-- MySQL dump 10.13  Distrib 5.7.44, for Linux (x86_64)
--
-- Host: localhost    Database: thims2_genesis007
-- ------------------------------------------------------
-- Server version	5.7.44

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

--
-- Table structure for table `ErmaMapping`
--

DROP TABLE IF EXISTS `ErmaMapping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ErmaMapping` (
  `test_cd` varchar(10) NOT NULL,
  `short_name` varchar(10) NOT NULL,
  `seq_no` int(11) NOT NULL,
  `conversion_factor` float NOT NULL DEFAULT '1',
  UNIQUE KEY `test_cd` (`test_cd`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ErmaMapping`
--

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

--
-- Table structure for table `OPD_Charge_Master`
--

DROP TABLE IF EXISTS `OPD_Charge_Master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `OPD_Charge_Master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `rate_card_id` int(11) NOT NULL,
  `Consultant_Level_Id` int(11) NOT NULL COMMENT 'consultant level id of consultant_level table',
  `Department_Id` varchar(5) NOT NULL,
  `opd_charge_amendment_no` smallint(6) NOT NULL,
  `FC_Normal_Charge` float NOT NULL,
  `FC_Emergency_Charge` float NOT NULL,
  `Followup_Normal_Charge` float NOT NULL,
  `Followup_Emergency_Charge` float NOT NULL,
  `gst_percentage` float(9,2) NOT NULL,
  `is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `is_approved` enum('N','Y') NOT NULL DEFAULT 'Y',
  `approved_by` varchar(20) NOT NULL,
  `approved_datetime` datetime NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `OPD_Charge_Master`
--

LOCK TABLES `OPD_Charge_Master` WRITE;
/*!40000 ALTER TABLE `OPD_Charge_Master` DISABLE KEYS */;
INSERT INTO `OPD_Charge_Master` VALUES (0,0,1,1,0,'D02',0,500,800,300,800,0.00,'Y','Y','thims','2025-10-03 15:07:21','thims','2025-10-03 15:07:21','','0000-00-00 00:00:00'),(0,0,2,1,0,'D03',0,500,800,300,800,0.00,'Y','Y','thims','2025-10-03 15:07:40','thims','2025-10-03 15:07:40','','0000-00-00 00:00:00'),(0,0,3,1,0,'D06',0,700,700,400,400,0.00,'Y','Y','thims','2025-10-03 15:08:04','thims','2025-10-03 15:08:04','','0000-00-00 00:00:00'),(0,0,4,1,0,'D14',0,800,1200,500,1200,0.00,'Y','Y','thims','2025-10-03 15:08:44','thims','2025-10-03 15:08:44','','0000-00-00 00:00:00'),(0,0,5,1,0,'D17',0,500,800,300,800,0.00,'Y','Y','thims','2025-10-03 15:09:13','thims','2025-10-03 15:09:13','','0000-00-00 00:00:00'),(0,0,6,1,0,'D27',0,800,800,800,800,0.00,'Y','Y','thims','2025-10-03 15:10:25','thims','2025-10-03 15:10:25','','0000-00-00 00:00:00'),(0,0,7,1,0,'D035',0,900,1200,500,1200,0.00,'Y','Y','thims','2025-10-03 15:12:07','thims','2025-10-03 15:12:07','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `OPD_Charge_Master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `OPD_Charge_Master_amendment`
--

DROP TABLE IF EXISTS `OPD_Charge_Master_amendment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `OPD_Charge_Master_amendment` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `rate_card_id` int(11) NOT NULL,
  `Consultant_Level_Id` int(11) NOT NULL COMMENT 'consultant level id of consultant_level table',
  `Department_Id` varchar(5) NOT NULL,
  `opd_charge_amendment_no` smallint(6) NOT NULL,
  `FC_Normal_Charge` float NOT NULL,
  `FC_Emergency_Charge` float NOT NULL,
  `Followup_Normal_Charge` float NOT NULL,
  `Followup_Emergency_Charge` float NOT NULL,
  `gst_percentage` float(9,2) NOT NULL,
  `is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `is_approved` enum('N','Y') NOT NULL DEFAULT 'Y',
  `approved_by` varchar(20) NOT NULL,
  `approved_datetime` datetime NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `rate_card_id` (`rate_card_id`,`Consultant_Level_Id`,`Department_Id`,`opd_charge_amendment_no`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `OPD_Charge_Master_amendment`
--

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

--
-- Table structure for table `additional_doctors`
--

DROP TABLE IF EXISTS `additional_doctors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `additional_doctors` (
  `Id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `VisitId` int(11) NOT NULL COMMENT 'visit_id of visit table',
  `DoctorId` int(11) NOT NULL COMMENT 'doctor_id of doctor_master table',
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `additional_doctors`
--

LOCK TABLES `additional_doctors` WRITE;
/*!40000 ALTER TABLE `additional_doctors` DISABLE KEYS */;
INSERT INTO `additional_doctors` VALUES (1,0,0,1292,4),(2,0,0,3517,3),(3,0,0,4674,78),(5,0,0,6899,188),(6,0,0,7067,78);
/*!40000 ALTER TABLE `additional_doctors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `additional_surgery_details`
--

DROP TABLE IF EXISTS `additional_surgery_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `additional_surgery_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `ip_id` bigint(20) NOT NULL,
  `op_id` bigint(20) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `pre_op_assessment_and_risk_factor` text NOT NULL,
  `staff_instruction` text NOT NULL,
  `post_op_orders` text NOT NULL,
  `prepared_by` varchar(50) NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `additional_surgery_details`
--

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

--
-- Table structure for table `address_master`
--

DROP TABLE IF EXISTS `address_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `address_master` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `address_line1` varchar(65) NOT NULL,
  `address_line2` varchar(50) NOT NULL,
  `city` varchar(50) NOT NULL,
  `state` varchar(50) NOT NULL,
  `pin_no` int(11) NOT NULL,
  `activeYN` enum('Y','N') NOT NULL DEFAULT 'Y',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `address_master`
--

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

--
-- Table structure for table `admin`
--

DROP TABLE IF EXISTS `admin`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin` (
  `admin_id` int(11) NOT NULL,
  `admin_name` varchar(20) NOT NULL,
  `admin_pwd` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin`
--

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

--
-- Table structure for table `admin_charge_master_other`
--

DROP TABLE IF EXISTS `admin_charge_master_other`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_charge_master_other` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `group_id` varchar(5) NOT NULL,
  `service_id` varchar(8) NOT NULL,
  `charge_type` char(1) NOT NULL,
  `value` int(11) NOT NULL,
  `unit` tinyint(4) NOT NULL,
  `unit_type` varchar(10) NOT NULL,
  `active_YN` enum('Y','N') NOT NULL DEFAULT 'Y',
  `createdBy` varchar(20) NOT NULL,
  `createdDate` datetime NOT NULL,
  `lastModifiedBy` varchar(20) NOT NULL,
  `lastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_charge_master_other`
--

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

--
-- Table structure for table `admission_request`
--

DROP TABLE IF EXISTS `admission_request`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admission_request` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `admission_note` text NOT NULL,
  `rx_on_admission` text NOT NULL,
  `pre_op_information` text NOT NULL,
  `operation_procedure_planned` text NOT NULL,
  `admission_room_type` text NOT NULL,
  `admission_deposit` text NOT NULL,
  `flag` enum('R','C','D') DEFAULT NULL COMMENT 'R- Requested, C - Completed, D- Deleted',
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`visit_id`,`patient_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admission_request`
--

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

--
-- Table structure for table `agencywise_btob_charges`
--

DROP TABLE IF EXISTS `agencywise_btob_charges`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `agencywise_btob_charges` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `agency_type` varchar(10) NOT NULL,
  `agency_cd` varchar(4) NOT NULL,
  `test_grp_cd` varchar(4) NOT NULL,
  `btob_charges` float(15,2) NOT NULL,
  `is_active` enum('Y','N') DEFAULT 'Y',
  `CreatedBy` varchar(100) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(100) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `agencywise_btob_charges`
--

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

--
-- Table structure for table `allowance_calculation_rules`
--

DROP TABLE IF EXISTS `allowance_calculation_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `allowance_calculation_rules` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `salary_head_id` varchar(10) NOT NULL,
  `shift_id` varchar(10) DEFAULT NULL,
  `min_ot_hours` time DEFAULT NULL,
  `max_ot_hours` time DEFAULT NULL,
  `on_call_type` varchar(30) DEFAULT NULL,
  `amount_per_unit` int(11) NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `allowance_calculation_rules`
--

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

--
-- Table structure for table `allowance_request`
--

DROP TABLE IF EXISTS `allowance_request`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `allowance_request` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `employee_id` int(11) NOT NULL,
  `Allowance_id` varchar(10) NOT NULL,
  `date` date NOT NULL,
  `purpose` varchar(50) NOT NULL,
  `patient_id` int(11) DEFAULT NULL,
  `time_in` time DEFAULT NULL,
  `time_out` time DEFAULT NULL,
  `amount` int(11) NOT NULL,
  `amount_approved` int(11) NOT NULL,
  `approval_status` enum('A','R','C') NOT NULL DEFAULT 'R' COMMENT 'A- Approval and R- Request and C - Cancel',
  `remark` varchar(50) NOT NULL,
  `LastModifiedBy` varchar(50) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `employee_id` (`employee_id`,`date`,`Allowance_id`,`patient_id`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `allowance_request`
--

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

--
-- Table structure for table `appointment_para`
--

DROP TABLE IF EXISTS `appointment_para`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `appointment_para` (
  `shift_id` varchar(2) NOT NULL,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `doctor_id` int(11) NOT NULL,
  `start_time` time NOT NULL COMMENT 'session 1',
  `end_time` time NOT NULL COMMENT 'session 1',
  `s2_start_time` time NOT NULL COMMENT 'session 2',
  `s2_end_time` time NOT NULL COMMENT 'session 2',
  `slot_duration` int(11) NOT NULL,
  `max_appointments` int(11) NOT NULL,
  `book_appoinment_after` int(11) NOT NULL COMMENT 'day',
  `emg_sunday` enum('Y','N') NOT NULL DEFAULT 'N' COMMENT 'Apply emergency charges on sunday',
  `emg_public_holiday` enum('Y','N') NOT NULL DEFAULT 'N' COMMENT 'Apply emergency charges on public holiday',
  PRIMARY KEY (`shift_id`,`company_id`,`branch_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `appointment_para`
--

LOCK TABLES `appointment_para` WRITE;
/*!40000 ALTER TABLE `appointment_para` DISABLE KEYS */;
INSERT INTO `appointment_para` VALUES ('1',0,0,999,'08:00:00','14:00:00','16:00:00','20:00:00',30,10,0,'N','N'),('2',0,0,998,'08:00:00','16:00:00','16:00:00','20:00:00',30,10,0,'Y','Y'),('3',0,0,2,'10:00:00','14:00:00','16:00:00','20:00:00',10,10,0,'N','N'),('4',0,0,4,'10:00:00','14:00:00','16:00:00','20:00:00',10,10,0,'N','N');
/*!40000 ALTER TABLE `appointment_para` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `appointment_pat`
--

DROP TABLE IF EXISTS `appointment_pat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `appointment_pat` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `App_Pat_ID` int(11) NOT NULL,
  `App_Temp_ID` int(11) NOT NULL,
  `Flag` varchar(1) NOT NULL,
  `App_Date` date NOT NULL,
  `App_St_Time` time NOT NULL,
  `App_En_Time` time NOT NULL,
  `App_Reason` varchar(20) NOT NULL,
  `App_Phone` varchar(12) NOT NULL,
  `doctor_id` varchar(5) NOT NULL,
  `App_Status` char(1) NOT NULL COMMENT 'B = Booked, C = completed, D = De;eted, F = Followup',
  `last_udate_date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`company_id`,`App_Pat_ID`,`App_Temp_ID`,`App_Date`,`App_St_Time`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `appointment_pat`
--

LOCK TABLES `appointment_pat` WRITE;
/*!40000 ALTER TABLE `appointment_pat` DISABLE KEYS */;
INSERT INTO `appointment_pat` VALUES (0,0,0,6,'Y','2025-10-08','11:10:00','11:20:00','FV','','2','B','2025-10-07 22:47:06'),(0,0,0,7,'Y','2025-10-08','11:20:00','11:30:00','FV','','2','B','2025-10-07 22:47:19'),(0,0,0,9,'Y','2025-10-08','11:40:00','11:50:00','NV','','2','B','2025-10-07 22:47:45'),(0,0,0,12,'Y','2025-10-08','12:10:00','12:20:00','FV','','2','B','2025-10-07 22:48:48'),(0,0,0,26,'Y','2025-10-08','18:20:00','18:30:00','FV','','2','B','2025-10-08 03:38:48'),(0,0,0,28,'Y','2025-10-08','18:40:00','18:50:00','FV','','2','B','2025-10-08 03:39:18'),(0,0,0,29,'Y','2025-10-08','18:50:00','19:00:00','FV','','2','B','2025-10-08 03:39:34'),(0,0,0,31,'Y','2025-10-08','18:20:00','18:30:00','','8460212231','4','B','2025-10-08 06:14:16'),(0,0,0,32,'Y','2025-10-08','18:30:00','18:40:00','','9277808048','4','B','2025-10-08 06:15:25'),(0,0,0,35,'Y','2025-10-08','18:50:00','19:00:00','','7600005284','4','B','2025-10-08 06:48:11'),(0,0,0,38,'Y','2025-10-09','10:20:00','10:30:00','Fv','','2','B','2025-10-08 21:52:19'),(0,0,0,44,'Y','2025-10-09','11:20:00','11:30:00','Fv','','2','B','2025-10-08 21:57:35'),(0,0,0,57,'Y','2025-10-09','12:30:00','12:40:00','','','4','B','2025-10-08 22:53:02'),(0,0,0,70,'Y','2025-10-09','18:00:00','18:10:00','NV','9724518157','2','B','2025-10-09 05:08:35'),(0,0,0,72,'Y','2025-10-09','18:20:00','18:30:00','FV ','','2','B','2025-10-09 05:09:40'),(0,0,0,79,'Y','2025-10-09','18:40:00','18:50:00','','7016471789','4','B','2025-10-09 05:51:48'),(0,0,0,85,'Y','2025-10-10','10:10:00','10:20:00','Fv','','2','B','2025-10-09 21:28:48'),(0,0,0,87,'Y','2025-10-10','10:30:00','10:40:00','Nv','','2','B','2025-10-09 21:29:21'),(0,0,0,99,'Y','2025-10-10','12:30:00','12:40:00','Nv','','2','B','2025-10-09 21:34:54'),(0,0,0,105,'Y','2025-10-10','11:30:00','11:40:00','','9429043162','4','B','2025-10-09 22:45:10'),(0,0,0,106,'Y','2025-10-10','11:30:00','11:40:00','','9429043162','4','B','2025-10-09 22:46:03'),(0,0,0,109,'Y','2025-10-10','16:50:00','17:00:00','FV','','2','B','2025-10-10 03:03:05'),(0,0,0,117,'Y','2025-10-10','18:20:00','18:30:00','Fv','','2','B','2025-10-10 03:14:09'),(0,0,0,120,'Y','2025-10-10','18:50:00','19:00:00','FV','','2','B','2025-10-10 03:14:53'),(0,0,0,123,'Y','2025-10-10','18:10:00','18:20:00','','9427495930','4','B','2025-10-10 05:39:07'),(0,0,0,124,'Y','2025-10-10','18:20:00','18:30:00','','9427495930','4','B','2025-10-10 05:39:33'),(0,0,0,125,'Y','2025-10-10','18:30:00','18:40:00','','7990950091','4','B','2025-10-10 05:40:09'),(0,0,0,126,'Y','2025-10-10','18:40:00','18:50:00','','9824288544','4','B','2025-10-10 05:41:12'),(0,0,0,127,'Y','2025-10-10','19:10:00','19:20:00','','','4','B','2025-10-10 05:41:34'),(0,0,0,128,'Y','2025-10-10','19:00:00','19:10:00','','7990972914','4','B','2025-10-10 06:15:24'),(0,0,0,129,'Y','2025-10-10','19:20:00','19:30:00','','7990972914','4','B','2025-10-10 06:15:57'),(0,0,0,130,'Y','2025-10-10','19:30:00','19:40:00','','','4','B','2025-10-10 07:19:18'),(0,0,0,143,'Y','2025-10-11','11:00:00','11:10:00','FC','9724613470','4','B','2025-10-10 22:19:34'),(0,0,0,145,'Y','2025-10-11','11:20:00','11:30:00','FC','','4','B','2025-10-10 22:22:29'),(0,0,0,146,'Y','2025-10-11','11:40:00','11:50:00','FC','','4','B','2025-10-10 22:24:01'),(0,0,0,147,'Y','2025-10-11','11:50:00','12:00:00','FC','9586138603','4','B','2025-10-10 22:24:58'),(0,0,0,148,'Y','2025-10-11','12:00:00','12:10:00','FC','9824804019','4','B','2025-10-10 22:25:40'),(0,0,0,149,'Y','2025-10-11','12:10:00','12:20:00','FC','9428894558','4','B','2025-10-10 22:26:13'),(0,0,0,155,'N','2025-10-13','11:00:00','11:10:00','NV','8000608880','2','D','2025-10-12 21:46:25'),(0,0,0,164,'N','2025-10-13','12:40:00','12:50:00','FV','','2','D','2025-10-12 21:56:47'),(0,0,0,167,'N','2025-10-13','11:40:00','11:50:00','','','4','D','2025-10-12 22:42:18'),(0,0,0,169,'N','2025-10-13','11:50:00','12:00:00','','8461783897','4','D','2025-10-12 22:51:26'),(0,0,0,171,'N','2025-10-13','16:30:00','16:40:00','FV','','2','D','2025-10-13 04:24:16'),(0,0,0,188,'Y','2025-10-13','18:20:00','18:30:00','','','4','B','2025-10-13 05:50:27'),(0,0,0,189,'Y','2025-10-13','18:30:00','18:40:00','','8160868246','4','B','2025-10-13 05:51:28'),(0,0,0,190,'Y','2025-10-13','18:40:00','18:50:00','','','4','B','2025-10-13 05:52:15'),(0,0,0,192,'Y','2025-10-13','18:50:00','19:00:00','','9537700019','4','B','2025-10-13 05:54:58'),(0,0,0,195,'Y','2025-10-14','10:20:00','10:30:00','','','2','B','2025-10-13 21:42:58'),(0,0,0,199,'Y','2025-10-14','11:10:00','11:20:00','','','2','B','2025-10-13 21:44:02'),(0,0,0,210,'Y','2025-10-14','11:10:00','11:20:00','','6353226973','4','B','2025-10-13 22:03:00'),(0,0,0,212,'Y','2025-10-14','11:50:00','12:00:00','','9428788575','4','B','2025-10-13 22:04:06'),(0,0,0,213,'Y','2025-10-14','12:40:00','12:50:00','','8140404646','4','B','2025-10-13 22:04:41'),(0,0,0,228,'Y','2025-10-14','18:50:00','19:00:00','','','2','B','2025-10-14 04:26:52'),(0,0,0,230,'Y','2025-10-14','18:10:00','18:20:00','','9426158133','4','B','2025-10-14 05:24:10'),(0,0,0,233,'Y','2025-10-14','18:50:00','19:00:00','','9723080478','4','B','2025-10-14 05:27:05'),(0,0,0,237,'Y','2025-10-14','19:30:00','19:40:00','','9898732801','4','B','2025-10-14 07:34:53'),(0,0,0,239,'Y','2025-10-15','10:20:00','10:30:00','Fv','','2','B','2025-10-14 21:24:55'),(0,0,0,241,'Y','2025-10-15','10:40:00','10:50:00','FV','','2','B','2025-10-14 21:25:37'),(0,0,0,243,'Y','2025-10-15','11:00:00','11:10:00','NV','','2','B','2025-10-14 21:26:20'),(0,0,0,248,'Y','2025-10-15','11:50:00','12:00:00','FV','','2','B','2025-10-14 21:28:46'),(0,0,0,249,'Y','2025-10-15','12:00:00','12:10:00','NV','','2','B','2025-10-14 21:29:03'),(0,0,0,252,'Y','2025-10-15','12:30:00','12:40:00','NV','','2','B','2025-10-14 21:30:32'),(0,0,0,253,'Y','2025-10-15','12:40:00','12:50:00','FV','','2','B','2025-10-14 21:31:02'),(0,0,0,267,'Y','2025-10-15','16:40:00','16:50:00','FV','','2','B','2025-10-15 03:16:59'),(0,0,0,276,'Y','2025-10-15','18:10:00','18:20:00','FV','','2','B','2025-10-15 03:21:14'),(0,0,0,283,'Y','2025-10-15','19:30:00','19:40:00','','8401935835','4','B','2025-10-15 06:45:16'),(0,0,0,284,'Y','2025-10-15','18:40:00','18:50:00','','9712978811','4','B','2025-10-15 07:01:05'),(0,0,0,292,'Y','2025-10-16','13:10:00','13:20:00','Fv','9825313241','2','B','2025-10-15 21:48:28'),(0,0,0,298,'Y','2025-10-16','11:40:00','11:50:00','','9879467370','4','B','2025-10-15 21:50:12'),(0,0,0,302,'Y','2025-10-16','12:10:00','12:20:00','Fv','9157100396','2','B','2025-10-15 21:51:54'),(0,0,0,305,'Y','2025-10-16','12:50:00','13:00:00','Fv','9909802121','2','B','2025-10-15 21:53:19'),(0,0,0,308,'Y','2025-10-16','12:10:00','12:20:00','','9978792356','4','B','2025-10-15 22:49:45'),(0,0,0,310,'Y','2025-10-16','12:30:00','12:40:00','','9998694274','4','B','2025-10-16 00:54:26'),(0,0,0,317,'Y','2025-10-16','17:50:00','18:00:00','','','2','B','2025-10-16 04:40:47'),(0,0,0,325,'Y','2025-10-16','18:30:00','18:40:00','','9824587621','4','B','2025-10-16 06:34:44'),(0,0,0,326,'Y','2025-10-16','19:00:00','19:10:00','','9824867803','4','B','2025-10-16 07:00:54'),(0,0,0,332,'Y','2025-10-17','11:00:00','11:10:00','Nv','8999845458','2','B','2025-10-16 21:42:32'),(0,0,0,334,'Y','2025-10-17','11:20:00','11:30:00','Fv','9979078160','2','B','2025-10-16 21:44:28'),(0,0,0,344,'Y','2025-10-17','12:50:00','13:00:00','Fv','9924342670','2','B','2025-10-16 21:51:20'),(0,0,0,357,'Y','2025-10-17','19:20:00','19:30:00','','','2','B','2025-10-17 04:47:36'),(0,0,0,358,'Y','2025-10-17','18:20:00','18:30:00','','','2','B','2025-10-17 04:47:55'),(0,0,0,363,'Y','2025-10-17','18:10:00','18:20:00','','7575080483','4','B','2025-10-17 05:53:50'),(0,0,0,368,'Y','2025-10-18','10:30:00','10:40:00','Nv','7567288102','2','B','2025-10-17 21:46:53'),(0,0,0,369,'Y','2025-10-18','10:20:00','10:30:00','Fv','6356048339','2','B','2025-10-17 21:50:08'),(0,0,0,390,'Y','2025-10-24','10:30:00','10:40:00','NV','','2','B','2025-10-23 08:04:20'),(0,0,0,396,'Y','2025-10-24','12:00:00','12:10:00','NV','','2','B','2025-10-23 08:07:46'),(0,0,0,404,'Y','2025-10-24','17:40:00','17:50:00','Fv','','2','B','2025-10-24 02:31:27'),(0,0,0,408,'Y','2025-10-24','16:50:00','17:00:00','NE','','2','B','2025-10-24 03:25:09'),(0,0,0,413,'Y','2025-10-25','10:50:00','11:00:00','FV','','2','B','2025-10-24 21:25:06'),(0,0,0,416,'Y','2025-10-25','11:20:00','11:30:00','FV','','2','B','2025-10-24 21:26:11'),(0,0,0,436,'Y','2025-10-27','12:10:00','12:20:00','Fv','','2','B','2025-10-26 21:45:29'),(0,0,0,439,'Y','2025-10-27','12:40:00','12:50:00','Fv','','2','B','2025-10-26 21:46:24'),(0,0,0,441,'Y','2025-10-27','11:00:00','11:10:00','FV','','4','B','2025-10-26 21:54:36'),(0,0,0,448,'Y','2025-10-27','12:50:00','13:00:00','','8200717135','4','B','2025-10-26 22:52:52'),(0,0,0,451,'Y','2025-10-27','16:40:00','16:50:00','FV','','2','B','2025-10-27 03:33:51'),(0,0,0,454,'Y','2025-10-27','17:30:00','05:30:00','Nv','','2','B','2025-10-27 03:35:07'),(0,0,0,457,'Y','2025-10-27','18:00:00','18:10:00','NV','','2','B','2025-10-27 03:36:30'),(0,0,0,458,'Y','2025-10-27','18:10:00','18:20:00','FV','','2','B','2025-10-27 03:37:04'),(0,0,0,461,'Y','2025-10-27','19:00:00','19:10:00','NV','','2','B','2025-10-27 03:38:51'),(0,0,0,463,'Y','2025-10-27','18:00:00','18:10:00','','6354015290','4','B','2025-10-27 05:43:39'),(0,0,0,466,'Y','2025-10-27','18:40:00','18:50:00','','8460209107','4','B','2025-10-27 05:47:48'),(0,0,0,467,'Y','2025-10-27','18:50:00','19:00:00','','6353674878','4','B','2025-10-27 05:48:29'),(0,0,0,468,'Y','2025-10-27','19:00:00','19:10:00','','9558447443','4','B','2025-10-27 05:49:01'),(0,0,0,470,'Y','2025-10-27','19:10:00','19:20:00','','7698027933','4','B','2025-10-27 05:49:36'),(0,0,0,472,'Y','2025-10-27','19:30:00','19:40:00','','','4','B','2025-10-27 05:50:36'),(0,0,0,483,'Y','2025-10-28','11:50:00','12:00:00','Ne','9428319059','2','B','2025-10-27 21:47:37'),(0,0,0,490,'Y','2025-10-28','11:10:00','11:20:00','','9106568378','4','B','2025-10-27 22:08:34'),(0,0,0,493,'Y','2025-10-28','11:50:00','12:00:00','','','4','B','2025-10-27 22:10:58'),(0,0,0,496,'Y','2025-10-28','10:20:00','10:30:00','Fv','','2','B','2025-10-27 22:21:44'),(0,0,0,502,'Y','2025-10-28','17:10:00','17:20:00','NE','','2','B','2025-10-28 03:44:16'),(0,0,0,504,'Y','2025-10-28','17:30:00','17:40:00','NV','','2','B','2025-10-28 03:45:09'),(0,0,0,515,'Y','2025-10-28','18:30:00','18:40:00','','9426205543','4','B','2025-10-28 05:24:29'),(0,0,0,523,'Y','2025-10-29','10:40:00','10:50:00','Fv','7046814012','2','B','2025-10-28 21:23:14'),(0,0,0,528,'Y','2025-10-29','11:30:00','11:40:00','Nv','9723860273','2','B','2025-10-28 21:27:35'),(0,0,0,529,'Y','2025-10-29','12:00:00','12:10:00','Nv','9737742204','2','B','2025-10-28 21:28:24'),(0,0,0,533,'Y','2025-10-29','12:50:00','13:00:00','Fv','9727327641','2','B','2025-10-28 21:31:03'),(0,0,0,536,'Y','2025-10-29','11:20:00','11:30:00','','7874069627','4','B','2025-10-28 22:06:38'),(0,0,0,539,'Y','2025-10-29','16:40:00','16:50:00','Fv','','2','B','2025-10-29 03:28:00'),(0,0,0,541,'Y','2025-10-29','17:10:00','17:20:00','Fv','','2','B','2025-10-29 03:28:55'),(0,0,0,545,'Y','2025-10-29','17:50:00','18:00:00','Fv','','2','B','2025-10-29 03:30:26'),(0,0,0,548,'Y','2025-10-29','18:40:00','18:50:00','Fv','','2','B','2025-10-29 03:32:10'),(0,0,0,551,'Y','2025-10-29','18:00:00','18:10:00','','9428791516','4','B','2025-10-29 05:44:45'),(0,0,0,553,'Y','2025-10-29','18:10:00','18:20:00','','9427257734','4','B','2025-10-29 05:45:11'),(0,0,0,554,'Y','2025-10-29','18:10:00','18:20:00','','9427257734','4','B','2025-10-29 05:45:11'),(0,0,0,555,'Y','2025-10-29','18:10:00','18:20:00','','9427257734','4','B','2025-10-29 05:45:12'),(0,0,0,557,'Y','2025-10-29','18:20:00','18:30:00','','8160195875','4','B','2025-10-29 05:45:41'),(0,0,0,561,'Y','2025-10-29','19:00:00','19:10:00','','9664545922','4','B','2025-10-29 06:15:53'),(0,0,0,563,'Y','2025-10-29','17:40:42','18:50:00','','','2','B','2025-10-29 06:25:57'),(0,0,0,564,'Y','2025-10-29','18:40:00','18:50:00','Fv','','2','B','2025-10-29 06:36:47'),(0,0,0,565,'Y','2025-10-29','18:50:00','19:00:00','NE','','2','B','2025-10-29 06:37:11'),(0,0,0,572,'Y','2025-10-30','11:40:00','11:50:00','Fv','7984213887','2','B','2025-10-29 21:48:12'),(0,0,0,593,'Y','2025-10-30','18:20:00','18:30:00','FV','','2','B','2025-10-30 03:29:23'),(0,0,0,594,'Y','2025-10-30','18:40:00','18:50:00','FV','','2','B','2025-10-30 03:29:42'),(0,0,0,595,'Y','2025-10-30','18:50:00','19:00:00','FV','','2','B','2025-10-30 03:30:11'),(0,0,0,596,'Y','2025-10-30','18:00:00','18:10:00','NV','','2','B','2025-10-30 04:02:51'),(0,0,0,598,'Y','2025-10-30','18:10:00','18:20:00','','','4','B','2025-10-30 05:22:27'),(0,0,0,602,'Y','2025-10-31','10:20:00','05:30:00','Ne','9909920209','2','B','2025-10-30 21:14:00'),(0,0,0,623,'Y','2025-10-31','12:00:00','12:10:00','','','4','B','2025-10-30 22:30:45'),(0,0,0,627,'Y','2025-10-31','12:40:00','12:50:00','','9429090390','4','B','2025-10-31 00:36:20'),(0,0,0,628,'Y','2025-10-31','12:40:00','12:50:00','','9429090390','4','B','2025-10-31 00:36:20'),(0,0,0,640,'Y','2025-10-31','18:10:00','18:20:00','','9737777734','4','B','2025-10-31 05:21:19'),(0,0,0,648,'Y','2025-11-01','10:50:00','11:00:00','Fv','9377564165','2','B','2025-10-31 21:41:15'),(0,0,0,658,'Y','2025-11-01','11:00:00','11:10:00','','8758744343','4','B','2025-10-31 22:48:28'),(0,0,0,667,'Y','2025-11-03','11:10:00','11:20:00','Fv','9925872172','2','B','2025-11-02 20:19:55'),(0,0,0,668,'Y','2025-11-03','11:20:00','11:30:00','Rnv','9898015880','2','B','2025-11-02 20:20:32'),(0,0,0,675,'Y','2025-11-03','11:00:00','11:10:00','Nv','9913271902','2','B','2025-11-02 20:32:44'),(0,0,0,684,'Y','2025-11-03','18:10:00','18:20:00','NV','','2','B','2025-11-03 02:27:28'),(0,0,0,695,'Y','2025-11-04','11:50:00','12:00:00','Fv','9979010400','2','B','2025-11-03 20:27:52'),(0,0,0,699,'Y','2025-11-04','12:00:00','12:10:00','Nv','9090837037','2','B','2025-11-03 20:44:27'),(0,0,0,703,'Y','2025-11-04','17:00:00','17:10:00','NV','','2','B','2025-11-04 02:05:25'),(0,0,0,710,'Y','2025-11-04','18:50:00','19:00:00','FV','','2','B','2025-11-04 02:08:22'),(0,0,0,713,'Y','2025-11-05','10:40:00','10:50:00','Fv','','2','B','2025-11-04 20:21:57'),(0,0,0,731,'Y','2025-11-05','18:10:00','18:20:00','FV','','2','B','2025-11-05 02:20:14'),(0,0,0,735,'Y','2025-11-06','10:40:00','10:50:00','Fv','','2','B','2025-11-05 20:15:23'),(0,0,0,746,'Y','2025-11-06','12:50:00','13:00:00','Ne','','2','B','2025-11-05 20:24:00'),(0,0,0,747,'Y','2025-11-06','12:00:00','12:10:00','NV','9904436382','2','B','2025-11-05 22:20:48'),(0,0,0,751,'Y','2025-11-06','17:10:00','17:20:00','FV','','2','B','2025-11-06 02:40:48'),(0,0,0,754,'Y','2025-11-06','18:10:00','18:20:00','FV','','2','B','2025-11-06 02:54:09'),(0,0,0,759,'Y','2025-11-07','10:40:00','10:50:00','Fv','','2','B','2025-11-06 20:14:42'),(0,0,0,761,'Y','2025-11-07','11:00:00','11:10:00','Nv','9898921718','2','B','2025-11-06 20:15:55'),(0,0,0,773,'Y','2025-11-07','17:50:00','18:00:00','NE','','2','B','2025-11-07 02:25:48'),(0,0,0,776,'N','2025-11-08','10:10:00','10:20:00','Fv','9023345805','2','D','2025-11-07 20:17:17'),(0,0,0,777,'N','2025-11-08','10:20:00','10:30:00','Fv','','2','D','2025-11-07 20:17:37'),(0,0,0,778,'N','2025-11-08','10:30:00','10:40:00','Nv','9737661411','2','D','2025-11-07 20:18:15'),(0,0,0,779,'N','2025-11-08','10:40:00','10:50:00','Fv','9898270249','2','D','2025-11-07 20:19:03'),(0,0,0,780,'N','2025-11-08','10:50:00','11:00:00','Fv','','2','D','2025-11-07 20:19:23'),(0,0,0,781,'N','2025-11-08','11:00:00','11:10:00','Nv','9924647612','2','D','2025-11-07 20:20:05'),(0,0,0,782,'N','2025-11-08','11:20:00','11:30:00','Fv','','2','D','2025-11-07 20:21:13'),(0,0,0,783,'N','2025-11-08','11:20:00','11:30:00','Fv','','2','D','2025-11-07 20:21:13'),(0,0,0,789,'Y','2025-11-08','11:00:00','11:10:00','Nv','9924647612','2','B','2025-11-07 20:24:23'),(0,0,0,792,'Y','2025-11-08','11:40:00','11:50:00','Fv','','2','B','2025-11-07 20:27:00'),(0,0,0,804,'Y','2025-11-10','10:50:00','11:00:00','Fv','9904540776','2','B','2025-11-09 20:30:36'),(0,0,0,805,'Y','2025-11-10','11:00:00','11:10:00','Nv','9979754731','2','B','2025-11-09 20:31:07'),(0,0,0,808,'Y','2025-11-10','11:50:00','12:00:00','Fv','9978051628','2','B','2025-11-09 20:33:10'),(0,0,0,816,'Y','2025-11-10','18:00:00','18:10:00','Fv','8200772731','2','B','2025-11-10 03:12:35'),(0,0,0,819,'Y','2025-11-10','18:50:00','19:00:00','Fv','8000766733','2','B','2025-11-10 03:14:11'),(0,0,0,820,'Y','2025-11-11','11:30:00','11:40:00','Nv','7016881620','2','B','2025-11-10 20:30:00'),(0,0,0,832,'Y','2025-11-11','17:10:00','17:20:00','','','2','B','2025-11-11 03:25:08'),(0,0,0,833,'Y','2025-11-11','17:20:00','17:30:00','','','2','B','2025-11-11 03:25:25'),(0,0,0,834,'Y','2025-11-11','17:30:00','17:40:00','','','2','B','2025-11-11 03:25:36'),(0,0,0,838,'Y','2025-11-11','18:40:00','18:50:00','','','2','B','2025-11-11 03:27:36'),(0,0,0,843,'Y','2025-11-11','18:30:00','18:40:00','FC','7405536211','4','B','2025-11-11 04:05:58'),(0,0,0,848,'Y','2025-11-11','19:20:00','19:30:00','','','4','B','2025-11-11 04:08:19'),(0,0,0,849,'Y','2025-11-11','19:30:00','19:40:00','FC','9426960873','4','B','2025-11-11 04:09:01'),(0,0,0,853,'Y','2025-11-12','10:30:00','10:40:00','NV','8311660451','2','B','2025-11-11 20:25:28'),(0,0,0,856,'Y','2025-11-12','11:20:00','11:30:00','Fv','','2','B','2025-11-11 20:30:06'),(0,0,0,863,'Y','2025-11-12','11:10:00','11:20:00','FC','9426949726','4','B','2025-11-11 21:12:14'),(0,0,0,864,'Y','2025-11-12','11:20:00','11:30:00','FC','9016893431','4','B','2025-11-11 21:12:48'),(0,0,0,870,'Y','2025-11-12','12:50:00','13:00:00','','7698913952','4','B','2025-11-11 21:17:30'),(0,0,0,877,'Y','2025-11-12','17:50:00','18:00:00','Fv','9974430302','2','B','2025-11-12 02:43:35'),(0,0,0,881,'Y','2025-11-12','18:50:00','19:00:00','Fv','9265917278','2','B','2025-11-12 02:46:02'),(0,0,0,895,'Y','2025-11-13','13:40:00','13:50:00','FV','7600776046','2','B','2025-11-12 20:41:52'),(0,0,0,924,'Y','2025-11-14','11:30:00','11:40:00','Nv','9925575812','2','B','2025-11-13 20:20:46'),(0,0,0,927,'Y','2025-11-14','12:20:00','12:30:00','Fv','9687570361','2','B','2025-11-13 20:22:03'),(0,0,0,929,'Y','2025-11-14','12:50:00','13:00:00','Fv','','2','B','2025-11-13 20:23:57'),(0,0,0,955,'Y','2025-11-15','11:30:00','11:40:00','FC','9913443126','4','B','2025-11-14 21:11:00'),(0,0,0,960,'Y','2025-11-17','10:30:00','10:40:00','Nv','9925137889','2','B','2025-11-16 20:16:24'),(0,0,0,968,'Y','2025-11-17','18:40:00','05:30:00','NE','7778071526','2','B','2025-11-17 03:16:13'),(0,0,0,972,'Y','2025-11-18','10:20:00','10:30:00','Fv','8401777557','2','B','2025-11-17 20:18:57'),(0,0,0,975,'Y','2025-11-18','11:50:00','12:00:00','NE','9429269550','2','B','2025-11-17 20:20:48'),(0,0,0,976,'Y','2025-11-18','12:00:00','12:10:00','NV','9824425765','2','B','2025-11-17 20:23:11'),(0,0,0,980,'Y','2025-11-18','13:50:00','14:00:00','NV','9974766640','2','B','2025-11-17 21:49:03'),(0,0,0,983,'Y','2025-11-18','16:50:00','17:00:00','FV','','2','B','2025-11-18 02:08:29'),(0,0,0,987,'Y','2025-11-18','17:40:00','17:50:00','FV','','2','B','2025-11-18 02:10:46'),(0,0,0,988,'Y','2025-11-18','17:50:00','18:00:00','FV','','2','B','2025-11-18 02:11:20'),(0,0,0,999,'Y','2025-11-19','12:20:00','12:30:00','Fv','9428201519','2','B','2025-11-18 20:22:49'),(0,0,0,1008,'Y','2025-11-19','18:20:00','18:30:00','Ne','9722033303','2','B','2025-11-19 03:14:11'),(0,0,0,1015,'Y','2025-11-19','19:00:00','19:10:00','','9426553372','4','B','2025-11-19 04:44:22'),(0,0,0,1019,'Y','2025-11-20','10:10:00','10:20:00','Ne','6352005183','2','B','2025-11-19 20:20:35'),(0,0,0,1030,'Y','2025-11-20','11:30:00','11:40:00','FC','','4','B','2025-11-19 21:24:34'),(0,0,0,1033,'Y','2025-11-20','12:00:00','12:10:00','','9925723815','4','B','2025-11-19 21:26:58'),(0,0,0,1034,'Y','2025-11-20','12:40:00','12:50:00','','9924353288','4','B','2025-11-19 22:32:01'),(0,0,0,1043,'Y','2025-11-20','19:50:00','20:00:00','FV','','2','B','2025-11-20 02:35:44'),(0,0,0,1046,'Y','2025-11-20','18:20:00','18:30:00','','','4','B','2025-11-20 04:26:36'),(0,0,0,1047,'Y','2025-11-20','19:20:00','19:30:00','','9978785404','4','B','2025-11-20 04:27:26'),(0,0,0,1063,'Y','2025-11-21','12:00:00','12:10:00','Nv','7600524497','2','B','2025-11-20 21:28:46'),(0,0,0,1070,'Y','2025-11-21','18:40:00','18:50:00','FV','','2','B','2025-11-21 02:07:20'),(0,0,0,1074,'Y','2025-11-21','18:40:00','18:50:00','','9426317907','4','B','2025-11-21 04:41:02'),(0,0,0,1086,'Y','2025-11-22','13:10:00','13:20:00','FV','','2','B','2025-11-21 20:50:56'),(0,0,0,1087,'Y','2025-11-22','12:40:00','12:50:00','FV','','2','B','2025-11-21 20:51:11'),(0,0,0,1089,'Y','2025-11-22','11:20:00','11:30:00','','','4','B','2025-11-21 20:52:22'),(0,0,0,1090,'Y','2025-11-22','11:20:00','11:30:00','','','4','B','2025-11-21 20:52:22'),(0,0,0,1093,'Y','2025-11-22','11:40:00','11:50:00','','7069002998','4','B','2025-11-21 21:02:53'),(0,0,0,1098,'N','2025-11-24','10:20:00','10:30:00','Fv','9726317509','2','D','2025-11-23 20:17:48'),(0,0,0,1099,'N','2025-11-24','10:30:00','10:40:00','Nv','9924810940','2','D','2025-11-23 20:18:12'),(0,0,0,1100,'N','2025-11-24','10:50:00','11:00:00','Fv','9106836155','2','D','2025-11-23 20:19:23'),(0,0,0,1101,'N','2025-11-24','11:00:00','11:10:00','Nv','','2','D','2025-11-23 20:20:47'),(0,0,0,1102,'N','2025-11-24','11:30:00','11:40:00','Nv','9909169699','2','D','2025-11-23 20:21:38'),(0,0,0,1103,'N','2025-11-24','11:50:00','12:00:00','Fv','9725458865','2','D','2025-11-23 20:22:21'),(0,0,0,1104,'N','2025-11-24','12:20:00','12:30:00','Nv','9825436676','2','D','2025-11-23 20:22:43'),(0,0,0,1105,'N','2025-11-24','12:00:00','12:10:00','Nv','9825436676','2','D','2025-11-23 20:22:44'),(0,0,0,1112,'Y','2025-11-24','12:00:00','05:30:00','Nv','9825436676','2','B','2025-11-23 20:26:40'),(0,0,0,1120,'Y','2025-11-24','12:10:00','12:20:00','','','4','B','2025-11-23 21:43:50'),(0,0,0,1125,'Y','2025-11-24','17:00:00','17:10:00','NV','','2','B','2025-11-24 02:33:15'),(0,0,0,1127,'Y','2025-11-24','18:00:00','18:10:00','NV','','2','B','2025-11-24 02:34:37'),(0,0,0,1130,'Y','2025-11-24','18:50:00','19:00:00','NE','','2','B','2025-11-24 02:36:43'),(0,0,0,1132,'Y','2025-11-24','18:30:00','18:40:00','','7202040347','4','B','2025-11-24 04:17:36'),(0,0,0,1137,'Y','2025-11-24','19:20:00','19:30:00','','9408390975','4','B','2025-11-24 06:28:12'),(0,0,0,1142,'Y','2025-11-25','13:50:00','14:00:00','Fv','9925213256','2','B','2025-11-24 20:27:59'),(0,0,0,1156,'Y','2025-11-25','16:40:00','16:50:00','FV','','2','B','2025-11-25 01:26:07'),(0,0,0,1161,'Y','2025-11-25','18:00:00','18:10:00','NV','','2','B','2025-11-25 01:31:11'),(0,0,0,1166,'Y','2025-11-25','18:20:00','18:30:00','','','4','B','2025-11-25 04:45:15'),(0,0,0,1167,'Y','2025-11-25','18:30:00','18:40:00','','8866370344','4','B','2025-11-25 04:45:49'),(0,0,0,1172,'Y','2025-11-26','11:30:00','11:40:00','Nv','8141377733','2','B','2025-11-25 20:35:53'),(0,0,0,1176,'Y','2025-11-26','12:30:00','12:40:00','Nv','9879610684','2','B','2025-11-25 20:45:32'),(0,0,0,1179,'Y','2025-11-26','11:20:00','11:30:00','','9427272311','4','B','2025-11-25 21:30:23'),(0,0,0,1184,'Y','2025-11-26','17:30:00','17:40:00','Nv','8320723739','2','B','2025-11-26 01:41:38'),(0,0,0,1189,'Y','2025-11-26','18:50:00','19:00:00','NE','8849265142','2','B','2025-11-26 01:47:05'),(0,0,0,1198,'N','2025-11-27','10:50:00','11:00:00','Nv','9638247929','2','D','2025-11-26 20:26:01'),(0,0,0,1199,'N','2025-11-27','10:30:00','10:40:00','Nv','9638247929','2','D','2025-11-26 20:26:01'),(0,0,0,1206,'Y','2025-11-27','12:00:00','12:10:00','Nv','9924424972','2','B','2025-11-26 20:30:47'),(0,0,0,1215,'Y','2025-11-27','12:30:00','12:40:00','','9924260924','4','B','2025-11-26 23:17:08'),(0,0,0,1232,'Y','2025-11-28','11:20:00','11:30:00','Fv','9998428112','2','B','2025-11-27 20:12:30'),(0,0,0,1236,'Y','2025-11-28','12:50:00','13:00:00','Fv','9664890028','2','B','2025-11-27 20:16:12'),(0,0,0,1240,'Y','2025-11-28','11:20:00','11:30:00','','8779807600','4','B','2025-11-27 21:48:16'),(0,0,0,1248,'Y','2025-11-28','16:40:00','16:50:00','Fv','','2','B','2025-11-28 02:27:23'),(0,0,0,1249,'Y','2025-11-28','17:10:00','17:20:00','Ne','9409525100','2','B','2025-11-28 02:28:13'),(0,0,0,1250,'Y','2025-11-28','17:20:00','17:30:00','Ne','9409525100','2','B','2025-11-28 02:28:38'),(0,0,0,1264,'Y','2025-11-29','13:50:00','14:00:00','Fv','8238655812','2','B','2025-11-28 20:19:38'),(0,0,0,1277,'Y','2025-11-29','12:20:00','12:30:00','Nc','9737234461','4','B','2025-11-28 21:40:18'),(0,0,0,1283,'Y','2025-12-01','13:40:00','13:50:00','','7046507070','4','B','2025-11-30 21:04:47'),(0,0,0,1287,'Y','2025-12-01','12:00:00','12:10:00','','9714716321','4','B','2025-11-30 21:09:18'),(0,0,0,1288,'Y','2025-12-01','12:10:00','12:20:00','','8140729275','4','B','2025-11-30 21:10:00'),(0,0,0,1291,'Y','2025-12-01','11:10:00','11:20:00','','7046507070','4','B','2025-11-30 21:11:42'),(0,0,0,1295,'Y','2025-12-01','17:00:00','17:10:00','Nv','9898441788','2','B','2025-12-01 03:35:12'),(0,0,0,1300,'Y','2025-12-01','18:30:00','18:40:00','','9998669730','4','B','2025-12-01 04:42:14'),(0,0,0,1314,'Y','2025-12-02','12:50:00','13:00:00','FV','9825405506','2','B','2025-12-01 20:28:29'),(0,0,0,1325,'Y','2025-12-02','17:40:00','17:50:00','FV','9687229748','2','B','2025-12-02 03:50:44'),(0,0,0,1327,'Y','2025-12-02','18:00:00','18:10:00','Fc','9824897509','4','B','2025-12-02 04:49:50'),(0,0,0,1330,'Y','2025-12-02','18:30:00','18:40:00','Nc','9624434342','4','B','2025-12-02 04:51:18'),(0,0,0,1332,'Y','2025-12-02','18:50:00','19:00:00','FC','7490036133','4','B','2025-12-02 04:52:23'),(0,0,0,1341,'Y','2025-12-03','11:00:00','11:10:00','','','4','B','2025-12-02 20:53:02'),(0,0,0,1345,'Y','2025-12-03','12:40:00','12:50:00','FC','8160050553','4','B','2025-12-02 23:42:37'),(0,0,0,1349,'Y','2025-12-03','17:30:00','17:40:00','Nv','9978428868','2','B','2025-12-03 02:51:59'),(0,0,0,1350,'Y','2025-12-03','17:50:00','18:00:00','Fv','9824210606','2','B','2025-12-03 02:52:52'),(0,0,0,1358,'Y','2025-12-03','18:20:00','18:30:00','FC','8849987578','4','B','2025-12-03 04:47:05'),(0,0,0,1361,'Y','2025-12-03','19:00:00','19:10:00','FC','7878069627','4','B','2025-12-03 05:17:15'),(0,0,0,1386,'Y','2025-12-04','19:30:00','19:40:00','Nc','','4','B','2025-12-04 05:20:42'),(0,0,0,1392,'Y','2025-12-05','12:50:00','13:00:00','FV','8238655812','2','B','2025-12-04 20:33:55'),(0,0,0,1399,'Y','2025-12-05','16:40:00','16:50:00','FV','8140275081','2','B','2025-12-05 03:16:28'),(0,0,0,1400,'Y','2025-12-05','16:50:00','17:00:00','FV','7600776046','2','B','2025-12-05 03:16:51'),(0,0,0,1404,'Y','2025-12-05','18:00:00','18:10:00','Nc','9924970768','4','B','2025-12-05 04:36:48'),(0,0,0,1409,'Y','2025-12-06','10:20:00','10:30:00','Fv','9998448347','2','B','2025-12-05 20:18:38'),(0,0,0,1410,'Y','2025-12-06','10:30:00','10:40:00','Nv','9714427371','2','B','2025-12-05 20:19:16'),(0,0,0,1414,'Y','2025-12-06','13:40:00','13:50:00','Fv','9723405264','2','B','2025-12-05 20:24:02'),(0,0,0,1416,'Y','2025-12-06','12:40:00','12:50:00','Fv','9033336765','2','B','2025-12-05 20:24:52'),(0,0,0,1424,'Y','2025-12-06','12:50:00','13:00:00','Nc','8108644449','4','B','2025-12-05 22:04:39'),(0,0,0,1438,'Y','2025-12-08','12:10:00','12:20:00','Nc','8128956882','4','B','2025-12-07 22:02:50'),(0,0,0,1440,'Y','2025-12-08','12:50:00','13:00:00','FC','9925915311','4','B','2025-12-07 22:25:56'),(0,0,0,1444,'Y','2025-12-08','18:00:00','18:10:00','Nv','9558978342','2','B','2025-12-08 02:52:44'),(0,0,0,1446,'Y','2025-12-08','18:10:00','18:20:00','FC','','4','B','2025-12-08 04:37:15'),(0,0,0,1470,'Y','2025-12-09','18:50:00','19:00:00','Fv','9023772010','2','B','2025-12-09 03:23:08'),(0,0,0,1472,'Y','2025-12-09','18:10:00','18:20:00','Nc','8460404292','4','B','2025-12-09 04:51:05'),(0,0,0,1473,'Y','2025-12-09','18:20:00','18:30:00','Nc','9265420621','4','B','2025-12-09 04:51:36'),(0,0,0,1477,'Y','2025-12-09','19:30:00','19:40:00','FC','9276555981','4','B','2025-12-09 06:39:31'),(0,0,0,1483,'Y','2025-12-10','13:30:00','13:40:00','Fv','9825027863','2','B','2025-12-09 20:17:50'),(0,0,0,1493,'Y','2025-12-10','18:00:00','18:10:00','Nv','','2','B','2025-12-10 02:37:56'),(0,0,0,1494,'Y','2025-12-10','19:30:00','19:40:00','FV','','2','B','2025-12-10 02:40:40'),(0,0,0,1496,'Y','2025-12-10','18:30:00','18:40:00','Nc','9662518528','4','B','2025-12-10 04:33:48'),(0,0,0,1498,'Y','2025-12-10','18:50:00','19:00:00','FC','7600000197','4','B','2025-12-10 04:34:53'),(0,0,0,1499,'Y','2025-12-11','10:10:00','10:20:00','Ne','9427457977','2','B','2025-12-10 20:13:01'),(0,0,0,1507,'Y','2025-12-11','11:00:00','11:10:00','Nc','7984406014','4','B','2025-12-10 21:47:39'),(0,0,0,1514,'Y','2025-12-11','12:50:00','13:00:00','FC','9426209933','4','B','2025-12-10 22:43:42'),(0,0,0,1515,'Y','2025-12-11','16:40:00','16:50:00','Fv','8980257183','2','B','2025-12-11 03:03:46'),(0,0,0,1517,'Y','2025-12-11','17:10:00','17:20:00','Fv','9978442725','2','B','2025-12-11 03:05:27'),(0,0,0,1519,'Y','2025-12-11','18:20:00','18:30:00','Ne','8160686261','2','B','2025-12-11 03:11:58'),(0,0,0,1526,'Y','2025-12-11','18:30:00','18:40:00','Nc','9870093054','4','B','2025-12-11 04:32:47'),(0,0,0,1530,'Y','2025-12-12','12:40:00','12:50:00','Rfv','9586780302','2','B','2025-12-11 20:16:14'),(0,0,0,1538,'Y','2025-12-12','13:50:00','14:00:00','Nv','9979756021','2','B','2025-12-11 21:48:30'),(0,0,0,1539,'Y','2025-12-12','13:50:00','14:00:00','Nv','9979756021','2','B','2025-12-11 21:48:38'),(0,0,0,1550,'Y','2025-12-12','18:10:00','18:20:00','Fv','9687600043','2','B','2025-12-12 03:08:21'),(0,0,0,1551,'Y','2025-12-12','18:30:00','18:40:00','Nv','9879391609','2','B','2025-12-12 03:08:52'),(0,0,0,1553,'Y','2025-12-12','18:10:00','18:20:00','','9714397770','4','B','2025-12-12 04:09:15'),(0,0,0,1562,'Y','2025-12-13','12:00:00','12:10:00','Nv','9825416032','2','B','2025-12-12 20:19:11'),(0,0,0,1564,'Y','2025-12-13','12:40:00','12:50:00','Ne','8758063939','2','B','2025-12-12 20:21:48'),(0,0,0,1567,'Y','2025-12-13','11:20:00','11:30:00','Fc','','4','B','2025-12-12 21:44:00'),(0,0,0,1572,'Y','2025-12-15','10:30:00','10:40:00','Nv','9726743910','2','B','2025-12-14 20:09:22'),(0,0,0,1573,'Y','2025-12-15','11:00:00','11:10:00','Nv','9558530560','2','B','2025-12-14 20:11:05'),(0,0,0,1576,'Y','2025-12-15','12:00:00','12:10:00','Nv','9825416032','2','B','2025-12-14 20:13:42'),(0,0,0,1587,'Y','2025-12-15','18:30:00','18:40:00','Nv','','2','B','2025-12-15 02:00:08'),(0,0,0,1588,'Y','2025-12-15','19:50:00','20:00:00','FV','','2','B','2025-12-15 02:00:35'),(0,0,0,1593,'Y','2025-12-15','18:30:00','18:40:00','','','4','B','2025-12-15 04:00:05'),(0,0,0,1594,'Y','2025-12-15','19:10:00','19:20:00','','9913982430','4','B','2025-12-15 04:01:45'),(0,0,0,1598,'Y','2025-12-16','12:10:00','12:20:00','Fv','9925071686','2','B','2025-12-15 20:10:32'),(0,0,0,1601,'Y','2025-12-16','11:00:00','11:10:00','','','4','B','2025-12-15 22:09:23'),(0,0,0,1603,'Y','2025-12-16','11:20:00','11:30:00','','6351677877','4','B','2025-12-15 22:10:40'),(0,0,0,1607,'Y','2025-12-16','12:20:00','12:30:00','','','4','B','2025-12-15 22:20:39'),(0,0,0,1612,'Y','2025-12-16','18:10:00','18:20:00','Nv','','2','B','2025-12-16 02:22:07'),(0,0,0,1629,'Y','2025-12-17','17:20:00','17:30:00','NE','','2','B','2025-12-17 01:43:55'),(0,0,0,1634,'Y','2025-12-17','18:00:00','18:10:00','','','4','B','2025-12-17 04:40:37'),(0,0,0,1640,'Y','2025-12-18','10:30:00','10:40:00','Nv','','2','B','2025-12-17 20:25:39'),(0,0,0,1644,'Y','2025-12-18','11:50:00','12:00:00','Fv','','2','B','2025-12-17 20:29:29'),(0,0,0,1645,'Y','2025-12-18','12:40:00','12:50:00','Fv','','2','B','2025-12-17 20:30:31'),(0,0,0,1657,'Y','2025-12-18','18:10:00','18:20:00','','','4','B','2025-12-18 04:13:07'),(0,0,0,1658,'Y','2025-12-18','18:20:00','18:30:00','','','4','B','2025-12-18 04:13:47'),(0,0,0,1659,'Y','2025-12-18','18:30:00','18:40:00','','','4','B','2025-12-18 04:14:08'),(0,0,0,1660,'Y','2025-12-18','18:40:00','18:50:00','','','4','B','2025-12-18 04:14:43'),(0,0,0,1667,'Y','2025-12-19','11:00:00','11:10:00','FC','','4','B','2025-12-18 21:47:05'),(0,0,0,1668,'Y','2025-12-19','11:20:00','11:30:00','Nc','','4','B','2025-12-18 21:48:36'),(0,0,0,1676,'Y','2025-12-19','19:50:00','20:00:00','Nv','','2','B','2025-12-19 02:07:12'),(0,0,0,1685,'Y','2025-12-20','11:10:00','11:20:00','FV','','4','B','2025-12-19 20:48:04'),(0,0,0,1686,'Y','2025-12-20','11:50:00','12:00:00','Fc','','4','B','2025-12-19 21:47:24'),(0,0,0,1687,'Y','2025-12-20','12:20:00','12:30:00','Fc','','4','B','2025-12-19 21:56:28'),(0,0,0,1690,'Y','2025-12-22','10:30:00','10:40:00','Nv','','2','B','2025-12-21 20:15:54'),(0,0,0,1693,'Y','2025-12-22','12:00:00','12:10:00','Nv','','2','B','2025-12-21 20:19:36'),(0,0,0,1697,'Y','2025-12-22','11:20:00','11:30:00','Fc','','4','B','2025-12-21 21:47:12'),(0,0,0,1699,'Y','2025-12-22','12:00:00','12:10:00','Fc','','4','B','2025-12-21 23:01:59'),(0,0,0,1703,'Y','2025-12-22','17:50:00','18:00:00','Rfv','','2','B','2025-12-22 03:46:37'),(0,0,0,1704,'Y','2025-12-22','18:30:00','05:30:00','Nv','','2','B','2025-12-22 03:47:43'),(0,0,0,1705,'Y','2025-12-22','18:00:00','18:10:00','Fc','','4','B','2025-12-22 04:51:32'),(0,0,0,1707,'Y','2025-12-22','18:50:00','19:00:00','Fc','','4','B','2025-12-22 04:52:37'),(0,0,0,1712,'Y','2025-12-23','12:40:00','12:50:00','Fv','','2','B','2025-12-22 20:19:45'),(0,0,0,1724,'Y','2025-12-23','11:50:00','12:00:00','Fc','','4','B','2025-12-22 21:54:37'),(0,0,0,1729,'Y','2025-12-23','17:00:00','17:10:00','Nv','','2','B','2025-12-23 03:36:41'),(0,0,0,1732,'Y','2025-12-23','18:00:00','18:10:00','Nv','','2','B','2025-12-23 03:39:32'),(0,0,0,1734,'Y','2025-12-23','18:20:00','18:30:00','NE','','2','B','2025-12-23 03:40:19'),(0,0,0,1735,'Y','2025-12-23','18:40:00','18:50:00','Fv','','2','B','2025-12-23 03:41:20'),(0,0,0,1736,'Y','2025-12-23','18:50:00','19:00:00','Fv','','2','B','2025-12-23 03:41:44'),(0,0,0,1737,'Y','2025-12-23','18:00:00','18:10:00','Nc','','4','B','2025-12-23 04:49:23'),(0,0,0,1738,'Y','2025-12-23','18:20:00','18:30:00','Nc','','4','B','2025-12-23 04:56:23'),(0,0,0,1739,'Y','2025-12-23','19:20:00','19:30:00','Fc','','4','B','2025-12-23 04:57:06'),(0,0,0,1740,'Y','2025-12-23','18:10:00','18:20:00','Nc','','4','B','2025-12-23 04:57:33'),(0,0,0,1741,'Y','2025-12-23','18:30:00','18:40:00','Nc','','4','B','2025-12-23 05:02:51'),(0,0,0,1742,'Y','2025-12-23','18:50:00','19:00:00','Fc','','4','B','2025-12-23 05:05:34'),(0,0,1,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866589093','3','T','2025-10-08 00:23:36'),(0,0,2,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879877105','3','T','2025-10-08 00:18:54'),(0,0,3,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909989594','3','T','2025-10-08 00:18:44'),(0,0,4,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9687039270','5','T','2025-10-07 23:49:19'),(0,0,5,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849647442','2','T','2025-10-08 02:01:33'),(0,0,5,0,'Y','2025-10-08','10:30:00','10:40:00','NV','','2','C','2025-10-07 22:44:36'),(0,0,6,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9724460511','2','T','2025-10-08 00:14:50'),(0,0,6,0,'Y','2025-10-08','11:50:00','12:00:00','FV','','2','C','2025-10-07 22:48:03'),(0,0,7,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925235208','2','T','2025-10-08 02:05:56'),(0,0,8,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8690075700','2','T','2025-10-08 00:11:38'),(0,0,8,0,'Y','2025-10-08','10:50:00','11:00:00','FV','','2','C','2025-10-07 22:46:41'),(0,0,9,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924260675','5','T','2025-10-08 01:26:38'),(0,0,9,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9924260675','5','T','2025-12-18 23:30:49'),(0,0,10,0,'Y','2025-10-08','10:40:00','10:50:00','FV','','2','C','2025-10-07 22:45:44'),(0,0,10,0,'Y','2025-11-07','08:00:00','08:30:00','Followup','9714415917','2','T','2025-10-08 00:07:46'),(0,0,10,0,'Y','2026-01-06','08:00:00','08:30:00','Followup','9737425925','2','T','2025-11-06 22:59:45'),(0,0,10,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','9737425925','2','T','2025-11-27 23:14:05'),(0,0,11,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726523999','3','T','2025-10-08 00:16:42'),(0,0,12,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428288532','2','T','2025-10-08 00:23:47'),(0,0,12,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','9428288532','2','T','2025-11-09 23:11:53'),(0,0,13,0,'Y','2025-10-08','10:20:00','10:30:00','FV','','2','C','2025-10-07 22:44:25'),(0,0,13,0,'Y','2025-11-07','08:00:00','08:30:00','Followup','8000778887','2','T','2025-10-07 23:57:20'),(0,0,14,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714415917','4','T','2025-10-08 07:01:51'),(0,0,15,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913498888','2','T','2025-10-08 00:53:34'),(0,0,15,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9913498888','2','T','2025-11-19 00:33:16'),(0,0,16,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979095089','4','T','2025-10-08 07:08:57'),(0,0,17,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9927262014','6','T','2025-10-08 02:07:41'),(0,0,18,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913545881','2','T','2025-10-08 00:35:56'),(0,0,19,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426960286','2','T','2025-10-08 00:50:30'),(0,0,19,0,'Y','2025-11-19','10:40:00','10:50:00','Fv','9426960286','2','C','2025-11-18 20:18:26'),(0,0,19,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9426960286','2','T','2025-11-18 22:48:10'),(0,0,20,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8758816490','4','T','2025-10-08 00:10:09'),(0,0,20,0,'Y','2025-11-12','12:20:00','12:30:00','FC','8758816490','4','C','2025-11-11 21:15:39'),(0,0,20,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','8758816490','4','T','2025-11-12 00:03:36'),(0,0,21,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','8866502272','4','T','2025-10-13 23:36:18'),(0,0,21,0,'Y','2026-02-12','08:00:00','08:30:00','Followup','8866502272','4','T','2025-11-13 23:11:46'),(0,0,22,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426998707','4','T','2025-10-08 07:09:06'),(0,0,22,0,'Y','2025-10-27','11:40:00','11:50:00','','9426998707','4','C','2025-10-26 21:57:13'),(0,0,22,0,'Y','2025-11-11','12:40:00','12:50:00','','9426998707','4','C','2025-11-10 22:03:52'),(0,0,22,0,'Y','2025-11-24','12:00:00','12:10:00','','9426998707','4','C','2025-11-23 21:00:17'),(0,0,22,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9426998707','4','T','2025-11-11 00:59:48'),(0,0,22,0,'Y','2026-02-23','08:00:00','08:30:00','Followup','9426998707','4','T','2025-11-23 23:59:40'),(0,0,24,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726714141','5','T','2025-10-08 00:03:18'),(0,0,25,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426438305','2','T','2025-10-08 02:18:19'),(0,0,25,0,'Y','2025-10-08','11:00:00','11:10:00','NV','','2','C','2025-10-07 22:46:51'),(0,0,26,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725622468','2','T','2025-10-08 00:56:57'),(0,0,26,0,'Y','2025-10-08','12:20:00','12:30:00','NV','','2','C','2025-10-07 22:48:58'),(0,0,26,0,'Y','2025-11-06','11:40:00','11:50:00','Fv','9725622468','2','C','2025-11-05 20:18:35'),(0,0,26,0,'Y','2025-12-17','12:20:00','12:30:00','FV','9725622468','2','C','2025-12-16 20:27:41'),(0,0,26,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9725622468','2','T','2025-11-05 23:36:41'),(0,0,26,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9725622468','2','T','2025-12-17 00:08:36'),(0,0,27,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6351133076','7','T','2025-10-15 00:08:39'),(0,0,29,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8238927671','2','T','2025-10-08 01:10:33'),(0,0,29,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','8238927671','2','T','2025-11-17 01:23:54'),(0,0,30,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638257679','2','T','2025-10-08 01:14:47'),(0,0,31,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825635130','2','T','2025-10-08 01:26:18'),(0,0,31,0,'Y','2025-10-24','11:10:00','11:20:00','','9825635130','2','B','2025-10-23 08:05:54'),(0,0,32,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726512003','2','T','2025-10-08 00:45:33'),(0,0,33,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7878795969','2','T','2025-10-08 00:47:38'),(0,0,35,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998175913','4','T','2025-10-08 07:10:10'),(0,0,36,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866218357','4','T','2025-10-08 07:10:19'),(0,0,36,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','8866218357','4','T','2025-12-02 23:13:34'),(0,0,37,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866124561','3','T','2025-10-09 23:44:27'),(0,0,38,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7990989995','2','T','2025-10-08 02:47:36'),(0,0,38,0,'Y','2025-10-08','11:30:00','11:40:00','NV','','2','C','2025-10-07 22:47:31'),(0,0,39,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8128996066','3','T','2025-10-08 00:18:30'),(0,0,40,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429169546','2','T','2025-10-08 01:30:01'),(0,0,41,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974189299','5','T','2025-10-08 00:14:03'),(0,0,42,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8141020133','2','T','2025-10-08 01:42:32'),(0,0,43,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725878258','3','T','2025-10-08 00:16:29'),(0,0,44,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879190850','4','T','2025-10-08 07:10:32'),(0,0,44,0,'Y','2025-10-10','18:50:00','19:00:00','','9879190850','4','B','2025-10-10 06:14:48'),(0,0,45,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925773778','4','T','2025-10-08 07:09:58'),(0,0,45,0,'Y','2025-10-16','18:40:00','18:50:00','','9925773778','4','C','2025-10-16 06:40:55'),(0,0,46,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727056182','2','T','2025-10-08 01:52:20'),(0,0,47,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7016200192','4','T','2025-10-08 07:09:38'),(0,0,47,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','7016200192','4','T','2025-10-28 00:34:32'),(0,0,49,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427326816','5','T','2025-10-08 00:28:42'),(0,0,50,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428289907','4','T','2025-10-08 07:09:28'),(0,0,52,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866047775','2','T','2025-10-08 02:50:09'),(0,0,52,0,'Y','2025-10-08','12:00:00','12:10:00','NV','','2','C','2025-10-07 22:48:28'),(0,0,53,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','0','3','T','2025-10-08 05:47:37'),(0,0,54,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9106558307','3','T','2025-10-08 05:48:03'),(0,0,55,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879234592','2','T','2025-10-08 01:21:29'),(0,0,55,0,'Y','2025-10-08','12:50:00','13:00:00','FV','','2','C','2025-10-07 22:49:26'),(0,0,55,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9879234592','2','T','2025-11-27 00:36:12'),(0,0,56,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426443543','5','T','2025-10-15 06:56:43'),(0,0,56,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9426443543','5','T','2025-10-29 23:57:24'),(0,0,56,0,'Y','2026-02-12','08:00:00','08:30:00','Followup','9426443543','5','T','2025-12-15 00:07:01'),(0,0,57,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998464818','6','T','2025-10-08 02:07:55'),(0,0,58,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904061251','2','T','2025-10-08 02:04:08'),(0,0,58,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','9904061251','2','T','2025-12-23 01:43:12'),(0,0,59,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9687064833','2','T','2025-10-08 02:28:55'),(0,0,61,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9106558307','6','T','2025-10-08 02:08:05'),(0,0,62,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712013777','4','T','2025-10-14 07:34:30'),(0,0,62,0,'Y','2025-10-14','18:30:00','18:40:00','','9712013777','4','C','2025-10-14 05:25:19'),(0,0,63,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8238837631','3','T','2025-10-16 23:56:52'),(0,0,64,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925371595','3','T','2025-10-08 05:48:45'),(0,0,65,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9409677777','2','T','2025-10-08 01:17:48'),(0,0,65,0,'Y','2025-10-08','12:40:00','12:50:00','FV','','2','C','2025-10-07 22:49:17'),(0,0,66,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866218357','3','T','2025-10-24 07:25:26'),(0,0,67,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6354383521','4','T','2025-10-08 07:37:16'),(0,0,68,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898440428','3','T','2025-10-08 05:49:17'),(0,0,69,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160370105','2','T','2025-10-08 03:02:18'),(0,0,70,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879771777','4','T','2025-10-08 07:09:18'),(0,0,71,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879771777','4','T','2025-10-08 07:07:51'),(0,0,72,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9408043999','3','T','2025-10-08 05:49:30'),(0,0,73,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824220296','3','T','2025-10-08 05:52:21'),(0,0,74,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726503793','3','T','2025-10-08 05:53:06'),(0,0,75,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824294235','4','T','2025-10-08 07:08:00'),(0,0,75,0,'Y','2026-02-14','08:00:00','08:30:00','Followup','9824294235','4','T','2025-12-16 06:13:47'),(0,0,76,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9558385808','2','T','2025-10-08 03:21:12'),(0,0,77,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9327791701','4','T','2025-10-08 07:08:47'),(0,0,78,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8238059559','4','T','2025-10-13 01:47:11'),(0,0,79,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7888919480','2','T','2025-10-08 02:56:55'),(0,0,79,0,'Y','2025-12-11','17:50:00','18:00:00','Fv','7888919480','2','C','2025-12-11 03:06:33'),(0,0,79,0,'Y','2026-01-20','08:00:00','08:30:00','Followup','7888919480','2','T','2025-12-11 06:06:52'),(0,0,80,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824812396','6','T','2025-10-08 07:26:47'),(0,0,81,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824812396','6','T','2025-10-08 07:26:57'),(0,0,82,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824516787','4','T','2025-10-08 07:37:08'),(0,0,82,0,'Y','2025-10-08','18:00:00','18:10:00','','9824516787','4','B','2025-10-08 06:12:13'),(0,0,83,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6355074154','2','T','2025-10-08 05:38:40'),(0,0,84,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9738534444','2','T','2025-10-08 05:39:25'),(0,0,85,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9327780840','2','T','2025-10-08 05:42:25'),(0,0,86,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9173870776','2','T','2025-10-08 05:43:11'),(0,0,87,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726133011','2','T','2025-10-08 08:01:15'),(0,0,87,0,'Y','2025-10-08','17:00:00','17:10:00','NV','','2','C','2025-10-08 03:36:18'),(0,0,87,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9726133011','2','T','2025-10-18 01:02:42'),(0,0,88,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9537306863','2','T','2025-10-08 05:58:02'),(0,0,88,0,'Y','2025-10-08','16:40:00','16:50:00','FV','','2','C','2025-10-08 03:35:55'),(0,0,89,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979408886','2','T','2025-10-08 06:02:28'),(0,0,89,0,'Y','2025-10-08','17:10:00','17:20:00','FV','','2','C','2025-10-08 03:36:48'),(0,0,89,0,'Y','2025-12-08','11:20:00','11:30:00','Fv','9979408886','2','C','2025-12-07 20:12:07'),(0,0,89,0,'Y','2026-01-22','08:00:00','08:30:00','Followup','9979408886','2','T','2025-12-07 23:02:11'),(0,0,90,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7698677769','2','T','2025-10-08 06:06:27'),(0,0,90,0,'Y','2025-10-08','16:50:00','17:00:00','FV','','2','C','2025-10-08 03:36:06'),(0,0,90,0,'Y','2025-10-24','12:40:00','12:50:00','','7698677769','2','B','2025-10-23 08:08:34'),(0,0,90,0,'Y','2025-10-25','08:00:00','08:30:00','Followup','7698677769','2','T','2025-10-15 03:01:13'),(0,0,90,0,'Y','2025-10-27','17:10:00','17:20:00','','7698677769','2','C','2025-10-27 03:34:41'),(0,0,90,0,'Y','2025-11-11','08:00:00','08:30:00','Followup','7698677769','2','T','2025-10-27 06:09:14'),(0,0,91,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428570106','2','T','2025-10-08 06:16:11'),(0,0,91,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9428570106','2','T','2025-11-08 00:38:35'),(0,0,91,0,'Y','2025-12-22','16:50:00','17:00:00','Fv','9428570106','2','C','2025-12-22 03:40:31'),(0,0,91,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','9428570106','2','T','2025-12-22 04:44:11'),(0,0,92,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904583464','2','T','2025-10-08 06:11:37'),(0,0,92,0,'Y','2025-10-08','17:20:00','17:30:00','FV','','2','C','2025-10-08 03:37:04'),(0,0,93,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924915156','2','T','2025-10-08 06:20:33'),(0,0,94,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662009237','2','T','2025-10-08 06:51:05'),(0,0,95,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200205350','2','T','2025-10-08 06:26:19'),(0,0,96,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9275174891','4','T','2025-10-08 08:06:24'),(0,0,97,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7016628780','3','T','2025-10-08 05:53:31'),(0,0,98,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427941732','3','T','2025-10-08 07:34:43'),(0,0,99,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429096589','2','T','2025-10-08 08:54:50'),(0,0,100,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200778160','2','T','2025-10-08 07:37:46'),(0,0,100,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','8200778160','2','T','2025-11-08 01:15:42'),(0,0,100,0,'Y','2025-12-08','17:40:00','17:50:00','','8200778160','2','C','2025-12-08 02:51:56'),(0,0,100,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','8200778160','2','T','2025-12-08 07:24:49'),(0,0,101,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9586456081','2','T','2025-10-08 07:47:13'),(0,0,102,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9327050609','2','T','2025-10-08 07:50:20'),(0,0,103,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898034455','2','T','2025-10-08 08:00:59'),(0,0,104,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8128882058','2','T','2025-10-08 08:20:09'),(0,0,104,0,'Y','2025-10-08','17:30:00','17:40:00','NV','','2','C','2025-10-08 03:37:30'),(0,0,105,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913693314','2','T','2025-10-08 08:19:23'),(0,0,105,0,'Y','2025-11-05','16:50:00','17:00:00','','9913693314','2','C','2025-11-05 02:17:43'),(0,0,105,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9913693314','2','T','2025-11-05 05:11:52'),(0,0,106,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909914800','2','T','2025-10-08 09:19:32'),(0,0,106,0,'Y','2025-10-08','18:30:00','18:40:00','NV','','2','C','2025-10-08 03:39:03'),(0,0,107,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9374101235','2','T','2025-10-08 06:48:43'),(0,0,107,0,'Y','2025-10-08','17:40:00','17:50:00','FV','','2','C','2025-10-08 03:37:46'),(0,0,108,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9374101235','2','T','2025-10-08 06:44:33'),(0,0,108,0,'Y','2025-10-08','17:50:00','18:00:00','FV','','2','C','2025-10-08 03:38:00'),(0,0,109,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904718840','4','T','2025-10-08 08:08:23'),(0,0,110,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824368399','2','T','2025-10-08 07:07:36'),(0,0,110,0,'Y','2025-10-08','18:10:00','18:20:00','FV','','2','C','2025-10-08 03:38:31'),(0,0,111,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8264028972','5','T','2025-10-08 06:41:32'),(0,0,112,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879362400','4','T','2025-10-08 07:36:27'),(0,0,112,0,'Y','2026-03-03','08:00:00','08:30:00','Followup','9879362400','4','T','2025-12-03 00:21:43'),(0,0,113,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9277808048','4','T','2025-10-08 07:36:41'),(0,0,114,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9409444535','2','T','2025-10-08 09:10:59'),(0,0,114,0,'Y','2025-10-08','18:00:00','18:10:00','NV','','2','C','2025-10-08 03:38:11'),(0,0,115,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7698888896','2','T','2025-10-08 08:49:44'),(0,0,116,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099925349','6','T','2025-10-08 07:15:31'),(0,0,117,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8460677761','5','T','2025-10-08 06:44:31'),(0,0,118,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6355995721','4','T','2025-10-08 07:07:36'),(0,0,118,0,'Y','2025-10-08','18:10:00','18:20:00','','6355995721','4','C','2025-10-08 06:13:06'),(0,0,119,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662635554','6','T','2025-10-08 07:22:42'),(0,0,120,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879993222','5','T','2025-10-08 06:54:10'),(0,0,120,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9879993222','5','T','2025-11-28 06:23:06'),(0,0,121,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879993222','5','T','2025-10-08 06:54:39'),(0,0,122,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8264499999','3','T','2025-10-08 07:18:04'),(0,0,123,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824560771','2','T','2025-10-08 08:59:01'),(0,0,124,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426413029','2','T','2025-10-08 09:09:39'),(0,0,125,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7211111038','3','T','2025-10-08 08:06:25'),(0,0,126,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879778601','3','T','2025-10-08 07:32:10'),(0,0,127,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8401601212','3','T','2025-10-08 07:27:12'),(0,0,128,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726778692','3','T','2025-10-08 07:27:35'),(0,0,129,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033151312','3','T','2025-10-08 07:35:03'),(0,0,130,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727570487','5','T','2025-10-08 07:14:21'),(0,0,131,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426974121','2','T','2025-10-08 07:38:11'),(0,0,132,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7405705540','6','T','2025-10-08 07:26:36'),(0,0,133,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825073885','2','T','2025-10-08 08:37:28'),(0,0,134,0,'Y','2025-10-08','18:40:00','18:50:00','','9898846228','4','R','2025-10-08 06:18:18'),(0,0,135,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9377812840','4','T','2025-10-08 08:08:12'),(0,0,135,0,'Y','2025-10-08','19:00:00','19:10:00','','9377812840','4','C','2025-10-08 06:16:08'),(0,0,136,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7265977897','3','T','2025-10-08 08:13:26'),(0,0,137,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924983018','5','T','2025-10-08 07:24:31'),(0,0,138,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9228180412','4','T','2025-10-08 08:08:33'),(0,0,138,0,'Y','2025-10-08','19:10:00','19:20:00','','9228180412','4','C','2025-10-08 06:49:01'),(0,0,138,0,'Y','2025-12-17','19:00:00','19:10:00','','9228180412','4','C','2025-12-17 05:17:39'),(0,0,139,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879470878','5','T','2025-10-08 07:28:08'),(0,0,140,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824557716','4','T','2025-10-08 08:06:42'),(0,0,141,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824557716','4','T','2025-10-08 08:06:34'),(0,0,142,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909298450','5','T','2025-10-08 07:36:13'),(0,0,143,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429340399','2','T','2025-10-08 09:15:44'),(0,0,144,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879331401','6','T','2025-10-08 07:44:12'),(0,0,145,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428838129','2','T','2025-10-08 08:30:54'),(0,0,145,0,'Y','2025-10-23','08:00:00','08:30:00','Followup','9428838129','2','T','2025-10-13 07:45:44'),(0,0,146,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8511136302','5','T','2025-10-08 07:50:16'),(0,0,147,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998283278','2','T','2025-10-08 09:19:08'),(0,0,148,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727809012','6','T','2025-10-08 08:05:37'),(0,0,149,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7016575959','5','T','2025-10-08 07:58:21'),(0,0,150,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8905567850','6','T','2025-10-08 08:06:08'),(0,0,151,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714707438','3','T','2025-10-08 08:06:37'),(0,0,154,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879119377','6','T','2025-10-08 08:22:10'),(0,0,155,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427441041','6','T','2025-10-08 08:22:21'),(0,0,157,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727702727','2','T','2025-10-08 09:26:04'),(0,0,158,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866124561','3','T','2025-10-09 00:40:18'),(0,0,159,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909988560','2','T','2025-10-08 23:18:04'),(0,0,160,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7990774544','4','T','2025-10-09 01:34:41'),(0,0,161,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825354568','4','T','2025-10-09 01:34:50'),(0,0,161,0,'Y','2025-10-17','12:10:00','12:20:00','','9825354568','4','B','2025-10-16 22:24:42'),(0,0,161,0,'Y','2025-10-27','12:30:00','12:40:00','','9825354568','4','C','2025-10-26 21:58:53'),(0,0,163,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712320042','2','T','2025-10-08 23:17:17'),(0,0,163,0,'Y','2025-10-09','10:50:00','11:00:00','Fv','9712320042','2','C','2025-10-08 21:53:58'),(0,0,163,0,'Y','2025-11-24','11:40:00','11:50:00','Fv','9712320042','2','C','2025-11-23 20:21:52'),(0,0,163,0,'Y','2026-01-23','08:00:00','08:30:00','Followup','9712320042','2','T','2025-11-23 23:49:27'),(0,0,164,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427164187','2','T','2025-10-09 02:01:04'),(0,0,166,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9265616173','3','T','2025-10-09 00:41:07'),(0,0,167,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426996840','4','T','2025-10-09 01:35:01'),(0,0,167,0,'Y','2025-10-09','11:00:00','11:10:00','','9426996840','4','B','2025-10-08 22:50:08'),(0,0,168,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712662037','5','T','2025-10-08 23:49:54'),(0,0,168,0,'Y','2026-03-13','08:00:00','08:30:00','Followup','9712662037','5','T','2025-12-12 23:00:14'),(0,0,169,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6353443117','2','T','2025-10-08 23:35:34'),(0,0,169,0,'Y','2025-10-09','11:10:00','11:20:00','Fv','','2','C','2025-10-08 21:57:09'),(0,0,169,0,'Y','2025-12-09','11:40:00','11:50:00','Fv','6353443117','2','C','2025-12-08 20:17:55'),(0,0,169,0,'Y','2026-02-07','08:00:00','08:30:00','Followup','6353443117','2','T','2025-12-08 23:57:53'),(0,0,170,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998844321','2','T','2025-10-08 23:40:41'),(0,0,170,0,'Y','2025-10-09','10:10:00','10:30:00','Fv','','2','C','2025-10-08 21:51:30'),(0,0,170,0,'Y','2026-01-22','08:00:00','08:30:00','Followup','9998844321','2','T','2025-12-22 22:39:45'),(0,0,171,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723282714','2','T','2025-10-09 02:32:59'),(0,0,171,0,'Y','2025-10-09','11:30:00','11:40:00','Nv','9723282714','2','C','2025-10-08 21:58:18'),(0,0,171,0,'Y','2025-11-07','10:20:00','10:30:00','Fv','9723282714','2','C','2025-11-06 20:13:47'),(0,0,171,0,'Y','2026-01-06','08:00:00','08:30:00','Followup','9723282714','2','T','2025-11-06 22:36:24'),(0,0,172,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9128223305','4','T','2025-10-09 01:35:14'),(0,0,173,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6354348439','2','T','2025-10-08 23:46:01'),(0,0,173,0,'Y','2025-10-09','10:40:00','10:50:00','Fv','6354348439','2','C','2025-10-08 21:53:26'),(0,0,174,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879578089','2','T','2025-10-09 00:01:22'),(0,0,174,0,'Y','2025-10-09','11:00:00','11:10:00','Nv','9879578089','2','C','2025-10-08 21:55:09'),(0,0,175,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7574861689','4','T','2025-10-09 07:12:30'),(0,0,177,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925903009','2','T','2025-10-09 02:41:20'),(0,0,177,0,'Y','2025-10-09','10:30:00','10:40:00','Nv','9925903009','2','C','2025-10-08 21:52:56'),(0,0,177,0,'Y','2025-12-05','11:50:00','12:00:00','FV','9925903009','2','C','2025-12-04 20:31:10'),(0,0,177,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9925903009','2','T','2025-12-04 23:44:32'),(0,0,178,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909043743','3','T','2025-10-09 00:41:20'),(0,0,179,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924445600','4','T','2025-10-09 07:12:20'),(0,0,179,0,'Y','2025-10-09','11:10:00','11:20:00','','','4','C','2025-10-08 22:50:41'),(0,0,179,0,'Y','2025-10-27','12:10:00','12:20:00','','9924445600','4','C','2025-10-26 21:58:11'),(0,0,179,0,'Y','2025-11-11','11:00:00','11:10:00','','9924445600','4','C','2025-11-10 21:58:25'),(0,0,179,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9924445600','4','T','2025-11-10 23:53:42'),(0,0,180,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879105404','3','T','2025-10-09 00:41:44'),(0,0,181,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824458134','2','T','2025-10-09 00:42:41'),(0,0,181,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','9824458134','2','T','2025-11-17 22:50:49'),(0,0,182,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8980088587','2','T','2025-10-09 02:58:18'),(0,0,183,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7878265247','2','T','2025-10-09 01:03:24'),(0,0,184,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7041400008','2','T','2025-10-09 01:06:34'),(0,0,184,0,'Y','2025-10-20','08:00:00','08:30:00','Followup','7041400008','2','T','2025-10-14 01:10:37'),(0,0,185,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924224176','4','T','2025-10-09 07:08:05'),(0,0,186,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998108462','4','T','2025-10-09 07:07:54'),(0,0,187,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7202904505','3','T','2025-10-09 08:21:45'),(0,0,188,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426222140','5','T','2025-10-09 00:00:44'),(0,0,188,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9426222140','5','T','2025-12-05 06:11:44'),(0,0,189,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8000010444','4','T','2025-10-09 07:07:37'),(0,0,189,0,'Y','2025-10-09','11:30:00','11:40:00','','','4','C','2025-10-08 22:51:33'),(0,0,190,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9687250884','2','T','2025-10-09 01:11:09'),(0,0,191,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825715433','6','T','2025-10-09 00:41:34'),(0,0,192,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8758005823','2','T','2025-10-09 01:13:48'),(0,0,192,0,'Y','2025-10-09','12:20:00','12:30:00','Fv','','2','C','2025-10-08 22:00:59'),(0,0,193,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824080498','5','T','2025-10-09 00:06:18'),(0,0,193,0,'Y','2026-01-31','08:00:00','08:30:00','Followup','9824080498','5','T','2025-12-01 23:49:49'),(0,0,194,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898281471','4','T','2025-10-09 06:59:00'),(0,0,195,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033158876','4','T','2025-10-09 06:59:48'),(0,0,196,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924790050','2','T','2025-10-09 01:20:06'),(0,0,196,0,'Y','2025-10-09','11:40:00','11:50:00','Fv','','2','C','2025-10-08 21:58:41'),(0,0,197,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974376299','4','T','2025-10-09 07:07:00'),(0,0,197,0,'Y','2025-10-09','11:50:00','12:00:00','','9913821248','4','C','2025-10-08 23:18:28'),(0,0,198,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8140009342','2','T','2025-10-09 02:00:31'),(0,0,198,0,'Y','2025-12-11','12:10:00','12:20:00','Fv','8140009342','2','C','2025-12-10 20:16:33'),(0,0,198,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','8140009342','2','T','2025-12-10 23:50:12'),(0,0,199,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9574760234','2','T','2025-10-09 02:32:47'),(0,0,199,0,'Y','2025-10-09','12:30:00','12:40:00','Nv','9574760234','2','C','2025-10-08 22:01:27'),(0,0,200,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7878241410','4','T','2025-10-09 07:06:49'),(0,0,200,0,'Y','2025-10-09','11:20:00','11:30:00','','','4','C','2025-10-08 22:51:15'),(0,0,200,0,'Y','2025-11-28','18:30:00','18:40:00','','7878241410','4','C','2025-11-28 04:02:37'),(0,0,200,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','7878241410','4','T','2025-11-28 06:00:59'),(0,0,201,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998379939','2','T','2025-10-09 00:38:28'),(0,0,201,0,'Y','2025-10-09','11:50:00','12:00:00','Fv','','2','C','2025-10-08 21:59:28'),(0,0,202,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7874757545','2','T','2025-10-09 02:31:29'),(0,0,203,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7201077477','4','T','2025-10-09 06:59:38'),(0,0,203,0,'Y','2025-10-09','11:40:00','11:50:00','','','4','C','2025-10-08 23:04:27'),(0,0,204,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924462732','4','T','2025-10-09 06:58:52'),(0,0,204,0,'Y','2025-10-09','12:10:00','12:20:00','','9924462732','4','C','2025-10-08 23:45:01'),(0,0,204,0,'Y','2025-10-28','12:50:00','13:00:00','','9924462732','4','C','2025-10-28 00:36:12'),(0,0,204,0,'Y','2025-10-29','11:00:00','11:10:00','','9924462732','4','B','2025-10-28 22:04:22'),(0,0,204,0,'Y','2025-11-20','12:50:00','13:00:00','','9924462732','4','C','2025-11-19 22:53:34'),(0,0,204,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9924462732','4','T','2025-11-20 01:54:33'),(0,0,204,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9924462732','4','T','2025-10-28 01:41:37'),(0,0,205,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638243171','2','T','2025-10-09 01:55:51'),(0,0,205,0,'Y','2025-10-09','12:50:00','13:00:00','Fv','','2','C','2025-10-08 22:02:13'),(0,0,206,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7874478692','2','T','2025-10-09 01:16:52'),(0,0,206,0,'Y','2025-10-09','12:10:00','12:20:00','Fv','','2','C','2025-10-08 22:00:19'),(0,0,206,0,'Y','2025-12-10','12:20:00','12:30:00','Fv','7874478692','2','C','2025-12-09 23:46:41'),(0,0,206,0,'Y','2026-03-10','08:00:00','08:30:00','Followup','7874478692','2','T','2025-12-10 00:16:20'),(0,0,207,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9265772680','5','T','2025-10-09 00:58:28'),(0,0,209,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925647297','2','T','2025-10-09 01:45:27'),(0,0,209,0,'Y','2025-10-09','12:40:00','12:50:00','Fv','','2','C','2025-10-08 22:01:53'),(0,0,210,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9664633122','4','T','2025-10-09 06:59:09'),(0,0,210,0,'Y','2025-10-09','12:00:00','12:10:00','','9664633122','4','C','2025-10-08 23:25:33'),(0,0,211,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9601272076','3','T','2025-10-09 08:37:35'),(0,0,212,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8530414621','4','T','2025-10-09 07:27:26'),(0,0,212,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','8530414621','4','T','2025-11-12 00:34:31'),(0,0,212,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','8530414621','4','T','2025-12-01 01:17:55'),(0,0,213,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974017293','3','T','2025-10-09 07:22:12'),(0,0,214,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160674257','2','T','2025-10-09 03:01:41'),(0,0,214,0,'Y','2025-10-09','13:00:00','13:10:00','Nv','','2','C','2025-10-08 22:46:16'),(0,0,214,0,'Y','2025-10-17','18:10:00','18:20:00','','8160674257','2','C','2025-10-17 06:35:20'),(0,0,214,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','8160674257','2','T','2025-10-17 07:09:21'),(0,0,215,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427725254','4','T','2025-10-09 06:59:18'),(0,0,216,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6355245070','3','T','2025-10-09 08:37:58'),(0,0,217,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726617245','2','T','2025-10-09 02:35:43'),(0,0,218,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9328930745','2','T','2025-10-09 03:06:27'),(0,0,219,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6352229058','3','T','2025-10-09 08:26:11'),(0,0,220,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8320053907','2','T','2025-10-09 08:02:46'),(0,0,220,0,'Y','2025-10-09','17:00:00','17:10:00','','','2','C','2025-10-09 04:50:41'),(0,0,220,0,'Y','2025-11-06','08:00:00','08:30:00','Followup','8320053907','2','T','2025-10-16 23:18:15'),(0,0,220,0,'Y','2025-11-07','17:20:00','17:30:00','','8320053907','2','C','2025-11-07 02:25:21'),(0,0,220,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','8320053907','2','T','2025-11-07 05:07:07'),(0,0,221,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974970637','2','T','2025-10-09 05:36:03'),(0,0,221,0,'Y','2025-10-09','16:40:00','16:50:00','','','2','C','2025-10-09 04:49:21'),(0,0,221,0,'Y','2025-11-10','12:40:00','12:50:00','Fv','9974970637','2','C','2025-11-09 20:35:54'),(0,0,221,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9974970637','2','T','2025-11-10 00:23:30'),(0,0,221,0,'Y','2025-12-22','11:40:00','11:50:00','Fv','9974970637','2','C','2025-12-21 20:18:00'),(0,0,221,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','9974970637','2','T','2025-12-21 23:17:05'),(0,0,222,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825231484','2','T','2025-10-09 05:39:20'),(0,0,222,0,'Y','2025-10-09','16:50:00','17:00:00','','','2','C','2025-10-09 04:49:51'),(0,0,223,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7574045939','2','T','2025-10-09 08:14:36'),(0,0,223,0,'Y','2025-11-14','18:50:00','19:00:00','Fv','7574045939','2','C','2025-11-14 03:09:29'),(0,0,223,0,'Y','2026-03-14','08:00:00','08:30:00','Followup','7574045939','2','T','2025-11-14 05:50:27'),(0,0,224,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978938438','3','T','2025-10-09 08:38:15'),(0,0,225,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979677858','2','T','2025-10-09 06:14:03'),(0,0,225,0,'Y','2025-10-09','17:10:00','17:20:00','Fv','','2','C','2025-10-09 04:50:54'),(0,0,225,0,'Y','2025-11-18','17:20:00','17:30:00','','9979677858','2','C','2025-11-18 02:09:40'),(0,0,225,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','9979677858','2','T','2025-11-18 05:11:27'),(0,0,226,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723052786','2','T','2025-10-09 08:55:26'),(0,0,226,0,'Y','2025-10-31','17:50:00','18:00:00','','9723052786','2','C','2025-10-31 03:07:07'),(0,0,226,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9723052786','2','T','2025-10-31 08:16:18'),(0,0,227,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849410596','2','T','2025-10-09 07:00:43'),(0,0,228,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7818880808','2','T','2025-10-09 06:16:50'),(0,0,228,0,'Y','2025-10-09','17:20:00','17:30:00','FV','','2','C','2025-10-09 05:06:16'),(0,0,229,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9624722248','2','T','2025-10-09 06:30:08'),(0,0,229,0,'Y','2025-10-09','18:10:00','18:20:00','FV','','2','C','2025-10-09 05:08:57'),(0,0,229,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9624722248','2','T','2025-10-25 02:03:53'),(0,0,230,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428699352','3','T','2025-10-09 07:26:06'),(0,0,231,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6352213505','3','T','2025-10-09 08:26:50'),(0,0,232,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825997492','2','T','2025-10-09 08:20:28'),(0,0,232,0,'Y','2025-10-09','17:30:00','17:40:00','NV','9825997492','2','C','2025-10-09 05:06:43'),(0,0,232,0,'Y','2025-11-17','16:40:00','16:50:00','Fv','9825997492','2','C','2025-11-17 03:08:39'),(0,0,232,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9825997492','2','T','2025-11-17 04:52:54'),(0,0,233,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429995473','2','T','2025-10-09 06:47:22'),(0,0,233,0,'Y','2025-10-09','17:40:00','17:50:00','FV','','2','C','2025-10-09 05:07:03'),(0,0,234,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428253623','3','T','2025-10-09 07:29:08'),(0,0,235,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879590472','2','T','2025-10-09 07:08:51'),(0,0,236,0,'Y','2025-10-09','19:10:00','19:20:00','','','4','R','2025-10-09 05:52:55'),(0,0,237,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898047339','2','T','2025-10-09 07:17:15'),(0,0,238,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979199099','2','T','2025-10-09 08:55:16'),(0,0,240,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427410120','4','T','2025-10-09 07:27:13'),(0,0,240,0,'Y','2025-10-09','18:10:00','18:20:00','','','4','C','2025-10-09 05:50:36'),(0,0,241,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979639409','2','T','2025-10-09 07:05:02'),(0,0,241,0,'Y','2025-10-09','17:50:00','18:00:00','FV','','2','C','2025-10-09 05:07:21'),(0,0,242,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6352229058','4','T','2025-10-09 07:27:43'),(0,0,243,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099365933','2','T','2025-10-09 07:48:36'),(0,0,243,0,'Y','2025-10-09','18:40:00','18:50:00','Rnv','9099365933','2','C','2025-10-09 05:13:30'),(0,0,244,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099365933','2','T','2025-10-09 07:48:46'),(0,0,244,0,'Y','2025-10-09','18:30:00','18:40:00','Nv','9099365933','2','C','2025-10-09 05:10:49'),(0,0,245,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9374008924','3','T','2025-10-09 07:14:59'),(0,0,246,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200670720','3','T','2025-10-09 07:21:40'),(0,0,247,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8511433460','3','T','2025-10-09 07:18:41'),(0,0,248,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8320490138','5','T','2025-10-09 07:39:16'),(0,0,250,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9328692931','4','T','2025-10-09 07:16:28'),(0,0,250,0,'Y','2025-10-09','18:20:00','18:30:00','','','4','C','2025-10-09 05:50:57'),(0,0,251,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825258487','2','T','2025-10-09 07:59:07'),(0,0,251,0,'Y','2025-10-09','18:50:00','19:00:00','FV','','2','C','2025-10-09 05:13:51'),(0,0,252,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428684853','4','T','2025-10-09 07:25:18'),(0,0,252,0,'Y','2025-10-09','18:50:00','19:00:00','','','4','C','2025-10-09 05:52:14'),(0,0,252,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9428684853','4','T','2025-12-13 00:00:11'),(0,0,253,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7016471789','4','T','2025-10-09 07:30:29'),(0,0,254,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909964265','5','T','2025-10-09 07:16:23'),(0,0,255,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979850283','4','T','2025-10-09 07:24:33'),(0,0,255,0,'Y','2025-10-09','18:30:00','18:40:00','','','4','C','2025-10-09 05:51:17'),(0,0,255,0,'Y','2025-10-28','19:30:00','19:40:00','','9979850283','4','C','2025-10-28 07:11:23'),(0,0,255,0,'Y','2025-10-31','18:50:00','19:00:00','','9979850283','4','C','2025-10-31 05:24:20'),(0,0,255,0,'Y','2025-11-12','12:10:00','12:20:00','','9979850283','4','C','2025-11-11 21:15:19'),(0,0,255,0,'Y','2025-11-26','11:40:00','11:50:00','','9979850283','4','C','2025-11-25 21:31:00'),(0,0,255,0,'Y','2025-12-13','12:10:00','12:20:00','','9979850283','4','R','2025-12-12 22:29:44'),(0,0,255,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9979850283','4','T','2025-10-28 08:20:33'),(0,0,256,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9510047777','4','T','2025-10-09 08:01:53'),(0,0,257,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9687362664','5','T','2025-10-09 07:38:09'),(0,0,257,0,'Y','2026-03-30','08:00:00','08:30:00','Followup','9687362664','5','T','2025-12-19 06:14:53'),(0,0,258,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723984627','4','T','2025-10-09 07:49:20'),(0,0,258,0,'Y','2025-10-09','19:00:00','19:10:00','','','4','C','2025-10-09 05:52:36'),(0,0,259,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9820111419','4','T','2025-10-09 07:49:30'),(0,0,260,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428408351','5','T','2025-10-09 07:39:02'),(0,0,261,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8487033229','2','T','2025-10-09 08:27:38'),(0,0,262,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8460027287','3','T','2025-10-09 08:19:25'),(0,0,263,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8460027287','4','T','2025-10-09 07:49:40'),(0,0,264,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898791514','3','T','2025-10-09 08:22:16'),(0,0,265,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925365050','2','T','2025-10-09 08:54:57'),(0,0,265,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9925365050','2','T','2025-10-14 03:27:59'),(0,0,265,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','9925365050','2','T','2025-11-18 01:08:39'),(0,0,266,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824839814','4','T','2025-10-09 08:01:42'),(0,0,266,0,'Y','2025-11-22','12:00:00','12:10:00','','9824839814','4','C','2025-11-21 22:26:23'),(0,0,266,0,'Y','2025-12-20','11:40:00','11:50:00','Fc','9824839814','4','C','2025-12-19 21:46:49'),(0,0,266,0,'Y','2026-03-20','08:00:00','08:30:00','Followup','9824839814','4','T','2025-12-19 23:27:13'),(0,0,267,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723340348','4','T','2025-10-09 08:02:02'),(0,0,269,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725317008','4','T','2025-10-09 08:06:32'),(0,0,269,0,'Y','2025-12-08','12:30:00','12:40:00','FC','9725317008','4','C','2025-12-07 22:20:42'),(0,0,269,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9725317008','4','T','2025-12-08 00:40:00'),(0,0,270,0,'Y','2025-10-09','19:30:00','19:40:00','','9737645707','4','R','2025-10-09 05:54:07'),(0,0,271,0,'Y','2025-10-09','19:20:00','19:30:00','','9427771264','4','R','2025-10-09 05:53:33'),(0,0,274,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904594472','4','T','2025-10-27 01:36:16'),(0,0,275,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924363361','5','T','2025-10-10 07:29:12'),(0,0,276,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8460611712','3','T','2025-10-09 23:37:35'),(0,0,277,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725242122','4','T','2025-10-10 06:49:24'),(0,0,278,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8238398276','5','T','2025-10-10 00:04:00'),(0,0,279,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7284087150','2','T','2025-10-09 23:16:34'),(0,0,279,0,'Y','2025-10-10','10:50:00','11:00:00','Fv','','2','C','2025-10-09 21:30:11'),(0,0,280,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904537638','2','T','2025-10-09 23:30:40'),(0,0,281,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9375768592','2','T','2025-10-09 23:22:34'),(0,0,281,0,'Y','2025-10-10','10:20:00','10:30:00','Fv','','2','C','2025-10-09 21:29:05'),(0,0,282,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712388304','2','T','2025-10-10 00:01:02'),(0,0,283,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6353523873','2','T','2025-10-10 00:14:00'),(0,0,283,0,'Y','2025-10-10','11:20:00','11:30:00','Nv','','2','C','2025-10-09 21:31:00'),(0,0,283,0,'Y','2025-12-16','11:20:00','11:30:00','Fv','6353523873','2','C','2025-12-15 20:08:24'),(0,0,283,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','6353523873','2','T','2025-12-15 23:11:17'),(0,0,284,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7874693949','2','T','2025-10-09 23:25:54'),(0,0,284,0,'Y','2025-10-10','10:40:00','10:50:00','Fv','','2','C','2025-10-09 21:29:39'),(0,0,285,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426996317','2','T','2025-10-10 00:05:26'),(0,0,285,0,'Y','2025-10-10','11:10:00','11:20:00','Fv','','2','C','2025-10-09 21:31:23'),(0,0,286,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9624302823','3','T','2025-10-09 23:43:00'),(0,0,287,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974121563','3','T','2025-10-09 23:45:07'),(0,0,288,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9276508797','2','T','2025-10-10 02:04:17'),(0,0,289,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925858441','2','T','2025-10-10 00:33:17'),(0,0,289,0,'Y','2026-02-07','08:00:00','08:30:00','Followup','9925858441','2','T','2025-12-09 00:08:05'),(0,0,290,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6352802006','2','T','2025-10-10 01:09:14'),(0,0,291,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866625114','4','T','2025-10-10 00:00:00'),(0,0,291,0,'Y','2025-10-10','11:00:00','11:10:00','','','4','C','2025-10-09 22:19:49'),(0,0,292,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9408359458','4','T','2025-10-15 00:02:26'),(0,0,293,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7874742290','2','T','2025-10-10 00:09:33'),(0,0,293,0,'Y','2025-10-10','11:00:00','11:10:00','Nv','','2','C','2025-10-09 21:30:26'),(0,0,293,0,'Y','2025-10-27','08:00:00','08:30:00','Followup','7874742290','2','T','2025-10-17 03:40:51'),(0,0,293,0,'Y','2025-11-10','11:10:00','11:20:00','Fv','7874742290','2','B','2025-11-09 20:31:31'),(0,0,294,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979383139','2','T','2025-10-10 00:48:04'),(0,0,294,0,'Y','2025-10-10','11:50:00','12:00:00','Fv','','2','C','2025-10-09 21:32:25'),(0,0,294,0,'Y','2025-11-19','10:50:00','11:00:00','Fv','9979383139','2','C','2025-11-18 20:18:39'),(0,0,294,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9979383139','2','T','2025-11-18 22:58:41'),(0,0,295,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426980791','4','T','2025-10-10 07:40:22'),(0,0,295,0,'Y','2025-10-10','11:10:00','11:20:00','Fc','','4','C','2025-10-09 22:20:05'),(0,0,296,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429043162','4','T','2025-12-17 06:28:32'),(0,0,296,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9429043162','4','T','2025-12-15 07:11:02'),(0,0,296,0,'Y','2025-12-20','12:10:00','12:20:00','Fc','9429043162','4','C','2025-12-19 21:47:47'),(0,0,296,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9429043162','4','T','2025-12-19 23:40:37'),(0,0,298,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427252532','6','T','2025-10-10 00:00:12'),(0,0,299,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428467393','5','T','2025-10-10 01:24:49'),(0,0,300,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898022297','2','T','2025-10-10 00:56:50'),(0,0,300,0,'Y','2025-10-10','11:40:00','11:50:00','Fv','','2','C','2025-10-09 21:32:09'),(0,0,300,0,'Y','2025-11-11','12:50:00','13:00:00','Fv','9898022297','2','C','2025-11-10 20:34:43'),(0,0,300,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9898022297','2','T','2025-11-11 07:06:02'),(0,0,300,0,'Y','2025-12-16','17:10:00','17:20:00','','9898022297','2','C','2025-12-16 02:20:41'),(0,0,300,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','9898022297','2','T','2025-12-16 05:16:37'),(0,0,301,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7572811003','3','T','2025-10-10 00:00:07'),(0,0,302,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9245508888','6','T','2025-10-10 00:06:56'),(0,0,303,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824488837','4','T','2025-10-10 06:49:41'),(0,0,303,0,'Y','2025-10-10','11:20:00','11:30:00','FC','','4','C','2025-10-09 22:20:20'),(0,0,303,0,'Y','2025-11-01','11:10:00','11:20:00','','9824488837','4','C','2025-10-31 22:48:41'),(0,0,303,0,'Y','2025-11-08','08:00:00','08:30:00','Followup','9824488837','4','T','2025-11-01 02:01:12'),(0,0,304,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727475827','2','T','2025-10-10 01:16:11'),(0,0,304,0,'Y','2025-10-10','12:10:00','12:20:00','Fv','','2','C','2025-10-09 21:33:32'),(0,0,305,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726928556','3','T','2025-10-10 00:09:29'),(0,0,306,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849295348','5','T','2025-10-10 00:07:48'),(0,0,307,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909165039','3','T','2025-10-10 00:13:47'),(0,0,308,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8733028095','2','T','2025-10-10 02:16:25'),(0,0,308,0,'Y','2025-10-10','11:30:00','11:40:00','Nv','','2','C','2025-10-09 21:31:45'),(0,0,308,0,'Y','2025-10-30','12:50:00','13:00:00','Fv','8733028095','2','C','2025-10-29 21:53:02'),(0,0,308,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','8733028095','2','T','2025-10-30 01:26:47'),(0,0,309,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426995750','4','T','2025-10-10 06:49:50'),(0,0,309,0,'Y','2025-10-10','11:40:00','11:50:00','','9426995750','4','C','2025-10-09 23:03:06'),(0,0,309,0,'Y','2025-10-15','18:10:00','18:20:00','','9426995750','4','C','2025-10-15 05:59:17'),(0,0,310,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974699079','2','T','2025-10-10 02:23:21'),(0,0,310,0,'Y','2025-10-30','17:20:00','17:30:00','','9974699079','2','C','2025-10-30 03:27:32'),(0,0,310,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9974699079','2','T','2025-10-30 05:44:15'),(0,0,310,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9974699079','2','T','2025-12-09 01:00:16'),(0,0,311,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825352628','4','T','2025-10-10 01:08:39'),(0,0,313,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879417793','2','T','2025-10-10 01:32:44'),(0,0,313,0,'Y','2025-10-10','12:20:00','12:30:00','Fv','','2','C','2025-10-09 21:33:58'),(0,0,314,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925423876','2','T','2025-10-10 01:37:54'),(0,0,314,0,'Y','2025-10-10','12:40:00','12:50:00','Nv','','2','C','2025-10-09 21:35:29'),(0,0,314,0,'Y','2026-03-18','08:00:00','08:30:00','Followup','9925423876','2','T','2025-12-08 01:37:20'),(0,0,315,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714544388','4','T','2025-10-10 06:49:32'),(0,0,316,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662872206','2','T','2025-10-10 02:34:50'),(0,0,316,0,'Y','2025-10-30','10:20:00','10:30:00','Fv','9662872206','2','C','2025-10-29 21:37:54'),(0,0,316,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9662872206','2','T','2025-10-29 23:49:16'),(0,0,317,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033347198','6','T','2025-10-10 00:46:14'),(0,0,318,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979585854','6','T','2025-10-10 00:49:34'),(0,0,319,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898369677','3','T','2025-10-10 01:26:22'),(0,0,320,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9664531098','4','T','2025-10-10 07:11:29'),(0,0,321,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849370698','3','T','2025-10-24 07:00:11'),(0,0,322,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9106522775','5','T','2025-10-10 01:42:57'),(0,0,322,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9106522775','5','T','2025-12-12 06:18:29'),(0,0,324,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200776013','2','T','2025-10-10 02:03:35'),(0,0,324,0,'Y','2025-10-10','12:50:00','13:00:00','Fv','','2','C','2025-10-09 21:35:49'),(0,0,324,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','8200776013','2','T','2025-12-12 23:42:14'),(0,0,325,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428376531','2','T','2025-10-10 03:19:15'),(0,0,325,0,'Y','2025-10-10','12:00:00','12:10:00','Nv','','2','C','2025-10-09 21:33:16'),(0,0,325,0,'Y','2025-11-11','12:40:00','12:50:00','Fv','9428376531','2','C','2025-11-10 20:34:32'),(0,0,325,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9428376531','2','T','2025-11-11 00:30:26'),(0,0,327,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7383049999','6','T','2025-10-10 06:45:33'),(0,0,328,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200153640','6','T','2025-10-10 02:34:41'),(0,0,329,0,'Y','2026-03-19','08:00:00','08:30:00','Followup','9879579598','4','T','2025-12-18 22:51:40'),(0,0,330,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924274766','4','T','2025-10-10 07:19:37'),(0,0,331,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726101022','2','T','2025-10-10 05:59:59'),(0,0,331,0,'Y','2025-12-19','16:50:00','17:00:00','','9726101022','2','B','2025-12-19 02:06:04'),(0,0,331,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','9726101022','2','T','2025-11-16 23:10:58'),(0,0,331,0,'Y','2026-02-16','08:00:00','08:30:00','Followup','9726101022','2','T','2025-12-17 22:42:43'),(0,0,332,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9313795790','2','T','2025-10-10 05:43:57'),(0,0,333,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879345425','2','T','2025-10-10 05:44:30'),(0,0,335,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849367919','2','T','2025-10-10 06:12:24'),(0,0,336,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9067473730','2','T','2025-10-10 06:15:58'),(0,0,336,0,'Y','2025-11-03','11:40:00','11:50:00','Fv','9067473730','2','B','2025-11-02 20:21:13'),(0,0,337,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824614046','2','T','2025-10-10 05:54:44'),(0,0,337,0,'Y','2025-10-10','16:40:00','16:50:00','FV','','2','C','2025-10-10 02:27:38'),(0,0,337,0,'Y','2025-11-18','16:40:00','16:50:00','','9824614046','2','C','2025-11-18 02:08:06'),(0,0,337,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','9824614046','2','T','2025-11-18 04:53:44'),(0,0,338,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428968751','2','T','2025-10-10 05:45:11'),(0,0,339,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427221042','2','T','2025-10-10 06:07:33'),(0,0,339,0,'Y','2025-10-10','17:20:00','17:30:00','FV','','2','C','2025-10-10 03:07:28'),(0,0,341,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974440794','2','T','2025-10-10 05:46:22'),(0,0,342,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160301466','2','T','2025-10-10 05:49:02'),(0,0,343,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824614046','6','T','2025-10-10 07:41:22'),(0,0,344,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9227774622','2','T','2025-10-10 06:02:56'),(0,0,344,0,'Y','2025-10-10','17:10:00','17:20:00','FV','','2','C','2025-10-10 03:06:57'),(0,0,344,0,'Y','2025-11-03','17:20:00','17:30:00','','9227774622','2','C','2025-11-03 02:25:41'),(0,0,344,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9227774622','2','T','2025-11-03 07:06:08'),(0,0,345,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426844001','6','T','2025-10-10 06:55:32'),(0,0,346,0,'Y','2025-10-10','17:40:00','17:50:00','FV','','2','C','2025-10-10 03:13:09'),(0,0,346,0,'Y','2025-10-17','08:00:00','08:30:00','Followup','9979932040','2','T','2025-10-10 06:32:16'),(0,0,347,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6909269627','2','T','2025-10-10 07:55:43'),(0,0,347,0,'Y','2025-10-10','17:00:00','17:10:00','NV','6909269627','2','C','2025-10-10 04:29:26'),(0,0,347,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','6909269627','2','T','2025-10-31 03:26:56'),(0,0,348,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426998436','3','T','2025-11-26 07:23:28'),(0,0,349,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099957337','2','T','2025-10-10 06:37:50'),(0,0,351,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849076806','3','T','2025-10-14 23:41:24'),(0,0,353,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9930797969','7','T','2025-10-10 07:19:20'),(0,0,354,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7069646161','2','T','2025-10-10 08:01:39'),(0,0,355,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9930797969','7','T','2025-10-10 07:19:32'),(0,0,356,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727623261','2','T','2025-10-10 07:03:24'),(0,0,356,0,'Y','2025-10-10','17:50:00','18:00:00','FV','','2','C','2025-10-10 03:13:23'),(0,0,356,0,'Y','2025-10-24','11:50:00','12:00:00','','9727623261','2','C','2025-10-23 08:07:28'),(0,0,356,0,'Y','2025-11-07','12:10:00','12:20:00','Fv','9727623261','2','C','2025-11-06 20:19:58'),(0,0,356,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9727623261','2','T','2025-11-07 00:04:10'),(0,0,356,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9727623261','2','T','2025-10-24 00:39:04'),(0,0,358,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427495930','4','T','2025-10-10 07:11:10'),(0,0,359,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427495930','4','T','2025-10-10 07:11:00'),(0,0,360,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9558677713','2','T','2025-10-10 08:39:27'),(0,0,360,0,'Y','2025-10-10','17:30:00','17:40:00','NV','','2','C','2025-10-10 03:12:44'),(0,0,361,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427495930','2','T','2025-10-10 08:00:10'),(0,0,361,0,'Y','2025-11-26','16:50:00','17:00:00','Fv','9427495930','2','C','2025-11-26 01:40:33'),(0,0,361,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9427495930','2','T','2025-11-26 04:37:57'),(0,0,363,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8141968508','2','T','2025-10-10 07:18:04'),(0,0,363,0,'Y','2025-10-10','18:00:00','18:10:00','NV','','2','C','2025-10-10 03:13:43'),(0,0,363,0,'Y','2025-10-28','08:00:00','08:30:00','Followup','8141968508','2','T','2025-10-13 06:35:01'),(0,0,363,0,'Y','2025-11-11','17:40:00','17:50:00','','8141968508','2','C','2025-11-11 03:25:46'),(0,0,363,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','8141968508','2','T','2025-11-11 05:18:49'),(0,0,364,0,'Y','2025-10-10','18:00:00','18:10:00','','9898550191','4','R','2025-10-10 05:38:36'),(0,0,364,0,'Y','2025-12-12','19:10:00','19:20:00','','9898550191','4','C','2025-12-12 04:11:35'),(0,0,364,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','9898550191','4','T','2025-12-12 07:38:16'),(0,0,365,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879201842','2','T','2025-10-10 07:40:35'),(0,0,365,0,'Y','2025-11-13','12:10:00','12:20:00','','9879201842','2','C','2025-11-12 23:39:02'),(0,0,365,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9879201842','2','T','2025-11-13 00:26:29'),(0,0,365,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9879201842','2','T','2025-12-05 05:06:17'),(0,0,366,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7567360028','2','T','2025-10-10 08:25:52'),(0,0,366,0,'Y','2025-10-10','18:30:00','18:40:00','NV','','2','C','2025-10-10 03:14:25'),(0,0,366,0,'Y','2025-10-31','18:20:00','18:30:00','','7567360028','2','C','2025-10-31 03:09:26'),(0,0,366,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','7567360028','2','T','2025-10-31 07:00:19'),(0,0,367,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7016949248','2','T','2025-10-10 07:46:08'),(0,0,367,0,'Y','2025-10-10','18:40:00','18:50:00','FV','','2','C','2025-10-10 03:14:43'),(0,0,367,0,'Y','2025-12-09','10:20:00','10:30:00','Fv','7016949248','2','C','2025-12-08 20:11:59'),(0,0,367,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','7016949248','2','T','2025-12-08 23:53:23'),(0,0,368,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427564583','5','T','2025-10-10 07:11:20'),(0,0,369,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723787013','5','T','2025-10-10 07:06:21'),(0,0,370,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924487997','6','T','2025-10-10 07:02:03'),(0,0,371,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909124911','4','T','2025-10-10 07:15:23'),(0,0,372,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429572400','5','T','2025-10-10 07:27:08'),(0,0,373,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879607869','2','T','2025-10-10 08:17:12'),(0,0,373,0,'Y','2025-11-11','18:20:00','18:30:00','','9879607869','2','C','2025-11-11 03:27:00'),(0,0,373,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9879607869','2','T','2025-11-11 06:10:41'),(0,0,374,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998887577','2','T','2025-10-10 07:48:59'),(0,0,374,0,'Y','2025-10-10','18:10:00','18:20:00','FV','','2','C','2025-10-10 03:13:56'),(0,0,375,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824288544','4','T','2025-10-10 07:40:51'),(0,0,376,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924767132','4','T','2025-10-10 07:40:33'),(0,0,376,0,'Y','2025-10-16','18:50:00','19:00:00','','9924767132','4','C','2025-10-16 06:41:49'),(0,0,378,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6353442126','2','T','2025-10-10 08:26:05'),(0,0,378,0,'Y','2025-10-24','18:10:00','18:20:00','','6353442126','2','C','2025-10-23 08:08:11'),(0,0,378,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','6353442126','2','T','2025-10-24 07:06:21'),(0,0,378,0,'Y','2025-11-19','18:10:00','18:20:00','Fv','6353442126','2','C','2025-11-19 03:13:44'),(0,0,378,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','6353442126','2','T','2025-11-19 05:46:02'),(0,0,379,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7990916335','2','T','2025-10-10 08:36:05'),(0,0,380,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9377949438','3','T','2025-11-01 07:11:12'),(0,0,382,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7041371257','4','T','2025-10-10 07:46:29'),(0,0,383,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','7990950091','4','T','2025-12-08 06:23:58'),(0,0,384,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160960726','2','T','2025-10-10 08:44:32'),(0,0,386,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9106665871','6','T','2025-10-10 08:03:31'),(0,0,387,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6351349933','3','T','2025-10-17 01:12:02'),(0,0,390,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9377399990','4','T','2025-12-12 07:26:50'),(0,0,391,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9737078692','4','T','2025-10-11 00:41:43'),(0,0,391,0,'Y','2025-10-11','11:30:00','11:40:00','FC','9737078692','4','C','2025-10-10 22:23:32'),(0,0,391,0,'Y','2025-11-20','12:30:00','12:40:00','','9737078692','4','C','2025-11-19 22:26:10'),(0,0,391,0,'Y','2026-05-19','08:00:00','08:30:00','Followup','9737078692','4','T','2025-11-20 01:18:54'),(0,0,392,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824292234','7','T','2025-11-20 06:42:53'),(0,0,392,0,'Y','2025-11-13','11:10:00','11:20:00','','9920593754','4','C','2025-11-12 21:22:56'),(0,0,392,0,'Y','2025-11-26','18:30:00','18:40:00','','9824292234','4','C','2025-11-26 04:30:33'),(0,0,392,0,'Y','2025-12-19','18:10:00','18:20:00','FC','9824292234','4','R','2025-12-19 04:45:42'),(0,0,392,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9824292234','4','T','2025-11-26 06:01:26'),(0,0,392,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9920593754','4','T','2025-11-12 23:09:17'),(0,0,393,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8283398276','5','T','2025-10-28 06:55:30'),(0,0,394,0,'Y','2025-10-22','08:00:00','08:30:00','Followup','9664580252','5','T','2025-10-12 00:36:24'),(0,0,395,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9374830754','4','T','2025-10-11 00:33:18'),(0,0,396,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824829466','5','T','2025-10-11 00:14:24'),(0,0,397,0,'Y','2025-10-27','08:00:00','08:30:00','Followup','6352199174','2','T','2025-10-11 00:14:39'),(0,0,397,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','6352199174','2','T','2025-11-01 02:54:07'),(0,0,398,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825776474','3','T','2025-10-11 08:26:21'),(0,0,399,0,'Y','2025-10-31','08:00:00','08:30:00','Followup','9925566078','2','T','2025-10-10 22:35:58'),(0,0,400,0,'Y','2025-10-27','08:00:00','08:30:00','Followup','9376410013','2','T','2025-10-11 00:44:23'),(0,0,401,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824466961','4','T','2025-10-10 23:25:05'),(0,0,402,0,'Y','2025-10-21','08:00:00','08:30:00','Followup','9924098630','2','T','2025-10-10 22:55:20'),(0,0,403,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7016174558','3','T','2025-10-24 07:56:04'),(0,0,404,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9408371887','5','T','2025-10-10 23:46:55'),(0,0,405,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9327333726','7','T','2025-10-11 00:53:17'),(0,0,406,0,'Y','2025-10-11','10:10:00','10:20:00','FV','','2','C','2025-10-10 21:30:34'),(0,0,406,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9099724457','2','T','2025-10-10 23:00:49'),(0,0,406,0,'Y','2025-11-17','11:40:00','11:50:00','Fv','9099724457','2','C','2025-11-16 20:19:18'),(0,0,406,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9099724457','2','T','2025-11-16 23:42:34'),(0,0,407,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925602883','5','T','2025-10-11 01:15:03'),(0,0,408,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9016293605','3','T','2025-10-11 07:56:25'),(0,0,409,0,'Y','2025-10-11','11:20:00','11:30:00','FV','','2','C','2025-10-10 21:38:07'),(0,0,409,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9725085304','2','T','2025-10-11 00:34:19'),(0,0,410,0,'Y','2025-10-21','08:00:00','08:30:00','Followup','9427242622','2','T','2025-10-10 23:18:40'),(0,0,411,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9724613470','4','T','2025-10-11 00:33:27'),(0,0,412,0,'Y','2025-10-11','10:40:00','10:50:00','FV','','2','C','2025-10-10 21:33:48'),(0,0,412,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','8140300605','2','T','2025-10-10 23:26:45'),(0,0,412,0,'Y','2025-11-20','18:50:00','19:00:00','','8140300605','2','C','2025-11-20 05:48:55'),(0,0,412,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','8140300605','2','T','2025-11-20 06:36:08'),(0,0,413,0,'Y','2025-10-16','08:00:00','08:30:00','Followup','9825313241','2','T','2025-10-10 23:34:53'),(0,0,413,0,'Y','2025-10-16','11:10:00','11:20:00','','9825313241','2','C','2025-10-15 23:01:26'),(0,0,413,0,'Y','2025-10-27','08:00:00','08:30:00','Followup','9825313241','2','T','2025-10-16 00:29:12'),(0,0,414,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7046383672','4','T','2025-10-11 00:42:15'),(0,0,415,0,'Y','2025-10-11','10:20:00','10:30:00','FV','','2','C','2025-10-10 21:33:01'),(0,0,415,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9979754689','2','T','2025-10-10 23:42:11'),(0,0,416,0,'Y','2025-10-27','08:00:00','08:30:00','Followup','9664884644','2','T','2025-10-11 01:02:10'),(0,0,417,0,'Y','2025-10-11','11:10:00','11:20:00','FV','','2','C','2025-10-10 21:37:47'),(0,0,417,0,'Y','2025-11-19','11:10:00','11:20:00','Fv','9913740293','2','C','2025-11-18 20:19:14'),(0,0,417,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','9913740293','2','T','2025-10-11 00:03:52'),(0,0,417,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9913740293','2','T','2025-11-18 23:24:22'),(0,0,418,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428632132','4','T','2025-10-11 00:42:08'),(0,0,419,0,'Y','2025-10-11','10:50:00','11:00:00','FV','','2','C','2025-10-10 21:34:40'),(0,0,419,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9429284741','2','T','2025-10-11 00:14:27'),(0,0,420,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979341542','3','T','2025-10-11 08:26:32'),(0,0,421,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9586138603','4','T','2025-10-11 00:35:20'),(0,0,421,0,'Y','2025-12-11','12:30:00','12:40:00','FC','9586138603','4','C','2025-12-10 22:28:02'),(0,0,421,0,'Y','2026-03-11','08:00:00','08:30:00','Followup','9586138603','4','T','2025-12-11 00:14:47'),(0,0,422,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426968201','4','T','2025-10-11 00:05:59'),(0,0,422,0,'Y','2025-10-29','11:50:00','12:00:00','','9426968201','4','C','2025-10-28 22:09:45'),(0,0,422,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','9426968201','4','T','2025-10-29 00:32:32'),(0,0,423,0,'Y','2025-10-21','08:00:00','08:30:00','Followup','9879289684','2','T','2025-10-11 01:12:17'),(0,0,424,0,'Y','2025-10-11','11:30:00','11:40:00','NV','','2','C','2025-10-10 21:38:35'),(0,0,424,0,'Y','2025-10-27','08:00:00','08:30:00','Followup','9825252998','2','T','2025-10-11 01:17:31'),(0,0,425,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428467393','5','T','2025-10-11 00:13:28'),(0,0,426,0,'Y','2025-10-11','11:00:00','11:10:00','FV','','2','C','2025-10-10 21:35:50'),(0,0,426,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9427742236','2','T','2025-10-11 01:30:16'),(0,0,426,0,'Y','2025-11-10','12:20:00','12:30:00','Fv','9427742236','2','C','2025-11-09 20:34:51'),(0,0,426,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9427742236','2','T','2025-11-09 23:15:22'),(0,0,427,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9265041900','4','T','2025-10-11 00:17:59'),(0,0,428,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904196838','3','T','2025-10-11 08:31:23'),(0,0,429,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824814008','4','T','2025-10-11 00:33:54'),(0,0,430,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6359419135','6','T','2025-10-11 00:04:08'),(0,0,431,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9875038983','4','T','2025-10-11 00:33:10'),(0,0,432,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998924738','4','T','2025-10-11 00:53:56'),(0,0,433,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998274145','3','T','2025-10-11 01:14:49'),(0,0,434,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428228866','4','T','2025-10-11 00:37:50'),(0,0,435,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428228866','4','T','2025-10-11 00:38:01'),(0,0,436,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9724486254','6','T','2025-10-11 00:28:03'),(0,0,437,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428894858','4','T','2025-10-11 00:46:36'),(0,0,438,0,'Y','2025-10-11','11:50:00','12:00:00','FV','','2','C','2025-10-10 21:39:44'),(0,0,438,0,'Y','2025-10-31','08:00:00','08:30:00','Followup','9879233807','2','T','2025-10-11 00:56:20'),(0,0,438,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','9879233807','2','T','2025-10-31 07:56:46'),(0,0,438,0,'Y','2025-12-01','18:40:00','18:50:00','Fv','9879233807','2','C','2025-12-01 03:42:30'),(0,0,438,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9879233807','2','T','2025-12-01 06:44:02'),(0,0,439,0,'Y','2025-10-11','11:40:00','11:50:00','FV','','2','C','2025-10-10 21:38:50'),(0,0,439,0,'Y','2025-10-18','08:00:00','08:30:00','Followup','9173795025','2','T','2025-10-11 01:01:31'),(0,0,440,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824804019','4','T','2025-10-11 00:55:41'),(0,0,441,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9106471601','4','T','2025-10-11 00:56:40'),(0,0,442,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427432394','4','T','2025-10-11 01:07:40'),(0,0,442,0,'Y','2025-10-11','11:10:00','11:20:00','FC','9427432394','4','C','2025-10-10 22:22:01'),(0,0,443,0,'Y','2025-10-11','12:20:00','12:30:00','FV','','2','C','2025-10-10 21:41:13'),(0,0,443,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9427429926','2','T','2025-10-11 01:17:15'),(0,0,444,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9967673962','7','T','2025-10-11 00:53:29'),(0,0,445,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428464190','4','T','2025-10-11 01:54:51'),(0,0,445,0,'Y','2025-11-22','11:00:00','11:10:00','','9428464190','4','B','2025-11-21 20:51:34'),(0,0,445,0,'Y','2025-12-22','18:10:00','18:20:00','Fc','9428464190','4','B','2025-12-22 04:51:42'),(0,0,446,0,'Y','2025-10-11','12:10:00','12:20:00','FV','','2','C','2025-10-10 21:40:09'),(0,0,446,0,'Y','2025-10-23','18:10:00','18:20:00','','9106803841','2','B','2025-10-23 02:34:18'),(0,0,446,0,'Y','2025-11-08','08:00:00','08:30:00','Followup','9106803841','2','T','2025-10-24 02:00:44'),(0,0,446,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9106803841','2','T','2025-10-11 01:30:02'),(0,0,447,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7984196827','4','T','2025-10-11 01:40:41'),(0,0,448,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909448834','3','T','2025-10-11 08:31:08'),(0,0,449,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9913551800','4','T','2025-10-30 08:12:55'),(0,0,450,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160564212','5','T','2025-10-11 01:40:34'),(0,0,451,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898214175','6','T','2025-10-11 01:48:25'),(0,0,452,0,'Y','2025-11-14','08:00:00','08:30:00','Followup','9016716555','4','T','2025-10-30 02:10:54'),(0,0,452,0,'Y','2025-11-26','12:30:00','12:40:00','','9016716555','4','C','2025-11-25 22:56:03'),(0,0,452,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9016716555','4','T','2025-11-26 01:27:31'),(0,0,453,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825233414','3','T','2025-10-11 07:52:35'),(0,0,454,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7405670370','3','T','2025-10-11 08:30:34'),(0,0,455,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428154666','3','T','2025-10-11 08:00:13'),(0,0,456,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600055741','6','T','2025-10-11 06:53:30'),(0,0,457,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974636234','6','T','2025-10-11 06:56:40'),(0,0,458,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714297995','6','T','2025-10-11 07:06:47'),(0,0,459,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725623711','3','T','2025-10-11 08:03:45'),(0,0,460,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825963392','3','T','2025-10-11 08:15:28'),(0,0,461,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7575837182','3','T','2025-10-11 08:29:47'),(0,0,462,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723253950','3','T','2025-10-11 08:17:57'),(0,0,463,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924737308','3','T','2025-10-11 08:20:37'),(0,0,466,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714435758','7','T','2025-10-17 06:47:23'),(0,0,468,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714810733','4','T','2025-10-13 01:47:29'),(0,0,469,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200247557','2','T','2025-10-13 03:01:40'),(0,0,470,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9409008831','6','T','2025-10-13 00:30:23'),(0,0,471,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9724140437','2','T','2025-10-13 02:24:52'),(0,0,471,0,'Y','2025-11-03','17:50:00','18:00:00','','9724140437','2','B','2025-11-03 04:42:04'),(0,0,472,0,'Y','2025-10-28','08:00:00','08:30:00','Followup','9904572410','2','T','2025-10-13 02:25:25'),(0,0,472,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9904572410','2','T','2025-11-28 23:06:29'),(0,0,473,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','8320349921','2','T','2025-10-13 00:11:54'),(0,0,474,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8781022374','3','T','2025-10-13 07:24:45'),(0,0,475,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','9033308049','2','T','2025-10-13 03:24:32'),(0,0,475,0,'Y','2025-12-19','17:50:00','18:00:00','','9033308049','2','C','2025-12-19 02:07:47'),(0,0,475,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9033308049','2','T','2025-12-19 05:47:14'),(0,0,476,0,'Y','2025-10-13','10:40:00','10:50:00','FV','9913287327','2','C','2025-10-12 21:45:27'),(0,0,476,0,'Y','2025-11-22','08:00:00','08:30:00','Followup','9913287387','2','T','2025-10-12 23:25:56'),(0,0,476,0,'Y','2025-12-06','11:50:00','12:00:00','Fv','9913287387','2','C','2025-12-05 20:22:44'),(0,0,476,0,'Y','2026-02-04','08:00:00','08:30:00','Followup','9913287387','2','T','2025-12-05 23:18:15'),(0,0,477,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160510062','3','T','2025-10-12 23:19:03'),(0,0,478,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898995472','4','T','2025-10-13 08:36:00'),(0,0,479,0,'Y','2025-10-28','08:00:00','08:30:00','Followup','6355904006','2','T','2025-10-13 03:44:36'),(0,0,480,0,'Y','2025-10-13','11:10:00','11:20:00','FV','','2','C','2025-10-12 21:46:50'),(0,0,480,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9998273400','2','T','2025-10-12 23:55:18'),(0,0,481,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9784457605','2','T','2025-10-13 00:58:17'),(0,0,482,0,'Y','2025-10-18','08:00:00','08:30:00','Followup','8179502874','2','T','2025-10-13 01:07:47'),(0,0,483,0,'Y','2025-10-13','11:20:00','11:30:00','FV','','2','C','2025-10-12 21:47:15'),(0,0,483,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','7228913289','2','T','2025-10-13 00:15:48'),(0,0,483,0,'Y','2025-11-05','10:50:00','11:00:00','Fv','7228913289','2','C','2025-11-04 20:22:43'),(0,0,483,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','7228913289','2','T','2025-11-04 22:58:30'),(0,0,484,0,'Y','2025-10-13','10:20:00','10:30:00','FV','9924844824','2','C','2025-10-12 21:44:37'),(0,0,484,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9924844824','2','T','2025-10-12 23:28:57'),(0,0,485,0,'Y','2025-10-18','08:00:00','08:30:00','Followup','9328932926','2','T','2025-10-13 01:44:24'),(0,0,486,0,'Y','2025-10-23','17:50:00','18:00:00','','9374836815','2','B','2025-10-23 06:01:52'),(0,0,486,0,'Y','2025-11-11','16:40:00','16:50:00','','9374836815','2','C','2025-11-11 03:23:53'),(0,0,486,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','9374836815','2','T','2025-10-13 01:28:23'),(0,0,486,0,'Y','2026-01-10','08:00:00','08:30:00','Followup','9374836815','2','T','2025-11-11 05:11:55'),(0,0,487,0,'Y','2025-10-28','08:00:00','08:30:00','Followup','9375225120','2','T','2025-10-13 03:05:08'),(0,0,487,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','9375225120','2','T','2025-11-05 00:01:23'),(0,0,488,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','9510082109','2','T','2025-10-13 01:16:51'),(0,0,489,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825096958','3','T','2025-10-12 23:05:28'),(0,0,490,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200634847','7','T','2025-10-13 00:00:46'),(0,0,491,0,'Y','2025-10-13','10:10:00','10:20:00','FV','9974547900','2','C','2025-10-12 21:44:11'),(0,0,491,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9974547900','2','T','2025-10-12 23:34:03'),(0,0,492,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9106323025','2','T','2025-10-13 02:48:13'),(0,0,492,0,'Y','2025-12-13','11:50:00','12:00:00','Fv','9106323025','2','C','2025-12-12 20:18:27'),(0,0,492,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9106323025','2','T','2025-12-12 23:24:00'),(0,0,493,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9558821557','2','T','2025-10-13 01:56:00'),(0,0,494,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600025897','7','T','2025-10-13 00:01:12'),(0,0,495,0,'Y','2025-10-13','11:30:00','11:40:00','NV','7016825225','2','C','2025-10-12 21:47:41'),(0,0,495,0,'Y','2025-10-28','08:00:00','08:30:00','Followup','7016825225','2','T','2025-10-13 03:33:47'),(0,0,495,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','7016825225','2','T','2025-10-30 00:59:12'),(0,0,496,0,'Y','2025-10-13','10:30:00','10:40:00','NV','9099586643','2','C','2025-10-12 21:45:02'),(0,0,496,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9099586643','2','T','2025-10-13 02:54:25'),(0,0,496,0,'Y','2025-11-05','10:10:00','10:20:00','Fv','9099586643','2','C','2025-11-04 20:20:23'),(0,0,496,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9099586643','2','T','2025-11-04 22:44:37'),(0,0,497,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','7623981415','2','T','2025-10-13 02:41:07'),(0,0,498,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','9016776375','2','T','2025-10-13 03:58:50'),(0,0,498,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9016776375','2','T','2025-11-11 23:40:16'),(0,0,499,0,'Y','2025-10-28','08:00:00','08:30:00','Followup','9909847405','2','T','2025-10-13 02:35:21'),(0,0,500,0,'Y','2025-10-20','08:00:00','08:30:00','Followup','9427354243','4','T','2025-10-13 06:49:33'),(0,0,501,0,'Y','2025-10-13','10:50:00','11:00:00','FV','9099784284','2','C','2025-10-12 21:45:51'),(0,0,501,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9427726488','2','T','2025-10-13 01:53:09'),(0,0,502,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8469122551','3','T','2025-10-13 07:25:14'),(0,0,503,0,'Y','2025-10-18','08:00:00','08:30:00','Followup','7600025897','2','T','2025-10-13 02:51:13'),(0,0,504,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909583013','7','T','2025-10-13 00:00:59'),(0,0,505,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9537102249','6','T','2025-10-13 00:23:31'),(0,0,506,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909962526','3','T','2025-10-13 07:25:27'),(0,0,507,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7575803861','4','T','2025-10-13 01:47:40'),(0,0,508,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600062852','3','T','2025-10-13 07:26:01'),(0,0,509,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9624999244','5','T','2025-10-12 23:56:31'),(0,0,510,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8238388129','7','T','2025-10-13 00:02:36'),(0,0,511,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7874689996','3','T','2025-10-13 07:26:38'),(0,0,512,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909847405','4','T','2025-10-13 01:47:50'),(0,0,513,0,'Y','2025-10-13','11:50:00','12:00:00','FV','','2','C','2025-10-12 21:51:52'),(0,0,513,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9033156651','2','T','2025-10-13 01:50:34'),(0,0,513,0,'Y','2025-12-12','11:40:00','11:50:00','Fv','9033156651','2','C','2025-12-11 20:14:04'),(0,0,513,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','9033156651','2','T','2025-12-11 23:24:52'),(0,0,514,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9374106552','7','T','2025-10-13 00:01:24'),(0,0,515,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9624544044','5','T','2025-10-13 00:22:43'),(0,0,516,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824849194','6','T','2025-10-13 00:29:40'),(0,0,517,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7574801864','4','T','2025-10-13 07:30:54'),(0,0,518,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9409578184','4','T','2025-10-13 06:49:20'),(0,0,518,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9409578184','4','T','2025-11-10 22:56:58'),(0,0,519,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824560944','4','T','2025-10-13 01:00:03'),(0,0,519,0,'Y','2025-10-13','11:20:00','11:30:00','','9824560944','4','C','2025-10-12 22:41:40'),(0,0,519,0,'Y','2025-11-12','18:50:00','19:00:00','','9824560944','4','C','2025-11-12 04:23:45'),(0,0,519,0,'Y','2025-11-27','18:30:00','18:40:00','','9824560944','4','C','2025-11-27 04:38:25'),(0,0,519,0,'Y','2025-12-02','08:00:00','08:30:00','Followup','9824560944','4','T','2025-11-27 06:24:13'),(0,0,519,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','9824560944','4','T','2025-11-12 07:23:10'),(0,0,520,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979603909','4','T','2025-10-13 06:49:08'),(0,0,520,0,'Y','2025-10-13','12:00:00','12:10:00','','9979603909','4','C','2025-10-12 22:42:55'),(0,0,520,0,'Y','2025-11-14','11:20:00','11:30:00','','9979603909','4','C','2025-11-13 21:43:55'),(0,0,520,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9979603909','4','T','2025-11-13 23:14:15'),(0,0,521,0,'Y','2025-10-13','11:40:00','11:50:00','FV','9586046883','2','C','2025-10-12 21:48:11'),(0,0,521,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','9586046883','2','T','2025-10-13 01:48:03'),(0,0,521,0,'Y','2025-11-15','11:50:00','12:00:00','Fv','9586046883','2','C','2025-11-14 20:22:39'),(0,0,521,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9586046883','2','T','2025-11-14 23:34:38'),(0,0,522,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8461783897','4','T','2025-10-13 01:45:52'),(0,0,522,0,'Y','2025-10-29','19:10:00','19:20:00','','8461783897','4','C','2025-10-29 06:53:36'),(0,0,523,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7285000335','6','T','2025-10-13 00:37:58'),(0,0,524,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924266156','3','T','2025-10-13 07:27:11'),(0,0,525,0,'Y','2025-10-13','12:50:00','13:00:00','FV','7600094695','2','C','2025-10-12 21:57:18'),(0,0,525,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','7600094695','2','T','2025-10-13 01:58:50'),(0,0,526,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7043782619','4','T','2025-10-13 01:46:01'),(0,0,527,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909554035','3','T','2025-10-13 07:27:38'),(0,0,528,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9512248068','7','T','2025-10-13 01:14:41'),(0,0,529,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825771882','2','T','2025-10-13 03:01:26'),(0,0,530,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824658095','5','T','2025-10-13 00:48:37'),(0,0,531,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9574873761','2','T','2025-10-13 02:53:26'),(0,0,532,0,'Y','2025-10-13','12:00:00','12:10:00','NV','8758535205','2','C','2025-10-12 21:52:47'),(0,0,532,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','8758535205','2','T','2025-10-13 03:51:26'),(0,0,532,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','8758535205','2','T','2025-11-08 01:18:27'),(0,0,533,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9737780007','4','T','2025-10-13 01:46:11'),(0,0,533,0,'Y','2025-10-13','12:10:00','12:20:00','','9737780007','4','C','2025-10-12 23:06:34'),(0,0,533,0,'Y','2025-11-19','11:10:00','11:20:00','Fc','9737780007','4','C','2025-11-18 21:01:33'),(0,0,533,0,'Y','2025-11-26','12:10:00','12:20:00','','9737780007','4','C','2025-11-25 21:31:50'),(0,0,533,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9737780007','4','T','2025-11-11 01:25:49'),(0,0,533,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9737780007','4','T','2025-11-19 00:47:43'),(0,0,534,0,'Y','2025-10-13','12:10:00','12:20:00','FV','','2','C','2025-10-12 21:56:05'),(0,0,534,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9714973874','2','T','2025-10-13 02:14:49'),(0,0,534,0,'Y','2025-11-11','10:10:00','10:20:00','Fv','9714973874','2','C','2025-11-10 20:23:20'),(0,0,534,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9714973874','2','T','2025-11-10 22:26:05'),(0,0,535,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','9924620009','2','T','2025-10-13 03:03:58'),(0,0,535,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9924620009','2','T','2025-11-12 00:27:53'),(0,0,536,0,'Y','2025-10-28','08:00:00','08:30:00','Followup','9033533000','2','T','2025-10-13 04:20:58'),(0,0,537,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824216815','5','T','2025-10-13 06:52:07'),(0,0,538,0,'Y','2025-10-23','08:00:00','08:30:00','Followup','9662745160','2','T','2025-10-13 03:56:28'),(0,0,538,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9662745160','2','T','2025-12-04 01:21:19'),(0,0,539,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909310008','6','T','2025-10-13 07:18:08'),(0,0,540,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8306850343','5','T','2025-10-13 01:42:57'),(0,0,541,0,'Y','2025-10-13','12:20:00','12:30:00','FV','','2','C','2025-10-12 21:56:22'),(0,0,541,0,'Y','2026-04-11','08:00:00','08:30:00','Followup','9924577926','2','T','2025-10-13 02:44:30'),(0,0,542,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428191170','4','T','2025-10-13 08:16:05'),(0,0,543,0,'Y','2025-10-23','08:00:00','08:30:00','Followup','8780785819','2','T','2025-10-13 03:18:19'),(0,0,544,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725141070','6','T','2025-10-13 07:27:32'),(0,0,546,0,'Y','2025-10-13','17:00:00','17:10:00','NV','9824416817','2','C','2025-10-13 04:28:51'),(0,0,546,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9824416817','2','T','2025-10-13 07:22:17'),(0,0,546,0,'Y','2025-11-04','17:40:00','17:50:00','','9824416817','2','C','2025-11-04 02:06:23'),(0,0,546,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9824416817','2','T','2025-11-04 05:11:50'),(0,0,546,0,'Y','2025-12-10','12:10:00','12:20:00','Fv','9824416817','2','C','2025-12-09 20:17:25'),(0,0,546,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9824416817','2','T','2025-12-09 23:49:38'),(0,0,547,0,'Y','2025-10-13','17:30:00','17:40:00','NV','','2','C','2025-10-13 05:12:34'),(0,0,547,0,'Y','2025-10-28','08:00:00','08:30:00','Followup','9825989404','2','T','2025-10-13 08:08:16'),(0,0,547,0,'Y','2025-10-28','11:10:00','11:20:00','Fv','9825989404','2','C','2025-10-27 21:44:54'),(0,0,547,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9825989404','2','T','2025-10-28 00:09:58'),(0,0,548,0,'Y','2025-10-13','17:10:00','17:20:00','RNV','6353402300','2','C','2025-10-13 04:29:33'),(0,0,548,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','6353402300','2','T','2025-10-13 06:02:56'),(0,0,549,0,'Y','2025-10-13','16:40:00','16:50:00','FV','','2','C','2025-10-13 04:24:39'),(0,0,549,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','9879503233','2','T','2025-10-13 05:53:12'),(0,0,550,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825540475','2','T','2025-11-10 05:28:32'),(0,0,550,0,'Y','2025-10-13','16:50:00','17:00:00','FV','','2','C','2025-10-13 04:26:52'),(0,0,550,0,'Y','2025-11-10','17:20:00','17:30:00','Fv','9825540475','2','C','2025-11-10 03:10:57'),(0,0,550,0,'Y','2025-12-10','17:10:00','17:20:00','','9825540475','2','C','2025-12-10 02:36:21'),(0,0,550,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9825540475','2','T','2025-10-13 06:09:08'),(0,0,550,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9825540475','2','T','2025-12-10 05:00:29'),(0,0,551,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825133896','3','T','2025-10-13 07:29:34'),(0,0,552,0,'Y','2025-10-13','17:20:00','17:30:00','FV','','2','C','2025-10-13 04:30:13'),(0,0,552,0,'Y','2025-11-22','08:00:00','08:30:00','Followup','9879762634','2','T','2025-10-13 06:38:24'),(0,0,552,0,'Y','2025-12-05','17:50:00','18:00:00','FV','9879762634','2','C','2025-12-05 03:18:22'),(0,0,552,0,'Y','2026-02-03','08:00:00','08:30:00','Followup','9879762634','2','T','2025-12-05 05:31:49'),(0,0,553,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9824284320','2','T','2025-10-13 08:16:28'),(0,0,553,0,'Y','2025-11-03','18:40:00','18:50:00','','9824284320','2','C','2025-11-03 02:28:47'),(0,0,553,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9824284320','2','T','2025-11-03 06:08:17'),(0,0,554,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825154637','4','T','2025-10-13 07:49:33'),(0,0,554,0,'Y','2025-10-15','18:00:00','18:10:00','','9825154637','4','C','2025-10-15 05:59:01'),(0,0,555,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9428353586','2','T','2025-10-13 06:40:50'),(0,0,556,0,'Y','2025-10-13','17:50:00','18:00:00','FV','9429189430','2','C','2025-10-13 04:32:51'),(0,0,556,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9429189430','2','T','2025-10-13 06:21:56'),(0,0,557,0,'Y','2025-10-13','17:40:00','17:50:00','FV','9429189430','2','C','2025-10-13 04:31:38'),(0,0,557,0,'Y','2025-10-28','08:00:00','08:30:00','Followup','9429189430','2','T','2025-10-13 06:27:18'),(0,0,558,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9687734303','2','T','2025-10-13 07:27:00'),(0,0,559,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','8866011187','4','T','2025-10-13 07:45:18'),(0,0,560,0,'Y','2025-10-13','18:10:00','18:20:00','FV','','2','C','2025-10-13 04:34:00'),(0,0,560,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','6353864967','2','T','2025-10-13 06:49:23'),(0,0,561,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9879878718','4','T','2025-10-13 07:27:20'),(0,0,562,0,'Y','2025-10-13','18:00:00','18:10:00','NV','9722448844','2','C','2025-10-13 04:33:39'),(0,0,562,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','9722448844','2','T','2025-10-13 08:33:14'),(0,0,562,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9722448844','2','T','2025-11-13 07:09:57'),(0,0,562,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9722448844','2','T','2025-12-12 07:14:35'),(0,0,563,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909990518','5','T','2025-10-13 06:46:50'),(0,0,564,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9720690370','4','T','2025-10-13 07:29:17'),(0,0,564,0,'Y','2025-10-13','18:10:00','18:20:00','','9720690370','4','C','2025-10-13 05:50:12'),(0,0,564,0,'Y','2025-11-11','12:30:00','12:40:00','','9720690370','4','C','2025-11-10 22:03:38'),(0,0,564,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9720690370','4','T','2025-11-11 00:53:44'),(0,0,565,0,'Y','2025-10-18','08:00:00','08:30:00','Followup','9825672150','2','T','2025-10-13 07:29:44'),(0,0,566,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9173422003','3','T','2025-10-13 07:21:37'),(0,0,567,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998945001','5','T','2025-10-13 06:51:51'),(0,0,567,0,'Y','2026-02-16','08:00:00','08:30:00','Followup','9998945001','5','T','2025-12-16 23:12:29'),(0,0,568,0,'Y','2025-10-18','08:00:00','08:30:00','Followup','6358820711','2','T','2025-10-13 08:07:27'),(0,0,569,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7433815844','4','T','2025-10-13 07:45:31'),(0,0,570,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9328603365','3','T','2025-10-13 07:47:32'),(0,0,571,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9537306863','6','T','2025-10-13 06:59:15'),(0,0,572,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7990774544','4','T','2025-10-13 07:45:45'),(0,0,573,0,'Y','2025-10-13','18:20:00','18:30:00','FV','9426936236','2','C','2025-10-13 04:34:45'),(0,0,573,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9426936236','2','T','2025-10-13 07:19:40'),(0,0,574,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426241424','4','T','2025-10-13 07:49:23'),(0,0,574,0,'Y','2025-10-13','19:00:00','19:10:00','','9426241424','4','C','2025-10-13 06:22:28'),(0,0,574,0,'Y','2025-12-01','12:30:00','12:40:00','','9426241424','4','B','2025-11-30 21:10:36'),(0,0,574,0,'Y','2025-12-06','10:50:00','11:00:00','','9426241424','4','C','2025-12-05 21:49:31'),(0,0,574,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9426241424','4','T','2025-12-05 23:21:38'),(0,0,575,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8000970008','3','T','2025-10-13 07:31:24'),(0,0,576,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','8866011187','4','T','2025-10-13 06:55:49'),(0,0,577,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998264481','3','T','2025-10-13 07:28:35'),(0,0,578,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727724885','4','T','2025-10-13 07:33:57'),(0,0,578,0,'Y','2025-10-13','18:00:00','18:10:00','','9727724885','4','C','2025-10-13 05:49:43'),(0,0,579,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9265524541','3','T','2025-10-13 07:46:40'),(0,0,580,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9409562857','5','T','2025-10-13 07:02:20'),(0,0,581,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9512081938','5','T','2025-10-13 07:18:15'),(0,0,583,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9537700019','4','T','2025-10-13 07:52:53'),(0,0,584,0,'Y','2025-10-13','18:30:00','18:40:00','NV','9909280928','2','C','2025-10-13 04:35:28'),(0,0,584,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9909280928','2','T','2025-10-13 08:48:05'),(0,0,585,0,'Y','2025-10-23','08:00:00','08:30:00','Followup','7778085258','2','T','2025-10-13 08:39:44'),(0,0,586,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9328603365','4','T','2025-10-13 08:27:17'),(0,0,587,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924278703','3','T','2025-10-13 07:46:56'),(0,0,588,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909008950','4','T','2025-10-13 08:14:52'),(0,0,589,0,'Y','2025-10-13','18:40:00','18:50:00','FV','9426996395','2','C','2025-10-13 04:35:58'),(0,0,589,0,'Y','2025-10-28','08:00:00','08:30:00','Followup','9426996395','2','T','2025-10-13 08:21:05'),(0,0,589,0,'Y','2025-10-29','16:50:00','17:00:00','','9426996395','2','C','2025-10-29 03:28:07'),(0,0,589,0,'Y','2025-11-08','08:00:00','08:30:00','Followup','9426996395','2','T','2025-10-29 08:43:35'),(0,0,589,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9426996395','2','T','2025-11-12 00:52:23'),(0,0,590,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9662641794','4','T','2025-10-13 08:14:02'),(0,0,591,0,'Y','2025-10-13','18:50:00','19:00:00','FV','9409413657','2','C','2025-10-13 04:36:28'),(0,0,591,0,'Y','2025-11-22','08:00:00','08:30:00','Followup','9409413657','2','T','2025-10-13 08:24:07'),(0,0,592,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','9898013582','2','T','2025-10-13 08:55:09'),(0,0,592,0,'Y','2025-11-27','18:40:00','18:50:00','Fv','9898013582','2','C','2025-11-27 03:42:49'),(0,0,592,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9898013582','2','T','2025-11-27 06:51:32'),(0,0,593,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974530774','5','T','2025-10-13 08:15:49'),(0,0,594,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9106116500','6','T','2025-10-13 08:04:02'),(0,0,595,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426201089','4','T','2025-10-13 08:36:11'),(0,0,596,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9624300008','3','T','2025-10-13 08:17:19'),(0,0,597,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879018019','4','T','2025-10-13 08:41:18'),(0,0,598,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879119377','4','T','2025-10-13 08:35:03'),(0,0,598,0,'Y','2025-10-13','19:30:00','19:40:00','','9879119377','4','C','2025-10-13 05:52:47'),(0,0,599,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7350717750','6','T','2025-10-13 08:04:12'),(0,0,600,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998889987','6','T','2025-10-13 08:08:48'),(0,0,601,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8511210507','4','T','2025-10-13 08:48:36'),(0,0,601,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','8511210507','4','T','2025-12-01 07:15:30'),(0,0,603,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924057955','3','T','2025-10-13 08:51:54'),(0,0,606,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974911818','5','T','2025-10-18 01:01:51'),(0,0,608,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427435003','4','T','2025-10-14 07:23:12'),(0,0,610,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033400993','6','T','2025-10-13 23:35:08'),(0,0,611,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033400993','6','T','2025-10-13 23:53:50'),(0,0,613,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160499796','4','T','2025-10-14 06:48:31'),(0,0,614,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','8460119090','2','T','2025-10-13 23:25:01'),(0,0,615,0,'Y','2025-10-14','10:40:00','10:50:00','','','2','C','2025-10-13 21:43:29'),(0,0,615,0,'Y','2025-10-24','08:00:00','08:30:00','Followup','8758769267','2','T','2025-10-14 02:01:06'),(0,0,616,0,'Y','2025-10-14','10:30:00','10:40:00','','','2','C','2025-10-13 21:43:08'),(0,0,616,0,'Y','2025-10-29','08:00:00','08:30:00','Followup','9879530063','2','T','2025-10-14 02:22:27'),(0,0,616,0,'Y','2025-10-31','17:20:00','17:30:00','','9879530063','2','C','2025-10-31 03:05:31'),(0,0,616,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9879530063','2','T','2025-10-31 05:47:07'),(0,0,617,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909172976','3','T','2025-10-13 23:04:57'),(0,0,618,0,'Y','2025-10-24','08:00:00','08:30:00','Followup','7990548633','2','T','2025-10-14 00:14:29'),(0,0,619,0,'Y','2025-10-14','10:10:00','10:20:00','','','2','C','2025-10-13 21:42:33'),(0,0,619,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9913686841','2','T','2025-10-13 23:50:57'),(0,0,619,0,'Y','2025-11-14','11:50:00','12:00:00','Fv','9913686841','2','C','2025-11-13 22:21:11'),(0,0,619,0,'Y','2025-12-15','17:20:00','17:30:00','','9913686841','2','C','2025-12-15 01:59:08'),(0,0,619,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9913686841','2','T','2025-11-13 23:29:29'),(0,0,619,0,'Y','2026-02-13','08:00:00','08:30:00','Followup','9913686841','2','T','2025-12-15 05:21:28'),(0,0,620,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428010690','3','T','2025-10-13 23:06:24'),(0,0,621,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9724812887','2','T','2025-10-14 00:23:12'),(0,0,621,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9724812887','2','T','2025-11-04 22:20:33'),(0,0,622,0,'Y','2025-10-14','10:50:00','11:00:00','','','2','C','2025-10-13 21:43:42'),(0,0,622,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9724608848','2','T','2025-10-13 23:55:20'),(0,0,622,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9724608848','2','T','2025-11-12 06:43:01'),(0,0,622,0,'Y','2025-12-23','12:20:00','12:30:00','Fv','9724608848','2','C','2025-12-22 20:22:38'),(0,0,622,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9724608848','2','T','2025-12-23 00:20:52'),(0,0,623,0,'Y','2025-10-14','11:00:00','11:10:00','NV','9809499573','2','C','2025-10-13 22:42:15'),(0,0,623,0,'Y','2025-10-28','13:40:00','13:50:00','','9809499573','2','B','2025-10-27 22:18:08'),(0,0,623,0,'Y','2025-10-29','08:00:00','08:30:00','Followup','9809499573','2','T','2025-10-14 02:45:26'),(0,0,623,0,'Y','2025-10-29','18:10:00','18:20:00','','9809499573','2','C','2025-10-29 03:31:10'),(0,0,623,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9809499573','2','T','2025-10-29 06:55:24'),(0,0,624,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8511111341','4','T','2025-10-14 00:19:11'),(0,0,624,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','8511111341','4','T','2025-11-27 23:17:06'),(0,0,624,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','8511111341','4','T','2025-12-12 22:51:27'),(0,0,625,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662709095','3','T','2025-10-13 23:16:39'),(0,0,626,0,'Y','2025-10-14','11:50:00','12:00:00','','','2','C','2025-10-13 21:45:17'),(0,0,626,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9429098760','2','T','2025-10-14 00:32:10'),(0,0,627,0,'Y','2025-10-28','16:50:00','17:00:00','','9265993821','2','C','2025-10-28 03:43:11'),(0,0,627,0,'Y','2025-10-29','08:00:00','08:30:00','Followup','9265993821','2','T','2025-10-14 02:42:53'),(0,0,627,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9265993821','2','T','2025-10-28 07:21:36'),(0,0,628,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979799769','4','T','2025-10-14 07:08:59'),(0,0,629,0,'Y','2025-10-14','11:20:00','11:30:00','','','2','C','2025-10-13 21:44:24'),(0,0,629,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9924036184','2','T','2025-10-14 00:17:55'),(0,0,630,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9601268255','4','T','2025-10-14 00:18:44'),(0,0,631,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','8087444173','4','T','2025-10-14 07:19:15'),(0,0,631,0,'Y','2025-11-13','11:20:00','11:30:00','','8087444173','4','C','2025-11-12 21:23:09'),(0,0,631,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','8087444173','4','T','2025-11-12 23:20:10'),(0,0,632,0,'Y','2025-10-14','11:40:00','11:50:00','','','2','C','2025-10-13 21:44:57'),(0,0,632,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9099888950','2','T','2025-10-14 00:55:05'),(0,0,632,0,'Y','2025-11-19','12:40:00','12:50:00','Fv','9099888950','2','C','2025-11-18 20:23:32'),(0,0,632,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9924583307','2','T','2025-11-19 00:45:07'),(0,0,633,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7048833448','6','T','2025-10-14 00:01:17'),(0,0,634,0,'Y','2025-10-24','08:00:00','08:30:00','Followup','9904355495','2','T','2025-10-14 01:30:51'),(0,0,635,0,'Y','2025-10-21','08:00:00','08:30:00','Followup','9909957538','4','T','2025-10-14 00:11:25'),(0,0,636,0,'Y','2025-10-14','11:30:00','11:40:00','','','2','C','2025-10-13 21:44:34'),(0,0,636,0,'Y','2025-10-29','08:00:00','08:30:00','Followup','7096286642','2','T','2025-10-14 00:37:35'),(0,0,637,0,'Y','2025-10-29','08:00:00','08:30:00','Followup','9925307316','2','T','2025-10-14 03:27:49'),(0,0,637,0,'Y','2025-10-29','11:10:00','11:20:00','Fv','9925307316','2','C','2025-10-28 21:24:02'),(0,0,637,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9925307316','2','T','2025-10-28 23:50:06'),(0,0,638,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7777943301','6','T','2025-10-14 00:57:51'),(0,0,639,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9624434342','4','T','2025-10-14 00:28:22'),(0,0,639,0,'Y','2025-10-14','11:20:00','11:30:00','','9624434342','4','C','2025-10-13 22:03:28'),(0,0,639,0,'Y','2025-11-26','19:20:00','19:30:00','','9624434342','4','B','2025-11-26 04:36:15'),(0,0,640,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904224568','4','T','2025-10-14 00:48:14'),(0,0,640,0,'Y','2025-10-14','11:30:00','11:40:00','','9904224568','4','C','2025-10-13 22:30:34'),(0,0,641,0,'Y','2025-11-22','12:20:00','12:30:00','','8320641979','2','B','2025-11-21 23:01:44'),(0,0,641,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','8320641979','2','T','2025-10-14 02:15:24'),(0,0,641,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','8320641979','2','T','2025-11-21 23:14:26'),(0,0,642,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9601107699','6','T','2025-10-14 00:32:30'),(0,0,643,0,'Y','2025-10-14','12:00:00','12:10:00','','','2','C','2025-10-13 21:45:31'),(0,0,643,0,'Y','2025-10-29','08:00:00','08:30:00','Followup','7600555551','2','T','2025-10-14 03:05:45'),(0,0,644,0,'Y','2025-10-14','12:30:00','12:40:00','','','2','C','2025-10-13 21:47:14'),(0,0,644,0,'Y','2025-10-24','08:00:00','08:30:00','Followup','9228117157','2','T','2025-10-14 01:35:45'),(0,0,645,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428788575','4','T','2025-10-14 06:48:13'),(0,0,645,0,'Y','2025-11-20','12:10:00','12:20:00','FC','9428788575','4','C','2025-11-19 21:27:11'),(0,0,645,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9428788575','4','T','2025-11-20 01:10:45'),(0,0,646,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427943059','4','T','2025-10-14 07:19:05'),(0,0,647,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428475464','6','T','2025-10-14 00:47:18'),(0,0,648,0,'Y','2025-10-21','08:00:00','08:30:00','Followup','9426785362','4','T','2025-10-14 06:54:54'),(0,0,648,0,'Y','2025-11-12','18:00:00','18:10:00','FC','9426785362','4','C','2025-11-12 04:21:21'),(0,0,648,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9426785362','4','T','2025-11-12 07:44:18'),(0,0,649,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638733633','3','T','2025-10-23 22:40:15'),(0,0,650,0,'Y','2025-10-14','12:20:00','12:30:00','','','2','C','2025-10-13 21:46:58'),(0,0,650,0,'Y','2025-10-29','08:00:00','08:30:00','Followup','9825076317','2','T','2025-10-14 01:47:31'),(0,0,651,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662032213','4','T','2025-10-14 06:54:39'),(0,0,652,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898898738','4','T','2025-10-14 06:45:43'),(0,0,654,0,'Y','2025-10-14','12:40:00','12:50:00','','','2','C','2025-10-13 21:47:29'),(0,0,654,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9904437437','2','T','2025-10-14 01:50:28'),(0,0,655,0,'Y','2025-10-14','12:10:00','12:20:00','','','2','C','2025-10-13 21:46:34'),(0,0,655,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','7874143463','2','T','2025-10-14 01:53:07'),(0,0,655,0,'Y','2025-12-02','11:10:00','11:20:00','FV','7874143463','2','C','2025-12-01 20:23:40'),(0,0,655,0,'Y','2026-01-31','08:00:00','08:30:00','Followup','7874143463','2','T','2025-12-01 23:07:57'),(0,0,656,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428840725','4','T','2025-10-14 07:08:50'),(0,0,657,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712999234','4','T','2025-10-14 06:48:03'),(0,0,657,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','9712999234','4','T','2025-10-31 07:03:08'),(0,0,657,0,'Y','2025-11-15','11:40:00','11:50:00','','9712999234','4','C','2025-11-14 21:51:15'),(0,0,657,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9712999234','4','T','2025-11-14 23:32:30'),(0,0,658,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9712191944','2','T','2025-10-14 02:39:05'),(0,0,659,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8140794120','2','T','2025-10-14 03:13:59'),(0,0,659,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','8140794120','2','T','2025-10-14 07:20:35'),(0,0,659,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','8140794120','2','T','2025-11-03 22:41:56'),(0,0,659,0,'Y','2025-12-11','10:20:00','10:30:00','Fv','8140794120','2','C','2025-12-10 20:13:12'),(0,0,659,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','8140794120','2','T','2025-12-11 00:51:06'),(0,0,660,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662443150','4','T','2025-10-14 06:45:32'),(0,0,661,0,'Y','2026-01-22','08:00:00','08:30:00','Followup','9067050422','2','T','2025-10-14 02:42:08'),(0,0,662,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924114829','2','T','2025-10-31 01:35:02'),(0,0,662,0,'Y','2025-10-14','12:50:00','13:00:00','','','2','C','2025-10-13 21:48:23'),(0,0,662,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9924114829','2','T','2025-10-14 02:28:20'),(0,0,662,0,'Y','2025-11-27','12:40:00','12:50:00','Fv','9924114829','2','C','2025-11-26 20:32:43'),(0,0,662,0,'Y','2026-01-06','08:00:00','08:30:00','Followup','9924114829','2','T','2025-11-27 00:43:27'),(0,0,663,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6351677877','4','T','2025-10-14 06:45:18'),(0,0,663,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','6351677877','4','T','2025-12-15 23:52:15'),(0,0,664,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9687394999','4','T','2025-10-14 06:45:00'),(0,0,664,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9687394999','4','T','2025-11-19 07:41:10'),(0,0,665,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7572802587','2','T','2025-10-14 03:25:25'),(0,0,666,0,'Y','2025-10-14','16:50:00','17:00:00','','','2','C','2025-10-14 04:23:32'),(0,0,666,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','7043420066','2','T','2025-10-14 05:53:02'),(0,0,667,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9879582624','2','T','2025-10-14 08:47:39'),(0,0,667,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9879582624','2','T','2025-11-13 06:59:27'),(0,0,667,0,'Y','2025-12-23','17:10:00','17:20:00','Fv','9879582624','2','C','2025-12-23 03:36:53'),(0,0,667,0,'Y','2026-02-21','08:00:00','08:30:00','Followup','9879582624','2','T','2025-12-23 04:58:00'),(0,0,668,0,'Y','2025-10-14','17:00:00','17:10:00','','','2','C','2025-10-14 04:24:07'),(0,0,668,0,'Y','2025-11-11','10:40:00','10:50:00','Fv','9998520462','2','C','2025-11-10 20:23:43'),(0,0,668,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9998520462','2','T','2025-10-14 07:58:47'),(0,0,668,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9998520462','2','T','2025-11-10 23:35:07'),(0,0,669,0,'Y','2025-10-14','17:30:00','17:40:00','','','2','C','2025-10-14 04:24:58'),(0,0,669,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9913553225','2','T','2025-10-14 08:30:00'),(0,0,669,0,'Y','2025-11-14','18:10:00','18:20:00','Fv','9913553225','2','C','2025-11-14 03:07:47'),(0,0,669,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9913553225','2','T','2025-11-14 05:53:39'),(0,0,670,0,'Y','2025-10-29','08:00:00','08:30:00','Followup','9879725693','2','T','2025-10-14 07:08:08'),(0,0,671,0,'Y','2025-10-14','17:10:00','17:20:00','','','2','C','2025-10-14 04:24:26'),(0,0,671,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9586723223','2','T','2025-10-14 06:08:44'),(0,0,672,0,'Y','2025-10-24','08:00:00','08:30:00','Followup','8306303798','2','T','2025-10-14 06:37:50'),(0,0,673,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','8758674742','2','T','2025-10-14 07:23:22'),(0,0,674,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9512223988','4','T','2025-10-14 06:45:09'),(0,0,675,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924984857','6','T','2025-10-14 06:49:48'),(0,0,676,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600726858','4','T','2025-10-14 07:18:47'),(0,0,677,0,'Y','2025-10-14','17:20:00','17:30:00','','','2','C','2025-10-14 04:24:42'),(0,0,677,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','6356030507','2','T','2025-10-14 06:50:52'),(0,0,677,0,'Y','2025-12-22','12:40:00','12:50:00','Fv','6356030507','2','B','2025-12-21 20:20:47'),(0,0,678,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924064108','4','T','2025-10-14 07:55:17'),(0,0,678,0,'Y','2025-10-14','18:00:00','18:10:00','','9924064108','4','C','2025-10-14 05:22:58'),(0,0,678,0,'Y','2025-12-13','11:10:00','11:20:00','Fc','9924064108','4','B','2025-12-12 21:43:41'),(0,0,679,0,'Y','2025-10-20','08:00:00','08:30:00','Followup','9825073885','2','T','2025-10-14 07:27:14'),(0,0,680,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9974396694','2','T','2025-10-14 07:46:50'),(0,0,681,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8488831541','3','T','2025-10-31 08:00:07'),(0,0,682,0,'Y','2025-10-14','17:40:00','17:50:00','','','2','C','2025-10-14 04:25:12'),(0,0,682,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','7359219720','2','T','2025-10-14 06:54:38'),(0,0,683,0,'Y','2025-10-14','18:00:00','18:10:00','','','2','C','2025-10-14 04:25:43'),(0,0,683,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9979468364','2','T','2025-10-14 08:59:54'),(0,0,683,0,'Y','2025-11-10','18:20:00','18:30:00','Fv','9979468364','2','C','2025-11-10 03:12:48'),(0,0,683,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9979468364','2','T','2025-11-10 06:09:06'),(0,0,683,0,'Y','2025-12-23','10:40:00','10:50:00','Fv','9979468364','2','C','2025-12-22 20:18:26'),(0,0,683,0,'Y','2026-02-21','08:00:00','08:30:00','Followup','9979468364','2','T','2025-12-22 22:30:37'),(0,0,684,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426677410','6','T','2025-10-14 06:40:56'),(0,0,685,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9824562015','2','T','2025-10-14 08:11:30'),(0,0,685,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9824562015','2','T','2025-11-05 05:03:42'),(0,0,687,0,'Y','2025-10-14','16:40:00','16:50:00','','','2','C','2025-10-14 04:23:19'),(0,0,687,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9724569105','2','T','2025-10-14 08:22:49'),(0,0,688,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7203834003','4','T','2025-10-14 07:18:29'),(0,0,688,0,'Y','2026-02-13','08:00:00','08:30:00','Followup','7203834003','4','T','2025-12-15 06:03:05'),(0,0,689,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8980582201','3','T','2025-10-29 07:23:09'),(0,0,690,0,'Y','2025-10-14','17:50:00','18:00:00','','','2','C','2025-10-14 04:25:26'),(0,0,690,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','8200680933','2','T','2025-10-14 07:12:03'),(0,0,691,0,'Y','2026-01-22','08:00:00','08:30:00','Followup','7984506211','2','T','2025-10-14 07:40:44'),(0,0,692,0,'Y','2025-10-14','18:20:00','18:30:00','','','2','C','2025-10-14 04:26:38'),(0,0,692,0,'Y','2025-10-21','08:00:00','08:30:00','Followup','9824290333','2','T','2025-10-14 07:15:35'),(0,0,692,0,'Y','2025-11-13','18:50:00','19:00:00','FV','9824290333','2','C','2025-11-13 03:27:40'),(0,0,692,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','9824290333','2','T','2025-11-13 06:56:12'),(0,0,692,0,'Y','2025-11-25','18:50:00','19:00:00','','9824290333','2','C','2025-11-25 01:32:13'),(0,0,692,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9824290333','2','T','2025-11-25 07:04:18'),(0,0,693,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998451651','4','T','2025-10-14 07:13:55'),(0,0,693,0,'Y','2025-10-14','18:20:00','18:30:00','','9998451651','4','C','2025-10-14 05:24:47'),(0,0,695,0,'Y','2025-11-21','17:10:00','17:20:00','','9925068192','2','C','2025-11-21 02:05:28'),(0,0,695,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9925068192','2','T','2025-10-14 08:43:17'),(0,0,695,0,'Y','2026-01-20','08:00:00','08:30:00','Followup','9925068192','2','T','2025-11-21 06:24:45'),(0,0,696,0,'Y','2025-10-14','18:10:00','18:20:00','','','2','C','2025-10-14 04:26:27'),(0,0,696,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','7874064664','2','T','2025-10-14 07:37:48'),(0,0,698,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9099428632','4','T','2025-10-14 07:42:35'),(0,0,699,0,'Y','2025-10-14','18:40:00','18:50:00','','','2','C','2025-10-14 04:26:04'),(0,0,699,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9898122158','2','T','2025-10-14 07:43:07'),(0,0,702,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727564348','4','T','2025-10-14 07:34:21'),(0,0,702,0,'Y','2025-10-14','19:00:00','19:10:00','','9727564348','4','C','2025-10-14 06:05:53'),(0,0,703,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033790713','4','T','2025-10-14 07:49:45'),(0,0,703,0,'Y','2025-10-14','18:40:00','18:50:00','','9033790713','4','C','2025-10-14 05:26:00'),(0,0,704,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925659044','4','T','2025-10-14 07:57:37'),(0,0,705,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925915311','4','T','2025-10-14 07:42:50'),(0,0,705,0,'Y','2025-12-08','12:40:00','12:50:00','FC','9925915311','4','C','2025-12-07 22:24:30'),(0,0,705,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9925915311','4','T','2025-12-08 01:02:04'),(0,0,706,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','8140257043','2','T','2025-10-14 08:46:53'),(0,0,707,0,'Y','2025-10-14','19:10:00','19:20:00','','9624914724','4','R','2025-10-14 06:35:03'),(0,0,708,0,'Y','2025-10-24','08:00:00','08:30:00','Followup','9427254384','2','T','2025-10-14 08:55:10'),(0,0,709,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723019231','6','T','2025-10-14 08:46:22'),(0,0,710,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8000341941','4','T','2025-10-14 08:14:25'),(0,0,711,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925209059','4','T','2025-10-14 08:14:12'),(0,0,711,0,'Y','2025-10-14','19:20:00','19:30:00','','9925209059','4','C','2025-10-14 06:58:58'),(0,0,714,0,'Y','2025-11-11','12:20:00','12:30:00','','8460375589','4','C','2025-11-10 22:03:28'),(0,0,714,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','8460375589','4','T','2025-11-11 00:44:10'),(0,0,714,0,'Y','2025-11-21','19:10:00','19:20:00','','8460375589','4','C','2025-11-21 05:49:37'),(0,0,714,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','8460375589','4','T','2025-10-29 00:12:26'),(0,0,714,0,'Y','2025-12-05','18:40:00','18:50:00','Fc','8460375589','4','B','2025-12-05 04:38:52'),(0,0,714,0,'Y','2026-01-20','08:00:00','08:30:00','Followup','8460375589','4','T','2025-11-21 07:19:20'),(0,0,714,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','8460375589','4','T','2025-12-03 06:59:07'),(0,0,715,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8141287858','4','T','2025-10-15 00:02:18'),(0,0,716,0,'Y','2025-10-15','10:10:00','10:20:00','Fe','','2','C','2025-10-14 21:24:31'),(0,0,716,0,'Y','2026-02-12','08:00:00','08:30:00','Followup','8401275770','2','T','2025-10-14 23:40:24'),(0,0,717,0,'Y','2026-04-13','08:00:00','08:30:00','Followup','9429081978','2','T','2025-10-14 23:48:08'),(0,0,718,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8401204832','5','T','2025-10-15 07:00:54'),(0,0,719,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9061131125','2','T','2025-10-15 00:51:00'),(0,0,719,0,'Y','2025-10-20','08:00:00','08:30:00','Followup','9061131125','2','T','2025-10-15 02:36:47'),(0,0,721,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','7405763567','2','T','2025-10-15 01:50:46'),(0,0,721,0,'Y','2025-11-04','18:20:00','18:30:00','','7405763567','2','C','2025-11-04 02:07:33'),(0,0,721,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','7405763567','2','T','2025-11-04 06:25:43'),(0,0,722,0,'Y','2025-10-15','10:50:00','11:00:00','FV','','2','C','2025-10-14 21:26:04'),(0,0,722,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9913510347','2','T','2025-10-14 23:43:51'),(0,0,723,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866246723','4','T','2025-10-15 01:44:59'),(0,0,724,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9737581781','3','T','2025-10-14 22:47:40'),(0,0,725,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9737581781','6','T','2025-10-15 07:03:42'),(0,0,726,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9104419466','3','T','2025-10-15 00:28:42'),(0,0,727,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723442220','3','T','2025-10-15 00:26:41'),(0,0,728,0,'Y','2025-10-15','11:10:00','11:20:00','FV','','2','C','2025-10-14 21:26:43'),(0,0,728,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9723513297','2','T','2025-10-14 23:54:32'),(0,0,729,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979095089','4','T','2025-10-15 00:02:52'),(0,0,729,0,'Y','2025-10-15','11:10:00','11:20:00','','','4','C','2025-10-14 22:23:49'),(0,0,730,0,'Y','2025-10-30','08:00:00','08:30:00','Followup','9824254856','2','T','2025-10-15 03:01:32'),(0,0,730,0,'Y','2025-10-30','10:10:00','10:20:00','Fv','9824254856','2','C','2025-10-29 21:36:59'),(0,0,730,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9824254856','2','T','2025-10-29 23:44:14'),(0,0,731,0,'Y','2025-10-15','10:30:00','10:40:00','NV','','2','C','2025-10-14 21:25:12'),(0,0,731,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','7043931873','2','T','2025-10-15 02:14:23'),(0,0,732,0,'Y','2025-11-14','08:00:00','08:30:00','Followup','9099784284','2','T','2025-10-15 00:30:27'),(0,0,733,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714125246','6','T','2025-10-14 23:33:15'),(0,0,734,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9773139743','4','T','2025-10-15 00:25:32'),(0,0,735,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9408368368','6','T','2025-10-14 23:42:34'),(0,0,736,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9773139743','3','T','2025-10-15 00:26:01'),(0,0,737,0,'Y','2025-10-15','11:20:00','11:30:00','FV','','2','C','2025-10-14 21:27:53'),(0,0,737,0,'Y','2025-11-22','10:20:00','10:30:00','','9824582686','2','C','2025-11-21 20:47:24'),(0,0,737,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9824582686','2','T','2025-10-15 00:13:44'),(0,0,737,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9824582686','2','T','2025-11-21 22:17:13'),(0,0,738,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825409220','6','T','2025-10-14 23:50:34'),(0,0,739,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427224881','4','T','2025-10-15 00:02:07'),(0,0,739,0,'Y','2025-10-15','12:10:00','12:20:00','','9427224881','4','C','2025-10-14 22:29:29'),(0,0,739,0,'Y','2025-11-13','12:00:00','12:10:00','','9427224881','4','C','2025-11-12 21:26:25'),(0,0,739,0,'Y','2025-12-03','11:30:00','11:40:00','Fc','9427224881','4','C','2025-12-02 21:03:39'),(0,0,739,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9427224881','4','T','2025-12-02 23:27:25'),(0,0,739,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9427224881','4','T','2025-11-13 00:19:09'),(0,0,740,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8460122551','4','T','2025-10-15 01:06:13'),(0,0,741,0,'Y','2025-11-14','08:00:00','08:30:00','Followup','9427728107','2','T','2025-10-15 01:16:08'),(0,0,741,0,'Y','2025-11-14','18:20:00','18:30:00','Fv','9427728107','2','C','2025-11-14 03:08:35'),(0,0,741,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9427728107','2','T','2025-11-14 06:11:48'),(0,0,742,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974298081','2','T','2025-10-15 00:26:45'),(0,0,742,0,'Y','2025-10-15','11:30:00','11:40:00','NV','','2','C','2025-10-14 21:27:03'),(0,0,742,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','9974298081','2','T','2025-10-15 06:00:22'),(0,0,743,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824818245','4','T','2025-10-15 00:43:37'),(0,0,743,0,'Y','2025-10-15','11:50:00','12:00:00','','9824818245','4','C','2025-10-14 22:28:29'),(0,0,744,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426785820','4','T','2025-10-15 00:18:27'),(0,0,744,0,'Y','2025-10-15','11:20:00','11:30:00','','9426785820','4','C','2025-10-14 22:26:21'),(0,0,745,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727745257','4','T','2025-10-15 00:36:51'),(0,0,745,0,'Y','2025-10-15','11:30:00','11:40:00','','','4','C','2025-10-14 22:26:47'),(0,0,746,0,'Y','2025-10-15','11:40:00','11:50:00','FV','','2','C','2025-10-14 21:28:32'),(0,0,746,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9662990217','2','T','2025-10-15 00:35:33'),(0,0,746,0,'Y','2025-12-17','11:20:00','11:30:00','FV','9662990217','2','C','2025-12-16 20:25:02'),(0,0,746,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9662990217','2','T','2025-12-16 23:11:34'),(0,0,747,0,'Y','2025-10-15','12:20:00','12:30:00','NE','','2','C','2025-10-14 21:30:06'),(0,0,747,0,'Y','2025-11-14','08:00:00','08:30:00','Followup','7041768962','2','T','2025-10-15 02:17:39'),(0,0,747,0,'Y','2025-12-16','11:50:00','12:00:00','Fv','7041768962','2','C','2025-12-15 20:09:20'),(0,0,747,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','7041768962','2','T','2025-12-15 23:35:53'),(0,0,748,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426169519','4','T','2025-10-15 01:11:17'),(0,0,748,0,'Y','2025-10-15','11:00:00','11:10:00','','9426169519','4','C','2025-10-14 22:21:50'),(0,0,749,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7567522104','4','T','2025-10-15 01:11:07'),(0,0,749,0,'Y','2025-10-15','12:40:00','12:50:00','','7567522104','4','C','2025-10-14 22:30:58'),(0,0,750,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9687735635','4','T','2025-10-15 01:12:34'),(0,0,751,0,'Y','2025-11-14','08:00:00','08:30:00','Followup','9909212188','2','T','2025-10-15 01:08:03'),(0,0,752,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9510441266','4','T','2025-10-15 01:42:51'),(0,0,752,0,'Y','2025-10-15','12:00:00','12:10:00','','9510441266','4','C','2025-10-14 22:28:59'),(0,0,752,0,'Y','2025-10-27','11:20:00','11:30:00','','9510441266','4','C','2025-10-26 21:55:04'),(0,0,752,0,'Y','2025-11-13','11:30:00','11:40:00','','9510441266','4','C','2025-11-12 21:23:16'),(0,0,752,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9510441266','4','T','2025-11-12 23:36:43'),(0,0,752,0,'Y','2025-12-04','18:10:00','18:20:00','FC','9510441266','4','C','2025-12-04 04:55:04'),(0,0,752,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9510441266','4','T','2025-12-04 05:50:12'),(0,0,753,0,'Y','2025-10-15','12:10:00','12:20:00','Fv','','2','C','2025-10-14 21:29:37'),(0,0,753,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9099088434','2','T','2025-10-15 01:46:56'),(0,0,754,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427389850','4','T','2025-10-15 01:31:01'),(0,0,754,0,'Y','2025-10-15','12:30:00','12:40:00','','9427389850','4','C','2025-10-14 22:30:31'),(0,0,755,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427730281','4','T','2025-10-15 01:39:18'),(0,0,756,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913323829','4','T','2025-10-15 01:53:12'),(0,0,757,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','9725006466','2','T','2025-10-15 05:48:08'),(0,0,758,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925500909','4','T','2025-10-15 02:00:13'),(0,0,759,0,'Y','2025-10-15','12:50:00','13:00:00','FV','','2','C','2025-10-14 21:31:21'),(0,0,759,0,'Y','2026-01-23','08:00:00','08:30:00','Followup','8469406141','2','T','2025-10-15 01:43:14'),(0,0,760,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429098326','6','T','2025-10-15 07:03:53'),(0,0,761,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9558183489','4','T','2025-10-15 01:48:35'),(0,0,761,0,'Y','2025-10-15','12:50:00','13:00:00','','9558183489','4','C','2025-10-14 23:17:59'),(0,0,762,0,'Y','2025-10-15','12:20:00','12:30:00','','','4','R','2025-10-14 22:29:51'),(0,0,763,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9558262601','2','T','2025-10-15 02:23:14'),(0,0,764,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824451754','4','T','2025-10-15 02:10:38'),(0,0,765,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9724700969','4','T','2025-10-15 02:14:24'),(0,0,766,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6292155436','4','T','2025-10-15 02:21:56'),(0,0,767,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9408390975','4','T','2025-10-15 02:27:50'),(0,0,767,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','9408390975','4','T','2025-12-15 06:28:21'),(0,0,768,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8140828789','4','T','2025-10-15 06:56:02'),(0,0,768,0,'Y','2025-10-15','11:40:00','11:50:00','','8140828789','4','C','2025-10-14 22:27:55'),(0,0,769,0,'Y','2025-10-25','08:00:00','08:30:00','Followup','9723456031','2','T','2025-10-15 02:43:28'),(0,0,769,0,'Y','2025-11-11','08:00:00','08:30:00','Followup','9723456031','2','T','2025-11-01 03:30:59'),(0,0,770,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913704646','7','T','2025-10-15 02:42:51'),(0,0,771,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9106287101','7','T','2025-10-15 02:42:59'),(0,0,772,0,'Y','2025-10-15','17:30:00','17:40:00','NV','8200586312','2','C','2025-10-15 03:19:55'),(0,0,772,0,'Y','2025-11-14','08:00:00','08:30:00','Followup','8200586312','2','T','2025-10-15 07:52:30'),(0,0,772,0,'Y','2025-11-14','10:20:00','10:30:00','Fv','8200586312','2','C','2025-11-13 20:18:24'),(0,0,772,0,'Y','2026-01-13','08:00:00','08:30:00','Followup','8200586312','2','T','2025-11-13 23:50:46'),(0,0,773,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','9924435111','2','T','2025-10-15 06:26:53'),(0,0,774,0,'Y','2025-10-15','16:40:00','16:50:00','FV','','2','C','2025-10-15 03:16:59'),(0,0,774,0,'Y','2026-01-23','08:00:00','08:30:00','Followup','9723437321','2','T','2025-10-15 05:47:50'),(0,0,775,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9328170344','2','T','2025-10-15 06:22:02'),(0,0,776,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909194524','2','T','2025-10-15 06:23:21'),(0,0,777,0,'Y','2025-10-15','17:20:00','17:30:00','FV','','2','C','2025-10-15 03:18:59'),(0,0,777,0,'Y','2025-11-14','08:00:00','08:30:00','Followup','9428201738','2','T','2025-10-15 06:08:22'),(0,0,777,0,'Y','2025-11-21','11:40:00','11:50:00','','9428201738','2','C','2025-11-20 20:29:59'),(0,0,777,0,'Y','2026-01-20','08:00:00','08:30:00','Followup','9428201738','2','T','2025-11-20 23:46:00'),(0,0,778,0,'Y','2025-10-15','17:00:00','17:10:00','NV','','2','C','2025-10-15 03:18:12'),(0,0,778,0,'Y','2025-10-30','08:00:00','08:30:00','Followup','9426911116','2','T','2025-10-15 07:29:41'),(0,0,779,0,'Y','2025-10-15','17:10:00','17:20:00','FV','','2','C','2025-10-15 03:18:47'),(0,0,779,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9909230451','2','T','2025-10-15 06:19:02'),(0,0,781,0,'Y','2025-10-20','08:00:00','08:30:00','Followup','7990588058','2','T','2025-10-15 06:34:31'),(0,0,782,0,'Y','2025-10-15','17:50:00','18:00:00','FV','','2','C','2025-10-15 03:20:37'),(0,0,782,0,'Y','2025-11-12','17:20:00','17:30:00','Fv','9898333255','2','C','2025-11-12 02:41:58'),(0,0,782,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9898333255','2','T','2025-10-15 06:37:58'),(0,0,782,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9898333255','2','T','2025-11-12 04:58:19'),(0,0,782,0,'Y','2025-12-23','17:20:00','17:30:00','Fv','9898333255','2','C','2025-12-23 03:37:01'),(0,0,782,0,'Y','2026-02-21','08:00:00','08:30:00','Followup','9898333255','2','T','2025-12-23 05:02:13'),(0,0,783,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9723586898','2','T','2025-10-15 06:44:02'),(0,0,783,0,'Y','2025-11-27','17:50:00','18:00:00','Fv','9723586898','2','C','2025-11-27 03:38:56'),(0,0,783,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9723586898','2','T','2025-11-27 05:40:09'),(0,0,784,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727600200','5','T','2025-10-15 06:32:27'),(0,0,785,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723015155','5','T','2025-10-15 06:38:31'),(0,0,785,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9723015155','5','T','2025-10-30 06:31:50'),(0,0,786,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7383394027','5','T','2025-10-15 06:42:03'),(0,0,787,0,'Y','2025-10-15','18:00:00','18:10:00','NV','','2','C','2025-10-15 03:20:52'),(0,0,787,0,'Y','2025-11-14','08:00:00','08:30:00','Followup','8758090212','2','T','2025-10-15 07:58:36'),(0,0,787,0,'Y','2025-12-02','10:50:00','11:00:00','FV','8758090212','2','C','2025-12-01 20:22:55'),(0,0,787,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','8758090212','2','T','2025-11-12 00:12:41'),(0,0,787,0,'Y','2026-01-31','08:00:00','08:30:00','Followup','8758090212','2','T','2025-12-01 22:46:12'),(0,0,788,0,'Y','2025-10-15','18:30:00','18:40:00','','9979949214','4','R','2025-10-15 06:06:32'),(0,0,788,0,'Y','2026-03-18','08:00:00','08:30:00','Followup','9979949214','4','T','2025-12-18 06:09:15'),(0,0,789,0,'Y','2025-10-15','18:20:00','18:30:00','FV','','2','C','2025-10-15 03:21:35'),(0,0,789,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9825603232','2','T','2025-10-15 06:56:54'),(0,0,789,0,'Y','2025-11-28','12:20:00','12:30:00','Fv','9825603232','2','C','2025-11-27 20:15:32'),(0,0,789,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','9825603232','2','T','2025-11-28 00:38:36'),(0,0,790,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160148889','6','T','2025-10-15 06:58:13'),(0,0,791,0,'Y','2025-10-15','17:40:00','17:50:00','FV','','2','C','2025-10-15 03:20:17'),(0,0,791,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9898499979','2','T','2025-10-15 07:01:46'),(0,0,791,0,'Y','2025-12-01','18:10:00','18:20:00','Fv','9898499979','2','C','2025-12-01 03:42:07'),(0,0,791,0,'Y','2026-01-10','08:00:00','08:30:00','Followup','9898499979','2','T','2025-12-01 06:23:10'),(0,0,792,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7202904505','4','T','2025-10-16 00:09:32'),(0,0,792,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','7202904505','4','T','2025-12-05 07:36:57'),(0,0,793,0,'Y','2025-10-15','18:40:00','18:50:00','FV','','2','C','2025-10-15 03:22:45'),(0,0,793,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','7016179095','2','T','2025-10-15 07:06:45'),(0,0,794,0,'Y','2025-10-15','18:20:00','18:30:00','','9725711778','4','R','2025-10-15 06:00:51'),(0,0,795,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9727635742','2','T','2025-11-12 00:08:20'),(0,0,795,0,'Y','2026-01-13','08:00:00','08:30:00','Followup','9727635742','2','T','2025-10-15 07:31:54'),(0,0,796,0,'Y','2025-10-15','18:30:00','18:40:00','NV','','2','C','2025-10-15 03:22:26'),(0,0,796,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','9537484946','2','T','2025-10-15 08:25:44'),(0,0,797,0,'Y','2025-10-16','17:40:00','17:50:00','','9825275510','2','B','2025-10-16 04:40:32'),(0,0,797,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9825275518','2','T','2025-10-15 07:57:39'),(0,0,797,0,'Y','2025-12-04','18:50:00','19:00:00','Fv','9825275510','2','C','2025-12-04 02:23:27'),(0,0,797,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9825275510','2','T','2025-11-04 07:09:33'),(0,0,797,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9825275510','2','T','2025-12-04 06:40:20'),(0,0,798,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9687250884','5','T','2025-10-15 07:15:02'),(0,0,800,0,'Y','0000-00-00','08:00:00','08:30:00','Followup','9408270096','5','T','2025-10-18 03:51:45'),(0,0,800,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428792327','5','T','2025-10-15 08:03:11'),(0,0,801,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9769543052','5','T','2025-10-15 08:08:00'),(0,0,803,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8155901760','6','T','2025-10-15 07:32:25'),(0,0,804,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712978811','4','T','2025-12-18 23:56:36'),(0,0,804,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9712978811','4','T','2025-11-11 01:19:48'),(0,0,804,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9712978811','4','T','2025-10-30 00:33:18'),(0,0,805,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','9426785362','2','T','2025-10-15 08:35:24'),(0,0,805,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9426785362','2','T','2025-11-04 00:10:38'),(0,0,805,0,'Y','2025-12-04','18:20:00','18:30:00','Fv','9426785362','2','C','2025-12-04 02:23:07'),(0,0,805,0,'Y','2026-01-13','08:00:00','08:30:00','Followup','9426785362','2','T','2025-12-04 05:59:11'),(0,0,806,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879963196','5','T','2025-10-15 07:43:08'),(0,0,807,0,'Y','2025-10-15','18:50:00','19:00:00','FV','','2','C','2025-10-15 03:23:03'),(0,0,807,0,'Y','2025-11-14','08:00:00','08:30:00','Followup','9408101049','2','T','2025-10-15 07:51:12'),(0,0,807,0,'Y','2025-11-17','18:50:00','19:00:00','Fv','9408101049','2','C','2025-11-17 03:16:36'),(0,0,807,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9408101049','2','T','2025-11-17 06:51:17'),(0,0,808,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824230104','2','T','2025-10-15 08:19:37'),(0,0,808,0,'Y','2025-10-31','08:00:00','08:30:00','Followup','9824230104','2','T','2025-10-16 07:18:28'),(0,0,810,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','9773014016','2','T','2025-10-15 08:35:03'),(0,0,815,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9428280882','2','T','2025-10-15 08:45:30'),(0,0,817,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9687005175','3','T','2025-10-15 08:33:00'),(0,0,818,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723350350','6','T','2025-11-13 23:38:49'),(0,0,818,0,'Y','2025-11-14','11:30:00','11:40:00','','9723350350','4','C','2025-11-13 21:44:06'),(0,0,820,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824212481','3','T','2025-12-03 06:21:51'),(0,0,821,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8511111341','4','T','2025-10-16 00:09:23'),(0,0,822,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','9714245637','2','T','2025-10-16 00:09:04'),(0,0,823,0,'Y','2025-10-16','11:50:00','12:00:00','Fv','9974945139','2','C','2025-10-15 21:51:21'),(0,0,823,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9974945139','2','T','2025-10-16 00:14:42'),(0,0,823,0,'Y','2025-12-08','10:50:00','11:00:00','Fv','9974945139','2','C','2025-12-07 20:11:25'),(0,0,823,0,'Y','2026-02-06','08:00:00','08:30:00','Followup','9974945139','2','T','2025-12-07 22:22:44'),(0,0,824,0,'Y','2025-10-16','10:10:00','10:20:00','Fv','9727858042','2','C','2025-10-15 21:45:22'),(0,0,824,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9727858042','2','T','2025-10-15 23:39:07'),(0,0,825,0,'Y','2025-10-16','11:00:00','11:10:00','Nv','7043725535','2','C','2025-10-15 21:48:04'),(0,0,825,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','7043725535','2','T','2025-10-16 02:40:51'),(0,0,826,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9898998607','2','T','2025-10-16 01:01:20'),(0,0,827,0,'Y','2025-10-16','11:20:00','11:30:00','Ne','9537583999','2','C','2025-10-15 21:49:28'),(0,0,827,0,'Y','2025-10-27','18:20:00','18:30:00','','9537583999','2','B','2025-10-27 03:37:11'),(0,0,827,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','9537583999','2','T','2025-10-16 02:50:03'),(0,0,827,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','9537583999','2','T','2025-11-17 01:42:08'),(0,0,828,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9023855285','5','T','2025-10-15 23:39:20'),(0,0,829,0,'Y','2025-10-16','10:20:00','10:30:00','Fv','9510211467','2','C','2025-10-15 21:45:47'),(0,0,829,0,'Y','2025-11-24','17:20:00','17:30:00','','9510211467','2','C','2025-11-24 02:33:32'),(0,0,829,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9510211467','2','T','2025-10-15 23:35:46'),(0,0,829,0,'Y','2026-01-23','08:00:00','08:30:00','Followup','9510211467','2','T','2025-11-24 05:30:32'),(0,0,830,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','8460334534','2','T','2025-10-16 01:03:58'),(0,0,831,0,'Y','2025-10-16','10:30:00','10:40:00','Nv','9913222657','2','C','2025-10-15 21:46:26'),(0,0,831,0,'Y','2025-10-31','08:00:00','08:30:00','Followup','9913222657','2','T','2025-10-16 02:00:23'),(0,0,831,0,'Y','2025-11-01','11:10:00','11:20:00','Fv','9913222657','2','C','2025-10-31 21:48:24'),(0,0,831,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9913222657','2','T','2025-11-01 00:00:02'),(0,0,832,0,'Y','2025-10-16','11:40:00','11:50:00','Fv','8980313475','2','C','2025-10-15 21:50:31'),(0,0,832,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','8980313475','2','T','2025-10-16 00:50:37'),(0,0,833,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','9904397283','2','T','2025-10-16 03:52:32'),(0,0,834,0,'Y','2025-10-16','10:40:00','10:50:00','Fv','9228780282','2','C','2025-10-15 21:47:09'),(0,0,834,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9228780282','2','T','2025-10-15 23:55:37'),(0,0,834,0,'Y','2025-12-04','18:10:00','18:20:00','Fv','9228780282','2','C','2025-12-04 02:22:53'),(0,0,834,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9228780282','2','T','2025-12-04 05:39:14'),(0,0,835,0,'Y','2025-10-16','10:50:00','11:00:00','Fv','9428274788','2','C','2025-10-15 21:47:33'),(0,0,835,0,'Y','2026-01-24','08:00:00','08:30:00','Followup','9428274788','2','T','2025-10-16 00:00:08'),(0,0,836,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723952016','3','T','2025-10-15 23:37:43'),(0,0,837,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9265377951','2','T','2025-10-16 02:06:41'),(0,0,838,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9724688008','4','T','2025-10-15 23:58:15'),(0,0,839,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924837337','4','T','2025-10-16 06:50:08'),(0,0,839,0,'Y','2025-10-16','11:00:00','11:10:00','','9924837337','4','C','2025-10-15 21:47:45'),(0,0,840,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428227101','3','T','2025-10-15 23:40:13'),(0,0,841,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','6353296768','2','T','2025-10-16 02:10:32'),(0,0,842,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8980898895','5','T','2025-10-15 23:44:08'),(0,0,842,0,'Y','2026-02-13','08:00:00','08:30:00','Followup','8980898895','5','T','2025-12-15 01:13:10'),(0,0,843,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','8347246864','2','T','2025-10-16 02:15:07'),(0,0,843,0,'Y','2025-11-15','10:20:00','10:30:00','Fv','8347246864','2','C','2025-11-14 20:20:41'),(0,0,843,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','8347246864','2','T','2025-11-14 23:07:40'),(0,0,844,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','9913577664','2','T','2025-10-16 03:32:12'),(0,0,844,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9913577664','2','T','2025-11-12 22:25:16'),(0,0,844,0,'Y','2025-12-16','10:20:00','10:30:00','','9913577664','2','C','2025-12-15 21:29:44'),(0,0,844,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9913577664','2','T','2025-12-15 22:26:53'),(0,0,845,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9734516256','4','T','2025-10-16 06:50:19'),(0,0,846,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9409162948','4','T','2025-10-16 00:08:36'),(0,0,846,0,'Y','2025-10-16','11:10:00','11:20:00','','9409162948','4','C','2025-10-15 21:48:31'),(0,0,847,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9408934547','4','T','2025-10-16 00:08:18'),(0,0,847,0,'Y','2025-11-11','12:00:00','12:10:00','','9408934547','4','C','2025-11-10 22:02:55'),(0,0,847,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9408934547','4','T','2025-11-11 00:32:23'),(0,0,848,0,'Y','2025-10-31','08:00:00','08:30:00','Followup','9375473854','2','T','2025-10-16 02:30:40'),(0,0,849,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8511087335','4','T','2025-10-16 00:18:05'),(0,0,849,0,'Y','2025-10-16','11:20:00','11:30:00','','','4','C','2025-10-15 21:48:49'),(0,0,849,0,'Y','2025-11-15','11:10:00','11:20:00','','8511087335','4','C','2025-11-14 20:39:24'),(0,0,849,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','8511087335','4','T','2025-11-14 23:15:14'),(0,0,850,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7623085362','4','T','2025-10-16 06:50:30'),(0,0,851,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879467370','4','T','2025-10-16 00:33:15'),(0,0,851,0,'Y','2025-10-16','11:50:00','12:00:00','','9879467370','4','C','2025-10-15 21:50:42'),(0,0,852,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879467370','4','T','2025-10-16 00:33:03'),(0,0,853,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9327978466','2','T','2025-10-16 02:40:07'),(0,0,853,0,'Y','2025-11-26','12:20:00','12:30:00','Fv','9327978466','2','C','2025-11-25 20:39:32'),(0,0,853,0,'Y','2026-01-10','08:00:00','08:30:00','Followup','9327978466','2','T','2025-11-26 00:12:36'),(0,0,854,0,'Y','2025-10-16','12:40:00','12:50:00','Fv','9898039206','2','C','2025-10-15 21:52:51'),(0,0,854,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9898039206','2','T','2025-10-16 01:29:11'),(0,0,854,0,'Y','2026-02-04','08:00:00','08:30:00','Followup','9898039206','2','T','2025-12-05 22:31:29'),(0,0,855,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712115866','4','T','2025-10-16 00:24:36'),(0,0,856,0,'Y','2026-03-18','08:00:00','08:30:00','Followup','7990111207','4','T','2025-12-18 07:04:54'),(0,0,857,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979137874','4','T','2025-10-16 01:04:15'),(0,0,858,0,'Y','2025-10-16','12:00:00','12:10:00','Nv','9913332312','2','C','2025-10-15 22:43:19'),(0,0,858,0,'Y','2025-10-27','08:00:00','08:30:00','Followup','9913332312','2','T','2025-10-16 02:47:07'),(0,0,858,0,'Y','2025-11-07','18:50:00','19:00:00','','9913332312','2','C','2025-11-07 02:26:21'),(0,0,858,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9913332312','2','T','2025-11-07 06:43:44'),(0,0,859,0,'Y','2025-10-16','12:20:00','12:30:00','Fv','9426273855','2','C','2025-10-15 21:52:24'),(0,0,859,0,'Y','2025-10-31','08:00:00','08:30:00','Followup','9426273855','2','T','2025-10-16 01:21:55'),(0,0,860,0,'Y','2025-11-05','08:00:00','08:30:00','Followup','9662663135','2','T','2025-10-16 02:46:15'),(0,0,861,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','6355001962','2','T','2025-10-16 02:54:54'),(0,0,862,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7575083283','4','T','2025-10-16 01:21:08'),(0,0,862,0,'Y','2025-10-16','11:30:00','11:40:00','','7575083283','4','C','2025-10-15 21:49:29'),(0,0,863,0,'Y','2025-10-16','11:30:00','11:40:00','Nv','8128273022','2','C','2025-10-15 21:49:59'),(0,0,863,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','8128273022','2','T','2025-10-16 03:18:03'),(0,0,863,0,'Y','2025-11-20','18:10:00','18:20:00','','8128273022','2','C','2025-11-20 02:34:59'),(0,0,863,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','8128273022','2','T','2025-11-20 06:53:49'),(0,0,864,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9510027227','4','T','2025-10-16 01:26:39'),(0,0,864,0,'Y','2025-10-16','12:00:00','12:10:00','','9510027227','4','C','2025-10-15 22:48:55'),(0,0,864,0,'Y','2025-12-04','18:30:00','18:40:00','','9510027227','4','C','2025-12-04 04:56:12'),(0,0,864,0,'Y','2026-01-03','08:00:00','08:30:00','Followup','9510027227','4','T','2025-12-04 06:23:06'),(0,0,865,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9173732475','3','T','2025-10-16 01:35:06'),(0,0,866,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979999484','5','T','2025-10-16 00:53:09'),(0,0,867,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725639167','6','T','2025-10-16 01:45:51'),(0,0,868,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9558899399','4','T','2025-10-16 06:49:59'),(0,0,869,0,'Y','2025-11-05','08:00:00','08:30:00','Followup','9825416130','2','T','2025-10-16 03:44:45'),(0,0,869,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9825416130','2','T','2025-11-06 01:41:30'),(0,0,870,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879106309','6','T','2025-10-16 01:38:18'),(0,0,871,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7874143463','4','T','2025-10-16 02:07:31'),(0,0,871,0,'Y','2025-10-16','12:20:00','12:30:00','','7874143463','4','C','2025-10-15 23:11:46'),(0,0,872,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998694274','6','T','2025-10-16 01:51:23'),(0,0,873,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','9724603069','2','T','2025-10-16 03:41:49'),(0,0,873,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9724603069','2','T','2025-11-24 02:16:27'),(0,0,874,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866412340','2','T','2025-10-16 03:38:53'),(0,0,874,0,'Y','2025-10-27','08:00:00','08:30:00','Followup','8866412340','2','T','2025-10-16 08:37:41'),(0,0,875,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8487078497','4','T','2025-10-16 02:05:10'),(0,0,876,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9664951980','3','T','2025-10-16 01:35:25'),(0,0,877,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879106309','4','T','2025-10-16 02:02:04'),(0,0,880,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','9824631061','2','T','2025-10-16 03:25:04'),(0,0,880,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9824631061','2','T','2025-11-17 01:05:32'),(0,0,882,0,'Y','2025-10-16','17:10:00','17:20:00','','','2','C','2025-10-16 04:39:32'),(0,0,882,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','9725942699','2','T','2025-10-16 05:54:18'),(0,0,884,0,'Y','2025-10-16','17:20:00','17:30:00','','','2','C','2025-10-16 04:39:44'),(0,0,884,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9510966074','2','T','2025-10-16 05:59:20'),(0,0,884,0,'Y','2025-12-16','18:20:00','18:30:00','','9510966074','2','C','2025-12-16 02:22:16'),(0,0,884,0,'Y','2026-02-14','08:00:00','08:30:00','Followup','9510966074','2','T','2025-12-16 05:52:15'),(0,0,886,0,'Y','2025-11-05','08:00:00','08:30:00','Followup','9898482914','2','T','2025-10-16 06:43:22'),(0,0,886,0,'Y','2025-11-07','18:10:00','18:20:00','','9898482914','2','C','2025-11-07 02:25:56'),(0,0,886,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9898482914','2','T','2025-11-07 06:06:42'),(0,0,887,0,'Y','2025-10-16','16:50:00','17:00:00','','','2','C','2025-10-16 04:39:05'),(0,0,887,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','8460656137','2','T','2025-10-16 06:12:13'),(0,0,887,0,'Y','2025-11-25','12:20:00','12:30:00','Fv','8460656137','2','C','2025-11-24 20:27:26'),(0,0,887,0,'Y','2026-01-24','08:00:00','08:30:00','Followup','8460656137','2','T','2025-11-25 00:40:03'),(0,0,888,0,'Y','2025-10-16','16:40:00','16:50:00','','','2','C','2025-10-16 04:38:48'),(0,0,888,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9099315686','2','T','2025-10-16 06:19:29'),(0,0,888,0,'Y','2025-12-02','18:10:00','18:20:00','FV','9099315686','2','C','2025-12-02 03:51:43'),(0,0,888,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9099315686','2','T','2025-12-02 06:36:29'),(0,0,889,0,'Y','2025-10-16','17:00:00','17:10:00','','','2','C','2025-10-16 04:39:19'),(0,0,889,0,'Y','2025-10-31','08:00:00','08:30:00','Followup','9586589189','2','T','2025-10-16 08:08:52'),(0,0,890,0,'Y','2025-11-05','08:00:00','08:30:00','Followup','9904708817','2','T','2025-10-16 07:58:00'),(0,0,891,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725755800','6','T','2025-10-16 06:32:12'),(0,0,892,0,'Y','2025-12-10','10:50:00','11:00:00','Fv','8320167387','2','C','2025-12-09 20:15:01'),(0,0,892,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','8320167387','2','T','2025-10-16 07:08:42'),(0,0,892,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','8320167387','2','T','2025-12-09 22:34:25'),(0,0,893,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904224568','5','T','2025-10-16 07:02:50'),(0,0,893,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9904224568','5','T','2025-11-05 22:48:22'),(0,0,894,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8320167387','2','T','2025-10-16 07:19:30'),(0,0,894,0,'Y','2025-11-04','18:40:00','18:50:00','','8320167387','2','C','2025-11-04 02:08:05'),(0,0,894,0,'Y','2025-11-07','08:00:00','08:30:00','Followup','8320167387','2','T','2025-10-17 08:05:06'),(0,0,894,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','8320167387','2','T','2025-11-04 06:45:22'),(0,0,894,0,'Y','2025-12-10','10:40:00','10:50:00','Fv','8320167387','2','C','2025-12-09 20:14:50'),(0,0,894,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','8320167387','2','T','2025-12-09 22:39:00'),(0,0,895,0,'Y','2025-10-31','08:00:00','08:30:00','Followup','8401433211','2','T','2025-10-16 06:32:26'),(0,0,896,0,'Y','2025-10-27','08:00:00','08:30:00','Followup','8488820551','2','T','2025-10-16 07:22:27'),(0,0,896,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','8488820551','2','T','2025-11-10 01:58:57'),(0,0,897,0,'Y','2025-10-27','08:00:00','08:30:00','Followup','9427220713','2','T','2025-10-16 07:27:35'),(0,0,897,0,'Y','2025-10-27','10:50:00','11:00:00','','9427220713','2','C','2025-10-26 21:41:38'),(0,0,897,0,'Y','2025-11-06','08:00:00','08:30:00','Followup','9427220713','2','T','2025-10-26 23:34:52'),(0,0,897,0,'Y','2025-11-06','17:40:00','17:50:00','','9427220713','2','C','2025-11-06 02:53:11'),(0,0,897,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9427220713','2','T','2025-11-06 05:43:26'),(0,0,897,0,'Y','2025-11-18','11:40:00','11:50:00','Fv','9427220713','2','C','2025-11-17 20:20:27'),(0,0,897,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9427220713','2','T','2025-11-17 23:26:18'),(0,0,897,0,'Y','2025-12-09','10:50:00','11:00:00','Fv','9427220713','2','C','2025-12-08 20:12:55'),(0,0,897,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9427220713','2','T','2025-12-08 22:42:05'),(0,0,897,0,'Y','2025-12-19','16:40:00','16:50:00','','9427220713','2','C','2025-12-19 02:05:56'),(0,0,897,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9427220713','2','T','2025-12-19 04:52:20'),(0,0,899,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','9898068896','2','T','2025-10-16 07:33:36'),(0,0,900,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9624962654','5','T','2025-10-16 07:05:44'),(0,0,901,0,'Y','2025-10-27','08:00:00','08:30:00','Followup','6352106203','2','T','2025-10-16 07:43:19'),(0,0,902,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879127842','5','T','2025-10-16 07:07:19'),(0,0,903,0,'Y','2025-10-16','18:10:00','18:20:00','','','2','C','2025-10-16 04:41:03'),(0,0,903,0,'Y','2025-11-21','17:20:00','17:30:00','','9737927512','2','C','2025-11-21 02:05:39'),(0,0,903,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9737927512','2','T','2025-10-16 06:49:47'),(0,0,903,0,'Y','2026-02-19','08:00:00','08:30:00','Followup','9737927512','2','T','2025-11-21 06:21:37'),(0,0,904,0,'Y','2025-11-05','08:00:00','08:30:00','Followup','9898174140','2','T','2025-10-16 08:00:34'),(0,0,905,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9737750399','4','T','2025-10-16 06:55:02'),(0,0,906,0,'Y','2025-10-16','18:10:00','18:20:00','','9408614756','4','R','2025-10-16 05:34:37'),(0,0,907,0,'Y','2025-10-16','17:30:00','17:40:00','','','2','C','2025-10-16 04:40:03'),(0,0,907,0,'Y','2025-10-31','08:00:00','08:30:00','Followup','8000382199','2','T','2025-10-16 08:48:16'),(0,0,907,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','8000382199','2','T','2025-10-31 09:04:30'),(0,0,908,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727564911','4','T','2025-10-16 08:04:19'),(0,0,908,0,'Y','2025-10-16','18:00:00','18:10:00','','9727564911','4','C','2025-10-16 05:33:54'),(0,0,909,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712176800','5','T','2025-10-16 07:10:48'),(0,0,910,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7567051976','7','T','2025-10-17 06:53:23'),(0,0,911,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033343144','3','T','2025-10-25 08:56:33'),(0,0,912,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974129815','2','T','2025-10-28 23:39:41'),(0,0,912,0,'Y','2025-10-27','08:00:00','08:30:00','Followup','9974129815','2','T','2025-10-16 08:11:55'),(0,0,912,0,'Y','2025-10-28','12:50:00','13:00:00','Fv','9974129815','2','B','2025-10-27 21:51:16'),(0,0,912,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9974129815','2','T','2025-10-29 02:42:00'),(0,0,913,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825776474','6','T','2025-10-16 07:15:58'),(0,0,914,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9228470747','5','T','2025-10-16 07:13:54'),(0,0,915,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9825220620','2','T','2025-10-16 08:15:45'),(0,0,915,0,'Y','2026-03-18','08:00:00','08:30:00','Followup','9825220620','2','T','2025-12-18 05:36:43'),(0,0,916,0,'Y','2025-11-25','17:50:00','18:00:00','','9978937908','2','C','2025-11-25 01:29:58'),(0,0,916,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9978937908','2','T','2025-10-16 08:23:43'),(0,0,916,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9978937908','2','T','2025-11-25 05:53:07'),(0,0,917,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','8200549904','2','T','2025-10-16 08:29:41'),(0,0,919,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714108655','5','T','2025-10-16 07:21:41'),(0,0,920,0,'Y','2025-10-16','18:40:00','18:50:00','','','2','C','2025-10-16 04:41:53'),(0,0,920,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9574974200','2','T','2025-10-16 07:47:35'),(0,0,920,0,'Y','2025-12-17','17:10:00','17:20:00','','9574974200','2','C','2025-12-17 01:43:34'),(0,0,920,0,'Y','2026-02-16','08:00:00','08:30:00','Followup','9574974200','2','T','2025-12-17 05:14:04'),(0,0,921,0,'Y','2026-01-24','08:00:00','08:30:00','Followup','8000041241','2','T','2025-10-16 08:32:01'),(0,0,922,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9016546855','5','T','2025-10-16 07:28:51'),(0,0,923,0,'Y','2025-10-16','18:50:00','19:00:00','','','2','C','2025-10-16 04:42:11'),(0,0,923,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','9664882236','2','T','2025-10-16 07:50:36'),(0,0,924,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033151312','4','T','2025-10-27 01:46:50'),(0,0,924,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9033151312','4','T','2025-11-11 06:41:16'),(0,0,925,0,'Y','2025-10-16','18:20:00','18:30:00','','9033638908','4','C','2025-10-16 05:35:01'),(0,0,925,0,'Y','2025-12-18','19:00:00','19:10:00','FC','9033638908','4','B','2025-12-18 05:30:46'),(0,0,925,0,'Y','2025-12-19','12:00:00','12:10:00','FC','9033638908','4','C','2025-12-18 21:50:52'),(0,0,925,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9033638908','4','T','2025-10-16 08:13:16'),(0,0,925,0,'Y','2026-03-19','08:00:00','08:30:00','Followup','9033638908','4','T','2025-12-19 00:26:49'),(0,0,926,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824867803','4','T','2025-10-16 08:13:28'),(0,0,927,0,'Y','2025-10-16','18:20:00','18:30:00','','','2','C','2025-10-16 04:41:16'),(0,0,927,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9106994063','2','T','2025-10-16 09:00:00'),(0,0,931,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638891007','2','T','2025-10-16 09:13:11'),(0,0,932,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600800003','6','T','2025-10-16 23:48:52'),(0,0,934,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924430999','4','T','2025-10-17 06:41:54'),(0,0,935,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723558699','3','T','2025-10-16 23:57:21'),(0,0,936,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9375977091','4','T','2025-10-17 00:41:01'),(0,0,937,0,'Y','2025-10-17','12:00:00','12:10:00','Fc','9537414133','4','C','2025-10-16 21:46:19'),(0,0,937,0,'Y','2025-12-12','11:20:00','11:30:00','Fc','9537414133','4','C','2025-12-11 21:01:11'),(0,0,937,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','9537414133','4','T','2025-10-17 00:28:17'),(0,0,937,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','9537414133','4','T','2025-12-11 22:43:36'),(0,0,938,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849363180','4','T','2025-10-17 00:28:03'),(0,0,939,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924281125','4','T','2025-10-17 00:27:46'),(0,0,939,0,'Y','2025-10-17','11:30:00','11:40:00','','9924281125','4','B','2025-10-16 22:22:09'),(0,0,940,0,'Y','2025-10-17','10:10:00','10:20:00','Fv','7202024475','2','C','2025-10-16 21:37:49'),(0,0,940,0,'Y','2026-02-14','08:00:00','08:30:00','Followup','7202024475','2','T','2025-10-16 23:14:31'),(0,0,941,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9016020658','3','T','2025-10-17 00:08:37'),(0,0,942,0,'Y','2025-11-01','08:00:00','08:30:00','Followup','9978396623','2','T','2025-10-17 02:36:23'),(0,0,942,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9978396623','2','T','2025-10-30 07:10:02'),(0,0,943,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9727391939','2','T','2025-10-17 00:17:24'),(0,0,943,0,'Y','2025-12-16','12:40:00','12:50:00','Fv','9727391939','2','C','2025-12-15 20:11:52'),(0,0,943,0,'Y','2026-02-14','08:00:00','08:30:00','Followup','9727391939','2','T','2025-12-16 00:20:30'),(0,0,944,0,'Y','2025-10-17','10:30:00','10:40:00','Nv','9537787381','2','C','2025-10-16 21:39:45'),(0,0,944,0,'Y','2025-11-01','08:00:00','08:30:00','Followup','9537787381','2','T','2025-10-17 02:07:34'),(0,0,944,0,'Y','2025-11-01','10:20:00','10:30:00','Fv','9537787381','2','C','2025-10-31 21:35:24'),(0,0,944,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9537787381','2','T','2025-10-31 23:12:35'),(0,0,946,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727779909','3','T','2025-10-28 23:39:32'),(0,0,947,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879533307','4','T','2025-10-17 06:42:02'),(0,0,948,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9925871781','2','T','2025-10-17 00:23:11'),(0,0,948,0,'Y','2025-11-18','11:20:00','11:30:00','Fv','9925871781','2','C','2025-11-17 20:20:12'),(0,0,948,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','9925871781','2','T','2025-11-17 23:16:50'),(0,0,949,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','8460317132','2','T','2025-10-17 00:32:35'),(0,0,949,0,'Y','2025-12-16','12:20:00','12:30:00','Fv','8460317132','2','C','2025-12-15 20:10:42'),(0,0,949,0,'Y','2026-02-14','08:00:00','08:30:00','Followup','8460317132','2','T','2025-12-15 23:38:16'),(0,0,950,0,'Y','2025-10-17','12:30:00','12:40:00','Nv','9913745765','2','C','2025-10-16 21:49:25'),(0,0,950,0,'Y','2025-10-29','18:20:00','18:30:00','','9913745765','2','C','2025-10-29 03:31:21'),(0,0,950,0,'Y','2025-11-01','08:00:00','08:30:00','Followup','9913745765','2','T','2025-10-17 02:58:52'),(0,0,950,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9913745765','2','T','2025-10-29 06:59:19'),(0,0,951,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825720715','5','T','2025-10-17 00:31:28'),(0,0,952,0,'Y','2025-10-17','10:40:00','10:50:00','Fv','9327124355','2','C','2025-10-16 21:41:29'),(0,0,952,0,'Y','2025-10-27','08:00:00','08:30:00','Followup','9327124355','2','T','2025-10-16 23:47:23'),(0,0,953,0,'Y','2025-10-17','10:50:00','11:00:00','Fv','9825453936','2','C','2025-10-16 21:41:53'),(0,0,953,0,'Y','2025-10-27','08:00:00','08:30:00','Followup','9825453936','2','T','2025-10-16 23:51:01'),(0,0,954,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849666836','6','T','2025-10-16 23:48:36'),(0,0,955,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','7487989234','2','T','2025-10-17 03:02:37'),(0,0,955,0,'Y','2025-11-19','11:40:00','11:50:00','Fv','7487989234','2','C','2025-11-18 20:20:12'),(0,0,955,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','7487989234','2','T','2025-11-18 23:02:26'),(0,0,956,0,'Y','2025-11-06','08:00:00','08:30:00','Followup','9979788869','2','T','2025-10-17 01:43:27'),(0,0,957,0,'Y','2025-10-17','11:10:00','11:20:00','Fv','9979891302','2','C','2025-10-16 21:42:56'),(0,0,957,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9979891302','2','T','2025-10-17 00:00:32'),(0,0,958,0,'Y','2025-10-17','10:20:00','10:30:00','Fv','8980218076','2','C','2025-10-16 21:38:32'),(0,0,958,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','8980218076','2','T','2025-10-17 00:28:01'),(0,0,958,0,'Y','2026-02-21','08:00:00','08:30:00','Followup','8980218076','2','T','2025-12-22 23:29:56'),(0,0,959,0,'Y','2025-10-17','12:40:00','12:50:00','Fv','9909802121','2','C','2025-10-16 21:50:55'),(0,0,959,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9909802121','2','T','2025-10-17 01:56:13'),(0,0,960,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9879750084','2','T','2025-10-17 01:59:18'),(0,0,961,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723054675','5','T','2025-10-17 00:09:19'),(0,0,961,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','9723054675','5','T','2025-11-30 22:50:26'),(0,0,962,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825376191','4','T','2025-10-17 00:40:29'),(0,0,962,0,'Y','2025-10-17','12:30:00','12:40:00','','9825376191','4','C','2025-10-16 23:50:30'),(0,0,962,0,'Y','2025-11-19','12:10:00','12:20:00','FC','9825376191','4','C','2025-11-18 23:42:45'),(0,0,962,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9825376191','4','T','2025-11-19 01:32:37'),(0,0,962,0,'Y','2026-03-03','08:00:00','08:30:00','Followup','9825376191','4','T','2025-12-03 00:49:40'),(0,0,963,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099037820','2','T','2025-10-17 00:29:06'),(0,0,964,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8154975545','4','T','2025-10-17 06:42:10'),(0,0,965,0,'Y','2025-10-17','12:10:00','12:20:00','Fv','8511957761','2','C','2025-10-16 21:48:19'),(0,0,965,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','8511957761','2','T','2025-10-17 00:50:28'),(0,0,966,0,'Y','2025-11-01','08:00:00','08:30:00','Followup','9737317402','2','T','2025-10-17 02:04:09'),(0,0,967,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9327407182','4','T','2025-10-17 06:42:21'),(0,0,967,0,'Y','2025-10-17','11:20:00','11:30:00','','9327407182','4','C','2025-10-16 22:21:37'),(0,0,968,0,'Y','2025-11-14','16:50:00','17:00:00','Fv','9426900186','2','B','2025-11-14 03:05:10'),(0,0,968,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9426900186','2','T','2025-10-17 02:18:57'),(0,0,968,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9426900186','2','T','2025-11-24 02:04:32'),(0,0,969,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974842023','4','T','2025-10-17 06:42:32'),(0,0,970,0,'Y','2025-10-17','11:50:00','12:00:00','Fv','8160952351','2','C','2025-10-16 21:47:26'),(0,0,970,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','8160952351','2','T','2025-10-17 00:40:22'),(0,0,970,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','8160952351','2','T','2025-12-10 02:04:24'),(0,0,971,0,'Y','2025-10-17','11:40:00','11:50:00','Fv','9824943653','2','C','2025-10-16 21:47:02'),(0,0,971,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9824943653','2','T','2025-10-17 00:47:18'),(0,0,971,0,'Y','2025-12-17','18:50:00','19:00:00','','9824943653','2','C','2025-12-17 01:48:06'),(0,0,971,0,'Y','2026-02-16','08:00:00','08:30:00','Followup','9824943653','2','T','2025-12-17 07:29:01'),(0,0,972,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6355110755','6','T','2025-10-17 00:26:00'),(0,0,973,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909312068','3','T','2025-10-17 01:42:33'),(0,0,974,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998215246','2','T','2025-11-12 06:25:52'),(0,0,974,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','9998215246','2','T','2025-11-07 07:01:51'),(0,0,974,0,'Y','2025-11-12','18:20:00','18:30:00','Fv','9998215246','2','C','2025-11-12 02:44:58'),(0,0,974,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9998215246','2','T','2025-10-17 02:25:11'),(0,0,974,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9998215246','2','T','2025-11-13 00:16:25'),(0,0,974,0,'Y','2025-12-08','18:50:00','19:00:00','','9998215246','2','C','2025-12-08 02:53:26'),(0,0,974,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9998215246','2','T','2025-12-08 06:28:59'),(0,0,975,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200525996','3','T','2025-10-17 00:43:31'),(0,0,976,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662738427','2','T','2025-10-17 02:45:31'),(0,0,977,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825477914','5','T','2025-10-17 00:59:10'),(0,0,978,0,'Y','2025-10-17','12:00:00','12:10:00','Nv','8320564389','2','C','2025-10-16 21:47:53'),(0,0,978,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','8320564389','2','T','2025-10-17 03:04:32'),(0,0,979,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8347890112','5','T','2025-10-17 01:03:05'),(0,0,980,0,'Y','2025-10-17','17:50:00','18:00:00','','9825828304','2','B','2025-10-17 04:47:03'),(0,0,980,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9825828304','2','T','2025-10-17 02:51:55'),(0,0,980,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9825828304','2','T','2025-11-26 00:16:42'),(0,0,981,0,'Y','2025-10-17','12:20:00','12:30:00','Fv','9825340005','2','C','2025-10-16 21:48:48'),(0,0,981,0,'Y','2025-11-17','17:20:00','17:30:00','Fv','9825340005','2','B','2025-11-17 03:09:34'),(0,0,981,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9825340005','2','T','2025-10-17 01:52:21'),(0,0,982,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8469400800','4','T','2025-10-17 06:48:03'),(0,0,982,0,'Y','2025-10-17','12:40:00','12:50:00','','8469400800','4','C','2025-10-17 00:19:04'),(0,0,982,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9099400800','4','T','2025-10-30 07:42:00'),(0,0,982,0,'Y','2025-12-02','11:10:00','11:20:00','','9099400800','4','C','2025-12-01 21:08:00'),(0,0,983,0,'Y','2025-10-17','11:30:00','11:40:00','Nv','8140500782','2','C','2025-10-16 21:46:37'),(0,0,983,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','8140500782','2','T','2025-10-17 03:41:23'),(0,0,983,0,'Y','2025-11-17','12:50:00','13:00:00','Fv','8140500782','2','C','2025-11-16 20:22:31'),(0,0,983,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','8140500782','2','T','2025-11-17 01:48:45'),(0,0,984,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','8460510007','2','T','2025-10-17 03:29:12'),(0,0,985,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9624044404','4','T','2025-10-17 06:48:14'),(0,0,985,0,'Y','2025-10-17','12:20:00','12:30:00','','9624044404','4','C','2025-10-16 23:34:23'),(0,0,986,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8140404646','4','T','2025-10-17 06:41:45'),(0,0,986,0,'Y','2025-10-17','11:50:00','12:00:00','','8140404646','4','C','2025-10-16 22:22:44'),(0,0,988,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9624255474','2','T','2025-10-17 03:32:57'),(0,0,990,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825093831','4','T','2025-10-17 06:47:53'),(0,0,990,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9825093831','4','T','2025-11-19 06:25:21'),(0,0,991,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909905581','2','T','2025-10-17 05:46:52'),(0,0,992,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7966161000','2','T','2025-10-17 05:50:24'),(0,0,993,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6358895652','2','T','2025-10-17 05:52:49'),(0,0,994,0,'Y','2025-10-17','16:40:00','16:50:00','','','2','C','2025-10-17 04:44:24'),(0,0,994,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','8200206260','2','T','2025-10-17 07:11:07'),(0,0,994,0,'Y','2025-11-17','11:50:00','12:00:00','Fv','8200206260','2','C','2025-11-16 20:19:30'),(0,0,994,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','8200206260','2','T','2025-11-16 23:49:29'),(0,0,996,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427665195','2','T','2025-10-17 05:55:35'),(0,0,997,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9022578787','2','T','2025-10-17 06:15:12'),(0,0,997,0,'Y','2025-12-16','17:40:00','17:50:00','','9022578787','2','C','2025-12-16 02:21:25'),(0,0,997,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9022578787','2','T','2025-12-16 05:33:11'),(0,0,998,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9327103858','2','T','2025-10-17 06:28:03'),(0,0,999,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426449973','2','T','2025-10-17 05:56:43'),(0,0,1000,0,'Y','2025-10-17','16:50:00','17:00:00','','','2','C','2025-10-17 04:44:37'),(0,0,1000,0,'Y','2025-11-01','08:00:00','08:30:00','Followup','9327588753','2','T','2025-10-17 06:01:37'),(0,0,1001,0,'Y','2025-10-17','17:00:00','17:10:00','','','2','C','2025-10-17 04:44:55'),(0,0,1001,0,'Y','2025-11-01','08:00:00','08:30:00','Followup','9726055825','2','T','2025-10-17 07:57:50'),(0,0,1002,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9773178633','7','T','2025-10-17 06:16:13'),(0,0,1004,0,'Y','2025-10-17','17:20:00','17:30:00','','','2','C','2025-10-17 04:45:27'),(0,0,1004,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9925303315','2','T','2025-10-17 06:23:13'),(0,0,1005,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9825314225','2','T','2025-10-17 06:41:14'),(0,0,1007,0,'Y','2025-10-17','17:10:00','17:20:00','','','2','C','2025-10-17 04:45:09'),(0,0,1007,0,'Y','2026-02-14','08:00:00','08:30:00','Followup','9714186335','2','T','2025-10-17 06:55:43'),(0,0,1008,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','8128012128','2','T','2025-10-17 08:19:19'),(0,0,1008,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','8128012128','2','T','2025-10-31 08:43:48'),(0,0,1008,0,'Y','2025-12-15','18:20:00','18:30:00','','8128012128','2','C','2025-12-15 02:00:43'),(0,0,1008,0,'Y','2026-02-13','08:00:00','08:30:00','Followup','8128012128','2','T','2025-12-15 06:32:30'),(0,0,1009,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904791177','4','T','2025-10-17 06:48:43'),(0,0,1010,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6351337981','5','T','2025-10-17 06:30:05'),(0,0,1011,0,'Y','2025-10-17','17:40:00','17:50:00','FV','','2','C','2025-10-17 06:01:43'),(0,0,1011,0,'Y','2025-11-01','08:00:00','08:30:00','Followup','9824081977','2','T','2025-10-17 08:08:05'),(0,0,1011,0,'Y','2025-11-03','16:40:00','16:50:00','','9824081977','2','C','2025-11-03 02:22:39'),(0,0,1011,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','9824081977','2','T','2025-11-03 04:42:01'),(0,0,1012,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9601193999','2','T','2025-10-17 06:59:40'),(0,0,1012,0,'Y','2025-12-02','16:40:00','16:50:00','FV','9601193999','2','C','2025-12-02 03:44:41'),(0,0,1012,0,'Y','2026-01-31','08:00:00','08:30:00','Followup','9601193999','2','T','2025-12-02 05:20:06'),(0,0,1013,0,'Y','2025-11-01','08:00:00','08:30:00','Followup','9979281086','2','T','2025-10-17 08:41:23'),(0,0,1014,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9537353325','5','T','2025-10-17 06:33:11'),(0,0,1015,0,'Y','2025-10-17','17:30:00','17:40:00','','','2','C','2025-10-17 04:45:46'),(0,0,1015,0,'Y','2025-10-27','08:00:00','08:30:00','Followup','6354262524','2','T','2025-10-17 08:28:28'),(0,0,1015,0,'Y','2025-10-27','17:20:00','17:30:00','','6354262524','2','C','2025-10-27 03:34:49'),(0,0,1015,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','6354262524','2','T','2025-10-27 06:04:19'),(0,0,1015,0,'Y','2025-11-19','18:50:00','19:00:00','Fv','6354262524','2','C','2025-11-19 03:14:37'),(0,0,1015,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','6354262524','2','T','2025-11-19 06:25:17'),(0,0,1016,0,'Y','2025-10-24','08:00:00','08:30:00','Followup','9265716942','2','T','2025-10-17 07:29:36'),(0,0,1016,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9265716942','2','T','2025-11-20 06:48:07'),(0,0,1017,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8140476781','2','T','2025-10-30 23:25:28'),(0,0,1017,0,'Y','2025-10-27','08:00:00','08:30:00','Followup','8140476781','2','T','2025-10-17 08:40:52'),(0,0,1017,0,'Y','2025-10-31','10:10:00','10:20:00','Fv','8140476781','2','C','2025-10-30 21:13:27'),(0,0,1017,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','8140476781','2','T','2025-10-31 02:31:57'),(0,0,1018,0,'Y','2025-10-17','18:30:00','18:40:00','','9726853209','4','C','2025-10-17 05:54:53'),(0,0,1018,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','9726853209','4','T','2025-10-17 06:59:33'),(0,0,1019,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8780623465','6','T','2025-10-17 06:37:50'),(0,0,1020,0,'Y','2025-10-17','18:00:00','18:10:00','','9427563244','4','C','2025-10-17 05:53:20'),(0,0,1020,0,'Y','2025-10-31','11:20:00','11:30:00','','9427563244','4','C','2025-10-30 22:29:06'),(0,0,1020,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9427563244','4','T','2025-10-31 00:33:54'),(0,0,1020,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','9427563244','4','T','2025-10-17 08:11:24'),(0,0,1022,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9904325290','2','T','2025-10-17 08:48:33'),(0,0,1022,0,'Y','2025-12-08','12:10:00','12:20:00','Fv','9904325290','2','C','2025-12-07 20:15:46'),(0,0,1022,0,'Y','2026-01-22','08:00:00','08:30:00','Followup','9904325290','2','T','2025-12-08 00:35:29'),(0,0,1023,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662682142','4','T','2025-10-17 06:56:52'),(0,0,1024,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9408612211','4','T','2025-10-17 07:57:47'),(0,0,1024,0,'Y','2025-10-17','18:20:00','18:30:00','','9408612211','4','C','2025-10-17 05:54:25'),(0,0,1025,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726478200','7','T','2025-10-17 07:23:36'),(0,0,1026,0,'Y','2025-10-17','18:00:00','18:10:00','','','2','C','2025-10-17 04:47:15'),(0,0,1026,0,'Y','2025-11-06','08:00:00','08:30:00','Followup','8128555500','2','T','2025-10-17 08:43:29'),(0,0,1026,0,'Y','2025-11-07','12:40:00','12:50:00','Fv','8128555500','2','C','2025-11-06 20:20:55'),(0,0,1026,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','8128555500','2','T','2025-11-07 00:55:44'),(0,0,1026,0,'Y','2025-12-10','17:40:00','17:50:00','','8128555500','2','C','2025-12-10 02:36:58'),(0,0,1026,0,'Y','2026-01-24','08:00:00','08:30:00','Followup','8128555500','2','T','2025-12-10 06:03:20'),(0,0,1027,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7698776340','2','T','2025-12-08 06:23:28'),(0,0,1027,0,'Y','2025-10-17','18:40:00','18:50:00','','','2','C','2025-10-17 04:48:17'),(0,0,1027,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','7698776340','2','T','2025-10-17 07:34:28'),(0,0,1027,0,'Y','2025-11-17','18:10:00','18:20:00','Fv','7698776340','2','C','2025-11-17 03:15:28'),(0,0,1027,0,'Y','2025-12-08','18:20:00','18:30:00','','7698776340','2','C','2025-12-08 02:53:06'),(0,0,1027,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','7698776340','2','T','2025-11-17 05:58:42'),(0,0,1028,0,'Y','2025-11-06','08:00:00','08:30:00','Followup','9824560771','2','T','2025-10-17 08:51:48'),(0,0,1029,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7405322671','2','T','2025-10-17 07:57:29'),(0,0,1029,0,'Y','2025-10-17','18:30:00','18:40:00','','','2','C','2025-10-17 04:48:06'),(0,0,1029,0,'Y','2025-11-08','08:00:00','08:30:00','Followup','7405322671','2','T','2025-10-18 01:25:42'),(0,0,1029,0,'Y','2025-11-11','16:50:00','17:00:00','','7405322671','2','C','2025-11-11 03:24:08'),(0,0,1029,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','7405322671','2','T','2025-11-11 04:43:20'),(0,0,1030,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7990725342','5','T','2025-10-17 07:29:59'),(0,0,1031,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924983018','5','T','2025-10-17 07:36:29'),(0,0,1032,0,'Y','2025-10-17','18:50:00','19:00:00','','','2','C','2025-10-17 04:48:26'),(0,0,1032,0,'Y','2025-11-05','18:50:00','19:00:00','','9687482914','2','C','2025-11-05 02:21:02'),(0,0,1032,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9687482914','2','T','2025-11-05 06:57:33'),(0,0,1032,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9687482914','2','T','2025-10-17 08:07:21'),(0,0,1032,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9687482914','2','T','2025-12-09 07:18:54'),(0,0,1033,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7575080483','4','T','2025-10-17 08:11:16'),(0,0,1035,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9586303502','7','T','2025-10-17 08:24:41'),(0,0,1036,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9537397151','3','T','2025-10-23 00:18:40'),(0,0,1037,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924927271','7','T','2025-12-04 06:11:56'),(0,0,1038,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8238019006','6','T','2025-10-17 09:12:31'),(0,0,1038,0,'Y','2025-11-17','19:50:00','20:00:00','Fv','8238019006','2','B','2025-11-17 03:14:31'),(0,0,1039,0,'Y','2025-10-27','08:00:00','08:30:00','Followup','7046515077','2','T','2025-10-17 08:56:14'),(0,0,1041,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429837333','7','T','2025-10-17 23:52:42'),(0,0,1042,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9205895912','5','T','2025-10-17 23:54:49'),(0,0,1043,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427431889','5','T','2025-10-17 23:55:55'),(0,0,1044,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8347520301','2','T','2025-10-17 23:28:14'),(0,0,1044,0,'Y','2025-11-13','17:50:00','18:00:00','FV','8347520301','2','B','2025-11-13 03:25:13'),(0,0,1044,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','8347520301','2','T','2025-10-18 01:31:46'),(0,0,1044,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','8347520301','2','T','2025-11-12 04:36:39'),(0,0,1045,0,'Y','2025-10-18','12:10:00','12:20:00','Fv','9773025818','2','C','2025-10-17 21:58:53'),(0,0,1045,0,'Y','2025-11-21','10:10:00','10:20:00','','9773025818','2','C','2025-11-20 20:24:21'),(0,0,1045,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9773025818','2','T','2025-10-17 23:40:35'),(0,0,1045,0,'Y','2026-01-20','08:00:00','08:30:00','Followup','9773025818','2','T','2025-11-20 22:23:27'),(0,0,1046,0,'Y','2025-10-28','08:00:00','08:30:00','Followup','8866047775','2','T','2025-10-18 00:01:38'),(0,0,1048,0,'Y','2025-11-07','08:00:00','08:30:00','Followup','8401087705','2','T','2025-10-18 00:06:44'),(0,0,1050,0,'Y','2025-10-18','10:40:00','10:50:00','Ne','9426732611','2','C','2025-10-17 21:51:13'),(0,0,1050,0,'Y','2025-11-07','08:00:00','08:30:00','Followup','9426732611','2','T','2025-10-18 01:12:01'),(0,0,1051,0,'Y','2025-11-15','11:40:00','11:50:00','Fv','9824870352','2','C','2025-11-14 20:22:25'),(0,0,1051,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9824870352','2','T','2025-10-18 03:00:28'),(0,0,1051,0,'Y','2025-12-03','17:10:00','17:20:00','Fv','9824870352','2','C','2025-12-03 02:51:21'),(0,0,1051,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9824870352','2','T','2025-11-14 23:38:29'),(0,0,1051,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9824870352','2','T','2025-12-03 05:35:24'),(0,0,1052,0,'Y','2025-11-25','18:50:00','19:00:00','','9825579193','4','C','2025-11-25 04:46:27'),(0,0,1052,0,'Y','2025-12-08','18:40:00','18:50:00','FC','9825579193','4','B','2025-12-08 04:38:01'),(0,0,1052,0,'Y','2026-01-24','08:00:00','08:30:00','Followup','9825579193','4','T','2025-11-25 06:42:05'),(0,0,1053,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998836350','3','T','2025-10-17 23:41:29'),(0,0,1054,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9574274642','6','T','2025-10-17 23:40:12'),(0,0,1054,0,'Y','2025-11-08','13:40:00','13:50:00','Fv','9574274642','2','B','2025-11-07 20:32:50'),(0,0,1055,0,'Y','2025-10-18','10:50:00','11:00:00','Fv','9664684275','2','C','2025-10-17 21:51:52'),(0,0,1055,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9664684275','2','T','2025-10-17 23:57:35'),(0,0,1055,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9664684275','2','T','2025-12-18 23:35:36'),(0,0,1056,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9664684275','2','T','2025-10-17 23:54:39'),(0,0,1056,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9664684275','2','T','2025-12-18 23:33:02'),(0,0,1057,0,'Y','2025-10-18','12:00:00','12:10:00','Nv','8849090154','2','C','2025-10-17 21:58:21'),(0,0,1057,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','8849090154','2','T','2025-10-18 03:31:36'),(0,0,1058,0,'Y','2025-10-18','11:30:00','11:40:00','Nv','9909172696','2','C','2025-10-17 21:56:18'),(0,0,1058,0,'Y','2025-11-07','08:00:00','08:30:00','Followup','9909172696','2','T','2025-10-18 02:11:44'),(0,0,1059,0,'Y','2025-10-28','08:00:00','08:30:00','Followup','8140872208','2','T','2025-10-18 01:11:27'),(0,0,1060,0,'Y','2025-10-18','11:10:00','11:20:00','Fv','9426447581','2','C','2025-10-17 21:55:11'),(0,0,1060,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9426447581','2','T','2025-10-18 00:55:18'),(0,0,1060,0,'Y','2025-11-24','17:40:00','17:50:00','','9426447581','2','C','2025-11-24 02:34:08'),(0,0,1060,0,'Y','2026-01-03','08:00:00','08:30:00','Followup','9426447581','2','T','2025-11-24 05:39:08'),(0,0,1061,0,'Y','2025-10-18','11:00:00','11:10:00','Nv','9727572911','2','C','2025-10-17 21:54:31'),(0,0,1061,0,'Y','2025-11-07','08:00:00','08:30:00','Followup','9727572911','2','T','2025-10-18 02:44:38'),(0,0,1062,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','7359557200','2','T','2025-10-31 03:18:37'),(0,0,1062,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','7359557200','2','T','2025-10-18 01:37:49'),(0,0,1062,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','7359557200','2','T','2025-11-21 01:02:24'),(0,0,1062,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','7359557200','2','T','2025-12-12 05:34:01'),(0,0,1063,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825329902','3','T','2025-10-18 00:03:56'),(0,0,1065,0,'Y','2025-10-18','11:20:00','11:30:00','Fv','8200459972','2','C','2025-10-17 21:55:41'),(0,0,1065,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','8200459972','2','T','2025-10-18 00:36:21'),(0,0,1066,0,'Y','2025-10-18','11:40:00','11:50:00','Fv','6354017471','2','C','2025-10-17 21:57:08'),(0,0,1066,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','6354017471','2','T','2025-10-18 00:58:15'),(0,0,1066,0,'Y','2025-11-27','17:20:00','17:30:00','Fv','6354017471','2','C','2025-11-27 03:37:43'),(0,0,1066,0,'Y','2026-01-06','08:00:00','08:30:00','Followup','6354017471','2','T','2025-11-27 04:54:02'),(0,0,1067,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7878959565','6','T','2025-10-18 00:17:49'),(0,0,1068,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712197342','5','T','2025-10-18 00:31:59'),(0,0,1068,0,'Y','2026-02-03','08:00:00','08:30:00','Followup','9712197342','5','T','2025-11-05 06:46:11'),(0,0,1070,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','8141939225','2','T','2025-10-18 02:05:32'),(0,0,1071,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9033452307','2','T','2025-10-18 02:10:50'),(0,0,1071,0,'Y','2025-12-19','12:10:00','12:20:00','Fv','9033452307','2','C','2025-12-18 20:34:16'),(0,0,1071,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9033452307','2','T','2025-12-18 23:50:55'),(0,0,1072,0,'Y','2025-10-28','08:00:00','08:30:00','Followup','9925235208','2','T','2025-10-18 02:18:25'),(0,0,1073,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9714890709','2','T','2025-10-18 02:30:33'),(0,0,1074,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','9714761688','2','T','2025-10-18 02:33:54'),(0,0,1075,0,'Y','2025-10-18','12:20:00','12:30:00','Fv','9925182842','2','C','2025-10-17 21:59:34'),(0,0,1075,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9925182842','2','T','2025-10-18 01:28:12'),(0,0,1076,0,'Y','2025-10-18','10:10:00','10:20:00','Fv','9624323356','2','C','2025-10-17 21:46:10'),(0,0,1076,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9624323356','2','T','2025-10-18 02:43:18'),(0,0,1077,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913600111','5','T','2025-10-18 00:37:32'),(0,0,1078,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','8240916820','2','T','2025-10-18 02:48:56'),(0,0,1079,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9712345325','2','T','2025-10-18 03:04:53'),(0,0,1080,0,'Y','2025-10-18','12:50:00','13:00:00','Fv','9925163555','2','C','2025-10-17 22:01:12'),(0,0,1080,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9925163555','2','T','2025-10-18 01:49:21'),(0,0,1081,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426995508','6','T','2025-10-18 01:18:08'),(0,0,1082,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9712765811','2','T','2025-10-18 03:26:47'),(0,0,1082,0,'Y','2025-12-23','11:20:00','11:30:00','Fv','9712765811','2','B','2025-12-22 20:20:37'),(0,0,1083,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725783546','3','T','2025-10-25 08:52:02'),(0,0,1084,0,'Y','2025-10-18','11:50:00','12:00:00','Fv','9712924056','2','C','2025-10-17 21:57:43'),(0,0,1084,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9712924056','2','T','2025-10-18 01:46:32'),(0,0,1085,0,'Y','2025-10-18','12:40:00','12:50:00','Fv','9727871764','2','C','2025-10-17 22:00:36'),(0,0,1085,0,'Y','2025-12-15','12:40:00','12:50:00','Fv','9727871764','2','C','2025-12-14 20:16:48'),(0,0,1085,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9727871764','2','T','2025-10-18 01:52:06'),(0,0,1085,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9727871764','2','T','2025-12-15 01:11:40'),(0,0,1086,0,'Y','2025-10-18','12:30:00','12:40:00','Nv','9510711113','2','C','2025-10-17 22:00:01'),(0,0,1086,0,'Y','2025-11-13','10:20:00','10:30:00','FV','9510711113','2','C','2025-11-12 20:33:13'),(0,0,1086,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9510711113','2','T','2025-10-18 03:39:57'),(0,0,1086,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9510711113','2','T','2025-11-12 22:40:44'),(0,0,1086,0,'Y','2025-12-13','11:40:00','11:50:00','Fv','9510711113','2','C','2025-12-12 20:18:16'),(0,0,1086,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9510711113','2','T','2025-12-13 01:51:39'),(0,0,1087,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9558225122','2','T','2025-10-18 03:30:57'),(0,0,1087,0,'Y','2026-01-31','08:00:00','08:30:00','Followup','9558225122','2','T','2025-12-02 01:44:56'),(0,0,1088,0,'Y','2025-12-02','08:00:00','08:30:00','Followup','9227744337','2','T','2025-10-18 03:38:25'),(0,0,1090,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099817729','7','T','2025-10-18 06:42:48'),(0,0,1091,0,'Y','2025-10-28','08:00:00','08:30:00','Followup','9725983777','2','T','2025-10-18 03:47:20'),(0,0,1092,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849101960','3','T','2025-10-24 00:28:00'),(0,0,1094,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662088753','6','T','2025-10-18 06:00:25'),(0,0,1095,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7698393294','6','T','2025-10-24 00:12:22'),(0,0,1099,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714023296','6','T','2025-10-18 08:04:46'),(0,0,1103,0,'Y','2025-11-01','12:10:00','12:20:00','','9737811911','4','R','2025-11-01 00:24:24'),(0,0,1104,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898278783','4','T','2025-10-27 01:36:35'),(0,0,1106,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898933000','3','T','2025-10-23 00:18:12'),(0,0,1107,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9376643750','5','T','2025-10-31 23:54:10'),(0,0,1109,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9558652620','3','T','2025-10-23 00:30:15'),(0,0,1110,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825107074','3','T','2025-10-30 01:20:09'),(0,0,1111,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9157168328','4','T','2025-11-27 06:25:21'),(0,0,1111,0,'Y','2025-11-27','19:10:00','19:20:00','','9157168328','4','C','2025-11-27 04:43:16'),(0,0,1119,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','9717310584','4','T','2025-10-28 08:10:35'),(0,0,1127,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726204318','6','T','2025-10-27 00:06:11'),(0,0,1128,0,'Y','2025-11-12','16:50:00','17:00:00','Fv','9824482909','2','C','2025-11-12 02:40:11'),(0,0,1128,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9824482909','2','T','2025-11-12 05:06:30'),(0,0,1128,0,'Y','2025-12-12','17:20:00','17:30:00','Fv','9824482909','2','C','2025-12-12 03:05:48'),(0,0,1128,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9824482909','2','T','2025-12-12 06:29:48'),(0,0,1134,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979797788','2','T','2025-11-01 02:10:38'),(0,0,1134,0,'Y','2025-10-23','17:00:00','17:10:00','','','2','C','2025-10-23 02:23:09'),(0,0,1134,0,'Y','2025-11-22','08:00:00','08:30:00','Followup','9979797788','2','T','2025-10-23 07:05:01'),(0,0,1134,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9979797788','2','T','2025-11-13 00:47:59'),(0,0,1134,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9979797788','2','T','2025-12-11 23:57:58'),(0,0,1135,0,'Y','2025-10-23','17:10:00','17:20:00','','','2','R','2025-10-23 02:24:13'),(0,0,1135,0,'Y','2025-11-12','10:20:00','10:30:00','Fv','9723493981','2','C','2025-11-11 20:25:02'),(0,0,1135,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9723493981','2','T','2025-11-11 22:49:23'),(0,0,1136,0,'Y','2025-10-23','17:40:00','17:50:00','','','2','C','2025-10-23 02:25:09'),(0,0,1136,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9979383097','2','T','2025-10-23 07:15:55'),(0,0,1137,0,'Y','2025-10-23','17:20:00','17:30:00','','','2','C','2025-10-23 02:24:42'),(0,0,1137,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9624471067','2','T','2025-10-23 06:39:54'),(0,0,1138,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9106757439','4','T','2025-11-13 01:14:41'),(0,0,1138,0,'Y','2025-11-13','12:50:00','13:00:00','','9106757439','4','C','2025-11-12 23:59:45'),(0,0,1139,0,'Y','2025-11-22','08:00:00','08:30:00','Followup','9879571821','2','T','2025-10-23 07:55:39'),(0,0,1140,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979035762','6','T','2025-10-25 08:15:25'),(0,0,1141,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6354015290','4','T','2025-10-27 07:13:43'),(0,0,1143,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428418634','3','T','2025-10-24 06:50:39'),(0,0,1152,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','7878215189','5','T','2025-10-31 23:59:27'),(0,0,1153,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909700400','5','T','2025-10-24 00:57:36'),(0,0,1154,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8799358354','5','T','2025-10-24 06:48:08'),(0,0,1156,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9016774229','5','T','2025-10-23 23:55:29'),(0,0,1157,0,'Y','2025-10-24','10:20:00','10:30:00','FV','','2','C','2025-10-23 08:03:54'),(0,0,1157,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9167511086','2','T','2025-10-23 23:20:03'),(0,0,1158,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8460084900','3','T','2025-10-31 00:07:52'),(0,0,1159,0,'Y','2025-10-24','10:40:00','10:50:00','FV','','2','C','2025-10-23 08:04:39'),(0,0,1159,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9979883118','2','T','2025-10-23 23:30:12'),(0,0,1159,0,'Y','2025-12-11','11:10:00','11:20:00','Fv','9979883118','2','C','2025-12-10 20:14:29'),(0,0,1159,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9979883118','2','T','2025-12-10 22:19:18'),(0,0,1160,0,'Y','2025-10-24','10:50:00','11:00:00','FV','','2','C','2025-10-23 08:05:30'),(0,0,1160,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','7984423631','2','T','2025-10-23 23:37:00'),(0,0,1161,0,'Y','2025-10-24','11:40:00','11:50:00','FV','','2','C','2025-10-23 08:06:43'),(0,0,1161,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9723500913','2','T','2025-10-23 23:43:48'),(0,0,1161,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9723500913','2','T','2025-12-01 00:24:50'),(0,0,1162,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849414411','5','T','2025-10-23 23:48:00'),(0,0,1163,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428202215','3','T','2025-10-23 23:08:09'),(0,0,1164,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898329941','5','T','2025-10-23 23:48:47'),(0,0,1165,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879838779','5','T','2025-10-24 00:38:03'),(0,0,1166,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9157564662','3','T','2025-10-24 09:16:38'),(0,0,1167,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662177995','5','T','2025-10-23 23:54:05'),(0,0,1168,0,'Y','2025-10-24','10:10:00','10:20:00','FV','','2','C','2025-10-23 08:03:37'),(0,0,1168,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9537239617','2','T','2025-10-24 00:25:23'),(0,0,1169,0,'Y','2025-10-24','12:10:00','12:20:00','RNV','','2','C','2025-10-23 08:08:03'),(0,0,1169,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9725437411','2','T','2025-10-24 01:23:17'),(0,0,1169,0,'Y','2025-11-04','18:10:00','18:20:00','','9725437411','2','C','2025-11-04 02:07:25'),(0,0,1169,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9725437411','2','T','2025-11-04 06:01:24'),(0,0,1169,0,'Y','2025-12-05','17:10:00','17:20:00','FV','9725437411','2','C','2025-12-05 03:17:34'),(0,0,1169,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9725437411','2','T','2025-12-05 04:52:58'),(0,0,1170,0,'Y','2025-10-24','11:00:00','11:10:00','NV','','2','C','2025-10-23 08:05:44'),(0,0,1170,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9099535419','2','T','2025-10-24 01:49:17'),(0,0,1170,0,'Y','2025-11-13','11:20:00','11:30:00','FV','9099535419','2','C','2025-11-12 20:38:44'),(0,0,1170,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9099535419','2','T','2025-11-12 23:03:23'),(0,0,1170,0,'Y','2025-12-13','10:10:00','10:20:00','Fv','9099535419','2','C','2025-12-12 20:11:07'),(0,0,1170,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9099535419','2','T','2025-12-12 22:26:44'),(0,0,1171,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904893378','5','T','2025-10-24 00:59:00'),(0,0,1172,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904893378','3','T','2025-10-24 00:26:20'),(0,0,1173,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099662233','3','T','2025-10-24 07:02:36'),(0,0,1174,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723791011','5','T','2025-10-24 01:05:21'),(0,0,1175,0,'Y','2025-10-24','12:20:00','12:30:00','Fv','','2','C','2025-10-23 21:35:48'),(0,0,1175,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9825139110','2','T','2025-10-24 02:15:40'),(0,0,1175,0,'Y','2025-11-04','10:40:00','10:50:00','Fv','9825139110','2','B','2025-11-03 20:23:47'),(0,0,1176,0,'Y','2025-10-24','12:50:00','13:00:00','Rnv','9978544591','2','C','2025-10-23 21:45:22'),(0,0,1176,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9978544591','2','T','2025-10-24 05:54:48'),(0,0,1176,0,'Y','2025-11-04','11:10:00','11:20:00','Fv','9978544591','2','B','2025-11-03 20:25:15'),(0,0,1177,0,'Y','2025-10-24','11:20:00','11:30:00','FV','','2','C','2025-10-23 08:06:07'),(0,0,1177,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','7359646981','2','T','2025-10-24 01:14:26'),(0,0,1177,0,'Y','2025-11-26','12:50:00','13:00:00','Fv','7359646981','2','C','2025-11-25 20:46:13'),(0,0,1177,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','7359646981','2','T','2025-11-26 00:29:10'),(0,0,1179,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8980554949','3','T','2025-10-24 09:17:54'),(0,0,1180,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426832990','3','T','2025-10-24 09:18:41'),(0,0,1181,0,'Y','2025-10-24','16:40:00','16:50:00','Fv','','2','C','2025-10-24 02:29:36'),(0,0,1181,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','6356048339','2','T','2025-10-24 05:51:47'),(0,0,1182,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426267360','5','T','2025-10-24 06:28:49'),(0,0,1183,0,'Y','2025-10-24','17:20:00','17:30:00','Fv','','2','C','2025-10-24 02:31:10'),(0,0,1183,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9099699595','2','T','2025-10-24 06:32:50'),(0,0,1184,0,'Y','2025-10-24','18:20:00','18:30:00','Fv','','2','C','2025-10-24 02:32:50'),(0,0,1184,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9723321320','2','T','2025-10-24 06:03:49'),(0,0,1184,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9723321320','2','T','2025-12-02 22:55:32'),(0,0,1185,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8128046478','3','T','2025-10-24 07:05:25'),(0,0,1186,0,'Y','2025-10-24','17:50:00','18:00:00','NE','','2','C','2025-10-24 02:31:44'),(0,0,1186,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9033343955','2','T','2025-10-24 07:25:59'),(0,0,1187,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200868668','2','T','2025-10-24 06:44:13'),(0,0,1187,0,'Y','2025-10-24','17:10:00','17:20:00','Fv','','2','C','2025-10-24 02:30:46'),(0,0,1187,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','8200868668','2','T','2025-10-24 07:44:30'),(0,0,1187,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','8200868668','2','T','2025-11-14 07:22:14'),(0,0,1187,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','8200868668','2','T','2025-12-03 07:09:55'),(0,0,1188,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723355740','2','T','2025-10-24 07:37:01'),(0,0,1188,0,'Y','2025-10-24','17:00:00','17:10:00','NV','','2','C','2025-10-24 02:30:21'),(0,0,1189,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9173168524','3','T','2025-10-24 09:15:57'),(0,0,1190,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7990528329','5','T','2025-10-24 06:52:13'),(0,0,1192,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725601418','3','T','2025-10-24 09:15:23'),(0,0,1193,0,'Y','2025-10-24','18:40:00','18:50:00','Fv','','2','C','2025-10-24 02:33:20'),(0,0,1193,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9824225939','2','T','2025-10-24 07:53:03'),(0,0,1193,0,'Y','2026-01-24','08:00:00','08:30:00','Followup','9824225939','2','T','2025-11-24 23:18:58'),(0,0,1194,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9920593754','2','T','2025-10-24 08:01:08'),(0,0,1195,0,'Y','2025-11-13','19:30:00','19:40:00','','7574917711','4','C','2025-11-13 04:23:51'),(0,0,1195,0,'Y','2025-12-12','18:50:00','19:00:00','','7574917711','4','C','2025-12-12 04:11:10'),(0,0,1195,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','7574917711','4','T','2025-11-13 07:25:09'),(0,0,1195,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','7574917711','4','T','2025-12-12 07:16:35'),(0,0,1196,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638890251','5','T','2025-10-24 07:31:43'),(0,0,1197,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427220635','3','T','2025-10-24 07:48:51'),(0,0,1199,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160069335','3','T','2025-10-24 08:08:41'),(0,0,1200,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428890422','5','T','2025-10-24 08:03:41'),(0,0,1201,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9173471916','3','T','2025-10-24 09:14:53'),(0,0,1205,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925074388','6','T','2025-10-25 00:05:51'),(0,0,1206,0,'Y','2025-10-25','10:20:00','10:30:00','FV','','2','C','2025-10-24 21:24:03'),(0,0,1206,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','7990579909','2','T','2025-10-24 23:08:45'),(0,0,1207,0,'Y','2025-10-25','10:40:00','10:50:00','NE','','2','C','2025-10-24 21:24:42'),(0,0,1207,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9727332915','2','T','2025-10-25 01:19:43'),(0,0,1207,0,'Y','2025-11-25','11:20:00','11:30:00','Fv','9727332915','2','B','2025-11-24 20:25:04'),(0,0,1207,0,'Y','2025-12-09','12:40:00','12:50:00','','9727332915','2','C','2025-12-08 20:20:52'),(0,0,1207,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9727332915','2','T','2025-12-09 00:48:02'),(0,0,1208,0,'Y','2025-10-25','11:00:00','11:10:00','NV','','2','C','2025-10-24 21:25:24'),(0,0,1208,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','6356843868','2','T','2025-10-25 01:45:38'),(0,0,1208,0,'Y','2025-11-24','16:40:00','16:50:00','','6356843868','2','C','2025-11-24 02:32:47'),(0,0,1208,0,'Y','2026-01-03','08:00:00','08:30:00','Followup','6356843868','2','T','2025-11-24 04:35:24'),(0,0,1209,0,'Y','2025-10-25','12:40:00','12:50:00','FV','','2','C','2025-10-24 21:28:27'),(0,0,1209,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','8141555138','2','T','2025-10-24 23:36:19'),(0,0,1209,0,'Y','2026-02-14','08:00:00','08:30:00','Followup','8141555138','2','T','2025-12-01 02:19:08'),(0,0,1210,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','9925360503','2','T','2025-10-24 23:43:48'),(0,0,1210,0,'Y','2025-11-26','10:10:00','10:20:00','Fv','9925360503','2','C','2025-11-25 20:28:39'),(0,0,1210,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9925360503','2','T','2025-11-25 22:56:42'),(0,0,1211,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8055030977','6','T','2025-10-25 01:04:48'),(0,0,1212,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9428890506','2','T','2025-10-25 00:05:57'),(0,0,1213,0,'Y','2025-10-25','11:40:00','11:50:00','FV','','2','C','2025-10-24 21:27:08'),(0,0,1213,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9723320346','2','T','2025-10-25 00:01:39'),(0,0,1214,0,'Y','2025-10-25','10:30:00','10:40:00','NV','','2','C','2025-10-24 21:24:24'),(0,0,1214,0,'Y','2025-11-14','08:00:00','08:30:00','Followup','8200173578','2','T','2025-10-25 01:52:50'),(0,0,1215,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849743441','3','T','2025-10-25 01:15:14'),(0,0,1216,0,'Y','2025-10-25','10:10:00','10:20:00','FV','','2','C','2025-10-24 21:23:42'),(0,0,1216,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9426167880','2','T','2025-10-25 00:14:56'),(0,0,1217,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924756835','6','T','2025-10-25 00:05:14'),(0,0,1218,0,'Y','2025-10-30','08:00:00','08:30:00','Followup','9974344348','2','T','2025-10-25 01:28:22'),(0,0,1218,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','9974344348','2','T','2025-10-25 00:26:34'),(0,0,1218,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9974344348','2','T','2025-10-30 07:46:30'),(0,0,1219,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974327500','5','T','2025-10-25 00:24:12'),(0,0,1220,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998206157','5','T','2025-10-25 00:09:25'),(0,0,1221,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9374128002','5','T','2025-10-25 00:16:27'),(0,0,1222,0,'Y','2025-10-25','11:10:00','11:20:00','FV','','2','C','2025-10-24 21:25:42'),(0,0,1222,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9662716670','2','T','2025-10-25 00:21:02'),(0,0,1222,0,'Y','2025-12-06','11:10:00','11:20:00','Fv','9662716670','2','C','2025-12-05 20:20:18'),(0,0,1222,0,'Y','2026-02-04','08:00:00','08:30:00','Followup','9662716670','2','T','2025-12-05 23:31:24'),(0,0,1223,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9374128002','5','T','2025-10-25 00:13:30'),(0,0,1224,0,'Y','2025-10-25','11:50:00','12:00:00','FV','','2','C','2025-10-24 21:27:22'),(0,0,1224,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9825209829','2','T','2025-10-25 00:30:31'),(0,0,1225,0,'Y','2025-10-25','11:30:00','11:40:00','NV','','2','C','2025-10-24 21:26:41'),(0,0,1225,0,'Y','2025-11-14','08:00:00','08:30:00','Followup','9998515313','2','T','2025-10-25 01:49:26'),(0,0,1225,0,'Y','2025-11-28','16:50:00','17:00:00','','9998515313','2','C','2025-11-28 02:27:33'),(0,0,1225,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9998515313','2','T','2025-11-28 04:37:07'),(0,0,1226,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909990363','5','T','2025-10-25 00:20:57'),(0,0,1227,0,'Y','2025-10-25','12:20:00','12:30:00','FV','','2','C','2025-10-24 21:27:57'),(0,0,1227,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9879500795','2','T','2025-10-25 00:45:48'),(0,0,1227,0,'Y','2025-11-24','12:10:00','12:20:00','Fv','9879500795','2','C','2025-11-23 20:27:14'),(0,0,1227,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9879500795','2','T','2025-11-23 23:56:30'),(0,0,1228,0,'Y','2025-11-14','08:00:00','08:30:00','Followup','9898100002','2','T','2025-10-25 02:38:39'),(0,0,1228,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9898100002','2','T','2025-11-13 01:44:42'),(0,0,1229,0,'Y','2025-11-14','08:00:00','08:30:00','Followup','9824235060','2','T','2025-10-25 02:18:18'),(0,0,1229,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9824235060','2','T','2025-11-19 01:17:23'),(0,0,1230,0,'Y','2025-10-25','12:00:00','12:10:00','NV','8200553189','2','C','2025-10-24 22:06:06'),(0,0,1230,0,'Y','2025-10-30','08:00:00','08:30:00','Followup','8200553189','2','T','2025-10-25 00:58:47'),(0,0,1230,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','8200553189','2','T','2025-10-25 02:34:56'),(0,0,1230,0,'Y','2025-11-04','12:20:00','12:30:00','Fv','8200553189','2','C','2025-11-03 20:29:07'),(0,0,1230,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','8200553189','2','T','2025-11-03 23:58:28'),(0,0,1231,0,'Y','2025-10-30','08:00:00','08:30:00','Followup','9466200701','2','T','2025-10-25 01:14:06'),(0,0,1232,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9558213240','5','T','2025-10-25 00:35:00'),(0,0,1233,0,'Y','2025-10-25','12:10:00','12:20:00','FV','','2','C','2025-10-24 21:27:39'),(0,0,1233,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','8000677387','2','T','2025-10-25 01:18:17'),(0,0,1233,0,'Y','2026-01-23','08:00:00','08:30:00','Followup','8000677387','2','T','2025-11-24 01:13:02'),(0,0,1234,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9737754654','5','T','2025-10-25 00:59:37'),(0,0,1235,0,'Y','2025-10-25','12:50:00','13:00:00','FV','','2','C','2025-10-24 21:28:41'),(0,0,1235,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9979238440','2','T','2025-10-25 01:48:42'),(0,0,1236,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998188469','3','T','2025-10-25 01:23:56'),(0,0,1237,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824336332','5','T','2025-10-25 01:42:35'),(0,0,1238,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','9773086924','2','T','2025-10-25 02:27:32'),(0,0,1239,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925055426','3','T','2025-10-25 08:56:53'),(0,0,1240,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898789812','3','T','2025-10-25 08:13:23'),(0,0,1241,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099375402','2','T','2025-10-25 02:53:31'),(0,0,1242,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998003357','3','T','2025-10-25 08:56:21'),(0,0,1243,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727635435','3','T','2025-10-25 07:36:05'),(0,0,1244,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7990119027','3','T','2025-10-25 07:51:59'),(0,0,1245,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9724909933','3','T','2025-10-25 08:56:01'),(0,0,1246,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913465324','6','T','2025-10-25 07:17:25'),(0,0,1247,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099938380','6','T','2025-10-25 07:28:53'),(0,0,1248,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8153951321','6','T','2025-10-25 07:25:03'),(0,0,1249,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8000054595','3','T','2025-10-25 08:06:47'),(0,0,1251,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9590179917','3','T','2025-10-25 08:21:38'),(0,0,1253,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9925284314','5','T','2025-11-02 23:00:29'),(0,0,1255,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9723241777','4','T','2025-10-26 23:23:17'),(0,0,1256,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427751261','4','T','2025-10-27 01:46:58'),(0,0,1257,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9296001001','4','T','2025-10-27 00:05:12'),(0,0,1259,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7567544012','4','T','2025-10-27 00:03:54'),(0,0,1260,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8469180076','4','T','2025-10-27 00:04:25'),(0,0,1261,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6352315302','4','T','2025-10-27 00:20:25'),(0,0,1262,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9558815411','2','T','2025-10-26 23:38:51'),(0,0,1263,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6354587773','4','T','2025-10-26 23:27:34'),(0,0,1263,0,'Y','2025-10-27','12:00:00','12:10:00','FC','','4','C','2025-10-26 21:57:55'),(0,0,1264,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9537977234','3','T','2025-11-02 22:12:37'),(0,0,1265,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725313098','6','T','2025-10-26 23:41:14'),(0,0,1266,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727626688','7','T','2025-10-27 00:03:55'),(0,0,1267,0,'Y','2025-10-27','11:10:00','11:20:00','Fv','','2','C','2025-10-26 21:42:24'),(0,0,1267,0,'Y','2025-12-10','12:50:00','13:00:00','Fv','9099038842','2','C','2025-12-09 20:18:55'),(0,0,1267,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9099038842','2','T','2025-10-26 23:38:03'),(0,0,1267,0,'Y','2026-03-10','08:00:00','08:30:00','Followup','9099038842','2','T','2025-12-10 00:33:11'),(0,0,1268,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7041702000','3','T','2025-10-26 23:25:37'),(0,0,1269,0,'Y','2025-10-27','11:00:00','11:10:00','Nv','','2','C','2025-10-26 21:42:01'),(0,0,1269,0,'Y','2025-11-06','08:00:00','08:30:00','Followup','8128922546','2','T','2025-10-27 02:15:21'),(0,0,1269,0,'Y','2025-11-11','11:40:00','11:50:00','Fv','8128922546','2','C','2025-11-10 20:30:09'),(0,0,1269,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','8128922546','2','T','2025-11-10 23:43:16'),(0,0,1270,0,'Y','2025-10-27','12:00:00','12:10:00','Nv','','2','C','2025-10-26 21:45:14'),(0,0,1270,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9824651387','2','T','2025-10-27 00:27:49'),(0,0,1271,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','7990286062','2','T','2025-10-27 02:44:03'),(0,0,1271,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','7990286062','2','T','2025-11-30 23:22:02'),(0,0,1272,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9527502085','2','T','2025-10-27 02:35:22'),(0,0,1272,0,'Y','2025-10-27','10:30:00','10:40:00','Nv','','2','C','2025-10-26 21:36:29'),(0,0,1273,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638386670','7','T','2025-10-27 00:04:09'),(0,0,1274,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9548648870','2','T','2025-10-27 02:49:55'),(0,0,1275,0,'Y','2025-10-27','10:40:00','10:50:00','Fv','','2','C','2025-10-26 21:36:54'),(0,0,1275,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9998888635','2','T','2025-10-26 23:42:45'),(0,0,1275,0,'Y','2025-11-21','11:10:00','11:20:00','','9998888635','2','C','2025-11-20 20:26:21'),(0,0,1275,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9998888635','2','T','2025-11-20 23:48:51'),(0,0,1276,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726371737','4','T','2025-10-26 23:57:39'),(0,0,1276,0,'Y','2025-11-12','11:00:00','11:10:00','','9726371737','4','C','2025-11-11 21:11:41'),(0,0,1276,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9726371737','4','T','2025-11-11 23:14:51'),(0,0,1277,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200717135','5','T','2025-10-26 23:31:19'),(0,0,1278,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9898998234','2','T','2025-10-27 01:02:34'),(0,0,1279,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879221630','4','T','2025-10-27 00:29:50'),(0,0,1279,0,'Y','2025-10-27','11:30:00','11:40:00','FC','','4','C','2025-10-26 21:57:06'),(0,0,1279,0,'Y','2025-12-01','18:00:00','18:10:00','Fc','9879221630','4','C','2025-12-01 01:05:51'),(0,0,1279,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9879221630','4','T','2025-12-01 06:42:37'),(0,0,1280,0,'Y','2025-11-06','08:00:00','08:30:00','Followup','9913899143','2','T','2025-10-27 02:22:32'),(0,0,1280,0,'Y','2025-11-25','11:10:00','11:20:00','Fv','9913899143','2','C','2025-11-24 20:24:50'),(0,0,1280,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9913899143','2','T','2025-11-24 22:32:44'),(0,0,1281,0,'Y','2025-10-27','10:10:00','10:20:00','Fv','','2','C','2025-10-26 21:35:01'),(0,0,1281,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9979655845','2','T','2025-10-27 03:28:49'),(0,0,1281,0,'Y','2025-11-26','11:50:00','12:00:00','Fv','9979655845','2','C','2025-11-25 20:38:14'),(0,0,1281,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9979655845','2','T','2025-11-25 23:36:22'),(0,0,1282,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913242899','4','T','2025-10-27 00:52:01'),(0,0,1282,0,'Y','2025-12-16','12:10:00','12:20:00','','9913242899','4','C','2025-12-15 22:17:23'),(0,0,1282,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9913242899','4','T','2025-12-15 23:30:12'),(0,0,1283,0,'Y','2025-11-01','08:00:00','08:30:00','Followup','9426401995','2','T','2025-10-27 01:10:40'),(0,0,1283,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9426401995','2','T','2025-10-31 00:14:42'),(0,0,1284,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898605642','4','T','2025-10-27 00:38:55'),(0,0,1284,0,'Y','2025-10-27','11:10:00','11:20:00','FC','','4','C','2025-10-26 21:54:54'),(0,0,1284,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9898605642','4','T','2025-11-20 00:51:08'),(0,0,1285,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898540692','4','T','2025-10-27 01:09:21'),(0,0,1286,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8980237562','2','T','2025-10-27 00:00:38'),(0,0,1286,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','8980237562','2','T','2025-11-05 22:46:58'),(0,0,1287,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723894391','5','T','2025-10-27 00:06:39'),(0,0,1288,0,'Y','2025-10-27','11:30:00','11:40:00','Nv','','2','C','2025-10-26 21:44:15'),(0,0,1288,0,'Y','2025-11-11','08:00:00','08:30:00','Followup','9909947575','2','T','2025-10-27 02:18:28'),(0,0,1288,0,'Y','2025-11-11','11:10:00','11:20:00','Fv','9909947575','2','C','2025-11-10 20:24:11'),(0,0,1288,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9909947575','2','T','2025-11-10 23:14:11'),(0,0,1289,0,'Y','2025-10-27','13:00:00','13:10:00','Nv','9173702225','2','C','2025-10-26 23:06:36'),(0,0,1289,0,'Y','2025-11-06','08:00:00','08:30:00','Followup','9173702225','2','T','2025-10-27 02:52:04'),(0,0,1289,0,'Y','2025-11-06','10:20:00','10:30:00','Fv','9173702225','2','C','2025-11-05 20:15:00'),(0,0,1289,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9173702225','2','T','2025-11-05 23:01:23'),(0,0,1289,0,'Y','2026-01-20','08:00:00','08:30:00','Followup','9173702225','2','T','2025-12-06 01:36:51'),(0,0,1290,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','7874578343','2','T','2025-10-27 01:52:35'),(0,0,1291,0,'Y','2025-10-27','11:20:00','11:30:00','Fv','','2','C','2025-10-26 21:42:51'),(0,0,1291,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9724456590','2','T','2025-10-27 00:16:27'),(0,0,1292,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925819515','3','T','2025-10-26 23:58:01'),(0,0,1293,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','8238366344','2','T','2025-10-27 02:14:32'),(0,0,1294,0,'Y','2025-10-27','10:20:00','10:30:00','Fv','','2','C','2025-10-26 21:35:45'),(0,0,1294,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','8511151119','2','T','2025-10-27 01:58:13'),(0,0,1294,0,'Y','2026-01-22','08:00:00','08:30:00','Followup','8511151119','2','T','2025-12-13 01:41:45'),(0,0,1296,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849607093','3','T','2025-10-27 01:30:44'),(0,0,1297,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979706445','4','T','2025-10-27 01:18:49'),(0,0,1297,0,'Y','2025-10-27','12:20:00','12:30:00','FC','','4','C','2025-10-26 21:58:32'),(0,0,1297,0,'Y','2025-12-06','12:20:00','12:30:00','FC','9979706445','4','C','2025-12-05 21:54:58'),(0,0,1297,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9979706445','4','T','2025-12-06 00:48:02'),(0,0,1298,0,'Y','2025-10-27','11:40:00','11:50:00','Fv','','2','C','2025-10-26 21:44:34'),(0,0,1298,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9825918537','2','T','2025-10-27 00:31:02'),(0,0,1298,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9825918537','2','T','2025-12-09 06:34:40'),(0,0,1299,0,'Y','2025-10-27','11:50:00','12:00:00','Fv','','2','C','2025-10-26 21:44:54'),(0,0,1299,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9173373742','2','T','2025-10-27 00:55:43'),(0,0,1299,0,'Y','2025-11-26','12:40:00','12:50:00','Fv','9173373742','2','B','2025-11-25 20:45:59'),(0,0,1299,0,'Y','2025-11-28','11:10:00','11:20:00','Fv','9173373742','2','C','2025-11-27 20:11:57'),(0,0,1299,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9173373742','2','T','2025-11-27 23:22:17'),(0,0,1300,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725783546','4','T','2025-10-27 00:51:13'),(0,0,1301,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9574538332','4','T','2025-10-27 01:36:25'),(0,0,1302,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8511790749','5','T','2025-10-27 00:37:17'),(0,0,1302,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','8511790749','5','T','2025-11-01 00:28:43'),(0,0,1302,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','8511790749','5','T','2025-12-09 23:11:48'),(0,0,1303,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8401159929','4','T','2025-10-27 01:25:34'),(0,0,1303,0,'Y','2025-10-27','11:50:00','12:00:00','FC','','4','C','2025-10-26 21:57:30'),(0,0,1304,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7405984627','6','T','2025-10-27 00:43:14'),(0,0,1305,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426479687','4','T','2025-10-27 01:53:35'),(0,0,1306,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427255260','4','T','2025-10-27 01:45:34'),(0,0,1306,0,'Y','2025-10-27','12:40:00','12:50:00','FC','','4','C','2025-10-26 22:00:55'),(0,0,1307,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8000656118','3','T','2025-10-27 01:18:50'),(0,0,1308,0,'Y','2025-10-27','12:20:00','12:30:00','Fv','','2','C','2025-10-26 21:45:49'),(0,0,1308,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9714090076','2','T','2025-10-27 03:30:24'),(0,0,1309,0,'Y','2025-10-27','12:30:00','12:40:00','Nv','','2','C','2025-10-26 21:46:03'),(0,0,1309,0,'Y','2025-11-11','08:00:00','08:30:00','Followup','8511158471','2','T','2025-10-27 03:41:42'),(0,0,1310,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6352365056','2','T','2025-10-27 03:14:41'),(0,0,1311,0,'Y','2025-10-27','12:50:00','13:00:00','Fv','','2','C','2025-10-26 21:46:44'),(0,0,1311,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9979467975','2','T','2025-10-27 02:07:05'),(0,0,1312,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7698080084','4','T','2025-10-27 02:01:44'),(0,0,1312,0,'Y','2025-11-11','11:50:00','12:00:00','','7698080084','4','C','2025-11-10 22:02:26'),(0,0,1312,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','7698080084','4','T','2025-11-11 00:16:15'),(0,0,1313,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428035809','4','T','2025-10-27 02:18:36'),(0,0,1313,0,'Y','2025-10-27','18:20:00','18:30:00','','9428035809','4','B','2025-10-27 05:45:02'),(0,0,1313,0,'Y','2025-11-19','11:30:00','11:40:00','','9428035809','4','C','2025-11-18 21:02:25'),(0,0,1313,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9428035809','4','T','2025-12-01 07:32:00'),(0,0,1313,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9428035809','4','T','2025-11-19 06:30:31'),(0,0,1314,0,'Y','2026-02-24','08:00:00','08:30:00','Followup','9825385323','2','T','2025-10-27 02:42:36'),(0,0,1315,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904594472','3','T','2025-11-05 00:21:46'),(0,0,1316,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9909122999','2','T','2025-10-27 03:26:10'),(0,0,1316,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9909122999','2','T','2025-11-17 07:37:09'),(0,0,1316,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9909122999','2','T','2025-12-19 04:45:27'),(0,0,1317,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824290449','2','T','2025-10-27 03:05:45'),(0,0,1319,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725781745','4','T','2025-10-27 07:11:18'),(0,0,1319,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9725781745','4','T','2025-12-12 23:22:35'),(0,0,1320,0,'Y','2025-10-27','16:30:00','16:40:00','NV','','2','C','2025-10-27 03:33:34'),(0,0,1320,0,'Y','2025-11-05','18:20:00','18:30:00','','9824656257','2','C','2025-11-05 02:20:21'),(0,0,1320,0,'Y','2025-11-06','08:00:00','08:30:00','Followup','9824656257','2','T','2025-10-27 07:07:06'),(0,0,1320,0,'Y','2025-11-24','16:50:00','17:00:00','','9824656257','2','C','2025-11-24 02:32:53'),(0,0,1320,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9824656257','2','T','2025-11-24 04:51:32'),(0,0,1320,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9824656257','2','T','2025-11-05 06:11:05'),(0,0,1321,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9824656257','2','T','2025-10-27 05:33:19'),(0,0,1322,0,'Y','2025-11-11','08:00:00','08:30:00','Followup','9687088165','2','T','2025-10-27 07:54:44'),(0,0,1323,0,'Y','2025-10-27','16:50:00','17:00:00','FV','','2','C','2025-10-27 03:34:11'),(0,0,1323,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','6357304219','2','T','2025-10-27 05:53:49'),(0,0,1323,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','6357304219','2','T','2025-11-02 23:50:41'),(0,0,1324,0,'Y','2025-10-27','17:00:00','17:10:00','NV','','2','C','2025-10-27 03:34:34'),(0,0,1324,0,'Y','2025-11-06','08:00:00','08:30:00','Followup','7990756733','2','T','2025-10-27 08:15:52'),(0,0,1324,0,'Y','2025-11-06','17:50:00','18:00:00','','7990756733','2','C','2025-11-06 02:53:22'),(0,0,1324,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','7990756733','2','T','2025-11-06 05:05:07'),(0,0,1325,0,'Y','2025-10-27','17:40:00','17:50:00','FV','','2','C','2025-10-27 03:35:41'),(0,0,1325,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9727042444','2','T','2025-10-27 06:21:54'),(0,0,1325,0,'Y','2025-12-11','16:50:00','17:00:00','Fv','9727042444','2','C','2025-12-11 03:04:23'),(0,0,1325,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9727042444','2','T','2025-12-11 05:15:05'),(0,0,1326,0,'Y','2025-10-27','18:30:00','18:40:00','NV','','2','C','2025-10-27 03:37:31'),(0,0,1326,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9428701470','2','T','2025-10-27 08:42:52'),(0,0,1326,0,'Y','2025-11-20','12:40:00','12:50:00','Fv','9428701470','2','C','2025-11-19 20:28:07'),(0,0,1326,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9428701487','2','T','2025-11-20 00:45:04'),(0,0,1327,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426249082','3','T','2025-10-27 06:40:54'),(0,0,1328,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979437752','6','T','2025-10-27 06:36:17'),(0,0,1329,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9900298789','2','T','2025-10-27 06:47:17'),(0,0,1330,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9900298789','2','T','2025-10-27 06:51:54'),(0,0,1330,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9900298789','2','T','2025-10-27 08:19:29'),(0,0,1331,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9824993168','2','T','2025-10-27 07:04:54'),(0,0,1332,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638101206','5','T','2025-10-27 06:55:18'),(0,0,1334,0,'Y','2025-10-27','17:50:00','18:00:00','NE','','2','C','2025-10-27 03:36:05'),(0,0,1334,0,'Y','2025-11-06','08:00:00','08:30:00','Followup','8866415869','2','T','2025-10-27 07:13:15'),(0,0,1335,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6353729134','5','T','2025-10-27 07:00:35'),(0,0,1336,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8460209107','4','T','2025-10-27 07:21:39'),(0,0,1337,0,'Y','2025-10-27','18:50:00','19:00:00','FV','','2','C','2025-10-27 04:05:36'),(0,0,1337,0,'Y','2025-11-26','16:40:00','16:50:00','','9879423511','2','C','2025-11-26 03:13:29'),(0,0,1337,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9879423511','2','T','2025-10-27 07:19:42'),(0,0,1337,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9879423511','2','T','2025-11-26 04:32:26'),(0,0,1338,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9427083049','2','T','2025-10-27 07:30:49'),(0,0,1338,0,'Y','2025-11-03','10:40:00','10:50:00','Fv','9427083049','2','C','2025-11-02 20:18:52'),(0,0,1338,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9427083049','2','T','2025-11-03 00:28:58'),(0,0,1339,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879110704','5','T','2025-10-27 07:08:07'),(0,0,1340,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9516291199','5','T','2025-10-27 07:27:53'),(0,0,1340,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','9516291199','5','T','2025-12-18 06:32:13'),(0,0,1341,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6353903257','6','T','2025-10-27 07:47:02'),(0,0,1342,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824427099','4','T','2025-10-27 07:28:07'),(0,0,1342,0,'Y','2025-10-27','18:10:00','18:20:00','','9824427099','4','C','2025-10-27 05:44:03'),(0,0,1343,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427158728','4','T','2025-10-27 08:20:34'),(0,0,1343,0,'Y','2025-10-27','18:30:00','18:40:00','','9427158728','4','C','2025-10-27 05:47:09'),(0,0,1343,0,'Y','2025-10-31','18:20:00','18:30:00','','9427158728','4','C','2025-10-31 05:21:39'),(0,0,1344,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9558447443','4','T','2025-10-27 08:20:45'),(0,0,1344,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9558447443','4','T','2025-12-15 06:23:43'),(0,0,1345,0,'Y','2025-11-06','08:00:00','08:30:00','Followup','9978917451','2','T','2025-10-27 08:46:31'),(0,0,1345,0,'Y','2025-11-07','18:40:00','18:50:00','','9978917451','2','C','2025-11-07 02:26:13'),(0,0,1345,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9978917451','2','T','2025-11-07 06:39:30'),(0,0,1346,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998544738','3','T','2025-10-27 08:27:40'),(0,0,1347,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9822278148','2','T','2025-10-27 08:18:17'),(0,0,1348,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6353674878','4','T','2025-10-27 08:24:08'),(0,0,1348,0,'Y','2025-10-27','18:50:00','19:00:00','','6353674878','4','C','2025-10-27 05:49:08'),(0,0,1349,0,'Y','2025-11-01','08:00:00','08:30:00','Followup','7567689689','2','T','2025-10-27 08:29:31'),(0,0,1349,0,'Y','2025-11-06','18:20:00','18:30:00','','7567689689','2','B','2025-11-06 02:54:17'),(0,0,1349,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','7567689689','2','T','2025-11-07 23:57:55'),(0,0,1350,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879695085','4','T','2025-10-27 08:20:25'),(0,0,1351,0,'Y','2025-10-27','18:40:00','18:50:00','FV','','2','C','2025-10-27 03:37:47'),(0,0,1351,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9898845753','2','T','2025-10-27 08:01:56'),(0,0,1351,0,'Y','2025-12-09','18:40:00','18:50:00','Fv','9898845753','2','C','2025-12-09 03:22:40'),(0,0,1351,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9898845753','2','T','2025-12-09 06:52:42'),(0,0,1352,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426480011','5','T','2025-10-27 07:49:56'),(0,0,1353,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9825794950','2','T','2025-10-27 09:01:02'),(0,0,1353,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9825794950','2','T','2025-11-20 07:19:00'),(0,0,1354,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9428201212','2','T','2025-10-27 09:10:54'),(0,0,1355,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824949973','4','T','2025-10-27 08:30:51'),(0,0,1355,0,'Y','2025-10-27','19:40:00','19:50:00','','9824949973','4','C','2025-10-27 05:51:15'),(0,0,1356,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998815753','4','T','2025-10-27 08:32:07'),(0,0,1356,0,'Y','2025-10-27','19:20:00','19:30:00','','9998815753','4','C','2025-10-27 05:50:18'),(0,0,1356,0,'Y','2025-12-23','12:50:00','13:00:00','Fc','9998815753','4','R','2025-12-22 22:37:20'),(0,0,1357,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200178334','4','T','2025-10-27 08:46:55'),(0,0,1358,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200178334','4','T','2025-10-27 08:47:06'),(0,0,1361,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7698027933','4','T','2025-10-27 09:06:31'),(0,0,1363,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825316302','4','T','2025-10-28 00:46:51'),(0,0,1363,0,'Y','2025-11-28','19:00:00','19:10:00','','9825316302','4','C','2025-11-28 04:03:50'),(0,0,1363,0,'Y','2026-02-26','08:00:00','08:30:00','Followup','9825316302','4','T','2025-11-28 07:00:20'),(0,0,1364,0,'Y','2025-10-28','10:50:00','11:00:00','Fv','','2','C','2025-10-27 21:39:22'),(0,0,1364,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9879756119','2','T','2025-10-27 23:40:47'),(0,0,1365,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7733998865','3','T','2025-10-28 07:54:57'),(0,0,1366,0,'Y','2025-10-28','10:10:00','10:20:00','Ne','9879777020','2','C','2025-10-27 21:34:29'),(0,0,1366,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9879777020','2','T','2025-10-28 02:26:49'),(0,0,1366,0,'Y','2025-11-19','16:40:00','16:50:00','Fv','9879777020','2','C','2025-11-19 03:09:19'),(0,0,1366,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9879777020','2','T','2025-11-19 04:37:23'),(0,0,1367,0,'Y','2025-10-28','10:00:00','10:10:00','Nv','9913552750','2','C','2025-10-27 21:29:52'),(0,0,1367,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9913552750','2','T','2025-10-28 01:42:59'),(0,0,1368,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726676629','4','T','2025-10-28 00:34:42'),(0,0,1369,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913340205','3','T','2025-10-28 08:02:35'),(0,0,1370,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712107567','5','T','2025-10-27 23:52:29'),(0,0,1371,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8469269967','4','T','2025-10-28 00:16:44'),(0,0,1371,0,'Y','2025-10-28','11:20:00','11:30:00','','','4','C','2025-10-27 22:09:06'),(0,0,1372,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7984187753','3','T','2025-10-28 08:03:22'),(0,0,1373,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979304050','3','T','2025-10-28 08:14:41'),(0,0,1374,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879265580','4','T','2025-10-28 00:06:06'),(0,0,1374,0,'Y','2025-10-28','11:00:00','11:10:00','','9879265580','4','C','2025-10-27 22:05:51'),(0,0,1375,0,'Y','2025-10-28','11:00:00','11:10:00','Nv','9978390172','2','C','2025-10-27 21:39:53'),(0,0,1375,0,'Y','2025-11-07','08:00:00','08:30:00','Followup','9427738175','2','T','2025-10-28 02:26:35'),(0,0,1375,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9427738175','2','T','2025-12-01 23:13:31'),(0,0,1375,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9427738175','2','T','2025-11-09 22:45:00'),(0,0,1376,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427214898','5','T','2025-10-28 00:02:26'),(0,0,1377,0,'Y','2025-10-28','11:30:00','11:40:00','','8460504990','4','C','2025-10-27 22:09:47'),(0,0,1377,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','8460504990','4','T','2025-10-28 06:54:00'),(0,0,1377,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','8460504990','4','T','2025-10-28 00:34:54'),(0,0,1378,0,'Y','2025-10-28','10:40:00','10:50:00','Fv','','2','C','2025-10-27 21:38:44'),(0,0,1378,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9722839889','2','T','2025-10-27 23:57:18'),(0,0,1379,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9725631485','4','T','2025-10-28 00:44:35'),(0,0,1380,0,'Y','2025-10-28','11:20:00','11:30:00','Fv','','2','C','2025-10-27 21:45:15'),(0,0,1380,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9979312762','2','T','2025-10-28 00:13:50'),(0,0,1381,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998945001','6','T','2025-10-27 23:56:50'),(0,0,1382,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7069022214','2','T','2025-10-28 00:24:23'),(0,0,1383,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9574402545','3','T','2025-11-06 23:08:39'),(0,0,1384,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7069022214','5','T','2025-10-28 00:10:29'),(0,0,1385,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7778991999','4','T','2025-10-28 00:45:15'),(0,0,1385,0,'Y','2025-10-28','11:40:00','11:50:00','','7778991999','4','C','2025-10-27 23:23:37'),(0,0,1386,0,'Y','2025-12-02','08:00:00','08:30:00','Followup','9427732046','2','T','2025-11-22 00:55:49'),(0,0,1386,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9427732046','2','T','2025-11-20 05:58:32'),(0,0,1386,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9427732046','2','T','2025-12-02 00:03:40'),(0,0,1386,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9427732046','2','T','2025-10-28 00:27:21'),(0,0,1387,0,'Y','2025-10-28','12:00:00','12:10:00','','','4','C','2025-10-27 22:14:08'),(0,0,1387,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9328799150','4','T','2025-10-28 00:53:07'),(0,0,1388,0,'Y','2025-10-28','11:40:00','11:50:00','Rnv','9427701608','2','C','2025-10-27 21:46:41'),(0,0,1388,0,'Y','2025-11-07','08:00:00','08:30:00','Followup','9427701608','2','T','2025-10-28 02:45:08'),(0,0,1388,0,'Y','2025-11-07','11:10:00','11:20:00','Fv','9427701608','2','C','2025-11-06 20:16:10'),(0,0,1388,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9427701608','2','T','2025-11-06 23:10:48'),(0,0,1389,0,'Y','2026-02-25','08:00:00','08:30:00','Followup','9724013995','2','T','2025-10-28 00:33:48'),(0,0,1390,0,'Y','2025-10-28','12:40:00','12:50:00','Fv','','2','C','2025-10-27 21:50:54'),(0,0,1390,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','8460680650','2','T','2025-10-28 00:39:37'),(0,0,1391,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','8866228321','2','T','2025-10-28 00:44:34'),(0,0,1392,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','7016247020','4','T','2025-10-28 01:13:31'),(0,0,1393,0,'Y','2025-10-28','12:30:00','12:40:00','Nv','9909930710','2','C','2025-10-27 21:50:14'),(0,0,1393,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9909930710','2','T','2025-10-28 02:52:54'),(0,0,1393,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9909930710','2','T','2025-11-17 00:05:56'),(0,0,1394,0,'Y','2025-10-28','12:20:00','12:30:00','Nc','8128321111','4','C','2025-10-28 00:20:53'),(0,0,1394,0,'Y','2025-10-28','12:40:00','12:50:00','','8128321111','4','B','2025-10-28 00:35:58'),(0,0,1394,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','8128321111','4','T','2025-10-28 00:58:49'),(0,0,1395,0,'Y','2025-10-28','12:30:00','12:40:00','','9898008315','4','C','2025-10-28 00:22:22'),(0,0,1395,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9898008315','4','T','2025-10-28 01:41:51'),(0,0,1396,0,'Y','2025-10-28','10:30:00','10:40:00','Nv','9173402977','2','C','2025-10-27 21:38:19'),(0,0,1396,0,'Y','2025-11-14','11:20:00','11:30:00','Fv','9173402977','2','C','2025-11-13 20:20:16'),(0,0,1396,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9173402977','2','T','2025-10-28 03:01:16'),(0,0,1396,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9173402977','2','T','2025-11-14 00:44:08'),(0,0,1397,0,'Y','2025-10-28','12:10:00','12:20:00','Fv','9409333773','2','C','2025-10-27 21:49:04'),(0,0,1397,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9409333773','2','T','2025-10-28 01:11:52'),(0,0,1398,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9265790416','3','T','2025-11-03 07:22:49'),(0,0,1399,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662547724','6','T','2025-10-28 01:22:06'),(0,0,1400,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','8320940912','4','T','2025-10-28 06:42:32'),(0,0,1400,0,'Y','2025-12-15','18:50:00','19:00:00','','8320940912','4','B','2025-12-15 04:01:12'),(0,0,1401,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','8849344493','2','T','2025-10-28 01:15:20'),(0,0,1402,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825016008','2','T','2025-10-28 01:39:37'),(0,0,1402,0,'Y','2025-11-19','18:40:00','18:50:00','Fv','9825016008','2','B','2025-11-19 03:14:24'),(0,0,1402,0,'Y','2025-11-20','18:20:00','18:30:00','','9825016008','2','C','2025-11-20 02:35:07'),(0,0,1402,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9825016008','2','T','2025-11-20 06:20:47'),(0,0,1403,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866812553','4','T','2025-10-28 06:42:49'),(0,0,1403,0,'Y','2025-10-28','12:10:00','12:20:00','','8866812553','4','C','2025-10-27 22:14:33'),(0,0,1403,0,'Y','2025-11-12','11:40:00','11:50:00','','8866812553','4','B','2025-11-11 21:13:43'),(0,0,1403,0,'Y','2025-11-13','12:10:00','12:20:00','','8866812553','4','R','2025-11-12 22:06:23'),(0,0,1403,0,'Y','2025-11-24','11:50:00','12:00:00','','8866812553','4','C','2025-11-23 21:00:02'),(0,0,1403,0,'Y','2025-12-15','18:10:00','18:20:00','','8866812553','4','B','2025-12-15 03:59:12'),(0,0,1403,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','8866812553','4','T','2025-11-24 05:37:44'),(0,0,1404,0,'Y','2025-10-28','12:20:00','12:30:00','Fv','9904934918','2','C','2025-10-27 21:49:50'),(0,0,1404,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9904934918','2','T','2025-10-28 01:42:32'),(0,0,1405,0,'Y','2025-10-28','12:00:00','12:10:00','Nv','9913003131','2','C','2025-10-27 21:48:36'),(0,0,1405,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9913003131','2','T','2025-10-28 03:08:31'),(0,0,1406,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9998879497','4','T','2025-10-28 02:03:41'),(0,0,1407,0,'Y','2025-10-28','11:30:00','11:40:00','Nv','9429938080','2','C','2025-10-27 21:45:51'),(0,0,1407,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9429938080','2','T','2025-10-28 03:28:31'),(0,0,1407,0,'Y','2025-11-28','12:10:00','12:20:00','Fv','9429938080','2','C','2025-11-27 20:15:20'),(0,0,1407,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9429938080','2','T','2025-11-27 23:55:03'),(0,0,1408,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9023866303','3','T','2025-10-28 07:53:54'),(0,0,1409,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9824212095','2','T','2025-10-28 02:39:19'),(0,0,1409,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9824212095','2','T','2025-12-11 01:06:26'),(0,0,1410,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9624722953','4','T','2025-11-12 22:36:31'),(0,0,1411,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8511088818','3','T','2025-10-28 08:30:23'),(0,0,1412,0,'Y','2025-10-28','17:00:00','17:10:00','NV','','2','C','2025-10-28 03:43:27'),(0,0,1412,0,'Y','2025-11-07','08:00:00','08:30:00','Followup','9925040235','2','T','2025-10-28 07:24:25'),(0,0,1412,0,'Y','2025-12-01','18:20:00','18:30:00','Fv','9925040235','2','C','2025-12-01 03:42:18'),(0,0,1412,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9925040235','2','T','2025-12-01 05:48:19'),(0,0,1413,0,'Y','2025-10-28','16:40:00','16:50:00','FV','','2','C','2025-10-28 03:42:20'),(0,0,1413,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9824545448','2','T','2025-10-28 05:58:04'),(0,0,1414,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9726360222','2','T','2025-10-28 06:03:38'),(0,0,1414,0,'Y','2026-02-16','08:00:00','08:30:00','Followup','9726360222','2','T','2025-12-17 22:57:12'),(0,0,1415,0,'Y','2025-10-28','17:40:00','17:50:00','FV','','2','C','2025-10-28 03:45:29'),(0,0,1415,0,'Y','2026-02-05','08:00:00','08:30:00','Followup','9825743910','2','T','2025-10-28 06:15:28'),(0,0,1416,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638893506','4','T','2025-11-27 23:18:03'),(0,0,1416,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9638893506','4','T','2025-10-28 07:20:11'),(0,0,1417,0,'Y','2025-10-28','18:10:00','18:20:00','FV','','2','C','2025-10-28 03:46:22'),(0,0,1417,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9428156635','2','T','2025-10-28 06:24:54'),(0,0,1418,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866203577','5','T','2025-10-28 06:26:15'),(0,0,1419,0,'Y','2025-10-28','18:40:00','18:50:00','FV','','2','C','2025-10-28 03:48:10'),(0,0,1419,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9824899689','2','T','2025-10-28 06:37:52'),(0,0,1419,0,'Y','2025-11-27','11:20:00','11:30:00','Fv','9824899689','2','C','2025-11-26 20:28:47'),(0,0,1419,0,'Y','2026-01-06','08:00:00','08:30:00','Followup','9824899689','2','T','2025-11-26 23:14:02'),(0,0,1420,0,'Y','2025-10-28','17:20:00','17:30:00','FC','','2','C','2025-10-28 03:44:35'),(0,0,1420,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9106067082','2','T','2025-10-28 06:40:28'),(0,0,1421,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727636301','4','T','2025-10-28 07:11:39'),(0,0,1421,0,'Y','2025-10-28','18:50:00','19:00:00','','9727636301','4','C','2025-10-28 05:26:15'),(0,0,1422,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','8347740777','4','T','2025-10-28 07:26:08'),(0,0,1423,0,'Y','2025-10-28','18:00:00','18:10:00','','9978770870','4','C','2025-10-28 05:22:56'),(0,0,1423,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9978770870','4','T','2025-10-28 07:01:57'),(0,0,1424,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9099393923','2','T','2025-10-28 06:46:31'),(0,0,1425,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725995391','5','T','2025-10-28 06:42:18'),(0,0,1426,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725995391','5','T','2025-10-28 06:56:02'),(0,0,1427,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099393923','2','T','2025-12-10 00:37:23'),(0,0,1427,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9099393923','2','T','2025-10-28 06:49:32'),(0,0,1427,0,'Y','2025-12-02','08:00:00','08:30:00','Followup','9099393923','2','T','2025-11-17 06:02:45'),(0,0,1427,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9099393923','2','T','2025-12-10 04:46:09'),(0,0,1428,0,'Y','2025-11-07','08:00:00','08:30:00','Followup','9429424851','2','T','2025-10-28 07:05:06'),(0,0,1428,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9429424851','2','T','2025-11-07 06:25:15'),(0,0,1429,0,'Y','2025-10-28','17:50:00','18:00:00','FV','','2','C','2025-10-28 03:45:44'),(0,0,1429,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','8469779350','2','T','2025-10-28 06:54:06'),(0,0,1430,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7359015458','6','T','2025-10-28 06:49:09'),(0,0,1431,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7802009362','2','T','2025-10-28 08:04:20'),(0,0,1431,0,'Y','2025-10-28','18:00:00','18:10:00','NV','','2','C','2025-10-28 03:46:00'),(0,0,1432,0,'Y','2025-10-28','18:40:00','18:50:00','','9638299100','4','C','2025-10-28 06:32:59'),(0,0,1432,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9638299100','4','T','2025-10-28 07:48:18'),(0,0,1433,0,'Y','2025-10-28','18:10:00','18:20:00','','9409177400','4','C','2025-10-28 05:23:22'),(0,0,1433,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9409177400','4','T','2025-10-28 07:39:10'),(0,0,1434,0,'Y','2025-10-28','18:20:00','18:30:00','','9409177400','4','C','2025-10-28 05:23:51'),(0,0,1434,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9409177400','4','T','2025-10-28 07:33:51'),(0,0,1435,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7572845577','7','T','2025-10-28 07:18:27'),(0,0,1436,0,'Y','2025-11-07','08:00:00','08:30:00','Followup','9426942605','2','T','2025-10-28 07:38:56'),(0,0,1437,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9265668609','2','T','2025-11-14 23:27:33'),(0,0,1437,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9265668609','2','T','2025-10-28 07:50:44'),(0,0,1437,0,'Y','2025-11-07','17:40:00','17:50:00','','9265668609','2','B','2025-11-07 02:25:31'),(0,0,1437,0,'Y','2025-11-11','18:10:00','18:20:00','','9265668609','2','C','2025-11-11 03:26:49'),(0,0,1437,0,'Y','2025-11-15','11:20:00','11:30:00','Fv','9265668609','2','C','2025-11-14 20:22:11'),(0,0,1437,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9265668609','2','T','2025-11-11 06:08:12'),(0,0,1439,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998242758','5','T','2025-10-28 07:03:31'),(0,0,1440,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','9998405405','4','T','2025-10-28 07:51:32'),(0,0,1441,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824277730','7','T','2025-10-28 07:18:34'),(0,0,1442,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7435007498','5','T','2025-10-28 07:27:39'),(0,0,1443,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7435007498','3','T','2025-10-28 08:28:27'),(0,0,1444,0,'Y','2025-10-28','19:00:00','19:10:00','','7574995336','4','C','2025-10-28 05:27:23'),(0,0,1444,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','7574995336','4','T','2025-10-28 07:59:53'),(0,0,1445,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8780200220','5','T','2025-10-28 07:41:11'),(0,0,1446,0,'Y','2025-10-28','19:20:00','19:30:00','','7984951556','4','C','2025-10-28 07:10:27'),(0,0,1446,0,'Y','2025-11-01','11:40:00','11:50:00','','7984951556','4','B','2025-10-31 23:46:17'),(0,0,1446,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','7984951556','4','T','2025-10-28 08:22:28'),(0,0,1447,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866516964','6','T','2025-10-28 07:36:24'),(0,0,1448,0,'Y','2025-10-28','18:50:00','19:00:00','FV','','2','C','2025-10-28 03:48:28'),(0,0,1448,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9228361000','2','T','2025-10-28 08:07:33'),(0,0,1449,0,'Y','2025-10-28','18:20:00','18:30:00','FV','','2','C','2025-10-28 03:47:37'),(0,0,1449,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','7688088882','2','T','2025-10-28 08:12:50'),(0,0,1450,0,'Y','2025-10-28','19:10:00','19:20:00','','9904169559','4','C','2025-10-28 05:27:48'),(0,0,1450,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9904169559','4','T','2025-10-28 08:27:26'),(0,0,1451,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904320911','4','T','2025-10-29 07:46:10'),(0,0,1453,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9574536550','5','T','2025-10-28 23:36:17'),(0,0,1454,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9558165651','4','T','2025-10-29 07:36:29'),(0,0,1455,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7016870250','4','T','2025-10-29 07:36:37'),(0,0,1456,0,'Y','2025-11-13','11:50:00','12:00:00','','9824127799','4','C','2025-11-12 21:41:48'),(0,0,1456,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9824127799','4','T','2025-11-12 23:49:20'),(0,0,1457,0,'Y','2025-10-29','10:10:00','10:20:00','Fv','9512582145','2','C','2025-10-28 21:22:10'),(0,0,1457,0,'Y','2026-02-06','08:00:00','08:30:00','Followup','9512582145','2','T','2025-10-28 23:30:07'),(0,0,1458,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9408488747','7','T','2025-10-28 23:50:54'),(0,0,1459,0,'Y','2025-10-29','10:20:00','10:30:00','Fv','9427223827','2','C','2025-10-28 21:22:45'),(0,0,1459,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9427223827','2','T','2025-10-28 23:35:30'),(0,0,1460,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','7777931062','2','T','2025-10-28 23:59:41'),(0,0,1460,0,'Y','2025-11-08','08:00:00','08:30:00','Followup','7777931062','2','T','2025-11-03 01:07:56'),(0,0,1461,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978921210','4','T','2025-11-11 06:51:07'),(0,0,1461,0,'Y','2025-11-08','08:00:00','08:30:00','Followup','9978921210','4','T','2025-10-29 06:45:59'),(0,0,1461,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9978921210','4','T','2025-11-10 23:48:41'),(0,0,1462,0,'Y','2025-10-29','11:40:00','11:50:00','Fv','8758748660','2','C','2025-10-28 21:24:59'),(0,0,1462,0,'Y','2025-11-17','10:10:00','10:20:00','Fv','8758748660','2','C','2025-11-16 20:14:19'),(0,0,1462,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','8758748660','2','T','2025-11-16 22:36:01'),(0,0,1462,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','8758748660','2','T','2025-10-29 00:07:47'),(0,0,1463,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9638515085','4','T','2025-11-21 07:26:08'),(0,0,1463,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9638515085','4','T','2025-11-25 08:26:41'),(0,0,1463,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','9638515085','4','T','2025-10-29 01:26:56'),(0,0,1463,0,'Y','2026-03-05','08:00:00','08:30:00','Followup','9638515085','4','T','2025-12-05 06:48:39'),(0,0,1464,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998433526','3','T','2025-10-28 23:03:24'),(0,0,1465,0,'Y','2025-10-29','11:40:00','11:50:00','','9879263622','4','C','2025-10-28 22:08:11'),(0,0,1465,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9879263622','4','T','2025-10-29 01:35:11'),(0,0,1465,0,'Y','2025-11-29','11:00:00','11:10:00','','9879263622','4','C','2025-11-28 20:54:20'),(0,0,1465,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9879263622','4','T','2025-11-28 23:30:53'),(0,0,1466,0,'Y','2025-10-29','10:50:00','11:00:00','Fv','9909468070','2','C','2025-10-28 21:23:45'),(0,0,1466,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9909468070','2','T','2025-10-28 23:44:49'),(0,0,1467,0,'Y','2026-02-26','08:00:00','08:30:00','Followup','9737272762','2','T','2025-10-29 00:24:27'),(0,0,1469,0,'Y','2025-10-29','11:50:00','12:00:00','Fv','9173062312','2','C','2025-10-28 21:27:11'),(0,0,1469,0,'Y','2025-11-21','11:50:00','12:00:00','','9173062312','2','B','2025-11-20 20:31:02'),(0,0,1469,0,'Y','2026-02-26','08:00:00','08:30:00','Followup','9173062312','2','T','2025-10-29 00:35:07'),(0,0,1470,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9375751633','2','T','2025-10-29 00:39:59'),(0,0,1471,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','9824214487','4','T','2025-10-29 00:03:55'),(0,0,1472,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9811012828','5','T','2025-10-28 23:44:23'),(0,0,1473,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974895308','7','T','2025-10-29 00:04:23'),(0,0,1475,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428377436','5','T','2025-10-28 23:50:24'),(0,0,1476,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','9824990900','4','T','2025-10-29 01:42:31'),(0,0,1477,0,'Y','2025-10-29','11:20:00','11:30:00','Fv','7355912916','2','C','2025-10-28 21:24:29'),(0,0,1477,0,'Y','2025-12-01','17:50:00','18:00:00','Fv','7355912916','2','C','2025-12-01 03:39:38'),(0,0,1477,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','7355912916','2','T','2025-10-29 00:14:30'),(0,0,1477,0,'Y','2026-01-10','08:00:00','08:30:00','Followup','7355912916','2','T','2025-12-01 05:16:18'),(0,0,1478,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099022293','5','T','2025-10-29 00:41:51'),(0,0,1479,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9898067610','2','T','2025-10-29 02:38:15'),(0,0,1480,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','9712343677','4','T','2025-10-29 00:58:02'),(0,0,1481,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638667571','5','T','2025-10-29 00:13:28'),(0,0,1482,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9879870782','4','T','2025-10-29 01:01:56'),(0,0,1483,0,'Y','2025-11-05','08:00:00','08:30:00','Followup','9824166177','4','T','2025-10-29 01:18:22'),(0,0,1484,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','9824166177','4','T','2025-10-29 01:14:18'),(0,0,1485,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','9904650416','4','T','2025-10-29 01:22:17'),(0,0,1486,0,'Y','2025-10-29','11:30:00','11:40:00','','','4','C','2025-10-28 22:07:33'),(0,0,1486,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','8849987578','4','T','2025-10-29 00:40:23'),(0,0,1487,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824223992','7','T','2025-10-29 00:21:50'),(0,0,1488,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9737540321','3','T','2025-10-29 00:41:24'),(0,0,1489,0,'Y','2025-10-29','10:50:00','11:00:00','NC','','4','C','2025-10-28 22:04:10'),(0,0,1489,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','8200352226','4','T','2025-10-29 07:05:09'),(0,0,1490,0,'Y','2025-10-29','12:10:00','12:20:00','Fv','7778895108','2','C','2025-10-28 21:28:51'),(0,0,1490,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','7778895108','2','T','2025-10-29 01:10:54'),(0,0,1491,0,'Y','2025-11-05','08:00:00','08:30:00','Followup','8805427641','4','T','2025-10-29 00:58:20'),(0,0,1492,0,'Y','2025-10-29','12:20:00','12:30:00','Fv','9898953775','2','C','2025-10-28 21:29:52'),(0,0,1492,0,'Y','2026-02-26','08:00:00','08:30:00','Followup','9898953775','2','T','2025-10-29 01:25:54'),(0,0,1493,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9939625800','6','T','2025-10-29 00:59:23'),(0,0,1494,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7990126025','5','T','2025-10-29 01:16:56'),(0,0,1495,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909440034','4','T','2025-10-29 06:36:15'),(0,0,1495,0,'Y','2025-11-19','12:20:00','12:30:00','','9909440034','4','C','2025-11-18 22:27:46'),(0,0,1495,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9909440034','4','T','2025-11-19 01:04:08'),(0,0,1496,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978816577','4','T','2025-12-09 00:30:26'),(0,0,1496,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9978816577','4','T','2025-12-01 07:38:50'),(0,0,1496,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9978816577','4','T','2025-10-29 01:52:15'),(0,0,1497,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429027671','6','T','2025-10-29 01:25:10'),(0,0,1498,0,'Y','2025-10-29','12:40:00','12:50:00','Fv','8154090324','2','C','2025-10-28 21:30:24'),(0,0,1498,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','8154090324','2','T','2025-10-29 01:32:22'),(0,0,1498,0,'Y','2025-12-03','12:10:00','12:20:00','Fv','8154090324','2','C','2025-12-02 20:24:46'),(0,0,1498,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','8154090324','2','T','2025-12-03 00:11:19'),(0,0,1499,0,'Y','2025-12-23','10:50:00','11:00:00','Fv','7778899901','2','C','2025-12-22 21:47:32'),(0,0,1499,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','7778899901','2','T','2025-10-29 02:05:23'),(0,0,1499,0,'Y','2026-02-21','08:00:00','08:30:00','Followup','7778899901','2','T','2025-12-22 22:34:21'),(0,0,1500,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9574773478','2','T','2025-10-29 02:26:49'),(0,0,1500,0,'Y','2025-12-16','17:20:00','17:30:00','','9574773478','2','C','2025-12-16 02:21:08'),(0,0,1500,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','9574773478','2','T','2025-12-16 05:28:54'),(0,0,1501,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','7211189999','2','T','2025-10-29 02:45:24'),(0,0,1502,0,'Y','2025-10-29','11:10:00','11:20:00','','9998189249','4','C','2025-10-28 22:06:00'),(0,0,1502,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','9998189249','4','T','2025-10-29 02:04:49'),(0,0,1503,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9424445695','2','T','2025-10-29 07:33:46'),(0,0,1503,0,'Y','2025-11-13','17:20:00','17:30:00','FV','9424445695','2','C','2025-11-13 03:24:11'),(0,0,1503,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9424445695','2','T','2025-11-13 04:54:52'),(0,0,1504,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8732970608','2','T','2025-10-29 05:58:47'),(0,0,1505,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825916904','2','T','2025-11-15 00:37:34'),(0,0,1505,0,'Y','2025-10-29','17:40:00','17:50:00','','','2','C','2025-10-29 03:30:04'),(0,0,1505,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9825916904','2','T','2025-10-29 06:11:04'),(0,0,1505,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9825916904','2','T','2025-12-08 07:13:02'),(0,0,1506,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9099077810','2','T','2025-10-29 05:57:22'),(0,0,1507,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898377334','2','T','2025-10-29 06:04:34'),(0,0,1508,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7405467767','2','T','2025-10-29 06:04:56'),(0,0,1509,0,'Y','2025-10-29','17:00:00','17:10:00','Nv','','2','C','2025-10-29 03:28:38'),(0,0,1509,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9879068538','2','T','2025-10-29 07:50:30'),(0,0,1509,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','9879068538','2','T','2025-11-27 23:49:27'),(0,0,1510,0,'Y','2025-11-08','08:00:00','08:30:00','Followup','8460022068','4','T','2025-10-29 07:53:30'),(0,0,1511,0,'Y','2026-02-06','08:00:00','08:30:00','Followup','9428154805','2','T','2025-10-29 06:27:24'),(0,0,1512,0,'Y','2025-10-29','17:20:00','17:30:00','Fv','','2','C','2025-10-29 03:29:12'),(0,0,1512,0,'Y','2025-11-27','10:40:00','10:50:00','Fv','9924159311','2','C','2025-11-26 20:26:54'),(0,0,1512,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9924159311','2','T','2025-10-29 06:24:52'),(0,0,1512,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9924159311','2','T','2025-11-26 22:27:52'),(0,0,1513,0,'Y','2025-10-29','18:00:00','18:10:00','Nv','','2','C','2025-10-29 03:31:00'),(0,0,1513,0,'Y','2025-11-08','08:00:00','08:30:00','Followup','9725780571','2','T','2025-10-29 08:12:27'),(0,0,1513,0,'Y','2025-11-08','11:10:00','11:20:00','','9725780571','2','C','2025-11-07 20:20:17'),(0,0,1513,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9725780571','2','T','2025-11-07 22:53:40'),(0,0,1514,0,'Y','2025-10-29','19:00:00','19:10:00','Nv','','2','C','2025-10-29 03:32:50'),(0,0,1514,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','9664531656','2','T','2025-10-29 08:32:47'),(0,0,1515,0,'Y','2025-10-29','18:30:00','18:40:00','Nv','','2','C','2025-10-29 03:31:45'),(0,0,1515,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','8401730850','2','T','2025-10-29 08:35:59'),(0,0,1515,0,'Y','2025-11-15','12:40:00','12:50:00','Fv','8401730850','2','C','2025-11-14 20:25:15'),(0,0,1515,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','8401730850','2','T','2025-11-15 00:06:41'),(0,0,1516,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974996496','2','T','2025-10-29 08:21:07'),(0,0,1516,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9974996496','2','T','2025-10-30 07:29:08'),(0,0,1517,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9106792621','3','T','2025-10-30 00:23:14'),(0,0,1518,0,'Y','2025-10-29','17:30:00','17:40:00','Nv','','2','C','2025-10-29 03:29:41'),(0,0,1518,0,'Y','2025-11-07','18:20:00','18:30:00','','9974215143','2','C','2025-11-07 02:26:04'),(0,0,1518,0,'Y','2025-11-08','08:00:00','08:30:00','Followup','9974215143','2','T','2025-10-29 08:21:24'),(0,0,1518,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9974215143','2','T','2025-11-07 06:09:57'),(0,0,1519,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9879839928','5','T','2025-10-29 06:32:24'),(0,0,1520,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','8141240899','2','T','2025-10-29 07:28:23'),(0,0,1520,0,'Y','2025-12-17','16:50:00','17:00:00','','8141240899','2','C','2025-12-17 01:43:24'),(0,0,1520,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','8141240899','2','T','2025-12-17 04:49:52'),(0,0,1521,0,'Y','2025-12-01','19:10:00','19:20:00','','8160195878','4','C','2025-12-01 05:06:39'),(0,0,1521,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','8160195878','4','T','2025-12-01 07:24:39'),(0,0,1521,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','8160195878','4','T','2025-10-29 07:44:53'),(0,0,1522,0,'Y','2025-10-29','18:50:00','19:00:00','Fv','','2','C','2025-10-29 03:32:29'),(0,0,1522,0,'Y','2025-11-08','08:00:00','08:30:00','Followup','7572945198','2','T','2025-10-29 07:45:12'),(0,0,1523,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427257734','4','T','2025-10-29 08:02:45'),(0,0,1523,0,'Y','2025-10-29','18:10:00','18:20:00','','9427257734','4','C','2025-10-29 05:45:12'),(0,0,1524,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427243787','6','T','2025-10-29 07:07:12'),(0,0,1525,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427257734','5','T','2025-10-29 07:02:58'),(0,0,1526,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426712250','5','T','2025-10-29 07:01:04'),(0,0,1527,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727475637','4','T','2025-10-29 07:13:11'),(0,0,1529,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','8758387269','4','T','2025-10-29 07:30:01'),(0,0,1530,0,'Y','2025-10-29','18:40:00','18:50:00','','9327368828','4','C','2025-10-29 05:48:01'),(0,0,1530,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','9327368828','4','T','2025-10-29 07:34:43'),(0,0,1531,0,'Y','2025-10-29','18:30:00','18:40:00','','9429470939','4','C','2025-10-29 05:47:04'),(0,0,1531,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9429470939','4','T','2025-10-29 07:19:20'),(0,0,1532,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428791516','4','T','2025-11-21 07:00:42'),(0,0,1532,0,'Y','2025-10-29','18:00:00','18:10:00','','9428791516','4','C','2025-10-29 05:44:45'),(0,0,1532,0,'Y','2025-11-08','08:00:00','08:30:00','Followup','9428791516','4','T','2025-10-29 08:01:48'),(0,0,1532,0,'Y','2025-11-12','19:10:00','19:20:00','','9428791516','4','C','2025-11-12 04:25:09'),(0,0,1532,0,'Y','2025-11-21','18:30:00','18:40:00','','9428791516','4','C','2025-11-21 04:39:09'),(0,0,1532,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9428791516','4','T','2025-11-12 08:21:55'),(0,0,1533,0,'Y','2025-10-29','18:50:00','19:00:00','','9377793772','4','C','2025-10-29 06:03:25'),(0,0,1533,0,'Y','2025-11-03','08:00:00','08:30:00','Followup','9377793772','4','T','2025-10-29 08:07:04'),(0,0,1534,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','8347866229','2','T','2025-10-29 08:02:03'),(0,0,1535,0,'Y','2025-10-29','19:00:00','19:10:00','','9664545922','4','C','2025-10-29 06:15:53'),(0,0,1535,0,'Y','2026-04-27','08:00:00','08:30:00','Followup','9664545922','4','T','2025-10-29 08:13:18'),(0,0,1536,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8155826460','5','T','2025-10-29 08:06:21'),(0,0,1538,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9979291906','2','T','2025-12-17 07:25:56'),(0,0,1538,0,'Y','2026-02-06','08:00:00','08:30:00','Followup','9979291906','2','T','2025-10-29 08:48:24'),(0,0,1540,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7990933500','4','T','2025-10-30 00:22:50'),(0,0,1541,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9265305464','2','T','2025-10-29 23:16:08'),(0,0,1541,0,'Y','2026-01-23','08:00:00','08:30:00','Followup','9265305464','2','T','2025-11-23 22:37:53'),(0,0,1542,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824283301','2','T','2025-12-01 05:58:33'),(0,0,1542,0,'Y','2025-11-06','08:00:00','08:30:00','Followup','9824283301','2','T','2025-10-30 00:31:11'),(0,0,1542,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9824283301','2','T','2025-11-05 22:19:13'),(0,0,1542,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9824283301','2','T','2025-12-02 01:16:08'),(0,0,1543,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978426029','4','T','2025-10-30 06:52:56'),(0,0,1544,0,'Y','2025-10-30','10:30:00','10:40:00','Nv','9428969412','2','C','2025-10-29 21:41:42'),(0,0,1544,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9428969412','2','T','2025-10-30 01:42:50'),(0,0,1544,0,'Y','2025-11-10','16:40:00','16:50:00','Fv','9428969412','2','C','2025-11-10 03:09:09'),(0,0,1544,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9428969412','2','T','2025-11-10 04:48:10'),(0,0,1544,0,'Y','2025-12-02','16:50:00','17:00:00','FV','9428969412','2','C','2025-12-02 03:44:53'),(0,0,1544,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9428969412','2','T','2025-12-02 04:48:04'),(0,0,1545,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9925633792','2','T','2025-10-30 02:07:08'),(0,0,1545,0,'Y','2025-11-29','12:40:00','12:50:00','Fv','9925633792','2','C','2025-11-28 20:24:48'),(0,0,1545,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9925633792','2','T','2025-11-29 00:26:13'),(0,0,1546,0,'Y','2025-10-30','10:50:00','11:00:00','Fv','9725335299','2','C','2025-10-29 21:44:59'),(0,0,1546,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9725335299','2','T','2025-10-29 23:37:32'),(0,0,1546,0,'Y','2025-12-01','17:10:00','17:20:00','Fv','9725335299','2','B','2025-12-01 03:36:36'),(0,0,1546,0,'Y','2025-12-02','10:20:00','10:30:00','FV','9725335299','2','C','2025-12-01 20:20:49'),(0,0,1546,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','9725335299','2','T','2025-12-01 22:17:00'),(0,0,1547,0,'Y','2025-10-30','11:20:00','11:30:00','Fv','9904736434','2','C','2025-10-29 21:47:01'),(0,0,1547,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9904736434','2','T','2025-11-30 23:39:46'),(0,0,1547,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9904736434','2','T','2025-10-30 00:09:32'),(0,0,1547,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9904736434','2','T','2025-12-11 23:33:19'),(0,0,1548,0,'Y','2025-11-28','12:40:00','12:50:00','Fv','9924272090','2','C','2025-11-27 20:15:46'),(0,0,1548,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9924272090','2','T','2025-10-30 00:35:30'),(0,0,1548,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9924272090','2','T','2025-11-28 01:24:43'),(0,0,1549,0,'Y','2025-10-30','10:40:00','10:50:00','Fv','','2','C','2025-10-29 21:44:30'),(0,0,1549,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9712167095','2','T','2025-10-30 00:13:15'),(0,0,1549,0,'Y','2025-12-15','12:10:00','12:20:00','Fv','9712167095','2','C','2025-12-14 20:13:54'),(0,0,1549,0,'Y','2026-02-13','08:00:00','08:30:00','Followup','9712167095','2','T','2025-12-14 23:47:44'),(0,0,1550,0,'Y','2026-02-27','08:00:00','08:30:00','Followup','8140953737','2','T','2025-10-30 01:18:39'),(0,0,1551,0,'Y','2025-10-30','11:00:00','11:10:00','Nv','6354659441','2','C','2025-10-29 21:46:08'),(0,0,1551,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','6354659441','2','T','2025-10-30 02:11:14'),(0,0,1551,0,'Y','2025-12-05','12:20:00','12:30:00','FV','6354659441','2','C','2025-12-04 20:31:34'),(0,0,1551,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','6354659441','2','T','2025-12-05 00:06:54'),(0,0,1552,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9824283301','4','T','2025-10-30 01:56:27'),(0,0,1552,0,'Y','2025-11-11','12:50:00','13:00:00','','9824283301','4','C','2025-11-10 22:04:11'),(0,0,1552,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9824283301','4','T','2025-11-11 01:06:20'),(0,0,1552,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','9824283301','4','T','2025-12-11 23:49:48'),(0,0,1553,0,'Y','2025-10-30','11:20:00','11:30:00','','9427214711','4','C','2025-10-29 22:16:59'),(0,0,1553,0,'Y','2025-11-06','08:00:00','08:30:00','Followup','9427214711','4','T','2025-10-30 00:03:14'),(0,0,1555,0,'Y','2025-10-30','11:30:00','11:40:00','','9825457159','4','C','2025-10-29 22:18:35'),(0,0,1555,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','9825457159','4','T','2025-10-30 06:52:02'),(0,0,1556,0,'Y','2025-10-30','11:40:00','11:50:00','','9714494994','4','C','2025-10-29 22:20:05'),(0,0,1556,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9714494994','4','T','2025-10-30 00:21:47'),(0,0,1557,0,'Y','2025-10-30','11:50:00','12:00:00','Fv','9825706769','2','C','2025-10-29 21:49:10'),(0,0,1557,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9825706769','2','T','2025-10-30 00:26:43'),(0,0,1558,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8128917748','3','T','2025-10-30 00:54:24'),(0,0,1559,0,'Y','2025-10-30','12:10:00','12:20:00','Ne','9725855652','2','C','2025-10-29 21:50:27'),(0,0,1559,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9725855652','2','T','2025-10-30 01:09:49'),(0,0,1560,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879572227','4','T','2025-10-30 01:12:49'),(0,0,1560,0,'Y','2025-10-30','11:00:00','11:10:00','','9879572227','4','C','2025-10-29 22:15:04'),(0,0,1561,0,'Y','2025-10-30','11:10:00','11:20:00','','9879572227','4','C','2025-10-29 22:15:34'),(0,0,1561,0,'Y','2025-12-06','11:20:00','11:30:00','','9879572227','4','C','2025-12-05 21:51:23'),(0,0,1561,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9879572227','4','T','2025-12-05 23:38:20'),(0,0,1561,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9879572227','4','T','2025-10-30 01:11:40'),(0,0,1562,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9328264500','3','T','2025-10-30 00:21:17'),(0,0,1563,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9328264500','2','T','2025-10-30 01:35:43'),(0,0,1564,0,'Y','2025-10-30','12:00:00','12:10:00','Nv','9824220167','2','C','2025-10-29 21:59:32'),(0,0,1564,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9824220167','2','T','2025-10-30 05:41:36'),(0,0,1564,0,'Y','2025-12-01','17:40:00','17:50:00','Fv','9824220167','2','C','2025-12-01 03:39:22'),(0,0,1564,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','9909305199','2','T','2025-12-01 06:04:10'),(0,0,1565,0,'Y','2025-10-30','11:50:00','12:00:00','','9427214676','4','C','2025-10-29 23:31:26'),(0,0,1565,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9427214676','4','T','2025-10-30 00:51:34'),(0,0,1566,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9427214656','4','T','2025-10-30 00:59:57'),(0,0,1567,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9558584988','5','T','2025-10-30 00:45:05'),(0,0,1568,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7383640499','3','T','2025-10-30 01:10:07'),(0,0,1570,0,'Y','2025-10-30','12:00:00','12:10:00','','9924166721','4','C','2025-10-29 23:56:40'),(0,0,1570,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9924166721','4','T','2025-10-30 01:44:13'),(0,0,1571,0,'Y','2025-10-30','11:10:00','11:20:00','Fv','9428709560','2','C','2025-10-29 21:46:35'),(0,0,1571,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9428709560','2','T','2025-10-30 01:55:21'),(0,0,1571,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9428709560','2','T','2025-12-11 00:25:05'),(0,0,1572,0,'Y','2025-10-30','12:20:00','12:30:00','Fv','9664535335','2','C','2025-10-29 21:51:36'),(0,0,1572,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9664535335','2','T','2025-10-30 01:30:30'),(0,0,1572,0,'Y','2025-12-10','18:50:00','19:00:00','','9664535335','2','C','2025-12-10 02:40:50'),(0,0,1572,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9664535335','2','T','2025-12-10 06:51:05'),(0,0,1573,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8460116780','5','T','2025-10-30 01:10:40'),(0,0,1574,0,'Y','2025-10-30','12:40:00','12:50:00','Fv','9898336535','2','C','2025-10-29 21:52:37'),(0,0,1574,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9898336535','2','T','2025-10-30 01:41:11'),(0,0,1574,0,'Y','2026-02-04','08:00:00','08:30:00','Followup','9898336535','2','T','2025-12-06 00:48:11'),(0,0,1576,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904029458','3','T','2025-10-30 01:23:46'),(0,0,1578,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','9825313813','4','T','2025-10-30 02:17:54'),(0,0,1579,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9824823686','4','T','2025-10-30 02:24:06'),(0,0,1580,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879236861','5','T','2025-11-06 22:55:29'),(0,0,1582,0,'Y','2025-10-30','17:00:00','17:10:00','NV','','2','C','2025-10-30 03:26:53'),(0,0,1582,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9727805863','2','T','2025-10-30 07:58:50'),(0,0,1582,0,'Y','2025-12-05','18:50:00','19:00:00','FV','9727805863','2','C','2025-12-05 03:19:35'),(0,0,1582,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9727805863','2','T','2025-12-05 06:40:44'),(0,0,1583,0,'Y','2025-11-17','18:20:00','18:30:00','Fv','9033200025','2','C','2025-11-17 03:15:41'),(0,0,1583,0,'Y','2025-11-19','08:00:00','08:30:00','Followup','9033200025','2','T','2025-10-30 06:46:42'),(0,0,1583,0,'Y','2025-11-27','18:10:00','18:20:00','Fv','9033200025','2','C','2025-11-27 03:39:49'),(0,0,1583,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9033200025','2','T','2025-10-30 05:59:52'),(0,0,1583,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9033200025','2','T','2025-11-17 05:55:28'),(0,0,1583,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9033200025','2','T','2025-11-27 05:51:44'),(0,0,1584,0,'Y','2025-10-30','16:40:00','16:50:00','FV','','2','C','2025-10-30 03:26:23'),(0,0,1584,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9909596283','2','T','2025-10-30 06:09:29'),(0,0,1585,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','9426201233','2','T','2025-10-30 06:31:02'),(0,0,1585,0,'Y','2025-11-04','16:40:00','16:50:00','','9426201233','2','C','2025-11-04 02:04:42'),(0,0,1585,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9426201233','2','T','2025-11-04 05:02:04'),(0,0,1586,0,'Y','2025-11-19','08:00:00','08:30:00','Followup','6351753131','2','T','2025-10-30 06:52:11'),(0,0,1586,0,'Y','2025-11-28','18:40:00','18:50:00','','6351753131','2','C','2025-11-28 02:31:19'),(0,0,1586,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','6351753131','2','T','2025-11-28 06:40:59'),(0,0,1587,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909282197','2','T','2025-10-30 06:06:13'),(0,0,1587,0,'Y','2025-10-30','17:10:00','17:20:00','FV','','2','C','2025-10-30 03:27:24'),(0,0,1587,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9909282197','2','T','2025-10-30 06:48:56'),(0,0,1587,0,'Y','2025-12-09','17:20:00','17:30:00','Fv','9909282197','2','C','2025-12-09 03:19:48'),(0,0,1587,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9909282197','2','T','2025-12-09 04:34:36'),(0,0,1588,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9904248303','2','T','2025-10-30 06:58:53'),(0,0,1589,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9426960248','2','T','2025-10-30 07:03:19'),(0,0,1590,0,'Y','2025-10-30','17:40:00','17:50:00','FV','','2','C','2025-10-30 03:28:17'),(0,0,1590,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9979674784','2','T','2025-10-30 06:34:29'),(0,0,1591,0,'Y','2025-10-30','17:30:00','17:40:00','NV','','2','C','2025-10-30 03:27:55'),(0,0,1591,0,'Y','2025-11-07','17:10:00','17:20:00','','9725197925','2','C','2025-11-07 02:25:15'),(0,0,1591,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9725197925','2','T','2025-10-30 08:04:01'),(0,0,1591,0,'Y','2025-11-20','10:20:00','10:30:00','Fv','9725197925','2','C','2025-11-19 20:20:47'),(0,0,1591,0,'Y','2025-11-21','08:00:00','08:30:00','Followup','9725197925','2','T','2025-11-10 23:57:05'),(0,0,1591,0,'Y','2025-12-01','11:20:00','11:30:00','Fv','9725197925','2','B','2025-11-30 20:20:07'),(0,0,1591,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9725197925','2','T','2025-11-19 23:12:26'),(0,0,1591,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9725197925','2','T','2025-11-07 05:36:22'),(0,0,1592,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8758767574','2','T','2025-12-15 23:48:21'),(0,0,1592,0,'Y','2025-10-30','17:50:00','18:00:00','FV','','2','C','2025-10-30 03:28:37'),(0,0,1592,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','8758767574','2','T','2025-10-30 06:41:00'),(0,0,1592,0,'Y','2025-12-11','18:10:00','18:20:00','Fv','8758767574','2','C','2025-12-11 03:06:47'),(0,0,1592,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','8758767574','2','T','2025-12-11 05:56:11'),(0,0,1593,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','8154810081','2','T','2025-10-30 07:21:17'),(0,0,1593,0,'Y','2025-11-29','10:10:00','10:20:00','Fv','8154810081','2','C','2025-11-28 20:17:25'),(0,0,1593,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','8154810081','2','T','2025-11-28 22:24:21'),(0,0,1594,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','7878033733','4','T','2025-10-30 06:51:42'),(0,0,1595,0,'Y','2025-11-04','08:00:00','08:30:00','Followup','9898287892','2','T','2025-10-30 07:24:31'),(0,0,1595,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9898287892','2','T','2025-11-03 23:06:34'),(0,0,1596,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426905499','3','T','2025-10-30 06:35:34'),(0,0,1597,0,'Y','2025-10-30','18:10:00','05:30:00','Fv','','2','C','2025-10-30 03:28:55'),(0,0,1597,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9586463335','2','T','2025-10-30 06:56:08'),(0,0,1598,0,'Y','2025-10-30','16:50:00','17:00:00','FV','','2','C','2025-10-30 03:26:38'),(0,0,1598,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','6353758757','2','T','2025-10-30 07:31:45'),(0,0,1598,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','6353758757','2','T','2025-12-05 05:25:58'),(0,0,1599,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879221630','4','T','2025-12-02 23:30:34'),(0,0,1599,0,'Y','2025-11-06','08:00:00','08:30:00','Followup','9879221630','4','T','2025-10-30 06:57:11'),(0,0,1599,0,'Y','2025-11-19','08:00:00','08:30:00','Followup','9879221630','4','T','2025-11-12 00:45:14'),(0,0,1601,0,'Y','2025-10-30','18:20:00','18:30:00','','','4','C','2025-10-30 05:22:54'),(0,0,1601,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9099177767','4','T','2025-10-30 07:06:38'),(0,0,1602,0,'Y','2025-10-30','18:30:00','18:40:00','Nv','9601837003','2','C','2025-10-30 06:48:15'),(0,0,1602,0,'Y','2025-11-19','08:00:00','08:30:00','Followup','9601837003','2','T','2025-10-30 08:28:59'),(0,0,1603,0,'Y','2025-10-30','18:00:00','18:10:00','','8320205076','4','C','2025-10-30 05:22:14'),(0,0,1603,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','8320205076','4','T','2025-10-30 07:19:32'),(0,0,1604,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825997358','5','T','2025-10-30 07:21:34'),(0,0,1605,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825018676','3','T','2025-10-30 07:19:04'),(0,0,1606,0,'Y','2025-10-30','18:30:00','18:40:00','','8160638519','4','R','2025-10-30 05:35:38'),(0,0,1607,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913946117','6','T','2025-10-30 07:30:16'),(0,0,1608,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426787808','4','T','2025-10-30 08:05:46'),(0,0,1609,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200439483','5','T','2025-10-30 07:26:16'),(0,0,1610,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662545105','5','T','2025-10-30 07:34:37'),(0,0,1611,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7359000059','4','T','2025-10-31 01:40:27'),(0,0,1612,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6354817152','2','T','2025-10-30 08:28:33'),(0,0,1612,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','6354817152','2','T','2025-10-31 06:33:14'),(0,0,1613,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825007929','5','T','2025-10-30 07:53:28'),(0,0,1614,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160316434','7','T','2025-11-19 23:41:07'),(0,0,1616,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7359757075','6','T','2025-11-14 23:17:43'),(0,0,1617,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866226694','5','T','2025-10-31 06:05:47'),(0,0,1618,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7359757075','6','T','2025-10-30 23:49:47'),(0,0,1619,0,'Y','2025-10-31','10:50:00','11:00:00','Fv','9924193397','2','C','2025-10-30 21:16:15'),(0,0,1619,0,'Y','2025-12-05','11:40:00','11:50:00','FV','9924193397','2','C','2025-12-04 20:30:57'),(0,0,1619,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9924193397','2','T','2025-10-31 00:10:27'),(0,0,1619,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9924193397','2','T','2025-12-04 23:26:47'),(0,0,1620,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7738952990','2','T','2025-10-31 00:11:45'),(0,0,1621,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9408949209','3','T','2025-10-31 07:54:43'),(0,0,1622,0,'Y','2025-10-31','10:30:00','10:40:00','Nv','','2','C','2025-10-30 21:15:10'),(0,0,1622,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','6354103775','2','T','2025-10-31 02:11:11'),(0,0,1623,0,'Y','2025-11-29','11:40:00','11:50:00','Fv','9725320141','2','C','2025-11-28 20:22:14'),(0,0,1623,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9725320141','2','T','2025-10-31 02:21:22'),(0,0,1623,0,'Y','2026-01-13','08:00:00','08:30:00','Followup','9725320141','2','T','2025-11-28 23:24:44'),(0,0,1624,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9979023624','2','T','2025-10-31 02:57:48'),(0,0,1624,0,'Y','2025-12-05','10:10:00','10:20:00','FV','9979023624','2','C','2025-12-04 20:26:10'),(0,0,1624,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9979023624','2','T','2025-12-04 22:25:57'),(0,0,1625,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','8866830076','2','T','2025-10-31 03:00:53'),(0,0,1626,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7069352212','3','T','2025-10-30 22:55:23'),(0,0,1627,0,'Y','2025-10-31','10:40:00','10:50:00','Fv','9313489474','2','C','2025-10-30 21:15:45'),(0,0,1627,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9313489474','2','T','2025-10-30 23:46:27'),(0,0,1628,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427377929','3','T','2025-10-31 07:57:47'),(0,0,1629,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8401431890','4','T','2025-11-12 07:30:20'),(0,0,1630,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925326071','3','T','2025-10-30 23:18:05'),(0,0,1631,0,'Y','2025-10-31','11:00:00','11:10:00','','9898141407','4','C','2025-10-30 22:25:52'),(0,0,1631,0,'Y','2025-12-10','18:00:00','18:10:00','FC','9898141407','4','C','2025-12-10 04:32:49'),(0,0,1631,0,'Y','2026-01-29','08:00:00','08:30:00','Followup','9898141407','4','T','2025-10-31 00:11:05'),(0,0,1631,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9898141407','4','T','2025-12-10 06:04:34'),(0,0,1632,0,'Y','2025-10-31','11:10:00','11:20:00','','9898141407','4','C','2025-10-30 22:27:35'),(0,0,1632,0,'Y','2026-01-29','08:00:00','08:30:00','Followup','9898141407','4','T','2025-10-31 00:06:18'),(0,0,1633,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9512855515','2','T','2025-10-31 01:24:31'),(0,0,1633,0,'Y','2025-11-20','11:40:00','11:50:00','Fv','9512855515','2','C','2025-11-19 20:24:50'),(0,0,1633,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9512855515','2','T','2025-11-20 01:46:28'),(0,0,1634,0,'Y','2025-11-07','08:00:00','08:30:00','Followup','7046633988','4','T','2025-10-31 00:46:37'),(0,0,1635,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9925067980','2','T','2025-10-31 01:37:00'),(0,0,1636,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825275744','3','T','2025-10-31 07:59:37'),(0,0,1637,0,'Y','2025-10-31','11:20:00','11:30:00','Fv','9898939811','2','C','2025-10-30 21:18:16'),(0,0,1637,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9898939811','2','T','2025-10-31 00:30:13'),(0,0,1639,0,'Y','2025-10-31','11:00:00','11:10:00','Nv','9427699230','2','C','2025-10-30 21:16:41'),(0,0,1639,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','9427699230','2','T','2025-10-31 02:47:47'),(0,0,1639,0,'Y','2025-12-03','11:40:00','11:50:00','Fv','9427699230','2','C','2025-12-02 20:24:26'),(0,0,1639,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9427699230','2','T','2025-12-02 23:30:35'),(0,0,1640,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979905512','2','T','2025-10-31 01:45:44'),(0,0,1640,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9979905512','2','T','2025-10-31 08:10:41'),(0,0,1642,0,'Y','2025-10-31','11:10:00','11:20:00','Rnv','9714425550','2','C','2025-10-30 21:17:44'),(0,0,1642,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','9714425550','2','T','2025-10-31 02:36:53'),(0,0,1642,0,'Y','2025-11-20','17:20:00','17:30:00','','9714425550','2','C','2025-11-20 02:33:50'),(0,0,1642,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9714425550','2','T','2025-11-20 06:32:46'),(0,0,1644,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9727634585','2','T','2025-10-31 02:10:27'),(0,0,1645,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8000514564','5','T','2025-10-31 00:12:11'),(0,0,1646,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9099062736','2','T','2025-10-31 02:30:15'),(0,0,1649,0,'Y','2025-10-31','11:50:00','12:00:00','','','4','C','2025-10-30 22:30:27'),(0,0,1649,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9909984621','4','T','2025-10-31 01:03:24'),(0,0,1650,0,'Y','2025-10-31','11:40:00','11:50:00','','','4','C','2025-10-30 22:30:13'),(0,0,1650,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9408187888','4','T','2025-10-31 00:53:42'),(0,0,1651,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427306444','5','T','2025-11-05 06:17:08'),(0,0,1651,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9427306444','4','T','2025-11-13 07:28:58'),(0,0,1651,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9427306444','4','T','2025-10-31 01:29:34'),(0,0,1652,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7283982270','2','T','2025-10-31 02:43:45'),(0,0,1652,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','7283982270','2','T','2025-11-01 00:32:05'),(0,0,1653,0,'Y','2025-10-31','11:30:00','11:40:00','','','4','C','2025-10-30 22:29:57'),(0,0,1653,0,'Y','2026-01-29','08:00:00','08:30:00','Followup','9408187888','4','T','2025-10-31 00:59:55'),(0,0,1654,0,'Y','2025-10-31','11:30:00','11:40:00','Nv','7016513600','2','C','2025-10-30 21:18:37'),(0,0,1654,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','7016513600','2','T','2025-10-31 03:19:11'),(0,0,1654,0,'Y','2025-11-10','10:40:00','10:50:00','Fv','7016513600','2','C','2025-11-09 20:29:45'),(0,0,1654,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','7016513600','2','T','2025-11-09 22:52:12'),(0,0,1655,0,'Y','2025-10-31','12:10:00','12:20:00','Fv','9979242372','2','C','2025-10-30 21:23:01'),(0,0,1655,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9979242372','2','T','2025-10-31 01:03:53'),(0,0,1656,0,'Y','2025-10-31','12:10:00','12:20:00','','','4','C','2025-10-30 22:31:23'),(0,0,1656,0,'Y','2025-11-07','08:00:00','08:30:00','Followup','9099256506','4','T','2025-10-31 01:06:26'),(0,0,1657,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8320384151','2','T','2025-10-31 06:54:12'),(0,0,1657,0,'Y','2025-10-31','12:00:00','12:10:00','Nv','8320384151','2','C','2025-10-30 21:22:30'),(0,0,1657,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','8320384151','2','T','2025-10-31 03:10:44'),(0,0,1657,0,'Y','2025-11-10','17:10:00','17:20:00','Fv','8320384151','2','C','2025-11-10 03:10:35'),(0,0,1657,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','8320384151','2','T','2025-11-10 05:05:57'),(0,0,1658,0,'Y','2025-10-31','11:50:00','12:00:00','Fv','9824515442','2','C','2025-10-30 21:21:13'),(0,0,1658,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9824515442','2','T','2025-10-31 01:16:43'),(0,0,1658,0,'Y','2025-12-10','16:50:00','17:00:00','','9824515442','2','C','2025-12-10 02:35:54'),(0,0,1658,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9824515442','2','T','2025-12-10 04:41:25'),(0,0,1659,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9724321946','6','T','2025-10-31 01:30:54'),(0,0,1660,0,'Y','2025-10-31','12:20:00','12:30:00','','','4','C','2025-10-30 22:32:03'),(0,0,1660,0,'Y','2026-01-29','08:00:00','08:30:00','Followup','9428004849','4','T','2025-10-31 01:10:59'),(0,0,1661,0,'Y','2026-01-29','08:00:00','08:30:00','Followup','9825717301','5','T','2025-10-31 00:43:57'),(0,0,1662,0,'Y','2025-10-31','12:30:00','12:40:00','Nv','','2','C','2025-10-30 21:54:25'),(0,0,1662,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9925165656','2','T','2025-10-31 03:27:34'),(0,0,1662,0,'Y','2025-11-10','11:20:00','11:30:00','Fv','9925165656','2','C','2025-11-09 20:31:43'),(0,0,1662,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9925165656','2','T','2025-11-09 23:35:34'),(0,0,1662,0,'Y','2025-11-25','10:50:00','11:00:00','Fv','9925165656','2','C','2025-11-24 20:24:37'),(0,0,1662,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9925165656','2','T','2025-11-24 23:00:21'),(0,0,1663,0,'Y','2026-01-29','08:00:00','08:30:00','Followup','9824502246','4','T','2025-10-31 06:55:27'),(0,0,1665,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','8153099900','2','T','2025-10-31 03:14:01'),(0,0,1667,0,'Y','2025-10-31','12:40:00','12:50:00','Fv','9998606544','2','C','2025-10-30 21:25:15'),(0,0,1667,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9998606544','2','T','2025-10-31 01:58:39'),(0,0,1667,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9998606544','2','T','2025-12-09 22:45:48'),(0,0,1668,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7825953964','3','T','2025-10-31 08:00:56'),(0,0,1669,0,'Y','2025-10-31','11:40:00','11:50:00','Fv','9737587087','2','C','2025-10-30 21:19:12'),(0,0,1669,0,'Y','2025-12-13','11:20:00','11:30:00','Fv','9737587087','2','C','2025-12-12 20:17:46'),(0,0,1669,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9737587087','2','T','2025-10-31 02:52:13'),(0,0,1669,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','9737587087','2','T','2025-12-12 23:01:08'),(0,0,1670,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725548105','6','T','2025-10-31 01:14:58'),(0,0,1671,0,'Y','2025-10-31','12:50:00','13:00:00','Fv','9825346412','2','C','2025-10-30 21:26:41'),(0,0,1671,0,'Y','2025-11-29','11:20:00','11:30:00','Fv','9825346412','2','C','2025-11-28 22:50:58'),(0,0,1671,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9825346412','2','T','2025-10-31 02:02:37'),(0,0,1671,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9825346412','2','T','2025-11-29 00:31:32'),(0,0,1672,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9722655230','6','T','2025-10-31 01:23:49'),(0,0,1673,0,'Y','2025-10-31','12:20:00','12:30:00','Fv','7984566928','2','C','2025-10-30 21:23:52'),(0,0,1673,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','7984566928','2','T','2025-10-31 02:20:28'),(0,0,1674,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913790338','4','T','2025-11-21 00:52:07'),(0,0,1674,0,'Y','2025-10-31','12:30:00','12:40:00','','9913790338','4','C','2025-10-30 22:32:40'),(0,0,1674,0,'Y','2025-11-20','12:20:00','12:30:00','','9913790338','4','R','2025-11-19 21:44:22'),(0,0,1674,0,'Y','2026-01-29','08:00:00','08:30:00','Followup','9913790338','4','T','2025-10-31 01:51:31'),(0,0,1675,0,'Y','2026-01-29','08:00:00','08:30:00','Followup','9712897999','4','T','2025-10-31 06:55:18'),(0,0,1676,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','8780154026','2','T','2025-10-31 03:40:50'),(0,0,1676,0,'Y','2025-12-01','12:50:00','13:00:00','Fv','8780154026','2','B','2025-11-30 20:24:32'),(0,0,1676,0,'Y','2025-12-04','12:50:00','13:00:00','Fv','8780154026','2','C','2025-12-03 20:27:52'),(0,0,1676,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','8780154026','2','T','2025-12-04 00:57:06'),(0,0,1677,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726503793','4','T','2025-10-31 06:49:40'),(0,0,1678,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429090390','4','T','2025-10-31 06:48:24'),(0,0,1678,0,'Y','2025-10-31','12:40:00','12:50:00','','9429090390','4','C','2025-10-31 00:36:20'),(0,0,1679,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9979006937','2','T','2025-10-31 03:05:53'),(0,0,1680,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7698672826','3','T','2025-10-31 07:52:49'),(0,0,1681,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','6356080683','2','T','2025-10-31 03:43:48'),(0,0,1682,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9510139262','5','T','2025-10-31 07:32:13'),(0,0,1683,0,'Y','2025-10-31','17:10:00','17:20:00','FV','','2','C','2025-10-31 03:05:23'),(0,0,1683,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9824844252','2','T','2025-10-31 05:51:31'),(0,0,1684,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7819060902','2','T','2025-10-31 05:37:09'),(0,0,1685,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723352997','2','T','2025-10-31 05:37:41'),(0,0,1686,0,'Y','2025-10-31','16:50:00','17:00:00','FV','','2','C','2025-10-31 03:04:51'),(0,0,1686,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9924014455','2','T','2025-10-31 05:43:32'),(0,0,1687,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7878797980','2','T','2025-10-31 05:39:41'),(0,0,1689,0,'Y','2025-11-27','16:50:00','17:00:00','Fv','9909008950','2','C','2025-11-27 03:36:22'),(0,0,1689,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9909008950','2','T','2025-10-31 05:57:33'),(0,0,1689,0,'Y','2026-01-06','08:00:00','08:30:00','Followup','9909008950','2','T','2025-11-27 04:50:04'),(0,0,1690,0,'Y','2025-10-31','16:40:00','16:50:00','FV','','2','C','2025-10-31 03:04:24'),(0,0,1690,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9426460258','2','T','2025-10-31 06:00:17'),(0,0,1691,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200089039','6','T','2025-10-31 06:45:15'),(0,0,1692,0,'Y','2025-10-31','17:00:00','17:10:00','NV','','2','C','2025-10-31 03:05:10'),(0,0,1692,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9016265156','2','T','2025-10-31 06:12:37'),(0,0,1693,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','9979103817','2','T','2025-10-31 07:16:27'),(0,0,1694,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','7567069595','2','T','2025-10-31 08:56:17'),(0,0,1694,0,'Y','2025-11-15','11:10:00','11:20:00','Fv','7567069595','2','C','2025-11-14 20:21:59'),(0,0,1694,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','7567069595','2','T','2025-11-14 22:58:54'),(0,0,1695,0,'Y','2025-10-31','17:40:00','17:50:00','NE','','2','C','2025-10-31 03:06:22'),(0,0,1695,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9227648272','2','T','2025-10-31 07:36:21'),(0,0,1696,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','8160205670','2','T','2025-10-31 07:27:09'),(0,0,1697,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825384040','2','T','2025-10-31 08:08:28'),(0,0,1697,0,'Y','2025-11-19','17:50:00','18:00:00','Fv','9825384040','2','C','2025-11-19 03:13:31'),(0,0,1697,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','9825384040','2','T','2025-11-01 00:09:11'),(0,0,1697,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9825384040','2','T','2025-11-19 05:14:16'),(0,0,1697,0,'Y','2025-12-12','16:40:00','16:50:00','Fv','9825384040','2','C','2025-12-12 03:04:17'),(0,0,1697,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9825384040','2','T','2025-12-12 04:39:26'),(0,0,1698,0,'Y','2025-10-31','18:00:00','18:10:00','NV','','2','C','2025-10-31 03:07:28'),(0,0,1698,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','9427227415','2','T','2025-10-31 09:05:06'),(0,0,1698,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9427227415','2','T','2025-11-27 00:50:42'),(0,0,1698,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','9427227415','2','T','2025-12-18 00:56:30'),(0,0,1699,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426028763','5','T','2025-10-31 06:19:08'),(0,0,1700,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429979536','2','T','2025-10-31 06:49:28'),(0,0,1700,0,'Y','2025-10-31','17:30:00','17:40:00','NV','','2','C','2025-10-31 03:06:04'),(0,0,1701,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9016535039','4','T','2025-10-31 06:49:28'),(0,0,1702,0,'Y','2026-01-29','08:00:00','08:30:00','Followup','9723350350','4','T','2025-10-31 06:54:30'),(0,0,1703,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9737777734','5','T','2025-10-31 06:50:04'),(0,0,1703,0,'Y','2025-12-11','18:20:00','18:30:00','Fv','9737777734','4','C','2025-12-11 04:30:53'),(0,0,1703,0,'Y','2026-03-11','08:00:00','08:30:00','Followup','9737777734','4','T','2025-12-11 07:06:04'),(0,0,1704,0,'Y','2026-02-28','08:00:00','08:30:00','Followup','9913343533','2','T','2025-10-31 08:00:17'),(0,0,1705,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','9825839935','2','T','2025-10-31 08:47:58'),(0,0,1705,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9825839935','2','T','2025-12-18 07:32:11'),(0,0,1706,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426538380','7','T','2025-10-31 07:09:55'),(0,0,1707,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725544401','5','T','2025-10-31 06:53:57'),(0,0,1708,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9427727136','2','T','2025-10-31 08:55:05'),(0,0,1708,0,'Y','2025-11-21','08:00:00','08:30:00','Followup','9427727136','2','T','2025-11-11 06:34:11'),(0,0,1709,0,'Y','2025-10-31','18:40:00','18:50:00','NE','9426909286','2','C','2025-10-31 06:41:47'),(0,0,1709,0,'Y','2025-11-07','08:00:00','08:30:00','Followup','9426909286','2','T','2025-10-31 07:53:34'),(0,0,1710,0,'Y','2025-10-31','18:10:00','18:20:00','FV','','2','C','2025-10-31 03:07:46'),(0,0,1710,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9408704312','2','T','2025-10-31 07:39:44'),(0,0,1711,0,'Y','2025-10-31','18:30:00','18:40:00','','9879966599','4','C','2025-10-31 05:22:08'),(0,0,1711,0,'Y','2026-01-29','08:00:00','08:30:00','Followup','9879966599','4','T','2025-10-31 07:10:15'),(0,0,1712,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9374116390','5','T','2025-10-31 07:07:44'),(0,0,1713,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9408938642','5','T','2025-10-31 07:32:42'),(0,0,1714,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9016535039','3','T','2025-10-31 07:50:58'),(0,0,1715,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825784749','7','T','2025-10-31 07:10:21'),(0,0,1716,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7961601001','2','T','2025-10-31 07:43:35'),(0,0,1717,0,'Y','2025-10-31','18:40:00','18:50:00','','','4','C','2025-10-31 05:23:42'),(0,0,1717,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','8320649400','4','T','2025-10-31 08:45:23'),(0,0,1717,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','8320649400','4','T','2025-12-01 06:58:01'),(0,0,1718,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9274900900','3','T','2025-10-31 07:52:10'),(0,0,1719,0,'Y','2025-10-31','19:00:00','19:10:00','','9714497176','4','C','2025-10-31 06:23:59'),(0,0,1719,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9714497176','4','T','2025-10-31 07:27:11'),(0,0,1719,0,'Y','2025-11-11','18:00:00','18:10:00','','9714497176','4','C','2025-11-11 04:03:33'),(0,0,1719,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','9714497176','4','T','2025-11-11 05:52:29'),(0,0,1720,0,'Y','2025-10-31','18:30:00','18:40:00','NV','','2','C','2025-10-31 03:10:22'),(0,0,1720,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9662096619','2','T','2025-10-31 09:11:37'),(0,0,1720,0,'Y','2025-11-10','12:50:00','13:00:00','Fv','9662096619','2','C','2025-11-09 20:36:04'),(0,0,1720,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9662096619','2','T','2025-11-10 00:40:12'),(0,0,1721,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9824459985','2','T','2025-10-31 09:11:03'),(0,0,1721,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9824459985','2','T','2025-12-09 06:41:47'),(0,0,1722,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8128333334','4','T','2025-10-31 07:31:18'),(0,0,1722,0,'Y','2025-11-07','08:00:00','08:30:00','Followup','8128333334','4','T','2025-10-31 08:01:07'),(0,0,1723,0,'Y','2025-11-05','08:00:00','08:30:00','Followup','9327135665','2','T','2025-10-31 09:16:03'),(0,0,1723,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','9327135665','2','T','2025-11-05 06:22:59'),(0,0,1723,0,'Y','2025-11-15','12:10:00','12:20:00','Fv','9327135665','2','C','2025-11-14 20:23:45'),(0,0,1723,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9327135665','2','T','2025-11-14 23:51:19'),(0,0,1724,0,'Y','2025-10-31','18:50:00','19:00:00','FV','','2','C','2025-10-31 03:10:37'),(0,0,1724,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9428465666','2','T','2025-10-31 08:20:15'),(0,0,1725,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9898538208','2','T','2025-10-31 09:18:22'),(0,0,1727,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9822579739','6','T','2025-10-31 08:40:14'),(0,0,1728,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9662441600','2','T','2025-10-31 09:53:32'),(0,0,1728,0,'Y','2025-12-03','11:50:00','12:00:00','Fv','9662441600','2','C','2025-12-02 20:24:37'),(0,0,1728,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9662441600','2','T','2025-12-03 01:16:34'),(0,0,1729,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9913552721','4','T','2025-11-12 06:49:34'),(0,0,1732,0,'Y','2025-11-08','08:00:00','08:30:00','Followup','9879240012','2','T','2025-11-01 00:04:25'),(0,0,1733,0,'Y','2025-11-11','08:00:00','08:30:00','Followup','9510012249','2','T','2025-11-01 02:44:08'),(0,0,1733,0,'Y','2025-11-13','12:20:00','12:30:00','FV','9510012249','2','C','2025-11-12 20:42:04'),(0,0,1733,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9510012249','2','T','2025-11-12 23:50:36'),(0,0,1734,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9327881351','5','T','2025-11-01 00:09:00'),(0,0,1735,0,'Y','2025-11-01','10:40:00','10:50:00','Fv','9714227865','2','C','2025-10-31 21:37:16'),(0,0,1735,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9714227865','2','T','2025-10-31 23:36:41'),(0,0,1736,0,'Y','2025-11-29','11:10:00','11:20:00','Fv','9979713445','2','C','2025-11-28 20:19:17'),(0,0,1736,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9979713445','2','T','2025-11-01 02:54:53'),(0,0,1736,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9979713445','2','T','2025-11-28 22:50:06'),(0,0,1737,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9824218204','2','T','2025-11-01 00:26:16'),(0,0,1738,0,'Y','2025-11-01','10:30:00','10:40:00','Nv','9157008020','2','C','2025-10-31 21:36:07'),(0,0,1738,0,'Y','2025-11-11','08:00:00','08:30:00','Followup','9157008020','2','T','2025-11-01 02:31:01'),(0,0,1738,0,'Y','2025-11-11','10:20:00','10:30:00','Fv','9157008020','2','C','2025-11-10 20:23:31'),(0,0,1738,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9157008020','2','T','2025-11-10 22:29:17'),(0,0,1739,0,'Y','2025-11-01','12:00:00','12:10:00','Nv','9737742204','2','C','2025-10-31 21:51:55'),(0,0,1739,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9737742204','2','T','2025-11-01 02:58:50'),(0,0,1740,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8128500966','7','T','2025-10-31 23:32:25'),(0,0,1741,0,'Y','2025-11-01','11:50:00','12:00:00','FV','7046814012','2','C','2025-10-31 22:54:13'),(0,0,1741,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','7046814012','2','T','2025-11-01 00:38:19'),(0,0,1742,0,'Y','2025-11-01','10:10:00','10:20:00','Fv','9825313123','2','C','2025-10-31 21:34:42'),(0,0,1742,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9825313123','2','T','2025-10-31 23:55:21'),(0,0,1743,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','9825995356','2','T','2025-11-01 01:43:56'),(0,0,1744,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','7016176010','2','T','2025-11-01 01:49:39'),(0,0,1744,0,'Y','2025-12-12','16:50:00','17:00:00','Fv','7016176010','2','C','2025-12-12 03:04:27'),(0,0,1744,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','7016176010','2','T','2025-12-12 04:43:21'),(0,0,1745,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866504560','3','T','2025-11-01 00:04:01'),(0,0,1746,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9898565429','2','T','2025-11-01 01:53:07'),(0,0,1747,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712280451','7','T','2025-10-31 23:32:39'),(0,0,1748,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426477743','5','T','2025-10-31 23:28:56'),(0,0,1748,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','9426477743','5','T','2025-10-31 23:40:11'),(0,0,1749,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7016061837','3','T','2025-11-01 00:12:45'),(0,0,1750,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428791962','4','T','2025-11-29 00:21:58'),(0,0,1750,0,'Y','2025-11-01','11:20:00','11:30:00','','9428791962','4','C','2025-10-31 22:49:22'),(0,0,1750,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','9428791962','4','T','2025-11-01 01:50:00'),(0,0,1751,0,'Y','2025-11-01','11:40:00','11:50:00','Fv','9925544198','2','C','2025-10-31 21:50:21'),(0,0,1751,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9925544198','2','T','2025-11-01 01:01:03'),(0,0,1752,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9426483846','2','T','2025-11-01 01:59:31'),(0,0,1753,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6352610363','3','T','2025-11-01 00:22:29'),(0,0,1754,0,'Y','2025-11-01','11:30:00','11:40:00','','9879221630','4','C','2025-10-31 23:41:40'),(0,0,1754,0,'Y','2025-11-11','08:00:00','08:30:00','Followup','9879221630','4','T','2025-11-01 02:16:25'),(0,0,1755,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426447797','3','T','2025-11-01 08:53:59'),(0,0,1756,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9909605057','5','T','2025-11-01 00:08:49'),(0,0,1757,0,'Y','2025-11-08','08:00:00','08:30:00','Followup','9913149356','4','T','2025-11-01 00:33:33'),(0,0,1757,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9913149356','4','T','2025-11-10 23:30:37'),(0,0,1758,0,'Y','2025-11-01','11:00:00','11:10:00','Nv','9033403073','2','C','2025-10-31 21:48:09'),(0,0,1758,0,'Y','2025-11-18','12:20:00','12:30:00','Fv','9033403073','2','C','2025-11-17 20:24:50'),(0,0,1758,0,'Y','2025-11-21','08:00:00','08:30:00','Followup','9033403073','2','T','2025-11-01 03:21:49'),(0,0,1758,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9033403073','2','T','2025-11-18 00:40:11'),(0,0,1759,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727631314','3','T','2025-11-01 00:27:42'),(0,0,1760,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978334336','2','T','2025-11-01 00:58:55'),(0,0,1760,0,'Y','2025-11-01','11:30:00','11:40:00','Nv','9978334336','2','C','2025-10-31 21:49:23'),(0,0,1761,0,'Y','2025-11-11','08:00:00','08:30:00','Followup','9925870456','4','T','2025-11-01 01:52:33'),(0,0,1762,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','9924822320','4','T','2025-11-01 00:45:04'),(0,0,1763,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426987911','3','T','2025-11-07 06:33:11'),(0,0,1763,0,'Y','2025-11-11','08:00:00','08:30:00','Followup','9426987911','4','T','2025-11-01 00:57:51'),(0,0,1764,0,'Y','2025-11-01','11:20:00','11:30:00','Fv','9879019909','2','C','2025-10-31 21:48:55'),(0,0,1764,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9879019909','2','T','2025-11-01 01:24:26'),(0,0,1765,0,'Y','2025-11-11','08:00:00','08:30:00','Followup','9687440954','2','T','2025-11-01 03:38:17'),(0,0,1765,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9687440954','2','T','2025-12-04 07:10:52'),(0,0,1766,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7623947765','3','T','2025-11-01 08:55:04'),(0,0,1767,0,'Y','2025-11-01','12:10:00','12:20:00','Fv','','2','C','2025-10-31 21:52:53'),(0,0,1767,0,'Y','2026-04-30','08:00:00','08:30:00','Followup','9409663971','2','T','2025-11-01 01:29:51'),(0,0,1768,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9428295211','4','T','2025-11-01 01:06:26'),(0,0,1769,0,'Y','2025-11-01','12:20:00','12:30:00','Fv','9624375599','2','C','2025-10-31 21:53:37'),(0,0,1769,0,'Y','2025-11-28','17:40:00','17:50:00','','9624375599','2','C','2025-11-28 02:29:12'),(0,0,1769,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9624375599','2','T','2025-11-01 01:35:17'),(0,0,1769,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9624375599','2','T','2025-11-28 05:43:21'),(0,0,1770,0,'Y','2025-11-11','08:00:00','08:30:00','Followup','9099195071','2','T','2025-11-01 02:38:58'),(0,0,1771,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712197397','5','T','2025-11-01 01:09:48'),(0,0,1773,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099904257','6','T','2025-11-01 00:58:41'),(0,0,1774,0,'Y','2025-11-01','12:40:00','12:50:00','Fv','9601768282','2','C','2025-10-31 21:54:09'),(0,0,1774,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9601768282','2','T','2025-11-01 01:38:18'),(0,0,1775,0,'Y','2025-11-11','08:00:00','08:30:00','Followup','9327882263','2','T','2025-11-01 03:42:36'),(0,0,1775,0,'Y','2025-11-21','12:20:00','12:30:00','','9327882263','2','C','2025-11-20 20:31:42'),(0,0,1775,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9327882263','2','T','2025-11-20 23:55:21'),(0,0,1776,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9624329209','5','T','2025-11-01 01:21:57'),(0,0,1777,0,'Y','2025-11-11','08:00:00','08:30:00','Followup','6306664146','4','T','2025-11-01 02:22:23'),(0,0,1778,0,'Y','2025-11-04','12:10:00','12:20:00','Fv','9099333835','2','C','2025-11-03 20:28:49'),(0,0,1778,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9099633835','2','T','2025-11-04 02:12:06'),(0,0,1778,0,'Y','2025-11-11','08:00:00','08:30:00','Followup','9099333835','2','T','2025-11-01 03:11:27'),(0,0,1778,0,'Y','2025-11-11','11:20:00','11:30:00','Fv','9099633835','2','C','2025-11-10 20:24:24'),(0,0,1778,0,'Y','2025-11-20','17:10:00','17:20:00','','9099633835','2','B','2025-11-20 02:33:44'),(0,0,1778,0,'Y','2025-11-21','08:00:00','08:30:00','Followup','9099633835','2','T','2025-11-10 23:30:58'),(0,0,1778,0,'Y','2025-12-03','17:20:00','17:30:00','Fv','9099633835','2','B','2025-12-03 02:51:38'),(0,0,1778,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9099633835','2','T','2025-11-19 05:28:20'),(0,0,1779,0,'Y','2025-11-01','12:50:00','13:00:00','Fv','9879577996','2','C','2025-10-31 21:54:38'),(0,0,1779,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9879577996','2','T','2025-11-01 02:10:10'),(0,0,1779,0,'Y','2025-12-08','10:10:00','10:20:00','Fv','9879577996','2','C','2025-12-07 20:10:14'),(0,0,1779,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9879577996','2','T','2025-12-07 22:15:52'),(0,0,1780,0,'Y','2025-11-01','12:30:00','12:40:00','Nv','','2','C','2025-10-31 23:51:12'),(0,0,1780,0,'Y','2025-11-11','08:00:00','08:30:00','Followup','9662141280','2','T','2025-11-01 03:38:37'),(0,0,1780,0,'Y','2025-11-11','10:50:00','11:00:00','Fv','9662141280','2','C','2025-11-10 20:23:54'),(0,0,1780,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9662141280','2','T','2025-11-10 22:44:20'),(0,0,1781,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725063634','5','T','2025-11-01 01:35:28'),(0,0,1782,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9328068762','5','T','2025-11-01 01:58:04'),(0,0,1783,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9601600055','3','T','2025-11-01 08:55:43'),(0,0,1784,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7016315597','6','T','2025-11-01 08:01:26'),(0,0,1785,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9067688991','3','T','2025-11-01 08:53:31'),(0,0,1786,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9016244041','3','T','2025-11-01 08:50:40'),(0,0,1787,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6355353795','3','T','2025-11-01 08:50:05'),(0,0,1788,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8469304537','3','T','2025-11-07 06:38:20'),(0,0,1789,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9586405532','6','T','2025-11-01 08:00:54'),(0,0,1797,0,'Y','2025-11-03','10:20:00','10:30:00','Fv','9879458558','2','C','2025-11-02 20:15:37'),(0,0,1797,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9879458558','2','T','2025-11-02 22:42:18'),(0,0,1797,0,'Y','2025-12-19','10:20:00','10:30:00','Fv','9879458558','2','C','2025-12-18 20:29:32'),(0,0,1797,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9879458558','2','T','2025-12-18 22:27:52'),(0,0,1798,0,'Y','2025-11-03','10:10:00','10:20:00','Fv','9879458558','2','C','2025-11-02 20:14:43'),(0,0,1798,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9879458558','2','T','2025-11-02 22:30:41'),(0,0,1798,0,'Y','2025-12-19','10:10:00','10:20:00','Fv','9879458558','2','C','2025-12-18 20:29:17'),(0,0,1798,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9879458558','2','T','2025-12-18 22:20:31'),(0,0,1799,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428052206','5','T','2025-11-02 23:01:16'),(0,0,1801,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913600302','3','T','2025-11-02 22:16:16'),(0,0,1802,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9328552802','3','T','2025-11-03 05:32:13'),(0,0,1803,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9723797314','2','T','2025-11-02 22:56:59'),(0,0,1804,0,'Y','2025-11-03','10:30:00','10:40:00','Nv','8238404032','2','C','2025-11-02 20:18:11'),(0,0,1804,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','8238404032','2','T','2025-11-03 01:22:02'),(0,0,1804,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','8238404032','2','T','2025-11-12 23:25:20'),(0,0,1805,0,'Y','2025-11-12','18:40:00','18:50:00','Fv','9824581152','2','C','2025-11-12 02:45:38'),(0,0,1805,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9824581152','2','T','2025-11-03 01:51:51'),(0,0,1805,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9824581152','2','T','2025-11-12 06:38:41'),(0,0,1806,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6352291002','3','T','2025-11-02 22:15:54'),(0,0,1807,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9824300451','2','T','2025-11-02 23:38:12'),(0,0,1809,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662635554','5','T','2025-11-02 23:52:23'),(0,0,1810,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9601778870','2','T','2025-11-02 23:42:00'),(0,0,1811,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9737121348','2','T','2025-11-02 23:45:12'),(0,0,1811,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9737121348','2','T','2025-12-19 06:30:47'),(0,0,1812,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6352291002','5','T','2025-11-02 22:43:43'),(0,0,1813,0,'Y','2025-11-03','11:30:00','11:40:00','Nv','9409673264','2','C','2025-11-02 20:20:59'),(0,0,1813,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9409673264','2','T','2025-11-03 01:52:14'),(0,0,1813,0,'Y','2025-11-13','10:10:00','10:20:00','FV','9409673264','2','C','2025-11-12 20:32:50'),(0,0,1813,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9409673264','2','T','2025-11-12 22:21:17'),(0,0,1814,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662775502','5','T','2025-11-02 22:49:50'),(0,0,1815,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824299290','2','T','2025-11-02 23:21:09'),(0,0,1816,0,'Y','2025-11-03','10:50:00','11:00:00','Fv','9429168532','2','C','2025-11-02 20:19:18'),(0,0,1816,0,'Y','2026-03-03','08:00:00','08:30:00','Followup','9429168532','2','T','2025-11-02 22:59:01'),(0,0,1817,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7778977758','3','T','2025-11-03 05:24:51'),(0,0,1818,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9824148401','2','T','2025-11-02 23:57:11'),(0,0,1819,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9265978775','2','T','2025-11-03 00:20:51'),(0,0,1819,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9265978775','2','T','2025-11-03 02:04:07'),(0,0,1820,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924067537','3','T','2025-11-03 05:20:37'),(0,0,1821,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879035175','3','T','2025-11-02 22:58:43'),(0,0,1822,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9925872172','2','T','2025-11-02 23:32:23'),(0,0,1822,0,'Y','2025-12-03','10:20:00','10:30:00','Fv','9925872172','2','C','2025-12-02 20:20:07'),(0,0,1822,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9925872172','2','T','2025-12-02 22:24:06'),(0,0,1823,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9978712376','2','T','2025-11-03 01:58:46'),(0,0,1824,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','8730021869','2','T','2025-11-03 00:33:09'),(0,0,1825,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9601670600','2','T','2025-11-03 00:53:37'),(0,0,1826,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825076297','5','T','2025-11-02 23:45:01'),(0,0,1826,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','9825076297','5','T','2025-12-01 00:48:04'),(0,0,1827,0,'Y','2026-03-03','08:00:00','08:30:00','Followup','9825076297','5','T','2025-11-02 23:43:57'),(0,0,1828,0,'Y','2025-11-03','12:10:00','12:20:00','Fv','','2','C','2025-11-02 20:21:54'),(0,0,1828,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9327806056','2','T','2025-11-03 00:00:54'),(0,0,1829,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9228829765','2','T','2025-11-03 01:05:03'),(0,0,1829,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9228829765','2','T','2025-12-10 23:11:14'),(0,0,1830,0,'Y','2025-11-03','12:00:00','12:10:00','','','2','C','2025-11-02 22:46:51'),(0,0,1830,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9998042408','2','T','2025-11-03 00:09:15'),(0,0,1831,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825052506','5','T','2025-11-02 23:51:57'),(0,0,1832,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9586367752','6','T','2025-11-03 00:30:03'),(0,0,1833,0,'Y','2025-11-03','12:20:00','12:30:00','Fv','9824950109','2','C','2025-11-02 20:22:22'),(0,0,1833,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9824950109','2','T','2025-11-03 00:12:10'),(0,0,1834,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9924783428','2','T','2025-11-03 01:32:30'),(0,0,1834,0,'Y','2025-12-06','12:50:00','13:00:00','Fv','9924783428','2','C','2025-12-05 20:25:01'),(0,0,1834,0,'Y','2026-02-04','08:00:00','08:30:00','Followup','9924783428','2','T','2025-12-05 23:06:51'),(0,0,1835,0,'Y','2025-11-03','11:50:00','12:00:00','Fv','6352996842','2','C','2025-11-02 20:21:34'),(0,0,1835,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','6352996842','2','T','2025-11-03 00:46:00'),(0,0,1835,0,'Y','2025-12-18','10:50:00','11:00:00','Fv','6352996842','2','C','2025-12-17 20:26:42'),(0,0,1835,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','6352996842','2','T','2025-12-18 00:44:17'),(0,0,1836,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925475490','6','T','2025-11-03 00:20:17'),(0,0,1837,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879121312','6','T','2025-11-03 00:09:59'),(0,0,1838,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898317569','3','T','2025-11-03 01:09:58'),(0,0,1839,0,'Y','2026-03-03','08:00:00','08:30:00','Followup','9227733140','2','T','2025-11-03 00:17:11'),(0,0,1840,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9107967973','6','T','2025-11-03 00:29:26'),(0,0,1841,0,'Y','2025-11-03','12:50:00','13:00:00','Fv','','2','C','2025-11-02 20:23:36'),(0,0,1841,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9265277355','2','T','2025-11-03 00:38:28'),(0,0,1841,0,'Y','2026-01-24','08:00:00','08:30:00','Followup','9265277355','2','T','2025-12-10 07:18:26'),(0,0,1842,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9824291525','2','T','2025-11-03 04:35:08'),(0,0,1842,0,'Y','2025-11-25','11:40:00','11:50:00','Fv','9824291525','2','C','2025-11-24 20:25:16'),(0,0,1842,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9824291525','2','T','2025-11-24 23:25:02'),(0,0,1842,0,'Y','2025-12-18','18:10:00','18:20:00','','9824291525','2','C','2025-12-18 01:52:58'),(0,0,1842,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','9824291525','2','T','2025-12-18 06:28:14'),(0,0,1843,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200918908','5','T','2025-11-03 00:33:42'),(0,0,1844,0,'Y','2025-11-03','12:40:00','12:50:00','Fv','9662300012','2','C','2025-11-02 20:22:54'),(0,0,1844,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9662300012','2','T','2025-11-03 00:41:35'),(0,0,1845,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9978639022','2','T','2025-11-03 01:58:05'),(0,0,1847,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909960199','6','T','2025-11-03 01:01:19'),(0,0,1848,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725504290','3','T','2025-11-03 05:06:56'),(0,0,1849,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200551129','3','T','2025-11-03 05:24:20'),(0,0,1850,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8460080414','3','T','2025-11-03 05:32:33'),(0,0,1851,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9879401301','2','T','2025-11-03 05:15:44'),(0,0,1852,0,'Y','2025-11-03','17:00:00','17:10:00','NV','','2','C','2025-11-03 02:23:12'),(0,0,1852,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9426165231','2','T','2025-11-03 06:16:32'),(0,0,1852,0,'Y','2025-11-13','16:40:00','16:50:00','FV','9426165231','2','C','2025-11-13 03:22:13'),(0,0,1852,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9426165231','2','T','2025-11-13 04:36:51'),(0,0,1853,0,'Y','2025-11-03','16:50:00','17:00:00','FV','','2','C','2025-11-03 02:22:58'),(0,0,1853,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9725653555','2','T','2025-11-03 04:38:35'),(0,0,1853,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9725653555','2','T','2025-12-03 00:24:13'),(0,0,1854,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9924211174','2','T','2025-11-03 06:02:26'),(0,0,1855,0,'Y','2025-11-03','17:10:00','17:20:00','NV','','2','C','2025-11-03 02:24:11'),(0,0,1855,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9016547167','2','T','2025-11-03 04:57:57'),(0,0,1856,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974555515','5','T','2025-11-03 05:48:02'),(0,0,1857,0,'Y','2025-11-03','17:50:00','18:00:00','Fv','','2','C','2025-11-03 02:26:44'),(0,0,1857,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9724140437','2','T','2025-11-03 05:02:04'),(0,0,1857,0,'Y','2025-12-19','12:20:00','12:30:00','Fv','9724140437','2','B','2025-12-18 20:34:26'),(0,0,1857,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','9724140437','2','T','2025-12-17 06:21:30'),(0,0,1858,0,'Y','2025-11-08','08:00:00','08:30:00','Followup','9426973000','2','T','2025-11-03 05:12:35'),(0,0,1859,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9426830473','2','T','2025-11-03 05:22:31'),(0,0,1860,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849213588','3','T','2025-11-03 05:05:47'),(0,0,1861,0,'Y','2025-11-03','18:00:00','18:10:00','NV','','2','C','2025-11-03 02:27:11'),(0,0,1861,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','7984469672','2','T','2025-11-03 07:07:04'),(0,0,1861,0,'Y','2025-11-25','17:10:00','17:20:00','','7984469672','2','C','2025-11-25 01:27:14'),(0,0,1861,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','7984469672','2','T','2025-11-25 04:53:21'),(0,0,1862,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9537440010','2','T','2025-11-03 06:03:03'),(0,0,1862,0,'Y','2025-11-03','17:30:00','17:40:00','NV','','2','C','2025-11-03 02:25:57'),(0,0,1863,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825313813','5','T','2025-11-03 06:26:42'),(0,0,1864,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974791313','5','T','2025-11-03 06:00:48'),(0,0,1865,0,'Y','2025-12-22','18:10:00','18:20:00','Fv','7383111254','2','B','2025-12-22 03:47:05'),(0,0,1865,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','7383111254','2','T','2025-11-03 06:21:52'),(0,0,1866,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','9601631999','2','T','2025-11-03 06:27:11'),(0,0,1867,0,'Y','2025-11-03','18:20:00','18:30:00','FV','','2','C','2025-11-03 02:27:49'),(0,0,1867,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9824115954','2','T','2025-11-03 06:04:41'),(0,0,1868,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8128046478','5','T','2025-11-03 06:06:08'),(0,0,1869,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714235245','5','T','2025-11-03 06:00:22'),(0,0,1870,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879778332','2','T','2025-11-03 06:56:59'),(0,0,1870,0,'Y','2025-11-12','10:40:00','10:50:00','Fv','9879778332','2','C','2025-11-11 20:26:51'),(0,0,1870,0,'Y','2025-11-22','08:00:00','08:30:00','Followup','9879778332','2','T','2025-11-11 23:45:15'),(0,0,1871,0,'Y','2025-11-03','18:30:00','18:40:00','NV','','2','C','2025-11-03 02:28:07'),(0,0,1871,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9537622244','2','T','2025-11-03 07:23:57'),(0,0,1872,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8511600529','6','T','2025-11-03 06:21:28'),(0,0,1873,0,'Y','2025-12-09','18:10:00','18:20:00','Fv','8347000033','2','C','2025-12-09 03:21:51'),(0,0,1873,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','8347000033','2','T','2025-11-03 07:15:32'),(0,0,1873,0,'Y','2026-02-07','08:00:00','08:30:00','Followup','8347000033','2','T','2025-12-09 05:47:25'),(0,0,1874,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9347292178','5','T','2025-11-03 06:09:02'),(0,0,1875,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925206386','5','T','2025-11-03 06:18:32'),(0,0,1876,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925206986','5','T','2025-11-03 06:20:20'),(0,0,1877,0,'Y','2025-11-03','18:50:00','19:00:00','FV','','2','C','2025-11-03 02:29:04'),(0,0,1877,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9427424513','2','T','2025-11-03 06:30:41'),(0,0,1878,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9737645707','5','T','2025-11-03 06:25:48'),(0,0,1878,0,'Y','2025-12-10','19:00:00','19:10:00','FC','9737645707','4','B','2025-12-10 05:10:14'),(0,0,1878,0,'Y','2025-12-18','12:30:00','12:40:00','','9737645707','4','B','2025-12-17 23:10:57'),(0,0,1878,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9737645707','5','T','2025-12-11 23:14:05'),(0,0,1879,0,'Y','2025-11-03','19:00:00','19:10:00','NV','9726612128','2','C','2025-11-03 04:29:11'),(0,0,1879,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9726612128','2','T','2025-11-03 07:35:48'),(0,0,1880,0,'Y','2025-11-03','17:40:00','17:50:00','FV','','2','C','2025-11-03 02:26:24'),(0,0,1880,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9724428787','2','T','2025-11-03 07:33:55'),(0,0,1880,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9724428787','2','T','2025-12-01 04:57:36'),(0,0,1881,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428299697','3','T','2025-11-03 07:21:59'),(0,0,1882,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7016272606','6','T','2025-11-03 07:16:07'),(0,0,1883,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429550637','3','T','2025-11-03 07:23:14'),(0,0,1884,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662311964','5','T','2025-11-03 07:02:18'),(0,0,1885,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427122539','6','T','2025-11-03 07:16:31'),(0,0,1886,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9265206339','6','T','2025-11-03 07:29:12'),(0,0,1887,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9998606841','2','T','2025-11-03 07:46:33'),(0,0,1887,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9998606841','2','T','2025-12-11 23:43:00'),(0,0,1887,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9998606841','2','T','2025-12-22 05:44:42'),(0,0,1889,0,'Y','2025-11-04','10:20:00','10:30:00','Fv','','2','C','2025-11-03 20:23:04'),(0,0,1889,0,'Y','2026-01-03','08:00:00','08:30:00','Followup','9638918999','2','T','2025-11-03 22:06:14'),(0,0,1890,0,'Y','2025-11-04','10:10:00','10:20:00','Fv','8160159709','2','C','2025-11-03 20:21:10'),(0,0,1890,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','8160159709','2','T','2025-11-03 22:10:25'),(0,0,1890,0,'Y','2025-12-17','10:10:00','10:20:00','FV','8160159709','2','C','2025-12-16 20:21:34'),(0,0,1890,0,'Y','2026-02-16','08:00:00','08:30:00','Followup','8160159709','2','T','2025-12-16 22:31:29'),(0,0,1891,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9979543721','2','T','2025-11-04 00:43:27'),(0,0,1892,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712874780','3','T','2025-11-04 04:52:46'),(0,0,1893,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033812295','3','T','2025-11-03 21:57:32'),(0,0,1894,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427887602','5','T','2025-11-03 22:36:03'),(0,0,1895,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','6352213505','2','T','2025-11-03 22:45:52'),(0,0,1896,0,'Y','2025-11-04','10:30:00','10:40:00','Nv','9924022969','2','C','2025-11-03 20:30:47'),(0,0,1896,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9924022969','2','T','2025-11-04 00:37:17'),(0,0,1896,0,'Y','2026-03-04','08:00:00','08:30:00','Followup','9924022969','2','T','2025-11-23 22:48:59'),(0,0,1897,0,'Y','2025-11-04','11:30:00','11:40:00','Nv','9638515111','2','C','2025-11-03 20:26:53'),(0,0,1897,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9638515111','2','T','2025-11-04 01:29:39'),(0,0,1898,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','8758661987','2','T','2025-11-03 23:36:33'),(0,0,1898,0,'Y','2025-12-19','11:10:00','11:20:00','Fv','8758661987','2','C','2025-12-18 20:32:00'),(0,0,1898,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','8758661987','2','T','2025-12-18 23:54:08'),(0,0,1899,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7016873421','3','T','2025-11-03 22:35:47'),(0,0,1900,0,'Y','2025-11-04','10:50:00','11:00:00','Fv','9879053807','2','C','2025-11-03 20:24:26'),(0,0,1900,0,'Y','2025-11-27','10:20:00','10:30:00','Fv','9879053807','2','C','2025-11-26 20:24:55'),(0,0,1900,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9879053807','2','T','2025-11-26 22:23:58'),(0,0,1900,0,'Y','2026-01-03','08:00:00','08:30:00','Followup','9879053807','2','T','2025-11-03 22:49:29'),(0,0,1901,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600887921','5','T','2025-11-03 22:41:04'),(0,0,1902,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428632132','5','T','2025-11-03 22:52:17'),(0,0,1903,0,'Y','2025-11-04','11:00:00','11:10:00','Nv','9909905015','2','C','2025-11-03 20:24:52'),(0,0,1903,0,'Y','2025-11-14','08:00:00','08:30:00','Followup','9909905015','2','T','2025-11-04 01:27:19'),(0,0,1903,0,'Y','2025-11-14','10:10:00','10:20:00','Fv','9909905015','2','C','2025-11-13 20:18:15'),(0,0,1903,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9909905015','2','T','2025-11-13 22:52:36'),(0,0,1903,0,'Y','2025-12-04','11:10:00','11:20:00','Fv','9909905015','2','C','2025-12-03 20:23:22'),(0,0,1903,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9909905015','2','T','2025-12-03 23:09:30'),(0,0,1904,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9979167371','2','T','2025-11-03 23:40:32'),(0,0,1904,0,'Y','2025-11-10','17:40:00','17:50:00','Fv','9979167371','2','C','2025-11-10 03:11:38'),(0,0,1904,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9979167371','2','T','2025-11-10 04:58:29'),(0,0,1905,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9408917894','5','T','2025-11-03 22:56:18'),(0,0,1905,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9408917894','4','T','2025-11-19 07:48:13'),(0,0,1906,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9974974636','2','T','2025-11-03 23:43:48'),(0,0,1907,0,'Y','2025-11-04','11:20:00','11:30:00','Ne','9429200887','2','C','2025-11-03 22:16:40'),(0,0,1907,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9429200887','2','T','2025-11-04 01:53:05'),(0,0,1907,0,'Y','2025-12-04','12:40:00','12:50:00','Fv','9429200887','2','C','2025-12-03 20:26:50'),(0,0,1907,0,'Y','2026-01-13','08:00:00','08:30:00','Followup','9429200887','2','T','2025-12-04 00:39:30'),(0,0,1908,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9773411995','7','T','2025-11-03 23:12:44'),(0,0,1909,0,'Y','2025-11-04','11:40:00','11:50:00','Fv','8490006000','2','C','2025-11-03 20:27:23'),(0,0,1909,0,'Y','2025-12-10','18:20:00','18:30:00','Fv','8490006000','2','C','2025-12-10 03:22:48'),(0,0,1909,0,'Y','2026-01-03','08:00:00','08:30:00','Followup','8490006000','2','T','2025-11-03 23:29:11'),(0,0,1909,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','8490006000','2','T','2025-12-10 06:12:31'),(0,0,1910,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033306446','6','T','2025-11-03 23:18:23'),(0,0,1911,0,'Y','2025-11-13','10:40:00','10:50:00','FV','9712352678','2','C','2025-11-12 20:34:13'),(0,0,1911,0,'Y','2025-11-14','08:00:00','08:30:00','Followup','9712352678','2','T','2025-11-04 01:53:19'),(0,0,1911,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9712352678','2','T','2025-11-13 00:08:04'),(0,0,1912,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825073253','2','T','2025-11-04 00:25:53'),(0,0,1913,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824957623','5','T','2025-11-03 23:42:18'),(0,0,1914,0,'Y','2025-11-04','12:50:00','13:00:00','Fv','9925165346','2','C','2025-11-03 20:30:06'),(0,0,1914,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9925165346','2','T','2025-11-04 00:58:53'),(0,0,1915,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9023242061','3','T','2025-11-04 04:51:57'),(0,0,1916,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9558584988','5','T','2025-11-04 00:11:06'),(0,0,1916,0,'Y','2026-01-03','08:00:00','08:30:00','Followup','9558584988','5','T','2025-11-04 05:33:02'),(0,0,1918,0,'Y','2025-11-04','12:30:00','12:40:00','Nv','','2','C','2025-11-03 21:25:00'),(0,0,1918,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9979907333','2','T','2025-11-04 01:55:45'),(0,0,1919,0,'Y','2025-11-04','12:40:00','12:50:00','Fv','8326529545','2','C','2025-11-03 20:29:34'),(0,0,1919,0,'Y','2026-01-03','08:00:00','08:30:00','Followup','8326529545','2','T','2025-11-04 01:03:37'),(0,0,1921,0,'Y','2025-11-04','16:50:00','17:00:00','FV','','2','C','2025-11-04 02:05:08'),(0,0,1921,0,'Y','2026-01-03','08:00:00','08:30:00','Followup','9879195844','2','T','2025-11-04 04:52:59'),(0,0,1922,0,'Y','2025-11-14','08:00:00','08:30:00','Followup','9879195844','2','T','2025-11-04 04:55:59'),(0,0,1922,0,'Y','2025-11-17','17:10:00','17:20:00','Fv','9879195844','2','C','2025-11-17 03:09:04'),(0,0,1922,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9879195844','2','T','2025-11-17 05:12:23'),(0,0,1923,0,'Y','2025-11-04','17:10:00','17:20:00','FV','','2','C','2025-11-04 02:05:40'),(0,0,1923,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9428056039','2','T','2025-11-04 05:06:32'),(0,0,1924,0,'Y','2025-11-04','17:20:00','17:30:00','FV','','2','C','2025-11-04 02:05:52'),(0,0,1924,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9624976116','2','T','2025-11-04 05:19:03'),(0,0,1925,0,'Y','2025-11-04','17:50:00','18:00:00','FV','','2','C','2025-11-04 02:06:48'),(0,0,1925,0,'Y','2026-02-12','08:00:00','08:30:00','Followup','9925766491','2','T','2025-11-04 05:25:48'),(0,0,1926,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9624436123','2','T','2025-11-04 05:34:42'),(0,0,1926,0,'Y','2025-12-05','18:40:00','18:50:00','FV','9624436123','2','B','2025-12-05 03:19:24'),(0,0,1928,0,'Y','2025-11-14','08:00:00','08:30:00','Followup','9825062263','2','T','2025-11-04 06:27:59'),(0,0,1929,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9825062263','2','T','2025-11-04 05:44:01'),(0,0,1929,0,'Y','2025-11-13','12:40:00','12:50:00','FV','9825062263','2','C','2025-11-12 20:42:14'),(0,0,1929,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9825062263','2','T','2025-11-13 01:46:52'),(0,0,1930,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8980707711','5','T','2025-11-04 05:37:17'),(0,0,1930,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','8980707711','5','T','2025-12-11 06:35:36'),(0,0,1931,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8154957555','5','T','2025-11-04 05:41:14'),(0,0,1932,0,'Y','2025-11-04','18:30:00','18:40:00','NV','','2','C','2025-11-04 02:07:47'),(0,0,1932,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9898207777','2','T','2025-11-04 07:26:04'),(0,0,1932,0,'Y','2025-12-04','17:40:00','17:50:00','Fv','9898207777','2','C','2025-12-04 02:22:00'),(0,0,1932,0,'Y','2026-01-13','08:00:00','08:30:00','Followup','9898207777','2','T','2025-12-04 05:36:17'),(0,0,1933,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9328575100','2','T','2025-11-04 06:22:55'),(0,0,1934,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825797418','5','T','2025-11-04 06:18:13'),(0,0,1935,0,'Y','2026-01-03','08:00:00','08:30:00','Followup','9825059770','2','T','2025-11-04 06:33:32'),(0,0,1936,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9462530777','5','T','2025-11-04 06:25:21'),(0,0,1937,0,'Y','2025-11-11','08:00:00','08:30:00','Followup','9664619259','2','T','2025-11-04 06:39:29'),(0,0,1938,0,'Y','2025-11-04','18:00:00','18:10:00','FV','','2','C','2025-11-04 02:07:06'),(0,0,1938,0,'Y','2025-12-02','18:20:00','18:30:00','FV','9723513429','2','C','2025-12-02 03:51:56'),(0,0,1938,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9723513429','2','T','2025-11-04 07:48:44'),(0,0,1938,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9723513429','2','T','2025-12-02 05:36:30'),(0,0,1939,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9106323852','6','T','2025-11-04 06:29:56'),(0,0,1941,0,'Y','2025-11-04','17:30:00','17:40:00','NV','','2','C','2025-11-04 02:06:14'),(0,0,1941,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','8160609891','2','T','2025-11-04 08:03:18'),(0,0,1941,0,'Y','2025-12-15','18:40:00','18:50:00','','8160609891','2','C','2025-12-15 02:01:03'),(0,0,1941,0,'Y','2026-01-24','08:00:00','08:30:00','Followup','8160609891','2','T','2025-12-15 07:17:16'),(0,0,1942,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998793799','5','T','2025-11-05 00:03:08'),(0,0,1944,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979028375','3','T','2025-11-04 21:30:53'),(0,0,1945,0,'Y','2025-11-05','12:10:00','12:20:00','Fv','','2','C','2025-11-04 20:25:52'),(0,0,1945,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9924844975','2','T','2025-11-04 22:11:04'),(0,0,1946,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428052206','5','T','2025-11-04 23:14:59'),(0,0,1947,0,'Y','2025-11-05','10:30:00','10:40:00','Nv','7984892931','2','C','2025-11-04 20:21:32'),(0,0,1947,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','7984892931','2','T','2025-11-05 01:39:37'),(0,0,1947,0,'Y','2025-11-20','10:50:00','11:00:00','Fv','7984892931','2','C','2025-11-19 20:21:39'),(0,0,1947,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','7984892931','2','T','2025-11-19 23:17:11'),(0,0,1948,0,'Y','2025-11-05','10:20:00','10:30:00','Fv','9173376188','2','C','2025-11-04 20:20:54'),(0,0,1948,0,'Y','2026-02-13','08:00:00','08:30:00','Followup','9173376188','2','T','2025-11-04 22:14:37'),(0,0,1949,0,'Y','2025-11-14','17:40:00','17:50:00','Fv','9275064075','2','C','2025-11-14 03:07:15'),(0,0,1949,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','9275064075','2','T','2025-11-05 00:29:47'),(0,0,1949,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9275064075','2','T','2025-11-14 05:57:27'),(0,0,1950,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9925331560','5','T','2025-11-04 22:36:17'),(0,0,1951,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9106683365','2','T','2025-11-04 22:54:09'),(0,0,1952,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9824285487','5','T','2025-11-04 23:00:40'),(0,0,1954,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','7228843488','2','T','2025-11-04 23:28:30'),(0,0,1955,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','8347154841','2','T','2025-11-04 23:41:07'),(0,0,1956,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9662423952','2','T','2025-11-05 00:17:57'),(0,0,1957,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913931313','2','T','2025-11-05 00:23:37'),(0,0,1957,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','9913931313','2','T','2025-11-05 02:29:53'),(0,0,1958,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','8200024882','2','T','2025-11-05 00:27:17'),(0,0,1959,0,'Y','2025-11-05','11:10:00','11:20:00','Fv','','2','C','2025-11-04 20:23:34'),(0,0,1959,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9909990102','2','T','2025-11-04 23:02:40'),(0,0,1960,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9118424638','2','T','2025-11-05 01:02:35'),(0,0,1960,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9118424638','2','T','2025-11-10 07:04:08'),(0,0,1961,0,'Y','2025-11-05','11:30:00','11:40:00','Nv','9426933668','2','C','2025-11-04 20:24:24'),(0,0,1961,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','9426933668','2','T','2025-11-05 01:40:10'),(0,0,1961,0,'Y','2025-11-20','11:10:00','11:20:00','Fv','9426933668','2','C','2025-11-19 20:22:43'),(0,0,1961,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9426933668','2','T','2025-11-19 23:23:32'),(0,0,1962,0,'Y','2025-11-05','11:00:00','11:10:00','Nv','9924020431','2','C','2025-11-04 20:23:09'),(0,0,1962,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9924020431','2','T','2025-11-05 01:50:39'),(0,0,1963,0,'Y','2025-11-05','11:20:00','11:30:00','Fv','9824234045','2','C','2025-11-04 20:24:00'),(0,0,1963,0,'Y','2026-02-13','08:00:00','08:30:00','Followup','9824234045','2','T','2025-11-04 23:15:33'),(0,0,1964,0,'Y','2025-11-05','11:40:00','11:50:00','Fv','9825516090','2','C','2025-11-04 20:24:51'),(0,0,1964,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9825516090','2','T','2025-11-04 23:44:27'),(0,0,1964,0,'Y','2025-12-22','10:50:00','11:00:00','Fv','9825516090','2','C','2025-12-21 20:16:17'),(0,0,1964,0,'Y','2026-01-31','08:00:00','08:30:00','Followup','9825516090','2','T','2025-12-22 05:50:45'),(0,0,1965,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9157700892','5','T','2025-11-04 23:11:26'),(0,0,1965,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9157700892','5','T','2025-11-05 00:01:29'),(0,0,1966,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978796054','6','T','2025-11-04 23:26:47'),(0,0,1967,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898075873','5','T','2025-11-04 23:26:48'),(0,0,1969,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974345085','5','T','2025-11-04 23:29:19'),(0,0,1969,0,'Y','2025-11-21','11:30:00','11:40:00','FC','9974345085','4','C','2025-11-20 21:16:36'),(0,0,1969,0,'Y','2026-02-19','08:00:00','08:30:00','Followup','9974345085','4','T','2025-11-20 23:35:42'),(0,0,1971,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8734858430','6','T','2025-11-04 23:39:48'),(0,0,1972,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9561206288','5','T','2025-11-04 23:54:42'),(0,0,1973,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','6359038663','2','T','2025-11-05 01:06:42'),(0,0,1974,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099171240','3','T','2025-11-05 00:20:21'),(0,0,1975,0,'Y','2025-11-05','11:50:00','12:00:00','Fv','','2','C','2025-11-04 20:25:14'),(0,0,1975,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9662436282','2','T','2025-11-05 00:11:34'),(0,0,1976,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8890808524','6','T','2025-11-05 00:25:05'),(0,0,1977,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9601251635','2','T','2025-11-05 01:28:20'),(0,0,1977,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','9601251635','2','T','2025-12-22 05:11:07'),(0,0,1978,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428840329','5','T','2025-11-04 23:56:50'),(0,0,1979,0,'Y','2025-11-05','12:20:00','12:30:00','Fv','9825237281','2','C','2025-11-04 20:26:54'),(0,0,1979,0,'Y','2026-02-03','08:00:00','08:30:00','Followup','9824220542','2','T','2025-11-05 00:14:59'),(0,0,1980,0,'Y','2025-11-05','12:50:00','13:00:00','Fv','','2','C','2025-11-04 20:27:47'),(0,0,1980,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9228415249','2','T','2025-11-05 00:47:54'),(0,0,1981,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8000815551','3','T','2025-11-05 00:12:42'),(0,0,1982,0,'Y','2025-11-05','12:40:00','12:50:00','Fv','9825237281','2','C','2025-11-04 20:27:21'),(0,0,1982,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9825237281','2','T','2025-11-05 00:52:20'),(0,0,1983,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9925246900','2','T','2025-11-05 01:52:40'),(0,0,1983,0,'Y','2025-12-19','12:50:00','13:00:00','Fv','9925246900','2','C','2025-12-18 20:34:51'),(0,0,1983,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9925246900','2','T','2025-12-19 00:20:08'),(0,0,1984,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978928286','6','T','2025-11-05 00:34:55'),(0,0,1985,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9585483934','6','T','2025-11-05 00:40:54'),(0,0,1986,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9106528717','6','T','2025-11-05 05:54:24'),(0,0,1987,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9426222002','2','T','2025-11-05 01:59:00'),(0,0,1988,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879963041','2','T','2025-11-05 04:53:37'),(0,0,1989,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9328276297','2','T','2025-11-05 04:57:28'),(0,0,1990,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898215910','5','T','2025-11-05 07:06:50'),(0,0,1991,0,'Y','2025-11-05','17:20:00','17:30:00','FV','','2','C','2025-11-05 02:18:16'),(0,0,1991,0,'Y','2026-02-13','08:00:00','08:30:00','Followup','9825958867','2','T','2025-11-05 05:08:45'),(0,0,1992,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909151515','5','T','2025-11-05 05:32:05'),(0,0,1993,0,'Y','2025-11-05','17:10:00','17:20:00','FV','','2','C','2025-11-05 02:18:03'),(0,0,1993,0,'Y','2025-11-10','08:00:00','08:30:00','Followup','9624544044','2','T','2025-11-05 05:17:32'),(0,0,1993,0,'Y','2025-11-11','12:20:00','12:30:00','Fv','9624544044','2','C','2025-11-10 20:34:24'),(0,0,1993,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','9624544044','2','T','2025-11-11 00:34:35'),(0,0,1993,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','9624544044','2','T','2025-11-15 00:16:39'),(0,0,1994,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9909540861','2','T','2025-11-05 06:17:40'),(0,0,1994,0,'Y','2025-12-09','18:20:00','18:30:00','Fv','9909540861','2','B','2025-12-09 03:22:07'),(0,0,1995,0,'Y','2025-11-05','16:40:00','16:50:00','FV','','2','C','2025-11-05 02:17:30'),(0,0,1995,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9316357148','2','T','2025-11-05 05:21:26'),(0,0,1996,0,'Y','2025-11-05','17:50:00','18:00:00','FV','','2','C','2025-11-05 02:19:23'),(0,0,1996,0,'Y','2026-02-03','08:00:00','08:30:00','Followup','9825639256','2','T','2025-11-05 05:29:52'),(0,0,1997,0,'Y','2025-11-05','17:30:00','17:40:00','NV','','2','C','2025-11-05 02:18:46'),(0,0,1997,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','9724014477','2','T','2025-11-05 07:23:51'),(0,0,1997,0,'Y','2025-11-15','10:40:00','10:50:00','Fv','9724014477','2','C','2025-11-14 20:20:55'),(0,0,1997,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9724014477','2','T','2025-11-14 23:11:31'),(0,0,1998,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9173334879','5','T','2025-11-05 05:34:44'),(0,0,1999,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6352853927','2','T','2025-11-05 06:33:49'),(0,0,2000,0,'Y','2025-11-05','17:40:00','17:50:00','FV','','2','C','2025-11-05 02:19:03'),(0,0,2000,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9879794127','2','T','2025-11-05 05:52:14'),(0,0,2001,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712358734','3','T','2025-11-12 06:45:51'),(0,0,2002,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9265688430','2','T','2025-11-05 06:37:38'),(0,0,2003,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8320615693','2','T','2025-11-05 06:20:34'),(0,0,2003,0,'Y','2025-11-05','18:00:00','18:10:00','NV','','2','C','2025-11-05 02:19:41'),(0,0,2004,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898904242','5','T','2025-11-05 05:41:30'),(0,0,2006,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9920935709','5','T','2025-11-05 05:45:41'),(0,0,2007,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925475490','6','T','2025-11-05 06:01:28'),(0,0,2008,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8144993678','5','T','2025-11-05 06:01:04'),(0,0,2010,0,'Y','2026-02-03','08:00:00','08:30:00','Followup','9722931287','5','T','2025-11-05 05:58:32'),(0,0,2011,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','9824239366','2','T','2025-11-05 08:05:06'),(0,0,2012,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8238475063','5','T','2025-11-05 05:55:03'),(0,0,2013,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9879467160','2','T','2025-11-05 07:08:03'),(0,0,2013,0,'Y','2026-02-13','08:00:00','08:30:00','Followup','9879467160','2','T','2025-12-14 23:27:25'),(0,0,2014,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9023515929','5','T','2025-11-05 06:10:10'),(0,0,2014,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9023515929','5','T','2025-11-05 06:22:36'),(0,0,2015,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','9978816577','2','T','2025-11-05 07:21:36'),(0,0,2016,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8006941328','3','T','2025-12-05 06:40:20'),(0,0,2017,0,'Y','2025-11-05','18:40:00','18:50:00','FV','','2','C','2025-11-05 02:20:56'),(0,0,2017,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9727030750','2','T','2025-11-05 06:26:09'),(0,0,2017,0,'Y','2025-12-22','16:40:00','16:50:00','Fv','9727030750','2','C','2025-12-22 03:39:23'),(0,0,2017,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','9727030750','2','T','2025-12-22 04:41:38'),(0,0,2018,0,'Y','2025-11-15','08:00:00','08:30:00','Followup','9033270009','2','T','2025-11-05 07:34:47'),(0,0,2019,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712343691','5','T','2025-11-05 06:46:50'),(0,0,2020,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879328611','5','T','2025-11-05 06:46:25'),(0,0,2021,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9016946695','2','T','2025-11-05 07:45:38'),(0,0,2021,0,'Y','2025-11-05','18:30:00','18:40:00','NV','','2','C','2025-11-05 02:20:37'),(0,0,2021,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9016946695','2','T','2025-11-06 06:05:00'),(0,0,2021,0,'Y','2025-11-26','17:10:00','17:20:00','Fv','9016946695','2','C','2025-11-26 01:40:57'),(0,0,2021,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9016946695','2','T','2025-11-26 04:47:24'),(0,0,2023,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824298707','2','T','2025-12-11 07:16:41'),(0,0,2023,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','9824298707','2','T','2025-11-05 07:29:39'),(0,0,2024,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9558915578','3','T','2025-11-07 06:54:25'),(0,0,2026,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428154666','3','T','2025-11-12 08:01:15'),(0,0,2028,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600030939','6','T','2025-11-05 23:13:37'),(0,0,2029,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824326588','5','T','2025-11-05 22:48:35'),(0,0,2030,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712358734','3','T','2025-12-04 04:26:08'),(0,0,2032,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9909350650','2','T','2025-11-05 22:28:18'),(0,0,2033,0,'Y','2025-11-06','10:10:00','10:20:00','Fv','9929423439','2','C','2025-11-05 20:14:36'),(0,0,2033,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9929423439','2','T','2025-11-05 22:23:51'),(0,0,2034,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','7817895013','2','T','2025-11-05 22:51:02'),(0,0,2036,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600030939','6','T','2025-11-05 23:13:48'),(0,0,2037,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979625925','5','T','2025-11-05 22:35:59'),(0,0,2038,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9913923966','2','T','2025-11-05 23:32:36'),(0,0,2039,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9909873705','2','T','2025-11-05 23:49:33'),(0,0,2039,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9909873705','2','T','2025-11-14 22:41:11'),(0,0,2040,0,'Y','2025-11-06','10:50:00','11:00:00','Fv','9925580930','2','C','2025-11-05 20:15:59'),(0,0,2040,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9925580930','2','T','2025-11-05 22:54:13'),(0,0,2041,0,'Y','2025-11-06','11:30:00','11:40:00','Nv','9726718066','2','C','2025-11-05 20:17:52'),(0,0,2041,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9726718066','2','T','2025-11-06 01:24:53'),(0,0,2041,0,'Y','2025-12-06','10:40:00','10:50:00','Fv','9726718066','2','C','2025-12-05 20:19:29'),(0,0,2041,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9726718066','2','T','2025-12-05 22:47:49'),(0,0,2042,0,'Y','2025-11-06','11:00:00','11:10:00','Nv','6356506363','2','C','2025-11-05 20:16:24'),(0,0,2042,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','6356506363','2','T','2025-11-06 01:24:39'),(0,0,2043,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9898357800','2','T','2025-11-06 01:28:28'),(0,0,2043,0,'Y','2025-11-17','12:10:00','12:20:00','Fv','9898357800','2','C','2025-11-16 20:19:49'),(0,0,2043,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9898357800','2','T','2025-11-16 23:45:53'),(0,0,2044,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','7817816727','2','T','2025-11-06 01:49:45'),(0,0,2044,0,'Y','2025-11-17','11:10:00','11:20:00','Fv','7817816727','2','C','2025-11-16 20:17:32'),(0,0,2044,0,'Y','2025-12-06','10:50:00','11:00:00','Fv','7817816727','2','C','2025-12-05 20:19:39'),(0,0,2044,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','7817816727','2','T','2025-11-16 22:47:26'),(0,0,2044,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','7817816727','2','T','2025-12-05 22:36:34'),(0,0,2045,0,'Y','2025-11-06','11:10:00','11:20:00','Fv','','2','C','2025-11-05 20:16:56'),(0,0,2045,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9979601227','2','T','2025-12-18 23:40:15'),(0,0,2045,0,'Y','2026-02-04','08:00:00','08:30:00','Followup','9979601227','2','T','2025-11-05 23:23:23'),(0,0,2046,0,'Y','2025-11-06','12:20:00','12:30:00','Fv','9106715707','2','C','2025-11-05 20:22:14'),(0,0,2046,0,'Y','2026-03-06','08:00:00','08:30:00','Followup','9106715707','2','T','2025-11-06 00:18:25'),(0,0,2047,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9998246416','2','T','2025-11-06 01:59:59'),(0,0,2047,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','9998246416','2','T','2025-12-05 23:56:17'),(0,0,2048,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9510455155','5','T','2025-11-05 23:10:09'),(0,0,2049,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9974555830','2','T','2025-11-06 00:47:21'),(0,0,2050,0,'Y','2025-11-06','11:20:00','11:30:00','Fv','9998483102','2','C','2025-11-05 20:17:20'),(0,0,2050,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9998483102','2','T','2025-11-05 23:44:28'),(0,0,2051,0,'Y','2026-03-06','08:00:00','08:30:00','Followup','9879445862','2','T','2025-11-06 00:53:02'),(0,0,2052,0,'Y','2025-11-06','11:50:00','12:00:00','Fv','9898987083','2','C','2025-11-05 20:19:03'),(0,0,2052,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9898987083','2','T','2025-11-05 23:53:53'),(0,0,2052,0,'Y','2025-12-17','11:40:00','11:50:00','FV','9898987083','2','C','2025-12-16 20:25:13'),(0,0,2052,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9898987083','2','T','2025-12-16 23:28:55'),(0,0,2053,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160253067','2','T','2025-11-06 01:34:42'),(0,0,2055,0,'Y','2025-11-06','12:10:00','12:20:00','Fv','9824372252','2','C','2025-11-05 20:21:39'),(0,0,2055,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9824372252','2','T','2025-11-06 00:27:01'),(0,0,2055,0,'Y','2025-12-23','16:50:00','17:00:00','Fv','9824372252','2','C','2025-12-23 03:36:10'),(0,0,2055,0,'Y','2026-02-21','08:00:00','08:30:00','Followup','9824372252','2','T','2025-12-23 04:54:22'),(0,0,2056,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9265646768','3','T','2025-11-07 06:33:50'),(0,0,2057,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879221630','5','T','2025-11-06 00:19:28'),(0,0,2059,0,'Y','2025-11-06','12:40:00','12:50:00','Fv','','2','C','2025-11-05 20:23:15'),(0,0,2059,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9427209811','2','T','2025-11-06 01:07:37'),(0,0,2060,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898912257','5','T','2025-11-06 00:33:42'),(0,0,2061,0,'Y','2025-11-06','12:30:00','12:40:00','Nv','9904956155','2','C','2025-11-05 20:22:47'),(0,0,2061,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9904956155','2','T','2025-11-06 02:04:13'),(0,0,2062,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925243737','5','T','2025-11-06 00:57:11'),(0,0,2065,0,'Y','2025-11-06','17:00:00','17:10:00','NV','','2','C','2025-11-06 02:40:27'),(0,0,2065,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9824582970','2','T','2025-11-06 06:27:36'),(0,0,2065,0,'Y','2025-11-28','10:10:00','10:20:00','Fv','9824582970','2','C','2025-11-27 20:09:39'),(0,0,2065,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9824582970','2','T','2025-11-27 22:25:39'),(0,0,2066,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9081636675','2','T','2025-11-06 04:58:46'),(0,0,2067,0,'Y','2025-11-06','16:50:00','17:00:00','FV','','2','C','2025-11-06 02:40:12'),(0,0,2067,0,'Y','2025-11-18','18:10:00','18:20:00','','9714483444','2','C','2025-11-18 02:11:30'),(0,0,2067,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9714483444','2','T','2025-11-18 05:29:38'),(0,0,2067,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9714483444','2','T','2025-11-06 04:51:38'),(0,0,2068,0,'Y','2025-11-06','17:30:00','17:40:00','NV','','2','C','2025-11-06 02:52:55'),(0,0,2068,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9924394270','2','T','2025-11-06 06:49:20'),(0,0,2068,0,'Y','2025-11-19','17:20:00','17:30:00','Fv','9924394270','2','C','2025-11-19 03:11:36'),(0,0,2068,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9924394270','2','T','2025-11-19 05:37:49'),(0,0,2069,0,'Y','2025-11-06','17:20:00','17:30:00','FV','','2','C','2025-11-06 02:52:35'),(0,0,2069,0,'Y','2025-11-11','08:00:00','08:30:00','Followup','7600111191','2','T','2025-11-06 05:26:46'),(0,0,2070,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9824547458','2','T','2025-11-06 07:02:15'),(0,0,2071,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824022062','5','T','2025-11-06 05:24:28'),(0,0,2072,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428230179','5','T','2025-11-06 05:29:50'),(0,0,2073,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160521248','5','T','2025-11-06 05:35:56'),(0,0,2075,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712375674','5','T','2025-11-06 05:41:10'),(0,0,2075,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9712375674','5','T','2025-12-10 06:12:26'),(0,0,2076,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9558811467','5','T','2025-11-06 06:09:12'),(0,0,2077,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6351883657','6','T','2025-11-06 06:48:34'),(0,0,2079,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427214898','5','T','2025-11-06 06:04:32'),(0,0,2080,0,'Y','2026-02-04','08:00:00','08:30:00','Followup','9601617702','5','T','2025-11-06 06:08:52'),(0,0,2081,0,'Y','2025-11-06','18:50:00','19:00:00','FV','','2','C','2025-11-06 02:54:56'),(0,0,2081,0,'Y','2025-12-15','18:50:00','19:00:00','','9426954495','2','C','2025-12-15 02:01:10'),(0,0,2081,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9426954495','2','T','2025-11-06 06:34:44'),(0,0,2081,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9426954495','2','T','2025-12-15 07:01:52'),(0,0,2082,0,'Y','2026-03-06','08:00:00','08:30:00','Followup','9723443646','5','T','2025-11-06 06:36:43'),(0,0,2083,0,'Y','2025-11-06','16:40:00','16:50:00','FV','','2','C','2025-11-06 02:39:58'),(0,0,2083,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9099720026','2','T','2025-11-06 07:00:44'),(0,0,2084,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9624222689','6','T','2025-11-06 06:47:59'),(0,0,2085,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824248008','2','T','2025-11-06 07:15:42'),(0,0,2085,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','9824248008','2','T','2025-11-07 07:12:38'),(0,0,2086,0,'Y','2025-11-06','18:40:00','18:50:00','FV','','2','C','2025-11-06 02:54:40'),(0,0,2086,0,'Y','2026-02-14','08:00:00','08:30:00','Followup','9979046043','2','T','2025-11-06 06:47:15'),(0,0,2087,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9313179437','3','T','2025-12-03 07:12:41'),(0,0,2088,0,'Y','2025-11-13','08:00:00','08:30:00','Followup','9909912334','2','T','2025-11-06 07:24:35'),(0,0,2090,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727737257','5','T','2025-11-06 07:11:44'),(0,0,2091,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9586859533','5','T','2025-11-06 22:37:28'),(0,0,2092,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9327193183','3','T','2025-11-07 06:06:14'),(0,0,2093,0,'Y','2026-01-06','08:00:00','08:30:00','Followup','9904832163','2','T','2025-11-06 22:20:48'),(0,0,2094,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849211395','3','T','2025-11-07 06:07:02'),(0,0,2095,0,'Y','2025-11-07','10:30:00','10:40:00','Nv','9998016860','2','C','2025-11-06 20:14:08'),(0,0,2095,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9998016860','2','T','2025-11-07 00:46:11'),(0,0,2095,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','9998016860','2','T','2025-12-07 23:39:24'),(0,0,2096,0,'Y','2025-11-07','12:50:00','13:00:00','Fv','9428726248','2','C','2025-11-06 20:21:29'),(0,0,2096,0,'Y','2025-12-22','12:20:00','12:30:00','Fv','9428726248','2','C','2025-12-21 20:20:04'),(0,0,2096,0,'Y','2026-01-06','08:00:00','08:30:00','Followup','9428726248','2','T','2025-11-06 22:53:14'),(0,0,2096,0,'Y','2026-02-05','08:00:00','08:30:00','Followup','9428726248','2','T','2025-12-21 23:01:35'),(0,0,2097,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9574238730','2','T','2025-11-07 01:56:28'),(0,0,2098,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866459566','6','T','2025-11-06 22:41:11'),(0,0,2099,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824219039','5','T','2025-11-06 22:44:54'),(0,0,2100,0,'Y','2025-11-07','10:50:00','11:00:00','Rfv','9712172392','2','C','2025-11-06 20:15:22'),(0,0,2100,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9712172392','2','T','2025-11-07 01:19:42'),(0,0,2100,0,'Y','2025-12-08','11:40:00','11:50:00','Fv','9712172392','2','C','2025-12-07 20:12:19'),(0,0,2100,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9712172392','2','T','2025-12-07 23:59:54'),(0,0,2101,0,'Y','2025-11-07','10:10:00','10:20:00','Fv','','2','C','2025-11-06 20:13:26'),(0,0,2101,0,'Y','2026-01-06','08:00:00','08:30:00','Followup','9978053781','2','T','2025-11-06 23:03:55'),(0,0,2102,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','8866777646','2','T','2025-11-07 01:38:28'),(0,0,2102,0,'Y','2025-11-17','10:40:00','10:50:00','Fv','8866777646','2','C','2025-11-16 20:16:36'),(0,0,2102,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','8866777646','2','T','2025-11-16 22:42:55'),(0,0,2103,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7874887447','2','T','2025-11-07 01:41:40'),(0,0,2104,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9157762410','5','T','2025-11-06 22:51:14'),(0,0,2105,0,'Y','2025-11-07','11:30:00','11:40:00','Nv','8980219622','2','C','2025-11-06 20:16:59'),(0,0,2105,0,'Y','2025-11-12','19:40:00','19:50:00','','8980219622','4','B','2025-11-12 04:25:50'),(0,0,2105,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','8980219622','2','T','2025-11-07 01:21:58'),(0,0,2106,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9016737523','3','T','2025-11-06 22:40:01'),(0,0,2107,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6377700009','5','T','2025-11-06 22:58:26'),(0,0,2108,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9409259808','5','T','2025-11-06 23:01:18'),(0,0,2109,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978181584','2','T','2025-11-07 01:28:39'),(0,0,2110,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9274978162','2','T','2025-11-07 00:10:48'),(0,0,2111,0,'Y','2025-11-07','11:20:00','11:30:00','Fv','','2','C','2025-11-06 20:16:35'),(0,0,2111,0,'Y','2026-01-06','08:00:00','08:30:00','Followup','9825830791','2','T','2025-11-06 23:32:07'),(0,0,2112,0,'Y','2025-11-07','12:20:00','12:30:00','Fv','9726393987','2','C','2025-11-06 20:20:36'),(0,0,2112,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9726393987','2','T','2025-11-07 00:00:26'),(0,0,2113,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7818087707','3','T','2025-11-06 23:05:25'),(0,0,2114,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','9998400108','2','T','2025-11-07 00:38:07'),(0,0,2115,0,'Y','2025-11-07','11:40:00','11:50:00','Fv','9276319934','2','C','2025-11-06 20:17:43'),(0,0,2115,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9276319934','2','T','2025-11-07 01:35:03'),(0,0,2115,0,'Y','2025-12-10','11:50:00','12:00:00','Fv','9276319934','2','C','2025-12-09 20:17:11'),(0,0,2115,0,'Y','2026-01-09','08:00:00','08:30:00','Followup','9276319934','2','T','2025-12-09 23:37:36'),(0,0,2116,0,'Y','2025-11-17','10:50:00','11:00:00','Fv','9898153329','2','C','2025-11-16 20:16:49'),(0,0,2116,0,'Y','2025-12-05','10:40:00','10:50:00','FV','9898153329','2','C','2025-12-04 20:27:05'),(0,0,2116,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9898153329','2','T','2025-11-07 01:06:07'),(0,0,2116,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9898153329','2','T','2025-12-04 22:36:28'),(0,0,2117,0,'Y','2026-02-05','08:00:00','08:30:00','Followup','7575091413','5','T','2025-11-06 23:30:32'),(0,0,2118,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7990924131','2','T','2025-11-07 01:38:01'),(0,0,2119,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9199420026','6','T','2025-11-06 23:42:34'),(0,0,2120,0,'Y','2025-11-07','12:30:00','12:40:00','Nv','8905356738','2','C','2025-11-06 21:41:53'),(0,0,2120,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','9427740430','2','T','2025-11-07 00:24:42'),(0,0,2121,0,'Y','2025-11-07','11:50:00','12:00:00','Fv','6351447001','2','C','2025-11-06 20:19:47'),(0,0,2121,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','6351447001','2','T','2025-11-07 00:35:14'),(0,0,2122,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898028899','5','T','2025-11-06 23:50:27'),(0,0,2123,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9724036694','2','T','2025-11-07 02:06:33'),(0,0,2123,0,'Y','2025-11-17','11:20:00','11:30:00','Fv','9724036694','2','C','2025-11-16 20:17:57'),(0,0,2123,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9724036694','2','T','2025-11-16 22:57:34'),(0,0,2124,0,'Y','2025-11-26','10:50:00','11:00:00','Fv','6351688341','2','C','2025-11-25 20:29:57'),(0,0,2124,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','6351688341','2','T','2025-11-07 02:12:06'),(0,0,2124,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','6351688341','2','T','2025-11-25 22:44:24'),(0,0,2125,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913095922','5','T','2025-11-07 00:15:22'),(0,0,2126,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824702200','5','T','2025-11-07 00:41:03'),(0,0,2126,0,'Y','2025-11-19','08:00:00','08:30:00','Followup','9824702200','4','T','2025-11-12 00:22:03'),(0,0,2127,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7359171917','3','T','2025-11-07 06:08:23'),(0,0,2128,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8905356738','2','T','2025-11-07 01:48:28'),(0,0,2128,0,'Y','2025-11-07','12:00:00','12:10:00','Nv','','2','C','2025-11-06 22:13:39'),(0,0,2128,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','8905356738','2','T','2025-11-07 06:19:44'),(0,0,2128,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','8905356738','2','T','2025-11-17 06:59:23'),(0,0,2129,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898921718','2','T','2025-11-07 02:01:25'),(0,0,2129,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9898921718','2','T','2025-11-07 04:49:40'),(0,0,2129,0,'Y','2025-12-15','10:40:00','10:50:00','Fv','9898921718','2','C','2025-12-14 20:09:31'),(0,0,2129,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9898921718','2','T','2025-12-15 00:38:16'),(0,0,2130,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9429279663','2','T','2025-11-07 05:57:49'),(0,0,2131,0,'Y','2025-11-07','16:40:00','16:50:00','FV','','2','C','2025-11-07 02:24:21'),(0,0,2131,0,'Y','2026-02-16','08:00:00','08:30:00','Followup','9712541125','2','T','2025-11-07 04:41:58'),(0,0,2132,0,'Y','2026-01-06','08:00:00','08:30:00','Followup','9408665487','2','T','2025-11-07 05:14:00'),(0,0,2133,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099035692','2','T','2025-11-20 02:06:30'),(0,0,2133,0,'Y','2025-11-07','17:00:00','17:10:00','NV','','2','C','2025-11-07 02:25:07'),(0,0,2133,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9099035692','2','T','2025-11-07 05:04:57'),(0,0,2134,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9327780840','2','T','2025-11-07 04:35:48'),(0,0,2135,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879345425','2','T','2025-11-07 04:36:59'),(0,0,2136,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8000002438','2','T','2025-11-07 04:38:40'),(0,0,2137,0,'Y','2025-11-07','16:50:00','17:00:00','FV','','2','C','2025-11-07 02:24:37'),(0,0,2137,0,'Y','2026-02-16','08:00:00','08:30:00','Followup','9427279725','2','T','2025-11-07 04:45:36'),(0,0,2138,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8460812537','2','T','2025-11-07 04:39:19'),(0,0,2139,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9825787887','2','T','2025-11-07 05:18:11'),(0,0,2140,0,'Y','2025-11-12','08:00:00','08:30:00','Followup','8849755178','2','T','2025-11-07 05:38:59'),(0,0,2141,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','8460842060','2','T','2025-11-07 05:42:46'),(0,0,2142,0,'Y','2025-11-22','08:00:00','08:30:00','Followup','8238080113','2','T','2025-11-07 06:58:08'),(0,0,2143,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099238882','2','T','2025-11-07 05:27:54'),(0,0,2143,0,'Y','2025-11-07','17:30:00','17:40:00','NV','9099238882','2','C','2025-11-07 04:59:09'),(0,0,2144,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825412852','5','T','2025-11-07 05:30:32'),(0,0,2145,0,'Y','2026-03-07','08:00:00','08:30:00','Followup','9714162819','2','T','2025-11-07 06:02:41'),(0,0,2146,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824594482','3','T','2025-11-07 06:10:10'),(0,0,2147,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9427253535','2','T','2025-11-07 06:15:13'),(0,0,2148,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9924237079','2','T','2025-11-07 06:30:25'),(0,0,2149,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866373814','2','T','2025-11-17 04:48:56'),(0,0,2149,0,'Y','2025-11-07','18:00:00','18:10:00','NV','8866373814','2','C','2025-11-07 05:26:41'),(0,0,2149,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','8866373814','2','T','2025-11-07 06:53:57'),(0,0,2149,0,'Y','2025-11-17','16:50:00','17:00:00','Fv','8866373814','2','C','2025-11-17 03:08:52'),(0,0,2150,0,'Y','2025-11-13','18:40:00','18:50:00','FV','6355973714','2','C','2025-11-13 03:27:05'),(0,0,2150,0,'Y','2025-11-14','08:00:00','08:30:00','Followup','6355973714','2','T','2025-11-07 06:53:01'),(0,0,2150,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','6355973714','2','T','2025-11-13 06:27:14'),(0,0,2150,0,'Y','2025-11-25','18:20:00','18:30:00','','6355973714','2','C','2025-11-25 01:59:53'),(0,0,2150,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','6355973714','2','T','2025-11-25 06:17:15'),(0,0,2151,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9016943635','3','T','2025-11-07 06:30:19'),(0,0,2152,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9024810012','3','T','2025-11-07 06:36:29'),(0,0,2154,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9664581869','3','T','2025-11-07 06:33:35'),(0,0,2156,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898050861','5','T','2025-11-07 22:22:11'),(0,0,2157,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7698111317','3','T','2025-11-07 23:21:11'),(0,0,2158,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428856975','5','T','2025-11-07 22:22:38'),(0,0,2159,0,'Y','2025-11-08','12:40:00','12:50:00','Fv','9727035440','2','C','2025-11-07 20:31:19'),(0,0,2159,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','9727035440','2','T','2025-11-07 22:49:37'),(0,0,2160,0,'Y','2025-11-08','10:10:00','10:20:00','Fv','9023345805','2','C','2025-11-07 20:22:46'),(0,0,2160,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9023345805','2','T','2025-11-07 22:14:43'),(0,0,2161,0,'Y','2025-11-08','10:20:00','10:30:00','Fv','','2','C','2025-11-07 20:23:00'),(0,0,2161,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9510449910','2','T','2025-11-07 22:18:34'),(0,0,2162,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9106974700','2','T','2025-11-08 01:30:21'),(0,0,2162,0,'Y','2025-11-28','11:40:00','11:50:00','Fv','9106974700','2','C','2025-11-27 20:13:29'),(0,0,2162,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9106974700','2','T','2025-11-27 23:34:07'),(0,0,2163,0,'Y','2025-11-08','10:30:00','10:40:00','Nv','9737661411','2','C','2025-11-07 20:23:22'),(0,0,2163,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9737661411','2','T','2025-11-08 01:25:43'),(0,0,2164,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9377564165','2','T','2025-11-07 23:17:45'),(0,0,2165,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714447922','3','T','2025-11-07 22:06:20'),(0,0,2166,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9979909613','2','T','2025-11-07 23:27:44'),(0,0,2167,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824715727','3','T','2025-11-07 22:16:26'),(0,0,2168,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998924704','5','T','2025-11-07 22:35:39'),(0,0,2169,0,'Y','2025-11-08','10:40:00','10:50:00','Fv','9898270249','2','C','2025-11-07 20:23:46'),(0,0,2169,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9898270249','2','T','2025-11-07 22:41:34'),(0,0,2170,0,'Y','2025-11-08','10:50:00','11:00:00','Fv','','2','C','2025-11-07 20:24:05'),(0,0,2170,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','7623893034','2','T','2025-11-07 22:46:38'),(0,0,2170,0,'Y','2025-12-22','10:40:00','10:50:00','Fv','7623893034','2','C','2025-12-21 20:16:04'),(0,0,2170,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','7623893034','2','T','2025-12-21 22:46:14'),(0,0,2171,0,'Y','2025-11-08','11:50:00','12:00:00','Fv','9913106753','2','C','2025-11-07 20:27:26'),(0,0,2171,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9913106753','2','T','2025-11-07 23:31:32'),(0,0,2172,0,'Y','2025-11-08','11:20:00','11:30:00','Fv','','2','C','2025-11-07 20:24:39'),(0,0,2172,0,'Y','2025-12-09','11:50:00','12:00:00','Fv','9879163255','2','B','2025-12-08 20:18:31'),(0,0,2172,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9879163255','2','T','2025-11-07 23:11:14'),(0,0,2173,0,'Y','2025-11-08','11:30:00','11:40:00','Nv','7043718553','2','C','2025-11-07 20:25:14'),(0,0,2173,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','7043718553','2','T','2025-11-08 01:38:58'),(0,0,2173,0,'Y','2025-11-19','11:20:00','11:30:00','Fv','7043718553','2','C','2025-11-18 20:19:25'),(0,0,2173,0,'Y','2025-12-06','12:10:00','12:20:00','Fv','7043718553','2','C','2025-12-05 23:38:35'),(0,0,2173,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','7043718553','2','T','2025-12-06 00:13:00'),(0,0,2173,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','7043718553','2','T','2025-11-18 23:08:57'),(0,0,2174,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662471672','6','T','2025-11-07 23:22:18'),(0,0,2175,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978922322','6','T','2025-11-07 23:16:35'),(0,0,2176,0,'Y','2025-11-08','12:50:00','13:00:00','Fv','9574274642','2','C','2025-11-07 22:53:03'),(0,0,2176,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9574274642','2','T','2025-11-07 23:47:01'),(0,0,2177,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8750034338','3','T','2025-11-07 23:07:04'),(0,0,2178,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','9726363114','2','T','2025-11-08 02:16:40'),(0,0,2178,0,'Y','2025-11-18','11:10:00','11:20:00','Fv','9726363114','2','C','2025-11-17 20:20:03'),(0,0,2178,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9726363114','2','T','2025-11-17 23:02:08'),(0,0,2179,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8238750760','2','T','2025-12-16 01:06:03'),(0,0,2179,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','8238750760','2','T','2025-11-08 00:42:58'),(0,0,2179,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','8238750760','2','T','2025-12-08 00:31:53'),(0,0,2180,0,'Y','2025-11-08','12:30:00','12:40:00','Nv','9898886186','2','C','2025-11-07 20:29:30'),(0,0,2180,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9898886186','2','T','2025-11-08 02:16:59'),(0,0,2181,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9409672548','2','T','2025-11-08 02:45:14'),(0,0,2182,0,'Y','2025-11-08','12:20:00','12:30:00','Fv','8320753677','2','C','2025-11-07 20:28:49'),(0,0,2182,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','8320753677','2','T','2025-11-08 00:20:23'),(0,0,2183,0,'Y','2025-11-08','12:00:00','12:10:00','Nv','9825840869','2','C','2025-11-07 20:27:50'),(0,0,2183,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9825840869','2','T','2025-11-08 01:54:33'),(0,0,2183,0,'Y','2025-11-29','10:20:00','10:30:00','Fv','9825840869','2','C','2025-11-28 20:17:34'),(0,0,2183,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9825840869','2','T','2025-11-28 23:47:31'),(0,0,2184,0,'Y','2025-11-08','12:10:00','12:20:00','Fv','7016956750','2','C','2025-11-07 20:28:19'),(0,0,2184,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','7016956750','2','T','2025-11-08 00:35:08'),(0,0,2184,0,'Y','2025-12-22','11:10:00','11:20:00','Fv','7016956750','2','C','2025-12-21 20:16:56'),(0,0,2184,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','7016956750','2','T','2025-12-21 22:57:04'),(0,0,2185,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8823059999','3','T','2025-11-08 00:34:49'),(0,0,2186,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8238700099','5','T','2025-11-08 00:21:53'),(0,0,2187,0,'Y','2025-11-08','13:00:00','13:10:00','Nv','9824327278','2','C','2025-11-07 22:32:47'),(0,0,2187,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','9824327278','2','T','2025-11-08 02:13:45'),(0,0,2187,0,'Y','2025-11-20','17:40:00','17:50:00','','9824327278','2','C','2025-11-20 02:34:25'),(0,0,2187,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9824327278','2','T','2025-11-20 05:25:41'),(0,0,2188,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033522522','3','T','2025-11-08 00:45:49'),(0,0,2189,0,'Y','2026-02-16','08:00:00','08:30:00','Followup','9427731766','2','T','2025-11-08 01:41:47'),(0,0,2190,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913105916','2','T','2025-11-08 01:50:40'),(0,0,2190,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9913105916','2','T','2025-11-10 06:34:56'),(0,0,2192,0,'Y','2025-11-21','17:50:00','18:00:00','','7600605062','2','B','2025-11-21 02:06:15'),(0,0,2192,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','7600605062','2','T','2025-11-17 00:27:20'),(0,0,2193,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6372889008','6','T','2025-11-08 05:17:06'),(0,0,2194,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9782220606','6','T','2025-11-08 05:35:59'),(0,0,2196,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714863632','6','T','2025-11-08 05:36:09'),(0,0,2197,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913529194','3','T','2025-11-09 22:13:55'),(0,0,2201,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974545506','3','T','2025-11-27 23:21:44'),(0,0,2203,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712370443','2','T','2025-11-09 23:49:55'),(0,0,2204,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099444138','7','T','2025-11-10 00:14:50'),(0,0,2207,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427950152','3','T','2025-11-09 22:14:20'),(0,0,2210,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','7600000075','2','T','2025-11-10 00:32:54'),(0,0,2210,0,'Y','2025-12-01','11:10:00','11:20:00','Fv','7600000075','2','C','2025-11-30 20:19:56'),(0,0,2210,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','7600000075','2','T','2025-11-30 22:41:25'),(0,0,2211,0,'Y','2026-01-09','08:00:00','08:30:00','Followup','7043470111','2','T','2025-11-09 23:19:36'),(0,0,2212,0,'Y','2025-11-10','10:10:00','10:20:00','Fv','9879911085','2','C','2025-11-09 20:27:21'),(0,0,2212,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9879911085','2','T','2025-11-09 22:36:28'),(0,0,2214,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','7359999250','2','T','2025-11-10 01:31:20'),(0,0,2214,0,'Y','2025-11-25','10:10:00','10:20:00','Fv','7359999250','2','C','2025-11-24 20:22:45'),(0,0,2214,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','7359999250','2','T','2025-11-24 22:16:24'),(0,0,2215,0,'Y','2025-11-10','10:30:00','10:40:00','Nv','8511166966','2','C','2025-11-09 20:29:33'),(0,0,2215,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','8511166966','2','T','2025-11-10 01:12:15'),(0,0,2215,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','8511166966','2','T','2025-11-25 00:44:01'),(0,0,2217,0,'Y','2025-11-10','10:20:00','10:30:00','Fv','9825629701','2','C','2025-11-09 20:28:19'),(0,0,2217,0,'Y','2026-03-10','08:00:00','08:30:00','Followup','9825629701','2','T','2025-11-09 23:04:12'),(0,0,2219,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9428726177','2','T','2025-11-10 00:02:21'),(0,0,2220,0,'Y','2025-11-19','12:00:00','12:10:00','FC','9624989921','4','C','2025-11-18 23:38:52'),(0,0,2220,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9624989921','4','T','2025-11-19 00:54:24'),(0,0,2221,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904987255','6','T','2025-11-09 23:47:41'),(0,0,2222,0,'Y','2025-11-10','11:30:00','11:40:00','Nv','7600043751','2','C','2025-11-09 20:32:10'),(0,0,2222,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','7600043751','2','T','2025-11-09 23:30:59'),(0,0,2224,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825076400','6','T','2025-11-09 23:47:58'),(0,0,2225,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','9833393319','2','T','2025-11-10 01:42:18'),(0,0,2226,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714414834','2','T','2025-12-18 23:48:29'),(0,0,2226,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9714414834','2','T','2025-11-10 00:45:41'),(0,0,2226,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9714414834','2','T','2025-12-19 05:02:54'),(0,0,2227,0,'Y','2025-11-10','12:00:00','12:10:00','Nv','8238385143','2','C','2025-11-09 20:33:54'),(0,0,2227,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','8238385143','2','T','2025-11-10 01:17:31'),(0,0,2227,0,'Y','2025-11-20','12:10:00','12:20:00','Fv','8238385143','2','B','2025-11-19 20:26:09'),(0,0,2227,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','8238385143','2','T','2025-11-18 22:55:13'),(0,0,2229,0,'Y','2025-11-10','11:40:00','11:50:00','Fv','7990887502','2','C','2025-11-09 20:32:35'),(0,0,2229,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','7990887502','2','T','2025-11-09 23:40:41'),(0,0,2229,0,'Y','2025-12-12','18:20:00','18:30:00','Fv','7990887502','2','C','2025-12-12 03:08:31'),(0,0,2229,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','7990887502','2','T','2025-12-12 07:20:36'),(0,0,2230,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879495664','7','T','2025-12-22 06:31:41'),(0,0,2231,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','9033334351','2','T','2025-11-10 01:52:54'),(0,0,2231,0,'Y','2025-11-20','11:20:00','11:30:00','Fv','9033334351','2','C','2025-11-19 20:22:55'),(0,0,2231,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9033334351','2','T','2025-11-19 23:27:36'),(0,0,2231,0,'Y','2025-12-10','10:20:00','10:30:00','Fv','9033334351','2','C','2025-12-09 20:14:08'),(0,0,2231,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9033334351','2','T','2025-12-09 22:29:53'),(0,0,2233,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','6354534356','2','T','2025-11-10 01:04:59'),(0,0,2233,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','6354534356','2','T','2025-12-19 01:12:48'),(0,0,2234,0,'Y','2025-11-10','12:10:00','12:20:00','Fv','9925314601','2','C','2025-11-09 20:34:41'),(0,0,2234,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9925314601','2','T','2025-11-10 00:10:57'),(0,0,2237,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7698146942','2','T','2025-12-01 00:05:49'),(0,0,2237,0,'Y','2025-11-10','12:30:00','12:40:00','Nv','7698146942','2','C','2025-11-09 20:35:17'),(0,0,2237,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','7698146942','2','T','2025-11-10 01:45:26'),(0,0,2237,0,'Y','2025-11-20','12:50:00','13:00:00','Fv','7698146942','2','C','2025-11-19 20:28:18'),(0,0,2237,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','7698146942','2','T','2025-11-20 00:50:25'),(0,0,2237,0,'Y','2025-12-01','12:10:00','12:20:00','Fv','7698146942','2','C','2025-11-30 20:21:03'),(0,0,2237,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','7698146942','2','T','2025-12-01 05:10:48'),(0,0,2239,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9328348606','2','T','2025-11-10 01:24:23'),(0,0,2240,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9685474572','2','T','2025-11-10 01:44:48'),(0,0,2241,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9824097079','4','T','2025-11-21 00:44:07'),(0,0,2241,0,'Y','2025-12-22','11:40:00','11:50:00','Fc','9824097079','4','C','2025-12-21 21:48:09'),(0,0,2241,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9824097079','4','T','2025-12-22 06:40:37'),(0,0,2242,0,'Y','2026-01-09','08:00:00','08:30:00','Followup','9737680870','2','T','2025-11-10 01:52:31'),(0,0,2244,0,'Y','2025-11-10','16:50:00','17:00:00','Fv','6352848808','2','C','2025-11-10 03:09:32'),(0,0,2244,0,'Y','2026-01-09','08:00:00','08:30:00','Followup','6352848808','2','T','2025-11-10 05:02:26'),(0,0,2245,0,'Y','2025-11-10','17:00:00','17:10:00','Nv','9662409775','2','C','2025-11-10 03:10:21'),(0,0,2245,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9662409775','2','T','2025-11-10 06:54:53'),(0,0,2245,0,'Y','2025-12-01','17:20:00','17:30:00','Fv','9662409775','2','C','2025-12-01 03:36:57'),(0,0,2245,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9662409775','2','T','2025-12-01 05:29:42'),(0,0,2246,0,'Y','2025-11-10','17:30:00','17:40:00','Nv','7990863054','2','C','2025-11-10 03:11:24'),(0,0,2246,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','7990863054','2','T','2025-11-10 07:05:19'),(0,0,2246,0,'Y','2025-12-08','16:50:00','17:00:00','','7990863054','2','C','2025-12-08 02:48:54'),(0,0,2246,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','7990863054','2','T','2025-12-08 04:38:56'),(0,0,2248,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879613496','3','T','2025-11-11 06:21:59'),(0,0,2249,0,'Y','2025-11-10','17:50:00','18:00:00','Fv','','2','C','2025-11-10 03:12:12'),(0,0,2249,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','8160065191','2','T','2025-11-10 05:48:08'),(0,0,2249,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','8160065191','2','T','2025-11-21 05:33:45'),(0,0,2250,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9428225700','2','T','2025-11-10 06:04:34'),(0,0,2250,0,'Y','2025-12-13','12:20:00','12:30:00','Fv','9428225700','2','C','2025-12-12 20:20:10'),(0,0,2250,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9428225700','2','T','2025-12-13 01:59:09'),(0,0,2251,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7567070170','6','T','2025-11-10 05:48:48'),(0,0,2252,0,'Y','2025-11-10','18:40:00','18:50:00','Fv','9922572890','2','C','2025-11-10 03:13:43'),(0,0,2252,0,'Y','2026-01-09','08:00:00','08:30:00','Followup','9922572890','2','T','2025-11-10 06:29:14'),(0,0,2253,0,'Y','2025-11-10','18:30:00','18:40:00','Nv','7600454585','2','C','2025-11-10 03:13:10'),(0,0,2253,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','7600454585','2','T','2025-11-10 07:24:25'),(0,0,2253,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','7600454585','2','T','2025-11-19 06:43:29'),(0,0,2254,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638603222','3','T','2025-11-11 06:22:46'),(0,0,2255,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824293379','2','T','2025-11-10 06:41:46'),(0,0,2255,0,'Y','2025-11-21','08:00:00','08:30:00','Followup','9824293379','2','T','2025-11-11 01:19:40'),(0,0,2255,0,'Y','2025-11-21','18:50:00','19:00:00','','9824293379','2','C','2025-11-21 02:07:27'),(0,0,2255,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9824293379','2','T','2025-11-21 06:35:48'),(0,0,2256,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428157792','6','T','2025-11-10 06:28:30'),(0,0,2260,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','8320659731','2','T','2025-11-10 07:26:57'),(0,0,2262,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9328879979','2','T','2025-11-11 00:25:40'),(0,0,2263,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9687623021','2','T','2025-11-11 01:33:16'),(0,0,2263,0,'Y','2025-12-01','10:20:00','10:30:00','Fv','9687623021','2','C','2025-11-30 20:18:19'),(0,0,2263,0,'Y','2026-01-10','08:00:00','08:30:00','Followup','9687623021','2','T','2025-11-30 22:16:40'),(0,0,2264,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','8401984057','4','T','2025-11-10 23:51:37'),(0,0,2266,0,'Y','2025-11-11','11:50:00','12:00:00','Fv','','2','C','2025-11-10 20:31:25'),(0,0,2266,0,'Y','2026-01-10','08:00:00','08:30:00','Followup','9638290543','2','T','2025-11-10 23:19:21'),(0,0,2267,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9727271611','4','T','2025-11-10 23:14:09'),(0,0,2268,0,'Y','2026-01-10','08:00:00','08:30:00','Followup','9898545712','2','T','2025-11-10 23:23:30'),(0,0,2269,0,'Y','2025-11-11','11:00:00','11:10:00','Nv','9925435895','2','C','2025-11-10 21:01:42'),(0,0,2269,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9925435895','2','T','2025-11-11 01:20:14'),(0,0,2270,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9098501111','4','T','2025-11-11 00:03:37'),(0,0,2270,0,'Y','2026-02-16','08:00:00','08:30:00','Followup','9098501111','4','T','2025-12-16 23:32:14'),(0,0,2271,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9429118650','4','T','2025-11-10 23:34:11'),(0,0,2272,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9429118650','4','T','2025-11-11 01:35:23'),(0,0,2273,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8980403696','6','T','2025-11-10 22:37:56'),(0,0,2274,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','8000766733','2','T','2025-11-10 23:46:59'),(0,0,2274,0,'Y','2025-12-05','11:20:00','11:30:00','FV','8000766733','2','B','2025-12-04 20:29:31'),(0,0,2274,0,'Y','2025-12-11','10:40:00','10:50:00','Fv','8000766733','2','C','2025-12-10 20:14:08'),(0,0,2274,0,'Y','2026-01-20','08:00:00','08:30:00','Followup','8000766733','2','T','2025-12-10 23:16:53'),(0,0,2275,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9687992710','4','T','2025-11-10 23:42:05'),(0,0,2276,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825213581','6','T','2025-11-10 23:00:47'),(0,0,2277,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','7698027933','4','T','2025-11-11 05:56:08'),(0,0,2278,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9974575602','2','T','2025-11-11 00:12:52'),(0,0,2279,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9173286762','4','T','2025-11-11 00:10:57'),(0,0,2280,0,'Y','2026-01-10','08:00:00','08:30:00','Followup','9714497889','2','T','2025-11-11 00:22:14'),(0,0,2281,0,'Y','2025-11-11','11:10:00','11:20:00','','9924914400','4','C','2025-11-10 22:00:53'),(0,0,2281,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9924914400','4','T','2025-11-10 23:27:11'),(0,0,2282,0,'Y','2025-11-11','11:20:00','11:30:00','','9924914400','4','C','2025-11-10 22:01:22'),(0,0,2282,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9924914400','4','T','2025-11-10 23:21:07'),(0,0,2283,0,'Y','2025-11-11','11:40:00','11:50:00','','9664937147','4','C','2025-11-10 22:02:17'),(0,0,2283,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9664937147','4','T','2025-11-11 05:43:04'),(0,0,2284,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','7984825620','2','T','2025-11-11 00:18:29'),(0,0,2285,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9098501111','4','T','2025-11-11 00:51:36'),(0,0,2285,0,'Y','2025-12-17','11:00:00','11:10:00','','9098501111','4','B','2025-12-16 20:57:40'),(0,0,2286,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','9737754654','4','T','2025-11-11 00:27:24'),(0,0,2287,0,'Y','2025-11-11','11:30:00','11:40:00','','9429336982','4','C','2025-11-10 22:01:49'),(0,0,2287,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9429336982','4','T','2025-11-11 01:30:22'),(0,0,2288,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9316323792','4','T','2025-11-11 01:22:37'),(0,0,2289,0,'Y','2025-11-11','12:10:00','12:20:00','','9099515714','4','C','2025-11-10 22:03:18'),(0,0,2289,0,'Y','2025-11-21','08:00:00','08:30:00','Followup','9099515714','4','T','2025-11-11 06:12:58'),(0,0,2290,0,'Y','2025-11-11','12:10:00','12:20:00','Fv','9724460116','2','C','2025-11-10 20:34:08'),(0,0,2290,0,'Y','2026-01-10','08:00:00','08:30:00','Followup','9724460116','2','T','2025-11-11 00:01:15'),(0,0,2291,0,'Y','2025-11-11','12:00:00','12:10:00','Nv','9924844824','2','C','2025-11-10 20:32:44'),(0,0,2291,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9924844824','2','T','2025-11-11 01:42:34'),(0,0,2291,0,'Y','2025-12-13','10:40:00','10:50:00','Fv','9924844824','2','C','2025-12-12 20:11:55'),(0,0,2291,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9924844824','2','T','2025-12-12 22:52:17'),(0,0,2292,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9909946621','4','T','2025-11-11 00:39:18'),(0,0,2293,0,'Y','2026-01-10','08:00:00','08:30:00','Followup','7046967057','2','T','2025-11-11 00:38:38'),(0,0,2294,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9879221630','4','T','2025-11-11 00:49:33'),(0,0,2295,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9429569077','2','T','2025-11-11 00:55:41'),(0,0,2295,0,'Y','2026-01-29','08:00:00','08:30:00','Followup','9429569077','2','T','2025-12-14 23:14:22'),(0,0,2296,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9825036664','2','T','2025-11-11 01:03:25'),(0,0,2296,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9825036664','2','T','2025-12-10 00:58:04'),(0,0,2297,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879668004','4','T','2025-11-24 06:13:49'),(0,0,2297,0,'Y','2025-11-11','13:00:00','13:10:00','','9879668004','4','C','2025-11-10 22:04:58'),(0,0,2297,0,'Y','2025-11-24','18:20:00','18:30:00','FC','9879668004','4','C','2025-11-24 04:17:03'),(0,0,2297,0,'Y','2025-12-16','18:50:00','19:00:00','','9879668004','4','C','2025-12-16 04:20:11'),(0,0,2297,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9879668004','4','T','2025-11-11 01:10:34'),(0,0,2298,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9228152208','4','T','2025-11-11 01:12:34'),(0,0,2299,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9898534626','4','T','2025-11-11 01:15:46'),(0,0,2300,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8238366344','2','T','2025-11-11 01:58:57'),(0,0,2300,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','8238366344','2','T','2025-11-11 05:29:56'),(0,0,2301,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726824700','6','T','2025-11-11 05:54:54'),(0,0,2303,0,'Y','2026-02-19','08:00:00','08:30:00','Followup','9428051290','4','T','2025-11-11 01:47:25'),(0,0,2304,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9574555545','3','T','2025-11-11 06:25:23'),(0,0,2305,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879840084','2','T','2025-11-11 01:53:58'),(0,0,2305,0,'Y','2025-11-21','08:00:00','08:30:00','Followup','9879840084','2','T','2025-11-11 02:16:31'),(0,0,2306,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9898242918','2','T','2025-11-11 04:46:16'),(0,0,2307,0,'Y','2025-11-21','08:00:00','08:30:00','Followup','7016881620','2','T','2025-11-11 06:34:41'),(0,0,2307,0,'Y','2025-11-28','18:50:00','19:00:00','','7016881620','2','C','2025-11-28 02:31:29'),(0,0,2307,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','7016881620','2','T','2025-11-28 06:43:45'),(0,0,2308,0,'Y','2025-11-11','17:00:00','17:10:00','','','2','C','2025-11-11 03:24:20'),(0,0,2308,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9979636630','2','T','2025-11-11 06:23:53'),(0,0,2308,0,'Y','2025-12-12','12:50:00','13:00:00','Fv','9979636630','2','C','2025-12-11 20:16:29'),(0,0,2308,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9979636630','2','T','2025-12-12 00:08:37'),(0,0,2309,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','9824215743','4','T','2025-11-11 05:30:56'),(0,0,2310,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200688304','3','T','2025-11-11 06:40:29'),(0,0,2311,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9714716312','4','T','2025-11-11 06:43:45'),(0,0,2311,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9714716312','4','T','2025-12-01 00:47:45'),(0,0,2313,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904918390','4','T','2025-12-04 00:03:00'),(0,0,2313,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9904918390','4','T','2025-11-11 06:00:38'),(0,0,2313,0,'Y','2025-12-05','18:30:00','18:40:00','','9904918390','4','C','2025-12-05 04:38:23'),(0,0,2314,0,'Y','2025-11-11','18:00:00','18:10:00','','','2','C','2025-11-11 03:26:37'),(0,0,2314,0,'Y','2025-11-21','08:00:00','08:30:00','Followup','9662510609','2','T','2025-11-11 07:00:02'),(0,0,2314,0,'Y','2025-11-21','18:10:00','18:20:00','','9662510609','2','C','2025-11-21 02:06:36'),(0,0,2314,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9662510609','2','T','2025-12-02 05:57:18'),(0,0,2314,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9662510609','2','T','2025-11-21 05:48:51'),(0,0,2315,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','8758744770','4','T','2025-11-11 06:04:02'),(0,0,2316,0,'Y','2025-11-11','18:10:00','18:20:00','FC','9428890764','4','C','2025-11-11 04:04:55'),(0,0,2316,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','9428890764','4','T','2025-11-11 06:08:43'),(0,0,2317,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7202806748','3','T','2025-11-11 06:39:33'),(0,0,2318,0,'Y','2025-11-11','18:50:00','19:00:00','','','2','R','2025-11-11 03:27:48'),(0,0,2318,0,'Y','2025-12-08','18:10:00','18:20:00','','9824581136','2','C','2025-12-08 02:52:53'),(0,0,2318,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9824581136','2','T','2025-12-08 08:02:02'),(0,0,2319,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9429180005','4','T','2025-11-11 06:33:35'),(0,0,2320,0,'Y','2026-02-19','08:00:00','08:30:00','Followup','8511111920','4','T','2025-11-11 06:50:54'),(0,0,2321,0,'Y','2025-11-11','17:50:00','18:00:00','','','2','C','2025-11-11 03:26:19'),(0,0,2321,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9016161977','2','T','2025-11-11 06:58:21'),(0,0,2322,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9377544444','4','T','2025-11-11 06:22:25'),(0,0,2323,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9099971625','4','T','2025-11-11 06:30:59'),(0,0,2324,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9624619195','2','T','2025-11-11 06:51:48'),(0,0,2325,0,'Y','2025-11-11','18:30:00','18:40:00','','','2','C','2025-11-11 03:27:24'),(0,0,2325,0,'Y','2025-11-21','08:00:00','08:30:00','Followup','9099807053','2','T','2025-11-11 07:15:39'),(0,0,2325,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9099807053','2','T','2025-12-01 07:15:20'),(0,0,2325,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9099807053','2','T','2025-11-21 06:47:56'),(0,0,2326,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8511031778','6','T','2025-11-11 06:37:45'),(0,0,2327,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9409528321','4','T','2025-11-11 06:36:15'),(0,0,2328,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9824261835','4','T','2025-11-11 06:59:25'),(0,0,2329,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','9925550847','4','T','2025-11-11 07:30:42'),(0,0,2330,0,'Y','2025-11-11','18:20:00','18:30:00','','','4','C','2025-11-11 04:05:17'),(0,0,2330,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9825942480','4','T','2025-11-11 07:05:00'),(0,0,2331,0,'Y','2025-11-11','19:10:00','19:20:00','FC','9429243201','4','C','2025-11-11 04:08:03'),(0,0,2331,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9429243201','4','T','2025-11-11 06:55:56'),(0,0,2332,0,'Y','2025-11-11','19:00:00','19:10:00','FC','8460008703','4','R','2025-11-11 04:07:27'),(0,0,2333,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426935236','3','T','2025-11-11 06:24:45'),(0,0,2334,0,'Y','2025-11-11','19:00:00','19:10:00','','','2','C','2025-11-11 03:58:49'),(0,0,2334,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','7303711910','2','T','2025-11-11 07:32:32'),(0,0,2334,0,'Y','2025-12-01','11:50:00','12:00:00','Fv','7303711910','2','C','2025-11-30 20:20:53'),(0,0,2334,0,'Y','2025-12-15','10:20:00','10:30:00','Fv','7303711910','2','C','2025-12-14 20:09:02'),(0,0,2334,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','7303711910','2','T','2025-11-30 23:45:24'),(0,0,2334,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','7303711910','2','T','2025-12-14 22:42:45'),(0,0,2335,0,'Y','2025-11-11','18:50:00','19:00:00','','','4','C','2025-11-11 04:07:01'),(0,0,2335,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9824251188','4','T','2025-11-11 07:10:20'),(0,0,2336,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099941499','4','T','2025-11-11 07:16:00'),(0,0,2336,0,'Y','2025-11-11','19:40:00','19:50:00','FC','9099941499','4','C','2025-11-11 04:09:34'),(0,0,2336,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9099941499','4','T','2025-12-02 00:41:54'),(0,0,2337,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426960873','4','T','2025-11-11 07:22:00'),(0,0,2337,0,'Y','2025-11-11','19:50:00','20:00:00','FC','9426960873','4','C','2025-11-11 06:35:58'),(0,0,2338,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9265860231','4','T','2025-11-14 07:05:59'),(0,0,2338,0,'Y','2025-11-11','18:40:00','18:50:00','FC','9265860231','4','C','2025-11-11 04:06:30'),(0,0,2338,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','9265860231','4','T','2025-11-11 07:41:14'),(0,0,2338,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9265860231','4','T','2025-12-05 23:30:00'),(0,0,2339,0,'Y','2025-11-14','18:40:00','18:50:00','','9925819693','4','C','2025-11-14 04:41:25'),(0,0,2339,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','9925819693','4','T','2025-11-11 07:43:14'),(0,0,2339,0,'Y','2025-11-21','08:00:00','08:30:00','Followup','9925819693','4','T','2025-11-14 07:05:49'),(0,0,2339,0,'Y','2025-11-24','11:10:00','11:20:00','','9925819693','4','B','2025-11-23 20:58:10'),(0,0,2340,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9824349633','4','T','2025-11-11 07:47:48'),(0,0,2341,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','7700027000','4','T','2025-11-11 07:50:47'),(0,0,2343,0,'Y','2025-11-20','11:20:00','11:30:00','FC','9825427002','4','C','2025-11-19 21:24:02'),(0,0,2343,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9825427002','4','T','2025-11-19 23:25:33'),(0,0,2344,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979352800','4','T','2025-11-12 06:15:56'),(0,0,2346,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','8898872872','4','T','2025-11-11 22:55:56'),(0,0,2347,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9327336899','3','T','2025-11-12 06:32:17'),(0,0,2348,0,'Y','2025-11-12','11:00:00','11:10:00','Nv','9904486057','2','C','2025-11-11 21:19:29'),(0,0,2348,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9904486057','2','T','2025-11-12 01:06:34'),(0,0,2348,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9904486057','2','T','2025-12-16 23:16:05'),(0,0,2349,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9427729369','4','T','2025-11-11 22:42:26'),(0,0,2350,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898211633','4','T','2025-11-11 22:43:45'),(0,0,2351,0,'Y','2025-11-12','11:50:00','12:00:00','Fv','9023911236','2','C','2025-11-11 20:32:55'),(0,0,2351,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9023911236','2','T','2025-11-11 22:32:28'),(0,0,2351,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9023911236','2','T','2025-12-10 00:06:52'),(0,0,2352,0,'Y','2025-12-05','11:30:00','11:40:00','Fc','9904046007','4','C','2025-12-04 21:28:50'),(0,0,2352,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9904046007','4','T','2025-11-11 22:51:28'),(0,0,2352,0,'Y','2026-03-05','08:00:00','08:30:00','Followup','9904046007','4','T','2025-12-04 23:01:31'),(0,0,2353,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9428251850','4','T','2025-11-11 23:07:31'),(0,0,2354,0,'Y','2025-11-12','11:10:00','11:20:00','Fv','9825279519','2','C','2025-11-11 20:29:25'),(0,0,2354,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9825279519','2','T','2025-11-11 23:04:38'),(0,0,2355,0,'Y','2025-11-12','10:50:00','11:00:00','Fv','9099092904','2','C','2025-11-11 20:28:49'),(0,0,2355,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9099092904','2','T','2025-11-11 23:08:16'),(0,0,2356,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','8000452530','2','T','2025-11-12 00:24:13'),(0,0,2357,0,'Y','2025-11-12','11:30:00','11:40:00','Nv','9724646480','2','C','2025-11-11 22:40:38'),(0,0,2357,0,'Y','2025-12-02','08:00:00','08:30:00','Followup','9724646480','2','T','2025-11-12 01:08:02'),(0,0,2357,0,'Y','2025-12-04','10:50:00','11:00:00','Fv','9724646480','2','C','2025-12-03 20:21:58'),(0,0,2357,0,'Y','2026-01-03','08:00:00','08:30:00','Followup','9724646480','2','T','2025-12-03 23:30:10'),(0,0,2358,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426953035','6','T','2025-11-11 22:59:11'),(0,0,2359,0,'Y','2025-11-12','11:40:00','11:50:00','Fv','9879310448','2','C','2025-11-11 20:32:19'),(0,0,2359,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9879310448','2','T','2025-11-11 23:32:30'),(0,0,2359,0,'Y','2025-12-22','17:40:00','17:50:00','Fv','9879310448','2','C','2025-12-22 03:44:48'),(0,0,2359,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','9879310448','2','T','2025-12-22 05:24:20'),(0,0,2360,0,'Y','2025-11-19','08:00:00','08:30:00','Followup','9924177212','2','T','2025-11-11 23:22:06'),(0,0,2360,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9924177212','2','T','2025-11-18 23:52:31'),(0,0,2361,0,'Y','2025-11-12','10:10:00','10:20:00','Fv','8128365607','2','C','2025-11-11 20:24:49'),(0,0,2361,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','8128365607','2','T','2025-11-11 23:43:03'),(0,0,2362,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925885287','4','T','2025-11-24 00:55:36'),(0,0,2362,0,'Y','2025-11-24','12:30:00','12:40:00','','9925885287','4','C','2025-11-23 22:09:05'),(0,0,2362,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9925885287','4','T','2025-11-11 23:26:09'),(0,0,2364,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9687515763','2','T','2025-11-11 23:50:37'),(0,0,2365,0,'Y','2025-11-12','12:50:00','13:00:00','Fv','9913112265','2','C','2025-11-11 20:36:18'),(0,0,2365,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','9913112265','2','T','2025-11-11 23:56:56'),(0,0,2366,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8609384897','6','T','2025-11-11 23:09:44'),(0,0,2367,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7048670170','3','T','2025-11-11 23:22:52'),(0,0,2368,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9978912543','4','T','2025-11-12 06:03:38'),(0,0,2369,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979965531','6','T','2025-11-11 23:32:30'),(0,0,2370,0,'Y','2025-11-12','12:10:00','12:20:00','Fv','9104122319','2','C','2025-11-11 20:33:32'),(0,0,2370,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9104122319','2','T','2025-11-11 23:53:42'),(0,0,2371,0,'Y','2025-11-12','12:40:00','12:50:00','Fv','','2','C','2025-11-11 20:35:30'),(0,0,2371,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9824892181','2','T','2025-11-12 00:18:58'),(0,0,2372,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7359097150','6','T','2025-11-11 23:39:04'),(0,0,2373,0,'Y','2025-11-12','12:20:00','12:30:00','Fv','9879876424','2','C','2025-11-11 20:34:40'),(0,0,2373,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','9879876424','2','T','2025-11-12 00:03:49'),(0,0,2374,0,'Y','2025-11-19','08:00:00','08:30:00','Followup','9824849988','2','T','2025-11-12 00:43:46'),(0,0,2374,0,'Y','2025-11-24','17:10:00','17:20:00','','9824849988','2','C','2025-11-24 02:33:24'),(0,0,2374,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9824849988','2','T','2025-11-24 04:54:32'),(0,0,2375,0,'Y','2025-11-12','12:00:00','12:10:00','FC','9099923505','4','C','2025-11-11 21:15:06'),(0,0,2375,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9099923505','4','T','2025-11-11 23:53:30'),(0,0,2376,0,'Y','2025-11-12','11:30:00','11:40:00','FC','9265035590','4','C','2025-11-11 21:13:30'),(0,0,2376,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9265035590','4','T','2025-11-12 00:27:45'),(0,0,2377,0,'Y','2025-11-12','12:40:00','12:50:00','','9725424033','4','C','2025-11-11 21:17:03'),(0,0,2377,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','9725424033','4','T','2025-11-12 00:10:35'),(0,0,2378,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879956599','4','T','2025-11-12 00:28:40'),(0,0,2378,0,'Y','2025-11-12','11:50:00','12:00:00','FC','9879956599','4','C','2025-11-11 21:14:30'),(0,0,2379,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824510151','3','T','2025-11-12 00:18:52'),(0,0,2380,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7096594787','3','T','2025-11-28 05:41:52'),(0,0,2381,0,'Y','2025-11-12','12:30:00','12:40:00','FC','9879134499','4','C','2025-11-11 21:16:21'),(0,0,2381,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9879134499','4','T','2025-11-12 00:55:44'),(0,0,2382,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','7016037987','4','T','2025-11-12 01:18:18'),(0,0,2383,0,'Y','2025-11-19','08:00:00','08:30:00','Followup','8460680045','4','T','2025-11-12 00:48:00'),(0,0,2384,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879376531','3','T','2025-12-04 06:58:40'),(0,0,2385,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8758749736','3','T','2025-11-12 08:00:08'),(0,0,2386,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825756058','2','T','2025-11-12 04:37:16'),(0,0,2387,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8980330270','2','T','2025-11-12 04:54:07'),(0,0,2388,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9913542169','4','T','2025-11-12 07:32:58'),(0,0,2389,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033390099','3','T','2025-11-12 06:21:30'),(0,0,2390,0,'Y','2025-11-12','17:10:00','17:20:00','Fv','9723298805','2','C','2025-11-12 02:41:14'),(0,0,2390,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9723298805','2','T','2025-11-12 05:00:55'),(0,0,2391,0,'Y','2025-11-12','16:40:00','16:50:00','Fv','8866051231','2','C','2025-11-12 02:39:35'),(0,0,2391,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','8866051231','2','T','2025-11-12 05:09:54'),(0,0,2392,0,'Y','2025-11-12','17:00:00','17:10:00','Nv','9638134359','2','C','2025-11-12 02:40:40'),(0,0,2392,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9638134359','2','T','2025-11-12 06:44:57'),(0,0,2393,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9998466604','2','T','2025-11-12 05:23:51'),(0,0,2394,0,'Y','2025-11-12','18:10:00','18:20:00','FC','9638141500','4','C','2025-11-12 04:22:03'),(0,0,2394,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9638141500','4','T','2025-11-12 07:10:47'),(0,0,2395,0,'Y','2025-12-02','08:00:00','08:30:00','Followup','9512798114','2','T','2025-11-12 06:28:49'),(0,0,2396,0,'Y','2025-11-12','18:00:00','18:10:00','Nv','8200772731','2','C','2025-11-12 02:44:04'),(0,0,2396,0,'Y','2025-11-22','08:00:00','08:30:00','Followup','8200772731','2','T','2025-11-12 07:05:25'),(0,0,2396,0,'Y','2025-11-24','18:40:00','18:50:00','','8200772731','2','C','2025-11-24 02:35:36'),(0,0,2396,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','8200772731','2','T','2025-11-24 06:38:12'),(0,0,2397,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429422880','3','T','2025-11-12 06:25:53'),(0,0,2398,0,'Y','2025-11-22','08:00:00','08:30:00','Followup','9725327646','2','T','2025-11-12 06:00:52'),(0,0,2399,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974375743','2','T','2025-11-24 07:16:54'),(0,0,2399,0,'Y','2025-11-12','17:40:00','17:50:00','','9974375743','2','C','2025-11-12 02:43:10'),(0,0,2399,0,'Y','2025-11-28','18:20:00','18:30:00','','9974375743','2','B','2025-11-28 02:31:04'),(0,0,2399,0,'Y','2025-12-08','11:50:00','12:00:00','Fv','9974375743','2','C','2025-12-07 20:33:19'),(0,0,2399,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9974375743','2','T','2025-12-08 00:04:00'),(0,0,2399,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9974375743','2','T','2025-11-12 05:34:51'),(0,0,2400,0,'Y','2025-11-12','18:10:00','18:20:00','Fv','8000550056','2','C','2025-11-12 02:44:47'),(0,0,2400,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','8000550056','2','T','2025-11-12 05:55:09'),(0,0,2401,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9099099141','2','T','2025-11-12 05:31:56'),(0,0,2401,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9099099141','2','T','2025-12-12 05:38:38'),(0,0,2402,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904033739','4','T','2025-11-30 23:49:18'),(0,0,2402,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9904033739','4','T','2025-11-12 06:13:19'),(0,0,2403,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9428274352','4','T','2025-11-12 06:34:55'),(0,0,2404,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','6353361762','2','T','2025-11-12 06:09:02'),(0,0,2405,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879892493','4','T','2025-11-12 06:42:22'),(0,0,2405,0,'Y','2025-11-22','08:00:00','08:30:00','Followup','9879892493','4','T','2025-11-12 06:45:11'),(0,0,2406,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925961921','2','T','2025-11-12 07:35:02'),(0,0,2406,0,'Y','2025-11-12','18:30:00','18:40:00','Nv','9925961921','2','C','2025-11-12 02:45:28'),(0,0,2406,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9925961921','2','T','2025-11-13 05:57:43'),(0,0,2408,0,'Y','2025-11-17','08:00:00','08:30:00','Followup','9023900675','2','T','2025-11-12 07:00:43'),(0,0,2410,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824804164','4','T','2025-11-13 00:07:13'),(0,0,2411,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8460018904','4','T','2025-11-13 06:01:45'),(0,0,2411,0,'Y','2025-11-12','18:30:00','18:40:00','FC','','4','C','2025-11-12 04:22:55'),(0,0,2411,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','8461809004','4','T','2025-11-12 06:39:57'),(0,0,2412,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6353858560','4','T','2025-11-12 22:56:59'),(0,0,2412,0,'Y','2025-11-12','19:00:00','19:10:00','FC','6353858560','4','R','2025-11-12 04:24:28'),(0,0,2413,0,'Y','2025-11-12','18:40:00','18:50:00','FC','9725653361','4','C','2025-11-12 04:23:22'),(0,0,2413,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9725653361','4','T','2025-11-12 06:57:45'),(0,0,2414,0,'Y','2025-11-12','18:20:00','18:30:00','FC','9737176037','4','R','2025-11-12 04:22:31'),(0,0,2414,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9737176037','4','T','2025-11-13 07:02:27'),(0,0,2415,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9601699997','3','T','2025-11-12 08:01:46'),(0,0,2416,0,'Y','2025-11-19','08:00:00','08:30:00','Followup','7046383671','2','T','2025-11-12 07:37:48'),(0,0,2417,0,'Y','2025-11-19','08:00:00','08:30:00','Followup','8100099999','2','T','2025-11-12 07:29:56'),(0,0,2418,0,'Y','2025-11-19','08:00:00','08:30:00','Followup','9924166721','4','T','2025-11-12 07:47:57'),(0,0,2421,0,'Y','2026-02-18','08:00:00','08:30:00','Followup','6352756306','4','T','2025-11-20 06:02:16'),(0,0,2422,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9737970314','6','T','2025-11-12 07:26:40'),(0,0,2423,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9925179010','4','T','2025-11-12 08:08:38'),(0,0,2423,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9925179010','4','T','2025-12-12 07:02:59'),(0,0,2425,0,'Y','2025-11-12','19:20:00','19:30:00','FC','8320603071','4','C','2025-11-12 04:26:56'),(0,0,2425,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','8320603071','4','T','2025-11-12 07:37:25'),(0,0,2426,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879578030','4','T','2025-11-24 05:53:24'),(0,0,2426,0,'Y','2025-11-22','08:00:00','08:30:00','Followup','9879578030','4','T','2025-11-12 08:15:09'),(0,0,2426,0,'Y','2025-11-24','18:10:00','18:20:00','FC','9879578030','4','C','2025-11-24 04:16:18'),(0,0,2427,0,'Y','2025-11-12','19:30:00','19:40:00','','8320603071','4','C','2025-11-12 04:26:20'),(0,0,2427,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','8320603071','4','T','2025-11-12 07:40:41'),(0,0,2429,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9909012206','2','T','2025-11-12 07:40:53'),(0,0,2430,0,'Y','2025-12-02','08:00:00','08:30:00','Followup','9909012206','2','T','2025-11-12 08:15:59'),(0,0,2431,0,'Y','2025-11-12','19:50:00','20:00:00','','9998491768','4','R','2025-11-12 04:52:17'),(0,0,2432,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7228877201','6','T','2025-11-12 07:41:26'),(0,0,2433,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9782390320','2','T','2025-11-12 07:54:23'),(0,0,2434,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723707200','3','T','2025-11-12 08:01:03'),(0,0,2435,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429334333','4','T','2025-11-12 22:29:31'),(0,0,2436,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9271604310','4','T','2025-11-12 23:27:50'),(0,0,2437,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9271604310','4','T','2025-11-12 22:48:56'),(0,0,2440,0,'Y','2026-03-13','08:00:00','08:30:00','Followup','9016726464','2','T','2025-11-13 01:34:45'),(0,0,2441,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','8980557555','2','T','2025-11-12 22:45:27'),(0,0,2442,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','7878255558','4','T','2025-11-13 01:19:36'),(0,0,2443,0,'Y','2025-11-13','10:50:00','11:00:00','FV','9429327477','2','C','2025-11-12 20:39:34'),(0,0,2443,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9429327477','2','T','2025-11-12 22:31:32'),(0,0,2443,0,'Y','2025-12-22','11:20:00','11:30:00','Fv','9429327477','2','B','2025-12-21 20:17:25'),(0,0,2444,0,'Y','2025-11-13','12:50:00','13:00:00','FV','9408165334','2','C','2025-11-12 20:44:05'),(0,0,2444,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9408165334','2','T','2025-11-12 23:16:59'),(0,0,2445,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9428720826','4','T','2025-11-13 07:17:29'),(0,0,2446,0,'Y','2025-11-13','11:50:00','12:00:00','FV','9827521479','2','C','2025-11-12 20:41:26'),(0,0,2446,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9827521479','2','T','2025-11-12 23:29:46'),(0,0,2447,0,'Y','2025-11-13','11:00:00','11:10:00','Nv','8155847543','2','C','2025-11-12 20:35:53'),(0,0,2447,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','8155847543','2','T','2025-11-13 00:57:29'),(0,0,2447,0,'Y','2025-11-24','10:40:00','10:50:00','Fv','8155847543','2','C','2025-11-23 20:18:24'),(0,0,2447,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9409257223','2','T','2025-11-23 22:32:44'),(0,0,2448,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8141812444','3','T','2025-11-12 22:31:32'),(0,0,2449,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','9824355533','2','T','2025-11-12 23:38:41'),(0,0,2449,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9824355533','2','T','2025-12-09 00:05:48'),(0,0,2450,0,'Y','2025-11-13','11:10:00','11:20:00','FV','9727930690','2','C','2025-11-12 20:36:31'),(0,0,2450,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9727930690','2','T','2025-11-12 22:59:05'),(0,0,2451,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7490859085','3','T','2025-11-12 22:59:17'),(0,0,2452,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','7874236540','4','T','2025-11-12 23:15:21'),(0,0,2453,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9924365098','4','T','2025-11-13 05:54:33'),(0,0,2454,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','0','2','T','2025-11-12 23:56:33'),(0,0,2455,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9724122191','2','T','2025-11-13 01:13:46'),(0,0,2455,0,'Y','2025-11-24','11:10:00','11:20:00','Fv','9724122191','2','C','2025-11-23 20:21:00'),(0,0,2455,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9724122191','2','T','2025-11-23 22:55:34'),(0,0,2456,0,'Y','2025-11-13','11:00:00','11:10:00','FV','','4','C','2025-11-12 21:22:50'),(0,0,2456,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9726395263','4','T','2025-11-12 23:25:33'),(0,0,2457,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7817010505','4','T','2025-11-13 01:28:04'),(0,0,2458,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','8320473260','4','T','2025-11-13 00:22:30'),(0,0,2459,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','9825396694','4','T','2025-11-13 00:26:02'),(0,0,2460,0,'Y','2025-11-13','11:40:00','11:50:00','NC','','4','C','2025-11-12 21:25:32'),(0,0,2460,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','8866088786','4','T','2025-11-12 23:42:13'),(0,0,2461,0,'Y','2025-11-13','11:40:00','11:50:00','FV','9898104057','2','C','2025-11-12 20:40:08'),(0,0,2461,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9898104057','2','T','2025-11-12 23:33:46'),(0,0,2462,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9925264045','2','T','2025-11-13 01:35:27'),(0,0,2462,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9925264045','2','T','2025-12-02 23:48:46'),(0,0,2463,0,'Y','2025-11-13','12:00:00','12:10:00','NV','9426448720','2','C','2025-11-12 21:29:20'),(0,0,2463,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9426448720','2','T','2025-11-13 01:47:50'),(0,0,2463,0,'Y','2025-11-24','10:10:00','10:20:00','Fv','9426448720','2','C','2025-11-23 20:17:23'),(0,0,2463,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9426448720','2','T','2025-11-23 22:14:42'),(0,0,2463,0,'Y','2025-12-04','10:10:00','10:20:00','Fv','9426448720','2','C','2025-12-03 20:20:33'),(0,0,2463,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9426448720','2','T','2025-12-03 22:22:26'),(0,0,2463,0,'Y','2025-12-16','16:50:00','17:00:00','','9426448720','2','B','2025-12-16 02:20:09'),(0,0,2463,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9426448720','2','T','2025-12-15 05:42:32'),(0,0,2464,0,'Y','2025-11-13','12:20:00','12:30:00','Nc','','4','C','2025-11-12 21:26:47'),(0,0,2464,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9898211633','4','T','2025-11-13 01:36:50'),(0,0,2464,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','9898211633','4','T','2025-12-11 23:08:43'),(0,0,2465,0,'Y','2025-11-13','12:30:00','12:40:00','','9427410127','4','C','2025-11-12 22:06:53'),(0,0,2465,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9427410127','4','T','2025-11-13 00:57:33'),(0,0,2466,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9426949726','4','T','2025-11-13 01:10:29'),(0,0,2467,0,'Y','2025-11-13','12:40:00','12:50:00','FV','','4','C','2025-11-12 22:16:09'),(0,0,2467,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9016943635','4','T','2025-11-13 01:14:21'),(0,0,2468,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909830926','4','T','2025-11-14 06:02:55'),(0,0,2469,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7624048348','4','T','2025-11-13 01:33:37'),(0,0,2471,0,'Y','2026-02-21','08:00:00','08:30:00','Followup','9409258698','2','T','2025-11-13 01:55:04'),(0,0,2472,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','7490859085','4','T','2025-11-13 06:01:16'),(0,0,2473,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','7359011618','2','T','2025-11-13 02:00:01'),(0,0,2475,0,'Y','2025-11-13','17:00:00','17:10:00','NV','9428125566','2','C','2025-11-13 03:23:21'),(0,0,2475,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9428125566','2','T','2025-11-13 06:12:18'),(0,0,2475,0,'Y','2025-12-03','10:50:00','11:00:00','Fv','9428125566','2','C','2025-12-02 20:20:52'),(0,0,2475,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9428125566','2','T','2025-12-02 22:38:23'),(0,0,2476,0,'Y','2025-11-13','17:40:00','17:50:00','FV','8807302302','2','C','2025-11-13 03:25:05'),(0,0,2476,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','8807302302','2','T','2025-11-13 04:50:46'),(0,0,2477,0,'Y','2025-11-13','17:10:00','17:20:00','FV','9374989952','2','C','2025-11-13 03:24:01'),(0,0,2477,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9374989952','2','T','2025-11-13 04:47:32'),(0,0,2478,0,'Y','2025-11-13','16:50:00','17:00:00','FV','9428039071','2','C','2025-11-13 03:22:42'),(0,0,2478,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9428039071','2','T','2025-11-13 04:57:58'),(0,0,2479,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','8141946945','2','T','2025-11-13 06:56:24'),(0,0,2479,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','8141946945','2','T','2025-12-02 05:13:21'),(0,0,2480,0,'Y','2025-11-13','17:30:00','17:40:00','NV','9099059939','2','C','2025-11-13 03:24:40'),(0,0,2480,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9099059939','2','T','2025-11-13 06:14:58'),(0,0,2480,0,'Y','2025-12-03','16:40:00','16:50:00','Fv','9099059939','2','C','2025-12-03 02:49:16'),(0,0,2480,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9099059939','2','T','2025-12-03 04:32:16'),(0,0,2481,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9909459656','2','T','2025-11-13 05:30:53'),(0,0,2482,0,'Y','2025-11-13','18:00:00','18:10:00','NV','9016653773','2','C','2025-11-13 03:25:41'),(0,0,2482,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9016653773','2','T','2025-11-13 07:03:33'),(0,0,2482,0,'Y','2025-12-03','17:40:00','17:50:00','Fv','9016653773','2','C','2025-12-03 02:52:11'),(0,0,2482,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9016653773','2','T','2025-12-03 05:40:29'),(0,0,2483,0,'Y','2025-11-13','18:10:00','18:20:00','FC','9898569713','4','R','2025-11-13 04:19:52'),(0,0,2484,0,'Y','2025-11-13','18:20:00','18:30:00','FV','9723233939','2','C','2025-11-13 03:26:45'),(0,0,2484,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9723233939','2','T','2025-11-13 05:43:03'),(0,0,2485,0,'Y','2025-11-18','08:00:00','08:30:00','Followup','9428037780','2','T','2025-11-13 06:11:35'),(0,0,2486,0,'Y','2025-11-13','18:30:00','18:40:00','NC','','4','R','2025-11-13 05:23:35'),(0,0,2487,0,'Y','2025-11-13','18:10:00','18:20:00','FV','7043530837','2','C','2025-11-13 03:26:22'),(0,0,2487,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','7043530837','2','T','2025-11-13 05:46:05'),(0,0,2488,0,'Y','2025-11-13','18:20:00','18:30:00','FC','9924118070','4','C','2025-11-13 04:21:00'),(0,0,2488,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9924118070','4','T','2025-11-13 06:13:30'),(0,0,2489,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9924118070','4','T','2025-11-13 07:05:35'),(0,0,2491,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866211871','4','T','2025-11-13 06:54:05'),(0,0,2491,0,'Y','2025-11-13','18:40:00','18:50:00','FC','8866211871','4','C','2025-11-13 04:21:37'),(0,0,2492,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879115032','4','T','2025-11-13 06:53:54'),(0,0,2492,0,'Y','2025-11-13','18:50:00','19:00:00','NC','9879115032','4','C','2025-11-13 04:22:03'),(0,0,2493,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9712250122','2','T','2025-11-13 07:02:22'),(0,0,2494,0,'Y','2025-11-13','19:10:00','19:20:00','FC','7777962777','4','C','2025-11-13 04:22:52'),(0,0,2494,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','7777962777','4','T','2025-11-13 07:10:05'),(0,0,2496,0,'Y','2025-11-13','19:00:00','19:10:00','FC','9427209656','4','C','2025-11-13 04:22:31'),(0,0,2496,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9427209656','4','T','2025-11-13 07:00:05'),(0,0,2497,0,'Y','2025-11-13','18:00:00','18:10:00','FC','','4','R','2025-11-13 04:19:09'),(0,0,2498,0,'Y','2025-11-13','19:20:00','19:30:00','FC','9726976267','4','R','2025-11-13 04:23:38'),(0,0,2499,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9825181706','4','T','2025-11-19 23:35:21'),(0,0,2501,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9428348553','4','T','2025-11-13 23:53:27'),(0,0,2501,0,'Y','2025-11-24','18:00:00','18:10:00','FC','9428348553','4','C','2025-11-24 04:16:06'),(0,0,2501,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9428348553','4','T','2025-11-24 06:04:33'),(0,0,2501,0,'Y','2025-12-06','11:50:00','12:00:00','','9428348553','4','R','2025-12-05 21:52:59'),(0,0,2501,0,'Y','2025-12-10','18:20:00','18:30:00','FC','9428348553','4','C','2025-12-10 04:33:13'),(0,0,2501,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9428348553','4','T','2025-12-10 06:18:30'),(0,0,2503,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9925642056','2','T','2025-11-14 00:41:59'),(0,0,2503,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9925642056','2','T','2025-11-30 22:32:16'),(0,0,2504,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725645380','3','T','2025-12-04 04:34:31'),(0,0,2505,0,'Y','2026-02-12','08:00:00','08:30:00','Followup','7359233369','4','T','2025-11-13 22:34:22'),(0,0,2506,0,'Y','2025-11-21','12:20:00','12:30:00','FC','9925819542','4','C','2025-11-20 23:21:57'),(0,0,2506,0,'Y','2026-02-19','08:00:00','08:30:00','Followup','9925819542','4','T','2025-11-21 00:30:32'),(0,0,2507,0,'Y','2025-11-14','10:50:00','11:00:00','Ne','9825246551','2','C','2025-11-13 20:19:39'),(0,0,2507,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9825246551','2','T','2025-11-14 01:09:40'),(0,0,2507,0,'Y','2025-11-25','10:20:00','10:30:00','Fv','9825246551','2','C','2025-11-24 20:23:06'),(0,0,2507,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9825246551','2','T','2025-11-24 22:42:18'),(0,0,2507,0,'Y','2025-12-23','10:10:00','10:20:00','Fv','9825246551','2','C','2025-12-22 20:17:24'),(0,0,2507,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9825246551','2','T','2025-12-23 05:17:07'),(0,0,2508,0,'Y','2026-03-14','08:00:00','08:30:00','Followup','9824192461','2','T','2025-11-13 23:04:44'),(0,0,2509,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9909912383','4','T','2025-11-14 00:57:04'),(0,0,2510,0,'Y','2025-11-14','10:30:00','10:40:00','Nv','9825079382','2','C','2025-11-13 20:18:46'),(0,0,2510,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9825079382','2','T','2025-11-14 01:02:30'),(0,0,2510,0,'Y','2025-12-08','12:20:00','12:30:00','Fv','9825079382','2','C','2025-12-07 20:15:59'),(0,0,2510,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','9825079382','2','T','2025-12-08 00:43:21'),(0,0,2511,0,'Y','2025-11-14','10:40:00','10:50:00','Fv','9099825233','2','C','2025-11-13 20:19:15'),(0,0,2511,0,'Y','2026-01-13','08:00:00','08:30:00','Followup','9099825233','2','T','2025-11-13 22:56:50'),(0,0,2512,0,'Y','2025-11-14','11:10:00','11:20:00','Fv','9737936236','2','C','2025-11-13 20:20:06'),(0,0,2512,0,'Y','2026-02-23','08:00:00','08:30:00','Followup','9737936236','2','T','2025-11-13 22:59:26'),(0,0,2513,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824123232','4','T','2025-11-14 00:26:33'),(0,0,2514,0,'Y','2025-11-19','08:00:00','08:30:00','Followup','9879341123','2','T','2025-11-14 01:13:48'),(0,0,2515,0,'Y','2025-11-14','12:10:00','12:20:00','Fv','','2','C','2025-11-13 20:21:37'),(0,0,2515,0,'Y','2026-01-13','08:00:00','08:30:00','Followup','9724582796','2','T','2025-11-13 23:14:09'),(0,0,2516,0,'Y','2025-11-14','12:40:00','12:50:00','Fv','7016941983','2','C','2025-11-13 20:22:47'),(0,0,2516,0,'Y','2026-02-12','08:00:00','08:30:00','Followup','7016941983','2','T','2025-11-13 23:47:45'),(0,0,2518,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7863888491','4','T','2025-11-14 00:57:55'),(0,0,2519,0,'Y','2025-11-14','11:10:00','11:20:00','','9714891611','4','C','2025-11-13 21:43:18'),(0,0,2519,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9714891611','4','T','2025-11-14 00:38:46'),(0,0,2521,0,'Y','2025-11-14','11:40:00','11:50:00','','7574886486','4','C','2025-11-13 21:44:57'),(0,0,2521,0,'Y','2026-05-13','08:00:00','08:30:00','Followup','7574886486','4','T','2025-11-14 00:20:17'),(0,0,2522,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825907082','2','T','2025-11-14 00:50:20'),(0,0,2523,0,'Y','2025-11-14','11:40:00','11:50:00','Fv','9687832371','2','C','2025-11-13 20:21:15'),(0,0,2523,0,'Y','2026-01-13','08:00:00','08:30:00','Followup','9687832371','2','T','2025-11-13 23:37:11'),(0,0,2525,0,'Y','2025-11-14','12:00:00','12:10:00','','9737457158','4','C','2025-11-13 21:46:17'),(0,0,2525,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9737457158','4','T','2025-11-14 00:27:05'),(0,0,2527,0,'Y','2025-11-14','11:50:00','12:00:00','','7990704207','4','C','2025-11-13 21:45:42'),(0,0,2527,0,'Y','2026-02-12','08:00:00','08:30:00','Followup','7990704207','4','T','2025-11-14 01:24:49'),(0,0,2528,0,'Y','2025-11-14','12:10:00','12:20:00','','9016299044','4','C','2025-11-13 22:06:38'),(0,0,2528,0,'Y','2026-02-12','08:00:00','08:30:00','Followup','9016299044','4','T','2025-11-14 06:14:08'),(0,0,2529,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979602502','7','T','2025-11-27 05:56:48'),(0,0,2530,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7698990170','3','T','2025-11-29 05:50:06'),(0,0,2531,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9909007400','4','T','2025-11-14 00:14:12'),(0,0,2532,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6351514432','6','T','2025-11-14 00:25:45'),(0,0,2533,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725317008','6','T','2025-11-14 00:31:06'),(0,0,2534,0,'Y','2026-01-13','08:00:00','08:30:00','Followup','6351036934','2','T','2025-11-14 01:09:01'),(0,0,2535,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825133834','4','T','2025-11-14 06:31:42'),(0,0,2536,0,'Y','2026-02-12','08:00:00','08:30:00','Followup','9054315004','4','T','2025-11-14 01:32:59'),(0,0,2537,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898696603','6','T','2025-11-14 05:50:34'),(0,0,2538,0,'Y','2025-11-21','08:00:00','08:30:00','Followup','9722301322','4','T','2025-11-14 01:29:39'),(0,0,2539,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9106568378','4','T','2025-11-29 00:32:19'),(0,0,2540,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714692814','4','T','2025-11-14 05:44:15'),(0,0,2541,0,'Y','2025-11-14','17:00:00','17:10:00','Nv','7434807113','2','C','2025-11-14 03:55:01'),(0,0,2541,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','7434807113','2','T','2025-11-14 06:46:39'),(0,0,2541,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','7434807113','2','T','2025-11-29 00:29:23'),(0,0,2542,0,'Y','2025-11-14','16:40:00','16:50:00','Fv','9601883825','2','C','2025-11-14 03:01:06'),(0,0,2542,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9601883825','2','T','2025-11-14 05:15:20'),(0,0,2542,0,'Y','2025-12-10','18:40:00','18:50:00','Fv','9601883825','2','C','2025-12-10 05:58:47'),(0,0,2542,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9601883825','2','T','2025-12-10 06:31:10'),(0,0,2543,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904623081','2','T','2025-11-14 05:43:51'),(0,0,2544,0,'Y','2025-11-14','17:10:00','17:20:00','FV','','2','C','2025-11-14 03:06:25'),(0,0,2544,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9978814380','2','T','2025-11-14 07:10:04'),(0,0,2544,0,'Y','2025-12-04','10:40:00','10:50:00','Fv','9978814380','2','C','2025-12-03 20:21:48'),(0,0,2544,0,'Y','2026-01-13','08:00:00','08:30:00','Followup','9978814380','2','T','2025-12-03 22:32:01'),(0,0,2545,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6358895652','2','T','2025-11-14 05:44:33'),(0,0,2546,0,'Y','2025-11-14','18:30:00','18:40:00','','9825695846','4','C','2025-11-14 04:17:43'),(0,0,2546,0,'Y','2026-02-12','08:00:00','08:30:00','Followup','9825695846','4','T','2025-11-14 05:49:03'),(0,0,2547,0,'Y','2025-11-14','17:30:00','17:40:00','NV','9712369529','2','C','2025-11-14 04:30:41'),(0,0,2547,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9712369529','2','T','2025-11-14 06:59:48'),(0,0,2547,0,'Y','2025-11-24','11:20:00','11:30:00','Fv','9712369529','2','C','2025-11-23 20:21:17'),(0,0,2547,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9712369529','2','T','2025-11-23 23:15:27'),(0,0,2548,0,'Y','2025-11-14','17:20:00','17:30:00','Fv','9429776029','2','C','2025-11-14 03:06:48'),(0,0,2548,0,'Y','2026-01-13','08:00:00','08:30:00','Followup','9429776029','2','T','2025-11-14 05:28:56'),(0,0,2549,0,'Y','2026-02-12','08:00:00','08:30:00','Followup','9825230744','4','T','2025-11-14 06:52:23'),(0,0,2550,0,'Y','2025-11-14','18:20:00','18:30:00','','9275036140','4','C','2025-11-14 04:17:14'),(0,0,2550,0,'Y','2026-01-09','08:00:00','08:30:00','Followup','9275036140','4','T','2025-11-14 06:08:23'),(0,0,2551,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9409384804','2','T','2025-11-14 06:02:37'),(0,0,2551,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9409384804','2','T','2025-12-03 05:12:39'),(0,0,2553,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825457159','4','T','2025-11-14 06:31:03'),(0,0,2553,0,'Y','2025-11-14','18:50:00','19:00:00','','9825457159','4','C','2025-11-14 05:10:29'),(0,0,2553,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','9825457159','4','T','2025-12-12 07:23:23'),(0,0,2554,0,'Y','2025-11-14','18:10:00','18:20:00','','8401228037','4','C','2025-11-14 04:15:45'),(0,0,2554,0,'Y','2026-02-12','08:00:00','08:30:00','Followup','8401228037','4','T','2025-11-14 05:57:31'),(0,0,2555,0,'Y','2025-11-14','17:50:00','18:00:00','Fv','8160998347','2','C','2025-11-14 03:07:38'),(0,0,2555,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','8160998347','2','T','2025-11-14 06:09:09'),(0,0,2555,0,'Y','2025-12-15','18:10:00','18:20:00','','8160998347','2','C','2025-12-15 05:40:19'),(0,0,2555,0,'Y','2026-01-29','08:00:00','08:30:00','Followup','8160998347','2','T','2025-12-15 05:58:05'),(0,0,2556,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428684853','4','T','2025-11-14 22:45:46'),(0,0,2556,0,'Y','2025-11-14','18:00:00','18:10:00','','9428684853','4','R','2025-11-14 04:14:58'),(0,0,2557,0,'Y','2025-11-14','18:40:00','18:50:00','Fv','9426229436','2','C','2025-11-14 03:09:09'),(0,0,2557,0,'Y','2026-03-14','08:00:00','08:30:00','Followup','9426229436','2','T','2025-11-14 06:13:57'),(0,0,2558,0,'Y','2026-02-12','08:00:00','08:30:00','Followup','9429994573','2','T','2025-11-14 06:26:11'),(0,0,2559,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7359015458','6','T','2025-11-14 06:09:49'),(0,0,2560,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7043245580','3','T','2025-11-29 05:49:32'),(0,0,2561,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','8849743441','4','T','2025-11-14 06:24:58'),(0,0,2562,0,'Y','2026-02-12','08:00:00','08:30:00','Followup','9924818757','4','T','2025-11-14 06:49:34'),(0,0,2563,0,'Y','2025-11-28','18:20:00','18:30:00','','9687835366','4','C','2025-11-28 04:01:33'),(0,0,2563,0,'Y','2026-02-26','08:00:00','08:30:00','Followup','9687835366','4','T','2025-11-28 07:19:27'),(0,0,2564,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9925036965','4','T','2025-12-02 07:13:10'),(0,0,2564,0,'Y','2026-02-12','08:00:00','08:30:00','Followup','9925036965','4','T','2025-11-14 07:13:16'),(0,0,2565,0,'Y','2026-02-12','08:00:00','08:30:00','Followup','9429157057','4','T','2025-11-14 07:17:15'),(0,0,2566,0,'Y','2026-02-12','08:00:00','08:30:00','Followup','9427214417','4','T','2025-11-14 07:21:15'),(0,0,2567,0,'Y','2025-12-04','18:40:00','18:50:00','','9537825597','4','C','2025-12-04 05:01:40'),(0,0,2567,0,'Y','2026-01-03','08:00:00','08:30:00','Followup','9537825597','4','T','2025-12-04 06:28:39'),(0,0,2567,0,'Y','2026-01-13','08:00:00','08:30:00','Followup','9537825597','4','T','2025-11-14 07:27:44'),(0,0,2569,0,'Y','2026-02-12','08:00:00','08:30:00','Followup','9820437438','4','T','2025-11-14 06:58:59'),(0,0,2570,0,'Y','2025-11-21','18:20:00','18:30:00','','7874143463','4','C','2025-11-21 04:31:22'),(0,0,2570,0,'Y','2026-02-19','08:00:00','08:30:00','Followup','7874143463','4','T','2025-11-21 06:47:53'),(0,0,2571,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7990038181','4','T','2025-11-14 23:37:04'),(0,0,2572,0,'Y','2025-11-15','10:10:00','10:20:00','Fv','6355176731','2','C','2025-11-14 20:20:31'),(0,0,2572,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','6355176731','2','T','2025-11-14 22:34:40'),(0,0,2574,0,'Y','2025-11-15','11:20:00','11:30:00','FC','','4','R','2025-11-14 20:39:35'),(0,0,2575,0,'Y','2025-11-15','10:30:00','10:40:00','Nv','9904322425','2','C','2025-11-14 21:52:42'),(0,0,2575,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9904322425','2','T','2025-11-15 00:42:09'),(0,0,2576,0,'Y','2025-11-15','11:00:00','11:10:00','FC','9638853936','4','C','2025-11-14 20:39:17'),(0,0,2576,0,'Y','2026-02-13','08:00:00','08:30:00','Followup','9638853936','4','T','2025-11-14 23:01:42'),(0,0,2577,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712983706','6','T','2025-11-14 23:17:04'),(0,0,2578,0,'Y','2025-11-15','10:50:00','11:00:00','Fv','9054960123','2','C','2025-11-14 20:21:47'),(0,0,2578,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9054960123','2','T','2025-11-14 22:39:03'),(0,0,2580,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6353875590','2','T','2025-11-14 23:39:14'),(0,0,2581,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9909952329','2','T','2025-11-14 22:46:31'),(0,0,2582,0,'Y','2025-11-15','12:50:00','13:00:00','Fv','9924298375','2','C','2025-11-14 20:26:05'),(0,0,2582,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9924298375','2','T','2025-11-14 22:56:49'),(0,0,2583,0,'Y','2025-11-15','12:20:00','12:30:00','Fv','9635488147','2','C','2025-11-14 20:24:32'),(0,0,2583,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9635488147','2','T','2025-11-14 23:55:13'),(0,0,2584,0,'Y','2025-11-15','12:30:00','12:40:00','Nv','9537441656','2','C','2025-11-14 20:25:03'),(0,0,2584,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9537441656','2','T','2025-11-15 01:21:10'),(0,0,2584,0,'Y','2025-11-26','10:40:00','10:50:00','Fv','9537441656','2','C','2025-11-25 20:29:33'),(0,0,2584,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9537441656','2','T','2025-11-25 22:36:46'),(0,0,2585,0,'Y','2025-11-15','11:30:00','11:40:00','Nv','9824050501','2','C','2025-11-14 21:40:55'),(0,0,2585,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9824050501','2','T','2025-11-15 01:04:24'),(0,0,2586,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6353821009','6','T','2025-11-14 23:33:04'),(0,0,2588,0,'Y','2025-11-15','11:50:00','12:00:00','Fc','','4','C','2025-11-14 22:47:02'),(0,0,2588,0,'Y','2026-02-13','08:00:00','08:30:00','Followup','9173156906','4','T','2025-11-14 23:27:53'),(0,0,2588,0,'Y','2026-03-17','08:00:00','08:30:00','Followup','9173156906','4','T','2025-12-16 23:27:13'),(0,0,2589,0,'Y','2025-11-15','12:00:00','12:10:00','Nv','9274575245','2','C','2025-11-14 20:23:19'),(0,0,2589,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9274575245','2','T','2025-11-15 01:06:25'),(0,0,2589,0,'Y','2025-12-15','12:20:00','12:30:00','Fv','9274575245','2','C','2025-12-14 20:15:42'),(0,0,2589,0,'Y','2026-01-24','08:00:00','08:30:00','Followup','9274575245','2','T','2025-12-15 00:00:27'),(0,0,2591,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9624001773','2','T','2025-11-15 01:25:40'),(0,0,2591,0,'Y','2025-12-01','12:20:00','12:30:00','Fv','9624001773','2','C','2025-11-30 20:22:50'),(0,0,2591,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9624001773','2','T','2025-12-01 02:05:43'),(0,0,2592,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','7567057980','2','T','2025-12-05 06:02:20'),(0,0,2592,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','7567057980','2','T','2025-11-15 00:33:29'),(0,0,2593,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9408725949','2','T','2025-11-25 06:32:45'),(0,0,2593,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9408725949','2','T','2025-11-15 00:56:03'),(0,0,2594,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','9998988150','2','T','2025-11-15 01:03:33'),(0,0,2595,0,'Y','2025-11-20','08:00:00','08:30:00','Followup','9427773494','2','T','2025-11-15 01:11:51'),(0,0,2595,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9427773494','2','T','2025-12-15 07:58:31'),(0,0,2595,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9427773494','2','T','2025-12-18 07:29:11'),(0,0,2596,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9197242702','3','T','2025-11-24 23:01:43'),(0,0,2597,0,'Y','2025-11-26','18:20:00','18:30:00','Fv','9726956660','2','C','2025-11-26 01:45:05'),(0,0,2597,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9726956660','2','T','2025-11-26 06:17:58'),(0,0,2597,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9726956660','2','T','2025-12-06 00:55:04'),(0,0,2599,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849892389','3','T','2025-12-08 07:29:07'),(0,0,2601,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979872884','3','T','2025-12-18 06:15:02'),(0,0,2603,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8140002479','6','T','2025-11-15 06:38:41'),(0,0,2607,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9033428572','4','T','2025-11-25 00:27:35'),(0,0,2613,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8469981265','4','T','2025-11-19 01:35:14'),(0,0,2616,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824200350','2','T','2025-11-16 23:24:07'),(0,0,2617,0,'Y','2025-11-17','10:20:00','10:30:00','Fv','9904720350','2','C','2025-11-16 20:14:47'),(0,0,2617,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','9904720350','2','T','2025-11-16 22:39:13'),(0,0,2618,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9624192767','2','T','2025-11-16 23:22:33'),(0,0,2618,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9624192767','2','T','2025-12-19 04:54:53'),(0,0,2619,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','8140439159','2','T','2025-11-17 00:14:26'),(0,0,2619,0,'Y','2025-11-28','10:50:00','11:00:00','Fv','8140439159','2','C','2025-11-27 20:11:22'),(0,0,2619,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','8140439159','2','T','2025-11-27 23:19:12'),(0,0,2620,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662146944','6','T','2025-11-16 22:51:51'),(0,0,2621,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428344907','6','T','2025-11-16 22:59:48'),(0,0,2622,0,'Y','2026-02-25','08:00:00','08:30:00','Followup','9870091230','2','T','2025-11-16 23:53:22'),(0,0,2623,0,'Y','2025-11-17','11:30:00','11:40:00','NV','9879049526','2','C','2025-11-16 20:47:53'),(0,0,2623,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9879049526','2','T','2025-11-17 01:07:23'),(0,0,2623,0,'Y','2025-11-27','10:10:00','10:20:00','Fv','9879049526','2','C','2025-11-26 20:24:41'),(0,0,2623,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9879049526','2','T','2025-11-26 22:19:17'),(0,0,2624,0,'Y','2025-11-17','11:00:00','11:10:00','Nv','9277250276','2','C','2025-11-16 20:17:20'),(0,0,2624,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9277250276','2','T','2025-11-17 01:26:59'),(0,0,2624,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9277250276','2','T','2025-12-19 00:34:03'),(0,0,2625,0,'Y','2026-01-31','08:00:00','08:30:00','Followup','8153991525','2','T','2025-11-17 00:33:27'),(0,0,2626,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','6352782407','2','T','2025-11-17 01:43:33'),(0,0,2626,0,'Y','2025-11-27','11:40:00','11:50:00','Fv','6352782407','2','C','2025-11-26 20:29:36'),(0,0,2626,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','6352782407','2','T','2025-11-26 23:24:44'),(0,0,2627,0,'Y','2025-11-17','12:00:00','12:10:00','Nv','9099969237','2','C','2025-11-16 20:54:13'),(0,0,2627,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9099969237','2','T','2025-11-17 01:19:13'),(0,0,2627,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9099969237','2','T','2025-12-01 07:37:53'),(0,0,2628,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7735588625','6','T','2025-11-16 23:37:25'),(0,0,2630,0,'Y','2025-11-17','12:20:00','12:30:00','Fv','9662100068','2','C','2025-11-16 20:20:20'),(0,0,2630,0,'Y','2026-02-25','08:00:00','08:30:00','Followup','9662100068','2','T','2025-11-17 00:35:24'),(0,0,2631,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9825599940','2','T','2025-11-17 01:14:55'),(0,0,2632,0,'Y','2025-11-17','12:40:00','12:50:00','Fv','8160645450','2','C','2025-11-16 20:22:18'),(0,0,2632,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','8160645450','2','T','2025-11-17 00:48:33'),(0,0,2634,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','9099802128','2','T','2025-11-17 01:26:20'),(0,0,2635,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924959475','7','T','2025-11-20 06:42:44'),(0,0,2636,0,'Y','2025-11-17','17:00:00','17:10:00','NV','9033877777','2','C','2025-11-17 04:18:30'),(0,0,2636,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9033877777','2','T','2025-11-17 06:43:18'),(0,0,2636,0,'Y','2025-12-08','16:40:00','16:50:00','','9033877777','2','C','2025-12-08 02:48:47'),(0,0,2636,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','9033877777','2','T','2025-12-08 04:35:18'),(0,0,2638,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898726100','2','T','2025-11-17 05:20:22'),(0,0,2638,0,'Y','2025-12-18','16:40:00','16:50:00','','9898726100','2','B','2025-12-18 01:43:52'),(0,0,2638,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9898726100','2','T','2025-11-19 06:04:40'),(0,0,2638,0,'Y','2025-12-19','12:40:00','12:50:00','Fv','9898726100','2','C','2025-12-18 20:34:39'),(0,0,2638,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9898726100','2','T','2025-12-19 01:43:59'),(0,0,2639,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9662523723','2','T','2025-11-17 06:46:06'),(0,0,2640,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9904958181','2','T','2025-11-17 07:13:59'),(0,0,2640,0,'Y','2025-12-16','10:50:00','11:00:00','Fv','9904958181','2','C','2025-12-15 20:07:37'),(0,0,2640,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','9904958181','2','T','2025-12-15 22:51:44'),(0,0,2641,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9426430088','2','T','2025-11-17 07:21:52'),(0,0,2641,0,'Y','2025-12-17','18:40:00','18:50:00','','9426430088','2','C','2025-12-17 01:48:00'),(0,0,2641,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9426430088','2','T','2025-12-17 06:24:26'),(0,0,2643,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979102694','6','T','2025-11-17 05:16:53'),(0,0,2644,0,'Y','2025-11-17','17:40:00','17:50:00','Fv','7567287573','2','C','2025-11-17 05:06:07'),(0,0,2644,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','7567287573','2','T','2025-11-17 05:33:03'),(0,0,2645,0,'Y','2025-11-17','17:30:00','17:40:00','NV','9879942899','2','C','2025-11-17 03:13:02'),(0,0,2645,0,'Y','2025-12-02','08:00:00','08:30:00','Followup','9879942899','2','T','2025-11-17 07:27:03'),(0,0,2645,0,'Y','2025-12-02','17:20:00','17:30:00','FV','9879942899','2','C','2025-12-02 03:49:05'),(0,0,2645,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9879942899','2','T','2025-12-02 06:27:24'),(0,0,2646,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429097129','6','T','2025-11-17 05:44:36'),(0,0,2647,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9371733072','2','T','2025-11-17 06:24:42'),(0,0,2647,0,'Y','2025-11-17','18:00:00','18:10:00','NV','9371733072','2','C','2025-11-17 03:15:15'),(0,0,2647,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9371733072','2','T','2025-11-17 07:42:16'),(0,0,2648,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8980073838','2','T','2025-11-17 07:06:02'),(0,0,2649,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','8866166873','2','T','2025-11-17 07:26:46'),(0,0,2649,0,'Y','2025-12-18','18:20:00','18:30:00','','8866166873','2','C','2025-12-18 01:53:08'),(0,0,2649,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','8866166873','2','T','2025-12-18 05:28:10'),(0,0,2651,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879108107','4','T','2025-11-19 23:35:31'),(0,0,2651,0,'Y','2025-11-22','11:10:00','11:20:00','','9879108107','4','C','2025-11-21 20:51:45'),(0,0,2651,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','9879108107','4','T','2025-11-21 23:18:23'),(0,0,2653,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924324102','4','T','2025-11-21 05:54:59'),(0,0,2653,0,'Y','2025-12-04','12:30:00','12:40:00','','9924324102','4','C','2025-12-03 23:34:14'),(0,0,2653,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9924324102','4','T','2025-12-04 00:07:01'),(0,0,2655,0,'Y','2025-11-18','10:40:00','10:50:00','Fv','9429512742','2','C','2025-11-17 20:19:24'),(0,0,2655,0,'Y','2026-03-18','08:00:00','08:30:00','Followup','9429512742','2','T','2025-11-17 22:18:28'),(0,0,2656,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9726616547','2','T','2025-11-17 22:21:13'),(0,0,2657,0,'Y','2025-11-18','10:30:00','10:40:00','NV','8866363880','2','C','2025-11-17 21:50:08'),(0,0,2657,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','8866363880','2','T','2025-11-18 00:40:56'),(0,0,2658,0,'Y','2025-11-18','10:10:00','10:20:00','Fv','9428497617','2','C','2025-11-17 20:18:29'),(0,0,2658,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','9428497617','2','T','2025-11-17 22:36:41'),(0,0,2660,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9724270204','3','T','2025-12-01 00:14:18'),(0,0,2661,0,'Y','2025-11-18','10:50:00','11:00:00','Fv','9924189409','2','C','2025-11-17 20:19:50'),(0,0,2661,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9924189409','2','T','2025-11-17 23:33:33'),(0,0,2662,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9586650303','2','T','2025-11-17 23:54:24'),(0,0,2662,0,'Y','2025-12-23','17:40:00','17:50:00','Fv','9586650303','2','R','2025-12-23 03:38:06'),(0,0,2664,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','8156077143','2','T','2025-11-17 23:43:36'),(0,0,2665,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160686261','6','T','2025-11-17 23:47:14'),(0,0,2666,0,'Y','2025-11-18','12:40:00','12:50:00','Fv','9428838764','2','C','2025-11-17 20:25:44'),(0,0,2666,0,'Y','2025-11-27','17:10:00','17:20:00','Fv','9428838764','2','C','2025-11-27 04:27:23'),(0,0,2666,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9428838764','2','T','2025-11-18 01:17:42'),(0,0,2666,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9428838764','2','T','2025-11-27 05:00:02'),(0,0,2666,0,'Y','2025-12-17','19:50:00','20:00:00','','9428838764','2','B','2025-12-17 01:47:34'),(0,0,2666,0,'Y','2025-12-18','18:50:00','19:00:00','','9428838764','2','C','2025-12-18 01:53:34'),(0,0,2666,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9428838764','2','T','2025-12-18 06:35:19'),(0,0,2667,0,'Y','2025-11-18','12:50:00','13:00:00','Fv','9909540776','2','C','2025-11-17 20:42:42'),(0,0,2667,0,'Y','2026-03-18','08:00:00','08:30:00','Followup','9909540776','2','T','2025-11-18 00:25:24'),(0,0,2668,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160686261','3','T','2025-12-09 00:19:13'),(0,0,2669,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9712342847','2','T','2025-11-18 01:22:20'),(0,0,2669,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9712342847','2','T','2025-12-08 07:52:04'),(0,0,2671,0,'Y','2025-11-18','12:10:00','12:20:00','Fv','9909046821','2','C','2025-11-17 20:23:56'),(0,0,2671,0,'Y','2026-02-26','08:00:00','08:30:00','Followup','9909046821','2','T','2025-11-18 00:47:29'),(0,0,2672,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','8780238759','2','T','2025-11-18 01:46:15'),(0,0,2672,0,'Y','2025-12-08','10:20:00','10:30:00','Fv','8780238759','2','C','2025-12-07 20:10:26'),(0,0,2672,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','8780238759','2','T','2025-12-07 23:55:37'),(0,0,2674,0,'Y','2025-11-18','12:30:00','12:40:00','NV','9974766640','2','C','2025-11-17 21:49:06'),(0,0,2674,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9974766640','2','T','2025-11-18 01:57:18'),(0,0,2675,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8347740777','4','T','2025-11-24 00:55:21'),(0,0,2676,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8347740777','4','T','2025-11-24 01:10:38'),(0,0,2676,0,'Y','2025-12-06','12:40:00','12:50:00','FC','8347740777','4','B','2025-12-05 21:56:24'),(0,0,2677,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7041602619','2','T','2025-11-18 01:44:50'),(0,0,2677,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','7041602619','2','T','2025-11-18 06:44:54'),(0,0,2679,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9426278518','2','T','2025-11-18 05:42:03'),(0,0,2680,0,'Y','2025-11-18','17:00:00','17:10:00','NV','','2','C','2025-11-18 02:09:06'),(0,0,2680,0,'Y','2025-11-27','16:40:00','16:50:00','Fv','9664981252','2','C','2025-11-27 03:36:03'),(0,0,2680,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9664981252','2','T','2025-11-18 05:57:27'),(0,0,2680,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9664981252','2','T','2025-11-27 04:43:43'),(0,0,2681,0,'Y','2025-11-18','17:10:00','17:20:00','FV','','2','C','2025-11-18 02:09:31'),(0,0,2681,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9904046201','2','T','2025-11-18 05:03:28'),(0,0,2682,0,'Y','2025-11-18','18:50:00','19:00:00','FV','','2','C','2025-11-18 02:12:39'),(0,0,2682,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','8140070274','2','T','2025-11-18 05:19:26'),(0,0,2684,0,'Y','2025-11-18','17:30:00','17:40:00','NV','','2','C','2025-11-18 02:10:12'),(0,0,2684,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','6352455906','2','T','2025-11-18 06:45:43'),(0,0,2688,0,'Y','2025-11-18','18:20:00','18:30:00','FV','','2','C','2025-11-18 02:11:58'),(0,0,2688,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','9879320027','2','T','2025-11-18 06:04:55'),(0,0,2689,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9687774161','2','T','2025-11-18 07:21:45'),(0,0,2689,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','9687774161','2','T','2025-12-18 05:09:00'),(0,0,2690,0,'Y','2025-11-18','18:40:00','18:50:00','FV','','2','C','2025-11-18 02:12:21'),(0,0,2690,0,'Y','2026-02-26','08:00:00','08:30:00','Followup','9825400545','2','T','2025-11-18 06:29:24'),(0,0,2691,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9979880997','4','T','2025-12-01 05:50:32'),(0,0,2692,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9328633449','6','T','2025-11-18 23:02:01'),(0,0,2693,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033390099','3','T','2025-12-04 04:41:36'),(0,0,2694,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','6351102016','2','T','2025-11-18 22:34:59'),(0,0,2695,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9227976082','2','T','2025-11-19 01:11:54'),(0,0,2695,0,'Y','2025-12-19','17:20:00','17:30:00','','9227976082','2','C','2025-12-19 02:06:43'),(0,0,2695,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9227976082','2','T','2025-12-19 05:08:05'),(0,0,2696,0,'Y','2025-11-19','10:30:00','10:40:00','Nv','9898691946','2','C','2025-11-18 20:18:16'),(0,0,2696,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9898691946','2','T','2025-11-19 00:53:34'),(0,0,2696,0,'Y','2025-12-09','10:40:00','10:50:00','Fv','9898691946','2','C','2025-12-08 20:12:41'),(0,0,2696,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9898691946','2','T','2025-12-08 22:36:41'),(0,0,2698,0,'Y','2025-11-19','10:10:00','10:20:00','Fv','8160148407','2','C','2025-11-18 20:16:34'),(0,0,2698,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','8160148407','2','T','2025-11-18 22:15:10'),(0,0,2699,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979741501','4','T','2025-11-28 23:30:03'),(0,0,2699,0,'Y','2025-11-29','11:10:00','11:20:00','','9979741501','4','C','2025-11-28 20:54:30'),(0,0,2701,0,'Y','2025-11-19','10:20:00','10:30:00','Fv','9426784499','2','C','2025-11-18 20:17:17'),(0,0,2701,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9426784499','2','T','2025-11-18 22:21:17'),(0,0,2702,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9328967148','2','T','2025-11-18 23:21:42'),(0,0,2703,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','8511606745','4','T','2025-11-19 01:11:09'),(0,0,2704,0,'Y','2025-11-19','12:50:00','13:00:00','Fv','','2','C','2025-11-18 20:24:30'),(0,0,2704,0,'Y','2026-02-27','08:00:00','08:30:00','Followup','9727725570','2','T','2025-11-18 23:26:24'),(0,0,2706,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8980805314','4','T','2025-12-10 07:41:41'),(0,0,2706,0,'Y','2025-11-28','12:40:00','12:50:00','','8980805314','4','C','2025-11-27 23:05:03'),(0,0,2706,0,'Y','2025-12-10','19:20:00','19:30:00','FC','8980805314','4','C','2025-12-10 04:35:08'),(0,0,2706,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','8980805314','4','T','2025-11-28 00:12:31'),(0,0,2706,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','8980805314','4','T','2025-11-19 01:42:05'),(0,0,2707,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','8141842195','2','T','2025-11-18 23:31:27'),(0,0,2708,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','8469361940','2','T','2025-11-18 23:56:10'),(0,0,2709,0,'Y','2025-11-19','11:30:00','11:40:00','Nv','9925342709','2','C','2025-11-18 20:19:59'),(0,0,2709,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9925342709','2','T','2025-11-19 01:54:09'),(0,0,2709,0,'Y','2026-01-20','08:00:00','08:30:00','Followup','9925342709','2','T','2025-12-10 23:30:41'),(0,0,2710,0,'Y','2025-11-19','11:20:00','11:30:00','Nc','7069679927','4','C','2025-11-18 21:02:17'),(0,0,2710,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','7069679927','4','T','2025-11-19 00:58:20'),(0,0,2711,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9998320237','4','T','2025-11-18 23:21:35'),(0,0,2712,0,'Y','2025-11-19','11:00:00','11:10:00','Nv','7984845940','2','C','2025-11-18 20:19:03'),(0,0,2712,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','7984845940','2','T','2025-11-19 00:14:53'),(0,0,2713,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9601784397','3','T','2025-12-01 00:06:15'),(0,0,2715,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427377929','6','T','2025-11-18 23:23:50'),(0,0,2716,0,'Y','2025-11-19','11:40:00','11:50:00','','9427170001','4','C','2025-11-18 21:03:04'),(0,0,2716,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9427170001','4','T','2025-11-19 00:18:45'),(0,0,2717,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','6355776658','4','T','2025-11-19 00:42:38'),(0,0,2718,0,'Y','2025-11-19','11:50:00','12:00:00','Fc','9824247591','4','C','2025-11-18 21:03:48'),(0,0,2718,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9824247591','4','T','2025-11-19 00:27:49'),(0,0,2719,0,'Y','2025-11-19','11:50:00','12:00:00','Fv','9998740802','2','C','2025-11-18 20:20:45'),(0,0,2719,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9998740802','2','T','2025-11-18 23:48:14'),(0,0,2720,0,'Y','2025-11-19','12:30:00','12:40:00','Nv','9913922799','2','C','2025-11-18 20:23:19'),(0,0,2720,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9913922799','2','T','2025-11-19 01:38:19'),(0,0,2720,0,'Y','2025-12-19','11:20:00','11:30:00','Fv','9913922799','2','C','2025-12-18 20:32:11'),(0,0,2720,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9913922799','2','T','2025-12-18 22:48:09'),(0,0,2721,0,'Y','2025-11-19','12:10:00','12:20:00','Fv','9428671235','2','C','2025-11-18 20:21:10'),(0,0,2721,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9428671235','2','T','2025-11-19 00:03:40'),(0,0,2723,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725043278','6','T','2025-11-18 23:39:22'),(0,0,2724,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','8780537626','2','T','2025-11-19 00:21:04'),(0,0,2726,0,'Y','2025-12-19','18:20:00','18:30:00','','9979317145','2','C','2025-12-19 02:08:25'),(0,0,2726,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','9979317145','2','T','2025-12-19 06:11:10'),(0,0,2726,0,'Y','2026-02-27','08:00:00','08:30:00','Followup','9979317145','2','T','2025-11-19 00:29:23'),(0,0,2727,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9428254024','2','T','2025-11-19 01:45:22'),(0,0,2728,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9824295615','4','T','2025-11-19 01:17:21'),(0,0,2729,0,'Y','2025-11-19','12:30:00','12:40:00','Fc','9265525889','4','C','2025-11-18 21:04:30'),(0,0,2729,0,'Y','2025-12-20','12:00:00','12:10:00','Fc','9265525889','4','C','2025-12-19 21:47:36'),(0,0,2729,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9265525889','4','T','2025-12-09 05:59:52'),(0,0,2729,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9265525889','4','T','2025-12-20 00:35:04'),(0,0,2729,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9265525889','4','T','2025-11-19 01:08:18'),(0,0,2730,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9428201519','2','T','2025-11-19 01:23:53'),(0,0,2731,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','7819965541','4','T','2025-11-19 01:20:28'),(0,0,2732,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898122217','2','T','2025-11-19 04:37:50'),(0,0,2733,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924014030','2','T','2025-11-19 04:38:06'),(0,0,2734,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9737941824','2','T','2025-11-19 04:38:41'),(0,0,2735,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600008308','2','T','2025-11-19 04:40:50'),(0,0,2736,0,'Y','2025-11-19','17:10:00','17:20:00','Fv','7984373667','2','C','2025-11-19 03:11:10'),(0,0,2736,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','7984373667','2','T','2025-11-19 04:44:41'),(0,0,2737,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9033359808','2','T','2025-11-19 05:00:56'),(0,0,2738,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9033194941','2','T','2025-11-19 05:04:18'),(0,0,2738,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9033194941','2','T','2025-11-24 00:17:16'),(0,0,2739,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','8238474338','2','T','2025-11-19 05:23:55'),(0,0,2739,0,'Y','2026-01-20','08:00:00','08:30:00','Followup','8238474338','2','T','2025-12-11 05:29:59'),(0,0,2740,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9574657150','4','T','2025-11-24 06:42:08'),(0,0,2740,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9574657150','4','T','2025-11-19 05:51:38'),(0,0,2742,0,'Y','2025-12-12','19:00:00','19:10:00','','9724700969','4','C','2025-12-12 04:11:22'),(0,0,2742,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9724700969','4','T','2025-11-19 06:08:40'),(0,0,2742,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','7096731174','4','T','2025-12-12 07:07:45'),(0,0,2744,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9824670561','4','T','2025-11-19 06:15:48'),(0,0,2745,0,'Y','2025-11-19','18:30:00','18:40:00','FC','9825798500','4','C','2025-11-19 04:42:05'),(0,0,2745,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9825798500','4','T','2025-11-19 06:20:59'),(0,0,2746,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9728871085','3','T','2025-11-25 22:59:11'),(0,0,2747,0,'Y','2025-11-19','17:40:00','17:50:00','Fv','9909840412','2','C','2025-11-19 03:13:19'),(0,0,2747,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9909840452','2','T','2025-11-19 06:21:05'),(0,0,2747,0,'Y','2025-12-04','16:40:00','16:50:00','Fv','9909840452','2','C','2025-12-04 02:19:54'),(0,0,2747,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','9909840452','2','T','2025-12-04 04:39:14'),(0,0,2748,0,'Y','2025-11-19','18:10:00','18:20:00','FC','9913282718','4','C','2025-11-19 04:40:45'),(0,0,2748,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9913282718','4','T','2025-11-19 06:04:48'),(0,0,2749,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825536099','4','T','2025-12-20 00:15:26'),(0,0,2749,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9825536099','4','T','2025-11-19 06:34:29'),(0,0,2749,0,'Y','2025-12-20','11:30:00','11:40:00','','9825536099','4','C','2025-12-19 21:11:46'),(0,0,2750,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925382672','3','T','2025-11-26 06:24:25'),(0,0,2751,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8003050733','6','T','2025-11-19 05:40:31'),(0,0,2753,0,'Y','2025-11-19','18:20:00','18:30:00','FC','9879221369','4','C','2025-11-19 04:41:31'),(0,0,2753,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9879221369','4','T','2025-11-19 06:12:36'),(0,0,2753,0,'Y','2025-12-19','18:20:00','18:30:00','FC','9879221369','4','C','2025-12-19 04:45:55'),(0,0,2753,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9879221369','4','T','2025-12-19 06:21:03'),(0,0,2754,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998059106','4','T','2025-11-25 06:20:22'),(0,0,2754,0,'Y','2025-11-25','18:40:00','18:50:00','','9998059106','4','C','2025-11-25 04:46:05'),(0,0,2754,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9998059106','4','T','2025-11-19 07:00:09'),(0,0,2754,0,'Y','2025-12-03','18:10:00','18:20:00','FC','9998059106','4','C','2025-12-03 04:45:31'),(0,0,2754,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9998059106','4','T','2025-12-03 06:16:14'),(0,0,2754,0,'Y','2025-12-15','18:40:00','18:50:00','','9998059106','4','C','2025-12-15 04:00:17'),(0,0,2755,0,'Y','2026-02-27','08:00:00','08:30:00','Followup','9913993045','2','T','2025-11-19 06:29:41'),(0,0,2756,0,'Y','2025-11-19','18:40:00','18:50:00','','9925372953','4','C','2025-11-19 04:43:14'),(0,0,2756,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9925372953','4','T','2025-11-19 06:38:05'),(0,0,2757,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726418606','4','T','2025-11-25 06:06:28'),(0,0,2757,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9726418606','4','T','2025-11-19 07:03:52'),(0,0,2758,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426999194','3','T','2025-12-02 23:43:54'),(0,0,2759,0,'Y','2025-11-19','18:00:00','18:10:00','FC','9016058874','4','C','2025-11-19 04:40:12'),(0,0,2759,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9016058874','4','T','2025-11-19 06:44:57'),(0,0,2760,0,'Y','2025-11-19','19:10:00','19:20:00','FC','9925404517','4','C','2025-11-19 04:45:20'),(0,0,2760,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9925404517','4','T','2025-11-19 06:48:17'),(0,0,2761,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428201090','4','T','2025-12-04 06:31:57'),(0,0,2761,0,'Y','2025-12-04','19:00:00','19:10:00','','9428201090','4','C','2025-12-04 06:06:58'),(0,0,2761,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9428201090','4','T','2025-11-19 06:55:12'),(0,0,2762,0,'Y','2025-11-24','08:00:00','08:30:00','Followup','9825963349','2','T','2025-11-19 07:08:31'),(0,0,2762,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9825963349','2','T','2025-11-24 00:13:48'),(0,0,2763,0,'Y','2025-11-19','19:30:00','19:40:00','','','4','C','2025-11-19 04:46:24'),(0,0,2763,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9825935646','4','T','2025-11-19 07:11:18'),(0,0,2765,0,'Y','2025-11-19','18:50:00','19:00:00','FC','9426553372','4','C','2025-11-19 04:43:49'),(0,0,2765,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9426553372','4','T','2025-11-19 07:13:04'),(0,0,2766,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9426553372','4','T','2025-11-19 07:16:11'),(0,0,2767,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8140745807','4','T','2025-11-19 07:36:34'),(0,0,2768,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9624271259','4','T','2025-11-19 07:28:10'),(0,0,2769,0,'Y','2025-11-19','19:20:00','19:30:00','NC','7990301027','4','C','2025-11-19 04:45:59'),(0,0,2769,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','7990301027','4','T','2025-11-19 07:19:26'),(0,0,2771,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9724700969','4','T','2025-11-19 07:40:04'),(0,0,2774,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','9510434683','4','T','2025-11-21 06:41:45'),(0,0,2775,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9714033953','4','T','2025-11-20 00:27:34'),(0,0,2777,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9104942916','4','T','2025-11-24 05:58:20'),(0,0,2777,0,'Y','2026-02-18','08:00:00','08:30:00','Followup','9104942916','4','T','2025-11-19 23:46:23'),(0,0,2778,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9825085597','2','T','2025-11-20 00:39:42'),(0,0,2778,0,'Y','2025-12-01','10:40:00','10:50:00','Fv','9825085597','2','C','2025-11-30 20:18:58'),(0,0,2778,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9825085597','2','T','2025-11-30 22:28:26'),(0,0,2779,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','8780576565','4','T','2025-11-29 00:02:36'),(0,0,2780,0,'Y','2025-12-04','18:00:00','18:10:00','FC','7433809327','4','C','2025-12-04 04:54:51'),(0,0,2780,0,'Y','2026-01-03','08:00:00','08:30:00','Followup','7433809327','4','T','2025-12-04 06:08:06'),(0,0,2781,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8128188021','6','T','2025-11-19 23:02:15'),(0,0,2782,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160021405','3','T','2025-12-02 06:19:11'),(0,0,2783,0,'Y','2025-11-20','11:00:00','11:10:00','Nv','9879318617','2','C','2025-11-19 20:22:31'),(0,0,2783,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9879318617','2','T','2025-11-20 01:10:37'),(0,0,2783,0,'Y','2025-12-04','11:50:00','12:00:00','Fv','9879318617','2','C','2025-12-03 20:25:34'),(0,0,2783,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','9879318617','2','T','2025-12-03 23:21:28'),(0,0,2784,0,'Y','2025-11-20','10:30:00','10:40:00','Nv','9512409321','2','C','2025-11-19 20:29:29'),(0,0,2784,0,'Y','2025-11-25','16:50:00','17:00:00','','9512409321','2','B','2025-11-25 01:26:50'),(0,0,2784,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9512409321','2','T','2025-11-20 00:25:09'),(0,0,2784,0,'Y','2025-12-02','18:40:00','18:50:00','FV','9512409321','2','C','2025-12-02 03:52:08'),(0,0,2784,0,'Y','2026-01-13','08:00:00','08:30:00','Followup','9512409321','2','T','2025-12-02 06:40:10'),(0,0,2785,0,'Y','2025-11-20','10:40:00','10:50:00','Fv','9898536517','2','C','2025-11-19 20:21:13'),(0,0,2785,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9898536517','2','T','2025-11-20 01:25:34'),(0,0,2785,0,'Y','2025-12-01','11:40:00','11:50:00','Fv','9898536517','2','C','2025-11-30 20:20:44'),(0,0,2785,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9898536517','2','T','2025-11-30 23:09:55'),(0,0,2786,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9726510137','2','T','2025-11-20 01:41:32'),(0,0,2787,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8511149784','2','T','2025-11-20 00:18:19'),(0,0,2787,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','8511149784','2','T','2025-11-20 05:37:26'),(0,0,2787,0,'Y','2025-12-01','10:50:00','11:00:00','Fv','8511149784','2','C','2025-11-30 20:19:16'),(0,0,2789,0,'Y','2025-11-20','11:30:00','11:40:00','Nv','9638041052','2','C','2025-11-19 20:23:43'),(0,0,2789,0,'Y','2025-12-19','10:40:00','10:50:00','Fv','9638041052','2','C','2025-12-18 20:30:28'),(0,0,2789,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9638041052','2','T','2025-11-20 01:32:43'),(0,0,2789,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9638041052','2','T','2025-12-18 22:34:23'),(0,0,2792,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9714917174','4','T','2025-12-19 00:02:47'),(0,0,2792,0,'Y','2026-02-18','08:00:00','08:30:00','Followup','9714917174','4','T','2025-11-19 22:45:54'),(0,0,2793,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8469961852','7','T','2025-11-19 23:40:57'),(0,0,2794,0,'Y','2026-02-18','08:00:00','08:30:00','Followup','9879657401','4','T','2025-11-19 22:49:08'),(0,0,2795,0,'Y','2026-02-18','08:00:00','08:30:00','Followup','9979280622','4','T','2025-11-19 23:18:09'),(0,0,2796,0,'Y','2025-11-20','11:10:00','11:20:00','','','4','C','2025-11-19 21:23:34'),(0,0,2796,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','8803838038','4','T','2025-11-19 23:11:19'),(0,0,2798,0,'Y','2026-02-18','08:00:00','08:30:00','Followup','9428274811','4','T','2025-11-19 23:19:50'),(0,0,2798,0,'Y','2026-03-03','08:00:00','08:30:00','Followup','9428274811','4','T','2025-12-03 05:49:54'),(0,0,2799,0,'Y','2025-11-20','12:00:00','12:10:00','Nv','','2','C','2025-11-19 20:25:56'),(0,0,2799,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9825273590','2','T','2025-11-20 01:34:46'),(0,0,2800,0,'Y','2025-11-20','11:40:00','11:50:00','FC','9879190850','4','C','2025-11-19 21:25:47'),(0,0,2800,0,'Y','2026-02-18','08:00:00','08:30:00','Followup','9879190850','4','T','2025-11-19 23:39:52'),(0,0,2801,0,'Y','2025-11-20','11:50:00','12:00:00','Fv','7069581000','2','C','2025-11-19 20:25:17'),(0,0,2801,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','7069581000','2','T','2025-11-19 23:44:59'),(0,0,2802,0,'Y','2025-11-20','19:00:00','19:10:00','','9925728815','4','B','2025-11-20 04:26:56'),(0,0,2802,0,'Y','2025-12-17','19:10:00','19:20:00','','9925728815','4','C','2025-12-17 05:33:02'),(0,0,2802,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9925728815','4','T','2025-11-19 23:53:05'),(0,0,2802,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9925728815','4','T','2025-12-17 06:22:42'),(0,0,2803,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9879508668','4','T','2025-11-20 00:23:05'),(0,0,2804,0,'Y','2025-11-20','11:50:00','12:00:00','','7405448557','4','C','2025-11-19 21:26:32'),(0,0,2804,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','7405448557','4','T','2025-11-20 01:35:56'),(0,0,2805,0,'Y','2025-11-20','12:20:00','12:30:00','Ne','9978210778','2','C','2025-11-19 20:26:49'),(0,0,2805,0,'Y','2025-11-26','17:20:00','17:30:00','Fv','9978210778','2','C','2025-11-26 01:41:10'),(0,0,2805,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9978210778','2','T','2025-11-20 00:07:58'),(0,0,2805,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9978210778','2','T','2025-11-26 05:17:48'),(0,0,2806,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','8160354055','4','T','2025-11-20 00:35:43'),(0,0,2807,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9033062988','2','T','2025-11-20 02:03:11'),(0,0,2808,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426457800','3','T','2025-11-29 05:59:39'),(0,0,2809,0,'Y','2025-11-20','12:40:00','12:50:00','','9924353288','4','C','2025-11-19 22:32:02'),(0,0,2809,0,'Y','2026-02-18','08:00:00','08:30:00','Followup','9924353288','4','T','2025-11-20 00:59:10'),(0,0,2810,0,'Y','2025-11-20','12:30:00','12:40:00','Nv','9723819944','2','C','2025-11-19 20:27:39'),(0,0,2810,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9723819944','2','T','2025-11-20 01:58:49'),(0,0,2810,0,'Y','2025-12-10','12:40:00','12:50:00','Fv','9723819944','2','C','2025-12-09 20:18:45'),(0,0,2810,0,'Y','2026-01-24','08:00:00','08:30:00','Followup','9723819944','2','T','2025-12-10 01:12:10'),(0,0,2812,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7383671342','4','T','2025-11-21 06:29:33'),(0,0,2812,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','7383671342','4','T','2025-11-28 05:55:38'),(0,0,2813,0,'Y','2025-11-20','11:00:00','11:10:00','FC','9904759252','4','C','2025-11-19 21:23:09'),(0,0,2813,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9904759252','4','T','2025-11-20 01:49:33'),(0,0,2814,0,'Y','2025-11-20','17:30:00','17:40:00','NV','','2','C','2025-11-20 02:34:17'),(0,0,2814,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9427768961','2','T','2025-11-20 06:37:33'),(0,0,2814,0,'Y','2026-02-07','08:00:00','08:30:00','Followup','9427768961','2','T','2025-12-19 00:54:49'),(0,0,2815,0,'Y','2025-11-20','16:40:00','16:50:00','FV','','2','C','2025-11-20 02:33:00'),(0,0,2815,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9510913377','2','T','2025-11-20 04:53:22'),(0,0,2816,0,'Y','2025-11-20','17:00:00','17:10:00','NV','','2','C','2025-11-20 02:33:38'),(0,0,2816,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','7984134900','2','T','2025-11-20 06:21:25'),(0,0,2816,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','7984134900','2','T','2025-12-01 05:01:57'),(0,0,2817,0,'Y','2025-11-20','16:50:00','17:00:00','FV','','2','C','2025-11-20 02:33:18'),(0,0,2817,0,'Y','2025-11-25','08:00:00','08:30:00','Followup','8758585505','2','T','2025-11-20 04:57:25'),(0,0,2818,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7574862002','2','T','2025-12-01 04:37:03'),(0,0,2818,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','7574862002','2','T','2025-11-20 06:59:14'),(0,0,2818,0,'Y','2025-12-01','16:50:00','17:00:00','Fv','7574862002','2','C','2025-12-01 03:34:31'),(0,0,2819,0,'Y','2025-11-20','17:50:00','18:00:00','NV','','2','C','2025-11-20 02:34:36'),(0,0,2819,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','8000012234','2','T','2025-11-20 05:28:30'),(0,0,2820,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909992766','6','T','2025-11-20 06:06:27'),(0,0,2821,0,'Y','2026-02-18','08:00:00','08:30:00','Followup','9099923323','2','T','2025-11-20 06:10:59'),(0,0,2822,0,'Y','2025-11-20','18:00:00','18:10:00','NV','','2','C','2025-11-20 02:34:49'),(0,0,2822,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','7575804487','2','T','2025-11-20 07:09:45'),(0,0,2822,0,'Y','2025-12-01','16:40:00','16:50:00','Fv','7575804487','2','C','2025-12-01 03:34:15'),(0,0,2822,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','7575804487','2','T','2025-12-01 07:26:10'),(0,0,2823,0,'Y','2025-11-20','18:40:00','18:50:00','FV','','2','C','2025-11-20 02:35:27'),(0,0,2823,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9727539607','2','T','2025-11-20 06:30:23'),(0,0,2824,0,'Y','2025-11-20','18:10:00','18:20:00','','9779573336','4','C','2025-11-20 04:26:06'),(0,0,2824,0,'Y','2026-02-18','08:00:00','08:30:00','Followup','9779573336','4','T','2025-11-20 05:49:24'),(0,0,2825,0,'Y','2025-11-20','18:00:00','18:10:00','','','4','C','2025-11-20 04:22:06'),(0,0,2825,0,'Y','2025-12-15','19:00:00','19:10:00','','9824416307','4','C','2025-12-15 04:01:22'),(0,0,2825,0,'Y','2026-02-18','08:00:00','08:30:00','Followup','9824416307','4','T','2025-11-20 07:41:30'),(0,0,2825,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','9824416307','4','T','2025-12-15 06:51:33'),(0,0,2827,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7359252871','7','T','2025-11-20 06:42:16'),(0,0,2828,0,'Y','2025-11-20','18:30:00','18:40:00','','9737621620','4','C','2025-11-20 04:48:25'),(0,0,2828,0,'Y','2025-11-21','12:30:00','12:40:00','','9737621620','4','B','2025-11-20 23:38:05'),(0,0,2828,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9737621620','4','T','2025-11-20 06:11:57'),(0,0,2829,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','8511657623','2','T','2025-11-20 07:08:55'),(0,0,2830,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9824292234','4','T','2025-11-20 06:33:45'),(0,0,2831,0,'Y','2026-02-18','08:00:00','08:30:00','Followup','7778809977','4','T','2025-11-20 06:44:36'),(0,0,2832,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428261663','7','T','2025-11-20 06:43:13'),(0,0,2834,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9979564206','4','T','2025-12-08 00:42:01'),(0,0,2834,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9979564206','4','T','2025-12-22 00:09:54'),(0,0,2835,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9157598999','4','T','2025-11-21 06:35:45'),(0,0,2835,0,'Y','2025-11-21','12:10:00','12:20:00','','9157598999','4','B','2025-11-20 22:09:34'),(0,0,2835,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9157598999','4','T','2025-12-13 00:53:45'),(0,0,2836,0,'Y','2025-11-21','11:20:00','11:30:00','FC','9033245843','4','C','2025-11-20 21:12:21'),(0,0,2836,0,'Y','2026-02-19','08:00:00','08:30:00','Followup','9033245843','4','T','2025-11-20 23:30:42'),(0,0,2837,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8487884275','3','T','2025-11-27 23:22:39'),(0,0,2838,0,'Y','2025-11-21','11:50:00','12:00:00','Nc','9106851425','4','C','2025-11-20 21:33:32'),(0,0,2838,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9106851425','4','T','2025-11-28 23:40:48'),(0,0,2838,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9106851425','4','T','2025-11-20 23:54:55'),(0,0,2839,0,'Y','2025-11-21','11:10:00','11:20:00','','','4','C','2025-11-20 21:15:38'),(0,0,2839,0,'Y','2026-02-19','08:00:00','08:30:00','Followup','8200876955','4','T','2025-11-20 23:24:40'),(0,0,2840,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727130500','2','T','2025-11-20 22:34:52'),(0,0,2840,0,'Y','2025-11-21','10:20:00','10:30:00','FV','','2','C','2025-11-20 20:24:56'),(0,0,2840,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9727130500','2','T','2025-11-21 00:58:49'),(0,0,2841,0,'Y','2025-11-21','10:30:00','10:40:00','NV','9824217445','2','C','2025-11-20 20:49:24'),(0,0,2841,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9824217445','2','T','2025-11-21 00:10:09'),(0,0,2841,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9824217445','2','T','2025-12-01 07:03:04'),(0,0,2842,0,'Y','2025-11-21','10:40:00','10:50:00','FV','','2','C','2025-11-20 20:25:28'),(0,0,2842,0,'Y','2026-01-20','08:00:00','08:30:00','Followup','9429422703','2','T','2025-11-20 22:49:57'),(0,0,2844,0,'Y','2025-11-21','11:00:00','11:10:00','NV','','2','C','2025-11-20 20:26:11'),(0,0,2844,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','8141907113','2','T','2025-11-21 00:37:41'),(0,0,2844,0,'Y','2025-12-17','17:50:00','18:00:00','','8141907113','2','C','2025-12-17 01:45:34'),(0,0,2844,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','8141907113','2','T','2025-12-17 05:51:44'),(0,0,2845,0,'Y','2025-11-21','10:50:00','11:00:00','FV','','2','C','2025-11-20 20:25:49'),(0,0,2845,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9825066177','2','T','2025-11-21 00:54:14'),(0,0,2846,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825066177','2','T','2025-11-20 23:43:20'),(0,0,2848,0,'Y','2025-11-28','08:00:00','08:30:00','Followup','9624044404','4','T','2025-11-20 23:58:46'),(0,0,2849,0,'Y','2025-11-21','11:20:00','11:30:00','FV','9925011390','2','C','2025-11-20 20:28:26'),(0,0,2849,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9925076390','2','T','2025-11-20 23:21:32'),(0,0,2850,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924224176','6','T','2025-11-20 23:04:46'),(0,0,2851,0,'Y','2025-11-21','11:30:00','11:40:00','NV','9725629523','2','C','2025-11-20 20:28:57'),(0,0,2851,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9725629523','2','T','2025-11-21 01:13:59'),(0,0,2851,0,'Y','2025-12-11','10:50:00','11:00:00','Fv','9725629523','2','C','2025-12-10 20:14:19'),(0,0,2851,0,'Y','2026-01-20','08:00:00','08:30:00','Followup','9725629523','2','T','2025-12-10 22:55:55'),(0,0,2852,0,'Y','2025-11-21','11:00:00','11:10:00','FC','9824409257','4','C','2025-11-20 21:15:11'),(0,0,2852,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9824409257','4','T','2025-11-21 06:34:56'),(0,0,2853,0,'Y','2026-02-19','08:00:00','08:30:00','Followup','9824409257','4','T','2025-11-21 00:13:44'),(0,0,2854,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9054546000','2','T','2025-11-20 23:51:56'),(0,0,2854,0,'Y','2025-11-26','10:20:00','10:30:00','Fv','9054546000','2','C','2025-11-25 20:44:23'),(0,0,2854,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9054546000','2','T','2025-11-25 22:22:26'),(0,0,2855,0,'Y','2025-11-21','11:40:00','11:50:00','','9825536056','4','C','2025-11-20 21:17:10'),(0,0,2855,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','9825536056','4','T','2025-11-20 23:50:56'),(0,0,2856,0,'Y','2025-11-21','12:00:00','12:10:00','Fc','8401110072','4','C','2025-11-20 21:37:14'),(0,0,2856,0,'Y','2026-02-19','08:00:00','08:30:00','Followup','8401110072','4','T','2025-11-21 00:21:27'),(0,0,2857,0,'Y','2025-11-21','12:10:00','12:20:00','FV','9824415678','2','C','2025-11-20 20:31:33'),(0,0,2857,0,'Y','2026-02-19','08:00:00','08:30:00','Followup','9824415678','2','T','2025-11-20 23:59:11'),(0,0,2858,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9879700825','2','T','2025-11-21 00:08:35'),(0,0,2859,0,'Y','2025-11-21','12:40:00','12:50:00','Fv','9067545506','2','C','2025-11-20 21:04:13'),(0,0,2859,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9067545506','2','T','2025-11-21 00:31:51'),(0,0,2859,0,'Y','2025-12-16','10:40:00','10:50:00','Fv','9067545506','2','C','2025-12-15 20:07:19'),(0,0,2859,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','9067545506','2','T','2025-12-16 00:26:24'),(0,0,2861,0,'Y','2025-11-21','12:30:00','12:40:00','NV','','2','C','2025-11-20 21:40:57'),(0,0,2861,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9979799620','2','T','2025-11-21 01:28:32'),(0,0,2862,0,'Y','2025-11-21','12:50:00','13:00:00','Fv','9825217937','2','C','2025-11-20 21:19:08'),(0,0,2862,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9825217937','2','T','2025-11-21 00:53:27'),(0,0,2863,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9724963972','4','T','2025-12-17 07:31:28'),(0,0,2863,0,'Y','2026-02-19','08:00:00','08:30:00','Followup','9724963972','4','T','2025-11-21 01:07:11'),(0,0,2864,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7622048938','6','T','2025-11-21 05:59:32'),(0,0,2866,0,'Y','2025-12-08','11:50:00','12:00:00','','9428466271','4','C','2025-12-07 21:33:57'),(0,0,2866,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9428466271','4','T','2025-12-08 00:07:41'),(0,0,2867,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9664915754','2','T','2025-11-21 05:03:28'),(0,0,2868,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033196208','2','T','2025-11-21 05:04:58'),(0,0,2869,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9724240520','2','T','2025-11-21 05:14:20'),(0,0,2870,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7405385361','2','T','2025-11-21 05:12:23'),(0,0,2871,0,'Y','2025-11-21','16:50:00','17:00:00','FV','','2','C','2025-11-21 02:21:05'),(0,0,2871,0,'Y','2025-11-21','18:10:00','18:20:00','','9898693454','4','C','2025-11-21 04:21:08'),(0,0,2871,0,'Y','2026-03-21','08:00:00','08:30:00','Followup','9898693454','2','T','2025-11-21 04:50:19'),(0,0,2872,0,'Y','2025-11-21','17:00:00','17:10:00','FV','','2','C','2025-11-21 04:03:26'),(0,0,2872,0,'Y','2025-12-09','16:50:00','17:00:00','Fv','9879021628','2','C','2025-12-09 03:17:39'),(0,0,2872,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9879021628','2','T','2025-11-21 06:52:23'),(0,0,2872,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9879021628','2','T','2025-12-09 05:07:00'),(0,0,2873,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979008425','3','T','2025-12-01 05:52:18'),(0,0,2874,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913132520','4','T','2025-11-27 06:16:26'),(0,0,2874,0,'Y','2026-02-19','08:00:00','08:30:00','Followup','9913132520','4','T','2025-11-21 05:59:32'),(0,0,2875,0,'Y','2025-11-21','17:40:00','17:50:00','FV','','2','C','2025-11-21 02:06:05'),(0,0,2875,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9825958121','2','T','2025-11-21 05:20:17'),(0,0,2877,0,'Y','2025-11-21','18:00:00','18:10:00','','9725800054','4','C','2025-11-21 04:30:17'),(0,0,2877,0,'Y','2026-05-20','08:00:00','08:30:00','Followup','9725800054','4','T','2025-11-21 05:54:43'),(0,0,2878,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9879806223','2','T','2025-11-21 05:52:42'),(0,0,2879,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','7359698770','2','T','2025-11-21 07:11:42'),(0,0,2880,0,'Y','2025-11-21','18:20:00','18:30:00','FV','','2','C','2025-11-21 02:07:03'),(0,0,2880,0,'Y','2026-01-20','08:00:00','08:30:00','Followup','9276158375','2','T','2025-11-21 06:04:12'),(0,0,2881,0,'Y','2025-11-21','18:00:00','05:30:00','NV','','2','C','2025-11-21 02:06:29'),(0,0,2881,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9375501001','2','T','2025-11-21 07:11:27'),(0,0,2881,0,'Y','2025-12-11','18:40:00','18:50:00','Fv','9375501001','2','C','2025-12-11 03:12:42'),(0,0,2881,0,'Y','2026-01-20','08:00:00','08:30:00','Followup','9375501001','2','T','2025-12-11 06:15:11'),(0,0,2882,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7802931960','2','T','2025-11-21 06:33:17'),(0,0,2884,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6355060656','4','T','2025-11-21 23:22:47'),(0,0,2884,0,'Y','2025-11-21','19:00:00','19:10:00','','6355060656','4','R','2025-11-21 04:47:51'),(0,0,2885,0,'Y','2025-11-21','18:50:00','19:00:00','','9925219977','4','C','2025-11-21 04:47:28'),(0,0,2885,0,'Y','2026-02-19','08:00:00','08:30:00','Followup','9925219977','4','T','2025-11-21 07:05:35'),(0,0,2886,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849645151','6','T','2025-11-21 06:37:06'),(0,0,2887,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7433903253','4','T','2025-11-21 23:09:43'),(0,0,2889,0,'Y','2025-11-26','08:00:00','08:30:00','Followup','7046844274','2','T','2025-11-21 07:20:17'),(0,0,2892,0,'Y','2025-11-22','10:50:00','11:00:00','FV','','2','C','2025-11-21 20:47:55'),(0,0,2892,0,'Y','2026-02-05','08:00:00','08:30:00','Followup','9904623248','2','T','2025-11-21 22:14:36'),(0,0,2893,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7698773123','4','T','2025-11-28 23:53:55'),(0,0,2893,0,'Y','2025-11-29','11:20:00','11:30:00','','7698773123','4','C','2025-11-28 20:54:57'),(0,0,2893,0,'Y','2025-12-11','11:30:00','11:40:00','FC','7698773123','4','C','2025-12-10 21:48:55'),(0,0,2893,0,'Y','2026-03-11','08:00:00','08:30:00','Followup','7698773123','4','T','2025-12-10 23:28:31'),(0,0,2894,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924955949','3','T','2025-11-24 22:43:07'),(0,0,2895,0,'Y','2025-11-24','19:30:00','19:40:00','','9106464269','4','B','2025-11-24 05:28:53'),(0,0,2895,0,'Y','2025-11-25','18:00:00','18:10:00','','9106464269','4','B','2025-11-25 04:44:19'),(0,0,2895,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9106464269','4','T','2025-11-21 22:50:00'),(0,0,2896,0,'Y','2025-11-22','10:40:00','10:50:00','FV','','2','C','2025-11-21 20:47:36'),(0,0,2896,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9033771276','2','T','2025-11-21 22:22:09'),(0,0,2898,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8000046463','4','T','2025-12-22 06:11:00'),(0,0,2898,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','8000046463','4','T','2025-11-22 00:21:41'),(0,0,2900,0,'Y','2025-11-22','11:10:00','11:20:00','FV','','2','C','2025-11-21 20:48:37'),(0,0,2900,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9726603168','2','T','2025-11-21 22:31:32'),(0,0,2901,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824227006','6','T','2025-11-21 23:39:46'),(0,0,2902,0,'Y','2025-11-22','11:00:00','11:10:00','NV','','2','C','2025-11-21 20:48:13'),(0,0,2902,0,'Y','2025-12-02','08:00:00','08:30:00','Followup','8780805757','2','T','2025-11-22 00:36:05'),(0,0,2902,0,'Y','2025-12-04','16:50:00','17:00:00','Fv','8780805757','2','C','2025-12-04 02:20:05'),(0,0,2902,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','8780805757','2','T','2025-12-04 04:44:49'),(0,0,2902,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','8780805757','2','T','2025-12-19 00:58:25'),(0,0,2903,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','6351306762','4','T','2025-11-22 01:08:55'),(0,0,2904,0,'Y','2025-11-22','11:40:00','11:50:00','FV','','2','C','2025-11-21 20:49:50'),(0,0,2904,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9724787410','2','T','2025-11-21 22:47:31'),(0,0,2905,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9225502087','4','T','2025-11-21 23:09:24'),(0,0,2905,0,'Y','2025-11-25','19:10:00','19:20:00','','9225502087','4','B','2025-11-25 04:47:10'),(0,0,2906,0,'Y','2025-11-22','11:20:00','11:30:00','FV','','2','C','2025-11-21 20:49:13'),(0,0,2906,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9727207356','2','T','2025-11-21 23:56:10'),(0,0,2907,0,'Y','2025-11-22','12:10:00','12:20:00','FV','','2','C','2025-11-21 20:50:40'),(0,0,2907,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','8690075700','2','T','2025-11-21 23:08:21'),(0,0,2909,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9727711833','4','T','2025-11-22 00:05:41'),(0,0,2910,0,'Y','2025-11-22','11:20:00','11:30:00','','','4','C','2025-11-21 20:52:25'),(0,0,2910,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','9998041647','4','T','2025-11-21 23:26:42'),(0,0,2911,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904843439','6','T','2025-11-21 23:39:35'),(0,0,2912,0,'Y','2025-11-22','12:10:00','12:20:00','','9426234195','4','C','2025-11-21 23:05:52'),(0,0,2912,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','9426234195','4','T','2025-11-22 00:47:50'),(0,0,2914,0,'Y','2025-12-02','08:00:00','08:30:00','Followup','9925000365','2','T','2025-11-21 23:33:17'),(0,0,2914,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9925000365','2','T','2025-12-01 23:44:48'),(0,0,2915,0,'Y','2025-11-22','12:00:00','12:10:00','NV','8000385425','2','C','2025-11-21 22:54:39'),(0,0,2915,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','8000385425','2','T','2025-11-22 00:38:57'),(0,0,2915,0,'Y','2025-12-12','11:20:00','11:30:00','Fv','8000385425','2','C','2025-12-11 20:13:42'),(0,0,2915,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','8000385425','2','T','2025-12-11 23:47:05'),(0,0,2916,0,'Y','2025-11-22','12:30:00','12:40:00','NV','9426449904','2','C','2025-11-21 23:23:53'),(0,0,2916,0,'Y','2025-12-02','08:00:00','08:30:00','Followup','9426449904','2','T','2025-11-22 00:45:05'),(0,0,2916,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9426449904','2','T','2025-11-30 23:33:49'),(0,0,2917,0,'Y','2025-11-22','11:30:00','11:40:00','','9824612160','4','C','2025-11-21 20:55:48'),(0,0,2917,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','9824612160','4','T','2025-11-22 00:25:52'),(0,0,2918,0,'Y','2025-11-22','11:50:00','12:00:00','FV','','2','C','2025-11-21 20:50:22'),(0,0,2918,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9825548480','2','T','2025-11-21 23:59:45'),(0,0,2919,0,'Y','2025-11-27','08:00:00','08:30:00','Followup','8153957555','2','T','2025-11-22 00:02:58'),(0,0,2919,0,'Y','2025-11-27','12:00:00','12:10:00','','8153957555','4','C','2025-11-26 22:40:26'),(0,0,2919,0,'Y','2025-11-29','10:50:00','11:00:00','Fv','8153957555','2','C','2025-11-28 20:18:46'),(0,0,2919,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','8153957555','2','T','2025-11-28 23:51:52'),(0,0,2919,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','8153957555','4','T','2025-11-27 00:30:13'),(0,0,2920,0,'Y','2025-12-02','08:00:00','08:30:00','Followup','9924350091','2','T','2025-11-22 00:10:38'),(0,0,2920,0,'Y','2025-12-02','12:20:00','12:30:00','FV','9924350091','2','C','2025-12-01 20:26:54'),(0,0,2920,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9924350091','2','T','2025-12-02 00:42:16'),(0,0,2921,0,'Y','2025-11-22','10:10:00','10:20:00','FV','','2','C','2025-11-21 20:47:17'),(0,0,2921,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','9824984165','2','T','2025-11-22 00:13:15'),(0,0,2922,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662600700','3','T','2025-12-14 22:50:12'),(0,0,2924,0,'Y','2025-11-22','11:50:00','12:00:00','','9925062792','4','C','2025-11-21 21:04:19'),(0,0,2924,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','9925062792','4','T','2025-11-22 00:36:39'),(0,0,2925,0,'Y','2025-11-22','12:50:00','13:00:00','FV','','2','R','2025-11-21 20:51:28'),(0,0,2925,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9898015880','2','T','2025-12-16 23:23:14'),(0,0,2926,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9725317008','4','T','2025-11-22 01:05:09'),(0,0,2928,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9712420333','2','T','2025-11-22 01:15:05'),(0,0,2928,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9712420333','2','T','2025-12-06 01:57:43'),(0,0,2930,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879219199','6','T','2025-11-22 06:59:16'),(0,0,2933,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712870202','5','T','2025-11-27 06:36:03'),(0,0,2939,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9723267797','4','T','2025-11-29 00:11:54'),(0,0,2941,0,'Y','2025-11-24','11:00:00','11:10:00','Nc','9099327874','4','C','2025-11-23 20:42:00'),(0,0,2941,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9099327874','4','T','2025-11-23 23:34:16'),(0,0,2942,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978819934','4','T','2025-11-24 06:04:44'),(0,0,2944,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','7283936211','4','T','2025-11-23 23:24:39'),(0,0,2945,0,'Y','2025-11-24','11:40:00','11:50:00','','','4','C','2025-11-23 20:59:50'),(0,0,2945,0,'Y','2026-02-23','08:00:00','08:30:00','Followup','8980202076','4','T','2025-11-23 23:21:48'),(0,0,2947,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7433903253','4','T','2025-11-24 00:26:08'),(0,0,2949,0,'Y','2025-11-24','10:20:00','10:30:00','Fv','9726317509','2','C','2025-11-23 20:23:54'),(0,0,2949,0,'Y','2026-01-23','08:00:00','08:30:00','Followup','9726317509','2','T','2025-11-23 22:17:27'),(0,0,2950,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600982744','6','T','2025-11-24 05:54:24'),(0,0,2950,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','7600982744','4','T','2025-11-24 01:10:17'),(0,0,2950,0,'Y','2025-12-09','11:30:00','11:40:00','','7600982744','4','B','2025-12-08 21:43:15'),(0,0,2951,0,'Y','2025-11-24','10:30:00','10:40:00','Nv','9924810940','2','C','2025-11-23 20:24:15'),(0,0,2951,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9924810940','2','T','2025-11-23 23:58:05'),(0,0,2952,0,'Y','2025-11-24','11:30:00','11:40:00','Nv','9909169699','2','C','2025-11-23 20:25:52'),(0,0,2952,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9909169699','2','T','2025-11-24 01:24:27'),(0,0,2952,0,'Y','2025-12-04','18:40:00','18:50:00','Fv','9909169699','2','C','2025-12-04 02:23:17'),(0,0,2952,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9909169699','2','T','2025-12-04 06:44:08'),(0,0,2953,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','8460526037','2','T','2025-11-24 01:44:48'),(0,0,2953,0,'Y','2025-12-15','16:40:00','16:50:00','','8460526037','2','C','2025-12-15 01:58:28'),(0,0,2953,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','8460526037','2','T','2025-12-15 05:04:10'),(0,0,2954,0,'Y','2025-11-28','18:10:00','18:20:00','','9099292937','4','B','2025-11-28 04:00:50'),(0,0,2955,0,'Y','2025-11-24','10:50:00','11:00:00','Fv','9106836155','2','C','2025-11-23 20:25:01'),(0,0,2955,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9106836155','2','T','2025-11-23 22:42:27'),(0,0,2955,0,'Y','2025-12-22','12:10:00','12:20:00','Fv','9106836155','2','C','2025-12-21 20:19:47'),(0,0,2955,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9106836155','2','T','2025-12-22 00:10:23'),(0,0,2957,0,'Y','2026-02-23','08:00:00','08:30:00','Followup','9725119219','4','T','2025-11-23 23:44:12'),(0,0,2958,0,'Y','2025-11-24','11:00:00','11:10:00','Nv','','2','C','2025-11-23 20:25:17'),(0,0,2958,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9924394270','2','T','2025-11-24 00:52:05'),(0,0,2958,0,'Y','2025-12-05','17:40:00','17:50:00','FV','9924394270','2','C','2025-12-05 03:18:12'),(0,0,2958,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9924394270','2','T','2025-12-05 05:50:32'),(0,0,2960,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825648083','3','T','2025-11-27 23:25:09'),(0,0,2961,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428988370','6','T','2025-11-23 23:10:23'),(0,0,2962,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638619829','4','T','2025-11-24 00:32:48'),(0,0,2962,0,'Y','2025-12-01','13:00:00','13:10:00','','9638619829','4','C','2025-11-30 22:16:46'),(0,0,2963,0,'Y','2025-11-24','11:30:00','11:40:00','','8905531259','4','C','2025-11-23 20:59:27'),(0,0,2963,0,'Y','2026-02-23','08:00:00','08:30:00','Followup','8905531259','4','T','2025-11-23 23:30:46'),(0,0,2964,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8300812719','2','T','2025-12-06 00:49:54'),(0,0,2964,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','8300812719','2','T','2025-11-24 01:58:43'),(0,0,2966,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200719471','4','T','2025-11-26 23:08:20'),(0,0,2966,0,'Y','2025-11-27','11:20:00','11:30:00','','8200719471','4','C','2025-11-26 22:03:26'),(0,0,2966,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','8200719471','4','T','2025-11-24 05:40:50'),(0,0,2968,0,'Y','2026-02-23','08:00:00','08:30:00','Followup','9316202414','4','T','2025-11-23 23:54:18'),(0,0,2969,0,'Y','2025-11-24','11:50:00','12:00:00','Fv','9725458865','2','C','2025-11-23 20:26:23'),(0,0,2969,0,'Y','2026-01-23','08:00:00','08:30:00','Followup','9725458865','2','T','2025-11-23 23:51:58'),(0,0,2970,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9106486295','4','T','2025-11-24 00:03:06'),(0,0,2971,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898612702','4','T','2025-11-24 00:25:35'),(0,0,2971,0,'Y','2025-12-01','11:40:00','11:50:00','','9898612702','4','C','2025-11-30 21:07:04'),(0,0,2971,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9898612702','4','T','2025-12-01 00:41:36'),(0,0,2972,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9723874087','2','T','2025-11-24 02:17:00'),(0,0,2973,0,'Y','2026-01-23','08:00:00','08:30:00','Followup','9930208830','4','T','2025-11-24 00:24:38'),(0,0,2974,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898609993','6','T','2025-11-23 23:19:56'),(0,0,2975,0,'Y','2025-11-24','12:20:00','12:30:00','','9978785404','4','C','2025-11-23 22:08:47'),(0,0,2975,0,'Y','2026-01-23','08:00:00','08:30:00','Followup','9978785404','4','T','2025-11-24 00:10:33'),(0,0,2976,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712818455','6','T','2025-11-23 23:34:56'),(0,0,2977,0,'Y','2025-11-24','12:50:00','13:00:00','Fv','9712377396','2','C','2025-11-23 20:29:18'),(0,0,2977,0,'Y','2026-03-24','08:00:00','08:30:00','Followup','9712377396','2','T','2025-11-24 00:41:29'),(0,0,2978,0,'Y','2025-11-24','12:30:00','12:40:00','NV','','2','C','2025-11-23 22:47:04'),(0,0,2978,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','6355491870','2','T','2025-11-24 01:48:48'),(0,0,2979,0,'Y','2025-11-24','11:20:00','11:30:00','','9638763222','4','C','2025-11-23 20:58:48'),(0,0,2979,0,'Y','2026-02-23','08:00:00','08:30:00','Followup','9638763222','4','T','2025-11-24 01:15:40'),(0,0,2980,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9737417560','3','T','2025-11-29 06:26:38'),(0,0,2981,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9979410094','2','T','2025-11-24 01:36:52'),(0,0,2982,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913607933','2','T','2025-11-24 00:21:01'),(0,0,2982,0,'Y','2025-11-24','12:20:00','12:30:00','Fv','9913607933','2','C','2025-11-23 20:27:53'),(0,0,2982,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9913607933','2','T','2025-11-24 05:03:00'),(0,0,2983,0,'Y','2025-11-24','12:40:00','12:50:00','Fv','','2','C','2025-11-23 20:28:35'),(0,0,2983,0,'Y','2026-01-23','08:00:00','08:30:00','Followup','9265073077','2','T','2025-11-24 00:38:45'),(0,0,2984,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974096391','6','T','2025-11-24 05:54:38'),(0,0,2986,0,'Y','2025-11-24','13:00:00','13:10:00','NV','','2','C','2025-11-23 22:47:37'),(0,0,2986,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9727262860','2','T','2025-11-24 02:09:26'),(0,0,2986,0,'Y','2025-12-04','10:20:00','10:30:00','Fv','9727262860','2','C','2025-12-03 20:20:44'),(0,0,2986,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9727262860','2','T','2025-12-03 22:37:13'),(0,0,2986,0,'Y','2025-12-16','11:10:00','11:20:00','Fv','9727262860','2','C','2025-12-15 20:08:01'),(0,0,2986,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9727262860','2','T','2025-12-15 23:05:45'),(0,0,2987,0,'Y','2025-11-24','12:40:00','12:50:00','','9712233716','4','C','2025-11-23 22:24:17'),(0,0,2987,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9712233716','4','T','2025-11-24 05:32:06'),(0,0,2988,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824300888','3','T','2025-11-28 06:17:35'),(0,0,2989,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6355092653','7','T','2025-11-24 07:13:51'),(0,0,2991,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9870012519','2','T','2025-11-24 02:22:13'),(0,0,2991,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9870012519','2','T','2025-11-25 06:29:05'),(0,0,2991,0,'Y','2025-12-16','18:40:00','18:50:00','','9870012519','2','C','2025-12-16 02:22:22'),(0,0,2991,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9870012519','2','T','2025-12-16 06:40:28'),(0,0,2993,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600664444','4','T','2025-11-24 06:37:35'),(0,0,2994,0,'Y','2025-11-24','17:30:00','17:40:00','NV','','2','C','2025-11-24 02:33:58'),(0,0,2994,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9904860603','2','T','2025-11-24 06:29:58'),(0,0,2994,0,'Y','2025-12-15','11:40:00','11:50:00','Fv','9904860603','2','C','2025-12-14 20:12:14'),(0,0,2994,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9904860603','2','T','2025-12-15 00:09:29'),(0,0,2995,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9825298136','2','T','2025-11-24 06:32:56'),(0,0,2996,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8469366608','3','T','2025-12-05 05:49:43'),(0,0,2997,0,'Y','2025-11-24','19:00:00','19:10:00','','8401159929','4','C','2025-11-24 05:20:34'),(0,0,2997,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','8401159929','4','T','2025-11-24 05:43:38'),(0,0,2999,0,'Y','2025-11-24','18:10:00','18:20:00','FV','','2','C','2025-11-24 02:35:00'),(0,0,2999,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','9925794470','2','T','2025-11-24 05:56:29'),(0,0,3001,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6352825762','6','T','2025-11-24 06:12:12'),(0,0,3002,0,'Y','2025-11-24','18:30:00','18:40:00','NV','','2','C','2025-11-24 02:35:27'),(0,0,3002,0,'Y','2025-12-09','16:40:00','16:50:00','Fv','7405515893','2','C','2025-12-09 03:17:27'),(0,0,3002,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','7405515893','2','T','2025-11-24 07:02:04'),(0,0,3002,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','7405515893','2','T','2025-12-09 05:20:29'),(0,0,3003,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200122496','6','T','2025-11-24 06:20:38'),(0,0,3004,0,'Y','2025-11-24','19:10:00','19:20:00','FC','8128956882','4','C','2025-11-24 05:58:05'),(0,0,3004,0,'Y','2026-02-23','08:00:00','08:30:00','Followup','8128956882','4','T','2025-11-24 06:27:53'),(0,0,3005,0,'Y','2025-11-24','18:40:00','18:50:00','Nc','8100000896','4','R','2025-11-24 05:00:28'),(0,0,3006,0,'Y','2025-11-24','18:50:00','19:00:00','','9898253368','4','C','2025-11-24 05:10:41'),(0,0,3006,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9898253368','4','T','2025-11-24 06:46:48'),(0,0,3006,0,'Y','2025-12-20','12:40:00','12:50:00','Fc','9898253368','4','C','2025-12-19 22:03:15'),(0,0,3006,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9898253368','4','T','2025-12-20 00:06:53'),(0,0,3007,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879668004','3','T','2025-12-02 06:43:41'),(0,0,3008,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879182282','2','T','2025-11-24 06:51:02'),(0,0,3008,0,'Y','2025-11-24','19:00:00','19:10:00','NV','','2','C','2025-11-24 02:37:02'),(0,0,3009,0,'Y','2025-11-29','08:00:00','08:30:00','Followup','8160559445','2','T','2025-11-24 07:07:15'),(0,0,3009,0,'Y','2025-12-02','17:50:00','05:30:00','FV','8160559445','2','C','2025-12-02 03:50:53'),(0,0,3009,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','8160559445','2','T','2025-12-02 05:43:26'),(0,0,3010,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825880600','7','T','2025-11-24 07:17:31'),(0,0,3012,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9408390975','4','T','2025-11-24 07:13:42'),(0,0,3013,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426343244','3','T','2025-12-18 05:29:15'),(0,0,3014,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9672298395','7','T','2025-11-24 07:20:24'),(0,0,3015,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9375712955','4','T','2025-11-24 07:17:39'),(0,0,3016,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6367760463','6','T','2025-11-24 07:28:38'),(0,0,3019,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8490933025','4','T','2025-11-25 06:42:46'),(0,0,3019,0,'Y','2025-12-01','12:50:00','13:00:00','','8490933025','4','C','2025-11-30 22:01:54'),(0,0,3019,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','8490933025','4','T','2025-11-30 23:55:45'),(0,0,3020,0,'Y','2026-01-09','08:00:00','08:30:00','Followup','9624525744','2','T','2025-11-24 22:21:54'),(0,0,3021,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825482269','5','T','2025-12-02 06:04:41'),(0,0,3022,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7861809868','4','T','2025-11-25 00:37:35'),(0,0,3022,0,'Y','2025-11-25','11:20:00','11:30:00','NC','7861809868','4','C','2025-11-24 21:36:22'),(0,0,3024,0,'Y','2025-11-25','10:30:00','10:40:00','Nv','9426783410','2','C','2025-11-24 20:23:50'),(0,0,3024,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9426783410','2','T','2025-11-25 00:55:27'),(0,0,3025,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160646630','4','T','2025-12-08 05:48:00'),(0,0,3025,0,'Y','2025-11-25','11:50:00','12:00:00','','8160646630','4','C','2025-11-24 22:04:02'),(0,0,3025,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','8160646630','4','T','2025-11-25 00:49:14'),(0,0,3027,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9106751096','3','T','2025-11-24 22:42:30'),(0,0,3028,0,'Y','2025-11-25','10:40:00','10:50:00','Fv','9913975343','2','C','2025-11-24 20:24:27'),(0,0,3028,0,'Y','2026-01-24','08:00:00','08:30:00','Followup','9913975343','2','T','2025-11-24 23:12:04'),(0,0,3030,0,'Y','2025-11-25','11:30:00','11:40:00','','9998190130','4','C','2025-11-24 21:43:52'),(0,0,3030,0,'Y','2026-02-23','08:00:00','08:30:00','Followup','9998190130','4','T','2025-11-25 01:13:58'),(0,0,3031,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998190130','4','T','2025-12-02 00:45:09'),(0,0,3031,0,'Y','2025-11-25','11:40:00','11:50:00','','9998190130','4','C','2025-11-24 21:44:11'),(0,0,3031,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9998190130','4','T','2025-12-04 07:47:45'),(0,0,3031,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9998190130','4','T','2025-11-25 01:11:55'),(0,0,3032,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8401130212','4','T','2025-11-25 05:54:12'),(0,0,3033,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9870002089','4','T','2025-11-25 05:55:53'),(0,0,3034,0,'Y','2025-11-25','11:50:00','12:00:00','Fv','9427270727','2','C','2025-11-24 21:07:50'),(0,0,3034,0,'Y','2026-01-24','08:00:00','08:30:00','Followup','9427270727','2','T','2025-11-24 23:36:27'),(0,0,3035,0,'Y','2025-11-25','11:00:00','11:10:00','','9427270727','4','C','2025-11-24 21:08:39'),(0,0,3035,0,'Y','2026-02-23','08:00:00','08:30:00','Followup','9427270727','4','T','2025-11-24 23:42:34'),(0,0,3036,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9601036157','3','T','2025-11-24 22:51:06'),(0,0,3037,0,'Y','2025-11-25','12:10:00','12:20:00','Fv','6353954638','2','C','2025-11-24 20:26:20'),(0,0,3037,0,'Y','2026-03-25','08:00:00','08:30:00','Followup','6353954638','2','T','2025-11-24 23:55:16'),(0,0,3038,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427228350','3','T','2025-11-24 22:58:38'),(0,0,3039,0,'Y','2025-11-25','12:00:00','12:10:00','Nv','9879493593','2','C','2025-11-24 20:25:47'),(0,0,3039,0,'Y','2025-12-13','12:10:00','12:20:00','Fv','9879493593','2','C','2025-12-12 20:19:58'),(0,0,3039,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9879493593','2','T','2025-11-25 01:05:07'),(0,0,3039,0,'Y','2026-01-22','08:00:00','08:30:00','Followup','9879493593','2','T','2025-12-12 23:54:17'),(0,0,3040,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427370456','4','T','2025-11-25 00:37:49'),(0,0,3041,0,'Y','2025-11-25','12:10:00','12:20:00','','9909001476','4','C','2025-11-24 22:02:38'),(0,0,3041,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9909001476','4','T','2025-11-25 00:13:12'),(0,0,3042,0,'Y','2025-11-25','11:10:00','11:20:00','','9825481881','4','C','2025-11-24 20:57:20'),(0,0,3042,0,'Y','2026-02-23','08:00:00','08:30:00','Followup','9825481881','4','T','2025-11-24 23:50:20'),(0,0,3043,0,'Y','2026-03-25','08:00:00','08:30:00','Followup','9925487576','2','T','2025-11-25 00:03:49'),(0,0,3044,0,'Y','2025-11-25','12:30:00','12:40:00','Nv','9823910115','2','C','2025-11-24 23:12:22'),(0,0,3044,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9823910115','2','T','2025-11-25 04:50:14'),(0,0,3044,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9823910115','2','T','2025-12-02 22:13:31'),(0,0,3045,0,'Y','2025-11-25','12:00:00','12:10:00','','9913335484','4','C','2025-11-24 20:57:56'),(0,0,3045,0,'Y','2026-02-23','08:00:00','08:30:00','Followup','9913335484','4','T','2025-11-25 00:07:07'),(0,0,3046,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9016284836','3','T','2025-11-24 23:39:32'),(0,0,3047,0,'Y','2025-11-25','12:40:00','12:50:00','Fv','9925213256','2','C','2025-11-24 20:28:08'),(0,0,3047,0,'Y','2026-01-24','08:00:00','08:30:00','Followup','9925213256','2','T','2025-11-25 00:22:28'),(0,0,3048,0,'Y','2025-11-25','12:50:00','13:00:00','Rfv','9924599106','2','C','2025-11-24 20:29:50'),(0,0,3048,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9924599106','2','T','2025-11-25 00:26:53'),(0,0,3049,0,'Y','2025-11-25','12:20:00','12:30:00','','9909806161','4','C','2025-11-24 22:44:50'),(0,0,3049,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9909806161','4','T','2025-11-25 00:45:34'),(0,0,3050,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428058946','4','T','2025-11-25 05:50:50'),(0,0,3051,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','8128981828','4','T','2025-11-25 05:57:32'),(0,0,3052,0,'Y','2025-11-25','17:20:00','17:30:00','FV','','2','C','2025-11-25 01:28:41'),(0,0,3052,0,'Y','2026-01-24','08:00:00','08:30:00','Followup','9925659531','2','T','2025-11-25 04:58:42'),(0,0,3053,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898211633','2','T','2025-11-25 05:16:05'),(0,0,3054,0,'Y','2025-11-25','17:00:00','17:10:00','FV','','2','C','2025-11-25 01:27:04'),(0,0,3054,0,'Y','2025-12-12','18:50:00','19:00:00','Fv','9824316116','2','B','2025-12-12 03:09:23'),(0,0,3054,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9824316116','2','T','2025-11-25 06:50:53'),(0,0,3056,0,'Y','2026-02-23','08:00:00','08:30:00','Followup','9978880944','4','T','2025-11-25 06:29:02'),(0,0,3057,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978880944','4','T','2025-11-26 00:51:39'),(0,0,3058,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9825380109','2','T','2025-11-25 07:08:21'),(0,0,3058,0,'Y','2025-12-05','10:20:00','10:30:00','FV','9825380109','2','C','2025-12-04 20:26:23'),(0,0,3058,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','9825380109','2','T','2025-12-04 22:29:30'),(0,0,3059,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998314299','2','T','2025-11-25 05:45:38'),(0,0,3059,0,'Y','2025-11-25','18:10:00','18:20:00','NV','','2','C','2025-11-25 01:31:25'),(0,0,3060,0,'Y','2025-11-25','17:40:00','17:50:00','FV','','2','C','2025-11-25 01:29:52'),(0,0,3060,0,'Y','2026-01-24','08:00:00','08:30:00','Followup','9023972629','2','T','2025-11-25 05:48:35'),(0,0,3061,0,'Y','2026-03-05','08:00:00','08:30:00','Followup','9687755090','4','T','2025-11-25 06:34:43'),(0,0,3062,0,'Y','2025-12-02','08:00:00','08:30:00','Followup','8128032454','4','T','2025-11-25 06:49:17'),(0,0,3063,0,'Y','2025-11-25','18:10:00','18:20:00','','9824827232','4','C','2025-11-25 04:44:53'),(0,0,3063,0,'Y','2026-02-23','08:00:00','08:30:00','Followup','9824827232','4','T','2025-11-25 06:00:56'),(0,0,3064,0,'Y','2025-11-25','17:30:00','17:40:00','NV','','2','C','2025-11-25 01:29:25'),(0,0,3064,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9722446233','2','T','2025-11-25 07:18:58'),(0,0,3065,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9979690909','2','T','2025-11-25 07:26:26'),(0,0,3065,0,'Y','2025-12-05','12:10:00','12:20:00','FV','9979690909','2','C','2025-12-04 20:31:21'),(0,0,3065,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','9979690909','2','T','2025-12-05 00:03:46'),(0,0,3066,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9687394999','6','T','2025-11-25 05:45:49'),(0,0,3067,0,'Y','2025-11-25','18:30:00','18:40:00','NV','','2','C','2025-11-25 01:31:44'),(0,0,3067,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9913131580','2','T','2025-11-25 07:21:29'),(0,0,3067,0,'Y','2025-12-05','18:20:00','18:30:00','FV','9913131580','2','C','2025-12-05 03:19:13'),(0,0,3067,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9913131580','2','T','2025-12-05 06:20:15'),(0,0,3068,0,'Y','2026-02-23','08:00:00','08:30:00','Followup','9428894858','4','T','2025-11-25 06:11:10'),(0,0,3070,0,'Y','2025-11-25','19:00:00','19:10:00','','9033657897','4','C','2025-11-25 04:46:57'),(0,0,3070,0,'Y','2025-12-16','19:10:00','19:20:00','Fc','9033657897','4','C','2025-12-16 04:21:14'),(0,0,3070,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9033657897','4','T','2025-11-25 06:59:24'),(0,0,3070,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','9033657897','4','T','2025-12-16 07:23:43'),(0,0,3071,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9090197971','6','T','2025-11-25 06:30:56'),(0,0,3072,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426637237','7','T','2025-12-22 00:28:43'),(0,0,3073,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909280909','3','T','2025-12-03 06:32:13'),(0,0,3074,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9429098089','2','T','2025-11-25 06:50:29'),(0,0,3076,0,'Y','2025-11-25','18:40:00','18:50:00','NE','','2','C','2025-11-25 01:32:04'),(0,0,3076,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','8866206699','2','T','2025-11-25 07:49:44'),(0,0,3080,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727248246','3','T','2025-11-25 22:02:11'),(0,0,3081,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925735857','3','T','2025-11-25 22:07:48'),(0,0,3082,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9558054718','2','T','2025-11-25 22:28:38'),(0,0,3082,0,'Y','2025-12-03','12:40:00','12:50:00','Fv','9558054718','2','B','2025-12-02 20:25:36'),(0,0,3083,0,'Y','2025-11-26','11:40:00','11:50:00','Fv','','2','C','2025-11-25 20:37:52'),(0,0,3083,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','8238624453','2','T','2025-11-25 22:50:11'),(0,0,3084,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9558243901','3','T','2025-11-26 06:15:40'),(0,0,3085,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8153890089','4','T','2025-12-03 23:12:34'),(0,0,3085,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','8153890089','4','T','2025-12-07 23:07:36'),(0,0,3086,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7779089555','3','T','2025-11-26 06:16:33'),(0,0,3087,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428761496','3','T','2025-11-25 22:58:51'),(0,0,3088,0,'Y','2025-11-26','11:30:00','11:40:00','','9825444646','4','C','2025-11-25 21:30:48'),(0,0,3088,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9825444646','4','T','2025-11-25 23:23:55'),(0,0,3089,0,'Y','2025-11-26','11:10:00','11:20:00','Fv','9558767707','2','C','2025-11-25 20:31:19'),(0,0,3089,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9558767707','2','T','2025-11-25 23:00:31'),(0,0,3090,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9825669293','4','T','2025-11-25 23:08:28'),(0,0,3090,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9825669293','4','T','2025-12-01 06:40:19'),(0,0,3091,0,'Y','2025-11-26','12:00:00','12:10:00','Nv','9979003174','2','C','2025-11-25 20:38:42'),(0,0,3091,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9979003174','2','T','2025-11-26 00:50:31'),(0,0,3092,0,'Y','2025-11-26','11:10:00','11:20:00','','9033327048','4','C','2025-11-25 21:29:31'),(0,0,3092,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9033327048','4','T','2025-11-25 22:59:17'),(0,0,3093,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998285792','3','T','2025-11-25 23:07:12'),(0,0,3094,0,'Y','2026-02-24','08:00:00','08:30:00','Followup','9427223118','4','T','2025-11-25 23:17:12'),(0,0,3095,0,'Y','2025-11-26','11:20:00','11:30:00','Fv','9328799150','2','C','2025-11-25 20:31:53'),(0,0,3095,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9328799150','2','T','2025-11-25 23:17:37'),(0,0,3097,0,'Y','2025-11-26','11:00:00','11:10:00','','9016893431','4','C','2025-11-25 21:29:00'),(0,0,3097,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9016893431','4','T','2025-11-25 23:28:19'),(0,0,3098,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825314700','4','T','2025-12-06 00:48:55'),(0,0,3098,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9825314700','4','T','2025-11-25 23:48:27'),(0,0,3098,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9825314700','4','T','2025-12-04 06:17:20'),(0,0,3099,0,'Y','2025-11-26','11:50:00','12:00:00','','9879572272','4','C','2025-11-25 21:31:39'),(0,0,3099,0,'Y','2026-02-24','08:00:00','08:30:00','Followup','9879572227','4','T','2025-11-26 06:27:59'),(0,0,3100,0,'Y','2025-11-26','12:00:00','12:10:00','','9825872227','4','C','2025-11-25 21:33:07'),(0,0,3100,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9825872227','4','T','2025-11-26 06:35:13'),(0,0,3101,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200454936','3','T','2025-11-27 23:24:25'),(0,0,3102,0,'Y','2025-11-26','11:00:00','11:10:00','Nv','9879418820','2','C','2025-11-25 20:30:51'),(0,0,3102,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9879418820','2','T','2025-11-26 01:05:51'),(0,0,3103,0,'Y','2025-11-26','12:10:00','12:20:00','Fv','9925870089','2','C','2025-11-25 20:39:11'),(0,0,3103,0,'Y','2026-03-06','08:00:00','08:30:00','Followup','9925870089','2','T','2025-11-26 00:06:44'),(0,0,3104,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9924126826','4','T','2025-11-26 00:05:39'),(0,0,3105,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429550637','3','T','2025-11-26 06:22:44'),(0,0,3107,0,'Y','2025-11-26','12:20:00','12:30:00','','7405440809','4','C','2025-11-25 21:55:06'),(0,0,3107,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','7405440809','4','T','2025-11-26 05:35:25'),(0,0,3108,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824502297','4','T','2025-11-27 05:45:38'),(0,0,3108,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9824502297','4','T','2025-11-26 06:16:56'),(0,0,3109,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9723889136','2','T','2025-11-26 01:30:46'),(0,0,3110,0,'Y','2026-02-24','08:00:00','08:30:00','Followup','9824217499','4','T','2025-11-26 06:41:53'),(0,0,3112,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8460892538','3','T','2025-11-26 06:22:21'),(0,0,3113,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9106634992','2','T','2025-11-26 04:42:16'),(0,0,3114,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9824887110','2','T','2025-11-26 05:52:59'),(0,0,3115,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428466260','3','T','2025-12-01 05:54:57'),(0,0,3116,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','8511136302','4','T','2025-11-26 05:38:28'),(0,0,3118,0,'Y','2025-11-26','18:00:00','18:10:00','','9428256622','4','C','2025-11-26 04:28:50'),(0,0,3118,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9428256622','4','T','2025-11-26 05:42:21'),(0,0,3118,0,'Y','2025-12-11','11:50:00','12:00:00','FC','9428256622','4','C','2025-12-10 21:49:38'),(0,0,3118,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9428256622','4','T','2025-12-10 23:37:29'),(0,0,3119,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200059857','4','T','2025-12-03 00:10:12'),(0,0,3119,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','8200059857','4','T','2025-11-26 06:09:13'),(0,0,3120,0,'Y','2025-11-26','17:40:00','17:50:00','Fv','9924263456','2','C','2025-11-26 01:42:26'),(0,0,3120,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9924263456','2','T','2025-11-26 05:46:54'),(0,0,3121,0,'Y','2025-11-26','17:50:00','18:00:00','Fv','9979585345','2','C','2025-11-26 01:44:07'),(0,0,3121,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9979585345','2','T','2025-11-26 06:01:22'),(0,0,3122,0,'Y','2025-11-26','18:20:00','18:30:00','','9825830441','4','C','2025-11-26 04:29:52'),(0,0,3122,0,'Y','2025-12-01','08:00:00','08:30:00','Followup','9825830441','4','T','2025-11-26 05:50:58'),(0,0,3123,0,'Y','2025-11-26','18:10:00','18:20:00','RFV','8733825295','2','C','2025-11-26 01:44:56'),(0,0,3123,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','8733825295','2','T','2025-11-26 06:12:41'),(0,0,3124,0,'Y','2025-11-26','19:10:00','19:20:00','','9727187616','4','C','2025-11-26 04:35:55'),(0,0,3124,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9727187616','4','T','2025-11-26 06:23:59'),(0,0,3125,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898803308','3','T','2025-11-26 06:21:29'),(0,0,3126,0,'Y','2026-02-24','08:00:00','08:30:00','Followup','9428466200','4','T','2025-11-26 06:55:19'),(0,0,3127,0,'Y','2025-11-26','18:40:00','18:50:00','','9825988890','4','C','2025-11-26 04:33:20'),(0,0,3127,0,'Y','2026-02-24','08:00:00','08:30:00','Followup','9825988890','4','T','2025-11-26 06:46:39'),(0,0,3128,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825988890','4','T','2025-11-26 06:51:11'),(0,0,3128,0,'Y','2025-11-26','18:50:00','19:00:00','','9825988890','4','C','2025-11-26 04:34:01'),(0,0,3129,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9313258374','4','T','2025-11-26 07:00:58'),(0,0,3130,0,'Y','2025-11-26','18:40:00','18:50:00','Fv','8238301713','2','C','2025-11-26 01:46:06'),(0,0,3130,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','8238301713','2','T','2025-11-26 06:47:53'),(0,0,3131,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9601455560','3','T','2025-11-26 07:22:04'),(0,0,3132,0,'Y','2026-02-24','08:00:00','08:30:00','Followup','9662540034','4','T','2025-11-26 07:08:36'),(0,0,3133,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879712969','4','T','2025-11-26 07:34:38'),(0,0,3133,0,'Y','2025-11-26','19:00:00','19:10:00','','9849712969','4','C','2025-11-26 04:34:39'),(0,0,3133,0,'Y','2025-12-17','18:10:00','18:20:00','','9879712969','4','C','2025-12-17 04:40:51'),(0,0,3133,0,'Y','2026-03-17','08:00:00','08:30:00','Followup','9879712969','4','T','2025-12-17 06:16:05'),(0,0,3134,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8780486381','3','T','2025-11-26 07:16:21'),(0,0,3135,0,'Y','2025-12-12','12:20:00','12:30:00','Fv','9724912391','2','C','2025-12-11 20:15:39'),(0,0,3135,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9724912391','2','T','2025-11-27 01:25:56'),(0,0,3135,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9724912391','2','T','2025-12-12 00:12:08'),(0,0,3137,0,'Y','2025-11-26','18:10:00','18:20:00','','9724646038','4','C','2025-11-26 04:29:28'),(0,0,3137,0,'Y','2026-02-24','08:00:00','08:30:00','Followup','9724646038','4','T','2025-11-26 07:33:42'),(0,0,3138,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200058052','4','T','2025-11-26 07:37:30'),(0,0,3139,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9601455560','4','T','2025-11-26 07:45:45'),(0,0,3140,0,'Y','2025-11-26','19:30:00','19:40:00','','8469095944','4','C','2025-11-26 05:20:24'),(0,0,3140,0,'Y','2026-03-06','08:00:00','08:30:00','Followup','8469095944','4','T','2025-11-26 07:50:10'),(0,0,3146,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924407276','5','T','2025-11-27 06:52:59'),(0,0,3147,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427444514','6','T','2025-11-27 06:33:41'),(0,0,3148,0,'Y','2025-11-27','10:50:00','11:00:00','Fv','9224156680','2','C','2025-11-26 20:27:27'),(0,0,3148,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9224156680','2','T','2025-11-26 22:36:50'),(0,0,3150,0,'Y','2025-11-27','11:10:00','11:20:00','','9374128521','4','C','2025-11-26 21:13:12'),(0,0,3150,0,'Y','2026-02-25','08:00:00','08:30:00','Followup','9374128521','4','T','2025-11-26 23:05:22'),(0,0,3151,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9913377207','4','T','2025-12-05 07:14:09'),(0,0,3152,0,'Y','2025-11-27','12:20:00','12:30:00','Fv','9913018124','2','C','2025-11-26 20:32:03'),(0,0,3152,0,'Y','2026-02-25','08:00:00','08:30:00','Followup','9913018124','2','T','2025-11-26 23:18:01'),(0,0,3155,0,'Y','2025-11-27','11:30:00','11:40:00','','9265841020','4','C','2025-11-26 21:45:47'),(0,0,3155,0,'Y','2025-12-11','12:40:00','12:50:00','FC','9265841020','4','C','2025-12-10 22:41:48'),(0,0,3155,0,'Y','2026-01-10','08:00:00','08:30:00','Followup','9265841020','4','T','2025-12-11 05:49:58'),(0,0,3155,0,'Y','2026-01-22','08:00:00','08:30:00','Followup','9265841020','4','T','2025-11-26 23:49:59'),(0,0,3156,0,'Y','2025-11-27','12:50:00','13:00:00','Fv','9979686531','2','C','2025-11-26 20:34:04'),(0,0,3156,0,'Y','2026-03-27','08:00:00','08:30:00','Followup','9979686531','2','T','2025-11-26 23:43:45'),(0,0,3157,0,'Y','2025-12-02','08:00:00','08:30:00','Followup','9427775154','2','T','2025-11-26 23:48:56'),(0,0,3157,0,'Y','2025-12-02','11:50:00','12:00:00','FV','9427775154','2','C','2025-12-01 20:24:53'),(0,0,3157,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9427775154','2','T','2025-12-01 23:28:50'),(0,0,3158,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428251195','3','T','2025-12-02 06:25:42'),(0,0,3159,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9825011840','2','T','2025-11-26 23:55:19'),(0,0,3160,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9510109394','2','T','2025-11-27 01:48:33'),(0,0,3160,0,'Y','2025-12-08','17:20:00','17:30:00','','9510109394','2','C','2025-12-08 02:51:29'),(0,0,3160,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9510109394','2','T','2025-12-08 05:29:19'),(0,0,3161,0,'Y','2025-11-27','11:30:00','11:40:00','Nv','','2','C','2025-11-26 20:29:26'),(0,0,3161,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','6352526263','2','T','2025-11-27 01:24:55'),(0,0,3161,0,'Y','2025-12-17','10:50:00','11:00:00','FV','6352526263','2','C','2025-12-16 20:23:15'),(0,0,3161,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','6352526263','2','T','2025-12-16 22:46:27'),(0,0,3162,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7046515111','4','T','2025-11-28 06:55:48'),(0,0,3162,0,'Y','2025-11-27','11:40:00','11:50:00','','7046515111','4','C','2025-11-26 22:10:22'),(0,0,3162,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','7046515111','4','T','2025-11-30 23:49:49'),(0,0,3162,0,'Y','2026-02-25','08:00:00','08:30:00','Followup','7046515111','4','T','2025-11-27 05:51:43'),(0,0,3163,0,'Y','2025-11-27','11:00:00','11:10:00','','6352526973','4','C','2025-11-26 21:18:12'),(0,0,3163,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','6352526973','4','T','2025-11-27 05:45:23'),(0,0,3164,0,'Y','2026-02-19','08:00:00','08:30:00','Followup','9879995555','4','T','2025-11-27 05:48:04'),(0,0,3165,0,'Y','2025-11-27','11:00:00','11:10:00','Nv','9687608081','2','C','2025-11-26 20:27:49'),(0,0,3165,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9687608081','2','T','2025-11-27 00:30:08'),(0,0,3165,0,'Y','2025-12-18','11:20:00','11:30:00','Fv','9687608081','2','C','2025-12-17 20:28:33'),(0,0,3165,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','9687608081','2','T','2025-12-17 23:25:15'),(0,0,3166,0,'Y','2025-11-27','10:30:00','10:40:00','Nv','9638247929','2','C','2025-11-26 20:26:39'),(0,0,3166,0,'Y','2025-12-03','10:40:00','10:50:00','Fv','9638247929','2','B','2025-12-02 20:20:38'),(0,0,3166,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9638247929','2','T','2025-11-27 00:56:27'),(0,0,3166,0,'Y','2025-12-17','12:50:00','13:00:00','FV','9638247929','2','C','2025-12-16 20:28:42'),(0,0,3166,0,'Y','2026-01-06','08:00:00','08:30:00','Followup','9638247929','2','T','2025-12-17 00:30:45'),(0,0,3167,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824085590','5','T','2025-11-27 07:18:43'),(0,0,3169,0,'Y','2025-11-27','11:50:00','12:00:00','Fv','9638243697','2','C','2025-11-26 20:30:07'),(0,0,3169,0,'Y','2026-03-07','08:00:00','08:30:00','Followup','9638243697','2','T','2025-11-26 23:29:46'),(0,0,3170,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9998577399','2','T','2025-11-27 00:16:07'),(0,0,3171,0,'Y','2025-11-27','11:10:00','11:20:00','Fv','8200372446','2','C','2025-11-26 20:28:36'),(0,0,3171,0,'Y','2026-02-25','08:00:00','08:30:00','Followup','8200372446','2','T','2025-11-26 23:20:45'),(0,0,3172,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979881681','5','T','2025-11-27 07:19:12'),(0,0,3174,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','8401311537','2','T','2025-11-27 01:03:13'),(0,0,3175,0,'Y','2026-03-27','08:00:00','08:30:00','Followup','9979123381','2','T','2025-11-27 01:07:05'),(0,0,3176,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9106512211','5','T','2025-11-27 00:34:04'),(0,0,3177,0,'Y','2025-11-27','12:30:00','12:40:00','Nv','8320723739','2','C','2025-11-26 20:32:31'),(0,0,3177,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','8320723739','2','T','2025-11-27 01:57:00'),(0,0,3177,0,'Y','2025-12-08','10:40:00','10:50:00','Fv','8320723739','2','B','2025-12-07 20:11:15'),(0,0,3177,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','8320723739','2','T','2025-12-05 22:43:54'),(0,0,3177,0,'Y','2025-12-16','11:40:00','11:50:00','Fv','8320723739','2','B','2025-12-15 20:09:04'),(0,0,3177,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','8320723739','2','T','2025-12-16 23:19:23'),(0,0,3179,0,'Y','2025-11-27','12:10:00','12:20:00','Fv','9173273961','2','C','2025-11-26 20:31:13'),(0,0,3179,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9173273961','2','T','2025-11-27 01:38:37'),(0,0,3180,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9824040559','2','T','2025-11-27 02:05:22'),(0,0,3181,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429046095','2','T','2025-11-27 02:19:04'),(0,0,3181,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9429046095','2','T','2025-11-28 00:44:03'),(0,0,3183,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998381341','4','T','2025-11-27 05:46:01'),(0,0,3185,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979198522','3','T','2025-12-16 07:01:04'),(0,0,3187,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9773417515','7','T','2025-11-27 05:58:18'),(0,0,3188,0,'Y','2025-11-27','18:20:00','18:30:00','Fv','9726312509','2','C','2025-11-27 03:40:17'),(0,0,3188,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9726312509','2','T','2025-11-27 05:11:35'),(0,0,3188,0,'Y','2025-12-23','12:10:00','12:20:00','Fv','9726312509','2','C','2025-12-22 20:22:16'),(0,0,3188,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9726312509','2','T','2025-12-23 00:08:30'),(0,0,3189,0,'Y','2025-11-27','17:40:00','17:50:00','Fv','9428317041','2','C','2025-11-27 03:38:40'),(0,0,3189,0,'Y','2026-02-25','08:00:00','08:30:00','Followup','9428317041','2','T','2025-11-27 05:22:34'),(0,0,3190,0,'Y','2025-11-27','18:40:00','18:50:00','','9316922388','4','C','2025-11-27 04:38:55'),(0,0,3190,0,'Y','2025-11-28','12:50:00','13:00:00','','9316922388','4','B','2025-11-27 23:28:20'),(0,0,3190,0,'Y','2025-11-29','12:30:00','12:40:00','','9316922388','4','B','2025-11-28 21:55:56'),(0,0,3190,0,'Y','2025-12-02','19:20:00','19:30:00','FC','9316922388','4','C','2025-12-02 05:10:28'),(0,0,3190,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9316922388','4','T','2025-11-27 06:13:25'),(0,0,3190,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9316922388','4','T','2025-12-02 07:17:05'),(0,0,3191,0,'Y','2026-02-25','08:00:00','08:30:00','Followup','9825220932','5','T','2025-11-27 05:59:11'),(0,0,3192,0,'Y','2026-02-25','08:00:00','08:30:00','Followup','9825220932','5','T','2025-11-27 05:54:12'),(0,0,3193,0,'Y','2025-11-27','18:00:00','18:10:00','','9904229290','4','C','2025-11-27 04:35:54'),(0,0,3193,0,'Y','2026-02-25','08:00:00','08:30:00','Followup','9904229290','4','T','2025-11-27 06:08:07'),(0,0,3194,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662060265','6','T','2025-11-27 05:53:08'),(0,0,3195,0,'Y','2025-11-27','18:10:00','18:20:00','','9426423047','4','C','2025-11-27 04:37:32'),(0,0,3195,0,'Y','2026-02-25','08:00:00','08:30:00','Followup','9426423047','4','T','2025-11-27 05:59:51'),(0,0,3196,0,'Y','2025-11-27','18:00:00','18:10:00','Nv','8000002438','2','R','2025-11-27 03:39:27'),(0,0,3197,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6355400769','6','T','2025-11-27 06:11:35'),(0,0,3198,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7801975710','6','T','2025-11-27 06:16:39'),(0,0,3200,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9016935727','6','T','2025-11-27 06:28:23'),(0,0,3201,0,'Y','2025-11-27','18:50:00','19:00:00','','','4','R','2025-11-27 04:39:21'),(0,0,3202,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998001919','2','T','2025-11-27 06:44:36'),(0,0,3202,0,'Y','2025-11-27','18:30:00','18:40:00','Nv','9998001919','2','C','2025-11-27 03:41:24'),(0,0,3202,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9998001919','2','T','2025-11-28 07:19:59'),(0,0,3202,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','9998001919','2','T','2025-12-18 07:18:00'),(0,0,3203,0,'Y','2025-11-27','18:20:00','18:30:00','','8866889912','4','C','2025-11-27 04:38:06'),(0,0,3203,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','8866889912','4','T','2025-11-27 07:53:57'),(0,0,3204,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7622994634','5','T','2025-11-27 06:11:59'),(0,0,3205,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725675555','5','T','2025-11-27 06:30:53'),(0,0,3206,0,'Y','2026-01-22','08:00:00','08:30:00','Followup','9624302823','4','T','2025-11-27 06:32:23'),(0,0,3207,0,'Y','2025-11-27','18:50:00','19:00:00','NE','9978930090','2','C','2025-11-27 03:43:22'),(0,0,3207,0,'Y','2025-12-02','08:00:00','08:30:00','Followup','9978930090','2','T','2025-11-27 06:42:22'),(0,0,3207,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9978930090','2','T','2025-12-01 04:47:40'),(0,0,3207,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9978930090','2','T','2025-12-05 05:40:35'),(0,0,3207,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9978930090','2','T','2025-12-09 04:39:51'),(0,0,3208,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9157168328','3','T','2025-12-08 06:35:45'),(0,0,3209,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427217380','4','T','2025-12-04 07:04:40'),(0,0,3209,0,'Y','2025-11-27','19:20:00','19:30:00','','9427217380','4','C','2025-11-27 04:57:15'),(0,0,3209,0,'Y','2025-12-04','19:10:00','19:20:00','','9427217380','4','C','2025-12-04 06:22:18'),(0,0,3209,0,'Y','2026-02-25','08:00:00','08:30:00','Followup','9427217380','4','T','2025-11-27 06:40:49'),(0,0,3210,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9016964635','5','T','2025-11-27 06:35:31'),(0,0,3211,0,'Y','2025-11-27','19:00:00','19:10:00','','','4','C','2025-11-27 04:41:42'),(0,0,3211,0,'Y','2025-12-04','08:00:00','08:30:00','Followup','9327195654','4','T','2025-11-27 06:57:04'),(0,0,3212,0,'Y','2026-02-25','08:00:00','08:30:00','Followup','9726230400','4','T','2025-11-27 07:59:58'),(0,0,3213,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8511787631','2','T','2025-11-29 00:21:55'),(0,0,3213,0,'Y','2025-11-29','12:20:00','12:30:00','Fv','8511787631','2','C','2025-11-28 20:24:09'),(0,0,3214,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9328077047','4','T','2025-11-27 22:45:40'),(0,0,3215,0,'Y','2025-11-28','10:20:00','10:30:00','Fv','9687399757','2','C','2025-11-27 20:10:14'),(0,0,3215,0,'Y','2026-03-28','08:00:00','08:30:00','Followup','9978220974','2','T','2025-11-27 22:22:34'),(0,0,3216,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200919103','5','T','2025-11-27 23:01:45'),(0,0,3217,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9408365165','2','T','2025-11-28 01:43:22'),(0,0,3218,0,'Y','2025-11-28','10:40:00','10:50:00','Fv','9725841934','2','C','2025-11-27 20:11:06'),(0,0,3218,0,'Y','2026-02-26','08:00:00','08:30:00','Followup','9725841934','2','T','2025-11-27 22:39:01'),(0,0,3219,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879210882','6','T','2025-11-27 23:07:54'),(0,0,3220,0,'Y','2026-02-26','08:00:00','08:30:00','Followup','7211132999','4','T','2025-11-27 23:31:08'),(0,0,3221,0,'Y','2025-11-28','11:00:00','11:10:00','Nv','9824648860','2','C','2025-11-27 20:11:44'),(0,0,3221,0,'Y','2025-12-17','16:40:00','16:50:00','','9824648860','2','B','2025-12-17 01:43:17'),(0,0,3221,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9824648860','2','T','2025-11-28 01:25:28'),(0,0,3221,0,'Y','2025-12-18','12:20:00','12:30:00','Fv','9824648860','2','C','2025-12-17 20:29:58'),(0,0,3221,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','9824648860','2','T','2025-12-17 23:59:36'),(0,0,3222,0,'Y','2025-11-28','11:30:00','11:40:00','Nv','9913085607','2','C','2025-11-27 20:13:16'),(0,0,3222,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9913085607','2','T','2025-11-28 01:48:19'),(0,0,3222,0,'Y','2025-12-19','19:50:00','20:00:00','','9913085607','2','B','2025-12-19 02:08:49'),(0,0,3222,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9913085607','2','T','2025-12-18 23:01:52'),(0,0,3223,0,'Y','2025-11-28','11:00:00','11:10:00','','8160868246','4','C','2025-11-27 21:47:09'),(0,0,3223,0,'Y','2026-02-26','08:00:00','08:30:00','Followup','8160868246','4','T','2025-11-27 23:20:46'),(0,0,3226,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428408352','5','T','2025-11-28 06:36:12'),(0,0,3227,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','7096407574','2','T','2025-11-28 01:11:08'),(0,0,3228,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','9879800986','2','T','2025-11-28 01:13:30'),(0,0,3229,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9106464092','6','T','2025-11-27 23:30:58'),(0,0,3230,0,'Y','2025-11-28','11:10:00','11:20:00','','9998397818','4','C','2025-11-27 21:47:42'),(0,0,3230,0,'Y','2026-02-26','08:00:00','08:30:00','Followup','9998397818','4','T','2025-11-27 23:34:03'),(0,0,3231,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7874534870','4','T','2025-11-28 00:10:20'),(0,0,3232,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904343609','3','T','2025-11-27 23:25:31'),(0,0,3233,0,'Y','2025-11-28','10:30:00','10:40:00','Nv','8530870402','2','C','2025-11-27 20:10:46'),(0,0,3233,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','8530870402','2','T','2025-11-28 01:58:18'),(0,0,3234,0,'Y','2025-11-28','11:30:00','11:40:00','','9712587145','4','R','2025-11-27 21:55:26'),(0,0,3234,0,'Y','2026-02-13','08:00:00','08:30:00','Followup','9712587145','4','T','2025-12-14 22:54:43'),(0,0,3235,0,'Y','2025-11-28','12:10:00','12:20:00','','9727702727','4','C','2025-11-27 21:55:50'),(0,0,3235,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9727702727','4','T','2025-11-27 23:52:43'),(0,0,3236,0,'Y','2025-11-28','11:40:00','11:50:00','','9904430028','4','C','2025-11-27 21:50:10'),(0,0,3236,0,'Y','2026-02-26','08:00:00','08:30:00','Followup','9904430028','4','T','2025-11-27 23:49:43'),(0,0,3237,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725994855','5','T','2025-11-27 23:25:27'),(0,0,3238,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898455731','4','T','2025-11-28 06:49:46'),(0,0,3238,0,'Y','2025-11-28','12:00:00','12:10:00','','9898455731','4','C','2025-11-27 21:51:11'),(0,0,3239,0,'Y','2026-01-23','08:00:00','08:30:00','Followup','9825242903','4','T','2025-11-28 05:48:47'),(0,0,3240,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','8140220256','2','T','2025-11-28 02:23:22'),(0,0,3240,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','8140220256','2','T','2025-12-17 23:43:14'),(0,0,3241,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825164275','2','T','2025-11-28 00:34:20'),(0,0,3241,0,'Y','2025-11-28','12:00:00','12:10:00','Nv','9825164275','2','C','2025-11-27 20:15:10'),(0,0,3241,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9825164275','2','T','2025-11-28 06:16:22'),(0,0,3242,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825164275','2','T','2025-11-28 00:36:18'),(0,0,3243,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9574402545','2','T','2025-11-28 01:42:56'),(0,0,3244,0,'Y','2025-11-28','11:50:00','12:00:00','','','4','C','2025-11-27 21:50:33'),(0,0,3244,0,'Y','2026-02-26','08:00:00','08:30:00','Followup','9898030373','4','T','2025-11-28 00:14:40'),(0,0,3245,0,'Y','2025-11-28','11:50:00','12:00:00','Rnv','9824240255','2','C','2025-11-27 20:14:24'),(0,0,3245,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9824240255','2','T','2025-11-28 00:33:04'),(0,0,3246,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7984863059','6','T','2025-11-27 23:43:43'),(0,0,3247,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8780574120','2','T','2025-11-28 01:56:14'),(0,0,3247,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','8780574120','2','T','2025-12-06 00:06:37'),(0,0,3248,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712587145','2','T','2025-11-28 02:02:38'),(0,0,3249,0,'Y','2026-02-26','08:00:00','08:30:00','Followup','9898720869','4','T','2025-11-28 07:08:04'),(0,0,3250,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898739119','4','T','2025-11-28 05:51:39'),(0,0,3250,0,'Y','2025-11-28','12:20:00','12:30:00','','9898739119','4','C','2025-11-27 21:56:18'),(0,0,3251,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998815753','4','T','2025-11-28 05:52:05'),(0,0,3251,0,'Y','2025-11-28','12:30:00','12:40:00','','9998815753','4','C','2025-11-27 21:58:48'),(0,0,3252,0,'Y','2025-11-28','12:30:00','12:40:00','Nv','9824881598','2','C','2025-11-27 20:32:50'),(0,0,3252,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9824881598','2','T','2025-11-28 02:13:35'),(0,0,3252,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9824881598','2','T','2025-12-05 23:51:32'),(0,0,3252,0,'Y','2025-12-17','12:40:00','12:50:00','FV','9824881598','2','C','2025-12-16 20:28:28'),(0,0,3252,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9824881598','2','T','2025-12-17 01:03:30'),(0,0,3253,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825179121','4','T','2025-11-28 05:41:56'),(0,0,3254,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925165202','5','T','2025-11-28 06:43:05'),(0,0,3255,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428466271','2','T','2025-11-28 04:45:28'),(0,0,3256,0,'Y','2025-11-28','17:00:00','17:10:00','Nv','9638602628','2','C','2025-11-28 03:49:24'),(0,0,3256,0,'Y','2025-12-08','18:40:00','18:50:00','','9638602628','2','C','2025-12-08 02:53:18'),(0,0,3256,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9638602628','2','T','2025-11-28 07:04:30'),(0,0,3256,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9638602628','2','T','2025-12-08 06:38:23'),(0,0,3257,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9904958168','2','T','2025-11-28 04:42:03'),(0,0,3258,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9537555151','2','T','2025-11-28 04:43:57'),(0,0,3259,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726784074','3','T','2025-11-28 05:40:38'),(0,0,3260,0,'Y','2025-11-28','18:00:00','18:10:00','Nv','','2','C','2025-11-28 02:29:36'),(0,0,3260,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','8238704700','2','T','2025-11-28 07:30:05'),(0,0,3260,0,'Y','2025-12-09','12:10:00','12:20:00','Fv','8238704700','2','C','2025-12-08 20:19:20'),(0,0,3260,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','8238704700','2','T','2025-12-09 00:29:22'),(0,0,3260,0,'Y','2025-12-19','11:40:00','11:50:00','Fv','8238704700','2','C','2025-12-18 20:32:51'),(0,0,3260,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','8238704700','2','T','2025-12-18 23:29:40'),(0,0,3261,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913072721','5','T','2025-11-28 06:25:22'),(0,0,3264,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600003810','6','T','2025-11-28 06:11:58'),(0,0,3265,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8320774087','2','T','2025-11-28 05:51:44'),(0,0,3266,0,'Y','2025-11-28','17:50:00','18:00:00','Rnv','','2','C','2025-11-28 03:28:46'),(0,0,3266,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9409058385','2','T','2025-11-28 05:48:40'),(0,0,3267,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9409644996','2','T','2025-11-28 06:04:13'),(0,0,3267,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9409644996','2','T','2025-12-04 06:18:22'),(0,0,3267,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9409644996','2','T','2025-12-19 07:19:06'),(0,0,3268,0,'Y','2025-11-28','18:10:00','18:20:00','Fv','9427725985','2','C','2025-11-28 03:37:26'),(0,0,3268,0,'Y','2025-12-15','16:50:00','17:00:00','','9427725985','2','C','2025-12-15 01:58:35'),(0,0,3268,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9427725985','2','T','2025-11-28 06:00:04'),(0,0,3268,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9427725985','2','T','2025-12-15 04:59:38'),(0,0,3269,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8320202532','5','T','2025-11-28 06:24:30'),(0,0,3271,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9408187886','3','T','2025-11-28 05:47:34'),(0,0,3272,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426421564','3','T','2025-11-28 05:46:45'),(0,0,3273,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9265746177','2','T','2025-12-05 06:27:57'),(0,0,3273,0,'Y','2025-11-28','17:30:00','17:40:00','Nv','','2','C','2025-11-28 02:29:01'),(0,0,3273,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9265746177','2','T','2025-11-28 06:57:27'),(0,0,3273,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9265746177','2','T','2025-12-05 06:13:52'),(0,0,3274,0,'Y','2025-11-28','18:30:00','18:40:00','Nv','','2','R','2025-11-28 05:15:09'),(0,0,3274,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','7069767565','2','T','2025-12-19 07:33:37'),(0,0,3275,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714730001','5','T','2025-11-28 06:12:30'),(0,0,3276,0,'Y','2026-02-26','08:00:00','08:30:00','Followup','9913543546','4','T','2025-11-28 06:22:52'),(0,0,3277,0,'Y','2025-11-28','18:00:00','18:10:00','','8758030003','4','C','2025-11-28 04:00:11'),(0,0,3277,0,'Y','2026-02-26','08:00:00','08:30:00','Followup','8758030003','4','T','2025-11-28 06:35:46'),(0,0,3278,0,'Y','2026-02-26','08:00:00','08:30:00','Followup','9033106273','2','T','2025-11-28 07:51:56'),(0,0,3280,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9090197971','6','T','2025-11-28 06:57:53'),(0,0,3280,0,'Y','2025-12-18','16:10:00','16:20:00','','9090197971','2','B','2025-12-18 01:49:39'),(0,0,3281,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9090197971','6','T','2025-11-28 06:58:19'),(0,0,3282,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9265592092','4','T','2025-11-28 06:45:04'),(0,0,3283,0,'Y','2025-11-28','18:40:00','18:50:00','','9601679576','4','C','2025-11-28 05:48:37'),(0,0,3283,0,'Y','2025-12-05','08:00:00','08:30:00','Followup','9601679576','4','T','2025-11-28 06:48:35'),(0,0,3284,0,'Y','2025-12-03','08:00:00','08:30:00','Followup','9825210499','2','T','2025-11-28 07:54:54'),(0,0,3284,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9825210499','2','T','2025-12-09 22:48:12'),(0,0,3285,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9408793601','2','T','2025-11-28 07:15:26'),(0,0,3285,0,'Y','2025-11-28','19:00:00','19:10:00','Nv','','2','C','2025-11-28 06:04:15'),(0,0,3285,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9408793601','2','T','2025-11-29 00:35:54'),(0,0,3286,0,'Y','2025-11-28','19:30:00','19:40:00','','9428295070','4','C','2025-11-28 04:04:49'),(0,0,3286,0,'Y','2026-02-26','08:00:00','08:30:00','Followup','9428295070','4','T','2025-11-28 07:31:38'),(0,0,3288,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9375535566','5','T','2025-11-29 00:42:35'),(0,0,3290,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714523479','5','T','2025-11-29 01:21:11'),(0,0,3291,0,'Y','2025-11-29','11:40:00','11:50:00','','9313012479','4','C','2025-11-28 20:51:14'),(0,0,3291,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9313012479','4','T','2025-11-28 23:07:04'),(0,0,3292,0,'Y','2025-11-29','10:30:00','10:40:00','Nv','9898490981','2','C','2025-11-28 20:17:56'),(0,0,3292,0,'Y','2025-12-17','11:10:00','11:20:00','FV','9898490981','2','C','2025-12-16 20:24:52'),(0,0,3292,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9898490981','2','T','2025-11-29 01:16:08'),(0,0,3292,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','9898490981','2','T','2025-12-16 23:01:33'),(0,0,3293,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925993326','5','T','2025-11-29 00:31:49'),(0,0,3294,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925993326','5','T','2025-11-29 00:37:45'),(0,0,3295,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998488863','3','T','2025-11-28 22:34:02'),(0,0,3296,0,'Y','2025-11-29','11:00:00','11:10:00','Nv','7622985166','2','C','2025-11-28 20:19:08'),(0,0,3296,0,'Y','2025-12-18','10:40:00','10:50:00','Fv','7622985166','2','C','2025-12-17 20:25:50'),(0,0,3296,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','7622985166','2','T','2025-11-29 01:35:14'),(0,0,3296,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','7622985166','2','T','2025-12-17 22:29:03'),(0,0,3297,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9428835099','2','T','2025-11-29 01:43:41'),(0,0,3297,0,'Y','2025-12-10','18:10:00','18:20:00','','9428835099','2','C','2025-12-10 02:38:06'),(0,0,3297,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9428835099','2','T','2025-12-10 05:33:24'),(0,0,3298,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9879242413','2','T','2025-11-29 02:19:40'),(0,0,3299,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9228627441','2','T','2025-11-29 00:16:26'),(0,0,3300,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9313012479','4','T','2025-11-28 23:29:48'),(0,0,3301,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898154007','4','T','2025-11-28 23:30:16'),(0,0,3301,0,'Y','2025-11-29','11:30:00','11:40:00','','9898154007','4','C','2025-11-28 20:55:23'),(0,0,3302,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9924126430','5','T','2025-11-28 23:28:57'),(0,0,3303,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824160360','5','T','2025-11-29 00:43:44'),(0,0,3304,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9712175444','2','T','2025-11-29 00:19:27'),(0,0,3305,0,'Y','2025-11-29','11:30:00','11:40:00','Nv','9586664999','2','C','2025-11-28 20:20:15'),(0,0,3305,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9586664999','2','T','2025-11-29 01:58:01'),(0,0,3306,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9898223330','4','T','2025-11-28 23:43:00'),(0,0,3307,0,'Y','2025-11-29','12:10:00','12:20:00','','9227973107','4','C','2025-11-28 20:57:40'),(0,0,3307,0,'Y','2026-02-27','08:00:00','08:30:00','Followup','9227973107','4','T','2025-11-28 23:48:57'),(0,0,3308,0,'Y','2026-02-27','08:00:00','08:30:00','Followup','9898004724','5','T','2025-11-29 01:16:53'),(0,0,3309,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','8780287430','5','T','2025-11-29 00:42:18'),(0,0,3310,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9737646000','5','T','2025-11-28 23:56:43'),(0,0,3311,0,'Y','2025-11-29','12:00:00','12:10:00','Nv','9725602221','2','C','2025-11-28 20:23:33'),(0,0,3311,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9725602221','2','T','2025-11-29 02:02:21'),(0,0,3311,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','9725602221','2','T','2025-12-17 22:38:40'),(0,0,3312,0,'Y','2025-11-29','11:50:00','12:00:00','','6351138586','4','C','2025-11-28 20:56:15'),(0,0,3312,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','6351138586','4','T','2025-11-28 23:35:35'),(0,0,3313,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725925930','5','T','2025-11-28 23:50:25'),(0,0,3314,0,'Y','2025-11-29','11:50:00','12:00:00','Fv','9714034912','2','C','2025-11-28 20:31:45'),(0,0,3314,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9714034912','2','T','2025-12-22 00:06:06'),(0,0,3314,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9714034912','2','T','2025-11-28 23:55:03'),(0,0,3315,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9409018604','5','T','2025-11-28 23:40:56'),(0,0,3316,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8238384768','6','T','2025-11-28 23:30:24'),(0,0,3317,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7434821679','4','T','2025-12-02 05:55:27'),(0,0,3317,0,'Y','2025-11-29','12:00:00','12:10:00','','7434821679','4','R','2025-11-28 20:57:06'),(0,0,3317,0,'Y','2025-12-23','10:20:00','10:30:00','Fv','7434821679','2','B','2025-12-22 20:17:49'),(0,0,3318,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979748887','6','T','2025-11-28 23:37:31'),(0,0,3319,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9769998266','5','T','2025-11-29 00:21:09'),(0,0,3320,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9067730350','2','T','2025-11-29 01:11:28'),(0,0,3321,0,'Y','2025-11-29','12:10:00','12:20:00','Fv','9725414885','2','C','2025-11-28 20:24:00'),(0,0,3321,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9725414885','2','T','2025-11-29 00:13:01'),(0,0,3322,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9979727236','5','T','2025-11-29 00:20:45'),(0,0,3322,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9979727236','5','T','2025-11-29 00:48:31'),(0,0,3323,0,'Y','2026-02-27','08:00:00','08:30:00','Followup','9737234461','4','T','2025-11-29 00:41:42'),(0,0,3324,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9737234461','4','T','2025-12-08 07:51:17'),(0,0,3324,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9737234461','4','T','2025-11-29 00:39:30'),(0,0,3325,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898914949','2','T','2025-12-15 07:45:42'),(0,0,3325,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9898914949','2','T','2025-11-29 01:28:31'),(0,0,3325,0,'Y','2025-12-09','10:10:00','10:20:00','Fv','9898914949','2','C','2025-12-08 20:11:49'),(0,0,3325,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9898914949','2','T','2025-12-08 22:24:14'),(0,0,3326,0,'Y','2025-11-29','10:40:00','10:50:00','Fv','9898627739','2','C','2025-11-28 20:18:33'),(0,0,3326,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9898627739','2','T','2025-11-29 01:39:52'),(0,0,3327,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','8140300200','2','T','2025-11-29 01:51:03'),(0,0,3328,0,'Y','2025-11-29','13:00:00','13:10:00','Nv','9909796306','2','C','2025-11-28 21:34:10'),(0,0,3328,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9909796306','2','T','2025-11-29 02:21:51'),(0,0,3328,0,'Y','2025-12-16','12:50:00','13:00:00','Fv','9909796306','2','C','2025-12-15 20:12:14'),(0,0,3328,0,'Y','2025-12-18','12:50:00','13:00:00','Fv','9909796306','2','B','2025-12-17 20:33:10'),(0,0,3328,0,'Y','2026-01-27','08:00:00','08:30:00','Followup','9909796306','2','T','2025-12-16 00:42:25'),(0,0,3329,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9228061190','3','T','2025-11-29 05:56:56'),(0,0,3330,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925411990','2','T','2025-11-29 00:46:43'),(0,0,3330,0,'Y','2025-11-29','12:30:00','12:40:00','Nv','9925411990','2','C','2025-11-28 20:24:36'),(0,0,3330,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9925411990','2','T','2025-12-03 00:27:22'),(0,0,3331,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9033008900','4','T','2025-12-09 23:03:02'),(0,0,3332,0,'Y','2025-11-29','12:50:00','13:00:00','Fv','9824280179','2','C','2025-11-28 20:25:32'),(0,0,3332,0,'Y','2026-01-28','08:00:00','08:30:00','Followup','9824280179','2','T','2025-11-29 01:05:17'),(0,0,3333,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9898211633','4','T','2025-11-29 00:27:24'),(0,0,3334,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','7990600027','2','T','2025-11-29 02:33:33'),(0,0,3337,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8619790606','3','T','2025-11-29 05:48:48'),(0,0,3338,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428467035','6','T','2025-11-29 05:50:03'),(0,0,3339,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879204329','3','T','2025-11-29 06:18:53'),(0,0,3340,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8401084588','6','T','2025-11-29 06:27:29'),(0,0,3341,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429043119','3','T','2025-11-29 06:45:26'),(0,0,3342,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8980216035','3','T','2025-12-01 05:49:41'),(0,0,3343,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904031270','4','T','2025-12-10 00:02:12'),(0,0,3343,0,'Y','2025-12-10','11:30:00','11:40:00','Fc','9904031270','4','C','2025-12-09 21:14:24'),(0,0,3345,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','8076106942','5','T','2025-12-18 05:55:19'),(0,0,3346,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8460503614','4','T','2025-12-04 07:06:21'),(0,0,3346,0,'Y','2025-12-04','19:20:00','19:30:00','','8460503614','4','C','2025-12-04 05:42:06'),(0,0,3347,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9081247978','3','T','2025-12-07 22:51:44'),(0,0,3349,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9328569527','3','T','2025-12-09 06:00:18'),(0,0,3350,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824646801','3','T','2025-12-15 04:34:11'),(0,0,3351,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898253368','4','T','2025-11-30 22:47:56'),(0,0,3351,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9898253368','4','T','2025-12-01 05:56:58'),(0,0,3351,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9898253368','4','T','2025-12-20 00:07:20'),(0,0,3352,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600167555','6','T','2025-11-30 23:18:31'),(0,0,3353,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7572857852','6','T','2025-11-30 23:18:45'),(0,0,3354,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9316757402','4','T','2025-11-30 22:48:05'),(0,0,3355,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879011953','4','T','2025-11-30 22:48:18'),(0,0,3355,0,'Y','2025-12-01','18:20:00','18:30:00','','9879011953','4','C','2025-12-01 04:41:46'),(0,0,3355,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','9879011953','4','T','2025-12-01 05:45:03'),(0,0,3356,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824992726','4','T','2025-11-30 23:49:37'),(0,0,3357,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9825547515','2','T','2025-11-30 22:53:42'),(0,0,3358,0,'Y','2025-12-01','10:10:00','10:20:00','Fv','9824906821','2','C','2025-11-30 20:17:35'),(0,0,3358,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','9824906821','2','T','2025-11-30 22:11:58'),(0,0,3359,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','8238057534','4','T','2025-11-30 22:53:03'),(0,0,3360,0,'Y','2025-12-01','10:30:00','10:40:00','Nv','9898182904','2','C','2025-11-30 20:18:47'),(0,0,3360,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9898182904','2','T','2025-12-01 01:18:45'),(0,0,3362,0,'Y','2025-12-01','11:00:00','11:10:00','Nv','9427551295','2','C','2025-11-30 20:19:45'),(0,0,3362,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9427551295','2','T','2025-12-01 01:34:27'),(0,0,3363,0,'Y','2025-12-01','12:40:00','12:50:00','Rnv','9428347386','2','C','2025-11-30 22:02:22'),(0,0,3363,0,'Y','2025-12-18','10:10:00','10:20:00','Fv','9428347386','2','C','2025-12-17 20:25:05'),(0,0,3363,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9428347386','2','T','2025-12-17 22:15:06'),(0,0,3363,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9428347386','2','T','2025-12-01 01:53:29'),(0,0,3364,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9825631806','2','T','2025-11-30 23:18:43'),(0,0,3364,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9825631806','2','T','2025-12-05 05:22:05'),(0,0,3365,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9081668387','3','T','2025-11-30 22:35:04'),(0,0,3366,0,'Y','2026-03-11','08:00:00','08:30:00','Followup','9054994924','4','T','2025-12-01 06:27:44'),(0,0,3367,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9426128938','2','T','2025-12-01 01:59:31'),(0,0,3367,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9426128938','2','T','2025-12-09 07:54:32'),(0,0,3368,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','8140068300','5','T','2025-11-30 23:02:07'),(0,0,3369,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9879910672','2','T','2025-12-01 02:00:13'),(0,0,3369,0,'Y','2025-12-12','10:40:00','10:50:00','Fv','9879910672','2','C','2025-12-11 20:12:39'),(0,0,3369,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9879910672','2','T','2025-12-11 23:02:30'),(0,0,3370,0,'Y','2025-12-01','11:30:00','11:40:00','','9726714044','4','C','2025-11-30 21:06:48'),(0,0,3370,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9726714044','4','T','2025-11-30 23:46:53'),(0,0,3371,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9909989063','2','T','2025-12-01 00:09:37'),(0,0,3372,0,'Y','2025-12-01','11:20:00','11:30:00','','9726714044','4','C','2025-11-30 21:05:35'),(0,0,3372,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','9726714044','4','T','2025-11-30 23:23:41'),(0,0,3373,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','8000804787','4','T','2025-11-30 23:48:45'),(0,0,3374,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824097982','7','T','2025-12-01 06:43:54'),(0,0,3375,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','6353267033','4','T','2025-12-01 00:33:23'),(0,0,3376,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','9825479009','2','T','2025-12-01 00:14:00'),(0,0,3377,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7984186536','4','T','2025-12-01 00:31:29'),(0,0,3378,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7567655777','5','T','2025-11-30 23:21:35'),(0,0,3379,0,'Y','2025-12-01','11:50:00','12:00:00','','7069111791','4','C','2025-11-30 21:08:37'),(0,0,3379,0,'Y','2026-02-23','08:00:00','08:30:00','Followup','7069111791','4','T','2025-12-01 06:49:27'),(0,0,3380,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160950913','4','T','2025-12-01 07:25:16'),(0,0,3380,0,'Y','2025-12-01','12:20:00','12:30:00','','8160950913','4','C','2025-11-30 21:10:23'),(0,0,3381,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825381286','3','T','2025-12-01 00:05:58'),(0,0,3382,0,'Y','2025-12-01','11:00:00','11:10:00','','7862929587','4','C','2025-11-30 21:04:18'),(0,0,3382,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','7862929587','4','T','2025-12-01 00:44:47'),(0,0,3384,0,'Y','2028-05-19','08:00:00','08:30:00','Followup','9712818455','4','T','2025-12-01 01:02:26'),(0,0,3385,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','8140729295','4','T','2025-12-01 01:12:27'),(0,0,3386,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8000206063','4','T','2025-12-01 01:09:19'),(0,0,3387,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9426366587','2','T','2025-12-01 00:30:41'),(0,0,3388,0,'Y','2025-12-01','12:00:00','12:10:00','Nv','9904119022','2','C','2025-11-30 21:35:28'),(0,0,3388,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9904119022','2','T','2025-12-01 02:07:21'),(0,0,3388,0,'Y','2025-12-12','10:10:00','10:20:00','Fv','9904119022','2','C','2025-12-11 20:11:53'),(0,0,3388,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9904119022','2','T','2025-12-11 22:18:25'),(0,0,3389,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7624011247','6','T','2025-12-01 00:18:25'),(0,0,3390,0,'Y','2025-12-01','12:40:00','12:50:00','','9825756005','4','C','2025-11-30 21:10:58'),(0,0,3390,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9825756005','4','T','2025-12-01 00:54:40'),(0,0,3390,0,'Y','2025-12-06','12:10:00','12:20:00','FC','9825756005','4','C','2025-12-05 21:54:08'),(0,0,3390,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9825756005','4','T','2025-12-06 00:03:06'),(0,0,3391,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160950913','2','T','2025-12-01 01:02:20'),(0,0,3391,0,'Y','2025-12-22','10:20:00','10:30:00','Fv','8160950913','2','C','2025-12-21 20:14:13'),(0,0,3391,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','8160950913','2','T','2025-12-21 22:29:13'),(0,0,3392,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9879643346','2','T','2025-12-01 01:25:22'),(0,0,3392,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9879643346','2','T','2025-12-15 00:28:17'),(0,0,3393,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7016794300','5','T','2025-12-01 00:48:40'),(0,0,3394,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9724379377','3','T','2025-12-01 05:49:12'),(0,0,3395,0,'Y','2025-12-01','12:30:00','12:40:00','Nv','8160606603','2','C','2025-11-30 21:35:55'),(0,0,3395,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','8160606603','2','T','2025-12-01 02:19:28'),(0,0,3395,0,'Y','2025-12-11','11:20:00','11:30:00','Fv','8160606603','2','C','2025-12-10 20:14:38'),(0,0,3395,0,'Y','2026-01-22','08:00:00','08:30:00','Followup','8160606603','2','T','2025-12-10 23:26:33'),(0,0,3396,0,'Y','2026-03-11','08:00:00','08:30:00','Followup','9909974839','2','T','2025-12-01 01:33:30'),(0,0,3397,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712911011','2','T','2025-12-01 01:47:09'),(0,0,3397,0,'Y','2025-12-01','11:30:00','11:40:00','Nv','9712911011','2','C','2025-11-30 20:20:33'),(0,0,3397,0,'Y','2025-12-10','11:10:00','11:20:00','Fv','9712911011','2','C','2025-12-09 20:16:00'),(0,0,3397,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9712911011','2','T','2025-12-01 05:55:49'),(0,0,3397,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9712911011','2','T','2025-12-09 23:06:34'),(0,0,3398,0,'Y','2025-12-10','19:10:00','19:20:00','FC','9924912200','4','B','2025-12-10 06:19:13'),(0,0,3399,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8238737891','3','T','2025-12-01 05:50:38'),(0,0,3401,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913405252','3','T','2025-12-07 22:19:09'),(0,0,3402,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9574159437','4','T','2025-12-01 07:25:04'),(0,0,3405,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','8690335169','2','T','2025-12-01 06:56:40'),(0,0,3406,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9724889957','2','T','2025-12-01 05:05:26'),(0,0,3407,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','9328581717','4','T','2025-12-01 06:05:51'),(0,0,3407,0,'Y','2025-12-22','18:30:00','18:40:00','Fc','9328581717','4','C','2025-12-22 04:52:13'),(0,0,3407,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9328581717','4','T','2025-12-22 06:27:10'),(0,0,3408,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978763514','2','T','2025-12-01 05:21:27'),(0,0,3409,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9099293976','2','T','2025-12-01 06:59:52'),(0,0,3409,0,'Y','2025-12-11','17:40:00','17:50:00','Fv','9099293976','2','C','2025-12-11 03:06:21'),(0,0,3409,0,'Y','2026-01-22','08:00:00','08:30:00','Followup','9099293976','2','T','2025-12-11 05:33:32'),(0,0,3410,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925809200','5','T','2025-12-01 06:25:08'),(0,0,3411,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160036450','3','T','2025-12-04 05:38:30'),(0,0,3412,0,'Y','2025-12-01','17:30:00','17:40:00','Nv','8758751398','2','C','2025-12-01 03:39:10'),(0,0,3412,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','8758751398','2','T','2025-12-01 07:15:43'),(0,0,3413,0,'Y','2025-12-01','18:10:00','18:20:00','','','4','C','2025-12-01 04:41:37'),(0,0,3413,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9879776777','4','T','2025-12-01 07:56:26'),(0,0,3414,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8401602357','7','T','2025-12-01 06:44:12'),(0,0,3415,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8401602357','7','T','2025-12-01 06:44:26'),(0,0,3416,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9427306555','4','T','2025-12-01 06:59:57'),(0,0,3416,0,'Y','2025-12-09','18:50:00','19:00:00','','9427306555','4','C','2025-12-09 05:29:12'),(0,0,3416,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9427306555','4','T','2025-12-09 07:04:24'),(0,0,3417,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033766220','5','T','2025-12-01 06:25:30'),(0,0,3418,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','9313026511','5','T','2025-12-01 06:04:35'),(0,0,3419,0,'Y','2025-12-01','18:50:00','19:00:00','Fv','9265692375','2','C','2025-12-01 03:43:02'),(0,0,3419,0,'Y','2025-12-17','19:40:00','19:50:00','','9265692375','2','C','2025-12-17 01:47:26'),(0,0,3419,0,'Y','2026-01-06','08:00:00','08:30:00','Followup','9265692375','2','T','2025-12-17 05:17:38'),(0,0,3419,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','9265692375','2','T','2025-12-01 06:40:41'),(0,0,3420,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638619829','2','T','2025-12-01 06:17:24'),(0,0,3420,0,'Y','2025-12-01','18:00:00','18:10:00','Nv','9638619829','2','C','2025-12-01 03:41:57'),(0,0,3420,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9638619829','2','T','2025-12-03 06:10:47'),(0,0,3420,0,'Y','2026-01-29','08:00:00','08:30:00','Followup','9638619829','2','T','2025-12-17 23:49:36'),(0,0,3421,0,'Y','2025-12-01','18:40:00','18:50:00','','8160833096','4','C','2025-12-01 04:42:46'),(0,0,3421,0,'Y','2025-12-08','18:30:00','18:40:00','','8160833096','4','C','2025-12-08 04:37:49'),(0,0,3421,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','8160833096','4','T','2025-12-01 07:43:09'),(0,0,3421,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','8160833096','4','T','2025-12-08 06:58:41'),(0,0,3422,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9898499979','2','T','2025-12-01 06:25:35'),(0,0,3423,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9328126099','5','T','2025-12-01 06:24:27'),(0,0,3424,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600903011','6','T','2025-12-01 06:24:51'),(0,0,3425,0,'Y','2025-12-01','18:50:00','19:00:00','','9081964281','4','C','2025-12-01 04:43:26'),(0,0,3425,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9081964281','4','T','2025-12-01 07:46:32'),(0,0,3428,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978474200','5','T','2025-12-01 06:22:24'),(0,0,3428,0,'Y','2026-01-31','08:00:00','08:30:00','Followup','9978474200','5','T','2025-12-01 23:35:07'),(0,0,3429,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','9879776777','4','T','2025-12-01 06:22:56'),(0,0,3430,0,'Y','2025-12-01','19:00:00','19:10:00','','','4','C','2025-12-01 04:43:44'),(0,0,3430,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9316758876','4','T','2025-12-01 07:05:24'),(0,0,3431,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','8140997645','5','T','2025-12-01 06:42:08'),(0,0,3432,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9079352454','2','T','2025-12-01 07:34:44'),(0,0,3433,0,'Y','2025-12-01','19:20:00','19:30:00','','8160638519','4','C','2025-12-01 06:44:57'),(0,0,3433,0,'Y','2025-12-06','08:00:00','08:30:00','Followup','8160638519','4','T','2025-12-01 07:50:06'),(0,0,3434,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898393093','5','T','2025-12-01 06:59:59'),(0,0,3435,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429550637','5','T','2025-12-01 07:24:50'),(0,0,3436,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9925151964','2','T','2025-12-02 00:30:25'),(0,0,3436,0,'Y','2025-12-12','10:50:00','11:00:00','Fv','9925151964','2','C','2025-12-11 20:12:50'),(0,0,3436,0,'Y','2026-01-23','08:00:00','08:30:00','Followup','9925151964','2','T','2025-12-11 22:28:12'),(0,0,3437,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909830513','2','T','2025-12-01 23:04:54'),(0,0,3437,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9909830513','2','T','2025-12-02 04:56:07'),(0,0,3437,0,'Y','2025-12-08','17:10:00','17:20:00','','9909830513','2','B','2025-12-08 03:48:43'),(0,0,3439,0,'Y','2026-01-31','08:00:00','08:30:00','Followup','9978326474','2','T','2025-12-01 22:57:33'),(0,0,3440,0,'Y','2026-01-09','08:00:00','08:30:00','Followup','9924912200','4','T','2025-12-10 07:44:38'),(0,0,3441,0,'Y','2025-12-02','10:10:00','10:20:00','FV','','2','C','2025-12-01 20:20:37'),(0,0,3441,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','9428776830','2','T','2025-12-01 22:13:47'),(0,0,3442,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8490049542','2','T','2025-12-11 05:23:59'),(0,0,3442,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','8490049542','2','T','2025-12-01 23:01:54'),(0,0,3442,0,'Y','2025-12-11','17:20:00','17:30:00','Fv','8490049542','2','C','2025-12-11 03:05:38'),(0,0,3442,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','8490049542','2','T','2025-12-11 23:27:26'),(0,0,3443,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714161412','3','T','2025-12-01 22:15:40'),(0,0,3445,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825465673','3','T','2025-12-02 06:25:19'),(0,0,3446,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712210614','6','T','2025-12-01 23:44:55'),(0,0,3446,0,'Y','2025-12-02','10:30:00','10:40:00','NV','9725897835','2','C','2025-12-01 20:21:26'),(0,0,3446,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9712210614','2','T','2025-12-02 00:51:59'),(0,0,3446,0,'Y','2025-12-17','10:20:00','10:30:00','FV','9712210614','2','C','2025-12-16 20:21:46'),(0,0,3446,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9712210614','2','T','2025-12-16 22:30:37'),(0,0,3447,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714161412','3','T','2025-12-05 05:49:23'),(0,0,3448,0,'Y','2025-12-02','10:40:00','10:50:00','FV','9723000142','2','C','2025-12-01 20:22:44'),(0,0,3448,0,'Y','2026-01-31','08:00:00','08:30:00','Followup','9723000142','2','T','2025-12-01 22:50:52'),(0,0,3449,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9228061190','4','T','2025-12-02 05:39:36'),(0,0,3449,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9228061190','4','T','2025-12-01 22:43:12'),(0,0,3450,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','7621099964','4','T','2025-12-01 22:49:15'),(0,0,3451,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998272900','3','T','2025-12-02 06:54:35'),(0,0,3452,0,'Y','2025-12-02','11:00:00','11:10:00','NC','','4','C','2025-12-01 21:07:51'),(0,0,3452,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9426996840','4','T','2025-12-01 23:01:50'),(0,0,3453,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9924037085','4','T','2025-12-01 23:25:26'),(0,0,3454,0,'Y','2025-12-02','11:40:00','11:50:00','FV','9429075525','2','C','2025-12-01 20:24:35'),(0,0,3454,0,'Y','2026-01-31','08:00:00','08:30:00','Followup','9429075525','2','T','2025-12-01 23:25:40'),(0,0,3455,0,'Y','2025-12-02','11:00:00','11:10:00','NV','9924503312','2','C','2025-12-01 20:23:25'),(0,0,3455,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9924503312','2','T','2025-12-02 01:21:09'),(0,0,3455,0,'Y','2025-12-15','12:50:00','13:00:00','Fv','9924503312','2','C','2025-12-14 20:17:06'),(0,0,3455,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9924503312','2','T','2025-12-15 00:24:15'),(0,0,3456,0,'Y','2025-12-02','12:40:00','12:50:00','FV','9879149194','2','C','2025-12-01 20:27:25'),(0,0,3456,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','9879149194','2','T','2025-12-02 00:12:00'),(0,0,3457,0,'Y','2025-12-02','11:30:00','11:40:00','Nv','','2','C','2025-12-01 21:35:28'),(0,0,3457,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9773232185','2','T','2025-12-02 01:34:28'),(0,0,3457,0,'Y','2025-12-12','11:10:00','11:20:00','Fv','9773232185','2','C','2025-12-11 20:13:31'),(0,0,3457,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9773232185','2','T','2025-12-11 23:05:36'),(0,0,3458,0,'Y','2025-12-02','12:00:00','12:10:00','Nv','7434821679','2','C','2025-12-01 20:26:10'),(0,0,3458,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','7434821679','2','T','2025-12-02 01:34:46'),(0,0,3459,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9601600265','6','T','2025-12-01 23:13:38'),(0,0,3460,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9974865703','4','T','2025-12-01 23:30:00'),(0,0,3461,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','7600841945','2','T','2025-12-02 00:15:17'),(0,0,3462,0,'Y','2025-12-02','11:20:00','11:30:00','FV','9978877996','2','C','2025-12-01 20:24:08'),(0,0,3462,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9978877996','2','T','2025-12-01 23:40:06'),(0,0,3463,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7990447787','2','T','2025-12-02 00:28:21'),(0,0,3463,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','7990447787','2','T','2025-12-02 01:48:08'),(0,0,3463,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','7990447787','2','T','2025-12-14 22:34:50'),(0,0,3464,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712976195','5','T','2025-12-01 23:16:44'),(0,0,3465,0,'Y','2025-12-02','11:20:00','11:30:00','','','4','C','2025-12-01 21:50:48'),(0,0,3465,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','7405312073','4','T','2025-12-01 23:37:16'),(0,0,3466,0,'Y','2025-12-02','11:40:00','11:50:00','','9427564348','4','C','2025-12-01 22:12:06'),(0,0,3466,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9427564348','4','T','2025-12-01 23:45:56'),(0,0,3467,0,'Y','2025-12-02','11:50:00','12:00:00','','9099089004','4','C','2025-12-01 22:44:43'),(0,0,3467,0,'Y','2026-01-31','08:00:00','08:30:00','Followup','9099089004','4','T','2025-12-01 23:58:35'),(0,0,3468,0,'Y','2025-12-02','12:10:00','12:20:00','FV','9427664072','2','C','2025-12-01 20:26:42'),(0,0,3468,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9427664072','2','T','2025-12-01 23:55:56'),(0,0,3469,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9727005099','4','T','2025-12-02 00:08:06'),(0,0,3469,0,'Y','2025-12-02','11:30:00','11:40:00','','','4','C','2025-12-01 21:34:30'),(0,0,3470,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9427252873','2','T','2025-12-02 00:59:06'),(0,0,3471,0,'Y','2025-12-02','12:00:00','12:10:00','Nc','9082024014','4','C','2025-12-01 23:02:20'),(0,0,3471,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9082024014','4','T','2025-12-02 00:25:05'),(0,0,3472,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9723399345','2','T','2025-12-02 01:42:42'),(0,0,3472,0,'Y','2026-01-23','08:00:00','08:30:00','Followup','9723399345','2','T','2025-12-12 00:00:52'),(0,0,3473,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8107260313','3','T','2025-12-02 06:23:47'),(0,0,3474,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9724246466','4','T','2025-12-02 07:30:16'),(0,0,3475,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9700773040','4','T','2025-12-02 00:32:17'),(0,0,3476,0,'Y','2025-12-02','12:30:00','12:40:00','NV','8866474008','2','C','2025-12-01 23:18:53'),(0,0,3476,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','8866474008','2','T','2025-12-02 01:49:57'),(0,0,3477,0,'Y','2025-12-11','11:40:00','11:50:00','FC','9825051273','4','C','2025-12-10 21:49:29'),(0,0,3477,0,'Y','2025-12-15','11:30:00','11:40:00','','9825051273','4','C','2025-12-14 21:42:56'),(0,0,3477,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9825051273','4','T','2025-12-15 00:14:15'),(0,0,3477,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','9825051273','4','T','2025-12-02 00:53:33'),(0,0,3477,0,'Y','2026-03-21','08:00:00','08:30:00','Followup','9825051273','4','T','2025-12-10 23:16:54'),(0,0,3482,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9227633363','3','T','2025-12-02 06:55:08'),(0,0,3483,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428284957','3','T','2025-12-02 06:09:30'),(0,0,3484,0,'Y','2025-12-02','17:10:00','17:20:00','FV','9904322531','2','C','2025-12-02 03:48:51'),(0,0,3484,0,'Y','2026-04-01','08:00:00','08:30:00','Followup','9904322531','2','T','2025-12-02 05:26:41'),(0,0,3485,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9824897509','4','T','2025-12-02 05:44:31'),(0,0,3486,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','8200719471','4','T','2025-12-02 05:51:57'),(0,0,3487,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879835892','5','T','2025-12-02 06:05:01'),(0,0,3487,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9879835892','5','T','2025-12-02 06:07:50'),(0,0,3488,0,'Y','2025-12-02','18:50:00','19:00:00','FV','','2','C','2025-12-02 03:52:47'),(0,0,3488,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','8511027128','2','T','2025-12-02 05:53:17'),(0,0,3489,0,'Y','2025-12-02','18:10:00','18:20:00','FC','7567827551','4','C','2025-12-02 04:50:19'),(0,0,3489,0,'Y','2026-06-01','08:00:00','08:30:00','Followup','7567827551','4','T','2025-12-02 06:02:26'),(0,0,3490,0,'Y','2025-12-02','17:30:00','17:40:00','NV','9265065355','2','R','2025-12-02 03:49:41'),(0,0,3491,0,'Y','2025-12-02','18:20:00','18:30:00','FC','8128382500','4','C','2025-12-02 04:50:48'),(0,0,3491,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','8128382500','4','T','2025-12-02 06:17:34'),(0,0,3492,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428325670','5','T','2025-12-02 05:50:39'),(0,0,3492,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9428325670','5','T','2025-12-02 06:04:15'),(0,0,3493,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9727785068','4','T','2025-12-02 07:22:41'),(0,0,3494,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9265590617','5','T','2025-12-02 05:58:47'),(0,0,3494,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9265590617','5','T','2025-12-03 00:31:46'),(0,0,3495,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9925028102','4','T','2025-12-02 06:23:23'),(0,0,3496,0,'Y','2025-12-02','19:10:00','19:20:00','FC','9824452335','4','C','2025-12-02 04:54:40'),(0,0,3496,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9824452335','4','T','2025-12-02 06:35:52'),(0,0,3497,0,'Y','2025-12-02','19:00:00','19:10:00','FC','9824452335','4','C','2025-12-02 04:54:15'),(0,0,3497,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9824452335','4','T','2025-12-02 06:30:48'),(0,0,3498,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9426786153','4','T','2025-12-02 06:58:04'),(0,0,3499,0,'Y','2025-12-02','18:40:00','18:50:00','Nc','7573038092','4','C','2025-12-02 04:51:48'),(0,0,3499,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','7573038092','4','T','2025-12-02 06:50:55'),(0,0,3500,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9033343577','4','T','2025-12-02 07:08:55'),(0,0,3501,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8460675948','4','T','2025-12-02 07:19:51'),(0,0,3501,0,'Y','2025-12-08','11:40:00','11:50:00','','8460675948','4','C','2025-12-07 21:33:46'),(0,0,3501,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','8460675948','4','T','2025-12-08 00:55:12'),(0,0,3502,0,'Y','2026-01-31','08:00:00','08:30:00','Followup','8160169277','5','T','2025-12-02 07:01:43'),(0,0,3503,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9717983010','4','T','2025-12-02 07:29:30'),(0,0,3504,0,'Y','2025-12-02','19:30:00','19:40:00','FC','7990950091','4','C','2025-12-02 06:22:09'),(0,0,3504,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','7990950091','4','T','2025-12-02 07:33:56'),(0,0,3505,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712053000','4','T','2025-12-03 00:17:18'),(0,0,3507,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7085962610','6','T','2025-12-02 22:59:06'),(0,0,3508,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','8530815188','2','T','2025-12-02 22:20:16'),(0,0,3509,0,'Y','2025-12-12','12:10:00','12:20:00','Fv','9725107095','2','C','2025-12-11 20:15:23'),(0,0,3509,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9725107095','2','T','2025-12-02 23:37:57'),(0,0,3509,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9725107095','2','T','2025-12-12 01:18:07'),(0,0,3510,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9328292517','5','T','2025-12-13 01:05:26'),(0,0,3511,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925331811','5','T','2025-12-02 23:32:59'),(0,0,3512,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825976985','5','T','2025-12-02 22:59:15'),(0,0,3513,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662974329','2','T','2025-12-02 22:50:26'),(0,0,3513,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9662974329','2','T','2025-12-03 04:40:23'),(0,0,3515,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','8320963939','2','T','2025-12-03 00:59:38'),(0,0,3516,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712633913','4','T','2025-12-02 23:00:01'),(0,0,3516,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9712633913','4','T','2025-12-03 00:41:43'),(0,0,3517,0,'Y','2025-12-03','11:00:00','11:10:00','','','4','C','2025-12-02 20:53:03'),(0,0,3517,0,'Y','2026-03-13','08:00:00','08:30:00','Followup','7016332070','4','T','2025-12-03 00:24:54'),(0,0,3518,0,'Y','2025-12-03','11:20:00','11:30:00','Fv','9558679496','2','C','2025-12-02 20:24:06'),(0,0,3518,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9724833188','2','T','2025-12-02 23:06:06'),(0,0,3519,0,'Y','2025-12-03','10:10:00','10:20:00','Fv','','2','C','2025-12-02 20:19:42'),(0,0,3519,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','6356200975','2','T','2025-12-02 23:09:26'),(0,0,3520,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8980093791','2','T','2025-12-05 05:23:05'),(0,0,3520,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','8980093791','2','T','2025-12-02 23:34:36'),(0,0,3521,0,'Y','2026-03-03','08:00:00','08:30:00','Followup','9998964838','4','T','2025-12-02 23:24:03'),(0,0,3522,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725063634','5','T','2025-12-02 22:54:16'),(0,0,3523,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6353821009','3','T','2025-12-03 05:58:20'),(0,0,3524,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9374128002','5','T','2025-12-02 22:58:06'),(0,0,3525,0,'Y','2025-12-03','11:10:00','11:20:00','Fv','9428209888','2','C','2025-12-02 20:21:23'),(0,0,3525,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9428209888','2','T','2025-12-02 23:13:49'),(0,0,3526,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200789097','4','T','2025-12-02 23:58:42'),(0,0,3526,0,'Y','2025-12-03','11:20:00','11:30:00','','','4','C','2025-12-02 20:54:13'),(0,0,3526,0,'Y','2025-12-08','18:00:00','18:10:00','FC','8200789097','4','R','2025-12-08 04:36:51'),(0,0,3527,0,'Y','2025-12-03','11:10:00','11:20:00','','','4','C','2025-12-02 20:53:33'),(0,0,3527,0,'Y','2026-03-03','08:00:00','08:30:00','Followup','9904745445','4','T','2025-12-03 00:34:59'),(0,0,3528,0,'Y','2025-12-03','12:20:00','12:30:00','Fv','9429423360','2','C','2025-12-02 20:25:22'),(0,0,3528,0,'Y','2026-03-03','08:00:00','08:30:00','Followup','9429423360','2','T','2025-12-02 23:53:05'),(0,0,3529,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9825880422','5','T','2025-12-02 23:18:30'),(0,0,3530,0,'Y','2025-12-03','12:50:00','13:00:00','Fv','9825224784','2','C','2025-12-02 20:26:13'),(0,0,3530,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9825224784','2','T','2025-12-03 01:12:57'),(0,0,3530,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9825224784','2','T','2025-12-22 07:14:05'),(0,0,3531,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','6352788341','2','T','2025-12-03 00:21:09'),(0,0,3531,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','6352788341','2','T','2025-12-08 02:03:49'),(0,0,3532,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427781188','5','T','2025-12-02 23:32:00'),(0,0,3533,0,'Y','2026-03-03','08:00:00','08:30:00','Followup','9924351717','4','T','2025-12-03 00:16:39'),(0,0,3534,0,'Y','2025-12-12','10:20:00','10:30:00','Fv','9428408351','2','C','2025-12-11 20:12:04'),(0,0,3534,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9428408351','2','T','2025-12-03 00:32:51'),(0,0,3534,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9428408351','2','T','2025-12-11 22:24:59'),(0,0,3535,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8347932327','3','T','2025-12-02 23:41:58'),(0,0,3536,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9825075460','4','T','2025-12-02 23:48:22'),(0,0,3537,0,'Y','2026-03-03','08:00:00','08:30:00','Followup','7778874586','4','T','2025-12-03 00:03:52'),(0,0,3538,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825600770','4','T','2025-12-03 00:30:35'),(0,0,3539,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849338070','3','T','2025-12-03 05:45:09'),(0,0,3540,0,'Y','2025-12-03','12:50:00','13:00:00','','8511136302','4','C','2025-12-02 23:53:27'),(0,0,3540,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','8511136302','4','T','2025-12-03 00:46:40'),(0,0,3541,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638893880','4','T','2025-12-08 06:42:01'),(0,0,3541,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9638893880','4','T','2025-12-03 00:37:34'),(0,0,3542,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','8980041115','2','T','2025-12-03 01:24:43'),(0,0,3542,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','8980041115','2','T','2025-12-08 01:06:17'),(0,0,3543,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898989809','4','T','2025-12-10 07:16:57'),(0,0,3543,0,'Y','2025-12-10','19:30:00','19:40:00','FC','9898989809','4','C','2025-12-10 06:19:35'),(0,0,3545,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426862235','2','T','2025-12-03 04:50:27'),(0,0,3546,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825131379','5','T','2025-12-03 06:49:40'),(0,0,3547,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600005817','2','T','2025-12-03 04:36:29'),(0,0,3547,0,'Y','2025-12-03','16:50:00','17:00:00','Rfv','7600005817','2','C','2025-12-03 02:49:41'),(0,0,3547,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','7600005817','2','T','2025-12-03 05:05:06'),(0,0,3548,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','7622811826','5','T','2025-12-03 06:50:26'),(0,0,3549,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924534647','7','T','2025-12-03 06:23:44'),(0,0,3550,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9265228523','7','T','2025-12-03 06:24:45'),(0,0,3551,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9687450192','7','T','2025-12-03 06:24:59'),(0,0,3552,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9824296035','2','T','2025-12-03 06:56:53'),(0,0,3553,0,'Y','2025-12-03','17:00:00','17:10:00','Nv','9879225749','2','C','2025-12-03 02:51:01'),(0,0,3553,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9879225749','2','T','2025-12-03 07:05:22'),(0,0,3554,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9624047360','7','T','2025-12-03 06:25:14'),(0,0,3555,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6354829456','3','T','2025-12-03 05:50:03'),(0,0,3556,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9998542874','2','T','2025-12-03 07:14:26'),(0,0,3556,0,'Y','2025-12-13','10:20:00','10:30:00','Fv','9998542874','2','C','2025-12-12 20:11:19'),(0,0,3556,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9998542874','2','T','2025-12-12 22:30:55'),(0,0,3557,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','7600054955','2','T','2025-12-03 06:06:39'),(0,0,3558,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925157494','7','T','2025-12-03 06:25:29'),(0,0,3559,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','7878735001','2','T','2025-12-03 06:15:25'),(0,0,3560,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998132731','6','T','2025-12-03 06:02:01'),(0,0,3561,0,'Y','2025-12-03','18:20:00','18:30:00','Ne','7435961868','2','C','2025-12-03 02:53:50'),(0,0,3561,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9537917182','2','T','2025-12-03 07:13:53'),(0,0,3561,0,'Y','2025-12-13','10:50:00','11:00:00','Fv','9537917182','2','C','2025-12-12 20:12:07'),(0,0,3561,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9537917182','2','T','2025-12-12 22:48:06'),(0,0,3561,0,'Y','2025-12-23','11:40:00','11:50:00','Fv','9537917182','2','C','2025-12-22 20:21:21'),(0,0,3561,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9537917182','2','T','2025-12-22 23:42:49'),(0,0,3562,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600000197','4','T','2025-12-03 05:50:09'),(0,0,3562,0,'Y','2025-12-03','18:50:00','19:00:00','FC','7600000197','4','C','2025-12-03 05:11:11'),(0,0,3563,0,'Y','2025-12-03','18:00:00','18:10:00','Nv','9909998013','2','C','2025-12-03 02:53:14'),(0,0,3563,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9909998013','2','T','2025-12-03 07:20:40'),(0,0,3564,0,'Y','2025-12-03','18:00:00','18:10:00','FC','9859300009','4','C','2025-12-03 04:45:14'),(0,0,3564,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9859300009','4','T','2025-12-03 06:03:08'),(0,0,3565,0,'Y','2026-03-03','08:00:00','08:30:00','Followup','8849987578','4','T','2025-12-03 06:08:22'),(0,0,3566,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898776888','5','T','2025-12-03 05:56:40'),(0,0,3567,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9737693666','4','T','2025-12-03 06:12:40'),(0,0,3568,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9428791262','4','T','2025-12-03 06:25:50'),(0,0,3569,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9825077046','2','T','2025-12-03 07:35:58'),(0,0,3570,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428400013','5','T','2025-12-03 06:22:08'),(0,0,3571,0,'Y','2025-12-03','18:40:00','18:50:00','Nc','7405726225','4','C','2025-12-03 05:18:35'),(0,0,3571,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','7405726225','4','T','2025-12-03 06:26:09'),(0,0,3572,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9428400013','5','T','2025-12-03 06:21:35'),(0,0,3573,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8238305590','7','T','2025-12-03 06:25:43'),(0,0,3574,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429270764','2','T','2025-12-03 06:04:05'),(0,0,3574,0,'Y','2025-12-03','18:10:00','18:20:00','NE','','2','C','2025-12-03 05:22:35'),(0,0,3574,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9429270764','2','T','2025-12-03 07:32:38'),(0,0,3575,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913340205','4','T','2025-12-19 06:27:06'),(0,0,3575,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9913340205','4','T','2025-12-03 06:34:26'),(0,0,3576,0,'Y','2026-03-13','08:00:00','08:30:00','Followup','8320488489','2','T','2025-12-03 07:30:30'),(0,0,3577,0,'Y','2025-12-03','19:10:00','19:20:00','','9624434342','4','R','2025-12-03 05:17:35'),(0,0,3578,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427214186','4','T','2025-12-04 06:42:13'),(0,0,3579,0,'Y','2026-03-03','08:00:00','08:30:00','Followup','9427214186','4','T','2025-12-03 06:40:26'),(0,0,3580,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9664975005','3','T','2025-12-03 06:06:50'),(0,0,3581,0,'Y','2025-12-03','18:30:00','18:40:00','FC','9428463084','4','C','2025-12-03 04:47:42'),(0,0,3581,0,'Y','2026-03-03','08:00:00','08:30:00','Followup','9428463084','4','T','2025-12-03 06:51:21'),(0,0,3582,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','7016257230','5','T','2025-12-03 06:31:35'),(0,0,3583,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','8320836279','5','T','2025-12-10 23:09:05'),(0,0,3584,0,'Y','2025-12-03','18:30:00','18:40:00','Nv','8000019791','2','C','2025-12-03 02:54:33'),(0,0,3584,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','8000019791','2','T','2025-12-03 07:44:17'),(0,0,3586,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824202657','3','T','2025-12-03 07:04:31'),(0,0,3587,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9825078521','5','T','2025-12-03 06:46:21'),(0,0,3589,0,'Y','2025-12-03','18:40:00','18:50:00','Fv','9925794470','2','C','2025-12-03 02:55:14'),(0,0,3589,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','9925794470','2','T','2025-12-03 07:02:00'),(0,0,3591,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160137348','2','T','2025-12-03 06:52:23'),(0,0,3591,0,'Y','2025-12-03','19:00:00','19:10:00','Nv','8160137348','2','C','2025-12-03 02:56:39'),(0,0,3591,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','8160137348','2','T','2025-12-04 05:55:13'),(0,0,3593,0,'Y','2025-12-03','18:50:00','19:00:00','Fv','9016489101','2','C','2025-12-03 02:56:01'),(0,0,3593,0,'Y','2026-03-13','08:00:00','08:30:00','Followup','9016489101','2','T','2025-12-03 07:19:25'),(0,0,3594,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7984546709','5','T','2025-12-04 00:47:27'),(0,0,3596,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9374911194','5','T','2025-12-03 23:01:52'),(0,0,3597,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9638846341','5','T','2025-12-03 23:01:24'),(0,0,3598,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825550580','4','T','2025-12-07 23:33:01'),(0,0,3599,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925377582','3','T','2025-12-04 01:23:43'),(0,0,3600,0,'Y','2025-12-04','11:00:00','11:10:00','NC','9913292635','4','C','2025-12-03 21:57:50'),(0,0,3600,0,'Y','2026-03-04','08:00:00','08:30:00','Followup','9913292635','4','T','2025-12-03 22:58:03'),(0,0,3602,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9724418745','2','T','2025-12-03 22:52:15'),(0,0,3602,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9724418745','2','T','2025-12-10 23:54:18'),(0,0,3603,0,'Y','2025-12-04','10:30:00','10:40:00','Nv','9429048804','2','C','2025-12-03 20:21:36'),(0,0,3603,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9429048804','2','T','2025-12-03 23:07:15'),(0,0,3604,0,'Y','2026-03-14','08:00:00','08:30:00','Followup','9228733824','2','T','2025-12-03 23:12:08'),(0,0,3605,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9879503883','4','T','2025-12-03 23:34:08'),(0,0,3606,0,'Y','2025-12-04','11:30:00','11:40:00','NC','9427401078','4','C','2025-12-03 21:59:06'),(0,0,3606,0,'Y','2026-03-04','08:00:00','08:30:00','Followup','9427401078','4','T','2025-12-03 23:21:51'),(0,0,3607,0,'Y','2025-12-04','11:20:00','11:30:00','NC','9728868649','4','C','2025-12-03 21:58:42'),(0,0,3607,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9728868649','4','T','2025-12-04 00:39:15'),(0,0,3608,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9904153574','2','T','2025-12-03 23:35:49'),(0,0,3609,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7201988911','7','T','2025-12-03 23:50:03'),(0,0,3610,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9377009001','2','T','2025-12-03 23:59:03'),(0,0,3610,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9377009001','2','T','2025-12-13 00:24:49'),(0,0,3611,0,'Y','2025-12-04','11:40:00','11:50:00','Fc','','4','C','2025-12-03 21:59:28'),(0,0,3611,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9054546000','4','T','2025-12-03 23:43:29'),(0,0,3612,0,'Y','2025-12-04','11:40:00','11:50:00','Fv','9909172955','2','C','2025-12-03 20:25:18'),(0,0,3612,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9909172955','2','T','2025-12-03 23:43:41'),(0,0,3613,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9313954294','2','T','2025-12-04 00:21:54'),(0,0,3613,0,'Y','2025-12-04','11:30:00','11:40:00','Nv','9313954294','2','C','2025-12-03 20:24:35'),(0,0,3614,0,'Y','2025-12-04','11:50:00','12:00:00','NC','9725831110','4','C','2025-12-03 21:59:56'),(0,0,3614,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9712087180','4','T','2025-12-03 23:47:41'),(0,0,3615,0,'Y','2025-12-04','11:00:00','11:10:00','Nv','9724521178','2','C','2025-12-03 20:22:25'),(0,0,3615,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9724521178','2','T','2025-12-04 01:24:01'),(0,0,3615,0,'Y','2025-12-15','11:20:00','11:30:00','Fv','9724521178','2','C','2025-12-14 20:11:22'),(0,0,3615,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','9724521178','2','T','2025-12-14 22:50:27'),(0,0,3616,0,'Y','2026-01-03','08:00:00','08:30:00','Followup','9879905722','5','T','2025-12-03 23:54:06'),(0,0,3617,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7984622162','4','T','2025-12-10 00:02:53'),(0,0,3617,0,'Y','2025-12-04','11:10:00','11:20:00','NC','7984622162','4','C','2025-12-03 21:58:21'),(0,0,3617,0,'Y','2025-12-10','11:00:00','11:10:00','Fc','7984622162','4','C','2025-12-09 21:06:34'),(0,0,3617,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','7984622162','4','T','2025-12-04 00:08:45'),(0,0,3618,0,'Y','2025-12-04','12:10:00','12:20:00','Fc','9427209656','4','C','2025-12-03 22:00:33'),(0,0,3618,0,'Y','2025-12-08','11:30:00','11:40:00','','9427209656','4','C','2025-12-07 21:33:35'),(0,0,3618,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9427209656','4','T','2025-12-03 23:55:44'),(0,0,3618,0,'Y','2025-12-13','11:50:00','12:00:00','Fc','9427209656','4','C','2025-12-12 21:47:43'),(0,0,3618,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9427209656','4','T','2025-12-08 01:14:03'),(0,0,3618,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9427209656','4','T','2025-12-12 23:51:55'),(0,0,3619,0,'Y','2025-12-04','12:20:00','12:30:00','Fv','7874147959','2','C','2025-12-03 20:26:34'),(0,0,3619,0,'Y','2026-04-03','08:00:00','08:30:00','Followup','7874147959','2','T','2025-12-04 00:27:05'),(0,0,3620,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9558003189','4','T','2025-12-03 23:59:45'),(0,0,3622,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8347270059','5','T','2025-12-14 23:40:19'),(0,0,3622,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','8347270059','5','T','2025-12-04 00:18:04'),(0,0,3623,0,'Y','2025-12-04','11:20:00','11:30:00','Fv','9913595258','2','C','2025-12-03 20:24:09'),(0,0,3623,0,'Y','2026-04-03','08:00:00','08:30:00','Followup','9913595258','2','T','2025-12-04 00:31:48'),(0,0,3624,0,'Y','2025-12-04','12:10:00','12:20:00','Fv','9904400057','2','C','2025-12-03 20:26:02'),(0,0,3624,0,'Y','2026-03-04','08:00:00','08:30:00','Followup','9904400057','2','T','2025-12-04 00:34:56'),(0,0,3625,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7226823152','4','T','2025-12-13 00:17:18'),(0,0,3625,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','7226823152','4','T','2025-12-04 00:19:05'),(0,0,3625,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','7226823152','4','T','2025-12-13 01:08:43'),(0,0,3627,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7383671342','3','T','2025-12-04 05:39:07'),(0,0,3628,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8238838518','4','T','2025-12-04 00:46:53'),(0,0,3629,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9624204620','2','T','2025-12-04 00:59:54'),(0,0,3630,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','8000035515','4','T','2025-12-18 07:03:55'),(0,0,3632,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825216627','3','T','2025-12-04 05:51:06'),(0,0,3633,0,'Y','2025-12-04','17:00:00','17:10:00','Nv','9624390108','2','C','2025-12-04 02:20:36'),(0,0,3633,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9624390108','2','T','2025-12-04 06:45:25'),(0,0,3634,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8780879691','2','T','2025-12-04 05:20:41'),(0,0,3634,0,'Y','2025-12-04','17:30:00','17:40:00','Nv','8780879691','2','C','2025-12-04 04:21:45'),(0,0,3634,0,'Y','2026-01-03','08:00:00','08:30:00','Followup','8780879691','2','T','2025-12-04 06:49:47'),(0,0,3635,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898010003','3','T','2025-12-04 05:47:33'),(0,0,3637,0,'Y','2025-12-04','17:20:00','17:30:00','Fv','9909231590','2','C','2025-12-04 02:21:47'),(0,0,3637,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9909231590','2','T','2025-12-04 05:27:16'),(0,0,3638,0,'Y','2025-12-04','17:50:00','18:00:00','Fv','9377727514','2','C','2025-12-04 02:22:39'),(0,0,3638,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9377727514','2','T','2025-12-04 05:32:01'),(0,0,3639,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7990648317','7','T','2025-12-04 05:36:36'),(0,0,3640,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824292088','3','T','2025-12-04 05:31:42'),(0,0,3641,0,'Y','2026-03-14','08:00:00','08:30:00','Followup','9924186992','2','T','2025-12-04 06:05:40'),(0,0,3642,0,'Y','2025-12-04','18:20:00','18:30:00','Nc','8401587200','4','C','2025-12-04 04:56:02'),(0,0,3642,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','8401587200','4','T','2025-12-04 07:01:08'),(0,0,3643,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974876118','3','T','2025-12-04 06:59:52'),(0,0,3644,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033909351','6','T','2025-12-04 06:05:45'),(0,0,3645,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','7501347982','2','T','2025-12-04 06:37:29'),(0,0,3646,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898207138','7','T','2025-12-04 06:12:25'),(0,0,3647,0,'Y','2025-12-04','18:50:00','19:00:00','','9925215911','4','C','2025-12-04 05:03:33'),(0,0,3647,0,'Y','2026-03-04','08:00:00','08:30:00','Followup','9033310830','4','T','2025-12-04 06:56:52'),(0,0,3648,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8155905860','5','T','2025-12-04 06:23:58'),(0,0,3649,0,'Y','2026-03-14','08:00:00','08:30:00','Followup','9727739880','4','T','2025-12-04 06:49:39'),(0,0,3650,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','7878339953','2','T','2025-12-04 06:59:09'),(0,0,3651,0,'Y','2025-12-09','08:00:00','08:30:00','Followup','9714484000','2','T','2025-12-04 07:02:54'),(0,0,3652,0,'Y','2025-12-04','17:10:00','17:20:00','Fv','9824564508','2','C','2025-12-04 02:21:07'),(0,0,3652,0,'Y','2026-01-13','08:00:00','08:30:00','Followup','9824564508','2','T','2025-12-04 07:06:59'),(0,0,3653,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9664741641','4','T','2025-12-05 06:45:21'),(0,0,3654,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7023273942','4','T','2025-12-05 06:56:49'),(0,0,3655,0,'Y','2025-12-05','11:00:00','11:10:00','NV','9426449904','2','C','2025-12-04 20:28:20'),(0,0,3655,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9426449904','2','T','2025-12-05 01:02:12'),(0,0,3656,0,'Y','2025-12-05','11:10:00','11:20:00','FV','9924622920','2','C','2025-12-04 20:29:14'),(0,0,3656,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','9924622920','2','T','2025-12-04 22:52:35'),(0,0,3657,0,'Y','2026-03-05','08:00:00','08:30:00','Followup','9879999296','4','T','2025-12-04 23:10:41'),(0,0,3658,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9427738200','2','T','2025-12-05 01:05:28'),(0,0,3659,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9909174017','2','T','2025-12-04 23:10:48'),(0,0,3660,0,'Y','2025-12-05','11:30:00','11:40:00','NV','7046013701','2','C','2025-12-04 22:14:30'),(0,0,3660,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','7046013701','2','T','2025-12-05 01:25:07'),(0,0,3661,0,'Y','2025-12-05','11:20:00','11:30:00','','','4','C','2025-12-04 21:29:51'),(0,0,3661,0,'Y','2026-03-05','08:00:00','08:30:00','Followup','9898035113','4','T','2025-12-04 23:05:07'),(0,0,3662,0,'Y','2025-12-05','12:00:00','12:10:00','NV','9978428868','2','C','2025-12-04 22:18:02'),(0,0,3662,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9978428868','2','T','2025-12-05 01:28:33'),(0,0,3663,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725063632','5','T','2025-12-04 22:46:03'),(0,0,3664,0,'Y','2025-12-05','11:10:00','11:20:00','','','4','C','2025-12-04 21:29:41'),(0,0,3664,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9925178325','4','T','2025-12-04 23:12:46'),(0,0,3665,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979949806','2','T','2025-12-07 23:35:20'),(0,0,3665,0,'Y','2025-12-05','10:30:00','10:40:00','NV','','2','C','2025-12-04 20:26:51'),(0,0,3665,0,'Y','2025-12-15','10:50:00','11:00:00','Fv','9979949806','2','B','2025-12-14 20:09:48'),(0,0,3665,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9979949806','2','T','2025-12-12 05:44:40'),(0,0,3665,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9979949806','2','T','2025-12-05 01:35:57'),(0,0,3666,0,'Y','2025-12-05','10:50:00','11:00:00','FV','9714050679','2','C','2025-12-04 20:27:39'),(0,0,3666,0,'Y','2026-03-05','08:00:00','08:30:00','Followup','9714050679','2','T','2025-12-04 23:16:23'),(0,0,3667,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849522727','3','T','2025-12-05 06:22:38'),(0,0,3668,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9004975975','3','T','2025-12-04 22:57:00'),(0,0,3669,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9662922622','2','T','2025-12-05 01:39:14'),(0,0,3669,0,'Y','2025-12-15','10:10:00','10:20:00','Fv','9662922622','2','B','2025-12-14 20:08:54'),(0,0,3669,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9662922622','2','T','2025-12-15 23:15:24'),(0,0,3670,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8347344440','4','T','2025-12-06 00:13:35'),(0,0,3671,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','8000045459','2','T','2025-12-05 00:10:58'),(0,0,3672,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427209811','5','T','2025-12-04 23:30:15'),(0,0,3673,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979312392','6','T','2025-12-04 23:31:06'),(0,0,3674,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979312392','6','T','2025-12-04 23:31:31'),(0,0,3675,0,'Y','2025-12-05','11:00:00','11:10:00','','','4','C','2025-12-04 21:29:18'),(0,0,3675,0,'Y','2026-03-05','08:00:00','08:30:00','Followup','9979443210','4','T','2025-12-04 23:24:37'),(0,0,3676,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9428203531','4','T','2025-12-04 23:28:04'),(0,0,3677,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','8866234541','2','T','2025-12-05 00:13:51'),(0,0,3678,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9824816246','4','T','2025-12-05 00:13:37'),(0,0,3679,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9879188325','2','T','2025-12-05 01:45:06'),(0,0,3680,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9825305353','4','T','2025-12-05 00:06:01'),(0,0,3681,0,'Y','2025-12-13','11:00:00','11:10:00','Fc','9925377582','4','C','2025-12-12 21:43:28'),(0,0,3681,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9925377582','4','T','2025-12-05 00:18:17'),(0,0,3681,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9925377582','4','T','2025-12-12 22:58:22'),(0,0,3682,0,'Y','2025-12-05','12:40:00','12:50:00','FV','9313991220','2','C','2025-12-04 20:32:03'),(0,0,3682,0,'Y','2026-02-03','08:00:00','08:30:00','Followup','9313991220','2','T','2025-12-05 00:40:23'),(0,0,3683,0,'Y','2025-12-05','12:30:00','12:40:00','NV','9737398282','2','C','2025-12-04 22:03:31'),(0,0,3683,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9737398282','2','T','2025-12-05 01:55:58'),(0,0,3683,0,'Y','2025-12-18','17:50:00','18:00:00','','9737398282','2','C','2025-12-18 01:52:19'),(0,0,3683,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9737398282','2','T','2025-12-18 06:40:25'),(0,0,3684,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9624137638','4','T','2025-12-05 00:23:19'),(0,0,3685,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9429477529','4','T','2025-12-05 00:43:32'),(0,0,3686,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7622957556','6','T','2025-12-05 01:12:37'),(0,0,3687,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9586363309','2','T','2025-12-05 01:42:28'),(0,0,3688,0,'Y','2025-12-05','17:00:00','17:10:00','NV','8511924001','2','C','2025-12-05 03:17:23'),(0,0,3688,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','8511924001','2','T','2025-12-05 06:41:29'),(0,0,3688,0,'Y','2025-12-15','11:10:00','11:20:00','Fv','8511924001','2','C','2025-12-14 20:11:13'),(0,0,3688,0,'Y','2026-01-26','08:00:00','08:30:00','Followup','8511924001','2','T','2025-12-14 22:55:10'),(0,0,3689,0,'Y','2025-12-05','17:20:00','17:30:00','NE','9904225462','2','C','2025-12-05 03:18:01'),(0,0,3689,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9904225462','2','T','2025-12-05 05:10:07'),(0,0,3690,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9979562199','2','T','2025-12-05 05:45:31'),(0,0,3691,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638674825','3','T','2025-12-05 06:11:14'),(0,0,3692,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9972726674','2','T','2025-12-05 06:07:15'),(0,0,3693,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600271207','7','T','2025-12-05 05:59:40'),(0,0,3694,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9265067694','2','T','2025-12-05 07:17:45'),(0,0,3695,0,'Y','2025-12-05','18:10:00','18:20:00','Fc','9879165804','4','C','2025-12-05 04:37:30'),(0,0,3695,0,'Y','2026-03-05','08:00:00','08:30:00','Followup','9879165804','4','T','2025-12-05 06:52:15'),(0,0,3696,0,'Y','2025-12-12','08:00:00','08:30:00','Followup','9998023177','4','T','2025-12-05 05:50:19'),(0,0,3696,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9998023177','4','T','2025-12-12 07:11:27'),(0,0,3697,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','6353233442','2','T','2025-12-05 06:53:43'),(0,0,3697,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','6353233442','2','T','2025-12-16 06:52:52'),(0,0,3699,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9033327079','2','T','2025-12-05 05:57:47'),(0,0,3701,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9173733339','3','T','2025-12-05 06:34:11'),(0,0,3702,0,'Y','2026-03-05','08:00:00','08:30:00','Followup','9228395183','4','T','2025-12-05 06:40:42'),(0,0,3703,0,'Y','2025-12-05','18:20:00','18:30:00','Fc','9825218194','4','C','2025-12-05 04:38:12'),(0,0,3703,0,'Y','2026-03-05','08:00:00','08:30:00','Followup','9825218194','4','T','2025-12-05 06:31:32'),(0,0,3704,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9737223223','3','T','2025-12-05 06:38:40'),(0,0,3705,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825828524','3','T','2025-12-08 23:47:11'),(0,0,3707,0,'Y','2025-12-05','18:50:00','19:00:00','FC','9824286613','4','C','2025-12-05 04:59:01'),(0,0,3707,0,'Y','2026-03-05','08:00:00','08:30:00','Followup','9824286613','4','T','2025-12-05 06:44:52'),(0,0,3708,0,'Y','2025-12-05','18:10:00','18:20:00','FV','9909522897','2','C','2025-12-05 03:19:03'),(0,0,3708,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9909522897','2','T','2025-12-05 07:03:03'),(0,0,3709,0,'Y','2026-03-05','08:00:00','08:30:00','Followup','9925264269','4','T','2025-12-05 06:56:23'),(0,0,3710,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9313399146','4','T','2025-12-05 07:21:06'),(0,0,3711,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9825615299','4','T','2025-12-05 07:06:14'),(0,0,3712,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9408938589','5','T','2025-12-05 07:06:45'),(0,0,3712,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9408938589','5','T','2025-12-09 06:59:39'),(0,0,3713,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9408054721','4','T','2025-12-17 07:43:12'),(0,0,3713,0,'Y','2025-12-05','19:00:00','19:10:00','Fc','9408054721','4','C','2025-12-05 04:42:51'),(0,0,3713,0,'Y','2025-12-17','18:40:00','18:50:00','','9408054721','4','C','2025-12-17 05:00:59'),(0,0,3713,0,'Y','2026-03-05','08:00:00','08:30:00','Followup','9408054721','4','T','2025-12-05 07:18:10'),(0,0,3714,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','8866896960','2','T','2025-12-05 07:14:21'),(0,0,3715,0,'Y','2026-03-05','08:00:00','08:30:00','Followup','9409256746','4','T','2025-12-05 07:29:04'),(0,0,3716,0,'Y','2025-12-08','08:00:00','08:30:00','Followup','8866066872','2','T','2025-12-05 07:24:26'),(0,0,3717,0,'Y','2025-12-10','08:00:00','08:30:00','Followup','9033820802','2','T','2025-12-05 07:28:29'),(0,0,3720,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924810087','4','T','2025-12-08 22:47:38'),(0,0,3721,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426421564','3','T','2025-12-08 07:24:27'),(0,0,3722,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9033358214','2','T','2025-12-06 01:15:18'),(0,0,3722,0,'Y','2025-12-16','10:10:00','10:20:00','Fv','9033358214','2','C','2025-12-15 20:05:00'),(0,0,3722,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9033358214','2','T','2025-12-15 22:23:17'),(0,0,3723,0,'Y','2025-12-11','08:00:00','08:30:00','Followup','9998707013','4','T','2025-12-05 23:07:58'),(0,0,3725,0,'Y','2026-02-04','08:00:00','08:30:00','Followup','9924287306','2','T','2025-12-05 23:36:46'),(0,0,3726,0,'Y','2026-02-04','08:00:00','08:30:00','Followup','9558600443','2','T','2025-12-05 23:49:20'),(0,0,3727,0,'Y','2025-12-06','11:00:00','11:10:00','Nv','9974366766','2','C','2025-12-05 20:20:07'),(0,0,3727,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9924160203','2','T','2025-12-06 01:11:45'),(0,0,3728,0,'Y','2025-12-06','11:40:00','11:50:00','Fv','9978190002','2','C','2025-12-05 20:21:08'),(0,0,3728,0,'Y','2026-04-06','08:00:00','08:30:00','Followup','9978190002','2','T','2025-12-05 23:27:17'),(0,0,3729,0,'Y','2025-12-06','11:10:00','11:20:00','Nc','9426808879','4','C','2025-12-05 21:51:01'),(0,0,3729,0,'Y','2026-01-31','08:00:00','08:30:00','Followup','9426808879','4','T','2025-12-06 00:19:40'),(0,0,3730,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898733883','2','T','2025-12-05 23:52:30'),(0,0,3731,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200149474','6','T','2025-12-18 23:40:53'),(0,0,3731,0,'Y','2025-12-06','11:00:00','11:10:00','Nc','8200149474','4','R','2025-12-05 21:50:02'),(0,0,3731,0,'Y','2025-12-19','11:10:00','11:20:00','FC','8200149474','4','C','2025-12-18 21:47:20'),(0,0,3731,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','8200149474','4','T','2025-12-18 23:12:59'),(0,0,3732,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726395263','4','T','2025-12-05 23:15:28'),(0,0,3733,0,'Y','2025-12-06','11:30:00','11:40:00','Nv','9624437289','2','C','2025-12-05 22:41:35'),(0,0,3733,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9624437289','2','T','2025-12-06 01:45:33'),(0,0,3734,0,'Y','2025-12-06','11:20:00','11:30:00','Fv','9601254311','2','C','2025-12-05 20:21:49'),(0,0,3734,0,'Y','2026-02-04','08:00:00','08:30:00','Followup','9601254311','2','T','2025-12-06 00:02:24'),(0,0,3735,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726395263','3','T','2025-12-05 23:20:47'),(0,0,3736,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824564304','4','T','2025-12-05 23:53:37'),(0,0,3736,0,'Y','2025-12-06','11:40:00','11:50:00','FC','9824564304','4','C','2025-12-05 21:52:40'),(0,0,3737,0,'Y','2025-12-06','12:00:00','12:10:00','FC','7405564364','4','C','2025-12-05 21:53:50'),(0,0,3737,0,'Y','2026-03-06','08:00:00','08:30:00','Followup','7405564364','4','T','2025-12-06 00:48:17'),(0,0,3738,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879480060','6','T','2025-12-06 05:06:53'),(0,0,3739,0,'Y','2025-12-06','12:30:00','12:40:00','Nv','9173451479','2','C','2025-12-05 22:28:29'),(0,0,3739,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9173451479','2','T','2025-12-06 01:58:02'),(0,0,3740,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662511110','4','T','2025-12-11 07:11:26'),(0,0,3740,0,'Y','2025-12-11','18:50:00','19:00:00','FC','9662511110','4','C','2025-12-11 04:36:05'),(0,0,3740,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9662511110','4','T','2025-12-06 00:38:30'),(0,0,3742,0,'Y','2026-01-03','08:00:00','08:30:00','Followup','9879453916','2','T','2025-12-06 01:24:44'),(0,0,3743,0,'Y','2025-12-06','12:20:00','12:30:00','Fv','9909978111','2','C','2025-12-05 20:24:26'),(0,0,3743,0,'Y','2026-03-06','08:00:00','08:30:00','Followup','9909978111','2','T','2025-12-06 00:28:12'),(0,0,3744,0,'Y','2026-02-04','08:00:00','08:30:00','Followup','7984889202','5','T','2025-12-06 00:16:27'),(0,0,3745,0,'Y','2025-12-06','12:00:00','12:10:00','Nv','9825079371','2','C','2025-12-05 20:37:41'),(0,0,3745,0,'Y','2025-12-15','17:10:00','17:20:00','','9825079371','2','C','2025-12-15 01:59:00'),(0,0,3745,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9825079371','2','T','2025-12-06 02:02:27'),(0,0,3745,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9825079371','2','T','2025-12-15 05:17:34'),(0,0,3746,0,'Y','2025-12-06','11:30:00','11:40:00','Nc','9662231531','4','C','2025-12-05 21:52:05'),(0,0,3746,0,'Y','2026-02-04','08:00:00','08:30:00','Followup','9998775748','4','T','2025-12-06 00:44:24'),(0,0,3747,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7041890444','7','T','2025-12-06 05:26:39'),(0,0,3749,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','8300812719','5','T','2025-12-06 00:41:51'),(0,0,3750,0,'Y','2025-12-06','12:30:00','12:40:00','FC','9374821206','4','C','2025-12-05 21:55:48'),(0,0,3750,0,'Y','2026-03-06','08:00:00','08:30:00','Followup','9374821206','4','T','2025-12-06 00:52:33'),(0,0,3751,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9879655405','2','T','2025-12-06 02:12:26'),(0,0,3751,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9879655405','2','T','2025-12-19 01:44:25'),(0,0,3752,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9879655405','2','T','2025-12-06 02:08:51'),(0,0,3753,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924323374','2','T','2025-12-06 02:42:46'),(0,0,3753,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9924323374','2','T','2025-12-09 06:24:03'),(0,0,3754,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7096944808','7','T','2025-12-06 05:26:49'),(0,0,3755,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825212680','6','T','2025-12-06 05:33:33'),(0,0,3756,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824295697','7','T','2025-12-06 05:41:03'),(0,0,3757,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8758119585','6','T','2025-12-06 06:01:51'),(0,0,3758,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9822579739','6','T','2025-12-06 06:50:28'),(0,0,3759,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9822579739','7','T','2025-12-06 07:12:56'),(0,0,3766,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427109063','6','T','2025-12-07 23:18:46'),(0,0,3767,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998804139','6','T','2025-12-07 23:18:59'),(0,0,3768,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979369995','4','T','2025-12-08 05:49:28'),(0,0,3768,0,'Y','2025-12-09','12:00:00','12:10:00','FC','9979369995','4','B','2025-12-08 23:05:06'),(0,0,3771,0,'Y','2025-12-08','12:00:00','12:10:00','FC','9377793772','4','B','2025-12-07 21:43:31'),(0,0,3771,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9377793772','4','T','2025-12-07 23:52:14'),(0,0,3773,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8059959595','3','T','2025-12-08 07:47:31'),(0,0,3775,0,'Y','2025-12-08','12:30:00','12:40:00','Nv','9276505496','2','C','2025-12-07 20:16:34'),(0,0,3775,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9276505496','2','T','2025-12-08 01:13:06'),(0,0,3776,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9978944419','4','T','2025-12-07 23:03:48'),(0,0,3777,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7043760584','6','T','2025-12-07 23:19:14'),(0,0,3778,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825107074','3','T','2025-12-14 23:00:51'),(0,0,3779,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9662727627','2','T','2025-12-07 23:13:12'),(0,0,3780,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725495553','4','T','2025-12-12 22:43:48'),(0,0,3780,0,'Y','2025-12-16','18:00:00','18:10:00','','9725495553','4','C','2025-12-16 04:18:43'),(0,0,3780,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','9725495553','4','T','2025-12-16 06:00:01'),(0,0,3781,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','9106797668','4','T','2025-12-07 23:44:47'),(0,0,3782,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9328810469','3','T','2025-12-07 22:35:10'),(0,0,3783,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9924758994','2','T','2025-12-08 01:40:51'),(0,0,3784,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6351514772','3','T','2025-12-08 07:48:29'),(0,0,3785,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9913538010','2','T','2025-12-07 23:43:51'),(0,0,3786,0,'Y','2025-12-08','10:30:00','10:40:00','Nv','9879838405','2','C','2025-12-07 20:11:05'),(0,0,3786,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9879838405','2','T','2025-12-08 01:08:34'),(0,0,3787,0,'Y','2025-12-08','12:50:00','13:00:00','Fv','8140275081','2','C','2025-12-07 20:19:14'),(0,0,3787,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','8140275081','2','T','2025-12-08 00:16:58'),(0,0,3787,0,'Y','2025-12-18','16:50:00','17:00:00','FV','8140275081','2','C','2025-12-18 01:44:10'),(0,0,3787,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','8140275081','2','T','2025-12-18 05:12:55'),(0,0,3788,0,'Y','2025-12-10','11:10:00','11:20:00','','9375808008','4','B','2025-12-09 21:06:42'),(0,0,3788,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9375808008','4','T','2025-12-08 00:45:38'),(0,0,3789,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925752906','7','T','2025-12-07 22:31:42'),(0,0,3791,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726003115','6','T','2025-12-07 23:19:34'),(0,0,3792,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974664146','4','T','2025-12-07 23:25:52'),(0,0,3792,0,'Y','2025-12-08','12:20:00','12:30:00','','9974664146','4','C','2025-12-07 22:18:24'),(0,0,3792,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','9974664146','4','T','2025-12-08 05:41:56'),(0,0,3793,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9408181084','4','T','2025-12-07 22:50:18'),(0,0,3793,0,'Y','2025-12-08','11:00:00','11:10:00','','9408181089','4','C','2025-12-07 21:32:24'),(0,0,3793,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9408181084','4','T','2025-12-08 00:01:24'),(0,0,3794,0,'Y','2025-12-08','11:10:00','11:20:00','Fv','9978403541','2','C','2025-12-07 20:11:55'),(0,0,3794,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','9978403541','2','T','2025-12-07 22:53:44'),(0,0,3796,0,'Y','2025-12-08','11:30:00','11:40:00','Nv','9723099566','2','C','2025-12-07 20:15:12'),(0,0,3796,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9723099566','2','T','2025-12-08 01:52:46'),(0,0,3796,0,'Y','2025-12-18','10:20:00','10:30:00','Fv','9723099566','2','C','2025-12-17 20:25:15'),(0,0,3796,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9723099566','2','T','2025-12-17 22:21:00'),(0,0,3797,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7226045198','3','T','2025-12-08 07:42:09'),(0,0,3798,0,'Y','2025-12-08','11:10:00','11:20:00','','8200889869','4','C','2025-12-07 21:32:54'),(0,0,3798,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','8200889869','4','T','2025-12-07 23:13:32'),(0,0,3798,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','8200889869','4','T','2025-12-10 23:24:02'),(0,0,3799,0,'Y','2025-12-08','11:20:00','11:30:00','','9428510164','4','C','2025-12-07 21:33:24'),(0,0,3799,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9428510164','4','T','2025-12-07 23:22:20'),(0,0,3799,0,'Y','2025-12-16','18:30:00','18:40:00','','9428510164','4','C','2025-12-16 04:19:32'),(0,0,3799,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9428510164','4','T','2025-12-16 06:40:37'),(0,0,3800,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9870095147','3','T','2025-12-07 23:04:10'),(0,0,3801,0,'Y','2025-12-08','11:00:00','11:10:00','Nv','9723978084','2','C','2025-12-07 20:23:59'),(0,0,3801,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9723978084','2','T','2025-12-08 01:55:51'),(0,0,3802,0,'Y','2025-12-08','12:40:00','12:50:00','Rfv','7405428398','2','C','2025-12-07 20:18:50'),(0,0,3802,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','7405428398','2','T','2025-12-08 02:22:10'),(0,0,3803,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9913220230','2','T','2025-12-08 02:28:05'),(0,0,3804,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824538158','7','T','2025-12-07 23:08:53'),(0,0,3805,0,'Y','2025-12-08','12:00:00','12:10:00','Nv','7777954749','2','C','2025-12-07 20:13:13'),(0,0,3805,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','7777954749','2','T','2025-12-08 02:10:33'),(0,0,3806,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','8306166303','4','T','2025-12-07 23:42:43'),(0,0,3807,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9228701228','3','T','2025-12-07 23:12:55'),(0,0,3808,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','9979977114','4','T','2025-12-07 23:35:51'),(0,0,3809,0,'Y','2026-02-06','08:00:00','08:30:00','Followup','9913901761','2','T','2025-12-08 01:23:38'),(0,0,3810,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925649256','7','T','2025-12-07 23:27:01'),(0,0,3811,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','8866739212','2','T','2025-12-08 01:26:30'),(0,0,3812,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','9979430043','4','T','2025-12-08 05:44:21'),(0,0,3813,0,'Y','2026-02-06','08:00:00','08:30:00','Followup','9427280140','2','T','2025-12-08 01:29:37'),(0,0,3814,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9106096788','3','T','2025-12-07 23:34:29'),(0,0,3815,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','7779091787','4','T','2025-12-08 00:36:06'),(0,0,3816,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7878222273','3','T','2025-12-07 23:38:50'),(0,0,3817,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9687523004','6','T','2025-12-07 23:37:59'),(0,0,3818,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9909577188','2','T','2025-12-08 01:40:15'),(0,0,3820,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9106797668','2','T','2025-12-08 01:52:08'),(0,0,3820,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9106797668','2','T','2025-12-08 23:40:24'),(0,0,3821,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','8780238759','4','T','2025-12-08 06:51:46'),(0,0,3822,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9725316841','2','T','2025-12-08 02:03:26'),(0,0,3823,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879242252','4','T','2025-12-08 05:44:36'),(0,0,3823,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','9879242252','4','T','2025-12-18 06:54:10'),(0,0,3824,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9768141783','5','T','2025-12-21 23:39:35'),(0,0,3824,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9768141783','5','T','2025-12-22 06:08:59'),(0,0,3825,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9925915311','4','T','2025-12-08 00:59:14'),(0,0,3826,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9913600111','4','T','2025-12-08 07:57:29'),(0,0,3828,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866087851','7','T','2025-12-08 05:28:48'),(0,0,3829,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7874835717','7','T','2025-12-08 05:51:34'),(0,0,3830,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638462572','2','T','2025-12-08 02:15:54'),(0,0,3830,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9638462572','2','T','2025-12-08 07:21:41'),(0,0,3831,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913904439','2','T','2025-12-08 02:27:39'),(0,0,3831,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9913904439','2','T','2025-12-08 05:51:45'),(0,0,3832,0,'Y','2026-02-06','08:00:00','08:30:00','Followup','8780838023','2','T','2025-12-08 02:35:26'),(0,0,3833,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979866204','3','T','2025-12-08 07:24:53'),(0,0,3834,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824207656','3','T','2025-12-08 06:58:46'),(0,0,3835,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9825755208','2','T','2025-12-08 06:34:38'),(0,0,3835,0,'Y','2025-12-22','18:40:00','18:50:00','Fv','9825755208','2','C','2025-12-22 03:48:17'),(0,0,3835,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9825755208','2','T','2025-12-22 06:18:25'),(0,0,3836,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924462940','3','T','2025-12-08 07:50:39'),(0,0,3837,0,'Y','2025-12-08','17:00:00','17:10:00','Nv','9825264615','2','C','2025-12-08 02:50:10'),(0,0,3837,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9825264615','2','T','2025-12-08 06:09:44'),(0,0,3838,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427079981','6','T','2025-12-08 06:41:44'),(0,0,3839,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9409525100','2','T','2025-12-08 05:20:36'),(0,0,3840,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9408147741','2','T','2025-12-08 05:36:02'),(0,0,3840,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9408147741','2','T','2025-12-17 22:50:58'),(0,0,3841,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9409525100','2','T','2025-12-08 05:24:29'),(0,0,3841,0,'Y','2025-12-22','12:50:00','13:00:00','Fv','9409525100','2','B','2025-12-21 20:20:58'),(0,0,3842,0,'Y','2025-12-08','17:30:00','17:40:00','Nv','','2','C','2025-12-08 02:51:48'),(0,0,3842,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9428154955','2','T','2025-12-08 07:02:48'),(0,0,3842,0,'Y','2025-12-18','17:10:00','17:20:00','','9428154955','2','C','2025-12-18 01:44:30'),(0,0,3842,0,'Y','2026-01-29','08:00:00','08:30:00','Followup','9428154955','2','T','2025-12-18 05:03:25'),(0,0,3843,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9106448643','4','T','2025-12-08 05:47:36'),(0,0,3844,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879221681','3','T','2025-12-08 06:34:54'),(0,0,3845,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','7984547776','2','T','2025-12-08 05:58:33'),(0,0,3846,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714762170','3','T','2025-12-08 06:46:31'),(0,0,3847,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904088241','4','T','2025-12-09 05:44:04'),(0,0,3847,0,'Y','2025-12-08','18:20:00','18:30:00','Nc','','4','R','2025-12-08 04:37:39'),(0,0,3848,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904088241','4','T','2025-12-09 05:45:43'),(0,0,3849,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9687177477','3','T','2025-12-08 06:52:45'),(0,0,3850,0,'Y','2025-12-08','18:50:00','19:00:00','Fc','9726922451','4','C','2025-12-08 05:23:58'),(0,0,3850,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','9726922451','4','T','2025-12-08 06:07:47'),(0,0,3851,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9904322636','4','T','2025-12-08 06:13:22'),(0,0,3852,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824892980','3','T','2025-12-08 07:04:28'),(0,0,3853,0,'Y','2026-03-18','08:00:00','08:30:00','Followup','8469749192','2','T','2025-12-08 06:08:53'),(0,0,3854,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8128055155','3','T','2025-12-08 07:20:29'),(0,0,3855,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','9904322636','4','T','2025-12-08 06:20:41'),(0,0,3856,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200789097','3','T','2025-12-08 07:10:39'),(0,0,3857,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200600072','6','T','2025-12-08 06:34:14'),(0,0,3858,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9913383847','4','T','2025-12-08 06:30:58'),(0,0,3858,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','9913383847','4','T','2025-12-14 22:48:00'),(0,0,3859,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924787446','2','T','2025-12-08 06:58:19'),(0,0,3860,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9425864173','2','T','2025-12-08 06:52:32'),(0,0,3860,0,'Y','2025-12-08','18:30:00','18:40:00','Nv','9425864173','2','C','2025-12-08 02:54:10'),(0,0,3861,0,'Y','2025-12-08','17:50:00','18:00:00','FV','','2','C','2025-12-08 02:52:19'),(0,0,3861,0,'Y','2026-02-06','08:00:00','08:30:00','Followup','9979338738','2','T','2025-12-08 07:01:52'),(0,0,3862,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712342847','4','T','2025-12-08 06:37:33'),(0,0,3863,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8128611343','5','T','2025-12-18 00:19:14'),(0,0,3864,0,'Y','2025-12-08','19:30:00','19:40:00','FC','9428349339','4','C','2025-12-08 06:05:13'),(0,0,3864,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9428349339','4','T','2025-12-08 07:53:31'),(0,0,3865,0,'Y','2025-12-08','19:20:00','19:30:00','FC','9824966683','4','C','2025-12-08 05:52:42'),(0,0,3865,0,'Y','2025-12-13','08:00:00','08:30:00','Followup','9824966683','4','T','2025-12-08 07:00:35'),(0,0,3866,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904799090','6','T','2025-12-08 07:15:02'),(0,0,3867,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824355738','7','T','2025-12-08 07:16:36'),(0,0,3868,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8460084900','2','T','2025-12-08 08:10:58'),(0,0,3868,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','8460084900','2','T','2025-12-09 05:39:48'),(0,0,3870,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8460842060','4','T','2025-12-08 23:12:08'),(0,0,3871,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9687837212','5','T','2025-12-15 01:11:09'),(0,0,3872,0,'Y','2025-12-09','11:30:00','11:40:00','Nv','9427708266','2','C','2025-12-08 20:16:37'),(0,0,3872,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9427708266','2','T','2025-12-09 01:17:09'),(0,0,3873,0,'Y','2025-12-09','12:50:00','13:00:00','Fv','9624090819','2','C','2025-12-08 20:21:39'),(0,0,3873,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9624090819','2','T','2025-12-08 23:24:11'),(0,0,3874,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9537861808','2','T','2025-12-09 01:41:15'),(0,0,3874,0,'Y','2025-12-19','17:10:00','17:20:00','','9537861808','2','C','2025-12-19 02:06:34'),(0,0,3874,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9537861808','2','T','2025-12-19 05:13:36'),(0,0,3875,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','7600982744','4','T','2025-12-08 23:39:06'),(0,0,3876,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426664255','2','T','2025-12-08 23:52:33'),(0,0,3876,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9426664255','2','T','2025-12-09 05:13:09'),(0,0,3877,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9327200674','2','T','2025-12-09 01:49:03'),(0,0,3877,0,'Y','2025-12-19','10:50:00','11:00:00','Fv','9327200674','2','C','2025-12-18 20:30:39'),(0,0,3877,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','9327200674','2','T','2025-12-18 22:30:40'),(0,0,3878,0,'Y','2025-12-09','11:20:00','11:30:00','Fv','9909060901','2','C','2025-12-08 20:15:58'),(0,0,3878,0,'Y','2026-02-07','08:00:00','08:30:00','Followup','9909060901','2','T','2025-12-08 22:56:05'),(0,0,3879,0,'Y','2025-12-09','11:40:00','11:50:00','','9662170891','4','C','2025-12-08 22:03:30'),(0,0,3879,0,'Y','2026-03-19','08:00:00','08:30:00','Followup','9662170891','4','T','2025-12-08 23:11:19'),(0,0,3880,0,'Y','2025-12-09','11:00:00','11:10:00','Nv','9879071371','2','C','2025-12-08 20:14:59'),(0,0,3880,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9879071371','2','T','2025-12-09 01:06:45'),(0,0,3880,0,'Y','2025-12-19','18:10:00','18:20:00','','9879071371','2','C','2025-12-19 02:08:14'),(0,0,3880,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9879071371','2','T','2025-12-19 06:07:54'),(0,0,3881,0,'Y','2026-02-07','08:00:00','08:30:00','Followup','9904610103','2','T','2025-12-09 00:10:27'),(0,0,3882,0,'Y','2025-12-09','10:30:00','10:40:00','Nv','9099295130','2','C','2025-12-08 20:12:30'),(0,0,3882,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9099295130','2','T','2025-12-09 01:37:50'),(0,0,3883,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428375247','6','T','2025-12-08 22:57:29'),(0,0,3884,0,'Y','2025-12-09','11:10:00','11:20:00','Fv','','2','C','2025-12-08 20:15:30'),(0,0,3884,0,'Y','2026-03-19','08:00:00','08:30:00','Followup','9687614383','2','T','2025-12-08 22:52:36'),(0,0,3885,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725952168','2','T','2025-12-09 00:24:55'),(0,0,3885,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9725952168','2','T','2025-12-09 05:03:35'),(0,0,3886,0,'Y','2025-12-09','11:20:00','11:30:00','Nc','9427495930','4','C','2025-12-08 21:45:58'),(0,0,3886,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9427495930','4','T','2025-12-08 23:59:41'),(0,0,3887,0,'Y','2026-04-08','08:00:00','08:30:00','Followup','9913623534','2','T','2025-12-09 00:49:53'),(0,0,3888,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9409577337','4','T','2025-12-09 00:13:12'),(0,0,3888,0,'Y','2025-12-09','11:10:00','11:20:00','FC','9409577337','4','C','2025-12-08 21:45:06'),(0,0,3889,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9714015050','2','T','2025-12-09 00:56:51'),(0,0,3890,0,'Y','2025-12-09','11:00:00','11:10:00','Nc','8200694343','4','C','2025-12-08 21:43:53'),(0,0,3890,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','8200694343','4','T','2025-12-08 23:05:54'),(0,0,3891,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9925361257','4','T','2025-12-09 00:19:29'),(0,0,3892,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7405705540','6','T','2025-12-08 23:05:44'),(0,0,3893,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9979408840','2','T','2025-12-09 02:03:42'),(0,0,3893,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9979408840','2','T','2025-12-19 05:50:16'),(0,0,3894,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','8460460031','4','T','2025-12-09 05:42:04'),(0,0,3895,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725275153','3','T','2025-12-08 23:59:02'),(0,0,3896,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824015264','2','T','2025-12-09 00:44:11'),(0,0,3896,0,'Y','2025-12-09','12:30:00','12:40:00','Nv','9824015264','2','C','2025-12-08 20:20:23'),(0,0,3896,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9824015264','2','T','2025-12-09 05:53:05'),(0,0,3897,0,'Y','2025-12-09','12:20:00','12:30:00','Fv','8866264084','2','C','2025-12-08 20:19:50'),(0,0,3897,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','8866264084','2','T','2025-12-09 00:35:57'),(0,0,3898,0,'Y','2025-12-09','12:00:00','12:10:00','Nv','7624025360','2','C','2025-12-08 20:18:59'),(0,0,3898,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','7624025360','2','T','2025-12-09 01:55:21'),(0,0,3899,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9870040561','2','T','2025-12-09 01:29:21'),(0,0,3900,0,'Y','2026-04-08','08:00:00','08:30:00','Followup','9925491603','2','T','2025-12-09 01:40:33'),(0,0,3901,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160686261','6','T','2025-12-09 00:14:14'),(0,0,3902,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7096107344','3','T','2025-12-09 00:16:52'),(0,0,3903,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','9727027386','4','T','2025-12-09 00:33:52'),(0,0,3904,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9687120430','7','T','2025-12-09 05:00:24'),(0,0,3905,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9265188392','4','T','2025-12-09 06:24:38'),(0,0,3907,0,'Y','2025-12-09','17:30:00','17:40:00','Nv','8980169415','2','C','2025-12-09 03:20:22'),(0,0,3907,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','8980169415','2','T','2025-12-09 07:06:31'),(0,0,3908,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9898018110','2','T','2025-12-09 04:57:28'),(0,0,3908,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9898018110','2','T','2025-12-21 23:45:39'),(0,0,3909,0,'Y','2025-12-09','17:10:00','17:20:00','Fv','9964213130','2','C','2025-12-09 03:18:58'),(0,0,3909,0,'Y','2026-02-07','08:00:00','08:30:00','Followup','9964213130','2','T','2025-12-09 04:52:36'),(0,0,3910,0,'Y','2025-12-09','18:00:00','18:10:00','','','4','C','2025-12-09 04:50:37'),(0,0,3910,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9824580263','4','T','2025-12-09 05:52:22'),(0,0,3911,0,'Y','2025-12-09','17:40:00','17:50:00','Fv','6359735355','2','C','2025-12-09 03:20:47'),(0,0,3911,0,'Y','2026-02-07','08:00:00','08:30:00','Followup','6359735355','2','T','2025-12-09 05:26:35'),(0,0,3913,0,'Y','2025-12-09','17:50:00','18:00:00','Fv','8347178383','2','C','2025-12-09 03:21:15'),(0,0,3913,0,'Y','2026-02-07','08:00:00','08:30:00','Followup','8347178383','2','T','2025-12-09 05:42:58'),(0,0,3914,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9227046111','3','T','2025-12-09 05:57:14'),(0,0,3915,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429336748','3','T','2025-12-09 05:32:44'),(0,0,3916,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9909909015','2','T','2025-12-09 07:58:21'),(0,0,3917,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909909015','5','T','2025-12-09 05:53:21'),(0,0,3918,0,'Y','2025-12-09','18:00:00','18:10:00','Nv','9033897000','2','C','2025-12-09 03:21:41'),(0,0,3918,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9033897000','2','T','2025-12-09 07:34:17'),(0,0,3918,0,'Y','2025-12-19','11:50:00','12:00:00','Fv','9033897000','2','C','2025-12-18 20:33:02'),(0,0,3918,0,'Y','2026-01-30','08:00:00','08:30:00','Followup','9033897000','2','T','2025-12-19 05:44:03'),(0,0,3919,0,'Y','2025-12-09','18:30:00','18:40:00','Nv','9825078861','2','C','2025-12-09 05:09:19'),(0,0,3919,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9825078861','2','T','2025-12-09 07:37:51'),(0,0,3919,0,'Y','2025-12-19','17:40:00','17:50:00','','9825078861','2','C','2025-12-19 02:07:21'),(0,0,3919,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9825078861','2','T','2025-12-19 05:41:30'),(0,0,3920,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849066390','4','T','2025-12-09 07:14:25'),(0,0,3920,0,'Y','2025-12-16','19:00:00','19:10:00','','8849066390','4','C','2025-12-16 04:20:21'),(0,0,3920,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','8849066390','4','T','2025-12-16 07:12:25'),(0,0,3921,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7777936561','5','T','2025-12-09 05:58:48'),(0,0,3922,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8980223334','3','T','2025-12-09 05:56:57'),(0,0,3923,0,'Y','2025-12-09','18:40:00','18:50:00','FC','9375429143','4','C','2025-12-09 04:52:42'),(0,0,3923,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9375429143','4','T','2025-12-09 06:47:29'),(0,0,3924,0,'Y','2025-12-09','18:30:00','18:40:00','FC','9328711105','4','C','2025-12-09 04:52:13'),(0,0,3924,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','9328711105','4','T','2025-12-09 06:24:03'),(0,0,3925,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','9824280247','2','T','2025-12-09 06:56:45'),(0,0,3926,0,'Y','2026-02-07','08:00:00','08:30:00','Followup','9723989013','5','T','2025-12-09 06:06:55'),(0,0,3927,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','9879207150','4','T','2025-12-09 07:01:21'),(0,0,3928,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723944174','3','T','2025-12-09 07:05:11'),(0,0,3929,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9879256636','2','T','2025-12-09 07:05:48'),(0,0,3930,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','8347350393','4','T','2025-12-09 07:07:37'),(0,0,3931,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7984911377','5','T','2025-12-09 07:12:25'),(0,0,3932,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979381055','2','T','2025-12-15 08:12:19'),(0,0,3932,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9979381055','2','T','2025-12-09 07:28:08'),(0,0,3933,0,'Y','2025-12-09','17:00:00','17:10:00','Nv','8849686036','2','C','2025-12-09 03:18:24'),(0,0,3933,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9574691703','2','T','2025-12-09 08:02:14'),(0,0,3934,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9327194033','3','T','2025-12-09 07:04:39'),(0,0,3935,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','9276555981','4','T','2025-12-09 07:13:30'),(0,0,3936,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909998133','5','T','2025-12-09 07:18:06'),(0,0,3937,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7016934349','3','T','2025-12-09 22:53:07'),(0,0,3940,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978666349','3','T','2025-12-09 22:54:28'),(0,0,3942,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825252663','4','T','2025-12-10 06:20:39'),(0,0,3944,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8758030604','7','T','2025-12-09 22:52:59'),(0,0,3945,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6352248442','7','T','2025-12-09 22:53:10'),(0,0,3946,0,'Y','2025-12-10','10:10:00','10:20:00','Fv','9879997767','2','C','2025-12-09 20:13:58'),(0,0,3946,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9879997767','2','T','2025-12-09 22:25:04'),(0,0,3947,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6352332067','3','T','2025-12-09 22:31:08'),(0,0,3948,0,'Y','2026-03-10','08:00:00','08:30:00','Followup','9408892492','4','T','2025-12-10 00:01:42'),(0,0,3949,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979105872','3','T','2025-12-09 22:33:34'),(0,0,3950,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8000680001','4','T','2025-12-16 01:04:15'),(0,0,3950,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','8000680001','4','T','2025-12-09 22:48:09'),(0,0,3951,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9979845185','2','T','2025-12-10 00:37:53'),(0,0,3952,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9979712165','2','T','2025-12-10 00:11:22'),(0,0,3953,0,'Y','2026-03-20','08:00:00','08:30:00','Followup','9426422751','2','T','2025-12-09 23:16:24'),(0,0,3954,0,'Y','2025-12-10','11:40:00','11:50:00','Fv','9979071274','2','C','2025-12-09 20:17:01'),(0,0,3954,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9979071274','2','T','2025-12-09 23:33:51'),(0,0,3955,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427721285','6','T','2025-12-09 23:04:38'),(0,0,3956,0,'Y','2025-12-10','10:30:00','10:40:00','Nv','','2','C','2025-12-09 20:14:36'),(0,0,3956,0,'Y','2026-01-09','08:00:00','08:30:00','Followup','9099160351','2','T','2025-12-10 01:48:02'),(0,0,3957,0,'Y','2025-12-10','11:30:00','11:40:00','Nv','7990823410','2','C','2025-12-09 20:40:46'),(0,0,3957,0,'Y','2025-12-19','18:50:00','19:00:00','','7990823410','2','C','2025-12-19 02:08:58'),(0,0,3957,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','7990823410','2','T','2025-12-10 00:40:23'),(0,0,3957,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','7990823410','2','T','2025-12-19 06:52:19'),(0,0,3958,0,'Y','2025-12-10','11:20:00','11:30:00','Fv','9409036060','2','C','2025-12-09 20:16:35'),(0,0,3958,0,'Y','2026-04-09','08:00:00','08:30:00','Followup','9409036060','2','T','2025-12-09 23:19:08'),(0,0,3959,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8000093737','3','T','2025-12-09 23:22:21'),(0,0,3960,0,'Y','2025-12-10','11:20:00','11:30:00','Fc','9904411944','4','C','2025-12-09 21:06:13'),(0,0,3960,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9904411944','4','T','2025-12-10 00:03:44'),(0,0,3961,0,'Y','2025-12-10','12:00:00','12:10:00','Nv','9925212021','2','C','2025-12-09 23:05:41'),(0,0,3961,0,'Y','2026-01-09','08:00:00','08:30:00','Followup','9925212021','2','T','2025-12-10 01:26:41'),(0,0,3962,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712087180','4','T','2025-12-10 00:03:57'),(0,0,3962,0,'Y','2025-12-10','11:40:00','11:50:00','Nc','9712087180','4','C','2025-12-09 22:13:48'),(0,0,3963,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909065708','3','T','2025-12-10 05:44:12'),(0,0,3964,0,'Y','2025-12-10','11:00:00','11:10:00','Nv','7777954749','2','C','2025-12-09 20:15:30'),(0,0,3964,0,'Y','2026-01-09','08:00:00','08:30:00','Followup','7777954749','2','T','2025-12-10 01:55:28'),(0,0,3965,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825669293','5','T','2025-12-09 23:59:52'),(0,0,3966,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824299664','3','T','2025-12-10 05:41:10'),(0,0,3967,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8141688612','3','T','2025-12-10 05:40:04'),(0,0,3968,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904131155','3','T','2025-12-09 23:47:09'),(0,0,3969,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879531760','6','T','2025-12-09 23:44:26'),(0,0,3971,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9879930823','2','T','2025-12-10 01:21:56'),(0,0,3972,0,'Y','2026-03-10','08:00:00','08:30:00','Followup','9428591225','4','T','2025-12-10 00:16:12'),(0,0,3974,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7265000896','4','T','2025-12-10 05:58:54'),(0,0,3974,0,'Y','2025-12-10','12:30:00','12:40:00','FC','7265000896','4','C','2025-12-09 23:32:26'),(0,0,3975,0,'Y','2025-12-10','12:30:00','12:40:00','Nv','9924442462','2','C','2025-12-09 20:18:22'),(0,0,3975,0,'Y','2026-01-09','08:00:00','08:30:00','Followup','9924442462','2','T','2025-12-10 01:55:41'),(0,0,3976,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9687334306','4','T','2025-12-10 00:32:37'),(0,0,3978,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913748257','3','T','2025-12-10 06:30:19'),(0,0,3979,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825548515','2','T','2025-12-10 01:46:18'),(0,0,3980,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9879944688','2','T','2025-12-10 02:11:37'),(0,0,3983,0,'Y','2025-12-10','17:00:00','17:10:00','Nv','','2','C','2025-12-10 02:36:12'),(0,0,3983,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9099167142','2','T','2025-12-10 06:24:32'),(0,0,3984,0,'Y','2026-01-09','08:00:00','08:30:00','Followup','9825517287','2','T','2025-12-10 06:18:38'),(0,0,3985,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7069391222','3','T','2025-12-10 05:37:16'),(0,0,3987,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7487958304','3','T','2025-12-10 05:46:29'),(0,0,3988,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427252083','4','T','2025-12-10 05:51:22'),(0,0,3988,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9427252083','4','T','2025-12-15 06:47:02'),(0,0,3989,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9624975742','2','T','2025-12-18 22:38:30'),(0,0,3989,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9624975742','2','T','2025-12-10 05:29:23'),(0,0,3989,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9624975742','2','T','2025-12-18 23:44:51'),(0,0,3990,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','7600000197','4','T','2025-12-10 05:55:38'),(0,0,3991,0,'Y','2025-12-10','18:10:00','18:20:00','','','4','C','2025-12-10 04:33:02'),(0,0,3991,0,'Y','2026-03-10','08:00:00','08:30:00','Followup','9898211633','4','T','2025-12-10 05:58:42'),(0,0,3992,0,'Y','2025-12-10','17:20:00','17:30:00','FV','','2','C','2025-12-10 02:36:37'),(0,0,3992,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','6359648014','2','T','2025-12-10 05:20:45'),(0,0,3993,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9930699916','2','T','2025-12-10 06:45:30'),(0,0,3994,0,'Y','2025-12-10','18:40:00','18:50:00','Nc','9696991838','4','C','2025-12-10 04:34:11'),(0,0,3994,0,'Y','2026-03-10','08:00:00','08:30:00','Followup','9696991838','4','T','2025-12-10 06:11:15'),(0,0,3995,0,'Y','2025-12-10','17:30:00','17:40:00','Nv','','2','C','2025-12-10 02:36:51'),(0,0,3995,0,'Y','2026-01-09','08:00:00','08:30:00','Followup','9825665880','2','T','2025-12-10 07:18:45'),(0,0,3996,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7801888444','3','T','2025-12-10 05:54:16'),(0,0,3997,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979898855','5','T','2025-12-11 06:15:58'),(0,0,3998,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','9925340985','4','T','2025-12-10 06:26:21'),(0,0,3999,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7575896010','6','T','2025-12-10 06:40:24'),(0,0,4000,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824583893','2','T','2025-12-10 06:41:19'),(0,0,4000,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9824583893','2','T','2025-12-11 05:41:42'),(0,0,4000,0,'Y','2025-12-22','11:50:00','12:00:00','Fv','9824583893','2','C','2025-12-21 20:18:11'),(0,0,4000,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9824583893','2','T','2025-12-21 23:20:05'),(0,0,4002,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8264028972','5','T','2025-12-10 06:25:37'),(0,0,4003,0,'Y','2026-03-10','08:00:00','08:30:00','Followup','9638220912','4','T','2025-12-10 06:44:07'),(0,0,4004,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427444514','3','T','2025-12-10 06:36:07'),(0,0,4006,0,'Y','2026-01-09','08:00:00','08:30:00','Followup','9724808333','2','T','2025-12-10 07:27:03'),(0,0,4007,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8200447194','4','T','2025-12-10 07:47:32'),(0,0,4008,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426549809','3','T','2025-12-18 05:11:00'),(0,0,4009,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978693780','4','T','2025-12-10 07:55:41'),(0,0,4011,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924310820','3','T','2025-12-12 22:14:32'),(0,0,4012,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9537681776','5','T','2025-12-10 22:54:27'),(0,0,4014,0,'Y','2025-12-11','11:40:00','11:50:00','Fv','9723156475','2','C','2025-12-10 20:15:58'),(0,0,4014,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','9723156475','2','T','2025-12-10 22:35:11'),(0,0,4015,0,'Y','2025-12-11','10:30:00','10:40:00','Nv','9979012244','2','C','2025-12-10 20:13:56'),(0,0,4015,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9979012244','2','T','2025-12-10 23:57:03'),(0,0,4016,0,'Y','2025-12-11','11:30:00','11:40:00','Nv','6354377373','2','C','2025-12-10 20:15:18'),(0,0,4016,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','6354377373','2','T','2025-12-11 00:55:15'),(0,0,4017,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9785280000','2','T','2025-12-10 23:03:31'),(0,0,4017,0,'Y','2025-12-18','18:40:00','18:50:00','','9785280000','2','B','2025-12-18 01:53:19'),(0,0,4017,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9785280000','2','T','2025-12-19 07:12:35'),(0,0,4018,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825588324','5','T','2025-12-10 22:59:38'),(0,0,4019,0,'Y','2026-01-10','08:00:00','08:30:00','Followup','9727474138','2','T','2025-12-10 23:20:59'),(0,0,4020,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913913371','6','T','2025-12-10 23:05:17'),(0,0,4021,0,'Y','2025-12-11','11:10:00','11:20:00','FC','8784617995','4','C','2025-12-10 21:48:13'),(0,0,4021,0,'Y','2026-03-11','08:00:00','08:30:00','Followup','8784617995','4','T','2025-12-10 23:14:16'),(0,0,4022,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9228753375','4','T','2025-12-10 23:33:25'),(0,0,4023,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','8141099275','2','T','2025-12-11 01:44:57'),(0,0,4024,0,'Y','2025-12-11','11:20:00','11:30:00','Nc','8128333388','4','C','2025-12-10 21:48:40'),(0,0,4024,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','8128333388','4','T','2025-12-11 06:50:38'),(0,0,4025,0,'Y','2025-12-11','12:20:00','12:30:00','Fv','9067177288','2','C','2025-12-10 20:17:12'),(0,0,4025,0,'Y','2026-01-20','08:00:00','08:30:00','Followup','9067177288','2','T','2025-12-11 00:08:43'),(0,0,4026,0,'Y','2025-12-11','11:50:00','12:00:00','Fv','7990197773','2','C','2025-12-10 20:16:22'),(0,0,4026,0,'Y','2026-01-10','08:00:00','08:30:00','Followup','7990197773','2','T','2025-12-10 23:42:50'),(0,0,4027,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7861818056','6','T','2025-12-11 05:48:24'),(0,0,4028,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9724136295','5','T','2025-12-11 00:03:04'),(0,0,4029,0,'Y','2025-12-11','12:20:00','12:30:00','FC','9726853209','4','C','2025-12-10 22:27:20'),(0,0,4029,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9726853209','4','T','2025-12-10 23:40:26'),(0,0,4030,0,'Y','2025-12-11','12:00:00','12:10:00','Fc','9723301717','4','C','2025-12-10 21:56:29'),(0,0,4030,0,'Y','2026-03-11','08:00:00','08:30:00','Followup','9723301717','4','T','2025-12-11 00:22:49'),(0,0,4031,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638444483','2','T','2025-12-11 00:28:42'),(0,0,4031,0,'Y','2025-12-11','12:00:00','12:10:00','Nv','7990197773','2','C','2025-12-10 22:30:44'),(0,0,4031,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9638444483','2','T','2025-12-11 05:51:15'),(0,0,4032,0,'Y','2026-01-10','08:00:00','08:30:00','Followup','9726664183','5','T','2025-12-11 00:31:25'),(0,0,4033,0,'Y','2025-12-11','12:10:00','12:20:00','FC','9909908109','4','C','2025-12-10 22:23:46'),(0,0,4033,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9909908109','4','T','2025-12-11 00:10:10'),(0,0,4034,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904088290','5','T','2025-12-11 00:48:48'),(0,0,4035,0,'Y','2026-03-11','08:00:00','08:30:00','Followup','9998381203','4','T','2025-12-11 00:04:45'),(0,0,4036,0,'Y','2025-12-11','12:40:00','12:50:00','Fv','8980174194','2','C','2025-12-10 20:17:49'),(0,0,4036,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','8980174194','2','T','2025-12-11 01:19:01'),(0,0,4036,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','8980174194','2','T','2025-12-21 23:41:40'),(0,0,4037,0,'Y','2026-01-10','08:00:00','08:30:00','Followup','7990353054','4','T','2025-12-11 00:38:33'),(0,0,4038,0,'Y','2026-03-11','08:00:00','08:30:00','Followup','9825935646','4','T','2025-12-11 00:29:39'),(0,0,4039,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9924500012','2','T','2025-12-11 01:41:50'),(0,0,4040,0,'Y','2025-12-11','12:50:00','13:00:00','Fv','9913075932','2','C','2025-12-10 20:18:14'),(0,0,4040,0,'Y','2026-04-10','08:00:00','08:30:00','Followup','9913075932','2','T','2025-12-11 00:53:58'),(0,0,4041,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898017662','5','T','2025-12-11 07:06:29'),(0,0,4042,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7041111158','5','T','2025-12-11 07:01:03'),(0,0,4043,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7537611001','6','T','2025-12-11 05:48:50'),(0,0,4044,0,'Y','2025-12-11','17:30:00','17:40:00','Nv','9664539097','2','C','2025-12-11 03:06:08'),(0,0,4044,0,'Y','2026-01-10','08:00:00','08:30:00','Followup','9664539097','2','T','2025-12-11 06:54:19'),(0,0,4045,0,'Y','2026-04-10','08:00:00','08:30:00','Followup','9638863483','2','T','2025-12-11 04:37:34'),(0,0,4046,0,'Y','2025-12-11','18:30:00','18:40:00','Nv','9426555129','2','C','2025-12-11 03:12:32'),(0,0,4046,0,'Y','2026-01-10','08:00:00','08:30:00','Followup','9426555129','2','T','2025-12-11 07:09:45'),(0,0,4047,0,'Y','2025-12-11','18:50:00','19:00:00','Ne','7567903339','2','C','2025-12-11 03:13:17'),(0,0,4047,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','7567903339','2','T','2025-12-11 05:20:34'),(0,0,4048,0,'Y','2025-12-11','17:00:00','17:10:00','Nv','9725437239','2','C','2025-12-11 03:04:47'),(0,0,4048,0,'Y','2025-12-31','08:00:00','08:30:00','Followup','9725437239','2','T','2025-12-11 07:05:59'),(0,0,4049,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099963317','6','T','2025-12-11 06:01:24'),(0,0,4050,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866112684','6','T','2025-12-11 05:47:52'),(0,0,4051,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033813827','6','T','2025-12-11 05:56:25'),(0,0,4052,0,'Y','2026-01-10','08:00:00','08:30:00','Followup','7984516754','2','T','2025-12-11 06:02:40'),(0,0,4053,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825351400','5','T','2025-12-11 06:57:17'),(0,0,4054,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9313068661','6','T','2025-12-11 06:04:21'),(0,0,4055,0,'Y','2025-12-11','18:10:00','18:20:00','FC','8460549901','4','C','2025-12-11 04:30:23'),(0,0,4055,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','8460549901','4','T','2025-12-11 06:11:33'),(0,0,4056,0,'Y','2026-03-11','08:00:00','08:30:00','Followup','9924922156','4','T','2025-12-11 06:21:13'),(0,0,4057,0,'Y','2026-03-11','08:00:00','08:30:00','Followup','9714397770','4','T','2025-12-11 06:19:02'),(0,0,4059,0,'Y','2025-12-11','18:00:00','18:10:00','FC','8140729295','4','C','2025-12-11 04:29:57'),(0,0,4059,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','8140729295','4','T','2025-12-11 07:10:33'),(0,0,4060,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9504355555','5','T','2025-12-11 06:31:26'),(0,0,4061,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924412145','2','T','2025-12-11 07:04:42'),(0,0,4062,0,'Y','2025-12-11','19:00:00','19:10:00','Nv','8898989034','2','C','2025-12-11 03:13:44'),(0,0,4062,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','8898989034','2','T','2025-12-11 07:25:24'),(0,0,4062,0,'Y','2025-12-22','18:50:00','19:00:00','Fv','8898989034','2','C','2025-12-22 03:49:08'),(0,0,4062,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','8898989034','2','T','2025-12-22 06:33:17'),(0,0,4063,0,'Y','2025-12-11','18:40:00','18:50:00','Nc','9426998707','4','R','2025-12-11 04:32:14'),(0,0,4063,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','9426998707','4','T','2025-12-12 06:41:18'),(0,0,4064,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','9879359849','2','T','2025-12-11 07:27:52'),(0,0,4065,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8278653504','5','T','2025-12-11 06:43:07'),(0,0,4065,0,'Y','2025-12-16','08:00:00','08:30:00','Followup','8278653504','5','T','2025-12-11 07:33:40'),(0,0,4066,0,'Y','2025-12-23','19:00:00','19:10:00','','9879544496','4','R','2025-12-23 05:14:14'),(0,0,4067,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866573768','5','T','2025-12-12 00:44:07'),(0,0,4068,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866521664','4','T','2025-12-12 00:39:38'),(0,0,4069,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9427252639','2','T','2025-12-12 00:44:41'),(0,0,4069,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9427252639','2','T','2025-12-22 04:49:36'),(0,0,4070,0,'Y','2025-12-12','11:50:00','12:00:00','Fv','8849777892','2','C','2025-12-11 20:14:37'),(0,0,4070,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','8849777892','2','T','2025-12-11 23:22:36'),(0,0,4071,0,'Y','2025-12-12','10:30:00','10:40:00','Nv','9426527791','2','C','2025-12-11 20:12:27'),(0,0,4071,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9426527791','2','T','2025-12-12 00:30:26'),(0,0,4072,0,'Y','2025-12-12','11:00:00','11:10:00','Nv','9824874130','2','C','2025-12-11 20:13:18'),(0,0,4072,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9824874130','2','T','2025-12-12 00:57:09'),(0,0,4073,0,'Y','2025-12-12','11:40:00','11:50:00','','7802040004','4','C','2025-12-11 21:31:42'),(0,0,4073,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','7802040004','4','T','2025-12-12 00:20:23'),(0,0,4074,0,'Y','2025-12-12','11:50:00','12:00:00','','7802040004','4','C','2025-12-11 21:32:21'),(0,0,4074,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','7802040004','4','T','2025-12-12 00:22:45'),(0,0,4075,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9875130724','6','T','2025-12-11 23:10:44'),(0,0,4076,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426785203','6','T','2025-12-11 23:23:55'),(0,0,4077,0,'Y','2026-04-11','08:00:00','08:30:00','Followup','7041384755','2','T','2025-12-11 23:53:43'),(0,0,4078,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998818056','5','T','2025-12-11 23:24:32'),(0,0,4079,0,'Y','2025-12-12','11:30:00','11:40:00','','9825147480','4','C','2025-12-11 21:31:15'),(0,0,4079,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9825147480','4','T','2025-12-11 23:23:32'),(0,0,4080,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7984491278','3','T','2025-12-12 21:41:32'),(0,0,4081,0,'Y','2025-12-12','11:10:00','11:20:00','','9328453952','4','C','2025-12-11 21:30:22'),(0,0,4081,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','9328453952','4','T','2025-12-12 00:31:54'),(0,0,4082,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879402429','4','T','2025-12-21 23:08:35'),(0,0,4082,0,'Y','2025-12-12','12:00:00','12:10:00','','9879402429','4','C','2025-12-11 21:32:45'),(0,0,4082,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9879402429','4','T','2025-12-12 06:27:26'),(0,0,4083,0,'Y','2025-12-12','11:00:00','11:10:00','','7984406014','4','C','2025-12-11 21:29:15'),(0,0,4083,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','7984406014','4','T','2025-12-11 23:55:02'),(0,0,4084,0,'Y','2025-12-12','12:20:00','12:30:00','Nc','9898003190','4','C','2025-12-11 22:38:21'),(0,0,4084,0,'Y','2025-12-17','08:00:00','08:30:00','Followup','9898003190','4','T','2025-12-12 00:10:04'),(0,0,4085,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','8780892578','2','T','2025-12-12 00:34:52'),(0,0,4086,0,'Y','2025-12-12','18:00:00','18:10:00','','9099219595','4','B','2025-12-12 04:08:44'),(0,0,4086,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9099219595','4','T','2025-12-12 00:07:09'),(0,0,4087,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909012332','4','T','2025-12-12 06:49:36'),(0,0,4087,0,'Y','2025-12-12','12:10:00','12:20:00','','9909012332','4','C','2025-12-11 21:33:17'),(0,0,4087,0,'Y','2025-12-19','18:30:00','18:40:00','FC','9909012332','4','C','2025-12-19 04:58:23'),(0,0,4088,0,'Y','2025-12-12','12:30:00','12:40:00','FC','7710003781','4','C','2025-12-11 23:01:28'),(0,0,4088,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','7710003781','4','T','2025-12-12 05:40:54'),(0,0,4089,0,'Y','2025-12-12','12:40:00','12:50:00','FC','9662768212','4','C','2025-12-11 23:39:01'),(0,0,4089,0,'Y','2025-12-19','08:00:00','08:30:00','Followup','9662768212','4','T','2025-12-12 00:28:42'),(0,0,4090,0,'Y','2025-12-12','12:30:00','12:40:00','Nv','9979756021','2','C','2025-12-11 21:48:39'),(0,0,4090,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9979756021','2','T','2025-12-12 01:28:00'),(0,0,4092,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9825585407','2','T','2025-12-12 05:31:16'),(0,0,4093,0,'Y','2025-12-12','17:00:00','17:10:00','Nv','9825560998','2','C','2025-12-12 03:05:08'),(0,0,4093,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9825560998','2','T','2025-12-12 06:31:37'),(0,0,4094,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8780836087','4','T','2025-12-12 05:38:02'),(0,0,4094,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','8780836087','4','T','2025-12-12 06:52:41'),(0,0,4095,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426719068','2','T','2025-12-12 05:00:37'),(0,0,4096,0,'Y','2025-12-12','17:10:00','17:20:00','Fv','','2','C','2025-12-12 03:05:40'),(0,0,4096,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','9662065984','2','T','2025-12-12 05:08:23'),(0,0,4097,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825236059','5','T','2025-12-12 06:06:25'),(0,0,4098,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','8320774087','2','T','2025-12-12 05:11:18'),(0,0,4099,0,'Y','2025-12-12','17:30:00','17:40:00','Nv','9427271141','2','C','2025-12-12 03:06:12'),(0,0,4099,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9427271141','2','T','2025-12-12 06:59:19'),(0,0,4099,0,'Y','2025-12-22','17:10:00','17:20:00','Fv','9427271141','2','C','2025-12-22 03:43:04'),(0,0,4099,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','9427271141','2','T','2025-12-22 04:46:46'),(0,0,4100,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','8200811065','2','T','2025-12-12 07:15:19'),(0,0,4100,0,'Y','2025-12-22','18:20:00','18:30:00','Fv','8200811065','2','C','2025-12-22 03:47:15'),(0,0,4100,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','8200811065','2','T','2025-12-22 06:21:08'),(0,0,4101,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9913902595','2','T','2025-12-12 06:20:12'),(0,0,4102,0,'Y','2025-12-12','18:00:00','18:10:00','Nv','8200331527','2','C','2025-12-12 03:07:52'),(0,0,4102,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','8200331527','2','T','2025-12-12 07:02:57'),(0,0,4102,0,'Y','2025-12-22','17:20:00','17:30:00','Fv','8200331527','2','C','2025-12-22 03:43:15'),(0,0,4102,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','8200331527','2','T','2025-12-22 05:14:02'),(0,0,4103,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9033758272','4','T','2025-12-12 05:45:15'),(0,0,4104,0,'Y','2025-12-12','17:40:00','17:50:00','Fv','9904250077','2','C','2025-12-12 03:06:53'),(0,0,4104,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','9904250077','2','T','2025-12-12 06:08:33'),(0,0,4105,0,'Y','2025-12-12','17:50:00','18:00:00','Fv','9909888800','2','C','2025-12-12 03:07:30'),(0,0,4105,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9909888800','2','T','2025-12-12 06:05:21'),(0,0,4106,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7567794748','4','T','2025-12-12 05:51:59'),(0,0,4106,0,'Y','2025-12-12','18:20:00','18:30:00','','','4','C','2025-12-12 04:09:29'),(0,0,4107,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824229609','6','T','2025-12-12 06:08:24'),(0,0,4108,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9033319026','2','T','2025-12-12 06:47:54'),(0,0,4109,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979176727','4','T','2025-12-12 05:58:52'),(0,0,4110,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8758063939','5','T','2025-12-17 06:25:42'),(0,0,4110,0,'Y','2025-12-15','08:00:00','08:30:00','Followup','8758063939','5','T','2025-12-12 06:23:03'),(0,0,4111,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','9824864747','4','T','2025-12-12 06:04:23'),(0,0,4112,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','8460122804','5','T','2025-12-12 06:37:55'),(0,0,4113,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','9824864747','4','T','2025-12-12 06:11:27'),(0,0,4114,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600056733','4','T','2025-12-17 22:45:49'),(0,0,4114,0,'Y','2025-12-12','18:30:00','18:40:00','','7600056733','4','C','2025-12-12 04:10:12'),(0,0,4114,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','7600056733','4','T','2025-12-12 06:20:24'),(0,0,4115,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600056733','4','T','2025-12-17 22:45:26'),(0,0,4115,0,'Y','2025-12-12','18:40:00','18:50:00','','7600056733','4','C','2025-12-12 04:10:52'),(0,0,4115,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','7600056733','4','T','2025-12-12 06:33:59'),(0,0,4116,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979074474','4','T','2025-12-12 06:41:37'),(0,0,4117,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6351586707','7','T','2025-12-12 06:31:28'),(0,0,4118,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','9925019970','4','T','2025-12-12 06:59:14'),(0,0,4119,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998451651','4','T','2025-12-12 06:32:30'),(0,0,4119,0,'Y','2025-12-16','11:50:00','12:00:00','','9998451651','4','B','2025-12-15 22:12:03'),(0,0,4120,0,'Y','2025-12-12','18:40:00','18:50:00','Fv','9537300999','2','C','2025-12-12 03:09:14'),(0,0,4120,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9537300999','2','T','2025-12-12 06:38:07'),(0,0,4121,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9033766220','5','T','2025-12-12 06:42:05'),(0,0,4122,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824465020','4','T','2025-12-12 07:30:06'),(0,0,4122,0,'Y','2025-12-12','19:20:00','19:30:00','','9824465020','4','C','2025-12-12 04:12:07'),(0,0,4123,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714500077','4','T','2025-12-16 00:16:30'),(0,0,4124,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998779577','5','T','2025-12-12 07:06:31'),(0,0,4124,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9998779577','5','T','2025-12-22 05:49:07'),(0,0,4125,0,'Y','2026-03-12','08:00:00','08:30:00','Followup','8200070504','4','T','2025-12-12 07:43:20'),(0,0,4126,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725451111','6','T','2025-12-12 22:27:17'),(0,0,4127,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9099115011','2','T','2025-12-12 07:38:27'),(0,0,4129,0,'Y','2025-12-12','19:30:00','19:40:00','Nc','8460404292','4','R','2025-12-12 05:15:30'),(0,0,4129,0,'Y','2026-02-21','08:00:00','08:30:00','Followup','8460404292','4','T','2025-12-23 00:41:50'),(0,0,4131,0,'Y','2025-12-13','10:30:00','10:40:00','Nv','7567372928','2','C','2025-12-12 20:11:46'),(0,0,4131,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','7567372928','2','T','2025-12-13 00:59:50'),(0,0,4132,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9624141110','3','T','2025-12-12 22:14:59'),(0,0,4133,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8238927541','5','T','2025-12-12 23:02:29'),(0,0,4134,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9998833758','2','T','2025-12-12 23:19:59'),(0,0,4135,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9687739588','3','T','2025-12-12 22:22:02'),(0,0,4136,0,'Y','2025-12-13','12:00:00','12:10:00','NC','8460605688','4','C','2025-12-12 22:03:28'),(0,0,4136,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','8460605688','4','T','2025-12-12 23:35:48'),(0,0,4137,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9664797701','6','T','2025-12-12 22:27:44'),(0,0,4138,0,'Y','2025-12-23','11:10:00','11:20:00','Fv','9427223223','2','C','2025-12-22 20:20:17'),(0,0,4138,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9427223223','2','T','2025-12-13 02:14:59'),(0,0,4138,0,'Y','2026-02-03','08:00:00','08:30:00','Followup','9427223223','2','T','2025-12-22 22:50:22'),(0,0,4139,0,'Y','2025-12-13','12:50:00','13:00:00','Fv','','2','C','2025-12-12 20:22:16'),(0,0,4139,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9924462847','2','T','2025-12-12 23:38:30'),(0,0,4139,0,'Y','2025-12-18','12:10:00','12:20:00','Fv','9924462847','2','C','2025-12-17 20:29:40'),(0,0,4139,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9924462847','2','T','2025-12-18 00:10:44'),(0,0,4141,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','8460027287','4','T','2025-12-12 23:10:36'),(0,0,4142,0,'Y','2025-12-13','11:10:00','11:20:00','Fv','9824399887','2','C','2025-12-12 20:17:33'),(0,0,4142,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9824399887','2','T','2025-12-13 00:19:41'),(0,0,4143,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','9974555515','5','T','2025-12-12 23:10:23'),(0,0,4144,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','6351599661','2','T','2025-12-13 01:28:11'),(0,0,4145,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','8866803043','2','T','2025-12-12 23:59:11'),(0,0,4146,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9979168092','2','T','2025-12-13 01:30:16'),(0,0,4147,0,'Y','2025-12-13','11:00:00','11:10:00','Nv','9727073730','2','C','2025-12-12 20:14:37'),(0,0,4147,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9727073730','2','T','2025-12-13 01:03:06'),(0,0,4148,0,'Y','2025-12-13','12:30:00','12:40:00','Nv','9924190952','2','C','2025-12-12 20:20:39'),(0,0,4148,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9924190952','2','T','2025-12-13 01:52:24'),(0,0,4149,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7874055409','4','T','2025-12-13 00:17:29'),(0,0,4150,0,'Y','2025-12-13','11:30:00','11:40:00','Nv','9998170200','2','C','2025-12-12 20:58:27'),(0,0,4150,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9998170200','2','T','2025-12-13 01:25:40'),(0,0,4151,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9228583283','4','T','2025-12-15 00:14:29'),(0,0,4151,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9228583283','4','T','2025-12-12 23:40:06'),(0,0,4152,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','8238745635','2','T','2025-12-13 00:29:07'),(0,0,4153,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9824437759','2','T','2025-12-13 02:00:22'),(0,0,4154,0,'Y','2025-12-13','11:30:00','11:40:00','Nc','9974700761','4','C','2025-12-12 21:47:04'),(0,0,4154,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9974700761','4','T','2025-12-19 23:18:39'),(0,0,4154,0,'Y','2026-02-07','08:00:00','08:30:00','Followup','9974700761','4','T','2025-12-13 00:07:08'),(0,0,4155,0,'Y','2025-12-18','08:00:00','08:30:00','Followup','9879570930','2','T','2025-12-13 00:53:46'),(0,0,4156,0,'Y','2025-12-13','11:40:00','11:50:00','Fc','8160524909','4','C','2025-12-12 21:47:31'),(0,0,4156,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','8160524909','4','T','2025-12-13 00:15:24'),(0,0,4158,0,'Y','2025-12-13','12:30:00','12:40:00','Fc','9429300354','4','C','2025-12-12 21:48:12'),(0,0,4158,0,'Y','2026-03-13','08:00:00','08:30:00','Followup','9429300354','4','T','2025-12-13 00:24:39'),(0,0,4159,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428727379','5','T','2025-12-13 00:42:45'),(0,0,4160,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725444897','5','T','2025-12-13 00:53:40'),(0,0,4161,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638743467','6','T','2025-12-13 06:33:19'),(0,0,4164,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9429472486','3','T','2025-12-15 05:15:32'),(0,0,4165,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427562494','7','T','2025-12-13 05:52:20'),(0,0,4170,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723015155','3','T','2025-12-18 05:28:54'),(0,0,4175,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925741088','6','T','2025-12-14 23:04:03'),(0,0,4176,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909398598','3','T','2025-12-14 22:30:34'),(0,0,4178,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9428231683','2','T','2025-12-15 00:55:11'),(0,0,4179,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662335889','5','T','2025-12-14 23:06:19'),(0,0,4179,0,'Y','2026-02-13','08:00:00','08:30:00','Followup','9662335889','5','T','2025-12-15 00:14:16'),(0,0,4180,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9228171333','2','T','2025-12-15 01:19:00'),(0,0,4181,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426737350','3','T','2025-12-14 22:45:34'),(0,0,4184,0,'Y','2025-12-15','11:30:00','11:40:00','Nv','9375888884','2','C','2025-12-14 20:12:04'),(0,0,4184,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9375888884','2','T','2025-12-15 01:24:43'),(0,0,4185,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904318401','3','T','2025-12-14 23:34:35'),(0,0,4186,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9510219485','3','T','2025-12-14 23:22:31'),(0,0,4187,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825314600','3','T','2025-12-14 23:36:15'),(0,0,4188,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9712727153','2','T','2025-12-15 01:20:44'),(0,0,4189,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725275153','3','T','2025-12-22 01:44:35'),(0,0,4191,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','8155913519','2','T','2025-12-15 01:59:01'),(0,0,4192,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898604909','5','T','2025-12-15 01:12:04'),(0,0,4193,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898604909','5','T','2025-12-15 01:11:29'),(0,0,4195,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','9624057232','4','T','2025-12-14 23:04:55'),(0,0,4196,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8980855253','3','T','2025-12-14 23:49:13'),(0,0,4197,0,'Y','2025-12-15','11:10:00','11:20:00','','7984973409','4','C','2025-12-14 21:41:44'),(0,0,4197,0,'Y','2026-02-09','08:00:00','08:30:00','Followup','7984973409','4','T','2025-12-15 00:51:02'),(0,0,4198,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9902506776','4','T','2025-12-15 05:48:39'),(0,0,4198,0,'Y','2025-12-15','11:40:00','11:50:00','','9902506776','4','C','2025-12-14 21:43:26'),(0,0,4198,0,'Y','2025-12-17','11:10:00','11:20:00','','9902506776','4','B','2025-12-16 20:57:56'),(0,0,4198,0,'Y','2025-12-22','11:30:00','11:40:00','Fc','9902506776','4','C','2025-12-21 21:47:56'),(0,0,4198,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9902506776','4','T','2025-12-22 00:30:25'),(0,0,4199,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427667322','5','T','2025-12-14 23:21:20'),(0,0,4200,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','7600854099','2','T','2025-12-15 01:31:46'),(0,0,4202,0,'Y','2025-12-15','11:20:00','11:30:00','','8320268044','4','C','2025-12-14 21:42:25'),(0,0,4202,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','8320268044','4','T','2025-12-15 05:58:10'),(0,0,4202,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','8320268044','4','T','2025-12-14 23:23:41'),(0,0,4205,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978231732','6','T','2025-12-14 23:28:18'),(0,0,4206,0,'Y','2025-12-15','11:50:00','12:00:00','Fv','9428703204','2','C','2025-12-14 20:13:14'),(0,0,4206,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9428703204','2','T','2025-12-15 01:38:52'),(0,0,4207,0,'Y','2025-12-15','11:00:00','11:10:00','','6351921240','4','C','2025-12-14 21:41:01'),(0,0,4207,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','6351921240','4','T','2025-12-14 23:26:27'),(0,0,4208,0,'Y','2025-12-15','11:50:00','12:00:00','','7575010070','4','C','2025-12-14 21:49:59'),(0,0,4208,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','7575010070','4','T','2025-12-14 23:33:30'),(0,0,4209,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426413581','6','T','2025-12-14 23:49:39'),(0,0,4210,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','6352593298','2','T','2025-12-15 00:40:39'),(0,0,4211,0,'Y','2025-12-15','12:00:00','12:10:00','','','4','C','2025-12-14 21:50:11'),(0,0,4211,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','9723026143','4','T','2025-12-14 23:39:07'),(0,0,4213,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978474200','5','T','2025-12-14 23:31:40'),(0,0,4214,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998243358','6','T','2025-12-15 00:16:25'),(0,0,4215,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9726363715','3','T','2025-12-15 00:11:25'),(0,0,4216,0,'Y','2025-12-15','12:30:00','12:40:00','Nv','7874344198','2','C','2025-12-14 20:16:38'),(0,0,4216,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','7874344198','2','T','2025-12-15 01:45:53'),(0,0,4217,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','7228852285','5','T','2025-12-15 00:25:07'),(0,0,4217,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','7228852285','5','T','2025-12-15 01:30:58'),(0,0,4218,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9409072207','3','T','2025-12-14 23:53:02'),(0,0,4219,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7433061583','6','T','2025-12-14 23:57:25'),(0,0,4220,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8758242442','3','T','2025-12-15 00:17:04'),(0,0,4221,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9714445689','2','T','2025-12-15 01:49:36'),(0,0,4223,0,'Y','2026-02-13','08:00:00','08:30:00','Followup','8160444313','5','T','2025-12-15 01:09:38'),(0,0,4224,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','7574996626','4','T','2025-12-15 00:46:30'),(0,0,4225,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7016122817','3','T','2025-12-15 04:27:49'),(0,0,4226,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9601038888','4','T','2025-12-16 00:40:53'),(0,0,4230,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9558121203','2','T','2025-12-15 06:27:02'),(0,0,4232,0,'Y','2025-12-15','17:40:00','17:50:00','Nv','','2','C','2025-12-15 01:59:51'),(0,0,4232,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9725833006','2','T','2025-12-15 05:11:56'),(0,0,4232,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9725833006','2','T','2025-12-22 00:34:03'),(0,0,4233,0,'Y','0000-00-00','08:00:00','08:30:00','Followup','9825208688','7','T','2025-12-16 00:13:54'),(0,0,4234,0,'Y','2025-12-15','18:00:00','18:10:00','Nv','','2','C','2025-12-15 01:59:37'),(0,0,4234,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','8160380976','2','T','2025-12-15 07:07:27'),(0,0,4235,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925487576','3','T','2025-12-15 08:11:55'),(0,0,4236,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428469284','3','T','2025-12-15 06:31:26'),(0,0,4237,0,'Y','2025-12-15','17:30:00','17:40:00','Nv','','2','C','2025-12-15 03:53:35'),(0,0,4237,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9879493030','2','T','2025-12-15 06:39:16'),(0,0,4238,0,'Y','2025-12-15','17:00:00','17:10:00','Nv','','2','C','2025-12-15 01:58:47'),(0,0,4238,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9909499574','2','T','2025-12-15 07:17:40'),(0,0,4239,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9426876864','2','T','2025-12-15 07:20:36'),(0,0,4240,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','9898689868','5','T','2025-12-15 06:09:58'),(0,0,4241,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033033549','6','T','2025-12-15 05:41:56'),(0,0,4242,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825046467','4','T','2025-12-17 22:30:08'),(0,0,4242,0,'Y','2025-12-15','18:20:00','18:30:00','','','4','C','2025-12-15 03:59:37'),(0,0,4242,0,'Y','2025-12-18','11:20:00','11:30:00','','9825046467','4','C','2025-12-17 21:21:55'),(0,0,4242,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9825046467','4','T','2025-12-15 06:06:30'),(0,0,4244,0,'Y','2026-01-14','08:00:00','08:30:00','Followup','9051231051','4','T','2025-12-15 06:15:03'),(0,0,4245,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','9825304401','4','T','2025-12-15 06:19:08'),(0,0,4246,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9586188417','3','T','2025-12-15 06:23:00'),(0,0,4247,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9327124244','2','T','2025-12-15 07:22:55'),(0,0,4248,0,'Y','2025-12-15','19:00:00','19:10:00','Nv','','2','C','2025-12-15 02:00:53'),(0,0,4248,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9898170543','2','T','2025-12-15 07:45:16'),(0,0,4249,0,'Y','2025-12-15','18:00:00','18:10:00','','7227000123','4','C','2025-12-15 03:59:01'),(0,0,4249,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','7227000123','4','T','2025-12-15 06:43:33'),(0,0,4250,0,'Y','2025-12-15','19:20:00','19:30:00','','','4','C','2025-12-15 04:02:04'),(0,0,4250,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9879760082','4','T','2025-12-15 06:58:13'),(0,0,4251,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','9265773657','4','T','2025-12-15 07:02:21'),(0,0,4252,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898365676','2','T','2025-12-15 07:54:54'),(0,0,4252,0,'Y','2026-01-06','08:00:00','08:30:00','Followup','9898365676','2','T','2025-12-16 06:11:18'),(0,0,4253,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','9824311490','4','T','2025-12-15 07:06:17'),(0,0,4254,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','8849713115','2','T','2025-12-15 08:04:31'),(0,0,4255,0,'Y','2025-12-20','08:00:00','08:30:00','Followup','9428298466','2','T','2025-12-15 07:57:18'),(0,0,4256,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9924015436','4','T','2025-12-16 00:16:06'),(0,0,4259,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9998640856','2','T','2025-12-15 08:07:38'),(0,0,4261,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9265847753','3','T','2025-12-16 05:58:21'),(0,0,4263,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','9998272900','4','T','2025-12-15 23:56:02'),(0,0,4264,0,'Y','2025-12-16','10:30:00','10:40:00','Nv','9979672421','2','C','2025-12-15 20:06:55'),(0,0,4264,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','9979672421','2','T','2025-12-16 00:43:18'),(0,0,4265,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','8238202128','4','T','2025-12-15 23:09:56'),(0,0,4266,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825827599','2','T','2025-12-16 01:41:37'),(0,0,4267,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','9879309289','4','T','2025-12-15 23:19:05'),(0,0,4268,0,'Y','2025-12-16','11:00:00','11:10:00','Nv','9574465809','2','C','2025-12-15 20:50:19'),(0,0,4268,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9574465809','2','T','2025-12-16 00:49:40'),(0,0,4269,0,'Y','2025-12-16','11:30:00','11:40:00','Nv','9313455017','2','C','2025-12-15 20:08:52'),(0,0,4269,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9313455017','2','T','2025-12-16 01:35:36'),(0,0,4270,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9512050362','6','T','2025-12-15 23:48:18'),(0,0,4271,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9328108054','2','T','2025-12-16 00:13:29'),(0,0,4272,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8799628181','3','T','2025-12-15 23:51:10'),(0,0,4273,0,'Y','2025-12-16','12:00:00','12:10:00','','9727611222','4','C','2025-12-15 22:12:40'),(0,0,4273,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','9727611222','4','T','2025-12-15 23:43:41'),(0,0,4274,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998624100','4','T','2025-12-15 22:56:39'),(0,0,4275,0,'Y','2026-03-26','08:00:00','08:30:00','Followup','6351677877','4','T','2025-12-15 23:48:34'),(0,0,4276,0,'Y','2025-12-16','11:30:00','11:40:00','','9227700983','4','C','2025-12-15 22:11:04'),(0,0,4276,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','9227700983','4','T','2025-12-15 23:25:15'),(0,0,4277,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9638026632','4','T','2025-12-16 06:11:32'),(0,0,4278,0,'Y','2025-12-16','11:10:00','11:20:00','','9824222029','4','C','2025-12-15 22:10:06'),(0,0,4278,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','9824222029','4','T','2025-12-16 07:30:22'),(0,0,4279,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9376872700','5','T','2025-12-15 23:28:34'),(0,0,4279,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','9376872700','5','T','2025-12-16 01:05:01'),(0,0,4279,0,'Y','2026-02-14','08:00:00','08:30:00','Followup','9376872700','5','T','2025-12-16 00:58:56'),(0,0,4280,0,'Y','2025-12-16','11:40:00','11:50:00','','9428703028','4','C','2025-12-15 22:11:41'),(0,0,4280,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9428703028','4','T','2025-12-16 00:07:46'),(0,0,4281,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160727699','3','T','2025-12-16 05:58:42'),(0,0,4282,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925373256','5','T','2025-12-15 23:57:52'),(0,0,4283,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427770707','5','T','2025-12-15 23:49:04'),(0,0,4284,0,'Y','2025-12-16','12:00:00','12:10:00','Nv','9825416032','2','C','2025-12-15 23:20:11'),(0,0,4284,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9825416032','2','T','2025-12-16 01:46:11'),(0,0,4285,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8849364494','4','T','2025-12-16 05:33:18'),(0,0,4286,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','9998424846','5','T','2025-12-15 23:41:47'),(0,0,4287,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','9426255815','5','T','2025-12-15 23:57:13'),(0,0,4288,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9099055740','2','T','2025-12-16 01:51:52'),(0,0,4289,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','9727311222','4','T','2025-12-16 07:27:54'),(0,0,4290,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924957381','3','T','2025-12-16 05:59:07'),(0,0,4291,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9375000303','3','T','2025-12-16 06:02:45'),(0,0,4292,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','8347600444','4','T','2025-12-16 00:42:49'),(0,0,4293,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','8160527138','4','T','2025-12-16 00:36:54'),(0,0,4294,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','9714484489','4','T','2025-12-16 07:24:31'),(0,0,4295,0,'Y','2026-02-14','08:00:00','08:30:00','Followup','9687362664','5','T','2025-12-16 00:50:31'),(0,0,4296,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9687394999','4','T','2025-12-16 00:53:40'),(0,0,4297,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898032350','2','T','2025-12-16 01:23:26'),(0,0,4297,0,'Y','2025-12-16','12:30:00','12:40:00','Nv','9898032350','2','C','2025-12-15 20:11:09'),(0,0,4298,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9724641157','4','T','2025-12-16 23:14:37'),(0,0,4298,0,'Y','2025-12-23','12:30:00','12:40:00','Fc','9724641157','4','C','2025-12-22 21:56:45'),(0,0,4298,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9724641157','4','T','2025-12-23 00:23:45'),(0,0,4298,0,'Y','2026-02-10','08:00:00','08:30:00','Followup','9724641157','4','T','2025-12-16 00:56:44'),(0,0,4299,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8000680001','4','T','2025-12-16 01:04:23'),(0,0,4300,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9925028157','2','T','2025-12-16 02:08:16'),(0,0,4302,0,'Y','2025-12-16','17:30:00','17:40:00','Nv','','2','C','2025-12-16 03:48:28'),(0,0,4302,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','8849727316','2','T','2025-12-16 06:46:50'),(0,0,4303,0,'Y','2025-12-16','16:40:00','16:50:00','FV','','2','C','2025-12-16 02:19:59'),(0,0,4303,0,'Y','2026-03-26','08:00:00','08:30:00','Followup','8849090743','2','T','2025-12-16 04:49:42'),(0,0,4304,0,'Y','2025-12-16','17:00:00','17:10:00','Nv','','2','C','2025-12-16 02:20:28'),(0,0,4304,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9913539591','2','T','2025-12-16 06:41:51'),(0,0,4305,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','7490825858','4','T','2025-12-16 05:52:18'),(0,0,4306,0,'Y','2025-12-16','18:00:00','18:10:00','Nv','','2','C','2025-12-16 04:56:34'),(0,0,4306,0,'Y','2026-01-05','08:00:00','08:30:00','Followup','9998655185','2','T','2025-12-16 07:41:04'),(0,0,4307,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9824534015','2','T','2025-12-16 05:49:12'),(0,0,4308,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428226744','7','T','2025-12-16 07:03:48'),(0,0,4309,0,'Y','2025-12-16','17:50:00','18:00:00','FV','','2','C','2025-12-16 02:21:41'),(0,0,4309,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','8200416916','2','T','2025-12-16 05:44:52'),(0,0,4310,0,'Y','2025-12-16','18:10:00','18:20:00','NC','','4','C','2025-12-16 04:19:02'),(0,0,4310,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','9228604403','4','T','2025-12-16 06:19:31'),(0,0,4311,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9824897509','4','T','2025-12-16 06:22:39'),(0,0,4312,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9664856250','6','T','2025-12-16 05:56:40'),(0,0,4313,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638575954','5','T','2025-12-16 05:50:35'),(0,0,4314,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978430843','4','T','2025-12-18 22:44:51'),(0,0,4314,0,'Y','2025-12-16','18:20:00','18:30:00','NC','','4','C','2025-12-16 04:19:14'),(0,0,4314,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9978430843','4','T','2025-12-16 06:31:38'),(0,0,4315,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','94090006399','4','T','2025-12-16 06:52:08'),(0,0,4316,0,'Y','2025-12-16','18:50:00','19:00:00','FV','','2','C','2025-12-16 02:22:42'),(0,0,4316,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9879533449','2','T','2025-12-16 06:17:29'),(0,0,4317,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925800079','4','T','2025-12-16 22:55:18'),(0,0,4318,0,'Y','2025-12-16','18:40:00','18:50:00','Fc','','4','C','2025-12-16 04:20:03'),(0,0,4318,0,'Y','2026-03-16','08:00:00','08:30:00','Followup','7698027933','4','T','2025-12-16 06:46:49'),(0,0,4320,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9925233256','5','T','2025-12-16 06:38:48'),(0,0,4321,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9824833105','2','T','2025-12-16 07:52:52'),(0,0,4322,0,'Y','2026-01-15','08:00:00','08:30:00','Followup','9510496555','2','T','2025-12-16 07:09:02'),(0,0,4323,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6352355007','5','T','2025-12-16 06:47:46'),(0,0,4324,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9925915311','2','T','2025-12-16 07:34:41'),(0,0,4325,0,'Y','2025-12-20','11:20:00','11:30:00','','9925474275','4','C','2025-12-19 20:48:12'),(0,0,4325,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9925474275','4','T','2025-12-19 23:55:35'),(0,0,4326,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925723815','4','T','2025-12-16 23:14:45'),(0,0,4327,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8866573768','5','T','2025-12-17 06:02:33'),(0,0,4328,0,'Y','2025-12-17','10:30:00','10:40:00','NV','','2','C','2025-12-16 20:22:34'),(0,0,4328,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','8000570016','2','T','2025-12-17 00:19:28'),(0,0,4329,0,'Y','2025-12-17','11:30:00','11:40:00','NV','','2','C','2025-12-16 20:28:17'),(0,0,4329,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9099141204','2','T','2025-12-17 00:54:50'),(0,0,4330,0,'Y','2025-12-17','10:40:00','10:50:00','FV','','2','C','2025-12-16 20:23:03'),(0,0,4330,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','8530870402','2','T','2025-12-16 22:43:01'),(0,0,4331,0,'Y','2025-12-17','11:00:00','11:10:00','NV','','2','C','2025-12-16 20:24:05'),(0,0,4331,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','9824561407','2','T','2025-12-17 00:32:26'),(0,0,4332,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8179309454','3','T','2025-12-17 06:19:02'),(0,0,4333,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9979799303','2','T','2025-12-16 23:33:50'),(0,0,4334,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9725512651','5','T','2025-12-16 23:08:21'),(0,0,4334,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','9725512651','5','T','2025-12-17 00:06:46'),(0,0,4335,0,'Y','2025-12-17','12:00:00','12:10:00','NV','','2','C','2025-12-16 20:24:39'),(0,0,4335,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9824598577','2','T','2025-12-17 01:15:47'),(0,0,4336,0,'Y','2025-12-17','12:30:00','12:40:00','NV','','2','C','2025-12-16 22:32:18'),(0,0,4336,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9428287108','2','T','2025-12-17 01:28:09'),(0,0,4337,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9712210614','6','T','2025-12-16 23:07:20'),(0,0,4338,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998890061','6','T','2025-12-16 23:14:55'),(0,0,4339,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904736303','6','T','2025-12-16 23:20:48'),(0,0,4340,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638667271','4','T','2025-12-16 23:42:57'),(0,0,4341,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925725445','3','T','2025-12-17 06:14:29'),(0,0,4343,0,'Y','2025-12-17','11:50:00','05:30:00','FV','','2','C','2025-12-16 20:26:00'),(0,0,4343,0,'Y','2026-03-27','08:00:00','08:30:00','Followup','9979051271','2','T','2025-12-16 23:45:41'),(0,0,4344,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925020913','5','T','2025-12-16 23:56:02'),(0,0,4345,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879309256','5','T','2025-12-16 23:47:34'),(0,0,4346,0,'Y','2025-12-17','11:20:00','11:30:00','','','4','C','2025-12-16 21:44:05'),(0,0,4346,0,'Y','2026-02-11','08:00:00','08:30:00','Followup','7874143463','4','T','2025-12-17 00:38:28'),(0,0,4347,0,'Y','2025-12-17','11:30:00','11:40:00','','','4','C','2025-12-16 21:58:14'),(0,0,4347,0,'Y','2026-02-16','08:00:00','08:30:00','Followup','9909926500','4','T','2025-12-17 00:22:46'),(0,0,4348,0,'Y','2025-12-17','12:10:00','12:20:00','FV','','2','C','2025-12-16 20:27:15'),(0,0,4348,0,'Y','2026-04-16','08:00:00','08:30:00','Followup','9726822500','2','T','2025-12-17 00:52:12'),(0,0,4350,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','7284808455','2','T','2025-12-17 02:01:38'),(0,0,4351,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8401544614','2','T','2025-12-17 04:51:40'),(0,0,4352,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9979951010','2','T','2025-12-17 05:44:33'),(0,0,4352,0,'Y','2026-03-02','08:00:00','08:30:00','Followup','9979951010','2','T','2025-12-17 05:12:35'),(0,0,4353,0,'Y','2026-03-17','08:00:00','08:30:00','Followup','9825215251','4','T','2025-12-17 06:53:34'),(0,0,4354,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825281877','5','T','2025-12-17 05:51:34'),(0,0,4354,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9825281877','5','T','2025-12-17 06:52:54'),(0,0,4355,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','9998778210','2','T','2025-12-17 06:58:12'),(0,0,4356,0,'Y','2026-03-17','08:00:00','08:30:00','Followup','9879573401','4','T','2025-12-17 06:09:41'),(0,0,4358,0,'Y','2025-12-17','17:30:00','17:40:00','Nv','','2','C','2025-12-17 01:44:21'),(0,0,4358,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','9921548198','2','T','2025-12-17 06:51:43'),(0,0,4359,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824892024','3','T','2025-12-17 06:12:55'),(0,0,4360,0,'Y','2025-12-17','18:00:00','18:10:00','NV','','2','C','2025-12-17 01:45:57'),(0,0,4360,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','6355539557','2','T','2025-12-17 07:19:45'),(0,0,4361,0,'Y','2025-12-17','18:20:00','18:30:00','FV','','2','C','2025-12-17 01:46:53'),(0,0,4361,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','6354942172','2','T','2025-12-17 06:17:03'),(0,0,4362,0,'Y','2025-12-17','18:30:00','18:40:00','NV','','2','C','2025-12-17 05:31:27'),(0,0,4362,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9638582218','2','T','2025-12-17 06:36:47'),(0,0,4363,0,'Y','2025-12-17','18:20:00','18:30:00','','','4','C','2025-12-17 04:41:57'),(0,0,4363,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9978916287','4','T','2025-12-17 06:32:17'),(0,0,4364,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','8299723937','4','T','2025-12-17 06:48:50'),(0,0,4365,0,'Y','2026-03-17','08:00:00','08:30:00','Followup','9712197342','5','T','2025-12-17 05:59:46'),(0,0,4366,0,'Y','2026-04-16','08:00:00','08:30:00','Followup','9574001801','2','T','2025-12-17 06:46:13'),(0,0,4367,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7383991361','4','T','2025-12-20 00:15:07'),(0,0,4367,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','7383991361','4','T','2025-12-17 06:51:17'),(0,0,4368,0,'Y','2025-12-17','18:10:00','18:20:00','Nv','','2','C','2025-12-17 01:46:32'),(0,0,4368,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9727042444','2','T','2025-12-17 06:11:42'),(0,0,4369,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9909600025','3','T','2025-12-22 07:23:35'),(0,0,4370,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','984416761','6','T','2025-12-17 06:00:24'),(0,0,4371,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998141282','4','T','2025-12-17 06:38:22'),(0,0,4371,0,'Y','2025-12-17','18:30:00','18:40:00','','','4','C','2025-12-17 04:42:18'),(0,0,4372,0,'Y','2026-01-16','08:00:00','08:30:00','Followup','8849143516','4','T','2025-12-17 06:59:44'),(0,0,4373,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9428252646','2','T','2025-12-17 07:15:18'),(0,0,4374,0,'Y','2025-12-17','18:50:00','19:00:00','','','4','C','2025-12-17 05:01:25'),(0,0,4374,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','8849106390','4','T','2025-12-17 07:03:31'),(0,0,4374,0,'Y','2025-12-23','12:20:00','12:30:00','Fc','8849106390','4','R','2025-12-22 21:52:11'),(0,0,4376,0,'Y','2025-12-17','19:20:00','19:30:00','','','4','C','2025-12-17 04:42:38'),(0,0,4376,0,'Y','2025-12-23','18:40:00','18:50:00','Fc','9824560944','4','B','2025-12-23 05:03:02'),(0,0,4376,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9824560944','4','T','2025-12-17 07:15:51'),(0,0,4377,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9723442220','4','T','2025-12-17 07:23:53'),(0,0,4378,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9140265957','4','T','2025-12-17 07:37:22'),(0,0,4379,0,'Y','2026-03-17','08:00:00','08:30:00','Followup','9879333351','4','T','2025-12-17 07:50:24'),(0,0,4380,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','8141895970','5','T','2025-12-17 07:13:42'),(0,0,4381,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427410922','5','T','2025-12-17 07:26:18'),(0,0,4382,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925612829','5','T','2025-12-17 07:32:45'),(0,0,4383,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723517654','4','T','2025-12-17 07:41:13'),(0,0,4385,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033327048','3','T','2025-12-17 22:24:51'),(0,0,4386,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9824636111','4','T','2025-12-18 06:04:42'),(0,0,4387,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','74900361333','4','T','2025-12-17 23:47:38'),(0,0,4388,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9998118592','2','T','2025-12-18 00:20:00'),(0,0,4389,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','8758888848','4','T','2025-12-17 22:40:04'),(0,0,4391,0,'Y','2025-12-18','11:10:00','11:20:00','Fv','','2','C','2025-12-17 20:28:20'),(0,0,4391,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','8849964286','2','T','2025-12-18 00:22:08'),(0,0,4392,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9723517654','3','T','2025-12-18 06:04:00'),(0,0,4393,0,'Y','2025-12-18','11:40:00','11:50:00','Fv','','2','C','2025-12-17 20:28:56'),(0,0,4393,0,'Y','2026-03-28','08:00:00','08:30:00','Followup','9726502830','2','T','2025-12-17 22:55:07'),(0,0,4394,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7069936998','5','T','2025-12-17 22:51:12'),(0,0,4395,0,'Y','2025-12-18','11:00:00','11:10:00','','','4','C','2025-12-17 21:21:25'),(0,0,4395,0,'Y','2026-03-18','08:00:00','08:30:00','Followup','9824849547','4','T','2025-12-17 22:22:38'),(0,0,4396,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9825173833','2','T','2025-12-18 00:41:26'),(0,0,4397,0,'Y','2025-12-18','11:10:00','11:20:00','','','4','C','2025-12-17 21:21:43'),(0,0,4397,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9664572824','4','T','2025-12-17 22:27:43'),(0,0,4399,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9664572824','2','T','2025-12-17 23:19:21'),(0,0,4400,0,'Y','2025-12-18','11:30:00','11:40:00','Nv','','2','C','2025-12-17 22:31:30'),(0,0,4400,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9924627700','2','T','2025-12-17 23:09:45'),(0,0,4401,0,'Y','2025-12-18','11:00:00','11:10:00','Nv','','2','C','2025-12-17 20:27:53'),(0,0,4401,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9825476217','2','T','2025-12-18 00:50:35'),(0,0,4402,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9925068837','4','T','2025-12-17 22:59:36'),(0,0,4403,0,'Y','2026-02-16','08:00:00','08:30:00','Followup','9879074559','5','T','2025-12-17 23:01:55'),(0,0,4404,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','875867676767','4','T','2025-12-18 06:04:32'),(0,0,4406,0,'Y','2025-12-18','11:40:00','11:50:00','','','4','C','2025-12-17 21:24:26'),(0,0,4406,0,'Y','2026-03-18','08:00:00','08:30:00','Followup','9510517975','4','T','2025-12-17 23:20:39'),(0,0,4407,0,'Y','2025-12-18','11:30:00','11:40:00','','','4','C','2025-12-17 21:22:18'),(0,0,4407,0,'Y','2026-03-18','08:00:00','08:30:00','Followup','8530275587','4','T','2025-12-17 23:26:04'),(0,0,4408,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8511119323','3','T','2025-12-18 05:19:27'),(0,0,4409,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9408046281','6','T','2025-12-17 23:56:28'),(0,0,4410,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9824281722','2','T','2025-12-18 00:30:55'),(0,0,4411,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6351514432','6','T','2025-12-18 06:16:24'),(0,0,4412,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9913434023','3','T','2025-12-17 23:56:48'),(0,0,4413,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7567046974','5','T','2025-12-18 00:04:21'),(0,0,4414,0,'Y','2026-03-18','08:00:00','08:30:00','Followup','9904228223','4','T','2025-12-18 00:11:15'),(0,0,4415,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7405250998','3','T','2025-12-18 05:47:21'),(0,0,4416,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9638105324','5','T','2025-12-18 00:13:03'),(0,0,4417,0,'Y','2026-04-17','08:00:00','08:30:00','Followup','9898759182','2','T','2025-12-18 00:50:03'),(0,0,4419,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9205895912','5','T','2025-12-18 05:39:48'),(0,0,4420,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9725809633','2','T','2025-12-18 05:30:45'),(0,0,4421,0,'Y','2025-12-18','17:20:00','17:30:00','FV','','2','C','2025-12-18 01:51:12'),(0,0,4421,0,'Y','2026-02-16','08:00:00','08:30:00','Followup','7874716006','2','T','2025-12-18 04:56:43'),(0,0,4422,0,'Y','2025-12-18','17:00:00','17:10:00','','','2','C','2025-12-18 01:44:22'),(0,0,4422,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9909271627','2','T','2025-12-18 06:08:04'),(0,0,4423,0,'Y','2025-12-18','17:30:00','17:40:00','Nv','','2','C','2025-12-18 01:51:46'),(0,0,4423,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9099095545','2','T','2025-12-18 06:42:38'),(0,0,4424,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9664949047','6','T','2025-12-18 06:30:42'),(0,0,4425,0,'Y','2025-12-18','17:40:00','17:50:00','FV','','2','C','2025-12-18 01:52:09'),(0,0,4425,0,'Y','2026-02-16','08:00:00','08:30:00','Followup','8128064075','2','T','2025-12-18 05:33:38'),(0,0,4426,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160686261','6','T','2025-12-18 06:17:19'),(0,0,4427,0,'Y','2025-12-18','18:30:00','18:40:00','Nv','','2','C','2025-12-18 05:16:05'),(0,0,4427,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9898922551','2','T','2025-12-18 07:08:03'),(0,0,4428,0,'Y','2026-03-09','08:00:00','08:30:00','Followup','9824839551','2','T','2025-12-18 06:05:42'),(0,0,4429,0,'Y','2025-12-18','18:00:00','18:10:00','Nv','','2','C','2025-12-18 01:52:44'),(0,0,4429,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','6352034760','2','T','2025-12-18 07:26:20'),(0,0,4430,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9624305462','4','T','2025-12-18 06:00:52'),(0,0,4431,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8000054595','3','T','2025-12-18 05:46:37'),(0,0,4434,0,'Y','2026-02-16','08:00:00','08:30:00','Followup','9428400013','5','T','2025-12-18 06:06:22'),(0,0,4435,0,'Y','2026-01-17','08:00:00','08:30:00','Followup','9428400013','5','T','2025-12-18 06:11:52'),(0,0,4436,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428400013','5','T','2025-12-18 06:15:23'),(0,0,4437,0,'Y','2026-02-16','08:00:00','08:30:00','Followup','9428400013','5','T','2025-12-18 06:24:26'),(0,0,4438,0,'Y','2026-03-28','08:00:00','08:30:00','Followup','9825215280','4','T','2025-12-18 06:04:00'),(0,0,4439,0,'Y','2025-12-18','18:50:00','19:00:00','','','4','C','2025-12-18 04:15:04'),(0,0,4439,0,'Y','2026-03-18','08:00:00','08:30:00','Followup','9979949214','4','T','2025-12-18 06:12:24'),(0,0,4440,0,'Y','2025-12-23','08:00:00','08:30:00','Followup','9408330176','2','T','2025-12-18 06:21:43'),(0,0,4441,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9898994230','4','T','2025-12-19 05:54:10'),(0,0,4441,0,'Y','2025-12-18','18:00:00','18:10:00','','','4','R','2025-12-18 04:11:49'),(0,0,4442,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9825348466','4','T','2025-12-18 06:22:25'),(0,0,4443,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9825348466','4','T','2025-12-18 06:26:55'),(0,0,4444,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8140404470','4','T','2025-12-19 07:11:28'),(0,0,4445,0,'Y','2026-03-18','08:00:00','08:30:00','Followup','9428788579','4','T','2025-12-18 06:47:33'),(0,0,4446,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','8347367579','2','T','2025-12-18 07:01:35'),(0,0,4447,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8160022829','7','T','2025-12-22 00:28:08'),(0,0,4448,0,'Y','2026-03-18','08:00:00','08:30:00','Followup','9879221658','4','T','2025-12-18 06:56:56'),(0,0,4449,0,'Y','2026-03-18','08:00:00','08:30:00','Followup','9879221658','4','T','2025-12-18 07:00:16'),(0,0,4450,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9033343144','3','T','2025-12-18 07:09:52'),(0,0,4451,0,'Y','2026-03-18','08:00:00','08:30:00','Followup','9429189066','4','T','2025-12-18 07:29:43'),(0,0,4454,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9352168565','5','T','2025-12-18 23:57:47'),(0,0,4455,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9265414032','3','T','2025-12-23 00:12:45'),(0,0,4456,0,'Y','2026-01-03','08:00:00','08:30:00','Followup','9924351774','2','T','2025-12-19 01:02:43'),(0,0,4457,0,'Y','2026-03-19','08:00:00','08:30:00','Followup','9316903587','4','T','2025-12-18 22:38:10'),(0,0,4458,0,'Y','2025-12-19','12:00:00','12:10:00','Nv','','2','C','2025-12-18 20:33:57'),(0,0,4458,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9913253725','2','T','2025-12-19 01:34:49'),(0,0,4459,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9879332434','4','T','2025-12-18 23:09:07'),(0,0,4460,0,'Y','2025-12-19','10:30:00','10:40:00','Nv','','2','C','2025-12-18 20:30:12'),(0,0,4460,0,'Y','2026-01-03','08:00:00','08:30:00','Followup','9408663815','2','T','2025-12-19 00:43:49'),(0,0,4461,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428125911','5','T','2025-12-18 23:13:10'),(0,0,4463,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9568000789','5','T','2025-12-18 23:16:30'),(0,0,4464,0,'Y','2025-12-19','11:30:00','11:40:00','Nv','','2','C','2025-12-18 20:32:36'),(0,0,4464,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','8160042828','2','T','2025-12-19 01:26:20'),(0,0,4465,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904344489','3','T','2025-12-18 22:44:22'),(0,0,4466,0,'Y','2025-12-19','11:30:00','11:40:00','FC','','4','C','2025-12-18 21:49:07'),(0,0,4466,0,'Y','2026-06-17','08:00:00','08:30:00','Followup','9879221630','4','T','2025-12-18 23:25:47'),(0,0,4468,0,'Y','2025-12-26','08:00:00','08:30:00','Followup','9687780989','4','T','2025-12-19 06:01:40'),(0,0,4469,0,'Y','2026-04-18','08:00:00','08:30:00','Followup','9998389011','2','T','2025-12-19 00:04:13'),(0,0,4470,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9979999484','5','T','2025-12-18 23:22:35'),(0,0,4471,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','8320283040','2','T','2025-12-19 00:22:57'),(0,0,4472,0,'Y','2025-12-19','11:00:00','11:10:00','Nv','','2','C','2025-12-18 20:31:46'),(0,0,4472,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','7600081245','2','T','2025-12-19 01:38:18'),(0,0,4473,0,'Y','2026-03-19','08:00:00','08:30:00','Followup','8866218357','4','T','2025-12-18 23:19:49'),(0,0,4474,0,'Y','2025-12-19','11:40:00','11:50:00','FC','','4','C','2025-12-18 21:49:51'),(0,0,4474,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','8160906269','4','T','2025-12-18 23:16:52'),(0,0,4475,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9601507050','3','T','2025-12-18 23:29:38'),(0,0,4476,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9429189387','2','T','2025-12-19 01:02:10'),(0,0,4477,0,'Y','2026-06-17','08:00:00','08:30:00','Followup','9824905626','4','T','2025-12-18 23:33:25'),(0,0,4478,0,'Y','2025-12-19','11:50:00','12:00:00','FC','','4','C','2025-12-18 21:50:40'),(0,0,4478,0,'Y','2026-03-19','08:00:00','08:30:00','Followup','8087993302','4','T','2025-12-18 23:36:37'),(0,0,4479,0,'Y','2026-06-17','08:00:00','08:30:00','Followup','9726500239','4','T','2025-12-18 23:41:33'),(0,0,4480,0,'Y','2025-12-19','12:10:00','12:20:00','FC','','4','C','2025-12-18 21:56:12'),(0,0,4480,0,'Y','2026-03-19','08:00:00','08:30:00','Followup','9726395263','4','T','2025-12-18 23:45:15'),(0,0,4481,0,'Y','2025-12-19','12:30:00','12:40:00','Nv','','2','C','2025-12-18 22:22:00'),(0,0,4481,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','7383384119','2','T','2025-12-19 00:10:02'),(0,0,4483,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7083711949','2','T','2025-12-19 00:51:43'),(0,0,4483,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','7083711949','2','T','2025-12-19 06:37:00'),(0,0,4485,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6353607024','2','T','2025-12-19 06:41:38'),(0,0,4485,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','6353607024','2','T','2025-12-19 01:21:29'),(0,0,4487,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9925160345','2','T','2025-12-19 01:54:54'),(0,0,4488,0,'Y','2025-12-19','12:30:00','12:40:00','Nc','','4','C','2025-12-18 21:51:24'),(0,0,4488,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','9638511120','4','T','2025-12-19 05:54:35'),(0,0,4489,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7777993649','5','T','2025-12-19 00:30:02'),(0,0,4489,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','7777993649','5','T','2025-12-19 07:07:14'),(0,0,4491,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9723446493','2','T','2025-12-19 07:03:51'),(0,0,4492,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7777969232','2','T','2025-12-19 04:46:15'),(0,0,4493,0,'Y','2025-12-19','17:30:00','17:40:00','Nv','','2','C','2025-12-19 02:07:23'),(0,0,4493,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','997539472','2','T','2025-12-19 07:00:48'),(0,0,4494,0,'Y','2025-12-19','17:00:00','17:10:00','Nv','','2','C','2025-12-19 02:06:26'),(0,0,4494,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9909897977','2','T','2025-12-19 06:58:34'),(0,0,4495,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9510534919','2','T','2025-12-19 06:02:23'),(0,0,4497,0,'Y','2026-03-19','08:00:00','08:30:00','Followup','7874465095','4','T','2025-12-19 06:15:13'),(0,0,4499,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9824249569','2','T','2025-12-19 05:23:00'),(0,0,4500,0,'Y','2025-12-19','18:30:00','18:40:00','Nv','','2','C','2025-12-19 02:08:42'),(0,0,4500,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9825491262','2','T','2025-12-19 07:42:55'),(0,0,4501,0,'Y','2025-12-19','18:00:00','18:10:00','Nc','','4','C','2025-12-19 04:45:26'),(0,0,4501,0,'Y','2026-03-19','08:00:00','08:30:00','Followup','8000453730','4','T','2025-12-19 05:59:48'),(0,0,4502,0,'Y','2025-12-19','18:00:00','18:10:00','Nv','','2','C','2025-12-19 02:08:06'),(0,0,4502,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9687410254','2','T','2025-12-19 07:24:03'),(0,0,4504,0,'Y','2026-01-08','08:00:00','08:30:00','Followup','9723188979','2','T','2025-12-19 07:38:46'),(0,0,4505,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9409014008','5','T','2025-12-19 06:11:01'),(0,0,4505,0,'Y','2025-12-22','08:00:00','08:30:00','Followup','9409014008','5','T','2025-12-19 07:02:12'),(0,0,4506,0,'Y','2026-03-19','08:00:00','08:30:00','Followup','8320528965','4','T','2025-12-19 06:32:46'),(0,0,4507,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9826022215','6','T','2025-12-19 06:33:11'),(0,0,4508,0,'Y','2025-12-19','18:50:00','19:00:00','FC','','4','C','2025-12-19 04:46:43'),(0,0,4508,0,'Y','2026-03-30','08:00:00','08:30:00','Followup','7600673413','4','T','2025-12-19 06:36:44'),(0,0,4509,0,'Y','2025-12-19','19:00:00','19:10:00','FC','','4','C','2025-12-19 04:48:10'),(0,0,4509,0,'Y','2026-03-19','08:00:00','08:30:00','Followup','9714928287','4','T','2025-12-19 06:43:36'),(0,0,4510,0,'Y','2025-12-19','19:10:00','19:20:00','FC','','4','C','2025-12-19 04:48:35'),(0,0,4510,0,'Y','2026-03-30','08:00:00','08:30:00','Followup','97419228287','4','T','2025-12-19 06:46:55'),(0,0,4511,0,'Y','2025-12-24','08:00:00','08:30:00','Followup','7567424194','4','T','2025-12-19 06:59:47'),(0,0,4513,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9313780073','2','T','2025-12-19 08:12:31'),(0,0,4514,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9725783546','4','T','2025-12-19 07:04:47'),(0,0,4516,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600000075','4','T','2025-12-20 00:15:17'),(0,0,4517,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600055048','6','T','2025-12-19 23:22:40'),(0,0,4518,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7046208262','5','T','2025-12-19 23:44:02'),(0,0,4519,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428467323','6','T','2025-12-19 23:13:21'),(0,0,4520,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9067028844','5','T','2025-12-19 22:59:23'),(0,0,4520,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9067028844','5','T','2025-12-19 23:56:54'),(0,0,4521,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427241346','6','T','2025-12-19 23:47:19'),(0,0,4522,0,'Y','2026-01-19','08:00:00','08:30:00','Followup','9879616186','4','T','2025-12-19 22:56:40'),(0,0,4523,0,'Y','2026-03-20','08:00:00','08:30:00','Followup','9909990518','5','T','2025-12-19 23:05:10'),(0,0,4524,0,'Y','2025-12-20','11:00:00','11:10:00','FC','','4','C','2025-12-19 20:47:48'),(0,0,4524,0,'Y','2026-03-20','08:00:00','08:30:00','Followup','8780121246','4','T','2025-12-19 23:03:19'),(0,0,4525,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9426277454','4','T','2025-12-19 23:13:36'),(0,0,4526,0,'Y','2026-03-20','08:00:00','08:30:00','Followup','9428236225','4','T','2025-12-20 00:14:34'),(0,0,4527,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9537065742','6','T','2025-12-20 00:13:46'),(0,0,4529,0,'Y','2025-12-30','08:00:00','08:30:00','Followup','9824130028','4','T','2025-12-20 00:14:50'),(0,0,4530,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9824839814','4','T','2025-12-19 23:58:44'),(0,0,4531,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','6352291002','4','T','2025-12-20 00:23:39'),(0,0,4532,0,'Y','2025-12-25','08:00:00','08:30:00','Followup','9426986065','4','T','2025-12-20 00:19:04'),(0,0,4533,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9925988550','6','T','2025-12-20 01:00:58'),(0,0,4534,0,'Y','2026-02-18','08:00:00','08:30:00','Followup','9925988550','5','T','2025-12-20 00:26:53'),(0,0,4536,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924271317','4','T','2025-12-21 23:59:50'),(0,0,4536,0,'Y','2026-03-30','08:00:00','08:30:00','Followup','9924271317','4','T','2025-12-20 00:29:01'),(0,0,4537,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979930880','4','T','2025-12-22 07:41:54'),(0,0,4537,0,'Y','2025-12-20','12:30:00','12:40:00','Fc','','4','R','2025-12-19 21:58:27'),(0,0,4538,0,'Y','2026-03-20','08:00:00','08:30:00','Followup','8780486344','4','T','2025-12-20 00:31:36'),(0,0,4552,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','8866182067','5','T','2025-12-21 23:30:44'),(0,0,4554,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9104197040','6','T','2025-12-21 22:46:13'),(0,0,4555,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','9727076277','4','T','2025-12-22 05:53:47'),(0,0,4556,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9825280588','4','T','2025-12-22 06:23:10'),(0,0,4557,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9426737346','2','T','2025-12-21 22:34:22'),(0,0,4559,0,'Y','2025-12-22','10:10:00','10:20:00','Fv','','2','C','2025-12-21 20:14:02'),(0,0,4559,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9106681896','2','T','2025-12-21 22:16:03'),(0,0,4561,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9825710753','2','T','2025-12-22 01:17:04'),(0,0,4562,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9904736303','7','T','2025-12-22 00:28:22'),(0,0,4563,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9116621945','2','T','2025-12-22 01:20:28'),(0,0,4565,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9978064053','3','T','2025-12-22 01:44:50'),(0,0,4566,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','7435065347','2','T','2025-12-22 01:49:45'),(0,0,4567,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9428299978','4','T','2025-12-21 22:28:01'),(0,0,4568,0,'Y','2026-04-01','08:00:00','08:30:00','Followup','9328490906','4','T','2025-12-21 23:12:11'),(0,0,4569,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9426998436','4','T','2025-12-21 23:04:30'),(0,0,4570,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924580838','5','T','2025-12-21 22:57:22'),(0,0,4571,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','6351389622','5','T','2025-12-21 22:49:50'),(0,0,4572,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998519528','5','T','2025-12-22 01:00:11'),(0,0,4573,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9824529783','2','T','2025-12-22 01:58:54'),(0,0,4574,0,'Y','2025-12-22','11:00:00','11:10:00','Fc','','4','C','2025-12-21 21:46:23'),(0,0,4574,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','7359797686','4','T','2025-12-21 22:44:02'),(0,0,4575,0,'Y','2025-12-22','11:10:00','11:20:00','Nc','','4','C','2025-12-21 21:46:39'),(0,0,4575,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','8866169161','4','T','2025-12-22 06:34:26'),(0,0,4576,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','8530078690','4','T','2025-12-21 22:35:42'),(0,0,4577,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9998839695','5','T','2025-12-21 23:42:46'),(0,0,4578,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8238220803','2','T','2025-12-22 00:02:15'),(0,0,4578,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','8238220803','2','T','2025-12-22 06:15:06'),(0,0,4579,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9723460628','2','T','2025-12-22 00:18:09'),(0,0,4580,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9727043461','2','T','2025-12-22 00:21:34'),(0,0,4581,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','8154000090','2','T','2025-12-22 02:25:04'),(0,0,4582,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9979470072','2','T','2025-12-22 00:30:43'),(0,0,4583,0,'Y','2026-06-20','08:00:00','08:30:00','Followup','9890361361','2','T','2025-12-22 00:37:09'),(0,0,4584,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099974775','3','T','2025-12-22 01:44:01'),(0,0,4585,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9925210947','2','T','2025-12-22 00:43:24'),(0,0,4586,0,'Y','2025-12-22','11:30:00','11:40:00','Nv','','2','C','2025-12-21 20:17:41'),(0,0,4586,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9687918095','2','T','2025-12-22 02:03:04'),(0,0,4587,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','9825217014','4','T','2025-12-21 23:46:36'),(0,0,4589,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','7574927157','2','T','2025-12-22 02:43:01'),(0,0,4590,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9825105362','2','T','2025-12-22 02:52:12'),(0,0,4591,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7016794300','6','T','2025-12-22 00:21:01'),(0,0,4592,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9924200092','4','T','2025-12-22 00:10:11'),(0,0,4594,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9712376920','2','T','2025-12-22 01:44:54'),(0,0,4595,0,'Y','2025-12-22','11:50:00','12:00:00','Fc','','4','C','2025-12-21 21:51:00'),(0,0,4595,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','9825844656','4','T','2025-12-22 00:09:37'),(0,0,4596,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9825996655','2','T','2025-12-22 02:09:31'),(0,0,4597,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9408691111','2','T','2025-12-22 02:24:15'),(0,0,4599,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7600100900','3','T','2025-12-22 01:36:16'),(0,0,4601,0,'Y','2025-12-22','11:00:00','11:10:00','Nv','','2','C','2025-12-21 20:16:37'),(0,0,4601,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9016807383','2','T','2025-12-22 02:57:05'),(0,0,4602,0,'Y','2025-12-22','12:30:00','12:40:00','Nv','','2','C','2025-12-21 20:20:38'),(0,0,4602,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9227746860','2','T','2025-12-22 02:50:27'),(0,0,4603,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9974840609','4','T','2025-12-22 06:01:59'),(0,0,4603,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9974840609','4','T','2025-12-22 06:05:41'),(0,0,4604,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879608383','2','T','2025-12-22 00:59:41'),(0,0,4604,0,'Y','2025-12-22','13:00:00','13:10:00','Nv','','2','C','2025-12-21 23:13:09'),(0,0,4604,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9879608383','2','T','2025-12-22 06:03:07'),(0,0,4606,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426636559','2','T','2025-12-22 02:38:47'),(0,0,4607,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9099307808','3','T','2025-12-22 01:42:56'),(0,0,4609,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9768141783','3','T','2025-12-22 01:47:26'),(0,0,4612,0,'Y','2025-12-22','17:00:00','17:10:00','Nv','','2','C','2025-12-22 03:42:49'),(0,0,4612,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9408664802','2','T','2025-12-22 06:41:22'),(0,0,4613,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9824091602','4','T','2025-12-22 06:00:21'),(0,0,4614,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9510486806','2','T','2025-12-22 06:59:57'),(0,0,4615,0,'Y','2026-02-02','08:00:00','08:30:00','Followup','8460890659','2','T','2025-12-22 05:35:20'),(0,0,4616,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','9687239767','2','T','2025-12-22 05:47:45'),(0,0,4618,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9662322633','7','T','2025-12-22 06:25:03'),(0,0,4619,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9722400614','5','T','2025-12-22 05:54:58'),(0,0,4621,0,'Y','2025-12-22','17:30:00','17:40:00','Nv','','2','C','2025-12-22 03:44:07'),(0,0,4621,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','8160416842','2','T','2025-12-22 07:31:37'),(0,0,4623,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9375729588','6','T','2025-12-22 06:06:18'),(0,0,4624,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428295690','5','T','2025-12-22 06:16:43'),(0,0,4626,0,'Y','2025-12-22','18:20:00','18:30:00','Fc','','4','C','2025-12-22 04:52:01'),(0,0,4626,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','8401547737','4','T','2025-12-22 06:32:18'),(0,0,4628,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9428418584','5','T','2025-12-22 06:24:00'),(0,0,4628,0,'Y','2025-12-27','08:00:00','08:30:00','Followup','9428418584','5','T','2025-12-22 07:09:59'),(0,0,4629,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9714692814','7','T','2025-12-22 06:31:52'),(0,0,4630,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','7359014317','2','T','2025-12-22 06:46:13'),(0,0,4631,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7874508121','3','T','2025-12-22 07:32:28'),(0,0,4633,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','7984765266','2','T','2025-12-22 07:24:39'),(0,0,4634,0,'Y','2026-02-20','08:00:00','08:30:00','Followup','7874143463','4','T','2025-12-22 06:46:30'),(0,0,4635,0,'Y','2026-01-01','08:00:00','08:30:00','Followup','9825030043','2','T','2025-12-22 07:31:24'),(0,0,4636,0,'Y','2025-12-22','19:20:00','19:30:00','Nc','','4','C','2025-12-22 05:59:15'),(0,0,4636,0,'Y','2026-04-01','08:00:00','08:30:00','Followup','9228898949','4','T','2025-12-22 07:02:53'),(0,0,4637,0,'Y','2025-12-22','19:10:00','19:20:00','Fc','','4','C','2025-12-22 04:54:58'),(0,0,4637,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','9825030163','4','T','2025-12-22 07:11:13'),(0,0,4638,0,'Y','2025-12-22','19:00:00','19:10:00','Fc','','4','C','2025-12-22 04:53:01'),(0,0,4638,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','9898388870','4','T','2025-12-22 07:20:33'),(0,0,4642,0,'Y','2026-01-21','08:00:00','08:30:00','Followup','9913365484','4','T','2025-12-22 07:50:11'),(0,0,4644,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9265577561','7','T','2025-12-22 22:16:48'),(0,0,4646,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','8849642993','4','T','2025-12-22 23:32:09'),(0,0,4648,0,'Y','2025-12-23','10:30:00','10:40:00','Nv','','2','C','2025-12-22 20:18:14'),(0,0,4648,0,'Y','2026-01-22','08:00:00','08:30:00','Followup','9099911993','2','T','2025-12-23 00:55:01'),(0,0,4649,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979584428','7','T','2025-12-22 22:19:26'),(0,0,4650,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979960939','7','T','2025-12-22 22:18:54'),(0,0,4651,0,'Y','2025-12-23','11:00:00','11:10:00','Fc','','4','C','2025-12-22 21:50:31'),(0,0,4651,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','9427722843','4','T','2025-12-22 23:45:16'),(0,0,4652,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9106886054','2','T','2025-12-23 01:29:53'),(0,0,4653,0,'Y','2025-12-29','08:00:00','08:30:00','Followup','9737471442','2','T','2025-12-22 23:27:04'),(0,0,4654,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','9898053300','5','T','2025-12-22 22:46:38'),(0,0,4655,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9978996967','2','T','2025-12-22 23:47:23'),(0,0,4656,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9426530281','3','T','2025-12-23 00:27:25'),(0,0,4657,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9879694076','4','T','2025-12-22 23:22:51'),(0,0,4657,0,'Y','2025-12-23','11:10:00','11:20:00','Fc','','4','C','2025-12-22 21:51:28'),(0,0,4657,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','9879694076','4','T','2025-12-23 00:15:14'),(0,0,4658,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','9974698446','4','T','2025-12-22 22:52:15'),(0,0,4659,0,'Y','2025-12-23','11:30:00','11:40:00','Nv','','2','C','2025-12-22 20:21:09'),(0,0,4659,0,'Y','2026-01-22','08:00:00','08:30:00','Followup','9924030116','2','T','2025-12-23 01:14:01'),(0,0,4660,0,'Y','2026-01-22','08:00:00','08:30:00','Followup','9924030116','2','T','2025-12-23 01:08:22'),(0,0,4661,0,'Y','2025-12-23','12:00:00','12:10:00','Nv','','2','C','2025-12-22 20:22:06'),(0,0,4661,0,'Y','2026-01-22','08:00:00','08:30:00','Followup','7016056607','2','T','2025-12-23 01:34:47'),(0,0,4662,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9427261002','5','T','2025-12-22 23:03:24'),(0,0,4663,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9979716590','5','T','2025-12-22 22:57:39'),(0,0,4664,0,'Y','2025-12-23','12:00:00','12:10:00','Fc','','4','C','2025-12-22 21:54:59'),(0,0,4664,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','8460826147','4','T','2025-12-22 23:01:15'),(0,0,4665,0,'Y','2025-12-23','12:30:00','12:40:00','Nv','','2','C','2025-12-22 20:23:40'),(0,0,4665,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','7984627901','2','T','2025-12-23 01:38:30'),(0,0,4666,0,'Y','2025-12-23','11:40:00','11:50:00','Fc','','4','C','2025-12-22 21:54:05'),(0,0,4666,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9375976659','4','T','2025-12-22 23:10:39'),(0,0,4667,0,'Y','2025-12-23','11:50:00','12:00:00','Rfv','','2','C','2025-12-22 20:21:43'),(0,0,4667,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','8780681820','2','T','2025-12-23 01:20:26'),(0,0,4668,0,'Y','2025-12-23','11:20:00','11:30:00','Fc','','4','C','2025-12-22 21:52:39'),(0,0,4668,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','9924639194','4','T','2025-12-22 23:26:50'),(0,0,4669,0,'Y','2025-12-23','11:30:00','11:40:00','Fc','','4','C','2025-12-22 21:53:35'),(0,0,4669,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','9909430028','4','T','2025-12-22 23:28:35'),(0,0,4670,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8933898939','3','T','2025-12-23 00:15:36'),(0,0,4671,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','6353821009','4','T','2025-12-23 00:29:57'),(0,0,4672,0,'Y','2026-02-17','08:00:00','08:30:00','Followup','9909772275','4','T','2025-12-22 23:34:17'),(0,0,4673,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','8000971818','5','T','2025-12-23 00:14:23'),(0,0,4674,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','7041451239','3','T','2025-12-23 00:20:10'),(0,0,4675,0,'Y','2025-12-23','12:50:00','13:00:00','Fv','','2','C','2025-12-22 20:27:46'),(0,0,4675,0,'Y','2026-02-21','08:00:00','08:30:00','Followup','9824239563','2','T','2025-12-23 00:23:07'),(0,0,4676,0,'Y','2025-12-23','11:00:00','11:10:00','Nv','','2','C','2025-12-22 20:20:06'),(0,0,4676,0,'Y','2026-01-02','08:00:00','08:30:00','Followup','9687562089','2','T','2025-12-23 02:09:43'),(0,0,4677,0,'Y','2025-12-23','12:10:00','12:20:00','Fc','','4','R','2025-12-22 21:55:42'),(0,0,4678,0,'Y','2026-01-07','08:00:00','08:30:00','Followup','9726618653','2','T','2025-12-23 02:26:26'),(0,0,4679,0,'Y','2025-12-23','12:40:00','12:50:00','Fc','','4','C','2025-12-22 22:19:18'),(0,0,4679,0,'Y','2026-03-23','08:00:00','08:30:00','Followup','9427917237','4','T','2025-12-22 23:56:57'),(0,0,4682,0,'Y','2026-01-12','08:00:00','08:30:00','Followup','9850965789','2','T','2025-12-23 02:15:52'),(0,0,4683,0,'Y','2026-01-22','08:00:00','08:30:00','Followup','9265533058','2','T','2025-12-23 01:49:42'),(0,0,4684,0,'Y','1970-01-01','08:00:00','08:30:00','Followup','9825109190','2','T','2025-12-23 02:05:32'),(0,0,4685,0,'Y','2026-04-22','08:00:00','08:30:00','Followup','8980572828','2','T','2025-12-23 02:22:50'),(0,0,4687,0,'Y','2025-12-23','16:40:00','16:50:00','NE','','2','R','2025-12-23 03:35:34'),(0,0,4691,0,'Y','2025-12-23','17:30:00','17:40:00','Nv','','2','R','2025-12-23 03:37:38'),(0,0,4693,0,'Y','2025-12-23','17:50:00','18:00:00','Fv','','2','R','2025-12-23 03:39:13'),(0,0,4694,0,'Y','2025-12-23','18:10:00','18:20:00','NE','','2','R','2025-12-23 03:39:55');
/*!40000 ALTER TABLE `appointment_pat` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `appointment_temp_mst`
--

DROP TABLE IF EXISTS `appointment_temp_mst`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `appointment_temp_mst` (
  `App_Temp_ID` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `App_Pat_Name` varchar(100) NOT NULL,
  `App_Pat_Contact` varchar(11) NOT NULL,
  PRIMARY KEY (`App_Temp_ID`)
) ENGINE=InnoDB AUTO_INCREMENT=1743 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `appointment_temp_mst`
--

LOCK TABLES `appointment_temp_mst` WRITE;
/*!40000 ALTER TABLE `appointment_temp_mst` DISABLE KEYS */;
INSERT INTO `appointment_temp_mst` VALUES (1,0,0,'Hemiben Kadraliya',''),(2,0,0,'Deep Kapuriya',''),(3,0,0,'Kantibhai R Thoriya',''),(4,0,0,'Maliben R Parmar',''),(5,0,0,'Mukeshbhai Vichhiya',''),(6,0,0,'Nipaben R Dantaliya',''),(7,0,0,'Dixitbhai Ghodasara',''),(8,0,0,'Santokben Odedara',''),(9,0,0,'Maganbhai Gondaliya',''),(10,0,0,'Nimuben B Mavani',''),(11,0,0,'Miten P Chavda',''),(12,0,0,'Batukbhai M Maru',''),(13,0,0,'Roshanben Kadivar',''),(14,0,0,'Godavariben Sapariya',''),(15,0,0,'Jalpaben C Mashru',''),(16,0,0,'Hiraben Upadhyay',''),(17,0,0,'Jaybhai Vaghela',''),(18,0,0,'Ashokbhai Barasara',''),(19,0,0,'Ramaben Dave',''),(20,0,0,'Neetaben Parmar',''),(21,0,0,'Kiranben Shukla',''),(22,0,0,'Priti Thakar',''),(23,0,0,'Jemini Thakar',''),(24,0,0,'Komal Pandya',''),(25,0,0,'Kaushal Talera',''),(26,0,0,'Bhartiben Paghdar',''),(27,0,0,'Mrhulbhai Gohel',''),(28,0,0,'Nitaben Katkoriya',''),(29,0,0,'Jayaben Dodiya',''),(30,0,0,'Jagdishbhai','6355995721'),(31,0,0,'HIRENBHAI RATHOD','8460212231'),(32,0,0,'GOPALBHAI VALA','9277808048'),(33,0,0,'SHILPABEN RATHOD','9377812840'),(34,0,0,'JAYABEN PRASAD','9898846228'),(35,0,0,'KETANBHAI MAKWANA','7600005284'),(36,0,0,'KHYATIBEN THAKKAR','9228180412'),(37,0,0,'Jayshreeben M Chauhan',''),(38,0,0,'Jamnaben Sagathiya',''),(39,0,0,'Bipinbhai Ganatra','9925903009'),(40,0,0,'Manjulaben Patel','6354348439'),(41,0,0,'Prakashbhai Vantariya','9712320042'),(42,0,0,'Bhimabhai N Odedra','9879578089'),(43,0,0,'Samjuben Sabhaya',''),(44,0,0,'Saiyabhai Nimghade',''),(45,0,0,'Parshotambhai Songra','9723282714'),(46,0,0,'Bhavnaben Tanna',''),(47,0,0,'Manjur Haq Sheikh ',''),(48,0,0,'Jikar Kothiyaval',''),(49,0,0,'Tulshibhai Sanghani',''),(50,0,0,'Simaben R Bhatt','9574760234'),(51,0,0,'Vinubhai Rajpara',''),(52,0,0,'Kajalben P Jani ',''),(53,0,0,'Ranjanben G Sachdev',''),(54,0,0,'JYOTIBEN UKANI',''),(55,0,0,'HANSABEN K. RATHOD',''),(56,0,0,'DINESHBHAI RATHOD',''),(57,0,0,'HEENABEN R. BHARVAD',''),(58,0,0,'RINABEN',''),(59,0,0,'MEERABEN CHAVDA','9913821248'),(60,0,0,'BHARGAVBHAI ','9664633122'),(61,0,0,'KUNDANBEN CHAUHAN','9924462732'),(62,0,0,'JENTIBHAI BHAYANI',''),(63,0,0,'MADHVI M TRIVEDI',''),(64,0,0,'JAYBHAI S VAGADIYA',''),(65,0,0,'DAXABEN FICHADIYA',''),(66,0,0,'JAMANBHAI AGHREA',''),(67,0,0,'SANBHAI MANSURI','9825997492'),(68,0,0,'VIJAYBHAI JOSHI ',''),(69,0,0,'HEMATPURI GOSAI',''),(70,0,0,'UNUSHBHAI ALARAKHABHAI ','9724518157'),(71,0,0,'MULJIBHAI ANJARIYA',''),(72,0,0,'MEERABEN DADHANIYA',''),(73,0,0,'PAVANBEN AGRAWAL ','9099365933'),(74,0,0,'MINAXIBEN AGRVAL','9099365933'),(75,0,0,'GOVINDBHAI ZALARIYA',''),(76,0,0,'MAHESHBHAI',''),(77,0,0,'RASILABEN DODIYA',''),(78,0,0,'BALUBEN KHERADIYA',''),(79,0,0,'VIMLABEN ','7016471789'),(80,0,0,'PRABHABEN THAKKAR',''),(81,0,0,'VINODBHAI D. VAGADIYA',''),(82,0,0,'RANJANBEN KISHORBHAI',''),(83,0,0,'HARSHABEN D. NIMAVAT','9427771264'),(84,0,0,'JOSHNABEN SOLANKI','9737645707'),(85,0,0,'Madhuben Sardhara',''),(86,0,0,'Virenkumar Patel',''),(87,0,0,'Diwaliben K Barad',''),(88,0,0,'Bharatbhai Solanki',''),(89,0,0,'Harshulbhai Gangarna',''),(90,0,0,'Pannaben Dabhi',''),(91,0,0,'Hareshbhai Vora',''),(92,0,0,'Samjuben Dhaduk',''),(93,0,0,'Kherunben J Gori',''),(94,0,0,'Kirtibhai Shah',''),(95,0,0,'Manjuben D Solanki',''),(96,0,0,'Pareshbhai B ',''),(97,0,0,'Jayeshbhai Sardhara',''),(98,0,0,'Labhshankarbhai Seraiya',''),(99,0,0,'Pareshbhai Panchak',''),(100,0,0,'Devkubhai Manjariya',''),(101,0,0,'Vijaybhai Ginoya',''),(102,0,0,'Bhimjibhai Bhusa',''),(103,0,0,'Alkaben Bagdai',''),(104,0,0,'Aartiben Kariya',''),(105,0,0,'KETKIBEN VAIDHYA','9429043162'),(106,0,0,'KETKIBEN VAIDHYA','9429043162'),(107,0,0,'DIVYABEN V. BARAD','9426995750'),(108,0,0,'Yashvi Limbasiya',''),(109,0,0,'Purviben Kharecha',''),(110,0,0,'Darshanbhai Patadiya',''),(111,0,0,'Meenaben Mehta',''),(112,0,0,'Pareshbhai Sheth',''),(113,0,0,'Maganbhai Tadapada',''),(114,0,0,'Daxaben Chavda',''),(115,0,0,'Naynaben Ghardusiya',''),(116,0,0,'Mahendrabhai ',''),(117,0,0,'Monaben Sangani',''),(118,0,0,'Aartiben Choksi',''),(119,0,0,'Kevalbhai Kumbhani',''),(120,0,0,'Naynaben Parmar',''),(121,0,0,'Minang Taduk','6909269627'),(122,0,0,'DEVANGIBEN VORA','9898550191'),(123,0,0,'PUSHPABEN VED','9427495930'),(124,0,0,'RAMESHBHAI VED','9427495930'),(125,0,0,'RUKSHARBEN CHAUHAN','7990950091'),(126,0,0,'BHIKHALAL G. CHUDASAMA','9824288544'),(127,0,0,'KALPANABA RANA',''),(128,0,0,'BHANUBEN SOLANKI','7990972914'),(129,0,0,'MITABEN SOLANKI','7990972914'),(130,0,0,'PRAKASHBHAI VYAS',''),(131,0,0,'Niraliben Bhatt',''),(132,0,0,'Jyotsanaben Kansagra',''),(133,0,0,'Vaishaliben Sakhiya',''),(134,0,0,'Jagdishbhai Sapariya',''),(135,0,0,'Kalubhai Malvi',''),(136,0,0,'Rameshbhai Ramani',''),(137,0,0,'Jivrajbhai Sarvaiya',''),(138,0,0,'Bhaveshbhai Popat',''),(139,0,0,'Jaysukhbhai Dalsaniya',''),(140,0,0,'Arjanbhai Joshi',''),(141,0,0,'Jayaben Mistry',''),(142,0,0,'Girishbhai Chovatiya',''),(143,0,0,'Bavabhai Makwana','9724613470'),(144,0,0,'Chandrikaben Maniyar','9427432394'),(145,0,0,'Jaysanbhai ',''),(146,0,0,'Dineshbhai Vaghela',''),(147,0,0,'Nirupamaben Rajapara','9586138603'),(148,0,0,'Nathabhai Visapara','9824804019'),(149,0,0,'Heenaben Vagdiya','9428894558'),(150,0,0,'EKTABEN PARMAR','9974547900'),(151,0,0,'MONIKABEN KHUNT','9924844824'),(152,0,0,'CHINTANBHAI VAESANI','9099586643'),(153,0,0,'RANJANBEN KOTADIYA','9913287327'),(154,0,0,'VIBHABEN B KHAT','9099784284'),(155,0,0,'DHARMISHTABEN DHOLAKIYA','8000608880'),(156,0,0,'KANCHANBEN B KARETIYA',''),(157,0,0,'BHARATBHAI  H BARASRA',''),(158,0,0,'RASILABEN SARDHARA','7016825225'),(159,0,0,'BHAVIKABEN BANBHANIYA','9586046883'),(160,0,0,'NIRAVBHAI  CHANDARANA',''),(161,0,0,'AMRATBEN R KOLI','8758535205'),(162,0,0,'SAIYAB NIMGADE',''),(163,0,0,'DINESHBHAI M RAWAT',''),(164,0,0,'VINODBHAI P MANEK',''),(165,0,0,'MAMTABEN MAGNANI','7600094695'),(166,0,0,'KUNDABEN SHAH','9824560944'),(167,0,0,'DEVANGIBEN VORA',''),(168,0,0,'JYOTSANABEN P. DETROJA','9979603909'),(169,0,0,'NAIMISH TANK','8461783897'),(170,0,0,'MANJULABEN TANNA','9737780007'),(171,0,0,'SHANTIBHAI GOSWAMI',''),(172,0,0,'SHANTIBHAI GOSWAMI',''),(173,0,0,'SANJAYBHAI M BHALODIYA',''),(174,0,0,'HITANSHUBHAI VADUKIYA','9824416817'),(175,0,0,'MAYURBHAI PARMAR','6353402300'),(176,0,0,'PRISHA V. AKBARI',''),(177,0,0,'PRAFULABEN KATIRA','9429189430'),(178,0,0,'KALPESHBHAI THAKAR','9429189430'),(179,0,0,'KANTABEN PATEL','9722448844'),(180,0,0,'HETALI MEHTA',''),(181,0,0,'YESHABEN KARIA','9426936236'),(182,0,0,'KAMLESHBHAI J VADGAMA','9909280928'),(183,0,0,'ARUNABEN MANDALIYA','9426996395'),(184,0,0,'SANGEETABEN TAJPARA','9409413657'),(185,0,0,'BALVANTRAI M MEHTA',''),(186,0,0,'KUMUDBEN KHAMBHAYATA','9727724885'),(187,0,0,'SARDABEN JOSHI','9720690370'),(188,0,0,'MINABEN DOSHI',''),(189,0,0,'DR. KAWAN J. TRIVEDI','8160868246'),(190,0,0,'PRADIPSINH CHAUHAN',''),(191,0,0,'MEHULBHAI GHUTLA','9879119377'),(192,0,0,'ABHIJEETSINH JADEJA','9537700019'),(193,0,0,'PINKIBEN DESAI','9426241424'),(194,0,0,'NISHABEN PATEL',''),(195,0,0,'SURESHBHAI TALA',''),(196,0,0,'KISHORBHAI RANA',''),(197,0,0,'LALITBHAI G JESADIYA',''),(198,0,0,'VIJYABEN M GADHIYA',''),(199,0,0,'JAYDEEP MANDIR',''),(200,0,0,'YOGESHBHAI JIVRAJANI',''),(201,0,0,'NANADINI MODI',''),(202,0,0,'SANGITABEN R VAGHELA',''),(203,0,0,'JYOTSANABEN R CHAVDA',''),(204,0,0,'NIKUNJBHAI PARMAR',''),(205,0,0,'KAILASHBA GOHEL',''),(206,0,0,'RAMESHBHAI GAJERA',''),(207,0,0,'RASHMIBEN R BARAD',''),(208,0,0,'RAJESHBHAI PADALIYA',''),(209,0,0,'NARENDRA R NANAVATI',''),(210,0,0,'Somiben Chavda','6353226973'),(211,0,0,'Parulben Tank','9624434342'),(212,0,0,'Chetnaben Vasavada','9428788575'),(213,0,0,'Aswinbhai Gauswami','8140404646'),(214,0,0,'Joshnaben Tank','9904224568'),(215,0,0,'GEETABEN CHAUHAN','9809499573'),(216,0,0,'BHIKHUBHAI M GONDALIYA',''),(217,0,0,'SAPNADEVI THAKUR',''),(218,0,0,'RAJESHBHAI CHIKANI',''),(219,0,0,'VAISHALIBEN TRIVEDI',''),(220,0,0,'HEMALBHAI KAKKAD',''),(221,0,0,'SOBHNABEN UMRANIYA',''),(222,0,0,'RAJ ',''),(223,0,0,'DEVBHAI GAJERA',''),(224,0,0,'HETALBEN VIRADIYA',''),(225,0,0,'M P GOSAI',''),(226,0,0,'FALGUNI ACHARYA',''),(227,0,0,'DARSHAN MEHTA',''),(228,0,0,'PUSHPABEN SONPAL',''),(229,0,0,'Jayshreeben ','9924064108'),(230,0,0,'Vishwaraj Varsani','9426158133'),(231,0,0,'Geetaben H Viradiya','9998451651'),(232,0,0,'Rashmiben B Nakum','9033790713'),(233,0,0,'Mukeshbhai Bhatt','9723080478'),(234,0,0,'RANCHHODBHAI N KAKANIYA','9727564348'),(235,0,0,'Dimpalben Bhadra','9624914724'),(236,0,0,'SHAILESHBHAI','9925209059'),(237,0,0,'USHABA ZALA','9898732801'),(238,0,0,'Dharmendrabhai Patel',''),(239,0,0,'Rasikbhai Dhameliya',''),(240,0,0,'Vishakhaben N Shah',''),(241,0,0,'Safiyaben A Kappa',''),(242,0,0,'Sarojben Atkotiya',''),(243,0,0,'Jayshreeben Korat',''),(244,0,0,'Janakben J Dabhi',''),(245,0,0,'Vinodbhai Pokar',''),(246,0,0,'Vinodbhai Pokar',''),(247,0,0,'Jiteshbhai M Patel',''),(248,0,0,'Kanjibhai Kansagra',''),(249,0,0,'Dineshbhai Mistry',''),(250,0,0,'Heenaben K Kanani',''),(251,0,0,'Jahirbhai A Bhor',''),(252,0,0,'Hitendrasinh D Zala',''),(253,0,0,'Vibhaben B Khat',''),(254,0,0,'Milanbhai Adeshra',''),(255,0,0,'HARISINH G DODIYA','9426169519'),(256,0,0,'VALLABHBHAI',''),(257,0,0,'SAROJBEN TILVA','9426785820'),(258,0,0,'CHANDABHAI P DEVADIYA',''),(259,0,0,'DHARAMDAS M GONDALIYA','8140828789'),(260,0,0,'MUKTABEN SATARIYA','9824818245'),(261,0,0,'DEVCHANDBHAI KAVAR','9510441266'),(262,0,0,'RAMABEN G VEKARIYA','9427224881'),(263,0,0,'RAMISH SAIYAR',''),(264,0,0,'KALPNABEN DODIYA','9427389850'),(265,0,0,'SUDHABEN DODIYA','7567522104'),(266,0,0,'VISHVJEETSINH JADEJA','9558183489'),(267,0,0,'Ankitbhai Khunt ',''),(268,0,0,'Ankitbhai Khunt ',''),(269,0,0,'Shruti Dadhaniya',''),(270,0,0,'Naynaben Kalariya',''),(271,0,0,'Rekhaben Bhut',''),(272,0,0,'Dhirubhai Babariya','8200586312'),(273,0,0,'Nalinbhai Doshi',''),(274,0,0,'Hiteshbhai Chudasama',''),(275,0,0,'Aartiben S Patni',''),(276,0,0,'Vimalbhai Dhingani',''),(277,0,0,'Priyanshi Khunt',''),(278,0,0,'Rushikeshbhai Pandya',''),(279,0,0,'Nilamben Kathrotiya',''),(280,0,0,'Ashmitaben K Dhamsaniya',''),(281,0,0,'SHANTUBEN D. RATHOD','9725711778'),(282,0,0,'DIPTIBEN MAHETA','9979949214'),(283,0,0,'SEEMABEN H BHADESIYA','8401935835'),(284,0,0,'KANAK D. MAHETA','9712978811'),(285,0,0,'Premjibhai L Jivani','9727858042'),(286,0,0,'Sureshbhai B Vaza','9510211467'),(287,0,0,'Dharmendrabhai K Bavarva','9913222657'),(288,0,0,'Anitaben Bhalara','9228780282'),(289,0,0,'Sushilaben Chauhan','9428274788'),(290,0,0,'Hansaben R Thakar','9924837337'),(291,0,0,'Mahendrasinh A Jadeja','7043725535'),(292,0,0,'Simaben Odedra','9825313241'),(293,0,0,'Jayshreeba R Vagher','9409162948'),(294,0,0,'Naynaba Vala',''),(295,0,0,'Gandhanbhai Sharma','9537583999'),(296,0,0,'Ganpatbhai Sonagra','7575083283'),(297,0,0,'Namya P Paida','8128273022'),(298,0,0,'Maheshbhai Makad','9879467370'),(299,0,0,'Shrushthiben Khunt','8980313475'),(300,0,0,'Anjanaben Makad','9879467370'),(301,0,0,'Bhavsingbhai Chauhan','9974945139'),(302,0,0,'Manishaben Kheradiya','9157100396'),(303,0,0,'Fatmaben A Rahim','9426273855'),(304,0,0,'Vidin Menon','9898039206'),(305,0,0,'Kajalben Ravaliya','9909802121'),(306,0,0,'Jayshreeben Shingala','9913332312'),(307,0,0,'SAHDEVSINH JADEJA','9510027227'),(308,0,0,'LALABHAI','9978792356'),(309,0,0,'URVASHIBA JADEJA','7874143463'),(310,0,0,'YASH JETHWA','9998694274'),(311,0,0,'Kanaiyalal Baldaniya',''),(312,0,0,'Drashti Chauhan',''),(313,0,0,'Dharmendra Chatrola',''),(314,0,0,'Bhargavi V Vasani',''),(315,0,0,'Hashmukh B Rathod',''),(316,0,0,'Chandrika R Vagadiya',''),(317,0,0,'Navya S Rajgor',''),(318,0,0,'Husena M Makda',''),(319,0,0,'Purviu Chaniyara',''),(320,0,0,'Dimpal Sharma',''),(321,0,0,'Jaydeep Mandir',''),(322,0,0,'Parthbhai Kurani','9727564911'),(323,0,0,'Mansukhbhai Marvaniya','9408614756'),(324,0,0,'Lilaben Chauhan','9033638908'),(325,0,0,'MANJULABA D. JADEJA','9824587621'),(326,0,0,'SALIMBHAI VADDARIYA','9824867803'),(327,0,0,'Valjibhai K Varasada ','7202024475'),(328,0,0,'Kanchanben K Andarpa','8980218076'),(329,0,0,'Savitaben D Vaghasiya','9537787381'),(330,0,0,'Premilaben Savaliya','9327124355'),(331,0,0,'Vijaybhai M Chavda','9825453936'),(332,0,0,'Selina Riyar Tejaai','8999845458'),(333,0,0,'Parthbhai Mehta','9979891302'),(334,0,0,'Mohmadhasan Jethva','9979078160'),(335,0,0,'Gopalbhai Pipariya','9537414133'),(336,0,0,'Mujavar Nheshbin','8140500782'),(337,0,0,'Rohanbhai D Ribadiya','9824943653'),(338,0,0,'Yogeshbhai Gandhi','8160952351'),(339,0,0,'Ritikaben N Rathod','8320564389'),(340,0,0,'Manishaben Makwana','8511957761'),(341,0,0,'Anjaliben Tanna','9825340005'),(342,0,0,'Ranjanben Trapasiya','9913745765'),(343,0,0,'Kajalben Ravaliya','9909802121'),(344,0,0,'Jayaben Mehta','9924342670'),(345,0,0,'Mitalben Rathod','9327407182'),(346,0,0,'Aswingiri Goswami','8140404646'),(347,0,0,'VASUBHAI','9624044404'),(348,0,0,'Mukeshbhai L Jilka','9825376191'),(349,0,0,'MANJULABEN PATEL','8469400800'),(350,0,0,'Umaben V Bhimani',''),(351,0,0,'Vandanaben Parmar',''),(352,0,0,'Rameshbhai V Kundariya',''),(353,0,0,'Kailashben Barot',''),(354,0,0,'Prabha P Vyas',''),(355,0,0,'Sobhnaben Virpara',''),(356,0,0,'Parul Lakhtariya',''),(357,0,0,'Ranja Sachdev',''),(358,0,0,'Dayaben ',''),(359,0,0,'Dipali Akhani',''),(360,0,0,'Anjuben Khokhar',''),(361,0,0,'Geeta Kanani',''),(362,0,0,'SHASHIKANTBHAI GOHEL','9427563244'),(363,0,0,'SNEHABEN CHUDASAMA','7575080483'),(364,0,0,'HEMLATABEN GAGLANI','9408612211'),(365,0,0,'USHABEN P. SONAGRA','9726853209'),(366,0,0,'VINODBHAI M KALARIYA',''),(367,0,0,'Hathisinh Sisodiya','9624323356'),(368,0,0,'Nitaben N Vaghamsi','7567288102'),(369,0,0,'Jagrutiben V Suchak','6356048339'),(370,0,0,'Dharam P Vaishnani','9426732611'),(371,0,0,'Heeraben B Odedra','9664684275'),(372,0,0,'Sarojben J Bhalodiya','9727572911'),(373,0,0,'Vinodbhai Manek','9426447581'),(374,0,0,'Nazyaben','8200459972'),(375,0,0,'Jitubhai K Lotiya','9909172696'),(376,0,0,'Gudiben Adbulkhalim','6354017471'),(377,0,0,'Kishorbhai Jani','9712924056'),(378,0,0,'Hiralal H Jethloja','8849090154'),(379,0,0,'Puriben Jalu','9773025818'),(380,0,0,'Mehulbhai Gohil','9925182842'),(381,0,0,'Janvi Manek','9510711113'),(382,0,0,'Nishaben Kaila','9727871764'),(383,0,0,'Rajanben H Kanani','9925163555'),(384,0,0,'Sonalba D Chavda',''),(385,0,0,'Rekhaben Mansaramani',''),(386,0,0,'Motilal Vanrajani',''),(387,0,0,'Kokilaben ',''),(388,0,0,'MITABEN R SISODIYA',''),(389,0,0,'VELJIBHAI TALAVIYA',''),(390,0,0,'INDUBEN C DADHANIYA',''),(391,0,0,'AMITBHAI DESAI',''),(392,0,0,'GOBARBHAI MER',''),(393,0,0,'JIGNESHBHAI A SHUKLA',''),(394,0,0,'MALIBEN ODEDARA',''),(395,0,0,'RAYSINH ODEDARA',''),(396,0,0,'DILIPBHAI BUDHDEV',''),(397,0,0,'KHODABHAI SAKARIYA',''),(398,0,0,'Aartiben Joshi',''),(399,0,0,'Hasinaben Y Mathakiya','9978544591'),(400,0,0,'JAGRUTIBEN SUCHAK',''),(401,0,0,'BHAVNABEN H PARMAR',''),(402,0,0,'LATABEN SOMAIYA',''),(403,0,0,'RAJBHAI SAPARIYA',''),(404,0,0,'FARUKBHAI THAIM',''),(405,0,0,'DILIPBHAI VAYA',''),(406,0,0,'BIPINBHAI P DESAI',''),(407,0,0,'ATULBHAI UPADHYAY',''),(408,0,0,'Viral Zaveri ',''),(409,0,0,'Divyangbhai Nanavati',''),(410,0,0,'Dhartiben Paija',''),(411,0,0,'Ketanbhai Popat',''),(412,0,0,'Ridhhiben Goriya',''),(413,0,0,'Raniben K Muchad',''),(414,0,0,'Hansaben A Sosa',''),(415,0,0,'Anishaben Kadivar',''),(416,0,0,'Riyazbhai Gajiyani',''),(417,0,0,'Jayeshbhai Desai',''),(418,0,0,'Hiralben Mundhva',''),(419,0,0,'Hiteshbhai Karia',''),(420,0,0,'Dharabhai Han',''),(421,0,0,'Dhartiba Parmar',''),(422,0,0,'Hansaben K Tarapara',''),(423,0,0,'Bharatbhai Patel',''),(424,0,0,'VARSHABEN P ADODARIYA','8200553189'),(425,0,0,'Parthrajsinh Zala',''),(426,0,0,'Anjanaben K Rangani',''),(427,0,0,'Shaileshbhai K Chauhan',''),(428,0,0,'Nazmaben Kadivar',''),(429,0,0,'Vipulbhai Zalavadiya',''),(430,0,0,'Ramiben C Varu',''),(431,0,0,'Kalpeshbhai Sitapara',''),(432,0,0,'Nirmalaben Gorasiya',''),(433,0,0,'Mukeshbhai Mungra',''),(434,0,0,'Sherbanuben Mirza',''),(435,0,0,'Jyotiben J Parmar',''),(436,0,0,'Ramdebhai Sida',''),(437,0,0,'Savantri Dangi',''),(438,0,0,'Dr Sunny Jani',''),(439,0,0,'Harshukhlal K Bhatt',''),(440,0,0,'Ranjanben Indoriya',''),(441,0,0,'Varshaba S Dodiya',''),(442,0,0,'R D Purohit',''),(443,0,0,'Dineshbhai Khakhrecha',''),(444,0,0,'Bakulaben Dave',''),(445,0,0,'Rajabhai Barad',''),(446,0,0,'Purviben Padhiyar',''),(447,0,0,'Chandrikaben Sheth',''),(448,0,0,'SMIT','8200717135'),(449,0,0,'Mehulbhai Jethva','9173702225'),(450,0,0,'Kurjibhai Khapra',''),(451,0,0,'Snehalben',''),(452,0,0,'Sneha Chavda',''),(453,0,0,'Rameshbhai V Jethloja',''),(454,0,0,'Valjibhai M Parmar',''),(455,0,0,'Anitaben Gajera',''),(456,0,0,'Jitubhai A Deep',''),(457,0,0,'Ramchandrabhai Parmar',''),(458,0,0,'Mitaben P Kothiyar',''),(459,0,0,'Narendrabhai V Doshi',''),(460,0,0,'Chandaben Thavani',''),(461,0,0,'Bhavnaben Kalyani',''),(462,0,0,'Hetalben R Mundiya',''),(463,0,0,'DARSHIT PARMAR','6354015290'),(464,0,0,'HEMABEN DAVE','9824427099'),(465,0,0,'KRUTARTH','9427158728'),(466,0,0,'BHARTIBEN PITHADIYA','8460209107'),(467,0,0,'JASHUBEN CHAVDA','6353674878'),(468,0,0,'DIPAKBHAI JADAV','9558447443'),(469,0,0,'JASHUBEN CHAVDA','6353674878'),(470,0,0,'VRUNDABEN RAVAL','7698027933'),(471,0,0,'SONALBEN ','9998815753'),(472,0,0,'JANVIBEN PIPALVA',''),(473,0,0,'PRADIPKUMAR V. LOTIYA','9824949973'),(474,0,0,'Sanjaybhai Ronga','9913552750'),(475,0,0,'Dimpalben C ','9879777020'),(476,0,0,'Anitaben N Nesadiya','9173402977'),(477,0,0,'Hareshbhai Babariya',''),(478,0,0,'Kanchanben H Nandaniya',''),(479,0,0,'Hasmukhbhai Makdiya','9978390172'),(480,0,0,'Jentibhai B Kavar',''),(481,0,0,'Vikashbhai Joshi','9429938080'),(482,0,0,'Kusumben S Bhinodra','9427701608'),(483,0,0,'Mathurdas Sanghani','9428319059'),(484,0,0,'Maduben L Ranipa','9913003131'),(485,0,0,'Nishaben Vasani','9409333773'),(486,0,0,'Varshaben Bakoter','9904934918'),(487,0,0,'Ajaybhai Patel','9909930710'),(488,0,0,'Bachubhai A Kaila',''),(489,0,0,'Virmalaben Pithna','9879265580'),(490,0,0,'Meenaben D Kanjiya','9106568378'),(491,0,0,'Arshibhai K Dodiya',''),(492,0,0,'Dhartiben P Joshi','8460504990'),(493,0,0,'Chandubhai P Devaliya',''),(494,0,0,'Vajuben Chavda',''),(495,0,0,'Sunitaben ','8866812553'),(496,0,0,'Xyz',''),(497,0,0,'Parthbhai Popat','7778991999'),(498,0,0,'Jignashaba L Jadeja','8128321111'),(499,0,0,'Sunqandaben K Dave','9898008315'),(500,0,0,'Jitendrabhai H Serathiya',''),(501,0,0,'Ramaben Manvar',''),(502,0,0,'Sangitaben H Dadhaniya',''),(503,0,0,'Amishaben Rachadiya',''),(504,0,0,'Jatinbhai Kacha',''),(505,0,0,'Bhavinbhai Doshi',''),(506,0,0,'Sona Unadkat',''),(507,0,0,'Alpaben Goswami',''),(508,0,0,'Satishchandra B Sanghvi',''),(509,0,0,'Tusharsinh Raval',''),(510,0,0,'Poonamben Boda',''),(511,0,0,'Parshotambhao Kakadiya',''),(512,0,0,'DAKSHABEN KARAGIYA','9978770870'),(513,0,0,'KETANBHAI VORA','9409177400'),(514,0,0,'HEMAKSHIBEN VORA','9409177400'),(515,0,0,'ANKITABEN MULIYANA','9426205543'),(516,0,0,'GEETABEN ','9727636301'),(517,0,0,'MADHVI THAKAR','7574995336'),(518,0,0,'ALPABEN SOLANKI','9904169559'),(519,0,0,'RUPALBEN KANABAR','9638299100'),(520,0,0,'LAKHDHIRSINH CHAVDA','7984951556'),(521,0,0,'Kalabhai Dangar','9512582145'),(522,0,0,'Krishnaben Kandoliya','9427223827'),(523,0,0,'Ramdebhai Sida','7046814012'),(524,0,0,'Sandipbhai N Kundariya','9909468070'),(525,0,0,'Balrambhai Trivari','7355912916'),(526,0,0,'Parshotambhai Bhatti','8758748660'),(527,0,0,'Rasilaben Tanti','9173062312'),(528,0,0,'Samjibhai H Babariya','9723860273'),(529,0,0,'Sejalbhai H Mahida','9737742204'),(530,0,0,'Roshniben Bagda','7778895108'),(531,0,0,'Jaguben Pansuriya','9898953775'),(532,0,0,'Prafulaben Kothdiya','8154090324'),(533,0,0,'Sakarben V Kathad','9727327641'),(534,0,0,'Jesinbhai Chavda',''),(535,0,0,'Raydhanbhai G Lavdiya','9998189249'),(536,0,0,'Rameshbhai Parmar','7874069627'),(537,0,0,'Vijaybhai Goswami',''),(538,0,0,'Vithalbhai P Sojitra','9879263622'),(539,0,0,'Sohilbhai Solanki',''),(540,0,0,'Samjibhai H Babariya',''),(541,0,0,'Vishva Dawera',''),(542,0,0,'Jyotsanaben Ramani',''),(543,0,0,'Chhaganbhai Sitariya',''),(544,0,0,'Rasilaben Parmar',''),(545,0,0,'Ravjibhai Chovatiya',''),(546,0,0,'Yogeshbhai Dave',''),(547,0,0,'Anjnaben Dalsaniya',''),(548,0,0,'Hemanshu Bhatt',''),(549,0,0,'Vaidikbhai Moda',''),(550,0,0,'Nurjahanben S Sahmdar',''),(551,0,0,'MANISHABEN ADDA','9428791516'),(552,0,0,'MANISHABEN ADDA','9428791516'),(553,0,0,'EKTABEN D. SANTOKI','9427257734'),(554,0,0,'EKTABEN D. SANTOKI','9427257734'),(555,0,0,'EKTABEN D. SANTOKI','9427257734'),(556,0,0,'EKTABEN D. SANTOKI','9427257734'),(557,0,0,'RUKMANIBEN','8160195875'),(558,0,0,'J P LIMBANI','9429470939'),(559,0,0,'SURENDRABHAI MAHETA','9327368828'),(560,0,0,'OM BHADIYANI','9377793772'),(561,0,0,'KRUPALIBEN GOHIL','9664545922'),(562,0,0,'KRUPALIBEN GOHIL','9664545922'),(563,0,0,'Ravjibhai Chovatiya',''),(564,0,0,'HEMANSU BHATT',''),(565,0,0,'VAIDIKBHAI MODA',''),(566,0,0,'Bhupatbhai J Bajariya','9428969412'),(567,0,0,'Jentibhai J Ganondiya',''),(568,0,0,'Shantaben K Manek','9725335299'),(569,0,0,'Kanchanben P Satasiya','6354659441'),(570,0,0,'Shilpaben C Hirani','9428709560'),(571,0,0,'Vishwa Dawera','9904736434'),(572,0,0,'Aamirbhai Khatri','7984213887'),(573,0,0,'Susilaben A Sardava','9825706769'),(574,0,0,'Huseinbhai Z Katleriwala','9725855652'),(575,0,0,'Rajeshbhai Jadwani','9664535335'),(576,0,0,'Sasi Kakar','9898336535'),(577,0,0,'Poonamben Vaghela','9824220167'),(578,0,0,'Mayurbhai Buch','9879572227'),(579,0,0,'Bhartiben Buch','9879572227'),(580,0,0,'Mansukhbhai M Rank','9427214711'),(581,0,0,'Umaben Vyas','9825457159'),(582,0,0,'Prafulbhai Swadiya','9714494994'),(583,0,0,'MANISHABEN ','9427214676'),(584,0,0,'KANISHK YADAV','9924166721'),(585,0,0,'Geetaben M Chavda',''),(586,0,0,'Harunbhai H Sata',''),(587,0,0,'Krupaliben Thummar',''),(588,0,0,'Heenaben V Sindhav',''),(589,0,0,'Chetnaben M Patel',''),(590,0,0,'Niraliben Sachdev',''),(591,0,0,'Laxmanbhai S Pantaliya',''),(592,0,0,'Mamtaben Bhut',''),(593,0,0,'Darshan Patadiya',''),(594,0,0,'Prakashbhai Chapadiya',''),(595,0,0,'Bhavnaben V Dhamecha',''),(596,0,0,'Rohitbhai Makwana',''),(597,0,0,'Rashmitaben J Lalpiya','8320205076'),(598,0,0,'Jyotiben',''),(599,0,0,'Hemaben Gohel',''),(600,0,0,'Ishwarbhai Vora','8160638519'),(601,0,0,'Mehbubbhai Serasiya','9601837003'),(602,0,0,'Kishorbhai Parsana','9909920209'),(603,0,0,'Tarunaben Dokiya',''),(604,0,0,'Durgaben Chudasama','9313489474'),(605,0,0,'Dharmendrasinh Jadeja','9924193397'),(606,0,0,'Jentibhai Panara','9427699230'),(607,0,0,'Monikaben Changel','9714425550'),(608,0,0,'Ladhavjibhai Kachiyani','9898939811'),(609,0,0,'Vajubhai Rathod','7016513600'),(610,0,0,'Vijaybhai Dave','9737587087'),(611,0,0,'  Jayshreeben Pabani','9824515442'),(612,0,0,'Kuntaben D Mehta','8320384151'),(613,0,0,'Devuben N Rajani','9979242372'),(614,0,0,'Nileshbhai Heradiya','7984566928'),(615,0,0,'Jyotsanaben Rupareliya','9998606544'),(616,0,0,'Virjibhai Ranipa','9825346412'),(617,0,0,'Harshaben Devmurali',''),(618,0,0,'MULJIBHAI TALA','9898141407'),(619,0,0,'SHANTABEN TALA','9898141407'),(620,0,0,'MAHENDRABHAI BUCH',''),(621,0,0,'PRAGNABEN BUCH',''),(622,0,0,'BHAVIKABEN TANK',''),(623,0,0,'NAYNABEN VYAS',''),(624,0,0,'SATISHBHAI CHAURASHI',''),(625,0,0,'MINAXIBEN MANKAL',''),(626,0,0,'FATMABEN A IBRANI','9913790338'),(627,0,0,'NIKHAT ANSARI','9429090390'),(628,0,0,'NIKHAT ANSARI','9429090390'),(629,0,0,'NIKHAT ANSARI','9429090390'),(630,0,0,'HASUMATIBEN SEJPAL',''),(631,0,0,'RASHMITABEN DHAMELIYA',''),(632,0,0,'KIRTIBEN M VAGHELA',''),(633,0,0,'BATULBEN LOTIYA',''),(634,0,0,'HETALBEN C KERADIYA',''),(635,0,0,'MANSURBHAI A BHARMAL',''),(636,0,0,'BHARATBHAI BHARDVA',''),(637,0,0,'MARUTIBHAI VACHHRAJANI',''),(638,0,0,'CHETNABEN VASJADIYA',''),(639,0,0,'SURESHBHAI DAVE',''),(640,0,0,'DHIRUGIRI','9737777734'),(641,0,0,'SHARDABEN JAGODARA','9879966599'),(642,0,0,'RASILABEN BHOJANI',''),(643,0,0,'PRAKASHBHAI BHATT','9714497176'),(644,0,0,'ANILBHAI PANDYA','9426909286'),(645,0,0,'Prabhaben J Rajodiya','9825313123'),(646,0,0,'Anitaben Kotadiya','9157008020'),(647,0,0,'Nasrudin Gulam Mahmad','9714227865'),(648,0,0,'Jigneshbhai Shah','9377564165'),(649,0,0,'Vivekbhai Sonchatra','9033403073'),(650,0,0,'Dinaben Desai','9879019909'),(651,0,0,'Sangitaben Chavda','9978334336'),(652,0,0,'Lilabhai M. Odedra','9925544198'),(653,0,0,'Faizalbhai A Mahida','9737742204'),(654,0,0,'Rashikbhai Pandiya',''),(655,0,0,'Divyaben Goswami','9624375599'),(656,0,0,'Kishorbhai Dodiya','9601768282'),(657,0,0,'Jigneshbhai Pandya','9879577996'),(658,0,0,'BHANJIBHAI CHAUHAN','8758744343'),(659,0,0,'PRABHULAL B. THAKAR','9428791962'),(660,0,0,'Ramdebhai Sida','7046814012'),(661,0,0,'Rasikba Rathod','9879221630'),(662,0,0,'Sharmilaben S Bhimani',''),(663,0,0,'Sandipbhai Vasanvala','9879458558'),(664,0,0,'Arvindbhai Trada','9879458558'),(665,0,0,'Mayaben Gandhi','8238404032'),(666,0,0,'Mansukhbhai Vasoya','9429168532'),(667,0,0,'Rameshbhai Panchasara','9925872172'),(668,0,0,'Batukbhai G Changela','9898015880'),(669,0,0,'Lataben Bhalodiya','9409673264'),(670,0,0,'Rasilaben Kadivar','6352996842'),(671,0,0,'Narendrabhai Rokad',''),(672,0,0,'Ranjanben Nathwani','9824950109'),(673,0,0,'Rekhaben G Bhinde','9662300012'),(674,0,0,'Bhavdeepbhai Rathod',''),(675,0,0,'Mahmadbhai Mitana','9913271902'),(676,0,0,'Gordhanbhai Dadhaniya',''),(677,0,0,'MANISHABA KHERADIYA',''),(678,0,0,'BEENABEN KOTAK',''),(679,0,0,'CHHAGANBHAI KANJIYA',''),(680,0,0,'HARDIKBHAI TANNA',''),(681,0,0,'GAJRAJSINH ARADIYA',''),(682,0,0,'MAGANBHAI SATARIYA',''),(683,0,0,'VASIT BADI',''),(684,0,0,'VIKAS JOSHI',''),(685,0,0,'JAYDEVBHAI KUKADIYA',''),(686,0,0,'BHAVINBHAI BHARADVA',''),(687,0,0,'SHOBHNABEN DETROJA',''),(688,0,0,'DR. JAYDEEP PANDYA','9726612128'),(689,0,0,'Bhanuben Trada','8160159709'),(690,0,0,'Aashishbhai Garchar',''),(691,0,0,'Prabhasbhai V Lavadiya','9879053807'),(692,0,0,'Mayurbhai S Sudani','9909905015'),(693,0,0,'Jivuben Makwana','9638515111'),(694,0,0,'Dineshbhai M Prajapati','8490006000'),(695,0,0,'Jayminbhai J Patel','9979010400'),(696,0,0,'Jalabhai Goltar','8326529545'),(697,0,0,'Josanaben M Sardhar','9925165346'),(698,0,0,'Kavitaben J Thakar','9924022969'),(699,0,0,'Shivangiba Sarvaiya','9090837037'),(700,0,0,'Damjibhai Maraviya',''),(701,0,0,'Ilaben Joshi ','9429200887'),(702,0,0,'Mayuriben Swadia',''),(703,0,0,'Rachaben B Savaliya',''),(704,0,0,'Prafulbhai Mehta',''),(705,0,0,'Amitbhai Dudhatra',''),(706,0,0,'Virendrabhai Makwana',''),(707,0,0,'Pareshbhai B Ajani',''),(708,0,0,'Chandubhai Khandla',''),(709,0,0,'Harshaben Ganatra',''),(710,0,0,'Mansihaben Ramani',''),(711,0,0,'Mayaben Pande','9173376188'),(712,0,0,'Darpanbhai V Jamariya','7984892931'),(713,0,0,'Reenaben B Ladpara',''),(714,0,0,'Mehulbhai Solanki','9924020431'),(715,0,0,'Vipulbhai Bhalala',''),(716,0,0,'Dushaben Gosai','9824234045'),(717,0,0,'Rasiklal S Gami','9426933668'),(718,0,0,'Ajaybhai Parmar','9825516090'),(719,0,0,'Kiranbhai Adhiya',''),(720,0,0,'Manshukhbhai Kachadiya',''),(721,0,0,'Mazanbhai Malik','9825237281'),(722,0,0,'Minaben Mansaga','9825237281'),(723,0,0,'Dipankar Siddharth',''),(724,0,0,'Parshotambhai Tank',''),(725,0,0,'Shivangiba Vaghela',''),(726,0,0,'Nikhilbhai Dave',''),(727,0,0,'Prafulaben  Sheth',''),(728,0,0,'Vijyaben Thanki',''),(729,0,0,'Chandrakantbhai Rachh',''),(730,0,0,'Sachinbhai Hindocha',''),(731,0,0,'Manishaben Dodiya',''),(732,0,0,'Ravindrakumar Goswami',''),(733,0,0,'Champaben Chala',''),(734,0,0,'Pravinbhai K Mathak','9929423439'),(735,0,0,'Janiben Vala',''),(736,0,0,'Yakubbhai Pansara','9925580930'),(737,0,0,'Sunilbhai Jashi','6356506363'),(738,0,0,'Sabiraben Ansari',''),(739,0,0,'Arifbhai Selas','9998483102'),(740,0,0,'Himanshubhai Savsani','9726718066'),(741,0,0,'Pareshbhai Hingu','9898987083'),(742,0,0,'Vijyaben K Kundariya','9824372252'),(743,0,0,'Beniben K Chandravadiya','9106715707'),(744,0,0,'Ibrahimbhai Badi','9904956155'),(745,0,0,'Nishaben Bhatt',''),(746,0,0,'Sudhakar L Varse',''),(747,0,0,'A. N. SHETH','9904436382'),(748,0,0,'YOGIRAJSINH JADEJA',''),(749,0,0,'GIRABEN MEHTA',''),(750,0,0,'BHAVNABEN DALSANIYA',''),(751,0,0,'KAILASHBA JADEJA',''),(752,0,0,'VIDHYA PARMAR',''),(753,0,0,'MAHENDRABHAI LODHIYA',''),(754,0,0,'MADHUBEN GOSWAMI',''),(755,0,0,'KISHORBHAI NAKUM',''),(756,0,0,'MONISHBHAI BHATT',''),(757,0,0,'Laxmiben D Makwana',''),(758,0,0,'Dipakbhai A Gadhiya','9998016860'),(759,0,0,'Manhar Toliya',''),(760,0,0,'Narshibhai Halubhai','9712172392'),(761,0,0,'Halimaben H Musani','9898921718'),(762,0,0,'Chhaganbhai Tadpda',''),(763,0,0,'Minaxiben Pandya','8980219622'),(764,0,0,'Mahendrasinh Jadeja','9276319934'),(765,0,0,'Sapnaben Bhatt','6351447001'),(766,0,0,'Premjibhai G Kansagra','9726393987'),(767,0,0,'Ramilaben V Kachadiya','9428726248'),(768,0,0,'KAMLESHBHAI G KUNDALIYA','8905356738'),(769,0,0,'HARITABEN CHANDARANA',''),(770,0,0,'Sonalben L Ratadiya',''),(771,0,0,'Shantaben M Chauhan',''),(772,0,0,'Gulamhussain Mokha',''),(773,0,0,'Parth Trivedi',''),(774,0,0,'DIPTIBEN BHALARA','9099238882'),(775,0,0,'VALLABHBHAI SANCHANIYA','8866373814'),(776,0,0,'Kailashben P Kotecha','9023345805'),(777,0,0,'Miraben Kalariya',''),(778,0,0,'Balubhai Patadiya','9737661411'),(779,0,0,'Hareshbhai Maradiya','9898270249'),(780,0,0,'Junedbhai Mathakiya',''),(781,0,0,'Salimbhai H ','9924647612'),(782,0,0,'Nanjibhai Meghani',''),(783,0,0,'Nanjibhai Meghani',''),(784,0,0,'Kailashben P Kotecha','9023345805'),(785,0,0,'Miraben Kalariya',''),(786,0,0,'Balubhai Patadiya','9737661411'),(787,0,0,'Hareshbhai Maradiya','9898270249'),(788,0,0,'Junedbhai Mathakiya',''),(789,0,0,'Salimbhai H','9924647612'),(790,0,0,'Nanjibhai Meghani',''),(791,0,0,'Daxaben M Chapani','7043718553'),(792,0,0,'Shobhnaben S Badrakiya',''),(793,0,0,'Yuvrajsinh Zala','9913106753'),(794,0,0,'Kunal Vyas','9825840869'),(795,0,0,'Bhavnaben Tanna','7016956750'),(796,0,0,'Meenaben S Chavda','8320753677'),(797,0,0,'Zeel Tanna','9898886186'),(798,0,0,'Lalabhai Bedi','9727035440'),(799,0,0,'Meenaben B Parmar','9824327278'),(800,0,0,'Sharifaben S Kadivar','9574274642'),(801,0,0,'Gordhanbhai Patel','9879911085'),(802,0,0,'Narendrabhai Radhadiya','9825629701'),(803,0,0,'Khatizaben M Aagariya','8511166966'),(804,0,0,'Dharmishtaben Dhoriyani','9904540776'),(805,0,0,'Geetaben P Gadhiya','9979754731'),(806,0,0,'Madhuben P Pokhiya','7600043751'),(807,0,0,'Monaben Makwana','7990887502'),(808,0,0,'Naynaben Savaliya','9978051628'),(809,0,0,'Ramaben Dave ','8238385143'),(810,0,0,'Ranchhodbhai Dabhi','9925314601'),(811,0,0,'Lataben Patel','7698146942'),(812,0,0,'Kailashba Jadeja','6352848808'),(813,0,0,'Dharmishtaben M Chandegra','9662409775'),(814,0,0,'Rekhaben Mehta','7990863054'),(815,0,0,'Daxaben Joshi',''),(816,0,0,'Jyotiben Tank','8200772731'),(817,0,0,'Manojbhai Vaghela','7600454585'),(818,0,0,'Hetalben D Detroja','9922572890'),(819,0,0,'Malhar Dholiya','8000766733'),(820,0,0,'Abashbhai K Vikiyani','7016881620'),(821,0,0,'Hemaben M Baldha',''),(822,0,0,'Savjibhai Bhalara','9924844824'),(823,0,0,'Rameshbhai R Sorthiya','9724460116'),(824,0,0,'Nirmalaben V Dhakan','9925435895'),(825,0,0,'RAMESHBHAI SOLANKI','9924914400'),(826,0,0,'MALTIBEN SOLANKI','9924914400'),(827,0,0,'FARIDABEN KESHWANI','9429336982'),(828,0,0,'RASIKBHAI K VEKARIYA','9664937147'),(829,0,0,'RAMABEN RATHOD','9099515714'),(830,0,0,'GEETABEN T. AATVANI','9879668004'),(831,0,0,'MEENABA ',''),(832,0,0,'CHANDRAKANT PANDYA',''),(833,0,0,'MANISHA DODIYA',''),(834,0,0,'JAYSUKH BHUVA',''),(835,0,0,'PANNA JOSHI',''),(836,0,0,'INDUBA JADEJA',''),(837,0,0,'TRUPTI KUNJANI',''),(838,0,0,'KIRAN BHADRA',''),(839,0,0,'PARV D PARMAR',''),(840,0,0,'Meenaben Patel',''),(841,0,0,'Premalben Makad','9428890764'),(842,0,0,'Toralben Mehta',''),(843,0,0,'Madhavjibhai Solanki','7405536211'),(844,0,0,'Sunitaen ','9265860231'),(845,0,0,'Dilipbhai Kapdi',''),(846,0,0,'Shardaben ','8460008703'),(847,0,0,'Mitaliba Jadeja','9429243201'),(848,0,0,'Daxaben',''),(849,0,0,'Rafikbhai Detroja','9426960873'),(850,0,0,'Jayshreeben Vyas','9099941499'),(851,0,0,'Rasikbhai Pitroda','9426960873'),(852,0,0,'RAMNIKBHAI MAKWANA','8128365607'),(853,0,0,'MAMTABEN KOTECHA','8311660451'),(854,0,0,'KETANBHAI GOL','9099092904'),(855,0,0,'JATINBHAI D CHAVDA','9825279519'),(856,0,0,'SHOBHNABEN S BADRAVIYA',''),(857,0,0,'POPATBHAI J MANVAR','9879310448'),(858,0,0,'PARASBEN M JADAV','9023911236'),(859,0,0,'BIPINBHAI DAVE','9104122319'),(860,0,0,'PRAFULABEN P SANTOKI','9879876424'),(861,0,0,'RAVATBHAI L GIDA',''),(862,0,0,'JENTILAL BHANUSALI','9913112265'),(863,0,0,'Chetanbhai Chaniyara','9426949726'),(864,0,0,'Ektaben Vaghela','9016893431'),(865,0,0,'Prafula B Chauhan','9265035590'),(866,0,0,'Shardaben Jagodra','9879956599'),(867,0,0,'Sushilaben Sanghani','9099923505'),(868,0,0,'Chandulal H Khakhar','9879134499'),(869,0,0,'Rekhaben Chhatraliya','9725424033'),(870,0,0,'Jinal Tanna','7698913952'),(871,0,0,'JAYESHBHAI I BHATT','9904486057'),(872,0,0,'JASUBEN M SACHIYA','9724646480'),(873,0,0,'Yashminben Khimani','8866051231'),(874,0,0,'Babubhai Jasani','9638134359'),(875,0,0,'Hiteshbhai Dabhi','9723298805'),(876,0,0,'Ismailmiya J Kadari','9974375743'),(877,0,0,'Chandraben M ','9974430302'),(878,0,0,'Nareshbhai Tank','8200772731'),(879,0,0,'Sangitaben Pipaliya','8000550056'),(880,0,0,'Kiritkumar M Mansheta','9925961921'),(881,0,0,'Pragnaben Mehta','9265917278'),(882,0,0,'Madhuben M Pipaliya','9638141500'),(883,0,0,'Rekhaben Tamtta','9737176037'),(884,0,0,'Rajeshwariben',''),(885,0,0,'Nitaben Bhuva','9725653361'),(886,0,0,'Vallabhbhai Parmar','6353858560'),(887,0,0,'Shitalben Joshi','8320603071'),(888,0,0,'Minaxiben Pandya','8320603071'),(889,0,0,'RINALBEN S. BHANDERI','9998491768'),(890,0,0,'Sarojben Kagathara','8155847543'),(891,0,0,'JAMANBHAI  CHAVDA','9727930690'),(892,0,0,'JAYABEN KALARIYA','9429327477'),(893,0,0,'KAUSHIKKUMAR GOVINDE','9898104057'),(894,0,0,'RUKSHMANIBEN J DABHI','9827521479'),(895,0,0,'NAYNABEN PARMAR','7600776046'),(896,0,0,'RAMESHBHAI G GHODASARA','9408165334'),(897,0,0,'Kantilal A Dhabaliya',''),(898,0,0,'Aliakbar Sheikh',''),(899,0,0,'Vandanaben Gadhvi',''),(900,0,0,'VALLBHBHAI THUMAR','9426448720'),(901,0,0,'AMITSINH GOHIL','9427410127'),(902,0,0,'Savitaben Luniyatar',''),(903,0,0,'NITABEN B BHUT','9428039071'),(904,0,0,'PAYALBEN HANSALIYA','9428125566'),(905,0,0,'RITABEN NANDANI','9374989952'),(906,0,0,'RATILALBHAI LANGANOJA','9099059939'),(907,0,0,'NARESHBHAI CHAVDA','8807302302'),(908,0,0,'HINALBEN RAIYANI','9016653773'),(909,0,0,'SAVITABEN B SADHARIYA','7043530837'),(910,0,0,'VALIBEN PARMAR','9723233939'),(911,0,0,'Laxmanbhai Magnani',''),(912,0,0,'Harsukhbhai Sachdev','9898569713'),(913,0,0,'Artiben Joshi','9924118070'),(914,0,0,'Smitaben Kavaiya','8866211871'),(915,0,0,'Mahendrabhai Tank','9879115032'),(916,0,0,'Bhavnaben Kaku','9427209656'),(917,0,0,'Indrajeetbhai Kher','7777962777'),(918,0,0,'Jatinbhai Harsoda','9726976267'),(919,0,0,'Kamlaben D Punani',''),(920,0,0,'Manojbhai Kacha','9825079382'),(921,0,0,'Ramdebhai Kanangiya','9099825233'),(922,0,0,'Kamlaben D Patel','9825246551'),(923,0,0,'Heenaben Ladani','9737936236'),(924,0,0,'Yogesh Kundaliya','9925575812'),(925,0,0,'Bhagwanbhai J Barad','9687832371'),(926,0,0,'Anjanaben Ghetiya',''),(927,0,0,'Ashishbhai Parmar','9687570361'),(928,0,0,'Rameshbhai H Pitroda','7016941983'),(929,0,0,'Vaishw Dhakan',''),(930,0,0,'KAMLABEN SINOJIYA','9714891611'),(931,0,0,'SUNILBHAI BHADRESHA','7574886486'),(932,0,0,'MUKTABEN B GOSWAMI','7990704207'),(933,0,0,'SHAISHTA KADIVAR','9737457158'),(934,0,0,'JIVRAJBHAI SOJITRA','9016299044'),(935,0,0,'DHAVALBHAI GODHANI','9601883825'),(936,0,0,'DHARMISHTABEN J CHOVATIYA',''),(937,0,0,'KINJALBEN RAICHARA','9429776029'),(938,0,0,'PRAFULABA F VAGHELA','8160998347'),(939,0,0,'BHAVESHBHAI KANSAGRA','9426229436'),(940,0,0,'JASRAJBHA R MANEK','7434807113'),(941,0,0,'MHENDRABHAI D THAKAR','9428684853'),(942,0,0,'NEERUBEN SHUKLA','8401228037'),(943,0,0,'KISHORBHAI M VPADHYAY','9275036140'),(944,0,0,'RAMSINH RATHOD','9825695846'),(945,0,0,'NAGJIBHAI N SHAKHAVRA','9712369529'),(946,0,0,'ANANTRAI M DHOLAKIYA','9825457159'),(947,0,0,'Sarlaben Thakar','6355176731'),(948,0,0,'Merunben Girach','9054960123'),(949,0,0,'Sagarbhai Bhutani','9274575245'),(950,0,0,'Navinbhai J Jethva','9635488147'),(951,0,0,'Rajeshbhai K Kikadiya','9537441656'),(952,0,0,'Hardashbhai A Dodiya','9924298375'),(953,0,0,'Dayabhai Panara','9638853936'),(954,0,0,'Rekhaben Gondaliya',''),(955,0,0,'Dayabhai L Panara','9913443126'),(956,0,0,'Mavjibhai J Nagani','9824050501'),(957,0,0,'Geetaben Parmar','9904322425'),(958,0,0,'Maheshbhai Dhabaliya',''),(959,0,0,'Ritaben Apani','9904720350'),(960,0,0,'Pooja Parasbhai ','9925137889'),(961,0,0,'Shelosh Sarisaben','9277250276'),(962,0,0,'Nanjibhai Tala','9662100068'),(963,0,0,'Chandrikaben R Chandrani','8160645450'),(964,0,0,'CHANDUBHAI LUNADARIYA','9879049526'),(965,0,0,'VIJAYBHAI SAMAIYA','9099969237'),(966,0,0,'RAJAKBHAI KALUBHAI  MANTHRA','9879942899'),(967,0,0,'JAYSHREEBEN VIRADIYA','9371733072'),(968,0,0,'BANSI MAKADIYA','7778071526'),(969,0,0,'JIGNABA B JADEJA','9033877777'),(970,0,0,'ALPABEN D SARVAIYA','7567287573'),(971,0,0,'PRAVINCHANDRA JOSHI','9428497617'),(972,0,0,'TATIBEN KUMBHARIYA','8401777557'),(973,0,0,'ARJANBHAI M AGHERA','9429512742'),(974,0,0,'AMIM IKBALBHAI RAMDAN','9924189409'),(975,0,0,'MEET NASE','9429269550'),(976,0,0,'RAJESHBHAI AMSARA','9824425765'),(977,0,0,'PAYALBEN LOMBARIYA','9909046821'),(978,0,0,'VIPULBHAI JADAV','9428838764'),(979,0,0,'DHARMISHTABEN DHORIYANI','9909540776'),(980,0,0,'VIJAYBHAI GADHVI','9974766640'),(981,0,0,'VIJAYBHAI GADHVI','9974766640'),(982,0,0,'Bhaveshbhai J Bhaskar','8866363880'),(983,0,0,'Madhuben Rathod',''),(984,0,0,'Jayant K Joshi',''),(985,0,0,'Mansukhbhai Goriya',''),(986,0,0,'Nitaben N Vaghamsi',''),(987,0,0,'Meenaben Gohel',''),(988,0,0,'Chaganbhai R Vasajadiya',''),(989,0,0,'Jentibhai N Mehta',''),(990,0,0,'Hasambhai Vala',''),(991,0,0,'Hiragarbhai Goswami',''),(992,0,0,'Ravi Sagthiya','8160148407'),(993,0,0,'Mehamd Makwana','9426784499'),(994,0,0,'Apsanaben J Rathod','9898691946'),(995,0,0,'Nathabhai J Keswala','7984845940'),(996,0,0,'Gitajan Kajiya','9925342709'),(997,0,0,'Mahmad Sami','9998740802'),(998,0,0,'Hirabhai D Makwana','9428671235'),(999,0,0,'Diwaliben Vyas','9428201519'),(1000,0,0,'Rameshbhai J Gajera','9913922799'),(1001,0,0,'Dharmendrasinh Jadeja',''),(1002,0,0,'Halimaben Katariya','7069679927'),(1003,0,0,'Saratbhai Doli','9427170001'),(1004,0,0,'Geetaben Nadiyapara','9824247591'),(1005,0,0,'Rekhaben Shah','9265525889'),(1006,0,0,'Bhartiben H Varsda','7984373667'),(1007,0,0,'Champaben Sakhiya','9909840412'),(1008,0,0,'Chiragbhai Vyas','9722033303'),(1009,0,0,'Dipakbhai Ghelani','9016058874'),(1010,0,0,'Nanjibhai Rathod','9913282718'),(1011,0,0,'Rameshbhai G Rakhasiya','9879221369'),(1012,0,0,'Nirmalaben Virudiya','9825798500'),(1013,0,0,'Hiral Trivedi','9925372953'),(1014,0,0,'Sayraben','9426553372'),(1015,0,0,'Harulbhai Detim','9426553372'),(1016,0,0,'Nirmalaben Gohil','9925404517'),(1017,0,0,'Pratikbhai Vadgama','7990301027'),(1018,0,0,'Geetaben K Kotak',''),(1019,0,0,'Shrutiben Dawla','6352005183'),(1020,0,0,'Hansaben Makwana','9898536517'),(1021,0,0,'Vallabhbhai Bhalani','9879318617'),(1022,0,0,'Mukundbhai Chavan','9638041052'),(1023,0,0,'Jaydeepbhai Savsani','7069581000'),(1024,0,0,'Hareshbhai Virja',''),(1025,0,0,'Hansaben Kukadiya','9978210778'),(1026,0,0,'Munika P Badarsani','9723819944'),(1027,0,0,'Sumanben Goswami','9512409321'),(1028,0,0,'Kusumba A Jadeja','9904759252'),(1029,0,0,'Veenaben ',''),(1030,0,0,'Ritaben Sanghavi',''),(1031,0,0,'Zala Pruthvirajsinh','9879190850'),(1032,0,0,'Parth Mashroo','7405448557'),(1033,0,0,'Naynaben Vala','9925723815'),(1034,0,0,'MANSUKHBHAI','9924353288'),(1035,0,0,'MANSUKHBHAI','9924353288'),(1036,0,0,'KIRANBEN PORIYA',''),(1037,0,0,'DEVARSH RAVAL',''),(1038,0,0,'BHUMIKABEN B ASRANIYA',''),(1039,0,0,'JAGDISHBHAI MEGHVAL',''),(1040,0,0,'NAYNABEN PATADIYA',''),(1041,0,0,'BHARATBHAI VYAS',''),(1042,0,0,'HARISINH GOHIL',''),(1043,0,0,'VAISHALIBEN SAKHIYA',''),(1044,0,0,'MANJULABEN LAKHANI',''),(1045,0,0,'MANJULABEN MARU','9779573336'),(1046,0,0,'DIPESHBHAI BORANIYA',''),(1047,0,0,'JAYSHREEBEN DAVE','9978785404'),(1048,0,0,'GRISHMABEN JOSHI','9737621620'),(1049,0,0,'DAYABHAIPATEL',''),(1050,0,0,'BANUBHAI J TANK',''),(1051,0,0,'ARVINDBHAI PATEL',''),(1052,0,0,'NISHABEN PAREKH',''),(1053,0,0,'GAMBHIRSINH BARAD','9925011390'),(1054,0,0,'SAMIRBHAI M HARIPIYAS','9725629523'),(1055,0,0,'NARENDRABHAI KHACHAR','9824415678'),(1056,0,0,'Kalpanaben Thakkar','9824217445'),(1057,0,0,'HARVI RUPAPARA','9067545506'),(1058,0,0,'Dilipbhai M Chandarani','9033245843'),(1059,0,0,'Jadavbhai Gondaliya','9824409257'),(1060,0,0,'Balbhadrabhai Solanki',''),(1061,0,0,'Divya Joshi','9825536056'),(1062,0,0,'PRADHYUMANSINH VAGHELA','9825217937'),(1063,0,0,'VARSHABEN JOSHI','7600524497'),(1064,0,0,'DHARMESHBHAI THORIYA','9106851425'),(1065,0,0,'HASHMUKHBHAI KOTHARI','8401110072'),(1066,0,0,'JAMKUBEN KANERIYA',''),(1067,0,0,'Girishbhai H Bhatt',''),(1068,0,0,'Dimple Raval',''),(1069,0,0,'Meenaben Khirani',''),(1070,0,0,'Ketanbhai Chauhan',''),(1071,0,0,'Sonalben Jograna',''),(1072,0,0,'Bhikhabhai T Sorathiya',''),(1073,0,0,'ANKITBHAI VORA','9725800054'),(1074,0,0,'NANDINI ','9426317907'),(1075,0,0,'DAYABEN S CHAVDA','9925219977'),(1076,0,0,'SAMIRBHAI MANDAVIYA','6355060656'),(1077,0,0,'Ushaben Sagar',''),(1078,0,0,'Hetalben Tanna',''),(1079,0,0,'Mohanbhai Chaniyara',''),(1080,0,0,'Pravinbhai M Bathvar',''),(1081,0,0,'Viraliben Keradiya',''),(1082,0,0,'Parbatbhai Kher',''),(1083,0,0,'Aditi Mandaliya',''),(1084,0,0,'Rashmiben Chandarana',''),(1085,0,0,'Maliben Parmar',''),(1086,0,0,'Mansukhbhai Chhag',''),(1087,0,0,'Varshaben Gosai',''),(1088,0,0,'Batukbhai Changela',''),(1089,0,0,'Vimal Bhai Javiya',''),(1090,0,0,'Vimal Bhai Javiya',''),(1091,0,0,'Vimal Bhai Javiya',''),(1092,0,0,'Sobhnaben Keshriya','9824612160'),(1093,0,0,'Sobhnaben Joshi','7069002998'),(1094,0,0,'Nirmlaben M Shilu','9925062792'),(1095,0,0,'Shitalben Desai','8000385425'),(1096,0,0,'Ashokbhai J Joshi','9426234195'),(1097,0,0,'Jamnaben Limbasiya','9426449904'),(1098,0,0,'Vaibhavbhai Kava','9726317509'),(1099,0,0,'Dakshaben Akbari','9924810940'),(1100,0,0,'Heenakumari P Chaniyara','9106836155'),(1101,0,0,'Maheshbhai Lodhiya',''),(1102,0,0,'Vipulbhai Shah','9909169699'),(1103,0,0,'Samjibhai Bharadava','9725458865'),(1104,0,0,'Nileshbhai Bhut','9825436676'),(1105,0,0,'Nileshbhai Bhut','9825436676'),(1106,0,0,'Vaibhavbhai Kava','9726317509'),(1107,0,0,'Dakshben Akbari','9924810940'),(1108,0,0,'Heenakumari P Chaniyara','9106836155'),(1109,0,0,'Maheshbhai Lodhiya',''),(1110,0,0,'Vipulbhai Shah','9909169699'),(1111,0,0,'Samjibhai Bharadava','9725458865'),(1112,0,0,'Nileshbhai Bhut','9825436676'),(1113,0,0,'Geetaben Rajput','9913607933'),(1114,0,0,'Manubhai Khuman',''),(1115,0,0,'Darshansing China','9712377396'),(1116,0,0,'Aartiben R Trivedi','9099327874'),(1117,0,0,'Virendrabhai Sindhav','9638763222'),(1118,0,0,'Rekhaben Kanjariya','8905531259'),(1119,0,0,'Gitaben Kavthiya',''),(1120,0,0,'Rajbhai Megandhi',''),(1121,0,0,'JAGRUTIBEN THAKAR','9978785404'),(1122,0,0,'YAGNESH BHOJANI','9712233716'),(1123,0,0,'Aditya D Chotila',''),(1124,0,0,'Vijyaben D Jadav',''),(1125,0,0,'Krishnaben Ranpara',''),(1126,0,0,'Vallabhbhai N Chadodra',''),(1127,0,0,'Princyben Sankhavda',''),(1128,0,0,'Krishnaben Savaliya',''),(1129,0,0,'Sangitaben S Chauhan',''),(1130,0,0,'Hanshaben ',''),(1131,0,0,'Dr Vijay Unadkat',''),(1132,0,0,'Tammanaben Makwana','7202040347'),(1133,0,0,'PREMJIBHAI VANIIYA','8100000896'),(1134,0,0,'RAJESHBHAI MALANI','9898253368'),(1135,0,0,'Unnati J Thakar','8401159929'),(1136,0,0,'Mustakbhai Chauhan','8128956882'),(1137,0,0,'SHYAM CHOTAI','9408390975'),(1138,0,0,'Bhavnaben M Gadhvi','9426783410'),(1139,0,0,'Surendra H Vyas','9913975343'),(1140,0,0,'Chandrikaben D Gajera','9879493593'),(1141,0,0,'Deviben Odedra','6353954638'),(1142,0,0,'Ravidas G Patel','9925213256'),(1143,0,0,'Ravidas G Patel','9925213256'),(1144,0,0,'Rakeshbhai G Javya','9924599106'),(1145,0,0,' Dharmistaben ','9825481881'),(1146,0,0,'Shardaben Gachha','9913335484'),(1147,0,0,'RAMILABEN RAJANI','9427270727'),(1148,0,0,'Ramilaben Rajani','9427270727'),(1149,0,0,'Dishaben Zankat','7861809868'),(1150,0,0,'LAXMISHANKAR DAVE','9998190130'),(1151,0,0,'HANSABEN L. DAVE','9998190130'),(1152,0,0,'NEEL PUROHIT','9909001476'),(1153,0,0,'Hasinaben Jeja','8160646630'),(1154,0,0,'ANIKETBHAI DOBARIYA','9909806161'),(1155,0,0,'RAMESHBHAI V PARMAR','9823910115'),(1156,0,0,'Arjunbhai Makwana',''),(1157,0,0,'Maganbhai Sorathiya',''),(1158,0,0,'Hirenbhai Manjanpara',''),(1159,0,0,'Satishbhai Vora',''),(1160,0,0,'Ravirajsinh B Jadeja',''),(1161,0,0,'Parasba J Sarvaiya',''),(1162,0,0,'Rakshaben Mehta',''),(1163,0,0,'Leelaben Tank',''),(1164,0,0,'Hansaben Tatamiya',''),(1165,0,0,'VEENABEN','9824827232'),(1166,0,0,'KUSUMBEN GANDHI',''),(1167,0,0,'MAMTABEN RATANBHARIYA','8866370344'),(1168,0,0,'DAXABEN GODA','9033657897'),(1169,0,0,'Nathiben Sora','9879418820'),(1170,0,0,'Viralba Jadeja','9558767707'),(1171,0,0,'Santokben Jadav','9328799150'),(1172,0,0,'Varshaben Shah','8141377733'),(1173,0,0,'Mahadevbhai B Talpara',''),(1174,0,0,'Parthbhai Tanna','9979003174'),(1175,0,0,'Balubhai Gami','9925870089'),(1176,0,0,'Viralbhai H Shah','9879610684'),(1177,0,0,'Ektaben Vaghela','9016893431'),(1178,0,0,'Jasmita R Zalavadiya','9033327048'),(1179,0,0,'Bakuleshbhai Pithva','9427272311'),(1180,0,0,'Dipak Sapariya','9825444646'),(1181,0,0,'Saurab Bhai Buchh','9879572272'),(1182,0,0,'Stutiben Buch','9825872227'),(1183,0,0,'ANSOYABEN B. CHOTALIYA','7405440809'),(1184,0,0,'BHAUTIKBHAI HALIFA','8320723739'),(1185,0,0,'HARDIKBHAI PAMBHAR','9924263456'),(1186,0,0,'BANSIBEN POPAT','9979585345'),(1187,0,0,'JYOTIBEN  ANJARIYA','8733825295'),(1188,0,0,'HARSHABEN SHASTRI','8238301713'),(1189,0,0,'GITANSH SWADIA','8849265142'),(1190,0,0,'Tirth Meghani','9428256622'),(1191,0,0,'Jyotiben Vyas','9724646038'),(1192,0,0,'Madhuben Rathod','9825830441'),(1193,0,0,'Ayub S Ganju','9825988890'),(1194,0,0,'Anisha A Ganja','9825988890'),(1195,0,0,'Chandrikaben Maheta','9849712969'),(1196,0,0,'Riddhiben S Mori','9727187616'),(1197,0,0,'LATABEN PANDYA','8469095944'),(1198,0,0,'Chandubhai Kanani','9638247929'),(1199,0,0,'Chandubhai Kanani','9638247929'),(1200,0,0,'Chandubhai Kanani','9638247929'),(1201,0,0,'Prafulaben Vedant','9224156680'),(1202,0,0,'Sanjaybhai Patel','9687608081'),(1203,0,0,'Shobhnaben Kachotiya ','8200372446'),(1204,0,0,'Jayaben A Shuva',''),(1205,0,0,'Puriben Bhurabhai','9638243697'),(1206,0,0,'Hasmukhbhai J Chudasa','9924424972'),(1207,0,0,'Prasanjit','9173273961'),(1208,0,0,'Josanaben Jirajbhai','9913018124'),(1209,0,0,'Bhautikbhai Halifa','8320723739'),(1210,0,0,'Keshubhai B Odedra','9979686531'),(1211,0,0,'MRUDULABEN PANDYA','9374128521'),(1212,0,0,'HEENABEN CHAVDA','6352526973'),(1213,0,0,'DIVYABEN V VYAS','9265841020'),(1214,0,0,'MADHVIBEN SOLANKI','7046515111'),(1215,0,0,'USHABEN A. BUSA','9924260924'),(1216,0,0,'JINKALBEN MALVANIYA','9428317041'),(1217,0,0,'PARESHBHAI BHAGAT','8000002438'),(1218,0,0,'SHARDABEN KAVA','9726312509'),(1219,0,0,'SURYARAJSINH SOLANKI','9998001919'),(1220,0,0,'KAUSHIKBHAI PANDYA','9978930090'),(1221,0,0,'DIMPALBEN VARU','9904229290'),(1222,0,0,'ROHITBHAI','9426423047'),(1223,0,0,'ANKITBHAI JOSHI','8866889912'),(1224,0,0,'GAURIBEN J. VANIYA','9316922388'),(1225,0,0,'MANAVRAJSINH JADEJA',''),(1226,0,0,'RUPALBEN',''),(1227,0,0,'HARISHBHAI MAKAD','9427217380'),(1228,0,0,'Nathabhai Jadeja','9687399757'),(1229,0,0,'Jayaben R Vaniya','8530870402'),(1230,0,0,'Pragnaben Kacha','9725841934'),(1231,0,0,'Bharatbhai Gami','9824648860'),(1232,0,0,'Ghanshyambhai J Kasundra','9998428112'),(1233,0,0,'Edabhai Rupsingbhai','9913085607'),(1234,0,0,'Shantaben M Bhayani','9824240255'),(1235,0,0,'Siddharthbhai Lakhani','9825164275'),(1236,0,0,'Dayaben B Bagda','9664890028'),(1237,0,0,'Pragnaben M Mehta','9824881598'),(1238,0,0,'JAGDISHBHAI TRIVEDI','8160868246'),(1239,0,0,'BHAVNABEN CHAUHAN','9998397818'),(1240,0,0,'VIRENDRABHAI','8779807600'),(1241,0,0,'KUSUMBEN C. KATHRECHA','9904430028'),(1242,0,0,'RAJESHBHAI PARMAR',''),(1243,0,0,'JAGRUTIBEN SAKHIYA','9898455731'),(1244,0,0,'VEJIBEN','9712587145'),(1245,0,0,'VIJAYSINH V. VALA','9727702727'),(1246,0,0,'INDIRABEN SOLANKI','9898739119'),(1247,0,0,'GRISHMABEN PATEL','9998815753'),(1248,0,0,'Reenaben B Mehta',''),(1249,0,0,'Gayatriben V Mehta','9409525100'),(1250,0,0,'Abhishek G Mehta','9409525100'),(1251,0,0,'Diya Kanabar',''),(1252,0,0,'Meenaben Rupareliya',''),(1253,0,0,'Parshotambhai Jethva',''),(1254,0,0,'Mamtaben Tank','9427725985'),(1255,0,0,'Dilipbhai Gopalbhai Kachatiya','9638602628'),(1256,0,0,'Girishbhai Upadhyay','8758030003'),(1257,0,0,'Pankajbhai Shah','9428295070'),(1258,0,0,'Jenil Gorasiya',''),(1259,0,0,'ARJUNBHAI PINGALA','9601679576'),(1260,0,0,'Farukbhai  Vakil',''),(1261,0,0,'Hareshbhai Viradiya','9898490981'),(1262,0,0,'Saniya Sabriya','9898627739'),(1263,0,0,'Binaben H Gadhvi','7622985166'),(1264,0,0,'Vijyaben Dobariya','8238655812'),(1265,0,0,'Bhavanishankar Upadhyay','9586664999'),(1266,0,0,'Ranjanba D Chauhan','9725602221'),(1267,0,0,'Dilipbhai Vegda','9725414885'),(1268,0,0,'Ajit Shrivastav','9925411990'),(1269,0,0,'Harsidaben D Khunt','9824280179'),(1270,0,0,'Sejalben Bakutra','9714034912'),(1271,0,0,'Sobhnaben Ratnpara','9313012479'),(1272,0,0,'Kapilbhai K Vaja','9898154007'),(1273,0,0,'Kajalben Mehta ','6351138586'),(1274,0,0,'Sunitaben B Bhojvani','7434821679'),(1275,0,0,'Bhartiben Doshi','9227973107'),(1276,0,0,'Harsadbhai Kamani','9909796306'),(1277,0,0,'Chetanbhai ','9737234461'),(1278,0,0,'Hareshbhai M Ambasana','9824906821'),(1279,0,0,'Chaganbhai S Hirani','9898182904'),(1280,0,0,'Vasrambhai Mohanbhai Fultariya','9427551295'),(1281,0,0,'Kishanbhai Pala','9712911011'),(1282,0,0,'Ahemad Sekh','7862929587'),(1283,0,0,'Jamanbhai Nasit','7046507070'),(1284,0,0,'Arjanbhai Nasit ','9726714044'),(1285,0,0,'Lilavatiben Nasit','9726714044'),(1286,0,0,'Sarlaben ','7069111791'),(1287,0,0,'Sajedaben Lingadiya','9714716321'),(1288,0,0,'Bhagavatiben B Nariyapara','8140729275'),(1289,0,0,'Ilaben Doshi','8160950913'),(1290,0,0,'Varsaben Mehta','9825756005'),(1291,0,0,'Jamanbhai M Ranpariya','7046507070'),(1292,0,0,'Hirkuben Ravatbhai Khachar','9904119022'),(1293,0,0,'Babubhai Borisagar','8160606603'),(1294,0,0,'Ishmailbhai D Sheikh','9428347386'),(1295,0,0,'Niranjanben Patel','9898441788'),(1296,0,0,'Parulben Ketanbhai Vaghasiya','8758751398'),(1297,0,0,'Muktaben Bharadva','9638619829'),(1298,0,0,'Shobhnaben Kansagra','9265692375'),(1299,0,0,'NARENDRABHAI NADIYAPARA',''),(1300,0,0,'LAILA VIRANI','9998669730'),(1301,0,0,'VISHALBHAI VARASADA','8160833096'),(1302,0,0,'RAJIBEN ','9081964281'),(1303,0,0,'SHRADDHA BABARIYA',''),(1304,0,0,'VRAJESHBHAI MEHTA','8160638519'),(1305,0,0,'Mohanbhai M Karanjiya',''),(1306,0,0,'Bhanuben J Kachdiya','9725897835'),(1307,0,0,'Samjuben Sakiya','9723000142'),(1308,0,0,'Kiranben Soriya','9924503312'),(1309,0,0,'Vanitaben Parsundiya','9978877996'),(1310,0,0,'Hetalben Trivedi','9429075525'),(1311,0,0,'Sunitaben Bhaveshbhai Bhojvani','7434821679'),(1312,0,0,'Janakben Rameshbhai Jadav','9427664072'),(1313,0,0,'Bharatsinh Jadeja','9879149194'),(1314,0,0,'Manojkumar Vyas','9825405506'),(1315,0,0,'Jashvantrai',''),(1316,0,0,'Radhika Gohil',''),(1317,0,0,'Minaben Unadkat',''),(1318,0,0,'Hiren Shukla',''),(1319,0,0,'GODAVRIBEN R. KAKANIYA','9427564348'),(1320,0,0,'MINABEN R. VAGADIYA','9099089004'),(1321,0,0,'DEV SAGAR','9082024014'),(1322,0,0,'JATINBHAI BHAVSAR','8866474008'),(1323,0,0,'JENTIBHAI ARANIYA','9904322531'),(1324,0,0,'HANSABA ZALA','9265065355'),(1325,0,0,'DHARMISHTABEN BODAR','9687229748'),(1326,0,0,'DAMYANTIBEN GADHIYA',''),(1327,0,0,'SONALBEN RUPANI','9824897509'),(1328,0,0,'MANJULABEN MEHTA','7567827551'),(1329,0,0,'PRATAPBHAI RATHOD','8128382500'),(1330,0,0,'DIPAKBHAI TANK','9624434342'),(1331,0,0,'AMITBHAI KOTHARI','7573038092'),(1332,0,0,'AISHWARYA BAROT','7490036133'),(1333,0,0,'KAUSHALKUMAR OZA','9824452335'),(1334,0,0,'KALINDI OZA','9824452335'),(1335,0,0,'SAYRABEN CHAUHAN','7990950091'),(1336,0,0,'Kantaben L Chavda',''),(1337,0,0,'Karansinh Zala','9428209888'),(1338,0,0,'Laxmiben R Chavda','9558679496'),(1339,0,0,'Masribhai Karangiya','9429423360'),(1340,0,0,'Mukeshbhai Rachh','9825224784'),(1341,0,0,'Alkaben R Negevadiya',''),(1342,0,0,'Alkaben R Negevadiya',''),(1343,0,0,'Neetaba Jadeja',''),(1344,0,0,'Ritaben Sorathiya',''),(1345,0,0,'KEMI CHAUHAN','8160050553'),(1346,0,0,'RAMABEN MAKWANA','8511136302'),(1347,0,0,'Kishorbhai Sakhiya','7600005817'),(1348,0,0,'Rupaben Makadiya','9879225749'),(1349,0,0,'Dineshbhai Jadav','9978428868'),(1350,0,0,'Kanjibhai Kor','9824210606'),(1351,0,0,'Ranjanben Chauhan','9909998013'),(1352,0,0,'Ronakbhai Patel ','7435961868'),(1353,0,0,'Sanjaybhai Dhunoja','8000019791'),(1354,0,0,'Bansi Savaliya','9925794470'),(1355,0,0,'Jenaben Khirani','9016489101'),(1356,0,0,'Jadavbhai Pambhar','8160137348'),(1357,0,0,'DINESHBHAI RABARI','9859300009'),(1358,0,0,'DURLABHJIBHAI','8849987578'),(1359,0,0,'PARASBHAI VORA','9428463084'),(1360,0,0,'VIHAN RAVESHIYA','7600000197'),(1361,0,0,'RAMESH D PARMAR','7878069627'),(1362,0,0,'DIPAKBHAI TANK','9624434342'),(1363,0,0,'KANJIYA','7405726225'),(1364,0,0,'Lilaben M Parmar',''),(1365,0,0,'Indravandan Dhruv','9429048804'),(1366,0,0,'Rameshbhai B Solanki','9724521178'),(1367,0,0,'Devshibhai Hadgrda','9913595258'),(1368,0,0,'Hareshbhai C Rathod','9313954294'),(1369,0,0,'Godavariben Saniyara','9909172955'),(1370,0,0,'Minaben Dav','9904400057'),(1371,0,0,'Minaben C Chhaiya','7874147959'),(1372,0,0,'Kusumben P Jadeja','9913292635'),(1373,0,0,'Shraddhaben Vadhvana','7984622162'),(1374,0,0,'Kamla Singh','9728868649'),(1375,0,0,'Bhartiben J Virani','9427401078'),(1376,0,0,'Bhaveshbhai Bhalodi',''),(1377,0,0,'Paritaben Kakaniya','9725831110'),(1378,0,0,'Seeta V Kaku','9427209656'),(1379,0,0,'Kumundben Kumbhani','9624390108'),(1380,0,0,'Labhuben Jobun','9824564508'),(1381,0,0,'Mitalben','9909231590'),(1382,0,0,'Sushilbhai Padhiya ','9377727514'),(1383,0,0,'Jamanbhai Parmar','8780879691'),(1384,0,0,'MITALBEN M. ','8401587200'),(1385,0,0,'Rajeshbhai Chavda','9925215911'),(1386,0,0,'NENCY KAVAR',''),(1387,0,0,'PUSPABEN VADODARIYA',''),(1388,0,0,'BUDARBHAI RABARI','9714050679'),(1389,0,0,'JIGNABEN SAKARIYA','9426449904'),(1390,0,0,'DINESHBHAI ','9924622920'),(1391,0,0,'JASUBEN R GANDHI','9313991220'),(1392,0,0,'VIJYABA J DOBARIYA','8238655812'),(1393,0,0,'Jaysukhbhai V Suchak',''),(1394,0,0,'Nensiben B ',''),(1395,0,0,'Induben Goswami',''),(1396,0,0,'KRISHNABEN RANPURA','9737398282'),(1397,0,0,'SONALBEN VIJAYBHAI DAFDA','7046013701'),(1398,0,0,'DINESHBHAI JADAV','9978428868'),(1399,0,0,'CHANDRIKABEN JOSHI','8140275081'),(1400,0,0,'NAYNABEN PARMAR','7600776046'),(1401,0,0,'ASMITABEN SAVALIYA','8511924001'),(1402,0,0,'BHANUBEN JOSHI','9904225462'),(1403,0,0,'SAVITABEN BHATT','9909522897'),(1404,0,0,'PRIYABEN CHAVDAGOR','9924970768'),(1405,0,0,'PRABHABEN RAVAT','9879165804'),(1406,0,0,'KUSUMBEN GANDHI','9825218194'),(1407,0,0,'JAYSHREEBEN DAVE','9408054721'),(1408,0,0,'HAKUBHAI N CHAUHAN','9824286613'),(1409,0,0,'Rikinbhai Geriya','9998448347'),(1410,0,0,'Shamjibhai Parmar','9714427371'),(1411,0,0,'Bhavnaben Nileshbhai Mungra','9974366766'),(1412,0,0,'Chandrakant J Bhatt','9978190002'),(1413,0,0,'Richa Sharma','9601254311'),(1414,0,0,'Dakshaben Chapani','9723405264'),(1415,0,0,'Nathabhai N Solanki','9909978111'),(1416,0,0,'Soniyaben Dadhaniya','9033336765'),(1417,0,0,'Tejalba Jaypalsinh Zala','9825079371'),(1418,0,0,'KINJALBEN VIRDA','8200149474'),(1419,0,0,'SATIJISINH JADEJA','9426808879'),(1420,0,0,'KARTVA ASHWINBHAI JARER','9662231531'),(1421,0,0,'SUMITRABEN R. GOSAI','9824564304'),(1422,0,0,'REKHABEN UPADHYAY','7405564364'),(1423,0,0,'NITINBHAI M.','9374821206'),(1424,0,0,'CHANDRAKANTBHAI PATEL','8108644449'),(1425,0,0,'Soni Singh','9173451479'),(1426,0,0,'Rameshbhai K Solanki','9624437289'),(1427,0,0,'Sehnazben Golani','9879838405'),(1428,0,0,'Ashokbhai Gokhai','9978403541'),(1429,0,0,'Jinalbhai Gavalbhai Dulani','7777954749'),(1430,0,0,'Muljibhai Megjibhai Dabhi ','9723099566'),(1431,0,0,'Gafarbhai Karud','9276505496'),(1432,0,0,'Dakshaben Kishorbhai Kachiya','7405428398'),(1433,0,0,'Chandrikaben Joshi','8140275081'),(1434,0,0,'Riyaz Sekh','9723978084'),(1435,0,0,'Mukeshbhai D Kadivar','9408181089'),(1436,0,0,'Jyotiben Manojbhai Vaghela','8200889869'),(1437,0,0,'Heta S Jethva','9428510164'),(1438,0,0,'ARSHIL CHAUHAN','8128956882'),(1439,0,0,'Vijaybhai G Aghera','9974664146'),(1440,0,0,'MAHENDRASINH L. ZALA','9925915311'),(1441,0,0,'SAMJUBEN P THUMMAR','9825264615'),(1442,0,0,'BHARATBHAI PALEJA',''),(1443,0,0,'NAJMABEN JUNEJA',''),(1444,0,0,'GITABEN J PANKHANIYA','9558978342'),(1445,0,0,'SHILUBEN SONI','9425864173'),(1446,0,0,'GIGABHAI VASAN',''),(1447,0,0,'BHIMABHAI R. VASAN',''),(1448,0,0,'RASIKBHAI JAKHELIYA','9726922451'),(1449,0,0,'MANISHABEN MAKAD','9824966683'),(1450,0,0,'HARDEVSINH JADEJA','9428349339'),(1451,0,0,'Ghanshyambhai B Jasani','9099295130'),(1452,0,0,'Divyaben K Ghetiya','9879071371'),(1453,0,0,'Rameshbhai C Aandodariya',''),(1454,0,0,'Vinubhai Savaliya','9909060901'),(1455,0,0,'Bhikhabhai Chudasama','9427708266'),(1456,0,0,'Dineshbhai Gohel','7624025360'),(1457,0,0,'Rekhaben Sirja','8866264084'),(1458,0,0,'Hashmukhbhai Soni','9824015264'),(1459,0,0,'Hirabhai Gigabhai ','9624090819'),(1460,0,0,'SAMIRBHAI DOSHI','8200694343'),(1461,0,0,'PRAVINGIRI N. GOSAI','9409577337'),(1462,0,0,'NEELBHAI VED','9427495930'),(1463,0,0,'Nilaben H Dave','9662170891'),(1464,0,0,'Ranjanben','8849686036'),(1465,0,0,'Ajmat Ali','9964213130'),(1466,0,0,'Hanifbhai Kalubhai Katiyar','8980169415'),(1467,0,0,'Dhaval Thakar','6359735355'),(1468,0,0,'Ajitbhai Bloch','8347178383'),(1469,0,0,'Jalpaben J Kanjariya','9033897000'),(1470,0,0,'Geetaben Sanghani','9023772010'),(1471,0,0,'JAGRUTIBEN RAJPARA',''),(1472,0,0,'MOBINABEN FAKIR','8460404292'),(1473,0,0,'JAGDISHBHAI K. RATHOD','9265420621'),(1474,0,0,'FALGUNIBEN PAREKH','9328711105'),(1475,0,0,'BHAVINBHAI MEHTA','9375429143'),(1476,0,0,'Heenaben Soneji','9825078861'),(1477,0,0,'Saruben J. Rupareliya','9276555981'),(1478,0,0,'Pratikbhai Gadhiya','9879997767'),(1479,0,0,'Mukeshbhai Kalariya',''),(1480,0,0,'Jinibhai Gavalbhai Galani','7777954749'),(1481,0,0,'Hareshbhai Kundariya','9409036060'),(1482,0,0,'Maganbhai T Surani','9979071274'),(1483,0,0,'Jigarbhai Pothiyavala','9825027863'),(1484,0,0,'Aansndbhai P Vadher','9924442462'),(1485,0,0,'Ishaben Mansuriya','7990823410'),(1486,0,0,'Pradipbhai','9904411944'),(1487,0,0,'SONALBEN KAKANIYA','9712087180'),(1488,0,0,'LABHUBEN KORIYA','9925212021'),(1489,0,0,'JIVANBHAI M. VANIYA','7265000896'),(1490,0,0,'Bharatbhai K Bathvar',''),(1491,0,0,'Ismailbhai Shekh',''),(1492,0,0,'Tejasbhai Shah',''),(1493,0,0,'Pallaviben Dave',''),(1494,0,0,'Dhavalbhai Godhani',''),(1495,0,0,'BHARATBHAI GADHVI',''),(1496,0,0,'RASILABEN R. DESANI','9662518528'),(1497,0,0,'ROHIT YADAV','9696991838'),(1498,0,0,'NISHABEN RAVESHIYA','7600000197'),(1499,0,0,'Bhavyabhai Kanjariya','9427457977'),(1500,0,0,'Dushyantbhai Dave','9979012244'),(1501,0,0,'Nensee Harsukhbhai Movaliya','6354377373'),(1502,0,0,'Nileshbhai H Rajapara','9723156475'),(1503,0,0,'Hansaben H Vyas','7990197773'),(1504,0,0,'Ushaben Lakhani','9067177288'),(1505,0,0,'Purnaba Jadeja','8980174194'),(1506,0,0,'Jigneshbhai Patel','9913075932'),(1507,0,0,'HANSABA V. PARMAR','7984406014'),(1508,0,0,'HARIBHAI PADHIYAR','8784617995'),(1509,0,0,'AMISH VARSANI','8128333388'),(1510,0,0,'Vrajlalbhai','9723301717'),(1511,0,0,'HANSABEN MODI','9909908109'),(1512,0,0,'PARSHOTAMBHAI SONAGRA','9726853209'),(1513,0,0,'Niravkumar D Zalavadiya','7990197773'),(1514,0,0,'JENTIBHAI VARSANI','9426209933'),(1515,0,0,'Kajalben Parmar','8980257183'),(1516,0,0,'Kantaben Parmar','9725437239'),(1517,0,0,'Bimal H Advani','9978442725'),(1518,0,0,'Manjulaben Sakariya','9664539097'),(1519,0,0,'Ushaben Bagthariya','8160686261'),(1520,0,0,'Amitbhai Dave','9426555129'),(1521,0,0,'Sonalben Siddhpara','7567903339'),(1522,0,0,'Sarojben Paida','8898989034'),(1523,0,0,'KISHANBHAI NADIYAPARA','8140729295'),(1524,0,0,'GEETABEN N. JOSHI','8460549901'),(1525,0,0,'AMRUTLAL K. TANK','9426998707'),(1526,0,0,'YASH P. GINOYA','9870093054'),(1527,0,0,'Ilaben S Ajani','9426527791'),(1528,0,0,'Hasmaben I Sutani','9824874130'),(1529,0,0,'Chiragbhai Lakhani','8849777892'),(1530,0,0,'Ghanshyambhai Kasundra','9586780302'),(1531,0,0,'Hansaben V Parmar','7984406014'),(1532,0,0,'Hirabhai J Dalai','9328453952'),(1533,0,0,'Nidhiben Bakulbhai Vaghela','9825147480'),(1534,0,0,'Manisha Barad','7802040004'),(1535,0,0,'Samatbhai J Barad','7802040004'),(1536,0,0,'Jayaben Dobariya','9879402429'),(1537,0,0,'Chabilbhai Virani','9909012332'),(1538,0,0,'Ketanbhai Ajudiya','9979756021'),(1539,0,0,'Ketanbhai Ajudiya','9979756021'),(1540,0,0,'Ketanbhai Ajudiya','9979756021'),(1541,0,0,'ROHANBHAI THAKAR','9898003190'),(1542,0,0,'PARASBHAI JADAV','7710003781'),(1543,0,0,'RAHULBHAI PARMAR','9662768212'),(1544,0,0,'REKHABEN DHOLARIYA','9825560998'),(1545,0,0,'KAJALBEN KNTARIYA',''),(1546,0,0,'KIRANBEN KANSAGRA','9427271141'),(1547,0,0,'NIRMALABEN R RATHOD','9904250077'),(1548,0,0,'ASHOKBHAI LALVANI','9909888800'),(1549,0,0,'REKHABEN HIRANI','8200331527'),(1550,0,0,'MITALBEN DAVDA','9687600043'),(1551,0,0,'REKHABEN BHIMANI','9879391609'),(1552,0,0,'ASHIT BHALODIYA','9537300999'),(1553,0,0,'Amitbhai Rajani','9714397770'),(1554,0,0,'Dayaben Rathod',''),(1555,0,0,'Dipenbhai Boraniya','7600056733'),(1556,0,0,'Hineben Boraniya','7600056733'),(1557,0,0,'Prafulbhai Vaga','9824465020'),(1558,0,0,'MOBINABEN FAKIR','8460404292'),(1559,0,0,'Bhavnaben Hindocha','7567372928'),(1560,0,0,'Nilamben Mehta','9727073730'),(1561,0,0,'Jagrutiben Muliya','9824399887'),(1562,0,0,'Kavitaben Chandarana','9825416032'),(1563,0,0,'Dharaben M Viroja','9924190952'),(1564,0,0,'Manshiben Mandaviya','8758063939'),(1565,0,0,'Vijaybhai Ghinoya',''),(1566,0,0,'Khushiben Gadhiya','9998170200'),(1567,0,0,'Hansaben B Makwana',''),(1568,0,0,'Kishorbhai Darji','9974700761'),(1569,0,0,'Hiteshbhai Kanabar','8160524909'),(1570,0,0,'Hetunben ','9429300354'),(1571,0,0,'SANDIPBHAI GOSAI','8460605688'),(1572,0,0,'Ramaben M Hohel','9726743910'),(1573,0,0,'Vijuben Dineshbhai Kambariya','9558530560'),(1574,0,0,'Bhavnaben Malvaniya','9375888884'),(1575,0,0,'Champaben Chandarana','9428703204'),(1576,0,0,'Kavitaben Chandarana','9825416032'),(1577,0,0,'Dilipbhai H Naidiyapara','7874344198'),(1578,0,0,'Batukbhai Maru','6351921240'),(1579,0,0,'Daxaben Makwana ','7984973409'),(1580,0,0,'Manharben Goswami','8320268044'),(1581,0,0,'Navnitbhai Kantariya','9902506776'),(1582,0,0,'Pritiben Parmar','7575010070'),(1583,0,0,'Asrajbhai',''),(1584,0,0,'Joshnaben V Vekariya',''),(1585,0,0,'Rashmikaben Bundela',''),(1586,0,0,'Madhavjibhai Dabhi',''),(1587,0,0,'Nishaben Rathod',''),(1588,0,0,'Prafullaba Vaghela',''),(1589,0,0,'Daxaben Joshi',''),(1590,0,0,'NISHITBHAI CHANDARANA',''),(1591,0,0,'KUSUMBEN KALADI','7227000123'),(1592,0,0,'SONALBEN GOSAI',''),(1593,0,0,'VARSHA R MORJAMIYA',''),(1594,0,0,'VISHWA MEHTA','9913982430'),(1595,0,0,'RAFIQBHAI BHATTI',''),(1596,0,0,'Bhavnaben K Charola','9979672421'),(1597,0,0,'Daxaben Jayeshbhai Bhut','9313455017'),(1598,0,0,'Saifodin Saeikh ','9925071686'),(1599,0,0,'Divyeshbhai Desai','9898032350'),(1600,0,0,'Vijyaben Sankhavra','9574465809'),(1601,0,0,'Narayanbhai',''),(1602,0,0,'Meenaben P Gangadiya','9824222029'),(1603,0,0,'Kavita Amarjit','6351677877'),(1604,0,0,'Bhaminiben Raval','9227700983'),(1605,0,0,'Kasmiraben R Pota','9428703028'),(1606,0,0,'Rasilaben Dhrangdiya','9727611222'),(1607,0,0,'CHETNABEN ',''),(1608,0,0,'Kavitaben Chandarana','9825416032'),(1609,0,0,'Madhuben Khanpara',''),(1610,0,0,'Kamlaben K Jethva',''),(1611,0,0,'Mitaben Vyas',''),(1612,0,0,'Manjulaben Parish',''),(1613,0,0,'Hetalben Sorathiya',''),(1614,0,0,'GORDHANBHAI G MITHAPARA',''),(1615,0,0,'Mitalben Trivedi',''),(1616,0,0,'Keshvi Patel',''),(1617,0,0,'Pragnaben B Raval',''),(1618,0,0,'Nirav V Parmar',''),(1619,0,0,'VILASBEN JAMANBHAI VARSANI',''),(1620,0,0,'MANJUBEN A AGHARA',''),(1621,0,0,'SABEDABEN G SODHA',''),(1622,0,0,'BHIMJIBHAI D SONAGRA',''),(1623,0,0,'CHANDRESHBHAI L POPAR',''),(1624,0,0,'NIRMALABEN DADHANIYA',''),(1625,0,0,'VIKRAMBHAI SOMABHAI PANARA',''),(1626,0,0,'Twinkalba J Jadeja',''),(1627,0,0,'Simaben Karamchandani',''),(1628,0,0,'AMRUTLAL D DOBARIYA',''),(1629,0,0,'Sanjaykumar',''),(1630,0,0,'Alishaben Sambedi',''),(1631,0,0,'Thobhanbhai M Bambhva',''),(1632,0,0,'Dhirubhai Sidhhpara',''),(1633,0,0,'Minaben Parmar',''),(1634,0,0,'Maniben D Kathd',''),(1635,0,0,'Natalia Gogai',''),(1636,0,0,'Jyotiben Kanani',''),(1637,0,0,'Rakeshbhai Shah',''),(1638,0,0,'VASISHTH VALA',''),(1639,0,0,'MANIBEN BHOJABHAI KATHAD',''),(1640,0,0,'Hanshaben Doshi',''),(1641,0,0,'Aartiben Bhatt',''),(1642,0,0,'Dhaval S Mehta',''),(1643,0,0,'Ramjibhai B Chavda',''),(1644,0,0,'Parshotambhai L Parmar',''),(1645,0,0,'Kanchanben A Andarpa',''),(1646,0,0,'Gauriben P Vadoliya',''),(1647,0,0,'Samatbhai K Kher',''),(1648,0,0,'Pravinaben Kankhaniya',''),(1649,0,0,'Bhavnaben Pandya ',''),(1650,0,0,'DEVDANBHAI KUMBARVADIYA',''),(1651,0,0,'Keshubhai ',''),(1652,0,0,'Pushpaben S Galani',''),(1653,0,0,'Bhanuben Kachhadiya',''),(1654,0,0,'Dolubha Gadhvi',''),(1655,0,0,'Asmitaben Koladara',''),(1656,0,0,'Rameshbhai Sagpariya',''),(1657,0,0,'Arjunbhai S Rathod',''),(1658,0,0,'Bhiniben B Pithiya',''),(1659,0,0,'Shobhaben Naydu',''),(1660,0,0,'Diptiben Mehta',''),(1661,0,0,'Nimitbhai Mehta',''),(1662,0,0,'JIVRAJBHAI GOPANI',''),(1663,0,0,'Kailashba Jadeja',''),(1664,0,0,'Ramsingbhai N Pangat',''),(1665,0,0,'Urvishaben M Amreliya',''),(1666,0,0,'Hareshbhai Budarbhai Barasra',''),(1667,0,0,'SAVJIBHAI SORATHIYA',''),(1668,0,0,'PIYUSHBHAI D. MANEK',''),(1669,0,0,'MOHANBHAI P. CHUDASAMA',''),(1670,0,0,'CHANDRIKABEN VYAS',''),(1671,0,0,'PRAGNABEN RATHOD',''),(1672,0,0,'JAGRUTIBEN M VITHLANI',''),(1673,0,0,'MADHUBEN DHABALIYA',''),(1674,0,0,'Shraddhaben A Kubavat',''),(1675,0,0,'Jigarbhai Kansara',''),(1676,0,0,'Shantuben D Parmar',''),(1677,0,0,'Shantuben D Parmar',''),(1678,0,0,'Sudhaben Khakhar',''),(1679,0,0,'Nileshbhai Jivani',''),(1680,0,0,'JANAM BAGDAI',''),(1681,0,0,'KANCHANBEN PARMAR',''),(1682,0,0,'AMITBHAI RAJYAGURU',''),(1683,0,0,'KRISHNABEN RAJYAGURU',''),(1684,0,0,'HIRUBEN ZALA',''),(1685,0,0,'JENTIBHAI PARMAR',''),(1686,0,0,'VIJAYBHAI KATHRECHA',''),(1687,0,0,'BHARTIBEN ANTANI',''),(1688,0,0,'BHUPENDRABHAI R. MULIYANA',''),(1689,0,0,'Ghanshyambhai Kasundra',''),(1690,0,0,'Urmilaben P Ghodasara',''),(1691,0,0,'Vinodbhai K Parmar',''),(1692,0,0,'Kuldeepbhai Barad',''),(1693,0,0,'Ankitbhai Makadiya',''),(1694,0,0,'Vijyaben M Vagadiya',''),(1695,0,0,'JAGRUTIBEN AGHEDA',''),(1696,0,0,'RAJANBHAI AGHEDA',''),(1697,0,0,'JOSHNABA JADEJA',''),(1698,0,0,'YUNUSBHAI VINDHANI',''),(1699,0,0,'JANAKBEN DANGAR',''),(1700,0,0,'Bhaveshbhai Limbasiya',''),(1701,0,0,'Madhuben Jobanputra',''),(1702,0,0,'Arifbhai Sidiki',''),(1703,0,0,'Perin Patel',''),(1704,0,0,'Dhavalbhai Vakhariya',''),(1705,0,0,'VANRAJBHAI G. ',''),(1706,0,0,'CHANDANIBEN KHERA',''),(1707,0,0,'GOVINDBHAI ',''),(1708,0,0,'JYOTIBEN P. PARMAR',''),(1709,0,0,'CHANDANIBEN KANAVAT',''),(1710,0,0,'GEETABEN SONAIYA',''),(1711,0,0,'Kantibhai Gadhiya',''),(1712,0,0,'Jayeshbhai Gadiya',''),(1713,0,0,'Rinaben Sanariya',''),(1714,0,0,'Ilaben Dasani',''),(1715,0,0,'Balubhai N Vadher',''),(1716,0,0,'Rekhaben Triplani',''),(1717,0,0,'Mukeshbhai Ghetiya',''),(1718,0,0,'Kanchanben Kakadiya',''),(1719,0,0,'SAVJIBHAI SORATHIYA',''),(1720,0,0,'GHANSHYAMSINH JADEJA',''),(1721,0,0,'GAJENDRASINH ZALA',''),(1722,0,0,'CHANDUBHAI MUKUNDBHAI',''),(1723,0,0,'JAYPRAKASHBHAI JOSHI',''),(1724,0,0,'JOSHNABA JADEJA',''),(1725,0,0,'RAMANI',''),(1726,0,0,'MANSUKHBHAI',''),(1727,0,0,'KANAKKUMAR MULIYANA',''),(1728,0,0,'YOGESHBHAI JADEJA',''),(1729,0,0,'JAYSHUKHBHAI K CHAUHAN',''),(1730,0,0,'ANSOYABEN PITHADIYA',''),(1731,0,0,'FATEH MOHMMADBHAI KADIVAR',''),(1732,0,0,'SURAJSINH CHAUHAN',''),(1733,0,0,'PARESHBHAI MUNDRA',''),(1734,0,0,'JYOSANABEN THAKAR',''),(1735,0,0,'KANCHANBEN KANDARPA',''),(1736,0,0,'ALPESHBHAI B DALSANIYA',''),(1737,0,0,'LEENABEN MEHTA',''),(1738,0,0,'AARTIBEN SOLANKI',''),(1739,0,0,'ARPITA AACHARYA',''),(1740,0,0,'RAJNE GANDHI',''),(1741,0,0,'HEENABEN RAJPARA',''),(1742,0,0,'JIVABHAI KANTARIYA','');
/*!40000 ALTER TABLE `appointment_temp_mst` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `asset_branch`
--

DROP TABLE IF EXISTS `asset_branch`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asset_branch` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `Ass_branch` varchar(6) NOT NULL,
  `Ass_branchdesc` varchar(20) NOT NULL,
  `Ass_city` varchar(30) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) DEFAULT NULL,
  `LastModifiedDate` datetime DEFAULT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`Ass_branch`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `asset_branch`
--

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

--
-- Table structure for table `asset_contract`
--

DROP TABLE IF EXISTS `asset_contract`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asset_contract` (
  `asset_cd` varchar(10) NOT NULL,
  `contract_id` varchar(11) NOT NULL,
  PRIMARY KEY (`asset_cd`,`contract_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `asset_contract`
--

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

--
-- Table structure for table `asset_location`
--

DROP TABLE IF EXISTS `asset_location`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asset_location` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `Ass_loc` varchar(10) NOT NULL,
  `Ass_locdesc` varchar(40) NOT NULL,
  `location_floor` int(11) NOT NULL,
  `room_no` varchar(10) NOT NULL,
  `description` varchar(100) NOT NULL COMMENT 'will used as remark',
  `Ass_loctag` varchar(20) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) DEFAULT NULL,
  `LastModifiedDate` datetime DEFAULT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`Ass_loc`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `asset_location`
--

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

--
-- Table structure for table `asset_maintenance`
--

DROP TABLE IF EXISTS `asset_maintenance`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asset_maintenance` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `Maint_asset_no` varchar(7) NOT NULL,
  `Maint_desc` varchar(20) NOT NULL,
  `Maint_contr_no` varchar(20) NOT NULL,
  `supplier_id` smallint(5) unsigned NOT NULL,
  `Maint_start_date` date NOT NULL,
  `Maint_end_date` date NOT NULL,
  `Maint_contr_amt` float(9,2) NOT NULL,
  `Maint_no_of_services` int(11) NOT NULL,
  `Maint_contr_remark` varchar(35) NOT NULL,
  `contract_status` enum('O','C') NOT NULL DEFAULT 'O' COMMENT 'Open or Closed',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) DEFAULT NULL,
  `LastModifiedDate` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `asset_maintenance`
--

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

--
-- Table structure for table `asset_maintenance_transaction`
--

DROP TABLE IF EXISTS `asset_maintenance_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asset_maintenance_transaction` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `Maint_service_asset_no` varchar(5) NOT NULL,
  `contract_no` varchar(20) NOT NULL,
  `Maint_service_start_date` date NOT NULL,
  `Maint_service_no` int(11) NOT NULL,
  `Maint_service_sch_date` date NOT NULL,
  `Maint_service_actual_date` date DEFAULT NULL,
  `Maint_service_tech_name` varchar(35) DEFAULT NULL,
  `Maint_service_remark` text,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` date NOT NULL,
  `LastModifiedBy` varchar(10) DEFAULT NULL,
  `LastModifiedDate` date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `asset_maintenance_transaction`
--

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

--
-- Table structure for table `asset_master`
--

DROP TABLE IF EXISTS `asset_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asset_master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `Ass_code` varchar(7) NOT NULL,
  `Ass_desc` varchar(35) NOT NULL,
  `Ass_loctag` varchar(20) NOT NULL,
  `Ass_type` varchar(6) NOT NULL,
  `Ass_branch` varchar(6) NOT NULL,
  `Ass_loc` varchar(6) NOT NULL,
  `make` varchar(100) NOT NULL COMMENT 'manufacture namee',
  `insurance_name` varchar(100) NOT NULL,
  `supplier_id` smallint(5) unsigned NOT NULL,
  `Ass_Purdate` date NOT NULL,
  `Ass_PONo` varchar(30) NOT NULL,
  `Ass_model_no` varchar(20) NOT NULL,
  `Ass_serial_no` varchar(20) NOT NULL,
  `Custodian` varchar(20) NOT NULL,
  `Invoice_date` date NOT NULL,
  `Invoice_number` varchar(30) NOT NULL,
  `last_calibrated` date NOT NULL,
  `Working_status` varchar(15) NOT NULL,
  `asset_price` float(9,2) NOT NULL,
  `Ass_photo_path` varchar(64) NOT NULL,
  `Ass_po_path` varchar(64) NOT NULL,
  `Ass_ser_main_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `asset_master`
--

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

--
-- Table structure for table `asset_service_contract`
--

DROP TABLE IF EXISTS `asset_service_contract`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asset_service_contract` (
  `contract_id` int(11) NOT NULL AUTO_INCREMENT,
  `service_provider_cd` varchar(6) NOT NULL,
  `contract_type` varchar(3) NOT NULL,
  `contract_st_date` date NOT NULL,
  `contract_en_date` date NOT NULL,
  `contract_amt` int(11) NOT NULL,
  `no_of_service` int(11) NOT NULL,
  `contract_remark` varchar(30) NOT NULL,
  `next_service_date` date NOT NULL,
  PRIMARY KEY (`contract_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `asset_service_contract`
--

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

--
-- Table structure for table `asset_servive_history`
--

DROP TABLE IF EXISTS `asset_servive_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asset_servive_history` (
  `sr` int(11) NOT NULL AUTO_INCREMENT,
  `asset_cd` varchar(10) NOT NULL,
  `contract_id` varchar(11) NOT NULL,
  `service_plan_dt` date NOT NULL,
  `service_dt` date NOT NULL,
  `service_by` varchar(20) NOT NULL,
  `service_cost` float NOT NULL,
  `other_cost` float NOT NULL,
  `service_remark` varchar(50) NOT NULL,
  `service_feedback` varchar(50) NOT NULL,
  `service_type` varchar(3) NOT NULL,
  PRIMARY KEY (`sr`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `asset_servive_history`
--

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

--
-- Table structure for table `asset_type`
--

DROP TABLE IF EXISTS `asset_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asset_type` (
  `company_id` tinyint(4) NOT NULL,
  `Ass_type` varchar(6) NOT NULL,
  `Ass_typedesc` varchar(20) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) DEFAULT NULL,
  `LastModifiedDate` datetime DEFAULT NULL,
  PRIMARY KEY (`company_id`,`Ass_type`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `asset_type`
--

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

--
-- Table structure for table `auto_backup_log`
--

DROP TABLE IF EXISTS `auto_backup_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auto_backup_log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `backup_date` date NOT NULL,
  `backup_time` time NOT NULL,
  `backup_completion_time` datetime NOT NULL,
  `file_name` varchar(40) NOT NULL,
  `path` varchar(100) NOT NULL,
  `google_drive_link` text NOT NULL,
  `status` varchar(300) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4735 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `auto_backup_log`
--

LOCK TABLES `auto_backup_log` WRITE;
/*!40000 ALTER TABLE `auto_backup_log` DISABLE KEYS */;
INSERT INTO `auto_backup_log` VALUES (1,'2024-05-17','01:30:01','2024-05-17 01:35:38','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2,'2024-05-17','13:30:02','2024-05-17 13:36:02','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3,'2024-05-18','01:30:01','2024-05-18 01:35:46','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4,'2024-05-18','13:30:02','2024-05-18 13:36:00','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(5,'2024-05-19','01:30:02','2024-05-19 01:35:43','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(6,'2024-05-19','13:30:01','2024-05-19 13:35:49','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(7,'2024-05-20','01:30:01','2024-05-20 01:35:42','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(8,'2024-05-20','13:30:02','2024-05-20 13:35:46','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(9,'2024-05-21','01:30:01','2024-05-21 01:35:40','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(10,'2024-05-21','13:30:01','2024-05-21 13:35:50','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(11,'2024-05-22','01:30:01','2024-05-22 01:35:47','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(12,'2024-05-22','13:30:02','2024-05-22 13:35:46','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(13,'2024-05-23','01:30:02','2024-05-23 01:35:44','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(14,'2024-05-23','13:30:02','2024-05-23 13:35:41','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(15,'2024-05-24','01:30:01','2024-05-24 01:35:55','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(16,'2024-05-24','13:30:02','2024-05-24 13:35:53','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(17,'2024-05-25','01:30:01','2024-05-25 01:35:46','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(18,'2024-05-25','13:30:02','2024-05-25 13:36:21','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(19,'2024-05-26','01:30:02','2024-05-26 01:35:45','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(20,'2024-05-26','13:30:02','2024-05-26 13:36:00','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(21,'2024-05-27','01:30:02','2024-05-27 01:35:59','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(22,'2024-05-27','13:30:03','2024-05-27 13:37:35','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(23,'2024-05-28','01:30:01','2024-05-28 01:35:52','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(24,'2024-05-28','13:30:02','2024-05-28 13:35:58','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(25,'2024-05-29','01:30:02','2024-05-29 01:35:50','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(26,'2024-05-29','13:30:02','2024-05-29 13:36:21','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(27,'2024-05-30','01:30:02','2024-05-30 01:36:02','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(28,'2024-05-30','13:30:02','2024-05-30 13:36:10','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(29,'2024-05-31','01:30:01','2024-05-31 01:36:00','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(30,'2024-05-31','13:30:02','2024-05-31 13:36:04','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(31,'2024-06-01','01:30:01','2024-06-01 01:35:59','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(32,'2024-06-01','13:30:01','2024-06-01 13:36:12','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(33,'2024-06-02','01:30:02','2024-06-02 01:36:01','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(34,'2024-06-02','13:30:02','2024-06-02 13:36:36','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(35,'2024-06-03','01:30:02','2024-06-03 01:36:11','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(36,'2024-06-03','13:30:01','2024-06-03 13:36:11','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(37,'2024-06-04','01:30:02','2024-06-04 01:36:01','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(38,'2024-06-04','13:30:02','2024-06-04 13:36:09','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(39,'2024-06-05','01:30:01','2024-06-05 01:35:55','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(40,'2024-06-05','13:30:03','2024-06-05 13:36:40','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(41,'2024-06-06','01:30:02','2024-06-06 01:35:55','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(42,'2024-06-06','13:30:03','2024-06-06 13:36:20','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(43,'2024-06-07','01:30:03','2024-06-07 01:36:28','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(44,'2024-06-07','13:30:02','2024-06-07 13:37:00','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(45,'2024-06-08','01:30:01','2024-06-08 01:36:05','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(46,'2024-06-08','13:30:02','2024-06-08 13:36:48','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(47,'2024-06-09','01:30:01','2024-06-09 01:36:12','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(48,'2024-06-09','13:30:03','2024-06-09 13:36:57','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(49,'2024-06-10','01:30:03','2024-06-10 01:36:39','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(50,'2024-06-10','13:30:02','2024-06-10 13:36:28','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(51,'2024-06-11','01:30:02','2024-06-11 01:36:24','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(52,'2024-06-11','13:30:02','2024-06-11 13:37:58','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(53,'2024-06-12','01:30:02','2024-06-12 01:37:38','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(54,'2024-06-12','13:30:03','2024-06-12 13:36:53','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(55,'2024-06-13','01:30:01','2024-06-13 01:36:10','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(56,'2024-06-13','13:30:01','2024-06-13 13:36:45','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(57,'2024-06-14','01:30:01','2024-06-14 01:35:49','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(58,'2024-06-14','13:30:01','2024-06-14 13:36:23','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(59,'2024-06-15','01:30:01','2024-06-15 01:35:52','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(60,'2024-06-15','13:30:01','2024-06-15 13:36:27','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(61,'2024-06-16','01:30:01','2024-06-16 01:36:07','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(62,'2024-06-16','13:30:02','2024-06-16 13:36:11','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(63,'2024-06-17','01:30:02','2024-06-17 01:35:50','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(64,'2024-06-17','13:30:01','2024-06-17 13:36:14','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(65,'2024-06-18','01:30:02','2024-06-18 01:36:12','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(66,'2024-06-18','13:30:02','2024-06-18 13:35:56','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(67,'2024-06-19','01:30:02','2024-06-19 01:36:09','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(68,'2024-06-19','13:30:01','2024-06-19 13:36:19','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(69,'2024-06-20','01:30:01','2024-06-20 01:35:59','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(70,'2024-06-20','13:30:01','2024-06-20 13:36:23','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(71,'2024-06-21','01:30:02','2024-06-21 01:36:07','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(72,'2024-06-21','13:30:02','2024-06-21 13:36:28','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(73,'2024-06-22','01:30:01','2024-06-22 01:35:49','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(74,'2024-06-22','13:30:02','2024-06-22 13:36:21','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(75,'2024-06-23','01:30:02','2024-06-23 01:35:52','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(76,'2024-06-23','13:30:01','2024-06-23 13:36:19','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(77,'2024-06-24','01:30:02','2024-06-24 01:36:08','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(78,'2024-06-24','13:30:01','2024-06-24 13:36:23','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(79,'2024-06-25','01:30:01','2024-06-25 01:35:55','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(80,'2024-06-25','13:30:02','2024-06-25 13:36:05','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(81,'2024-06-26','01:30:02','2024-06-26 01:35:55','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(82,'2024-06-26','13:30:01','2024-06-26 13:36:21','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(83,'2024-06-27','01:30:01','2024-06-27 01:36:01','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(84,'2024-06-27','13:30:02','2024-06-27 13:36:03','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(85,'2024-06-28','01:30:01','2024-06-28 01:35:59','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(86,'2024-06-28','13:30:02','2024-06-28 13:35:54','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(87,'2024-06-29','01:30:01','2024-06-29 01:35:57','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(88,'2024-06-29','13:30:02','2024-06-29 13:36:01','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(89,'2024-06-30','01:30:01','2024-06-30 01:35:55','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(90,'2024-06-30','13:30:02','2024-06-30 13:35:58','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(91,'2024-07-01','01:30:02','2024-07-01 01:35:54','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(92,'2024-07-01','13:30:02','2024-07-01 13:36:08','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(93,'2024-07-02','01:30:01','2024-07-02 01:35:56','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(94,'2024-07-02','13:30:02','2024-07-02 13:36:10','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(95,'2024-07-03','01:30:02','2024-07-03 01:36:14','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(96,'2024-07-03','13:30:01','2024-07-03 13:36:22','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(97,'2024-07-04','01:30:01','2024-07-04 01:36:04','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(98,'2024-07-04','13:30:02','2024-07-04 13:36:26','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(99,'2024-07-05','01:30:02','2024-07-05 01:36:08','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(100,'2024-07-05','13:30:02','2024-07-05 13:37:01','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(101,'2024-07-06','01:30:02','2024-07-06 01:36:10','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(102,'2024-07-06','13:30:01','2024-07-06 13:36:32','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(103,'2024-07-07','01:30:01','2024-07-07 01:36:15','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(104,'2024-07-07','13:30:02','2024-07-07 13:36:19','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(105,'2024-07-08','01:30:01','2024-07-08 01:36:15','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(106,'2024-07-08','13:30:02','2024-07-08 13:36:56','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(107,'2024-07-09','01:30:02','2024-07-09 01:36:11','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(108,'2024-07-09','13:30:01','2024-07-09 13:36:02','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(109,'2024-07-10','01:30:01','2024-07-10 01:36:28','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(110,'2024-07-10','13:30:01','2024-07-10 13:36:33','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(111,'2024-07-11','01:30:02','2024-07-11 01:36:12','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(112,'2024-07-11','13:30:01','2024-07-11 13:36:34','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(113,'2024-07-12','01:30:02','2024-07-12 01:36:21','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(114,'2024-07-12','13:30:01','2024-07-12 13:36:42','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(115,'2024-07-13','01:30:02','2024-07-13 01:37:25','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(116,'2024-07-13','13:30:02','2024-07-13 13:37:10','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(117,'2024-07-14','01:30:02','2024-07-14 01:36:18','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(118,'2024-07-14','13:30:02','2024-07-14 13:36:09','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(119,'2024-07-15','01:30:02','2024-07-15 01:36:32','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(120,'2024-07-15','13:30:02','2024-07-15 13:36:37','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(121,'2024-07-16','01:30:02','2024-07-16 01:36:25','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(122,'2024-07-16','13:30:02','2024-07-16 13:36:42','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(123,'2024-07-17','01:30:01','2024-07-17 01:36:31','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(124,'2024-07-17','13:30:02','2024-07-17 13:36:48','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(125,'2024-07-18','01:30:02','2024-07-18 01:36:36','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(126,'2024-07-18','13:30:02','2024-07-18 13:36:38','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(127,'2024-07-19','01:30:01','2024-07-19 01:36:33','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(128,'2024-07-19','13:30:02','2024-07-19 13:37:01','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(129,'2024-07-20','01:30:01','2024-07-20 01:36:50','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(130,'2024-07-20','13:30:01','2024-07-20 13:36:34','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(131,'2024-07-21','01:30:01','2024-07-21 01:36:28','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(132,'2024-07-21','13:30:01','2024-07-21 13:36:53','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(133,'2024-07-22','01:30:01','2024-07-22 01:36:23','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(134,'2024-07-22','13:30:01','2024-07-22 13:37:22','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(135,'2024-07-23','01:30:01','2024-07-23 01:36:37','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(136,'2024-07-23','13:30:02','2024-07-23 13:36:56','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(137,'2024-07-24','01:30:02','2024-07-24 01:36:38','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(138,'2024-07-24','13:30:01','2024-07-24 13:36:37','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(139,'2024-07-25','01:30:01','2024-07-25 01:36:22','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(140,'2024-07-25','13:30:02','2024-07-25 13:36:32','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(141,'2024-07-26','01:30:02','2024-07-26 01:36:24','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(142,'2024-07-26','13:30:01','2024-07-26 13:37:00','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(143,'2024-07-27','01:30:01','2024-07-27 01:36:15','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(144,'2024-07-27','13:30:01','2024-07-27 13:36:40','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(145,'2024-07-28','01:30:02','2024-07-28 01:36:24','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(146,'2024-07-28','13:30:02','2024-07-28 13:36:35','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(147,'2024-07-29','01:30:01','2024-07-29 01:36:17','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(148,'2024-07-29','13:30:02','2024-07-29 13:37:17','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(149,'2024-07-30','01:30:01','2024-07-30 01:36:25','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(150,'2024-07-30','13:30:02','2024-07-30 13:36:41','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(151,'2024-07-31','01:30:01','2024-07-31 01:36:24','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(152,'2024-07-31','13:30:02','2024-07-31 13:36:41','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(153,'2024-08-01','01:30:02','2024-08-01 01:36:45','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(154,'2024-08-01','13:30:02','2024-08-01 13:37:00','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(155,'2024-08-02','01:30:01','2024-08-02 01:36:36','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(156,'2024-08-02','13:30:02','2024-08-02 13:36:26','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(157,'2024-08-03','01:30:01','2024-08-03 01:35:02','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(158,'2024-08-03','13:30:01','2024-08-03 13:35:25','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(159,'2024-08-04','01:30:01','2024-08-04 01:35:02','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(160,'2024-08-04','13:30:02','2024-08-04 13:35:46','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(161,'2024-08-05','01:30:02','2024-08-05 01:34:58','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(162,'2024-08-05','13:30:01','2024-08-05 13:35:16','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(163,'2024-08-06','01:30:02','2024-08-06 01:35:02','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(164,'2024-08-06','13:30:01','2024-08-06 13:35:11','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(165,'2024-08-07','01:30:01','2024-08-07 01:35:09','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(166,'2024-08-07','13:30:02','2024-08-07 13:35:19','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(167,'2024-08-08','01:30:01','2024-08-08 01:35:01','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(168,'2024-08-08','13:30:01','2024-08-08 13:35:10','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(169,'2024-08-09','01:30:02','2024-08-09 01:35:05','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(170,'2024-08-09','13:30:01','2024-08-09 13:35:45','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(171,'2024-08-10','01:30:02','2024-08-10 01:35:05','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(172,'2024-08-10','13:30:01','2024-08-10 13:35:31','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(173,'2024-08-11','01:30:01','2024-08-11 01:34:57','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(174,'2024-08-11','13:30:01','2024-08-11 13:35:09','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(175,'2024-08-12','01:30:02','2024-08-12 01:35:03','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(176,'2024-08-12','13:30:02','2024-08-12 13:35:30','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(177,'2024-08-13','01:30:01','2024-08-13 01:35:00','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(178,'2024-08-13','13:30:02','2024-08-13 13:35:13','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(179,'2024-08-14','01:30:02','2024-08-14 01:35:00','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(180,'2024-08-14','13:30:02','2024-08-14 13:34:55','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(181,'2024-08-15','01:30:01','2024-08-15 01:34:58','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(182,'2024-08-15','13:30:02','2024-08-15 13:35:03','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(183,'2024-08-16','01:30:02','2024-08-16 01:34:54','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(184,'2024-08-16','13:30:01','2024-08-16 13:35:03','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(185,'2024-08-17','01:30:02','2024-08-17 01:35:11','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(186,'2024-08-17','13:30:01','2024-08-17 13:35:07','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(187,'2024-08-18','01:30:02','2024-08-18 01:35:01','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(188,'2024-08-18','13:30:02','2024-08-18 13:35:11','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(189,'2024-08-19','01:30:02','2024-08-19 01:34:52','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(190,'2024-08-19','13:30:01','2024-08-19 13:35:09','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(191,'2024-08-20','01:30:01','2024-08-20 01:35:02','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(192,'2024-08-20','13:30:02','2024-08-20 13:35:22','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(193,'2024-08-21','01:30:02','2024-08-21 01:34:51','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(194,'2024-08-21','13:30:02','2024-08-21 13:35:04','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(195,'2024-08-22','01:30:01','2024-08-22 01:34:51','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(196,'2024-08-22','13:30:02','2024-08-22 13:35:05','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(197,'2024-08-23','01:30:01','2024-08-23 01:34:55','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(198,'2024-08-23','13:30:01','2024-08-23 13:34:53','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(199,'2024-08-24','01:30:01','2024-08-24 01:35:11','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(200,'2024-08-24','13:30:02','2024-08-24 13:35:48','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(201,'2024-08-25','01:30:01','2024-08-25 01:35:09','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(202,'2024-08-25','13:30:02','2024-08-25 13:35:11','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(203,'2024-08-26','01:30:02','2024-08-26 01:35:02','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(204,'2024-08-26','13:30:01','2024-08-26 13:35:16','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(205,'2024-08-27','01:30:01','2024-08-27 01:34:54','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(206,'2024-08-27','13:30:02','2024-08-27 13:35:12','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(207,'2024-08-28','01:30:01','2024-08-28 01:34:52','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(208,'2024-08-28','13:30:01','2024-08-28 13:34:54','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(209,'2024-08-29','01:30:01','2024-08-29 01:35:11','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(210,'2024-08-29','13:30:02','2024-08-29 13:35:10','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(211,'2024-08-30','01:30:02','2024-08-30 01:35:15','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(212,'2024-08-30','13:30:01','2024-08-30 13:35:30','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(213,'2024-08-31','01:30:02','2024-08-31 01:35:36','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(214,'2024-08-31','13:30:02','2024-08-31 13:36:02','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(215,'2024-09-01','01:30:02','2024-09-01 01:35:19','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(216,'2024-09-01','13:30:02','2024-09-01 13:35:30','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(217,'2024-09-02','01:30:02','2024-09-02 01:35:17','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(218,'2024-09-02','13:30:02','2024-09-02 13:35:47','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(219,'2024-09-03','01:30:01','2024-09-03 01:35:16','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(220,'2024-09-03','13:30:01','2024-09-03 13:35:40','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(221,'2024-09-04','01:30:01','2024-09-04 01:35:28','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(222,'2024-09-04','13:30:02','2024-09-04 13:35:35','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(223,'2024-09-05','01:30:02','2024-09-05 01:35:45','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(224,'2024-09-05','13:30:02','2024-09-05 13:36:49','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(225,'2024-09-06','01:30:01','2024-09-06 01:35:42','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(226,'2024-09-06','13:30:02','2024-09-06 13:36:08','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(227,'2024-09-07','01:30:01','2024-09-07 01:35:39','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(228,'2024-09-07','13:30:01','2024-09-07 13:36:25','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(229,'2024-09-08','01:30:02','2024-09-08 01:36:14','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(230,'2024-09-08','13:30:01','2024-09-08 13:36:15','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(231,'2024-09-09','01:30:02','2024-09-09 01:35:21','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(232,'2024-09-09','13:30:01','2024-09-09 13:36:10','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(233,'2024-09-10','01:30:02','2024-09-10 01:35:28','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(234,'2024-09-10','13:30:01','2024-09-10 13:35:39','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(235,'2024-09-11','01:30:01','2024-09-11 01:35:28','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(236,'2024-09-11','13:30:01','2024-09-11 13:35:30','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(237,'2024-09-12','01:30:01','2024-09-12 01:35:41','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(238,'2024-09-12','13:30:01','2024-09-12 13:36:25','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(239,'2024-09-13','01:30:02','2024-09-13 01:35:24','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(240,'2024-09-13','13:30:01','2024-09-13 13:36:02','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(241,'2024-09-14','01:30:02','2024-09-14 01:35:38','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(242,'2024-09-14','13:30:02','2024-09-14 13:35:33','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(243,'2024-09-15','01:30:02','2024-09-15 01:35:23','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(244,'2024-09-15','13:30:02','2024-09-15 13:35:32','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(245,'2024-09-16','01:30:01','2024-09-16 01:35:17','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(246,'2024-09-16','13:30:02','2024-09-16 13:36:14','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(247,'2024-09-17','01:30:02','2024-09-17 01:35:26','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(248,'2024-09-17','13:30:01','2024-09-17 13:35:38','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(249,'2024-09-18','01:30:01','2024-09-18 01:35:22','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(250,'2024-09-19','01:30:02','2024-09-19 01:35:19','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(251,'2024-09-19','13:30:01','2024-09-19 13:35:26','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(252,'2024-09-20','01:30:02','2024-09-20 01:35:21','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(253,'2024-09-20','13:30:02','2024-09-20 13:35:29','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(254,'2024-09-21','01:30:01','2024-09-21 01:35:26','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(255,'2024-09-21','13:30:02','2024-09-21 13:35:29','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(256,'2024-09-22','01:30:01','2024-09-22 01:35:17','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(257,'2024-09-22','13:30:01','2024-09-22 13:35:24','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(258,'2024-09-23','01:30:01','2024-09-23 01:35:18','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(259,'2024-09-23','13:30:02','2024-09-23 13:35:54','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(260,'2024-09-24','01:30:01','2024-09-24 01:35:22','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(261,'2024-09-24','13:30:02','2024-09-24 13:35:32','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(262,'2024-09-25','01:30:02','2024-09-25 01:35:56','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(263,'2024-09-25','13:30:02','2024-09-25 13:35:33','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(264,'2024-09-26','01:30:01','2024-09-26 01:35:19','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(265,'2024-09-26','13:30:01','2024-09-26 13:35:28','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(266,'2024-09-27','01:30:01','2024-09-27 01:35:20','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(267,'2024-09-27','13:30:02','2024-09-27 13:35:43','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(268,'2024-09-28','01:30:02','2024-09-28 01:35:27','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(269,'2024-09-28','13:30:01','2024-09-28 13:35:34','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(270,'2024-09-29','01:30:02','2024-09-29 01:35:24','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(271,'2024-09-29','13:30:02','2024-09-29 13:35:31','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(272,'2024-09-30','01:30:01','2024-09-30 01:35:28','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(273,'2024-09-30','13:30:02','2024-09-30 13:35:48','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(274,'2024-10-01','01:30:01','2024-10-01 01:35:38','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(275,'2024-10-01','13:30:01','2024-10-01 13:35:48','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(276,'2024-10-02','01:30:02','2024-10-02 01:35:36','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(277,'2024-10-02','13:30:01','2024-10-02 13:35:48','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(278,'2024-10-03','01:30:01','2024-10-03 01:35:33','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(279,'2024-10-03','13:30:01','2024-10-03 13:36:00','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(280,'2024-10-04','01:30:01','2024-10-04 01:35:37','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(281,'2024-10-04','13:30:02','2024-10-04 13:36:31','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(282,'2024-10-05','01:30:01','2024-10-05 01:35:51','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(283,'2024-10-05','13:30:02','2024-10-05 13:36:00','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(284,'2024-10-06','01:30:01','2024-10-06 01:35:42','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(285,'2024-10-06','13:30:01','2024-10-06 13:36:01','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(286,'2024-10-07','01:30:02','2024-10-07 01:35:49','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(287,'2024-10-07','13:30:01','2024-10-07 13:36:26','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(288,'2024-10-08','01:30:02','2024-10-08 01:35:58','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(289,'2024-10-08','13:30:01','2024-10-08 13:36:06','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(290,'2024-10-09','01:30:02','2024-10-09 01:36:00','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(291,'2024-10-09','13:30:02','2024-10-09 13:36:01','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(292,'2024-10-10','10:47:40','2024-10-10 10:53:45','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(293,'2024-10-10','13:30:02','2024-10-10 13:36:25','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(294,'2024-10-11','01:30:02','2024-10-11 01:35:52','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(295,'2024-10-11','13:30:02','2024-10-11 13:36:06','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(296,'2024-10-12','01:30:01','2024-10-12 01:35:52','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(297,'2024-10-12','13:30:01','2024-10-12 13:36:18','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(298,'2024-10-13','01:30:01','2024-10-13 01:35:58','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(299,'2024-10-13','13:30:02','2024-10-13 13:36:14','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(300,'2024-10-14','01:30:02','2024-10-14 01:36:01','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(301,'2024-10-14','13:30:02','2024-10-14 13:36:21','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(302,'2024-10-15','01:30:01','2024-10-15 01:35:42','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(303,'2024-10-15','13:30:02','2024-10-15 13:35:59','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(304,'2024-10-16','01:30:02','2024-10-16 01:36:13','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(305,'2024-10-16','13:30:02','2024-10-16 13:36:22','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(306,'2024-10-17','01:30:02','2024-10-17 01:35:56','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(307,'2024-10-17','13:30:02','2024-10-17 13:36:31','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(308,'2024-10-18','01:30:02','2024-10-18 01:35:54','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(309,'2024-10-18','13:30:02','2024-10-18 13:35:58','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(310,'2024-10-19','01:30:01','2024-10-19 01:35:52','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(311,'2024-10-19','13:30:01','2024-10-19 13:36:26','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(312,'2024-10-20','01:30:01','2024-10-20 01:35:52','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(313,'2024-10-20','13:30:01','2024-10-20 13:36:22','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(314,'2024-10-21','01:30:02','2024-10-21 01:35:50','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(315,'2024-10-21','13:30:02','2024-10-21 13:36:00','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(316,'2024-10-22','01:30:01','2024-10-22 01:35:54','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(317,'2024-10-22','13:30:02','2024-10-22 13:36:35','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(318,'2024-10-23','01:30:01','2024-10-23 01:35:56','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(319,'2024-10-23','13:30:02','2024-10-23 13:36:30','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(320,'2024-10-24','01:30:02','2024-10-24 01:35:51','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(321,'2024-10-24','13:30:02','2024-10-24 13:36:20','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(322,'2024-10-25','01:30:02','2024-10-25 01:36:06','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(323,'2024-10-25','13:30:02','2024-10-25 13:36:12','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(324,'2024-10-26','01:30:02','2024-10-26 01:35:55','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(325,'2024-10-26','13:30:01','2024-10-26 13:36:36','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(326,'2024-10-27','01:30:02','2024-10-27 01:35:54','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(327,'2024-10-27','13:30:01','2024-10-27 13:36:16','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(328,'2024-10-28','01:30:01','2024-10-28 01:36:00','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(329,'2024-10-28','13:30:02','2024-10-28 13:36:27','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(330,'2024-10-29','01:30:02','2024-10-29 01:36:03','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(331,'2024-10-29','13:30:01','2024-10-29 13:36:37','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(332,'2024-10-30','01:30:01','2024-10-30 01:36:07','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(333,'2024-10-30','13:30:02','2024-10-30 13:36:09','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(334,'2024-10-31','01:30:02','2024-10-31 01:36:02','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(335,'2024-10-31','13:30:02','2024-10-31 13:36:08','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(336,'2024-11-01','01:30:02','2024-11-01 01:35:56','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(337,'2024-11-01','13:30:01','2024-11-01 13:35:59','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(338,'2024-11-02','01:30:02','2024-11-02 01:35:58','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(339,'2024-11-02','13:30:02','2024-11-02 13:36:06','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(340,'2024-11-03','01:30:01','2024-11-03 01:35:58','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(341,'2024-11-03','14:30:02','2024-11-03 14:36:38','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(342,'2024-11-04','02:30:02','2024-11-04 02:36:05','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(343,'2024-11-04','14:30:02','2024-11-04 14:36:07','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(344,'2024-11-05','02:30:02','2024-11-05 02:36:05','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(345,'2024-11-05','14:30:01','2024-11-05 14:36:16','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(346,'2024-11-06','02:30:02','2024-11-06 02:36:04','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(347,'2024-11-06','14:30:02','2024-11-06 14:36:16','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(348,'2024-11-07','02:30:02','2024-11-07 02:36:02','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(349,'2024-11-07','14:30:01','2024-11-07 14:36:23','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(350,'2024-11-08','02:30:02','2024-11-08 02:36:22','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(351,'2024-11-08','14:30:02','2024-11-08 14:36:40','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(352,'2024-11-09','02:30:01','2024-11-09 02:36:37','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(353,'2024-11-09','14:30:02','2024-11-09 14:36:34','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(354,'2024-11-10','02:30:01','2024-11-10 02:36:08','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(355,'2024-11-10','14:30:01','2024-11-10 14:36:33','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(356,'2024-11-11','02:30:02','2024-11-11 02:36:05','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(357,'2024-11-11','14:30:02','2024-11-11 14:36:26','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(358,'2024-11-12','02:30:01','2024-11-12 02:36:29','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(359,'2024-11-12','14:30:02','2024-11-12 14:36:21','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(360,'2024-11-13','02:30:01','2024-11-13 02:36:03','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(361,'2024-11-13','14:30:02','2024-11-13 14:36:22','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(362,'2024-11-14','02:30:01','2024-11-14 02:36:15','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(363,'2024-11-14','14:30:02','2024-11-14 14:37:33','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(364,'2024-11-15','02:30:01','2024-11-15 02:36:20','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(365,'2024-11-15','14:30:02','2024-11-15 14:36:21','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(366,'2024-11-16','02:30:01','2024-11-16 02:36:25','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(367,'2024-11-16','14:30:02','2024-11-16 14:36:35','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(368,'2024-11-17','02:30:02','2024-11-17 02:36:13','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(369,'2024-11-17','14:30:01','2024-11-17 14:36:40','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(370,'2024-11-18','02:30:01','2024-11-18 02:36:06','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(371,'2024-11-18','14:30:02','2024-11-18 14:36:22','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(372,'2024-11-19','02:30:01','2024-11-19 02:36:12','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(373,'2024-11-19','14:30:02','2024-11-19 14:36:39','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(374,'2024-11-20','02:30:01','2024-11-20 02:36:00','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(375,'2024-11-20','14:30:01','2024-11-20 14:36:22','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(376,'2024-11-21','02:30:01','2024-11-21 02:36:09','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(377,'2024-11-21','14:30:02','2024-11-21 14:36:29','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(378,'2024-11-22','02:30:02','2024-11-22 02:36:10','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(379,'2024-11-22','14:30:02','2024-11-22 14:36:31','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(380,'2024-11-23','02:30:02','2024-11-23 02:36:14','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(381,'2024-11-23','14:30:02','2024-11-23 14:36:17','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(382,'2024-11-24','02:30:01','2024-11-24 02:36:10','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(383,'2024-11-24','14:30:02','2024-11-24 14:36:18','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(384,'2024-11-25','02:30:02','2024-11-25 02:36:19','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(385,'2024-11-25','14:30:01','2024-11-25 14:36:44','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(386,'2024-11-26','02:30:01','2024-11-26 02:36:16','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(387,'2024-11-26','14:30:02','2024-11-26 14:36:27','thims1_masterdb_v3_A.zip','/auto_backup/thims1_masterdb_v3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(388,'2024-11-27','02:30:02','2024-11-27 02:36:13','thims1_masterdb_v3_N.zip','/auto_backup/thims1_masterdb_v3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(389,'2024-11-27','14:00:01','2024-11-27 14:00:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(390,'2024-11-27','14:00:01','2024-11-27 14:00:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(391,'2024-11-27','14:00:01','2024-11-27 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(392,'2024-11-27','14:00:01','2024-11-27 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(393,'2024-11-27','14:00:01','2024-11-27 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(394,'2024-11-27','14:00:01','2024-11-27 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(395,'2024-11-27','14:00:01','2024-11-27 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(396,'2024-11-27','14:00:01','2024-11-27 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(397,'2024-11-27','14:00:01','2024-11-27 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(398,'2024-11-27','14:00:01','2024-11-27 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(399,'2024-11-27','14:00:01','2024-11-27 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(400,'2024-11-27','14:00:01','2024-11-27 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(401,'2024-11-27','14:00:01','2024-11-27 00:00:00','thims1_stes250_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_stes250 > /home/thims4/public_html/thims/pages/auto_backup/thims1_stes250_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(402,'2024-11-27','14:00:01','2024-11-27 00:00:00','thims1_stes250_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_stes250 > /home/thims4/public_html/thims/pages/auto_backup/thims1_stes250_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(403,'2024-11-27','14:00:01','2024-11-27 00:00:00','thims1_yash870_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_yash870 > /home/thims4/public_html/thims/pages/auto_backup/thims1_yash870_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(404,'2024-11-27','14:00:01','2024-11-27 00:00:00','thims1_yash870_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_yash870 > /home/thims4/public_html/thims/pages/auto_backup/thims1_yash870_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(405,'2024-11-27','16:00:01','2024-11-27 16:00:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(406,'2024-11-27','16:00:01','2024-11-27 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(407,'2024-11-27','16:00:01','2024-11-27 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(408,'2024-11-27','16:00:01','2024-11-27 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(409,'2024-11-27','16:00:01','2024-11-27 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(410,'2024-11-27','16:00:01','2024-11-27 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(411,'2024-11-27','18:00:01','2024-11-27 18:00:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(412,'2024-11-27','18:00:01','2024-11-27 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(413,'2024-11-27','18:00:01','2024-11-27 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(414,'2024-11-27','18:00:01','2024-11-27 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(415,'2024-11-27','18:00:01','2024-11-27 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(416,'2024-11-27','18:00:01','2024-11-27 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(417,'2024-11-27','20:00:01','2024-11-27 20:00:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(418,'2024-11-27','20:00:01','2024-11-27 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(419,'2024-11-27','20:00:01','2024-11-27 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(420,'2024-11-27','20:00:01','2024-11-27 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(421,'2024-11-27','20:00:01','2024-11-27 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(422,'2024-11-27','20:00:01','2024-11-27 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(423,'2024-11-27','22:00:02','2024-11-27 22:00:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(424,'2024-11-27','22:00:02','2024-11-27 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(425,'2024-11-27','22:00:02','2024-11-27 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(426,'2024-11-27','22:00:02','2024-11-27 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(427,'2024-11-27','22:00:02','2024-11-27 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(428,'2024-11-27','22:00:02','2024-11-27 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(429,'2024-11-28','00:00:01','2024-11-28 00:00:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(430,'2024-11-28','00:00:01','2024-11-28 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(431,'2024-11-28','00:00:01','2024-11-28 00:00:00','thims1_phir265_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(432,'2024-11-28','00:00:01','2024-11-28 00:00:00','thims1_savelife001_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(433,'2024-11-28','00:00:01','2024-11-28 00:00:00','thims1_shlok6044_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(434,'2024-11-28','00:00:01','2024-11-28 00:00:00','thims1_sms4421_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(435,'2024-11-28','02:00:01','2024-11-28 02:00:37','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(436,'2024-11-28','02:00:01','2024-11-28 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(437,'2024-11-28','02:00:01','2024-11-28 00:00:00','thims1_phir265_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(438,'2024-11-28','02:00:01','2024-11-28 00:00:00','thims1_savelife001_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(439,'2024-11-28','02:00:01','2024-11-28 00:00:00','thims1_shlok6044_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(440,'2024-11-28','02:00:01','2024-11-28 00:00:00','thims1_sms4421_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(441,'2024-11-28','04:00:01','2024-11-28 04:00:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(442,'2024-11-28','04:00:01','2024-11-28 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(443,'2024-11-28','04:00:01','2024-11-28 00:00:00','thims1_phir265_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(444,'2024-11-28','04:00:01','2024-11-28 00:00:00','thims1_savelife001_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(445,'2024-11-28','04:00:01','2024-11-28 00:00:00','thims1_shlok6044_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(446,'2024-11-28','04:00:01','2024-11-28 00:00:00','thims1_sms4421_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(447,'2024-11-28','06:00:01','2024-11-28 06:00:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(448,'2024-11-28','06:00:01','2024-11-28 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(449,'2024-11-28','06:00:01','2024-11-28 00:00:00','thims1_phir265_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(450,'2024-11-28','06:00:01','2024-11-28 00:00:00','thims1_savelife001_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(451,'2024-11-28','06:00:01','2024-11-28 00:00:00','thims1_shlok6044_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(452,'2024-11-28','06:00:01','2024-11-28 00:00:00','thims1_sms4421_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(453,'2024-11-28','08:00:01','2024-11-28 08:00:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(454,'2024-11-28','08:00:01','2024-11-28 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(455,'2024-11-28','08:00:01','2024-11-28 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(456,'2024-11-28','08:00:01','2024-11-28 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(457,'2024-11-28','08:00:01','2024-11-28 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(458,'2024-11-28','08:00:01','2024-11-28 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(459,'2024-11-28','10:00:01','2024-11-28 10:00:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(460,'2024-11-28','10:00:01','2024-11-28 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(461,'2024-11-28','10:00:01','2024-11-28 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(462,'2024-11-28','10:00:01','2024-11-28 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(463,'2024-11-28','10:00:01','2024-11-28 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(464,'2024-11-28','10:00:01','2024-11-28 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(465,'2024-11-28','12:00:01','2024-11-28 12:00:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(466,'2024-11-28','12:00:01','2024-11-28 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(467,'2024-11-28','12:00:01','2024-11-28 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(468,'2024-11-28','12:00:01','2024-11-28 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(469,'2024-11-28','12:00:01','2024-11-28 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(470,'2024-11-28','12:00:01','2024-11-28 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(471,'2024-11-28','14:00:01','2024-11-28 14:00:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(472,'2024-11-28','14:00:01','2024-11-28 14:00:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(473,'2024-11-28','14:00:01','2024-11-28 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(474,'2024-11-28','14:00:01','2024-11-28 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(475,'2024-11-28','14:00:01','2024-11-28 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(476,'2024-11-28','14:00:01','2024-11-28 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(477,'2024-11-28','14:00:01','2024-11-28 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(478,'2024-11-28','14:00:01','2024-11-28 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(479,'2024-11-28','14:00:01','2024-11-28 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(480,'2024-11-28','14:00:01','2024-11-28 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(481,'2024-11-28','14:00:01','2024-11-28 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(482,'2024-11-28','14:00:01','2024-11-28 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(483,'2024-11-28','16:00:01','2024-11-28 16:00:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(484,'2024-11-28','16:00:01','2024-11-28 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(485,'2024-11-28','16:00:01','2024-11-28 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(486,'2024-11-28','16:00:01','2024-11-28 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(487,'2024-11-28','16:00:01','2024-11-28 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(488,'2024-11-28','16:00:01','2024-11-28 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(489,'2024-11-28','18:00:01','2024-11-28 18:00:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(490,'2024-11-28','18:00:01','2024-11-28 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(491,'2024-11-28','18:00:01','2024-11-28 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(492,'2024-11-28','18:00:01','2024-11-28 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(493,'2024-11-28','18:00:01','2024-11-28 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(494,'2024-11-28','18:00:01','2024-11-28 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(495,'2024-11-28','20:00:01','2024-11-28 20:00:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(496,'2024-11-28','20:00:01','2024-11-28 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(497,'2024-11-28','20:00:01','2024-11-28 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(498,'2024-11-28','20:00:01','2024-11-28 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(499,'2024-11-28','20:00:01','2024-11-28 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(500,'2024-11-28','20:00:01','2024-11-28 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(501,'2024-11-28','22:00:01','2024-11-28 22:00:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(502,'2024-11-28','22:00:01','2024-11-28 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(503,'2024-11-28','22:00:01','2024-11-28 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(504,'2024-11-28','22:00:01','2024-11-28 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(505,'2024-11-28','22:00:01','2024-11-28 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(506,'2024-11-28','22:00:01','2024-11-28 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(507,'2024-11-29','00:00:01','2024-11-29 00:00:37','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(508,'2024-11-29','00:00:01','2024-11-29 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(509,'2024-11-29','00:00:01','2024-11-29 00:00:00','thims1_phir265_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(510,'2024-11-29','00:00:01','2024-11-29 00:00:00','thims1_savelife001_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(511,'2024-11-29','00:00:01','2024-11-29 00:00:00','thims1_shlok6044_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(512,'2024-11-29','00:00:01','2024-11-29 00:00:00','thims1_sms4421_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(513,'2024-11-29','02:00:01','2024-11-29 02:00:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(514,'2024-11-29','02:00:01','2024-11-29 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(515,'2024-11-29','02:00:01','2024-11-29 00:00:00','thims1_phir265_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(516,'2024-11-29','02:00:01','2024-11-29 00:00:00','thims1_savelife001_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(517,'2024-11-29','02:00:01','2024-11-29 00:00:00','thims1_shlok6044_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(518,'2024-11-29','02:00:01','2024-11-29 00:00:00','thims1_sms4421_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(519,'2024-11-29','04:00:02','2024-11-29 04:00:38','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(520,'2024-11-29','04:00:02','2024-11-29 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(521,'2024-11-29','04:00:02','2024-11-29 00:00:00','thims1_phir265_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(522,'2024-11-29','04:00:02','2024-11-29 00:00:00','thims1_savelife001_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(523,'2024-11-29','04:00:02','2024-11-29 00:00:00','thims1_shlok6044_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(524,'2024-11-29','04:00:02','2024-11-29 00:00:00','thims1_sms4421_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(525,'2024-11-29','06:00:01','2024-11-29 06:00:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(526,'2024-11-29','06:00:01','2024-11-29 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(527,'2024-11-29','06:00:01','2024-11-29 00:00:00','thims1_phir265_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(528,'2024-11-29','06:00:01','2024-11-29 00:00:00','thims1_savelife001_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(529,'2024-11-29','06:00:01','2024-11-29 00:00:00','thims1_shlok6044_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(530,'2024-11-29','06:00:01','2024-11-29 00:00:00','thims1_sms4421_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(531,'2024-11-29','08:00:01','2024-11-29 08:00:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(532,'2024-11-29','08:00:01','2024-11-29 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(533,'2024-11-29','08:00:01','2024-11-29 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(534,'2024-11-29','08:00:01','2024-11-29 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(535,'2024-11-29','08:00:01','2024-11-29 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(536,'2024-11-29','08:00:01','2024-11-29 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(537,'2024-11-29','10:00:01','2024-11-29 10:00:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(538,'2024-11-29','10:00:01','2024-11-29 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(539,'2024-11-29','10:00:01','2024-11-29 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(540,'2024-11-29','10:00:01','2024-11-29 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(541,'2024-11-29','10:00:01','2024-11-29 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(542,'2024-11-29','10:00:01','2024-11-29 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(543,'2024-11-29','12:00:01','2024-11-29 12:00:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(544,'2024-11-29','12:00:01','2024-11-29 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(545,'2024-11-29','12:00:01','2024-11-29 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(546,'2024-11-29','12:00:01','2024-11-29 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(547,'2024-11-29','12:00:01','2024-11-29 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(548,'2024-11-29','12:00:01','2024-11-29 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(549,'2024-11-29','14:00:01','2024-11-29 14:00:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(550,'2024-11-29','14:00:01','2024-11-29 14:00:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(551,'2024-11-29','14:00:01','2024-11-29 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(552,'2024-11-29','14:00:01','2024-11-29 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(553,'2024-11-29','14:00:01','2024-11-29 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(554,'2024-11-29','14:00:01','2024-11-29 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(555,'2024-11-29','14:00:01','2024-11-29 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(556,'2024-11-29','14:00:01','2024-11-29 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(557,'2024-11-29','14:00:01','2024-11-29 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(558,'2024-11-29','14:00:01','2024-11-29 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(559,'2024-11-29','14:00:01','2024-11-29 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(560,'2024-11-29','14:00:01','2024-11-29 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(561,'2024-11-29','16:00:01','2024-11-29 16:00:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(562,'2024-11-29','16:00:01','2024-11-29 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(563,'2024-11-29','16:00:01','2024-11-29 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(564,'2024-11-29','16:00:01','2024-11-29 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(565,'2024-11-29','16:00:01','2024-11-29 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(566,'2024-11-29','16:00:01','2024-11-29 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(567,'2024-11-29','18:00:01','2024-11-29 18:00:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(568,'2024-11-29','18:00:01','2024-11-29 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(569,'2024-11-29','18:00:01','2024-11-29 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(570,'2024-11-29','18:00:01','2024-11-29 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(571,'2024-11-29','18:00:01','2024-11-29 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(572,'2024-11-29','18:00:01','2024-11-29 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(573,'2024-11-29','20:00:01','2024-11-29 20:00:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(574,'2024-11-29','20:00:01','2024-11-29 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(575,'2024-11-29','20:00:01','2024-11-29 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(576,'2024-11-29','20:00:01','2024-11-29 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(577,'2024-11-29','20:00:01','2024-11-29 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(578,'2024-11-29','20:00:01','2024-11-29 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(579,'2024-11-29','22:00:01','2024-11-29 22:00:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(580,'2024-11-29','22:00:01','2024-11-29 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(581,'2024-11-29','22:00:01','2024-11-29 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(582,'2024-11-29','22:00:01','2024-11-29 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(583,'2024-11-29','22:00:01','2024-11-29 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(584,'2024-11-29','22:00:01','2024-11-29 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(585,'2024-11-30','00:00:02','2024-11-30 00:00:38','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(586,'2024-11-30','00:00:02','2024-11-30 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(587,'2024-11-30','00:00:02','2024-11-30 00:00:00','thims1_phir265_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(588,'2024-11-30','00:00:02','2024-11-30 00:00:00','thims1_savelife001_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(589,'2024-11-30','00:00:02','2024-11-30 00:00:00','thims1_shlok6044_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(590,'2024-11-30','00:00:02','2024-11-30 00:00:00','thims1_sms4421_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(591,'2024-11-30','02:00:01','2024-11-30 02:00:42','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(592,'2024-11-30','02:00:01','2024-11-30 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(593,'2024-11-30','02:00:01','2024-11-30 00:00:00','thims1_phir265_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(594,'2024-11-30','02:00:01','2024-11-30 00:00:00','thims1_savelife001_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(595,'2024-11-30','02:00:01','2024-11-30 00:00:00','thims1_shlok6044_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(596,'2024-11-30','02:00:01','2024-11-30 00:00:00','thims1_sms4421_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(597,'2024-11-30','04:00:01','2024-11-30 04:00:37','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(598,'2024-11-30','04:00:01','2024-11-30 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(599,'2024-11-30','04:00:01','2024-11-30 00:00:00','thims1_phir265_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(600,'2024-11-30','04:00:01','2024-11-30 00:00:00','thims1_savelife001_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(601,'2024-11-30','04:00:01','2024-11-30 00:00:00','thims1_shlok6044_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(602,'2024-11-30','04:00:01','2024-11-30 00:00:00','thims1_sms4421_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(603,'2024-11-30','06:00:01','2024-11-30 06:00:43','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(604,'2024-11-30','06:00:01','2024-11-30 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(605,'2024-11-30','06:00:01','2024-11-30 00:00:00','thims1_phir265_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(606,'2024-11-30','06:00:01','2024-11-30 00:00:00','thims1_savelife001_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(607,'2024-11-30','06:00:01','2024-11-30 00:00:00','thims1_shlok6044_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(608,'2024-11-30','06:00:01','2024-11-30 00:00:00','thims1_sms4421_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(609,'2024-11-30','08:00:01','2024-11-30 08:00:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(610,'2024-11-30','08:00:01','2024-11-30 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(611,'2024-11-30','08:00:01','2024-11-30 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(612,'2024-11-30','08:00:01','2024-11-30 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(613,'2024-11-30','08:00:01','2024-11-30 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(614,'2024-11-30','08:00:01','2024-11-30 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(615,'2024-11-30','10:00:02','2024-11-30 10:00:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(616,'2024-11-30','10:00:02','2024-11-30 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(617,'2024-11-30','10:00:02','2024-11-30 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(618,'2024-11-30','10:00:02','2024-11-30 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(619,'2024-11-30','10:00:02','2024-11-30 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(620,'2024-11-30','10:00:02','2024-11-30 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(621,'2024-11-30','12:00:02','2024-11-30 12:00:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(622,'2024-11-30','12:00:02','2024-11-30 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(623,'2024-11-30','12:00:02','2024-11-30 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(624,'2024-11-30','12:00:02','2024-11-30 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(625,'2024-11-30','12:00:02','2024-11-30 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(626,'2024-11-30','12:00:02','2024-11-30 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(627,'2024-11-30','14:00:01','2024-11-30 14:00:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(628,'2024-11-30','14:00:01','2024-11-30 14:00:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(629,'2024-11-30','14:00:01','2024-11-30 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(630,'2024-11-30','14:00:01','2024-11-30 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(631,'2024-11-30','14:00:01','2024-11-30 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(632,'2024-11-30','14:00:01','2024-11-30 00:00:00','thims1_phir265_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_phir265 > /home/thims4/public_html/thims/pages/auto_backup/thims1_phir265_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(633,'2024-11-30','14:00:01','2024-11-30 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(634,'2024-11-30','14:00:01','2024-11-30 00:00:00','thims1_savelife001_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_savelife001 > /home/thims4/public_html/thims/pages/auto_backup/thims1_savelife001_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(635,'2024-11-30','14:00:01','2024-11-30 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(636,'2024-11-30','14:00:01','2024-11-30 00:00:00','thims1_shlok6044_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_shlok6044 > /home/thims4/public_html/thims/pages/auto_backup/thims1_shlok6044_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(637,'2024-11-30','14:00:01','2024-11-30 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(638,'2024-11-30','14:00:01','2024-11-30 00:00:00','thims1_sms4421_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_sms4421 > /home/thims4/public_html/thims/pages/auto_backup/thims1_sms4421_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(639,'2024-11-30','16:00:01','2024-11-30 16:00:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(640,'2024-11-30','16:00:01','2024-11-30 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(641,'2024-11-30','18:00:01','2024-11-30 18:00:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(642,'2024-11-30','18:00:01','2024-11-30 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(643,'2024-11-30','20:00:02','2024-11-30 20:00:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(644,'2024-11-30','20:00:02','2024-11-30 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(645,'2024-11-30','22:00:01','2024-11-30 22:00:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(646,'2024-11-30','22:00:01','2024-11-30 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(647,'2024-12-01','00:00:02','2024-12-01 00:00:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(648,'2024-12-01','00:00:02','2024-12-01 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(649,'2024-12-01','02:00:01','2024-12-01 02:00:42','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(650,'2024-12-01','02:00:01','2024-12-01 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(651,'2024-12-01','04:00:03','2024-12-01 04:00:45','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(652,'2024-12-01','04:00:03','2024-12-01 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(653,'2024-12-01','06:00:02','2024-12-01 06:00:45','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(654,'2024-12-01','06:00:02','2024-12-01 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(655,'2024-12-01','08:00:01','2024-12-01 08:00:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(656,'2024-12-01','08:00:01','2024-12-01 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(657,'2024-12-01','10:00:02','2024-12-01 10:00:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(658,'2024-12-01','10:00:02','2024-12-01 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(659,'2024-12-01','12:00:02','2024-12-01 12:00:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(660,'2024-12-01','12:00:02','2024-12-01 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(661,'2024-12-01','14:00:01','2024-12-01 14:00:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(662,'2024-12-01','14:00:01','2024-12-01 14:00:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(663,'2024-12-01','14:00:01','2024-12-01 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(664,'2024-12-01','14:00:01','2024-12-01 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(665,'2024-12-01','16:00:02','2024-12-01 16:00:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(666,'2024-12-01','16:00:02','2024-12-01 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(667,'2024-12-01','18:00:01','2024-12-01 18:00:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(668,'2024-12-01','18:00:01','2024-12-01 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(669,'2024-12-01','20:00:02','2024-12-01 20:00:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(670,'2024-12-01','20:00:02','2024-12-01 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(671,'2024-12-01','22:00:01','2024-12-01 22:00:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(672,'2024-12-01','22:00:01','2024-12-01 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(673,'2024-12-02','00:00:01','2024-12-02 00:00:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(674,'2024-12-02','00:00:01','2024-12-02 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(675,'2024-12-02','02:00:02','2024-12-02 02:00:43','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(676,'2024-12-02','02:00:02','2024-12-02 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(677,'2024-12-02','04:00:02','2024-12-02 04:00:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(678,'2024-12-02','04:00:02','2024-12-02 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(679,'2024-12-02','06:00:01','2024-12-02 06:00:42','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(680,'2024-12-02','06:00:01','2024-12-02 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(681,'2024-12-02','08:00:01','2024-12-02 08:00:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(682,'2024-12-02','08:00:01','2024-12-02 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(683,'2024-12-02','10:00:02','2024-12-02 10:00:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(684,'2024-12-02','10:00:02','2024-12-02 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(685,'2024-12-02','11:46:47','2024-12-02 11:47:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(686,'2024-12-02','11:46:47','2024-12-02 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(687,'2024-12-02','11:49:29','2024-12-02 11:50:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(688,'2024-12-02','11:49:29','2024-12-02 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(689,'2024-12-02','12:00:01','2024-12-02 12:00:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(690,'2024-12-02','12:00:01','2024-12-02 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(691,'2024-12-02','14:00:02','2024-12-02 14:01:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(692,'2024-12-02','14:00:02','2024-12-02 14:01:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(693,'2024-12-02','14:00:02','2024-12-02 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(694,'2024-12-02','14:00:02','2024-12-02 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(695,'2024-12-02','16:00:01','2024-12-02 16:01:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(696,'2024-12-02','16:00:01','2024-12-02 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(697,'2024-12-02','18:00:01','2024-12-02 18:01:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(698,'2024-12-02','18:00:01','2024-12-02 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(699,'2024-12-02','20:00:01','2024-12-02 20:01:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(700,'2024-12-02','20:00:01','2024-12-02 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(701,'2024-12-02','22:00:01','2024-12-02 22:01:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(702,'2024-12-02','22:00:01','2024-12-02 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(703,'2024-12-03','00:00:01','2024-12-03 00:01:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(704,'2024-12-03','00:00:01','2024-12-03 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(705,'2024-12-03','02:00:01','2024-12-03 02:01:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(706,'2024-12-03','02:00:01','2024-12-03 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(707,'2024-12-03','04:00:02','2024-12-03 04:01:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(708,'2024-12-03','04:00:02','2024-12-03 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(709,'2024-12-03','06:00:01','2024-12-03 06:01:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(710,'2024-12-03','06:00:01','2024-12-03 00:00:00','thims1_newlife490_N.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_N.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(711,'2024-12-03','08:00:02','2024-12-03 08:01:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(712,'2024-12-03','08:00:02','2024-12-03 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(713,'2024-12-03','10:00:01','2024-12-03 10:01:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(714,'2024-12-03','10:00:01','2024-12-03 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(715,'2024-12-03','10:32:40','2024-12-03 10:33:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(716,'2024-12-03','10:32:40','2024-12-03 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(717,'2024-12-03','10:35:49','2024-12-03 10:37:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(718,'2024-12-03','10:35:49','2024-12-03 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(719,'2024-12-03','10:38:55','2024-12-03 10:40:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(720,'2024-12-03','10:38:55','2024-12-03 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(721,'2024-12-03','10:42:00','2024-12-03 10:43:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(722,'2024-12-03','10:42:00','2024-12-03 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(723,'2024-12-03','12:00:02','2024-12-03 12:01:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(724,'2024-12-03','12:00:02','2024-12-03 00:00:00','thims1_newlife490_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims1_newlife490 > /home/thims4/public_html/thims/pages/auto_backup/thims1_newlife490_A.txt2email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(725,'2024-12-03','14:00:02','2024-12-03 14:01:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(726,'2024-12-03','14:00:02','2024-12-03 14:01:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(727,'2024-12-03','16:00:01','2024-12-03 16:02:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(728,'2024-12-03','18:00:01','2024-12-03 18:02:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(729,'2024-12-03','20:00:01','2024-12-03 20:02:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(730,'2024-12-03','22:00:01','2024-12-03 22:02:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(731,'2024-12-04','00:00:01','2024-12-04 00:02:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(732,'2024-12-04','02:00:01','2024-12-04 02:02:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(733,'2024-12-04','04:00:02','2024-12-04 04:02:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(734,'2024-12-04','06:00:02','2024-12-04 06:02:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(735,'2024-12-04','08:00:02','2024-12-04 08:02:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(736,'2024-12-04','10:00:02','2024-12-04 10:02:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(737,'2024-12-04','12:00:02','2024-12-04 12:02:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(738,'2024-12-04','14:00:02','2024-12-04 14:03:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(739,'2024-12-04','14:00:02','2024-12-04 14:03:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(740,'2024-12-04','16:00:02','2024-12-04 16:03:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(741,'2024-12-04','18:00:01','2024-12-04 18:03:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(742,'2024-12-04','20:00:02','2024-12-04 20:03:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(743,'2024-12-04','22:00:01','2024-12-04 22:03:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(744,'2024-12-05','00:00:02','2024-12-05 00:03:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(745,'2024-12-05','02:00:01','2024-12-05 02:03:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(746,'2024-12-05','04:00:01','2024-12-05 04:03:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(747,'2024-12-05','06:00:02','2024-12-05 06:03:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(748,'2024-12-05','08:00:02','2024-12-05 08:03:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(749,'2024-12-05','10:00:01','2024-12-05 10:03:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(750,'2024-12-05','12:00:02','2024-12-05 12:03:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(751,'2024-12-05','14:00:02','2024-12-05 14:03:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(752,'2024-12-05','14:00:02','2024-12-05 14:03:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(753,'2024-12-05','16:00:02','2024-12-05 16:03:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(754,'2024-12-05','18:00:01','2024-12-05 18:03:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(755,'2024-12-05','20:00:02','2024-12-05 20:03:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(756,'2024-12-05','22:00:35','2024-12-05 22:13:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(757,'2024-12-06','00:00:04','2024-12-06 00:03:45','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(758,'2024-12-06','02:00:02','2024-12-06 02:03:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(759,'2024-12-06','04:00:02','2024-12-06 04:03:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(760,'2024-12-06','06:00:02','2024-12-06 06:03:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(761,'2024-12-06','08:00:01','2024-12-06 08:03:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(762,'2024-12-06','10:00:02','2024-12-06 10:03:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(763,'2024-12-06','12:00:02','2024-12-06 12:03:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(764,'2024-12-06','14:00:02','2024-12-06 14:03:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(765,'2024-12-06','14:00:02','2024-12-06 14:03:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(766,'2024-12-06','14:53:25','2024-12-06 14:56:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(767,'2024-12-06','15:14:57','2024-12-06 15:18:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(768,'2024-12-10','12:00:01','2024-12-10 12:03:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(769,'2024-12-10','14:00:01','2024-12-10 14:03:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(770,'2024-12-10','14:00:01','2024-12-10 14:03:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(771,'2024-12-10','16:00:01','2024-12-10 16:03:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(772,'2024-12-10','18:00:02','2024-12-10 18:03:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(773,'2024-12-10','20:00:02','2024-12-10 20:03:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(774,'2024-12-10','22:00:02','2024-12-10 22:03:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(775,'2024-12-11','00:00:01','2024-12-11 00:03:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(776,'2024-12-11','02:00:02','2024-12-11 02:03:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(777,'2024-12-11','04:00:02','2024-12-11 04:03:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(778,'2024-12-11','06:00:01','2024-12-11 06:03:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(779,'2024-12-11','08:00:01','2024-12-11 08:03:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(780,'2024-12-11','10:00:01','2024-12-11 10:03:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(781,'2024-12-11','12:00:01','2024-12-11 12:03:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(782,'2024-12-11','14:00:02','2024-12-11 14:03:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(783,'2024-12-11','14:00:02','2024-12-11 14:03:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(784,'2024-12-11','16:00:02','2024-12-11 16:03:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(785,'2024-12-11','18:00:01','2024-12-11 18:03:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(786,'2024-12-11','20:00:02','2024-12-11 20:03:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(787,'2024-12-11','22:00:02','2024-12-11 22:03:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(788,'2024-12-12','00:00:01','2024-12-12 00:03:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(789,'2024-12-12','02:00:02','2024-12-12 02:03:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(790,'2024-12-12','04:00:02','2024-12-12 04:03:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(791,'2024-12-12','06:00:01','2024-12-12 06:03:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(792,'2024-12-12','08:00:01','2024-12-12 08:03:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(793,'2024-12-12','10:00:02','2024-12-12 10:03:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(794,'2024-12-12','12:00:02','2024-12-12 12:03:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(795,'2024-12-12','14:00:02','2024-12-12 14:03:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(796,'2024-12-12','14:00:02','2024-12-12 14:03:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(797,'2024-12-12','16:00:02','2024-12-12 16:03:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(798,'2024-12-12','18:00:01','2024-12-12 18:03:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(799,'2024-12-12','20:00:01','2024-12-12 20:03:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(800,'2024-12-12','22:00:01','2024-12-12 22:03:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(801,'2024-12-13','00:00:02','2024-12-13 00:03:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(802,'2024-12-13','02:00:01','2024-12-13 02:03:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(803,'2024-12-13','04:00:03','2024-12-13 04:03:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(804,'2024-12-13','06:00:02','2024-12-13 06:03:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(805,'2024-12-13','08:00:02','2024-12-13 08:03:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(806,'2024-12-13','10:00:01','2024-12-13 10:03:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(807,'2024-12-13','12:00:02','2024-12-13 12:03:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(808,'2024-12-13','14:00:01','2024-12-13 14:03:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(809,'2024-12-13','14:00:01','2024-12-13 14:03:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(810,'2024-12-13','16:00:01','2024-12-13 16:03:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(811,'2024-12-13','18:00:01','2024-12-13 18:03:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(812,'2024-12-13','20:00:02','2024-12-13 20:03:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(813,'2024-12-13','22:00:01','2024-12-13 22:03:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(814,'2024-12-14','00:00:02','2024-12-14 00:03:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(815,'2024-12-14','02:00:01','2024-12-14 02:03:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(816,'2024-12-14','04:00:02','2024-12-14 04:03:31','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(817,'2024-12-14','06:00:02','2024-12-14 06:03:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(818,'2024-12-14','08:00:01','2024-12-14 08:03:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(819,'2024-12-14','10:00:02','2024-12-14 10:03:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(820,'2024-12-14','12:00:01','2024-12-14 12:03:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(821,'2024-12-14','14:00:02','2024-12-14 14:03:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(822,'2024-12-14','14:00:02','2024-12-14 14:03:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(823,'2024-12-14','16:00:01','2024-12-14 16:03:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(824,'2024-12-14','18:00:02','2024-12-14 18:03:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(825,'2024-12-14','20:00:02','2024-12-14 20:03:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(826,'2024-12-14','22:00:01','2024-12-14 22:03:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(827,'2024-12-15','00:00:02','2024-12-15 00:03:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(828,'2024-12-15','02:00:02','2024-12-15 02:03:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(829,'2024-12-15','04:00:02','2024-12-15 04:03:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(830,'2024-12-15','06:00:01','2024-12-15 06:03:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(831,'2024-12-15','08:00:02','2024-12-15 08:03:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(832,'2024-12-15','10:00:01','2024-12-15 10:03:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(833,'2024-12-15','12:00:02','2024-12-15 12:03:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(834,'2024-12-15','14:00:01','2024-12-15 14:03:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(835,'2024-12-15','14:00:01','2024-12-15 14:03:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(836,'2024-12-15','16:00:02','2024-12-15 16:03:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(837,'2024-12-15','18:00:02','2024-12-15 18:03:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(838,'2024-12-15','20:00:02','2024-12-15 20:03:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(839,'2024-12-15','22:00:01','2024-12-15 22:03:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(840,'2024-12-16','00:00:01','2024-12-16 00:03:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(841,'2024-12-16','02:00:01','2024-12-16 02:03:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(842,'2024-12-16','04:00:02','2024-12-16 04:03:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(843,'2024-12-16','06:00:01','2024-12-16 06:03:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(844,'2024-12-16','08:00:02','2024-12-16 08:03:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(845,'2024-12-16','10:00:01','2024-12-16 10:03:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(846,'2024-12-16','12:00:01','2024-12-16 12:03:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(847,'2024-12-16','14:00:02','2024-12-16 14:03:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(848,'2024-12-16','14:00:02','2024-12-16 14:03:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(849,'2024-12-16','16:00:02','2024-12-16 16:03:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(850,'2024-12-16','18:00:01','2024-12-16 18:03:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(851,'2024-12-16','20:00:02','2024-12-16 20:03:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(852,'2024-12-16','22:00:01','2024-12-16 22:03:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(853,'2024-12-17','00:00:01','2024-12-17 00:03:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(854,'2024-12-17','02:00:02','2024-12-17 02:03:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(855,'2024-12-17','04:00:02','2024-12-17 04:03:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(856,'2024-12-17','06:00:02','2024-12-17 06:03:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(857,'2024-12-17','08:00:02','2024-12-17 08:03:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(858,'2024-12-17','10:00:01','2024-12-17 10:03:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(859,'2024-12-17','12:00:02','2024-12-17 12:03:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(860,'2024-12-17','14:00:02','2024-12-17 14:03:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(861,'2024-12-17','14:00:02','2024-12-17 14:03:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(862,'2024-12-17','16:00:01','2024-12-17 16:03:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(863,'2024-12-17','18:00:01','2024-12-17 18:03:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(864,'2024-12-17','20:00:02','2024-12-17 20:03:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(865,'2024-12-17','22:00:02','2024-12-17 22:03:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(866,'2024-12-18','00:00:02','2024-12-18 00:03:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(867,'2024-12-18','02:00:01','2024-12-18 02:03:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(868,'2024-12-18','04:00:03','2024-12-18 04:03:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(869,'2024-12-18','06:00:02','2024-12-18 06:03:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(870,'2024-12-18','08:00:02','2024-12-18 08:03:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(871,'2024-12-18','10:00:01','2024-12-18 10:03:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(872,'2024-12-18','12:00:02','2024-12-18 12:03:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(873,'2024-12-18','14:00:01','2024-12-18 14:03:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(874,'2024-12-18','14:00:01','2024-12-18 14:03:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(875,'2024-12-18','16:00:02','2024-12-18 16:03:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(876,'2024-12-18','18:00:02','2024-12-18 18:03:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(877,'2024-12-18','20:00:02','2024-12-18 20:03:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(878,'2024-12-18','22:00:01','2024-12-18 22:03:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(879,'2024-12-19','00:00:01','2024-12-19 00:03:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(880,'2024-12-19','02:00:01','2024-12-19 02:03:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(881,'2024-12-19','04:00:02','2024-12-19 04:03:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(882,'2024-12-19','06:00:01','2024-12-19 06:03:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(883,'2024-12-19','08:00:02','2024-12-19 08:03:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(884,'2024-12-19','10:00:02','2024-12-19 10:03:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(885,'2024-12-19','12:00:02','2024-12-19 12:03:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(886,'2024-12-19','14:00:01','2024-12-19 14:03:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(887,'2024-12-19','14:00:01','2024-12-19 14:03:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(888,'2024-12-19','16:00:02','2024-12-19 16:05:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(889,'2024-12-19','16:15:42','2024-12-19 16:21:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(890,'2024-12-19','18:00:01','2024-12-19 18:05:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(891,'2024-12-19','20:00:01','2024-12-19 20:05:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(892,'2024-12-19','22:00:01','2024-12-19 22:05:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(893,'2024-12-20','00:00:02','2024-12-20 00:05:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(894,'2024-12-20','02:00:01','2024-12-20 02:05:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(895,'2024-12-20','04:00:02','2024-12-20 04:05:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(896,'2024-12-20','06:00:02','2024-12-20 06:05:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(897,'2024-12-20','08:00:01','2024-12-20 08:05:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(898,'2024-12-20','10:00:01','2024-12-20 10:05:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(899,'2024-12-20','12:00:01','2024-12-20 12:05:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(900,'2024-12-20','14:00:01','2024-12-20 14:05:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(901,'2024-12-20','14:00:01','2024-12-20 14:05:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(902,'2024-12-20','16:00:02','2024-12-20 16:05:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(903,'2024-12-20','18:00:01','2024-12-20 18:05:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(904,'2024-12-20','20:00:01','2024-12-20 20:06:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(905,'2024-12-20','22:00:01','2024-12-20 22:05:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(906,'2024-12-21','00:00:01','2024-12-21 00:05:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(907,'2024-12-21','02:00:01','2024-12-21 02:05:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(908,'2024-12-21','04:00:02','2024-12-21 04:05:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(909,'2024-12-21','06:00:02','2024-12-21 06:05:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(910,'2024-12-21','08:00:01','2024-12-21 08:05:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(911,'2024-12-21','10:00:02','2024-12-21 10:05:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(912,'2024-12-21','12:00:01','2024-12-21 12:06:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(913,'2024-12-21','14:00:01','2024-12-21 14:06:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(914,'2024-12-21','14:00:01','2024-12-21 14:06:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(915,'2024-12-21','16:00:02','2024-12-21 16:06:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(916,'2024-12-21','18:00:01','2024-12-21 18:06:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(917,'2024-12-21','20:00:01','2024-12-21 20:05:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(918,'2024-12-21','22:00:01','2024-12-21 22:05:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(919,'2024-12-22','00:00:02','2024-12-22 00:05:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(920,'2024-12-22','02:00:02','2024-12-22 02:05:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(921,'2024-12-22','04:00:02','2024-12-22 04:05:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(922,'2024-12-22','06:00:01','2024-12-22 06:05:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(923,'2024-12-22','08:00:02','2024-12-22 08:05:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(924,'2024-12-22','10:00:02','2024-12-22 10:05:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(925,'2024-12-22','12:00:02','2024-12-22 12:05:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(926,'2024-12-22','14:00:01','2024-12-22 14:05:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(927,'2024-12-22','14:00:01','2024-12-22 14:05:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(928,'2024-12-22','16:00:01','2024-12-22 16:05:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(929,'2024-12-22','18:00:02','2024-12-22 18:05:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(930,'2024-12-22','20:00:02','2024-12-22 20:05:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(931,'2024-12-22','22:00:02','2024-12-22 22:05:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(932,'2024-12-23','00:00:03','2024-12-23 00:05:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(933,'2024-12-23','02:00:02','2024-12-23 02:05:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(934,'2024-12-23','04:00:03','2024-12-23 04:05:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(935,'2024-12-23','06:00:01','2024-12-23 06:05:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(936,'2024-12-23','08:00:01','2024-12-23 08:05:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(937,'2024-12-23','10:00:02','2024-12-23 10:05:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(938,'2024-12-23','12:00:01','2024-12-23 12:06:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(939,'2024-12-23','14:00:01','2024-12-23 14:05:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(940,'2024-12-23','14:00:01','2024-12-23 14:05:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(941,'2024-12-23','16:00:02','2024-12-23 16:05:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(942,'2024-12-23','18:00:01','2024-12-23 18:05:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(943,'2024-12-23','20:00:01','2024-12-23 20:05:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(944,'2024-12-23','22:00:01','2024-12-23 22:05:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(945,'2024-12-24','00:00:02','2024-12-24 00:05:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(946,'2024-12-24','02:00:02','2024-12-24 02:05:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(947,'2024-12-24','04:00:03','2024-12-24 04:05:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(948,'2024-12-24','06:00:02','2024-12-24 06:05:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(949,'2024-12-24','08:00:02','2024-12-24 08:05:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(950,'2024-12-24','10:00:02','2024-12-24 10:05:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(951,'2024-12-24','12:00:01','2024-12-24 12:06:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(952,'2024-12-24','14:00:02','2024-12-24 14:06:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(953,'2024-12-24','14:00:02','2024-12-24 14:06:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(954,'2024-12-24','16:00:02','2024-12-24 16:05:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(955,'2024-12-24','18:00:01','2024-12-24 18:06:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(956,'2024-12-24','20:00:02','2024-12-24 20:05:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(957,'2024-12-24','22:00:01','2024-12-24 22:05:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(958,'2024-12-25','00:00:03','2024-12-25 00:05:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(959,'2024-12-25','02:00:02','2024-12-25 02:05:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(960,'2024-12-25','04:00:03','2024-12-25 04:05:31','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(961,'2024-12-25','06:00:02','2024-12-25 06:05:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(962,'2024-12-25','08:00:02','2024-12-25 08:05:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(963,'2024-12-25','10:00:01','2024-12-25 10:05:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(964,'2024-12-25','12:00:02','2024-12-25 12:05:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(965,'2024-12-25','14:00:02','2024-12-25 14:06:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(966,'2024-12-25','14:00:02','2024-12-25 14:06:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(967,'2024-12-25','16:00:02','2024-12-25 16:05:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(968,'2024-12-25','18:00:01','2024-12-25 18:05:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(969,'2024-12-25','20:00:01','2024-12-25 20:05:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(970,'2024-12-25','22:00:01','2024-12-25 22:05:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(971,'2024-12-26','00:00:02','2024-12-26 00:05:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(972,'2024-12-26','02:00:02','2024-12-26 02:05:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(973,'2024-12-26','04:00:03','2024-12-26 04:05:31','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(974,'2024-12-26','06:00:02','2024-12-26 06:05:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(975,'2024-12-26','08:00:02','2024-12-26 08:05:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(976,'2024-12-26','10:00:01','2024-12-26 10:05:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(977,'2024-12-26','12:00:02','2024-12-26 12:06:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(978,'2024-12-26','14:00:01','2024-12-26 14:06:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(979,'2024-12-26','14:00:01','2024-12-26 14:06:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(980,'2024-12-26','16:00:01','2024-12-26 16:06:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(981,'2024-12-26','18:00:02','2024-12-26 18:06:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(982,'2024-12-26','20:00:02','2024-12-26 20:05:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(983,'2024-12-26','22:00:01','2024-12-26 22:05:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(984,'2024-12-27','00:00:03','2024-12-27 00:05:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(985,'2024-12-27','02:00:02','2024-12-27 02:05:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(986,'2024-12-27','04:00:03','2024-12-27 04:05:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(987,'2024-12-27','06:00:02','2024-12-27 06:05:12','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(988,'2024-12-27','08:00:02','2024-12-27 08:05:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(989,'2024-12-27','10:00:01','2024-12-27 10:06:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(990,'2024-12-27','12:00:02','2024-12-27 12:06:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(991,'2024-12-27','14:00:02','2024-12-27 14:06:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(992,'2024-12-27','14:00:02','2024-12-27 14:06:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(993,'2024-12-27','16:00:02','2024-12-27 16:05:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(994,'2024-12-27','18:00:02','2024-12-27 18:05:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(995,'2024-12-27','20:00:02','2024-12-27 20:05:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(996,'2024-12-27','22:00:01','2024-12-27 22:05:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(997,'2024-12-28','00:00:02','2024-12-28 00:05:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(998,'2024-12-28','02:00:02','2024-12-28 02:05:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(999,'2024-12-28','04:00:02','2024-12-28 04:05:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1000,'2024-12-28','06:00:02','2024-12-28 06:05:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1001,'2024-12-28','08:00:02','2024-12-28 08:05:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1002,'2024-12-28','10:00:02','2024-12-28 10:05:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1003,'2024-12-28','12:00:02','2024-12-28 12:06:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1004,'2024-12-28','14:00:02','2024-12-28 14:05:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1005,'2024-12-28','14:00:02','2024-12-28 14:05:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1006,'2024-12-28','16:00:02','2024-12-28 16:05:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1007,'2024-12-28','18:00:01','2024-12-28 18:05:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1008,'2024-12-28','20:00:02','2024-12-28 20:05:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1009,'2024-12-28','22:00:01','2024-12-28 22:05:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1010,'2024-12-29','00:00:03','2024-12-29 00:05:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1011,'2024-12-29','02:00:01','2024-12-29 02:05:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1012,'2024-12-29','04:00:03','2024-12-29 04:05:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1013,'2024-12-29','06:00:02','2024-12-29 06:05:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1014,'2024-12-29','08:00:02','2024-12-29 08:06:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1015,'2024-12-29','10:00:02','2024-12-29 10:06:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1016,'2024-12-29','12:00:02','2024-12-29 12:05:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1017,'2024-12-29','14:00:02','2024-12-29 14:05:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1018,'2024-12-29','14:00:02','2024-12-29 14:05:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1019,'2024-12-29','16:00:02','2024-12-29 16:05:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1020,'2024-12-29','18:00:01','2024-12-29 18:05:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1021,'2024-12-29','20:00:02','2024-12-29 20:05:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1022,'2024-12-29','22:00:01','2024-12-29 22:05:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1023,'2024-12-30','00:00:01','2024-12-30 00:05:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1024,'2024-12-30','02:00:02','2024-12-30 02:05:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1025,'2024-12-30','04:00:02','2024-12-30 04:05:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1026,'2024-12-30','06:00:02','2024-12-30 06:05:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1027,'2024-12-30','08:00:02','2024-12-30 08:05:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1028,'2024-12-30','10:00:01','2024-12-30 10:05:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1029,'2024-12-30','12:00:02','2024-12-30 12:06:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1030,'2024-12-30','14:00:01','2024-12-30 14:06:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1031,'2024-12-30','14:00:01','2024-12-30 14:06:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1032,'2024-12-30','16:00:02','2024-12-30 16:05:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1033,'2024-12-30','18:00:02','2024-12-30 18:06:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1034,'2024-12-30','20:00:01','2024-12-30 20:06:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1035,'2024-12-30','22:00:01','2024-12-30 22:05:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1036,'2024-12-31','00:00:03','2024-12-31 00:05:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1037,'2024-12-31','02:00:01','2024-12-31 02:05:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1038,'2024-12-31','04:00:03','2024-12-31 04:05:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1039,'2024-12-31','06:00:02','2024-12-31 06:05:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1040,'2024-12-31','08:00:02','2024-12-31 08:05:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1041,'2024-12-31','10:00:01','2024-12-31 10:06:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1042,'2024-12-31','12:00:02','2024-12-31 12:06:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1043,'2024-12-31','14:00:02','2024-12-31 14:06:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1044,'2024-12-31','14:00:02','2024-12-31 14:06:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1045,'2024-12-31','16:00:02','2024-12-31 16:06:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1046,'2024-12-31','18:00:02','2024-12-31 18:05:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1047,'2024-12-31','20:00:01','2024-12-31 20:05:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1048,'2024-12-31','22:00:01','2024-12-31 22:05:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1049,'2025-01-01','00:00:02','2025-01-01 00:05:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1050,'2025-01-01','12:00:02','2025-01-01 12:05:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1051,'2025-01-01','14:00:02','2025-01-01 14:05:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1052,'2025-01-01','14:00:02','2025-01-01 14:05:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1053,'2025-01-01','16:00:02','2025-01-01 16:05:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1054,'2025-01-01','18:00:02','2025-01-01 18:06:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1055,'2025-01-01','20:00:02','2025-01-01 20:06:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1056,'2025-01-01','22:00:02','2025-01-01 22:05:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1057,'2025-01-02','00:00:01','2025-01-02 00:05:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1058,'2025-01-02','02:00:02','2025-01-02 02:05:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1059,'2025-01-02','04:00:02','2025-01-02 04:05:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1060,'2025-01-02','06:00:02','2025-01-02 06:05:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1061,'2025-01-02','08:00:02','2025-01-02 08:05:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1062,'2025-01-02','10:00:01','2025-01-02 10:06:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1063,'2025-01-02','12:00:02','2025-01-02 12:06:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1064,'2025-01-02','14:00:01','2025-01-02 14:06:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1065,'2025-01-02','14:00:01','2025-01-02 14:06:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1066,'2025-01-02','16:00:01','2025-01-02 16:06:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1067,'2025-01-02','18:00:01','2025-01-02 18:06:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1068,'2025-01-02','20:00:01','2025-01-02 20:06:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1069,'2025-01-02','22:00:02','2025-01-02 22:06:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1070,'2025-01-03','00:00:02','2025-01-03 00:05:59','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1071,'2025-01-03','02:00:02','2025-01-03 02:06:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1072,'2025-01-03','04:00:02','2025-01-03 04:06:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1073,'2025-01-03','06:00:02','2025-01-03 06:05:50','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1074,'2025-01-03','08:00:02','2025-01-03 08:06:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1075,'2025-01-03','10:00:01','2025-01-03 10:06:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1076,'2025-01-03','12:00:01','2025-01-03 12:06:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1077,'2025-01-03','14:00:01','2025-01-03 14:06:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1078,'2025-01-03','14:00:01','2025-01-03 14:06:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1079,'2025-01-03','16:00:02','2025-01-03 16:07:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1080,'2025-01-03','18:00:01','2025-01-03 18:06:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1081,'2025-01-03','20:00:01','2025-01-03 20:06:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1082,'2025-01-03','22:00:01','2025-01-03 22:06:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1083,'2025-01-04','00:00:02','2025-01-04 00:05:49','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1084,'2025-01-04','02:00:02','2025-01-04 02:05:43','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1085,'2025-01-04','04:00:03','2025-01-04 04:05:42','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1086,'2025-01-04','06:00:02','2025-01-04 06:05:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1087,'2025-01-04','08:00:03','2025-01-04 08:06:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1088,'2025-01-04','10:00:02','2025-01-04 10:06:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1089,'2025-01-04','12:00:01','2025-01-04 12:06:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1090,'2025-01-04','14:00:02','2025-01-04 14:06:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1091,'2025-01-04','14:00:02','2025-01-04 14:06:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1092,'2025-01-04','16:00:02','2025-01-04 16:06:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1093,'2025-01-04','18:00:02','2025-01-04 18:06:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1094,'2025-01-04','20:00:01','2025-01-04 20:06:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1095,'2025-01-04','22:00:02','2025-01-04 22:06:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1096,'2025-01-05','00:00:03','2025-01-05 00:05:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1097,'2025-01-05','02:00:01','2025-01-05 02:05:49','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1098,'2025-01-05','04:00:03','2025-01-05 04:05:57','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1099,'2025-01-05','06:00:02','2025-01-05 06:05:55','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1100,'2025-01-05','08:00:02','2025-01-05 08:06:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1101,'2025-01-05','10:00:02','2025-01-05 10:06:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1102,'2025-01-05','12:00:01','2025-01-05 12:06:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1103,'2025-01-05','14:00:02','2025-01-05 14:06:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1104,'2025-01-05','14:00:02','2025-01-05 14:06:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1105,'2025-01-05','16:00:01','2025-01-05 16:06:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1106,'2025-01-05','18:00:02','2025-01-05 18:06:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1107,'2025-01-05','20:00:01','2025-01-05 20:06:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1108,'2025-01-05','22:00:01','2025-01-05 22:06:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1109,'2025-01-06','00:00:02','2025-01-06 00:05:56','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1110,'2025-01-06','02:00:02','2025-01-06 02:05:48','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1111,'2025-01-06','04:00:02','2025-01-06 04:06:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1112,'2025-01-06','06:00:02','2025-01-06 06:06:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1113,'2025-01-06','08:00:02','2025-01-06 08:06:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1114,'2025-01-06','10:00:02','2025-01-06 10:06:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1115,'2025-01-06','12:00:01','2025-01-06 12:06:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1116,'2025-01-06','14:00:01','2025-01-06 14:06:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1117,'2025-01-06','14:00:01','2025-01-06 14:06:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1118,'2025-01-06','16:00:02','2025-01-06 16:06:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1119,'2025-01-06','18:00:02','2025-01-06 18:06:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1120,'2025-01-06','20:00:01','2025-01-06 20:06:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1121,'2025-01-06','22:00:01','2025-01-06 22:06:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1122,'2025-01-07','00:00:02','2025-01-07 00:06:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1123,'2025-01-07','02:00:01','2025-01-07 02:05:51','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1124,'2025-01-07','04:00:03','2025-01-07 04:06:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1125,'2025-01-07','06:00:01','2025-01-07 06:05:56','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1126,'2025-01-07','08:00:02','2025-01-07 08:06:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1127,'2025-01-07','10:00:01','2025-01-07 10:06:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1128,'2025-01-07','12:00:02','2025-01-07 12:08:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1129,'2025-01-07','14:00:02','2025-01-07 14:07:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1130,'2025-01-07','14:00:02','2025-01-07 14:07:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1131,'2025-01-07','16:00:01','2025-01-07 16:07:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1132,'2025-01-07','18:00:03','2025-01-07 18:08:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1133,'2025-01-07','20:00:02','2025-01-07 20:06:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1134,'2025-01-07','22:00:01','2025-01-07 22:07:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1135,'2025-01-08','00:00:02','2025-01-08 00:06:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1136,'2025-01-08','02:00:02','2025-01-08 02:05:56','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1137,'2025-01-08','04:00:03','2025-01-08 04:06:05','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1138,'2025-01-08','06:00:02','2025-01-08 06:06:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1139,'2025-01-08','08:00:02','2025-01-08 08:06:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1140,'2025-01-08','10:00:02','2025-01-08 10:06:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1141,'2025-01-08','12:00:02','2025-01-08 12:07:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1142,'2025-01-08','14:00:02','2025-01-08 14:07:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1143,'2025-01-08','14:00:02','2025-01-08 14:07:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1144,'2025-01-08','16:00:01','2025-01-08 16:07:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1145,'2025-01-08','18:00:01','2025-01-08 18:07:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1146,'2025-01-08','20:00:02','2025-01-08 20:06:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1147,'2025-01-08','22:00:01','2025-01-08 22:06:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1148,'2025-01-09','00:00:02','2025-01-09 00:06:03','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1149,'2025-01-09','02:00:02','2025-01-09 02:05:56','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1150,'2025-01-09','04:00:03','2025-01-09 04:06:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1151,'2025-01-09','06:00:02','2025-01-09 06:05:56','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1152,'2025-01-09','08:00:02','2025-01-09 08:06:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1153,'2025-01-09','10:00:01','2025-01-09 10:06:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1154,'2025-01-09','12:00:02','2025-01-09 12:07:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1155,'2025-01-09','14:00:02','2025-01-09 14:08:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1156,'2025-01-09','14:00:02','2025-01-09 14:08:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1157,'2025-01-09','16:00:02','2025-01-09 16:07:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1158,'2025-01-09','18:00:01','2025-01-09 18:07:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1159,'2025-01-09','20:00:02','2025-01-09 20:06:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1160,'2025-01-09','22:00:01','2025-01-09 22:06:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1161,'2025-01-10','00:00:02','2025-01-10 00:06:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1162,'2025-01-10','02:00:01','2025-01-10 02:05:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1163,'2025-01-10','04:00:03','2025-01-10 04:06:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1164,'2025-01-10','06:00:02','2025-01-10 06:06:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1165,'2025-01-10','08:00:01','2025-01-10 08:06:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1166,'2025-01-10','10:00:02','2025-01-10 10:06:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1167,'2025-01-10','12:00:02','2025-01-10 12:07:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1168,'2025-01-10','14:00:02','2025-01-10 14:05:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1169,'2025-01-10','14:00:02','2025-01-10 14:05:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1170,'2025-01-10','16:00:01','2025-01-10 16:06:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1171,'2025-01-10','18:00:02','2025-01-10 18:06:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1172,'2025-01-10','20:00:02','2025-01-10 20:06:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1173,'2025-01-10','22:00:02','2025-01-10 22:06:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1174,'2025-01-11','00:00:02','2025-01-11 00:05:56','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1175,'2025-01-11','02:00:02','2025-01-11 02:05:52','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1176,'2025-01-11','04:00:03','2025-01-11 04:06:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1177,'2025-01-11','06:00:02','2025-01-11 06:06:01','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1178,'2025-01-11','08:00:02','2025-01-11 08:06:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1179,'2025-01-11','10:00:02','2025-01-11 10:06:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1180,'2025-01-11','12:00:02','2025-01-11 12:07:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1181,'2025-01-11','14:00:02','2025-01-11 14:06:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1182,'2025-01-11','14:00:02','2025-01-11 14:06:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1183,'2025-01-11','16:00:02','2025-01-11 16:06:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1184,'2025-01-11','18:00:02','2025-01-11 18:07:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1185,'2025-01-11','20:00:02','2025-01-11 20:06:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1186,'2025-01-11','22:00:01','2025-01-11 22:07:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1187,'2025-01-12','00:00:01','2025-01-12 00:06:43','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1188,'2025-01-12','02:00:02','2025-01-12 02:05:59','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1189,'2025-01-12','04:00:03','2025-01-12 04:06:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1190,'2025-01-12','06:00:02','2025-01-12 06:06:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1191,'2025-01-12','08:00:02','2025-01-12 08:06:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1192,'2025-01-12','10:00:02','2025-01-12 10:06:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1193,'2025-01-12','12:00:02','2025-01-12 12:06:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1194,'2025-01-12','14:00:01','2025-01-12 14:06:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1195,'2025-01-12','14:00:01','2025-01-12 14:06:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1196,'2025-01-12','16:00:01','2025-01-12 16:06:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1197,'2025-01-12','18:00:02','2025-01-12 18:06:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1198,'2025-01-12','20:00:02','2025-01-12 20:06:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1199,'2025-01-12','22:00:01','2025-01-12 22:06:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1200,'2025-01-13','00:00:02','2025-01-13 00:06:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1201,'2025-01-13','02:00:02','2025-01-13 02:06:05','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1202,'2025-01-13','04:00:03','2025-01-13 04:06:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1203,'2025-01-13','06:00:02','2025-01-13 06:06:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1204,'2025-01-13','08:00:02','2025-01-13 08:06:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1205,'2025-01-13','10:00:02','2025-01-13 10:06:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1206,'2025-01-13','12:00:02','2025-01-13 12:07:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1207,'2025-01-13','14:00:01','2025-01-13 14:06:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1208,'2025-01-13','14:00:01','2025-01-13 14:06:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1209,'2025-01-13','16:00:01','2025-01-13 16:06:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1210,'2025-01-13','18:00:02','2025-01-13 18:07:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1211,'2025-01-13','20:00:01','2025-01-13 20:06:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1212,'2025-01-13','22:00:01','2025-01-13 22:06:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1213,'2025-01-14','00:00:02','2025-01-14 00:06:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1214,'2025-01-14','02:00:01','2025-01-14 02:05:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1215,'2025-01-14','04:00:03','2025-01-14 04:06:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1216,'2025-01-14','06:00:02','2025-01-14 06:06:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1217,'2025-01-14','08:00:02','2025-01-14 08:06:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1218,'2025-01-14','10:00:01','2025-01-14 10:06:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1219,'2025-01-14','12:00:01','2025-01-14 12:06:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1220,'2025-01-14','14:00:02','2025-01-14 14:06:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1221,'2025-01-14','14:00:02','2025-01-14 14:06:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1222,'2025-01-14','16:00:02','2025-01-14 16:06:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1223,'2025-01-14','18:00:02','2025-01-14 18:06:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1224,'2025-01-14','20:00:02','2025-01-14 20:06:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1225,'2025-01-14','22:00:01','2025-01-14 22:06:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1226,'2025-01-15','00:00:02','2025-01-15 00:05:59','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1227,'2025-01-15','02:00:01','2025-01-15 02:05:55','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1228,'2025-01-15','04:00:03','2025-01-15 04:06:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1229,'2025-01-15','06:00:01','2025-01-15 06:06:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1230,'2025-01-15','08:00:02','2025-01-15 08:06:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1231,'2025-01-15','10:00:02','2025-01-15 10:06:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1232,'2025-01-15','12:00:01','2025-01-15 12:08:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1233,'2025-01-15','14:00:02','2025-01-15 14:06:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1234,'2025-01-15','14:00:02','2025-01-15 14:06:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1235,'2025-01-15','16:00:02','2025-01-15 16:07:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1236,'2025-01-15','18:00:01','2025-01-15 18:06:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1237,'2025-01-15','20:00:01','2025-01-15 20:07:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1238,'2025-01-15','22:00:02','2025-01-15 22:06:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1239,'2025-01-16','00:00:02','2025-01-16 00:06:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1240,'2025-01-16','02:00:02','2025-01-16 02:06:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1241,'2025-01-16','04:00:04','2025-01-16 04:06:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1242,'2025-01-16','06:00:02','2025-01-16 06:06:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1243,'2025-01-16','08:00:02','2025-01-16 08:06:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1244,'2025-01-16','10:00:02','2025-01-16 10:06:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1245,'2025-01-16','12:00:02','2025-01-16 12:07:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1246,'2025-01-16','14:00:01','2025-01-16 14:07:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1247,'2025-01-16','14:00:01','2025-01-16 14:07:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1248,'2025-01-16','16:00:02','2025-01-16 16:07:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1249,'2025-01-16','18:00:02','2025-01-16 18:07:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1250,'2025-01-16','20:00:01','2025-01-16 20:06:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1251,'2025-01-16','22:00:02','2025-01-16 22:06:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1252,'2025-01-17','00:00:02','2025-01-17 00:06:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1253,'2025-01-17','02:00:02','2025-01-17 02:06:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1254,'2025-01-17','04:00:03','2025-01-17 04:06:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1255,'2025-01-17','06:00:02','2025-01-17 06:06:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1256,'2025-01-17','08:00:02','2025-01-17 08:06:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1257,'2025-01-17','10:00:01','2025-01-17 10:06:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1258,'2025-01-17','12:00:02','2025-01-17 12:09:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1259,'2025-01-17','14:00:03','2025-01-17 14:08:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1260,'2025-01-17','14:00:03','2025-01-17 14:08:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1261,'2025-01-17','16:00:02','2025-01-17 16:07:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1262,'2025-01-17','18:00:02','2025-01-17 18:07:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1263,'2025-01-17','20:00:02','2025-01-17 20:06:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1264,'2025-01-17','22:00:01','2025-01-17 22:06:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1265,'2025-01-18','00:00:03','2025-01-18 00:06:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1266,'2025-01-18','02:00:02','2025-01-18 02:06:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1267,'2025-01-18','04:00:03','2025-01-18 04:06:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1268,'2025-01-18','06:00:01','2025-01-18 06:06:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1269,'2025-01-18','08:00:02','2025-01-18 08:07:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1270,'2025-01-18','10:00:02','2025-01-18 10:06:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1271,'2025-01-18','12:00:03','2025-01-18 12:07:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1272,'2025-01-18','14:00:02','2025-01-18 14:07:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1273,'2025-01-18','14:00:02','2025-01-18 14:07:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1274,'2025-01-18','16:00:02','2025-01-18 16:06:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1275,'2025-01-18','18:00:01','2025-01-18 18:06:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1276,'2025-01-18','20:00:02','2025-01-18 20:06:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1277,'2025-01-18','22:00:01','2025-01-18 22:06:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1278,'2025-01-19','00:00:03','2025-01-19 00:06:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1279,'2025-01-19','02:00:01','2025-01-19 02:05:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1280,'2025-01-19','04:00:03','2025-01-19 04:06:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1281,'2025-01-19','06:00:02','2025-01-19 06:06:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1282,'2025-01-19','08:00:02','2025-01-19 08:06:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1283,'2025-01-19','10:00:02','2025-01-19 10:06:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1284,'2025-01-19','12:00:02','2025-01-19 12:06:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1285,'2025-01-19','14:00:01','2025-01-19 14:06:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1286,'2025-01-19','14:00:01','2025-01-19 14:06:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1287,'2025-01-19','16:00:02','2025-01-19 16:06:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1288,'2025-01-19','18:00:02','2025-01-19 18:06:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1289,'2025-01-19','20:00:01','2025-01-19 20:06:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1290,'2025-01-19','22:00:01','2025-01-19 22:06:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1291,'2025-01-20','00:00:01','2025-01-20 00:05:56','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1292,'2025-01-20','02:00:02','2025-01-20 02:05:54','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1293,'2025-01-20','04:00:03','2025-01-20 04:06:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1294,'2025-01-20','06:00:02','2025-01-20 06:05:55','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1295,'2025-01-20','08:00:01','2025-01-20 08:06:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1296,'2025-01-20','10:00:02','2025-01-20 10:06:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1297,'2025-01-20','12:00:02','2025-01-20 12:07:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1298,'2025-01-20','14:00:01','2025-01-20 14:07:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1299,'2025-01-20','14:00:01','2025-01-20 14:07:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1300,'2025-01-20','16:00:02','2025-01-20 16:06:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1301,'2025-01-20','18:00:02','2025-01-20 18:07:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1302,'2025-01-20','20:00:02','2025-01-20 20:06:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1303,'2025-01-20','22:00:01','2025-01-20 22:06:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1304,'2025-01-21','00:00:02','2025-01-21 00:06:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1305,'2025-01-21','02:00:02','2025-01-21 02:05:57','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1306,'2025-01-21','04:00:02','2025-01-21 04:06:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1307,'2025-01-21','06:00:02','2025-01-21 06:06:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1308,'2025-01-21','08:00:02','2025-01-21 08:06:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1309,'2025-01-21','10:00:02','2025-01-21 10:06:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1310,'2025-01-21','12:00:01','2025-01-21 12:07:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1311,'2025-01-21','14:00:03','2025-01-21 14:07:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1312,'2025-01-21','14:00:03','2025-01-21 14:07:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1313,'2025-01-21','16:00:02','2025-01-21 16:07:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1314,'2025-01-21','18:00:02','2025-01-21 18:07:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1315,'2025-01-21','20:00:01','2025-01-21 20:06:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1316,'2025-01-21','22:00:01','2025-01-21 22:06:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1317,'2025-01-22','00:00:02','2025-01-22 00:06:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1318,'2025-01-22','02:00:01','2025-01-22 02:06:01','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1319,'2025-01-22','04:00:03','2025-01-22 04:06:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1320,'2025-01-22','06:00:02','2025-01-22 06:06:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1321,'2025-01-22','08:00:02','2025-01-22 08:06:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1322,'2025-01-22','10:00:02','2025-01-22 10:06:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1323,'2025-01-22','12:00:01','2025-01-22 12:07:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1324,'2025-01-22','14:00:02','2025-01-22 14:07:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1325,'2025-01-22','14:00:02','2025-01-22 14:07:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1326,'2025-01-22','16:00:03','2025-01-22 16:07:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1327,'2025-01-22','18:00:02','2025-01-22 18:07:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1328,'2025-01-22','20:00:02','2025-01-22 20:06:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1329,'2025-01-22','22:00:02','2025-01-22 22:07:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1330,'2025-01-23','00:00:02','2025-01-23 00:06:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1331,'2025-01-23','02:00:01','2025-01-23 02:06:01','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1332,'2025-01-23','04:00:03','2025-01-23 04:06:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1333,'2025-01-23','06:00:02','2025-01-23 06:06:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1334,'2025-01-23','08:00:02','2025-01-23 08:06:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1335,'2025-01-23','10:00:01','2025-01-23 10:06:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1336,'2025-01-23','12:00:02','2025-01-23 12:07:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1337,'2025-01-23','14:00:02','2025-01-23 14:06:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1338,'2025-01-23','14:00:02','2025-01-23 14:06:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1339,'2025-01-23','16:00:02','2025-01-23 16:07:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1340,'2025-01-23','18:00:03','2025-01-23 18:07:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1341,'2025-01-23','20:00:02','2025-01-23 20:06:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1342,'2025-01-23','22:00:01','2025-01-23 22:06:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1343,'2025-01-24','00:00:02','2025-01-24 00:06:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1344,'2025-01-24','02:00:02','2025-01-24 02:05:59','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1345,'2025-01-24','04:00:03','2025-01-24 04:06:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1346,'2025-01-24','06:00:02','2025-01-24 06:06:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1347,'2025-01-24','08:00:03','2025-01-24 08:06:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1348,'2025-01-24','10:00:02','2025-01-24 10:06:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1349,'2025-01-24','12:00:02','2025-01-24 12:07:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1350,'2025-01-24','14:00:02','2025-01-24 14:07:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1351,'2025-01-24','14:00:02','2025-01-24 14:07:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1352,'2025-01-24','16:00:02','2025-01-24 16:07:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1353,'2025-01-24','18:00:02','2025-01-24 18:08:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1354,'2025-01-24','20:00:02','2025-01-24 20:06:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1355,'2025-01-24','22:00:01','2025-01-24 22:06:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1356,'2025-01-25','00:00:01','2025-01-25 00:06:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1357,'2025-01-25','02:00:02','2025-01-25 02:06:05','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1358,'2025-01-25','04:00:02','2025-01-25 04:06:32','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1359,'2025-01-25','06:00:02','2025-01-25 06:06:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1360,'2025-01-25','08:00:02','2025-01-25 08:06:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1361,'2025-01-25','10:00:01','2025-01-25 10:06:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1362,'2025-01-25','12:00:02','2025-01-25 12:07:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1363,'2025-01-25','14:00:02','2025-01-25 14:07:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1364,'2025-01-25','14:00:02','2025-01-25 14:07:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1365,'2025-01-25','16:00:02','2025-01-25 16:07:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1366,'2025-01-25','18:00:03','2025-01-25 18:07:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1367,'2025-01-25','20:00:03','2025-01-25 20:06:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1368,'2025-01-25','22:00:02','2025-01-25 22:06:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1369,'2025-01-26','00:00:01','2025-01-26 00:06:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1370,'2025-01-26','02:00:02','2025-01-26 02:06:03','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1371,'2025-01-26','04:00:03','2025-01-26 04:06:43','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1372,'2025-01-26','06:00:02','2025-01-26 06:06:38','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1373,'2025-01-26','08:00:03','2025-01-26 08:07:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1374,'2025-01-26','10:00:01','2025-01-26 10:06:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1375,'2025-01-26','12:00:02','2025-01-26 12:06:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1376,'2025-01-26','14:00:02','2025-01-26 14:06:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1377,'2025-01-26','14:00:02','2025-01-26 14:06:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1378,'2025-01-26','16:00:02','2025-01-26 16:06:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1379,'2025-01-26','18:00:03','2025-01-26 18:06:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1380,'2025-01-26','20:00:03','2025-01-26 20:07:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1381,'2025-01-26','22:00:02','2025-01-26 22:06:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1382,'2025-01-27','00:00:02','2025-01-27 00:06:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1383,'2025-01-27','02:00:02','2025-01-27 02:06:01','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1384,'2025-01-27','04:00:03','2025-01-27 04:06:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1385,'2025-01-27','06:00:02','2025-01-27 06:06:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1386,'2025-01-27','08:00:02','2025-01-27 08:06:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1387,'2025-01-27','10:00:02','2025-01-27 10:07:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1388,'2025-01-27','12:00:04','2025-01-27 12:08:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1389,'2025-01-27','14:00:01','2025-01-27 14:09:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1390,'2025-01-27','14:00:01','2025-01-27 14:09:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1391,'2025-01-27','16:00:02','2025-01-27 16:07:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1392,'2025-01-27','18:00:02','2025-01-27 18:07:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1393,'2025-01-27','20:00:02','2025-01-27 20:07:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1394,'2025-01-27','22:00:01','2025-01-27 22:06:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1395,'2025-01-28','00:00:04','2025-01-28 00:06:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1396,'2025-01-28','02:00:02','2025-01-28 02:06:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1397,'2025-01-28','04:00:03','2025-01-28 04:06:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1398,'2025-01-28','06:00:02','2025-01-28 06:06:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1399,'2025-01-28','08:00:03','2025-01-28 08:06:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1400,'2025-01-28','10:00:03','2025-01-28 10:07:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1401,'2025-01-28','12:00:01','2025-01-28 12:08:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1402,'2025-01-28','14:00:01','2025-01-28 14:07:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1403,'2025-01-28','14:00:01','2025-01-28 14:07:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1404,'2025-01-28','16:00:01','2025-01-28 16:07:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1405,'2025-01-28','18:00:03','2025-01-28 18:07:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1406,'2025-01-28','20:00:02','2025-01-28 20:06:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1407,'2025-01-28','22:00:02','2025-01-28 22:06:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1408,'2025-01-29','00:00:02','2025-01-29 00:06:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1409,'2025-01-29','02:00:02','2025-01-29 02:06:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1410,'2025-01-29','04:00:03','2025-01-29 04:06:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1411,'2025-01-29','06:00:03','2025-01-29 06:06:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1412,'2025-01-29','08:00:02','2025-01-29 08:06:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1413,'2025-01-29','10:00:02','2025-01-29 10:06:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1414,'2025-01-29','12:00:02','2025-01-29 12:07:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1415,'2025-01-29','14:00:02','2025-01-29 14:07:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1416,'2025-01-29','14:00:02','2025-01-29 14:07:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1417,'2025-01-29','16:00:01','2025-01-29 16:07:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1418,'2025-01-29','18:00:02','2025-01-29 18:07:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1419,'2025-01-29','20:00:01','2025-01-29 20:06:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1420,'2025-01-29','22:00:02','2025-01-29 22:06:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1421,'2025-01-30','00:00:02','2025-01-30 00:06:45','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1422,'2025-01-30','02:00:01','2025-01-30 02:06:12','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1423,'2025-01-30','04:00:03','2025-01-30 04:06:31','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1424,'2025-01-30','06:00:02','2025-01-30 06:06:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1425,'2025-01-30','08:00:02','2025-01-30 08:06:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1426,'2025-01-30','10:00:02','2025-01-30 10:07:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1427,'2025-01-30','12:00:02','2025-01-30 00:00:00','thims4_mdbv3_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims4_mdbv3 > /home/thims4/public_html/thims/pages/auto_backup/thims4_mdbv3_A.txt1email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1428,'2025-01-30','14:00:02','2025-01-30 14:07:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1429,'2025-01-30','14:00:02','2025-01-30 14:07:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1430,'2025-01-30','16:00:02','2025-01-30 16:07:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1431,'2025-01-30','18:00:02','2025-01-30 18:07:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1432,'2025-01-30','20:00:01','2025-01-30 20:07:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1433,'2025-01-30','22:00:02','2025-01-30 22:07:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1434,'2025-01-31','00:00:02','2025-01-31 00:06:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1435,'2025-01-31','02:00:01','2025-01-31 02:06:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1436,'2025-01-31','04:00:03','2025-01-31 04:06:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1437,'2025-01-31','06:00:02','2025-01-31 06:06:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1438,'2025-01-31','08:00:02','2025-01-31 08:06:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1439,'2025-01-31','10:00:02','2025-01-31 10:07:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1440,'2025-01-31','12:00:01','2025-01-31 12:07:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1441,'2025-01-31','14:00:02','2025-01-31 14:07:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1442,'2025-01-31','14:00:02','2025-01-31 14:07:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1443,'2025-01-31','16:00:01','2025-01-31 16:07:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1444,'2025-01-31','18:00:03','2025-01-31 18:07:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1445,'2025-01-31','20:00:04','2025-01-31 20:08:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1446,'2025-01-31','22:00:01','2025-01-31 22:06:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1447,'2025-02-01','00:00:02','2025-02-01 00:06:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1448,'2025-02-01','02:00:02','2025-02-01 02:06:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1449,'2025-02-01','04:00:04','2025-02-01 04:06:38','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1450,'2025-02-01','06:00:02','2025-02-01 06:06:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1451,'2025-02-01','08:00:02','2025-02-01 08:07:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1452,'2025-02-01','10:00:02','2025-02-01 10:07:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1453,'2025-02-01','12:00:02','2025-02-01 12:07:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1454,'2025-02-01','14:00:03','2025-02-01 14:07:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1455,'2025-02-01','14:00:03','2025-02-01 14:07:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1456,'2025-02-01','16:00:02','2025-02-01 16:07:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1457,'2025-02-01','18:00:02','2025-02-01 18:06:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1458,'2025-02-01','20:00:02','2025-02-01 20:07:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1459,'2025-02-01','22:00:01','2025-02-01 22:06:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1460,'2025-02-02','00:00:03','2025-02-02 00:06:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1461,'2025-02-02','02:00:01','2025-02-02 02:06:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1462,'2025-02-02','04:00:03','2025-02-02 04:06:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1463,'2025-02-02','06:00:02','2025-02-02 06:06:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1464,'2025-02-02','08:00:03','2025-02-02 08:06:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1465,'2025-02-02','10:00:01','2025-02-02 10:06:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1466,'2025-02-02','12:00:01','2025-02-02 12:06:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1467,'2025-02-02','14:00:02','2025-02-02 14:06:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1468,'2025-02-02','14:00:02','2025-02-02 14:06:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1469,'2025-02-02','16:00:02','2025-02-02 16:06:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1470,'2025-02-02','18:00:02','2025-02-02 18:06:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1471,'2025-02-02','20:00:02','2025-02-02 20:06:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1472,'2025-02-02','22:00:02','2025-02-02 22:06:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1473,'2025-02-03','00:00:03','2025-02-03 00:06:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1474,'2025-02-03','02:00:01','2025-02-03 02:06:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1475,'2025-02-03','04:00:03','2025-02-03 04:06:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1476,'2025-02-03','06:00:02','2025-02-03 06:06:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1477,'2025-02-03','08:00:02','2025-02-03 08:06:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1478,'2025-02-03','10:00:02','2025-02-03 10:07:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1479,'2025-02-03','12:00:01','2025-02-03 12:07:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1480,'2025-02-03','14:00:03','2025-02-03 14:07:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1481,'2025-02-03','14:00:03','2025-02-03 14:07:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1482,'2025-02-03','16:00:02','2025-02-03 16:07:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1483,'2025-02-03','18:00:02','2025-02-03 18:08:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1484,'2025-02-03','20:00:02','2025-02-03 20:07:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1485,'2025-02-03','22:00:02','2025-02-03 22:06:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1486,'2025-02-04','00:00:02','2025-02-04 00:06:12','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1487,'2025-02-04','02:00:02','2025-02-04 02:06:12','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1488,'2025-02-04','04:00:04','2025-02-04 04:06:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1489,'2025-02-04','06:00:02','2025-02-04 06:06:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1490,'2025-02-04','08:00:03','2025-02-04 08:06:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1491,'2025-02-04','10:00:02','2025-02-04 10:07:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1492,'2025-02-04','12:00:02','2025-02-04 12:08:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1493,'2025-02-04','14:00:02','2025-02-04 14:07:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1494,'2025-02-04','14:00:02','2025-02-04 14:07:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1495,'2025-02-04','16:00:02','2025-02-04 16:07:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1496,'2025-02-04','18:00:02','2025-02-04 18:07:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1497,'2025-02-04','20:00:02','2025-02-04 20:07:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1498,'2025-02-04','22:00:01','2025-02-04 22:07:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1499,'2025-02-05','00:00:02','2025-02-05 00:06:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1500,'2025-02-05','02:00:02','2025-02-05 02:06:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1501,'2025-02-05','04:00:03','2025-02-05 04:06:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1502,'2025-02-05','06:00:02','2025-02-05 06:06:12','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1503,'2025-02-05','08:00:03','2025-02-05 08:06:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1504,'2025-02-05','10:00:02','2025-02-05 10:07:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1505,'2025-02-05','12:00:03','2025-02-05 12:07:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1506,'2025-02-05','14:00:02','2025-02-05 14:07:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1507,'2025-02-05','14:00:02','2025-02-05 14:07:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1508,'2025-02-05','16:00:03','2025-02-05 16:07:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1509,'2025-02-05','18:00:02','2025-02-05 18:07:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1510,'2025-02-05','20:00:03','2025-02-05 20:07:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1511,'2025-02-05','22:00:01','2025-02-05 22:07:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1512,'2025-02-06','00:00:03','2025-02-06 00:06:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1513,'2025-02-06','02:00:02','2025-02-06 02:06:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1514,'2025-02-06','04:00:03','2025-02-06 04:06:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1515,'2025-02-06','06:00:02','2025-02-06 06:06:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1516,'2025-02-06','08:00:02','2025-02-06 08:06:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1517,'2025-02-06','10:00:02','2025-02-06 10:07:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1518,'2025-02-06','12:00:02','2025-02-06 12:07:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1519,'2025-02-06','14:00:02','2025-02-06 14:06:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1520,'2025-02-06','14:00:02','2025-02-06 14:06:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1521,'2025-02-06','16:00:02','2025-02-06 16:07:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1522,'2025-02-06','18:00:01','2025-02-06 18:07:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1523,'2025-02-06','20:00:02','2025-02-06 20:07:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1524,'2025-02-06','22:00:02','2025-02-06 22:06:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1525,'2025-02-07','00:00:03','2025-02-07 00:06:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1526,'2025-02-07','02:00:02','2025-02-07 02:06:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1527,'2025-02-07','04:00:03','2025-02-07 04:06:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1528,'2025-02-07','06:00:02','2025-02-07 06:06:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1529,'2025-02-07','08:00:02','2025-02-07 08:06:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1530,'2025-02-07','10:00:02','2025-02-07 10:06:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1531,'2025-02-07','12:00:02','2025-02-07 12:07:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1532,'2025-02-07','14:00:01','2025-02-07 14:07:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1533,'2025-02-07','14:00:01','2025-02-07 14:07:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1534,'2025-02-07','16:00:02','2025-02-07 16:07:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1535,'2025-02-07','18:00:04','2025-02-07 18:09:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1536,'2025-02-07','20:00:02','2025-02-07 20:07:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1537,'2025-02-07','22:00:01','2025-02-07 22:06:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1538,'2025-02-08','00:00:02','2025-02-08 00:06:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1539,'2025-02-08','02:00:02','2025-02-08 02:06:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1540,'2025-02-08','04:00:03','2025-02-08 04:06:50','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1541,'2025-02-08','06:00:02','2025-02-08 06:06:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1542,'2025-02-08','08:00:03','2025-02-08 08:06:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1543,'2025-02-08','10:00:02','2025-02-08 10:07:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1544,'2025-02-08','12:00:03','2025-02-08 12:08:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1545,'2025-02-08','14:00:02','2025-02-08 14:07:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1546,'2025-02-08','14:00:02','2025-02-08 14:07:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1547,'2025-02-08','16:00:02','2025-02-08 16:07:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1548,'2025-02-08','18:00:02','2025-02-08 18:07:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1549,'2025-02-08','20:00:03','2025-02-08 20:07:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1550,'2025-02-08','22:00:02','2025-02-08 22:06:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1551,'2025-02-09','02:00:02','2025-02-09 02:06:47','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1552,'2025-02-09','04:00:02','2025-02-09 04:06:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1553,'2025-02-09','06:00:02','2025-02-09 06:06:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1554,'2025-02-09','08:00:02','2025-02-09 08:06:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1555,'2025-02-09','10:00:02','2025-02-09 10:06:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1556,'2025-02-09','12:00:02','2025-02-09 12:06:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1557,'2025-02-09','14:00:01','2025-02-09 14:06:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1558,'2025-02-09','14:00:01','2025-02-09 14:06:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1559,'2025-02-09','16:00:02','2025-02-09 16:06:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1560,'2025-02-09','18:00:02','2025-02-09 18:06:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1561,'2025-02-09','20:00:02','2025-02-09 20:06:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1562,'2025-02-09','22:00:01','2025-02-09 22:06:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1563,'2025-02-10','00:00:02','2025-02-10 00:06:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1564,'2025-02-10','02:00:02','2025-02-10 02:06:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1565,'2025-02-10','04:00:02','2025-02-10 04:06:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1566,'2025-02-10','06:00:02','2025-02-10 06:06:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1567,'2025-02-10','08:00:02','2025-02-10 08:06:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1568,'2025-02-10','10:00:01','2025-02-10 10:06:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1569,'2025-02-10','12:00:01','2025-02-10 12:07:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1570,'2025-02-10','14:00:01','2025-02-10 14:06:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1571,'2025-02-10','14:00:01','2025-02-10 14:06:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1572,'2025-02-10','16:00:02','2025-02-10 16:06:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1573,'2025-02-10','18:00:02','2025-02-10 18:06:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1574,'2025-02-10','20:00:02','2025-02-10 20:06:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1575,'2025-02-10','22:00:01','2025-02-10 22:06:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1576,'2025-02-11','00:00:02','2025-02-11 00:06:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1577,'2025-02-11','02:00:01','2025-02-11 02:06:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1578,'2025-02-11','04:00:02','2025-02-11 04:06:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1579,'2025-02-11','06:00:02','2025-02-11 06:05:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1580,'2025-02-11','08:00:02','2025-02-11 08:06:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1581,'2025-02-11','10:00:02','2025-02-11 10:06:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1582,'2025-02-11','12:00:01','2025-02-11 12:07:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1583,'2025-02-11','14:00:02','2025-02-11 14:07:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1584,'2025-02-11','14:00:02','2025-02-11 14:07:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1585,'2025-02-11','16:00:02','2025-02-11 16:07:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1586,'2025-02-11','18:00:02','2025-02-11 18:06:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1587,'2025-02-11','20:00:02','2025-02-11 20:06:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1588,'2025-02-11','22:00:01','2025-02-11 22:06:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1589,'2025-02-12','00:00:03','2025-02-12 00:06:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1590,'2025-02-12','02:00:01','2025-02-12 02:05:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1591,'2025-02-12','04:00:03','2025-02-12 04:06:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1592,'2025-02-12','06:00:02','2025-02-12 06:06:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1593,'2025-02-12','08:00:02','2025-02-12 08:06:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1594,'2025-02-12','10:00:02','2025-02-12 10:06:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1595,'2025-02-12','12:00:02','2025-02-12 12:08:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1596,'2025-02-12','14:00:01','2025-02-12 14:07:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1597,'2025-02-12','14:00:01','2025-02-12 14:07:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1598,'2025-02-12','16:00:02','2025-02-12 16:07:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1599,'2025-02-12','18:00:01','2025-02-12 18:07:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1600,'2025-02-12','20:00:02','2025-02-12 20:07:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1601,'2025-02-12','22:00:01','2025-02-12 22:06:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1602,'2025-02-13','00:00:03','2025-02-13 00:06:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1603,'2025-02-13','02:00:02','2025-02-13 02:06:05','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1604,'2025-02-13','04:00:03','2025-02-13 04:06:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1605,'2025-02-13','06:00:02','2025-02-13 06:06:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1606,'2025-02-13','08:00:02','2025-02-13 08:06:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1607,'2025-02-13','10:00:02','2025-02-13 10:06:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1608,'2025-02-13','12:00:02','2025-02-13 12:07:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1609,'2025-02-13','14:00:01','2025-02-13 14:07:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1610,'2025-02-13','14:00:01','2025-02-13 14:07:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1611,'2025-02-13','16:00:02','2025-02-13 16:06:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1612,'2025-02-13','18:00:02','2025-02-13 18:06:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1613,'2025-02-13','20:00:02','2025-02-13 20:06:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1614,'2025-02-13','22:00:01','2025-02-13 22:06:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1615,'2025-02-14','00:00:02','2025-02-14 00:06:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1616,'2025-02-14','02:00:02','2025-02-14 02:06:03','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1617,'2025-02-14','04:00:03','2025-02-14 04:06:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1618,'2025-02-14','06:00:02','2025-02-14 06:06:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1619,'2025-02-14','08:00:02','2025-02-14 08:06:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1620,'2025-02-14','10:00:02','2025-02-14 10:07:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1621,'2025-02-14','12:00:03','2025-02-14 12:07:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1622,'2025-02-14','14:00:01','2025-02-14 14:07:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1623,'2025-02-14','14:00:01','2025-02-14 14:07:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1624,'2025-02-14','16:00:02','2025-02-14 16:07:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1625,'2025-02-14','18:00:02','2025-02-14 18:06:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1626,'2025-02-14','20:00:02','2025-02-14 20:07:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1627,'2025-02-14','22:00:01','2025-02-14 22:06:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1628,'2025-02-15','00:00:01','2025-02-15 00:06:01','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1629,'2025-02-15','02:00:02','2025-02-15 02:06:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1630,'2025-02-15','04:00:03','2025-02-15 04:06:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1631,'2025-02-15','06:00:02','2025-02-15 06:06:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1632,'2025-02-15','08:00:02','2025-02-15 08:06:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1633,'2025-02-15','10:00:01','2025-02-15 10:06:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1634,'2025-02-15','12:00:02','2025-02-15 12:08:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1635,'2025-02-15','14:00:02','2025-02-15 14:07:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1636,'2025-02-15','14:00:02','2025-02-15 14:07:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1637,'2025-02-15','16:00:02','2025-02-15 16:06:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1638,'2025-02-15','18:00:02','2025-02-15 18:06:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1639,'2025-02-15','20:00:02','2025-02-15 20:06:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1640,'2025-02-15','22:00:01','2025-02-15 22:06:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1641,'2025-02-16','00:00:02','2025-02-16 00:06:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1642,'2025-02-16','02:00:02','2025-02-16 02:06:03','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1643,'2025-02-16','04:00:02','2025-02-16 04:06:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1644,'2025-02-16','06:00:02','2025-02-16 06:06:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1645,'2025-02-16','08:00:01','2025-02-16 08:06:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1646,'2025-02-16','10:00:02','2025-02-16 10:06:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1647,'2025-02-16','12:00:02','2025-02-16 12:06:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1648,'2025-02-16','14:00:02','2025-02-16 14:06:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1649,'2025-02-16','14:00:02','2025-02-16 14:06:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1650,'2025-02-16','16:00:02','2025-02-16 16:06:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1651,'2025-02-16','18:00:01','2025-02-16 18:06:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1652,'2025-02-16','20:00:02','2025-02-16 20:06:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1653,'2025-02-16','22:00:01','2025-02-16 22:06:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1654,'2025-02-17','00:00:02','2025-02-17 00:06:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1655,'2025-02-17','02:00:02','2025-02-17 02:06:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1656,'2025-02-17','04:00:03','2025-02-17 04:06:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1657,'2025-02-17','06:00:02','2025-02-17 06:06:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1658,'2025-02-17','08:00:01','2025-02-17 08:06:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1659,'2025-02-17','10:00:01','2025-02-17 10:06:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1660,'2025-02-17','12:00:02','2025-02-17 12:07:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1661,'2025-02-17','14:00:02','2025-02-17 14:07:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1662,'2025-02-17','14:00:02','2025-02-17 14:07:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1663,'2025-02-17','16:00:03','2025-02-17 16:07:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1664,'2025-02-17','18:00:02','2025-02-17 18:07:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1665,'2025-02-17','20:00:01','2025-02-17 20:07:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1666,'2025-02-17','22:00:02','2025-02-17 22:06:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1667,'2025-02-18','00:00:02','2025-02-18 00:06:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1668,'2025-02-18','02:00:02','2025-02-18 02:06:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1669,'2025-02-18','04:00:03','2025-02-18 04:06:33','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1670,'2025-02-18','06:00:02','2025-02-18 06:06:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1671,'2025-02-18','08:00:02','2025-02-18 08:06:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1672,'2025-02-18','10:00:02','2025-02-18 10:07:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1673,'2025-02-18','12:00:02','2025-02-18 12:07:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1674,'2025-02-18','14:00:02','2025-02-18 14:07:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1675,'2025-02-18','14:00:02','2025-02-18 14:07:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1676,'2025-02-18','16:00:02','2025-02-18 16:07:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1677,'2025-02-18','18:00:02','2025-02-18 18:07:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1678,'2025-02-18','20:00:01','2025-02-18 20:07:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1679,'2025-02-18','22:00:02','2025-02-18 22:06:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1680,'2025-02-19','00:00:03','2025-02-19 00:06:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1681,'2025-02-19','02:00:02','2025-02-19 02:06:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1682,'2025-02-19','04:00:03','2025-02-19 04:06:33','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1683,'2025-02-19','06:00:02','2025-02-19 06:06:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1684,'2025-02-19','08:00:02','2025-02-19 08:06:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1685,'2025-02-19','10:00:02','2025-02-19 10:07:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1686,'2025-02-19','12:00:03','2025-02-19 12:07:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1687,'2025-02-19','14:00:02','2025-02-19 14:07:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1688,'2025-02-19','14:00:02','2025-02-19 14:07:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1689,'2025-02-19','16:00:02','2025-02-19 16:07:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1690,'2025-02-19','18:00:02','2025-02-19 18:07:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1691,'2025-02-19','20:00:02','2025-02-19 20:07:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1692,'2025-02-19','22:00:02','2025-02-19 22:06:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1693,'2025-02-20','00:00:02','2025-02-20 00:06:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1694,'2025-02-20','02:00:02','2025-02-20 02:06:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1695,'2025-02-20','04:00:04','2025-02-20 04:06:37','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1696,'2025-02-20','06:00:02','2025-02-20 06:06:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1697,'2025-02-20','08:00:02','2025-02-20 08:06:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1698,'2025-02-20','10:00:02','2025-02-20 10:07:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1699,'2025-02-20','12:00:02','2025-02-20 12:07:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1700,'2025-02-20','14:00:02','2025-02-20 14:07:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1701,'2025-02-20','14:00:02','2025-02-20 14:07:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1702,'2025-02-20','16:00:02','2025-02-20 16:08:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1703,'2025-02-20','18:00:02','2025-02-20 18:07:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1704,'2025-02-20','20:00:02','2025-02-20 20:07:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1705,'2025-02-20','22:00:01','2025-02-20 22:06:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1706,'2025-02-21','00:00:01','2025-02-21 00:07:12','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1707,'2025-02-21','02:00:01','2025-02-21 02:06:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1708,'2025-02-21','04:00:03','2025-02-21 04:06:43','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1709,'2025-02-21','06:00:02','2025-02-21 06:06:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1710,'2025-02-21','08:00:02','2025-02-21 08:07:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1711,'2025-02-21','10:00:02','2025-02-21 10:07:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1712,'2025-02-21','12:00:02','2025-02-21 12:07:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1713,'2025-02-21','14:00:02','2025-02-21 14:07:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1714,'2025-02-21','14:00:02','2025-02-21 14:07:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1715,'2025-02-21','16:00:01','2025-02-21 16:07:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1716,'2025-02-21','18:00:02','2025-02-21 18:07:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1717,'2025-02-21','20:00:02','2025-02-21 20:07:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1718,'2025-02-21','22:00:02','2025-02-21 22:06:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1719,'2025-02-22','00:00:03','2025-02-22 00:06:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1720,'2025-02-22','02:00:02','2025-02-22 02:06:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1721,'2025-02-22','04:00:03','2025-02-22 04:06:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1722,'2025-02-22','06:00:02','2025-02-22 06:06:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1723,'2025-02-22','08:00:02','2025-02-22 08:06:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1724,'2025-02-22','10:00:01','2025-02-22 10:07:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1725,'2025-02-22','12:00:02','2025-02-22 12:07:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1726,'2025-02-22','14:00:02','2025-02-22 14:07:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1727,'2025-02-22','14:00:02','2025-02-22 14:07:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1728,'2025-02-22','16:00:02','2025-02-22 16:07:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1729,'2025-02-22','18:00:01','2025-02-22 18:07:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1730,'2025-02-22','20:00:02','2025-02-22 20:07:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1731,'2025-02-22','22:00:02','2025-02-22 22:07:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1732,'2025-02-23','00:00:02','2025-02-23 00:06:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1733,'2025-02-23','02:00:02','2025-02-23 02:06:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1734,'2025-02-23','04:00:03','2025-02-23 04:06:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1735,'2025-02-23','06:00:02','2025-02-23 06:06:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1736,'2025-02-23','08:00:01','2025-02-23 08:06:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1737,'2025-02-23','10:00:02','2025-02-23 10:07:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1738,'2025-02-23','12:00:02','2025-02-23 12:06:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1739,'2025-02-23','14:00:01','2025-02-23 14:06:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1740,'2025-02-23','14:00:01','2025-02-23 14:06:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1741,'2025-02-23','16:00:01','2025-02-23 16:06:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1742,'2025-02-23','18:00:02','2025-02-23 18:06:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1743,'2025-02-23','20:00:01','2025-02-23 20:07:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1744,'2025-02-23','22:00:02','2025-02-23 22:06:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1745,'2025-02-24','00:00:01','2025-02-24 00:06:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1746,'2025-02-24','02:00:02','2025-02-24 02:06:12','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1747,'2025-02-24','04:00:03','2025-02-24 04:06:31','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1748,'2025-02-24','06:00:02','2025-02-24 06:06:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1749,'2025-02-24','08:00:02','2025-02-24 08:06:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1750,'2025-02-24','10:00:02','2025-02-24 10:07:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1751,'2025-02-24','12:00:02','2025-02-24 12:07:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1752,'2025-02-24','14:00:02','2025-02-24 14:07:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1753,'2025-02-24','14:00:02','2025-02-24 14:07:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1754,'2025-02-24','16:00:02','2025-02-24 16:07:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1755,'2025-02-24','18:00:02','2025-02-24 18:07:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1756,'2025-02-24','20:00:02','2025-02-24 20:07:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1757,'2025-02-24','22:00:01','2025-02-24 22:06:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1758,'2025-02-25','00:00:02','2025-02-25 00:06:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1759,'2025-02-25','02:00:02','2025-02-25 02:06:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1760,'2025-02-25','04:00:03','2025-02-25 04:06:38','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1761,'2025-02-25','06:00:03','2025-02-25 06:06:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1762,'2025-02-25','08:00:01','2025-02-25 08:07:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1763,'2025-02-25','10:00:02','2025-02-25 10:07:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1764,'2025-02-25','12:00:02','2025-02-25 12:07:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1765,'2025-02-25','14:00:02','2025-02-25 14:07:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1766,'2025-02-25','14:00:02','2025-02-25 14:07:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1767,'2025-02-25','16:00:02','2025-02-25 16:07:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1768,'2025-02-25','18:00:02','2025-02-25 18:07:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1769,'2025-02-25','20:00:02','2025-02-25 20:07:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1770,'2025-02-25','22:00:01','2025-02-25 22:06:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1771,'2025-02-26','00:00:03','2025-02-26 00:06:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1772,'2025-02-26','02:00:02','2025-02-26 02:06:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1773,'2025-02-26','04:00:03','2025-02-26 04:06:44','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1774,'2025-02-26','06:00:03','2025-02-26 06:06:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1775,'2025-02-26','08:00:02','2025-02-26 08:07:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1776,'2025-02-26','10:00:02','2025-02-26 10:07:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1777,'2025-02-26','12:00:02','2025-02-26 12:07:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1778,'2025-02-26','14:00:02','2025-02-26 14:07:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1779,'2025-02-26','14:00:02','2025-02-26 14:07:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1780,'2025-02-26','16:00:02','2025-02-26 16:07:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1781,'2025-02-26','18:00:01','2025-02-26 18:07:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1782,'2025-02-26','20:00:01','2025-02-26 20:07:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1783,'2025-02-26','22:00:01','2025-02-26 22:07:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1784,'2025-02-27','00:00:01','2025-02-27 00:06:32','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1785,'2025-02-27','02:00:02','2025-02-27 02:06:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1786,'2025-02-27','04:00:03','2025-02-27 04:06:52','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1787,'2025-02-27','06:00:02','2025-02-27 06:06:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1788,'2025-02-27','08:00:02','2025-02-27 08:07:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1789,'2025-02-27','10:00:02','2025-02-27 10:07:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1790,'2025-02-27','12:00:02','2025-02-27 12:08:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1791,'2025-02-27','14:00:02','2025-02-27 14:07:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1792,'2025-02-27','14:00:02','2025-02-27 14:07:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1793,'2025-02-27','16:00:02','2025-02-27 16:07:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1794,'2025-02-27','18:00:02','2025-02-27 18:07:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1795,'2025-02-27','20:00:02','2025-02-27 20:07:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1796,'2025-02-27','22:00:01','2025-02-27 22:07:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1797,'2025-02-28','00:00:02','2025-02-28 00:06:52','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1798,'2025-02-28','02:00:02','2025-02-28 02:06:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1799,'2025-02-28','04:00:03','2025-02-28 04:06:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1800,'2025-02-28','06:00:02','2025-02-28 06:06:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1801,'2025-02-28','08:00:02','2025-02-28 08:07:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1802,'2025-02-28','10:00:02','2025-02-28 10:07:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1803,'2025-02-28','12:00:03','2025-02-28 12:08:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1804,'2025-02-28','14:00:03','2025-02-28 14:07:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1805,'2025-02-28','14:00:03','2025-02-28 14:07:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1806,'2025-02-28','16:00:02','2025-02-28 16:07:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1807,'2025-02-28','18:00:02','2025-02-28 18:08:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1808,'2025-02-28','20:00:02','2025-02-28 20:07:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1809,'2025-02-28','22:00:01','2025-02-28 22:06:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1810,'2025-03-01','00:00:02','2025-03-01 00:06:33','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1811,'2025-03-01','02:00:02','2025-03-01 02:06:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1812,'2025-03-01','04:00:03','2025-03-01 04:06:50','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1813,'2025-03-01','06:00:02','2025-03-01 06:06:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1814,'2025-03-01','08:00:02','2025-03-01 08:07:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1815,'2025-03-01','10:00:02','2025-03-01 10:07:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1816,'2025-03-01','12:00:03','2025-03-01 12:07:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1817,'2025-03-01','14:00:01','2025-03-01 14:08:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1818,'2025-03-01','14:00:01','2025-03-01 14:08:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1819,'2025-03-01','16:00:02','2025-03-01 16:09:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1820,'2025-03-01','18:00:02','2025-03-01 18:07:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1821,'2025-03-01','20:00:02','2025-03-01 20:07:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1822,'2025-03-01','22:00:02','2025-03-01 22:07:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1823,'2025-03-02','00:00:02','2025-03-02 00:06:47','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1824,'2025-03-02','02:00:01','2025-03-02 02:06:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1825,'2025-03-02','04:00:03','2025-03-02 04:06:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1826,'2025-03-02','06:00:02','2025-03-02 06:06:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1827,'2025-03-02','08:00:02','2025-03-02 08:07:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1828,'2025-03-02','10:00:02','2025-03-02 10:07:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1829,'2025-03-02','12:00:03','2025-03-02 12:06:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1830,'2025-03-02','14:00:02','2025-03-02 14:07:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1831,'2025-03-02','14:00:02','2025-03-02 14:07:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1832,'2025-03-02','16:00:02','2025-03-02 16:06:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1833,'2025-03-02','18:00:02','2025-03-02 18:07:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1834,'2025-03-02','20:00:02','2025-03-02 20:06:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1835,'2025-03-02','22:00:01','2025-03-02 22:06:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1836,'2025-03-03','00:00:02','2025-03-03 00:06:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1837,'2025-03-03','02:00:02','2025-03-03 02:06:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1838,'2025-03-03','04:00:03','2025-03-03 04:06:48','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1839,'2025-03-03','06:00:02','2025-03-03 06:06:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1840,'2025-03-03','08:00:01','2025-03-03 08:07:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1841,'2025-03-03','10:00:02','2025-03-03 10:07:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1842,'2025-03-03','12:00:02','2025-03-03 12:08:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1843,'2025-03-03','14:00:01','2025-03-03 14:07:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1844,'2025-03-03','14:00:01','2025-03-03 14:07:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1845,'2025-03-03','16:00:02','2025-03-03 16:07:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1846,'2025-03-03','18:00:03','2025-03-03 18:08:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1847,'2025-03-03','20:00:02','2025-03-03 20:07:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1848,'2025-03-03','22:00:02','2025-03-03 22:07:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1849,'2025-03-04','00:00:02','2025-03-04 00:06:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1850,'2025-03-04','02:00:02','2025-03-04 02:06:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1851,'2025-03-04','04:00:03','2025-03-04 04:06:51','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1852,'2025-03-04','06:00:03','2025-03-04 06:06:38','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1853,'2025-03-04','08:00:01','2025-03-04 08:07:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1854,'2025-03-04','10:00:02','2025-03-04 10:07:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1855,'2025-03-04','12:00:03','2025-03-04 12:08:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1856,'2025-03-04','14:00:02','2025-03-04 14:07:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1857,'2025-03-04','14:00:02','2025-03-04 14:07:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1858,'2025-03-04','16:00:10','2025-03-04 16:08:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1859,'2025-03-04','18:00:02','2025-03-04 18:07:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1860,'2025-03-04','20:00:02','2025-03-04 20:07:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1861,'2025-03-04','22:00:01','2025-03-04 22:06:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1862,'2025-03-05','00:00:02','2025-03-05 00:06:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1863,'2025-03-05','02:00:01','2025-03-05 02:06:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1864,'2025-03-05','04:00:04','2025-03-05 04:07:01','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1865,'2025-03-05','06:00:02','2025-03-05 06:06:47','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1866,'2025-03-05','08:00:02','2025-03-05 08:07:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1867,'2025-03-05','10:00:01','2025-03-05 10:07:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1868,'2025-03-05','12:00:01','2025-03-05 12:07:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1869,'2025-03-05','14:00:02','2025-03-05 14:07:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1870,'2025-03-05','14:00:02','2025-03-05 14:07:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1871,'2025-03-05','16:00:02','2025-03-05 16:07:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1872,'2025-03-05','18:00:02','2025-03-05 18:09:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1873,'2025-03-05','20:00:02','2025-03-05 20:09:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1874,'2025-03-05','22:00:01','2025-03-05 22:08:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1875,'2025-03-06','00:00:02','2025-03-06 00:08:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1876,'2025-03-06','02:00:02','2025-03-06 02:08:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1877,'2025-03-06','04:00:03','2025-03-06 04:08:43','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1878,'2025-03-06','06:00:02','2025-03-06 06:08:32','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1879,'2025-03-06','08:00:01','2025-03-06 08:09:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1880,'2025-03-06','10:00:02','2025-03-06 10:09:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1881,'2025-03-06','12:00:02','2025-03-06 12:09:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1882,'2025-03-06','14:00:03','2025-03-06 14:09:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1883,'2025-03-06','14:00:03','2025-03-06 14:09:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1884,'2025-03-06','16:00:02','2025-03-06 16:10:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1885,'2025-03-06','18:00:02','2025-03-06 18:09:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1886,'2025-03-06','20:00:02','2025-03-06 20:09:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1887,'2025-03-06','22:00:01','2025-03-06 22:08:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1888,'2025-03-07','00:00:03','2025-03-07 00:08:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1889,'2025-03-07','02:00:02','2025-03-07 02:08:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1890,'2025-03-07','04:00:03','2025-03-07 04:08:48','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1891,'2025-03-07','06:00:02','2025-03-07 06:08:51','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1892,'2025-03-07','08:00:03','2025-03-07 08:09:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1893,'2025-03-07','10:00:02','2025-03-07 10:09:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1894,'2025-03-07','12:00:04','2025-03-07 12:10:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1895,'2025-03-07','14:00:08','2025-03-07 14:08:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1896,'2025-03-07','14:00:08','2025-03-07 14:08:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1897,'2025-03-07','16:00:02','2025-03-07 16:09:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1898,'2025-03-07','18:00:02','2025-03-07 18:09:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1899,'2025-03-07','20:00:02','2025-03-07 20:10:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1900,'2025-03-07','22:00:02','2025-03-07 22:09:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1901,'2025-03-08','00:00:02','2025-03-08 00:08:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1902,'2025-03-08','02:00:01','2025-03-08 02:08:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1903,'2025-03-08','04:00:03','2025-03-08 04:08:55','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1904,'2025-03-08','06:00:02','2025-03-08 06:08:44','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1905,'2025-03-08','08:00:02','2025-03-08 08:09:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1906,'2025-03-08','10:00:02','2025-03-08 10:09:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1907,'2025-03-08','12:00:02','2025-03-08 12:10:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1908,'2025-03-08','14:00:01','2025-03-08 14:09:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1909,'2025-03-08','14:00:01','2025-03-08 14:09:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1910,'2025-03-08','16:00:02','2025-03-08 16:09:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1911,'2025-03-08','18:00:02','2025-03-08 18:09:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1912,'2025-03-08','20:00:02','2025-03-08 20:09:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1913,'2025-03-08','22:00:01','2025-03-08 22:09:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1914,'2025-03-09','00:00:01','2025-03-09 00:08:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1915,'2025-03-09','02:00:02','2025-03-09 02:08:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1916,'2025-03-09','04:00:03','2025-03-09 04:08:43','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1917,'2025-03-09','06:00:02','2025-03-09 06:08:46','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1918,'2025-03-09','08:00:02','2025-03-09 08:09:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1919,'2025-03-09','10:00:02','2025-03-09 10:09:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1920,'2025-03-09','12:00:02','2025-03-09 12:09:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1921,'2025-03-09','14:00:02','2025-03-09 14:08:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1922,'2025-03-09','14:00:02','2025-03-09 14:08:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1923,'2025-03-09','16:00:02','2025-03-09 16:08:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1924,'2025-03-09','18:00:01','2025-03-09 18:08:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1925,'2025-03-09','20:00:02','2025-03-09 20:08:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1926,'2025-03-09','22:00:02','2025-03-09 22:08:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1927,'2025-03-10','00:00:02','2025-03-10 00:08:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1928,'2025-03-10','02:00:02','2025-03-10 02:08:12','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1929,'2025-03-10','04:00:03','2025-03-10 04:08:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1930,'2025-03-10','06:00:02','2025-03-10 06:08:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1931,'2025-03-10','08:00:03','2025-03-10 08:09:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1932,'2025-03-10','10:00:02','2025-03-10 10:09:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1933,'2025-03-10','12:00:02','2025-03-10 12:10:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1934,'2025-03-10','14:00:02','2025-03-10 14:12:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1935,'2025-03-10','14:00:02','2025-03-10 14:12:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1936,'2025-03-10','16:00:02','2025-03-10 16:11:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1937,'2025-03-10','18:00:02','2025-03-10 18:10:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1938,'2025-03-10','20:00:02','2025-03-10 20:09:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1939,'2025-03-10','22:00:01','2025-03-10 22:09:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1940,'2025-03-11','00:00:03','2025-03-11 00:09:37','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1941,'2025-03-11','02:00:01','2025-03-11 02:08:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1942,'2025-03-11','04:00:03','2025-03-11 04:08:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1943,'2025-03-11','06:00:02','2025-03-11 06:08:43','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1944,'2025-03-11','08:00:02','2025-03-11 08:09:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1945,'2025-03-11','10:00:02','2025-03-11 10:09:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1946,'2025-03-11','12:00:02','2025-03-11 12:10:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1947,'2025-03-11','16:00:03','2025-03-11 16:10:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1948,'2025-03-11','18:00:02','2025-03-11 18:11:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1949,'2025-03-11','20:00:03','2025-03-11 20:10:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1950,'2025-03-11','22:00:01','2025-03-11 22:09:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1951,'2025-03-12','00:00:03','2025-03-12 00:09:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1952,'2025-03-12','02:00:02','2025-03-12 02:08:45','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1953,'2025-03-12','04:00:03','2025-03-12 04:09:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1954,'2025-03-12','06:00:02','2025-03-12 06:09:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1955,'2025-03-12','08:00:02','2025-03-12 08:09:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1956,'2025-03-12','10:00:02','2025-03-12 10:10:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1957,'2025-03-12','12:00:02','2025-03-12 12:10:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1958,'2025-03-12','14:00:02','2025-03-12 14:10:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1959,'2025-03-12','14:00:02','2025-03-12 14:10:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1960,'2025-03-12','16:00:02','2025-03-12 16:09:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1961,'2025-03-12','18:00:09','2025-03-12 18:11:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1962,'2025-03-12','20:00:01','2025-03-12 20:09:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1963,'2025-03-12','22:00:01','2025-03-12 22:09:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1964,'2025-03-13','00:00:02','2025-03-13 00:08:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1965,'2025-03-13','02:00:02','2025-03-13 02:08:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1966,'2025-03-13','04:00:04','2025-03-13 04:09:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1967,'2025-03-13','06:00:02','2025-03-13 06:08:44','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1968,'2025-03-13','08:00:02','2025-03-13 08:09:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1969,'2025-03-13','10:00:03','2025-03-13 10:09:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1970,'2025-03-13','12:00:03','2025-03-13 12:10:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1971,'2025-03-13','14:00:02','2025-03-13 14:09:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1972,'2025-03-13','14:00:02','2025-03-13 14:09:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1973,'2025-03-13','16:00:02','2025-03-13 16:09:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1974,'2025-03-13','18:00:02','2025-03-13 18:09:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1975,'2025-03-13','20:00:02','2025-03-13 20:09:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1976,'2025-03-13','22:00:01','2025-03-13 22:09:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1977,'2025-03-14','00:00:02','2025-03-14 00:08:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1978,'2025-03-14','02:00:02','2025-03-14 02:08:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1979,'2025-03-14','04:00:02','2025-03-14 04:08:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1980,'2025-03-14','06:00:02','2025-03-14 06:08:45','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1981,'2025-03-14','08:00:02','2025-03-14 08:09:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1982,'2025-03-14','10:00:02','2025-03-14 10:09:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1983,'2025-03-14','12:00:03','2025-03-14 12:09:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1984,'2025-03-14','14:00:02','2025-03-14 14:08:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1985,'2025-03-14','14:00:02','2025-03-14 14:08:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1986,'2025-03-14','16:00:02','2025-03-14 16:09:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1987,'2025-03-14','18:00:02','2025-03-14 18:08:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1988,'2025-03-14','20:00:01','2025-03-14 20:09:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1989,'2025-03-14','22:00:01','2025-03-14 22:09:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1990,'2025-03-15','00:00:02','2025-03-15 00:08:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1991,'2025-03-15','02:00:02','2025-03-15 02:08:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1992,'2025-03-15','04:00:03','2025-03-15 04:08:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1993,'2025-03-15','06:00:02','2025-03-15 06:08:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1994,'2025-03-15','08:00:02','2025-03-15 08:09:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1995,'2025-03-15','10:00:02','2025-03-15 10:09:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1996,'2025-03-15','12:00:02','2025-03-15 12:10:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1997,'2025-03-15','14:00:01','2025-03-15 14:09:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1998,'2025-03-15','14:00:01','2025-03-15 14:09:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(1999,'2025-03-15','16:00:01','2025-03-15 16:10:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2000,'2025-03-15','18:00:02','2025-03-15 18:10:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2001,'2025-03-15','20:00:03','2025-03-15 20:09:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2002,'2025-03-15','22:00:02','2025-03-15 22:09:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2003,'2025-03-16','00:00:04','2025-03-16 00:08:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2004,'2025-03-16','02:00:02','2025-03-16 02:08:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2005,'2025-03-16','04:00:03','2025-03-16 04:08:52','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2006,'2025-03-16','06:00:02','2025-03-16 06:08:54','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2007,'2025-03-16','08:00:02','2025-03-16 08:09:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2008,'2025-03-16','10:00:02','2025-03-16 10:09:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2009,'2025-03-16','12:00:02','2025-03-16 12:09:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2010,'2025-03-16','14:00:02','2025-03-16 14:09:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2011,'2025-03-16','14:00:02','2025-03-16 14:09:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2012,'2025-03-16','16:00:01','2025-03-16 16:08:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2013,'2025-03-16','18:00:02','2025-03-16 18:09:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2014,'2025-03-16','20:00:01','2025-03-16 20:09:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2015,'2025-03-16','22:00:02','2025-03-16 22:09:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2016,'2025-03-17','02:00:02','2025-03-17 02:09:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2017,'2025-03-17','04:00:03','2025-03-17 04:08:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2018,'2025-03-17','06:00:02','2025-03-17 06:08:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2019,'2025-03-17','08:00:01','2025-03-17 08:08:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2020,'2025-03-17','10:00:02','2025-03-17 10:08:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2021,'2025-03-17','12:00:02','2025-03-17 12:09:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2022,'2025-03-17','14:00:01','2025-03-17 14:08:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2023,'2025-03-17','14:00:01','2025-03-17 14:08:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2024,'2025-03-17','16:00:02','2025-03-17 16:08:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2025,'2025-03-17','18:00:02','2025-03-17 18:08:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2026,'2025-03-17','20:00:02','2025-03-17 20:08:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2027,'2025-03-17','22:00:01','2025-03-17 22:08:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2028,'2025-03-18','00:00:01','2025-03-18 00:08:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2029,'2025-03-18','02:00:01','2025-03-18 02:07:56','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2030,'2025-03-18','04:00:03','2025-03-18 04:08:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2031,'2025-03-18','06:00:01','2025-03-18 06:08:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2032,'2025-03-18','08:00:01','2025-03-18 08:08:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2033,'2025-03-18','10:00:02','2025-03-18 10:09:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2034,'2025-03-18','12:00:02','2025-03-18 12:09:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2035,'2025-03-18','14:00:02','2025-03-18 14:09:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2036,'2025-03-18','14:00:02','2025-03-18 14:09:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2037,'2025-03-18','16:00:01','2025-03-18 16:09:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2038,'2025-03-18','18:00:02','2025-03-18 18:09:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2039,'2025-03-18','20:00:02','2025-03-18 20:09:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2040,'2025-03-18','22:00:02','2025-03-18 22:08:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2041,'2025-03-19','00:00:03','2025-03-19 00:08:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2042,'2025-03-19','02:00:01','2025-03-19 02:07:55','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2043,'2025-03-19','04:00:03','2025-03-19 04:08:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2044,'2025-03-19','06:00:01','2025-03-19 06:08:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2045,'2025-03-19','08:00:02','2025-03-19 08:08:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2046,'2025-03-19','10:00:01','2025-03-19 10:09:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2047,'2025-03-19','12:00:02','2025-03-19 12:09:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2048,'2025-03-19','14:00:02','2025-03-19 14:10:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2049,'2025-03-19','14:00:02','2025-03-19 14:10:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2050,'2025-03-19','16:00:01','2025-03-19 16:09:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2051,'2025-03-19','18:00:02','2025-03-19 18:09:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2052,'2025-03-19','20:00:01','2025-03-19 20:09:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2053,'2025-03-19','22:00:01','2025-03-19 22:08:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2054,'2025-03-20','00:00:02','2025-03-20 00:08:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2055,'2025-03-20','02:00:01','2025-03-20 02:08:05','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2056,'2025-03-20','04:00:03','2025-03-20 04:08:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2057,'2025-03-20','06:00:02','2025-03-20 06:08:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2058,'2025-03-20','08:00:02','2025-03-20 08:08:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2059,'2025-03-20','10:00:01','2025-03-20 10:09:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2060,'2025-03-20','12:00:02','2025-03-20 12:10:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2061,'2025-03-20','14:00:02','2025-03-20 14:10:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2062,'2025-03-20','14:00:02','2025-03-20 14:10:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2063,'2025-03-20','16:00:02','2025-03-20 16:09:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2064,'2025-03-20','18:00:01','2025-03-20 18:09:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2065,'2025-03-20','20:00:02','2025-03-20 20:09:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2066,'2025-03-20','22:00:01','2025-03-20 22:08:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2067,'2025-03-21','00:00:02','2025-03-21 00:08:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2068,'2025-03-21','02:00:02','2025-03-21 02:08:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2069,'2025-03-21','04:00:03','2025-03-21 04:08:49','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2070,'2025-03-21','06:00:02','2025-03-21 06:08:49','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2071,'2025-03-21','08:00:02','2025-03-21 08:09:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2072,'2025-03-21','10:00:02','2025-03-21 10:09:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2073,'2025-03-21','12:00:02','2025-03-21 12:10:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2074,'2025-03-21','14:00:02','2025-03-21 14:10:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2075,'2025-03-21','14:00:02','2025-03-21 14:10:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2076,'2025-03-21','16:00:03','2025-03-21 16:10:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2077,'2025-03-21','18:00:02','2025-03-21 18:10:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2078,'2025-03-21','20:00:02','2025-03-21 20:10:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2079,'2025-03-21','22:00:02','2025-03-21 22:09:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2080,'2025-03-22','00:00:02','2025-03-22 00:09:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2081,'2025-03-22','02:00:02','2025-03-22 02:09:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2082,'2025-03-22','04:00:03','2025-03-22 04:09:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2083,'2025-03-22','06:00:02','2025-03-22 06:09:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2084,'2025-03-22','08:00:02','2025-03-22 08:09:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2085,'2025-03-22','10:00:02','2025-03-22 10:10:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2086,'2025-03-22','12:00:02','2025-03-22 12:10:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2087,'2025-03-22','14:00:02','2025-03-22 14:10:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2088,'2025-03-22','14:00:02','2025-03-22 14:10:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2089,'2025-03-22','16:00:02','2025-03-22 16:10:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2090,'2025-03-22','18:00:03','2025-03-22 18:10:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2091,'2025-03-22','20:00:01','2025-03-22 20:10:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2092,'2025-03-22','22:00:01','2025-03-22 22:09:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2093,'2025-03-23','00:00:02','2025-03-23 00:09:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2094,'2025-03-23','02:00:02','2025-03-23 02:08:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2095,'2025-03-23','04:00:04','2025-03-23 04:09:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2096,'2025-03-23','06:00:02','2025-03-23 06:09:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2097,'2025-03-23','08:00:02','2025-03-23 08:10:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2098,'2025-03-23','10:00:02','2025-03-23 10:09:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2099,'2025-03-23','12:00:02','2025-03-23 12:09:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2100,'2025-03-23','14:00:01','2025-03-23 14:09:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2101,'2025-03-23','14:00:01','2025-03-23 14:09:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2102,'2025-03-23','16:00:02','2025-03-23 16:09:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2103,'2025-03-23','18:00:02','2025-03-23 18:09:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2104,'2025-03-23','20:00:02','2025-03-23 20:09:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2105,'2025-03-23','22:00:01','2025-03-23 22:09:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2106,'2025-03-24','00:00:02','2025-03-24 00:09:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2107,'2025-03-24','02:00:02','2025-03-24 02:09:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2108,'2025-03-24','04:00:03','2025-03-24 04:09:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2109,'2025-03-24','06:00:02','2025-03-24 06:09:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2110,'2025-03-24','08:00:02','2025-03-24 08:09:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2111,'2025-03-24','10:00:03','2025-03-24 10:10:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2112,'2025-03-24','12:00:02','2025-03-24 12:10:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2113,'2025-03-24','14:00:02','2025-03-24 14:11:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2114,'2025-03-24','14:00:02','2025-03-24 14:11:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2115,'2025-03-24','16:00:02','2025-03-24 16:10:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2116,'2025-03-24','18:00:02','2025-03-24 18:10:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2117,'2025-03-24','20:00:02','2025-03-24 20:10:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2118,'2025-03-24','22:00:01','2025-03-24 22:09:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2119,'2025-03-25','00:00:03','2025-03-25 00:09:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2120,'2025-03-25','02:00:02','2025-03-25 02:09:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2121,'2025-03-25','04:00:03','2025-03-25 04:09:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2122,'2025-03-25','06:00:02','2025-03-25 06:09:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2123,'2025-03-25','08:00:02','2025-03-25 08:09:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2124,'2025-03-25','10:00:02','2025-03-25 10:10:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2125,'2025-03-25','12:00:03','2025-03-25 12:11:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2126,'2025-03-25','14:00:02','2025-03-25 14:10:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2127,'2025-03-25','14:00:02','2025-03-25 14:10:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2128,'2025-03-25','16:00:02','2025-03-25 16:11:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2129,'2025-03-25','18:00:02','2025-03-25 18:11:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2130,'2025-03-25','20:00:02','2025-03-25 20:10:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2131,'2025-03-25','22:00:02','2025-03-25 22:10:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2132,'2025-03-26','00:00:01','2025-03-26 00:09:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2133,'2025-03-26','02:00:02','2025-03-26 02:09:45','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2134,'2025-03-26','04:00:03','2025-03-26 04:09:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2135,'2025-03-26','06:00:02','2025-03-26 06:09:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2136,'2025-03-26','08:00:04','2025-03-26 08:09:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2137,'2025-03-26','12:00:02','2025-03-26 12:12:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2138,'2025-03-26','14:00:02','2025-03-26 14:11:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2139,'2025-03-26','14:00:02','2025-03-26 14:11:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2140,'2025-03-26','16:00:02','2025-03-26 16:10:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2141,'2025-03-26','18:00:02','2025-03-26 18:10:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2142,'2025-03-26','20:00:02','2025-03-26 20:10:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2143,'2025-03-26','22:00:02','2025-03-26 22:09:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2144,'2025-03-27','00:00:01','2025-03-27 00:09:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2145,'2025-03-27','02:00:02','2025-03-27 02:08:57','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2146,'2025-03-27','04:00:02','2025-03-27 04:09:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2147,'2025-03-27','06:00:02','2025-03-27 06:09:42','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2148,'2025-03-27','08:00:02','2025-03-27 08:10:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2149,'2025-03-27','10:00:02','2025-03-27 10:10:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2150,'2025-03-27','12:00:02','2025-03-27 12:11:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2151,'2025-03-27','14:00:02','2025-03-27 14:10:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2152,'2025-03-27','14:00:02','2025-03-27 14:10:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2153,'2025-03-27','16:00:03','2025-03-27 16:10:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2154,'2025-03-27','18:00:02','2025-03-27 18:10:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2155,'2025-03-27','20:00:03','2025-03-27 20:10:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2156,'2025-03-27','22:00:01','2025-03-27 22:09:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2157,'2025-03-28','00:00:04','2025-03-28 00:10:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2158,'2025-03-28','02:00:02','2025-03-28 02:09:01','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2159,'2025-03-28','04:00:03','2025-03-28 04:09:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2160,'2025-03-28','06:00:02','2025-03-28 06:09:38','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2161,'2025-03-28','08:00:03','2025-03-28 08:10:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2162,'2025-03-28','10:00:02','2025-03-28 10:10:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2163,'2025-03-28','12:00:03','2025-03-28 12:11:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2164,'2025-03-28','14:00:02','2025-03-28 14:10:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2165,'2025-03-28','14:00:02','2025-03-28 14:10:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2166,'2025-03-28','16:00:02','2025-03-28 16:11:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2167,'2025-03-28','18:00:01','2025-03-28 18:11:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2168,'2025-03-28','20:00:02','2025-03-28 20:10:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2169,'2025-03-28','22:00:01','2025-03-28 22:10:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2170,'2025-03-29','00:00:03','2025-03-29 00:09:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2171,'2025-03-29','02:00:02','2025-03-29 02:09:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2172,'2025-03-29','04:00:03','2025-03-29 04:09:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2173,'2025-03-29','06:00:02','2025-03-29 06:09:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2174,'2025-03-29','08:00:03','2025-03-29 08:09:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2175,'2025-03-29','10:00:01','2025-03-29 10:10:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2176,'2025-03-29','12:00:03','2025-03-29 12:11:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2177,'2025-03-29','14:00:03','2025-03-29 14:10:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2178,'2025-03-29','14:00:03','2025-03-29 14:10:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2179,'2025-03-29','16:00:01','2025-03-29 16:10:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2180,'2025-03-29','18:00:01','2025-03-29 18:10:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2181,'2025-03-29','20:00:02','2025-03-29 20:10:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2182,'2025-03-29','22:00:02','2025-03-29 22:09:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2183,'2025-03-30','00:00:02','2025-03-30 00:09:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2184,'2025-03-30','02:00:02','2025-03-30 02:09:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2185,'2025-03-30','04:00:04','2025-03-30 04:09:31','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2186,'2025-03-30','06:00:02','2025-03-30 06:09:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2187,'2025-03-30','08:00:02','2025-03-30 08:09:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2188,'2025-03-30','10:00:02','2025-03-30 10:10:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2189,'2025-03-30','12:00:02','2025-03-30 12:10:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2190,'2025-03-30','14:00:02','2025-03-30 14:10:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2191,'2025-03-30','14:00:02','2025-03-30 14:10:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2192,'2025-03-30','16:00:02','2025-03-30 16:09:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2193,'2025-03-30','18:00:02','2025-03-30 18:09:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2194,'2025-03-30','20:00:02','2025-03-30 20:09:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2195,'2025-03-30','22:00:02','2025-03-30 22:09:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2196,'2025-03-31','00:00:03','2025-03-31 00:09:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2197,'2025-03-31','02:00:02','2025-03-31 02:08:59','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2198,'2025-03-31','04:00:03','2025-03-31 04:09:01','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2199,'2025-03-31','06:00:05','2025-03-31 06:09:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2200,'2025-03-31','08:00:02','2025-03-31 08:10:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2201,'2025-03-31','10:00:02','2025-03-31 10:10:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2202,'2025-03-31','12:00:03','2025-03-31 12:11:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2203,'2025-03-31','14:00:01','2025-03-31 14:10:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2204,'2025-03-31','14:00:01','2025-03-31 14:10:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2205,'2025-03-31','16:00:02','2025-03-31 16:10:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2206,'2025-03-31','18:00:03','2025-03-31 18:10:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2207,'2025-03-31','20:00:02','2025-03-31 20:10:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2208,'2025-03-31','22:00:02','2025-03-31 22:10:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2209,'2025-04-01','00:00:02','2025-04-01 00:09:33','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2210,'2025-04-01','02:00:02','2025-04-01 02:09:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2211,'2025-04-01','04:00:05','2025-04-01 04:09:57','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2212,'2025-04-01','06:00:02','2025-04-01 06:09:44','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2213,'2025-04-01','08:00:02','2025-04-01 08:10:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2214,'2025-04-01','10:00:02','2025-04-01 10:10:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2215,'2025-04-01','12:00:02','2025-04-01 12:11:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2216,'2025-04-01','14:00:02','2025-04-01 14:11:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2217,'2025-04-01','14:00:02','2025-04-01 14:11:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2218,'2025-04-01','16:00:02','2025-04-01 16:10:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2219,'2025-04-01','18:00:02','2025-04-01 18:10:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2220,'2025-04-01','20:00:03','2025-04-01 20:10:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2221,'2025-04-01','22:00:01','2025-04-01 22:10:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2222,'2025-04-02','00:00:03','2025-04-02 00:09:38','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2223,'2025-04-02','02:00:02','2025-04-02 02:09:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2224,'2025-04-02','04:00:03','2025-04-02 04:09:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2225,'2025-04-02','06:00:02','2025-04-02 06:09:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2226,'2025-04-02','08:00:02','2025-04-02 08:10:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2227,'2025-04-02','10:00:02','2025-04-02 10:10:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2228,'2025-04-02','12:00:01','2025-04-02 12:11:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2229,'2025-04-02','14:00:03','2025-04-02 14:11:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2230,'2025-04-02','14:00:03','2025-04-02 14:11:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2231,'2025-04-02','16:00:01','2025-04-02 16:10:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2232,'2025-04-02','18:00:02','2025-04-02 18:10:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2233,'2025-04-02','20:00:02','2025-04-02 20:10:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2234,'2025-04-02','22:00:01','2025-04-02 22:09:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2235,'2025-04-03','00:00:02','2025-04-03 00:10:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2236,'2025-04-03','02:00:01','2025-04-03 02:09:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2237,'2025-04-03','04:00:02','2025-04-03 04:09:52','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2238,'2025-04-03','06:00:02','2025-04-03 06:09:31','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2239,'2025-04-03','08:00:02','2025-04-03 08:10:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2240,'2025-04-03','10:00:02','2025-04-03 10:10:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2241,'2025-04-03','12:00:02','2025-04-03 12:10:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2242,'2025-04-03','14:00:02','2025-04-03 14:14:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2243,'2025-04-03','14:00:02','2025-04-03 14:14:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2244,'2025-04-03','16:00:02','2025-04-03 16:10:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2245,'2025-04-03','18:00:02','2025-04-03 18:11:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2246,'2025-04-03','20:00:03','2025-04-03 20:10:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2247,'2025-04-03','22:00:02','2025-04-03 22:10:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2248,'2025-04-04','00:00:04','2025-04-04 00:10:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2249,'2025-04-04','02:00:02','2025-04-04 02:09:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2250,'2025-04-04','04:00:03','2025-04-04 04:09:52','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2251,'2025-04-04','06:00:03','2025-04-04 06:09:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2252,'2025-04-04','08:00:03','2025-04-04 08:10:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2253,'2025-04-04','10:00:01','2025-04-04 10:10:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2254,'2025-04-04','12:00:02','2025-04-04 12:11:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2255,'2025-04-04','14:00:02','2025-04-04 14:11:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2256,'2025-04-04','14:00:02','2025-04-04 14:11:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2257,'2025-04-04','16:00:02','2025-04-04 16:11:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2258,'2025-04-04','18:00:01','2025-04-04 18:11:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2259,'2025-04-04','20:00:01','2025-04-04 20:10:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2260,'2025-04-04','22:00:01','2025-04-04 22:10:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2261,'2025-04-05','00:00:02','2025-04-05 00:09:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2262,'2025-04-05','02:00:01','2025-04-05 02:09:01','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2263,'2025-04-05','04:00:02','2025-04-05 04:09:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2264,'2025-04-05','06:00:03','2025-04-05 06:09:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2265,'2025-04-05','08:00:02','2025-04-05 08:10:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2266,'2025-04-05','10:00:02','2025-04-05 10:11:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2267,'2025-04-05','12:00:02','2025-04-05 12:11:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2268,'2025-04-05','14:00:02','2025-04-05 14:11:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2269,'2025-04-05','14:00:02','2025-04-05 14:11:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2270,'2025-04-05','16:00:03','2025-04-05 16:10:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2271,'2025-04-05','18:00:02','2025-04-05 18:11:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2272,'2025-04-05','20:00:03','2025-04-05 20:10:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2273,'2025-04-05','22:00:02','2025-04-05 22:09:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2274,'2025-04-06','00:00:03','2025-04-06 00:09:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2275,'2025-04-06','02:00:02','2025-04-06 02:09:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2276,'2025-04-06','04:00:03','2025-04-06 04:09:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2277,'2025-04-06','06:00:02','2025-04-06 06:09:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2278,'2025-04-06','08:00:02','2025-04-06 08:10:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2279,'2025-04-06','10:00:02','2025-04-06 10:10:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2280,'2025-04-06','12:00:02','2025-04-06 12:10:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2281,'2025-04-06','14:00:03','2025-04-06 14:10:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2282,'2025-04-06','14:00:03','2025-04-06 14:10:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2283,'2025-04-06','16:00:02','2025-04-06 16:09:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2284,'2025-04-06','18:00:02','2025-04-06 18:09:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2285,'2025-04-06','20:00:02','2025-04-06 20:09:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2286,'2025-04-06','22:00:02','2025-04-06 22:09:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2287,'2025-04-07','00:00:01','2025-04-07 00:09:01','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2288,'2025-04-07','02:00:01','2025-04-07 02:08:54','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2289,'2025-04-07','04:00:03','2025-04-07 04:09:37','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2290,'2025-04-07','06:00:02','2025-04-07 06:09:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2291,'2025-04-07','08:00:03','2025-04-07 08:09:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2292,'2025-04-07','10:00:02','2025-04-07 10:10:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2293,'2025-04-07','12:00:03','2025-04-07 12:13:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2294,'2025-04-07','14:00:02','2025-04-07 14:10:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2295,'2025-04-07','14:00:02','2025-04-07 14:10:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2296,'2025-04-07','16:00:05','2025-04-07 16:11:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2297,'2025-04-07','18:00:02','2025-04-07 18:11:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2298,'2025-04-07','20:00:02','2025-04-07 20:10:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2299,'2025-04-07','22:00:02','2025-04-07 22:10:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2300,'2025-04-08','00:00:02','2025-04-08 00:09:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2301,'2025-04-08','02:00:01','2025-04-08 02:09:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2302,'2025-04-08','04:00:03','2025-04-08 04:09:44','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2303,'2025-04-08','06:00:02','2025-04-08 06:09:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2304,'2025-04-08','08:00:02','2025-04-08 08:10:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2305,'2025-04-08','10:00:02','2025-04-08 10:10:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2306,'2025-04-08','12:00:02','2025-04-08 12:11:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2307,'2025-04-08','14:00:02','2025-04-08 14:11:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2308,'2025-04-08','14:00:02','2025-04-08 14:11:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2309,'2025-04-08','16:00:03','2025-04-08 16:10:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2310,'2025-04-08','18:00:01','2025-04-08 18:10:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2311,'2025-04-08','20:00:02','2025-04-08 20:10:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2312,'2025-04-08','22:00:01','2025-04-08 22:10:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2313,'2025-04-09','00:00:02','2025-04-09 00:10:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2314,'2025-04-09','02:00:02','2025-04-09 02:09:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2315,'2025-04-09','04:00:04','2025-04-09 04:09:51','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2316,'2025-04-09','06:00:03','2025-04-09 06:09:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2317,'2025-04-09','08:00:03','2025-04-09 08:10:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2318,'2025-04-09','10:00:03','2025-04-09 10:10:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2319,'2025-04-09','12:00:03','2025-04-09 12:12:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2320,'2025-04-09','14:00:02','2025-04-09 14:11:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2321,'2025-04-09','14:00:02','2025-04-09 14:11:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2322,'2025-04-09','16:00:02','2025-04-09 16:10:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2323,'2025-04-09','18:00:02','2025-04-09 18:10:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2324,'2025-04-09','20:00:03','2025-04-09 20:10:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2325,'2025-04-09','22:00:01','2025-04-09 22:10:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2326,'2025-04-10','00:00:03','2025-04-10 00:09:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2327,'2025-04-10','02:00:03','2025-04-10 02:09:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2328,'2025-04-10','04:00:04','2025-04-10 04:09:57','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2329,'2025-04-10','06:00:02','2025-04-10 06:09:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2330,'2025-04-10','08:00:02','2025-04-10 08:10:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2331,'2025-04-10','10:00:02','2025-04-10 10:10:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2332,'2025-04-10','12:00:02','2025-04-10 12:10:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2333,'2025-04-10','14:00:01','2025-04-10 14:11:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2334,'2025-04-10','14:00:01','2025-04-10 14:11:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2335,'2025-04-10','16:00:01','2025-04-10 16:10:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2336,'2025-04-10','18:00:02','2025-04-10 18:10:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2337,'2025-04-10','20:00:02','2025-04-10 20:10:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2338,'2025-04-10','22:00:01','2025-04-10 22:10:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2339,'2025-04-11','00:00:03','2025-04-11 00:10:38','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2340,'2025-04-11','02:00:02','2025-04-11 02:09:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2341,'2025-04-11','04:00:02','2025-04-11 04:09:44','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2342,'2025-04-11','06:00:01','2025-04-11 06:09:44','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2343,'2025-04-11','08:00:01','2025-04-11 08:10:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2344,'2025-04-11','10:00:02','2025-04-11 10:11:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2345,'2025-04-11','12:00:02','2025-04-11 12:12:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2346,'2025-04-11','14:00:02','2025-04-11 14:10:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2347,'2025-04-11','14:00:02','2025-04-11 14:10:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2348,'2025-04-11','16:00:01','2025-04-11 16:10:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2349,'2025-04-11','18:00:02','2025-04-11 18:12:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2350,'2025-04-11','20:00:03','2025-04-11 20:11:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2351,'2025-04-11','22:00:01','2025-04-11 22:10:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2352,'2025-04-12','00:00:04','2025-04-12 00:09:57','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2353,'2025-04-12','02:00:03','2025-04-12 02:09:33','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2354,'2025-04-12','04:00:03','2025-04-12 04:10:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2355,'2025-04-12','06:00:02','2025-04-12 06:09:45','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2356,'2025-04-12','08:00:03','2025-04-12 08:10:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2357,'2025-04-12','10:00:02','2025-04-12 10:10:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2358,'2025-04-12','12:00:02','2025-04-12 12:11:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2359,'2025-04-12','14:00:01','2025-04-12 14:11:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2360,'2025-04-12','14:00:01','2025-04-12 14:11:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2361,'2025-04-12','16:00:02','2025-04-12 16:11:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2362,'2025-04-12','18:00:02','2025-04-12 18:11:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2363,'2025-04-12','20:00:02','2025-04-12 20:11:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2364,'2025-04-12','22:00:02','2025-04-12 22:10:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2365,'2025-04-13','00:00:03','2025-04-13 00:09:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2366,'2025-04-13','02:00:02','2025-04-13 02:09:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2367,'2025-04-13','04:00:03','2025-04-13 04:09:43','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2368,'2025-04-13','06:00:02','2025-04-13 06:09:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2369,'2025-04-13','08:00:02','2025-04-13 08:10:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2370,'2025-04-13','10:00:01','2025-04-13 10:11:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2371,'2025-04-13','12:00:02','2025-04-13 12:09:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2372,'2025-04-13','14:00:01','2025-04-13 14:09:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2373,'2025-04-13','14:00:01','2025-04-13 14:09:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2374,'2025-04-13','16:00:02','2025-04-13 16:09:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2375,'2025-04-13','18:00:02','2025-04-13 18:09:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2376,'2025-04-13','20:00:01','2025-04-13 20:09:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2377,'2025-04-13','22:00:02','2025-04-13 22:10:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2378,'2025-04-14','00:00:02','2025-04-14 00:09:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2379,'2025-04-14','02:00:01','2025-04-14 02:09:03','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2380,'2025-04-14','04:00:03','2025-04-14 04:09:47','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2381,'2025-04-14','06:00:02','2025-04-14 06:09:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2382,'2025-04-14','08:00:02','2025-04-14 08:10:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2383,'2025-04-14','10:00:02','2025-04-14 10:10:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2384,'2025-04-14','12:00:02','2025-04-14 12:11:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2385,'2025-04-14','14:00:02','2025-04-14 14:11:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2386,'2025-04-14','14:00:02','2025-04-14 14:11:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2387,'2025-04-14','16:00:03','2025-04-14 16:11:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2388,'2025-04-14','18:00:02','2025-04-14 18:11:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2389,'2025-04-14','20:00:02','2025-04-14 20:11:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2390,'2025-04-14','22:00:02','2025-04-14 22:11:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2391,'2025-04-15','00:00:03','2025-04-15 00:13:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2392,'2025-04-15','02:00:02','2025-04-15 02:10:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2393,'2025-04-15','04:00:02','2025-04-15 04:10:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2394,'2025-04-15','06:00:01','2025-04-15 06:10:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2395,'2025-04-15','08:00:02','2025-04-15 08:11:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2396,'2025-04-15','10:00:01','2025-04-15 10:12:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2397,'2025-04-15','12:00:02','2025-04-15 12:12:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2398,'2025-04-15','14:00:02','2025-04-15 14:11:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2399,'2025-04-15','14:00:02','2025-04-15 14:11:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2400,'2025-04-15','16:00:02','2025-04-15 16:11:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2401,'2025-04-15','18:00:02','2025-04-15 18:11:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2402,'2025-04-15','20:00:02','2025-04-15 20:11:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2403,'2025-04-15','22:00:02','2025-04-15 22:11:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2404,'2025-04-16','00:00:02','2025-04-16 00:11:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2405,'2025-04-16','02:00:02','2025-04-16 02:09:54','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2406,'2025-04-16','04:00:03','2025-04-16 04:10:54','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2407,'2025-04-16','06:00:02','2025-04-16 06:10:33','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2408,'2025-04-16','08:00:03','2025-04-16 08:10:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2409,'2025-04-16','10:00:02','2025-04-16 10:11:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2410,'2025-04-16','12:00:02','2025-04-16 12:11:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2411,'2025-04-16','14:00:02','2025-04-16 14:10:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2412,'2025-04-16','14:00:02','2025-04-16 14:10:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2413,'2025-04-16','16:00:02','2025-04-16 16:10:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2414,'2025-04-16','18:00:01','2025-04-16 18:10:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2415,'2025-04-16','20:00:02','2025-04-16 20:10:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2416,'2025-04-16','22:00:01','2025-04-16 22:10:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2417,'2025-04-17','00:00:03','2025-04-17 00:09:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2418,'2025-04-17','02:00:01','2025-04-17 02:09:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2419,'2025-04-17','04:00:02','2025-04-17 04:09:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2420,'2025-04-17','06:00:02','2025-04-17 06:09:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2421,'2025-04-17','08:00:03','2025-04-17 08:10:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2422,'2025-04-17','10:00:02','2025-04-17 10:10:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2423,'2025-04-17','12:00:03','2025-04-17 12:11:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2424,'2025-04-17','14:00:02','2025-04-17 14:10:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2425,'2025-04-17','14:00:02','2025-04-17 14:10:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2426,'2025-04-17','16:00:02','2025-04-17 16:10:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2427,'2025-04-17','18:00:02','2025-04-17 18:10:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2428,'2025-04-17','20:00:02','2025-04-17 20:10:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2429,'2025-04-17','22:00:02','2025-04-17 22:10:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2430,'2025-04-18','00:00:03','2025-04-18 00:09:37','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2431,'2025-04-18','02:00:02','2025-04-18 02:09:01','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2432,'2025-04-18','04:00:03','2025-04-18 04:09:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2433,'2025-04-18','06:00:02','2025-04-18 06:09:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2434,'2025-04-18','08:00:01','2025-04-18 08:10:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2435,'2025-04-18','10:00:02','2025-04-18 10:10:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2436,'2025-04-18','12:00:02','2025-04-18 12:11:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2437,'2025-04-18','14:00:02','2025-04-18 14:10:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2438,'2025-04-18','14:00:02','2025-04-18 14:10:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2439,'2025-04-18','16:00:02','2025-04-18 16:10:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2440,'2025-04-18','18:00:01','2025-04-18 18:11:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2441,'2025-04-18','20:00:02','2025-04-18 20:10:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2442,'2025-04-18','22:00:01','2025-04-18 22:10:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2443,'2025-04-19','00:00:02','2025-04-19 00:09:48','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2444,'2025-04-19','02:00:02','2025-04-19 02:09:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2445,'2025-04-19','04:00:03','2025-04-19 04:09:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2446,'2025-04-19','06:00:02','2025-04-19 06:09:43','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2447,'2025-04-19','08:00:02','2025-04-19 08:10:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2448,'2025-04-19','10:00:02','2025-04-19 10:10:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2449,'2025-04-19','12:00:03','2025-04-19 12:11:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2450,'2025-04-19','14:00:01','2025-04-19 14:10:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2451,'2025-04-19','14:00:01','2025-04-19 14:10:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2452,'2025-04-19','16:00:02','2025-04-19 16:10:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2453,'2025-04-19','18:00:02','2025-04-19 18:10:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2454,'2025-04-19','20:00:01','2025-04-19 20:10:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2455,'2025-04-19','22:00:01','2025-04-19 22:09:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2456,'2025-04-20','00:00:02','2025-04-20 00:09:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2457,'2025-04-20','02:00:01','2025-04-20 02:09:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2458,'2025-04-20','04:00:03','2025-04-20 04:09:57','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2459,'2025-04-20','06:00:02','2025-04-20 06:09:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2460,'2025-04-20','08:00:02','2025-04-20 08:10:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2461,'2025-04-20','10:00:02','2025-04-20 10:09:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2462,'2025-04-20','12:00:02','2025-04-20 12:09:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2463,'2025-04-20','14:00:02','2025-04-20 14:09:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2464,'2025-04-20','14:00:02','2025-04-20 14:09:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2465,'2025-04-20','16:00:01','2025-04-20 16:09:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2466,'2025-04-20','18:00:02','2025-04-20 18:10:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2467,'2025-04-20','20:00:01','2025-04-20 20:09:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2468,'2025-04-20','22:00:02','2025-04-20 22:09:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2469,'2025-04-21','00:00:02','2025-04-21 00:09:46','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2470,'2025-04-21','02:00:01','2025-04-21 02:09:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2471,'2025-04-21','04:00:03','2025-04-21 04:09:48','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2472,'2025-04-21','06:00:02','2025-04-21 06:09:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2473,'2025-04-21','08:00:02','2025-04-21 08:10:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2474,'2025-04-21','10:00:02','2025-04-21 10:10:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2475,'2025-04-21','12:00:02','2025-04-21 12:11:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2476,'2025-04-21','14:00:02','2025-04-21 14:11:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2477,'2025-04-21','14:00:02','2025-04-21 14:11:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2478,'2025-04-21','16:00:03','2025-04-21 16:11:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2479,'2025-04-21','18:00:02','2025-04-21 18:12:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2480,'2025-04-21','20:00:02','2025-04-21 20:10:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2481,'2025-04-21','22:00:02','2025-04-21 22:10:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2482,'2025-04-22','00:00:03','2025-04-22 00:09:57','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2483,'2025-04-22','02:00:02','2025-04-22 02:09:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2484,'2025-04-22','04:00:03','2025-04-22 04:09:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2485,'2025-04-22','06:00:02','2025-04-22 06:09:37','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2486,'2025-04-22','08:00:02','2025-04-22 08:10:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2487,'2025-04-22','10:00:02','2025-04-22 10:10:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2488,'2025-04-22','12:00:01','2025-04-22 12:11:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2489,'2025-04-22','14:00:02','2025-04-22 14:09:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2490,'2025-04-22','14:00:02','2025-04-22 14:09:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2491,'2025-04-22','16:00:02','2025-04-22 16:10:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2492,'2025-04-22','18:00:01','2025-04-22 18:10:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2493,'2025-04-22','20:00:01','2025-04-22 20:10:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2494,'2025-04-22','22:00:01','2025-04-22 22:10:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2495,'2025-04-23','00:00:03','2025-04-23 00:09:38','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2496,'2025-04-23','02:00:01','2025-04-23 02:09:12','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2497,'2025-04-23','04:00:03','2025-04-23 04:09:52','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2498,'2025-04-23','06:00:02','2025-04-23 06:10:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2499,'2025-04-23','08:00:02','2025-04-23 08:10:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2500,'2025-04-23','10:00:01','2025-04-23 10:10:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2501,'2025-04-23','12:00:05','2025-04-23 12:12:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2502,'2025-04-23','14:00:02','2025-04-23 14:10:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2503,'2025-04-23','14:00:02','2025-04-23 14:10:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2504,'2025-04-23','16:00:01','2025-04-23 16:10:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2505,'2025-04-23','18:00:03','2025-04-23 18:11:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2506,'2025-04-23','20:00:02','2025-04-23 20:10:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2507,'2025-04-23','22:00:01','2025-04-23 22:10:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2508,'2025-04-24','00:00:03','2025-04-24 00:11:38','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2509,'2025-04-24','02:00:02','2025-04-24 02:09:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2510,'2025-04-24','04:00:03','2025-04-24 04:09:55','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2511,'2025-04-24','06:00:02','2025-04-24 06:09:44','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2512,'2025-04-24','08:00:02','2025-04-24 08:10:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2513,'2025-04-24','10:00:02','2025-04-24 10:10:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2514,'2025-04-24','12:00:02','2025-04-24 12:12:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2515,'2025-04-24','14:00:02','2025-04-24 14:12:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2516,'2025-04-24','14:00:02','2025-04-24 14:12:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2517,'2025-04-24','16:00:02','2025-04-24 16:11:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2518,'2025-04-24','18:00:02','2025-04-24 18:10:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2519,'2025-04-24','20:00:02','2025-04-24 20:10:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2520,'2025-04-24','22:00:01','2025-04-24 22:10:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2521,'2025-04-25','00:00:02','2025-04-25 00:10:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2522,'2025-04-25','02:00:01','2025-04-25 02:09:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2523,'2025-04-25','04:00:03','2025-04-25 04:09:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2524,'2025-04-25','06:00:03','2025-04-25 06:09:56','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2525,'2025-04-25','08:00:02','2025-04-25 08:10:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2526,'2025-04-25','10:00:01','2025-04-25 10:10:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2527,'2025-04-25','12:00:02','2025-04-25 12:11:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2528,'2025-04-25','14:00:02','2025-04-25 14:10:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2529,'2025-04-25','14:00:02','2025-04-25 14:10:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2530,'2025-04-25','16:00:02','2025-04-25 16:11:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2531,'2025-04-25','18:00:02','2025-04-25 18:11:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2532,'2025-04-25','20:00:01','2025-04-25 20:10:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2533,'2025-04-25','22:00:02','2025-04-25 22:11:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2534,'2025-04-26','00:00:02','2025-04-26 00:09:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2535,'2025-04-26','02:00:01','2025-04-26 02:09:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2536,'2025-04-26','04:00:02','2025-04-26 04:09:46','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2537,'2025-04-26','06:00:02','2025-04-26 06:10:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2538,'2025-04-26','08:00:05','2025-04-26 08:10:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2539,'2025-04-26','10:00:02','2025-04-26 10:10:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2540,'2025-04-26','12:00:02','2025-04-26 12:10:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2541,'2025-04-26','14:00:02','2025-04-26 14:11:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2542,'2025-04-26','14:00:02','2025-04-26 14:11:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2543,'2025-04-26','16:00:02','2025-04-26 16:11:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2544,'2025-04-26','18:00:02','2025-04-26 18:11:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2545,'2025-04-26','20:00:02','2025-04-26 20:10:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2546,'2025-04-26','22:00:02','2025-04-26 22:11:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2547,'2025-04-27','00:00:02','2025-04-27 00:10:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2548,'2025-04-27','02:00:02','2025-04-27 02:09:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2549,'2025-04-27','04:00:03','2025-04-27 04:09:46','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2550,'2025-04-27','06:00:03','2025-04-27 06:09:52','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2551,'2025-04-27','08:00:02','2025-04-27 08:10:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2552,'2025-04-27','10:00:02','2025-04-27 10:10:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2553,'2025-04-27','12:00:01','2025-04-27 12:09:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2554,'2025-04-27','14:00:02','2025-04-27 14:10:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2555,'2025-04-27','14:00:02','2025-04-27 14:10:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2556,'2025-04-27','16:00:01','2025-04-27 16:09:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2557,'2025-04-27','18:00:02','2025-04-27 18:09:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2558,'2025-04-27','20:00:01','2025-04-27 20:09:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2559,'2025-04-27','22:00:01','2025-04-27 22:09:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2560,'2025-04-28','00:00:03','2025-04-28 00:09:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2561,'2025-04-28','02:00:01','2025-04-28 02:09:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2562,'2025-04-28','04:00:03','2025-04-28 04:10:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2563,'2025-04-28','06:00:02','2025-04-28 06:09:31','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2564,'2025-04-28','08:00:02','2025-04-28 08:10:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2565,'2025-04-28','10:00:02','2025-04-28 10:10:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2566,'2025-04-28','12:00:02','2025-04-28 12:11:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2567,'2025-04-28','14:00:02','2025-04-28 14:10:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2568,'2025-04-28','14:00:02','2025-04-28 14:10:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2569,'2025-04-28','16:00:01','2025-04-28 16:10:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2570,'2025-04-28','18:00:02','2025-04-28 18:10:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2571,'2025-04-28','20:00:02','2025-04-28 20:10:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2572,'2025-04-28','22:00:01','2025-04-28 22:11:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2573,'2025-04-29','00:00:02','2025-04-29 00:09:51','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2574,'2025-04-29','02:00:02','2025-04-29 02:09:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2575,'2025-04-29','04:00:02','2025-04-29 04:09:49','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2576,'2025-04-29','06:00:01','2025-04-29 06:09:51','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2577,'2025-04-29','08:00:02','2025-04-29 08:10:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2578,'2025-04-29','10:00:01','2025-04-29 10:10:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2579,'2025-04-29','12:00:02','2025-04-29 12:11:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2580,'2025-04-29','14:00:01','2025-04-29 14:12:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2581,'2025-04-29','14:00:01','2025-04-29 14:12:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2582,'2025-04-29','16:00:02','2025-04-29 16:10:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2583,'2025-04-29','18:00:02','2025-04-29 18:10:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2584,'2025-04-29','20:00:02','2025-04-29 20:10:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2585,'2025-04-29','22:00:02','2025-04-29 22:10:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2586,'2025-04-30','00:00:02','2025-04-30 00:10:05','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2587,'2025-04-30','02:00:02','2025-04-30 02:09:31','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2588,'2025-04-30','04:00:02','2025-04-30 04:09:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2589,'2025-04-30','06:00:02','2025-04-30 06:09:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2590,'2025-04-30','08:00:02','2025-04-30 08:10:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2591,'2025-04-30','10:00:01','2025-04-30 10:10:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2592,'2025-04-30','12:00:01','2025-04-30 12:11:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2593,'2025-04-30','14:00:01','2025-04-30 14:10:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2594,'2025-04-30','14:00:01','2025-04-30 14:10:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2595,'2025-04-30','16:00:01','2025-04-30 16:10:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2596,'2025-04-30','18:00:02','2025-04-30 18:19:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2597,'2025-04-30','20:00:03','2025-04-30 20:15:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2598,'2025-04-30','22:00:01','2025-04-30 22:10:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2599,'2025-05-01','00:00:03','2025-05-01 00:10:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2600,'2025-05-01','02:00:02','2025-05-01 02:09:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2601,'2025-05-01','04:00:02','2025-05-01 04:10:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2602,'2025-05-01','06:00:02','2025-05-01 06:10:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2603,'2025-05-01','08:00:02','2025-05-01 08:10:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2604,'2025-05-01','10:00:02','2025-05-01 10:10:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2605,'2025-05-01','12:00:02','2025-05-01 12:11:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2606,'2025-05-01','14:00:01','2025-05-01 14:10:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2607,'2025-05-01','14:00:01','2025-05-01 14:10:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2608,'2025-05-01','16:00:01','2025-05-01 16:10:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2609,'2025-05-01','18:00:01','2025-05-01 18:10:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2610,'2025-05-01','20:00:01','2025-05-01 20:10:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2611,'2025-05-01','22:00:01','2025-05-01 22:10:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2612,'2025-05-02','00:00:02','2025-05-02 00:11:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2613,'2025-05-02','02:00:02','2025-05-02 02:09:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2614,'2025-05-02','04:00:04','2025-05-02 04:09:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2615,'2025-05-02','06:00:02','2025-05-02 06:09:33','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2616,'2025-05-02','08:00:02','2025-05-02 08:10:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2617,'2025-05-02','10:00:01','2025-05-02 10:10:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2618,'2025-05-02','12:00:02','2025-05-02 12:11:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2619,'2025-05-02','14:00:01','2025-05-02 14:10:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2620,'2025-05-02','14:00:01','2025-05-02 14:10:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2621,'2025-05-02','16:00:02','2025-05-02 16:10:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2622,'2025-05-02','18:00:01','2025-05-02 18:11:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2623,'2025-05-02','20:00:01','2025-05-02 20:10:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2624,'2025-05-02','22:00:02','2025-05-02 22:10:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2625,'2025-05-03','00:00:01','2025-05-03 00:09:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2626,'2025-05-03','02:00:01','2025-05-03 02:09:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2627,'2025-05-03','04:00:02','2025-05-03 04:09:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2628,'2025-05-03','06:00:02','2025-05-03 06:10:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2629,'2025-05-03','08:00:02','2025-05-03 08:10:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2630,'2025-05-03','10:00:01','2025-05-03 10:12:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2631,'2025-05-03','12:00:02','2025-05-03 12:16:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2632,'2025-05-03','14:00:04','2025-05-03 14:31:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2633,'2025-05-03','14:00:04','2025-05-03 14:31:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2634,'2025-05-03','16:00:03','2025-05-03 16:39:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2635,'2025-05-03','18:00:02','2025-05-03 18:34:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2636,'2025-05-03','20:00:02','2025-05-03 20:12:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2637,'2025-05-03','22:00:01','2025-05-03 22:11:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2638,'2025-05-04','00:00:02','2025-05-04 00:12:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2639,'2025-05-04','02:00:02','2025-05-04 02:10:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2640,'2025-05-04','04:00:03','2025-05-04 04:10:12','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2641,'2025-05-04','06:00:02','2025-05-04 06:09:54','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2642,'2025-05-04','08:00:02','2025-05-04 08:11:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2643,'2025-05-04','10:00:02','2025-05-04 10:10:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2644,'2025-05-04','12:00:02','2025-05-04 12:10:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2645,'2025-05-04','14:00:01','2025-05-04 14:10:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2646,'2025-05-04','14:00:01','2025-05-04 14:10:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2647,'2025-05-04','16:00:02','2025-05-04 16:10:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2648,'2025-05-04','18:00:02','2025-05-04 18:10:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2649,'2025-05-04','20:00:02','2025-05-04 20:10:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2650,'2025-05-04','22:00:01','2025-05-04 22:10:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2651,'2025-05-05','00:00:03','2025-05-05 00:09:37','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2652,'2025-05-05','02:00:01','2025-05-05 02:09:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2653,'2025-05-05','04:00:03','2025-05-05 04:10:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2654,'2025-05-05','06:00:02','2025-05-05 06:09:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2655,'2025-05-05','08:00:02','2025-05-05 08:10:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2656,'2025-05-05','10:00:02','2025-05-05 10:10:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2657,'2025-05-05','12:00:02','2025-05-05 12:12:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2658,'2025-05-05','14:00:02','2025-05-05 14:15:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2659,'2025-05-05','14:00:02','2025-05-05 14:15:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2660,'2025-05-05','16:00:02','2025-05-05 16:11:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2661,'2025-05-05','18:00:02','2025-05-05 18:11:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2662,'2025-05-05','20:00:02','2025-05-05 20:10:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2663,'2025-05-05','22:00:01','2025-05-05 22:10:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2664,'2025-05-06','00:00:02','2025-05-06 00:10:44','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2665,'2025-05-06','02:00:02','2025-05-06 02:09:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2666,'2025-05-06','04:00:03','2025-05-06 04:09:56','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2667,'2025-05-06','06:00:02','2025-05-06 06:09:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2668,'2025-05-06','08:00:02','2025-05-06 08:10:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2669,'2025-05-06','10:00:02','2025-05-06 10:10:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2670,'2025-05-06','12:00:02','2025-05-06 12:11:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2671,'2025-05-06','14:00:01','2025-05-06 14:11:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2672,'2025-05-06','14:00:01','2025-05-06 14:11:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2673,'2025-05-06','16:00:01','2025-05-06 16:10:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2674,'2025-05-06','18:00:02','2025-05-06 18:11:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2675,'2025-05-06','20:00:02','2025-05-06 20:10:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2676,'2025-05-06','22:00:01','2025-05-06 22:11:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2677,'2025-05-07','00:00:02','2025-05-07 00:09:42','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2678,'2025-05-07','02:00:01','2025-05-07 02:09:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2679,'2025-05-07','04:00:04','2025-05-07 04:09:59','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2680,'2025-05-07','06:00:02','2025-05-07 06:09:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2681,'2025-05-07','08:00:02','2025-05-07 08:10:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2682,'2025-05-07','10:00:02','2025-05-07 10:10:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2683,'2025-05-07','12:00:02','2025-05-07 12:10:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2684,'2025-05-07','14:00:02','2025-05-07 14:10:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2685,'2025-05-07','14:00:02','2025-05-07 14:10:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2686,'2025-05-07','16:00:01','2025-05-07 16:10:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2687,'2025-05-07','18:00:01','2025-05-07 18:11:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2688,'2025-05-07','20:00:01','2025-05-07 20:10:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2689,'2025-05-07','22:00:02','2025-05-07 22:10:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2690,'2025-05-08','00:00:02','2025-05-08 00:09:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2691,'2025-05-08','02:00:02','2025-05-08 02:09:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2692,'2025-05-08','04:00:02','2025-05-08 04:10:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2693,'2025-05-08','06:00:02','2025-05-08 06:09:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2694,'2025-05-08','08:00:02','2025-05-08 08:10:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2695,'2025-05-08','10:00:02','2025-05-08 10:10:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2696,'2025-05-08','12:00:02','2025-05-08 12:11:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2697,'2025-05-08','14:00:02','2025-05-08 14:11:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2698,'2025-05-08','14:00:02','2025-05-08 14:11:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2699,'2025-05-08','16:00:02','2025-05-08 16:10:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2700,'2025-05-08','18:00:02','2025-05-08 18:11:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2701,'2025-05-08','20:00:02','2025-05-08 20:10:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2702,'2025-05-08','22:00:02','2025-05-08 22:11:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2703,'2025-05-09','00:00:03','2025-05-09 00:10:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2704,'2025-05-09','02:00:02','2025-05-09 02:09:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2705,'2025-05-09','04:00:03','2025-05-09 04:10:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2706,'2025-05-09','06:00:02','2025-05-09 06:09:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2707,'2025-05-09','08:00:02','2025-05-09 08:10:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2708,'2025-05-09','10:00:02','2025-05-09 10:10:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2709,'2025-05-09','12:00:02','2025-05-09 12:10:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2710,'2025-05-09','14:00:01','2025-05-09 14:10:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2711,'2025-05-09','14:00:01','2025-05-09 14:10:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2712,'2025-05-09','16:00:02','2025-05-09 16:10:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2713,'2025-05-09','18:00:03','2025-05-09 18:11:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2714,'2025-05-09','20:00:03','2025-05-09 20:10:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2715,'2025-05-09','22:00:01','2025-05-09 22:10:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2716,'2025-05-10','00:00:02','2025-05-10 00:09:47','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2717,'2025-05-10','02:00:02','2025-05-10 02:09:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2718,'2025-05-10','04:00:03','2025-05-10 04:09:54','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2719,'2025-05-10','06:00:02','2025-05-10 06:09:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2720,'2025-05-10','08:00:02','2025-05-10 08:10:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2721,'2025-05-10','10:00:02','2025-05-10 10:10:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2722,'2025-05-10','12:00:01','2025-05-10 12:10:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2723,'2025-05-10','14:00:02','2025-05-10 14:10:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2724,'2025-05-10','14:00:02','2025-05-10 14:10:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2725,'2025-05-10','16:00:01','2025-05-10 16:10:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2726,'2025-05-10','18:00:02','2025-05-10 18:11:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2727,'2025-05-10','20:00:02','2025-05-10 20:10:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2728,'2025-05-10','22:00:01','2025-05-10 22:10:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2729,'2025-05-11','00:00:02','2025-05-11 00:09:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2730,'2025-05-11','02:00:02','2025-05-11 02:09:44','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2731,'2025-05-11','04:00:02','2025-05-11 04:10:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2732,'2025-05-11','06:00:02','2025-05-11 06:10:03','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2733,'2025-05-11','08:00:02','2025-05-11 08:10:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2734,'2025-05-11','10:00:02','2025-05-11 10:10:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2735,'2025-05-11','12:00:02','2025-05-11 12:10:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2736,'2025-05-11','14:00:01','2025-05-11 14:09:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2737,'2025-05-11','14:00:01','2025-05-11 14:09:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2738,'2025-05-11','16:00:02','2025-05-11 16:09:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2739,'2025-05-11','18:00:02','2025-05-11 18:10:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2740,'2025-05-11','20:00:02','2025-05-11 20:10:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2741,'2025-05-11','22:00:01','2025-05-11 22:09:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2742,'2025-05-12','00:00:02','2025-05-12 00:09:05','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2743,'2025-05-12','02:00:02','2025-05-12 02:09:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2744,'2025-05-12','04:00:03','2025-05-12 04:09:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2745,'2025-05-12','06:00:02','2025-05-12 06:09:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2746,'2025-05-12','08:00:02','2025-05-12 08:09:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2747,'2025-05-12','10:00:03','2025-05-12 10:10:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2748,'2025-05-12','12:00:02','2025-05-12 12:10:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2749,'2025-05-12','14:00:01','2025-05-12 14:10:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2750,'2025-05-12','14:00:01','2025-05-12 14:10:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2751,'2025-05-12','16:00:01','2025-05-12 16:10:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2752,'2025-05-12','18:00:02','2025-05-12 18:11:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2753,'2025-05-12','20:00:02','2025-05-12 20:10:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2754,'2025-05-12','22:00:02','2025-05-12 22:10:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2755,'2025-05-13','00:00:02','2025-05-13 00:09:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2756,'2025-05-13','02:00:01','2025-05-13 02:09:32','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2757,'2025-05-13','04:00:03','2025-05-13 04:10:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2758,'2025-05-13','06:00:02','2025-05-13 06:09:59','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2759,'2025-05-13','08:00:03','2025-05-13 08:10:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2760,'2025-05-13','10:00:02','2025-05-13 10:10:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2761,'2025-05-13','12:00:02','2025-05-13 12:10:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2762,'2025-05-13','14:00:01','2025-05-13 14:10:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2763,'2025-05-13','14:00:01','2025-05-13 14:10:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2764,'2025-05-13','16:00:02','2025-05-13 16:10:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2765,'2025-05-13','18:00:02','2025-05-13 18:11:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2766,'2025-05-13','20:00:02','2025-05-13 20:10:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2767,'2025-05-13','22:00:02','2025-05-13 22:10:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2768,'2025-05-14','00:00:03','2025-05-14 00:09:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2769,'2025-05-14','02:00:02','2025-05-14 02:09:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2770,'2025-05-14','04:00:03','2025-05-14 04:09:56','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2771,'2025-05-14','06:00:02','2025-05-14 06:10:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2772,'2025-05-14','08:00:02','2025-05-14 08:10:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2773,'2025-05-14','10:00:02','2025-05-14 10:10:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2774,'2025-05-14','12:00:02','2025-05-14 12:12:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2775,'2025-05-14','14:00:01','2025-05-14 14:11:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2776,'2025-05-14','14:00:01','2025-05-14 14:11:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2777,'2025-05-14','16:00:02','2025-05-14 16:11:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2778,'2025-05-14','18:00:02','2025-05-14 18:10:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2779,'2025-05-14','20:00:01','2025-05-14 20:10:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2780,'2025-05-14','22:00:02','2025-05-14 22:10:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2781,'2025-05-15','00:00:02','2025-05-15 00:09:44','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2782,'2025-05-15','02:00:02','2025-05-15 02:09:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2783,'2025-05-15','04:00:03','2025-05-15 04:09:55','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2784,'2025-05-15','06:00:02','2025-05-15 06:09:50','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2785,'2025-05-15','08:00:02','2025-05-15 08:10:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2786,'2025-05-15','10:00:01','2025-05-15 10:10:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2787,'2025-05-15','12:00:02','2025-05-15 12:11:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2788,'2025-05-15','14:00:01','2025-05-15 14:10:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2789,'2025-05-15','14:00:01','2025-05-15 14:10:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2790,'2025-05-15','16:00:02','2025-05-15 16:10:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2791,'2025-05-15','18:00:02','2025-05-15 18:11:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2792,'2025-05-15','20:00:01','2025-05-15 20:10:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2793,'2025-05-15','22:00:01','2025-05-15 22:10:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2794,'2025-05-16','00:00:03','2025-05-16 00:09:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2795,'2025-05-16','02:00:02','2025-05-16 02:09:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2796,'2025-05-16','04:00:03','2025-05-16 04:09:48','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2797,'2025-05-16','06:00:02','2025-05-16 06:09:32','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2798,'2025-05-16','08:00:02','2025-05-16 08:10:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2799,'2025-05-16','10:00:01','2025-05-16 10:10:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2800,'2025-05-16','12:00:03','2025-05-16 12:20:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2801,'2025-05-16','14:00:03','2025-05-16 14:17:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2802,'2025-05-16','14:00:03','2025-05-16 14:17:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2803,'2025-05-16','16:00:02','2025-05-16 16:10:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2804,'2025-05-16','18:00:02','2025-05-16 18:12:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2805,'2025-05-16','20:00:02','2025-05-16 20:10:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2806,'2025-05-16','22:00:02','2025-05-16 22:10:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2807,'2025-05-17','00:00:02','2025-05-17 00:09:37','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2808,'2025-05-17','02:00:02','2025-05-17 02:09:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2809,'2025-05-17','04:00:02','2025-05-17 04:09:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2810,'2025-05-17','06:00:02','2025-05-17 06:10:05','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2811,'2025-05-17','08:00:02','2025-05-17 08:10:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2812,'2025-05-17','10:00:02','2025-05-17 10:10:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2813,'2025-05-17','12:00:02','2025-05-17 12:11:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2814,'2025-05-17','14:00:02','2025-05-17 14:11:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2815,'2025-05-17','14:00:02','2025-05-17 14:11:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2816,'2025-05-17','16:00:02','2025-05-17 16:10:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2817,'2025-05-17','18:00:02','2025-05-17 18:10:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2818,'2025-05-17','20:00:02','2025-05-17 20:10:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2819,'2025-05-17','22:00:02','2025-05-17 22:10:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2820,'2025-05-18','00:00:02','2025-05-18 00:09:52','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2821,'2025-05-18','02:00:01','2025-05-18 02:09:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2822,'2025-05-18','04:00:03','2025-05-18 04:10:05','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2823,'2025-05-18','06:00:02','2025-05-18 06:10:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2824,'2025-05-18','08:00:02','2025-05-18 08:10:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2825,'2025-05-18','10:00:02','2025-05-18 10:10:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2826,'2025-05-18','12:00:02','2025-05-18 12:10:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2827,'2025-05-18','14:00:02','2025-05-18 14:08:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2828,'2025-05-18','14:00:02','2025-05-18 14:08:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2829,'2025-05-18','16:00:02','2025-05-18 16:10:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2830,'2025-05-18','18:00:02','2025-05-18 18:10:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2831,'2025-05-18','20:00:02','2025-05-18 20:10:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2832,'2025-05-18','22:00:01','2025-05-18 22:10:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2833,'2025-05-19','00:00:02','2025-05-19 00:09:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2834,'2025-05-19','02:00:02','2025-05-19 02:09:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2835,'2025-05-19','04:00:03','2025-05-19 04:09:57','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2836,'2025-05-19','06:00:02','2025-05-19 06:09:45','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2837,'2025-05-19','08:00:02','2025-05-19 08:10:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2838,'2025-05-19','10:00:02','2025-05-19 10:10:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2839,'2025-05-19','12:00:02','2025-05-19 12:11:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2840,'2025-05-19','14:00:02','2025-05-19 14:10:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2841,'2025-05-19','14:00:02','2025-05-19 14:10:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2842,'2025-05-19','16:00:01','2025-05-19 16:11:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2843,'2025-05-19','18:00:01','2025-05-19 18:11:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2844,'2025-05-19','20:00:01','2025-05-19 20:11:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2845,'2025-05-19','22:00:01','2025-05-19 22:11:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2846,'2025-05-20','00:00:02','2025-05-20 00:09:56','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2847,'2025-05-20','02:00:01','2025-05-20 02:09:33','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2848,'2025-05-20','04:00:03','2025-05-20 04:10:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2849,'2025-05-20','06:00:03','2025-05-20 06:10:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2850,'2025-05-20','08:00:02','2025-05-20 08:10:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2851,'2025-05-20','10:00:02','2025-05-20 10:10:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2852,'2025-05-20','12:00:01','2025-05-20 12:12:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2853,'2025-05-20','14:00:02','2025-05-20 14:11:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2854,'2025-05-20','14:00:02','2025-05-20 14:11:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2855,'2025-05-20','16:00:02','2025-05-20 16:11:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2856,'2025-05-20','18:00:02','2025-05-20 18:12:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2857,'2025-05-20','20:00:02','2025-05-20 20:11:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2858,'2025-05-20','22:00:01','2025-05-20 22:11:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2859,'2025-05-21','00:00:02','2025-05-21 00:10:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2860,'2025-05-21','02:00:02','2025-05-21 02:09:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2861,'2025-05-21','04:00:02','2025-05-21 04:10:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2862,'2025-05-21','06:00:02','2025-05-21 06:10:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2863,'2025-05-21','08:00:02','2025-05-21 08:10:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2864,'2025-05-21','10:00:02','2025-05-21 10:10:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2865,'2025-05-21','12:00:03','2025-05-21 12:12:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2866,'2025-05-21','14:00:03','2025-05-21 14:11:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2867,'2025-05-21','14:00:03','2025-05-21 14:11:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2868,'2025-05-21','16:00:01','2025-05-21 16:10:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2869,'2025-05-21','18:00:02','2025-05-21 18:11:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2870,'2025-05-21','20:00:01','2025-05-21 20:11:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2871,'2025-05-21','22:00:01','2025-05-21 22:11:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2872,'2025-05-22','00:00:02','2025-05-22 00:10:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2873,'2025-05-22','02:00:02','2025-05-22 02:09:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2874,'2025-05-22','04:00:02','2025-05-22 04:10:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2875,'2025-05-22','06:00:02','2025-05-22 06:10:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2876,'2025-05-22','08:00:02','2025-05-22 08:10:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2877,'2025-05-22','10:00:02','2025-05-22 10:10:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2878,'2025-05-22','12:00:02','2025-05-22 12:13:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2879,'2025-05-22','14:00:02','2025-05-22 14:11:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2880,'2025-05-22','14:00:02','2025-05-22 14:11:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2881,'2025-05-22','16:00:02','2025-05-22 16:11:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2882,'2025-05-22','18:00:02','2025-05-22 18:11:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2883,'2025-05-22','20:00:02','2025-05-22 20:11:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2884,'2025-05-22','22:00:02','2025-05-22 22:11:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2885,'2025-05-23','00:00:03','2025-05-23 00:09:42','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2886,'2025-05-23','02:00:02','2025-05-23 02:09:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2887,'2025-05-23','04:00:03','2025-05-23 04:10:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2888,'2025-05-23','06:00:02','2025-05-23 06:10:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2889,'2025-05-23','08:00:02','2025-05-23 08:10:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2890,'2025-05-23','10:00:01','2025-05-23 10:10:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2891,'2025-05-23','12:00:02','2025-05-23 12:11:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2892,'2025-05-23','14:00:02','2025-05-23 14:10:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2893,'2025-05-23','14:00:02','2025-05-23 14:10:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2894,'2025-05-23','16:00:02','2025-05-23 16:10:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2895,'2025-05-23','18:00:01','2025-05-23 18:11:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2896,'2025-05-23','20:00:02','2025-05-23 20:11:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2897,'2025-05-23','22:00:01','2025-05-23 22:10:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2898,'2025-05-24','00:00:02','2025-05-24 00:09:52','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2899,'2025-05-24','02:00:02','2025-05-24 02:09:49','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2900,'2025-05-24','04:00:02','2025-05-24 04:10:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2901,'2025-05-24','06:00:02','2025-05-24 06:10:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2902,'2025-05-24','08:00:02','2025-05-24 08:10:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2903,'2025-05-24','10:00:02','2025-05-24 10:10:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2904,'2025-05-24','12:00:02','2025-05-24 12:11:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2905,'2025-05-24','14:00:01','2025-05-24 14:10:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2906,'2025-05-24','14:00:01','2025-05-24 14:10:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2907,'2025-05-24','16:00:01','2025-05-24 16:10:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2908,'2025-05-24','18:00:02','2025-05-24 18:11:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2909,'2025-05-24','20:00:02','2025-05-24 20:11:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2910,'2025-05-24','22:00:02','2025-05-24 22:10:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2911,'2025-05-25','00:00:02','2025-05-25 00:09:33','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2912,'2025-05-25','02:00:02','2025-05-25 02:09:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2913,'2025-05-25','04:00:02','2025-05-25 04:10:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2914,'2025-05-25','06:00:02','2025-05-25 06:10:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2915,'2025-05-25','08:00:02','2025-05-25 08:11:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2916,'2025-05-25','10:00:02','2025-05-25 10:11:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2917,'2025-05-25','12:00:02','2025-05-25 12:11:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2918,'2025-05-25','14:00:02','2025-05-25 14:10:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2919,'2025-05-25','14:00:02','2025-05-25 14:10:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2920,'2025-05-25','16:00:02','2025-05-25 16:10:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2921,'2025-05-25','18:00:02','2025-05-25 18:10:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2922,'2025-05-25','20:00:02','2025-05-25 20:10:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2923,'2025-05-25','22:00:01','2025-05-25 22:10:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2924,'2025-05-26','00:00:03','2025-05-26 00:09:49','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2925,'2025-05-26','02:00:02','2025-05-26 02:09:33','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2926,'2025-05-26','04:00:03','2025-05-26 04:10:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2927,'2025-05-26','06:00:02','2025-05-26 06:10:01','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2928,'2025-05-26','08:00:02','2025-05-26 08:10:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2929,'2025-05-26','10:00:02','2025-05-26 10:11:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2930,'2025-05-26','12:00:02','2025-05-26 12:11:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2931,'2025-05-26','14:00:01','2025-05-26 14:11:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2932,'2025-05-26','14:00:01','2025-05-26 14:11:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2933,'2025-05-26','16:00:02','2025-05-26 16:11:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2934,'2025-05-26','18:00:02','2025-05-26 18:11:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2935,'2025-05-26','20:00:02','2025-05-26 20:11:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2936,'2025-05-26','22:00:01','2025-05-26 22:11:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2937,'2025-05-27','00:00:02','2025-05-27 00:10:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2938,'2025-05-27','02:00:02','2025-05-27 02:09:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2939,'2025-05-27','04:00:03','2025-05-27 04:10:03','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2940,'2025-05-27','06:00:02','2025-05-27 06:10:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2941,'2025-05-27','08:00:02','2025-05-27 08:10:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2942,'2025-05-27','10:00:03','2025-05-27 10:10:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2943,'2025-05-27','12:00:02','2025-05-27 12:11:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2944,'2025-05-27','14:00:02','2025-05-27 14:11:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2945,'2025-05-27','14:00:02','2025-05-27 14:11:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2946,'2025-05-27','16:00:02','2025-05-27 16:11:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2947,'2025-05-27','18:00:02','2025-05-27 18:11:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2948,'2025-05-27','20:00:02','2025-05-27 20:12:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2949,'2025-05-27','22:00:01','2025-05-27 22:11:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2950,'2025-05-28','00:00:03','2025-05-28 00:10:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2951,'2025-05-28','02:00:02','2025-05-28 02:09:50','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2952,'2025-05-28','04:00:03','2025-05-28 04:10:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2953,'2025-05-28','06:00:02','2025-05-28 06:10:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2954,'2025-05-28','08:00:03','2025-05-28 08:10:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2955,'2025-05-28','10:00:01','2025-05-28 10:10:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2956,'2025-05-28','12:00:02','2025-05-28 12:11:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2957,'2025-05-28','14:00:02','2025-05-28 14:11:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2958,'2025-05-28','14:00:02','2025-05-28 14:11:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2959,'2025-05-28','16:00:02','2025-05-28 16:10:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2960,'2025-05-28','18:00:01','2025-05-28 18:11:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2961,'2025-05-28','20:00:03','2025-05-28 20:11:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2962,'2025-05-28','22:00:01','2025-05-28 22:11:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2963,'2025-05-29','00:00:03','2025-05-29 00:10:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2964,'2025-05-29','02:00:02','2025-05-29 02:09:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2965,'2025-05-29','04:00:03','2025-05-29 04:10:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2966,'2025-05-29','06:00:02','2025-05-29 06:10:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2967,'2025-05-29','08:00:02','2025-05-29 08:10:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2968,'2025-05-29','10:00:02','2025-05-29 10:10:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2969,'2025-05-29','12:00:01','2025-05-29 12:11:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2970,'2025-05-29','14:00:01','2025-05-29 14:11:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2971,'2025-05-29','14:00:01','2025-05-29 14:11:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2972,'2025-05-29','16:00:02','2025-05-29 16:11:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2973,'2025-05-29','18:00:02','2025-05-29 18:11:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2974,'2025-05-29','20:00:02','2025-05-29 20:11:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2975,'2025-05-29','22:00:01','2025-05-29 22:17:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2976,'2025-05-30','00:00:02','2025-05-30 00:11:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2977,'2025-05-30','02:00:02','2025-05-30 02:11:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2978,'2025-05-30','04:00:02','2025-05-30 04:11:12','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2979,'2025-05-30','06:00:03','2025-05-30 06:11:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2980,'2025-05-30','08:00:01','2025-05-30 08:11:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2981,'2025-05-30','10:00:01','2025-05-30 10:12:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2982,'2025-05-30','12:00:03','2025-05-30 12:14:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2983,'2025-05-30','14:00:02','2025-05-30 14:11:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2984,'2025-05-30','14:00:02','2025-05-30 14:11:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2985,'2025-05-30','16:00:02','2025-05-30 16:11:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2986,'2025-05-30','18:00:01','2025-05-30 18:11:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2987,'2025-05-30','20:00:02','2025-05-30 20:11:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2988,'2025-05-30','22:00:01','2025-05-30 22:11:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2989,'2025-05-31','00:00:03','2025-05-31 00:09:43','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2990,'2025-05-31','02:00:02','2025-05-31 02:09:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2991,'2025-05-31','04:00:03','2025-05-31 04:10:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2992,'2025-05-31','06:00:03','2025-05-31 06:10:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2993,'2025-05-31','08:00:02','2025-05-31 08:10:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2994,'2025-05-31','10:00:01','2025-05-31 10:10:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2995,'2025-05-31','12:00:02','2025-05-31 12:11:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2996,'2025-05-31','14:00:01','2025-05-31 14:09:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2997,'2025-05-31','14:00:01','2025-05-31 14:09:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2998,'2025-05-31','16:00:02','2025-05-31 16:11:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(2999,'2025-05-31','18:00:02','2025-05-31 18:11:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3000,'2025-05-31','20:00:02','2025-05-31 20:11:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3001,'2025-05-31','22:00:02','2025-05-31 22:11:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3002,'2025-06-01','00:00:02','2025-06-01 00:10:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3003,'2025-06-01','02:00:02','2025-06-01 02:09:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3004,'2025-06-01','04:00:02','2025-06-01 04:10:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3005,'2025-06-01','06:00:02','2025-06-01 06:10:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3006,'2025-06-01','08:00:02','2025-06-01 08:11:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3007,'2025-06-01','10:00:02','2025-06-01 10:10:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3008,'2025-06-01','12:00:02','2025-06-01 12:10:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3009,'2025-06-01','14:00:02','2025-06-01 14:10:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3010,'2025-06-01','14:00:02','2025-06-01 14:10:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3011,'2025-06-01','16:00:02','2025-06-01 16:10:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3012,'2025-06-01','18:00:02','2025-06-01 18:10:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3013,'2025-06-01','20:00:02','2025-06-01 20:10:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3014,'2025-06-01','22:00:01','2025-06-01 22:10:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3015,'2025-06-02','00:00:03','2025-06-02 00:09:31','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3016,'2025-06-02','02:00:02','2025-06-02 02:09:31','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3017,'2025-06-02','04:00:03','2025-06-02 04:10:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3018,'2025-06-02','06:00:02','2025-06-02 06:09:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3019,'2025-06-02','08:00:03','2025-06-02 08:10:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3020,'2025-06-02','10:00:02','2025-06-02 10:10:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3021,'2025-06-02','12:00:02','2025-06-02 12:11:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3022,'2025-06-02','14:00:02','2025-06-02 14:11:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3023,'2025-06-02','14:00:02','2025-06-02 14:11:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3024,'2025-06-02','16:00:02','2025-06-02 16:11:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3025,'2025-06-02','18:00:02','2025-06-02 18:11:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3026,'2025-06-02','20:00:02','2025-06-02 20:11:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3027,'2025-06-02','22:00:02','2025-06-02 22:11:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3028,'2025-06-03','00:00:02','2025-06-03 00:09:46','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3029,'2025-06-03','02:00:01','2025-06-03 02:09:33','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3030,'2025-06-03','04:00:03','2025-06-03 04:10:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3031,'2025-06-03','06:00:02','2025-06-03 06:10:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3032,'2025-06-03','08:00:02','2025-06-03 08:10:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3033,'2025-06-03','10:00:01','2025-06-03 10:12:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3034,'2025-06-03','12:00:03','2025-06-03 12:14:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3035,'2025-06-03','14:00:01','2025-06-03 14:11:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3036,'2025-06-03','14:00:01','2025-06-03 14:11:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3037,'2025-06-03','16:00:01','2025-06-03 16:11:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3038,'2025-06-03','18:00:02','2025-06-03 18:11:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3039,'2025-06-03','20:00:02','2025-06-03 20:11:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3040,'2025-06-03','22:00:02','2025-06-03 22:12:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3041,'2025-06-04','00:00:02','2025-06-04 00:10:42','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3042,'2025-06-04','02:00:02','2025-06-04 02:10:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3043,'2025-06-04','04:00:04','2025-06-04 04:10:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3044,'2025-06-04','06:00:03','2025-06-04 06:10:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3045,'2025-06-04','08:00:03','2025-06-04 08:11:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3046,'2025-06-04','10:00:01','2025-06-04 10:11:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3047,'2025-06-04','12:00:03','2025-06-04 12:13:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3048,'2025-06-04','14:00:02','2025-06-04 14:11:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3049,'2025-06-04','14:00:02','2025-06-04 14:11:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3050,'2025-06-04','16:00:02','2025-06-04 16:11:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3051,'2025-06-04','18:00:03','2025-06-04 18:11:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3052,'2025-06-04','20:00:02','2025-06-04 20:11:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3053,'2025-06-04','22:00:01','2025-06-04 22:11:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3054,'2025-06-05','00:00:03','2025-06-05 00:09:49','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3055,'2025-06-05','02:00:02','2025-06-05 02:09:37','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3056,'2025-06-05','04:00:03','2025-06-05 04:10:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3057,'2025-06-05','06:00:02','2025-06-05 06:10:01','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3058,'2025-06-05','08:00:02','2025-06-05 08:10:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3059,'2025-06-05','10:00:02','2025-06-05 10:11:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3060,'2025-06-05','12:00:01','2025-06-05 12:12:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3061,'2025-06-05','14:00:03','2025-06-05 14:12:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3062,'2025-06-05','14:00:03','2025-06-05 14:12:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3063,'2025-06-05','16:00:01','2025-06-05 16:11:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3064,'2025-06-05','18:00:02','2025-06-05 18:11:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3065,'2025-06-05','20:00:02','2025-06-05 20:11:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3066,'2025-06-05','22:00:01','2025-06-05 22:12:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3067,'2025-06-06','00:00:03','2025-06-06 00:11:05','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3068,'2025-06-06','02:00:02','2025-06-06 02:10:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3069,'2025-06-06','04:00:03','2025-06-06 04:10:52','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3070,'2025-06-06','06:00:04','2025-06-06 06:10:38','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3071,'2025-06-06','08:00:02','2025-06-06 08:11:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3072,'2025-06-06','10:00:01','2025-06-06 10:11:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3073,'2025-06-06','12:00:02','2025-06-06 12:12:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3074,'2025-06-06','14:00:03','2025-06-06 14:12:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3075,'2025-06-06','14:00:03','2025-06-06 14:12:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3076,'2025-06-06','16:00:02','2025-06-06 16:12:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3077,'2025-06-06','18:00:02','2025-06-06 18:12:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3078,'2025-06-06','20:00:02','2025-06-06 20:11:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3079,'2025-06-06','22:00:02','2025-06-06 22:11:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3080,'2025-06-07','00:00:03','2025-06-07 00:10:57','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3081,'2025-06-07','02:00:02','2025-06-07 02:10:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3082,'2025-06-07','04:00:03','2025-06-07 04:10:52','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3083,'2025-06-07','06:00:02','2025-06-07 06:10:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3084,'2025-06-07','08:00:03','2025-06-07 08:11:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3085,'2025-06-07','10:00:02','2025-06-07 10:11:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3086,'2025-06-07','12:00:03','2025-06-07 12:11:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3087,'2025-06-07','14:00:02','2025-06-07 14:12:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3088,'2025-06-07','14:00:02','2025-06-07 14:12:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3089,'2025-06-07','16:00:02','2025-06-07 16:11:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3090,'2025-06-07','18:00:02','2025-06-07 18:11:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3091,'2025-06-07','20:00:02','2025-06-07 20:11:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3092,'2025-06-07','22:00:02','2025-06-07 22:11:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3093,'2025-06-08','00:00:02','2025-06-08 00:10:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3094,'2025-06-08','02:00:01','2025-06-08 02:09:45','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3095,'2025-06-08','04:00:03','2025-06-08 04:10:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3096,'2025-06-08','06:00:02','2025-06-08 06:10:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3097,'2025-06-08','08:00:03','2025-06-08 08:11:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3098,'2025-06-08','10:00:01','2025-06-08 10:11:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3099,'2025-06-08','12:00:02','2025-06-08 12:11:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3100,'2025-06-08','14:00:01','2025-06-08 14:11:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3101,'2025-06-08','14:00:01','2025-06-08 14:11:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3102,'2025-06-08','16:00:03','2025-06-08 16:11:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3103,'2025-06-08','18:00:02','2025-06-08 18:10:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3104,'2025-06-08','20:00:03','2025-06-08 20:11:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3105,'2025-06-08','22:00:01','2025-06-08 22:11:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3106,'2025-06-09','00:00:03','2025-06-09 00:10:38','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3107,'2025-06-09','02:00:02','2025-06-09 02:09:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3108,'2025-06-09','04:00:02','2025-06-09 04:10:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3109,'2025-06-09','06:00:02','2025-06-09 06:10:01','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3110,'2025-06-09','08:00:02','2025-06-09 08:11:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3111,'2025-06-09','10:00:02','2025-06-09 10:12:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3112,'2025-06-09','12:00:02','2025-06-09 12:13:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3113,'2025-06-09','14:00:03','2025-06-09 14:11:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3114,'2025-06-09','14:00:03','2025-06-09 14:11:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3115,'2025-06-09','16:00:02','2025-06-09 16:11:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3116,'2025-06-09','18:00:01','2025-06-09 18:12:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3117,'2025-06-09','20:00:02','2025-06-09 20:11:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3118,'2025-06-09','22:00:01','2025-06-09 22:11:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3119,'2025-06-10','00:00:02','2025-06-10 00:10:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3120,'2025-06-10','02:00:01','2025-06-10 02:09:50','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3121,'2025-06-10','04:00:05','2025-06-10 04:10:50','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3122,'2025-06-10','06:00:02','2025-06-10 06:10:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3123,'2025-06-10','08:00:03','2025-06-10 08:10:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3124,'2025-06-10','10:00:02','2025-06-10 10:12:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3125,'2025-06-10','12:00:02','2025-06-10 12:12:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3126,'2025-06-10','14:00:02','2025-06-10 14:11:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3127,'2025-06-10','14:00:02','2025-06-10 14:11:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3128,'2025-06-10','16:00:02','2025-06-10 16:11:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3129,'2025-06-10','18:00:02','2025-06-10 18:11:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3130,'2025-06-10','20:00:03','2025-06-10 20:11:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3131,'2025-06-10','22:00:01','2025-06-10 22:11:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3132,'2025-06-11','00:00:03','2025-06-11 00:10:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3133,'2025-06-11','02:00:02','2025-06-11 02:09:46','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3134,'2025-06-11','04:00:04','2025-06-11 04:10:31','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3135,'2025-06-11','06:00:02','2025-06-11 06:11:01','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3136,'2025-06-11','08:00:03','2025-06-11 08:10:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3137,'2025-06-11','10:00:02','2025-06-11 10:12:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3138,'2025-06-11','12:00:03','2025-06-11 12:13:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3139,'2025-06-11','14:00:02','2025-06-11 14:12:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3140,'2025-06-11','14:00:02','2025-06-11 14:12:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3141,'2025-06-11','16:00:01','2025-06-11 16:11:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3142,'2025-06-11','18:00:02','2025-06-11 18:11:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3143,'2025-06-11','20:00:02','2025-06-11 20:11:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3144,'2025-06-11','22:00:01','2025-06-11 22:11:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3145,'2025-06-12','00:00:02','2025-06-12 00:11:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3146,'2025-06-12','02:00:01','2025-06-12 02:10:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3147,'2025-06-12','04:00:03','2025-06-12 04:10:42','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3148,'2025-06-12','06:00:02','2025-06-12 06:10:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3149,'2025-06-12','08:00:02','2025-06-12 08:11:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3150,'2025-06-12','10:00:02','2025-06-12 10:11:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3151,'2025-06-12','12:00:02','2025-06-12 12:12:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3152,'2025-06-12','14:00:02','2025-06-12 14:11:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3153,'2025-06-12','14:00:02','2025-06-12 14:11:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3154,'2025-06-12','16:00:02','2025-06-12 16:11:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3155,'2025-06-12','18:00:02','2025-06-12 18:11:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3156,'2025-06-12','20:00:02','2025-06-12 20:11:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3157,'2025-06-12','22:00:01','2025-06-12 22:11:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3158,'2025-06-13','00:00:03','2025-06-13 00:10:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3159,'2025-06-13','02:00:02','2025-06-13 02:09:55','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3160,'2025-06-13','04:00:02','2025-06-13 04:10:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3161,'2025-06-13','06:00:02','2025-06-13 06:10:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3162,'2025-06-13','08:00:02','2025-06-13 08:11:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3163,'2025-06-13','10:00:02','2025-06-13 10:11:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3164,'2025-06-13','12:00:02','2025-06-13 12:12:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3165,'2025-06-13','14:00:01','2025-06-13 14:11:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3166,'2025-06-13','14:00:01','2025-06-13 14:11:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3167,'2025-06-13','16:00:02','2025-06-13 16:10:02','thims4_mdbv3_A.zip','/auto_backup/thims4_demo108/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3168,'2025-06-13','18:00:02','2025-06-13 18:13:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3169,'2025-06-13','20:00:02','2025-06-13 20:11:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3170,'2025-06-13','22:00:02','2025-06-13 22:12:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3171,'2025-06-14','00:00:02','2025-06-14 00:10:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3172,'2025-06-14','02:00:02','2025-06-14 02:10:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3173,'2025-06-14','04:00:03','2025-06-14 04:10:50','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3174,'2025-06-14','06:00:02','2025-06-14 06:10:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3175,'2025-06-14','08:00:01','2025-06-14 08:11:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3176,'2025-06-14','10:00:02','2025-06-14 10:11:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3177,'2025-06-14','12:00:02','2025-06-14 12:13:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3178,'2025-06-14','14:00:02','2025-06-14 14:11:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3179,'2025-06-14','14:00:02','2025-06-14 14:11:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3180,'2025-06-14','16:00:02','2025-06-14 16:11:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3181,'2025-06-14','18:00:02','2025-06-14 18:12:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3182,'2025-06-14','20:00:02','2025-06-14 20:12:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3183,'2025-06-14','22:00:01','2025-06-14 22:11:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3184,'2025-06-15','00:00:03','2025-06-15 00:10:47','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3185,'2025-06-15','02:00:02','2025-06-15 02:10:47','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3186,'2025-06-15','04:00:03','2025-06-15 04:11:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3187,'2025-06-15','06:00:02','2025-06-15 06:10:50','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3188,'2025-06-15','08:00:02','2025-06-15 08:11:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3189,'2025-06-15','10:00:02','2025-06-15 10:11:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3190,'2025-06-15','12:00:02','2025-06-15 12:11:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3191,'2025-06-15','14:00:02','2025-06-15 14:11:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3192,'2025-06-15','14:00:02','2025-06-15 14:11:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3193,'2025-06-15','16:00:01','2025-06-15 16:11:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3194,'2025-06-15','18:00:02','2025-06-15 18:10:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3195,'2025-06-15','20:00:02','2025-06-15 20:11:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3196,'2025-06-15','22:00:01','2025-06-15 22:10:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3197,'2025-06-16','00:00:02','2025-06-16 00:10:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3198,'2025-06-16','02:00:02','2025-06-16 02:09:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3199,'2025-06-16','04:00:03','2025-06-16 04:10:37','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3200,'2025-06-16','06:00:02','2025-06-16 06:10:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3201,'2025-06-16','08:00:02','2025-06-16 08:11:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3202,'2025-06-16','10:00:02','2025-06-16 10:11:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3203,'2025-06-16','12:00:01','2025-06-16 12:12:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3204,'2025-06-16','14:00:01','2025-06-16 14:11:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3205,'2025-06-16','14:00:01','2025-06-16 14:11:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3206,'2025-06-16','16:00:02','2025-06-16 16:12:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3207,'2025-06-16','18:00:01','2025-06-16 18:12:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3208,'2025-06-16','20:00:02','2025-06-16 20:11:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3209,'2025-06-16','22:00:02','2025-06-16 22:11:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3210,'2025-06-17','00:00:02','2025-06-17 00:09:50','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3211,'2025-06-17','02:00:02','2025-06-17 02:09:42','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3212,'2025-06-17','04:00:03','2025-06-17 04:10:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3213,'2025-06-17','06:00:02','2025-06-17 06:10:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3214,'2025-06-17','08:00:02','2025-06-17 08:10:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3215,'2025-06-17','10:00:02','2025-06-17 10:11:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3216,'2025-06-17','12:00:03','2025-06-17 12:13:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3217,'2025-06-17','14:00:02','2025-06-17 14:11:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3218,'2025-06-17','14:00:02','2025-06-17 14:11:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3219,'2025-06-17','16:00:01','2025-06-17 16:11:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3220,'2025-06-17','18:00:02','2025-06-17 18:11:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3221,'2025-06-17','20:00:02','2025-06-17 20:11:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3222,'2025-06-17','22:00:02','2025-06-17 22:12:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3223,'2025-06-18','00:00:03','2025-06-18 00:10:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3224,'2025-06-18','02:00:02','2025-06-18 02:09:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3225,'2025-06-18','04:00:02','2025-06-18 04:10:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3226,'2025-06-18','06:00:03','2025-06-18 06:10:31','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3227,'2025-06-18','08:00:02','2025-06-18 08:11:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3228,'2025-06-18','10:00:12','2025-06-18 10:16:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3229,'2025-06-18','12:00:02','2025-06-18 12:13:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3230,'2025-06-18','14:00:02','2025-06-18 14:12:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3231,'2025-06-18','14:00:02','2025-06-18 14:12:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3232,'2025-06-18','16:00:02','2025-06-18 16:12:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3233,'2025-06-18','18:00:02','2025-06-18 18:13:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3234,'2025-06-18','20:00:02','2025-06-18 20:12:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3235,'2025-06-18','22:00:01','2025-06-18 22:12:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3236,'2025-06-19','00:00:03','2025-06-19 00:10:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3237,'2025-06-19','02:00:02','2025-06-19 02:10:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3238,'2025-06-19','04:00:03','2025-06-19 04:10:44','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3239,'2025-06-19','06:00:02','2025-06-19 06:10:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3240,'2025-06-19','08:00:02','2025-06-19 08:11:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3241,'2025-06-19','10:00:02','2025-06-19 10:11:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3242,'2025-06-19','12:00:01','2025-06-19 12:12:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3243,'2025-06-19','14:00:03','2025-06-19 14:14:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3244,'2025-06-19','14:00:03','2025-06-19 14:14:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3245,'2025-06-19','16:00:01','2025-06-19 16:12:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3246,'2025-06-19','18:00:01','2025-06-19 18:12:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3247,'2025-06-19','20:00:02','2025-06-19 20:12:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3248,'2025-06-19','22:00:01','2025-06-19 22:11:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3249,'2025-06-20','00:00:02','2025-06-20 00:10:42','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3250,'2025-06-20','02:00:02','2025-06-20 02:10:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3251,'2025-06-20','04:00:02','2025-06-20 04:10:49','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3252,'2025-06-20','06:00:02','2025-06-20 06:11:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3253,'2025-06-20','08:00:02','2025-06-20 08:11:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3254,'2025-06-20','10:00:02','2025-06-20 10:12:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3255,'2025-06-20','12:00:02','2025-06-20 12:15:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3256,'2025-06-20','14:00:02','2025-06-20 14:12:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3257,'2025-06-20','14:00:02','2025-06-20 14:12:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3258,'2025-06-20','16:00:01','2025-06-20 16:12:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3259,'2025-06-20','18:00:02','2025-06-20 18:13:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3260,'2025-06-20','20:00:03','2025-06-20 20:12:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3261,'2025-06-20','22:00:02','2025-06-20 22:11:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3262,'2025-06-21','00:00:02','2025-06-21 00:10:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3263,'2025-06-21','02:00:01','2025-06-21 02:09:51','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3264,'2025-06-21','04:00:03','2025-06-21 04:10:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3265,'2025-06-21','06:00:02','2025-06-21 06:10:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3266,'2025-06-21','08:00:02','2025-06-21 08:11:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3267,'2025-06-21','10:00:02','2025-06-21 10:12:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3268,'2025-06-21','12:00:02','2025-06-21 12:13:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3269,'2025-06-21','14:00:02','2025-06-21 14:12:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3270,'2025-06-21','14:00:02','2025-06-21 14:12:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3271,'2025-06-21','16:00:02','2025-06-21 16:11:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3272,'2025-06-21','18:00:02','2025-06-21 18:13:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3273,'2025-06-21','20:00:02','2025-06-21 20:12:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3274,'2025-06-21','22:00:01','2025-06-21 22:11:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3275,'2025-06-22','00:00:04','2025-06-22 00:10:55','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3276,'2025-06-22','02:00:02','2025-06-22 02:10:32','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3277,'2025-06-22','04:00:03','2025-06-22 04:10:49','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3278,'2025-06-22','06:00:02','2025-06-22 06:10:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3279,'2025-06-22','08:00:03','2025-06-22 08:11:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3280,'2025-06-22','10:00:02','2025-06-22 10:11:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3281,'2025-06-22','12:00:03','2025-06-22 12:11:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3282,'2025-06-22','14:00:01','2025-06-22 14:11:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3283,'2025-06-22','14:00:01','2025-06-22 14:11:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3284,'2025-06-22','16:00:02','2025-06-22 16:11:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3285,'2025-06-22','18:00:02','2025-06-22 18:11:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3286,'2025-06-22','20:00:02','2025-06-22 20:11:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3287,'2025-06-22','22:00:02','2025-06-22 22:10:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3288,'2025-06-23','00:00:03','2025-06-23 00:10:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3289,'2025-06-23','02:00:02','2025-06-23 02:10:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3290,'2025-06-23','04:00:03','2025-06-23 04:10:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3291,'2025-06-23','06:00:02','2025-06-23 06:11:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3292,'2025-06-23','08:00:02','2025-06-23 08:10:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3293,'2025-06-23','10:00:01','2025-06-23 10:12:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3294,'2025-06-23','12:00:01','2025-06-23 12:14:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3295,'2025-06-23','14:00:02','2025-06-23 14:13:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3296,'2025-06-23','14:00:02','2025-06-23 14:13:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3297,'2025-06-23','16:00:02','2025-06-23 16:12:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3298,'2025-06-23','18:00:03','2025-06-23 18:14:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3299,'2025-06-23','20:00:02','2025-06-23 20:12:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3300,'2025-06-23','22:00:02','2025-06-23 22:11:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3301,'2025-06-24','00:00:03','2025-06-24 00:10:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3302,'2025-06-24','02:00:01','2025-06-24 02:09:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3303,'2025-06-24','04:00:02','2025-06-24 04:10:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3304,'2025-06-24','06:00:02','2025-06-24 06:10:47','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3305,'2025-06-24','08:00:02','2025-06-24 08:11:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3306,'2025-06-24','10:00:02','2025-06-24 10:13:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3307,'2025-06-24','12:00:02','2025-06-24 12:14:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3308,'2025-06-24','14:00:02','2025-06-24 14:14:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3309,'2025-06-24','14:00:02','2025-06-24 14:14:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3310,'2025-06-24','16:00:02','2025-06-24 16:12:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3311,'2025-06-24','18:00:02','2025-06-24 18:12:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3312,'2025-06-24','20:00:02','2025-06-24 20:11:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3313,'2025-06-24','22:00:01','2025-06-24 22:12:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3314,'2025-06-25','00:00:03','2025-06-25 00:10:52','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3315,'2025-06-25','02:00:02','2025-06-25 02:10:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3316,'2025-06-25','04:00:02','2025-06-25 04:10:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3317,'2025-06-25','06:00:02','2025-06-25 06:10:38','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3318,'2025-06-25','08:00:02','2025-06-25 08:11:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3319,'2025-06-25','10:00:02','2025-06-25 10:12:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3320,'2025-06-25','12:00:02','2025-06-25 12:14:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3321,'2025-06-25','14:00:02','2025-06-25 14:13:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3322,'2025-06-25','14:00:02','2025-06-25 14:13:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3323,'2025-06-25','16:00:02','2025-06-25 16:12:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3324,'2025-06-25','18:00:01','2025-06-25 18:12:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3325,'2025-06-25','20:00:02','2025-06-25 20:12:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3326,'2025-06-25','22:00:01','2025-06-25 22:11:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3327,'2025-06-26','00:00:03','2025-06-26 00:10:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3328,'2025-06-26','02:00:02','2025-06-26 02:10:32','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3329,'2025-06-26','04:00:03','2025-06-26 04:10:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3330,'2025-06-26','06:00:02','2025-06-26 06:10:46','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3331,'2025-06-26','08:00:02','2025-06-26 08:11:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3332,'2025-06-26','10:00:01','2025-06-26 10:12:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3333,'2025-06-26','12:00:01','2025-06-26 12:13:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3334,'2025-06-26','14:00:01','2025-06-26 14:10:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3335,'2025-06-26','14:00:01','2025-06-26 14:10:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3336,'2025-06-26','16:00:02','2025-06-26 16:12:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3337,'2025-06-26','18:00:02','2025-06-26 18:12:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3338,'2025-06-26','20:00:02','2025-06-26 20:12:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3339,'2025-06-26','22:00:02','2025-06-26 22:11:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3340,'2025-06-27','00:00:02','2025-06-27 00:10:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3341,'2025-06-27','02:00:02','2025-06-27 02:10:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3342,'2025-06-27','04:00:04','2025-06-27 04:11:03','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3343,'2025-06-27','06:00:02','2025-06-27 06:11:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3344,'2025-06-27','08:00:02','2025-06-27 08:11:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3345,'2025-06-27','10:00:02','2025-06-27 10:12:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3346,'2025-06-27','12:00:02','2025-06-27 12:13:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3347,'2025-06-27','14:00:02','2025-06-27 14:12:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3348,'2025-06-27','14:00:02','2025-06-27 14:12:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3349,'2025-06-27','16:00:02','2025-06-27 16:12:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3350,'2025-06-27','18:00:02','2025-06-27 18:12:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3351,'2025-06-27','20:00:02','2025-06-27 20:11:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3352,'2025-06-27','22:00:01','2025-06-27 22:12:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3353,'2025-06-28','00:00:03','2025-06-28 00:10:46','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3354,'2025-06-28','02:00:02','2025-06-28 02:10:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3355,'2025-06-28','04:00:03','2025-06-28 04:11:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3356,'2025-06-28','06:00:02','2025-06-28 06:11:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3357,'2025-06-28','08:00:02','2025-06-28 08:11:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3358,'2025-06-28','10:00:02','2025-06-28 10:12:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3359,'2025-06-28','12:00:02','2025-06-28 12:13:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3360,'2025-06-28','14:00:02','2025-06-28 14:12:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3361,'2025-06-28','14:00:02','2025-06-28 14:12:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3362,'2025-06-28','16:00:02','2025-06-28 16:12:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3363,'2025-06-28','18:00:02','2025-06-28 18:12:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3364,'2025-06-28','20:00:03','2025-06-28 20:11:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3365,'2025-06-28','22:00:01','2025-06-28 22:11:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3366,'2025-06-29','00:00:03','2025-06-29 00:10:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3367,'2025-06-29','02:00:02','2025-06-29 02:10:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3368,'2025-06-29','04:00:03','2025-06-29 04:11:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3369,'2025-06-29','06:00:02','2025-06-29 06:10:54','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3370,'2025-06-29','08:00:02','2025-06-29 08:11:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3371,'2025-06-29','10:00:02','2025-06-29 10:12:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3372,'2025-06-29','12:00:02','2025-06-29 12:11:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3373,'2025-06-29','14:00:01','2025-06-29 14:11:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3374,'2025-06-29','14:00:01','2025-06-29 14:11:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3375,'2025-06-29','16:00:02','2025-06-29 16:11:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3376,'2025-06-29','18:00:01','2025-06-29 18:11:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3377,'2025-06-29','20:00:01','2025-06-29 20:11:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3378,'2025-06-29','22:00:02','2025-06-29 22:11:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3379,'2025-06-30','00:00:02','2025-06-30 00:10:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3380,'2025-06-30','02:00:03','2025-06-30 02:10:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3381,'2025-06-30','04:00:03','2025-06-30 04:11:03','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3382,'2025-06-30','06:00:02','2025-06-30 06:10:51','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3383,'2025-06-30','08:00:02','2025-06-30 08:11:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3384,'2025-06-30','10:00:02','2025-06-30 10:11:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3385,'2025-06-30','12:00:02','2025-06-30 12:13:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3386,'2025-06-30','14:00:02','2025-06-30 14:13:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3387,'2025-06-30','14:00:02','2025-06-30 14:13:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3388,'2025-06-30','16:00:02','2025-06-30 16:13:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3389,'2025-06-30','18:00:01','2025-06-30 18:13:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3390,'2025-06-30','20:00:02','2025-06-30 20:12:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3391,'2025-06-30','22:00:01','2025-06-30 22:12:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3392,'2025-07-01','00:00:03','2025-07-01 00:11:42','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3393,'2025-07-01','02:00:02','2025-07-01 02:10:57','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3394,'2025-07-01','04:00:03','2025-07-01 04:11:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3395,'2025-07-01','06:00:02','2025-07-01 06:10:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3396,'2025-07-01','08:00:02','2025-07-01 08:11:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3397,'2025-07-01','10:00:02','2025-07-01 10:12:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3398,'2025-07-01','12:00:03','2025-07-01 12:14:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3399,'2025-07-01','14:00:02','2025-07-01 14:12:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3400,'2025-07-01','14:00:02','2025-07-01 14:12:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3401,'2025-07-01','16:00:02','2025-07-01 16:12:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3402,'2025-07-01','18:00:02','2025-07-01 18:12:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3403,'2025-07-01','20:00:02','2025-07-01 20:12:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3404,'2025-07-01','22:00:02','2025-07-01 22:12:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3405,'2025-07-02','00:00:02','2025-07-02 00:11:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3406,'2025-07-02','02:00:02','2025-07-02 02:11:05','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3407,'2025-07-02','04:00:02','2025-07-02 04:10:54','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3408,'2025-07-02','06:00:03','2025-07-02 06:11:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3409,'2025-07-02','08:00:02','2025-07-02 08:12:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3410,'2025-07-02','10:00:02','2025-07-02 10:13:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3411,'2025-07-02','12:00:01','2025-07-02 12:13:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3412,'2025-07-02','14:00:02','2025-07-02 14:13:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3413,'2025-07-02','14:00:02','2025-07-02 14:13:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3414,'2025-07-02','16:00:02','2025-07-02 16:11:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3415,'2025-07-02','18:00:02','2025-07-02 18:12:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3416,'2025-07-02','20:00:02','2025-07-02 20:12:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3417,'2025-07-02','22:00:02','2025-07-02 22:12:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3418,'2025-07-03','00:00:03','2025-07-03 00:11:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3419,'2025-07-03','02:00:02','2025-07-03 02:10:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3420,'2025-07-03','04:00:03','2025-07-03 04:11:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3421,'2025-07-03','06:00:02','2025-07-03 06:11:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3422,'2025-07-03','08:00:02','2025-07-03 08:12:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3423,'2025-07-03','10:00:02','2025-07-03 10:13:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3424,'2025-07-03','12:00:02','2025-07-03 12:13:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3425,'2025-07-03','14:00:02','2025-07-03 14:12:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3426,'2025-07-03','14:00:02','2025-07-03 14:12:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3427,'2025-07-03','16:00:02','2025-07-03 16:12:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3428,'2025-07-03','18:00:02','2025-07-03 18:12:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3429,'2025-07-03','20:00:02','2025-07-03 20:12:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3430,'2025-07-03','22:00:02','2025-07-03 22:11:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3431,'2025-07-04','00:00:03','2025-07-04 00:11:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3432,'2025-07-04','02:00:02','2025-07-04 02:10:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3433,'2025-07-04','04:00:02','2025-07-04 04:10:50','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3434,'2025-07-04','06:00:03','2025-07-04 06:10:57','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3435,'2025-07-04','08:00:03','2025-07-04 08:11:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3436,'2025-07-04','10:00:01','2025-07-04 10:12:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3437,'2025-07-04','12:00:03','2025-07-04 12:18:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3438,'2025-07-04','14:00:02','2025-07-04 14:13:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3439,'2025-07-04','14:00:02','2025-07-04 14:13:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3440,'2025-07-04','16:00:01','2025-07-04 16:12:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3441,'2025-07-04','18:00:02','2025-07-04 18:13:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3442,'2025-07-04','20:00:02','2025-07-04 20:12:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3443,'2025-07-04','22:00:01','2025-07-04 22:12:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3444,'2025-07-05','00:00:03','2025-07-05 00:11:38','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3445,'2025-07-05','02:00:03','2025-07-05 02:10:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3446,'2025-07-05','04:00:02','2025-07-05 04:10:47','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3447,'2025-07-05','06:00:02','2025-07-05 06:10:42','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3448,'2025-07-05','08:00:02','2025-07-05 08:11:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3449,'2025-07-05','10:00:03','2025-07-05 10:12:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3450,'2025-07-05','12:00:01','2025-07-05 12:13:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3451,'2025-07-05','14:00:02','2025-07-05 14:14:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3452,'2025-07-05','14:00:02','2025-07-05 14:14:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3453,'2025-07-05','16:00:02','2025-07-05 16:12:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3454,'2025-07-05','18:00:02','2025-07-05 18:12:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3455,'2025-07-05','20:00:02','2025-07-05 20:12:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3456,'2025-07-05','22:00:02','2025-07-05 22:11:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3457,'2025-07-06','00:00:02','2025-07-06 00:11:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3458,'2025-07-06','02:00:01','2025-07-06 02:10:42','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3459,'2025-07-06','04:00:03','2025-07-06 04:10:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3460,'2025-07-06','06:00:02','2025-07-06 06:11:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3461,'2025-07-06','08:00:02','2025-07-06 08:11:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3462,'2025-07-06','10:00:02','2025-07-06 10:11:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3463,'2025-07-06','12:00:02','2025-07-06 12:11:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3464,'2025-07-06','14:00:02','2025-07-06 14:11:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3465,'2025-07-06','14:00:02','2025-07-06 14:11:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3466,'2025-07-06','16:00:02','2025-07-06 16:11:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3467,'2025-07-06','18:00:02','2025-07-06 18:11:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3468,'2025-07-06','20:00:01','2025-07-06 20:11:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3469,'2025-07-06','22:00:01','2025-07-06 22:11:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3470,'2025-07-07','00:00:02','2025-07-07 00:10:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3471,'2025-07-07','02:00:02','2025-07-07 02:10:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3472,'2025-07-07','04:00:02','2025-07-07 04:10:56','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3473,'2025-07-07','06:00:02','2025-07-07 06:10:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3474,'2025-07-07','08:00:03','2025-07-07 08:11:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3475,'2025-07-07','10:00:03','2025-07-07 10:11:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3476,'2025-07-07','12:00:02','2025-07-07 12:15:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3477,'2025-07-07','14:00:02','2025-07-07 14:13:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3478,'2025-07-07','14:00:02','2025-07-07 14:13:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3479,'2025-07-07','16:00:02','2025-07-07 16:12:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3480,'2025-07-07','18:00:02','2025-07-07 18:12:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3481,'2025-07-07','20:00:02','2025-07-07 20:12:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3482,'2025-07-07','22:00:01','2025-07-07 22:12:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3483,'2025-07-08','00:00:02','2025-07-08 00:10:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3484,'2025-07-08','02:00:02','2025-07-08 02:10:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3485,'2025-07-08','04:00:03','2025-07-08 04:11:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3486,'2025-07-08','06:00:03','2025-07-08 06:11:12','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3487,'2025-07-08','08:00:02','2025-07-08 08:12:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3488,'2025-07-08','10:00:02','2025-07-08 10:12:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3489,'2025-07-08','12:00:02','2025-07-08 12:13:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3490,'2025-07-08','14:00:02','2025-07-08 14:12:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3491,'2025-07-08','14:00:02','2025-07-08 14:12:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3492,'2025-07-08','16:00:02','2025-07-08 16:12:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3493,'2025-07-08','18:00:08','2025-07-08 18:13:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3494,'2025-07-08','20:00:02','2025-07-08 20:12:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3495,'2025-07-08','22:00:01','2025-07-08 22:12:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3496,'2025-07-09','00:00:03','2025-07-09 00:10:59','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3497,'2025-07-09','02:00:04','2025-07-09 02:11:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3498,'2025-07-09','04:00:03','2025-07-09 04:11:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3499,'2025-07-09','06:00:03','2025-07-09 06:11:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3500,'2025-07-09','08:00:02','2025-07-09 08:11:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3501,'2025-07-09','10:00:02','2025-07-09 10:12:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3502,'2025-07-09','12:00:02','2025-07-09 12:15:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3503,'2025-07-09','14:00:01','2025-07-09 14:11:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3504,'2025-07-09','14:00:01','2025-07-09 14:11:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3505,'2025-07-09','16:00:06','2025-07-09 16:13:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3506,'2025-07-09','18:00:01','2025-07-09 18:13:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3507,'2025-07-09','20:00:02','2025-07-09 20:12:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3508,'2025-07-09','22:00:02','2025-07-09 22:12:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3509,'2025-07-10','00:00:02','2025-07-10 00:11:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3510,'2025-07-10','02:00:02','2025-07-10 02:10:55','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3511,'2025-07-10','04:00:03','2025-07-10 04:11:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3512,'2025-07-10','06:00:03','2025-07-10 06:11:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3513,'2025-07-10','08:00:02','2025-07-10 08:11:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3514,'2025-07-10','10:00:02','2025-07-10 10:13:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3515,'2025-07-10','12:00:02','2025-07-10 12:15:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3516,'2025-07-10','14:00:02','2025-07-10 14:11:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3517,'2025-07-10','14:00:02','2025-07-10 14:11:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3518,'2025-07-10','16:00:02','2025-07-10 16:13:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3519,'2025-07-10','18:00:02','2025-07-10 18:13:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3520,'2025-07-10','20:00:02','2025-07-10 20:12:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3521,'2025-07-10','22:00:02','2025-07-10 22:14:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3522,'2025-07-11','00:00:02','2025-07-11 00:11:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3523,'2025-07-11','02:00:01','2025-07-11 02:10:38','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3524,'2025-07-11','04:00:03','2025-07-11 04:11:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3525,'2025-07-11','06:00:02','2025-07-11 06:11:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3526,'2025-07-11','08:00:02','2025-07-11 08:11:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3527,'2025-07-11','10:00:02','2025-07-11 10:12:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3528,'2025-07-11','12:00:02','2025-07-11 12:13:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3529,'2025-07-11','14:00:02','2025-07-11 14:12:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3530,'2025-07-11','14:00:02','2025-07-11 14:12:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3531,'2025-07-11','16:00:03','2025-07-11 16:12:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3532,'2025-07-11','18:00:02','2025-07-11 18:14:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3533,'2025-07-11','20:00:03','2025-07-11 20:12:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3534,'2025-07-11','22:00:02','2025-07-11 22:12:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3535,'2025-07-12','00:00:03','2025-07-12 00:11:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3536,'2025-07-12','02:00:02','2025-07-12 02:10:46','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3537,'2025-07-12','04:00:02','2025-07-12 04:11:45','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3538,'2025-07-12','06:00:02','2025-07-12 06:11:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3539,'2025-07-12','08:00:02','2025-07-12 08:11:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3540,'2025-07-12','10:00:05','2025-07-12 10:13:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3541,'2025-07-12','12:00:03','2025-07-12 12:18:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3542,'2025-07-12','14:00:02','2025-07-12 14:13:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3543,'2025-07-12','14:00:02','2025-07-12 14:13:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3544,'2025-07-12','16:00:02','2025-07-12 16:13:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3545,'2025-07-12','18:00:02','2025-07-12 18:13:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3546,'2025-07-12','20:00:02','2025-07-12 20:12:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3547,'2025-07-12','22:00:02','2025-07-12 22:12:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3548,'2025-07-13','00:00:02','2025-07-13 00:11:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3549,'2025-07-13','02:00:03','2025-07-13 02:10:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3550,'2025-07-13','04:00:03','2025-07-13 04:11:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3551,'2025-07-13','06:00:03','2025-07-13 06:11:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3552,'2025-07-13','08:00:02','2025-07-13 08:12:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3553,'2025-07-13','10:00:02','2025-07-13 10:12:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3554,'2025-07-13','12:00:02','2025-07-13 12:13:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3555,'2025-07-13','14:00:02','2025-07-13 14:12:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3556,'2025-07-13','14:00:02','2025-07-13 14:12:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3557,'2025-07-13','16:00:02','2025-07-13 16:12:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3558,'2025-07-13','18:00:01','2025-07-13 18:11:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3559,'2025-07-13','20:00:01','2025-07-13 20:11:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3560,'2025-07-13','22:00:01','2025-07-13 22:11:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3561,'2025-07-14','00:00:03','2025-07-14 00:10:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3562,'2025-07-14','02:00:02','2025-07-14 02:10:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3563,'2025-07-14','04:00:03','2025-07-14 04:10:59','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3564,'2025-07-14','06:00:02','2025-07-14 06:10:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3565,'2025-07-14','08:00:02','2025-07-14 08:11:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3566,'2025-07-14','10:00:02','2025-07-14 10:12:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3567,'2025-07-14','12:00:02','2025-07-14 12:15:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3568,'2025-07-14','14:00:02','2025-07-14 14:14:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3569,'2025-07-14','14:00:02','2025-07-14 14:14:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3570,'2025-07-14','16:00:02','2025-07-14 16:16:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3571,'2025-07-14','18:00:02','2025-07-14 18:14:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3572,'2025-07-14','20:00:02','2025-07-14 20:13:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3573,'2025-07-14','22:00:01','2025-07-14 22:12:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3574,'2025-07-15','00:00:03','2025-07-15 00:10:37','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3575,'2025-07-15','02:00:02','2025-07-15 02:10:33','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3576,'2025-07-15','04:00:03','2025-07-15 04:11:47','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3577,'2025-07-15','06:00:02','2025-07-15 06:10:49','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3578,'2025-07-15','08:00:02','2025-07-15 08:11:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3579,'2025-07-15','10:00:01','2025-07-15 10:13:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3580,'2025-07-15','12:00:02','2025-07-15 12:15:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3581,'2025-07-15','14:00:02','2025-07-15 14:13:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3582,'2025-07-15','14:00:02','2025-07-15 14:13:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3583,'2025-07-15','16:00:02','2025-07-15 16:13:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3584,'2025-07-15','18:00:01','2025-07-15 18:13:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3585,'2025-07-15','20:00:02','2025-07-15 20:13:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3586,'2025-07-15','22:00:01','2025-07-15 22:11:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3587,'2025-07-16','00:00:02','2025-07-16 00:10:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3588,'2025-07-16','02:00:02','2025-07-16 02:10:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3589,'2025-07-16','04:00:03','2025-07-16 04:10:48','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3590,'2025-07-16','06:00:02','2025-07-16 06:10:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3591,'2025-07-16','08:00:02','2025-07-16 08:11:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3592,'2025-07-16','10:00:01','2025-07-16 10:14:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3593,'2025-07-16','12:00:02','2025-07-16 12:13:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3594,'2025-07-16','14:00:02','2025-07-16 14:17:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3595,'2025-07-16','14:00:02','2025-07-16 14:17:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3596,'2025-07-16','16:00:02','2025-07-16 16:13:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3597,'2025-07-16','18:00:02','2025-07-16 18:14:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3598,'2025-07-16','20:00:02','2025-07-16 20:12:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3599,'2025-07-16','22:00:02','2025-07-16 22:11:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3600,'2025-07-17','00:00:02','2025-07-17 00:10:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3601,'2025-07-17','02:00:02','2025-07-17 02:10:03','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3602,'2025-07-17','04:00:02','2025-07-17 04:10:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3603,'2025-07-17','06:00:02','2025-07-17 06:09:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3604,'2025-07-17','08:00:03','2025-07-17 08:10:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3605,'2025-07-17','10:00:01','2025-07-17 10:12:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3606,'2025-07-17','12:00:03','2025-07-17 12:13:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3607,'2025-07-17','14:00:01','2025-07-17 14:15:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3608,'2025-07-17','14:00:01','2025-07-17 14:15:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3609,'2025-07-17','16:00:02','2025-07-17 16:13:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3610,'2025-07-17','18:00:02','2025-07-17 18:13:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3611,'2025-07-17','20:00:03','2025-07-17 20:12:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3612,'2025-07-17','22:00:02','2025-07-17 22:11:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3613,'2025-07-18','00:00:02','2025-07-18 00:10:55','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3614,'2025-07-18','02:00:02','2025-07-18 02:10:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3615,'2025-07-18','04:00:03','2025-07-18 04:11:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3616,'2025-07-18','06:00:02','2025-07-18 06:10:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3617,'2025-07-18','08:00:02','2025-07-18 08:11:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3618,'2025-07-18','10:00:02','2025-07-18 10:11:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3619,'2025-07-18','12:00:02','2025-07-18 12:13:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3620,'2025-07-18','14:00:02','2025-07-18 14:12:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3621,'2025-07-18','14:00:02','2025-07-18 14:12:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3622,'2025-07-18','16:00:01','2025-07-18 16:11:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3623,'2025-07-18','18:00:02','2025-07-18 18:13:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3624,'2025-07-18','20:00:02','2025-07-18 20:12:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3625,'2025-07-18','22:00:01','2025-07-18 22:11:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3626,'2025-07-19','00:00:02','2025-07-19 00:10:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3627,'2025-07-19','02:00:02','2025-07-19 02:09:59','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3628,'2025-07-19','04:00:02','2025-07-19 04:11:37','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3629,'2025-07-19','06:00:02','2025-07-19 06:10:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3630,'2025-07-19','08:00:03','2025-07-19 08:11:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3631,'2025-07-19','10:00:02','2025-07-19 10:12:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3632,'2025-07-19','12:00:02','2025-07-19 12:13:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3633,'2025-07-19','14:00:01','2025-07-19 14:12:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3634,'2025-07-19','14:00:01','2025-07-19 14:12:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3635,'2025-07-19','16:00:02','2025-07-19 16:12:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3636,'2025-07-19','18:00:02','2025-07-19 18:12:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3637,'2025-07-19','20:00:03','2025-07-19 20:12:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3638,'2025-07-19','22:00:01','2025-07-19 22:11:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3639,'2025-07-20','00:00:03','2025-07-20 00:10:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3640,'2025-07-20','02:00:02','2025-07-20 02:10:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3641,'2025-07-20','04:00:03','2025-07-20 04:10:56','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3642,'2025-07-20','06:00:02','2025-07-20 06:10:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3643,'2025-07-20','08:00:02','2025-07-20 08:11:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3644,'2025-07-20','10:00:02','2025-07-20 10:11:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3645,'2025-07-20','12:00:02','2025-07-20 12:11:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3646,'2025-07-20','14:00:02','2025-07-20 14:10:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3647,'2025-07-20','14:00:02','2025-07-20 14:10:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3648,'2025-07-20','16:00:02','2025-07-20 16:11:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3649,'2025-07-20','18:00:02','2025-07-20 18:11:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3650,'2025-07-20','20:00:02','2025-07-20 20:12:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3651,'2025-07-20','22:00:01','2025-07-20 22:11:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3652,'2025-07-21','00:00:03','2025-07-21 00:10:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3653,'2025-07-21','02:00:02','2025-07-21 02:10:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3654,'2025-07-21','04:00:03','2025-07-21 04:11:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3655,'2025-07-21','06:00:02','2025-07-21 06:10:47','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3656,'2025-07-21','08:00:02','2025-07-21 08:11:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3657,'2025-07-21','10:00:02','2025-07-21 10:12:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3658,'2025-07-21','12:00:02','2025-07-21 12:13:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3659,'2025-07-21','14:00:01','2025-07-21 14:12:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3660,'2025-07-21','14:00:01','2025-07-21 14:12:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3661,'2025-07-21','16:00:02','2025-07-21 16:12:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3662,'2025-07-21','18:00:02','2025-07-21 18:13:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3663,'2025-07-21','20:00:03','2025-07-21 20:12:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3664,'2025-07-21','22:00:02','2025-07-21 22:11:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3665,'2025-07-22','00:00:04','2025-07-22 00:10:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3666,'2025-07-22','02:00:01','2025-07-22 02:10:12','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3667,'2025-07-22','04:00:03','2025-07-22 04:10:56','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3668,'2025-07-22','06:00:03','2025-07-22 06:10:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3669,'2025-07-22','08:00:02','2025-07-22 08:11:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3670,'2025-07-22','10:00:02','2025-07-22 10:12:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3671,'2025-07-22','12:00:01','2025-07-22 12:14:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3672,'2025-07-22','14:00:02','2025-07-22 14:13:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3673,'2025-07-22','14:00:02','2025-07-22 14:13:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3674,'2025-07-22','16:00:01','2025-07-22 16:12:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3675,'2025-07-22','18:00:02','2025-07-22 18:12:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3676,'2025-07-22','20:00:02','2025-07-22 20:12:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3677,'2025-07-22','22:00:02','2025-07-22 22:12:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3678,'2025-07-23','00:00:02','2025-07-23 00:10:55','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3679,'2025-07-23','02:00:02','2025-07-23 02:10:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3680,'2025-07-23','04:00:03','2025-07-23 04:11:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3681,'2025-07-23','06:00:02','2025-07-23 06:10:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3682,'2025-07-23','08:00:02','2025-07-23 08:11:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3683,'2025-07-23','10:00:02','2025-07-23 10:12:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3684,'2025-07-23','12:00:02','2025-07-23 12:13:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3685,'2025-07-23','14:00:01','2025-07-23 14:11:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3686,'2025-07-23','14:00:01','2025-07-23 14:11:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3687,'2025-07-23','16:00:03','2025-07-23 16:13:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3688,'2025-07-23','18:00:02','2025-07-23 18:13:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3689,'2025-07-23','20:00:02','2025-07-23 20:12:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3690,'2025-07-23','22:00:02','2025-07-23 22:12:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3691,'2025-07-24','00:00:03','2025-07-24 00:10:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3692,'2025-07-24','02:00:02','2025-07-24 02:10:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3693,'2025-07-24','04:00:03','2025-07-24 04:11:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3694,'2025-07-24','06:00:02','2025-07-24 06:10:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3695,'2025-07-24','08:00:02','2025-07-24 08:11:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3696,'2025-07-24','10:00:02','2025-07-24 10:12:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3697,'2025-07-24','12:00:03','2025-07-24 12:13:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3698,'2025-07-24','14:00:02','2025-07-24 14:12:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3699,'2025-07-24','14:00:02','2025-07-24 14:12:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3700,'2025-07-24','16:00:02','2025-07-24 16:13:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3701,'2025-07-24','18:00:01','2025-07-24 18:14:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3702,'2025-07-24','20:00:02','2025-07-24 20:13:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3703,'2025-07-24','22:00:01','2025-07-24 22:11:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3704,'2025-07-25','00:00:03','2025-07-25 00:10:52','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3705,'2025-07-25','02:00:01','2025-07-25 02:10:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3706,'2025-07-25','04:00:03','2025-07-25 04:11:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3707,'2025-07-25','06:00:02','2025-07-25 06:10:46','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3708,'2025-07-25','08:00:02','2025-07-25 08:11:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3709,'2025-07-25','10:00:01','2025-07-25 10:12:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3710,'2025-07-25','12:00:02','2025-07-25 12:13:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3711,'2025-07-25','14:00:02','2025-07-25 14:12:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3712,'2025-07-25','14:00:02','2025-07-25 14:12:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3713,'2025-07-25','16:00:02','2025-07-25 16:12:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3714,'2025-07-25','18:00:01','2025-07-25 18:12:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3715,'2025-07-25','20:00:02','2025-07-25 20:13:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3716,'2025-07-25','22:00:02','2025-07-25 22:12:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3717,'2025-07-26','00:00:03','2025-07-26 00:10:38','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3718,'2025-07-26','02:00:02','2025-07-26 02:10:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3719,'2025-07-26','04:00:03','2025-07-26 04:11:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3720,'2025-07-26','06:00:02','2025-07-26 06:10:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3721,'2025-07-26','08:00:02','2025-07-26 08:11:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3722,'2025-07-26','10:00:01','2025-07-26 10:12:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3723,'2025-07-26','12:00:01','2025-07-26 12:13:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3724,'2025-07-26','14:00:02','2025-07-26 14:11:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3725,'2025-07-26','14:00:02','2025-07-26 14:11:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3726,'2025-07-26','16:00:02','2025-07-26 16:12:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3727,'2025-07-26','18:00:01','2025-07-26 18:12:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3728,'2025-07-26','20:00:02','2025-07-26 20:12:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3729,'2025-07-26','22:00:01','2025-07-26 22:11:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3730,'2025-07-27','00:00:02','2025-07-27 00:10:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3731,'2025-07-27','02:00:02','2025-07-27 02:10:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3732,'2025-07-27','04:00:02','2025-07-27 04:10:54','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3733,'2025-07-27','06:00:02','2025-07-27 06:10:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3734,'2025-07-27','08:00:02','2025-07-27 08:11:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3735,'2025-07-27','10:00:02','2025-07-27 10:11:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3736,'2025-07-27','12:00:01','2025-07-27 12:11:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3737,'2025-07-27','14:00:02','2025-07-27 14:11:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3738,'2025-07-27','14:00:02','2025-07-27 14:11:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3739,'2025-07-27','16:00:01','2025-07-27 16:11:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3740,'2025-07-27','18:00:02','2025-07-27 18:11:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3741,'2025-07-27','20:00:02','2025-07-27 20:11:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3742,'2025-07-27','22:00:02','2025-07-27 22:11:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3743,'2025-07-28','00:00:01','2025-07-28 00:10:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3744,'2025-07-28','02:00:02','2025-07-28 02:10:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3745,'2025-07-28','04:00:03','2025-07-28 04:11:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3746,'2025-07-28','06:00:02','2025-07-28 06:10:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3747,'2025-07-28','08:00:02','2025-07-28 08:11:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3748,'2025-07-28','10:00:01','2025-07-28 10:13:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3749,'2025-07-28','12:00:02','2025-07-28 12:13:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3750,'2025-07-28','14:00:02','2025-07-28 14:13:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3751,'2025-07-28','14:00:02','2025-07-28 14:13:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3752,'2025-07-28','16:00:01','2025-07-28 16:13:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3753,'2025-07-28','18:00:02','2025-07-28 18:13:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3754,'2025-07-28','20:00:03','2025-07-28 20:13:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3755,'2025-07-28','22:00:02','2025-07-28 22:11:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3756,'2025-07-29','00:00:03','2025-07-29 00:10:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3757,'2025-07-29','02:00:02','2025-07-29 02:10:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3758,'2025-07-29','04:00:03','2025-07-29 04:11:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3759,'2025-07-29','06:00:03','2025-07-29 06:10:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3760,'2025-07-29','08:00:02','2025-07-29 08:11:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3761,'2025-07-29','10:00:02','2025-07-29 10:12:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3762,'2025-07-29','12:00:02','2025-07-29 12:13:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3763,'2025-07-29','14:00:02','2025-07-29 14:13:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3764,'2025-07-29','14:00:02','2025-07-29 14:13:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3765,'2025-07-29','16:00:02','2025-07-29 16:12:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3766,'2025-07-29','18:00:02','2025-07-29 18:12:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3767,'2025-07-29','20:00:03','2025-07-29 20:13:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3768,'2025-07-29','22:00:01','2025-07-29 22:12:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3769,'2025-07-30','00:00:02','2025-07-30 00:10:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3770,'2025-07-30','02:00:01','2025-07-30 02:10:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3771,'2025-07-30','04:00:03','2025-07-30 04:10:54','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3772,'2025-07-30','06:00:02','2025-07-30 06:10:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3773,'2025-07-30','08:00:01','2025-07-30 08:11:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3774,'2025-07-30','10:00:03','2025-07-30 10:13:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3775,'2025-07-30','12:00:02','2025-07-30 12:14:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3776,'2025-07-30','14:00:02','2025-07-30 14:12:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3777,'2025-07-30','14:00:02','2025-07-30 14:12:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3778,'2025-07-30','16:00:01','2025-07-30 16:13:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3779,'2025-07-30','18:00:02','2025-07-30 18:16:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3780,'2025-07-30','20:00:01','2025-07-30 20:13:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3781,'2025-07-30','22:00:02','2025-07-30 22:12:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3782,'2025-07-31','00:00:02','2025-07-31 00:10:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3783,'2025-07-31','02:00:02','2025-07-31 02:10:33','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3784,'2025-07-31','04:00:02','2025-07-31 04:11:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3785,'2025-07-31','06:00:02','2025-07-31 06:10:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3786,'2025-07-31','08:00:01','2025-07-31 08:11:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3787,'2025-07-31','10:00:02','2025-07-31 10:12:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3788,'2025-07-31','12:00:02','2025-07-31 12:13:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3789,'2025-07-31','14:00:02','2025-07-31 14:10:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3790,'2025-07-31','14:00:02','2025-07-31 14:10:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3791,'2025-07-31','16:00:02','2025-07-31 16:12:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3792,'2025-07-31','18:00:02','2025-07-31 18:12:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3793,'2025-07-31','20:00:02','2025-07-31 20:12:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3794,'2025-07-31','22:00:01','2025-07-31 22:11:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3795,'2025-08-01','00:00:04','2025-08-01 00:10:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3796,'2025-08-01','02:00:02','2025-08-01 02:09:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3797,'2025-08-01','04:00:12','2025-08-01 04:15:57','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3798,'2025-08-01','06:00:02','2025-08-01 06:10:56','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3799,'2025-08-01','08:00:02','2025-08-01 00:00:00','thims4_mdbv3_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims4_mdbv3 > /home/thims4/public_html/thims/pages/auto_backup/thims4_mdbv3_A.txt-1email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3800,'2025-08-01','10:00:02','2025-08-01 10:13:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3801,'2025-08-01','12:00:02','2025-08-01 12:13:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3802,'2025-08-01','14:00:01','2025-08-01 14:13:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3803,'2025-08-01','14:00:01','2025-08-01 14:13:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3804,'2025-08-01','16:00:02','2025-08-01 16:12:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3805,'2025-08-01','18:00:01','2025-08-01 18:15:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3806,'2025-08-01','20:00:02','2025-08-01 20:12:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3807,'2025-08-01','22:00:01','2025-08-01 22:12:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3808,'2025-08-02','00:00:02','2025-08-02 00:10:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3809,'2025-08-02','02:00:02','2025-08-02 02:10:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3810,'2025-08-02','04:00:03','2025-08-02 04:11:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3811,'2025-08-02','06:00:02','2025-08-02 06:10:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3812,'2025-08-02','08:00:02','2025-08-02 08:11:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3813,'2025-08-02','10:00:02','2025-08-02 10:12:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3814,'2025-08-02','12:00:03','2025-08-02 12:13:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3815,'2025-08-02','14:00:02','2025-08-02 14:13:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3816,'2025-08-02','14:00:02','2025-08-02 14:13:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3817,'2025-08-02','16:00:03','2025-08-02 16:12:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3818,'2025-08-02','18:00:02','2025-08-02 18:13:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3819,'2025-08-02','20:00:02','2025-08-02 20:12:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3820,'2025-08-02','22:00:01','2025-08-02 22:11:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3821,'2025-08-03','00:00:03','2025-08-03 00:10:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3822,'2025-08-03','02:00:01','2025-08-03 02:10:18','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3823,'2025-08-03','04:00:03','2025-08-03 04:11:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3824,'2025-08-03','06:00:02','2025-08-03 06:10:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3825,'2025-08-03','08:00:02','2025-08-03 08:11:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3826,'2025-08-03','10:00:02','2025-08-03 10:12:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3827,'2025-08-03','12:00:01','2025-08-03 12:12:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3828,'2025-08-03','14:00:02','2025-08-03 14:12:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3829,'2025-08-03','14:00:02','2025-08-03 14:12:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3830,'2025-08-03','16:00:02','2025-08-03 16:11:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3831,'2025-08-03','18:00:02','2025-08-03 18:11:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3832,'2025-08-03','20:00:02','2025-08-03 20:12:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3833,'2025-08-03','22:00:01','2025-08-03 22:11:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3834,'2025-08-04','00:00:03','2025-08-04 00:10:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3835,'2025-08-04','02:00:02','2025-08-04 02:10:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3836,'2025-08-04','04:00:03','2025-08-04 04:11:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3837,'2025-08-04','06:00:02','2025-08-04 06:10:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3838,'2025-08-04','08:00:02','2025-08-04 08:11:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3839,'2025-08-04','10:00:01','2025-08-04 10:12:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3840,'2025-08-04','12:00:02','2025-08-04 12:15:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3841,'2025-08-04','14:00:02','2025-08-04 14:13:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3842,'2025-08-04','14:00:02','2025-08-04 14:13:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3843,'2025-08-04','16:00:02','2025-08-04 16:13:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3844,'2025-08-04','18:00:02','2025-08-04 18:16:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3845,'2025-08-04','20:00:01','2025-08-04 20:13:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3846,'2025-08-04','22:00:01','2025-08-04 22:12:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3847,'2025-08-05','00:00:02','2025-08-05 00:10:38','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3848,'2025-08-05','02:00:02','2025-08-05 02:10:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3849,'2025-08-05','04:00:03','2025-08-05 04:11:31','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3850,'2025-08-05','06:00:02','2025-08-05 06:10:44','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3851,'2025-08-05','08:00:02','2025-08-05 08:11:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3852,'2025-08-05','10:00:01','2025-08-05 10:13:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3853,'2025-08-05','12:00:01','2025-08-05 12:13:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3854,'2025-08-05','14:00:02','2025-08-05 14:14:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3855,'2025-08-05','14:00:02','2025-08-05 14:14:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3856,'2025-08-05','16:00:33','2025-08-05 16:18:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3857,'2025-08-05','18:00:02','2025-08-05 18:13:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3858,'2025-08-05','20:00:02','2025-08-05 20:13:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3859,'2025-08-05','22:00:01','2025-08-05 22:13:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3860,'2025-08-06','00:00:04','2025-08-06 00:11:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3861,'2025-08-06','02:00:02','2025-08-06 02:11:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3862,'2025-08-06','04:00:02','2025-08-06 04:11:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3863,'2025-08-06','06:00:02','2025-08-06 06:10:42','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3864,'2025-08-06','08:00:02','2025-08-06 08:11:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3865,'2025-08-06','10:00:02','2025-08-06 10:13:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3866,'2025-08-06','12:00:02','2025-08-06 12:14:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3867,'2025-08-06','14:00:02','2025-08-06 14:12:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3868,'2025-08-06','14:00:02','2025-08-06 14:12:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3869,'2025-08-06','16:00:01','2025-08-06 16:13:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3870,'2025-08-06','18:00:02','2025-08-06 18:13:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3871,'2025-08-06','20:00:02','2025-08-06 20:12:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3872,'2025-08-06','22:00:01','2025-08-06 22:12:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3873,'2025-08-07','00:00:02','2025-08-07 00:10:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3874,'2025-08-07','02:00:02','2025-08-07 02:10:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3875,'2025-08-07','04:00:03','2025-08-07 04:11:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3876,'2025-08-07','06:00:02','2025-08-07 06:10:52','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3877,'2025-08-07','08:00:02','2025-08-07 08:11:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3878,'2025-08-07','10:00:01','2025-08-07 10:13:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3879,'2025-08-07','12:00:03','2025-08-07 12:15:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3880,'2025-08-07','14:00:02','2025-08-07 14:14:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3881,'2025-08-07','14:00:02','2025-08-07 14:14:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3882,'2025-08-07','16:00:02','2025-08-07 16:13:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3883,'2025-08-07','18:00:02','2025-08-07 18:13:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3884,'2025-08-07','20:00:02','2025-08-07 20:12:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3885,'2025-08-07','22:00:02','2025-08-07 22:12:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3886,'2025-08-08','00:00:02','2025-08-08 00:11:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3887,'2025-08-08','02:00:02','2025-08-08 02:10:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3888,'2025-08-08','04:00:03','2025-08-08 04:11:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3889,'2025-08-08','06:00:01','2025-08-08 06:10:46','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3890,'2025-08-08','08:00:01','2025-08-08 08:11:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3891,'2025-08-08','10:00:02','2025-08-08 10:13:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3892,'2025-08-08','12:00:02','2025-08-08 12:14:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3893,'2025-08-08','14:00:02','2025-08-08 14:12:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3894,'2025-08-08','14:00:02','2025-08-08 14:12:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3895,'2025-08-08','16:00:02','2025-08-08 16:13:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3896,'2025-08-08','18:00:02','2025-08-08 18:13:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3897,'2025-08-08','20:00:03','2025-08-08 20:14:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3898,'2025-08-08','22:00:02','2025-08-08 22:12:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3899,'2025-08-09','00:00:02','2025-08-09 00:11:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3900,'2025-08-09','02:00:02','2025-08-09 02:10:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3901,'2025-08-09','04:00:03','2025-08-09 04:11:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3902,'2025-08-09','06:00:02','2025-08-09 06:10:43','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3903,'2025-08-09','08:00:02','2025-08-09 08:11:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3904,'2025-08-09','10:00:02','2025-08-09 10:12:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3905,'2025-08-09','12:00:02','2025-08-09 12:13:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3906,'2025-08-09','14:00:03','2025-08-09 14:13:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3907,'2025-08-09','14:00:03','2025-08-09 14:13:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3908,'2025-08-09','16:00:02','2025-08-09 16:13:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3909,'2025-08-09','18:00:02','2025-08-09 18:13:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3910,'2025-08-09','20:00:02','2025-08-09 20:14:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3911,'2025-08-09','22:00:02','2025-08-09 22:12:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3912,'2025-08-10','00:00:02','2025-08-10 00:11:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3913,'2025-08-10','02:00:01','2025-08-10 02:10:50','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3914,'2025-08-10','04:00:03','2025-08-10 04:11:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3915,'2025-08-10','06:00:02','2025-08-10 06:11:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3916,'2025-08-10','08:00:03','2025-08-10 08:12:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3917,'2025-08-10','10:00:02','2025-08-10 10:14:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3918,'2025-08-10','12:00:02','2025-08-10 12:13:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3919,'2025-08-10','14:00:02','2025-08-10 14:13:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3920,'2025-08-10','14:00:02','2025-08-10 14:13:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3921,'2025-08-10','16:00:02','2025-08-10 16:13:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3922,'2025-08-10','18:00:01','2025-08-10 18:13:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3923,'2025-08-10','20:00:01','2025-08-10 20:13:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3924,'2025-08-10','22:00:01','2025-08-10 22:12:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3925,'2025-08-11','00:00:02','2025-08-11 00:11:02','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3926,'2025-08-11','02:00:02','2025-08-11 02:10:31','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3927,'2025-08-11','04:00:03','2025-08-11 04:11:47','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3928,'2025-08-11','06:00:03','2025-08-11 06:10:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3929,'2025-08-11','08:00:02','2025-08-11 08:12:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3930,'2025-08-11','10:00:02','2025-08-11 10:15:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3931,'2025-08-11','12:00:02','2025-08-11 12:17:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3932,'2025-08-11','14:00:01','2025-08-11 14:14:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3933,'2025-08-11','14:00:01','2025-08-11 14:14:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3934,'2025-08-11','16:00:02','2025-08-11 16:14:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3935,'2025-08-11','18:00:01','2025-08-11 18:15:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3936,'2025-08-11','20:00:02','2025-08-11 20:13:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3937,'2025-08-11','22:00:02','2025-08-11 22:12:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3938,'2025-08-12','00:00:03','2025-08-12 00:11:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3939,'2025-08-12','02:00:02','2025-08-12 02:10:51','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3940,'2025-08-12','04:00:04','2025-08-12 04:11:37','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3941,'2025-08-12','06:00:02','2025-08-12 06:10:57','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3942,'2025-08-12','08:00:02','2025-08-12 08:13:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3943,'2025-08-12','10:00:02','2025-08-12 10:14:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3944,'2025-08-12','12:00:02','2025-08-12 12:17:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3945,'2025-08-12','14:00:02','2025-08-12 14:15:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3946,'2025-08-12','14:00:02','2025-08-12 14:15:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3947,'2025-08-12','16:00:02','2025-08-12 16:14:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3948,'2025-08-12','18:00:02','2025-08-12 18:15:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3949,'2025-08-12','20:00:03','2025-08-12 20:13:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3950,'2025-08-12','22:00:01','2025-08-12 22:14:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3951,'2025-08-13','00:00:03','2025-08-13 00:11:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3952,'2025-08-13','02:00:02','2025-08-13 02:10:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3953,'2025-08-13','04:00:03','2025-08-13 04:11:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3954,'2025-08-13','06:00:02','2025-08-13 06:10:46','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3955,'2025-08-13','08:00:02','2025-08-13 08:13:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3956,'2025-08-13','10:00:02','2025-08-13 10:14:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3957,'2025-08-13','12:00:02','2025-08-13 12:15:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3958,'2025-08-13','14:00:01','2025-08-13 14:15:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3959,'2025-08-13','14:00:01','2025-08-13 14:15:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3960,'2025-08-13','16:00:02','2025-08-13 16:15:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3961,'2025-08-13','18:00:02','2025-08-13 18:14:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3962,'2025-08-13','20:00:02','2025-08-13 20:13:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3963,'2025-08-13','22:00:02','2025-08-13 22:13:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3964,'2025-08-14','00:00:02','2025-08-14 00:11:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3965,'2025-08-14','02:00:01','2025-08-14 02:10:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3966,'2025-08-14','04:00:03','2025-08-14 04:11:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3967,'2025-08-14','06:00:02','2025-08-14 06:10:54','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3968,'2025-08-14','08:00:03','2025-08-14 08:12:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3969,'2025-08-14','10:00:02','2025-08-14 10:13:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3970,'2025-08-14','12:00:02','2025-08-14 12:16:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3971,'2025-08-14','14:00:02','2025-08-14 14:15:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3972,'2025-08-14','14:00:02','2025-08-14 14:15:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3973,'2025-08-14','16:00:02','2025-08-14 16:14:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3974,'2025-08-14','18:00:03','2025-08-14 18:14:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3975,'2025-08-14','20:00:02','2025-08-14 20:14:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3976,'2025-08-14','22:00:01','2025-08-14 22:12:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3977,'2025-08-15','00:00:04','2025-08-15 00:11:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3978,'2025-08-15','02:00:02','2025-08-15 02:10:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3979,'2025-08-15','04:00:03','2025-08-15 04:11:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3980,'2025-08-15','06:00:02','2025-08-15 06:10:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3981,'2025-08-15','08:00:02','2025-08-15 08:12:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3982,'2025-08-15','10:00:02','2025-08-15 10:12:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3983,'2025-08-15','12:00:02','2025-08-15 12:13:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3984,'2025-08-15','14:00:02','2025-08-15 14:10:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3985,'2025-08-15','14:00:02','2025-08-15 14:10:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3986,'2025-08-15','16:00:01','2025-08-15 16:13:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3987,'2025-08-15','18:00:02','2025-08-15 18:13:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3988,'2025-08-15','20:00:02','2025-08-15 20:12:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3989,'2025-08-15','22:00:01','2025-08-15 22:11:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3990,'2025-08-16','00:00:02','2025-08-16 00:11:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3991,'2025-08-16','02:00:01','2025-08-16 02:10:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3992,'2025-08-16','04:00:03','2025-08-16 04:11:06','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3993,'2025-08-16','06:00:02','2025-08-16 06:10:33','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3994,'2025-08-16','08:00:02','2025-08-16 08:12:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3995,'2025-08-16','10:00:02','2025-08-16 10:12:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3996,'2025-08-16','12:00:04','2025-08-16 12:14:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3997,'2025-08-16','14:00:02','2025-08-16 14:13:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3998,'2025-08-16','14:00:02','2025-08-16 14:13:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(3999,'2025-08-16','16:00:03','2025-08-16 16:13:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4000,'2025-08-16','18:00:02','2025-08-16 18:13:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4001,'2025-08-16','20:00:01','2025-08-16 20:13:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4002,'2025-08-16','22:00:01','2025-08-16 22:11:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4003,'2025-08-17','00:00:02','2025-08-17 00:10:54','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4004,'2025-08-17','02:00:01','2025-08-17 02:10:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4005,'2025-08-17','04:00:03','2025-08-17 04:11:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4006,'2025-08-17','06:00:03','2025-08-17 06:11:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4007,'2025-08-17','08:00:02','2025-08-17 08:13:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4008,'2025-08-17','10:00:02','2025-08-17 10:13:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4009,'2025-08-17','12:00:02','2025-08-17 12:13:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4010,'2025-08-17','14:00:02','2025-08-17 14:13:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4011,'2025-08-17','14:00:02','2025-08-17 14:13:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4012,'2025-08-17','16:00:02','2025-08-17 16:13:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4013,'2025-08-17','18:00:02','2025-08-17 18:13:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4014,'2025-08-17','20:00:02','2025-08-17 20:13:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4015,'2025-08-17','22:00:02','2025-08-17 22:12:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4016,'2025-08-18','00:00:04','2025-08-18 00:11:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4017,'2025-08-18','02:00:03','2025-08-18 02:10:33','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4018,'2025-08-18','04:00:03','2025-08-18 04:11:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4019,'2025-08-18','06:00:02','2025-08-18 06:10:45','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4020,'2025-08-18','08:00:02','2025-08-18 08:13:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4021,'2025-08-18','10:00:02','2025-08-18 10:15:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4022,'2025-08-18','12:00:02','2025-08-18 12:16:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4023,'2025-08-18','14:00:02','2025-08-18 14:14:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4024,'2025-08-18','14:00:02','2025-08-18 14:14:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4025,'2025-08-18','16:00:01','2025-08-18 16:13:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4026,'2025-08-18','18:00:02','2025-08-18 18:13:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4027,'2025-08-18','20:00:02','2025-08-18 20:13:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4028,'2025-08-18','22:00:02','2025-08-18 22:13:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4029,'2025-08-19','00:00:03','2025-08-19 00:10:49','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4030,'2025-08-19','02:00:02','2025-08-19 02:10:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4031,'2025-08-19','04:00:03','2025-08-19 04:11:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4032,'2025-08-19','06:00:02','2025-08-19 06:10:54','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4033,'2025-08-19','08:00:02','2025-08-19 08:12:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4034,'2025-08-19','10:00:01','2025-08-19 10:13:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4035,'2025-08-19','12:00:03','2025-08-19 12:15:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4036,'2025-08-19','14:00:02','2025-08-19 14:13:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4037,'2025-08-19','14:00:02','2025-08-19 14:13:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4038,'2025-08-19','16:00:02','2025-08-19 16:13:27','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4039,'2025-08-19','18:00:01','2025-08-19 00:00:00','thims4_mdbv3_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims4_mdbv3 > /home/thims4/public_html/thims/pages/auto_backup/thims4_mdbv3_A.txt-1email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4040,'2025-08-19','20:00:02','2025-08-19 20:13:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4041,'2025-08-19','22:00:01','2025-08-19 22:12:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4042,'2025-08-20','00:00:03','2025-08-20 00:10:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4043,'2025-08-20','02:00:02','2025-08-20 02:10:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4044,'2025-08-20','04:00:03','2025-08-20 04:11:37','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4045,'2025-08-20','06:00:02','2025-08-20 06:10:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4046,'2025-08-20','08:00:03','2025-08-20 08:12:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4047,'2025-08-20','10:00:02','2025-08-20 10:13:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4048,'2025-08-20','12:00:03','2025-08-20 12:15:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4049,'2025-08-20','14:00:02','2025-08-20 14:14:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4050,'2025-08-20','14:00:02','2025-08-20 14:14:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4051,'2025-08-20','16:00:03','2025-08-20 16:14:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4052,'2025-08-20','18:00:02','2025-08-20 18:14:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4053,'2025-08-20','20:00:02','2025-08-20 20:13:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4054,'2025-08-20','22:00:01','2025-08-20 22:12:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4055,'2025-08-21','00:00:03','2025-08-21 00:11:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4056,'2025-08-21','02:00:02','2025-08-21 02:10:32','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4057,'2025-08-21','04:00:03','2025-08-21 04:11:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4058,'2025-08-21','06:00:02','2025-08-21 06:10:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4059,'2025-08-21','08:00:02','2025-08-21 08:12:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4060,'2025-08-21','10:00:01','2025-08-21 10:13:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4061,'2025-08-21','12:00:02','2025-08-21 12:14:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4062,'2025-08-21','14:00:02','2025-08-21 14:14:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4063,'2025-08-21','14:00:02','2025-08-21 14:14:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4064,'2025-08-21','16:00:02','2025-08-21 16:13:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4065,'2025-08-21','18:00:02','2025-08-21 18:13:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4066,'2025-08-21','20:00:02','2025-08-21 20:13:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4067,'2025-08-21','22:00:02','2025-08-21 22:12:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4068,'2025-08-22','00:00:04','2025-08-22 00:11:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4069,'2025-08-22','02:00:02','2025-08-22 02:10:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4070,'2025-08-22','04:00:03','2025-08-22 04:11:33','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4071,'2025-08-22','06:00:01','2025-08-22 06:10:51','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4072,'2025-08-22','08:00:02','2025-08-22 08:12:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4073,'2025-08-22','10:00:02','2025-08-22 10:14:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4074,'2025-08-22','12:00:02','2025-08-22 12:14:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4075,'2025-08-22','14:00:02','2025-08-22 14:13:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4076,'2025-08-22','14:00:02','2025-08-22 14:13:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4077,'2025-08-22','16:00:01','2025-08-22 16:13:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4078,'2025-08-22','18:00:03','2025-08-22 18:13:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4079,'2025-08-22','20:00:02','2025-08-22 20:12:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4080,'2025-08-22','22:00:02','2025-08-22 22:12:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4081,'2025-08-23','00:00:02','2025-08-23 00:11:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4082,'2025-08-23','02:00:02','2025-08-23 02:10:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4083,'2025-08-23','04:00:03','2025-08-23 04:11:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4084,'2025-08-23','06:00:02','2025-08-23 06:10:43','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4085,'2025-08-23','08:00:02','2025-08-23 08:12:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4086,'2025-08-23','10:00:02','2025-08-23 10:13:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4087,'2025-08-23','12:00:01','2025-08-23 12:15:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4088,'2025-08-23','14:00:02','2025-08-23 14:13:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4089,'2025-08-23','14:00:02','2025-08-23 14:13:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4090,'2025-08-23','16:00:02','2025-08-23 16:13:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4091,'2025-08-23','18:00:02','2025-08-23 18:14:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4092,'2025-08-23','20:00:02','2025-08-23 20:13:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4093,'2025-08-23','22:00:01','2025-08-23 22:13:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4094,'2025-08-24','00:00:03','2025-08-24 00:11:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4095,'2025-08-24','02:00:02','2025-08-24 02:10:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4096,'2025-08-24','04:00:03','2025-08-24 04:11:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4097,'2025-08-24','06:00:02','2025-08-24 06:11:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4098,'2025-08-24','08:00:02','2025-08-24 08:13:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4099,'2025-08-24','10:00:02','2025-08-24 10:13:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4100,'2025-08-24','12:00:02','2025-08-24 12:13:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4101,'2025-08-24','14:00:02','2025-08-24 14:12:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4102,'2025-08-24','14:00:02','2025-08-24 14:12:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4103,'2025-08-24','16:00:02','2025-08-24 16:12:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4104,'2025-08-24','18:00:02','2025-08-24 18:12:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4105,'2025-08-24','20:00:02','2025-08-24 20:12:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4106,'2025-08-24','22:00:01','2025-08-24 22:11:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4107,'2025-08-25','00:00:03','2025-08-25 00:10:52','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4108,'2025-08-25','02:00:01','2025-08-25 02:10:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4109,'2025-08-25','04:00:03','2025-08-25 04:11:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4110,'2025-08-25','06:00:03','2025-08-25 06:10:51','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4111,'2025-08-25','08:00:02','2025-08-25 08:12:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4112,'2025-08-25','10:00:04','2025-08-25 10:13:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4113,'2025-08-25','12:00:02','2025-08-25 12:15:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4114,'2025-08-25','14:00:02','2025-08-25 14:14:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4115,'2025-08-25','14:00:02','2025-08-25 14:14:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4116,'2025-08-25','16:00:02','2025-08-25 16:13:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4117,'2025-08-25','18:00:03','2025-08-25 18:14:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4118,'2025-08-25','20:00:01','2025-08-25 20:13:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4119,'2025-08-25','22:00:02','2025-08-25 22:12:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4120,'2025-08-26','00:00:02','2025-08-26 00:11:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4121,'2025-08-26','02:00:02','2025-08-26 02:10:45','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4122,'2025-08-26','04:00:02','2025-08-26 04:11:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4123,'2025-08-26','06:00:02','2025-08-26 06:11:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4124,'2025-08-26','08:00:02','2025-08-26 08:12:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4125,'2025-08-26','10:00:03','2025-08-26 10:14:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4126,'2025-08-26','12:00:01','2025-08-26 12:16:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4127,'2025-08-26','14:00:01','2025-08-26 14:12:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4128,'2025-08-26','14:00:01','2025-08-26 14:12:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4129,'2025-08-26','16:00:02','2025-08-26 16:14:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4130,'2025-08-26','18:00:02','2025-08-26 18:14:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4131,'2025-08-26','20:00:02','2025-08-26 20:14:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4132,'2025-08-26','22:00:02','2025-08-26 22:13:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4133,'2025-08-27','00:00:03','2025-08-27 00:11:31','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4134,'2025-08-27','02:00:03','2025-08-27 02:10:42','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4135,'2025-08-27','04:00:03','2025-08-27 04:11:19','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4136,'2025-08-27','06:00:03','2025-08-27 06:10:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4137,'2025-08-27','08:00:02','2025-08-27 08:12:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4138,'2025-08-27','10:00:02','2025-08-27 10:13:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4139,'2025-08-27','12:00:02','2025-08-27 12:15:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4140,'2025-08-27','14:00:02','2025-08-27 14:13:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4141,'2025-08-27','14:00:02','2025-08-27 14:13:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4142,'2025-08-27','16:00:02','2025-08-27 16:13:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4143,'2025-08-27','18:00:01','2025-08-27 18:13:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4144,'2025-08-27','20:00:02','2025-08-27 20:13:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4145,'2025-08-27','22:00:01','2025-08-27 22:12:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4146,'2025-08-28','00:00:03','2025-08-28 00:10:50','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4147,'2025-08-28','02:00:02','2025-08-28 02:10:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4148,'2025-08-28','04:00:03','2025-08-28 04:11:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4149,'2025-08-28','06:00:02','2025-08-28 06:10:55','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4150,'2025-08-28','08:00:02','2025-08-28 08:12:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4151,'2025-08-28','10:00:02','2025-08-28 10:15:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4152,'2025-08-28','12:00:03','2025-08-28 12:19:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4153,'2025-08-28','14:00:02','2025-08-28 14:15:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4154,'2025-08-28','14:00:02','2025-08-28 14:15:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4155,'2025-08-28','16:00:01','2025-08-28 16:14:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4156,'2025-08-28','18:00:04','2025-08-28 00:00:00','thims4_mdbv3_A.txt','','','mysqldump --user=thims4_tsadmin --password=RnPfflah2l4f --host=localhost thims4_mdbv3 > /home/thims4/public_html/thims/pages/auto_backup/thims4_mdbv3_A.txt-1email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4157,'2025-08-28','20:00:02','2025-08-28 20:16:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4158,'2025-08-28','22:00:01','2025-08-28 22:14:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4159,'2025-08-29','00:00:03','2025-08-29 00:12:42','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4160,'2025-08-29','02:00:01','2025-08-29 02:10:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4161,'2025-08-29','04:00:03','2025-08-29 04:11:31','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4162,'2025-08-29','06:00:02','2025-08-29 06:10:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4163,'2025-08-29','08:00:02','2025-08-29 08:13:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4164,'2025-08-29','10:00:02','2025-08-29 10:14:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4165,'2025-08-29','12:00:02','2025-08-29 12:17:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4166,'2025-08-29','14:00:02','2025-08-29 14:14:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4167,'2025-08-29','14:00:02','2025-08-29 14:14:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4168,'2025-08-29','16:00:02','2025-08-29 16:14:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4169,'2025-08-29','18:00:02','2025-08-29 18:16:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4170,'2025-08-29','20:00:01','2025-08-29 20:13:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4171,'2025-08-29','22:00:01','2025-08-29 22:13:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4172,'2025-08-30','00:00:02','2025-08-30 00:11:32','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4173,'2025-08-30','02:00:02','2025-08-30 02:10:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4174,'2025-08-30','04:00:04','2025-08-30 04:11:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4175,'2025-08-30','06:00:02','2025-08-30 06:10:53','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4176,'2025-08-30','08:00:02','2025-08-30 08:13:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4177,'2025-08-30','10:00:02','2025-08-30 10:13:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4178,'2025-08-30','14:00:02','2025-08-30 14:14:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4179,'2025-08-30','14:00:02','2025-08-30 14:14:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4180,'2025-08-30','16:00:02','2025-08-30 16:13:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4181,'2025-08-30','18:00:01','2025-08-30 18:14:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4182,'2025-08-30','20:00:02','2025-08-30 20:13:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4183,'2025-08-30','22:00:02','2025-08-30 22:12:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4184,'2025-08-31','00:00:02','2025-08-31 00:10:44','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4185,'2025-08-31','02:00:02','2025-08-31 02:10:32','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4186,'2025-08-31','04:00:03','2025-08-31 04:11:23','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4187,'2025-08-31','06:00:02','2025-08-31 06:10:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4188,'2025-08-31','08:00:02','2025-08-31 08:12:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4189,'2025-08-31','10:00:02','2025-08-31 10:13:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4190,'2025-08-31','12:00:02','2025-08-31 12:13:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4191,'2025-08-31','14:00:02','2025-08-31 14:11:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4192,'2025-08-31','14:00:02','2025-08-31 14:11:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4193,'2025-08-31','16:00:02','2025-08-31 16:12:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4194,'2025-08-31','18:00:02','2025-08-31 18:13:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4195,'2025-08-31','20:00:02','2025-08-31 20:12:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4196,'2025-08-31','22:00:01','2025-08-31 22:12:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4197,'2025-09-01','00:00:02','2025-09-01 00:10:49','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4198,'2025-09-01','02:00:02','2025-09-01 02:10:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4199,'2025-09-01','04:00:02','2025-09-01 04:11:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4200,'2025-09-01','06:00:02','2025-09-01 06:10:59','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4201,'2025-09-01','08:00:01','2025-09-01 08:12:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4202,'2025-09-01','10:00:02','2025-09-01 10:13:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4203,'2025-09-01','12:00:02','2025-09-01 12:17:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4204,'2025-09-01','14:00:02','2025-09-01 14:13:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4205,'2025-09-01','14:00:02','2025-09-01 14:13:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4206,'2025-09-01','16:00:01','2025-09-01 16:13:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4207,'2025-09-01','18:00:02','2025-09-01 18:14:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4208,'2025-09-01','20:00:02','2025-09-01 20:13:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4209,'2025-09-01','22:00:02','2025-09-01 22:13:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4210,'2025-09-02','00:00:02','2025-09-02 00:12:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4211,'2025-09-02','02:00:01','2025-09-02 02:10:37','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4212,'2025-09-02','04:00:03','2025-09-02 04:11:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4213,'2025-09-02','06:00:02','2025-09-02 06:10:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4214,'2025-09-02','08:00:02','2025-09-02 08:12:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4215,'2025-09-02','10:00:02','2025-09-02 10:14:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4216,'2025-09-02','12:00:02','2025-09-02 12:16:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4217,'2025-09-02','14:00:02','2025-09-02 14:15:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4218,'2025-09-02','14:00:02','2025-09-02 14:15:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4219,'2025-09-02','16:00:03','2025-09-02 16:14:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4220,'2025-09-02','18:00:02','2025-09-02 18:15:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4221,'2025-09-02','20:00:02','2025-09-02 20:13:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4222,'2025-09-02','22:00:01','2025-09-02 22:13:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4223,'2025-09-03','00:00:02','2025-09-03 00:11:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4224,'2025-09-03','02:00:01','2025-09-03 02:10:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4225,'2025-09-03','04:00:03','2025-09-03 04:11:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4226,'2025-09-03','06:00:02','2025-09-03 06:10:46','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4227,'2025-09-03','08:00:02','2025-09-03 08:12:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4228,'2025-09-03','10:00:02','2025-09-03 10:14:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4229,'2025-09-03','12:00:02','2025-09-03 12:16:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4230,'2025-09-03','14:00:02','2025-09-03 14:15:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4231,'2025-09-03','14:00:02','2025-09-03 14:15:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4232,'2025-09-03','16:00:02','2025-09-03 16:14:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4233,'2025-09-03','18:00:02','2025-09-03 18:14:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4234,'2025-09-03','20:00:02','2025-09-03 20:14:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4235,'2025-09-03','22:00:02','2025-09-03 22:13:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4236,'2025-09-04','00:00:02','2025-09-04 00:11:10','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4237,'2025-09-04','02:00:03','2025-09-04 02:10:50','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4238,'2025-09-04','04:00:03','2025-09-04 04:11:12','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4239,'2025-09-04','06:00:02','2025-09-04 06:10:50','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4240,'2025-09-04','08:00:02','2025-09-04 08:13:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4241,'2025-09-04','10:00:02','2025-09-04 10:14:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4242,'2025-09-04','12:00:02','2025-09-04 12:15:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4243,'2025-09-04','14:00:02','2025-09-04 14:14:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4244,'2025-09-04','14:00:02','2025-09-04 14:14:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4245,'2025-09-04','16:00:01','2025-09-04 16:14:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4246,'2025-09-04','18:00:01','2025-09-04 18:15:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4247,'2025-09-04','20:00:02','2025-09-04 20:13:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4248,'2025-09-04','22:00:02','2025-09-04 22:13:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4249,'2025-09-05','00:00:03','2025-09-05 00:11:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4250,'2025-09-05','02:00:02','2025-09-05 02:11:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4251,'2025-09-05','04:00:03','2025-09-05 04:11:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4252,'2025-09-05','06:00:02','2025-09-05 06:10:45','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4253,'2025-09-05','08:00:01','2025-09-05 08:12:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4254,'2025-09-05','10:00:02','2025-09-05 10:14:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4255,'2025-09-05','12:00:02','2025-09-05 12:16:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4256,'2025-09-05','14:00:02','2025-09-05 14:15:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4257,'2025-09-05','14:00:02','2025-09-05 14:15:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4258,'2025-09-05','16:00:02','2025-09-05 16:14:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4259,'2025-09-05','18:00:01','2025-09-05 18:15:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4260,'2025-09-05','20:00:02','2025-09-05 20:14:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4261,'2025-09-05','22:00:02','2025-09-05 22:13:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4262,'2025-09-06','00:00:03','2025-09-06 00:11:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4263,'2025-09-06','02:00:02','2025-09-06 02:10:56','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4264,'2025-09-06','04:00:03','2025-09-06 04:11:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4265,'2025-09-06','06:00:02','2025-09-06 06:10:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4266,'2025-09-06','08:00:02','2025-09-06 08:12:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4267,'2025-09-06','10:00:02','2025-09-06 10:14:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4268,'2025-09-06','12:00:02','2025-09-06 12:15:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4269,'2025-09-06','14:00:01','2025-09-06 14:14:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4270,'2025-09-06','14:00:01','2025-09-06 14:14:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4271,'2025-09-06','16:00:02','2025-09-06 16:14:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4272,'2025-09-06','18:00:02','2025-09-06 18:14:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4273,'2025-09-06','20:00:02','2025-09-06 20:14:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4274,'2025-09-06','22:00:02','2025-09-06 22:13:20','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4275,'2025-09-07','00:00:02','2025-09-07 00:11:32','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4276,'2025-09-07','02:00:02','2025-09-07 02:10:43','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4277,'2025-09-07','04:00:03','2025-09-07 04:11:32','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4278,'2025-09-07','06:00:02','2025-09-07 06:10:45','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4279,'2025-09-07','08:00:02','2025-09-07 08:12:53','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4280,'2025-09-07','10:00:02','2025-09-07 10:14:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4281,'2025-09-07','12:00:02','2025-09-07 12:13:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4282,'2025-09-07','14:00:02','2025-09-07 14:12:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4283,'2025-09-07','14:00:02','2025-09-07 14:12:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4284,'2025-09-07','16:00:02','2025-09-07 16:12:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4285,'2025-09-07','18:00:02','2025-09-07 18:13:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4286,'2025-09-07','20:00:02','2025-09-07 20:13:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4287,'2025-09-07','22:00:01','2025-09-07 22:12:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4288,'2025-09-08','00:00:02','2025-09-08 00:10:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4289,'2025-09-08','02:00:02','2025-09-08 02:10:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4290,'2025-09-08','04:00:03','2025-09-08 04:11:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4291,'2025-09-08','06:00:01','2025-09-08 06:10:43','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4292,'2025-09-08','08:00:02','2025-09-08 08:12:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4293,'2025-09-08','10:00:02','2025-09-08 10:15:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4294,'2025-09-08','12:00:02','2025-09-08 12:18:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4295,'2025-09-08','14:00:02','2025-09-08 14:15:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4296,'2025-09-08','14:00:02','2025-09-08 14:15:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4297,'2025-09-08','16:00:02','2025-09-08 16:16:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4298,'2025-09-08','18:00:02','2025-09-08 18:16:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4299,'2025-09-09','02:00:01','2025-09-09 02:10:49','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4300,'2025-09-09','04:00:02','2025-09-09 04:11:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4301,'2025-09-09','06:00:02','2025-09-09 06:10:16','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4302,'2025-09-09','08:00:02','2025-09-09 08:11:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4303,'2025-09-09','10:00:02','2025-09-09 10:13:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4304,'2025-09-09','12:00:01','2025-09-09 12:13:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4305,'2025-09-09','14:00:01','2025-09-09 14:13:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4306,'2025-09-09','14:00:01','2025-09-09 14:13:21','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4307,'2025-09-09','16:00:02','2025-09-09 16:13:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4308,'2025-09-09','18:00:01','2025-09-09 18:12:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4309,'2025-09-09','20:00:02','2025-09-09 20:12:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4310,'2025-09-09','22:00:01','2025-09-09 22:11:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4311,'2025-09-10','00:00:02','2025-09-10 00:11:05','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4312,'2025-09-10','02:00:02','2025-09-10 02:10:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4313,'2025-09-10','04:00:03','2025-09-10 04:11:03','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4314,'2025-09-10','06:00:02','2025-09-10 06:10:15','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4315,'2025-09-10','08:00:02','2025-09-10 08:11:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4316,'2025-09-10','10:00:01','2025-09-10 10:13:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4317,'2025-09-10','12:00:02','2025-09-10 12:16:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4318,'2025-09-10','14:00:02','2025-09-10 14:13:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4319,'2025-09-10','14:00:02','2025-09-10 14:13:13','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4320,'2025-09-10','16:00:02','2025-09-10 16:13:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4321,'2025-09-10','18:00:02','2025-09-10 18:14:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4322,'2025-09-10','20:00:02','2025-09-10 20:13:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4323,'2025-09-10','22:00:01','2025-09-10 22:12:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4324,'2025-09-11','00:00:03','2025-09-11 00:10:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4325,'2025-09-11','02:00:02','2025-09-11 02:10:22','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4326,'2025-09-11','04:00:03','2025-09-11 04:10:59','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4327,'2025-09-11','06:00:02','2025-09-11 06:10:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4328,'2025-09-11','08:00:02','2025-09-11 08:12:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4329,'2025-09-11','10:00:02','2025-09-11 10:13:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4330,'2025-09-11','12:00:02','2025-09-11 12:14:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4331,'2025-09-11','14:00:01','2025-09-11 14:13:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4332,'2025-09-11','14:00:01','2025-09-11 14:13:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4333,'2025-09-11','16:00:01','2025-09-11 16:13:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4334,'2025-09-11','18:00:02','2025-09-11 18:13:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4335,'2025-09-11','20:00:03','2025-09-11 20:12:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4336,'2025-09-11','22:00:01','2025-09-11 22:12:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4337,'2025-09-12','00:00:02','2025-09-12 00:10:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4338,'2025-09-12','02:00:01','2025-09-12 02:10:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4339,'2025-09-12','04:00:04','2025-09-12 04:11:42','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4340,'2025-09-12','06:00:02','2025-09-12 06:10:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4341,'2025-09-12','08:00:02','2025-09-12 08:12:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4342,'2025-09-12','10:00:02','2025-09-12 10:14:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4343,'2025-09-12','12:00:02','2025-09-12 12:14:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4344,'2025-09-12','14:00:02','2025-09-12 14:13:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4345,'2025-09-12','14:00:02','2025-09-12 14:13:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4346,'2025-09-12','16:00:02','2025-09-12 16:12:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4347,'2025-09-12','18:00:02','2025-09-12 18:14:44','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4348,'2025-09-12','20:00:02','2025-09-12 20:13:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4349,'2025-09-12','22:00:02','2025-09-12 22:12:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4350,'2025-09-13','00:00:02','2025-09-13 00:10:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4351,'2025-09-13','02:00:02','2025-09-13 02:10:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4352,'2025-09-13','04:00:05','2025-09-13 04:11:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4353,'2025-09-13','06:00:02','2025-09-13 06:10:32','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4354,'2025-09-13','08:00:02','2025-09-13 08:12:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4355,'2025-09-13','10:00:02','2025-09-13 10:14:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4356,'2025-09-13','12:00:03','2025-09-13 12:15:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4357,'2025-09-13','14:00:02','2025-09-13 14:12:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4358,'2025-09-13','14:00:02','2025-09-13 14:12:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4359,'2025-09-13','16:00:02','2025-09-13 16:12:46','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4360,'2025-09-13','18:00:02','2025-09-13 18:13:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4361,'2025-09-13','20:00:02','2025-09-13 20:12:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4362,'2025-09-13','22:00:01','2025-09-13 22:12:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4363,'2025-09-14','00:00:02','2025-09-14 00:10:39','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4364,'2025-09-14','02:00:02','2025-09-14 02:10:32','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4365,'2025-09-14','04:00:04','2025-09-14 04:11:12','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4366,'2025-09-14','06:00:03','2025-09-14 06:10:49','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4367,'2025-09-14','08:00:02','2025-09-14 08:12:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4368,'2025-09-14','10:00:02','2025-09-14 10:12:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4369,'2025-09-14','12:00:02','2025-09-14 12:13:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4370,'2025-09-14','14:00:03','2025-09-14 14:13:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4371,'2025-09-14','14:00:03','2025-09-14 14:13:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4372,'2025-09-14','16:00:02','2025-09-14 16:12:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4373,'2025-09-14','18:00:01','2025-09-14 18:13:16','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4374,'2025-09-14','20:00:02','2025-09-14 20:12:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4375,'2025-09-14','22:00:01','2025-09-14 22:11:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4376,'2025-09-15','00:00:01','2025-09-15 00:10:28','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4377,'2025-09-15','02:00:02','2025-09-15 02:10:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4378,'2025-09-15','04:00:03','2025-09-15 04:11:00','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4379,'2025-09-15','06:00:02','2025-09-15 06:10:14','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4380,'2025-09-15','08:00:02','2025-09-15 08:11:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4381,'2025-09-15','10:00:02','2025-09-15 10:12:59','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4382,'2025-09-15','12:00:03','2025-09-15 12:16:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4383,'2025-09-15','14:00:03','2025-09-15 14:13:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4384,'2025-09-15','14:00:03','2025-09-15 14:13:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4385,'2025-09-15','16:00:02','2025-09-15 16:14:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4386,'2025-09-15','18:00:02','2025-09-15 18:14:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4387,'2025-09-15','20:00:02','2025-09-15 20:13:37','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4388,'2025-09-15','22:00:01','2025-09-15 22:12:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4389,'2025-09-16','00:00:03','2025-09-16 00:11:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4390,'2025-09-16','02:00:02','2025-09-16 02:10:33','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4391,'2025-09-16','04:00:04','2025-09-16 04:11:11','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4392,'2025-09-16','06:00:02','2025-09-16 06:10:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4393,'2025-09-16','08:00:02','2025-09-16 08:13:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4394,'2025-09-16','10:00:01','2025-09-16 10:14:43','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4395,'2025-09-16','12:00:02','2025-09-16 12:16:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4396,'2025-09-16','14:00:02','2025-09-16 14:14:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4397,'2025-09-16','14:00:02','2025-09-16 14:14:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4398,'2025-09-16','16:00:01','2025-09-16 16:14:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4399,'2025-09-16','18:00:02','2025-09-16 18:14:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4400,'2025-09-16','20:00:01','2025-09-16 20:14:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4401,'2025-09-16','22:00:02','2025-09-16 22:12:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4402,'2025-09-17','00:00:03','2025-09-17 00:11:01','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4403,'2025-09-17','02:00:02','2025-09-17 02:10:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4404,'2025-09-17','04:00:03','2025-09-17 04:11:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4405,'2025-09-17','06:00:02','2025-09-17 06:10:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4406,'2025-09-17','08:00:02','2025-09-17 08:13:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4407,'2025-09-17','10:00:02','2025-09-17 10:14:22','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4408,'2025-09-17','12:00:02','2025-09-17 12:15:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4409,'2025-09-17','14:00:02','2025-09-17 14:15:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4410,'2025-09-17','14:00:02','2025-09-17 14:15:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4411,'2025-09-17','16:00:01','2025-09-17 16:14:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4412,'2025-09-17','18:00:02','2025-09-17 18:15:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4413,'2025-09-17','20:00:02','2025-09-17 20:14:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4414,'2025-09-17','22:00:01','2025-09-17 22:12:42','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4415,'2025-09-18','00:00:02','2025-09-18 00:11:08','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4416,'2025-09-18','02:00:02','2025-09-18 02:10:32','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4417,'2025-09-18','04:00:04','2025-09-18 04:11:25','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4418,'2025-09-18','06:00:02','2025-09-18 06:10:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4419,'2025-09-18','08:00:02','2025-09-18 08:12:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4420,'2025-09-18','10:00:02','2025-09-18 10:14:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4421,'2025-09-18','12:00:01','2025-09-18 12:16:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4422,'2025-09-18','14:00:01','2025-09-18 14:14:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4423,'2025-09-18','14:00:01','2025-09-18 14:14:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4424,'2025-09-18','16:00:02','2025-09-18 16:13:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4425,'2025-09-18','18:00:02','2025-09-18 18:13:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4426,'2025-09-18','20:00:02','2025-09-18 20:13:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4427,'2025-09-18','22:00:01','2025-09-18 22:12:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4428,'2025-09-19','00:00:03','2025-09-19 00:11:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4429,'2025-09-19','02:00:02','2025-09-19 02:11:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4430,'2025-09-19','04:00:02','2025-09-19 04:11:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4431,'2025-09-19','12:00:02','2025-09-19 12:13:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4432,'2025-09-19','14:00:02','2025-09-19 14:13:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4433,'2025-09-19','14:00:02','2025-09-19 14:13:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4434,'2025-09-19','16:00:01','2025-09-19 16:13:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4435,'2025-09-19','18:00:02','2025-09-19 18:14:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4436,'2025-09-19','20:00:02','2025-09-19 20:12:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4437,'2025-09-19','22:00:02','2025-09-19 22:12:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4438,'2025-09-20','00:00:03','2025-09-20 00:11:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4439,'2025-09-20','02:00:01','2025-09-20 02:10:20','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4440,'2025-09-20','04:00:03','2025-09-20 04:10:29','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4441,'2025-09-20','06:00:02','2025-09-20 06:10:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4442,'2025-09-20','08:00:02','2025-09-20 08:12:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4443,'2025-09-20','10:00:02','2025-09-20 10:12:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4444,'2025-09-20','12:00:02','2025-09-20 12:14:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4445,'2025-09-20','14:00:03','2025-09-20 14:14:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4446,'2025-09-20','14:00:03','2025-09-20 14:14:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4447,'2025-09-20','16:00:02','2025-09-20 16:13:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4448,'2025-09-20','18:00:02','2025-09-20 18:13:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4449,'2025-09-20','20:00:01','2025-09-20 20:13:17','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4450,'2025-09-20','22:00:04','2025-09-20 22:12:36','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4451,'2025-09-21','00:00:03','2025-09-21 00:11:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4452,'2025-09-21','02:00:02','2025-09-21 02:10:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4453,'2025-09-21','04:00:03','2025-09-21 04:10:58','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4454,'2025-09-21','06:00:02','2025-09-21 06:11:03','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4455,'2025-09-21','08:00:03','2025-09-21 08:12:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4456,'2025-09-21','10:00:02','2025-09-21 10:12:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4457,'2025-09-21','12:00:03','2025-09-21 12:13:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4458,'2025-09-21','14:00:02','2025-09-21 14:13:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4459,'2025-09-21','14:00:02','2025-09-21 14:13:02','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4460,'2025-09-21','16:00:02','2025-09-21 16:13:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4461,'2025-09-21','18:00:02','2025-09-21 18:13:06','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4462,'2025-09-21','20:00:03','2025-09-21 20:12:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4463,'2025-09-21','22:00:01','2025-09-21 22:12:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4464,'2025-09-22','00:00:03','2025-09-22 00:11:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4465,'2025-09-22','02:00:03','2025-09-22 02:10:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4466,'2025-09-22','04:00:03','2025-09-22 04:11:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4467,'2025-09-22','06:00:02','2025-09-22 06:10:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4468,'2025-09-22','08:00:02','2025-09-22 08:12:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4469,'2025-09-22','10:00:02','2025-09-22 10:13:14','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4470,'2025-09-22','12:00:02','2025-09-22 12:14:01','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4471,'2025-09-22','14:00:03','2025-09-22 14:13:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4472,'2025-09-22','14:00:03','2025-09-22 14:13:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4473,'2025-09-22','16:00:02','2025-09-22 16:13:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4474,'2025-09-22','18:00:01','2025-09-22 18:13:47','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4475,'2025-09-22','20:00:03','2025-09-22 20:12:55','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4476,'2025-09-22','22:00:01','2025-09-22 22:12:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4477,'2025-09-23','00:00:03','2025-09-23 00:11:13','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4478,'2025-09-23','02:00:01','2025-09-23 02:10:26','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4479,'2025-09-23','04:00:04','2025-09-23 04:11:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4480,'2025-09-23','06:00:02','2025-09-23 06:10:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4481,'2025-09-23','08:00:02','2025-09-23 08:12:45','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4482,'2025-09-23','10:00:02','2025-09-23 10:13:54','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4483,'2025-09-23','12:00:02','2025-09-23 12:14:07','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4484,'2025-09-23','14:00:02','2025-09-23 14:13:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4485,'2025-09-23','14:00:02','2025-09-23 14:13:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4486,'2025-09-23','16:00:02','2025-09-23 16:12:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4487,'2025-09-23','18:00:02','2025-09-23 18:14:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4488,'2025-09-23','20:00:02','2025-09-23 20:12:48','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4489,'2025-09-23','22:00:01','2025-09-23 22:12:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4490,'2025-09-24','00:00:02','2025-09-24 00:11:07','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4491,'2025-09-24','02:00:02','2025-09-24 02:10:41','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4492,'2025-09-24','04:00:04','2025-09-24 04:11:21','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4493,'2025-09-24','06:00:01','2025-09-24 06:10:33','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4494,'2025-09-24','08:00:01','2025-09-24 08:12:11','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4495,'2025-09-24','10:00:02','2025-09-24 10:13:00','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4496,'2025-09-24','12:00:02','2025-09-24 12:16:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4497,'2025-09-24','14:00:02','2025-09-24 14:13:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4498,'2025-09-24','14:00:02','2025-09-24 14:13:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4499,'2025-09-24','16:00:03','2025-09-24 16:13:19','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4500,'2025-09-24','18:00:02','2025-09-24 18:13:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4501,'2025-09-24','20:00:02','2025-09-24 20:13:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4502,'2025-09-24','22:00:01','2025-09-24 22:12:39','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4503,'2025-09-25','00:00:01','2025-09-25 00:11:09','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4504,'2025-09-25','02:00:02','2025-09-25 02:10:35','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4505,'2025-09-25','04:00:03','2025-09-25 04:11:03','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4506,'2025-09-25','06:00:02','2025-09-25 06:10:27','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4507,'2025-09-25','08:00:01','2025-09-25 08:12:03','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4508,'2025-09-25','10:00:02','2025-09-25 10:13:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4509,'2025-09-25','12:00:02','2025-09-25 12:13:38','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4510,'2025-09-25','14:00:02','2025-09-25 14:12:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4511,'2025-09-25','14:00:02','2025-09-25 14:12:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4512,'2025-09-25','16:00:02','2025-09-25 16:12:52','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4513,'2025-09-25','18:00:01','2025-09-25 18:13:04','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4514,'2025-09-25','20:00:02','2025-09-25 20:13:25','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4515,'2025-09-25','22:00:02','2025-09-25 22:12:41','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4516,'2025-09-26','00:00:03','2025-09-26 00:11:56','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4517,'2025-09-26','02:00:02','2025-09-26 02:10:36','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4518,'2025-09-26','04:00:04','2025-09-26 04:11:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4519,'2025-09-26','06:00:02','2025-09-26 06:10:48','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4520,'2025-09-26','08:00:02','2025-09-26 08:12:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4521,'2025-09-26','10:00:02','2025-09-26 10:13:33','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4522,'2025-09-26','12:00:02','2025-09-26 12:15:26','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4523,'2025-09-26','14:00:02','2025-09-26 14:13:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4524,'2025-09-26','14:00:02','2025-09-26 14:13:49','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4525,'2025-09-26','16:00:02','2025-09-26 16:13:05','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4526,'2025-09-26','18:00:05','2025-09-26 18:14:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4527,'2025-09-26','20:00:01','2025-09-26 20:13:50','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4528,'2025-09-26','22:00:02','2025-09-26 22:13:08','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4529,'2025-09-27','00:00:03','2025-09-27 00:11:24','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4530,'2025-09-27','02:00:01','2025-09-27 02:10:34','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4531,'2025-09-27','04:00:04','2025-09-27 04:11:30','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4532,'2025-09-27','06:00:01','2025-09-27 06:11:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4533,'2025-09-27','08:00:02','2025-09-27 08:12:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4534,'2025-09-27','10:00:02','2025-09-27 10:13:40','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4535,'2025-09-27','12:00:02','2025-09-27 12:15:23','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4536,'2025-09-27','14:00:02','2025-09-27 14:13:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4537,'2025-09-27','14:00:02','2025-09-27 14:13:24','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4538,'2025-09-27','16:00:02','2025-09-27 16:13:32','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4539,'2025-09-27','18:00:02','2025-09-27 18:14:29','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4540,'2025-09-27','20:00:02','2025-09-27 20:13:51','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4541,'2025-09-27','22:00:02','2025-09-27 22:13:31','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4542,'2025-09-28','00:00:02','2025-09-28 00:11:50','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4543,'2025-09-28','02:00:02','2025-09-28 02:10:44','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4544,'2025-09-28','04:00:04','2025-09-28 04:11:40','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4545,'2025-09-28','06:00:02','2025-09-28 06:11:04','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4546,'2025-09-28','08:00:02','2025-09-28 08:12:34','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4547,'2025-09-28','10:00:01','2025-09-28 10:13:15','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4548,'2025-09-28','12:00:02','2025-09-28 12:13:18','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4549,'2025-09-28','14:00:02','2025-09-28 14:13:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4550,'2025-09-28','14:00:02','2025-09-28 14:13:28','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4551,'2025-09-28','16:00:03','2025-09-28 16:12:57','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4552,'2025-09-28','18:00:02','2025-09-28 18:13:12','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4553,'2025-09-28','20:00:02','2025-09-28 20:12:56','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4554,'2025-09-28','22:00:02','2025-09-28 22:13:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4555,'2025-09-29','00:00:03','2025-09-29 00:11:48','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4556,'2025-09-29','02:00:02','2025-09-29 02:10:46','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4557,'2025-09-29','04:00:03','2025-09-29 04:11:17','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4558,'2025-09-29','06:00:02','2025-09-29 06:10:48','thims4_mdbv3_N.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4559,'2025-09-29','08:00:01','2025-09-29 08:12:58','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4560,'2025-09-29','10:00:02','2025-09-29 10:13:35','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4561,'2025-09-29','12:00:02','2025-09-29 12:16:09','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4562,'2025-09-29','14:00:02','2025-09-29 14:14:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4563,'2025-09-29','14:00:02','2025-09-29 14:14:10','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4564,'2025-09-29','16:00:02','2025-09-29 16:13:30','thims4_mdbv3_A.zip','/auto_backup/thims4_mdbv3/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4565,'2025-09-30','01:30:03','2025-09-30 01:33:51','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4566,'2025-09-30','13:30:02','2025-09-30 13:33:47','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4567,'2025-10-01','01:30:03','2025-10-01 01:33:27','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4568,'2025-10-01','13:30:03','2025-10-01 13:34:21','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4569,'2025-10-02','01:30:05','2025-10-02 01:34:17','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4570,'2025-10-02','13:30:05','2025-10-02 13:34:08','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4571,'2025-10-03','01:30:03','2025-10-03 01:33:53','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4572,'2025-10-03','13:30:05','2025-10-03 13:34:05','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4573,'2025-10-04','01:30:02','2025-10-04 01:33:47','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4574,'2025-10-04','13:30:02','2025-10-04 13:34:31','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4575,'2025-10-05','01:30:04','2025-10-05 01:33:53','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4576,'2025-10-05','13:30:05','2025-10-05 13:34:18','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4577,'2025-10-06','01:30:02','2025-10-06 01:33:33','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4578,'2025-10-06','13:30:05','2025-10-06 13:34:19','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4579,'2025-10-07','01:30:02','2025-10-07 01:34:01','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4580,'2025-10-07','13:30:03','2025-10-07 13:34:13','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4581,'2025-10-08','01:30:02','2025-10-08 01:34:11','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4582,'2025-10-08','13:30:05','2025-10-08 13:34:12','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4583,'2025-10-09','01:30:02','2025-10-09 01:34:21','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4584,'2025-10-09','13:30:05','2025-10-09 13:34:18','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4585,'2025-10-10','01:30:02','2025-10-10 01:34:03','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4586,'2025-10-10','13:30:02','2025-10-10 13:34:05','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4587,'2025-10-11','01:30:02','2025-10-11 01:33:57','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4588,'2025-10-11','13:30:07','2025-10-11 13:33:58','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4589,'2025-10-12','01:30:03','2025-10-12 01:33:28','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4590,'2025-10-12','13:30:05','2025-10-12 13:33:56','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4591,'2025-10-13','01:30:01','2025-10-13 01:33:20','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4592,'2025-10-13','13:30:04','2025-10-13 13:34:05','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4593,'2025-10-14','01:30:02','2025-10-14 01:33:59','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4594,'2025-10-14','13:30:03','2025-10-14 13:34:00','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4595,'2025-10-15','01:30:03','2025-10-15 01:33:54','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4596,'2025-10-15','13:30:04','2025-10-15 13:34:35','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4597,'2025-10-16','01:30:02','2025-10-16 01:34:07','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4598,'2025-10-16','13:30:04','2025-10-16 13:34:15','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4599,'2025-10-17','01:30:04','2025-10-17 01:34:18','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4600,'2025-10-17','13:30:04','2025-10-17 13:33:51','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4601,'2025-10-18','01:30:03','2025-10-18 01:34:20','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4602,'2025-10-18','13:30:05','2025-10-18 13:33:54','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4603,'2025-10-19','01:30:02','2025-10-19 01:34:05','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4604,'2025-10-19','13:30:04','2025-10-19 13:34:26','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4605,'2025-10-20','01:30:01','2025-10-20 01:34:07','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4606,'2025-10-20','13:30:04','2025-10-20 13:34:32','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4607,'2025-10-21','01:30:03','2025-10-21 01:34:13','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4608,'2025-10-21','13:30:05','2025-10-21 13:34:38','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4609,'2025-10-22','01:30:02','2025-10-22 01:34:52','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4610,'2025-10-22','13:30:04','2025-10-22 13:35:14','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4611,'2025-10-23','01:30:02','2025-10-23 01:34:38','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4612,'2025-10-23','13:30:04','2025-10-23 13:34:59','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4613,'2025-10-24','01:30:02','2025-10-24 01:35:22','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4614,'2025-10-24','13:30:08','2025-10-24 13:35:39','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4615,'2025-10-25','01:30:02','2025-10-25 01:34:37','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4616,'2025-10-25','13:30:04','2025-10-25 13:34:45','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4617,'2025-10-26','01:30:03','2025-10-26 01:34:37','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4618,'2025-10-26','13:30:06','2025-10-26 13:34:44','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4619,'2025-10-27','01:30:02','2025-10-27 01:34:47','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4620,'2025-10-27','13:30:04','2025-10-27 13:35:17','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4621,'2025-10-28','01:30:03','2025-10-28 01:35:04','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4622,'2025-10-28','13:30:07','2025-10-28 13:35:21','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4623,'2025-10-29','01:30:05','2025-10-29 01:34:41','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4624,'2025-10-29','13:30:03','2025-10-29 13:34:23','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4625,'2025-10-30','01:30:02','2025-10-30 01:33:56','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4626,'2025-10-30','13:30:06','2025-10-30 13:34:28','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4627,'2025-10-31','01:30:02','2025-10-31 01:34:08','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4628,'2025-10-31','13:30:05','2025-10-31 13:35:55','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4629,'2025-11-01','01:30:03','2025-11-01 01:34:25','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4630,'2025-11-01','13:30:05','2025-11-01 13:35:18','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4631,'2025-11-02','01:30:02','2025-11-02 01:34:34','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4632,'2025-11-02','14:30:04','2025-11-02 14:35:12','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4633,'2025-11-03','02:30:03','2025-11-03 02:34:33','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4634,'2025-11-03','14:30:09','2025-11-03 14:35:40','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4635,'2025-11-04','02:30:03','2025-11-04 02:35:06','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4636,'2025-11-04','14:30:06','2025-11-04 14:35:43','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4637,'2025-11-05','02:30:01','2025-11-05 02:34:13','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4638,'2025-11-05','14:30:08','2025-11-05 14:34:48','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4639,'2025-11-06','02:30:02','2025-11-06 02:34:18','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4640,'2025-11-06','14:30:09','2025-11-06 14:34:56','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4641,'2025-11-07','02:30:02','2025-11-07 02:34:33','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4642,'2025-11-07','14:30:09','2025-11-07 14:36:08','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4643,'2025-11-08','02:30:03','2025-11-08 02:34:37','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4644,'2025-11-08','14:30:04','2025-11-08 14:35:20','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4645,'2025-11-09','02:30:03','2025-11-09 02:34:55','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4646,'2025-11-09','14:30:05','2025-11-09 14:36:19','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4647,'2025-11-10','02:30:03','2025-11-10 02:34:59','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4648,'2025-11-10','14:30:06','2025-11-10 14:35:44','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4649,'2025-11-11','02:30:03','2025-11-11 02:34:49','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4650,'2025-11-11','14:30:04','2025-11-11 14:34:52','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4651,'2025-11-12','02:30:02','2025-11-12 02:34:50','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4652,'2025-11-12','14:30:04','2025-11-12 14:35:30','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4653,'2025-11-13','02:30:03','2025-11-13 02:34:53','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4654,'2025-11-13','14:30:05','2025-11-13 14:35:41','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4655,'2025-11-14','02:30:02','2025-11-14 02:34:27','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4656,'2025-11-14','14:30:04','2025-11-14 14:35:13','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4657,'2025-11-15','02:30:02','2025-11-15 02:34:49','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.');
INSERT INTO `auto_backup_log` VALUES (4658,'2025-11-15','14:30:02','2025-11-15 14:35:26','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4659,'2025-11-16','02:30:03','2025-11-16 02:34:36','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4660,'2025-11-16','14:30:04','2025-11-16 14:36:02','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4661,'2025-11-17','02:30:01','2025-11-17 02:34:29','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4662,'2025-11-17','14:30:03','2025-11-17 14:35:57','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4663,'2025-11-18','02:30:02','2025-11-18 02:34:53','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4664,'2025-11-18','14:30:04','2025-11-18 14:35:28','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4665,'2025-11-19','02:30:02','2025-11-19 02:34:28','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4666,'2025-11-19','14:30:04','2025-11-19 14:35:17','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4667,'2025-11-20','02:30:03','2025-11-20 02:34:46','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4668,'2025-11-20','14:30:03','2025-11-20 14:35:13','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4669,'2025-11-21','02:30:01','2025-11-21 02:34:19','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4670,'2025-11-21','14:30:03','2025-11-21 14:35:12','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4671,'2025-11-22','02:30:02','2025-11-22 02:35:18','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4672,'2025-11-22','14:30:03','2025-11-22 14:35:07','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4673,'2025-11-23','02:30:01','2025-11-23 02:34:16','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4674,'2025-11-23','14:30:02','2025-11-23 14:36:08','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4675,'2025-11-24','02:30:01','2025-11-24 02:34:15','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4676,'2025-11-24','14:30:03','2025-11-24 14:35:43','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4677,'2025-11-25','02:30:02','2025-11-25 02:34:46','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4678,'2025-11-25','14:30:04','2025-11-25 14:35:28','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4679,'2025-11-26','02:30:02','2025-11-26 02:35:27','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4680,'2025-11-26','14:30:03','2025-11-26 14:35:04','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4681,'2025-11-27','02:30:01','2025-11-27 02:34:32','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4682,'2025-11-27','14:30:04','2025-11-27 14:35:42','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4683,'2025-11-28','02:30:02','2025-11-28 02:35:46','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4684,'2025-11-28','14:30:04','2025-11-28 14:35:31','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4685,'2025-11-29','02:30:01','2025-11-29 02:34:31','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4686,'2025-11-29','14:30:02','2025-11-29 14:35:20','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4687,'2025-11-30','02:30:01','2025-11-30 02:34:11','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4688,'2025-11-30','14:30:03','2025-11-30 14:35:36','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4689,'2025-12-01','02:30:01','2025-12-01 02:34:24','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4690,'2025-12-01','14:30:02','2025-12-01 14:35:21','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4691,'2025-12-02','02:30:01','2025-12-02 02:34:47','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4692,'2025-12-02','14:30:03','2025-12-02 14:35:00','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4693,'2025-12-03','02:30:02','2025-12-03 02:34:48','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4694,'2025-12-03','14:30:04','2025-12-03 14:35:52','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4695,'2025-12-04','02:30:01','2025-12-04 02:34:39','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4696,'2025-12-04','14:30:04','2025-12-04 14:35:35','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4697,'2025-12-05','02:30:01','2025-12-05 02:35:16','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4698,'2025-12-05','14:30:06','2025-12-05 14:36:26','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4699,'2025-12-06','02:30:02','2025-12-06 02:35:03','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4700,'2025-12-06','14:30:02','2025-12-06 14:35:51','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4701,'2025-12-07','02:30:02','2025-12-07 02:34:47','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4702,'2025-12-07','14:30:03','2025-12-07 14:37:05','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4703,'2025-12-08','02:30:02','2025-12-08 02:35:01','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4704,'2025-12-08','14:30:03','2025-12-08 14:35:31','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4705,'2025-12-09','02:30:02','2025-12-09 02:35:33','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4706,'2025-12-09','14:30:03','2025-12-09 14:36:03','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4707,'2025-12-10','02:30:03','2025-12-10 02:36:03','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4708,'2025-12-10','14:30:03','2025-12-10 14:35:24','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4709,'2025-12-11','02:30:03','2025-12-11 02:35:40','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4710,'2025-12-11','14:30:04','2025-12-11 14:35:28','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4711,'2025-12-12','02:30:03','2025-12-12 02:35:32','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4712,'2025-12-12','14:30:04','2025-12-12 14:36:42','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4713,'2025-12-13','02:30:02','2025-12-13 02:35:19','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4714,'2025-12-13','14:30:05','2025-12-13 14:35:36','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4715,'2025-12-14','02:30:02','2025-12-14 02:34:52','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4716,'2025-12-14','14:30:04','2025-12-14 14:36:01','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4717,'2025-12-15','02:30:03','2025-12-15 02:35:06','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4718,'2025-12-15','14:30:03','2025-12-15 14:35:42','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4719,'2025-12-16','02:30:01','2025-12-16 02:35:06','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4720,'2025-12-16','14:30:04','2025-12-16 14:35:35','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4721,'2025-12-17','02:30:02','2025-12-17 02:34:47','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4722,'2025-12-17','14:30:03','2025-12-17 14:35:54','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4723,'2025-12-18','02:30:02','2025-12-18 02:35:44','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4724,'2025-12-18','14:30:04','2025-12-18 14:35:53','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4725,'2025-12-19','02:30:02','2025-12-19 02:35:21','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4726,'2025-12-19','14:30:03','2025-12-19 14:36:33','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4727,'2025-12-20','02:30:02','2025-12-20 02:35:21','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4728,'2025-12-20','14:30:03','2025-12-20 14:36:29','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4729,'2025-12-21','02:30:02','2025-12-21 02:34:42','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4730,'2025-12-21','14:30:03','2025-12-21 14:35:49','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day2','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4731,'2025-12-22','02:30:02','2025-12-22 02:34:49','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4732,'2025-12-22','14:30:05','2025-12-22 14:35:36','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day3','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4733,'2025-12-23','02:30:03','2025-12-23 02:34:51','thims2_genesis007_N.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.'),(4734,'2025-12-23','14:30:03','2025-12-23 14:35:51','thims2_genesis007_A.zip','/auto_backup/thims2_genesis007/day1','','backup_success email error::Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.');
/*!40000 ALTER TABLE `auto_backup_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `autosuggests`
--

DROP TABLE IF EXISTS `autosuggests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `autosuggests` (
  `WORDS` varchar(45) NOT NULL,
  `COUNT` int(11) DEFAULT '0',
  KEY `WORDS` (`WORDS`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `autosuggests`
--

LOCK TABLES `autosuggests` WRITE;
/*!40000 ALTER TABLE `autosuggests` DISABLE KEYS */;
INSERT INTO `autosuggests` VALUES ('SEND',0),('MANEVUER',0),('MAENVUER',0),('MEANVEUR',0),('MASSAGE',0),('REGIONF',0),('REGION',0),('KINDLY',0),('SOFT',0),('MOULD',0),('BOTH',0),('AMEVNEUR',0),('MAENV',0),('WILL',0),('COME',0),('LATER',0),('REST',0),('CARDIOLOGIST',0),('RIGHTI',0),('RIGHT',0),('AMENVUER',0),('MAEVNEUR',0),('DAYS',0),('MAEVNUER',0),('LEFT',0),('MAENVEUR',0),('VESTIBULAR',0),('INVESTIGATIONS',0),('PHYSIOTHERAPY',0),('MAENVUE',0),('MAEN',0),('VUER',0),('MANEUVER',0),('FOLLOW',0),('REMOVAL',0),('NEXT',0),('TIME',0),('BRAIN',0),('WEEK',0),('LIMITED',0),('STUDY',0),('REDUCTION',0),('NASAL',0),('BONE',0),('NEUROLOGIST',0),('OPINION',0),('PHYSICIAN',0),('BREATHLESSNESS',0),('MANNEUER',0),('MAVNUER',0),('NVEUR',0),('NVUER',0),('MENVUER',0),('CONTROL',0),('GLAUCOMA',0),('MANVUER',0),('OPINON',0),('ENVUER',0),('BILATAELR',0),('KEEP',0),('TOLERATING',0),('PRECAUTION',0),('PHARMACOTHERAPY',0),('ADVISED',0),('CONME',0),('MAEANVUER',0),('NERVE',0),('PROTOCOL',0),('ADVICE',0),('WITH',0),('REPORTS',0),('VENOGRAM',0),('RIGTH',0),('HEADACHE',0),('ABSCONDED',0),('GUARDED',0),('PROGNOSIS',0),('HEARING',0),('LOSS',0),('LOWERBACK',0),('PAIN',0),('ADMISSION',0),('REFUSED',0),('MAERNVUER',0),('OGDSCOPY',0),('ABDOMEN',0),('SUGAR',0),('RESTRICTED',0),('DIET',0),('TINNITUS',0),('WORK',0),('BLOCKAGE',0),('NEUROSURGICAL',0),('MANAGEMENT',0),('PAROTID',0),('POSTURAL',0),('CHANGES',0),('CATHER',0),('CARE',0),('ORAL',0),('PLEASE',0),('ADMIT',0),('SEMI',0),('WARD',0),('UNDER',0),('ARCHIT',0),('RATHOD',0),('RAHTOD',0),('ECHO',0),('RHEMATOLOGIST',0),('REFFERNCE',0),('TEMPORAL',0),('ARTERITIS',0),('SEPTOPLASTY',0),('SYNECHIA',0),('RELEASE',0),('MEANVUER',0),('CERVICAL',0),('SPINE',0),('CONTINUE',0),('PSCHIATRIST',0),('REFFENCE',0),('TRIAL',0),('ANTIBIOTICS',0),('SUPPORTIVE',0),('TREATMENT',0),('INSULIN',0),('LATEAR',0),('NEED',0),('DETOID',0),('ABSCESS',0),('CHEST',0),('MAEWNVUER',0),('DYNAPAR',0),('STAT',0),('MEWNVEUR',0),('ITDX',0),('GASTROENTEROLOGIST',0),('MEDICINES',0),('STEMETIL',0),('INTRAMUSCULAR',0),('DISPOVAN',0),('ITGM',0),('PROSTAGUARD',0),('SURGEON',0),('PHYSIOTHERPIST',0),('PSYCHIATRIC',0),('ADENOIDS',0),('WORKUP',0),('PSYCHIATRIST',0),('DENTAL',0),('BIOPSY',0),('SURGERY',0),('ANAESTHESIA',0),('CALCULATED',0),('RISK',0),('DERMATOLOGIST',0),('EPLEYS',0),('SALT',0),('SCAN',0),('NECK',0),('ASSESMENT',0),('AFTER',0),('SYMPTOMS',0),('PERSIST',0),('MENEVUER',0),('BLOOD',0),('LIMTED',0),('ANGIOGRAPHY',0),('BIALTERL',0),('FESS',0),('RECURRENT',0),('POSITIONAL',0),('GIDDINESS',0),('PRESENTLY',0),('REFUSES',0),('EPILEPSY',0),('DIPLOPIA',0),('STRICT',0),('MONITORING',0),('ANGLE',0),('TUMOUR',0),('PATIENCAN',0),('TAKEN',0),('ANESTHETIC',0),('DRUGS',0),('OPERATIVE',0),('MAMENVEUR',0),('RELATIVES',0),('MAENVAUR',0),('MAENVUR',0),('FNAC',0),('HOLD',0),('ECOSPRIN',0),('BEFORE',0),('START',0),('POST',0),('REPEAT',0),('PATIENT',0),('SUREGERY',0),('BIND',0),('SACHET',0),('GLASS',0),('WATER',0),('ADMISION',0),('BIOPAY',0),('FROM',0),('FOSSA',0),('UNCER',0),('CARPLE',0),('TUNNEL',0),('SYNDROME',0),('DROPS',0),('MANVUERT',0),('MAEWVUER',0),('KAMLESH',0),('PATEL',0),('ORTHOPEADIC',0),('KNEE',0),('PANIC',0),('ATTACK',0),('ESTIBULAR',0),('AMENVEUR',0),('GYNAECOLOGIST',0),('KAUL',0),('FROZEN',0),('SHOULDER',0),('ADAPTATION',0),('ITDM',0),('INSUKIN',0),('WHOLE',0),('SCREENING',0),('CONTINU',0),('INTERVENTION',0),('CARDIOTHORASIC',0),('ADIVCE',0),('ROLL',0),('MAVNEUR',0),('DAILY',0),('DRESSING',0),('CATHETER',0),('CLAMPING',0),('SILICON',0),('CATHETAR',0),('LABETEOL',0),('INFUPAR',0),('MENAVUER',0),('SAME',0),('CLEARANCE',0),('ABPM',0),('PATIETN',0),('GAURDED',0),('HIGH',0),('PREVIOUS',0),('MEDICINE',0),('OPENION',0),('EXCERSIONAL',0),('DYSPNEA',0),('LABETOLOL',0),('ECOTOR',0),('GOLD',0),('OPTOR',0),('TOOTH',0),('EXTRACTION',0),('ROCEDURE',0),('PROCEDURE',0),('NEUROPHYSICIAN',0),('REFFERENCE',0),('DIABETEIC',0),('NEUROPAHTY',0),('PROTEIN',0),('LULICONAZOLE',0),('CREAM',0),('ONCHO',0),('STOP',0),('APIXA',0),('PVRU',0),('APIXABAN',0),('UROLOGIST',0),('LARYNGOSCOPY',0),('ORTHO',0),('BACKACHE',0),('TOMORROW',0),('ROSHAN',0),('MISTRY',0),('CONSULTATION',0),('HEMATOLIGIST',0),('HYDROXYUREA',0),('ULTERNATE',0),('MEDICATION',0),('PROTOCO',0),('PEADIATRICIAN',0),('PSYCHI',0),('ANXIETY',0),('DISORDER',0),('ALREADY',0),('DISCUSSED',0),('REFFER',0),('MMAENVUER',0),('FEVER',0),('ORHTOPEDIC',0),('MAEWNVEUR',0),('ROSULESS',0),('SURGICAL',0),('MAWENVUER',0),('PARKINSON',0),('DISEASE',0),('THYROID',0),('SWELLING',0),('RESTRICTE',0),('ONCOSURGICAL',0),('WEAR',0),('MASK',0),('SMOKING',0),('PLASTY',0),('PURE',0),('TONE',0),('AUDIOMETRY',0),('STABILOMETRY',0),('VIDEO',0),('NYSTAGMOGRAPHY',0),('MAEVUER',0),('RISHIKESH',0),('KALARIA',0),('GASTOENTROLOGIST',0),('STERLING',0),('HOSPITAL',0),('CLEANING',0),('ESCITALOPRAM',0),('MAEWNV',0),('LATAER',0);
/*!40000 ALTER TABLE `autosuggests` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `backup_log`
--

DROP TABLE IF EXISTS `backup_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `backup_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `backup_date` date NOT NULL,
  `file_name` varchar(40) NOT NULL COMMENT 'database backup file name',
  `path` varchar(50) NOT NULL COMMENT 'database backup path',
  `document_file_name` varchar(50) NOT NULL COMMENT 'document folder backup filename ',
  `document_file_path` varchar(50) NOT NULL COMMENT 'document folder backup file path',
  `bk_st_time` time NOT NULL,
  `bk_end_time` time NOT NULL,
  `db_download_datetime` datetime NOT NULL,
  `doc_download_datetime` datetime NOT NULL,
  `db_download_by` varchar(20) NOT NULL,
  `doc_download_by` varchar(20) NOT NULL,
  `is_downloaded` enum('Y','N') NOT NULL DEFAULT 'N',
  `is_file_deleted` enum('Y','N') NOT NULL DEFAULT 'N',
  `status` varchar(300) NOT NULL,
  `download_datetime` datetime NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime 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 `backup_log`
--

LOCK TABLES `backup_log` WRITE;
/*!40000 ALTER TABLE `backup_log` DISABLE KEYS */;
INSERT INTO `backup_log` VALUES (1,'2025-12-23','Error While Creating Backup','/THIMS_Backup','','','17:53:39','17:53:40','0000-00-00 00:00:00','0000-00-00 00:00:00','','','N','N','1 mysqldump --user=thims2_tsadmin --password=vgOMS}xW0svO -h localhost thims2_genesis007 > /THIMS_Backup/thims2_genesis007_20251223_55339.txt Email could not be sent.. Mailer Error: SMTP Error: Could not authenticate.','0000-00-00 00:00:00','thims','2025-12-23 17:53:40','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `backup_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `biochemistry_test_mapping`
--

DROP TABLE IF EXISTS `biochemistry_test_mapping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `biochemistry_test_mapping` (
  `bc_machine_test_code` varchar(8) NOT NULL,
  `thims_test_code` varchar(8) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`bc_machine_test_code`,`thims_test_code`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `biochemistry_test_mapping`
--

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

--
-- Table structure for table `bmsh_mis_data`
--

DROP TABLE IF EXISTS `bmsh_mis_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bmsh_mis_data` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date NOT NULL,
  `object_type` varchar(6) NOT NULL,
  `object_sub_type` varchar(10) NOT NULL,
  `original_value` float(9,2) NOT NULL,
  `object_value` float(9,2) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bmsh_mis_data`
--

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

--
-- Table structure for table `bmw_loc_mst`
--

DROP TABLE IF EXISTS `bmw_loc_mst`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bmw_loc_mst` (
  `bmw_loc_id` varchar(9) NOT NULL,
  `bmw_location` varchar(30) NOT NULL,
  `department_id` int(11) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `Menu_Expand` enum('Y','N') NOT NULL DEFAULT 'N',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) DEFAULT NULL,
  `LastModifiedDate` datetime DEFAULT NULL,
  PRIMARY KEY (`bmw_loc_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Store Locations of where different bins can be placed';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bmw_loc_mst`
--

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

--
-- Table structure for table `business_associate`
--

DROP TABLE IF EXISTS `business_associate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `business_associate` (
  `Code` varchar(7) NOT NULL,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `Name` varchar(30) NOT NULL,
  `Company_Name` varchar(40) NOT NULL,
  `Add1` varchar(40) NOT NULL,
  `Add2` varchar(40) NOT NULL,
  `Pin` varchar(6) NOT NULL,
  `City` varchar(15) NOT NULL,
  `State` varchar(15) NOT NULL,
  `Country` varchar(15) NOT NULL,
  `Primary_Phone` varchar(10) NOT NULL,
  `Secondary_Phone` varchar(10) NOT NULL,
  `Office_Phone` varchar(15) NOT NULL,
  `Dob` char(5) NOT NULL COMMENT 'Day-Month Format',
  `Marriage_Ann` char(5) NOT NULL COMMENT 'Day-Month Format',
  `Remark` varchar(50) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(20) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`Code`,`company_id`,`branch_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Business Associate';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `business_associate`
--

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

--
-- Table structure for table `business_entity_master`
--

DROP TABLE IF EXISTS `business_entity_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `business_entity_master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `code` char(2) NOT NULL COMMENT 'H- Hospital, P - Pharmacy, L - Laboratory, R - Radiology, IP - IP Pharmacy',
  `payroll_applicable` enum('Y','N') NOT NULL DEFAULT 'N',
  `name` varchar(100) NOT NULL,
  `guj_name` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `company_name` varchar(50) NOT NULL,
  `provider_code` varchar(4) NOT NULL,
  `b_entitiy_sort_name` varchar(20) NOT NULL,
  `op_ip_id_prefix` varchar(4) NOT NULL,
  `subtitle` varchar(40) DEFAULT NULL,
  `CIN_NO` varchar(50) NOT NULL,
  `pan_no` varchar(10) NOT NULL,
  `tan_no` varchar(10) NOT NULL,
  `dl_no` varchar(50) NOT NULL,
  `gsttin_no` varchar(20) NOT NULL COMMENT 'Goods and Service Tax Identification Number represents the Identification of entity for Both VAT as well as Service Tax Payments and Inputs. It is Fourteen Digit Alphanumerical',
  `tinno` varchar(15) DEFAULT NULL COMMENT 'Tax Payer Identification Number- TIN or VAT.  TIN number varies from state to state.',
  `logo` blob COMMENT 'Stores logo',
  `add1` varchar(100) NOT NULL,
  `add2` varchar(100) DEFAULT NULL,
  `city` varchar(30) NOT NULL,
  `pincode` mediumint(9) NOT NULL,
  `state` varchar(30) NOT NULL,
  `country_code` char(2) CHARACTER SET utf8 NOT NULL DEFAULT 'IN' COMMENT 'country iso code from country table',
  `tel1` varchar(15) NOT NULL,
  `tel2` varchar(15) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `website` varchar(100) DEFAULT NULL,
  `be_req_for_reg` enum('Y','N') NOT NULL DEFAULT 'N' COMMENT 'Business Entity Required for registration.',
  `remarks` text NOT NULL,
  `emp_id_start` int(11) DEFAULT NULL,
  `emp_id_end` int(11) DEFAULT NULL,
  `last_emp_id` int(11) DEFAULT NULL,
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(20) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`code`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Stores different business entity information for given hospital';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `business_entity_master`
--

LOCK TABLES `business_entity_master` WRITE;
/*!40000 ALTER TABLE `business_entity_master` DISABLE KEYS */;
INSERT INTO `business_entity_master` VALUES (0,0,'H','Y','Genesis Multispeciality Hospital','Genesis Multispeciality Hospital','','','','','','','','','dl number','GST number','',_binary '\\\0JFIF\0\0\0\0\0\\0\"Exif\0\0MM\0*\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\\0C\0		\n\n\r\n\n	\r\\0C\0\0<\0<\"\0\\0\0\0\0\0\0\0\0\0\0\0	\n\\0\0\0\0}\0!1AQa\"q2#BR\$3br	\n\Z%&\'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\0\0\0\0\0\0\0\0	\n\\0\0\0w\0!1AQaq\"2B	#3Rbr\\n$4\%\Z&\'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz\\\\\\\\\\\\\\\\\\\\\\\\\\\\\0\0\0?\0(\02}O\'g\\s3ٯ\<}Z\Zf\\wk\\\>qMwV>Sʰ`8\yoJ+9EYI\-]ѻ\;v\0*R\$m]k.\\voo7\ G\\gk0}zi\S(\0(\0O\3ƚ_\܍C\Wm-٬.hg\\<(n\x#\\GS6z\'\]ٖ)c7-\\s\#(&iDT\\	\\\\ZE嶘ڔmo=\o|r	q\0u\¿\Z~͞2V\\\R}#6\\]jLo%6\?\?\1\G\>Yny<f18ѫI\U#/g$n)\RNjST\\\\\0\]\nXRoi*Nj.eMr\\\R\a*\՚WƟ\GL\i\\Y>\ wi\'r(x\\̿3H\RFG5\C|\g\^\\\6\\PNkv\ZBX\\@\\nS \׆mo\t;x5;\oa]\\b1q)#\0\b\SR=\Z:\\%\X5nmU\&׺\o_\\N8q\ZN6)$ݗ,\N\R(\\\\_<D}kn.\2 l\>\\VY\^	\{qw\'\\K\>M\00%\\\r\I1\0onG\'\{u/\\Zyՠ\T\`\(Ag-ӓ޼C\߳\ѡ}x~\?E\\\Lȫ\d\+7c\+\8+\1u\RV\e̛Ҕy\\ڵ\jL2\hR,b\9+IE\Eٽ׼m\\u5i̗v_m\[tv`І\"W\#0\`tȪ}\uj.\\r\\\g)\(3)E9\g\*=\O#\Z\\v.M%\ht\-gr\uAEv!L\\j\\z^\\Z5\I<7\hx]\:fbCH \0\ryQq7Rp\WѪ|\	kK{Fi\kgs\1+֓wWIs_=㽺Z?>i\}B{\nk{\.+IⶏP\F)\\\rs[<\\_wΡqe<z\vFO=\\UGL\h\\0.\I\K˃e֑\HW*,nqyw\:\\W\Zt\\~\'\\T\\\umDV\\\03]Y\\8hKRiqrzےM(\\V۱əW\O)Si\3\JJQM䓺\\=o\X\tgn-\L\ -.hѷ\/}HS\Z-&\n|Kݾ\0\T{{\n#o-\{Ċ\9\'nrO޹e\\(\\nu]&\UT\9\S\\h{W\e\۔ِ\(8,ҝE{ǚp(\nH\mR;J%rw`\\PGsı!U\0s\\#x\=O\Z\E\\0*Gr\k\\\/>\j\x\Zy)lxI=o;\[\fVim\( _98ކUS\A;\\M}͵ױLeYǒV_W\n(\','opp.nakshatra-7,chandan park main road,','raiya road,','Rajkot',360007,'Gujarat','IN','7574000509','','genesishospital.rajkot@gmail.com',NULL,'N','',NULL,NULL,NULL,'','0000-00-00 00:00:00',NULL,NULL),(0,0,'L','Y','Genesis Multispeciality Hospital','Genesis Multispeciality Hospital','','','','','','','','','dl number','GST number','',NULL,'opp.nakshatra-7,chandan park main road,','raiya road,','Rajkot',360007,'Gujarat','IN','7574000509','','genesishospital.rajkot@gmail.com',NULL,'N','',NULL,NULL,NULL,'','0000-00-00 00:00:00',NULL,NULL),(0,0,'P','Y','Genesis Multispeciality Hospital','Genesis Multispeciality Hospital','','','','',NULL,'','','','dl number','GST number',NULL,_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0<\0\0\0|f\0\0\0sRGB\0\\\0\0\0gAMA\0\0a\0\0\0	pHYs\0\0\\0\0\+\0\0\r\IDATx^\wlU\\NJK)Fe৸1G\{o\ۨq&FMQ\=\H\`1(`PUimK\\~ԧ\\s%o\s\羯s\y&#bC ]@\t#. v\Ď@\H;\bG ]@\t#. v\Ď@\H;\bG ]@\t#. v\Ď]\nݪ\;k\\'KJJ2KI1\\\\\Ϝ2\r\ϷA7=l߰j-\N\\\XWWKhm\cǏ\\\ۋ\\\\\\͛\\\ۭ+qPؐ!C\g޼y6j\(KMMM܍TQQa[\u:::\={\r:\]\X\\\v\\Nb*L6\\n\n\n\0 \zD\W_ҋ.2/\x\\(8\\6TQx\*gKK\\#d\ߢ+\\<\\]\6bkk6(\roЭ8BD>}~\6v\\\\\I4,X`\K|\\N8Q-[feee}69\۶m\f\\ZKOOw$>|\裏:\222G\B\\\R#YNp\/~\@w\\\r7K;{\\[VQuHIZ6n-e\&\B$gfZw\\,-,{\\\\\c>;\-\\\\/ֲ~uh\*j֣ݪhZ6f̰Y,gؤyW_r5\3Tp\YVp\֢\\\`ɲR\y\o\ÆW\_\8\'\'\\5;\\\_KOb<\Zdw;Fj\:剮4{̘1e555NI!\njQ\'Nh\\ٶ}v^,syFi\\ŽIg\\_\G}7\9s)?\|\>{_ f~~y\6L1`mR2;\;l\\{\@pl<\>i\$>|\'ޭءCJ\?\\c W=D)2\\q+v!\\(]G)+{\\Z,n-ȇD]ź\O<aN9\\\\V)\\r\\nnE\-G,~\1y\֦ݹ\ꫭ\\7\0<\53X\ >\\ml\J ^x#\/`[nue\\'L:թ@UU\{n,\\k\\}ұ\\\>dBJ\`\\\s\\:bCD\\9H\P`l`ۏ\\\8\n\ag=\mAB\s\Aٱ\\\\VbP-\B%[>gCu\Aݏ?\\K/m*A\ZOR!R\tSm\9\%xlN~\!$\\nc7\\\ɖj\z\m\e­Z\\[n\w>D\b\=\Z];xg_\\b[\Kw>$\S6\gtF\"H\B\\'\L Tj*W8\`\@yP%\0eqv7\\W֭[קWD\˗/w\Q[\'Α\r\\\X\wY3s\\\\\ɓ]_:Gfn8B[X\\/P{\*-J\	HnvД\K8v\X\,\?\0dH;\Z\k\R\h[\\6B\ʕC-|H\'kV\P\\=\r\\\Z\p\}V)\ܙp-\"L\ngHڶl\q#pCTzfsUކJ\(~WC-\o\M7\d\$\WXaKQ7`-J\9\\(rE:E2N^I\0eJ07\n\}0^3\<\V+W3\8\NT)<%ϱ.lA&|\z\tݚx\Z\7\`Lw?Y-RbêUJ\n׮2&pqv\\\^o\Ssd\\Nm\Z zHoÓjk\=XݿBc)B[\V&߻\yML|\ZSvD\\<iG\<:R( 	]r\ A_\FWHk\+.	^yKC\\\O?u848\32|Ï8\\wc\+\/OQ\D;\s\֫\DK/ \P		\_vף>1\\`\\\Z~\VJ\z\(%	STjTQ\\Vt單5k\\\}9∦\^p\:\no{K\" U\w1ΐDgK!uo\#rꉀ(X\Z9*[\UDdX\Mz\ku\'Վ?\spFz\2v/)\N\4G~\\b\II_$F\\(\*b<ᆐ>I	\$q(ӄ	ܩ^\?t{¡\u*b\\'8?\'hGh\\;Q/\\ՋšR.Q\Z\\o\\d\sQ\\\~\QD7x/\\W)\\G\\n\;\ƫ9k\IlӃ\6.\ߣENV\GۭZ*V\h\\W)rtJVk\*\\t9Wd\3PSO\n=_t͖ݼ\\F8l@izl\KL\\0U.TkdE&$dp¤\;C\\%\nth#IH$BB._v\|\\Ar9p@\ sx\yb\/A&\þ\w\\rQ!	\J\"y!/>MOޓR\~\-?R>QPO8\\\N#]_١	%d)\g<DԨ~:oT%.Q\0\\۩ &MiJ\\\b)\єܨ\Fm\ֲ/nb\)\c*=\\/ՆhUوTO\::d\]wYkee~\\\R5\5_H3?	I2*4\^U N|#vK$%\$b»1H6]c\s\\H\\!l\0O~TRBB\\>\\ףDSyoX`,TRXc3E7\n\"aeF	\\3D}BZŭUT\-\\(Qߑy\\üoRӿU}\0\\\\\'ἂIW@/\0r8EI\mz=gC\Ty\\\%CWsy8\S\n\|\\Krէr\ R}\}\7\Dd\;.vW2O.	 \\\\Z\\RC\)))q\ϓ~S\k\TЫv  $\J\N/ZIlaa]\|(-r/Q,\x`\{\\_\\9s\}\w\!$Q̐>L5\8-IAĿ(]rY\e={JTz7/\SAEE^\\\"\N\\]\n\n\'\f)[\w=\A\'g\}­1	1\\#M\QhNBQ-~.O@\DAޑ\\Q)#Fp	\66|<\(\hm$Rq`\'	cΜi\\1PF\0\b#\r_g\0\'!:eme>\\\F. \]S2 \@ ]@\t#. v\Ď@\H;\bG ]@\t#. v\Ď@\H;\bG ]@\t#. v\Ď@\H3\@vX.X-\\\0\0\0\0IENDB`','opp.nakshatra-7,chandan park main road,','raiya road,','Rajkot',360007,'Gujarat','IN','7574000509','','genesishospital.rajkot@gmail.com',NULL,'N','',NULL,NULL,NULL,'','0000-00-00 00:00:00',NULL,NULL);
/*!40000 ALTER TABLE `business_entity_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `business_entity_room_mapping`
--

DROP TABLE IF EXISTS `business_entity_room_mapping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `business_entity_room_mapping` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `business_entity_code` varchar(2) NOT NULL,
  `provider` int(11) NOT NULL,
  `room_cat_id` varchar(4) NOT NULL,
  `room_id` varchar(6) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `business_entity_room_mapping`
--

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

--
-- Table structure for table `business_entity_wise_doctor`
--

DROP TABLE IF EXISTS `business_entity_wise_doctor`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `business_entity_wise_doctor` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `business_entity_code` varchar(2) NOT NULL,
  `doctor_id` int(11) NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`business_entity_code`,`doctor_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `business_entity_wise_doctor`
--

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

--
-- Table structure for table `category_master`
--

DROP TABLE IF EXISTS `category_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `category_master` (
  `company_id` tinyint(4) NOT NULL,
  `category_id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
  `category_abbrev` varchar(10) NOT NULL COMMENT 'Category abbreviation e.g TAB, CAP',
  `category_name` varchar(15) NOT NULL COMMENT 'Defaults value from abbreviation and allows user to edit name if required. e.g Tablet, Capsule',
  `is_auto_created` tinyint(1) NOT NULL DEFAULT '0',
  `is_auto_updated` tinyint(1) NOT NULL DEFAULT '0',
  `mapping_id` varchar(6) DEFAULT NULL COMMENT 'Mapping general_master.gm_code',
  `category_is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(20) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`category_id`),
  UNIQUE KEY `category_abbrev` (`category_abbrev`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `category_master`
--

LOCK TABLES `category_master` WRITE;
/*!40000 ALTER TABLE `category_master` DISABLE KEYS */;
INSERT INTO `category_master` VALUES (0,1,'DROP','Drop',0,0,'DROP','Y','thims','0000-00-00 00:00:00',NULL,NULL),(0,2,'INJ','Injection',0,0,'INJ','Y','thims','0000-00-00 00:00:00',NULL,NULL),(0,3,'LOTION','Lotion',0,0,'LOTION','Y','thims','0000-00-00 00:00:00',NULL,NULL),(0,4,'OINT','Ointment',0,0,'OINT','Y','thims','0000-00-00 00:00:00',NULL,NULL),(0,5,'OTH','Other',0,0,'OTH','Y','thims','0000-00-00 00:00:00',NULL,NULL),(0,6,'POWDER','Powder',0,0,'POWDER','Y','thims','0000-00-00 00:00:00',NULL,NULL),(0,7,'SOL','Solution',0,0,'SOL','Y','thims','0000-00-00 00:00:00',NULL,NULL),(0,8,'SPRAY','Spray',0,0,'SPRAY','Y','thims','0000-00-00 00:00:00',NULL,NULL),(0,9,'SYRUP','Syrup',0,0,'SYRUP','Y','thims','0000-00-00 00:00:00',NULL,NULL),(0,10,'TAB','Tablet',0,1,'TAB','Y','thims','0000-00-00 00:00:00','trigger','0000-00-00 00:00:00'),(0,11,'CAP','CAPSULE',0,1,'CAP','Y','thims','0000-00-00 00:00:00','trigger','0000-00-00 00:00:00'),(0,12,'BLED','Bled',0,0,'BLED','N','thims','0000-00-00 00:00:00','vikram','0000-00-00 00:00:00'),(0,13,'DIAPER','DIAPER',0,0,'DIAPER','Y','thims','0000-00-00 00:00:00',NULL,NULL),(0,14,'MASK','MASK',0,0,'MASK','Y','thims','0000-00-00 00:00:00',NULL,NULL),(0,15,'MESH','MESH',0,0,'MESH','Y','thims','0000-00-00 00:00:00',NULL,NULL),(0,16,'SACHET ','SACHET ',0,0,'SACHET','Y','thims','0000-00-00 00:00:00',NULL,NULL),(0,17,'SANITIZER','SANITIZER',0,0,'SANITI','Y','thims','0000-00-00 00:00:00',NULL,NULL),(0,18,'SURGICAL','SURGICAL',0,0,'SURGIC','Y','thims','0000-00-00 00:00:00',NULL,NULL),(0,19,'SUTURE','SUTURE',0,0,'SUTURE','Y','thims','0000-00-00 00:00:00',NULL,NULL),(0,20,'SYRINGE','SYRINGE',0,0,'SYRING','Y','thims','0000-00-00 00:00:00',NULL,NULL),(0,21,'GLOVES','Gloves',0,0,'GLOVES','Y','divyang','0000-00-00 00:00:00','vikram','0000-00-00 00:00:00'),(0,22,'NEEDLE','Needle',0,0,'NEEDLE','Y','sagar','0000-00-00 00:00:00','sagar','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `category_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `charge_master`
--

DROP TABLE IF EXISTS `charge_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `charge_master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `rate_card_id` int(11) NOT NULL,
  `service_code` varchar(8) NOT NULL,
  `charge_amendment_no` smallint(6) NOT NULL,
  `op_charge` float NOT NULL,
  `ip_charge` float NOT NULL,
  `gst_percentage` float(9,2) NOT NULL,
  `active_YN` enum('Y','N') NOT NULL DEFAULT 'Y',
  `is_approved` enum('N','Y') NOT NULL DEFAULT 'Y',
  `approved_by` varchar(20) NOT NULL,
  `approved_datetime` datetime NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `rate_card_id` (`company_id`,`branch_id`,`rate_card_id`,`service_code`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=10014 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `charge_master`
--

LOCK TABLES `charge_master` WRITE;
/*!40000 ALTER TABLE `charge_master` DISABLE KEYS */;
INSERT INTO `charge_master` VALUES (0,0,1,1,'AECO0001',0,100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2,1,'AECO0002',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3,1,'AECO0003',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4,1,'AECO0004',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,5,1,'AECO0005',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,6,1,'AECO0006',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,7,1,'AECO0007',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,8,1,'AECO0008',5,1,1,0.00,'Y','Y','vishal','2025-10-11 18:51:48','thims','2024-04-01 13:18:00','vishal','2025-10-11 18:51:48'),(0,0,9,1,'AECO0009',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,10,1,'ADMN0001',0,50,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,11,1,'ADMN0002',0,100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,12,1,'ADMN0003',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,13,1,'ADMN0004',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,15,1,'ADMN0006',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,16,1,'ADMN0007',0,600,600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,17,1,'ADMN0008',0,10,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,18,1,'ADMN0009',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,19,1,'ADMN0010',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,20,1,'ADMN0012',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,21,1,'ADMN0013',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,22,1,'ADMN0014',0,50,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,23,1,'REG0001',1,250,250,0.00,'Y','Y','reception','2025-10-10 19:28:16','thims','2024-04-01 13:18:00','reception','2025-10-10 19:28:16'),(0,0,26,1,'AMBS0001',0,50,50,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,28,1,'AMBS0002',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,29,1,'AMBS0003',0,100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,30,1,'AMBS0004',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,31,1,'AMBS0005',0,25,25,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,32,1,'AMBS0006',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,33,1,'AMBS0007',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,36,1,'AMBS0008',0,10,10,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,37,1,'AMBS0009',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,38,1,'AMBS0010',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,39,1,'AMBS0011',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,41,1,'ANES0001',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,42,1,'ANES0002',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,43,1,'ANES0003',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,44,1,'ANES0004',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,45,1,'ANES0005',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,46,1,'ANES0006',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,47,1,'ANES0007',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,48,1,'ANES0009',0,3500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,49,1,'ANES0010',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,50,1,'ANES0011',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,51,1,'ANES0013',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,52,1,'ANES0014',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,53,1,'ANES0015',0,3500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,54,1,'ANES0016',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,55,1,'ANES0017',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,56,1,'ANES0018',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,57,1,'ANES0019',0,9000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,58,1,'BMED0001',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,59,1,'BMED0002',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,60,1,'BMED0003',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,61,1,'BMED0004',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,62,1,'BMED0005',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,63,1,'BMED0006',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,64,1,'BMED0007',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,65,1,'BMED0008',0,350,350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,66,1,'BMED0009',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,67,1,'BMED0010',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,68,1,'BMED0011',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,69,1,'BMED0012',0,2200,2200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,70,1,'BMED0013',0,20000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,71,1,'BMED0014',0,5500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,72,1,'BMED0015',0,6600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,73,1,'BMED0016',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,74,1,'BMED0017',0,3500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,75,1,'BMED0018',0,4500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,76,1,'BMED0019',0,4500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,77,1,'BMED0020',0,1700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,78,1,'BMED0021',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,79,1,'BMED0022',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,80,1,'BMED0023',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,81,1,'BMED0024',0,180,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,82,1,'BMED0025',0,20,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,83,1,'BMED0026',0,3300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,84,1,'BMED0027',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,85,1,'BMED0028',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,86,1,'BMED0029',0,16500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,87,1,'BMED0030',0,300,300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,88,1,'BMED0032',0,60,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,89,1,'BMED0033',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,90,1,'BMED0034',0,3500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,91,1,'BMED0035',0,4500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,92,1,'BMED0036',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,93,1,'BMED0037',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,94,1,'BMED0038',0,400,400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,95,1,'BMED0041',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,96,1,'BMED0042',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,97,1,'BMED0044',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,98,1,'BMED0045',0,40,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,99,1,'BMED0046',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,100,1,'BMED0048',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,101,1,'BMED0049',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,102,1,'BMED0050',0,3300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,103,1,'BMED0051',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,104,1,'CRIP0001',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,105,1,'CRIP0002',0,4500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,106,1,'CRIP0003',0,11000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,107,1,'CRIP0004',0,3300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,108,1,'CRIP0005',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,109,1,'CTSN0001',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,110,1,'CTSN0002',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,111,1,'CTSN0004',0,5400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,112,1,'CTSN0005',0,5400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,113,1,'CTSN0006',0,5400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,114,1,'CTSN0007',0,5400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,115,1,'CTSN0008',0,7000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,116,1,'CTSN0009',0,7000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,117,1,'CTSN0010',0,5400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,118,1,'CTSN0011',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,119,1,'CTSN0012',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,120,1,'CTSN0013',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,121,1,'CTSN0014',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,122,1,'CTSN0015',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,123,1,'CTSN0016',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,124,1,'CTSN0017',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,125,1,'CTSN0018',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,126,1,'CTSN0019',0,2700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,127,1,'CTSN0020',0,2700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,128,1,'CTSN0021',0,2700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,129,1,'CTSN0025',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,130,1,'CTSN0026',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,131,1,'CTSN0027',0,3500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,132,1,'CTSN0028',0,2700,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,133,1,'CTSN0029',0,2700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,134,1,'CTSN0031',0,2800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,135,1,'CTSN0032',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,136,1,'CTSN0033',0,3500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,137,1,'CTSN0034',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,138,1,'CTSN0035',0,2700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,139,1,'CTSN0036',0,5000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,140,1,'CTSN0037',0,2700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,141,1,'CTSN0038',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,142,1,'CTSN0039',0,2700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,143,1,'CTSN0040',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,144,1,'CTSN0041',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,145,1,'CTSN0042',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,146,1,'CTSN0043',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,147,1,'CTSN0044',0,3500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,148,1,'CTSN0045',0,5000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,149,1,'CTSN0046',0,3500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,150,1,'CTSN0047',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,151,1,'CTSN0048',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,152,1,'CTSN0049',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,153,1,'CTSN0050',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,154,1,'CTSN0051',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,155,1,'DTPR0001',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,156,1,'DTPR0003',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,157,1,'DTPR0004',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,158,1,'DTPR0007',0,3550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,159,1,'DTPR0008',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,160,1,'DTPR0009',0,5500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,161,1,'DTPR0012',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,162,1,'DTPR0016',0,8800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,163,1,'DTPR0017',0,6200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,164,1,'DTPR0018',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,165,1,'DTPR0019',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,166,1,'DTPR0023',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,167,1,'DTPR0024',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,168,1,'DTPR0025',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,169,1,'DTPR0026',0,2450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,170,1,'DTPR0027',0,3550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,171,1,'DTPR0031',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,172,1,'DTPR0032',0,14300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,174,1,'DTPR0035',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,175,1,'DTPR0036',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,176,1,'DTPR0037',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,177,1,'DTPR0038',0,3550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,178,1,'DTPR0047',0,8250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,179,1,'DTPR0050',0,5500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,180,1,'DTPR0053',0,137500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,181,1,'DTPR0054',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,182,1,'DTPR0058',0,8800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,183,1,'DTPR0060',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,184,1,'DTPR0064',0,13200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,185,1,'DTPR0065',0,9700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,186,1,'DTPR0066',0,7050,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,187,1,'DTPR0067',0,100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,188,1,'DTPR0070',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,189,1,'DTPR0071',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,190,1,'DTPR0072',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,191,1,'DTPR0076',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,192,1,'DTPR0077',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,193,1,'DTPR0078',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,194,1,'DTPR0082',0,4400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,195,1,'DTPR0083',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,196,1,'DTPR0086',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,197,1,'DTPR0087',0,6200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,198,1,'DTPR0088',0,35200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,199,1,'DTPR0091',0,17600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,200,1,'DTPR0089',0,132000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,201,1,'DTPR0094',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,202,1,'DTPR0095',0,180,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,203,1,'DTPR0096',0,3550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,204,1,'DTPR0098',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,205,1,'DTPR0099',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,206,1,'DTPR0100',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,207,1,'DTPR0101',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,208,1,'DTPR0104',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,209,1,'DTPR0105',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,210,1,'DTPR0106',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,211,1,'DTPR0108',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,212,1,'DTPR0109',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,213,1,'DTPR0113',0,26400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,214,1,'DTPR0114',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,215,1,'DTPR0116',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,216,1,'DTPR0121',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,217,1,'DTPR0127',0,2750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,218,1,'DTPR0122',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,219,1,'DTPR0123',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,220,1,'DTPR0124',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,221,1,'DTPR0128',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,222,1,'DTPR0131',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,223,1,'DTPR0133',0,200,200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,224,1,'DTPR0134',0,11000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,225,1,'DTPR0135',0,8800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,226,1,'DTPR0137',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,227,1,'DTPR0139',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,228,1,'DTPR0140',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,229,1,'DTPR0141',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,230,1,'DTPR0142',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,231,1,'DTPR0143',0,100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,232,1,'DTPR0144',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,233,1,'DTPR0145',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,234,1,'DTPR0146',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,235,1,'DTPR0147',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,236,1,'DTPR0148',0,6200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,237,1,'DTPR0150',0,4400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,238,1,'DTPR0152',0,4400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,239,1,'DRPR0015',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,240,1,'DRPR0016',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,241,1,'DRPR0017',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,242,1,'DRPR0018',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,243,1,'DRPR0038',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,244,1,'DRPR0047',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,245,1,'DRC0002',0,0,900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,246,1,'DRC0003',0,0,350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,247,1,'DRC0004',0,0,1200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,248,1,'DRC0005',0,0,400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,249,1,'DRC0006',0,1200,1200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,250,1,'DRC0008',0,0,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,251,1,'DRC0009',0,0,1400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,252,1,'DRC0010',0,0,700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,253,1,'DRC0012',0,0,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,254,1,'DRC0013',0,0,250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,255,1,'DRC0014',0,0,900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,256,1,'DRC0015',0,0,800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,257,1,'DRC0016',0,0,150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,258,1,'EDPR0002',0,5500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,259,1,'EDPR0003',0,6600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,260,1,'EDPR0004',0,8800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,261,1,'EDPR0005',0,8800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,262,1,'EDPR0006',0,5500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,263,1,'EDPR0007',0,5500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,264,1,'EDPR0008',0,8500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,265,1,'EDPR0009',0,9000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,266,1,'EDPR0010',0,9000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,267,1,'EDPR0011',0,7000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,268,1,'EDPR0012',0,8800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,269,1,'EDPR0013',0,6600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,270,1,'EDPR0014',0,10000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,271,1,'EDPR0015',0,5500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,272,1,'EDPR0017',0,20000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,273,1,'EDPR0018',0,25000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,274,1,'EDPR0019',0,25000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,275,1,'EDPR0020',0,25000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,276,1,'EDPR0021',0,25000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,277,1,'EDPR0022',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,278,1,'EDPR0023',0,4800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,279,1,'EDPR0024',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,280,1,'EDPR0025',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,281,1,'EDPR0026',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,282,1,'EDPR0027',0,15000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,283,1,'EDPR0028',0,30000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,284,1,'EDPR0030',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,285,1,'EDPR0031',0,3800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,286,1,'ENTP0002',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,287,1,'ENTP0003',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,288,1,'ENTP0004',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,289,1,'ENTP0005',0,4500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,290,1,'ENTP0006',0,5500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,291,1,'ENTP0007',0,2700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,292,1,'ENTP0008',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,293,1,'ENTP0009',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,294,1,'ENTP0010',0,3500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,295,1,'ENTP0011',0,1450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,296,1,'ENTP0012',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,297,1,'ENTP0013',0,1450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,298,1,'ENTP0014',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,299,1,'ENTP0015',0,6000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,300,1,'ENTP0016',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,301,1,'ENTP0017',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,302,1,'ENTP0018',0,2400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,303,1,'ENTP0019',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,304,1,'ENTP0020',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,305,1,'ENTP0022',0,1450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,306,1,'ENTP0023',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,307,1,'ENTP0025',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,308,1,'ENTP0026',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,309,1,'ENTP0027',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,310,1,'ENTP0028',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,311,1,'ENTP0029',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,312,1,'ENTP0030',0,1450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,313,1,'ENTP0031',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,314,1,'ENTP0032',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,315,1,'ENTS0070',0,5000,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,316,1,'GASS0121',0,27498.9,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,317,1,'GENS0002',0,12100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,318,1,'GENS0009',0,1430,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,319,1,'GENS0035',0,1430,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,320,1,'GENS0063',0,2860,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,321,1,'GENS0064',0,1430,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,323,1,'GYNS0008',0,21998,21998,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,324,1,'GYNP0001',0,2300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,325,1,'GYNP0002',0,1450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,326,1,'GYNP0003',0,1450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,327,1,'GYNP0004',0,2900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,328,1,'GYNP0005',0,1050,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,329,1,'GYNP0006',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,330,1,'GYNP0007',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,331,1,'GYNP0008',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,332,1,'GYNP0009',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,333,1,'GYNP0010',0,2900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,334,1,'GYNP0011',0,1450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,335,1,'GYNP0012',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,336,1,'GYNP0013',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,337,1,'GYNP0014',0,1450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,338,1,'GYNP0015',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,339,1,'GYNP0016',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,340,1,'GYNP0018',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,341,1,'GYNP0017',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,342,1,'GYNP0019',0,1450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,343,1,'GYNP0020',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,344,1,'GYNP0021',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,345,1,'GYNP0022',0,1450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,346,1,'GYNP0023',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,347,1,'GYNP0024',0,1050,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,348,1,'GYNP0025',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,349,1,'GYNP0026',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,350,1,'GYNP0027',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,351,1,'GYNP0028',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,352,1,'GYNP0029',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,353,1,'GYNP0030',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,354,1,'GYNP0031',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,355,1,'GYNP0032',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,356,1,'GYNP0033',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,357,1,'GYNP0034',0,1050,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,358,1,'GYNP0035',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,359,1,'GYNP0036',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,360,1,'GYNP0037',0,2900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,361,1,'GYNP0038',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,362,1,'GYNP0039',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,363,1,'GYNP0040',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,364,1,'GYNP0041',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,366,1,'HPKG0001',0,3999,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,367,1,'HPKG0002',0,1299,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,369,1,'HPKG0004',0,1199,1199,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,371,1,'HPKG0005',0,1999,1999,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,372,1,'HPKG0006',0,4999,4999,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,373,1,'HPKG0007',0,599,599,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,374,1,'HPKG0008',0,899,899,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,377,1,'HPKG0009',0,299,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,381,1,'HPKG0010',0,1999,1999,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,382,1,'HPKG0011',0,4999,4999,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,383,1,'HPKG0014',0,4999,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,384,1,'HPKG0015',0,1299,1299,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,385,1,'HPKG0016',0,1799,1799,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,386,1,'HPKG0017',0,399,399,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,389,1,'HPKG0018',0,1699,1699,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,390,1,'HPKG0019',0,3399,3399,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,391,1,'MOPR0001',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,392,1,'MOPR0002',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,393,1,'MOPR0003',0,3300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,394,1,'MOPR0004',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,395,1,'MOPR0005',0,2750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,396,1,'MOPR0006',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,397,1,'MOPR0007',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,398,1,'MOPR0008',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,399,1,'MOPR0009',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,400,1,'MOPR0010',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,401,1,'MOPR0011',0,5000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,402,1,'MOPR0012',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,403,1,'MOPR0013',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,404,1,'MOPR0014',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,405,1,'MOPR0015',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,406,1,'MOPR0016',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,407,1,'MOPR0017',0,4300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,408,1,'MOPR0018',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,409,1,'MOPR0019',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,410,1,'MOPR0020',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,411,1,'MOPR0021',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,412,1,'MOPR0022',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,413,1,'MOPR0023',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,414,1,'MOPR0024',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,415,1,'MOPR0025',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,416,1,'MOPR0026',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,417,1,'MOPR0027',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,418,1,'MOPR0028',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,419,1,'MOPR0029',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,420,1,'MOPR0030',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,421,1,'MOPR0031',0,3300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,422,1,'MOPR0032',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,423,1,'MOPR0033',0,6400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,424,1,'MOPR0034',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,425,1,'MOPR0035',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,426,1,'MOPR0036',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,427,1,'MOPR0037',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,428,1,'MOPR0038',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,429,1,'MOPR0039',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,430,1,'MOPR0040',0,3300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,431,1,'MOPR0041',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,432,1,'MOPR0042',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,433,1,'MOPR0043',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,434,1,'MOPR0044',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,435,1,'MOPR0045',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,436,1,'MOPR0046',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,437,1,'MOPR0047',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,438,1,'NARC0001',0,300,300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,439,1,'NARC0002',0,70,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,440,1,'NARC0003',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,441,1,'NARC0004',0,960,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,442,1,'NARC0006',0,50,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,443,1,'NARC0007',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,444,1,'NARC0009',0,60,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,445,1,'NARC0010',0,120,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,446,1,'NEPP0001',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,447,1,'NEPP0002',0,15000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,448,1,'NEPP0004',0,33000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,449,1,'NEPP0007',0,5000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,450,1,'NEPP0009',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,451,1,'NEPP0010',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,452,1,'NEPP0011',0,4400,4400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,453,1,'NEPP0012',0,38500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,454,1,'NEPP0015',0,46750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,455,1,'NEPP0016',0,25300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,456,1,'NEPP0017',0,33000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,457,1,'NEPP0019',0,5000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,458,1,'NEPP0020',0,13500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,459,1,'NEPP0021',0,4400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,460,1,'NEPP0023',0,5800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,461,1,'NEPP0024',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,462,1,'NEPP0025',0,4800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,463,1,'NEU10001',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,464,1,'NEU10002',0,2650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,465,1,'NEU10003',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,466,1,'NEU10004',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,467,1,'NEU10005',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,468,1,'NEU10006',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,469,1,'NEU10007',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,470,1,'NEU10008',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,471,1,'NEU10009',0,2650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,472,1,'NEU10010',0,1450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,473,1,'NEU10011',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,474,1,'NEU10012',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,475,1,'NEU10013',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,476,1,'NEU10014',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,477,1,'NEUS0004',0,1.1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,478,1,'NEUS0050',0,1.1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,479,1,'ONCS0118',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,480,1,'CHEM0001',0,7000,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,481,1,'CHEM0002',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,482,1,'CHEM0003',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,483,1,'CHEM0004',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,484,1,'CHEM0005',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,485,1,'CHEM0006',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,486,1,'CHEM0007',0,4400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,487,1,'CHEM0008',0,7150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,488,1,'CHEM0009',0,3300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,489,1,'CHEM0010',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,490,1,'OPWD0001',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,491,1,'OPWD0002',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,492,1,'OPWD0003',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,493,1,'OPWD0006',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,494,1,'OPWD0007',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,495,1,'OPWD0008',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,496,1,'OPWD0009',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,497,1,'OPWD0010',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,498,1,'OPWD0011',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,499,1,'OPWD0012',0,50,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,500,1,'OPWD0013',0,70,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,501,1,'OPWD0014',0,50,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,502,1,'OPWD0015',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,503,1,'OPWD0016',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,504,1,'OPWD0017',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,505,1,'OPWD0018',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,506,1,'OPWD0019',1,50,0,0.00,'Y','Y','vishal','2025-10-11 18:46:16','thims','2024-04-01 13:18:00','vishal','2025-10-11 18:46:16'),(0,0,507,1,'OPWD0020',0,100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,508,1,'OPWD0021',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,509,1,'OPWD0022',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,510,1,'PKG0007',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,511,1,'OPHP0003',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,512,1,'OPHP0004',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,513,1,'OPHP0006',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,514,1,'OPHP0007',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,515,1,'OPHP0008',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,516,1,'OPHP0009',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,517,1,'OPHP0010',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,518,1,'OPHP0011',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,519,1,'OPHP0012',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,520,1,'OPHP0013',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,521,1,'OPHP0019',0,1400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,522,1,'OPHP0020',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,523,1,'OPHP0021',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,524,1,'OPHP0022',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,525,1,'OPHP0023',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,526,1,'OPHP0024',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,527,1,'OPHP0025',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,528,1,'OPTS0009',0,5000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,529,1,'OPTS0010',0,8000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,530,1,'OPTS0011',0,12000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,531,1,'OPTS0012',0,18000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,532,1,'OPTS0013',0,24000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,533,1,'OPTS0014',0,28000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,534,1,'OPTS0015',0,32000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,535,1,'OPTS0016',0,45000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,536,1,'OPTS0017',0,55000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,537,1,'OPTS0041',0,9000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,538,1,'ORTS0138',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,539,1,'ORTS0274',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,540,1,'ORTP0004',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,541,1,'ORTP0006',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,542,1,'ORTP0007',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,543,1,'ORTP0008',0,9000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,544,1,'ORTP0010',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,545,1,'ORTP0011',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,546,1,'ORTP0012',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,547,1,'ORTP0013',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,548,1,'ORTP0014',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,549,1,'ORTP0017',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,550,1,'ORTP0019',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,551,1,'ORTP0020',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,552,1,'ORTP0021',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,553,1,'ORTP0023',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,554,1,'ORTP0024',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,555,1,'ORTP0025',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,556,1,'ORTP0026',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,557,1,'ORTP0027',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,558,1,'ORTP0028',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,559,1,'ORTP0029',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,560,1,'ORTP0034',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,561,1,'ORTP0035',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,562,1,'ORTP0036',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,563,1,'ORTP0038',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,564,1,'ORTP0041',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,565,1,'ORTP0042',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,566,1,'ORTP0043',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,567,1,'ORTP0049',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,568,1,'ORTP0050',0,13750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,569,1,'ORTP0051',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,570,1,'LAB0001',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,571,1,'LAB0002',0,4700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,572,1,'LAB0003',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,573,1,'LAB0004',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,574,1,'LAB0006',0,2750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,575,1,'LAB0007',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,576,1,'LAB0008',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,577,1,'LAB0009',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,578,1,'LAB0010',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,579,1,'LAB0011',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,580,1,'LAB0012',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,581,1,'LAB0013',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,582,1,'LAB0015',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,583,1,'LAB0016',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,584,1,'LAB0017',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,585,1,'LAB0018',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,586,1,'LAB0019',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,587,1,'LAB0020',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,588,1,'LAB0021',0,1300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,589,1,'LAB0023',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,590,1,'LAB0024',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,591,1,'LAB0025',0,4200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,592,1,'LAB0026',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,593,1,'LAB0028',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,594,1,'LAB0029',0,3400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,595,1,'LAB0030',0,3700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,596,1,'LAB0031',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,597,1,'LAB0032',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,598,1,'LAB0033',0,9200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,599,1,'LAB0034',0,11600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,600,1,'LAB0035',0,4200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,601,1,'LAB0036',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,602,1,'LAB0037',0,1850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,603,1,'LAB0038',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,604,1,'LAB0039',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,605,1,'LAB0040',0,2900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,606,1,'LAB0042',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,607,1,'LAB0043',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,608,1,'LAB0044',0,4700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,609,1,'LAB0045',0,950,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,610,1,'LAB0046',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,611,1,'LAB0047',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,612,1,'LAB0048',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,613,1,'LAB0049',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,614,1,'LAB0050',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,615,1,'LAB0054',0,5000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,616,1,'LAB0055',0,7200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,617,1,'LAB0056',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,618,1,'LAB0057',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,619,1,'LAB0058',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,620,1,'LAB0059',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,621,1,'LAB0062',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,622,1,'LAB0063',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,623,1,'LAB0064',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,624,1,'LAB0065',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,625,1,'LAB0066',0,13200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,626,1,'LAB0068',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,627,1,'LAB0069',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,628,1,'LAB0070',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,629,1,'LAB0071',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,630,1,'LAB0072',0,2600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,631,1,'LAB0074',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,632,1,'LAB0075',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,633,1,'LAB0076',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,634,1,'LAB0077',0,13200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,635,1,'LAB0078',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,636,1,'LAB0079',0,2600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,637,1,'LAB0080',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,638,1,'LAB0081',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,639,1,'LAB0082',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,640,1,'LAB0083',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,641,1,'LAB0084',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,642,1,'LAB0085',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,643,1,'LAB0086',0,1700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,644,1,'LAB0087',0,1450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,645,1,'LAB0088',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,646,1,'LAB0089',0,1450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,647,1,'LAB0090',0,2350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,648,1,'LAB0091',0,2350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,649,1,'LAB0092',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,650,1,'LAB0093',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,651,1,'LAB0094',0,950,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,652,1,'LAB0095',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,653,1,'LAB0096',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,654,1,'LAB0097',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,655,1,'LAB0098',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,656,1,'LAB0099',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,657,1,'LAB0100',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,658,1,'LAB0101',0,7700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,659,1,'LAB0102',0,2800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,660,1,'LAB0103',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,661,1,'LAB0104',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,662,1,'LAB0105',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,663,1,'LAB0106',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,664,1,'LAB0107',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,665,1,'LAB0108',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,666,1,'LAB0109',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,667,1,'LAB0110',0,1400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,668,1,'LAB0111',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,669,1,'LAB0112',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,670,1,'LAB0113',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,671,1,'LAB0114',0,5500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,672,1,'LAB0116',0,5800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,673,1,'LAB0117',0,5800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,674,1,'LAB0118',0,5800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,675,1,'LAB0119',0,2600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,676,1,'LAB0120',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,677,1,'LAB0121',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,678,1,'LAB0122',0,1450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,679,1,'LAB0123',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,680,1,'LAB0124',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,681,1,'LAB0125',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,682,1,'LAB0126',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,683,1,'LAB0127',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,684,1,'LAB0128',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,685,1,'LAB0129',0,7200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,686,1,'LAB0130',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,687,1,'LAB0131',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,688,1,'LAB0132',0,4300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,689,1,'LAB0133',0,3900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,690,1,'LAB0134',0,2700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,691,1,'LAB0135',0,2700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,692,1,'LAB0136',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,693,1,'LAB0137',0,1550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,694,1,'LAB0138',0,6100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,695,1,'LAB0139',0,3500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,696,1,'LAB0141',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,697,1,'LAB0142',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,698,1,'LAB0143',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,699,1,'LAB0144',0,4400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,700,1,'LAB0145',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,701,1,'LAB0146',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,702,1,'LAB0147',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,703,1,'LAB0148',0,5800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,704,1,'LAB0149',0,5800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,705,1,'LAB0150',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,706,1,'LAB0151',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,707,1,'LAB0152',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,708,1,'LAB0153',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,709,1,'LAB0154',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,710,1,'LAB0155',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,711,1,'LAB0156',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,712,1,'LAB0157',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,713,1,'LAB0159',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,714,1,'LAB0160',0,20900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,715,1,'LAB0161',0,2800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,716,1,'LAB0162',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,717,1,'LAB0163',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,718,1,'LAB0164',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,719,1,'LAB0165',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,720,1,'LAB0166',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,721,1,'LAB0167',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,722,1,'LAB0168',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,723,1,'LAB0169',0,100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,724,1,'LAB0170',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,725,1,'LAB0171',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,726,1,'LAB0172',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,727,1,'LAB0173',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,728,1,'LAB0174',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,729,1,'LAB0175',0,6100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,730,1,'LAB0176',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,731,1,'LAB0177',0,7000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,732,1,'LAB0178',0,7200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,733,1,'LAB0179',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,734,1,'LAB0184',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,735,1,'LAB0185',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,736,1,'LAB0186',0,3500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,737,1,'LAB0187',0,4300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,738,1,'LAB0188',0,6600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,739,1,'LAB0189',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,740,1,'LAB0190',0,6200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,741,1,'LAB0191',0,2800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,742,1,'LAB0192',0,4200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,743,1,'LAB0193',0,2700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,744,1,'LAB0194',0,3500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,745,1,'LAB0195',0,3900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,746,1,'LAB0196',0,4300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,747,1,'LAB0197',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,748,1,'LAB0198',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,749,1,'LAB0199',0,1550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,750,1,'LAB0200',0,1850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,751,1,'LAB0201',0,2100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,752,1,'LAB0202',0,5400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,753,1,'LAB0203',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,754,1,'LAB0204',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,755,1,'LAB0205',0,3700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,756,1,'LAB0206',0,8500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,757,1,'LAB0207',0,3500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,758,1,'LAB0208',0,950,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,759,1,'LAB0209',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,760,1,'LAB0210',0,1050,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,761,1,'LAB0211',0,1550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,762,1,'LAB0212',0,1400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,763,1,'LAB0213',0,1550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,764,1,'LAB0214',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,765,1,'LAB0215',0,2700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,766,1,'LAB0216',0,70,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,767,1,'LAB0217',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,768,1,'LAB0218',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,769,1,'LAB0219',0,70,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,770,1,'LAB0220',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,771,1,'LAB0221',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,772,1,'LAB0222',0,1050,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,773,1,'LAB0223',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,774,1,'LAB0224',0,160,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,775,1,'LAB0225',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,776,1,'LAB0227',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,777,1,'LAB0226',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,778,1,'LAB0228',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,779,1,'LAB0229',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,780,1,'LAB0230',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,781,1,'LAB0231',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,782,1,'LAB0232',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,783,1,'LAB0233',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,784,1,'LAB0234',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,785,1,'LAB0235',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,786,1,'LAB0236',0,14900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,787,1,'LAB0237',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,788,1,'LAB0238',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,789,1,'LAB0239',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,790,1,'LAB0240',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,791,1,'LAB0241',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,792,1,'LAB0242',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,793,1,'LAB0243',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,794,1,'LAB0244',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,795,1,'LAB0245',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,796,1,'LAB0246',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,797,1,'LAB0247',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,798,1,'LAB0248',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,799,1,'LAB0249',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,800,1,'LAB0250',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,801,1,'LAB0251',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,802,1,'LAB0254',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,803,1,'LAB0255',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,804,1,'LAB0256',0,2400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,805,1,'LAB0257',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,806,1,'LAB0260',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,807,1,'LAB0261',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,808,1,'LAB0262',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,809,1,'LAB0263',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,810,1,'LAB0264',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,811,1,'LAB0265',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,812,1,'LAB0266',0,1550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,813,1,'LAB0267',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,814,1,'LAB0268',0,4700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,815,1,'LAB0269',0,1400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,816,1,'LAB0270',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,817,1,'LAB0271',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,818,1,'LAB0272',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,819,1,'LAB0273',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,820,1,'LAB0274',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,821,1,'LAB0275',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,822,1,'LAB0276',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,823,1,'LAB0278',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,824,1,'LAB0279',0,8300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,825,1,'LAB0281',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,826,1,'LAB0282',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,827,1,'LAB0283',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,828,1,'LAB0284',0,11000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,829,1,'LAB0285',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,830,1,'LAB0286',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,831,1,'LAB0287',0,70,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,832,1,'LAB0288',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,833,1,'LAB0289',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,834,1,'LAB0290',0,1700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,835,1,'LAB0291',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,836,1,'LAB0292',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,837,1,'LAB0293',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,838,1,'LAB0294',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,839,1,'LAB0295',0,450,450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,840,1,'LAB0296',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,841,1,'LAB0299',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,842,1,'LAB0300',0,330,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,843,1,'LAB0301',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,844,1,'LAB0302',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,845,1,'LAB0303',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,846,1,'LAB0305',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,847,1,'LAB0308',0,7900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,848,1,'LAB0309',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,849,1,'LAB0310',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,850,1,'LAB0311',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,851,1,'LAB0312',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,852,1,'LAB0313',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,853,1,'LAB0314',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,854,1,'LAB0315',0,3300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,855,1,'LAB0316',0,5000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,856,1,'LAB0317',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,857,1,'LAB0318',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,858,1,'LAB0319',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,859,1,'LAB0320',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,860,1,'LAB0321',0,4400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,861,1,'LAB0323',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,862,1,'LAB0324',0,1050,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,863,1,'LAB0325',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,864,1,'LAB0326',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,865,1,'LAB0327',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,866,1,'LAB0328',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,867,1,'LAB0329',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,868,1,'LAB0330',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,869,1,'LAB0331',0,1050,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,870,1,'LAB0332',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,871,1,'LAB0333',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,872,1,'LAB0334',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,873,1,'LAB0335',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,874,1,'LAB0336',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,875,1,'LAB0337',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,876,1,'LAB0338',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,877,1,'LAB0339',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,878,1,'LAB0340',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,879,1,'LAB0341',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,880,1,'LAB0342',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,881,1,'LAB0343',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,882,1,'LAB0344',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,883,1,'LAB0345',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,884,1,'LAB0346',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,885,1,'LAB0347',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,886,1,'LAB0348',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,887,1,'LAB0349',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,888,1,'LAB0350',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,889,1,'LAB0351',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,890,1,'LAB0352',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,891,1,'LAB0353',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,892,1,'LAB0354',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,893,1,'LAB0355',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,894,1,'LAB0356',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,895,1,'LAB0357',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,896,1,'LAB0358',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,897,1,'LAB0359',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,898,1,'LAB0360',0,1450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,899,1,'LAB0361',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,900,1,'LAB0362',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,901,1,'LAB0363',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,902,1,'LAB0365',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,903,1,'LAB0366',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,904,1,'LAB0367',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,905,1,'LAB0368',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,906,1,'LAB0369',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,907,1,'LAB0370',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,908,1,'LAB0371',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,909,1,'LAB0372',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,910,1,'LAB0373',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,911,1,'LAB0374',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,912,1,'LAB0375',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,913,1,'LAB0376',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,914,1,'LAB0377',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,915,1,'LAB0378',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,916,1,'LAB0379',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,917,1,'LAB0380',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,918,1,'LAB0381',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,919,1,'LAB0382',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,920,1,'LAB0383',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,921,1,'LAB0384',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,922,1,'LAB0385',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,923,1,'LAB0386',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,924,1,'LAB0387',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,925,1,'LAB0388',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,926,1,'LAB0389',0,1850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,927,1,'LAB0390',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,928,1,'LAB0391',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,929,1,'LAB0392',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,930,1,'LAB0393',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,931,1,'LAB0394',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,932,1,'LAB0395',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,933,1,'LAB0396',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,934,1,'LAB0397',0,2900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,935,1,'LAB0398',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,936,1,'LAB0399',0,100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,937,1,'LAB0400',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,938,1,'LAB0401',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,939,1,'LAB0402',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,940,1,'LAB0403',0,4200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,941,1,'LAB0404',0,4200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,942,1,'LAB0405',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,943,1,'LAB0406',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,944,1,'LAB0407',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,945,1,'LAB0408',0,4200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,946,1,'LAB0409',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,947,1,'LAB0410',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,948,1,'LAB0411',0,50,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,949,1,'LAB0412',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,950,1,'LAB0413',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,951,1,'LAB0414',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,952,1,'LAB0417',0,1450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,953,1,'LAB0418',0,1550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,954,1,'LAB0419',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,955,1,'LAB0420',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,956,1,'LAB0421',0,8000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,957,1,'LAB0422',0,8000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,958,1,'LAB0423',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,959,1,'LAB0424',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,960,1,'LAB0425',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,961,1,'LAB0426',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,962,1,'LAB0427',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,963,1,'LAB0428',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,964,1,'LAB0429',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,965,1,'LAB0430',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,966,1,'LAB0431',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,967,1,'LAB0432',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,968,1,'LAB0433',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,969,1,'LAB0434',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,970,1,'LAB0435',0,8000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,971,1,'LAB0436',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,972,1,'LAB0437',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,973,1,'LAB0438',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,974,1,'LAB0439',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,975,1,'LAB0440',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,976,1,'LAB0441',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,977,1,'LAB0442',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,978,1,'LAB0443',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,979,1,'LAB0444',0,8000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,980,1,'LAB0445',0,1050,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,981,1,'LAB0447',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,982,1,'LAB0448',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,983,1,'LAB0449',0,2800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,984,1,'LAB0450',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,985,1,'LAB0451',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,986,1,'LAB0452',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,987,1,'LAB0453',0,5000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,988,1,'LAB0454',0,2800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,989,1,'LAB0455',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,990,1,'LAB0456',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,991,1,'LAB0457',0,2700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,992,1,'LAB0458',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,993,1,'LAB0459',0,3500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,994,1,'LAB0460',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,995,1,'LAB0461',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,996,1,'LAB0462',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,997,1,'LAB0463',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,998,1,'LAB0464',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,999,1,'LAB0465',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1000,1,'LAB0466',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1001,1,'LAB0467',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1002,1,'LAB0468',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1003,1,'LAB0469',0,16100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1004,1,'LAB0470',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1005,1,'LAB0471',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1006,1,'LAB0472',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1007,1,'LAB0473',0,1700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1008,1,'LAB0474',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1009,1,'LAB0475',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1010,1,'LAB0476',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1011,1,'LAB0477',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1012,1,'LAB0479',0,2800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1013,1,'LAB0480',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1014,1,'LAB0481',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1015,1,'LAB0482',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1016,1,'LAB0483',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1017,1,'LAB0484',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1018,1,'LAB0485',0,1300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1019,1,'LAB0486',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1020,1,'LAB0487',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1021,1,'LAB0488',0,5000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1022,1,'LAB0489',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1023,1,'LAB0490',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1024,1,'LAB0491',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1025,1,'LAB0492',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1026,1,'LAB0493',0,120,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1027,1,'LAB0494',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1028,1,'LAB0495',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1029,1,'LAB0496',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1030,1,'LAB0497',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1031,1,'LAB0498',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1032,1,'LAB0499',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1033,1,'LAB0500',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1034,1,'LAB0501',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1035,1,'LAB0502',0,6100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1036,1,'LAB0503',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1037,1,'LAB0504',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1038,1,'LAB0506',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1039,1,'LAB0507',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1040,1,'LAB0520',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1041,1,'LAB0521',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1042,1,'LAB0522',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1043,1,'LAB0523',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1044,1,'LAB0524',0,1850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1045,1,'LAB0525',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1046,1,'LAB0526',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1047,1,'LAB0527',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1048,1,'LAB0528',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1049,1,'LAB0529',0,5500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1050,1,'LAB0530',0,1750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1051,1,'LAB0531',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1052,1,'LAB0532',0,1400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1053,1,'LAB0533',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1054,1,'LAB0534',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1055,1,'LAB0535',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1056,1,'LAB0536',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1057,1,'LAB0537',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1058,1,'LAB0538',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1059,1,'LAB0541',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1060,1,'LAB0542',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1061,1,'LAB0543',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1062,1,'LAB0546',0,1300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1063,1,'LAB0547',0,4100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1064,1,'LAB0549',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1065,1,'LAB0551',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1066,1,'LAB0552',0,2400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1067,1,'LAB0553',0,1550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1068,1,'LAB0554',0,2400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1069,1,'LAB0555',0,6600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1070,1,'LAB0556',0,4700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1071,1,'LAB0557',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1072,1,'LAB0558',0,4300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1073,1,'LAB0559',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1074,1,'LAB0560',0,7700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1075,1,'LAB0561',0,5000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1076,1,'LAB0562',0,10500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1077,1,'LAB0563',0,10500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1078,1,'LAB0564',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1079,1,'LAB0565',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1080,1,'LAB0566',0,1700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1081,1,'LAB0567',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1082,1,'LAB0568',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1083,1,'LAB0569',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1084,1,'LAB0570',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1085,1,'LAB0571',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1086,1,'LAB0572',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1087,1,'LAB0573',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1088,1,'LAB0574',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1089,1,'LAB0575',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1090,1,'LAB0576',0,1400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1091,1,'LAB0577',0,8300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1092,1,'LAB0578',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1093,1,'LAB0579',0,4400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1094,1,'LAB0580',0,2800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1095,1,'LAB0581',0,8300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1096,1,'LAB0582',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1097,1,'LAB0583',0,1300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1098,1,'LAB0584',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1099,1,'LAB0585',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1100,1,'LAB0586',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1101,1,'LAB0587',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1102,1,'LAB0588',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1103,1,'LAB0589',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1104,1,'LAB0590',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1105,1,'LAB0591',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1106,1,'LAB0592',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1107,1,'LAB0593',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1108,1,'LAB0594',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1109,1,'LAB0595',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1110,1,'LAB0596',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1111,1,'LAB0597',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1112,1,'LAB0598',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1113,1,'LAB0599',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1114,1,'LAB0600',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1115,1,'LAB0601',0,4700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1116,1,'LAB0606',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1117,1,'LAB0607',0,1700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1118,1,'LAB0608',0,1700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1119,1,'LAB0609',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1120,1,'LAB0610',0,9100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1121,1,'LAB0611',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1122,1,'LAB0612',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1123,1,'LAB0613',0,3900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1124,1,'LAB0614',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1125,1,'LAB0616',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1126,1,'LAB0617',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1127,1,'LAB0618',0,6600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1128,1,'LAB0619',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1129,1,'LAB0620',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1130,1,'LAB0621',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1131,1,'LAB0622',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1132,1,'LAB0623',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1133,1,'LAB0624',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1134,1,'LAB0625',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1135,1,'LAB0626',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1136,1,'LAB0629',0,4200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1137,1,'LAB0627',0,4200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1138,1,'LAB0628',0,4600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1139,1,'LAB0630',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1140,1,'LAB0631',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1141,1,'LAB0632',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1142,1,'LAB0633',0,9900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1143,1,'LAB0634',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1144,1,'LAB0635',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1145,1,'LAB0636',0,9900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1146,1,'LAB0637',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1147,1,'LAB0638',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1148,1,'LAB0639',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1149,1,'LAB0640',0,15400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1150,1,'LAB0641',0,17400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1151,1,'LAB0642',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1152,1,'LAB0643',0,23100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1153,1,'LAB0644',0,18700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1154,1,'LAB0645',0,12100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1155,1,'LAB0647',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1156,1,'LAB0648',0,7200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1157,1,'LAB0649',0,7200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1158,1,'LAB0650',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1159,1,'LAB0651',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1160,1,'LAB0652',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1161,1,'LAB0653',0,1700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1162,1,'LAB0654',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1163,1,'LAB0655',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1164,1,'LAB0656',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1165,1,'LAB0657',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1166,1,'LAB0658',0,4400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1167,1,'LAB0659',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1168,1,'LAB0660',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1169,1,'LAB0661',0,14900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1170,1,'LAB0662',0,9400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1171,1,'LAB0663',0,4200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1172,1,'LAB0664',0,5800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1173,1,'LAB0666',0,8300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1174,1,'LAB0665',0,4700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1175,1,'LAB0667',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1176,1,'LAB0668',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1177,1,'LAB0669',0,5800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1178,1,'LAB0670',0,8300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1179,1,'LAB0671',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1180,1,'LAB0672',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1181,1,'LAB0673',0,6400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1182,1,'LAB0675',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1183,1,'LAB0674',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1184,1,'LAB0676',0,3900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1185,1,'LAB0677',0,2100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1186,1,'LAB0678',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1187,1,'LAB0679',0,6400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1188,1,'LAB0680',0,7200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1189,1,'LAB0681',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1190,1,'LAB0682',0,4200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1191,1,'LAB0683',0,9400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1192,1,'LAB0684',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1193,1,'LAB0685',0,3500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1194,1,'LAB0686',0,6100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1195,1,'LAB0687',0,8300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1196,1,'LAB0688',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1197,1,'LAB0689',0,6100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1198,1,'LAB0690',0,6100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1199,1,'LAB0691',0,7200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1200,1,'LAB0692',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1201,1,'LAB0693',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1202,1,'LAB0694',0,4400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1203,1,'LAB0695',0,10200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1204,1,'LAB0696',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1205,1,'LAB0697',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1206,1,'LAB0698',0,22000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1207,1,'LAB0699',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1208,1,'LAB0700',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1209,1,'LAB0701',0,4200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1210,1,'LAB0702',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1211,1,'LAB0703',0,3300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1212,1,'LAB0704',0,10500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1213,1,'LAB0705',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1214,1,'LAB0706',0,7700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1215,1,'LAB0707',0,3300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1216,1,'LAB0708',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1217,1,'LAB0709',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1218,1,'LAB0710',0,5500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1219,1,'LAB0711',0,8300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1220,1,'LAB0712',0,7500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1221,1,'LAB0713',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1222,1,'LAB0714',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1223,1,'LAB0715',0,6900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1224,1,'LAB0716',0,7500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1225,1,'LAB0717',0,14900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1226,1,'LAB0718',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1227,1,'LAB0719',0,6400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1228,1,'LAB0720',0,4200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1229,1,'LAB0721',0,4700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1230,1,'LAB0722',0,8300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1231,1,'LAB0723',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1232,1,'LAB0724',0,6400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1233,1,'LAB0725',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1234,1,'LAB0726',0,9400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1235,1,'LAB0727',0,4700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1236,1,'LAB0728',0,2800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1237,1,'LAB0729',0,7200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1238,1,'LAB0730',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1239,1,'LAB0731',0,7500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1240,1,'LAB0732',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1241,1,'LAB0733',0,7200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1242,1,'LAB0734',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1243,1,'LAB0735',0,7200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1244,1,'LAB0736',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1245,1,'LAB0737',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1246,1,'LAB0738',0,4700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1247,1,'LAB0739',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1248,1,'LAB0740',0,14900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1249,1,'LAB0741',0,1850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1250,1,'LAB0742',0,9100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1251,1,'LAB0743',0,5800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1252,1,'LAB0744',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1253,1,'LAB0745',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1254,1,'LAB0746',0,8300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1255,1,'LAB0747',0,7200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1256,1,'LAB0748',0,7200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1257,1,'LAB0749',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1258,1,'LAB0750',0,70,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1259,1,'LAB0751',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1260,1,'LAB0752',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1261,1,'LAB0753',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1262,1,'LAB0754',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1263,1,'LAB0755',0,5500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1264,1,'LAB0756',0,2800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1265,1,'LAB0757',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1266,1,'LAB0758',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1267,1,'LAB0759',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1268,1,'LAB0760',0,3900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1269,1,'LAB0761',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1270,1,'LAB0762',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1271,1,'LAB0763',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1272,1,'LAB0764',0,3200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1273,1,'LAB0765',0,4400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1274,1,'LAB0766',0,4200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1275,1,'LAB0767',0,1300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1276,1,'LAB0768',0,50,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1277,1,'LAB0769',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1278,1,'LAB0770',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1279,1,'LAB0771',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1280,1,'LAB0772',0,950,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1281,1,'LAB0773',0,11600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1282,1,'LAB0774',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1283,1,'LAB0775',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1284,1,'LAB0778',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1285,1,'LAB0779',0,2800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1286,1,'LAB0780',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1287,1,'LAB0781',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1288,1,'LAB0782',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1289,1,'LAB0783',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1290,1,'LAB0784',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1291,1,'LAB0785',0,1050,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1292,1,'LAB0786',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1293,1,'LAB0787',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1294,1,'LAB0788',0,2450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1295,1,'LAB0790',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1296,1,'LAB0791',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1297,1,'LAB0792',0,50,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1298,1,'LAB0793',0,3300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1299,1,'LAB0796',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1300,1,'LAB0797',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1301,1,'LAB0798',0,780,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1302,1,'LAB0799',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1303,1,'LAB0800',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1304,1,'LAB0801',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1305,1,'LAB0802',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1306,1,'LAB0803',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1307,1,'LAB0804',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1308,1,'LAB0805',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1309,1,'LAB0807',0,100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1310,1,'LAB0808',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1311,1,'LAB0810',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1312,1,'LAB0811',0,160,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1313,1,'LAB0812',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1314,1,'LAB0813',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1315,1,'LAB0814',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1316,1,'LAB0815',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1317,1,'LAB0816',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1318,1,'LAB0817',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1319,1,'LAB0818',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1320,1,'LAB0819',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1321,1,'LAB0820',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1322,1,'LAB0821',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1323,1,'LAB0822',0,160,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1324,1,'LAB0823',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1325,1,'LAB0824',0,160,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1326,1,'LAB0825',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1327,1,'LAB0826',0,160,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1328,1,'LAB0827',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1329,1,'LAB0829',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1330,1,'LAB0830',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1331,1,'LAB0831',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1332,1,'LAB0832',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1333,1,'LAB0833',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1334,1,'LAB0834',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1335,1,'LAB0835',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1336,1,'LAB0836',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1337,1,'LAB0837',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1338,1,'LAB0838',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1339,1,'LAB0839',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1340,1,'LAB0840',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1341,1,'LAB0841',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1342,1,'LAB0842',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1343,1,'LAB0843',0,299,299,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1344,1,'LAB0844',0,4200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1345,1,'LAB0845',0,13200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1346,1,'LAB0847',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1347,1,'LAB0848',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1348,1,'LAB0849',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1349,1,'LAB0850',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1350,1,'LAB0851',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1351,1,'LAB0852',0,950,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1352,1,'LAB0853',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1353,1,'LAB0854',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1354,1,'LAB0855',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1355,1,'LAB0856',0,6000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1356,1,'LAB0857',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1357,1,'LAB0858',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1358,1,'LAB0859',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1359,1,'LAB0860',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1360,1,'LAB0861',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1361,1,'LAB0862',0,3100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1362,1,'LAB0863',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1363,1,'LAB0864',0,1550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1364,1,'LAB0865',0,2800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1365,1,'LAB0866',0,6100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1366,1,'LAB0867',0,8800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1367,1,'LAB0868',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1368,1,'LAB0871',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1369,1,'LAB0872',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1370,1,'LAB0874',0,24200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1371,1,'LAB0875',0,19800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1372,1,'LAB0876',0,750,750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1373,1,'LAB0878',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1374,1,'LAB0879',0,3300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1375,1,'LAB0880',0,6200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1376,1,'LAB0881',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1377,1,'LAB0882',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1378,1,'LAB0883',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1379,1,'LAB0884',0,1400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1380,1,'LAB0885',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1381,1,'LAB0886',0,1050,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1382,1,'LAB0887',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1383,1,'LAB0888',0,100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1384,1,'LAB0889',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1385,1,'LAB0890',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1386,1,'LAB0891',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1387,1,'LAB0892',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1388,1,'LAB0893',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1389,1,'LAB0894',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1390,1,'LAB0895',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1391,1,'LAB0896',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1392,1,'LAB0897',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1393,1,'LAB0898',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1394,1,'LAB0899',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1395,1,'LAB0900',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1396,1,'LAB0901',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1397,1,'LAB0902',0,950,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1398,1,'LAB0903',0,220,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1399,1,'LAB0904',0,3300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1400,1,'LAB0905',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1401,1,'LAB0906',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1402,1,'LAB0907',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1403,1,'LAB0908',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1404,1,'LAB0909',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1405,1,'LAB0910',0,70,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1406,1,'LAB0911',0,170,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1407,1,'LAB0912',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1408,1,'LAB0914',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1409,1,'LAB0915',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1410,1,'LAB0916',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1411,1,'LAB0917',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1412,1,'LAB0918',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1413,1,'LAB0920',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1414,1,'LAB0921',0,2700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1415,1,'LAB0922',0,2700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1416,1,'LAB0923',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1417,1,'LAB0924',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1418,1,'LAB0925',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1419,1,'LAB0926',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1420,1,'LAB0927',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1421,1,'LAB0928',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1422,1,'LAB0929',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1423,1,'LAB0930',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1424,1,'LAB0931',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1425,1,'LAB0932',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1426,1,'LAB0933',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1427,1,'LAB0934',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1428,1,'LAB0935',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1429,1,'LAB0936',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1430,1,'LAB0937',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1431,1,'LAB0938',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1432,1,'LAB0939',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1434,1,'LAB0941',0,100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1435,1,'LAB0942',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1436,1,'LAB0943',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1437,1,'LAB0944',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1438,1,'LAB0945',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1439,1,'LAB0946',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1440,1,'LAB0947',0,100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1441,1,'LAB0948',0,650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1442,1,'LAB0949',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1443,1,'LAB0950',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1444,1,'LAB0951',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1445,1,'LAB0952',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1446,1,'LAB0953',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1447,1,'LAB0954',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1448,1,'LAB0955',0,70,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1449,1,'LAB0956',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1450,1,'LAB0957',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1451,1,'LAB0959',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1452,1,'LAB0960',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1453,1,'LAB0961',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1454,1,'LAB0962',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1455,1,'LAB0963',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1456,1,'LAB0964',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1457,1,'LAB0965',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1458,1,'LAB0966',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1459,1,'LAB0967',0,5000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1460,1,'LAB0968',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1461,1,'LAB0969',0,900,900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1462,1,'LAB0970',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1463,1,'LAB0973',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1464,1,'LAB0974',0,1050,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1465,1,'LAB0975',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1466,1,'LAB0976',0,3900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1467,1,'LAB0977',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1468,1,'LAB0978',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1469,1,'LAB0979',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1470,1,'LAB0980',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1471,1,'PEDP0001',0,7000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1472,1,'PEDP0002',0,1700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1473,1,'PEDP0003',0,8000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1474,1,'PEDP0004',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1475,1,'PEDP0005',0,4500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1476,1,'PEDP0006',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1477,1,'PEDP0007',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1478,1,'PEDP0008',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1479,1,'PEDP0009',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1480,1,'PEDP0010',0,3850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1481,1,'PEDP0011',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1482,1,'PEDP0012',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1483,1,'PEDP0013',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1484,1,'PEDP0014',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1485,1,'PEDP0015',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1486,1,'PEDP0016',0,3850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1487,1,'PEDP0017',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1488,1,'PTES0003',0,6000,6000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1489,1,'PULP0001',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1490,1,'PULP0002',0,8000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1491,1,'PULP0003',0,6000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1492,1,'PULP0004',0,9000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1493,1,'PULP0006',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1494,1,'PULP0007',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1495,1,'PULP0008',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1496,1,'PULP0009',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1497,1,'PULP0010',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1498,1,'PULP0011',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1499,1,'SURG0001',0,1000,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1500,1,'SURG0003',0,1760,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1501,1,'SURG0005',0,3245,3245,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1502,1,'UROP0001',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1503,1,'UROP0002',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1504,1,'UROP0003',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1505,1,'UROP0004',0,2000,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1506,1,'UROP0005',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1507,1,'UROP0006',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1508,1,'UROP0008',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1509,1,'UROP0010',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1510,1,'UROP0011',0,700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1511,1,'UROP0012',0,4999,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1512,1,'UROP0013',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1513,1,'UROP0014',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1514,1,'UROP0015',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1515,1,'UROP0016',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1516,1,'UROP0017',0,450,450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1517,1,'UROS0007',0,1450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1518,1,'UROS0012',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1519,1,'UROS0014',0,1650,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1520,1,'UROS0086',0,2200,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1521,1,'USG0006',0,550,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1522,1,'USG0009',0,1300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1523,1,'USG0011',0,1300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1524,1,'USG0016',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1525,1,'USG0017',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1526,1,'USG0018',0,2700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1527,1,'USG0021',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1528,1,'USG0022',0,2400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1529,1,'USG0023',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1530,1,'USG0024',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1531,1,'USG0025',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1532,1,'USG0026',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1533,1,'USG0028',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1534,1,'USG0029',0,2400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1535,1,'USG0031',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1536,1,'USG0032',0,2400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1537,1,'USG0033',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1538,1,'USG0034',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1539,1,'USG0035',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1540,1,'USG0036',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1541,1,'USG0037',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1542,1,'USG0038',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1543,1,'USG0039',0,3300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1544,1,'USG0040',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1545,1,'USG0041',0,3300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1546,1,'USG0042',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1547,1,'USG0043',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1548,1,'USG0044',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1549,1,'USG0045',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1550,1,'USG0046',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1551,1,'USG0047',0,2250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1552,1,'USG0048',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1553,1,'USG0049',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1554,1,'USG0050',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1555,1,'USG0051',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1556,1,'USG0052',0,3850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1557,1,'USG0053',0,5500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1558,1,'USG0054',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1559,1,'USG0055',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1560,1,'USG0056',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1561,1,'USG0057',0,1130,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1562,1,'USG0058',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1563,1,'USG0059',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1564,1,'USG0060',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1565,1,'USG0061',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1566,1,'USG0062',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1567,1,'USG0063',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1568,1,'USG0064',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1569,1,'USG0065',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1570,1,'USG0066',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1571,1,'USG0067',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1572,1,'USG0068',0,1130,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1573,1,'USG0069',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1574,1,'USG0070',0,2250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1575,1,'USG0071',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1576,1,'USG0072',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1577,1,'USG0073',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1578,1,'USG0074',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1579,1,'USG0075',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1580,1,'USG0076',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1581,1,'USG0077',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1582,1,'USG0078',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1583,1,'USG0079',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1584,1,'USG0080',0,2250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1585,1,'USG0081',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1586,1,'USG0082',0,2250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1587,1,'USG0083',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1588,1,'USG0084',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1589,1,'USG0085',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1590,1,'USG0086',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1591,1,'USG0087',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1592,1,'USG0088',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1593,1,'USG0089',0,800,800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1594,1,'USG0090',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1595,1,'UCTC0001',0,15000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1596,1,'UCTC0004',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1597,1,'UCTC0005',0,6000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1598,1,'UCTC0006',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1599,1,'UCTC0007',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1600,1,'UCTC0008',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1601,1,'UCTC0009',0,6000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1602,1,'UCTC0010',0,9000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1603,1,'UCTC0012',0,5000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1604,1,'UCTC0013',0,7500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1605,1,'UCTC0015',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1606,1,'UCTC0016',0,3850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1607,1,'UCTC0017',0,5500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1608,1,'UCTC0018',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1609,1,'UCTC0019',0,4500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1610,1,'UCTC0020',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1611,1,'UCTC0021',0,6000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1613,1,'VACC0001',0,1175,1175,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1614,1,'VACC0002',0,689,689,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1615,1,'VACC0003',0,1744,1744,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1616,1,'VACC0004',0,2640,2640,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1617,1,'VACC0005',0,250,250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1618,1,'VACC0006',0,150,150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1619,1,'VACC0007',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1620,1,'VACC0008',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1621,1,'VACC0009',0,2392,2392,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1622,1,'VACC0011',0,3927,3927,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1623,1,'VACC0012',0,41,41,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1624,1,'VACC0013',0,2099,2099,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1625,1,'VACC0014',0,3900,3900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1626,1,'VACC0015',0,3399,3399,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1627,1,'VACC0016',0,559,559,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1628,1,'VACC0017',0,4950,4950,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1629,1,'VACC0018',0,420,420,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1630,1,'VACC0020',0,3991,3991,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1631,1,'VACC0021',0,1770,1770,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1632,1,'VACC0022',0,729,729,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1633,1,'VACC0023',0,600,600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1634,1,'VACC0024',0,94,94,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1635,1,'VACC0025',0,1945,1945,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1637,1,'VACC0026',0,1299,1299,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1638,1,'VACC0027',0,2024,2024,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1640,1,'VACC0028',0,398,398,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1641,1,'VACC0029',0,2399,2399,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1643,1,'VACC0030',0,11,11,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1644,1,'VACC0031',0,2029,2029,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1645,1,'WPRC0001',0,2310,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1646,1,'XRY0003',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1647,1,'XRY0004',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1648,1,'XRY0005',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1649,1,'XRY0006',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1650,1,'XRY0007',2,600,600,0.00,'Y','Y','shweta','2025-10-10 16:27:59','thims','2024-04-01 13:18:00','shweta','2025-10-10 16:27:59'),(0,0,1651,1,'XRY0008',1,600,600,0.00,'Y','Y','shweta','2025-10-10 16:28:14','thims','2024-04-01 13:18:00','shweta','2025-10-10 16:28:14'),(0,0,1652,1,'XRY0009',1,600,600,0.00,'Y','Y','shweta','2025-10-10 16:28:27','thims','2024-04-01 13:18:00','shweta','2025-10-10 16:28:27'),(0,0,1653,1,'XRY0010',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1654,1,'XRY0011',1,400,400,0.00,'Y','Y','shweta','2025-10-10 16:28:42','thims','2024-04-01 13:18:00','shweta','2025-10-10 16:28:42'),(0,0,1655,1,'XRY0012',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1656,1,'XRY0013',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1657,1,'XRY0014',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1658,1,'XRY0015',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1659,1,'XRY0016',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1660,1,'XRY0017',1,600,600,0.00,'Y','Y','shweta','2025-10-10 16:29:08','thims','2024-04-01 13:18:00','shweta','2025-10-10 16:29:08'),(0,0,1661,1,'XRY0018',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1662,1,'XRY0019',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1663,1,'XRY0020',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1664,1,'XRY0021',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1665,1,'XRY0022',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1666,1,'XRY0023',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1667,1,'XRY0024',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1668,1,'XRY0025',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1669,1,'XRY0026',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1670,1,'XRY0027',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1671,1,'XRY0028',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1672,1,'XRY0029',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1673,1,'XRY0030',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1674,1,'XRY0031',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1675,1,'XRY0032',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1676,1,'XRY0033',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1677,1,'XRY0034',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1678,1,'XRY0035',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1679,1,'XRY0036',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1680,1,'XRY0037',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1681,1,'XRY0038',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1682,1,'XRY0039',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1683,1,'XRY0040',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1684,1,'XRY0041',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1685,1,'XRY0042',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1686,1,'XRY0043',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1687,1,'XRY0044',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1688,1,'XRY0046',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1689,1,'XRY0047',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1690,1,'XRY0048',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1691,1,'XRY0049',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1692,1,'XRY0050',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1693,1,'XRY0051',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1694,1,'XRY0052',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1695,1,'XRY0053',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1696,1,'XRY0054',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1697,1,'XRY0055',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1698,1,'XRY0056',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1699,1,'XRY0057',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1700,1,'XRY0058',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1701,1,'XRY0059',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1702,1,'XRY0060',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1703,1,'XRY0061',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1704,1,'XRY0062',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1705,1,'XRY0063',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1706,1,'XRY0064',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1707,1,'XRY0065',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1708,1,'XRY0066',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1709,1,'XRY0067',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1710,1,'XRY0068',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1711,1,'XRY0069',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1712,1,'XRY0070',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1713,1,'XRY0071',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1714,1,'XRY0072',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1715,1,'XRY0073',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1716,1,'XRY0074',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1717,1,'XRY0075',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1718,1,'XRY0076',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1719,1,'XRY0077',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1720,1,'XRY0078',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1721,1,'XRY0079',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1722,1,'XRY0080',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1723,1,'XRY0081',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1724,1,'XRY0082',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1725,1,'XRY0083',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1726,1,'XRY0084',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1727,1,'XRY0085',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1728,1,'XRY0086',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1729,1,'XRY0087',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1730,1,'XRY0088',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1731,1,'XRY0089',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1732,1,'XRY0090',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1733,1,'XRY0091',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1734,1,'XRY0092',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1735,1,'XRY0093',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1736,1,'XRY0094',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1737,1,'XRY0096',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1738,1,'XRY0097',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1739,1,'XRY0098',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1740,1,'XRY0099',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1741,1,'XRY0100',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1742,1,'XRY0101',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1743,1,'XRY0102',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1744,1,'XRY0103',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1745,1,'XRY0104',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1746,1,'XRY0105',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1747,1,'XRY0107',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1748,1,'XRY0108',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1749,1,'XRY0109',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1750,1,'XRY0110',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1751,1,'XRY0111',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1752,1,'XRY0112',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1753,1,'XRY0113',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1754,1,'XRY0114',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1755,1,'XRY0115',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1756,1,'XRY0116',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1757,1,'XRY0117',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1758,1,'XRY0118',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1759,1,'XRY0119',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1760,1,'XRY0120',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1761,1,'XRY0121',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1762,1,'XRY0122',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1763,1,'XRY0123',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1764,1,'XRY0124',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1765,1,'XRY0125',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1766,1,'XRY0126',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1767,1,'XRY0127',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1768,1,'XRY0128',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1769,1,'XRY0129',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1770,1,'XRY0130',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1771,1,'XRY0131',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1772,1,'XRY0132',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1773,1,'XRY0133',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1774,1,'XRY0134',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1775,1,'XRY0135',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1776,1,'XRY0136',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1777,1,'XRY0137',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1778,1,'XRY0138',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1779,1,'XRY0139',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1780,1,'XRY0140',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1781,1,'XRY0141',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1782,1,'XRY0142',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1783,1,'XRY0143',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1784,1,'XRY0144',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1785,1,'XRY0145',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1786,1,'XRY0146',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1787,1,'XRY0147',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1788,1,'XRY0148',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1789,1,'XRY0149',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1790,1,'XRY0150',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1791,1,'XRY0151',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1792,1,'XRY0152',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1793,1,'XRY0153',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1794,1,'XRY0154',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1795,1,'XRY0155',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1796,1,'XRY0156',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1797,1,'XRY0157',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1798,1,'XRY0158',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1799,1,'XRY0159',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1800,1,'XRY0160',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1801,1,'XRY0161',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1802,1,'XRY0162',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1803,1,'XRY0163',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1804,1,'XRY0164',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1805,1,'XRY0165',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1806,1,'XRY0166',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1807,1,'XRY0167',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1808,1,'XRY0168',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1809,1,'XRY0169',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1810,1,'XRY0170',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1811,1,'XRY0171',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1812,1,'XRY0172',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1813,1,'XRY0173',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1814,1,'XRY0174',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1815,1,'XRY0175',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1816,1,'XRY0176',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1817,1,'XRY0177',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1818,1,'XRY0178',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1819,1,'XRY0180',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1820,1,'XRY0181',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1821,1,'XRY0182',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1822,1,'XRY0183',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1823,1,'XRY0184',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1824,1,'XRY0185',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1825,1,'XRY0189',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1826,1,'XRY0190',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1827,1,'XRY0191',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1828,1,'XRY0192',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1829,1,'XRY0193',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1830,1,'XRY0194',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1831,1,'XRY0195',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1832,1,'XRY0196',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1833,1,'XRY0197',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1834,1,'XRY0198',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1835,1,'XRY0199',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1836,1,'XRY0200',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1837,1,'XRY0201',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1838,1,'XRY0202',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1839,1,'XRY0203',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1840,1,'XRY0204',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1841,1,'XRY0205',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1842,1,'XRY0206',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1843,1,'XRY0207',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1844,1,'XRY0208',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1845,1,'XRY0209',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1846,1,'XRY0210',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1847,1,'XRY0211',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1848,1,'XRY0212',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1849,1,'XRY0213',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1850,1,'XRY0214',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1851,1,'XRY0215',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1852,1,'XRY0216',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1853,1,'XRY0217',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1854,1,'XRY0218',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1855,1,'XRY0219',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1856,1,'XRY0220',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1857,1,'XRY0221',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1858,1,'XRY0222',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1859,1,'XRY0223',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1860,1,'XRY0224',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1861,1,'XRY0225',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1862,1,'XRY0226',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1863,1,'XRY0227',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1864,1,'XRY0228',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1865,1,'XRY0229',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1866,1,'XRY0230',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1867,1,'XRY0231',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1868,1,'XRY0232',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1869,1,'XRY0233',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1870,1,'XRY0234',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1871,1,'XRY0235',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1872,1,'XRY0236',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1873,1,'XRY0237',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1874,1,'XRY0238',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1875,1,'XRY0240',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1876,1,'XRY0241',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1877,1,'XRY0242',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1878,1,'XRY0243',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1879,1,'XRY0244',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1880,1,'XRY0245',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1881,1,'XRY0246',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1882,1,'XRY0247',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1883,1,'XRY0248',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1884,1,'XRY0249',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1885,1,'XRY0250',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1886,1,'XRY0251',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1887,1,'XRY0252',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1888,1,'XRY0253',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1889,1,'XRY0254',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1890,1,'XRY0255',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1891,1,'XRY0256',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1892,1,'XRY0257',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1893,1,'XRY0258',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1894,1,'XRY0259',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1895,1,'XRY0260',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1896,1,'XRY0261',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1897,1,'XRY0262',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1898,1,'XRY0263',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1899,1,'XRY0264',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1900,1,'XRY0265',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1901,1,'XRY0266',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1902,1,'XRY0267',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1903,1,'XRY0268',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1904,1,'XRY0269',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1905,1,'XRY0270',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1906,1,'XRY0271',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1907,1,'XRY0272',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1908,1,'XRY0273',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1909,1,'XRY0274',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1910,1,'XRY0275',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1911,1,'XRY0276',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1912,1,'XRY0277',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1913,1,'XRY0278',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1914,1,'XRY0279',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1915,1,'XRY0280',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1916,1,'XRY0281',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1917,1,'XRY0282',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1918,1,'XRY0283',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1919,1,'XRY0284',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1920,1,'XRY0285',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1921,1,'XRY0286',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1922,1,'XRY0287',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1923,1,'XRY0288',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1924,1,'XRY0289',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1925,1,'XRY0290',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1926,1,'XRY0291',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1927,1,'XRY0292',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1928,1,'XRY0293',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1929,1,'XRY0294',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1930,1,'XRY0295',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1931,1,'XRY0296',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1932,1,'XRY0297',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1933,1,'XRY0298',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1934,1,'XRY0299',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1935,1,'XRY0300',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1936,1,'XRY0301',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1937,1,'XRY0302',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1938,1,'XRY0303',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1939,1,'XRY0304',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1940,1,'XRY0305',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1941,1,'XRY0306',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1942,1,'XRY0307',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1943,1,'XRY0308',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1944,1,'XRY0309',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1945,1,'XRY0310',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1946,1,'XRY0311',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1947,1,'XRY0312',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1948,1,'XRY0313',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1949,1,'XRY0314',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1950,1,'XRY0315',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1951,1,'XRY0316',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1952,1,'XRY0317',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1953,1,'XRY0318',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1954,1,'XRY0319',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1955,1,'XRY0320',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1956,1,'XRY0321',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1957,1,'XRY0322',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1958,1,'XRY0323',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1959,1,'XRY0324',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1960,1,'XRY0327',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1961,1,'XRY0325',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1962,1,'XRY0326',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1963,1,'XRY0328',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1964,1,'XRY0329',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1965,1,'XRY0330',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1966,1,'XRY0331',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1967,1,'XRY0332',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1968,1,'XRY0333',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1969,1,'XRY0334',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1970,1,'XRY0335',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1971,1,'XRY0336',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1972,1,'XRY0337',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1973,1,'XRY0338',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1974,1,'XRY0339',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1975,1,'XRY0340',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1976,1,'XRY0341',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1977,1,'XRY0342',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1978,1,'XRY0343',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1979,1,'XRY0344',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1980,1,'XRY0345',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1981,1,'XRY0346',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1982,1,'XRY0347',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1983,1,'XRY0348',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1984,1,'XRY0349',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1985,1,'XRY0350',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1986,1,'XRY0351',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1987,1,'XRY0352',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1988,1,'XRY0353',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1989,1,'XRY0354',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1990,1,'XRY0355',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1991,1,'XRY0356',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1992,1,'XRY0357',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1993,1,'XRY0358',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1994,1,'XRY0359',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1995,1,'XRY0360',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1996,1,'XRY0361',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1997,1,'XRY0362',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1998,1,'XRY0363',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,1999,1,'XRY0364',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2000,1,'XRY0365',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2001,1,'XRY0366',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2002,1,'XRY0367',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2003,1,'XRY0368',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2004,1,'XRY0369',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2005,1,'XRY0370',0,600,600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2006,1,'XRY0371',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2007,1,'XRY0372',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2008,1,'XRY0373',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2009,1,'XRY0374',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2010,1,'XRY0375',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2011,1,'XRY0376',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2012,1,'XRY0377',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2013,1,'XRY0378',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2014,1,'XRY0379',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2015,1,'XRY0380',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2016,1,'XRY0381',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2017,1,'XRY0382',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2018,1,'XRY0383',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2019,1,'XRY0384',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2020,1,'XRY0385',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2021,1,'XRY0386',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2022,1,'XRY0387',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2023,1,'XRY0388',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2024,1,'XRY0389',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2025,1,'XRY0390',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2026,1,'XRY0391',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2027,1,'XRY0392',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2028,1,'XRY0393',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2029,1,'XRY0394',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2030,1,'XRY0395',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2031,1,'XRY0396',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2032,1,'XRY0397',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2033,1,'XRY0400',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2034,1,'XRY0401',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2035,1,'XRY0402',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2036,1,'XRY0403',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2037,1,'XRY0404',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2038,1,'XRY0405',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2039,1,'XRY0406',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2040,1,'XRY0407',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2041,1,'XRY0408',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2042,1,'XRY0409',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2043,1,'XRY0410',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2044,1,'XRY0411',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2045,1,'XRY0412',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2046,1,'XRY0413',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2047,1,'XRY0414',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2048,1,'XRY0415',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2049,1,'XRY0416',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2050,1,'XRY0417',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2051,1,'XRY0418',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2052,1,'XRY0419',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2053,1,'XRY0420',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2054,1,'XRY0421',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2055,1,'XRY0422',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2056,1,'XRY0423',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2057,1,'XRY0424',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2058,1,'XRY0425',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2059,1,'XRY0426',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2060,1,'XRY0427',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2061,1,'XRY0428',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2062,1,'XRY0429',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2063,1,'XRY0430',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2064,1,'XRY0431',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2065,1,'XRY0432',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2066,1,'XRY0433',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2067,1,'XRY0434',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2068,1,'XRY0435',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2069,1,'XRY0436',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2070,1,'XRY0437',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2071,1,'XRY0438',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2072,1,'XRY0439',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2073,1,'XRY0440',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2074,1,'XRY0441',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2075,1,'XRY0442',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2076,1,'XRY0443',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2077,1,'XRY0444',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2078,1,'XRY0445',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2079,1,'XRY0447',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2080,1,'XRY0448',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2081,1,'XRY0449',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2082,1,'XRY0450',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2083,1,'XRY0451',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2084,1,'XRY0452',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2085,1,'XRY0453',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2086,1,'XRY0454',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2087,1,'XRY0455',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2088,1,'XRY0456',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2089,1,'XRY0457',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2090,1,'XRY0458',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2091,1,'XRY0459',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2092,1,'XRY0460',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2093,1,'XRY0461',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2094,1,'XRY0462',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2095,1,'XRY0463',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2096,1,'XRY0464',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2097,1,'XRY0465',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2098,1,'XRY0466',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2099,1,'XRY0467',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2100,1,'XRY0468',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2101,1,'XRY0469',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2102,1,'XRY0470',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2103,1,'XRY0471',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2104,1,'XRY0472',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2105,1,'XRY0473',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2106,1,'XRY0474',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2107,1,'XRY0475',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2108,1,'XRY0476',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2109,1,'XRY0477',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2110,1,'XRY0478',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2111,1,'XRY0479',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2112,1,'XRY0480',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2113,1,'XRY0481',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2114,1,'XRY0482',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2115,1,'XRY0483',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2116,1,'XRY0484',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2117,1,'XRY0485',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2118,1,'XRY0486',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2119,1,'XRY0487',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2120,1,'XRY0488',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2121,1,'XRY0489',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2122,1,'XRY0490',0,900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2123,1,'XRY0491',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2124,1,'XRY0492',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2125,1,'XRY0493',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2126,1,'XRY0494',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2127,1,'XRY0495',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2128,1,'XRY0496',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2129,1,'XRYP0001',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2130,1,'XRYP0002',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2131,1,'XRYP0003',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2132,1,'XRYP0004',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2133,1,'XRYP0005',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2134,1,'XRYP0006',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2135,1,'XRYP0007',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2136,1,'XRYP0008',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2137,1,'XRYP0009',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2138,1,'XRYP0010',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2139,1,'XRYP0011',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2140,1,'XRYP0012',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2141,1,'XRYP0014',0,1250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2142,1,'XRYP0015',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2143,1,'BARS0001',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2144,1,'BARS0002',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2145,1,'BARS0003',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2146,1,'BMED0047',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2147,1,'LAB0940',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2149,1,'ORTS0271',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2150,1,'ORTS0270',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2152,1,'ENTP0033',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2169,1,'ROOM0002',3,1,2900,0.00,'Y','Y','reception','2025-10-11 11:33:32','thims','2024-04-01 13:18:00','reception','2025-10-11 11:33:32'),(0,0,2184,1,'DRPR0023',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2185,1,'DRPR0019',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2186,1,'DRPR0021',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2187,1,'DRPR0003',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2188,1,'DRPR0025',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2197,1,'PHAR0001',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2198,1,'PHAR0002',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2207,1,'ENTS0002',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2208,1,'GASS0015',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2209,1,'GENS0032',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2210,1,'GENS0056',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2211,1,'GASS0047',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2214,1,'HANS0045',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2215,1,'ONCS0097',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2216,1,'ORTS0146',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2217,1,'ORTS0277',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2218,1,'PEDS0004',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2219,1,'PEDS0009',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2220,1,'PEDS0033',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2221,1,'PEDS0063',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2222,1,'PEDS0064',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2223,1,'PLAS0106',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2224,1,'PLAS0107',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2225,1,'THOS0013',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2226,1,'ENTS0059',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2227,1,'GASS0075',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2228,1,'HANS0024',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2229,1,'OPTS0042',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2230,1,'ORTS0133',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2231,1,'ENTS0010',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2232,1,'ENTS0024',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2233,1,'ENTS0025',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2234,1,'ENTS0030',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2235,1,'ENTS0032',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2236,1,'GASS0051',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2237,1,'GASS0065',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2238,1,'GASS0085',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2239,1,'GASS0162',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2240,1,'GASS0163',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2241,1,'GASS0164',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2242,1,'GENS0065',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2243,1,'GYNS0030',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2244,1,'GYNS0088',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2245,1,'GYNS0089',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2246,1,'GYNS0090',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2247,1,'GYNS0085',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2248,1,'HANS0039',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2249,1,'NEUS0033',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2250,1,'NEUS0026',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2251,1,'ONCS0020',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2252,1,'ONCS0045',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2253,1,'ONCS0046',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2254,1,'ONCS0049',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2255,1,'ONCS0050',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2256,1,'ONCS0106',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2257,1,'ONCS0110',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2258,1,'ONCS0115',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2259,1,'OPTS0007',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2260,1,'OPTS0019',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2261,1,'OPTS0023',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2262,1,'OPTS0033',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2263,1,'OPTS0040',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2264,1,'ORTS0062',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2265,1,'ORTS0073',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2266,1,'ORTS0102',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2267,1,'ORTS0122',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2268,1,'ORTS0124',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2269,1,'ORTS0136',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2270,1,'ORTS0131',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2271,1,'ORTS0191',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2272,1,'ORTS0196',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2273,1,'ORTS0205',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2274,1,'ORTS0208',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2275,1,'ORTS0096',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2276,1,'ORTS0266',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2277,1,'ORTS0215',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2278,1,'PEDS0002',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2279,1,'PEDS0005',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2280,1,'PEDS0012',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2281,1,'PEDS0013',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2282,1,'PEDS0043',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2283,1,'PEDS0044',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2284,1,'PEDS0059',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2285,1,'PEDS0078',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2286,1,'PEDS0081',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2287,1,'PLAS0011',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2288,1,'PLAS0012',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2289,1,'PLAS0067',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2290,1,'PLAS0068',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2291,1,'PLAS0091',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2292,1,'PLAS0092',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2293,1,'PLAS0094',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2294,1,'PLAS0112',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2295,1,'PLAS0121',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2296,1,'UROS0057',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2297,1,'UROS0098',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2298,1,'VASS0006',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2299,1,'VASS0031',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2300,1,'GASS0052',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2301,1,'GASS0133',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2302,1,'GASS0050',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2303,1,'GENS0033',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2304,1,'GENS0034',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2305,1,'ONCS0029',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2306,1,'ORTS0083',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2307,1,'ORTS0103',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2308,1,'ORTS0137',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2309,1,'ORTS0214',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2310,1,'PLAS0122',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2311,1,'SURG0010',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2312,1,'UROS0073',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2314,1,'UROS0033',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2333,1,'ORTP0018',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2334,1,'ENTS0046',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2337,1,'ORTS0068',0,2600,2600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2338,1,'ENTS0035',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2339,1,'ENTS0034',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2343,1,'ENTS0054',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2348,1,'PKG0008',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2349,1,'PKG0001',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2350,1,'PKG0002',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2351,1,'PKG0005',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2352,1,'NEUS0003',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2353,1,'WPRC0008',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2354,1,'HPKG0003',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2355,1,'ONCS0073',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2357,1,'PKG0004',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2358,1,'PKG0003',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2359,1,'PKG0006',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2360,1,'UROS0051',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2363,1,'GYNS0093',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2365,1,'UROS0089',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2367,1,'VASS0037',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2368,1,'ORTS0227',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2369,1,'GASS0026',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2372,1,'ANES0008',0,4500,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2373,1,'VACC0032',0,2080,2080,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2374,1,'NEPP0006',0,500,500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2375,1,'SURG0008',0,2000,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2376,1,'NARC0005',0,925,925,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2377,1,'LAB0605',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2378,1,'UCTC0003',0,1000,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2380,1,'LAB0777',0,7000,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2381,1,'LAB0540',0,7800,7800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2382,1,'LAB0259',0,1850,1850,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2383,1,'LAB0958',0,1800,1800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2384,1,'LAB0971',0,4300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2385,1,'NEPP0018',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2386,1,'DRC0011',0,0,1400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2387,1,'BMED0043',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2388,1,'HPKG0013',0,1999,1999,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2389,1,'ORTS0132',0,7700,7700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2390,1,'XRY0001',0,150,150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2391,1,'LAB0280',0,18000,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2392,1,'ENTP0001',0,1000,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2393,1,'GENS0042',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2394,1,'LAB0516',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2395,1,'UROS0028',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2396,1,'GYNS0072',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2397,1,'DTPR0052',0,2800,2800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2398,1,'DTPR0120',0,18000,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2399,1,'ORTS0259',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2400,1,'ORTS0260',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2401,1,'PLAS0063',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2402,1,'LAB0180',0,1900,1900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2403,1,'LAB0053',0,5000,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2404,1,'GENS0018',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2405,1,'NEPP0022',0,1600,1600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2406,1,'LAB0478',0,80,80,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2407,1,'GYNS0001',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2408,1,'ORTS0041',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2409,1,'LAB0518',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2410,1,'LAB0519',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2411,1,'LAB0515',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2412,1,'LAB0513',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2413,1,'GENS0044',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2414,1,'GENS0043',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2415,1,'ORTS0170',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2416,1,'ORTS0169',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2417,1,'CANT0001',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2418,1,'CANT0003',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2419,1,'CANT0002',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2420,1,'LAB0306',0,1700,1700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2422,1,'CARP0010',0,49999,49999,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2423,1,'CARP0009',0,65000,65000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2424,1,'CARP0020',0,3999,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2425,1,'CARP0022',0,49999,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2426,1,'CARP0017',0,60000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2428,1,'CARP0026',0,1000,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2429,1,'CARP0025',0,2000,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2430,1,'CARP0027',0,3000,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2432,1,'GYNS0014',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2433,1,'LAB0252',0,700,700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2434,1,'CARP0031',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2435,1,'ENTP0034',0,1250,1250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2436,1,'CARP0029',0,35000,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2438,1,'CARP0016',0,50000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2439,1,'CARP0015',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2440,1,'CARP0014',0,3000,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2441,1,'CARP0013',0,20000,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2442,1,'CARP0018',0,60000,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2443,1,'CARP0024',0,20000,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2445,1,'CARP0028',0,10000,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2446,1,'UROS0055',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2447,1,'LAB0415',0,1100,1100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2448,1,'SURG0012',0,2900,2900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2449,1,'PEDP0018',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2450,1,'ORTS0231',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2452,1,'NEPP0014',0,6000,6000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2453,1,'CARP0011',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2454,1,'LAB0615',0,3000,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2457,1,'ROOM0001',5,0,5500,0.00,'Y','Y','reception','2025-10-11 11:33:25','thims','2024-04-01 13:18:00','reception','2025-10-11 11:33:25'),(0,0,2459,1,'CARP0004',0,60000,60000,0.00,'N','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2460,1,'LAB0051',0,6000,6000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2461,1,'ORTP0022',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2462,1,'LAB0869',0,4700,4700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2463,1,'LAB0158',0,3500,3500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2464,1,'GENS0055',0,500,500,0.00,'N','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2465,1,'OPHP0002',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2467,1,'OPHP0016',0,65000,65000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2468,1,'OPHP0017',0,40000,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2469,1,'OPHP0014',0,32000,32000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2470,1,'OPHP0018',0,22000,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2471,1,'OPHP0015',0,10000,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2472,1,'EDPR0016',0,1499,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2473,1,'EDPR0001',0,2499,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2474,1,'LAB0298',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2475,1,'GYNS0060',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2476,1,'ADMN0005',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2477,1,'ADMN0011',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2478,1,'ANES0012',0,0,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2479,1,'ARTS0001',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2480,1,'ARTS0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2481,1,'ARTS0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2482,1,'ARTS0004',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2483,1,'ARTS0005',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2484,1,'ARTS0006',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2485,1,'ARTS0007',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2486,1,'ARTS0008',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2487,1,'ARTS0009',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2488,1,'ARTS0010',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2489,1,'ARTS0011',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2490,1,'ARTS0012',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2491,1,'ARTS0013',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2492,1,'ARTS0014',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2493,1,'ARTS0015',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2494,1,'ARTS0016',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2495,1,'ARTS0017',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2496,1,'ARTS0018',0,20000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2497,1,'ARTS0019',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2498,1,'ARTS0020',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2499,1,'ARTS0021',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2500,1,'BMED0031',0,500,500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2501,1,'BMED0039',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2502,1,'BMED0040',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2503,1,'CARP0001',0,86250,86250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2504,1,'CARP0002',0,12000,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2505,1,'CARP0003',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2506,1,'CARP0005',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2507,1,'CARP0006',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2508,1,'CARP0007',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2509,1,'CARP0008',0,0,120000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2510,1,'CARP0012',0,0,80000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2511,1,'CARP0019',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2512,1,'CARP0021',0,0,80000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2513,1,'CARP0023',0,0,66440,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2514,1,'CARP0030',0,125000,125000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2515,1,'CASE',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2516,1,'CASP0001',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2517,1,'CPKG0001',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2518,1,'CTSN0003',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2519,1,'CTSN0022',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2520,1,'CTSN0023',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2521,1,'CTSN0024',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2522,1,'CTSN0030',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2523,1,'DRC0001',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2524,1,'DRC0007',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2525,1,'DRC0017',0,4000,4000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2526,1,'DRPR0001',0,100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2527,1,'DRPR0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2528,1,'DRPR0004',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2529,1,'DRPR0005',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2530,1,'DRPR0006',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2531,1,'DRPR0007',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2532,1,'DRPR0008',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2533,1,'DRPR0009',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2534,1,'DRPR0010',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2535,1,'DRPR0011',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2536,1,'DRPR0012',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2537,1,'DRPR0013',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2538,1,'DRPR0014',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2539,1,'DRPR0020',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2540,1,'DRPR0022',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2541,1,'DRPR0024',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2542,1,'DRPR0026',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2543,1,'DRPR0027',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2544,1,'DRPR0028',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2545,1,'DRPR0029',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2546,1,'DRPR0030',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2547,1,'DRPR0031',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2548,1,'DRPR0032',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2549,1,'DRPR0033',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2550,1,'DRPR0034',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2551,1,'DRPR0035',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2552,1,'DRPR0036',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2553,1,'DRPR0037',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2554,1,'DRPR0039',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2555,1,'DRPR0040',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2556,1,'DRPR0041',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2557,1,'DRPR0042',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2558,1,'DRPR0043',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2559,1,'DRPR0044',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2560,1,'DRPR0045',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2561,1,'DRPR0046',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2562,1,'DTPR0002',0,560,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2563,1,'DTPR0005',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2564,1,'DTPR0006',0,3200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2565,1,'DTPR0010',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2566,1,'DTPR0011',0,8000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2567,1,'DTPR0013',0,480,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2568,1,'DTPR0014',0,640,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2569,1,'DTPR0015',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2570,1,'DTPR0020',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2571,1,'DTPR0021',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2572,1,'DTPR0022',0,5600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2573,1,'DTPR0028',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2574,1,'DTPR0029',0,2800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2575,1,'DTPR0030',0,240,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2576,1,'DTPR0033',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2577,1,'DTPR0034',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2578,1,'DTPR0039',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2579,1,'DTPR0040',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2580,1,'DTPR0041',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2581,1,'DTPR0042',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2582,1,'DTPR0043',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2583,1,'DTPR0044',0,3200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2584,1,'DTPR0045',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2585,1,'DTPR0046',0,8000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2586,1,'DTPR0048',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2587,1,'DTPR0049',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2588,1,'DTPR0051',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2589,1,'DTPR0055',0,640,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2590,1,'DTPR0056',0,160,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2591,1,'DTPR0057',0,12000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2592,1,'DTPR0059',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2593,1,'DTPR0061',0,240,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2594,1,'DTPR0062',0,12000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2595,1,'DTPR0063',0,12000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2596,1,'DTPR0068',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2597,1,'DTPR0069',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2598,1,'DTPR0073',0,280,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2599,1,'DTPR0074',0,280,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2600,1,'DTPR0075',0,80,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2601,1,'DTPR0079',0,2800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2602,1,'DTPR0080',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2603,1,'DTPR0081',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2604,1,'DTPR0084',0,800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2605,1,'DTPR0085',0,240,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2606,1,'DTPR0090',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2607,1,'DTPR0092',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2608,1,'DTPR0093',0,56000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2609,1,'DTPR0097',0,3200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2610,1,'DTPR0102',0,3600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2611,1,'DTPR0103',0,2400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2612,1,'DTPR0107',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2613,1,'DTPR0110',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2614,1,'DTPR0111',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2615,1,'DTPR0112',0,8000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2616,1,'DTPR0115',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2617,1,'DTPR0117',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2618,1,'DTPR0118',0,720,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2619,1,'DTPR0119',0,720,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2620,1,'DTPR0125',0,480,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2621,1,'DTPR0126',0,240,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2622,1,'DTPR0129',0,1280,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2623,1,'DTPR0130',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2624,1,'DTPR0132',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2625,1,'DTPR0136',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2626,1,'DTPR0138',0,1600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2627,1,'DTPR0149',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2628,1,'DTPR0151',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2629,1,'EDPR0029',0,13000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2630,1,'ENTP0021',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2631,1,'ENTP0024',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2632,1,'ENTS0001',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2633,1,'ENTS0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2634,1,'ENTS0004',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2635,1,'ENTS0005',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2636,1,'ENTS0006',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2637,1,'ENTS0007',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2638,1,'ENTS0008',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2639,1,'ENTS0009',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2640,1,'ENTS0011',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2641,1,'ENTS0012',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2642,1,'ENTS0013',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2643,1,'ENTS0014',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2644,1,'ENTS0015',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2645,1,'ENTS0016',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2646,1,'ENTS0017',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2647,1,'ENTS0018',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2648,1,'ENTS0019',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2649,1,'ENTS0020',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2650,1,'ENTS0021',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2651,1,'ENTS0022',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2652,1,'ENTS0023',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2653,1,'ENTS0026',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2654,1,'ENTS0027',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2655,1,'ENTS0028',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2656,1,'ENTS0029',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2657,1,'ENTS0031',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2658,1,'ENTS0033',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2659,1,'ENTS0036',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2660,1,'ENTS0037',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2661,1,'ENTS0038',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2662,1,'ENTS0039',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2663,1,'ENTS0040',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2664,1,'ENTS0041',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2665,1,'ENTS0042',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2666,1,'ENTS0043',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2667,1,'ENTS0044',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2668,1,'ENTS0045',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2669,1,'ENTS0047',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2670,1,'ENTS0048',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2671,1,'ENTS0049',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2672,1,'ENTS0050',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2673,1,'ENTS0051',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2674,1,'ENTS0052',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2675,1,'ENTS0053',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2676,1,'ENTS0055',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2677,1,'ENTS0056',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2678,1,'ENTS0057',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2679,1,'ENTS0058',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2680,1,'ENTS0060',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2681,1,'ENTS0061',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2682,1,'ENTS0062',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2683,1,'ENTS0063',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2684,1,'ENTS0064',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2685,1,'ENTS0065',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2686,1,'ENTS0066',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2687,1,'ENTS0067',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2688,1,'ENTS0068',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2689,1,'ENTS0069',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2690,1,'ENTS0071',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2691,1,'ENTS0072',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2692,1,'ENTS0073',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2693,1,'ENTS0074',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2694,1,'ENTS0075',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2695,1,'GASS0001',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2696,1,'GASS0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2697,1,'GASS0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2698,1,'GASS0004',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2699,1,'GASS0005',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2700,1,'GASS0006',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2701,1,'GASS0007',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2702,1,'GASS0008',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2703,1,'GASS0009',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2704,1,'GASS0010',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2705,1,'GASS0011',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2706,1,'GASS0012',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2707,1,'GASS0013',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2708,1,'GASS0014',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2709,1,'GASS0016',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2710,1,'GASS0017',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2711,1,'GASS0018',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2712,1,'GASS0019',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2713,1,'GASS0020',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2714,1,'GASS0021',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2715,1,'GASS0022',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2716,1,'GASS0023',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2717,1,'GASS0024',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2718,1,'GASS0025',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2719,1,'GASS0027',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2720,1,'GASS0028',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2721,1,'GASS0029',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2722,1,'GASS0030',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2723,1,'GASS0031',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2724,1,'GASS0032',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2725,1,'GASS0033',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2726,1,'GASS0034',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2727,1,'GASS0035',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2728,1,'GASS0036',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2729,1,'GASS0037',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2730,1,'GASS0038',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2731,1,'GASS0039',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2732,1,'GASS0040',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2733,1,'GASS0041',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2734,1,'GASS0042',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2735,1,'GASS0043',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2736,1,'GASS0044',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2737,1,'GASS0045',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2738,1,'GASS0046',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2739,1,'GASS0048',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2740,1,'GASS0049',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2741,1,'GASS0053',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2742,1,'GASS0054',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2743,1,'GASS0055',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2744,1,'GASS0056',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2745,1,'GASS0057',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2746,1,'GASS0058',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2747,1,'GASS0059',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2748,1,'GASS0060',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2749,1,'GASS0061',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2750,1,'GASS0062',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2751,1,'GASS0063',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2752,1,'GASS0064',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2753,1,'GASS0066',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2754,1,'GASS0067',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2755,1,'GASS0068',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2756,1,'GASS0069',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2757,1,'GASS0070',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2758,1,'GASS0071',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2759,1,'GASS0072',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2760,1,'GASS0073',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2761,1,'GASS0074',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2762,1,'GASS0076',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2763,1,'GASS0077',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2764,1,'GASS0078',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2765,1,'GASS0079',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2766,1,'GASS0080',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2767,1,'GASS0081',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2768,1,'GASS0082',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2769,1,'GASS0083',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2770,1,'GASS0084',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2771,1,'GASS0086',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2772,1,'GASS0087',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2773,1,'GASS0088',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2774,1,'GASS0089',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2775,1,'GASS0090',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2776,1,'GASS0091',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2777,1,'GASS0092',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2778,1,'GASS0093',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2779,1,'GASS0094',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2780,1,'GASS0095',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2781,1,'GASS0096',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2782,1,'GASS0097',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2783,1,'GASS0098',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2784,1,'GASS0099',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2785,1,'GASS0100',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2786,1,'GASS0101',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2787,1,'GASS0102',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2788,1,'GASS0103',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2789,1,'GASS0104',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2790,1,'GASS0105',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2791,1,'GASS0106',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2792,1,'GASS0107',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2793,1,'GASS0108',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2794,1,'GASS0109',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2795,1,'GASS0110',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2796,1,'GASS0111',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2797,1,'GASS0112',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2798,1,'GASS0113',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2799,1,'GASS0114',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2800,1,'GASS0115',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2801,1,'GASS0116',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2802,1,'GASS0117',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2803,1,'GASS0118',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2804,1,'GASS0119',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2805,1,'GASS0120',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2806,1,'GASS0122',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2807,1,'GASS0123',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2808,1,'GASS0124',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2809,1,'GASS0125',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2810,1,'GASS0126',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2811,1,'GASS0127',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2812,1,'GASS0128',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2813,1,'GASS0129',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2814,1,'GASS0130',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2815,1,'GASS0131',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2816,1,'GASS0132',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2817,1,'GASS0134',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2818,1,'GASS0135',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2819,1,'GASS0136',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2820,1,'GASS0137',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2821,1,'GASS0138',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2822,1,'GASS0139',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2823,1,'GASS0140',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2824,1,'GASS0141',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2825,1,'GASS0142',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2826,1,'GASS0143',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2827,1,'GASS0144',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2828,1,'GASS0145',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2829,1,'GASS0146',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2830,1,'GASS0147',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2831,1,'GASS0148',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2832,1,'GASS0149',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2833,1,'GASS0150',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2834,1,'GASS0151',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2835,1,'GASS0152',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2836,1,'GASS0153',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2837,1,'GASS0154',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2838,1,'GASS0155',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2839,1,'GASS0156',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2840,1,'GASS0157',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2841,1,'GASS0158',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2842,1,'GASS0159',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2843,1,'GASS0160',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2844,1,'GASS0161',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2845,1,'GASS0165',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2846,1,'GASS0166',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2847,1,'GASS0167',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2848,1,'GASS0168',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2849,1,'GENS0001',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2850,1,'GENS0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2851,1,'GENS0004',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2852,1,'GENS0005',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2853,1,'GENS0006',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2854,1,'GENS0007',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2855,1,'GENS0008',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2856,1,'GENS0010',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2857,1,'GENS0011',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2858,1,'GENS0012',0,2600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2859,1,'GENS0013',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2860,1,'GENS0014',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2861,1,'GENS0015',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2862,1,'GENS0016',0,30600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2863,1,'GENS0017',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2864,1,'GENS0019',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2865,1,'GENS0020',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2866,1,'GENS0021',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2867,1,'GENS0022',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2868,1,'GENS0023',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2869,1,'GENS0024',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2870,1,'GENS0025',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2871,1,'GENS0026',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2872,1,'GENS0027',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2873,1,'GENS0028',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2874,1,'GENS0029',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2875,1,'GENS0030',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2876,1,'GENS0031',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2877,1,'GENS0036',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2878,1,'GENS0037',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2879,1,'GENS0038',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2880,1,'GENS0039',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2881,1,'GENS0040',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2882,1,'GENS0041',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2883,1,'GENS0045',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2884,1,'GENS0046',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2885,1,'GENS0047',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2886,1,'GENS0048',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2887,1,'GENS0049',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2888,1,'GENS0050',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2889,1,'GENS0051',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2890,1,'GENS0052',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2891,1,'GENS0053',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2892,1,'GENS0054',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2893,1,'GENS0057',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2894,1,'GENS0058',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2895,1,'GENS0059',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2896,1,'GENS0060',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2897,1,'GENS0061',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2898,1,'GENS0062',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2899,1,'GENS0066',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2900,1,'GENS0067',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2901,1,'GENS0068',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2902,1,'GENS0069',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2903,1,'GENS0070',0,2000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2904,1,'GENS0071',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2905,1,'GENS0072',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2906,1,'GENS0073',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2907,1,'GENS0074',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2908,1,'GENS0075',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2909,1,'GENS0076',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2910,1,'GENS0077',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2911,1,'GYNS0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2912,1,'GYNS0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2913,1,'GYNS0004',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2914,1,'GYNS0005',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2915,1,'GYNS0006',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2916,1,'GYNS0007',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2917,1,'GYNS0009',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2918,1,'GYNS0010',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2919,1,'GYNS0011',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2920,1,'GYNS0012',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2921,1,'GYNS0013',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2922,1,'GYNS0015',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2923,1,'GYNS0016',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2924,1,'GYNS0017',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2925,1,'GYNS0018',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2926,1,'GYNS0019',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2927,1,'GYNS0020',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2928,1,'GYNS0021',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2929,1,'GYNS0022',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2930,1,'GYNS0023',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2931,1,'GYNS0024',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2932,1,'GYNS0025',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2933,1,'GYNS0026',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2934,1,'GYNS0027',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2935,1,'GYNS0028',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2936,1,'GYNS0029',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2937,1,'GYNS0031',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2938,1,'GYNS0032',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2939,1,'GYNS0033',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2940,1,'GYNS0034',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2941,1,'GYNS0035',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2942,1,'GYNS0036',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2943,1,'GYNS0037',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2944,1,'GYNS0038',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2945,1,'GYNS0039',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2946,1,'GYNS0040',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2947,1,'GYNS0041',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2948,1,'GYNS0042',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2949,1,'GYNS0043',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2950,1,'GYNS0044',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2951,1,'GYNS0045',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2952,1,'GYNS0046',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2953,1,'GYNS0047',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2954,1,'GYNS0048',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2955,1,'GYNS0049',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2956,1,'GYNS0050',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2957,1,'GYNS0051',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2958,1,'GYNS0052',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2959,1,'GYNS0053',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2960,1,'GYNS0054',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2961,1,'GYNS0055',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2962,1,'GYNS0056',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2963,1,'GYNS0057',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2964,1,'GYNS0058',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2965,1,'GYNS0059',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2966,1,'GYNS0061',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2967,1,'GYNS0062',0,0,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2968,1,'GYNS0063',0,0,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2969,1,'GYNS0064',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2970,1,'GYNS0065',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2971,1,'GYNS0066',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2972,1,'GYNS0067',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2973,1,'GYNS0068',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2974,1,'GYNS0069',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2975,1,'GYNS0070',0,0,60600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2976,1,'GYNS0071',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2977,1,'GYNS0073',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2978,1,'GYNS0074',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2979,1,'GYNS0075',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2980,1,'GYNS0076',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2981,1,'GYNS0077',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2982,1,'GYNS0078',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2983,1,'GYNS0079',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2984,1,'GYNS0080',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2985,1,'GYNS0081',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2986,1,'GYNS0082',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2987,1,'GYNS0083',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2988,1,'GYNS0084',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2989,1,'GYNS0086',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2990,1,'GYNS0087',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2991,1,'GYNS0091',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2992,1,'GYNS0092',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2993,1,'GYNS0094',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2994,1,'GYNS0095',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2995,1,'GYNS0096',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2996,1,'GYNS0097',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2997,1,'GYNS0098',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2998,1,'GYNS0099',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,2999,1,'GYNS0100',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3000,1,'GYNS0101',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3001,1,'GYNS0102',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3002,1,'GYNS0103',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3003,1,'GYNS0104',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3004,1,'GYNS0105',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3005,1,'GYNS0106',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3006,1,'GYNS0107',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3007,1,'GYNS0108',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3008,1,'GYNS0109',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3009,1,'GYNS0110',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3010,1,'GYNS0111',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3011,1,'GYNS0112',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3012,1,'GYNS0113',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3013,1,'GYNS0114',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3014,1,'GYNS0115',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3015,1,'GYNS0116',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3016,1,'GYNS0117',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3017,1,'GYNS0118',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3018,1,'GYNS0119',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3019,1,'HANS0001',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3020,1,'HANS0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3021,1,'HANS0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3022,1,'HANS0004',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3023,1,'HANS0005',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3024,1,'HANS0006',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3025,1,'HANS0007',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3026,1,'HANS0008',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3027,1,'HANS0009',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3028,1,'HANS0010',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3029,1,'HANS0011',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3030,1,'HANS0012',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3031,1,'HANS0013',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3032,1,'HANS0014',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3033,1,'HANS0015',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3034,1,'HANS0016',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3035,1,'HANS0017',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3036,1,'HANS0018',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3037,1,'HANS0019',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3038,1,'HANS0020',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3039,1,'HANS0021',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3040,1,'HANS0022',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3041,1,'HANS0023',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3042,1,'HANS0025',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3043,1,'HANS0026',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3044,1,'HANS0027',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3045,1,'HANS0028',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3046,1,'HANS0029',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3047,1,'HANS0030',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3048,1,'HANS0031',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3049,1,'HANS0032',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3050,1,'HANS0033',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3051,1,'HANS0034',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3052,1,'HANS0035',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3053,1,'HANS0036',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3054,1,'HANS0037',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3055,1,'HANS0038',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3056,1,'HANS0040',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3057,1,'HANS0041',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3058,1,'HANS0042',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3059,1,'HANS0043',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3060,1,'HANS0044',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3061,1,'HANS0046',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3062,1,'HANS0047',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3102,1,'HPKG0012',0,1499,1499,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3110,1,'LAB0005',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3111,1,'LAB0014',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3112,1,'LAB0022',0,140,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3113,1,'LAB0027',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3114,1,'LAB0041',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3115,1,'LAB0052',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3116,1,'LAB0060',0,3999,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3117,1,'LAB0061',0,1299,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3118,1,'LAB0067',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3119,1,'LAB0073',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3120,1,'LAB0115',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3121,1,'LAB0140',0,1400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3122,1,'LAB0181',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3123,1,'LAB0182',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3124,1,'LAB0183',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3125,1,'LAB0253',0,700,700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3126,1,'LAB0258',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3127,1,'LAB0277',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3128,1,'LAB0297',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3129,1,'LAB0304',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3130,1,'LAB0307',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3131,1,'LAB0322',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3132,1,'LAB0364',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3133,1,'LAB0416',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3134,1,'LAB0446',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3135,1,'LAB0505',0,8000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3136,1,'LAB0508',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3137,1,'LAB0509',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3138,1,'LAB0510',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3139,1,'LAB0511',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3140,1,'LAB0512',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3141,1,'LAB0514',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3142,1,'LAB0517',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3143,1,'LAB0539',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3144,1,'LAB0544',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3145,1,'LAB0545',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3146,1,'LAB0548',0,600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3147,1,'LAB0550',0,5300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3148,1,'LAB0602',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3149,1,'LAB0603',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3150,1,'LAB0604',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3151,1,'LAB0646',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3152,1,'LAB0776',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3153,1,'LAB0789',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3154,1,'LAB0794',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3155,1,'LAB0795',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3156,1,'LAB0806',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3157,1,'LAB0809',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3158,1,'LAB0828',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3159,1,'LAB0846',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3160,1,'LAB0870',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3161,1,'LAB0873',0,29000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3162,1,'LAB0877',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3163,1,'LAB0913',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3164,1,'LAB0919',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3165,1,'LAB0972',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3166,1,'MRI0001',0,5000,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3167,1,'NARC0008',0,40,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3168,1,'NEPP0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3169,1,'NEPP0005',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3170,1,'NEPP0008',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3171,1,'NEPP0013',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3172,1,'NEPP0026',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3173,1,'NEUS0001',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3174,1,'NEUS0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3175,1,'NEUS0005',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3176,1,'NEUS0006',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3177,1,'NEUS0007',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3178,1,'NEUS0008',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3179,1,'NEUS0009',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3180,1,'NEUS0010',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3181,1,'NEUS0011',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3182,1,'NEUS0012',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3183,1,'NEUS0013',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3184,1,'NEUS0014',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3185,1,'NEUS0015',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3186,1,'NEUS0016',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3187,1,'NEUS0017',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3188,1,'NEUS0018',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3189,1,'NEUS0019',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3190,1,'NEUS0020',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3191,1,'NEUS0021',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3192,1,'NEUS0022',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3193,1,'NEUS0023',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3194,1,'NEUS0024',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3195,1,'NEUS0025',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3196,1,'NEUS0027',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3197,1,'NEUS0028',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3198,1,'NEUS0029',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3199,1,'NEUS0030',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3200,1,'NEUS0031',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3201,1,'NEUS0032',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3202,1,'NEUS0034',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3203,1,'NEUS0035',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3204,1,'NEUS0036',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3205,1,'NEUS0037',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3206,1,'NEUS0038',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3207,1,'NEUS0039',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3208,1,'NEUS0040',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3209,1,'NEUS0041',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3210,1,'NEUS0042',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3211,1,'NEUS0043',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3212,1,'NEUS0044',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3213,1,'NEUS0045',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3214,1,'NEUS0046',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3215,1,'NEUS0047',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3216,1,'NEUS0048',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3217,1,'NEUS0049',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3218,1,'NEUS0051',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3219,1,'NEUS0052',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3220,1,'NEUS0053',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3221,1,'NEUS0054',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3222,1,'ONCS0001',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3223,1,'ONCS0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3224,1,'ONCS0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3225,1,'ONCS0004',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3226,1,'ONCS0005',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3227,1,'ONCS0006',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3228,1,'ONCS0007',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3229,1,'ONCS0008',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3230,1,'ONCS0009',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3231,1,'ONCS0010',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3232,1,'ONCS0011',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3233,1,'ONCS0012',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3234,1,'ONCS0013',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3235,1,'ONCS0014',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3236,1,'ONCS0015',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3237,1,'ONCS0016',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3238,1,'ONCS0017',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3239,1,'ONCS0018',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3240,1,'ONCS0019',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3241,1,'ONCS0021',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3242,1,'ONCS0022',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3243,1,'ONCS0023',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3244,1,'ONCS0024',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3245,1,'ONCS0025',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3246,1,'ONCS0026',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3247,1,'ONCS0027',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3248,1,'ONCS0028',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3249,1,'ONCS0030',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3250,1,'ONCS0031',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3251,1,'ONCS0032',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3252,1,'ONCS0033',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3253,1,'ONCS0034',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3254,1,'ONCS0035',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3255,1,'ONCS0036',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3256,1,'ONCS0037',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3257,1,'ONCS0038',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3258,1,'ONCS0039',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3259,1,'ONCS0040',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3260,1,'ONCS0041',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3261,1,'ONCS0042',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3262,1,'ONCS0043',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3263,1,'ONCS0044',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3264,1,'ONCS0047',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3265,1,'ONCS0048',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3266,1,'ONCS0051',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3267,1,'ONCS0052',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3268,1,'ONCS0053',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3269,1,'ONCS0054',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3270,1,'ONCS0055',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3271,1,'ONCS0056',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3272,1,'ONCS0057',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3273,1,'ONCS0058',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3274,1,'ONCS0059',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3275,1,'ONCS0060',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3276,1,'ONCS0061',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3277,1,'ONCS0062',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3278,1,'ONCS0063',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3279,1,'ONCS0064',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3280,1,'ONCS0065',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3281,1,'ONCS0066',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3282,1,'ONCS0067',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3283,1,'ONCS0068',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3284,1,'ONCS0069',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3285,1,'ONCS0070',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3286,1,'ONCS0071',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3287,1,'ONCS0072',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3288,1,'ONCS0074',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3289,1,'ONCS0075',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3290,1,'ONCS0076',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3291,1,'ONCS0077',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3292,1,'ONCS0078',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3293,1,'ONCS0079',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3294,1,'ONCS0080',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3295,1,'ONCS0081',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3296,1,'ONCS0082',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3297,1,'ONCS0083',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3298,1,'ONCS0084',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3299,1,'ONCS0085',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3300,1,'ONCS0086',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3301,1,'ONCS0087',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3302,1,'ONCS0088',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3303,1,'ONCS0089',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3304,1,'ONCS0090',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3305,1,'ONCS0091',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3306,1,'ONCS0092',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3307,1,'ONCS0093',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3308,1,'ONCS0094',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3309,1,'ONCS0095',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3310,1,'ONCS0096',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3311,1,'ONCS0098',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3312,1,'ONCS0099',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3313,1,'ONCS0100',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3314,1,'ONCS0101',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3315,1,'ONCS0102',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3316,1,'ONCS0103',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3317,1,'ONCS0104',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3318,1,'ONCS0105',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3319,1,'ONCS0107',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3320,1,'ONCS0108',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3321,1,'ONCS0109',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3322,1,'ONCS0111',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3323,1,'ONCS0112',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3324,1,'ONCS0113',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3325,1,'ONCS0114',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3326,1,'ONCS0116',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3327,1,'ONCS0117',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3328,1,'ONCS0119',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3329,1,'ONCS0120',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3330,1,'ONCS0121',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3331,1,'ONCS0122',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3332,1,'ONCS0123',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3333,1,'ONCS0124',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3334,1,'OPHP0001',0,25000,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3338,1,'OPHP0005',0,20000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3349,1,'OPTS0001',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3350,1,'OPTS0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3351,1,'OPTS0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3352,1,'OPTS0004',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3353,1,'OPTS0005',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3354,1,'OPTS0006',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3355,1,'OPTS0008',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3356,1,'OPTS0018',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3357,1,'OPTS0020',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3358,1,'OPTS0021',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3359,1,'OPTS0022',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3360,1,'OPTS0024',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3361,1,'OPTS0025',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3362,1,'OPTS0026',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3363,1,'OPTS0027',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3364,1,'OPTS0028',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3365,1,'OPTS0029',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3366,1,'OPTS0030',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3367,1,'OPTS0031',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3368,1,'OPTS0032',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3369,1,'OPTS0034',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3370,1,'OPTS0035',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3371,1,'OPTS0036',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3372,1,'OPTS0037',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3373,1,'OPTS0038',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3374,1,'OPTS0039',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3375,1,'OPTS0043',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3376,1,'OPTS0044',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3377,1,'OPTS0045',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3378,1,'OPTS0046',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3379,1,'OPTS0047',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3380,1,'OPTS0048',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3381,1,'OPTS0049',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3382,1,'OPTS0050',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3383,1,'OPTS0051',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3384,1,'OPTS0052',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3385,1,'OPTS0053',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3386,1,'OPTS0054',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3387,1,'OPWD0004',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3388,1,'OPWD0005',0,10000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3389,1,'ORTP0001',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3390,1,'ORTP0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3391,1,'ORTP0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3392,1,'ORTP0005',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3393,1,'ORTP0009',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3394,1,'ORTP0015',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3395,1,'ORTP0016',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3396,1,'ORTP0030',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3397,1,'ORTP0031',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3398,1,'ORTP0032',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3399,1,'ORTP0033',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3400,1,'ORTP0037',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3401,1,'ORTP0039',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3402,1,'ORTP0040',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3403,1,'ORTP0044',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3404,1,'ORTP0045',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3405,1,'ORTP0046',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3406,1,'ORTP0047',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3407,1,'ORTP0048',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3408,1,'ORTS0001',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3409,1,'ORTS0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3410,1,'ORTS0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3411,1,'ORTS0004',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3412,1,'ORTS0005',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3413,1,'ORTS0006',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3414,1,'ORTS0007',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3415,1,'ORTS0008',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3416,1,'ORTS0009',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3417,1,'ORTS0010',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3418,1,'ORTS0011',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3419,1,'ORTS0012',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3420,1,'ORTS0013',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3421,1,'ORTS0014',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3422,1,'ORTS0015',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3423,1,'ORTS0016',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3424,1,'ORTS0017',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3425,1,'ORTS0018',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3426,1,'ORTS0019',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3427,1,'ORTS0020',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3428,1,'ORTS0021',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3429,1,'ORTS0022',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3430,1,'ORTS0023',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3431,1,'ORTS0024',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3432,1,'ORTS0025',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3433,1,'ORTS0026',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3434,1,'ORTS0027',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3435,1,'ORTS0028',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3436,1,'ORTS0029',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3437,1,'ORTS0030',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3438,1,'ORTS0031',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3439,1,'ORTS0032',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3440,1,'ORTS0033',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3441,1,'ORTS0034',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3442,1,'ORTS0035',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3443,1,'ORTS0036',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3444,1,'ORTS0037',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3445,1,'ORTS0038',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3446,1,'ORTS0039',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3447,1,'ORTS0040',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3448,1,'ORTS0042',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3449,1,'ORTS0043',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3450,1,'ORTS0044',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3451,1,'ORTS0045',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3452,1,'ORTS0046',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3453,1,'ORTS0047',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3454,1,'ORTS0048',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3455,1,'ORTS0049',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3456,1,'ORTS0050',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3457,1,'ORTS0051',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3458,1,'ORTS0052',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3459,1,'ORTS0053',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3460,1,'ORTS0054',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3461,1,'ORTS0055',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3462,1,'ORTS0056',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3463,1,'ORTS0057',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3464,1,'ORTS0058',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3465,1,'ORTS0059',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3466,1,'ORTS0060',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3467,1,'ORTS0061',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3468,1,'ORTS0063',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3469,1,'ORTS0064',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3470,1,'ORTS0065',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3471,1,'ORTS0066',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3472,1,'ORTS0067',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3473,1,'ORTS0069',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3474,1,'ORTS0070',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3475,1,'ORTS0071',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3476,1,'ORTS0072',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3477,1,'ORTS0074',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3478,1,'ORTS0075',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3479,1,'ORTS0076',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3480,1,'ORTS0077',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3481,1,'ORTS0078',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3482,1,'ORTS0079',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3483,1,'ORTS0080',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3484,1,'ORTS0081',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3485,1,'ORTS0082',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3486,1,'ORTS0084',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3487,1,'ORTS0085',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3488,1,'ORTS0086',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3489,1,'ORTS0087',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3490,1,'ORTS0088',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3491,1,'ORTS0089',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3492,1,'ORTS0090',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3493,1,'ORTS0091',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3494,1,'ORTS0092',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3495,1,'ORTS0093',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3496,1,'ORTS0094',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3497,1,'ORTS0095',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3498,1,'ORTS0097',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3499,1,'ORTS0098',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3500,1,'ORTS0099',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3501,1,'ORTS0100',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3502,1,'ORTS0101',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3503,1,'ORTS0104',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3504,1,'ORTS0105',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3505,1,'ORTS0106',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3506,1,'ORTS0107',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3507,1,'ORTS0108',0,0,16500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3508,1,'ORTS0109',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3509,1,'ORTS0110',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3510,1,'ORTS0111',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3511,1,'ORTS0112',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3512,1,'ORTS0113',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3513,1,'ORTS0114',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3514,1,'ORTS0115',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3515,1,'ORTS0116',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3516,1,'ORTS0117',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3517,1,'ORTS0118',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3518,1,'ORTS0119',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3519,1,'ORTS0120',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3520,1,'ORTS0121',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3521,1,'ORTS0123',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3522,1,'ORTS0125',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3523,1,'ORTS0126',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3524,1,'ORTS0127',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3525,1,'ORTS0128',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3526,1,'ORTS0129',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3527,1,'ORTS0130',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3528,1,'ORTS0134',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3529,1,'ORTS0135',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3530,1,'ORTS0139',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3531,1,'ORTS0140',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3532,1,'ORTS0141',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3533,1,'ORTS0142',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3534,1,'ORTS0143',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3535,1,'ORTS0144',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3536,1,'ORTS0145',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3537,1,'ORTS0147',0,7000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3538,1,'ORTS0148',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3539,1,'ORTS0149',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3540,1,'ORTS0150',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3541,1,'ORTS0151',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3542,1,'ORTS0152',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3543,1,'ORTS0153',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3544,1,'ORTS0154',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3545,1,'ORTS0155',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3546,1,'ORTS0156',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3547,1,'ORTS0157',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3548,1,'ORTS0158',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3549,1,'ORTS0159',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3550,1,'ORTS0160',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3551,1,'ORTS0161',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3552,1,'ORTS0162',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3553,1,'ORTS0163',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3554,1,'ORTS0164',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3555,1,'ORTS0165',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3556,1,'ORTS0166',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3557,1,'ORTS0167',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3558,1,'ORTS0168',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3559,1,'ORTS0171',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3560,1,'ORTS0172',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3561,1,'ORTS0173',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3562,1,'ORTS0174',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3563,1,'ORTS0175',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3564,1,'ORTS0176',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3565,1,'ORTS0177',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3566,1,'ORTS0178',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3567,1,'ORTS0179',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3568,1,'ORTS0180',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3569,1,'ORTS0181',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3570,1,'ORTS0182',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3571,1,'ORTS0183',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3572,1,'ORTS0184',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3573,1,'ORTS0185',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3574,1,'ORTS0186',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3575,1,'ORTS0187',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3576,1,'ORTS0188',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3577,1,'ORTS0189',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3578,1,'ORTS0190',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3579,1,'ORTS0192',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3580,1,'ORTS0193',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3581,1,'ORTS0194',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3582,1,'ORTS0195',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3583,1,'ORTS0197',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3584,1,'ORTS0198',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3585,1,'ORTS0199',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3586,1,'ORTS0200',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3587,1,'ORTS0201',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3588,1,'ORTS0202',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3589,1,'ORTS0203',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3590,1,'ORTS0204',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3591,1,'ORTS0206',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3592,1,'ORTS0207',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3593,1,'ORTS0209',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3594,1,'ORTS0210',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3595,1,'ORTS0211',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3596,1,'ORTS0212',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3597,1,'ORTS0213',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3598,1,'ORTS0216',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3599,1,'ORTS0217',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3600,1,'ORTS0218',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3601,1,'ORTS0219',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3602,1,'ORTS0220',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3603,1,'ORTS0221',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3604,1,'ORTS0222',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3605,1,'ORTS0223',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3606,1,'ORTS0224',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3607,1,'ORTS0225',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3608,1,'ORTS0226',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3609,1,'ORTS0228',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3610,1,'ORTS0229',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3611,1,'ORTS0230',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3612,1,'ORTS0232',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3613,1,'ORTS0233',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3614,1,'ORTS0234',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3615,1,'ORTS0235',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3616,1,'ORTS0236',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3617,1,'ORTS0237',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3618,1,'ORTS0238',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3619,1,'ORTS0239',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3620,1,'ORTS0240',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3621,1,'ORTS0241',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3622,1,'ORTS0242',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3623,1,'ORTS0243',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3624,1,'ORTS0244',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3625,1,'ORTS0245',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3626,1,'ORTS0246',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3627,1,'ORTS0247',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3628,1,'ORTS0248',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3629,1,'ORTS0249',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3630,1,'ORTS0250',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3631,1,'ORTS0251',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3632,1,'ORTS0252',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3633,1,'ORTS0253',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3634,1,'ORTS0254',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3635,1,'ORTS0255',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3636,1,'ORTS0256',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3637,1,'ORTS0257',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3638,1,'ORTS0258',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3639,1,'ORTS0261',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3640,1,'ORTS0262',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3641,1,'ORTS0263',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3642,1,'ORTS0264',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3643,1,'ORTS0265',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3644,1,'ORTS0267',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3645,1,'ORTS0268',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3646,1,'ORTS0269',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3647,1,'ORTS0272',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3648,1,'ORTS0273',0,80000,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3649,1,'ORTS0275',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3650,1,'ORTS0276',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3651,1,'ORTS0278',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3652,1,'ORTS0279',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3653,1,'ORTS0280',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3654,1,'ORTS0281',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3655,1,'ORTS0282',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3656,1,'ORTS0283',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3657,1,'ORTS0284',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3658,1,'PEDS0001',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3659,1,'PEDS0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3660,1,'PEDS0006',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3661,1,'PEDS0007',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3662,1,'PEDS0008',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3663,1,'PEDS0010',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3664,1,'PEDS0011',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3665,1,'PEDS0014',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3666,1,'PEDS0015',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3667,1,'PEDS0016',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3668,1,'PEDS0017',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3669,1,'PEDS0018',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3670,1,'PEDS0019',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3671,1,'PEDS0020',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3672,1,'PEDS0021',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3673,1,'PEDS0022',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3674,1,'PEDS0023',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3675,1,'PEDS0024',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3676,1,'PEDS0025',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3677,1,'PEDS0026',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3678,1,'PEDS0027',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3679,1,'PEDS0028',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3680,1,'PEDS0029',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3681,1,'PEDS0030',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3682,1,'PEDS0031',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3683,1,'PEDS0032',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3684,1,'PEDS0034',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3685,1,'PEDS0035',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3686,1,'PEDS0036',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3687,1,'PEDS0037',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3688,1,'PEDS0038',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3689,1,'PEDS0039',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3690,1,'PEDS0040',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3691,1,'PEDS0041',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3692,1,'PEDS0042',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3693,1,'PEDS0045',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3694,1,'PEDS0046',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3695,1,'PEDS0047',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3696,1,'PEDS0048',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3697,1,'PEDS0049',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3698,1,'PEDS0050',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3699,1,'PEDS0051',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3700,1,'PEDS0052',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3701,1,'PEDS0053',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3702,1,'PEDS0054',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3703,1,'PEDS0055',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3704,1,'PEDS0056',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3705,1,'PEDS0057',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3706,1,'PEDS0058',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3707,1,'PEDS0060',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3708,1,'PEDS0061',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3709,1,'PEDS0062',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3710,1,'PEDS0065',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3711,1,'PEDS0066',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3712,1,'PEDS0067',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3713,1,'PEDS0068',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3714,1,'PEDS0069',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3715,1,'PEDS0070',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3716,1,'PEDS0071',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3717,1,'PEDS0072',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3718,1,'PEDS0073',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3719,1,'PEDS0074',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3720,1,'PEDS0075',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3721,1,'PEDS0076',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3722,1,'PEDS0077',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3723,1,'PEDS0079',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3724,1,'PEDS0080',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3725,1,'PHYS0001',0,100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3729,1,'PKG0009',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3874,1,'PLAS0001',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3875,1,'PLAS0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3876,1,'PLAS0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3877,1,'PLAS0004',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3878,1,'PLAS0005',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3879,1,'PLAS0006',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3880,1,'PLAS0007',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3881,1,'PLAS0008',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3882,1,'PLAS0009',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3883,1,'PLAS0010',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3884,1,'PLAS0013',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3885,1,'PLAS0014',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3886,1,'PLAS0015',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3887,1,'PLAS0016',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3888,1,'PLAS0017',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3889,1,'PLAS0018',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3890,1,'PLAS0019',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3891,1,'PLAS0020',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3892,1,'PLAS0021',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3893,1,'PLAS0022',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3894,1,'PLAS0023',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3895,1,'PLAS0024',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3896,1,'PLAS0025',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3897,1,'PLAS0026',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3898,1,'PLAS0027',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3899,1,'PLAS0028',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3900,1,'PLAS0029',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3901,1,'PLAS0030',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3902,1,'PLAS0031',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3903,1,'PLAS0032',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3904,1,'PLAS0033',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3905,1,'PLAS0034',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3906,1,'PLAS0035',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3907,1,'PLAS0036',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3908,1,'PLAS0037',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3909,1,'PLAS0038',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3910,1,'PLAS0039',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3911,1,'PLAS0040',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3912,1,'PLAS0041',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3913,1,'PLAS0042',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3914,1,'PLAS0043',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3915,1,'PLAS0044',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3916,1,'PLAS0045',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3917,1,'PLAS0046',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3918,1,'PLAS0047',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3919,1,'PLAS0048',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3920,1,'PLAS0049',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3921,1,'PLAS0050',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3922,1,'PLAS0051',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3923,1,'PLAS0052',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3924,1,'PLAS0053',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3925,1,'PLAS0054',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3926,1,'PLAS0055',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3927,1,'PLAS0056',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3928,1,'PLAS0057',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3929,1,'PLAS0058',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3930,1,'PLAS0059',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3931,1,'PLAS0060',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3932,1,'PLAS0061',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3933,1,'PLAS0062',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3934,1,'PLAS0064',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3935,1,'PLAS0065',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3936,1,'PLAS0066',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3937,1,'PLAS0069',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3938,1,'PLAS0070',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3939,1,'PLAS0071',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3940,1,'PLAS0072',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3941,1,'PLAS0073',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3942,1,'PLAS0074',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3943,1,'PLAS0075',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3944,1,'PLAS0076',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3945,1,'PLAS0077',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3946,1,'PLAS0078',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3947,1,'PLAS0079',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3948,1,'PLAS0080',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3949,1,'PLAS0081',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3950,1,'PLAS0082',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3951,1,'PLAS0083',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3952,1,'PLAS0084',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3953,1,'PLAS0085',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3954,1,'PLAS0086',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3955,1,'PLAS0087',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3956,1,'PLAS0088',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3957,1,'PLAS0089',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3958,1,'PLAS0090',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3959,1,'PLAS0093',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3960,1,'PLAS0095',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3961,1,'PLAS0096',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3962,1,'PLAS0097',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3963,1,'PLAS0098',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3964,1,'PLAS0099',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3965,1,'PLAS0100',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3966,1,'PLAS0101',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3967,1,'PLAS0102',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3968,1,'PLAS0103',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3969,1,'PLAS0104',0,27200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3970,1,'PLAS0105',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3971,1,'PLAS0108',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3972,1,'PLAS0109',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3973,1,'PLAS0110',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3974,1,'PLAS0111',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3975,1,'PLAS0113',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3976,1,'PLAS0114',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3977,1,'PLAS0115',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3978,1,'PLAS0116',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3979,1,'PLAS0117',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3980,1,'PLAS0118',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3981,1,'PLAS0119',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3982,1,'PLAS0120',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3983,1,'PLAS0123',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3984,1,'PLAS0124',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3985,1,'PLAS0125',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3986,1,'PLAS0126',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3987,1,'PLAS0127',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3988,1,'PLAS0128',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3989,1,'PLAS0129',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3990,1,'PLAS0130',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3991,1,'PLAS0131',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3992,1,'PLAS0132',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3993,1,'PLAS0133',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3994,1,'PLAS0134',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3995,1,'PLAS0135',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3996,1,'PLAS0136',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3997,1,'PLAS0137',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3998,1,'PLAS0138',0,5200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,3999,1,'PLAS0139',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4000,1,'PLAS0140',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4001,1,'PLAS0141',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4002,1,'PLAS0142',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4003,1,'PLAS0143',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4004,1,'PLAS0144',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4005,1,'PLAS0145',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4006,1,'PLAS0146',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4007,1,'PLAS0147',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4008,1,'PLAS0148',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4009,1,'PLAS0149',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4010,1,'PLAS0150',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4011,1,'PLAS0151',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4012,1,'PLAS0152',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4013,1,'PLAS0153',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4014,1,'PLAS0154',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4015,1,'PLAS0155',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4016,1,'PLAS0156',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4017,1,'PTES0001',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4018,1,'PTES0002',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4019,1,'PULM0001',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4020,1,'PULM0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4021,1,'PULM0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4022,1,'PULM0004',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4023,1,'PULM0005',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4024,1,'PULM0006',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4025,1,'PULM0007',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4026,1,'PULM0008',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4027,1,'PULM0009',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4028,1,'PULM0010',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4029,1,'PULM0011',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4030,1,'PULM0012',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4031,1,'PULM0013',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4032,1,'PULM0014',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4033,1,'PULM0015',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4034,1,'PULM0016',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4035,1,'PULM0017',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4036,1,'PULM0018',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4037,1,'PULM0019',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4038,1,'PULM0020',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4039,1,'PULM0021',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4040,1,'PULM0022',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4041,1,'PULP0005',0,7000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4042,1,'SPIS0001',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4043,1,'SPIS0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4044,1,'SPIS0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4045,1,'SPIS0004',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4046,1,'SPIS0005',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4047,1,'SPIS0006',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4048,1,'SPIS0007',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4049,1,'SPIS0008',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4050,1,'SPIS0009',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4051,1,'SPIS0010',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4052,1,'SPIS0011',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4053,1,'SPIS0012',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4054,1,'SPIS0013',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4055,1,'SPIS0014',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4056,1,'SPIS0015',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4057,1,'SPIS0016',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4058,1,'SPIS0017',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4059,1,'SPIS0018',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4060,1,'SPIS0019',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4061,1,'SPIS0020',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4062,1,'SPIS0021',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4063,1,'SPIS0022',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4064,1,'SPIS0023',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4065,1,'SPIS0024',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4066,1,'SPIS0025',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4067,1,'SPIS0026',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4068,1,'SPIS0027',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4069,1,'SPIS0028',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4070,1,'SPIS0029',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4071,1,'SPIS0030',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4072,1,'SPIS0031',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4073,1,'SPIS0032',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4074,1,'SPIS0033',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4075,1,'SPIS0034',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4076,1,'SPIS0035',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4077,1,'SPIS0036',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4078,1,'SPIS0037',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4079,1,'SPIS0038',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4080,1,'SPIS0039',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4081,1,'SPIS0040',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4082,1,'SPIS0041',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4083,1,'SPIS0042',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4084,1,'SPIS0043',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4085,1,'SPIS0044',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4086,1,'SPIS0045',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4087,1,'SPIS0046',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4088,1,'SPIS0047',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4089,1,'SPIS0048',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4090,1,'SPIS0049',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4091,1,'SPIS0050',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4092,1,'SURG0002',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4093,1,'SURG0004',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4094,1,'SURG0006',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4095,1,'SURG0007',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4096,1,'SURG0009',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4097,1,'SURG0011',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4098,1,'SURG0013',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4099,1,'THOS0001',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4100,1,'THOS0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4101,1,'THOS0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4102,1,'THOS0004',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4103,1,'THOS0005',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4104,1,'THOS0006',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4105,1,'THOS0007',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4106,1,'THOS0008',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4107,1,'THOS0009',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4108,1,'THOS0010',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4109,1,'THOS0011',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4110,1,'THOS0012',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4111,1,'THOS0014',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4112,1,'UCTC0002',0,4800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4113,1,'UCTC0011',0,4000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4114,1,'UCTC0014',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4115,1,'UCTC0022',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4116,1,'UCTC0023',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4117,1,'UROP0007',0,26500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4118,1,'UROP0009',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4119,1,'UROS0001',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4120,1,'UROS0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4121,1,'UROS0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4122,1,'UROS0004',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4123,1,'UROS0005',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4124,1,'UROS0006',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4125,1,'UROS0008',0,1100,1100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4126,1,'UROS0009',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4127,1,'UROS0010',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4128,1,'UROS0011',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4129,1,'UROS0013',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4130,1,'UROS0015',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4131,1,'UROS0016',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4132,1,'UROS0017',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4133,1,'UROS0018',0,62040,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4134,1,'UROS0019',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4135,1,'UROS0020',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4136,1,'UROS0021',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4137,1,'UROS0022',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4138,1,'UROS0023',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4139,1,'UROS0024',0,5500,5500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4140,1,'UROS0025',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4141,1,'UROS0026',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4142,1,'UROS0027',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4143,1,'UROS0029',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4144,1,'UROS0030',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4145,1,'UROS0031',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4146,1,'UROS0032',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4147,1,'UROS0034',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4148,1,'UROS0035',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4149,1,'UROS0036',0,0,1925,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4150,1,'UROS0037',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4151,1,'UROS0038',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4152,1,'UROS0039',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4153,1,'UROS0040',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4154,1,'UROS0041',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4155,1,'UROS0042',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4156,1,'UROS0043',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4157,1,'UROS0044',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4158,1,'UROS0045',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4159,1,'UROS0046',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4160,1,'UROS0047',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4161,1,'UROS0048',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4162,1,'UROS0049',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4163,1,'UROS0050',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4164,1,'UROS0052',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4165,1,'UROS0053',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4166,1,'UROS0054',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4167,1,'UROS0056',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4168,1,'UROS0058',0,0,33000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4169,1,'UROS0059',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4170,1,'UROS0060',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4171,1,'UROS0061',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4172,1,'UROS0062',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4173,1,'UROS0063',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4174,1,'UROS0064',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4175,1,'UROS0065',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4176,1,'UROS0066',0,2600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4177,1,'UROS0067',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4178,1,'UROS0068',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4179,1,'UROS0069',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4180,1,'UROS0070',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4181,1,'UROS0071',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4182,1,'UROS0072',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4183,1,'UROS0074',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4184,1,'UROS0075',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4185,1,'UROS0076',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4186,1,'UROS0077',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4187,1,'UROS0078',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4188,1,'UROS0079',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4189,1,'UROS0080',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4190,1,'UROS0081',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4191,1,'UROS0082',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4192,1,'UROS0083',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4193,1,'UROS0084',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4194,1,'UROS0085',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4195,1,'UROS0087',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4196,1,'UROS0088',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4197,1,'UROS0090',0,0,27500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4198,1,'UROS0091',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4199,1,'UROS0092',0,0,41160,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4200,1,'UROS0093',0,0,41160,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4201,1,'UROS0094',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4202,1,'UROS0095',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4203,1,'UROS0096',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4204,1,'UROS0097',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4205,1,'UROS0099',0,38500,38500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4206,1,'USG0001',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4207,1,'USG0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4208,1,'USG0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4209,1,'USG0004',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4210,1,'USG0005',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4211,1,'USG0007',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4212,1,'USG0008',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4213,1,'USG0010',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4214,1,'USG0012',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4215,1,'USG0013',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4216,1,'USG0014',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4217,1,'USG0015',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4218,1,'USG0019',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4219,1,'USG0020',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4220,1,'USG0027',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4221,1,'USG0030',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4222,1,'VACC0010',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4223,1,'VACC0019',0,1800,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4224,1,'VACC0033',0,1350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4225,1,'VASS0001',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4226,1,'VASS0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4227,1,'VASS0003',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4228,1,'VASS0004',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4229,1,'VASS0005',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4230,1,'VASS0007',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4231,1,'VASS0008',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4232,1,'VASS0009',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4233,1,'VASS0010',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4234,1,'VASS0011',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4235,1,'VASS0012',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4236,1,'VASS0013',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4237,1,'VASS0014',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4238,1,'VASS0015',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4239,1,'VASS0016',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4240,1,'VASS0017',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4241,1,'VASS0018',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4242,1,'VASS0019',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4243,1,'VASS0020',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4244,1,'VASS0021',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4245,1,'VASS0022',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4246,1,'VASS0023',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4247,1,'VASS0024',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4248,1,'VASS0025',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4249,1,'VASS0026',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4250,1,'VASS0027',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4251,1,'VASS0028',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4252,1,'VASS0029',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4253,1,'VASS0030',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4254,1,'VASS0032',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4255,1,'VASS0033',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4256,1,'VASS0034',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4257,1,'VASS0035',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4258,1,'VASS0036',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4259,1,'WPRC0002',0,1750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4260,1,'WPRC0003',0,1750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4261,1,'WPRC0004',0,2300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4262,1,'WPRC0005',0,1750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4263,1,'WPRC0006',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4264,1,'WPRC0007',0,2300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4265,1,'WPRC0009',0,1400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4266,1,'WPRC0010',0,250,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4267,1,'WPRC0011',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4268,1,'WPRC0012',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4269,1,'WPRC0013',0,2300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4270,1,'WPRC0014',0,2300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4271,1,'WPRC0015',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4272,1,'WPRC0016',0,1400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4273,1,'WPRC0017',0,3500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4274,1,'WPRC0018',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4275,1,'WPRC0019',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4276,1,'WPRC0020',0,1500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4277,1,'WPRC0021',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4278,1,'WPRC0022',0,2500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4279,1,'WPRC0023',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4280,1,'WPRC0024',0,130,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4281,1,'WPRC0025',0,850,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4282,1,'WPRC0026',0,1750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4283,1,'WPRC0027',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4284,1,'WPRC0028',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4285,1,'WPRC0029',0,100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4286,1,'WPRC0030',0,1300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4287,1,'WPRC0031',0,1750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4288,1,'WPRC0032',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4289,1,'WPRC0033',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4290,1,'WPRC0034',0,2900,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4291,1,'WPRC0035',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4292,1,'WPRC0036',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4293,1,'WPRC0037',0,20,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4294,1,'WPRC0038',0,15000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4295,1,'WPRC0039',0,80,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4296,1,'WPRC0040',0,4600,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4297,1,'WPRC0041',0,3500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4298,1,'WPRC0042',0,50,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4299,1,'WPRC0043',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4300,1,'WPRC0044',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4301,1,'WPRC0045',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4302,1,'WPRC0046',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4303,1,'WPRC0047',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4304,1,'WPRC0048',0,1000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4305,1,'WPRC0049',0,70,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4306,1,'WPRC0050',0,100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4307,1,'WPRC0051',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4308,1,'WPRC0052',0,750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4309,1,'WPRC0053',0,350,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4310,1,'WPRC0054',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4311,1,'WPRC0055',0,1700,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4312,1,'WPRC0056',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4313,1,'WPRC0057',0,100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4314,1,'WPRC0058',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4315,1,'WPRC0059',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4316,1,'WPRC0060',0,60,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4317,1,'WPRC0061',0,1750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4318,1,'WPRC0062',0,1200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4319,1,'WPRC0063',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4320,1,'WPRC0064',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4321,1,'WPRC0065',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4322,1,'WPRC0066',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4323,1,'WPRC0067',0,500,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4324,1,'WPRC0068',0,2200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4325,1,'WPRC0069',0,50,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4326,1,'WPRC0070',0,3000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4327,1,'WPRC0071',0,6000,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4328,1,'WPRC0072',0,1750,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4329,1,'WPRC0073',0,50,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4330,1,'WPRC0074',0,50,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4331,1,'WPRC0075',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4332,1,'WPRC0076',0,100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4333,1,'XRY0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4334,1,'XRY0045',1,600,600,0.00,'Y','Y','shweta','2025-10-13 09:43:18','thims','2024-04-01 13:18:00','shweta','2025-10-13 09:43:18'),(0,0,4335,1,'XRY0095',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4336,1,'XRY0106',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4337,1,'XRY0179',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4338,1,'XRY0186',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4339,1,'XRY0187',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4340,1,'XRY0188',0,200,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4341,1,'XRY0239',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4342,1,'XRY0398',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4343,1,'XRY0399',0,400,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4344,1,'XRY0446',0,0,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,4345,1,'XRYP0013',0,1100,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,5001,2,'BMPM0001',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5002,2,'BMPM0002',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5003,2,'BMPM0003',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5004,2,'BMPM0004',0,0,100000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5005,2,'BMPM0005',0,0,100000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5006,2,'BMPM0006',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5007,2,'BMPM0007',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5008,2,'BMPM0008',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5009,2,'BMPM0009',0,0,100000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5010,2,'BMPM0010',0,0,100000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5011,2,'BMPM0011',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5012,2,'BMPM0012',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5013,2,'BMPM0013',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5014,2,'BMPM0014',0,0,100000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5015,2,'BMPM0015',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5016,2,'BMPM0016',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5017,2,'BMPM0017',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5018,2,'BMPM0018',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5019,2,'BMPM0019',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5020,2,'BMPM0020',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5021,2,'BMPM0021',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5022,2,'BMPM0022',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5023,2,'BMPM0023',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5024,2,'ERPM0001',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5025,2,'ERPM0002',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5026,2,'ERPM0003',0,0,11000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5027,2,'ERPM0004',0,0,1700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5028,2,'ERPM0005',0,0,2300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5029,2,'ERPM0006',0,0,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5030,2,'HDPM0001',0,0,10920,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5031,2,'HDPM0002',0,0,5520,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5032,2,'HDPM0003',0,0,16560,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5033,2,'HDPM0004',0,0,5520,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5034,2,'HDPM0005',0,0,2520,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5035,2,'HDPM0006',0,0,720,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5036,2,'HDPM0007',0,0,720,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5037,2,'HDPM0008',0,0,3720,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5038,2,'HDPM0009',0,0,3120,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5039,2,'HDPM0010',0,0,3120,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5040,2,'HDPM0011',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5041,2,'HDPM0012',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5042,2,'HDPM0013',0,0,3600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5043,2,'HMPM0001',0,0,42000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5044,2,'HMPM0002',0,0,24900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5045,2,'HMPM0003',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5046,2,'HMPM0004',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5047,2,'HMPM0005',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5048,2,'HMPM0006',0,0,125000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5049,2,'HMPM0007',0,0,200000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5050,2,'HMPM0008',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5051,2,'HMPM0009',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5052,2,'HMPM0010',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5053,2,'HMPM0011',0,0,7500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5054,2,'HMPM0012',0,0,6000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5055,2,'HMPM0013',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5056,2,'HMPM0014',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5057,2,'HMPM0015',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5058,2,'HMPM0016',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5059,2,'HMPM0017',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5060,2,'HMPM0018',0,0,2100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5061,2,'HMPM0019',0,0,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5062,2,'HPPM0001',0,0,26640,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5063,2,'HPPM0002',0,0,30640,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5064,2,'HPPM0003',0,0,29040,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5065,2,'HPPM0004',0,0,33040,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5066,2,'HPPM0005',0,0,5820,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5067,2,'HPPM0006',0,0,5820,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5068,2,'HPPM0007',0,0,5800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5069,2,'HPPM0008',0,0,18900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5070,2,'HPPM0009',0,0,18900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5071,2,'HPPM0010',0,0,70000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5072,2,'IDPM0001',0,0,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5073,2,'IDPM0002',0,0,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5074,2,'IDPM0003',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5075,2,'IDPM0004',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5076,2,'IDPM0005',0,0,400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5077,2,'IDPM0006',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5078,2,'IDPM0007',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5079,2,'INPM0001',0,0,187500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5080,2,'INPM0002',0,0,93800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5081,2,'INPM0003',0,0,150000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5082,2,'INPM0004',0,0,150000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5083,2,'INPM0005',0,0,200000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5084,2,'INPM0006',0,0,100000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5085,2,'INPM0007',0,0,200000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5086,2,'INPM0008',0,0,87500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5087,2,'INPM0009',0,0,64000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5088,2,'INPM0010',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5089,2,'INPM0011',0,0,50700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5090,2,'INPM0012',0,0,35500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5091,2,'INPM0013',0,0,15200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5092,2,'INPM0014',0,0,17400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5093,2,'INPM0015',0,0,14600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5094,2,'INPM0016',0,0,16700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5095,2,'INPM0017',0,0,8900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5096,2,'INPM0018',0,0,24000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5097,2,'INPM0019',0,0,14600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5098,2,'INPM0020',0,0,11000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5099,2,'INPM0021',0,0,22100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5100,2,'INPM0022',0,0,24000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5101,2,'INPM0023',0,0,24200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5102,2,'INPM0024',0,0,24000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5103,2,'INPM0025',0,0,16600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5104,2,'INPM0026',0,0,11000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5105,2,'INPM0027',0,0,21300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5106,2,'INPM0028',0,0,15800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5107,2,'INPM0029',0,0,38000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5108,2,'INPM0030',0,0,25200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5109,2,'INPM0031',0,0,40500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5110,2,'INPM0032',0,0,14600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5111,2,'INPM0033',0,0,29400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5112,2,'INPM0034',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5113,2,'INPM0035',0,0,38000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5114,2,'INPM0036',0,0,29400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5115,2,'INPM0037',0,0,49100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5116,2,'INPM0038',0,0,35900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5117,2,'INPM0039',0,0,55700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5118,2,'INPM0040',0,0,48200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5119,2,'INPM0041',0,0,76100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5120,2,'INPM0042',0,0,62700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5121,2,'INPM0043',0,0,44100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5122,2,'INPM0044',0,0,54600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5123,2,'INPM0045',0,0,25100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5124,2,'INPM0046',0,0,62800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5125,2,'INPM0047',0,0,44300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5126,2,'INPM0048',0,0,58300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5127,2,'INPM0049',0,0,56400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5128,2,'INPM0050',0,0,66600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5129,2,'INPM0051',0,0,66500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5130,2,'INPM0052',0,0,297600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5131,2,'INPM0053',0,0,207800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5132,2,'INPM0054',0,0,37300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5133,2,'INPM0055',0,0,83800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5134,2,'INPM0056',0,0,27300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5135,2,'INPM0057',0,0,19400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5136,2,'INPM0058',0,0,36200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5137,2,'INPM0059',0,0,14400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5138,2,'INPM0060',0,0,16900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5139,2,'INPM0061',0,0,6900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5140,2,'INPM0062',0,0,18900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5141,2,'INPM0063',0,0,6900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5142,2,'INPM0064',0,0,18900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5143,2,'INPM0065',0,0,18900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5144,2,'INPM0066',0,0,6900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5145,2,'INPM0067',0,0,16900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5146,2,'INPM0068',0,0,6900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5147,2,'INPM0069',0,0,31800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5148,2,'INPM0070',0,0,39800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5149,2,'INPM0071',0,0,291000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5150,2,'INPM0072',0,0,310300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5151,2,'INPM0073',0,0,393200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5152,2,'INPM0074',0,0,137300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5153,2,'INPM0075',0,0,270400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5154,2,'INPM0076',0,0,321700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5155,2,'INPM0077',0,0,153400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5156,2,'INPM0078',0,0,345400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5157,2,'INPM0079',0,0,221400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5158,2,'INPM0080',0,0,432300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5159,2,'INPM0081',0,0,474300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5160,2,'INPM0082',0,0,120400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5161,2,'INPM0083',0,0,130400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5162,2,'INPM0084',0,0,156700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5163,2,'INPM0085',0,0,125000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5164,2,'INPM0086',0,0,176700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5165,2,'INPM0087',0,0,364300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5166,2,'INPM0088',0,0,132900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5167,2,'INPM0089',0,0,207900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5168,2,'INPM0090',0,0,80900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5169,2,'INPM0091',0,0,90200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5170,2,'INPM0092',0,0,22100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5171,2,'INPM0093',0,0,9200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5172,2,'INPM0094',0,0,23900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5173,2,'INPM0095',0,0,17600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5174,2,'INPM0096',0,0,7900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5175,2,'INPM0097',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5176,2,'INPM0098',0,0,51500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5177,2,'INPM0099',0,0,94700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5178,2,'INPM0100',0,0,51000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5179,2,'INPM0101',0,0,57600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5180,2,'INPM0102',0,0,33400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5181,2,'INPM0103',0,0,11400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5182,2,'INPM0104',0,0,14400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5183,2,'INPM0105',0,0,27600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5184,2,'INPM0106',0,0,39700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5185,2,'INPM0107',0,0,10700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5186,2,'INPM0108',0,0,36800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5187,2,'INPM0109',0,0,8700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5188,2,'INPM0110',0,0,15400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5189,2,'INPM0111',0,0,11400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5190,2,'INPM0112',0,0,22700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5191,2,'INPM0113',0,0,40600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5192,2,'INPM0114',0,0,134200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5193,2,'INPM0115',0,0,134200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5194,2,'INPM0116',0,0,134200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5195,2,'INPM0117',0,0,90100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5196,2,'INPM0118',0,0,38500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5197,2,'INPM0119',0,0,38500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5198,2,'INPM0120',0,0,38500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5199,2,'INPM0121',0,0,4100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5200,2,'INPM0122',0,0,1200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5201,2,'INPM0123',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5202,2,'INPM0124',0,0,200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5203,2,'INPM0125',0,0,200000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5204,2,'INPM0126',0,0,109627,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5205,2,'INPM0127',0,0,200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5206,2,'INPM0128',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5207,2,'INPM0129',0,0,900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5208,2,'INPM0130',0,0,110000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5209,2,'INPM0131',0,0,200000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5210,2,'INPM0132',0,0,110000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5211,2,'INPM0133',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5212,2,'INPM0134',0,0,120000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5213,2,'INPM0135',0,0,15700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5214,2,'INPM0136',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5215,2,'JRPM0001',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5216,2,'MCPM0001',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5217,2,'MCPM0002',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5218,2,'MCPM0003',0,0,38500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5219,2,'MCPM0004',0,0,38500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5220,2,'MCPM0005',0,0,38500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5221,2,'MCPM0006',0,0,48300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5222,2,'MCPM0007',0,0,48300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5223,2,'MCPM0008',0,0,29300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5224,2,'MCPM0009',0,0,29300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5225,2,'MCPM0010',0,0,44700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5226,2,'MCPM0011',0,0,30500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5227,2,'MCPM0012',0,0,46200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5228,2,'MCPM0013',0,0,47400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5229,2,'MCPM0014',0,0,40800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5230,2,'MCPM0015',0,0,50400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5231,2,'MCPM0016',0,0,50800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5232,2,'MCPM0017',0,0,34700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5233,2,'MCPM0018',0,0,34700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5234,2,'MCPM0019',0,0,42500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5235,2,'MCPM0020',0,0,24000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5236,2,'MCPM0021',0,0,30700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5237,2,'MCPM0022',0,0,41300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5238,2,'MCPM0023',0,0,43200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5239,2,'MCPM0024',0,0,41000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5240,2,'MCPM0025',0,0,15200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5241,2,'MCPM0026',0,0,22400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5242,2,'MCPM0027',0,0,50800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5243,2,'MCPM0028',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5244,2,'MCPM0029',0,0,4400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5245,2,'MCPM0030',0,0,2200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5246,2,'MCPM0031',0,0,2200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5247,2,'MCPM0032',0,0,2200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5248,2,'MCPM0033',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5249,2,'MCPM0034',0,0,55000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5250,2,'MCPM0035',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5251,2,'MCPM0036',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5252,2,'MCPM0037',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5253,2,'MCPM0038',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5254,2,'MCPM0039',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5255,2,'MCPM0040',0,0,27313,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5256,2,'MCPM0041',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5257,2,'MCPM0042',0,0,4025,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5258,2,'MCPM0043',0,0,3335,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5259,2,'MCPM0044',0,0,4025,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5260,2,'MCPM0045',0,0,4025,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5261,2,'MCPM0046',0,0,4025,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5262,2,'MCPM0047',0,0,4025,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5263,2,'MCPM0048',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5264,2,'MCPM0049',0,0,4600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5265,2,'MCPM0050',0,0,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5266,2,'MCPM0051',0,0,92000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5267,2,'MCPM0052',0,0,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5268,2,'MCPM0053',0,0,80500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5269,2,'MCPM0054',0,0,290000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5270,2,'MCPM0055',0,0,310000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5271,2,'MCPM0056',0,0,412000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5272,2,'MCPM0057',0,0,597000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5273,2,'MCPM0058',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5274,2,'MCPM0059',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5275,2,'MCPM0060',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5276,2,'MCPM0061',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5277,2,'MCPM0062',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5278,2,'MCPM0063',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5279,2,'MCPM0064',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5280,2,'MCPM0065',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5281,2,'MGPM0219',0,0,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5282,2,'MGPM0220',0,0,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5283,2,'MGPM0001',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5284,2,'MGPM0002',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5285,2,'MGPM0003',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5286,2,'MGPM0004',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5287,2,'MGPM0005',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5288,2,'MGPM0006',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5289,2,'MGPM0007',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5290,2,'MGPM0008',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5291,2,'MGPM0009',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5292,2,'MGPM0010',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5293,2,'MGPM0011',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5294,2,'MGPM0012',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5295,2,'MGPM0013',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5296,2,'MGPM0014',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5297,2,'MGPM0015',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5298,2,'MGPM0016',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5299,2,'MGPM0017',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5300,2,'MGPM0018',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5301,2,'MGPM0019',0,0,4100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5302,2,'MGPM0020',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5303,2,'MGPM0021',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5304,2,'MGPM0022',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5305,2,'MGPM0023',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5306,2,'MGPM0024',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5307,2,'MGPM0025',0,0,136000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5308,2,'MGPM0026',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5309,2,'MGPM0027',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5310,2,'MGPM0028',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5311,2,'MGPM0029',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5312,2,'MGPM0030',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5313,2,'MGPM0031',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5314,2,'MGPM0032',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5315,2,'MGPM0033',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5316,2,'MGPM0034',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5317,2,'MGPM0035',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5318,2,'MGPM0036',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5319,2,'MGPM0037',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5320,2,'MGPM0038',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5321,2,'MGPM0039',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5322,2,'MGPM0040',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5323,2,'MGPM0041',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5324,2,'MGPM0042',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5325,2,'MGPM0043',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5326,2,'MGPM0044',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5327,2,'MGPM0045',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5328,2,'MGPM0046',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5329,2,'MGPM0047',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5330,2,'MGPM0048',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5331,2,'MGPM0049',0,0,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5332,2,'MGPM0050',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5333,2,'MGPM0051',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5334,2,'MGPM0052',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5335,2,'MGPM0053',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5336,2,'MGPM0054',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5337,2,'MGPM0055',0,0,3200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5338,2,'MGPM0056',0,0,2600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5339,2,'MGPM0057',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5340,2,'MGPM0058',0,0,2900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5341,2,'MGPM0059',0,0,2300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5342,2,'MGPM0060',0,0,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5343,2,'MGPM0061',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5344,2,'MGPM0062',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5345,2,'MGPM0063',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5346,2,'MGPM0064',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5347,2,'MGPM0065',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5348,2,'MGPM0066',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5349,2,'MGPM0067',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5350,2,'MGPM0068',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5351,2,'MGPM0069',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5352,2,'MGPM0070',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5353,2,'MGPM0071',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5354,2,'MGPM0072',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5355,2,'MGPM0073',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5356,2,'MGPM0074',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5357,2,'MGPM0075',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5358,2,'MGPM0076',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5359,2,'MGPM0077',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5360,2,'MGPM0078',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5361,2,'MGPM0079',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5362,2,'MGPM0080',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5363,2,'MGPM0081',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5364,2,'MGPM0082',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5365,2,'MGPM0083',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5366,2,'MGPM0084',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5367,2,'MGPM0085',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5368,2,'MGPM0086',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5369,2,'MGPM0087',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5370,2,'MGPM0088',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5371,2,'MGPM0089',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5372,2,'MGPM0090',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5373,2,'MGPM0091',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5374,2,'MGPM0092',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5375,2,'MGPM0093',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5376,2,'MGPM0094',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5377,2,'MGPM0095',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5378,2,'MGPM0096',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5379,2,'MGPM0097',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5380,2,'MGPM0098',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5381,2,'MGPM0099',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5382,2,'MGPM0100',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5383,2,'MGPM0101',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5384,2,'MGPM0102',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5385,2,'MGPM0103',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5386,2,'MGPM0104',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5387,2,'MGPM0105',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5388,2,'MGPM0106',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5389,2,'MGPM0107',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5390,2,'MGPM0108',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5391,2,'MGPM0109',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5392,2,'MGPM0110',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5393,2,'MGPM0111',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5394,2,'MGPM0112',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5395,2,'MGPM0113',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5396,2,'MGPM0114',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5397,2,'MGPM0115',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5398,2,'MGPM0116',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5399,2,'MGPM0117',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5400,2,'MGPM0118',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5401,2,'MGPM0119',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5402,2,'MGPM0120',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5403,2,'MGPM0121',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5404,2,'MGPM0122',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5405,2,'MGPM0123',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5406,2,'MGPM0124',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5407,2,'MGPM0125',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5408,2,'MGPM0126',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5409,2,'MGPM0127',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5410,2,'MGPM0128',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5411,2,'MGPM0129',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5412,2,'MGPM0130',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5413,2,'MGPM0131',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5414,2,'MGPM0132',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5415,2,'MGPM0133',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5416,2,'MGPM0134',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5417,2,'MGPM0135',0,0,700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5418,2,'MGPM0136',0,0,2200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5419,2,'MGPM0137',0,0,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5420,2,'MGPM0138',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5421,2,'MGPM0139',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5422,2,'MGPM0140',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5423,2,'MGPM0141',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5424,2,'MGPM0142',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5425,2,'MGPM0143',0,0,33000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5426,2,'MGPM0144',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5427,2,'MGPM0145',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5428,2,'MGPM0146',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5429,2,'MGPM0147',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5430,2,'MGPM0148',0,0,1200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5431,2,'MGPM0149',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5432,2,'MGPM0150',0,0,200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5433,2,'MGPM0151',0,0,200000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5434,2,'MGPM0152',0,0,109627,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5435,2,'MGPM0153',0,0,200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5436,2,'MGPM0154',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5437,2,'MGPM0155',0,0,900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5438,2,'MGPM0156',0,0,110000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5439,2,'MGPM0157',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5440,2,'MGPM0158',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5441,2,'MGPM0159',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5442,2,'MGPM0160',0,0,200000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5443,2,'MGPM0161',0,0,110000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5444,2,'MGPM0162',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5445,2,'MGPM0163',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5446,2,'MGPM0164',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5447,2,'MGPM0165',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5448,2,'MGPM0166',0,0,120000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5449,2,'MGPM0167',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5450,2,'MGPM0168',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5451,2,'MGPM0169',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5452,2,'MGPM0170',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5453,2,'MGPM0171',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5454,2,'MGPM0172',0,0,6440,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5455,2,'MGPM0173',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5456,2,'MGPM0174',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5457,2,'MGPM0175',0,0,8280,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5458,2,'MGPM0176',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5459,2,'MGPM0177',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5460,2,'MGPM0178',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5461,2,'MGPM0179',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5462,2,'MGPM0180',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5463,2,'MGPM0181',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5464,2,'MGPM0182',0,0,15700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5465,2,'MGPM0183',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5466,2,'MGPM0184',0,0,11000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5467,2,'MGPM0185',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5468,2,'MGPM0186',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5469,2,'MGPM0187',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5470,2,'MGPM0188',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5471,2,'MGPM0189',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5472,2,'MGPM0190',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5473,2,'MGPM0191',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5474,2,'MGPM0192',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5475,2,'MGPM0193',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5476,2,'MGPM0194',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5477,2,'MGPM0195',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5478,2,'MGPM0196',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5479,2,'MGPM0197',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5480,2,'MGPM0198',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5481,2,'MGPM0199',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5482,2,'MGPM0200',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5483,2,'MGPM0201',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5484,2,'MGPM0202',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5485,2,'MGPM0203',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5486,2,'MGPM0204',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5487,2,'MGPM0205',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5488,2,'MGPM0206',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5489,2,'MGPM0207',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5490,2,'MGPM0208',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5491,2,'MGPM0209',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5492,2,'MGPM0210',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5493,2,'MGPM0211',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5494,2,'MGPM0212',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5495,2,'MGPM0213',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5496,2,'MGPM0214',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5497,2,'MGPM0215',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5498,2,'MGPM0216',0,0,800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5499,2,'MGPM0217',0,0,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5500,2,'MGPM0218',0,0,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5501,2,'MMPM0001',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5502,2,'MMPM0002',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5503,2,'MMPM0003',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5504,2,'MMPM0004',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5505,2,'MMPM0005',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5506,2,'MMPM0006',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5507,2,'MMPM0007',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5508,2,'MMPM0008',0,0,6600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5509,2,'MMPM0009',0,0,3300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5510,2,'MMPM0010',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5511,2,'MMPM0011',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5512,2,'MMPM0012',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5513,2,'MMPM0013',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5514,2,'MMPM0014',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5515,2,'MMPM0015',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5516,2,'MMPM0016',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5517,2,'MMPM0017',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5518,2,'MMPM0018',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5519,2,'MMPM0019',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5520,2,'MMPM0020',0,0,3300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5521,2,'MMPM0021',0,0,2200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5522,2,'MMPM0022',0,0,2800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5523,2,'MNPM0001',0,0,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5524,2,'MNPM0002',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5525,2,'MNPM0003',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5526,2,'MNPM0004',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5527,2,'MNPM0005',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5528,2,'MNPM0006',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5529,2,'MNPM0007',0,0,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5530,2,'MNPM0008',0,0,1900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5531,2,'MNPM0009',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5532,2,'MNPM0010',0,0,6300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5533,2,'MNPM0011',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5534,2,'MNPM0012',0,0,550,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5535,2,'MNPM0013',0,0,1650,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5536,2,'MOPM0001',0,0,8100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5537,2,'MOPM0002',0,0,6600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5538,2,'MOPM0003',0,0,6600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5539,2,'MOPM0004',0,0,3900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5540,2,'MOPM0005',0,0,10200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5541,2,'MOPM0006',0,0,23400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5542,2,'MOPM0007',0,0,1400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5543,2,'MOPM0008',0,0,4300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5544,2,'MOPM0009',0,0,16400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5545,2,'MOPM0010',0,0,8200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5546,2,'MOPM0011',0,0,15300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5547,2,'MOPM0012',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5548,2,'MOPM0013',0,0,13200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5549,2,'MOPM0014',0,0,13000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5550,2,'MOPM0015',0,0,4300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5551,2,'MOPM0016',0,0,16600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5552,2,'MOPM0017',0,0,3900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5553,2,'MOPM0018',0,0,14400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5554,2,'MOPM0019',0,0,19000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5555,2,'MOPM0020',0,0,3800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5556,2,'MOPM0021',0,0,12100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5557,2,'MOPM0022',0,0,19800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5558,2,'MOPM0023',0,0,15300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5559,2,'MOPM0024',0,0,16400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5560,2,'MOPM0025',0,0,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5561,2,'MOPM0026',0,0,3100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5562,2,'MOPM0027',0,0,1400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5563,2,'MOPM0028',0,0,4300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5564,2,'MOPM0029',0,0,7700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5565,2,'MOPM0030',0,0,4600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5566,2,'MOPM0031',0,0,8100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5567,2,'MOPM0032',0,0,13600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5568,2,'MOPM0033',0,0,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5569,2,'MOPM0034',0,0,19300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5570,2,'MOPM0035',0,0,19300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5571,2,'MOPM0036',0,0,26900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5572,2,'MOPM0037',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5573,2,'MOPM0038',0,0,13300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5574,2,'MOPM0039',0,0,14100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5575,2,'MOPM0040',0,0,1400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5576,2,'MOPM0041',0,0,7700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5577,2,'MOPM0042',0,0,16400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5578,2,'MOPM0043',0,0,2600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5579,2,'MOPM0044',0,0,16400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5580,2,'MOPM0045',0,0,4900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5581,2,'MOPM0046',0,0,19000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5582,2,'MOPM0047',0,0,15300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5583,2,'MOPM0048',0,0,4300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5584,2,'MOPM0049',0,0,9100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5585,2,'MOPM0050',0,0,2600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5586,2,'MOPM0051',0,0,16000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5587,2,'MOPM0052',0,0,25500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5588,2,'MOPM0053',0,0,10900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5589,2,'MOPM0054',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5590,2,'MOPM0055',0,0,13200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5591,2,'MOPM0056',0,0,29700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5592,2,'MOPM0057',0,0,32600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5593,2,'MOPM0058',0,0,31500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5594,2,'MOPM0059',0,0,26400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5595,2,'MOPM0060',0,0,15100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5596,2,'MOPM0061',0,0,4400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5597,2,'MOPM0062',0,0,7900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5598,2,'MOPM0063',0,0,5500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5599,2,'MOPM0064',0,0,5500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5600,2,'MOPM0065',0,0,12100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5601,2,'MOPM0066',0,0,18600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5602,2,'MOPM0067',0,0,9000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5603,2,'MOPM0068',0,0,16400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5604,2,'MOPM0069',0,0,14700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5605,2,'MOPM0070',0,0,6100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5606,2,'MOPM0071',0,0,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5607,2,'MOPM0072',0,0,15100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5608,2,'MOPM0073',0,0,10600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5609,2,'MOPM0074',0,0,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5610,2,'MOPM0075',0,0,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5611,2,'MOPM0076',0,0,8100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5612,2,'MOPM0077',0,0,5750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5613,2,'MOPM0078',0,0,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5614,2,'MOPM0079',0,0,16400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5615,2,'MOPM0080',0,0,10700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5616,2,'MOPM0081',0,0,15600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5617,2,'MOPM0082',0,0,29900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5618,2,'MOPM0083',0,0,29900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5619,2,'MOPM0084',0,0,15300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5620,2,'MOPM0085',0,0,12100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5621,2,'MOPM0086',0,0,10400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5622,2,'MOPM0087',0,0,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5623,2,'MOPM0088',0,0,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5624,2,'MOPM0089',0,0,16000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5625,2,'MOPM0090',0,0,16000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5626,2,'MOPM0091',0,0,20400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5627,2,'MOPM0092',0,0,20400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5628,2,'MOPM0093',0,0,10600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5629,2,'MOPM0094',0,0,15100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5630,2,'MOPM0095',0,0,6600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5631,2,'MOPM0096',0,0,24800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5632,2,'MOPM0097',0,0,9900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5633,2,'MOPM0098',0,0,18700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5634,2,'MOPM0099',0,0,31300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5635,2,'MOPM0100',0,0,9900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5636,2,'MOPM0101',0,0,4400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5637,2,'MOPM0102',0,0,20800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5638,2,'MOPM0103',0,0,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5639,2,'MOPM0104',0,0,37600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5640,2,'MOPM0105',0,0,8100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5641,2,'MOPM0106',0,0,13400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5642,2,'MOPM0107',0,0,10600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5643,2,'MOPM0108',0,0,4400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5644,2,'MOPM0109',0,0,9900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5645,2,'MOPM0110',0,0,19200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5646,2,'MOPM0111',0,0,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5647,2,'MOPM0112',0,0,15100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5648,2,'MOPM0113',0,0,16500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5649,2,'MOPM0114',0,0,11000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5650,2,'MOPM0115',0,0,5500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5651,2,'MOPM0116',0,0,33000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5652,2,'MOPM0117',0,0,17480,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5653,2,'MOPM0118',0,0,13400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5654,2,'MOPM0119',0,0,10400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5655,2,'MOPM0120',0,0,11200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5656,2,'MOPM0121',0,0,7800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5657,2,'MOPM0122',0,0,6500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5658,2,'MOPM0123',0,0,13700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5659,2,'MOPM0124',0,0,10800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5660,2,'MOPM0125',0,0,15300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5661,2,'MOPM0126',0,0,16000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5662,2,'MOPM0127',0,0,3600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5663,2,'MOPM0128',0,0,9400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5664,2,'MOPM0129',0,0,8500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5665,2,'MOPM0130',0,0,4600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5666,2,'MOPM0131',0,0,10200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5667,2,'MOPM0132',0,0,9900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5668,2,'MOPM0133',0,0,13400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5669,2,'MOPM0134',0,0,8500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5670,2,'MOPM0135',0,0,16000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5671,2,'MOPM0136',0,0,6600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5672,2,'MOPM0137',0,0,13000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5673,2,'MOPM0138',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5674,2,'MOPM0139',0,0,2600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5675,2,'MOPM0140',0,0,11000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5676,2,'MOPM0141',0,0,14300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5677,2,'MOPM0142',0,0,7500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5678,2,'MOPM0143',0,0,15300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5679,2,'MOPM0144',0,0,13400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5680,2,'MOPM0145',0,0,9000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5681,2,'MOPM0146',0,0,14700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5682,2,'MOPM0147',0,0,9400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5683,2,'MOPM0148',0,0,17100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5684,2,'MOPM0149',0,0,9900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5685,2,'MOPM0150',0,0,8300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5686,2,'MOPM0151',0,0,16000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5687,2,'MOPM0152',0,0,7100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5688,2,'MOPM0153',0,0,14700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5689,2,'MOPM0154',0,0,9000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5690,2,'MOPM0155',0,0,8100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5691,2,'MOPM0156',0,0,16000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5692,2,'MOPM0157',0,0,6600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5693,2,'MOPM0158',0,0,13000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5694,2,'MOPM0159',0,0,8500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5695,2,'MOPM0160',0,0,8800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5696,2,'MOPM0161',0,0,9400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5697,2,'MOPM0162',0,0,8500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5698,2,'MOPM0163',0,0,16900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5699,2,'MOPM0164',0,0,4700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5700,2,'MOPM0165',0,0,8500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5701,2,'MOPM0166',0,0,16000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5702,2,'MOPM0167',0,0,18400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5703,2,'MOPM0168',0,0,3600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5704,2,'MOPM0169',0,0,14300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5705,2,'MOPM0170',0,0,28900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5706,2,'MOPM0171',0,0,29700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5707,2,'MOPM0172',0,0,38400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5708,2,'MOPM0173',0,0,38900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5709,2,'MOPM0174',0,0,35100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5710,2,'MOPM0175',0,0,34900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5711,2,'MOPM0176',0,0,38000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5712,2,'MOPM0177',0,0,27500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5713,2,'MOPM0178',0,0,24800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5714,2,'MOPM0179',0,0,17600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5715,2,'MOPM0180',0,0,19300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5716,2,'MOPM0181',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5717,2,'MOPM0182',0,0,18900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5718,2,'MOPM0183',0,0,44800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5719,2,'MOPM0184',0,0,5300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5720,2,'MOPM0185',0,0,16387,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5721,2,'MOPM0186',0,0,5463,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5722,2,'MOPM0187',0,0,5463,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5723,2,'MOPM0188',0,0,5463,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5724,2,'MOPM0189',0,0,5800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5725,2,'MOPM0190',0,0,5700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5726,2,'MOPM0191',0,0,21700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5727,2,'MOPM0192',0,0,21300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5728,2,'MOPM0193',0,0,8800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5729,2,'MOPM0194',0,0,4300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5730,2,'MOPM0195',0,0,11300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5731,2,'MOPM0196',0,0,11300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5732,2,'MOPM0197',0,0,11600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5733,2,'MOPM0198',0,0,11600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5734,2,'MOPM0199',0,0,16300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5735,2,'MOPM0200',0,0,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5736,2,'MOPM0201',0,0,5800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5737,2,'MOPM0202',0,0,7900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5738,2,'MOPM0203',0,0,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5739,2,'MOPM0204',0,0,4600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5740,2,'MOPM0205',0,0,16100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5741,2,'MOPM0206',0,0,14700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5742,2,'MOPM0207',0,0,13900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5743,2,'MOPM0208',0,0,19600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5744,2,'MOPM0209',0,0,16500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5745,2,'MOPM0210',0,0,16500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5746,2,'MOPM0211',0,0,5500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5747,2,'MOPM0212',0,0,4600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5748,2,'MOPM0213',0,0,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5749,2,'MOPM0214',0,0,78400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5750,2,'MOPM0215',0,0,116200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5751,2,'MOPM0216',0,0,176000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5752,2,'MOPM0217',0,0,136200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5753,2,'MOPM0218',0,0,4400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5754,2,'MOPM0219',0,0,176000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5755,2,'MOPM0220',0,0,136200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5756,2,'MOPM0221',0,0,4400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5757,2,'MOPM0222',0,0,79200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5758,2,'MOPM0223',0,0,106500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5759,2,'MOPM0224',0,0,8800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5760,2,'MOPM0225',0,0,60500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5761,2,'MOPM0226',0,0,89100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5762,2,'MOPM0227',0,0,36600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5763,2,'MOPM0228',0,0,86700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5764,2,'MOPM0229',0,0,26400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5765,2,'MOPM0230',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5766,2,'MOPM0231',0,0,27900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5767,2,'MOPM0232',0,0,31800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5768,2,'MOPM0233',0,0,6500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5769,2,'MOPM0234',0,0,3700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5770,2,'MOPM0235',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5771,2,'MOPM0236',0,0,9200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5772,2,'MOPM0237',0,0,9500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5773,2,'MOPM0238',0,0,8400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5774,2,'MOPM0239',0,0,2300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5775,2,'MOPM0240',0,0,8200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5776,2,'MOPM0241',0,0,6300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5777,2,'MOPM0242',0,0,17900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5778,2,'MOPM0243',0,0,13700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5779,2,'MOPM0244',0,0,4200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5780,2,'MOPM0245',0,0,5500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5781,2,'MOPM0246',0,0,16800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5782,2,'MOPM0247',0,0,263700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5783,2,'MOPM0248',0,0,95700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5784,2,'MOPM0249',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5785,2,'MOPM0250',0,0,5500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5786,2,'MOPM0251',0,0,5500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5787,2,'MOPM0252',0,0,263700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5788,2,'MOPM0253',0,0,95700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5789,2,'MOPM0254',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5790,2,'MOPM0255',0,0,63400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5791,2,'MOPM0256',0,0,115800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5792,2,'MOPM0257',0,0,115400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5793,2,'MOPM0258',0,0,64700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5794,2,'MOPM0259',0,0,142400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5795,2,'MOPM0260',0,0,43300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5796,2,'MOPM0261',0,0,10400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5797,2,'MOPM0262',0,0,14300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5798,2,'MOPM0263',0,0,15400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5799,2,'MOPM0264',0,0,15400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5800,2,'MOPM0265',0,0,37400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5801,2,'MOPM0266',0,0,46900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5802,2,'MOPM0267',0,0,46700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5803,2,'MOPM0268',0,0,72400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5804,2,'MOPM0269',0,0,108600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5805,2,'MOPM0270',0,0,11800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5806,2,'MOPM0271',0,0,6200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5807,2,'MOPM0272',0,0,6200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5808,2,'MOPM0273',0,0,9400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5809,2,'MOPM0274',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5810,2,'MOPM0275',0,0,2800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5811,2,'MOPM0276',0,0,16000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5812,2,'MOPM0277',0,0,11200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5813,2,'MOPM0278',0,0,27100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5814,2,'MOPM0279',0,0,3500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5815,2,'MOPM0280',0,0,8500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5816,2,'MOPM0281',0,0,7500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5817,2,'MOPM0282',0,0,9900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5818,2,'MOPM0283',0,0,15300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5819,2,'MOPM0284',0,0,13400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5820,2,'MOPM0285',0,0,6600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5821,2,'MOPM0286',0,0,13000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5822,2,'MOPM0287',0,0,8500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5823,2,'MOPM0288',0,0,14700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5824,2,'MOPM0289',0,0,10400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5825,2,'MOPM0290',0,0,8400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5826,2,'MOPM0291',0,0,18700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5827,2,'MOPM0292',0,0,18700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5828,2,'MOPM0293',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5829,2,'MOPM0294',0,0,39600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5830,2,'MOPM0295',0,0,780000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5831,2,'MOPM0296',0,0,320000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5832,2,'MOPM0297',0,0,6600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5833,2,'MOPM0298',0,0,64400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5834,2,'MOPM0299',0,0,19800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5835,2,'MOPM0300',0,0,7130,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5836,2,'MOPM0301',0,0,4140,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5837,2,'MOPM0302',0,0,8800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5838,2,'MOPM0303',0,0,14800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5839,2,'MOPM0304',0,0,780000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5840,2,'MOPM0305',0,0,4830,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5841,2,'MOPM0306',0,0,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5842,2,'MOPM0307',0,0,4370,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5843,2,'MOPM0308',0,0,17480,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5844,2,'MOPM0309',0,0,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5845,2,'MOPM0310',0,0,2530,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5846,2,'MOPM0311',0,0,4830,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5847,2,'MOPM0312',0,0,5750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5848,2,'MOPM0313',0,0,780000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5849,2,'MOPM0314',0,0,200000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5850,2,'MOPM0315',0,0,16100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5851,2,'MOPM0316',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5852,2,'MOPM0317',0,0,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5853,2,'MOPM0318',0,0,31740,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5854,2,'MOPM0319',0,0,31750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5855,2,'MOPM0320',0,0,5290,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5856,2,'MOPM0321',0,0,780000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5857,2,'MOPM0322',0,0,11040,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5858,2,'MOPM0323',0,0,11040,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5859,2,'MOPM0324',0,0,780000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5860,2,'MOPM0325',0,0,7130,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5861,2,'MOPM0326',0,0,9200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5862,2,'MOPM0327',0,0,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5863,2,'MOPM0328',0,0,3200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5864,2,'MPPM0001',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5865,2,'MPPM0002',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5866,2,'MPPM0003',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5867,2,'MPPM0004',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5868,2,'MPPM0005',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5869,2,'MPPM0006',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5870,2,'MPPM0007',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5871,2,'MPPM0008',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5872,2,'MPPM0009',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5873,2,'MPPM0010',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5874,2,'MPPM0011',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5875,2,'MPPM0012',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5876,2,'MPPM0013',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5877,2,'MPPM0014',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5878,2,'MPPM0015',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5879,2,'MPPM0016',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5880,2,'MPPM0017',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5881,2,'MPPM0018',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5882,2,'MPPM0019',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5883,2,'MPPM0020',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5884,2,'MPPM0021',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5885,2,'MPPM0022',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5886,2,'MPPM0023',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5887,2,'MPPM0024',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5888,2,'MPPM0025',0,0,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5889,2,'MPPM0026',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5890,2,'MPPM0027',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5891,2,'MPPM0028',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5892,2,'MPPM0029',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5893,2,'MPPM0030',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5894,2,'MPPM0031',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5895,2,'MPPM0032',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5896,2,'MPPM0033',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5897,2,'MPPM0034',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5898,2,'MPPM0035',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5899,2,'MPPM0036',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5900,2,'MPPM0037',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5901,2,'MPPM0038',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5902,2,'MPPM0039',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5903,2,'MPPM0040',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5904,2,'MPPM0041',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5905,2,'MPPM0042',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5906,2,'MPPM0043',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5907,2,'MPPM0044',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5908,2,'MPPM0045',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5909,2,'MPPM0046',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5910,2,'MPPM0047',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5911,2,'MPPM0048',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5912,2,'MPPM0049',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5913,2,'MPPM0050',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5914,2,'MPPM0051',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5915,2,'MPPM0052',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5916,2,'MPPM0053',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5917,2,'MPPM0054',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5918,2,'MPPM0055',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5919,2,'MPPM0056',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5920,2,'MPPM0057',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5921,2,'MPPM0058',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5922,2,'MPPM0059',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5923,2,'MPPM0060',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5924,2,'MPPM0061',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5925,2,'MPPM0062',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5926,2,'MPPM0063',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5927,2,'MPPM0064',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5928,2,'MPPM0065',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5929,2,'MPPM0066',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5930,2,'MPPM0067',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5931,2,'MPPM0068',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5932,2,'MPPM0069',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5933,2,'MPPM0070',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5934,2,'MPPM0071',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5935,2,'MPPM0072',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5936,2,'MPPM0073',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5937,2,'MPPM0074',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5938,2,'MPPM0075',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5939,2,'MPPM0076',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5940,2,'MPPM0077',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5941,2,'MPPM0078',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5942,2,'MPPM0079',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5943,2,'MPPM0080',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5944,2,'MPPM0081',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5945,2,'MPPM0082',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5946,2,'MPPM0083',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5947,2,'MPPM0084',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5948,2,'MPPM0085',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5949,2,'MPPM0086',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5950,2,'MPPM0087',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5951,2,'MPPM0088',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5952,2,'MPPM0089',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5953,2,'MPPM0090',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5954,2,'MPPM0091',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5955,2,'MPPM0092',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5956,2,'MPPM0093',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5957,2,'MPPM0094',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5958,2,'MPPM0095',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5959,2,'MPPM0096',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5960,2,'MPPM0097',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5961,2,'MPPM0098',0,0,200000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5962,2,'MPPM0099',0,0,109627,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5963,2,'MPPM0100',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5964,2,'MPPM0101',0,0,11000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5965,2,'MPPM0102',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5966,2,'MPPM0103',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5967,2,'MPPM0104',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5968,2,'MPPM0105',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5969,2,'MPPM0106',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5970,2,'MPPM0107',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5971,2,'MPPM0108',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5972,2,'MPPM0109',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5973,2,'MPPM0110',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5974,2,'MPPM0111',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5975,2,'MPPM0112',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5976,2,'MPPM0113',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5977,2,'MPPM0114',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5978,2,'MPPM0115',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5979,2,'MPPM0116',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5980,2,'MPPM0117',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5981,2,'MPPM0118',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5982,2,'MPPM0119',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5983,2,'MPPM0120',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5984,2,'MPPM0121',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5985,2,'MPPM0122',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5986,2,'MPPM0123',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5987,2,'MPPM0124',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5988,2,'MPPM0125',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5989,2,'MPPM0126',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5990,2,'MPPM0127',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5991,2,'MPPM0128',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5992,2,'MPPM0129',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5993,2,'MPPM0130',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5994,2,'MPPM0131',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5995,2,'MPPM0132',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5996,2,'MPPM0133',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5997,2,'MPPM0134',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5998,2,'MPPM0135',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,5999,2,'MPPM0136',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6000,2,'MPPM0137',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6001,2,'MPPM0138',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6002,2,'MPPM0139',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6003,2,'MPPM0140',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6004,2,'MPPM0141',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6005,2,'MPPM0142',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6006,2,'MPPM0143',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6007,2,'MPPM0144',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6008,2,'MPPM0145',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6009,2,'MPPM0146',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6010,2,'MPPM0147',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6011,2,'MPPM0148',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6012,2,'MPPM0149',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6013,2,'MPPM0150',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6014,2,'MPPM0151',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6015,2,'MPPM0152',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6016,2,'MPPM0153',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6017,2,'MPPM0154',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6018,2,'MPPM0155',0,0,2600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6019,2,'MPPM0156',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6020,2,'MPPM0157',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6021,2,'MPPM0158',0,0,2900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6022,2,'MPPM0159',0,0,2300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6023,2,'MPPM0160',0,0,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6024,2,'MPPM0161',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6025,2,'MPPM0162',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6026,2,'MPPM0163',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6027,2,'MPPM0164',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6028,2,'MPPM0165',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6029,2,'MPPM0166',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6030,2,'MPPM0167',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6031,2,'MPPM0168',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6032,2,'MPPM0169',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6033,2,'MPPM0170',0,0,2100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6034,2,'MRPM0001',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6035,2,'MRPM0002',0,0,23100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6036,2,'MRPM0003',0,0,12100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6037,2,'MRPM0004',0,0,12100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6038,2,'MRPM0005',0,0,9900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6039,2,'MRPM0006',0,0,11000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6040,2,'MRPM0007',0,0,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6041,2,'MRPM0008',0,0,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6042,2,'MRPM0009',0,0,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6043,2,'MRPM0010',0,0,5500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6044,2,'MRPM0011',0,0,12100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6045,2,'MRPM0012',0,0,44000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6046,2,'MRPM0013',0,0,44000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6047,2,'MRPM0014',0,0,44000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6048,2,'MRPM0015',0,0,11000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6049,2,'MRPM0016',0,0,77000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6050,2,'MRPM0017',0,0,77000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6051,2,'MRPM0018',0,0,77000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6052,2,'MRPM0019',0,0,33000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6053,2,'MRPM0020',0,0,99000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6054,2,'MRPM0021',0,0,99000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6055,2,'MRPM0022',0,0,99000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6056,2,'MRPM0023',0,0,41300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6057,2,'MRPM0024',0,0,90200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6058,2,'MRPM0025',0,0,48400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6059,2,'MRPM0026',0,0,77000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6060,2,'MRPM0027',0,0,71500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6061,2,'MRPM0028',0,0,38500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6062,2,'MRPM0029',0,0,3900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6063,2,'MRPM0030',0,0,3900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6064,2,'MRPM0031',0,0,3900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6065,2,'MRPM0032',0,0,3900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6066,2,'MRPM0033',0,0,3900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6067,2,'MRPM0034',0,0,46200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6068,2,'MRPM0035',0,0,46200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6069,2,'MRPM0036',0,0,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6070,2,'MRPM0037',0,0,11400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6071,2,'MRPM0038',0,0,16900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6072,2,'MRPM0039',0,0,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6073,2,'MRPM0040',0,0,16500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6074,2,'MRPM0041',0,0,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6075,2,'MRPM0042',0,0,16500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6076,2,'MRPM0043',0,0,16500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6077,2,'MRPM0044',0,0,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6078,2,'MRPM0045',0,0,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6079,2,'MRPM0046',0,0,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6080,2,'MRPM0047',0,0,115000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6081,2,'MRPM0048',0,0,22400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6082,2,'MRPM0049',0,0,70000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6083,2,'MRPM0050',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6084,2,'MRPM0051',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6085,2,'MRPM0052',0,0,100000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6086,2,'MRPM0053',0,0,110000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6087,2,'MRPM0054',0,0,30100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6088,2,'MRPM0055',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6089,2,'MRPM0056',0,0,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6090,2,'MRPM0057',0,0,110000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6091,2,'MRPM0058',0,0,110000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6092,2,'MRPM0059',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6093,2,'MRPM0060',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6094,2,'MRPM0061',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6095,2,'MRPM0062',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6096,2,'MRPM0063',0,0,66700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6097,2,'MRPM0064',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6098,2,'OTPM0001',0,0,2200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6099,2,'OTPM0002',0,0,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6100,2,'OTPM0003',0,0,281300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6101,2,'OTPM0004',0,0,150000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6102,2,'OTPM0005',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6103,2,'OTPM0006',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6104,2,'OTPM0007',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6105,2,'OTPM0008',0,0,125000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6106,2,'OTPM0009',0,0,312500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6107,2,'OTPM0010',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6108,2,'OTPM0011',0,0,462500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6109,2,'OTPM0012',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6110,2,'OTPM0013',0,0,150000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6111,2,'OTPM0014',0,0,112500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6112,2,'OTPM0015',0,0,112500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6113,2,'OTPM0016',0,0,150000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6114,2,'OTPM0017',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6115,2,'OTPM0018',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6116,2,'OTPM0019',0,0,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6117,2,'OTPM0020',0,0,36000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6118,2,'OTPM0021',0,0,66000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6119,2,'OTPM0022',0,0,19800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6120,2,'OTPM0023',0,0,39600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6121,2,'OTPM0024',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6122,2,'OTPM0025',0,0,1080000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6123,2,'OTPM0026',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6124,2,'OTPM0027',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6125,2,'OTPM0028',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6126,2,'OTPM0029',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6127,2,'OTPM0030',0,0,10500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6128,2,'OTPM0031',0,0,375000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6129,2,'OTPM0032',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6130,2,'OTPM0033',0,0,125000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6131,2,'OTPM0034',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6132,2,'OTPM0035',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6133,2,'OTPM0036',0,0,8750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6134,2,'OTPM0037',0,0,17500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6135,2,'OTPM0038',0,0,323750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6136,2,'OTPM0039',0,0,11250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6137,2,'OTPM0040',0,0,7500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6138,2,'OTPM0041',0,0,131250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6139,2,'OTPM0042',0,0,3500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6140,2,'OTPM0043',0,0,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6141,2,'OTPM0044',0,0,9000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6142,2,'OTPM0045',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6143,2,'OTPM0046',0,0,7800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6144,2,'OTPM0047',0,0,4200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6145,2,'OTPM0048',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6146,2,'OTPM0049',0,0,41580,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6147,2,'OTPM0050',0,0,13860,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6148,2,'OTPM0051',0,0,13860,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6149,2,'OTPM0052',0,0,6800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6150,2,'OTPM0053',0,0,3680,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6151,2,'OTPM0054',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6152,2,'OTPM0055',0,0,320000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6153,2,'OTPM0056',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6154,2,'OTPM0057',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6155,2,'OTPM0058',0,0,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6156,2,'OTPM0059',0,0,27000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6157,2,'OTPM0060',0,0,27000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6158,2,'OTPM0061',0,0,288000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6159,2,'OTPM0062',0,0,22500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6160,2,'OTPM0063',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6161,2,'OTPM0064',0,0,22500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6162,2,'OTPM0065',0,0,240000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6163,2,'OTPM0066',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6164,2,'OTPM0067',0,0,420000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6165,2,'OTPM0068',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6166,2,'OTPM0069',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6167,2,'OTPM0070',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6168,2,'OTPM0071',0,0,49000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6169,2,'OTPM0072',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6170,2,'OTPM0073',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6171,2,'OTPM0074',0,0,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6172,2,'OTPM0075',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6173,2,'OTPM0076',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6174,2,'OTPM0077',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6175,2,'OTPM0078',0,0,4700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6176,2,'OTPM0079',0,0,4000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6177,2,'OTPM0080',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6178,2,'OTPM0081',0,0,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6179,2,'OTPM0082',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6180,2,'OTPM0083',0,0,24000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6181,2,'OTPM0084',0,0,36000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6182,2,'OTPM0085',0,0,36000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6183,2,'OTPM0086',0,0,384000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6184,2,'OTPM0087',0,0,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6185,2,'OTPM0088',0,0,368000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6186,2,'OTPM0089',0,0,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6187,2,'OTPM0090',0,0,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6188,2,'OTPM0091',0,0,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6189,2,'OTPM0092',0,0,352000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6190,2,'OTPM0093',0,0,33000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6191,2,'OTPM0094',0,0,33000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6192,2,'OTPM0095',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6193,2,'OTPM0096',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6194,2,'OTPM0097',0,0,462500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6195,2,'OTPM0098',0,0,150000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6196,2,'OTPM0099',0,0,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6197,2,'OTPM0100',0,0,225000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6198,2,'OTPM0101',0,0,135000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6199,2,'OTPM0102',0,0,67500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6200,2,'OTPM0103',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6201,2,'OTPM0104',0,0,80000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6202,2,'OTPM0105',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6203,2,'OTPM0106',0,0,9000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6204,2,'OTPM0107',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6205,2,'OTPM0108',0,0,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6206,2,'OTPM0109',0,0,130000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6207,2,'OTPM0110',0,0,39000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6208,2,'OTPM0111',0,0,78000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6209,2,'OTPM0112',0,0,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6210,2,'OTPM0113',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6211,2,'OTPM0114',0,0,2200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6212,2,'OTPM0115',0,0,999000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6213,2,'OTPM0116',0,0,360000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6214,2,'PMPM0001',0,0,44000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6215,2,'PMPM0002',0,0,44000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6216,2,'PMPM0003',0,0,66000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6217,2,'PMPM0004',0,0,44000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6218,2,'PMPM0005',0,0,44000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6219,2,'PMPM0006',0,0,44000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6220,2,'PMPM0007',0,0,16500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6221,2,'PMPM0008',0,0,66000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6222,2,'PMPM0009',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6223,2,'PMPM0010',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6224,2,'PMPM0011',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6225,2,'PMPM0012',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6226,2,'PMPM0013',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6227,2,'PMPM0014',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6228,2,'PMPM0015',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6229,2,'PMPM0016',0,0,44000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6230,2,'PMPM0017',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6231,2,'PMPM0018',0,0,11000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6232,2,'PMPM0019',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6233,2,'PMPM0020',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6234,2,'PMPM0021',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6235,2,'PMPM0022',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6236,2,'PMPM0023',0,0,8300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6237,2,'PMPM0024',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6238,2,'PMPM0025',0,0,44000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6239,2,'PMPM0026',0,0,44000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6240,2,'PMPM0027',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6241,2,'PMPM0028',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6242,2,'PMPM0029',0,0,33000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6243,2,'PMPM0030',0,0,33000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6244,2,'PMPM0031',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6245,2,'PMPM0032',0,0,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6246,2,'PMPM0033',0,0,44000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6247,2,'PMPM0034',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6248,2,'PMPM0035',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6249,2,'PMPM0036',0,0,44000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6250,2,'PMPM0037',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6251,2,'PMPM0038',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6252,2,'PMPM0039',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6253,2,'PMPM0040',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6254,2,'PMPM0041',0,0,8300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6255,2,'PMPM0042',0,0,11000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6256,2,'SBPM0001',0,0,2300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6257,2,'SBPM0002',0,0,3500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6258,2,'SBPM0003',0,0,900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6259,2,'SBPM0004',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6260,2,'SBPM0005',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6261,2,'SBPM0006',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6262,2,'SBPM0007',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6263,2,'SBPM0008',0,0,2200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6264,2,'SBPM0009',0,0,3500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6265,2,'SBPM0010',0,0,3500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6266,2,'SBPM0011',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6267,2,'SBPM0012',0,0,9500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6268,2,'SBPM0013',0,0,19200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6269,2,'SBPM0014',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6270,2,'SBPM0015',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6271,2,'SBPM0016',0,0,11000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6272,2,'SBPM0017',0,0,19100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6273,2,'SBPM0018',0,0,17300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6274,2,'SBPM0019',0,0,11300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6275,2,'SBPM0020',0,0,16400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6276,2,'SBPM0021',0,0,20800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6277,2,'SBPM0022',0,0,20800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6278,2,'SBPM0023',0,0,11800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6279,2,'SBPM0024',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6280,2,'SBPM0025',0,0,9200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6281,2,'SBPM0026',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6282,2,'SBPM0027',0,0,8900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6283,2,'SBPM0028',0,0,16100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6284,2,'SBPM0029',0,0,8500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6285,2,'SBPM0030',0,0,8500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6286,2,'SBPM0031',0,0,8500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6287,2,'SBPM0032',0,0,15100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6288,2,'SBPM0033',0,0,17000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6289,2,'SBPM0034',0,0,28000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6290,2,'SBPM0035',0,0,33500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6291,2,'SBPM0036',0,0,15500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6292,2,'SBPM0037',0,0,18400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6293,2,'SBPM0038',0,0,16100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6294,2,'SBPM0039',0,0,15600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6295,2,'SBPM0040',0,0,26700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6296,2,'SBPM0041',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6297,2,'SBPM0042',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6298,2,'SBPM0043',0,0,18600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6299,2,'SBPM0044',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6300,2,'SBPM0045',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6301,2,'SBPM0046',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6302,2,'SBPM0047',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6303,2,'SBPM0048',0,0,17100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6304,2,'SBPM0049',0,0,17100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6305,2,'SBPM0050',0,0,17100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6306,2,'SBPM0051',0,0,17100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6307,2,'SBPM0052',0,0,27000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6308,2,'SBPM0053',0,0,27000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6309,2,'SBPM0054',0,0,17400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6310,2,'SBPM0055',0,0,31300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6311,2,'SBPM0056',0,0,31300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6312,2,'SBPM0057',0,0,45000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6313,2,'SBPM0058',0,0,14300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6314,2,'SBPM0059',0,0,5500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6315,2,'SBPM0060',0,0,13200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6316,2,'SBPM0061',0,0,11400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6317,2,'SBPM0062',0,0,8500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6318,2,'SBPM0063',0,0,13000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6319,2,'SBPM0064',0,0,17400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6320,2,'SBPM0065',0,0,17400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6321,2,'SBPM0066',0,0,17400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6322,2,'SBPM0067',0,0,20500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6323,2,'SBPM0068',0,0,20500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6324,2,'SBPM0069',0,0,20500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6325,2,'SBPM0070',0,0,20500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6326,2,'SBPM0071',0,0,20500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6327,2,'SBPM0072',0,0,20500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6328,2,'SBPM0073',0,0,17500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6329,2,'SBPM0074',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6330,2,'SBPM0075',0,0,11000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6331,2,'SBPM0076',0,0,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6332,2,'SBPM0077',0,0,27300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6333,2,'SBPM0078',0,0,61600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6334,2,'SBPM0079',0,0,46300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6335,2,'SBPM0080',0,0,63700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6336,2,'SBPM0081',0,0,78600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6337,2,'SBPM0082',0,0,52500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6338,2,'SBPM0083',0,0,36400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6339,2,'SBPM0084',0,0,44600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6340,2,'SBPM0085',0,0,81300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6341,2,'SBPM0086',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6342,2,'SBPM0087',0,0,27700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6343,2,'SBPM0088',0,0,15400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6344,2,'SBPM0089',0,0,16200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6345,2,'SBPM0090',0,0,18100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6346,2,'SBPM0091',0,0,18600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6347,2,'SBPM0092',0,0,18600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6348,2,'SBPM0093',0,0,18600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6349,2,'SBPM0094',0,0,18600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6350,2,'SBPM0095',0,0,23200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6351,2,'SBPM0096',0,0,23200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6352,2,'SBPM0097',0,0,23200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6353,2,'SBPM0098',0,0,23200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6354,2,'SBPM0099',0,0,23200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6355,2,'SBPM0100',0,0,23200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6356,2,'SBPM0101',0,0,23200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6357,2,'SBPM0102',0,0,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6358,2,'SBPM0103',0,0,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6359,2,'SBPM0104',0,0,19500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6360,2,'SBPM0105',0,0,19500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6361,2,'SBPM0106',0,0,6300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6362,2,'SBPM0107',0,0,6300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6363,2,'SBPM0108',0,0,32200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6364,2,'SBPM0109',0,0,32200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6365,2,'SBPM0110',0,0,13200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6366,2,'SBPM0111',0,0,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6367,2,'SBPM0112',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6368,2,'SBPM0113',0,0,4900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6369,2,'SBPM0114',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6370,2,'SBPM0115',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6371,2,'SBPM0116',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6372,2,'SBPM0117',0,0,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6373,2,'SBPM0118',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6374,2,'SBPM0119',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6375,2,'SBPM0120',0,0,16000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6376,2,'SBPM0121',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6377,2,'SBPM0122',0,0,23700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6378,2,'SBPM0123',0,0,5700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6379,2,'SBPM0124',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6380,2,'SBPM0125',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6381,2,'SBPM0126',0,0,5700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6382,2,'SBPM0127',0,0,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6383,2,'SBPM0128',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6384,2,'SBPM0129',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6385,2,'SBPM0130',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6386,2,'SBPM0131',0,0,13000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6387,2,'SBPM0132',0,0,13000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6388,2,'SBPM0133',0,0,13000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6389,2,'SBPM0134',0,0,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6390,2,'SBPM0135',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6391,2,'SBPM0136',0,0,9800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6392,2,'SBPM0137',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6393,2,'SBPM0138',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6394,2,'SBPM0139',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6395,2,'SBPM0140',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6396,2,'SBPM0141',0,0,14100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6397,2,'SBPM0142',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6398,2,'SBPM0143',0,0,6000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6399,2,'SBPM0144',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6400,2,'SBPM0145',0,0,4000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6401,2,'SBPM0146',0,0,19000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6402,2,'SBPM0147',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6403,2,'SBPM0148',0,0,6000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6404,2,'SBPM0149',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6405,2,'SBPM0150',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6406,2,'SBPM0151',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6407,2,'SBPM0152',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6408,2,'SBPM0153',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6409,2,'SBPM0154',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6410,2,'SBPM0155',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6411,2,'SBPM0156',0,0,52800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6412,2,'SBPM0157',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6413,2,'SBPM0158',0,0,93800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6414,2,'SBPM0159',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6415,2,'SBPM0160',0,0,68000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6416,2,'SBPM0161',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6417,2,'SBPM0162',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6418,2,'SBPM0163',0,0,3800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6419,2,'SBPM0164',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6420,2,'SBPM0165',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6421,2,'SBPM0166',0,0,38800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6422,2,'SBPM0167',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6423,2,'SBPM0168',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6424,2,'SBPM0169',0,0,93800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6425,2,'SBPM0170',0,0,93800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6426,2,'SBPM0171',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6427,2,'SBPM0172',0,0,45000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6428,2,'SBPM0173',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6429,2,'SBPM0174',0,0,56300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6430,2,'SBPM0175',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6431,2,'SBPM0176',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6432,2,'SBPM0177',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6433,2,'SBPM0178',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6434,2,'SBPM0179',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6435,2,'SBPM0180',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6436,2,'SBPM0181',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6437,2,'SBPM0182',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6438,2,'SBPM0183',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6439,2,'SBPM0184',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6440,2,'SCPM0001',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6441,2,'SCPM0002',0,0,27000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6442,2,'SCPM0003',0,0,27000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6443,2,'SCPM0004',0,0,45000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6444,2,'SCPM0005',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6445,2,'SCPM0006',0,0,70600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6446,2,'SCPM0007',0,0,82900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6447,2,'SCPM0008',0,0,45100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6448,2,'SCPM0009',0,0,51500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6449,2,'SCPM0010',0,0,60800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6450,2,'SCPM0011',0,0,67200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6451,2,'SCPM0012',0,0,67200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6452,2,'SCPM0013',0,0,43700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6453,2,'SCPM0014',0,0,82700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6454,2,'SCPM0015',0,0,82700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6455,2,'SCPM0016',0,0,128900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6456,2,'SCPM0017',0,0,128900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6457,2,'SCPM0018',0,0,102000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6458,2,'SCPM0019',0,0,97100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6459,2,'SCPM0020',0,0,129500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6460,2,'SCPM0021',0,0,87800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6461,2,'SCPM0022',0,0,87800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6462,2,'SCPM0023',0,0,57700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6463,2,'SCPM0024',0,0,85000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6464,2,'SCPM0025',0,0,76100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6465,2,'SCPM0026',0,0,76100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6466,2,'SCPM0027',0,0,86900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6467,2,'SCPM0028',0,0,86900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6468,2,'SCPM0029',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6469,2,'SCPM0030',0,0,35600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6470,2,'SCPM0031',0,0,61400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6471,2,'SCPM0032',0,0,69300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6472,2,'SCPM0033',0,0,86900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6473,2,'SCPM0034',0,0,86900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6474,2,'SCPM0035',0,0,59800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6475,2,'SCPM0036',0,0,85300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6476,2,'SCPM0037',0,0,92600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6477,2,'SCPM0038',0,0,129600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6478,2,'SCPM0039',0,0,129600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6479,2,'SCPM0040',0,0,129600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6480,2,'SCPM0041',0,0,129600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6481,2,'SCPM0042',0,0,57000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6482,2,'SCPM0043',0,0,44000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6483,2,'SCPM0044',0,0,44500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6484,2,'SCPM0045',0,0,125100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6485,2,'SCPM0046',0,0,162200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6486,2,'SCPM0047',0,0,162200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6487,2,'SCPM0048',0,0,185700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6488,2,'SCPM0049',0,0,185700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6489,2,'SCPM0050',0,0,144700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6490,2,'SCPM0051',0,0,97100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6491,2,'SCPM0052',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6492,2,'SCPM0053',0,0,96800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6493,2,'SCPM0054',0,0,96800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6494,2,'SCPM0055',0,0,38300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6495,2,'SCPM0056',0,0,48600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6496,2,'SCPM0057',0,0,36100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6497,2,'SCPM0058',0,0,35700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6498,2,'SCPM0059',0,0,44500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6499,2,'SCPM0060',0,0,98300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6500,2,'SCPM0061',0,0,98300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6501,2,'SCPM0062',0,0,53600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6502,2,'SCPM0063',0,0,53600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6503,2,'SCPM0064',0,0,38500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6504,2,'SCPM0065',0,0,38500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6505,2,'SCPM0066',0,0,53600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6506,2,'SCPM0067',0,0,53600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6507,2,'SCPM0068',0,0,88100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6508,2,'SCPM0069',0,0,48100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6509,2,'SCPM0070',0,0,45000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6510,2,'SCPM0071',0,0,72500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6511,2,'SCPM0072',0,0,59700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6512,2,'SCPM0073',0,0,143000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6513,2,'SCPM0074',0,0,122400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6514,2,'SCPM0075',0,0,70100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6515,2,'SCPM0076',0,0,67400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6516,2,'SCPM0077',0,0,47800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6517,2,'SCPM0078',0,0,94500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6518,2,'SCPM0079',0,0,94100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6519,2,'SCPM0080',0,0,65900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6520,2,'SCPM0081',0,0,96800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6521,2,'SCPM0082',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6522,2,'SCPM0083',0,0,35100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6523,2,'SCPM0084',0,0,20800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6524,2,'SCPM0085',0,0,114800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6525,2,'SCPM0086',0,0,43200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6526,2,'SCPM0087',0,0,43200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6527,2,'SCPM0088',0,0,109800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6528,2,'SCPM0089',0,0,124200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6529,2,'SCPM0090',0,0,64200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6530,2,'SCPM0091',0,0,30700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6531,2,'SCPM0092',0,0,108200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6532,2,'SCPM0093',0,0,95100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6533,2,'SCPM0094',0,0,73900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6534,2,'SCPM0095',0,0,73900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6535,2,'SCPM0096',0,0,29600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6536,2,'SCPM0097',0,0,98400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6537,2,'SCPM0098',0,0,98400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6538,2,'SCPM0099',0,0,101700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6539,2,'SCPM0100',0,0,87000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6540,2,'SCPM0101',0,0,87000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6541,2,'SCPM0102',0,0,100000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6542,2,'SCPM0103',0,0,100000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6543,2,'SCPM0104',0,0,49200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6544,2,'SCPM0105',0,0,45300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6545,2,'SCPM0106',0,0,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6546,2,'SCPM0107',0,0,25800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6547,2,'SCPM0108',0,0,44500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6548,2,'SCPM0109',0,0,105700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6549,2,'SCPM0110',0,0,56300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6550,2,'SCPM0111',0,0,56300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6551,2,'SCPM0112',0,0,56300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6552,2,'SCPM0113',0,0,33300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6553,2,'SCPM0114',0,0,19300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6554,2,'SCPM0115',0,0,51000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6555,2,'SCPM0116',0,0,65300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6556,2,'SCPM0117',0,0,65300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6557,2,'SCPM0118',0,0,80100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6558,2,'SCPM0119',0,0,52800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6559,2,'SCPM0120',0,0,97100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6560,2,'SCPM0121',0,0,67600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6561,2,'SCPM0122',0,0,100000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6562,2,'SCPM0123',0,0,72600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6563,2,'SCPM0124',0,0,95300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6564,2,'SCPM0125',0,0,27900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6565,2,'SCPM0126',0,0,24000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6566,2,'SCPM0127',0,0,101100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6567,2,'SCPM0128',0,0,44900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6568,2,'SCPM0129',0,0,24000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6569,2,'SCPM0130',0,0,72600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6570,2,'SCPM0131',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6571,2,'SCPM0132',0,0,49000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6572,2,'SCPM0133',0,0,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6573,2,'SCPM0134',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6574,2,'SCPM0135',0,0,70000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6575,2,'SCPM0136',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6576,2,'SCPM0137',0,0,55000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6577,2,'SCPM0138',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6578,2,'SCPM0139',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6579,2,'SCPM0140',0,0,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6580,2,'SCPM0141',0,0,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6581,2,'SCPM0142',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6582,2,'SCPM0143',0,0,8740,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6583,2,'SCPM0144',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6584,2,'SCPM0145',0,0,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6585,2,'SCPM0146',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6586,2,'SCPM0147',0,0,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6587,2,'SCPM0148',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6588,2,'SCPM0149',0,0,70000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6589,2,'SCPM0150',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6590,2,'SCPM0151',0,0,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6591,2,'SCPM0152',0,0,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6592,2,'SCPM0153',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6593,2,'SCPM0154',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6594,2,'SCPM0155',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6595,2,'SCPM0156',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6596,2,'SCPM0157',0,0,46000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6597,2,'SCPM0158',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6598,2,'SCPM0159',0,0,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6599,2,'SCPM0160',0,0,80000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6600,2,'SCPM0161',0,0,80000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6601,2,'SCPM0162',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6602,2,'SCPM0163',0,0,9890,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6603,2,'SCPM0164',0,0,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6604,2,'SCPM0165',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6605,2,'SCPM0166',0,0,16100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6606,2,'SCPM0167',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6607,2,'SCPM0168',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6608,2,'SCPM0169',0,0,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6609,2,'SCPM0170',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6610,2,'SCPM0171',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6611,2,'SCPM0172',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6612,2,'SCPM0173',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6613,2,'SCPM0174',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6614,2,'SCPM0175',0,0,23700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6615,2,'SCPM0176',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6616,2,'SCPM0177',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6617,2,'SCPM0178',0,0,125000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6618,2,'SCPM0179',0,0,43500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6619,2,'SCPM0180',0,0,43500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6620,2,'SCPM0181',0,0,81300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6621,2,'SCPM0182',0,0,81300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6622,2,'SCPM0183',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6623,2,'SCPM0184',0,0,34900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6624,2,'SCPM0185',0,0,34900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6625,2,'SCPM0186',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6626,2,'SCPM0187',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6627,2,'SCPM0188',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6628,2,'SCPM0189',0,0,48300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6629,2,'SCPM0190',0,0,48300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6630,2,'SCPM0191',0,0,35200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6631,2,'SCPM0192',0,0,35200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6632,2,'SCPM0193',0,0,35200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6633,2,'SCPM0194',0,0,35200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6634,2,'SCPM0195',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6635,2,'SCPM0196',0,0,16700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6636,2,'SCPM0197',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6637,2,'SCPM0198',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6638,2,'SCPM0199',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6639,2,'SCPM0200',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6640,2,'SCPM0201',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6641,2,'SCPM0202',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6642,2,'SCPM0203',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6643,2,'SCPM0204',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6644,2,'SCPM0205',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6645,2,'SCPM0206',0,0,44600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6646,2,'SCPM0207',0,0,125000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6647,2,'SCPM0208',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6648,2,'SCPM0209',0,0,39200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6649,2,'SCPM0210',0,0,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6650,2,'SCPM0211',0,0,18500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6651,2,'SCPM0212',0,0,25100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6652,2,'SCPM0213',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6653,2,'SCPM0214',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6654,2,'SCPM0215',0,0,20900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6655,2,'SCPM0216',0,0,39200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6656,2,'SCPM0217',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6657,2,'SCPM0218',0,0,33700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6658,2,'SCPM0219',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6659,2,'SCPM0220',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6660,2,'SCPM0221',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6661,2,'SCPM0222',0,0,43600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6662,2,'SCPM0223',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6663,2,'SCPM0224',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6664,2,'SCPM0225',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6665,2,'SCPM0226',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6666,2,'SCPM0227',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6667,2,'SCPM0228',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6668,2,'SCPM0229',0,0,36100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6669,2,'SCPM0230',0,0,28800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6670,2,'SCPM0231',0,0,28000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6671,2,'SCPM0232',0,0,28000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6672,2,'SCPM0233',0,0,7600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6673,2,'SCPM0234',0,0,7600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6674,2,'SCPM0235',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6675,2,'SCPM0236',0,0,45700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6676,2,'SCPM0237',0,0,31300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6677,2,'SCPM0238',0,0,28200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6678,2,'SCPM0239',0,0,23800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6679,2,'SCPM0240',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6680,2,'SCPM0241',0,0,23500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6681,2,'SCPM0242',0,0,23500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6682,2,'SCPM0243',0,0,23500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6683,2,'SCPM0244',0,0,23500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6684,2,'SCPM0245',0,0,32500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6685,2,'SCPM0246',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6686,2,'SCPM0247',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6687,2,'SCPM0248',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6688,2,'SCPM0249',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6689,2,'SCPM0250',0,0,49800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6690,2,'SCPM0251',0,0,49800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6691,2,'SCPM0252',0,0,30900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6692,2,'SCPM0253',0,0,30900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6693,2,'SCPM0254',0,0,30900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6694,2,'SCPM0255',0,0,49900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6695,2,'SCPM0256',0,0,49900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6696,2,'SCPM0257',0,0,49900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6697,2,'SCPM0258',0,0,49900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6698,2,'SCPM0259',0,0,38000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6699,2,'SCPM0260',0,0,13900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6700,2,'SCPM0261',0,0,11600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6701,2,'SCPM0262',0,0,3800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6702,2,'SCPM0263',0,0,45000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6703,2,'SCPM0264',0,0,41100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6704,2,'SCPM0265',0,0,45800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6705,2,'SCPM0266',0,0,41100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6706,2,'SCPM0267',0,0,45800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6707,2,'SCPM0268',0,0,54500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6708,2,'SCPM0269',0,0,57800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6709,2,'SCPM0270',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6710,2,'SCPM0271',0,0,41100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6711,2,'SCPM0272',0,0,45800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6712,2,'SCPM0273',0,0,41100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6713,2,'SCPM0274',0,0,45800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6714,2,'SCPM0275',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6715,2,'SCPM0276',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6716,2,'SCPM0277',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6717,2,'SCPM0278',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6718,2,'SCPM0279',0,0,49800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6719,2,'SCPM0280',0,0,50700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6720,2,'SCPM0281',0,0,27500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6721,2,'SEPM0001',0,0,1900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6722,2,'SEPM0002',0,0,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6723,2,'SEPM0003',0,0,6600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6724,2,'SEPM0004',0,0,6500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6725,2,'SEPM0005',0,0,7700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6726,2,'SEPM0006',0,0,5700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6727,2,'SEPM0007',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6728,2,'SEPM0008',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6729,2,'SEPM0009',0,0,4100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6730,2,'SEPM0010',0,0,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6731,2,'SEPM0011',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6732,2,'SEPM0012',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6733,2,'SEPM0013',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6734,2,'SEPM0014',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6735,2,'SEPM0015',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6736,2,'SEPM0016',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6737,2,'SEPM0017',0,0,13700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6738,2,'SEPM0018',0,0,17200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6739,2,'SEPM0019',0,0,17500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6740,2,'SEPM0020',0,0,11700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6741,2,'SEPM0021',0,0,7500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6742,2,'SEPM0022',0,0,7300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6743,2,'SEPM0023',0,0,24700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6744,2,'SEPM0024',0,0,6900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6745,2,'SEPM0025',0,0,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6746,2,'SEPM0026',0,0,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6747,2,'SEPM0027',0,0,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6748,2,'SEPM0028',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6749,2,'SEPM0029',0,0,1900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6750,2,'SEPM0030',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6751,2,'SEPM0031',0,0,6200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6752,2,'SEPM0032',0,0,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6753,2,'SEPM0033',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6754,2,'SEPM0034',0,0,4700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6755,2,'SEPM0035',0,0,14200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6756,2,'SEPM0036',0,0,16300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6757,2,'SEPM0037',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6758,2,'SEPM0038',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6759,2,'SEPM0039',0,0,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6760,2,'SEPM0040',0,0,8500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6761,2,'SEPM0041',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6762,2,'SEPM0042',0,0,3800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6763,2,'SEPM0043',0,0,25300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6764,2,'SEPM0044',0,0,9300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6765,2,'SEPM0045',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6766,2,'SEPM0046',0,0,11900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6767,2,'SEPM0047',0,0,13300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6768,2,'SEPM0048',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6769,2,'SEPM0049',0,0,13300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6770,2,'SEPM0050',0,0,23700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6771,2,'SEPM0051',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6772,2,'SEPM0052',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6773,2,'SEPM0053',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6774,2,'SEPM0054',0,0,17500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6775,2,'SEPM0055',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6776,2,'SEPM0056',0,0,10500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6777,2,'SEPM0057',0,0,2100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6778,2,'SEPM0058',0,0,800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6779,2,'SEPM0059',0,0,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6780,2,'SEPM0060',0,0,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6781,2,'SEPM0061',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6782,2,'SGPM0001',0,0,15200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6783,2,'SGPM0002',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6784,2,'SGPM0003',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6785,2,'SGPM0004',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6786,2,'SGPM0005',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6787,2,'SGPM0006',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6788,2,'SGPM0007',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6789,2,'SGPM0008',0,0,125000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6790,2,'SGPM0009',0,0,61200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6791,2,'SGPM0010',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6792,2,'SGPM0011',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6793,2,'SGPM0012',0,0,43500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6794,2,'SGPM0013',0,0,43500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6795,2,'SGPM0014',0,0,81300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6796,2,'SGPM0015',0,0,81300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6797,2,'SGPM0016',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6798,2,'SGPM0017',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6799,2,'SGPM0018',0,0,32200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6800,2,'SGPM0019',0,0,32200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6801,2,'SGPM0020',0,0,27200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6802,2,'SGPM0021',0,0,22600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6803,2,'SGPM0022',0,0,22600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6804,2,'SGPM0023',0,0,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6805,2,'SGPM0024',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6806,2,'SGPM0025',0,0,34900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6807,2,'SGPM0026',0,0,34900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6808,2,'SGPM0027',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6809,2,'SGPM0028',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6810,2,'SGPM0029',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6811,2,'SGPM0030',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6812,2,'SGPM0031',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6813,2,'SGPM0032',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6814,2,'SGPM0033',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6815,2,'SGPM0034',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6816,2,'SGPM0035',0,0,70000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6817,2,'SGPM0036',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6818,2,'SGPM0037',0,0,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6819,2,'SGPM0038',0,0,45000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6820,2,'SGPM0039',0,0,22500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6821,2,'SGPM0040',0,0,22500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6822,2,'SGPM0041',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6823,2,'SGPM0042',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6824,2,'SGPM0043',0,0,80000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6825,2,'SGPM0044',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6826,2,'SGPM0045',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6827,2,'SGPM0046',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6828,2,'SGPM0047',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6829,2,'SGPM0048',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6830,2,'SGPM0049',0,0,16500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6831,2,'SGPM0050',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6832,2,'SGPM0051',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6833,2,'SGPM0052',0,0,25400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6834,2,'SGPM0053',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6835,2,'SGPM0054',0,0,16900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6836,2,'SGPM0055',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6837,2,'SGPM0056',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6838,2,'SGPM0057',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6839,2,'SGPM0058',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6840,2,'SGPM0059',0,0,48300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6841,2,'SGPM0060',0,0,48300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6842,2,'SGPM0061',0,0,35200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6843,2,'SGPM0062',0,0,35200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6844,2,'SGPM0063',0,0,35200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6845,2,'SGPM0064',0,0,35200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6846,2,'SGPM0065',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6847,2,'SGPM0066',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6848,2,'SGPM0067',0,0,16700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6849,2,'SGPM0068',0,0,23100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6850,2,'SGPM0069',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6851,2,'SGPM0070',0,0,20300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6852,2,'SGPM0071',0,0,20300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6853,2,'SGPM0072',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6854,2,'SGPM0073',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6855,2,'SGPM0074',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6856,2,'SGPM0075',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6857,2,'SGPM0076',0,0,26700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6858,2,'SGPM0077',0,0,26700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6859,2,'SGPM0078',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6860,2,'SGPM0079',0,0,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6861,2,'SGPM0080',0,0,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6862,2,'SGPM0081',0,0,5700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6863,2,'SGPM0082',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6864,2,'SGPM0083',0,0,11800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6865,2,'SGPM0084',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6866,2,'SGPM0085',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6867,2,'SGPM0086',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6868,2,'SGPM0087',0,0,21000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6869,2,'SGPM0088',0,0,31100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6870,2,'SGPM0089',0,0,31100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6871,2,'SGPM0090',0,0,31100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6872,2,'SGPM0091',0,0,31100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6873,2,'SGPM0092',0,0,11300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6874,2,'SGPM0093',0,0,11300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6875,2,'SGPM0094',0,0,31700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6876,2,'SGPM0095',0,0,35200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6877,2,'SGPM0096',0,0,35200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6878,2,'SGPM0097',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6879,2,'SGPM0098',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6880,2,'SGPM0099',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6881,2,'SGPM0100',0,0,44600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6882,2,'SGPM0101',0,0,125000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6883,2,'SGPM0102',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6884,2,'SGPM0103',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6885,2,'SGPM0104',0,0,48600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6886,2,'SGPM0105',0,0,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6887,2,'SGPM0106',0,0,39200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6888,2,'SGPM0107',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6889,2,'SGPM0108',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6890,2,'SGPM0109',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6891,2,'SGPM0110',0,0,20300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6892,2,'SGPM0111',0,0,22900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6893,2,'SGPM0112',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6894,2,'SGPM0113',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6895,2,'SGPM0114',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6896,2,'SGPM0115',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6897,2,'SGPM0116',0,0,20300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6898,2,'SGPM0117',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6899,2,'SGPM0118',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6900,2,'SGPM0119',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6901,2,'SGPM0120',0,0,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6902,2,'SGPM0121',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6903,2,'SGPM0122',0,0,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6904,2,'SGPM0123',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6905,2,'SGPM0124',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6906,2,'SGPM0125',0,0,5300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6907,2,'SGPM0126',0,0,5300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6908,2,'SGPM0127',0,0,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6909,2,'SGPM0128',0,0,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6910,2,'SGPM0129',0,0,19800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6911,2,'SGPM0130',0,0,18500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6912,2,'SGPM0131',0,0,25100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6913,2,'SGPM0132',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6914,2,'SGPM0133',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6915,2,'SGPM0134',0,0,20900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6916,2,'SGPM0135',0,0,39200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6917,2,'SGPM0136',0,0,18500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6918,2,'SGPM0137',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6919,2,'SGPM0138',0,0,33700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6920,2,'SGPM0139',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6921,2,'SGPM0140',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6922,2,'SGPM0141',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6923,2,'SGPM0142',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6924,2,'SGPM0143',0,0,43600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6925,2,'SGPM0144',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6926,2,'SGPM0145',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6927,2,'SGPM0146',0,0,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6928,2,'SGPM0147',0,0,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6929,2,'SGPM0148',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6930,2,'SGPM0149',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6931,2,'SGPM0150',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6932,2,'SGPM0151',0,0,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6933,2,'SGPM0152',0,0,5600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6934,2,'SGPM0153',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6935,2,'SGPM0154',0,0,24400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6936,2,'SGPM0155',0,0,33000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6937,2,'SGPM0156',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6938,2,'SGPM0157',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6939,2,'SGPM0158',0,0,39900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6940,2,'SGPM0159',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6941,2,'SGPM0160',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6942,2,'SGPM0161',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6943,2,'SGPM0162',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6944,2,'SGPM0163',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6945,2,'SGPM0164',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6946,2,'SGPM0165',0,0,36100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6947,2,'SGPM0166',0,0,31300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6948,2,'SGPM0167',0,0,35200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6949,2,'SGPM0168',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6950,2,'SGPM0169',0,0,18100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6951,2,'SGPM0170',0,0,20400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6952,2,'SGPM0171',0,0,28800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6953,2,'SGPM0172',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6954,2,'SGPM0173',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6955,2,'SGPM0174',0,0,18400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6956,2,'SGPM0175',0,0,16500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6957,2,'SGPM0176',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6958,2,'SGPM0177',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6959,2,'SGPM0178',0,0,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6960,2,'SGPM0179',0,0,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6961,2,'SGPM0180',0,0,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6962,2,'SGPM0181',0,0,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6963,2,'SGPM0182',0,0,5500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6964,2,'SGPM0183',0,0,5500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6965,2,'SGPM0184',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6966,2,'SGPM0185',0,0,14100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6967,2,'SGPM0186',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6968,2,'SGPM0187',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6969,2,'SGPM0188',0,0,76000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6970,2,'SGPM0189',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6971,2,'SGPM0190',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6972,2,'SGPM0191',0,0,25200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6973,2,'SGPM0192',0,0,28750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6974,2,'SGPM0193',0,0,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6975,2,'SGPM0194',0,0,40250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6976,2,'SGPM0195',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6977,2,'SGPM0196',0,0,28200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6978,2,'SGPM0197',0,0,23800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6979,2,'SGPM0198',0,0,28000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6980,2,'SGPM0199',0,0,28000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6981,2,'SGPM0200',0,0,23500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6982,2,'SGPM0201',0,0,23500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6983,2,'SGPM0202',0,0,23500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6984,2,'SGPM0203',0,0,23500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6985,2,'SGPM0204',0,0,16800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6986,2,'SGPM0205',0,0,21000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6987,2,'SGPM0206',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6988,2,'SGPM0207',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6989,2,'SGPM0208',0,0,38800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6990,2,'SGPM0209',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6991,2,'SGPM0210',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6992,2,'SGPM0211',0,0,93800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6993,2,'SGPM0212',0,0,93800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6994,2,'SGPM0213',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6995,2,'SGPM0214',0,0,45000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6996,2,'SGPM0215',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6997,2,'SGPM0216',0,0,56300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6998,2,'SGPM0217',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,6999,2,'SGPM0218',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7000,2,'SGPM0219',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7001,2,'SGPM0220',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7002,2,'SGPM0221',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7003,2,'SGPM0222',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7004,2,'SGPM0223',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7005,2,'SGPM0224',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7006,2,'SGPM0225',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7007,2,'SGPM0226',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7008,2,'SLPM0001',0,0,45100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7009,2,'SLPM0002',0,0,51500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7010,2,'SLPM0003',0,0,56300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7011,2,'SLPM0004',0,0,56300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7012,2,'SLPM0005',0,0,56300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7013,2,'SLPM0006',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7014,2,'SLPM0007',0,0,33700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7015,2,'SLPM0008',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7016,2,'SLPM0009',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7017,2,'SLPM0010',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7018,2,'SLPM0011',0,0,43600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7019,2,'SLPM0012',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7020,2,'SLPM0013',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7021,2,'SLPM0014',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7022,2,'SLPM0015',0,0,15400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7023,2,'SLPM0016',0,0,17300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7024,2,'SLPM0017',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7025,2,'SLPM0018',0,0,28000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7026,2,'SLPM0019',0,0,28000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7027,2,'SLPM0020',0,0,7600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7028,2,'SLPM0021',0,0,7600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7029,2,'SLPM0022',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7030,2,'SLPM0023',0,0,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7031,2,'SLPM0024',0,0,22700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7032,2,'SLPM0025',0,0,13900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7033,2,'SLPM0026',0,0,8700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7034,2,'SLPM0027',0,0,6000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7035,2,'SLPM0028',0,0,16200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7036,2,'SLPM0029',0,0,14700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7037,2,'SLPM0030',0,0,16200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7038,2,'SLPM0031',0,0,16200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7039,2,'SLPM0032',0,0,16200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7040,2,'SLPM0033',0,0,16200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7041,2,'SLPM0034',0,0,9400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7042,2,'SLPM0035',0,0,12200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7043,2,'SLPM0036',0,0,12200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7044,2,'SLPM0037',0,0,5800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7045,2,'SLPM0038',0,0,5800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7046,2,'SLPM0039',0,0,17000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7047,2,'SLPM0040',0,0,17000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7048,2,'SLPM0041',0,0,17000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7049,2,'SLPM0042',0,0,17000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7050,2,'SLPM0043',0,0,17000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7051,2,'SLPM0044',0,0,20100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7052,2,'SLPM0045',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7053,2,'SLPM0046',0,0,45700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7054,2,'SLPM0047',0,0,31300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7055,2,'SLPM0048',0,0,28200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7056,2,'SLPM0049',0,0,23800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7057,2,'SLPM0050',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7058,2,'SLPM0051',0,0,29000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7059,2,'SLPM0052',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7060,2,'SLPM0053',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7061,2,'SLPM0054',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7062,2,'SLPM0055',0,0,17000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7063,2,'SLPM0056',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7064,2,'SLPM0057',0,0,28000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7065,2,'SLPM0058',0,0,28000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7066,2,'SLPM0059',0,0,23500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7067,2,'SLPM0060',0,0,23500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7068,2,'SLPM0061',0,0,23500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7069,2,'SLPM0062',0,0,23500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7070,2,'SLPM0063',0,0,16800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7071,2,'SLPM0064',0,0,21000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7072,2,'SLPM0065',0,0,32500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7073,2,'SLPM0066',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7074,2,'SLPM0067',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7075,2,'SLPM0068',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7076,2,'SLPM0069',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7077,2,'SLPM0070',0,0,49800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7078,2,'SLPM0071',0,0,49800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7079,2,'SLPM0072',0,0,30900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7080,2,'SLPM0073',0,0,30900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7081,2,'SLPM0074',0,0,30900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7082,2,'SLPM0075',0,0,49900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7083,2,'SLPM0076',0,0,49900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7084,2,'SLPM0077',0,0,49900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7085,2,'SLPM0078',0,0,49900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7086,2,'SLPM0079',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7087,2,'SLPM0080',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7088,2,'SLPM0081',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7089,2,'SLPM0082',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7090,2,'SLPM0083',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7091,2,'SLPM0084',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7092,2,'SLPM0085',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7093,2,'SLPM0086',0,0,1200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7094,2,'SLPM0087',0,0,1200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7095,2,'SLPM0088',0,0,1200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7096,2,'SLPM0089',0,0,1200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7097,2,'SLPM0090',0,0,162500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7098,2,'SLPM0091',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7099,2,'SLPM0092',0,0,31100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7100,2,'SLPM0093',0,0,3800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7101,2,'SMPM0001',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7102,2,'SMPM0002',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7103,2,'SMPM0003',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7104,2,'SMPM0004',0,0,800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7105,2,'SMPM0005',0,0,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7106,2,'SMPM0006',0,0,3800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7107,2,'SMPM0007',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7108,2,'SMPM0008',0,0,31300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7109,2,'SMPM0009',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7110,2,'SMPM0010',0,0,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7111,2,'SMPM0011',0,0,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7112,2,'SMPM0012',0,0,5500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7113,2,'SMPM0013',0,0,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7114,2,'SMPM0014',0,0,3300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7115,2,'SMPM0015',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7116,2,'SMPM0016',0,0,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7117,2,'SMPM0017',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7118,2,'SMPM0018',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7119,2,'SMPM0019',0,0,9000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7120,2,'SMPM0020',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7121,2,'SMPM0021',0,0,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7122,2,'SMPM0022',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7123,2,'SMPM0023',0,0,1700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7124,2,'SMPM0024',0,0,6300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7125,2,'SMPM0025',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7126,2,'SMPM0026',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7127,2,'SMPM0027',0,0,31100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7128,2,'SMPM0028',0,0,3800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7129,2,'SMPM0029',0,0,21300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7130,2,'SMPM0030',0,0,38800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7131,2,'SNPM0001',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7132,2,'SNPM0002',0,0,32500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7133,2,'SNPM0003',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7134,2,'SNPM0004',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7135,2,'SNPM0005',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7136,2,'SNPM0006',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7137,2,'SNPM0007',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7138,2,'SNPM0008',0,0,34400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7139,2,'SNPM0009',0,0,34400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7140,2,'SNPM0010',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7141,2,'SNPM0011',0,0,47200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7142,2,'SNPM0012',0,0,62400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7143,2,'SNPM0013',0,0,46900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7144,2,'SNPM0014',0,0,64500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7145,2,'SNPM0015',0,0,64500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7146,2,'SNPM0016',0,0,64500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7147,2,'SNPM0017',0,0,15700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7148,2,'SNPM0018',0,0,15700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7149,2,'SNPM0019',0,0,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7150,2,'SNPM0020',0,0,31300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7151,2,'SNPM0021',0,0,70400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7152,2,'SNPM0022',0,0,64500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7153,2,'SNPM0023',0,0,64500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7154,2,'SNPM0024',0,0,62400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7155,2,'SNPM0025',0,0,31300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7156,2,'SNPM0026',0,0,86000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7157,2,'SNPM0027',0,0,21100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7158,2,'SNPM0028',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7159,2,'SNPM0029',0,0,64500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7160,2,'SNPM0030',0,0,64500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7161,2,'SNPM0031',0,0,64500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7162,2,'SNPM0032',0,0,64500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7163,2,'SNPM0033',0,0,70400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7164,2,'SNPM0034',0,0,93800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7165,2,'SNPM0035',0,0,64500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7166,2,'SNPM0036',0,0,68000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7167,2,'SNPM0037',0,0,93000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7168,2,'SNPM0038',0,0,42200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7169,2,'SNPM0039',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7170,2,'SNPM0040',0,0,42200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7171,2,'SNPM0041',0,0,42200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7172,2,'SNPM0042',0,0,42200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7173,2,'SNPM0043',0,0,42200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7174,2,'SNPM0044',0,0,86000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7175,2,'SNPM0045',0,0,84400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7176,2,'SNPM0046',0,0,86000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7177,2,'SNPM0047',0,0,86000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7178,2,'SNPM0048',0,0,43000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7179,2,'SNPM0049',0,0,93800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7180,2,'SNPM0050',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7181,2,'SNPM0051',0,0,42200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7182,2,'SNPM0052',0,0,65700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7183,2,'SNPM0053',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7184,2,'SNPM0054',0,0,36000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7185,2,'SNPM0055',0,0,93800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7186,2,'SNPM0056',0,0,42200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7187,2,'SNPM0057',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7188,2,'SNPM0058',0,0,68000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7189,2,'SNPM0059',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7190,2,'SNPM0060',0,0,31100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7191,2,'SNPM0061',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7192,2,'SNPM0062',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7193,2,'SNPM0063',0,0,42200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7194,2,'SNPM0064',0,0,54000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7195,2,'SNPM0065',0,0,54000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7196,2,'SNPM0066',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7197,2,'SNPM0067',0,0,68000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7198,2,'SNPM0068',0,0,64500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7199,2,'SNPM0069',0,0,64500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7200,2,'SNPM0070',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7201,2,'SNPM0071',0,0,45800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7202,2,'SNPM0072',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7203,2,'SNPM0073',0,0,21400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7204,2,'SNPM0074',0,0,31300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7205,2,'SNPM0075',0,0,42200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7206,2,'SNPM0076',0,0,9400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7207,2,'SNPM0077',0,0,9400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7208,2,'SNPM0078',0,0,93800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7209,2,'SNPM0079',0,0,45800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7210,2,'SNPM0080',0,0,10200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7211,2,'SNPM0081',0,0,10200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7212,2,'SNPM0082',0,0,42200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7213,2,'SNPM0083',0,0,20800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7214,2,'SNPM0084',0,0,31300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7215,2,'SNPM0085',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7216,2,'SNPM0086',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7217,2,'SNPM0087',0,0,218800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7218,2,'SNPM0088',0,0,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7219,2,'SNPM0089',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7220,2,'SNPM0090',0,0,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7221,2,'SNPM0091',0,0,93800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7222,2,'SNPM0092',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7223,2,'SNPM0093',0,0,70000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7224,2,'SNPM0094',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7225,2,'SNPM0095',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7226,2,'SNPM0096',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7227,2,'SNPM0097',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7228,2,'SNPM0098',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7229,2,'SNPM0099',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7230,2,'SNPM0100',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7231,2,'SNPM0101',0,0,70000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7232,2,'SNPM0102',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7233,2,'SNPM0103',0,0,80000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7234,2,'SNPM0104',0,0,90000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7235,2,'SNPM0105',0,0,51520,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7236,2,'SNPM0106',0,0,70000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7237,2,'SNPM0107',0,0,90000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7238,2,'SNPM0108',0,0,70000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7239,2,'SNPM0109',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7240,2,'SNPM0110',0,0,80000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7241,2,'SNPM0111',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7242,2,'SNPM0112',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7243,2,'SNPM0113',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7244,2,'SNPM0114',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7245,2,'SNPM0115',0,0,45000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7246,2,'SNPM0116',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7247,2,'SNPM0117',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7248,2,'SNPM0118',0,0,70000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7249,2,'SNPM0119',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7250,2,'SNPM0120',0,0,110000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7251,2,'SNPM0121',0,0,100000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7252,2,'SNPM0122',0,0,85000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7253,2,'SNPM0123',0,0,34270,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7254,2,'SNPM0124',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7255,2,'SNPM0125',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7256,2,'SNPM0126',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7257,2,'SNPM0127',0,0,34270,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7258,2,'SNPM0128',0,0,45000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7259,2,'SNPM0129',0,0,65000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7260,2,'SNPM0130',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7261,2,'SNPM0131',0,0,69000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7262,2,'SNPM0132',0,0,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7263,2,'SNPM0133',0,0,34270,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7264,2,'SNPM0134',0,0,68540,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7265,2,'SNPM0135',0,0,17020,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7266,2,'SNPM0136',0,0,100000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7267,2,'SNPM0137',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7268,2,'SNPM0138',0,0,120000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7269,2,'SNPM0139',0,0,120000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7270,2,'SNPM0140',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7271,2,'SNPM0141',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7272,2,'SNPM0142',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7273,2,'SNPM0143',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7274,2,'SNPM0144',0,0,38800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7275,2,'SNPM0145',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7276,2,'SNPM0146',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7277,2,'SNPM0147',0,0,93800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7278,2,'SNPM0148',0,0,93800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7279,2,'SNPM0149',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7280,2,'SNPM0150',0,0,45000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7281,2,'SNPM0151',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7282,2,'SNPM0152',0,0,56300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7283,2,'SNPM0153',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7284,2,'SNPM0154',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7285,2,'SNPM0155',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7286,2,'SNPM0156',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7287,2,'SNPM0157',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7288,2,'SNPM0158',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7289,2,'SNPM0159',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7290,2,'SNPM0160',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7291,2,'SNPM0161',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7292,2,'SNPM0162',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7293,2,'SOPM0001',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7294,2,'SOPM0002',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7295,2,'SOPM0003',0,0,53600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7296,2,'SOPM0004',0,0,53600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7297,2,'SOPM0005',0,0,38500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7298,2,'SOPM0006',0,0,38500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7299,2,'SOPM0007',0,0,53600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7300,2,'SOPM0008',0,0,53600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7301,2,'SOPM0009',0,0,88100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7302,2,'SOPM0010',0,0,72500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7303,2,'SOPM0011',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7304,2,'SOPM0012',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7305,2,'SOPM0013',0,0,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7306,2,'SOPM0014',0,0,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7307,2,'SOPM0015',0,0,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7308,2,'SOPM0016',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7309,2,'SOPM0017',0,0,38000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7310,2,'SOPM0018',0,0,13900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7311,2,'SOPM0019',0,0,11600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7312,2,'SOPM0020',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7313,2,'SOPM0021',0,0,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7314,2,'SOPM0022',0,0,10500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7315,2,'SOPM0023',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7316,2,'SOPM0024',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7317,2,'SOPM0025',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7318,2,'SOPM0026',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7319,2,'SOPM0027',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7320,2,'SOPM0028',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7321,2,'SOPM0029',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7322,2,'SOPM0030',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7323,2,'SOPM0031',0,0,31300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7324,2,'SOPM0032',0,0,6400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7325,2,'SOPM0033',0,0,17400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7326,2,'SOPM0034',0,0,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7327,2,'SOPM0035',0,0,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7328,2,'SOPM0036',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7329,2,'SOPM0037',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7330,2,'SOPM0038',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7331,2,'SOPM0039',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7332,2,'SOPM0040',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7333,2,'SOPM0041',0,0,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7334,2,'SOPM0042',0,0,9800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7335,2,'SOPM0043',0,0,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7336,2,'SOPM0044',0,0,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7337,2,'SOPM0045',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7338,2,'SOPM0046',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7339,2,'SOPM0047',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7340,2,'SOPM0048',0,0,16900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7341,2,'SOPM0049',0,0,24700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7342,2,'SOPM0050',0,0,3400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7343,2,'SOPM0051',0,0,11300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7344,2,'SOPM0052',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7345,2,'SOPM0053',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7346,2,'SOPM0054',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7347,2,'SOPM0055',0,0,3400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7348,2,'SOPM0056',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7349,2,'SOPM0057',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7350,2,'SOPM0058',0,0,34700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7351,2,'SOPM0059',0,0,4900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7352,2,'SOPM0060',0,0,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7353,2,'SOPM0061',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7354,2,'SOPM0062',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7355,2,'SOPM0063',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7356,2,'SOPM0064',0,0,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7357,2,'SOPM0065',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7358,2,'SOPM0066',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7359,2,'SOPM0067',0,0,5700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7360,2,'SOPM0068',0,0,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7361,2,'SOPM0069',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7362,2,'SOPM0070',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7363,2,'SOPM0071',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7364,2,'SOPM0072',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7365,2,'SOPM0073',0,0,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7366,2,'SOPM0074',0,0,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7367,2,'SOPM0075',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7368,2,'SOPM0076',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7369,2,'SOPM0077',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7370,2,'SOPM0078',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7371,2,'SOPM0079',0,0,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7372,2,'SOPM0080',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7373,2,'SOPM0081',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7374,2,'SOPM0082',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7375,2,'SOPM0083',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7376,2,'SOPM0084',0,0,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7377,2,'SOPM0085',0,0,8500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7378,2,'SOPM0086',0,0,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7379,2,'SOPM0087',0,0,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7380,2,'SOPM0088',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7381,2,'SOPM0089',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7382,2,'SOPM0090',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7383,2,'SOPM0091',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7384,2,'SOPM0092',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7385,2,'SOPM0093',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7386,2,'SOPM0094',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7387,2,'SOPM0095',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7388,2,'SOPM0096',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7389,2,'SOPM0097',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7390,2,'SOPM0098',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7391,2,'SOPM0099',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7392,2,'SOPM0100',0,0,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7393,2,'SOPM0101',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7394,2,'SOPM0102',0,0,6000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7395,2,'SOPM0103',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7396,2,'SOPM0104',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7397,2,'SOPM0105',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7398,2,'SOPM0106',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7399,2,'SOPM0107',0,0,3800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7400,2,'SOPM0108',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7401,2,'SOPM0109',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7402,2,'SOPM0110',0,0,40250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7403,2,'SOPM0111',0,0,3800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7404,2,'SOPM0112',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7405,2,'SOPM0113',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7406,2,'SOPM0114',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7407,2,'SOPM0115',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7408,2,'SOPM0116',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7409,2,'SOPM0117',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7410,2,'SOPM0118',0,0,49800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7411,2,'SOPM0119',0,0,50700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7412,2,'SPPM0001',0,0,65300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7413,2,'SPPM0002',0,0,65300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7414,2,'SPPM0003',0,0,72600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7415,2,'SPPM0004',0,0,95300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7416,2,'SPPM0005',0,0,31300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7417,2,'SPPM0006',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7418,2,'SPPM0007',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7419,2,'SPPM0008',0,0,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7420,2,'SPPM0009',0,0,42200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7421,2,'SPPM0010',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7422,2,'SPPM0011',0,0,39900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7423,2,'SPPM0012',0,0,49300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7424,2,'SPPM0013',0,0,100000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7425,2,'SPPM0014',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7426,2,'SPPM0015',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7427,2,'SPPM0016',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7428,2,'SPPM0017',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7429,2,'SPPM0018',0,0,31300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7430,2,'SPPM0019',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7431,2,'SPPM0020',0,0,50400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7432,2,'SPPM0021',0,0,4700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7433,2,'SPPM0022',0,0,3800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7434,2,'SPPM0023',0,0,56300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7435,2,'SPPM0024',0,0,48300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7436,2,'SPPM0025',0,0,28750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7437,2,'SPPM0026',0,0,112500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7438,2,'SPPM0027',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7439,2,'SPPM0028',0,0,21300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7440,2,'SSPM0001',0,0,85300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7441,2,'SSPM0002',0,0,57000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7442,2,'SSPM0003',0,0,61200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7443,2,'SSPM0004',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7444,2,'SSPM0005',0,0,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7445,2,'SSPM0006',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7446,2,'SSPM0007',0,0,22500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7447,2,'SSPM0008',0,0,22500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7448,2,'SSPM0009',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7449,2,'SSPM0010',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7450,2,'SSPM0011',0,0,16500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7451,2,'SSPM0012',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7452,2,'SSPM0013',0,0,25400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7453,2,'SSPM0014',0,0,16900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7454,2,'SSPM0015',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7455,2,'SSPM0016',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7456,2,'SSPM0017',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7457,2,'SSPM0018',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7458,2,'SSPM0019',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7459,2,'SSPM0020',0,0,26700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7460,2,'SSPM0021',0,0,26700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7461,2,'SSPM0022',0,0,11800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7462,2,'SSPM0023',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7463,2,'SSPM0024',0,0,21000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7464,2,'SSPM0025',0,0,31100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7465,2,'SSPM0026',0,0,31100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7466,2,'SSPM0027',0,0,31100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7467,2,'SSPM0028',0,0,31100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7468,2,'SSPM0029',0,0,11300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7469,2,'SSPM0030',0,0,11300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7470,2,'SSPM0031',0,0,31700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7471,2,'SSPM0032',0,0,35200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7472,2,'SSPM0033',0,0,35200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7473,2,'SSPM0034',0,0,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7474,2,'SSPM0035',0,0,22900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7475,2,'SSPM0036',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7476,2,'SSPM0037',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7477,2,'SSPM0038',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7478,2,'SSPM0039',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7479,2,'SSPM0040',0,0,20300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7480,2,'SSPM0041',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7481,2,'SSPM0042',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7482,2,'SSPM0043',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7483,2,'SSPM0044',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7484,2,'SSPM0045',0,0,5300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7485,2,'SSPM0046',0,0,5300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7486,2,'SSPM0047',0,0,19800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7487,2,'SSPM0048',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7488,2,'SSPM0049',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7489,2,'SSPM0050',0,0,43600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7490,2,'SSPM0051',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7491,2,'SSPM0052',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7492,2,'SSPM0053',0,0,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7493,2,'SSPM0054',0,0,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7494,2,'SSPM0055',0,0,5600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7495,2,'SSPM0056',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7496,2,'SSPM0057',0,0,24400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7497,2,'SSPM0058',0,0,33000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7498,2,'SSPM0059',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7499,2,'SSPM0060',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7500,2,'SSPM0061',0,0,39900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7501,2,'SSPM0062',0,0,26300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7502,2,'SSPM0063',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7503,2,'SSPM0064',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7504,2,'SSPM0065',0,0,18100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7505,2,'SSPM0066',0,0,20400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7506,2,'SSPM0067',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7507,2,'SSPM0068',0,0,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7508,2,'SSPM0069',0,0,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7509,2,'SSPM0070',0,0,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7510,2,'SSPM0071',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7511,2,'SSPM0072',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7512,2,'SSPM0073',0,0,5800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7513,2,'SSPM0074',0,0,5800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7514,2,'SSPM0075',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7515,2,'SSPM0076',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7516,2,'SSPM0077',0,0,7000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7517,2,'SSPM0078',0,0,28000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7518,2,'SSPM0079',0,0,28000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7519,2,'SSPM0080',0,0,16800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7520,2,'SSPM0081',0,0,21000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7521,2,'SSPM0082',0,0,38000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7522,2,'SSPM0083',0,0,3800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7523,2,'SSPM0084',0,0,21300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7524,2,'SSPM0085',0,0,9000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7525,2,'SSPM0086',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7526,2,'SSPM0087',0,0,26800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7527,2,'SSPM0088',0,0,27700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7528,2,'SSPM0089',0,0,48800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7529,2,'SSPM0090',0,0,30800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7530,2,'SSPM0091',0,0,28800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7531,2,'SSPM0092',0,0,33800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7532,2,'SSPM0093',0,0,32000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7533,2,'SSPM0094',0,0,31000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7534,2,'SSPM0095',0,0,16000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7535,2,'SSPM0096',0,0,16500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7536,2,'SSPM0097',0,0,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7537,2,'SSPM0098',0,0,14600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7538,2,'SSPM0099',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7539,2,'SSPM0100',0,0,28600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7540,2,'SSPM0101',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7541,2,'SSPM0102',0,0,31500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7542,2,'SSPM0103',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7543,2,'SSPM0104',0,0,26800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7544,2,'SSPM0105',0,0,35400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7545,2,'SSPM0106',0,0,41700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7546,2,'SSPM0107',0,0,50400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7547,2,'SSPM0108',0,0,38500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7548,2,'SSPM0109',0,0,38500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7549,2,'SSPM0110',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7550,2,'SSPM0111',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7551,2,'SSPM0112',0,0,30500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7552,2,'SSPM0113',0,0,40500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7553,2,'SSPM0114',0,0,19700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7554,2,'SSPM0115',0,0,19700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7555,2,'SSPM0116',0,0,23800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7556,2,'SSPM0117',0,0,19700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7557,2,'SSPM0118',0,0,22500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7558,2,'SSPM0119',0,0,23800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7559,2,'SSPM0120',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7560,2,'SSPM0121',0,0,48800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7561,2,'SSPM0122',0,0,25300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7562,2,'SSPM0123',0,0,48800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7563,2,'SSPM0124',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7564,2,'SSPM0125',0,0,18400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7565,2,'SSPM0126',0,0,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7566,2,'SSPM0127',0,0,46000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7567,2,'SSPM0128',0,0,17500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7568,2,'SSPM0129',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7569,2,'SSPM0130',0,0,43800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7570,2,'SSPM0131',0,0,48000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7571,2,'SSPM0132',0,0,17500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7572,2,'SSPM0133',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7573,2,'SSPM0134',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7574,2,'SSPM0135',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7575,2,'SSPM0136',0,0,51750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7576,2,'SSPM0137',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7577,2,'SSPM0138',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7578,2,'SSPM0139',0,0,56300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7579,2,'SSPM0140',0,0,100625,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7580,2,'SSPM0141',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7581,2,'SSPM0142',0,0,86250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7582,2,'SSPM0143',0,0,126500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7583,2,'SSPM0144',0,0,118800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7584,2,'SSPM0145',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7585,2,'SSPM0146',0,0,81300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7586,2,'SSPM0147',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7587,2,'SSPM0148',0,0,48800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7588,2,'SSPM0149',0,0,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7589,2,'SSPM0150',0,0,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7590,2,'SSPM0151',0,0,51300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7591,2,'SSPM0152',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7592,2,'SSPM0153',0,0,38800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7593,2,'SSPM0154',0,0,46000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7594,2,'SSPM0155',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7595,2,'SSPM0156',0,0,48000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7596,2,'SSPM0157',0,0,41300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7597,2,'SSPM0158',0,0,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7598,2,'SSPM0159',0,0,70000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7599,2,'SSPM0160',0,0,53800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7600,2,'SSPM0161',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7601,2,'SSPM0162',0,0,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7602,2,'SSPM0163',0,0,26000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7603,2,'SSPM0164',0,0,33800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7604,2,'SSPM0165',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7605,2,'SSPM0166',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7606,2,'SSPM0167',0,0,60000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7607,2,'SSPM0168',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7608,2,'SSPM0169',0,0,57500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7609,2,'SSPM0170',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7610,2,'SSPM0171',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7611,2,'SSPM0172',0,0,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7612,2,'SSPM0173',0,0,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7613,2,'SSPM0174',0,0,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7614,2,'SSPM0175',0,0,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7615,2,'SSPM0176',0,0,40250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7616,2,'SSPM0177',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7617,2,'SSPM0178',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7618,2,'SSPM0179',0,0,29900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7619,2,'SSPM0180',0,0,29100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7620,2,'SSPM0181',0,0,41100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7621,2,'SSPM0182',0,0,45800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7622,2,'SSPM0183',0,0,41100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7623,2,'SSPM0184',0,0,45800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7624,2,'SSPM0185',0,0,54500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7625,2,'SSPM0186',0,0,57800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7626,2,'SSPM0187',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7627,2,'SSPM0188',0,0,41100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7628,2,'SSPM0189',0,0,45800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7629,2,'SSPM0190',0,0,41100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7630,2,'SSPM0191',0,0,45800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7631,2,'SSPM0192',0,0,28600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7632,2,'SSPM0193',0,0,28200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7633,2,'SSPM0194',0,0,38700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7634,2,'SSPM0195',0,0,43400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7635,2,'SSPM0196',0,0,38700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7636,2,'SSPM0197',0,0,43400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7637,2,'SSPM0198',0,0,38700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7638,2,'SSPM0199',0,0,43400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7639,2,'SSPM0200',0,0,39900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7640,2,'SSPM0201',0,0,44600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7641,2,'SSPM0202',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7642,2,'SSPM0203',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7643,2,'SSPM0204',0,0,25400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7644,2,'SSPM0205',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7645,2,'SSPM0206',0,0,42200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7646,2,'SSPM0207',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7647,2,'SSPM0208',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7648,2,'SSPM0209',0,0,12600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7649,2,'SSPM0210',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7650,2,'SSPM0211',0,0,24900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7651,2,'SSPM0212',0,0,24900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7652,2,'SSPM0213',0,0,24900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7653,2,'SSPM0214',0,0,6500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7654,2,'SSPM0215',0,0,32800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7655,2,'SSPM0216',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7656,2,'SSPM0217',0,0,39900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7657,2,'SSPM0218',0,0,44600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7658,2,'SSPM0219',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7659,2,'SSPM0220',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7660,2,'SSPM0221',0,0,36400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7661,2,'SSPM0222',0,0,112500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7662,2,'SSPM0223',0,0,20500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7663,2,'SSPM0224',0,0,6400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7664,2,'SSPM0225',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7665,2,'SSPM0226',0,0,5200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7666,2,'SSPM0227',0,0,5900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7667,2,'SSPM0228',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7668,2,'SSPM0229',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7669,2,'SSPM0230',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7670,2,'SSPM0231',0,0,43200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7671,2,'SSPM0232',0,0,3200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7672,2,'SSPM0233',0,0,7100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7673,2,'SSPM0234',0,0,25400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7674,2,'SSPM0235',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7675,2,'SSPM0236',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7676,2,'SSPM0237',0,0,20400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7677,2,'SSPM0238',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7678,2,'SSPM0239',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7679,2,'SSPM0240',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7680,2,'SSPM0241',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7681,2,'SSPM0242',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7682,2,'SSPM0243',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7683,2,'SSPM0244',0,0,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7684,2,'SSPM0245',0,0,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7685,2,'SSPM0246',0,0,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7686,2,'STPM0001',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7687,2,'STPM0002',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7688,2,'STPM0003',0,0,69000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7689,2,'STPM0004',0,0,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7690,2,'STPM0005',0,0,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7691,2,'STPM0006',0,0,38800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7692,2,'STPM0007',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7693,2,'STPM0008',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7694,2,'STPM0009',0,0,93800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7695,2,'STPM0010',0,0,93800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7696,2,'STPM0011',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7697,2,'STPM0012',0,0,45000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7698,2,'STPM0013',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7699,2,'STPM0014',0,0,56300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7700,2,'STPM0015',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7701,2,'STPM0016',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7702,2,'STPM0017',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7703,2,'STPM0018',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7704,2,'STPM0019',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7705,2,'STPM0020',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7706,2,'STPM0021',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7707,2,'STPM0022',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7708,2,'STPM0023',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7709,2,'STPM0024',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7710,2,'STPM0025',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7711,2,'STPM0026',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7712,2,'STPM0027',0,0,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7713,2,'STPM0028',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7714,2,'STPM0029',0,0,14950,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7715,2,'STPM0030',0,0,32200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7716,2,'STPM0031',0,0,57500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7717,2,'STPM0032',0,0,40250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7718,2,'STPM0033',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7719,2,'STPM0034',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7720,2,'STPM0035',0,0,28750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7721,2,'STPM0036',0,0,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7722,2,'STPM0037',0,0,45000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7723,2,'STPM0038',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7724,2,'STPM0039',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7725,2,'STPM0040',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7726,2,'SUPM0001',0,0,4100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7727,2,'SUPM0002',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7728,2,'SUPM0003',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7729,2,'SUPM0004',0,0,700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7730,2,'SUPM0005',0,0,2200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7731,2,'SUPM0006',0,0,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7732,2,'SUPM0007',0,0,33000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7733,2,'SUPM0008',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7734,2,'SUPM0009',0,0,6440,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7735,2,'SUPM0010',0,0,8280,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7736,2,'SUPM0011',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7737,2,'SUPM0012',0,0,44500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7738,2,'SUPM0013',0,0,125100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7739,2,'SUPM0014',0,0,162200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7740,2,'SUPM0015',0,0,162200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7741,2,'SUPM0016',0,0,185700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7742,2,'SUPM0017',0,0,185700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7743,2,'SUPM0018',0,0,144700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7744,2,'SUPM0019',0,0,97100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7745,2,'SUPM0020',0,0,57500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7746,2,'SUPM0021',0,0,80500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7747,2,'SUPM0022',0,0,96800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7748,2,'SUPM0023',0,0,96800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7749,2,'SUPM0024',0,0,48600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7750,2,'SUPM0025',0,0,36100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7751,2,'SUPM0026',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7752,2,'SUPM0027',0,0,32200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7753,2,'SUPM0028',0,0,29900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7754,2,'SUPM0029',0,0,29100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7755,2,'SUPM0030',0,0,45000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7756,2,'SUPM0031',0,0,41100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7757,2,'SUPM0032',0,0,45800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7758,2,'SUPM0033',0,0,41100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7759,2,'SUPM0034',0,0,45800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7760,2,'SUPM0035',0,0,54500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7761,2,'SUPM0036',0,0,57800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7762,2,'SUPM0037',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7763,2,'SUPM0038',0,0,38000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7764,2,'SUPM0039',0,0,38000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7765,2,'SUPM0040',0,0,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7766,2,'SUPM0041',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7767,2,'SUPM0042',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7768,2,'SUPM0043',0,0,1900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7769,2,'SUPM0044',0,0,41100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7770,2,'SUPM0045',0,0,45800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7771,2,'SUPM0046',0,0,41100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7772,2,'SUPM0047',0,0,45800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7773,2,'SUPM0048',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7774,2,'SUPM0049',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7775,2,'SUPM0050',0,0,28000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7776,2,'SUPM0051',0,0,28000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7777,2,'SUPM0052',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7778,2,'SUPM0053',0,0,28600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7779,2,'SUPM0054',0,0,28200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7780,2,'SUPM0055',0,0,38700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7781,2,'SUPM0056',0,0,43400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7782,2,'SUPM0057',0,0,38700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7783,2,'SUPM0058',0,0,43400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7784,2,'SUPM0059',0,0,38700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7785,2,'SUPM0060',0,0,43400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7786,2,'SUPM0061',0,0,39900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7787,2,'SUPM0062',0,0,44600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7788,2,'SUPM0063',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7789,2,'SUPM0064',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7790,2,'SUPM0065',0,0,12700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7791,2,'SUPM0066',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7792,2,'SUPM0067',0,0,36600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7793,2,'SUPM0068',0,0,25400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7794,2,'SUPM0069',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7795,2,'SUPM0070',0,0,42200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7796,2,'SUPM0071',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7797,2,'SUPM0072',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7798,2,'SUPM0073',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7799,2,'SUPM0074',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7800,2,'SUPM0075',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7801,2,'SUPM0076',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7802,2,'SUPM0077',0,0,39900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7803,2,'SUPM0078',0,0,42200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7804,2,'SUPM0079',0,0,81300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7805,2,'SUPM0080',0,0,12600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7806,2,'SUPM0081',0,0,6600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7807,2,'SUPM0082',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7808,2,'SUPM0083',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7809,2,'SUPM0084',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7810,2,'SUPM0085',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7811,2,'SUPM0086',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7812,2,'SUPM0087',0,0,24900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7813,2,'SUPM0088',0,0,24900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7814,2,'SUPM0089',0,0,24900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7815,2,'SUPM0090',0,0,6500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7816,2,'SUPM0091',0,0,32800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7817,2,'SUPM0092',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7818,2,'SUPM0093',0,0,39900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7819,2,'SUPM0094',0,0,44600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7820,2,'SUPM0095',0,0,5300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7821,2,'SUPM0096',0,0,32900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7822,2,'SUPM0097',0,0,31900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7823,2,'SUPM0098',0,0,36400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7824,2,'SUPM0099',0,0,112500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7825,2,'SUPM0100',0,0,20500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7826,2,'SUPM0101',0,0,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7827,2,'SUPM0102',0,0,36400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7828,2,'SUPM0103',0,0,24800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7829,2,'SUPM0104',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7830,2,'SUPM0105',0,0,27500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7831,2,'SUPM0106',0,0,29800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7832,2,'SUPM0107',0,0,3200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7833,2,'SUPM0108',0,0,6400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7834,2,'SUPM0109',0,0,29500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7835,2,'SUPM0110',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7836,2,'SUPM0111',0,0,5200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7837,2,'SUPM0112',0,0,5900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7838,2,'SUPM0113',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7839,2,'SUPM0114',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7840,2,'SUPM0115',0,0,75000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7841,2,'SUPM0116',0,0,43200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7842,2,'SUPM0117',0,0,3200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7843,2,'SUPM0118',0,0,7100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7844,2,'SUPM0119',0,0,25400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7845,2,'SUPM0120',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7846,2,'SUPM0121',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7847,2,'SUPM0122',0,0,20400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7848,2,'SUPM0123',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7849,2,'SUPM0124',0,0,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7850,2,'SUPM0125',0,0,7100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7851,2,'SUPM0126',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7852,2,'SUPM0127',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7853,2,'SUPM0128',0,0,37300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7854,2,'SUPM0129',0,0,68000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7855,2,'SUPM0130',0,0,70400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7856,2,'SUPM0131',0,0,38700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7857,2,'SUPM0132',0,0,38700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7858,2,'SUPM0133',0,0,12700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7859,2,'SUPM0134',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7860,2,'SUPM0135',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7861,2,'SUPM0136',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7862,2,'SUPM0137',0,0,18800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7863,2,'SUPM0138',0,0,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7864,2,'SUPM0139',0,0,43800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7865,2,'SUPM0140',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7866,2,'SUPM0141',0,0,14100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7867,2,'SUPM0142',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7868,2,'SUPM0143',0,0,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7869,2,'SUPM0144',0,0,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7870,2,'SUPM0145',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7871,2,'SUPM0146',0,0,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7872,2,'SUPM0147',0,0,49800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7873,2,'SUPM0148',0,0,50700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7874,2,'SUPM0149',0,0,27500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7875,2,'SUPM0150',0,0,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7876,2,'SUPM0151',0,0,38000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7877,2,'SUPM0152',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7878,2,'SUPM0153',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7879,2,'SUPM0154',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7880,2,'SUPM0155',0,0,38000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7881,2,'SUPM0156',0,0,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7882,2,'SUPM0157',0,0,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7883,2,'SUPM0158',0,0,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7884,2,'SUPM0159',0,0,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7885,2,'SUPM0160',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7886,2,'SUPM0161',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7887,2,'SUPM0162',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7888,2,'SUPM0163',0,0,40250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7889,2,'SUPM0164',0,0,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7890,2,'SUPM0165',0,0,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7891,2,'SUPM0166',0,0,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7892,2,'SUPM0167',0,0,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7893,2,'SUPM0168',0,0,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7894,2,'SUPM0169',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7895,2,'SUPM0170',0,0,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7896,2,'SUPM0171',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7897,2,'SUPM0172',0,0,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7898,2,'SUPM0173',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7899,2,'SUPM0174',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7900,2,'SUPM0175',0,0,28750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7901,2,'SUPM0176',0,0,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7902,2,'SUPM0177',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7903,2,'SUPM0178',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7904,2,'SUPM0179',0,0,28750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7905,2,'SUPM0180',0,0,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7906,2,'SUPM0181',0,0,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7907,2,'SUPM0182',0,0,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7908,2,'SUPM0183',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7909,2,'SUPM0184',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7910,2,'SUPM0185',0,0,43700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7911,2,'SUPM0186',0,0,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7912,2,'SUPM0187',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7913,2,'SVPM0001',0,0,24000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7914,2,'SVPM0002',0,0,30700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7915,2,'SVPM0003',0,0,41300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7916,2,'SVPM0004',0,0,95300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7917,2,'SVPM0005',0,0,37500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7918,2,'SVPM0006',0,0,5600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7919,2,'SVPM0007',0,0,137500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7920,2,'SVPM0008',0,0,137500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7921,2,'SVPM0009',0,0,137500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7922,2,'SVPM0010',0,0,137500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7923,2,'SVPM0011',0,0,137500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7924,2,'SVPM0012',0,0,137500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7925,2,'SVPM0013',0,0,137500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7926,2,'SVPM0014',0,0,165000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7927,2,'SVPM0015',0,0,165000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7928,2,'SVPM0016',0,0,165000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7929,2,'SVPM0017',0,0,165000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7930,2,'SVPM0018',0,0,165000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7931,2,'SVPM0019',0,0,165000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7932,2,'SVPM0020',0,0,165000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7933,2,'SVPM0021',0,0,165000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7934,2,'SVPM0022',0,0,165000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7935,2,'SVPM0023',0,0,165000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7936,2,'SVPM0024',0,0,165000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7937,2,'SVPM0025',0,0,165000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7938,2,'SVPM0026',0,0,165000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7939,2,'SVPM0027',0,0,165000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7940,2,'SVPM0028',0,0,165000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7941,2,'SVPM0029',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7942,2,'SVPM0030',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7943,2,'SVPM0031',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7944,2,'SVPM0032',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7945,2,'SVPM0033',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7946,2,'SVPM0034',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7947,2,'SVPM0035',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7948,2,'SVPM0036',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7949,2,'SVPM0037',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7950,2,'SVPM0038',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7951,2,'SVPM0039',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7952,2,'SVPM0040',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7953,2,'SVPM0041',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7954,2,'SVPM0042',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7955,2,'SVPM0043',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7956,2,'SVPM0044',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7957,2,'SVPM0045',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7958,2,'SVPM0046',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7959,2,'SVPM0047',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7960,2,'SVPM0048',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7961,2,'SVPM0049',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7962,2,'SVPM0050',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7963,2,'SVPM0051',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7964,2,'SVPM0052',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7965,2,'SVPM0053',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7966,2,'SVPM0054',0,0,275000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7967,2,'SVPM0055',0,0,162400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7968,2,'SVPM0056',0,0,163700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7969,2,'SVPM0057',0,0,163700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7970,2,'SVPM0058',0,0,163700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7971,2,'SVPM0059',0,0,195300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7972,2,'SVPM0060',0,0,233800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7973,2,'SVPM0061',0,0,78400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7974,2,'SVPM0062',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7975,2,'SVPM0063',0,0,152700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7976,2,'SVPM0064',0,0,41300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7977,2,'SVPM0065',0,0,92200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7978,2,'SVPM0066',0,0,78400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7979,2,'SVPM0067',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7980,2,'SVPM0068',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7981,2,'SVPM0069',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7982,2,'SVPM0070',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7983,2,'SVPM0071',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7984,2,'SVPM0072',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7985,2,'SVPM0073',0,0,206300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7986,2,'SVPM0074',0,0,165000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7987,2,'SVPM0075',0,0,165000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7988,2,'SVPM0076',0,0,90100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7989,2,'SVPM0077',0,0,90100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7990,2,'SVPM0078',0,0,88700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7991,2,'SVPM0079',0,0,88700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7992,2,'SVPM0080',0,0,88700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7993,2,'SVPM0081',0,0,88700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7994,2,'SVPM0082',0,0,193900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7995,2,'SVPM0083',0,0,193900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7996,2,'SVPM0084',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7997,2,'SVPM0085',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7998,2,'SVPM0086',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,7999,2,'SVPM0087',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8000,2,'SVPM0088',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8001,2,'SVPM0089',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8002,2,'SVPM0090',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8003,2,'SVPM0091',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8004,2,'SVPM0092',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8005,2,'SVPM0093',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8006,2,'SVPM0094',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8007,2,'SVPM0095',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8008,2,'SVPM0096',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8009,2,'SVPM0097',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8010,2,'SVPM0098',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8011,2,'SVPM0099',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8012,2,'SVPM0100',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8013,2,'SVPM0101',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8014,2,'SVPM0102',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8015,2,'SVPM0103',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8016,2,'SVPM0104',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8017,2,'SVPM0105',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8018,2,'SVPM0106',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8019,2,'SVPM0107',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8020,2,'SVPM0108',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8021,2,'SVPM0109',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8022,2,'SVPM0110',0,0,38500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8023,2,'SVPM0111',0,0,41300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8024,2,'SVPM0112',0,0,41300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8025,2,'SVPM0113',0,0,61900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8026,2,'SVPM0114',0,0,61900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8027,2,'SVPM0115',0,0,61900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8028,2,'SVPM0116',0,0,61900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8029,2,'SVPM0117',0,0,61900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8030,2,'SVPM0118',0,0,96300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8031,2,'SVPM0119',0,0,27500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8032,2,'SVPM0120',0,0,89400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8033,2,'SVPM0121',0,0,90100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8034,2,'SVPM0122',0,0,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8035,2,'SVPM0123',0,0,41300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8036,2,'SVPM0124',0,0,130700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8037,2,'SVPM0125',0,0,103200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8038,2,'SVPM0126',0,0,196100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8039,2,'SVPM0127',0,0,196100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8040,2,'SVPM0128',0,0,196100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8041,2,'SVPM0129',0,0,97700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8042,2,'SVPM0130',0,0,116900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8043,2,'SVPM0131',0,0,68800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8044,2,'SVPM0132',0,0,27500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8045,2,'SVPM0133',0,0,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8046,2,'SVPM0134',0,0,39600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8047,2,'SVPM0135',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8048,2,'SVPM0136',0,0,57500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8049,2,'SVPM0137',0,0,162400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8050,2,'SVPM0138',0,0,97750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8051,2,'SVPM0139',0,0,224900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8052,2,'SVPM0140',0,0,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8053,2,'SVPM0141',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8054,2,'SVPM0142',0,0,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8055,2,'SVPM0143',0,0,62500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8056,2,'SVPM0144',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8057,2,'SVPM0145',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8058,2,'SVPM0146',0,0,4400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8059,2,'SVPM0147',0,0,2200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8060,2,'SVPM0148',0,0,2200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8061,2,'SVPM0149',0,0,2200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8062,2,'SVPM0150',0,0,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8063,2,'SVPM0151',0,0,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8064,2,'SVPM0152',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8065,2,'SVPM0153',0,0,100000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8066,2,'SVPM0154',0,0,99475,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8067,2,'SVPM0155',0,0,83375,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8068,2,'SVPM0156',0,0,36800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8069,2,'SVPM0157',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8070,2,'SVPM0158',0,0,46000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8071,2,'SVPM0159',0,0,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8072,2,'SVPM0160',0,0,28750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8073,2,'SVPM0161',0,0,94300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8074,2,'SVPM0162',0,0,86250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8075,2,'SVPM0163',0,0,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8076,2,'SVPM0164',0,0,57500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8077,2,'SVPM0165',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8078,2,'SVPM0166',0,0,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8079,2,'SVPM0167',0,0,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8080,2,'SVPM0168',0,0,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8081,2,'SVPM0169',0,0,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8082,2,'SVPM0170',0,0,78200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8083,2,'SVPM0171',0,0,78200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8084,2,'SVPM0172',0,0,80500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8085,2,'SVPM0173',0,0,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8086,2,'SVPM0174',0,0,46000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8087,2,'SVPM0175',0,0,46000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8088,2,'SVPM0176',0,0,105000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8089,2,'SVPM0177',0,0,120000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8090,2,'SVPM0178',0,0,90850,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8091,2,'SVPM0179',0,0,65000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8092,2,'SVPM0180',0,0,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8093,2,'SVPM0181',0,0,57500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8094,2,'SVPM0182',0,0,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8095,2,'SVPM0183',0,0,57500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8096,2,'SVPM0184',0,0,57500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8097,2,'SVPM0185',0,0,97750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8098,2,'SVPM0186',0,0,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8099,2,'SVPM0187',0,0,28750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8100,2,'SVPM0188',0,0,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8101,2,'SVPM0189',0,0,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8102,2,'SVPM0190',0,0,46000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8103,2,'SVPM0191',0,0,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,8105,3,'OTCG0001',0,135,135,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8106,3,'OTCG0002',0,270,270,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8107,3,'OTCG0003',0,50,50,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8108,3,'OTCG0004',0,108,108,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8109,3,'OTCG0005',0,120,120,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8110,3,'OTCG0006',0,193,193,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8111,3,'OTCG0007',0,345,345,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8112,3,'OTCG0008',0,460,460,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8113,3,'OTCG0009',0,380,380,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8114,3,'OTCG0010',0,317,317,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8115,3,'OTCG0011',0,230,230,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8116,3,'OTCG0012',0,36,36,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8117,3,'OTCG0013',0,124,124,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8118,3,'OTCG0014',0,1311,1311,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8119,3,'OTCG0015',0,173,173,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8120,3,'OTCG0016',0,414,414,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8121,3,'OTCG0017',0,350,350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8122,3,'OTCG0018',0,83,83,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8123,3,'OTCG0019',0,500,500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8124,3,'OTCG0020',0,420,420,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8125,3,'OTCG0021',0,125,125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8126,3,'OTCG0022',0,1319,1319,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8127,3,'OTCG0023',0,150,150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8128,3,'OTCG0024',0,425,425,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8129,3,'OTCG0025',0,425,425,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8130,3,'OTCG0026',0,550,550,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8131,3,'OTCG0027',0,300,300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8132,3,'OTCG0028',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8133,3,'OTCG0029',0,450,450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8134,3,'OTCG0030',0,425,425,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8135,3,'OTCG0031',0,425,425,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8136,3,'OTCG0032',0,500,500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8137,3,'SKCG0001',0,345,345,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8138,3,'SKCG0002',0,310,310,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8139,3,'SKCG0003',0,130,130,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8140,3,'SKCG0004',0,160,160,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8141,3,'SKCG0005',0,140,140,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8142,3,'SKCG0006',0,97,97,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8143,3,'SKCG0007',0,110,110,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8144,3,'OPCG0001',0,69,69,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8145,3,'OPCG0002',0,138,138,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8146,3,'OPCG0003',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8147,3,'OPCG0004',0,86,86,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8148,3,'OPCG0005',0,58,58,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8149,3,'OPCG0006',0,115,115,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8150,3,'OPCG0007',0,115,115,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8151,3,'OPCG0008',0,69,69,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8152,3,'OPCG0009',0,138,138,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8153,3,'OPCG0010',0,5750,5750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8154,3,'OPCG0011',0,5000,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8155,3,'OPCG0012',0,690,690,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8156,3,'OPCG0013',0,460,460,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8157,3,'OPCG0014',0,2300,2300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8158,3,'OPCG0015',0,1200,1200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8159,3,'OPCG0016',0,1800,1800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8160,3,'OPCG0017',0,777,777,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8161,3,'OPCG0018',0,2800,2800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8162,3,'OPCG0019',0,1150,1150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8163,3,'OPCG0020',0,12144,12144,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8164,3,'OPCG0021',0,10930,10930,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8165,3,'OPCG0022',0,13656,13656,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8166,3,'OPCG0023',0,17250,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8167,3,'OPCG0024',0,10350,10350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8168,3,'OPCG0025',0,16675,16675,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8169,3,'OPCG0026',0,16000,16000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8170,3,'OPCG0027',0,69,69,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8171,3,'OPCG0028',0,138,138,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8172,3,'OPCG0029',0,2875,2875,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8173,3,'OPCG0030',0,9500,9500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8174,3,'OPCG0031',0,8280,8280,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8175,3,'OPCG0032',0,2070,2070,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8176,3,'OPCG0033',0,1725,1725,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8177,3,'OPCG0034',0,130,130,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8178,3,'OPCG0035',0,40,40,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8179,3,'OPCG0036',0,67,67,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8180,3,'OPCG0037',0,40,40,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8181,3,'OPCG0038',0,90,90,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8182,3,'OPCG0039',0,45,45,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8183,3,'OPCG0040',0,45,45,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8184,3,'OPCG0041',0,144,144,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8185,3,'OPCG0042',0,144,144,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8186,3,'OPCG0043',0,920,920,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8187,3,'OPCG0044',0,777,777,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8188,3,'OPCG0045',0,207,207,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8189,3,'OPCG0046',0,180,180,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8190,3,'OPCG0047',0,828,828,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8191,3,'OPCG0048',0,207,207,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8192,3,'OPCG0049',0,298,298,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8193,3,'OPCG0050',0,207,207,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8194,3,'OPCG0051',0,35,35,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8195,3,'OPCG0052',0,40,40,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8196,3,'OPCG0053',0,90,90,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8197,3,'OPCG0054',0,156,156,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8198,3,'OPCG0055',0,1913,1913,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8199,3,'OPCG0056',0,150,150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8200,3,'OPCG0057',0,79,79,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8201,3,'OPCG0058',0,150,150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8202,3,'OPCG0059',0,45,45,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8203,3,'OPCG0060',0,30,30,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8204,3,'OPCG0061',0,50,50,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8205,3,'OPCG0062',0,52,52,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8206,3,'OPCG0063',0,50,50,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8207,3,'OPCG0064',0,58,58,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8208,3,'OPCG0065',0,400,400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8209,3,'OPCG0066',0,431,431,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8210,3,'OPCG0067',0,2070,2070,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8211,3,'OPCG0068',0,4950,4950,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8212,3,'OPCG0069',0,6670,6670,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8213,3,'OPCG0070',0,1400,1400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8214,3,'OPCG0071',0,2500,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8215,3,'OPCG0072',0,1550,1550,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8216,3,'OPCG0073',0,518,518,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8217,3,'OPCG0074',0,1380,1380,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8218,3,'OPCG0075',0,2000,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8219,3,'OPCG0076',0,650,650,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8220,3,'OPCG0077',0,1150,1150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8221,3,'OPCG0078',0,1700,1700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8222,3,'OPCG0079',0,104,104,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8223,3,'OPCG0080',0,311,311,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8224,3,'OPCG0081',0,6500,6500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8225,3,'OPCG0082',0,7245,7245,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8226,3,'OPCG0083',0,3000,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8227,3,'OPCG0084',0,3000,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8228,3,'OPCG0085',0,3450,3450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8229,3,'OPCG0086',0,5124,5124,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8230,3,'OPCG0087',0,4658,4658,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8231,3,'OPCG0088',0,5175,5175,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8232,3,'OPCG0089',0,5750,5750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8233,3,'OPCG0090',0,6500,6500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8234,3,'OPCG0091',0,8280,8280,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8235,3,'OPCG0092',0,1350,1350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8236,3,'OPCG0093',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8237,3,'OPCG0094',0,12420,12420,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8238,3,'OPCG0095',0,1035,1035,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8239,3,'OPCG0096',0,2520,2520,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8240,3,'OPCG0097',0,1046,1046,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8241,3,'OPCG0098',0,4500,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8242,3,'OPCG0099',0,6750,6750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8243,3,'OPCG0100',0,6210,6210,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8244,3,'OPCG0101',0,6210,6210,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8245,3,'OPCG0102',0,9315,9315,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8246,3,'OPCG0103',0,2070,2070,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8247,3,'OPCG0104',0,311,311,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8248,3,'OPCG0105',0,6900,6900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8249,3,'OPCG0106',0,1035,1035,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8250,3,'OPCG0107',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8251,3,'OPCG0108',0,1000,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8252,3,'OPCG0109',0,1346,1346,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8253,3,'OPCG0110',0,3105,3105,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8254,3,'OPCG0111',0,2700,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8255,3,'OPCG0112',0,6750,6750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8256,3,'OPCG0113',0,1035,1035,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8257,3,'OPCG0114',0,5175,5175,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8258,3,'OPCG0115',0,810,810,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8259,3,'OPCG0116',0,715,715,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8260,3,'OPCG0117',0,720,720,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8261,3,'OPCG0118',0,10350,10350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8262,3,'OPCG0119',0,1035,1035,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8263,3,'OPCG0120',0,2700,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8264,3,'OPCG0121',0,104,104,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8265,3,'OPCG0122',0,173,173,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8266,3,'OPCG0123',0,3105,3105,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8267,3,'OPCG0124',0,306,306,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8268,3,'OPCG0125',0,1350,1350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8269,3,'OPCG0126',0,3450,3450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8270,3,'OPCG0127',0,5000,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8271,3,'OPCG0128',0,10781,10781,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8272,3,'OPCG0129',0,10000,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8273,3,'OPCG0130',0,6900,6900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8274,3,'OPCG0131',0,12150,12150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8275,3,'OPCG0132',0,6750,6750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8276,3,'OPCG0133',0,5000,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8277,3,'OPCG0134',0,850,850,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8278,3,'OPCG0135',0,1530,1530,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8279,3,'OPCG0136',0,2700,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8280,3,'OPCG0137',0,440,440,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8281,3,'OPCG0138',0,230,230,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8282,3,'OPCG0139',0,2520,2520,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8283,3,'OPCG0140',0,1100,1100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8284,3,'OPCG0141',0,2070,2070,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8285,3,'OPCG0142',0,168,168,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8286,3,'OPCG0143',0,207,207,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8287,3,'OPCG0144',0,4500,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8288,3,'OPCG0145',0,2250,2250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8289,3,'DECG0001',0,360,360,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8290,3,'DECG0002',0,211,211,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8291,3,'DECG0003',0,810,810,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8292,3,'DECG0004',0,3150,3150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8293,3,'DECG0005',0,459,459,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8294,3,'DECG0006',0,891,891,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8295,3,'DECG0007',0,2700,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8296,3,'DECG0008',0,3600,3600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8297,3,'DECG0009',0,3150,3150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8298,3,'DECG0010',0,3825,3825,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8299,3,'DECG0011',0,80,80,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8300,3,'DECG0012',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8301,3,'DECG0013',0,160,160,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8302,3,'DECG0014',0,939,939,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8303,3,'DECG0015',0,244,244,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8304,3,'DECG0016',0,406,406,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8305,3,'DECG0017',0,1000,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8306,3,'DECG0018',0,6750,6750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8307,3,'DECG0019',0,337,337,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8308,3,'DECG0020',0,374,374,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8309,3,'DECG0021',0,21000,21000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8310,3,'DECG0022',0,18900,18900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8311,3,'DECG0023',0,3400,3400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8312,3,'DECG0024',0,990,990,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8313,3,'DECG0025',0,2500,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8314,3,'DECG0026',0,1950,1950,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8315,3,'DECG0027',0,3000,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8316,3,'DECG0028',0,2500,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8317,3,'DECG0029',0,1350,1350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8318,3,'DECG0030',0,450,450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8319,3,'DECG0031',0,1080,1080,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8320,3,'DECG0032',0,500,500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8321,3,'DECG0033',0,700,700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8322,3,'DECG0034',0,500,500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8323,3,'DECG0035',0,650,650,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8324,3,'DECG0036',0,500,500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8325,3,'DECG0037',0,700,700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8326,3,'DECG0038',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8327,3,'DECG0039',0,855,855,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8328,3,'DECG0040',0,700,700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8329,3,'DECG0041',0,900,900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8330,3,'DECG0042',0,450,450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8331,3,'DECG0043',0,238,238,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8332,3,'DECG0044',0,180,180,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8333,3,'DECG0045',0,250,250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8334,3,'DECG0046',0,200,200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8335,3,'DECG0047',0,300,300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8336,3,'DECG0048',0,630,630,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8337,3,'DECG0049',0,1150,1150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8338,3,'DECG0050',0,450,450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8339,3,'DECG0051',0,720,720,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8340,3,'DECG0052',0,1350,1350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8341,3,'DECG0053',0,1000,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8342,3,'DECG0054',0,1350,1350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8343,3,'DECG0055',0,3500,3500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8344,3,'DECG0056',0,2700,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8345,3,'DECG0057',0,1350,1350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8346,3,'DECG0058',0,720,720,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8347,3,'ETCG0001',0,172,172,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8348,3,'ETCG0002',0,230,230,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8349,3,'ETCG0003',0,132,132,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8350,3,'ETCG0004',0,115,115,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8351,3,'ETCG0005',0,90,90,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8352,3,'ETCG0006',0,120,120,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8353,3,'ETCG0007',0,131,131,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8354,3,'ETCG0008',0,172,172,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8355,3,'ETCG0009',0,345,345,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8356,3,'ETCG0010',0,230,230,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8357,3,'ETCG0011',0,166,166,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8358,3,'ETCG0012',0,575,575,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8359,3,'ETCG0013',0,850,850,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8360,3,'ETCG0014',0,1449,1449,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8361,3,'ETCG0015',0,6900,6900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8362,3,'ETCG0016',0,9200,9200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8363,3,'ETCG0017',0,4600,4600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8364,3,'ETCG0018',0,7763,7763,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8365,3,'ETCG0019',0,13800,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8366,3,'ETCG0020',0,14950,14950,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8367,3,'ETCG0021',0,16100,16100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8368,3,'ETCG0022',0,13800,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8369,3,'ETCG0023',0,25000,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8370,3,'ETCG0024',0,17250,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8371,3,'ETCG0025',0,5750,5750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8372,3,'ETCG0026',0,7314,7314,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8373,3,'ETCG0027',0,16100,16100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8374,3,'ETCG0028',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8375,3,'ETCG0029',0,4250,4250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8376,3,'ETCG0030',0,1150,1150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8377,3,'ETCG0031',0,5750,5750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8378,3,'ETCG0032',0,13000,13000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8379,3,'ETCG0033',0,13800,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8380,3,'ETCG0034',0,13800,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8381,3,'ETCG0035',0,950,950,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8382,3,'ETCG0036',0,1000,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8383,3,'ETCG0037',0,22950,22950,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8384,3,'ETCG0038',0,10626,10626,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8385,3,'ETCG0039',0,17000,17000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8386,3,'ETCG0040',0,21500,21500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8387,3,'ETCG0041',0,32775,32775,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8388,3,'ETCG0042',0,25500,25500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8389,3,'ETCG0043',0,607,607,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8390,3,'ETCG0044',0,4500,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8391,3,'ETCG0045',0,13500,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8392,3,'ETCG0046',0,5750,5750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8393,3,'ETCG0047',0,5750,5750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8394,3,'ETCG0048',0,748,748,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8395,3,'ETCG0049',0,748,748,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8396,3,'ETCG0050',0,2415,2415,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8397,3,'ETCG0051',0,2875,2875,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8398,3,'ETCG0052',0,2070,2070,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8399,3,'ETCG0053',0,6900,6900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8400,3,'ETCG0054',0,10350,10350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8401,3,'ETCG0055',0,345,345,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8402,3,'ETCG0056',0,805,805,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8403,3,'ETCG0057',0,6843,6843,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8404,3,'ETCG0058',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8405,3,'ETCG0059',0,269,269,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8406,3,'ETCG0060',0,5640,5640,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8407,3,'ETCG0061',0,8165,8165,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8408,3,'ETCG0062',0,17193,17193,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8409,3,'ETCG0063',0,9200,9200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8410,3,'ETCG0064',0,4500,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8411,3,'ETCG0065',0,1800,1800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8412,3,'ETCG0066',0,2438,2438,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8413,3,'ETCG0067',0,13500,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8414,3,'ETCG0068',0,7650,7650,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8415,3,'HNCG0001',0,500,500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8416,3,'HNCG0002',0,4000,4000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8417,3,'HNCG0003',0,3800,3800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8418,3,'HNCG0004',0,4500,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8419,3,'HNCG0005',0,6200,6200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8420,3,'HNCG0006',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8421,3,'HNCG0007',0,5175,5175,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8422,3,'HNCG0008',0,7452,7452,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8423,3,'HNCG0009',0,10350,10350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8424,3,'HNCG0010',0,10350,10350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8425,3,'HNCG0011',0,10580,10580,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8426,3,'HNCG0012',0,10454,10454,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8427,3,'HNCG0013',0,12500,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8428,3,'HNCG0014',0,13500,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8429,3,'HNCG0015',0,13500,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8430,3,'HNCG0016',0,7245,7245,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8431,3,'HNCG0017',0,5758,5758,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8432,3,'HNCG0018',0,8800,8800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8433,3,'HNCG0019',0,6728,6728,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8434,3,'HNCG0020',0,8820,8820,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8435,3,'HNCG0021',0,8798,8798,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8436,3,'HNCG0022',0,17388,17388,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8437,3,'HNCG0023',0,13973,13973,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8438,3,'HNCG0024',0,18900,18900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8439,3,'HNCG0025',0,4968,4968,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8440,3,'HNCG0026',0,6300,6300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8441,3,'HNCG0027',0,20597,20597,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8442,3,'HNCG0028',0,19800,19800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8443,3,'HNCG0029',0,10868,10868,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8444,3,'HNCG0030',0,13500,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8445,3,'HNCG0031',0,19550,19550,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8446,3,'HNCG0032',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8447,3,'HNCG0033',0,7763,7763,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8448,3,'HNCG0034',0,8550,8550,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8449,3,'HNCG0035',0,10350,10350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8450,3,'HNCG0036',0,11748,11748,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8451,3,'HNCG0037',0,17100,17100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8452,3,'HNCG0038',0,9522,9522,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8453,3,'HNCG0039',0,23805,23805,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8454,3,'HNCG0040',0,16882,16882,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8455,3,'HNCG0041',0,13225,13225,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8456,3,'HNCG0042',0,19148,19148,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8457,3,'HNCG0043',0,16043,16043,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8458,3,'HNCG0044',0,27000,27000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8459,3,'HNCG0045',0,10350,10350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8460,3,'HNCG0046',0,12000,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8461,3,'HNCG0047',0,4658,4658,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8462,3,'HNCG0048',0,13800,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8463,3,'HNCG0049',0,1725,1725,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8464,3,'HNCG0050',0,10350,10350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8465,3,'HNCG0051',0,17250,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8466,3,'HNCG0052',0,17802,17802,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8467,3,'HNCG0053',0,5175,5175,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8468,3,'HNCG0054',0,8550,8550,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8469,3,'HNCG0055',0,20700,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8470,3,'HNCG0056',0,22770,22770,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8471,3,'HNCG0057',0,23400,23400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8472,3,'HNCG0058',0,35273,35273,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8473,3,'HNCG0059',0,37260,37260,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8474,3,'HNCG0060',0,35397,35397,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8475,3,'HNCG0061',0,19125,19125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8476,3,'HNCG0062',0,4500,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8477,3,'BECG0001',0,5400,5400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8478,3,'BECG0002',0,6272,6272,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8479,3,'BECG0003',0,11385,11385,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8480,3,'BECG0004',0,25875,25875,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8481,3,'BECG0005',0,15525,15525,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8482,3,'BECG0006',0,14490,14490,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8483,3,'BECG0007',0,22500,22500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8484,3,'BECG0008',0,4500,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8485,3,'GNCG0001',0,425,425,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8486,3,'GNCG0002',0,269,269,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8487,3,'GNCG0003',0,290,290,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8488,3,'GNCG0004',0,450,450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8489,3,'GNCG0005',0,300,300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8490,3,'BICG0001',0,1553,1553,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8491,3,'BICG0002',0,2049,2049,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8492,3,'BICG0003',0,2049,2049,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8493,3,'BICG0004',0,1323,1323,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8494,3,'BICG0005',0,2898,2898,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8495,3,'BICG0006',0,1323,1323,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8496,3,'BICG0007',0,1395,1395,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8497,3,'BICG0008',0,1470,1470,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8498,3,'BICG0009',0,1060,1060,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8499,3,'BICG0010',0,1323,1323,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8500,3,'BICG0011',0,1320,1320,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8501,3,'BICG0012',0,1118,1118,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8502,3,'BICG0013',0,1739,1739,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8503,3,'BICG0014',0,2250,2250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8504,3,'BICG0015',0,2049,2049,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8505,3,'BICG0016',0,2500,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8506,3,'BICG0017',0,4025,4025,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8507,3,'BICG0018',0,1150,1150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8508,3,'BICG0019',0,7763,7763,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8509,3,'OECG0001',0,28750,28750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8510,3,'OECG0002',0,25000,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8511,3,'OECG0003',0,22500,22500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8512,3,'OECG0004',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8513,3,'OECG0005',0,14950,14950,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8514,3,'OECG0006',0,12650,12650,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8515,3,'OECG0007',0,22046,22046,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8516,3,'OECG0008',0,19750,19750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8517,3,'OECG0009',0,22000,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8518,3,'OECG0010',0,21390,21390,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8519,3,'OECG0011',0,24863,24863,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8520,3,'OECG0012',0,5000,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8521,3,'ABCG0001',0,1725,1725,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8522,3,'ABCG0002',0,1755,1755,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8523,3,'ABCG0003',0,2800,2800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8524,3,'ABCG0004',0,7763,7763,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8525,3,'ABCG0005',0,9775,9775,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8526,3,'ABCG0006',0,12420,12420,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8527,3,'ABCG0007',0,17055,17055,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8528,3,'ABCG0008',0,20700,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8529,3,'ABCG0009',0,21000,21000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8530,3,'ABCG0010',0,20976,20976,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8531,3,'ABCG0011',0,19780,19780,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8532,3,'ABCG0012',0,22000,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8533,3,'ABCG0013',0,18630,18630,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8534,3,'ABCG0014',0,18630,18630,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8535,3,'ABCG0015',0,17078,17078,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8536,3,'ABCG0016',0,14490,14490,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8537,3,'ABCG0017',0,16100,16100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8538,3,'ABCG0018',0,11385,11385,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8539,3,'ABCG0019',0,11385,11385,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8540,3,'ABCG0020',0,11385,11385,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8541,3,'ABCG0021',0,9264,9264,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8542,3,'ABCG0022',0,14835,14835,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8543,3,'ABCG0023',0,16500,16500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8544,3,'ABCG0024',0,18285,18285,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8545,3,'ABCG0025',0,18975,18975,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8546,3,'ABCG0026',0,18975,18975,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8547,3,'ABCG0027',0,13041,13041,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8548,3,'ABCG0028',0,23000,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8549,3,'ABCG0029',0,28750,28750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8550,3,'ABCG0030',0,22885,22885,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8551,3,'ABCG0031',0,25450,25450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8552,3,'ABCG0032',0,28750,28750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8553,3,'ABCG0033',0,21735,21735,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8554,3,'ABCG0034',0,20700,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8555,3,'ABCG0035',0,14490,14490,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8556,3,'ABCG0036',0,10292,10292,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8557,3,'ABCG0037',0,14375,14375,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8558,3,'ABCG0038',0,13600,13600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8559,3,'ABCG0039',0,11902,11902,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8560,3,'ABCG0040',0,10292,10292,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8561,3,'ABCG0041',0,14375,14375,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8562,3,'ABCG0042',0,23495,23495,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8563,3,'ABCG0043',0,12420,12420,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8564,3,'ABCG0044',0,8108,8108,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8565,3,'ABCG0045',0,9775,9775,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8566,3,'ABCG0046',0,9936,9936,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8567,3,'ABCG0047',0,4600,4600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8568,3,'ABCG0048',0,5175,5175,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8569,3,'ABCG0049',0,13869,13869,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8570,3,'ABCG0050',0,18630,18630,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8571,3,'ABCG0051',0,18400,18400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8572,3,'ABCG0052',0,9315,9315,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8573,3,'ABCG0053',0,34200,34200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8574,3,'ABCG0054',0,17595,17595,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8575,3,'ABCG0055',0,17595,17595,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8576,3,'ABCG0056',0,15900,15900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8577,3,'ABCG0057',0,19550,19550,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8578,3,'ABCG0058',0,17825,17825,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8579,3,'ABCG0059',0,20700,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8580,3,'ABCG0060',0,15111,15111,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8581,3,'ABCG0061',0,15111,15111,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8582,3,'ABCG0062',0,3903,3903,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8583,3,'ABCG0063',0,11799,11799,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8584,3,'ABCG0064',0,15525,15525,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8585,3,'ABCG0065',0,15732,15732,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8586,3,'ABCG0066',0,13200,13200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8587,3,'ABCG0067',0,13200,13200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8588,3,'ABCG0068',0,17250,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8589,3,'ABCG0069',0,24920,24920,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8590,3,'ABCG0070',0,18630,18630,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8591,3,'ABCG0071',0,13800,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8592,3,'ABCG0072',0,5750,5750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8593,3,'ABCG0073',0,5658,5658,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8594,3,'ABCG0074',0,16780,16780,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8595,3,'ABCG0075',0,9867,9867,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8596,3,'ABCG0076',0,10350,10350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8597,3,'ABCG0077',0,5750,5750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8598,3,'ABCG0078',0,18400,18400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8599,3,'ABCG0079',0,14260,14260,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8600,3,'ABCG0080',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8601,3,'ABCG0081',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8602,3,'ABCG0082',0,16470,16470,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8603,3,'ABCG0083',0,19665,19665,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8604,3,'ABCG0084',0,17170,17170,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8605,3,'ABCG0085',0,18000,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8606,3,'ABCG0086',0,1800,1800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8607,3,'ABCG0087',0,16800,16800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8608,3,'ABCG0088',0,19300,19300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8609,3,'ABCG0089',0,23420,23420,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8610,3,'ABCG0090',0,16500,16500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8611,3,'ABCG0091',0,18000,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8612,3,'ABCG0092',0,20000,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8613,3,'ABCG0093',0,22000,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8614,3,'ABCG0094',0,25000,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8615,3,'ABCG0095',0,23000,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8616,3,'ABCG0096',0,23000,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8617,3,'ABCG0097',0,18975,18975,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8618,3,'ABCG0098',0,18000,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8619,3,'ABCG0099',0,18000,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8620,3,'ABCG0100',0,17500,17500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8621,3,'ABCG0101',0,12580,12580,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8622,3,'ABCG0102',0,12000,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8623,3,'ABCG0103',0,19870,19870,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8624,3,'ABCG0104',0,34200,34200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8625,3,'ABCG0105',0,6000,6000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8626,3,'SPCG0001',0,750,750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8627,3,'SPCG0002',0,50,50,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8628,3,'SPCG0003',0,531,531,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8629,3,'SPCG0004',0,186,186,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8630,3,'SPCG0005',0,345,345,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8631,3,'SPCG0006',0,391,391,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8632,3,'SPCG0007',0,184,184,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8633,3,'SPCG0008',0,265,265,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8634,3,'SPCG0009',0,575,575,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8635,3,'CDCG0001',0,51808,51808,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8636,3,'CDCG0002',0,51808,51808,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8637,3,'CDCG0003',0,127075,127075,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8638,3,'CDCG0004',0,80750,80750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8639,3,'CDCG0005',0,122188,122188,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8640,3,'CDCG0006',0,103615,103615,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8641,3,'CDCG0007',0,161000,161000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8642,3,'CDCG0008',0,169000,169000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8643,3,'CDCG0009',0,169000,169000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8644,3,'CDCG0010',0,127075,127075,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8645,3,'CDCG0011',0,169000,169000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8646,3,'CDCG0012',0,169000,169000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8647,3,'CDCG0013',0,140000,140000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8648,3,'CDCG0014',0,130000,130000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8649,3,'CDCG0015',0,53000,53000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8650,3,'CDCG0016',0,95000,95000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8651,3,'CDCG0017',0,103615,103615,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8652,3,'CDCG0018',0,52000,52000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8653,3,'CDCG0019',0,51980,51980,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8654,3,'CDCG0020',0,51980,51980,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8655,3,'CDCG0021',0,42320,42320,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8656,3,'CDCG0022',0,51980,51980,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8657,3,'CDCG0023',0,51980,51980,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8658,3,'CDCG0024',0,248400,248400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8659,3,'CDCG0025',0,72540,72540,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8660,3,'CDCG0026',0,72000,72000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8661,3,'CDCG0027',0,48875,48875,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8662,3,'CDCG0028',0,10264,10264,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8663,3,'CDCG0029',0,10000,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8664,3,'CDCG0030',0,10350,10350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8665,3,'CDCG0031',0,12650,12650,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8666,3,'CDCG0032',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8667,3,'CDCG0033',0,21000,21000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8668,3,'CDCG0034',0,36000,36000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8669,3,'CDCG0035',0,30000,30000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8670,3,'CDCG0036',0,127500,127500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8671,3,'CDCG0037',0,14000,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8672,3,'CDCG0038',0,18500,18500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8673,3,'CDCG0039',0,6750,6750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8674,3,'CDCG0040',0,7344,7344,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8675,3,'CDCG0041',0,13800,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8676,3,'CDCG0042',0,19320,19320,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8677,3,'CDCG0043',0,34500,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8678,3,'CDCG0044',0,28750,28750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8679,3,'CDCG0045',0,40000,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8680,3,'CDCG0046',0,40000,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8681,3,'CDCG0047',0,4550,4550,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8682,3,'CDCG0048',0,587,587,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8683,3,'CDCG0049',0,2563,2563,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8684,3,'CDCG0050',0,35000,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8685,3,'CDCG0051',0,45000,45000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8686,3,'CDCG0052',0,10000,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8687,3,'CDCG0053',0,7820,7820,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8688,3,'CDCG0054',0,42750,42750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8689,3,'CDCG0055',0,16150,16150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8690,3,'CDCG0056',0,17595,17595,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8691,3,'CDCG0057',0,48300,48300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8692,3,'CDCG0058',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8693,3,'CDCG0059',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8694,3,'CDCG0060',0,1265,1265,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8695,3,'CDCG0061',0,777,777,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8696,3,'CDCG0062',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8697,3,'CDCG0063',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8698,3,'CDCG0064',0,54315,54315,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8699,3,'CDCG0065',0,25000,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8700,3,'CDCG0066',0,12750,12750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8701,3,'CDCG0067',0,850,850,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8702,3,'CDCG0068',0,78500,78500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8703,3,'CDCG0069',0,16129,16129,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8704,3,'CDCG0070',0,36225,36225,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8705,3,'CDCG0071',0,50,50,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8706,3,'CDCG0072',0,2160,2160,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8707,3,'CDCG0073',0,1080,1080,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8708,3,'CDCG0074',0,1350,1350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8709,3,'CDCG0075',0,1400,1400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8710,3,'CDCG0076',0,1403,1403,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8711,3,'CDCG0077',0,1403,1403,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8712,3,'CDCG0078',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8713,3,'CDCG0079',0,2500,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8714,3,'CDCG0080',0,1955,1955,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8715,3,'CDCG0081',0,2500,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8716,3,'CDCG0082',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8717,3,'CDCG0083',0,6030,6030,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8718,3,'CDCG0084',0,2272,2272,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8719,3,'CDCG0085',0,2444,2444,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8720,3,'CDCG0086',0,3000,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8721,3,'CDCG0087',0,5072,5072,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8722,3,'CDCG0088',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8723,3,'CDCG0089',0,3500,3500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8724,3,'CDCG0090',0,18000,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8725,3,'CDCG0091',0,3825,3825,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8726,3,'OGCG0001',0,8000,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8727,3,'OGCG0002',0,8625,8625,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8728,3,'OGCG0003',0,9200,9200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8729,3,'OGCG0004',0,14050,14050,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8730,3,'OGCG0005',0,18975,18975,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8731,3,'OGCG0006',0,17250,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8732,3,'OGCG0007',0,13200,13200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8733,3,'OGCG0008',0,13800,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8734,3,'OGCG0009',0,10350,10350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8735,3,'OGCG0010',0,10000,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8736,3,'OGCG0011',0,10350,10350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8737,3,'OGCG0012',0,13200,13200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8738,3,'OGCG0013',0,11520,11520,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8739,3,'OGCG0014',0,6900,6900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8740,3,'OGCG0015',0,8000,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8741,3,'OGCG0016',0,8050,8050,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8742,3,'OGCG0017',0,3450,3450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8743,3,'OGCG0018',0,1000,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8744,3,'OGCG0019',0,9000,9000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8745,3,'OGCG0020',0,1490,1490,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8746,3,'OGCG0021',0,3105,3105,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8747,3,'OGCG0022',0,2128,2128,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8748,3,'OGCG0023',0,3500,3500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8749,3,'OGCG0024',0,5000,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8750,3,'OGCG0025',0,5175,5175,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8751,3,'OGCG0026',0,3450,3450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8752,3,'OGCG0027',0,3508,3508,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8753,3,'OGCG0028',0,3450,3450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8754,3,'OGCG0029',0,3220,3220,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8755,3,'OGCG0030',0,15525,15525,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8756,3,'OGCG0031',0,17250,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8757,3,'OGCG0032',0,16500,16500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8758,3,'OGCG0033',0,14000,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8759,3,'OGCG0034',0,6325,6325,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8760,3,'OGCG0035',0,14950,14950,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8761,3,'OGCG0036',0,9200,9200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8762,3,'OGCG0037',0,9200,9200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8763,3,'OGCG0038',0,14000,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8764,3,'OGCG0039',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8765,3,'OGCG0040',0,3450,3450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8766,3,'OGCG0041',0,25200,25200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8767,3,'OGCG0042',0,2236,2236,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8768,3,'OGCG0043',0,1620,1620,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8769,3,'OGCG0044',0,1366,1366,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8770,3,'OGCG0045',0,2070,2070,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8771,3,'OGCG0046',0,3105,3105,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8772,3,'OGCG0047',0,4600,4600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8773,3,'OGCG0048',0,4025,4025,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8774,3,'OGCG0049',0,3450,3450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8775,3,'OGCG0050',0,22719,22719,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8776,3,'OGCG0051',0,2800,2800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8777,3,'OGCG0052',0,22719,22719,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8778,3,'OGCG0053',0,9775,9775,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8779,3,'OGCG0054',0,3623,3623,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8780,3,'OGCG0055',0,5500,5500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8781,3,'OGCG0056',0,2875,2875,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8782,3,'OGCG0057',0,22425,22425,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8783,3,'OGCG0058',0,19500,19500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8784,3,'OGCG0059',0,862,862,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8785,3,'OGCG0060',0,2500,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8786,3,'OGCG0061',0,2500,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8787,3,'OGCG0062',0,25200,25200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8788,3,'OGCG0063',0,25200,25200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8789,3,'OGCG0064',0,25200,25200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8790,3,'OGCG0065',0,792,792,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8791,3,'OGCG0066',0,880,880,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8792,3,'OGCG0067',0,800,800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8793,3,'OGCG0068',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8794,3,'OGCG0069',0,10293,10293,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8795,3,'OGCG0070',0,10000,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8796,3,'OGCG0071',0,920,920,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8797,3,'OGCG0072',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8798,3,'OGCG0073',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8799,3,'OGCG0074',0,19800,19800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8800,3,'OGCG0075',0,18000,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8801,3,'OGCG0076',0,1200,1200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8802,3,'OGCG0077',0,3500,3500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8803,3,'OGCG0078',0,540,540,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8804,3,'OGCG0079',0,440,440,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8805,3,'OGCG0080',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8806,3,'OGCG0081',0,13500,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8807,3,'OGCG0082',0,11230,11230,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8808,3,'OGCG0083',0,18000,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8809,3,'OGCG0084',0,2875,2875,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8810,3,'OGCG0085',0,6325,6325,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8811,3,'OGCG0086',0,3393,3393,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8812,3,'OGCG0087',0,9200,9200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8813,3,'OGCG0088',0,10925,10925,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8814,3,'OGCG0089',0,21275,21275,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8815,3,'OGCG0090',0,8500,8500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8816,3,'OGCG0091',0,7500,7500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8817,3,'OGCG0092',0,11000,11000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8818,3,'OGCG0093',0,7500,7500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8819,3,'OGCG0094',0,8500,8500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8820,3,'OGCG0095',0,8500,8500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8821,3,'OGCG0096',0,3750,3750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8822,3,'OGCG0097',0,3750,3750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8823,3,'OGCG0098',0,500,500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8824,3,'OGCG0099',0,300,300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8825,3,'OGCG0100',0,850,850,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8826,3,'OGCG0101',0,3000,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8827,3,'OGCG0102',0,4370,4370,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8828,3,'OGCG0103',0,2000,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8829,3,'OGCG0104',0,600,600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8830,3,'OGCG0105',0,26800,26800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8831,3,'OGCG0106',0,5000,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8832,3,'NPCG0001',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8833,3,'NPCG0002',0,14490,14490,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8834,3,'NPCG0003',0,12000,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8835,3,'NPCG0004',0,14000,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8836,3,'NPCG0005',0,13000,13000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8837,3,'NPCG0006',0,10580,10580,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8838,3,'NPCG0007',0,18400,18400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8839,3,'NPCG0008',0,19000,19000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8840,3,'NPCG0009',0,20000,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8841,3,'NPCG0010',0,20000,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8842,3,'NPCG0011',0,18000,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8843,3,'NPCG0012',0,18000,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8844,3,'NPCG0013',0,8000,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8845,3,'NPCG0014',0,5175,5175,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8846,3,'NPCG0015',0,9775,9775,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8847,3,'NPCG0016',0,11960,11960,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8848,3,'NPCG0017',0,14030,14030,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8849,3,'NPCG0018',0,13248,13248,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8850,3,'NPCG0019',0,10000,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8851,3,'NPCG0020',0,16100,16100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8852,3,'NPCG0021',0,16100,16100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8853,3,'NPCG0022',0,19000,19000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8854,3,'NPCG0023',0,18000,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8855,3,'NPCG0024',0,18000,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8856,3,'NPCG0025',0,18000,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8857,3,'NPCG0026',0,20700,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8858,3,'NPCG0027',0,12000,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8859,3,'NPCG0028',0,16000,16000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8860,3,'NPCG0029',0,17250,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8861,3,'NPCG0030',0,690,690,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8862,3,'NPCG0031',0,2200,2200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8863,3,'NPCG0032',0,10925,10925,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8864,3,'NPCG0033',0,10000,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8865,3,'NPCG0034',0,5400,5400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8866,3,'NPCG0035',0,15525,15525,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8867,3,'NPCG0036',0,16000,16000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8868,3,'NPCG0037',0,18400,18400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8869,3,'NPCG0038',0,1725,1725,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8870,3,'NPCG0039',0,6670,6670,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8871,3,'NPCG0040',0,22300,22300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8872,3,'NPCG0041',0,20815,20815,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8873,3,'NPCG0042',0,20250,20250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8874,3,'NPCG0043',0,13800,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8875,3,'NPCG0044',0,14375,14375,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8876,3,'NPCG0045',0,13000,13000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8877,3,'NPCG0046',0,20700,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8878,3,'NPCG0047',0,20125,20125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8879,3,'NPCG0048',0,16767,16767,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8880,3,'NPCG0049',0,4140,4140,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8881,3,'NPCG0050',0,5750,5750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8882,3,'NPCG0051',0,11040,11040,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8883,3,'NPCG0052',0,3450,3450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8884,3,'NPCG0053',0,19550,19550,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8885,3,'NPCG0054',0,14000,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8886,3,'NPCG0055',0,11270,11270,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8887,3,'NPCG0056',0,17250,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8888,3,'NPCG0057',0,18400,18400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8889,3,'NPCG0058',0,19435,19435,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8890,3,'NPCG0059',0,17250,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8891,3,'NPCG0060',0,18400,18400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8892,3,'NPCG0061',0,19435,19435,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8893,3,'NPCG0062',0,1725,1725,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8894,3,'NPCG0063',0,3000,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8895,3,'NPCG0064',0,2346,2346,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8896,3,'NPCG0065',0,3220,3220,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8897,3,'NPCG0066',0,9200,9200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8898,3,'NPCG0067',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8899,3,'NPCG0068',0,9200,9200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8900,3,'NPCG0069',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8901,3,'NPCG0070',0,12593,12593,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8902,3,'NPCG0071',0,11385,11385,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8903,3,'NPCG0072',0,9688,9688,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8904,3,'NPCG0073',0,10800,10800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8905,3,'NPCG0074',0,8798,8798,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8906,3,'NPCG0075',0,10868,10868,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8907,3,'NPCG0076',0,14000,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8908,3,'NPCG0077',0,8000,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8909,3,'NPCG0078',0,22770,22770,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8910,3,'NPCG0079',0,14375,14375,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8911,3,'NPCG0080',0,5865,5865,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8912,3,'NPCG0081',0,8556,8556,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8913,3,'NPCG0082',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8914,3,'NPCG0083',0,11040,11040,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8915,3,'NPCG0084',0,7705,7705,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8916,3,'NPCG0085',0,9200,9200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8917,3,'NPCG0086',0,12650,12650,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8918,3,'NPCG0087',0,14950,14950,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8919,3,'NPCG0088',0,6325,6325,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8920,3,'NPCG0089',0,20700,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8921,3,'NPCG0090',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8922,3,'NPCG0091',0,3500,3500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8923,3,'NPCG0092',0,143000,143000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8924,3,'NPCG0093',0,441000,441000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8925,3,'NPCG0094',0,349200,349200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8926,3,'NPCG0095',0,53550,53550,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8927,3,'NPCG0096',0,28750,28750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8928,3,'NPCG0097',0,41400,41400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8929,3,'NPCG0098',0,83300,83300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8930,3,'NPCG0099',0,28000,28000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8931,3,'NPCG0100',0,85000,85000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8932,3,'NPCG0101',0,85000,85000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8933,3,'NPCG0102',0,85000,85000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8934,3,'NPCG0103',0,6800,6800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8935,3,'NPCG0104',0,6750,6750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8936,3,'NPCG0105',0,7650,7650,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8937,3,'NPCG0106',0,2300,2300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8938,3,'NPCG0107',0,3500,3500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8939,3,'NPCG0108',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8940,3,'NPCG0109',0,2100,2100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8941,3,'NPCG0110',0,1000,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8942,3,'NPCG0111',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8943,3,'NPCG0112',0,1850,1850,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8944,3,'NPCG0113',0,2520,2520,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8945,3,'NPCG0114',0,1850,1850,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8946,3,'NPCG0115',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8947,3,'NPCG0116',0,1650,1650,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8948,3,'NPCG0117',0,1725,1725,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8949,3,'NPCG0118',0,3150,3150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8950,3,'NPCG0119',0,3150,3150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8951,3,'NPCG0120',0,1250,1250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8952,3,'NPCG0121',0,2250,2250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8953,3,'NPCG0122',0,1350,1350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8954,3,'NPCG0123',0,1650,1650,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8955,3,'NPCG0124',0,1450,1450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8956,3,'NPCG0125',0,2500,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8957,3,'NPCG0126',0,765,765,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8958,3,'NPCG0127',0,2700,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8959,3,'NPCG0128',0,2250,2250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8960,3,'NPCG0129',0,18000,18000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8961,3,'NPCG0130',0,22500,22500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8962,3,'NPCG0131',0,4500,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8963,3,'NPCG0132',0,1955,1955,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8964,3,'NPCG0133',0,17250,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8965,3,'NPCG0134',0,20700,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8966,3,'NPCG0135',0,23000,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8967,3,'NPCG0136',0,23000,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8968,3,'NPCG0137',0,16000,16000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8969,3,'NPCG0138',0,22000,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8970,3,'NPCG0139',0,17000,17000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8971,3,'NPCG0140',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8972,3,'NPCG0141',0,18500,18500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8973,3,'NPCG0142',0,9067,9067,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8974,3,'NPCG0143',0,12593,12593,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8975,3,'NPCG0144',0,10000,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8976,3,'NPCG0145',0,10704,10704,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8977,3,'NPCG0146',0,10494,10494,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8978,3,'NPCG0147',0,10494,10494,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8979,3,'NPCG0148',0,12420,12420,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8980,3,'NPCG0149',0,15525,15525,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8981,3,'NPCG0150',0,17000,17000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8982,3,'NPCG0151',0,11000,11000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8983,3,'NPCG0152',0,9867,9867,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8984,3,'NPCG0153',0,12334,12334,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8985,3,'NPCG0154',0,12282,12282,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8986,3,'NPCG0155',0,14500,14500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8987,3,'NPCG0156',0,9775,9775,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8988,3,'NPCG0157',0,3450,3450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8989,3,'NPCG0158',0,10925,10925,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8990,3,'NPCG0159',0,10350,10350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8991,3,'NPCG0160',0,10925,10925,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8992,3,'NPCG0161',0,8556,8556,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8993,3,'NPCG0162',0,4715,4715,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8994,3,'NPCG0163',0,2000,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8995,3,'NPCG0164',0,1725,1725,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8996,3,'NPCG0165',0,30015,30015,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8997,3,'NPCG0166',0,10000,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8998,3,'NPCG0167',0,12650,12650,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,8999,3,'NPCG0168',0,9775,9775,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9000,3,'NPCG0169',0,9775,9775,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9001,3,'NPCG0170',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9002,3,'NPCG0171',0,13225,13225,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9003,3,'NPCG0172',0,19000,19000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9004,3,'NPCG0173',0,450,450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9005,3,'NPCG0174',0,480,480,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9006,3,'NPCG0175',0,2803,2803,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9007,3,'NPCG0176',0,4300,4300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9008,3,'NPCG0177',0,3043,3043,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9009,3,'NPCG0178',0,414,414,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9010,3,'NPCG0179',0,17825,17825,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9011,3,'NPCG0180',0,20125,20125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9012,3,'NPCG0181',0,20125,20125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9013,3,'NPCG0182',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9014,3,'NPCG0183',0,4600,4600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9015,3,'NPCG0184',0,17250,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9016,3,'NPCG0185',0,10200,10200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9017,3,'NPCG0186',0,17250,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9018,3,'NPCG0187',0,6120,6120,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9019,3,'NPCG0188',0,13500,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9020,3,'NPCG0189',0,6120,6120,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9021,3,'NPCG0190',0,3400,3400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9022,3,'NPCG0191',0,4600,4600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9023,3,'NPCG0192',0,2300,2300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9024,3,'NPCG0193',0,550,550,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9025,3,'NPCG0194',0,720,720,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9026,3,'NPCG0195',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9027,3,'NPCG0196',0,6120,6120,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9028,3,'NPCG0197',0,45644,45644,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9029,3,'NPCG0198',0,45000,45000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9030,3,'NPCG0199',0,36000,36000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9031,3,'NPCG0200',0,36900,36900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9032,3,'NPCG0201',0,35211,35211,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9033,3,'NPCG0202',0,40500,40500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9034,3,'NPCG0203',0,40500,40500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9035,3,'NPCG0204',0,22500,22500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9036,3,'NPCG0205',0,4250,4250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9037,3,'NPCG0206',0,2456,2456,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9038,3,'NPCG0207',0,2967,2967,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9039,3,'NPCG0208',0,2875,2875,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9040,3,'NPCG0209',0,2875,2875,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9041,3,'NPCG0210',0,2300,2300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9042,3,'NPCG0211',0,4250,4250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9043,3,'NPCG0212',0,22000,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9044,3,'NPCG0213',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9045,3,'NPCG0214',0,22496,22496,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9046,3,'NPCG0215',0,25875,25875,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9047,3,'NPCG0216',0,22000,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9048,3,'NPCG0217',0,16600,16600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9049,3,'NPCG0218',0,15525,15525,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9050,3,'NPCG0219',0,14000,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9051,3,'NPCG0220',0,17250,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9052,3,'NPCG0221',0,8280,8280,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9053,3,'NPCG0222',0,11615,11615,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9054,3,'NPCG0223',0,6900,6900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9055,3,'NPCG0224',0,5808,5808,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9056,3,'NPCG0225',0,28980,28980,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9057,3,'NPCG0226',0,25875,25875,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9058,3,'NPCG0227',0,837,837,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9059,3,'NPCG0228',0,22000,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9060,3,'NPCG0229',0,31050,31050,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9061,3,'NPCG0230',0,27000,27000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9062,3,'NPCG0231',0,22500,22500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9063,3,'NPCG0232',0,24840,24840,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9064,3,'NPCG0233',0,20000,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9065,3,'NPCG0234',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9066,3,'NPCG0235',0,35708,35708,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9067,3,'NPCG0236',0,27000,27000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9068,3,'NPCG0237',0,31050,31050,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9069,3,'NPCG0238',0,18975,18975,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9070,3,'NPCG0239',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9071,3,'NPCG0240',0,20700,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9072,3,'NPCG0241',0,27000,27000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9073,3,'NPCG0242',0,27000,27000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9074,3,'NPCG0243',0,34500,34500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9075,3,'NPCG0244',0,40250,40250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9076,3,'NPCG0245',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9077,3,'NPCG0246',0,27000,27000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9078,3,'NPCG0247',0,42263,42263,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9079,3,'NPCG0248',0,27600,27600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9080,3,'NPCG0249',0,13800,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9081,3,'NPCG0250',0,35000,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9082,3,'NPCG0251',0,32200,32200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9083,3,'NPCG0252',0,27000,27000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9084,3,'NPCG0253',0,21735,21735,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9085,3,'NPCG0254',0,36225,36225,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9086,3,'NPCG0255',0,17250,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9087,3,'NPCG0256',0,28800,28800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9088,3,'NPCG0257',0,22000,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9089,3,'NPCG0258',0,34200,34200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9090,3,'NPCG0259',0,4646,4646,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9091,3,'NPCG0260',0,1,1,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9092,3,'NPCG0261',0,32000,32000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9093,3,'NPCG0262',0,28980,28980,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9094,3,'NPCG0263',0,39000,39000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9095,3,'NPCG0264',0,22500,22500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9096,3,'NPCG0265',0,15396,15396,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9097,3,'NPCG0266',0,207,207,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9098,3,'NPCG0267',0,4600,4600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9099,3,'NPCG0268',0,36000,36000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9100,3,'NPCG0269',0,28382,28382,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9101,3,'NPCG0270',0,35621,35621,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9102,3,'NPCG0271',0,34400,34400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9103,3,'NPCG0272',0,40000,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9104,3,'NPCG0273',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9105,3,'NPCG0274',0,24150,24150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9106,3,'NPCG0275',0,36000,36000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9107,3,'NPCG0276',0,1100,1100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9108,3,'NPCG0277',0,28750,28750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9109,3,'NPCG0278',0,28980,28980,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9110,3,'NPCG0279',0,39589,39589,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9111,3,'NPCG0280',0,36000,36000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9112,3,'NPCG0281',0,4600,4600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9113,3,'NPCG0282',0,29291,29291,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9114,3,'NPCG0283',0,36000,36000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9115,3,'NPCG0284',0,27560,27560,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9116,3,'NPCG0285',0,57500,57500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9117,3,'NPCG0286',0,14450,14450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9118,3,'NPCG0287',0,22000,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9119,3,'NPCG0288',0,17330,17330,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9120,3,'NPCG0289',0,21600,21600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9121,3,'NPCG0290',0,20000,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9122,3,'NPCG0291',0,31500,31500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9123,3,'NPCG0292',0,40500,40500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9124,3,'NPCG0293',0,36000,36000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9125,3,'NPCG0294',0,34650,34650,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9126,3,'NPCG0295',0,22500,22500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9127,3,'NPCG0296',0,40000,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9128,3,'NPCG0297',0,40000,40000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9129,3,'NPCG0298',0,35000,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9130,3,'NPCG0299',0,38250,38250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9131,3,'NPCG0300',0,15400,15400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9132,3,'PACG0001',0,14400,14400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9133,3,'PACG0002',0,17250,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9134,3,'PACG0003',0,23000,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9135,3,'PACG0004',0,23000,23000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9136,3,'PACG0005',0,17250,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9137,3,'PACG0006',0,15525,15525,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9138,3,'PACG0007',0,3347,3347,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9139,3,'PACG0008',0,15525,15525,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9140,3,'PACG0009',0,17250,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9141,3,'PACG0010',0,16100,16100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9142,3,'PACG0011',0,12558,12558,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9143,3,'PACG0012',0,12000,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9144,3,'PACG0013',0,12000,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9145,3,'PACG0014',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9146,3,'PACG0015',0,13938,13938,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9147,3,'PACG0016',0,14000,14000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9148,3,'PACG0017',0,22425,22425,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9149,3,'PACG0018',0,14500,14500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9150,3,'PACG0019',0,13000,13000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9151,3,'PACG0020',0,9736,9736,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9152,3,'PACG0021',0,13500,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9153,3,'PACG0022',0,13500,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9154,3,'PACG0023',0,19000,19000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9155,3,'PACG0024',0,10235,10235,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9156,3,'PACG0025',0,12000,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9157,3,'PACG0026',0,12500,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9158,3,'PACG0027',0,8625,8625,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9159,3,'PACG0028',0,20700,20700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9160,3,'PACG0029',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9161,3,'PACG0030',0,14400,14400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9162,3,'PACG0031',0,17000,17000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9163,3,'PACG0032',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9164,3,'PACG0033',0,13500,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9165,3,'PACG0034',0,13200,13200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9166,3,'PACG0035',0,12600,12600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9167,3,'PACG0036',0,14400,14400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9168,3,'PACG0037',0,18630,18630,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9169,3,'PACG0038',0,13500,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9170,3,'PACG0039',0,19000,19000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9171,3,'PACG0040',0,16000,16000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9172,3,'PACG0041',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9173,3,'PACG0042',0,12000,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9174,3,'PACG0043',0,27000,27000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9175,3,'PACG0044',0,11050,11050,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9176,3,'BRCG0001',0,300,300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9177,3,'BRCG0002',0,1099,1099,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9178,3,'BRCG0003',0,1150,1150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9179,3,'BRCG0004',0,1725,1725,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9180,3,'BRCG0005',0,6728,6728,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9181,3,'BRCG0006',0,7200,7200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9182,3,'BRCG0007',0,9315,9315,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9183,3,'BRCG0008',0,8073,8073,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9184,3,'BRCG0009',0,11250,11250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9185,3,'BRCG0010',0,12000,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9186,3,'BRCG0011',0,11250,11250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9187,3,'BRCG0012',0,9350,9350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9188,3,'BRCG0013',0,9350,9350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9189,3,'BRCG0014',0,9900,9900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9190,3,'BRCG0015',0,6600,6600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9191,3,'BRCG0016',0,5950,5950,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9192,3,'BRCG0017',0,5950,5950,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9193,3,'BRCG0018',0,8625,8625,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9194,3,'BRCG0019',0,1380,1380,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9195,3,'BRCG0020',0,8000,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9196,3,'BRCG0021',0,7475,7475,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9197,3,'BRCG0022',0,6900,6900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9198,3,'BRCG0023',0,7500,7500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9199,3,'BRCG0024',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9200,3,'BRCG0025',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9201,3,'BRCG0026',0,12650,12650,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9202,3,'BRCG0027',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9203,3,'BRCG0028',0,10000,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9204,3,'BRCG0029',0,12650,12650,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9205,3,'BRCG0030',0,6325,6325,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9206,3,'BRCG0031',0,8500,8500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9207,3,'BRCG0032',0,7245,7245,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9208,3,'BRCG0033',0,10350,10350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9209,3,'BRCG0034',0,7245,7245,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9210,3,'BRCG0035',0,9500,9500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9211,3,'BRCG0036',0,16100,16100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9212,3,'BRCG0037',0,13000,13000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9213,3,'BRCG0038',0,12000,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9214,3,'BRCG0039',0,12000,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9215,3,'BRCG0040',0,12750,12750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9216,3,'BRCG0041',0,13225,13225,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9217,3,'BRCG0042',0,152,152,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9218,3,'BRCG0043',0,124,124,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9219,3,'BRCG0044',0,193,193,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9220,3,'BRCG0045',0,152,152,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9221,3,'BRCG0046',0,276,276,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9222,3,'BRCG0047',0,193,193,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9223,3,'ORCG0001',0,255,255,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9224,3,'ORCG0002',0,259,259,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9225,3,'ORCG0003',0,259,259,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9226,3,'ORCG0004',0,880,880,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9227,3,'ORCG0005',0,895,895,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9228,3,'ORCG0006',0,400,400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9229,3,'ORCG0007',0,173,173,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9230,3,'ORCG0008',0,575,575,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9231,3,'ORCG0009',0,173,173,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9232,3,'ORCG0010',0,718,718,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9233,3,'ORCG0011',0,800,800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9234,3,'ORCG0012',0,1200,1200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9235,3,'ORCG0013',0,1042,1042,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9236,3,'ORCG0014',0,2415,2415,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9237,3,'ORCG0015',0,1967,1967,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9238,3,'ORCG0016',0,1800,1800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9239,3,'ORCG0017',0,2019,2019,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9240,3,'ORCG0018',0,2484,2484,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9241,3,'ORCG0019',0,179,179,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9242,3,'ORCG0020',0,180,180,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9243,3,'ORCG0021',0,230,230,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9244,3,'ORCG0022',0,250,250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00');
INSERT INTO `charge_master` VALUES (0,0,9245,3,'ORCG0023',0,311,311,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9246,3,'ORCG0024',0,311,311,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9247,3,'ORCG0025',0,414,414,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9248,3,'ORCG0026',0,466,466,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9249,3,'ORCG0027',0,466,466,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9250,3,'ORCG0028',0,255,255,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9251,3,'ORCG0029',0,360,360,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9252,3,'ORCG0030',0,633,633,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9253,3,'ORCG0031',0,1350,1350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9254,3,'ORCG0032',0,621,621,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9255,3,'ORCG0033',0,854,854,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9256,3,'ORCG0034',0,497,497,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9257,3,'ORCG0035',0,518,518,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9258,3,'ORCG0036',0,2226,2226,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9259,3,'ORCG0037',0,2340,2340,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9260,3,'ORCG0038',0,2760,2760,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9261,3,'ORCG0039',0,5175,5175,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9262,3,'ORCG0040',0,8050,8050,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9263,3,'ORCG0041',0,9660,9660,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9264,3,'ORCG0042',0,5658,5658,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9265,3,'ORCG0043',0,6601,6601,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9266,3,'ORCG0044',0,6210,6210,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9267,3,'ORCG0045',0,7188,7188,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9268,3,'ORCG0046',0,6900,6900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9269,3,'ORCG0047',0,9971,9971,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9270,3,'ORCG0048',0,11500,11500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9271,3,'ORCG0049',0,13500,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9272,3,'ORCG0050',0,16560,16560,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9273,3,'ORCG0051',0,19500,19500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9274,3,'ORCG0052',0,3174,3174,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9275,3,'ORCG0053',0,3439,3439,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9276,3,'ORCG0054',0,13500,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9277,3,'ORCG0055',0,13800,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9278,3,'ORCG0056',0,16675,16675,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9279,3,'ORCG0057',0,10350,10350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9280,3,'ORCG0058',0,8050,8050,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9281,3,'ORCG0059',0,3105,3105,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9282,3,'ORCG0060',0,4830,4830,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9283,3,'ORCG0061',0,21735,21735,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9284,3,'ORCG0062',0,3450,3450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9285,3,'ORCG0063',0,19350,19350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9286,3,'ORCG0064',0,13800,13800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9287,3,'ORCG0065',0,11040,11040,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9288,3,'ORCG0066',0,10350,10350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9289,3,'ORCG0067',0,10000,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9290,3,'ORCG0068',0,8050,8050,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9291,3,'ORCG0069',0,6900,6900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9292,3,'ORCG0070',0,20000,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9293,3,'ORCG0071',0,20000,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9294,3,'ORCG0072',0,24150,24150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9295,3,'ORCG0073',0,6900,6900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9296,3,'ORCG0074',0,6843,6843,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9297,3,'ORCG0075',0,8050,8050,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9298,3,'ORCG0076',0,6843,6843,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9299,3,'ORCG0077',0,13200,13200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9300,3,'ORCG0078',0,18400,18400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9301,3,'ORCG0079',0,18630,18630,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9302,3,'ORCG0080',0,11385,11385,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9303,3,'ORCG0081',0,9000,9000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9304,3,'ORCG0082',0,8568,8568,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9305,3,'ORCG0083',0,10000,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9306,3,'ORCG0084',0,17250,17250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9307,3,'ORCG0085',0,6900,6900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9308,3,'ORCG0086',0,13500,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9309,3,'ORCG0087',0,16767,16767,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9310,3,'ORCG0088',0,1760,1760,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9311,3,'ORCG0089',0,4140,4140,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9312,3,'ORCG0090',0,71100,71100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9313,3,'ORCG0091',0,95400,95400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9314,3,'ORCG0092',0,99000,99000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9315,3,'ORCG0093',0,79000,79000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9316,3,'ORCG0094',0,79000,79000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9317,3,'ORCG0095',0,100000,100000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9318,3,'ORCG0096',0,20000,20000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9319,3,'ORCG0097',0,4600,4600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9320,3,'ORCG0098',0,7763,7763,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9321,3,'ORCG0099',0,8625,8625,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9322,3,'ORCG0100',0,12000,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9323,3,'ORCG0101',0,10000,10000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9324,3,'ORCG0102',0,8500,8500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9325,3,'ORCG0103',0,13500,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9326,3,'ORCG0104',0,12500,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9327,3,'ORCG0105',0,12000,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9328,3,'ORCG0106',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9329,3,'ORCG0107',0,12600,12600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9330,3,'ORCG0108',0,9342,9342,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9331,3,'ORCG0109',0,12500,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9332,3,'ORCG0110',0,14220,14220,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9333,3,'ORCG0111',0,1080,1080,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9334,3,'ORCG0112',0,1080,1080,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9335,3,'ORCG0113',0,17000,17000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9336,3,'ORCG0114',0,50000,50000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9337,3,'ORCG0115',0,35000,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9338,3,'ORCG0116',0,35000,35000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9339,3,'ORCG0117',0,12500,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9340,3,'ORCG0118',0,12500,12500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9341,3,'ORCG0119',0,4646,4646,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9342,3,'ORCG0120',0,14400,14400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9343,3,'ORCG0121',0,22000,22000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9344,3,'ORCG0122',0,12000,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9345,3,'ORCG0123',0,25000,25000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9346,3,'ORCG0124',0,10800,10800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9347,3,'ORCG0125',0,450,450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9348,3,'ORCG0126',0,13500,13500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9349,3,'ORCG0127',0,12600,12600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9350,3,'ORCG0128',0,1434,1434,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9351,3,'ORCG0129',0,11700,11700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9352,3,'ORCG0130',0,10557,10557,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9353,3,'ORCG0131',0,8100,8100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9354,3,'ORCG0132',0,38250,38250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9355,3,'ORCG0133',0,10695,10695,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9356,3,'PHCG0001',0,70,70,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9357,3,'PHCG0002',0,70,70,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9358,3,'PHCG0003',0,70,70,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9359,3,'PHCG0004',0,71,71,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9360,3,'PHCG0005',0,75,75,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9361,3,'PHCG0006',0,58,58,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9362,3,'PHCG0007',0,78,78,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9363,3,'PHCG0008',0,75,75,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9364,3,'PHCG0009',0,75,75,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9365,3,'PHCG0010',0,78,78,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9366,3,'PHCG0011',0,50,50,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9367,3,'PHCG0012',0,50,50,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9368,3,'PHCG0013',0,50,50,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9369,3,'NRCG0001',0,57375,57375,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9370,3,'NRCG0002',0,61583,61583,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9371,3,'NRCG0003',0,21994,21994,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9372,3,'NRCG0004',0,26775,26775,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9373,3,'NRCG0005',0,52785,52785,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9374,3,'NRCG0006',0,30792,30792,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9375,3,'NRCG0007',0,4888,4888,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9376,3,'NRCG0008',0,4888,4888,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9377,3,'NRCG0009',0,90790,90790,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9378,3,'NRCG0010',0,54896,54896,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9379,3,'NRCG0011',0,72491,72491,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9380,3,'NRCG0012',0,147016,147016,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9381,3,'NRCG0013',0,99000,99000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9382,3,'NRCG0014',0,60726,60726,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9383,3,'NRCG0015',0,71460,71460,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9384,3,'NRCG0016',0,10557,10557,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9385,3,'NRCG0017',0,52785,52785,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9386,3,'NRCG0018',0,8798,8798,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9387,3,'NRCG0019',0,4180,4180,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9388,3,'NRCG0020',0,84510,84510,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9389,3,'NRCG0021',0,863,863,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9390,3,'NRCG0022',0,863,863,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9391,3,'NRCG0023',0,920,920,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9392,3,'NRCG0024',0,552,552,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9393,3,'NRCG0025',0,897,897,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9394,3,'NRCG0026',0,920,920,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9395,3,'NRCG0027',0,920,920,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9396,3,'NRCG0028',0,920,920,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9397,3,'GSCG0001',0,1725,1725,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9398,3,'GSCG0002',0,250,250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9399,3,'GSCG0003',0,345,345,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9400,3,'GSCG0004',0,1543,1543,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9401,3,'GSCG0005',0,1725,1725,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9402,3,'GSCG0006',0,2875,2875,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9403,3,'GSCG0007',0,1725,1725,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9404,3,'GSCG0008',0,3000,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9405,3,'GSCG0009',0,2500,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9406,3,'GSCG0010',0,2500,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9407,3,'GSCG0011',0,2500,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9408,3,'GSCG0012',0,4025,4025,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9409,3,'GSCG0013',0,2415,2415,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9410,3,'GSCG0014',0,3680,3680,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9411,3,'GSCG0015',0,990,990,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9412,3,'GSCG0016',0,4000,4000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9413,3,'GSCG0017',0,3500,3500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9414,3,'GSCG0018',0,4950,4950,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9415,3,'GSCG0019',0,1099,1099,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9416,3,'GSCG0020',0,2737,2737,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9417,3,'GSCG0021',0,3000,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9418,3,'GSCG0022',0,2737,2737,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9419,3,'GSCG0023',0,2000,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9420,3,'GSCG0024',0,4000,4000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9421,3,'GSCG0025',0,2415,2415,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9422,3,'GSCG0026',0,2415,2415,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9423,3,'GSCG0027',0,5850,5850,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9424,3,'GSCG0028',0,4830,4830,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9425,3,'GSCG0029',0,8000,8000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9426,3,'GSCG0030',0,6375,6375,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9427,3,'GSCG0031',0,5750,5750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9428,3,'GSCG0032',0,10098,10098,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9429,3,'GSCG0033',0,11385,11385,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9430,3,'GSCG0034',0,7245,7245,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9431,3,'GSCG0035',0,6210,6210,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9432,3,'GSCG0036',0,550,550,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9433,3,'GSCG0037',0,648,648,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9434,3,'GSCG0038',0,1150,1150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9435,3,'GSCG0039',0,2000,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9436,3,'GSCG0040',0,13590,13590,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9437,3,'GSCG0041',0,4860,4860,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9438,3,'GSCG0042',0,30791,30791,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9439,3,'GSCG0043',0,87975,87975,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9440,3,'GSCG0044',0,51750,51750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9441,3,'GSCG0045',0,1913,1913,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9442,3,'GSCG0046',0,1612,1612,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9443,3,'GSCG0047',0,4500,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9444,3,'GSCG0048',0,4500,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9445,3,'GSCG0049',0,6120,6120,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9446,3,'GSCG0050',0,6120,6120,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9447,3,'GSCG0051',0,6885,6885,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9448,3,'GSCG0052',0,6885,6885,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9449,3,'GSCG0053',0,2588,2588,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9450,3,'GSCG0054',0,2875,2875,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9451,3,'GSCG0055',0,350,350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9452,3,'GSCG0056',0,300,300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9453,3,'GSCG0057',0,37260,37260,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9454,3,'GSCG0058',0,1242,1242,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9455,3,'IDCG0001',0,50,50,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9456,3,'IDCG0002',0,78,78,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9457,3,'IDCG0003',0,196,196,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9458,3,'PUCG0001',0,3240,3240,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9459,3,'PUCG0002',0,1800,1800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9460,3,'OSCG0001',0,3079,3079,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9461,3,'OSCG0002',0,3079,3079,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9462,3,'NECG0001',0,8798,8798,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9463,3,'NECG0002',0,3366,3366,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9464,3,'IGCG0001',0,1955,1955,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9465,3,'IGCG0002',0,3079,3079,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9466,3,'IGCG0003',0,2200,2200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9467,3,'IGCG0004',0,1955,1955,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9468,3,'IGCG0005',0,1870,1870,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9469,3,'IGCG0006',0,1275,1275,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9470,3,'GICG0001',0,3079,3079,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9471,3,'GICG0002',0,3079,3079,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9472,3,'GICG0003',0,3079,3079,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9473,3,'GICG0004',0,1960,1960,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9474,3,'GICG0005',0,1319,1319,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9475,3,'IECG0001',0,1408,1408,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9476,3,'IECG0002',0,1319,1319,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9477,3,'IECG0003',0,2800,2800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9478,3,'IECG0004',0,15836,15836,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9479,3,'IECG0005',0,4399,4399,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9480,3,'IRCG0001',0,1377,1377,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9481,3,'IRCG0002',0,3854,3854,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9482,3,'IRCG0003',0,4956,4956,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9483,3,'IRCG0004',0,12000,12000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9484,3,'IRCG0005',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9485,3,'IRCG0006',0,5000,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9486,3,'IRCG0007',0,9405,9405,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9487,3,'IRCG0008',0,19125,19125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9488,3,'ICCG0001',0,8505,8505,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9489,3,'ICCG0002',0,7200,7200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9490,3,'ICCG0003',0,3300,3300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9491,3,'ICCG0004',0,489,489,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9492,3,'ICCG0005',0,489,489,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9493,3,'ICCG0006',0,1613,1613,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9494,3,'ITCG0001',0,4320,4320,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9495,3,'ITCG0002',0,65982,65982,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9496,3,'IPCG0001',0,18475,18475,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9497,3,'IPCG0002',0,13197,13197,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9498,3,'IPCG0003',0,15000,15000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9499,3,'LNCG0001',0,35,35,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9500,3,'LNCG0002',0,70,70,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9501,3,'LNCG0003',0,35,35,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9502,3,'LNCG0004',0,24,24,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9503,3,'LNCG0005',0,30,30,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9504,3,'LNCG0006',0,35,35,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9505,3,'LMCG0001',0,18,18,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9506,3,'LMCG0002',0,31,31,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9507,3,'LMCG0003',0,31,31,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9508,3,'LMCG0004',0,25,25,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9509,3,'LMCG0005',0,32,32,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9510,3,'LMCG0006',0,135,135,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9511,3,'LMCG0007',0,48,48,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9512,3,'LMCG0008',0,48,48,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9513,3,'LMCG0009',0,48,48,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9514,3,'LMCG0010',0,13,13,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9515,3,'LMCG0011',0,43,43,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9516,3,'LMCG0012',0,41,41,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9517,3,'LMCG0013',0,35,35,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9518,3,'LMCG0014',0,50,50,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9519,3,'LMCG0015',0,70,70,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9520,3,'LMCG0016',0,250,250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9521,3,'LMCG0017',0,440,440,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9522,3,'LMCG0018',0,102,102,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9523,3,'LMCG0019',0,44,44,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9524,3,'LMCG0020',0,110,110,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9525,3,'LMCG0021',0,360,360,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9526,3,'LMCG0022',0,720,720,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9527,3,'LMCG0023',0,680,680,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9528,3,'LMCG0024',0,50,50,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9529,3,'LMCG0025',0,400,400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9530,3,'LMCG0026',0,150,150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9531,3,'LMCG0027',0,500,500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9532,3,'LMCG0028',0,560,560,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9533,3,'LMCG0029',0,77,77,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9534,3,'BBCG0001',0,30,30,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9535,3,'BBCG0002',0,50,50,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9536,3,'BBCG0003',0,90,90,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9537,3,'BBCG0004',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9538,3,'BBCG0005',0,153,153,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9539,3,'BBCG0006',0,170,170,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9540,3,'BBCG0007',0,102,102,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9541,3,'BBCG0008',0,128,128,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9542,3,'BBCG0009',0,150,150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9543,3,'BBCG0010',0,43,43,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9544,3,'BBCG0011',0,72,72,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9545,3,'BBCG0012',0,56,56,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9546,3,'BBCG0013',0,128,128,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9547,3,'BBCG0014',0,150,150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9548,3,'LHCG0001',0,90,90,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9549,3,'LHCG0002',0,65,65,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9550,3,'LHCG0003',0,750,750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9551,3,'LHCG0004',0,780,780,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9552,3,'LHCG0005',0,343,343,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9553,3,'LYCG0001',0,150,150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9554,3,'LYCG0002',0,150,150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9555,3,'LYCG0003',0,200,200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9556,3,'NFCG0001',0,1536,1536,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9557,3,'NFCG0002',0,1000,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9558,3,'LCCG0001',0,1539,1539,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9559,3,'LCCG0002',0,500,500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9560,3,'LBCG0001',0,24,24,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9561,3,'LBCG0002',0,50,50,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9562,3,'LBCG0003',0,54,54,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9563,3,'LBCG0004',0,55,55,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9564,3,'LBCG0005',0,25,25,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9565,3,'LBCG0006',0,20,20,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9566,3,'LBCG0007',0,30,30,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9567,3,'LBCG0008',0,35,35,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9568,3,'LBCG0009',0,18,18,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9569,3,'LBCG0010',0,90,90,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9570,3,'LBCG0011',0,47,47,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9571,3,'LBCG0012',0,55,55,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9572,3,'LBCG0013',0,80,80,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9573,3,'LBCG0014',0,90,90,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9574,3,'LBCG0015',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9575,3,'LBCG0016',0,160,160,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9576,3,'LBCG0017',0,90,90,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9577,3,'LBCG0018',0,18,18,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9578,3,'LBCG0019',0,80,80,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9579,3,'LBCG0020',0,62,62,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9580,3,'LBCG0021',0,80,80,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9581,3,'LBCG0022',0,47,47,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9582,3,'LBCG0023',0,60,60,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9583,3,'LBCG0024',0,44,44,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9584,3,'LBCG0025',0,60,60,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9585,3,'LBCG0026',0,50,50,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9586,3,'LBCG0027',0,250,250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9587,3,'LBCG0028',0,250,250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9588,3,'LBCG0029',0,250,250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9589,3,'LBCG0030',0,200,200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9590,3,'LBCG0031',0,350,350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9591,3,'LBCG0032',0,55,55,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9592,3,'LBCG0033',0,55,55,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9593,3,'LBCG0034',0,117,117,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9594,3,'LBCG0035',0,130,130,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9595,3,'LBCG0036',0,72,72,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9596,3,'LBCG0037',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9597,3,'LBCG0038',0,50,50,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9598,3,'LBCG0039',0,50,50,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9599,3,'LBCG0040',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9600,3,'LBCG0041',0,204,204,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9601,3,'LBCG0042',0,150,150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9602,3,'LBCG0043',0,216,216,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9603,3,'LBCG0044',0,75,75,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9604,3,'LBCG0045',0,90,90,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9605,3,'LBCG0046',0,800,800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9606,3,'LBCG0047',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9607,3,'LBCG0048',0,85,85,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9608,3,'LBCG0049',0,110,110,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9609,3,'LBCG0050',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9610,3,'LBCG0051',0,60,60,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9611,3,'LBCG0052',0,78,78,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9612,3,'LBCG0053',0,190,190,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9613,3,'LBCG0054',0,140,140,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9614,3,'LBCG0055',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9615,3,'LBCG0056',0,600,600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9616,3,'LBCG0057',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9617,3,'LBCG0058',0,130,130,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9618,3,'LBCG0059',0,400,400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9619,3,'LBCG0060',0,400,400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9620,3,'LBCG0061',0,300,300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9621,3,'LBCG0062',0,250,250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9622,3,'LBCG0063',0,120,120,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9623,3,'LBCG0064',0,414,414,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9624,3,'LBCG0065',0,65,65,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9625,3,'LBCG0066',0,280,280,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9626,3,'LBCG0067',0,130,130,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9627,3,'LBCG0068',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9628,3,'LBCG0069',0,225,225,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9629,3,'LBCG0070',0,225,225,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9630,3,'LBCG0071',0,200,200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9631,3,'NUCG0001',0,90,90,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9632,3,'NUCG0002',0,90,90,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9633,3,'NUCG0003',0,100,100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9634,3,'NUCG0004',0,250,250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9635,3,'NUCG0005',0,300,300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9636,3,'NUCG0006',0,595,595,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9637,3,'NUCG0007',0,200,200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9638,3,'NUCG0008',0,199,199,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9639,3,'NUCG0009',0,401,401,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9640,3,'NUCG0010',0,170,170,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9641,3,'NUCG0011',0,170,170,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9642,3,'NUCG0012',0,62,62,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9643,3,'NUCG0013',0,400,400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9644,3,'NUCG0014',0,400,400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9645,3,'NUCG0015',0,220,220,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9646,3,'NUCG0016',0,165,165,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9647,3,'NUCG0017',0,60,60,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9648,3,'NUCG0018',0,150,150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9649,3,'NUCG0019',0,90,90,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9650,3,'NUCG0020',0,239,239,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9651,3,'NUCG0021',0,180,180,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9652,3,'NUCG0022',0,90,90,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9653,3,'NUCG0023',0,1050,1050,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9654,3,'NUCG0024',0,120,120,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9655,3,'INCG0001',0,312,312,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9656,3,'INCG0002',0,375,375,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9657,3,'INCG0003',0,300,300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9658,3,'INCG0004',0,275,275,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9659,3,'INCG0005',0,391,391,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9660,3,'INCG0006',0,616,616,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9661,3,'INCG0007',0,560,560,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9662,3,'INCG0008',0,350,350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9663,3,'INCG0009',0,500,500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9664,3,'INCG0010',0,340,340,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9665,3,'HACG0001',0,200,200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9666,3,'HACG0002',0,64,64,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9667,3,'HACG0003',0,64,64,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9668,3,'HACG0004',0,90,90,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9669,3,'HACG0005',0,150,150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9670,3,'HACG0006',0,150,150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9671,3,'HACG0007',0,150,150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9672,3,'HACG0008',0,250,250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9673,3,'HACG0009',0,500,500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9674,3,'HACG0010',0,330,330,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9675,3,'HACG0011',0,150,150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9676,3,'HACG0012',0,225,225,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9677,3,'HACG0013',0,440,440,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9678,3,'HACG0014',0,440,440,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9679,3,'HACG0015',0,600,600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9680,3,'HACG0016',0,340,340,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9681,3,'HACG0017',0,300,300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9682,3,'HACG0018',0,300,300,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9683,3,'HACG0019',0,318,318,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9684,3,'HACG0020',0,380,380,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9685,3,'HACG0021',0,2000,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9686,3,'HACG0022',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9687,3,'HACG0023',0,1691,1691,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9688,3,'HACG0024',0,218,218,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9689,3,'HACG0025',0,130,130,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9690,3,'HACG0026',0,900,900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9691,3,'HACG0027',0,600,600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9692,3,'HACG0028',0,800,800,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9693,3,'HACG0029',0,238,238,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9694,3,'HACG0030',0,230,230,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9695,3,'HACG0031',0,943,943,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9696,3,'USCG0001',0,323,323,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9697,3,'USCG0002',0,323,323,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9698,3,'USCG0003',0,255,255,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9699,3,'USCG0004',0,349,349,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9700,3,'USCG0005',0,425,425,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9701,3,'USCG0006',0,450,450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9702,3,'USCG0007',0,810,810,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9703,3,'USCG0008',0,349,349,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9704,3,'USCG0009',0,255,255,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9705,3,'USCG0010',0,765,765,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9706,3,'USCG0011',0,635,635,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9707,3,'USCG0012',0,635,635,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9708,3,'USCG0013',0,720,720,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9709,3,'USCG0014',0,490,490,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9710,3,'USCG0015',0,648,648,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9711,3,'USCG0016',0,720,720,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9712,3,'XRCG0001',0,126,126,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9713,3,'XRCG0002',0,120,120,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9714,3,'XRCG0003',0,60,60,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9715,3,'XRCG0004',0,60,60,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9716,3,'XRCG0005',0,225,225,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9717,3,'XRCG0006',0,230,230,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9718,3,'XRCG0007',0,110,110,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9719,3,'XRCG0008',0,110,110,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9720,3,'XRCG0009',0,128,128,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9721,3,'XRCG0010',0,255,255,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9722,3,'XRCG0011',0,250,250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9723,3,'XRCG0012',0,110,110,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9724,3,'XRCG0013',0,459,459,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9725,3,'XRCG0014',0,720,720,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9726,3,'XRCG0015',0,842,842,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9727,3,'XRCG0016',0,842,842,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9728,3,'XRCG0017',0,765,765,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9729,3,'XRCG0018',0,1020,1020,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9730,3,'XRCG0019',0,2250,2250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9731,3,'XRCG0020',0,574,574,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9732,3,'XRCG0021',0,1296,1296,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9733,3,'XRCG0022',0,1100,1100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9734,3,'XRCG0023',0,612,612,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9735,3,'XRCG0024',0,612,612,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9736,3,'XRCG0025',0,1020,1020,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9737,3,'XRCG0026',0,700,700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9738,3,'XRCG0027',0,150,150,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9739,3,'XRCG0028',0,2475,2475,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9740,3,'XRCG0029',0,1749,1749,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9741,3,'MACG0001',0,315,315,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9742,3,'MACG0002',0,2550,2550,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9743,3,'CTCG0001',0,900,900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9744,3,'CTCG0002',0,1350,1350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9745,3,'CTCG0003',0,1700,1700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9746,3,'CTCG0004',0,1700,1700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9747,3,'CTCG0005',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9748,3,'CTCG0006',0,2700,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9749,3,'CTCG0007',0,4050,4050,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9750,3,'CTCG0008',0,4050,4050,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9751,3,'CTCG0009',0,4050,4050,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9752,3,'CTCG0010',0,5400,5400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9753,3,'CTCG0011',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9754,3,'CTCG0012',0,1870,1870,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9755,3,'CTCG0013',0,1190,1190,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9756,3,'CTCG0014',0,1615,1615,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9757,3,'CTCG0015',0,900,900,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9758,3,'CTCG0016',0,1600,1600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9759,3,'CTCG0017',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9760,3,'CTCG0018',0,893,893,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9761,3,'CTCG0019',0,1275,1275,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9762,3,'CTCG0020',0,1700,1700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9763,3,'CTCG0021',0,2253,2253,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9764,3,'CTCG0022',0,1200,1200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9765,3,'CTCG0023',0,1200,1200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9766,3,'CTCG0024',0,1305,1305,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9767,3,'MRCG0001',0,1998,1998,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9768,3,'MRCG0002',0,2848,2848,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9769,3,'MRCG0003',0,1445,1445,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9770,3,'MRCG0004',0,2000,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9771,3,'MRCG0005',0,2450,2450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9772,3,'MRCG0006',0,3500,3500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9773,3,'MRCG0007',0,2700,2700,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9774,3,'MRCG0008',0,3000,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9775,3,'MRCG0009',0,4500,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9776,3,'MRCG0010',0,2000,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9777,3,'MRCG0011',0,2600,2600,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9778,3,'MRCG0012',0,3000,3000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9779,3,'MRCG0013',0,4000,4000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9780,3,'MRCG0014',0,2125,2125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9781,3,'MRCG0015',0,4000,4000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9782,3,'MRCG0016',0,2125,2125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9783,3,'MRCG0017',0,5000,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9784,3,'MRCG0018',0,2125,2125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9785,3,'MRCG0019',0,4500,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9786,3,'MRCG0020',0,2125,2125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9787,3,'MRCG0021',0,5000,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9788,3,'MRCG0022',0,2125,2125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9789,3,'MRCG0023',0,4500,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9790,3,'MRCG0024',0,5000,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9791,3,'MRCG0025',0,2500,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9792,3,'MRCG0026',0,2500,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9793,3,'MRCG0027',0,2125,2125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9794,3,'MRCG0028',0,2125,2125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9795,3,'MRCG0029',0,4500,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9796,3,'MRCG0030',0,4500,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9797,3,'MRCG0031',0,2125,2125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9798,3,'MRCG0032',0,4000,4000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9799,3,'MRCG0033',0,2125,2125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9800,3,'MRCG0034',0,4000,4000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9801,3,'MRCG0035',0,2500,2500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9802,3,'MRCG0036',0,2125,2125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9803,3,'MRCG0037',0,5000,5000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9804,3,'MRCG0038',0,4250,4250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9805,3,'MRCG0039',0,2125,2125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9806,3,'MRCG0040',0,1000,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9807,3,'MRCG0041',0,2125,2125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9808,3,'MRCG0042',0,4000,4000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9809,3,'MRCG0043',0,2125,2125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9810,3,'MRCG0044',0,4000,4000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9811,3,'MRCG0045',0,2125,2125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9812,3,'MRCG0046',0,4000,4000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9813,3,'MRCG0047',0,2125,2125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9814,3,'MRCG0048',0,4500,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9815,3,'MRCG0049',0,5100,5100,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9816,3,'MRCG0050',0,4950,4950,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9817,3,'MRCG0051',0,4500,4500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9818,3,'MRCG0052',0,2125,2125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9819,3,'BOCG0001',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9820,3,'BOCG0002',0,2000,2000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9821,3,'BOCG0003',0,2450,2450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9822,3,'BOCG0004',0,298,298,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9823,3,'BOCG0005',0,638,638,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9824,3,'BOCG0006',0,638,638,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9825,3,'BOCG0007',0,595,595,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9826,3,'BOCG0008',0,595,595,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9827,3,'BOCG0009',0,638,638,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9828,3,'BOCG0010',0,638,638,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9829,3,'BOCG0011',0,638,638,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9830,3,'BOCG0012',0,383,383,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9831,3,'BOCG0013',0,1848,1848,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9832,3,'BOCG0014',0,2340,2340,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9833,3,'BOCG0015',0,500,500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9834,3,'BOCG0016',0,450,450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9835,3,'BOCG0017',0,500,500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9836,3,'BOCG0018',0,450,450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9837,3,'BOCG0019',0,315,315,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9838,3,'BOCG0020',0,350,350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9839,3,'BOCG0021',0,553,553,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9840,3,'BOCG0022',0,2400,2400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9841,3,'BOCG0023',0,450,450,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9842,3,'CSCG0001',0,240,240,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9843,3,'CSCG0002',0,1000,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9844,3,'CSCG0003',0,1200,1200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9845,3,'CSCG0004',0,200,200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9846,3,'CSCG0005',0,200,200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9847,3,'CSCG0006',0,128,128,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9848,3,'CSCG0007',0,64,64,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9849,3,'CSCG0008',0,801,801,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9850,3,'CSCG0009',0,255,255,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9851,3,'CSCG0010',0,684,684,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9852,3,'CSCG0011',0,1200,1200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9853,3,'CSCG0012',0,1871,1871,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9854,3,'CSCG0013',0,298,298,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9855,3,'CSCG0014',0,1024,1024,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9856,3,'GECG0001',0,765,765,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9857,3,'GECG0002',0,850,850,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9858,3,'GECG0003',0,1200,1200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9859,3,'GECG0004',0,500,500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9860,3,'GECG0005',0,2250,2250,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9861,3,'GECG0006',0,4388,4388,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9862,3,'ENCG0001',0,1350,1350,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9863,3,'ENCG0002',0,1024,1024,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9864,3,'ENCG0003',0,1690,1690,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9865,3,'ENCG0004',0,3400,3400,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9866,3,'ENCG0005',0,1125,1125,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9867,3,'ENCG0006',0,920,920,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9868,3,'ENCG0007',0,1000,1000,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9869,3,'ENCG0008',0,1200,1200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9870,3,'ENCG0009',0,128,128,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9871,3,'ENCG0010',0,128,128,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9872,3,'ENCG0011',0,80,80,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9873,3,'ENCG0012',0,43,43,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9874,3,'ENCG0013',0,80,80,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9875,3,'ENCG0014',0,80,80,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9876,3,'ENCG0015',0,500,500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9877,3,'ENCG0016',0,200,200,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9878,3,'ENCG0017',0,750,750,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9879,3,'ENCG0018',0,1330,1330,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9880,3,'ENCG0019',0,449,449,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9881,3,'ENCG0020',0,1500,1500,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9882,3,'ENCG0021',0,1650,1650,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9883,3,'ENCG0022',0,1333,1333,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9884,3,'ENCG0023',0,387,387,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9885,3,'ENCG0024',0,208,208,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9886,3,'ENCG0025',0,587,587,0.00,'Y','Y','','0000-00-00 00:00:00','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9887,1,'NEU10015',0,500,500,0.00,'Y','Y','thims','2025-10-08 11:41:44','thims','2025-10-08 11:41:44','','0000-00-00 00:00:00'),(0,0,9888,1,'NEU10016',0,2200,2200,0.00,'Y','Y','thims','2025-10-08 11:42:37','thims','2025-10-08 11:42:37','','0000-00-00 00:00:00'),(0,0,9889,1,'NEU10017',0,2200,2200,0.00,'Y','Y','thims','2025-10-08 11:43:03','thims','2025-10-08 11:43:03','','0000-00-00 00:00:00'),(0,0,9890,1,'NEU10018',1,3000,3000,0.00,'Y','Y','thims','2025-10-08 11:47:07','thims','2025-10-08 11:43:32','thims','2025-10-08 11:47:07'),(0,0,9891,1,'NEU10019',1,2200,2200,0.00,'Y','Y','shweta','2025-10-08 18:17:59','thims','2025-10-08 11:43:56','shweta','2025-10-08 18:17:59'),(0,0,9892,1,'NEU10020',0,1500,1500,0.00,'Y','Y','thims','2025-10-08 11:44:25','thims','2025-10-08 11:44:25','','0000-00-00 00:00:00'),(0,0,9893,1,'NEU10021',0,2500,2500,0.00,'Y','Y','thims','2025-10-08 11:44:47','thims','2025-10-08 11:44:47','','0000-00-00 00:00:00'),(0,0,9894,1,'NEU10022',0,5000,5000,0.00,'Y','Y','thims','2025-10-08 11:45:15','thims','2025-10-08 11:45:15','','0000-00-00 00:00:00'),(0,0,9895,1,'NEU10023',0,600,600,0.00,'Y','Y','thims','2025-10-08 11:45:34','thims','2025-10-08 11:45:34','','0000-00-00 00:00:00'),(0,0,9896,1,'NEU10024',1,2500,2500,0.00,'Y','Y','thims','2025-10-08 14:16:24','thims','2025-10-08 11:47:30','thims','2025-10-08 14:16:24'),(0,0,9897,1,'ENTS0076',1,0,0,0.00,'Y','Y','shweta','2025-10-08 16:59:55','shweta','2025-10-08 16:57:45','shweta','2025-10-08 16:59:55'),(0,0,9898,1,'ENTP0035',1,2500,2500,0.00,'Y','Y','shweta','2025-10-08 17:00:07','shweta','2025-10-08 16:59:53','shweta','2025-10-08 17:00:07'),(0,0,9899,1,'EDPR0032',1,0,0,0.00,'Y','Y','shweta','2025-10-10 16:27:09','shweta','2025-10-10 16:25:40','shweta','2025-10-10 16:27:09'),(0,0,9900,1,'REG0002',1,0,250,0.00,'Y','Y','reception','2025-10-10 19:29:45','reception','2025-10-10 19:29:36','reception','2025-10-10 19:29:45'),(0,0,9901,1,'ROOM0003',1,0,3200,0.00,'Y','Y','reception','2025-10-11 11:33:50','reception','2025-10-10 19:34:06','reception','2025-10-11 11:33:50'),(0,0,9902,1,'CARE0001',4,1,1,0.00,'Y','Y','thims','2025-10-11 18:08:16','reception','2025-10-10 19:37:08','thims','2025-10-11 18:08:16'),(0,0,9903,1,'CARE0002',1,0,200,0.00,'Y','Y','reception','2025-10-11 11:34:33','reception','2025-10-10 19:38:31','reception','2025-10-11 11:34:33'),(0,0,9904,1,'CARE0003',1,0,600,0.00,'Y','Y','reception','2025-10-11 11:34:39','reception','2025-10-10 19:40:18','reception','2025-10-11 11:34:39'),(0,0,9905,1,'CARE0004',1,0,800,0.00,'Y','Y','reception','2025-10-11 11:34:45','reception','2025-10-10 19:40:57','reception','2025-10-11 11:34:45'),(0,0,9906,1,'CARE0005',1,0,400,0.00,'Y','Y','reception','2025-10-11 11:34:52','reception','2025-10-10 19:41:19','reception','2025-10-11 11:34:52'),(0,0,9907,1,'CARE0006',1,0,300,0.00,'Y','Y','reception','2025-10-11 11:34:58','reception','2025-10-10 19:41:47','reception','2025-10-11 11:34:58'),(0,0,9908,1,'DRC0018',4,1,1,0.00,'Y','Y','vishal','2025-10-12 12:34:10','reception','2025-10-11 12:12:59','vishal','2025-10-12 12:34:10'),(0,0,9909,1,'DRC0019',3,0,1,0.00,'Y','Y','vishal','2025-10-12 12:34:24','reception','2025-10-11 12:13:19','vishal','2025-10-12 12:34:24'),(0,0,9910,1,'ROOM0004',0,0,500,0.00,'Y','Y','reception','2025-10-11 12:18:46','reception','2025-10-11 12:18:46','','0000-00-00 00:00:00'),(0,0,9911,1,'USG0091',0,0,1,0.00,'Y','Y','reception','2025-10-11 12:19:55','reception','2025-10-11 12:19:55','','0000-00-00 00:00:00'),(0,0,9912,1,'ROOM0005',0,0,1100,0.00,'Y','Y','reception','2025-10-11 12:32:14','reception','2025-10-11 12:32:14','','0000-00-00 00:00:00'),(0,0,9913,1,'ROOM0006',0,0,1100,0.00,'Y','Y','reception','2025-10-11 12:32:31','reception','2025-10-11 12:32:31','','0000-00-00 00:00:00'),(0,0,9914,1,'ROOM0007',1,0,2000,0.00,'Y','Y','thims','2025-10-11 18:00:32','reception','2025-10-11 12:35:06','thims','2025-10-11 18:00:32'),(0,0,9915,1,'ROOM0008',2,0,100,0.00,'Y','Y','reception','2025-10-11 12:43:47','reception','2025-10-11 12:42:49','reception','2025-10-11 12:43:47'),(0,0,9916,1,'ROOM0009',1,1,1,0.00,'Y','Y','thims','2025-10-11 18:02:04','thims','2025-10-11 18:01:57','thims','2025-10-11 18:02:04'),(0,0,9917,1,'DRC0020',0,0,1,0.00,'Y','Y','vishal','2025-10-11 18:56:38','vishal','2025-10-11 18:56:38','','0000-00-00 00:00:00'),(0,0,9918,1,'WPRC0077',1,0,500,0.00,'Y','Y','vishal','2025-10-11 19:01:13','vishal','2025-10-11 19:00:56','vishal','2025-10-11 19:01:13'),(0,0,9919,1,'WPRC0078',0,0,300,0.00,'Y','Y','vishal','2025-10-11 19:31:42','vishal','2025-10-11 19:31:42','','0000-00-00 00:00:00'),(0,0,9920,1,'WPRC0079',1,0,750,0.00,'Y','Y','vishal','2025-10-12 18:54:17','vishal','2025-10-11 19:32:20','vishal','2025-10-12 18:54:17'),(0,0,9921,1,'CARE0007',0,0,2000,0.00,'Y','Y','vishal','2025-10-11 19:46:26','vishal','2025-10-11 19:46:26','','0000-00-00 00:00:00'),(0,0,9922,1,'SURG0014',0,0,1,0.00,'Y','Y','vishal','2025-10-11 19:47:57','vishal','2025-10-11 19:47:57','','0000-00-00 00:00:00'),(0,0,9923,1,'SURG0015',0,0,1,0.00,'Y','Y','vishal','2025-10-11 19:48:28','vishal','2025-10-11 19:48:28','','0000-00-00 00:00:00'),(0,0,9924,1,'SURG0016',0,0,1,0.00,'Y','Y','vishal','2025-10-11 19:49:42','vishal','2025-10-11 19:49:42','','0000-00-00 00:00:00'),(0,0,9925,1,'USG0092',0,0,1200,0.00,'Y','Y','vishal','2025-10-11 20:25:11','vishal','2025-10-11 20:25:11','','0000-00-00 00:00:00'),(0,0,9926,1,'WPRC0080',0,0,500,0.00,'Y','Y','vishal','2025-10-11 20:26:48','vishal','2025-10-11 20:26:48','','0000-00-00 00:00:00'),(0,0,9927,3,'WPRC0081',1,0,200,0.00,'Y','Y','vishal','2025-10-12 11:15:25','vishal','2025-10-12 11:14:37','vishal','2025-10-12 11:15:25'),(0,0,9928,1,'WPRC0082',0,0,200,0.00,'Y','Y','vishal','2025-10-12 11:18:23','vishal','2025-10-12 11:18:23','','0000-00-00 00:00:00'),(0,0,9929,1,'WPRC0083',1,0,200,0.00,'Y','Y','vishal','2025-10-13 12:35:04','vishal','2025-10-12 11:19:33','vishal','2025-10-13 12:35:04'),(0,0,9930,1,'WPRC0084',1,0,750,0.00,'Y','Y','vishal','2025-10-12 11:22:47','vishal','2025-10-12 11:21:42','vishal','2025-10-12 11:22:47'),(0,0,9931,1,'WPRC0085',0,0,3000,0.00,'Y','Y','vishal','2025-10-12 12:39:43','vishal','2025-10-12 12:39:43','','0000-00-00 00:00:00'),(0,0,9932,1,'WPRC0086',0,0,1500,0.00,'Y','Y','vishal','2025-10-12 12:39:57','vishal','2025-10-12 12:39:57','','0000-00-00 00:00:00'),(0,0,9933,1,'WPRC0087',0,0,500,0.00,'Y','Y','vishal','2025-10-12 12:40:16','vishal','2025-10-12 12:40:16','','0000-00-00 00:00:00'),(0,0,9934,1,'WPRC0088',1,0,1500,0.00,'Y','Y','vishal','2025-10-19 18:44:09','vishal','2025-10-12 12:41:51','vishal','2025-10-19 18:44:09'),(0,0,9935,1,'WPRC0089',1,0,100,0.00,'Y','Y','vishal','2025-10-12 14:37:53','vishal','2025-10-12 14:37:30','vishal','2025-10-12 14:37:53'),(0,0,9936,1,'WPRC0090',0,0,1000,0.00,'Y','Y','reception','2025-10-12 14:57:10','reception','2025-10-12 14:57:10','','0000-00-00 00:00:00'),(0,0,9937,1,'WPRC0091',0,0,500,0.00,'Y','Y','vishal','2025-10-12 15:13:04','vishal','2025-10-12 15:13:04','','0000-00-00 00:00:00'),(0,0,9938,1,'WPRC0092',0,0,3000,0.00,'Y','Y','vishal','2025-10-12 15:15:14','vishal','2025-10-12 15:15:14','','0000-00-00 00:00:00'),(0,0,9939,1,'USG0093',0,0,1200,0.00,'Y','Y','reception','2025-10-12 15:36:12','reception','2025-10-12 15:36:12','','0000-00-00 00:00:00'),(0,0,9940,1,'WPRC0093',0,0,500,0.00,'Y','Y','reception','2025-10-12 16:10:47','reception','2025-10-12 16:10:47','','0000-00-00 00:00:00'),(0,0,9941,1,'WPRC0094',1,0,2800,0.00,'Y','Y','reception','2025-10-12 16:17:53','reception','2025-10-12 16:16:53','reception','2025-10-12 16:17:53'),(0,0,9942,1,'WPRC0095',0,0,2800,0.00,'Y','Y','reception','2025-10-12 16:17:31','reception','2025-10-12 16:17:31','','0000-00-00 00:00:00'),(0,0,9943,1,'WPRC0096',0,0,500,0.00,'Y','Y','vishal','2025-10-12 18:08:21','vishal','2025-10-12 18:08:21','','0000-00-00 00:00:00'),(0,0,9944,1,'OETR0001',1,0,1,0.00,'Y','Y','reception','2025-11-04 13:39:28','vishal','2025-10-13 10:04:49','reception','2025-11-04 13:39:28'),(0,0,9945,1,'WPRC0097',0,0,2000,0.00,'Y','Y','vishal','2025-10-16 11:27:08','vishal','2025-10-16 11:27:08','','0000-00-00 00:00:00'),(0,0,9946,1,'OTCG0033',0,1000,1000,0.00,'Y','Y','shweta','2025-10-17 14:25:44','shweta','2025-10-17 14:25:44','','0000-00-00 00:00:00'),(0,0,9947,1,'OTCG0001',1,800,800,0.00,'Y','Y','shweta','2025-10-17 14:29:11','shweta','2025-10-17 14:29:11','','0000-00-00 00:00:00'),(0,0,9948,1,'OTCG0003',1,100,100,0.00,'Y','Y','shweta','2025-10-17 14:30:05','shweta','2025-10-17 14:30:05','','0000-00-00 00:00:00'),(0,0,9949,1,'WPRC0098',0,0,1000,0.00,'Y','Y','vishal','2025-10-17 14:43:07','vishal','2025-10-17 14:43:07','','0000-00-00 00:00:00'),(0,0,9950,1,'WPRC0099',0,0,1000,0.00,'Y','Y','vishal','2025-10-19 11:15:06','vishal','2025-10-19 11:15:06','','0000-00-00 00:00:00'),(0,0,9951,1,'WPRC0100',0,0,3000,0.00,'Y','Y','vishal','2025-10-19 18:33:15','vishal','2025-10-19 18:33:15','','0000-00-00 00:00:00'),(0,0,9952,1,'WPRC0101',0,0,3000,0.00,'Y','Y','vishal','2025-10-19 18:38:59','vishal','2025-10-19 18:38:59','','0000-00-00 00:00:00'),(0,0,9953,1,'WPRC0102',0,0,1000,0.00,'Y','Y','vishal','2025-10-20 11:39:58','vishal','2025-10-20 11:39:58','','0000-00-00 00:00:00'),(0,0,9954,1,'SURG0017',1,0,1,0.00,'Y','Y','vishal','2025-10-20 11:50:09','vishal','2025-10-20 11:49:13','vishal','2025-10-20 11:50:09'),(0,0,9955,1,'WPRC0103',0,0,3000,0.00,'Y','Y','vishal','2025-10-20 14:25:40','vishal','2025-10-20 14:25:40','','0000-00-00 00:00:00'),(0,0,9956,1,'WPRC0104',0,0,6000,0.00,'Y','Y','vishal','2025-10-20 14:27:09','vishal','2025-10-20 14:27:09','','0000-00-00 00:00:00'),(0,0,9957,1,'DRC0021',2,0,2000,0.00,'Y','Y','vishal','2025-10-22 13:21:32','vishal','2025-10-22 13:10:19','vishal','2025-10-22 13:21:32'),(0,0,9958,1,'CARE0008',0,0,500,0.00,'Y','Y','vishal','2025-10-25 12:40:35','vishal','2025-10-25 12:40:35','','0000-00-00 00:00:00'),(0,0,9959,1,'USG0094',0,0,2500,0.00,'Y','Y','vishal','2025-10-27 18:27:40','vishal','2025-10-27 18:27:40','','0000-00-00 00:00:00'),(0,0,9960,1,'GENS0078',1,0,4000,0.00,'Y','Y','riya','2025-10-28 13:23:53','riya','2025-10-28 13:05:58','riya','2025-10-28 13:23:53'),(0,0,9961,1,'USG0095',0,0,1200,0.00,'Y','Y','riya','2025-10-28 13:17:12','riya','2025-10-28 13:17:12','','0000-00-00 00:00:00'),(0,0,9962,1,'USG0096',0,0,0,0.00,'Y','Y','riya','2025-10-29 10:36:02','riya','2025-10-29 10:36:02','','0000-00-00 00:00:00'),(0,0,9963,1,'USG0097',0,0,1500,0.00,'Y','Y','riya','2025-10-29 10:37:16','riya','2025-10-29 10:37:16','','0000-00-00 00:00:00'),(0,0,9964,1,'WPRC0105',0,0,500,0.00,'Y','Y','vishal','2025-11-01 14:41:18','vishal','2025-11-01 14:41:18','','0000-00-00 00:00:00'),(0,0,9965,1,'WPRC0106',0,0,750,0.00,'Y','Y','vishal','2025-11-01 15:46:35','vishal','2025-11-01 15:46:35','','0000-00-00 00:00:00'),(0,0,9966,1,'OETR0002',0,0,3000,0.00,'Y','Y','riya','2025-11-02 11:17:18','riya','2025-11-02 11:17:18','','0000-00-00 00:00:00'),(0,0,9967,1,'OETR0003',0,1500,1500,0.00,'Y','Y','reception','2025-11-04 13:40:52','reception','2025-11-04 13:40:52','','0000-00-00 00:00:00'),(0,0,9968,1,'OETR0004',1,0,1,0.00,'Y','Y','vishal','2025-11-05 18:53:55','vishal','2025-11-05 18:53:38','vishal','2025-11-05 18:53:55'),(0,0,9969,1,'OPWD0023',0,1000,1000,0.00,'Y','Y','shweta','2025-11-06 20:15:59','shweta','2025-11-06 20:15:59','','0000-00-00 00:00:00'),(0,0,9970,1,'CARE0009',4,0,0,0.00,'Y','Y','riya','2025-11-07 15:18:35','riya','2025-11-07 15:13:59','riya','2025-11-07 15:18:35'),(0,0,9971,1,'WPRC0107',0,0,1500,0.00,'Y','Y','vishal','2025-11-08 09:07:26','vishal','2025-11-08 09:07:26','','0000-00-00 00:00:00'),(0,0,9972,1,'WPRC0108',1,0,1000,0.00,'N','Y','vishal','2025-11-08 14:32:15','vishal','2025-11-08 14:31:04','vishal','2025-11-08 14:32:15'),(0,0,9973,1,'OETR0005',0,0,1000,0.00,'Y','Y','vishal','2025-11-08 14:32:39','vishal','2025-11-08 14:32:39','','0000-00-00 00:00:00'),(0,0,9974,1,'SURG0018',1,0,1,0.00,'Y','Y','riya','2025-11-11 16:29:18','riya','2025-11-11 13:37:58','riya','2025-11-11 16:29:18'),(0,0,9975,1,'USG0098',0,0,1500,0.00,'Y','Y','vishal','2025-11-12 11:50:14','vishal','2025-11-12 11:50:14','','0000-00-00 00:00:00'),(0,0,9976,1,'WPRC0109',0,0,3000,0.00,'Y','Y','vishal','2025-11-12 11:53:22','vishal','2025-11-12 11:53:22','','0000-00-00 00:00:00'),(0,0,9977,1,'WPRC0110',0,0,10000,0.00,'Y','Y','vishal','2025-11-12 11:57:34','vishal','2025-11-12 11:57:34','','0000-00-00 00:00:00'),(0,0,9978,1,'OPWD0024',1,1000,1000,0.00,'Y','Y','shweta','2025-11-13 11:24:14','shweta','2025-11-13 11:18:11','shweta','2025-11-13 11:24:14'),(0,0,9979,1,'OPWD0025',2,800,800,0.00,'Y','Y','shweta','2025-11-13 11:30:23','shweta','2025-11-13 11:29:16','shweta','2025-11-13 11:30:23'),(0,0,9980,1,'OPWD0026',0,800,800,0.00,'Y','Y','shweta','2025-11-13 11:30:13','shweta','2025-11-13 11:30:13','','0000-00-00 00:00:00'),(0,0,9981,1,'OPWD0027',0,1200,1200,0.00,'Y','Y','shweta','2025-11-13 11:31:07','shweta','2025-11-13 11:31:07','','0000-00-00 00:00:00'),(0,0,9982,1,'OPWD0028',0,800,800,0.00,'Y','Y','shweta','2025-11-13 11:31:51','shweta','2025-11-13 11:31:51','','0000-00-00 00:00:00'),(0,0,9983,1,'OPWD0029',0,1000,1000,0.00,'Y','Y','shweta','2025-11-13 11:32:31','shweta','2025-11-13 11:32:31','','0000-00-00 00:00:00'),(0,0,9984,1,'OPWD0030',0,1000,1000,0.00,'Y','Y','shweta','2025-11-13 11:33:03','shweta','2025-11-13 11:33:03','','0000-00-00 00:00:00'),(0,0,9985,1,'OPWD0031',0,500,500,0.00,'Y','Y','shweta','2025-11-13 11:36:05','shweta','2025-11-13 11:36:05','','0000-00-00 00:00:00'),(0,0,9986,1,'OPWD0032',0,750,750,0.00,'Y','Y','shweta','2025-11-13 11:37:31','shweta','2025-11-13 11:37:31','','0000-00-00 00:00:00'),(0,0,9987,1,'OPWD0033',0,1500,1500,0.00,'Y','Y','shweta','2025-11-13 11:40:19','shweta','2025-11-13 11:40:19','','0000-00-00 00:00:00'),(0,0,9988,1,'OPWD0034',0,1000,1000,0.00,'Y','Y','shweta','2025-11-13 11:42:58','shweta','2025-11-13 11:42:58','','0000-00-00 00:00:00'),(0,0,9989,1,'CARP0032',0,0,5000,0.00,'Y','Y','riya','2025-11-13 12:45:53','riya','2025-11-13 12:45:53','','0000-00-00 00:00:00'),(0,0,9990,1,'OPWD0035',3,2000,2000,0.00,'Y','Y','shweta','2025-11-14 12:11:45','shweta','2025-11-14 12:06:16','shweta','2025-11-14 12:11:45'),(0,0,9991,1,'USG0099',0,0,1200,0.00,'Y','Y','vishal','2025-11-14 18:04:35','vishal','2025-11-14 18:04:35','','0000-00-00 00:00:00'),(0,0,9992,1,'USG0100',0,0,3000,0.00,'Y','Y','vishal','2025-11-14 18:25:04','vishal','2025-11-14 18:25:04','','0000-00-00 00:00:00'),(0,0,9993,1,'USG0101',0,0,750,0.00,'Y','Y','vishal','2025-11-14 18:25:41','vishal','2025-11-14 18:25:41','','0000-00-00 00:00:00'),(0,0,9994,1,'GENS0079',1,0,10000,0.00,'N','Y','vishal','2025-11-17 16:01:42','riya','2025-11-16 14:49:36','vishal','2025-11-17 16:01:42'),(0,0,9995,1,'GENS0080',1,0,1000,0.00,'N','Y','vishal','2025-11-17 16:01:33','riya','2025-11-16 14:52:17','vishal','2025-11-17 16:01:33'),(0,0,9996,1,'WPRC0111',0,0,1000,0.00,'Y','Y','vishal','2025-11-17 16:02:31','vishal','2025-11-17 16:02:31','','0000-00-00 00:00:00'),(0,0,9997,1,'WPRC0112',1,0,0,0.00,'Y','Y','riya','2025-11-20 10:52:35','riya','2025-11-20 10:48:02','riya','2025-11-20 10:52:35'),(0,0,9998,1,'WPRC0113',2,0,2500,0.00,'Y','Y','riya','2025-11-20 10:52:26','riya','2025-11-20 10:49:21','riya','2025-11-20 10:52:26'),(0,0,9999,1,'OPWD0036',1,500,500,0.00,'Y','Y','shweta','2025-11-21 14:13:38','shweta','2025-11-21 14:12:00','shweta','2025-11-21 14:13:38'),(0,0,10000,1,'WPRC0114',0,0,1000,0.00,'Y','Y','vishal','2025-11-21 16:02:59','vishal','2025-11-21 16:02:59','','0000-00-00 00:00:00'),(0,0,10001,1,'WPRC0115',0,0,5000,0.00,'Y','Y','riya','2025-11-23 11:43:36','riya','2025-11-23 11:43:36','','0000-00-00 00:00:00'),(0,0,10002,1,'WPRC0116',0,0,8000,0.00,'Y','Y','riya','2025-11-24 12:06:12','riya','2025-11-24 12:06:12','','0000-00-00 00:00:00'),(0,0,10003,1,'WPRC0117',0,0,1700,0.00,'Y','Y','riya','2025-11-24 12:09:53','riya','2025-11-24 12:09:53','','0000-00-00 00:00:00'),(0,0,10004,1,'WPRC0118',0,0,1000,0.00,'Y','Y','vishal','2025-11-28 15:48:36','vishal','2025-11-28 15:48:36','','0000-00-00 00:00:00'),(0,0,10005,1,'WPRC0119',0,0,4000,0.00,'Y','Y','vishal','2025-11-30 19:51:08','vishal','2025-11-30 19:51:08','','0000-00-00 00:00:00'),(0,0,10006,1,'OPWD0037',0,2000,2000,0.00,'Y','Y','reception','2025-12-01 12:04:38','reception','2025-12-01 12:04:38','','0000-00-00 00:00:00'),(0,0,10007,1,'WPRC0120',0,0,1000,0.00,'Y','Y','riya','2025-12-04 14:01:19','riya','2025-12-04 14:01:19','','0000-00-00 00:00:00'),(0,0,10008,1,'WPRC0121',0,0,2500,0.00,'Y','Y','riya','2025-12-04 14:07:40','riya','2025-12-04 14:07:40','','0000-00-00 00:00:00'),(0,0,10009,1,'WPRC0122',0,0,6000,0.00,'Y','Y','riya','2025-12-10 15:38:42','riya','2025-12-10 15:38:42','','0000-00-00 00:00:00'),(0,0,10010,1,'USG0102',0,0,4300,0.00,'Y','Y','vishal','2025-12-16 20:10:17','vishal','2025-12-16 20:10:17','','0000-00-00 00:00:00'),(0,0,10011,1,'WPRC0123',0,0,1000,0.00,'Y','Y','vishal','2025-12-17 13:40:18','vishal','2025-12-17 13:40:18','','0000-00-00 00:00:00'),(0,0,10012,1,'WPRC0124',0,0,1000,0.00,'Y','Y','vishal','2025-12-17 17:24:55','vishal','2025-12-17 17:24:55','','0000-00-00 00:00:00'),(0,0,10013,1,'WPRC0125',0,0,500,0.00,'Y','Y','vishal','2025-12-21 11:13:13','vishal','2025-12-21 11:13:13','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `charge_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `charge_master_amendment`
--

DROP TABLE IF EXISTS `charge_master_amendment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `charge_master_amendment` (
  `company_id` int(11) NOT NULL,
  `branch_id` int(11) NOT NULL,
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `rate_card_id` int(11) NOT NULL,
  `service_code` varchar(8) NOT NULL,
  `charge_amendment_no` smallint(6) NOT NULL,
  `op_charge` float NOT NULL,
  `ip_charge` float NOT NULL,
  `gst_percentage` float(9,2) NOT NULL,
  `active_YN` enum('Y','N') NOT NULL DEFAULT 'Y',
  `is_approved` enum('N','Y') NOT NULL DEFAULT 'Y',
  `approved_by` varchar(20) NOT NULL,
  `approved_datetime` datetime NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `rate_card_id` (`rate_card_id`,`service_code`,`charge_amendment_no`)
) ENGINE=InnoDB AUTO_INCREMENT=83 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `charge_master_amendment`
--

LOCK TABLES `charge_master_amendment` WRITE;
/*!40000 ALTER TABLE `charge_master_amendment` DISABLE KEYS */;
INSERT INTO `charge_master_amendment` VALUES (0,0,1,1,'NEU10018',0,3000,3000,0.00,'Y','Y','thims','2025-10-08 11:43:32','thims','2025-10-08 11:47:07','','0000-00-00 00:00:00'),(0,0,2,1,'NEU10024',0,2500,2500,0.00,'Y','Y','thims','2025-10-08 11:47:30','thims','2025-10-08 14:16:24','','0000-00-00 00:00:00'),(0,0,3,1,'ENTS0076',0,0,0,0.00,'Y','Y','shweta','2025-10-08 16:57:45','shweta','2025-10-08 16:59:55','','0000-00-00 00:00:00'),(0,0,4,1,'ENTP0035',0,2500,2500,0.00,'Y','Y','shweta','2025-10-08 16:59:53','shweta','2025-10-08 17:00:07','','0000-00-00 00:00:00'),(0,0,5,1,'NEU10019',0,2200,2200,0.00,'Y','Y','thims','2025-10-08 11:43:56','shweta','2025-10-08 18:17:59','','0000-00-00 00:00:00'),(0,0,6,1,'EDPR0032',0,0,0,0.00,'Y','Y','shweta','2025-10-10 16:25:40','shweta','2025-10-10 16:27:09','','0000-00-00 00:00:00'),(0,0,7,1,'XRY0007',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','shweta','2025-10-10 16:27:36','','0000-00-00 00:00:00'),(0,0,8,1,'XRY0007',1,300,0,0.00,'Y','Y','shweta','2025-10-10 16:27:36','shweta','2025-10-10 16:27:59','shweta','2025-10-10 16:27:36'),(0,0,9,1,'XRY0008',0,450,0,0.00,'Y','Y','','0000-00-00 00:00:00','shweta','2025-10-10 16:28:14','','0000-00-00 00:00:00'),(0,0,10,1,'XRY0009',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','shweta','2025-10-10 16:28:27','','0000-00-00 00:00:00'),(0,0,11,1,'XRY0011',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','shweta','2025-10-10 16:28:42','','0000-00-00 00:00:00'),(0,0,12,1,'XRY0017',0,300,0,0.00,'Y','Y','','0000-00-00 00:00:00','shweta','2025-10-10 16:29:08','','0000-00-00 00:00:00'),(0,0,13,1,'REG0001',0,200,200,0.00,'Y','Y','','0000-00-00 00:00:00','reception','2025-10-10 19:28:16','','0000-00-00 00:00:00'),(0,0,14,1,'REG0002',0,0,0,0.00,'Y','Y','reception','2025-10-10 19:29:36','reception','2025-10-10 19:29:45','','0000-00-00 00:00:00'),(0,0,15,1,'ROOM0002',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','reception','2025-10-10 19:33:24','','0000-00-00 00:00:00'),(0,0,16,1,'ROOM0002',1,1,2900,0.00,'Y','Y','reception','2025-10-10 19:33:24','reception','2025-10-10 19:34:14','reception','2025-10-10 19:33:24'),(0,0,17,1,'ROOM0001',0,3800,3800,0.00,'Y','Y','','0000-00-00 00:00:00','reception','2025-10-10 19:34:34','','0000-00-00 00:00:00'),(0,0,18,1,'ROOM0001',1,3800,5500,0.00,'Y','Y','reception','2025-10-10 19:34:34','reception','2025-10-10 19:34:39','reception','2025-10-10 19:34:34'),(0,0,19,1,'CARE0001',0,0,200,0.00,'Y','Y','reception','2025-10-10 19:37:08','reception','2025-10-10 19:40:24','','0000-00-00 00:00:00'),(0,0,20,1,'ROOM0001',2,3800,5500,0.00,'Y','Y','reception','2025-10-10 19:34:39','reception','2025-10-11 11:33:06','reception','2025-10-10 19:34:39'),(0,0,21,1,'ROOM0001',3,3800,5500,0.00,'Y','Y','reception','2025-10-11 11:33:06','reception','2025-10-11 11:33:15','reception','2025-10-11 11:33:06'),(0,0,22,1,'ROOM0001',4,0,0,0.00,'Y','Y','reception','2025-10-11 11:33:15','reception','2025-10-11 11:33:25','reception','2025-10-11 11:33:15'),(0,0,23,1,'ROOM0002',2,1,2900,0.00,'Y','Y','reception','2025-10-10 19:34:14','reception','2025-10-11 11:33:32','reception','2025-10-10 19:34:14'),(0,0,24,1,'ROOM0003',0,0,3200,0.00,'Y','Y','reception','2025-10-10 19:34:06','reception','2025-10-11 11:33:50','','0000-00-00 00:00:00'),(0,0,25,1,'CARE0001',1,0,200,0.00,'Y','Y','reception','2025-10-10 19:40:24','reception','2025-10-11 11:34:26','reception','2025-10-10 19:40:24'),(0,0,26,1,'CARE0002',0,0,200,0.00,'Y','Y','reception','2025-10-10 19:38:31','reception','2025-10-11 11:34:33','','0000-00-00 00:00:00'),(0,0,27,1,'CARE0003',0,0,600,0.00,'Y','Y','reception','2025-10-10 19:40:18','reception','2025-10-11 11:34:39','','0000-00-00 00:00:00'),(0,0,28,1,'CARE0004',0,0,800,0.00,'Y','Y','reception','2025-10-10 19:40:57','reception','2025-10-11 11:34:45','','0000-00-00 00:00:00'),(0,0,29,1,'CARE0005',0,0,400,0.00,'Y','Y','reception','2025-10-10 19:41:19','reception','2025-10-11 11:34:52','','0000-00-00 00:00:00'),(0,0,30,1,'CARE0006',0,0,300,0.00,'Y','Y','reception','2025-10-10 19:41:47','reception','2025-10-11 11:34:58','','0000-00-00 00:00:00'),(0,0,31,1,'ROOM0008',0,0,100,0.00,'Y','Y','reception','2025-10-11 12:42:49','reception','2025-10-11 12:43:18','','0000-00-00 00:00:00'),(0,0,32,1,'ROOM0008',1,0,100,0.00,'Y','Y','reception','2025-10-11 12:43:18','reception','2025-10-11 12:43:47','reception','2025-10-11 12:43:18'),(0,0,33,1,'ROOM0007',0,0,2000,0.00,'Y','Y','reception','2025-10-11 12:35:06','thims','2025-10-11 18:00:32','','0000-00-00 00:00:00'),(0,0,34,1,'ROOM0009',0,1,1,0.00,'Y','Y','thims','2025-10-11 18:01:57','thims','2025-10-11 18:02:04','','0000-00-00 00:00:00'),(0,0,35,1,'DRC0018',0,0,800,0.00,'Y','Y','reception','2025-10-11 12:12:59','thims','2025-10-11 18:02:45','','0000-00-00 00:00:00'),(0,0,36,1,'DRC0019',0,0,800,0.00,'Y','Y','reception','2025-10-11 12:13:19','thims','2025-10-11 18:03:24','','0000-00-00 00:00:00'),(0,0,37,1,'DRC0018',1,0,800,0.00,'Y','Y','thims','2025-10-11 18:02:45','thims','2025-10-11 18:03:47','thims','2025-10-11 18:02:45'),(0,0,38,1,'AECO0008',0,150,0,0.00,'Y','Y','','0000-00-00 00:00:00','thims','2025-10-11 18:05:20','','0000-00-00 00:00:00'),(0,0,39,1,'AECO0008',1,150,1,0.00,'Y','Y','thims','2025-10-11 18:05:20','thims','2025-10-11 18:06:07','thims','2025-10-11 18:05:20'),(0,0,40,1,'AECO0008',2,1,1,0.00,'Y','Y','thims','2025-10-11 18:06:07','thims','2025-10-11 18:06:15','thims','2025-10-11 18:06:07'),(0,0,41,1,'CARE0001',2,0,200,0.00,'Y','Y','reception','2025-10-11 11:34:26','thims','2025-10-11 18:07:29','reception','2025-10-11 11:34:26'),(0,0,42,1,'CARE0001',3,1,1,0.00,'Y','Y','thims','2025-10-11 18:07:29','thims','2025-10-11 18:08:16','thims','2025-10-11 18:07:29'),(0,0,43,1,'DRC0018',2,1,1,0.00,'Y','Y','thims','2025-10-11 18:03:47','vishal','2025-10-11 18:27:29','thims','2025-10-11 18:03:47'),(0,0,44,1,'DRC0019',1,0,1,0.00,'Y','Y','thims','2025-10-11 18:03:24','vishal','2025-10-11 18:27:42','thims','2025-10-11 18:03:24'),(0,0,45,1,'OPWD0019',0,50,50,0.00,'Y','Y','','0000-00-00 00:00:00','vishal','2025-10-11 18:46:16','','0000-00-00 00:00:00'),(0,0,46,1,'AECO0008',3,1,1,0.00,'Y','Y','thims','2025-10-11 18:06:15','vishal','2025-10-11 18:50:15','thims','2025-10-11 18:06:15'),(0,0,47,1,'AECO0008',4,1,1,0.00,'Y','Y','vishal','2025-10-11 18:50:15','vishal','2025-10-11 18:51:48','vishal','2025-10-11 18:50:15'),(0,0,48,1,'WPRC0077',0,0,1,0.00,'Y','Y','vishal','2025-10-11 19:00:56','vishal','2025-10-11 19:01:13','','0000-00-00 00:00:00'),(0,0,49,3,'WPRC0081',0,0,200,0.00,'Y','Y','vishal','2025-10-12 11:14:37','vishal','2025-10-12 11:15:25','','0000-00-00 00:00:00'),(0,0,50,1,'WPRC0084',0,0,750,0.00,'Y','Y','vishal','2025-10-12 11:21:42','vishal','2025-10-12 11:22:47','','0000-00-00 00:00:00'),(0,0,51,1,'DRC0018',3,1,1,0.00,'Y','Y','vishal','2025-10-11 18:27:29','vishal','2025-10-12 12:34:10','vishal','2025-10-11 18:27:29'),(0,0,52,1,'DRC0019',2,0,1,0.00,'Y','Y','vishal','2025-10-11 18:27:42','vishal','2025-10-12 12:34:24','vishal','2025-10-11 18:27:42'),(0,0,53,1,'WPRC0089',0,0,1,0.00,'Y','Y','vishal','2025-10-12 14:37:30','vishal','2025-10-12 14:37:53','','0000-00-00 00:00:00'),(0,0,54,1,'WPRC0094',0,0,2800,0.00,'Y','Y','reception','2025-10-12 16:16:53','reception','2025-10-12 16:17:53','','0000-00-00 00:00:00'),(0,0,55,1,'WPRC0079',0,0,750,0.00,'Y','Y','vishal','2025-10-11 19:32:20','vishal','2025-10-12 18:54:17','','0000-00-00 00:00:00'),(0,0,56,1,'XRY0045',0,1,0,0.00,'Y','Y','','0000-00-00 00:00:00','shweta','2025-10-13 09:43:18','','0000-00-00 00:00:00'),(0,0,57,1,'WPRC0083',0,0,200,0.00,'Y','Y','vishal','2025-10-12 11:19:33','vishal','2025-10-13 12:35:04','','0000-00-00 00:00:00'),(0,0,58,1,'WPRC0088',0,0,1500,0.00,'Y','Y','vishal','2025-10-12 12:41:51','vishal','2025-10-19 18:44:09','','0000-00-00 00:00:00'),(0,0,59,1,'SURG0017',0,0,1,0.00,'Y','Y','vishal','2025-10-20 11:49:13','vishal','2025-10-20 11:50:09','','0000-00-00 00:00:00'),(0,0,60,1,'DRC0021',0,0,2000,0.00,'Y','Y','vishal','2025-10-22 13:10:19','vishal','2025-10-22 13:19:36','','0000-00-00 00:00:00'),(0,0,61,1,'DRC0021',1,0,2000,0.00,'Y','Y','vishal','2025-10-22 13:19:36','vishal','2025-10-22 13:21:32','vishal','2025-10-22 13:19:36'),(0,0,62,1,'GENS0078',0,0,4000,0.00,'Y','Y','riya','2025-10-28 13:05:58','riya','2025-10-28 13:23:53','','0000-00-00 00:00:00'),(0,0,63,1,'OETR0001',0,0,1,0.00,'Y','Y','vishal','2025-10-13 10:04:49','reception','2025-11-04 13:39:28','','0000-00-00 00:00:00'),(0,0,64,1,'OETR0004',0,0,0,0.00,'Y','Y','vishal','2025-11-05 18:53:38','vishal','2025-11-05 18:53:55','','0000-00-00 00:00:00'),(0,0,65,1,'CARE0009',0,0,1500,0.00,'Y','Y','riya','2025-11-07 15:13:59','riya','2025-11-07 15:14:46','','0000-00-00 00:00:00'),(0,0,66,1,'CARE0009',1,0,0,0.00,'Y','Y','riya','2025-11-07 15:14:46','riya','2025-11-07 15:16:22','riya','2025-11-07 15:14:46'),(0,0,67,1,'CARE0009',2,0,0,0.00,'Y','Y','riya','2025-11-07 15:16:22','riya','2025-11-07 15:17:22','riya','2025-11-07 15:16:22'),(0,0,68,1,'CARE0009',3,0,0,0.00,'Y','Y','riya','2025-11-07 15:17:22','riya','2025-11-07 15:18:35','riya','2025-11-07 15:17:22'),(0,0,69,1,'WPRC0108',0,0,1000,0.00,'Y','Y','vishal','2025-11-08 14:31:04','vishal','2025-11-08 14:32:15','','0000-00-00 00:00:00'),(0,0,70,1,'SURG0018',0,0,0,0.00,'Y','Y','riya','2025-11-11 13:37:58','riya','2025-11-11 16:29:18','','0000-00-00 00:00:00'),(0,0,71,1,'OPWD0024',0,1000,1000,0.00,'Y','Y','shweta','2025-11-13 11:18:11','shweta','2025-11-13 11:24:14','','0000-00-00 00:00:00'),(0,0,72,1,'OPWD0025',0,800,800,0.00,'Y','Y','shweta','2025-11-13 11:29:16','shweta','2025-11-13 11:29:44','','0000-00-00 00:00:00'),(0,0,73,1,'OPWD0025',1,800,800,0.00,'Y','Y','shweta','2025-11-13 11:29:44','shweta','2025-11-13 11:30:23','shweta','2025-11-13 11:29:44'),(0,0,74,1,'OPWD0035',0,0,0,0.00,'Y','Y','shweta','2025-11-14 12:06:16','shweta','2025-11-14 12:07:18','','0000-00-00 00:00:00'),(0,0,75,1,'OPWD0035',1,0,0,0.00,'Y','Y','shweta','2025-11-14 12:07:18','shweta','2025-11-14 12:10:16','shweta','2025-11-14 12:07:18'),(0,0,76,1,'OPWD0035',2,0,0,0.00,'Y','Y','shweta','2025-11-14 12:10:16','shweta','2025-11-14 12:11:45','shweta','2025-11-14 12:10:16'),(0,0,77,1,'GENS0080',0,0,1000,0.00,'Y','Y','riya','2025-11-16 14:52:17','vishal','2025-11-17 16:01:33','','0000-00-00 00:00:00'),(0,0,78,1,'GENS0079',0,0,10000,0.00,'Y','Y','riya','2025-11-16 14:49:36','vishal','2025-11-17 16:01:42','','0000-00-00 00:00:00'),(0,0,79,1,'WPRC0113',0,0,0,0.00,'Y','Y','riya','2025-11-20 10:49:21','riya','2025-11-20 10:51:30','','0000-00-00 00:00:00'),(0,0,80,1,'WPRC0113',1,0,2500,0.00,'Y','Y','riya','2025-11-20 10:51:30','riya','2025-11-20 10:52:26','riya','2025-11-20 10:51:30'),(0,0,81,1,'WPRC0112',0,0,0,0.00,'Y','Y','riya','2025-11-20 10:48:02','riya','2025-11-20 10:52:35','','0000-00-00 00:00:00'),(0,0,82,1,'OPWD0036',0,0,0,0.00,'Y','Y','shweta','2025-11-21 14:12:00','shweta','2025-11-21 14:13:38','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `charge_master_amendment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `childServiceMaster`
--

DROP TABLE IF EXISTS `childServiceMaster`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `childServiceMaster` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parentServiceId` varchar(8) NOT NULL COMMENT 'service code from service_master table as parentServiceId',
  `childServiceId` varchar(8) NOT NULL COMMENT 'service code from service master table as childServiceId',
  `chargeType` char(1) NOT NULL COMMENT 'charge type P for percentage F for fixed',
  `value` int(11) NOT NULL,
  `unit` varchar(10) NOT NULL COMMENT 'per day, per bill',
  `createdBy` varchar(20) NOT NULL,
  `lastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `childServiceMaster`
--

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

--
-- Table structure for table `city_and_state_master`
--

DROP TABLE IF EXISTS `city_and_state_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `city_and_state_master` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `city` varchar(50) NOT NULL,
  `state` varchar(50) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNIQUE` (`city`,`state`)
) ENGINE=InnoDB AUTO_INCREMENT=272445 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `city_and_state_master`
--

LOCK TABLES `city_and_state_master` WRITE;
/*!40000 ALTER TABLE `city_and_state_master` DISABLE KEYS */;
INSERT INTO `city_and_state_master` VALUES (1,'AHMEDABAD','GUJARAT','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(2,'BOMBAY','MUMBAI','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(3,'DAHOD','GUJARAT','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(4,'GANDHINAGAR','GUJARAT','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(5,'GIR SOMNATH','GUJARAT','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(6,'KADI','GUJARAT','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(7,'KATHIYAD','GUJARAT','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(8,'MAHESANA','GUJARAT','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(9,'MEHSANA','GUJARAT','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(10,'NAVI MUMBAI','GUJARAT','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(11,'QUEENJLAND','GUJARAT','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(12,'RAJESTHAN','GUJARAT','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(13,'RAJKOT','RAJKOT','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(14,'SABARKANTHA','GUJARAT','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(15,'SANTRAMPUR','GUJARAT','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(16,'VADODRA','GUJARAT','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(17,'VAVOL','GUJARAT','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(18,'VIJAPUR, MEHSANA','GUJARAT','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(19,'ZALOD','GUJARAT','Y','thims','2019-03-04 18:00:00','thims','2019-03-04 18:00:00'),(30,'GANDHINAGAR, ','GUJARAT','Y','meena','2019-03-05 11:07:40','','0000-00-00 00:00:00'),(33,'LUNAWADA','','Y','meena','2019-03-05 11:24:14','','0000-00-00 00:00:00'),(61,'MANSHA','GUJARAT','Y','fenali','2019-03-06 10:34:20','','0000-00-00 00:00:00'),(62,'KACHCHH','GUJARAT','Y','fenali','2019-03-06 11:11:24','','0000-00-00 00:00:00'),(67,'MAHISAGAR','','Y','fenali','2019-03-06 12:31:20','','0000-00-00 00:00:00'),(69,'LAVARPUR','','Y','fenali','2019-03-06 12:45:18','','0000-00-00 00:00:00'),(71,'DAHOD','','Y','ruchita','2019-03-06 13:12:39','','0000-00-00 00:00:00'),(87,'GANDHINAGAR','','Y','meena','2019-03-07 11:15:06','','0000-00-00 00:00:00'),(91,'HIMMATNAGR','','Y','fenali','2019-03-07 12:08:11','','0000-00-00 00:00:00'),(93,'','GUJARAT','Y','sonali','2019-03-08 08:34:19','','0000-00-00 00:00:00'),(97,'MAHESANA','','Y','meena','2019-03-08 09:57:14','','0000-00-00 00:00:00'),(101,'LUNAWADA','GUJARAT','Y','meena','2019-03-08 10:27:39','','0000-00-00 00:00:00'),(104,'LUNDAWADA','','Y','meena','2019-03-08 10:33:50','','0000-00-00 00:00:00'),(106,'AHEMDABAD','','Y','meena','2019-03-11 09:43:54','','0000-00-00 00:00:00'),(157,'GANDHINAGR','','Y','fenali','2019-03-11 13:52:11','','0000-00-00 00:00:00'),(179,'AHMEDABAD','','Y','ruchita','2019-03-12 11:01:24','','0000-00-00 00:00:00'),(261,'TALOD','GUJARAT','Y','sonali','2019-03-15 09:14:03','','0000-00-00 00:00:00'),(281,'GANMDHINAGAR','GUJARAT','Y','meena','2019-03-15 11:45:17','','0000-00-00 00:00:00'),(303,'GANDHINAGR','GUJARAT','Y','falguni','2019-03-15 15:36:54','','0000-00-00 00:00:00'),(324,'GODHARA','','Y','meena','2019-03-16 11:51:22','','0000-00-00 00:00:00'),(331,'ARVALLI','','Y','ruchita','2019-03-18 09:56:04','','0000-00-00 00:00:00'),(339,'ARVALLI','GUJARAT','Y','ruchita','2019-03-18 10:07:17','','0000-00-00 00:00:00'),(341,'AHEMDABAD','GUJARAT','Y','meena','2019-03-18 10:12:46','','0000-00-00 00:00:00'),(344,'AHEMDADABAD','','Y','meena','2019-03-18 10:18:47','','0000-00-00 00:00:00'),(352,'MAHISAGAR','GUJARAT','Y','meena','2019-03-18 10:41:36','','0000-00-00 00:00:00'),(402,'ODHAV','GUJARAT','Y','falguni','2019-03-19 14:11:28','','0000-00-00 00:00:00'),(411,'IDAR','GUJARAT','Y','falguni','2019-03-19 17:20:14','','0000-00-00 00:00:00'),(418,'BHUJ','GUJARAT','Y','meena','2019-03-22 08:46:44','','0000-00-00 00:00:00'),(421,'LONAVADA','','Y','meena','2019-03-22 08:54:42','','0000-00-00 00:00:00'),(449,'SURENDRANAGAR','GUJARAT','Y','ruchita','2019-03-22 11:30:33','','0000-00-00 00:00:00'),(478,'GIRSOMNATH','','Y','falguni','2019-03-22 16:29:13','','0000-00-00 00:00:00'),(479,'CHOTILA','','Y','fenali','2019-03-22 17:13:14','','0000-00-00 00:00:00'),(499,'RAJKOT','','Y','sonali','2019-03-23 09:18:13','','0000-00-00 00:00:00'),(519,'RAJASTHAN','','Y','sonali','2019-03-23 10:29:30','','0000-00-00 00:00:00'),(551,'LUNAVADA','GUJARAT','Y','RUCHITA','2019-03-23 12:55:13','','0000-00-00 00:00:00'),(580,'PATAN','GUJARAT','Y','RUCHITA','2019-03-23 17:42:39','','0000-00-00 00:00:00'),(588,'MEHSANA','','Y','RUCHITA','2019-03-23 19:14:48','','0000-00-00 00:00:00'),(595,'PATADI','GUJARAT','Y','meena','2019-03-25 08:59:34','','0000-00-00 00:00:00'),(596,'HIMANTNAGAR','GUJARAT','Y','sonali','2019-03-25 09:19:11','','0000-00-00 00:00:00'),(607,'GOTA','','Y','fenali','2019-03-25 10:05:33','','0000-00-00 00:00:00'),(609,'VIJAPUR','','Y','fenali','2019-03-25 10:10:08','','0000-00-00 00:00:00'),(614,'GOTA','GUJARAT','Y','fenali','2019-03-25 10:19:21','','0000-00-00 00:00:00'),(619,'DELHI','','Y','fenali','2019-03-25 10:25:40','','0000-00-00 00:00:00'),(656,'SABARMATI','','Y','meena','2019-03-25 11:56:55','','0000-00-00 00:00:00'),(700,'KADI','','Y','sonali','2019-03-26 08:40:04','','0000-00-00 00:00:00'),(718,'SABRKATHA','','Y','fenali','2019-03-26 09:43:09','','0000-00-00 00:00:00'),(724,'PALDI','','Y','sonali','2019-03-26 09:51:53','','0000-00-00 00:00:00'),(730,'AHEMDAVAD','GUJARAT','Y','fenali','2019-03-26 10:11:58','','0000-00-00 00:00:00'),(732,'SURAT','GUJARAT','Y','meena','2019-03-26 10:18:15','','0000-00-00 00:00:00'),(757,'PANCHMAHAL','','Y','RUCHITA','2019-03-26 11:40:27','','0000-00-00 00:00:00'),(764,'SABARKANTHA','','Y','RUCHITA','2019-03-26 11:52:57','','0000-00-00 00:00:00'),(810,'KATCHH','GUJARAT','Y','ruchita','2019-03-27 09:15:17','','0000-00-00 00:00:00'),(811,'KATCHH','','Y','ruchita','2019-03-27 09:16:57','','0000-00-00 00:00:00'),(838,'PALDI','GUJARAT','Y','ruchita','2019-03-27 11:11:04','','0000-00-00 00:00:00'),(839,'GODHARA','GUJARAT','Y','ruchita','2019-03-27 11:21:03','','0000-00-00 00:00:00'),(842,'MORBI','GUJARAT','Y','ruchita','2019-03-27 11:28:21','','0000-00-00 00:00:00'),(871,'MAHISAGR','','Y','fenali','2019-03-27 13:35:29','','0000-00-00 00:00:00'),(874,'KUDASAN','GUJARAT','Y','sima','2019-03-27 14:21:04','','0000-00-00 00:00:00'),(876,'MAHISAGR','GUJARAT','Y','ruchita','2019-03-27 14:34:32','','0000-00-00 00:00:00'),(925,'NADIAD','','Y','meena','2019-03-28 10:27:16','','0000-00-00 00:00:00'),(932,'NADIAD','GUJARAT','Y','meena','2019-03-28 10:48:19','','0000-00-00 00:00:00'),(940,'KHAMBHAT','GUJARAT','Y','ruchita','2019-03-28 11:04:28','','0000-00-00 00:00:00'),(946,'LONDON','GUJARAT','Y','ruchita','2019-03-28 11:31:34','','0000-00-00 00:00:00'),(963,'PANCHMAHAL','GUJARAT','Y','falguni','2019-03-28 13:00:11','','0000-00-00 00:00:00'),(967,'ANAND','','Y','sima','2019-03-28 13:40:54','','0000-00-00 00:00:00'),(982,'ANAND','GUJARAT','Y','falguni','2019-03-28 17:42:58','','0000-00-00 00:00:00'),(996,'MADHYAPRADESH','','Y','sonali','2019-03-29 08:20:08','','0000-00-00 00:00:00'),(1001,'MADHYAPRADESH','GUJARAT','Y','sonali','2019-03-29 08:43:36','','0000-00-00 00:00:00'),(1014,'ARVALI','GUJARAT','Y','meena','2019-03-29 09:49:37','','0000-00-00 00:00:00'),(1051,'SURAT','','Y','fenali','2019-03-29 12:55:15','','0000-00-00 00:00:00'),(1059,'HIMMATNAGR','GUJARAT','Y','ruchita','2019-03-29 13:57:07','','0000-00-00 00:00:00'),(1126,'GHADHDA','','Y','sonali','2019-03-30 10:17:33','','0000-00-00 00:00:00'),(1141,'RAJSHTHAN','GUJARAT','Y','fenali','2019-03-30 10:59:27','','0000-00-00 00:00:00'),(1156,'SABARKATHA','','Y','SIMA','2019-03-30 11:46:00','','0000-00-00 00:00:00'),(1160,'SANAND','','Y','fenali','2019-03-30 11:58:02','','0000-00-00 00:00:00'),(1162,'KALOL','','Y','fenali','2019-03-30 12:07:19','','0000-00-00 00:00:00'),(1163,'KALOL','GUJARAT','Y','fenali','2019-03-30 12:08:50','','0000-00-00 00:00:00'),(1168,'SANAND','GUJARAT','Y','SIMA','2019-03-30 12:36:49','','0000-00-00 00:00:00'),(1182,'BHAVNAGAR','GUJARAT','Y','ruchita','2019-03-30 16:17:41','','0000-00-00 00:00:00'),(1199,'GHADHDA','GUJARAT','Y','ruchita','2019-03-30 17:54:47','','0000-00-00 00:00:00'),(1244,'PRANTIJ','','Y','sonali','2019-04-01 09:20:10','','0000-00-00 00:00:00'),(1263,'MORBI','','Y','sonali','2019-04-01 10:36:21','','0000-00-00 00:00:00'),(1266,'BHARUCH','GUJARAT','Y','ruchita','2019-04-01 10:39:41','','0000-00-00 00:00:00'),(1312,'ITADRA','','Y','fenali','2019-04-01 13:13:06','','0000-00-00 00:00:00'),(1401,'VISHNAGAR','','Y','sonali','2019-04-02 08:15:16','','0000-00-00 00:00:00'),(1402,'GHODHRA','','Y','sonali','2019-04-02 08:17:30','','0000-00-00 00:00:00'),(1435,'VIJAPUR','GUJARAT','Y','ruchita','2019-04-02 10:30:13','','0000-00-00 00:00:00'),(1446,'GANDHINA','','Y','sima','2019-04-02 11:10:06','','0000-00-00 00:00:00'),(1466,'SABRKATHA','GUJARAT','Y','fenali','2019-04-02 12:09:42','','0000-00-00 00:00:00'),(1515,'VISHNAGAR','GUJARAT','Y','fenali','2019-04-02 17:07:56','','0000-00-00 00:00:00'),(1516,'GHODHRA','GUJARAT','Y','fenali','2019-04-02 17:08:42','','0000-00-00 00:00:00'),(1564,'HIMMATNAGAR','','Y','ruchita','2019-04-03 11:21:47','','0000-00-00 00:00:00'),(1589,'HIMMATNAGAR','GUJARAT','Y','fenali','2019-04-03 12:02:00','','0000-00-00 00:00:00'),(1609,'NEW MUMBHAI ','GUJARAT','Y','fenali','2019-04-03 14:02:48','','0000-00-00 00:00:00'),(1650,'FATEPURA','GUJARAT','Y','avinash','2019-04-03 19:27:31','','0000-00-00 00:00:00'),(1681,'BARUCH','GUJARAT','Y','fenali','2019-04-04 10:04:01','','0000-00-00 00:00:00'),(1783,'KHEDA','GUJARAT','Y','sonali','2019-04-05 08:24:28','','0000-00-00 00:00:00'),(1789,' AHMEDABAD','','Y','sonali','2019-04-05 08:53:57','','0000-00-00 00:00:00'),(1795,'RAJKOT','GUJARAT','Y','jay','2019-04-05 09:38:08','','0000-00-00 00:00:00'),(1834,'BARODA','','Y','fenali','2019-04-05 12:00:20','','0000-00-00 00:00:00'),(1838,'BARODA','GUJARAT','Y','ruchita','2019-04-05 12:20:19','','0000-00-00 00:00:00'),(1840,'GODHRA','','Y','ruchita','2019-04-05 12:27:46','','0000-00-00 00:00:00'),(1843,'GODHRA','GUJARAT','Y','ruchita','2019-04-05 12:34:34','','0000-00-00 00:00:00'),(1875,'DEHGAM','','Y','ruchita','2019-04-05 15:43:33','','0000-00-00 00:00:00'),(1876,' MEHSANA','GUJARAT','Y','ruchita','2019-04-05 15:48:12','','0000-00-00 00:00:00'),(1878,'DEHGAM','GUJARAT','Y','ruchita','2019-04-05 15:54:55','','0000-00-00 00:00:00'),(1886,' AHMEDABAD','GUJARAT','Y','ruchita','2019-04-05 16:36:04','','0000-00-00 00:00:00'),(1906,'GADHINAGAR','GUJARAT','Y','SUJIT','2019-04-05 21:02:57','','0000-00-00 00:00:00'),(1947,'MAHESHANA','','Y','sonali','2019-04-06 10:37:43','','0000-00-00 00:00:00'),(1987,'VIRPUR','','Y','fenali','2019-04-06 12:20:20','','0000-00-00 00:00:00'),(1988,'VIRPUR','GUJARAT','Y','fenali','2019-04-06 12:21:57','','0000-00-00 00:00:00'),(2023,'MAHESHANA','GUJARAT','Y','RUCHITA','2019-04-06 17:41:07','','0000-00-00 00:00:00'),(2076,'ARAVVALLI','GUJARAT','Y','RUCHITA','2019-04-08 10:37:46','','0000-00-00 00:00:00'),(2105,'UNJA','','Y','fenali','2019-04-08 12:10:01','','0000-00-00 00:00:00'),(2214,'HALVAD','GUJARAT','Y','RUCHITA','2019-04-09 09:29:24','','0000-00-00 00:00:00'),(2218,'INDOR','MP','Y','jay','2019-04-09 09:44:09','','0000-00-00 00:00:00'),(2378,'LADUL','GUJARAT','Y','RUCHITA','2019-04-10 13:14:07','','0000-00-00 00:00:00'),(2389,'VAJAPUR','GUJARAT','Y','nishiraj','2019-04-10 16:06:28','','0000-00-00 00:00:00'),(2394,'BOTAD','GUJARAT','Y','RUCHITA','2019-04-10 16:56:02','','0000-00-00 00:00:00'),(2426,'ANAD','','Y','sonali','2019-04-11 08:57:21','','0000-00-00 00:00:00'),(2432,'LIMDI','GUJARAT','Y','sonali','2019-04-11 09:41:48','','0000-00-00 00:00:00'),(2437,'LIMDI','','Y','sonali','2019-04-11 09:49:42','','0000-00-00 00:00:00'),(2445,'RADESHAN','GUJARAT','Y','jay','2019-04-11 10:19:59','','0000-00-00 00:00:00'),(2455,'ADALAJ','GUJARAT','Y','jay','2019-04-11 10:47:17','','0000-00-00 00:00:00'),(2484,'ANAD','GUJARAT','Y','Fenali','2019-04-11 12:03:26','','0000-00-00 00:00:00'),(2508,'ANNAD','','Y','navalsinh','2019-04-11 15:58:17','','0000-00-00 00:00:00'),(2515,'BAYAD','','Y','sonali','2019-04-12 08:17:50','','0000-00-00 00:00:00'),(2544,'RAYSAN','','Y','RUCHITA','2019-04-12 10:09:52','','0000-00-00 00:00:00'),(2608,'BAYAD','GUJARAT','Y','Fenali','2019-04-12 16:23:46','','0000-00-00 00:00:00'),(2609,'VIJAYNAGAR','','Y','NISHIRAJ','2019-04-12 16:27:45','','0000-00-00 00:00:00'),(2619,'VIJAYNAGAR','GUJARAT','Y','navalsinh','2019-04-12 18:05:49','','0000-00-00 00:00:00'),(2784,'PALNPUR','','Y','RUCHITA','2019-04-15 08:53:05','','0000-00-00 00:00:00'),(2873,'BANASKANTHA','','Y','sima','2019-04-15 14:30:27','','0000-00-00 00:00:00'),(2909,'RAJESTHAN','RAJESTHAN','Y','sujit','2019-04-15 23:05:17','','0000-00-00 00:00:00'),(2917,'PALNPUR','GUJARAT','Y','RUCHITA','2019-04-16 08:35:39','','0000-00-00 00:00:00'),(2923,'MUMBAY','','Y','RUCHITA','2019-04-16 08:53:21','','0000-00-00 00:00:00'),(2929,'GANDINAGAR','GUJARAT','Y','RUCHITA','2019-04-16 09:24:33','','0000-00-00 00:00:00'),(2954,'PALANPUR','','Y','RUCHITA','2019-04-16 11:41:53','','0000-00-00 00:00:00'),(2963,'PALANPUR','GUJARAT','Y','sima','2019-04-16 12:15:10','','0000-00-00 00:00:00'),(2968,'MUMBAY','GUJARAT','Y','RUCHITA','2019-04-16 12:34:02','','0000-00-00 00:00:00'),(3001,'KENYA','','Y','sonali','2019-04-17 08:21:12','','0000-00-00 00:00:00'),(3014,'UNNA','GUJARAT','Y','RUCHITA','2019-04-17 09:50:08','','0000-00-00 00:00:00'),(3043,'SABARKATHA','GUJARAT','Y','jay','2019-04-17 11:21:34','','0000-00-00 00:00:00'),(3113,'AANDRAPRADESH ','','Y','Fenali','2019-04-17 15:30:58','','0000-00-00 00:00:00'),(3115,'RAJAPALAGAM','TAMILNADU','Y','Fenali','2019-04-17 15:52:09','','0000-00-00 00:00:00'),(3142,'VISHANAGAR','GUJARAT','Y','sonali','2019-04-18 08:22:01','','0000-00-00 00:00:00'),(3248,'NAVI MUMBAI','','Y','sonali','2019-04-19 08:30:13','','0000-00-00 00:00:00'),(3259,'ZALOD','','Y','sonali','2019-04-19 09:10:08','','0000-00-00 00:00:00'),(3341,'PATAN','','Y','RUCHITA','2019-04-19 16:12:32','','0000-00-00 00:00:00'),(3466,'DHEGAM','GUJARAT','Y','avinash','2019-04-20 16:52:05','','0000-00-00 00:00:00'),(3564,'BHAVNAGAR','','Y','RUCHITA','2019-04-22 11:19:30','','0000-00-00 00:00:00'),(3579,'PORBANDAR','GUJARAT','Y','RUCHITA','2019-04-22 11:52:59','','0000-00-00 00:00:00'),(3683,'LADOL','GUJARAT','Y','RUCHITA','2019-04-23 11:13:07','','0000-00-00 00:00:00'),(3704,'NAGPUR ','','Y','Fenali','2019-04-23 14:36:06','','0000-00-00 00:00:00'),(3754,'JUNAGADH','','Y','RUCHITA','2019-04-24 10:25:27','','0000-00-00 00:00:00'),(3793,'KUCH','','Y','nishiraj','2019-04-24 12:19:27','','0000-00-00 00:00:00'),(3795,'KUCH','GUJARAT','Y','RUCHITA','2019-04-24 12:22:46','','0000-00-00 00:00:00'),(3952,'JUNAGADH','GUJARAT','Y','nishiraj','2019-04-25 12:32:10','','0000-00-00 00:00:00'),(3997,'IRAN','','Y','navalsinh','2019-04-26 04:47:43','','0000-00-00 00:00:00'),(4054,'IRAN','GUJARAT','Y','Fenali','2019-04-26 12:35:08','','0000-00-00 00:00:00'),(4097,'KHAMBHAT','','Y','RUCHITA','2019-04-26 19:16:20','','0000-00-00 00:00:00'),(4161,'KENYA','GUJARAT','Y','Fenali','2019-04-27 11:08:47','','0000-00-00 00:00:00'),(4186,'ARVVALLI','GUJARAT','Y','ruchita','2019-04-27 12:48:27','','0000-00-00 00:00:00'),(4198,'DHANGANDRA','GUJARAT','Y','jay','2019-04-27 15:22:00','','0000-00-00 00:00:00'),(4228,'HAIDRABAD','INDIA','Y','sujit','2019-04-27 22:19:55','','0000-00-00 00:00:00'),(4330,'AMRELI','GUJARAT','Y','RUCHITA','2019-04-29 12:48:50','','0000-00-00 00:00:00'),(4354,'SURENDRA NAGAR','','Y','navalsinh','2019-04-29 15:23:50','','0000-00-00 00:00:00'),(4407,' MEHSANA','','Y','RUCHITA','2019-04-30 09:28:28','','0000-00-00 00:00:00'),(4434,'ARVVALLI','','Y','RUCHITA','2019-04-30 10:38:33','','0000-00-00 00:00:00'),(4451,'NANA CHILODA','','Y','sonali','2019-04-30 11:20:24','','0000-00-00 00:00:00'),(4490,'MUMBAI','GUJARAT','Y','Fenali','2019-04-30 12:56:26','','0000-00-00 00:00:00'),(4532,'BALASINOR','GUJARAT','Y','sujit','2019-05-01 03:52:09','','0000-00-00 00:00:00'),(4547,'KHEDA','','Y','RUCHITA','2019-05-01 09:47:36','','0000-00-00 00:00:00'),(4615,'RATLAM','','Y','RUCHITA','2019-05-01 13:52:34','','0000-00-00 00:00:00'),(4641,'RATLAM','GUJARAT','Y','Fenali','2019-05-01 18:53:14','','0000-00-00 00:00:00'),(4718,'NANA CHILODA','GUJARAT','Y','Fenali','2019-05-02 12:03:37','','0000-00-00 00:00:00'),(4730,'BOTAD','','Y','RUCHITA','2019-05-02 13:08:14','','0000-00-00 00:00:00'),(4789,'SURENDRANAGAR','','Y','sonali','2019-05-03 08:27:54','','0000-00-00 00:00:00'),(4874,'MUMBAI','','Y','sonali','2019-05-03 14:27:28','','0000-00-00 00:00:00'),(4877,'GODHAR','GUJARAT','Y','RUCHITA','2019-05-03 14:30:36','','0000-00-00 00:00:00'),(4915,'MUBAI','','Y','navalsinh','2019-05-03 22:07:10','','0000-00-00 00:00:00'),(4941,'VAPI','','Y','sonali','2019-05-04 09:42:30','','0000-00-00 00:00:00'),(4985,'KHERALU','GUJARAT','Y','sonali','2019-05-04 11:45:30','','0000-00-00 00:00:00'),(4989,'VALSAD','','Y','Fenali','2019-05-04 11:59:16','','0000-00-00 00:00:00'),(5033,'SURENDANAGAR','GUJARAT','Y','Fenali','2019-05-04 16:14:01','','0000-00-00 00:00:00'),(5036,'VAPI','GUJARAT','Y','Fenali','2019-05-04 16:19:08','','0000-00-00 00:00:00'),(5058,'NADIYAD','GUJARAT','Y','navalsinh','2019-05-04 22:50:06','','0000-00-00 00:00:00'),(5062,'SANTARAMPUR','','Y','avinash','2019-05-05 08:59:17','','0000-00-00 00:00:00'),(5076,'MODASA','','Y','sonali','2019-05-06 08:38:31','','0000-00-00 00:00:00'),(5097,'KATCCH ','GUJARAT','Y','RUCHITA','2019-05-06 09:33:52','','0000-00-00 00:00:00'),(5115,'JAMNAGAR','GUJARAT','Y','RUCHITA','2019-05-06 10:39:08','','0000-00-00 00:00:00'),(5184,'MODASA','GUJARAT','Y','RUCHITA','2019-05-06 16:47:13','','0000-00-00 00:00:00'),(5191,'MUBAI','GUJARAT','Y','RUCHITA','2019-05-06 16:53:42','','0000-00-00 00:00:00'),(5216,'GHODHARA','','Y','sonali','2019-05-07 08:25:39','','0000-00-00 00:00:00'),(5279,'AHMEDABDA','GUJARAT','Y','RUCHITA','2019-05-07 11:54:42','','0000-00-00 00:00:00'),(5290,'MANSA','GUJARAT','Y','RUCHITA','2019-05-07 12:46:54','','0000-00-00 00:00:00'),(5309,'GHODHARA','GUJARAT','Y','RUCHITA','2019-05-07 16:06:29','','0000-00-00 00:00:00'),(5391,'RAKHIYAL','GUJARAT','Y','janak','2019-05-08 11:19:27','','0000-00-00 00:00:00'),(5476,'GANDHHINAGAR','','Y','avinash','2019-05-09 09:10:24','','0000-00-00 00:00:00'),(5517,'UNA','','Y','Fenali','2019-05-09 12:18:51','','0000-00-00 00:00:00'),(5553,'ANAND','GUAJARAT','Y','jay','2019-05-09 16:44:46','','0000-00-00 00:00:00'),(5558,'UNA','GUJARAT','Y','jay','2019-05-09 17:10:45','','0000-00-00 00:00:00'),(5587,'HALOL','GUJARAT','Y','Fenali','2019-05-10 10:28:11','','0000-00-00 00:00:00'),(5588,'HALOL','','Y','Fenali','2019-05-10 10:31:55','','0000-00-00 00:00:00'),(5617,'UP','','Y','sonali','2019-05-10 12:05:38','','0000-00-00 00:00:00'),(5648,'GANDHIANAGAR','GUJARAT','Y','jay','2019-05-10 15:55:06','','0000-00-00 00:00:00'),(5656,'UP','GUJARAT','Y','jay','2019-05-10 16:54:03','','0000-00-00 00:00:00'),(5662,'SOMANTH','GUJARAT','Y','jay','2019-05-10 17:11:25','','0000-00-00 00:00:00'),(5677,'GANDHINGAR','GUJARAT','Y','jay','2019-05-10 18:59:31','','0000-00-00 00:00:00'),(5709,'SSURENDRANAGAR','','Y','RUCHITA','2019-05-13 09:44:39','','0000-00-00 00:00:00'),(5710,'DHANGDHRA','','Y','RUCHITA','2019-05-13 09:47:14','','0000-00-00 00:00:00'),(5723,'IDER','GUJARAT','Y','RUCHITA','2019-05-13 10:20:29','','0000-00-00 00:00:00'),(5728,'GANDHINAGARR','GUJARAT','Y','RUCHITA','2019-05-13 10:32:31','','0000-00-00 00:00:00'),(5780,'SSURENDRANAGAR','GUJARAT','Y','Fenali','2019-05-13 15:25:48','','0000-00-00 00:00:00'),(5809,'BHARUCH','','Y','RUCHITA','2019-05-14 08:29:04','','0000-00-00 00:00:00'),(5812,'ARVVALI','GUJARAT','Y','RUCHITA','2019-05-14 08:35:44','','0000-00-00 00:00:00'),(5931,'DWARKA','','Y','sonali','2019-05-15 08:25:15','','0000-00-00 00:00:00'),(5933,'DWARKA','GUJARAT','Y','sonali','2019-05-15 08:26:20','','0000-00-00 00:00:00'),(6078,'NAVI MUMBAY','GUJARAT','Y','RUCHITA','2019-05-16 10:12:45','','0000-00-00 00:00:00'),(6233,'PRANTIJ','GUJARAT','Y','RUCHITA','2019-05-17 12:10:44','','0000-00-00 00:00:00'),(6247,'ARAVVALI','GUJARAT','Y','RUCHITA','2019-05-17 13:33:03','','0000-00-00 00:00:00'),(6248,'NIKOL','GUJARAT','Y','Fenali','2019-05-17 13:47:28','','0000-00-00 00:00:00'),(6310,'PALI','RAJASTHAN','Y','gautam','2019-05-18 09:58:14','','0000-00-00 00:00:00'),(6338,'SABARMATI','GUJARAT','Y','RUCHITA','2019-05-18 11:47:25','','0000-00-00 00:00:00'),(6421,'TARAPUR','GUJARAT','Y','RUCHITA','2019-05-20 10:03:35','','0000-00-00 00:00:00'),(6513,'','ODISHA','Y','Fenali','2019-05-20 14:54:36','','0000-00-00 00:00:00'),(6558,'KACHH','GUJARAT','Y','RUCHITA','2019-05-21 08:44:56','','0000-00-00 00:00:00'),(6575,'KHANPUR','','Y','sonali','2019-05-21 09:55:15','','0000-00-00 00:00:00'),(6669,'KHANPUR','GUJARAT','Y','Fenali','2019-05-21 16:30:56','','0000-00-00 00:00:00'),(6684,'NAVI MUMBAI','MUMBAI','Y','jay','2019-05-21 22:02:48','','0000-00-00 00:00:00'),(6693,'MUMBA','','Y','RUCHITA','2019-05-22 08:57:13','','0000-00-00 00:00:00'),(6734,'AFRICA','GUJARAT','Y','RUCHITA','2019-05-22 10:52:24','','0000-00-00 00:00:00'),(6804,'KUTCH','GUJARAT','Y','jay','2019-05-22 13:41:27','','0000-00-00 00:00:00'),(6818,'ANKLESHWER','GUJARAT','Y','RUCHITA','2019-05-22 15:33:03','','0000-00-00 00:00:00'),(6906,'ARVVALI','','Y','RUCHITA','2019-05-23 11:48:04','','0000-00-00 00:00:00'),(6954,'ANKLESHWER','','Y','RUCHITA','2019-05-23 16:47:11','','0000-00-00 00:00:00'),(7161,'KUDASN','','Y','sonali','2019-05-25 11:05:04','','0000-00-00 00:00:00'),(7386,'ARRAVALI','','Y','gautam','2019-05-27 14:33:18','','0000-00-00 00:00:00'),(7455,'THARA','','Y','sonali','2019-05-28 08:31:00','','0000-00-00 00:00:00'),(7456,'CHALALA','','Y','sonali','2019-05-28 08:33:27','','0000-00-00 00:00:00'),(7503,'PAMCJMAHAL ','','Y','Fenali','2019-05-28 10:35:30','','0000-00-00 00:00:00'),(7534,'GANDINAGR ','','Y','Fenali','2019-05-28 11:53:01','','0000-00-00 00:00:00'),(7562,'THARA','GUJARAT','Y','gautam','2019-05-28 16:06:30','','0000-00-00 00:00:00'),(7573,'CHALALA','GUJARAT','Y','gautam','2019-05-28 16:54:08','','0000-00-00 00:00:00'),(7614,'KUTTCH','GUJARAT','Y','sonali','2019-05-29 09:41:10','','0000-00-00 00:00:00'),(7623,'AHEMEDABAD','GUJARAT','Y','gautam','2019-05-29 10:20:10','','0000-00-00 00:00:00'),(7625,'AHEMDADABAD','GUJARAT','Y','gautam','2019-05-29 10:29:45','','0000-00-00 00:00:00'),(7758,'GANDHNAGR ','GUJARAT','Y','Fenali','2019-05-30 11:10:48','','0000-00-00 00:00:00'),(7769,'SUIRAT ','GUJARAT','Y','Fenali','2019-05-30 11:37:58','','0000-00-00 00:00:00'),(7888,'GODGRA','GUJARAT','Y','Fenali','2019-05-31 11:53:07','','0000-00-00 00:00:00'),(7931,'VADODARA','GUJARAT','Y','gautam','2019-05-31 17:11:44','','0000-00-00 00:00:00'),(7941,'GANDHIGAR','GUJARAT','Y','gautam','2019-05-31 20:06:07','','0000-00-00 00:00:00'),(8017,'KHRDA','GUJARAT','Y','chandanig','2019-06-01 16:38:16','','0000-00-00 00:00:00'),(8078,'PETHAPUR','GUJARAT','Y','chandanig','2019-06-03 09:49:44','','0000-00-00 00:00:00'),(8118,'AHEMADABAD','GUJARAT','Y','avinash','2019-06-03 11:21:41','','0000-00-00 00:00:00'),(8122,'LINAVADA','GUJARAT','Y','chandanig','2019-06-03 11:31:15','','0000-00-00 00:00:00'),(8131,'RAJSTHAN','GUJARAT','Y','chandanig','2019-06-03 11:48:28','','0000-00-00 00:00:00'),(8136,'DASKOIU','GUJARAT','Y','chandanig','2019-06-03 12:04:44','','0000-00-00 00:00:00'),(8283,'SURENDRA NAGAR','GUJARAT','Y','jay','2019-06-04 11:36:28','','0000-00-00 00:00:00'),(8293,'MANDAL','GUJARAT','Y','avinash','2019-06-04 12:08:07','','0000-00-00 00:00:00'),(8321,'GANDHHINAGAR','GUJARAT','Y','gautam','2019-06-04 15:48:30','','0000-00-00 00:00:00'),(8345,'BANASKANTHA','GUJARAT','Y','Fenali','2019-06-05 10:21:14','','0000-00-00 00:00:00'),(8354,'HIMATNAGAR','GUJARAT','Y','chandanig','2019-06-05 10:49:15','','0000-00-00 00:00:00'),(8521,'RADHESAN','GUJARAT','Y','gautam','2019-06-06 14:39:21','','0000-00-00 00:00:00'),(8530,'HARIJ','GUJARAT','Y','sonali','2019-06-08 08:41:16','','0000-00-00 00:00:00'),(8586,'GANADHINAR ','GUJARAT','Y','Fenali','2019-06-08 11:10:55','','0000-00-00 00:00:00'),(8618,'MANDAVI','GUJARAT','Y','sima','2019-06-08 12:22:16','','0000-00-00 00:00:00'),(8918,'RAJULA','GUJARAT','Y','chandanig','2019-06-11 11:41:27','','0000-00-00 00:00:00'),(8935,'AMEDABAD','GUJARAT','Y','jay','2019-06-11 12:32:09','','0000-00-00 00:00:00'),(9090,'MEHESANA','GUJARAT','Y','avinash','2019-06-12 15:27:53','','0000-00-00 00:00:00'),(9158,'AANADNAGAR','GUJARAT','Y','chandanig','2019-06-13 10:29:53','','0000-00-00 00:00:00'),(9281,'JUNAGATH','GUJARAT','Y','chandanig','2019-06-14 11:49:45','','0000-00-00 00:00:00'),(9314,'BANASKATHA','GUJARAT','Y','gautam','2019-06-14 14:14:50','','0000-00-00 00:00:00'),(9378,'GANDINAGR ','GUJARAT','Y','Fenali','2019-06-15 10:15:52','','0000-00-00 00:00:00'),(9521,'LIMKHEDA','GUJARAT','Y','navalsinh','2019-06-16 22:10:20','','0000-00-00 00:00:00'),(9638,'BHABBHAR','GUJARAT','Y','avinash','2019-06-18 12:59:32','','0000-00-00 00:00:00'),(9857,'BANGLORE','GUJARAT','Y','gautam','2019-06-19 19:21:38','','0000-00-00 00:00:00'),(9875,'DIV','GUJARAT','Y','chandanig','2019-06-20 09:47:33','','0000-00-00 00:00:00'),(9946,'HIMTNAGAR','GUJARAT','Y','gautam','2019-06-20 12:15:40','','0000-00-00 00:00:00'),(9965,'M P','GUJARAT','Y','avinash','2019-06-20 13:35:02','','0000-00-00 00:00:00'),(10090,'UP','UP','Y','sujit','2019-06-21 13:01:30','','0000-00-00 00:00:00'),(10093,'SANTARAMPUR','GUJARAT','Y','chandanig','2019-06-21 13:07:21','','0000-00-00 00:00:00'),(10205,'BASVADA','GUJARAT','Y','gautam','2019-06-22 10:10:52','','0000-00-00 00:00:00'),(10221,'VAKANER','GUJARAT','Y','gautam','2019-06-22 10:36:33','','0000-00-00 00:00:00'),(10465,'UDAIPUR','GUJARAT','Y','chandanig','2019-06-24 12:29:34','','0000-00-00 00:00:00'),(10585,'NARODA','GUJARAT','Y','chandanig','2019-06-25 10:17:11','','0000-00-00 00:00:00'),(10771,'GANDHINAR','GUJARAT','Y','gautam','2019-06-26 11:58:14','','0000-00-00 00:00:00'),(10792,'DAKOR ','GUJARAT','Y','Fenali','2019-06-26 12:30:03','','0000-00-00 00:00:00'),(10813,'RAJASTHAN','GUJARAT','Y','chandanig','2019-06-26 13:15:15','','0000-00-00 00:00:00'),(10864,'GANDHNAGAR','GUJARAT','Y','sujit','2019-06-27 09:58:46','','0000-00-00 00:00:00'),(10969,'PANCHMAGAL','GUJARAT','Y','chandanig','2019-06-27 16:54:17','','0000-00-00 00:00:00'),(11265,'MAHSANA','GUJARAT','Y','navalsinh','2019-06-29 18:22:30','','0000-00-00 00:00:00'),(11429,'VANDORA','GUJARAT','Y','gautam','2019-07-01 11:58:48','','0000-00-00 00:00:00'),(11595,' SURAT ','GUJARAT','Y','Fenali','2019-07-02 10:45:29','','0000-00-00 00:00:00'),(11745,'KACCH','GUJARAT','Y','sonali','2019-07-03 08:36:13','','0000-00-00 00:00:00'),(11779,'DISA','GUJARAT','Y','sonali','2019-07-03 10:13:19','','0000-00-00 00:00:00'),(11803,'SURENDARNAGAR','GUJARAT','Y','harsh','2019-07-03 11:00:50','','0000-00-00 00:00:00'),(11805,'JALOD','GUJARAT','Y','chandanig','2019-07-03 11:06:56','','0000-00-00 00:00:00'),(11833,'','MP','Y','sonali','2019-07-04 08:33:04','','0000-00-00 00:00:00'),(11903,'BHILODA','GUJARAT','Y','sonali','2019-07-05 08:28:45','','0000-00-00 00:00:00'),(11989,'MEHASANA','GUJARAT','Y','harsh','2019-07-05 12:28:15','','0000-00-00 00:00:00'),(12034,'BHABHOR','GUJARAT','Y','harsh','2019-07-05 16:51:58','','0000-00-00 00:00:00'),(12103,'RUPAL','GUJARAT','Y','sonali','2019-07-06 10:07:08','','0000-00-00 00:00:00'),(12104,'PRATIJ','GUJARAT','Y','navalsinh','2019-07-06 22:53:16','','0000-00-00 00:00:00'),(12108,'VAV','GUJARAT','Y','navalsinh','2019-07-07 04:14:57','','0000-00-00 00:00:00'),(12141,'DUBAI','GUJARAT','Y','sonali','2019-07-08 09:45:26','','0000-00-00 00:00:00'),(12456,'CHHALA','GUJARAT','Y','chandanig','2019-07-09 12:48:11','','0000-00-00 00:00:00'),(12509,'TAJPUR','GUJARAT','Y','harsh','2019-07-09 16:43:56','','0000-00-00 00:00:00'),(12552,'JUNAGHADH','GUJARAT','Y','sonali','2019-07-10 08:19:49','','0000-00-00 00:00:00'),(12828,'GANDHIAGAR','GUJARAT','Y','chandanig','2019-07-11 11:55:46','','0000-00-00 00:00:00'),(12852,'GABDHINAGR','GUJARAT','Y','fenali','2019-07-11 14:15:01','','0000-00-00 00:00:00'),(13310,'GANHNAGAR','GUJARAT','Y','sujit','2019-07-14 11:34:15','','0000-00-00 00:00:00'),(13341,'KUKARWADA','GUJARAT','Y','jay','2019-07-15 08:21:00','','0000-00-00 00:00:00'),(13375,'RANPUR','GUJARAT','Y','sonali','2019-07-15 10:02:31','','0000-00-00 00:00:00'),(13407,'AHMADABAD','GUJARAT','Y','ishwarlal','2019-07-15 11:07:58','','0000-00-00 00:00:00'),(13428,'AAKHAJ','GUJARAT','Y','chandanig','2019-07-15 11:29:26','','0000-00-00 00:00:00'),(13535,'CHHOTA UDAYPUR','GUJARAT','Y','chandanig','2019-07-15 15:51:46','','0000-00-00 00:00:00'),(13685,'GIRSOMNATH','GUJARAT','Y','chandanig','2019-07-16 12:50:24','','0000-00-00 00:00:00'),(13734,'NEW MUMBAI','GUJARAT','Y','chandanig','2019-07-16 17:01:55','','0000-00-00 00:00:00'),(13998,'LIMBODRA','GUJARAT','Y','sonali','2019-07-18 09:58:22','','0000-00-00 00:00:00'),(14042,'MAHRASTRA','GUJARAT','Y','fenali','2019-07-19 15:26:40','','0000-00-00 00:00:00'),(14127,'DELHI','GUJARAT','Y','sonali','2019-07-20 10:09:03','','0000-00-00 00:00:00'),(14185,'','MAHARASHTRA','Y','jay','2019-07-20 12:00:39','','0000-00-00 00:00:00'),(14204,'SABRKANTHA','GUJARAT','Y','NIKI','2019-07-20 13:39:31','','0000-00-00 00:00:00'),(14280,'ARIVALLI','GUJARAT','Y','NIKI','2019-07-22 10:03:10','','0000-00-00 00:00:00'),(14282,'MOTERA','GUJARAT','Y','NIKI','2019-07-22 10:08:43','','0000-00-00 00:00:00'),(14513,'','RAJSHTHAN ','Y','fenali','2019-07-23 09:19:49','','0000-00-00 00:00:00'),(14654,'','MADHYAPRADESH','Y','fenali','2019-07-23 15:19:48','','0000-00-00 00:00:00'),(14689,'RANDESAN','GUJARAT','Y','NIKI','2019-07-24 16:15:09','','0000-00-00 00:00:00'),(14947,'GIR','GUJARAT','Y','jay','2019-07-26 09:00:48','','0000-00-00 00:00:00'),(15040,'HIMMATNGARA','GUJARAT','Y','sujit','2019-07-26 13:34:37','','0000-00-00 00:00:00'),(15260,'KAPADVANJ','GUJARAT','Y','NIKI','2019-07-27 12:55:06','','0000-00-00 00:00:00'),(15493,'GANDHIANAGR','GUJARAT','Y','jay','2019-07-29 14:24:42','','0000-00-00 00:00:00'),(15771,'JAMNAGR','GUJARAT','Y','fenali','2019-08-01 08:25:47','','0000-00-00 00:00:00'),(15933,'HIMMATANAGAR','GUJARAT','Y','NIKI','2019-08-01 16:23:13','','0000-00-00 00:00:00'),(16032,'BOPAL','GUJARAT','Y','sonali','2019-08-02 12:11:19','','0000-00-00 00:00:00'),(16186,'GNDHINAGR','GUJARAT','Y','fenali','2019-08-05 13:33:01','','0000-00-00 00:00:00'),(16545,'GANDHINAGAN','GUJARAT','Y','fenali','2019-08-07 13:42:48','','0000-00-00 00:00:00'),(16572,'SABARKANATHA','GUJARAT','Y','NIKI','2019-08-07 15:53:41','','0000-00-00 00:00:00'),(16687,'GANHINAGAR','GUJARAT','Y','NIKI','2019-08-08 12:48:30','','0000-00-00 00:00:00'),(16844,'KACHCHA','GUJARAT','Y','fenali','2019-08-09 13:03:49','','0000-00-00 00:00:00'),(16848,'KACHCH','GUJARAT','Y','fenali','2019-08-09 13:14:57','','0000-00-00 00:00:00'),(16959,'GHANDHINAGR ','GUJARAT','Y','fenali','2019-08-10 09:13:08','','0000-00-00 00:00:00'),(17028,' GANDHINAGAR','GUJARAT','Y','niki','2019-08-10 11:59:21','','0000-00-00 00:00:00'),(17148,'KERALA','GUJARAT','Y','apurva','2019-08-11 21:36:09','','0000-00-00 00:00:00'),(17173,'MP','MP','Y','sonali','2019-08-12 09:18:09','','0000-00-00 00:00:00'),(17283,'DUNGARPUR','GUJARAT','Y','chandanig','2019-08-12 12:00:48','','0000-00-00 00:00:00'),(17416,'VISNAGAR','GUJARAT','Y','NIKI','2019-08-12 17:47:32','','0000-00-00 00:00:00'),(17520,'LAVARPUR','GUJARAT','Y','NIKI','2019-08-13 11:39:42','','0000-00-00 00:00:00'),(17882,'UNAVA','GUJARAT','Y','fenali','2019-08-16 10:00:34','','0000-00-00 00:00:00'),(18124,'SURENDRANAGR','GUJARAT','Y','fenali','2019-08-17 09:03:38','','0000-00-00 00:00:00'),(18132,'','WEST BENGAL','Y','NIKI','2019-08-17 09:25:53','','0000-00-00 00:00:00'),(18211,'ANKLESHWAR','GUJARAT','Y','NIKI','2019-08-17 11:53:00','','0000-00-00 00:00:00'),(18273,'RAYASAN  GANDHINAGAR','GUJARAT','Y','chandanig','2019-08-17 14:27:47','','0000-00-00 00:00:00'),(18412,'JIDAHOD','GUJARAT','Y','chandanig','2019-08-19 09:22:18','','0000-00-00 00:00:00'),(18526,'CHOTAUDEPUR','GUJARAT','Y','fenali','2019-08-19 12:10:52','','0000-00-00 00:00:00'),(18781,'MAHISAQGAR','GUJARAT','Y','chandanig','2019-08-20 12:21:26','','0000-00-00 00:00:00'),(18942,'CHANDKHEDA','GUJARAT','Y','chandanig','2019-08-21 10:41:40','','0000-00-00 00:00:00'),(19066,'JARKHAND','GUJARAT','Y','chandanig','2019-08-21 15:24:54','','0000-00-00 00:00:00'),(19500,'JODHPUR','GUJARAT','Y','fenali','2019-08-23 12:37:36','','0000-00-00 00:00:00'),(19544,'GANDHINAGER','GUJARAT','Y','fenali','2019-08-23 16:17:57','','0000-00-00 00:00:00'),(19588,'USA','USA','Y','sujit','2019-08-24 10:19:30','','0000-00-00 00:00:00'),(19607,'KUTCCH','GUJARAT','Y','sujit','2019-08-24 12:19:52','','0000-00-00 00:00:00'),(19629,'ANKLESHVAR','GUJARAT','Y','harsh','2019-08-24 20:47:17','','0000-00-00 00:00:00'),(19684,'GOA','GOA','Y','sonali','2019-08-26 08:25:42','','0000-00-00 00:00:00'),(19707,'BIHAR','GUJARAT','Y','chandanig','2019-08-26 09:41:38','','0000-00-00 00:00:00'),(19742,'VIRATNAGAR','GUJARAT','Y','chandanig','2019-08-26 10:48:39','','0000-00-00 00:00:00'),(19780,'JAKATNAKA SURAT','GUJARAT','Y','chandanig','2019-08-26 11:57:10','','0000-00-00 00:00:00'),(19821,'SHURAT ','GUJARAT','Y','fenali','2019-08-26 12:41:13','','0000-00-00 00:00:00'),(20038,'RAISAN  GANDHINAGAR','GUJARAT','Y','chandanig','2019-08-27 10:40:40','','0000-00-00 00:00:00'),(20053,'','ONTARIO','Y','SONALI','2019-08-27 11:06:41','','0000-00-00 00:00:00'),(20074,'','UGANDA','Y','sonali','2019-08-27 11:31:27','','0000-00-00 00:00:00'),(20107,'LONDON ','UK','Y','fenali','2019-08-27 12:32:49','','0000-00-00 00:00:00'),(20122,'NEW JERSEY','GUJARAT','Y','niki','2019-08-27 13:13:34','','0000-00-00 00:00:00'),(20125,'','NEW JERSEY','Y','niki','2019-08-27 13:31:13','','0000-00-00 00:00:00'),(20271,'JUNAGADHA','GUJARAT','Y','jay','2019-08-28 10:34:15','','0000-00-00 00:00:00'),(20301,'UDAUPUR ','GUJARAT','Y','fenali','2019-08-28 11:22:28','','0000-00-00 00:00:00'),(20391,'MADHAYPRADESH','MADHAYPRADESH','Y','jay','2019-08-28 14:14:45','','0000-00-00 00:00:00'),(20484,'SOMNATH','GUJARAT','Y','sonali','2019-08-29 08:27:19','','0000-00-00 00:00:00'),(20601,'LILBAURN','AMERICA','Y','sonali','2019-08-29 12:56:26','','0000-00-00 00:00:00'),(20618,' AHEMEBAD','GUJARAT','Y','chandanig','2019-08-29 13:48:53','','0000-00-00 00:00:00'),(20683,'MANASA','GUJARAT','Y','harsh','2019-08-29 17:59:28','','0000-00-00 00:00:00'),(20686,'DAHEGAM','GUJARAT','Y','harsh','2019-08-29 18:33:06','','0000-00-00 00:00:00'),(20783,'NANI KADI','GUJARAT','Y','chandanig','2019-08-30 11:57:00','','0000-00-00 00:00:00'),(20834,'BANASKHANTHA','GUJARAT','Y','chandanig','2019-08-30 13:06:05','','0000-00-00 00:00:00'),(20870,'NARDIPUR','GUJARAT','Y','sonali','2019-08-30 14:20:32','','0000-00-00 00:00:00'),(20988,'','USA','Y','sonali','2019-08-31 08:23:03','','0000-00-00 00:00:00'),(21220,'GANDHINAAGR','GUJARAT','Y','sujit','2019-09-01 11:50:53','','0000-00-00 00:00:00'),(21227,'GANDHINNAGAR','GUJARAT','Y','sujit','2019-09-01 14:51:14','','0000-00-00 00:00:00'),(21253,'KUKARVADA','GUJARAT','Y','HARSH','2019-09-02 08:39:59','','0000-00-00 00:00:00'),(21295,'SADARA','GUJARAT','Y','parita','2019-09-02 10:13:53','','0000-00-00 00:00:00'),(21462,'MUMBAI ','MUMBAI ','Y','fenali','2019-09-02 14:56:24','','0000-00-00 00:00:00'),(21526,'NAGPUR','GUJARAT','Y','NIKI','2019-09-02 17:42:01','','0000-00-00 00:00:00'),(21651,'','MAHARASTRA','Y','niki','2019-09-03 11:07:49','','0000-00-00 00:00:00'),(21701,'VIRAMGAM','GUJARAT','Y','chandanig','2019-09-03 12:39:20','','0000-00-00 00:00:00'),(21900,'GANDHINAGA','GUJARAT','Y','fenali','2019-09-04 11:12:15','','0000-00-00 00:00:00'),(22201,'ARRAVALI','GUJARAT','Y','parita','2019-09-05 12:50:36','','0000-00-00 00:00:00'),(22308,'CHENNAI','CHENNAI','Y','sujit','2019-09-06 18:43:30','','0000-00-00 00:00:00'),(22402,'','RAJASTHAN','Y','jay','2019-09-08 19:01:47','','0000-00-00 00:00:00'),(22454,'SONARADA','GUJARAT','Y','parita','2019-09-09 10:05:15','','0000-00-00 00:00:00'),(22635,'DHAR','GUJARAT','Y','parita','2019-09-09 14:55:09','','0000-00-00 00:00:00'),(22750,'DABHODA','GUJARAT','Y','parita','2019-09-11 11:12:10','','0000-00-00 00:00:00'),(23207,'DHANSURA','GUJARAT','Y','parita','2019-09-12 17:56:20','','0000-00-00 00:00:00'),(23269,'KOBA','GUJARAT','Y','chandanig','2019-09-13 09:41:48','','0000-00-00 00:00:00'),(23450,'DETROJ','GUJARAT','Y','chandanig','2019-09-13 16:19:23','','0000-00-00 00:00:00'),(23482,'VERAVAL','GUJARAT','Y','parita','2019-09-13 17:50:48','','0000-00-00 00:00:00'),(23550,'GHANDHINAGR ','','Y','manali','2019-09-14 09:50:10','','0000-00-00 00:00:00'),(23714,'BHABHAR','GUJARAT','Y','parita','2019-09-14 15:10:33','','0000-00-00 00:00:00'),(23887,'JODHPUR','RAJSTHAN','Y','sonali','2019-09-16 09:46:03','','0000-00-00 00:00:00'),(23889,'','RAJSTHAN','Y','sonali','2019-09-16 09:48:07','','0000-00-00 00:00:00'),(23943,'RAYPUR','GUJARAT','Y','parita','2019-09-16 12:54:47','','0000-00-00 00:00:00'),(24033,'GANDHINGER ','GUJARAT','Y','fenali','2019-09-17 09:42:06','','0000-00-00 00:00:00'),(24099,'AMDAVAD','GUJARAT','Y','manali','2019-09-17 11:35:11','','0000-00-00 00:00:00'),(24510,'BAHUCHARAJI','GUJARAT','Y','harsh','2019-09-18 16:55:48','','0000-00-00 00:00:00'),(24731,'HIMATNGAR','GUJARAT','Y','manali','2019-09-19 13:21:06','','0000-00-00 00:00:00'),(25189,'GANDHIMNAGR ','GUJARAT','Y','fenali','2019-09-23 08:57:38','','0000-00-00 00:00:00'),(25377,'UDAYPUR','GUJARAT','Y','manali','2019-09-23 13:13:21','','0000-00-00 00:00:00'),(25702,'MAHARASHTRA','GUJARAT','Y','parita','2019-09-24 13:58:29','','0000-00-00 00:00:00'),(26424,'PUNA','GUJARAT','Y','Parita','2019-09-27 10:46:56','','0000-00-00 00:00:00'),(26515,'HANDHINAGAR','GUJARAT','Y','niki','2019-09-27 14:17:31','','0000-00-00 00:00:00'),(26740,'LAGHNAJ','GUJARAT','Y','manali','2019-09-28 11:33:52','','0000-00-00 00:00:00'),(27107,'','MADHYAPRDESH ','Y','fenali','2019-09-30 13:16:49','','0000-00-00 00:00:00'),(27380,'MESANA','GUJARAT','Y','manali','2019-10-01 16:01:34','','0000-00-00 00:00:00'),(27487,'SUAT','GUJARAT','Y','sujit','2019-10-02 20:59:24','','0000-00-00 00:00:00'),(27755,'RAJESHTAN','GUJARAT','Y','soham','2019-10-03 15:41:32','','0000-00-00 00:00:00'),(27901,'ANJAR','GUJARAT','Y','chandanig','2019-10-04 10:49:19','','0000-00-00 00:00:00'),(27949,'BHACHAU','GUJARAT','Y','parita','2019-10-04 12:11:42','','0000-00-00 00:00:00'),(28201,'CHILODA','GUJARAT','Y','HIREN','2019-10-05 12:05:06','','0000-00-00 00:00:00'),(28279,'GANDHINARA','GUJARAT','Y','HIREN','2019-10-05 17:48:13','','0000-00-00 00:00:00'),(28294,'BANASKANTA','GUJARAT','Y','niki','2019-10-07 10:46:08','','0000-00-00 00:00:00'),(28384,'PATNA','PATNA','Y','parita','2019-10-07 12:35:19','','0000-00-00 00:00:00'),(28636,'AMDABAD','GUJARAT','Y','soham','2019-10-09 09:55:24','','0000-00-00 00:00:00'),(29185,'UNJA','GUJARAT','Y','SONALI','2019-10-11 08:18:12','','0000-00-00 00:00:00'),(29188,'AMERELI','GUJARAT','Y','SONALI','2019-10-11 08:29:16','','0000-00-00 00:00:00'),(29582,'MOTACHILODA','GUJARAT','Y','manali','2019-10-12 11:02:45','','0000-00-00 00:00:00'),(29817,'RAJASTHAN','RAJASTHAN','Y','harsh','2019-10-13 18:51:36','','0000-00-00 00:00:00'),(30336,'VEDA','GUJARAT','Y','CHANDANIG','2019-10-15 13:52:53','','0000-00-00 00:00:00'),(30352,'SITAPUR','GUJARAT','Y','manali','2019-10-15 15:05:56','','0000-00-00 00:00:00'),(30577,'GHANDHINGAR','GUJARAT','Y','manali','2019-10-16 14:29:44','','0000-00-00 00:00:00'),(30776,'COIMBATORE','GUJARAT','Y','parita','2019-10-17 11:46:16','','0000-00-00 00:00:00'),(30835,'DHANDHUKA','GUJARAT','Y','parita','2019-10-17 14:07:42','','0000-00-00 00:00:00'),(31046,'PRATIG','GUJARAT','Y','khanjan','2019-10-18 12:45:23','','0000-00-00 00:00:00'),(31053,'SUSURENDRANAGAR','GUJARAT','Y','PARITA','2019-10-18 12:58:40','','0000-00-00 00:00:00'),(31343,'INDOR','GUJARAT','Y','manali','2019-10-19 17:40:43','','0000-00-00 00:00:00'),(31753,'BECHRAJI','GUJARAT','Y','Khanjan','2019-10-22 09:57:39','','0000-00-00 00:00:00'),(31945,'KUTTCHH','GUJARAT','Y','SONALI','2019-10-23 09:06:15','','0000-00-00 00:00:00'),(32164,'LAGHANAJ','GUJARAT','Y','manali','2019-10-24 09:55:52','','0000-00-00 00:00:00'),(32590,'SABHARKANTHA','GUJARAT','Y','KHANJAN','2019-10-28 13:38:16','','0000-00-00 00:00:00'),(32704,'KATCH','GUJARAT','Y','niki','2019-10-30 09:56:34','','0000-00-00 00:00:00'),(32707,'ANKLESWAR','GUJARAT','Y','manali','2019-10-30 10:02:25','','0000-00-00 00:00:00'),(32792,'JUNI VASANI','GUJARAT','Y','manali','2019-10-30 12:08:31','','0000-00-00 00:00:00'),(32798,'JUNI VSANI','GUJARAT','Y','manali','2019-10-30 12:15:20','','0000-00-00 00:00:00'),(32863,'GATHADA','GUJARAT','Y','manali','2019-10-30 14:44:06','','0000-00-00 00:00:00'),(32875,'KHMBHAT','GUJARAT','Y','manali','2019-10-30 15:48:36','','0000-00-00 00:00:00'),(33013,'ANANND','GUJARAT','Y','khanjan','2019-10-31 10:22:06','','0000-00-00 00:00:00'),(33059,'BECHADA','GUJARAT','Y','manali','2019-10-31 10:50:42','','0000-00-00 00:00:00'),(33134,'MORVA','GUJARAT','Y','parita','2019-10-31 12:03:19','','0000-00-00 00:00:00'),(33163,'HIMATANAGAR','GUJARAT','Y','HIREN','2019-10-31 12:37:51','','0000-00-00 00:00:00'),(33187,'MALPUR','GUJARAT','Y','khanjan','2019-10-31 13:55:35','','0000-00-00 00:00:00'),(33243,'GHODHAR','GUJARAT','Y','sonali','2019-10-31 15:57:18','','0000-00-00 00:00:00'),(33423,'GWALIYAR','GUJARAT','Y','khanjan','2019-11-01 10:18:08','','0000-00-00 00:00:00'),(33428,'','LONDON','Y','niki','2019-11-01 10:22:18','','0000-00-00 00:00:00'),(33443,'SURENDRANGAR','GUJARAT','Y','manali','2019-11-01 10:33:02','','0000-00-00 00:00:00'),(33519,'SANJELI','GUJARAT','Y','manali','2019-11-01 11:14:57','','0000-00-00 00:00:00'),(33540,'MANDAV','GUJARAT','Y','parita','2019-11-01 11:29:09','','0000-00-00 00:00:00'),(33542,'DHOD','GUJARAT','Y','chandanig','2019-11-01 11:30:13','','0000-00-00 00:00:00'),(33544,'RAJASHTHAN','GUJARAT','Y','khanjan','2019-11-01 11:31:16','','0000-00-00 00:00:00'),(33673,'ANANAD','GUJARAT','Y','khanjan','2019-11-01 12:41:34','','0000-00-00 00:00:00'),(33734,'PETLAD','GUJARAT','Y','parita','2019-11-01 14:15:42','','0000-00-00 00:00:00'),(33743,'SAHHERA','GUJARAT','Y','parita','2019-11-01 14:23:44','','0000-00-00 00:00:00'),(33770,'UK','UK','Y','khanjan','2019-11-01 14:47:22','','0000-00-00 00:00:00'),(33777,'UK','','Y','khanjan','2019-11-01 14:52:58','','0000-00-00 00:00:00'),(33778,'UK','GUJARAT','Y','khanjan','2019-11-01 14:54:57','','0000-00-00 00:00:00'),(33780,'SAGVDA','GUJARAT','Y','manali','2019-11-01 14:56:00','','0000-00-00 00:00:00'),(33784,'SAGVADA','GUJARAT','Y','manali','2019-11-01 15:00:34','','0000-00-00 00:00:00'),(33785,'SHAHERA','GUJARAT','Y','parita','2019-11-01 15:00:39','','0000-00-00 00:00:00'),(33790,'SAHERA','GUJARAT','Y','parita','2019-11-01 15:05:40','','0000-00-00 00:00:00'),(33937,'ARAVALI','GUJARAT','Y','manali','2019-11-02 08:38:55','','0000-00-00 00:00:00'),(33968,'DHORKA','GUJARAT','Y','khanjan','2019-11-02 09:08:40','','0000-00-00 00:00:00'),(33994,'SARGASAN','GUJARAT','Y','SONALI','2019-11-02 09:30:03','','0000-00-00 00:00:00'),(34022,'UBHARAN','GUJARAT','Y','manali','2019-11-02 09:53:52','','0000-00-00 00:00:00'),(34023,'CHAROTAR','GUJARAT','Y','khanjan','2019-11-02 09:54:12','','0000-00-00 00:00:00'),(34028,'JASUNI','GUJARAT','Y','manali','2019-11-02 10:00:14','','0000-00-00 00:00:00'),(34072,'AHJOL','GUJARAT','Y','khanjan','2019-11-02 10:33:31','','0000-00-00 00:00:00'),(34127,'VASTRAL','GUJARAT','Y','khanjan','2019-11-02 11:00:33','','0000-00-00 00:00:00'),(34177,'LUNAVDA','GUJARAT','Y','manali','2019-11-02 11:20:31','','0000-00-00 00:00:00'),(34219,'SANNAD','GUJARAT','Y','chaNDANIG','2019-11-02 11:38:57','','0000-00-00 00:00:00'),(34338,'KANSARI','GUJARAT','Y','khanjan','2019-11-02 13:56:06','','0000-00-00 00:00:00'),(34391,'MADIYA HATIYA','GUJARAT','Y','parita','2019-11-02 14:42:52','','0000-00-00 00:00:00'),(34429,'DAHAD','GUJARAT','Y','manali','2019-11-02 15:32:47','','0000-00-00 00:00:00'),(34558,'PUNE','GUJARAT','Y','HIREN','2019-11-03 11:32:05','','0000-00-00 00:00:00'),(34598,'BAPUNGAR','GUJARAT','Y','HIREN','2019-11-04 08:28:21','','0000-00-00 00:00:00'),(34627,'LUCKNAW','GUJARAT','Y','parita','2019-11-04 09:30:24','','0000-00-00 00:00:00'),(34667,'RAPAR','GUJARAT','Y','parita','2019-11-04 10:32:29','','0000-00-00 00:00:00'),(34763,'SURYAVDAR','GUJARAT','Y','manali','2019-11-04 12:11:56','','0000-00-00 00:00:00'),(34933,'NAVIMUMBAI','GUJARAT','Y','manali','2019-11-04 18:23:47','','0000-00-00 00:00:00'),(35156,'MAVDI','GUJARAT','Y','manali','2019-11-05 13:11:26','','0000-00-00 00:00:00'),(35202,'FATEGADH','GUJARAT','Y','manali','2019-11-05 16:13:37','','0000-00-00 00:00:00'),(35401,'JINJVA','GUJARAT','Y','manali','2019-11-06 13:37:58','','0000-00-00 00:00:00'),(35420,'BASVADA','RAJESHTHAN','Y','manali','2019-11-06 15:00:33','','0000-00-00 00:00:00'),(35422,'SALUMBER','GUJARAT','Y','manali','2019-11-06 15:05:59','','0000-00-00 00:00:00'),(35432,'MEGHRAJ','GUJARAT','Y','manali','2019-11-06 15:23:35','','0000-00-00 00:00:00'),(35648,'PANCHNAHAL','GUJARAT','Y','manali','2019-11-07 13:34:27','','0000-00-00 00:00:00'),(35779,'AANAND','GUJARAT','Y','chandanig','2019-11-08 10:18:01','','0000-00-00 00:00:00'),(35869,'DHOLKA','GUJARAT','Y','manali','2019-11-08 12:45:16','','0000-00-00 00:00:00'),(35877,'SANJALI','GUJARAT','Y','manali','2019-11-08 12:50:29','','0000-00-00 00:00:00'),(35930,'TLOD','GUJARAT','Y','manali','2019-11-08 15:05:18','','0000-00-00 00:00:00'),(35950,'KHERVA','GUJARAT','Y','manali','2019-11-08 15:55:30','','0000-00-00 00:00:00'),(36138,'PANJAB','GUJARAT','Y','manali','2019-11-09 11:39:25','','0000-00-00 00:00:00'),(36155,'PRANTEJ','GUJARAT','Y','khanjan','2019-11-09 17:07:54','','0000-00-00 00:00:00'),(36213,'SATRAMPUR','GUJARAT','Y','chandanig','2019-11-11 09:12:16','','0000-00-00 00:00:00'),(36231,'GHATLODIYA','GUJARAT','Y','chandanig','2019-11-11 09:48:22','','0000-00-00 00:00:00'),(36285,'','CICAGO','Y','niki','2019-11-11 10:49:31','','0000-00-00 00:00:00'),(36428,'BORIJ','GUJARAT','Y','parita','2019-11-11 14:42:39','','0000-00-00 00:00:00'),(36449,'GHANDHINAGAR','GUJARAT','Y','niki','2019-11-11 15:52:53','','0000-00-00 00:00:00'),(36864,'DHANGDHRA','GUJARAT','Y','chandanig','2019-11-13 10:48:05','','0000-00-00 00:00:00'),(36991,'SUREDRANAGAR','GUJARAT','Y','parita','2019-11-13 15:29:15','','0000-00-00 00:00:00'),(37283,'RAJESTAN','GUJARAT','Y','parita','2019-11-14 17:52:13','','0000-00-00 00:00:00'),(37411,'SUGAD','GUJARAT','Y','harsh','2019-11-15 12:39:29','','0000-00-00 00:00:00'),(37630,'SURENDRANGAGAR','GUJARAT','Y','soham','2019-11-18 16:51:50','','0000-00-00 00:00:00'),(37851,'JAIPUR','GUJARAT','Y','chandanig','2019-11-19 13:57:49','','0000-00-00 00:00:00'),(37894,'UNJHA','GUJARAT','Y','parita','2019-11-19 16:36:47','','0000-00-00 00:00:00'),(38109,'MANEKPURA','GUJARAT','Y','chandanig','2019-11-20 15:06:25','','0000-00-00 00:00:00'),(38198,'SAYILA','GUJARAT','Y','SONALI','2019-11-21 09:45:20','','0000-00-00 00:00:00'),(38605,'DHARA','GUJARAT','Y','parita','2019-11-23 10:19:03','','0000-00-00 00:00:00'),(38826,'NAVSARI','GUJARAT','Y','sonali','2019-11-25 08:43:59','','0000-00-00 00:00:00'),(38957,'SAURAST','GUJARAT','Y','SONALI','2019-11-25 12:00:52','','0000-00-00 00:00:00'),(39742,'AHMDABAD ','GUJARAT','Y','niki','2019-11-28 14:52:27','','0000-00-00 00:00:00'),(40656,'GANDHIINAGAR ','GUJARAT','Y','niki','2019-12-03 16:56:17','','0000-00-00 00:00:00'),(40937,'MAHISHAGAR','GUJARAT','Y','sonali','2019-12-05 08:30:14','','0000-00-00 00:00:00'),(41335,'AMHEDABAD','GUJARAT','Y','soham','2019-12-07 08:12:58','','0000-00-00 00:00:00'),(41431,'JAMANAGAR','GUJARAT','Y','parita','2019-12-09 12:02:22','','0000-00-00 00:00:00'),(41502,'MUNDRA','GUJARAT','Y','parita','2019-12-09 13:54:09','','0000-00-00 00:00:00'),(41568,'','MUMBAI ','Y','niki','2019-12-09 16:51:40','','0000-00-00 00:00:00'),(41611,'SERTHA','GUJARAT','Y','SONALI','2019-12-11 08:28:38','','0000-00-00 00:00:00'),(43241,'JETPUR','GUJARAT','Y','niki','2019-12-19 09:51:49','','0000-00-00 00:00:00'),(43583,'GOZARIYA','GUJARAT','Y','soham','2019-12-20 18:24:09','','0000-00-00 00:00:00'),(44000,'TAPI','GUJARAT','Y','parita','2019-12-23 12:45:52','','0000-00-00 00:00:00'),(44142,'U.P','GUJARAT','Y','chandanig','2019-12-24 09:36:13','','0000-00-00 00:00:00'),(44372,'DHANDGDHRA','GUJARAT','Y','chandanig','2019-12-25 08:27:52','','0000-00-00 00:00:00'),(44430,'AMBAJI','GUJARAT','Y','niki','2019-12-25 10:15:05','','0000-00-00 00:00:00'),(44808,'GIR SOMANATH','GUJARAT','Y','parita','2019-12-26 12:53:40','','0000-00-00 00:00:00'),(44945,'DASKOI','GUJARAT','Y','SONALI','2019-12-28 08:28:19','','0000-00-00 00:00:00'),(45128,'GA','GUJARAT','Y','fenali','2019-12-28 17:02:37','','0000-00-00 00:00:00'),(45208,'DEVBHUMIDHWARKA','GUJARAT','Y','parita','2020-01-03 10:35:46','','0000-00-00 00:00:00'),(45502,'SAVARKUNDLA','GUJARAT','Y','parita','2020-01-04 11:33:16','','0000-00-00 00:00:00'),(45720,'AJMER','GUJARAT','Y','parita','2020-01-06 12:37:48','','0000-00-00 00:00:00'),(46183,'SHAMALAJI ','GUJARAT','Y','fenali','2020-01-08 11:26:29','','0000-00-00 00:00:00'),(46297,'PILVAI','GUJARAT','Y','parita','2020-01-08 17:24:58','','0000-00-00 00:00:00'),(46418,'RAISAN ','GUJARAT','Y','fenali','2020-01-09 11:47:47','','0000-00-00 00:00:00'),(46952,'','','Y','JAIMIN','2020-01-11 21:29:53','','0000-00-00 00:00:00'),(47531,'SANTRAMPUR','MAHISAGAR','Y','fenali','2020-01-16 15:00:13','','0000-00-00 00:00:00'),(47894,'SIDHAPUR','GUJARAT','Y','soham','2020-01-17 21:00:22','','0000-00-00 00:00:00'),(48077,'PRATINJ','GUJARAT','Y','soham','2020-01-19 11:10:06','','0000-00-00 00:00:00'),(48102,'BYAD','GUJARAT','Y','SONALI','2020-01-20 08:37:16','','0000-00-00 00:00:00'),(48264,'KANPUR','GUJARAT','Y','parita','2020-01-20 12:41:11','','0000-00-00 00:00:00'),(48359,'GANDHIANGAR','GUJARAT','Y','harshadt','2020-01-20 16:55:19','','0000-00-00 00:00:00'),(48512,'KATHALAL','GUJARAT','Y','soham','2020-01-21 12:06:58','','0000-00-00 00:00:00'),(48608,'GNADHINAGAR','GUJARAT','Y','niki','2020-01-21 17:00:35','','0000-00-00 00:00:00'),(48771,'NARMADA ','GUJARAT','Y','fenali','2020-01-22 12:56:54','','0000-00-00 00:00:00'),(49119,'AHMEDAVAD','GUJARAT','Y','fenali','2020-01-23 18:11:07','','0000-00-00 00:00:00'),(49227,'GNAHDINAGAR','GUJARAT','Y','niki','2020-01-24 11:15:04','','0000-00-00 00:00:00'),(49402,'VISHAVADAR','GUJARAT','Y','SONALI','2020-01-25 08:43:49','','0000-00-00 00:00:00'),(49651,'KAPDVANJ','GUJARAT','Y','HIREN','2020-01-26 13:30:19','','0000-00-00 00:00:00'),(50202,'MAHARAST','GUJARAT','Y','parita','2020-01-28 15:51:21','','0000-00-00 00:00:00'),(50281,'LANDON','GUJARAT','Y','SONALI','2020-01-29 08:21:33','','0000-00-00 00:00:00'),(50508,'BILWANI','GUJARAT','Y','SONALI','2020-01-30 08:34:47','','0000-00-00 00:00:00'),(50951,'MANDVI','GUJARAT','Y','niki','2020-02-01 10:13:53','','0000-00-00 00:00:00'),(50955,'U P','GUJARAT','Y','chandanig','2020-02-01 10:17:46','','0000-00-00 00:00:00'),(51253,'BARDOLI','GUJARAT','Y','SONALI','2020-02-03 08:26:33','','0000-00-00 00:00:00'),(51480,'ARVALLY','GUJARAT','Y','FENALI','2020-02-03 15:46:00','','0000-00-00 00:00:00'),(51522,'RAJSTAN','GUJARAT','Y','parita','2020-02-03 17:25:10','','0000-00-00 00:00:00'),(51582,'KADANA','GUJARAT','Y','SONALI','2020-02-04 09:34:53','','0000-00-00 00:00:00'),(51907,'GANDHINAHAR','GUJARAT','Y','niki','2020-02-05 11:32:40','','0000-00-00 00:00:00'),(51967,'KATOSAN','GUJARAT','Y','HIREN','2020-02-05 14:38:09','','0000-00-00 00:00:00'),(52109,'SURENDRA','GUJARAT','Y','parita','2020-02-07 11:08:52','','0000-00-00 00:00:00'),(52279,'HIMACHALPRADESH','GUJARAT','Y','HIREN','2020-02-07 20:44:22','','0000-00-00 00:00:00'),(52309,'PUNDHRA','GUJARAT','Y','SONALI','2020-02-08 09:01:47','','0000-00-00 00:00:00'),(52503,'TALADA GIR','GUJARAT','Y','chandanig','2020-02-08 11:36:12','','0000-00-00 00:00:00'),(52790,'MP','GUJARAT','Y','sonali','2020-02-10 08:21:58','','0000-00-00 00:00:00'),(53216,'KANDLA','GUJARAT','Y','fenali','2020-02-11 12:12:30','','0000-00-00 00:00:00'),(53505,'GANDHIN AGAR','GUJARAT','Y','Harshadt','2020-02-12 12:19:47','','0000-00-00 00:00:00'),(53610,'GAMDHINAGAR','GUJARAT','Y','harshadt','2020-02-12 16:50:41','','0000-00-00 00:00:00'),(53953,'ANDHRAPRADESH','GUJARAT','Y','parita','2020-02-14 10:47:49','','0000-00-00 00:00:00'),(53954,'HYDERABAD','GUJARAT','Y','parita','2020-02-14 10:50:04','','0000-00-00 00:00:00'),(55143,'KHEDBRAMA','GUJARAT','Y','SONALI','2020-02-19 08:22:29','','0000-00-00 00:00:00'),(55307,'DEDIYAPADA','GUJARAT','Y','parita','2020-02-19 12:58:07','','0000-00-00 00:00:00'),(55614,'KHEDBRAMMA','GUJARAT','Y','CHANDANIG','2020-02-20 14:20:17','','0000-00-00 00:00:00'),(55647,'MOTA CHILODA','GUJARAT','Y','chandanig','2020-02-20 16:05:54','','0000-00-00 00:00:00'),(55698,'HADVAD','GUJARAT','Y','parita','2020-02-22 10:00:45','','0000-00-00 00:00:00'),(56407,'JAMJIDHPUR','GUJARAT','Y','fenali','2020-02-24 17:24:48','','0000-00-00 00:00:00'),(57085,'','BIHAR','Y','niki','2020-02-27 09:51:41','','0000-00-00 00:00:00'),(57147,'LUCKNOW','UTTARPRADESH','Y','sonali','2020-02-27 11:08:11','','0000-00-00 00:00:00'),(57161,'SABARKANTH','GUJARAT','Y','parita','2020-02-27 11:28:26','','0000-00-00 00:00:00'),(57252,'DHAMBOLIYA','GUJARAT','Y','parita','2020-02-27 15:54:39','','0000-00-00 00:00:00'),(57418,'SINGRAULI','MADHYA PRADESH','Y','chandanig','2020-02-28 11:49:13','','0000-00-00 00:00:00'),(57893,'AERVALLI','GUJARAT','Y','SAGARD','2020-03-02 09:15:26','','0000-00-00 00:00:00'),(58661,'SIDDHPUR','GUJARAT','Y','chandanig','2020-03-04 13:50:18','','0000-00-00 00:00:00'),(58915,'DUNGARPUR','RAJSTHAN','Y','parita','2020-03-05 12:16:22','','0000-00-00 00:00:00'),(58919,'ARWALLI','GUJARAT','Y','chandanig','2020-03-07 08:18:55','','0000-00-00 00:00:00'),(59068,'GANSDHINAGAR','GUJARAT','Y','parita','2020-03-07 12:00:54','','0000-00-00 00:00:00'),(59295,'CHUDA','GUJARAT','Y','chandanig','2020-03-09 09:59:13','','0000-00-00 00:00:00'),(59539,'','RAJSRTHAN','Y','sonali','2020-03-11 08:40:40','','0000-00-00 00:00:00'),(59542,'SURENDRANAGARR','GUJARAT','Y','parita','2020-03-11 08:50:23','','0000-00-00 00:00:00'),(59877,'KUTCHH','GUJARAT','Y','sonali','2020-03-12 08:28:05','','0000-00-00 00:00:00'),(59932,'GANDHINAGAR, ','','Y','sagard','2020-03-12 10:14:50','','0000-00-00 00:00:00'),(59969,'THARAD','GUJARAT','Y','parita','2020-03-12 10:51:13','','0000-00-00 00:00:00'),(59984,'VODODARA','GUJARAT','Y','parita','2020-03-12 11:12:39','','0000-00-00 00:00:00'),(60055,'VAVODARA','GUJARAT','Y','parita','2020-03-17 11:54:04','','0000-00-00 00:00:00'),(60118,'AHEMEDABAD, ','GUJARAT','Y','chandanig','2020-05-25 12:42:26','','0000-00-00 00:00:00'),(60272,'SABARANTHA','GUJARAT','Y','niki','2020-05-27 12:13:00','','0000-00-00 00:00:00'),(61090,'ARAVALLI','GUJARAT','Y','chandanig','2020-06-06 16:25:42','','0000-00-00 00:00:00'),(63362,'PIALIYAMANDI','GUJARAT','Y','shivanib','2020-07-03 11:29:34','','0000-00-00 00:00:00'),(63623,'KAPADWAN','GUJARAT','Y','shivanib','2020-07-06 11:45:51','','0000-00-00 00:00:00'),(63725,'MEHYISAGAR','GUJARAT','Y','fenali','2020-07-07 10:40:13','','0000-00-00 00:00:00'),(63890,'KUKKARVADA','GUJARAT','Y','shivanib','2020-07-08 13:18:08','','0000-00-00 00:00:00'),(63919,'SOJA','GUJARAT','Y','shivanib','2020-07-08 17:21:06','','0000-00-00 00:00:00'),(64158,'KHANGELA','GUJARAT','Y','shivanib','2020-07-11 11:08:18','','0000-00-00 00:00:00'),(64479,'LALLIMDA','GUJARAT','Y','shivanib','2020-07-14 17:17:51','','0000-00-00 00:00:00'),(64728,'DIYODAR','GUJARAT','Y','shivanib','2020-07-18 10:06:28','','0000-00-00 00:00:00'),(65454,'VALLABHVIDHYANAGAR','GUJARAT','Y','fenali','2020-07-25 09:55:17','','0000-00-00 00:00:00'),(65493,'GOJARIYA ','GUJARAT','Y','niki','2020-07-25 12:58:25','','0000-00-00 00:00:00'),(65624,'DEESA','GUJARAT','Y','shivanib','2020-07-27 13:56:00','','0000-00-00 00:00:00'),(65745,'GEB ROAD','GUJARAT','Y','chandanig','2020-07-28 12:11:27','','0000-00-00 00:00:00'),(65777,'DASKOYAR','GUJARAT','Y','shivanib','2020-07-30 11:07:49','','0000-00-00 00:00:00'),(66477,'SURENDRNAGARLIMDI','GUJARAT','Y','chandanig','2020-08-06 11:56:16','','0000-00-00 00:00:00'),(67854,'SNTRAMPUR','GUJARAT','Y','shivanib','2020-08-20 12:06:01','','0000-00-00 00:00:00'),(67863,'CHANASAMA','GUJARAT','Y','fenali','2020-08-20 12:16:10','','0000-00-00 00:00:00'),(68374,'MEHSHANA ','GUJARAT','Y','shivanib','2020-08-25 16:15:51','','0000-00-00 00:00:00'),(68519,'BECHARAJI','GUJARAT','Y','kamleshp','2020-08-26 16:55:43','','0000-00-00 00:00:00'),(68746,'GUJRAT','GUJARAT','Y','shivanib','2020-08-28 11:47:33','','0000-00-00 00:00:00'),(69025,'PRANJIT','GUJARAT','Y','kamleshp','2020-08-31 14:03:34','','0000-00-00 00:00:00'),(69652,'RADHANPUR','GUJARAT','Y','soham','2020-09-04 22:11:15','','0000-00-00 00:00:00'),(69782,'GNDHINAGAR','GUJARAT','Y','sagard','2020-09-09 22:54:18','','0000-00-00 00:00:00'),(70275,'UJJAIN','GUJARAT','Y','sonali','2020-09-14 08:19:17','','0000-00-00 00:00:00'),(70386,'VISANAGAR','GUJARAT','Y','Kamleshp','2020-09-14 14:04:32','','0000-00-00 00:00:00'),(70802,'OKHAT','GUJARAT','Y','fenali','2020-09-17 09:59:54','','0000-00-00 00:00:00'),(71309,'TALALA','GUJARAT','Y','soham','2020-09-23 16:07:34','','0000-00-00 00:00:00'),(71919,'PANCHAMAHAL','GUJARAT','Y','chandanig','2020-09-27 11:46:06','','0000-00-00 00:00:00'),(72020,'BHILVADA','GUJARAT','Y','chandanig','2020-09-30 08:58:59','','0000-00-00 00:00:00'),(72139,'GANDHINAQGAR','GUJARAT','Y','fenali','2020-09-30 16:30:25','','0000-00-00 00:00:00'),(72481,'DEGAM','GUJARAT','Y','kamleshp','2020-10-05 15:04:18','','0000-00-00 00:00:00'),(72618,'RAJSATAN','GUJARAT','Y','soham','2020-10-06 10:29:57','','0000-00-00 00:00:00'),(72969,'KHEDBHRAMMA','GUJARAT','Y','kamleshp','2020-10-08 08:34:09','','0000-00-00 00:00:00'),(73094,'PALI','GUJARAT','Y','niki','2020-10-08 15:54:54','','0000-00-00 00:00:00'),(73095,'BHIM','GUJARAT','Y','niki','2020-10-08 15:57:20','','0000-00-00 00:00:00'),(73641,'PRATIYA ','GUJARAT','Y','fenali','2020-10-12 11:24:31','','0000-00-00 00:00:00'),(73674,'BANA','GUJARAT','Y','fenali','2020-10-12 12:31:21','','0000-00-00 00:00:00'),(73994,'SHEOGANJ','GUJARAT','Y','fenali','2020-10-15 12:47:07','','0000-00-00 00:00:00'),(74036,'BSNASKANTHA','GUJARAT','Y','fenali','2020-10-15 16:48:40','','0000-00-00 00:00:00'),(74393,'ZUNDAL','GUJARAT','Y','SAGARD','2020-10-19 17:39:36','','0000-00-00 00:00:00'),(74813,'MEHSANA, ','GUJARAT','Y','kamleshp','2020-10-22 15:56:34','','0000-00-00 00:00:00'),(74944,'NAVRANGPURA','GUJARAT','Y','fenali','2020-10-23 13:30:59','','0000-00-00 00:00:00'),(75186,'DHRANGADGRA','GUJARAT','Y','niki','2020-10-26 12:00:12','','0000-00-00 00:00:00'),(75341,'AHMEDA','GUJARAT','Y','kamleshp','2020-10-27 11:50:36','','0000-00-00 00:00:00'),(75439,'MAHARASTRA','GUJARAT','Y','fenali','2020-11-03 14:54:43','','0000-00-00 00:00:00'),(75756,'AMEDABABD','GUJARAT','Y','kamleshp','2020-11-05 16:49:44','','0000-00-00 00:00:00'),(75786,'AHMEDABAD, ','GUJARAT','Y','Kamleshp','2020-11-05 20:00:59','','0000-00-00 00:00:00'),(76123,'JALOR','RAJASTHAN ','Y','fenali','2020-11-09 09:08:33','','0000-00-00 00:00:00'),(76513,'BHANASKATHA','GUJARAT','Y','chandanig','2020-11-11 10:58:18','','0000-00-00 00:00:00'),(77112,'AHEDABAD','GUJARAT','Y','SAGARD','2020-11-17 21:50:46','','0000-00-00 00:00:00'),(78170,'JASHI ','GUJARAT','Y','fenali','2020-11-25 11:41:53','','0000-00-00 00:00:00'),(78624,'HIMMAT NAGAR','GUJARAT','Y','fenali','2020-11-28 10:49:07','','0000-00-00 00:00:00'),(78815,'DHANGADHARA','GUJARAT','Y','kAMLESHP','2020-11-30 18:23:42','','0000-00-00 00:00:00'),(78946,'A','GUJARAT','Y','fenali','2020-12-01 17:50:39','','0000-00-00 00:00:00'),(79127,'BIHAR','BIHAR','Y','khanjan','2020-12-02 17:35:58','','0000-00-00 00:00:00'),(79264,'SURENDERNAGAR ','GUJARAT','Y','ritu','2020-12-07 12:29:00','','0000-00-00 00:00:00'),(79333,'GANDHIN','GUJARAT','Y','kamleshp','2020-12-09 14:16:11','','0000-00-00 00:00:00'),(79365,'NEW VAVOL','GUJARAT','Y','kamleshp','2020-12-09 15:57:45','','0000-00-00 00:00:00'),(79563,'MANSA, ','GUJARAT','Y','kAMLESHP','2020-12-11 09:17:43','','0000-00-00 00:00:00'),(79601,'DHANGADARA','GUJARAT','Y','kamleshp','2020-12-11 13:42:26','','0000-00-00 00:00:00'),(79762,'KAPADWANJ','GUJARAT','Y','fenali','2020-12-12 17:20:26','','0000-00-00 00:00:00'),(80062,'AHMED','GUJARAT','Y','fenali','2020-12-15 10:51:10','','0000-00-00 00:00:00'),(80122,'VISANGAR','GUJARAT','Y','Kamleshp','2020-12-15 14:57:36','','0000-00-00 00:00:00'),(80201,'AHMEDABA','GUJARAT','Y','fenali','2020-12-16 11:18:36','','0000-00-00 00:00:00'),(80207,'BALA SINOR','GUJARAT','Y','ritu','2020-12-16 11:30:10','','0000-00-00 00:00:00'),(80220,'ITADRA','GUJARAT','Y','ritu','2020-12-16 12:17:47','','0000-00-00 00:00:00'),(80493,'LONAVADA','GUJARAT','Y','vismay','2020-12-26 11:13:44','','0000-00-00 00:00:00'),(80575,'ISANPUR','GUJARAT','Y','chandanig','2020-12-26 17:33:16','','0000-00-00 00:00:00'),(80779,'DUGARPUR','GUJARAT','Y','ritu','2020-12-28 17:58:28','','0000-00-00 00:00:00'),(81675,'VYARA','GUJARAT','Y','kamleshp','2021-01-05 09:42:12','','0000-00-00 00:00:00'),(81711,'DHOLAKUVA','GUJARAT','Y','SAGARD','2021-01-07 02:15:29','','0000-00-00 00:00:00'),(81923,'ANNAD','GUJARAT','Y','niki','2021-01-09 09:15:53','','0000-00-00 00:00:00'),(82247,'MANSOOR','MADHYAPRADESH','Y','kamleshp','2021-01-11 19:27:53','','0000-00-00 00:00:00'),(82299,'SANODA ','GUJARAT','Y','ritu','2021-01-12 12:36:22','','0000-00-00 00:00:00'),(82402,'SAGAWARA','RAJASTHAN','Y','kamleshp','2021-01-13 09:37:10','','0000-00-00 00:00:00'),(82620,'THANE','MAHARASTRA','Y','kamleshp','2021-01-16 10:26:29','','0000-00-00 00:00:00'),(82659,'DISHA','GUJARAT','Y','soham','2021-01-16 11:39:20','','0000-00-00 00:00:00'),(82827,'DASHKOI','GUJARAT','Y','Kamleshp','2021-01-18 11:54:05','','0000-00-00 00:00:00'),(83129,'GANSHINAGAR','GUJARAT','Y','SAGARD','2021-01-20 06:52:38','','0000-00-00 00:00:00'),(83304,'BHILWADA','RAJASTHAN','Y','Kamleshp','2021-01-21 09:39:06','','0000-00-00 00:00:00'),(83802,'','KARNATAK','Y','kamleshp','2021-01-24 10:44:58','','0000-00-00 00:00:00'),(84394,'BANSKANTHA','GUJARAT','Y','binjal','2021-01-29 15:52:57','','0000-00-00 00:00:00'),(84721,'AHMEDABD','GUJARAT','Y','sagard','2021-02-08 10:12:35','','0000-00-00 00:00:00'),(84934,'GANDHINAGART','GUJARAT','Y','sagard','2021-02-09 00:36:31','','0000-00-00 00:00:00'),(85085,'DHANSHURA','GUJARAT','Y','binjal','2021-02-09 18:10:30','','0000-00-00 00:00:00'),(85183,'CHINNAI','TAMILNADU','Y','kamleshp','2021-02-10 12:52:50','','0000-00-00 00:00:00'),(85271,'YEMEN','','Y','niki','2021-02-11 08:44:22','','0000-00-00 00:00:00'),(85393,'YEMEN','GUJARAT','Y','kamleshp','2021-02-11 18:01:11','','0000-00-00 00:00:00'),(86484,'ARRAH','BIHAR','Y','kamleshp','2021-02-19 16:14:45','','0000-00-00 00:00:00'),(86626,'BAVDA','GUJARAT','Y','kamleshp','2021-02-20 11:24:36','','0000-00-00 00:00:00'),(86975,'DHARAGANDRA','GUJARAT','Y','binjal','2021-02-22 14:03:24','','0000-00-00 00:00:00'),(87040,'MAHISAHAR','GUJARAT','Y','binjal','2021-02-22 16:09:44','','0000-00-00 00:00:00'),(87403,'NOIDA','MUMBAI','Y','kamleshp','2021-02-24 10:34:18','','0000-00-00 00:00:00'),(87411,'MANDVI KACTCHH','GUJARAT','Y','kamleshp','2021-02-24 10:49:06','','0000-00-00 00:00:00'),(87713,'KHERVADA','GUJARAT','Y','binjal','2021-02-25 17:42:25','','0000-00-00 00:00:00'),(87942,'PANSAR ','GUJARAT','Y','ritu','2021-02-27 11:43:58','','0000-00-00 00:00:00'),(88188,'MEGRAJ','GUJARAT','Y','binjal','2021-03-01 11:54:45','','0000-00-00 00:00:00'),(88205,'SAMLAJI','GUJARAT','Y','niki','2021-03-01 12:37:02','','0000-00-00 00:00:00'),(88260,'DAKOR C','GUJARAT','Y','ritu','2021-03-01 14:36:45','','0000-00-00 00:00:00'),(88271,'ABUROAD','GUJARAT','Y','binjal','2021-03-01 14:50:50','','0000-00-00 00:00:00'),(88542,'KOLKATA','WEST BENGAL','Y','yashpalr','2021-03-02 14:22:06','','0000-00-00 00:00:00'),(88547,'WEST BENGAL ','KOLKATTA ','Y','yashpalr','2021-03-02 14:25:57','','0000-00-00 00:00:00'),(88684,'JAM KHAMBHALIYA','GUJARAT','Y','kamleshp','2021-03-03 09:56:49','','0000-00-00 00:00:00'),(88766,'KOLKATA','BENGAL','Y','khanjan','2021-03-03 14:05:15','','0000-00-00 00:00:00'),(88990,'KESOD JAMNAGAR','GUJARAT','Y','kamleshp','2021-03-04 14:28:46','','0000-00-00 00:00:00'),(88992,' MAHARASTA','GUJARAT','Y','vismay','2021-03-04 14:29:03','','0000-00-00 00:00:00'),(89326,'AMBAPUR','GUJARAT','Y','ritu','2021-03-06 11:28:33','','0000-00-00 00:00:00'),(89560,'GADHDA','GUJARAT','Y','ritu','2021-03-08 10:38:18','','0000-00-00 00:00:00'),(89674,' HIMACHAL PRADESH','GUJARAT','Y','binjal','2021-03-08 13:31:19','','0000-00-00 00:00:00'),(89755,'GADNHINAGAR','GUJARAT','Y','kamleshp','2021-03-08 15:49:22','','0000-00-00 00:00:00'),(89924,'GANDHINAGAR, ','GUJARATGA','Y','kamleshp','2021-03-09 11:43:20','','0000-00-00 00:00:00'),(89950,' AMRELI','GUJARAT','Y','binjal','2021-03-09 12:14:47','','0000-00-00 00:00:00'),(89999,'AMBAWADI','GUJARAT','Y','kamleshp','2021-03-09 14:10:26','','0000-00-00 00:00:00'),(90005,'','DELHI','Y','kamleshp','2021-03-09 14:23:09','','0000-00-00 00:00:00'),(90016,'GHAZIABAD','UTTAR PRADESH','Y','kamleshp','2021-03-09 14:41:45','','0000-00-00 00:00:00'),(90268,' MORBI','GUJARAT','Y','binjal','2021-03-10 14:38:03','','0000-00-00 00:00:00'),(90586,' DEHGAM','GUJARAT','Y','binjal','2021-03-12 11:38:33','','0000-00-00 00:00:00'),(90645,'BAYD','GUJARAT','Y','binjal','2021-03-12 15:12:01','','0000-00-00 00:00:00'),(90674,'UDAIPUR','RAJASTHAN','Y','khanjan','2021-03-12 16:50:01','','0000-00-00 00:00:00'),(90925,'TAMIL NADU','GUJARAT','Y','vismay','2021-03-13 15:28:40','','0000-00-00 00:00:00'),(90926,'JHARKHAND','GUJARAT','Y','vismay','2021-03-13 15:31:08','','0000-00-00 00:00:00'),(91070,'RAHSTHAN ','GUJARAT','Y','ritu','2021-03-15 10:35:49','','0000-00-00 00:00:00'),(91203,' MAHESANA','GUJARAT','Y','vismay','2021-03-15 14:46:20','','0000-00-00 00:00:00'),(91227,'ASSAM','GUJARAT','Y','binjal','2021-03-15 15:18:32','','0000-00-00 00:00:00'),(91476,'','TANZANIA','Y','niki','2021-03-16 15:09:06','','0000-00-00 00:00:00'),(91786,'CHHATISHGARH','','Y','niki','2021-03-18 10:42:04','','0000-00-00 00:00:00'),(91923,'KOLAVDA','GUJARAT','Y','ritu','2021-03-18 17:26:21','','0000-00-00 00:00:00'),(91927,'GAN','GUJARAT','Y','ritu','2021-03-18 17:33:28','','0000-00-00 00:00:00'),(92125,'MAHARASHTRA','MAHARASHTRA','Y','vismay','2021-03-19 16:33:16','','0000-00-00 00:00:00'),(92614,'BENGALURU','GUJARAT','Y','soham','2021-03-22 13:31:36','','0000-00-00 00:00:00'),(92689,'KOLAVADA ','GUJARAT','Y','ritu','2021-03-22 16:31:43','','0000-00-00 00:00:00'),(92908,'AHMDBAD ','GUJARAT','Y','ritu','2021-03-23 13:25:49','','0000-00-00 00:00:00'),(92924,'UTTER PRADESH','GUJARAT','Y','khanjan','2021-03-23 14:18:55','','0000-00-00 00:00:00'),(93114,'MOUNT ABU','GUJARAT','Y','khanjan','2021-03-24 10:53:27','','0000-00-00 00:00:00'),(93445,'JAMADA ','GUJARAT','Y','ritu','2021-03-25 14:48:51','','0000-00-00 00:00:00'),(93513,'UTTAR PRADESH','GUJARAT','Y','soham','2021-03-25 16:53:56','','0000-00-00 00:00:00'),(93728,'RAYSAN ','GUJARAT','Y','ritu','2021-03-26 16:56:17','','0000-00-00 00:00:00'),(93930,'BHOPAL','GUJARAT','Y','soham','2021-03-27 14:13:15','','0000-00-00 00:00:00'),(94156,'KANPUR','U P','Y','kamleshp','2021-03-30 08:57:40','','0000-00-00 00:00:00'),(94327,'JAKHORA','GUJARAT','Y','ritu','2021-03-30 12:31:44','','0000-00-00 00:00:00'),(94478,'MUMBAI','MAHARASTRA','Y','kamleshp','2021-03-30 16:43:14','','0000-00-00 00:00:00'),(94574,'VIJAYVADA','ADHRAPRADESH','Y','kamleshp','2021-03-31 09:15:15','','0000-00-00 00:00:00'),(95806,'GANDHAINAGAR','GUJARAT','Y','niki','2021-04-03 12:12:30','','0000-00-00 00:00:00'),(95929,'ASSAM','ASSAM','Y','khanjan','2021-04-03 16:00:14','','0000-00-00 00:00:00'),(95954,'ABMEDNAGAR ','GUJARAT','Y','ritu','2021-04-03 16:41:13','','0000-00-00 00:00:00'),(95999,'GANDHINAGAR, ','GUJARGAT','Y','binjal','2021-04-03 17:39:16','','0000-00-00 00:00:00'),(96184,'MASNA','GUJARAT','Y','kamleshp','2021-04-05 08:58:39','','0000-00-00 00:00:00'),(96581,'GONDIYA','MAHARASTRA','Y','kamleshp','2021-04-05 16:56:15','','0000-00-00 00:00:00'),(96762,'LUNAVALA','GUJARAT','Y','binjal','2021-04-06 09:53:08','','0000-00-00 00:00:00'),(97301,'GANHDINAGAR','GUJARAT','Y','niki','2021-04-07 11:32:16','','0000-00-00 00:00:00'),(97438,'CHHATTISGATH','GUJARAT','Y','soham','2021-04-07 16:26:24','','0000-00-00 00:00:00'),(97548,'MADHYA PRADESH','GUJARAT','Y','soham','2021-04-07 18:59:27','','0000-00-00 00:00:00'),(97558,'SIROHI','GUJARAT','Y','soham','2021-04-07 19:37:21','','0000-00-00 00:00:00'),(97794,'HARIYANA','GUJARAT','Y','binjal','2021-04-08 13:34:24','','0000-00-00 00:00:00'),(97886,'BHAT','GUJARAT','Y','kamleshp','2021-04-08 16:57:37','','0000-00-00 00:00:00'),(98227,'KHORAJ ','GUJARAT','Y','ritu','2021-04-09 13:46:56','','0000-00-00 00:00:00'),(98412,'DANTA','GUJARAT','Y','soham','2021-04-09 18:52:32','','0000-00-00 00:00:00'),(98716,'AHMEDBAD ','GUJARAT','Y','ritu','2021-04-10 13:26:39','','0000-00-00 00:00:00'),(98929,'RADHANPUR ROAD ','GUJARAT','Y','vismay','2021-04-10 19:37:36','','0000-00-00 00:00:00'),(99060,'GUJARAT','GUJARAT','Y','chandanig','2021-04-11 17:31:32','','0000-00-00 00:00:00'),(99106,'CHANDRA ','GUJARAT','Y','ritu','2021-04-12 08:40:05','','0000-00-00 00:00:00'),(99141,'VAKANAR ','GUJARAT','Y','ritu','2021-04-12 09:18:15','','0000-00-00 00:00:00'),(99387,'DEHLI','GUJARAT','Y','yatin','2021-04-12 12:25:11','','0000-00-00 00:00:00'),(99447,'GANDHINAGAAR','GUJARAT','Y','soham','2021-04-12 13:18:29','','0000-00-00 00:00:00'),(99528,'SHAPUR ','GUJARAT','Y','ritu','2021-04-12 15:31:03','','0000-00-00 00:00:00'),(99575,'KHODARAMA','GUJARAT','Y','binjal','2021-04-12 16:37:58','','0000-00-00 00:00:00'),(99676,'SABARKHANTA ','GUJARAT','Y','ritu','2021-04-13 10:25:11','','0000-00-00 00:00:00'),(99771,'CHANDRADA','GUJARAT','Y','ritu','2021-04-13 12:30:02','','0000-00-00 00:00:00'),(99772,'CHNDRADA ','GUJARAT','Y','ritu','2021-04-13 12:31:42','','0000-00-00 00:00:00'),(100298,'GANDHINANGAR','GUJARAT','Y','kamleshp','2021-04-14 12:37:10','','0000-00-00 00:00:00'),(100476,'GANDSHINAGAR','GUJARAT','Y','kamleshp','2021-04-14 18:28:56','','0000-00-00 00:00:00'),(100586,'LIMBADIYA ','GUJARAT','Y','ritu','2021-04-15 09:17:14','','0000-00-00 00:00:00'),(100641,'KARNATAKA','GUJARAT','Y','yatin','2021-04-15 10:06:07','','0000-00-00 00:00:00'),(100906,'LUNAWALA','GUJARAT','Y','binjal','2021-04-15 16:33:19','','0000-00-00 00:00:00'),(101042,'PUNJAB','GUJARAT','Y','soham','2021-04-16 08:18:54','','0000-00-00 00:00:00'),(101232,'GOVINDPURA ','GUJARAT','Y','ritu','2021-04-16 12:28:39','','0000-00-00 00:00:00'),(101240,'MEHSAN A','GUJARAT','Y','ritu','2021-04-16 12:44:36','','0000-00-00 00:00:00'),(101255,'BIRBHUM ','GUJARAT','Y','ritu','2021-04-16 13:29:54','','0000-00-00 00:00:00'),(101717,'NASHIK','GUJARAT','Y','vismay','2021-04-17 11:45:46','','0000-00-00 00:00:00'),(102246,' PRATIJ','GUJARAT','Y','binjal','2021-04-19 10:03:02','','0000-00-00 00:00:00'),(102253,'KANNAUJ','UTTAR PRADESH','Y','khanjan','2021-04-19 10:09:02','','0000-00-00 00:00:00'),(102376,'JHARKHAND','JHARKHAND','Y','khanjan','2021-04-19 11:20:41','','0000-00-00 00:00:00'),(102511,'JANOD','GUJARAT','Y','khanjan','2021-04-19 13:38:54','','0000-00-00 00:00:00'),(102539,'SAYLA','GUJARAT','Y','sima','2021-04-19 14:04:54','','0000-00-00 00:00:00'),(102579,'SIKAR','RAJASTHAN','Y','khanjan','2021-04-19 15:18:28','','0000-00-00 00:00:00'),(102608,'PARTIJ ','GUJARAT','Y','ritu','2021-04-19 16:39:29','','0000-00-00 00:00:00'),(102721,'DELHI','DELHI','Y','khanjan','2021-04-19 19:04:13','','0000-00-00 00:00:00'),(103042,'DEVBHUMI DWARKA','GUJARAT','Y','khanjan','2021-04-20 12:28:04','','0000-00-00 00:00:00'),(103365,'JAIOTRA','GUJARAT','Y','binjal','2021-04-21 08:48:18','','0000-00-00 00:00:00'),(104373,'UPLETA','GUJARAT','Y','ritu','2021-04-23 14:50:32','','0000-00-00 00:00:00'),(104466,'GANDHINAAGAR','GUJARAT','Y','niki','2021-04-23 17:55:16','','0000-00-00 00:00:00'),(104754,'BK','GUJARAT','Y','binjal','2021-04-24 14:00:49','','0000-00-00 00:00:00'),(104930,'AHME','GUJARAT','Y','kamleshp','2021-04-25 14:23:14','','0000-00-00 00:00:00'),(105575,'CHNDRALA ','GUJARAT','Y','ritu','2021-04-27 12:13:12','','0000-00-00 00:00:00'),(105617,'CHHATTISGARH','CHHATTISGARH','Y','khanjan','2021-04-27 14:06:37','','0000-00-00 00:00:00'),(105876,'ZAKHORA','GUJARAT','Y','ritu','2021-04-28 10:47:23','','0000-00-00 00:00:00'),(106077,'NEW DELHI','GUJARAT','Y','sagard','2021-04-29 00:02:14','','0000-00-00 00:00:00'),(106078,'ANDHRA PRADESH','GUJARAT','Y','sagard','2021-04-29 00:09:58','','0000-00-00 00:00:00'),(106394,'VIRPURA','GUJARAT','Y','soham','2021-04-30 03:38:20','','0000-00-00 00:00:00'),(106423,'TINTODA ','GUJARAT','Y','ritu','2021-04-30 08:42:32','','0000-00-00 00:00:00'),(106576,'MADHYA PRADESH','MADHYA PRADESH','Y','khanjan','2021-04-30 14:02:45','','0000-00-00 00:00:00'),(106598,'DWARKA','DELHI','Y','khanjan','2021-04-30 14:40:09','','0000-00-00 00:00:00'),(106636,'PRATJI','GUJARAT','Y','ritu','2021-05-02 11:46:55','','0000-00-00 00:00:00'),(106664,'GANDGHINAGAR','GUJARAT','Y','sagard','2021-05-02 17:00:45','','0000-00-00 00:00:00'),(106906,'BANSAKATHA','GUJARAT','Y','chandreshk','2021-05-03 11:56:41','','0000-00-00 00:00:00'),(107161,'UTTARPRADESH','GUJARAT','Y','chandreshk','2021-05-04 10:13:47','','0000-00-00 00:00:00'),(107530,'UDAIPUR','RAJSTHAN','Y','chandreshk','2021-05-05 18:14:01','','0000-00-00 00:00:00'),(107634,' BANASKANTHA','GUJARAT','Y','binjal','2021-05-06 11:36:45','','0000-00-00 00:00:00'),(107739,'SHOLI ','GUJARAT','Y','ritu','2021-05-06 19:06:31','','0000-00-00 00:00:00'),(107773,' SURENDRANAGAR','GUJARAT','Y','binjal','2021-05-07 09:13:45','','0000-00-00 00:00:00'),(107843,'KANBHA','GUJARAT','Y','binjal','2021-05-08 10:10:23','','0000-00-00 00:00:00'),(107945,'ARRVILI ','GUJARAT','Y','ritu','2021-05-08 13:40:43','','0000-00-00 00:00:00'),(108541,'KAPADVAJ ','GUJARAT','Y','ritu','2021-05-11 12:49:20','','0000-00-00 00:00:00'),(108939,'ANVARPURA','GUJARAT','Y','ritu','2021-05-13 17:14:39','','0000-00-00 00:00:00'),(109094,' ARVALLI','GUJARAT','Y','binjal','2021-05-14 13:30:03','','0000-00-00 00:00:00'),(109115,'SEHARA','GUJARAT','Y','binjal','2021-05-14 16:00:50','','0000-00-00 00:00:00'),(109171,'ALUVA ','GUJARAT','Y','ritu','2021-05-15 09:23:05','','0000-00-00 00:00:00'),(109784,'BANSWARA','RAJSTHAN','Y','soham','2021-05-19 17:07:48','','0000-00-00 00:00:00'),(110087,'NANACHILODA ','GUJARAT','Y','ritu','2021-05-21 16:43:20','','0000-00-00 00:00:00'),(110151,'VASAN ','GUJARAT','Y','ritu','2021-05-22 10:16:34','','0000-00-00 00:00:00'),(110644,'ARRAVALLI','GUJARAT','Y','vismay','2021-05-25 15:44:55','','0000-00-00 00:00:00'),(110690,'DHANAP','GUJARAT','Y','ritu','2021-05-25 19:26:56','','0000-00-00 00:00:00'),(111532,'VARADHARI ','GUJARAT','Y','ritu','2021-05-31 18:04:00','','0000-00-00 00:00:00'),(111879,'AHMEDABAD ','GUJARA','Y','binjal','2021-06-03 10:38:37','','0000-00-00 00:00:00'),(112057,'SURNDRANAG','GUJARAT','Y','vismay','2021-06-04 12:57:27','','0000-00-00 00:00:00'),(112247,' DHANDHUKA','GUJARAT','Y','binjal','2021-06-05 15:27:25','','0000-00-00 00:00:00'),(112278,'VASANA ','GUJARAT','Y','soham','2021-06-06 11:41:03','','0000-00-00 00:00:00'),(112370,'PUNA','MAHARASTRA','Y','kamleshp','2021-06-07 11:14:53','','0000-00-00 00:00:00'),(112627,'SABARKHATA ','GUJARAT','Y','ritu','2021-06-08 17:26:00','','0000-00-00 00:00:00'),(112699,'GAAHME','GUJARAT','Y','kamleshp','2021-06-09 10:28:22','','0000-00-00 00:00:00'),(113716,'MORABI','GUJARAT','Y','binjal','2021-06-15 16:24:15','','0000-00-00 00:00:00'),(113927,'SUART ','GUJARAT','Y','ritu','2021-06-17 10:43:11','','0000-00-00 00:00:00'),(114386,' BAYAD','GUJARAT','Y','binjal','2021-06-19 17:02:20','','0000-00-00 00:00:00'),(114422,'SUGADH','GUJARAT','Y','vismay','2021-06-20 14:14:16','','0000-00-00 00:00:00'),(114592,' MANDAL ','GUJARAT','Y','ritu','2021-06-21 16:32:36','','0000-00-00 00:00:00'),(115036,'THARAT','GUJARAT','Y','niki','2021-06-24 08:23:32','','0000-00-00 00:00:00'),(115638,'SHANKHESHWAR','GUJARAT','Y','kamleshp','2021-06-28 10:46:16','','0000-00-00 00:00:00'),(115944,'LIMBDI ','GUJARAT','Y','ritu','2021-06-29 12:03:22','','0000-00-00 00:00:00'),(116164,'MAJARA','GUJARAT','Y','ritu','2021-06-30 10:38:34','','0000-00-00 00:00:00'),(116301,'DHODKA','GUJARAT','Y','vismay','2021-06-30 17:25:48','','0000-00-00 00:00:00'),(116630,'PUNDHARA','GUJARAT','Y','ritu','2021-07-02 13:41:16','','0000-00-00 00:00:00'),(117212,'BANSKAHTHA ','GUJARAT','Y','ritu','2021-07-05 15:41:26','','0000-00-00 00:00:00'),(117564,'DEV BHOOMI DWARKA','GUJARAT','Y','binjal','2021-07-07 10:12:21','','0000-00-00 00:00:00'),(117982,'NAHISAGAR','GUJARAT','Y','ritu','2021-07-09 14:11:48','','0000-00-00 00:00:00'),(118084,'KAPRADA','GUJARAT','Y','sagard','2021-07-09 20:07:43','','0000-00-00 00:00:00'),(118411,'SABAKANTHA','GUJARAT','Y','chandreshkumar','2021-07-12 09:04:55','','0000-00-00 00:00:00'),(118914,'NAVI MUBAI ','GUJARAT','Y','ritu','2021-07-14 09:01:35','','0000-00-00 00:00:00'),(119036,'CHANDRALA','GUJARAT','Y','sejalprajapati','2021-07-14 14:11:34','','0000-00-00 00:00:00'),(119329,'INDORE','GUJARAT','Y','rakeshg','2021-07-15 17:33:29','','0000-00-00 00:00:00'),(119385,'SHERA','GUJARAT','Y','binjal','2021-07-16 10:29:40','','0000-00-00 00:00:00'),(119712,'DUNGARPUR','RAJASTHAN','Y','chandreshkumar','2021-07-18 14:35:59','','0000-00-00 00:00:00'),(119845,'BOTAD, ','GUJARAT','Y','binjal','2021-07-19 13:42:41','','0000-00-00 00:00:00'),(120301,'DAHOD, ','GUJARAT','Y','binjal','2021-07-21 10:35:41','','0000-00-00 00:00:00'),(120303,'LUNAVADA, ','GUJARAT','Y','binjal','2021-07-21 10:37:06','','0000-00-00 00:00:00'),(120438,'PALI','RAJESTHAN','Y','vismay','2021-07-21 16:30:18','','0000-00-00 00:00:00'),(120768,'PATDI ','GUJARAT','Y','ritu','2021-07-23 10:50:39','','0000-00-00 00:00:00'),(120845,'VASNA','GUJARAT','Y','ritu','2021-07-23 14:50:19','','0000-00-00 00:00:00'),(120956,'VIAJPUR ','GUJARAT','Y','ritu','2021-07-24 10:11:58','','0000-00-00 00:00:00'),(121565,'KHERADI','GUJARAT','Y','binjal','2021-07-27 13:01:39','','0000-00-00 00:00:00'),(121850,'BANASKHATA','GUJARAT','Y','ritu','2021-07-28 08:49:05','','0000-00-00 00:00:00'),(121929,'SUGHD ','GUJARAT','Y','ritu','2021-07-28 10:54:26','','0000-00-00 00:00:00'),(123740,'G','GUJARAT','Y','vismay','2021-08-02 09:59:55','','0000-00-00 00:00:00'),(124057,', ','GUJARAT','Y','ritu','2021-08-03 11:02:16','','0000-00-00 00:00:00'),(124150,'DHAOD ','GUJARAT','Y','ritu','2021-08-03 14:08:04','','0000-00-00 00:00:00'),(124619,'BORIJ , ','GUJARAT','Y','ritu','2021-08-05 14:36:36','','0000-00-00 00:00:00'),(124869,'KAPADVAJ , ','GUJARAT','Y','ritu','2021-08-06 15:22:54','','0000-00-00 00:00:00'),(125306,'NEPAL','GUJARAT','Y','ritu','2021-08-08 11:55:12','','0000-00-00 00:00:00'),(125336,'MUMBAI','MAHARSHRTA','Y','chandreshkumar','2021-08-08 21:49:22','','0000-00-00 00:00:00'),(125472,'DEGHAM ','GUJARAT','Y','ritu','2021-08-09 12:04:43','','0000-00-00 00:00:00'),(126174,'HADMATIYA  ','GUJARAT','Y','ritu','2021-08-11 14:24:02','','0000-00-00 00:00:00'),(126274,'VADALI ','GUJARAT','Y','ritu','2021-08-11 17:59:29','','0000-00-00 00:00:00'),(126642,'CHALA','GUJARAT','Y','ritu','2021-08-13 09:51:39','','0000-00-00 00:00:00'),(127494,'UTTERPRADESH','GUJARAT','Y','binjal','2021-08-16 14:50:21','','0000-00-00 00:00:00'),(127589,'BHARUCH,','GUJARAT','Y','binjal','2021-08-16 16:51:58','','0000-00-00 00:00:00'),(128047,'PANCHAL','GUJARAT','Y','ritu','2021-08-18 13:33:33','','0000-00-00 00:00:00'),(128104,'DHODAKA','GUJARAT','Y','binjal','2021-08-18 16:41:14','','0000-00-00 00:00:00'),(128226,'LUNAVADA','MAHISAGAR','Y','kamleshp','2021-08-19 10:44:28','','0000-00-00 00:00:00'),(128946,'ANKALESHWAR','GUJARAT','Y','kamleshp','2021-08-23 09:48:07','','0000-00-00 00:00:00'),(129460,'UDEPUR','GUJARAT','Y','binjal','2021-08-24 15:48:57','','0000-00-00 00:00:00'),(129742,'KALCUTTA','GUJARAT','Y','chandreshkumar','2021-08-25 13:37:47','','0000-00-00 00:00:00'),(130153,'BOMBAY','GUJARAT','Y','sagard','2021-08-26 22:44:33','','0000-00-00 00:00:00'),(130349,'JUNAGHDH','GUJARAT','Y','chandreshkumar','2021-08-28 08:08:52','','0000-00-00 00:00:00'),(130768,'CHANDLODIYA','GUJARAT','Y','ritu','2021-08-31 10:57:17','','0000-00-00 00:00:00'),(130860,'RAJKOR','GUJARAT','Y','kamleshp','2021-08-31 13:03:15','','0000-00-00 00:00:00'),(130888,'GADHKAN ','GUJARAT','Y','ritu','2021-08-31 14:11:48','','0000-00-00 00:00:00'),(131352,'AHAMEDABAD ','GUJARAT','Y','fenali','2021-09-02 10:09:08','','0000-00-00 00:00:00'),(132465,'DAHID','GUJARAT','Y','kamleshp','2021-09-06 11:26:53','','0000-00-00 00:00:00'),(132532,'SUGHAD','GUJARAT','Y','rakeshg','2021-09-06 13:46:30','','0000-00-00 00:00:00'),(132722,'PRANJIJ','GUJARAT','Y','kamleshp','2021-09-07 09:02:01','','0000-00-00 00:00:00'),(136076,'DIU, ','GUJARAT','Y','niravp','2021-09-18 08:49:10','','0000-00-00 00:00:00'),(136229,'KATHAR','BIHAR ','Y','yashpalr','2021-09-18 13:55:16','','0000-00-00 00:00:00'),(136739,'THASRA','GUJARAT','Y','niravp','2021-09-21 08:21:16','','0000-00-00 00:00:00'),(137033,'TERVADA','GUJARAT','Y','niravp','2021-09-22 08:57:34','','0000-00-00 00:00:00'),(137830,'DASHKOI AHMEDABAD','GUJARAT','Y','kamleshp','2021-09-25 09:19:12','','0000-00-00 00:00:00'),(137849,'MAHESAN','GUJARAT','Y','vismay','2021-09-25 09:54:49','','0000-00-00 00:00:00'),(138832,'HARYANA','HARYANA','Y','kamleshp','2021-09-28 16:49:50','','0000-00-00 00:00:00'),(139269,'VAISHALI','BIHAR','Y','binjal','2021-09-30 13:44:30','','0000-00-00 00:00:00'),(139391,'SHUKHASAR','GUJARAT','Y','binjal','2021-10-01 09:07:54','','0000-00-00 00:00:00'),(139467,'SUKHSAR','GUJARAT','Y','binjal','2021-10-01 10:57:02','','0000-00-00 00:00:00'),(140184,'ARRVALLI','GUJARAT','Y','yashpalr','2021-10-04 18:26:01','','0000-00-00 00:00:00'),(140650,'MAHUDHA','GUJARAT','Y','sooraj','2021-10-06 12:24:59','','0000-00-00 00:00:00'),(140878,'KOLKOTA','KOLCUTTA','Y','kamleshp','2021-10-07 11:16:06','','0000-00-00 00:00:00'),(141740,'THANE','MAHARSTRA','Y','kamleshp','2021-10-11 10:20:54','','0000-00-00 00:00:00'),(141847,'MIRBI','GUJARAT','Y','sooraj','2021-10-11 14:00:21','','0000-00-00 00:00:00'),(142035,'JODHPUR','RAJASTHAN','Y','chandreshkumar','2021-10-12 06:13:03','','0000-00-00 00:00:00'),(142433,' BALASINOR','GUJARAT','Y','binjal','2021-10-13 14:01:58','','0000-00-00 00:00:00'),(142571,'SAGVADA','RAJASTHAN','Y','sagard','2021-10-14 08:40:45','','0000-00-00 00:00:00'),(142635,'ARVALLII','GUJARAT','Y','sooraj','2021-10-14 11:09:42','','0000-00-00 00:00:00'),(142825,'GANDHINAGAR','GAN','Y','kamleshp','2021-10-15 12:20:46','','0000-00-00 00:00:00'),(143162,'JUNAGARH','GUJARAT','Y','sagard','2021-10-16 18:03:17','','0000-00-00 00:00:00'),(143517,'MAHARASTRA','MAHARASTRA','Y','sooraj','2021-10-18 17:23:53','','0000-00-00 00:00:00'),(143959,' BOTAD','GUJARAT','Y','sooraj','2021-10-20 09:50:40','','0000-00-00 00:00:00'),(144231,'SHIROI','RAJASTHAN','Y','sooraj','2021-10-21 10:54:35','','0000-00-00 00:00:00'),(144421,'KATCH BHUJ','GUJARAT','Y','kamleshp','2021-10-22 08:15:12','','0000-00-00 00:00:00'),(144677,'BASWADA','RAJASTHAN','Y','sooraj','2021-10-23 08:44:45','','0000-00-00 00:00:00'),(145417,'NEW MUMBAI','MAHARASTRA','Y','sooraj','2021-10-26 10:05:04','','0000-00-00 00:00:00'),(146444,' KOLKATA','WEST BENGAL','Y','binjal','2021-10-30 12:12:39','','0000-00-00 00:00:00'),(146953,'VALSAD','GUJARAT','Y','sooraj','2021-11-02 10:30:43','','0000-00-00 00:00:00'),(147376,'KERLAA','GUJARAT','Y','chandreshkumar','2021-11-07 09:50:12','','0000-00-00 00:00:00'),(148105,'NEW MUBAI','GUJARAT','Y','binjal','2021-11-10 11:55:35','','0000-00-00 00:00:00'),(148133,'GANDHINAGAR','GUJARGAT','Y','yashpalr','2021-11-10 13:23:37','','0000-00-00 00:00:00'),(148325,'UVARSAD','GUJARAT','Y','niravp','2021-11-11 10:43:59','','0000-00-00 00:00:00'),(148422,'KENIYA','GUJARAT','Y','binjal','2021-11-11 14:45:14','','0000-00-00 00:00:00'),(148721,'GANDHINAGAR','GUJARATG','Y','kamleshp','2021-11-13 08:17:10','','0000-00-00 00:00:00'),(148946,'WEST BANGAL','WEST BANGAL','Y','sooraj','2021-11-13 14:04:14','','0000-00-00 00:00:00'),(149109,'AMERICA','GUJARAT','Y','vismay','2021-11-15 08:15:49','','0000-00-00 00:00:00'),(149539,'WEST BANGAL','GUJARAT','Y','sagard','2021-11-16 13:20:39','','0000-00-00 00:00:00'),(149634,'BASWADA','RAJSHTHAN','Y','harshvyas','2021-11-16 17:54:44','','0000-00-00 00:00:00'),(150503,'KUCHCHH','GUJARAT','Y','chandreshkumar','2021-11-21 10:11:02','','0000-00-00 00:00:00'),(150795,'DHORIMANA','RAJSTHAN','Y','harshvyas','2021-11-22 17:09:22','','0000-00-00 00:00:00'),(151257,'LIBADI','GUJARAT','Y','binjal','2021-11-24 16:47:12','','0000-00-00 00:00:00'),(152060,'BADMER','RAJASTHAN','Y','sooraj','2021-11-29 08:47:19','','0000-00-00 00:00:00'),(152065,'DURENDRANAGAR','GUJARAT','Y','vismay','2021-11-29 09:02:09','','0000-00-00 00:00:00'),(152068,'BADHMER','RAJASTHAN','Y','harshvyas','2021-11-29 09:07:03','','0000-00-00 00:00:00'),(152130,'GANDHI','GUJARAT','Y','vismay','2021-11-29 11:37:29','','0000-00-00 00:00:00'),(152357,'PATNA','BIHAR','Y','harshvyas','2021-11-30 10:10:48','','0000-00-00 00:00:00'),(153366,'SHIVGANJ','RAJSHTHAN','Y','harshvyas','2021-12-04 18:42:13','','0000-00-00 00:00:00'),(153427,'BANSWADA','RAJASTHAN','Y','harshvyas','2021-12-06 10:06:23','','0000-00-00 00:00:00'),(153567,'CHANCHAL','WEST BENGOL','Y','niravp','2021-12-06 16:03:03','','0000-00-00 00:00:00'),(153618,'AUSTRALIA','GUJARAT','Y','binjal','2021-12-06 18:53:30','','0000-00-00 00:00:00'),(153659,'SUJALPUR','MADHYA PRADESH','Y','harshvyas','2021-12-07 09:50:24','','0000-00-00 00:00:00'),(153660,'SHUJALPUR','MADHAY PRADESH','Y','harshil','2021-12-07 09:50:53','','0000-00-00 00:00:00'),(153718,'DASADA','GUJARAT','Y','harshil','2021-12-07 12:45:02','','0000-00-00 00:00:00'),(153987,'LIMBADI','GUJARAT','Y','harshil','2021-12-09 09:56:30','','0000-00-00 00:00:00'),(154003,'BANCHVADA','RAJASTHAN','Y','vismay','2021-12-09 10:51:21','','0000-00-00 00:00:00'),(154134,'SUMERPUR','RAJSTHAN','Y','harshil','2021-12-09 17:17:58','','0000-00-00 00:00:00'),(154704,'MAHARSHTRA','GUJARAT','Y','chandreshkumar','2021-12-11 22:21:47','','0000-00-00 00:00:00'),(154955,' GANTHINAGAR','GUJARAT','Y','harshil','2021-12-13 16:39:59','','0000-00-00 00:00:00'),(155245,'JALOR','RAJSTHAN','Y','chandreshkumar','2021-12-15 11:11:11','','0000-00-00 00:00:00'),(155835,'VEDAVAD','GUJARAT','Y','kamleshp','2021-12-18 08:59:20','','0000-00-00 00:00:00'),(155912,'BANSWARA','RAJASTHAN','Y','harshvyas','2021-12-18 12:13:11','','0000-00-00 00:00:00'),(156031,'CHHATISGADH','GUJARAT','Y','chandreshkumar','2021-12-18 23:44:04','','0000-00-00 00:00:00'),(156421,'MADHWAS','GUJARAT','Y','niravp','2021-12-21 14:18:16','','0000-00-00 00:00:00'),(156448,'SAGWARA','RAJSTHAN','Y','kamleshp','2021-12-21 15:03:09','','0000-00-00 00:00:00'),(156458,'BOMBAY','BOMBAY','Y','kamleshp','2021-12-21 15:28:12','','0000-00-00 00:00:00'),(156667,'DHOLERA','GUJARAT','Y','niravp','2021-12-22 15:22:50','','0000-00-00 00:00:00'),(156692,'MUMBAI','MAHARASHTRA','Y','harshil','2021-12-22 16:29:18','','0000-00-00 00:00:00'),(157098,'PNCHMAHAL','GUJARAT','Y','vismay','2021-12-24 13:08:12','','0000-00-00 00:00:00'),(158332,'KACHHA','GUJARAT','Y','deven ','2021-12-29 09:49:33','','0000-00-00 00:00:00'),(158365,'VADANAGAR','GUJARAT','Y','harshil','2021-12-29 10:49:35','','0000-00-00 00:00:00'),(158540,'ARVALLIH','GUJARAT','Y','sooraj','2021-12-30 09:15:44','','0000-00-00 00:00:00'),(159307,'RAJSHTHAN','RAJSHTHAN','Y','harshil','2022-01-03 09:58:40','','0000-00-00 00:00:00'),(159456,'JUNAGAD','GUJARAT','Y','sooraj','2022-01-03 15:09:03','','0000-00-00 00:00:00'),(159893,'LAKHANU','GUJARAT','Y','neha','2022-01-05 10:55:19','','0000-00-00 00:00:00'),(160122,'DULANA','GUJARAT','Y','harshvyas','2022-01-06 11:01:49','','0000-00-00 00:00:00'),(160545,'BHATTI','RAJASTHAN','Y','harshvyas','2022-01-08 09:58:51','','0000-00-00 00:00:00'),(160616,'JAIPUR','RAJASTHAN','Y','kamleshp','2022-01-08 11:45:01','','0000-00-00 00:00:00'),(160795,'CHANDAKHEDA','GUJARAT','Y','sooraj','2022-01-10 09:49:07','','0000-00-00 00:00:00'),(160888,'KHEDBRAMAA','GUJARAT','Y','binjal','2022-01-10 11:54:56','','0000-00-00 00:00:00'),(161083,'JODGPUR ','RAJASTHAN','Y','sooraj','2022-01-11 08:10:21','','0000-00-00 00:00:00'),(161161,'CANADA','CANADA','Y','harshvyas','2022-01-11 12:02:02','','0000-00-00 00:00:00'),(161596,'UTTRAKHAND','GUJARAT','Y','harshvyas','2022-01-13 10:56:40','','0000-00-00 00:00:00'),(162025,'BALACINOR','GUJARAT','Y','neha','2022-01-17 10:43:29','','0000-00-00 00:00:00'),(162244,'NEHSANA','GUJARAT','Y','kamleshp','2022-01-17 17:13:25','','0000-00-00 00:00:00'),(162434,'RAJSTHAN','RAJASTHAN','Y','harshil','2022-01-18 11:59:45','','0000-00-00 00:00:00'),(163268,'RAKHAYAL','GUJARAT','Y','neha','2022-01-21 14:25:58','','0000-00-00 00:00:00'),(163269,'RAKHYAL','GUJARAT','Y','neha','2022-01-21 14:28:01','','0000-00-00 00:00:00'),(164406,'RAJSTHAN','RAJSTHAN','Y','harshvyas','2022-01-27 11:36:02','','0000-00-00 00:00:00'),(164569,'RAPAR','KUTCH','Y','harshvyas','2022-01-27 17:01:51','','0000-00-00 00:00:00'),(164909,' GANDHINAGAR,','GUJARAT','Y','sooraj','2022-01-28 19:38:22','','0000-00-00 00:00:00'),(165682,'RAJSTAHN','RAJSTHAN','Y','harshvyas','2022-02-01 12:45:53','','0000-00-00 00:00:00'),(166029,'PALI','RAJSTHAN','Y','harshvyas','2022-02-03 09:47:46','','0000-00-00 00:00:00'),(166714,'BANSWADA','RAJSTHAN','Y','harshvyas','2022-02-07 09:04:38','','0000-00-00 00:00:00'),(166877,'SIROI','RAJASTHAN','Y','kamleshp','2022-02-07 16:07:49','','0000-00-00 00:00:00'),(167967,'VIRAMGAAM','GUJARAT','Y','dia','2022-02-12 12:42:01','','0000-00-00 00:00:00'),(168235,'EAST MUMBAI','MAHARASHTRA','Y','kamleshp','2022-02-14 11:12:50','','0000-00-00 00:00:00'),(168292,'KACHHCHHA','GUJARAT','Y','digvijay','2022-02-14 13:34:10','','0000-00-00 00:00:00'),(168600,'GANDDHINAGAR','GUJARAT','Y','pritesh','2022-02-15 17:24:58','','0000-00-00 00:00:00'),(169088,'BALVA','GUJARAT','Y','dia','2022-02-18 10:31:17','','0000-00-00 00:00:00'),(169311,'DHRANGADHRA','GUJARAT','Y','harshvyas','2022-02-19 10:49:52','','0000-00-00 00:00:00'),(169505,'JUNAGADH, ','GUJARAT','Y','kamleshp','2022-02-20 08:43:23','','0000-00-00 00:00:00'),(169802,'AHMEDANBAD ','GUJARAT','Y','harshvyas','2022-02-21 17:29:46','','0000-00-00 00:00:00'),(170708,'BASAVADA','RAJSHTHAN','Y','surajm','2022-02-25 09:40:41','','0000-00-00 00:00:00'),(170807,'RANIWARA JALOR','RAJASTHAN','Y','surajm','2022-02-25 14:00:45','','0000-00-00 00:00:00'),(171956,'KOLKATA ','GUJARAT','Y','dia','2022-03-02 09:30:59','','0000-00-00 00:00:00'),(172997,'RAJASTHAN','RAJSTHAN','Y','surajm','2022-03-05 14:39:13','','0000-00-00 00:00:00'),(174016,'HAIDRABAD','TELNGANA','Y','harshvyas','2022-03-09 12:09:38','','0000-00-00 00:00:00'),(174604,'GIFTCITY','GUJARAT','Y','dia','2022-03-11 10:13:33','','0000-00-00 00:00:00'),(174621,'GWALIOR','GUJARAT','Y','digvijay','2022-03-11 10:34:14','','0000-00-00 00:00:00'),(174877,'PUNCHMAHAL','GUJARAT','Y','harshvyas','2022-03-12 08:55:14','','0000-00-00 00:00:00'),(175530,'BALASINDOR','GUJARAT','Y','dia','2022-03-14 11:53:18','','0000-00-00 00:00:00'),(175589,'DASKOI  AHMEDABD','GUJARAT','Y','kamleshp','2022-03-14 14:34:37','','0000-00-00 00:00:00'),(175771,'SABARAKANTHA','GUJARAT','Y','surajm','2022-03-14 18:51:30','','0000-00-00 00:00:00'),(176765,'SIDHDHAPUR','GUJARAT','Y','kamleshp','2022-03-19 10:43:04','','0000-00-00 00:00:00'),(177748,'SHIROHI','RAJSTHAN','Y','surajm','2022-03-22 13:36:59','','0000-00-00 00:00:00'),(178546,'MARAGER','GUJARAT','Y','pritesh','2022-03-24 16:14:54','','0000-00-00 00:00:00'),(178567,'DALOD','GUJARAT','Y','harshvyas','2022-03-24 16:42:55','','0000-00-00 00:00:00'),(178800,'PATDI, ','GUJARAT','Y','harshvyas','2022-03-25 12:53:25','','0000-00-00 00:00:00'),(179005,'JESALMER','RAJSTHAN','Y','harshvyas','2022-03-26 08:22:43','','0000-00-00 00:00:00'),(179028,'AMBAJII','GUJARAT','Y','harshvyas','2022-03-26 09:00:40','','0000-00-00 00:00:00'),(179717,'KANPUR','UP','Y','surajm','2022-03-28 16:46:03','','0000-00-00 00:00:00'),(180128,'','RAJ','Y','surajm','2022-03-30 08:19:34','','0000-00-00 00:00:00'),(181197,'BHAVANAGAR','GUJARAT','Y','surajm','2022-04-02 11:10:55','','0000-00-00 00:00:00'),(181493,'BHIND','MADHYAPRADESH','Y','mohit','2022-04-04 10:07:39','','0000-00-00 00:00:00'),(182022,'GANDHINAGARGAS','GUJARAT','Y','pritesh','2022-04-05 13:26:58','','0000-00-00 00:00:00'),(182204,'SURRENDRANAGAR','GUJARAT','Y','harshvyas','2022-04-06 08:52:22','','0000-00-00 00:00:00'),(182252,'AHMEBADAD','GUJARAT','Y','kamleshp','2022-04-06 10:37:12','','0000-00-00 00:00:00'),(182501,'SABARKATH','GUJARAT','Y','surajm','2022-04-07 09:49:21','','0000-00-00 00:00:00'),(182592,', GANDHINAGAR','GUJARAT','Y','pritesh','2022-04-07 11:18:53','','0000-00-00 00:00:00'),(182995,'BARELI','UTTAR PRADESH','Y','nileshprajapati','2022-04-08 15:00:07','','0000-00-00 00:00:00'),(183851,'DEGHHAM','GUJARAT','Y','vandanap','2022-04-11 16:58:41','','0000-00-00 00:00:00'),(183870,'ABU','GUJARAT','Y','mohit','2022-04-11 17:15:44','','0000-00-00 00:00:00'),(184293,'','KUCH','Y','vandanap','2022-04-13 08:39:56','','0000-00-00 00:00:00'),(184557,'PUNJAB','PUNJAB','Y','yashpalr','2022-04-13 19:48:42','','0000-00-00 00:00:00'),(186228,'SIHOR BHAVNAGAR','GUJARAT','Y','vandanap','2022-04-20 09:15:53','','0000-00-00 00:00:00'),(186581,'MAHRSTRA','GUJARAT','Y','mohit','2022-04-21 10:24:45','','0000-00-00 00:00:00'),(187350,'MADHYAPRADESH','MADHYAPRADESH','Y','vismay','2022-04-23 12:28:31','','0000-00-00 00:00:00'),(187433,'ODISHA','ODISHA','Y','surajm','2022-04-23 15:23:59','','0000-00-00 00:00:00'),(187876,'SURENDR NAGAR','GUJARAT','Y','surajm','2022-04-25 17:57:26','','0000-00-00 00:00:00'),(189613,'SABARKANTHA , ','GUJARAT','Y','kamleshp','2022-05-02 11:55:30','','0000-00-00 00:00:00'),(190292,'MAHISAGARA','GUJARAT','Y','vismay','2022-05-05 08:30:20','','0000-00-00 00:00:00'),(190676,'BIKANER','RAJASTHAN','Y','kamleshp','2022-05-06 11:36:12','','0000-00-00 00:00:00'),(192023,'UMRETH','GUJARAT','Y','vandanap','2022-05-12 08:42:44','','0000-00-00 00:00:00'),(192063,'KUDA','GUJARAT','Y','surajm','2022-05-12 10:36:13','','0000-00-00 00:00:00'),(193364,'MODHERA','GUJARAT','Y','alok','2022-05-17 10:29:53','','0000-00-00 00:00:00'),(193513,'MAHE','GUJARAT','Y','surajm','2022-05-17 15:41:44','','0000-00-00 00:00:00'),(194269,'LADOL VIJAPUR','GUJARAT','Y','kinnaris','2022-05-20 17:35:54','','0000-00-00 00:00:00'),(194559,'GANDHINA','GUJARAT','Y','pritesh','2022-05-22 12:06:38','','0000-00-00 00:00:00'),(195150,'RANIP','GUJARAT','Y','alok','2022-05-25 11:53:24','','0000-00-00 00:00:00'),(195276,'HIMATNAGR','GUJARAT','Y','mohit','2022-05-26 09:07:14','','0000-00-00 00:00:00'),(196674,'JEPUR','GUJARAT','Y','alok','2022-06-01 10:42:27','','0000-00-00 00:00:00'),(197862,'AANDRAPRADESH','AANDRAPRADESH','Y','surajm','2022-06-06 10:55:10','','0000-00-00 00:00:00'),(198941,'CHHATRAL','GUJARAT','Y','kamleshp','2022-06-09 16:46:05','','0000-00-00 00:00:00'),(199868,'MESHANA','GUJARAT','Y','mohit','2022-06-13 12:49:15','','0000-00-00 00:00:00'),(201677,'MAHUAA','GUJARAT','Y','surajm','2022-06-20 10:08:19','','0000-00-00 00:00:00'),(201793,'VEJALPUR','GUJARAT','Y','vandanap','2022-06-20 11:57:15','','0000-00-00 00:00:00'),(203306,'RAJASTAN','GUJARAT','Y','soham','2022-06-24 21:17:34','','0000-00-00 00:00:00'),(207261,' MEH SA NA','GUJARAT','Y','pritesh','2022-07-08 10:42:30','','0000-00-00 00:00:00'),(207613,'SHAIBAUGH','GUJARAT','Y','vandanap','2022-07-09 11:17:45','','0000-00-00 00:00:00'),(208122,'GANDHINAGARGULI','GUJARAT','Y','pritesh','2022-07-11 11:41:02','','0000-00-00 00:00:00'),(209200,'KACH','GUJARAT','Y','alok','2022-07-14 19:04:58','','0000-00-00 00:00:00'),(209241,' DUNGARPUR','RAJSTHAN','Y','surajm','2022-07-15 09:02:49','','0000-00-00 00:00:00'),(211101,' MHESANA','GUJARAT','Y','surajm','2022-07-20 16:11:24','','0000-00-00 00:00:00'),(211251,'KUDSAN','GUJARAT','Y','vandanap','2022-07-21 10:13:24','','0000-00-00 00:00:00'),(213135,'GANDHINAGARMOTA MUNJIJASAR ','GUJARAT','Y','pritesh','2022-07-27 10:54:58','','0000-00-00 00:00:00'),(213513,'SANKHESHWAR','GUJARAT','Y','pritesh','2022-07-28 11:03:46','','0000-00-00 00:00:00'),(213574,'AHEMDABAD, ','GUJARAT','Y','mihirv','2022-07-28 11:51:09','','0000-00-00 00:00:00'),(215522,'RADESAN','GUJARAT','Y','mohit','2022-08-02 19:20:53','','0000-00-00 00:00:00'),(216279,'-KHEDBRAHMMA','GUJARAT','Y','kamleshp','2022-08-04 16:52:00','','0000-00-00 00:00:00'),(216416,'PALAJ','GUJARAT','Y','mihirv','2022-08-05 09:34:22','','0000-00-00 00:00:00'),(218419,'AMERALI','GUJARAT','Y','kamleshp','2022-08-10 11:16:46','','0000-00-00 00:00:00'),(218745,'THANE','GUJARAT','Y','vandanap','2022-08-12 09:01:41','','0000-00-00 00:00:00'),(219356,'RATLAM','MADHAY PRADESH','Y','khanjan','2022-08-13 12:01:23','','0000-00-00 00:00:00'),(220084,'DHANGADHRA','GUJARAT','Y','binjal','2022-08-16 15:39:59','','0000-00-00 00:00:00'),(220346,'HALISA','GUJARAT','Y','pritesh','2022-08-17 11:12:14','','0000-00-00 00:00:00'),(220811,'','MADHAY PRADESH','Y','vinita','2022-08-18 11:58:57','','0000-00-00 00:00:00'),(221756,'MAHRASHTRA ','GUJARAT','Y','payal1745','2022-08-22 11:28:16','','0000-00-00 00:00:00'),(223930,'AANAD','GUJARAT','Y','payal1745','2022-08-27 11:58:59','','0000-00-00 00:00:00'),(224417,'VALAK','SURAT','Y','vinita','2022-08-29 10:32:52','','0000-00-00 00:00:00'),(224806,'BANGLOR','BANGLOR','Y','nileshprajapati','2022-08-29 20:55:57','','0000-00-00 00:00:00'),(225006,'GANDHINAGARKETUL S PATEL','GUJARAT','Y','payal1745','2022-08-30 14:34:50','','0000-00-00 00:00:00'),(225009,'ODISA','ODISHA','Y','payal1745','2022-08-30 14:41:21','','0000-00-00 00:00:00'),(226933,'NAINITAL','GUJARAT','Y','payal1745','2022-09-05 09:57:51','','0000-00-00 00:00:00'),(227021,'RAJESTHAN','RAJASTHAN','Y','nikunjm','2022-09-05 11:17:18','','0000-00-00 00:00:00'),(227361,'KOLLAM','KERLA','Y','yashpalr','2022-09-06 09:01:13','','0000-00-00 00:00:00'),(228176,'BALASHINOR','GUJARAT','Y','payal1745','2022-09-08 08:56:14','','0000-00-00 00:00:00'),(228320,'BARELI','GUJARAT','Y','nikunjm','2022-09-08 12:09:01','','0000-00-00 00:00:00'),(228345,'KHERI ','UTTAR PRADESH','Y','khanjan','2022-09-08 13:33:07','','0000-00-00 00:00:00'),(229630,'SURENDRNAGAR','GUJARAT','Y','payal1745','2022-09-12 10:35:42','','0000-00-00 00:00:00'),(229676,'KHEDBRMHA','GUJARAT','Y','payal1745','2022-09-12 11:01:56','','0000-00-00 00:00:00'),(230100,'KATHVADA','GUJARAT','Y','payal1745','2022-09-13 09:41:55','','0000-00-00 00:00:00'),(230900,'INDIRANAGAR','GUJARAT','Y','payal1745','2022-09-15 10:26:39','','0000-00-00 00:00:00'),(231887,'RAJSAMAND','RAJSHTHAN','Y','vinita','2022-09-17 14:08:36','','0000-00-00 00:00:00'),(231922,'AJMER','RAJASTHAN','Y','kamleshp','2022-09-17 15:12:52','','0000-00-00 00:00:00'),(232281,'DAMNAGAR','GUJARAT','Y','vinita','2022-09-19 10:45:44','','0000-00-00 00:00:00'),(232726,'RANIWADA','GUJARAT','Y','payal1745','2022-09-20 10:49:37','','0000-00-00 00:00:00'),(232867,'MODASH','GUJARAT','Y','alok','2022-09-20 14:49:21','','0000-00-00 00:00:00'),(233135,' MODASA','GUJARAT','Y','payal1745','2022-09-21 11:36:24','','0000-00-00 00:00:00'),(234447,'BAVDA, ','GUJARAT','Y','payal1745','2022-09-24 16:17:00','','0000-00-00 00:00:00'),(235460,'AH','GUJARAT','Y','vandanap','2022-09-28 10:32:42','','0000-00-00 00:00:00'),(236019,'GANDHINAGAR, ','TANZANIA','Y','mihirv','2022-09-29 23:28:19','','0000-00-00 00:00:00'),(237489,'INDIA','GUJARAT','Y','vinita','2022-10-06 10:04:53','','0000-00-00 00:00:00'),(237898,'SIROI','GUJARAT','Y','payal1745','2022-10-07 10:13:52','','0000-00-00 00:00:00'),(238179,'PATANA','BIHAR','Y','vandanap','2022-10-08 08:21:26','','0000-00-00 00:00:00'),(238292,'INDIA','BIHAR','Y','parita1779','2022-10-08 11:10:42','','0000-00-00 00:00:00'),(238727,'JAMNGAR','GUJARAT','Y','surajm','2022-10-09 22:57:22','','0000-00-00 00:00:00'),(239721,'KHEDBRHMA','GUJARAT','Y','payal1745','2022-10-12 15:43:39','','0000-00-00 00:00:00'),(240449,'SHANTARAPUR','GUJARAT','Y','kamleshp','2022-10-14 14:49:35','','0000-00-00 00:00:00'),(241258,'PRATIJ','SABARKATHA','Y','payal1745','2022-10-17 14:22:11','','0000-00-00 00:00:00'),(242501,'BEHCHARAJI','GUJARAT','Y','kamleshp','2022-10-21 12:31:08','','0000-00-00 00:00:00'),(242712,'JAM KHBHADIYA','GUJARAT','Y','payal1745','2022-10-22 10:55:37','','0000-00-00 00:00:00'),(242714,'JAM KHAMBHADIYA','GUJARAT','Y','payal1745','2022-10-22 10:57:18','','0000-00-00 00:00:00'),(242795,'NAWANAGAR','BIHAR','Y','alok','2022-10-22 14:42:52','','0000-00-00 00:00:00'),(243347,'JHANSI','GUJARAT','Y','alok','2022-10-28 17:36:21','','0000-00-00 00:00:00'),(243579,'USA','GUJARAT','Y','payal1745','2022-10-29 13:22:37','','0000-00-00 00:00:00'),(244130,'KESHOD','GUJARAT','Y','payal1745','2022-10-31 14:53:55','','0000-00-00 00:00:00'),(244240,'ANKESHWAR','GUJARAT','Y','kamleshp','2022-10-31 16:59:09','','0000-00-00 00:00:00'),(245583,'GONDAL','GUJARAT','Y','payal1745','2022-11-04 10:41:59','','0000-00-00 00:00:00'),(245974,'MARABI','GUJARAT','Y','kamleshp','2022-11-05 12:02:24','','0000-00-00 00:00:00'),(246323,'MUBARAKPUR','GUJARAT','Y','payal1745','2022-11-07 10:04:01','','0000-00-00 00:00:00'),(246403,'VALAD','GUJARAT','Y','payal1745','2022-11-07 11:35:18','','0000-00-00 00:00:00'),(247197,'JALOR','RAJSHTHAN','Y','vinita','2022-11-09 13:27:01','','0000-00-00 00:00:00'),(247501,'BOMBYA','GUJARAT','Y','kamleshp','2022-11-10 11:50:17','','0000-00-00 00:00:00'),(248223,'SANKHESHVAR','GUJARAT','Y','kamleshp','2022-11-12 11:56:24','','0000-00-00 00:00:00'),(248490,'CHANKYA PURI','NEW DELHI','Y','nileshprajapati','2022-11-13 17:26:52','','0000-00-00 00:00:00'),(249777,'JETDA','GUJARAT','Y','payal1745','2022-11-17 12:22:52','','0000-00-00 00:00:00'),(249865,'UVASAD','GUJARAT','Y','alok','2022-11-17 17:06:10','','0000-00-00 00:00:00'),(251065,'CANADA','GUJARAT','Y','payal1745','2022-11-21 12:59:39','','0000-00-00 00:00:00'),(251495,'MASNSA','GUJARAT','Y','payal1745','2022-11-22 11:53:22','','0000-00-00 00:00:00'),(252403,'VIJAPUR ','MAHESANA ','Y','yashpalr','2022-11-24 18:49:48','','0000-00-00 00:00:00'),(254395,'NAGPUR','MAHARASHTRA','Y','payal1745','2022-12-02 10:47:07','','0000-00-00 00:00:00'),(255959,'JALAWAD, ','RAJASTHAN','Y','payal1745','2022-12-07 13:29:45','','0000-00-00 00:00:00'),(256286,'MAGODI','GUJARAT','Y','vandanap','2022-12-08 16:51:55','','0000-00-00 00:00:00'),(256414,'PATIYA','GUJARAT','Y','vandanap','2022-12-09 11:03:11','','0000-00-00 00:00:00'),(256443,'SA','GUJARAT','Y','dhavalb','2022-12-09 11:38:31','','0000-00-00 00:00:00'),(256863,'GANDHINAGARKUDASAN','GUJARAT','Y','dhavalb','2022-12-10 15:28:10','','0000-00-00 00:00:00'),(257029,'MAHIDAGAR','GUJARAT','Y','dhavalb','2022-12-12 08:45:06','','0000-00-00 00:00:00'),(257076,'BASWADA','GUJARAT','Y','dhavalb','2022-12-12 10:10:33','','0000-00-00 00:00:00'),(257604,'PALI','RAJASHTHAN','Y','dhavalb','2022-12-13 11:24:02','','0000-00-00 00:00:00'),(257612,'SANANDA','GUJARAT','Y','dhavalb','2022-12-13 11:29:20','','0000-00-00 00:00:00'),(258054,' BARODA','GUJARAT','Y','payal1745','2022-12-14 15:18:29','','0000-00-00 00:00:00'),(258645,'BODAKDEV','GUJARAT','Y','vandanap','2022-12-16 12:24:07','','0000-00-00 00:00:00'),(258875,'VIRAPUR ','GUJARAT','Y','vandanap','2022-12-17 09:55:44','','0000-00-00 00:00:00'),(258882,'RATANPUR','GUJARAT','Y','dhavalb','2022-12-17 10:08:00','','0000-00-00 00:00:00'),(259665,'KADAPA','ANDHRA PRADESH','Y','payal1745','2022-12-19 16:51:37','','0000-00-00 00:00:00'),(262546,'KOT','GUJARAT','Y','rutvik1841','2022-12-28 11:20:09','','0000-00-00 00:00:00'),(262669,'BOMBOY','MAHARASHTRA','Y','kamleshp','2022-12-28 15:42:34','','0000-00-00 00:00:00'),(262982,'JABALPUR','GUJARAT','Y','kaushik','2022-12-29 13:20:20','','0000-00-00 00:00:00'),(264874,'DURNGARPUR','RAJASTHAN','Y','kamleshp','2023-01-03 21:46:09','','0000-00-00 00:00:00'),(264876,'MANGROL','GUJARAT','Y','janvi','2025-10-08 10:09:27','','0000-00-00 00:00:00'),(264888,'BABRA AMRELI','GUJARAT','Y','drashti','2025-10-08 10:23:44','','0000-00-00 00:00:00'),(264900,'THORDI','GUJARAT','Y','drashti','2025-10-08 10:33:30','','0000-00-00 00:00:00'),(264904,'BAMABBOR','GUJARAT','Y','janvi','2025-10-08 10:56:51','','0000-00-00 00:00:00'),(264913,'WANKANER','GUJARAT','Y','janvi','2025-10-08 11:11:35','','0000-00-00 00:00:00'),(264932,'PALI RAJESTHAN','GUJARAT','Y','shweta','2025-10-08 11:46:00','','0000-00-00 00:00:00'),(264935,'JASDAN','GUJARAT','Y','drashti','2025-10-08 11:55:07','','0000-00-00 00:00:00'),(264942,'JAMKANDOLA','GUJARAT','Y','drashti','2025-10-08 12:09:04','','0000-00-00 00:00:00'),(264972,'AROHI PHARMA','GUJARAT','Y','priyanshi','2025-10-08 16:38:38','','0000-00-00 00:00:00'),(264973,'AVIOX PHARMA','GUJARAT','Y','priyanshi','2025-10-08 16:39:25','','0000-00-00 00:00:00'),(264975,'SION PHARMA','GUJARAT','Y','priyanshi','2025-10-08 16:40:03','','0000-00-00 00:00:00'),(264977,'ZUVENTUS PHARMA','GUJARAT','Y','priyanshi','2025-10-08 16:40:49','','0000-00-00 00:00:00'),(264983,'DHORAJI','GUJARAT','Y','shweta','2025-10-08 17:07:52','','0000-00-00 00:00:00'),(264988,'MUNDRA KUTCH','GUJARAT','Y','janvi','2025-10-08 17:15:58','','0000-00-00 00:00:00'),(265019,'DHROL','GUJARAT','Y','urvashi','2025-10-08 18:20:23','','0000-00-00 00:00:00'),(265024,'RAJAKOT','GUJARAT','Y','shweta','2025-10-08 18:29:33','','0000-00-00 00:00:00'),(265042,'METODA','GUJARAT','Y','urvashi','2025-10-08 19:16:17','','0000-00-00 00:00:00'),(265044,'JAMJODHPUR','GUJARAT','Y','janvi','2025-10-08 19:20:23','','0000-00-00 00:00:00'),(265048,'TALALA GIR','GUJARAT','Y','janvi','2025-10-08 19:44:17','','0000-00-00 00:00:00'),(265063,'LODHIKA','GUJARAT','Y','shweta','2025-10-09 10:34:58','','0000-00-00 00:00:00'),(265065,'KALYANPUR ','GUJARAT','Y','shweta','2025-10-09 10:37:55','','0000-00-00 00:00:00'),(265070,'ROHISHALA','GUJARAT','Y','manshi','2025-10-09 10:48:37','','0000-00-00 00:00:00'),(265094,'JANJMER','GUJARAT','Y','urvashi','2025-10-09 11:30:17','','0000-00-00 00:00:00'),(265118,'HIRASAR RAJKOT','GUJARAT','Y','janvi','2025-10-09 13:05:28','','0000-00-00 00:00:00'),(265119,'GIR SOMANTH','GUJARAT','Y','shweta','2025-10-09 16:28:49','','0000-00-00 00:00:00'),(265121,'BHESAN','GUJARAT','Y','shweta','2025-10-09 16:41:58','','0000-00-00 00:00:00'),(265123,'DIU','GUJARAT','Y','shweta','2025-10-09 16:54:14','','0000-00-00 00:00:00'),(265127,'VIRNAGAR','GUJARAT','Y','shweta','2025-10-09 17:15:30','','0000-00-00 00:00:00'),(265128,'PITHAD','GUJARAT','Y','shweta','2025-10-09 17:19:38','','0000-00-00 00:00:00'),(265143,'JAMKANDONA','GUJARAT','Y','shweta','2025-10-09 18:01:13','','0000-00-00 00:00:00'),(265162,'WAKANER','GUJARAT','Y','urvashi','2025-10-09 18:48:14','','0000-00-00 00:00:00'),(265197,'JAMKHAMBHADIYA DWARKA','GUJARAT','Y','priyanshi','2025-10-10 09:56:01','','0000-00-00 00:00:00'),(265200,'SHIVRAJGADH','GUJARAT','Y','reception','2025-10-10 10:11:08','','0000-00-00 00:00:00'),(265201,'NAVAGAM','GUJARAT','Y','reception','2025-10-10 10:14:43','','0000-00-00 00:00:00'),(265252,'TANKARA','GUJARAT','Y','manshi','2025-10-10 13:47:31','','0000-00-00 00:00:00'),(265256,'MANGROL JUNAGADH','GUJARAT','Y','priyanshi','2025-10-10 16:21:28','','0000-00-00 00:00:00'),(265258,'SPECTRA','GUJARAT','Y','drashti','2025-10-10 16:36:20','','0000-00-00 00:00:00'),(265263,'THEO PHARMA','GUJARAT','Y','reception','2025-10-10 16:45:00','','0000-00-00 00:00:00'),(265266,'LA RENON HEALTHCARE','GUJARAT','Y','reception','2025-10-10 16:54:43','','0000-00-00 00:00:00'),(265267,'KAVACH NINE','GUJARAT','Y','reception','2025-10-10 16:59:51','','0000-00-00 00:00:00'),(265326,'VASAVAD GONDAL','GUJARAT','Y','priyanshi','2025-10-11 09:17:31','','0000-00-00 00:00:00'),(265336,'KODINAR','GUJARAT','Y','janvi','2025-10-11 10:26:15','','0000-00-00 00:00:00'),(265339,'KALAWAD','GUJARAT','Y','drashti','2025-10-11 10:32:47','','0000-00-00 00:00:00'),(265409,'NEKAM TANKARA','GUJARAT','Y','janvi','2025-10-13 09:18:42','','0000-00-00 00:00:00'),(265410,'KUCHIYADAD RAJKOT','GUJARAT','Y','janvi','2025-10-13 09:18:52','','0000-00-00 00:00:00'),(265420,'VODKA','GUJARAT','Y','reception','2025-10-13 09:28:58','','0000-00-00 00:00:00'),(265421,'BABRA','GUJARAT','Y','reception','2025-10-13 09:38:06','','0000-00-00 00:00:00'),(265422,'SHREENATHJI','GUJARAT','Y','reception','2025-10-13 09:46:39','','0000-00-00 00:00:00'),(265435,'TIKAR','GUJARAT','Y','manshi','2025-10-13 10:14:45','','0000-00-00 00:00:00'),(265438,'KHAMBHADIYA','GUJARAT','Y','shweta','2025-10-13 10:16:45','','0000-00-00 00:00:00'),(265443,'MOVRI','GUJARAT','Y','reception','2025-10-13 10:32:13','','0000-00-00 00:00:00'),(265444,'VICHHIYA','GUJARAT','Y','drashti','2025-10-13 10:33:18','','0000-00-00 00:00:00'),(265445,'SANALA','GUJARAT','Y','reception','2025-10-13 10:38:44','','0000-00-00 00:00:00'),(265526,'BHANVAD','GUJARAT','Y','reception','2025-10-13 17:42:25','','0000-00-00 00:00:00'),(265575,'GOJIYA PADDHARI','GUJARAT','Y','janvi','2025-10-13 19:21:07','','0000-00-00 00:00:00'),(265592,'ANANDPAR','GUJARAT','Y','reception','2025-10-14 09:45:57','','0000-00-00 00:00:00'),(265603,'PADDHARI','GUJARAT','Y','janvi','2025-10-14 10:40:25','','0000-00-00 00:00:00'),(265633,'MADIYA HATINA JUNAGADH','GUJARAT','Y','drashti','2025-10-14 12:35:42','','0000-00-00 00:00:00'),(265655,'JAMANGAR','GUJARAT','Y','drashti','2025-10-14 17:18:29','','0000-00-00 00:00:00'),(265658,'MUNJKA','GUJARAT','Y','urvashi','2025-10-14 17:40:48','','0000-00-00 00:00:00'),(265666,'SHAPAR VERAVAL','GUJARAT','Y','urvashi','2025-10-14 17:51:14','','0000-00-00 00:00:00'),(265672,'JUNA VAGHANIYA','GUJARAT','Y','janvi','2025-10-14 17:57:30','','0000-00-00 00:00:00'),(265691,'KUTIYANA','GUJARAT','Y','janvi','2025-10-14 18:30:24','','0000-00-00 00:00:00'),(265714,'RATADIYA ','GUJARAT','Y','janvi','2025-10-15 09:11:02','','0000-00-00 00:00:00'),(265737,'PADADHRI','GUJARAT','Y','reception','2025-10-15 10:48:21','','0000-00-00 00:00:00'),(265756,'SOMANATH','GUJARAT','Y','drashti','2025-10-15 11:29:15','','0000-00-00 00:00:00'),(265774,'KALAVAD','GUJARAT','Y','janvi','2025-10-15 12:20:27','','0000-00-00 00:00:00'),(265785,'SUTRAPADA','GUJARAT','Y','reception','2025-10-15 13:23:34','','0000-00-00 00:00:00'),(265788,'LUNAGARA','GUJARAT','Y','manshi','2025-10-15 13:52:37','','0000-00-00 00:00:00'),(265790,'MANEKVADA','GUJARAT','Y','reception','2025-10-15 16:30:34','','0000-00-00 00:00:00'),(265792,'STARTOS HEALTH CARE','GUJARAT','Y','priyanshi','2025-10-15 16:42:37','','0000-00-00 00:00:00'),(265793,'INFIGA HEALTHCARE','GUJARAT','Y','priyanshi','2025-10-15 16:50:32','','0000-00-00 00:00:00'),(265796,'MANAVADAR','GUJARAT','Y','reception','2025-10-15 17:07:03','','0000-00-00 00:00:00'),(265822,'SAPAR ','GUJARAT','Y','reception','2025-10-15 18:29:34','','0000-00-00 00:00:00'),(265833,'KANGASIYADI','GUJARAT','Y','manshi','2025-10-15 18:40:21','','0000-00-00 00:00:00'),(265867,'VAKIYA','GUJARAT','Y','reception','2025-10-16 09:34:13','','0000-00-00 00:00:00'),(265874,'ANIYARI','GUJARAT','Y','reception','2025-10-16 10:24:03','','0000-00-00 00:00:00'),(265883,'SUTRRAPADA GIR SOMNATH','GUJARAT','Y','janvi','2025-10-16 10:48:08','','0000-00-00 00:00:00'),(265910,'WANKNER','GUJARAT','Y','reception','2025-10-16 11:45:05','','0000-00-00 00:00:00'),(265913,'LALPUR JAMNAGAR','GUJARAT','Y','drashti','2025-10-16 11:54:01','','0000-00-00 00:00:00'),(265924,'RIBDA','GUJARAT','Y','drashti','2025-10-16 12:27:28','','0000-00-00 00:00:00'),(266000,'MUNJAKA','GUJARAT','Y','janvi','2025-10-16 19:07:19','','0000-00-00 00:00:00'),(266018,'DHOLIYA','GUJARAT','Y','reception','2025-10-17 09:47:12','','0000-00-00 00:00:00'),(266019,'KANKOT','GUJARAT','Y','janvi','2025-10-17 09:48:41','','0000-00-00 00:00:00'),(266050,'BAGSRA','GUJARAT','Y','reception','2025-10-17 11:34:10','','0000-00-00 00:00:00'),(266067,'PUNNA','GUJARAT','Y','reception','2025-10-17 12:12:25','','0000-00-00 00:00:00'),(266084,'GANDHIDHAM','GUJARAT','Y','reception','2025-10-17 13:16:43','','0000-00-00 00:00:00'),(266088,'RANAKANDORANA PORBANDAR','GUJARAT','Y','shweta','2025-10-17 14:55:52','','0000-00-00 00:00:00'),(266090,'FURTH HEALTHCARE','GUJARAT','Y','reception','2025-10-17 16:37:17','','0000-00-00 00:00:00'),(266092,'ZYDUS HELTHCARE LIMITED','GUJARAT','Y','reception','2025-10-17 16:40:54','','0000-00-00 00:00:00'),(266103,'SHAPAR','GUJARAT','Y','manshi','2025-10-17 17:17:06','','0000-00-00 00:00:00'),(266105,'LATHI AMRELI','GUJARAT','Y','janvi','2025-10-17 17:24:37','','0000-00-00 00:00:00'),(266108,'UMRALI BHESAN','GUJARAT','Y','janvi','2025-10-17 17:31:22','','0000-00-00 00:00:00'),(266168,'KUVADVA','GUJARAT','Y','reception','2025-10-18 10:12:10','','0000-00-00 00:00:00'),(266190,'JAGNESHWAR','GUJARAT','Y','reception','2025-10-18 11:32:24','','0000-00-00 00:00:00'),(266194,'MANGOL','GUJARAT','Y','reception','2025-10-18 11:36:01','','0000-00-00 00:00:00'),(266200,'MALIYA','GUJARAT','Y','reception','2025-10-18 11:44:55','','0000-00-00 00:00:00'),(266208,'VANTHLI','GUJARAT','Y','reception','2025-10-18 12:02:43','','0000-00-00 00:00:00'),(266216,'VAVDI','GUJARAT','Y','reception','2025-10-18 12:45:16','','0000-00-00 00:00:00'),(266223,'KHAKHRA','GUJARAT','Y','reception','2025-10-18 13:51:49','','0000-00-00 00:00:00'),(266307,'KHARI','GUJARAT','Y','reception','2025-10-24 09:31:01','','0000-00-00 00:00:00'),(266310,'DHANDHANI RAJKOT','GUJARAT','Y','urvashi','2025-10-24 10:14:07','','0000-00-00 00:00:00'),(266320,'MALIYA HATINA','GUJARAT','Y','priyanshi','2025-10-24 11:31:21','','0000-00-00 00:00:00'),(266336,'DHANDHUSAR VANTHALI JUNAGADH','GUJARAT','Y','priyanshi','2025-10-24 12:06:31','','0000-00-00 00:00:00'),(266342,'BATVA JUNAGADH','GUJARAT','Y','drashti','2025-10-24 13:48:32','','0000-00-00 00:00:00'),(266396,'SAVARKUNDALA','GUJARAT','Y','reception','2025-10-25 09:56:14','','0000-00-00 00:00:00'),(266412,'MALASANA','GUJARAT','Y','reception','2025-10-25 11:23:02','','0000-00-00 00:00:00'),(266454,'BANGALORE','GUJARAT','Y','janvi','2025-10-25 19:05:32','','0000-00-00 00:00:00'),(266465,'KHAREDI','GUJARAT','Y','janvi','2025-10-27 09:18:25','','0000-00-00 00:00:00'),(266470,'PIPARLI','GUJARAT','Y','janvi','2025-10-27 10:02:05','','0000-00-00 00:00:00'),(266494,'JUNI KALAVDI','GUJARAT','Y','reception','2025-10-27 10:55:52','','0000-00-00 00:00:00'),(266564,'DEVDA','GUJARAT','Y','drashti','2025-10-27 16:22:22','','0000-00-00 00:00:00'),(266633,'HATINA MALIYA','GUJARAT','Y','reception','2025-10-28 09:29:30','','0000-00-00 00:00:00'),(266634,'MOTA DADVA','GUJARAT','Y','reception','2025-10-28 09:40:57','','0000-00-00 00:00:00'),(266671,'TODA','GUJARAT','Y','janvi','2025-10-28 11:51:20','','0000-00-00 00:00:00'),(266689,'JUNGADH','GUJARAT','Y','reception','2025-10-28 13:08:34','','0000-00-00 00:00:00'),(266710,'THANGADH','GUJARAT','Y','reception','2025-10-28 17:50:59','','0000-00-00 00:00:00'),(266769,'MOTA VADARA','GUJARAT','Y','reception','2025-10-29 10:21:52','','0000-00-00 00:00:00'),(266771,'SATAPAR','GUJARAT','Y','janvi','2025-10-29 10:24:44','','0000-00-00 00:00:00'),(266772,'CHAVANDI','GUJARAT','Y','janvi','2025-10-29 10:39:32','','0000-00-00 00:00:00'),(266780,'BHATIYA','GUJARAT','Y','reception','2025-10-29 10:57:10','','0000-00-00 00:00:00'),(266781,'HAMAPAR DHROL JAMNAGAR','GUJARAT','Y','drashti','2025-10-29 10:59:09','','0000-00-00 00:00:00'),(266788,'PADVALA','GUJARAT','Y','drashti','2025-10-29 11:14:09','','0000-00-00 00:00:00'),(266808,'BENGLORE','GUJARAT','Y','drashti','2025-10-29 12:01:00','','0000-00-00 00:00:00'),(266830,'AKOLVADI','GUJARAT','Y','reception','2025-10-29 17:09:31','','0000-00-00 00:00:00'),(266842,'DHAVA GIR','GUJARAT','Y','reception','2025-10-29 17:50:23','','0000-00-00 00:00:00'),(266907,'GHUSIYA','GUJARAT','Y','janvi','2025-10-30 11:17:59','','0000-00-00 00:00:00'),(266933,'BAGASRA','GUJARAT','Y','reception','2025-10-30 12:17:16','','0000-00-00 00:00:00'),(266940,'KHARVA','GUJARAT','Y','janvi','2025-10-30 12:47:43','','0000-00-00 00:00:00'),(266970,'MALIYASAN','GUJARAT','Y','reception','2025-10-30 18:02:39','','0000-00-00 00:00:00'),(266990,'ANANDPAR NAVAGAM','GUJARAT','Y','reception','2025-10-30 19:15:53','','0000-00-00 00:00:00'),(267047,'SAILA','GUJARAT','Y','reception','2025-10-31 11:45:08','','0000-00-00 00:00:00'),(267085,'GALIYADAR','GUJARAT','Y','reception','2025-10-31 14:24:15','','0000-00-00 00:00:00'),(267192,'PADDHRI','GUJARAT','Y','reception','2025-11-01 10:46:17','','0000-00-00 00:00:00'),(267205,'ADBALKA','GUJARAT','Y','janvi','2025-11-01 11:12:02','','0000-00-00 00:00:00'),(267208,'JETALSAR','GUJARAT','Y','reception','2025-11-01 11:12:27','','0000-00-00 00:00:00'),(267216,'HADVAD MORBI','GUJARAT','Y','drashti','2025-11-01 11:19:52','','0000-00-00 00:00:00'),(267225,'DOLASA','GUJARAT','Y','reception','2025-11-01 11:45:18','','0000-00-00 00:00:00'),(267247,'JODIYA','GUJARAT','Y','reception','2025-11-01 12:54:56','','0000-00-00 00:00:00'),(267307,'SARDHAR','GUJARAT','Y','reception','2025-11-03 10:59:35','','0000-00-00 00:00:00'),(267315,'LANDAN','GUJARAT','Y','reception','2025-11-03 11:15:38','','0000-00-00 00:00:00'),(267325,'KUKAVADIYA','GUJARAT','Y','reception','2025-11-03 11:36:05','','0000-00-00 00:00:00'),(267327,'MITHAPUR','GUJARAT','Y','reception','2025-11-03 11:53:42','','0000-00-00 00:00:00'),(267358,'VAJDI','GUJARAT','Y','reception','2025-11-03 16:27:17','','0000-00-00 00:00:00'),(267367,'OTALA','GUJARAT','Y','reception','2025-11-03 17:09:51','','0000-00-00 00:00:00'),(267424,'VADAL','GUJARAT','Y','reception','2025-11-04 10:19:33','','0000-00-00 00:00:00'),(267432,'PADADHARI','GUJARAT','Y','janvi','2025-11-04 10:56:49','','0000-00-00 00:00:00'),(267441,'VARUDI','GUJARAT','Y','janvi','2025-11-04 11:13:23','','0000-00-00 00:00:00'),(267484,'RANCHODGADH','GUJARAT','Y','reception','2025-11-04 17:44:23','','0000-00-00 00:00:00'),(267486,'RANCHHODGADH','GUJARAT','Y','reception','2025-11-04 17:45:09','','0000-00-00 00:00:00'),(267536,'BHADUYAD','GUJARAT','Y','reception','2025-11-05 10:49:57','','0000-00-00 00:00:00'),(267550,'METODA GIDC','GUJARAT','Y','janvi','2025-11-05 11:27:47','','0000-00-00 00:00:00'),(267553,'RATABHER','GUJARAT','Y','manshi','2025-11-05 11:31:31','','0000-00-00 00:00:00'),(267564,'HADVADH','GUJARAT','Y','janvi','2025-11-05 12:00:29','','0000-00-00 00:00:00'),(267669,'KESHODH','GUJARAT','Y','reception','2025-11-06 09:49:59','','0000-00-00 00:00:00'),(267696,'LADHI','GUJARAT','Y','reception','2025-11-06 11:54:54','','0000-00-00 00:00:00'),(267767,'JASAPAR','GUJARAT','Y','reception','2025-11-07 09:47:42','','0000-00-00 00:00:00'),(267777,'LAKHTAR','GUJARAT','Y','reception','2025-11-07 10:33:25','','0000-00-00 00:00:00'),(267794,'HADMTIYA','GUJARAT','Y','drashti','2025-11-07 11:31:52','','0000-00-00 00:00:00'),(267817,'DARI VERAVAL','GUJARAT','Y','reception','2025-11-07 13:50:06','','0000-00-00 00:00:00'),(267832,'LODHIKA RAJKOT','GUJARAT','Y','drashti','2025-11-07 17:04:54','','0000-00-00 00:00:00'),(267879,'KOTDA ','GUJARAT','Y','reception','2025-11-08 10:01:30','','0000-00-00 00:00:00'),(267881,'KUKAVAV','GUJARAT','Y','reception','2025-11-08 10:23:16','','0000-00-00 00:00:00'),(267934,'BANGLOR','GUJARAT','Y','reception','2025-11-08 13:34:43','','0000-00-00 00:00:00'),(267951,'PORBANADAR','GUJARAT','Y','janvi','2025-11-08 19:48:14','','0000-00-00 00:00:00'),(267954,'CHOTILA','GUJARAT','Y','reception','2025-11-09 11:50:56','','0000-00-00 00:00:00'),(267961,'MEGHPAR','GUJARAT','Y','janvi','2025-11-10 09:27:53','','0000-00-00 00:00:00'),(267987,'CHASIYA','GUJARAT','Y','manshi','2025-11-10 10:58:43','','0000-00-00 00:00:00'),(268001,'PANASDA','GUJARAT','Y','manshi','2025-11-10 11:43:58','','0000-00-00 00:00:00'),(268004,'ADEPAR','GUJARAT','Y','reception','2025-11-10 11:52:41','','0000-00-00 00:00:00'),(268005,'MULI','GUJARAT','Y','manshi','2025-11-10 11:54:58','','0000-00-00 00:00:00'),(268066,'KHERDIYA','GUJARAT','Y','drashti','2025-11-10 19:48:40','','0000-00-00 00:00:00'),(268122,'HARIPAR','GUJARAT','Y','reception','2025-11-11 11:43:02','','0000-00-00 00:00:00'),(268123,'KOTHARIYA','GUJARAT','Y','reception','2025-11-11 11:45:52','','0000-00-00 00:00:00'),(268151,'RAJPARA','GUJARAT','Y','janvi','2025-11-11 14:09:49','','0000-00-00 00:00:00'),(268232,'VIRPAR','GUJARAT','Y','reception','2025-11-12 11:00:03','','0000-00-00 00:00:00'),(268242,'SIDSAR JAMNAGAR','GUJARAT','Y','shweta','2025-11-12 11:20:12','','0000-00-00 00:00:00'),(268275,'PANDATHIRATH','GUJARAT','Y','reception','2025-11-12 16:01:17','','0000-00-00 00:00:00'),(268391,'KALAVAD ROAD','GUJARAT','Y','reception','2025-11-13 10:48:22','','0000-00-00 00:00:00'),(268411,'BAMANBOR','GUJARAT','Y','janvi','2025-11-13 11:27:56','','0000-00-00 00:00:00'),(268430,'MADHDA','GUJARAT','Y','priyanshi','2025-11-13 12:34:01','','0000-00-00 00:00:00'),(268457,'MANDOL','GUJARAT','Y','reception','2025-11-13 17:49:09','','0000-00-00 00:00:00'),(268468,'THAN','GUJARAT','Y','reception','2025-11-14 09:51:04','','0000-00-00 00:00:00'),(268476,'JAM KHAMBHARIYA','GUJARAT','Y','reception','2025-11-14 10:34:27','','0000-00-00 00:00:00'),(268525,'OKHA','GUJARAT','Y','reception','2025-11-14 16:26:03','','0000-00-00 00:00:00'),(268585,'MENDARDA','GUJARAT','Y','reception','2025-11-15 09:50:39','','0000-00-00 00:00:00'),(268601,'JAMJODHAPUR','GUJARAT','Y','reception','2025-11-15 10:48:56','','0000-00-00 00:00:00'),(268608,'ATKOT','GUJARAT','Y','reception','2025-11-15 11:25:40','','0000-00-00 00:00:00'),(268620,'ADIPUR KUTCH','GUJARAT','Y','reception','2025-11-15 12:00:13','','0000-00-00 00:00:00'),(268678,'TANKARA MORBI','GUJARAT','Y','shweta','2025-11-17 11:02:39','','0000-00-00 00:00:00'),(268680,'KHAMBHARA','GUJARAT','Y','reception','2025-11-17 11:15:51','','0000-00-00 00:00:00'),(268691,'WANAKBARA ','GUJARAT','Y','reception','2025-11-17 11:38:30','','0000-00-00 00:00:00'),(268700,'HAIDRABAD','GUJARAT','Y','drashti','2025-11-17 12:09:56','','0000-00-00 00:00:00'),(268725,'BAJRANGPUR','GUJARAT','Y','manshi','2025-11-17 17:23:10','','0000-00-00 00:00:00'),(268749,'KESOD','GUJARAT','Y','reception','2025-11-18 10:05:34','','0000-00-00 00:00:00'),(268781,'VAUNDRA','GUJARAT','Y','reception','2025-11-18 12:42:21','','0000-00-00 00:00:00'),(268789,'DHORI','GUJARAT','Y','reception','2025-11-18 16:25:28','','0000-00-00 00:00:00'),(268793,'SHOKDA','GUJARAT','Y','reception','2025-11-18 17:00:33','','0000-00-00 00:00:00'),(268795,'BHACHU','GUJARAT','Y','reception','2025-11-18 17:05:18','','0000-00-00 00:00:00'),(268819,'KHIRASARA','GUJARAT','Y','urvashi','2025-11-19 10:13:02','','0000-00-00 00:00:00'),(268844,'PRBANDAR','GUJARAT','Y','reception','2025-11-19 11:28:59','','0000-00-00 00:00:00'),(268899,'VAJDIGADH','GUJARAT','Y','reception','2025-11-19 17:25:03','','0000-00-00 00:00:00'),(268905,'HADIYANA','GUJARAT','Y','urvashi','2025-11-19 17:36:41','','0000-00-00 00:00:00'),(268970,'PANELI','GUJARAT','Y','drashti','2025-11-20 10:19:44','','0000-00-00 00:00:00'),(268974,'PITHADIYA','GUJARAT','Y','reception','2025-11-20 10:37:47','','0000-00-00 00:00:00'),(268980,'NEKNAM','GUJARAT','Y','janvi','2025-11-20 10:54:58','','0000-00-00 00:00:00'),(269120,'PATIDAL','GUJARAT','Y','urvashi','2025-11-21 12:11:21','','0000-00-00 00:00:00'),(269140,'MEDIMOUNT PHARMA','GUJARAT','Y','priyanshi','2025-11-21 16:47:50','','0000-00-00 00:00:00'),(269181,'KEVADRA KESHOD','GUJARAT','Y','priyanshi','2025-11-22 09:23:09','','0000-00-00 00:00:00'),(269193,'TARSAI JAMNAGAR','GUJARAT','Y','priyanshi','2025-11-22 10:39:37','','0000-00-00 00:00:00'),(269196,'MANGROL SOMNATH','GUJARAT','Y','priyanshi','2025-11-22 10:57:03','','0000-00-00 00:00:00'),(269214,'DUNGARKA PADADHARI','GUJARAT','Y','priyanshi','2025-11-22 11:54:51','','0000-00-00 00:00:00'),(269266,'BHADRAVADI','GUJARAT','Y','reception','2025-11-24 10:14:38','','0000-00-00 00:00:00'),(269293,'AMRAPUR','GUJARAT','Y','reception','2025-11-24 11:23:30','','0000-00-00 00:00:00'),(269298,'SOMATH','GUJARAT','Y','reception','2025-11-24 11:28:53','','0000-00-00 00:00:00'),(269417,'DADIYA','GUJARAT','Y','janvi','2025-11-25 11:14:04','','0000-00-00 00:00:00'),(269428,'VASAVAD','GUJARAT','Y','reception','2025-11-25 11:41:05','','0000-00-00 00:00:00'),(269531,'MADHUPUR ','GUJARAT','Y','reception','2025-11-26 10:55:22','','0000-00-00 00:00:00'),(269533,'VANPARI','GUJARAT','Y','reception','2025-11-26 11:01:41','','0000-00-00 00:00:00'),(269630,'GADHADA','GUJARAT','Y','reception','2025-11-27 09:53:29','','0000-00-00 00:00:00'),(269660,'BHAYAVADAR','GUJARAT','Y','reception','2025-11-27 11:16:55','','0000-00-00 00:00:00'),(269664,'LATIPAR','GUJARAT','Y','reception','2025-11-27 11:28:26','','0000-00-00 00:00:00'),(269670,'BHATIYA DWARKA','GUJARAT','Y','priyanshi','2025-11-27 12:02:46','','0000-00-00 00:00:00'),(269672,'MORBI ROAD','GUJARAT','Y','reception','2025-11-27 12:18:32','','0000-00-00 00:00:00'),(269715,'KHIRSRA','GUJARAT','Y','reception','2025-11-27 18:17:05','','0000-00-00 00:00:00'),(269757,'SAPAR VERAVAL','GUJARAT','Y','drashti','2025-11-28 10:15:29','','0000-00-00 00:00:00'),(269791,'KHAKHICHARIYA','GUJARAT','Y','reception','2025-11-28 11:34:11','','0000-00-00 00:00:00'),(269795,'MATEL','GUJARAT','Y','janvi','2025-11-28 11:38:21','','0000-00-00 00:00:00'),(269854,'GONADAL','GUJARAT','Y','reception','2025-11-28 18:11:22','','0000-00-00 00:00:00'),(269908,'HAMIRPAR','GUJARAT','Y','janvi','2025-11-29 10:57:25','','0000-00-00 00:00:00'),(269932,'DEVGAM','GUJARAT','Y','reception','2025-11-29 12:16:35','','0000-00-00 00:00:00'),(269988,'MANVADAR','GUJARAT','Y','reception','2025-12-01 10:15:12','','0000-00-00 00:00:00'),(269997,'TRAMBA RAJKOT','GUJARAT','Y','janvi','2025-12-01 10:41:27','','0000-00-00 00:00:00'),(270009,'DANGARVAD','GUJARAT','Y','reception','2025-12-01 11:04:13','','0000-00-00 00:00:00'),(270052,'KOTADA SANGANI','GUJARAT','Y','reception','2025-12-01 13:00:16','','0000-00-00 00:00:00'),(270061,'KANKAVATI','GUJARAT','Y','reception','2025-12-01 14:32:42','','0000-00-00 00:00:00'),(270183,'ADMANTA','GUJARAT','Y','reception','2025-12-02 11:49:36','','0000-00-00 00:00:00'),(270192,'BEDI RAJKOT','GUJARAT','Y','reception','2025-12-02 12:13:12','','0000-00-00 00:00:00'),(270244,'RATANPAR','GUJARAT','Y','reception','2025-12-02 18:18:42','','0000-00-00 00:00:00'),(270337,'RELNAGAR','GUJARAT','Y','reception','2025-12-03 13:21:43','','0000-00-00 00:00:00'),(270351,'AATKOT','GUJARAT','Y','reception','2025-12-03 16:37:32','','0000-00-00 00:00:00'),(270431,'DHANTESWAR','GUJARAT','Y','reception','2025-12-04 10:56:20','','0000-00-00 00:00:00'),(270550,'NANA MOVA','GUJARAT','Y','reception','2025-12-05 10:44:55','','0000-00-00 00:00:00'),(270619,'JILARIYA','GUJARAT','Y','reception','2025-12-08 09:48:12','','0000-00-00 00:00:00'),(270628,'VERADA','GUJARAT','Y','janvi','2025-12-08 10:12:20','','0000-00-00 00:00:00'),(270635,'FALLA','GUJARAT','Y','manshi','2025-12-08 10:41:52','','0000-00-00 00:00:00'),(270667,'BATVA','GUJARAT','Y','reception','2025-12-08 11:30:38','','0000-00-00 00:00:00'),(270690,'METOTA','GUJARAT','Y','reception','2025-12-08 11:58:03','','0000-00-00 00:00:00'),(270716,'MAKHAKAROD','GUJARAT','Y','manshi','2025-12-08 13:17:55','','0000-00-00 00:00:00'),(270763,'RAMALIYA','GUJARAT','Y','reception','2025-12-08 18:21:26','','0000-00-00 00:00:00'),(270804,'CHORVAD','GUJARAT','Y','reception','2025-12-09 10:05:50','','0000-00-00 00:00:00'),(270812,'VADARI','GUJARAT','Y','reception','2025-12-09 10:19:06','','0000-00-00 00:00:00'),(270826,'NALIYAD','GUJARAT','Y','reception','2025-12-09 10:52:49','','0000-00-00 00:00:00'),(270845,'GIR SOMATH','GUJARAT','Y','reception','2025-12-09 11:56:42','','0000-00-00 00:00:00'),(270938,'BHINDORA','GUJARAT','Y','manshi','2025-12-10 10:11:00','','0000-00-00 00:00:00'),(271129,'SATAPAR JAMNAGAR','GUJARAT','Y','drashti','2025-12-11 16:45:01','','0000-00-00 00:00:00'),(271228,'KHOTARIYA','GUJARAT','Y','reception','2025-12-12 16:23:45','','0000-00-00 00:00:00'),(271321,'SHAPAR VERAVAR','GUJARAT','Y','reception','2025-12-13 10:34:23','','0000-00-00 00:00:00'),(271459,'RANAVAV','GUJARAT','Y','shweta','2025-12-15 11:27:43','','0000-00-00 00:00:00'),(271474,'DARI','GUJARAT','Y','reception','2025-12-15 11:47:17','','0000-00-00 00:00:00'),(271493,'KHAMBHALA','GUJARAT','Y','urvashi','2025-12-15 12:08:29','','0000-00-00 00:00:00'),(271525,'VASAVADAR','GUJARAT','Y','urvashi','2025-12-15 17:20:18','','0000-00-00 00:00:00'),(271590,'NYARA','GUJARAT','Y','janvi','2025-12-16 10:02:05','','0000-00-00 00:00:00'),(271600,'SAJANPAR','GUJARAT','Y','reception','2025-12-16 10:28:15','','0000-00-00 00:00:00'),(271657,'SAILA SURENDRANAGAR','GUJARAT','Y','reception','2025-12-16 16:20:07','','0000-00-00 00:00:00'),(271709,'CHITRAVAD','GUJARAT','Y','reception','2025-12-17 09:50:05','','0000-00-00 00:00:00'),(271716,'KHAKHIJARIYA','GUJARAT','Y','reception','2025-12-17 10:16:46','','0000-00-00 00:00:00'),(271726,'DHROL JAMNAGAR','GUJARAT','Y','priyanshi','2025-12-17 10:55:54','','0000-00-00 00:00:00'),(271742,'NEKNAM TANKARA','GUJARAT','Y','priyanshi','2025-12-17 11:29:54','','0000-00-00 00:00:00'),(271768,'VAVDI RAJKOT','GUJARAT','Y','reception','2025-12-17 16:48:00','','0000-00-00 00:00:00'),(271784,'BEDI MORBI ROAD','GUJARAT','Y','reception','2025-12-17 17:48:59','','0000-00-00 00:00:00'),(271872,'MEGHAPAR','GUJARAT','Y','reception','2025-12-18 11:27:19','','0000-00-00 00:00:00'),(271900,'JODIYA JAMNAGAR','GUJARAT','Y','priyanshi','2025-12-18 16:23:35','','0000-00-00 00:00:00'),(272025,'JAMDADAR','GUJARAT','Y','reception','2025-12-19 11:58:15','','0000-00-00 00:00:00'),(272034,'SOMNATH VERAVAL','GUJARAT','Y','drashti','2025-12-19 12:41:58','','0000-00-00 00:00:00'),(272044,'RAFADESWAR MORBI','GUJARAT','Y','reception','2025-12-19 16:30:10','','0000-00-00 00:00:00'),(272069,'NESDA','GUJARAT','Y','reception','2025-12-19 17:49:01','','0000-00-00 00:00:00'),(272213,'MADHAPAR ','GUJARAT','Y','reception','2025-12-22 11:02:49','','0000-00-00 00:00:00'),(272218,'BHANDARIYA','GUJARAT','Y','reception','2025-12-22 11:10:23','','0000-00-00 00:00:00'),(272223,'NANDER','GUJARAT','Y','reception','2025-12-22 11:18:11','','0000-00-00 00:00:00'),(272254,'KHIJADIYA','GUJARAT','Y','priyanshi','2025-12-22 13:26:02','','0000-00-00 00:00:00'),(272403,'CHANDRAWADA DWARKA','GUJARAT','Y','janvi','2025-12-23 12:11:54','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `city_and_state_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cln_mast`
--

DROP TABLE IF EXISTS `cln_mast`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cln_mast` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `Cln_Name` varchar(150) NOT NULL,
  `Cln_Guj_Name` varchar(100) CHARACTER SET utf8 NOT NULL,
  `Cln_Subtitle` varchar(40) NOT NULL,
  `Cln_Add1` varchar(100) NOT NULL,
  `Cln_Add2` varchar(50) NOT NULL,
  `Cln_City` varchar(15) NOT NULL,
  `Cln_Pin` int(11) NOT NULL,
  `Cln_State` varchar(15) NOT NULL,
  `Cln_Country` varchar(15) NOT NULL,
  `Cln_Tel1` varchar(12) NOT NULL,
  `Cln_Tel2` varchar(12) NOT NULL,
  `Cln_Email` varchar(30) NOT NULL,
  `Cln_Sp` varchar(15) NOT NULL,
  `Cln_GSTIN_No` varchar(50) NOT NULL,
  `CLN_CIN` varchar(50) NOT NULL,
  `Cln_DL_No` varchar(50) NOT NULL,
  `Cln_Logo` varchar(100) NOT NULL,
  `folder_flag` enum('Y','N') NOT NULL DEFAULT 'Y',
  `mic_language` varchar(10) NOT NULL,
  PRIMARY KEY (`Cln_Name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Store Clinic''s Information. Will contain mostly one record';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cln_mast`
--

LOCK TABLES `cln_mast` WRITE;
/*!40000 ALTER TABLE `cln_mast` DISABLE KEYS */;
INSERT INTO `cln_mast` VALUES (0,0,'Genesis Multispeciality Hospital','Genesis Multispeciality Hospital','','opp.nakshatra-7,chandan park main road,','raiya road,','Rajkot',360007,'GUJARAT','INDIA','7574000509','','genesishospital.rajkot@gmail.c','','','','Enter DL No hear','./../../thims2_genesis007/hospital/logo/Logo.jpeg','Y','gu-IN');
/*!40000 ALTER TABLE `cln_mast` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cln_setup`
--

DROP TABLE IF EXISTS `cln_setup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cln_setup` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `Cln_code` varchar(5) NOT NULL,
  `Cln_rc1_page_size` varchar(2) NOT NULL,
  `Cln_rc1_page_type` varchar(10) NOT NULL,
  `Cln_rc1_page_orientation` varchar(10) NOT NULL,
  `Cln_rc1_page_tray` varchar(1) NOT NULL,
  `Cln_rc1_TM` float NOT NULL,
  `Cln_rc1_BM` float NOT NULL,
  `Cln_rc1_LM` float NOT NULL,
  `Cln_rc1_RM` float NOT NULL,
  `Cln_rc2_page_size` varchar(2) NOT NULL,
  `Cln_rc2_page_type` varchar(10) NOT NULL,
  `Cln_rc2_page_orientation` varchar(10) NOT NULL,
  `Cln_rc2_page_tray` varchar(1) NOT NULL,
  `Cln_rc2_TM` float NOT NULL,
  `Cln_rc2_BM` float NOT NULL,
  `Cln_rc2_LM` float NOT NULL,
  `Cln_rc2_RM` float NOT NULL,
  `Cln_rc3_page_size` varchar(2) NOT NULL,
  `Cln_rc3_page_type` varchar(10) NOT NULL,
  `Cln_rc3_page_orientation` varchar(10) NOT NULL,
  `Cln_rc3_page_tray` varchar(1) NOT NULL,
  `Cln_rc3_TM` float NOT NULL,
  `Cln_rc3_BM` float NOT NULL,
  `Cln_rc3_LM` float NOT NULL,
  `Cln_rc3_RM` float NOT NULL,
  `Cln_rc4_page_size` varchar(2) NOT NULL,
  `Cln_rc4_page_type` varchar(10) NOT NULL,
  `Cln_rc4_page_orientation` varchar(10) NOT NULL,
  `Cln_rc4_page_tray` varchar(1) NOT NULL,
  `Cln_rc4_TM` float NOT NULL,
  `Cln_rc4_BM` float NOT NULL,
  `Cln_rc4_LM` float NOT NULL,
  `Cln_rc4_RM` float NOT NULL,
  `Cln_rc5_page_size` varchar(12) NOT NULL,
  `Cln_rc5_page_type` varchar(10) NOT NULL,
  `Cln_rc5_page_orientation` varchar(10) NOT NULL,
  `Cln_rc5_page_tray` varchar(1) NOT NULL,
  `Cln_rc5_TM` float NOT NULL,
  `Cln_rc5_BM` float NOT NULL,
  `Cln_rc5_LM` float NOT NULL,
  `Cln_rc5_RM` float NOT NULL,
  `Cln_rc6_page_size` varchar(12) NOT NULL,
  `Cln_rc6_page_type` varchar(10) NOT NULL,
  `Cln_rc6_page_orientation` varchar(10) NOT NULL,
  `Cln_rc6_page_tray` varchar(1) NOT NULL,
  `Cln_rc6_TM` float NOT NULL,
  `Cln_rc6_BM` float NOT NULL,
  `Cln_rc6_LM` float NOT NULL,
  `Cln_rc6_RM` float NOT NULL,
  `Cln_dr_sign_alignment` char(1) NOT NULL,
  `Cln_receipt_l_srno` int(11) NOT NULL,
  `Cln_Bill_No` int(11) NOT NULL,
  `Cln_ds_l_srno` int(11) NOT NULL,
  `cln_prefix_ipd` varchar(1) NOT NULL,
  `Cln_report3_l_srno` varchar(2) NOT NULL,
  `Cln_Logo` varchar(255) NOT NULL,
  `Cln_cer_page_size` varchar(2) NOT NULL,
  `Cln_cer_page_type` varchar(10) NOT NULL,
  `Cln_cer_page_orientation` varchar(10) NOT NULL,
  `Cln_cer_page_tray` varchar(1) NOT NULL,
  `Cln_cer_TM` float NOT NULL,
  `Cln_cer_BM` float NOT NULL,
  `Cln_cer_LM` float NOT NULL,
  `Cln_cer_RM` float NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`Cln_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cln_setup`
--

LOCK TABLES `cln_setup` WRITE;
/*!40000 ALTER TABLE `cln_setup` DISABLE KEYS */;
INSERT INTO `cln_setup` VALUES (0,0,'001','A4','Preprinted','Portrait','1',1.3,1,1,0.5,'A4','Preprinted','Portrait','1',1.3,1,0.5,0.5,'A4','Normal','Portrait','1',1.6,3,1.5,1,'A5','Preprinted','Portrait','1',-0.3,-0.3,0.5,0.5,'A4','Normal','Portrait','2',0.2,0.5,0.25,0.25,'A4','Normal','Portrait','1',0.3,1,1.1,0.5,'R',12,12,0,'','','../../care4akd_sarthi081/hospital/logo/Logo.jpg','A5','Normal','Landscape','2',12,12,12,12);
/*!40000 ALTER TABLE `cln_setup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `consultant_level`
--

DROP TABLE IF EXISTS `consultant_level`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `consultant_level` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `Description` varchar(40) NOT NULL,
  `hierarchy_level` char(3) NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime 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 `consultant_level`
--

LOCK TABLES `consultant_level` WRITE;
/*!40000 ALTER TABLE `consultant_level` DISABLE KEYS */;
INSERT INTO `consultant_level` VALUES (1,0,0,'Specialist Consultant','L02','thims','2018-07-19 00:00:00','','0000-00-00 00:00:00'),(2,0,0,'Senior Consultant','L03','thims','2018-07-19 00:00:00','','0000-00-00 00:00:00'),(3,0,0,'Super Specialist Consultant','L04','thims','2018-07-19 00:00:00','','0000-00-00 00:00:00'),(4,0,0,'Dentist','L05','thims','2018-09-18 03:00:00','','0000-00-00 00:00:00'),(5,0,0,'Dietician','L06','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(6,0,0,'Physiotherapy','L07','thims','2018-09-18 00:00:00','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `consultant_level` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `conversionfactor_update_request`
--

DROP TABLE IF EXISTS `conversionfactor_update_request`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `conversionfactor_update_request` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL COMMENT 'product_master - product_id',
  `category_id` tinyint(4) NOT NULL,
  `purchase_uom` tinyint(4) NOT NULL,
  `stock_uom` tinyint(4) NOT NULL,
  `revised_purchase_uom` tinyint(4) NOT NULL,
  `revised_stock_uom` tinyint(4) NOT NULL,
  `conversion_factor` tinyint(4) NOT NULL,
  `revised_conversion_factor` tinyint(4) NOT NULL,
  `last_purchase_voucher` int(11) DEFAULT NULL,
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(20) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `conversionfactor_update_request`
--

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

--
-- Table structure for table `country`
--

DROP TABLE IF EXISTS `country`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `country` (
  `iso2` char(2) NOT NULL,
  `name` varchar(45) NOT NULL,
  `iso3` char(3) NOT NULL,
  `numeric` smallint(5) unsigned NOT NULL,
  `code` varchar(10) NOT NULL,
  `contact_num_maxlength` bigint(20) NOT NULL COMMENT 'this is for contry wise mobile number validation ',
  PRIMARY KEY (`iso2`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `country`
--

LOCK TABLES `country` WRITE;
/*!40000 ALTER TABLE `country` DISABLE KEYS */;
INSERT INTO `country` VALUES ('AD','Andorra','AND',20,'+376',0),('AE','United Arab Emirates','ARE',784,'+971',0),('AF','Afghanistan','AFG',4,'+93',0),('AG','Antigua and Barbuda','ATG',28,'+1-268',0),('AI','Anguilla','AIA',660,'+1-264',0),('AL','Albania','ALB',8,'+355',0),('AM','Armenia','ARM',51,'+374',0),('AO','Angola','AGO',24,'+244',0),('AQ','Antarctica','ATA',10,'+672',0),('AR','Argentina','ARG',32,'+54',0),('AS','American Samoa','ASM',16,'+1-684',0),('AT','Austria','AUT',40,'+43',0),('AU','Australia','AUS',36,'+61',0),('AW','Aruba','ABW',533,'+297',0),('AX','?land Islands','ALA',248,'',0),('AZ','Azerbaijan','AZE',31,'+994',0),('BA','Bosnia and Herzegovina','BIH',70,'+387',0),('BB','Barbados','BRB',52,'+1-246',0),('BD','Bangladesh','BGD',50,'+880',0),('BE','Belgium','BEL',56,'+32',0),('BF','Burkina Faso','BFA',854,'+226',0),('BG','Bulgaria','BGR',100,'+359',0),('BH','Bahrain','BHR',48,'+973',0),('BI','Burundi','BDI',108,'+257',0),('BJ','Benin','BEN',204,'+229',0),('BL','Saint Barth?lemy','BLM',652,'',0),('BM','Bermuda','BMU',60,'+1-441',0),('BN','Brunei Darussalam','BRN',96,'+673',0),('BO','Bolivia','BOL',68,'+591',0),('BQ','Bonaire, Sint Eustatius and Saba','BES',535,'',0),('BR','Brazil','BRA',76,'+55',0),('BS','Bahamas','BHS',44,'+1-242',0),('BT','Bhutan','BTN',64,'+975',0),('BV','Bouvet Island','BVT',74,'',0),('BW','Botswana','BWA',72,'+267',0),('BY','Belarus','BLR',112,'+375',0),('BZ','Belize','BLZ',84,'+501',0),('CA','Canada','CAN',124,'+1',0),('CC','Cocos (Keeling) Islands','CCK',166,'+61',0),('CD','Congo, the Democratic Republic of the','COD',180,'+243',0),('CF','Central African Republic','CAF',140,'+236',0),('CG','Congo','COG',178,'+242',0),('CH','Switzerland','CHE',756,'+41',0),('CI','Cote D\'Ivoire','CIV',384,'+225',0),('CK','Cook Islands','COK',184,'+682',0),('CL','Chile','CHL',152,'+56',0),('CM','Cameroon','CMR',120,'+237',0),('CN','China','CHN',156,'+86',0),('CO','Colombia','COL',170,'+57',0),('CR','Costa Rica','CRI',188,'+506',0),('CU','Cuba','CUB',192,'+53',0),('CV','Cape Verde','CPV',132,'+238',0),('CW','Cura?ao','CUW',531,'',0),('CX','Christmas Island','CXR',162,'+53',0),('CY','Cyprus','CYP',196,'+357',0),('CZ','Czech Republic','CZE',203,'+420',0),('DE','Germany','DEU',276,'+49',0),('DJ','Djibouti','DJI',262,'+253',0),('DK','Denmark','DNK',208,'+45',0),('DM','Dominica','DMA',212,'+1-767',0),('DO','Dominican Republic','DOM',214,'+1-809 and',0),('DZ','Algeria','DZA',12,'+213',0),('EC','Ecuador','ECU',218,'+593 ',0),('EE','Estonia','EST',233,'+372',0),('EG','Egypt','EGY',818,'+20',0),('EH','Western Sahara','ESH',732,'',0),('ER','Eritrea','ERI',232,'+291',0),('ES','Spain','ESP',724,'+34',0),('ET','Ethiopia','ETH',231,'+251',0),('FI','Finland','FIN',246,'+358',0),('FJ','Fiji','FJI',242,'+679',0),('FK','Falkland Islands (Malvinas)','FLK',238,'+500',0),('FM','Micronesia, Federated States of','FSM',583,'+691',0),('FO','Faroe Islands','FRO',234,'+298',0),('FR','France','FRA',250,'+33',0),('GA','Gabon','GAB',266,'+241',0),('GB','United Kingdom','GBR',826,'',0),('GD','Grenada','GRD',308,'+1-473',0),('GE','Georgia','GEO',268,'+995',0),('GF','French Guiana','GUF',254,'+594',0),('GG','Guernsey','GGY',831,'',0),('GH','Ghana','GHA',288,'+233',0),('GI','Gibraltar','GIB',292,'+350',0),('GL','Greenland','GRL',304,'+299',0),('GM','Gambia','GMB',270,'+220',0),('GN','Guinea','GIN',324,'+224',0),('GP','Guadeloupe','GLP',312,'+590',0),('GQ','Equatorial Guinea','GNQ',226,'+240',0),('GR','Greece','GRC',300,'+30',0),('GS','South Georgia and the South Sandwich Islands','SGS',239,'',0),('GT','Guatemala','GTM',320,'+502',0),('GU','Guam','GUM',316,'+1-671',0),('GW','Guinea-Bissau','GNB',624,'+245',0),('GY','Guyana','GUY',328,'+592',0),('HK','Hong Kong','HKG',344,'+852',0),('HM','Heard Island and Mcdonald Islands','HMD',334,'',0),('HN','Honduras','HND',340,'+504',0),('HR','Croatia','HRV',191,'+385',0),('HT','Haiti','HTI',332,'+509',0),('HU','Hungary','HUN',348,'+36',0),('ID','Indonesia','IDN',360,'+62',0),('IE','Ireland','IRL',372,'+353',0),('IL','Israel','ISR',376,'+972',0),('IM','Isle of Man','IMN',833,'',0),('IN','India','IND',356,'+91',0),('IO','British Indian Ocean Territory','IOT',86,'',0),('IQ','Iraq','IRQ',368,'+964',0),('IR','Iran, Islamic Republic of','IRN',364,'+98',0),('IS','Iceland','ISL',352,'+354',0),('IT','Italy','ITA',380,'+39',0),('JE','Jersey','JEY',832,'',0),('JM','Jamaica','JAM',388,'+1-876',0),('JO','Jordan','JOR',400,'+962',0),('JP','Japan','JPN',392,'+81',0),('KE','Kenya','KEN',404,'+254',0),('KG','Kyrgyzstan','KGZ',417,'+996',0),('KH','Cambodia','KHM',116,'+855',0),('KI','Kiribati','KIR',296,'+686',0),('KM','Comoros','COM',174,'+269',0),('KN','Saint Kitts and Nevis','KNA',659,'+1-869',0),('KP','Korea, Democratic People\'s Republic of','PRK',408,'+850',0),('KR','Korea, Republic of','KOR',410,'+82',0),('KW','Kuwait','KWT',414,'+965',0),('KY','Cayman Islands','CYM',136,'+1-345',0),('KZ','Kazakhstan','KAZ',398,'+7',0),('LA','Lao People\'s Democratic Republic','LAO',418,'+856',0),('LB','Lebanon','LBN',422,'+961',0),('LC','Saint Lucia','LCA',662,'+1-758',0),('LI','Liechtenstein','LIE',438,'+423',0),('LK','Sri Lanka','LKA',144,'+94',0),('LR','Liberia','LBR',430,'+231',0),('LS','Lesotho','LSO',426,'+266',0),('LT','Lithuania','LTU',440,'+370',0),('LU','Luxembourg','LUX',442,'+352',0),('LV','Latvia','LVA',428,'+371',0),('LY','Libya','LBY',434,'+218',0),('MA','Morocco','MAR',504,'+212',0),('MC','Monaco','MCO',492,'+377',0),('MD','Moldova, Republic of','MDA',498,'+373',0),('ME','Montenegro','MNE',499,'',0),('MF','Saint Martin (French part)','MAF',663,'',0),('MG','Madagascar','MDG',450,'+261',0),('MH','Marshall Islands','MHL',584,'+692',0),('MK','Macedonia, the Former Yugoslav Republic of','MKD',807,'+389',0),('ML','Mali','MLI',466,'+223',0),('MM','Myanmar','MMR',104,'+95',0),('MN','Mongolia','MNG',496,'+976',0),('MO','Macao','MAC',446,'+853',0),('MP','Northern Mariana Islands','MNP',580,'+1-670',0),('MQ','Martinique','MTQ',474,'+596',0),('MR','Mauritania','MRT',478,'+222',0),('MS','Montserrat','MSR',500,'+1-664',0),('MT','Malta','MLT',470,'+356',0),('MU','Mauritius','MUS',480,'+230',0),('MV','Maldives','MDV',462,'+960',0),('MW','Malawi','MWI',454,'+265',0),('MX','Mexico','MEX',484,'+52',0),('MY','Malaysia','MYS',458,'+60',0),('MZ','Mozambique','MOZ',508,'+258',0),('NA','Namibia','NAM',516,'+264',0),('NC','New Caledonia','NCL',540,'+687',0),('NE','Niger','NER',562,'+227',0),('NF','Norfolk Island','NFK',574,'+672',0),('NG','Nigeria','NGA',566,'+234',0),('NI','Nicaragua','NIC',558,'+505',0),('NL','Netherlands','NLD',528,'+31',0),('NO','Norway','NOR',578,'+47',0),('NP','Nepal','NPL',524,'+977',0),('NR','Nauru','NRU',520,'+674',0),('NU','Niue','NIU',570,'+683',0),('NZ','New Zealand','NZL',554,'+64',0),('OM','Oman','OMN',512,'+968',0),('PA','Panama','PAN',591,'+507',0),('PE','Peru','PER',604,'+51',0),('PF','French Polynesia','PYF',258,'+689',0),('PG','Papua New Guinea','PNG',598,'+675',0),('PH','Philippines','PHL',608,'+63',0),('PK','Pakistan','PAK',586,'+92',0),('PL','Poland','POL',616,'+48',0),('PM','Saint Pierre and Miquelon','SPM',666,'+508',0),('PN','Pitcairn','PCN',612,'',0),('PR','Puerto Rico','PRI',630,'+1-787 or ',0),('PS','Palestine, State of','PSE',275,'+970',0),('PT','Portugal','PRT',620,'+351',0),('PW','Palau','PLW',585,'+680',0),('PY','Paraguay','PRY',600,'+595',0),('QA','Qatar','QAT',634,'+974 ',0),('RE','Reunion','REU',638,'+262',0),('RO','Romania','ROM',642,'+40',0),('RS','Serbia','SRB',688,'',0),('RU','Russian Federation','RUS',643,'+7',0),('RW','Rwanda','RWA',646,'+250',0),('SA','Saudi Arabia','SAU',682,'+966',0),('SB','Solomon Islands','SLB',90,'+677',0),('SC','Seychelles','SYC',690,'+248',0),('SD','Sudan','SDN',736,'+249',0),('SE','Sweden','SWE',752,'+46',0),('SG','Singapore','SGP',702,'+65',0),('SH','Saint Helena, Ascension and Tristan da Cunha','SHN',654,'+290',0),('SI','Slovenia','SVN',705,'+386',0),('SJ','Svalbard and Jan Mayen','SJM',744,'',0),('SK','Slovakia','SVK',703,'+421',0),('SL','Sierra Leone','SLE',694,'+232',0),('SM','San Marino','SMR',674,'+378',0),('SN','Senegal','SEN',686,'+221',0),('SO','Somalia','SOM',706,'+252',0),('SR','Suriname','SUR',740,'+597',0),('SS','South Sudan','SSD',728,'',0),('ST','Sao Tome and Principe','STP',678,'+239',0),('SV','El Salvador','SLV',222,'+503',0),('SX','Sint Maarten (Dutch part)','SXM',534,'',0),('SY','Syrian Arab Republic','SYR',760,'+963',0),('SZ','Swaziland','SWZ',748,'+268',0),('TC','Turks and Caicos Islands','TCA',796,'+1-649',0),('TD','Chad','TCD',148,'+235',0),('TF','French Southern Territories','ATF',260,'',0),('TG','Togo','TGO',768,'',0),('TH','Thailand','THA',764,'+66',0),('TJ','Tajikistan','TJK',762,'+992',0),('TK','Tokelau','TKL',772,'+690',0),('TL','Timor-Leste','TLS',626,'',0),('TM','Turkmenistan','TKM',795,'+993',0),('TN','Tunisia','TUN',788,'+216',0),('TO','Tonga','TON',776,'+676',0),('TR','Turkey','TUR',792,'+90',0),('TT','Trinidad and Tobago','TTO',780,'+1-868',0),('TV','Tuvalu','TUV',798,'+688',0),('TW','Taiwan (Province of China)','TWN',158,'+886',0),('TZ','Tanzania, United Republic of','TZA',834,'+255',0),('UA','Ukraine','UKR',804,'+380',0),('UG','Uganda','UGA',800,'+256',0),('UM','United States Minor Outlying Islands','UMI',581,'',0),('US','United States','USA',840,'+1',0),('UY','Uruguay','URY',858,'+598',0),('UZ','Uzbekistan','UZB',860,'+998',0),('VA','Holy See (Vatican City State)','VAT',336,'',0),('VC','Saint Vincent and the Grenadines','VCT',670,'+1-784',0),('VE','Venezuela','VEN',862,'+58',0),('VG','Virgin Islands (British)','VGB',92,'',0),('VI','Virgin Islands (U.S.)','VIR',850,'+1-284',0),('VN','Viet Nam','VNM',704,'+84',0),('VU','Vanuatu','VUT',548,'+678',0),('WF','Wallis and Futuna','WLF',876,'+681',0),('WS','Samoa','WSM',882,'+685',0),('YE','Yemen','YEM',887,'+967',0),('YT','Mayotte','MYT',175,'+269',0),('ZA','South Africa','ZAF',710,'+27',0),('ZM','Zambia','ZMB',894,'+260',0),('ZW','Zimbabwe','ZWE',716,'+263',0);
/*!40000 ALTER TABLE `country` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `custom_group_detail_master`
--

DROP TABLE IF EXISTS `custom_group_detail_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `custom_group_detail_master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `group_code` varchar(10) NOT NULL,
  `dept_id` varchar(5) NOT NULL,
  `doctor_id` int(11) NOT NULL,
  `custom_group_name` varchar(30) NOT NULL,
  `group_elements` text CHARACTER SET utf8 NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`group_code`,`dept_id`,`custom_group_name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `custom_group_detail_master`
--

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

--
-- Table structure for table `cycle_count`
--

DROP TABLE IF EXISTS `cycle_count`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cycle_count` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `cc_trn_no` int(11) NOT NULL,
  `sr_no` int(11) NOT NULL,
  `store_code` varchar(6) NOT NULL DEFAULT '1',
  `product_id` int(11) NOT NULL,
  `batch_no` varchar(40) DEFAULT NULL,
  `batch_exp` date DEFAULT NULL,
  `unit_price` float(9,2) NOT NULL,
  `unit_price_wo_gst` float(9,2) NOT NULL DEFAULT '0.00',
  `system_stock` int(11) NOT NULL,
  `physical_stock` int(11) DEFAULT NULL,
  `diff_stock` int(11) DEFAULT NULL,
  `trn_id` int(11) DEFAULT NULL,
  `is_stock_updated` enum('Y','N') NOT NULL DEFAULT 'N',
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(20) NOT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`cc_trn_no`,`sr_no`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cycle_count`
--

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

--
-- Table structure for table `cycle_count_header`
--

DROP TABLE IF EXISTS `cycle_count_header`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cycle_count_header` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `cc_trn_no` int(11) NOT NULL,
  `str_code` varchar(6) COLLATE utf8_unicode_ci NOT NULL,
  `product_wise` enum('Y','N') COLLATE utf8_unicode_ci DEFAULT NULL,
  `product_id` int(11) DEFAULT NULL,
  `category_wise` enum('Y','N') COLLATE utf8_unicode_ci DEFAULT NULL,
  `product_category` int(11) DEFAULT NULL,
  `ptr_from` float DEFAULT NULL,
  `ptr_to` float DEFAULT NULL,
  `product_range_from` varchar(6) COLLATE utf8_unicode_ci DEFAULT NULL,
  `product_range_to` varchar(6) COLLATE utf8_unicode_ci DEFAULT NULL,
  `product_with_zero_qty` enum('Y','N') COLLATE utf8_unicode_ci NOT NULL,
  `system_stock_amt` float NOT NULL,
  `physical_stock_amt` float DEFAULT NULL,
  `total_product_count` int(11) NOT NULL,
  `created_by` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`cc_trn_no`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cycle_count_header`
--

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

--
-- Table structure for table `denomination_details`
--

DROP TABLE IF EXISTS `denomination_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `denomination_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `trn_typ` enum('R','S') NOT NULL DEFAULT 'R',
  `business_entity` enum('H','P') NOT NULL DEFAULT 'H',
  `bill_no` varchar(20) NOT NULL,
  `receipt_no` int(11) NOT NULL,
  `receipt_date` datetime NOT NULL,
  `ip_id` bigint(20) NOT NULL,
  `op_id` bigint(20) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `d_in_1_2000` int(11) NOT NULL,
  `d_in_2_1000` int(11) NOT NULL,
  `d_in_3_500` int(11) NOT NULL,
  `d_in_4_200` int(11) NOT NULL,
  `d_in_5_100` int(11) NOT NULL,
  `d_in_6_050` int(11) NOT NULL,
  `d_in_7_020` int(11) NOT NULL,
  `d_in_8_010` int(11) NOT NULL,
  `d_in_9_005` int(11) NOT NULL,
  `d_in_10_002` int(11) NOT NULL,
  `d_in_11_001` int(11) NOT NULL,
  `d_out_1_2000` int(11) NOT NULL,
  `d_out_2_1000` int(11) NOT NULL,
  `d_out_3_500` int(11) NOT NULL,
  `d_out_4_200` int(11) NOT NULL,
  `d_out_5_100` int(11) NOT NULL,
  `d_out_6_050` int(11) NOT NULL,
  `d_out_7_020` int(11) NOT NULL,
  `d_out_8_010` int(11) NOT NULL,
  `d_out_9_005` int(11) NOT NULL,
  `d_out_10_002` int(11) NOT NULL,
  `d_out_11_001` int(11) NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `denomination_details`
--

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

--
-- Table structure for table `department`
--

DROP TABLE IF EXISTS `department`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `department` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `dept_id` varchar(5) CHARACTER SET latin1 NOT NULL,
  `dept_name_eng` varchar(30) CHARACTER SET latin1 NOT NULL,
  `dept_name_guj` varchar(80) NOT NULL,
  `dept_cat` varchar(10) CHARACTER SET latin1 NOT NULL,
  `dept_duration` int(11) NOT NULL,
  `dept_duration_unit` char(5) CHARACTER SET latin1 NOT NULL,
  `is_consulting_department` enum('Y','N') NOT NULL DEFAULT 'Y',
  `otherCharges` enum('Y','N') NOT NULL DEFAULT 'N',
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `user_name` varchar(20) CHARACTER SET latin1 NOT NULL,
  `last_update_date` varchar(10) CHARACTER SET latin1 NOT NULL,
  `disp_seq` int(11) NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`company_id`,`branch_id`,`dept_id`),
  UNIQUE KEY `disp_seq` (`disp_seq`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`dept_name_eng`),
  UNIQUE KEY `company_id_2` (`company_id`,`branch_id`,`dept_name_guj`),
  KEY `department_idx_id` (`dept_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1015 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `department`
--

LOCK TABLES `department` WRITE;
/*!40000 ALTER TABLE `department` DISABLE KEYS */;
INSERT INTO `department` VALUES (0,0,'BBNK','BLOOD BANK','BLOOD BANK','Hospital',1,'Day','Y','N','N','superadmin','2023-03-20',73),(0,0,'D01','Medicine','Medicine','Hospital',3,'Month','Y','N','N','superadmin','2019-01-24',27),(0,0,'D02','GENERAL SURGERY','GENERAL SURGERY','Hospital',3,'Month','Y','N','Y','superadmin','2025-10-03',28),(0,0,'D03','ORTHOPEDICS','ORTHOPEDICS','Hospital',3,'Month','Y','N','Y','superadmin','2025-10-03',29),(0,0,'D035','VERTIGO','VERTIGO','Hospital',3,'Month','Y','N','Y','superadmin','2025-10-03',1014),(0,0,'D04','Gynecology & Obstetrics','Gynecology & Obstetrics','Hospital',3,'Month','Y','N','N','superadmin','2019-01-24',30),(0,0,'D05','Pediatrics & Neonatology','Pediatrics & Neonatology','Hospital',3,'Month','Y','N','N','superadmin','2019-01-24',31),(0,0,'D06','ENT','ENT','Hospital',3,'Month','Y','N','Y','superadmin','2025-10-03',32),(0,0,'D07','Ophthalmology','Ophthalmology','Hospital',3,'Month','Y','N','N','superadmin','2019-01-24',33),(0,0,'D08','Pulmonology','Pulmonology','Hospital',3,'Month','Y','N','N','superadmin','2019-01-24',34),(0,0,'D09','Psychiatry','Psychiatry','Hospital',3,'Month','Y','N','N','superadmin','2019-01-24',35),(0,0,'D10','Dermatology','Dermatology','Hospital',3,'Month','Y','N','N','superadmin','2019-01-24',36),(0,0,'D11','Nephrology','Nephrology','Hospital',3,'Month','Y','N','N','superadmin','2018-12-31',37),(0,0,'D12','Urology','Urology','Hospital',3,'Month','Y','N','N','superadmin','2018-12-31',38),(0,0,'D13','Neurology','Neurology','Hospital',3,'Month','Y','N','N','superadmin','2018-12-31',39),(0,0,'D14','NEURO SURGERY','NEURO SURGERY','Hospital',3,'Month','Y','N','Y','superadmin','2025-10-03',40),(0,0,'D15','Cardiology','Cardiology','Hospital',3,'Month','Y','N','N','superadmin','2018-12-31',41),(0,0,'D16','Cardiovascular Surgery','Cardiovascular Surgery','Hospital',3,'Month','Y','N','N','superadmin','2018-12-31',42),(0,0,'D17','GASTROENTEROLOGY','GASTROENTEROLOGY','Hospital',3,'Month','Y','N','Y','superadmin','2025-10-03',43),(0,0,'D18','Gastric Surgery','Gastric Surgery','Hospital',3,'Month','Y','N','N','superadmin','2018-12-31',44),(0,0,'D19','Oncology','Oncology','Hospital',3,'Month','Y','N','N','superadmin','2018-12-31',45),(0,0,'D20','Onco Surgery','Onco Surgery','Hospital',3,'Month','Y','N','N','superadmin','2018-12-31',46),(0,0,'D21','Plastic Surgery','Plastic Surgery','Hospital',3,'Month','Y','N','N','superadmin','2018-12-31',47),(0,0,'D22','Pain Management','Pain Management','Hospital',3,'Month','Y','N','N','superadmin','2018-12-31',48),(0,0,'D23','Rheumatology','Rheumatology','Hospital',3,'Month','Y','N','N','superadmin','2018-12-31',49),(0,0,'D24','Anesthetist','Anesthetist','Hospital',3,'Month','Y','N','N','superadmin','2019-01-24',50),(0,0,'D25','Dentistry','Dentistry','Hospital',3,'Month','Y','N','N','superadmin','2019-01-24',51),(0,0,'D26','Physiotherapy','Physiotherapy','Hospital',3,'Month','Y','N','N','superadmin','2019-01-24',52),(0,0,'D27','EMERGENCY AND CRITICAL CARE','EMERGENCY AND CRITICAL CARE','Hospital',3,'Month','Y','N','Y','superadmin','2025-10-03',53),(0,0,'D28','Pathology','Pathology','Hospital',3,'Month','Y','','N','Parth','2021-03-19',54),(0,0,'D29','Radiology','Radiology','Hospital',3,'Month','Y','','N','superadmin','2021-03-19',55),(0,0,'D31','Dietary','Dietary','Hospital',3,'Month','Y','','N','Yatin','2021-09-29',61),(0,0,'D33','Pediatric Surgery ','Pediatric Surgery ','Hospital',3,'Month','Y','N','N','Parth','2021-03-19',1013),(0,0,'D34','Bariatrics ','Bariatrics ','Hospital',3,'Month','Y','','N','Parth','2021-03-19',1001),(0,0,'HOSP','Hospital','Hospital','Hospital',3,'Month','Y','','N','superadmin','2021-03-19',58);
/*!40000 ALTER TABLE `department` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `department_master`
--

DROP TABLE IF EXISTS `department_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `department_master` (
  `department_id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `department_name` varchar(30) NOT NULL,
  `department_description` varchar(100) DEFAULT NULL COMMENT 'Description of Group',
  `department_is_for_hr` enum('Y','N') NOT NULL COMMENT 'Its indicate applicable for hr or not',
  `department_is_for_store` enum('Y','N') NOT NULL COMMENT 'Its indicate applicable for store or not',
  `department_is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `Head_of_Department` int(11) DEFAULT NULL,
  `approver_id` varchar(50) NOT NULL,
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(20) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`department_id`),
  UNIQUE KEY `department_name` (`department_name`)
) ENGINE=InnoDB AUTO_INCREMENT=88 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `department_master`
--

LOCK TABLES `department_master` WRITE;
/*!40000 ALTER TABLE `department_master` DISABLE KEYS */;
INSERT INTO `department_master` VALUES (2,0,0,'HUMAN RESOURCE','Human Resource','Y','Y','Y',0,'','jitendra','2019-02-05 15:05:52','kinjal','2019-06-05 13:20:45'),(3,0,0,'PHARMACY','Pharmacy','Y','Y','Y',0,'','jitendra','2019-02-05 15:06:06','sudip','2019-12-29 16:57:41'),(4,0,0,'OPD',NULL,'Y','Y','Y',0,'','jitendra','2019-02-05 15:06:13',NULL,NULL),(5,0,0,'PATHOLOGY','LAB','Y','Y','Y',0,'','jitendra','2019-02-05 15:06:46','jitendra','2019-02-05 15:08:04'),(6,0,0,'SECURITY DEPT',NULL,'Y','Y','Y',0,'','jitendra','2019-02-05 15:07:05','jitendra','2019-02-05 15:08:17'),(7,0,0,'EMERGENCY','Emergency','Y','Y','Y',0,'','jitendra','2019-02-05 15:07:21','kinjal','2019-06-05 13:20:25'),(8,0,0,'RADIOLOGY','Radiology','Y','Y','Y',0,'','jitendra','2019-02-05 15:07:31','kinjal','2019-06-05 13:20:11'),(9,0,0,'MARKETING & COMMUNICATION','Marketing & Communication','Y','Y','Y',0,'','jitendra','2019-02-05 15:09:06','kinjal','2019-06-05 13:19:58'),(10,0,0,'HOUSE KEEPING','House Keeping','Y','Y','Y',0,'','jitendra','2019-02-05 15:09:22','kinjal','2019-05-14 16:58:35'),(11,0,0,'Administration','Administration','Y','Y','Y',0,'','thims','2019-02-23 00:00:00',NULL,NULL),(12,0,0,'IT','IT','Y','Y','Y',0,'','thims','2019-02-23 00:00:00',NULL,NULL),(13,0,0,'Operations','Operations','Y','Y','Y',0,'','thims','2019-02-23 00:00:00',NULL,NULL),(14,0,0,'Laboratory','Laboratory','Y','Y','Y',0,'','thims','2019-02-23 00:00:00',NULL,NULL),(15,0,0,'Nursing','Nursing','Y','Y','Y',0,'','thims','2019-02-23 00:00:00',NULL,NULL),(17,0,0,'Maintenance','Maintenance','Y','Y','Y',0,'','thims','2019-02-23 00:00:00',NULL,NULL),(18,0,0,'ICU','ICU','Y','Y','Y',0,'','thims','2019-02-23 00:00:00','thims','2019-05-20 18:30:10'),(19,0,0,'OT','OT','Y','Y','Y',0,'','thims','2019-02-23 00:00:00',NULL,NULL),(20,0,0,'Pediatrics','Pediatrics','Y','Y','Y',0,'','thims','2019-02-23 00:00:00',NULL,NULL),(21,0,0,'Orthopedic','Orthopedic','Y','Y','Y',0,'','thims','2019-02-23 00:00:00',NULL,NULL),(22,0,0,'General Surgery','General Surgery','Y','Y','Y',0,'','thims','2019-02-23 00:00:00',NULL,NULL),(24,0,0,'FINANACE & ACCOUNT','Finanace & Account','Y','Y','Y',0,'','thims','2019-04-20 14:01:07',NULL,NULL),(25,0,0,'General Store','General Store','Y','Y','Y',0,'','thims','2019-04-20 14:05:53',NULL,NULL),(29,0,0,'OPTHALMOLOGY','Opthalmology','Y','Y','Y',0,'','thims','2019-04-20 16:42:57',NULL,NULL),(30,0,0,'GYNECOLOGY','Gynecology','Y','Y','Y',0,'','thims','2019-04-20 16:43:09',NULL,NULL),(31,0,0,'DENTAL SERVICES','Dental Services','Y','Y','Y',0,'','thims','2019-04-20 16:43:24','kinjal','2019-05-14 16:57:57'),(33,0,0,'CSSD','CSSD','N','Y','Y',0,'','thims','2019-05-20 11:37:19',NULL,NULL),(36,0,0,'DIALYSIS','DIALYSIS','N','Y','Y',0,'','thims','2019-05-20 11:37:55',NULL,NULL),(38,0,0,'ENT','ENT','N','Y','Y',0,'','thims','2019-05-20 11:38:09',NULL,NULL),(41,0,0,'CANTEEN',NULL,'Y','Y','Y',0,'','sagarv','2019-09-14 17:04:18',NULL,NULL),(44,0,0,'IP BILLING',NULL,'Y','Y','Y',0,'','pranav','2019-10-01 18:11:04',NULL,NULL),(45,0,0,'QUALITY',NULL,'Y','N','Y',0,'','kinjal','2019-10-11 16:38:08',NULL,NULL),(46,0,0,'BIO MEDICAL',NULL,'Y','Y','Y',0,'','pranav','2019-11-28 09:59:54',NULL,NULL),(68,0,0,'PHYSIOTHERAPY','physiotherapy','Y','Y','Y',0,'','pranav','2020-08-16 11:05:09',NULL,NULL),(87,0,0,'CATHLAB','CATH','Y','Y','Y',0,'','rohit','2022-08-05 16:59:35',NULL,NULL);
/*!40000 ALTER TABLE `department_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `department_master_bgh`
--

DROP TABLE IF EXISTS `department_master_bgh`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `department_master_bgh` (
  `sr` int(11) NOT NULL COMMENT 'used to display department in order',
  `dept_id` varchar(10) NOT NULL,
  `sub_dept_id` varchar(50) NOT NULL,
  `total_beds` int(11) NOT NULL,
  `male` int(11) NOT NULL,
  `female` int(11) NOT NULL,
  `unit` int(11) NOT NULL,
  `active` enum('Y','N') NOT NULL,
  UNIQUE KEY `depa_id` (`dept_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `department_master_bgh`
--

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

--
-- Table structure for table `department_other_charge`
--

DROP TABLE IF EXISTS `department_other_charge`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `department_other_charge` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `departmentId` varchar(5) NOT NULL COMMENT 'department id from department table',
  `serviceId` varchar(8) NOT NULL COMMENT 'service code from service master',
  `chargeType` char(1) NOT NULL COMMENT 'charge type P for percentage F for fixed',
  `value` int(11) NOT NULL,
  `unit` tinyint(4) NOT NULL DEFAULT '1' COMMENT ' number, how many days or bill',
  `unit_type` varchar(10) NOT NULL COMMENT 'per day, per bill',
  `active_YN` enum('Y','N') NOT NULL DEFAULT 'Y',
  `createdBy` varchar(20) NOT NULL,
  `lastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `department_other_charge`
--

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

--
-- Table structure for table `deposit_structure_master`
--

DROP TABLE IF EXISTS `deposit_structure_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `deposit_structure_master` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `deposit_type` varchar(4) NOT NULL,
  `room_cat_id` varchar(4) NOT NULL,
  `operation_grade_id` char(1) NOT NULL,
  `operation_type` char(1) NOT NULL,
  `deposit_amount` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `deposit_structure_master`
--

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

--
-- Table structure for table `dept_cat_master`
--

DROP TABLE IF EXISTS `dept_cat_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dept_cat_master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `dept_cat` varchar(50) NOT NULL,
  `description` varchar(20) NOT NULL,
  `report_title` varchar(200) NOT NULL,
  `subtitle` varchar(30) NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`dept_cat`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dept_cat_master`
--

LOCK TABLES `dept_cat_master` WRITE;
/*!40000 ALTER TABLE `dept_cat_master` DISABLE KEYS */;
INSERT INTO `dept_cat_master` VALUES (0,0,'Hospital','Hospital','TechSmith Solutions Pvt. Ltd.','Ahmedabad');
/*!40000 ALTER TABLE `dept_cat_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `diagnosis_master`
--

DROP TABLE IF EXISTS `diagnosis_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `diagnosis_master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `Diag_Group` varchar(4) NOT NULL,
  `Diag_Code` int(10) unsigned NOT NULL,
  `Diag_Name` varchar(50) NOT NULL,
  `Diag_Type` varchar(2) NOT NULL COMMENT 'I for IP.O for OP.IO for both',
  `Treatment_Days` int(11) NOT NULL,
  `Std_Instruction_Rx` text NOT NULL,
  `Remark` text NOT NULL,
  `Inst_Eng` text NOT NULL,
  `Inst_Hindi` text NOT NULL,
  `Inst_Guj` text NOT NULL,
  `Pref_Diag` enum('Y','N') NOT NULL,
  `Active_Flag` enum('Y','N') NOT NULL DEFAULT 'Y',
  `User_ID` varchar(20) NOT NULL,
  `Last_Update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`Diag_Group`,`Diag_Code`),
  UNIQUE KEY `Diag_Code` (`Diag_Code`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `diagnosis_master`
--

LOCK TABLES `diagnosis_master` WRITE;
/*!40000 ALTER TABLE `diagnosis_master` DISABLE KEYS */;
INSERT INTO `diagnosis_master` VALUES (0,0,'D01',5,'DENGUE FEVER ','I',0,'','','','','','Y','Y','','2021-08-25 16:18:52','','0000-00-00 00:00:00'),(0,0,'D01',7,'PYREXIA UNDER IX','I',0,'','','','','','Y','Y','','2021-10-29 16:06:22','','0000-00-00 00:00:00'),(0,0,'D01',9,'P.FALCI','I',0,'','','','','','Y','Y','','2021-11-28 15:50:05','','0000-00-00 00:00:00'),(0,0,'D01',16,'VIRAL','G',0,'','','','','','','Y','himanshu p','2022-03-15 09:42:16','','0000-00-00 00:00:00'),(0,0,'D02',26,'FISSURE IN ANO','G',0,'','','','','','','Y','anandt','2022-03-24 05:31:03','','0000-00-00 00:00:00'),(0,0,'D02',35,'POSTERIOR ANAL FISSURE','G',0,'','','','','','','Y','anandt','2022-04-09 04:25:19','','0000-00-00 00:00:00'),(0,0,'D02',40,'FISSURE','G',0,'','','','','','','Y','anandt','2022-04-21 09:33:55','','0000-00-00 00:00:00'),(0,0,'D03',4,'OA KNEE','G',0,'','','','','','','Y','sandip','2021-06-23 05:39:43','','0000-00-00 00:00:00'),(0,0,'D03',6,'LEFT TIBIAL SHAFT FRACTURE','I',0,'','','','','','Y','Y','','2021-10-03 17:53:32','','0000-00-00 00:00:00'),(0,0,'D03',13,'MEDI','G',0,'','','','','','','Y','sandip','2022-02-09 06:02:37','','0000-00-00 00:00:00'),(0,0,'D03',19,'FROZEN SHOULDER','G',0,'','','','','','','Y','sandip','2022-03-19 06:08:51','','0000-00-00 00:00:00'),(0,0,'D03',20,'LOW BACK PAIN','G',0,'','','','','','','Y','sandip','2022-03-22 07:44:27','','0000-00-00 00:00:00'),(0,0,'D03',21,'GENERAL','G',0,'','','','','','','Y','sandip','2022-03-22 07:58:38','','0000-00-00 00:00:00'),(0,0,'D03',22,'OA KNEE SG','G',0,'','','','','','','Y','sandip','2022-03-22 08:11:38','','0000-00-00 00:00:00'),(0,0,'D03',23,'OA KNEE EARLY','G',0,'','','','','','','Y','sandip','2022-03-22 08:15:24','','0000-00-00 00:00:00'),(0,0,'D03',25,'NECK','G',0,'','','','','','','Y','sandip','2022-03-23 05:47:12','','0000-00-00 00:00:00'),(0,0,'D03',27,'ANKLE SPRAIN','G',0,'','','','','','','Y','sandip','2022-03-24 07:51:57','','0000-00-00 00:00:00'),(0,0,'D03',28,'DQ','G',0,'','','','','','','Y','sandip','2022-03-24 08:17:00','','0000-00-00 00:00:00'),(0,0,'D03',29,'TENIS ELBOW','G',0,'','','','','','','Y','sandip','2022-03-26 05:20:29','','0000-00-00 00:00:00'),(0,0,'D03',30,'FCO TKR','G',0,'','','','','','','Y','sandip','2022-03-28 03:58:12','','0000-00-00 00:00:00'),(0,0,'D03',31,'FOOT /ANKLE','G',0,'','','','','','','Y','sandip','2022-03-31 05:58:34','','0000-00-00 00:00:00'),(0,0,'D03',32,'FCO','G',0,'','','','','','','Y','sandip','2022-04-05 05:11:00','','0000-00-00 00:00:00'),(0,0,'D03',33,'HALLUX','G',0,'','','','','','','Y','sandip','2022-04-06 05:20:21','','0000-00-00 00:00:00'),(0,0,'D03',34,'STRESS FRACTURE','G',0,'','','','','','','Y','sandip','2022-04-06 05:40:34','','0000-00-00 00:00:00'),(0,0,'D03',36,'RIB ','G',0,'','','','','','','Y','sandip','2022-04-14 07:00:45','','0000-00-00 00:00:00'),(0,0,'D03',37,'RA','G',0,'','','','','','','Y','sandip','2022-04-14 07:17:58','','0000-00-00 00:00:00'),(0,0,'D03',38,'RETROCAL','G',0,'','','','','','','Y','sandip','2022-04-15 05:24:06','','0000-00-00 00:00:00'),(0,0,'D03',39,'BACKERS','G',0,'','','','','','','Y','sandip','2022-04-19 05:33:36','','0000-00-00 00:00:00'),(0,0,'D03',41,'LOW BACK','G',0,'','','','','','','Y','sandip','2022-04-26 09:24:31','','0000-00-00 00:00:00'),(0,0,'D03',42,'COCCYX','G',0,'','','','','','','Y','sandip','2022-05-02 06:49:44','','0000-00-00 00:00:00'),(0,0,'D03',43,'TRIGGER','G',0,'','','','','','','Y','sandip','2022-05-05 04:45:57','','0000-00-00 00:00:00'),(0,0,'D03',44,'PLANTER FASCITIS','G',0,'','','','','','','Y','sandip','2022-05-05 04:57:25','','0000-00-00 00:00:00'),(0,0,'D03',49,'DVT','G',0,'','','','','','','Y','sandip','2022-07-12 05:01:10','','0000-00-00 00:00:00'),(0,0,'D03',50,'LUMBAR','G',0,'','','','','','','Y','sandip','2022-07-12 05:05:10','','0000-00-00 00:00:00'),(0,0,'D07',18,'EYERX1','G',0,'','','','','','','Y','sweety','2022-03-15 10:46:26','','0000-00-00 00:00:00'),(0,0,'D11',8,'CKD ON MHD ,DM II,HTN,HYPOTHYRODISM','I',0,'','','','','','Y','Y','','2021-11-16 16:42:12','','0000-00-00 00:00:00'),(0,0,'D27',10,'VIRAL PNEUMONIA','I',0,'','','','','','Y','Y','','2021-12-16 19:00:11','','0000-00-00 00:00:00'),(0,0,'D27',11,'COVID-19 POSITIVE','I',0,'','','','','','Y','Y','','2022-02-03 15:53:23','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `diagnosis_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `diagnosis_medicine`
--

DROP TABLE IF EXISTS `diagnosis_medicine`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `diagnosis_medicine` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `group_type` varchar(2) NOT NULL,
  `group_name` varchar(50) NOT NULL,
  `dept_id` varchar(5) NOT NULL,
  `doctor_id` int(11) NOT NULL,
  `diag_code` int(10) unsigned NOT NULL,
  `diag_med_sr` int(10) unsigned NOT NULL,
  `drug_adm` varchar(10) NOT NULL,
  `tapering_dose` varchar(10) NOT NULL,
  `frequency` varchar(3) NOT NULL,
  `medi_cd` int(10) unsigned NOT NULL,
  `dose` varchar(10) NOT NULL,
  `dose_for_ip` varchar(10) NOT NULL,
  `dose_unit` varchar(20) NOT NULL,
  `dose_type_freq_id` int(11) NOT NULL,
  `time_slot` varchar(50) NOT NULL,
  `freq_duration` int(11) NOT NULL,
  `quantity` int(11) NOT NULL,
  `instruction` varchar(30) NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`diag_code`,`diag_med_sr`),
  CONSTRAINT `diagnosis_medicine_ibfk_1` FOREIGN KEY (`diag_code`) REFERENCES `diagnosis_master` (`Diag_Code`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `diagnosis_medicine`
--

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

--
-- Table structure for table `discount_master`
--

DROP TABLE IF EXISTS `discount_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `discount_master` (
  `company_id` tinyint(4) NOT NULL,
  `discount_id` tinyint(4) NOT NULL AUTO_INCREMENT COMMENT 'Discount Id',
  `discount_name` varchar(10) NOT NULL,
  `discount_percentage` float(9,2) NOT NULL,
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(20) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`discount_id`,`company_id`) USING BTREE,
  UNIQUE KEY `discount_name` (`discount_name`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `discount_master`
--

LOCK TABLES `discount_master` WRITE;
/*!40000 ALTER TABLE `discount_master` DISABLE KEYS */;
INSERT INTO `discount_master` VALUES (0,1,'00',0.00,'thims','2019-01-05 14:00:00','vikram','2020-08-25 17:55:49');
/*!40000 ALTER TABLE `discount_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `discount_mst`
--

DROP TABLE IF EXISTS `discount_mst`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `discount_mst` (
  `discount_type` varchar(6) NOT NULL,
  `discount_desc` varchar(30) NOT NULL,
  `card` varchar(1) NOT NULL,
  `ipd` varchar(1) NOT NULL,
  `opd` varchar(1) NOT NULL,
  PRIMARY KEY (`discount_type`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `discount_mst`
--

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

--
-- Table structure for table `discount_rules`
--

DROP TABLE IF EXISTS `discount_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `discount_rules` (
  `discount_type` varchar(6) NOT NULL,
  `rule_no` varchar(4) NOT NULL,
  `months` int(11) NOT NULL,
  `disc_per` int(11) NOT NULL,
  PRIMARY KEY (`discount_type`,`rule_no`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `discount_rules`
--

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

--
-- Table structure for table `discount_term`
--

DROP TABLE IF EXISTS `discount_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `discount_term` (
  `discount_type` varchar(6) NOT NULL,
  `discount_no` int(11) NOT NULL,
  `i_patient_reg_id` bigint(20) NOT NULL,
  `i_ipd_reg_id` bigint(20) NOT NULL,
  `i_receipt` varchar(10) NOT NULL,
  `issue_date` date NOT NULL,
  `r_patient_reg_id` int(11) NOT NULL,
  `r_ipd_reg_id` int(11) NOT NULL,
  `r_date` date NOT NULL,
  `r_disc_per` int(11) NOT NULL,
  `r_disc_amt` int(11) NOT NULL,
  `r_receipt` varchar(10) NOT NULL,
  PRIMARY KEY (`discount_type`,`discount_no`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `discount_term`
--

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

--
-- Table structure for table `disease_master_bgh`
--

DROP TABLE IF EXISTS `disease_master_bgh`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `disease_master_bgh` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `disease_name` varchar(50) NOT NULL,
  `department_id` varchar(10) NOT NULL,
  `gender` varchar(10) NOT NULL,
  `is_random` enum('Y','N') NOT NULL DEFAULT 'Y' COMMENT 'if y than it will condiser in patient generation',
  `lab_set_1` varchar(200) NOT NULL COMMENT 'general ',
  `lab_set_2` varchar(200) NOT NULL,
  `lab_set_3` varchar(200) NOT NULL,
  `radio_set_1` varchar(100) NOT NULL,
  `radio_set_2` varchar(100) NOT NULL,
  `radio_set_3` varchar(100) NOT NULL,
  PRIMARY KEY (`id`),
  FULLTEXT KEY `lab_set_1` (`lab_set_1`,`lab_set_2`,`lab_set_3`,`radio_set_1`,`radio_set_2`,`radio_set_3`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `disease_master_bgh`
--

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

--
-- Table structure for table `division_master`
--

DROP TABLE IF EXISTS `division_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `division_master` (
  `div_cd` int(11) NOT NULL AUTO_INCREMENT,
  `div_name` varchar(15) NOT NULL,
  `contact_person` varchar(10) NOT NULL,
  PRIMARY KEY (`div_cd`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `division_master`
--

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

--
-- Table structure for table `doctor_charge_mast`
--

DROP TABLE IF EXISTS `doctor_charge_mast`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `doctor_charge_mast` (
  `doctor_id` int(11) NOT NULL,
  `type_id` varchar(6) NOT NULL,
  `Charges` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `doctor_charge_mast`
--

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

--
-- Table structure for table `doctor_favorite_services`
--

DROP TABLE IF EXISTS `doctor_favorite_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `doctor_favorite_services` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `doctor_id` int(11) NOT NULL,
  `service_code` varchar(4) NOT NULL,
  `service_group_code` varchar(4) NOT NULL,
  `service_usage_count` smallint(6) NOT NULL,
  `is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`doctor_id`,`service_code`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `doctor_favorite_services`
--

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

--
-- Table structure for table `doctor_hospital_share_defination`
--

DROP TABLE IF EXISTS `doctor_hospital_share_defination`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `doctor_hospital_share_defination` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `doctor_id` int(11) NOT NULL,
  `flag_for_provider` char(2) NOT NULL,
  `service_grp_cd` varchar(4) NOT NULL,
  `service_code` varchar(8) NOT NULL,
  `amount_share_doctor` float(9,2) NOT NULL,
  `amount_share_secondary_doctor` float(9,2) NOT NULL,
  `percent_share_doctor` float(5,2) NOT NULL,
  `percent_share_hospital` float(5,2) NOT NULL,
  `percent_share_secondary_doctor` float(5,2) NOT NULL,
  `percent_share_hospital_for_secondary` float(5,2) NOT NULL,
  `active` enum('N','Y') NOT NULL DEFAULT 'Y',
  `created_by` varchar(20) NOT NULL,
  `created_at` datetime NOT NULL,
  `lastmodified_by` varchar(20) NOT NULL,
  `lastmodified_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `doctor_id` (`doctor_id`,`flag_for_provider`,`service_grp_cd`,`service_code`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `doctor_hospital_share_defination`
--

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

--
-- Table structure for table `doctor_hospital_share_defination_new`
--

DROP TABLE IF EXISTS `doctor_hospital_share_defination_new`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `doctor_hospital_share_defination_new` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `doctor_id` int(11) NOT NULL,
  `flag_for_provider` char(2) CHARACTER SET latin1 NOT NULL,
  `service_grp_cd` varchar(4) CHARACTER SET latin1 NOT NULL,
  `service_code` varchar(8) CHARACTER SET latin1 NOT NULL,
  `slab_level` smallint(6) NOT NULL DEFAULT '0',
  `slab_type` enum('S','M') CHARACTER SET latin1 NOT NULL COMMENT 'S- Single Slab, M-Multi Slab',
  `sharing_level` varchar(2) CHARACTER SET latin1 NOT NULL DEFAULT '2',
  `service_charge_slab` float(9,2) NOT NULL,
  `amount_share_doctor` float(9,2) NOT NULL,
  `percent_share_doctor` float(5,2) NOT NULL,
  `amount_share_secondary_doctor` float(9,2) NOT NULL,
  `percent_share_secondary_doctor` float(5,2) NOT NULL,
  `amount_share_admitting_doctor` float(9,2) NOT NULL,
  `percent_share_admitting_doctor` float(5,2) NOT NULL COMMENT 'admitting dr share for secondary',
  `amount_share_doctor_provider2` float(9,2) NOT NULL,
  `percent_share_doctor_provider2` float(5,2) NOT NULL,
  `percent_share_hospital` float(5,2) NOT NULL,
  `percent_share_hospital_for_secondary` float(5,2) NOT NULL,
  `is_employee` enum('Y','N') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'N',
  `active` enum('N','Y') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Y',
  `created_by` varchar(20) CHARACTER SET latin1 NOT NULL,
  `created_at` datetime NOT NULL,
  `lastmodified_by` varchar(20) CHARACTER SET latin1 NOT NULL,
  `lastmodified_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `doctor_id` (`doctor_id`,`flag_for_provider`,`service_grp_cd`,`service_code`,`slab_level`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `doctor_hospital_share_defination_new`
--

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

--
-- Table structure for table `doctor_master`
--

DROP TABLE IF EXISTS `doctor_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `doctor_master` (
  `doctor_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `doctor_fname` varchar(15) NOT NULL,
  `doctor_mname` varchar(15) NOT NULL,
  `doctor_lname` varchar(15) NOT NULL,
  `doctor_shortname` varchar(5) NOT NULL,
  `dr_guj_name` varchar(100) NOT NULL,
  `doctor_desg` varchar(100) NOT NULL,
  `doctor_qualification` varchar(50) NOT NULL,
  `doctor_qualification2` varchar(30) NOT NULL,
  `Reg_No` varchar(20) NOT NULL,
  `doctor_speciality` varchar(15) NOT NULL,
  `doctor_dept_id` varchar(5) NOT NULL,
  `Consultant_Level_Id` int(11) NOT NULL,
  `doctor_category` char(2) NOT NULL COMMENT 'c = consultant,v = visiting consultant , vi = visiting indoor',
  `doctor_contact` varchar(10) NOT NULL,
  `doctor_contact2` varchar(10) NOT NULL,
  `doctor_office_no` varchar(10) NOT NULL,
  `doctor_address` varchar(50) NOT NULL,
  `Doctor_Address2` varchar(100) NOT NULL,
  `doctor_email` varchar(50) NOT NULL,
  `data_access` enum('Y','N') NOT NULL DEFAULT 'Y',
  `add_medicine_rights` enum('Y','N') NOT NULL DEFAULT 'Y',
  `queue_visible_for_doctors` varchar(25) NOT NULL,
  `Doctor_Religion` varchar(1) NOT NULL,
  `Doctor_DOB` date NOT NULL,
  `Doctor_DOA` date NOT NULL,
  `doctor_specific_remark` varchar(250) NOT NULL,
  `print_remark_YN` enum('Y','N') NOT NULL DEFAULT 'N',
  `active` varchar(1) NOT NULL,
  `User_Signature` varchar(255) NOT NULL,
  `queue_status` int(11) DEFAULT NULL,
  `mapping_id` int(11) NOT NULL COMMENT 'Mapping external_doctor_master.external_doctor_id',
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`doctor_id`)
) ENGINE=InnoDB AUTO_INCREMENT=309 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `doctor_master`
--

LOCK TABLES `doctor_master` WRITE;
/*!40000 ALTER TABLE `doctor_master` DISABLE KEYS */;
INSERT INTO `doctor_master` VALUES (1,0,0,'DR.MEDICINE','','','M','','','','','','','D01',0,'C','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,1,'thims','2024-05-06 15:59:52','','0000-00-00 00:00:00'),(2,0,0,'DR.DARSHAN','','BHATT','DB','','','','','','','D06',0,'C','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',1,0,'thims','2025-09-29 17:52:01','thims','2025-10-14 13:14:22'),(3,0,0,'DR.PRATAPSINH','','DODIYA','PD','','','M.S., F.M.A.S.,M.M.A.S','','G-15571','','D02',0,'C','7574000509','','','','','genesishospital.rajkot@gmail.com','N','Y','','','0000-00-00','0000-00-00','','N','Y','',1,0,'thims','2025-10-03 15:04:17','riya','2025-10-30 13:10:09'),(4,0,0,'DR.ARCHIT','V','RATHOD','AVR','','','M.D., D.F.I.D.','','G-33241','','D27',0,'C','7574000509','','','','','genesishospital.rajkot@gmail.com','N','Y','','','0000-00-00','0000-00-00','','N','Y','',0,0,'thims','2025-10-03 15:16:36','shweta','2025-10-08 10:13:35'),(5,0,0,'DR.JAYANT','K','MEHTA','JKM','','','M.D., F.C.C.S.','','G-27896','','D27',0,'C','7574000509','','','','','genesishospital.rajkot@gmail.com','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',1,0,'thims','2025-10-03 15:17:40','thims','2025-10-31 13:45:33'),(6,0,0,'DR.SAGAR','','KHANPARA','SK','','','M.S., ORTHOPADICS','','G-31599','','D03',0,'C','7574000509','','','OPP.NAKSHATRA-7,CHANDAN PARK MAIN ROAD, RAIYA ROAD','','genesishospital.rajkot@gmail.com','N','Y','','','0000-00-00','0000-00-00','','N','Y','',1,0,'thims','2025-10-03 15:18:44','','0000-00-00 00:00:00'),(7,0,0,'DR.RIDHAM','','KHANDERIYA','RK','','','M.CH. NEUROSURGEON','','G-35304','','D14',0,'C','7574000509','','','','','genesishospital.rajkot@gmail.com','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',1,0,'thims','2025-10-03 15:19:47','thims','2025-11-13 10:15:56'),(8,0,0,'DR.KRUTARTH','','KANJIYA','','','','','','','','D27',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'reception','2025-10-08 11:09:30','','0000-00-00 00:00:00'),(9,0,0,'DR.DINESH','','RAJ','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-08 06:55:44','','0000-00-00 00:00:00'),(10,0,0,'DR.ROSHAN','','MISTRY','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-08 07:31:07','','0000-00-00 00:00:00'),(11,0,0,'DR.ARUN ','','TRIVEDI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-08 07:47:37','','0000-00-00 00:00:00'),(12,0,0,'DR.RADHIKA','','KARIA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-08 13:31:31','','0000-00-00 00:00:00'),(13,0,0,'DR.SHRUTI CHARO','','','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-08 13:46:13','','0000-00-00 00:00:00'),(14,0,0,'DR.SHRUTI ','','CHAROLA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-08 13:46:39','','0000-00-00 00:00:00'),(15,0,0,'DR.SHRUTI ','','CHAROLA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-08 13:47:18','','0000-00-00 00:00:00'),(16,0,0,'DR.N','D ','AGRAWAT','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-08 14:14:11','','0000-00-00 00:00:00'),(17,0,0,'DR.KALPESH','','MOR','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-08 14:21:41','','0000-00-00 00:00:00'),(18,0,0,'DR.SAKET','','MARU','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-09 06:15:58','','0000-00-00 00:00:00'),(19,0,0,'DR.MADHAV','','MAVANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-09 07:12:38','','0000-00-00 00:00:00'),(20,0,0,'DR.RAJESH ','','RAM','','','','','','','','',0,'C','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-09 11:44:01','','0000-00-00 00:00:00'),(21,0,0,'DR.TKM','','ISHWAR','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-09 12:25:26','','0000-00-00 00:00:00'),(22,0,0,'DR.BHARAT','','DUDHATRA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-09 12:41:00','','0000-00-00 00:00:00'),(23,0,0,'DR.ANKUR','','THUMMAR','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-09 13:42:37','','0000-00-00 00:00:00'),(24,0,0,'DR.UMANG ','','SHUKLA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-09 13:47:16','','0000-00-00 00:00:00'),(25,0,0,'DR.AARTI','','CHANDRANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-09 13:55:26','','0000-00-00 00:00:00'),(26,0,0,'DR.MAHESH','','BHORANIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-09 14:22:22','','0000-00-00 00:00:00'),(27,0,0,'DR.PRAFUL','M','KAMANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-10 06:14:18','','0000-00-00 00:00:00'),(28,0,0,'DR.NARENDRA','','JAKHOTA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-10 11:06:10','','0000-00-00 00:00:00'),(29,0,0,'DR.RUCHI','','VAISHNANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-10 11:20:32','','0000-00-00 00:00:00'),(30,0,0,'DR.RAVINDRA','','KAVATHIYA','','','','','','','','',0,'R','9824865311','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-10 11:35:34','','0000-00-00 00:00:00'),(31,0,0,'DR.AJAY','','GOSAI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-11 03:46:59','','0000-00-00 00:00:00'),(32,0,0,'DR.SHILPA','','DESAI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-11 03:59:33','','0000-00-00 00:00:00'),(33,0,0,'DR.CHETAN','','PATEL','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-11 05:13:49','','0000-00-00 00:00:00'),(34,0,0,'DR.AMIT','','KHAMBHAYATA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-11 05:46:19','','0000-00-00 00:00:00'),(35,0,0,'MR.KANJI','','','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-11 07:12:21','','0000-00-00 00:00:00'),(36,0,0,'DR.VISHAL','MEVA','','VM','','','','','','','D02',0,'VI','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'reception','2025-10-11 21:29:14','','0000-00-00 00:00:00'),(37,0,0,'DR.KAUMIL ','KOTHARI','','KK','','','','','','','D14',0,'VI','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'reception','2025-10-12 14:19:53','','0000-00-00 00:00:00'),(38,0,0,'DR.RISHIKESH ','KALARIYA','','RK','','','','','','','D17',0,'VI','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'reception','2025-10-12 14:20:10','','0000-00-00 00:00:00'),(39,0,0,'DR.CHAITANYA','GOHEL','','CG','','','','','','','D02',0,'VI','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'reception','2025-10-12 15:16:59','','0000-00-00 00:00:00'),(40,0,0,'DR.MITUL ','KANSAGRA','','MK','','','','','','','D02',0,'VI','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'reception','2025-10-12 16:18:35','','0000-00-00 00:00:00'),(41,0,0,'DR.MAYUR','KAPURIYA','','MK','','','','','','','D02',0,'VI','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'reception','2025-10-12 18:29:29','','0000-00-00 00:00:00'),(42,0,0,'DR.ROSHAN','MISHTRI','','RM','','','','','','','D02',0,'C','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'reception','2025-10-12 21:21:51','thims','2025-10-13 11:17:52'),(43,0,0,'DR.ALPESH','','MAKASANA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-13 03:48:28','','0000-00-00 00:00:00'),(44,0,0,'DR.ALPESH','M.','MORJARIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-13 06:17:29','','0000-00-00 00:00:00'),(45,0,0,'DR.IRFAN','','BASAI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-13 06:24:33','','0000-00-00 00:00:00'),(46,0,0,'DR.CHAITALI','PATEL','','CP','','','','','','','D02',0,'VI','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'reception','2025-10-13 12:38:46','','0000-00-00 00:00:00'),(47,0,0,'DR.JIGNESH','','LOKHIL','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-13 08:06:45','','0000-00-00 00:00:00'),(48,0,0,'DR.SANKALP','','VANZARA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-13 11:13:44','','0000-00-00 00:00:00'),(49,0,0,'DR.AMIT ','',' BHANUSHAN','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-13 11:48:35','','0000-00-00 00:00:00'),(50,0,0,'DR.PARIN ','KANTESARIYA','','PK','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-10-14 13:52:55','','0000-00-00 00:00:00'),(51,0,0,'DR.HEMANG','','KARIA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-14 09:07:06','','0000-00-00 00:00:00'),(52,0,0,'DR.RAVI ','BHOJANI','','RB','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-10-14 14:45:33','','0000-00-00 00:00:00'),(53,0,0,'DR.GAUTAM','','THUMMAR','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-14 12:21:04','','0000-00-00 00:00:00'),(54,0,0,'DR.A','K','PATTNI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-15 05:16:33','','0000-00-00 00:00:00'),(55,0,0,'DR.KAMAL','','DOSHI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-15 06:43:09','','0000-00-00 00:00:00'),(56,0,0,'DR.SAMIR ','','LODHIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-15 10:33:42','','0000-00-00 00:00:00'),(57,0,0,'DR.SUKETU','','BHAKAL','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-15 11:32:25','','0000-00-00 00:00:00'),(58,0,0,'DR.HETAL','','JOSHI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-15 11:47:59','','0000-00-00 00:00:00'),(59,0,0,'DR.SUKETU','','BHAPAL','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-15 11:57:03','','0000-00-00 00:00:00'),(60,0,0,'DR.MAHESH','L','PATEL','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-15 14:13:36','','0000-00-00 00:00:00'),(61,0,0,'DR.BHAVESH','V','KAMBARIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-16 05:12:37','','0000-00-00 00:00:00'),(62,0,0,'DR.TUSHAR','BHATTI','','TB','','','','','','','D02',0,'VI','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'reception','2025-10-16 11:25:39','','0000-00-00 00:00:00'),(63,0,0,'DR.VIRAL','','BALDANIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-16 11:58:51','','0000-00-00 00:00:00'),(64,0,0,'DR.ATUL','','JASANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-16 12:17:10','','0000-00-00 00:00:00'),(65,0,0,'DR.MITUL','KASUNDRA','','MK','','','','','','','D02',0,'VI','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-10-17 17:05:13','','0000-00-00 00:00:00'),(66,0,0,'DR.JATIN ','PATEL','','JP','','','','','','','D02',0,'VI','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-10-17 17:05:44','','0000-00-00 00:00:00'),(67,0,0,'DR.R.','H.','JOSHI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-17 13:56:41','','0000-00-00 00:00:00'),(68,0,0,'DR.R.','H.','JOSHI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-17 13:56:41','','0000-00-00 00:00:00'),(69,0,0,'DR.R.','H.','JOSHI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-17 13:57:51','','0000-00-00 00:00:00'),(70,0,0,'DR.BANKIM ','THANKI','','BT','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-10-18 09:48:34','','0000-00-00 00:00:00'),(71,0,0,'DR.BANKIM THANK','','','B','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-10-18 09:59:12','','0000-00-00 00:00:00'),(72,0,0,'DR.NISHEET','','PATEL','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-18 05:26:04','','0000-00-00 00:00:00'),(73,0,0,'DR.NAYAN','','KALAVADIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-18 06:04:47','','0000-00-00 00:00:00'),(74,0,0,'DR.KARANG ','','RANPARIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-18 06:18:09','','0000-00-00 00:00:00'),(75,0,0,'DR.TARANG','','PATEL','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-18 06:18:50','','0000-00-00 00:00:00'),(76,0,0,'DR.KAUSHIK','J','KOTAK','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-18 08:42:35','','0000-00-00 00:00:00'),(77,0,0,'DR.ATUL','R.','PANDYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-18 13:44:47','','0000-00-00 00:00:00'),(78,0,0,'DR.DENISH','SAVALIYA','','DS','','','','','','','D02',0,'C','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'reception','2025-10-19 10:14:15','reception','2025-10-19 10:17:34'),(79,0,0,'DR.NIRAJ','MEHTA','','NM','','','','','','','D02',0,'C','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'reception','2025-10-20 14:35:03','','0000-00-00 00:00:00'),(80,0,0,'DR.DARSHAN ','','SHUREJA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-23 06:11:00','','0000-00-00 00:00:00'),(81,0,0,'DR.VIBHAKAR','','VACHHRAJANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-24 05:42:10','','0000-00-00 00:00:00'),(82,0,0,'DR.NIMAVAT','','','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-24 06:19:06','','0000-00-00 00:00:00'),(83,0,0,'DR.VISHAL','','MANGROLA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-24 13:20:54','','0000-00-00 00:00:00'),(84,0,0,'DR.DIVYESH ','RATHOD','','DR','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-10-24 23:07:54','','0000-00-00 00:00:00'),(85,0,0,'DR.M','K','KADARI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-25 07:38:34','','0000-00-00 00:00:00'),(86,0,0,'DR.JAYESH','','DODIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-25 08:10:52','','0000-00-00 00:00:00'),(87,0,0,'DR.RAJ','','SATANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-25 13:19:46','','0000-00-00 00:00:00'),(88,0,0,'DR.PRATIK SHAH','','','P','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-10-26 19:31:48','','0000-00-00 00:00:00'),(89,0,0,'DR.SAVAN','','TIMBADIA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-27 04:47:42','','0000-00-00 00:00:00'),(90,0,0,'DR.HEMANG','','KARIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-27 13:21:04','','0000-00-00 00:00:00'),(91,0,0,'DR.NIRAV','','MEHTA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-27 14:18:03','','0000-00-00 00:00:00'),(92,0,0,'DR.D','S','YADAV','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-28 04:19:35','','0000-00-00 00:00:00'),(93,0,0,'DR.BHARAT','','VADGAMA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-28 04:37:32','','0000-00-00 00:00:00'),(94,0,0,'DR.BHARAT','','VADGAMA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-28 04:56:26','','0000-00-00 00:00:00'),(95,0,0,'DR.SUHASH','','SHETH','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-28 04:56:42','','0000-00-00 00:00:00'),(96,0,0,'DR.CHETAN','M','BHALODIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-28 07:01:17','','0000-00-00 00:00:00'),(97,0,0,'DR.SIDDHARTH','','JOSHI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-28 11:04:55','','0000-00-00 00:00:00'),(98,0,0,'DR.JINAL','','JOBANPUTRA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-28 13:14:49','','0000-00-00 00:00:00'),(99,0,0,'DR.SAMIR','','NAYAK','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-29 04:45:57','','0000-00-00 00:00:00'),(100,0,0,'DR.SANJAY ','PANDYA','','SP','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-10-29 10:32:03','riya','2025-10-29 10:33:44'),(101,0,0,'DR.AMIT ','ACHARYA','','AA','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-10-29 10:55:00','','0000-00-00 00:00:00'),(102,0,0,'DR.MAHESH ','','MOTVANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-29 05:33:37','','0000-00-00 00:00:00'),(103,0,0,'DR.CHETANA','','PATEL','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-29 11:59:24','','0000-00-00 00:00:00'),(104,0,0,'DR.MANISH','','BHATT','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-29 12:02:40','','0000-00-00 00:00:00'),(105,0,0,'DR.KAUSHIK','','KOTAK','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-30 06:36:38','','0000-00-00 00:00:00'),(106,0,0,'DR.PRAKASH','','PARMAR','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-30 12:46:40','','0000-00-00 00:00:00'),(107,0,0,'DR.MRUNAL','A','ASHAR','','','','','','','','',0,'C','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-30 13:03:22','','0000-00-00 00:00:00'),(108,0,0,'DR.MAYUR','','NIMAVAT','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-31 05:03:09','','0000-00-00 00:00:00'),(109,0,0,'DR.HARSHAD','','MAHESHWARI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-31 05:22:44','','0000-00-00 00:00:00'),(110,0,0,'DR.MEET ','','DAVE','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-31 05:32:03','','0000-00-00 00:00:00'),(111,0,0,'DR.HARSHIL','','PAREKH','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-31 05:40:23','','0000-00-00 00:00:00'),(112,0,0,'DR.K','J',' PADHIYAR','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-31 06:14:36','','0000-00-00 00:00:00'),(113,0,0,'DR.GOPAL','','PANDYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-31 12:42:55','','0000-00-00 00:00:00'),(114,0,0,'DR.JAYESH','','PANDYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-10-31 13:01:35','','0000-00-00 00:00:00'),(115,0,0,'DR.UMANG','SHUKLA','','US','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-10-31 20:08:23','','0000-00-00 00:00:00'),(116,0,0,'DR.SUNIL','','UKANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-01 04:49:01','','0000-00-00 00:00:00'),(117,0,0,'DR.MIHIR','S.','CHAVDA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-01 04:53:26','','0000-00-00 00:00:00'),(118,0,0,'DR.JIGNESH','','GONDALIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-01 05:17:29','','0000-00-00 00:00:00'),(119,0,0,'DR.JAYDEEP','','BHUNDIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-01 05:41:54','','0000-00-00 00:00:00'),(120,0,0,'DR.YASH','','','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-01 05:45:28','','0000-00-00 00:00:00'),(121,0,0,'DR.JALPESH ','','VAGHELA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-01 06:56:44','','0000-00-00 00:00:00'),(122,0,0,'DR.VIJAY ','','PARMAR','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-01 11:55:28','','0000-00-00 00:00:00'),(123,0,0,'DR.YASH ','','HARSOLA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-01 12:38:58','','0000-00-00 00:00:00'),(124,0,0,'DR.TEJASH ','KARANGIYA','','TK','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-11-02 09:45:38','','0000-00-00 00:00:00'),(125,0,0,'DR.JIGAR ','','PATEL','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-03 06:00:04','','0000-00-00 00:00:00'),(126,0,0,'DR.PARUL','','HANSALIA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-03 06:57:13','','0000-00-00 00:00:00'),(127,0,0,'DR.M ','K ','KARMUR','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-03 08:56:52','','0000-00-00 00:00:00'),(128,0,0,'DR.M ','A','KARMUR','','','','','','','','',0,'C','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-03 08:57:02','','0000-00-00 00:00:00'),(129,0,0,'DR.MANDIP','','TILADA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-03 11:33:31','','0000-00-00 00:00:00'),(130,0,0,'DR.MANDIP ','','TILALA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-03 11:35:56','','0000-00-00 00:00:00'),(131,0,0,'DR.SANJAY','D','KHOKHAR','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-04 04:37:44','','0000-00-00 00:00:00'),(132,0,0,'DR.ANKIT','','PATEL','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-04 07:03:25','','0000-00-00 00:00:00'),(133,0,0,'DR.RIZAWAN ','','THAIM','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-04 13:27:28','','0000-00-00 00:00:00'),(134,0,0,'.AAKASH ','DOSHI','','AD','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','','',NULL,0,'riya','2025-11-05 09:43:48','','0000-00-00 00:00:00'),(135,0,0,'DR.AAKASH ','DOSHII','','AD','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-11-05 09:48:10','','0000-00-00 00:00:00'),(136,0,0,'DR.SONAL','','MATHUR','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-05 11:39:31','','0000-00-00 00:00:00'),(137,0,0,'DR.SANDEEPSINH','','ZALA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-05 13:07:39','','0000-00-00 00:00:00'),(138,0,0,'DR.D','V','JOSHI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-05 13:21:39','','0000-00-00 00:00:00'),(139,0,0,'DR.MAYUR ','','THAKKAR','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-05 13:33:00','','0000-00-00 00:00:00'),(140,0,0,'DR.HITESH ','','BUDDHDEV','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-05 13:53:00','','0000-00-00 00:00:00'),(141,0,0,'DR.M','A','KARMUR','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-05 14:40:39','','0000-00-00 00:00:00'),(142,0,0,'DR.M','A','KARMUR','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-05 14:41:55','','0000-00-00 00:00:00'),(143,0,0,'DR.VINOD','','RAKHOLIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-06 05:48:04','','0000-00-00 00:00:00'),(144,0,0,'DR.KIREET ','R','SHUKLA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-06 05:55:15','','0000-00-00 00:00:00'),(145,0,0,'DR.YODESH ','C','RABADIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-06 06:32:06','','0000-00-00 00:00:00'),(146,0,0,'DR.DIMPAL ','','PATEL','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-06 06:46:48','','0000-00-00 00:00:00'),(147,0,0,'DR.HIRAL','','GONDALIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-06 07:10:31','','0000-00-00 00:00:00'),(148,0,0,'DR.SHANU ','','KHER','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-07 06:23:22','','0000-00-00 00:00:00'),(149,0,0,'DR.VIMAL ','','GODHANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-07 06:39:20','','0000-00-00 00:00:00'),(150,0,0,'DR.MAYUR ','MAKASANA','','MM','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-11-07 15:35:58','','0000-00-00 00:00:00'),(151,0,0,'DR.ANKITA ','','VASANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-08 04:48:00','','0000-00-00 00:00:00'),(152,0,0,'DR.VIRENDRA ','','DHAKHADA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-08 04:53:06','','0000-00-00 00:00:00'),(153,0,0,'DR.SHAILESH','','JORIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-08 07:13:07','','0000-00-00 00:00:00'),(154,0,0,'DR.ANKIT','','MAKADIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-08 07:29:13','','0000-00-00 00:00:00'),(155,0,0,'DR.ANKIT','','MAKADIA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-08 07:29:47','','0000-00-00 00:00:00'),(156,0,0,'DR.RAJESH ','','VAGHASIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-08 08:04:32','','0000-00-00 00:00:00'),(157,0,0,'DR.PRADEEPSINH','','ZALA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-08 14:25:53','','0000-00-00 00:00:00'),(158,0,0,'DR.JAY','','KODINARIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-10 06:13:15','','0000-00-00 00:00:00'),(159,0,0,'DR.K','P','DOMADIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-10 13:56:07','','0000-00-00 00:00:00'),(160,0,0,'DR.PARTHRAJSINH','','JADEJA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-11 08:40:58','','0000-00-00 00:00:00'),(161,0,0,'DR.PARTH','','KALARIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-11 11:36:54','','0000-00-00 00:00:00'),(162,0,0,'DR.PRANAV','K.','UNADKAT','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-11 12:15:26','','0000-00-00 00:00:00'),(163,0,0,'DR.SHRADHHA','','BHALODI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-11 12:25:17','','0000-00-00 00:00:00'),(164,0,0,'DR.MAHESH','','RATHOD','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-11 12:33:17','','0000-00-00 00:00:00'),(165,0,0,'DR.JENIL','','PATEL','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-11 13:56:33','','0000-00-00 00:00:00'),(166,0,0,'DR.RAHUL ','','GONDALIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-12 05:47:01','','0000-00-00 00:00:00'),(167,0,0,'DR.HIREN','','MAKWANA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-12 11:56:34','','0000-00-00 00:00:00'),(168,0,0,'DR.DEVEN','','PANCHOLI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-12 14:20:44','','0000-00-00 00:00:00'),(169,0,0,'DR.KHUSHI','','DODIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-12 14:28:23','','0000-00-00 00:00:00'),(170,0,0,'DR.SHAILESH ','','KAGATHRA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-13 05:18:10','','0000-00-00 00:00:00'),(171,0,0,'DR.LALIT','','BODA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-13 05:38:35','','0000-00-00 00:00:00'),(172,0,0,'DR.CHETAN ','','BELADIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-13 06:58:35','','0000-00-00 00:00:00'),(173,0,0,'DR.C','P','CHATROLA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-14 04:49:32','','0000-00-00 00:00:00'),(174,0,0,'DR.ADITI THANKI','','','A','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-11-14 11:29:30','','0000-00-00 00:00:00'),(175,0,0,'DR.AMIT ','','UDANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-14 10:55:52','','0000-00-00 00:00:00'),(176,0,0,'DR.PARATIK','','GATHIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-14 12:37:52','','0000-00-00 00:00:00'),(177,0,0,'DR.PRATIK ','PESIWADIA','','PP','','','','','','','D02',0,'VI','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-11-14 18:26:28','','0000-00-00 00:00:00'),(178,0,0,'DR.RAJESH ','K ','BAGDAI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-15 04:53:33','','0000-00-00 00:00:00'),(179,0,0,'DR.JATIN','','BUMTARIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-15 06:13:06','','0000-00-00 00:00:00'),(180,0,0,'DR.ABHIDHA','R','ANJARIA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-15 06:29:41','','0000-00-00 00:00:00'),(181,0,0,'DR.HITESH ','','BHAMBHANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-15 06:57:57','','0000-00-00 00:00:00'),(182,0,0,'DR.YOGESH ','','RAICHURA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-15 07:19:50','','0000-00-00 00:00:00'),(183,0,0,'DR.YOGESH ','','RAICHURA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-15 07:19:50','','0000-00-00 00:00:00'),(184,0,0,'DR.YOGESH ','','RAICHURA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-15 07:19:50','','0000-00-00 00:00:00'),(185,0,0,'DR.BHAUTIK ','','ZALAVADIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-15 07:56:27','','0000-00-00 00:00:00'),(186,0,0,'DR.VIJAY','','KHUTTI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-15 07:58:58','','0000-00-00 00:00:00'),(187,0,0,'DR.MAITRY ','PANDYA','','MP','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-11-16 14:03:46','','0000-00-00 00:00:00'),(188,0,0,'DR.SHILPAN ','GONDALIYA','','SG','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-11-17 14:17:30','','0000-00-00 00:00:00'),(189,0,0,'DR.RAVI ','B','NAGECHA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-17 11:24:01','','0000-00-00 00:00:00'),(190,0,0,'DR.KIRAN ','','GOSAI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-17 11:31:26','','0000-00-00 00:00:00'),(191,0,0,'DR.PRADEEP','','PITHDIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-18 06:20:05','','0000-00-00 00:00:00'),(192,0,0,'DR.M','K','KORVADIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-18 08:26:39','','0000-00-00 00:00:00'),(193,0,0,'DR.SAVAN','','GHETIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-18 12:24:55','','0000-00-00 00:00:00'),(194,0,0,'DR.CHIRAG','PATEL','','CP','','','','','','','D02',0,'VI','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-11-18 23:11:27','','0000-00-00 00:00:00'),(195,0,0,'DR.PRAKASH','D','PATEL','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-19 04:35:12','','0000-00-00 00:00:00'),(196,0,0,'DR.HITESH','','PUROHIT','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-19 05:31:35','','0000-00-00 00:00:00'),(197,0,0,'DR.KINJAL','','JADAV','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-19 05:35:04','','0000-00-00 00:00:00'),(198,0,0,'DR.PARYANTSINH','','VALA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-19 05:58:05','','0000-00-00 00:00:00'),(199,0,0,'DR.S','R','RAO','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-19 06:41:19','','0000-00-00 00:00:00'),(200,0,0,'DR.ANIL','','MEVADA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-19 12:26:49','','0000-00-00 00:00:00'),(201,0,0,'DR.KULDEEP','','UNADKAT','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-19 13:18:42','','0000-00-00 00:00:00'),(202,0,0,'DR.DEVENDRA ','','TOMAR','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-20 04:48:14','','0000-00-00 00:00:00'),(203,0,0,'DR.SANDIP','','ADA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-20 05:07:21','','0000-00-00 00:00:00'),(204,0,0,'DR.KEYUR ','','SADARIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-20 06:02:56','','0000-00-00 00:00:00'),(205,0,0,'DR.KRUNAL ','L ','GODHANIA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-20 06:52:19','','0000-00-00 00:00:00'),(206,0,0,'DR.KARTIK','','MODHA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-20 11:02:28','','0000-00-00 00:00:00'),(207,0,0,'DR.PRITI ','','KAKKAD','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-20 11:45:21','','0000-00-00 00:00:00'),(208,0,0,'DR.DIXIT','','JOSHI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-21 06:17:22','','0000-00-00 00:00:00'),(209,0,0,'DR.BHAGYESH','','DAVDA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-21 12:33:37','','0000-00-00 00:00:00'),(210,0,0,'DR.K','K','RAVAL','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-21 13:31:41','','0000-00-00 00:00:00'),(211,0,0,'DR.HITESH','','GAJERA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-22 06:24:39','','0000-00-00 00:00:00'),(212,0,0,'DR.ABHISHEKH ','RAVAL','','AR','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-11-23 11:51:37','riya','2025-11-23 11:52:36'),(213,0,0,'DR.VARSHIT ','HATHI','','VH','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-11-23 12:19:00','','0000-00-00 00:00:00'),(214,0,0,'DR.AARATI','H','MAKWANA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-24 04:58:56','','0000-00-00 00:00:00'),(215,0,0,'DR.ANAND','','KOTECHA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-24 07:45:03','','0000-00-00 00:00:00'),(216,0,0,'DR.V ','J ','UNADKAT','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-24 13:21:43','','0000-00-00 00:00:00'),(217,0,0,'DR.V ','J ','UNADKAT','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-24 13:23:03','','0000-00-00 00:00:00'),(218,0,0,'DR.VIPUL ','D','BODA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-24 13:59:01','','0000-00-00 00:00:00'),(219,0,0,'DR.DAKSHA','','BUCHH','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-25 12:12:02','','0000-00-00 00:00:00'),(220,0,0,'DR.SHRIPAN ','','GONDALIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-25 13:24:09','','0000-00-00 00:00:00'),(221,0,0,'DR.HITESH','','PUROHIT','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-25 13:29:35','','0000-00-00 00:00:00'),(222,0,0,'DR.B','V','KAKKAD','','','','','','','','',0,'C','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-25 14:34:22','','0000-00-00 00:00:00'),(223,0,0,'DR.KUSH ','','RAJPUT','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-26 05:48:30','','0000-00-00 00:00:00'),(224,0,0,'DR.RUSHIKESH ','KATHRECHA','','RK','','','','','','','D02',0,'VI','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-11-26 13:16:09','','0000-00-00 00:00:00'),(225,0,0,'DR.ANKUR','THUMMAR','','AT','','','','','','','D02',0,'VI','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-11-26 16:32:36','','0000-00-00 00:00:00'),(226,0,0,'DR.NISHANT ','PATEL','','NP','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-11-26 18:51:08','riya','2025-11-26 18:52:37'),(227,0,0,'DR.RAJAN','JAGGAD','','RJ','','','','','','','D17',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-11-27 11:04:03','','0000-00-00 00:00:00'),(228,0,0,'DR.RAJAN','JAGGAD','','RJ','','','','','','','D17',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-11-27 11:04:04','','0000-00-00 00:00:00'),(229,0,0,'DR.VIJYA','MURTI','','VM','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-11-27 12:12:51','','0000-00-00 00:00:00'),(230,0,0,'DR.NISHANT ','','CHOTAI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-27 07:50:07','','0000-00-00 00:00:00'),(231,0,0,'DR.AARTI ','CHANDRANI','','AC','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-11-27 16:44:59','','0000-00-00 00:00:00'),(232,0,0,'DR.DHARMESH ','','SOLANKI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-28 04:34:19','','0000-00-00 00:00:00'),(233,0,0,'DR.PARAG ','','JASANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-28 06:18:54','','0000-00-00 00:00:00'),(234,0,0,'DR.RAVI','','KAVATHIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-28 06:29:55','','0000-00-00 00:00:00'),(235,0,0,'DR.MANISH','','GAMI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-28 11:44:46','','0000-00-00 00:00:00'),(236,0,0,'DR.OMDEV','','SINH','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-29 12:43:50','','0000-00-00 00:00:00'),(237,0,0,'DR.KAUSHAL','','VYAS','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-11-29 13:20:46','','0000-00-00 00:00:00'),(238,0,0,'DR.PRASHANT','','VYAS','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-01 12:45:01','','0000-00-00 00:00:00'),(239,0,0,'DR.PRASHANT','','VYAS','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-01 12:45:01','','0000-00-00 00:00:00'),(240,0,0,'DR.NIMISH ','P','TRIVEDI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-02 03:35:49','','0000-00-00 00:00:00'),(241,0,0,'DR.RAJENDRA','','TRIVEDI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-02 05:55:33','','0000-00-00 00:00:00'),(242,0,0,'DR.HARDIK','','BHATT','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-02 06:42:57','','0000-00-00 00:00:00'),(243,0,0,'DR.HIREN','','VAGHASIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-02 07:33:57','','0000-00-00 00:00:00'),(244,0,0,'DR.KAUSHAL','SHETH','','KS','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-12-03 11:23:54','riya','2025-12-03 11:24:19'),(245,0,0,'DR.MRUNAL','A','ASHAR','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-03 06:20:35','','0000-00-00 00:00:00'),(246,0,0,'DR.SWATI','','MAJITHIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-03 13:21:02','','0000-00-00 00:00:00'),(247,0,0,'DR.SUNIL','S','POPAT','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-04 07:34:34','','0000-00-00 00:00:00'),(248,0,0,'DR.SARANG ','WAGHMARE','','SW','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-12-04 13:33:20','','0000-00-00 00:00:00'),(249,0,0,'DR.RONAK ','BHALODIA','','RB','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-12-04 13:51:49','','0000-00-00 00:00:00'),(250,0,0,'DR.ANKIT MAKADI','','','A','','','','','','','D17',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-12-04 13:55:36','','0000-00-00 00:00:00'),(251,0,0,'DR.GUNJAN','','JOSHI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-04 10:40:40','','0000-00-00 00:00:00'),(252,0,0,'DR.SHRIYAL','','SAPARIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-04 11:23:11','','0000-00-00 00:00:00'),(253,0,0,'DR.C','L','SAPARIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-04 11:23:36','','0000-00-00 00:00:00'),(254,0,0,'DR.B','V','VARSANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-05 05:24:15','','0000-00-00 00:00:00'),(255,0,0,'DR.RAHUL ','','RANPARIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-05 05:34:21','','0000-00-00 00:00:00'),(256,0,0,'DR.VINOD','','TANNA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-05 05:38:01','','0000-00-00 00:00:00'),(257,0,0,'DR.SANDIP','H','BHATT','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-05 11:00:28','','0000-00-00 00:00:00'),(258,0,0,'DR.DHARMESH ','','OZA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-05 14:03:23','','0000-00-00 00:00:00'),(259,0,0,'DR.NARESH','SAPARIYA','','NS','','','','','','','D02',0,'VI','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-12-05 19:38:48','','0000-00-00 00:00:00'),(260,0,0,'DR.NIRAV ','','PATEL','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-06 04:41:04','','0000-00-00 00:00:00'),(261,0,0,'DR.VIJAY','','NAGECHA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-06 05:07:07','','0000-00-00 00:00:00'),(262,0,0,'DR.DILIP','','VAGHASIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-08 05:37:47','','0000-00-00 00:00:00'),(263,0,0,'DR.JIGAR','','DODIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-08 06:01:28','','0000-00-00 00:00:00'),(264,0,0,'DR.YAGNESH','','DAVE','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-08 06:10:10','','0000-00-00 00:00:00'),(265,0,0,'DR.NIRALI','','MOLIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-08 06:27:18','','0000-00-00 00:00:00'),(266,0,0,'DR.PANKAJ ','','VAISHNAV','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-08 07:47:12','','0000-00-00 00:00:00'),(267,0,0,'DR.RAKESH','','TADPADA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-08 08:57:54','','0000-00-00 00:00:00'),(268,0,0,'DR.ISHITA','','TANKARIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-08 11:53:31','','0000-00-00 00:00:00'),(269,0,0,'DR.M','M ','SOLANKI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-09 04:43:54','','0000-00-00 00:00:00'),(270,0,0,'DR.J','','JIVANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-09 05:27:31','','0000-00-00 00:00:00'),(271,0,0,'DR.PRASHANT ','','VANJAR','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-09 05:55:18','','0000-00-00 00:00:00'),(272,0,0,'DR.MADHURI','','SONI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-09 12:23:15','','0000-00-00 00:00:00'),(273,0,0,'DR.RAMESH','','KACHHATIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-10 04:53:53','','0000-00-00 00:00:00'),(274,0,0,'DR.MITESH ','','BHANDERI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-10 05:12:40','','0000-00-00 00:00:00'),(275,0,0,'DR.DARSHN','','PANCHOLI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-10 06:09:49','','0000-00-00 00:00:00'),(276,0,0,'DR.RENISH','BERA','','RB','','','','','','','D02',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-12-10 13:12:25','','0000-00-00 00:00:00'),(277,0,0,'DR.JIGNESH','','DELVADIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-10 11:36:45','','0000-00-00 00:00:00'),(278,0,0,'DR.V','','VARSANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-10 12:05:38','','0000-00-00 00:00:00'),(279,0,0,'DR.RITESH ','','KANKHRA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-10 13:04:51','','0000-00-00 00:00:00'),(280,0,0,'DR.SUNIL','','MODI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-11 05:03:10','','0000-00-00 00:00:00'),(281,0,0,'DR.NIRAV ','','MANSETA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-11 13:13:41','','0000-00-00 00:00:00'),(282,0,0,'DR.HARDIK','','VEKARIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-13 05:04:13','','0000-00-00 00:00:00'),(283,0,0,'DR.BHARAT','','KAKADIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-13 06:00:06','','0000-00-00 00:00:00'),(284,0,0,'DR.PRERNA','','SONEJIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-13 06:05:28','','0000-00-00 00:00:00'),(285,0,0,'DR.DIPAK ','','BHADARKA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-13 12:18:04','','0000-00-00 00:00:00'),(286,0,0,'DR.KHUSHBOO','','DODIYA','KD','','','','','','','D27',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-12-14 10:00:36','','0000-00-00 00:00:00'),(287,0,0,'DR.RIDDHISH','J','SAVAJIYANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-15 05:07:33','','0000-00-00 00:00:00'),(288,0,0,'DR.DIPAK','R','KANZARIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-15 05:52:13','','0000-00-00 00:00:00'),(289,0,0,'DR.D','R','DAVE','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-15 06:14:28','','0000-00-00 00:00:00'),(290,0,0,'DR.TRISHANT','','CHOTAI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-15 12:02:04','','0000-00-00 00:00:00'),(291,0,0,'DR.M','K','GOHIL','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-16 10:49:55','','0000-00-00 00:00:00'),(292,0,0,'DR.R','H','JOSHI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-16 12:12:45','','0000-00-00 00:00:00'),(293,0,0,'DR.JAYDEV','','BHUVA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-17 06:18:18','','0000-00-00 00:00:00'),(294,0,0,'DR.GAURAV','','SOLANKI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-17 12:02:03','','0000-00-00 00:00:00'),(295,0,0,'DR.JAGDIS','','KALOTRA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-18 04:19:35','','0000-00-00 00:00:00'),(296,0,0,'DR.SANJAY','','VACHANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-18 05:40:33','','0000-00-00 00:00:00'),(297,0,0,'DR.JAYESH ','','MUNDHVADIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-18 10:56:42','','0000-00-00 00:00:00'),(298,0,0,'DR.SHITANSHU','','PUJARA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-18 12:35:15','','0000-00-00 00:00:00'),(299,0,0,'DR.SHITANSHU','','PUJARA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-19 06:16:36','','0000-00-00 00:00:00'),(300,0,0,'DR.ISHWAR','','','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-19 12:12:53','','0000-00-00 00:00:00'),(301,0,0,'DR.KASHYAP','','','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-19 13:30:55','','0000-00-00 00:00:00'),(302,0,0,'DR.YAGNESH','','PUROHIT','YP','','','','','','','D27',0,'V','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-12-20 13:35:02','','0000-00-00 00:00:00'),(303,0,0,'DR.MEET ','JAGANI','','MJ','','','','','','','D02',0,'VI','','','','','','','N','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'riya','2025-12-21 12:20:40','','0000-00-00 00:00:00'),(304,0,0,'DR.BAKUL','','CHOTHANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-22 06:48:51','','0000-00-00 00:00:00'),(305,0,0,'DR.DEEPAK','','RAMANI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-22 07:30:27','','0000-00-00 00:00:00'),(306,0,0,'DR.DEVANG','','MANDALIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-22 07:55:54','','0000-00-00 00:00:00'),(307,0,0,'DR.TRUPTI ','','SAVALIYA','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-23 04:38:05','','0000-00-00 00:00:00'),(308,0,0,'DR.HEMANG ','','DOSHI','','','','','','','','',0,'R','','','','','','','Y','Y','','','0000-00-00','0000-00-00','','N','Y','',NULL,0,'','2025-12-23 07:05:44','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `doctor_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `doctor_master_unit_wise_bgh`
--

DROP TABLE IF EXISTS `doctor_master_unit_wise_bgh`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `doctor_master_unit_wise_bgh` (
  `dept_id` varchar(10) NOT NULL,
  `mon_doctor` int(11) NOT NULL,
  `mon_unit` int(11) NOT NULL,
  `tue_doctor` int(11) NOT NULL,
  `tue_unit` int(11) NOT NULL,
  `wed_doctor` int(11) NOT NULL,
  `wed_unit` int(11) NOT NULL,
  `thu_doctor` int(11) NOT NULL,
  `thu_unit` int(11) NOT NULL,
  `fri_doctor` int(11) NOT NULL,
  `fri_unit` int(11) NOT NULL,
  `sat_doctor` int(11) NOT NULL,
  `sat_unit` int(11) NOT NULL,
  `sun_doctor` int(11) NOT NULL,
  `sun_unit` int(11) NOT NULL,
  PRIMARY KEY (`dept_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `doctor_master_unit_wise_bgh`
--

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

--
-- Table structure for table `doctor_preferences`
--

DROP TABLE IF EXISTS `doctor_preferences`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `doctor_preferences` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `doctor_id` int(11) NOT NULL,
  `followupDateAutoCalculate` enum('Y','N') NOT NULL DEFAULT 'N',
  `CreatedBy` varchar(100) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(100) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`doctor_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `doctor_preferences`
--

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

--
-- Table structure for table `doctor_visit`
--

DROP TABLE IF EXISTS `doctor_visit`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `doctor_visit` (
  `doctor_charge_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `doctor_id` int(11) NOT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `type_id` varchar(6) NOT NULL,
  `date` date NOT NULL,
  `time` time NOT NULL,
  `charges` int(11) NOT NULL,
  `bill_no` varchar(11) NOT NULL,
  `user_id` varchar(20) NOT NULL,
  `last_updated_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`doctor_charge_id`),
  KEY `ipd_reg_id` (`ipd_reg_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `doctor_visit`
--

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

--
-- Table structure for table `doctors_messages`
--

DROP TABLE IF EXISTS `doctors_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `doctors_messages` (
  `msg_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `message` varchar(60) NOT NULL,
  `flag` enum('P','S') NOT NULL DEFAULT 'P' COMMENT 'P- pending, S- Seen',
  `sender` varchar(20) NOT NULL,
  `receiver` varchar(20) NOT NULL,
  `msg_date_time` datetime NOT NULL,
  PRIMARY KEY (`msg_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `doctors_messages`
--

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

--
-- Table structure for table `document_catalogue`
--

DROP TABLE IF EXISTS `document_catalogue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `document_catalogue` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `opd_reg_id` bigint(20) NOT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `service_request_id` int(11) NOT NULL,
  `date_and_time` datetime NOT NULL,
  `folder_id` int(11) NOT NULL,
  `display_file_name` varchar(50) NOT NULL,
  `original_file_name` varchar(50) NOT NULL,
  `file_path` varchar(100) NOT NULL,
  `document_url` text NOT NULL COMMENT 'save document url with file name',
  `google_drive_file_link` text,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `document_catalogue`
--

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

--
-- Table structure for table `document_folders`
--

DROP TABLE IF EXISTS `document_folders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `document_folders` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `patient_id` int(11) NOT NULL,
  `folder_name` varchar(50) NOT NULL,
  `folder_priority` int(11) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `default_folder` enum('Y','N') NOT NULL DEFAULT 'N',
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`,`company_id`,`branch_id`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`folder_name`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `document_folders`
--

LOCK TABLES `document_folders` WRITE;
/*!40000 ALTER TABLE `document_folders` DISABLE KEYS */;
INSERT INTO `document_folders` VALUES (0,0,1,0,'OP Consulting',1,'Y','Y','thims','2018-12-07 11:00:00','','0000-00-00 00:00:00'),(0,0,2,0,'IP Consulting',2,'Y','Y','thims','2018-12-07 11:00:00','','0000-00-00 00:00:00'),(0,0,3,0,'Consent',3,'Y','Y','thims','2018-12-07 11:00:00','','0000-00-00 00:00:00'),(0,0,4,0,'Lab Reports',4,'Y','Y','thims','2018-12-07 11:00:00','','0000-00-00 00:00:00'),(0,0,5,0,'Radiology Reports',5,'Y','Y','thims','2018-12-07 11:00:00','','0000-00-00 00:00:00'),(0,0,6,0,'Billing',6,'Y','Y','thims','2018-12-07 11:00:00','','0000-00-00 00:00:00'),(0,0,7,0,'Others',7,'Y','Y','thims','2018-12-07 11:00:00','','0000-00-00 00:00:00'),(0,0,8,0,'Photo & ID',8,'Y','Y','thims','2018-12-07 11:00:00','','0000-00-00 00:00:00'),(0,0,10,0,'Cardiology Report',10,'Y','Y','thims','2022-11-07 14:08:54','','0000-00-00 00:00:00'),(0,0,11,0,'Media File',11,'Y','Y','thims','2023-07-03 14:08:54','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `document_folders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `document_setup`
--

DROP TABLE IF EXISTS `document_setup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `document_setup` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `programlist_id` int(11) NOT NULL,
  `hospital_code` int(3) unsigned zerofill NOT NULL,
  `document_type` varchar(3) NOT NULL,
  `document_id` varchar(8) NOT NULL,
  `document_name` varchar(100) NOT NULL,
  `document_no` varchar(15) NOT NULL,
  `default_folder_id` int(11) NOT NULL,
  `page_size` varchar(2) NOT NULL,
  `page_type` char(1) NOT NULL,
  `page_orientation` char(1) NOT NULL,
  `page_tray` tinyint(3) unsigned NOT NULL,
  `page_LM` float NOT NULL,
  `page_TM` float NOT NULL,
  `page_RM` float NOT NULL,
  `page_BM` float NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `document_setup`
--

LOCK TABLES `document_setup` WRITE;
/*!40000 ALTER TABLE `document_setup` DISABLE KEYS */;
INSERT INTO `document_setup` VALUES (0,0,1,0,001,'998','','','',0,'A4','P','P',1,1,1,1,1,'Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,2,0,001,'999','','','',0,'A4','N','P',1,0.5,0.5,0.5,0.5,'Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,3,0,000,'DO','105','','',2,'A4','P','P',1,13,37,13,13,'Y','thims','2019-06-12 18:56:50','','0000-00-00 00:00:00'),(0,0,4,0,001,'DO','130','','',1,'A4','P','P',1,12.7,40,12.7,12.7,'Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,5,0,001,'DO','132','','',1,'A5','P','P',1,12.7,25,12.7,25,'Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,6,0,001,'DO','133','','',1,'A4','P','P',1,12.7,40,12.7,12.7,'Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,7,0,001,'DO','14','','',4,'A4','P','P',1,0.5,1.3,0.5,1,'Y','','0000-00-00 00:00:00','thims','2019-01-05 12:01:19'),(0,0,8,0,001,'DO','146','','',2,'A4','N','P',1,12.7,30,12.7,12.7,'Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,9,0,001,'DO','216','','',2,'A4','P','P',1,12.7,38,12.7,12.7,'Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,10,0,000,'DO','CASE_P','','',5,'A4','P','P',1,10,25,10,30,'Y','thims','2020-04-02 14:57:53','','0000-00-00 00:00:00'),(0,0,11,0,000,'TE','1','','',0,'A4','P','P',1,1,1,1,1,'Y','thims','2018-12-03 10:31:30','thims','2018-12-04 07:23:50'),(0,0,12,0,000,'TE','135','','',5,'A4','P','P',1,18,20,10,15,'Y','thims','2019-06-24 12:40:50','thims','2019-06-24 14:24:35'),(0,0,13,0,000,'TE','74','','',5,'A4','N','P',1,10,12,5,5,'Y','thims','2019-06-07 18:27:06','','0000-00-00 00:00:00'),(0,0,14,0,000,'TE','78','','',5,'A4','N','P',1,10,12,5,5,'Y','thims','2019-06-07 18:29:12','','0000-00-00 00:00:00'),(0,0,15,0,000,'TE','RADA4','Radilology Report','',5,'A4','P','P',1,20,30,10,28,'Y','thims','2020-02-28 14:57:53','thims','2021-02-10 16:50:10'),(0,0,16,0,000,'DO','OPBILL','OP Bill','',6,'A4','N','P',1,25,8,15,10,'Y','thims','2020-05-09 18:34:00','','0000-00-00 00:00:00'),(0,0,17,0,000,'DO','IPBILL','IP Bill','',6,'A4','N','P',1,20,8,15,10,'Y','thims','2020-05-09 18:35:48','thims','2025-11-11 06:59:43'),(0,0,18,0,000,'DO','IPRECPT','Receipt (Advance, Credit/Debit Note, General)','',6,'A4','N','P',1,25,8,15,10,'Y','thims','2020-05-09 18:37:00','','0000-00-00 00:00:00'),(0,0,19,0,000,'DO','DISCSUMM','Discharge Summary','',2,'A4','P','P',1,15,30,10,20,'Y','thims','2020-05-09 18:38:24','yatin','2021-01-02 11:08:40'),(0,0,20,0,000,'DO','LBREPORT','LAB Report','',4,'A4','P','P',1,15,33,10,25,'Y','thims','2020-05-09 18:39:37','thims','2020-05-09 18:59:40'),(0,0,21,0,000,'DO','FCREPORT','First Consulting Report','',1,'A4','P','P',1,15,37,10,10,'Y','thims','2020-05-09 18:40:52','','0000-00-00 00:00:00'),(0,0,22,0,000,'DO','RXREPORT','Prescription (Rx)','',1,'A4','P','P',1,15,37,10,10,'Y','thims','2020-05-09 18:42:21','','0000-00-00 00:00:00'),(0,0,23,0,000,'DO','ORDER','Investigation Order','',1,'A4','N','P',1,15,10,10,5,'Y','thims','2020-05-09 18:43:05','','0000-00-00 00:00:00'),(0,0,24,0,000,'DO','PO','Purchase Order','',7,'A4','P','P',1,15,40,10,15,'Y','yatin','2020-11-27 11:38:28','yatin','2021-02-03 10:19:21'),(0,0,25,0,000,'DO','POPDF','Purchase Order PDF','',7,'A4','P','P',1,15,5,10,15,'Y','yatin','2020-11-27 11:39:01','yatin','2020-11-27 13:36:27'),(0,0,26,0,000,'DO','EXVOUC','EXPENSE VOUCHER','',5,'A5','P','P',1,10,25,10,30,'Y','thims','2020-04-02 14:57:53','thims','2020-05-06 09:13:09'),(0,0,27,0,000,'DO','PHEXVOUC','PHARMACY EXPENSE VOUCHER','',5,'A5','N','P',1,10,25,10,30,'Y','thims','2020-12-14 14:57:53','','0000-00-00 00:00:00'),(0,0,28,0,000,'DO','LAB','LAB Report PDF','',4,'A4','N','P',1,15,30,5,10,'Y','thims','2021-04-16 17:33:10','','0000-00-00 00:00:00'),(0,0,29,0,000,'DO','INS_COV','Insurance Cover Letter','',5,'A4','N','P',1,10,10,10,10,'Y','thims','2022-03-22 14:57:53','','0000-00-00 00:00:00'),(0,0,30,0,000,'DO','DISCSLIP','Discharge Slip','',0,'A4','N','P',1,15,10,10,10,'Y','thims','2023-02-21 09:40:40','','0000-00-00 00:00:00'),(0,0,31,0,000,'DO','ADMSLIP','Admission Slip','',0,'A4','N','P',1,15,10,10,10,'Y','thims','2023-02-21 09:40:40','','0000-00-00 00:00:00'),(0,0,32,0,000,'DO','LABPWL','LAB REPORT With Logo','',4,'A4','N','P',1,5,5,5,5,'Y','thims','2024-08-09 06:55:32','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `document_setup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `drug_master`
--

DROP TABLE IF EXISTS `drug_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `drug_master` (
  `drug_cd` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `drug_name` varchar(250) NOT NULL,
  `drug_adm` varchar(10) NOT NULL COMMENT 'Drug Administration',
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  PRIMARY KEY (`drug_cd`),
  UNIQUE KEY `drug_name` (`drug_name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `drug_master`
--

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

--
-- Table structure for table `drug_temp`
--

DROP TABLE IF EXISTS `drug_temp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `drug_temp` (
  `drug_adm` varchar(30) NOT NULL,
  `drug_adm_description` varchar(100) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  UNIQUE KEY `drug_adm` (`drug_adm`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `drug_temp`
--

LOCK TABLES `drug_temp` WRITE;
/*!40000 ALTER TABLE `drug_temp` DISABLE KEYS */;
INSERT INTO `drug_temp` VALUES ('AD','','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('AS','','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('AU','','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('EPIDURAL','','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('IM','','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('IV','','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ORAL','','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('P/N','','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('P/R','','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('P/RT','','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('P/V','','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PIET/TT','','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('S/C','','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `drug_temp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `education_master`
--

DROP TABLE IF EXISTS `education_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `education_master` (
  `education_id` tinyint(4) NOT NULL AUTO_INCREMENT,
  `education_level` varchar(50) NOT NULL,
  `education_is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`education_id`),
  UNIQUE KEY `education_level` (`education_level`),
  KEY `FK_education_created_user` (`created_by`),
  KEY `FK_education_lastmodified_user` (`lastmodified_by`)
) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `education_master`
--

LOCK TABLES `education_master` WRITE;
/*!40000 ALTER TABLE `education_master` DISABLE KEYS */;
INSERT INTO `education_master` VALUES (1,'MD Medicine','Y','thims','2019-02-23 00:00:00',NULL,NULL),(3,'B.Com.','Y','thims','2019-02-23 00:00:00',NULL,NULL),(4,'MBA- HR','Y','thims','2019-02-23 00:00:00',NULL,NULL),(5,'PGDHM- Hospital Administration','Y','thims','2019-02-23 00:00:00',NULL,'2020-02-12 12:29:29'),(6,'Diploma - Computer','Y','thims','2019-02-23 00:00:00',NULL,NULL),(7,'B.C.A.','Y','thims','2019-02-23 00:00:00',NULL,NULL),(8,'B.A.','Y','thims','2019-02-23 00:00:00',NULL,NULL),(9,'M. Sc.','Y','thims','2019-02-23 00:00:00',NULL,NULL),(10,'MLT','Y','thims','2019-02-23 00:00:00',NULL,NULL),(11,'ANM','Y','thims','2019-02-23 00:00:00',NULL,NULL),(12,'M.Com.','Y','thims','2019-02-23 00:00:00',NULL,NULL),(13,'PGDCA','Y','thims','2019-02-23 00:00:00',NULL,NULL),(14,'ITI - Electrical','Y','thims','2019-02-23 00:00:00',NULL,NULL),(15,'MBA - Marketing','Y','thims','2019-02-23 00:00:00',NULL,NULL),(16,'GNM','Y','thims','2019-02-23 00:00:00',NULL,NULL),(17,'NPM','Y','thims','2019-02-23 00:00:00',NULL,NULL),(18,'ITI - Plumbing','Y','thims','2019-02-23 00:00:00',NULL,NULL),(19,'BHMS','Y','thims','2019-02-23 00:00:00',NULL,NULL),(20,'MHA','Y','thims','2019-02-23 00:00:00',NULL,NULL),(21,'B.Sc. (Nursing)','Y','thims','2019-02-23 00:00:00',NULL,NULL),(23,'MCA','Y','kinjal','2019-05-01 11:34:51',NULL,'2020-02-12 12:29:59'),(24,'B. Pharm.','Y','kinjal','2019-05-01 11:46:53',NULL,NULL),(26,'Diploma - Electrical','Y','kinjal','2019-05-01 12:08:09',NULL,NULL),(27,'M. Sc. IT','Y','kinjal','2019-05-03 10:11:41',NULL,'2020-02-12 12:30:36'),(28,'Diploma - Nursing','Y','kinjal','2019-05-23 12:13:35',NULL,NULL),(29,'OT Assistant & Technician','Y','kinjal','2019-05-27 10:44:21',NULL,NULL),(31,'Medical Assistant Course','Y','kinjal','2019-06-02 11:33:27',NULL,NULL),(32,'1 Year Nurse Assistant Course','Y','kinjal','2019-06-02 11:36:37',NULL,NULL),(33,'B.B.A.','Y','kinjal','2019-06-10 11:30:23','kinjal','2020-02-12 12:31:16'),(34,'HSC','Y','kinjal','2019-06-24 11:22:54','kinjal','2020-02-12 12:31:41'),(35,'SSC','Y','kinjal','2019-06-24 11:22:58',NULL,NULL),(36,'Dilploma In Lab Technology','Y','kinjal','2019-06-24 11:23:29',NULL,NULL),(37,'First Aid & Patient Care','Y','kinjal','2019-07-10 12:19:46',NULL,NULL),(38,'MBA- Finance','Y','kinjal','2019-07-17 17:24:42',NULL,NULL),(39,'D. Pharm.','Y','kinjal','2019-08-01 11:10:41',NULL,NULL),(40,'MBBS','Y','kinjal','2019-08-16 10:46:06',NULL,NULL),(41,'MLW','Y','kinjal','2019-09-02 10:38:45',NULL,NULL),(42,'Physician Assistant Course','Y','kinjal','2019-09-17 11:56:37',NULL,NULL),(43,'M. Pharm.','Y','kinjal','2019-09-23 10:07:11',NULL,NULL),(44,'MRI Technician Course','Y','kinjal','2019-10-15 10:47:17',NULL,NULL),(47,'Diploma- Optometry','Y','kinjal','2020-01-07 15:01:51',NULL,NULL),(48,'Hospital Assistant & Tech','Y','kinjal','2020-01-09 11:53:10',NULL,NULL),(49,'B.Sc.','Y','kinjal','2020-01-10 11:12:51',NULL,NULL),(50,'BAMS','Y','kinjal','2020-02-12 11:52:19',NULL,NULL),(51,'MBBS+DMRE','Y','kinjal','2020-02-13 10:48:47',NULL,NULL),(52,'Diploma - Ophthaology','Y','Kinjal','2021-05-13 10:16:41',NULL,NULL),(53,'DGO','Y','Kinjal','2021-05-17 10:20:42',NULL,NULL),(54,'MPT','Y','kinjal','2021-07-07 17:35:46',NULL,NULL),(55,'B.P.T.','Y','kinjal','2021-07-07 17:35:57',NULL,NULL),(56,'Dialysis Technician Course','Y','kinjal','2021-07-22 16:23:47',NULL,NULL);
/*!40000 ALTER TABLE `education_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_configuration`
--

DROP TABLE IF EXISTS `email_configuration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_configuration` (
  `Host` varchar(100) NOT NULL,
  `Username` varchar(100) NOT NULL,
  `From` varchar(100) NOT NULL,
  `Password` varchar(100) NOT NULL,
  `Port` varchar(5) NOT NULL,
  `SMTP_Secure` varchar(10) NOT NULL,
  `SMTP_Auth` varchar(6) NOT NULL,
  PRIMARY KEY (`Host`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_configuration`
--

LOCK TABLES `email_configuration` WRITE;
/*!40000 ALTER TABLE `email_configuration` DISABLE KEYS */;
INSERT INTO `email_configuration` VALUES ('smtp.gmail.com','techsmithbackup@gmail.com','techsmithbackup@gmail.com','ujtzmhjmmmhokrqo','587','','true');
/*!40000 ALTER TABLE `email_configuration` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_setup`
--

DROP TABLE IF EXISTS `email_setup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_setup` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `email_code` varchar(15) NOT NULL,
  `subject` varchar(50) NOT NULL,
  `content` text NOT NULL,
  `footer` varchar(50) NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_setup`
--

LOCK TABLES `email_setup` WRITE;
/*!40000 ALTER TABLE `email_setup` DISABLE KEYS */;
INSERT INTO `email_setup` VALUES (2,0,0,'RADREPORT','LABORATORY REPORT','Dear Sir/Madam - Please find attach Pathology Test Report(s).Regards.','','thims','2020-07-08 00:00:00','','0000-00-00 00:00:00'),(6,0,0,'WHATSAPPLAB','WhatsApp Conent','Please find your LAB Reports are attached. Wish you speedy recovery and better health.','','thims','2021-04-27 16:13:04','','0000-00-00 00:00:00'),(3,0,0,'POAPPROVED','Purchase Order','Purchase Order Status : Approved <br/> Please see attached order for supplies. <br/> If you have any questions, please contact us. <br/> Thank you for your service.','','thims','2020-09-03 00:00:00','','0000-00-00 00:00:00'),(4,0,0,'POCLOSED','Purchase Order','Purchase Order Status : Closed <br/> Please see attached order for supplies. <br/> If you have any questions, please contact us. <br/> Thank you for your service.','','thims','2020-09-03 00:00:00','','0000-00-00 00:00:00'),(5,0,0,'POCANCELLED','Purchase Order','Purchase Order Status : Cancelled <br/> Please see attached order for supplies. <br/> If you have any questions, please contact us. <br/> Thank you for your service.','','thims','2020-09-03 00:00:00','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `email_setup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `employee_address`
--

DROP TABLE IF EXISTS `employee_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_address` (
  `employee_address_id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `employee_id` mediumint(9) NOT NULL,
  `address_type` enum('P','C') NOT NULL DEFAULT 'P' COMMENT 'P - Present Address, C - Constant (Permanent) Adress',
  `address_line1` varchar(100) NOT NULL,
  `address_line2` varchar(100) NOT NULL,
  `city` varchar(30) NOT NULL,
  `state` varchar(30) NOT NULL,
  `pincode` mediumint(9) NOT NULL,
  `country_code` char(2) NOT NULL DEFAULT 'IN',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`employee_address_id`),
  UNIQUE KEY `employee_address` (`employee_id`,`address_type`),
  KEY `FK_employeeaddress_created_user` (`created_by`),
  KEY `FK_employeeaddress_lastmodified_user` (`lastmodified_by`),
  CONSTRAINT `FK_employeeaddress_employeeid` FOREIGN KEY (`employee_id`) REFERENCES `employee_master` (`employee_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_address`
--

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

--
-- Table structure for table `employee_comp_work`
--

DROP TABLE IF EXISTS `employee_comp_work`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_comp_work` (
  `emp_comp_id` int(11) NOT NULL AUTO_INCREMENT,
  `employee_id` mediumint(9) NOT NULL,
  `from_date` date NOT NULL,
  `status` enum('pending','approved','rejected','cancelled') NOT NULL DEFAULT 'pending',
  `comment` varchar(30) NOT NULL,
  `approver_comment` varchar(30) NOT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`emp_comp_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_comp_work`
--

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

--
-- Table structure for table `employee_daily_attendance`
--

DROP TABLE IF EXISTS `employee_daily_attendance`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_daily_attendance` (
  `employee_id` int(11) NOT NULL,
  `attendance_date` date NOT NULL,
  `shift_id` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
  `start_time` time NOT NULL,
  `end_time` time NOT NULL,
  `total_duration` time NOT NULL,
  `ot_hours` time NOT NULL,
  `gap_duration` float NOT NULL,
  `net_duration` float NOT NULL,
  `attendance_flag` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `updated_attendance_flag` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `created_by` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
  `created_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `lastmodified_by` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
  `lastmodified_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`employee_id`,`attendance_date`),
  KEY `employee_id` (`attendance_date`,`employee_id`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_daily_attendance`
--

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

--
-- Table structure for table `employee_daily_time_correction`
--

DROP TABLE IF EXISTS `employee_daily_time_correction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_daily_time_correction` (
  `employee_id` int(11) NOT NULL,
  `attendance_date` date NOT NULL,
  `start_time_original` time NOT NULL,
  `end_time_original` time NOT NULL,
  `start_time_entered` time NOT NULL,
  `end_time_entered` time NOT NULL,
  `status` enum('R','A','C') COLLATE utf8_unicode_ci NOT NULL,
  `approved_by` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
  `remark` varchar(150) COLLATE utf8_unicode_ci NOT NULL,
  `ot_hours` time NOT NULL COMMENT 'Comp. off hours',
  `ot_hours_approved` time NOT NULL,
  `leave_date` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `ot_days_pending_for_comp_off` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
  `compensation_status` enum('R','A','C','N') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'N' COMMENT 'R- Request,\r\nA- Approved,\r\nC- Rejected,\r\nN- No Request',
  `ot_hours2` time NOT NULL COMMENT 'Over time hours',
  `created_by` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
  `created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `lastmodified_by` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
  `lastmodified_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`employee_id`,`attendance_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_daily_time_correction`
--

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

--
-- Table structure for table `employee_dependents`
--

DROP TABLE IF EXISTS `employee_dependents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_dependents` (
  `employee_dependent_id` int(11) NOT NULL AUTO_INCREMENT,
  `employee_id` mediumint(9) NOT NULL,
  `name` varchar(45) NOT NULL,
  `relationship` varchar(30) NOT NULL,
  `dob` date NOT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`employee_dependent_id`),
  KEY `FK_employeedependent_created_user` (`created_by`),
  KEY `FK_employeedependent_lastmodified_user` (`lastmodified_by`),
  KEY `FK_employeedependent_id` (`employee_id`),
  CONSTRAINT `FK_employeedependent_id` FOREIGN KEY (`employee_id`) REFERENCES `employee_master` (`employee_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_dependents`
--

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

--
-- Table structure for table `employee_education`
--

DROP TABLE IF EXISTS `employee_education`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_education` (
  `employee_education_id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `employee_id` mediumint(9) NOT NULL,
  `education_level_id` tinyint(4) NOT NULL,
  `year_of_passing` date NOT NULL,
  `university` varchar(50) NOT NULL,
  `score` float NOT NULL DEFAULT '0',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`employee_education_id`),
  KEY `FK_employeeeducation_id` (`employee_id`),
  KEY `FK_employeeeducation_created_user` (`created_by`),
  KEY `FK_employeeeducation_lastmodified_user` (`lastmodified_by`),
  CONSTRAINT `FK_employeeeducation_id` FOREIGN KEY (`employee_id`) REFERENCES `employee_master` (`employee_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_education`
--

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

--
-- Table structure for table `employee_emergency_contact`
--

DROP TABLE IF EXISTS `employee_emergency_contact`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_emergency_contact` (
  `employee_emergency_contact_id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `employee_id` mediumint(9) NOT NULL,
  `name` varchar(45) NOT NULL,
  `relationship` varchar(30) NOT NULL,
  `home_telephone` varchar(15) DEFAULT NULL,
  `office_telephone` varchar(15) DEFAULT NULL,
  `mobile` varchar(15) NOT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`employee_emergency_contact_id`),
  KEY `FK_empemergencycontact_created_user` (`created_by`),
  KEY `FK_empemergencycontact_lastmodified_user` (`lastmodified_by`),
  KEY `FK_employeeemergencycontact_id` (`employee_id`),
  CONSTRAINT `FK_employeeemergencycontact_id` FOREIGN KEY (`employee_id`) REFERENCES `employee_master` (`employee_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_emergency_contact`
--

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

--
-- Table structure for table `employee_exitformality_exitinterview`
--

DROP TABLE IF EXISTS `employee_exitformality_exitinterview`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_exitformality_exitinterview` (
  `exitformality_interview_answer_id` int(11) NOT NULL AUTO_INCREMENT,
  `employee_id` mediumint(9) NOT NULL,
  `interview_questions_id` int(11) NOT NULL,
  `answer` text,
  `is_submitted` enum('Y','N') NOT NULL DEFAULT 'N',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`exitformality_interview_answer_id`),
  KEY `FK_createdby` (`created_by`),
  KEY `FK_lastmodifiedby` (`lastmodified_by`),
  KEY `FK_interview_questions_id` (`interview_questions_id`),
  KEY `FK_employeeid` (`employee_id`),
  CONSTRAINT `FK_answer_employeeid` FOREIGN KEY (`employee_id`) REFERENCES `employee_master` (`employee_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_answer_interview_questions_id` FOREIGN KEY (`interview_questions_id`) REFERENCES `exitformality_interview_questions` (`exitformality_interview_questions_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_exitformality_exitinterview`
--

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

--
-- Table structure for table `employee_holiday_eligibility`
--

DROP TABLE IF EXISTS `employee_holiday_eligibility`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_holiday_eligibility` (
  `year` int(11) NOT NULL,
  `total_holidays` tinyint(4) NOT NULL,
  `fixed_holidays` tinyint(4) NOT NULL,
  `optional_holidays` tinyint(4) NOT NULL,
  `CreatedBy` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`year`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_holiday_eligibility`
--

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

--
-- Table structure for table `employee_languages`
--

DROP TABLE IF EXISTS `employee_languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_languages` (
  `employee_language_id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `employee_id` mediumint(9) NOT NULL,
  `language_tag` varchar(10) NOT NULL,
  `fluency` enum('R','W','S') NOT NULL COMMENT 'R - Read, W - Write, S - Speak',
  `competency` enum('G','P') NOT NULL COMMENT 'G - Good, P - Poor',
  `comments` varchar(50) DEFAULT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`employee_language_id`),
  KEY `FK_language_tag` (`language_tag`),
  KEY `FK_employeelanaguage_created_user` (`created_by`),
  KEY `FK_employeelanaguage_lastmodified_user` (`lastmodified_by`),
  KEY `FK_employeelanguage_id` (`employee_id`),
  CONSTRAINT `FK_employeelanguage_id` FOREIGN KEY (`employee_id`) REFERENCES `employee_master` (`employee_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_languages`
--

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

--
-- Table structure for table `employee_leave`
--

DROP TABLE IF EXISTS `employee_leave`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_leave` (
  `employee_leave_id` int(11) NOT NULL AUTO_INCREMENT,
  `employee_id` mediumint(9) NOT NULL,
  `leave_type_id` tinyint(4) NOT NULL,
  `leave_from` date NOT NULL,
  `leave_to` date NOT NULL,
  `partial_days` enum('None','all','start','end','start_end') NOT NULL DEFAULT 'None',
  `is_half_day` enum('Y','N') NOT NULL DEFAULT 'N',
  `apply_for` enum('1','2') DEFAULT NULL,
  `no_of_leaves` float NOT NULL DEFAULT '0',
  `comment` varchar(30) NOT NULL,
  `approver_comment` varchar(30) NOT NULL,
  `leave_status` enum('pending','approved','rejected','cancelled') NOT NULL DEFAULT 'pending',
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`employee_leave_id`),
  KEY `FK_employee_leave_leave_type` (`leave_type_id`),
  KEY `FK_employee_leave_createduser` (`created_by`),
  KEY `FK_employee_leave_lastmodifieduser` (`lastmodified_by`),
  KEY `FK_employee_leave_employeeid` (`employee_id`,`leave_from`,`leave_type_id`) USING BTREE,
  CONSTRAINT `FK_employee_leave_employeeid` FOREIGN KEY (`employee_id`) REFERENCES `employee_master` (`employee_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_employee_leave_leave_type` FOREIGN KEY (`leave_type_id`) REFERENCES `leave_type_master` (`leave_type_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_leave`
--

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

--
-- Table structure for table `employee_leave_entitlement`
--

DROP TABLE IF EXISTS `employee_leave_entitlement`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_leave_entitlement` (
  `employee_leave_entitlement_id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `employee_id` mediumint(9) NOT NULL,
  `leave_type_id` tinyint(4) NOT NULL,
  `leave_period_from` date NOT NULL,
  `leave_period_to` date NOT NULL,
  `month_up_to` date NOT NULL,
  `entitlement` float NOT NULL DEFAULT '0',
  `leave_taken` float NOT NULL DEFAULT '0',
  `entitlement_laps` float NOT NULL DEFAULT '0' COMMENT 'The entitlements is calculated after reducing these laps days. So, it is for information.',
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(20) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`employee_leave_entitlement_id`),
  KEY `FK_leave_entitlement_leave_type` (`leave_type_id`),
  KEY `FK_leave_entitlement_created_user` (`created_by`),
  KEY `FK_leave_entitlement_lastmodified_user` (`lastmodified_by`),
  KEY `FK_leave_entitlement_employeeid` (`employee_id`),
  KEY `employee_id` (`employee_id`,`leave_type_id`,`leave_period_from`,`leave_period_to`) USING BTREE,
  KEY `employee_id_2` (`employee_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_leave_entitlement`
--

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

--
-- Table structure for table `employee_master`
--

DROP TABLE IF EXISTS `employee_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_master` (
  `employee_id` mediumint(9) NOT NULL,
  `employee_name` varchar(60) NOT NULL,
  `employee_pic` blob,
  `employee_status` enum('A','R','Ab','S','movetopayroll') NOT NULL DEFAULT 'A' COMMENT 'A - ''Active'', R - ''Resigned'',Ab - ''Absconded'',S - ''Separated''',
  `status_effective_date` date DEFAULT NULL,
  `absconded_date` date DEFAULT NULL,
  `resigned_date` date DEFAULT NULL,
  `last_working_date` date DEFAULT NULL,
  `employee_group` enum('emerald','ruby','diamond','sapphire') DEFAULT NULL,
  `employee_gender` enum('M','F') DEFAULT NULL,
  `employee_dob` date NOT NULL,
  `employee_blood_group` enum('A+','B+','A-','B-','AB+','AB-','O+','O-') DEFAULT NULL,
  `employee_father_name` varchar(35) DEFAULT NULL,
  `employee_marital_status` enum('U','M','D','W') DEFAULT NULL COMMENT '''U'' - Unmarried,''M'' - Married,''D''-Divorced,''W''- Widwoed',
  `employee_spouse_name` varchar(20) DEFAULT NULL,
  `employee_kids` tinyint(4) NOT NULL,
  `first_kid` varchar(45) DEFAULT NULL,
  `second_kid` varchar(45) DEFAULT NULL,
  `employee_aadhar_no` varchar(12) DEFAULT NULL,
  `employee_pan_no` varchar(10) DEFAULT NULL,
  `is_pf_registration` enum('Y','N') NOT NULL DEFAULT 'N',
  `other_clause` varchar(40) DEFAULT NULL,
  `registration1` varchar(20) DEFAULT NULL,
  `registration2` varchar(20) DEFAULT NULL,
  `nursing_council` varchar(30) DEFAULT NULL,
  `indeminity_certificate` enum('Y','N') NOT NULL DEFAULT 'N',
  `salary_type` enum('ctc','per_hour','per_day','per_visit','mg','stipend') NOT NULL DEFAULT 'ctc',
  `ctc` float(9,2) NOT NULL DEFAULT '0.00',
  `comp_off` enum('Yes','No','OT','BOTH') NOT NULL DEFAULT 'No' COMMENT 'Compensatory Off or Overtime Allowed, OR BOTH',
  `Hours_For_Compoff` varchar(5) NOT NULL DEFAULT '8',
  `ABRY` enum('Y','N') NOT NULL DEFAULT 'N',
  `employee_uan_no` varchar(15) DEFAULT NULL,
  `experience_before_joining` float(9,2) DEFAULT '0.00' COMMENT 'Storing Experience In Years',
  `employee_home_phone` varchar(15) DEFAULT NULL,
  `employee_office_phone` varchar(15) DEFAULT NULL,
  `employee_mobile` varchar(15) DEFAULT NULL,
  `employee_work_email` varchar(50) DEFAULT NULL,
  `employee_personal_email` varchar(50) DEFAULT NULL,
  `employee_bank_name` varchar(35) DEFAULT NULL,
  `employee_bank_acct_no` varchar(18) DEFAULT NULL,
  `employee_bank_ifsc_code` varchar(11) DEFAULT NULL,
  `employee_bank_address` varchar(250) NOT NULL,
  `employee_bank_account_type` varchar(10) NOT NULL,
  `employee_is_police_verification_done` enum('Y','N') NOT NULL DEFAULT 'N',
  `employee_job_title_id` tinyint(4) DEFAULT NULL,
  `employee_employment_status_id` tinyint(4) DEFAULT NULL,
  `employee_job_category_id` tinyint(4) DEFAULT NULL,
  `employee_hire_date` date DEFAULT NULL,
  `original_joining_date` date DEFAULT NULL COMMENT 'Trainee moves to payroll hire date is preserved',
  `employee_department_id` tinyint(3) unsigned DEFAULT NULL,
  `business_entity` char(2) NOT NULL DEFAULT 'H',
  `employee_sub_departmentid` smallint(5) unsigned DEFAULT NULL,
  `contract_start_date` date DEFAULT NULL,
  `contract_end_date` date DEFAULT NULL,
  `contract_details` varchar(60) DEFAULT NULL,
  `probation_completion_date` date DEFAULT NULL,
  `is_confirmed` enum('Y','N') NOT NULL DEFAULT 'N',
  `confirmation_date` date DEFAULT NULL,
  `is_fandf_done` enum('None','No','Yes') NOT NULL DEFAULT 'None' COMMENT 'None-Employee hasn''t resigned, Yes-F&F done for resigned, No-Employee has resigned but F&F is pending',
  `fandf_details` text COMMENT 'This field has details once employee exit formality has began',
  `is_notice_period_given` enum('Y','N') DEFAULT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`employee_id`),
  KEY `FK_job_title_id` (`employee_job_title_id`),
  KEY `FK_employment_status_id` (`employee_employment_status_id`),
  KEY `FK_job_category_id` (`employee_job_category_id`),
  KEY `FK_employee_created_user` (`created_by`) USING BTREE,
  KEY `FK_employee_lastmodified_user` (`lastmodified_by`) USING BTREE,
  KEY `FK_department` (`employee_department_id`),
  KEY `FK_employee_subdeptid` (`employee_sub_departmentid`),
  KEY `business_entity` (`business_entity`),
  CONSTRAINT `FK_department` FOREIGN KEY (`employee_department_id`) REFERENCES `department_master` (`department_id`),
  CONSTRAINT `FK_employee_subdeptid` FOREIGN KEY (`employee_sub_departmentid`) REFERENCES `sub_department_master` (`sub_department_id`),
  CONSTRAINT `FK_employment_status_id` FOREIGN KEY (`employee_employment_status_id`) REFERENCES `employment_status_master` (`employment_status_id`),
  CONSTRAINT `FK_job_category_id` FOREIGN KEY (`employee_job_category_id`) REFERENCES `job_category_master` (`job_category_id`),
  CONSTRAINT `FK_job_title_id` FOREIGN KEY (`employee_job_title_id`) REFERENCES `job_title_master` (`job_title_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_master`
--

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

--
-- Table structure for table `employee_monthly_salary`
--

DROP TABLE IF EXISTS `employee_monthly_salary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_monthly_salary` (
  `employee_monthly_salary_id` int(11) NOT NULL AUTO_INCREMENT,
  `employee_id` mediumint(9) NOT NULL,
  `salary_month` date NOT NULL,
  `days_payable` float NOT NULL DEFAULT '0',
  `lop_days` float NOT NULL DEFAULT '0',
  `applicable_basic_da` float(9,2) NOT NULL DEFAULT '0.00',
  `applicable_hra` float(9,2) NOT NULL DEFAULT '0.00',
  `applicable_conveyance` float(9,2) NOT NULL DEFAULT '0.00',
  `applicable_education` float(9,2) NOT NULL DEFAULT '0.00',
  `applicable_other` float(9,2) NOT NULL DEFAULT '0.00',
  `actual_basic_da` float(9,2) NOT NULL DEFAULT '0.00',
  `actual_hra` float(9,2) NOT NULL DEFAULT '0.00',
  `actual_conveyence` float(9,2) NOT NULL DEFAULT '0.00',
  `actual_education` float(9,2) NOT NULL DEFAULT '0.00',
  `actual_other` float(9,2) NOT NULL DEFAULT '0.00',
  `actual_arrears` float(9,2) NOT NULL DEFAULT '0.00',
  `gross_earnings` float(9,2) NOT NULL DEFAULT '0.00',
  `provident_fund` float(9,2) NOT NULL DEFAULT '0.00',
  `professional_tax` float(9,2) NOT NULL DEFAULT '0.00',
  `income_tax` float(9,2) NOT NULL DEFAULT '0.00',
  `actual_other_deductions` float(9,2) NOT NULL DEFAULT '0.00',
  `gross_deductions` float(9,2) NOT NULL DEFAULT '0.00',
  `overtime_hours` float NOT NULL DEFAULT '0',
  `overtime_payment` float(9,2) NOT NULL DEFAULT '0.00',
  `net_payable` float(9,2) NOT NULL DEFAULT '0.00',
  `remark` varchar(100) DEFAULT NULL,
  `salary_status` enum('fandf','banktransfer','hold','cheque') NOT NULL DEFAULT 'banktransfer',
  `is_calculated` enum('Y','N') DEFAULT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`employee_monthly_salary_id`),
  UNIQUE KEY `employee_id` (`employee_id`,`salary_month`),
  KEY `FK_employeemonthlysalary_createdby` (`created_by`),
  KEY `FK_employeemonthlysalary_lastmodifiedby` (`lastmodified_by`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_monthly_salary`
--

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

--
-- Table structure for table `employee_monthly_salary_details`
--

DROP TABLE IF EXISTS `employee_monthly_salary_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_monthly_salary_details` (
  `employee_monthly_salary_detail_id` int(11) NOT NULL AUTO_INCREMENT,
  `employee_monthly_salary_id` int(11) NOT NULL,
  `employee_id` mediumint(9) NOT NULL,
  `salary_month` date NOT NULL,
  `head_id` int(11) NOT NULL,
  `applicable` float NOT NULL DEFAULT '0',
  `actual` float NOT NULL DEFAULT '0',
  `created_by` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`employee_monthly_salary_detail_id`),
  UNIQUE KEY `employee_id` (`employee_id`,`salary_month`,`head_id`) USING BTREE,
  KEY `FK_employeemonthlysalary_createdby` (`created_by`),
  KEY `FK_employeemonthlysalary_lastmodifiedby` (`lastmodified_by`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_monthly_salary_details`
--

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

--
-- Table structure for table `employee_monthly_salary_header`
--

DROP TABLE IF EXISTS `employee_monthly_salary_header`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_monthly_salary_header` (
  `employee_monthly_salary_id` int(11) NOT NULL AUTO_INCREMENT,
  `employee_id` mediumint(9) NOT NULL,
  `salary_month` date NOT NULL,
  `days_payable` float NOT NULL DEFAULT '0',
  `calculated_lop` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
  `lop_days` float NOT NULL DEFAULT '0',
  `overtime_hours` float(9,2) NOT NULL DEFAULT '0.00',
  `calculated_overtime_hours` float(9,2) NOT NULL DEFAULT '0.00',
  `overtime_payment` float(9,2) NOT NULL DEFAULT '0.00',
  `net_payable` float(9,2) NOT NULL DEFAULT '0.00',
  `salary_status` enum('fandf','banktransfer','hold','cheque') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'banktransfer',
  `is_calculated` enum('Y','N') COLLATE utf8_unicode_ci DEFAULT NULL,
  `finalize_datetime` datetime DEFAULT NULL,
  `payslip_release` enum('Yes','No') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'No',
  `created_by` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`employee_monthly_salary_id`),
  UNIQUE KEY `employee_id` (`employee_id`,`salary_month`),
  KEY `FK_employeemonthlysalary_createdby` (`created_by`),
  KEY `FK_employeemonthlysalary_lastmodifiedby` (`lastmodified_by`),
  KEY `salary_month` (`salary_month`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_monthly_salary_header`
--

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

--
-- Table structure for table `employee_monthly_salary_input`
--

DROP TABLE IF EXISTS `employee_monthly_salary_input`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_monthly_salary_input` (
  `employee_monthly_salary_input_id` int(11) NOT NULL AUTO_INCREMENT,
  `employee_monthly_salary_id` int(11) NOT NULL,
  `employee_id` mediumint(9) NOT NULL,
  `salary_month` date NOT NULL,
  `head_id` int(11) NOT NULL,
  `applicable` float NOT NULL DEFAULT '0',
  `actual` float NOT NULL DEFAULT '0',
  `created_by` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`employee_monthly_salary_input_id`),
  UNIQUE KEY `employee_id` (`employee_id`,`salary_month`,`head_id`) USING BTREE,
  KEY `FK_employeemonthlysalary_createdby` (`created_by`),
  KEY `FK_employeemonthlysalary_lastmodifiedby` (`lastmodified_by`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_monthly_salary_input`
--

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

--
-- Table structure for table `employee_monthly_salary_summary`
--

DROP TABLE IF EXISTS `employee_monthly_salary_summary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_monthly_salary_summary` (
  `montly_summary_id` int(11) NOT NULL AUTO_INCREMENT,
  `salary_month` date NOT NULL,
  `is_salary_calculated` tinyint(1) NOT NULL DEFAULT '0',
  `is_salary_disbursed` tinyint(1) NOT NULL DEFAULT '0',
  `is_overtime_updated` tinyint(1) NOT NULL DEFAULT '0',
  `is_attendance_updated` tinyint(1) NOT NULL DEFAULT '0',
  `is_head_updated` tinyint(1) NOT NULL DEFAULT '0',
  `is_hours_updated` tinyint(1) NOT NULL DEFAULT '0',
  `created_by` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`montly_summary_id`),
  UNIQUE KEY `salary_month` (`salary_month`),
  UNIQUE KEY `salary_month_2` (`salary_month`),
  UNIQUE KEY `salary_month_3` (`salary_month`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_monthly_salary_summary`
--

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

--
-- Table structure for table `employee_optional_leaves`
--

DROP TABLE IF EXISTS `employee_optional_leaves`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_optional_leaves` (
  `employee_id` mediumint(9) NOT NULL,
  `optional_leave_date` date NOT NULL,
  `opt_status` enum('R','A','C') COLLATE utf8_unicode_ci NOT NULL,
  `created_by` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`employee_id`,`optional_leave_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_optional_leaves`
--

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

--
-- Table structure for table `employee_reporting`
--

DROP TABLE IF EXISTS `employee_reporting`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_reporting` (
  `employee_reporting_id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `employee_id` mediumint(9) NOT NULL,
  `reporting_employee_id` mediumint(9) NOT NULL,
  `reporting_type` enum('S','J') NOT NULL COMMENT 'S - Senior (Supervisor), J - Junior (Subordinates)',
  `reporting_method_id` tinyint(4) NOT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`employee_reporting_id`),
  KEY `FK_employeereporting_created_user` (`created_by`),
  KEY `FK_employeereporting_lastmodified_user` (`lastmodified_by`),
  KEY `FK_employeereporting_employeeid` (`employee_id`),
  KEY `FK_employeereporting_id` (`reporting_method_id`),
  KEY `FK_reportingemployee_id` (`reporting_employee_id`),
  CONSTRAINT `FK_employeereporting_employeeid` FOREIGN KEY (`employee_id`) REFERENCES `employee_master` (`employee_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_employeereporting_id` FOREIGN KEY (`reporting_method_id`) REFERENCES `reporting_method_master` (`reporting_method_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_reportingemployee_id` FOREIGN KEY (`reporting_employee_id`) REFERENCES `employee_master` (`employee_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_reporting`
--

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

--
-- Table structure for table `employee_salary`
--

DROP TABLE IF EXISTS `employee_salary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_salary` (
  `employee_id` smallint(6) NOT NULL,
  `salary_month` date NOT NULL,
  `employee_name` varchar(45) NOT NULL,
  `employee_gender` enum('M','F') NOT NULL,
  `employee_date_of_joining` date NOT NULL DEFAULT '1970-01-01',
  `employee_designation` varchar(50) NOT NULL,
  `employee_department` varchar(20) NOT NULL,
  `employee_pan_no` varchar(10) DEFAULT NULL,
  `employee_uan_no` varchar(12) DEFAULT NULL,
  `status` varchar(20) NOT NULL DEFAULT ' ',
  `bank_name` varchar(25) DEFAULT NULL,
  `bank_ifsc_code` varchar(15) DEFAULT NULL,
  `bank_acct_no` varchar(20) DEFAULT NULL,
  `days_payable` float NOT NULL DEFAULT '0',
  `lop_days` float NOT NULL DEFAULT '0',
  `applicable_basic_da` float NOT NULL DEFAULT '0',
  `applicable_hra` float NOT NULL DEFAULT '0',
  `applicable_conveyance` float NOT NULL DEFAULT '0',
  `applicable_education` float NOT NULL DEFAULT '0',
  `applicable_other` float NOT NULL DEFAULT '0',
  `actual_basic_da` float NOT NULL DEFAULT '0',
  `actual_hra` float NOT NULL DEFAULT '0',
  `actual_conveyence` float NOT NULL DEFAULT '0',
  `actual_education` float NOT NULL DEFAULT '0',
  `actual_other` float NOT NULL DEFAULT '0',
  `actual_arrears` float NOT NULL DEFAULT '0',
  `gross_earnings` float NOT NULL DEFAULT '0',
  `provident_fund` float NOT NULL DEFAULT '0',
  `professional_tax` float NOT NULL DEFAULT '0',
  `income_tax` int(11) NOT NULL DEFAULT '0',
  `actual_other_deductions` float NOT NULL DEFAULT '0',
  `gross_deductions` float NOT NULL DEFAULT '0',
  `net_payable` float NOT NULL DEFAULT '0',
  `earned_bonus` float NOT NULL,
  `actual_bonus` float NOT NULL,
  UNIQUE KEY `employee_id` (`employee_id`,`salary_month`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_salary`
--

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

--
-- Table structure for table `employee_salary_details`
--

DROP TABLE IF EXISTS `employee_salary_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_salary_details` (
  `employee_salary_id` int(11) NOT NULL AUTO_INCREMENT,
  `employee_id` mediumint(9) NOT NULL,
  `job_title_id` tinyint(4) DEFAULT NULL,
  `salary_type` enum('ctc','per_hour','per_day','per_visit','mg','stipend') CHARACTER SET latin1 COLLATE latin1_spanish_ci NOT NULL DEFAULT 'ctc',
  `effective_date` date DEFAULT NULL,
  `head_id` int(11) NOT NULL,
  `applicable` float NOT NULL DEFAULT '0',
  `actual` float NOT NULL DEFAULT '0',
  `is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  `gross` int(11) NOT NULL,
  PRIMARY KEY (`employee_salary_id`),
  UNIQUE KEY `employee_id` (`employee_id`,`head_id`,`effective_date`) USING BTREE,
  KEY `FK_employeesalary_jobtitleid` (`job_title_id`),
  KEY `FK_employeesalary_createdby` (`created_by`),
  KEY `FK_employeesalary_lastmodifyby` (`lastmodified_by`),
  KEY `head_id` (`head_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_salary_details`
--

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

--
-- Table structure for table `employee_salary_head_master`
--

DROP TABLE IF EXISTS `employee_salary_head_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_salary_head_master` (
  `head_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'It should be 0 for Stipend',
  `head_code` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Head codes for some heads like Stipend, CTC, Gross, Net should be standard',
  `head_name` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
  `Allowance_type` enum('S','OT','OC','DS') COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Applicable only for non standard heads.S-Shift Based, OT-Overtime Based, OC-On call based, DS-Double Shift based',
  `Approval` enum('R','A') COLLATE utf8_unicode_ci NOT NULL COMMENT 'Only for Allowance. Whether approval is Required or Automatic?',
  `head_type` enum('E','D','T','A') COLLATE utf8_unicode_ci DEFAULT NULL,
  `is_input_head` enum('Y','N') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'N' COMMENT 'If Y then it will allow user to input value in employee master if it is a standard head, Else it will allow user to input value in monthly salary input.',
  `recalculate` enum('Y','N') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'N' COMMENT 'If Y, then at the time of salary calculation, the value will be recalculated as per salary rules. If N and if it is a standard head then simply proportionate calculation will be done. ',
  `is_standard_head` enum('Y','N') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Y' COMMENT 'If Y then itis assumed to be part of salary structure & will be displayed in Employee master.',
  `calculation_sequence` int(11) NOT NULL DEFAULT '99' COMMENT 'It provides the sequence in which the calculation for this head to be done. It is useful when it''s calculation has dependency on other calculated heads. ',
  `print_sequence` int(11) NOT NULL DEFAULT '99' COMMENT 'Indicates sequence in which the calculated value of the head to be printed in payslip and salary report',
  `is_acitve` enum('Y','N') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Y',
  `created_by` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`head_id`),
  UNIQUE KEY `head_code` (`head_code`),
  KEY `print_sequence` (`print_sequence`,`head_type`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_salary_head_master`
--

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

--
-- Table structure for table `employee_salary_head_rules`
--

DROP TABLE IF EXISTS `employee_salary_head_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_salary_head_rules` (
  `head_detail_id` int(11) NOT NULL AUTO_INCREMENT,
  `head_id` int(11) NOT NULL,
  `effective_from` date NOT NULL,
  `effective_to` date NOT NULL,
  `on_formula` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `is_range_s_formula` tinyint(1) NOT NULL DEFAULT '0',
  `range_s` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `is_range_e_formula` tinyint(1) NOT NULL DEFAULT '0',
  `range_e` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `is_value_formula` tinyint(1) NOT NULL DEFAULT '0',
  `value_formula` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `value_formula_global` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL,
  `maximum` int(11) NOT NULL,
  `created_by` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`head_detail_id`),
  KEY `FK_HEAD_ID` (`head_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_salary_head_rules`
--

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

--
-- Table structure for table `employee_salaryinput_format_master`
--

DROP TABLE IF EXISTS `employee_salaryinput_format_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_salaryinput_format_master` (
  `format_master_id` int(11) NOT NULL AUTO_INCREMENT,
  `format_type` varchar(50) NOT NULL,
  `data_row` varchar(50) NOT NULL,
  `header_row` varchar(50) NOT NULL,
  `date_format` varchar(50) NOT NULL,
  `salary_month` varchar(50) NOT NULL,
  `emp_id` varchar(50) NOT NULL,
  `type` varchar(50) NOT NULL,
  `amount` varchar(50) NOT NULL,
  PRIMARY KEY (`format_master_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_salaryinput_format_master`
--

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

--
-- Table structure for table `employee_shift_schedule`
--

DROP TABLE IF EXISTS `employee_shift_schedule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_shift_schedule` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `employee_id` mediumint(9) NOT NULL,
  `shift_id` varchar(2) COLLATE utf8_unicode_ci NOT NULL,
  `shift_start_dt` date NOT NULL,
  `shift_end_dt` date NOT NULL,
  `active` enum('Y','N') COLLATE utf8_unicode_ci NOT NULL,
  `weekly_off` varchar(2) COLLATE utf8_unicode_ci NOT NULL,
  `createdby` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `createddate` datetime NOT NULL,
  `lastmodifiedby` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `lastmodifieddate` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `FK_shift_id` (`shift_id`),
  KEY `FK_employee_id` (`employee_id`,`shift_start_dt`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_shift_schedule`
--

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

--
-- Table structure for table `employee_short_leave_requests`
--

DROP TABLE IF EXISTS `employee_short_leave_requests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_short_leave_requests` (
  `employee_id` int(11) NOT NULL,
  `attendance_date` date NOT NULL,
  `in_time` time NOT NULL,
  `out_time` time NOT NULL,
  `purpose` varchar(90) NOT NULL,
  `status` enum('R','A','C') NOT NULL COMMENT 'R-Request, A-Approved, C-Cancel',
  `approved_by` varchar(20) NOT NULL,
  `created_by` varchar(20) NOT NULL,
  `created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `lastmodified_by` varchar(20) NOT NULL,
  `lastmodified_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`employee_id`,`attendance_date`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_short_leave_requests`
--

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

--
-- Table structure for table `employee_skill`
--

DROP TABLE IF EXISTS `employee_skill`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_skill` (
  `employee_skill_id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `employee_id` mediumint(9) NOT NULL,
  `skill_id` smallint(6) NOT NULL,
  `total_months` float NOT NULL DEFAULT '0' COMMENT 'store in month',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`employee_skill_id`),
  KEY `FK_employeeskill_employeeid` (`employee_id`),
  KEY `FK_employeskill_lastmodified_user` (`lastmodified_by`),
  KEY `FK_employeskill_created_user` (`created_by`),
  CONSTRAINT `FK_employeeskill_employeeid` FOREIGN KEY (`employee_id`) REFERENCES `employee_master` (`employee_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_skill`
--

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

--
-- Table structure for table `employee_timestamps`
--

DROP TABLE IF EXISTS `employee_timestamps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_timestamps` (
  `sr_no` int(11) NOT NULL AUTO_INCREMENT,
  `employee_id` int(11) NOT NULL,
  `date` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `time` varchar(8) COLLATE utf8_unicode_ci NOT NULL,
  `shift_date` date NOT NULL,
  `in_out_flag` enum('i','o') COLLATE utf8_unicode_ci NOT NULL,
  `created_by` varchar(15) COLLATE utf8_unicode_ci NOT NULL,
  `created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `modified_by` varchar(15) COLLATE utf8_unicode_ci NOT NULL,
  `modified_date` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`sr_no`),
  KEY `employee_id` (`employee_id`,`date`) USING BTREE,
  KEY `date` (`date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_timestamps`
--

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

--
-- Table structure for table `employee_workexperience`
--

DROP TABLE IF EXISTS `employee_workexperience`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employee_workexperience` (
  `employee_workexperience_id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `employee_id` mediumint(9) NOT NULL,
  `company` varchar(50) NOT NULL,
  `job_title` varchar(30) NOT NULL,
  `from_date` date NOT NULL,
  `to_date` date DEFAULT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`employee_workexperience_id`),
  KEY `FK_employeeworkexp_employeeid` (`employee_id`),
  KEY `FK_employeeworkexp_created_user` (`created_by`),
  KEY `FK_employeeworkexp_lastmodified_user` (`lastmodified_by`),
  CONSTRAINT `FK_employeeworkexp_employeeid` FOREIGN KEY (`employee_id`) REFERENCES `employee_master` (`employee_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employee_workexperience`
--

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

--
-- Table structure for table `employment_status_master`
--

DROP TABLE IF EXISTS `employment_status_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `employment_status_master` (
  `employment_status_id` tinyint(4) NOT NULL AUTO_INCREMENT,
  `employment_status_name` varchar(30) NOT NULL,
  `employment_status_is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`employment_status_id`),
  UNIQUE KEY `employment_status_name` (`employment_status_name`) USING BTREE,
  KEY `FK_employmentstatus_created_user` (`created_by`),
  KEY `FK_employmentstatus_lastmodified_user` (`lastmodified_by`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `employment_status_master`
--

LOCK TABLES `employment_status_master` WRITE;
/*!40000 ALTER TABLE `employment_status_master` DISABLE KEYS */;
INSERT INTO `employment_status_master` VALUES (1,'Full Time','Y','thims','2019-02-23 00:00:00',NULL,NULL),(2,'Part time','Y','thims','2019-02-23 00:00:00',NULL,NULL),(3,'Contract','Y','thims','2019-02-23 00:00:00',NULL,NULL);
/*!40000 ALTER TABLE `employment_status_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `erma210eTEMP`
--

DROP TABLE IF EXISTS `erma210eTEMP`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `erma210eTEMP` (
  `test_id` int(11) NOT NULL,
  `WBC` float NOT NULL,
  `LY` float NOT NULL,
  `MO` float NOT NULL,
  `GR` float NOT NULL,
  `LYP` float NOT NULL,
  `MOP` float NOT NULL,
  `GRP` float NOT NULL,
  `RBC` float NOT NULL,
  `Hgb` float NOT NULL,
  `HCT` float NOT NULL,
  `MCV` float NOT NULL,
  `MCH` float NOT NULL,
  `MCHC` float NOT NULL,
  `RDW` float NOT NULL,
  `PLT` float NOT NULL,
  `PCT` float NOT NULL,
  `MPV` float NOT NULL,
  `PDW` float NOT NULL,
  `EOS` float NOT NULL,
  `BAS` float NOT NULL,
  `Iscompleted` tinyint(1) NOT NULL,
  `data_source` varchar(10) NOT NULL,
  `DATETIME` char(20) NOT NULL,
  KEY `test_id` (`test_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `erma210eTEMP`
--

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

--
-- Table structure for table `error_log`
--

DROP TABLE IF EXISTS `error_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `error_log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `module` varchar(40) NOT NULL,
  `message` text NOT NULL,
  `user_id` varchar(20) NOT NULL,
  `date_time` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `error_log`
--

LOCK TABLES `error_log` WRITE;
/*!40000 ALTER TABLE `error_log` DISABLE KEYS */;
INSERT INTO `error_log` VALUES (1,0,0,'IP_REG','217:Cannot add or update a child row: a foreign key constraint fails (`thims2_genesis007`.`visit`, CONSTRAINT `visit_ibfk_1` FOREIGN KEY (`patient_id`) REFERENCES `pateint_master` (`patient_id`))','vishal','2025-10-09 09:34:30'),(2,0,0,'IP_BILLING','643: 1, There is some error please contact the techsmith team. Condition is : ELSE,  ','vishal','2025-10-11 12:56:05'),(3,0,0,'IP_BILLING','643: 1, There is some error please contact the techsmith team. Condition is : ELSE,  ','vishal','2025-10-11 12:56:27'),(4,0,0,'IP_BILLING','643: 1, There is some error please contact the techsmith team. Condition is : ELSE,  ','vishal','2025-10-11 12:57:07'),(5,0,0,'IP_BILLING','643: 1, There is some error please contact the techsmith team. Condition is : ELSE,  ','vishal','2025-10-11 12:59:41'),(6,0,0,'IP_BILLING','643: 1, There is some error please contact the techsmith team. Condition is : ELSE,  ','thims','2025-10-11 13:00:11'),(7,0,0,'IP_BILLING','643: 1, There is some error please contact the techsmith team. Condition is : ELSE,  ','vishal','2025-10-11 13:00:45'),(8,0,0,'IP_BILLING','643: 1, There is some error please contact the techsmith team. Condition is : ELSE,  ','thims','2025-10-11 13:04:36'),(9,0,0,'IP_REG','217:Cannot add or update a child row: a foreign key constraint fails (`thims2_genesis007`.`visit`, CONSTRAINT `visit_ibfk_1` FOREIGN KEY (`patient_id`) REFERENCES `pateint_master` (`patient_id`))','riya','2025-11-16 10:32:07'),(10,0,0,'OP_REGISTRATION','426 : NO-303:Deadlock found when trying to get lock; try restarting transaction','janvi','2025-11-20 12:43:42'),(11,0,0,'ROOM_TRAN',' This Room is not vacant.........','riya','2025-11-26 18:18:04'),(12,0,0,'OP_REGISTRATION','426 : NO-164Incorrect integer value: \'\' for column \'pin_no\' at row 1','reception','2025-11-29 11:50:50');
/*!40000 ALTER TABLE `error_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `event_archive_log`
--

DROP TABLE IF EXISTS `event_archive_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `event_archive_log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `event_date_time` datetime NOT NULL,
  `message` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `event_archive_log`
--

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

--
-- Table structure for table `exam_reco`
--

DROP TABLE IF EXISTS `exam_reco`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exam_reco` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `examination_id` int(11) NOT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `opd_reg_id` bigint(20) NOT NULL,
  `examination_code` text NOT NULL,
  `e_hours` float NOT NULL,
  `e_date` date NOT NULL,
  `e_start_time` text NOT NULL,
  `active` varchar(1) NOT NULL,
  `d_datetime` datetime NOT NULL,
  `user_id` varchar(10) NOT NULL,
  `last_updated_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`examination_id`),
  KEY `visit_id` (`visit_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exam_reco`
--

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

--
-- Table structure for table `examination_master`
--

DROP TABLE IF EXISTS `examination_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `examination_master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `examination_grp_code` varchar(5) NOT NULL,
  `examination_order` int(11) NOT NULL,
  `examination_code` varchar(6) NOT NULL,
  `examination_desc` varchar(30) NOT NULL,
  `e_unit` varchar(10) NOT NULL,
  `e_m_min` float NOT NULL,
  `e_m_max` float NOT NULL,
  `e_f_min` float NOT NULL,
  `e_f_max` float NOT NULL,
  `e_m_c_min` float NOT NULL,
  `e_m_c_max` float NOT NULL,
  `e_f_c_min` float NOT NULL,
  `e_f_c_max` float NOT NULL,
  `is_chargable` enum('Y','N') NOT NULL DEFAULT 'N',
  `service_cd` varchar(4) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`examination_code`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `examination_master`
--

LOCK TABLES `examination_master` WRITE;
/*!40000 ALTER TABLE `examination_master` DISABLE KEYS */;
INSERT INTO `examination_master` VALUES (0,0,'4',3,'ADREN','ADRENALINE','',0,0,0,0,0,0,0,0,'N','','Y','thims','2020-10-19 19:24:24','thims','2023-08-14 12:39:08'),(0,0,'4',6,'ATRAC','ATRACURIUM','',0,0,0,0,0,0,0,0,'N','','Y','thims','2020-10-19 19:25:41','','0000-00-00 00:00:00'),(0,0,'3',4,'BP','BP','',80,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','thims','2020-11-24 14:27:13'),(0,0,'6',4,'BRMN','BREATHS PER MINUTE','',0,0,0,0,0,0,0,0,'N','','Y','thims','2024-05-24 11:27:54','thims','2024-05-24 11:28:10'),(0,0,'3',6,'CVP','CVP','',0,0,0,0,0,0,0,0,'N','','Y','thims','2020-10-19 19:17:37','','0000-00-00 00:00:00'),(0,0,'4',2,'DOBUT','DOBUTAMINE','',0,0,0,0,0,0,0,0,'N','','Y','thims','2020-10-19 19:25:11','','0000-00-00 00:00:00'),(0,0,'4',1,'DOPAM','DOPAMINE','',70,100,70,100,0,0,0,0,'N','','Y','thims','2020-10-19 19:24:45','','0000-00-00 00:00:00'),(0,0,'2',2,'DRAIN1','DRAIN 1','ML',0,0,0,0,0,0,0,0,'N','','Y','thims','2020-10-19 19:14:24','thims','2024-05-08 16:23:29'),(0,0,'2',3,'DRAIN2','DRAIN 2','ML',0,0,0,0,0,0,0,0,'N','','Y','thims','2024-05-08 16:24:13','','0000-00-00 00:00:00'),(0,0,'8',1,'FBS','FBS','',90,100,85,95,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','thims','2020-11-24 14:57:14'),(0,0,'6',9,'GCSE','GCS E/M/V','',0,0,0,0,0,0,0,0,'N','','Y','thims','2024-05-24 11:31:14','','0000-00-00 00:00:00'),(0,0,'1',2,'INF','INF','ML',0,0,0,0,0,0,0,0,'N','','Y','thims','2024-05-08 16:20:18','thims','2024-05-08 16:22:21'),(0,0,'4',5,'INSUL','INSULIN INFUSION','',0,0,0,0,0,0,0,0,'N','','Y','thims','2020-10-19 19:27:02','','0000-00-00 00:00:00'),(0,0,'1',1,'IVH','IVF','ML',0,0,0,0,0,0,0,0,'N','','Y','thims','2023-08-16 16:03:32','akash','2023-10-04 16:05:11'),(0,0,'7',1,'LTREAC','LT - REACTION','',0,0,0,0,0,0,0,0,'N','','Y','thims','2020-10-19 19:30:33','','0000-00-00 00:00:00'),(0,0,'7',2,'LTS','LT - SIZE','',0,0,0,0,0,0,0,0,'N','','Y','thims','2020-10-19 19:29:35','','0000-00-00 00:00:00'),(0,0,'6',1,'MODE','MODE','',0,0,0,0,0,0,0,0,'N','','Y','thims','2024-05-24 11:24:02','','0000-00-00 00:00:00'),(0,0,'4',7,'NB-A+B','NB-ASTHALIN+BUDECORT','',0,0,0,0,0,0,0,0,'N','','N','','0000-00-00 00:00:00','akash','2023-10-04 18:12:09'),(0,0,'4',8,'NB-A+D','NB- ASTHALIN + DUOLINE','',0,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','thims','2020-11-24 14:54:42'),(0,0,'4',9,'NB-A+M','NB-ASTHALIN + MUCOMELT','',0,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','thims','2020-11-24 14:54:50'),(0,0,'4',10,'NB-AST','NB-ASTHALIN','',0,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','thims','2020-11-24 14:55:18'),(0,0,'4',11,'NB-BUD','NB-BUDACORT','',0,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','thims','2020-11-24 14:55:30'),(0,0,'4',12,'NB-D+B','NB-DOULINE + BODECORT','',0,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','thims','2020-11-24 14:55:38'),(0,0,'4',13,'NB-D+G','NB-DUOLINE + GLYCOLATE','',0,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','thims','2020-11-24 14:55:48'),(0,0,'4',14,'NB-DLN','NB-DUOLINE','',0,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','thims','2020-11-24 14:55:57'),(0,0,'4',15,'NB-G','NB-GLYCOLATE','',0,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','thims','2020-11-24 14:56:06'),(0,0,'4',16,'NB-IPR','NB-IPRAVENT/IPRAZEST','',0,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','thims','2020-11-24 14:56:17'),(0,0,'4',17,'NB-M+D','NB-MUCOMELT + DOULINE','',0,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','thims','2020-11-24 14:56:27'),(0,0,'4',18,'NB-MUC','NB-MUCOMELT','',0,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','thims','2020-11-24 14:56:37'),(0,0,'4',19,'NBNS09','NB-NORMAL SALINE 0.9%','',0,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','thims','2020-11-24 14:56:46'),(0,0,'4',20,'NBNS3%','NB- NORMAL SALINE 3','',0,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','thims','2020-11-24 14:57:02'),(0,0,'3',7,'NIBP','NIBP/IBP','',0,0,0,0,0,0,0,0,'N','','N','thims','2020-10-19 19:17:19','akash','2023-10-04 16:02:30'),(0,0,'4',4,'NORAD','NORADRENALINE','',0,0,0,0,0,0,0,0,'N','','Y','thims','2020-10-19 19:23:49','','0000-00-00 00:00:00'),(0,0,'4',21,'NTG','NTG','',0,0,0,0,0,0,0,0,'N','','Y','thims','2020-10-19 19:26:30','','0000-00-00 00:00:00'),(0,0,'1',4,'ORAL','ORAL','ML',0,0,0,0,0,0,0,0,'N','','Y','thims','2023-08-16 16:04:53','thims','2024-05-08 16:22:30'),(0,0,'1',5,'OTHR','OTHERS','',0,0,0,0,0,0,0,0,'N','','Y','thims','2023-08-16 16:04:53','thims','2024-05-08 16:22:30'),(0,0,'2',4,'OTHRO','OTHERS','',0,0,0,0,0,0,0,0,'N','','Y','thims','2020-10-19 19:14:41','','0000-00-00 00:00:00'),(0,0,'6',5,'PEEP','PEEP - CPAP','',0,0,0,0,0,0,0,0,'N','','Y','thims','2024-05-24 11:29:06','','0000-00-00 00:00:00'),(0,0,'8',2,'PP2BS','PP2BS','',0,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','thims','2020-11-24 14:57:23'),(0,0,'6',7,'PPK','PPK','',0,0,0,0,0,0,0,0,'N','','Y','thims','2024-05-24 11:30:04','','0000-00-00 00:00:00'),(0,0,'6',6,'PRES','PRES . SUPPORT','',0,0,0,0,0,0,0,0,'N','','Y','thims','2024-05-24 11:29:50','','0000-00-00 00:00:00'),(0,0,'6',8,'PTPOS','PT. POSITION','',0,0,0,0,0,0,0,0,'N','','Y','thims','2024-05-24 11:30:32','','0000-00-00 00:00:00'),(0,0,'3',2,'PULSE','PULSE','',0,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','thims','2020-11-24 14:57:44'),(0,0,'8',3,'RBS','RBS','',0,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','thims','2020-11-24 14:57:32'),(0,0,'3',3,'RR','RR','',0,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'7',3,'RT-REA','RT - REACTION ','',0,0,0,0,0,0,0,0,'N','','Y','thims','2020-10-19 19:28:52','','0000-00-00 00:00:00'),(0,0,'1',3,'RTF','RTF','ML',0,0,0,0,0,0,0,0,'N','','Y','thims','2024-05-08 16:21:03','thims','2024-05-08 16:22:09'),(0,0,'7',4,'RTSIZE','RT - SIZE','',0,0,0,0,0,0,0,0,'N','','Y','thims','2020-10-19 19:28:29','','0000-00-00 00:00:00'),(0,0,'3',5,'SPO2','SPO2','',0,0,0,0,0,0,0,0,'N','','Y','thims','2020-10-19 19:18:15','','0000-00-00 00:00:00'),(0,0,'6',2,'TDVOL','TIDAL VOLUME','',0,0,0,0,0,0,0,0,'N','','Y','thims','2024-05-24 11:25:26','thims','2024-05-24 11:26:24'),(0,0,'3',1,'TEMP','TEMP','',0,0,0,0,0,0,0,0,'N','','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'2',1,'U/O','U/O','ML',0,0,0,0,0,0,0,0,'N','','Y','thims','2024-05-08 16:21:57','','0000-00-00 00:00:00'),(0,0,'6',3,'VENF','VENTILATOR FIO2','',0,0,0,0,0,0,0,0,'N','','Y','thims','2024-05-24 11:26:57','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `examination_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `examination_result`
--

DROP TABLE IF EXISTS `examination_result`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `examination_result` (
  `e_id` int(11) NOT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `examination_code` varchar(6) NOT NULL,
  `e_value` float NOT NULL,
  `e_date` date NOT NULL,
  `e_time` time NOT NULL,
  PRIMARY KEY (`e_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `examination_result`
--

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

--
-- Table structure for table `exitformality_interview_answers`
--

DROP TABLE IF EXISTS `exitformality_interview_answers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exitformality_interview_answers` (
  `exitformality_interview_answers_id` int(11) NOT NULL AUTO_INCREMENT,
  `interview_questions_id` int(11) NOT NULL,
  `answer` text,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`exitformality_interview_answers_id`),
  KEY `FK_interview_question_id` (`interview_questions_id`),
  KEY `FK_createdby` (`created_by`),
  KEY `FK_lastmodifiedby` (`lastmodified_by`),
  CONSTRAINT `FK_interview_questions_id` FOREIGN KEY (`interview_questions_id`) REFERENCES `exitformality_interview_questions` (`exitformality_interview_questions_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exitformality_interview_answers`
--

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

--
-- Table structure for table `exitformality_interview_questions`
--

DROP TABLE IF EXISTS `exitformality_interview_questions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exitformality_interview_questions` (
  `exitformality_interview_questions_id` int(11) NOT NULL AUTO_INCREMENT,
  `question_number` float NOT NULL,
  `question` text NOT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`exitformality_interview_questions_id`),
  KEY `FK_createdby` (`created_by`),
  KEY `FK_lastmodifiedby` (`lastmodified_by`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exitformality_interview_questions`
--

LOCK TABLES `exitformality_interview_questions` WRITE;
/*!40000 ALTER TABLE `exitformality_interview_questions` DISABLE KEYS */;
INSERT INTO `exitformality_interview_questions` VALUES (1,1,'Why you want to leave SMVS Swaminarayan Hospital?','thims','2019-07-15 00:00:00',NULL,NULL),(2,2,'Why are you leaving SMVS Swaminarayan Hospital? Give detailed information.','thims','2019-07-13 00:00:00',NULL,NULL),(3,3,'What circumstances would have prevented your departure?','thims','2019-07-13 00:00:00',NULL,NULL),(4,4,'What did you find most satisfying about your job?','thims','2019-07-13 00:00:00',NULL,NULL),(5,5,'What did you find most frustrating about your job?','thims','2019-07-13 00:00:00',NULL,NULL),(6,6,'How was your workload usually?','thims','2019-07-13 00:00:00',NULL,NULL),(7,7,'What do you think of your supervisor in the following terms:','thims','2019-07-13 00:00:00',NULL,NULL),(8,7.1,'Provided Recognition','thims','2019-07-13 00:00:00',NULL,NULL),(9,7.2,'Resolved problems','thims','2019-07-13 00:00:00',NULL,NULL),(10,7.3,'Was consistently fair','thims','2019-07-13 00:00:00',NULL,NULL),(11,7.4,'Was sensitive to employee needs','thims','2019-07-13 00:00:00',NULL,NULL),(12,7.5,'Provided Feedback on performance','thims','2019-07-13 00:00:00',NULL,NULL),(13,7.6,'Was receptive to open communications','thims','2019-07-13 00:00:00',NULL,NULL),(14,8,'Would you recommend this company to a friend?','thims','2019-07-13 00:00:00',NULL,NULL),(15,9,'What are your suggestions to make SMVS swaminarayan Hospital a better work place?','thims','2019-07-13 00:00:00',NULL,NULL);
/*!40000 ALTER TABLE `exitformality_interview_questions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exitformality_nodue`
--

DROP TABLE IF EXISTS `exitformality_nodue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exitformality_nodue` (
  `nodue_id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `employee_id` mediumint(9) NOT NULL,
  `lop_days` float NOT NULL,
  `is_confirmed` enum('Y','N') NOT NULL,
  `notice_period_waived_off` enum('Y','N') NOT NULL,
  `hod_collection` float(9,2) NOT NULL DEFAULT '0.00',
  `hr_collection` float(9,2) NOT NULL DEFAULT '0.00',
  `stores_collection` float(9,2) NOT NULL DEFAULT '0.00',
  `it_collection` float(9,2) NOT NULL DEFAULT '0.00',
  `radiology_collection` float(9,2) NOT NULL DEFAULT '0.00',
  `finance_collection` float(9,2) NOT NULL DEFAULT '0.00',
  `customer_care_collection` float(9,2) NOT NULL DEFAULT '0.00',
  `nodue_form` text,
  `is_submitted` enum('Y','N') NOT NULL DEFAULT 'N',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`nodue_id`),
  KEY `FK_created_by` (`created_by`),
  KEY `FK_employeeid` (`employee_id`),
  KEY `FK_lastmodifiedby` (`lastmodified_by`),
  CONSTRAINT `FK_employeeid` FOREIGN KEY (`employee_id`) REFERENCES `employee_master` (`employee_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exitformality_nodue`
--

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

--
-- Table structure for table `expense_voucher`
--

DROP TABLE IF EXISTS `expense_voucher`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `expense_voucher` (
  `fyear` varchar(4) NOT NULL,
  `voucher_type` varchar(2) NOT NULL,
  `voucher_number` int(11) NOT NULL,
  `voucher_datetime` datetime NOT NULL,
  `payment_mode` varchar(3) NOT NULL,
  `payment_agency` varchar(25) NOT NULL,
  `payment_number` varchar(30) NOT NULL,
  `abp_flag` char(2) NOT NULL,
  `amount` float NOT NULL,
  `cr_db_flag` enum('C','D') NOT NULL,
  `payment_to` varchar(50) NOT NULL,
  `payment_for` varchar(50) NOT NULL,
  `payment_by_remark` varchar(50) NOT NULL,
  `voucher_cancle_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `voucher_canellation_ref` varchar(250) NOT NULL,
  `is_exported_to_xml` enum('Y','N') NOT NULL DEFAULT 'N',
  `CreatedBy` varchar(50) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(50) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`fyear`,`voucher_number`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `expense_voucher`
--

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

--
-- Table structure for table `external_doctor_master`
--

DROP TABLE IF EXISTS `external_doctor_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `external_doctor_master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `external_doctor_id` int(11) NOT NULL AUTO_INCREMENT,
  `doctor_name` varchar(25) NOT NULL,
  `doctor_contact_no` varchar(10) DEFAULT NULL,
  `is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `mapping_id` int(11) NOT NULL COMMENT 'Mapping doctor_master.doctor_id',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  PRIMARY KEY (`external_doctor_id`,`company_id`,`branch_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `external_doctor_master`
--

LOCK TABLES `external_doctor_master` WRITE;
/*!40000 ALTER TABLE `external_doctor_master` DISABLE KEYS */;
INSERT INTO `external_doctor_master` VALUES (0,0,1,'DR.MEDICINE  ','','Y',1,'thims','2024-05-06 15:59:52');
/*!40000 ALTER TABLE `external_doctor_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frequency_type_master`
--

DROP TABLE IF EXISTS `frequency_type_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `frequency_type_master` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `frq_type` char(20) NOT NULL,
  `frq_description` varchar(20) NOT NULL,
  `frq_no_of_times` tinyint(3) unsigned NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`,`company_id`,`branch_id`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`frq_type`,`frq_description`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frequency_type_master`
--

LOCK TABLES `frequency_type_master` WRITE;
/*!40000 ALTER TABLE `frequency_type_master` DISABLE KEYS */;
INSERT INTO `frequency_type_master` VALUES (1,0,0,'OD','Once Daily',1,'Y','thims','2018-07-02 17:02:41','','0000-00-00 00:00:00'),(2,0,0,'BD','Twice daily',2,'Y','thims','2018-07-02 17:02:56','','0000-00-00 00:00:00'),(3,0,0,'TDS','Thrice daily',3,'Y','thims','2018-07-02 17:03:13','','0000-00-00 00:00:00'),(4,0,0,'QDS','Four times daily',4,'Y','thims','2018-07-02 17:03:28','','0000-00-00 00:00:00'),(5,0,0,'SOS','If required',0,'Y','thims','2018-07-02 17:03:42','','0000-00-00 00:00:00'),(6,0,0,'CUSTM','CUSTOM',99,'Y','thims','2021-07-01 14:15:04','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `frequency_type_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frequency_type_sub_master`
--

DROP TABLE IF EXISTS `frequency_type_sub_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `frequency_type_sub_master` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `frq_id` int(11) NOT NULL,
  `frq_sr_no` tinyint(4) NOT NULL,
  `frq_time_slot` varchar(50) NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`,`company_id`,`branch_id`),
  UNIQUE KEY `frq_id` (`frq_id`,`frq_time_slot`,`company_id`,`branch_id`) USING BTREE,
  CONSTRAINT `frequency_type_sub_master_ibfk_1` FOREIGN KEY (`frq_id`) REFERENCES `frequency_type_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frequency_type_sub_master`
--

LOCK TABLES `frequency_type_sub_master` WRITE;
/*!40000 ALTER TABLE `frequency_type_sub_master` DISABLE KEYS */;
INSERT INTO `frequency_type_sub_master` VALUES (1,0,0,1,1,'08:00','thims','2018-07-02 17:05:02','','0000-00-00 00:00:00'),(2,0,0,1,2,'10:00','thims','2018-07-02 17:05:02','','0000-00-00 00:00:00'),(3,0,0,1,3,'00:00','thims','2018-07-02 17:05:02','','0000-00-00 00:00:00'),(4,0,0,2,1,'07:00,19:00','thims','2018-07-02 17:05:55','','0000-00-00 00:00:00'),(5,0,0,2,2,'08:00,20:00','thims','2018-07-02 17:05:55','','0000-00-00 00:00:00'),(6,0,0,2,3,'09:00,21:00','thims','2018-07-02 17:05:55','','0000-00-00 00:00:00'),(7,0,0,2,4,'10:00,22:00','thims','2018-07-02 17:05:55','','0000-00-00 00:00:00'),(8,0,0,2,5,'08:00,16:00','thims','2018-07-02 17:05:55','','0000-00-00 00:00:00'),(9,0,0,3,1,'07:00,15:00,23:00','thims','2018-07-02 17:06:31','','0000-00-00 00:00:00'),(10,0,0,3,2,'06:00,15:00,23:00','thims','2018-07-02 17:06:31','','0000-00-00 00:00:00'),(11,0,0,4,1,'06:00,12:00,18:00,00:00','thims','2018-07-02 17:06:55','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `frequency_type_sub_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `general_code_master`
--

DROP TABLE IF EXISTS `general_code_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `general_code_master` (
  `master_cd` varchar(8) NOT NULL COMMENT 'Indicates the general master code',
  `master_description` varchar(50) NOT NULL COMMENT 'Information about the asset',
  `active` varchar(3) NOT NULL DEFAULT 'Yes' COMMENT 'Yes or no',
  `short_code` varchar(6) NOT NULL,
  `language` char(1) NOT NULL COMMENT 'language flag',
  `calculation` char(1) NOT NULL COMMENT 'calculation flag',
  `gm_order` enum('Y','N') NOT NULL DEFAULT 'N',
  `gm_shortcode` enum('Y','N') NOT NULL DEFAULT 'N',
  `gm_custom_field` enum('Y','N') NOT NULL DEFAULT 'N',
  PRIMARY KEY (`master_cd`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `general_code_master`
--

LOCK TABLES `general_code_master` WRITE;
/*!40000 ALTER TABLE `general_code_master` DISABLE KEYS */;
INSERT INTO `general_code_master` VALUES ('ACATG','Asset Categories','yes','ACATG','Y','Y','N','N','N'),('ACOMP','Asset Companies','Yes','ACOMP','N','N','N','N','N'),('BILLSRNO','IP Billing Order','Yes','BILLSR','N','N','Y','N','N'),('DIETYP','Diet Type  Master','Yes','DIETYP','N','N','N','Y','N'),('DISCSUMM','Discharge Summary Elements','Yes','DISCSU','N','N','Y','N','N'),('GINST','General Instruction Master','Yes','GINST','Y','N','N','N','N'),('INVM','Investigation Group Master','yes','INVM','N','N','N','N','N'),('LABELEMT','LAB Elements - Biopsy','Yes','LABELE','N','N','N','Y','N'),('LBSAMPLE','Pathology Sample Master','Yes','LBSAMP','N','N','N','N','N'),('LCAT','Lab Category','Yes','LCAT','N','N','N','N','N'),('MFREQ','Medicine Frequency','Yes','MFREQ','Y','N','N','N','N'),('MINST','Medicine Instruction Master','Yes','MINST','Y','N','N','N','N'),('MLCMB','Meal Type Master','Yes','MLCMB','N','N','N','Y','N'),('MLCTYP','MLC Type','Yes','MLCTYP','N','N','N','N','N'),('MRDOCS','MR Document Master','yes','MRDOC','N','N','Y','N','N'),('OPCAREP','OP CARE ORDER','yes','OPCARE','N','N','Y','Y','N'),('OPG','Operation Grade','Yes','OPG','N','N','N','N','N'),('PMODE','Payment Mode','Yes','PMODE','N','N','Y','N','N'),('PTYPE','Medicine Category','Yes','PTYPE','N','Y','N','N','N'),('RELIGION','Religion Master','Yes','RELIGI','N','N','N','N','N'),('ROOMGRP','Room Category Group','yes','ROMGRP','Y','Y','N','N','N'),('SHIFT','Shift Master','Yes','SHIFT','N','N','N','N','N'),('SMSCUSTM','SMS PURPOSE - CUSTOM','Yes','','N','N','N','N','N'),('SMSPURPS','SMS PURPOSE','Yes','','N','N','N','N','N'),('SPTYPE','Speciality Master','Yes','SPTYPE','N','N','N','N','N'),('STORE','Store Master','Yes','STORE','N','Y','N','N','N'),('USERROLE','User Role','Yes','USROLE','N','N','N','Y','N'),('WAMSGTYP','Whatsapp Message Type','Yes','','N','N','N','Y','N'),('WAPURPS','Whatsapp PURPOSE','Yes','','N','N','N','N','N');
/*!40000 ALTER TABLE `general_code_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `general_master`
--

DROP TABLE IF EXISTS `general_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `general_master` (
  `master_cd` varchar(8) NOT NULL,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `gm_code` varchar(6) NOT NULL,
  `gm_code_sr` int(11) NOT NULL,
  `gm_description` text NOT NULL,
  `gm_description_hindi` text CHARACTER SET utf8 NOT NULL,
  `gm_description_guj` text CHARACTER SET utf8 NOT NULL,
  `gm_custom_field` text NOT NULL,
  `auto_calculation` char(1) NOT NULL,
  `gm_short_code` varchar(40) NOT NULL,
  `gm_short_code2` varchar(6) NOT NULL,
  `gm_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `is_auto_created` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Indicates, whether it is updated through trigger or manually updated.',
  `is_auto_updated` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Indicates, whether it is updated through trigger or manually updated.',
  `mapping_id` tinyint(3) unsigned DEFAULT NULL COMMENT 'Mapping category_master.category_id',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`master_cd`,`company_id`,`branch_id`,`gm_code`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `general_master`
--

LOCK TABLES `general_master` WRITE;
/*!40000 ALTER TABLE `general_master` DISABLE KEYS */;
INSERT INTO `general_master` VALUES ('ACATG',0,0,'7',0,'Desktop','','','','','DSK','','Y',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ACOMP',0,0,'4',0,'Lenovo','','','','','Len','','Y',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ASSTCOND',0,0,'1',1,'Working','','','','','','','Y',0,0,NULL,'','2024-06-13 10:16:01','','2024-06-13 10:16:01'),('ASSTCOND',0,0,'2',2,'Under Maintenance','','','','','','','Y',0,0,NULL,'','2024-06-13 10:16:01','','2024-06-13 10:16:01'),('ASSTCOND',0,0,'3',3,'Not Working','','','','','','','Y',0,0,NULL,'','2024-06-13 10:16:01','','2024-06-13 10:16:01'),('ASSTCOND',0,0,'4',4,'Repairable','','','','','','','Y',0,0,NULL,'','2024-06-13 10:16:01','','2024-06-13 10:16:01'),('ASSTCOND',0,0,'5',5,'Condemnable','','','','','','','Y',0,0,NULL,'','2024-06-13 10:16:01','','2024-06-13 10:16:01'),('BILLSRNO',0,0,'0',999,'OTHER CHARGES','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('BILLSRNO',0,0,'1',1,'ADMISSION CHARGES','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('BILLSRNO',0,0,'10',10,'PHYSIOTHERAPY CHARGES','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('BILLSRNO',0,0,'11',11,'OPD & WARD PROCEDURE','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('BILLSRNO',0,0,'12',12,'WARD/ICU PROCEDURES','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('BILLSRNO',0,0,'13',12,'PROCEDURE CHARGES','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('BILLSRNO',0,0,'14',14,'BIO MEDICAL EQUIPMENT CHARGES','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('BILLSRNO',0,0,'15',15,'AMBULANCE SERVICES','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('BILLSRNO',0,0,'16',16,'ADMINISTRATIVE SERVICES','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('BILLSRNO',0,0,'2',2,'ROOM CHARGES','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('BILLSRNO',0,0,'3',3,'DOCTOR VISIT CHARGES','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('BILLSRNO',0,0,'4',4,'SURGERY CHARGES','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('BILLSRNO',0,0,'5',5,'OPERATION THEATER CHARGES','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('BILLSRNO',0,0,'6',6,'LABORATORY TEST','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('BILLSRNO',0,0,'7',7,'RADIOLOGY TEST','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('BILLSRNO',0,0,'8',8,'CARDIOLOGY INVESTIGATIONS','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('BILLSRNO',0,0,'9',9,'NEUROLOGY INVESTIGATIONS','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('BILLTYPE',0,0,'1',1,'Venda a Dinheiro | VD','','','','','','CSH','Y',0,0,NULL,'','2025-08-06 10:09:52','','2025-08-06 10:09:52'),('BILLTYPE',0,0,'2',2,'Fatura | FATURA','','','','','','CR','Y',0,0,NULL,'','2025-08-06 10:09:52','','2025-08-06 10:09:52'),('BILLTYPE',0,0,'3',3,'Fatura | FACT_ENT','','','','','','CRE','Y',0,0,NULL,'','2025-08-06 10:09:52','','2025-08-06 10:09:52'),('BILLTYPE',0,0,'4',4,'Devolucao de VD | REVERSE','','','','','','RVD','Y',0,0,NULL,'','2025-08-06 10:09:52','','2025-08-06 10:09:52'),('BILLTYPE',0,0,'5',5,'Nota de Credito | NC','','','','','','NC','Y',0,0,NULL,'','2025-08-06 10:09:52','','2025-08-06 10:09:52'),('DIETYP',0,0,'1',0,'Normal diet','','','','','','','Y',0,0,NULL,'thims','2023-11-24 10:07:49','','0000-00-00 00:00:00'),('DIETYP',0,0,'10',0,'Low fat diet','','','','','','','Y',0,0,NULL,'thims','2023-11-24 10:07:49','','0000-00-00 00:00:00'),('DIETYP',0,0,'11',0,'High calorie','','','','','','','Y',0,0,NULL,'thims','2023-11-24 10:07:49','','0000-00-00 00:00:00'),('DIETYP',0,0,'12',0,'Salt restricted diet','','','','','','','Y',0,0,NULL,'thims','2023-11-24 10:07:49','','0000-00-00 00:00:00'),('DIETYP',0,0,'13',0,'Low residue diet','','','','','','','Y',0,0,NULL,'thims','2023-11-24 10:07:49','','0000-00-00 00:00:00'),('DIETYP',0,0,'14',0,'High protein diet','','','','','','','Y',0,0,NULL,'thims','2023-11-24 10:07:49','','0000-00-00 00:00:00'),('DIETYP',0,0,'15',0,'High potassium diet','','','','','','','Y',0,0,NULL,'thims','2023-11-24 10:07:49','','0000-00-00 00:00:00'),('DIETYP',0,0,'16',0,'Fat free diet','','','','','','','Y',0,0,NULL,'thims','2023-11-24 10:07:49','','0000-00-00 00:00:00'),('DIETYP',0,0,'17',0,'Ryles Tube Feeding','','','','','','','Y',0,0,NULL,'thims','2023-11-24 10:07:49','','0000-00-00 00:00:00'),('DIETYP',0,0,'2',0,'Liquid diet','','','','','','','Y',0,0,NULL,'thims','2023-11-24 10:07:49','','0000-00-00 00:00:00'),('DIETYP',0,0,'3',0,'Semi-soft diet','','','','','','','Y',0,0,NULL,'thims','2023-11-24 10:07:49','','0000-00-00 00:00:00'),('DIETYP',0,0,'4',0,'Diabetic diet','','','','','','','Y',0,0,NULL,'thims','2023-11-24 10:07:49','','0000-00-00 00:00:00'),('DIETYP',0,0,'5',0,'Semisoft diabetic diet','','','','','','','Y',0,0,NULL,'thims','2023-11-24 10:07:49','','0000-00-00 00:00:00'),('DIETYP',0,0,'6',0,'Diabetic Liquid diet','','','','','','','Y',0,0,NULL,'thims','2023-11-24 10:07:49','','0000-00-00 00:00:00'),('DIETYP',0,0,'7',0,'Renal diet','','','','','','','Y',0,0,NULL,'thims','2023-11-24 10:07:49','','0000-00-00 00:00:00'),('DIETYP',0,0,'8',0,'Renal diabetic diet','','','','','','','Y',0,0,NULL,'thims','2023-11-24 10:07:49','','0000-00-00 00:00:00'),('DIETYP',0,0,'9',0,'High fiber diet','','','','','','','Y',0,0,NULL,'thims','2023-11-24 10:07:49','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'1',2,'PROVISIONAL DIAGNOSIS','','','','','PROVDIAG','','Y',0,0,NULL,'thims','2020-05-14 16:40:13','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'10',14,'DISCHARGE ADVICE','','','','','ADVICE','','Y',0,0,NULL,'thims','2020-05-14 16:52:48','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'11',0,'NOTE','','','','','NOTE','','N',0,0,NULL,'thims','2020-05-14 16:53:10','thims','2020-09-14 15:22:17'),('DISCSUMM',0,0,'12',15,'TREATMENT DURING HOSPITALIZATION','','','','','TREATGIVEN','','Y',0,0,NULL,'thims','2020-05-14 16:42:59','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'13',16,'TREATMENT ON DISCHARGE','','','','','TREATDISC','','Y',0,0,NULL,'thims','2020-05-14 16:43:19','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'14',0,'LIST OF PENDING REPORTS','','','','','PENDINGREPORTS','','N',0,0,NULL,'thims','2020-05-14 16:43:34','thims','2020-09-14 15:22:29'),('DISCSUMM',0,0,'15',0,'PREVENTIVE COUNSELLING','','','','','PREVCOUNS','','N',0,0,NULL,'thims','2020-05-14 16:43:54','thims','2020-09-14 15:22:39'),('DISCSUMM',0,0,'16',0,'WHEN TO CONTACT','','','','','whenToContact','','N',0,0,NULL,'thims','2020-05-14 18:18:29','thims','2020-05-15 13:53:42'),('DISCSUMM',0,0,'17',0,'WHOM TO CONTACT','','','','','whomToContact','','N',0,0,NULL,'thims','2020-05-14 18:19:20','thims','2020-05-15 13:53:54'),('DISCSUMM',0,0,'18',17,'FOLLOW UP DATE','','','','','FOLLOWUPDATE','','Y',0,0,NULL,'thims','2020-05-14 16:44:13','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'19',0,'HISTORY','','','','','DISCHISTORY','','N',0,0,NULL,'thims','2020-05-15 14:29:40','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'2',3,'DISCHARGE DIAGNOSIS','','','','','DISCDIAG','','Y',0,0,NULL,'thims','2020-05-14 16:40:33','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'20',0,'HOSPITAL COURSE','','','','','HOSPCOURSE','','N',0,0,NULL,'thims','2020-05-15 14:30:09','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'21',10,'CONDITION ON ADDMISSION','','','','','CONDONADDMISSION','','Y',0,0,NULL,'thims','2020-05-15 14:30:09','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'23',4,'KNOWN FOOD/DRUG/OTHER ALLERGIES','','','','','FOOD_DRUG_ALLERGIES','','Y',0,0,NULL,'thims','2020-09-12 16:44:13','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'24',5,'PAST MEDICAL/SURGICAL HISTORY','','','','','MEDICAL_SURGICAL_HISTORY','','Y',0,0,NULL,'thims','2020-09-12 16:44:13','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'25',7,'NAME OF SURGERY/PROCEDURE PERFORMED','','','','','SURGERY_PROCEDURE_PERFORMED','','Y',0,0,NULL,'thims','2020-09-12 16:44:13','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'26',18,'WHEN TO OBTAIN URGENT CARE','','','','','WHEN_OBTAIN_URGENT_CARE','','N',0,0,NULL,'thims','2020-09-12 16:44:13','thims','2024-05-06 16:04:44'),('DISCSUMM',0,0,'27',19,'HOW TO OBTAIN URGENT CARE','','','','','HOW_OBTAIN_URGENT_CARE','','N',0,0,NULL,'thims','2020-09-12 16:44:13','thims','2024-05-06 16:05:02'),('DISCSUMM',0,0,'28',20,'MEDICATION & DISCHARGE SUMMARY EXPLAINED BY','','','','','MEDI_DISC_SUMMARY_EXPLAIN_BY','','N',0,0,NULL,'thims','2020-09-12 16:44:13','thims','2024-05-06 16:05:24'),('DISCSUMM',0,0,'29',21,'MEDICATION & DISCHARGE SUMMARY EXPLAINED TO','','','','','MEDI_DISC_SUMMARY_EXPLAIN_TO','','N',0,0,NULL,'thims','2020-09-12 16:44:13','thims','2024-05-06 16:05:45'),('DISCSUMM',0,0,'3',1,'CONSULTATIONS','','','','','CONSULTATIONS','','Y',0,0,NULL,'thims','2020-05-14 16:40:48','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'30',22,'DS EXPLAINED TO PATIENT','','','','','DS_EXPLAINED_TO_PATIENT','','N',0,0,NULL,'thims','2020-09-12 16:44:13','thims','2024-05-06 16:05:59'),('DISCSUMM',0,0,'31',16,'Treatment On Discharge (Text Input)','','','','','TREATDISC_TI','','Y',0,0,NULL,'thims','2020-05-14 16:40:13','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'32',15,'Treatment During Hosptilization (Text Input)','','','','','TREATGIVEN_TI','','Y',0,0,NULL,'thims','2020-05-14 16:52:48','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'33',25,'PAST MEDICATION','','','','','PASTMEDI','','N',0,0,NULL,'thims','2022-07-04 16:44:13','thims','2022-07-19 17:38:04'),('DISCSUMM',0,0,'34',26,'SOCIAL HABITS','','','','','SOCIALHABIT','','N',0,0,NULL,'thims','2022-07-04 16:44:13','thims','2022-07-19 17:38:44'),('DISCSUMM',0,0,'4',6,'HISTORY AND HOSPITAL COURSE','','','','','HISTHOSPCOURSE','','Y',0,0,NULL,'thims','2020-05-14 16:41:13','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'40',6,'Investigation / Imaging ','','','','','INVIMG','','N',0,0,NULL,'thims','2020-05-14 16:40:13','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'5',8,'OPERATIVE NOTES','','','','','OTNOTE','','Y',0,0,NULL,'thims','2020-05-14 18:30:38','thims','2020-05-15 13:52:58'),('DISCSUMM',0,0,'6',13,'CONDITION UPON DISCHARGE','','','','','DISCCOND','','Y',0,0,NULL,'thims','2020-05-14 16:41:34','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'7',9,'VITALS ON ADMISSION','','','','','VITALSONADDMISSION','','Y',0,0,NULL,'thims','2020-05-14 16:41:59','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'8',11,'VITALS ON DISCHARGE','','','','','VITALSONDISCHARGE','','Y',0,0,NULL,'thims','2020-05-14 16:42:15','','0000-00-00 00:00:00'),('DISCSUMM',0,0,'9',0,'DIET ADVICE','','','','','DIET','','N',0,0,NULL,'thims','2020-05-14 16:42:36','thims','2020-09-14 15:22:10'),('DISGTYPE',0,0,'1',0,'NORMAL','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('DISGTYPE',0,0,'2',0,'TRANSFER','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('DISGTYPE',0,0,'3',0,'DOR','Discharge On Request Summary','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('DISGTYPE',0,0,'4',0,'LAMA','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('DISGTYPE',0,0,'5',0,'DEATH','DEATH SUMMARY','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('DISGTYPE',0,0,'6',0,'IMPROVED','Discharge Summary','','','','','','Y',0,0,NULL,'thims','2024-05-21 10:53:44','','0000-00-00 00:00:00'),('DISGTYPE',0,0,'7',0,'DAMA','DAMA SUMMARY','','','','','','Y',0,0,NULL,'thims','2025-10-29 12:05:19','','0000-00-00 00:00:00'),('ENCGP',0,0,'',0,'','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'ADDPRO',8,'Additional Procedure Details(MGB)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'ALRGY',0,'History Of Allergy','','','','','','','Y',0,0,0,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'APDBL',9,'ADDITIONAL PROCEDURE DETAILS(BALLOON)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'BRPB',8,'BALLOON REMOVEL PARTII','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'CC',0,'Chief Complaint','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'DIAG',0,'Diagnosis','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'EXAMIN',0,'Examination','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'FHIST',0,'Family History','','','','','','','Y',0,0,0,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'FOLLOW',0,'FOLLOWUP FORM','','','','','','','Y',0,0,NULL,'thims','2022-06-27 11:33:49','','0000-00-00 00:00:00'),('ENCGP',0,0,'HIST',0,'History','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'IBPOD',1,'PRE-OPERATIVE DETAILS(BALLOON)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'INITAS',0,'INITIAL ASSESSMENT','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'MEDHIS',0,'Medical History','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'OPEDET',3,'OPERATION DETAILS(MGB)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'OTHNOT',0,'Other Notes','','','','','','','Y',0,0,0,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'PAPOD',3,'PRE-OPERATIVE DETAILS(BALLOON) PART 1','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'PDCBLD',6,'POST - OP DAY Complications Bleeding(MGB)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'PDCOBS',7,'POST - OP DAY Complications Obstruction(MGB)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'PDCOLK',5,'POST - OP DAY Complications LEAK(MGB)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'PINV',0,'Past Investigation','','','','','','','Y',0,0,0,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'PLAN',0,'Plan Notes','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'PMED',0,'Past Medication','','','','','','','Y',0,0,0,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'PODCBL',5,'POST-OP DAY COMPLICATIONS BLEED(BALLOON)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'PODCBN',6,'POST-OP DAY COMPLICATIONS BALLOON(BALLOON)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'PODCIB',4,'POST-OP DAY COMPLICATIONS(BALLOON)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'PODCOM',4,'POST - OP DAY Complications(MGB)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'PODCSP',7,'POST-OP DAY COMPLICATIONS SPATZ3(BALLOON)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'POPREV',2,'PRE OPERATIVE DETAILS - REVISION(MGB)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'PREOPD',1,'PRE OPERATIVE DETAILS(MGB)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'PROPIX',0,'PRE OP IX','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'REVPOD',2,'PRE-OPERATIVE DETAILS(BALLOON) REVISION','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'RYAPRD',0,'Additional Procedure Details(RYGB)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'RYCOBL',0,'POST - OP DAY Complications Bleeding(RYGB)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'RYCOLK',0,'POST - OP DAY Complications LEAK(RYGB)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'RYDCO',0,'POST - OP DAY Complications Obstruction(RYGB)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'RYOPDT',0,'Operation Details(RYGB)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'RYPOCO',0,'POST - OP DAY Complications(RYGB)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'RYPREV',0,'PRE OPERATIVE DETAILS - REVISION(RYGB)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'RYPROP',0,'PRE-OPERATIVE DETAILS(RYGB)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'SGAPD',9,'ADDITIONAL PROCEDURE DETAILS (SLEEVE GASTERCTOMY)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'SGOD',3,'OPERATION DETAILS(SLEEVE GASTRECTOMY)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'SGPDC',4,'POST-OP DAY COMPLICATIONS(SLEEVE GASTRECTOMY)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'SGPDCB',6,'POST-OP DAY COMPLICATIONS BLEED(SLEEVE GASTRECTOMY)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'SGPDCL',5,'POST - OP DAY Complications LEAK(SLEEVE GASTRECTOMY)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'SGPDCO',7,'POST-OP DAY COMPLICATIONS OBSTRUCTION(SLEEVE GASTRECTOMY)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'SGPDOP',8,'POST-OP DAY COMPLICATIONS OP(SLEEVE GASTERCTOMY)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'SGPOD',1,'PRE-OPERATIVE DETAILS(SLEEVE GASTRECTOMY)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'SGPOR',2,'PRE OPERATIVE REVISION(SLEEVE GASTRECTOMY)','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'SHABIT',0,'Social Habits','','','','','','','Y',0,0,0,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'SHIST',0,'Past Surgical History','','','','','','','Y',0,0,0,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'SKIN',0,'SKIN','','','','','','','Y',0,0,NULL,'thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('ENCGP',0,0,'Vitals',0,'Vitals','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('FILMSIZE',0,0,'1',0,'10 x 12','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('FILMSIZE',0,0,'2',0,'10 x 14','','','','','','','N',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('FILMSIZE',0,0,'3',0,'8 x 10','','','','','','','Y',0,0,NULL,'thims','2021-03-03 14:47:44','','0000-00-00 00:00:00'),('FILMSIZE',0,0,'4',0,'14 x 17','','','','','','','Y',0,0,NULL,'thims','2021-03-03 14:47:55','','0000-00-00 00:00:00'),('IDTYPE',0,0,'AADHAR',0,'AADHAR CARD','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('IDTYPE',0,0,'DL',0,'DRIVING LICENCE','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('IDTYPE',0,0,'PAN',0,'PAN CARD','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('IDTYPE',0,0,'PASSID',0,'PASSPORT','','','','','','','Y',0,0,NULL,'thims','2023-02-13 11:33:49','','0000-00-00 00:00:00'),('IDTYPE',0,0,'VID',0,'VOTER ID','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('INVM',0,0,'1',0,'INTAKE','','','','','','','Y',0,0,NULL,'thims','2020-12-17 15:04:19','','0000-00-00 00:00:00'),('INVM',0,0,'2',0,'OUTPUT','','','','','','','Y',0,0,NULL,'thims','2020-12-17 15:04:38','','0000-00-00 00:00:00'),('INVM',0,0,'3',0,'VITAL SIGNS','','','','','','','Y',0,0,NULL,'thims','2020-12-17 15:05:32','','0000-00-00 00:00:00'),('INVM',0,0,'4',0,'INFUSION PUMP','','','','','','','Y',0,0,NULL,'thims','2020-12-17 15:05:47','','0000-00-00 00:00:00'),('INVM',0,0,'5',0,'VENTILATOR SETTING','','','','','','','Y',0,0,NULL,'thims','2020-12-17 15:06:02','','0000-00-00 00:00:00'),('INVM',0,0,'6',0,'VENTILATOR DATA','','','','','','','Y',0,0,NULL,'thims','2020-12-17 15:06:19','','0000-00-00 00:00:00'),('INVM',0,0,'7',0,'PUPIL','','','','','','','Y',0,0,NULL,'thims','2020-12-17 15:06:49','','0000-00-00 00:00:00'),('INVM',0,0,'8',0,'OTHERS','','','','','','','Y',0,0,NULL,'thims','2020-12-17 15:06:36','','0000-00-00 00:00:00'),('LABELEMT',0,0,'1',0,'BIOPSY NUMBER','','','','','BIOPSY','','Y',0,0,NULL,'thims','2021-12-03 10:24:19','','0000-00-00 00:00:00'),('LABELEMT',0,0,'2',0,'CLINICAL IMPRESSION','','','','','CLINIMP','','Y',0,0,NULL,'thims','2021-11-10 10:24:19','','0000-00-00 00:00:00'),('LABELEMT',0,0,'3',0,'NATURE OF MATERIAL RECEIVED','','','','','NOMR','','Y',0,0,NULL,'thims','2021-11-08 16:40:13','thims','2021-11-09 11:48:04'),('LABELEMT',0,0,'4',0,'GROSS DESCRIPTION','','','','','GRDESC','','Y',0,0,NULL,'thims','2021-11-09 11:48:32','','0000-00-00 00:00:00'),('LABELEMT',0,0,'5',0,'MICROSCOPY','','','','','MICRO','','Y',0,0,NULL,'thims','2021-12-03 10:24:19','','0000-00-00 00:00:00'),('LABELEMT',0,0,'6',0,'IMPRESSION','','','','','IMPRSN','','Y',0,0,NULL,'thims','2021-11-09 11:49:19','','0000-00-00 00:00:00'),('LABELEMT',0,0,'7',0,'REMARK','','','','','REMARK','','Y',0,0,NULL,'thims','2021-12-03 10:24:19','','0000-00-00 00:00:00'),('LABELEMT',0,0,'8',0,'SUMMARY','','','','','SUMMARY','','Y',0,0,NULL,'thims','2021-11-09 11:48:49','','0000-00-00 00:00:00'),('MDos',0,0,'01',0,'1-0-1','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MDos',0,0,'02',0,'0-0-1','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MDos',0,0,'03',0,'1-1-1','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MDos',0,0,'04',0,'1-0-0','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MDos',0,0,'05',0,'0-1-0','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MDos',0,0,'06',0,'0.5-0-1','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MDos',0,0,'07',0,'0-0-0.5','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MFREQ',0,0,'Dy',0,'DAY','દિવસ','દિવસ','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','thims','2021-02-22 15:15:18'),('MFREQ',0,0,'Mh',0,'MONTH','મહિના','મહિના','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','thims','2021-02-22 15:16:06'),('MFREQ',0,0,'Wk',0,'WEEK','WEEK','અઠવાડિયે','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','yogeshp','2020-07-07 16:08:25'),('MLCTYP',0,0,'1',0,'Assault And Battery, Including Domestic Violence And Child Abuse','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'10',0,'Criminal Abortions','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'11',0,'Attempted Suicide','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'12',0,'Cases Of Asphyxia As A Result Of Hanging, Strangulation, Drowning,suffocation Etc.','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'13',0,'Custodial Deaths','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'14',0,'Death In The Operation Theatre','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'15',0,'Unnatural Deaths','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'16',0,'Death Due To Snake Bite Or Animal Bite','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'17',0,'Fire Arm Injuries','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'18',0,'Drug Overdose','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'19',0,'Drug Abuse','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'2',0,'Accidents Like Road Traffic Accidents (RTA), Industrial Accidents Etc.','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'20',0,'Dead Brought To The Accident And Emergency Dept / MI Room (Found Dead) And Deaths Occurring Within 24 Hours Of Hospitalization Without Establishment Of A Diagnosis','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'3',0,'Cases Of Trauma With Suspicion Of Foul Play','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'4',0,'Electrical Injuries','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'5',0,'Poisoning, Alcohol Intoxication 3','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'6',0,'Undiagnosed Coma','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'7',0,'Chemical Injuries','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'8',0,'Burns And Scalds','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('MLCTYP',0,0,'9',0,'Sexual Offences','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('NINSTR',0,0,'BKRS',0,'Back Rest','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('NINSTR',0,0,'CSPN',0,'Cold Sponging','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('NINSTR',0,0,'HDLW',0,'Head Low','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('NINSTR',0,0,'I-M',0,'I/M','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('NINSTR',0,0,'I/D',0,'I/D','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('NINSTR',0,0,'I/V',0,'I/V','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('NINSTR',0,0,'S/C',0,'S/C','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('NOTIFYCD',0,0,'LAB',0,'Laboratory Result Approval','','','','N','','','Y',0,0,0,'thims','2024-10-15 16:36:27','','0000-00-00 00:00:00'),('OPCARE',0,0,'1',1,'Comorbidities','','','','','CO-MOR','','Y',0,0,NULL,'thims','2024-05-10 09:11:41','','0000-00-00 00:00:00'),('OPCARE',0,0,'10',10,'Radilogy','','','','','RADIO','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCARE',0,0,'11',11,'Additional Vitals','','','','','ADD_VITALS','','N',0,0,NULL,'thims','2023-05-10 09:11:41','','2023-10-17 09:11:41'),('OPCARE',0,0,'12',12,'Procedure','','','','','WPRC','','Y',0,0,NULL,'thims','2023-05-10 09:11:41','','2023-10-17 09:11:41'),('OPCARE',0,0,'13',13,'RX','','','','','RX','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCARE',0,0,'14',14,'Medical Advice','','','','','MADVIC','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCARE',0,0,'15',15,'Advice','','','','','PLAN','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCARE',0,0,'16',14,'Verbal Advice','','','','','AUDIO_RECORD','','N',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCARE',0,0,'17',14,'Illustrative Images','','','','','ILLUSTRATIVE_IMAGES','','N',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCARE',0,0,'18',14,'Illustrative Image 1','','','','','ILLUS_IMG1','','N',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCARE',0,0,'19',14,'Illustrative Image 2','','','','','ILLUS_IMG2','','N',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCARE',0,0,'2',2,'Hypersensitivity','','','','','SENSIT','','Y',0,0,NULL,'thims','2024-05-10 09:11:41','','0000-00-00 00:00:00'),('OPCARE',0,0,'20',14,'Illustrative Image 3','','','','','ILLUS_IMG3','','N',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCARE',0,0,'3',3,'Chief Complain','','','','','CC','','Y',0,0,NULL,'thims','2024-05-10 09:11:41','','0000-00-00 00:00:00'),('OPCARE',0,0,'4',4,'History','','','','','HIST','','Y',0,0,NULL,'thims','2024-05-10 09:11:41','','0000-00-00 00:00:00'),('OPCARE',0,0,'5',5,'Vitals','','','','','VITALS','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCARE',0,0,'6',6,'ECG','','','','','ECG','','N',0,0,NULL,'THIMS','2024-02-05 09:11:41','','0000-00-00 00:00:00'),('OPCARE',0,0,'7',7,'Examination','','','','','EXAMIN','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCARE',0,0,'8',8,'Diagnosis','','','','','DIAG','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCARE',0,0,'9',9,'Lab','','','','','LAB','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'1',2,'Hypersensitivity','','','','','SENSIT','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'10',11,'Procedure','','','','','WPRC','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'11',12,'RX','','','','','RX','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'12',13,'Medical Advice','','','','','MADVIC','','N',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'13',14,'Advice','','','','','PLAN','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'14',15,'Explaination','','','','','PAT_EXPLAIN','','N',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'15',16,'Menstrual History','','','','','MENSTRUAL_HISTORY','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'16',17,'Reading for AMPs and Hz','','','','','READING_AMPs','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'17',18,'Action','','','','','HISTORY','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'18',19,'Verbal Advice','','','','','AUDIO_RECORD','','N',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'19',20,'Illustrative Images','','','','','ILLUSTRATIVE_IMAGES','','N',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'2',3,'Chief Complain','','','','','CC','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'20',21,'Illustrative Image 1','','','','','ILLUS_IMG1','','N',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'21',22,'Illustrative Image 2','','','','','ILLUS_IMG2','','N',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'22',23,'Illustrative Image 3','','','','','ILLUS_IMG3','','N',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'24',6,'ECG','','','','','ECG','','Y',0,0,NULL,'THIMS','2024-02-05 09:11:41','','0000-00-00 00:00:00'),('OPCAREP',0,0,'3',4,'History','','','','','HIST','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'4',1,'Comorbidities','','','','','CO-MOR','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'5',5,'Vitals','','','','','VITALS','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'6',7,'Examination','','','','','EXAMIN','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'7',8,'Diagnosis','','','','','DIAG','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'8',9,'Lab','','','','','LAB','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPCAREP',0,0,'9',10,'Radilogy','','','','','RADIO','','Y',0,0,NULL,'THIMS','2023-10-17 09:11:41','','2023-10-17 09:11:41'),('OPG',0,0,'0',0,'G00','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('OPG',0,0,'1',0,'G01','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('OPG',0,0,'10',0,'G10','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('OPG',0,0,'2',0,'G02','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('OPG',0,0,'3',0,'G03','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('OPG',0,0,'4',0,'G04','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('OPG',0,0,'5',0,'G05','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('OPG',0,0,'6',0,'G06','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('OPG',0,0,'7',0,'G07','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('OPG',0,0,'8',0,'G08','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('OPG',0,0,'9',0,'G09','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('OTROOM',0,0,'1',0,'OT-1','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('OTROOM',0,0,'2',0,'OT-2','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('OTROOM',0,0,'3',0,'OT-3','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PMODE',0,0,'1',0,'NEFT / RTGS','','','','N','Bank Account','','Y',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PMODE',0,0,'2',0,'DEBIT CARD','','','','N','Bank Account','','Y',0,0,NULL,'thims','2021-08-06 13:15:07','thims','2021-08-06 13:15:21'),('PMODE',0,0,'7',0,'UPI','','','','N','Bank Account','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PMODE',0,0,'CHQ',0,'CHEQUE','','','','N','Bank Account','','Y',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PMODE',0,0,'CRD',0,'CREDIT CARD','','','','N','Bank Account','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PMODE',0,0,'CSH',0,'CASH','','','','N','Cash','','Y',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('Profile',0,0,'1',0,'GENERAL-SPINE','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('Profile',0,0,'All',0,'ALL Profiles','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('Profile',0,0,'ANC',0,'ANC','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('profile',0,0,'BALLOO',0,'BALLOON','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('Profile',0,0,'CVA',0,'CVA','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('profile',0,0,'Elbow',0,'Elbow','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('profile',0,0,'GB',0,'GASTRIC BALLOON','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('Profile',0,0,'Generl',0,'General','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('profile',0,0,'GENO',0,'General - Ortho','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('Profile',0,0,'GYNAC',0,'Gynac','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('profile',0,0,'Knee',0,'Knee','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('profile',0,0,'MGB',0,'MGB','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('profile',0,0,'PED1',0,'New Born','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('Profile',0,0,'PNC',0,'PNC','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('Profile',0,0,'Poison',0,'Poison','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('profile',0,0,'RYGB',0,'RYGB','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('Profile',0,0,'SBITE',0,'Snake Bite','','','','','','','',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('profile',0,0,'SHLDR',0,'Shoulder','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('profile',0,0,'SLG',0,'SLEEVE GASTRECTOMY','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PROGTYPE',0,0,'DO',0,'Document','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PROGTYPE',0,0,'MA',0,'Master','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PROGTYPE',0,0,'RP',0,'Report','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PROGTYPE',0,0,'TE',0,'Template','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PROGTYPE',0,0,'TR',0,'Transaction','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'BLED',0,'Bled','','','','','','','N',1,0,12,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'CAP',0,'Capsule','','','','Y','','','Y',1,0,11,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'DIAPER',0,'Diaper','','','','','','','Y',1,0,13,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'DROP',0,'Drop','','','','','','','Y',1,0,1,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'GLOVES',0,'Gloves','','','','','','','Y',1,0,21,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'INJ',0,'Injection','','','','','','','Y',1,0,2,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'LOTION',0,'Lotion','','','','','','','Y',1,0,3,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'MASK',0,'Mask','','','','','','','Y',1,0,14,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'MESH',0,'Mesh','','','','','','','Y',1,0,15,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'NEEDLE',0,'Needle','','','','','','','Y',1,0,22,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'OINT',0,'Ointment','','','','','','','Y',1,0,4,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'OTH',0,'Other','','','','','','','Y',1,0,5,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'POWDER',0,'Powder','','','','','','','Y',1,0,6,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'SACHET',0,'Sachet','','','','','','','Y',1,0,16,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'SANITI',0,'Sanitizer','','','','','','','Y',1,0,17,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'SOL',0,'Solution','','','','','','','Y',1,0,7,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'SPRAY',0,'Spray','','','','','','','Y',1,0,8,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'SURGIC',0,'Surgical','','','','','','','Y',1,0,18,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'SUTURE',0,'Suture','','','','','','','Y',1,0,19,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'SYRING',0,'Syringe','','','','','','','Y',1,0,20,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'SYRUP',0,'Syrup','','','','','','','Y',1,0,9,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('PTYPE',0,0,'TAB',0,'Tablet','','','','Y','','','Y',1,0,10,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('P_Prev',0,0,'1',0,'Previllage 1','Previllage 1','Previllage 1','','','','','Y',0,0,NULL,'thims','2022-04-18 16:36:03','','0000-00-00 00:00:00'),('P_Prev',0,0,'2',0,'Previllage 2','Previllage 2','Previllage 2','','','','','Y',0,0,NULL,'thims','2022-04-18 16:36:03','','0000-00-00 00:00:00'),('P_TYPE',0,0,'1',0,'Standard','Standard','Standard','','','','','Y',0,0,NULL,'thims','2022-04-18 16:36:03','','0000-00-00 00:00:00'),('P_TYPE',0,0,'2',0,'Corporate','Corporate','Corporate','','','','','Y',0,0,NULL,'thims','2022-04-18 16:36:03','','0000-00-00 00:00:00'),('P_TYPE',0,0,'3',0,'Other','Other','Other','','','','','Y',0,0,NULL,'thims','2022-04-18 16:36:03','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'1',0,'APPOINTMENT CONFIRMATION | BOOKING','','','','','APPT_BOOKING','','Y',0,0,NULL,'thims','2020-04-11 15:05:12','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'10',0,'FOLLOWUP AFTER FIRST CONSULTATION','','','','','FOLLOWUP_MSG','','Y',0,0,NULL,'thims','2020-04-11 15:07:22','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'11',0,'BIRTHDAYS','','','','','BIRTHDAY_MSG','','Y',0,0,NULL,'thims','2020-04-11 15:07:31','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'12',0,'GREETINGS - DIWALI','','','','','GREETING_DIWALI','','Y',0,0,NULL,'thims','2020-04-11 15:07:43','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'13',0,'GREETINGS - NEW YEAR','','','','','GREETING_NEW_YEAR','','Y',0,0,NULL,'thims','2020-04-11 15:08:00','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'14',0,'GREETINGS - MICCHAMI DUKKADAM','','','','','GREETING_MICCHAMI','','Y',0,0,NULL,'thims','2020-04-11 15:08:14','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'15',0,'GENERIC - CUSTOM MESSAGE','','','','','GENERIC_MSG','','Y',0,0,NULL,'thims','2020-04-11 15:08:26','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'16',0,'IP REGISTRATION - DOCTORS','','','','','IP_REGISTER_D','','Y',0,0,NULL,'thims','2020-04-11 15:05:54','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'17',0,'IP REGISTRATION - REF DOCTOR','','','','','IP_REGISTER_RD','','Y',0,0,NULL,'thims','2020-04-11 15:05:54','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'18',0,'ADVANCE RECEIPT','','','','','ADVANCE_RECEIPT','','Y',0,0,NULL,'thims','2020-04-11 15:05:54','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'19',0,'IP DISCOUNT','','','','','DISCOUNT_MSG','','Y',0,0,NULL,'thims','2020-04-11 15:05:54','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'2',0,'APPOINTMENT REMINDER','','','','','APPT_REMINDER','','Y',0,0,NULL,'thims','2020-04-11 15:05:27','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'3',0,'OP REGISTRATION','','','','','OP_REGISTER','','Y',0,0,NULL,'thims','2020-04-11 15:05:41','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'4',0,'IP REGISTRATION','','','','','IP_REGISTER','','Y',0,0,NULL,'thims','2020-04-11 15:05:54','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'5',0,'IP DISCHARGE','','','','','IP_DISCHARGE','','Y',0,0,NULL,'thims','2020-04-11 15:06:09','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'6',0,'REFERRAL DOCTOR (OP/IP)','','','','','REFERRAL_DOC','','Y',0,0,NULL,'thims','2020-04-11 15:06:24','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'7',0,'PAYMENT COLLECION','','','','','PAYMENT_COLLECT','','Y',0,0,NULL,'thims','2020-04-11 15:06:39','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'8',0,'COMPLITION OF LAB TEST','','','','','LAB_TEST_REPORT','','Y',0,0,NULL,'thims','2020-04-11 15:06:52','','0000-00-00 00:00:00'),('SMSPURPS',0,0,'9',0,'COMPLITION OF RADIOLOGY TEST','','','','','RADIOLOGY_REPORT','','Y',0,0,NULL,'thims','2020-04-11 15:07:06','','0000-00-00 00:00:00'),('STORE',0,0,'1',0,'PHARMACY STORE','','','','N','P','PHA','Y',0,0,0,'','0000-00-00 00:00:00','yatin','2021-08-27 15:33:49'),('STORE',0,0,'2',0,'GENERAL STORE','','','','','H','GS','Y',0,0,0,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('TEMPTYPE',0,0,'CARP',0,'Cardiology Procedure','CARDIAC PROCEDURE','CARDIAC PROCEDURE','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('TEMPTYPE',0,0,'CERT',0,'Certificate','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('TEMPTYPE',0,0,'CONT',0,'Consent','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('TEMPTYPE',0,0,'CTSN',0,'CT SCAN','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('TEMPTYPE',0,0,'DOP',0,'DOPPLER','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('TEMPTYPE',0,0,'FITNES',0,'Fitness Report','','','','','','','Y',0,0,NULL,'thims','2023-10-31 15:03:16','','0000-00-00 00:00:00'),('TEMPTYPE',0,0,'OTHER',0,'Other','','','','','','','Y',0,0,NULL,'thims','2022-03-22 12:04:16','','0000-00-00 00:00:00'),('TEMPTYPE',0,0,'RAD',0,'Radiology','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('TEMPTYPE',0,0,'STCKR',0,'Sticker','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('TEMPTYPE',0,0,'USG',0,'USG','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('TEMPTYPE',0,0,'XRY',0,'X RAY','','','','','','','Y',0,0,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),('USERROLE',0,0,'1',0,'Billing Team','','','','','Accountant','','Y',0,0,NULL,'thims','2023-01-31 11:33:49','','0000-00-00 00:00:00'),('USERROLE',0,0,'10',0,'Nursing Team ','','','','','Nurse','','Y',0,0,NULL,'thims','2023-01-31 11:33:49','','0000-00-00 00:00:00'),('USERROLE',0,0,'12',0,'Nurse Incharge','','','','','Nurse Incharge','','Y',0,0,NULL,'thims','2023-01-31 11:33:49','','0000-00-00 00:00:00'),('USERROLE',0,0,'14',0,'Pharmacist','','','','','Pharmacist','','Y',0,0,NULL,'thims','2023-01-31 11:33:49','','0000-00-00 00:00:00'),('USERROLE',0,0,'15',0,'Radiology Technician','','','','','Radiology Technician','','Y',0,0,NULL,'thims','2023-01-31 11:33:49','','0000-00-00 00:00:00'),('USERROLE',0,0,'16',0,'Receptionist','','','','','Receptionist','','Y',0,0,NULL,'thims','2023-01-31 11:33:49','','0000-00-00 00:00:00'),('USERROLE',0,0,'17',0,'Store Admin','','','','','Store Admin','','Y',0,0,NULL,'thims','2023-01-31 11:33:49','','0000-00-00 00:00:00'),('USERROLE',0,0,'2',0,'Doctor','','','','','Doctor','','Y',0,0,NULL,'thims','2023-01-31 11:33:49','','0000-00-00 00:00:00'),('USERROLE',0,0,'3',0,'Executive','','','','','Executive / Sr executive','','Y',0,0,NULL,'thims','2023-01-31 11:33:49','','0000-00-00 00:00:00'),('USERROLE',0,0,'4',0,'General Staff','','','','','General Staff / Assistant -HR','','Y',0,0,NULL,'thims','2023-01-31 11:33:49','','0000-00-00 00:00:00'),('USERROLE',0,0,'7',0,'Lab Technician','','','','','Lab Technician','','Y',0,0,NULL,'thims','2023-01-31 11:33:49','','0000-00-00 00:00:00'),('USERROLE',0,0,'8',0,'Manager','','','','','Manager','','Y',0,0,NULL,'thims','2023-01-31 11:33:49','','0000-00-00 00:00:00'),('USERROLE',0,0,'9',0,'MO','','','','','MO','','Y',0,0,NULL,'thims','2023-01-31 11:33:49','','0000-00-00 00:00:00'),('WAMSGTYP',0,0,'1',1,'template','','','','N','template','','Y',0,0,NULL,'thims','2023-05-26 03:20:43','','0000-00-00 00:00:00'),('WAMSGTYP',0,0,'10',10,'interactive','','','','N','interactive','','N',0,0,NULL,'thims','2023-05-26 03:20:43','','0000-00-00 00:00:00'),('WAMSGTYP',0,0,'2',2,'text','','','','N','text','','N',0,0,NULL,'thims','2023-05-26 03:20:43','','0000-00-00 00:00:00'),('WAMSGTYP',0,0,'3',3,'image','','','','N','image','','N',0,0,NULL,'thims','2023-05-26 03:20:43','','0000-00-00 00:00:00'),('WAMSGTYP',0,0,'4',4,'video','','','','N','video','','N',0,0,NULL,'thims','2023-05-26 03:20:43','','0000-00-00 00:00:00'),('WAMSGTYP',0,0,'5',5,'audio','','','','N','audio','','N',0,0,NULL,'thims','2023-05-26 03:20:43','','0000-00-00 00:00:00'),('WAMSGTYP',0,0,'6',6,'document','','','','N','document','','N',0,0,NULL,'thims','2023-05-26 03:20:43','','0000-00-00 00:00:00'),('WAMSGTYP',0,0,'7',7,'contact','','','','N','contact','','N',0,0,NULL,'thims','2023-05-26 03:20:43','','0000-00-00 00:00:00'),('WAMSGTYP',0,0,'8',8,'location','','','','N','location','','N',0,0,NULL,'thims','2023-05-26 03:20:43','','0000-00-00 00:00:00'),('WAMSGTYP',0,0,'9',9,'sticker','','','','N','sticker','','N',0,0,NULL,'thims','2023-05-26 03:20:43','','0000-00-00 00:00:00'),('WAPURPS',0,0,'1',1,'LAB Document','','','','','LAB_REPORT','','Y',0,0,NULL,'thims','2020-04-11 15:06:52','','0000-00-00 00:00:00'),('WAPURPS',0,0,'2',2,'Surgery Video','','','','','SURG_VIDEO','','Y',0,0,NULL,'thims','2020-04-11 15:06:52','','0000-00-00 00:00:00'),('WAPURPS',0,0,'3',3,'Welcome Message','','','','','WELCOME_MSG','','Y',0,0,NULL,'thims','2020-04-11 15:06:52','','0000-00-00 00:00:00'),('WAPURPS',0,0,'4',4,'Admission Message','','','','','ADMISSION_MESSAGE','','Y',0,0,NULL,'thims','2020-04-11 15:06:52','','0000-00-00 00:00:00'),('WAPURPS',0,0,'5',5,'OPD Message','','','','','OPD_MESSAGE','','Y',0,0,NULL,'thims','2020-04-11 15:06:52','','0000-00-00 00:00:00'),('WAPURPS',0,0,'6',6,'Consultation Report','','','','','CONSULTATION_REPORT','','Y',0,0,NULL,'thims','2020-04-11 15:06:52','','0000-00-00 00:00:00'),('WAPURPS',0,0,'7',0,'OP IP Bill','','','','','OP_IP_BILL','','Y',0,0,NULL,'thims','2024-10-17 04:13:52','','0000-00-00 00:00:00'),('WAPURPS',0,0,'8',0,'OP IP Receipt','','','','','OP_IP_RECEIPT','','Y',0,0,NULL,'thims','2024-10-17 04:13:52','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `general_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `general_note`
--

DROP TABLE IF EXISTS `general_note`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `general_note` (
  `note_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `note_date` datetime NOT NULL,
  `note_category` varchar(2) NOT NULL COMMENT 'Pu for Public.Pr for Private',
  `general_note_text` varchar(200) NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=691 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `general_note`
--

LOCK TABLES `general_note` WRITE;
/*!40000 ALTER TABLE `general_note` DISABLE KEYS */;
INSERT INTO `general_note` VALUES (1,0,0,5,'2025-10-08 11:42:08','Pu','<P>VEMP+VNG=4000</P>\n','darshan','2025-10-08 11:42:08','','0000-00-00 00:00:00'),(2,0,0,7,'2025-10-08 11:50:39','Pu','<P>STABI+VMG=4000</P>\n','darshan','2025-10-08 11:50:39','','0000-00-00 00:00:00'),(3,0,0,25,'2025-10-08 12:00:13','Pu','<P>PTA+STAB+VNG=4500</P>\n','darshan','2025-10-08 12:00:13','','0000-00-00 00:00:00'),(4,0,0,38,'2025-10-08 12:12:22','Pu','<P>PTA+STAB+VNG=4600</P>\n','darshan','2025-10-08 12:12:22','','0000-00-00 00:00:00'),(5,0,0,52,'2025-10-08 12:34:16','Pu','<P>STAB+VNG=4000</P>\n','darshan','2025-10-08 12:34:16','','0000-00-00 00:00:00'),(6,0,0,69,'2025-10-08 13:42:59','Pu','<P>V NG=3000</P>\n','darshan','2025-10-08 13:42:59','','0000-00-00 00:00:00'),(7,0,0,76,'2025-10-08 14:12:54','Pu','<P>STAB+VNG=4000</P>\n','darshan','2025-10-08 14:12:54','','0000-00-00 00:00:00'),(8,0,0,87,'2025-10-08 17:24:28','Pu','<P>PTA+STA+VNG=4800</P>\n','darshan','2025-10-08 17:24:28','','0000-00-00 00:00:00'),(9,0,0,104,'2025-10-08 18:10:41','Pu','<P>PTA+STAB+VNG=4400</P>\n','darshan','2025-10-08 18:08:21','darshan','2025-10-08 18:10:41'),(10,0,0,99,'2025-10-08 18:32:18','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-10-08 18:32:18','','0000-00-00 00:00:00'),(11,0,0,114,'2025-10-08 18:46:59','Pu','<P>PTA+VNG=3500&GT;3200</P>\n','darshan','2025-10-08 18:46:47','darshan','2025-10-08 18:46:59'),(12,0,0,106,'2025-10-08 18:53:27','Pu','<P>STABILOM+VNG=4000</P>\n','darshan','2025-10-08 18:53:27','','0000-00-00 00:00:00'),(13,0,0,100,'2025-10-08 19:07:41','Pu','<P>PTA+STAB+VNG=4900&GT;4000</P>\n','darshan','2025-10-08 19:07:41','','0000-00-00 00:00:00'),(14,0,0,115,'2025-10-08 20:19:37','Pu','<P>PTA+VNG+STABI=4800</P>\n','darshan','2025-10-08 20:19:37','','0000-00-00 00:00:00'),(15,0,0,164,'2025-10-09 10:58:01','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-10-09 10:58:01','','0000-00-00 00:00:00'),(16,0,0,171,'2025-10-09 11:39:15','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-10-09 11:39:15','','0000-00-00 00:00:00'),(17,0,0,177,'2025-10-09 11:55:46','Pu','<P>PTA+STABI+CCG+VNG=5800</P>\n','darshan','2025-10-09 11:55:46','','0000-00-00 00:00:00'),(18,0,0,196,'2025-10-09 12:03:42','Pu','<P>PTA+OAE=2000</P>\n','darshan','2025-10-09 12:03:42','','0000-00-00 00:00:00'),(19,0,0,182,'2025-10-09 12:26:22','Pu','<P>PTA+STAB+VNG=4400</P>\n','darshan','2025-10-09 12:26:22','','0000-00-00 00:00:00'),(20,0,0,199,'2025-10-09 13:04:42','Pu','<P>PTA+STABI+VNG=4400</P>\n','darshan','2025-10-09 13:04:42','','0000-00-00 00:00:00'),(21,0,0,214,'2025-10-09 13:51:27','Pu','<P>STAB+VNG=4000</P>\n','darshan','2025-10-09 13:51:27','','0000-00-00 00:00:00'),(22,0,0,220,'2025-10-09 17:15:33','Pu','<P>PTA+STABI+VNG=4400</P>\n','darshan','2025-10-09 17:15:33','','0000-00-00 00:00:00'),(23,0,0,223,'2025-10-09 17:53:28','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-10-09 17:53:28','','0000-00-00 00:00:00'),(24,0,0,232,'2025-10-09 18:11:49','Pu','<P>PTA+STABILOMETRY+VNG=4600</P>\n','darshan','2025-10-09 18:11:49','','0000-00-00 00:00:00'),(25,0,0,238,'2025-10-09 19:24:11','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-10-09 19:24:11','','0000-00-00 00:00:00'),(26,0,0,226,'2025-10-09 19:39:33','Pu','<P>PTA=500</P>\n','darshan','2025-10-09 19:39:33','','0000-00-00 00:00:00'),(27,0,0,265,'2025-10-09 20:23:39','Pu','<P>PTA+STAB+VNG=4500</P>\n','darshan','2025-10-09 20:23:39','','0000-00-00 00:00:00'),(28,0,0,308,'2025-10-10 12:35:26','Pu','<P>PTA+STAB+VNG=4500</P>\n','darshan','2025-10-10 12:35:26','','0000-00-00 00:00:00'),(29,0,0,310,'2025-10-10 13:00:04','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-10-10 13:00:04','','0000-00-00 00:00:00'),(30,0,0,316,'2025-10-10 13:15:33','Pu','<P>PTA+VNG+STAB=4500</P>\n','darshan','2025-10-10 13:15:33','','0000-00-00 00:00:00'),(31,0,0,325,'2025-10-10 13:41:43','Pu','<P>PTA+STA+VNG=4600</P>\n','darshan','2025-10-10 13:41:43','','0000-00-00 00:00:00'),(32,0,0,347,'2025-10-10 17:56:29','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-10-10 17:56:29','','0000-00-00 00:00:00'),(33,0,0,354,'2025-10-10 18:27:56','Pu','<P>PTA+VNG+STABILOMETRY=4500</P>\n','darshan','2025-10-10 18:27:56','','0000-00-00 00:00:00'),(34,0,0,363,'2025-10-10 18:39:19','Pu','<P>STABO+VNG=4000</P>\n','darshan','2025-10-10 18:39:19','','0000-00-00 00:00:00'),(35,0,0,366,'2025-10-10 18:46:34','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-10-10 18:46:34','','0000-00-00 00:00:00'),(36,0,0,360,'2025-10-10 18:54:32','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-10-10 18:54:32','','0000-00-00 00:00:00'),(37,0,0,397,'2025-10-11 10:00:31','Pu','<P>PTA+STABI+VNG=4800</P>\n','darshan','2025-10-11 10:00:31','','0000-00-00 00:00:00'),(38,0,0,400,'2025-10-11 10:17:00','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-10-11 10:17:00','','0000-00-00 00:00:00'),(39,0,0,409,'2025-10-11 10:37:02','Pu','<P>PTA=500</P>\n','darshan','2025-10-11 10:37:02','','0000-00-00 00:00:00'),(40,0,0,416,'2025-10-11 11:37:05','Pu','<P>PTA=500</P>\n','darshan','2025-10-11 11:37:05','','0000-00-00 00:00:00'),(41,0,0,424,'2025-10-11 12:02:28','Pu','<P>PTA+VNG+STABIL=4900&GT;4400</P>\n','darshan','2025-10-11 12:02:28','','0000-00-00 00:00:00'),(42,0,0,426,'2025-10-11 12:09:31','Pu','<P>PTA+VEMP+VNG=4400</P>\n','darshan','2025-10-11 12:09:31','','0000-00-00 00:00:00'),(43,0,0,471,'2025-10-13 10:39:02','Pu','<P>PTA+STABIL+VNG=4800</P>\n','darshan','2025-10-13 10:39:02','','0000-00-00 00:00:00'),(44,0,0,472,'2025-10-13 10:46:38','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-10-13 10:46:38','','0000-00-00 00:00:00'),(45,0,0,496,'2025-10-13 11:14:47','Pu','<P>STABI+VNG+CCG=5800</P>\n','darshan','2025-10-13 11:14:47','','0000-00-00 00:00:00'),(46,0,0,487,'2025-10-13 11:35:21','Pu','<P>STABI+VNG=4000</P>\n','darshan','2025-10-13 11:35:21','','0000-00-00 00:00:00'),(47,0,0,475,'2025-10-13 11:57:08','Pu','<P>STABIL+VNG+CCG=6000&GT;5400</P>\n','darshan','2025-10-13 11:57:08','','0000-00-00 00:00:00'),(48,0,0,495,'2025-10-13 12:03:32','Pu','<P>STABILO+VNG=4000</P>\n','darshan','2025-10-13 12:03:32','','0000-00-00 00:00:00'),(49,0,0,479,'2025-10-13 12:11:10','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-10-13 12:11:10','','0000-00-00 00:00:00'),(50,0,0,532,'2025-10-13 13:34:11','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-10-13 13:34:11','','0000-00-00 00:00:00'),(51,0,0,529,'2025-10-13 13:40:49','Pu','<P>PTA+STABILOM+VNG=4600</P>\n','darshan','2025-10-13 13:40:49','','0000-00-00 00:00:00'),(52,0,0,498,'2025-10-13 13:49:31','Pu','<P>STABIL+VNG=4400</P>\n','darshan','2025-10-13 13:49:31','','0000-00-00 00:00:00'),(53,0,0,499,'2025-10-13 14:04:55','Pu','<P>STABILOMETRY+VNG-4400</P>\n','darshan','2025-10-13 14:04:55','','0000-00-00 00:00:00'),(54,0,0,499,'2025-10-13 14:05:15','Pr','<P>DR ALKESH PATEL SEEN AND DONE REPORST</P>\n','darshan','2025-10-13 14:05:15','','0000-00-00 00:00:00'),(55,0,0,536,'2025-10-13 15:11:39','Pu','<P>PTA+STABILOMTRY=3600</P>\n','darshan','2025-10-13 15:11:39','','0000-00-00 00:00:00'),(56,0,0,546,'2025-10-13 17:07:09','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-10-13 17:07:09','','0000-00-00 00:00:00'),(57,0,0,547,'2025-10-13 17:15:57','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-10-13 17:15:57','','0000-00-00 00:00:00'),(58,0,0,553,'2025-10-13 17:46:04','Pu','<P>PTA+VNG+STABIL=4400</P>\n','darshan','2025-10-13 17:46:04','','0000-00-00 00:00:00'),(59,0,0,562,'2025-10-13 18:26:25','Pu','<P>PTA+STABILO+VNG=4400</P>\n','darshan','2025-10-13 18:26:25','','0000-00-00 00:00:00'),(60,0,0,584,'2025-10-13 19:26:42','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-10-13 19:26:42','','0000-00-00 00:00:00'),(61,0,0,616,'2025-10-14 11:10:08','Pu','<P>STABILOMTRY+CCG+VNG=5800</P>\n','darshan','2025-10-14 11:10:08','','0000-00-00 00:00:00'),(62,0,0,615,'2025-10-14 11:14:24','Pu','<P>VNG=3000</P>\n','darshan','2025-10-14 11:14:24','','0000-00-00 00:00:00'),(63,0,0,623,'2025-10-14 11:35:58','Pu','<P>STABILOMETRY+VNG=4200</P>\n','darshan','2025-10-14 11:35:58','','0000-00-00 00:00:00'),(64,0,0,627,'2025-10-14 12:37:31','Pu','<P>PTA+STABILOMETRY+VNG=4400</P>\n','darshan','2025-10-14 12:37:31','','0000-00-00 00:00:00'),(65,0,0,643,'2025-10-14 12:50:05','Pu','<P>PTA+VNG+STABILOMTRY=4400</P>\n','darshan','2025-10-14 12:50:05','','0000-00-00 00:00:00'),(66,0,0,637,'2025-10-14 13:36:50','Pu','<P>STABILOMTRY+VNG=4200</P>\n','darshan','2025-10-14 13:36:50','','0000-00-00 00:00:00'),(67,0,0,659,'2025-10-14 14:42:47','Pu','<P>PTA+STABILOMTRY+VNG=4400</P>\n','darshan','2025-10-14 14:42:47','','0000-00-00 00:00:00'),(68,0,0,668,'2025-10-14 17:33:41','Pu','<P>PTA+STABILO+CCG+VNG=6000</P>\n','darshan','2025-10-14 17:33:41','','0000-00-00 00:00:00'),(69,0,0,669,'2025-10-14 17:49:13','Pu','<P>STABI+VNG+CCG=6000</P>\n','darshan','2025-10-14 17:49:13','','0000-00-00 00:00:00'),(70,0,0,667,'2025-10-14 17:57:12','Pu','<P>PTA+STABILOMTRY+VNG=4600</P>\n','darshan','2025-10-14 17:57:12','','0000-00-00 00:00:00'),(71,0,0,683,'2025-10-14 18:30:37','Pu','<P>STABI+VNG=4000</P>\n','darshan','2025-10-14 18:30:37','','0000-00-00 00:00:00'),(72,0,0,670,'2025-10-14 18:38:45','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-10-14 18:38:45','','0000-00-00 00:00:00'),(73,0,0,721,'2025-10-15 11:30:30','Pu','<P>PTA+STABILOMETRY+VNG=4600</P>\n','darshan','2025-10-15 11:30:30','','0000-00-00 00:00:00'),(74,0,0,731,'2025-10-15 11:40:46','Pu','<P>PTA+CCG+VNG=4400</P>\n','darshan','2025-10-15 11:40:46','','0000-00-00 00:00:00'),(75,0,0,741,'2025-10-15 12:08:47','Pu','<P>PTA=500</P>\n','darshan','2025-10-15 12:08:47','','0000-00-00 00:00:00'),(76,0,0,747,'2025-10-15 12:24:51','Pu','<P>PTA+OAE=2500&GT;2000</P>\n','darshan','2025-10-15 12:24:51','','0000-00-00 00:00:00'),(77,0,0,753,'2025-10-15 12:34:22','Pu','<P>PTA=500</P>\n','darshan','2025-10-15 12:28:15','darshan','2025-10-15 12:34:22'),(78,0,0,757,'2025-10-15 13:00:31','Pu','<P>PTA+STABILOMETRY+VNG=4400</P>\n','darshan','2025-10-15 13:00:31','','0000-00-00 00:00:00'),(79,0,0,730,'2025-10-15 13:41:52','Pu','<P>PTA+VNG+STABILOMRY=4500</P>\n','darshan','2025-10-15 13:41:52','','0000-00-00 00:00:00'),(80,0,0,778,'2025-10-15 17:24:11','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-10-15 17:24:11','','0000-00-00 00:00:00'),(81,0,0,772,'2025-10-15 17:45:00','Pu','<P>PTA+STABILOMETRY+VNG=4500</P>\n','darshan','2025-10-15 17:45:00','','0000-00-00 00:00:00'),(82,0,0,787,'2025-10-15 18:23:18','Pu','<P>VEMP+VNG+CCG=5600</P>\n','darshan','2025-10-15 18:23:18','','0000-00-00 00:00:00'),(83,0,0,796,'2025-10-15 18:50:44','Pu','<P>STABILO+VNG=4000</P>\n','darshan','2025-10-15 18:50:44','','0000-00-00 00:00:00'),(84,0,0,805,'2025-10-15 19:11:48','Pu','<P>PTA+VNG+VEMP=4900</P>\n','darshan','2025-10-15 19:11:48','','0000-00-00 00:00:00'),(85,0,0,808,'2025-10-15 19:48:37','Pu','<P>STABILOMETYR+VNG=4400&GT;4000</P>\n','darshan','2025-10-15 19:48:37','','0000-00-00 00:00:00'),(86,0,0,831,'2025-10-16 11:22:06','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-10-16 11:22:06','','0000-00-00 00:00:00'),(87,0,0,825,'2025-10-16 11:56:17','Pu','<P>PTA+STABILO+VNG=4600</P>\n','darshan','2025-10-16 11:56:17','','0000-00-00 00:00:00'),(88,0,0,827,'2025-10-16 12:13:01','Pu','<P>OAE=2000</P>\n','darshan','2025-10-16 12:13:01','','0000-00-00 00:00:00'),(89,0,0,858,'2025-10-16 12:39:32','Pu','<P>STABILO+VNG=4000</P>\n','darshan','2025-10-16 12:39:32','','0000-00-00 00:00:00'),(90,0,0,863,'2025-10-16 13:22:59','Pu','<P>PTA+VEMP+VNG=4600</P>\n','darshan','2025-10-16 13:22:59','','0000-00-00 00:00:00'),(91,0,0,833,'2025-10-16 13:29:43','Pu','<P>PTA+STABILOMTYR+VNG+CCG=6000</P>\n','darshan','2025-10-16 13:29:43','','0000-00-00 00:00:00'),(92,0,0,844,'2025-10-16 13:57:22','Pu','<P>PTA+STABILOMETRY+VNG=4400</P>\n','darshan','2025-10-16 13:57:22','','0000-00-00 00:00:00'),(93,0,0,869,'2025-10-16 14:43:45','Pu','<P>PTA+OAE=2500</P>\n','darshan','2025-10-16 14:43:45','','0000-00-00 00:00:00'),(94,0,0,889,'2025-10-16 18:09:22','Pu','<P>VNG=3000</P>\n','darshan','2025-10-16 18:09:22','','0000-00-00 00:00:00'),(95,0,0,890,'2025-10-16 18:16:17','Pu','<P>PTA=500</P>\n','darshan','2025-10-16 18:16:17','','0000-00-00 00:00:00'),(96,0,0,907,'2025-10-16 18:31:30','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-10-16 18:31:30','','0000-00-00 00:00:00'),(97,0,0,894,'2025-10-16 18:40:16','Pu','<P>VEMP+VNG=4000</P>\n','darshan','2025-10-16 18:40:16','','0000-00-00 00:00:00'),(98,0,0,931,'2025-10-16 20:43:06','Pr','<P>PTA+STABILOMTRY+VNG=4600</P>\n','darshan','2025-10-16 20:43:06','','0000-00-00 00:00:00'),(99,0,0,944,'2025-10-17 11:02:02','Pu','<P>PTA+STABILO+VNG=4400</P>\n','darshan','2025-10-17 11:02:02','','0000-00-00 00:00:00'),(101,0,0,942,'2025-10-17 11:43:51','Pu','<P>PTA+STABI+VNG=4400</P>\n','darshan','2025-10-17 11:43:51','','0000-00-00 00:00:00'),(102,0,0,950,'2025-10-17 12:50:33','Pu','<P>PTA+VNG+STABILOMETRY=4400</P>\n','darshan','2025-10-17 12:50:33','','0000-00-00 00:00:00'),(103,0,0,978,'2025-10-17 13:01:07','Pu','<P>STABILO+VNG+CCG=6000</P>\n','darshan','2025-10-17 13:01:07','','0000-00-00 00:00:00'),(104,0,0,955,'2025-10-17 13:04:31','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-10-17 13:04:31','','0000-00-00 00:00:00'),(105,0,0,976,'2025-10-17 14:15:24','Pu','<P>PTA+STABILOMTRY+VNG=4400</P>\n','darshan','2025-10-17 14:15:24','','0000-00-00 00:00:00'),(106,0,0,983,'2025-10-17 14:28:27','Pu','<P>PTA+STABI+VNG+CCG=6000</P>\n','darshan','2025-10-17 14:28:27','','0000-00-00 00:00:00'),(107,0,0,994,'2025-10-17 17:14:39','Pu','<P>PTA+STABILOMTRY+VNG=4500</P>\n','darshan','2025-10-17 17:14:39','','0000-00-00 00:00:00'),(108,0,0,1001,'2025-10-17 17:38:27','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-10-17 17:38:27','','0000-00-00 00:00:00'),(109,0,0,1011,'2025-10-17 18:08:36','Pu','<P>PTA+VEMP=3500</P>\n','darshan','2025-10-17 18:08:36','','0000-00-00 00:00:00'),(110,0,0,1015,'2025-10-17 18:36:34','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-10-17 18:36:34','','0000-00-00 00:00:00'),(111,0,0,1013,'2025-10-17 18:49:45','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-10-17 18:49:45','','0000-00-00 00:00:00'),(112,0,0,1026,'2025-10-17 19:14:27','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-10-17 19:14:27','','0000-00-00 00:00:00'),(113,0,0,1029,'2025-10-17 19:27:00','Pu','<P>VNG+STABILOMETRY=4000</P>\n','darshan','2025-10-17 19:27:00','','0000-00-00 00:00:00'),(114,0,0,1050,'2025-10-18 11:06:48','Pu','<P>PTA+OAE=2500</P>\n','darshan','2025-10-18 11:06:48','','0000-00-00 00:00:00'),(115,0,0,1058,'2025-10-18 11:46:22','Pu','<P>PTA+STABILOMTRY+VNG+CCG=6000</P>\n','darshan','2025-10-18 11:46:22','','0000-00-00 00:00:00'),(116,0,0,1061,'2025-10-18 11:53:20','Pu','<P>PTA+VNG+STABILOMETRY=4600</P>\n','darshan','2025-10-18 11:53:20','','0000-00-00 00:00:00'),(117,0,0,1051,'2025-10-18 12:01:54','Pu','<P>PTA+STABIL+VNG=4600</P>\n','darshan','2025-10-18 12:01:54','','0000-00-00 00:00:00'),(118,0,0,1057,'2025-10-18 12:21:58','Pu','<P>PTA+STABILOMETRY+VHIT=500+2500+3500=6000</P>\n','darshan','2025-10-18 12:21:58','','0000-00-00 00:00:00'),(119,0,0,1059,'2025-10-18 12:41:21','Pr','<P>PTA+VNG=3500</P>\n','darshan','2025-10-18 12:41:21','','0000-00-00 00:00:00'),(120,0,0,1086,'2025-10-18 13:32:07','Pu','<P>STABILOMETRY+VNG=4500&GT;4000</P>\n','darshan','2025-10-18 13:32:07','','0000-00-00 00:00:00'),(121,0,0,1134,'2025-10-23 17:44:41','Pu','<P>PTA+STABILOMTRY+VNG=4400</P>\n','darshan','2025-10-23 17:44:41','','0000-00-00 00:00:00'),(122,0,0,1135,'2025-10-23 17:56:23','Pu','<P>PTA+VEMP+VNG=4400</P>\n','darshan','2025-10-23 17:56:23','','0000-00-00 00:00:00'),(123,0,0,1136,'2025-10-23 18:02:46','Pu','<P>STASBILOMTRY+VNG=4000</P>\n','darshan','2025-10-23 18:02:46','','0000-00-00 00:00:00'),(124,0,0,1139,'2025-10-23 18:20:19','Pu','<P>PTA+OAE=2400</P>\n','darshan','2025-10-23 18:20:19','','0000-00-00 00:00:00'),(125,0,0,1169,'2025-10-24 12:00:04','Pu','<P>OAE=2000</P>\n','darshan','2025-10-24 12:00:04','','0000-00-00 00:00:00'),(126,0,0,1170,'2025-10-24 12:18:53','Pu','<P>PTA+STABILOMTRY+VNG=4600</P>\n','darshan','2025-10-24 12:18:53','','0000-00-00 00:00:00'),(127,0,0,1175,'2025-10-24 12:28:54','Pu','<P>PTA+STABIL+VNG=4600</P>\n','darshan','2025-10-24 12:28:54','','0000-00-00 00:00:00'),(128,0,0,1176,'2025-10-24 12:37:24','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-10-24 12:37:24','','0000-00-00 00:00:00'),(129,0,0,1183,'2025-10-24 17:27:47','Pu','<P>PTA+OAE=2000</P>\n','darshan','2025-10-24 17:27:47','','0000-00-00 00:00:00'),(130,0,0,1186,'2025-10-24 18:02:05','Pu','<P>PTA=500</P>\n','darshan','2025-10-24 18:02:05','','0000-00-00 00:00:00'),(131,0,0,1188,'2025-10-24 18:44:53','Pu','<P>STABI+VNG=4000</P>\n','darshan','2025-10-24 18:44:53','','0000-00-00 00:00:00'),(133,0,0,1128,'2025-10-24 19:04:24','Pu','<P>PTA+STAB+VNG=4900&GT;4400</P>\n','darshan','2025-10-24 19:04:24','','0000-00-00 00:00:00'),(134,0,0,1207,'2025-10-25 10:44:43','Pu','<P>VEMP+VNG=4000</P>\n','darshan','2025-10-25 10:44:43','','0000-00-00 00:00:00'),(135,0,0,1208,'2025-10-25 10:58:33','Pu','<P>PTA+STABILOMTRY+VNG+CCG=6000</P>\n','darshan','2025-10-25 10:58:33','','0000-00-00 00:00:00'),(136,0,0,1214,'2025-10-25 11:29:09','Pu','<P>PTA+STABILOMTRY+VNG=500+2200+2500=5300&GT;4500</P>\n','darshan','2025-10-25 11:29:09','','0000-00-00 00:00:00'),(137,0,0,1225,'2025-10-25 12:11:13','Pu','<P>PTA+STABI+VNG=4400</P>\n','darshan','2025-10-25 12:11:13','','0000-00-00 00:00:00'),(138,0,0,1230,'2025-10-25 12:28:38','Pu','<P>STABILOMENTRY+VNG=4000</P>\n','darshan','2025-10-25 12:28:38','','0000-00-00 00:00:00'),(139,0,0,1228,'2025-10-25 12:39:48','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-10-25 12:39:48','','0000-00-00 00:00:00'),(140,0,0,1238,'2025-10-25 14:04:37','Pu','<P>STABILOMETRY+VNG=4400&GT;3800</P>\n','darshan','2025-10-25 14:04:37','','0000-00-00 00:00:00'),(141,0,0,1272,'2025-10-27 11:01:09','Pu','<P>PTA+VEMP+VNG=4400</P>\n','darshan','2025-10-27 11:01:09','','0000-00-00 00:00:00'),(142,0,0,1269,'2025-10-27 11:37:08','Pu','<P>PTA+STABILOMTRY+VNG=4800</P>\n','darshan','2025-10-27 11:37:08','','0000-00-00 00:00:00'),(143,0,0,1288,'2025-10-27 11:43:41','Pu','<P>VNG+STABILOMETRY=4000</P>\n','darshan','2025-10-27 11:43:41','','0000-00-00 00:00:00'),(144,0,0,1280,'2025-10-27 12:06:10','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-10-27 12:06:10','','0000-00-00 00:00:00'),(145,0,0,1271,'2025-10-27 12:16:01','Pu','<P>PTA+STABI+VNG=4400</P>\n','darshan','2025-10-27 12:16:01','','0000-00-00 00:00:00'),(146,0,0,1274,'2025-10-27 12:22:07','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-10-27 12:22:07','','0000-00-00 00:00:00'),(147,0,0,1281,'2025-10-27 12:36:06','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-10-27 12:36:06','','0000-00-00 00:00:00'),(148,0,0,1308,'2025-10-27 12:44:40','Pu','<P>PTA+STABILOMETRY+VNG=4500</P>\n','darshan','2025-10-27 12:44:40','','0000-00-00 00:00:00'),(149,0,0,1309,'2025-10-27 12:56:34','Pu','<P>PTA+VNG+STABILOMTRY=500+3000+2500=6000&GT;4500</P>\n','darshan','2025-10-27 12:56:34','','0000-00-00 00:00:00'),(150,0,0,1289,'2025-10-27 13:11:21','Pu','<P>OAE=1600</P>\n','darshan','2025-10-27 13:11:21','','0000-00-00 00:00:00'),(151,0,0,1317,'2025-10-27 14:35:41','Pu','<P>PTA+VNG=3600&GT;3100</P>\n','darshan','2025-10-27 14:35:41','','0000-00-00 00:00:00'),(152,0,0,1320,'2025-10-27 17:10:09','Pu','<P>PTA+VEMP+VNG=4600</P>\n','darshan','2025-10-27 17:10:09','','0000-00-00 00:00:00'),(153,0,0,1322,'2025-10-27 17:19:09','Pu','<P>PTA+STABI+VNG=4400</P>\n','darshan','2025-10-27 17:19:09','','0000-00-00 00:00:00'),(154,0,0,1324,'2025-10-27 17:49:31','Pu','<P>PTA+STABILOMTRY+VNG=4900&GT;4400</P>\n','darshan','2025-10-27 17:49:31','','0000-00-00 00:00:00'),(155,0,0,1326,'2025-10-27 18:00:06','Pu','<P>PTA+STABILOMETRY+VNG=4500</P>\n','darshan','2025-10-27 18:00:06','','0000-00-00 00:00:00'),(156,0,0,1330,'2025-10-27 18:21:38','Pu','<P>PTA+OAE=2000</P>\n','darshan','2025-10-27 18:21:38','','0000-00-00 00:00:00'),(157,0,0,1345,'2025-10-27 19:16:40','Pu','<P>PTA+STABILOTMRY+VNG=4400</P>\n','darshan','2025-10-27 19:16:40','','0000-00-00 00:00:00'),(158,0,0,1367,'2025-10-28 10:55:09','Pu','<P>STABILOMTRY+VNG+CCG=6000</P>\n','darshan','2025-10-28 10:55:09','','0000-00-00 00:00:00'),(159,0,0,1366,'2025-10-28 11:04:38','Pu','<P>VEMP+VNG=4000</P>\n','darshan','2025-10-28 11:04:38','','0000-00-00 00:00:00'),(160,0,0,1375,'2025-10-28 11:20:42','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-10-28 11:20:42','','0000-00-00 00:00:00'),(161,0,0,1388,'2025-10-28 11:51:48','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-10-28 11:51:48','','0000-00-00 00:00:00'),(162,0,0,1393,'2025-10-28 12:27:16','Pu','<P>PTA+STABILOMTRY+CCG+VNG=6000</P>\n','darshan','2025-10-28 12:27:16','','0000-00-00 00:00:00'),(163,0,0,1396,'2025-10-28 12:37:21','Pu','<P>PTA+STABILOMTRY+VNG=4500</P>\n','darshan','2025-10-28 12:37:21','','0000-00-00 00:00:00'),(164,0,0,1402,'2025-10-28 13:07:50','Pu','<P>PTA+STABILOMTRY+VNG+CCG=6000</P>\n','darshan','2025-10-28 13:07:50','','0000-00-00 00:00:00'),(165,0,0,1405,'2025-10-28 13:40:51','Pu','<P>PTA+STABILOMETRY+VNG=4400</P>\n','darshan','2025-10-28 13:40:51','','0000-00-00 00:00:00'),(166,0,0,1407,'2025-10-28 13:52:42','Pu','<P>PTA+STABILOMTRY+VNG=4900</P>\n','darshan','2025-10-28 13:52:42','','0000-00-00 00:00:00'),(167,0,0,1412,'2025-10-28 17:20:56','Pu','<P>PTA+STABILOMETRY+VNG=4400</P>\n','darshan','2025-10-28 17:20:56','','0000-00-00 00:00:00'),(168,0,0,1431,'2025-10-28 18:29:15','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-10-28 18:29:15','','0000-00-00 00:00:00'),(169,0,0,1479,'2025-10-29 12:36:19','Pu','<P>PTA+VNG+STABILOMETRY=4500</P>\n','darshan','2025-10-29 12:36:19','','0000-00-00 00:00:00'),(170,0,0,1509,'2025-10-29 17:51:22','Pu','<P>PTA+SATBILOMTRY+VNG=4900</P>\n','darshan','2025-10-29 17:51:22','','0000-00-00 00:00:00'),(171,0,0,1513,'2025-10-29 18:12:43','Pu','<P>PTA+STABILOMETRY+VNG=4400</P>\n','darshan','2025-10-29 18:12:43','','0000-00-00 00:00:00'),(172,0,0,1518,'2025-10-29 18:21:51','Pu','<P>PTA+STABILO+VNG=4600</P>\n','darshan','2025-10-29 18:21:51','','0000-00-00 00:00:00'),(173,0,0,1514,'2025-10-29 18:37:20','Pu','<P>PTA+STABILOMTRY+VNG=4600</P>\n','darshan','2025-10-29 18:37:20','','0000-00-00 00:00:00'),(174,0,0,1515,'2025-10-29 18:49:27','Pu','<P>STABI+CCG+VNG=5600</P>\n','darshan','2025-10-29 18:49:27','','0000-00-00 00:00:00'),(175,0,0,1516,'2025-10-29 19:09:54','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-10-29 19:09:54','','0000-00-00 00:00:00'),(176,0,0,1544,'2025-10-30 11:03:01','Pu','<P>PTA+STABILOMETRY+VNG+CCG=6000&GT;5400</P>\n','darshan','2025-10-30 11:03:01','','0000-00-00 00:00:00'),(177,0,0,1545,'2025-10-30 11:36:24','Pu','<P>STABILO+VNG+CCG=5400</P>\n','darshan','2025-10-30 11:36:24','','0000-00-00 00:00:00'),(178,0,0,1551,'2025-10-30 11:52:37','Pu','<P>PTA+STABILOMTRY+VNG=4900</P>\n','darshan','2025-10-30 11:52:37','','0000-00-00 00:00:00'),(179,0,0,1564,'2025-10-30 12:20:31','Pu','<P>STABILOMTRY+VEMP+VNG=6000</P>\n','darshan','2025-10-30 12:20:31','','0000-00-00 00:00:00'),(180,0,0,1582,'2025-10-30 17:25:48','Pu','<P>PTA+VNG+STABILOMETRY+CCG=6000</P>\n','darshan','2025-10-30 17:25:48','','0000-00-00 00:00:00'),(181,0,0,1591,'2025-10-30 17:51:58','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-10-30 17:49:22','darshan','2025-10-30 17:51:58'),(182,0,0,1602,'2025-10-30 18:47:30','Pu','<P>PTA+STABILOMTRY+VNG=4500</P>\n','darshan','2025-10-30 18:47:30','','0000-00-00 00:00:00'),(183,0,0,1612,'2025-10-30 19:57:24','Pu','<P>PTA+STABILOMTY+VNG=4500</P>\n','darshan','2025-10-30 19:57:24','','0000-00-00 00:00:00'),(184,0,0,1622,'2025-10-31 11:09:34','Pu','<P>PTA+VEMP+STABILOMETRY+VNG=500+2200+2500+3000=8200</P>\n','darshan','2025-10-31 11:09:34','','0000-00-00 00:00:00'),(185,0,0,1623,'2025-10-31 11:34:06','Pu','<P>PTA+VNG+STABILOMTRY=4800</P>\n','darshan','2025-10-31 11:34:06','','0000-00-00 00:00:00'),(186,0,0,1639,'2025-10-31 11:52:54','Pu','<P>STABILOMETRY+VNG+CCG=5600</P>\n','darshan','2025-10-31 11:52:54','','0000-00-00 00:00:00'),(187,0,0,1642,'2025-10-31 12:05:04','Pu','<P>VEMP+VNG=4000</P>\n','darshan','2025-10-31 12:05:04','','0000-00-00 00:00:00'),(188,0,0,1625,'2025-10-31 12:18:20','Pu','<P>PTA+STABI+VNG=4400</P>\n','darshan','2025-10-31 12:18:20','','0000-00-00 00:00:00'),(189,0,0,1624,'2025-10-31 12:23:46','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-10-31 12:23:46','','0000-00-00 00:00:00'),(190,0,0,1654,'2025-10-31 12:31:14','Pu','<P>PTA+STAB+VNG=4800</P>\n','darshan','2025-10-31 12:31:14','','0000-00-00 00:00:00'),(191,0,0,1657,'2025-10-31 12:42:37','Pu','<P>STAB+VNG=4000</P>\n','darshan','2025-10-31 12:42:37','','0000-00-00 00:00:00'),(192,0,0,1633,'2025-10-31 12:53:38','Pu','<P>PTA+VNG+STABILOMETRY=4500</P>\n','darshan','2025-10-31 12:53:38','','0000-00-00 00:00:00'),(193,0,0,1640,'2025-10-31 13:15:37','Pu','<P>PTA+VEMP+STABILOMTRY=4400</P>\n','darshan','2025-10-31 13:15:37','','0000-00-00 00:00:00'),(194,0,0,1662,'2025-10-31 13:25:43','Pu','<P>STABILOEMTYR+VNG=4000</P>\n','darshan','2025-10-31 13:25:43','','0000-00-00 00:00:00'),(195,0,0,1652,'2025-10-31 14:13:01','Pu','<P>PTA+VNG+STABILOEMTRYU=4500</P>\n','darshan','2025-10-31 14:13:01','','0000-00-00 00:00:00'),(196,0,0,1695,'2025-10-31 17:56:05','Pu','<P>PTA=600</P>\n','darshan','2025-10-31 17:56:05','','0000-00-00 00:00:00'),(197,0,0,1698,'2025-10-31 18:14:02','Pu','<P>PTA+STABILOMETRY+VNG=4600</P>\n','darshan','2025-10-31 18:14:02','','0000-00-00 00:00:00'),(198,0,0,1694,'2025-10-31 18:52:29','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-10-31 18:52:29','','0000-00-00 00:00:00'),(199,0,0,1720,'2025-10-31 19:18:22','Pu','<P>STABI+VNG=4000</P>\n','darshan','2025-10-31 19:18:22','','0000-00-00 00:00:00'),(200,0,0,1697,'2025-10-31 19:38:24','Pu','<P>PTA+STABI+VNG=4400</P>\n','darshan','2025-10-31 19:38:24','','0000-00-00 00:00:00'),(201,0,0,1728,'2025-10-31 21:07:50','Pu','<P>VEMP+VNG=4000</P>\n','darshan','2025-10-31 21:07:50','','0000-00-00 00:00:00'),(202,0,0,1738,'2025-11-01 10:52:32','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-11-01 10:52:32','','0000-00-00 00:00:00'),(203,0,0,1733,'2025-11-01 11:02:19','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-11-01 11:02:19','','0000-00-00 00:00:00'),(204,0,0,1736,'2025-11-01 11:19:41','Pu','<P>STABILOMETRY+CCG+VNG=5600</P>\n','darshan','2025-11-01 11:19:41','','0000-00-00 00:00:00'),(205,0,0,1760,'2025-11-01 12:18:30','Pu','<P>STABILOMETRY+VNG+PTA=4500</P>\n','darshan','2025-11-01 12:18:30','','0000-00-00 00:00:00'),(206,0,0,1739,'2025-11-01 12:27:58','Pu','<P>STABILOMTRY+VNG+CCG=5400</P>\n','darshan','2025-11-01 12:27:58','','0000-00-00 00:00:00'),(207,0,0,1758,'2025-11-01 12:42:34','Pu','<P>PTA+STABILOTMY+VNG=4500</P>\n','darshan','2025-11-01 12:42:34','','0000-00-00 00:00:00'),(208,0,0,1765,'2025-11-01 13:44:50','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-11-01 13:44:50','','0000-00-00 00:00:00'),(209,0,0,1780,'2025-11-01 13:55:05','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-11-01 13:55:05','','0000-00-00 00:00:00'),(210,0,0,1775,'2025-11-01 14:34:50','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-11-01 14:34:50','','0000-00-00 00:00:00'),(211,0,0,1804,'2025-11-03 11:20:23','Pu','<P>PTA+STABILOMTRY+VNG=4600</P>\n','darshan','2025-11-03 11:20:23','','0000-00-00 00:00:00'),(212,0,0,1805,'2025-11-03 11:49:41','Pu','<P>PTA+STABILOMTRY+VNG=4500</P>\n','darshan','2025-11-03 11:49:41','','0000-00-00 00:00:00'),(213,0,0,1813,'2025-11-03 11:57:56','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-11-03 11:57:56','','0000-00-00 00:00:00'),(214,0,0,1823,'2025-11-03 12:54:38','Pu','<P>PTA+STABILOMRTRY+VNG=4600</P>\n','darshan','2025-11-03 12:54:38','','0000-00-00 00:00:00'),(215,0,0,1842,'2025-11-03 14:15:00','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-11-03 14:15:00','','0000-00-00 00:00:00'),(216,0,0,1852,'2025-11-03 17:17:26','Pu','<P>STABILOMTYR+VNG=4000</P>\n','darshan','2025-11-03 17:17:26','','0000-00-00 00:00:00'),(217,0,0,1854,'2025-11-03 17:25:03','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-11-03 17:25:03','','0000-00-00 00:00:00'),(218,0,0,1861,'2025-11-03 18:07:21','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-11-03 18:07:21','','0000-00-00 00:00:00'),(219,0,0,1862,'2025-11-03 18:23:31','Pu','<P>PTA+STABILOMTRY+VNG=4400</P>\n','darshan','2025-11-03 18:23:31','','0000-00-00 00:00:00'),(220,0,0,1871,'2025-11-03 18:45:35','Pu','<P>PTA+STABILOTMRY+VNG=4500</P>\n','darshan','2025-11-03 18:45:35','','0000-00-00 00:00:00'),(221,0,0,1879,'2025-11-03 19:12:50','Pu','<P>PTA+VNG=3500&GT;2500</P>\n','darshan','2025-11-03 19:12:50','','0000-00-00 00:00:00'),(222,0,0,1896,'2025-11-04 10:55:34','Pu','<P>PTA+STABILOMTRY+VNG+VEMP=6200</P>\n','darshan','2025-11-04 10:55:34','','0000-00-00 00:00:00'),(223,0,0,1891,'2025-11-04 11:07:25','Pu','<P>PTA+STABILOMTRY+VNG=4600</P>\n','darshan','2025-11-04 11:07:25','','0000-00-00 00:00:00'),(224,0,0,1903,'2025-11-04 11:29:13','Pu','<P>PTA+STABILOMTRY+VNG=4600</P>\n','darshan','2025-11-04 11:29:13','','0000-00-00 00:00:00'),(225,0,0,1897,'2025-11-04 11:46:32','Pu','<P>PTA+STABILIMTY+VNG=4400</P>\n','darshan','2025-11-04 11:46:32','','0000-00-00 00:00:00'),(226,0,0,1907,'2025-11-04 11:54:59','Pu','<P>VEMP+VNG-=4000</P>\n','darshan','2025-11-04 11:54:59','','0000-00-00 00:00:00'),(227,0,0,1911,'2025-11-04 12:20:55','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-11-04 12:20:55','','0000-00-00 00:00:00'),(228,0,0,1912,'2025-11-04 12:54:55','Pu','<P>PTA+STABIL+VNG=4400</P>\n','darshan','2025-11-04 12:54:55','','0000-00-00 00:00:00'),(229,0,0,1918,'2025-11-04 13:03:34','Pu','<P>PTA+STABILOMTRY+VNG=4600</P>\n','darshan','2025-11-04 13:03:34','','0000-00-00 00:00:00'),(230,0,0,1778,'2025-11-04 13:20:38','Pu','<P>INTRA TYMPANIC INJECTION=1500</P>\n','darshan','2025-11-04 13:20:38','','0000-00-00 00:00:00'),(231,0,0,1928,'2025-11-04 18:16:07','Pu','<P>PTA=600</P>\n','darshan','2025-11-04 18:16:07','','0000-00-00 00:00:00'),(232,0,0,1932,'2025-11-04 18:40:54','Pu','<P>PTA+STAB+VNG=4500</P>\n','darshan','2025-11-04 18:40:54','','0000-00-00 00:00:00'),(233,0,0,1938,'2025-11-04 19:26:19','Pu','<P>PTA+STABILOMETRY+VNG=4600</P>\n','darshan','2025-11-04 19:26:19','','0000-00-00 00:00:00'),(234,0,0,1941,'2025-11-04 19:54:03','Pu','<P>PTA+STABILO+VNG=4600</P>\n','darshan','2025-11-04 19:54:03','','0000-00-00 00:00:00'),(235,0,0,1947,'2025-11-05 11:10:18','Pu','<P>PTA+STABILOMTRY+VNG=4500</P>\n','darshan','2025-11-05 11:10:18','','0000-00-00 00:00:00'),(236,0,0,1949,'2025-11-05 11:19:09','Pu','<P>PTA=500</P>\n','darshan','2025-11-05 11:19:09','','0000-00-00 00:00:00'),(237,0,0,1961,'2025-11-05 11:41:38','Pu','<P>PTA+STABIL+VNG=4500</P>\n','darshan','2025-11-05 11:41:38','','0000-00-00 00:00:00'),(238,0,0,1962,'2025-11-05 12:07:40','Pu','<P>OAE+VNG=1500+3000=4500</P>\n','darshan','2025-11-05 12:07:40','','0000-00-00 00:00:00'),(239,0,0,1957,'2025-11-05 14:31:37','Pu','<P>PTA-500</P>\n','darshan','2025-11-05 14:31:37','','0000-00-00 00:00:00'),(240,0,0,1997,'2025-11-05 18:11:31','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-11-05 18:11:31','','0000-00-00 00:00:00'),(241,0,0,2003,'2025-11-05 18:35:56','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-11-05 18:35:56','','0000-00-00 00:00:00'),(242,0,0,2011,'2025-11-05 19:21:05','Pu','<P>PTA+VNG=600+3000=3600&GT;3000</P>\n','darshan','2025-11-05 19:21:05','','0000-00-00 00:00:00'),(243,0,0,2021,'2025-11-05 20:15:20','Pu','<P>PTA+STABIL+VNG=4600</P>\n','darshan','2025-11-05 20:15:20','','0000-00-00 00:00:00'),(244,0,0,2034,'2025-11-06 11:19:56','Pu','','darshan','2025-11-06 11:19:56','','0000-00-00 00:00:00'),(245,0,0,2042,'2025-11-06 11:39:10','Pu','<P>PTA+VNG+STABILOMETRY=4400</P>\n','darshan','2025-11-06 11:39:10','','0000-00-00 00:00:00'),(246,0,0,2041,'2025-11-06 11:49:34','Pu','<P>PTA+VEMP=3000</P>\n','darshan','2025-11-06 11:49:34','','0000-00-00 00:00:00'),(248,0,0,2043,'2025-11-06 12:32:53','Pu','<P>VNG=3000</P>\n','darshan','2025-11-06 12:32:53','','0000-00-00 00:00:00'),(249,0,0,2044,'2025-11-06 12:57:54','Pu','<P>PTA+STABILO+VNG=4400</P>\n','darshan','2025-11-06 12:57:54','','0000-00-00 00:00:00'),(250,0,0,2047,'2025-11-06 13:09:48','Pu','<P>PTA+STABILOMETRY+VNG=4800</P>\n','darshan','2025-11-06 13:09:48','','0000-00-00 00:00:00'),(251,0,0,2053,'2025-11-06 13:29:43','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-11-06 13:29:43','','0000-00-00 00:00:00'),(252,0,0,2061,'2025-11-06 13:43:47','Pr','<P>PTA+VNG=3500</P>\n','darshan','2025-11-06 13:43:47','','0000-00-00 00:00:00'),(253,0,0,2065,'2025-11-06 17:17:28','Pu','<P>PTA+STABILOMTRYT+VNG=4600</P>\n','darshan','2025-11-06 17:17:28','','0000-00-00 00:00:00'),(254,0,0,2068,'2025-11-06 17:50:34','Pu','<P>PTA+STABILOMTRY+VNG=4600</P>\n','darshan','2025-11-06 17:50:34','','0000-00-00 00:00:00'),(255,0,0,2070,'2025-11-06 18:07:03','Pu','<P>VEMP+VNG=4000</P>\n','darshan','2025-11-06 18:07:03','','0000-00-00 00:00:00'),(256,0,0,2095,'2025-11-07 10:58:58','Pu','<P>PTA+VNG+STABILOMETRY=4600</P>\n','darshan','2025-11-07 10:58:58','','0000-00-00 00:00:00'),(257,0,0,2100,'2025-11-07 11:12:38','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-11-07 11:12:38','','0000-00-00 00:00:00'),(258,0,0,2105,'2025-11-07 11:52:39','Pu','<P>PTA+VNG+STABILOMETRY=4600</P>\n','darshan','2025-11-07 11:52:39','','0000-00-00 00:00:00'),(259,0,0,2115,'2025-11-07 12:09:56','Pu','<P>VEMP+VNG=4000</P>\n','darshan','2025-11-07 12:09:56','','0000-00-00 00:00:00'),(260,0,0,2102,'2025-11-07 12:16:13','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-11-07 12:16:13','','0000-00-00 00:00:00'),(261,0,0,2103,'2025-11-07 12:27:12','Pu','<P>STAGBILOMTRY+VNG=4000</P>\n','darshan','2025-11-07 12:27:12','','0000-00-00 00:00:00'),(262,0,0,2123,'2025-11-07 13:48:13','Pu','<P>STABILOMTRY+VNG=4200</P>\n','darshan','2025-11-07 13:48:13','','0000-00-00 00:00:00'),(263,0,0,2124,'2025-11-07 14:04:35','Pu','<P>STABILOMTRY+VNG-=4000</P>\n','darshan','2025-11-07 14:04:35','','0000-00-00 00:00:00'),(264,0,0,2128,'2025-11-07 14:17:52','Pu','<P>STABILOEMTRY+VNG=4000</P>\n','darshan','2025-11-07 14:17:52','','0000-00-00 00:00:00'),(265,0,0,2133,'2025-11-20 13:44:22','Pu','<P>PTA+VNG+STABILOMETRY=4500&GT;3900</P>\n','darshan','2025-11-07 17:28:12','darshan','2025-11-20 13:44:22'),(266,0,0,2130,'2025-11-07 17:33:26','Pu','<P>VNG=3000</P>\n','darshan','2025-11-07 17:33:26','','0000-00-00 00:00:00'),(267,0,0,2143,'2025-11-07 17:57:47','Pu','<P>VEMP+VNG=4200</P>\n','darshan','2025-11-07 17:57:47','','0000-00-00 00:00:00'),(268,0,0,2149,'2025-11-07 18:22:47','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-11-07 18:22:47','','0000-00-00 00:00:00'),(269,0,0,2142,'2025-11-07 18:27:06','Pu','<P>PTA=500</P>\n','darshan','2025-11-07 18:27:06','','0000-00-00 00:00:00'),(270,0,0,2163,'2025-11-08 11:04:04','Pu','<P>PTA+STABILOMTRY+VNG=4600</P>\n','darshan','2025-11-08 11:04:04','','0000-00-00 00:00:00'),(271,0,0,2162,'2025-11-08 11:36:39','Pu','<P>STABILOMETRY+VNG+CCG=5600</P>\n','darshan','2025-11-08 11:36:39','','0000-00-00 00:00:00'),(272,0,0,2173,'2025-11-08 11:54:19','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-11-08 11:54:19','','0000-00-00 00:00:00'),(273,0,0,2183,'2025-11-08 12:46:22','Pu','<P>PTA+STABIL+VNG=4800</P>\n','darshan','2025-11-08 12:46:16','darshan','2025-11-08 12:46:22'),(274,0,0,2178,'2025-11-08 12:54:52','Pu','<P>STABILOEMTRY+VNG=4000</P>\n','darshan','2025-11-08 12:54:52','','0000-00-00 00:00:00'),(275,0,0,2180,'2025-11-08 13:01:44','Pu','<P>STABILOTMRY+CCG+VNG=5600</P>\n','darshan','2025-11-08 13:01:44','','0000-00-00 00:00:00'),(276,0,0,2187,'2025-11-08 13:26:12','Pu','<P>STABILOEMTY+VNG=4000</P>\n','darshan','2025-11-08 13:26:12','','0000-00-00 00:00:00'),(277,0,0,2181,'2025-11-08 13:38:39','Pu','<P>PTA+STABIL+VNG=4500</P>\n','darshan','2025-11-08 13:38:39','','0000-00-00 00:00:00'),(278,0,0,2190,'2025-11-08 14:19:41','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-11-08 14:19:41','','0000-00-00 00:00:00'),(279,0,0,2192,'2025-11-08 15:10:11','Pu','<P>STABILOMETRY+VNG=4200</P>\n','darshan','2025-11-08 15:10:11','','0000-00-00 00:00:00'),(280,0,0,2215,'2025-11-10 11:31:53','Pu','<P>PTA+STABILOTMRY+VNG=-4600</P>\n','darshan','2025-11-10 11:31:53','','0000-00-00 00:00:00'),(281,0,0,2210,'2025-11-10 11:37:36','Pu','<P>PTA+OAE=2000</P>\n','darshan','2025-11-10 11:37:36','','0000-00-00 00:00:00'),(282,0,0,2222,'2025-11-10 11:58:08','Pu','<P>PTA+OAE=2000</P>\n','darshan','2025-11-10 11:58:08','','0000-00-00 00:00:00'),(283,0,0,2227,'2025-11-10 12:19:04','Pu','<P>PTA+STABILOMTRY+VNG=4400</P>\n','darshan','2025-11-10 12:19:04','','0000-00-00 00:00:00'),(284,0,0,2214,'2025-11-10 12:28:40','Pu','<P>PTA+STABILOMTRY+VNG=4400</P>\n','darshan','2025-11-10 12:28:40','','0000-00-00 00:00:00'),(285,0,0,2225,'2025-11-10 12:51:06','Pu','<P>STABIL+VNG=4000</P>\n','darshan','2025-11-10 12:51:06','','0000-00-00 00:00:00'),(286,0,0,2237,'2025-11-10 13:02:19','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-11-10 13:02:19','','0000-00-00 00:00:00'),(287,0,0,2231,'2025-11-10 13:26:58','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-11-10 13:26:58','','0000-00-00 00:00:00'),(288,0,0,2245,'2025-11-10 17:48:19','Pu','<P>VEMP+VNG=4000</P>\n','darshan','2025-11-10 17:48:19','','0000-00-00 00:00:00'),(289,0,0,2246,'2025-11-10 18:12:32','Pu','<P>PTA+STABILOMTRY+VNG=4600</P>\n','darshan','2025-11-10 18:12:32','','0000-00-00 00:00:00'),(290,0,0,2253,'2025-11-10 18:56:33','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-11-10 18:56:33','','0000-00-00 00:00:00'),(291,0,0,2262,'2025-11-11 11:07:42','Pu','<P>OAE=2500</P>\n','darshan','2025-11-11 11:07:42','','0000-00-00 00:00:00'),(292,0,0,2269,'2025-11-11 11:27:42','Pu','<P>PTA+VNG+VEMP=4600</P>\n','darshan','2025-11-11 11:27:42','','0000-00-00 00:00:00'),(293,0,0,2263,'2025-11-11 11:36:40','Pu','<P>PTA+STABILOMETRY+VNG=4500</P>\n','darshan','2025-11-11 11:36:40','','0000-00-00 00:00:00'),(294,0,0,2291,'2025-11-11 12:37:45','Pu','<P>PTA+STABILOMETRY+VNG=4600</P>\n','darshan','2025-11-11 12:37:45','','0000-00-00 00:00:00'),(295,0,0,2305,'2025-11-11 14:22:22','Pu','<P>PTA+VNG+STAB=4400</P>\n','darshan','2025-11-11 14:22:22','','0000-00-00 00:00:00'),(296,0,0,2300,'2025-11-11 14:28:53','Pu','<P>PTA+STABILOMETRY+VNG=4500</P>\n','darshan','2025-11-11 14:28:53','','0000-00-00 00:00:00'),(297,0,0,2308,'2025-11-11 17:29:52','Pu','<P>STABILOMETRY+VNG=4400</P>\n','darshan','2025-11-11 17:29:52','','0000-00-00 00:00:00'),(298,0,0,2307,'2025-11-11 17:38:25','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-11-11 17:38:25','','0000-00-00 00:00:00'),(299,0,0,2314,'2025-11-11 18:16:26','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-11-11 18:16:26','','0000-00-00 00:00:00'),(300,0,0,2324,'2025-11-11 18:44:13','Pu','<P>PTA=600</P>\n','darshan','2025-11-11 18:44:13','','0000-00-00 00:00:00'),(301,0,0,2325,'2025-11-11 18:53:26','Pu','<P>STABILOMETRY+VNG=4600&GT;4000</P>\n','darshan','2025-11-11 18:53:26','','0000-00-00 00:00:00'),(302,0,0,2318,'2025-11-11 19:01:19','Pu','<P>VNG=3000&GT;.2000</P>\n','darshan','2025-11-11 19:01:19','','0000-00-00 00:00:00'),(303,0,0,2334,'2025-11-11 19:16:37','Pu','<P>STABILOETRY+VNG+CCG=5800</P>\n','darshan','2025-11-11 19:16:37','','0000-00-00 00:00:00'),(304,0,0,1870,'2025-11-12 10:53:29','Pu','<P>PTA WITH BONE CONDUCTION=500</P>\n','darshan','2025-11-12 10:53:29','','0000-00-00 00:00:00'),(305,0,0,2348,'2025-11-12 11:30:52','Pu','<P>PTA+STABI+VNG=4400</P>\n','darshan','2025-11-12 11:30:52','','0000-00-00 00:00:00'),(306,0,0,2357,'2025-11-12 11:46:23','Pu','<P>VEMP+VNG=4000</P>\n','darshan','2025-11-12 11:46:23','','0000-00-00 00:00:00'),(307,0,0,2356,'2025-11-12 12:07:46','Pu','<P>PTA=500</P>\n','darshan','2025-11-12 12:07:46','','0000-00-00 00:00:00'),(308,0,0,2392,'2025-11-12 17:48:47','Pu','<P>PTA+STABILOMETY+VNG=4500</P>\n','darshan','2025-11-12 17:48:47','','0000-00-00 00:00:00'),(309,0,0,2395,'2025-11-12 18:12:04','Pu','<P>PTA=500</P>\n','darshan','2025-11-12 18:12:04','','0000-00-00 00:00:00'),(310,0,0,2396,'2025-11-12 18:20:59','Pu','<P>PTA+STABILOMTRY+VNG=4400</P>\n','darshan','2025-11-12 18:20:59','','0000-00-00 00:00:00'),(311,0,0,2406,'2025-11-12 18:51:09','Pu','<P>PTA+STABILOMTRY+VNG=4900</P>\n','darshan','2025-11-12 18:51:09','','0000-00-00 00:00:00'),(312,0,0,2416,'2025-11-12 19:34:57','Pu','<P>PTA=500</P>\n','darshan','2025-11-12 19:34:57','','0000-00-00 00:00:00'),(313,0,0,2430,'2025-11-12 20:14:08','Pu','<P>PTA+STABILOMTREY+VNG=4500</P>\n','darshan','2025-11-12 20:14:08','','0000-00-00 00:00:00'),(314,0,0,2433,'2025-11-12 20:23:33','Pu','<P>PTA WITH BONE CONDUCTION=600</P>\n','darshan','2025-11-12 20:23:33','','0000-00-00 00:00:00'),(315,0,0,2447,'2025-11-13 11:22:48','Pu','<P>PTA+STABILOMTRY+VNG=4500</P>\n','darshan','2025-11-13 11:22:48','','0000-00-00 00:00:00'),(316,0,0,2455,'2025-11-13 12:35:07','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-11-13 12:35:07','','0000-00-00 00:00:00'),(317,0,0,2462,'2025-11-13 13:01:25','Pu','<P>VNG=3000</P>\n','darshan','2025-11-13 13:01:25','','0000-00-00 00:00:00'),(318,0,0,2463,'2025-11-13 13:08:51','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-11-13 13:08:51','','0000-00-00 00:00:00'),(319,0,0,1929,'2025-11-13 13:42:25','Pu','<P>PTA=500</P>\n','darshan','2025-11-13 13:42:25','','0000-00-00 00:00:00'),(320,0,0,2475,'2025-11-13 17:14:00','Pu','<P>PTA+STABILOMTRY+VNG=4500</P>\n','darshan','2025-11-13 17:14:00','','0000-00-00 00:00:00'),(321,0,0,2480,'2025-11-13 17:38:47','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-11-13 17:38:47','','0000-00-00 00:00:00'),(322,0,0,2479,'2025-11-13 17:50:18','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-11-13 17:50:18','','0000-00-00 00:00:00'),(323,0,0,2482,'2025-11-13 18:09:54','Pu','<P>PTA+STABILO+VNG=4500</P>\n','darshan','2025-11-13 18:09:54','','0000-00-00 00:00:00'),(324,0,0,2503,'2025-11-14 11:04:48','Pu','<P>VNG=3000</P>\n','darshan','2025-11-14 11:04:48','','0000-00-00 00:00:00'),(325,0,0,2507,'2025-11-14 11:09:14','Pu','<P>PTA+OAE=2000</P>\n','darshan','2025-11-14 11:09:14','','0000-00-00 00:00:00'),(326,0,0,2510,'2025-11-14 11:17:50','Pu','<P>PTA+STABIL+VNG+CCG=6000</P>\n','darshan','2025-11-14 11:17:50','','0000-00-00 00:00:00'),(327,0,0,2514,'2025-11-14 11:56:22','Pu','<P>FLEXIBLE LARYNGOSCOPY=1200</P>\n','darshan','2025-11-14 11:56:22','','0000-00-00 00:00:00'),(328,0,0,2507,'2025-11-14 12:11:56','Pu','<P>INTRATYMPANIC INJECTION=1500</P>\n','darshan','2025-11-14 12:11:56','','0000-00-00 00:00:00'),(329,0,0,2522,'2025-11-14 12:35:23','Pu','<P>PTA=400</P>\n','darshan','2025-11-14 12:35:23','','0000-00-00 00:00:00'),(330,0,0,2541,'2025-11-14 17:52:56','Pu','<P>PTA+VNG+STABILO=4600</P>\n','darshan','2025-11-14 17:52:56','','0000-00-00 00:00:00'),(331,0,0,2544,'2025-11-14 17:56:15','Pu','<P>STABILOEMTRY+VNG=4000</P>\n','darshan','2025-11-14 17:56:15','','0000-00-00 00:00:00'),(332,0,0,2547,'2025-11-14 18:07:40','Pu','<P>PTA+STABILOMETYR+VNG=4500</P>\n','darshan','2025-11-14 18:07:40','','0000-00-00 00:00:00'),(333,0,0,2575,'2025-11-15 11:05:57','Pu','<P>PTA+STABILOMTRY+VNG=4500</P>\n','darshan','2025-11-15 11:05:57','','0000-00-00 00:00:00'),(334,0,0,2585,'2025-11-15 11:48:58','Pu','<P>PTA+STABIVNG=4600</P>\n','darshan','2025-11-15 11:48:58','','0000-00-00 00:00:00'),(335,0,0,2589,'2025-11-15 12:18:18','Pu','<P>PTA+STABILOMTRY+CCG+VNG=6400</P>\n','darshan','2025-11-15 12:18:18','','0000-00-00 00:00:00'),(336,0,0,2584,'2025-11-15 12:32:54','Pu','<P>PTA+STABILOTMRY+VNG=4600</P>\n','darshan','2025-11-15 12:32:54','','0000-00-00 00:00:00'),(337,0,0,2591,'2025-11-15 12:55:10','Pu','<P>PTA+VNG+VEMP=4500</P>\n','darshan','2025-11-15 12:55:10','','0000-00-00 00:00:00'),(338,0,0,2597,'2025-11-15 13:47:31','Pu','<P>PTA+STABILOMTRY+VNG=4900&GT;4300</P>\n','darshan','2025-11-15 13:47:31','','0000-00-00 00:00:00'),(339,0,0,2616,'2025-11-17 11:48:24','Pu','<P>STABILOTMRY+VNG=4000</P>\n','darshan','2025-11-17 11:48:24','','0000-00-00 00:00:00'),(340,0,0,2623,'2025-11-17 12:00:39','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-11-17 12:00:39','','0000-00-00 00:00:00'),(341,0,0,2619,'2025-11-17 12:09:24','Pu','<P>OAE=2200</P>\n','darshan','2025-11-17 12:09:24','','0000-00-00 00:00:00'),(342,0,0,2627,'2025-11-17 12:32:51','Pu','<P>STABILOMTRY+VNG=4600&GT;4000</P>\n','darshan','2025-11-17 12:32:51','','0000-00-00 00:00:00'),(343,0,0,2624,'2025-11-17 12:43:43','Pu','<P>PTA+STABILOTMRY+VNG=4800</P>\n','darshan','2025-11-17 12:43:43','','0000-00-00 00:00:00'),(344,0,0,2626,'2025-11-17 13:31:32','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-11-17 13:31:32','','0000-00-00 00:00:00'),(345,0,0,2636,'2025-11-17 17:33:34','Pu','<P>PTA+STABILOMTRY+VNG=4600</P>\n','darshan','2025-11-17 17:33:34','','0000-00-00 00:00:00'),(346,0,0,2638,'2025-11-17 17:47:43','Pu','<P>PTA+VNG+STABILOMETRY=4500</P>\n','darshan','2025-11-17 17:47:43','','0000-00-00 00:00:00'),(347,0,0,2639,'2025-11-17 17:56:10','Pu','<P>PTA+STABILO+VNG=4400</P>\n','darshan','2025-11-17 17:56:10','','0000-00-00 00:00:00'),(348,0,0,2640,'2025-11-17 18:14:56','Pu','<P>PTA+STABILOMTRY+VNG=600+2500+3000=6100&GT;5400</P>\n','darshan','2025-11-17 18:14:56','','0000-00-00 00:00:00'),(349,0,0,2641,'2025-11-17 18:22:02','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-11-17 18:22:02','','0000-00-00 00:00:00'),(350,0,0,2645,'2025-11-17 18:43:59','Pu','<P>PTAW+STABIL+VNG=4500</P>\n','darshan','2025-11-17 18:43:59','','0000-00-00 00:00:00'),(351,0,0,2647,'2025-11-17 18:54:08','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-11-17 18:54:08','','0000-00-00 00:00:00'),(352,0,0,2648,'2025-11-17 19:35:03','Pu','<P>PTA+STABI+VNG=4900&GT;4200</P>\n','darshan','2025-11-17 19:35:03','','0000-00-00 00:00:00'),(353,0,0,2657,'2025-11-18 11:02:05','Pu','<P>PTA+STABILOTMRY+VNG=4800</P>\n','darshan','2025-11-18 11:02:05','','0000-00-00 00:00:00'),(354,0,0,2666,'2025-11-18 12:52:01','Pu','<P>PTA+STABILOMTRY+VNG=4400</P>\n','darshan','2025-11-18 12:52:01','','0000-00-00 00:00:00'),(355,0,0,2669,'2025-11-18 13:06:58','Pu','<P>STABILOMTRY+VNG=2000+3000=5000&GT;4000</P>\n','darshan','2025-11-18 13:06:58','','0000-00-00 00:00:00'),(356,0,0,2672,'2025-11-18 13:24:25','Pu','<P>PTA+STABILO+VNG=4800</P>\n','darshan','2025-11-18 13:24:25','','0000-00-00 00:00:00'),(357,0,0,2674,'2025-11-18 13:29:22','Pu','<P>PTA+STABIL+VNG=4500</P>\n','darshan','2025-11-18 13:29:22','','0000-00-00 00:00:00'),(358,0,0,2677,'2025-11-18 14:13:58','Pu','<P>PTA+STABILO+VNG=4500</P>\n','darshan','2025-11-18 14:13:58','','0000-00-00 00:00:00'),(359,0,0,2680,'2025-11-18 17:16:14','Pu','<P>PTA+STABILOMETRY+VNG=4500</P>\n','darshan','2025-11-18 17:16:14','','0000-00-00 00:00:00'),(360,0,0,2684,'2025-11-18 18:26:32','Pu','<P>PTA+STABILOMETRY+VNG=4800</P>\n','darshan','2025-11-18 18:26:32','','0000-00-00 00:00:00'),(361,0,0,2689,'2025-11-18 18:52:19','Pu','<P>PTA+STABILOMETRY+VNG+CCG=6000</P>\n','darshan','2025-11-18 18:52:19','','0000-00-00 00:00:00'),(362,0,0,2696,'2025-11-19 11:00:48','Pu','<P>STABILOMTR+VNG+CCG=6000</P>\n','darshan','2025-11-19 11:00:48','','0000-00-00 00:00:00'),(363,0,0,2695,'2025-11-19 11:15:14','Pu','<P>PTA+STABILOMTRY+VNG=4600</P>\n','darshan','2025-11-19 11:15:14','','0000-00-00 00:00:00'),(364,0,0,2360,'2025-11-19 11:34:51','Pu','<P>PTA=500</P>\n','darshan','2025-11-19 11:34:51','','0000-00-00 00:00:00'),(365,0,0,2709,'2025-11-19 11:48:56','Pu','<P>PTA+VHIT+VNG=6200</P>\n','darshan','2025-11-19 11:48:47','darshan','2025-11-19 11:48:56'),(366,0,0,2712,'2025-11-19 12:15:11','Pu','<P>PTA+STABILOMTRY+VN G=4500</P>\n','darshan','2025-11-19 12:15:11','','0000-00-00 00:00:00'),(367,0,0,2720,'2025-11-19 12:42:30','Pu','<P>STABI+VNG+CCG-5600</P>\n','darshan','2025-11-19 12:42:30','','0000-00-00 00:00:00'),(368,0,0,2727,'2025-11-19 13:11:01','Pu','<P>STABILOEMTRY+VNG=4400</P>\n','darshan','2025-11-19 13:11:01','','0000-00-00 00:00:00'),(369,0,0,2747,'2025-11-19 18:02:55','Pu','<P>VNG=2500</P>\n','darshan','2025-11-19 18:02:55','','0000-00-00 00:00:00'),(370,0,0,2778,'2025-11-20 10:55:32','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-11-20 10:55:32','','0000-00-00 00:00:00'),(371,0,0,2784,'2025-11-20 11:10:48','Pu','<P>PTA+STABIL+VNG=4600</P>\n','darshan','2025-11-20 11:10:48','','0000-00-00 00:00:00'),(372,0,0,2783,'2025-11-20 11:28:56','Pu','<P>PTA+STABILO+VNG=4600</P>\n','darshan','2025-11-20 11:28:56','','0000-00-00 00:00:00'),(373,0,0,2785,'2025-11-20 11:37:21','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-11-20 11:37:21','','0000-00-00 00:00:00'),(374,0,0,2789,'2025-11-20 12:07:29','Pu','<P>PTA+STABILO+VNG+CCG=6000</P>\n','darshan','2025-11-20 12:07:29','','0000-00-00 00:00:00'),(375,0,0,2799,'2025-11-20 12:22:31','Pu','<P>PTA+STABIL+VNG=4800</P>\n','darshan','2025-11-20 12:22:31','','0000-00-00 00:00:00'),(376,0,0,2786,'2025-11-20 12:30:28','Pu','<P>STABI+VNG=4000</P>\n','darshan','2025-11-20 12:30:28','','0000-00-00 00:00:00'),(377,0,0,2787,'2025-11-20 12:46:56','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-11-20 12:46:56','','0000-00-00 00:00:00'),(378,0,0,2810,'2025-11-20 13:03:23','Pu','<P>PTA+STABILOMTRY+VNG=4800</P>\n','darshan','2025-11-20 13:03:23','','0000-00-00 00:00:00'),(379,0,0,2807,'2025-11-20 13:33:49','Pu','<P>VEMP+VNG=4000</P>\n','darshan','2025-11-20 13:33:49','','0000-00-00 00:00:00'),(380,0,0,2816,'2025-11-20 17:20:44','Pu','<P>PTA+STABILOMTRY+VNG=4600</P>\n','darshan','2025-11-20 17:20:44','','0000-00-00 00:00:00'),(381,0,0,2814,'2025-11-20 17:39:27','Pu','<P>PTA+STABILOMTRY+VNG=4900</P>\n','darshan','2025-11-20 17:39:27','','0000-00-00 00:00:00'),(382,0,0,2818,'2025-11-20 17:48:46','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-11-20 17:48:46','','0000-00-00 00:00:00'),(383,0,0,2822,'2025-11-20 18:15:41','Pu','<P>VNG=3000</P>\n','darshan','2025-11-20 18:15:41','','0000-00-00 00:00:00'),(384,0,0,2841,'2025-11-21 11:16:19','Pu','<P>PTA+STABIL+VNG=4900&GT;4000</P>\n','darshan','2025-11-21 11:16:19','','0000-00-00 00:00:00'),(385,0,0,2844,'2025-11-21 11:37:00','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-11-21 11:37:00','','0000-00-00 00:00:00'),(386,0,0,2845,'2025-11-21 11:43:29','Pu','<P>STABILOMEETTRY+VNG=4000</P>\n','darshan','2025-11-21 11:43:29','','0000-00-00 00:00:00'),(387,0,0,2851,'2025-11-21 12:01:18','Pu','<P>STABILOMETRY+CCG+VEMP=5000</P>\n','darshan','2025-11-21 12:01:18','','0000-00-00 00:00:00'),(388,0,0,2861,'2025-11-21 12:56:54','Pu','<P>PTA+STABILOMTRY+VNG=4800</P>\n','darshan','2025-11-21 12:56:54','','0000-00-00 00:00:00'),(389,0,0,2872,'2025-11-21 17:29:17','Pu','<P>PTA+STABILOMETRY+VNG=4600</P>\n','darshan','2025-11-21 17:29:17','','0000-00-00 00:00:00'),(390,0,0,2879,'2025-11-21 18:29:36','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-11-21 18:29:36','','0000-00-00 00:00:00'),(391,0,0,2881,'2025-11-21 18:45:26','Pu','<P>PTA+STABIL+VNG=4500</P>\n','darshan','2025-11-21 18:45:26','','0000-00-00 00:00:00'),(392,0,0,2902,'2025-11-22 11:13:47','Pu','<P>STABILO+VNG+CCG=5600</P>\n','darshan','2025-11-22 11:13:47','','0000-00-00 00:00:00'),(393,0,0,2906,'2025-11-22 11:28:28','Pu','<P>PTA=500</P>\n','darshan','2025-11-22 11:28:28','','0000-00-00 00:00:00'),(394,0,0,2915,'2025-11-22 12:15:15','Pu','<P>STABILO+VNG+CCG=5600</P>\n','darshan','2025-11-22 12:15:15','','0000-00-00 00:00:00'),(395,0,0,2916,'2025-11-22 12:20:52','Pu','<P>PTA+STABIL+VNG=4900&GT;4000</P>\n','darshan','2025-11-22 12:20:52','','0000-00-00 00:00:00'),(396,0,0,2925,'2025-11-22 12:59:53','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-11-22 12:59:53','','0000-00-00 00:00:00'),(397,0,0,2928,'2025-11-22 13:23:26','Pu','<P>VNG=3000</P>\n','darshan','2025-11-22 13:23:26','','0000-00-00 00:00:00'),(398,0,0,2951,'2025-11-24 10:58:59','Pu','<P>PTA+STABILOMETRY+VNG=4500</P>\n','darshan','2025-11-24 10:58:59','','0000-00-00 00:00:00'),(399,0,0,2958,'2025-11-24 11:41:02','Pr','<P>PTA+STABILO+VNG=4600</P>\n','darshan','2025-11-24 11:41:02','','0000-00-00 00:00:00'),(401,0,0,2952,'2025-11-24 11:54:30','Pu','<P>PTA+STABILO+VNG=4500</P>\n','darshan','2025-11-24 11:54:30','','0000-00-00 00:00:00'),(402,0,0,2953,'2025-11-24 12:41:01','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-11-24 12:41:01','','0000-00-00 00:00:00'),(403,0,0,2978,'2025-11-24 12:58:13','Pu','<P>PTA+VNG+STABIL=4500</P>\n','darshan','2025-11-24 12:58:13','','0000-00-00 00:00:00'),(404,0,0,2964,'2025-11-24 13:16:30','Pu','<P>PTA+STABILOMTRY+VNG=4500</P>\n','darshan','2025-11-24 13:16:30','','0000-00-00 00:00:00'),(405,0,0,2986,'2025-11-24 13:38:43','Pu','<P>PTA+STABILO+VNG=4500</P>\n','darshan','2025-11-24 13:38:43','','0000-00-00 00:00:00'),(406,0,0,2972,'2025-11-24 13:49:03','Pu','<P>PTA+VEMP=3000</P>\n','darshan','2025-11-24 13:49:03','','0000-00-00 00:00:00'),(407,0,0,2991,'2025-11-24 14:52:05','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-11-24 14:52:05','','0000-00-00 00:00:00'),(408,0,0,2994,'2025-11-24 17:42:13','Pu','<P>PTA+STABILOMTRY+VNG+CCG=6000</P>\n','darshan','2025-11-24 17:42:13','','0000-00-00 00:00:00'),(409,0,0,2995,'2025-11-24 17:56:05','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-11-24 17:56:05','','0000-00-00 00:00:00'),(410,0,0,3002,'2025-11-24 18:45:21','Pu','<P>PTA+STABILOMTRY+VNG==4600</P>\n','darshan','2025-11-24 18:45:21','','0000-00-00 00:00:00'),(411,0,0,3024,'2025-11-25 11:20:45','Pu','<P>STABILO+VNG+CCG=5600</P>\n','darshan','2025-11-25 11:20:45','','0000-00-00 00:00:00'),(412,0,0,3039,'2025-11-25 12:17:09','Pu','<P>PTA+STABILOMTRY+VNG=4500</P>\n','darshan','2025-11-25 12:17:09','','0000-00-00 00:00:00'),(413,0,0,3044,'2025-11-25 12:48:23','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-11-25 12:48:23','','0000-00-00 00:00:00'),(414,0,0,3054,'2025-11-25 17:58:30','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-11-25 17:58:30','','0000-00-00 00:00:00'),(415,0,0,3058,'2025-11-25 18:08:39','Pu','<P>STABILO+VNG=4200</P>\n','darshan','2025-11-25 18:08:39','','0000-00-00 00:00:00'),(416,0,0,3064,'2025-11-25 18:33:48','Pu','<P>VNG=3000</P>\n','darshan','2025-11-25 18:33:48','','0000-00-00 00:00:00'),(417,0,0,3067,'2025-11-25 18:41:25','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-11-25 18:41:25','','0000-00-00 00:00:00'),(419,0,0,3065,'2025-11-25 18:53:47','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-11-25 18:53:47','','0000-00-00 00:00:00'),(420,0,0,3076,'2025-11-25 19:43:50','Pu','<P>PTA=500</P>\n','darshan','2025-11-25 19:43:50','','0000-00-00 00:00:00'),(421,0,0,3091,'2025-11-26 12:02:09','Pu','<P>STABILOMTRY+VNG+CCG=5600</P>\n','darshan','2025-11-26 12:02:09','','0000-00-00 00:00:00'),(422,0,0,3102,'2025-11-26 12:26:11','Pu','<P>CCG+STABILOMTRY+VNG=5600</P>\n','darshan','2025-11-26 12:26:11','','0000-00-00 00:00:00'),(423,0,0,3109,'2025-11-26 13:08:25','Pu','<P>PTA+STABIL+VNG=4500</P>\n','darshan','2025-11-26 13:08:25','','0000-00-00 00:00:00'),(424,0,0,3114,'2025-11-26 17:28:59','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-11-26 17:28:59','','0000-00-00 00:00:00'),(425,0,0,3165,'2025-11-27 11:21:08','Pu','<P>PTA+STABIL+VNG=4600</P>\n','darshan','2025-11-27 11:21:08','','0000-00-00 00:00:00'),(426,0,0,3166,'2025-11-27 11:31:13','Pu','<P>PTA+STABILO+VNG+CCG=6000&GT;5400</P>\n','darshan','2025-11-27 11:31:13','','0000-00-00 00:00:00'),(427,0,0,3161,'2025-11-27 11:39:28','Pu','<P>PTA+STABILOTMRY+VNG=4500</P>\n','darshan','2025-11-27 11:39:28','','0000-00-00 00:00:00'),(428,0,0,3135,'2025-11-27 12:09:54','Pu','<P>PTA+STABILO+VNG=4600</P>\n','darshan','2025-11-27 12:09:54','','0000-00-00 00:00:00'),(429,0,0,3160,'2025-11-27 12:42:20','Pu','<P>PTA+STABIL+VNG=4500</P>\n','darshan','2025-11-27 12:42:20','','0000-00-00 00:00:00'),(430,0,0,3177,'2025-11-27 12:53:18','Pu','<P>PTA+VNG+STABILOMTRY=4500</P>\n','darshan','2025-11-27 12:53:18','','0000-00-00 00:00:00'),(431,0,0,3177,'2025-11-27 12:53:20','Pu','<P>PTA+VNG+STABILOMTRY=4500</P>\n','darshan','2025-11-27 12:53:20','','0000-00-00 00:00:00'),(432,0,0,3180,'2025-11-27 13:51:18','Pu','<P>PTA+STABILO+VNG=4600</P>\n','darshan','2025-11-27 13:51:18','','0000-00-00 00:00:00'),(433,0,0,3196,'2025-11-27 18:41:04','Pu','<P>STABILOMTRY+VNG+VEMP=5500</P>\n','darshan','2025-11-27 18:41:04','','0000-00-00 00:00:00'),(434,0,0,3202,'2025-11-27 19:08:23','Pu','<P>PTA+VNG+STABILOMETRY=4500</P>\n','darshan','2025-11-27 19:08:23','','0000-00-00 00:00:00'),(435,0,0,3181,'2025-11-28 11:18:38','Pu','<P>PTA+STABILOMETRUY+VNG=4500</P>\n','darshan','2025-11-28 11:18:38','','0000-00-00 00:00:00'),(436,0,0,3221,'2025-11-28 11:38:27','Pu','<P>PTA+STABILOMEATRY+CCG=4600</P>\n','darshan','2025-11-28 11:38:27','','0000-00-00 00:00:00'),(437,0,0,3222,'2025-11-28 11:58:58','Pu','<P>STABILOMETRY+CCG+PTA=4500</P>\n','darshan','2025-11-28 11:58:58','','0000-00-00 00:00:00'),(438,0,0,3217,'2025-11-28 12:11:59','Pu','<P>PTA+STABILOMETRY+VNG=4800</P>\n','darshan','2025-11-28 12:11:59','','0000-00-00 00:00:00'),(439,0,0,3245,'2025-11-28 12:38:26','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-11-28 12:38:26','','0000-00-00 00:00:00'),(440,0,0,3241,'2025-11-28 13:04:15','Pu','<P>PTA+STATBILO+VNG=4500</P>\n','darshan','2025-11-28 13:04:15','','0000-00-00 00:00:00'),(441,0,0,3233,'2025-11-28 13:19:20','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-11-28 13:19:20','','0000-00-00 00:00:00'),(442,0,0,3252,'2025-11-28 13:38:37','Pu','<P>PTA+VNG+STABI=4500</P>\n','darshan','2025-11-28 13:38:37','','0000-00-00 00:00:00'),(443,0,0,3240,'2025-11-28 14:08:20','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-11-28 14:08:20','','0000-00-00 00:00:00'),(444,0,0,3247,'2025-11-28 14:26:07','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-11-28 14:26:07','','0000-00-00 00:00:00'),(445,0,0,3248,'2025-11-28 14:32:19','Pu','<P>FLEXIBLE LARYNGOSCOPY=1500</P>\n','darshan','2025-11-28 14:32:19','','0000-00-00 00:00:00'),(446,0,0,3256,'2025-11-28 17:44:59','Pu','<P>STABILOMTRY+CCG+VNG=6000</P>\n','darshan','2025-11-28 17:44:59','','0000-00-00 00:00:00'),(447,0,0,3260,'2025-11-28 18:05:00','Pu','<P>PTA+VNG+STABILOMETRY=4600</P>\n','darshan','2025-11-28 18:05:00','','0000-00-00 00:00:00'),(448,0,0,3266,'2025-11-28 18:19:34','Pr','<P>PTA+VNG=3500</P>\n','darshan','2025-11-28 18:19:34','','0000-00-00 00:00:00'),(449,0,0,3274,'2025-11-28 18:53:40','Pu','<P>STABI+VNG=4000</P>\n','darshan','2025-11-28 18:53:40','','0000-00-00 00:00:00'),(450,0,0,3273,'2025-11-28 19:27:19','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-11-28 19:27:19','','0000-00-00 00:00:00'),(451,0,0,3285,'2025-11-28 19:44:01','Pu','<P>STABI+VNG=4000</P>\n','darshan','2025-11-28 19:44:01','','0000-00-00 00:00:00'),(452,0,0,3292,'2025-11-29 11:02:34','Pu','<P>PTA+STABIL+VNG+CCG=6000</P>\n','darshan','2025-11-29 11:02:34','','0000-00-00 00:00:00'),(453,0,0,3296,'2025-11-29 11:29:54','Pu','<P>PTA+STABIL+VNG=4500</P>\n','darshan','2025-11-29 11:29:54','','0000-00-00 00:00:00'),(454,0,0,3297,'2025-11-29 11:52:22','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-11-29 11:52:22','','0000-00-00 00:00:00'),(455,0,0,3305,'2025-11-29 12:02:49','Pu','<P>PTA+STABILOMTRY+VNG=4600</P>\n','darshan','2025-11-29 12:02:49','','0000-00-00 00:00:00'),(456,0,0,1671,'2025-11-29 12:08:58','Pu','<P>PTA=500</P>\n','darshan','2025-11-29 12:08:58','','0000-00-00 00:00:00'),(457,0,0,3311,'2025-11-29 12:30:16','Pu','<P>PTA+VNG+STABI=4600</P>\n','darshan','2025-11-29 12:30:16','','0000-00-00 00:00:00'),(458,0,0,3298,'2025-11-29 12:40:09','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-11-29 12:40:09','','0000-00-00 00:00:00'),(460,0,0,3330,'2025-11-29 13:15:13','Pu','<P>PTA+STABILOM+CCG=5000</P>\n','darshan','2025-11-29 13:15:13','','0000-00-00 00:00:00'),(461,0,0,3328,'2025-11-29 13:30:10','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-11-29 13:30:10','','0000-00-00 00:00:00'),(462,0,0,3334,'2025-11-29 14:48:44','Pu','<P>PTA+OAE+VNG=4500</P>\n','darshan','2025-11-29 14:48:30','darshan','2025-11-29 14:48:44'),(464,0,0,3360,'2025-12-01 10:56:12','Pu','<P>PTA+VNG+STABILOMETRY=4600</P>\n','darshan','2025-12-01 10:56:12','','0000-00-00 00:00:00'),(465,0,0,3362,'2025-12-01 11:19:48','Pu','<P>PTA+STABILOMTRY+VNG+CCG=6000</P>\n','darshan','2025-12-01 11:19:48','','0000-00-00 00:00:00'),(466,0,0,3363,'2025-12-01 11:34:59','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-12-01 11:34:59','','0000-00-00 00:00:00'),(467,0,0,3367,'2025-12-01 11:59:20','Pu','<P>BIOSPY=2000</P>\n','darshan','2025-12-01 11:59:20','','0000-00-00 00:00:00'),(468,0,0,3369,'2025-12-01 12:28:18','Pu','<P>STABIL+VNG=4000</P>\n','darshan','2025-12-01 12:28:18','','0000-00-00 00:00:00'),(469,0,0,3388,'2025-12-01 13:09:19','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-12-01 13:09:19','','0000-00-00 00:00:00'),(470,0,0,3395,'2025-12-01 13:18:25','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-12-01 13:18:25','','0000-00-00 00:00:00'),(471,0,0,3391,'2025-12-01 13:32:09','Pu','<P>PTA+VNG+STABI=4500</P>\n','darshan','2025-12-01 13:32:09','','0000-00-00 00:00:00'),(472,0,0,3397,'2025-12-01 14:17:01','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-12-01 14:17:01','','0000-00-00 00:00:00'),(473,0,0,3409,'2025-12-01 18:06:17','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-12-01 18:06:17','','0000-00-00 00:00:00'),(474,0,0,3412,'2025-12-01 18:15:16','Pu','<P>PTA+VNG+STABILOME=4500</P>\n','darshan','2025-12-01 18:15:16','','0000-00-00 00:00:00'),(475,0,0,1542,'2025-12-01 18:28:20','Pu','<P>PTA+OAE=2000</P>\n','darshan','2025-12-01 18:28:20','','0000-00-00 00:00:00'),(476,0,0,3420,'2025-12-01 18:47:15','Pu','<P>PTA+VNG=3500&GT;3000</P>\n','darshan','2025-12-01 18:47:15','','0000-00-00 00:00:00'),(477,0,0,3436,'2025-12-02 10:57:24','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-12-02 10:57:24','','0000-00-00 00:00:00'),(478,0,0,3446,'2025-12-02 11:07:15','Pu','<P>PTA+VNG+STABIL=4600</P>\n','darshan','2025-12-02 11:07:15','','0000-00-00 00:00:00'),(479,0,0,3455,'2025-12-02 11:50:34','Pu','<P>STABILO+VNG=4000</P>\n','darshan','2025-12-02 11:50:34','','0000-00-00 00:00:00'),(480,0,0,3457,'2025-12-02 12:07:18','Pu','<P>VNG+STABILOMETRY=3000+2000=5000&GT;4000</P>\n','darshan','2025-12-02 12:07:18','','0000-00-00 00:00:00'),(481,0,0,3458,'2025-12-02 12:22:21','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-12-02 12:22:21','','0000-00-00 00:00:00'),(482,0,0,3476,'2025-12-02 13:21:07','Pu','<P>STABILOMTRY+VNG=4200</P>\n','darshan','2025-12-02 13:21:07','','0000-00-00 00:00:00'),(483,0,0,3472,'2025-12-02 13:42:41','Pu','<P>VNG=3000</P>\n','darshan','2025-12-02 13:42:41','','0000-00-00 00:00:00'),(484,0,0,3490,'2025-12-02 18:47:34','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-12-02 18:47:34','','0000-00-00 00:00:00'),(485,0,0,3509,'2025-12-03 11:02:55','Pu','<P>OAE=1500</P>\n','darshan','2025-12-03 11:02:55','','0000-00-00 00:00:00'),(486,0,0,3515,'2025-12-03 11:54:56','Pu','<P>CCG+STABI+VNG=5400</P>\n','darshan','2025-12-03 11:54:56','','0000-00-00 00:00:00'),(487,0,0,3530,'2025-12-03 12:36:42','Pu','<P>PTA+VEMP=3500</P>\n','darshan','2025-12-03 12:36:42','','0000-00-00 00:00:00'),(488,0,0,3552,'2025-12-03 17:50:55','Pu','<P>PTA+VNG+STABI=4500</P>\n','darshan','2025-12-03 17:50:55','','0000-00-00 00:00:00'),(489,0,0,3553,'2025-12-03 18:07:23','Pu','<P>STABI+VNG=4000</P>\n','darshan','2025-12-03 18:07:23','','0000-00-00 00:00:00'),(490,0,0,3556,'2025-12-03 18:17:05','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-12-03 18:17:05','','0000-00-00 00:00:00'),(491,0,0,3563,'2025-12-03 18:25:13','Pu','<P>PTA+STABIL+VNG=4600</P>\n','darshan','2025-12-03 18:25:13','','0000-00-00 00:00:00'),(492,0,0,3561,'2025-12-03 18:29:09','Pu','<P>PTA=500</P>\n','darshan','2025-12-03 18:29:09','','0000-00-00 00:00:00'),(493,0,0,3569,'2025-12-03 18:56:31','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-12-03 18:56:31','','0000-00-00 00:00:00'),(494,0,0,3584,'2025-12-03 19:08:44','Pu','<P>STABI+VNG=4000</P>\n','darshan','2025-12-03 19:08:44','','0000-00-00 00:00:00'),(495,0,0,3591,'2025-12-03 19:22:09','Pu','<P>STABILOEMTRY_+VNG=4000</P>\n','darshan','2025-12-03 19:22:09','','0000-00-00 00:00:00'),(496,0,0,3603,'2025-12-04 11:36:14','Pu','<P>STABI+VNG=4500&GT;4000</P>\n','darshan','2025-12-04 11:36:14','','0000-00-00 00:00:00'),(497,0,0,3613,'2025-12-04 12:40:19','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-12-04 12:40:19','','0000-00-00 00:00:00'),(498,0,0,3615,'2025-12-04 12:49:57','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-12-04 12:49:57','','0000-00-00 00:00:00'),(499,0,0,3629,'2025-12-04 13:23:30','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-12-04 13:23:30','','0000-00-00 00:00:00'),(500,0,0,3633,'2025-12-04 17:33:14','Pu','<P>STABILOMETRY+VNG=4200</P>\n','darshan','2025-12-04 17:33:14','','0000-00-00 00:00:00'),(501,0,0,3634,'2025-12-04 17:47:32','Pu','<P>PTA+OAE=2500</P>\n','darshan','2025-12-04 17:47:32','','0000-00-00 00:00:00'),(502,0,0,3645,'2025-12-04 18:57:20','Pu','<P>VEMP+VNG=4000</P>\n','darshan','2025-12-04 18:57:20','','0000-00-00 00:00:00'),(503,0,0,3655,'2025-12-05 11:15:53','Pu','<P>PTA+OAE+VNG=4500</P>\n','darshan','2025-12-05 11:15:53','','0000-00-00 00:00:00'),(504,0,0,3658,'2025-12-05 11:32:16','Pu','<P>STABIL+VNG=4000</P>\n','darshan','2025-12-05 11:32:16','','0000-00-00 00:00:00'),(505,0,0,3660,'2025-12-05 11:37:40','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-12-05 11:37:40','','0000-00-00 00:00:00'),(506,0,0,3662,'2025-12-05 11:53:30','Pu','<P>PTA+VNG+STABI=4600</P>\n','darshan','2025-12-05 11:53:30','','0000-00-00 00:00:00'),(507,0,0,3665,'2025-12-05 12:08:22','Pu','<P>PTA+STABIL+VNG=4800</P>\n','darshan','2025-12-05 12:08:22','','0000-00-00 00:00:00'),(508,0,0,3669,'2025-12-05 12:22:41','Pu','<P>STABILOTMRY+VNG=4000</P>\n','darshan','2025-12-05 12:22:41','','0000-00-00 00:00:00'),(509,0,0,3679,'2025-12-05 13:00:09','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-12-05 13:00:09','','0000-00-00 00:00:00'),(510,0,0,3683,'2025-12-05 13:26:13','Pu','<P>PTA+STABILOMRTRY+CCG=4800</P>\n','darshan','2025-12-05 13:26:13','','0000-00-00 00:00:00'),(511,0,0,3688,'2025-12-05 17:15:34','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-12-05 17:15:34','','0000-00-00 00:00:00'),(512,0,0,3694,'2025-12-05 18:55:52','Pu','<P>STABILMETRY+VNG=4000</P>\n','darshan','2025-12-05 18:55:52','','0000-00-00 00:00:00'),(513,0,0,3727,'2025-12-06 11:25:19','Pu','<P>PTA+VNG+STABI=4500</P>\n','darshan','2025-12-06 11:25:19','','0000-00-00 00:00:00'),(514,0,0,3722,'2025-12-06 11:33:47','Pu','<P>STABILO+VNG=4000</P>\n','darshan','2025-12-06 11:33:47','','0000-00-00 00:00:00'),(515,0,0,3733,'2025-12-06 11:54:49','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-12-06 11:54:49','','0000-00-00 00:00:00'),(516,0,0,3739,'2025-12-06 12:54:53','Pu','<P>PTA+VNG+STABILOMETRY=4500</P>\n','darshan','2025-12-06 12:54:53','','0000-00-00 00:00:00'),(517,0,0,3745,'2025-12-06 13:40:28','Pu','<P>STABILOMETRY+VNG=4200</P>\n','darshan','2025-12-06 13:40:28','','0000-00-00 00:00:00'),(518,0,0,3753,'2025-12-06 15:12:23','Pu','<P>VEMP+VNG=4000</P>\n','darshan','2025-12-06 15:12:14','darshan','2025-12-06 15:12:23'),(519,0,0,3786,'2025-12-08 11:05:38','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-12-08 11:05:38','','0000-00-00 00:00:00'),(520,0,0,3775,'2025-12-08 11:19:38','Pu','<P>PTA+STABILOMTRY+VNG=4800</P>\n','darshan','2025-12-08 11:19:38','','0000-00-00 00:00:00'),(521,0,0,3796,'2025-12-08 11:51:05','Pu','<P>STABILOMERY+CCG=4000</P>\n','darshan','2025-12-08 11:51:05','','0000-00-00 00:00:00'),(522,0,0,3783,'2025-12-08 11:58:52','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-12-08 11:58:52','','0000-00-00 00:00:00'),(523,0,0,3801,'2025-12-08 12:20:54','Pu','<P>PTA+STABI+VNG=500+2000+3000=5500&GT;4500</P>\n','darshan','2025-12-08 12:20:54','','0000-00-00 00:00:00'),(524,0,0,3805,'2025-12-08 12:42:52','Pu','<P>PTA+OAE+STABIL=4800</P>\n','darshan','2025-12-08 12:42:52','','0000-00-00 00:00:00'),(525,0,0,3802,'2025-12-08 12:52:59','Pu','<P>PTAW+VNG=3500</P>\n','darshan','2025-12-08 12:52:59','','0000-00-00 00:00:00'),(526,0,0,3803,'2025-12-08 13:20:11','Pu','<P>PTA+STABIL+VNG=4800</P>\n','darshan','2025-12-08 13:20:11','','0000-00-00 00:00:00'),(527,0,0,3820,'2025-12-08 14:21:49','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-12-08 14:21:49','','0000-00-00 00:00:00'),(528,0,0,3830,'2025-12-08 14:45:42','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-12-08 14:45:42','','0000-00-00 00:00:00'),(529,0,0,3831,'2025-12-08 14:57:35','Pu','<P>PTA+STABIL+VNG=4500</P>\n','darshan','2025-12-08 14:57:35','','0000-00-00 00:00:00'),(530,0,0,3837,'2025-12-08 17:18:35','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-12-08 17:18:35','','0000-00-00 00:00:00'),(532,0,0,3835,'2025-12-08 17:25:59','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-12-08 17:25:59','','0000-00-00 00:00:00'),(533,0,0,3842,'2025-12-08 17:41:25','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-12-08 17:41:25','','0000-00-00 00:00:00'),(534,0,0,3860,'2025-12-08 19:21:07','Pu','<P>PTAA+STABI+VNG=4500</P>\n','darshan','2025-12-08 19:21:07','','0000-00-00 00:00:00'),(535,0,0,367,'2025-12-09 11:02:13','Pu','<P>PTA=500</P>\n','darshan','2025-12-09 11:02:13','','0000-00-00 00:00:00'),(536,0,0,3880,'2025-12-09 11:19:39','Pu','<P>PTA+VNG+STABILOM-=4500</P>\n','darshan','2025-12-09 11:19:39','','0000-00-00 00:00:00'),(537,0,0,3872,'2025-12-09 11:35:58','Pu','<P>PTA+STABI+VNG+CCG=6000</P>\n','darshan','2025-12-09 11:35:58','','0000-00-00 00:00:00'),(538,0,0,3882,'2025-12-09 11:45:33','Pu','<P>PTA+STASBI+VNG+CCG=6000</P>\n','darshan','2025-12-09 11:45:33','','0000-00-00 00:00:00'),(539,0,0,3874,'2025-12-09 12:02:38','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-12-09 12:02:38','','0000-00-00 00:00:00'),(540,0,0,3876,'2025-12-09 12:20:44','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-12-09 12:20:44','','0000-00-00 00:00:00'),(541,0,0,3877,'2025-12-09 12:32:41','Pu','<P>STABILOEMTRY+VNG=4000</P>\n','darshan','2025-12-09 12:32:41','','0000-00-00 00:00:00'),(542,0,0,3898,'2025-12-09 12:49:35','Pu','<P>PTA+STABI+VNG+CCG=6000</P>\n','darshan','2025-12-09 12:49:35','','0000-00-00 00:00:00'),(543,0,0,3885,'2025-12-09 12:54:50','Pu','<P>STABILOEMTRY+VNG=4000</P>\n','darshan','2025-12-09 12:54:50','','0000-00-00 00:00:00'),(544,0,0,3896,'2025-12-09 13:13:56','Pu','<P>PTA+STABI+VNG=4800</P>\n','darshan','2025-12-09 13:13:56','','0000-00-00 00:00:00'),(545,0,0,3893,'2025-12-09 13:46:31','Pu','<P>PTA+VNG+STABI=4600</P>\n','darshan','2025-12-09 13:46:31','','0000-00-00 00:00:00'),(546,0,0,3907,'2025-12-09 17:19:42','Pu','<P>PTA+STASBI+VNG=4500</P>\n','darshan','2025-12-09 17:19:42','','0000-00-00 00:00:00'),(547,0,0,3918,'2025-12-09 18:35:12','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-12-09 18:35:12','','0000-00-00 00:00:00'),(548,0,0,3919,'2025-12-09 18:42:24','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-12-09 18:42:24','','0000-00-00 00:00:00'),(549,0,0,3916,'2025-12-09 19:02:12','Pu','<P>PTA+STABI+VNG=4900&GT;4000</P>\n','darshan','2025-12-09 19:02:12','','0000-00-00 00:00:00'),(550,0,0,3933,'2025-12-09 20:03:39','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-12-09 20:03:39','','0000-00-00 00:00:00'),(551,0,0,3951,'2025-12-10 11:26:29','Pu','<P>PTA+STABILOMTRY+VNG=500+2200+3000=5700&GT;4500</P>\n','darshan','2025-12-10 11:26:29','','0000-00-00 00:00:00'),(552,0,0,3957,'2025-12-10 12:00:18','Pu','<P>STABILOMETRY+VNG+CCG=5600</P>\n','darshan','2025-12-10 12:00:18','','0000-00-00 00:00:00'),(553,0,0,3961,'2025-12-10 12:16:03','Pu','<P>PTA+VNG+STABILOMTRY=4600</P>\n','darshan','2025-12-10 12:16:03','','0000-00-00 00:00:00'),(554,0,0,3956,'2025-12-10 12:27:56','Pu','<P>PTA+STABILO+VNG=4900</P>\n','darshan','2025-12-10 12:27:56','','0000-00-00 00:00:00'),(555,0,0,3975,'2025-12-10 12:59:22','Pu','<P>PTA+VNG+STABILO=4600</P>\n','darshan','2025-12-10 12:59:22','','0000-00-00 00:00:00'),(556,0,0,3964,'2025-12-10 13:20:56','Pu','<P>STABIO+CCG+VNG=5600</P>\n','darshan','2025-12-10 13:20:56','','0000-00-00 00:00:00'),(557,0,0,3983,'2025-12-10 17:27:16','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-12-10 17:27:16','','0000-00-00 00:00:00'),(558,0,0,3984,'2025-12-10 17:39:24','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-12-10 17:39:24','','0000-00-00 00:00:00'),(559,0,0,3995,'2025-12-10 18:22:32','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-12-10 18:22:32','','0000-00-00 00:00:00'),(560,0,0,3993,'2025-12-10 18:22:54','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-12-10 18:22:54','','0000-00-00 00:00:00'),(561,0,0,4000,'2025-12-10 19:11:15','Pu','<P>STABILOEMTRY+VNG=4000</P>\n','darshan','2025-12-10 19:11:15','','0000-00-00 00:00:00'),(562,0,0,4006,'2025-12-10 19:43:22','Pu','<P>PTA=0</P>\n','darshan','2025-12-10 19:43:22','','0000-00-00 00:00:00'),(563,0,0,4015,'2025-12-11 11:01:22','Pu','<P>STABILOMTRY+VNG=4200</P>\n','darshan','2025-12-11 11:01:22','','0000-00-00 00:00:00'),(564,0,0,4016,'2025-12-11 11:20:11','Pu','<P>PTA+STABI+VNG=500+2200+3000=5700&GT;4300</P>\n','darshan','2025-12-11 11:20:11','','0000-00-00 00:00:00'),(565,0,0,4031,'2025-12-11 12:50:25','Pu','<P>PTA+VNG+STABILOMETRY=500+3000+2000=5500</P>\n','darshan','2025-12-11 12:50:25','','0000-00-00 00:00:00'),(566,0,0,4036,'2025-12-11 13:10:20','Pu','<P>PTA WITH BONE CONDUCTION=500</P>\n','darshan','2025-12-11 13:09:59','darshan','2025-12-11 13:10:20'),(567,0,0,4023,'2025-12-11 13:18:39','Pu','<P>PTA+STABILOTMRY+VNG=4500</P>\n','darshan','2025-12-11 13:18:39','','0000-00-00 00:00:00'),(568,0,0,4039,'2025-12-11 13:45:12','Pu','<P>STABILOMTRY+VNG=4400&GT;3500</P>\n','darshan','2025-12-11 13:45:12','','0000-00-00 00:00:00'),(569,0,0,4044,'2025-12-11 17:02:55','Pu','<P>PTA+VNG+STABILOMTRY=4500</P>\n','darshan','2025-12-11 17:02:55','','0000-00-00 00:00:00'),(570,0,0,4048,'2025-12-11 17:23:22','Pu','<P>PTA+STABILO+VNG=5500</P>\n','darshan','2025-12-11 17:23:22','','0000-00-00 00:00:00'),(571,0,0,4046,'2025-12-11 17:36:40','Pu','<P>PTA+VNG+CCG=4900</P>\n','darshan','2025-12-11 17:36:19','darshan','2025-12-11 17:36:40'),(572,0,0,4062,'2025-12-11 19:18:18','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-12-11 19:18:18','','0000-00-00 00:00:00'),(573,0,0,4061,'2025-12-11 19:35:12','Pu','<P>PTA+STABILO+VNG=4500</P>\n','darshan','2025-12-11 19:34:39','darshan','2025-12-11 19:35:12'),(575,0,0,4071,'2025-12-12 11:10:19','Pu','<P>PTA+STABI+VNG+CCG=6000</P>\n','darshan','2025-12-12 11:10:19','','0000-00-00 00:00:00'),(576,0,0,3509,'2025-12-12 11:15:45','Pu','<P>INTRATYMPANIC INJECTION=2000</P>\n','darshan','2025-12-12 11:15:45','','0000-00-00 00:00:00'),(577,0,0,4072,'2025-12-12 11:28:51','Pu','<P>PTA+STABILOMTRY+VNG=4800</P>\n','darshan','2025-12-12 11:28:51','','0000-00-00 00:00:00'),(578,0,0,4069,'2025-12-12 11:46:17','Pu','<P>PTA+STABILO+VNG=500+2000+3000=5500&GT;4500</P>\n','darshan','2025-12-12 11:46:17','','0000-00-00 00:00:00'),(579,0,0,4090,'2025-12-12 13:26:46','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-12-12 13:26:46','','0000-00-00 00:00:00'),(580,0,0,4093,'2025-12-12 17:23:17','Pu','<P>STABI+VNG=4000</P>\n','darshan','2025-12-12 17:23:17','','0000-00-00 00:00:00'),(581,0,0,4092,'2025-12-12 17:50:31','Pu','<P>STABI+VNG=4000</P>\n','darshan','2025-12-12 17:50:31','','0000-00-00 00:00:00'),(582,0,0,4099,'2025-12-12 17:59:40','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-12-12 17:59:40','','0000-00-00 00:00:00'),(583,0,0,4102,'2025-12-12 18:25:48','Pu','<P>PTA+STABIL+VNG=5500&GT;4400</P>\n','darshan','2025-12-12 18:25:48','','0000-00-00 00:00:00'),(584,0,0,4100,'2025-12-12 18:44:55','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-12-12 18:44:55','','0000-00-00 00:00:00'),(585,0,0,4131,'2025-12-13 11:10:40','Pu','<P>STABILOMTEY+VNG+CCG=6000</P>\n','darshan','2025-12-13 11:10:40','','0000-00-00 00:00:00'),(586,0,0,4142,'2025-12-13 11:27:40','Pu','<P>PTA+VEMP=3500</P>\n','darshan','2025-12-13 11:27:40','','0000-00-00 00:00:00'),(587,0,0,4147,'2025-12-13 11:43:23','Pu','<P>PTA+VNG+STABILOMTRY=4500</P>\n','darshan','2025-12-13 11:43:23','','0000-00-00 00:00:00'),(588,0,0,4150,'2025-12-13 12:04:24','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-12-13 12:04:24','','0000-00-00 00:00:00'),(589,0,0,4144,'2025-12-13 12:17:31','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-12-13 12:17:31','','0000-00-00 00:00:00'),(590,0,0,4146,'2025-12-13 12:38:44','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-12-13 12:38:44','','0000-00-00 00:00:00'),(591,0,0,4148,'2025-12-13 12:49:18','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-12-13 12:49:18','','0000-00-00 00:00:00'),(592,0,0,4153,'2025-12-13 13:12:20','Pu','<P>STABIL+VNG=4000</P>\n','darshan','2025-12-13 13:12:20','','0000-00-00 00:00:00'),(593,0,0,4138,'2025-12-13 13:50:15','Pu','<P>STABILOM+VNG=4200</P>\n','darshan','2025-12-13 13:50:15','','0000-00-00 00:00:00'),(594,0,0,4178,'2025-12-15 10:59:04','Pu','<P>VNG=3000</P>\n','darshan','2025-12-15 10:59:04','','0000-00-00 00:00:00'),(595,0,0,4180,'2025-12-15 11:33:57','Pu','<P>STABILOMTR+VNG=4000</P>\n','darshan','2025-12-15 11:33:57','','0000-00-00 00:00:00'),(596,0,0,4184,'2025-12-15 11:40:09','Pu','<P>PTA+VNG+STABILOMETRY=4600</P>\n','darshan','2025-12-15 11:40:09','','0000-00-00 00:00:00'),(597,0,0,4206,'2025-12-15 12:07:45','Pu','<P>VNG=3000</P>\n','darshan','2025-12-15 12:07:45','','0000-00-00 00:00:00'),(598,0,0,4188,'2025-12-15 12:12:36','Pu','<P>VNG=3000</P>\n\n<P>&nbsp;</P>\n','darshan','2025-12-15 12:12:36','','0000-00-00 00:00:00'),(599,0,0,4191,'2025-12-15 12:26:41','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-12-15 12:26:41','','0000-00-00 00:00:00'),(600,0,0,4200,'2025-12-15 12:34:39','Pu','<P>PTA=500</P>\n','darshan','2025-12-15 12:34:39','','0000-00-00 00:00:00'),(601,0,0,4216,'2025-12-15 12:47:24','Pu','<P>PTA+STABIL+VNG+CCG=6000</P>\n','darshan','2025-12-15 12:47:24','','0000-00-00 00:00:00'),(602,0,0,4221,'2025-12-15 13:32:31','Pu','<P>PTA+STABILO+VNG=4500</P>\n','darshan','2025-12-15 13:32:31','','0000-00-00 00:00:00'),(603,0,0,4230,'2025-12-15 17:17:49','Pu','<P>PTA+STABIL+CCG=4500</P>\n','darshan','2025-12-15 17:17:49','','0000-00-00 00:00:00'),(604,0,0,4237,'2025-12-15 17:59:37','Pu','<P>STABILO+VNG=4000</P>\n','darshan','2025-12-15 17:59:37','','0000-00-00 00:00:00'),(605,0,0,4234,'2025-12-15 18:07:39','Pu','<P>PTA+VNG+STABILOMTRY=4600</P>\n','darshan','2025-12-15 18:07:39','','0000-00-00 00:00:00'),(606,0,0,4238,'2025-12-15 18:21:21','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-12-15 18:21:21','','0000-00-00 00:00:00'),(607,0,0,4239,'2025-12-15 18:36:13','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-12-15 18:36:13','','0000-00-00 00:00:00'),(608,0,0,4247,'2025-12-15 18:50:42','Pu','<P>STABILO+VNG=4000</P>\n','darshan','2025-12-15 18:50:42','','0000-00-00 00:00:00'),(609,0,0,4248,'2025-12-15 19:19:12','Pu','<P>PTA+STABIL+VNG=4500</P>\n','darshan','2025-12-15 19:19:12','','0000-00-00 00:00:00'),(610,0,0,4252,'2025-12-15 20:24:47','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-12-15 20:24:47','','0000-00-00 00:00:00'),(611,0,0,4264,'2025-12-16 11:13:07','Pu','<P>PTA+STABIL+VNG+CCG=6000</P>\n','darshan','2025-12-16 11:13:07','','0000-00-00 00:00:00'),(612,0,0,2859,'2025-12-16 11:17:06','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-12-16 11:17:06','','0000-00-00 00:00:00'),(613,0,0,4268,'2025-12-16 11:31:44','Pu','<P>STABILOMETRY+VNG-=4000</P>\n','darshan','2025-12-16 11:31:44','','0000-00-00 00:00:00'),(614,0,0,4269,'2025-12-16 11:53:45','Pu','<P>PTA+VNG+STABILOMETRY=4500</P>\n','darshan','2025-12-16 11:53:45','','0000-00-00 00:00:00'),(615,0,0,4266,'2025-12-16 12:03:27','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-12-16 12:03:27','','0000-00-00 00:00:00'),(616,0,0,4284,'2025-12-16 12:32:26','Pu','<P>VNG+CCG+STABILOMETRY=5600</P>\n','darshan','2025-12-16 12:32:26','','0000-00-00 00:00:00'),(617,0,0,4288,'2025-12-16 13:43:06','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-12-16 13:43:06','','0000-00-00 00:00:00'),(618,0,0,4297,'2025-12-16 13:52:39','Pu','<P>STABILOMTRY+VNG+CCG=5400</P>\n','darshan','2025-12-16 13:52:39','','0000-00-00 00:00:00'),(619,0,0,4304,'2025-12-16 17:35:40','Pu','<P>PTA+STABIL+VNG=5200</P>\n','darshan','2025-12-16 17:35:40','','0000-00-00 00:00:00'),(620,0,0,4302,'2025-12-16 17:53:01','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-12-16 17:53:01','','0000-00-00 00:00:00'),(621,0,0,4306,'2025-12-16 18:11:56','Pu','<P>PTA+VNG+STABILOMETRY=4500</P>\n','darshan','2025-12-16 18:11:56','','0000-00-00 00:00:00'),(622,0,0,4321,'2025-12-16 19:32:46','Pu','<P>STABIL+VNG=4500&GT;4000</P>\n','darshan','2025-12-16 19:31:59','darshan','2025-12-16 19:32:46'),(623,0,0,4328,'2025-12-17 11:08:28','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-12-17 11:08:28','','0000-00-00 00:00:00'),(624,0,0,4331,'2025-12-17 11:27:01','Pu','<P>PTA+STABI+VNG+CCG=6000</P>\n','darshan','2025-12-17 11:27:01','','0000-00-00 00:00:00'),(625,0,0,4329,'2025-12-17 11:37:42','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-12-17 11:37:42','','0000-00-00 00:00:00'),(626,0,0,4335,'2025-12-17 12:10:46','Pu','<P>PTA+STBI+VNG=4500</P>\n','darshan','2025-12-17 12:10:46','','0000-00-00 00:00:00'),(627,0,0,4336,'2025-12-17 12:26:44','Pu','<P>STABI+VNG=4000</P>\n','darshan','2025-12-17 12:26:44','','0000-00-00 00:00:00'),(628,0,0,4350,'2025-12-17 13:54:22','Pu','<P>VEMP+VNG=4200</P>\n','darshan','2025-12-17 13:54:22','','0000-00-00 00:00:00'),(629,0,0,4358,'2025-12-17 18:09:25','Pu','<P>PTA+VNG+STABILOMTRY=4800</P>\n','darshan','2025-12-17 18:09:25','','0000-00-00 00:00:00'),(630,0,0,4355,'2025-12-17 18:18:52','Pu','<P>VNG+CCG=4000</P>\n','darshan','2025-12-17 18:18:52','','0000-00-00 00:00:00'),(631,0,0,4360,'2025-12-17 18:34:33','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-12-17 18:34:33','','0000-00-00 00:00:00'),(632,0,0,4388,'2025-12-18 11:05:15','Pu','<P>PTA+STABIL+VNG=4600</P>\n','darshan','2025-12-18 11:05:15','','0000-00-00 00:00:00'),(633,0,0,4391,'2025-12-18 11:17:34','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-12-18 11:17:34','','0000-00-00 00:00:00'),(634,0,0,1835,'2025-12-18 11:30:37','Pu','<P>VHIT=3500</P>\n','darshan','2025-12-18 11:30:37','','0000-00-00 00:00:00'),(635,0,0,4401,'2025-12-18 11:47:04','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-12-18 11:47:04','','0000-00-00 00:00:00'),(636,0,0,4400,'2025-12-18 12:10:18','Pu','<P>STABI+VNG=4000</P>\n','darshan','2025-12-18 12:10:18','','0000-00-00 00:00:00'),(637,0,0,4396,'2025-12-18 12:16:31','Pu','<P>PTA=500</P>\n','darshan','2025-12-18 12:16:31','','0000-00-00 00:00:00'),(638,0,0,4420,'2025-12-18 17:06:37','Pu','<P>PTA=500</P>\n','darshan','2025-12-18 17:06:37','','0000-00-00 00:00:00'),(639,0,0,4422,'2025-12-18 17:19:00','Pu','<P>PTA+STABILO+VNG+CCG=6000</P>\n','darshan','2025-12-18 17:19:00','','0000-00-00 00:00:00'),(640,0,0,4423,'2025-12-18 17:54:39','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-12-18 17:54:39','','0000-00-00 00:00:00'),(641,0,0,4427,'2025-12-18 18:15:34','Pu','<P>PTA+_STABI+VNG=4800</P>\n','darshan','2025-12-18 18:15:34','','0000-00-00 00:00:00'),(642,0,0,4429,'2025-12-18 18:31:11','Pu','<P>STABILOEMTRY+VNG=4000</P>\n','darshan','2025-12-18 18:31:11','','0000-00-00 00:00:00'),(643,0,0,4460,'2025-12-19 11:15:09','Pu','<P>PTA+STABILMETRY+VNG=4500</P>\n','darshan','2025-12-19 11:15:09','','0000-00-00 00:00:00'),(644,0,0,1898,'2025-12-19 11:20:52','Pu','<P>PTA=500</P>\n','darshan','2025-12-19 11:20:52','','0000-00-00 00:00:00'),(645,0,0,4456,'2025-12-19 11:29:03','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-12-19 11:29:03','','0000-00-00 00:00:00'),(646,0,0,4464,'2025-12-19 11:41:50','Pu','<P>STABI+CCG+VNG=5600</P>\n','darshan','2025-12-19 11:41:50','','0000-00-00 00:00:00'),(647,0,0,4458,'2025-12-19 11:49:16','Pu','<P>STABI+VNG=4000</P>\n','darshan','2025-12-19 11:49:16','','0000-00-00 00:00:00'),(648,0,0,4472,'2025-12-19 12:31:00','Pu','<P>PTA+STABILO+VNG=4500</P>\n','darshan','2025-12-19 12:31:00','','0000-00-00 00:00:00'),(649,0,0,3751,'2025-12-19 13:01:05','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-12-19 13:01:05','','0000-00-00 00:00:00'),(650,0,0,4485,'2025-12-19 13:51:10','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-12-19 13:51:10','','0000-00-00 00:00:00'),(651,0,0,4487,'2025-12-19 14:03:45','Pu','<P>STABILOMTRY+CCG=4200</P>\n','darshan','2025-12-19 14:03:45','','0000-00-00 00:00:00'),(652,0,0,4494,'2025-12-19 17:29:39','Pu','<P>STABIL+VNG=4000</P>\n','darshan','2025-12-19 17:29:39','','0000-00-00 00:00:00'),(653,0,0,4493,'2025-12-19 17:59:07','Pu','<P>PTA+VNG+STYASBI=4500</P>\n','darshan','2025-12-19 17:59:07','','0000-00-00 00:00:00'),(654,0,0,4491,'2025-12-19 18:05:17','Pu','<P>PTA+VNG+STABI=4600</P>\n','darshan','2025-12-19 18:05:17','','0000-00-00 00:00:00'),(655,0,0,4502,'2025-12-19 18:34:48','Pu','<P>STABILOEMTRY+VNG=4000</P>\n','darshan','2025-12-19 18:28:27','darshan','2025-12-19 18:34:48'),(656,0,0,4500,'2025-12-19 18:53:58','Pu','<P>STABILO+VNG=4000</P>\n','darshan','2025-12-19 18:53:58','','0000-00-00 00:00:00'),(657,0,0,4504,'2025-12-19 19:28:08','Pu','<P>OAE=2000&GT;1800</P>\n','darshan','2025-12-19 19:28:08','','0000-00-00 00:00:00'),(658,0,0,4513,'2025-12-19 19:52:54','Pu','<P>PTA=500</P>\n','darshan','2025-12-19 19:52:54','','0000-00-00 00:00:00'),(659,0,0,4561,'2025-12-22 11:13:36','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-12-22 11:13:36','','0000-00-00 00:00:00'),(660,0,0,4563,'2025-12-22 11:23:23','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-12-22 11:23:23','','0000-00-00 00:00:00'),(661,0,0,4573,'2025-12-22 11:44:28','Pu','<P>PTA+VNG+STBILOMTRY=4500</P>\n','darshan','2025-12-22 11:44:28','','0000-00-00 00:00:00'),(662,0,0,4586,'2025-12-22 11:59:25','Pu','<P>PTA+STABI+VNG+CCG=6000</P>\n','darshan','2025-12-22 11:59:25','','0000-00-00 00:00:00'),(663,0,0,4232,'2025-12-22 12:03:57','Pu','<P>PTA=500</P>\n','darshan','2025-12-22 12:03:57','','0000-00-00 00:00:00'),(664,0,0,4566,'2025-12-22 12:24:48','Pu','<P>PTA+STABILOEMTRY+VNG=4600</P>\n','darshan','2025-12-22 12:24:48','','0000-00-00 00:00:00'),(665,0,0,4578,'2025-12-22 12:32:06','Pu','<P>STABILOMTRY+VNG=4000</P>\n','darshan','2025-12-22 12:32:06','','0000-00-00 00:00:00'),(666,0,0,4581,'2025-12-22 12:57:48','Pu','<P>PTA+STABI+VNG=4600</P>\n','darshan','2025-12-22 12:57:48','','0000-00-00 00:00:00'),(667,0,0,4602,'2025-12-22 13:18:49','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-12-22 13:18:49','','0000-00-00 00:00:00'),(668,0,0,4604,'2025-12-22 13:29:33','Pu','<P>STABI+VNG=4000</P>\n','darshan','2025-12-22 13:29:33','','0000-00-00 00:00:00'),(669,0,0,4589,'2025-12-22 13:40:27','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-12-22 13:40:27','','0000-00-00 00:00:00'),(670,0,0,4590,'2025-12-22 14:04:53','Pu','<P>STABILMETRY+VNG=4200</P>\n','darshan','2025-12-22 14:04:53','','0000-00-00 00:00:00'),(671,0,0,4601,'2025-12-22 14:44:37','Pu','<P>PTA+VNG+STABILOMETRY=4600</P>\n','darshan','2025-12-22 14:44:37','','0000-00-00 00:00:00'),(672,0,0,4612,'2025-12-22 17:31:09','Pu','<P>STAB+VNG=4000</P>\n','darshan','2025-12-22 17:30:46','darshan','2025-12-22 17:31:09'),(673,0,0,4614,'2025-12-22 17:50:43','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-12-22 17:50:43','','0000-00-00 00:00:00'),(674,0,0,4621,'2025-12-22 18:29:10','Pu','<P>PTA+STABI+VNG=4500</P>\n','darshan','2025-12-22 18:29:10','','0000-00-00 00:00:00'),(675,0,0,4635,'2025-12-22 19:24:07','Pu','<P>PTA+VNG=3500</P>\n','darshan','2025-12-22 19:24:07','','0000-00-00 00:00:00'),(676,0,0,3530,'2025-12-22 19:44:02','Pr','<P>SOS ITGM=1700</P>\n','darshan','2025-12-22 19:43:54','darshan','2025-12-22 19:44:02'),(677,0,0,4633,'2025-12-22 19:53:13','Pu','<P>STABILOTMRY+VNG=4000</P>\n','darshan','2025-12-22 19:53:13','','0000-00-00 00:00:00'),(678,0,0,4648,'2025-12-23 10:57:41','Pu','<P>PTA+STABILOMTRY+VNG=4800</P>\n','darshan','2025-12-23 10:57:41','','0000-00-00 00:00:00'),(679,0,0,4652,'2025-12-23 11:33:10','Pu','<P>PTA+STABIL+CCG=4500</P>\n','darshan','2025-12-23 11:33:10','','0000-00-00 00:00:00'),(680,0,0,4660,'2025-12-23 11:52:07','Pu','<P>PTA+STABILOM+VNG=4500</P>\n','darshan','2025-12-23 11:52:07','','0000-00-00 00:00:00'),(681,0,0,4659,'2025-12-23 11:54:03','Pu','<P>VNG=3000</P>\n','darshan','2025-12-23 11:54:03','','0000-00-00 00:00:00'),(682,0,0,4667,'2025-12-23 12:09:44','Pu','<P>STABILOMETRY+VNG=4000</P>\n','darshan','2025-12-23 12:09:44','','0000-00-00 00:00:00'),(683,0,0,4661,'2025-12-23 12:25:31','Pu','<P>PTA+STABI+VNG=4800</P>\n','darshan','2025-12-23 12:25:31','','0000-00-00 00:00:00'),(684,0,0,4665,'2025-12-23 12:46:15','Pu','<P>PTA+VNG+STABI=4500</P>\n','darshan','2025-12-23 12:46:15','','0000-00-00 00:00:00'),(685,0,0,4676,'2025-12-23 13:06:09','Pu','<P>PTA+STABILOMTRY+VNG=4500</P>\n','darshan','2025-12-23 13:06:09','','0000-00-00 00:00:00'),(686,0,0,4678,'2025-12-23 13:20:28','Pu','<P>STABIL+VNG=4000</P>\n','darshan','2025-12-23 13:20:28','','0000-00-00 00:00:00'),(687,0,0,4682,'2025-12-23 13:37:04','Pu','<P>PTA=600&GT;400</P>\n','darshan','2025-12-23 13:37:04','','0000-00-00 00:00:00'),(688,0,0,4684,'2025-12-23 14:35:21','Pu','<P>PTA+STABI+VNG=</P>\n','darshan','2025-12-23 14:35:21','','0000-00-00 00:00:00'),(689,0,0,4687,'2025-12-23 17:21:28','Pu','<P>STABILO+VNG=4000</P>\n','darshan','2025-12-23 17:21:28','','0000-00-00 00:00:00'),(690,0,0,4686,'2025-12-23 17:42:05','Pu','<P>STABILOEMTRY+VNG=4200</P>\n','darshan','2025-12-23 17:42:05','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `general_note` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `generic_drug_master`
--

DROP TABLE IF EXISTS `generic_drug_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `generic_drug_master` (
  `company_id` tinyint(4) NOT NULL,
  `generic_drug_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  `generic_drug_abbrev` varchar(10) DEFAULT NULL,
  `generic_drug_name` varchar(250) NOT NULL,
  `generic_drug_is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`generic_drug_id`),
  KEY `ix_gdm_generic_drug_id` (`generic_drug_id`),
  KEY `ix_gdm_generic_drug_name` (`generic_drug_name`)
) ENGINE=InnoDB AUTO_INCREMENT=7135 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `generic_drug_master`
--

LOCK TABLES `generic_drug_master` WRITE;
/*!40000 ALTER TABLE `generic_drug_master` DISABLE KEYS */;
INSERT INTO `generic_drug_master` VALUES (0,4,NULL,'Aceclofenac 100 mg. + Paracetamol 325 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,5,NULL,'Aceclofenac 100 mg. + Serratiopeptidase 15 mg.+ Paracetamol 325 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,6,NULL,'Cilnidipine 10 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,7,NULL,'Cilnidipine 20 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,8,NULL,'Cilnidipine 5 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,9,NULL,'Caffeine 30 mg. + Paracetamol 500 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,11,NULL,'Elemental Calcium 500 mg. + Vit.D3 250 IU Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,12,NULL,'Elemental Calcium 200 mg. + Calcitriol 0.25 mcg. + Elemental Zinc 7.5 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,13,NULL,'Cholecalciferol 60,000 I.U. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,14,NULL,'Cholecalciferol 60,000 I.U. Sachet (1 gm)','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,16,NULL,'Clotrimazole 1.0% w/w Cream','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,18,NULL,'Clotrimazole 1.0% w/w + Beclomethasone Dipropionate 0.025% w/w Cream','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,21,NULL,'Diclofenac Diethylamine 1.16% w/w + Linseed Oil 3% w/w + Methyl Salicylate 10% w/w + Menthol 5% w/w + Benzyl Alcohol 1% w/w Gel','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,22,NULL,'Diclofenac Sodium 50 mg. + Paracetamol 325 mg. + Chlorzoxazone 250 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,23,NULL,'Diclofenac Sodium 50 mg. + Paracetamol 325 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,24,NULL,'Diclofenac Sodium 50 mg. + Serratiopeptidase 10 mg. + Paracetamol 325 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,26,NULL,'Dicyclomine Hydrochloride 20 mg. + Paracetamol 500 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,27,NULL,'Dicyclomine 10 mg. + Mefenamic Acid 250 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,28,NULL,'Cetirizine Dihydrochloride 10 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,29,NULL,'Dexchlorpheniramine Maleate 2 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,30,NULL,'Phenylephrine HCl 10 mg. + Chlorpheniramine Maleate 4 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,31,NULL,'Phenylephrine HCl 10 mg. + Chlorpheniramine Maleate 4 mg. + Caffeine 30 mg. + Paracetamol 500 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,32,NULL,'Folic Acid 5 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,33,NULL,'Folic Acid 5 mg. + Methylcobalamin 750 mcg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,35,NULL,'Folic Acid 5 mg. + Methylcobalamin 750 mcg. + Pyridoxine HCl 10 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,37,NULL,'Folic Acid 1.5 mg. + Riboflavin 10 mg. + Niacinamide 50 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,44,NULL,'Metformin Hydrochloride 500 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,45,NULL,'Sustained Release Metformin Hydrochloride 1000 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,47,NULL,'Glimepiride 1 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,48,NULL,'Glimepiride 2 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,49,NULL,'Glimepiride 0.5 mg. + Metformin Hydrochloride PR. 500 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,50,NULL,'Glimepiride 1 mg. + Metformin Hydrochloride SR. 500 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,52,NULL,'Glimepiride 2 mg. + Metformin Hydrochloride SR. 500 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,53,NULL,'Glimepiride 2 mg. + Metformin Hydrochloride SR. 1000 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,58,NULL,'Cyproheptadine 4 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,59,NULL,'Cyproheptadine 2 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,60,NULL,'Itraconazole 100 mg. Capsules','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,62,NULL,'Levocetirizine Dihydrochloride 5 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,63,NULL,'Levocetirizine 5 mg. + Montelukast 10 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,72,NULL,'Losartan Potassium 50 mg. + Amlodipine 5 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,73,NULL,'Losartan Potassium 50 mg. + Hydrochlorothiazide 12.5 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,74,NULL,'Mecobalamin 1500 mcg. Sublingual Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,77,NULL,'Metoprolol Succinate ER 25 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,78,NULL,'Metoprolol Succinate ER 50 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,84,NULL,'Nimesulide 100 mg. + Paracetamol 325 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,85,NULL,'Ofloxacin 200 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,87,NULL,'Ofloxacin 200 mg. + Ornidazole 500 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,94,NULL,'Paracetamol (Immediate Release) 325 mg. + Paracetamol (Extended Release) 325 mg. Bilayered Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,95,NULL,'Pantoprazole 40 mg. Capsules','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,96,NULL,'Pantoprazole 20 mg. + Domperidone 10 mg. Capsules','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,97,NULL,'Pantoprazole 40 mg. + Domperidone SR. 30 mg. Capsules','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,98,NULL,'Pregabalin 75 mg. + Mecobalamin 750 mcg. Capsules','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,100,NULL,'Pregabalin 75 mg. + Nortriptyline HCL 10 mg Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,101,NULL,'Rabeprazole Sodium 20 mg. Capsules','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,102,NULL,'Rabeprazole Sodium 20 mg. + Domperidone SR 30 mg. Capsules','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,105,NULL,'Rosuvastatin 10 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,106,NULL,'Rosuvastatin 20 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,108,NULL,'Rosuvastatin 5 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,109,NULL,'Rosuvastatin10 mg. + Aspirin 75 mg.(As gastro resistant tablets) Capsules','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,110,NULL,'Rosuvastatin 10 mg. + Fenofibrate (Micronised) 160 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,115,NULL,'Telmisartan 20 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,116,NULL,'Telmisartan 40 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,117,NULL,'Telmisartan 40 mg. + Amlodipine 5 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,118,NULL,'Telmisartan 40 mg. + Amlodipine 5 mg. + Hydrochlorothiazide 12.5 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,119,NULL,'Telmisartan IP .40 mg + Chlorthalidone IP 12.50 mg','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,120,NULL,'Telmisartan IP 40 mg + Chlorthalidone IP 6.25 mg','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,123,NULL,'Telmisartan 40 mg. + Metoprolol ER 25 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,124,NULL,'Telmisartan 40 mg. + Metoprolol ER 50 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,125,NULL,'Teneligliptin ???20 mg','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,126,NULL,'Teneligliptin ???20 mg + Metformin HCL??1000mg','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,127,NULL,'Teneligliptin ???20 mg + Metformin HCL??500mg','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,130,NULL,'Alprazolam 0.25 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,131,NULL,'Alprazolam 0.50 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,134,NULL,'Lorazepam 2 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,137,NULL,'Ferrous Ascorbate eq. to elemental Iron 100 mg. + Folic Acid 1.5 mg. + Elemental Zinc 22.5 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,139,NULL,'Atorvastatin 10 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,140,NULL,'Atorvastatin 20 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,141,NULL,'Atorvastatin 40 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,142,NULL,'Atorvastatin 10 mg. + Ezetimibe 10 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,144,NULL,'Tramadol Hydrochloride 37.5 mg. + Paractamol 325 mg. + Domperidone 10 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,145,NULL,'Tramadol Hydrochloride 37.5 mg. + Paractamol 325 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,146,NULL,'Amlodipine 5 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,149,NULL,'Azithromycin 250 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,150,NULL,'Azithromycin 500 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,156,NULL,'Voglibose 0.2 mg. + Glimepride 2 mg + Metformin Hydrochloride. 500 mg. Tablets','Y','thims','2019-01-05 07:45:22',NULL,NULL),(0,163,NULL,'MINOXIDIL 5%','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,164,NULL,'CEFOPERAZONE & SULBACTAM','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,166,NULL,'AZITHROMYCIN ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,167,NULL,'B COMPLEX ...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,169,NULL,'PARACETAMOL ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,170,NULL,'LIGNOCAINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,176,NULL,'AMOXYCILIN 500+CLAVULANIC 125MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,178,NULL,'KETOCONAZOLE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,179,NULL,'DEFLAZACORT  6 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,182,NULL,'DOMPERIDONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,184,NULL,'DROTAVERINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,185,NULL,'DOXOFYLLINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,189,NULL,'ESOMEPRAZOLE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,190,NULL,'FAMOTIDINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,192,NULL,'FEXOFENADINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,193,NULL,'FOLIC ACID','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,194,NULL,'FUSIDIC ACID ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,199,NULL,'ITRACONAZOLE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,200,NULL,'ITRACONAZOLE 100MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,201,NULL,'DICYCLOMINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,203,NULL,'LEVOFLOXACIN 500MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,207,NULL,'MEROPENEM 1 GM..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,211,NULL,'NEBIVOLOL 5MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,213,NULL,'NEOMYCIN SULPHATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,215,NULL,'NITROGLYCERIN 2.6 MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,216,NULL,'PANTOPRAZOL 40+DOMPERIDONE10MG+DOMPERIDON 20MG SR ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,218,NULL,'PANTOPRAZOLE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,222,NULL,'ACECLOFENAC & PARACETAMOL TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,226,NULL,'SILODOSIN 8 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,227,NULL,'TERBINAFINE HCL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,228,NULL,'TELMISARTAN & METOPROLOL SUCCINATE TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,229,NULL,'TELMISARTAN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,230,NULL,'TENEGLIPTIN 20+ METFORMIN 1000','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,231,NULL,'THYROXINE 12.5 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,232,NULL,'THYROXINE 25 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,233,NULL,'THYROXINE 50 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,234,NULL,'THYROXINE 75 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,236,NULL,'BETAHISTINE 16 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,237,NULL,'BETAHISTINE 8 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,238,NULL,'DEFLAZACORT 18 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,242,NULL,'CEFTRIAXONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,245,NULL,'SURGICAL.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,248,NULL,'RABEPRAZOLE 20 & DOMPERIDONE 30 SR','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,249,NULL,'PARACETAMOL TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,251,NULL,'TELMISARTAN & CHLORTHALIDONE TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,253,NULL,'GLICLAZIDE & METFORMIN HCL TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,260,NULL,'ESCITALOPRAM TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,265,NULL,'NEBIVOLOL TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,269,NULL,'RABEPRAZOLE & DOMPERIDONE CAPS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,272,NULL,'VOGLIBOSE TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,273,NULL,'TELMISARTAN 40+AMLODEPINE 5+HYDROCHLORPTHIAZIDE 12.5MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,280,NULL,'FERROUS FUMARATE,FOLIC ACID & VITAMIN B12 TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,282,NULL,'CEFIXIME TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,287,NULL,'ATORVASTATIN TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,292,NULL,'CHOLECALCIFEROL 60,000 I.U...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,297,NULL,'METRONIDAZOLE ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,298,NULL,'CEFIXIME & POTASSIUM CLAVULANATE TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,299,NULL,'ALPRAZOLAM....','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,301,NULL,'COSMETIC.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,302,NULL,'MULTIVITAMIN & MULTIMINRAL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,304,NULL,'PIOGLITAZONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,305,NULL,'ANTACID','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,308,NULL,'FOOD PRODUCTS ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,313,NULL,'METFORMIN 500+GLIMEPIRIDE 1 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,314,NULL,'METFORMIN  TAB...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,321,NULL,'ACECLOFENAC 100+PARACETAMOL 500+SERRATIOPEPTIDASE 15MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,326,NULL,'INSULIN INJ...(SOLUBLU)','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,327,NULL,'PROCHLORPERAZINE 5MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,328,NULL,'TRAMADOL 37.5 +PARACETAMOL 325','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,330,NULL,'QUETIAPINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,348,NULL,'VITAMIN D3 INJ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,357,NULL,'METHOTREXATE 7.5MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,358,NULL,'DROTAVERINE 80+MEFENAMIC 250','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,359,NULL,'PROMETHAZINE THEOCLATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,363,NULL,'TRIMETHOPRIM 40+SULPHAMETHOXAZOLE 200 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,365,NULL,'VITAMIN+TONIC','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,369,NULL,'PARACETAMOL-DICLOFENAC-SERRATIOPEPTIDASE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,371,NULL,'IBUPRUFEN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,374,NULL,'DICLOFENAC','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,381,NULL,'NIFEDIPINE SR','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,382,NULL,'MULTIVITAMIN & MINERAL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,387,NULL,'CEFPODOXIME ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,391,NULL,'CEFUROXIME','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,392,NULL,'OFLOXACIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,393,NULL,'OFLOXACIN & ORNIDAZOLE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,394,NULL,'CILNIDIPINE 10 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,396,NULL,'CITICOLINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,401,NULL,'AMOXYCILLIN+POTASSIUM CLAVULANATE ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,403,NULL,'MEBEVERINE ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,405,NULL,'TRAMADOL ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,407,NULL,'ISPAGHULA HUSK CAPSULES','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,408,NULL,'LAXETIVE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,409,NULL,'LAXATIVE ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,412,NULL,'PANCREATIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,418,NULL,'CHOLECALCIFEROL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,420,NULL,'CHOLECALCIFEROL 60,000 IU SACHET','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,421,NULL,'CHOLECALCIFEROL 60,000 IU TABS','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,432,NULL,'LACTULOSE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,433,NULL,'DYDROGESTERONE ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,439,NULL,'ETORICOXIB','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,447,NULL,'VALPROATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,452,NULL,'PHENYTOIN 100 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,454,NULL,'PHENYTOIN 50 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,462,NULL,'RABEPRAZOLE & DOMPERIDONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,469,NULL,'ISABGOL HUSK','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,472,NULL,'FEBUXOSTAT 40 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,474,NULL,'AMOXYCILLIN 500+POTASSIUM CLAVULANATE 125','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,475,NULL,'AMOXYCILLIN+CLAVULANATE ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,480,NULL,'ROSUVASTATIN 10 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,481,NULL,'ROSUVASTATIN 5 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,483,NULL,'ITOPRIDE 150 SR','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,484,NULL,'ITOPRIDE 50','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,485,NULL,'PANTOPRAZOLE 40+ITOPRIDE 150 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,490,NULL,'GLIMEPIRIDE TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,495,NULL,'METFORMIN 500+GLIMEPIRIDE 2 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,496,NULL,'GLIPIZIDE TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,497,NULL,'NITROGLYCERIN CR','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,498,NULL,'POLYGELINE A 3.5G,POTASSIUM CHLORIDE A 0.038G,SODIUM CHLORIDE 0.85G...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,501,NULL,'ADEMETIONINE ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,504,NULL,'BIPHASIC ISOPHANE INSULIN INJ...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,510,NULL,'PROPRANOLOL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,515,NULL,'IVABRADINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,516,NULL,'TRIAMCINOLONE ACETONIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,517,NULL,'PREDNISOLONE 5 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,518,NULL,'CLARITHROMYCIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,524,NULL,'LEVETIRACETAM','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,527,NULL,'CHLORDIAZEPOXIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,528,NULL,'VITAMIN C (ASCORBIC ACID)','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,529,NULL,'LINEZOLID','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,530,NULL,'ENOXAPARINE 40MG SODIUM INJ..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,531,NULL,'ENOXAPARINE 60MG SODIUM INJ..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,542,NULL,'LOSARTAN ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,551,NULL,'AMOXYCILLIN 250+CLAVULANATE 125 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,553,NULL,'AMOXYCILLIN 200+CLAVULANATE 28.5 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,560,NULL,'MEFENAMIC250+DICYCLOMINE10','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,563,NULL,'ONDANSETRON 4 MG DT','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,565,NULL,'CARBIMAZOLE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,575,NULL,'METHYLPREDNISOLONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,576,NULL,'NIFEDIPINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,580,NULL,'PARACETAMOL 125+MEFENAMIC 50 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,583,NULL,'CHLOROQUIN ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,586,NULL,'INSULIN ASPART AND PROTAMINE INJ...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,587,NULL,'REPAGLINIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,593,NULL,'VOGLIBOSE 0.3+METFORMIN 500 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,599,NULL,'PANTOPRAZOLE 40+DOMPERIDONE 30 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,603,NULL,'PROMETHAZINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,604,NULL,'PROMETHAZINE & PARACETAMOL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,609,NULL,'ESOMEPRAZOLE40+DOMPERIDONE SR30','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,610,NULL,'METFORMIN 500+VOGLIBOSE 0.2 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,614,NULL,'PROTIN POWDER','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,616,NULL,'RABEPRAZOLE 20 ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,617,NULL,'ROSUVASTATIN 20 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,618,NULL,'ROSUVASTATIN 40 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,621,NULL,'RABEPRAZOLE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,631,NULL,'CLONAZEPAM TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,640,NULL,'MESALAMINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,651,NULL,'ISOSORBIDE DINITRATE ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,661,NULL,'CLOPIDOGREL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,664,NULL,'PIROXICAM TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,667,NULL,'METOPROLOL ER','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,674,NULL,'TELMISARTAN .....','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,675,NULL,'TELMISARTAN 40+AMLODIPINE 5MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,679,NULL,'AMLODIPINE 5MG+ATENOLOL 50MG ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,686,NULL,'THYROXINE 100 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,688,NULL,'THYROXINE 125 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,690,NULL,'THYROXINE 150 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,698,NULL,'TORSEMIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,707,NULL,'ISOTRETINOIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,711,NULL,'URSODIOL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,717,NULL,'DIAZEPAM','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,723,NULL,'VITAMIN A','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,734,NULL,'LEVOCETIRIZINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,740,NULL,'ORNIDAZOLE & OFLOXACIN TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,748,NULL,'ZOLPIDEM TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,754,NULL,'AMOXYCILLIN 625MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,759,NULL,'GENERAL.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,762,NULL,'AYURVEDIC MEDICINE.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,764,NULL,'METOPROL SR 47.5MG+50MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,772,NULL,'AYURVEDIC','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,774,NULL,'MOXIFLOXACIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,778,NULL,'MOXIFLOXACIN HYDROCHLORIDE 0.5 % DROPS','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,798,NULL,'LOTEPREDNOL ETABONATE 0.5%','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,816,NULL,'ACEBROPHYLLINE 200 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,831,NULL,'METOPROLOL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,837,'RANTAC ','Ranitidine','Y','thims','2019-01-08 11:10:29','harshad','2019-05-27 20:27:09'),(0,838,NULL,'ROSUVASTATIN 10+ASPIRIN 75+CLOPIDOGREL 75 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,839,NULL,'ROSUVASTATIN 20+CLOPIDOGREL 75+ASPIRIN 75','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,846,NULL,'GLYCERINE ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,850,NULL,'FLUTICASONE FUROATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,852,NULL,'HALOBETASOL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,857,NULL,'LEVOCLOPERASTINE FENDIZOATE SUSPENSION','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,896,NULL,'LABETALOL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,939,NULL,'METOPROLOL SUCCINATE ER TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,965,NULL,'ONDANSETRON 2 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,981,NULL,'CLOBETASOL PROPIONATE CREAM.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,997,NULL,'CIPROFLOXACIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1003,NULL,'ALBENDAZOL...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1006,NULL,'VITAMIN B COMPLEX WITH CHOLINE,& LYSINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1007,NULL,'PREDNISOLONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1008,NULL,'CARBOXY METHYL CELLULOSE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1024,NULL,'THIOCOLCHICOSIDE,DICLOFENAC SODIUM 50MG CAPSULES...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1028,NULL,'HYDROXYPROPYL METHYLCELLULOSE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1034,NULL,'TOBRAMYCIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1036,NULL,'MOXIFLOXACIN +DEXAMETHASONE DROPS','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1044,NULL,'CEFDINIR 125 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1050,NULL,'ATENOLOL 25 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1051,NULL,'ATENOLOL 50 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1056,NULL,'PREGABALIN SR 75MG+MECOBALAMIN SR 1500MCG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1058,NULL,'AZITHROMYCIN 100 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1059,NULL,'AZITHROMYCIN 200 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1060,NULL,'AZITHROMYCIN 250 MG ...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1061,NULL,'AZITHROMYCIN 500 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1066,NULL,'LEVOSALBUTAMOL-AMBROXOL-GUAIPHENESIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1078,NULL,'TRANEXAMIC ACID500+MEFENAMIC ACID 250','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1082,NULL,'TRYPSIN 48+BROMELAIN 90+RUTOSIDE TRIHYDRATE 100','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1087,NULL,'ETORICOXIB 60MG+THIOCOLCHICOSIDE 4MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1088,NULL,'ETORICOXIB 60 MG+PARACETAMOL 500 MG ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1096,NULL,'TAMSULOSIN 0.4 +FINASTERIDE 5 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1098,NULL,'TAMSULOSIN 0.4 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1101,NULL,'PROGESTERONE 400MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1119,NULL,'ACETAMINOPHEN...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1124,NULL,'XYLOMETAZOLINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1133,NULL,'ONDANSETRON TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1136,NULL,'CALCIUM & VITAMIN D3 CAPS.','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1139,NULL,'PARADICHLOROBENZENE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1141,NULL,'PANTOPRAZOLE 20 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1142,NULL,'PANTOPRAZOLE 40 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1143,NULL,'PANTOPRAZOLE 40+DOMPERIDONE 10 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1151,NULL,'RIFAXIMIN 200 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1153,NULL,'RABEPRAZOLE 40 MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1176,NULL,'URSODEOXYCHOLIC 300 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1181,NULL,'PHENYLEPHRINE & CHLORPHENIRAMINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1198,NULL,'CLOTRIMAZOLE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1205,NULL,'UREA+LACTIC ACI+PROPYLENE GLYCOL+PARAFIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1206,NULL,'WHITE PARAFFIN +PARAFFIN..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1214,NULL,'MICONAZOLE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1218,NULL,'MULTIVITAMIN+MULTIMINERAL+ANTOXIDANTS','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1221,NULL,'AMIKACIN 500 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1237,NULL,'CEFTRIAXONE & SULBACTAM','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1241,NULL,'AMOXYCILLIN 80+POTASSIUM CLAVULANATE 11.4MG DROPS','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1245,NULL,'CEFPODOXIME+POTASSIUM CLAVULANATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1257,NULL,'TRYPSIN 48+BROMELAIN 90+RUTOSIDE TRIHYDRATE 100+DICLOFENAC 50','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1258,NULL,'DICLOFENAC 50MG-PARA500-SERRATIOPEPTIDAS15MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1267,NULL,'CALCIUM CABONATE 500+CALCITRIOL 0.25 MG+ZINC 7.5 MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1273,NULL,'IBANDRONIC ACID 150 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1275,NULL,'METFORMIN 500+GLIMEPIRIDE 1+VOGLIBOSE 0.2 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1280,NULL,'IRON SUCROSE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1281,NULL,'ACYCLOVIR 400MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1288,NULL,'ROSUVASTATIN 10+ASPIRIN 75 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1294,NULL,'SULBACTAM & CEFOPERAZONE INJ...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1299,NULL,'OLANZAPINE 10 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1300,NULL,'OLANZAPINE 2.5 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1301,NULL,'OLANZAPINE 5 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1305,NULL,'PROPRANOLOL 40 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1306,NULL,'PROPANOLOL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1314,NULL,'ACECLOFENAC 100+THIOCOLCHICOSIDE 4 MG... ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1316,NULL,'ACECLOFENAC 100+PARACETAMOL 500MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1320,NULL,'ESCITALOPRAM 10+CLONAZEPAM 0.5 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1327,NULL,'ONDANSETRON MD','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1332,NULL,'PANTOPRAZOLE 40+LEVOSULPIRIDE 75 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1334,NULL,'GABAPENTIN 400+NORTRIPTYLINE 10 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1336,NULL,'PIPERACILLIN  & TAZOBACTAM','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1341,NULL,'PRE &PROBIOTIC ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1345,NULL,'PREGABALIN 75 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1350,NULL,'MONTELUKAST 10 +FEXOFENADINE 120 ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1361,NULL,'ACETAMINOPHEN 250 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1362,NULL,'MEFENAMIC ACID','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1365,NULL,'CEFPODOXIME 25 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1368,NULL,'CEFOTAXIM','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1376,NULL,'TOPIRAMATE 50MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1380,NULL,'MECOBALAMIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1381,NULL,'AMITRIPTYLINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1384,NULL,'VITAMIN D3 6000O IU..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1387,NULL,'VANCOMYCIN HYDROCHLORIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1395,NULL,'CEFUROXIME 250+POTA CLAVU 125','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1416,NULL,'LEVETIRACETAM 500 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1417,NULL,'TENEGLIPTIN 20','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1427,NULL,'DIGESTIVE ENZYME TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1440,NULL,'OFLOXACIN AND ORNIDAZOLE TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1446,NULL,'LEVOCETIRIZINE TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1452,NULL,'VITAMINS+MINERAL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1453,NULL,'VITAMINS+MINERALS+NATURAL EXTRACT NUTRITIONAL FOOD SUPPLEMENT...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1457,NULL,'TROPICAMIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1458,NULL,'TROPICAMIDE + PHENYLEPHRINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1460,NULL,'CYCLOPENTOLATE HYDROCHLORIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1480,NULL,'DICLOFENAC & PARACETAMOL TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1520,NULL,'AMOXYCILLIN 400+POTASSIUM CLAVULANATE 57MG ORAL SUSPENSION','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1521,NULL,'MONTELUKAST 4MG+LEVOCETIRIZINE 2.5MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1527,NULL,'AMORPHOUS HYDROGEL WOUND DRESSING WITH COLLOIDAL SILVER CREAM','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1529,NULL,'ANTI-HEMORRHOIDAL CREAM','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1532,NULL,'BUTORPHANOL TARTRATE 2MG INJ...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1540,NULL,'MEROPENEM 500 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1542,NULL,'AMIKACIN 100 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1543,NULL,'AMIKACIN 250 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1545,NULL,'CEFTRIAXONE 1G INJ...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1546,NULL,'CEFTRIAXONE 250MG INJ...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1547,NULL,'CEFTRIAXONE 2G INJ...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1548,NULL,'CEFTRIAXONE 500MG INJ...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1560,NULL,'AMBROXOL HYDROCHLORIDE 30MG TABS','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1561,NULL,'AMLODIPINE ...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1564,NULL,'AMLODIPINE 5 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1574,NULL,'CEFADROXIL 500MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1580,NULL,'CLINDAMYCIN+CLOTRIMAZOLE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1583,NULL,'CLOPIDOGREL 75 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1586,NULL,'ASPIRIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1618,NULL,'AMOXYCILLIN 500+POTASSIUM CLAVULANATE 125MG TABS','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1655,NULL,'PANTOPRAZOLE 20+DOMPERIDONE 10 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1661,NULL,'LEVOFLOXACIN 250 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1662,NULL,'LEVOFLOXACIN 750MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1679,NULL,'THIOCOLCHICOSIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1698,NULL,'CEFEPIME & TAZOBACTAM','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1709,NULL,'NITROGLYCERIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1716,NULL,'BUPIVACAINE HYDROCHLORIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1732,NULL,'NITROFURANTOIN ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1735,NULL,'CALCIFEROL 60000 I.U..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1748,NULL,'FLUCONAZOLE TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1766,NULL,'SODIUM BICARBONATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1781,NULL,'LACTITOL MONOHYDRATE 10.0 & ISPAGHULA HUSK 3.5 GM','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1786,NULL,'LEVOSULPIRIDE TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1794,NULL,'CLOTRIMAZOL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1795,NULL,'CLOTRIMAZOLE+BECLOMETHASONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1796,NULL,'ACARBOSE....','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1797,NULL,'ACARBOSE & METFORMIN TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1798,NULL,'CETIRIZIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1803,NULL,'ATROPINE SULFATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1810,NULL,'CLINDAMYCIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1820,NULL,'ROTAVIRUS VACCINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1821,NULL,'TYPHOID VACCINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1870,NULL,'CINNARIZINE ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1871,NULL,'ALBUMIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1902,NULL,'HEPARIN SODIUM','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1903,NULL,'TETANUS','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1916,NULL,'DICYCLOMINE & SIMETHICONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1917,NULL,'MEFENAMIC250+DICYCLOMINE20','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1921,NULL,'DEXTROMETHORPHAN-CHLORPHENIRAMINE-PHENYLEPHRINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1922,NULL,'TERBUTALINE - BROMHEXINE - GUAIPHENESIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1923,NULL,'HYOSCINE BUTYLBROMIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1924,NULL,'BISACODIL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1942,NULL,'PACLITAXEL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1965,NULL,'CIPROFLOXACIN 500MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1969,NULL,'DEXAMETHASONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1970,NULL,'BISACODYL 5 MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,1989,NULL,'ATORVASTATIN 80 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2003,NULL,'RIFAXIMIN 200 MG ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2010,NULL,'CODEINE SULFAT','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2018,NULL,'ETOFYLLINE 115MG & THEOPHYLLINE 35MG SR','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2026,NULL,'ENALAPRIL ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2048,NULL,'TELMISARTAN 40 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2051,NULL,'CHLORTHALIDONE 12.5 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2053,NULL,'CHLORTHALIDONE 6.25 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2064,NULL,'ETHAMBUTOL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2089,NULL,'NORETHISTERONE 5 MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2090,NULL,'RANITIDINE ~ DOMPERIDONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2100,NULL,'TENELIGLIPTIN 20 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2121,NULL,'NIKORANDIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2124,NULL,'METOLAZONE 2.5MG ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2125,NULL,'METOLAZONE 5 MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2127,NULL,'CLINDAMYCIN PHOSPHATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2133,NULL,'SALINE ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2134,NULL,'OFLOXACIN-BECLOMETHASONE-CLOTRIMAZOLE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2141,NULL,'ETOFYLLINE & THEOPHYLLINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2142,NULL,'ARTESUNATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2144,NULL,'FOSPHENYTOIN INJ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2146,NULL,'METHYLCOBALAMIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2154,NULL,'RABIES VACCINE...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2160,NULL,'SALBUTAMOL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2161,NULL,'BUDESONIDE ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2164,NULL,'BUDESONIDE & FORMOTEROL FUMARATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2165,NULL,'FORMOTEROL FUMARATE+BUDESONIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2166,NULL,'OXYMETAZOLINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2171,NULL,'BISACODYL...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2178,NULL,'HYDROQUINONE 2%+TRETINOIN 0.025%+MOMETASONE 0.01%','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2190,NULL,'ACETYLCYSTEINE ...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2197,NULL,'CHLORAMPHENICOL-POLYMYXIN B SULPHATE-DEXAMETHASONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2198,NULL,'CHLORAMPHENICOL & POLYMYXIN B SULPHATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2204,NULL,'AMITRIPTYLINE 10MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2215,NULL,'MOMETASONE CREAM.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2227,NULL,'DOPAMINE HYDROCHLORIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2230,NULL,'PROPRANOLOL LONG ACTING','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2234,NULL,'TORSEMIDE 5MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2235,NULL,'TORSEMIDE 10MG+SPIRONOLACTONE 50MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2241,NULL,'WARFARIN TAB','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2243,NULL,'ACYCLOVIR 200MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2244,NULL,'ACYCLOVIR 800MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2250,NULL,'AMANTADINE HCL 100 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2253,NULL,'OSELTAMIVIR','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2266,NULL,'CALCITRIOL0.25+CALCIUM CARBONATE 500+ZINC 7.5MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2269,NULL,'CARVEDILOL 3.125 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2270,NULL,'CARVEDILOL 6.25 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2271,NULL,'CEFADROXIL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2274,NULL,'TRYPSIN-CHYMOTRYPSIN ..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2278,NULL,'PROPRANOLOL 10 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2313,NULL,'TORSEMIDE 10MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2316,NULL,'TORSEMIDE 20MG+SPIRONOLACTONE 50MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2317,NULL,'TORSEMIDE 5MG+SPIRONOLACTONE 50MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2318,NULL,'TORSEMIDE 10MG+SPIRONOLACTONE 25MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2328,NULL,'ESOMEPRAZOLE 40MG+DOMPERIDONE 10MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2330,NULL,'ETHAMSYLATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2332,NULL,'METFORMIN 500 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2343,NULL,'GABAPENTIN 300+MECOBAL 500+ALPHA LIPO 100','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2344,NULL,'MULTIVITAMIN & MULTIMINRAL & ANTIOXIDANT','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2352,NULL,'ISOTRETINOIN 20 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2356,NULL,'IVABRADINE 5MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2358,NULL,'LANSOPRAZOLE 15MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2389,NULL,'MONTELUKAST 4 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2391,NULL,'MONTELUKAST 10MG+LEVOCETIRIZINE 5MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2397,NULL,'ACETYLCYSTEINE 600MG TAB...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2398,NULL,'SODIUM CHLORIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2401,NULL,'NORFLOXACIN+LACTIC ACID','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2402,NULL,'NORFLOXACIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2409,NULL,'CALCIUM +VITA D3','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2416,NULL,'PARACETAMOL 650MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2418,NULL,'PREDNISOLONE 10 MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2436,NULL,'AMIODARONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2479,NULL,'VITAMIN C ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2483,NULL,'CEFIXIME 200 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2484,NULL,'PROVIDONE IODINE ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2485,NULL,'POVIDONE IODINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2496,NULL,'ORS SALTS','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2497,NULL,'CLARITHROMYCIN 500MG TABS','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2501,NULL,'LEVOSALBUTAMOL+IPRATROPIUM','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2506,NULL,'LEVOSALBUTAMOL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2514,NULL,'CISPLATIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2518,NULL,'NORADRENALINE ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2519,NULL,'LEVOFLOXACIN INJ...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2525,NULL,'TEICOPLANIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2531,NULL,'VITAMIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2534,NULL,'FOSFOMYCIN TROMETAMOL 3GM','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2536,NULL,'LEVALBUTEROL HYDRO 1.25MG &BUDESONIDE 0.5MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2544,NULL,'IBUPRUFEN 100+PARA-162.5','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2550,NULL,'MONTELUKAST SODIUM 4+LEVOCETIRIZINE DIHCL2.5 MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2562,NULL,'PROPOFOL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2564,NULL,'SODIUM BICARBONATE TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2587,NULL,'ETORICOXIB 60 MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2589,NULL,'PREGABALIN 75MG AND NORTRIPTYLINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2592,NULL,'SUCRALFATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2644,NULL,'FOLIC ACID & METHYLCOBALAMIN TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2646,NULL,'FOLIC ACID TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2649,NULL,'FERROUS FUMARATE,FOLIC ACID & ZINC SULPHATE TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2652,NULL,'TRANEXAMIC 500 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2653,NULL,'FRUSEMIDE 20MG+SPIRONOLACTONE 50MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2655,NULL,'CYPROPHEPTAINE HCL 2 MG+TRICHOLINE CITRATE 55 MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2666,NULL,'KETOCONAZOLE & ZINC PYRITHIONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2672,NULL,'CLOTRIMAZOL,BECLOMETHASON','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2673,NULL,'PERMETHRIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2728,NULL,'ANTIOXIDANT - MULTIVITAMINS-MULTIMINERALS-METHYCOBALAMIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2740,NULL,'NIMESULIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2742,NULL,'OMEPRAZOLE & DOMPERIDONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2750,NULL,'RACECADOTRIL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2754,NULL,'RIFAXIMIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2759,NULL,'VITAMIN E','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2773,NULL,'SACCHAROMYCES BOULAEDII','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2779,NULL,'POTASSIUM CITRATE & CITRIC ACID','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2783,NULL,'ACETAMINOPHEN 100 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2815,NULL,'DIAZEPAM 5 MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2817,NULL,'PARACETAMOL 500MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2818,NULL,'COLLOIDAL~IRON~LYSINE~FOLIC ACID~VITA B12','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2831,NULL,'CHLORHEXIDINE GLUCONATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2839,NULL,'PYRIDOXINE SR 100MG AND FOLIC ACID 5MG TABS','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2840,NULL,'PYRIDOXINE SR 100MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2859,NULL,'PART-1 VITA C 150MG PART B VIT B12 2500MCG,FOLIC ACID 0.7MG,NIACINAMIDE 12MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2901,NULL,'CALCIUM 500MG+VITAMIN D3 500IU..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2904,NULL,'CALCIUM 500MG WITH VITAMIN D3 250IU & MINERALS TABS','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2921,NULL,'DULAGLUTIDE 1.5MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2960,NULL,'DEFLAZACORT 12 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2969,NULL,'PREGABALIN75+METHYLCOBALAMIN750MCG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2977,NULL,'IRON +FOLIC ACID','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2982,NULL,'GLYCERYL TRINITRATE 2.6MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,2996,NULL,'IBANDRONIC','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3057,NULL,'RABEPRAZOLE 20 & LEVOSULPRIDE SR 75','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3072,NULL,'ETAMSYLATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3087,NULL,'RABIES VACCINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3092,NULL,'FERRIC CARBOXYMALTOSE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3097,NULL,'MILK OF MAGNESIA WITH LIQUID PARAFFIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3103,NULL,'BETAMETHASON 0.5 MG ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3114,NULL,'FERROUS ASCORBATE+FOLIC ACID+ZINC','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3120,NULL,'MECOBALAMIN 1000MCG+PYRIDOXIN 100MG+NICOTINAMIDE 100MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3121,NULL,'B COMPLE+VITA 12','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3123,NULL,'B COMPLEX +VITAMIN C','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3124,NULL,'MULTIVITAMIN & CHROMIUM & ZINC & SELENIUM','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3130,NULL,'SODIUM CARBOXYMETHYL CELLULOSE ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3160,NULL,'CALCIUM 500MG WITH VITAMIN D3 250IU','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3163,NULL,'ESCITALOPRAM 5+CLONAZEPAM 0.5 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3178,NULL,'NEBIVOLOL 10 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3208,NULL,'BRAIDED SILK BLACK','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3209,NULL,'MONOFILAMENT POLIGLECAPRONE25','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3229,NULL,'CHLORAMPHENICOL~BECLOMETHASONE~CLOTRIMAZOLE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3232,NULL,'FOLIC ACID+ CYANOCOBALAMIN+ NICOTINAMIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3254,NULL,'ACETAZOLAMIDE 250 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3260,NULL,'XYLOMETAZOLINE+SORBITOL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3291,NULL,'POLYETHYLENE GLYCOL17G','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3305,NULL,'SUCRALFATE 500+OXETACAIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3336,NULL,'FRUSEMIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3344,NULL,'OXETACAINE - ALUMINIUM HYDROXIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3355,NULL,'HYDROCORTISONE SODIUM SUCCINATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3357,NULL,'ATRACURIUM ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3358,NULL,'FLUTICASONE NASAL SPRAY.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3362,NULL,'AMOXYCILLIN 400+ POTASSIUM CLAVULANATE 57 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3367,NULL,'ACETAMINOPHEN 240 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3376,NULL,'DIPHTHERIA,TETANUS AND PERTUSSIS','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3377,NULL,'HUMAN PAPILLOMAVIRUS (R DNA PH EUR)','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3414,NULL,'DIGOXIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3416,NULL,'MEDROXYPROGESTERONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3417,NULL,'NEOMYCIN +POLYMYXIN+BACITRACIN ZINC','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3436,NULL,'CLOBETASOL PROPIONATE & MICONAZOLE NITRATE CREAM.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3440,NULL,'NEOMYCIN AND POLYMYXIN B SULFATES AND BACITRACIN ZINC OINTMENT.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3442,NULL,'MUPIROCIN CREAM.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3467,NULL,'PALONOSETRON','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3489,NULL,'HALOBETASOL PROPIONATE  0.05%','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3513,NULL,'KETOCONAZOLE AND ZINC PYRITHIONE SHAMPOO.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3554,NULL,'DISODIUM HYDROGEN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3596,NULL,'BENZOCAINE ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3609,NULL,'PARACETAMOL 500 + DICYCLOMINE 20 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3611,NULL,'PARA500MG+CPM 2MG+PHENYLEPH 10MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3635,NULL,'HYDROXYPROPYL METHYLCELLULOSE 2 % ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3637,NULL,'FLUOXETINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3657,NULL,'ASPIRIN 25MG+DIPYRIDAMOLE200','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3773,NULL,'GLYCOPYRROLATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3793,NULL,'LEVODOPA100+CARBIDOPA25','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3835,NULL,'NAPROXEN250+DOMPERIDONE10','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3836,NULL,'NAPROXEN500+DOMPERIDONE10','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3837,NULL,'NAPROXEN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3874,NULL,'PROPRANOLO 40+FLUNARIZIN 5','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3898,NULL,'SERTRALINE 25 MG ..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3905,NULL,'CINNARIZINE 20+DIMENHYDRINATE 40 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3941,NULL,'DESVENLAFAXINE ER 50 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,3979,NULL,'LORAZEPAM TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4001,NULL,'MIDAZOLAM','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4002,NULL,'CALCIUM POLYSTYRENE SULPHONATE POWDER.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4027,NULL,'METOCLOPRAMIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4035,NULL,'CHLORTHALIDONE 12.5+OLMESARTAN 40 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4041,NULL,'HYDROXYCHLOROQUINE 200 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4045,NULL,'LEFLUNOMIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4051,NULL,'PRIMAQUINE 15MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4055,NULL,'LOSARTAN +HYDROCHLOROTHIAZIDE TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4067,NULL,'NIMESULIDE TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4068,NULL,'NIMESULIDE & PARACETAMOL TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4079,NULL,'MAGALDRATE 400 +SIMETHICONE 20 ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4080,NULL,'INDOMETHACIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4087,NULL,'METFORMIN 500+GLIPIZIDE 5 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4100,NULL,'LOPARAMIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4104,NULL,'RISPERIDONE ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4105,NULL,'TOPIRAMATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4116,NULL,'HAEMOCOAGULASE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4122,NULL,'GLIMEPIRIDE 2+METFORMIN 500 MG+VOGLIBOSE 0.2 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4135,NULL,'METHOCARBAMOL 350+PARACE 250','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4140,NULL,'PIRACETAM 500 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4167,NULL,'CLOBETASOL PROPIONATE 0.05%','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4190,NULL,'MAGNESIUM SULPHATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4191,NULL,'POTASSIUM CHLORIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4239,NULL,'LIQ PARAFFIN+MILK OF MAGNESIA','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4247,NULL,'ETHAMBUTOL 800','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4249,NULL,'GLIMEPIRIDE 1+METFORMIN 500 MG+VOGLIBOSE 0.2 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4269,NULL,'RIFAMP.450+ISONIA.300+ETHAMBU800','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4270,NULL,'RIFAMP.450+ISONIA.300+PYRAZIN750+ETHAMBU800','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4272,NULL,'RIFAMP 150+ISONIA 75+ETHAMBU 275','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4273,NULL,'RIFAMP 150+ISONIA 75+PYRAZIN 400+ETHAMBU 275','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4305,NULL,'ISOSORBIDE DINITRATE & HYDRELAZINE HYDROCHLORIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4313,NULL,'ISONIAZIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4321,NULL,'MECOBALA+ALPHALIPO+FOLIC+PYRIDOXIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4334,NULL,'PYRAZINAMIDE 750 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4371,NULL,'PYRIDOXINE+CYANOCOBALAMIN+RIBOFLAVINE+NICOTINAMIDE+D PANTHENOL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4486,NULL,'MULTIVITAMIN & MULTIMINRAL..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4499,NULL,'TROXERUTIN+CAL DOBESILATE+ZINC+PHENYLEPHRINE+LIGNOCAINE+HYDROCORTISONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4502,NULL,'HEPARIN SODIUM & BENZYL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4513,NULL,'HYDROXYZINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4518,NULL,'IVERMECTIN +ALBENDAZOLE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4528,NULL,'CALCITRIOL0.25 CALCIUM 500+ZINC 7.5','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4534,NULL,'CLOPIDOGREL+ASPIRIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4541,NULL,'DICLOFENAC 75 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4558,NULL,'DOMPERIDONE+OMEPRAZOLE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4605,NULL,'DIASTASE, PRPSIN WITH SIMETHICONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4606,NULL,'CALCIUM PHOSPHORUS,MAGNESIUM,ZINC,VIT-D3','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4631,NULL,'AMITRIPTYLINE & CHLORDIAZEPOXIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4658,NULL,'LEVOCETRIZINE 5MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4674,NULL,'THEOPHYLLINE CR','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4706,NULL,'PNEUMOCOCCAL VACCINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4745,NULL,'CLONIDINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4746,NULL,'EPHEDRINE ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4747,NULL,'LIGNOCAINE & ADRENALINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4748,NULL,'SUCCINYLCHOLINE CHLORIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4782,NULL,'METHYLERGOMETRINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4855,NULL,'CALAMINE & ZINC OXID..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4870,NULL,'DISODIUM HYDROGEN CITRATE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4943,NULL,'ANTI INFAMATORY ANALGESIC  ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4992,NULL,'METAXALONE400+DICLOFENAC POTAS50','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,4998,NULL,'ESOMEPRAZOLE20+DOMPERIDONE SR30','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5063,NULL,'ACETYLSALICYLIC ACID I.P.,CALCIUM CARBONATE I.P.,ANHYDROUS CITRIC ACID I.P.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5089,NULL,'ERYTHROPOIETIN INJ.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5107,NULL,'SPIRONOLACTONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5137,NULL,'VASOPRESSIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5144,NULL,'FUROSEMIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5148,NULL,'PHYTOMENADIONE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5151,NULL,'GLYCERYL TRINITRATE 6.4MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5152,NULL,'POLYMYXIN B SULPHATE INJ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5158,NULL,'DIPTHERIA,TT,PERTUSSIS,INFLUENZA TYPE B VACCINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5164,NULL,'FRAMYCETIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5165,NULL,'ADENOSINE...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5167,NULL,'PHENIRAMINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5171,NULL,'INSULIN GLARGINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5175,NULL,'FEXOFENADINE HYDROCHLORIDE TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5178,NULL,'IBUPROFEN AND PARACETAMOL TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5182,NULL,'EVENING PRIMROSE OIL','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5194,NULL,'MICRONIZED PURIFIED FLAVONOID FRACTION TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5196,NULL,'TRIMETAZIDINE TABS.,','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5209,NULL,'MESSELS MUMS RUBELLA VACCINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5210,NULL,'DPT- DIPTHERIA,TT,PERTUSSIS,VACCINE(ADSORBED),B PERTUSSIS','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5213,NULL,'DEXTROS','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5216,NULL,'METHYCOBALAMIN 1500 +FOLIC ACID 100+PYRIDOXINE 10+ALPHA LIPOIC 100','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5217,NULL,'HYALURONIDASE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5223,NULL,'DOXYLAMIN+PYRIDOXIN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5228,NULL,'FERROUS ASCORBATE 100 +FOLIC ACID 1.5 MG+ZINC SULFATE 22.5','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5260,NULL,'MELOXICAM','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5289,NULL,'PROPRANOLO 20MG+FLUNARIZINE 5MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5290,NULL,'PROPRANOLOL ER 40 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5320,NULL,'METAXALONE MR','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5360,NULL,'MONTELUKAST 10MG+DESLORATIDIN 5MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5373,NULL,'CLARITHROMYCIN500+PANTOPR40+AMOXICI750','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5376,NULL,'PILOCARPINE 5MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5387,NULL,'METOPROLOL ER25+RAMPRIL5','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5413,'CR','Levodopa 200+carbidopa 50','Y','thims','2019-01-08 11:10:29','vikram','2019-08-21 17:18:44'),(0,5423,NULL,'LIVE FREEZE LACTIC ACID BACTERIA AND BIFIDOBACTERIA','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5461,NULL,'TRYPAN BLUE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5476,NULL,'CLINIDIUM 2.5MG+CHLORDIAZEPOXIDE 5MG+DICYCLOMINE 10MG+RABEPRAZOLE 10MG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5490,NULL,'KETAMINE...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5496,NULL,'PREGABALINSR75+METHYLCOBALAMIN1500MCG','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5509,NULL,'ESCITALOPRAM 10+ETIZOLAM 0.5 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5520,NULL,'ATORVASTATIN 20MG+ASPIRIN 75','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5549,NULL,'CLOBETASOL-NEOMYCIN-CLOTRIMAZOLE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5552,NULL,'ACYCLOVIR','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5559,NULL,'DESVENLAFAXINE 100 MG..','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5570,NULL,'DOBUTAMINE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5586,NULL,'VALETHAMATE BROMIDE','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5606,NULL,'BISOPROLOL 5+HYDROCHLOR12.5','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5613,NULL,'LACTIC ACID BACILLUS','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5636,NULL,'PARACETAMOL 500+ CAFFEINE 30 ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5637,NULL,'CALCIUM WITH VITAMIN D3 TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5639,NULL,'CLOTRIMAZOL 1%...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5641,NULL,'DICLOFENAC SODIUM,PARACETAMOL & CHLORZOXAZOME TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5642,NULL,'SLOW DICLOFENAC SR TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5646,NULL,'PHENYLEPHRINE HCL,CHLORPHENIRAMINE MALEATE,CAFFEINE A.& PARACETAMOL TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5647,NULL,'DEXCHLORPHENIRAMINE MALEATE SR TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5648,NULL,'FOLIC ACID,RIBOFLAVINE & NIACINAMIDE TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5649,NULL,'FOLIC ACID,RIBOFLAVIN & NIACINAMIDE WITH LACTIC ACID BACILLUS SPORES TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5651,NULL,'MECOBALAMIN 1500...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5652,NULL,'METOPROLOL SUCCINATE ER & AMLODIPINE BESYLATE TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5653,NULL,'NIMESULIDE & TIZANIDINE TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5654,NULL,'OFLOXACIN TABS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5655,NULL,'RABEPRAZOLE SODIUM CAPS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5656,NULL,'RABEPRAZOLE SODIUM ER & DOMPERIDONE SR CAPS...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5658,NULL,'ELEMENTAL IRON 100+FOLIC ACID 1.5+ELEMENTAL ZINC 22.5...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5667,NULL,'ACETYLSALICYLIC 75 MG...','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5686,NULL,'VARICELLA','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5723,NULL,'POVIDONE -IODINE 10 % ','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5730,NULL,'DICYCLOMINE, TRAMADOL HCL & ACETAMINOPHEN','Y','thims','2019-01-08 11:10:29',NULL,NULL),(0,5745,'DIPTHERIA,','Diptheria,tt,pert.,hepa.b','Y','kinnari','2019-01-24 10:20:17',NULL,NULL),(0,5746,'HYOSCYAMIN','Hyoscyamine Sulphate','Y','kinnari','2019-02-01 12:40:11',NULL,NULL),(0,5747,'AMOXYCILLI','Amoxycillin + P. Clavulan','Y','kinnari','2019-03-14 09:21:11',NULL,NULL),(0,5748,'PRALIDOXIM','Pralidoxime Iodide ','Y','arpit','2019-03-22 11:59:13',NULL,NULL),(0,5750,'5','Olanzapine ','Y','harshad','2019-05-17 23:13:38',NULL,NULL),(0,5751,'200','Faropenem Tab','Y','harshad','2019-05-17 23:42:01',NULL,NULL),(0,5753,'FLR','Flurocortisone','Y','divyang','2019-06-10 16:04:23',NULL,NULL),(0,5754,'GRN','Granisetron 1mg','Y','divyang','2019-06-12 13:17:04',NULL,NULL),(0,5755,'PHO','Phenobarbitone','Y','divyang','2019-06-13 14:11:22',NULL,NULL),(0,5756,'TIO','Tiotropium','Y','divyang','2019-06-13 16:25:43',NULL,NULL),(0,5757,'RAM','Ramipril','Y','divyang','2019-06-14 10:58:01',NULL,NULL),(0,5758,'PYR','Pyrizenamide 500 Mg','Y','divyang','2019-06-14 11:28:19',NULL,NULL),(0,5759,'AMX','Amoxycilin 250','Y','divyang','2019-06-15 14:09:06',NULL,NULL),(0,5760,'RCN','Rifampicin 450+isoniazid ','Y','divyang','2019-06-15 15:14:21',NULL,NULL),(0,5761,'ART','Artemether+lumefentrine','Y','divyang','2019-06-15 15:34:54',NULL,NULL),(0,5762,'MET','Methotrexate 2.5 Mg','Y','divyang','2019-06-15 17:05:04',NULL,NULL),(0,5763,'TOL','Tolvapton','Y','divyang','2019-06-17 10:22:40',NULL,NULL),(0,5764,'THO','Thiopental','Y','divyang','2019-06-18 11:31:02',NULL,NULL),(0,5765,'KCL','Potasium &magnesium Citra','Y','divyang','2019-06-18 16:55:32',NULL,NULL),(0,5766,'NTZ','Norfloxacin +tinidazole','Y','divyang','2019-06-18 17:42:13',NULL,NULL),(0,5767,'DES','Desonide .05%','Y','divyang','2019-06-20 12:52:11',NULL,NULL),(0,5768,'KTR','Ketorolac','Y','divyang','2019-06-20 18:02:37',NULL,NULL),(0,5769,'TOLPERISON','Tolperisone ','Y','sagar','2019-06-20 23:16:13',NULL,NULL),(0,5770,'ETHYLMORPH','Ethylmorphine','Y','sagar','2019-06-20 23:19:34',NULL,NULL),(0,5771,'LC','Lacosamide','Y','divyang','2019-06-22 14:16:20',NULL,NULL),(0,5772,'BC','Baclofen','Y','divyang','2019-06-22 18:44:00',NULL,NULL),(0,5773,'STREPTOKIN','Streptokinase','Y','dhavalp','2019-06-22 20:13:54',NULL,NULL),(0,5774,'ZN','Zinc','Y','divyang','2019-06-25 10:49:56',NULL,NULL),(0,5775,'ZP','Ziprasidone','Y','divyang','2019-06-25 10:55:22',NULL,NULL),(0,5776,'ARM','Armodafinil','Y','divyang','2019-06-26 11:08:24',NULL,NULL),(0,5777,'CBR','Cerebro Protien','Y','divyang','2019-06-26 12:35:57',NULL,NULL),(0,5778,'RC','Rifampicin 600+isoniazid ','Y','divyang','2019-06-27 12:32:32',NULL,NULL),(0,5779,'DON','Donepezine','Y','divyang','2019-06-27 12:41:57',NULL,NULL),(0,5780,'DO','Donepezil','Y','divyang','2019-06-27 12:46:19',NULL,NULL),(0,5781,'OX','Oxcarbazepine','Y','divyang','2019-06-27 13:06:48',NULL,NULL),(0,5782,'MP','Glimepiride+metformin+pio','Y','divyang','2019-06-28 15:25:12',NULL,NULL),(0,5783,'SUL','Sultamicilline','Y','divyang','2019-06-28 16:44:41',NULL,NULL),(0,5784,'TRI','Triclofos','Y','divyang','2019-06-29 11:19:45',NULL,NULL),(0,5785,'CLO','Clomiphene','Y','divyang','2019-06-30 11:06:40',NULL,NULL),(0,5786,'CON','Desogestrel+estradiol','Y','divyang','2019-06-30 11:14:37',NULL,NULL),(0,5787,'DN','Dinoprostone','Y','divyang','2019-06-30 11:32:32',NULL,NULL),(0,5788,'OFF','Ofloxacin+flavoxate','Y','divyang','2019-06-30 12:41:43',NULL,NULL),(0,5789,'TR','Trypsin+bromelin+dicl','Y','divyang','2019-06-30 12:44:45',NULL,NULL),(0,5790,'MEB','Mebeverine+chlordiazopoxi','Y','divyang','2019-06-30 12:48:11',NULL,NULL),(0,5791,'BU','Buclizine','Y','divyang','2019-06-30 12:51:20',NULL,NULL),(0,5792,'MI','Misoprostol','Y','divyang','2019-06-30 13:09:05',NULL,NULL),(0,5793,'LOR','Loratidine','Y','divyang','2019-07-02 12:34:16',NULL,NULL),(0,5794,'SA','S-amlodipin','Y','divyang','2019-07-02 13:04:55',NULL,NULL),(0,5795,'PR','Prezocin','Y','divyang','2019-07-04 18:19:32',NULL,NULL),(0,5796,'ENZ','Diastse+pepsin','Y','divyang','2019-07-05 12:48:55',NULL,NULL),(0,5797,'DU','Duoxetin','Y','divyang','2019-07-05 13:07:45',NULL,NULL),(0,5798,'AMB','Ambroxol 15','Y','divyang','2019-07-05 13:12:17',NULL,NULL),(0,5799,'DOX','Doxycyclin','Y','divyang','2019-07-06 11:29:39',NULL,NULL),(0,5800,'AT','Atenolol 100','Y','divyang','2019-07-06 17:11:26',NULL,NULL),(0,5801,'LAM','Lamotrigine','Y','divyang','2019-07-07 10:37:07',NULL,NULL),(0,5802,'SER','Sertraline 50','Y','divyang','2019-07-07 10:45:43',NULL,NULL),(0,5803,'SERT','Sertraline 100','Y','divyang','2019-07-07 10:48:02',NULL,NULL),(0,5804,'ME','Methoxalan','Y','divyang','2019-07-09 17:31:52',NULL,NULL),(0,5805,'EES','Etizolam+escitalopram','Y','divyang','2019-07-09 17:40:59',NULL,NULL),(0,5806,'NIF','Nifopam','Y','divyang','2019-07-10 18:02:34',NULL,NULL),(0,5807,'ENO','Enoxaparine 20mg','Y','divyang','2019-07-10 18:07:41',NULL,NULL),(0,5808,'COL','Colistimithate','Y','divyang','2019-07-10 18:18:52',NULL,NULL),(0,5809,'EMP','Empagliflozine','Y','divyang','2019-07-12 15:52:59',NULL,NULL),(0,5810,'ROX','Roxithromycin','Y','divyang','2019-07-14 12:49:45',NULL,NULL),(0,5811,'TIG','Tigicyclin','Y','divyang','2019-07-15 13:28:06',NULL,NULL),(0,5812,'BRM','Bromocriptin','Y','divyang','2019-07-15 18:05:41',NULL,NULL),(0,5813,'DOR','Dorzalamide','Y','divyang','2019-07-16 13:10:46',NULL,NULL),(0,5814,'HYD','Hydrochlorthiazide','Y','divyang','2019-07-17 12:07:53',NULL,NULL),(0,5815,'BAZ','Clobazam 5 Mg','Y','divyang','2019-07-17 13:04:22',NULL,NULL),(0,5816,'BMD','Bisaprolol+amlodipine','Y','divyang','2019-07-17 13:29:16',NULL,NULL),(0,5817,'BIS','Bisaprolol','Y','divyang','2019-07-17 13:33:18',NULL,NULL),(0,5818,'200+28.5 M','Amoxicillin + Potassium ','Y','sagar','2019-07-18 00:56:00',NULL,NULL),(0,5819,'CIS','Cisatracurium Besylate','Y','divyang','2019-07-20 15:00:54',NULL,NULL),(0,5820,'MOD','Modafinil','Y','divyang','2019-07-20 16:26:19',NULL,NULL),(0,5821,'25 MG','Bethanechol Chloride Tab ','Y','sagar','2019-07-20 23:24:50',NULL,NULL),(0,5822,'1%','Clotrimazole +beclomethas','Y','sagar','2019-07-23 00:07:54',NULL,NULL),(0,5823,'200MG','Aceclofenac Cr','Y','sagar','2019-07-23 00:11:45',NULL,NULL),(0,5824,'40+10','Propranolo 40 Flunarizine','Y','sagar','2019-07-23 00:35:22',NULL,NULL),(0,5825,'4MG','Zoledronic Acid 4mg','Y','sagar','2019-07-23 00:37:58',NULL,NULL),(0,5826,'MAN','Vitamin K','Y','divyang','2019-07-23 13:29:56',NULL,NULL),(0,5827,'FEB','Febuxostat 80','Y','divyang','2019-07-25 14:16:49',NULL,NULL),(0,5828,'200 MG','Carbamazepine','Y','sagar','2019-07-26 23:09:08',NULL,NULL),(0,5829,'LIPOIC ACI','Mecobalamin Alpha ','Y','sagar','2019-07-26 23:15:33',NULL,NULL),(0,5830,'ORT','L Ornithin','Y','divyang','2019-07-27 18:06:27',NULL,NULL),(0,5831,'20MG ','Olmesartan Medoxomil','Y','sagar','2019-07-29 23:36:02',NULL,NULL),(0,5832,' RASAGILIN','Rasagiline ','Y','sagar','2019-07-29 23:42:26',NULL,NULL),(0,5833,'FLAVOXATE','Flavoxate','Y','sagar','2019-07-29 23:48:19',NULL,NULL),(0,5834,'HEP','Hepatitis B','Y','divyang','2019-07-30 11:12:06',NULL,NULL),(0,5835,'MIR','Mirabegron','Y','divyang','2019-07-30 16:49:19',NULL,NULL),(0,5836,'OLM','Olmisartan+amlodipin','Y','divyang','2019-07-30 17:19:20',NULL,NULL),(0,5837,'CZO','Clozapine 50','Y','divyang','2019-07-30 17:24:48',NULL,NULL),(0,5838,'CZT','Clozapine 25','Y','divyang','2019-07-30 17:27:40',NULL,NULL),(0,5839,'10MG','Menadione Sodi Bisulphite','Y','sagar','2019-07-31 20:32:45',NULL,NULL),(0,5840,'80+50','Drotaverin + Diclofenac ','Y','sagar','2019-07-31 20:53:33',NULL,NULL),(0,5841,'EDA','Edaravone','Y','divyang','2019-08-03 18:02:36',NULL,NULL),(0,5842,'0.75 GM ','Streptomycin Inj ','Y','sagar','2019-08-03 22:33:01',NULL,NULL),(0,5843,'5MCG','Ramosetron ','Y','sagar','2019-08-03 23:57:02',NULL,NULL),(0,5844,'NIC','Nicorandin','Y','divyang','2019-08-07 11:19:47',NULL,NULL),(0,5845,'LIV','Liver Enzyme','Y','divyang','2019-08-12 15:49:28',NULL,NULL),(0,5846,'','Losartan 50+amlodipine5','Y','vikram','2019-08-13 12:12:55',NULL,NULL),(0,5847,'','Micafungin','Y','vikram','2019-08-13 14:27:38',NULL,NULL),(0,5848,'PHENYLEPHR','Cetirizine Dihydrochiorid','Y','sagar','2019-08-13 20:28:52',NULL,NULL),(0,5849,'15 MG ','Rivaroxaban Tab ','Y','sagar','2019-08-14 20:54:18',NULL,NULL),(0,5850,'.','Caspofungin','Y','mitesh','2019-08-15 15:00:17',NULL,NULL),(0,5851,'CREAM','Clobetasol & Gentamicin ','Y','sagar','2019-08-17 20:37:55',NULL,NULL),(0,5852,'','Alfuzosin','Y','priya','2019-08-18 16:52:08',NULL,NULL),(0,5853,'','Lorazepam 1 Mg','Y','priya','2019-08-18 17:05:18',NULL,NULL),(0,5854,'','Amlodipin9(5mg) -hydroclo','Y','priya','2019-08-18 17:07:14',NULL,NULL),(0,5855,'','Amlodipin(5mg)-hydroclort','Y','priya','2019-08-18 17:08:56',NULL,NULL),(0,5856,'','Riboflavin,folic Acid','Y','priya','2019-08-18 17:12:50',NULL,NULL),(0,5857,'','Betamithasone ','Y','priya','2019-08-18 17:15:47',NULL,NULL),(0,5858,'','Metoprolol Tartrate','Y','priya','2019-08-18 17:19:09',NULL,NULL),(0,5859,'','Phosphatidylserin,huperzi','Y','priya','2019-08-18 17:24:42',NULL,NULL),(0,5860,'','2,4,-dichlorobenzyl Alcoh','Y','priya','2019-08-18 17:33:47',NULL,NULL),(0,5861,'','Aspirin(150mg) Clopidogre','Y','priya','2019-08-18 17:43:22',NULL,NULL),(0,5862,'','Cepodoxime Proxetil','Y','priya','2019-08-18 17:46:56',NULL,NULL),(0,5863,'','Duloxetin','Y','priya','2019-08-18 17:56:28',NULL,NULL),(0,5864,'','Atorvastatin,clopidogrel,','Y','priya','2019-08-18 18:13:49',NULL,NULL),(0,5865,'','Sodium Valproate','Y','priya','2019-08-18 18:29:42',NULL,NULL),(0,5866,'','Etodolac','Y','priya','2019-08-18 18:33:52',NULL,NULL),(0,5867,'','Biotin,aminoacid,vitamins','Y','priya','2019-08-18 18:38:28',NULL,NULL),(0,5868,'','Probiotic Culture Concent','Y','priya','2019-08-18 18:41:42',NULL,NULL),(0,5869,'','Methotrexate 15','Y','priya','2019-08-18 18:50:19',NULL,NULL),(0,5870,'','Antioxidant,multivitamins','Y','priya','2019-08-18 19:09:27',NULL,NULL),(0,5871,'','Gabapentin(100)+nortripty','Y','priya','2019-08-18 19:12:45',NULL,NULL),(0,5872,'','Itopride Hydrochloride','Y','priya','2019-08-18 19:15:21',NULL,NULL),(0,5873,'','Glipizide, Metformin','Y','priya','2019-08-18 19:30:12',NULL,NULL),(0,5874,'','Calcium Acetate','Y','priya','2019-08-18 19:40:10',NULL,NULL),(0,5875,'','Chloroquine(500)','Y','priya','2019-08-18 19:41:57',NULL,NULL),(0,5876,'TAB','Tetrabenazine Tab','Y','sagar','2019-08-19 22:29:47',NULL,NULL),(0,5877,'RELEASE TA','Divalproex Extended','Y','sagar','2019-08-19 22:34:24',NULL,NULL),(0,5878,'8.5GM','L-arginine Granules','Y','sagar','2019-08-22 23:51:01',NULL,NULL),(0,5879,'500+25+10','Mefenamic+pamabron+dicycl','Y','sagar','2019-08-22 23:53:48',NULL,NULL),(0,5880,'0.5/0.25','Cabergoline Tab','Y','sagar','2019-08-23 22:30:24',NULL,NULL),(0,5881,'2.5 MG','Letrozole ','Y','sagar','2019-08-23 22:42:54',NULL,NULL),(0,5882,'150+60 MG ','Roxithromycin+ Ambroxol','Y','sagar','2019-08-23 22:47:20',NULL,NULL),(0,5883,'METHYLCOBA','Methylcobalamin/mecobalam','Y','sagar','2019-08-26 23:02:14',NULL,NULL),(0,5884,' ARTESUNAT','Artesunate+sulfadoxine+py','Y','sagar','2019-08-26 23:20:55',NULL,NULL),(0,5885,'....','Diclofenac Diethylamine','Y','mitesh','2019-08-28 00:11:03',NULL,NULL),(0,5886,'CAPSULE','Dabigatran Etexilate Mesi','Y','mitesh','2019-08-28 00:14:49',NULL,NULL),(0,5887,'0.015','Fluticasone ','Y','sagar','2019-08-28 22:49:49',NULL,NULL),(0,5888,'2.5MG /0.5','Fondaparinux Sodium Inj ','Y','sagar','2019-08-28 23:05:45',NULL,NULL),(0,5889,'CAR','Carboprost 125','Y','divyang','2019-08-29 17:19:33',NULL,NULL),(0,5890,'0.5','Etizolam','Y','sagar','2019-08-29 23:36:58',NULL,NULL),(0,5891,'.25MG','Haloperidol 0.25','Y','sagar','2019-08-29 23:44:49',NULL,NULL),(0,5892,'10+5','Dextros 10% + Normalsalai','Y','sagar','2019-08-30 00:00:08',NULL,NULL),(0,5893,'IPR','Ipratopium','Y','divyang','2019-08-30 12:56:33',NULL,NULL),(0,5894,'0.25MG TAN','Pramipexole 0.25mg Tab','Y','sagar','2019-08-30 22:48:54',NULL,NULL),(0,5895,'BACITRACIN','Polymyxin B +neomycin+ Hy','Y','sagar','2019-08-30 23:00:42',NULL,NULL),(0,5896,'30MG ','Diltiazem (30mg)','Y','sagar','2019-08-30 23:04:44',NULL,NULL),(0,5897,'DIL','Diltiazem 60','Y','divyang','2019-08-31 12:50:35',NULL,NULL),(0,5898,'DIIL','Diltiazem Sr','Y','divyang','2019-08-31 13:01:31',NULL,NULL),(0,5899,'DEL','Diltiazem 90','Y','divyang','2019-08-31 13:33:52',NULL,NULL),(0,5900,'DEEL','Diltiazem 120','Y','divyang','2019-08-31 13:36:10',NULL,NULL),(0,5901,'RIS','Risdronate','Y','divyang','2019-09-01 13:27:42',NULL,NULL),(0,5902,'PRI','Primidone 25','Y','divyang','2019-09-01 13:38:53',NULL,NULL),(0,5903,'DOB','Calcium Dobesilate','Y','divyang','2019-09-01 13:43:00',NULL,NULL),(0,5904,'LEU','Leucovarin','Y','divyang','2019-09-03 17:26:58',NULL,NULL),(0,5905,'FLU','5 Floro Uracil','Y','divyang','2019-09-03 17:37:18',NULL,NULL),(0,5906,'30MG INJ','Papaverine (30mg/ml)','Y','sagar','2019-09-04 00:23:57',NULL,NULL),(0,5907,'25MCG','Glycopyrrolate (25mcg)','Y','sagar','2019-09-04 00:28:47',NULL,NULL),(0,5908,'','Immunoglobulin','Y','vikram','2019-09-05 13:15:40',NULL,NULL),(0,5909,'4MG & 10MG','Vecuronium ','Y','sagar','2019-09-06 01:54:59',NULL,NULL),(0,5910,'EPL','Eplerenon 25','Y','divyang','2019-09-06 16:17:43',NULL,NULL),(0,5911,'ACT','Aceclofenac +thiocolchico','Y','divyang','2019-09-06 16:23:40',NULL,NULL),(0,5912,'PAP','Papyia Extract','Y','divyang','2019-09-06 16:27:12',NULL,NULL),(0,5913,'50MG','Nandrolone Decanoate (50m','Y','sagar','2019-09-06 22:56:44',NULL,NULL),(0,5914,'NAN','Nandrolone 25 Mg','Y','divyang','2019-09-07 11:07:46',NULL,NULL),(0,5915,'CAM','Camylofin','Y','divyang','2019-09-07 11:12:12',NULL,NULL),(0,5916,'GAB','Gabapantin','Y','divyang','2019-09-07 11:15:51',NULL,NULL),(0,5917,'VITAMIN D ','Cissus Qudrangularis,ccm ','Y','sagar','2019-09-08 00:46:38',NULL,NULL),(0,5918,'25/50/75','Dosulepin/dothiepin ','Y','sagar','2019-09-08 23:11:36',NULL,NULL),(0,5919,'500','Ranolazine (500mg)','Y','sagar','2019-09-10 01:03:18',NULL,NULL),(0,5920,'90','Ticagrelor (90mg)','Y','sagar','2019-09-10 01:06:03',NULL,NULL),(0,5921,'100/200','Modafinil (200mg)','Y','sagar','2019-09-12 01:20:57',NULL,NULL),(0,5922,'3MG','Rivastigmine (3mg)','Y','sagar','2019-09-12 01:22:23',NULL,NULL),(0,5923,'2%','Mupirocin (2% W/w)','Y','sagar','2019-09-12 01:47:21',NULL,NULL),(0,5924,'DOP','Donepezil+memntine','Y','divyang','2019-09-12 12:28:30',NULL,NULL),(0,5925,'ACE','Acenocoumarol 0.5','Y','divyang','2019-09-12 12:47:49',NULL,NULL),(0,5926,'ACCE','Acecoumarol 1 Mg','Y','divyang','2019-09-12 12:50:25',NULL,NULL),(0,5927,'ACCCE','Acenocoumarol 1mg','Y','divyang','2019-09-12 12:51:24',NULL,NULL),(0,5928,'ACN','Acenocoumarol','Y','divyang','2019-09-12 12:54:00',NULL,NULL),(0,5929,'PRD','Pyridoxin','Y','divyang','2019-09-13 14:12:25',NULL,NULL),(0,5930,'DONEPEZIL ','Donepezil (5mg) + Memanti','Y','sagar','2019-09-14 02:02:30',NULL,NULL),(0,5931,'5MG','Bisoprolol (5mg)','Y','sagar','2019-09-14 02:13:30',NULL,NULL),(0,5932,'0.06%','Estradiol (0.06% W/w)','Y','sagar','2019-09-14 02:15:58',NULL,NULL),(0,5933,'50','Amlodipine (5mg) + Metopr','Y','sagar','2019-09-15 00:34:47',NULL,NULL),(0,5934,'API','Apixaban 2.5','Y','divyang','2019-09-15 11:53:19',NULL,NULL),(0,5935,'URO','Urokinase','Y','divyang','2019-09-16 12:41:38',NULL,NULL),(0,5936,'MET 500','Glimepiride (3mg) + Metfo','Y','sagar','2019-09-17 03:34:31',NULL,NULL),(0,5937,'XCV','Isoxuprine','Y','divyang','2019-09-17 17:21:55',NULL,NULL),(0,5938,'TRA','Trastuzumab','Y','divyang','2019-09-18 12:46:12',NULL,NULL),(0,5939,'40/50','Telmisartan + Metoprolol ','Y','sagar','2019-09-19 04:52:38',NULL,NULL),(0,5940,'CAD','Camylophin +diclofenac','Y','divyang','2019-09-20 13:18:34',NULL,NULL),(0,5941,'TAL','Taldinafir','Y','divyang','2019-09-20 13:34:54',NULL,NULL),(0,5942,'PTH','Parathyroid','Y','divyang','2019-09-20 13:41:57',NULL,NULL),(0,5943,'OLB','Fluoxetin+olenzapine','Y','divyang','2019-09-22 14:03:16',NULL,NULL),(0,5944,'APT','Aceclo+para+thio','Y','divyang','2019-09-22 16:06:47',NULL,NULL),(0,5945,'100MG','Octreotide Inj','Y','SAGAR','2019-09-24 20:23:54',NULL,NULL),(0,5946,'POP','Propanalol+amitryptilin','Y','divyang','2019-09-25 17:02:25',NULL,NULL),(0,5947,'MS','Mesna','Y','divyang','2019-09-26 17:42:35',NULL,NULL),(0,5948,'300MG','Tobramycin (300mg)','Y','sagar','2019-09-28 07:39:29',NULL,NULL),(0,5949,'CIL','Cilostazol 100','Y','divyang','2019-09-28 16:53:29',NULL,NULL),(0,5950,'COP','Cilostazol 50','Y','divyang','2019-09-28 16:56:39',NULL,NULL),(0,5951,'VAS','Sacubitril24mg+valsartan26mg','Y','divyang','2019-09-28 17:02:25','vikram','2020-02-26 10:58:48'),(0,5952,'1 MG','Risperidone (1mg)','Y','sagar','2019-09-29 07:54:39',NULL,NULL),(0,5953,'NMB','L Methyl Folate','Y','divyang','2019-09-30 15:55:20',NULL,NULL),(0,5954,'PTX','Pentoxiphyllin','Y','divyang','2019-09-30 16:34:35',NULL,NULL),(0,5955,'10 MG ','Ramipril (5mg) + Atorvast','Y','sagar','2019-10-02 00:27:49',NULL,NULL),(0,5956,'100000','Trypsin Chymotrypsin (100','Y','sagar','2019-10-02 00:34:39',NULL,NULL),(0,5957,'TRAMADOL','Ketorolac (10mg) + Tramad','Y','sagar','2019-10-05 01:02:41',NULL,NULL),(0,5958,'2/4 MG','Tolterodine (2mg) (4mg)','Y','sagar','2019-10-05 01:06:53',NULL,NULL),(0,5959,'10/20 MG','Isoxsuprine (10mg)(20mg)','Y','sagar','2019-10-05 01:10:04',NULL,NULL),(0,5960,'6MG','Ivermectin (6mg)','Y','sagar','2019-10-05 23:06:39',NULL,NULL),(0,5961,'20MG INJ','Caffeine (20mg/ml)','Y','sagar','2019-10-05 23:17:42',NULL,NULL),(0,5962,'500+125','Cefuroxime + Clavulanic ','Y','sagar','2019-10-06 00:11:04',NULL,NULL),(0,5963,'125 MG','Meropenem (125mg)','Y','sagar','2019-10-06 00:14:24',NULL,NULL),(0,5964,'ALL','Meropenem Inj','Y','sagar','2019-10-06 00:16:18',NULL,NULL),(0,5965,'FRU','Fructose','Y','divyang','2019-10-09 18:20:09',NULL,NULL),(0,5966,'HPP','Hydroxyprogesterone 500mg','Y','divyang','2019-10-10 14:29:43',NULL,NULL),(0,5967,'440MG ','Trastuzumab (440mg)','Y','sagar','2019-10-10 23:14:22',NULL,NULL),(0,5968,'200.MG','Pirfenidone (200mg)','Y','sagar','2019-10-11 01:36:59',NULL,NULL),(0,5969,'250+500','Hydroxyprogesterone (250m','Y','sagar','2019-10-11 01:43:01',NULL,NULL),(0,5970,'DEC','Desvenlafaxine+clonazapam','Y','divyang','2019-10-11 16:58:07',NULL,NULL),(0,5971,'CLZ','Desvenlafaxine 100+clonaz','Y','divyang','2019-10-11 17:00:56',NULL,NULL),(0,5972,'MBU','Methyline Blue','Y','divyang','2019-10-12 11:19:29',NULL,NULL),(0,5973,'RIB','Risperidone+benzhexol','Y','divyang','2019-10-12 11:54:12',NULL,NULL),(0,5974,'LBV','L Carnitin','Y','divyang','2019-10-14 13:40:58',NULL,NULL),(0,5975,'MTY','Methotrexate 20mg','Y','divyang','2019-10-15 16:58:24',NULL,NULL),(0,5976,'RIBA','Ribapimide','Y','divyang','2019-10-15 17:24:13',NULL,NULL),(0,5977,'OXY','Oxytocin','Y','divyang','2019-10-15 18:03:38',NULL,NULL),(0,5978,'CAP','Progesteron 200 Mg','Y','vikram','2019-10-16 15:21:51',NULL,NULL),(0,5979,'TAB','Metoclopramide(10mg)','Y','vikram','2019-10-16 16:23:18',NULL,NULL),(0,5980,'CAP','Isoniazid','Y','vikram','2019-10-16 16:51:57',NULL,NULL),(0,5981,'TAB','Benfotiamine','Y','vikram','2019-10-16 17:33:43',NULL,NULL),(0,5982,'TAB','Ginkgo Biloba','Y','vikram','2019-10-16 17:34:49',NULL,NULL),(0,5983,'ETIZOLAM+P','Etizolam+propranolol','Y','vikram','2019-10-16 17:46:36',NULL,NULL),(0,5984,'SSR','Silver Sulfadiazine','Y','divyang','2019-10-17 12:19:21',NULL,NULL),(0,5985,'TAB','Nimodipine (30mg)','Y','vikram','2019-10-18 13:16:32',NULL,NULL),(0,5986,'TAB','Clarithromycin(500mg),esomeprazole(40mg),amoxicillin(750mg)','Y','vikram','2019-10-18 13:23:24',NULL,NULL),(0,5987,'TAB','Maltivitamin,maltimiral','Y','vikram','2019-10-18 13:29:24',NULL,NULL),(0,5988,'TAB','Moxifloxaci Hydrochloride','Y','vikram','2019-10-18 13:32:06',NULL,NULL),(0,5989,'TAB','Moxifloxacin + Hydroclorine','Y','vikram','2019-10-18 13:34:34',NULL,NULL),(0,5990,'TAB','Moxonidine','Y','vikram','2019-10-18 13:35:52',NULL,NULL),(0,5991,'TAB','Primaquine Phosphate','Y','vikram','2019-10-18 13:43:12',NULL,NULL),(0,5992,'','Amitriptyline(25mg)','Y','vikram','2019-10-18 13:53:01',NULL,NULL),(0,5993,'TAB','Amitriptyline(25mg)','Y','vikram','2019-10-18 13:53:42',NULL,NULL),(0,5994,'TAB','Cefixime(100mg)','Y','vikram','2019-10-18 14:37:14',NULL,NULL),(0,5995,'TAB','Cefixime(100mg)','Y','vikram','2019-10-18 14:41:21',NULL,NULL),(0,5996,'TAB','Cefixime & Clavulinic Acid (125mg)','Y','vikram','2019-10-18 14:45:04',NULL,NULL),(0,5997,'TAB','Cefpodoxime Proxetil','Y','vikram','2019-10-18 15:12:23',NULL,NULL),(0,5998,'TAB','Ambroxol(60mg)+loratadine(5mg)','Y','vikram','2019-10-18 15:17:32',NULL,NULL),(0,5999,'TAB','Domperidone(30mg)+rabeprazole(20mg)','Y','vikram','2019-10-18 15:26:13',NULL,NULL),(0,6000,'TAB','Tamsulosin(0.4mg)+dutasteride(0.5mg)','Y','vikram','2019-10-18 15:31:39',NULL,NULL),(0,6001,'85+500','Sumatriptan (85mg) + Naproxen (500mg)','Y','sagar','2019-10-23 05:04:29',NULL,NULL),(0,6002,'100','Thiamine(vitamin B1) (100mg)','Y','sagar','2019-10-23 05:07:17',NULL,NULL),(0,6003,'PHP','Cyclophosphamide','Y','divyang','2019-10-23 13:29:38',NULL,NULL),(0,6004,'RIF','Rifampicin 450mg','Y','divyang','2019-10-23 13:42:37',NULL,NULL),(0,6005,'2+500','Glimepiride (2mg) + Metformin (500mg)','Y','sagar','2019-10-24 22:39:59',NULL,NULL),(0,6006,'SHU','Sulfasalazine 500mg','Y','divyang','2019-11-04 17:46:41',NULL,NULL),(0,6007,'LUL','Luliconazole','Y','divyang','2019-11-06 08:19:56',NULL,NULL),(0,6008,'VER','Verapamil 40mghydrochloride','Y','divyang','2019-11-06 14:31:00','jignesh','2020-02-24 18:01:01'),(0,6009,'LACR','Lactoferrin+guanosine','Y','divyang','2019-11-06 14:37:38',NULL,NULL),(0,6010,'SWRT','Sertaconazole','Y','divyang','2019-11-11 14:15:17',NULL,NULL),(0,6011,'VTY','Voriconazole','Y','divyang','2019-11-11 14:31:19',NULL,NULL),(0,6012,'CLP','Clindamycin+adapelin','Y','divyang','2019-11-11 14:40:55',NULL,NULL),(0,6013,'GLY','Glycolic Acid','Y','divyang','2019-11-11 14:58:40',NULL,NULL),(0,6014,'FLO','Flupenthixol+melitracen','Y','divyang','2019-11-11 17:47:08',NULL,NULL),(0,6015,'RCF','Rifampicin 600+isoniazid 300','Y','divyang','2019-11-12 13:09:30',NULL,NULL),(0,6016,'SIL','Sildenafil','Y','divyang','2019-11-12 13:14:52',NULL,NULL),(0,6017,'CAN','Levocarnitine','Y','divyang','2019-11-13 10:52:52',NULL,NULL),(0,6018,'SOL','Solifenacine','Y','divyang','2019-11-14 10:42:39',NULL,NULL),(0,6019,'','Aminophyline','Y','vikram','2019-11-14 12:58:14',NULL,NULL),(0,6020,'','Fluconazole Inj','Y','vikram','2019-11-14 16:55:41',NULL,NULL),(0,6021,'','Gentamycin','Y','vikram','2019-11-14 17:00:09',NULL,NULL),(0,6022,'','Histamine+immunoglobuline ','Y','vikram','2019-11-14 17:32:27',NULL,NULL),(0,6023,'','Lidocain/lignocain 2%','Y','vikram','2019-11-14 17:38:41',NULL,NULL),(0,6024,'','Neostigmine','Y','vikram','2019-11-14 17:46:17',NULL,NULL),(0,6025,'','Methylprednisolone','Y','vikram','2019-11-14 17:47:59',NULL,NULL),(0,6026,'','Methylcobalamine 1500 Mcg','Y','vikram','2019-11-14 17:50:11',NULL,NULL),(0,6027,'','Ondansetron','Y','vikram','2019-11-14 17:52:20',NULL,NULL),(0,6028,'','Oxytocics + Prostaglandin','Y','vikram','2019-11-14 17:55:52',NULL,NULL),(0,6029,'','Haloperidol Decanoate','Y','vikram','2019-11-14 17:58:18',NULL,NULL),(0,6030,'','Tetanus Toxoid','Y','vikram','2019-11-14 18:00:44',NULL,NULL),(0,6031,'','Mephentermine','Y','vikram','2019-11-14 18:02:50',NULL,NULL),(0,6032,'','Adrenalin','Y','vikram','2019-11-14 18:18:48',NULL,NULL),(0,6033,'ROB','Diclo+para+methocarbamol','Y','divyang','2019-11-18 13:36:58',NULL,NULL),(0,6034,'MIN','Minoxidil 2%','Y','divyang','2019-11-18 13:45:31',NULL,NULL),(0,6035,'2.5','Prazosin (2.5mg)','Y','sagar','2019-11-18 20:49:57',NULL,NULL),(0,6036,'TGY','Tapentadol','Y','bhoomiba','2019-11-20 10:32:18',NULL,NULL),(0,6037,'FXG','Doxyfyllin+montelucast','Y','divyang','2019-11-20 11:01:38',NULL,NULL),(0,6038,'DIS','Disloratidin','Y','divyang','2019-11-20 13:30:38',NULL,NULL),(0,6039,'ALV','Alovera','Y','divyang','2019-11-20 13:38:39',NULL,NULL),(0,6040,'OPL','Olive Oil','Y','divyang','2019-11-21 13:41:38',NULL,NULL),(0,6041,'ANA','Anadulafungin ','Y','divyang','2019-11-23 12:47:32',NULL,NULL),(0,6042,'HCG','Human Chorionic Gonadotrophin','Y','divyang','2019-11-23 13:08:27',NULL,NULL),(0,6043,'5+500','Glipizide (5mg) + Metformin (500mg)','Y','sagar','2019-11-24 00:20:33',NULL,NULL),(0,6044,'GFD','Gabapantin +b12','Y','divyang','2019-11-24 12:16:14',NULL,NULL),(0,6045,'PYU','Sodium Pyrolidone','Y','divyang','2019-11-26 12:30:45',NULL,NULL),(0,6046,'THY','Thyroxine 200mg','Y','divyang','2019-11-26 12:34:25',NULL,NULL),(0,6047,'AZT','Aztreonam','Y','divyang','2019-11-26 16:32:13',NULL,NULL),(0,6048,'POI','Protamine','Y','divyang','2019-11-26 16:36:01',NULL,NULL),(0,6049,'150','Rifampicin Tab ','Y','sagar','2019-11-26 21:27:20',NULL,NULL),(0,6050,'OMC','Octyl Methoxy Cinamate','Y','divyang','2019-11-28 12:25:41',NULL,NULL),(0,6051,'KLO','Kojic Acid','Y','divyang','2019-11-28 12:34:35',NULL,NULL),(0,6052,'VLA','Velacyclovir','Y','divyang','2019-11-30 10:48:41',NULL,NULL),(0,6053,'TZX','Tizanidine','Y','divyang','2019-11-30 11:00:31',NULL,NULL),(0,6054,'200 INJ','Piracetam (200mg/ml)','Y','sagar','2019-12-01 21:28:39',NULL,NULL),(0,6055,'CAB','Carboprost 250','Y','divyang','2019-12-02 17:08:24',NULL,NULL),(0,6056,'80/500',' Drotaverine (80mg) + Paracetamol/acetaminophen (500mg)','Y','sagar','2019-12-02 21:15:41',NULL,NULL),(0,6057,'400/800/12','Piracetam 400/800/1200mg Tab ','Y','sagar','2019-12-02 23:19:02',NULL,NULL),(0,6058,'MJU','Memantine','Y','divyang','2019-12-03 14:41:13',NULL,NULL),(0,6059,'COD','Promethazine+pholcodeine','Y','divyang','2019-12-04 13:37:59',NULL,NULL),(0,6060,'BNJ','Betahistin 48','Y','divyang','2019-12-04 13:43:10',NULL,NULL),(0,6061,'BNM','Clobetasol+salysilic','Y','divyang','2019-12-09 12:26:27',NULL,NULL),(0,6062,'TYH','Tricholin+sorbitol','Y','divyang','2019-12-09 12:35:16',NULL,NULL),(0,6063,'80/400','Co-trimoxazole Infusion Bp','Y','vikram','2019-12-09 18:54:45',NULL,NULL),(0,6064,'0.05+0.03','Betamethasone (0.05% W/w) + Salicylic Acid (3% W/w)','Y','sagar','2019-12-09 23:29:24',NULL,NULL),(0,6065,'MNB','Minoxidil+finasteride','Y','divyang','2019-12-11 11:52:21',NULL,NULL),(0,6066,'PIR','Piroxicam Inj','Y','divyang','2019-12-12 11:23:13',NULL,NULL),(0,6067,'50 MG ','Cyclosporine (50mg)','Y','sagar','2019-12-14 20:22:15',NULL,NULL),(0,6068,'OUI','Ornidazole','Y','divyang','2019-12-16 14:10:22',NULL,NULL),(0,6069,'AMA','Amino Acids','Y','divyang','2019-12-18 13:15:02',NULL,NULL),(0,6070,'10 MG TAB ','Aripiprazole (10mg)','Y','sagar','2019-12-19 05:32:13',NULL,NULL),(0,6071,'100 MG /','Amisulpride (100mg)','Y','sagar','2019-12-20 21:17:04',NULL,NULL),(0,6072,'200-MG','Alpha Ketoanalogue (200mg)','Y','sagar','2019-12-20 23:40:36',NULL,NULL),(0,6073,'','Mannitol  10 %and Glycerin 10 %','Y','vikram','2019-12-22 13:35:03',NULL,NULL),(0,6074,'FGR','Sertaconazole +mometasone','Y','divyang','2019-12-25 12:30:36',NULL,NULL),(0,6075,'','Baclofen 10 Mg','Y','bhoomiba','2019-12-25 17:14:15',NULL,NULL),(0,6076,'','Caroverine 20','Y','bhoomiba','2019-12-25 17:35:10',NULL,NULL),(0,6077,'','Sacubitril 49 Mg +valsartan 51 Mg','Y','bhoomiba','2019-12-25 17:43:42',NULL,NULL),(0,6078,'LKO','Levodropropizine','Y','divyang','2019-12-26 11:12:24',NULL,NULL),(0,6079,'','Hydrochlorothiazide 12.5 Mg','Y','vikram','2019-12-28 17:13:46',NULL,NULL),(0,6080,'','Danazol','Y','mitesh','2019-12-30 22:00:44',NULL,NULL),(0,6081,'HJU','Formoterol+tiotropium','Y','divyang','2020-01-02 12:18:47',NULL,NULL),(0,6082,'MKO','Benzoil Peroxide','Y','divyang','2020-01-02 13:46:20',NULL,NULL),(0,6083,'ARF','Aripiprazole 15 Mg','Y','divyang','2020-01-02 15:48:42',NULL,NULL),(0,6084,'ADR','Aripiperazole 5 Mg','Y','divyang','2020-01-02 15:51:05',NULL,NULL),(0,6085,'NMK','Mebendazole','Y','divyang','2020-01-03 15:20:05',NULL,NULL),(0,6086,'PYRIDOSTIG','Pyridostigmine','Y','mihir','2020-01-08 16:03:47',NULL,NULL),(0,6087,'','Cefuroxim 500 Mg + Clavulanic Acid 125 Mg','Y','vikram','2020-01-09 18:57:52',NULL,NULL),(0,6088,'','Ofloxacin + Cefixim','Y','vikram','2020-01-13 11:07:11',NULL,NULL),(0,6089,'CEFIXIME +','Cefixime +oflo','Y','divyang','2020-01-18 11:11:59',NULL,NULL),(0,6090,'FLUPHENAZI','Fluphenazine','Y','mihir','2020-01-18 11:35:54',NULL,NULL),(0,6091,'','Tacrolimus','Y','divyang','2020-01-21 11:05:53','divyang','2020-01-21 11:08:07'),(0,6092,'ALLOPURINO','Allopurinol','Y','divyang','2020-01-22 11:26:27',NULL,NULL),(0,6093,'TEN','Tenofovir','Y','divyang','2020-01-22 11:34:33',NULL,NULL),(0,6094,'COL','Colchicine','Y','divyang','2020-01-22 11:41:10',NULL,NULL),(0,6095,'POLIDOCANO','Polidocanol','Y','JIGNESH','2020-01-24 16:21:50','JIGNESH','2020-01-24 16:22:50'),(0,6096,'','Atorvastatin 10 Mg + Ecosprin 75 Mg','Y','JIGNESH','2020-01-27 15:03:46',NULL,NULL),(0,6097,'','Doxofylline 400 Mg + Montelukast 10 Mg','Y','JIGNESH','2020-01-28 11:18:40',NULL,NULL),(0,6098,'','Silodosin 8 Mg + Dutasteride 0.5 Mg','Y','vikram','2020-02-03 18:17:00',NULL,NULL),(0,6099,'ACECLOFENA','Aceclofenac&rabeprazol','Y','JIGNESH','2020-02-04 09:29:23','JIGNESH','2020-02-04 09:29:56'),(0,6100,'IVERMECTIO','Ivermection ','Y','JIGNESH','2020-02-04 16:54:05',NULL,NULL),(0,6101,'IVERMECTIN','Ivermectin','Y','JIGNESH','2020-02-04 16:54:35','JIGNESH','2020-02-04 16:54:40'),(0,6102,'SODIUM NIT','Sodium Nitroprusside','Y','JIGNESH','2020-02-07 10:37:07','JIGNESH','2020-02-07 11:06:54'),(0,6103,'BROMFENAC','Bromfenac','Y','JIGNESH','2020-02-08 17:44:49',NULL,NULL),(0,6104,'CHLORDIAZE','Chlordiazepoxide 5mg&amitriptyline','Y','JIGNESH','2020-02-11 10:04:03',NULL,NULL),(0,6105,'ETOMIDATE ','Etomidate Emulsion ','Y','JIGNESH','2020-02-11 14:05:16',NULL,NULL),(0,6106,'DESLORATAD','Desloratadine','Y','JIGNESH','2020-02-14 17:53:55',NULL,NULL),(0,6107,'ATORVASTAT','Atorvastatin &fenofibrate','Y','JIGNESH','2020-02-20 11:11:54',NULL,NULL),(0,6108,'TAB','Atorvastatin 10mg+fenofibrate 160mg','Y','JIGNESH','2020-02-20 11:41:24',NULL,NULL),(0,6109,'ERYTHROMYC','Erythromycin 500mg','Y','JIGNESH','2020-02-20 11:56:49','JIGNESH','2020-02-20 12:04:38'),(0,6110,'','Tadalafil','Y','vikram','2020-02-23 15:36:29',NULL,NULL),(0,6111,'LORNOXICAM','Lornoxicam 8mg','Y','jignesh','2020-02-24 17:54:26','jignesh','2020-02-24 17:54:46'),(0,6112,'CYPROTERON','Cyproterone 2mg Acetate Ethinyloestradiol','Y','JIGNESH','2020-02-29 09:35:13','JIGNESH','2020-02-29 09:35:36'),(0,6113,'METFORMIN','Metformin 500mg Glimepride 2mg','Y','JIGNESH','2020-02-29 11:01:24',NULL,NULL),(0,6114,'RECOMBINAN','Recombinant 4000 Iu','Y','JIGNESH','2020-02-29 16:03:55',NULL,NULL),(0,6115,'LIPOSMAL ','Liposmal ','Y','JIGNESH','2020-02-29 16:32:11',NULL,NULL),(0,6116,'','Choline Salicylate + Benzalkonium +lignocaine','Y','MIHIR','2020-03-05 18:56:23',NULL,NULL),(0,6117,'METHOTREXA','Methotrexate 10mg','Y','vikram','2020-03-07 17:01:41',NULL,NULL),(0,6118,'JALRA 50MG','Jalra 50mg','Y','jignesh','2020-03-09 17:28:08',NULL,NULL),(0,6119,'VILDAGLIPT','Vildagliptin 50mg','Y','jignesh','2020-03-09 17:30:29',NULL,NULL),(0,6120,'BICALUTAMI','Bicalutamide 50mg','Y','jignesh','2020-03-11 11:03:41',NULL,NULL),(0,6121,'','Fosfomycin Sodium 4 Gm','Y','vikram','2020-03-11 18:28:25',NULL,NULL),(0,6122,'ACICLOVIR ','Aciclovir400mg Dispersible','Y','jignesh','2020-03-12 18:00:16',NULL,NULL),(0,6123,'ACICLOVIR ','Aciclovir 800mg Dispersible','Y','jignesh','2020-03-12 18:17:59',NULL,NULL),(0,6124,'PHENYTOIN','Phenytoin Sodium 300mg','Y','jignesh','2020-03-12 18:31:49',NULL,NULL),(0,6125,'','Empagliflozin 12.5','Y','jignesh','2020-03-14 10:12:21',NULL,NULL),(0,6126,'','Glycopyrronium Formoterol','Y','jignesh','2020-03-14 10:26:48',NULL,NULL),(0,6127,'TRETINOIN ','Tretinoin 0.05','Y','jignesh','2020-03-14 11:00:44',NULL,NULL),(0,6128,'TRETINOIN ','Tretinoin Micro 0.04%','Y','jignesh','2020-03-14 11:05:42',NULL,NULL),(0,6129,'PHENYLEPHR','Phenylephrine5mg&chlo 2mg','Y','jignesh','2020-03-14 11:13:51',NULL,NULL),(0,6130,'','L Ornithrin L Aspartate','Y','jignesh','2020-03-16 18:31:34',NULL,NULL),(0,6131,'','Ibutilide Fumarate','Y','vikram','2020-03-17 14:01:08',NULL,NULL),(0,6132,'CARVEDILOL','Carvedilol 12.5mg','Y','jignesh','2020-03-17 18:20:56',NULL,NULL),(0,6133,'FLUCONAZOL','Fluconazole Azithro Secnidazole','Y','jignesh','2020-03-17 18:34:03','jignesh','2020-03-17 18:34:59'),(0,6134,'MECOBALAMI','Mecobalamin Vitamins & Minerals','Y','jignesh','2020-03-18 16:38:36',NULL,NULL),(0,6135,'THYROXIN ','Thyroxin 62.5mg','Y','jignesh','2020-03-18 18:38:37',NULL,NULL),(0,6136,'OFOXACIN ','Ofloxacin 200mg & Tinidazole 600mg','Y','jignesh','2020-03-19 15:45:38',NULL,NULL),(0,6137,'OFLOXACIN ','Ofloxacin 200mg&tinidazoloe 600mg','Y','jignesh','2020-03-19 15:51:43',NULL,NULL),(0,6138,'TRIMETHOPR','Trimethoprim 100mg','Y','jignesh','2020-03-19 17:25:19',NULL,NULL),(0,6139,'BUTTERBURR','Butterburroot,extract,feverfew,','Y','jignesh','2020-03-19 17:27:10',NULL,NULL),(0,6140,'LMIPENEM50','Lmipenem500mg&cilastatin','Y','jignesh','2020-03-19 17:51:37',NULL,NULL),(0,6141,'','Carvedilol 20 Mg','Y','vikram','2020-03-19 18:14:36',NULL,NULL),(0,6142,'CLOBETASOL','Clobetasolpropionate&fusidic Acide','Y','jignesh','2020-03-20 09:28:20',NULL,NULL),(0,6143,'ENTERIC ES','Enteric Esomeprazole Magnesium Domperidone ','Y','jignesh','2020-03-20 16:37:35',NULL,NULL),(0,6144,'ZINC ACETA','Zinc Acetate ','Y','jignesh','2020-03-20 18:21:51',NULL,NULL),(0,6145,'AMILORIDE ','Amiloride &furosemide40mg','Y','jignesh','2020-03-21 14:35:00',NULL,NULL),(0,6146,'TAB','Hydroxychloroquine 400 Mg','Y','vikram','2020-03-26 18:02:39',NULL,NULL),(0,6147,'','Risperidone 2 Mg + Trihexyphenidyl 2 Mg','Y','vikram','2020-04-06 18:05:22',NULL,NULL),(0,6148,'DIVALPROEX','Divalproex Gastro-resistant','Y','jignesh','2020-04-21 14:35:56',NULL,NULL),(0,6149,'ACTIVATED ','Activated Charcol Powder','Y','jignesh','2020-04-21 14:44:20',NULL,NULL),(0,6150,'LMIPRAMINE','Lmipramine Hydrochloride','Y','jignesh','2020-04-24 14:52:43',NULL,NULL),(0,6151,'MONTELUKAS','Montelukast 10mgsodium','Y','jignesh','2020-04-24 15:00:23',NULL,NULL),(0,6152,'NADIFLOXAC','Nadifloxacin ','Y','jignesh','2020-04-24 15:11:40',NULL,NULL),(0,6153,'LTOPRIDE H','Ltopride (50mg) Hydrocholoride','Y','jignesh','2020-04-28 09:59:22',NULL,NULL),(0,6154,'','Dulaglutide 0.75','Y','vikram','2020-05-13 14:42:37',NULL,NULL),(0,6155,'ESMOLOL 10','Esmolol 10mg','Y','jignesh','2020-05-20 16:50:16',NULL,NULL),(0,6156,'MINOCYCLIN','Minocycline Hydrochloride','Y','jignesh','2020-05-20 17:12:03',NULL,NULL),(0,6157,'DICLO+DIET','Diclo+diethylamine Methy','Y','jignesh','2020-05-25 15:18:20',NULL,NULL),(0,6158,'CLARITHROM','Clarithromycin 500mg','Y','jignesh','2020-05-25 15:49:57',NULL,NULL),(0,6159,'CLOPIDOGRE','Clopidogrel ','Y','jignesh','2020-05-25 16:09:58',NULL,NULL),(0,6160,'BIOTIN260V','Biotin260vitamin B& Vitamin C','Y','jignesh','2020-05-26 08:52:51',NULL,NULL),(0,6161,'CARVEDILOL','Carvedilol Phosphate ','Y','jignesh','2020-05-28 15:38:59',NULL,NULL),(0,6162,'ACETAMINOP','Acetaminophen325mg Tamadol37.5','Y','jignesh','2020-05-28 15:51:40',NULL,NULL),(0,6163,'RACECADOTR','Racecadotril 100mg','Y','jignesh','2020-05-28 16:03:01',NULL,NULL),(0,6164,'FLUTICASON','Fluticasone ','Y','jignesh','2020-05-28 16:14:23',NULL,NULL),(0,6165,'NUTRIENTS','Nutrients','Y','jignesh','2020-05-28 16:22:23',NULL,NULL),(0,6166,'METOPROLOL','Metoprolol Succinate 12.5mg','Y','jignesh','2020-05-29 16:47:46',NULL,NULL),(0,6167,'','Tenecteplase','Y','VIKRAM','2020-05-30 18:19:28',NULL,NULL),(0,6168,'THIOCOLCHI','Thiocolchicoside 4mg Aceclofenac100mg','Y','jignesh','2020-06-05 16:08:54',NULL,NULL),(0,6169,'NITRAZEPAM','Nitrazepam10mg','Y','jignesh','2020-06-05 16:18:42',NULL,NULL),(0,6170,'PROPOFOL 1','Propofol 10mg','Y','jignesh','2020-06-05 17:05:01',NULL,NULL),(0,6171,'GABAPENTIN','Gabapentin&metylcobalamin','Y','jignesh','2020-06-08 10:37:04',NULL,NULL),(0,6172,'EPLERENONE','Eplerenone 25mg','Y','jignesh','2020-06-08 15:43:34',NULL,NULL),(0,6173,'DAPTOMYCIN','Daptomycin 350mg','Y','jignesh','2020-06-08 16:03:13',NULL,NULL),(0,6174,'ESSENITALT','Essenitaltrace Elements','Y','jignesh','2020-06-09 13:01:03',NULL,NULL),(0,6175,'DOXYLAMI S','Doxylami Succinate &folic Acid','Y','jignesh','2020-06-10 17:00:01',NULL,NULL),(0,6176,'PROORANOLO','Prooranolol 60mg ','Y','jignesh','2020-06-10 17:14:16',NULL,NULL),(0,6177,'PROPRANOLO','Propranolo 40mg ','Y','jignesh','2020-06-10 17:21:01',NULL,NULL),(0,6178,'PROPRANOLO','Propranolol 20mg Tab','Y','jignesh','2020-06-10 17:25:37',NULL,NULL),(0,6179,'PROPRANLOL','Propranlol 20mg ','Y','jignesh','2020-06-10 17:26:53',NULL,NULL),(0,6180,'L-GLUTATHI','L-glutathione 500mg','Y','jignesh','2020-06-10 17:36:47',NULL,NULL),(0,6181,'CITICOLINE','Citicoline 500mg','Y','jignesh','2020-06-11 17:05:01',NULL,NULL),(0,6182,'CITICOLINE','Citicoline 500mg Piracetam 800mg','Y','jignesh','2020-06-11 17:09:22',NULL,NULL),(0,6183,'VITAMIN C&','Vitamin C& Zinc','Y','jignesh','2020-06-11 17:16:08',NULL,NULL),(0,6184,'VITAMIN C','Vitamin C','Y','jignesh','2020-06-11 17:22:23',NULL,NULL),(0,6185,'ZINCE 50MG','Zince 50mg','Y','jignesh','2020-06-11 17:26:03',NULL,NULL),(0,6186,'LYCOPENE,C','Lycopene,carotene&wheat Germ Oil','Y','jignesh','2020-06-13 16:02:47',NULL,NULL),(0,6187,'PROGESTERO','Progesterone 300mg','Y','jignesh','2020-06-13 17:03:51',NULL,NULL),(0,6188,'BILBERRY E','Bilberry Extract&pinebark Extract','Y','jignesh','2020-06-17 14:39:00',NULL,NULL),(0,6189,'SOMATOSTAT','Somatostatin 3mg','Y','jignesh','2020-06-17 15:08:13',NULL,NULL),(0,6190,'DALTAEPARI','Daltaeparin Sodium Injection','Y','jignesh','2020-06-18 14:14:17',NULL,NULL),(0,6191,'REMOGLIFLO','Remogliflozin 100mg Metformin 1000mg','Y','jignesh','2020-06-18 15:28:36',NULL,NULL),(0,6192,'REMOGLIFLO','Remogliflozin 100mg Metformin 500mg','Y','jignesh','2020-06-18 15:33:16',NULL,NULL),(0,6193,'MOMETASONE','Mometasone Furoate Topical Solution','Y','jignesh','2020-06-19 17:03:08',NULL,NULL),(0,6194,'DEHYDROEPI','Dehydroepiandrosterone &folic Acid','Y','jignesh','2020-06-19 17:08:45',NULL,NULL),(0,6195,'EMPAGLIFLO','Empagliflozin 12.5&metformin500mg','Y','jignesh','2020-06-19 17:21:41',NULL,NULL),(0,6196,'EMEMPAGLIF','Emempagliflozin10mg','Y','jignesh','2020-06-19 17:27:04',NULL,NULL),(0,6197,'CLOBETASOL','Clobetasol Propionate&miconazole ','Y','divyang','2020-06-20 15:04:55',NULL,NULL),(0,6198,'CLOMIFENE ','Clomifene Citrate &antioxidants &minerals','Y','divyang','2020-06-20 15:10:06',NULL,NULL),(0,6199,'OFLOXACIN ','Ofloxacin & Orinidazole','Y','divyang','2020-06-20 15:16:37',NULL,NULL),(0,6200,'AMPH','Amphotricine B','Y','divyang','2020-06-22 10:15:51',NULL,NULL),(0,6201,'FAVIPIRAVI','Favipiravir 200mg','Y','jignesh','2020-06-22 12:20:21',NULL,NULL),(0,6202,'ULINASTATI','Ulinastatin 100000','Y','jignesh','2020-06-22 12:32:49',NULL,NULL),(0,6203,'PARACETAMO','Paracetamol','Y','jignesh','2020-06-23 14:52:31',NULL,NULL),(0,6204,'CLONAZEPAM','Clonazepam 1mg','Y','jignesh','2020-06-23 15:07:04',NULL,NULL),(0,6205,'CLONAZEPAM','Clonazepam 1mg','Y','jignesh','2020-06-23 15:07:04',NULL,NULL),(0,6206,'PARACETAMO','Paracetamol Propyphenazone&caffin','Y','jignesh','2020-06-27 15:54:23',NULL,NULL),(0,6207,'ETIZOLAM 0','Etizolam 0.5mg&prpranolol 20mg','Y','jignesh','2020-06-30 16:27:18',NULL,NULL),(0,6208,'ETILZOLAM ','Etilzolam 0.5mg&propranolol 20mg','Y','jignesh','2020-06-30 16:28:46',NULL,NULL),(0,6209,'UBIQUINOL ','Ubiquinol Acetate L-carnitine L-tartrate Astaxanthin Lycopene With Zinc','Y','jignesh','2020-06-30 17:05:33',NULL,NULL),(0,6210,'CEFTAZIDIM','Ceftazidime Anhydrous 1.0gm','Y','jignesh','2020-07-01 14:09:40',NULL,NULL),(0,6211,'BIPHASIC I','Biphasic Insulin 100u/ml','Y','jignesh','2020-07-01 14:24:31',NULL,NULL),(0,6212,'CHLORPROMA','Chlorpromazine 50mg','Y','jignesh','2020-07-02 11:32:33',NULL,NULL),(0,6213,'DULOXETINE','Duloxetine Gastro 30mg','Y','jignesh','2020-07-03 14:02:10',NULL,NULL),(0,6214,'SODIUM BIC','Sodium Bicarbonate 1000mg','Y','jignesh','2020-07-08 12:02:31',NULL,NULL),(0,6215,'RABIES  VA','Rabies  Vaccine Human','Y','jignesh','2020-07-09 17:05:25',NULL,NULL),(0,6216,'PREGALIN M','Pregalin Mecobalamin Alpha Liopic Acid ','Y','jignesh','2020-07-10 13:03:26',NULL,NULL),(0,6217,'MAGALDRATE','Magaldrate Simethicone Oxetacaine ','Y','jignesh','2020-07-10 13:36:29',NULL,NULL),(0,6218,'IVERMECTIN','Ivermectin 12 Mg ','Y','jignesh','2020-07-10 14:34:14',NULL,NULL),(0,6219,'PREGABALIN','Pregabalin &amitriptyline ','Y','jignesh','2020-07-10 16:33:36',NULL,NULL),(0,6220,'METOPROLOL','Metoprolol Succinate Extended Release ','Y','jignesh','2020-07-11 16:58:27',NULL,NULL),(0,6221,'(REMDESIVI','(remdesivir)','Y','sagar','2020-07-13 18:24:38',NULL,NULL),(0,6222,'REMDESIVIR','Remdesivir','Y','sagar','2020-07-13 18:25:28',NULL,NULL),(0,6223,'CLOBETASOL','Clobetasol Propionate Neomycin&miconazole ','Y','jignesh','2020-07-14 17:09:51',NULL,NULL),(0,6224,'LACTIC ACI','Lactic Acid ','Y','sagar','2020-07-15 13:16:44',NULL,NULL),(0,6225,'POLYETHYLE','Polyethylene Glycol Sodium Carbonate &potassium ','Y','jignesh','2020-07-15 16:46:40',NULL,NULL),(0,6226,' AVIBACTAM',' Avibactam Sodiumceftazidime Pentahydrate','Y','sagar','2020-07-15 18:27:11',NULL,NULL),(0,6227,'NA','Na','Y','vikram','2020-07-16 16:10:56',NULL,NULL),(0,6228,'DMH','Dextromethorphan Hydrobromide','Y','vikram','2020-07-16 16:59:17',NULL,NULL),(0,6229,'BORAGE OIL','Borage Oil Multivitamin  Multiminral With Iron &','Y','jignesh','2020-07-17 16:14:29',NULL,NULL),(0,6230,'600+100','Acebrophylline 100 + Acetylcysteine 600','Y','harshadb','2020-07-18 13:53:36',NULL,NULL),(0,6231,'5/50MG','Amlodipine 5mg + Metoprolol 50 Mg','Y','harshadb','2020-07-18 13:55:55',NULL,NULL),(0,6232,'750/500/40','Amoxycillin 750mg + Clarithromycin 500mg + Esomeprazole 40mg','Y','harshadb','2020-07-18 13:57:57',NULL,NULL),(0,6233,'75/20/75MG','Aspirin 75mg + Atorvastatin 20mg + Clopidogrel 75mg','Y','harshadb','2020-07-18 14:00:21',NULL,NULL),(0,6234,'75/20/75MG','Aspirin 75mg + Rosuvastatin 20mg + Clopidogrel 75mg','Y','harshadb','2020-07-18 14:01:49',NULL,NULL),(0,6235,'10/150MG','Atorvastatin 10mg + Aspirin 150mg','Y','harshadb','2020-07-18 14:03:40',NULL,NULL),(0,6236,'10/75/5 MG','Atorvastatin 10mg + Aspirin 75mg + Ramipril 5mg','Y','harshadb','2020-07-18 14:05:37',NULL,NULL),(0,6237,'20/150MG','Atorvastatin 20mg + Aspirin 150mg','Y','harshadb','2020-07-18 14:08:20',NULL,NULL),(0,6238,'BUP 0.2MG','Buprenorphine 0.2mg','Y','harshadb','2020-07-18 14:09:18',NULL,NULL),(0,6239,'TOLPERISON','Tolperisone Hydrochloride 450mg','Y','jignesh','2020-07-18 14:25:02',NULL,NULL),(0,6240,'0.5/10MG','Clonazepam 0.5mg + Escitalopram Oxalate 10mg','Y','harshadb','2020-07-18 14:41:35',NULL,NULL),(0,6241,'CLONA0.5MG','Clonazepam 0.5mg','Y','harshadb','2020-07-18 14:42:50',NULL,NULL),(0,6242,'DMR 20MG','Dextromethorphan Hcl 20mg','Y','harshadb','2020-07-18 14:43:57',NULL,NULL),(0,6243,'20/50/300M','Dicyclomine 20mg + Diclofenac 50mg + Pcm 300mg','Y','harshadb','2020-07-18 14:45:53',NULL,NULL),(0,6244,'LEVOFLOXAC','Levofloxacin 750mg','Y','jignesh','2020-07-18 15:05:19',NULL,NULL),(0,6245,'20/50/300','Dicyclomine 20mg + Diclofenac 50mg + Pcm 300mg','Y','kalpeshp','2020-07-18 15:59:32',NULL,NULL),(0,6246,'100/5B','Doxycycline 100mg + Lactobacillus 5billion Spores','Y','kalpeshp','2020-07-18 16:02:28',NULL,NULL),(0,6247,'120/10MG','Fexofenadine 120mg + Montelukast 10mg','Y','kalpeshp','2020-07-18 16:08:25',NULL,NULL),(0,6248,'100/500MCG','Gabapentin 100mg +  Methylconalamin 500mcg','Y','kalpeshp','2020-07-18 16:12:08',NULL,NULL),(0,6249,'1/15/500MG','Glimipride 1mg + Metformin 500mg + Pioglitazone 15mg','Y','kalpeshp','2020-07-18 16:13:33',NULL,NULL),(0,6250,'2/15/500MG','Glimipride 2mg + Metformin 500 Mg + Pioglitazone 15mg','Y','kalpeshp','2020-07-18 16:18:16',NULL,NULL),(0,6251,'TETRAFOL+','L-mthylfolate + Pyridoxal 5 Phosphat + Mecobalamin','Y','kalpeshp','2020-07-18 16:29:51',NULL,NULL),(0,6252,'-','Levo-caritine 500mg + Methylcobalamin 1500mcg + Folic Acid 1.5mg','Y','kalpeshp','2020-07-18 16:33:51',NULL,NULL),(0,6253,'NUROLA D','Methylcobalamin+alp+pyridoxine+vitd3+folic Acid','Y','kalpeshp','2020-07-18 16:37:34',NULL,NULL),(0,6254,'-','Methylcobalamin (1500mcg) + Alpha Lipoic Acid (100mg) + Vitamin B6 (pyridoxine) (3mg) + Folic Acid (1.5mg)','Y','kalpeshp','2020-07-18 16:39:10',NULL,NULL),(0,6255,'-','Paracetamol I.p. 500mg.  Phenylephrine Hydrochloride I.p. 10mg. And Caffeine Anhydrous I.p. 32mg','Y','kalpeshp','2020-07-18 16:41:25',NULL,NULL),(0,6256,'RL 500ML','Ringer Solution','Y','harshadb','2020-07-18 16:44:57',NULL,NULL),(0,6257,'-','Pregabalin (50mg) + Methylcobalamin (750mcg) + Alpha Lipoic Acid (100mg)','Y','kalpeshp','2020-07-18 16:46:55',NULL,NULL),(0,6258,'CEFDITOREN','Cefditoren 200mg','Y','jignesh','2020-07-18 16:50:17',NULL,NULL),(0,6259,'10/150MG','Rosuvastatin (10mg) + Aspirin/acetylsalicylic Acid (75mg)','Y','kalpeshp','2020-07-18 16:51:40',NULL,NULL),(0,6260,'','Mannitol 20% W/v','Y','harshadb','2020-07-18 16:51:52',NULL,NULL),(0,6261,'20/75MG','Rosuvastatin (20mg) + Aspirin/acetylsalicylic Acid (75mg)','Y','kalpeshp','2020-07-18 16:53:13',NULL,NULL),(0,6262,'RL 500ML','Ringer Lactate Infusion 500ml','Y','harshadb','2020-07-18 16:54:30',NULL,NULL),(0,6263,'SEV 400MG','Sevelamer (400mg)','Y','kalpeshp','2020-07-18 16:58:43',NULL,NULL),(0,6264,'DNS 500ML','Sodium Chloride (0.9%w\\v) And Dextrose (0.5%w/v)','Y','harshadb','2020-07-18 17:01:34',NULL,NULL),(0,6265,'DNS 500ML','Sodium Chloride (0.9%w/v) And Dextrose (5%w/v)','Y','harshadb','2020-07-18 17:05:50',NULL,NULL),(0,6266,'D25% 100ML','Dextrose (25%w/v)','Y','harshadb','2020-07-18 17:20:40',NULL,NULL),(0,6267,'DNS 0.45% ','Sodium Chloride (0.45% W/v) & Dextrose (5%w/v)','Y','harshadb','2020-07-18 17:26:26',NULL,NULL),(0,6268,'NS 3% 100M','Sodium Chloride Inj. 3%','Y','harshadb','2020-07-18 17:31:12',NULL,NULL),(0,6269,'50/1000MG','Sitagliptin (50mg) + Metformin (1000mg)','Y','kalpeshp','2020-07-18 17:42:48',NULL,NULL),(0,6270,'CREAMA','Sodium Picosulphate 10 Mg','Y','kalpeshp','2020-07-18 17:46:17',NULL,NULL),(0,6271,'URIMAX D','Tamsulosin 0.4mg + Dutasteride 0.5mg','Y','kalpeshp','2020-07-18 17:47:28',NULL,NULL),(0,6272,'0.4/5MG','Tamsulosin 0.4mg + Solifenacin 5mg','Y','kalpeshp','2020-07-18 17:48:43',NULL,NULL),(0,6273,'GLUCI 10ML','Calcium Gluconogalacto Gluconate','Y','harshadb','2020-07-18 17:53:03',NULL,NULL),(0,6274,'CUTARUB ','Chlorohexidine','Y','harshadb','2020-07-18 18:20:39',NULL,NULL),(0,6275,'40/10/6.25','Telmisartan 40mg +clinidipine 10mg + Chlorthalidone 6.25','Y','vikram','2020-07-18 18:53:07',NULL,NULL),(0,6276,'40/12.5MG','Telmisartan 40mg + Hydrochlorthaizide 12.5mg','Y','vikram','2020-07-18 19:02:32',NULL,NULL),(0,6277,'TOCI','Tocilizumab','Y','sagar','2020-07-21 13:13:39',NULL,NULL),(0,6278,'VITAMIN C','Ascorbic Acid Inj.','Y','VIKRAM','2020-07-21 14:31:27',NULL,NULL),(0,6279,'METRO 500','Metronidazole (500mg)','Y','VIKRAM','2020-07-21 16:30:26',NULL,NULL),(0,6280,'ONDEM 4MG ','Ondansetron (4mg) Inj','Y','VIKRAM','2020-07-21 16:32:34',NULL,NULL),(0,6281,'CAL GLU','Inj Calcium Gluconate ','Y','VIKRAM','2020-07-21 16:33:25',NULL,NULL),(0,6282,'METRO 1GM','Inj. Metronidazole (1000mg) Met','Y','VIKRAM','2020-07-21 16:34:18',NULL,NULL),(0,6283,'INJ B 12 ','Mecobalamin (methylcobalamin) 1000 Mcg','Y','VIKRAM','2020-07-21 16:35:22',NULL,NULL),(0,6284,'1000/200GM','Amoxycillin (1000mg) + Clavulanic Acid (200mg)','Y','VIKRAM','2020-07-21 16:36:15',NULL,NULL),(0,6285,'-','Amino Acids (tyrosine, Arginine, Methionine, Taurine, Phenylalanine, Alanine, Leucine, Threonine, Tryptophan, Valine, Histidine, Proline And Serine)','Y','VIKRAM','2020-07-21 16:46:22',NULL,NULL),(0,6286,'-','Recombinant Human Erythropoietin Alfa (4000iu)','Y','VIKRAM','2020-07-21 16:47:28',NULL,NULL),(0,6287,'PROPOFOL','Propofol (1%)','Y','VIKRAM','2020-07-21 16:49:01',NULL,NULL),(0,6288,'-',' 0.45% Sodium Chloride Injection','Y','VIKRAM','2020-07-21 16:51:15',NULL,NULL),(0,6289,'INJ TERLI ','Terlipressin (1mg)','Y','VIKRAM','2020-07-21 16:52:04',NULL,NULL),(0,6290,'0.5MG/2.5M','Inj Glycopyrrolate (0.5mg) + Neostigmine (2.5mg)','Y','VIKRAM','2020-07-21 16:53:10',NULL,NULL),(0,6291,'-','L-ornithine L-aspartate (5gm)','Y','VIKRAM','2020-07-21 16:53:38',NULL,NULL),(0,6292,'URGO','Inj Diatrizoic Acid (76%)','Y','VIKRAM','2020-07-21 16:54:40',NULL,NULL),(0,6293,'ADENO','Inj Acyclovir (500mg)','Y','VIKRAM','2020-07-21 16:56:10',NULL,NULL),(0,6294,'ESOMEPRAZO','Esomeprazole & Levosulpiride  Cap','Y','sagar','2020-07-21 17:31:37',NULL,NULL),(0,6295,'CHLORDIAZE','Chlordiazepoxide & Clidinium & Bromide','Y','sagar','2020-07-21 17:54:45',NULL,NULL),(0,6296,'DICYCLOMIN','Dicyclomine Hydrochloride,trmadol &acetaminophen Cap','Y','sagar','2020-07-21 18:02:33',NULL,NULL),(0,6297,'ETHINYL ES','Ethinyl Estradiol (0.03mg) + Levonorgestrel (0.15mg)','Y','sagar','2020-07-21 20:27:04',NULL,NULL),(0,6298,'INJ THIO','Inj Thiopental Sodium (500mg)','Y','sagar','2020-07-22 12:08:49',NULL,NULL),(0,6299,'INJ D25','Inj 100 Ml Dextrose 25% Infusion','Y','sagar','2020-07-22 12:10:24',NULL,NULL),(0,6300,'INJ CIPRO','Inj Ciprofloxacin (2mg)','Y','sagar','2020-07-22 12:11:08',NULL,NULL),(0,6301,'PRALI 1GM','Inj Pralidoxime (1000mg)','Y','sagar','2020-07-22 12:11:52',NULL,NULL),(0,6302,'INJ VOLU','Inj Hydroxyethyl Starch(hes) (6gm) + Sodium Chloride (0.9gm)','Y','sagar','2020-07-22 12:12:51',NULL,NULL),(0,6303,'INJ KABI','Inj Sodium Chloride Ip 0.526 G. Sodium Gluconate Usp 0.502 G. Sodium Acetate Trihydrate Ip 0.368 G.','Y','sagar','2020-07-22 12:13:36',NULL,NULL),(0,6304,'INJ NERVI','Inj Folic Acid, Methylcobalamin And Niacinamide','Y','sagar','2020-07-22 12:14:11',NULL,NULL),(0,6305,'ING DEXTO','Inj Dexmedetomidine hydrochloride ','Y','sagar','2020-07-22 12:14:51',NULL,NULL),(0,6306,'INJ NEO','Inj Acyclovir (250mg)','Y','sagar','2020-07-22 12:16:33',NULL,NULL),(0,6307,'INJ INDUCT','Inj Thiopental Sodium 500 Mg','Y','sagar','2020-07-22 12:17:20',NULL,NULL),(0,6308,'INJ CIPREM','Inj Remdesivir For Injection (lyophilized Powder), 100 Mg','Y','sagar','2020-07-22 12:18:18',NULL,NULL),(0,6309,'INJ COLY','Inj Colistin Sulphate (2million Iu)','Y','sagar','2020-07-22 12:19:02',NULL,NULL),(0,6310,'INJ ELORES','Inj Ceftriaxone (2000mg) + Disodium Edetate (74mg) + Sulbactam (1000mg)','Y','sagar','2020-07-22 12:19:35',NULL,NULL),(0,6311,'INJ HISTO','Inj Human Normal Immunoglobulin (12mg) + Histamine Dihydrochloride (0.15mcg) + Sodium Thiosulphate (32mg)','Y','sagar','2020-07-22 12:20:24',NULL,NULL),(0,6312,'INJ ZOLID ','Inj Linezolid (200mg)','Y','sagar','2020-07-22 12:22:02',NULL,NULL),(0,6313,'INJ TIGI','Inj Tigecycline (50mg)','Y','sagar','2020-07-22 12:22:55',NULL,NULL),(0,6314,'INJ BETA','Inj Betamethasone (4mg/ml)','Y','sagar','2020-07-22 12:23:47',NULL,NULL),(0,6315,'INJ CADFOL','Inj Iron Sucrose Intravenous','Y','sagar','2020-07-22 12:24:27',NULL,NULL),(0,6316,'INJ CEREB','Inj Cerebrolycin Solution ','Y','sagar','2020-07-22 12:25:33',NULL,NULL),(0,6317,'INJ CODARO','Inj Amiodarone (150mg)','Y','sagar','2020-07-22 12:26:47',NULL,NULL),(0,6318,'INJ FLURAC','Inj Fluorouracil (500mg)','Y','sagar','2020-07-22 12:27:35',NULL,NULL),(0,6319,'INJ NEODRO','Inj Methylprednisolone (125mg)','Y','sagar','2020-07-22 12:28:20',NULL,NULL),(0,6320,'INJ OFLOX','Inj Ofloxacin (200mg)','Y','sagar','2020-07-22 12:29:03',NULL,NULL),(0,6321,'INJ POLY','Inj Polymyxin B (500000iu)','Y','sagar','2020-07-22 12:31:33',NULL,NULL),(0,6322,'INJ DEXTIN','Inj Dexamethasone 4 Mg /1ml','Y','sagar','2020-07-22 12:32:29',NULL,NULL),(0,6323,'INJ NEUKIN','Inj Filgrastim (300mcg)','Y','sagar','2020-07-22 12:33:19',NULL,NULL),(0,6324,'INJ AMPHO','Inj Amphotericin B (50mg)','Y','sagar','2020-07-22 12:33:50',NULL,NULL),(0,6325,'INDUCT 1GM','Inj Thiopental Sodium 1000 Mg','Y','sagar','2020-07-22 12:34:37',NULL,NULL),(0,6326,'WEPOX 4K','Inj Recombinant Human Erythropoietin Alfa (4000iu)','Y','sagar','2020-07-22 12:35:13',NULL,NULL),(0,6327,'INJ MICROS','Inj Dextran 40 and Sodium Chloride','Y','sagar','2020-07-22 12:36:03',NULL,NULL),(0,6328,'INJ PCM ','Inj paracetamol i.v.  100ml','Y','sagar','2020-07-22 12:37:04',NULL,NULL),(0,6329,'INJ OFLOX','Inj Ofloxacin 100ml','Y','sagar','2020-07-22 12:38:05',NULL,NULL),(0,6330,'INJ TRANEX','Inj Tranexamic Acid (500mg)','Y','sagar','2020-07-22 12:39:01',NULL,NULL),(0,6331,'INJ LAMINO','Inj  l-isoleucine, L-leucine, L-lysine, L-methionine, L-phenylalanine, L-threonine, L-tryptophan, L-valine, L-arginine, L-histidine, Glycine, L-alanin','Y','sagar','2020-07-22 12:40:21',NULL,NULL),(0,6332,'INJ NEOVAC','Inj Vecuronium (4mg)','Y','sagar','2020-07-22 12:42:54',NULL,NULL),(0,6333,'INJ BIOVAR','Inj Calcium Leucovorin (50mg)','Y','sagar','2020-07-22 12:43:38',NULL,NULL),(0,6334,'INJ GRANEY','Inj Granisetron (3mg)','Y','sagar','2020-07-22 12:45:47',NULL,NULL),(0,6335,'INJ KABI','Inj Sodium Chloride, Sodium Gluconate, Sodium Acetate, Potassium Chloride And Magnesium Chloride','Y','sagar','2020-07-22 12:46:46',NULL,NULL),(0,6336,'INJ LEUCO','Inj Calcium Leucovorin (50mg)','Y','sagar','2020-07-22 12:47:57',NULL,NULL),(0,6337,'NEOVAC 10M','Inj Vecuronium-10mg','Y','sagar','2020-07-22 12:50:07',NULL,NULL),(0,6338,'INJ TAZO','Inj Pentazocine (30mg/ml)','Y','sagar','2020-07-22 12:50:48',NULL,NULL),(0,6339,'ALBU 20%','Inj Albumin Human 20 %w/v','Y','sagar','2020-07-22 12:53:04',NULL,NULL),(0,6340,'INJ PACI ','Inj Paclitaxel (100mg)','Y','sagar','2020-07-22 12:54:11',NULL,NULL),(0,6341,'BUTO 1GM','Inj Butorphanol (1mg)','Y','sagar','2020-07-22 12:54:55',NULL,NULL),(0,6342,'BUTO 1MG','Inj Butorphanol (1mg)','Y','sagar','2020-07-22 12:55:28',NULL,NULL),(0,6343,'HEPA 5K IU','Inj Heparin Sodium 5,000 I.u./ml','Y','sagar','2020-07-22 12:56:30',NULL,NULL),(0,6344,'ROPIN 0.2%','Inj Ropivacaine (0.2%)','Y','sagar','2020-07-22 12:57:00',NULL,NULL),(0,6345,'ROPIN 50ML','Iinj Ropivacaine (0.2%/50ml)','Y','sagar','2020-07-22 12:58:03',NULL,NULL),(0,6346,'6MG FILGRA','Inj Filgrastim 6.0 Mg','Y','sagar','2020-07-22 12:59:56',NULL,NULL),(0,6347,'FOSFO 4GM','Inj Fosfomycin (4gm)','Y','sagar','2020-07-22 13:00:33',NULL,NULL),(0,6348,'HYALU 8MG','Inj Hyaluronic Acid (8mg/ml)','Y','sagar','2020-07-22 13:01:10',NULL,NULL),(0,6349,'INSTA 0.25','Inj Palonosetron (0.25mg)','Y','sagar','2020-07-22 13:01:50',NULL,NULL),(0,6350,'MEPHE 10ML','Inj Mephenterminesulphate 10ml Inj','Y','sagar','2020-07-22 13:02:41',NULL,NULL),(0,6351,'1000/125GM','Inj Piperacillin (1000mg) + Tazobactum (125mg)','Y','sagar','2020-07-22 13:03:22',NULL,NULL),(0,6352,'ACTI 50MG','Inj Alteplase (50mg)','Y','sagar','2020-07-22 13:04:01',NULL,NULL),(0,6353,'ALFA 500MG','Inj Amikacin 500mg','Y','sagar','2020-07-22 13:04:34',NULL,NULL),(0,6354,'CEF 1500MG','Inj Cefuroxime (1500mg)','Y','sagar','2020-07-22 13:05:14',NULL,NULL),(0,6355,'COLY 1MIU','Inj Colistin Colistimethate Sodium 1 Miu Injection','Y','sagar','2020-07-22 13:05:59',NULL,NULL),(0,6356,'DEXTO 50MC','Inj Dexmedetomidine (50mcg)','Y','sagar','2020-07-22 13:06:44',NULL,NULL),(0,6357,'HES 6%W/V','Inj Hydroxyethyl Starch(hes) (6% W/v)','Y','sagar','2020-07-22 13:07:29',NULL,NULL),(0,6358,'LIGNO2%ADR','Inj Lignocaine And Adrenaline','Y','sagar','2020-07-22 13:08:24',NULL,NULL),(0,6359,'LUPRO 3.75','Inj Leuprolide (3.75mg)','Y','sagar','2020-07-22 13:09:06',NULL,NULL),(0,6360,'RASBEL 1.5','Inj Rasburicase (1.5mg)','Y','sagar','2020-07-22 13:09:45',NULL,NULL),(0,6361,'VENLAFAXIN','Venlafaxine Hydrochloride Prolonged Realease Cap ','Y','sagar','2020-07-22 16:19:53',NULL,NULL),(0,6362,'','Permethrin ','Y','divyang','2020-07-23 10:54:19',NULL,NULL),(0,6363,'PERMETHRIN','Permethrin & Cetrimide Soap','Y','divyang','2020-07-23 10:55:25',NULL,NULL),(0,6364,'MIDODRINE ','Midodrine  Hydrochloride ','Y','sagar','2020-07-23 15:56:30',NULL,NULL),(0,6365,'ANTI ITCH ','Anti Itch Lotion','Y','sagar','2020-07-28 12:34:10',NULL,NULL),(0,6366,'PERINDOPRI','Perindopril Erbumine &amlodepime Bessilate Tab','Y','sagar','2020-07-28 15:23:59',NULL,NULL),(0,6367,'LEVAMISOLE','Levamisole  Hydrochloride Tab','Y','sagar','2020-07-29 13:14:44',NULL,NULL),(0,6368,'CDS','Ceftriaxone (1000mg) + Disodium Edetate (37mg) + Sulbactam (500mg)','Y','VIKRAM','2020-07-29 13:54:18',NULL,NULL),(0,6369,'SILODOSIN ','Silodosin  0.4 Hard Gelatin Cap & Dutasteride 0.5 Combipack','Y','mihir','2020-08-04 18:18:43',NULL,NULL),(0,6370,'AZATHIOPRI','Azathioprine 25mg ','Y','mihir','2020-08-04 18:57:00',NULL,NULL),(0,6371,'CHOLINE','Choline Salicylate Benzalkonium  Chloride &lignocaine Liquid Gel','Y','mihir','2020-08-04 19:03:49',NULL,NULL),(0,6372,'SAFINAMIDE','Safinamide  Tab ','Y','mihir','2020-08-04 19:09:46',NULL,NULL),(0,6373,'VITAMIN C ','Vitamin C Zinc Citrus Bioflavonoids','Y','sagar','2020-08-05 19:22:09',NULL,NULL),(0,6374,'HYDROQUNON','Hydroquinone Oxybenzone & Octinoxate Cream','Y','divyang','2020-08-14 12:11:08',NULL,NULL),(0,6375,'MIRTAZAPIN','Mirtazapine Tab ','Y','sagar','2020-08-17 20:23:00',NULL,NULL),(0,6376,'','Thyroxine 88','Y','vikram','2020-08-18 20:09:11',NULL,NULL),(0,6377,'CAPECITABI','Capecitabine Tab ','Y','mihir','2020-08-20 18:36:31',NULL,NULL),(0,6378,'LEVONOGEST','Levonorgestrel 0.25 Ethinyloestradiol 0.5 Tab','Y','mihir','2020-08-20 18:52:09',NULL,NULL),(0,6379,'THYMOSIN','Thymosin Alpha Inj','Y','mihir','2020-08-22 17:26:30',NULL,NULL),(0,6380,'','Sacubitril 97 Mg + Valsartan 103 Mg','Y','vikram','2020-08-25 11:12:43',NULL,NULL),(0,6381,'NICOTINE G','Nicotine Gum','Y','mihir','2020-08-27 13:29:25',NULL,NULL),(0,6382,'AZORAN 50','Azathioprine (50mg)','Y','Chintans','2020-08-28 12:31:57',NULL,NULL),(0,6383,'C UDP 5MG','Cilnidipine (5mg)','Y','Chintans','2020-08-28 12:33:07',NULL,NULL),(0,6384,'CARIPIL','Carica Papaya Leaf Extract','Y','Chintans','2020-08-28 12:36:27',NULL,NULL),(0,6385,'CLONOTRIL ','Clonazepam (0.25mg) + Escitalopram 10mg ','Y','Chintans','2020-08-28 12:40:03','divyang','2020-11-03 12:13:37'),(0,6386,'75/150MG','Aspirin (150mg) + Clopidogrel (75mg)','Y','Chintans','2020-08-28 12:56:35',NULL,NULL),(0,6387,'DEPAXIL','Paroxetine (12.5mg)','Y','Chintans','2020-08-28 12:58:50',NULL,NULL),(0,6388,'DIAMOX 250','Acetazolamide (250mg)','Y','Chintans','2020-08-28 13:00:29',NULL,NULL),(0,6389,'20/500MG','Teneligliptin (20mg)+metformin (500mg) ','Y','Chintans','2020-08-28 13:04:39',NULL,NULL),(0,6390,'ENZICTRA D','Bromelain (180mg) + Trypsin (96mg) + Rutoside (200mg) + Papain (120mg)','Y','Chintans','2020-08-28 13:08:13',NULL,NULL),(0,6391,'FLUNA 10MG','Flunarizine (10mg)','Y','Chintans','2020-08-28 13:09:31',NULL,NULL),(0,6392,'FOLISPOR ','Lactic Acid Bacillus Spores, Riboflavin, Folic Acid And Niacinamide','Y','Chintans','2020-08-28 13:11:33',NULL,NULL),(0,6393,'FOLLIHAIR ','Methionine Cysteine Biotin','Y','Chintans','2020-08-28 13:13:26',NULL,NULL),(0,6394,'FOLIHAIR N','Amino Acids Vitamins Minerals Biotin','Y','Chintans','2020-08-28 13:14:43',NULL,NULL),(0,6395,'FOLIHAR N','Amino Acids Vitamins Minerals Biotin','Y','Chintans','2020-08-28 13:14:56',NULL,NULL),(0,6396,'ORCIPRENAL','Orciprenaline 10mg ','Y','mihir','2020-08-28 16:55:41',NULL,NULL),(0,6397,'GABAPENTIN','Gabapentin 300 &methylcobalmin 500 Tab','Y','mihir','2020-08-28 17:08:12',NULL,NULL),(0,6398,'HETRA 100M','Diethylcarbamazine (100mg)','Y','Chintans','2020-08-28 18:15:08',NULL,NULL),(0,6399,'IMDUR 30 ','Isosorbide Mononitrate (30mg)','Y','chintans','2020-08-29 13:32:12',NULL,NULL),(0,6400,'LARETOL','Calcitriol (0.25mcg)','Y','chintans','2020-08-29 13:33:50',NULL,NULL),(0,6401,'MIGRANIL E','Ergotamine (1mg) + Caffeine (100mg)','Y','chintans','2020-08-29 13:36:42',NULL,NULL),(0,6402,'MOX 500','Amoxycillin (500mg)','Y','chintans','2020-08-29 13:37:41',NULL,NULL),(0,6403,'MOXICIP ','Moxifloxacin (400mg)','Y','chintans','2020-08-29 13:38:51',NULL,NULL),(0,6404,'5/25 MG','Amlodipine (5mg) + Metoprolol Succinate (25mg)','Y','chintans','2020-08-29 13:39:48',NULL,NULL),(0,6405,'NITA 500MG','Nitazoxanide (500mg)','Y','chintans','2020-08-29 13:41:25',NULL,NULL),(0,6406,'OROFER XT ','Ferrous Ascorbate (iron) + Folic Acid (vitamin B9)','Y','chintans','2020-08-29 13:43:06',NULL,NULL),(0,6407,'OXYAT -HC','Beta-carotene, Copper, Manganese, Selenium Dioxide, And Zinc ','Y','chintans','2020-08-29 13:44:43',NULL,NULL),(0,6408,'PACITANE 2','Trihexyphenidyl (2mg)','Y','chintans','2020-08-29 13:45:36',NULL,NULL),(0,6409,'PILEX','Lajjalu And Yashad Bhasma','Y','chintans','2020-08-29 13:48:05',NULL,NULL),(0,6410,'PRAMIPREX','Pramipexole (0.5mg)','Y','chintans','2020-08-29 13:49:11',NULL,NULL),(0,6411,'PRIMOSE','Primrose Oil','Y','chintans','2020-08-29 13:49:56',NULL,NULL),(0,6412,'PRONOL +','Propranolol (40mg) + Flunarizine (10mg)','Y','chintans','2020-08-29 13:50:25',NULL,NULL),(0,6413,'PRUVICT','Prucalopride (1mg)','Y','chintans','2020-08-29 13:51:04',NULL,NULL),(0,6414,'PYRIDIUM ','Phenazopyridine (200mg)','Y','chintans','2020-08-29 13:51:53',NULL,NULL),(0,6415,'450/300 GM','Rifampicin (450mg) + Isoniazid (300mg)','Y','chintans','2020-08-29 13:53:43',NULL,NULL),(0,6416,'RELIFOL','Herbal Formulation ','Y','chintans','2020-08-29 13:54:32',NULL,NULL),(0,6417,'RIGAGUT ','Rifaximin (400mg)','Y','chintans','2020-08-29 13:57:39',NULL,NULL),(0,6418,'5/160MG','Fenofibrate (160mg) + Rosuvastatin (5mg)','Y','chintans','2020-08-29 14:19:47',NULL,NULL),(0,6419,'10/75MG','Rosuvastatin (10mg) + Clopidogrel (75mg)','Y','Chintans','2020-08-29 16:23:21',NULL,NULL),(0,6420,'SGLTR','Remogliflozin Etabonate (100mg)','Y','Chintans','2020-08-29 16:28:41',NULL,NULL),(0,6421,'SHANAC',' Diclofenac Sodium 50 Mg, Paracetamol 325 Mg, Chlorzoxazone 250 Mg.','Y','Chintans','2020-08-29 16:29:56',NULL,NULL),(0,6422,'SHELCAL CT',' Calcium And Calcitriol (vitamin D)','Y','Chintans','2020-08-29 16:31:01',NULL,NULL),(0,6423,'SHELCAL XT','Calcium Vitamin D3 Mecobalamin L-methylfolate Calcium Pyridoxal-5-phosphate','Y','Chintans','2020-08-29 16:32:32',NULL,NULL),(0,6424,'SO','Esomeprazole (40mg)','Y','Chintans','2020-08-29 16:33:18',NULL,NULL),(0,6425,'STROCIT +','Citicoline (500mg) + Piracetam (800mg)','Y','Chintans','2020-08-29 16:34:21',NULL,NULL),(0,6426,'TIDE 20 ','Torsemide 20 ','Y','Chintans','2020-08-29 16:36:38',NULL,NULL),(0,6427,'TONOFOLIC ','Ferrous Fumarate,folic Acid And Zinc','Y','Chintans','2020-08-29 17:08:50',NULL,NULL),(0,6428,'VERTIN 24','Betahistine (24mg)','Y','Chintans','2020-08-29 17:11:02',NULL,NULL),(0,6429,'10/40MG','Domperidone (10mg) + Pantoprazole (40mg)','Y','Chintans','2020-08-29 18:38:39',NULL,NULL),(0,6430,'10/50MG','Diclofenac + Serratiopeptidase','Y','vikram','2020-09-01 12:14:02',NULL,NULL),(0,6431,'BUDESONIDE','Budesonide 9mg Controllrd Realease','Y','divyang','2020-09-01 14:16:39',NULL,NULL),(0,6432,'','Freeze-dried Live Attenuated Hepatitis A Vaccine (6.5ccid50)','Y','zeel','2020-09-02 16:35:56',NULL,NULL),(0,6433,'','Diphtheria + Haemophilus Type B + Pertussis  + T T + Poliomyelitis Virus Type 1 ,2,3','Y','zeel','2020-09-02 16:40:01',NULL,NULL),(0,6434,'DART','Paracetamol (300mg) + Caffeine (50mg) + Phenazone (150mg)','Y','Chintans','2020-09-02 16:50:07',NULL,NULL),(0,6435,'','Rabies Vaccine, Human (2.5iu)','Y','zeel','2020-09-03 10:35:57',NULL,NULL),(0,6436,'',' Ploysaccharide Typhoid Vaccine (25mcg)','Y','zeel','2020-09-03 10:41:24',NULL,NULL),(0,6437,'','Purified Vi Ploysaccharide Typhoid Vaccine (25mcg)','Y','zeel','2020-09-03 10:42:55',NULL,NULL),(0,6438,'','Bacillus Calmette-guerin (bcg)','Y','zeel','2020-09-03 10:45:16',NULL,NULL),(0,6439,'','Inactivated Influenza Vaccine (0.5ml)','Y','zeel','2020-09-03 10:47:39',NULL,NULL),(0,6440,'','Influvainactivated Influenza Vaccine (0.25ml)','Y','zeel','2020-09-03 10:48:47',NULL,NULL),(0,6441,'','Pneumococcal Polysaccharide Conjugate Vaccine (na)','Y','zeel','2020-09-03 11:00:20',NULL,NULL),(0,6442,'','Meningococcal Group A,c,w & Y','Y','zeel','2020-09-03 11:04:24',NULL,NULL),(0,6443,'','Diphtheria Toxoid  + T.t + Pertussis Toxoid + Hepatitis B + Haemophilus Type B ','Y','zeel','2020-09-03 11:08:17',NULL,NULL),(0,6444,'','Diphtheria + T.t + Pertussis + Hepatitis B + Haemophilus Type B ','Y','zeel','2020-09-03 11:10:11',NULL,NULL),(0,6445,'','Human Chorionic Gonadotropin (hcg) (10000iu)','Y','zeel','2020-09-03 11:13:44',NULL,NULL),(0,6446,'','Recombinant (10000iu)','Y','zeel','2020-09-03 11:18:57',NULL,NULL),(0,6447,'','Recombinant Human Erythropoietin Alfa (10000iu)','Y','zeel','2020-09-03 11:19:40',NULL,NULL),(0,6448,'','Recombinant','Y','zeel','2020-09-03 11:20:34',NULL,NULL),(0,6449,'','Rabis Antiserum','Y','zeel','2020-09-03 11:28:59',NULL,NULL),(0,6450,'100/325/15','Aceclofenac (100mg) + Paracetamol (325mg) + Serratiopeptidase (15mg)','Y','Chintans','2020-09-03 13:01:18',NULL,NULL),(0,6451,'NOBEL COLD','Cetirizine (5mg) + Paracetamol (325mg) + Nimesulide (100mg) + Caffeine (25mg)','Y','Chintans','2020-09-03 13:24:45',NULL,NULL),(0,6452,'HUMACE P','Aspirin-acetaminophen-caffeine','Y','Chintans','2020-09-03 13:35:28',NULL,NULL),(0,6453,'COFSIL',' amylmetacresol And Dichlorobenzyl Alcohol','Y','Chintans','2020-09-03 13:42:47',NULL,NULL),(0,6454,' FLURACIL ','Fluorouracil (250mg)','Y','Chintans','2020-09-03 13:46:29',NULL,NULL),(0,6455,'T 98 SYRP','Paracetamol (125mg/5ml)','Y','Chintans','2020-09-03 14:15:16',NULL,NULL),(0,6456,'ENOXAPARIN','Enoxaparin Sodium Injection Ip 80 Mg','Y','mihir','2020-09-05 15:55:26',NULL,NULL),(0,6457,'DAPSONE ','Dapsone','Y','sagar','2020-09-07 15:37:42',NULL,NULL),(0,6458,'','Silver Nitrate','Y','bhumit','2020-09-10 08:48:44',NULL,NULL),(0,6459,'','Silver Nitrate','Y','bhumit','2020-09-10 08:49:42',NULL,NULL),(0,6460,'ALF','Alfadol','Y','divyang','2020-09-12 15:26:54',NULL,NULL),(0,6461,'ALSACALCID','Alfacalcidol Cap 0.25 Mg','Y','divyang','2020-09-12 15:49:43',NULL,NULL),(0,6462,'ALFACALC','Alfacalcidol 0.5 Mg Cap','Y','divyang','2020-09-12 15:55:56',NULL,NULL),(0,6463,'NEXITO + ','Clonazepam (0.5mg) + Escitalopram Oxalate (5mg)','Y','chintans','2020-09-14 13:09:52',NULL,NULL),(0,6464,'TELMISARTA','Telmisartan (80mg) + Hydrochlorothiazide (12.5mg) ','Y','sagar','2020-09-17 19:33:28',NULL,NULL),(0,6465,'NATTOKINAS','Nattokinase Tablets (1x10)','Y','divyang','2020-09-18 16:14:23',NULL,NULL),(0,6466,'TERBINA','Terbinafine Tablets Ip 500 Mg','Y','mihir','2020-09-19 10:24:19',NULL,NULL),(0,6467,'NAXDOM 500','Domperidone And Naxproxen Sodium Tablet','Y','mihir','2020-09-21 15:59:57',NULL,NULL),(0,6468,'URSOCOL SR','Ursodeoxycholic Acid Sustained Reiease Tablets','Y','mihir','2020-09-21 16:52:23',NULL,NULL),(0,6469,'','Omeprazole','Y','mihir','2020-09-21 17:31:32',NULL,NULL),(0,6470,'NUTRI SUPL','Myo-inositol, Folic Acid And Vitamin D3','Y','mihir','2020-09-21 20:18:11',NULL,NULL),(0,6471,'LITHOSUN 3','Lithium Carbonate Tablets ','Y','mihir','2020-09-25 20:52:17',NULL,NULL),(0,6472,'HALO','Halobetasol (0.05% W/w) + Fusidic Acid (2% W/w)','Y','mihir','2020-09-28 14:51:56',NULL,NULL),(0,6473,'IPN','Isoprenaline','Y','vikram','2020-10-01 14:07:44',NULL,NULL),(0,6474,'','Cyproheptadine + Tricholine Citrate + Sorbitol','Y','jimit','2020-10-04 13:16:02',NULL,NULL),(0,6475,'','Beta-carotene ,borage Seed Oil,citrus Bioflavonoids ,elemental Chromium ,elemental Magnesium,elementalselenium,elementalzinc , Evening Primrose Oil, M','Y','jimit','2020-10-04 13:41:39',NULL,NULL),(0,6476,'','Aceclofenac + Rabeprazole','Y','jimit','2020-10-04 13:42:48',NULL,NULL),(0,6477,'','Aspirin (75mg) + Atorvastatin (10mg) + Clopidogrel (75mg)','Y','jimit','2020-10-04 13:47:49',NULL,NULL),(0,6478,'','Ubidecarenone (coenzyme Q10 )','Y','jimit','2020-10-04 13:49:09',NULL,NULL),(0,6479,'','Lenalidomide 5 Mg','Y','jimit','2020-10-04 13:55:04',NULL,NULL),(0,6480,'',' Maltodextrin Calcium Caseinate Edible Vegetable Oils (high Oleic Sunflower Oil, Soy Oil) Fructose, Cocoa Powder Fructooligosaccharide (fos) Soy Polys','Y','yashpal','2020-10-04 14:54:03',NULL,NULL),(0,6481,'','Sodiumacid Phosphate','Y','yashpal','2020-10-04 14:59:08',NULL,NULL),(0,6482,'','Sodium Phosphate','Y','yashpal','2020-10-04 15:00:28',NULL,NULL),(0,6483,'','Vitamin D','Y','yashpal','2020-10-04 16:12:41',NULL,NULL),(0,6484,'VAL','Valsartan','Y','bhumit','2020-10-04 16:41:30',NULL,NULL),(0,6485,'VALA','Valacyclovir','Y','bhumit','2020-10-04 16:48:01',NULL,NULL),(0,6486,'CHLOR','Chlorpromazine 100 Mg','Y','bhumit','2020-10-04 16:50:23',NULL,NULL),(0,6487,'CHLOR','Chlorpromazine 25 Mg','Y','bhumit','2020-10-04 16:51:21',NULL,NULL),(0,6488,'YULIPRI','Yulipristal Acetate','Y','bhumit','2020-10-04 16:53:06',NULL,NULL),(0,6489,'SALMONELLA','Vi Capsular Polysaccharide Of Salmonella Typhi','Y','bhumit','2020-10-04 16:56:30',NULL,NULL),(0,6490,'DEXTROME','Amylmetacresol + Dextromethorphan Hydrobromide','Y','bhumit','2020-10-04 17:11:34',NULL,NULL),(0,6491,'','Glimepiride (2 Mg) + Metformin (500 Mg) + Voglibose (0.3 Mg)','Y','bhumit','2020-10-04 17:16:49',NULL,NULL),(0,6492,'TRIOX','Trioxsalen','Y','bhumit','2020-10-04 17:18:51',NULL,NULL),(0,6493,'TRIOXY','Trioxysalen (25.0 Mg)','Y','bhumit','2020-10-04 17:22:18',NULL,NULL),(0,6494,'LINAGLIPT','Metformin (1000 Mg) + Linagliptin (2.5 Mg)','Y','bhumit','2020-10-04 17:29:49',NULL,NULL),(0,6495,'LINAGLI','Linagliptin','Y','bhumit','2020-10-04 17:31:24',NULL,NULL),(0,6496,'TINIDA','Tinidazole (500 Mg)','Y','bhumit','2020-10-04 17:33:50',NULL,NULL),(0,6497,'TINIDA','Tinidazole (300 Mg)','Y','bhumit','2020-10-04 17:34:22',NULL,NULL),(0,6498,'TORSEM','Spironolactone (25 Mg) + Torsemide (20 Mg)','Y','bhumit','2020-10-04 17:39:03',NULL,NULL),(0,6499,'','Fluticasone Propionate 0.5','Y','yashpal','2020-10-04 17:55:33',NULL,NULL),(0,6500,'','Rivastigmine (1.5mg)','Y','jimit','2020-10-05 09:39:06',NULL,NULL),(0,6501,'','Camphor+chlorothymol+eucalyptol+menthol+terpineol','Y','jimit','2020-10-05 09:42:14',NULL,NULL),(0,6502,'','Aloe Vera Extract, Vitamin E, Honey Extract, And Tea Tree Oil','Y','sagar','2020-10-05 16:14:04',NULL,NULL),(0,6503,'','Phenylephrine (0.10% W/w) + Beclometasone (0.025% W/w) + Lidocaine (2.50% W/w)','Y','sagar','2020-10-05 16:15:23',NULL,NULL),(0,6504,'','Boric Acid','Y','sagar','2020-10-05 16:17:20',NULL,NULL),(0,6505,'','Terbinafine (1% W/w) + Clobetasol (0.05% W/w) + Ofloxacin (0.75% W/w) + Ornidazole (2% W/w)','Y','sagar','2020-10-05 16:19:50',NULL,NULL),(0,6506,'','Beclometasone (0.025% W/w) + Neomycin (0.5% W/w) + Clotrimazole (1% W/w)','Y','sagar','2020-10-05 16:20:53',NULL,NULL),(0,6507,'','Beclometasone (0.025% W/w) + Neomycin (0.5% W/w) + Clotrimazole (1% W/w)','Y','sagar','2020-10-05 16:23:14',NULL,NULL),(0,6508,'','Eberconazole (1% W/w)','Y','sagar','2020-10-05 16:27:13',NULL,NULL),(0,6509,'','Estriol (1mg)','Y','sagar','2020-10-05 16:38:30',NULL,NULL),(0,6510,'','Hydroxyzine','Y','sagar','2020-10-05 16:41:24',NULL,NULL),(0,6511,'','Triamcinolone (0.1% W/w)','Y','sagar','2020-10-05 16:48:08',NULL,NULL),(0,6512,'ARIPIPRAZO','Aripiprazole (20mg)','Y','sagar','2020-10-05 20:22:51',NULL,NULL),(0,6513,'TAMOXI','Tamoxifen','Y','bhumit','2020-10-06 15:48:14',NULL,NULL),(0,6514,'PROPYPHE','Propyphenazone + Paracetamol + Caffeine','Y','bhumit','2020-10-06 16:04:03',NULL,NULL),(0,6515,'','Alteplase','Y','MIHIR','2020-10-06 19:46:20',NULL,NULL),(0,6516,'RISPER','Risperidone (4 Mg) + Trihexyphenidyl (2 Mg)','Y','bhumit','2020-10-07 11:16:36',NULL,NULL),(0,6517,'AKILOS MR','Aceclofenac + Pcm+ Chlorzoxazone','Y','Chintans','2020-10-08 12:55:42',NULL,NULL),(0,6518,'OVACARE FO','Myo-inositol, D-chiro Inositol, N-acetyl Cysteine And L-arginine.','Y','Chintans','2020-10-08 12:58:09',NULL,NULL),(0,6519,'CAP','Cephalexin ','Y','vikram','2020-10-09 15:27:51',NULL,NULL),(0,6520,'PROCTO','Proctoclysis Enema (phosphate Enema Bp)','Y','bhumit','2020-10-10 00:21:38',NULL,NULL),(0,6521,'ACNESTAR','Benzoyl Peroxide 2.5%','Y','kalpeshp','2020-10-11 11:02:11',NULL,NULL),(0,6522,'VERAPAMIL ','Verapamil (120mg)','Y','mihir','2020-10-12 18:50:51',NULL,NULL),(0,6523,'CREAM','Halobetasol + Salicylic Acid','Y','vikram','2020-10-15 15:21:25',NULL,NULL),(0,6524,'INJ','Arteether (alpha-beta)','Y','vikram','2020-10-16 11:57:41',NULL,NULL),(0,6525,'CODEINE','Triprolidine Hcl & Codeine Phosphate','Y','bhumit','2020-10-20 10:26:20',NULL,NULL),(0,6526,'CIL','Cilnidipine & Telmisartan','Y','jimit','2020-10-20 16:46:44',NULL,NULL),(0,6527,'LPAN','Licorice + Pterowhite + Arbutin + Niacinamide','Y','mihir','2020-10-20 19:40:51',NULL,NULL),(0,6528,'EU','Euphorbia Prostrata Extract (100mg)','Y','jimit','2020-10-21 14:30:23',NULL,NULL),(0,6529,'EU','Euphorbia Prostrata Extract (100mg) + Calcium Dobesilate (500mg)','Y','jimit','2020-10-21 14:31:48',NULL,NULL),(0,6530,'CHO','Choline Salicylate (9% W/w) + Lidocaine (2% W/w)','Y','jimit','2020-10-21 14:41:09',NULL,NULL),(0,6531,'FER','Feracrylum (1%)','Y','jimit','2020-10-23 09:34:38',NULL,NULL),(0,6532,'SILODO','Silodosin 4 Mg','Y','bhumit','2020-10-23 15:08:32',NULL,NULL),(0,6533,'LACTIT','Lactitol Monohydrate','Y','bhumit','2020-10-23 15:10:33',NULL,NULL),(0,6534,'BEVACIZUMA','Bevacizumab 400 Mg','Y','sagar','2020-10-24 20:24:32',NULL,NULL),(0,6535,' CARBOPLAT',' Carboplatin (450mg)','Y','sagar','2020-10-24 20:30:34',NULL,NULL),(0,6536,'ALO','Aloe Vera Gel + Pramoxine Hydrochloride','Y','harshadb','2020-10-27 20:00:13',NULL,NULL),(0,6537,'ASP','Aspirin (75mg) + Rosuvastatin (10mg) + Clopidogrel (75mg)','Y','harshadb','2020-10-27 20:02:40',NULL,NULL),(0,6538,'AMITRIPTYL','Amitriptyline+ Propranolol ','Y','sagar','2020-11-02 19:02:27',NULL,NULL),(0,6539,'','Rosuvastatin+aspirin+clopidogrel','Y','sagar','2020-11-02 19:09:23',NULL,NULL),(0,6540,'ESCITALOPR','Escitalopram 5 + Clonazepam 0.5mg','Y','divyang','2020-11-03 12:09:49',NULL,NULL),(0,6541,'OX','Clonazepam (0.25mg) + Escitalopram Oxalate (5mg)','Y','divyang','2020-11-03 12:18:57',NULL,NULL),(0,6542,'PRO','Progesteron','Y','jimit','2020-11-03 12:50:32',NULL,NULL),(0,6543,'APR','Aprepitant 125mg + Aprepitant 80mg','Y','ZEEL','2020-11-04 10:23:20',NULL,NULL),(0,6544,'','B Complex With Vitamin C And Zinc','Y','ZEEL','2020-11-04 12:18:32',NULL,NULL),(0,6545,'','Bosentan 62.5mg','Y','ZEEL','2020-11-04 12:25:40',NULL,NULL),(0,6546,'','Calcium With Vitamin D,c','Y','ZEEL','2020-11-04 12:34:23',NULL,NULL),(0,6547,'','Cilnidipine 10mg + Metoprolol Succinate 50mg		','Y','ZEEL','2020-11-06 10:20:43',NULL,NULL),(0,6548,'','Atorvastatin (5mg)','Y','ZEEL','2020-11-06 10:43:56',NULL,NULL),(0,6549,'','  clobakem 10mg Tab','Y','ZEEL','2020-11-06 10:47:43',NULL,NULL),(0,6550,'','Clomipramine (10mg)','Y','ZEEL','2020-11-06 10:49:58',NULL,NULL),(0,6551,'',' aspirin 75mg + Clopidogrel 75mg	','Y','ZEEL','2020-11-06 11:01:56',NULL,NULL),(0,6552,'',' Inositol+methyl Folate+vitamin D3	','Y','ZEEL','2020-11-06 11:43:38',NULL,NULL),(0,6553,'','Protease+amylase+lypase+cellulase','Y','ZEEL','2020-11-06 11:45:53',NULL,NULL),(0,6554,'','Sodium Valproate (500mg)','Y','ZEEL','2020-11-06 12:18:19',NULL,NULL),(0,6555,'','Sodium Valproate 333mg + Valproic Acid 145mg			','Y','ZEEL','2020-11-06 12:20:06',NULL,NULL),(0,6556,'','Estradiol 2mg','Y','ZEEL','2020-11-06 12:21:22',NULL,NULL),(0,6557,'','Dienogest 2mg','Y','ZEEL','2020-11-06 12:23:59',NULL,NULL),(0,6558,'','Estradiol (1mg)','Y','ZEEL','2020-11-06 12:30:05',NULL,NULL),(0,6559,'','Etodolac (600mg)','Y','ZEEL','2020-11-06 12:42:20',NULL,NULL),(0,6560,'','Febuxostat (20mg)','Y','ZEEL','2020-11-06 12:56:08',NULL,NULL),(0,6561,'','Calcitriol,calcium Carbonate,zinc,vitamin K,magnesium','Y','ZEEL','2020-11-06 13:26:55',NULL,NULL),(0,6562,'10.','Fludrocortisone ','Y','vikram','2020-11-09 11:10:34',NULL,NULL),(0,6563,'100 MCG','Fludrocortisone ','Y','vikram','2020-11-09 11:11:02',NULL,NULL),(0,6564,'PREDNISOLO','Prednisolone Acetate','Y','sagar','2020-11-10 00:57:52',NULL,NULL),(0,6565,'','  glycomet Gp 3 / 850mg ','Y','zeel','2020-11-10 13:15:44',NULL,NULL),(0,6566,'BENZ','Chlorpromazine (50mg) + Trihexyphenidyl (2mg) + Trifluoperazine (5mg)','Y','jimit','2020-11-10 16:20:49',NULL,NULL),(0,6567,'TRI','Trifluoperazine (5mg) + Chlorpromazine (50mg) + Trihexyphenidyl (2mg) ','Y','jimit','2020-11-10 16:24:02',NULL,NULL),(0,6568,'TRIFL','Trifluoperazine (5mg) + Trihexyphenidyl (2mg)','Y','jimit','2020-11-10 16:24:51',NULL,NULL),(0,6569,'TRIH','Trihexyphenidyl (2mg) + Trifluoperazine (5mg) ','Y','jimit','2020-11-10 16:27:01',NULL,NULL),(0,6570,'BENZH','Trifluoperazine 5mg + Benzhexol 2mg','Y','jimit','2020-11-10 16:28:16',NULL,NULL),(0,6571,'FENO','Fenofibrate (160mg) + Rosuvastatin (20mg)','Y','jimit','2020-11-10 18:27:11',NULL,NULL),(0,6572,'','Isosorbide Mononitrate (60mg)','Y','zeel','2020-11-11 11:01:47',NULL,NULL),(0,6573,'','Itraconazole (200mg)','Y','zeel','2020-11-12 12:51:25',NULL,NULL),(0,6574,'','Cyproterone 2mg + Ethinyl Estradiol (0.035mg)		','Y','zeel','2020-11-12 12:55:52',NULL,NULL),(0,6575,'','Amitriptyline (12.5mg) + Chlordiazepoxide (5mg)		','Y','zeel','2020-11-12 13:05:02',NULL,NULL),(0,6576,'','Amitriptyline (25mg) + Chlordiazepoxide (10mg)		','Y','zeel','2020-11-12 13:05:36',NULL,NULL),(0,6577,'','Diloxanide 375mg + Ornidazole 250mg + Simethicone 25mg			','Y','zeel','2020-11-19 12:38:33',NULL,NULL),(0,6578,'SERRATIOP','Serratiopeptidase 10mg ','Y','divyang','2020-11-19 18:14:45',NULL,NULL),(0,6579,'BILASTINE ','Bilastine 20mg Montelukast 10mg ','Y','divyang','2020-11-19 18:44:50',NULL,NULL),(0,6580,'BILAZEST ','Bilastine ','Y','divyang','2020-11-19 18:49:10','sagar','2020-11-20 03:47:54'),(0,6581,'','Cefixime (200) & Ofloxacin','Y','zeel','2020-11-21 10:39:56',NULL,NULL),(0,6582,'','Inositol,vitamin,picolinate','Y','zeel','2020-11-21 10:48:05',NULL,NULL),(0,6583,'','Ethinyl Estradiol (0.03mg) + Desogestrel (0.15mg)		','Y','zeel','2020-11-21 10:49:18',NULL,NULL),(0,6584,'','Hydrochlorothiazide (12.5mg) + Olmesartan Medoxomil (20mg)			','Y','zeel','2020-11-21 10:57:39',NULL,NULL),(0,6585,'','Hydrochlorothiazide (12.5mg) + Olmesartan Medoxomil (20mg)			(40 Mg)','Y','zeel','2020-11-21 10:59:38',NULL,NULL),(0,6586,'','Hydrochlorothiazide (12.5mg) + Olmesartan Medoxomil (40mg)			','Y','zeel','2020-11-21 11:01:28',NULL,NULL),(0,6587,'','Hydrochlorothiazide (12.5mg) + Olmesartan Medoxomil (40mg)			','Y','zeel','2020-11-21 11:03:14',NULL,NULL),(0,6588,'','Alendronic Acid (70mg)','Y','zeel','2020-11-23 10:19:49',NULL,NULL),(0,6589,'','Methylcobalamin (750mcg) + Pregabalin (150mg)		','Y','zeel','2020-11-23 11:43:05',NULL,NULL),(0,6590,'','Primosa Oil','Y','zeel','2020-11-23 11:54:29',NULL,NULL),(0,6591,'','Canagliflozin (100mg)','Y','zeel','2020-11-23 12:02:21',NULL,NULL),(0,6592,'','Pyrazinamide (1000mg)','Y','zeel','2020-11-23 12:03:43',NULL,NULL),(0,6593,'','Sodium Hyaluronate,sodium Sulfate,peptides Type 1,vitamin C','Y','zeel','2020-11-23 12:43:38',NULL,NULL),(0,6594,'','Carboprost (250mcg)','Y','zeel','2020-11-23 12:49:59',NULL,NULL),(0,6595,'','Nitroprusside (50mg)','Y','zeel','2020-11-23 12:58:40',NULL,NULL),(0,6596,'','Piperacillin (4000mg) + Tazobactum (500mg)	','Y','zeel','2020-11-25 14:27:59',NULL,NULL),(0,6597,'','Ropivacaine (0.5%)','Y','zeel','2020-11-25 14:29:10',NULL,NULL),(0,6598,'ZINC&DOXYC','Zinc&doxycycline&ivermectin','Y','sagar','2020-11-26 18:55:05',NULL,NULL),(0,6599,'','Drfhg','Y','viresh','2020-11-28 19:50:18',NULL,NULL),(0,6600,'THEO','Salbutamol 2 Mg+theophylline 100 Mg','Y','viresh','2020-11-28 19:54:07',NULL,NULL),(0,6601,'BT','Brimonidine + Timolol','Y','divyang','2020-12-02 13:06:07',NULL,NULL),(0,6602,'CRAMPSOL','Calcium +mangnesium +vitamin E +l-carnitine','Y','viresh','2020-12-04 18:42:57',NULL,NULL),(0,6603,'FAVIVIR','Favipiravir 800 Mg','Y','viresh','2020-12-07 22:00:31',NULL,NULL),(0,6604,'DICLOMOL ','Serratiopeptidase And Diclofenac Sodium','Y','viresh','2020-12-08 17:18:59',NULL,NULL),(0,6605,'LUBRIJOINT','Glucosamine 1500 Mg Tab ','Y','viresh','2020-12-08 19:20:36',NULL,NULL),(0,6606,'CAL','Calcium Folinate','Y','jimit','2020-12-10 14:05:13',NULL,NULL),(0,6607,'AZEFLOFT','Azelastine Hydrochloride And Fluticasone Furoate ','Y','viresh','2020-12-12 18:43:31',NULL,NULL),(0,6608,'ENCORATE ','Sodium Valproate And Valproic Acid Controlled Release','Y','viresh','2020-12-12 19:06:47',NULL,NULL),(0,6609,'GRILICTUS ','Terbutaline Sulphate And Bromhexine Hydrochloride','Y','viresh','2020-12-14 18:52:26',NULL,NULL),(0,6610,'PULMOFIB ','Pirfenidon ','Y','viresh','2020-12-14 19:04:23',NULL,NULL),(0,6611,'','Pirfnidone 801 Mg','Y','viresh','2020-12-14 19:05:27',NULL,NULL),(0,6612,'NINTENA','Nintedanib Soft Gelatin','Y','viresh','2020-12-14 19:12:21',NULL,NULL),(0,6613,'ROCUNIUM','Rocuronum Bromide','Y','viresh','2020-12-15 18:49:55',NULL,NULL),(0,6614,'PIRFENEX','Pirfenidone (400mg)','Y','viresh','2020-12-15 20:59:59',NULL,NULL),(0,6615,'NORTIMER','Nortriptyline 25 Mg','Y','viresh','2020-12-16 16:01:36',NULL,NULL),(0,6616,'ROPARK ','Ropinirole','Y','viresh','2020-12-16 16:10:59',NULL,NULL),(0,6617,'','Rabeprazole Sodium &levosulpiride','Y','viresh','2020-12-16 17:46:52',NULL,NULL),(0,6618,'SEVECORD','Sevelamer Carbonate 400mg','Y','viresh','2020-12-18 11:18:09',NULL,NULL),(0,6619,'SEVECORD','Sevelamer Carbonate 800mg','Y','viresh','2020-12-18 11:22:24',NULL,NULL),(0,6620,'AMPOXIN ','Ampicillin & Cloxacillin','Y','viresh','2020-12-18 17:30:42',NULL,NULL),(0,6621,'B 3 CURE','Nicotinamide ','Y','viresh','2020-12-21 18:31:50',NULL,NULL),(0,6622,'CEREBROGEN','Cerebroprotein Hydrolysate','Y','viresh','2020-12-22 17:16:18',NULL,NULL),(0,6623,'MINIRIN','Desmopressin Acetate ','Y','viresh','2020-12-23 16:51:45',NULL,NULL),(0,6624,'OCAL-C','Calcium Citrate,magnesium,zinc &vitamin D3','Y','viresh','2020-12-23 18:57:15',NULL,NULL),(0,6625,'OCAL-500','Calcium Carbonate, Magnesium, Zinc & Vitamin D3','Y','viresh','2020-12-23 19:06:32',NULL,NULL),(0,6626,'GEMBIN','Gemcitabine 1000 Mg','Y','viresh','2020-12-24 13:54:47',NULL,NULL),(0,6627,'GEMBIN','Gemcitabine 200 Mg Inj','Y','viresh','2020-12-24 14:01:24',NULL,NULL),(0,6628,'THYRONORM','Thyroxine Sodium','Y','viresh','2020-12-24 19:17:17',NULL,NULL),(0,6629,'NEVSOFT','Cetyl Alcohol & Stearyl Alcohol','Y','viresh','2020-12-24 20:11:29',NULL,NULL),(0,6630,'METHYLERGO','Methylergometrine (0.2mg)','Y','SAGAR','2020-12-24 22:40:42',NULL,NULL),(0,6631,'GEN','Genciclovir 500 Mg','Y','divyang','2020-12-25 18:16:15',NULL,NULL),(0,6632,'DIVALCAD','Divalproex Sodium ','Y','viresh','2020-12-26 12:02:27',NULL,NULL),(0,6633,'MYONEXT ','Myo-lnositol,green Tea Extract,d-chiro-lnositol,vitamin D3, L-methyltetrahydrofolate Calcium,chromiun Picolinate','Y','viresh','2020-12-26 12:42:20',NULL,NULL),(0,6634,'MYONEXT','Myo-lnositol,melatonin & Folic Acid','Y','viresh','2020-12-26 12:49:14',NULL,NULL),(0,6635,'MYONEXT','Myo-lnositol 1gm+ Melatonin 1.5mg &folic Acid 1000mcg ','Y','viresh','2020-12-26 12:53:17',NULL,NULL),(0,6636,'OXYBRO ','Montelukast &acebrophylline (sustained Release) (10mg+200mg)','Y','viresh','2020-12-26 13:05:03',NULL,NULL),(0,6637,'SULPICAD','Amisulpride 200 Mg','Y','viresh','2020-12-26 13:20:08',NULL,NULL),(0,6638,'SULPICAD','Amisulpride 50 Mg','Y','viresh','2020-12-26 13:24:00',NULL,NULL),(0,6639,'SYNDOPA ','Levodopa & Carbidopa','Y','viresh','2020-12-26 15:28:26',NULL,NULL),(0,6640,'GANCIC','Ganciclovir 500 Mg','Y','bhumit','2020-12-26 15:34:31',NULL,NULL),(0,6641,'POLIO','Polio Vaccine','Y','bhumit','2020-12-29 10:25:38',NULL,NULL),(0,6642,'','Doripenem ','Y','viresh','2020-12-29 19:12:24',NULL,NULL),(0,6643,'GANCI','Ganciclovir ','Y','bhumit','2020-12-30 10:38:15',NULL,NULL),(0,6644,'','Sucralfate 1 Gm & Oxetacaine 10 Mg','Y','viresh','2020-12-30 14:17:25',NULL,NULL),(0,6645,'','S-adenosyl Methionine','Y','viresh','2020-12-30 14:55:50',NULL,NULL),(0,6646,'','Amitriptyline Hydrochloride ','Y','viresh','2020-12-30 15:17:01',NULL,NULL),(0,6647,'','Amitriptyline & Gabapentin ','Y','viresh','2020-12-30 15:32:32',NULL,NULL),(0,6648,'','Povidone Iodine Germicide Gargle','Y','viresh','2020-12-30 16:04:46',NULL,NULL),(0,6649,'','Fosfomycin Tromethamine 3 Gm','Y','viresh','2020-12-30 17:02:50',NULL,NULL),(0,6650,'MYOTOP-','Tolperison Hydrochloride 450mg &diclofenac Sodium 100mg','Y','viresh','2020-12-31 19:43:09',NULL,NULL),(0,6651,'MYOTOP','Tolperison Hydrochloride 150mg','Y','viresh','2020-12-31 19:48:57',NULL,NULL),(0,6652,'EPTUS 50','Eplerenone 50 Mg','Y','viresh','2021-01-01 15:21:56',NULL,NULL),(0,6653,'','Sodium Bicarbonate 500 Mg','Y','vikram','2021-01-08 12:03:54',NULL,NULL),(0,6654,'CTD-T','Chlorthalidone 6.25mg & Telmisartan 40mg','Y','viresh','2021-01-08 14:24:42',NULL,NULL),(0,6655,'OXRA','Dapagliflozin','Y','viresh','2021-01-08 14:42:40',NULL,NULL),(0,6656,'DIPROBATE ','Betamethsone Dipropionate & Zinc Sulphate','Y','viresh','2021-01-11 16:43:21',NULL,NULL),(0,6657,'ISTAMET','Sitagliptin 50mg +metformin 500mg','Y','viresh','2021-01-18 13:39:38',NULL,NULL),(0,6658,'','Lansoprazole,clarithromycin & Tinidazole','Y','viresh','2021-01-19 16:01:25',NULL,NULL),(0,6659,'','Probiotic-prebiotic &immunobiotic','Y','viresh','2021-01-21 18:53:17',NULL,NULL),(0,6660,'','Liraglutide','Y','viresh','2021-01-21 19:07:26',NULL,NULL),(0,6661,'','L-glutamine','Y','viresh','2021-01-22 13:58:41',NULL,NULL),(0,6662,'','Aceclofenac : 100mg + Paracetamole - 325mg + Thiocolchicoside - 4mg','Y','sagar','2021-01-25 19:14:12',NULL,NULL),(0,6663,'','20% Vitamin C Serum','Y','viresh','2021-01-25 20:11:35',NULL,NULL),(0,6664,'','Hydroquinone, Tretioin & Fluocinolone Acetonide','Y','viresh','2021-01-25 20:21:11',NULL,NULL),(0,6665,'','Rosuvastatin 20 And Aspirin 150','Y','viresh','2021-02-03 17:21:47',NULL,NULL),(0,6666,'','Dill Oil,fennel Oil With Simethione','Y','viresh','2021-02-04 19:18:12',NULL,NULL),(0,6667,'','Warfarin Sodium','Y','viresh','2021-02-04 19:37:17',NULL,NULL),(0,6668,'ANIDULA','Anidulafungin','Y','bhumit','2021-02-05 22:28:47',NULL,NULL),(0,6669,'','Alpha Lipoic Acid,biotin,chromium Polynicotinate & Zinc','Y','viresh','2021-02-08 17:56:37',NULL,NULL),(0,6670,'','Testosterone Inj.','Y','viresh','2021-02-09 17:02:52',NULL,NULL),(0,6671,'','Hydroquinone,tretinoin & Allantoin','Y','viresh','2021-02-10 19:30:50',NULL,NULL),(0,6672,'','Collagen Peptide Type-ii,chondroitin Sulphate Sodium','Y','viresh','2021-02-12 11:20:19',NULL,NULL),(0,6673,'','Eperison Hydrochloride Sustained Release','Y','viresh','2021-02-15 18:39:51',NULL,NULL),(0,6674,'','Isotretinoin Cap','Y','viresh','2021-02-15 18:55:59',NULL,NULL),(0,6675,'','Sertaconazole Nitrate & Mometasone Furoate','Y','viresh','2021-02-15 19:27:44',NULL,NULL),(0,6676,'','Sertaconazole Nitrate ','Y','viresh','2021-02-16 19:39:39',NULL,NULL),(0,6677,'','Pramipexole 0.52 Mg ','Y','viresh','2021-02-19 18:42:09',NULL,NULL),(0,6678,'','Eltrombopag','Y','viresh','2021-02-20 19:34:13',NULL,NULL),(0,6679,'','Melatonin Tab 3mg','Y','viresh','2021-02-23 18:05:28',NULL,NULL),(0,6680,'','Montelukast,levocetirizine Dihydrochloride & Ambroxol Hydrochloride','Y','viresh','2021-02-23 20:06:42',NULL,NULL),(0,6681,'GRANULES','L-arginine & Proanthocyanidin Granules','Y','vikram','2021-02-24 10:54:31',NULL,NULL),(0,6682,'','Insulin Degludec','Y','viresh','2021-02-25 19:14:56',NULL,NULL),(0,6683,'','Levocetirizine Dihydrochloride & Montelukast Sodium','Y','viresh','2021-02-26 11:39:38',NULL,NULL),(0,6684,'','Etoricoxib 60mg &paracetamol 325mg','Y','viresh','2021-02-26 19:21:18',NULL,NULL),(0,6685,'','Etoricoxib 60mg & Paracetamol325mg','Y','viresh','2021-02-26 19:23:10',NULL,NULL),(0,6686,'','Finasteride 1 Mg','Y','viresh','2021-03-01 18:45:16',NULL,NULL),(0,6687,'','Silicon Sunscreen Gel','Y','vikram','2021-03-02 12:29:07',NULL,NULL),(0,6688,'','Gabapentin,ketoprofen & Methyl Salicylate','Y','viresh','2021-03-03 12:59:33',NULL,NULL),(0,6689,'','Zinc Oxide Uvbspf 50+','Y','viresh','2021-03-03 18:50:46',NULL,NULL),(0,6690,'','Phenylephrine + Chlorpheniramine + Paracetamol','Y','vikram','2021-03-04 11:45:12',NULL,NULL),(0,6691,'','Clozapine 200','Y','viresh','2021-03-05 18:11:34',NULL,NULL),(0,6692,'','Favipiravir 400','Y','viresh','2021-03-10 19:34:37',NULL,NULL),(0,6693,'','Cranbny & D-mannose','Y','viresh','2021-03-13 18:28:47',NULL,NULL),(0,6694,'','Cranberry & D-mannose Tab','Y','viresh','2021-03-13 18:30:20',NULL,NULL),(0,6695,'','Pyridoxine Hydrochloride, Nicotinamide,cyanocobalamin,folic Asid With Chromium, Zinc &selenium','Y','viresh','2021-03-14 11:16:47',NULL,NULL),(0,6696,'','Paraffin Gauze Dressing','Y','viresh','2021-03-14 11:23:32',NULL,NULL),(0,6697,'','Tretinoin And Clindamycin','Y','viresh','2021-03-15 16:09:09',NULL,NULL),(0,6698,'','Octinoxate, Avobenzone, Oxybenzone,octocrylene & Zinc Oxide','Y','viresh','2021-03-15 18:59:31',NULL,NULL),(0,6699,'','Selenium Sulfide Topical Suspe','Y','viresh','2021-03-17 17:37:38',NULL,NULL),(0,6700,'','Obeticholic Acid 10 Mg','Y','viresh','2021-03-22 18:40:38',NULL,NULL),(0,6701,'','Calcium Acetate 667mg','Y','VIRESH','2021-03-25 17:46:23',NULL,NULL),(0,6702,'','Ceftaroline Fosamil','Y','viresh','2021-03-26 21:37:59',NULL,NULL),(0,6703,'','Flavoxate Hydrochloride ','Y','viresh','2021-03-27 17:18:56',NULL,NULL),(0,6704,'','Salmeterol & Fluticasone Propionate','Y','viresh','2021-03-27 18:54:14',NULL,NULL),(0,6705,'','Delicious  ','Y','viresh','2021-04-01 18:58:26',NULL,NULL),(0,6706,'','Phenytoin Sodium Extended Release','Y','viresh','2021-04-01 19:36:49',NULL,NULL),(0,6707,'','Bupropion Hydrochloride Sr','Y','viresh','2021-04-06 17:29:27',NULL,NULL),(0,6708,'','Linagliptin 2.5mg, Metformin Hydro 500mg ','Y','viresh','2021-04-07 19:09:20',NULL,NULL),(0,6709,'','Mycophenolate Mofetil','Y','viresh','2021-04-07 20:04:23',NULL,NULL),(0,6710,'','Itolizumab 100mg Inj','Y','viresh','2021-04-13 12:20:14',NULL,NULL),(0,6711,'','Baricitinib 4mg ','Y','viresh','2021-04-17 10:40:44',NULL,NULL),(0,6712,'','Methylprednisolone (125mg)','Y','viresh','2021-04-24 20:59:16',NULL,NULL),(0,6713,'','Tofacitinib Tab','Y','viresh','2021-04-26 17:01:26',NULL,NULL),(0,6714,'','Liposomal Amphotericin B','Y','viresh','2021-04-27 16:59:53',NULL,NULL),(0,6715,'','N-acetyl-l-cysteine','Y','viresh','2021-04-29 21:48:07',NULL,NULL),(0,6716,'','Natamycin Ophthalmic','Y','viresh','2021-05-03 19:05:50',NULL,NULL),(0,6717,'','Posaconazole Gastro-resistant','Y','viresh','2021-05-05 21:22:11',NULL,NULL),(0,6718,'','Apixaban 5 Mg','Y','viresh','2021-05-06 18:18:25',NULL,NULL),(0,6719,'','Infliximab Powder','Y','viresh','2021-05-07 18:23:08',NULL,NULL),(0,6720,'','Biotin,-methylfolate Calcium, Methylcobalamin','Y','viresh','2021-05-08 18:15:20',NULL,NULL),(0,6721,'DISCOVERY','Metaformin Hydrochlore Prolonged Release & Glimepiride','Y','VIRESH','2021-05-11 11:58:22',NULL,NULL),(0,6722,'LORAZEPAM','Lorazepam','Y','vikram','2021-05-11 22:43:30',NULL,NULL),(0,6723,'NATCO','Barinat 2mg','Y','VIRESH','2021-05-17 11:14:11',NULL,NULL),(0,6724,'SII','Diphtheria &tetanus Vaccine','Y','VIRESH','2021-05-19 12:13:16',NULL,NULL),(0,6725,'VOGLYSON-','Voglibose 0.2mg,glimepiride 1 Mg & Metformin Hydrochloride 500 Mg','Y','viresh','2021-05-19 16:48:12',NULL,NULL),(0,6726,'GUFIC','Minocycline','Y','viresh','2021-05-19 18:02:32',NULL,NULL),(0,6727,'DR.REDDY','Analgesic &antiseptic Gel','Y','VIRESH','2021-05-20 10:53:39',NULL,NULL),(0,6728,'MSN','Posaconazole Inj','Y','viresh','2021-05-24 20:29:39',NULL,NULL),(0,6729,'UNIT','Levonorgestrel','Y','VIRESH','2021-05-27 10:49:13',NULL,NULL),(0,6730,'STRIP','Cerebroprotein Hydrolysate','Y','viresh','2021-05-27 17:56:55',NULL,NULL),(0,6731,'UNIT','Fluconazole','Y','viresh','2021-05-29 14:09:27',NULL,NULL),(0,6732,'ABBOT','Vitamins, Minerals,melatonin,biotin  & Millet Seed','Y','viresh','2021-05-29 15:55:11',NULL,NULL),(0,6733,'UNIT','Menotropin Inj','Y','viresh','2021-05-29 17:03:03',NULL,NULL),(0,6734,'UNIT','Sterile Co-trimoxazole','Y','viresh','2021-06-03 15:03:25',NULL,NULL),(0,6735,'UNIT','Ertapenem Sodium','Y','viresh','2021-06-04 10:34:55',NULL,NULL),(0,6736,'INJ','Mycobacterium W (heat Killed)','Y','viresh','2021-06-04 14:15:07',NULL,NULL),(0,6737,'STRIP','Inosine Monophosphate, Agmatine Sulphate & L-carnosine','Y','viresh','2021-06-04 17:03:01',NULL,NULL),(0,6738,'STRIP','Dehydropiandrosterone Melatonin & Coenzyme Q10 Soft Gelatin','Y','viresh','2021-06-04 17:18:22',NULL,NULL),(0,6739,'STRIP','Mefenamic Acid & Paracetamol','Y','viresh','2021-06-04 20:41:36',NULL,NULL),(0,6740,'STRIP','Satranidazole','Y','viresh','2021-06-05 18:40:54',NULL,NULL),(0,6741,'STRIP','Biotin','Y','viresh','2021-06-05 19:16:33',NULL,NULL),(0,6742,'GEL','Nadifloxacin & Adapalene','Y','viresh','2021-06-07 14:06:23',NULL,NULL),(0,6743,'DROP','Olopatadine Hydrochloride','Y','viresh','2021-06-08 18:35:30',NULL,NULL),(0,6744,'KIT','Combipack Of Mifepristone & Misoprostol','Y','viresh','2021-06-10 12:30:10',NULL,NULL),(0,6745,'STRIP','Brivaracetam','Y','viresh','2021-06-11 18:00:00',NULL,NULL),(0,6746,'STRIP','Prucalopride  (2mg)','Y','viresh','2021-06-12 19:33:10',NULL,NULL),(0,6747,'AMPU','Flumazenil','Y','viresh','2021-06-14 18:13:47',NULL,NULL),(0,6748,'INJ','Meropenem & Sulbactam','Y','VIRESH','2021-06-16 11:33:04',NULL,NULL),(0,6749,'INJ','Meropenem & Sulbactam (edta)','Y','VIRESH','2021-06-16 12:29:21',NULL,NULL),(0,6750,'CREAM','Ozenoxacin 1%','Y','viresh','2021-06-17 19:25:10',NULL,NULL),(0,6751,'INJ','Cefuroxime Sodium','Y','viresh','2021-06-18 18:50:02',NULL,NULL),(0,6752,'STRIP','Remogliflozin Etabonate 100mg & Vildagliptin 50 Mg','Y','viresh','2021-06-18 19:10:45',NULL,NULL),(0,6753,'STRIP','Vildagliptin 50mg & Metformin Hydro','Y','VIRESH','2021-06-21 11:09:49',NULL,NULL),(0,6754,'STRIP','Valganciclovir','Y','VIRESH','2021-06-21 17:46:23',NULL,NULL),(0,6755,'STRIP','Bisoprolol','Y','VIRESH','2021-06-24 17:10:18',NULL,NULL),(0,6756,'STRIP','Paracetamol Sr','Y','viresh','2021-06-25 20:18:06',NULL,NULL),(0,6757,'CREAM','Nifedipine & Lidocaine','Y','VIRESH','2021-06-28 11:32:59',NULL,NULL),(0,6758,'E+C+P+P','Ergotamine+caffeine+prochlorperazine+paracetamol','Y','VIKRAM','2021-06-28 17:23:04',NULL,NULL),(0,6759,'H S','Hair Serum','Y','VIRESH','2021-06-28 19:25:05',NULL,NULL),(0,6760,'O D','Opipramol Dihydrochloride','Y','VIRESH','2021-06-28 20:15:39',NULL,NULL),(0,6761,'P B S','Palmein + Bio-optimized + Standardized Red','Y','VIRESH','2021-06-29 17:38:29',NULL,NULL),(0,6762,'D E','Drospirenone & Ethinyletradiol','Y','VIRESH','2021-06-30 16:32:34',NULL,NULL),(0,6763,'L-C,C,Z,L,','L-carnitine+coenzyme Q10+zinc+lycopene+astaxanthin','Y','VIRESH','2021-06-30 16:44:34',NULL,NULL),(0,6764,'P N','Phenylephrine + Naphazoline','Y','VIRESH','2021-06-30 18:24:29',NULL,NULL),(0,6765,'BC,ZO','Benzalkonium Chloride & Zinc Oxide','Y','VIRESH','2021-07-01 19:15:30',NULL,NULL),(0,6766,'TAB','Taurine + Acetylcycsteine','Y','vikram','2021-07-02 16:24:50',NULL,NULL),(0,6767,'DROP','Dorzolamide','Y','vikram','2021-07-02 17:19:20',NULL,NULL),(0,6768,'SYRUP','Digestive Enzymes','Y','VIRESH','2021-07-05 12:09:49',NULL,NULL),(0,6769,'TAB','Budesonide+glycopyrronium & Formoterol','Y','VIRESH','2021-07-05 19:35:23',NULL,NULL),(0,6770,'INJ','Methocarbamol-300 & Diclofenac Sodium-50','Y','VIRESH','2021-07-08 11:03:07',NULL,NULL),(0,6771,'INJ','Methocarbamol-100mg','Y','VIRESH','2021-07-08 11:08:06',NULL,NULL),(0,6772,'SACHET','2-deoxy-d-glucose Oral Powder','Y','VIRESH','2021-07-08 13:23:32',NULL,NULL),(0,6773,'TAB','Mosapride Citrate & Activated Dimethicone','Y','VIRESH','2021-07-09 16:46:33',NULL,NULL),(0,6774,'INJ','Benzathine Penicillin','Y','VIRESH','2021-07-10 15:31:02',NULL,NULL),(0,6775,'POWDER','High Protein','Y','VIRESH','2021-07-10 23:34:33',NULL,NULL),(0,6776,'TAB','Ursodeoxycholic Acid 150mg','Y','VIRESH','2021-07-11 01:01:51',NULL,NULL),(0,6777,'TAB','Benfotiamine+alph Lipoic Acid+mecobalamin & Pyridoxine','Y','VIRESH','2021-07-12 18:06:30',NULL,NULL),(0,6778,'INJ','Tigecycline 50mg','Y','VIRESH','2021-07-14 16:52:06',NULL,NULL),(0,6779,'TAB','Clobazam 10 Mg','Y','VIKRAM','2021-07-16 12:16:48',NULL,NULL),(0,6780,'TAB','Tranexmic Acid(250mg)+ethamsylate(250mg)','Y','VIRESH','2021-07-19 13:36:15',NULL,NULL),(0,6781,'SACHET','Racecadotril+saccharomyces Boulardii','Y','VIRESH','2021-07-20 11:57:55',NULL,NULL),(0,6782,'GEL','Clindamycin Phosphate+nicotinamide','Y','VIRESH','2021-07-20 12:00:35',NULL,NULL),(0,6783,'SYRUP','Cefixime Oral Susp.','Y','VIRESH','2021-07-22 18:14:37',NULL,NULL),(0,6784,'SYRUP','Sodium Picosulfate Oral','Y','VIRESH','2021-07-23 18:45:01',NULL,NULL),(0,6785,'TABLET','Sitagliptin Phosphate','Y','VIRESH','2021-07-29 14:57:07',NULL,NULL),(0,6786,'LEAVAGE','Polyethylene Glycol+sodium Sulphate+nacl+kcl+nahco3','Y','VIKRAM','2021-07-31 13:21:53',NULL,NULL),(0,6787,'POWDER','Poiyethylene Glycol 3350, Oral Solution','Y','VIRESH','2021-07-31 15:12:10',NULL,NULL),(0,6788,'TABLET','Haloperidol 0.5mg','Y','VIRESH','2021-08-05 17:52:15',NULL,NULL),(0,6789,'TABLETS','Gabapentin 100mg & Nortriptyline','Y','VIRESH','2021-08-06 18:34:36',NULL,NULL),(0,6790,'TAB','Voglibose 0.2 ,metformin Hyd 500mg','Y','VIRESH','2021-08-07 17:04:22',NULL,NULL),(0,6791,'TABLETS','Perampanel','Y','VIRESH','2021-08-10 11:04:46',NULL,NULL),(0,6792,'TABLETS','D-biotin+n-acetyl + L-cysteine+vitami&minera','Y','VIRESH','2021-08-10 11:35:10',NULL,NULL),(0,6793,'TABLETS','Terbinafine 250mg','Y','VIRESH','2021-08-12 10:24:06',NULL,NULL),(0,6794,'SYRUP','Bilastine Oral Solu..','Y','VIRESH','2021-08-13 16:20:58',NULL,NULL),(0,6795,'SUSPE','Clotrimazole + Seleniumsulfide','Y','VIRESH','2021-08-13 17:48:11',NULL,NULL),(0,6796,'TABLETS','Amlodipine 5mg +chlorthalidone 12.5mg','Y','VIRESH','2021-08-23 15:47:02',NULL,NULL),(0,6797,'INJECTION','Lignocaine Hydrochloride And Dextrose Injection','Y','VIRESH','2021-08-24 12:43:47',NULL,NULL),(0,6798,'SYP','Sucralfate (1000mg) + Oxetacaine (20mg)','Y','vikram','2021-08-24 15:18:48',NULL,NULL),(0,6799,'GEL','Vaginal Gel','Y','VIRESH','2021-08-24 17:21:43',NULL,NULL),(0,6800,'CREAM','Beclomethasone Dipropinate + Fusidic Acid','Y','VIRESH','2021-08-26 16:35:48',NULL,NULL),(0,6801,'TABLETS','Rosuvastatin 20mg + Fenofibrate 160mg','Y','VIRESH','2021-08-27 21:40:52',NULL,NULL),(0,6802,'TABLETS','Povidone-iodine Vaginal Pessaries','Y','VIRESH','2021-08-31 17:22:05',NULL,NULL),(0,6803,'CREAM','Sucralfate,metronidazole + Lignocaine','Y','VIRESH','2021-08-31 18:52:37',NULL,NULL),(0,6804,'CREAM','Lignocane & Prilocaine','Y','VIRESH','2021-08-31 19:15:24',NULL,NULL),(0,6805,'POWDER','Dietry Nutritional Supplement','Y','VIRESH','2021-09-01 16:44:18',NULL,NULL),(0,6806,'TABLETS','Metoprolol Succinate Er & Telmisartan','Y','VIRESH','2021-09-06 13:31:07',NULL,NULL),(0,6807,'TABLETS','Amino Acid,vitamins,minerals &antioxidants','Y','DIVYANG','2021-09-06 18:15:44',NULL,NULL),(0,6808,'TABLETS','Myo-inositol,d-chiro-inositol,chromium &vitamin D3','Y','DIVYANG','2021-09-06 18:25:24',NULL,NULL),(0,6809,'TABLETS','Cefixime 400mg','Y','VIRESH','2021-09-07 18:19:30',NULL,NULL),(0,6810,'PATCH','Buprinorphine 5 Mg','Y','vikram','2021-09-08 11:57:42',NULL,NULL),(0,6811,'PATCH','Buprinorphine 10 Mg','Y','vikram','2021-09-08 11:58:06',NULL,NULL),(0,6812,'PATCH','Buprenorphine 10 Mg','Y','VIRESH','2021-09-14 11:03:57',NULL,NULL),(0,6813,'PATCH','Buprenorphine 10 Mg','Y','VIRESH','2021-09-14 11:07:04',NULL,NULL),(0,6814,'PATCH','Nicotine','Y','VIRESH','2021-09-14 11:08:56',NULL,NULL),(0,6815,'PATCH','Nicotine','Y','VIRESH','2021-09-14 11:09:52',NULL,NULL),(0,6816,'PATCH','Nicotine','Y','VIRESH','2021-09-14 11:11:29',NULL,NULL),(0,6817,'DROPS','Timolol Maleate','Y','VIRESH','2021-09-16 17:05:15',NULL,NULL),(0,6818,'DROPS','Timolol Maleate','Y','VIRESH','2021-09-16 17:06:09',NULL,NULL),(0,6819,'TABLETS','Seratrodast','Y','VIRESH','2021-09-17 17:42:15',NULL,NULL),(0,6820,'TABLETS','Seratrodast','Y','VIRESH','2021-09-17 17:43:30',NULL,NULL),(0,6821,'TABLETS','Sulfasalazine Delayed','Y','VIRESH','2021-09-17 18:25:36',NULL,NULL),(0,6822,'INJ','Human Immunoglobulin','Y','VIRESH','2021-09-18 16:02:08',NULL,NULL),(0,6823,'INJ','Human Immunoglobulin','Y','VIRESH','2021-09-18 16:03:46',NULL,NULL),(0,6824,'TABLETS','Clozapine 100mg','Y','VIRESH','2021-09-18 18:09:04',NULL,NULL),(0,6825,'TABLETS','Azile Pharma','Y','VIRESH','2021-09-21 13:08:04',NULL,NULL),(0,6826,'TABLETS','Calcium &vitamin D3,vitamin K2','Y','VIRESH','2021-09-21 13:10:23',NULL,NULL),(0,6827,'SOLUTION','Vitamin D3 Oral Solution','Y','VIRESH','2021-09-23 15:54:40',NULL,NULL),(0,6828,'TABLETS','Simethicone & Activated Charcoal','Y','VIRESH','2021-09-23 16:10:33',NULL,NULL),(0,6829,'TABLETS','Nicorandil','Y','VIRESH','2021-10-01 15:08:34',NULL,NULL),(0,6830,'INJ','Hylan Polymer','Y','vikram','2021-10-05 12:06:05',NULL,NULL),(0,6831,'SYP','Ammonium Chloride + Chlorpheniramine Maleate + Dextromethorphan Hydrobromide + Guaifenesin','Y','vikram','2021-10-05 17:12:54',NULL,NULL),(0,6832,'TAB','Fluvoxamine Maleate Extended Rel','Y','DIVYANG','2021-10-05 18:42:41',NULL,NULL),(0,6833,'TAB','Desloratadine & Montelukast','Y','DIVYANG','2021-10-11 18:49:27',NULL,NULL),(0,6834,'INJ.','Trace Elements','Y','VIRESH','2021-10-12 20:05:32',NULL,NULL),(0,6835,'TAB','Pancreatin + Sodium Tauroglycocholate','Y','VIKRAM','2021-10-14 16:44:10',NULL,NULL),(0,6836,'TAB','Pancreatin + Sodium Tauroglycocholate','Y','VIKRAM','2021-10-14 16:45:00',NULL,NULL),(0,6837,'TAB','Glutathione +alpha Lipoic Acid +beta Carotene +vit.c','Y','VIRESH','2021-10-14 19:27:47',NULL,NULL),(0,6838,'CAP','Mexiletine 50 Mg','Y','DIVYANG','2021-10-18 16:12:38',NULL,NULL),(0,6839,'CAP','Mexiletine 150 Mg','Y','DIVYANG','2021-10-18 16:14:48',NULL,NULL),(0,6840,'TAB','Alendronic Acid 35mg','Y','VIRESH','2021-10-20 17:18:44',NULL,NULL),(0,6847,'LIQUID','Polyethylene Glycol Liquid','Y','VIRESH','2021-10-20 18:44:12',NULL,NULL),(0,6848,'LIQUID','Polyethylene Glycol Liquid','Y','VIRESH','2021-10-20 18:44:12',NULL,NULL),(0,6849,'LIQUID','Polyethylene Glycol Liquid','Y','VIRESH','2021-10-20 18:44:12',NULL,NULL),(0,6850,'LIQUID','Polyethylene Glycol Liquid','Y','VIRESH','2021-10-20 18:44:12',NULL,NULL),(0,6851,'LIQUID','Polyethylene Glycol Liquid','Y','VIRESH','2021-10-20 18:44:12',NULL,NULL),(0,6852,'LIQUID','Polyethylene Glycol Liquid','Y','VIRESH','2021-10-20 18:44:12',NULL,NULL),(0,6853,'LIQUID','Polyethylene Glycol Liquid','Y','VIRESH','2021-10-20 18:44:12',NULL,NULL),(0,6854,'LIQUID','Polyethylene Glycol Liquid','Y','VIRESH','2021-10-20 18:44:12',NULL,NULL),(0,6855,'LIQUID','Polyethylene Glycol Liquid','Y','VIRESH','2021-10-20 18:44:12',NULL,NULL),(0,6856,'LIQUID','Polyethylene Glycol Liquid','Y','VIRESH','2021-10-20 18:44:12',NULL,NULL),(0,6857,'LIQUID','Polyethylene Glycol Liquid','Y','VIRESH','2021-10-20 18:44:12',NULL,NULL),(0,6858,'LIQUID','Polyethylene Glycol Liquid','Y','VIRESH','2021-10-20 18:44:12',NULL,NULL),(0,6859,'LIQUID','Polyethylene Glycol Liquid','Y','VIRESH','2021-10-20 18:44:12',NULL,NULL),(0,6860,'LIQUID','Polyethylene Glycol Liquid','Y','VIRESH','2021-10-20 18:44:12',NULL,NULL),(0,6861,'LIQUID','Polyethylene Glycol','Y','VIRESH','2021-10-20 18:45:02',NULL,NULL),(0,6862,'INJ','Teriparatide (rhu Pth (1-34))','Y','VIRESH','2021-10-22 17:03:17',NULL,NULL),(0,6863,'TAB','Haloperidol 1.5 Mg','Y','VIRESH','2021-10-23 15:15:50',NULL,NULL),(0,6864,'GEL','Flatten, Lighten & Soften Scars','Y','VIRESH','2021-10-25 18:23:05',NULL,NULL),(0,6865,'TAB','Paroxetine  25mg','Y','VIRESH','2021-10-27 17:59:29',NULL,NULL),(0,6866,'TAB','Flunarizine 5 Mg','Y','VIRESH','2021-11-03 15:00:20',NULL,NULL),(0,6867,'TAB','Mefloquine 250 Mg','Y','DIVYANG','2021-11-10 14:14:57',NULL,NULL),(0,6868,'INJ','Insulin Aspart  3.5mg','Y','VIRESH','2021-11-12 18:17:31',NULL,NULL),(0,6869,'TAB','Calcium Citrate 1000mg+methylcobalmin 1500mg+pyridoxine Hcl 10mg+folic Acid 5mg','Y','DIVYANG','2021-11-13 09:15:26',NULL,NULL),(0,6870,'TAB','Amlodipine 10mg','Y','VIRESH','2021-11-15 19:43:39',NULL,NULL),(0,6871,'CREAM','Sodium Pyrrolidone Carboylic Acid','Y','DIVYANG','2021-11-16 12:55:44',NULL,NULL),(0,6872,'TAB','Penicillin','Y','VIRESH','2021-11-16 16:09:50',NULL,NULL),(0,6873,'TAB','Cefpodoxime & Ofloxacin','Y','DIVYANG','2021-11-17 13:35:54',NULL,NULL),(0,6874,'SYRUP','Sodium Alginate,sodium Bicarbonate +calcium Carbonate','Y','DIVYANG','2021-11-17 18:04:39',NULL,NULL),(0,6875,'SACHET','Zinc & Vitamin C','Y','VIRESH','2021-11-17 18:47:42',NULL,NULL),(0,6876,'LOTION','Ulttra Hydrating','Y','VIRESH','2021-11-18 17:31:41',NULL,NULL),(0,6877,'LOTION','Moisturizer','Y','VIRESH','2021-11-18 17:37:54',NULL,NULL),(0,6878,'DROP','Nepafenac Ophthalmic','Y','VIRESH','2021-11-22 15:10:45',NULL,NULL),(0,6879,'TAB','Pregabalin + Etoricoxib','Y','vikram','2021-11-23 19:42:25',NULL,NULL),(0,6880,'TAB','Hydroxychloroquine 300mg','Y','VIRESH','2021-11-24 15:34:37',NULL,NULL),(0,6881,'STIC','Vit K+vit C+vit D3+rutin+calsium','Y','DIVYANG','2021-11-26 14:15:58',NULL,NULL),(0,6882,'TAB','Paracetamol 1000mg, Bilayer','Y','VIRESH','2021-11-29 11:36:21',NULL,NULL),(0,6883,'TAB','Rosehip Powder,boswellia Serrata Ext. & Vitamin C','Y','VIRESH','2021-11-30 11:33:00',NULL,NULL),(0,6884,'CAP','Muco-polysaccharides, Collagen Type I & Vitamin C','Y','VIRESH','2021-11-30 16:55:17',NULL,NULL),(0,6885,'TAB','Multivitamin With L-methionine & Selenium Yeast','Y','VIRESH','2021-12-02 15:16:22',NULL,NULL),(0,6886,'INJ','Zoledronic Acid 5mg','Y','VIRESH','2021-12-04 15:35:24',NULL,NULL),(0,6887,'TAB','L-arginine,collagen Peptides Type I, Sodium Hyaluronate,chondroitin Sulfate & Vitamin C','Y','VIRESH','2021-12-06 12:34:37',NULL,NULL),(0,6888,'BOTTLE','1.5% Glycine Irrigation I.p.','Y','VIRESH','2021-12-08 18:20:27',NULL,NULL),(0,6889,'TAB','Cilnidipine & Metoprolol Succinate (er) 10/25 Mg','Y','VIRESH','2021-12-13 12:48:03',NULL,NULL),(0,6890,'SYRUP','Probiotic Liquid','Y','VIRESH','2021-12-13 13:03:06',NULL,NULL),(0,6891,'INJ','Anti Rho-d Immunoglobulin','Y','VIRESH','2021-12-13 15:36:11',NULL,NULL),(0,6892,'INJ','Pralidoxime 500 Mg','Y','VIRESH','2021-12-13 21:18:07',NULL,NULL),(0,6893,'TUBE','Placenta Extract Gel','Y','VIRESH','2021-12-15 16:49:53',NULL,NULL),(0,6894,'TAB','Rosuvastatin Calcium & Ezetimibe','Y','VIRESH','2021-12-17 17:53:03',NULL,NULL),(0,6895,'SACHET','Lactobacillus Rhamnosus Gg','Y','VIRESH','2021-12-17 18:35:12',NULL,NULL),(0,6896,'TUBE','Halobetasol Propionate 0.05% +salicylic Acid 3%','Y','VIRESH','2021-12-18 16:25:51',NULL,NULL),(0,6897,'TAB','Iguratimod 25 Mg','Y','VIRESH','2021-12-20 15:57:31',NULL,NULL),(0,6898,'TAB','Tenofovir Disoproxil Fumarate & Emtricitabine  300mg/200mg','Y','VIRESH','2021-12-20 20:25:57',NULL,NULL),(0,6899,'TAB','Diosmin','Y','VIRESH','2021-12-22 11:31:02',NULL,NULL),(0,6900,'TAB','Imipramine','Y','vikram','2021-12-23 13:56:09',NULL,NULL),(0,6901,'TUBE','Miconazole & Fluocinolone','Y','VIRESH','2021-12-23 18:05:38',NULL,NULL),(0,6902,'LOTION','Ultra Hydrating Lotion','Y','VIRESH','2021-12-24 15:56:22',NULL,NULL),(0,6903,'VACCINE','Inactivated Hepatitis A','Y','VIRESH','2021-12-24 16:16:50',NULL,NULL),(0,6904,'CAP','Pantoprazole 40mg & Cinitapride','Y','VIRESH','2021-12-24 20:05:16',NULL,NULL),(0,6905,'TAB','Prolonged-release  Pramipexole','Y','VIRESH','2021-12-27 15:46:22',NULL,NULL),(0,6906,'LOTION','Beclomethasone Dipropinate','Y','VIRESH','2021-12-28 18:05:14',NULL,NULL),(0,6907,'INJ','Aciclovir  500 Mg','Y','VIRESH','2021-12-30 17:43:34',NULL,NULL),(0,6908,'CREAM','Tranexamic Acid, Kojic Acid Dipalmite, Magnesium Ascorbyl Phosphate,arbutin & Vitamin E','Y','VIRESH','2021-12-31 17:41:37',NULL,NULL),(0,6909,'CAP','Bone & Joint Wellness Cissus','Y','VIRESH','2022-01-03 18:50:36',NULL,NULL),(0,6910,'TAB','Metformin 500mg , Glimepride 3mg','Y','VIRESH','2022-01-06 10:00:44',NULL,NULL),(0,6911,'DROPS','Travoprost Eye Drops','Y','VIRESH','2022-01-07 09:20:34',NULL,NULL),(0,6912,'UNIT','Mesalazine  1.0g','Y','VIRESH','2022-01-07 17:24:19',NULL,NULL),(0,6913,'CAP','Molnupiravir 200 Mg','Y','VIRESH','2022-01-08 12:15:09',NULL,NULL),(0,6914,'TAB','Minoxidil 5 Mg','Y','VIRESH','2022-01-12 13:11:48',NULL,NULL),(0,6915,'DROP','Moxifloxacin & Bromfenac','Y','VIRESH','2022-01-18 18:26:29',NULL,NULL),(0,6916,'SPRAY','Colloidal Silver Solution','Y','VIRESH','2022-01-20 14:05:29',NULL,NULL),(0,6917,'TUBE','Betamethasone 0.10% +clioquinol 3.0%','Y','VIRESH','2022-01-24 17:09:21',NULL,NULL),(0,6918,'TAB','Amoxicillin','Y','VIRESH','2022-01-29 19:58:41',NULL,NULL),(0,6919,'TAB','Riocigut','Y','VIRESH','2022-01-29 20:10:52',NULL,NULL),(0,6920,'TAB','Cissus Qudrangularis,ccm +aflapin (boswellia)','Y','VIRESH','2022-01-31 11:59:45',NULL,NULL),(0,6921,'TAB','Potassium Magnesium Citrate & Vitamin B6','Y','VIRESH','2022-02-01 12:47:29',NULL,NULL),(0,6922,'TAB','Nebivolol & Amlodipine','Y','VIRESH','2022-02-01 15:27:18',NULL,NULL),(0,6923,'NA','Na','Y','vikram','2022-02-01 19:10:43',NULL,NULL),(0,6924,'CREAM','Niacinamide,mandelic Acid, 4-butylresorcinol,kojic Dipalmitate & Licorice Extract','Y','VIRESH','2022-02-04 16:40:47',NULL,NULL),(0,6925,'CAP','Enteric Coated Esomeprazole 40mg & Itopride Hydrochloride 150mg','Y','VIRESH','2022-02-05 15:08:37',NULL,NULL),(0,6926,'CAP','Folic Acid, Pyridoxine & Cyanocobalamin','Y','VIRESH','2022-02-08 17:02:10',NULL,NULL),(0,6927,'IRON','Iron (iii) Isomaltoside 1000','Y','DIVYANG','2022-02-11 11:29:38',NULL,NULL),(0,6928,'GEL','Salicylic Acid Gel','Y','VIRESH','2022-02-12 11:42:05',NULL,NULL),(0,6929,'TAB','Gefitinib','Y','VIRESH','2022-02-12 12:52:33',NULL,NULL),(0,6930,'TAB','Prolonged-release Isosorbide Mononitrate','Y','VIRESH','2022-02-14 18:05:40',NULL,NULL),(0,6931,'TAB','Metformin Hydrochloride 1000mg,prolonged-release & Glimepride 1mg','Y','VIRESH','2022-02-16 17:44:46',NULL,NULL),(0,6932,'SOL','Tannic Acid+choline Salicylate+cetrimide+lignocaine','Y','vikram','2022-02-18 13:39:55',NULL,NULL),(0,6933,'OIL','Evening Primrose Oil','Y','vikram','2022-02-18 13:54:57',NULL,NULL),(0,6934,'CAP','Lyophilized Saccharomyces Boulardii Cncm I-745','Y','VIRESH','2022-02-18 16:24:47',NULL,NULL),(0,6935,'OIL','Mct Oil','Y','vikram','2022-02-18 18:56:51',NULL,NULL),(0,6936,'LOTION','Decapeptide (basic Fibroblast Growth Factor)','Y','VIRESH','2022-02-18 19:03:04',NULL,NULL),(0,6937,'PAN','Teriparatide','Y','VIRESH','2022-02-19 15:17:22',NULL,NULL),(0,6938,'DROP','Brimonidine Tartrate & Timolol','Y','VIRESH','2022-02-19 18:35:41',NULL,NULL),(0,6939,'VACCINE','Japanese Enoephalitis','Y','VIRESH','2022-02-24 15:41:10',NULL,NULL),(0,6940,'GEL','Choline Salicylate','Y','vikram','2022-02-24 16:30:37',NULL,NULL),(0,6941,'INJ','Phenylephrine','Y','VIRESH','2022-02-25 11:32:29',NULL,NULL),(0,6942,'PINT','Mannitol','Y','vikram','2022-03-01 13:55:34',NULL,NULL),(0,6943,'TAB','Zonisamide 100 Mg','Y','VIRESH','2022-03-01 16:06:26',NULL,NULL),(0,6944,'SYRUP','Folic Acid 1.5mg & Vitamin B12','Y','VIRESH','2022-03-02 13:27:30',NULL,NULL),(0,6945,'POWDER','Lactitol Monohydrate & Ispaghula Husk','Y','VIRESH','2022-03-02 19:41:12',NULL,NULL),(0,6946,'SYRUP','Polyethylene Glyol,sodium Chloride,sodium Bicarbonate & Potassium Chloride','Y','VIRESH','2022-03-02 19:50:01',NULL,NULL),(0,6947,'SYRUP','Polyethylene Glycol, Sodium Chloride, Sodium Bicarbonate +potassium Chloride','Y','VIRESH','2022-03-02 19:57:12',NULL,NULL),(0,6948,'SACHET','Cholestyramine','Y','vikram','2022-03-03 11:56:00',NULL,NULL),(0,6949,'CERAM','Amorolfine 0.25% W/w','Y','VIRESH','2022-03-04 17:31:24',NULL,NULL),(0,6950,'TAB','Dapoxetine','Y','VIRESH','2022-03-05 14:14:37',NULL,NULL),(0,6951,'CAP','Lubiprostone','Y','VIRESH','2022-03-07 10:52:05',NULL,NULL),(0,6952,'TAB','Verapamil Hydrochloride 80mg','Y','VIRESH','2022-03-07 15:31:05',NULL,NULL),(0,6953,'TUBE','Metronidazole & Povidone Iodine','Y','VIRESH','2022-03-07 19:20:17',NULL,NULL),(0,6954,'INFUSION','Paracetamol Infusion Ip 1% W/v','Y','VIRESH','2022-03-08 14:00:16',NULL,NULL),(0,6955,'INFUSION','Paracetamol Infusion Ip 1% W/v','Y','VIRESH','2022-03-08 14:00:20',NULL,NULL),(0,6956,'INFUSION','Paracetamol Infusion Ip 1% W/v','Y','VIRESH','2022-03-08 14:00:06',NULL,NULL),(0,6957,'INFUSION','Paracetamol Infusion Ip 1% W/v','Y','VIRESH','2022-03-08 14:00:20',NULL,NULL),(0,6958,'INFUSION','Paracetamol Infusion Ip 1% W/v','Y','VIRESH','2022-03-08 14:00:30',NULL,NULL),(0,6959,'INFUSION','Paracetamol Infusion Ip 1% W/v','Y','VIRESH','2022-03-08 14:00:30',NULL,NULL),(0,6960,'INFUSION','Paracetamol Infusion Ip 1% W/v','Y','VIRESH','2022-03-08 14:01:06',NULL,NULL),(0,6961,'INFUSION','Paracetamol Infusion Ip 1% W/v','Y','VIRESH','2022-03-08 14:01:06',NULL,NULL),(0,6962,'INJ','Ropivacaine 0.75%','Y','VIRESH','2022-03-10 15:03:21',NULL,NULL),(0,6963,'GEL','Adapalene 0.1% W/w & Benzoy Peroxide 2.5% W/w','Y','VIRESH','2022-03-11 14:43:19',NULL,NULL),(0,6964,'GEL','Adapalene 0.1% W/w','Y','VIRESH','2022-03-15 10:56:38',NULL,NULL),(0,6965,'VACCINE','Human Papillomavirus Quadrivalent','Y','VIRESH','2022-03-15 19:03:29',NULL,NULL),(0,6966,'TAB','Acotiamide Hydrochloride Hydrate','Y','VIRESH','2022-03-21 10:55:09',NULL,NULL),(0,6967,'TAB','Sofosbuvir 400mg +velpatasvir 100mg','Y','VIRESH','2022-03-22 16:57:29',NULL,NULL),(0,6968,'TAB','Gabapentin 100 Mg','Y','VIRESH','2022-03-22 17:11:52',NULL,NULL),(0,6969,'CREAM','Betamethasone 0.10% + Chlirocresol 0.1%','Y','VIRESH','2022-03-25 17:50:02',NULL,NULL),(0,6970,'CREAM','Cetyl Alcohol 2.00% W/w','Y','VIRESH','2022-03-25 18:05:23',NULL,NULL),(0,6971,'CAP','Evening Primrose Oil, Ginkgo Extract & Multi Vitamins ,minerals','Y','VIRESH','2022-03-31 10:55:29',NULL,NULL),(0,6972,'CAP','Ginkgo,ginseng,vitamins,minerals','Y','VIRESH','2022-03-31 11:05:22',NULL,NULL),(0,6973,'CAP','Dabigatran Etexilate 75mg','Y','VIRESH','2022-03-31 23:10:19',NULL,NULL),(0,6974,'INJ','Imipenem 500mg & Cilastatin 500mg','Y','VIRESH','2022-04-01 17:26:39',NULL,NULL),(0,6975,'DROPS','Naphazoline, Zinc Sulphate, Chlorpheniramine Malete & Hpmc','Y','VIRESH','2022-04-02 17:59:30',NULL,NULL),(0,6976,'TAB','Mirabegron 25mg & Solifenacin Succinate 5mg','Y','VIRESH','2022-04-05 11:08:49',NULL,NULL),(0,6977,'TAB','Mirabegron 50mg & Solifenacin Succinate 5mg','Y','VIRESH','2022-04-05 11:14:50',NULL,NULL),(0,6978,'TAB','Cefpodoxime Proxetil 200mg & Potassium Clavulanate 125mg','Y','VIRESH','2022-04-08 15:01:19',NULL,NULL),(0,6979,'TAB','Dapagliflozin 10mg & Metformin Hydrochloride 500mg','Y','VIRESH','2022-04-11 15:30:03',NULL,NULL),(0,6980,'SYRUP','Colloidal Iron + Folic Acid & Vitamin B12','Y','VIRESH','2022-04-12 17:43:35',NULL,NULL),(0,6981,'TAB','Norethisferone Acetate 10mg','Y','VIRESH','2022-04-14 18:33:14',NULL,NULL),(0,6982,'TAB','Norethisterone Acetate 10mg','Y','VIRESH','2022-04-14 18:35:16',NULL,NULL),(0,6983,'TAB','Drotoverin 80mg +aceclofenac 100mg','Y','VIRESH','2022-04-15 18:20:52',NULL,NULL),(0,6984,'CAP','Dabigatran Etexilate 150 Mg','Y','VIRESH','2022-04-21 18:20:56',NULL,NULL),(0,6985,'CREAM','Azelaic Acid 20% W/w','Y','VIRESH','2022-04-22 18:50:31',NULL,NULL),(0,6986,'GEL','Hpmc Ophthalmic Solution','Y','VIRESH','2022-04-27 19:18:02',NULL,NULL),(0,6987,'SYRUP','Aluminium, Magnesium, Oxetacaine & Simethicone','Y','VIRESH','2022-04-29 18:04:44',NULL,NULL),(0,6988,'TAB','Multivitamin Gummies','Y','VIRESH','2022-04-29 18:17:24',NULL,NULL),(0,6989,'TAB','Pregabalin 50 Mg','Y','vikram','2022-04-30 12:33:18',NULL,NULL),(0,6990,'SYRUP','Lysine, Zinc & Multivitamins','Y','VIRESH','2022-04-30 19:15:57',NULL,NULL),(0,6991,'TAB','Pregabalin (sr) 75mg & Methylcobalamin 1500mcg','Y','VIRESH','2022-05-02 12:58:06',NULL,NULL),(0,6992,'INJ','Tirofiban  Hydrochloride','Y','VIRESH','2022-05-02 17:02:18',NULL,NULL),(0,6993,'TAB','Nicoumallone','Y','VIRESH','2022-05-03 17:23:17',NULL,NULL),(0,6994,'TAB','Rosuvastatin 20mg','Y','VIRESH','2022-05-03 18:04:39',NULL,NULL),(0,6995,'INJ','Polymyxin B 750000 Iu','Y','VIRESH','2022-05-04 12:31:20',NULL,NULL),(0,6996,'TAB','Clonazepam 0.25 Mg','Y','VIRESH','2022-05-06 19:57:04',NULL,NULL),(0,6997,'LOTION','Sulphacetamide Sodium & Sulfur','Y','VIRESH','2022-05-06 20:04:31',NULL,NULL),(0,6998,'OINTMENT','Benzoic Acid, Salicylic Acid, Ichthammol & Triamcinolone','Y','VIRESH','2022-05-06 20:11:42',NULL,NULL),(0,6999,'TAB','Ramipiril & Metoprolol','Y','VIRESH','2022-05-10 15:46:56',NULL,NULL),(0,7000,'TAB','Ramipril & Metoprolol','Y','VIRESH','2022-05-10 15:49:50',NULL,NULL),(0,7001,'CAP','Enteric Coated Pantoprazole Sodium & Itopride Hydrochloride','Y','VIRESH','2022-05-12 13:57:38',NULL,NULL),(0,7002,'TAB','Aripiprazole 30mg','Y','VIRESH','2022-05-13 14:07:31',NULL,NULL),(0,7003,'CREAM','Azelaic Acid 10% W/w','Y','VIRESH','2022-05-13 14:12:50',NULL,NULL),(0,7004,'GEL','Allium Cepa Extract, Heparin Sodium & Allantoin','Y','VIRESH','2022-05-13 18:00:24',NULL,NULL),(0,7005,'INJ','Methylcobalamin 1ml','Y','VIRESH','2022-05-13 18:39:02',NULL,NULL),(0,7006,'TAB','Etizolam Mouth Dissolving','Y','VIRESH','2022-05-14 17:33:22',NULL,NULL),(0,7007,'TAB','Dapagliflozin 10mg & Metformin 1000mg','Y','VIRESH','2022-05-14 19:03:00',NULL,NULL),(0,7008,'TAB','Obeticholic Acid 5 Mg','Y','VIRESH','2022-05-18 18:03:14',NULL,NULL),(0,7009,'.','Chlorhexidine Gluconate & Alcohol','Y','ALPA','2022-05-19 15:39:10',NULL,NULL),(0,7010,'INJ','Levosulpiride Inj','Y','VIRESH','2022-05-28 11:10:52',NULL,NULL),(0,7011,'TAB','Ferric Pyrophosphate (liposomal) Vitamin C, & B12 & Foloic Acid','Y','VIRESH','2022-05-28 15:17:10',NULL,NULL),(0,7012,'TAB','L-carnitine L-tartrate & Ubidecarenone','Y','VIRESH','2022-06-01 19:37:25',NULL,NULL),(0,7013,'TAB','Magnesium Glycine Complex & Vitamin D3','Y','VIRESH','2022-06-03 16:18:18',NULL,NULL),(0,7014,'PATCH','Buprenorphine 5mg','Y','VIRESH','2022-06-07 17:38:27',NULL,NULL),(0,7015,'TAB','Zceclofenac 100mg & Tizanidine 2mg','Y','VIRESH','2022-06-08 15:59:54',NULL,NULL),(0,7016,'TAB','Aceclofenac 100mg & Tizanidine 2mg','Y','VIRESH','2022-06-08 16:03:07',NULL,NULL),(0,7017,'INJ','Levobupivacaine In Dextrose','Y','VIRESH','2022-06-08 18:22:09',NULL,NULL),(0,7018,'SOLU.','Cetrimide Solution 5% W/v','Y','VIRESH','2022-06-09 14:30:15',NULL,NULL),(0,7019,'INJ','Bortezomib 2mg','Y','VIRESH','2022-06-09 19:04:21',NULL,NULL),(0,7020,'INJ','Denosumab Solution','Y','VIRESH','2022-06-09 19:15:19',NULL,NULL),(0,7021,'CAP','Enteric Coated Pantoprazole & Sr Levosulpiride','Y','VIRESH','2022-06-09 19:28:51',NULL,NULL),(0,7022,'TAB','Repaglinide & Voglibose','Y','VIRESH','2022-06-14 17:26:48',NULL,NULL),(0,7023,'CAP','Esomeprazole (gr) 40mg & Domperidone (pr) 30mg','Y','VIRESH','2022-06-16 17:37:17',NULL,NULL),(0,7024,'TAB','Ezetimibe 10mg','Y','VIRESH','2022-06-17 15:49:35',NULL,NULL),(0,7025,'TAB','Ramipril 5mg & Amlodipine 5mg','Y','VIRESH','2022-06-17 17:30:28',NULL,NULL),(0,7026,'CAP','Pregabalin 75mg & Duloxetine 20mg','Y','VIRESH','2022-06-23 16:45:58',NULL,NULL),(0,7027,'CAP','Rosuvastatin 20mg & Aspirin 75mg','Y','VIRESH','2022-06-25 11:10:40',NULL,NULL),(0,7028,'SHAMPOO','Anti-dandruff','Y','VIRESH','2022-06-29 14:09:34',NULL,NULL),(0,7029,'TAB','Risedronate Sodium','Y','VIRESH','2022-07-01 17:10:28',NULL,NULL),(0,7030,'TAB','Ticagrelor 60 Mg','Y','VIRESH','2022-07-02 16:30:38',NULL,NULL),(0,7031,'TAB','Ticagrelor 90 Mg & Aspirin 75 Mg','Y','VIRESH','2022-07-02 16:33:39',NULL,NULL),(0,7032,'INJ','Romiplostim  250 Mcg','Y','VIRESH','2022-07-04 13:52:06',NULL,NULL),(0,7033,'5 MG','Donepezil Hydrochloride','Y','ALPA','2022-07-09 15:39:14',NULL,NULL),(0,7034,'TAB','Prasugrel','Y','VIRESH','2022-07-12 16:18:24',NULL,NULL),(0,7035,'CAP','Evening Primrose Oil,tocotrienols & Vitamin B6 Softgels','Y','VIRESH','2022-07-12 16:35:45',NULL,NULL),(0,7036,'INJ','Nimodipine 50ml','Y','VIRESH','2022-07-15 10:50:02',NULL,NULL),(0,7037,'INJ','Sodium Teradecyl Sulphate','Y','VIRESH','2022-07-15 11:04:43',NULL,NULL),(0,7038,'DROPS','Sodium Hyaluronate 0.1% W/v','Y','VIRESH','2022-07-16 17:09:34',NULL,NULL),(0,7039,'OINT','Lipid Based Tacrolimus Oint 0.1% W/v','Y','VIRESH','2022-07-19 15:52:19',NULL,NULL),(0,7040,'EYE DROPS','Brimonidine Tartrate 0.2% W/v','Y','VIRESH','2022-07-19 16:00:07',NULL,NULL),(0,7041,'CREAM','Simethicone,zinc Oxide, Calamine','Y','VIRESH','2022-07-20 19:20:19',NULL,NULL),(0,7042,'GEL','Tretinoin 0.025% W/w','Y','VIRESH','2022-07-26 09:52:46',NULL,NULL),(0,7043,'TAB','Deferusirox Disipersible','Y','VIRESH','2022-07-27 11:07:26',NULL,NULL),(0,7044,'LOTION','Antiperspirant','Y','VIRESH','2022-07-27 19:46:09',NULL,NULL),(0,7045,'INJ','Amikacin 750 Mg','Y','vikram','2022-08-02 18:10:57',NULL,NULL),(0,7046,'BCS','Bacillus Clausii Spores','Y','ALPA','2022-08-03 12:08:19',NULL,NULL),(0,7047,'FC','Flucytosine','Y','ALPA','2022-08-04 16:34:12',NULL,NULL),(0,7048,'TAB','Erythromycin 250 Mg','Y','VIRESH','2022-08-05 17:33:12',NULL,NULL),(0,7049,'CEFTA','Ceftazidime+avibactum','Y','divyang','2022-08-08 10:06:56',NULL,NULL),(0,7050,'INJ','Carbetocin 1ml (100mcg)','Y','VIRESH','2022-08-12 11:58:36',NULL,NULL),(0,7051,'SPRAY','Calcitonin Salmon','Y','VIRESH','2022-08-15 17:36:02',NULL,NULL),(0,7052,'POWDER','Collagen Praticles With Mupirocin & Metronidazole','Y','VIRESH','2022-08-17 18:56:43',NULL,NULL),(0,7053,'INHALER','Glycopyrrolate & Formterol','Y','VIRESH','2022-08-17 19:13:42',NULL,NULL),(0,7054,'TAB','Acamprosate Calcium 333mg','Y','VIRESH','2022-08-20 15:36:00',NULL,NULL),(0,7055,'CREAM','White Soft Paraffin & Light Liquid Paraffin','Y','VIRESH','2022-08-20 17:13:58',NULL,NULL),(0,7056,'TAB','Lactoferrin 100mg , Disodium Guanosine 5-monophosphate 10mg','Y','VIRESH','2022-08-24 15:59:32',NULL,NULL),(0,7057,'TAB','Alpha Glycerylphosphorylcholine & Piracetam','Y','VIRESH','2022-08-24 16:14:47',NULL,NULL),(0,7058,'CREAM','Fusidic Acid & Betamethasone Valerate','Y','VIRESH','2022-09-01 17:21:59',NULL,NULL),(0,7059,'LOTION','Clobetasol Propionate 0.05% W/v + Salicylic Acid 3% W/v','Y','VIRESH','2022-09-02 16:41:10',NULL,NULL),(0,7060,'TOOTH GEL','Potassium Nitrate, Sodium Monofluorophosphate & Triclosan','Y','VIRESH','2022-09-03 12:21:11',NULL,NULL),(0,7061,'TAB','Dapagliflozin 5mg & Metformin Hydrochloride 500mg','Y','VIRESH','2022-09-05 18:05:50',NULL,NULL),(0,7062,'TAB','Ramipril','Y','VIRESH','2022-09-07 12:39:41',NULL,NULL),(0,7063,'CAP','Lycopene,betacarotene,selenium,zinc Sulphate Monohydrate, Alpha Lipoic Acid & Tocopheryl','Y','VIRESH','2022-09-07 18:20:45',NULL,NULL),(0,7064,'TAB','Hydrocortisone','Y','VIRESH','2022-09-08 10:34:41',NULL,NULL),(0,7065,'CREAM','Ciclopirox Olamine','Y','VIRESH','2022-09-08 16:46:16',NULL,NULL),(0,7066,'SOLU','Coal Tar & Salicylic Acid 1% W/w + 3% W/w','Y','VIRESH','2022-09-08 18:18:25',NULL,NULL),(0,7067,'INJ','L-alanyl-l-glutamine Solution','Y','VIRESH','2022-09-09 14:58:08',NULL,NULL),(0,7068,'MOUTHWASH','Benzydamine','Y','VIRESH','2022-09-09 20:42:28',NULL,NULL),(0,7069,'OIL','Castor Oil','Y','divyang','2022-09-10 15:32:00',NULL,NULL),(0,7070,'H202','6.5% Hydrogen Peroxide','Y','divyang','2022-09-10 16:22:18',NULL,NULL),(0,7071,'INJ','Multivitamin','Y','VIRESH','2022-09-11 12:12:28',NULL,NULL),(0,7072,'S.WATER','Sterile  Water','Y','divyang','2022-09-12 16:14:11',NULL,NULL),(0,7073,'TAB','Entecavir','Y','VIRESH','2022-09-12 20:12:28',NULL,NULL),(0,7074,'TAB','Drotaverine 80mg & Aceclofenac 100mg','Y','VIRESH','2022-09-13 17:29:20',NULL,NULL),(0,7075,'INSULIN','Insulin Degludec/insulin Aspart','Y','VIRESH','2022-09-14 11:58:09',NULL,NULL),(0,7076,'PEN','Insulin Pen','Y','VIRESH','2022-09-14 18:00:13',NULL,NULL),(0,7077,'PINT','Ringer Lactat Infu','Y','VIRESH','2022-09-16 16:21:18',NULL,NULL),(0,7078,'CAP','Dutasteride 0.5mg','Y','VIRESH','2022-09-17 10:49:51',NULL,NULL),(0,7079,'TAB','Allylestrenol 5mg','Y','VIRESH','2022-09-23 19:25:42',NULL,NULL),(0,7080,'TAB','Clonazepam & Propranolol','Y','VIRESH','2022-09-28 16:13:02',NULL,NULL),(0,7081,'SACHET','Nutraceutical','Y','VIRESH','2022-09-29 15:51:28',NULL,NULL),(0,7082,'INJ','Human Albumin 5%','Y','VIRESH','2022-10-01 18:15:35',NULL,NULL),(0,7083,'POWDER','Enrich With Vitamin C, Fiber Zinc','Y','VIRESH','2022-10-07 11:53:36',NULL,NULL),(0,7084,'POWDER','Zinc, Vitamin C & Dextrose','Y','VIRESH','2022-10-07 13:14:06',NULL,NULL),(0,7085,'CREAM','Aloe Vera & Tea Tree Oil','Y','VIRESH','2022-10-13 20:11:17',NULL,NULL),(0,7086,'TAB','Pinaveriora Bromide','Y','VIRESH','2022-10-13 20:19:27',NULL,NULL),(0,7087,'GEL','Sunscreen Emulgel','Y','VIRESH','2022-10-13 20:34:02',NULL,NULL),(0,7088,'INJ','Amino Acids 5% W/v & Sorbitol 5% W/v','Y','VIRESH','2022-10-14 15:07:45',NULL,NULL),(0,7089,'SHAMPOO','Salicylic Acid & Ketoconazole','Y','VIRESH','2022-10-17 15:31:52',NULL,NULL),(0,7090,'TAB','Rizatriptan 10mg','Y','VIRESH','2022-10-19 15:05:59',NULL,NULL),(0,7091,'TAB','Rizatriptan 5mg','Y','VIRESH','2022-10-19 15:10:13',NULL,NULL),(0,7092,'FACE WASH','Salicylic Acid With Glycolic Acid','Y','VIRESH','2022-10-20 18:06:26',NULL,NULL),(0,7093,'INJ','Adrenaline Bilartrate','Y','VIRESH','2022-10-24 16:53:34',NULL,NULL),(0,7094,'SHAMPOO','Anti Hair Fall','Y','VIRESH','2022-11-03 16:34:58',NULL,NULL),(0,7095,'SUPPO','Mesalazine 1gm','Y','VIRESH','2022-11-03 19:04:48',NULL,NULL),(0,7096,'SUPPO','Mesalazine 500mg','Y','VIRESH','2022-11-03 19:08:30',NULL,NULL),(0,7097,'NAIL','Amorolfine 5% W/v','Y','VIRESH','2022-11-07 16:01:48',NULL,NULL),(0,7098,'ROTACAP','Indacaterol & Glycopyrronium','Y','VIRESH','2022-11-12 18:16:44',NULL,NULL),(0,7099,'BALM','Vaporizing Rub','Y','VIRESH','2022-11-12 18:35:00',NULL,NULL),(0,7100,'BALM','Veporizing Rub','Y','VIRESH','2022-11-12 18:35:37',NULL,NULL),(0,7101,'NASAL SPRA','Isotonic Nasal Spray','Y','VIRESH','2022-11-15 15:51:21',NULL,NULL),(0,7102,'CAP','Oxalobacter, Lactobacillus & Bifidobacterium With Fos','Y','VIRESH','2022-11-17 13:22:27',NULL,NULL),(0,7103,'SHAMPOO','Ciclopirox & Zinc Pyrithione','Y','VIRESH','2022-11-18 17:03:06',NULL,NULL),(0,7104,'LOTION','Skin Lightening Lotion','Y','VIRESH','2022-11-18 18:48:42',NULL,NULL),(0,7105,'CREAM','Glycolic Acid, Arbutin & Kojic Acid','Y','VIRESH','2022-11-24 15:50:47',NULL,NULL),(0,7106,'LIQ.','Diclifenac Diethylamine, Capsaicin, Menthol & Camphor Liniment','Y','VIRESH','2022-11-24 15:57:37',NULL,NULL),(0,7107,'LIQ','Diclofenac Diethylamine, Capsaicin, Menthol & Camphor Liniment','Y','VIRESH','2022-11-24 16:01:12',NULL,NULL),(0,7108,'LIQ','Under Eye Serum','Y','VIRESH','2022-11-24 16:11:39',NULL,NULL),(0,7109,'CREAM','Zinc Oxide, Sesamumindicum','Y','VIRESH','2022-11-24 17:35:05',NULL,NULL),(0,7110,'TAB','Ambrisentan 5mg','Y','VIRESH','2022-11-26 17:16:49',NULL,NULL),(0,7111,'TAB','Imeglimin Hydrochloride','Y','VIRESH','2022-11-26 17:23:16',NULL,NULL),(0,7112,'TAB','Sucroferric Oxyhydroxide','Y','VIRESH','2022-11-26 17:29:51',NULL,NULL),(0,7113,'TAB','Saroglitazar','Y','VIRESH','2022-11-26 18:41:31',NULL,NULL),(0,7114,'CAP','Chloramphenicol 500mg','Y','VIRESH','2022-11-28 15:07:50',NULL,NULL),(0,7115,'VIAL','Tetanus Immunoglobulin 500 Iu','Y','VIRESH','2022-12-02 12:57:16',NULL,NULL),(0,7116,'KIT','Ambrisentan & Tadalafil','Y','VIRESH','2022-12-03 16:46:06',NULL,NULL),(0,7117,'TAB','Cefixime & Dicloxacillin','Y','VIRESH','2022-12-03 18:30:05',NULL,NULL),(0,7118,'TAB','Desidustat','Y','VIRESH','2022-12-05 14:28:16',NULL,NULL),(0,7119,'TAB','Nortriptyline 75mg','Y','VIRESH','2022-12-07 15:39:48',NULL,NULL),(0,7120,'TAB','Metformin Hydrochloride & Sitagliptin','Y','VIRESH','2022-12-13 15:12:12',NULL,NULL),(0,7121,'TOOTHPASTE','Extra Foaming','Y','VIRESH','2022-12-13 15:22:06',NULL,NULL),(0,7122,'TAB','Rosuvastatin & Bempedoic Acid','Y','VIRESH','2022-12-13 16:40:53',NULL,NULL),(0,7123,'SYRUP','Cyproheptadine Hci & Tricholine Citrate','Y','VIRESH','2022-12-13 16:45:52',NULL,NULL),(0,7124,'TAB','Cinacalcet','Y','VIRESH','2022-12-16 11:31:02',NULL,NULL),(0,7125,'STRIPS','Vitamin D3 (cholecalciferol)','Y','VIRESH','2022-12-16 17:46:02',NULL,NULL),(0,7126,'TAB','Calcium Pantothenate','Y','VIRESH','2022-12-16 19:59:51',NULL,NULL),(0,7127,'FACE WASH','Skin Whitening Deep Cleansing','Y','VIRESH','2022-12-19 14:57:58',NULL,NULL),(0,7128,'TAB','Dapagliflozin 5mg & Metformin Hydrochloride 1000mg','Y','VIRESH','2022-12-20 17:00:54',NULL,NULL),(0,7129,'FACE WASH','Skin Rejuvenating ,purifies & Refreshes','Y','VIRESH','2022-12-23 15:49:51',NULL,NULL),(0,7130,'POWDER','Food Supplement For Digestive Support','Y','VIRESH','2022-12-23 18:28:37',NULL,NULL),(0,7131,'CAP','Pregabalin 50mg & Duloxetine 20mg','Y','VIRESH','2022-12-24 18:41:10',NULL,NULL),(0,7132,'OINT','Salicylic Acid 12% W/w','Y','VIRESH','2022-12-29 16:34:56',NULL,NULL),(0,7133,'INFUSION','Ibuprofen Solution For Infusion','Y','VIRESH','2022-12-30 18:10:41',NULL,NULL),(0,7134,'TAB','Flupentixol','Y','VIRESH','2023-01-03 14:39:05',NULL,NULL);
/*!40000 ALTER TABLE `generic_drug_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `holiday_list`
--

DROP TABLE IF EXISTS `holiday_list`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `holiday_list` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `year` int(11) NOT NULL,
  `date` date NOT NULL,
  `description` varchar(50) NOT NULL,
  `flag` char(1) NOT NULL,
  `is_optional` enum('Y','N') NOT NULL DEFAULT 'N',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `holiday_list`
--

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

--
-- Table structure for table `hr_policy_config`
--

DROP TABLE IF EXISTS `hr_policy_config`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hr_policy_config` (
  `policy_id` int(11) NOT NULL,
  `probation_duration` tinyint(4) NOT NULL DEFAULT '1',
  `probation_with_effect_from` date NOT NULL,
  `notice_period` tinyint(4) NOT NULL DEFAULT '1',
  `noticeperiod_with_effect_from` date NOT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`policy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hr_policy_config`
--

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

--
-- Table structure for table `hsn_master`
--

DROP TABLE IF EXISTS `hsn_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hsn_master` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hsn_code` varchar(16) NOT NULL,
  `cgst_percentage` float NOT NULL,
  `sgst_percentage` float NOT NULL,
  `igst_percentage` float NOT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=267 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hsn_master`
--

LOCK TABLES `hsn_master` WRITE;
/*!40000 ALTER TABLE `hsn_master` DISABLE KEYS */;
INSERT INTO `hsn_master` VALUES (2,'1090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(3,'1518',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(4,'1823?',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(5,'2104',9,9,0,'','0000-00-00 00:00:00',NULL,NULL),(6,'2106',9,9,0,'','0000-00-00 00:00:00',NULL,NULL),(7,'3004',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(8,'3005',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(9,'3006',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(10,'3304',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(11,'3401',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(12,'3402',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(13,'3808',9,9,0,'','0000-00-00 00:00:00',NULL,NULL),(14,'4014',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(15,'4015',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(16,'5601',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(17,'5603',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(18,'6210',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(19,'9018',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(20,'9019',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(21,'9021',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(22,'9025',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(23,'9027',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(24,'9619',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(25,'3004',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(26,'866022',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(27,'4818900',9,9,0,'','0000-00-00 00:00:00',NULL,NULL),(28,'5601210?',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(29,'9390124',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(30,'17024031',9,9,0,'','0000-00-00 00:00:00',NULL,NULL),(31,'18020180?',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(32,'19019090',9,9,0,'','0000-00-00 00:00:00',NULL,NULL),(33,'20211000',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(34,'21069099',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(35,'30019091',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(36,'30019099',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(37,'30021290',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(38,'30021500',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(39,'30022012',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(40,'30022013',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(41,'30022014',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(42,'30022016',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(43,'30022019',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(44,'30022023',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(45,'30022029',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(46,'30031000',9,9,0,'','0000-00-00 00:00:00',NULL,NULL),(47,'30033900',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(48,'30039011',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(49,'30039034',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(50,'30041010',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(51,'30041020',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(52,'30041030',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(53,'30041090',9,9,0,'','0000-00-00 00:00:00',NULL,NULL),(54,'30042011',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(55,'30042013',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(56,'30042019',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(57,'30042034',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(58,'30042039',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(59,'30042050',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(60,'30042060',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(61,'30042063',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(62,'30042064',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(63,'30042070',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(64,'30042095',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(65,'30042096',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(66,'30042097',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(67,'30042099',9,9,0,'','0000-00-00 00:00:00',NULL,NULL),(68,'30043099?',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(69,'30043110',9,9,0,'','0000-00-00 00:00:00',NULL,NULL),(70,'30043190',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(71,'30043193',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(72,'30043200',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(73,'30043912',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(74,'30043919',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(75,'30043990',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(76,'30045010',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(77,'30045020',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(78,'30045031',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(79,'30045033',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(80,'30045034',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(81,'30045036',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(82,'30045039',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(83,'30045090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(84,'30049011',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(85,'30049021',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(86,'30049022',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(87,'30049029',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(88,'30049031',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(89,'30049032',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(90,'30049033',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(91,'30049034',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(92,'30049035',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(93,'30049036',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(94,'30049039',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(95,'30049041',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(96,'30049042',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(97,'30049047',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(98,'30049049',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(99,'30049053',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(100,'30049056',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(101,'30049057',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(102,'30049059',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(103,'30049061',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(104,'30049062',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(105,'30049063',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(106,'30049065',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(107,'30049066',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(108,'30049067',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(109,'30049069',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(110,'30049072',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(111,'30049073',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(112,'30049074',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(113,'30049076',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(114,'30049079',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(115,'30049081',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(116,'30049082',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(117,'30049084',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(118,'30049086',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(119,'30049087',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(120,'30049088',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(121,'30049089',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(122,'30049090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(123,'30049091',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(124,'30049093',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(125,'30049094',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(126,'30049095',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(127,'30049099',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(128,'30049602',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(129,'30051000',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(130,'30051020',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(131,'30051030',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(132,'30051090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(133,'30059040',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(134,'30059060',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(135,'30059090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(136,'30061000',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(137,'30061001',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(138,'30061010',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(139,'30066010',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(140,'30066020',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(141,'30069100',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(142,'30189099',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(143,'30809031',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(144,'31069099',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(145,'33059090',9,9,0,'','0000-00-00 00:00:00',NULL,NULL),(146,'38089400',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(147,'38220011',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(148,'38220090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(149,'40151100',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(150,'40151900',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(151,'48189000',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(152,'49049099',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(153,'56012110',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(154,'58030012',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(155,'62104090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(156,'63079090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(157,'90059040',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(158,'90059060',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(159,'90180012?',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(160,'90181100',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(161,'90181290',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(162,'90183100',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(163,'90183220',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(164,'90183290',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(165,'90183910',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(166,'90183930',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(167,'90183990',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(168,'90189022',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(169,'90189023',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(170,'90189031',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(171,'90189032',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(172,'90189099',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(173,'90191910',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(174,'90192010',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(175,'90192090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(176,'90193910',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(177,'90199099?',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(178,'90211000',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(179,'90213100',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(180,'90219090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(181,'90219099',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(182,'158121010',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(183,'196050250',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(184,'300443110',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(185,'300490',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(186,'300490',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(187,'3002201',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(188,'30042031',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(189,'300412',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(190,'96190090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(191,'96190090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(192,'96190090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(193,'87139010',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(194,'3924',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(195,'4021090',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(196,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(197,'61159990',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(198,'4021090',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(199,'44190010',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(200,'4021090',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(201,'39269099',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(202,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(203,'30049092',9,9,0,'','0000-00-00 00:00:00',NULL,NULL),(204,'33062000',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(205,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(206,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(207,'30049071',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(208,'4021090',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(209,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(210,'38089191',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(211,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(212,'85167990',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(213,'33049990',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(214,'33049990',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(215,'4021090',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(216,'4021090',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(217,'4021090',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(218,'4021090',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(219,'4021090',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(220,'30044090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(221,'4021090',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(222,'4021090',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(223,'30032000',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(224,'4021090',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(225,'29029090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(226,'30049051',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(227,'40149099',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(228,'30032000',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(229,'30032000',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(230,'4021090',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(231,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(232,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(233,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(234,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(235,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(236,'90179000',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(237,'84141000',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(238,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(239,'4021090',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(240,'4021090',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(241,'4021090',0,0,0,'','0000-00-00 00:00:00',NULL,NULL),(242,'30022024',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(243,'30022021',2.5,2.5,0,'','0000-00-00 00:00:00',NULL,NULL),(244,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(245,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(246,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(247,'',9,9,0,'','0000-00-00 00:00:00',NULL,NULL),(248,'30032000',9,9,0,'','0000-00-00 00:00:00',NULL,NULL),(249,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(250,'',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(251,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(252,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(253,'90185090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(254,'90189029',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(255,'90181990',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(256,'90181990',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(257,'90181990',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(258,'90181990',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(259,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(260,'4021090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(261,'',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(262,'95079090',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(263,'0',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(264,'9018310',6,6,0,'','0000-00-00 00:00:00',NULL,NULL),(265,'90189029',9,9,0,'','0000-00-00 00:00:00',NULL,NULL),(266,'0',6,6,0,'','0000-00-00 00:00:00',NULL,NULL);
/*!40000 ALTER TABLE `hsn_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `icd`
--

DROP TABLE IF EXISTS `icd`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `icd` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `icd_version` int(11) NOT NULL,
  `icd_code` varchar(10) NOT NULL,
  `icd_diagnosis` varchar(255) NOT NULL,
  `is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_datetime` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `icd_code` (`icd_code`),
  KEY `icd_diagnosis` (`icd_diagnosis`(250)),
  KEY `icd_version` (`icd_version`)
) ENGINE=MyISAM AUTO_INCREMENT=180404 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `icd`
--

LOCK TABLES `icd` WRITE;
/*!40000 ALTER TABLE `icd` DISABLE KEYS */;
INSERT INTO `icd` VALUES (163286,10,'T23.472A ','Corrosion of unspecified degree of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(163285,10,'T23.471S ','Corrosion of unspecified degree of right wrist, sequela','Y','0000-00-00 00:00:00'),(163284,10,'T23.471D ','Corrosion of unspecified degree of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163283,10,'T23.471A ','Corrosion of unspecified degree of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(163282,10,'T23.469S ','Corrosion of unspecified degree of back of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(163281,10,'T23.469D ','Corrosion of unspecified degree of back of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163280,10,'T23.469A ','Corrosion of unspecified degree of back of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(163279,10,'T23.462S ','Corrosion of unspecified degree of back of left hand, sequela','Y','0000-00-00 00:00:00'),(163278,10,'T23.462D ','Corrosion of unspecified degree of back of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163277,10,'T23.462A ','Corrosion of unspecified degree of back of left hand, initial encounter','Y','0000-00-00 00:00:00'),(163276,10,'T23.461S ','Corrosion of unspecified degree of back of right hand, sequela','Y','0000-00-00 00:00:00'),(163275,10,'T23.461D ','Corrosion of unspecified degree of back of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163274,10,'T23.461A ','Corrosion of unspecified degree of back of right hand, initial encounter','Y','0000-00-00 00:00:00'),(163273,10,'T23.459S ','Corrosion of unspecified degree of unspecified palm, sequela','Y','0000-00-00 00:00:00'),(163272,10,'T23.459D ','Corrosion of unspecified degree of unspecified palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163271,10,'T23.459A ','Corrosion of unspecified degree of unspecified palm, initial encounter','Y','0000-00-00 00:00:00'),(163270,10,'T23.452S ','Corrosion of unspecified degree of left palm, sequela','Y','0000-00-00 00:00:00'),(163269,10,'T23.452D ','Corrosion of unspecified degree of left palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163268,10,'T23.452A ','Corrosion of unspecified degree of left palm, initial encounter','Y','0000-00-00 00:00:00'),(163267,10,'T23.451S ','Corrosion of unspecified degree of right palm, sequela','Y','0000-00-00 00:00:00'),(163266,10,'T23.451D ','Corrosion of unspecified degree of right palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163265,10,'T23.451A ','Corrosion of unspecified degree of right palm, initial encounter','Y','0000-00-00 00:00:00'),(163264,10,'T23.449S ','Corrosion of unspecified degree of unspecified multiple fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163263,10,'T23.449D ','Corrosion of unspecified degree of unspecified multiple fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163262,10,'T23.449A ','Corrosion of unspecified degree of unspecified multiple fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163261,10,'T23.442S ','Corrosion of unspecified degree of multiple left fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163260,10,'T23.442D ','Corrosion of unspecified degree of multiple left fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163259,10,'T23.442A ','Corrosion of unspecified degree of multiple left fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163258,10,'T23.441S ','Corrosion of unspecified degree of multiple right fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163257,10,'T23.441D ','Corrosion of unspecified degree of multiple right fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163256,10,'T23.441A ','Corrosion of unspecified degree of multiple right fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163255,10,'T23.439S ','Corrosion of unspecified degree of unspecified multiple fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163254,10,'T23.439D ','Corrosion of unspecified degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163253,10,'T23.439A ','Corrosion of unspecified degree of unspecified multiple fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163252,10,'T23.432S ','Corrosion of unspecified degree of multiple left fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163251,10,'T23.432D ','Corrosion of unspecified degree of multiple left fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163250,10,'T23.432A ','Corrosion of unspecified degree of multiple left fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163249,10,'T23.431S ','Corrosion of unspecified degree of multiple right fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163248,10,'T23.431D ','Corrosion of unspecified degree of multiple right fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163247,10,'T23.431A ','Corrosion of unspecified degree of multiple right fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163246,10,'T23.429S ','Corrosion of unspecified degree of unspecified single finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163245,10,'T23.429D ','Corrosion of unspecified degree of unspecified single finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163244,10,'T23.429A ','Corrosion of unspecified degree of unspecified single finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163243,10,'T23.422S ','Corrosion of unspecified degree of single left finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163242,10,'T23.422D ','Corrosion of unspecified degree of single left finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163241,10,'T23.422A ','Corrosion of unspecified degree of single left finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163240,10,'T23.421S ','Corrosion of unspecified degree of single right finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163239,10,'T23.421D ','Corrosion of unspecified degree of single right finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163238,10,'T23.421A ','Corrosion of unspecified degree of single right finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163237,10,'T23.419S ','Corrosion of unspecified degree of unspecified thumb (nail), sequela','Y','0000-00-00 00:00:00'),(163236,10,'T23.419D ','Corrosion of unspecified degree of unspecified thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163235,10,'T23.419A ','Corrosion of unspecified degree of unspecified thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(163234,10,'T23.412S ','Corrosion of unspecified degree of left thumb (nail), sequela','Y','0000-00-00 00:00:00'),(163233,10,'T23.412D ','Corrosion of unspecified degree of left thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163232,10,'T23.412A ','Corrosion of unspecified degree of left thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(163231,10,'T23.411S ','Corrosion of unspecified degree of right thumb (nail), sequela','Y','0000-00-00 00:00:00'),(163230,10,'T23.411D ','Corrosion of unspecified degree of right thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163229,10,'T23.411A ','Corrosion of unspecified degree of right thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(163228,10,'T23.409S ','Corrosion of unspecified degree of unspecified hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(163227,10,'T23.409D ','Corrosion of unspecified degree of unspecified hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(163226,10,'T23.409A ','Corrosion of unspecified degree of unspecified hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(163225,10,'T23.402S ','Corrosion of unspecified degree of left hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(163224,10,'T23.402D ','Corrosion of unspecified degree of left hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(163223,10,'T23.402A ','Corrosion of unspecified degree of left hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(163222,10,'T23.401S ','Corrosion of unspecified degree of right hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(163221,10,'T23.401D ','Corrosion of unspecified degree of right hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(163220,10,'T23.401A ','Corrosion of unspecified degree of right hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(163219,10,'T23.399S ','Burn of third degree of multiple sites of unspecified wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163218,10,'T23.399D ','Burn of third degree of multiple sites of unspecified wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163217,10,'T23.399A ','Burn of third degree of multiple sites of unspecified wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163216,10,'T23.392S ','Burn of third degree of multiple sites of left wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163215,10,'T23.392D ','Burn of third degree of multiple sites of left wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163214,10,'T23.392A ','Burn of third degree of multiple sites of left wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163213,10,'T23.391S ','Burn of third degree of multiple sites of right wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163212,10,'T23.391D ','Burn of third degree of multiple sites of right wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163211,10,'T23.391A ','Burn of third degree of multiple sites of right wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163210,10,'T23.379S ','Burn of third degree of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(163209,10,'T23.379D ','Burn of third degree of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163208,10,'T23.379A ','Burn of third degree of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(163207,10,'T23.372S ','Burn of third degree of left wrist, sequela','Y','0000-00-00 00:00:00'),(163206,10,'T23.372D ','Burn of third degree of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163205,10,'T23.372A ','Burn of third degree of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(163204,10,'T23.371S ','Burn of third degree of right wrist, sequela','Y','0000-00-00 00:00:00'),(163203,10,'T23.371D ','Burn of third degree of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163202,10,'T23.371A ','Burn of third degree of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(163201,10,'T23.369S ','Burn of third degree of back of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(163200,10,'T23.369D ','Burn of third degree of back of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163199,10,'T23.369A ','Burn of third degree of back of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(163198,10,'T23.362S ','Burn of third degree of back of left hand, sequela','Y','0000-00-00 00:00:00'),(163197,10,'T23.362D ','Burn of third degree of back of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163196,10,'T23.362A ','Burn of third degree of back of left hand, initial encounter','Y','0000-00-00 00:00:00'),(163195,10,'T23.361S ','Burn of third degree of back of right hand, sequela','Y','0000-00-00 00:00:00'),(163194,10,'T23.361D ','Burn of third degree of back of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163193,10,'T23.361A ','Burn of third degree of back of right hand, initial encounter','Y','0000-00-00 00:00:00'),(163192,10,'T23.359S ','Burn of third degree of unspecified palm, sequela','Y','0000-00-00 00:00:00'),(163191,10,'T23.359D ','Burn of third degree of unspecified palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163190,10,'T23.359A ','Burn of third degree of unspecified palm, initial encounter','Y','0000-00-00 00:00:00'),(163189,10,'T23.352S ','Burn of third degree of left palm, sequela','Y','0000-00-00 00:00:00'),(163188,10,'T23.352D ','Burn of third degree of left palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163187,10,'T23.352A ','Burn of third degree of left palm, initial encounter','Y','0000-00-00 00:00:00'),(163186,10,'T23.351S ','Burn of third degree of right palm, sequela','Y','0000-00-00 00:00:00'),(163185,10,'T23.351D ','Burn of third degree of right palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163184,10,'T23.351A ','Burn of third degree of right palm, initial encounter','Y','0000-00-00 00:00:00'),(163183,10,'T23.349S ','Burn of third degree of unspecified multiple fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163182,10,'T23.349D ','Burn of third degree of unspecified multiple fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163181,10,'T23.349A ','Burn of third degree of unspecified multiple fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163180,10,'T23.342S ','Burn of third degree of multiple left fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163179,10,'T23.342D ','Burn of third degree of multiple left fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163178,10,'T23.342A ','Burn of third degree of multiple left fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163177,10,'T23.341S ','Burn of third degree of multiple right fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163176,10,'T23.341D ','Burn of third degree of multiple right fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163175,10,'T23.341A ','Burn of third degree of multiple right fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163174,10,'T23.339S ','Burn of third degree of unspecified multiple fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163173,10,'T23.339D ','Burn of third degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163172,10,'T23.339A ','Burn of third degree of unspecified multiple fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163171,10,'T23.332S ','Burn of third degree of multiple left fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163170,10,'T23.332D ','Burn of third degree of multiple left fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163169,10,'T23.332A ','Burn of third degree of multiple left fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163168,10,'T23.331S ','Burn of third degree of multiple right fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163167,10,'T23.331D ','Burn of third degree of multiple right fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163166,10,'T23.331A ','Burn of third degree of multiple right fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163165,10,'T23.329S ','Burn of third degree of unspecified single finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163164,10,'T23.329D ','Burn of third degree of unspecified single finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163163,10,'T23.329A ','Burn of third degree of unspecified single finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163162,10,'T23.322S ','Burn of third degree of single left finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163161,10,'T23.322D ','Burn of third degree of single left finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163160,10,'T23.322A ','Burn of third degree of single left finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163159,10,'T23.321S ','Burn of third degree of single right finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163158,10,'T23.321D ','Burn of third degree of single right finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163157,10,'T23.321A ','Burn of third degree of single right finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163156,10,'T23.319S ','Burn of third degree of unspecified thumb (nail), sequela','Y','0000-00-00 00:00:00'),(163155,10,'T23.319D ','Burn of third degree of unspecified thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163154,10,'T23.319A ','Burn of third degree of unspecified thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(163153,10,'T23.312S ','Burn of third degree of left thumb (nail), sequela','Y','0000-00-00 00:00:00'),(163152,10,'T23.312D ','Burn of third degree of left thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163151,10,'T23.312A ','Burn of third degree of left thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(163150,10,'T23.311S ','Burn of third degree of right thumb (nail), sequela','Y','0000-00-00 00:00:00'),(163149,10,'T23.311D ','Burn of third degree of right thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163148,10,'T23.311A ','Burn of third degree of right thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(163147,10,'T23.309S ','Burn of third degree of unspecified hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(163146,10,'T23.309D ','Burn of third degree of unspecified hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(163145,10,'T23.309A ','Burn of third degree of unspecified hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(163144,10,'T23.302S ','Burn of third degree of left hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(163143,10,'T23.302D ','Burn of third degree of left hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(163142,10,'T23.302A ','Burn of third degree of left hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(163141,10,'T23.301S ','Burn of third degree of right hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(163140,10,'T23.301D ','Burn of third degree of right hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(163139,10,'T23.301A ','Burn of third degree of right hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(163138,10,'T23.299S ','Burn of second degree of multiple sites of unspecified wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163137,10,'T23.299D ','Burn of second degree of multiple sites of unspecified wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163136,10,'T23.299A ','Burn of second degree of multiple sites of unspecified wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163135,10,'T23.292S ','Burn of second degree of multiple sites of left wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163134,10,'T23.292D ','Burn of second degree of multiple sites of left wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163133,10,'T23.292A ','Burn of second degree of multiple sites of left wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163132,10,'T23.291S ','Burn of second degree of multiple sites of right wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163131,10,'T23.291D ','Burn of second degree of multiple sites of right wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163130,10,'T23.291A ','Burn of second degree of multiple sites of right wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163129,10,'T23.279S ','Burn of second degree of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(163128,10,'T23.279D ','Burn of second degree of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163127,10,'T23.279A ','Burn of second degree of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(163126,10,'T23.272S ','Burn of second degree of left wrist, sequela','Y','0000-00-00 00:00:00'),(163125,10,'T23.272D ','Burn of second degree of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163124,10,'T23.272A ','Burn of second degree of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(163123,10,'T23.271S ','Burn of second degree of right wrist, sequela','Y','0000-00-00 00:00:00'),(163122,10,'T23.271D ','Burn of second degree of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163121,10,'T23.271A ','Burn of second degree of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(163120,10,'T23.269S ','Burn of second degree of back of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(163119,10,'T23.269D ','Burn of second degree of back of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163118,10,'T23.269A ','Burn of second degree of back of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(163117,10,'T23.262S ','Burn of second degree of back of left hand, sequela','Y','0000-00-00 00:00:00'),(163116,10,'T23.262D ','Burn of second degree of back of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163115,10,'T23.262A ','Burn of second degree of back of left hand, initial encounter','Y','0000-00-00 00:00:00'),(163114,10,'T23.261S ','Burn of second degree of back of right hand, sequela','Y','0000-00-00 00:00:00'),(163113,10,'T23.261D ','Burn of second degree of back of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163112,10,'T23.261A ','Burn of second degree of back of right hand, initial encounter','Y','0000-00-00 00:00:00'),(163111,10,'T23.259S ','Burn of second degree of unspecified palm, sequela','Y','0000-00-00 00:00:00'),(163110,10,'T23.259D ','Burn of second degree of unspecified palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163109,10,'T23.259A ','Burn of second degree of unspecified palm, initial encounter','Y','0000-00-00 00:00:00'),(163108,10,'T23.252S ','Burn of second degree of left palm, sequela','Y','0000-00-00 00:00:00'),(163107,10,'T23.252D ','Burn of second degree of left palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163106,10,'T23.252A ','Burn of second degree of left palm, initial encounter','Y','0000-00-00 00:00:00'),(163105,10,'T23.251S ','Burn of second degree of right palm, sequela','Y','0000-00-00 00:00:00'),(163104,10,'T23.251D ','Burn of second degree of right palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163103,10,'T23.251A ','Burn of second degree of right palm, initial encounter','Y','0000-00-00 00:00:00'),(163102,10,'T23.249S ','Burn of second degree of unspecified multiple fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163101,10,'T23.249D ','Burn of second degree of unspecified multiple fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163100,10,'T23.249A ','Burn of second degree of unspecified multiple fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163099,10,'T23.242S ','Burn of second degree of multiple left fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163098,10,'T23.242D ','Burn of second degree of multiple left fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163097,10,'T23.242A ','Burn of second degree of multiple left fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163096,10,'T23.241S ','Burn of second degree of multiple right fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163095,10,'T23.241D ','Burn of second degree of multiple right fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163094,10,'T23.241A ','Burn of second degree of multiple right fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163093,10,'T23.239S ','Burn of second degree of unspecified multiple fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163092,10,'T23.239D ','Burn of second degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163091,10,'T23.239A ','Burn of second degree of unspecified multiple fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163090,10,'T23.232S ','Burn of second degree of multiple left fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163089,10,'T23.232D ','Burn of second degree of multiple left fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163088,10,'T23.232A ','Burn of second degree of multiple left fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163087,10,'T23.231S ','Burn of second degree of multiple right fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163086,10,'T23.231D ','Burn of second degree of multiple right fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163085,10,'T23.231A ','Burn of second degree of multiple right fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163084,10,'T23.229S ','Burn of second degree of unspecified single finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163083,10,'T23.229D ','Burn of second degree of unspecified single finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163082,10,'T23.229A ','Burn of second degree of unspecified single finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163081,10,'T23.222S ','Burn of second degree of single left finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163080,10,'T23.222D ','Burn of second degree of single left finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163079,10,'T23.222A ','Burn of second degree of single left finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163078,10,'T23.221S ','Burn of second degree of single right finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163077,10,'T23.221D ','Burn of second degree of single right finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163076,10,'T23.221A ','Burn of second degree of single right finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163075,10,'T23.219S ','Burn of second degree of unspecified thumb (nail), sequela','Y','0000-00-00 00:00:00'),(163074,10,'T23.219D ','Burn of second degree of unspecified thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163073,10,'T23.219A ','Burn of second degree of unspecified thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(163072,10,'T23.212S ','Burn of second degree of left thumb (nail), sequela','Y','0000-00-00 00:00:00'),(163071,10,'T23.212D ','Burn of second degree of left thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163070,10,'T23.212A ','Burn of second degree of left thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(163069,10,'T23.211S ','Burn of second degree of right thumb (nail), sequela','Y','0000-00-00 00:00:00'),(163068,10,'T23.211D ','Burn of second degree of right thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163067,10,'T23.211A ','Burn of second degree of right thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(163066,10,'T23.209S ','Burn of second degree of unspecified hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(163065,10,'T23.209D ','Burn of second degree of unspecified hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(163064,10,'T23.209A ','Burn of second degree of unspecified hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(163063,10,'T23.202S ','Burn of second degree of left hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(163062,10,'T23.202D ','Burn of second degree of left hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(163061,10,'T23.202A ','Burn of second degree of left hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(163060,10,'T23.201S ','Burn of second degree of right hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(163059,10,'T23.201D ','Burn of second degree of right hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(163058,10,'T23.201A ','Burn of second degree of right hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(163057,10,'T23.199S ','Burn of first degree of multiple sites of unspecified wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163056,10,'T23.199D ','Burn of first degree of multiple sites of unspecified wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163055,10,'T23.199A ','Burn of first degree of multiple sites of unspecified wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163054,10,'T23.192S ','Burn of first degree of multiple sites of left wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163053,10,'T23.192D ','Burn of first degree of multiple sites of left wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163052,10,'T23.192A ','Burn of first degree of multiple sites of left wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163051,10,'T23.191S ','Burn of first degree of multiple sites of right wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163050,10,'T23.191D ','Burn of first degree of multiple sites of right wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163049,10,'T23.191A ','Burn of first degree of multiple sites of right wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163048,10,'T23.179S ','Burn of first degree of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(163047,10,'T23.179D ','Burn of first degree of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163046,10,'T23.179A ','Burn of first degree of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(163045,10,'T23.172S ','Burn of first degree of left wrist, sequela','Y','0000-00-00 00:00:00'),(163044,10,'T23.172D ','Burn of first degree of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163043,10,'T23.172A ','Burn of first degree of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(163042,10,'T23.171S ','Burn of first degree of right wrist, sequela','Y','0000-00-00 00:00:00'),(163041,10,'T23.171D ','Burn of first degree of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163040,10,'T23.171A ','Burn of first degree of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(163039,10,'T23.169S ','Burn of first degree of back of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(163038,10,'T23.169D ','Burn of first degree of back of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163037,10,'T23.169A ','Burn of first degree of back of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(163036,10,'T23.162S ','Burn of first degree of back of left hand, sequela','Y','0000-00-00 00:00:00'),(163035,10,'T23.162D ','Burn of first degree of back of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163034,10,'T23.162A ','Burn of first degree of back of left hand, initial encounter','Y','0000-00-00 00:00:00'),(163033,10,'T23.161S ','Burn of first degree of back of right hand, sequela','Y','0000-00-00 00:00:00'),(163032,10,'T23.161D ','Burn of first degree of back of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163031,10,'T23.161A ','Burn of first degree of back of right hand, initial encounter','Y','0000-00-00 00:00:00'),(163030,10,'T23.159S ','Burn of first degree of unspecified palm, sequela','Y','0000-00-00 00:00:00'),(163029,10,'T23.159D ','Burn of first degree of unspecified palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163028,10,'T23.159A ','Burn of first degree of unspecified palm, initial encounter','Y','0000-00-00 00:00:00'),(163027,10,'T23.152S ','Burn of first degree of left palm, sequela','Y','0000-00-00 00:00:00'),(163026,10,'T23.152D ','Burn of first degree of left palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163025,10,'T23.152A ','Burn of first degree of left palm, initial encounter','Y','0000-00-00 00:00:00'),(163024,10,'T23.151S ','Burn of first degree of right palm, sequela','Y','0000-00-00 00:00:00'),(163023,10,'T23.151D ','Burn of first degree of right palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163022,10,'T23.151A ','Burn of first degree of right palm, initial encounter','Y','0000-00-00 00:00:00'),(163021,10,'T23.149S ','Burn of first degree of unspecified multiple fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163020,10,'T23.149D ','Burn of first degree of unspecified multiple fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163019,10,'T23.149A ','Burn of first degree of unspecified multiple fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163018,10,'T23.142S ','Burn of first degree of multiple left fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163017,10,'T23.142D ','Burn of first degree of multiple left fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163016,10,'T23.142A ','Burn of first degree of multiple left fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163015,10,'T23.141S ','Burn of first degree of multiple right fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163014,10,'T23.141D ','Burn of first degree of multiple right fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163013,10,'T23.141A ','Burn of first degree of multiple right fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163012,10,'T23.139S ','Burn of first degree of unspecified multiple fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163011,10,'T23.139D ','Burn of first degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163010,10,'T23.139A ','Burn of first degree of unspecified multiple fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163009,10,'T23.132S ','Burn of first degree of multiple left fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163008,10,'T23.132D ','Burn of first degree of multiple left fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163007,10,'T23.132A ','Burn of first degree of multiple left fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163006,10,'T23.131S ','Burn of first degree of multiple right fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163005,10,'T23.131D ','Burn of first degree of multiple right fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163004,10,'T23.131A ','Burn of first degree of multiple right fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163003,10,'T23.129S ','Burn of first degree of unspecified single finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163002,10,'T23.129D ','Burn of first degree of unspecified single finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163001,10,'T23.129A ','Burn of first degree of unspecified single finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163000,10,'T23.122S ','Burn of first degree of single left finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(162999,10,'T23.122D ','Burn of first degree of single left finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(162998,10,'T23.122A ','Burn of first degree of single left finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(162997,10,'T23.121S ','Burn of first degree of single right finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(162996,10,'T23.121D ','Burn of first degree of single right finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(162995,10,'T23.121A ','Burn of first degree of single right finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(162994,10,'T23.119S ','Burn of first degree of unspecified thumb (nail), sequela','Y','0000-00-00 00:00:00'),(162993,10,'T23.119D ','Burn of first degree of unspecified thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(162992,10,'T23.119A ','Burn of first degree of unspecified thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(162991,10,'T23.112S ','Burn of first degree of left thumb (nail), sequela','Y','0000-00-00 00:00:00'),(162990,10,'T23.112D ','Burn of first degree of left thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(162989,10,'T23.112A ','Burn of first degree of left thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(162988,10,'T23.111S ','Burn of first degree of right thumb (nail), sequela','Y','0000-00-00 00:00:00'),(162987,10,'T23.111D ','Burn of first degree of right thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(162986,10,'T23.111A ','Burn of first degree of right thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(162985,10,'T23.109S ','Burn of first degree of unspecified hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162984,10,'T23.109D ','Burn of first degree of unspecified hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162983,10,'T23.109A ','Burn of first degree of unspecified hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162982,10,'T23.102S ','Burn of first degree of left hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162981,10,'T23.102D ','Burn of first degree of left hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162980,10,'T23.102A ','Burn of first degree of left hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162979,10,'T23.101S ','Burn of first degree of right hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162978,10,'T23.101D ','Burn of first degree of right hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162977,10,'T23.101A ','Burn of first degree of right hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162976,10,'T23.099S ','Burn of unspecified degree of multiple sites of unspecified wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162975,10,'T23.099D ','Burn of unspecified degree of multiple sites of unspecified wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162974,10,'T23.099A ','Burn of unspecified degree of multiple sites of unspecified wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162973,10,'T23.092S ','Burn of unspecified degree of multiple sites of left wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162972,10,'T23.092D ','Burn of unspecified degree of multiple sites of left wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162971,10,'T23.092A ','Burn of unspecified degree of multiple sites of left wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162970,10,'T23.091S ','Burn of unspecified degree of multiple sites of right wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162969,10,'T23.091D ','Burn of unspecified degree of multiple sites of right wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162968,10,'T23.091A ','Burn of unspecified degree of multiple sites of right wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162967,10,'T23.079S ','Burn of unspecified degree of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(162966,10,'T23.079D ','Burn of unspecified degree of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(162965,10,'T23.079A ','Burn of unspecified degree of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(162964,10,'T23.072S ','Burn of unspecified degree of left wrist, sequela','Y','0000-00-00 00:00:00'),(162963,10,'T23.072D ','Burn of unspecified degree of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(162962,10,'T23.072A ','Burn of unspecified degree of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(162961,10,'T23.071S ','Burn of unspecified degree of right wrist, sequela','Y','0000-00-00 00:00:00'),(162960,10,'T23.071D ','Burn of unspecified degree of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(162959,10,'T23.071A ','Burn of unspecified degree of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(162958,10,'T23.069S ','Burn of unspecified degree of back of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(162957,10,'T23.069D ','Burn of unspecified degree of back of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162956,10,'T23.069A ','Burn of unspecified degree of back of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(162955,10,'T23.062S ','Burn of unspecified degree of back of left hand, sequela','Y','0000-00-00 00:00:00'),(162954,10,'T23.062D ','Burn of unspecified degree of back of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162953,10,'T23.062A ','Burn of unspecified degree of back of left hand, initial encounter','Y','0000-00-00 00:00:00'),(162952,10,'T23.061S ','Burn of unspecified degree of back of right hand, sequela','Y','0000-00-00 00:00:00'),(162951,10,'T23.061D ','Burn of unspecified degree of back of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162950,10,'T23.061A ','Burn of unspecified degree of back of right hand, initial encounter','Y','0000-00-00 00:00:00'),(162949,10,'T23.059S ','Burn of unspecified degree of unspecified palm, sequela','Y','0000-00-00 00:00:00'),(162948,10,'T23.059D ','Burn of unspecified degree of unspecified palm, subsequent encounter','Y','0000-00-00 00:00:00'),(162947,10,'T23.059A ','Burn of unspecified degree of unspecified palm, initial encounter','Y','0000-00-00 00:00:00'),(162946,10,'T23.052S ','Burn of unspecified degree of left palm, sequela','Y','0000-00-00 00:00:00'),(162945,10,'T23.052D ','Burn of unspecified degree of left palm, subsequent encounter','Y','0000-00-00 00:00:00'),(162944,10,'T23.052A ','Burn of unspecified degree of left palm, initial encounter','Y','0000-00-00 00:00:00'),(162943,10,'T23.051S ','Burn of unspecified degree of right palm, sequela','Y','0000-00-00 00:00:00'),(162942,10,'T23.051D ','Burn of unspecified degree of right palm, subsequent encounter','Y','0000-00-00 00:00:00'),(162941,10,'T23.051A ','Burn of unspecified degree of right palm, initial encounter','Y','0000-00-00 00:00:00'),(162940,10,'T23.049S ','Burn of unspecified degree of unspecified multiple fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(162939,10,'T23.049D ','Burn of unspecified degree of unspecified multiple fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(162938,10,'T23.049A ','Burn of unspecified degree of unspecified multiple fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(162937,10,'T23.042S ','Burn of unspecified degree of multiple left fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(162936,10,'T23.042D ','Burn of unspecified degree of multiple left fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(162935,10,'T23.042A ','Burn of unspecified degree of multiple left fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(162934,10,'T23.041S ','Burn of unspecified degree of multiple right fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(162933,10,'T23.041D ','Burn of unspecified degree of multiple right fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(162932,10,'T23.041A ','Burn of unspecified degree of multiple right fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(162931,10,'T23.039S ','Burn of unspecified degree of unspecified multiple fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(162930,10,'T23.039D ','Burn of unspecified degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(162929,10,'T23.039A ','Burn of unspecified degree of unspecified multiple fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(162928,10,'T23.032S ','Burn of unspecified degree of multiple left fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(162927,10,'T23.032D ','Burn of unspecified degree of multiple left fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(162926,10,'T23.032A ','Burn of unspecified degree of multiple left fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(162925,10,'T23.031S ','Burn of unspecified degree of multiple right fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(162924,10,'T23.031D ','Burn of unspecified degree of multiple right fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(162923,10,'T23.031A ','Burn of unspecified degree of multiple right fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(162922,10,'T23.029S ','Burn of unspecified degree of unspecified single finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(162921,10,'T23.029D ','Burn of unspecified degree of unspecified single finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(162920,10,'T23.029A ','Burn of unspecified degree of unspecified single finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(162919,10,'T23.022S ','Burn of unspecified degree of single left finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(162918,10,'T23.022D ','Burn of unspecified degree of single left finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(162917,10,'T23.022A ','Burn of unspecified degree of single left finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(162916,10,'T23.021S ','Burn of unspecified degree of single right finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(162915,10,'T23.021D ','Burn of unspecified degree of single right finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(162914,10,'T23.021A ','Burn of unspecified degree of single right finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(162913,10,'T23.019S ','Burn of unspecified degree of unspecified thumb (nail), sequela','Y','0000-00-00 00:00:00'),(162912,10,'T23.019D ','Burn of unspecified degree of unspecified thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(162911,10,'T23.019A ','Burn of unspecified degree of unspecified thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(162910,10,'T23.012S ','Burn of unspecified degree of left thumb (nail), sequela','Y','0000-00-00 00:00:00'),(162909,10,'T23.012D ','Burn of unspecified degree of left thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(162908,10,'T23.012A ','Burn of unspecified degree of left thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(162907,10,'T23.011S ','Burn of unspecified degree of right thumb (nail), sequela','Y','0000-00-00 00:00:00'),(162906,10,'T23.011D ','Burn of unspecified degree of right thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(162905,10,'T23.011A ','Burn of unspecified degree of right thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(162904,10,'T23.009S ','Burn of unspecified degree of unspecified hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162903,10,'T23.009D ','Burn of unspecified degree of unspecified hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162902,10,'T23.009A ','Burn of unspecified degree of unspecified hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162901,10,'T23.002S ','Burn of unspecified degree of left hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162900,10,'T23.002D ','Burn of unspecified degree of left hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162899,10,'T23.002A ','Burn of unspecified degree of left hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162898,10,'T23.001S ','Burn of unspecified degree of right hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162897,10,'T23.001D ','Burn of unspecified degree of right hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162896,10,'T23.001A ','Burn of unspecified degree of right hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162895,10,'T22.799S ','Corrosion of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162894,10,'T22.799D ','Corrosion of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162893,10,'T22.799A ','Corrosion of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162892,10,'T22.792S ','Corrosion of third degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162891,10,'T22.792D ','Corrosion of third degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162890,10,'T22.792A ','Corrosion of third degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162889,10,'T22.791S ','Corrosion of third degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162888,10,'T22.791D ','Corrosion of third degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162887,10,'T22.791A ','Corrosion of third degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162886,10,'T22.769S ','Corrosion of third degree of unspecified scapular region, sequela','Y','0000-00-00 00:00:00'),(162885,10,'T22.769D ','Corrosion of third degree of unspecified scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162884,10,'T22.769A ','Corrosion of third degree of unspecified scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162883,10,'T22.762S ','Corrosion of third degree of left scapular region, sequela','Y','0000-00-00 00:00:00'),(162882,10,'T22.762D ','Corrosion of third degree of left scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162881,10,'T22.762A ','Corrosion of third degree of left scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162880,10,'T22.761S ','Corrosion of third degree of right scapular region, sequela','Y','0000-00-00 00:00:00'),(162879,10,'T22.761D ','Corrosion of third degree of right scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162878,10,'T22.761A ','Corrosion of third degree of right scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162877,10,'T22.759S ','Corrosion of third degree of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(162876,10,'T22.759D ','Corrosion of third degree of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162875,10,'T22.759A ','Corrosion of third degree of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162874,10,'T22.752S ','Corrosion of third degree of left shoulder, sequela','Y','0000-00-00 00:00:00'),(162873,10,'T22.752D ','Corrosion of third degree of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162872,10,'T22.752A ','Corrosion of third degree of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162870,10,'T22.751D ','Corrosion of third degree of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162871,10,'T22.751S ','Corrosion of third degree of right shoulder, sequela','Y','0000-00-00 00:00:00'),(162869,10,'T22.751A ','Corrosion of third degree of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162868,10,'T22.749S ','Corrosion of third degree of unspecified axilla, sequela','Y','0000-00-00 00:00:00'),(162867,10,'T22.749D ','Corrosion of third degree of unspecified axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162866,10,'T22.749A ','Corrosion of third degree of unspecified axilla, initial encounter','Y','0000-00-00 00:00:00'),(162865,10,'T22.742S ','Corrosion of third degree of left axilla, sequela','Y','0000-00-00 00:00:00'),(162864,10,'T22.742D ','Corrosion of third degree of left axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162863,10,'T22.742A ','Corrosion of third degree of left axilla, initial encounter','Y','0000-00-00 00:00:00'),(162862,10,'T22.741S ','Corrosion of third degree of right axilla, sequela','Y','0000-00-00 00:00:00'),(162861,10,'T22.741D ','Corrosion of third degree of right axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162860,10,'T22.741A ','Corrosion of third degree of right axilla, initial encounter','Y','0000-00-00 00:00:00'),(162859,10,'T22.739S ','Corrosion of third degree of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(162858,10,'T22.739D ','Corrosion of third degree of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162857,10,'T22.739A ','Corrosion of third degree of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162856,10,'T22.732S ','Corrosion of third degree of left upper arm, sequela','Y','0000-00-00 00:00:00'),(162855,10,'T22.732D ','Corrosion of third degree of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162854,10,'T22.732A ','Corrosion of third degree of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162853,10,'T22.731S ','Corrosion of third degree of right upper arm, sequela','Y','0000-00-00 00:00:00'),(162852,10,'T22.731D ','Corrosion of third degree of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162851,10,'T22.731A ','Corrosion of third degree of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162850,10,'T22.729S ','Corrosion of third degree of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(162849,10,'T22.729D ','Corrosion of third degree of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162848,10,'T22.729A ','Corrosion of third degree of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(162847,10,'T22.722S ','Corrosion of third degree of left elbow, sequela','Y','0000-00-00 00:00:00'),(162846,10,'T22.722D ','Corrosion of third degree of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162845,10,'T22.722A ','Corrosion of third degree of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(162844,10,'T22.721S ','Corrosion of third degree of right elbow, sequela','Y','0000-00-00 00:00:00'),(162843,10,'T22.721D ','Corrosion of third degree of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162842,10,'T22.721A ','Corrosion of third degree of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(162841,10,'T22.719S ','Corrosion of third degree of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(162840,10,'T22.719D ','Corrosion of third degree of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162839,10,'T22.719A ','Corrosion of third degree of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(162838,10,'T22.712S ','Corrosion of third degree of left forearm, sequela','Y','0000-00-00 00:00:00'),(162837,10,'T22.712D ','Corrosion of third degree of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162836,10,'T22.712A ','Corrosion of third degree of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(162835,10,'T22.711S ','Corrosion of third degree of right forearm, sequela','Y','0000-00-00 00:00:00'),(162834,10,'T22.711D ','Corrosion of third degree of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162833,10,'T22.711A ','Corrosion of third degree of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(162832,10,'T22.70XS ','Corrosion of third degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162831,10,'T22.70XD ','Corrosion of third degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162830,10,'T22.70XA ','Corrosion of third degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162829,10,'T22.699S ','Corrosion of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162828,10,'T22.699D ','Corrosion of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162827,10,'T22.699A ','Corrosion of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162826,10,'T22.692S ','Corrosion of second degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162825,10,'T22.692D ','Corrosion of second degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162824,10,'T22.692A ','Corrosion of second degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162823,10,'T22.691S ','Corrosion of second degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162822,10,'T22.691D ','Corrosion of second degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162821,10,'T22.691A ','Corrosion of second degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162820,10,'T22.669S ','Corrosion of second degree of unspecified scapular region, sequela','Y','0000-00-00 00:00:00'),(162819,10,'T22.669D ','Corrosion of second degree of unspecified scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162818,10,'T22.669A ','Corrosion of second degree of unspecified scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162817,10,'T22.662S ','Corrosion of second degree of left scapular region, sequela','Y','0000-00-00 00:00:00'),(162816,10,'T22.662D ','Corrosion of second degree of left scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162815,10,'T22.662A ','Corrosion of second degree of left scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162814,10,'T22.661S ','Corrosion of second degree of right scapular region, sequela','Y','0000-00-00 00:00:00'),(162813,10,'T22.661D ','Corrosion of second degree of right scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162812,10,'T22.661A ','Corrosion of second degree of right scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162811,10,'T22.659S ','Corrosion of second degree of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(162810,10,'T22.659D ','Corrosion of second degree of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162809,10,'T22.659A ','Corrosion of second degree of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162808,10,'T22.652S ','Corrosion of second degree of left shoulder, sequela','Y','0000-00-00 00:00:00'),(162807,10,'T22.652D ','Corrosion of second degree of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162806,10,'T22.652A ','Corrosion of second degree of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162805,10,'T22.651S ','Corrosion of second degree of right shoulder, sequela','Y','0000-00-00 00:00:00'),(162804,10,'T22.651D ','Corrosion of second degree of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162803,10,'T22.651A ','Corrosion of second degree of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162802,10,'T22.649S ','Corrosion of second degree of unspecified axilla, sequela','Y','0000-00-00 00:00:00'),(162801,10,'T22.649D ','Corrosion of second degree of unspecified axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162800,10,'T22.649A ','Corrosion of second degree of unspecified axilla, initial encounter','Y','0000-00-00 00:00:00'),(162799,10,'T22.642S ','Corrosion of second degree of left axilla, sequela','Y','0000-00-00 00:00:00'),(162798,10,'T22.642D ','Corrosion of second degree of left axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162797,10,'T22.642A ','Corrosion of second degree of left axilla, initial encounter','Y','0000-00-00 00:00:00'),(162796,10,'T22.641S ','Corrosion of second degree of right axilla, sequela','Y','0000-00-00 00:00:00'),(162795,10,'T22.641D ','Corrosion of second degree of right axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162794,10,'T22.641A ','Corrosion of second degree of right axilla, initial encounter','Y','0000-00-00 00:00:00'),(162793,10,'T22.639S ','Corrosion of second degree of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(162792,10,'T22.639D ','Corrosion of second degree of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162791,10,'T22.639A ','Corrosion of second degree of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162790,10,'T22.632S ','Corrosion of second degree of left upper arm, sequela','Y','0000-00-00 00:00:00'),(162789,10,'T22.632D ','Corrosion of second degree of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162788,10,'T22.632A ','Corrosion of second degree of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162787,10,'T22.631S ','Corrosion of second degree of right upper arm, sequela','Y','0000-00-00 00:00:00'),(162786,10,'T22.631D ','Corrosion of second degree of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162785,10,'T22.631A ','Corrosion of second degree of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162784,10,'T22.629S ','Corrosion of second degree of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(162783,10,'T22.629D ','Corrosion of second degree of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162782,10,'T22.629A ','Corrosion of second degree of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(162781,10,'T22.622S ','Corrosion of second degree of left elbow, sequela','Y','0000-00-00 00:00:00'),(162780,10,'T22.622D ','Corrosion of second degree of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162779,10,'T22.622A ','Corrosion of second degree of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(162778,10,'T22.621S ','Corrosion of second degree of right elbow, sequela','Y','0000-00-00 00:00:00'),(162777,10,'T22.621D ','Corrosion of second degree of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162776,10,'T22.621A ','Corrosion of second degree of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(162775,10,'T22.619S ','Corrosion of second degree of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(162774,10,'T22.619D ','Corrosion of second degree of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162773,10,'T22.619A ','Corrosion of second degree of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(162772,10,'T22.612S ','Corrosion of second degree of left forearm, sequela','Y','0000-00-00 00:00:00'),(162771,10,'T22.612D ','Corrosion of second degree of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162770,10,'T22.612A ','Corrosion of second degree of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(162769,10,'T22.611S ','Corrosion of second degree of right forearm, sequela','Y','0000-00-00 00:00:00'),(162768,10,'T22.611D ','Corrosion of second degree of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162767,10,'T22.611A ','Corrosion of second degree of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(162766,10,'T22.60XS ','Corrosion of second degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162765,10,'T22.60XD ','Corrosion of second degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162764,10,'T22.60XA ','Corrosion of second degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162763,10,'T22.599S ','Corrosion of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162762,10,'T22.599D ','Corrosion of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162761,10,'T22.599A ','Corrosion of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162760,10,'T22.592S ','Corrosion of first degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162759,10,'T22.592D ','Corrosion of first degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162758,10,'T22.592A ','Corrosion of first degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162757,10,'T22.591S ','Corrosion of first degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162756,10,'T22.591D ','Corrosion of first degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162755,10,'T22.591A ','Corrosion of first degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162754,10,'T22.569S ','Corrosion of first degree of unspecified scapular region, sequela','Y','0000-00-00 00:00:00'),(162753,10,'T22.569D ','Corrosion of first degree of unspecified scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162752,10,'T22.569A ','Corrosion of first degree of unspecified scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162751,10,'T22.562S ','Corrosion of first degree of left scapular region, sequela','Y','0000-00-00 00:00:00'),(162750,10,'T22.562D ','Corrosion of first degree of left scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162749,10,'T22.562A ','Corrosion of first degree of left scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162748,10,'T22.561S ','Corrosion of first degree of right scapular region, sequela','Y','0000-00-00 00:00:00'),(162747,10,'T22.561D ','Corrosion of first degree of right scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162746,10,'T22.561A ','Corrosion of first degree of right scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162745,10,'T22.559S ','Corrosion of first degree of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(162744,10,'T22.559D ','Corrosion of first degree of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162743,10,'T22.559A ','Corrosion of first degree of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162742,10,'T22.552S ','Corrosion of first degree of left shoulder, sequela','Y','0000-00-00 00:00:00'),(162741,10,'T22.552D ','Corrosion of first degree of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162740,10,'T22.552A ','Corrosion of first degree of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162739,10,'T22.551S ','Corrosion of first degree of right shoulder, sequela','Y','0000-00-00 00:00:00'),(162738,10,'T22.551D ','Corrosion of first degree of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162737,10,'T22.551A ','Corrosion of first degree of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162736,10,'T22.549S ','Corrosion of first degree of unspecified axilla, sequela','Y','0000-00-00 00:00:00'),(162735,10,'T22.549D ','Corrosion of first degree of unspecified axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162734,10,'T22.549A ','Corrosion of first degree of unspecified axilla, initial encounter','Y','0000-00-00 00:00:00'),(162733,10,'T22.542S ','Corrosion of first degree of left axilla, sequela','Y','0000-00-00 00:00:00'),(162732,10,'T22.542D ','Corrosion of first degree of left axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162731,10,'T22.542A ','Corrosion of first degree of left axilla, initial encounter','Y','0000-00-00 00:00:00'),(162730,10,'T22.541S ','Corrosion of first degree of right axilla, sequela','Y','0000-00-00 00:00:00'),(162729,10,'T22.541D ','Corrosion of first degree of right axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162728,10,'T22.541A ','Corrosion of first degree of right axilla, initial encounter','Y','0000-00-00 00:00:00'),(162727,10,'T22.539S ','Corrosion of first degree of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(162726,10,'T22.539D ','Corrosion of first degree of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162725,10,'T22.539A ','Corrosion of first degree of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162724,10,'T22.532S ','Corrosion of first degree of left upper arm, sequela','Y','0000-00-00 00:00:00'),(162723,10,'T22.532D ','Corrosion of first degree of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162722,10,'T22.532A ','Corrosion of first degree of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162721,10,'T22.531S ','Corrosion of first degree of right upper arm, sequela','Y','0000-00-00 00:00:00'),(162720,10,'T22.531D ','Corrosion of first degree of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162719,10,'T22.531A ','Corrosion of first degree of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162718,10,'T22.529S ','Corrosion of first degree of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(162717,10,'T22.529D ','Corrosion of first degree of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162716,10,'T22.529A ','Corrosion of first degree of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(162715,10,'T22.522S ','Corrosion of first degree of left elbow, sequela','Y','0000-00-00 00:00:00'),(162714,10,'T22.522D ','Corrosion of first degree of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162713,10,'T22.522A ','Corrosion of first degree of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(162712,10,'T22.521S ','Corrosion of first degree of right elbow, sequela','Y','0000-00-00 00:00:00'),(162711,10,'T22.521D ','Corrosion of first degree of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162710,10,'T22.521A ','Corrosion of first degree of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(162709,10,'T22.519S ','Corrosion of first degree of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(162708,10,'T22.519D ','Corrosion of first degree of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162707,10,'T22.519A ','Corrosion of first degree of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(162706,10,'T22.512S ','Corrosion of first degree of left forearm, sequela','Y','0000-00-00 00:00:00'),(162705,10,'T22.512D ','Corrosion of first degree of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162704,10,'T22.512A ','Corrosion of first degree of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(162703,10,'T22.511S ','Corrosion of first degree of right forearm, sequela','Y','0000-00-00 00:00:00'),(162702,10,'T22.511D ','Corrosion of first degree of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162701,10,'T22.511A ','Corrosion of first degree of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(162700,10,'T22.50XS ','Corrosion of first degree of shoulder and upper limb, except wrist and hand unspecified site, sequela','Y','0000-00-00 00:00:00'),(162699,10,'T22.50XD ','Corrosion of first degree of shoulder and upper limb, except wrist and hand unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162698,10,'T22.50XA ','Corrosion of first degree of shoulder and upper limb, except wrist and hand unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162697,10,'T22.499S ','Corrosion of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162696,10,'T22.499D ','Corrosion of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162695,10,'T22.499A ','Corrosion of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162694,10,'T22.492S ','Corrosion of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162693,10,'T22.492D ','Corrosion of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162692,10,'T22.492A ','Corrosion of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162691,10,'T22.491S ','Corrosion of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162690,10,'T22.491D ','Corrosion of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162689,10,'T22.491A ','Corrosion of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162688,10,'T22.469S ','Corrosion of unspecified degree of unspecified scapular region, sequela','Y','0000-00-00 00:00:00'),(162687,10,'T22.469D ','Corrosion of unspecified degree of unspecified scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162686,10,'T22.469A ','Corrosion of unspecified degree of unspecified scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162685,10,'T22.462S ','Corrosion of unspecified degree of left scapular region, sequela','Y','0000-00-00 00:00:00'),(162684,10,'T22.462D ','Corrosion of unspecified degree of left scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162683,10,'T22.462A ','Corrosion of unspecified degree of left scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162682,10,'T22.461S ','Corrosion of unspecified degree of right scapular region, sequela','Y','0000-00-00 00:00:00'),(162681,10,'T22.461D ','Corrosion of unspecified degree of right scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162680,10,'T22.461A ','Corrosion of unspecified degree of right scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162679,10,'T22.459S ','Corrosion of unspecified degree of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(162678,10,'T22.459D ','Corrosion of unspecified degree of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162677,10,'T22.459A ','Corrosion of unspecified degree of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162676,10,'T22.452S ','Corrosion of unspecified degree of left shoulder, sequela','Y','0000-00-00 00:00:00'),(162675,10,'T22.452D ','Corrosion of unspecified degree of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162674,10,'T22.452A ','Corrosion of unspecified degree of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162673,10,'T22.451S ','Corrosion of unspecified degree of right shoulder, sequela','Y','0000-00-00 00:00:00'),(162672,10,'T22.451D ','Corrosion of unspecified degree of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162671,10,'T22.451A ','Corrosion of unspecified degree of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162670,10,'T22.449S ','Corrosion of unspecified degree of unspecified axilla, sequela','Y','0000-00-00 00:00:00'),(162669,10,'T22.449D ','Corrosion of unspecified degree of unspecified axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162668,10,'T22.449A ','Corrosion of unspecified degree of unspecified axilla, initial encounter','Y','0000-00-00 00:00:00'),(162667,10,'T22.442S ','Corrosion of unspecified degree of left axilla, sequela','Y','0000-00-00 00:00:00'),(162666,10,'T22.442D ','Corrosion of unspecified degree of left axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162665,10,'T22.442A ','Corrosion of unspecified degree of left axilla, initial encounter','Y','0000-00-00 00:00:00'),(162664,10,'T22.441S ','Corrosion of unspecified degree of right axilla, sequela','Y','0000-00-00 00:00:00'),(162663,10,'T22.441D ','Corrosion of unspecified degree of right axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162662,10,'T22.441A ','Corrosion of unspecified degree of right axilla, initial encounter','Y','0000-00-00 00:00:00'),(162661,10,'T22.439S ','Corrosion of unspecified degree of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(162660,10,'T22.439D ','Corrosion of unspecified degree of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162659,10,'T22.439A ','Corrosion of unspecified degree of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162658,10,'T22.432S ','Corrosion of unspecified degree of left upper arm, sequela','Y','0000-00-00 00:00:00'),(162657,10,'T22.432D ','Corrosion of unspecified degree of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162656,10,'T22.432A ','Corrosion of unspecified degree of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162655,10,'T22.431S ','Corrosion of unspecified degree of right upper arm, sequela','Y','0000-00-00 00:00:00'),(162654,10,'T22.431D ','Corrosion of unspecified degree of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162653,10,'T22.431A ','Corrosion of unspecified degree of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162652,10,'T22.429S ','Corrosion of unspecified degree of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(162651,10,'T22.429D ','Corrosion of unspecified degree of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162650,10,'T22.429A ','Corrosion of unspecified degree of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(162649,10,'T22.422S ','Corrosion of unspecified degree of left elbow, sequela','Y','0000-00-00 00:00:00'),(162648,10,'T22.422D ','Corrosion of unspecified degree of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162647,10,'T22.422A ','Corrosion of unspecified degree of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(162646,10,'T22.421S ','Corrosion of unspecified degree of right elbow, sequela','Y','0000-00-00 00:00:00'),(162645,10,'T22.421D ','Corrosion of unspecified degree of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162644,10,'T22.421A ','Corrosion of unspecified degree of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(162643,10,'T22.419S ','Corrosion of unspecified degree of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(162642,10,'T22.419D ','Corrosion of unspecified degree of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162641,10,'T22.419A ','Corrosion of unspecified degree of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(162640,10,'T22.412S ','Corrosion of unspecified degree of left forearm, sequela','Y','0000-00-00 00:00:00'),(162639,10,'T22.412D ','Corrosion of unspecified degree of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162638,10,'T22.412A ','Corrosion of unspecified degree of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(162637,10,'T22.411S ','Corrosion of unspecified degree of right forearm, sequela','Y','0000-00-00 00:00:00'),(162636,10,'T22.411D ','Corrosion of unspecified degree of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162635,10,'T22.411A ','Corrosion of unspecified degree of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(162634,10,'T22.40XS ','Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162633,10,'T22.40XD ','Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162632,10,'T22.40XA ','Corrosion of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162631,10,'T22.399S ','Burn of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162630,10,'T22.399D ','Burn of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162629,10,'T22.399A ','Burn of third degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162628,10,'T22.392S ','Burn of third degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162627,10,'T22.392D ','Burn of third degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162626,10,'T22.392A ','Burn of third degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162625,10,'T22.391S ','Burn of third degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162624,10,'T22.391D ','Burn of third degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162623,10,'T22.391A ','Burn of third degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162622,10,'T22.369S ','Burn of third degree of unspecified scapular region, sequela','Y','0000-00-00 00:00:00'),(162621,10,'T22.369D ','Burn of third degree of unspecified scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162620,10,'T22.369A ','Burn of third degree of unspecified scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162619,10,'T22.362S ','Burn of third degree of left scapular region, sequela','Y','0000-00-00 00:00:00'),(162618,10,'T22.362D ','Burn of third degree of left scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162617,10,'T22.362A ','Burn of third degree of left scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162616,10,'T22.361S ','Burn of third degree of right scapular region, sequela','Y','0000-00-00 00:00:00'),(162615,10,'T22.361D ','Burn of third degree of right scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162614,10,'T22.361A ','Burn of third degree of right scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162613,10,'T22.359S ','Burn of third degree of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(162612,10,'T22.359D ','Burn of third degree of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162611,10,'T22.359A ','Burn of third degree of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162610,10,'T22.352S ','Burn of third degree of left shoulder, sequela','Y','0000-00-00 00:00:00'),(162609,10,'T22.352D ','Burn of third degree of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162608,10,'T22.352A ','Burn of third degree of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162607,10,'T22.351S ','Burn of third degree of right shoulder, sequela','Y','0000-00-00 00:00:00'),(162606,10,'T22.351D ','Burn of third degree of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162605,10,'T22.351A ','Burn of third degree of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162604,10,'T22.349S ','Burn of third degree of unspecified axilla, sequela','Y','0000-00-00 00:00:00'),(162603,10,'T22.349D ','Burn of third degree of unspecified axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162602,10,'T22.349A ','Burn of third degree of unspecified axilla, initial encounter','Y','0000-00-00 00:00:00'),(162601,10,'T22.342S ','Burn of third degree of left axilla, sequela','Y','0000-00-00 00:00:00'),(162600,10,'T22.342D ','Burn of third degree of left axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162599,10,'T22.342A ','Burn of third degree of left axilla, initial encounter','Y','0000-00-00 00:00:00'),(162598,10,'T22.341S ','Burn of third degree of right axilla, sequela','Y','0000-00-00 00:00:00'),(162597,10,'T22.341D ','Burn of third degree of right axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162596,10,'T22.341A ','Burn of third degree of right axilla, initial encounter','Y','0000-00-00 00:00:00'),(162595,10,'T22.339S ','Burn of third degree of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(162594,10,'T22.339D ','Burn of third degree of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162593,10,'T22.339A ','Burn of third degree of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162592,10,'T22.332S ','Burn of third degree of left upper arm, sequela','Y','0000-00-00 00:00:00'),(162591,10,'T22.332D ','Burn of third degree of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162590,10,'T22.332A ','Burn of third degree of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162589,10,'T22.331S ','Burn of third degree of right upper arm, sequela','Y','0000-00-00 00:00:00'),(162588,10,'T22.331D ','Burn of third degree of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162587,10,'T22.331A ','Burn of third degree of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162586,10,'T22.329S ','Burn of third degree of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(162585,10,'T22.329D ','Burn of third degree of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162584,10,'T22.329A ','Burn of third degree of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(162583,10,'T22.322S ','Burn of third degree of left elbow, sequela','Y','0000-00-00 00:00:00'),(162582,10,'T22.322D ','Burn of third degree of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162581,10,'T22.322A ','Burn of third degree of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(162580,10,'T22.321S ','Burn of third degree of right elbow, sequela','Y','0000-00-00 00:00:00'),(162579,10,'T22.321D ','Burn of third degree of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162578,10,'T22.321A ','Burn of third degree of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(162577,10,'T22.319S ','Burn of third degree of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(162576,10,'T22.319D ','Burn of third degree of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162575,10,'T22.319A ','Burn of third degree of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(162574,10,'T22.312S ','Burn of third degree of left forearm, sequela','Y','0000-00-00 00:00:00'),(162573,10,'T22.312D ','Burn of third degree of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162572,10,'T22.312A ','Burn of third degree of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(162571,10,'T22.311S ','Burn of third degree of right forearm, sequela','Y','0000-00-00 00:00:00'),(162570,10,'T22.311D ','Burn of third degree of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162569,10,'T22.311A ','Burn of third degree of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(162568,10,'T22.30XS ','Burn of third degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162567,10,'T22.30XD ','Burn of third degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162566,10,'T22.30XA ','Burn of third degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162565,10,'T22.299S ','Burn of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162564,10,'T22.299D ','Burn of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162563,10,'T22.299A ','Burn of second degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162562,10,'T22.292S ','Burn of second degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162561,10,'T22.292D ','Burn of second degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162560,10,'T22.292A ','Burn of second degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162559,10,'T22.291S ','Burn of second degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162558,10,'T22.291D ','Burn of second degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162557,10,'T22.291A ','Burn of second degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162556,10,'T22.269S ','Burn of second degree of unspecified scapular region, sequela','Y','0000-00-00 00:00:00'),(162555,10,'T22.269D ','Burn of second degree of unspecified scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162554,10,'T22.269A ','Burn of second degree of unspecified scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162553,10,'T22.262S ','Burn of second degree of left scapular region, sequela','Y','0000-00-00 00:00:00'),(162552,10,'T22.262D ','Burn of second degree of left scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162551,10,'T22.262A ','Burn of second degree of left scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162550,10,'T22.261S ','Burn of second degree of right scapular region, sequela','Y','0000-00-00 00:00:00'),(162549,10,'T22.261D ','Burn of second degree of right scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162548,10,'T22.261A ','Burn of second degree of right scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162547,10,'T22.259S ','Burn of second degree of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(162546,10,'T22.259D ','Burn of second degree of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162545,10,'T22.259A ','Burn of second degree of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162544,10,'T22.252S ','Burn of second degree of left shoulder, sequela','Y','0000-00-00 00:00:00'),(162543,10,'T22.252D ','Burn of second degree of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162542,10,'T22.252A ','Burn of second degree of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162541,10,'T22.251S ','Burn of second degree of right shoulder, sequela','Y','0000-00-00 00:00:00'),(162540,10,'T22.251D ','Burn of second degree of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162539,10,'T22.251A ','Burn of second degree of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162538,10,'T22.249S ','Burn of second degree of unspecified axilla, sequela','Y','0000-00-00 00:00:00'),(162537,10,'T22.249D ','Burn of second degree of unspecified axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162536,10,'T22.249A ','Burn of second degree of unspecified axilla, initial encounter','Y','0000-00-00 00:00:00'),(162535,10,'T22.242S ','Burn of second degree of left axilla, sequela','Y','0000-00-00 00:00:00'),(162534,10,'T22.242D ','Burn of second degree of left axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162533,10,'T22.242A ','Burn of second degree of left axilla, initial encounter','Y','0000-00-00 00:00:00'),(162532,10,'T22.241S ','Burn of second degree of right axilla, sequela','Y','0000-00-00 00:00:00'),(162531,10,'T22.241D ','Burn of second degree of right axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162530,10,'T22.241A ','Burn of second degree of right axilla, initial encounter','Y','0000-00-00 00:00:00'),(162529,10,'T22.239S ','Burn of second degree of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(162528,10,'T22.239D ','Burn of second degree of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162527,10,'T22.239A ','Burn of second degree of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162526,10,'T22.232S ','Burn of second degree of left upper arm, sequela','Y','0000-00-00 00:00:00'),(162525,10,'T22.232D ','Burn of second degree of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162524,10,'T22.232A ','Burn of second degree of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162523,10,'T22.231S ','Burn of second degree of right upper arm, sequela','Y','0000-00-00 00:00:00'),(162522,10,'T22.231D ','Burn of second degree of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162521,10,'T22.231A ','Burn of second degree of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162520,10,'T22.229S ','Burn of second degree of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(162519,10,'T22.229D ','Burn of second degree of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162518,10,'T22.229A ','Burn of second degree of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(162517,10,'T22.222S ','Burn of second degree of left elbow, sequela','Y','0000-00-00 00:00:00'),(162516,10,'T22.222D ','Burn of second degree of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162515,10,'T22.222A ','Burn of second degree of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(162514,10,'T22.221S ','Burn of second degree of right elbow, sequela','Y','0000-00-00 00:00:00'),(162513,10,'T22.221D ','Burn of second degree of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162512,10,'T22.221A ','Burn of second degree of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(162511,10,'T22.219S ','Burn of second degree of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(162510,10,'T22.219D ','Burn of second degree of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162509,10,'T22.219A ','Burn of second degree of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(162508,10,'T22.212S ','Burn of second degree of left forearm, sequela','Y','0000-00-00 00:00:00'),(162507,10,'T22.212D ','Burn of second degree of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162506,10,'T22.212A ','Burn of second degree of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(162505,10,'T22.211S ','Burn of second degree of right forearm, sequela','Y','0000-00-00 00:00:00'),(162504,10,'T22.211D ','Burn of second degree of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162503,10,'T22.211A ','Burn of second degree of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(162502,10,'T22.20XS ','Burn of second degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162501,10,'T22.20XD ','Burn of second degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162500,10,'T22.20XA ','Burn of second degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162499,10,'T22.199S ','Burn of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162498,10,'T22.199D ','Burn of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162497,10,'T22.199A ','Burn of first degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162496,10,'T22.192S ','Burn of first degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162495,10,'T22.192D ','Burn of first degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162494,10,'T22.192A ','Burn of first degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162493,10,'T22.191S ','Burn of first degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162492,10,'T22.191D ','Burn of first degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162491,10,'T22.191A ','Burn of first degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162490,10,'T22.169S ','Burn of first degree of unspecified scapular region, sequela','Y','0000-00-00 00:00:00'),(162489,10,'T22.169D ','Burn of first degree of unspecified scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162488,10,'T22.169A ','Burn of first degree of unspecified scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162487,10,'T22.162S ','Burn of first degree of left scapular region, sequela','Y','0000-00-00 00:00:00'),(162486,10,'T22.162D ','Burn of first degree of left scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162485,10,'T22.162A ','Burn of first degree of left scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162484,10,'T22.161S ','Burn of first degree of right scapular region, sequela','Y','0000-00-00 00:00:00'),(162483,10,'T22.161D ','Burn of first degree of right scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162482,10,'T22.161A ','Burn of first degree of right scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162481,10,'T22.159S ','Burn of first degree of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(162480,10,'T22.159D ','Burn of first degree of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162479,10,'T22.159A ','Burn of first degree of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162478,10,'T22.152S ','Burn of first degree of left shoulder, sequela','Y','0000-00-00 00:00:00'),(162477,10,'T22.152D ','Burn of first degree of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162476,10,'T22.152A ','Burn of first degree of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162475,10,'T22.151S ','Burn of first degree of right shoulder, sequela','Y','0000-00-00 00:00:00'),(162474,10,'T22.151D ','Burn of first degree of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162473,10,'T22.151A ','Burn of first degree of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162472,10,'T22.149S ','Burn of first degree of unspecified axilla, sequela','Y','0000-00-00 00:00:00'),(162471,10,'T22.149D ','Burn of first degree of unspecified axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162470,10,'T22.149A ','Burn of first degree of unspecified axilla, initial encounter','Y','0000-00-00 00:00:00'),(162469,10,'T22.142S ','Burn of first degree of left axilla, sequela','Y','0000-00-00 00:00:00'),(162468,10,'T22.142D ','Burn of first degree of left axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162467,10,'T22.142A ','Burn of first degree of left axilla, initial encounter','Y','0000-00-00 00:00:00'),(162466,10,'T22.141S ','Burn of first degree of right axilla, sequela','Y','0000-00-00 00:00:00'),(162465,10,'T22.141D ','Burn of first degree of right axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162464,10,'T22.141A ','Burn of first degree of right axilla, initial encounter','Y','0000-00-00 00:00:00'),(162463,10,'T22.139S ','Burn of first degree of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(162462,10,'T22.139D ','Burn of first degree of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162461,10,'T22.139A ','Burn of first degree of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162460,10,'T22.132S ','Burn of first degree of left upper arm, sequela','Y','0000-00-00 00:00:00'),(162459,10,'T22.132D ','Burn of first degree of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162458,10,'T22.132A ','Burn of first degree of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162457,10,'T22.131S ','Burn of first degree of right upper arm, sequela','Y','0000-00-00 00:00:00'),(162456,10,'T22.131D ','Burn of first degree of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162455,10,'T22.131A ','Burn of first degree of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162454,10,'T22.129S ','Burn of first degree of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(162453,10,'T22.129D ','Burn of first degree of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162452,10,'T22.129A ','Burn of first degree of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(162451,10,'T22.122S ','Burn of first degree of left elbow, sequela','Y','0000-00-00 00:00:00'),(162450,10,'T22.122D ','Burn of first degree of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162449,10,'T22.122A ','Burn of first degree of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(162448,10,'T22.121S ','Burn of first degree of right elbow, sequela','Y','0000-00-00 00:00:00'),(162447,10,'T22.121D ','Burn of first degree of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162446,10,'T22.121A ','Burn of first degree of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(162445,10,'T22.119S ','Burn of first degree of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(162444,10,'T22.119D ','Burn of first degree of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162443,10,'T22.119A ','Burn of first degree of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(162442,10,'T22.112S ','Burn of first degree of left forearm, sequela','Y','0000-00-00 00:00:00'),(162441,10,'T22.112D ','Burn of first degree of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162440,10,'T22.112A ','Burn of first degree of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(162439,10,'T22.111S ','Burn of first degree of right forearm, sequela','Y','0000-00-00 00:00:00'),(162438,10,'T22.111D ','Burn of first degree of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162437,10,'T22.111A ','Burn of first degree of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(162436,10,'T22.10XS ','Burn of first degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162435,10,'T22.10XD ','Burn of first degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162434,10,'T22.10XA ','Burn of first degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162433,10,'T22.099S ','Burn of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162432,10,'T22.099D ','Burn of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162431,10,'T22.099A ','Burn of unspecified degree of multiple sites of unspecified shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162430,10,'T22.092S ','Burn of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162429,10,'T22.092D ','Burn of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162428,10,'T22.092A ','Burn of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162427,10,'T22.091S ','Burn of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand, sequela','Y','0000-00-00 00:00:00'),(162426,10,'T22.091D ','Burn of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(162425,10,'T22.091A ','Burn of unspecified degree of multiple sites of right shoulder and upper limb, except wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(162424,10,'T22.069S ','Burn of unspecified degree of unspecified scapular region, sequela','Y','0000-00-00 00:00:00'),(162423,10,'T22.069D ','Burn of unspecified degree of unspecified scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162422,10,'T22.069A ','Burn of unspecified degree of unspecified scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162421,10,'T22.062S ','Burn of unspecified degree of left scapular region, sequela','Y','0000-00-00 00:00:00'),(162420,10,'T22.062D ','Burn of unspecified degree of left scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162419,10,'T22.062A ','Burn of unspecified degree of left scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162418,10,'T22.061S ','Burn of unspecified degree of right scapular region, sequela','Y','0000-00-00 00:00:00'),(162417,10,'T22.061D ','Burn of unspecified degree of right scapular region, subsequent encounter','Y','0000-00-00 00:00:00'),(162416,10,'T22.061A ','Burn of unspecified degree of right scapular region, initial encounter','Y','0000-00-00 00:00:00'),(162415,10,'T22.059S ','Burn of unspecified degree of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(162414,10,'T22.059D ','Burn of unspecified degree of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162413,10,'T22.059A ','Burn of unspecified degree of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162412,10,'T22.052S ','Burn of unspecified degree of left shoulder, sequela','Y','0000-00-00 00:00:00'),(162411,10,'T22.052D ','Burn of unspecified degree of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162410,10,'T22.052A ','Burn of unspecified degree of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162409,10,'T22.051S ','Burn of unspecified degree of right shoulder, sequela','Y','0000-00-00 00:00:00'),(162408,10,'T22.051D ','Burn of unspecified degree of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(162407,10,'T22.051A ','Burn of unspecified degree of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(162406,10,'T22.049S ','Burn of unspecified degree of unspecified axilla, sequela','Y','0000-00-00 00:00:00'),(162405,10,'T22.049D ','Burn of unspecified degree of unspecified axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162404,10,'T22.049A ','Burn of unspecified degree of unspecified axilla, initial encounter','Y','0000-00-00 00:00:00'),(162403,10,'T22.042S ','Burn of unspecified degree of left axilla, sequela','Y','0000-00-00 00:00:00'),(162402,10,'T22.042D ','Burn of unspecified degree of left axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162401,10,'T22.042A ','Burn of unspecified degree of left axilla, initial encounter','Y','0000-00-00 00:00:00'),(162400,10,'T22.041S ','Burn of unspecified degree of right axilla, sequela','Y','0000-00-00 00:00:00'),(162399,10,'T22.041D ','Burn of unspecified degree of right axilla, subsequent encounter','Y','0000-00-00 00:00:00'),(162398,10,'T22.041A ','Burn of unspecified degree of right axilla, initial encounter','Y','0000-00-00 00:00:00'),(162397,10,'T22.039S ','Burn of unspecified degree of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(162396,10,'T22.039D ','Burn of unspecified degree of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162395,10,'T22.039A ','Burn of unspecified degree of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162394,10,'T22.032S ','Burn of unspecified degree of left upper arm, sequela','Y','0000-00-00 00:00:00'),(162393,10,'T22.032D ','Burn of unspecified degree of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162392,10,'T22.032A ','Burn of unspecified degree of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162391,10,'T22.031S ','Burn of unspecified degree of right upper arm, sequela','Y','0000-00-00 00:00:00'),(162390,10,'T22.031D ','Burn of unspecified degree of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(162389,10,'T22.031A ','Burn of unspecified degree of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(162388,10,'T22.029S ','Burn of unspecified degree of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(162387,10,'T22.029D ','Burn of unspecified degree of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162386,10,'T22.029A ','Burn of unspecified degree of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(162385,10,'T22.022S ','Burn of unspecified degree of left elbow, sequela','Y','0000-00-00 00:00:00'),(162384,10,'T22.022D ','Burn of unspecified degree of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162383,10,'T22.022A ','Burn of unspecified degree of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(162382,10,'T22.021S ','Burn of unspecified degree of right elbow, sequela','Y','0000-00-00 00:00:00'),(162381,10,'T22.021D ','Burn of unspecified degree of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(162380,10,'T22.021A ','Burn of unspecified degree of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(162379,10,'T22.019S ','Burn of unspecified degree of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(162378,10,'T22.019D ','Burn of unspecified degree of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162377,10,'T22.019A ','Burn of unspecified degree of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(162376,10,'T22.012S ','Burn of unspecified degree of left forearm, sequela','Y','0000-00-00 00:00:00'),(162375,10,'T22.012D ','Burn of unspecified degree of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162374,10,'T22.012A ','Burn of unspecified degree of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(162373,10,'T22.011S ','Burn of unspecified degree of right forearm, sequela','Y','0000-00-00 00:00:00'),(162372,10,'T22.011D ','Burn of unspecified degree of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(162371,10,'T22.011A ','Burn of unspecified degree of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(162370,10,'T22.00XS ','Burn of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162369,10,'T22.00XD ','Burn of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162368,10,'T22.00XA ','Burn of unspecified degree of shoulder and upper limb, except wrist and hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162367,10,'T21.79XS ','Corrosion of third degree of other site of trunk, sequela','Y','0000-00-00 00:00:00'),(162366,10,'T21.79XD ','Corrosion of third degree of other site of trunk, subsequent encounter','Y','0000-00-00 00:00:00'),(162365,10,'T21.79XA ','Corrosion of third degree of other site of trunk, initial encounter','Y','0000-00-00 00:00:00'),(162364,10,'T21.77XS ','Corrosion of third degree of female genital region, sequela','Y','0000-00-00 00:00:00'),(162363,10,'T21.77XD ','Corrosion of third degree of female genital region, subsequent encounter','Y','0000-00-00 00:00:00'),(162362,10,'T21.77XA ','Corrosion of third degree of female genital region, initial encounter','Y','0000-00-00 00:00:00'),(162361,10,'T21.76XS ','Corrosion of third degree of male genital region, sequela','Y','0000-00-00 00:00:00'),(162360,10,'T21.76XD ','Corrosion of third degree of male genital region, subsequent encounter','Y','0000-00-00 00:00:00'),(162359,10,'T21.76XA ','Corrosion of third degree of male genital region, initial encounter','Y','0000-00-00 00:00:00'),(162358,10,'T21.75XS ','Corrosion of third degree of buttock, sequela','Y','0000-00-00 00:00:00'),(162357,10,'T21.75XD ','Corrosion of third degree of buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(162356,10,'T21.75XA ','Corrosion of third degree of buttock, initial encounter','Y','0000-00-00 00:00:00'),(162355,10,'T21.74XS ','Corrosion of third degree of lower back, sequela','Y','0000-00-00 00:00:00'),(162354,10,'T21.74XD ','Corrosion of third degree of lower back, subsequent encounter','Y','0000-00-00 00:00:00'),(162353,10,'T21.74XA ','Corrosion of third degree of lower back, initial encounter','Y','0000-00-00 00:00:00'),(162352,10,'T21.73XS ','Corrosion of third degree of upper back, sequela','Y','0000-00-00 00:00:00'),(162351,10,'T21.73XD ','Corrosion of third degree of upper back, subsequent encounter','Y','0000-00-00 00:00:00'),(162350,10,'T21.73XA ','Corrosion of third degree of upper back, initial encounter','Y','0000-00-00 00:00:00'),(162349,10,'T21.72XS ','Corrosion of third degree of abdominal wall, sequela','Y','0000-00-00 00:00:00'),(162348,10,'T21.72XD ','Corrosion of third degree of abdominal wall, subsequent encounter','Y','0000-00-00 00:00:00'),(162347,10,'T21.72XA ','Corrosion of third degree of abdominal wall, initial encounter','Y','0000-00-00 00:00:00'),(162346,10,'T21.71XS ','Corrosion of third degree of chest wall, sequela','Y','0000-00-00 00:00:00'),(162345,10,'T21.71XD ','Corrosion of third degree of chest wall, subsequent encounter','Y','0000-00-00 00:00:00'),(162344,10,'T21.71XA ','Corrosion of third degree of chest wall, initial encounter','Y','0000-00-00 00:00:00'),(162343,10,'T21.70XS ','Corrosion of third degree of trunk, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162342,10,'T21.70XD ','Corrosion of third degree of trunk, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162341,10,'T21.70XA ','Corrosion of third degree of trunk, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162340,10,'T21.69XS ','Corrosion of second degree of other site of trunk, sequela','Y','0000-00-00 00:00:00'),(162339,10,'T21.69XD ','Corrosion of second degree of other site of trunk, subsequent encounter','Y','0000-00-00 00:00:00'),(162338,10,'T21.69XA ','Corrosion of second degree of other site of trunk, initial encounter','Y','0000-00-00 00:00:00'),(162337,10,'T21.67XS ','Corrosion of second degree of female genital region, sequela','Y','0000-00-00 00:00:00'),(162336,10,'T21.67XD ','Corrosion of second degree of female genital region, subsequent encounter','Y','0000-00-00 00:00:00'),(162335,10,'T21.67XA ','Corrosion of second degree of female genital region, initial encounter','Y','0000-00-00 00:00:00'),(162334,10,'T21.66XS ','Corrosion of second degree of male genital region, sequela','Y','0000-00-00 00:00:00'),(162333,10,'T21.66XD ','Corrosion of second degree of male genital region, subsequent encounter','Y','0000-00-00 00:00:00'),(162332,10,'T21.66XA ','Corrosion of second degree of male genital region, initial encounter','Y','0000-00-00 00:00:00'),(162331,10,'T21.65XS ','Corrosion of second degree of buttock, sequela','Y','0000-00-00 00:00:00'),(162330,10,'T21.65XD ','Corrosion of second degree of buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(162329,10,'T21.65XA ','Corrosion of second degree of buttock, initial encounter','Y','0000-00-00 00:00:00'),(162328,10,'T21.64XS ','Corrosion of second degree of lower back, sequela','Y','0000-00-00 00:00:00'),(162327,10,'T21.64XD ','Corrosion of second degree of lower back, subsequent encounter','Y','0000-00-00 00:00:00'),(162326,10,'T21.64XA ','Corrosion of second degree of lower back, initial encounter','Y','0000-00-00 00:00:00'),(162325,10,'T21.63XS ','Corrosion of second degree of upper back, sequela','Y','0000-00-00 00:00:00'),(162324,10,'T21.63XD ','Corrosion of second degree of upper back, subsequent encounter','Y','0000-00-00 00:00:00'),(162323,10,'T21.63XA ','Corrosion of second degree of upper back, initial encounter','Y','0000-00-00 00:00:00'),(162322,10,'T21.62XS ','Corrosion of second degree of abdominal wall, sequela','Y','0000-00-00 00:00:00'),(162321,10,'T21.62XD ','Corrosion of second degree of abdominal wall, subsequent encounter','Y','0000-00-00 00:00:00'),(162320,10,'T21.62XA ','Corrosion of second degree of abdominal wall, initial encounter','Y','0000-00-00 00:00:00'),(162319,10,'T21.61XS ','Corrosion of second degree of chest wall, sequela','Y','0000-00-00 00:00:00'),(162318,10,'T21.61XD ','Corrosion of second degree of chest wall, subsequent encounter','Y','0000-00-00 00:00:00'),(162317,10,'T21.61XA ','Corrosion of second degree of chest wall, initial encounter','Y','0000-00-00 00:00:00'),(162316,10,'T21.60XS ','Corrosion of second degree of trunk, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162315,10,'T21.60XD ','Corrosion of second degree of trunk, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162314,10,'T21.60XA ','Corrosion of second degree of trunk, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162313,10,'T21.59XS ','Corrosion of first degree of other site of trunk, sequela','Y','0000-00-00 00:00:00'),(162312,10,'T21.59XD ','Corrosion of first degree of other site of trunk, subsequent encounter','Y','0000-00-00 00:00:00'),(162311,10,'T21.59XA ','Corrosion of first degree of other site of trunk, initial encounter','Y','0000-00-00 00:00:00'),(162310,10,'T21.57XS ','Corrosion of first degree of female genital region, sequela','Y','0000-00-00 00:00:00'),(162309,10,'T21.57XD ','Corrosion of first degree of female genital region, subsequent encounter','Y','0000-00-00 00:00:00'),(162308,10,'T21.57XA ','Corrosion of first degree of female genital region, initial encounter','Y','0000-00-00 00:00:00'),(162307,10,'T21.56XS ','Corrosion of first degree of male genital region, sequela','Y','0000-00-00 00:00:00'),(162306,10,'T21.56XD ','Corrosion of first degree of male genital region, subsequent encounter','Y','0000-00-00 00:00:00'),(162305,10,'T21.56XA ','Corrosion of first degree of male genital region, initial encounter','Y','0000-00-00 00:00:00'),(162304,10,'T21.55XS ','Corrosion of first degree of buttock, sequela','Y','0000-00-00 00:00:00'),(162303,10,'T21.55XD ','Corrosion of first degree of buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(162302,10,'T21.55XA ','Corrosion of first degree of buttock, initial encounter','Y','0000-00-00 00:00:00'),(162301,10,'T21.54XS ','Corrosion of first degree of lower back, sequela','Y','0000-00-00 00:00:00'),(162300,10,'T21.54XD ','Corrosion of first degree of lower back, subsequent encounter','Y','0000-00-00 00:00:00'),(162299,10,'T21.54XA ','Corrosion of first degree of lower back, initial encounter','Y','0000-00-00 00:00:00'),(162298,10,'T21.53XS ','Corrosion of first degree of upper back, sequela','Y','0000-00-00 00:00:00'),(162297,10,'T21.53XD ','Corrosion of first degree of upper back, subsequent encounter','Y','0000-00-00 00:00:00'),(162296,10,'T21.53XA ','Corrosion of first degree of upper back, initial encounter','Y','0000-00-00 00:00:00'),(162295,10,'T21.52XS ','Corrosion of first degree of abdominal wall, sequela','Y','0000-00-00 00:00:00'),(162294,10,'T21.52XD ','Corrosion of first degree of abdominal wall, subsequent encounter','Y','0000-00-00 00:00:00'),(162293,10,'T21.52XA ','Corrosion of first degree of abdominal wall, initial encounter','Y','0000-00-00 00:00:00'),(162292,10,'T21.51XS ','Corrosion of first degree of chest wall, sequela','Y','0000-00-00 00:00:00'),(162291,10,'T21.51XD ','Corrosion of first degree of chest wall, subsequent encounter','Y','0000-00-00 00:00:00'),(162290,10,'T21.51XA ','Corrosion of first degree of chest wall, initial encounter','Y','0000-00-00 00:00:00'),(162289,10,'T21.50XS ','Corrosion of first degree of trunk, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162288,10,'T21.50XD ','Corrosion of first degree of trunk, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162287,10,'T21.50XA ','Corrosion of first degree of trunk, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162286,10,'T21.49XS ','Corrosion of unspecified degree of other site of trunk, sequela','Y','0000-00-00 00:00:00'),(162285,10,'T21.49XD ','Corrosion of unspecified degree of other site of trunk, subsequent encounter','Y','0000-00-00 00:00:00'),(162284,10,'T21.49XA ','Corrosion of unspecified degree of other site of trunk, initial encounter','Y','0000-00-00 00:00:00'),(162283,10,'T21.47XS ','Corrosion of unspecified degree of female genital region, sequela','Y','0000-00-00 00:00:00'),(162282,10,'T21.47XD ','Corrosion of unspecified degree of female genital region, subsequent encounter','Y','0000-00-00 00:00:00'),(162281,10,'T21.47XA ','Corrosion of unspecified degree of female genital region, initial encounter','Y','0000-00-00 00:00:00'),(162280,10,'T21.46XS ','Corrosion of unspecified degree of male genital region, sequela','Y','0000-00-00 00:00:00'),(162279,10,'T21.46XD ','Corrosion of unspecified degree of male genital region, subsequent encounter','Y','0000-00-00 00:00:00'),(162278,10,'T21.46XA ','Corrosion of unspecified degree of male genital region, initial encounter','Y','0000-00-00 00:00:00'),(162277,10,'T21.45XS ','Corrosion of unspecified degree of buttock, sequela','Y','0000-00-00 00:00:00'),(162276,10,'T21.45XD ','Corrosion of unspecified degree of buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(162275,10,'T21.45XA ','Corrosion of unspecified degree of buttock, initial encounter','Y','0000-00-00 00:00:00'),(162274,10,'T21.44XS ','Corrosion of unspecified degree of lower back, sequela','Y','0000-00-00 00:00:00'),(162273,10,'T21.44XD ','Corrosion of unspecified degree of lower back, subsequent encounter','Y','0000-00-00 00:00:00'),(162272,10,'T21.44XA ','Corrosion of unspecified degree of lower back, initial encounter','Y','0000-00-00 00:00:00'),(162271,10,'T21.43XS ','Corrosion of unspecified degree of upper back, sequela','Y','0000-00-00 00:00:00'),(162270,10,'T21.43XD ','Corrosion of unspecified degree of upper back, subsequent encounter','Y','0000-00-00 00:00:00'),(162269,10,'T21.43XA ','Corrosion of unspecified degree of upper back, initial encounter','Y','0000-00-00 00:00:00'),(162268,10,'T21.42XS ','Corrosion of unspecified degree of abdominal wall, sequela','Y','0000-00-00 00:00:00'),(162267,10,'T21.42XD ','Corrosion of unspecified degree of abdominal wall, subsequent encounter','Y','0000-00-00 00:00:00'),(162266,10,'T21.42XA ','Corrosion of unspecified degree of abdominal wall, initial encounter','Y','0000-00-00 00:00:00'),(162265,10,'T21.41XS ','Corrosion of unspecified degree of chest wall, sequela','Y','0000-00-00 00:00:00'),(162264,10,'T21.41XD ','Corrosion of unspecified degree of chest wall, subsequent encounter','Y','0000-00-00 00:00:00'),(162263,10,'T21.41XA ','Corrosion of unspecified degree of chest wall, initial encounter','Y','0000-00-00 00:00:00'),(162262,10,'T21.40XS ','Corrosion of unspecified degree of trunk, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162261,10,'T21.40XD ','Corrosion of unspecified degree of trunk, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162260,10,'T21.40XA ','Corrosion of unspecified degree of trunk, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162259,10,'T21.39XS ','Burn of third degree of other site of trunk, sequela','Y','0000-00-00 00:00:00'),(162258,10,'T21.39XD ','Burn of third degree of other site of trunk, subsequent encounter','Y','0000-00-00 00:00:00'),(162257,10,'T21.39XA ','Burn of third degree of other site of trunk, initial encounter','Y','0000-00-00 00:00:00'),(162256,10,'T21.37XS ','Burn of third degree of female genital region, sequela','Y','0000-00-00 00:00:00'),(162255,10,'T21.37XD ','Burn of third degree of female genital region, subsequent encounter','Y','0000-00-00 00:00:00'),(162254,10,'T21.37XA ','Burn of third degree of female genital region, initial encounter','Y','0000-00-00 00:00:00'),(162253,10,'T21.36XS ','Burn of third degree of male genital region, sequela','Y','0000-00-00 00:00:00'),(162252,10,'T21.36XD ','Burn of third degree of male genital region, subsequent encounter','Y','0000-00-00 00:00:00'),(162251,10,'T21.36XA ','Burn of third degree of male genital region, initial encounter','Y','0000-00-00 00:00:00'),(162250,10,'T21.35XS ','Burn of third degree of buttock, sequela','Y','0000-00-00 00:00:00'),(162249,10,'T21.35XD ','Burn of third degree of buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(162248,10,'T21.35XA ','Burn of third degree of buttock, initial encounter','Y','0000-00-00 00:00:00'),(162247,10,'T21.34XS ','Burn of third degree of lower back, sequela','Y','0000-00-00 00:00:00'),(162246,10,'T21.34XD ','Burn of third degree of lower back, subsequent encounter','Y','0000-00-00 00:00:00'),(162245,10,'T21.34XA ','Burn of third degree of lower back, initial encounter','Y','0000-00-00 00:00:00'),(162244,10,'T21.33XS ','Burn of third degree of upper back, sequela','Y','0000-00-00 00:00:00'),(162243,10,'T21.33XD ','Burn of third degree of upper back, subsequent encounter','Y','0000-00-00 00:00:00'),(162242,10,'T21.33XA ','Burn of third degree of upper back, initial encounter','Y','0000-00-00 00:00:00'),(162241,10,'T21.32XS ','Burn of third degree of abdominal wall, sequela','Y','0000-00-00 00:00:00'),(162240,10,'T21.32XD ','Burn of third degree of abdominal wall, subsequent encounter','Y','0000-00-00 00:00:00'),(162239,10,'T21.32XA ','Burn of third degree of abdominal wall, initial encounter','Y','0000-00-00 00:00:00'),(162238,10,'T21.31XS ','Burn of third degree of chest wall, sequela','Y','0000-00-00 00:00:00'),(162237,10,'T21.31XD ','Burn of third degree of chest wall, subsequent encounter','Y','0000-00-00 00:00:00'),(162236,10,'T21.31XA ','Burn of third degree of chest wall, initial encounter','Y','0000-00-00 00:00:00'),(162235,10,'T21.30XS ','Burn of third degree of trunk, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162234,10,'T21.30XD ','Burn of third degree of trunk, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162233,10,'T21.30XA ','Burn of third degree of trunk, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162232,10,'T21.29XS ','Burn of second degree of other site of trunk, sequela','Y','0000-00-00 00:00:00'),(162231,10,'T21.29XD ','Burn of second degree of other site of trunk, subsequent encounter','Y','0000-00-00 00:00:00'),(162230,10,'T21.29XA ','Burn of second degree of other site of trunk, initial encounter','Y','0000-00-00 00:00:00'),(162229,10,'T21.27XS ','Burn of second degree of female genital region, sequela','Y','0000-00-00 00:00:00'),(162228,10,'T21.27XD ','Burn of second degree of female genital region, subsequent encounter','Y','0000-00-00 00:00:00'),(162227,10,'T21.27XA ','Burn of second degree of female genital region, initial encounter','Y','0000-00-00 00:00:00'),(162226,10,'T21.26XS ','Burn of second degree of male genital region, sequela','Y','0000-00-00 00:00:00'),(162225,10,'T21.26XD ','Burn of second degree of male genital region, subsequent encounter','Y','0000-00-00 00:00:00'),(162224,10,'T21.26XA ','Burn of second degree of male genital region, initial encounter','Y','0000-00-00 00:00:00'),(162223,10,'T21.25XS ','Burn of second degree of buttock, sequela','Y','0000-00-00 00:00:00'),(162222,10,'T21.25XD ','Burn of second degree of buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(162221,10,'T21.25XA ','Burn of second degree of buttock, initial encounter','Y','0000-00-00 00:00:00'),(162220,10,'T21.24XS ','Burn of second degree of lower back, sequela','Y','0000-00-00 00:00:00'),(162219,10,'T21.24XD ','Burn of second degree of lower back, subsequent encounter','Y','0000-00-00 00:00:00'),(162218,10,'T21.24XA ','Burn of second degree of lower back, initial encounter','Y','0000-00-00 00:00:00'),(162217,10,'T21.23XS ','Burn of second degree of upper back, sequela','Y','0000-00-00 00:00:00'),(162216,10,'T21.23XD ','Burn of second degree of upper back, subsequent encounter','Y','0000-00-00 00:00:00'),(162215,10,'T21.23XA ','Burn of second degree of upper back, initial encounter','Y','0000-00-00 00:00:00'),(162214,10,'T21.22XS ','Burn of second degree of abdominal wall, sequela','Y','0000-00-00 00:00:00'),(162213,10,'T21.22XD ','Burn of second degree of abdominal wall, subsequent encounter','Y','0000-00-00 00:00:00'),(162212,10,'T21.22XA ','Burn of second degree of abdominal wall, initial encounter','Y','0000-00-00 00:00:00'),(162211,10,'T21.21XS ','Burn of second degree of chest wall, sequela','Y','0000-00-00 00:00:00'),(162210,10,'T21.21XD ','Burn of second degree of chest wall, subsequent encounter','Y','0000-00-00 00:00:00'),(162209,10,'T21.21XA ','Burn of second degree of chest wall, initial encounter','Y','0000-00-00 00:00:00'),(162208,10,'T21.20XS ','Burn of second degree of trunk, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162207,10,'T21.20XD ','Burn of second degree of trunk, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162206,10,'T21.20XA ','Burn of second degree of trunk, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162205,10,'T21.19XS ','Burn of first degree of other site of trunk, sequela','Y','0000-00-00 00:00:00'),(162204,10,'T21.19XD ','Burn of first degree of other site of trunk, subsequent encounter','Y','0000-00-00 00:00:00'),(162203,10,'T21.19XA ','Burn of first degree of other site of trunk, initial encounter','Y','0000-00-00 00:00:00'),(162202,10,'T21.17XS ','Burn of first degree of female genital region, sequela','Y','0000-00-00 00:00:00'),(162201,10,'T21.17XD ','Burn of first degree of female genital region, subsequent encounter','Y','0000-00-00 00:00:00'),(162200,10,'T21.17XA ','Burn of first degree of female genital region, initial encounter','Y','0000-00-00 00:00:00'),(162199,10,'T21.16XS ','Burn of first degree of male genital region, sequela','Y','0000-00-00 00:00:00'),(162198,10,'T21.16XD ','Burn of first degree of male genital region, subsequent encounter','Y','0000-00-00 00:00:00'),(162197,10,'T21.16XA ','Burn of first degree of male genital region, initial encounter','Y','0000-00-00 00:00:00'),(162196,10,'T21.15XS ','Burn of first degree of buttock, sequela','Y','0000-00-00 00:00:00'),(162195,10,'T21.15XD ','Burn of first degree of buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(162194,10,'T21.15XA ','Burn of first degree of buttock, initial encounter','Y','0000-00-00 00:00:00'),(162193,10,'T21.14XS ','Burn of first degree of lower back, sequela','Y','0000-00-00 00:00:00'),(162192,10,'T21.14XD ','Burn of first degree of lower back, subsequent encounter','Y','0000-00-00 00:00:00'),(162191,10,'T21.14XA ','Burn of first degree of lower back, initial encounter','Y','0000-00-00 00:00:00'),(162190,10,'T21.13XS ','Burn of first degree of upper back, sequela','Y','0000-00-00 00:00:00'),(162189,10,'T21.13XD ','Burn of first degree of upper back, subsequent encounter','Y','0000-00-00 00:00:00'),(162188,10,'T21.13XA ','Burn of first degree of upper back, initial encounter','Y','0000-00-00 00:00:00'),(162187,10,'T21.12XS ','Burn of first degree of abdominal wall, sequela','Y','0000-00-00 00:00:00'),(162186,10,'T21.12XD ','Burn of first degree of abdominal wall, subsequent encounter','Y','0000-00-00 00:00:00'),(162185,10,'T21.12XA ','Burn of first degree of abdominal wall, initial encounter','Y','0000-00-00 00:00:00'),(162184,10,'T21.11XS ','Burn of first degree of chest wall, sequela','Y','0000-00-00 00:00:00'),(162183,10,'T21.11XD ','Burn of first degree of chest wall, subsequent encounter','Y','0000-00-00 00:00:00'),(162182,10,'T21.11XA ','Burn of first degree of chest wall, initial encounter','Y','0000-00-00 00:00:00'),(162181,10,'T21.10XS ','Burn of first degree of trunk, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162180,10,'T21.10XD ','Burn of first degree of trunk, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162179,10,'T21.10XA ','Burn of first degree of trunk, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162178,10,'T21.09XS ','Burn of unspecified degree of other site of trunk, sequela','Y','0000-00-00 00:00:00'),(162177,10,'T21.09XD ','Burn of unspecified degree of other site of trunk, subsequent encounter','Y','0000-00-00 00:00:00'),(162176,10,'T21.09XA ','Burn of unspecified degree of other site of trunk, initial encounter','Y','0000-00-00 00:00:00'),(162175,10,'T21.07XS ','Burn of unspecified degree of female genital region, sequela','Y','0000-00-00 00:00:00'),(162174,10,'T21.07XD ','Burn of unspecified degree of female genital region, subsequent encounter','Y','0000-00-00 00:00:00'),(162173,10,'T21.07XA ','Burn of unspecified degree of female genital region, initial encounter','Y','0000-00-00 00:00:00'),(162172,10,'T21.06XS ','Burn of unspecified degree of male genital region, sequela','Y','0000-00-00 00:00:00'),(162171,10,'T21.06XD ','Burn of unspecified degree of male genital region, subsequent encounter','Y','0000-00-00 00:00:00'),(162170,10,'T21.06XA ','Burn of unspecified degree of male genital region, initial encounter','Y','0000-00-00 00:00:00'),(162169,10,'T21.05XS ','Burn of unspecified degree of buttock, sequela','Y','0000-00-00 00:00:00'),(162168,10,'T21.05XD ','Burn of unspecified degree of buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(162167,10,'T21.05XA ','Burn of unspecified degree of buttock, initial encounter','Y','0000-00-00 00:00:00'),(162166,10,'T21.04XS ','Burn of unspecified degree of lower back, sequela','Y','0000-00-00 00:00:00'),(162165,10,'T21.04XD ','Burn of unspecified degree of lower back, subsequent encounter','Y','0000-00-00 00:00:00'),(162164,10,'T21.04XA ','Burn of unspecified degree of lower back, initial encounter','Y','0000-00-00 00:00:00'),(162163,10,'T21.03XS ','Burn of unspecified degree of upper back, sequela','Y','0000-00-00 00:00:00'),(162162,10,'T21.03XD ','Burn of unspecified degree of upper back, subsequent encounter','Y','0000-00-00 00:00:00'),(162161,10,'T21.03XA ','Burn of unspecified degree of upper back, initial encounter','Y','0000-00-00 00:00:00'),(162160,10,'T21.02XS ','Burn of unspecified degree of abdominal wall, sequela','Y','0000-00-00 00:00:00'),(162159,10,'T21.02XD ','Burn of unspecified degree of abdominal wall, subsequent encounter','Y','0000-00-00 00:00:00'),(162158,10,'T21.02XA ','Burn of unspecified degree of abdominal wall, initial encounter','Y','0000-00-00 00:00:00'),(162157,10,'T21.01XS ','Burn of unspecified degree of chest wall, sequela','Y','0000-00-00 00:00:00'),(162156,10,'T21.01XD ','Burn of unspecified degree of chest wall, subsequent encounter','Y','0000-00-00 00:00:00'),(162155,10,'T21.01XA ','Burn of unspecified degree of chest wall, initial encounter','Y','0000-00-00 00:00:00'),(162154,10,'T21.00XS ','Burn of unspecified degree of trunk, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162153,10,'T21.00XD ','Burn of unspecified degree of trunk, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162152,10,'T21.00XA ','Burn of unspecified degree of trunk, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162151,10,'T20.79XS ','Corrosion of third degree of multiple sites of head, face, and neck, sequela','Y','0000-00-00 00:00:00'),(162150,10,'T20.79XD ','Corrosion of third degree of multiple sites of head, face, and neck, subsequent encounter','Y','0000-00-00 00:00:00'),(162149,10,'T20.79XA ','Corrosion of third degree of multiple sites of head, face, and neck, initial encounter','Y','0000-00-00 00:00:00'),(162148,10,'T20.77XS ','Corrosion of third degree of neck, sequela','Y','0000-00-00 00:00:00'),(162147,10,'T20.77XD ','Corrosion of third degree of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(162146,10,'T20.77XA ','Corrosion of third degree of neck, initial encounter','Y','0000-00-00 00:00:00'),(162145,10,'T20.76XS ','Corrosion of third degree of forehead and cheek, sequela','Y','0000-00-00 00:00:00'),(162144,10,'T20.76XD ','Corrosion of third degree of forehead and cheek, subsequent encounter','Y','0000-00-00 00:00:00'),(162143,10,'T20.76XA ','Corrosion of third degree of forehead and cheek, initial encounter','Y','0000-00-00 00:00:00'),(162142,10,'T20.75XS ','Corrosion of third degree of scalp [any part], sequela','Y','0000-00-00 00:00:00'),(162141,10,'T20.75XD ','Corrosion of third degree of scalp [any part], subsequent encounter','Y','0000-00-00 00:00:00'),(162140,10,'T20.75XA ','Corrosion of third degree of scalp [any part], initial encounter','Y','0000-00-00 00:00:00'),(162139,10,'T20.74XS ','Corrosion of third degree of nose (septum), sequela','Y','0000-00-00 00:00:00'),(162138,10,'T20.74XD ','Corrosion of third degree of nose (septum), subsequent encounter','Y','0000-00-00 00:00:00'),(162137,10,'T20.74XA ','Corrosion of third degree of nose (septum), initial encounter','Y','0000-00-00 00:00:00'),(162136,10,'T20.73XS ','Corrosion of third degree of chin, sequela','Y','0000-00-00 00:00:00'),(162135,10,'T20.73XD ','Corrosion of third degree of chin, subsequent encounter','Y','0000-00-00 00:00:00'),(162134,10,'T20.73XA ','Corrosion of third degree of chin, initial encounter','Y','0000-00-00 00:00:00'),(162133,10,'T20.72XS ','Corrosion of third degree of lip(s), sequela','Y','0000-00-00 00:00:00'),(162132,10,'T20.72XD ','Corrosion of third degree of lip(s), subsequent encounter','Y','0000-00-00 00:00:00'),(162131,10,'T20.72XA ','Corrosion of third degree of lip(s), initial encounter','Y','0000-00-00 00:00:00'),(162130,10,'T20.719S ','Corrosion of third degree of unspecified ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(162129,10,'T20.719D ','Corrosion of third degree of unspecified ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(162128,10,'T20.719A ','Corrosion of third degree of unspecified ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(162127,10,'T20.712S ','Corrosion of third degree of left ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(162126,10,'T20.712D ','Corrosion of third degree of left ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(162125,10,'T20.712A ','Corrosion of third degree of left ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(162124,10,'T20.711S ','Corrosion of third degree of right ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(162123,10,'T20.711D ','Corrosion of third degree of right ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(162122,10,'T20.711A ','Corrosion of third degree of right ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(162121,10,'T20.70XS ','Corrosion of third degree of head, face, and neck, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162120,10,'T20.70XD ','Corrosion of third degree of head, face, and neck, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162119,10,'T20.70XA ','Corrosion of third degree of head, face, and neck, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162118,10,'T20.69XS ','Corrosion of second degree of multiple sites of head, face, and neck, sequela','Y','0000-00-00 00:00:00'),(162117,10,'T20.69XD ','Corrosion of second degree of multiple sites of head, face, and neck, subsequent encounter','Y','0000-00-00 00:00:00'),(162116,10,'T20.69XA ','Corrosion of second degree of multiple sites of head, face, and neck, initial encounter','Y','0000-00-00 00:00:00'),(162115,10,'T20.67XS ','Corrosion of second degree of neck, sequela','Y','0000-00-00 00:00:00'),(162114,10,'T20.67XD ','Corrosion of second degree of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(162113,10,'T20.67XA ','Corrosion of second degree of neck, initial encounter','Y','0000-00-00 00:00:00'),(162112,10,'T20.66XS ','Corrosion of second degree of forehead and cheek, sequela','Y','0000-00-00 00:00:00'),(162111,10,'T20.66XD ','Corrosion of second degree of forehead and cheek, subsequent encounter','Y','0000-00-00 00:00:00'),(162110,10,'T20.66XA ','Corrosion of second degree of forehead and cheek, initial encounter','Y','0000-00-00 00:00:00'),(162109,10,'T20.65XS ','Corrosion of second degree of scalp [any part], sequela','Y','0000-00-00 00:00:00'),(162108,10,'T20.65XD ','Corrosion of second degree of scalp [any part], subsequent encounter','Y','0000-00-00 00:00:00'),(162107,10,'T20.65XA ','Corrosion of second degree of scalp [any part], initial encounter','Y','0000-00-00 00:00:00'),(162106,10,'T20.64XS ','Corrosion of second degree of nose (septum), sequela','Y','0000-00-00 00:00:00'),(162105,10,'T20.64XD ','Corrosion of second degree of nose (septum), subsequent encounter','Y','0000-00-00 00:00:00'),(162104,10,'T20.64XA ','Corrosion of second degree of nose (septum), initial encounter','Y','0000-00-00 00:00:00'),(162103,10,'T20.63XS ','Corrosion of second degree of chin, sequela','Y','0000-00-00 00:00:00'),(162102,10,'T20.63XD ','Corrosion of second degree of chin, subsequent encounter','Y','0000-00-00 00:00:00'),(162101,10,'T20.63XA ','Corrosion of second degree of chin, initial encounter','Y','0000-00-00 00:00:00'),(162100,10,'T20.62XS ','Corrosion of second degree of lip(s), sequela','Y','0000-00-00 00:00:00'),(162099,10,'T20.62XD ','Corrosion of second degree of lip(s), subsequent encounter','Y','0000-00-00 00:00:00'),(162098,10,'T20.62XA ','Corrosion of second degree of lip(s), initial encounter','Y','0000-00-00 00:00:00'),(162097,10,'T20.619S ','Corrosion of second degree of unspecified ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(162096,10,'T20.619D ','Corrosion of second degree of unspecified ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(162095,10,'T20.619A ','Corrosion of second degree of unspecified ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(162094,10,'T20.612S ','Corrosion of second degree of left ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(162093,10,'T20.612D ','Corrosion of second degree of left ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(162092,10,'T20.612A ','Corrosion of second degree of left ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(162091,10,'T20.611S ','Corrosion of second degree of right ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(162090,10,'T20.611D ','Corrosion of second degree of right ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(162089,10,'T20.611A ','Corrosion of second degree of right ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(162088,10,'T20.60XS ','Corrosion of second degree of head, face, and neck, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162087,10,'T20.60XD ','Corrosion of second degree of head, face, and neck, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162086,10,'T20.60XA ','Corrosion of second degree of head, face, and neck, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162085,10,'T20.59XS ','Corrosion of first degree of multiple sites of head, face, and neck, sequela','Y','0000-00-00 00:00:00'),(162084,10,'T20.59XD ','Corrosion of first degree of multiple sites of head, face, and neck, subsequent encounter','Y','0000-00-00 00:00:00'),(162083,10,'T20.59XA ','Corrosion of first degree of multiple sites of head, face, and neck, initial encounter','Y','0000-00-00 00:00:00'),(162082,10,'T20.57XS ','Corrosion of first degree of neck, sequela','Y','0000-00-00 00:00:00'),(162081,10,'T20.57XD ','Corrosion of first degree of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(162080,10,'T20.57XA ','Corrosion of first degree of neck, initial encounter','Y','0000-00-00 00:00:00'),(162079,10,'T20.56XS ','Corrosion of first degree of forehead and cheek, sequela','Y','0000-00-00 00:00:00'),(162078,10,'T20.56XD ','Corrosion of first degree of forehead and cheek, subsequent encounter','Y','0000-00-00 00:00:00'),(162077,10,'T20.56XA ','Corrosion of first degree of forehead and cheek, initial encounter','Y','0000-00-00 00:00:00'),(162076,10,'T20.55XS ','Corrosion of first degree of scalp [any part], sequela','Y','0000-00-00 00:00:00'),(162075,10,'T20.55XD ','Corrosion of first degree of scalp [any part], subsequent encounter','Y','0000-00-00 00:00:00'),(162074,10,'T20.55XA ','Corrosion of first degree of scalp [any part], initial encounter','Y','0000-00-00 00:00:00'),(162073,10,'T20.54XS ','Corrosion of first degree of nose (septum), sequela','Y','0000-00-00 00:00:00'),(162072,10,'T20.54XD ','Corrosion of first degree of nose (septum), subsequent encounter','Y','0000-00-00 00:00:00'),(162071,10,'T20.54XA ','Corrosion of first degree of nose (septum), initial encounter','Y','0000-00-00 00:00:00'),(162070,10,'T20.53XS ','Corrosion of first degree of chin, sequela','Y','0000-00-00 00:00:00'),(162069,10,'T20.53XD ','Corrosion of first degree of chin, subsequent encounter','Y','0000-00-00 00:00:00'),(162068,10,'T20.53XA ','Corrosion of first degree of chin, initial encounter','Y','0000-00-00 00:00:00'),(162067,10,'T20.52XS ','Corrosion of first degree of lip(s), sequela','Y','0000-00-00 00:00:00'),(162066,10,'T20.52XD ','Corrosion of first degree of lip(s), subsequent encounter','Y','0000-00-00 00:00:00'),(162065,10,'T20.52XA ','Corrosion of first degree of lip(s), initial encounter','Y','0000-00-00 00:00:00'),(162064,10,'T20.519S ','Corrosion of first degree of unspecified ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(162063,10,'T20.519D ','Corrosion of first degree of unspecified ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(162062,10,'T20.519A ','Corrosion of first degree of unspecified ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(162061,10,'T20.512S ','Corrosion of first degree of left ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(162060,10,'T20.512D ','Corrosion of first degree of left ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(162059,10,'T20.512A ','Corrosion of first degree of left ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(162058,10,'T20.511S ','Corrosion of first degree of right ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(162057,10,'T20.511D ','Corrosion of first degree of right ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(162056,10,'T20.511A ','Corrosion of first degree of right ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(162055,10,'T20.50XS ','Corrosion of first degree of head, face, and neck, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162054,10,'T20.50XD ','Corrosion of first degree of head, face, and neck, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162053,10,'T20.50XA ','Corrosion of first degree of head, face, and neck, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162052,10,'T20.49XS ','Corrosion of unspecified degree of multiple sites of head, face, and neck, sequela','Y','0000-00-00 00:00:00'),(162051,10,'T20.49XD ','Corrosion of unspecified degree of multiple sites of head, face, and neck, subsequent encounter','Y','0000-00-00 00:00:00'),(162050,10,'T20.49XA ','Corrosion of unspecified degree of multiple sites of head, face, and neck, initial encounter','Y','0000-00-00 00:00:00'),(162049,10,'T20.47XS ','Corrosion of unspecified degree of neck, sequela','Y','0000-00-00 00:00:00'),(162048,10,'T20.47XD ','Corrosion of unspecified degree of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(162047,10,'T20.47XA ','Corrosion of unspecified degree of neck, initial encounter','Y','0000-00-00 00:00:00'),(162046,10,'T20.46XS ','Corrosion of unspecified degree of forehead and cheek, sequela','Y','0000-00-00 00:00:00'),(162045,10,'T20.46XD ','Corrosion of unspecified degree of forehead and cheek, subsequent encounter','Y','0000-00-00 00:00:00'),(162044,10,'T20.46XA ','Corrosion of unspecified degree of forehead and cheek, initial encounter','Y','0000-00-00 00:00:00'),(162043,10,'T20.45XS ','Corrosion of unspecified degree of scalp [any part], sequela','Y','0000-00-00 00:00:00'),(162042,10,'T20.45XD ','Corrosion of unspecified degree of scalp [any part], subsequent encounter','Y','0000-00-00 00:00:00'),(162041,10,'T20.45XA ','Corrosion of unspecified degree of scalp [any part], initial encounter','Y','0000-00-00 00:00:00'),(162040,10,'T20.44XS ','Corrosion of unspecified degree of nose (septum), sequela','Y','0000-00-00 00:00:00'),(162039,10,'T20.44XD ','Corrosion of unspecified degree of nose (septum), subsequent encounter','Y','0000-00-00 00:00:00'),(162038,10,'T20.44XA ','Corrosion of unspecified degree of nose (septum), initial encounter','Y','0000-00-00 00:00:00'),(162037,10,'T20.43XS ','Corrosion of unspecified degree of chin, sequela','Y','0000-00-00 00:00:00'),(162036,10,'T20.43XD ','Corrosion of unspecified degree of chin, subsequent encounter','Y','0000-00-00 00:00:00'),(162035,10,'T20.43XA ','Corrosion of unspecified degree of chin, initial encounter','Y','0000-00-00 00:00:00'),(162034,10,'T20.42XS ','Corrosion of unspecified degree of lip(s), sequela','Y','0000-00-00 00:00:00'),(162033,10,'T20.42XD ','Corrosion of unspecified degree of lip(s), subsequent encounter','Y','0000-00-00 00:00:00'),(162032,10,'T20.42XA ','Corrosion of unspecified degree of lip(s), initial encounter','Y','0000-00-00 00:00:00'),(162031,10,'T20.419S ','Corrosion of unspecified degree of unspecified ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(162030,10,'T20.419D ','Corrosion of unspecified degree of unspecified ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(162029,10,'T20.419A ','Corrosion of unspecified degree of unspecified ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(162028,10,'T20.412S ','Corrosion of unspecified degree of left ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(162027,10,'T20.412D ','Corrosion of unspecified degree of left ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(162026,10,'T20.412A ','Corrosion of unspecified degree of left ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(162025,10,'T20.411S ','Corrosion of unspecified degree of right ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(162024,10,'T20.411D ','Corrosion of unspecified degree of right ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(162023,10,'T20.411A ','Corrosion of unspecified degree of right ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(162022,10,'T20.40XS ','Corrosion of unspecified degree of head, face, and neck, unspecified site, sequela','Y','0000-00-00 00:00:00'),(162021,10,'T20.40XD ','Corrosion of unspecified degree of head, face, and neck, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(162020,10,'T20.40XA ','Corrosion of unspecified degree of head, face, and neck, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(162019,10,'T20.39XS ','Burn of third degree of multiple sites of head, face, and neck, sequela','Y','0000-00-00 00:00:00'),(162018,10,'T20.39XD ','Burn of third degree of multiple sites of head, face, and neck, subsequent encounter','Y','0000-00-00 00:00:00'),(162017,10,'T20.39XA ','Burn of third degree of multiple sites of head, face, and neck, initial encounter','Y','0000-00-00 00:00:00'),(162016,10,'T20.37XS ','Burn of third degree of neck, sequela','Y','0000-00-00 00:00:00'),(162015,10,'T20.37XD ','Burn of third degree of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(162014,10,'T20.37XA ','Burn of third degree of neck, initial encounter','Y','0000-00-00 00:00:00'),(162013,10,'T20.36XS ','Burn of third degree of forehead and cheek, sequela','Y','0000-00-00 00:00:00'),(162012,10,'T20.36XD ','Burn of third degree of forehead and cheek, subsequent encounter','Y','0000-00-00 00:00:00'),(162011,10,'T20.36XA ','Burn of third degree of forehead and cheek, initial encounter','Y','0000-00-00 00:00:00'),(162010,10,'T20.35XS ','Burn of third degree of scalp [any part], sequela','Y','0000-00-00 00:00:00'),(162009,10,'T20.35XD ','Burn of third degree of scalp [any part], subsequent encounter','Y','0000-00-00 00:00:00'),(162008,10,'T20.35XA ','Burn of third degree of scalp [any part], initial encounter','Y','0000-00-00 00:00:00'),(162007,10,'T20.34XS ','Burn of third degree of nose (septum), sequela','Y','0000-00-00 00:00:00'),(162006,10,'T20.34XD ','Burn of third degree of nose (septum), subsequent encounter','Y','0000-00-00 00:00:00'),(162005,10,'T20.34XA ','Burn of third degree of nose (septum), initial encounter','Y','0000-00-00 00:00:00'),(162004,10,'T20.33XS ','Burn of third degree of chin, sequela','Y','0000-00-00 00:00:00'),(162003,10,'T20.33XD ','Burn of third degree of chin, subsequent encounter','Y','0000-00-00 00:00:00'),(162002,10,'T20.33XA ','Burn of third degree of chin, initial encounter','Y','0000-00-00 00:00:00'),(162001,10,'T20.32XS ','Burn of third degree of lip(s), sequela','Y','0000-00-00 00:00:00'),(162000,10,'T20.32XD ','Burn of third degree of lip(s), subsequent encounter','Y','0000-00-00 00:00:00'),(161999,10,'T20.32XA ','Burn of third degree of lip(s), initial encounter','Y','0000-00-00 00:00:00'),(161998,10,'T20.319S ','Burn of third degree of unspecified ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(161997,10,'T20.319D ','Burn of third degree of unspecified ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(161996,10,'T20.319A ','Burn of third degree of unspecified ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(161995,10,'T20.312S ','Burn of third degree of left ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(161994,10,'T20.312D ','Burn of third degree of left ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(161993,10,'T20.312A ','Burn of third degree of left ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(161992,10,'T20.311S ','Burn of third degree of right ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(161991,10,'T20.311D ','Burn of third degree of right ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(161990,10,'T20.311A ','Burn of third degree of right ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(161989,10,'T20.30XS ','Burn of third degree of head, face, and neck, unspecified site, sequela','Y','0000-00-00 00:00:00'),(161988,10,'T20.30XD ','Burn of third degree of head, face, and neck, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(161987,10,'T20.30XA ','Burn of third degree of head, face, and neck, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(161986,10,'T20.29XS ','Burn of second degree of multiple sites of head, face, and neck, sequela','Y','0000-00-00 00:00:00'),(161985,10,'T20.29XD ','Burn of second degree of multiple sites of head, face, and neck, subsequent encounter','Y','0000-00-00 00:00:00'),(161984,10,'T20.29XA ','Burn of second degree of multiple sites of head, face, and neck, initial encounter','Y','0000-00-00 00:00:00'),(161983,10,'T20.27XS ','Burn of second degree of neck, sequela','Y','0000-00-00 00:00:00'),(161982,10,'T20.27XD ','Burn of second degree of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(161981,10,'T20.27XA ','Burn of second degree of neck, initial encounter','Y','0000-00-00 00:00:00'),(161980,10,'T20.26XS ','Burn of second degree of forehead and cheek, sequela','Y','0000-00-00 00:00:00'),(161979,10,'T20.26XD ','Burn of second degree of forehead and cheek, subsequent encounter','Y','0000-00-00 00:00:00'),(161978,10,'T20.26XA ','Burn of second degree of forehead and cheek, initial encounter','Y','0000-00-00 00:00:00'),(161977,10,'T20.25XS ','Burn of second degree of scalp [any part], sequela','Y','0000-00-00 00:00:00'),(161976,10,'T20.25XD ','Burn of second degree of scalp [any part], subsequent encounter','Y','0000-00-00 00:00:00'),(161975,10,'T20.25XA ','Burn of second degree of scalp [any part], initial encounter','Y','0000-00-00 00:00:00'),(161974,10,'T20.24XS ','Burn of second degree of nose (septum), sequela','Y','0000-00-00 00:00:00'),(161973,10,'T20.24XD ','Burn of second degree of nose (septum), subsequent encounter','Y','0000-00-00 00:00:00'),(161972,10,'T20.24XA ','Burn of second degree of nose (septum), initial encounter','Y','0000-00-00 00:00:00'),(161971,10,'T20.23XS ','Burn of second degree of chin, sequela','Y','0000-00-00 00:00:00'),(161970,10,'T20.23XD ','Burn of second degree of chin, subsequent encounter','Y','0000-00-00 00:00:00'),(161969,10,'T20.23XA ','Burn of second degree of chin, initial encounter','Y','0000-00-00 00:00:00'),(161968,10,'T20.22XS ','Burn of second degree of lip(s), sequela','Y','0000-00-00 00:00:00'),(161967,10,'T20.22XD ','Burn of second degree of lip(s), subsequent encounter','Y','0000-00-00 00:00:00'),(161966,10,'T20.22XA ','Burn of second degree of lip(s), initial encounter','Y','0000-00-00 00:00:00'),(161965,10,'T20.219S ','Burn of second degree of unspecified ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(161964,10,'T20.219D ','Burn of second degree of unspecified ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(161963,10,'T20.219A ','Burn of second degree of unspecified ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(161962,10,'T20.212S ','Burn of second degree of left ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(161961,10,'T20.212D ','Burn of second degree of left ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(161960,10,'T20.212A ','Burn of second degree of left ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(161959,10,'T20.211S ','Burn of second degree of right ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(161958,10,'T20.211D ','Burn of second degree of right ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(161957,10,'T20.211A ','Burn of second degree of right ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(161956,10,'T20.20XS ','Burn of second degree of head, face, and neck, unspecified site, sequela','Y','0000-00-00 00:00:00'),(161955,10,'T20.20XD ','Burn of second degree of head, face, and neck, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(161954,10,'T20.20XA ','Burn of second degree of head, face, and neck, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(161953,10,'T20.19XS ','Burn of first degree of multiple sites of head, face, and neck, sequela','Y','0000-00-00 00:00:00'),(161952,10,'T20.19XD ','Burn of first degree of multiple sites of head, face, and neck, subsequent encounter','Y','0000-00-00 00:00:00'),(161951,10,'T20.19XA ','Burn of first degree of multiple sites of head, face, and neck, initial encounter','Y','0000-00-00 00:00:00'),(161950,10,'T20.17XS ','Burn of first degree of neck, sequela','Y','0000-00-00 00:00:00'),(161949,10,'T20.17XD ','Burn of first degree of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(161948,10,'T20.17XA ','Burn of first degree of neck, initial encounter','Y','0000-00-00 00:00:00'),(161947,10,'T20.16XS ','Burn of first degree of forehead and cheek, sequela','Y','0000-00-00 00:00:00'),(161946,10,'T20.16XD ','Burn of first degree of forehead and cheek, subsequent encounter','Y','0000-00-00 00:00:00'),(161945,10,'T20.16XA ','Burn of first degree of forehead and cheek, initial encounter','Y','0000-00-00 00:00:00'),(161944,10,'T20.15XS ','Burn of first degree of scalp [any part], sequela','Y','0000-00-00 00:00:00'),(161943,10,'T20.15XD ','Burn of first degree of scalp [any part], subsequent encounter','Y','0000-00-00 00:00:00'),(161942,10,'T20.15XA ','Burn of first degree of scalp [any part], initial encounter','Y','0000-00-00 00:00:00'),(161941,10,'T20.14XS ','Burn of first degree of nose (septum), sequela','Y','0000-00-00 00:00:00'),(161940,10,'T20.14XD ','Burn of first degree of nose (septum), subsequent encounter','Y','0000-00-00 00:00:00'),(161939,10,'T20.14XA ','Burn of first degree of nose (septum), initial encounter','Y','0000-00-00 00:00:00'),(161938,10,'T20.13XS ','Burn of first degree of chin, sequela','Y','0000-00-00 00:00:00'),(161937,10,'T20.13XD ','Burn of first degree of chin, subsequent encounter','Y','0000-00-00 00:00:00'),(161936,10,'T20.13XA ','Burn of first degree of chin, initial encounter','Y','0000-00-00 00:00:00'),(161935,10,'T20.12XS ','Burn of first degree of lip(s), sequela','Y','0000-00-00 00:00:00'),(161934,10,'T20.12XD ','Burn of first degree of lip(s), subsequent encounter','Y','0000-00-00 00:00:00'),(161933,10,'T20.12XA ','Burn of first degree of lip(s), initial encounter','Y','0000-00-00 00:00:00'),(161932,10,'T20.119S ','Burn of first degree of unspecified ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(161931,10,'T20.119D ','Burn of first degree of unspecified ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(161930,10,'T20.119A ','Burn of first degree of unspecified ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(161929,10,'T20.112S ','Burn of first degree of left ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(161928,10,'T20.112D ','Burn of first degree of left ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(161927,10,'T20.112A ','Burn of first degree of left ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(161926,10,'T20.111S ','Burn of first degree of right ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(161925,10,'T20.111D ','Burn of first degree of right ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(161924,10,'T20.111A ','Burn of first degree of right ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(161923,10,'T20.10XS ','Burn of first degree of head, face, and neck, unspecified site, sequela','Y','0000-00-00 00:00:00'),(161922,10,'T20.10XD ','Burn of first degree of head, face, and neck, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(161921,10,'T20.10XA ','Burn of first degree of head, face, and neck, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(161920,10,'T20.09XS ','Burn of unspecified degree of multiple sites of head, face, and neck, sequela','Y','0000-00-00 00:00:00'),(161919,10,'T20.09XD ','Burn of unspecified degree of multiple sites of head, face, and neck, subsequent encounter','Y','0000-00-00 00:00:00'),(161918,10,'T20.09XA ','Burn of unspecified degree of multiple sites of head, face, and neck, initial encounter','Y','0000-00-00 00:00:00'),(161917,10,'T20.07XS ','Burn of unspecified degree of neck, sequela','Y','0000-00-00 00:00:00'),(161916,10,'T20.07XD ','Burn of unspecified degree of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(161915,10,'T20.07XA ','Burn of unspecified degree of neck, initial encounter','Y','0000-00-00 00:00:00'),(161914,10,'T20.06XS ','Burn of unspecified degree of forehead and cheek, sequela','Y','0000-00-00 00:00:00'),(161913,10,'T20.06XD ','Burn of unspecified degree of forehead and cheek, subsequent encounter','Y','0000-00-00 00:00:00'),(161912,10,'T20.06XA ','Burn of unspecified degree of forehead and cheek, initial encounter','Y','0000-00-00 00:00:00'),(161911,10,'T20.05XS ','Burn of unspecified degree of scalp [any part], sequela','Y','0000-00-00 00:00:00'),(161910,10,'T20.05XD ','Burn of unspecified degree of scalp [any part], subsequent encounter','Y','0000-00-00 00:00:00'),(161909,10,'T20.05XA ','Burn of unspecified degree of scalp [any part], initial encounter','Y','0000-00-00 00:00:00'),(161908,10,'T20.04XS ','Burn of unspecified degree of nose (septum), sequela','Y','0000-00-00 00:00:00'),(161907,10,'T20.04XD ','Burn of unspecified degree of nose (septum), subsequent encounter','Y','0000-00-00 00:00:00'),(161906,10,'T20.04XA ','Burn of unspecified degree of nose (septum), initial encounter','Y','0000-00-00 00:00:00'),(161905,10,'T20.03XS ','Burn of unspecified degree of chin, sequela','Y','0000-00-00 00:00:00'),(161904,10,'T20.03XD ','Burn of unspecified degree of chin, subsequent encounter','Y','0000-00-00 00:00:00'),(161903,10,'T20.03XA ','Burn of unspecified degree of chin, initial encounter','Y','0000-00-00 00:00:00'),(161902,10,'T20.02XS ','Burn of unspecified degree of lip(s), sequela','Y','0000-00-00 00:00:00'),(161901,10,'T20.02XD ','Burn of unspecified degree of lip(s), subsequent encounter','Y','0000-00-00 00:00:00'),(161900,10,'T20.02XA ','Burn of unspecified degree of lip(s), initial encounter','Y','0000-00-00 00:00:00'),(161899,10,'T20.019S ','Burn of unspecified degree of unspecified ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(161898,10,'T20.019D ','Burn of unspecified degree of unspecified ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(161897,10,'T20.019A ','Burn of unspecified degree of unspecified ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(161896,10,'T20.012S ','Burn of unspecified degree of left ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(161895,10,'T20.012D ','Burn of unspecified degree of left ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(161894,10,'T20.012A ','Burn of unspecified degree of left ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(161893,10,'T20.011S ','Burn of unspecified degree of right ear [any part, except ear drum], sequela','Y','0000-00-00 00:00:00'),(161892,10,'T20.011D ','Burn of unspecified degree of right ear [any part, except ear drum], subsequent encounter','Y','0000-00-00 00:00:00'),(161891,10,'T20.011A ','Burn of unspecified degree of right ear [any part, except ear drum], initial encounter','Y','0000-00-00 00:00:00'),(161890,10,'T20.00XS ','Burn of unspecified degree of head, face, and neck, unspecified site, sequela','Y','0000-00-00 00:00:00'),(161889,10,'T20.00XD ','Burn of unspecified degree of head, face, and neck, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(161888,10,'T20.00XA ','Burn of unspecified degree of head, face, and neck, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(161887,10,'T19.9XXS ','Foreign body in genitourinary tract, part unspecified, sequela','Y','0000-00-00 00:00:00'),(161886,10,'T19.9XXD ','Foreign body in genitourinary tract, part unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(161885,10,'T19.9XXA ','Foreign body in genitourinary tract, part unspecified, initial encounter','Y','0000-00-00 00:00:00'),(161884,10,'T19.8XXS ','Foreign body in other parts of genitourinary tract, sequela','Y','0000-00-00 00:00:00'),(161883,10,'T19.8XXD ','Foreign body in other parts of genitourinary tract, subsequent encounter','Y','0000-00-00 00:00:00'),(161882,10,'T19.8XXA ','Foreign body in other parts of genitourinary tract, initial encounter','Y','0000-00-00 00:00:00'),(161881,10,'T19.4XXS ','Foreign body in penis, sequela','Y','0000-00-00 00:00:00'),(161880,10,'T19.4XXD ','Foreign body in penis, subsequent encounter','Y','0000-00-00 00:00:00'),(161879,10,'T19.4XXA ','Foreign body in penis, initial encounter','Y','0000-00-00 00:00:00'),(161878,10,'T19.3XXS ','Foreign body in uterus, sequela','Y','0000-00-00 00:00:00'),(161877,10,'T19.3XXD ','Foreign body in uterus, subsequent encounter','Y','0000-00-00 00:00:00'),(161876,10,'T19.3XXA ','Foreign body in uterus, initial encounter','Y','0000-00-00 00:00:00'),(161875,10,'T19.2XXS ','Foreign body in vulva and vagina, sequela','Y','0000-00-00 00:00:00'),(161874,10,'T19.2XXD ','Foreign body in vulva and vagina, subsequent encounter','Y','0000-00-00 00:00:00'),(161873,10,'T19.2XXA ','Foreign body in vulva and vagina, initial encounter','Y','0000-00-00 00:00:00'),(161872,10,'T19.1XXS ','Foreign body in bladder, sequela','Y','0000-00-00 00:00:00'),(161871,10,'T19.1XXD ','Foreign body in bladder, subsequent encounter','Y','0000-00-00 00:00:00'),(161870,10,'T19.1XXA ','Foreign body in bladder, initial encounter','Y','0000-00-00 00:00:00'),(161869,10,'T19.0XXS ','Foreign body in urethra, sequela','Y','0000-00-00 00:00:00'),(161868,10,'T19.0XXD ','Foreign body in urethra, subsequent encounter','Y','0000-00-00 00:00:00'),(161867,10,'T19.0XXA ','Foreign body in urethra, initial encounter','Y','0000-00-00 00:00:00'),(161866,10,'T18.9XXS ','Foreign body of alimentary tract, part unspecified, sequela','Y','0000-00-00 00:00:00'),(161865,10,'T18.9XXD ','Foreign body of alimentary tract, part unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(161864,10,'T18.9XXA ','Foreign body of alimentary tract, part unspecified, initial encounter','Y','0000-00-00 00:00:00'),(161863,10,'T18.8XXS ','Foreign body in other parts of alimentary tract, sequela','Y','0000-00-00 00:00:00'),(161862,10,'T18.8XXD ','Foreign body in other parts of alimentary tract, subsequent encounter','Y','0000-00-00 00:00:00'),(161861,10,'T18.8XXA ','Foreign body in other parts of alimentary tract, initial encounter','Y','0000-00-00 00:00:00'),(161860,10,'T18.5XXS ','Foreign body in anus and rectum, sequela','Y','0000-00-00 00:00:00'),(161859,10,'T18.5XXD ','Foreign body in anus and rectum, subsequent encounter','Y','0000-00-00 00:00:00'),(161857,10,'T18.4XXS ','Foreign body in colon, sequela','Y','0000-00-00 00:00:00'),(161858,10,'T18.5XXA ','Foreign body in anus and rectum, initial encounter','Y','0000-00-00 00:00:00'),(161856,10,'T18.4XXD ','Foreign body in colon, subsequent encounter','Y','0000-00-00 00:00:00'),(161855,10,'T18.4XXA ','Foreign body in colon, initial encounter','Y','0000-00-00 00:00:00'),(161854,10,'T18.3XXS ','Foreign body in small intestine, sequela','Y','0000-00-00 00:00:00'),(161853,10,'T18.3XXD ','Foreign body in small intestine, subsequent encounter','Y','0000-00-00 00:00:00'),(161852,10,'T18.3XXA ','Foreign body in small intestine, initial encounter','Y','0000-00-00 00:00:00'),(161851,10,'T18.2XXS ','Foreign body in stomach, sequela','Y','0000-00-00 00:00:00'),(161850,10,'T18.2XXD ','Foreign body in stomach, subsequent encounter','Y','0000-00-00 00:00:00'),(161849,10,'T18.2XXA ','Foreign body in stomach, initial encounter','Y','0000-00-00 00:00:00'),(161848,10,'T18.198S ','Other foreign object in esophagus causing other injury, sequela','Y','0000-00-00 00:00:00'),(161847,10,'T18.198D ','Other foreign object in esophagus causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161846,10,'T18.198A ','Other foreign object in esophagus causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161845,10,'T18.190S ','Other foreign object in esophagus causing compression of trachea, sequela','Y','0000-00-00 00:00:00'),(161844,10,'T18.190D ','Other foreign object in esophagus causing compression of trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(161843,10,'T18.190A ','Other foreign object in esophagus causing compression of trachea, initial encounter','Y','0000-00-00 00:00:00'),(161842,10,'T18.128S ','Food in esophagus causing other injury, sequela','Y','0000-00-00 00:00:00'),(161841,10,'T18.128D ','Food in esophagus causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161840,10,'T18.128A ','Food in esophagus causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161839,10,'T18.120S ','Food in esophagus causing compression of trachea, sequela','Y','0000-00-00 00:00:00'),(161838,10,'T18.120D ','Food in esophagus causing compression of trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(161837,10,'T18.120A ','Food in esophagus causing compression of trachea, initial encounter','Y','0000-00-00 00:00:00'),(161836,10,'T18.118S ','Gastric contents in esophagus causing other injury, sequela','Y','0000-00-00 00:00:00'),(161835,10,'T18.118D ','Gastric contents in esophagus causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161834,10,'T18.118A ','Gastric contents in esophagus causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161833,10,'T18.110S ','Gastric contents in esophagus causing compression of trachea, sequela','Y','0000-00-00 00:00:00'),(161832,10,'T18.110D ','Gastric contents in esophagus causing compression of trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(161831,10,'T18.110A ','Gastric contents in esophagus causing compression of trachea, initial encounter','Y','0000-00-00 00:00:00'),(161830,10,'T18.108S ','Unspecified foreign body in esophagus causing other injury, sequela','Y','0000-00-00 00:00:00'),(161829,10,'T18.108D ','Unspecified foreign body in esophagus causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161828,10,'T18.108A ','Unspecified foreign body in esophagus causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161827,10,'T18.100S ','Unspecified foreign body in esophagus causing compression of trachea, sequela','Y','0000-00-00 00:00:00'),(161826,10,'T18.100D ','Unspecified foreign body in esophagus causing compression of trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(161825,10,'T18.100A ','Unspecified foreign body in esophagus causing compression of trachea, initial encounter','Y','0000-00-00 00:00:00'),(161824,10,'T18.0XXS ','Foreign body in mouth, sequela','Y','0000-00-00 00:00:00'),(161823,10,'T18.0XXD ','Foreign body in mouth, subsequent encounter','Y','0000-00-00 00:00:00'),(161822,10,'T18.0XXA ','Foreign body in mouth, initial encounter','Y','0000-00-00 00:00:00'),(161821,10,'T17.998S ','Other foreign object in respiratory tract, part unspecified causing other injury, sequela','Y','0000-00-00 00:00:00'),(161820,10,'T17.998D ','Other foreign object in respiratory tract, part unspecified causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161819,10,'T17.998A ','Other foreign object in respiratory tract, part unspecified causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161818,10,'T17.990S ','Other foreign object in respiratory tract, part unspecified in causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161817,10,'T17.990D ','Other foreign object in respiratory tract, part unspecified in causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161816,10,'T17.990A ','Other foreign object in respiratory tract, part unspecified in causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161815,10,'T17.928S ','Food in respiratory tract, part unspecified causing other injury, sequela','Y','0000-00-00 00:00:00'),(161814,10,'T17.928D ','Food in respiratory tract, part unspecified causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161813,10,'T17.928A ','Food in respiratory tract, part unspecified causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161812,10,'T17.920S ','Food in respiratory tract, part unspecified causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161811,10,'T17.920D ','Food in respiratory tract, part unspecified causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161810,10,'T17.920A ','Food in respiratory tract, part unspecified causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161809,10,'T17.918S ','Gastric contents in respiratory tract, part unspecified causing other injury, sequela','Y','0000-00-00 00:00:00'),(161808,10,'T17.918D ','Gastric contents in respiratory tract, part unspecified causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161807,10,'T17.918A ','Gastric contents in respiratory tract, part unspecified causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161806,10,'T17.910S ','Gastric contents in respiratory tract, part unspecified causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161805,10,'T17.910D ','Gastric contents in respiratory tract, part unspecified causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161804,10,'T17.910A ','Gastric contents in respiratory tract, part unspecified causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161803,10,'T17.908S ','Unspecified foreign body in respiratory tract, part unspecified causing other injury, sequela','Y','0000-00-00 00:00:00'),(161802,10,'T17.908D ','Unspecified foreign body in respiratory tract, part unspecified causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161801,10,'T17.908A ','Unspecified foreign body in respiratory tract, part unspecified causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161800,10,'T17.900S ','Unspecified foreign body in respiratory tract, part unspecified causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161799,10,'T17.900D ','Unspecified foreign body in respiratory tract, part unspecified causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161798,10,'T17.900A ','Unspecified foreign body in respiratory tract, part unspecified causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161797,10,'T17.898S ','Other foreign object in other parts of respiratory tract causing other injury, sequela','Y','0000-00-00 00:00:00'),(161796,10,'T17.898D ','Other foreign object in other parts of respiratory tract causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161795,10,'T17.898A ','Other foreign object in other parts of respiratory tract causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161794,10,'T17.890S ','Other foreign object in other parts of respiratory tract causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161793,10,'T17.890D ','Other foreign object in other parts of respiratory tract causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161792,10,'T17.890A ','Other foreign object in other parts of respiratory tract causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161791,10,'T17.828S ','Food in other parts of respiratory tract causing other injury, sequela','Y','0000-00-00 00:00:00'),(161790,10,'T17.828D ','Food in other parts of respiratory tract causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161789,10,'T17.828A ','Food in other parts of respiratory tract causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161788,10,'T17.820S ','Food in other parts of respiratory tract causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161787,10,'T17.820D ','Food in other parts of respiratory tract causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161786,10,'T17.820A ','Food in other parts of respiratory tract causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161785,10,'T17.818S ','Gastric contents in other parts of respiratory tract causing other injury, sequela','Y','0000-00-00 00:00:00'),(161784,10,'T17.818D ','Gastric contents in other parts of respiratory tract causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161783,10,'T17.818A ','Gastric contents in other parts of respiratory tract causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161782,10,'T17.810S ','Gastric contents in other parts of respiratory tract causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161781,10,'T17.810D ','Gastric contents in other parts of respiratory tract causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161780,10,'T17.810A ','Gastric contents in other parts of respiratory tract causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161779,10,'T17.808S ','Unspecified foreign body in other parts of respiratory tract causing other injury, sequela','Y','0000-00-00 00:00:00'),(161778,10,'T17.808D ','Unspecified foreign body in other parts of respiratory tract causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161777,10,'T17.808A ','Unspecified foreign body in other parts of respiratory tract causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161776,10,'T17.800S ','Unspecified foreign body in other parts of respiratory tract causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161775,10,'T17.800D ','Unspecified foreign body in other parts of respiratory tract causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161774,10,'T17.800A ','Unspecified foreign body in other parts of respiratory tract causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161773,10,'T17.598S ','Other foreign object in bronchus causing other injury, sequela','Y','0000-00-00 00:00:00'),(161772,10,'T17.598D ','Other foreign object in bronchus causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161771,10,'T17.598A ','Other foreign object in bronchus causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161770,10,'T17.590S ','Other foreign object in bronchus causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161769,10,'T17.590D ','Other foreign object in bronchus causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161768,10,'T17.590A ','Other foreign object in bronchus causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161767,10,'T17.528S ','Food in bronchus causing other injury, sequela','Y','0000-00-00 00:00:00'),(161766,10,'T17.528D ','Food in bronchus causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161765,10,'T17.528A ','Food in bronchus causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161764,10,'T17.520S ','Food in bronchus causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161763,10,'T17.520D ','Food in bronchus causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161762,10,'T17.520A ','Food in bronchus causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161761,10,'T17.518S ','Gastric contents in bronchus causing other injury, sequela','Y','0000-00-00 00:00:00'),(161760,10,'T17.518D ','Gastric contents in bronchus causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161759,10,'T17.518A ','Gastric contents in bronchus causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161758,10,'T17.510S ','Gastric contents in bronchus causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161757,10,'T17.510D ','Gastric contents in bronchus causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161756,10,'T17.510A ','Gastric contents in bronchus causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161755,10,'T17.508S ','Unspecified foreign body in bronchus causing other injury, sequela','Y','0000-00-00 00:00:00'),(161754,10,'T17.508D ','Unspecified foreign body in bronchus causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161753,10,'T17.508A ','Unspecified foreign body in bronchus causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161752,10,'T17.500S ','Unspecified foreign body in bronchus causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161751,10,'T17.500D ','Unspecified foreign body in bronchus causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161750,10,'T17.500A ','Unspecified foreign body in bronchus causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161749,10,'T17.498S ','Other foreign object in trachea causing other injury, sequela','Y','0000-00-00 00:00:00'),(161748,10,'T17.498D ','Other foreign object in trachea causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161747,10,'T17.498A ','Other foreign object in trachea causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161746,10,'T17.490S ','Other foreign object in trachea causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161745,10,'T17.490D ','Other foreign object in trachea causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161744,10,'T17.490A ','Other foreign object in trachea causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161743,10,'T17.428S ','Food in trachea causing other injury, sequela','Y','0000-00-00 00:00:00'),(161742,10,'T17.428D ','Food in trachea causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161741,10,'T17.428A ','Food in trachea causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161740,10,'T17.420S ','Food in trachea causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161739,10,'T17.420D ','Food in trachea causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161738,10,'T17.420A ','Food in trachea causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161737,10,'T17.418S ','Gastric contents in trachea causing other injury, sequela','Y','0000-00-00 00:00:00'),(161736,10,'T17.418D ','Gastric contents in trachea causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161735,10,'T17.418A ','Gastric contents in trachea causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161734,10,'T17.410S ','Gastric contents in trachea causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161733,10,'T17.410D ','Gastric contents in trachea causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161732,10,'T17.410A ','Gastric contents in trachea causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161731,10,'T17.408S ','Unspecified foreign body in trachea causing other injury, sequela','Y','0000-00-00 00:00:00'),(161730,10,'T17.408D ','Unspecified foreign body in trachea causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161729,10,'T17.408A ','Unspecified foreign body in trachea causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161728,10,'T17.400S ','Unspecified foreign body in trachea causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161727,10,'T17.400D ','Unspecified foreign body in trachea causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161726,10,'T17.400A ','Unspecified foreign body in trachea causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161725,10,'T17.398S ','Other foreign object in larynx causing other injury, sequela','Y','0000-00-00 00:00:00'),(161724,10,'T17.398D ','Other foreign object in larynx causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161723,10,'T17.398A ','Other foreign object in larynx causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161722,10,'T17.390S ','Other foreign object in larynx causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161721,10,'T17.390D ','Other foreign object in larynx causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161720,10,'T17.390A ','Other foreign object in larynx causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161719,10,'T17.328S ','Food in larynx causing other injury, sequela','Y','0000-00-00 00:00:00'),(161718,10,'T17.328D ','Food in larynx causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161717,10,'T17.328A ','Food in larynx causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161716,10,'T17.320S ','Food in larynx causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161715,10,'T17.320D ','Food in larynx causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161714,10,'T17.320A ','Food in larynx causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161713,10,'T17.318S ','Gastric contents in larynx causing other injury, sequela','Y','0000-00-00 00:00:00'),(161712,10,'T17.318D ','Gastric contents in larynx causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161711,10,'T17.318A ','Gastric contents in larynx causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161710,10,'T17.310S ','Gastric contents in larynx causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161709,10,'T17.310D ','Gastric contents in larynx causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161708,10,'T17.310A ','Gastric contents in larynx causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161707,10,'T17.308S ','Unspecified foreign body in larynx causing other injury, sequela','Y','0000-00-00 00:00:00'),(161706,10,'T17.308D ','Unspecified foreign body in larynx causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161705,10,'T17.308A ','Unspecified foreign body in larynx causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161704,10,'T17.300S ','Unspecified foreign body in larynx causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161703,10,'T17.300D ','Unspecified foreign body in larynx causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161702,10,'T17.300A ','Unspecified foreign body in larynx causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161701,10,'T17.298S ','Other foreign object in pharynx causing other injury, sequela','Y','0000-00-00 00:00:00'),(161700,10,'T17.298D ','Other foreign object in pharynx causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161699,10,'T17.298A ','Other foreign object in pharynx causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161698,10,'T17.290S ','Other foreign object in pharynx causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161697,10,'T17.290D ','Other foreign object in pharynx causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161696,10,'T17.290A ','Other foreign object in pharynx causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161695,10,'T17.228S ','Food in pharynx causing other injury, sequela','Y','0000-00-00 00:00:00'),(161694,10,'T17.228D ','Food in pharynx causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161693,10,'T17.228A ','Food in pharynx causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161692,10,'T17.220S ','Food in pharynx causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161691,10,'T17.220D ','Food in pharynx causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161690,10,'T17.220A ','Food in pharynx causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161689,10,'T17.218S ','Gastric contents in pharynx causing other injury, sequela','Y','0000-00-00 00:00:00'),(161688,10,'T17.218D ','Gastric contents in pharynx causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161687,10,'T17.218A ','Gastric contents in pharynx causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161686,10,'T17.210S ','Gastric contents in pharynx causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161685,10,'T17.210D ','Gastric contents in pharynx causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161684,10,'T17.210A ','Gastric contents in pharynx causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161683,10,'T17.208S ','Unspecified foreign body in pharynx causing other injury, sequela','Y','0000-00-00 00:00:00'),(161682,10,'T17.208D ','Unspecified foreign body in pharynx causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(161681,10,'T17.208A ','Unspecified foreign body in pharynx causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(161680,10,'T17.200S ','Unspecified foreign body in pharynx causing asphyxiation, sequela','Y','0000-00-00 00:00:00'),(161679,10,'T17.200D ','Unspecified foreign body in pharynx causing asphyxiation, subsequent encounter','Y','0000-00-00 00:00:00'),(161677,10,'T17.1XXS ','Foreign body in nostril, sequela','Y','0000-00-00 00:00:00'),(161678,10,'T17.200A ','Unspecified foreign body in pharynx causing asphyxiation, initial encounter','Y','0000-00-00 00:00:00'),(161676,10,'T17.1XXD ','Foreign body in nostril, subsequent encounter','Y','0000-00-00 00:00:00'),(161675,10,'T17.1XXA ','Foreign body in nostril, initial encounter','Y','0000-00-00 00:00:00'),(161674,10,'T17.0XXS ','Foreign body in nasal sinus, sequela','Y','0000-00-00 00:00:00'),(161673,10,'T17.0XXD ','Foreign body in nasal sinus, subsequent encounter','Y','0000-00-00 00:00:00'),(161672,10,'T17.0XXA ','Foreign body in nasal sinus, initial encounter','Y','0000-00-00 00:00:00'),(161671,10,'T16.9XXS ','Foreign body in ear, unspecified ear, sequela','Y','0000-00-00 00:00:00'),(161670,10,'T16.9XXD ','Foreign body in ear, unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(161669,10,'T16.9XXA ','Foreign body in ear, unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(161667,10,'T16.2XXD ','Foreign body in left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(161668,10,'T16.2XXS ','Foreign body in left ear, sequela','Y','0000-00-00 00:00:00'),(161665,10,'T16.1XXS ','Foreign body in right ear, sequela','Y','0000-00-00 00:00:00'),(161666,10,'T16.2XXA ','Foreign body in left ear, initial encounter','Y','0000-00-00 00:00:00'),(161664,10,'T16.1XXD ','Foreign body in right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(161662,10,'T15.92XS ','Foreign body on external eye, part unspecified, left eye, sequela','Y','0000-00-00 00:00:00'),(161663,10,'T16.1XXA ','Foreign body in right ear, initial encounter','Y','0000-00-00 00:00:00'),(161661,10,'T15.92XD ','Foreign body on external eye, part unspecified, left eye, subsequent encounter','Y','0000-00-00 00:00:00'),(161660,10,'T15.92XA ','Foreign body on external eye, part unspecified, left eye, initial encounter','Y','0000-00-00 00:00:00'),(161659,10,'T15.91XS ','Foreign body on external eye, part unspecified, right eye, sequela','Y','0000-00-00 00:00:00'),(161657,10,'T15.91XA ','Foreign body on external eye, part unspecified, right eye, initial encounter','Y','0000-00-00 00:00:00'),(161658,10,'T15.91XD ','Foreign body on external eye, part unspecified, right eye, subsequent encounter','Y','0000-00-00 00:00:00'),(161656,10,'T15.90XS ','Foreign body on external eye, part unspecified, unspecified eye, sequela','Y','0000-00-00 00:00:00'),(161655,10,'T15.90XD ','Foreign body on external eye, part unspecified, unspecified eye, subsequent encounter','Y','0000-00-00 00:00:00'),(161654,10,'T15.90XA ','Foreign body on external eye, part unspecified, unspecified eye, initial encounter','Y','0000-00-00 00:00:00'),(161653,10,'T15.82XS ','Foreign body in other and multiple parts of external eye, left eye, sequela','Y','0000-00-00 00:00:00'),(161652,10,'T15.82XD ','Foreign body in other and multiple parts of external eye, left eye, subsequent encounter','Y','0000-00-00 00:00:00'),(161650,10,'T15.81XS ','Foreign body in other and multiple parts of external eye, right eye, sequela','Y','0000-00-00 00:00:00'),(161651,10,'T15.82XA ','Foreign body in other and multiple parts of external eye, left eye, initial encounter','Y','0000-00-00 00:00:00'),(161649,10,'T15.81XD ','Foreign body in other and multiple parts of external eye, right eye, subsequent encounter','Y','0000-00-00 00:00:00'),(161648,10,'T15.81XA ','Foreign body in other and multiple parts of external eye, right eye, initial encounter','Y','0000-00-00 00:00:00'),(161647,10,'T15.80XS ','Foreign body in other and multiple parts of external eye, unspecified eye, sequela','Y','0000-00-00 00:00:00'),(161646,10,'T15.80XD ','Foreign body in other and multiple parts of external eye, unspecified eye, subsequent encounter','Y','0000-00-00 00:00:00'),(161645,10,'T15.80XA ','Foreign body in other and multiple parts of external eye, unspecified eye, initial encounter','Y','0000-00-00 00:00:00'),(161643,10,'T15.12XD ','Foreign body in conjunctival sac, left eye, subsequent encounter','Y','0000-00-00 00:00:00'),(161644,10,'T15.12XS ','Foreign body in conjunctival sac, left eye, sequela','Y','0000-00-00 00:00:00'),(161642,10,'T15.12XA ','Foreign body in conjunctival sac, left eye, initial encounter','Y','0000-00-00 00:00:00'),(161640,10,'T15.11XD ','Foreign body in conjunctival sac, right eye, subsequent encounter','Y','0000-00-00 00:00:00'),(161641,10,'T15.11XS ','Foreign body in conjunctival sac, right eye, sequela','Y','0000-00-00 00:00:00'),(161639,10,'T15.11XA ','Foreign body in conjunctival sac, right eye, initial encounter','Y','0000-00-00 00:00:00'),(161638,10,'T15.10XS ','Foreign body in conjunctival sac, unspecified eye, sequela','Y','0000-00-00 00:00:00'),(161636,10,'T15.10XA ','Foreign body in conjunctival sac, unspecified eye, initial encounter','Y','0000-00-00 00:00:00'),(161637,10,'T15.10XD ','Foreign body in conjunctival sac, unspecified eye, subsequent encounter','Y','0000-00-00 00:00:00'),(161635,10,'T15.02XS ','Foreign body in cornea, left eye, sequela','Y','0000-00-00 00:00:00'),(161633,10,'T15.02XA ','Foreign body in cornea, left eye, initial encounter','Y','0000-00-00 00:00:00'),(161634,10,'T15.02XD ','Foreign body in cornea, left eye, subsequent encounter','Y','0000-00-00 00:00:00'),(161632,10,'T15.01XS ','Foreign body in cornea, right eye, sequela','Y','0000-00-00 00:00:00'),(161630,10,'T15.01XA ','Foreign body in cornea, right eye, initial encounter','Y','0000-00-00 00:00:00'),(161631,10,'T15.01XD ','Foreign body in cornea, right eye, subsequent encounter','Y','0000-00-00 00:00:00'),(161628,10,'T15.00XD ','Foreign body in cornea, unspecified eye, subsequent encounter','Y','0000-00-00 00:00:00'),(161629,10,'T15.00XS ','Foreign body in cornea, unspecified eye, sequela','Y','0000-00-00 00:00:00'),(161626,10,'T14.91XS ','Suicide attempt, sequela','Y','0000-00-00 00:00:00'),(161627,10,'T15.00XA ','Foreign body in cornea, unspecified eye, initial encounter','Y','0000-00-00 00:00:00'),(161624,10,'T14.91XA ','Suicide attempt, initial encounter','Y','0000-00-00 00:00:00'),(161625,10,'T14.91XD ','Suicide attempt, subsequent encounter','Y','0000-00-00 00:00:00'),(161622,10,'T14.90XD ','Injury, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(161623,10,'T14.90XS ','Injury, unspecified, sequela','Y','0000-00-00 00:00:00'),(161620,10,'T14.8XXS ','Other injury of unspecified body region, sequela','Y','0000-00-00 00:00:00'),(161621,10,'T14.90XA ','Injury, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(161618,10,'T14.8XXA ','Other injury of unspecified body region, initial encounter','Y','0000-00-00 00:00:00'),(161619,10,'T14.8XXD ','Other injury of unspecified body region, subsequent encounter','Y','0000-00-00 00:00:00'),(161616,10,'T07.XXXD ','Unspecified multiple injuries, subsequent encounter','Y','0000-00-00 00:00:00'),(161617,10,'T07.XXXS ','Unspecified multiple injuries, sequela','Y','0000-00-00 00:00:00'),(161614,10,'S99.929S ','Unspecified injury of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(161615,10,'T07.XXXA ','Unspecified multiple injuries, initial encounter','Y','0000-00-00 00:00:00'),(161612,10,'S99.929A ','Unspecified injury of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(161613,10,'S99.929D ','Unspecified injury of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161610,10,'S99.922D ','Unspecified injury of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161611,10,'S99.922S ','Unspecified injury of left foot, sequela','Y','0000-00-00 00:00:00'),(161608,10,'S99.921S ','Unspecified injury of right foot, sequela','Y','0000-00-00 00:00:00'),(161609,10,'S99.922A ','Unspecified injury of left foot, initial encounter','Y','0000-00-00 00:00:00'),(161607,10,'S99.921D ','Unspecified injury of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161605,10,'S99.919S ','Unspecified injury of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(161606,10,'S99.921A ','Unspecified injury of right foot, initial encounter','Y','0000-00-00 00:00:00'),(161604,10,'S99.919D ','Unspecified injury of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(161603,10,'S99.919A ','Unspecified injury of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(161601,10,'S99.912D ','Unspecified injury of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(161602,10,'S99.912S ','Unspecified injury of left ankle, sequela','Y','0000-00-00 00:00:00'),(161600,10,'S99.912A ','Unspecified injury of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(161598,10,'S99.911D ','Unspecified injury of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(161599,10,'S99.911S ','Unspecified injury of right ankle, sequela','Y','0000-00-00 00:00:00'),(161597,10,'S99.911A ','Unspecified injury of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(161596,10,'S99.829S ','Other specified injuries of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(161595,10,'S99.829D ','Other specified injuries of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161593,10,'S99.822S ','Other specified injuries of left foot, sequela','Y','0000-00-00 00:00:00'),(161594,10,'S99.829A ','Other specified injuries of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(161592,10,'S99.822D ','Other specified injuries of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161590,10,'S99.821S ','Other specified injuries of right foot, sequela','Y','0000-00-00 00:00:00'),(161591,10,'S99.822A ','Other specified injuries of left foot, initial encounter','Y','0000-00-00 00:00:00'),(161589,10,'S99.821D ','Other specified injuries of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161588,10,'S99.821A ','Other specified injuries of right foot, initial encounter','Y','0000-00-00 00:00:00'),(161587,10,'S99.819S ','Other specified injuries of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(161586,10,'S99.819D ','Other specified injuries of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(161585,10,'S99.819A ','Other specified injuries of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(161584,10,'S99.812S ','Other specified injuries of left ankle, sequela','Y','0000-00-00 00:00:00'),(161583,10,'S99.812D ','Other specified injuries of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(161582,10,'S99.812A ','Other specified injuries of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(161581,10,'S99.811S ','Other specified injuries of right ankle, sequela','Y','0000-00-00 00:00:00'),(161580,10,'S99.811D ','Other specified injuries of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(161579,10,'S99.811A ','Other specified injuries of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(161578,10,'S99.299S ','Other physeal fracture of phalanx of unspecified toe, sequela','Y','0000-00-00 00:00:00'),(161577,10,'S99.299P ','Other physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161576,10,'S99.299K ','Other physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161575,10,'S99.299G ','Other physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161574,10,'S99.299D ','Other physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161573,10,'S99.299B ','Other physeal fracture of phalanx of unspecified toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161572,10,'S99.299A ','Other physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161571,10,'S99.292S ','Other physeal fracture of phalanx of left toe, sequela','Y','0000-00-00 00:00:00'),(161570,10,'S99.292P ','Other physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161569,10,'S99.292K ','Other physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161568,10,'S99.292G ','Other physeal fracture of phalanx of left toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161567,10,'S99.292D ','Other physeal fracture of phalanx of left toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161566,10,'S99.292B ','Other physeal fracture of phalanx of left toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161565,10,'S99.292A ','Other physeal fracture of phalanx of left toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161564,10,'S99.291S ','Other physeal fracture of phalanx of right toe, sequela','Y','0000-00-00 00:00:00'),(161563,10,'S99.291P ','Other physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161562,10,'S99.291K ','Other physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161561,10,'S99.291G ','Other physeal fracture of phalanx of right toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161560,10,'S99.291D ','Other physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161559,10,'S99.291B ','Other physeal fracture of phalanx of right toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161558,10,'S99.291A ','Other physeal fracture of phalanx of right toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161557,10,'S99.249S ','Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, sequela','Y','0000-00-00 00:00:00'),(161556,10,'S99.249P ','Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161555,10,'S99.249K ','Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161554,10,'S99.249G ','Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161553,10,'S99.249D ','Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161552,10,'S99.249B ','Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161550,10,'S99.242S ','Salter-Harris Type IV physeal fracture of phalanx of left toe, sequela','Y','0000-00-00 00:00:00'),(161551,10,'S99.249A ','Salter-Harris Type IV physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161549,10,'S99.242P ','Salter-Harris Type IV physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161548,10,'S99.242K ','Salter-Harris Type IV physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161547,10,'S99.242G ','Salter-Harris Type IV physeal fracture of phalanx of left toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161546,10,'S99.242D ','Salter-Harris Type IV physeal fracture of phalanx of left toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161545,10,'S99.242B ','Salter-Harris Type IV physeal fracture of phalanx of left toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161543,10,'S99.241S ','Salter-Harris Type IV physeal fracture of phalanx of right toe, sequela','Y','0000-00-00 00:00:00'),(161544,10,'S99.242A ','Salter-Harris Type IV physeal fracture of phalanx of left toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161542,10,'S99.241P ','Salter-Harris Type IV physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161541,10,'S99.241K ','Salter-Harris Type IV physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161540,10,'S99.241G ','Salter-Harris Type IV physeal fracture of phalanx of right toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161539,10,'S99.241D ','Salter-Harris Type IV physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161538,10,'S99.241B ','Salter-Harris Type IV physeal fracture of phalanx of right toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161537,10,'S99.241A ','Salter-Harris Type IV physeal fracture of phalanx of right toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161536,10,'S99.239S ','Salter-Harris Type III physeal fracture of phalanx of unspecified toe, sequela','Y','0000-00-00 00:00:00'),(161535,10,'S99.239P ','Salter-Harris Type III physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161534,10,'S99.239K ','Salter-Harris Type III physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161533,10,'S99.239G ','Salter-Harris Type III physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161532,10,'S99.239D ','Salter-Harris Type III physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161531,10,'S99.239B ','Salter-Harris Type III physeal fracture of phalanx of unspecified toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161529,10,'S99.232S ','Salter-Harris Type III physeal fracture of phalanx of left toe, sequela','Y','0000-00-00 00:00:00'),(161530,10,'S99.239A ','Salter-Harris Type III physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161528,10,'S99.232P ','Salter-Harris Type III physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161527,10,'S99.232K ','Salter-Harris Type III physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161526,10,'S99.232G ','Salter-Harris Type III physeal fracture of phalanx of left toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161525,10,'S99.232D ','Salter-Harris Type III physeal fracture of phalanx of left toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161523,10,'S99.232A ','Salter-Harris Type III physeal fracture of phalanx of left toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161524,10,'S99.232B ','Salter-Harris Type III physeal fracture of phalanx of left toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161522,10,'S99.231S ','Salter-Harris Type III physeal fracture of phalanx of right toe, sequela','Y','0000-00-00 00:00:00'),(161521,10,'S99.231P ','Salter-Harris Type III physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161520,10,'S99.231K ','Salter-Harris Type III physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161519,10,'S99.231G ','Salter-Harris Type III physeal fracture of phalanx of right toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161518,10,'S99.231D ','Salter-Harris Type III physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161517,10,'S99.231B ','Salter-Harris Type III physeal fracture of phalanx of right toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161516,10,'S99.231A ','Salter-Harris Type III physeal fracture of phalanx of right toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161515,10,'S99.229S ','Salter-Harris Type II physeal fracture of phalanx of unspecified toe, sequela','Y','0000-00-00 00:00:00'),(161514,10,'S99.229P ','Salter-Harris Type II physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161513,10,'S99.229K ','Salter-Harris Type II physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161512,10,'S99.229G ','Salter-Harris Type II physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161511,10,'S99.229D ','Salter-Harris Type II physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161510,10,'S99.229B ','Salter-Harris Type II physeal fracture of phalanx of unspecified toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161509,10,'S99.229A ','Salter-Harris Type II physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161508,10,'S99.222S ','Salter-Harris Type II physeal fracture of phalanx of left toe, sequela','Y','0000-00-00 00:00:00'),(161507,10,'S99.222P ','Salter-Harris Type II physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161506,10,'S99.222K ','Salter-Harris Type II physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161505,10,'S99.222G ','Salter-Harris Type II physeal fracture of phalanx of left toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161504,10,'S99.222D ','Salter-Harris Type II physeal fracture of phalanx of left toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161503,10,'S99.222B ','Salter-Harris Type II physeal fracture of phalanx of left toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161502,10,'S99.222A ','Salter-Harris Type II physeal fracture of phalanx of left toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161501,10,'S99.221S ','Salter-Harris Type II physeal fracture of phalanx of right toe, sequela','Y','0000-00-00 00:00:00'),(161500,10,'S99.221P ','Salter-Harris Type II physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161499,10,'S99.221K ','Salter-Harris Type II physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161498,10,'S99.221G ','Salter-Harris Type II physeal fracture of phalanx of right toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161497,10,'S99.221D ','Salter-Harris Type II physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161496,10,'S99.221B ','Salter-Harris Type II physeal fracture of phalanx of right toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161495,10,'S99.221A ','Salter-Harris Type II physeal fracture of phalanx of right toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161494,10,'S99.219S ','Salter-Harris Type I physeal fracture of phalanx of unspecified toe, sequela','Y','0000-00-00 00:00:00'),(161493,10,'S99.219P ','Salter-Harris Type I physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161492,10,'S99.219K ','Salter-Harris Type I physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161491,10,'S99.219G ','Salter-Harris Type I physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161490,10,'S99.219D ','Salter-Harris Type I physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161489,10,'S99.219B ','Salter-Harris Type I physeal fracture of phalanx of unspecified toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161488,10,'S99.219A ','Salter-Harris Type I physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161487,10,'S99.212S ','Salter-Harris Type I physeal fracture of phalanx of left toe, sequela','Y','0000-00-00 00:00:00'),(161486,10,'S99.212P ','Salter-Harris Type I physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161485,10,'S99.212K ','Salter-Harris Type I physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161484,10,'S99.212G ','Salter-Harris Type I physeal fracture of phalanx of left toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161483,10,'S99.212D ','Salter-Harris Type I physeal fracture of phalanx of left toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161482,10,'S99.212B ','Salter-Harris Type I physeal fracture of phalanx of left toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161481,10,'S99.212A ','Salter-Harris Type I physeal fracture of phalanx of left toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161480,10,'S99.211S ','Salter-Harris Type I physeal fracture of phalanx of right toe, sequela','Y','0000-00-00 00:00:00'),(161479,10,'S99.211P ','Salter-Harris Type I physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161478,10,'S99.211K ','Salter-Harris Type I physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161477,10,'S99.211G ','Salter-Harris Type I physeal fracture of phalanx of right toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161476,10,'S99.211D ','Salter-Harris Type I physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161475,10,'S99.211B ','Salter-Harris Type I physeal fracture of phalanx of right toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161474,10,'S99.211A ','Salter-Harris Type I physeal fracture of phalanx of right toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161473,10,'S99.209S ','Unspecified physeal fracture of phalanx of unspecified toe, sequela','Y','0000-00-00 00:00:00'),(161472,10,'S99.209P ','Unspecified physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161471,10,'S99.209K ','Unspecified physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161470,10,'S99.209G ','Unspecified physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161469,10,'S99.209D ','Unspecified physeal fracture of phalanx of unspecified toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161468,10,'S99.209B ','Unspecified physeal fracture of phalanx of unspecified toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161467,10,'S99.209A ','Unspecified physeal fracture of phalanx of unspecified toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161466,10,'S99.202S ','Unspecified physeal fracture of phalanx of left toe, sequela','Y','0000-00-00 00:00:00'),(161465,10,'S99.202P ','Unspecified physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161464,10,'S99.202K ','Unspecified physeal fracture of phalanx of left toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161463,10,'S99.202G ','Unspecified physeal fracture of phalanx of left toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161461,10,'S99.202B ','Unspecified physeal fracture of phalanx of left toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161462,10,'S99.202D ','Unspecified physeal fracture of phalanx of left toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161460,10,'S99.202A ','Unspecified physeal fracture of phalanx of left toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161459,10,'S99.201S ','Unspecified physeal fracture of phalanx of right toe, sequela','Y','0000-00-00 00:00:00'),(161457,10,'S99.201K ','Unspecified physeal fracture of phalanx of right toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161458,10,'S99.201P ','Unspecified physeal fracture of phalanx of right toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161456,10,'S99.201G ','Unspecified physeal fracture of phalanx of right toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161455,10,'S99.201D ','Unspecified physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161454,10,'S99.201B ','Unspecified physeal fracture of phalanx of right toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161453,10,'S99.201A ','Unspecified physeal fracture of phalanx of right toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161452,10,'S99.199S ','Other physeal fracture of unspecified metatarsal, sequela','Y','0000-00-00 00:00:00'),(161451,10,'S99.199P ','Other physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161450,10,'S99.199K ','Other physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161449,10,'S99.199G ','Other physeal fracture of unspecified metatarsal, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161448,10,'S99.199D ','Other physeal fracture of unspecified metatarsal, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161447,10,'S99.199B ','Other physeal fracture of unspecified metatarsal, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161446,10,'S99.199A ','Other physeal fracture of unspecified metatarsal, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161445,10,'S99.192S ','Other physeal fracture of left metatarsal, sequela','Y','0000-00-00 00:00:00'),(161444,10,'S99.192P ','Other physeal fracture of left metatarsal, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161443,10,'S99.192K ','Other physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161442,10,'S99.192G ','Other physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161441,10,'S99.192D ','Other physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161440,10,'S99.192B ','Other physeal fracture of left metatarsal, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161439,10,'S99.192A ','Other physeal fracture of left metatarsal, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161438,10,'S99.191S ','Other physeal fracture of right metatarsal, sequela','Y','0000-00-00 00:00:00'),(161437,10,'S99.191P ','Other physeal fracture of right metatarsal, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161436,10,'S99.191K ','Other physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161435,10,'S99.191G ','Other physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161434,10,'S99.191D ','Other physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161433,10,'S99.191B ','Other physeal fracture of right metatarsal, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161432,10,'S99.191A ','Other physeal fracture of right metatarsal, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161431,10,'S99.149S ','Salter-Harris Type IV physeal fracture of unspecified metatarsal, sequela','Y','0000-00-00 00:00:00'),(161430,10,'S99.149P ','Salter-Harris Type IV physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161429,10,'S99.149K ','Salter-Harris Type IV physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161428,10,'S99.149G ','Salter-Harris Type IV physeal fracture of unspecified metatarsal, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161427,10,'S99.149D ','Salter-Harris Type IV physeal fracture of unspecified metatarsal, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161426,10,'S99.149B ','Salter-Harris Type IV physeal fracture of unspecified metatarsal, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161425,10,'S99.149A ','Salter-Harris Type IV physeal fracture of unspecified metatarsal, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161424,10,'S99.142S ','Salter-Harris Type IV physeal fracture of left metatarsal, sequela','Y','0000-00-00 00:00:00'),(161423,10,'S99.142P ','Salter-Harris Type IV physeal fracture of left metatarsal, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161422,10,'S99.142K ','Salter-Harris Type IV physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161421,10,'S99.142G ','Salter-Harris Type IV physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161420,10,'S99.142D ','Salter-Harris Type IV physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161419,10,'S99.142B ','Salter-Harris Type IV physeal fracture of left metatarsal, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161418,10,'S99.142A ','Salter-Harris Type IV physeal fracture of left metatarsal, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161417,10,'S99.141S ','Salter-Harris Type IV physeal fracture of right metatarsal, sequela','Y','0000-00-00 00:00:00'),(161416,10,'S99.141P ','Salter-Harris Type IV physeal fracture of right metatarsal, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161415,10,'S99.141K ','Salter-Harris Type IV physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161414,10,'S99.141G ','Salter-Harris Type IV physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161413,10,'S99.141D ','Salter-Harris Type IV physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161412,10,'S99.141B ','Salter-Harris Type IV physeal fracture of right metatarsal, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161411,10,'S99.141A ','Salter-Harris Type IV physeal fracture of right metatarsal, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161410,10,'S99.139S ','Salter-Harris Type III physeal fracture of unspecified metatarsal, sequela','Y','0000-00-00 00:00:00'),(161409,10,'S99.139P ','Salter-Harris Type III physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161408,10,'S99.139K ','Salter-Harris Type III physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161407,10,'S99.139G ','Salter-Harris Type III physeal fracture of unspecified metatarsal, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161406,10,'S99.139D ','Salter-Harris Type III physeal fracture of unspecified metatarsal, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161405,10,'S99.139B ','Salter-Harris Type III physeal fracture of unspecified metatarsal, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161404,10,'S99.139A ','Salter-Harris Type III physeal fracture of unspecified metatarsal, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161403,10,'S99.132S ','Salter-Harris Type III physeal fracture of left metatarsal, sequela','Y','0000-00-00 00:00:00'),(161402,10,'S99.132P ','Salter-Harris Type III physeal fracture of left metatarsal, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161401,10,'S99.132K ','Salter-Harris Type III physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161400,10,'S99.132G ','Salter-Harris Type III physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161399,10,'S99.132D ','Salter-Harris Type III physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161398,10,'S99.132B ','Salter-Harris Type III physeal fracture of left metatarsal, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161397,10,'S99.132A ','Salter-Harris Type III physeal fracture of left metatarsal, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161396,10,'S99.131S ','Salter-Harris Type III physeal fracture of right metatarsal, sequela','Y','0000-00-00 00:00:00'),(161394,10,'S99.131K ','Salter-Harris Type III physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161395,10,'S99.131P ','Salter-Harris Type III physeal fracture of right metatarsal, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161393,10,'S99.131G ','Salter-Harris Type III physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161392,10,'S99.131D ','Salter-Harris Type III physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161391,10,'S99.131B ','Salter-Harris Type III physeal fracture of right metatarsal, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161390,10,'S99.131A ','Salter-Harris Type III physeal fracture of right metatarsal, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161389,10,'S99.129S ','Salter-Harris Type II physeal fracture of unspecified metatarsal, sequela','Y','0000-00-00 00:00:00'),(161388,10,'S99.129P ','Salter-Harris Type II physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161387,10,'S99.129K ','Salter-Harris Type II physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161386,10,'S99.129G ','Salter-Harris Type II physeal fracture of unspecified metatarsal, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161385,10,'S99.129D ','Salter-Harris Type II physeal fracture of unspecified metatarsal, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161384,10,'S99.129B ','Salter-Harris Type II physeal fracture of unspecified metatarsal, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161383,10,'S99.129A ','Salter-Harris Type II physeal fracture of unspecified metatarsal, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161382,10,'S99.122S ','Salter-Harris Type II physeal fracture of left metatarsal, sequela','Y','0000-00-00 00:00:00'),(161381,10,'S99.122P ','Salter-Harris Type II physeal fracture of left metatarsal, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161380,10,'S99.122K ','Salter-Harris Type II physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161379,10,'S99.122G ','Salter-Harris Type II physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161378,10,'S99.122D ','Salter-Harris Type II physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161377,10,'S99.122B ','Salter-Harris Type II physeal fracture of left metatarsal, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161376,10,'S99.122A ','Salter-Harris Type II physeal fracture of left metatarsal, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161375,10,'S99.121S ','Salter-Harris Type II physeal fracture of right metatarsal, sequela','Y','0000-00-00 00:00:00'),(161374,10,'S99.121P ','Salter-Harris Type II physeal fracture of right metatarsal, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161373,10,'S99.121K ','Salter-Harris Type II physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161372,10,'S99.121G ','Salter-Harris Type II physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161371,10,'S99.121D ','Salter-Harris Type II physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161370,10,'S99.121B ','Salter-Harris Type II physeal fracture of right metatarsal, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161369,10,'S99.121A ','Salter-Harris Type II physeal fracture of right metatarsal, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161368,10,'S99.119S ','Salter-Harris Type I physeal fracture of unspecified metatarsal, sequela','Y','0000-00-00 00:00:00'),(161367,10,'S99.119P ','Salter-Harris Type I physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161366,10,'S99.119K ','Salter-Harris Type I physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161365,10,'S99.119G ','Salter-Harris Type I physeal fracture of unspecified metatarsal, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161364,10,'S99.119D ','Salter-Harris Type I physeal fracture of unspecified metatarsal, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161363,10,'S99.119B ','Salter-Harris Type I physeal fracture of unspecified metatarsal, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161361,10,'S99.112S ','Salter-Harris Type I physeal fracture of left metatarsal, sequela','Y','0000-00-00 00:00:00'),(161362,10,'S99.119A ','Salter-Harris Type I physeal fracture of unspecified metatarsal, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161360,10,'S99.112P ','Salter-Harris Type I physeal fracture of left metatarsal, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161359,10,'S99.112K ','Salter-Harris Type I physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161358,10,'S99.112G ','Salter-Harris Type I physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161357,10,'S99.112D ','Salter-Harris Type I physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161356,10,'S99.112B ','Salter-Harris Type I physeal fracture of left metatarsal, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161355,10,'S99.112A ','Salter-Harris Type I physeal fracture of left metatarsal, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161354,10,'S99.111S ','Salter-Harris Type I physeal fracture of right metatarsal, sequela','Y','0000-00-00 00:00:00'),(161353,10,'S99.111P ','Salter-Harris Type I physeal fracture of right metatarsal, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161352,10,'S99.111K ','Salter-Harris Type I physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161351,10,'S99.111G ','Salter-Harris Type I physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161350,10,'S99.111D ','Salter-Harris Type I physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161349,10,'S99.111B ','Salter-Harris Type I physeal fracture of right metatarsal, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161347,10,'S99.109S ','Unspecified physeal fracture of unspecified metatarsal, sequela','Y','0000-00-00 00:00:00'),(161348,10,'S99.111A ','Salter-Harris Type I physeal fracture of right metatarsal, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161346,10,'S99.109P ','Unspecified physeal fracture of unspecified metatarsal, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161345,10,'S99.109K ','Unspecified physeal fracture of unspecified metatarsal, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161344,10,'S99.109G ','Unspecified physeal fracture of unspecified metatarsal, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161343,10,'S99.109D ','Unspecified physeal fracture of unspecified metatarsal, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161342,10,'S99.109B ','Unspecified physeal fracture of unspecified metatarsal, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161340,10,'S99.102S ','Unspecified physeal fracture of left metatarsal, sequela','Y','0000-00-00 00:00:00'),(161341,10,'S99.109A ','Unspecified physeal fracture of unspecified metatarsal, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161339,10,'S99.102P ','Unspecified physeal fracture of left metatarsal, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161338,10,'S99.102K ','Unspecified physeal fracture of left metatarsal, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161337,10,'S99.102G ','Unspecified physeal fracture of left metatarsal, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161336,10,'S99.102D ','Unspecified physeal fracture of left metatarsal, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161335,10,'S99.102B ','Unspecified physeal fracture of left metatarsal, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161333,10,'S99.101S ','Unspecified physeal fracture of right metatarsal, sequela','Y','0000-00-00 00:00:00'),(161334,10,'S99.102A ','Unspecified physeal fracture of left metatarsal, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161332,10,'S99.101P ','Unspecified physeal fracture of right metatarsal, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161331,10,'S99.101K ','Unspecified physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161330,10,'S99.101G ','Unspecified physeal fracture of right metatarsal, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161329,10,'S99.101D ','Unspecified physeal fracture of right metatarsal, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161327,10,'S99.101A ','Unspecified physeal fracture of right metatarsal, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161328,10,'S99.101B ','Unspecified physeal fracture of right metatarsal, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161326,10,'S99.099S ','Other physeal fracture of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(161325,10,'S99.099P ','Other physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161324,10,'S99.099K ','Other physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161323,10,'S99.099G ','Other physeal fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161322,10,'S99.099D ','Other physeal fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161321,10,'S99.099B ','Other physeal fracture of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161320,10,'S99.099A ','Other physeal fracture of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161319,10,'S99.092S ','Other physeal fracture of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(161318,10,'S99.092P ','Other physeal fracture of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161317,10,'S99.092K ','Other physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161316,10,'S99.092G ','Other physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161315,10,'S99.092D ','Other physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161314,10,'S99.092B ','Other physeal fracture of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161313,10,'S99.092A ','Other physeal fracture of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161312,10,'S99.091S ','Other physeal fracture of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(161311,10,'S99.091P ','Other physeal fracture of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161310,10,'S99.091K ','Other physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161309,10,'S99.091G ','Other physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161308,10,'S99.091D ','Other physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161307,10,'S99.091B ','Other physeal fracture of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161306,10,'S99.091A ','Other physeal fracture of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161305,10,'S99.049S ','Salter-Harris Type IV physeal fracture of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(161304,10,'S99.049P ','Salter-Harris Type IV physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161303,10,'S99.049K ','Salter-Harris Type IV physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161302,10,'S99.049G ','Salter-Harris Type IV physeal fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161301,10,'S99.049D ','Salter-Harris Type IV physeal fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161300,10,'S99.049B ','Salter-Harris Type IV physeal fracture of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161299,10,'S99.049A ','Salter-Harris Type IV physeal fracture of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161298,10,'S99.042S ','Salter-Harris Type IV physeal fracture of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(161297,10,'S99.042P ','Salter-Harris Type IV physeal fracture of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161296,10,'S99.042K ','Salter-Harris Type IV physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161295,10,'S99.042G ','Salter-Harris Type IV physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161294,10,'S99.042D ','Salter-Harris Type IV physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161293,10,'S99.042B ','Salter-Harris Type IV physeal fracture of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161292,10,'S99.042A ','Salter-Harris Type IV physeal fracture of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161291,10,'S99.041S ','Salter-Harris Type IV physeal fracture of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(161290,10,'S99.041P ','Salter-Harris Type IV physeal fracture of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161289,10,'S99.041K ','Salter-Harris Type IV physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161288,10,'S99.041G ','Salter-Harris Type IV physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161287,10,'S99.041D ','Salter-Harris Type IV physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161286,10,'S99.041B ','Salter-Harris Type IV physeal fracture of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161285,10,'S99.041A ','Salter-Harris Type IV physeal fracture of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161284,10,'S99.039S ','Salter-Harris Type III physeal fracture of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(161283,10,'S99.039P ','Salter-Harris Type III physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161282,10,'S99.039K ','Salter-Harris Type III physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161281,10,'S99.039G ','Salter-Harris Type III physeal fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161280,10,'S99.039D ','Salter-Harris Type III physeal fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161279,10,'S99.039B ','Salter-Harris Type III physeal fracture of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161278,10,'S99.039A ','Salter-Harris Type III physeal fracture of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161277,10,'S99.032S ','Salter-Harris Type III physeal fracture of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(161276,10,'S99.032P ','Salter-Harris Type III physeal fracture of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161275,10,'S99.032K ','Salter-Harris Type III physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161274,10,'S99.032G ','Salter-Harris Type III physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161273,10,'S99.032D ','Salter-Harris Type III physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161272,10,'S99.032B ','Salter-Harris Type III physeal fracture of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161271,10,'S99.032A ','Salter-Harris Type III physeal fracture of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161270,10,'S99.031S ','Salter-Harris Type III physeal fracture of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(161269,10,'S99.031P ','Salter-Harris Type III physeal fracture of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161268,10,'S99.031K ','Salter-Harris Type III physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161267,10,'S99.031G ','Salter-Harris Type III physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161266,10,'S99.031D ','Salter-Harris Type III physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161265,10,'S99.031B ','Salter-Harris Type III physeal fracture of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161264,10,'S99.031A ','Salter-Harris Type III physeal fracture of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161263,10,'S99.029S ','Salter-Harris Type II physeal fracture of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(161262,10,'S99.029P ','Salter-Harris Type II physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161261,10,'S99.029K ','Salter-Harris Type II physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161260,10,'S99.029G ','Salter-Harris Type II physeal fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161259,10,'S99.029D ','Salter-Harris Type II physeal fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161258,10,'S99.029B ','Salter-Harris Type II physeal fracture of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161257,10,'S99.029A ','Salter-Harris Type II physeal fracture of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161256,10,'S99.022S ','Salter-Harris Type II physeal fracture of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(161255,10,'S99.022P ','Salter-Harris Type II physeal fracture of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161254,10,'S99.022K ','Salter-Harris Type II physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161253,10,'S99.022G ','Salter-Harris Type II physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161252,10,'S99.022D ','Salter-Harris Type II physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161251,10,'S99.022B ','Salter-Harris Type II physeal fracture of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161250,10,'S99.022A ','Salter-Harris Type II physeal fracture of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161249,10,'S99.021S ','Salter-Harris Type II physeal fracture of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(161248,10,'S99.021P ','Salter-Harris Type II physeal fracture of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161247,10,'S99.021K ','Salter-Harris Type II physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161246,10,'S99.021G ','Salter-Harris Type II physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161245,10,'S99.021D ','Salter-Harris Type II physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161244,10,'S99.021B ','Salter-Harris Type II physeal fracture of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161243,10,'S99.021A ','Salter-Harris Type II physeal fracture of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161242,10,'S99.019S ','Salter-Harris Type I physeal fracture of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(161241,10,'S99.019P ','Salter-Harris Type I physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161240,10,'S99.019K ','Salter-Harris Type I physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161239,10,'S99.019G ','Salter-Harris Type I physeal fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161238,10,'S99.019D ','Salter-Harris Type I physeal fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161237,10,'S99.019B ','Salter-Harris Type I physeal fracture of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161236,10,'S99.019A ','Salter-Harris Type I physeal fracture of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161235,10,'S99.012S ','Salter-Harris Type I physeal fracture of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(161234,10,'S99.012P ','Salter-Harris Type I physeal fracture of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161233,10,'S99.012K ','Salter-Harris Type I physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161232,10,'S99.012G ','Salter-Harris Type I physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161231,10,'S99.012D ','Salter-Harris Type I physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161230,10,'S99.012B ','Salter-Harris Type I physeal fracture of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161229,10,'S99.012A ','Salter-Harris Type I physeal fracture of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161228,10,'S99.011S ','Salter-Harris Type I physeal fracture of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(161227,10,'S99.011P ','Salter-Harris Type I physeal fracture of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161226,10,'S99.011K ','Salter-Harris Type I physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161225,10,'S99.011G ','Salter-Harris Type I physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161224,10,'S99.011D ','Salter-Harris Type I physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161223,10,'S99.011B ','Salter-Harris Type I physeal fracture of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161222,10,'S99.011A ','Salter-Harris Type I physeal fracture of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161221,10,'S99.009S ','Unspecified physeal fracture of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(161220,10,'S99.009P ','Unspecified physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161219,10,'S99.009K ','Unspecified physeal fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161218,10,'S99.009G ','Unspecified physeal fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161217,10,'S99.009D ','Unspecified physeal fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161216,10,'S99.009B ','Unspecified physeal fracture of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161215,10,'S99.009A ','Unspecified physeal fracture of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161214,10,'S99.002S ','Unspecified physeal fracture of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(161213,10,'S99.002P ','Unspecified physeal fracture of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161212,10,'S99.002K ','Unspecified physeal fracture of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161211,10,'S99.002G ','Unspecified physeal fracture of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161210,10,'S99.002D ','Unspecified physeal fracture of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161209,10,'S99.002B ','Unspecified physeal fracture of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161208,10,'S99.002A ','Unspecified physeal fracture of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161207,10,'S99.001S ','Unspecified physeal fracture of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(161206,10,'S99.001P ','Unspecified physeal fracture of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(161205,10,'S99.001K ','Unspecified physeal fracture of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(161204,10,'S99.001G ','Unspecified physeal fracture of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(161203,10,'S99.001D ','Unspecified physeal fracture of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(161202,10,'S99.001B ','Unspecified physeal fracture of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(161201,10,'S99.001A ','Unspecified physeal fracture of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(161200,10,'S98.929S ','Partial traumatic amputation of unspecified foot, level unspecified, sequela','Y','0000-00-00 00:00:00'),(161199,10,'S98.929D ','Partial traumatic amputation of unspecified foot, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(161198,10,'S98.929A ','Partial traumatic amputation of unspecified foot, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(161197,10,'S98.922S ','Partial traumatic amputation of left foot, level unspecified, sequela','Y','0000-00-00 00:00:00'),(161196,10,'S98.922D ','Partial traumatic amputation of left foot, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(161195,10,'S98.922A ','Partial traumatic amputation of left foot, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(161194,10,'S98.921S ','Partial traumatic amputation of right foot, level unspecified, sequela','Y','0000-00-00 00:00:00'),(161193,10,'S98.921D ','Partial traumatic amputation of right foot, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(161192,10,'S98.921A ','Partial traumatic amputation of right foot, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(161191,10,'S98.919S ','Complete traumatic amputation of unspecified foot, level unspecified, sequela','Y','0000-00-00 00:00:00'),(161190,10,'S98.919D ','Complete traumatic amputation of unspecified foot, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(161189,10,'S98.919A ','Complete traumatic amputation of unspecified foot, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(161188,10,'S98.912S ','Complete traumatic amputation of left foot, level unspecified, sequela','Y','0000-00-00 00:00:00'),(161187,10,'S98.912D ','Complete traumatic amputation of left foot, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(161186,10,'S98.912A ','Complete traumatic amputation of left foot, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(161185,10,'S98.911S ','Complete traumatic amputation of right foot, level unspecified, sequela','Y','0000-00-00 00:00:00'),(161184,10,'S98.911D ','Complete traumatic amputation of right foot, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(161183,10,'S98.911A ','Complete traumatic amputation of right foot, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(161182,10,'S98.329S ','Partial traumatic amputation of unspecified midfoot, sequela','Y','0000-00-00 00:00:00'),(161181,10,'S98.329D ','Partial traumatic amputation of unspecified midfoot, subsequent encounter','Y','0000-00-00 00:00:00'),(161180,10,'S98.329A ','Partial traumatic amputation of unspecified midfoot, initial encounter','Y','0000-00-00 00:00:00'),(161179,10,'S98.322S ','Partial traumatic amputation of left midfoot, sequela','Y','0000-00-00 00:00:00'),(161178,10,'S98.322D ','Partial traumatic amputation of left midfoot, subsequent encounter','Y','0000-00-00 00:00:00'),(161177,10,'S98.322A ','Partial traumatic amputation of left midfoot, initial encounter','Y','0000-00-00 00:00:00'),(161176,10,'S98.321S ','Partial traumatic amputation of right midfoot, sequela','Y','0000-00-00 00:00:00'),(161175,10,'S98.321D ','Partial traumatic amputation of right midfoot, subsequent encounter','Y','0000-00-00 00:00:00'),(161174,10,'S98.321A ','Partial traumatic amputation of right midfoot, initial encounter','Y','0000-00-00 00:00:00'),(161173,10,'S98.319S ','Complete traumatic amputation of unspecified midfoot, sequela','Y','0000-00-00 00:00:00'),(161172,10,'S98.319D ','Complete traumatic amputation of unspecified midfoot, subsequent encounter','Y','0000-00-00 00:00:00'),(161171,10,'S98.319A ','Complete traumatic amputation of unspecified midfoot, initial encounter','Y','0000-00-00 00:00:00'),(161170,10,'S98.312S ','Complete traumatic amputation of left midfoot, sequela','Y','0000-00-00 00:00:00'),(161169,10,'S98.312D ','Complete traumatic amputation of left midfoot, subsequent encounter','Y','0000-00-00 00:00:00'),(161168,10,'S98.312A ','Complete traumatic amputation of left midfoot, initial encounter','Y','0000-00-00 00:00:00'),(161167,10,'S98.311S ','Complete traumatic amputation of right midfoot, sequela','Y','0000-00-00 00:00:00'),(161166,10,'S98.311D ','Complete traumatic amputation of right midfoot, subsequent encounter','Y','0000-00-00 00:00:00'),(161165,10,'S98.311A ','Complete traumatic amputation of right midfoot, initial encounter','Y','0000-00-00 00:00:00'),(161164,10,'S98.229S ','Partial traumatic amputation of two or more unspecified lesser toes, sequela','Y','0000-00-00 00:00:00'),(161163,10,'S98.229D ','Partial traumatic amputation of two or more unspecified lesser toes, subsequent encounter','Y','0000-00-00 00:00:00'),(161162,10,'S98.229A ','Partial traumatic amputation of two or more unspecified lesser toes, initial encounter','Y','0000-00-00 00:00:00'),(161161,10,'S98.222S ','Partial traumatic amputation of two or more left lesser toes, sequela','Y','0000-00-00 00:00:00'),(161160,10,'S98.222D ','Partial traumatic amputation of two or more left lesser toes, subsequent encounter','Y','0000-00-00 00:00:00'),(161159,10,'S98.222A ','Partial traumatic amputation of two or more left lesser toes, initial encounter','Y','0000-00-00 00:00:00'),(161158,10,'S98.221S ','Partial traumatic amputation of two or more right lesser toes, sequela','Y','0000-00-00 00:00:00'),(161157,10,'S98.221D ','Partial traumatic amputation of two or more right lesser toes, subsequent encounter','Y','0000-00-00 00:00:00'),(161156,10,'S98.221A ','Partial traumatic amputation of two or more right lesser toes, initial encounter','Y','0000-00-00 00:00:00'),(161155,10,'S98.219S ','Complete traumatic amputation of two or more unspecified lesser toes, sequela','Y','0000-00-00 00:00:00'),(161154,10,'S98.219D ','Complete traumatic amputation of two or more unspecified lesser toes, subsequent encounter','Y','0000-00-00 00:00:00'),(161153,10,'S98.219A ','Complete traumatic amputation of two or more unspecified lesser toes, initial encounter','Y','0000-00-00 00:00:00'),(161152,10,'S98.212S ','Complete traumatic amputation of two or more left lesser toes, sequela','Y','0000-00-00 00:00:00'),(161151,10,'S98.212D ','Complete traumatic amputation of two or more left lesser toes, subsequent encounter','Y','0000-00-00 00:00:00'),(161150,10,'S98.212A ','Complete traumatic amputation of two or more left lesser toes, initial encounter','Y','0000-00-00 00:00:00'),(161149,10,'S98.211S ','Complete traumatic amputation of two or more right lesser toes, sequela','Y','0000-00-00 00:00:00'),(161148,10,'S98.211D ','Complete traumatic amputation of two or more right lesser toes, subsequent encounter','Y','0000-00-00 00:00:00'),(161147,10,'S98.211A ','Complete traumatic amputation of two or more right lesser toes, initial encounter','Y','0000-00-00 00:00:00'),(161146,10,'S98.149S ','Partial traumatic amputation of one unspecified lesser toe, sequela','Y','0000-00-00 00:00:00'),(161145,10,'S98.149D ','Partial traumatic amputation of one unspecified lesser toe, subsequent encounter','Y','0000-00-00 00:00:00'),(161144,10,'S98.149A ','Partial traumatic amputation of one unspecified lesser toe, initial encounter','Y','0000-00-00 00:00:00'),(161143,10,'S98.142S ','Partial traumatic amputation of one left lesser toe, sequela','Y','0000-00-00 00:00:00'),(161142,10,'S98.142D ','Partial traumatic amputation of one left lesser toe, subsequent encounter','Y','0000-00-00 00:00:00'),(161141,10,'S98.142A ','Partial traumatic amputation of one left lesser toe, initial encounter','Y','0000-00-00 00:00:00'),(161140,10,'S98.141S ','Partial traumatic amputation of one right lesser toe, sequela','Y','0000-00-00 00:00:00'),(161139,10,'S98.141D ','Partial traumatic amputation of one right lesser toe, subsequent encounter','Y','0000-00-00 00:00:00'),(161138,10,'S98.141A ','Partial traumatic amputation of one right lesser toe, initial encounter','Y','0000-00-00 00:00:00'),(161137,10,'S98.139S ','Complete traumatic amputation of one unspecified lesser toe, sequela','Y','0000-00-00 00:00:00'),(161136,10,'S98.139D ','Complete traumatic amputation of one unspecified lesser toe, subsequent encounter','Y','0000-00-00 00:00:00'),(161135,10,'S98.139A ','Complete traumatic amputation of one unspecified lesser toe, initial encounter','Y','0000-00-00 00:00:00'),(161134,10,'S98.132S ','Complete traumatic amputation of one left lesser toe, sequela','Y','0000-00-00 00:00:00'),(161133,10,'S98.132D ','Complete traumatic amputation of one left lesser toe, subsequent encounter','Y','0000-00-00 00:00:00'),(161132,10,'S98.132A ','Complete traumatic amputation of one left lesser toe, initial encounter','Y','0000-00-00 00:00:00'),(161131,10,'S98.131S ','Complete traumatic amputation of one right lesser toe, sequela','Y','0000-00-00 00:00:00'),(161130,10,'S98.131D ','Complete traumatic amputation of one right lesser toe, subsequent encounter','Y','0000-00-00 00:00:00'),(161129,10,'S98.131A ','Complete traumatic amputation of one right lesser toe, initial encounter','Y','0000-00-00 00:00:00'),(161128,10,'S98.129S ','Partial traumatic amputation of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(161127,10,'S98.129D ','Partial traumatic amputation of unspecified great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(161126,10,'S98.129A ','Partial traumatic amputation of unspecified great toe, initial encounter','Y','0000-00-00 00:00:00'),(161125,10,'S98.122S ','Partial traumatic amputation of left great toe, sequela','Y','0000-00-00 00:00:00'),(161124,10,'S98.122D ','Partial traumatic amputation of left great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(161123,10,'S98.122A ','Partial traumatic amputation of left great toe, initial encounter','Y','0000-00-00 00:00:00'),(161122,10,'S98.121S ','Partial traumatic amputation of right great toe, sequela','Y','0000-00-00 00:00:00'),(161121,10,'S98.121D ','Partial traumatic amputation of right great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(161120,10,'S98.121A ','Partial traumatic amputation of right great toe, initial encounter','Y','0000-00-00 00:00:00'),(161119,10,'S98.119S ','Complete traumatic amputation of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(161118,10,'S98.119D ','Complete traumatic amputation of unspecified great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(161117,10,'S98.119A ','Complete traumatic amputation of unspecified great toe, initial encounter','Y','0000-00-00 00:00:00'),(161116,10,'S98.112S ','Complete traumatic amputation of left great toe, sequela','Y','0000-00-00 00:00:00'),(161115,10,'S98.112D ','Complete traumatic amputation of left great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(161114,10,'S98.112A ','Complete traumatic amputation of left great toe, initial encounter','Y','0000-00-00 00:00:00'),(161113,10,'S98.111S ','Complete traumatic amputation of right great toe, sequela','Y','0000-00-00 00:00:00'),(161112,10,'S98.111D ','Complete traumatic amputation of right great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(161111,10,'S98.111A ','Complete traumatic amputation of right great toe, initial encounter','Y','0000-00-00 00:00:00'),(161110,10,'S98.029S ','Partial traumatic amputation of unspecified foot at ankle level, sequela','Y','0000-00-00 00:00:00'),(161109,10,'S98.029D ','Partial traumatic amputation of unspecified foot at ankle level, subsequent encounter','Y','0000-00-00 00:00:00'),(161108,10,'S98.029A ','Partial traumatic amputation of unspecified foot at ankle level, initial encounter','Y','0000-00-00 00:00:00'),(161107,10,'S98.022S ','Partial traumatic amputation of left foot at ankle level, sequela','Y','0000-00-00 00:00:00'),(161106,10,'S98.022D ','Partial traumatic amputation of left foot at ankle level, subsequent encounter','Y','0000-00-00 00:00:00'),(161105,10,'S98.022A ','Partial traumatic amputation of left foot at ankle level, initial encounter','Y','0000-00-00 00:00:00'),(161104,10,'S98.021S ','Partial traumatic amputation of right foot at ankle level, sequela','Y','0000-00-00 00:00:00'),(161103,10,'S98.021D ','Partial traumatic amputation of right foot at ankle level, subsequent encounter','Y','0000-00-00 00:00:00'),(161102,10,'S98.021A ','Partial traumatic amputation of right foot at ankle level, initial encounter','Y','0000-00-00 00:00:00'),(161101,10,'S98.019S ','Complete traumatic amputation of unspecified foot at ankle level, sequela','Y','0000-00-00 00:00:00'),(161100,10,'S98.019D ','Complete traumatic amputation of unspecified foot at ankle level, subsequent encounter','Y','0000-00-00 00:00:00'),(161099,10,'S98.019A ','Complete traumatic amputation of unspecified foot at ankle level, initial encounter','Y','0000-00-00 00:00:00'),(161098,10,'S98.012S ','Complete traumatic amputation of left foot at ankle level, sequela','Y','0000-00-00 00:00:00'),(161097,10,'S98.012D ','Complete traumatic amputation of left foot at ankle level, subsequent encounter','Y','0000-00-00 00:00:00'),(161096,10,'S98.012A ','Complete traumatic amputation of left foot at ankle level, initial encounter','Y','0000-00-00 00:00:00'),(161095,10,'S98.011S ','Complete traumatic amputation of right foot at ankle level, sequela','Y','0000-00-00 00:00:00'),(161094,10,'S98.011D ','Complete traumatic amputation of right foot at ankle level, subsequent encounter','Y','0000-00-00 00:00:00'),(161093,10,'S98.011A ','Complete traumatic amputation of right foot at ankle level, initial encounter','Y','0000-00-00 00:00:00'),(161092,10,'S97.82XS ','Crushing injury of left foot, sequela','Y','0000-00-00 00:00:00'),(161091,10,'S97.82XD ','Crushing injury of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161090,10,'S97.82XA ','Crushing injury of left foot, initial encounter','Y','0000-00-00 00:00:00'),(161089,10,'S97.81XS ','Crushing injury of right foot, sequela','Y','0000-00-00 00:00:00'),(161088,10,'S97.81XD ','Crushing injury of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161087,10,'S97.81XA ','Crushing injury of right foot, initial encounter','Y','0000-00-00 00:00:00'),(161086,10,'S97.80XS ','Crushing injury of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(161085,10,'S97.80XD ','Crushing injury of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161084,10,'S97.80XA ','Crushing injury of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(161083,10,'S97.129S ','Crushing injury of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(161082,10,'S97.129D ','Crushing injury of unspecified lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(161081,10,'S97.129A ','Crushing injury of unspecified lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(161080,10,'S97.122S ','Crushing injury of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(161079,10,'S97.122D ','Crushing injury of left lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(161078,10,'S97.122A ','Crushing injury of left lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(161077,10,'S97.121S ','Crushing injury of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(161076,10,'S97.121D ','Crushing injury of right lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(161075,10,'S97.121A ','Crushing injury of right lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(161074,10,'S97.119S ','Crushing injury of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(161073,10,'S97.119D ','Crushing injury of unspecified great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(161072,10,'S97.119A ','Crushing injury of unspecified great toe, initial encounter','Y','0000-00-00 00:00:00'),(161071,10,'S97.112S ','Crushing injury of left great toe, sequela','Y','0000-00-00 00:00:00'),(161070,10,'S97.112D ','Crushing injury of left great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(161069,10,'S97.112A ','Crushing injury of left great toe, initial encounter','Y','0000-00-00 00:00:00'),(161068,10,'S97.111S ','Crushing injury of right great toe, sequela','Y','0000-00-00 00:00:00'),(161067,10,'S97.111D ','Crushing injury of right great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(161066,10,'S97.111A ','Crushing injury of right great toe, initial encounter','Y','0000-00-00 00:00:00'),(161065,10,'S97.109S ','Crushing injury of unspecified toe(s), sequela','Y','0000-00-00 00:00:00'),(161064,10,'S97.109D ','Crushing injury of unspecified toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(161063,10,'S97.109A ','Crushing injury of unspecified toe(s), initial encounter','Y','0000-00-00 00:00:00'),(161062,10,'S97.102S ','Crushing injury of unspecified left toe(s), sequela','Y','0000-00-00 00:00:00'),(161061,10,'S97.102D ','Crushing injury of unspecified left toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(161060,10,'S97.102A ','Crushing injury of unspecified left toe(s), initial encounter','Y','0000-00-00 00:00:00'),(161059,10,'S97.101S ','Crushing injury of unspecified right toe(s), sequela','Y','0000-00-00 00:00:00'),(161058,10,'S97.101D ','Crushing injury of unspecified right toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(161057,10,'S97.101A ','Crushing injury of unspecified right toe(s), initial encounter','Y','0000-00-00 00:00:00'),(161056,10,'S97.02XS ','Crushing injury of left ankle, sequela','Y','0000-00-00 00:00:00'),(161055,10,'S97.02XD ','Crushing injury of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(161054,10,'S97.02XA ','Crushing injury of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(161053,10,'S97.01XS ','Crushing injury of right ankle, sequela','Y','0000-00-00 00:00:00'),(161052,10,'S97.01XD ','Crushing injury of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(161051,10,'S97.01XA ','Crushing injury of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(161050,10,'S97.00XS ','Crushing injury of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(161049,10,'S97.00XD ','Crushing injury of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(161048,10,'S97.00XA ','Crushing injury of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(161047,10,'S96.999S ','Other specified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(161046,10,'S96.999D ','Other specified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161045,10,'S96.999A ','Other specified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(161044,10,'S96.992S ','Other specified injury of unspecified muscle and tendon at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(161043,10,'S96.992D ','Other specified injury of unspecified muscle and tendon at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161042,10,'S96.992A ','Other specified injury of unspecified muscle and tendon at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(161041,10,'S96.991S ','Other specified injury of unspecified muscle and tendon at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(161040,10,'S96.991D ','Other specified injury of unspecified muscle and tendon at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161039,10,'S96.991A ','Other specified injury of unspecified muscle and tendon at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(161038,10,'S96.929S ','Laceration of unspecified muscle and tendon at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(161037,10,'S96.929D ','Laceration of unspecified muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161036,10,'S96.929A ','Laceration of unspecified muscle and tendon at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(161035,10,'S96.922S ','Laceration of unspecified muscle and tendon at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(161034,10,'S96.922D ','Laceration of unspecified muscle and tendon at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161033,10,'S96.922A ','Laceration of unspecified muscle and tendon at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(161032,10,'S96.921S ','Laceration of unspecified muscle and tendon at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(161031,10,'S96.921D ','Laceration of unspecified muscle and tendon at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161030,10,'S96.921A ','Laceration of unspecified muscle and tendon at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(161029,10,'S96.919S ','Strain of unspecified muscle and tendon at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(161028,10,'S96.919D ','Strain of unspecified muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161027,10,'S96.919A ','Strain of unspecified muscle and tendon at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(161026,10,'S96.912S ','Strain of unspecified muscle and tendon at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(161025,10,'S96.912D ','Strain of unspecified muscle and tendon at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161024,10,'S96.912A ','Strain of unspecified muscle and tendon at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(161023,10,'S96.911S ','Strain of unspecified muscle and tendon at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(161022,10,'S96.911D ','Strain of unspecified muscle and tendon at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161021,10,'S96.911A ','Strain of unspecified muscle and tendon at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(161020,10,'S96.909S ','Unspecified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(161019,10,'S96.909D ','Unspecified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161018,10,'S96.909A ','Unspecified injury of unspecified muscle and tendon at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(161017,10,'S96.902S ','Unspecified injury of unspecified muscle and tendon at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(161016,10,'S96.902D ','Unspecified injury of unspecified muscle and tendon at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161015,10,'S96.902A ','Unspecified injury of unspecified muscle and tendon at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(161014,10,'S96.901S ','Unspecified injury of unspecified muscle and tendon at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(161013,10,'S96.901D ','Unspecified injury of unspecified muscle and tendon at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161012,10,'S96.901A ','Unspecified injury of unspecified muscle and tendon at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(161011,10,'S96.899S ','Other specified injury of other specified muscles and tendons at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(161010,10,'S96.899D ','Other specified injury of other specified muscles and tendons at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161009,10,'S96.899A ','Other specified injury of other specified muscles and tendons at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(161008,10,'S96.892S ','Other specified injury of other specified muscles and tendons at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(161007,10,'S96.892D ','Other specified injury of other specified muscles and tendons at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161006,10,'S96.892A ','Other specified injury of other specified muscles and tendons at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(161005,10,'S96.891S ','Other specified injury of other specified muscles and tendons at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(161004,10,'S96.891D ','Other specified injury of other specified muscles and tendons at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161003,10,'S96.891A ','Other specified injury of other specified muscles and tendons at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(161002,10,'S96.829S ','Laceration of other specified muscles and tendons at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(161001,10,'S96.829D ','Laceration of other specified muscles and tendons at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(161000,10,'S96.829A ','Laceration of other specified muscles and tendons at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160999,10,'S96.822S ','Laceration of other specified muscles and tendons at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(160998,10,'S96.822D ','Laceration of other specified muscles and tendons at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160997,10,'S96.822A ','Laceration of other specified muscles and tendons at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(160996,10,'S96.821S ','Laceration of other specified muscles and tendons at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(160995,10,'S96.821D ','Laceration of other specified muscles and tendons at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160994,10,'S96.821A ','Laceration of other specified muscles and tendons at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(160993,10,'S96.819S ','Strain of other specified muscles and tendons at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160992,10,'S96.819D ','Strain of other specified muscles and tendons at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160991,10,'S96.819A ','Strain of other specified muscles and tendons at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160990,10,'S96.812S ','Strain of other specified muscles and tendons at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(160989,10,'S96.812D ','Strain of other specified muscles and tendons at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160988,10,'S96.812A ','Strain of other specified muscles and tendons at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(160987,10,'S96.811S ','Strain of other specified muscles and tendons at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(160986,10,'S96.811D ','Strain of other specified muscles and tendons at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160985,10,'S96.811A ','Strain of other specified muscles and tendons at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(160984,10,'S96.809S ','Unspecified injury of other specified muscles and tendons at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160983,10,'S96.809D ','Unspecified injury of other specified muscles and tendons at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160982,10,'S96.809A ','Unspecified injury of other specified muscles and tendons at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160981,10,'S96.802S ','Unspecified injury of other specified muscles and tendons at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(160980,10,'S96.802D ','Unspecified injury of other specified muscles and tendons at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160979,10,'S96.802A ','Unspecified injury of other specified muscles and tendons at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(160978,10,'S96.801S ','Unspecified injury of other specified muscles and tendons at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(160977,10,'S96.801D ','Unspecified injury of other specified muscles and tendons at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160976,10,'S96.801A ','Unspecified injury of other specified muscles and tendons at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(160975,10,'S96.299S ','Other specified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160974,10,'S96.299D ','Other specified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160973,10,'S96.299A ','Other specified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160972,10,'S96.292S ','Other specified injury of intrinsic muscle and tendon at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(160971,10,'S96.292D ','Other specified injury of intrinsic muscle and tendon at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160970,10,'S96.292A ','Other specified injury of intrinsic muscle and tendon at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(160969,10,'S96.291S ','Other specified injury of intrinsic muscle and tendon at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(160968,10,'S96.291D ','Other specified injury of intrinsic muscle and tendon at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160967,10,'S96.291A ','Other specified injury of intrinsic muscle and tendon at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(160966,10,'S96.229S ','Laceration of intrinsic muscle and tendon at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160965,10,'S96.229D ','Laceration of intrinsic muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160964,10,'S96.229A ','Laceration of intrinsic muscle and tendon at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160963,10,'S96.222S ','Laceration of intrinsic muscle and tendon at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(160962,10,'S96.222D ','Laceration of intrinsic muscle and tendon at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160961,10,'S96.222A ','Laceration of intrinsic muscle and tendon at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(160960,10,'S96.221S ','Laceration of intrinsic muscle and tendon at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(160959,10,'S96.221D ','Laceration of intrinsic muscle and tendon at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160958,10,'S96.221A ','Laceration of intrinsic muscle and tendon at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(160957,10,'S96.219S ','Strain of intrinsic muscle and tendon at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160956,10,'S96.219D ','Strain of intrinsic muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160955,10,'S96.219A ','Strain of intrinsic muscle and tendon at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160954,10,'S96.212S ','Strain of intrinsic muscle and tendon at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(160953,10,'S96.212D ','Strain of intrinsic muscle and tendon at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160952,10,'S96.212A ','Strain of intrinsic muscle and tendon at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(160951,10,'S96.211S ','Strain of intrinsic muscle and tendon at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(160950,10,'S96.211D ','Strain of intrinsic muscle and tendon at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160949,10,'S96.211A ','Strain of intrinsic muscle and tendon at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(160948,10,'S96.209S ','Unspecified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160947,10,'S96.209D ','Unspecified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160946,10,'S96.209A ','Unspecified injury of intrinsic muscle and tendon at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160945,10,'S96.202S ','Unspecified injury of intrinsic muscle and tendon at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(160944,10,'S96.202D ','Unspecified injury of intrinsic muscle and tendon at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160943,10,'S96.202A ','Unspecified injury of intrinsic muscle and tendon at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(160942,10,'S96.201S ','Unspecified injury of intrinsic muscle and tendon at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(160941,10,'S96.201D ','Unspecified injury of intrinsic muscle and tendon at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160940,10,'S96.201A ','Unspecified injury of intrinsic muscle and tendon at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(160939,10,'S96.199S ','Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160938,10,'S96.199D ','Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160937,10,'S96.199A ','Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160936,10,'S96.192S ','Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(160935,10,'S96.192D ','Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160934,10,'S96.192A ','Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(160933,10,'S96.191S ','Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(160932,10,'S96.191D ','Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160931,10,'S96.191A ','Other specified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(160930,10,'S96.129S ','Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160929,10,'S96.129D ','Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160928,10,'S96.129A ','Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160927,10,'S96.122S ','Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(160926,10,'S96.122D ','Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160925,10,'S96.122A ','Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(160924,10,'S96.121S ','Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(160923,10,'S96.121D ','Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160922,10,'S96.121A ','Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(160921,10,'S96.119S ','Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160920,10,'S96.119D ','Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160919,10,'S96.119A ','Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160918,10,'S96.112S ','Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(160917,10,'S96.112D ','Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160916,10,'S96.112A ','Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(160915,10,'S96.111S ','Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(160914,10,'S96.111D ','Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160913,10,'S96.111A ','Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(160912,10,'S96.109S ','Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160911,10,'S96.109D ','Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160910,10,'S96.109A ','Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160909,10,'S96.102S ','Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(160908,10,'S96.102D ','Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160907,10,'S96.102A ','Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(160906,10,'S96.101S ','Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(160905,10,'S96.101D ','Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160904,10,'S96.101A ','Unspecified injury of muscle and tendon of long extensor muscle of toe at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(160903,10,'S96.099S ','Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160902,10,'S96.099D ','Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160901,10,'S96.099A ','Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160900,10,'S96.092S ','Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(160899,10,'S96.092D ','Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160898,10,'S96.092A ','Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(160897,10,'S96.091S ','Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(160896,10,'S96.091D ','Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160895,10,'S96.091A ','Other injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(160894,10,'S96.029S ','Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160893,10,'S96.029D ','Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160892,10,'S96.029A ','Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160891,10,'S96.022S ','Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(160890,10,'S96.022D ','Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160889,10,'S96.022A ','Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(160888,10,'S96.021S ','Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(160887,10,'S96.021D ','Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160886,10,'S96.021A ','Laceration of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(160885,10,'S96.019S ','Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160884,10,'S96.019D ','Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160883,10,'S96.019A ','Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160882,10,'S96.012S ','Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(160881,10,'S96.012D ','Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160880,10,'S96.012A ','Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(160879,10,'S96.011S ','Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(160878,10,'S96.011D ','Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160877,10,'S96.011A ','Strain of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(160876,10,'S96.009S ','Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160875,10,'S96.009D ','Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160874,10,'S96.009A ','Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160873,10,'S96.002S ','Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, sequela','Y','0000-00-00 00:00:00'),(160872,10,'S96.002D ','Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160871,10,'S96.002A ','Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, left foot, initial encounter','Y','0000-00-00 00:00:00'),(160870,10,'S96.001S ','Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, sequela','Y','0000-00-00 00:00:00'),(160869,10,'S96.001D ','Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160868,10,'S96.001A ','Unspecified injury of muscle and tendon of long flexor muscle of toe at ankle and foot level, right foot, initial encounter','Y','0000-00-00 00:00:00'),(160867,10,'S95.999S ','Other specified injury of unspecified blood vessel at ankle and foot level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(160866,10,'S95.999D ','Other specified injury of unspecified blood vessel at ankle and foot level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160865,10,'S95.999A ','Other specified injury of unspecified blood vessel at ankle and foot level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(160864,10,'S95.992S ','Other specified injury of unspecified blood vessel at ankle and foot level, left leg, sequela','Y','0000-00-00 00:00:00'),(160863,10,'S95.992D ','Other specified injury of unspecified blood vessel at ankle and foot level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160862,10,'S95.992A ','Other specified injury of unspecified blood vessel at ankle and foot level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(160861,10,'S95.991S ','Other specified injury of unspecified blood vessel at ankle and foot level, right leg, sequela','Y','0000-00-00 00:00:00'),(160860,10,'S95.991D ','Other specified injury of unspecified blood vessel at ankle and foot level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160859,10,'S95.991A ','Other specified injury of unspecified blood vessel at ankle and foot level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(160858,10,'S95.919S ','Laceration of unspecified blood vessel at ankle and foot level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(160857,10,'S95.919D ','Laceration of unspecified blood vessel at ankle and foot level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160856,10,'S95.919A ','Laceration of unspecified blood vessel at ankle and foot level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(160855,10,'S95.912S ','Laceration of unspecified blood vessel at ankle and foot level, left leg, sequela','Y','0000-00-00 00:00:00'),(160854,10,'S95.912D ','Laceration of unspecified blood vessel at ankle and foot level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160853,10,'S95.912A ','Laceration of unspecified blood vessel at ankle and foot level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(160852,10,'S95.911S ','Laceration of unspecified blood vessel at ankle and foot level, right leg, sequela','Y','0000-00-00 00:00:00'),(160851,10,'S95.911D ','Laceration of unspecified blood vessel at ankle and foot level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160850,10,'S95.911A ','Laceration of unspecified blood vessel at ankle and foot level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(160849,10,'S95.909S ','Unspecified injury of unspecified blood vessel at ankle and foot level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(160848,10,'S95.909D ','Unspecified injury of unspecified blood vessel at ankle and foot level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160847,10,'S95.909A ','Unspecified injury of unspecified blood vessel at ankle and foot level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(160846,10,'S95.902S ','Unspecified injury of unspecified blood vessel at ankle and foot level, left leg, sequela','Y','0000-00-00 00:00:00'),(160845,10,'S95.902D ','Unspecified injury of unspecified blood vessel at ankle and foot level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160844,10,'S95.902A ','Unspecified injury of unspecified blood vessel at ankle and foot level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(160843,10,'S95.901S ','Unspecified injury of unspecified blood vessel at ankle and foot level, right leg, sequela','Y','0000-00-00 00:00:00'),(160842,10,'S95.901D ','Unspecified injury of unspecified blood vessel at ankle and foot level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160841,10,'S95.901A ','Unspecified injury of unspecified blood vessel at ankle and foot level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(160840,10,'S95.899S ','Other specified injury of other blood vessels at ankle and foot level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(160839,10,'S95.899D ','Other specified injury of other blood vessels at ankle and foot level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160838,10,'S95.899A ','Other specified injury of other blood vessels at ankle and foot level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(160837,10,'S95.892S ','Other specified injury of other blood vessels at ankle and foot level, left leg, sequela','Y','0000-00-00 00:00:00'),(160836,10,'S95.892D ','Other specified injury of other blood vessels at ankle and foot level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160835,10,'S95.892A ','Other specified injury of other blood vessels at ankle and foot level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(160834,10,'S95.891S ','Other specified injury of other blood vessels at ankle and foot level, right leg, sequela','Y','0000-00-00 00:00:00'),(160833,10,'S95.891D ','Other specified injury of other blood vessels at ankle and foot level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160832,10,'S95.891A ','Other specified injury of other blood vessels at ankle and foot level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(160831,10,'S95.819S ','Laceration of other blood vessels at ankle and foot level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(160830,10,'S95.819D ','Laceration of other blood vessels at ankle and foot level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160829,10,'S95.819A ','Laceration of other blood vessels at ankle and foot level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(160828,10,'S95.812S ','Laceration of other blood vessels at ankle and foot level, left leg, sequela','Y','0000-00-00 00:00:00'),(160827,10,'S95.812D ','Laceration of other blood vessels at ankle and foot level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160826,10,'S95.812A ','Laceration of other blood vessels at ankle and foot level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(160825,10,'S95.811S ','Laceration of other blood vessels at ankle and foot level, right leg, sequela','Y','0000-00-00 00:00:00'),(160824,10,'S95.811D ','Laceration of other blood vessels at ankle and foot level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160823,10,'S95.811A ','Laceration of other blood vessels at ankle and foot level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(160822,10,'S95.809S ','Unspecified injury of other blood vessels at ankle and foot level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(160821,10,'S95.809D ','Unspecified injury of other blood vessels at ankle and foot level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160820,10,'S95.809A ','Unspecified injury of other blood vessels at ankle and foot level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(160819,10,'S95.802S ','Unspecified injury of other blood vessels at ankle and foot level, left leg, sequela','Y','0000-00-00 00:00:00'),(160818,10,'S95.802D ','Unspecified injury of other blood vessels at ankle and foot level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160817,10,'S95.802A ','Unspecified injury of other blood vessels at ankle and foot level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(160816,10,'S95.801S ','Unspecified injury of other blood vessels at ankle and foot level, right leg, sequela','Y','0000-00-00 00:00:00'),(160815,10,'S95.801D ','Unspecified injury of other blood vessels at ankle and foot level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160814,10,'S95.801A ','Unspecified injury of other blood vessels at ankle and foot level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(160813,10,'S95.299S ','Other specified injury of dorsal vein of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160812,10,'S95.299D ','Other specified injury of dorsal vein of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160811,10,'S95.299A ','Other specified injury of dorsal vein of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160810,10,'S95.292S ','Other specified injury of dorsal vein of left foot, sequela','Y','0000-00-00 00:00:00'),(160809,10,'S95.292D ','Other specified injury of dorsal vein of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160808,10,'S95.292A ','Other specified injury of dorsal vein of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160807,10,'S95.291S ','Other specified injury of dorsal vein of right foot, sequela','Y','0000-00-00 00:00:00'),(160806,10,'S95.291D ','Other specified injury of dorsal vein of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160805,10,'S95.291A ','Other specified injury of dorsal vein of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160804,10,'S95.219S ','Laceration of dorsal vein of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160803,10,'S95.219D ','Laceration of dorsal vein of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160802,10,'S95.219A ','Laceration of dorsal vein of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160801,10,'S95.212S ','Laceration of dorsal vein of left foot, sequela','Y','0000-00-00 00:00:00'),(160800,10,'S95.212D ','Laceration of dorsal vein of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160799,10,'S95.212A ','Laceration of dorsal vein of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160798,10,'S95.211S ','Laceration of dorsal vein of right foot, sequela','Y','0000-00-00 00:00:00'),(160797,10,'S95.211D ','Laceration of dorsal vein of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160796,10,'S95.211A ','Laceration of dorsal vein of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160795,10,'S95.209S ','Unspecified injury of dorsal vein of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160794,10,'S95.209D ','Unspecified injury of dorsal vein of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160793,10,'S95.209A ','Unspecified injury of dorsal vein of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160792,10,'S95.202S ','Unspecified injury of dorsal vein of left foot, sequela','Y','0000-00-00 00:00:00'),(160791,10,'S95.202D ','Unspecified injury of dorsal vein of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160790,10,'S95.202A ','Unspecified injury of dorsal vein of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160789,10,'S95.201S ','Unspecified injury of dorsal vein of right foot, sequela','Y','0000-00-00 00:00:00'),(160788,10,'S95.201D ','Unspecified injury of dorsal vein of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160787,10,'S95.201A ','Unspecified injury of dorsal vein of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160786,10,'S95.199S ','Other specified injury of plantar artery of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160785,10,'S95.199D ','Other specified injury of plantar artery of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160784,10,'S95.199A ','Other specified injury of plantar artery of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160783,10,'S95.192S ','Other specified injury of plantar artery of left foot, sequela','Y','0000-00-00 00:00:00'),(160782,10,'S95.192D ','Other specified injury of plantar artery of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160781,10,'S95.192A ','Other specified injury of plantar artery of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160780,10,'S95.191S ','Other specified injury of plantar artery of right foot, sequela','Y','0000-00-00 00:00:00'),(160779,10,'S95.191D ','Other specified injury of plantar artery of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160778,10,'S95.191A ','Other specified injury of plantar artery of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160777,10,'S95.119S ','Laceration of plantar artery of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160776,10,'S95.119D ','Laceration of plantar artery of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160775,10,'S95.119A ','Laceration of plantar artery of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160774,10,'S95.112S ','Laceration of plantar artery of left foot, sequela','Y','0000-00-00 00:00:00'),(160773,10,'S95.112D ','Laceration of plantar artery of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160772,10,'S95.112A ','Laceration of plantar artery of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160771,10,'S95.111S ','Laceration of plantar artery of right foot, sequela','Y','0000-00-00 00:00:00'),(160770,10,'S95.111D ','Laceration of plantar artery of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160769,10,'S95.111A ','Laceration of plantar artery of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160768,10,'S95.109S ','Unspecified injury of plantar artery of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160767,10,'S95.109D ','Unspecified injury of plantar artery of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160766,10,'S95.109A ','Unspecified injury of plantar artery of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160765,10,'S95.102S ','Unspecified injury of plantar artery of left foot, sequela','Y','0000-00-00 00:00:00'),(160764,10,'S95.102D ','Unspecified injury of plantar artery of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160763,10,'S95.102A ','Unspecified injury of plantar artery of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160762,10,'S95.101S ','Unspecified injury of plantar artery of right foot, sequela','Y','0000-00-00 00:00:00'),(160761,10,'S95.101D ','Unspecified injury of plantar artery of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160760,10,'S95.101A ','Unspecified injury of plantar artery of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160759,10,'S95.099S ','Other specified injury of dorsal artery of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160758,10,'S95.099D ','Other specified injury of dorsal artery of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160757,10,'S95.099A ','Other specified injury of dorsal artery of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160756,10,'S95.092S ','Other specified injury of dorsal artery of left foot, sequela','Y','0000-00-00 00:00:00'),(160755,10,'S95.092D ','Other specified injury of dorsal artery of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160754,10,'S95.092A ','Other specified injury of dorsal artery of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160753,10,'S95.091S ','Other specified injury of dorsal artery of right foot, sequela','Y','0000-00-00 00:00:00'),(160752,10,'S95.091D ','Other specified injury of dorsal artery of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160751,10,'S95.091A ','Other specified injury of dorsal artery of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160750,10,'S95.019S ','Laceration of dorsal artery of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160749,10,'S95.019D ','Laceration of dorsal artery of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160748,10,'S95.019A ','Laceration of dorsal artery of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160747,10,'S95.012S ','Laceration of dorsal artery of left foot, sequela','Y','0000-00-00 00:00:00'),(160746,10,'S95.012D ','Laceration of dorsal artery of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160745,10,'S95.012A ','Laceration of dorsal artery of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160744,10,'S95.011S ','Laceration of dorsal artery of right foot, sequela','Y','0000-00-00 00:00:00'),(160743,10,'S95.011D ','Laceration of dorsal artery of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160742,10,'S95.011A ','Laceration of dorsal artery of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160741,10,'S95.009S ','Unspecified injury of dorsal artery of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160740,10,'S95.009D ','Unspecified injury of dorsal artery of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160739,10,'S95.009A ','Unspecified injury of dorsal artery of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160738,10,'S95.002S ','Unspecified injury of dorsal artery of left foot, sequela','Y','0000-00-00 00:00:00'),(160737,10,'S95.002D ','Unspecified injury of dorsal artery of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160736,10,'S95.002A ','Unspecified injury of dorsal artery of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160735,10,'S95.001S ','Unspecified injury of dorsal artery of right foot, sequela','Y','0000-00-00 00:00:00'),(160734,10,'S95.001D ','Unspecified injury of dorsal artery of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160733,10,'S95.001A ','Unspecified injury of dorsal artery of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160732,10,'S94.92XS ','Injury of unspecified nerve at ankle and foot level, left leg, sequela','Y','0000-00-00 00:00:00'),(160731,10,'S94.92XD ','Injury of unspecified nerve at ankle and foot level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160730,10,'S94.92XA ','Injury of unspecified nerve at ankle and foot level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(160729,10,'S94.91XS ','Injury of unspecified nerve at ankle and foot level, right leg, sequela','Y','0000-00-00 00:00:00'),(160728,10,'S94.91XD ','Injury of unspecified nerve at ankle and foot level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160727,10,'S94.91XA ','Injury of unspecified nerve at ankle and foot level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(160726,10,'S94.90XS ','Injury of unspecified nerve at ankle and foot level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(160725,10,'S94.90XD ','Injury of unspecified nerve at ankle and foot level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160724,10,'S94.90XA ','Injury of unspecified nerve at ankle and foot level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(160723,10,'S94.8X9S ','Injury of other nerves at ankle and foot level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(160722,10,'S94.8X9D ','Injury of other nerves at ankle and foot level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160721,10,'S94.8X9A ','Injury of other nerves at ankle and foot level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(160720,10,'S94.8X2S ','Injury of other nerves at ankle and foot level, left leg, sequela','Y','0000-00-00 00:00:00'),(160719,10,'S94.8X2D ','Injury of other nerves at ankle and foot level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160718,10,'S94.8X2A ','Injury of other nerves at ankle and foot level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(160717,10,'S94.8X1S ','Injury of other nerves at ankle and foot level, right leg, sequela','Y','0000-00-00 00:00:00'),(160716,10,'S94.8X1D ','Injury of other nerves at ankle and foot level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160715,10,'S94.8X1A ','Injury of other nerves at ankle and foot level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(160714,10,'S94.32XS ','Injury of cutaneous sensory nerve at ankle and foot level, left leg, sequela','Y','0000-00-00 00:00:00'),(160713,10,'S94.32XD ','Injury of cutaneous sensory nerve at ankle and foot level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160712,10,'S94.32XA ','Injury of cutaneous sensory nerve at ankle and foot level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(160711,10,'S94.31XS ','Injury of cutaneous sensory nerve at ankle and foot level, right leg, sequela','Y','0000-00-00 00:00:00'),(160710,10,'S94.31XD ','Injury of cutaneous sensory nerve at ankle and foot level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160709,10,'S94.31XA ','Injury of cutaneous sensory nerve at ankle and foot level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(160708,10,'S94.30XS ','Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(160707,10,'S94.30XD ','Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160706,10,'S94.30XA ','Injury of cutaneous sensory nerve at ankle and foot level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(160705,10,'S94.22XS ','Injury of deep peroneal nerve at ankle and foot level, left leg, sequela','Y','0000-00-00 00:00:00'),(160704,10,'S94.22XD ','Injury of deep peroneal nerve at ankle and foot level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160703,10,'S94.22XA ','Injury of deep peroneal nerve at ankle and foot level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(160702,10,'S94.21XS ','Injury of deep peroneal nerve at ankle and foot level, right leg, sequela','Y','0000-00-00 00:00:00'),(160701,10,'S94.21XD ','Injury of deep peroneal nerve at ankle and foot level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160700,10,'S94.21XA ','Injury of deep peroneal nerve at ankle and foot level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(160699,10,'S94.20XS ','Injury of deep peroneal nerve at ankle and foot level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(160698,10,'S94.20XD ','Injury of deep peroneal nerve at ankle and foot level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160697,10,'S94.20XA ','Injury of deep peroneal nerve at ankle and foot level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(160696,10,'S94.12XS ','Injury of medial plantar nerve, left leg, sequela','Y','0000-00-00 00:00:00'),(160695,10,'S94.12XD ','Injury of medial plantar nerve, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160694,10,'S94.12XA ','Injury of medial plantar nerve, left leg, initial encounter','Y','0000-00-00 00:00:00'),(160693,10,'S94.11XS ','Injury of medial plantar nerve, right leg, sequela','Y','0000-00-00 00:00:00'),(160692,10,'S94.11XD ','Injury of medial plantar nerve, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160691,10,'S94.11XA ','Injury of medial plantar nerve, right leg, initial encounter','Y','0000-00-00 00:00:00'),(160690,10,'S94.10XS ','Injury of medial plantar nerve, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(160689,10,'S94.10XD ','Injury of medial plantar nerve, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160688,10,'S94.10XA ','Injury of medial plantar nerve, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(160687,10,'S94.02XS ','Injury of lateral plantar nerve, left leg, sequela','Y','0000-00-00 00:00:00'),(160686,10,'S94.02XD ','Injury of lateral plantar nerve, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160685,10,'S94.02XA ','Injury of lateral plantar nerve, left leg, initial encounter','Y','0000-00-00 00:00:00'),(160684,10,'S94.01XS ','Injury of lateral plantar nerve, right leg, sequela','Y','0000-00-00 00:00:00'),(160683,10,'S94.01XD ','Injury of lateral plantar nerve, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160682,10,'S94.01XA ','Injury of lateral plantar nerve, right leg, initial encounter','Y','0000-00-00 00:00:00'),(160681,10,'S94.00XS ','Injury of lateral plantar nerve, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(160680,10,'S94.00XD ','Injury of lateral plantar nerve, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(160679,10,'S94.00XA ','Injury of lateral plantar nerve, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(160678,10,'S93.699S ','Other sprain of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160677,10,'S93.699D ','Other sprain of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160676,10,'S93.699A ','Other sprain of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160675,10,'S93.692S ','Other sprain of left foot, sequela','Y','0000-00-00 00:00:00'),(160674,10,'S93.692D ','Other sprain of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160673,10,'S93.692A ','Other sprain of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160671,10,'S93.691D ','Other sprain of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160672,10,'S93.691S ','Other sprain of right foot, sequela','Y','0000-00-00 00:00:00'),(160669,10,'S93.629S ','Sprain of tarsometatarsal ligament of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160670,10,'S93.691A ','Other sprain of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160668,10,'S93.629D ','Sprain of tarsometatarsal ligament of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160666,10,'S93.622S ','Sprain of tarsometatarsal ligament of left foot, sequela','Y','0000-00-00 00:00:00'),(160667,10,'S93.629A ','Sprain of tarsometatarsal ligament of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160665,10,'S93.622D ','Sprain of tarsometatarsal ligament of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160663,10,'S93.621S ','Sprain of tarsometatarsal ligament of right foot, sequela','Y','0000-00-00 00:00:00'),(160664,10,'S93.622A ','Sprain of tarsometatarsal ligament of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160662,10,'S93.621D ','Sprain of tarsometatarsal ligament of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160660,10,'S93.619S ','Sprain of tarsal ligament of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160661,10,'S93.621A ','Sprain of tarsometatarsal ligament of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160658,10,'S93.619A ','Sprain of tarsal ligament of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160659,10,'S93.619D ','Sprain of tarsal ligament of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160656,10,'S93.612D ','Sprain of tarsal ligament of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160657,10,'S93.612S ','Sprain of tarsal ligament of left foot, sequela','Y','0000-00-00 00:00:00'),(160655,10,'S93.612A ','Sprain of tarsal ligament of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160653,10,'S93.611D ','Sprain of tarsal ligament of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160654,10,'S93.611S ','Sprain of tarsal ligament of right foot, sequela','Y','0000-00-00 00:00:00'),(160652,10,'S93.611A ','Sprain of tarsal ligament of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160651,10,'S93.609S ','Unspecified sprain of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160650,10,'S93.609D ','Unspecified sprain of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160648,10,'S93.602S ','Unspecified sprain of left foot, sequela','Y','0000-00-00 00:00:00'),(160649,10,'S93.609A ','Unspecified sprain of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160647,10,'S93.602D ','Unspecified sprain of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160646,10,'S93.602A ','Unspecified sprain of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160645,10,'S93.601S ','Unspecified sprain of right foot, sequela','Y','0000-00-00 00:00:00'),(160644,10,'S93.601D ','Unspecified sprain of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160643,10,'S93.601A ','Unspecified sprain of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160642,10,'S93.529S ','Sprain of metatarsophalangeal joint of unspecified toe(s), sequela','Y','0000-00-00 00:00:00'),(160641,10,'S93.529D ','Sprain of metatarsophalangeal joint of unspecified toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160640,10,'S93.529A ','Sprain of metatarsophalangeal joint of unspecified toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160639,10,'S93.526S ','Sprain of metatarsophalangeal joint of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160638,10,'S93.526D ','Sprain of metatarsophalangeal joint of unspecified lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160637,10,'S93.526A ','Sprain of metatarsophalangeal joint of unspecified lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160636,10,'S93.525S ','Sprain of metatarsophalangeal joint of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160635,10,'S93.525D ','Sprain of metatarsophalangeal joint of left lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160634,10,'S93.525A ','Sprain of metatarsophalangeal joint of left lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160633,10,'S93.524S ','Sprain of metatarsophalangeal joint of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160632,10,'S93.524D ','Sprain of metatarsophalangeal joint of right lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160631,10,'S93.524A ','Sprain of metatarsophalangeal joint of right lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160630,10,'S93.523S ','Sprain of metatarsophalangeal joint of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(160629,10,'S93.523D ','Sprain of metatarsophalangeal joint of unspecified great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160628,10,'S93.523A ','Sprain of metatarsophalangeal joint of unspecified great toe, initial encounter','Y','0000-00-00 00:00:00'),(160627,10,'S93.522S ','Sprain of metatarsophalangeal joint of left great toe, sequela','Y','0000-00-00 00:00:00'),(160626,10,'S93.522D ','Sprain of metatarsophalangeal joint of left great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160625,10,'S93.522A ','Sprain of metatarsophalangeal joint of left great toe, initial encounter','Y','0000-00-00 00:00:00'),(160624,10,'S93.521S ','Sprain of metatarsophalangeal joint of right great toe, sequela','Y','0000-00-00 00:00:00'),(160623,10,'S93.521D ','Sprain of metatarsophalangeal joint of right great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160622,10,'S93.521A ','Sprain of metatarsophalangeal joint of right great toe, initial encounter','Y','0000-00-00 00:00:00'),(160621,10,'S93.519S ','Sprain of interphalangeal joint of unspecified toe(s), sequela','Y','0000-00-00 00:00:00'),(160620,10,'S93.519D ','Sprain of interphalangeal joint of unspecified toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160619,10,'S93.519A ','Sprain of interphalangeal joint of unspecified toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160618,10,'S93.516S ','Sprain of interphalangeal joint of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160617,10,'S93.516D ','Sprain of interphalangeal joint of unspecified lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160616,10,'S93.516A ','Sprain of interphalangeal joint of unspecified lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160615,10,'S93.515S ','Sprain of interphalangeal joint of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160614,10,'S93.515D ','Sprain of interphalangeal joint of left lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160613,10,'S93.515A ','Sprain of interphalangeal joint of left lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160612,10,'S93.514S ','Sprain of interphalangeal joint of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160611,10,'S93.514D ','Sprain of interphalangeal joint of right lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160610,10,'S93.514A ','Sprain of interphalangeal joint of right lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160609,10,'S93.513S ','Sprain of interphalangeal joint of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(160608,10,'S93.513D ','Sprain of interphalangeal joint of unspecified great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160607,10,'S93.513A ','Sprain of interphalangeal joint of unspecified great toe, initial encounter','Y','0000-00-00 00:00:00'),(160606,10,'S93.512S ','Sprain of interphalangeal joint of left great toe, sequela','Y','0000-00-00 00:00:00'),(160605,10,'S93.512D ','Sprain of interphalangeal joint of left great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160604,10,'S93.512A ','Sprain of interphalangeal joint of left great toe, initial encounter','Y','0000-00-00 00:00:00'),(160603,10,'S93.511S ','Sprain of interphalangeal joint of right great toe, sequela','Y','0000-00-00 00:00:00'),(160602,10,'S93.511D ','Sprain of interphalangeal joint of right great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160601,10,'S93.511A ','Sprain of interphalangeal joint of right great toe, initial encounter','Y','0000-00-00 00:00:00'),(160600,10,'S93.509S ','Unspecified sprain of unspecified toe(s), sequela','Y','0000-00-00 00:00:00'),(160599,10,'S93.509D ','Unspecified sprain of unspecified toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160598,10,'S93.509A ','Unspecified sprain of unspecified toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160597,10,'S93.506S ','Unspecified sprain of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160596,10,'S93.506D ','Unspecified sprain of unspecified lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160595,10,'S93.506A ','Unspecified sprain of unspecified lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160594,10,'S93.505S ','Unspecified sprain of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160593,10,'S93.505D ','Unspecified sprain of left lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160592,10,'S93.505A ','Unspecified sprain of left lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160591,10,'S93.504S ','Unspecified sprain of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160590,10,'S93.504D ','Unspecified sprain of right lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160589,10,'S93.504A ','Unspecified sprain of right lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160588,10,'S93.503S ','Unspecified sprain of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(160587,10,'S93.503D ','Unspecified sprain of unspecified great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160586,10,'S93.503A ','Unspecified sprain of unspecified great toe, initial encounter','Y','0000-00-00 00:00:00'),(160585,10,'S93.502S ','Unspecified sprain of left great toe, sequela','Y','0000-00-00 00:00:00'),(160583,10,'S93.502A ','Unspecified sprain of left great toe, initial encounter','Y','0000-00-00 00:00:00'),(160584,10,'S93.502D ','Unspecified sprain of left great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160582,10,'S93.501S ','Unspecified sprain of right great toe, sequela','Y','0000-00-00 00:00:00'),(160581,10,'S93.501D ','Unspecified sprain of right great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160580,10,'S93.501A ','Unspecified sprain of right great toe, initial encounter','Y','0000-00-00 00:00:00'),(160579,10,'S93.499S ','Sprain of other ligament of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(160578,10,'S93.499D ','Sprain of other ligament of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(160577,10,'S93.499A ','Sprain of other ligament of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(160576,10,'S93.492S ','Sprain of other ligament of left ankle, sequela','Y','0000-00-00 00:00:00'),(160575,10,'S93.492D ','Sprain of other ligament of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(160574,10,'S93.492A ','Sprain of other ligament of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(160573,10,'S93.491S ','Sprain of other ligament of right ankle, sequela','Y','0000-00-00 00:00:00'),(160572,10,'S93.491D ','Sprain of other ligament of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(160571,10,'S93.491A ','Sprain of other ligament of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(160570,10,'S93.439S ','Sprain of tibiofibular ligament of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(160569,10,'S93.439D ','Sprain of tibiofibular ligament of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(160568,10,'S93.439A ','Sprain of tibiofibular ligament of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(160567,10,'S93.432S ','Sprain of tibiofibular ligament of left ankle, sequela','Y','0000-00-00 00:00:00'),(160566,10,'S93.432D ','Sprain of tibiofibular ligament of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(160565,10,'S93.432A ','Sprain of tibiofibular ligament of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(160564,10,'S93.431S ','Sprain of tibiofibular ligament of right ankle, sequela','Y','0000-00-00 00:00:00'),(160563,10,'S93.431D ','Sprain of tibiofibular ligament of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(160562,10,'S93.431A ','Sprain of tibiofibular ligament of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(160561,10,'S93.429S ','Sprain of deltoid ligament of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(160560,10,'S93.429D ','Sprain of deltoid ligament of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(160559,10,'S93.429A ','Sprain of deltoid ligament of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(160558,10,'S93.422S ','Sprain of deltoid ligament of left ankle, sequela','Y','0000-00-00 00:00:00'),(160557,10,'S93.422D ','Sprain of deltoid ligament of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(160556,10,'S93.422A ','Sprain of deltoid ligament of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(160555,10,'S93.421S ','Sprain of deltoid ligament of right ankle, sequela','Y','0000-00-00 00:00:00'),(160554,10,'S93.421D ','Sprain of deltoid ligament of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(160553,10,'S93.421A ','Sprain of deltoid ligament of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(160552,10,'S93.419S ','Sprain of calcaneofibular ligament of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(160551,10,'S93.419D ','Sprain of calcaneofibular ligament of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(160550,10,'S93.419A ','Sprain of calcaneofibular ligament of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(160549,10,'S93.412S ','Sprain of calcaneofibular ligament of left ankle, sequela','Y','0000-00-00 00:00:00'),(160548,10,'S93.412D ','Sprain of calcaneofibular ligament of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(160547,10,'S93.412A ','Sprain of calcaneofibular ligament of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(160546,10,'S93.411S ','Sprain of calcaneofibular ligament of right ankle, sequela','Y','0000-00-00 00:00:00'),(160545,10,'S93.411D ','Sprain of calcaneofibular ligament of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(160544,10,'S93.411A ','Sprain of calcaneofibular ligament of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(160543,10,'S93.409S ','Sprain of unspecified ligament of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(160542,10,'S93.409D ','Sprain of unspecified ligament of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(160541,10,'S93.409A ','Sprain of unspecified ligament of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(160540,10,'S93.402S ','Sprain of unspecified ligament of left ankle, sequela','Y','0000-00-00 00:00:00'),(160539,10,'S93.402D ','Sprain of unspecified ligament of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(160538,10,'S93.402A ','Sprain of unspecified ligament of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(160537,10,'S93.401S ','Sprain of unspecified ligament of right ankle, sequela','Y','0000-00-00 00:00:00'),(160536,10,'S93.401D ','Sprain of unspecified ligament of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(160535,10,'S93.401A ','Sprain of unspecified ligament of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(160534,10,'S93.336S ','Other dislocation of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160533,10,'S93.336D ','Other dislocation of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160532,10,'S93.336A ','Other dislocation of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160531,10,'S93.335S ','Other dislocation of left foot, sequela','Y','0000-00-00 00:00:00'),(160530,10,'S93.335D ','Other dislocation of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160529,10,'S93.335A ','Other dislocation of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160528,10,'S93.334S ','Other dislocation of right foot, sequela','Y','0000-00-00 00:00:00'),(160527,10,'S93.334D ','Other dislocation of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160526,10,'S93.334A ','Other dislocation of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160525,10,'S93.333S ','Other subluxation of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160524,10,'S93.333D ','Other subluxation of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160523,10,'S93.333A ','Other subluxation of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160522,10,'S93.332S ','Other subluxation of left foot, sequela','Y','0000-00-00 00:00:00'),(160521,10,'S93.332D ','Other subluxation of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160520,10,'S93.332A ','Other subluxation of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160519,10,'S93.331S ','Other subluxation of right foot, sequela','Y','0000-00-00 00:00:00'),(160518,10,'S93.331D ','Other subluxation of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160517,10,'S93.331A ','Other subluxation of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160516,10,'S93.326S ','Dislocation of tarsometatarsal joint of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160515,10,'S93.326D ','Dislocation of tarsometatarsal joint of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160514,10,'S93.326A ','Dislocation of tarsometatarsal joint of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160513,10,'S93.325S ','Dislocation of tarsometatarsal joint of left foot, sequela','Y','0000-00-00 00:00:00'),(160512,10,'S93.325D ','Dislocation of tarsometatarsal joint of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160511,10,'S93.325A ','Dislocation of tarsometatarsal joint of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160510,10,'S93.324S ','Dislocation of tarsometatarsal joint of right foot, sequela','Y','0000-00-00 00:00:00'),(160509,10,'S93.324D ','Dislocation of tarsometatarsal joint of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160508,10,'S93.324A ','Dislocation of tarsometatarsal joint of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160507,10,'S93.323S ','Subluxation of tarsometatarsal joint of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160506,10,'S93.323D ','Subluxation of tarsometatarsal joint of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160505,10,'S93.323A ','Subluxation of tarsometatarsal joint of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160504,10,'S93.322S ','Subluxation of tarsometatarsal joint of left foot, sequela','Y','0000-00-00 00:00:00'),(160503,10,'S93.322D ','Subluxation of tarsometatarsal joint of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160502,10,'S93.322A ','Subluxation of tarsometatarsal joint of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160501,10,'S93.321S ','Subluxation of tarsometatarsal joint of right foot, sequela','Y','0000-00-00 00:00:00'),(160500,10,'S93.321D ','Subluxation of tarsometatarsal joint of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160499,10,'S93.321A ','Subluxation of tarsometatarsal joint of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160498,10,'S93.316S ','Dislocation of tarsal joint of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160497,10,'S93.316D ','Dislocation of tarsal joint of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160496,10,'S93.316A ','Dislocation of tarsal joint of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160495,10,'S93.315S ','Dislocation of tarsal joint of left foot, sequela','Y','0000-00-00 00:00:00'),(160494,10,'S93.315D ','Dislocation of tarsal joint of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160493,10,'S93.315A ','Dislocation of tarsal joint of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160492,10,'S93.314S ','Dislocation of tarsal joint of right foot, sequela','Y','0000-00-00 00:00:00'),(160491,10,'S93.314D ','Dislocation of tarsal joint of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160490,10,'S93.314A ','Dislocation of tarsal joint of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160489,10,'S93.313S ','Subluxation of tarsal joint of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160488,10,'S93.313D ','Subluxation of tarsal joint of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160487,10,'S93.313A ','Subluxation of tarsal joint of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160486,10,'S93.312S ','Subluxation of tarsal joint of left foot, sequela','Y','0000-00-00 00:00:00'),(160485,10,'S93.312D ','Subluxation of tarsal joint of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160484,10,'S93.312A ','Subluxation of tarsal joint of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160483,10,'S93.311S ','Subluxation of tarsal joint of right foot, sequela','Y','0000-00-00 00:00:00'),(160482,10,'S93.311D ','Subluxation of tarsal joint of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160481,10,'S93.311A ','Subluxation of tarsal joint of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160480,10,'S93.306S ','Unspecified dislocation of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160479,10,'S93.306D ','Unspecified dislocation of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160478,10,'S93.306A ','Unspecified dislocation of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160477,10,'S93.305S ','Unspecified dislocation of left foot, sequela','Y','0000-00-00 00:00:00'),(160476,10,'S93.305D ','Unspecified dislocation of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160475,10,'S93.305A ','Unspecified dislocation of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160474,10,'S93.304S ','Unspecified dislocation of right foot, sequela','Y','0000-00-00 00:00:00'),(160473,10,'S93.304D ','Unspecified dislocation of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160472,10,'S93.304A ','Unspecified dislocation of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160471,10,'S93.303S ','Unspecified subluxation of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160470,10,'S93.303D ','Unspecified subluxation of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160469,10,'S93.303A ','Unspecified subluxation of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(160468,10,'S93.302S ','Unspecified subluxation of left foot, sequela','Y','0000-00-00 00:00:00'),(160467,10,'S93.302D ','Unspecified subluxation of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160466,10,'S93.302A ','Unspecified subluxation of left foot, initial encounter','Y','0000-00-00 00:00:00'),(160465,10,'S93.301S ','Unspecified subluxation of right foot, sequela','Y','0000-00-00 00:00:00'),(160464,10,'S93.301D ','Unspecified subluxation of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(160463,10,'S93.301A ','Unspecified subluxation of right foot, initial encounter','Y','0000-00-00 00:00:00'),(160462,10,'S93.149S ','Subluxation of metatarsophalangeal joint of unspecified toe(s), sequela','Y','0000-00-00 00:00:00'),(160461,10,'S93.149D ','Subluxation of metatarsophalangeal joint of unspecified toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160460,10,'S93.149A ','Subluxation of metatarsophalangeal joint of unspecified toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160459,10,'S93.146S ','Subluxation of metatarsophalangeal joint of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160458,10,'S93.146D ','Subluxation of metatarsophalangeal joint of unspecified lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160457,10,'S93.146A ','Subluxation of metatarsophalangeal joint of unspecified lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160456,10,'S93.145S ','Subluxation of metatarsophalangeal joint of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160455,10,'S93.145D ','Subluxation of metatarsophalangeal joint of left lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160454,10,'S93.145A ','Subluxation of metatarsophalangeal joint of left lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160453,10,'S93.144S ','Subluxation of metatarsophalangeal joint of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160452,10,'S93.144D ','Subluxation of metatarsophalangeal joint of right lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160451,10,'S93.144A ','Subluxation of metatarsophalangeal joint of right lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160450,10,'S93.143S ','Subluxation of metatarsophalangeal joint of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(160449,10,'S93.143D ','Subluxation of metatarsophalangeal joint of unspecified great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160448,10,'S93.143A ','Subluxation of metatarsophalangeal joint of unspecified great toe, initial encounter','Y','0000-00-00 00:00:00'),(160447,10,'S93.142S ','Subluxation of metatarsophalangeal joint of left great toe, sequela','Y','0000-00-00 00:00:00'),(160446,10,'S93.142D ','Subluxation of metatarsophalangeal joint of left great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160445,10,'S93.142A ','Subluxation of metatarsophalangeal joint of left great toe, initial encounter','Y','0000-00-00 00:00:00'),(160444,10,'S93.141S ','Subluxation of metatarsophalangeal joint of right great toe, sequela','Y','0000-00-00 00:00:00'),(160443,10,'S93.141D ','Subluxation of metatarsophalangeal joint of right great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160442,10,'S93.141A ','Subluxation of metatarsophalangeal joint of right great toe, initial encounter','Y','0000-00-00 00:00:00'),(160441,10,'S93.139S ','Subluxation of interphalangeal joint of unspecified toe(s), sequela','Y','0000-00-00 00:00:00'),(160440,10,'S93.139D ','Subluxation of interphalangeal joint of unspecified toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160439,10,'S93.139A ','Subluxation of interphalangeal joint of unspecified toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160438,10,'S93.136S ','Subluxation of interphalangeal joint of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160437,10,'S93.136D ','Subluxation of interphalangeal joint of unspecified lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160436,10,'S93.136A ','Subluxation of interphalangeal joint of unspecified lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160435,10,'S93.135S ','Subluxation of interphalangeal joint of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160434,10,'S93.135D ','Subluxation of interphalangeal joint of left lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160433,10,'S93.135A ','Subluxation of interphalangeal joint of left lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160432,10,'S93.134S ','Subluxation of interphalangeal joint of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160431,10,'S93.134D ','Subluxation of interphalangeal joint of right lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160430,10,'S93.134A ','Subluxation of interphalangeal joint of right lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160429,10,'S93.133S ','Subluxation of interphalangeal joint of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(160428,10,'S93.133D ','Subluxation of interphalangeal joint of unspecified great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160427,10,'S93.133A ','Subluxation of interphalangeal joint of unspecified great toe, initial encounter','Y','0000-00-00 00:00:00'),(160426,10,'S93.132S ','Subluxation of interphalangeal joint of left great toe, sequela','Y','0000-00-00 00:00:00'),(160425,10,'S93.132D ','Subluxation of interphalangeal joint of left great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160424,10,'S93.132A ','Subluxation of interphalangeal joint of left great toe, initial encounter','Y','0000-00-00 00:00:00'),(160423,10,'S93.131S ','Subluxation of interphalangeal joint of right great toe, sequela','Y','0000-00-00 00:00:00'),(160422,10,'S93.131D ','Subluxation of interphalangeal joint of right great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160421,10,'S93.131A ','Subluxation of interphalangeal joint of right great toe, initial encounter','Y','0000-00-00 00:00:00'),(160420,10,'S93.129S ','Dislocation of metatarsophalangeal joint of unspecified toe(s), sequela','Y','0000-00-00 00:00:00'),(160419,10,'S93.129D ','Dislocation of metatarsophalangeal joint of unspecified toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160418,10,'S93.129A ','Dislocation of metatarsophalangeal joint of unspecified toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160417,10,'S93.126S ','Dislocation of metatarsophalangeal joint of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160416,10,'S93.126D ','Dislocation of metatarsophalangeal joint of unspecified lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160415,10,'S93.126A ','Dislocation of metatarsophalangeal joint of unspecified lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160414,10,'S93.125S ','Dislocation of metatarsophalangeal joint of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160413,10,'S93.125D ','Dislocation of metatarsophalangeal joint of left lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160412,10,'S93.125A ','Dislocation of metatarsophalangeal joint of left lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160411,10,'S93.124S ','Dislocation of metatarsophalangeal joint of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160410,10,'S93.124D ','Dislocation of metatarsophalangeal joint of right lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160409,10,'S93.124A ','Dislocation of metatarsophalangeal joint of right lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160408,10,'S93.123S ','Dislocation of metatarsophalangeal joint of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(160407,10,'S93.123D ','Dislocation of metatarsophalangeal joint of unspecified great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160406,10,'S93.123A ','Dislocation of metatarsophalangeal joint of unspecified great toe, initial encounter','Y','0000-00-00 00:00:00'),(160405,10,'S93.122S ','Dislocation of metatarsophalangeal joint of left great toe, sequela','Y','0000-00-00 00:00:00'),(160404,10,'S93.122D ','Dislocation of metatarsophalangeal joint of left great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160403,10,'S93.122A ','Dislocation of metatarsophalangeal joint of left great toe, initial encounter','Y','0000-00-00 00:00:00'),(160402,10,'S93.121S ','Dislocation of metatarsophalangeal joint of right great toe, sequela','Y','0000-00-00 00:00:00'),(160401,10,'S93.121D ','Dislocation of metatarsophalangeal joint of right great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160400,10,'S93.121A ','Dislocation of metatarsophalangeal joint of right great toe, initial encounter','Y','0000-00-00 00:00:00'),(160399,10,'S93.119S ','Dislocation of interphalangeal joint of unspecified toe(s), sequela','Y','0000-00-00 00:00:00'),(160398,10,'S93.119D ','Dislocation of interphalangeal joint of unspecified toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160397,10,'S93.119A ','Dislocation of interphalangeal joint of unspecified toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160396,10,'S93.116S ','Dislocation of interphalangeal joint of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160395,10,'S93.116D ','Dislocation of interphalangeal joint of unspecified lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160394,10,'S93.116A ','Dislocation of interphalangeal joint of unspecified lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160393,10,'S93.115S ','Dislocation of interphalangeal joint of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160392,10,'S93.115D ','Dislocation of interphalangeal joint of left lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160391,10,'S93.115A ','Dislocation of interphalangeal joint of left lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160390,10,'S93.114S ','Dislocation of interphalangeal joint of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160389,10,'S93.114D ','Dislocation of interphalangeal joint of right lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160388,10,'S93.114A ','Dislocation of interphalangeal joint of right lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160387,10,'S93.113S ','Dislocation of interphalangeal joint of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(160386,10,'S93.113D ','Dislocation of interphalangeal joint of unspecified great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160385,10,'S93.113A ','Dislocation of interphalangeal joint of unspecified great toe, initial encounter','Y','0000-00-00 00:00:00'),(160384,10,'S93.112S ','Dislocation of interphalangeal joint of left great toe, sequela','Y','0000-00-00 00:00:00'),(160383,10,'S93.112D ','Dislocation of interphalangeal joint of left great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160382,10,'S93.112A ','Dislocation of interphalangeal joint of left great toe, initial encounter','Y','0000-00-00 00:00:00'),(160381,10,'S93.111S ','Dislocation of interphalangeal joint of right great toe, sequela','Y','0000-00-00 00:00:00'),(160380,10,'S93.111D ','Dislocation of interphalangeal joint of right great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(160379,10,'S93.111A ','Dislocation of interphalangeal joint of right great toe, initial encounter','Y','0000-00-00 00:00:00'),(160378,10,'S93.106S ','Unspecified dislocation of unspecified toe(s), sequela','Y','0000-00-00 00:00:00'),(160377,10,'S93.106D ','Unspecified dislocation of unspecified toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160376,10,'S93.106A ','Unspecified dislocation of unspecified toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160375,10,'S93.105S ','Unspecified dislocation of left toe(s), sequela','Y','0000-00-00 00:00:00'),(160374,10,'S93.105D ','Unspecified dislocation of left toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160373,10,'S93.105A ','Unspecified dislocation of left toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160372,10,'S93.104S ','Unspecified dislocation of right toe(s), sequela','Y','0000-00-00 00:00:00'),(160371,10,'S93.104D ','Unspecified dislocation of right toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160370,10,'S93.104A ','Unspecified dislocation of right toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160369,10,'S93.103S ','Unspecified subluxation of unspecified toe(s), sequela','Y','0000-00-00 00:00:00'),(160368,10,'S93.103D ','Unspecified subluxation of unspecified toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160367,10,'S93.103A ','Unspecified subluxation of unspecified toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160366,10,'S93.102S ','Unspecified subluxation of left toe(s), sequela','Y','0000-00-00 00:00:00'),(160365,10,'S93.102D ','Unspecified subluxation of left toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160364,10,'S93.102A ','Unspecified subluxation of left toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160363,10,'S93.101S ','Unspecified subluxation of right toe(s), sequela','Y','0000-00-00 00:00:00'),(160362,10,'S93.101D ','Unspecified subluxation of right toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(160361,10,'S93.101A ','Unspecified subluxation of right toe(s), initial encounter','Y','0000-00-00 00:00:00'),(160360,10,'S93.06XS ','Dislocation of unspecified ankle joint, sequela','Y','0000-00-00 00:00:00'),(160359,10,'S93.06XD ','Dislocation of unspecified ankle joint, subsequent encounter','Y','0000-00-00 00:00:00'),(160358,10,'S93.06XA ','Dislocation of unspecified ankle joint, initial encounter','Y','0000-00-00 00:00:00'),(160357,10,'S93.05XS ','Dislocation of left ankle joint, sequela','Y','0000-00-00 00:00:00'),(160356,10,'S93.05XD ','Dislocation of left ankle joint, subsequent encounter','Y','0000-00-00 00:00:00'),(160355,10,'S93.05XA ','Dislocation of left ankle joint, initial encounter','Y','0000-00-00 00:00:00'),(160354,10,'S93.04XS ','Dislocation of right ankle joint, sequela','Y','0000-00-00 00:00:00'),(160353,10,'S93.04XD ','Dislocation of right ankle joint, subsequent encounter','Y','0000-00-00 00:00:00'),(160352,10,'S93.04XA ','Dislocation of right ankle joint, initial encounter','Y','0000-00-00 00:00:00'),(160351,10,'S93.03XS ','Subluxation of unspecified ankle joint, sequela','Y','0000-00-00 00:00:00'),(160350,10,'S93.03XD ','Subluxation of unspecified ankle joint, subsequent encounter','Y','0000-00-00 00:00:00'),(160349,10,'S93.03XA ','Subluxation of unspecified ankle joint, initial encounter','Y','0000-00-00 00:00:00'),(160348,10,'S93.02XS ','Subluxation of left ankle joint, sequela','Y','0000-00-00 00:00:00'),(160347,10,'S93.02XD ','Subluxation of left ankle joint, subsequent encounter','Y','0000-00-00 00:00:00'),(160346,10,'S93.02XA ','Subluxation of left ankle joint, initial encounter','Y','0000-00-00 00:00:00'),(160345,10,'S93.01XS ','Subluxation of right ankle joint, sequela','Y','0000-00-00 00:00:00'),(160344,10,'S93.01XD ','Subluxation of right ankle joint, subsequent encounter','Y','0000-00-00 00:00:00'),(160343,10,'S93.01XA ','Subluxation of right ankle joint, initial encounter','Y','0000-00-00 00:00:00'),(160342,10,'S92.919S ','Unspecified fracture of unspecified toe(s), sequela','Y','0000-00-00 00:00:00'),(160341,10,'S92.919P ','Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160340,10,'S92.919K ','Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160339,10,'S92.919G ','Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160338,10,'S92.919D ','Unspecified fracture of unspecified toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160337,10,'S92.919B ','Unspecified fracture of unspecified toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160336,10,'S92.919A ','Unspecified fracture of unspecified toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160335,10,'S92.912S ','Unspecified fracture of left toe(s), sequela','Y','0000-00-00 00:00:00'),(160334,10,'S92.912P ','Unspecified fracture of left toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160333,10,'S92.912K ','Unspecified fracture of left toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160332,10,'S92.912G ','Unspecified fracture of left toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160331,10,'S92.912D ','Unspecified fracture of left toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160330,10,'S92.912B ','Unspecified fracture of left toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160329,10,'S92.912A ','Unspecified fracture of left toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160328,10,'S92.911S ','Unspecified fracture of right toe(s), sequela','Y','0000-00-00 00:00:00'),(160327,10,'S92.911P ','Unspecified fracture of right toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160326,10,'S92.911K ','Unspecified fracture of right toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160325,10,'S92.911G ','Unspecified fracture of right toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160324,10,'S92.911D ','Unspecified fracture of right toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160323,10,'S92.911B ','Unspecified fracture of right toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160322,10,'S92.911A ','Unspecified fracture of right toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160321,10,'S92.909S ','Unspecified fracture of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160320,10,'S92.909P ','Unspecified fracture of unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160319,10,'S92.909K ','Unspecified fracture of unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160318,10,'S92.909G ','Unspecified fracture of unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160317,10,'S92.909D ','Unspecified fracture of unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160316,10,'S92.909B ','Unspecified fracture of unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160315,10,'S92.909A ','Unspecified fracture of unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160314,10,'S92.902S ','Unspecified fracture of left foot, sequela','Y','0000-00-00 00:00:00'),(160313,10,'S92.902P ','Unspecified fracture of left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160312,10,'S92.902K ','Unspecified fracture of left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160311,10,'S92.902G ','Unspecified fracture of left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160310,10,'S92.902D ','Unspecified fracture of left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160309,10,'S92.902B ','Unspecified fracture of left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160308,10,'S92.902A ','Unspecified fracture of left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160307,10,'S92.901S ','Unspecified fracture of right foot, sequela','Y','0000-00-00 00:00:00'),(160306,10,'S92.901P ','Unspecified fracture of right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160305,10,'S92.901K ','Unspecified fracture of right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160304,10,'S92.901G ','Unspecified fracture of right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160303,10,'S92.901D ','Unspecified fracture of right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160302,10,'S92.901B ','Unspecified fracture of right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160301,10,'S92.901A ','Unspecified fracture of right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160300,10,'S92.819S ','Other fracture of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(160299,10,'S92.819P ','Other fracture of unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160298,10,'S92.819K ','Other fracture of unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160297,10,'S92.819G ','Other fracture of unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160296,10,'S92.819D ','Other fracture of unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160295,10,'S92.819B ','Other fracture of unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160294,10,'S92.819A ','Other fracture of unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160293,10,'S92.812S ','Other fracture of left foot, sequela','Y','0000-00-00 00:00:00'),(160292,10,'S92.812P ','Other fracture of left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160291,10,'S92.812K ','Other fracture of left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160290,10,'S92.812G ','Other fracture of left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160289,10,'S92.812D ','Other fracture of left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160288,10,'S92.812B ','Other fracture of left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160287,10,'S92.812A ','Other fracture of left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160286,10,'S92.811S ','Other fracture of right foot, sequela','Y','0000-00-00 00:00:00'),(160285,10,'S92.811P ','Other fracture of right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160284,10,'S92.811K ','Other fracture of right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160283,10,'S92.811G ','Other fracture of right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160282,10,'S92.811D ','Other fracture of right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160281,10,'S92.811B ','Other fracture of right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160280,10,'S92.811A ','Other fracture of right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160279,10,'S92.599S ','Other fracture of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160278,10,'S92.599P ','Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160277,10,'S92.599K ','Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160276,10,'S92.599G ','Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160275,10,'S92.599D ','Other fracture of unspecified lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160274,10,'S92.599B ','Other fracture of unspecified lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160273,10,'S92.599A ','Other fracture of unspecified lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160272,10,'S92.592S ','Other fracture of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160271,10,'S92.592P ','Other fracture of left lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160270,10,'S92.592K ','Other fracture of left lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160269,10,'S92.592G ','Other fracture of left lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160268,10,'S92.592D ','Other fracture of left lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160267,10,'S92.592B ','Other fracture of left lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160266,10,'S92.592A ','Other fracture of left lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160265,10,'S92.591S ','Other fracture of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160264,10,'S92.591P ','Other fracture of right lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160263,10,'S92.591K ','Other fracture of right lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160262,10,'S92.591G ','Other fracture of right lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160261,10,'S92.591D ','Other fracture of right lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160260,10,'S92.591B ','Other fracture of right lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160259,10,'S92.591A ','Other fracture of right lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160258,10,'S92.536S ','Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160257,10,'S92.536P ','Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160256,10,'S92.536K ','Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160255,10,'S92.536G ','Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160254,10,'S92.536D ','Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160253,10,'S92.536B ','Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160252,10,'S92.536A ','Nondisplaced fracture of distal phalanx of unspecified lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160251,10,'S92.535S ','Nondisplaced fracture of distal phalanx of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160250,10,'S92.535P ','Nondisplaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160249,10,'S92.535K ','Nondisplaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160248,10,'S92.535G ','Nondisplaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160247,10,'S92.535D ','Nondisplaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160246,10,'S92.535B ','Nondisplaced fracture of distal phalanx of left lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160245,10,'S92.535A ','Nondisplaced fracture of distal phalanx of left lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160244,10,'S92.534S ','Nondisplaced fracture of distal phalanx of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160243,10,'S92.534P ','Nondisplaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160242,10,'S92.534K ','Nondisplaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160241,10,'S92.534G ','Nondisplaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160240,10,'S92.534D ','Nondisplaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160239,10,'S92.534B ','Nondisplaced fracture of distal phalanx of right lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160238,10,'S92.534A ','Nondisplaced fracture of distal phalanx of right lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160237,10,'S92.533S ','Displaced fracture of distal phalanx of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160236,10,'S92.533P ','Displaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160235,10,'S92.533K ','Displaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160234,10,'S92.533G ','Displaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160233,10,'S92.533D ','Displaced fracture of distal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160232,10,'S92.533B ','Displaced fracture of distal phalanx of unspecified lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160231,10,'S92.533A ','Displaced fracture of distal phalanx of unspecified lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160230,10,'S92.532S ','Displaced fracture of distal phalanx of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160229,10,'S92.532P ','Displaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160228,10,'S92.532K ','Displaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160227,10,'S92.532G ','Displaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160226,10,'S92.532D ','Displaced fracture of distal phalanx of left lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160225,10,'S92.532B ','Displaced fracture of distal phalanx of left lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160224,10,'S92.532A ','Displaced fracture of distal phalanx of left lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160223,10,'S92.531S ','Displaced fracture of distal phalanx of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160222,10,'S92.531P ','Displaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160221,10,'S92.531K ','Displaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160220,10,'S92.531G ','Displaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160219,10,'S92.531D ','Displaced fracture of distal phalanx of right lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160218,10,'S92.531B ','Displaced fracture of distal phalanx of right lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160217,10,'S92.531A ','Displaced fracture of distal phalanx of right lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160216,10,'S92.526S ','Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160215,10,'S92.526P ','Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160214,10,'S92.526K ','Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160213,10,'S92.526G ','Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160212,10,'S92.526D ','Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160211,10,'S92.526B ','Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160210,10,'S92.526A ','Nondisplaced fracture of middle phalanx of unspecified lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160209,10,'S92.525S ','Nondisplaced fracture of middle phalanx of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160208,10,'S92.525P ','Nondisplaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160207,10,'S92.525K ','Nondisplaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160206,10,'S92.525G ','Nondisplaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160205,10,'S92.525D ','Nondisplaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160204,10,'S92.525B ','Nondisplaced fracture of middle phalanx of left lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160203,10,'S92.525A ','Nondisplaced fracture of middle phalanx of left lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160202,10,'S92.524S ','Nondisplaced fracture of middle phalanx of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160201,10,'S92.524P ','Nondisplaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160200,10,'S92.524K ','Nondisplaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160199,10,'S92.524G ','Nondisplaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160198,10,'S92.524D ','Nondisplaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160197,10,'S92.524B ','Nondisplaced fracture of middle phalanx of right lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160196,10,'S92.524A ','Nondisplaced fracture of middle phalanx of right lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160195,10,'S92.523S ','Displaced fracture of middle phalanx of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160194,10,'S92.523P ','Displaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160193,10,'S92.523K ','Displaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160192,10,'S92.523G ','Displaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160191,10,'S92.523D ','Displaced fracture of middle phalanx of unspecified lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160190,10,'S92.523B ','Displaced fracture of middle phalanx of unspecified lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160189,10,'S92.523A ','Displaced fracture of middle phalanx of unspecified lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160188,10,'S92.522S ','Displaced fracture of middle phalanx of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160187,10,'S92.522P ','Displaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160186,10,'S92.522K ','Displaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160185,10,'S92.522G ','Displaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160184,10,'S92.522D ','Displaced fracture of middle phalanx of left lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160183,10,'S92.522B ','Displaced fracture of middle phalanx of left lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160182,10,'S92.522A ','Displaced fracture of middle phalanx of left lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160181,10,'S92.521S ','Displaced fracture of middle phalanx of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160180,10,'S92.521P ','Displaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160179,10,'S92.521K ','Displaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160178,10,'S92.521G ','Displaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160177,10,'S92.521D ','Displaced fracture of middle phalanx of right lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160176,10,'S92.521B ','Displaced fracture of middle phalanx of right lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160175,10,'S92.521A ','Displaced fracture of middle phalanx of right lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160174,10,'S92.516S ','Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160173,10,'S92.516P ','Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160172,10,'S92.516K ','Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160171,10,'S92.516G ','Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160170,10,'S92.516D ','Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160169,10,'S92.516B ','Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160168,10,'S92.516A ','Nondisplaced fracture of proximal phalanx of unspecified lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160167,10,'S92.515S ','Nondisplaced fracture of proximal phalanx of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160166,10,'S92.515P ','Nondisplaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160165,10,'S92.515K ','Nondisplaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160164,10,'S92.515G ','Nondisplaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160163,10,'S92.515D ','Nondisplaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160162,10,'S92.515B ','Nondisplaced fracture of proximal phalanx of left lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160161,10,'S92.515A ','Nondisplaced fracture of proximal phalanx of left lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160160,10,'S92.514S ','Nondisplaced fracture of proximal phalanx of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160159,10,'S92.514P ','Nondisplaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160158,10,'S92.514K ','Nondisplaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160157,10,'S92.514G ','Nondisplaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160156,10,'S92.514D ','Nondisplaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160155,10,'S92.514B ','Nondisplaced fracture of proximal phalanx of right lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160154,10,'S92.514A ','Nondisplaced fracture of proximal phalanx of right lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160153,10,'S92.513S ','Displaced fracture of proximal phalanx of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160152,10,'S92.513P ','Displaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160151,10,'S92.513K ','Displaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160150,10,'S92.513G ','Displaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160149,10,'S92.513D ','Displaced fracture of proximal phalanx of unspecified lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160148,10,'S92.513B ','Displaced fracture of proximal phalanx of unspecified lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160147,10,'S92.513A ','Displaced fracture of proximal phalanx of unspecified lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160146,10,'S92.512S ','Displaced fracture of proximal phalanx of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160145,10,'S92.512P ','Displaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160144,10,'S92.512K ','Displaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160143,10,'S92.512G ','Displaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160142,10,'S92.512D ','Displaced fracture of proximal phalanx of left lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160141,10,'S92.512B ','Displaced fracture of proximal phalanx of left lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160140,10,'S92.512A ','Displaced fracture of proximal phalanx of left lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160139,10,'S92.511S ','Displaced fracture of proximal phalanx of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160138,10,'S92.511P ','Displaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160137,10,'S92.511K ','Displaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160136,10,'S92.511G ','Displaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160135,10,'S92.511D ','Displaced fracture of proximal phalanx of right lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160134,10,'S92.511B ','Displaced fracture of proximal phalanx of right lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160133,10,'S92.511A ','Displaced fracture of proximal phalanx of right lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160132,10,'S92.506S ','Nondisplaced unspecified fracture of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160131,10,'S92.506P ','Nondisplaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160130,10,'S92.506K ','Nondisplaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160129,10,'S92.506G ','Nondisplaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160128,10,'S92.506D ','Nondisplaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160127,10,'S92.506B ','Nondisplaced unspecified fracture of unspecified lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160126,10,'S92.506A ','Nondisplaced unspecified fracture of unspecified lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160125,10,'S92.505S ','Nondisplaced unspecified fracture of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160124,10,'S92.505P ','Nondisplaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160123,10,'S92.505K ','Nondisplaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160122,10,'S92.505G ','Nondisplaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160121,10,'S92.505D ','Nondisplaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160120,10,'S92.505B ','Nondisplaced unspecified fracture of left lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160119,10,'S92.505A ','Nondisplaced unspecified fracture of left lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160118,10,'S92.504S ','Nondisplaced unspecified fracture of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160117,10,'S92.504P ','Nondisplaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160116,10,'S92.504K ','Nondisplaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160115,10,'S92.504G ','Nondisplaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160114,10,'S92.504D ','Nondisplaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160113,10,'S92.504B ','Nondisplaced unspecified fracture of right lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160112,10,'S92.504A ','Nondisplaced unspecified fracture of right lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160111,10,'S92.503S ','Displaced unspecified fracture of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160110,10,'S92.503P ','Displaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160109,10,'S92.503K ','Displaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160108,10,'S92.503G ','Displaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160107,10,'S92.503D ','Displaced unspecified fracture of unspecified lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160106,10,'S92.503B ','Displaced unspecified fracture of unspecified lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160105,10,'S92.503A ','Displaced unspecified fracture of unspecified lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160104,10,'S92.502S ','Displaced unspecified fracture of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160103,10,'S92.502P ','Displaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160102,10,'S92.502K ','Displaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160101,10,'S92.502G ','Displaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160100,10,'S92.502D ','Displaced unspecified fracture of left lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160099,10,'S92.502B ','Displaced unspecified fracture of left lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160098,10,'S92.502A ','Displaced unspecified fracture of left lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160097,10,'S92.501S ','Displaced unspecified fracture of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(160096,10,'S92.501P ','Displaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160095,10,'S92.501K ','Displaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160094,10,'S92.501G ','Displaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160093,10,'S92.501D ','Displaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160092,10,'S92.501B ','Displaced unspecified fracture of right lesser toe(s), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160091,10,'S92.501A ','Displaced unspecified fracture of right lesser toe(s), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160090,10,'S92.499S ','Other fracture of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(160089,10,'S92.499P ','Other fracture of unspecified great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160088,10,'S92.499K ','Other fracture of unspecified great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160087,10,'S92.499G ','Other fracture of unspecified great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160086,10,'S92.499D ','Other fracture of unspecified great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160085,10,'S92.499B ','Other fracture of unspecified great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160084,10,'S92.499A ','Other fracture of unspecified great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160083,10,'S92.492S ','Other fracture of left great toe, sequela','Y','0000-00-00 00:00:00'),(160082,10,'S92.492P ','Other fracture of left great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160081,10,'S92.492K ','Other fracture of left great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160080,10,'S92.492G ','Other fracture of left great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160079,10,'S92.492D ','Other fracture of left great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160078,10,'S92.492B ','Other fracture of left great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160077,10,'S92.492A ','Other fracture of left great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160076,10,'S92.491S ','Other fracture of right great toe, sequela','Y','0000-00-00 00:00:00'),(160075,10,'S92.491P ','Other fracture of right great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160074,10,'S92.491K ','Other fracture of right great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160073,10,'S92.491G ','Other fracture of right great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160072,10,'S92.491D ','Other fracture of right great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160071,10,'S92.491B ','Other fracture of right great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160070,10,'S92.491A ','Other fracture of right great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160069,10,'S92.426S ','Nondisplaced fracture of distal phalanx of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(160068,10,'S92.426P ','Nondisplaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160067,10,'S92.426K ','Nondisplaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160066,10,'S92.426G ','Nondisplaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160065,10,'S92.426D ','Nondisplaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160064,10,'S92.426B ','Nondisplaced fracture of distal phalanx of unspecified great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160063,10,'S92.426A ','Nondisplaced fracture of distal phalanx of unspecified great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160062,10,'S92.425S ','Nondisplaced fracture of distal phalanx of left great toe, sequela','Y','0000-00-00 00:00:00'),(160061,10,'S92.425P ','Nondisplaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160060,10,'S92.425K ','Nondisplaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160059,10,'S92.425G ','Nondisplaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160058,10,'S92.425D ','Nondisplaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160057,10,'S92.425B ','Nondisplaced fracture of distal phalanx of left great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160056,10,'S92.425A ','Nondisplaced fracture of distal phalanx of left great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160055,10,'S92.424S ','Nondisplaced fracture of distal phalanx of right great toe, sequela','Y','0000-00-00 00:00:00'),(160054,10,'S92.424P ','Nondisplaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160053,10,'S92.424K ','Nondisplaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160052,10,'S92.424G ','Nondisplaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160051,10,'S92.424D ','Nondisplaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160050,10,'S92.424B ','Nondisplaced fracture of distal phalanx of right great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160049,10,'S92.424A ','Nondisplaced fracture of distal phalanx of right great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160048,10,'S92.423S ','Displaced fracture of distal phalanx of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(160047,10,'S92.423P ','Displaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160046,10,'S92.423K ','Displaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160045,10,'S92.423G ','Displaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160044,10,'S92.423D ','Displaced fracture of distal phalanx of unspecified great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160043,10,'S92.423B ','Displaced fracture of distal phalanx of unspecified great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160042,10,'S92.423A ','Displaced fracture of distal phalanx of unspecified great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160041,10,'S92.422S ','Displaced fracture of distal phalanx of left great toe, sequela','Y','0000-00-00 00:00:00'),(160040,10,'S92.422P ','Displaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160039,10,'S92.422K ','Displaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160038,10,'S92.422G ','Displaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160037,10,'S92.422D ','Displaced fracture of distal phalanx of left great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160036,10,'S92.422B ','Displaced fracture of distal phalanx of left great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160035,10,'S92.422A ','Displaced fracture of distal phalanx of left great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160034,10,'S92.421S ','Displaced fracture of distal phalanx of right great toe, sequela','Y','0000-00-00 00:00:00'),(160033,10,'S92.421P ','Displaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160032,10,'S92.421K ','Displaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160031,10,'S92.421G ','Displaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160030,10,'S92.421D ','Displaced fracture of distal phalanx of right great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160029,10,'S92.421B ','Displaced fracture of distal phalanx of right great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160028,10,'S92.421A ','Displaced fracture of distal phalanx of right great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160027,10,'S92.416S ','Nondisplaced fracture of proximal phalanx of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(160026,10,'S92.416P ','Nondisplaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160025,10,'S92.416K ','Nondisplaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160024,10,'S92.416G ','Nondisplaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160023,10,'S92.416D ','Nondisplaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160022,10,'S92.416B ','Nondisplaced fracture of proximal phalanx of unspecified great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160021,10,'S92.416A ','Nondisplaced fracture of proximal phalanx of unspecified great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160020,10,'S92.415S ','Nondisplaced fracture of proximal phalanx of left great toe, sequela','Y','0000-00-00 00:00:00'),(160019,10,'S92.415P ','Nondisplaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160018,10,'S92.415K ','Nondisplaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160017,10,'S92.415G ','Nondisplaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160016,10,'S92.415D ','Nondisplaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160015,10,'S92.415B ','Nondisplaced fracture of proximal phalanx of left great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160014,10,'S92.415A ','Nondisplaced fracture of proximal phalanx of left great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160013,10,'S92.414S ','Nondisplaced fracture of proximal phalanx of right great toe, sequela','Y','0000-00-00 00:00:00'),(160012,10,'S92.414P ','Nondisplaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160011,10,'S92.414K ','Nondisplaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160010,10,'S92.414G ','Nondisplaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160009,10,'S92.414D ','Nondisplaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160008,10,'S92.414B ','Nondisplaced fracture of proximal phalanx of right great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160007,10,'S92.414A ','Nondisplaced fracture of proximal phalanx of right great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(160006,10,'S92.413S ','Displaced fracture of proximal phalanx of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(160005,10,'S92.413P ','Displaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(160004,10,'S92.413K ','Displaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(160003,10,'S92.413G ','Displaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(160002,10,'S92.413D ','Displaced fracture of proximal phalanx of unspecified great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(160001,10,'S92.413B ','Displaced fracture of proximal phalanx of unspecified great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(160000,10,'S92.413A ','Displaced fracture of proximal phalanx of unspecified great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159999,10,'S92.412S ','Displaced fracture of proximal phalanx of left great toe, sequela','Y','0000-00-00 00:00:00'),(159998,10,'S92.412P ','Displaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159997,10,'S92.412K ','Displaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159996,10,'S92.412G ','Displaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159995,10,'S92.412D ','Displaced fracture of proximal phalanx of left great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159994,10,'S92.412B ','Displaced fracture of proximal phalanx of left great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159993,10,'S92.412A ','Displaced fracture of proximal phalanx of left great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159992,10,'S92.411S ','Displaced fracture of proximal phalanx of right great toe, sequela','Y','0000-00-00 00:00:00'),(159991,10,'S92.411P ','Displaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159990,10,'S92.411K ','Displaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159989,10,'S92.411G ','Displaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159988,10,'S92.411D ','Displaced fracture of proximal phalanx of right great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159987,10,'S92.411B ','Displaced fracture of proximal phalanx of right great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159986,10,'S92.411A ','Displaced fracture of proximal phalanx of right great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159985,10,'S92.406S ','Nondisplaced unspecified fracture of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(159984,10,'S92.406P ','Nondisplaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159983,10,'S92.406K ','Nondisplaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159982,10,'S92.406G ','Nondisplaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159981,10,'S92.406D ','Nondisplaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159980,10,'S92.406B ','Nondisplaced unspecified fracture of unspecified great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159979,10,'S92.406A ','Nondisplaced unspecified fracture of unspecified great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159978,10,'S92.405S ','Nondisplaced unspecified fracture of left great toe, sequela','Y','0000-00-00 00:00:00'),(159977,10,'S92.405P ','Nondisplaced unspecified fracture of left great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159976,10,'S92.405K ','Nondisplaced unspecified fracture of left great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159975,10,'S92.405G ','Nondisplaced unspecified fracture of left great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159974,10,'S92.405D ','Nondisplaced unspecified fracture of left great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159973,10,'S92.405B ','Nondisplaced unspecified fracture of left great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159972,10,'S92.405A ','Nondisplaced unspecified fracture of left great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159971,10,'S92.404S ','Nondisplaced unspecified fracture of right great toe, sequela','Y','0000-00-00 00:00:00'),(159970,10,'S92.404P ','Nondisplaced unspecified fracture of right great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159969,10,'S92.404K ','Nondisplaced unspecified fracture of right great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159968,10,'S92.404G ','Nondisplaced unspecified fracture of right great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159967,10,'S92.404D ','Nondisplaced unspecified fracture of right great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159966,10,'S92.404B ','Nondisplaced unspecified fracture of right great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159965,10,'S92.404A ','Nondisplaced unspecified fracture of right great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159964,10,'S92.403S ','Displaced unspecified fracture of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(159963,10,'S92.403P ','Displaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159962,10,'S92.403K ','Displaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159961,10,'S92.403G ','Displaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159960,10,'S92.403D ','Displaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159959,10,'S92.403B ','Displaced unspecified fracture of unspecified great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159958,10,'S92.403A ','Displaced unspecified fracture of unspecified great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159957,10,'S92.402S ','Displaced unspecified fracture of left great toe, sequela','Y','0000-00-00 00:00:00'),(159956,10,'S92.402P ','Displaced unspecified fracture of left great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159955,10,'S92.402K ','Displaced unspecified fracture of left great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159954,10,'S92.402G ','Displaced unspecified fracture of left great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159953,10,'S92.402D ','Displaced unspecified fracture of left great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159952,10,'S92.402B ','Displaced unspecified fracture of left great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159951,10,'S92.402A ','Displaced unspecified fracture of left great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159950,10,'S92.401S ','Displaced unspecified fracture of right great toe, sequela','Y','0000-00-00 00:00:00'),(159949,10,'S92.401P ','Displaced unspecified fracture of right great toe, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159948,10,'S92.401K ','Displaced unspecified fracture of right great toe, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159947,10,'S92.401G ','Displaced unspecified fracture of right great toe, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159946,10,'S92.401D ','Displaced unspecified fracture of right great toe, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159945,10,'S92.401B ','Displaced unspecified fracture of right great toe, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159944,10,'S92.401A ','Displaced unspecified fracture of right great toe, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159943,10,'S92.356S ','Nondisplaced fracture of fifth metatarsal bone, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159942,10,'S92.356P ','Nondisplaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159941,10,'S92.356K ','Nondisplaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159940,10,'S92.356G ','Nondisplaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159939,10,'S92.356D ','Nondisplaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159938,10,'S92.356B ','Nondisplaced fracture of fifth metatarsal bone, unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159937,10,'S92.356A ','Nondisplaced fracture of fifth metatarsal bone, unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159936,10,'S92.355S ','Nondisplaced fracture of fifth metatarsal bone, left foot, sequela','Y','0000-00-00 00:00:00'),(159935,10,'S92.355P ','Nondisplaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159934,10,'S92.355K ','Nondisplaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159933,10,'S92.355G ','Nondisplaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159932,10,'S92.355D ','Nondisplaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159931,10,'S92.355B ','Nondisplaced fracture of fifth metatarsal bone, left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159930,10,'S92.355A ','Nondisplaced fracture of fifth metatarsal bone, left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159929,10,'S92.354S ','Nondisplaced fracture of fifth metatarsal bone, right foot, sequela','Y','0000-00-00 00:00:00'),(159928,10,'S92.354P ','Nondisplaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159927,10,'S92.354K ','Nondisplaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159926,10,'S92.354G ','Nondisplaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159925,10,'S92.354D ','Nondisplaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159924,10,'S92.354B ','Nondisplaced fracture of fifth metatarsal bone, right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159923,10,'S92.354A ','Nondisplaced fracture of fifth metatarsal bone, right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159922,10,'S92.353S ','Displaced fracture of fifth metatarsal bone, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159921,10,'S92.353P ','Displaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159920,10,'S92.353K ','Displaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159919,10,'S92.353G ','Displaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159918,10,'S92.353D ','Displaced fracture of fifth metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159917,10,'S92.353B ','Displaced fracture of fifth metatarsal bone, unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159916,10,'S92.353A ','Displaced fracture of fifth metatarsal bone, unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159915,10,'S92.352S ','Displaced fracture of fifth metatarsal bone, left foot, sequela','Y','0000-00-00 00:00:00'),(159914,10,'S92.352P ','Displaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159913,10,'S92.352K ','Displaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159912,10,'S92.352G ','Displaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159911,10,'S92.352D ','Displaced fracture of fifth metatarsal bone, left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159910,10,'S92.352B ','Displaced fracture of fifth metatarsal bone, left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159909,10,'S92.352A ','Displaced fracture of fifth metatarsal bone, left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159908,10,'S92.351S ','Displaced fracture of fifth metatarsal bone, right foot, sequela','Y','0000-00-00 00:00:00'),(159907,10,'S92.351P ','Displaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159906,10,'S92.351K ','Displaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159905,10,'S92.351G ','Displaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159904,10,'S92.351D ','Displaced fracture of fifth metatarsal bone, right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159903,10,'S92.351B ','Displaced fracture of fifth metatarsal bone, right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159902,10,'S92.351A ','Displaced fracture of fifth metatarsal bone, right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159901,10,'S92.346S ','Nondisplaced fracture of fourth metatarsal bone, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159900,10,'S92.346P ','Nondisplaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159899,10,'S92.346K ','Nondisplaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159898,10,'S92.346G ','Nondisplaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159897,10,'S92.346D ','Nondisplaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159896,10,'S92.346B ','Nondisplaced fracture of fourth metatarsal bone, unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159895,10,'S92.346A ','Nondisplaced fracture of fourth metatarsal bone, unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159894,10,'S92.345S ','Nondisplaced fracture of fourth metatarsal bone, left foot, sequela','Y','0000-00-00 00:00:00'),(159893,10,'S92.345P ','Nondisplaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159892,10,'S92.345K ','Nondisplaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159891,10,'S92.345G ','Nondisplaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159890,10,'S92.345D ','Nondisplaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159889,10,'S92.345B ','Nondisplaced fracture of fourth metatarsal bone, left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159888,10,'S92.345A ','Nondisplaced fracture of fourth metatarsal bone, left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159887,10,'S92.344S ','Nondisplaced fracture of fourth metatarsal bone, right foot, sequela','Y','0000-00-00 00:00:00'),(159886,10,'S92.344P ','Nondisplaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159885,10,'S92.344K ','Nondisplaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159884,10,'S92.344G ','Nondisplaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159883,10,'S92.344D ','Nondisplaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159882,10,'S92.344B ','Nondisplaced fracture of fourth metatarsal bone, right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159881,10,'S92.344A ','Nondisplaced fracture of fourth metatarsal bone, right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159880,10,'S92.343S ','Displaced fracture of fourth metatarsal bone, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159879,10,'S92.343P ','Displaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159878,10,'S92.343K ','Displaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159877,10,'S92.343G ','Displaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159876,10,'S92.343D ','Displaced fracture of fourth metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159875,10,'S92.343B ','Displaced fracture of fourth metatarsal bone, unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159874,10,'S92.343A ','Displaced fracture of fourth metatarsal bone, unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159873,10,'S92.342S ','Displaced fracture of fourth metatarsal bone, left foot, sequela','Y','0000-00-00 00:00:00'),(159872,10,'S92.342P ','Displaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159871,10,'S92.342K ','Displaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159870,10,'S92.342G ','Displaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159869,10,'S92.342D ','Displaced fracture of fourth metatarsal bone, left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159868,10,'S92.342B ','Displaced fracture of fourth metatarsal bone, left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159867,10,'S92.342A ','Displaced fracture of fourth metatarsal bone, left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159866,10,'S92.341S ','Displaced fracture of fourth metatarsal bone, right foot, sequela','Y','0000-00-00 00:00:00'),(159865,10,'S92.341P ','Displaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159864,10,'S92.341K ','Displaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159863,10,'S92.341G ','Displaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159862,10,'S92.341D ','Displaced fracture of fourth metatarsal bone, right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159861,10,'S92.341B ','Displaced fracture of fourth metatarsal bone, right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159860,10,'S92.341A ','Displaced fracture of fourth metatarsal bone, right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159859,10,'S92.336S ','Nondisplaced fracture of third metatarsal bone, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159858,10,'S92.336P ','Nondisplaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159857,10,'S92.336K ','Nondisplaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159856,10,'S92.336G ','Nondisplaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159855,10,'S92.336D ','Nondisplaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159854,10,'S92.336B ','Nondisplaced fracture of third metatarsal bone, unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159853,10,'S92.336A ','Nondisplaced fracture of third metatarsal bone, unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159852,10,'S92.335S ','Nondisplaced fracture of third metatarsal bone, left foot, sequela','Y','0000-00-00 00:00:00'),(159851,10,'S92.335P ','Nondisplaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159850,10,'S92.335K ','Nondisplaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159849,10,'S92.335G ','Nondisplaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159848,10,'S92.335D ','Nondisplaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159847,10,'S92.335B ','Nondisplaced fracture of third metatarsal bone, left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159846,10,'S92.335A ','Nondisplaced fracture of third metatarsal bone, left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159845,10,'S92.334S ','Nondisplaced fracture of third metatarsal bone, right foot, sequela','Y','0000-00-00 00:00:00'),(159844,10,'S92.334P ','Nondisplaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159843,10,'S92.334K ','Nondisplaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159842,10,'S92.334G ','Nondisplaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159841,10,'S92.334D ','Nondisplaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159840,10,'S92.334B ','Nondisplaced fracture of third metatarsal bone, right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159839,10,'S92.334A ','Nondisplaced fracture of third metatarsal bone, right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159838,10,'S92.333S ','Displaced fracture of third metatarsal bone, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159837,10,'S92.333P ','Displaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159836,10,'S92.333K ','Displaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159835,10,'S92.333G ','Displaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159834,10,'S92.333D ','Displaced fracture of third metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159833,10,'S92.333B ','Displaced fracture of third metatarsal bone, unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159832,10,'S92.333A ','Displaced fracture of third metatarsal bone, unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159831,10,'S92.332S ','Displaced fracture of third metatarsal bone, left foot, sequela','Y','0000-00-00 00:00:00'),(159830,10,'S92.332P ','Displaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159829,10,'S92.332K ','Displaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159828,10,'S92.332G ','Displaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159827,10,'S92.332D ','Displaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159826,10,'S92.332B ','Displaced fracture of third metatarsal bone, left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159825,10,'S92.332A ','Displaced fracture of third metatarsal bone, left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159824,10,'S92.331S ','Displaced fracture of third metatarsal bone, right foot, sequela','Y','0000-00-00 00:00:00'),(159823,10,'S92.331P ','Displaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159822,10,'S92.331K ','Displaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159821,10,'S92.331G ','Displaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159820,10,'S92.331D ','Displaced fracture of third metatarsal bone, right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159819,10,'S92.331B ','Displaced fracture of third metatarsal bone, right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159818,10,'S92.331A ','Displaced fracture of third metatarsal bone, right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159817,10,'S92.326S ','Nondisplaced fracture of second metatarsal bone, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159816,10,'S92.326P ','Nondisplaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159815,10,'S92.326K ','Nondisplaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159814,10,'S92.326G ','Nondisplaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159813,10,'S92.326D ','Nondisplaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159812,10,'S92.326B ','Nondisplaced fracture of second metatarsal bone, unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159811,10,'S92.326A ','Nondisplaced fracture of second metatarsal bone, unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159810,10,'S92.325S ','Nondisplaced fracture of second metatarsal bone, left foot, sequela','Y','0000-00-00 00:00:00'),(159809,10,'S92.325P ','Nondisplaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159808,10,'S92.325K ','Nondisplaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159807,10,'S92.325G ','Nondisplaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159806,10,'S92.325D ','Nondisplaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159805,10,'S92.325B ','Nondisplaced fracture of second metatarsal bone, left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159804,10,'S92.325A ','Nondisplaced fracture of second metatarsal bone, left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159803,10,'S92.324S ','Nondisplaced fracture of second metatarsal bone, right foot, sequela','Y','0000-00-00 00:00:00'),(159802,10,'S92.324P ','Nondisplaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159801,10,'S92.324K ','Nondisplaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159800,10,'S92.324G ','Nondisplaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159799,10,'S92.324D ','Nondisplaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159798,10,'S92.324B ','Nondisplaced fracture of second metatarsal bone, right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159797,10,'S92.324A ','Nondisplaced fracture of second metatarsal bone, right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159796,10,'S92.323S ','Displaced fracture of second metatarsal bone, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159795,10,'S92.323P ','Displaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159794,10,'S92.323K ','Displaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159793,10,'S92.323G ','Displaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159792,10,'S92.323D ','Displaced fracture of second metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159791,10,'S92.323B ','Displaced fracture of second metatarsal bone, unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159790,10,'S92.323A ','Displaced fracture of second metatarsal bone, unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159789,10,'S92.322S ','Displaced fracture of second metatarsal bone, left foot, sequela','Y','0000-00-00 00:00:00'),(159788,10,'S92.322P ','Displaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159787,10,'S92.322K ','Displaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159786,10,'S92.322G ','Displaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159785,10,'S92.322D ','Displaced fracture of second metatarsal bone, left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159784,10,'S92.322B ','Displaced fracture of second metatarsal bone, left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159783,10,'S92.322A ','Displaced fracture of second metatarsal bone, left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159782,10,'S92.321S ','Displaced fracture of second metatarsal bone, right foot, sequela','Y','0000-00-00 00:00:00'),(159781,10,'S92.321P ','Displaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159780,10,'S92.321K ','Displaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159779,10,'S92.321G ','Displaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159778,10,'S92.321D ','Displaced fracture of second metatarsal bone, right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159777,10,'S92.321B ','Displaced fracture of second metatarsal bone, right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159776,10,'S92.321A ','Displaced fracture of second metatarsal bone, right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159775,10,'S92.316S ','Nondisplaced fracture of first metatarsal bone, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159774,10,'S92.316P ','Nondisplaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159773,10,'S92.316K ','Nondisplaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159772,10,'S92.316G ','Nondisplaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159771,10,'S92.316D ','Nondisplaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159770,10,'S92.316B ','Nondisplaced fracture of first metatarsal bone, unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159769,10,'S92.316A ','Nondisplaced fracture of first metatarsal bone, unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159768,10,'S92.315S ','Nondisplaced fracture of first metatarsal bone, left foot, sequela','Y','0000-00-00 00:00:00'),(159767,10,'S92.315P ','Nondisplaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159766,10,'S92.315K ','Nondisplaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159765,10,'S92.315G ','Nondisplaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159764,10,'S92.315D ','Nondisplaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159763,10,'S92.315B ','Nondisplaced fracture of first metatarsal bone, left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159762,10,'S92.315A ','Nondisplaced fracture of first metatarsal bone, left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159761,10,'S92.314S ','Nondisplaced fracture of first metatarsal bone, right foot, sequela','Y','0000-00-00 00:00:00'),(159760,10,'S92.314P ','Nondisplaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159759,10,'S92.314K ','Nondisplaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159758,10,'S92.314G ','Nondisplaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159757,10,'S92.314D ','Nondisplaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159756,10,'S92.314B ','Nondisplaced fracture of first metatarsal bone, right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159755,10,'S92.314A ','Nondisplaced fracture of first metatarsal bone, right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159754,10,'S92.313S ','Displaced fracture of first metatarsal bone, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159753,10,'S92.313P ','Displaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159752,10,'S92.313K ','Displaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159751,10,'S92.313G ','Displaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159750,10,'S92.313D ','Displaced fracture of first metatarsal bone, unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159749,10,'S92.313B ','Displaced fracture of first metatarsal bone, unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159748,10,'S92.313A ','Displaced fracture of first metatarsal bone, unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159747,10,'S92.312S ','Displaced fracture of first metatarsal bone, left foot, sequela','Y','0000-00-00 00:00:00'),(159746,10,'S92.312P ','Displaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159745,10,'S92.312K ','Displaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159744,10,'S92.312G ','Displaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159743,10,'S92.312D ','Displaced fracture of first metatarsal bone, left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159742,10,'S92.312B ','Displaced fracture of first metatarsal bone, left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159741,10,'S92.312A ','Displaced fracture of first metatarsal bone, left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159740,10,'S92.311S ','Displaced fracture of first metatarsal bone, right foot, sequela','Y','0000-00-00 00:00:00'),(159739,10,'S92.311P ','Displaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159738,10,'S92.311K ','Displaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159737,10,'S92.311G ','Displaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159736,10,'S92.311D ','Displaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159735,10,'S92.311B ','Displaced fracture of first metatarsal bone, right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159734,10,'S92.311A ','Displaced fracture of first metatarsal bone, right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159733,10,'S92.309S ','Fracture of unspecified metatarsal bone(s), unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159732,10,'S92.309P ','Fracture of unspecified metatarsal bone(s), unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159731,10,'S92.309K ','Fracture of unspecified metatarsal bone(s), unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159730,10,'S92.309G ','Fracture of unspecified metatarsal bone(s), unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159729,10,'S92.309D ','Fracture of unspecified metatarsal bone(s), unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159728,10,'S92.309B ','Fracture of unspecified metatarsal bone(s), unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159727,10,'S92.309A ','Fracture of unspecified metatarsal bone(s), unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159726,10,'S92.302S ','Fracture of unspecified metatarsal bone(s), left foot, sequela','Y','0000-00-00 00:00:00'),(159725,10,'S92.302P ','Fracture of unspecified metatarsal bone(s), left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159724,10,'S92.302K ','Fracture of unspecified metatarsal bone(s), left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159723,10,'S92.302G ','Fracture of unspecified metatarsal bone(s), left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159722,10,'S92.302D ','Fracture of unspecified metatarsal bone(s), left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159721,10,'S92.302B ','Fracture of unspecified metatarsal bone(s), left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159720,10,'S92.302A ','Fracture of unspecified metatarsal bone(s), left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159719,10,'S92.301S ','Fracture of unspecified metatarsal bone(s), right foot, sequela','Y','0000-00-00 00:00:00'),(159718,10,'S92.301P ','Fracture of unspecified metatarsal bone(s), right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159717,10,'S92.301K ','Fracture of unspecified metatarsal bone(s), right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159716,10,'S92.301G ','Fracture of unspecified metatarsal bone(s), right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159715,10,'S92.301D ','Fracture of unspecified metatarsal bone(s), right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159714,10,'S92.301B ','Fracture of unspecified metatarsal bone(s), right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159713,10,'S92.301A ','Fracture of unspecified metatarsal bone(s), right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159712,10,'S92.256S ','Nondisplaced fracture of navicular [scaphoid] of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159711,10,'S92.256P ','Nondisplaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159710,10,'S92.256K ','Nondisplaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159709,10,'S92.256G ','Nondisplaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159708,10,'S92.256D ','Nondisplaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159707,10,'S92.256B ','Nondisplaced fracture of navicular [scaphoid] of unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159706,10,'S92.256A ','Nondisplaced fracture of navicular [scaphoid] of unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159705,10,'S92.255S ','Nondisplaced fracture of navicular [scaphoid] of left foot, sequela','Y','0000-00-00 00:00:00'),(159704,10,'S92.255P ','Nondisplaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159703,10,'S92.255K ','Nondisplaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159702,10,'S92.255G ','Nondisplaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159701,10,'S92.255D ','Nondisplaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159700,10,'S92.255B ','Nondisplaced fracture of navicular [scaphoid] of left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159699,10,'S92.255A ','Nondisplaced fracture of navicular [scaphoid] of left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159698,10,'S92.254S ','Nondisplaced fracture of navicular [scaphoid] of right foot, sequela','Y','0000-00-00 00:00:00'),(159697,10,'S92.254P ','Nondisplaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159696,10,'S92.254K ','Nondisplaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159695,10,'S92.254G ','Nondisplaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159694,10,'S92.254D ','Nondisplaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159693,10,'S92.254B ','Nondisplaced fracture of navicular [scaphoid] of right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159692,10,'S92.254A ','Nondisplaced fracture of navicular [scaphoid] of right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159691,10,'S92.253S ','Displaced fracture of navicular [scaphoid] of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159690,10,'S92.253P ','Displaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159689,10,'S92.253K ','Displaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159688,10,'S92.253G ','Displaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159687,10,'S92.253D ','Displaced fracture of navicular [scaphoid] of unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159686,10,'S92.253B ','Displaced fracture of navicular [scaphoid] of unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159685,10,'S92.253A ','Displaced fracture of navicular [scaphoid] of unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159684,10,'S92.252S ','Displaced fracture of navicular [scaphoid] of left foot, sequela','Y','0000-00-00 00:00:00'),(159683,10,'S92.252P ','Displaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159682,10,'S92.252K ','Displaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159681,10,'S92.252G ','Displaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159680,10,'S92.252D ','Displaced fracture of navicular [scaphoid] of left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159679,10,'S92.252B ','Displaced fracture of navicular [scaphoid] of left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159678,10,'S92.252A ','Displaced fracture of navicular [scaphoid] of left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159677,10,'S92.251S ','Displaced fracture of navicular [scaphoid] of right foot, sequela','Y','0000-00-00 00:00:00'),(159676,10,'S92.251P ','Displaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159675,10,'S92.251K ','Displaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159674,10,'S92.251G ','Displaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159673,10,'S92.251D ','Displaced fracture of navicular [scaphoid] of right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159672,10,'S92.251B ','Displaced fracture of navicular [scaphoid] of right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159671,10,'S92.251A ','Displaced fracture of navicular [scaphoid] of right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159670,10,'S92.246S ','Nondisplaced fracture of medial cuneiform of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159669,10,'S92.246P ','Nondisplaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159668,10,'S92.246K ','Nondisplaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159667,10,'S92.246G ','Nondisplaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159666,10,'S92.246D ','Nondisplaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159665,10,'S92.246B ','Nondisplaced fracture of medial cuneiform of unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159664,10,'S92.246A ','Nondisplaced fracture of medial cuneiform of unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159663,10,'S92.245S ','Nondisplaced fracture of medial cuneiform of left foot, sequela','Y','0000-00-00 00:00:00'),(159662,10,'S92.245P ','Nondisplaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159661,10,'S92.245K ','Nondisplaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159660,10,'S92.245G ','Nondisplaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159659,10,'S92.245D ','Nondisplaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159658,10,'S92.245B ','Nondisplaced fracture of medial cuneiform of left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159657,10,'S92.245A ','Nondisplaced fracture of medial cuneiform of left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159656,10,'S92.244S ','Nondisplaced fracture of medial cuneiform of right foot, sequela','Y','0000-00-00 00:00:00'),(159655,10,'S92.244P ','Nondisplaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159654,10,'S92.244K ','Nondisplaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159653,10,'S92.244G ','Nondisplaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159652,10,'S92.244D ','Nondisplaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159651,10,'S92.244B ','Nondisplaced fracture of medial cuneiform of right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159650,10,'S92.244A ','Nondisplaced fracture of medial cuneiform of right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159649,10,'S92.243S ','Displaced fracture of medial cuneiform of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159648,10,'S92.243P ','Displaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159647,10,'S92.243K ','Displaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159646,10,'S92.243G ','Displaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159645,10,'S92.243D ','Displaced fracture of medial cuneiform of unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159644,10,'S92.243B ','Displaced fracture of medial cuneiform of unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159643,10,'S92.243A ','Displaced fracture of medial cuneiform of unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159642,10,'S92.242S ','Displaced fracture of medial cuneiform of left foot, sequela','Y','0000-00-00 00:00:00'),(159641,10,'S92.242P ','Displaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159640,10,'S92.242K ','Displaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159639,10,'S92.242G ','Displaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159638,10,'S92.242D ','Displaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159637,10,'S92.242B ','Displaced fracture of medial cuneiform of left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159636,10,'S92.242A ','Displaced fracture of medial cuneiform of left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159635,10,'S92.241S ','Displaced fracture of medial cuneiform of right foot, sequela','Y','0000-00-00 00:00:00'),(159634,10,'S92.241P ','Displaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159633,10,'S92.241K ','Displaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159632,10,'S92.241G ','Displaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159631,10,'S92.241D ','Displaced fracture of medial cuneiform of right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159630,10,'S92.241B ','Displaced fracture of medial cuneiform of right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159629,10,'S92.241A ','Displaced fracture of medial cuneiform of right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159628,10,'S92.236S ','Nondisplaced fracture of intermediate cuneiform of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159627,10,'S92.236P ','Nondisplaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159626,10,'S92.236K ','Nondisplaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159625,10,'S92.236G ','Nondisplaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159624,10,'S92.236D ','Nondisplaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159623,10,'S92.236B ','Nondisplaced fracture of intermediate cuneiform of unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159622,10,'S92.236A ','Nondisplaced fracture of intermediate cuneiform of unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159621,10,'S92.235S ','Nondisplaced fracture of intermediate cuneiform of left foot, sequela','Y','0000-00-00 00:00:00'),(159620,10,'S92.235P ','Nondisplaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159619,10,'S92.235K ','Nondisplaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159618,10,'S92.235G ','Nondisplaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159617,10,'S92.235D ','Nondisplaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159616,10,'S92.235B ','Nondisplaced fracture of intermediate cuneiform of left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159615,10,'S92.235A ','Nondisplaced fracture of intermediate cuneiform of left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159614,10,'S92.234S ','Nondisplaced fracture of intermediate cuneiform of right foot, sequela','Y','0000-00-00 00:00:00'),(159613,10,'S92.234P ','Nondisplaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159612,10,'S92.234K ','Nondisplaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159611,10,'S92.234G ','Nondisplaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159610,10,'S92.234D ','Nondisplaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159609,10,'S92.234B ','Nondisplaced fracture of intermediate cuneiform of right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159608,10,'S92.234A ','Nondisplaced fracture of intermediate cuneiform of right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159607,10,'S92.233S ','Displaced fracture of intermediate cuneiform of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159606,10,'S92.233P ','Displaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159605,10,'S92.233K ','Displaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159604,10,'S92.233G ','Displaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159603,10,'S92.233D ','Displaced fracture of intermediate cuneiform of unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159602,10,'S92.233B ','Displaced fracture of intermediate cuneiform of unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159601,10,'S92.233A ','Displaced fracture of intermediate cuneiform of unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159600,10,'S92.232S ','Displaced fracture of intermediate cuneiform of left foot, sequela','Y','0000-00-00 00:00:00'),(159599,10,'S92.232P ','Displaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159598,10,'S92.232K ','Displaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159597,10,'S92.232G ','Displaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159596,10,'S92.232D ','Displaced fracture of intermediate cuneiform of left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159595,10,'S92.232B ','Displaced fracture of intermediate cuneiform of left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159594,10,'S92.232A ','Displaced fracture of intermediate cuneiform of left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159593,10,'S92.231S ','Displaced fracture of intermediate cuneiform of right foot, sequela','Y','0000-00-00 00:00:00'),(159592,10,'S92.231P ','Displaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159591,10,'S92.231K ','Displaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159590,10,'S92.231G ','Displaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159589,10,'S92.231D ','Displaced fracture of intermediate cuneiform of right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159588,10,'S92.231B ','Displaced fracture of intermediate cuneiform of right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159587,10,'S92.231A ','Displaced fracture of intermediate cuneiform of right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159586,10,'S92.226S ','Nondisplaced fracture of lateral cuneiform of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159585,10,'S92.226P ','Nondisplaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159584,10,'S92.226K ','Nondisplaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159583,10,'S92.226G ','Nondisplaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159582,10,'S92.226D ','Nondisplaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159581,10,'S92.226B ','Nondisplaced fracture of lateral cuneiform of unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159580,10,'S92.226A ','Nondisplaced fracture of lateral cuneiform of unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159579,10,'S92.225S ','Nondisplaced fracture of lateral cuneiform of left foot, sequela','Y','0000-00-00 00:00:00'),(159578,10,'S92.225P ','Nondisplaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159577,10,'S92.225K ','Nondisplaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159576,10,'S92.225G ','Nondisplaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159575,10,'S92.225D ','Nondisplaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159574,10,'S92.225B ','Nondisplaced fracture of lateral cuneiform of left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159573,10,'S92.225A ','Nondisplaced fracture of lateral cuneiform of left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159572,10,'S92.224S ','Nondisplaced fracture of lateral cuneiform of right foot, sequela','Y','0000-00-00 00:00:00'),(159571,10,'S92.224P ','Nondisplaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159570,10,'S92.224K ','Nondisplaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159569,10,'S92.224G ','Nondisplaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159568,10,'S92.224D ','Nondisplaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159567,10,'S92.224B ','Nondisplaced fracture of lateral cuneiform of right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159566,10,'S92.224A ','Nondisplaced fracture of lateral cuneiform of right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159565,10,'S92.223S ','Displaced fracture of lateral cuneiform of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159564,10,'S92.223P ','Displaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159563,10,'S92.223K ','Displaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159562,10,'S92.223G ','Displaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159561,10,'S92.223D ','Displaced fracture of lateral cuneiform of unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159560,10,'S92.223B ','Displaced fracture of lateral cuneiform of unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159559,10,'S92.223A ','Displaced fracture of lateral cuneiform of unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159558,10,'S92.222S ','Displaced fracture of lateral cuneiform of left foot, sequela','Y','0000-00-00 00:00:00'),(159557,10,'S92.222P ','Displaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159556,10,'S92.222K ','Displaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159555,10,'S92.222G ','Displaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159554,10,'S92.222D ','Displaced fracture of lateral cuneiform of left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159553,10,'S92.222B ','Displaced fracture of lateral cuneiform of left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159552,10,'S92.222A ','Displaced fracture of lateral cuneiform of left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159551,10,'S92.221S ','Displaced fracture of lateral cuneiform of right foot, sequela','Y','0000-00-00 00:00:00'),(159550,10,'S92.221P ','Displaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159549,10,'S92.221K ','Displaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159548,10,'S92.221G ','Displaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159547,10,'S92.221D ','Displaced fracture of lateral cuneiform of right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159546,10,'S92.221B ','Displaced fracture of lateral cuneiform of right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159545,10,'S92.221A ','Displaced fracture of lateral cuneiform of right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159544,10,'S92.216S ','Nondisplaced fracture of cuboid bone of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159543,10,'S92.216P ','Nondisplaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159542,10,'S92.216K ','Nondisplaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159541,10,'S92.216G ','Nondisplaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159540,10,'S92.216D ','Nondisplaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159539,10,'S92.216B ','Nondisplaced fracture of cuboid bone of unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159538,10,'S92.216A ','Nondisplaced fracture of cuboid bone of unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159537,10,'S92.215S ','Nondisplaced fracture of cuboid bone of left foot, sequela','Y','0000-00-00 00:00:00'),(159536,10,'S92.215P ','Nondisplaced fracture of cuboid bone of left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159535,10,'S92.215K ','Nondisplaced fracture of cuboid bone of left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159534,10,'S92.215G ','Nondisplaced fracture of cuboid bone of left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159533,10,'S92.215D ','Nondisplaced fracture of cuboid bone of left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159532,10,'S92.215B ','Nondisplaced fracture of cuboid bone of left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159531,10,'S92.215A ','Nondisplaced fracture of cuboid bone of left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159530,10,'S92.214S ','Nondisplaced fracture of cuboid bone of right foot, sequela','Y','0000-00-00 00:00:00'),(159529,10,'S92.214P ','Nondisplaced fracture of cuboid bone of right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159528,10,'S92.214K ','Nondisplaced fracture of cuboid bone of right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159527,10,'S92.214G ','Nondisplaced fracture of cuboid bone of right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159526,10,'S92.214D ','Nondisplaced fracture of cuboid bone of right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159525,10,'S92.214B ','Nondisplaced fracture of cuboid bone of right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159524,10,'S92.214A ','Nondisplaced fracture of cuboid bone of right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159523,10,'S92.213S ','Displaced fracture of cuboid bone of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159522,10,'S92.213P ','Displaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159521,10,'S92.213K ','Displaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159520,10,'S92.213G ','Displaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159519,10,'S92.213D ','Displaced fracture of cuboid bone of unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159518,10,'S92.213B ','Displaced fracture of cuboid bone of unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159517,10,'S92.213A ','Displaced fracture of cuboid bone of unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159516,10,'S92.212S ','Displaced fracture of cuboid bone of left foot, sequela','Y','0000-00-00 00:00:00'),(159515,10,'S92.212P ','Displaced fracture of cuboid bone of left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159514,10,'S92.212K ','Displaced fracture of cuboid bone of left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159513,10,'S92.212G ','Displaced fracture of cuboid bone of left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159512,10,'S92.212D ','Displaced fracture of cuboid bone of left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159511,10,'S92.212B ','Displaced fracture of cuboid bone of left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159510,10,'S92.212A ','Displaced fracture of cuboid bone of left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159509,10,'S92.211S ','Displaced fracture of cuboid bone of right foot, sequela','Y','0000-00-00 00:00:00'),(159508,10,'S92.211P ','Displaced fracture of cuboid bone of right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159507,10,'S92.211K ','Displaced fracture of cuboid bone of right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159506,10,'S92.211G ','Displaced fracture of cuboid bone of right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159505,10,'S92.211D ','Displaced fracture of cuboid bone of right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159504,10,'S92.211B ','Displaced fracture of cuboid bone of right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159503,10,'S92.211A ','Displaced fracture of cuboid bone of right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159502,10,'S92.209S ','Fracture of unspecified tarsal bone(s) of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(159501,10,'S92.209P ','Fracture of unspecified tarsal bone(s) of unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159500,10,'S92.209K ','Fracture of unspecified tarsal bone(s) of unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159499,10,'S92.209G ','Fracture of unspecified tarsal bone(s) of unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159498,10,'S92.209D ','Fracture of unspecified tarsal bone(s) of unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159497,10,'S92.209B ','Fracture of unspecified tarsal bone(s) of unspecified foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159496,10,'S92.209A ','Fracture of unspecified tarsal bone(s) of unspecified foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159495,10,'S92.202S ','Fracture of unspecified tarsal bone(s) of left foot, sequela','Y','0000-00-00 00:00:00'),(159494,10,'S92.202P ','Fracture of unspecified tarsal bone(s) of left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159493,10,'S92.202K ','Fracture of unspecified tarsal bone(s) of left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159492,10,'S92.202G ','Fracture of unspecified tarsal bone(s) of left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159491,10,'S92.202D ','Fracture of unspecified tarsal bone(s) of left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159490,10,'S92.202B ','Fracture of unspecified tarsal bone(s) of left foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159489,10,'S92.202A ','Fracture of unspecified tarsal bone(s) of left foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159488,10,'S92.201S ','Fracture of unspecified tarsal bone(s) of right foot, sequela','Y','0000-00-00 00:00:00'),(159487,10,'S92.201P ','Fracture of unspecified tarsal bone(s) of right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159486,10,'S92.201K ','Fracture of unspecified tarsal bone(s) of right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159485,10,'S92.201G ','Fracture of unspecified tarsal bone(s) of right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159484,10,'S92.201D ','Fracture of unspecified tarsal bone(s) of right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159483,10,'S92.201B ','Fracture of unspecified tarsal bone(s) of right foot, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159482,10,'S92.201A ','Fracture of unspecified tarsal bone(s) of right foot, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159481,10,'S92.199S ','Other fracture of unspecified talus, sequela','Y','0000-00-00 00:00:00'),(159480,10,'S92.199P ','Other fracture of unspecified talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159479,10,'S92.199K ','Other fracture of unspecified talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159478,10,'S92.199G ','Other fracture of unspecified talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159477,10,'S92.199D ','Other fracture of unspecified talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159476,10,'S92.199B ','Other fracture of unspecified talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159475,10,'S92.199A ','Other fracture of unspecified talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159474,10,'S92.192S ','Other fracture of left talus, sequela','Y','0000-00-00 00:00:00'),(159473,10,'S92.192P ','Other fracture of left talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159472,10,'S92.192K ','Other fracture of left talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159471,10,'S92.192G ','Other fracture of left talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159470,10,'S92.192D ','Other fracture of left talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159469,10,'S92.192B ','Other fracture of left talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159468,10,'S92.192A ','Other fracture of left talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159467,10,'S92.191S ','Other fracture of right talus, sequela','Y','0000-00-00 00:00:00'),(159466,10,'S92.191P ','Other fracture of right talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159465,10,'S92.191K ','Other fracture of right talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159464,10,'S92.191G ','Other fracture of right talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159463,10,'S92.191D ','Other fracture of right talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159462,10,'S92.191B ','Other fracture of right talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159461,10,'S92.191A ','Other fracture of right talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159460,10,'S92.156S ','Nondisplaced avulsion fracture (chip fracture) of unspecified talus, sequela','Y','0000-00-00 00:00:00'),(159459,10,'S92.156P ','Nondisplaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159458,10,'S92.156K ','Nondisplaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159457,10,'S92.156G ','Nondisplaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159456,10,'S92.156D ','Nondisplaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159455,10,'S92.156B ','Nondisplaced avulsion fracture (chip fracture) of unspecified talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159454,10,'S92.156A ','Nondisplaced avulsion fracture (chip fracture) of unspecified talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159453,10,'S92.155S ','Nondisplaced avulsion fracture (chip fracture) of left talus, sequela','Y','0000-00-00 00:00:00'),(159452,10,'S92.155P ','Nondisplaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159451,10,'S92.155K ','Nondisplaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159450,10,'S92.155G ','Nondisplaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159449,10,'S92.155D ','Nondisplaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159448,10,'S92.155B ','Nondisplaced avulsion fracture (chip fracture) of left talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159447,10,'S92.155A ','Nondisplaced avulsion fracture (chip fracture) of left talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159446,10,'S92.154S ','Nondisplaced avulsion fracture (chip fracture) of right talus, sequela','Y','0000-00-00 00:00:00'),(159445,10,'S92.154P ','Nondisplaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159444,10,'S92.154K ','Nondisplaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159443,10,'S92.154G ','Nondisplaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159442,10,'S92.154D ','Nondisplaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159441,10,'S92.154B ','Nondisplaced avulsion fracture (chip fracture) of right talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159440,10,'S92.154A ','Nondisplaced avulsion fracture (chip fracture) of right talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159439,10,'S92.153S ','Displaced avulsion fracture (chip fracture) of unspecified talus, sequela','Y','0000-00-00 00:00:00'),(159438,10,'S92.153P ','Displaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159437,10,'S92.153K ','Displaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159436,10,'S92.153G ','Displaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159435,10,'S92.153D ','Displaced avulsion fracture (chip fracture) of unspecified talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159434,10,'S92.153B ','Displaced avulsion fracture (chip fracture) of unspecified talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159433,10,'S92.153A ','Displaced avulsion fracture (chip fracture) of unspecified talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159432,10,'S92.152S ','Displaced avulsion fracture (chip fracture) of left talus, sequela','Y','0000-00-00 00:00:00'),(159431,10,'S92.152P ','Displaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159430,10,'S92.152K ','Displaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159429,10,'S92.152G ','Displaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159428,10,'S92.152D ','Displaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159427,10,'S92.152B ','Displaced avulsion fracture (chip fracture) of left talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159426,10,'S92.152A ','Displaced avulsion fracture (chip fracture) of left talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159425,10,'S92.151S ','Displaced avulsion fracture (chip fracture) of right talus, sequela','Y','0000-00-00 00:00:00'),(159424,10,'S92.151P ','Displaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159423,10,'S92.151K ','Displaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159422,10,'S92.151G ','Displaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159421,10,'S92.151D ','Displaced avulsion fracture (chip fracture) of right talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159420,10,'S92.151B ','Displaced avulsion fracture (chip fracture) of right talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159419,10,'S92.151A ','Displaced avulsion fracture (chip fracture) of right talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159418,10,'S92.146S ','Nondisplaced dome fracture of unspecified talus, sequela','Y','0000-00-00 00:00:00'),(159417,10,'S92.146P ','Nondisplaced dome fracture of unspecified talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159416,10,'S92.146K ','Nondisplaced dome fracture of unspecified talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159415,10,'S92.146G ','Nondisplaced dome fracture of unspecified talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159414,10,'S92.146D ','Nondisplaced dome fracture of unspecified talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159413,10,'S92.146B ','Nondisplaced dome fracture of unspecified talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159412,10,'S92.146A ','Nondisplaced dome fracture of unspecified talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159411,10,'S92.145S ','Nondisplaced dome fracture of left talus, sequela','Y','0000-00-00 00:00:00'),(159410,10,'S92.145P ','Nondisplaced dome fracture of left talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159409,10,'S92.145K ','Nondisplaced dome fracture of left talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159408,10,'S92.145G ','Nondisplaced dome fracture of left talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159407,10,'S92.145D ','Nondisplaced dome fracture of left talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159406,10,'S92.145B ','Nondisplaced dome fracture of left talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159405,10,'S92.145A ','Nondisplaced dome fracture of left talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159404,10,'S92.144S ','Nondisplaced dome fracture of right talus, sequela','Y','0000-00-00 00:00:00'),(159403,10,'S92.144P ','Nondisplaced dome fracture of right talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159402,10,'S92.144K ','Nondisplaced dome fracture of right talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159401,10,'S92.144G ','Nondisplaced dome fracture of right talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159400,10,'S92.144D ','Nondisplaced dome fracture of right talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159399,10,'S92.144B ','Nondisplaced dome fracture of right talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159398,10,'S92.144A ','Nondisplaced dome fracture of right talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159397,10,'S92.143S ','Displaced dome fracture of unspecified talus, sequela','Y','0000-00-00 00:00:00'),(159396,10,'S92.143P ','Displaced dome fracture of unspecified talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159395,10,'S92.143K ','Displaced dome fracture of unspecified talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159394,10,'S92.143G ','Displaced dome fracture of unspecified talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159393,10,'S92.143D ','Displaced dome fracture of unspecified talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159392,10,'S92.143B ','Displaced dome fracture of unspecified talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159391,10,'S92.143A ','Displaced dome fracture of unspecified talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159390,10,'S92.142S ','Displaced dome fracture of left talus, sequela','Y','0000-00-00 00:00:00'),(159389,10,'S92.142P ','Displaced dome fracture of left talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159388,10,'S92.142K ','Displaced dome fracture of left talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159387,10,'S92.142G ','Displaced dome fracture of left talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159386,10,'S92.142D ','Displaced dome fracture of left talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159385,10,'S92.142B ','Displaced dome fracture of left talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159384,10,'S92.142A ','Displaced dome fracture of left talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159383,10,'S92.141S ','Displaced dome fracture of right talus, sequela','Y','0000-00-00 00:00:00'),(159382,10,'S92.141P ','Displaced dome fracture of right talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159381,10,'S92.141K ','Displaced dome fracture of right talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159380,10,'S92.141G ','Displaced dome fracture of right talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159379,10,'S92.141D ','Displaced dome fracture of right talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159378,10,'S92.141B ','Displaced dome fracture of right talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159377,10,'S92.141A ','Displaced dome fracture of right talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159376,10,'S92.136S ','Nondisplaced fracture of posterior process of unspecified talus, sequela','Y','0000-00-00 00:00:00'),(159375,10,'S92.136P ','Nondisplaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159374,10,'S92.136K ','Nondisplaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159373,10,'S92.136G ','Nondisplaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159372,10,'S92.136D ','Nondisplaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159371,10,'S92.136B ','Nondisplaced fracture of posterior process of unspecified talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159370,10,'S92.136A ','Nondisplaced fracture of posterior process of unspecified talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159369,10,'S92.135S ','Nondisplaced fracture of posterior process of left talus, sequela','Y','0000-00-00 00:00:00'),(159368,10,'S92.135P ','Nondisplaced fracture of posterior process of left talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159367,10,'S92.135K ','Nondisplaced fracture of posterior process of left talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159366,10,'S92.135G ','Nondisplaced fracture of posterior process of left talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159365,10,'S92.135D ','Nondisplaced fracture of posterior process of left talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159364,10,'S92.135B ','Nondisplaced fracture of posterior process of left talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159363,10,'S92.135A ','Nondisplaced fracture of posterior process of left talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159362,10,'S92.134S ','Nondisplaced fracture of posterior process of right talus, sequela','Y','0000-00-00 00:00:00'),(159361,10,'S92.134P ','Nondisplaced fracture of posterior process of right talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159360,10,'S92.134K ','Nondisplaced fracture of posterior process of right talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159359,10,'S92.134G ','Nondisplaced fracture of posterior process of right talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159358,10,'S92.134D ','Nondisplaced fracture of posterior process of right talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159357,10,'S92.134B ','Nondisplaced fracture of posterior process of right talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159356,10,'S92.134A ','Nondisplaced fracture of posterior process of right talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159355,10,'S92.133S ','Displaced fracture of posterior process of unspecified talus, sequela','Y','0000-00-00 00:00:00'),(159354,10,'S92.133P ','Displaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159353,10,'S92.133K ','Displaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159352,10,'S92.133G ','Displaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159351,10,'S92.133D ','Displaced fracture of posterior process of unspecified talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159350,10,'S92.133B ','Displaced fracture of posterior process of unspecified talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159349,10,'S92.133A ','Displaced fracture of posterior process of unspecified talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159348,10,'S92.132S ','Displaced fracture of posterior process of left talus, sequela','Y','0000-00-00 00:00:00'),(159347,10,'S92.132P ','Displaced fracture of posterior process of left talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159346,10,'S92.132K ','Displaced fracture of posterior process of left talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159345,10,'S92.132G ','Displaced fracture of posterior process of left talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159344,10,'S92.132D ','Displaced fracture of posterior process of left talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159343,10,'S92.132B ','Displaced fracture of posterior process of left talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159342,10,'S92.132A ','Displaced fracture of posterior process of left talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159341,10,'S92.131S ','Displaced fracture of posterior process of right talus, sequela','Y','0000-00-00 00:00:00'),(159340,10,'S92.131P ','Displaced fracture of posterior process of right talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159339,10,'S92.131K ','Displaced fracture of posterior process of right talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159338,10,'S92.131G ','Displaced fracture of posterior process of right talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159337,10,'S92.131D ','Displaced fracture of posterior process of right talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159336,10,'S92.131B ','Displaced fracture of posterior process of right talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159335,10,'S92.131A ','Displaced fracture of posterior process of right talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159334,10,'S92.126S ','Nondisplaced fracture of body of unspecified talus, sequela','Y','0000-00-00 00:00:00'),(159333,10,'S92.126P ','Nondisplaced fracture of body of unspecified talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159332,10,'S92.126K ','Nondisplaced fracture of body of unspecified talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159331,10,'S92.126G ','Nondisplaced fracture of body of unspecified talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159330,10,'S92.126D ','Nondisplaced fracture of body of unspecified talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159329,10,'S92.126B ','Nondisplaced fracture of body of unspecified talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159328,10,'S92.126A ','Nondisplaced fracture of body of unspecified talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159327,10,'S92.125S ','Nondisplaced fracture of body of left talus, sequela','Y','0000-00-00 00:00:00'),(159326,10,'S92.125P ','Nondisplaced fracture of body of left talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159325,10,'S92.125K ','Nondisplaced fracture of body of left talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159324,10,'S92.125G ','Nondisplaced fracture of body of left talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159323,10,'S92.125D ','Nondisplaced fracture of body of left talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159322,10,'S92.125B ','Nondisplaced fracture of body of left talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159321,10,'S92.125A ','Nondisplaced fracture of body of left talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159320,10,'S92.124S ','Nondisplaced fracture of body of right talus, sequela','Y','0000-00-00 00:00:00'),(159319,10,'S92.124P ','Nondisplaced fracture of body of right talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159318,10,'S92.124K ','Nondisplaced fracture of body of right talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159317,10,'S92.124G ','Nondisplaced fracture of body of right talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159316,10,'S92.124D ','Nondisplaced fracture of body of right talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159315,10,'S92.124B ','Nondisplaced fracture of body of right talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159314,10,'S92.124A ','Nondisplaced fracture of body of right talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159313,10,'S92.123S ','Displaced fracture of body of unspecified talus, sequela','Y','0000-00-00 00:00:00'),(159312,10,'S92.123P ','Displaced fracture of body of unspecified talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159311,10,'S92.123K ','Displaced fracture of body of unspecified talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159310,10,'S92.123G ','Displaced fracture of body of unspecified talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159309,10,'S92.123D ','Displaced fracture of body of unspecified talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159308,10,'S92.123B ','Displaced fracture of body of unspecified talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159307,10,'S92.123A ','Displaced fracture of body of unspecified talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159306,10,'S92.122S ','Displaced fracture of body of left talus, sequela','Y','0000-00-00 00:00:00'),(159305,10,'S92.122P ','Displaced fracture of body of left talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159304,10,'S92.122K ','Displaced fracture of body of left talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159303,10,'S92.122G ','Displaced fracture of body of left talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159302,10,'S92.122D ','Displaced fracture of body of left talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159301,10,'S92.122B ','Displaced fracture of body of left talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159300,10,'S92.122A ','Displaced fracture of body of left talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159299,10,'S92.121S ','Displaced fracture of body of right talus, sequela','Y','0000-00-00 00:00:00'),(159298,10,'S92.121P ','Displaced fracture of body of right talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159297,10,'S92.121K ','Displaced fracture of body of right talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159296,10,'S92.121G ','Displaced fracture of body of right talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159295,10,'S92.121D ','Displaced fracture of body of right talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159294,10,'S92.121B ','Displaced fracture of body of right talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159293,10,'S92.121A ','Displaced fracture of body of right talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159292,10,'S92.116S ','Nondisplaced fracture of neck of unspecified talus, sequela','Y','0000-00-00 00:00:00'),(159291,10,'S92.116P ','Nondisplaced fracture of neck of unspecified talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159290,10,'S92.116K ','Nondisplaced fracture of neck of unspecified talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159289,10,'S92.116G ','Nondisplaced fracture of neck of unspecified talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159288,10,'S92.116D ','Nondisplaced fracture of neck of unspecified talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159287,10,'S92.116B ','Nondisplaced fracture of neck of unspecified talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159286,10,'S92.116A ','Nondisplaced fracture of neck of unspecified talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159285,10,'S92.115S ','Nondisplaced fracture of neck of left talus, sequela','Y','0000-00-00 00:00:00'),(159284,10,'S92.115P ','Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159283,10,'S92.115K ','Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159282,10,'S92.115G ','Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159281,10,'S92.115D ','Nondisplaced fracture of neck of left talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159280,10,'S92.115B ','Nondisplaced fracture of neck of left talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159279,10,'S92.115A ','Nondisplaced fracture of neck of left talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159278,10,'S92.114S ','Nondisplaced fracture of neck of right talus, sequela','Y','0000-00-00 00:00:00'),(159277,10,'S92.114P ','Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159276,10,'S92.114K ','Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159275,10,'S92.114G ','Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159274,10,'S92.114D ','Nondisplaced fracture of neck of right talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159273,10,'S92.114B ','Nondisplaced fracture of neck of right talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159272,10,'S92.114A ','Nondisplaced fracture of neck of right talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159271,10,'S92.113S ','Displaced fracture of neck of unspecified talus, sequela','Y','0000-00-00 00:00:00'),(159270,10,'S92.113P ','Displaced fracture of neck of unspecified talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159269,10,'S92.113K ','Displaced fracture of neck of unspecified talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159268,10,'S92.113G ','Displaced fracture of neck of unspecified talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159267,10,'S92.113D ','Displaced fracture of neck of unspecified talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159266,10,'S92.113B ','Displaced fracture of neck of unspecified talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159265,10,'S92.113A ','Displaced fracture of neck of unspecified talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159264,10,'S92.112S ','Displaced fracture of neck of left talus, sequela','Y','0000-00-00 00:00:00'),(159263,10,'S92.112P ','Displaced fracture of neck of left talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159262,10,'S92.112K ','Displaced fracture of neck of left talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159261,10,'S92.112G ','Displaced fracture of neck of left talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159260,10,'S92.112D ','Displaced fracture of neck of left talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159259,10,'S92.112B ','Displaced fracture of neck of left talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159258,10,'S92.112A ','Displaced fracture of neck of left talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159257,10,'S92.111S ','Displaced fracture of neck of right talus, sequela','Y','0000-00-00 00:00:00'),(159256,10,'S92.111P ','Displaced fracture of neck of right talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159255,10,'S92.111K ','Displaced fracture of neck of right talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159254,10,'S92.111G ','Displaced fracture of neck of right talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159253,10,'S92.111D ','Displaced fracture of neck of right talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159252,10,'S92.111B ','Displaced fracture of neck of right talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159251,10,'S92.111A ','Displaced fracture of neck of right talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159250,10,'S92.109S ','Unspecified fracture of unspecified talus, sequela','Y','0000-00-00 00:00:00'),(159249,10,'S92.109P ','Unspecified fracture of unspecified talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159248,10,'S92.109K ','Unspecified fracture of unspecified talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159247,10,'S92.109G ','Unspecified fracture of unspecified talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159246,10,'S92.109D ','Unspecified fracture of unspecified talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159245,10,'S92.109B ','Unspecified fracture of unspecified talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159244,10,'S92.109A ','Unspecified fracture of unspecified talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159243,10,'S92.102S ','Unspecified fracture of left talus, sequela','Y','0000-00-00 00:00:00'),(159242,10,'S92.102P ','Unspecified fracture of left talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159241,10,'S92.102K ','Unspecified fracture of left talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159240,10,'S92.102G ','Unspecified fracture of left talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159239,10,'S92.102D ','Unspecified fracture of left talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159238,10,'S92.102B ','Unspecified fracture of left talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159237,10,'S92.102A ','Unspecified fracture of left talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159236,10,'S92.101S ','Unspecified fracture of right talus, sequela','Y','0000-00-00 00:00:00'),(159235,10,'S92.101P ','Unspecified fracture of right talus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159234,10,'S92.101K ','Unspecified fracture of right talus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159233,10,'S92.101G ','Unspecified fracture of right talus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159232,10,'S92.101D ','Unspecified fracture of right talus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159231,10,'S92.101B ','Unspecified fracture of right talus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159230,10,'S92.101A ','Unspecified fracture of right talus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159229,10,'S92.066S ','Nondisplaced intraarticular fracture of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(159228,10,'S92.066P ','Nondisplaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159227,10,'S92.066K ','Nondisplaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159226,10,'S92.066G ','Nondisplaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159225,10,'S92.066D ','Nondisplaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159224,10,'S92.066B ','Nondisplaced intraarticular fracture of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159223,10,'S92.066A ','Nondisplaced intraarticular fracture of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159222,10,'S92.065S ','Nondisplaced intraarticular fracture of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(159221,10,'S92.065P ','Nondisplaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159220,10,'S92.065K ','Nondisplaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159219,10,'S92.065G ','Nondisplaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159218,10,'S92.065D ','Nondisplaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159217,10,'S92.065B ','Nondisplaced intraarticular fracture of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159216,10,'S92.065A ','Nondisplaced intraarticular fracture of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159215,10,'S92.064S ','Nondisplaced intraarticular fracture of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(159214,10,'S92.064P ','Nondisplaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159213,10,'S92.064K ','Nondisplaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159212,10,'S92.064G ','Nondisplaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159211,10,'S92.064D ','Nondisplaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159210,10,'S92.064B ','Nondisplaced intraarticular fracture of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159209,10,'S92.064A ','Nondisplaced intraarticular fracture of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159208,10,'S92.063S ','Displaced intraarticular fracture of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(159207,10,'S92.063P ','Displaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159206,10,'S92.063K ','Displaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159205,10,'S92.063G ','Displaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159204,10,'S92.063D ','Displaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159203,10,'S92.063B ','Displaced intraarticular fracture of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159202,10,'S92.063A ','Displaced intraarticular fracture of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159201,10,'S92.062S ','Displaced intraarticular fracture of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(159200,10,'S92.062P ','Displaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159199,10,'S92.062K ','Displaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159198,10,'S92.062G ','Displaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159197,10,'S92.062D ','Displaced intraarticular fracture of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159196,10,'S92.062B ','Displaced intraarticular fracture of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159195,10,'S92.062A ','Displaced intraarticular fracture of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159194,10,'S92.061S ','Displaced intraarticular fracture of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(159193,10,'S92.061P ','Displaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159192,10,'S92.061K ','Displaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159191,10,'S92.061G ','Displaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159190,10,'S92.061D ','Displaced intraarticular fracture of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159189,10,'S92.061B ','Displaced intraarticular fracture of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159188,10,'S92.061A ','Displaced intraarticular fracture of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159187,10,'S92.056S ','Nondisplaced other extraarticular fracture of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(159186,10,'S92.056P ','Nondisplaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159185,10,'S92.056K ','Nondisplaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159184,10,'S92.056G ','Nondisplaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159183,10,'S92.056D ','Nondisplaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159182,10,'S92.056B ','Nondisplaced other extraarticular fracture of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159181,10,'S92.056A ','Nondisplaced other extraarticular fracture of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159180,10,'S92.055S ','Nondisplaced other extraarticular fracture of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(159179,10,'S92.055P ','Nondisplaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159178,10,'S92.055K ','Nondisplaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159177,10,'S92.055G ','Nondisplaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159176,10,'S92.055D ','Nondisplaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159175,10,'S92.055B ','Nondisplaced other extraarticular fracture of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159174,10,'S92.055A ','Nondisplaced other extraarticular fracture of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159173,10,'S92.054S ','Nondisplaced other extraarticular fracture of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(159172,10,'S92.054P ','Nondisplaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159171,10,'S92.054K ','Nondisplaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159170,10,'S92.054G ','Nondisplaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159169,10,'S92.054D ','Nondisplaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159168,10,'S92.054B ','Nondisplaced other extraarticular fracture of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159167,10,'S92.054A ','Nondisplaced other extraarticular fracture of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159166,10,'S92.053S ','Displaced other extraarticular fracture of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(159165,10,'S92.053P ','Displaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159164,10,'S92.053K ','Displaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159163,10,'S92.053G ','Displaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159162,10,'S92.053D ','Displaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159161,10,'S92.053B ','Displaced other extraarticular fracture of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159160,10,'S92.053A ','Displaced other extraarticular fracture of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159159,10,'S92.052S ','Displaced other extraarticular fracture of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(159158,10,'S92.052P ','Displaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159157,10,'S92.052K ','Displaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159156,10,'S92.052G ','Displaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159155,10,'S92.052D ','Displaced other extraarticular fracture of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159154,10,'S92.052B ','Displaced other extraarticular fracture of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159153,10,'S92.052A ','Displaced other extraarticular fracture of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159152,10,'S92.051S ','Displaced other extraarticular fracture of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(159151,10,'S92.051P ','Displaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159150,10,'S92.051K ','Displaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159149,10,'S92.051G ','Displaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159148,10,'S92.051D ','Displaced other extraarticular fracture of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159147,10,'S92.051B ','Displaced other extraarticular fracture of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159146,10,'S92.051A ','Displaced other extraarticular fracture of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159145,10,'S92.046S ','Nondisplaced other fracture of tuberosity of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(159144,10,'S92.046P ','Nondisplaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159143,10,'S92.046K ','Nondisplaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159142,10,'S92.046G ','Nondisplaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159141,10,'S92.046D ','Nondisplaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159140,10,'S92.046B ','Nondisplaced other fracture of tuberosity of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159139,10,'S92.046A ','Nondisplaced other fracture of tuberosity of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159138,10,'S92.045S ','Nondisplaced other fracture of tuberosity of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(159137,10,'S92.045P ','Nondisplaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159136,10,'S92.045K ','Nondisplaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159135,10,'S92.045G ','Nondisplaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159134,10,'S92.045D ','Nondisplaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159133,10,'S92.045B ','Nondisplaced other fracture of tuberosity of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159132,10,'S92.045A ','Nondisplaced other fracture of tuberosity of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159131,10,'S92.044S ','Nondisplaced other fracture of tuberosity of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(159130,10,'S92.044P ','Nondisplaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159129,10,'S92.044K ','Nondisplaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159128,10,'S92.044G ','Nondisplaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159127,10,'S92.044D ','Nondisplaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159126,10,'S92.044B ','Nondisplaced other fracture of tuberosity of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159125,10,'S92.044A ','Nondisplaced other fracture of tuberosity of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159124,10,'S92.043S ','Displaced other fracture of tuberosity of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(159123,10,'S92.043P ','Displaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159122,10,'S92.043K ','Displaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159121,10,'S92.043G ','Displaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159120,10,'S92.043D ','Displaced other fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159119,10,'S92.043B ','Displaced other fracture of tuberosity of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159118,10,'S92.043A ','Displaced other fracture of tuberosity of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159117,10,'S92.042S ','Displaced other fracture of tuberosity of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(159116,10,'S92.042P ','Displaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159115,10,'S92.042K ','Displaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159114,10,'S92.042G ','Displaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159113,10,'S92.042D ','Displaced other fracture of tuberosity of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159112,10,'S92.042B ','Displaced other fracture of tuberosity of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159111,10,'S92.042A ','Displaced other fracture of tuberosity of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159110,10,'S92.041S ','Displaced other fracture of tuberosity of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(159109,10,'S92.041P ','Displaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159108,10,'S92.041K ','Displaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159107,10,'S92.041G ','Displaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159106,10,'S92.041D ','Displaced other fracture of tuberosity of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159105,10,'S92.041B ','Displaced other fracture of tuberosity of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159104,10,'S92.041A ','Displaced other fracture of tuberosity of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159103,10,'S92.036S ','Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(159102,10,'S92.036P ','Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159101,10,'S92.036K ','Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159100,10,'S92.036G ','Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159099,10,'S92.036D ','Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159098,10,'S92.036B ','Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159097,10,'S92.036A ','Nondisplaced avulsion fracture of tuberosity of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159096,10,'S92.035S ','Nondisplaced avulsion fracture of tuberosity of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(159095,10,'S92.035P ','Nondisplaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159094,10,'S92.035K ','Nondisplaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159093,10,'S92.035G ','Nondisplaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159092,10,'S92.035D ','Nondisplaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159091,10,'S92.035B ','Nondisplaced avulsion fracture of tuberosity of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159090,10,'S92.035A ','Nondisplaced avulsion fracture of tuberosity of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159089,10,'S92.034S ','Nondisplaced avulsion fracture of tuberosity of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(159088,10,'S92.034P ','Nondisplaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159087,10,'S92.034K ','Nondisplaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159086,10,'S92.034G ','Nondisplaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159085,10,'S92.034D ','Nondisplaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159084,10,'S92.034B ','Nondisplaced avulsion fracture of tuberosity of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159083,10,'S92.034A ','Nondisplaced avulsion fracture of tuberosity of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159082,10,'S92.033S ','Displaced avulsion fracture of tuberosity of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(159081,10,'S92.033P ','Displaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159080,10,'S92.033K ','Displaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159079,10,'S92.033G ','Displaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159078,10,'S92.033D ','Displaced avulsion fracture of tuberosity of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159077,10,'S92.033B ','Displaced avulsion fracture of tuberosity of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159076,10,'S92.033A ','Displaced avulsion fracture of tuberosity of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159075,10,'S92.032S ','Displaced avulsion fracture of tuberosity of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(159074,10,'S92.032P ','Displaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159073,10,'S92.032K ','Displaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159072,10,'S92.032G ','Displaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159071,10,'S92.032D ','Displaced avulsion fracture of tuberosity of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159070,10,'S92.032B ','Displaced avulsion fracture of tuberosity of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159069,10,'S92.032A ','Displaced avulsion fracture of tuberosity of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159068,10,'S92.031S ','Displaced avulsion fracture of tuberosity of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(159067,10,'S92.031P ','Displaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159066,10,'S92.031K ','Displaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159065,10,'S92.031G ','Displaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159064,10,'S92.031D ','Displaced avulsion fracture of tuberosity of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159063,10,'S92.031B ','Displaced avulsion fracture of tuberosity of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159062,10,'S92.031A ','Displaced avulsion fracture of tuberosity of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159061,10,'S92.026S ','Nondisplaced fracture of anterior process of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(159060,10,'S92.026P ','Nondisplaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159059,10,'S92.026K ','Nondisplaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159058,10,'S92.026G ','Nondisplaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159057,10,'S92.026D ','Nondisplaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159056,10,'S92.026B ','Nondisplaced fracture of anterior process of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159055,10,'S92.026A ','Nondisplaced fracture of anterior process of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159054,10,'S92.025S ','Nondisplaced fracture of anterior process of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(159053,10,'S92.025P ','Nondisplaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159052,10,'S92.025K ','Nondisplaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159051,10,'S92.025G ','Nondisplaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159050,10,'S92.025D ','Nondisplaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159049,10,'S92.025B ','Nondisplaced fracture of anterior process of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159048,10,'S92.025A ','Nondisplaced fracture of anterior process of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159047,10,'S92.024S ','Nondisplaced fracture of anterior process of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(159046,10,'S92.024P ','Nondisplaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159045,10,'S92.024K ','Nondisplaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159044,10,'S92.024G ','Nondisplaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159043,10,'S92.024D ','Nondisplaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159042,10,'S92.024B ','Nondisplaced fracture of anterior process of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159041,10,'S92.024A ','Nondisplaced fracture of anterior process of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159040,10,'S92.023S ','Displaced fracture of anterior process of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(159039,10,'S92.023P ','Displaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159038,10,'S92.023K ','Displaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159037,10,'S92.023G ','Displaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159036,10,'S92.023D ','Displaced fracture of anterior process of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159035,10,'S92.023B ','Displaced fracture of anterior process of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159034,10,'S92.023A ','Displaced fracture of anterior process of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159033,10,'S92.022S ','Displaced fracture of anterior process of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(159032,10,'S92.022P ','Displaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159031,10,'S92.022K ','Displaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159030,10,'S92.022G ','Displaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159029,10,'S92.022D ','Displaced fracture of anterior process of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159028,10,'S92.022B ','Displaced fracture of anterior process of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159027,10,'S92.022A ','Displaced fracture of anterior process of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159026,10,'S92.021S ','Displaced fracture of anterior process of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(159025,10,'S92.021P ','Displaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159024,10,'S92.021K ','Displaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159023,10,'S92.021G ','Displaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159022,10,'S92.021D ','Displaced fracture of anterior process of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159021,10,'S92.021B ','Displaced fracture of anterior process of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159020,10,'S92.021A ','Displaced fracture of anterior process of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159019,10,'S92.016S ','Nondisplaced fracture of body of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(159018,10,'S92.016P ','Nondisplaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159017,10,'S92.016K ','Nondisplaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159016,10,'S92.016G ','Nondisplaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159015,10,'S92.016D ','Nondisplaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159014,10,'S92.016B ','Nondisplaced fracture of body of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159013,10,'S92.016A ','Nondisplaced fracture of body of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159012,10,'S92.015S ','Nondisplaced fracture of body of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(159011,10,'S92.015P ','Nondisplaced fracture of body of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159010,10,'S92.015K ','Nondisplaced fracture of body of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159009,10,'S92.015G ','Nondisplaced fracture of body of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159008,10,'S92.015D ','Nondisplaced fracture of body of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159007,10,'S92.015B ','Nondisplaced fracture of body of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(159006,10,'S92.015A ','Nondisplaced fracture of body of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(159005,10,'S92.014S ','Nondisplaced fracture of body of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(159004,10,'S92.014P ','Nondisplaced fracture of body of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(159003,10,'S92.014K ','Nondisplaced fracture of body of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(159002,10,'S92.014G ','Nondisplaced fracture of body of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(159001,10,'S92.014D ','Nondisplaced fracture of body of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(159000,10,'S92.014B ','Nondisplaced fracture of body of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(158999,10,'S92.014A ','Nondisplaced fracture of body of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158998,10,'S92.013S ','Displaced fracture of body of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(158997,10,'S92.013P ','Displaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158996,10,'S92.013K ','Displaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158995,10,'S92.013G ','Displaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158994,10,'S92.013D ','Displaced fracture of body of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158993,10,'S92.013B ','Displaced fracture of body of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(158992,10,'S92.013A ','Displaced fracture of body of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158991,10,'S92.012S ','Displaced fracture of body of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(158990,10,'S92.012P ','Displaced fracture of body of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158989,10,'S92.012K ','Displaced fracture of body of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158988,10,'S92.012G ','Displaced fracture of body of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158987,10,'S92.012D ','Displaced fracture of body of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158986,10,'S92.012B ','Displaced fracture of body of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(158985,10,'S92.012A ','Displaced fracture of body of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158984,10,'S92.011S ','Displaced fracture of body of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(158983,10,'S92.011P ','Displaced fracture of body of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158982,10,'S92.011K ','Displaced fracture of body of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158981,10,'S92.011G ','Displaced fracture of body of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158980,10,'S92.011D ','Displaced fracture of body of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158979,10,'S92.011B ','Displaced fracture of body of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(158978,10,'S92.011A ','Displaced fracture of body of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158977,10,'S92.009S ','Unspecified fracture of unspecified calcaneus, sequela','Y','0000-00-00 00:00:00'),(158976,10,'S92.009P ','Unspecified fracture of unspecified calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158975,10,'S92.009K ','Unspecified fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158974,10,'S92.009G ','Unspecified fracture of unspecified calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158973,10,'S92.009D ','Unspecified fracture of unspecified calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158972,10,'S92.009B ','Unspecified fracture of unspecified calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(158971,10,'S92.009A ','Unspecified fracture of unspecified calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158970,10,'S92.002S ','Unspecified fracture of left calcaneus, sequela','Y','0000-00-00 00:00:00'),(158969,10,'S92.002P ','Unspecified fracture of left calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158968,10,'S92.002K ','Unspecified fracture of left calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158967,10,'S92.002G ','Unspecified fracture of left calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158966,10,'S92.002D ','Unspecified fracture of left calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158965,10,'S92.002B ','Unspecified fracture of left calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(158964,10,'S92.002A ','Unspecified fracture of left calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158963,10,'S92.001S ','Unspecified fracture of right calcaneus, sequela','Y','0000-00-00 00:00:00'),(158962,10,'S92.001P ','Unspecified fracture of right calcaneus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158961,10,'S92.001K ','Unspecified fracture of right calcaneus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158960,10,'S92.001G ','Unspecified fracture of right calcaneus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158959,10,'S92.001D ','Unspecified fracture of right calcaneus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158958,10,'S92.001B ','Unspecified fracture of right calcaneus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(158957,10,'S92.001A ','Unspecified fracture of right calcaneus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158956,10,'S91.359S ','Open bite, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(158955,10,'S91.359D ','Open bite, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158954,10,'S91.359A ','Open bite, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(158953,10,'S91.352S ','Open bite, left foot, sequela','Y','0000-00-00 00:00:00'),(158952,10,'S91.352D ','Open bite, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158951,10,'S91.352A ','Open bite, left foot, initial encounter','Y','0000-00-00 00:00:00'),(158950,10,'S91.351S ','Open bite, right foot, sequela','Y','0000-00-00 00:00:00'),(158949,10,'S91.351D ','Open bite, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158948,10,'S91.351A ','Open bite, right foot, initial encounter','Y','0000-00-00 00:00:00'),(158947,10,'S91.349S ','Puncture wound with foreign body, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(158946,10,'S91.349D ','Puncture wound with foreign body, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158945,10,'S91.349A ','Puncture wound with foreign body, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(158944,10,'S91.342S ','Puncture wound with foreign body, left foot, sequela','Y','0000-00-00 00:00:00'),(158943,10,'S91.342D ','Puncture wound with foreign body, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158942,10,'S91.342A ','Puncture wound with foreign body, left foot, initial encounter','Y','0000-00-00 00:00:00'),(158941,10,'S91.341S ','Puncture wound with foreign body, right foot, sequela','Y','0000-00-00 00:00:00'),(158940,10,'S91.341D ','Puncture wound with foreign body, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158939,10,'S91.341A ','Puncture wound with foreign body, right foot, initial encounter','Y','0000-00-00 00:00:00'),(158938,10,'S91.339S ','Puncture wound without foreign body, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(158937,10,'S91.339D ','Puncture wound without foreign body, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158936,10,'S91.339A ','Puncture wound without foreign body, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(158935,10,'S91.332S ','Puncture wound without foreign body, left foot, sequela','Y','0000-00-00 00:00:00'),(158934,10,'S91.332D ','Puncture wound without foreign body, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158933,10,'S91.332A ','Puncture wound without foreign body, left foot, initial encounter','Y','0000-00-00 00:00:00'),(158932,10,'S91.331S ','Puncture wound without foreign body, right foot, sequela','Y','0000-00-00 00:00:00'),(158931,10,'S91.331D ','Puncture wound without foreign body, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158930,10,'S91.331A ','Puncture wound without foreign body, right foot, initial encounter','Y','0000-00-00 00:00:00'),(158929,10,'S91.329S ','Laceration with foreign body, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(158928,10,'S91.329D ','Laceration with foreign body, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158927,10,'S91.329A ','Laceration with foreign body, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(158926,10,'S91.322S ','Laceration with foreign body, left foot, sequela','Y','0000-00-00 00:00:00'),(158925,10,'S91.322D ','Laceration with foreign body, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158924,10,'S91.322A ','Laceration with foreign body, left foot, initial encounter','Y','0000-00-00 00:00:00'),(158923,10,'S91.321S ','Laceration with foreign body, right foot, sequela','Y','0000-00-00 00:00:00'),(158922,10,'S91.321D ','Laceration with foreign body, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158921,10,'S91.321A ','Laceration with foreign body, right foot, initial encounter','Y','0000-00-00 00:00:00'),(158920,10,'S91.319S ','Laceration without foreign body, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(158919,10,'S91.319D ','Laceration without foreign body, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158918,10,'S91.319A ','Laceration without foreign body, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(158917,10,'S91.312S ','Laceration without foreign body, left foot, sequela','Y','0000-00-00 00:00:00'),(158916,10,'S91.312D ','Laceration without foreign body, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158915,10,'S91.312A ','Laceration without foreign body, left foot, initial encounter','Y','0000-00-00 00:00:00'),(158914,10,'S91.311S ','Laceration without foreign body, right foot, sequela','Y','0000-00-00 00:00:00'),(158913,10,'S91.311D ','Laceration without foreign body, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158911,10,'S91.309S ','Unspecified open wound, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(158912,10,'S91.311A ','Laceration without foreign body, right foot, initial encounter','Y','0000-00-00 00:00:00'),(158910,10,'S91.309D ','Unspecified open wound, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158909,10,'S91.309A ','Unspecified open wound, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(158908,10,'S91.302S ','Unspecified open wound, left foot, sequela','Y','0000-00-00 00:00:00'),(158907,10,'S91.302D ','Unspecified open wound, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158906,10,'S91.302A ','Unspecified open wound, left foot, initial encounter','Y','0000-00-00 00:00:00'),(158905,10,'S91.301S ','Unspecified open wound, right foot, sequela','Y','0000-00-00 00:00:00'),(158904,10,'S91.301D ','Unspecified open wound, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158903,10,'S91.301A ','Unspecified open wound, right foot, initial encounter','Y','0000-00-00 00:00:00'),(158902,10,'S91.259S ','Open bite of unspecified toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158901,10,'S91.259D ','Open bite of unspecified toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158900,10,'S91.259A ','Open bite of unspecified toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158899,10,'S91.256S ','Open bite of unspecified lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158898,10,'S91.256D ','Open bite of unspecified lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158897,10,'S91.256A ','Open bite of unspecified lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158896,10,'S91.255S ','Open bite of left lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158895,10,'S91.255D ','Open bite of left lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158894,10,'S91.255A ','Open bite of left lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158893,10,'S91.254S ','Open bite of right lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158892,10,'S91.254D ','Open bite of right lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158891,10,'S91.254A ','Open bite of right lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158890,10,'S91.253S ','Open bite of unspecified great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158889,10,'S91.253D ','Open bite of unspecified great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158888,10,'S91.253A ','Open bite of unspecified great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158887,10,'S91.252S ','Open bite of left great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158886,10,'S91.252D ','Open bite of left great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158885,10,'S91.252A ','Open bite of left great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158884,10,'S91.251S ','Open bite of right great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158883,10,'S91.251D ','Open bite of right great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158882,10,'S91.251A ','Open bite of right great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158881,10,'S91.249S ','Puncture wound with foreign body of unspecified toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158880,10,'S91.249D ','Puncture wound with foreign body of unspecified toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158879,10,'S91.249A ','Puncture wound with foreign body of unspecified toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158878,10,'S91.246S ','Puncture wound with foreign body of unspecified lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158877,10,'S91.246D ','Puncture wound with foreign body of unspecified lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158876,10,'S91.246A ','Puncture wound with foreign body of unspecified lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158875,10,'S91.245S ','Puncture wound with foreign body of left lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158874,10,'S91.245D ','Puncture wound with foreign body of left lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158873,10,'S91.245A ','Puncture wound with foreign body of left lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158872,10,'S91.244S ','Puncture wound with foreign body of right lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158871,10,'S91.244D ','Puncture wound with foreign body of right lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158870,10,'S91.244A ','Puncture wound with foreign body of right lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158869,10,'S91.243S ','Puncture wound with foreign body of unspecified great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158868,10,'S91.243D ','Puncture wound with foreign body of unspecified great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158867,10,'S91.243A ','Puncture wound with foreign body of unspecified great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158866,10,'S91.242S ','Puncture wound with foreign body of left great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158865,10,'S91.242D ','Puncture wound with foreign body of left great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158864,10,'S91.242A ','Puncture wound with foreign body of left great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158863,10,'S91.241S ','Puncture wound with foreign body of right great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158862,10,'S91.241D ','Puncture wound with foreign body of right great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158861,10,'S91.241A ','Puncture wound with foreign body of right great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158860,10,'S91.239S ','Puncture wound without foreign body of unspecified toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158859,10,'S91.239D ','Puncture wound without foreign body of unspecified toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158858,10,'S91.239A ','Puncture wound without foreign body of unspecified toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158857,10,'S91.236S ','Puncture wound without foreign body of unspecified lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158856,10,'S91.236D ','Puncture wound without foreign body of unspecified lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158855,10,'S91.236A ','Puncture wound without foreign body of unspecified lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158854,10,'S91.235S ','Puncture wound without foreign body of left lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158853,10,'S91.235D ','Puncture wound without foreign body of left lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158852,10,'S91.235A ','Puncture wound without foreign body of left lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158851,10,'S91.234S ','Puncture wound without foreign body of right lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158850,10,'S91.234D ','Puncture wound without foreign body of right lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158849,10,'S91.234A ','Puncture wound without foreign body of right lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158848,10,'S91.233S ','Puncture wound without foreign body of unspecified great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158847,10,'S91.233D ','Puncture wound without foreign body of unspecified great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158846,10,'S91.233A ','Puncture wound without foreign body of unspecified great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158845,10,'S91.232S ','Puncture wound without foreign body of left great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158844,10,'S91.232D ','Puncture wound without foreign body of left great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158843,10,'S91.232A ','Puncture wound without foreign body of left great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158842,10,'S91.231S ','Puncture wound without foreign body of right great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158841,10,'S91.231D ','Puncture wound without foreign body of right great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158840,10,'S91.231A ','Puncture wound without foreign body of right great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158839,10,'S91.229S ','Laceration with foreign body of unspecified toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158838,10,'S91.229D ','Laceration with foreign body of unspecified toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158837,10,'S91.229A ','Laceration with foreign body of unspecified toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158836,10,'S91.226S ','Laceration with foreign body of unspecified lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158835,10,'S91.226D ','Laceration with foreign body of unspecified lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158834,10,'S91.226A ','Laceration with foreign body of unspecified lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158833,10,'S91.225S ','Laceration with foreign body of left lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158832,10,'S91.225D ','Laceration with foreign body of left lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158831,10,'S91.225A ','Laceration with foreign body of left lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158830,10,'S91.224S ','Laceration with foreign body of right lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158829,10,'S91.224D ','Laceration with foreign body of right lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158828,10,'S91.224A ','Laceration with foreign body of right lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158827,10,'S91.223S ','Laceration with foreign body of unspecified great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158826,10,'S91.223D ','Laceration with foreign body of unspecified great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158825,10,'S91.223A ','Laceration with foreign body of unspecified great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158824,10,'S91.222S ','Laceration with foreign body of left great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158823,10,'S91.222D ','Laceration with foreign body of left great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158822,10,'S91.222A ','Laceration with foreign body of left great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158821,10,'S91.221S ','Laceration with foreign body of right great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158820,10,'S91.221D ','Laceration with foreign body of right great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158819,10,'S91.221A ','Laceration with foreign body of right great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158818,10,'S91.219S ','Laceration without foreign body of unspecified toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158817,10,'S91.219D ','Laceration without foreign body of unspecified toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158816,10,'S91.219A ','Laceration without foreign body of unspecified toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158815,10,'S91.216S ','Laceration without foreign body of unspecified lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158814,10,'S91.216D ','Laceration without foreign body of unspecified lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158813,10,'S91.216A ','Laceration without foreign body of unspecified lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158812,10,'S91.215S ','Laceration without foreign body of left lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158811,10,'S91.215D ','Laceration without foreign body of left lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158810,10,'S91.215A ','Laceration without foreign body of left lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158809,10,'S91.214S ','Laceration without foreign body of right lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158808,10,'S91.214D ','Laceration without foreign body of right lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158807,10,'S91.214A ','Laceration without foreign body of right lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158806,10,'S91.213S ','Laceration without foreign body of unspecified great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158805,10,'S91.213D ','Laceration without foreign body of unspecified great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158804,10,'S91.213A ','Laceration without foreign body of unspecified great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158803,10,'S91.212S ','Laceration without foreign body of left great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158802,10,'S91.212D ','Laceration without foreign body of left great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158801,10,'S91.212A ','Laceration without foreign body of left great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158800,10,'S91.211S ','Laceration without foreign body of right great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158799,10,'S91.211D ','Laceration without foreign body of right great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158798,10,'S91.211A ','Laceration without foreign body of right great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158797,10,'S91.209S ','Unspecified open wound of unspecified toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158796,10,'S91.209D ','Unspecified open wound of unspecified toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158795,10,'S91.209A ','Unspecified open wound of unspecified toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158794,10,'S91.206S ','Unspecified open wound of unspecified lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158793,10,'S91.206D ','Unspecified open wound of unspecified lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158792,10,'S91.206A ','Unspecified open wound of unspecified lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158791,10,'S91.205S ','Unspecified open wound of left lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158790,10,'S91.205D ','Unspecified open wound of left lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158789,10,'S91.205A ','Unspecified open wound of left lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158788,10,'S91.204S ','Unspecified open wound of right lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158787,10,'S91.204D ','Unspecified open wound of right lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158786,10,'S91.204A ','Unspecified open wound of right lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158785,10,'S91.203S ','Unspecified open wound of unspecified great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158784,10,'S91.203D ','Unspecified open wound of unspecified great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158783,10,'S91.203A ','Unspecified open wound of unspecified great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158782,10,'S91.202S ','Unspecified open wound of left great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158781,10,'S91.202D ','Unspecified open wound of left great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158780,10,'S91.202A ','Unspecified open wound of left great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158779,10,'S91.201S ','Unspecified open wound of right great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158778,10,'S91.201D ','Unspecified open wound of right great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158777,10,'S91.201A ','Unspecified open wound of right great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158776,10,'S91.159S ','Open bite of unspecified toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158775,10,'S91.159D ','Open bite of unspecified toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158774,10,'S91.159A ','Open bite of unspecified toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158773,10,'S91.156S ','Open bite of unspecified lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158772,10,'S91.156D ','Open bite of unspecified lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158771,10,'S91.156A ','Open bite of unspecified lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158770,10,'S91.155S ','Open bite of left lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158769,10,'S91.155D ','Open bite of left lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158768,10,'S91.155A ','Open bite of left lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158767,10,'S91.154S ','Open bite of right lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158766,10,'S91.154D ','Open bite of right lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158765,10,'S91.154A ','Open bite of right lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158764,10,'S91.153S ','Open bite of unspecified great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158763,10,'S91.153D ','Open bite of unspecified great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158762,10,'S91.153A ','Open bite of unspecified great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158761,10,'S91.152S ','Open bite of left great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158760,10,'S91.152D ','Open bite of left great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158759,10,'S91.152A ','Open bite of left great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158758,10,'S91.151S ','Open bite of right great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158757,10,'S91.151D ','Open bite of right great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158756,10,'S91.151A ','Open bite of right great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158755,10,'S91.149S ','Puncture wound with foreign body of unspecified toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158754,10,'S91.149D ','Puncture wound with foreign body of unspecified toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158753,10,'S91.149A ','Puncture wound with foreign body of unspecified toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158752,10,'S91.146S ','Puncture wound with foreign body of unspecified lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158751,10,'S91.146D ','Puncture wound with foreign body of unspecified lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158750,10,'S91.146A ','Puncture wound with foreign body of unspecified lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158749,10,'S91.145S ','Puncture wound with foreign body of left lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158748,10,'S91.145D ','Puncture wound with foreign body of left lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158747,10,'S91.145A ','Puncture wound with foreign body of left lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158746,10,'S91.144S ','Puncture wound with foreign body of right lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158745,10,'S91.144D ','Puncture wound with foreign body of right lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158744,10,'S91.144A ','Puncture wound with foreign body of right lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158743,10,'S91.143S ','Puncture wound with foreign body of unspecified great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158742,10,'S91.143D ','Puncture wound with foreign body of unspecified great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158741,10,'S91.143A ','Puncture wound with foreign body of unspecified great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158740,10,'S91.142S ','Puncture wound with foreign body of left great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158739,10,'S91.142D ','Puncture wound with foreign body of left great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158738,10,'S91.142A ','Puncture wound with foreign body of left great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158737,10,'S91.141S ','Puncture wound with foreign body of right great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158736,10,'S91.141D ','Puncture wound with foreign body of right great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158735,10,'S91.141A ','Puncture wound with foreign body of right great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158734,10,'S91.139S ','Puncture wound without foreign body of unspecified toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158733,10,'S91.139D ','Puncture wound without foreign body of unspecified toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158732,10,'S91.139A ','Puncture wound without foreign body of unspecified toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158731,10,'S91.136S ','Puncture wound without foreign body of unspecified lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158730,10,'S91.136D ','Puncture wound without foreign body of unspecified lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158729,10,'S91.136A ','Puncture wound without foreign body of unspecified lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158728,10,'S91.135S ','Puncture wound without foreign body of left lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158727,10,'S91.135D ','Puncture wound without foreign body of left lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158726,10,'S91.135A ','Puncture wound without foreign body of left lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158725,10,'S91.134S ','Puncture wound without foreign body of right lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158724,10,'S91.134D ','Puncture wound without foreign body of right lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158723,10,'S91.134A ','Puncture wound without foreign body of right lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158722,10,'S91.133S ','Puncture wound without foreign body of unspecified great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158721,10,'S91.133D ','Puncture wound without foreign body of unspecified great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158720,10,'S91.133A ','Puncture wound without foreign body of unspecified great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158719,10,'S91.132S ','Puncture wound without foreign body of left great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158718,10,'S91.132D ','Puncture wound without foreign body of left great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158717,10,'S91.132A ','Puncture wound without foreign body of left great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158716,10,'S91.131S ','Puncture wound without foreign body of right great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158715,10,'S91.131D ','Puncture wound without foreign body of right great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158714,10,'S91.131A ','Puncture wound without foreign body of right great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158713,10,'S91.129S ','Laceration with foreign body of unspecified toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158712,10,'S91.129D ','Laceration with foreign body of unspecified toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158711,10,'S91.129A ','Laceration with foreign body of unspecified toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158710,10,'S91.126S ','Laceration with foreign body of unspecified lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158709,10,'S91.126D ','Laceration with foreign body of unspecified lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158708,10,'S91.126A ','Laceration with foreign body of unspecified lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158707,10,'S91.125S ','Laceration with foreign body of left lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158706,10,'S91.125D ','Laceration with foreign body of left lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158705,10,'S91.125A ','Laceration with foreign body of left lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158704,10,'S91.124S ','Laceration with foreign body of right lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158703,10,'S91.124D ','Laceration with foreign body of right lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158702,10,'S91.124A ','Laceration with foreign body of right lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158701,10,'S91.123S ','Laceration with foreign body of unspecified great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158700,10,'S91.123D ','Laceration with foreign body of unspecified great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158699,10,'S91.123A ','Laceration with foreign body of unspecified great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158698,10,'S91.122S ','Laceration with foreign body of left great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158697,10,'S91.122D ','Laceration with foreign body of left great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158696,10,'S91.122A ','Laceration with foreign body of left great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158695,10,'S91.121S ','Laceration with foreign body of right great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158694,10,'S91.121D ','Laceration with foreign body of right great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158693,10,'S91.121A ','Laceration with foreign body of right great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158692,10,'S91.119S ','Laceration without foreign body of unspecified toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158691,10,'S91.119D ','Laceration without foreign body of unspecified toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158690,10,'S91.119A ','Laceration without foreign body of unspecified toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158689,10,'S91.116S ','Laceration without foreign body of unspecified lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158688,10,'S91.116D ','Laceration without foreign body of unspecified lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158687,10,'S91.116A ','Laceration without foreign body of unspecified lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158686,10,'S91.115S ','Laceration without foreign body of left lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158685,10,'S91.115D ','Laceration without foreign body of left lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158684,10,'S91.115A ','Laceration without foreign body of left lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158683,10,'S91.114S ','Laceration without foreign body of right lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158682,10,'S91.114D ','Laceration without foreign body of right lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158681,10,'S91.114A ','Laceration without foreign body of right lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158680,10,'S91.113S ','Laceration without foreign body of unspecified great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158679,10,'S91.113D ','Laceration without foreign body of unspecified great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158678,10,'S91.113A ','Laceration without foreign body of unspecified great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158677,10,'S91.112S ','Laceration without foreign body of left great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158676,10,'S91.112D ','Laceration without foreign body of left great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158675,10,'S91.112A ','Laceration without foreign body of left great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158674,10,'S91.111S ','Laceration without foreign body of right great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158673,10,'S91.111D ','Laceration without foreign body of right great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158672,10,'S91.111A ','Laceration without foreign body of right great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158671,10,'S91.109S ','Unspecified open wound of unspecified toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158670,10,'S91.109D ','Unspecified open wound of unspecified toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158669,10,'S91.109A ','Unspecified open wound of unspecified toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158668,10,'S91.106S ','Unspecified open wound of unspecified lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158667,10,'S91.106D ','Unspecified open wound of unspecified lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158666,10,'S91.106A ','Unspecified open wound of unspecified lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158665,10,'S91.105S ','Unspecified open wound of left lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158664,10,'S91.105D ','Unspecified open wound of left lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158663,10,'S91.105A ','Unspecified open wound of left lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158662,10,'S91.104S ','Unspecified open wound of right lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158661,10,'S91.104D ','Unspecified open wound of right lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158660,10,'S91.104A ','Unspecified open wound of right lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158659,10,'S91.103S ','Unspecified open wound of unspecified great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158658,10,'S91.103D ','Unspecified open wound of unspecified great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158657,10,'S91.103A ','Unspecified open wound of unspecified great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158656,10,'S91.102S ','Unspecified open wound of left great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158655,10,'S91.102D ','Unspecified open wound of left great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158654,10,'S91.102A ','Unspecified open wound of left great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158653,10,'S91.101S ','Unspecified open wound of right great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158652,10,'S91.101D ','Unspecified open wound of right great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158651,10,'S91.101A ','Unspecified open wound of right great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158650,10,'S91.059S ','Open bite, unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(158649,10,'S91.059D ','Open bite, unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158647,10,'S91.052S ','Open bite, left ankle, sequela','Y','0000-00-00 00:00:00'),(158648,10,'S91.059A ','Open bite, unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(158645,10,'S91.052A ','Open bite, left ankle, initial encounter','Y','0000-00-00 00:00:00'),(158646,10,'S91.052D ','Open bite, left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158644,10,'S91.051S ','Open bite, right ankle, sequela','Y','0000-00-00 00:00:00'),(158643,10,'S91.051D ','Open bite, right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158641,10,'S91.049S ','Puncture wound with foreign body, unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(158642,10,'S91.051A ','Open bite, right ankle, initial encounter','Y','0000-00-00 00:00:00'),(158640,10,'S91.049D ','Puncture wound with foreign body, unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158639,10,'S91.049A ','Puncture wound with foreign body, unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(158638,10,'S91.042S ','Puncture wound with foreign body, left ankle, sequela','Y','0000-00-00 00:00:00'),(158637,10,'S91.042D ','Puncture wound with foreign body, left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158636,10,'S91.042A ','Puncture wound with foreign body, left ankle, initial encounter','Y','0000-00-00 00:00:00'),(158635,10,'S91.041S ','Puncture wound with foreign body, right ankle, sequela','Y','0000-00-00 00:00:00'),(158634,10,'S91.041D ','Puncture wound with foreign body, right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158633,10,'S91.041A ','Puncture wound with foreign body, right ankle, initial encounter','Y','0000-00-00 00:00:00'),(158632,10,'S91.039S ','Puncture wound without foreign body, unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(158631,10,'S91.039D ','Puncture wound without foreign body, unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158630,10,'S91.039A ','Puncture wound without foreign body, unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(158629,10,'S91.032S ','Puncture wound without foreign body, left ankle, sequela','Y','0000-00-00 00:00:00'),(158628,10,'S91.032D ','Puncture wound without foreign body, left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158627,10,'S91.032A ','Puncture wound without foreign body, left ankle, initial encounter','Y','0000-00-00 00:00:00'),(158626,10,'S91.031S ','Puncture wound without foreign body, right ankle, sequela','Y','0000-00-00 00:00:00'),(158625,10,'S91.031D ','Puncture wound without foreign body, right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158624,10,'S91.031A ','Puncture wound without foreign body, right ankle, initial encounter','Y','0000-00-00 00:00:00'),(158623,10,'S91.029S ','Laceration with foreign body, unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(158622,10,'S91.029D ','Laceration with foreign body, unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158620,10,'S91.022S ','Laceration with foreign body, left ankle, sequela','Y','0000-00-00 00:00:00'),(158621,10,'S91.029A ','Laceration with foreign body, unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(158619,10,'S91.022D ','Laceration with foreign body, left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158618,10,'S91.022A ','Laceration with foreign body, left ankle, initial encounter','Y','0000-00-00 00:00:00'),(158617,10,'S91.021S ','Laceration with foreign body, right ankle, sequela','Y','0000-00-00 00:00:00'),(158616,10,'S91.021D ','Laceration with foreign body, right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158615,10,'S91.021A ','Laceration with foreign body, right ankle, initial encounter','Y','0000-00-00 00:00:00'),(158614,10,'S91.019S ','Laceration without foreign body, unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(158613,10,'S91.019D ','Laceration without foreign body, unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158612,10,'S91.019A ','Laceration without foreign body, unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(158611,10,'S91.012S ','Laceration without foreign body, left ankle, sequela','Y','0000-00-00 00:00:00'),(158610,10,'S91.012D ','Laceration without foreign body, left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158609,10,'S91.012A ','Laceration without foreign body, left ankle, initial encounter','Y','0000-00-00 00:00:00'),(158608,10,'S91.011S ','Laceration without foreign body, right ankle, sequela','Y','0000-00-00 00:00:00'),(158607,10,'S91.011D ','Laceration without foreign body, right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158606,10,'S91.011A ','Laceration without foreign body, right ankle, initial encounter','Y','0000-00-00 00:00:00'),(158605,10,'S91.009S ','Unspecified open wound, unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(158604,10,'S91.009D ','Unspecified open wound, unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158603,10,'S91.009A ','Unspecified open wound, unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(158602,10,'S91.002S ','Unspecified open wound, left ankle, sequela','Y','0000-00-00 00:00:00'),(158601,10,'S91.002D ','Unspecified open wound, left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158600,10,'S91.002A ','Unspecified open wound, left ankle, initial encounter','Y','0000-00-00 00:00:00'),(158599,10,'S91.001S ','Unspecified open wound, right ankle, sequela','Y','0000-00-00 00:00:00'),(158598,10,'S91.001D ','Unspecified open wound, right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158597,10,'S91.001A ','Unspecified open wound, right ankle, initial encounter','Y','0000-00-00 00:00:00'),(158596,10,'S90.936S ','Unspecified superficial injury of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158595,10,'S90.936D ','Unspecified superficial injury of unspecified lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158594,10,'S90.936A ','Unspecified superficial injury of unspecified lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158593,10,'S90.935S ','Unspecified superficial injury of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158592,10,'S90.935D ','Unspecified superficial injury of left lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158591,10,'S90.935A ','Unspecified superficial injury of left lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158590,10,'S90.934S ','Unspecified superficial injury of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158589,10,'S90.934D ','Unspecified superficial injury of right lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158588,10,'S90.934A ','Unspecified superficial injury of right lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158587,10,'S90.933S ','Unspecified superficial injury of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(158586,10,'S90.933D ','Unspecified superficial injury of unspecified great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158584,10,'S90.932S ','Unspecified superficial injury of left great toe, sequela','Y','0000-00-00 00:00:00'),(158585,10,'S90.933A ','Unspecified superficial injury of unspecified great toe, initial encounter','Y','0000-00-00 00:00:00'),(158583,10,'S90.932D ','Unspecified superficial injury of left great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158582,10,'S90.932A ','Unspecified superficial injury of left great toe, initial encounter','Y','0000-00-00 00:00:00'),(158581,10,'S90.931S ','Unspecified superficial injury of right great toe, sequela','Y','0000-00-00 00:00:00'),(158580,10,'S90.931D ','Unspecified superficial injury of right great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158579,10,'S90.931A ','Unspecified superficial injury of right great toe, initial encounter','Y','0000-00-00 00:00:00'),(158578,10,'S90.929S ','Unspecified superficial injury of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(158577,10,'S90.929D ','Unspecified superficial injury of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158576,10,'S90.929A ','Unspecified superficial injury of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(158575,10,'S90.922S ','Unspecified superficial injury of left foot, sequela','Y','0000-00-00 00:00:00'),(158574,10,'S90.922D ','Unspecified superficial injury of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158573,10,'S90.922A ','Unspecified superficial injury of left foot, initial encounter','Y','0000-00-00 00:00:00'),(158572,10,'S90.921S ','Unspecified superficial injury of right foot, sequela','Y','0000-00-00 00:00:00'),(158571,10,'S90.921D ','Unspecified superficial injury of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158570,10,'S90.921A ','Unspecified superficial injury of right foot, initial encounter','Y','0000-00-00 00:00:00'),(158569,10,'S90.919S ','Unspecified superficial injury of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(158568,10,'S90.919D ','Unspecified superficial injury of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158567,10,'S90.919A ','Unspecified superficial injury of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(158566,10,'S90.912S ','Unspecified superficial injury of left ankle, sequela','Y','0000-00-00 00:00:00'),(158565,10,'S90.912D ','Unspecified superficial injury of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158564,10,'S90.912A ','Unspecified superficial injury of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(158563,10,'S90.911S ','Unspecified superficial injury of right ankle, sequela','Y','0000-00-00 00:00:00'),(158562,10,'S90.911D ','Unspecified superficial injury of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158561,10,'S90.911A ','Unspecified superficial injury of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(158560,10,'S90.879S ','Other superficial bite of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(158559,10,'S90.879D ','Other superficial bite of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158558,10,'S90.879A ','Other superficial bite of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(158557,10,'S90.872S ','Other superficial bite of left foot, sequela','Y','0000-00-00 00:00:00'),(158555,10,'S90.872A ','Other superficial bite of left foot, initial encounter','Y','0000-00-00 00:00:00'),(158556,10,'S90.872D ','Other superficial bite of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158554,10,'S90.871S ','Other superficial bite of right foot, sequela','Y','0000-00-00 00:00:00'),(158553,10,'S90.871D ','Other superficial bite of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158552,10,'S90.871A ','Other superficial bite of right foot, initial encounter','Y','0000-00-00 00:00:00'),(158550,10,'S90.869D ','Insect bite (nonvenomous), unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158551,10,'S90.869S ','Insect bite (nonvenomous), unspecified foot, sequela','Y','0000-00-00 00:00:00'),(158549,10,'S90.869A ','Insect bite (nonvenomous), unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(158548,10,'S90.862S ','Insect bite (nonvenomous), left foot, sequela','Y','0000-00-00 00:00:00'),(158547,10,'S90.862D ','Insect bite (nonvenomous), left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158545,10,'S90.861S ','Insect bite (nonvenomous), right foot, sequela','Y','0000-00-00 00:00:00'),(158546,10,'S90.862A ','Insect bite (nonvenomous), left foot, initial encounter','Y','0000-00-00 00:00:00'),(158544,10,'S90.861D ','Insect bite (nonvenomous), right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158543,10,'S90.861A ','Insect bite (nonvenomous), right foot, initial encounter','Y','0000-00-00 00:00:00'),(158542,10,'S90.859S ','Superficial foreign body, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(158540,10,'S90.859A ','Superficial foreign body, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(158541,10,'S90.859D ','Superficial foreign body, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158539,10,'S90.852S ','Superficial foreign body, left foot, sequela','Y','0000-00-00 00:00:00'),(158538,10,'S90.852D ','Superficial foreign body, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158536,10,'S90.851S ','Superficial foreign body, right foot, sequela','Y','0000-00-00 00:00:00'),(158537,10,'S90.852A ','Superficial foreign body, left foot, initial encounter','Y','0000-00-00 00:00:00'),(158535,10,'S90.851D ','Superficial foreign body, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158534,10,'S90.851A ','Superficial foreign body, right foot, initial encounter','Y','0000-00-00 00:00:00'),(158533,10,'S90.849S ','External constriction, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(158532,10,'S90.849D ','External constriction, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158531,10,'S90.849A ','External constriction, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(158530,10,'S90.842S ','External constriction, left foot, sequela','Y','0000-00-00 00:00:00'),(158529,10,'S90.842D ','External constriction, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158528,10,'S90.842A ','External constriction, left foot, initial encounter','Y','0000-00-00 00:00:00'),(158527,10,'S90.841S ','External constriction, right foot, sequela','Y','0000-00-00 00:00:00'),(158526,10,'S90.841D ','External constriction, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158525,10,'S90.841A ','External constriction, right foot, initial encounter','Y','0000-00-00 00:00:00'),(158524,10,'S90.829S ','Blister (nonthermal), unspecified foot, sequela','Y','0000-00-00 00:00:00'),(158523,10,'S90.829D ','Blister (nonthermal), unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158522,10,'S90.829A ','Blister (nonthermal), unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(158521,10,'S90.822S ','Blister (nonthermal), left foot, sequela','Y','0000-00-00 00:00:00'),(158520,10,'S90.822D ','Blister (nonthermal), left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158519,10,'S90.822A ','Blister (nonthermal), left foot, initial encounter','Y','0000-00-00 00:00:00'),(158518,10,'S90.821S ','Blister (nonthermal), right foot, sequela','Y','0000-00-00 00:00:00'),(158517,10,'S90.821D ','Blister (nonthermal), right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158515,10,'S90.819S ','Abrasion, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(158516,10,'S90.821A ','Blister (nonthermal), right foot, initial encounter','Y','0000-00-00 00:00:00'),(158514,10,'S90.819D ','Abrasion, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158513,10,'S90.819A ','Abrasion, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(158512,10,'S90.812S ','Abrasion, left foot, sequela','Y','0000-00-00 00:00:00'),(158511,10,'S90.812D ','Abrasion, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158509,10,'S90.811S ','Abrasion, right foot, sequela','Y','0000-00-00 00:00:00'),(158510,10,'S90.812A ','Abrasion, left foot, initial encounter','Y','0000-00-00 00:00:00'),(158508,10,'S90.811D ','Abrasion, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158507,10,'S90.811A ','Abrasion, right foot, initial encounter','Y','0000-00-00 00:00:00'),(158506,10,'S90.579S ','Other superficial bite of ankle, unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(158505,10,'S90.579D ','Other superficial bite of ankle, unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158504,10,'S90.579A ','Other superficial bite of ankle, unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(158503,10,'S90.572S ','Other superficial bite of ankle, left ankle, sequela','Y','0000-00-00 00:00:00'),(158502,10,'S90.572D ','Other superficial bite of ankle, left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158501,10,'S90.572A ','Other superficial bite of ankle, left ankle, initial encounter','Y','0000-00-00 00:00:00'),(158500,10,'S90.571S ','Other superficial bite of ankle, right ankle, sequela','Y','0000-00-00 00:00:00'),(158499,10,'S90.571D ','Other superficial bite of ankle, right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158498,10,'S90.571A ','Other superficial bite of ankle, right ankle, initial encounter','Y','0000-00-00 00:00:00'),(158497,10,'S90.569S ','Insect bite (nonvenomous), unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(158496,10,'S90.569D ','Insect bite (nonvenomous), unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158495,10,'S90.569A ','Insect bite (nonvenomous), unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(158494,10,'S90.562S ','Insect bite (nonvenomous), left ankle, sequela','Y','0000-00-00 00:00:00'),(158493,10,'S90.562D ','Insect bite (nonvenomous), left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158492,10,'S90.562A ','Insect bite (nonvenomous), left ankle, initial encounter','Y','0000-00-00 00:00:00'),(158491,10,'S90.561S ','Insect bite (nonvenomous), right ankle, sequela','Y','0000-00-00 00:00:00'),(158490,10,'S90.561D ','Insect bite (nonvenomous), right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158489,10,'S90.561A ','Insect bite (nonvenomous), right ankle, initial encounter','Y','0000-00-00 00:00:00'),(158488,10,'S90.559S ','Superficial foreign body, unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(158487,10,'S90.559D ','Superficial foreign body, unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158485,10,'S90.552S ','Superficial foreign body, left ankle, sequela','Y','0000-00-00 00:00:00'),(158486,10,'S90.559A ','Superficial foreign body, unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(158484,10,'S90.552D ','Superficial foreign body, left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158483,10,'S90.552A ','Superficial foreign body, left ankle, initial encounter','Y','0000-00-00 00:00:00'),(158482,10,'S90.551S ','Superficial foreign body, right ankle, sequela','Y','0000-00-00 00:00:00'),(158481,10,'S90.551D ','Superficial foreign body, right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158480,10,'S90.551A ','Superficial foreign body, right ankle, initial encounter','Y','0000-00-00 00:00:00'),(158479,10,'S90.549S ','External constriction, unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(158478,10,'S90.549D ','External constriction, unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158477,10,'S90.549A ','External constriction, unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(158476,10,'S90.542S ','External constriction, left ankle, sequela','Y','0000-00-00 00:00:00'),(158475,10,'S90.542D ','External constriction, left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158473,10,'S90.541S ','External constriction, right ankle, sequela','Y','0000-00-00 00:00:00'),(158474,10,'S90.542A ','External constriction, left ankle, initial encounter','Y','0000-00-00 00:00:00'),(158472,10,'S90.541D ','External constriction, right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158471,10,'S90.541A ','External constriction, right ankle, initial encounter','Y','0000-00-00 00:00:00'),(158470,10,'S90.529S ','Blister (nonthermal), unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(158469,10,'S90.529D ','Blister (nonthermal), unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158468,10,'S90.529A ','Blister (nonthermal), unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(158467,10,'S90.522S ','Blister (nonthermal), left ankle, sequela','Y','0000-00-00 00:00:00'),(158465,10,'S90.522A ','Blister (nonthermal), left ankle, initial encounter','Y','0000-00-00 00:00:00'),(158466,10,'S90.522D ','Blister (nonthermal), left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158464,10,'S90.521S ','Blister (nonthermal), right ankle, sequela','Y','0000-00-00 00:00:00'),(158463,10,'S90.521D ','Blister (nonthermal), right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158462,10,'S90.521A ','Blister (nonthermal), right ankle, initial encounter','Y','0000-00-00 00:00:00'),(158460,10,'S90.519D ','Abrasion, unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158461,10,'S90.519S ','Abrasion, unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(158459,10,'S90.519A ','Abrasion, unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(158458,10,'S90.512S ','Abrasion, left ankle, sequela','Y','0000-00-00 00:00:00'),(158456,10,'S90.512A ','Abrasion, left ankle, initial encounter','Y','0000-00-00 00:00:00'),(158457,10,'S90.512D ','Abrasion, left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158455,10,'S90.511S ','Abrasion, right ankle, sequela','Y','0000-00-00 00:00:00'),(158454,10,'S90.511D ','Abrasion, right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158453,10,'S90.511A ','Abrasion, right ankle, initial encounter','Y','0000-00-00 00:00:00'),(158452,10,'S90.476S ','Other superficial bite of unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158451,10,'S90.476D ','Other superficial bite of unspecified lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158450,10,'S90.476A ','Other superficial bite of unspecified lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158449,10,'S90.475S ','Other superficial bite of left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158448,10,'S90.475D ','Other superficial bite of left lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158447,10,'S90.475A ','Other superficial bite of left lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158446,10,'S90.474S ','Other superficial bite of right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158445,10,'S90.474D ','Other superficial bite of right lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158444,10,'S90.474A ','Other superficial bite of right lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158443,10,'S90.473S ','Other superficial bite of unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(158442,10,'S90.473D ','Other superficial bite of unspecified great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158441,10,'S90.473A ','Other superficial bite of unspecified great toe, initial encounter','Y','0000-00-00 00:00:00'),(158440,10,'S90.472S ','Other superficial bite of left great toe, sequela','Y','0000-00-00 00:00:00'),(158439,10,'S90.472D ','Other superficial bite of left great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158437,10,'S90.471S ','Other superficial bite of right great toe, sequela','Y','0000-00-00 00:00:00'),(158438,10,'S90.472A ','Other superficial bite of left great toe, initial encounter','Y','0000-00-00 00:00:00'),(158436,10,'S90.471D ','Other superficial bite of right great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158435,10,'S90.471A ','Other superficial bite of right great toe, initial encounter','Y','0000-00-00 00:00:00'),(158434,10,'S90.466S ','Insect bite (nonvenomous), unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158433,10,'S90.466D ','Insect bite (nonvenomous), unspecified lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158432,10,'S90.466A ','Insect bite (nonvenomous), unspecified lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158431,10,'S90.465S ','Insect bite (nonvenomous), left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158430,10,'S90.465D ','Insect bite (nonvenomous), left lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158429,10,'S90.465A ','Insect bite (nonvenomous), left lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158428,10,'S90.464S ','Insect bite (nonvenomous), right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158427,10,'S90.464D ','Insect bite (nonvenomous), right lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158425,10,'S90.463S ','Insect bite (nonvenomous), unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(158426,10,'S90.464A ','Insect bite (nonvenomous), right lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158424,10,'S90.463D ','Insect bite (nonvenomous), unspecified great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158423,10,'S90.463A ','Insect bite (nonvenomous), unspecified great toe, initial encounter','Y','0000-00-00 00:00:00'),(158422,10,'S90.462S ','Insect bite (nonvenomous), left great toe, sequela','Y','0000-00-00 00:00:00'),(158421,10,'S90.462D ','Insect bite (nonvenomous), left great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158420,10,'S90.462A ','Insect bite (nonvenomous), left great toe, initial encounter','Y','0000-00-00 00:00:00'),(158419,10,'S90.461S ','Insect bite (nonvenomous), right great toe, sequela','Y','0000-00-00 00:00:00'),(158418,10,'S90.461D ','Insect bite (nonvenomous), right great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158417,10,'S90.461A ','Insect bite (nonvenomous), right great toe, initial encounter','Y','0000-00-00 00:00:00'),(158416,10,'S90.456S ','Superficial foreign body, unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158415,10,'S90.456D ','Superficial foreign body, unspecified lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158414,10,'S90.456A ','Superficial foreign body, unspecified lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158413,10,'S90.455S ','Superficial foreign body, left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158412,10,'S90.455D ','Superficial foreign body, left lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158411,10,'S90.455A ','Superficial foreign body, left lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158410,10,'S90.454S ','Superficial foreign body, right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158409,10,'S90.454D ','Superficial foreign body, right lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158408,10,'S90.454A ','Superficial foreign body, right lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158407,10,'S90.453S ','Superficial foreign body, unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(158406,10,'S90.453D ','Superficial foreign body, unspecified great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158404,10,'S90.452S ','Superficial foreign body, left great toe, sequela','Y','0000-00-00 00:00:00'),(158405,10,'S90.453A ','Superficial foreign body, unspecified great toe, initial encounter','Y','0000-00-00 00:00:00'),(158403,10,'S90.452D ','Superficial foreign body, left great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158402,10,'S90.452A ','Superficial foreign body, left great toe, initial encounter','Y','0000-00-00 00:00:00'),(158401,10,'S90.451S ','Superficial foreign body, right great toe, sequela','Y','0000-00-00 00:00:00'),(158400,10,'S90.451D ','Superficial foreign body, right great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158399,10,'S90.451A ','Superficial foreign body, right great toe, initial encounter','Y','0000-00-00 00:00:00'),(158398,10,'S90.446S ','External constriction, unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158397,10,'S90.446D ','External constriction, unspecified lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158396,10,'S90.446A ','External constriction, unspecified lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158395,10,'S90.445S ','External constriction, left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158394,10,'S90.445D ','External constriction, left lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158393,10,'S90.445A ','External constriction, left lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158392,10,'S90.444S ','External constriction, right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158391,10,'S90.444D ','External constriction, right lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158390,10,'S90.444A ','External constriction, right lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158389,10,'S90.443S ','External constriction, unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(158388,10,'S90.443D ','External constriction, unspecified great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158387,10,'S90.443A ','External constriction, unspecified great toe, initial encounter','Y','0000-00-00 00:00:00'),(158386,10,'S90.442S ','External constriction, left great toe, sequela','Y','0000-00-00 00:00:00'),(158385,10,'S90.442D ','External constriction, left great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158384,10,'S90.442A ','External constriction, left great toe, initial encounter','Y','0000-00-00 00:00:00'),(158383,10,'S90.441S ','External constriction, right great toe, sequela','Y','0000-00-00 00:00:00'),(158382,10,'S90.441D ','External constriction, right great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158381,10,'S90.441A ','External constriction, right great toe, initial encounter','Y','0000-00-00 00:00:00'),(158380,10,'S90.426S ','Blister (nonthermal), unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158379,10,'S90.426D ','Blister (nonthermal), unspecified lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158378,10,'S90.426A ','Blister (nonthermal), unspecified lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158377,10,'S90.425S ','Blister (nonthermal), left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158376,10,'S90.425D ','Blister (nonthermal), left lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158375,10,'S90.425A ','Blister (nonthermal), left lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158374,10,'S90.424S ','Blister (nonthermal), right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158373,10,'S90.424D ','Blister (nonthermal), right lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158372,10,'S90.424A ','Blister (nonthermal), right lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158371,10,'S90.423S ','Blister (nonthermal), unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(158370,10,'S90.423D ','Blister (nonthermal), unspecified great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158368,10,'S90.422S ','Blister (nonthermal), left great toe, sequela','Y','0000-00-00 00:00:00'),(158369,10,'S90.423A ','Blister (nonthermal), unspecified great toe, initial encounter','Y','0000-00-00 00:00:00'),(158367,10,'S90.422D ','Blister (nonthermal), left great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158366,10,'S90.422A ','Blister (nonthermal), left great toe, initial encounter','Y','0000-00-00 00:00:00'),(158364,10,'S90.421D ','Blister (nonthermal), right great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158365,10,'S90.421S ','Blister (nonthermal), right great toe, sequela','Y','0000-00-00 00:00:00'),(158363,10,'S90.421A ','Blister (nonthermal), right great toe, initial encounter','Y','0000-00-00 00:00:00'),(158361,10,'S90.416D ','Abrasion, unspecified lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158362,10,'S90.416S ','Abrasion, unspecified lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158360,10,'S90.416A ','Abrasion, unspecified lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158359,10,'S90.415S ','Abrasion, left lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158357,10,'S90.415A ','Abrasion, left lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158358,10,'S90.415D ','Abrasion, left lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158356,10,'S90.414S ','Abrasion, right lesser toe(s), sequela','Y','0000-00-00 00:00:00'),(158355,10,'S90.414D ','Abrasion, right lesser toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(158353,10,'S90.413S ','Abrasion, unspecified great toe, sequela','Y','0000-00-00 00:00:00'),(158354,10,'S90.414A ','Abrasion, right lesser toe(s), initial encounter','Y','0000-00-00 00:00:00'),(158352,10,'S90.413D ','Abrasion, unspecified great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158351,10,'S90.413A ','Abrasion, unspecified great toe, initial encounter','Y','0000-00-00 00:00:00'),(158350,10,'S90.412S ','Abrasion, left great toe, sequela','Y','0000-00-00 00:00:00'),(158348,10,'S90.412A ','Abrasion, left great toe, initial encounter','Y','0000-00-00 00:00:00'),(158349,10,'S90.412D ','Abrasion, left great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158347,10,'S90.411S ','Abrasion, right great toe, sequela','Y','0000-00-00 00:00:00'),(158345,10,'S90.411A ','Abrasion, right great toe, initial encounter','Y','0000-00-00 00:00:00'),(158346,10,'S90.411D ','Abrasion, right great toe, subsequent encounter','Y','0000-00-00 00:00:00'),(158344,10,'S90.32XS ','Contusion of left foot, sequela','Y','0000-00-00 00:00:00'),(158343,10,'S90.32XD ','Contusion of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158341,10,'S90.31XS ','Contusion of right foot, sequela','Y','0000-00-00 00:00:00'),(158342,10,'S90.32XA ','Contusion of left foot, initial encounter','Y','0000-00-00 00:00:00'),(158340,10,'S90.31XD ','Contusion of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158338,10,'S90.30XS ','Contusion of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(158339,10,'S90.31XA ','Contusion of right foot, initial encounter','Y','0000-00-00 00:00:00'),(158337,10,'S90.30XD ','Contusion of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(158336,10,'S90.30XA ','Contusion of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(158335,10,'S90.229S ','Contusion of unspecified lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158334,10,'S90.229D ','Contusion of unspecified lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158333,10,'S90.229A ','Contusion of unspecified lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158332,10,'S90.222S ','Contusion of left lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158331,10,'S90.222D ','Contusion of left lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158330,10,'S90.222A ','Contusion of left lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158329,10,'S90.221S ','Contusion of right lesser toe(s) with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158328,10,'S90.221D ','Contusion of right lesser toe(s) with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158327,10,'S90.221A ','Contusion of right lesser toe(s) with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158326,10,'S90.219S ','Contusion of unspecified great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158325,10,'S90.219D ','Contusion of unspecified great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158324,10,'S90.219A ','Contusion of unspecified great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158323,10,'S90.212S ','Contusion of left great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158322,10,'S90.212D ','Contusion of left great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158321,10,'S90.212A ','Contusion of left great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158320,10,'S90.211S ','Contusion of right great toe with damage to nail, sequela','Y','0000-00-00 00:00:00'),(158319,10,'S90.211D ','Contusion of right great toe with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158318,10,'S90.211A ','Contusion of right great toe with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158317,10,'S90.129S ','Contusion of unspecified lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158316,10,'S90.129D ','Contusion of unspecified lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158314,10,'S90.122S ','Contusion of left lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158315,10,'S90.129A ','Contusion of unspecified lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158313,10,'S90.122D ','Contusion of left lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158312,10,'S90.122A ','Contusion of left lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158311,10,'S90.121S ','Contusion of right lesser toe(s) without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158310,10,'S90.121D ','Contusion of right lesser toe(s) without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158309,10,'S90.121A ','Contusion of right lesser toe(s) without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158308,10,'S90.119S ','Contusion of unspecified great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158307,10,'S90.119D ','Contusion of unspecified great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158306,10,'S90.119A ','Contusion of unspecified great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158305,10,'S90.112S ','Contusion of left great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158304,10,'S90.112D ','Contusion of left great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158303,10,'S90.112A ','Contusion of left great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158302,10,'S90.111S ','Contusion of right great toe without damage to nail, sequela','Y','0000-00-00 00:00:00'),(158301,10,'S90.111D ','Contusion of right great toe without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(158300,10,'S90.111A ','Contusion of right great toe without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(158299,10,'S90.02XS ','Contusion of left ankle, sequela','Y','0000-00-00 00:00:00'),(158297,10,'S90.02XA ','Contusion of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(158298,10,'S90.02XD ','Contusion of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158296,10,'S90.01XS ','Contusion of right ankle, sequela','Y','0000-00-00 00:00:00'),(158294,10,'S90.01XA ','Contusion of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(158295,10,'S90.01XD ','Contusion of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158293,10,'S90.00XS ','Contusion of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(158292,10,'S90.00XD ','Contusion of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(158291,10,'S90.00XA ','Contusion of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(158290,10,'S89.92XS ','Unspecified injury of left lower leg, sequela','Y','0000-00-00 00:00:00'),(158289,10,'S89.92XD ','Unspecified injury of left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(158287,10,'S89.91XS ','Unspecified injury of right lower leg, sequela','Y','0000-00-00 00:00:00'),(158288,10,'S89.92XA ','Unspecified injury of left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(158286,10,'S89.91XD ','Unspecified injury of right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(158285,10,'S89.91XA ','Unspecified injury of right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(158284,10,'S89.90XS ','Unspecified injury of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(158283,10,'S89.90XD ','Unspecified injury of unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(158282,10,'S89.90XA ','Unspecified injury of unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(158281,10,'S89.82XS ','Other specified injuries of left lower leg, sequela','Y','0000-00-00 00:00:00'),(158280,10,'S89.82XD ','Other specified injuries of left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(158279,10,'S89.82XA ','Other specified injuries of left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(158278,10,'S89.81XS ','Other specified injuries of right lower leg, sequela','Y','0000-00-00 00:00:00'),(158277,10,'S89.81XD ','Other specified injuries of right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(158275,10,'S89.80XS ','Other specified injuries of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(158276,10,'S89.81XA ','Other specified injuries of right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(158274,10,'S89.80XD ','Other specified injuries of unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(158273,10,'S89.80XA ','Other specified injuries of unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(158272,10,'S89.399S ','Other physeal fracture of lower end of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(158271,10,'S89.399P ','Other physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158270,10,'S89.399K ','Other physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158269,10,'S89.399G ','Other physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158268,10,'S89.399D ','Other physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158266,10,'S89.392S ','Other physeal fracture of lower end of left fibula, sequela','Y','0000-00-00 00:00:00'),(158267,10,'S89.399A ','Other physeal fracture of lower end of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158265,10,'S89.392P ','Other physeal fracture of lower end of left fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158264,10,'S89.392K ','Other physeal fracture of lower end of left fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158263,10,'S89.392G ','Other physeal fracture of lower end of left fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158262,10,'S89.392D ','Other physeal fracture of lower end of left fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158261,10,'S89.392A ','Other physeal fracture of lower end of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158260,10,'S89.391S ','Other physeal fracture of lower end of right fibula, sequela','Y','0000-00-00 00:00:00'),(158259,10,'S89.391P ','Other physeal fracture of lower end of right fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158258,10,'S89.391K ','Other physeal fracture of lower end of right fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158257,10,'S89.391G ','Other physeal fracture of lower end of right fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158256,10,'S89.391D ','Other physeal fracture of lower end of right fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158255,10,'S89.391A ','Other physeal fracture of lower end of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158254,10,'S89.329S ','Salter-Harris Type II physeal fracture of lower end of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(158253,10,'S89.329P ','Salter-Harris Type II physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158252,10,'S89.329K ','Salter-Harris Type II physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158251,10,'S89.329G ','Salter-Harris Type II physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158250,10,'S89.329D ','Salter-Harris Type II physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158249,10,'S89.329A ','Salter-Harris Type II physeal fracture of lower end of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158248,10,'S89.322S ','Salter-Harris Type II physeal fracture of lower end of left fibula, sequela','Y','0000-00-00 00:00:00'),(158247,10,'S89.322P ','Salter-Harris Type II physeal fracture of lower end of left fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158246,10,'S89.322K ','Salter-Harris Type II physeal fracture of lower end of left fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158245,10,'S89.322G ','Salter-Harris Type II physeal fracture of lower end of left fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158244,10,'S89.322D ','Salter-Harris Type II physeal fracture of lower end of left fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158243,10,'S89.322A ','Salter-Harris Type II physeal fracture of lower end of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158242,10,'S89.321S ','Salter-Harris Type II physeal fracture of lower end of right fibula, sequela','Y','0000-00-00 00:00:00'),(158241,10,'S89.321P ','Salter-Harris Type II physeal fracture of lower end of right fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158240,10,'S89.321K ','Salter-Harris Type II physeal fracture of lower end of right fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158239,10,'S89.321G ','Salter-Harris Type II physeal fracture of lower end of right fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158238,10,'S89.321D ','Salter-Harris Type II physeal fracture of lower end of right fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158237,10,'S89.321A ','Salter-Harris Type II physeal fracture of lower end of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158236,10,'S89.319S ','Salter-Harris Type I physeal fracture of lower end of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(158235,10,'S89.319P ','Salter-Harris Type I physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158234,10,'S89.319K ','Salter-Harris Type I physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158233,10,'S89.319G ','Salter-Harris Type I physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158232,10,'S89.319D ','Salter-Harris Type I physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158231,10,'S89.319A ','Salter-Harris Type I physeal fracture of lower end of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158230,10,'S89.312S ','Salter-Harris Type I physeal fracture of lower end of left fibula, sequela','Y','0000-00-00 00:00:00'),(158229,10,'S89.312P ','Salter-Harris Type I physeal fracture of lower end of left fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158228,10,'S89.312K ','Salter-Harris Type I physeal fracture of lower end of left fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158227,10,'S89.312G ','Salter-Harris Type I physeal fracture of lower end of left fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158226,10,'S89.312D ','Salter-Harris Type I physeal fracture of lower end of left fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158225,10,'S89.312A ','Salter-Harris Type I physeal fracture of lower end of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158224,10,'S89.311S ','Salter-Harris Type I physeal fracture of lower end of right fibula, sequela','Y','0000-00-00 00:00:00'),(158223,10,'S89.311P ','Salter-Harris Type I physeal fracture of lower end of right fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158222,10,'S89.311K ','Salter-Harris Type I physeal fracture of lower end of right fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158221,10,'S89.311G ','Salter-Harris Type I physeal fracture of lower end of right fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158220,10,'S89.311D ','Salter-Harris Type I physeal fracture of lower end of right fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158219,10,'S89.311A ','Salter-Harris Type I physeal fracture of lower end of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158218,10,'S89.309S ','Unspecified physeal fracture of lower end of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(158217,10,'S89.309P ','Unspecified physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158216,10,'S89.309K ','Unspecified physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158215,10,'S89.309G ','Unspecified physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158214,10,'S89.309D ','Unspecified physeal fracture of lower end of unspecified fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158213,10,'S89.309A ','Unspecified physeal fracture of lower end of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158212,10,'S89.302S ','Unspecified physeal fracture of lower end of left fibula, sequela','Y','0000-00-00 00:00:00'),(158211,10,'S89.302P ','Unspecified physeal fracture of lower end of left fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158210,10,'S89.302K ','Unspecified physeal fracture of lower end of left fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158209,10,'S89.302G ','Unspecified physeal fracture of lower end of left fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158208,10,'S89.302D ','Unspecified physeal fracture of lower end of left fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158207,10,'S89.302A ','Unspecified physeal fracture of lower end of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158206,10,'S89.301S ','Unspecified physeal fracture of lower end of right fibula, sequela','Y','0000-00-00 00:00:00'),(158205,10,'S89.301P ','Unspecified physeal fracture of lower end of right fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158204,10,'S89.301K ','Unspecified physeal fracture of lower end of right fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158203,10,'S89.301G ','Unspecified physeal fracture of lower end of right fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158202,10,'S89.301D ','Unspecified physeal fracture of lower end of right fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158201,10,'S89.301A ','Unspecified physeal fracture of lower end of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158200,10,'S89.299S ','Other physeal fracture of upper end of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(158199,10,'S89.299P ','Other physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158198,10,'S89.299K ','Other physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158197,10,'S89.299G ','Other physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158196,10,'S89.299D ','Other physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158195,10,'S89.299A ','Other physeal fracture of upper end of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158194,10,'S89.292S ','Other physeal fracture of upper end of left fibula, sequela','Y','0000-00-00 00:00:00'),(158193,10,'S89.292P ','Other physeal fracture of upper end of left fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158192,10,'S89.292K ','Other physeal fracture of upper end of left fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158191,10,'S89.292G ','Other physeal fracture of upper end of left fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158190,10,'S89.292D ','Other physeal fracture of upper end of left fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158189,10,'S89.292A ','Other physeal fracture of upper end of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158188,10,'S89.291S ','Other physeal fracture of upper end of right fibula, sequela','Y','0000-00-00 00:00:00'),(158187,10,'S89.291P ','Other physeal fracture of upper end of right fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158186,10,'S89.291K ','Other physeal fracture of upper end of right fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158185,10,'S89.291G ','Other physeal fracture of upper end of right fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158184,10,'S89.291D ','Other physeal fracture of upper end of right fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158183,10,'S89.291A ','Other physeal fracture of upper end of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158182,10,'S89.229S ','Salter-Harris Type II physeal fracture of upper end of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(158181,10,'S89.229P ','Salter-Harris Type II physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158180,10,'S89.229K ','Salter-Harris Type II physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158179,10,'S89.229G ','Salter-Harris Type II physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158178,10,'S89.229D ','Salter-Harris Type II physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158177,10,'S89.229A ','Salter-Harris Type II physeal fracture of upper end of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158176,10,'S89.222S ','Salter-Harris Type II physeal fracture of upper end of left fibula, sequela','Y','0000-00-00 00:00:00'),(158175,10,'S89.222P ','Salter-Harris Type II physeal fracture of upper end of left fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158174,10,'S89.222K ','Salter-Harris Type II physeal fracture of upper end of left fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158173,10,'S89.222G ','Salter-Harris Type II physeal fracture of upper end of left fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158172,10,'S89.222D ','Salter-Harris Type II physeal fracture of upper end of left fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158171,10,'S89.222A ','Salter-Harris Type II physeal fracture of upper end of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158170,10,'S89.221S ','Salter-Harris Type II physeal fracture of upper end of right fibula, sequela','Y','0000-00-00 00:00:00'),(158169,10,'S89.221P ','Salter-Harris Type II physeal fracture of upper end of right fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158168,10,'S89.221K ','Salter-Harris Type II physeal fracture of upper end of right fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158167,10,'S89.221G ','Salter-Harris Type II physeal fracture of upper end of right fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158166,10,'S89.221D ','Salter-Harris Type II physeal fracture of upper end of right fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158165,10,'S89.221A ','Salter-Harris Type II physeal fracture of upper end of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158164,10,'S89.219S ','Salter-Harris Type I physeal fracture of upper end of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(158163,10,'S89.219P ','Salter-Harris Type I physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158162,10,'S89.219K ','Salter-Harris Type I physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158161,10,'S89.219G ','Salter-Harris Type I physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158160,10,'S89.219D ','Salter-Harris Type I physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158159,10,'S89.219A ','Salter-Harris Type I physeal fracture of upper end of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158158,10,'S89.212S ','Salter-Harris Type I physeal fracture of upper end of left fibula, sequela','Y','0000-00-00 00:00:00'),(158157,10,'S89.212P ','Salter-Harris Type I physeal fracture of upper end of left fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158156,10,'S89.212K ','Salter-Harris Type I physeal fracture of upper end of left fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158155,10,'S89.212G ','Salter-Harris Type I physeal fracture of upper end of left fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158154,10,'S89.212D ','Salter-Harris Type I physeal fracture of upper end of left fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158153,10,'S89.212A ','Salter-Harris Type I physeal fracture of upper end of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158152,10,'S89.211S ','Salter-Harris Type I physeal fracture of upper end of right fibula, sequela','Y','0000-00-00 00:00:00'),(158151,10,'S89.211P ','Salter-Harris Type I physeal fracture of upper end of right fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158150,10,'S89.211K ','Salter-Harris Type I physeal fracture of upper end of right fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158149,10,'S89.211G ','Salter-Harris Type I physeal fracture of upper end of right fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158148,10,'S89.211D ','Salter-Harris Type I physeal fracture of upper end of right fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158147,10,'S89.211A ','Salter-Harris Type I physeal fracture of upper end of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158146,10,'S89.209S ','Unspecified physeal fracture of upper end of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(158145,10,'S89.209P ','Unspecified physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158144,10,'S89.209K ','Unspecified physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158143,10,'S89.209G ','Unspecified physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158142,10,'S89.209D ','Unspecified physeal fracture of upper end of unspecified fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158141,10,'S89.209A ','Unspecified physeal fracture of upper end of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158140,10,'S89.202S ','Unspecified physeal fracture of upper end of left fibula, sequela','Y','0000-00-00 00:00:00'),(158139,10,'S89.202P ','Unspecified physeal fracture of upper end of left fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158138,10,'S89.202K ','Unspecified physeal fracture of upper end of left fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158137,10,'S89.202G ','Unspecified physeal fracture of upper end of left fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158136,10,'S89.202D ','Unspecified physeal fracture of upper end of left fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158135,10,'S89.202A ','Unspecified physeal fracture of upper end of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158134,10,'S89.201S ','Unspecified physeal fracture of upper end of right fibula, sequela','Y','0000-00-00 00:00:00'),(158133,10,'S89.201P ','Unspecified physeal fracture of upper end of right fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158132,10,'S89.201K ','Unspecified physeal fracture of upper end of right fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158131,10,'S89.201G ','Unspecified physeal fracture of upper end of right fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158130,10,'S89.201D ','Unspecified physeal fracture of upper end of right fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158129,10,'S89.201A ','Unspecified physeal fracture of upper end of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158128,10,'S89.199S ','Other physeal fracture of lower end of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(158127,10,'S89.199P ','Other physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158126,10,'S89.199K ','Other physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158125,10,'S89.199G ','Other physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158124,10,'S89.199D ','Other physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158123,10,'S89.199A ','Other physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158122,10,'S89.192S ','Other physeal fracture of lower end of left tibia, sequela','Y','0000-00-00 00:00:00'),(158121,10,'S89.192P ','Other physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158120,10,'S89.192K ','Other physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158119,10,'S89.192G ','Other physeal fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158118,10,'S89.192D ','Other physeal fracture of lower end of left tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158117,10,'S89.192A ','Other physeal fracture of lower end of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158116,10,'S89.191S ','Other physeal fracture of lower end of right tibia, sequela','Y','0000-00-00 00:00:00'),(158115,10,'S89.191P ','Other physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158114,10,'S89.191K ','Other physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158113,10,'S89.191G ','Other physeal fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158112,10,'S89.191D ','Other physeal fracture of lower end of right tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158111,10,'S89.191A ','Other physeal fracture of lower end of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158110,10,'S89.149S ','Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(158109,10,'S89.149P ','Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158108,10,'S89.149K ','Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158107,10,'S89.149G ','Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158106,10,'S89.149D ','Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158105,10,'S89.149A ','Salter-Harris Type IV physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158104,10,'S89.142S ','Salter-Harris Type IV physeal fracture of lower end of left tibia, sequela','Y','0000-00-00 00:00:00'),(158103,10,'S89.142P ','Salter-Harris Type IV physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158102,10,'S89.142K ','Salter-Harris Type IV physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158101,10,'S89.142G ','Salter-Harris Type IV physeal fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158100,10,'S89.142D ','Salter-Harris Type IV physeal fracture of lower end of left tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158099,10,'S89.142A ','Salter-Harris Type IV physeal fracture of lower end of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158098,10,'S89.141S ','Salter-Harris Type IV physeal fracture of lower end of right tibia, sequela','Y','0000-00-00 00:00:00'),(158097,10,'S89.141P ','Salter-Harris Type IV physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158096,10,'S89.141K ','Salter-Harris Type IV physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158095,10,'S89.141G ','Salter-Harris Type IV physeal fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158094,10,'S89.141D ','Salter-Harris Type IV physeal fracture of lower end of right tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158093,10,'S89.141A ','Salter-Harris Type IV physeal fracture of lower end of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158092,10,'S89.139S ','Salter-Harris Type III physeal fracture of lower end of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(158091,10,'S89.139P ','Salter-Harris Type III physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158090,10,'S89.139K ','Salter-Harris Type III physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158089,10,'S89.139G ','Salter-Harris Type III physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158088,10,'S89.139D ','Salter-Harris Type III physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158087,10,'S89.139A ','Salter-Harris Type III physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158086,10,'S89.132S ','Salter-Harris Type III physeal fracture of lower end of left tibia, sequela','Y','0000-00-00 00:00:00'),(158085,10,'S89.132P ','Salter-Harris Type III physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158084,10,'S89.132K ','Salter-Harris Type III physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158083,10,'S89.132G ','Salter-Harris Type III physeal fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158082,10,'S89.132D ','Salter-Harris Type III physeal fracture of lower end of left tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158081,10,'S89.132A ','Salter-Harris Type III physeal fracture of lower end of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158080,10,'S89.131S ','Salter-Harris Type III physeal fracture of lower end of right tibia, sequela','Y','0000-00-00 00:00:00'),(158079,10,'S89.131P ','Salter-Harris Type III physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158078,10,'S89.131K ','Salter-Harris Type III physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158077,10,'S89.131G ','Salter-Harris Type III physeal fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158076,10,'S89.131D ','Salter-Harris Type III physeal fracture of lower end of right tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158075,10,'S89.131A ','Salter-Harris Type III physeal fracture of lower end of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158074,10,'S89.129S ','Salter-Harris Type II physeal fracture of lower end of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(158073,10,'S89.129P ','Salter-Harris Type II physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158072,10,'S89.129K ','Salter-Harris Type II physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158071,10,'S89.129G ','Salter-Harris Type II physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158070,10,'S89.129D ','Salter-Harris Type II physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158069,10,'S89.129A ','Salter-Harris Type II physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158068,10,'S89.122S ','Salter-Harris Type II physeal fracture of lower end of left tibia, sequela','Y','0000-00-00 00:00:00'),(158067,10,'S89.122P ','Salter-Harris Type II physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158066,10,'S89.122K ','Salter-Harris Type II physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158065,10,'S89.122G ','Salter-Harris Type II physeal fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158064,10,'S89.122D ','Salter-Harris Type II physeal fracture of lower end of left tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158063,10,'S89.122A ','Salter-Harris Type II physeal fracture of lower end of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158062,10,'S89.121S ','Salter-Harris Type II physeal fracture of lower end of right tibia, sequela','Y','0000-00-00 00:00:00'),(158061,10,'S89.121P ','Salter-Harris Type II physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158060,10,'S89.121K ','Salter-Harris Type II physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158059,10,'S89.121G ','Salter-Harris Type II physeal fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158058,10,'S89.121D ','Salter-Harris Type II physeal fracture of lower end of right tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158057,10,'S89.121A ','Salter-Harris Type II physeal fracture of lower end of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158056,10,'S89.119S ','Salter-Harris Type I physeal fracture of lower end of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(158055,10,'S89.119P ','Salter-Harris Type I physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158054,10,'S89.119K ','Salter-Harris Type I physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158053,10,'S89.119G ','Salter-Harris Type I physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158052,10,'S89.119D ','Salter-Harris Type I physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158051,10,'S89.119A ','Salter-Harris Type I physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158050,10,'S89.112S ','Salter-Harris Type I physeal fracture of lower end of left tibia, sequela','Y','0000-00-00 00:00:00'),(158049,10,'S89.112P ','Salter-Harris Type I physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158048,10,'S89.112K ','Salter-Harris Type I physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158047,10,'S89.112G ','Salter-Harris Type I physeal fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158046,10,'S89.112D ','Salter-Harris Type I physeal fracture of lower end of left tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158045,10,'S89.112A ','Salter-Harris Type I physeal fracture of lower end of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158044,10,'S89.111S ','Salter-Harris Type I physeal fracture of lower end of right tibia, sequela','Y','0000-00-00 00:00:00'),(158043,10,'S89.111P ','Salter-Harris Type I physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158042,10,'S89.111K ','Salter-Harris Type I physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158041,10,'S89.111G ','Salter-Harris Type I physeal fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158040,10,'S89.111D ','Salter-Harris Type I physeal fracture of lower end of right tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158039,10,'S89.111A ','Salter-Harris Type I physeal fracture of lower end of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158038,10,'S89.109S ','Unspecified physeal fracture of lower end of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(158037,10,'S89.109P ','Unspecified physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158036,10,'S89.109K ','Unspecified physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158035,10,'S89.109G ','Unspecified physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158034,10,'S89.109D ','Unspecified physeal fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158033,10,'S89.109A ','Unspecified physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158032,10,'S89.102S ','Unspecified physeal fracture of lower end of left tibia, sequela','Y','0000-00-00 00:00:00'),(158031,10,'S89.102P ','Unspecified physeal fracture of lower end of left tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158030,10,'S89.102K ','Unspecified physeal fracture of lower end of left tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158029,10,'S89.102G ','Unspecified physeal fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158028,10,'S89.102D ','Unspecified physeal fracture of lower end of left tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158027,10,'S89.102A ','Unspecified physeal fracture of lower end of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158026,10,'S89.101S ','Unspecified physeal fracture of lower end of right tibia, sequela','Y','0000-00-00 00:00:00'),(158025,10,'S89.101P ','Unspecified physeal fracture of lower end of right tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158024,10,'S89.101K ','Unspecified physeal fracture of lower end of right tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158023,10,'S89.101G ','Unspecified physeal fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158022,10,'S89.101D ','Unspecified physeal fracture of lower end of right tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158021,10,'S89.101A ','Unspecified physeal fracture of lower end of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158020,10,'S89.099S ','Other physeal fracture of upper end of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(158019,10,'S89.099P ','Other physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158018,10,'S89.099K ','Other physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158017,10,'S89.099G ','Other physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158016,10,'S89.099D ','Other physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158015,10,'S89.099A ','Other physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158014,10,'S89.092S ','Other physeal fracture of upper end of left tibia, sequela','Y','0000-00-00 00:00:00'),(158013,10,'S89.092P ','Other physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158012,10,'S89.092K ','Other physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158011,10,'S89.092G ','Other physeal fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158010,10,'S89.092D ','Other physeal fracture of upper end of left tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158009,10,'S89.092A ','Other physeal fracture of upper end of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158008,10,'S89.091S ','Other physeal fracture of upper end of right tibia, sequela','Y','0000-00-00 00:00:00'),(158007,10,'S89.091P ','Other physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158006,10,'S89.091K ','Other physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(158005,10,'S89.091G ','Other physeal fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(158004,10,'S89.091D ','Other physeal fracture of upper end of right tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(158003,10,'S89.091A ','Other physeal fracture of upper end of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(158002,10,'S89.049S ','Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(158001,10,'S89.049P ','Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(158000,10,'S89.049K ','Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(157999,10,'S89.049G ','Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(157998,10,'S89.049D ','Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(157997,10,'S89.049A ','Salter-Harris Type IV physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(157996,10,'S89.042S ','Salter-Harris Type IV physeal fracture of upper end of left tibia, sequela','Y','0000-00-00 00:00:00'),(157995,10,'S89.042P ','Salter-Harris Type IV physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(157994,10,'S89.042K ','Salter-Harris Type IV physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(157993,10,'S89.042G ','Salter-Harris Type IV physeal fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(157992,10,'S89.042D ','Salter-Harris Type IV physeal fracture of upper end of left tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(157991,10,'S89.042A ','Salter-Harris Type IV physeal fracture of upper end of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(157990,10,'S89.041S ','Salter-Harris Type IV physeal fracture of upper end of right tibia, sequela','Y','0000-00-00 00:00:00'),(157989,10,'S89.041P ','Salter-Harris Type IV physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(157988,10,'S89.041K ','Salter-Harris Type IV physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(157987,10,'S89.041G ','Salter-Harris Type IV physeal fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(157986,10,'S89.041D ','Salter-Harris Type IV physeal fracture of upper end of right tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(157985,10,'S89.041A ','Salter-Harris Type IV physeal fracture of upper end of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(157984,10,'S89.039S ','Salter-Harris Type III physeal fracture of upper end of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(157983,10,'S89.039P ','Salter-Harris Type III physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(157982,10,'S89.039K ','Salter-Harris Type III physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(157981,10,'S89.039G ','Salter-Harris Type III physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(157980,10,'S89.039D ','Salter-Harris Type III physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(157979,10,'S89.039A ','Salter-Harris Type III physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(157978,10,'S89.032S ','Salter-Harris Type III physeal fracture of upper end of left tibia, sequela','Y','0000-00-00 00:00:00'),(157977,10,'S89.032P ','Salter-Harris Type III physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(157976,10,'S89.032K ','Salter-Harris Type III physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(157975,10,'S89.032G ','Salter-Harris Type III physeal fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(157974,10,'S89.032D ','Salter-Harris Type III physeal fracture of upper end of left tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(157973,10,'S89.032A ','Salter-Harris Type III physeal fracture of upper end of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(157972,10,'S89.031S ','Salter-Harris Type III physeal fracture of upper end of right tibia, sequela','Y','0000-00-00 00:00:00'),(157971,10,'S89.031P ','Salter-Harris Type III physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(157970,10,'S89.031K ','Salter-Harris Type III physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(157969,10,'S89.031G ','Salter-Harris Type III physeal fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(157968,10,'S89.031D ','Salter-Harris Type III physeal fracture of upper end of right tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(157967,10,'S89.031A ','Salter-Harris Type III physeal fracture of upper end of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(157966,10,'S89.029S ','Salter-Harris Type II physeal fracture of upper end of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(157965,10,'S89.029P ','Salter-Harris Type II physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(157964,10,'S89.029K ','Salter-Harris Type II physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(157963,10,'S89.029G ','Salter-Harris Type II physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(157962,10,'S89.029D ','Salter-Harris Type II physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(157961,10,'S89.029A ','Salter-Harris Type II physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(157960,10,'S89.022S ','Salter-Harris Type II physeal fracture of upper end of left tibia, sequela','Y','0000-00-00 00:00:00'),(157959,10,'S89.022P ','Salter-Harris Type II physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(157958,10,'S89.022K ','Salter-Harris Type II physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(157957,10,'S89.022G ','Salter-Harris Type II physeal fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(157956,10,'S89.022D ','Salter-Harris Type II physeal fracture of upper end of left tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(157955,10,'S89.022A ','Salter-Harris Type II physeal fracture of upper end of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(157954,10,'S89.021S ','Salter-Harris Type II physeal fracture of upper end of right tibia, sequela','Y','0000-00-00 00:00:00'),(157953,10,'S89.021P ','Salter-Harris Type II physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(157952,10,'S89.021K ','Salter-Harris Type II physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(157951,10,'S89.021G ','Salter-Harris Type II physeal fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(157950,10,'S89.021D ','Salter-Harris Type II physeal fracture of upper end of right tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(157949,10,'S89.021A ','Salter-Harris Type II physeal fracture of upper end of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(157948,10,'S89.019S ','Salter-Harris Type I physeal fracture of upper end of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(157947,10,'S89.019P ','Salter-Harris Type I physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(157946,10,'S89.019K ','Salter-Harris Type I physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(157945,10,'S89.019G ','Salter-Harris Type I physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(157944,10,'S89.019D ','Salter-Harris Type I physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(157943,10,'S89.019A ','Salter-Harris Type I physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(157942,10,'S89.012S ','Salter-Harris Type I physeal fracture of upper end of left tibia, sequela','Y','0000-00-00 00:00:00'),(157941,10,'S89.012P ','Salter-Harris Type I physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(157940,10,'S89.012K ','Salter-Harris Type I physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(157939,10,'S89.012G ','Salter-Harris Type I physeal fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(157938,10,'S89.012D ','Salter-Harris Type I physeal fracture of upper end of left tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(157937,10,'S89.012A ','Salter-Harris Type I physeal fracture of upper end of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(157936,10,'S89.011S ','Salter-Harris Type I physeal fracture of upper end of right tibia, sequela','Y','0000-00-00 00:00:00'),(157935,10,'S89.011P ','Salter-Harris Type I physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(157934,10,'S89.011K ','Salter-Harris Type I physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(157933,10,'S89.011G ','Salter-Harris Type I physeal fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(157932,10,'S89.011D ','Salter-Harris Type I physeal fracture of upper end of right tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(157931,10,'S89.011A ','Salter-Harris Type I physeal fracture of upper end of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(157930,10,'S89.009S ','Unspecified physeal fracture of upper end of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(157929,10,'S89.009P ','Unspecified physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(157928,10,'S89.009K ','Unspecified physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(157927,10,'S89.009G ','Unspecified physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(157926,10,'S89.009D ','Unspecified physeal fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(157925,10,'S89.009A ','Unspecified physeal fracture of upper end of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(157924,10,'S89.002S ','Unspecified physeal fracture of upper end of left tibia, sequela','Y','0000-00-00 00:00:00'),(157923,10,'S89.002P ','Unspecified physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(157922,10,'S89.002K ','Unspecified physeal fracture of upper end of left tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(157921,10,'S89.002G ','Unspecified physeal fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(157920,10,'S89.002D ','Unspecified physeal fracture of upper end of left tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(157919,10,'S89.002A ','Unspecified physeal fracture of upper end of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(157918,10,'S89.001S ','Unspecified physeal fracture of upper end of right tibia, sequela','Y','0000-00-00 00:00:00'),(157917,10,'S89.001P ','Unspecified physeal fracture of upper end of right tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(157916,10,'S89.001K ','Unspecified physeal fracture of upper end of right tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(157915,10,'S89.001G ','Unspecified physeal fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(157914,10,'S89.001D ','Unspecified physeal fracture of upper end of right tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(157913,10,'S89.001A ','Unspecified physeal fracture of upper end of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(157912,10,'S88.929S ','Partial traumatic amputation of unspecified lower leg, level unspecified, sequela','Y','0000-00-00 00:00:00'),(157911,10,'S88.929D ','Partial traumatic amputation of unspecified lower leg, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(157910,10,'S88.929A ','Partial traumatic amputation of unspecified lower leg, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(157909,10,'S88.922S ','Partial traumatic amputation of left lower leg, level unspecified, sequela','Y','0000-00-00 00:00:00'),(157908,10,'S88.922D ','Partial traumatic amputation of left lower leg, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(157907,10,'S88.922A ','Partial traumatic amputation of left lower leg, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(157906,10,'S88.921S ','Partial traumatic amputation of right lower leg, level unspecified, sequela','Y','0000-00-00 00:00:00'),(157905,10,'S88.921D ','Partial traumatic amputation of right lower leg, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(157904,10,'S88.921A ','Partial traumatic amputation of right lower leg, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(157903,10,'S88.919S ','Complete traumatic amputation of unspecified lower leg, level unspecified, sequela','Y','0000-00-00 00:00:00'),(157902,10,'S88.919D ','Complete traumatic amputation of unspecified lower leg, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(157901,10,'S88.919A ','Complete traumatic amputation of unspecified lower leg, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(157900,10,'S88.912S ','Complete traumatic amputation of left lower leg, level unspecified, sequela','Y','0000-00-00 00:00:00'),(157899,10,'S88.912D ','Complete traumatic amputation of left lower leg, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(157898,10,'S88.912A ','Complete traumatic amputation of left lower leg, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(157897,10,'S88.911S ','Complete traumatic amputation of right lower leg, level unspecified, sequela','Y','0000-00-00 00:00:00'),(157896,10,'S88.911D ','Complete traumatic amputation of right lower leg, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(157895,10,'S88.911A ','Complete traumatic amputation of right lower leg, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(157894,10,'S88.129S ','Partial traumatic amputation at level between knee and ankle, unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(157893,10,'S88.129D ','Partial traumatic amputation at level between knee and ankle, unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157892,10,'S88.129A ','Partial traumatic amputation at level between knee and ankle, unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(157891,10,'S88.122S ','Partial traumatic amputation at level between knee and ankle, left lower leg, sequela','Y','0000-00-00 00:00:00'),(157890,10,'S88.122D ','Partial traumatic amputation at level between knee and ankle, left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157889,10,'S88.122A ','Partial traumatic amputation at level between knee and ankle, left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(157888,10,'S88.121S ','Partial traumatic amputation at level between knee and ankle, right lower leg, sequela','Y','0000-00-00 00:00:00'),(157887,10,'S88.121D ','Partial traumatic amputation at level between knee and ankle, right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157886,10,'S88.121A ','Partial traumatic amputation at level between knee and ankle, right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(157885,10,'S88.119S ','Complete traumatic amputation at level between knee and ankle, unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(157884,10,'S88.119D ','Complete traumatic amputation at level between knee and ankle, unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157883,10,'S88.119A ','Complete traumatic amputation at level between knee and ankle, unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(157882,10,'S88.112S ','Complete traumatic amputation at level between knee and ankle, left lower leg, sequela','Y','0000-00-00 00:00:00'),(157881,10,'S88.112D ','Complete traumatic amputation at level between knee and ankle, left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157880,10,'S88.112A ','Complete traumatic amputation at level between knee and ankle, left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(157879,10,'S88.111S ','Complete traumatic amputation at level between knee and ankle, right lower leg, sequela','Y','0000-00-00 00:00:00'),(157878,10,'S88.111D ','Complete traumatic amputation at level between knee and ankle, right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157877,10,'S88.111A ','Complete traumatic amputation at level between knee and ankle, right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(157876,10,'S88.029S ','Partial traumatic amputation at knee level, unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(157875,10,'S88.029D ','Partial traumatic amputation at knee level, unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157874,10,'S88.029A ','Partial traumatic amputation at knee level, unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(157873,10,'S88.022S ','Partial traumatic amputation at knee level, left lower leg, sequela','Y','0000-00-00 00:00:00'),(157872,10,'S88.022D ','Partial traumatic amputation at knee level, left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157871,10,'S88.022A ','Partial traumatic amputation at knee level, left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(157870,10,'S88.021S ','Partial traumatic amputation at knee level, right lower leg, sequela','Y','0000-00-00 00:00:00'),(157869,10,'S88.021D ','Partial traumatic amputation at knee level, right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157868,10,'S88.021A ','Partial traumatic amputation at knee level, right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(157867,10,'S88.019S ','Complete traumatic amputation at knee level, unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(157866,10,'S88.019D ','Complete traumatic amputation at knee level, unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157865,10,'S88.019A ','Complete traumatic amputation at knee level, unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(157864,10,'S88.012S ','Complete traumatic amputation at knee level, left lower leg, sequela','Y','0000-00-00 00:00:00'),(157863,10,'S88.012D ','Complete traumatic amputation at knee level, left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157862,10,'S88.012A ','Complete traumatic amputation at knee level, left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(157861,10,'S88.011S ','Complete traumatic amputation at knee level, right lower leg, sequela','Y','0000-00-00 00:00:00'),(157860,10,'S88.011D ','Complete traumatic amputation at knee level, right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157859,10,'S88.011A ','Complete traumatic amputation at knee level, right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(157858,10,'S87.82XS ','Crushing injury of left lower leg, sequela','Y','0000-00-00 00:00:00'),(157857,10,'S87.82XD ','Crushing injury of left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157856,10,'S87.82XA ','Crushing injury of left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(157855,10,'S87.81XS ','Crushing injury of right lower leg, sequela','Y','0000-00-00 00:00:00'),(157854,10,'S87.81XD ','Crushing injury of right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157853,10,'S87.81XA ','Crushing injury of right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(157852,10,'S87.80XS ','Crushing injury of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(157851,10,'S87.80XD ','Crushing injury of unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157850,10,'S87.80XA ','Crushing injury of unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(157849,10,'S87.02XS ','Crushing injury of left knee, sequela','Y','0000-00-00 00:00:00'),(157848,10,'S87.02XD ','Crushing injury of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157847,10,'S87.02XA ','Crushing injury of left knee, initial encounter','Y','0000-00-00 00:00:00'),(157846,10,'S87.01XS ','Crushing injury of right knee, sequela','Y','0000-00-00 00:00:00'),(157845,10,'S87.01XD ','Crushing injury of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157844,10,'S87.01XA ','Crushing injury of right knee, initial encounter','Y','0000-00-00 00:00:00'),(157843,10,'S87.00XS ','Crushing injury of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157842,10,'S87.00XD ','Crushing injury of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157841,10,'S87.00XA ','Crushing injury of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157840,10,'S86.999S ','Other injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157839,10,'S86.999D ','Other injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157838,10,'S86.999A ','Other injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157837,10,'S86.992S ','Other injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157836,10,'S86.992D ','Other injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157835,10,'S86.992A ','Other injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157834,10,'S86.991S ','Other injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157833,10,'S86.991D ','Other injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157832,10,'S86.991A ','Other injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157831,10,'S86.929S ','Laceration of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157830,10,'S86.929D ','Laceration of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157829,10,'S86.929A ','Laceration of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157828,10,'S86.922S ','Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157827,10,'S86.922D ','Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157826,10,'S86.922A ','Laceration of unspecified muscle(s) and tendon(s) at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157825,10,'S86.921S ','Laceration of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157824,10,'S86.921D ','Laceration of unspecified muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157823,10,'S86.921A ','Laceration of unspecified muscle(s) and tendon(s) at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157822,10,'S86.919S ','Strain of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157821,10,'S86.919D ','Strain of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157820,10,'S86.919A ','Strain of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157819,10,'S86.912S ','Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157818,10,'S86.912D ','Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157817,10,'S86.912A ','Strain of unspecified muscle(s) and tendon(s) at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157816,10,'S86.911S ','Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157815,10,'S86.911D ','Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157814,10,'S86.911A ','Strain of unspecified muscle(s) and tendon(s) at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157813,10,'S86.909S ','Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157812,10,'S86.909D ','Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157811,10,'S86.909A ','Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157810,10,'S86.902S ','Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157809,10,'S86.902D ','Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157808,10,'S86.902A ','Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157807,10,'S86.901S ','Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157806,10,'S86.901D ','Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157805,10,'S86.901A ','Unspecified injury of unspecified muscle(s) and tendon(s) at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157804,10,'S86.899S ','Other injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157803,10,'S86.899D ','Other injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157802,10,'S86.899A ','Other injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157801,10,'S86.892S ','Other injury of other muscle(s) and tendon(s) at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157800,10,'S86.892D ','Other injury of other muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157799,10,'S86.892A ','Other injury of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157798,10,'S86.891S ','Other injury of other muscle(s) and tendon(s) at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157797,10,'S86.891D ','Other injury of other muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157796,10,'S86.891A ','Other injury of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157795,10,'S86.829S ','Laceration of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157794,10,'S86.829D ','Laceration of other muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157793,10,'S86.829A ','Laceration of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157792,10,'S86.822S ','Laceration of other muscle(s) and tendon(s) at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157791,10,'S86.822D ','Laceration of other muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157790,10,'S86.822A ','Laceration of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157789,10,'S86.821S ','Laceration of other muscle(s) and tendon(s) at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157788,10,'S86.821D ','Laceration of other muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157787,10,'S86.821A ','Laceration of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157786,10,'S86.819S ','Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157785,10,'S86.819D ','Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157784,10,'S86.819A ','Strain of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157783,10,'S86.812S ','Strain of other muscle(s) and tendon(s) at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157782,10,'S86.812D ','Strain of other muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157781,10,'S86.812A ','Strain of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157780,10,'S86.811S ','Strain of other muscle(s) and tendon(s) at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157779,10,'S86.811D ','Strain of other muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157778,10,'S86.811A ','Strain of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157777,10,'S86.809S ','Unspecified injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157776,10,'S86.809D ','Unspecified injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157775,10,'S86.809A ','Unspecified injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157774,10,'S86.802S ','Unspecified injury of other muscle(s) and tendon(s) at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157773,10,'S86.802D ','Unspecified injury of other muscle(s) and tendon(s) at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157772,10,'S86.802A ','Unspecified injury of other muscle(s) and tendon(s) at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157771,10,'S86.801S ','Unspecified injury of other muscle(s) and tendon(s) at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157770,10,'S86.801D ','Unspecified injury of other muscle(s) and tendon(s) at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157769,10,'S86.801A ','Unspecified injury of other muscle(s) and tendon(s) at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157768,10,'S86.399S ','Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157767,10,'S86.399D ','Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157766,10,'S86.399A ','Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157765,10,'S86.392S ','Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157764,10,'S86.392D ','Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157763,10,'S86.392A ','Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157762,10,'S86.391S ','Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157761,10,'S86.391D ','Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157760,10,'S86.391A ','Other injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157759,10,'S86.329S ','Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157758,10,'S86.329D ','Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157757,10,'S86.329A ','Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157756,10,'S86.322S ','Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157755,10,'S86.322D ','Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157754,10,'S86.322A ','Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157753,10,'S86.321S ','Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157752,10,'S86.321D ','Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157751,10,'S86.321A ','Laceration of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157750,10,'S86.319S ','Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157749,10,'S86.319D ','Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157748,10,'S86.319A ','Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157747,10,'S86.312S ','Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157746,10,'S86.312D ','Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157745,10,'S86.312A ','Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157744,10,'S86.311S ','Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157743,10,'S86.311D ','Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157742,10,'S86.311A ','Strain of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157741,10,'S86.309S ','Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157740,10,'S86.309D ','Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157739,10,'S86.309A ','Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157738,10,'S86.302S ','Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157737,10,'S86.302D ','Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157736,10,'S86.302A ','Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157735,10,'S86.301S ','Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157734,10,'S86.301D ','Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157733,10,'S86.301A ','Unspecified injury of muscle(s) and tendon(s) of peroneal muscle group at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157732,10,'S86.299S ','Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157731,10,'S86.299D ','Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157730,10,'S86.299A ','Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157729,10,'S86.292S ','Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157728,10,'S86.292D ','Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157727,10,'S86.292A ','Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157726,10,'S86.291S ','Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157725,10,'S86.291D ','Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157724,10,'S86.291A ','Other injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157723,10,'S86.229S ','Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157722,10,'S86.229D ','Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157721,10,'S86.229A ','Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157720,10,'S86.222S ','Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157719,10,'S86.222D ','Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157718,10,'S86.222A ','Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157717,10,'S86.221S ','Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157716,10,'S86.221D ','Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157715,10,'S86.221A ','Laceration of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157714,10,'S86.219S ','Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157713,10,'S86.219D ','Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157712,10,'S86.219A ','Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157711,10,'S86.212S ','Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157710,10,'S86.212D ','Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157709,10,'S86.212A ','Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157708,10,'S86.211S ','Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157707,10,'S86.211D ','Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157706,10,'S86.211A ','Strain of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157705,10,'S86.209S ','Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157704,10,'S86.209D ','Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157703,10,'S86.209A ','Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157702,10,'S86.202S ','Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157701,10,'S86.202D ','Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157700,10,'S86.202A ','Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157699,10,'S86.201S ','Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157698,10,'S86.201D ','Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157697,10,'S86.201A ','Unspecified injury of muscle(s) and tendon(s) of anterior muscle group at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157696,10,'S86.199S ','Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157695,10,'S86.199D ','Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157694,10,'S86.199A ','Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157693,10,'S86.192S ','Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157692,10,'S86.192D ','Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157691,10,'S86.192A ','Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157690,10,'S86.191S ','Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157689,10,'S86.191D ','Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157688,10,'S86.191A ','Other injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157687,10,'S86.129S ','Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157686,10,'S86.129D ','Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157685,10,'S86.129A ','Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157684,10,'S86.122S ','Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157683,10,'S86.122D ','Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157682,10,'S86.122A ','Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157681,10,'S86.121S ','Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157680,10,'S86.121D ','Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157679,10,'S86.121A ','Laceration of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157678,10,'S86.119S ','Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157677,10,'S86.119D ','Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157676,10,'S86.119A ','Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157675,10,'S86.112S ','Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157674,10,'S86.112D ','Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157673,10,'S86.112A ','Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157672,10,'S86.111S ','Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157671,10,'S86.111D ','Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157670,10,'S86.111A ','Strain of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157669,10,'S86.109S ','Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157668,10,'S86.109D ','Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157667,10,'S86.109A ','Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157666,10,'S86.102S ','Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157665,10,'S86.102D ','Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157664,10,'S86.102A ','Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157663,10,'S86.101S ','Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157662,10,'S86.101D ','Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157661,10,'S86.101A ','Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157660,10,'S86.099S ','Other specified injury of unspecified Achilles tendon, sequela','Y','0000-00-00 00:00:00'),(157659,10,'S86.099D ','Other specified injury of unspecified Achilles tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(157658,10,'S86.099A ','Other specified injury of unspecified Achilles tendon, initial encounter','Y','0000-00-00 00:00:00'),(157657,10,'S86.092S ','Other specified injury of left Achilles tendon, sequela','Y','0000-00-00 00:00:00'),(157656,10,'S86.092D ','Other specified injury of left Achilles tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(157655,10,'S86.092A ','Other specified injury of left Achilles tendon, initial encounter','Y','0000-00-00 00:00:00'),(157654,10,'S86.091S ','Other specified injury of right Achilles tendon, sequela','Y','0000-00-00 00:00:00'),(157653,10,'S86.091D ','Other specified injury of right Achilles tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(157652,10,'S86.091A ','Other specified injury of right Achilles tendon, initial encounter','Y','0000-00-00 00:00:00'),(157651,10,'S86.029S ','Laceration of unspecified Achilles tendon, sequela','Y','0000-00-00 00:00:00'),(157650,10,'S86.029D ','Laceration of unspecified Achilles tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(157649,10,'S86.029A ','Laceration of unspecified Achilles tendon, initial encounter','Y','0000-00-00 00:00:00'),(157648,10,'S86.022S ','Laceration of left Achilles tendon, sequela','Y','0000-00-00 00:00:00'),(157647,10,'S86.022D ','Laceration of left Achilles tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(157646,10,'S86.022A ','Laceration of left Achilles tendon, initial encounter','Y','0000-00-00 00:00:00'),(157645,10,'S86.021S ','Laceration of right Achilles tendon, sequela','Y','0000-00-00 00:00:00'),(157644,10,'S86.021D ','Laceration of right Achilles tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(157643,10,'S86.021A ','Laceration of right Achilles tendon, initial encounter','Y','0000-00-00 00:00:00'),(157642,10,'S86.019S ','Strain of unspecified Achilles tendon, sequela','Y','0000-00-00 00:00:00'),(157641,10,'S86.019D ','Strain of unspecified Achilles tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(157640,10,'S86.019A ','Strain of unspecified Achilles tendon, initial encounter','Y','0000-00-00 00:00:00'),(157639,10,'S86.012S ','Strain of left Achilles tendon, sequela','Y','0000-00-00 00:00:00'),(157638,10,'S86.012D ','Strain of left Achilles tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(157637,10,'S86.012A ','Strain of left Achilles tendon, initial encounter','Y','0000-00-00 00:00:00'),(157636,10,'S86.011S ','Strain of right Achilles tendon, sequela','Y','0000-00-00 00:00:00'),(157635,10,'S86.011D ','Strain of right Achilles tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(157634,10,'S86.011A ','Strain of right Achilles tendon, initial encounter','Y','0000-00-00 00:00:00'),(157633,10,'S86.009S ','Unspecified injury of unspecified Achilles tendon, sequela','Y','0000-00-00 00:00:00'),(157632,10,'S86.009D ','Unspecified injury of unspecified Achilles tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(157631,10,'S86.009A ','Unspecified injury of unspecified Achilles tendon, initial encounter','Y','0000-00-00 00:00:00'),(157630,10,'S86.002S ','Unspecified injury of left Achilles tendon, sequela','Y','0000-00-00 00:00:00'),(157629,10,'S86.002D ','Unspecified injury of left Achilles tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(157628,10,'S86.002A ','Unspecified injury of left Achilles tendon, initial encounter','Y','0000-00-00 00:00:00'),(157627,10,'S86.001S ','Unspecified injury of right Achilles tendon, sequela','Y','0000-00-00 00:00:00'),(157626,10,'S86.001D ','Unspecified injury of right Achilles tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(157625,10,'S86.001A ','Unspecified injury of right Achilles tendon, initial encounter','Y','0000-00-00 00:00:00'),(157624,10,'S85.999S ','Other specified injury of unspecified blood vessel at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157623,10,'S85.999D ','Other specified injury of unspecified blood vessel at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157622,10,'S85.999A ','Other specified injury of unspecified blood vessel at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157621,10,'S85.992S ','Other specified injury of unspecified blood vessel at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157620,10,'S85.992D ','Other specified injury of unspecified blood vessel at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157619,10,'S85.992A ','Other specified injury of unspecified blood vessel at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157618,10,'S85.991S ','Other specified injury of unspecified blood vessel at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157617,10,'S85.991D ','Other specified injury of unspecified blood vessel at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157616,10,'S85.991A ','Other specified injury of unspecified blood vessel at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157615,10,'S85.919S ','Laceration of unspecified blood vessel at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157614,10,'S85.919D ','Laceration of unspecified blood vessel at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157613,10,'S85.919A ','Laceration of unspecified blood vessel at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157612,10,'S85.912S ','Laceration of unspecified blood vessel at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157611,10,'S85.912D ','Laceration of unspecified blood vessel at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157610,10,'S85.912A ','Laceration of unspecified blood vessel at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157609,10,'S85.911S ','Laceration of unspecified blood vessel at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157608,10,'S85.911D ','Laceration of unspecified blood vessel at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157607,10,'S85.911A ','Laceration of unspecified blood vessel at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157606,10,'S85.909S ','Unspecified injury of unspecified blood vessel at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157605,10,'S85.909D ','Unspecified injury of unspecified blood vessel at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157604,10,'S85.909A ','Unspecified injury of unspecified blood vessel at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157603,10,'S85.902S ','Unspecified injury of unspecified blood vessel at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157602,10,'S85.902D ','Unspecified injury of unspecified blood vessel at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157601,10,'S85.902A ','Unspecified injury of unspecified blood vessel at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157600,10,'S85.901S ','Unspecified injury of unspecified blood vessel at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157599,10,'S85.901D ','Unspecified injury of unspecified blood vessel at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157598,10,'S85.901A ','Unspecified injury of unspecified blood vessel at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157597,10,'S85.899S ','Other specified injury of other blood vessels at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157596,10,'S85.899D ','Other specified injury of other blood vessels at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157595,10,'S85.899A ','Other specified injury of other blood vessels at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157594,10,'S85.892S ','Other specified injury of other blood vessels at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157593,10,'S85.892D ','Other specified injury of other blood vessels at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157592,10,'S85.892A ','Other specified injury of other blood vessels at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157591,10,'S85.891S ','Other specified injury of other blood vessels at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157590,10,'S85.891D ','Other specified injury of other blood vessels at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157589,10,'S85.891A ','Other specified injury of other blood vessels at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157588,10,'S85.819S ','Laceration of other blood vessels at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157587,10,'S85.819D ','Laceration of other blood vessels at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157586,10,'S85.819A ','Laceration of other blood vessels at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157585,10,'S85.812S ','Laceration of other blood vessels at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157584,10,'S85.812D ','Laceration of other blood vessels at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157583,10,'S85.812A ','Laceration of other blood vessels at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157582,10,'S85.811S ','Laceration of other blood vessels at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157581,10,'S85.811D ','Laceration of other blood vessels at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157580,10,'S85.811A ','Laceration of other blood vessels at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157579,10,'S85.809S ','Unspecified injury of other blood vessels at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157578,10,'S85.809D ','Unspecified injury of other blood vessels at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157577,10,'S85.809A ','Unspecified injury of other blood vessels at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157576,10,'S85.802S ','Unspecified injury of other blood vessels at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157575,10,'S85.802D ','Unspecified injury of other blood vessels at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157574,10,'S85.802A ','Unspecified injury of other blood vessels at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157573,10,'S85.801S ','Unspecified injury of other blood vessels at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157572,10,'S85.801D ','Unspecified injury of other blood vessels at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157571,10,'S85.801A ','Unspecified injury of other blood vessels at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157570,10,'S85.599S ','Other specified injury of popliteal vein, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157569,10,'S85.599D ','Other specified injury of popliteal vein, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157568,10,'S85.599A ','Other specified injury of popliteal vein, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157567,10,'S85.592S ','Other specified injury of popliteal vein, left leg, sequela','Y','0000-00-00 00:00:00'),(157566,10,'S85.592D ','Other specified injury of popliteal vein, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157565,10,'S85.592A ','Other specified injury of popliteal vein, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157564,10,'S85.591S ','Other specified injury of popliteal vein, right leg, sequela','Y','0000-00-00 00:00:00'),(157563,10,'S85.591D ','Other specified injury of popliteal vein, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157562,10,'S85.591A ','Other specified injury of popliteal vein, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157561,10,'S85.519S ','Laceration of popliteal vein, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157560,10,'S85.519D ','Laceration of popliteal vein, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157559,10,'S85.519A ','Laceration of popliteal vein, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157558,10,'S85.512S ','Laceration of popliteal vein, left leg, sequela','Y','0000-00-00 00:00:00'),(157557,10,'S85.512D ','Laceration of popliteal vein, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157556,10,'S85.512A ','Laceration of popliteal vein, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157555,10,'S85.511S ','Laceration of popliteal vein, right leg, sequela','Y','0000-00-00 00:00:00'),(157554,10,'S85.511D ','Laceration of popliteal vein, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157553,10,'S85.511A ','Laceration of popliteal vein, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157552,10,'S85.509S ','Unspecified injury of popliteal vein, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157551,10,'S85.509D ','Unspecified injury of popliteal vein, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157550,10,'S85.509A ','Unspecified injury of popliteal vein, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157549,10,'S85.502S ','Unspecified injury of popliteal vein, left leg, sequela','Y','0000-00-00 00:00:00'),(157548,10,'S85.502D ','Unspecified injury of popliteal vein, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157547,10,'S85.502A ','Unspecified injury of popliteal vein, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157546,10,'S85.501S ','Unspecified injury of popliteal vein, right leg, sequela','Y','0000-00-00 00:00:00'),(157545,10,'S85.501D ','Unspecified injury of popliteal vein, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157544,10,'S85.501A ','Unspecified injury of popliteal vein, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157543,10,'S85.499S ','Other specified injury of lesser saphenous vein at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157542,10,'S85.499D ','Other specified injury of lesser saphenous vein at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157541,10,'S85.499A ','Other specified injury of lesser saphenous vein at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157540,10,'S85.492S ','Other specified injury of lesser saphenous vein at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157539,10,'S85.492D ','Other specified injury of lesser saphenous vein at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157538,10,'S85.492A ','Other specified injury of lesser saphenous vein at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157537,10,'S85.491S ','Other specified injury of lesser saphenous vein at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157536,10,'S85.491D ','Other specified injury of lesser saphenous vein at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157535,10,'S85.491A ','Other specified injury of lesser saphenous vein at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157534,10,'S85.419S ','Laceration of lesser saphenous vein at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157533,10,'S85.419D ','Laceration of lesser saphenous vein at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157532,10,'S85.419A ','Laceration of lesser saphenous vein at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157531,10,'S85.412S ','Laceration of lesser saphenous vein at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157530,10,'S85.412D ','Laceration of lesser saphenous vein at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157529,10,'S85.412A ','Laceration of lesser saphenous vein at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157528,10,'S85.411S ','Laceration of lesser saphenous vein at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157527,10,'S85.411D ','Laceration of lesser saphenous vein at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157526,10,'S85.411A ','Laceration of lesser saphenous vein at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157525,10,'S85.409S ','Unspecified injury of lesser saphenous vein at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157524,10,'S85.409D ','Unspecified injury of lesser saphenous vein at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157523,10,'S85.409A ','Unspecified injury of lesser saphenous vein at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157522,10,'S85.402S ','Unspecified injury of lesser saphenous vein at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157521,10,'S85.402D ','Unspecified injury of lesser saphenous vein at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157520,10,'S85.402A ','Unspecified injury of lesser saphenous vein at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157519,10,'S85.401S ','Unspecified injury of lesser saphenous vein at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157518,10,'S85.401D ','Unspecified injury of lesser saphenous vein at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157517,10,'S85.401A ','Unspecified injury of lesser saphenous vein at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157516,10,'S85.399S ','Other specified injury of greater saphenous vein at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157515,10,'S85.399D ','Other specified injury of greater saphenous vein at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157514,10,'S85.399A ','Other specified injury of greater saphenous vein at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157513,10,'S85.392S ','Other specified injury of greater saphenous vein at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157512,10,'S85.392D ','Other specified injury of greater saphenous vein at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157511,10,'S85.392A ','Other specified injury of greater saphenous vein at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157510,10,'S85.391S ','Other specified injury of greater saphenous vein at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157509,10,'S85.391D ','Other specified injury of greater saphenous vein at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157508,10,'S85.391A ','Other specified injury of greater saphenous vein at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157507,10,'S85.319S ','Laceration of greater saphenous vein at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157506,10,'S85.319D ','Laceration of greater saphenous vein at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157505,10,'S85.319A ','Laceration of greater saphenous vein at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157504,10,'S85.312S ','Laceration of greater saphenous vein at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157503,10,'S85.312D ','Laceration of greater saphenous vein at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157502,10,'S85.312A ','Laceration of greater saphenous vein at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157501,10,'S85.311S ','Laceration of greater saphenous vein at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157500,10,'S85.311D ','Laceration of greater saphenous vein at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157499,10,'S85.311A ','Laceration of greater saphenous vein at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157498,10,'S85.309S ','Unspecified injury of greater saphenous vein at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157497,10,'S85.309D ','Unspecified injury of greater saphenous vein at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157496,10,'S85.309A ','Unspecified injury of greater saphenous vein at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157495,10,'S85.302S ','Unspecified injury of greater saphenous vein at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157494,10,'S85.302D ','Unspecified injury of greater saphenous vein at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157493,10,'S85.302A ','Unspecified injury of greater saphenous vein at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157492,10,'S85.301S ','Unspecified injury of greater saphenous vein at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157491,10,'S85.301D ','Unspecified injury of greater saphenous vein at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157490,10,'S85.301A ','Unspecified injury of greater saphenous vein at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157489,10,'S85.299S ','Other specified injury of peroneal artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157488,10,'S85.299D ','Other specified injury of peroneal artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157487,10,'S85.299A ','Other specified injury of peroneal artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157486,10,'S85.292S ','Other specified injury of peroneal artery, left leg, sequela','Y','0000-00-00 00:00:00'),(157485,10,'S85.292D ','Other specified injury of peroneal artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157484,10,'S85.292A ','Other specified injury of peroneal artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157483,10,'S85.291S ','Other specified injury of peroneal artery, right leg, sequela','Y','0000-00-00 00:00:00'),(157482,10,'S85.291D ','Other specified injury of peroneal artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157481,10,'S85.291A ','Other specified injury of peroneal artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157480,10,'S85.219S ','Laceration of peroneal artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157479,10,'S85.219D ','Laceration of peroneal artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157478,10,'S85.219A ','Laceration of peroneal artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157477,10,'S85.212S ','Laceration of peroneal artery, left leg, sequela','Y','0000-00-00 00:00:00'),(157476,10,'S85.212D ','Laceration of peroneal artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157475,10,'S85.212A ','Laceration of peroneal artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157473,10,'S85.211D ','Laceration of peroneal artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157474,10,'S85.211S ','Laceration of peroneal artery, right leg, sequela','Y','0000-00-00 00:00:00'),(157472,10,'S85.211A ','Laceration of peroneal artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157471,10,'S85.209S ','Unspecified injury of peroneal artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157470,10,'S85.209D ','Unspecified injury of peroneal artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157469,10,'S85.209A ','Unspecified injury of peroneal artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157468,10,'S85.202S ','Unspecified injury of peroneal artery, left leg, sequela','Y','0000-00-00 00:00:00'),(157467,10,'S85.202D ','Unspecified injury of peroneal artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157466,10,'S85.202A ','Unspecified injury of peroneal artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157465,10,'S85.201S ','Unspecified injury of peroneal artery, right leg, sequela','Y','0000-00-00 00:00:00'),(157464,10,'S85.201D ','Unspecified injury of peroneal artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157463,10,'S85.201A ','Unspecified injury of peroneal artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157462,10,'S85.189S ','Other specified injury of posterior tibial artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157461,10,'S85.189D ','Other specified injury of posterior tibial artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157460,10,'S85.189A ','Other specified injury of posterior tibial artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157459,10,'S85.182S ','Other specified injury of posterior tibial artery, left leg, sequela','Y','0000-00-00 00:00:00'),(157458,10,'S85.182D ','Other specified injury of posterior tibial artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157457,10,'S85.182A ','Other specified injury of posterior tibial artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157456,10,'S85.181S ','Other specified injury of posterior tibial artery, right leg, sequela','Y','0000-00-00 00:00:00'),(157455,10,'S85.181D ','Other specified injury of posterior tibial artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157454,10,'S85.181A ','Other specified injury of posterior tibial artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157453,10,'S85.179S ','Laceration of posterior tibial artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157452,10,'S85.179D ','Laceration of posterior tibial artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157451,10,'S85.179A ','Laceration of posterior tibial artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157450,10,'S85.172S ','Laceration of posterior tibial artery, left leg, sequela','Y','0000-00-00 00:00:00'),(157449,10,'S85.172D ','Laceration of posterior tibial artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157448,10,'S85.172A ','Laceration of posterior tibial artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157447,10,'S85.171S ','Laceration of posterior tibial artery, right leg, sequela','Y','0000-00-00 00:00:00'),(157446,10,'S85.171D ','Laceration of posterior tibial artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157445,10,'S85.171A ','Laceration of posterior tibial artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157444,10,'S85.169S ','Unspecified injury of posterior tibial artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157443,10,'S85.169D ','Unspecified injury of posterior tibial artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157442,10,'S85.169A ','Unspecified injury of posterior tibial artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157441,10,'S85.162S ','Unspecified injury of posterior tibial artery, left leg, sequela','Y','0000-00-00 00:00:00'),(157440,10,'S85.162D ','Unspecified injury of posterior tibial artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157439,10,'S85.162A ','Unspecified injury of posterior tibial artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157438,10,'S85.161S ','Unspecified injury of posterior tibial artery, right leg, sequela','Y','0000-00-00 00:00:00'),(157437,10,'S85.161D ','Unspecified injury of posterior tibial artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157436,10,'S85.161A ','Unspecified injury of posterior tibial artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157435,10,'S85.159S ','Other specified injury of anterior tibial artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157434,10,'S85.159D ','Other specified injury of anterior tibial artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157433,10,'S85.159A ','Other specified injury of anterior tibial artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157432,10,'S85.152S ','Other specified injury of anterior tibial artery, left leg, sequela','Y','0000-00-00 00:00:00'),(157431,10,'S85.152D ','Other specified injury of anterior tibial artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157430,10,'S85.152A ','Other specified injury of anterior tibial artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157429,10,'S85.151S ','Other specified injury of anterior tibial artery, right leg, sequela','Y','0000-00-00 00:00:00'),(157428,10,'S85.151D ','Other specified injury of anterior tibial artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157427,10,'S85.151A ','Other specified injury of anterior tibial artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157426,10,'S85.149S ','Laceration of anterior tibial artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157425,10,'S85.149D ','Laceration of anterior tibial artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157424,10,'S85.149A ','Laceration of anterior tibial artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157423,10,'S85.142S ','Laceration of anterior tibial artery, left leg, sequela','Y','0000-00-00 00:00:00'),(157422,10,'S85.142D ','Laceration of anterior tibial artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157421,10,'S85.142A ','Laceration of anterior tibial artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157420,10,'S85.141S ','Laceration of anterior tibial artery, right leg, sequela','Y','0000-00-00 00:00:00'),(157419,10,'S85.141D ','Laceration of anterior tibial artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157418,10,'S85.141A ','Laceration of anterior tibial artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157417,10,'S85.139S ','Unspecified injury of anterior tibial artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157416,10,'S85.139D ','Unspecified injury of anterior tibial artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157415,10,'S85.139A ','Unspecified injury of anterior tibial artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157414,10,'S85.132S ','Unspecified injury of anterior tibial artery, left leg, sequela','Y','0000-00-00 00:00:00'),(157413,10,'S85.132D ','Unspecified injury of anterior tibial artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157412,10,'S85.132A ','Unspecified injury of anterior tibial artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157411,10,'S85.131S ','Unspecified injury of anterior tibial artery, right leg, sequela','Y','0000-00-00 00:00:00'),(157410,10,'S85.131D ','Unspecified injury of anterior tibial artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157409,10,'S85.131A ','Unspecified injury of anterior tibial artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157408,10,'S85.129S ','Other specified injury of unspecified tibial artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157407,10,'S85.129D ','Other specified injury of unspecified tibial artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157406,10,'S85.129A ','Other specified injury of unspecified tibial artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157405,10,'S85.122S ','Other specified injury of unspecified tibial artery, left leg, sequela','Y','0000-00-00 00:00:00'),(157404,10,'S85.122D ','Other specified injury of unspecified tibial artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157403,10,'S85.122A ','Other specified injury of unspecified tibial artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157402,10,'S85.121S ','Other specified injury of unspecified tibial artery, right leg, sequela','Y','0000-00-00 00:00:00'),(157401,10,'S85.121D ','Other specified injury of unspecified tibial artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157400,10,'S85.121A ','Other specified injury of unspecified tibial artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157399,10,'S85.119S ','Laceration of unspecified tibial artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157398,10,'S85.119D ','Laceration of unspecified tibial artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157397,10,'S85.119A ','Laceration of unspecified tibial artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157396,10,'S85.112S ','Laceration of unspecified tibial artery, left leg, sequela','Y','0000-00-00 00:00:00'),(157395,10,'S85.112D ','Laceration of unspecified tibial artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157394,10,'S85.112A ','Laceration of unspecified tibial artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157393,10,'S85.111S ','Laceration of unspecified tibial artery, right leg, sequela','Y','0000-00-00 00:00:00'),(157392,10,'S85.111D ','Laceration of unspecified tibial artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157391,10,'S85.111A ','Laceration of unspecified tibial artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157390,10,'S85.109S ','Unspecified injury of unspecified tibial artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157389,10,'S85.109D ','Unspecified injury of unspecified tibial artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157388,10,'S85.109A ','Unspecified injury of unspecified tibial artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157387,10,'S85.102S ','Unspecified injury of unspecified tibial artery, left leg, sequela','Y','0000-00-00 00:00:00'),(157386,10,'S85.102D ','Unspecified injury of unspecified tibial artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157385,10,'S85.102A ','Unspecified injury of unspecified tibial artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157384,10,'S85.101S ','Unspecified injury of unspecified tibial artery, right leg, sequela','Y','0000-00-00 00:00:00'),(157383,10,'S85.101D ','Unspecified injury of unspecified tibial artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157382,10,'S85.101A ','Unspecified injury of unspecified tibial artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157381,10,'S85.099S ','Other specified injury of popliteal artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157380,10,'S85.099D ','Other specified injury of popliteal artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157379,10,'S85.099A ','Other specified injury of popliteal artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157378,10,'S85.092S ','Other specified injury of popliteal artery, left leg, sequela','Y','0000-00-00 00:00:00'),(157377,10,'S85.092D ','Other specified injury of popliteal artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157376,10,'S85.092A ','Other specified injury of popliteal artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157375,10,'S85.091S ','Other specified injury of popliteal artery, right leg, sequela','Y','0000-00-00 00:00:00'),(157374,10,'S85.091D ','Other specified injury of popliteal artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157373,10,'S85.091A ','Other specified injury of popliteal artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157372,10,'S85.019S ','Laceration of popliteal artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157371,10,'S85.019D ','Laceration of popliteal artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157370,10,'S85.019A ','Laceration of popliteal artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157369,10,'S85.012S ','Laceration of popliteal artery, left leg, sequela','Y','0000-00-00 00:00:00'),(157368,10,'S85.012D ','Laceration of popliteal artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157367,10,'S85.012A ','Laceration of popliteal artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157366,10,'S85.011S ','Laceration of popliteal artery, right leg, sequela','Y','0000-00-00 00:00:00'),(157365,10,'S85.011D ','Laceration of popliteal artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157364,10,'S85.011A ','Laceration of popliteal artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157363,10,'S85.009S ','Unspecified injury of popliteal artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157362,10,'S85.009D ','Unspecified injury of popliteal artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157361,10,'S85.009A ','Unspecified injury of popliteal artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157360,10,'S85.002S ','Unspecified injury of popliteal artery, left leg, sequela','Y','0000-00-00 00:00:00'),(157359,10,'S85.002D ','Unspecified injury of popliteal artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157358,10,'S85.002A ','Unspecified injury of popliteal artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157357,10,'S85.001S ','Unspecified injury of popliteal artery, right leg, sequela','Y','0000-00-00 00:00:00'),(157356,10,'S85.001D ','Unspecified injury of popliteal artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157355,10,'S85.001A ','Unspecified injury of popliteal artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157354,10,'S84.92XS ','Injury of unspecified nerve at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157353,10,'S84.92XD ','Injury of unspecified nerve at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157352,10,'S84.92XA ','Injury of unspecified nerve at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157351,10,'S84.91XS ','Injury of unspecified nerve at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157350,10,'S84.91XD ','Injury of unspecified nerve at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157349,10,'S84.91XA ','Injury of unspecified nerve at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157348,10,'S84.90XS ','Injury of unspecified nerve at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157347,10,'S84.90XD ','Injury of unspecified nerve at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157346,10,'S84.90XA ','Injury of unspecified nerve at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157345,10,'S84.809S ','Injury of other nerves at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157344,10,'S84.809D ','Injury of other nerves at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157343,10,'S84.809A ','Injury of other nerves at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157342,10,'S84.802S ','Injury of other nerves at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157341,10,'S84.802D ','Injury of other nerves at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157340,10,'S84.802A ','Injury of other nerves at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157339,10,'S84.801S ','Injury of other nerves at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157338,10,'S84.801D ','Injury of other nerves at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157337,10,'S84.801A ','Injury of other nerves at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157336,10,'S84.22XS ','Injury of cutaneous sensory nerve at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157335,10,'S84.22XD ','Injury of cutaneous sensory nerve at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157334,10,'S84.22XA ','Injury of cutaneous sensory nerve at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157333,10,'S84.21XS ','Injury of cutaneous sensory nerve at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157332,10,'S84.21XD ','Injury of cutaneous sensory nerve at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157331,10,'S84.21XA ','Injury of cutaneous sensory nerve at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157330,10,'S84.20XS ','Injury of cutaneous sensory nerve at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157329,10,'S84.20XD ','Injury of cutaneous sensory nerve at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157328,10,'S84.20XA ','Injury of cutaneous sensory nerve at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157327,10,'S84.12XS ','Injury of peroneal nerve at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157326,10,'S84.12XD ','Injury of peroneal nerve at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157325,10,'S84.12XA ','Injury of peroneal nerve at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157324,10,'S84.11XS ','Injury of peroneal nerve at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157323,10,'S84.11XD ','Injury of peroneal nerve at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157322,10,'S84.11XA ','Injury of peroneal nerve at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157321,10,'S84.10XS ','Injury of peroneal nerve at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157320,10,'S84.10XD ','Injury of peroneal nerve at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157319,10,'S84.10XA ','Injury of peroneal nerve at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157318,10,'S84.02XS ','Injury of tibial nerve at lower leg level, left leg, sequela','Y','0000-00-00 00:00:00'),(157317,10,'S84.02XD ','Injury of tibial nerve at lower leg level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157316,10,'S84.02XA ','Injury of tibial nerve at lower leg level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(157315,10,'S84.01XS ','Injury of tibial nerve at lower leg level, right leg, sequela','Y','0000-00-00 00:00:00'),(157314,10,'S84.01XD ','Injury of tibial nerve at lower leg level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157313,10,'S84.01XA ','Injury of tibial nerve at lower leg level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(157312,10,'S84.00XS ','Injury of tibial nerve at lower leg level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(157311,10,'S84.00XD ','Injury of tibial nerve at lower leg level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(157310,10,'S84.00XA ','Injury of tibial nerve at lower leg level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(157309,10,'S83.92XS ','Sprain of unspecified site of left knee, sequela','Y','0000-00-00 00:00:00'),(157308,10,'S83.92XD ','Sprain of unspecified site of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157307,10,'S83.92XA ','Sprain of unspecified site of left knee, initial encounter','Y','0000-00-00 00:00:00'),(157306,10,'S83.91XS ','Sprain of unspecified site of right knee, sequela','Y','0000-00-00 00:00:00'),(157305,10,'S83.91XD ','Sprain of unspecified site of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157304,10,'S83.91XA ','Sprain of unspecified site of right knee, initial encounter','Y','0000-00-00 00:00:00'),(157303,10,'S83.90XS ','Sprain of unspecified site of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157302,10,'S83.90XD ','Sprain of unspecified site of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157301,10,'S83.90XA ','Sprain of unspecified site of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157300,10,'S83.8X9S ','Sprain of other specified parts of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157299,10,'S83.8X9D ','Sprain of other specified parts of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157298,10,'S83.8X9A ','Sprain of other specified parts of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157297,10,'S83.8X2S ','Sprain of other specified parts of left knee, sequela','Y','0000-00-00 00:00:00'),(157296,10,'S83.8X2D ','Sprain of other specified parts of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157295,10,'S83.8X2A ','Sprain of other specified parts of left knee, initial encounter','Y','0000-00-00 00:00:00'),(157294,10,'S83.8X1S ','Sprain of other specified parts of right knee, sequela','Y','0000-00-00 00:00:00'),(157293,10,'S83.8X1D ','Sprain of other specified parts of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157292,10,'S83.8X1A ','Sprain of other specified parts of right knee, initial encounter','Y','0000-00-00 00:00:00'),(157291,10,'S83.62XS ','Sprain of the superior tibiofibular joint and ligament, left knee, sequela','Y','0000-00-00 00:00:00'),(157290,10,'S83.62XD ','Sprain of the superior tibiofibular joint and ligament, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157289,10,'S83.62XA ','Sprain of the superior tibiofibular joint and ligament, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157288,10,'S83.61XS ','Sprain of the superior tibiofibular joint and ligament, right knee, sequela','Y','0000-00-00 00:00:00'),(157287,10,'S83.61XD ','Sprain of the superior tibiofibular joint and ligament, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157286,10,'S83.61XA ','Sprain of the superior tibiofibular joint and ligament, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157285,10,'S83.60XS ','Sprain of the superior tibiofibular joint and ligament, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157284,10,'S83.60XD ','Sprain of the superior tibiofibular joint and ligament, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157283,10,'S83.60XA ','Sprain of the superior tibiofibular joint and ligament, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157282,10,'S83.529S ','Sprain of posterior cruciate ligament of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157281,10,'S83.529D ','Sprain of posterior cruciate ligament of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157280,10,'S83.529A ','Sprain of posterior cruciate ligament of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157279,10,'S83.522S ','Sprain of posterior cruciate ligament of left knee, sequela','Y','0000-00-00 00:00:00'),(157278,10,'S83.522D ','Sprain of posterior cruciate ligament of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157277,10,'S83.522A ','Sprain of posterior cruciate ligament of left knee, initial encounter','Y','0000-00-00 00:00:00'),(157276,10,'S83.521S ','Sprain of posterior cruciate ligament of right knee, sequela','Y','0000-00-00 00:00:00'),(157275,10,'S83.521D ','Sprain of posterior cruciate ligament of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157274,10,'S83.521A ','Sprain of posterior cruciate ligament of right knee, initial encounter','Y','0000-00-00 00:00:00'),(157273,10,'S83.519S ','Sprain of anterior cruciate ligament of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157272,10,'S83.519D ','Sprain of anterior cruciate ligament of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157271,10,'S83.519A ','Sprain of anterior cruciate ligament of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157270,10,'S83.512S ','Sprain of anterior cruciate ligament of left knee, sequela','Y','0000-00-00 00:00:00'),(157269,10,'S83.512D ','Sprain of anterior cruciate ligament of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157268,10,'S83.512A ','Sprain of anterior cruciate ligament of left knee, initial encounter','Y','0000-00-00 00:00:00'),(157267,10,'S83.511S ','Sprain of anterior cruciate ligament of right knee, sequela','Y','0000-00-00 00:00:00'),(157266,10,'S83.511D ','Sprain of anterior cruciate ligament of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157265,10,'S83.511A ','Sprain of anterior cruciate ligament of right knee, initial encounter','Y','0000-00-00 00:00:00'),(157264,10,'S83.509S ','Sprain of unspecified cruciate ligament of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157263,10,'S83.509D ','Sprain of unspecified cruciate ligament of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157262,10,'S83.509A ','Sprain of unspecified cruciate ligament of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157261,10,'S83.502S ','Sprain of unspecified cruciate ligament of left knee, sequela','Y','0000-00-00 00:00:00'),(157260,10,'S83.502D ','Sprain of unspecified cruciate ligament of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157259,10,'S83.502A ','Sprain of unspecified cruciate ligament of left knee, initial encounter','Y','0000-00-00 00:00:00'),(157258,10,'S83.501S ','Sprain of unspecified cruciate ligament of right knee, sequela','Y','0000-00-00 00:00:00'),(157257,10,'S83.501D ','Sprain of unspecified cruciate ligament of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157256,10,'S83.501A ','Sprain of unspecified cruciate ligament of right knee, initial encounter','Y','0000-00-00 00:00:00'),(157255,10,'S83.429S ','Sprain of lateral collateral ligament of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157254,10,'S83.429D ','Sprain of lateral collateral ligament of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157253,10,'S83.429A ','Sprain of lateral collateral ligament of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157252,10,'S83.422S ','Sprain of lateral collateral ligament of left knee, sequela','Y','0000-00-00 00:00:00'),(157251,10,'S83.422D ','Sprain of lateral collateral ligament of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157250,10,'S83.422A ','Sprain of lateral collateral ligament of left knee, initial encounter','Y','0000-00-00 00:00:00'),(157249,10,'S83.421S ','Sprain of lateral collateral ligament of right knee, sequela','Y','0000-00-00 00:00:00'),(157248,10,'S83.421D ','Sprain of lateral collateral ligament of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157247,10,'S83.421A ','Sprain of lateral collateral ligament of right knee, initial encounter','Y','0000-00-00 00:00:00'),(157246,10,'S83.419S ','Sprain of medial collateral ligament of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157245,10,'S83.419D ','Sprain of medial collateral ligament of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157244,10,'S83.419A ','Sprain of medial collateral ligament of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157243,10,'S83.412S ','Sprain of medial collateral ligament of left knee, sequela','Y','0000-00-00 00:00:00'),(157242,10,'S83.412D ','Sprain of medial collateral ligament of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157241,10,'S83.412A ','Sprain of medial collateral ligament of left knee, initial encounter','Y','0000-00-00 00:00:00'),(157240,10,'S83.411S ','Sprain of medial collateral ligament of right knee, sequela','Y','0000-00-00 00:00:00'),(157239,10,'S83.411D ','Sprain of medial collateral ligament of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157238,10,'S83.411A ','Sprain of medial collateral ligament of right knee, initial encounter','Y','0000-00-00 00:00:00'),(157237,10,'S83.409S ','Sprain of unspecified collateral ligament of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157236,10,'S83.409D ','Sprain of unspecified collateral ligament of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157235,10,'S83.409A ','Sprain of unspecified collateral ligament of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157234,10,'S83.402S ','Sprain of unspecified collateral ligament of left knee, sequela','Y','0000-00-00 00:00:00'),(157233,10,'S83.402D ','Sprain of unspecified collateral ligament of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157232,10,'S83.402A ','Sprain of unspecified collateral ligament of left knee, initial encounter','Y','0000-00-00 00:00:00'),(157231,10,'S83.401S ','Sprain of unspecified collateral ligament of right knee, sequela','Y','0000-00-00 00:00:00'),(157230,10,'S83.401D ','Sprain of unspecified collateral ligament of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157229,10,'S83.401A ','Sprain of unspecified collateral ligament of right knee, initial encounter','Y','0000-00-00 00:00:00'),(157228,10,'S83.32XS ','Tear of articular cartilage of left knee, current, sequela','Y','0000-00-00 00:00:00'),(157227,10,'S83.32XD ','Tear of articular cartilage of left knee, current, subsequent encounter','Y','0000-00-00 00:00:00'),(157226,10,'S83.32XA ','Tear of articular cartilage of left knee, current, initial encounter','Y','0000-00-00 00:00:00'),(157225,10,'S83.31XS ','Tear of articular cartilage of right knee, current, sequela','Y','0000-00-00 00:00:00'),(157224,10,'S83.31XD ','Tear of articular cartilage of right knee, current, subsequent encounter','Y','0000-00-00 00:00:00'),(157223,10,'S83.31XA ','Tear of articular cartilage of right knee, current, initial encounter','Y','0000-00-00 00:00:00'),(157222,10,'S83.30XS ','Tear of articular cartilage of unspecified knee, current, sequela','Y','0000-00-00 00:00:00'),(157221,10,'S83.30XD ','Tear of articular cartilage of unspecified knee, current, subsequent encounter','Y','0000-00-00 00:00:00'),(157220,10,'S83.30XA ','Tear of articular cartilage of unspecified knee, current, initial encounter','Y','0000-00-00 00:00:00'),(157219,10,'S83.289S ','Other tear of lateral meniscus, current injury, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157218,10,'S83.289D ','Other tear of lateral meniscus, current injury, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157217,10,'S83.289A ','Other tear of lateral meniscus, current injury, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157216,10,'S83.282S ','Other tear of lateral meniscus, current injury, left knee, sequela','Y','0000-00-00 00:00:00'),(157215,10,'S83.282D ','Other tear of lateral meniscus, current injury, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157214,10,'S83.282A ','Other tear of lateral meniscus, current injury, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157213,10,'S83.281S ','Other tear of lateral meniscus, current injury, right knee, sequela','Y','0000-00-00 00:00:00'),(157212,10,'S83.281D ','Other tear of lateral meniscus, current injury, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157211,10,'S83.281A ','Other tear of lateral meniscus, current injury, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157210,10,'S83.279S ','Complex tear of lateral meniscus, current injury, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157209,10,'S83.279D ','Complex tear of lateral meniscus, current injury, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157208,10,'S83.279A ','Complex tear of lateral meniscus, current injury, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157207,10,'S83.272S ','Complex tear of lateral meniscus, current injury, left knee, sequela','Y','0000-00-00 00:00:00'),(157206,10,'S83.272D ','Complex tear of lateral meniscus, current injury, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157205,10,'S83.272A ','Complex tear of lateral meniscus, current injury, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157204,10,'S83.271S ','Complex tear of lateral meniscus, current injury, right knee, sequela','Y','0000-00-00 00:00:00'),(157203,10,'S83.271D ','Complex tear of lateral meniscus, current injury, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157202,10,'S83.271A ','Complex tear of lateral meniscus, current injury, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157201,10,'S83.269S ','Peripheral tear of lateral meniscus, current injury, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157200,10,'S83.269D ','Peripheral tear of lateral meniscus, current injury, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157199,10,'S83.269A ','Peripheral tear of lateral meniscus, current injury, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157198,10,'S83.262S ','Peripheral tear of lateral meniscus, current injury, left knee, sequela','Y','0000-00-00 00:00:00'),(157197,10,'S83.262D ','Peripheral tear of lateral meniscus, current injury, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157196,10,'S83.262A ','Peripheral tear of lateral meniscus, current injury, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157195,10,'S83.261S ','Peripheral tear of lateral meniscus, current injury, right knee, sequela','Y','0000-00-00 00:00:00'),(157194,10,'S83.261D ','Peripheral tear of lateral meniscus, current injury, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157193,10,'S83.261A ','Peripheral tear of lateral meniscus, current injury, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157192,10,'S83.259S ','Bucket-handle tear of lateral meniscus, current injury, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157191,10,'S83.259D ','Bucket-handle tear of lateral meniscus, current injury, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157190,10,'S83.259A ','Bucket-handle tear of lateral meniscus, current injury, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157189,10,'S83.252S ','Bucket-handle tear of lateral meniscus, current injury, left knee, sequela','Y','0000-00-00 00:00:00'),(157188,10,'S83.252D ','Bucket-handle tear of lateral meniscus, current injury, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157187,10,'S83.252A ','Bucket-handle tear of lateral meniscus, current injury, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157186,10,'S83.251S ','Bucket-handle tear of lateral meniscus, current injury, right knee, sequela','Y','0000-00-00 00:00:00'),(157185,10,'S83.251D ','Bucket-handle tear of lateral meniscus, current injury, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157184,10,'S83.251A ','Bucket-handle tear of lateral meniscus, current injury, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157183,10,'S83.249S ','Other tear of medial meniscus, current injury, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157182,10,'S83.249D ','Other tear of medial meniscus, current injury, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157181,10,'S83.249A ','Other tear of medial meniscus, current injury, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157180,10,'S83.242S ','Other tear of medial meniscus, current injury, left knee, sequela','Y','0000-00-00 00:00:00'),(157179,10,'S83.242D ','Other tear of medial meniscus, current injury, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157178,10,'S83.242A ','Other tear of medial meniscus, current injury, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157177,10,'S83.241S ','Other tear of medial meniscus, current injury, right knee, sequela','Y','0000-00-00 00:00:00'),(157176,10,'S83.241D ','Other tear of medial meniscus, current injury, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157175,10,'S83.241A ','Other tear of medial meniscus, current injury, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157174,10,'S83.239S ','Complex tear of medial meniscus, current injury, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157173,10,'S83.239D ','Complex tear of medial meniscus, current injury, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157172,10,'S83.239A ','Complex tear of medial meniscus, current injury, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157171,10,'S83.232S ','Complex tear of medial meniscus, current injury, left knee, sequela','Y','0000-00-00 00:00:00'),(157170,10,'S83.232D ','Complex tear of medial meniscus, current injury, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157169,10,'S83.232A ','Complex tear of medial meniscus, current injury, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157168,10,'S83.231S ','Complex tear of medial meniscus, current injury, right knee, sequela','Y','0000-00-00 00:00:00'),(157167,10,'S83.231D ','Complex tear of medial meniscus, current injury, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157166,10,'S83.231A ','Complex tear of medial meniscus, current injury, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157165,10,'S83.229S ','Peripheral tear of medial meniscus, current injury, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157164,10,'S83.229D ','Peripheral tear of medial meniscus, current injury, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157163,10,'S83.229A ','Peripheral tear of medial meniscus, current injury, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157162,10,'S83.222S ','Peripheral tear of medial meniscus, current injury, left knee, sequela','Y','0000-00-00 00:00:00'),(157161,10,'S83.222D ','Peripheral tear of medial meniscus, current injury, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157160,10,'S83.222A ','Peripheral tear of medial meniscus, current injury, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157159,10,'S83.221S ','Peripheral tear of medial meniscus, current injury, right knee, sequela','Y','0000-00-00 00:00:00'),(157158,10,'S83.221D ','Peripheral tear of medial meniscus, current injury, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157157,10,'S83.221A ','Peripheral tear of medial meniscus, current injury, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157156,10,'S83.219S ','Bucket-handle tear of medial meniscus, current injury, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157155,10,'S83.219D ','Bucket-handle tear of medial meniscus, current injury, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157154,10,'S83.219A ','Bucket-handle tear of medial meniscus, current injury, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157153,10,'S83.212S ','Bucket-handle tear of medial meniscus, current injury, left knee, sequela','Y','0000-00-00 00:00:00'),(157152,10,'S83.212D ','Bucket-handle tear of medial meniscus, current injury, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157151,10,'S83.212A ','Bucket-handle tear of medial meniscus, current injury, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157150,10,'S83.211S ','Bucket-handle tear of medial meniscus, current injury, right knee, sequela','Y','0000-00-00 00:00:00'),(157149,10,'S83.211D ','Bucket-handle tear of medial meniscus, current injury, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157148,10,'S83.211A ','Bucket-handle tear of medial meniscus, current injury, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157147,10,'S83.209S ','Unspecified tear of unspecified meniscus, current injury, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157146,10,'S83.209D ','Unspecified tear of unspecified meniscus, current injury, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157145,10,'S83.209A ','Unspecified tear of unspecified meniscus, current injury, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157144,10,'S83.207S ','Unspecified tear of unspecified meniscus, current injury, left knee, sequela','Y','0000-00-00 00:00:00'),(157143,10,'S83.207D ','Unspecified tear of unspecified meniscus, current injury, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157142,10,'S83.207A ','Unspecified tear of unspecified meniscus, current injury, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157141,10,'S83.206S ','Unspecified tear of unspecified meniscus, current injury, right knee, sequela','Y','0000-00-00 00:00:00'),(157140,10,'S83.206D ','Unspecified tear of unspecified meniscus, current injury, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157139,10,'S83.206A ','Unspecified tear of unspecified meniscus, current injury, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157138,10,'S83.205S ','Other tear of unspecified meniscus, current injury, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157137,10,'S83.205D ','Other tear of unspecified meniscus, current injury, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157136,10,'S83.205A ','Other tear of unspecified meniscus, current injury, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157135,10,'S83.204S ','Other tear of unspecified meniscus, current injury, left knee, sequela','Y','0000-00-00 00:00:00'),(157134,10,'S83.204D ','Other tear of unspecified meniscus, current injury, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157133,10,'S83.204A ','Other tear of unspecified meniscus, current injury, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157132,10,'S83.203S ','Other tear of unspecified meniscus, current injury, right knee, sequela','Y','0000-00-00 00:00:00'),(157131,10,'S83.203D ','Other tear of unspecified meniscus, current injury, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157130,10,'S83.203A ','Other tear of unspecified meniscus, current injury, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157129,10,'S83.202S ','Bucket-handle tear of unspecified meniscus, current injury, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157128,10,'S83.202D ','Bucket-handle tear of unspecified meniscus, current injury, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157127,10,'S83.202A ','Bucket-handle tear of unspecified meniscus, current injury, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157126,10,'S83.201S ','Bucket-handle tear of unspecified meniscus, current injury, left knee, sequela','Y','0000-00-00 00:00:00'),(157125,10,'S83.201D ','Bucket-handle tear of unspecified meniscus, current injury, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157124,10,'S83.201A ','Bucket-handle tear of unspecified meniscus, current injury, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157123,10,'S83.200S ','Bucket-handle tear of unspecified meniscus, current injury, right knee, sequela','Y','0000-00-00 00:00:00'),(157122,10,'S83.200D ','Bucket-handle tear of unspecified meniscus, current injury, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157121,10,'S83.200A ','Bucket-handle tear of unspecified meniscus, current injury, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157120,10,'S83.196S ','Other dislocation of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157119,10,'S83.196D ','Other dislocation of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157118,10,'S83.196A ','Other dislocation of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157117,10,'S83.195S ','Other dislocation of left knee, sequela','Y','0000-00-00 00:00:00'),(157116,10,'S83.195D ','Other dislocation of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157114,10,'S83.194S ','Other dislocation of right knee, sequela','Y','0000-00-00 00:00:00'),(157115,10,'S83.195A ','Other dislocation of left knee, initial encounter','Y','0000-00-00 00:00:00'),(157113,10,'S83.194D ','Other dislocation of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157112,10,'S83.194A ','Other dislocation of right knee, initial encounter','Y','0000-00-00 00:00:00'),(157111,10,'S83.193S ','Other subluxation of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157110,10,'S83.193D ','Other subluxation of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157109,10,'S83.193A ','Other subluxation of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157108,10,'S83.192S ','Other subluxation of left knee, sequela','Y','0000-00-00 00:00:00'),(157107,10,'S83.192D ','Other subluxation of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157105,10,'S83.191S ','Other subluxation of right knee, sequela','Y','0000-00-00 00:00:00'),(157106,10,'S83.192A ','Other subluxation of left knee, initial encounter','Y','0000-00-00 00:00:00'),(157104,10,'S83.191D ','Other subluxation of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157103,10,'S83.191A ','Other subluxation of right knee, initial encounter','Y','0000-00-00 00:00:00'),(157102,10,'S83.146S ','Lateral dislocation of proximal end of tibia, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157101,10,'S83.146D ','Lateral dislocation of proximal end of tibia, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157100,10,'S83.146A ','Lateral dislocation of proximal end of tibia, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157099,10,'S83.145S ','Lateral dislocation of proximal end of tibia, left knee, sequela','Y','0000-00-00 00:00:00'),(157098,10,'S83.145D ','Lateral dislocation of proximal end of tibia, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157097,10,'S83.145A ','Lateral dislocation of proximal end of tibia, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157096,10,'S83.144S ','Lateral dislocation of proximal end of tibia, right knee, sequela','Y','0000-00-00 00:00:00'),(157095,10,'S83.144D ','Lateral dislocation of proximal end of tibia, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157094,10,'S83.144A ','Lateral dislocation of proximal end of tibia, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157093,10,'S83.143S ','Lateral subluxation of proximal end of tibia, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157092,10,'S83.143D ','Lateral subluxation of proximal end of tibia, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157091,10,'S83.143A ','Lateral subluxation of proximal end of tibia, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157090,10,'S83.142S ','Lateral subluxation of proximal end of tibia, left knee, sequela','Y','0000-00-00 00:00:00'),(157089,10,'S83.142D ','Lateral subluxation of proximal end of tibia, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157088,10,'S83.142A ','Lateral subluxation of proximal end of tibia, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157087,10,'S83.141S ','Lateral subluxation of proximal end of tibia, right knee, sequela','Y','0000-00-00 00:00:00'),(157086,10,'S83.141D ','Lateral subluxation of proximal end of tibia, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157085,10,'S83.141A ','Lateral subluxation of proximal end of tibia, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157084,10,'S83.136S ','Medial dislocation of proximal end of tibia, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157083,10,'S83.136D ','Medial dislocation of proximal end of tibia, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157082,10,'S83.136A ','Medial dislocation of proximal end of tibia, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157081,10,'S83.135S ','Medial dislocation of proximal end of tibia, left knee, sequela','Y','0000-00-00 00:00:00'),(157080,10,'S83.135D ','Medial dislocation of proximal end of tibia, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157079,10,'S83.135A ','Medial dislocation of proximal end of tibia, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157078,10,'S83.134S ','Medial dislocation of proximal end of tibia, right knee, sequela','Y','0000-00-00 00:00:00'),(157077,10,'S83.134D ','Medial dislocation of proximal end of tibia, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157076,10,'S83.134A ','Medial dislocation of proximal end of tibia, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157075,10,'S83.133S ','Medial subluxation of proximal end of tibia, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157074,10,'S83.133D ','Medial subluxation of proximal end of tibia, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157073,10,'S83.133A ','Medial subluxation of proximal end of tibia, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157072,10,'S83.132S ','Medial subluxation of proximal end of tibia, left knee, sequela','Y','0000-00-00 00:00:00'),(157071,10,'S83.132D ','Medial subluxation of proximal end of tibia, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157070,10,'S83.132A ','Medial subluxation of proximal end of tibia, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157069,10,'S83.131S ','Medial subluxation of proximal end of tibia, right knee, sequela','Y','0000-00-00 00:00:00'),(157068,10,'S83.131D ','Medial subluxation of proximal end of tibia, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157067,10,'S83.131A ','Medial subluxation of proximal end of tibia, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157066,10,'S83.126S ','Posterior dislocation of proximal end of tibia, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157065,10,'S83.126D ','Posterior dislocation of proximal end of tibia, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157064,10,'S83.126A ','Posterior dislocation of proximal end of tibia, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157063,10,'S83.125S ','Posterior dislocation of proximal end of tibia, left knee, sequela','Y','0000-00-00 00:00:00'),(157062,10,'S83.125D ','Posterior dislocation of proximal end of tibia, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157061,10,'S83.125A ','Posterior dislocation of proximal end of tibia, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157060,10,'S83.124S ','Posterior dislocation of proximal end of tibia, right knee, sequela','Y','0000-00-00 00:00:00'),(157059,10,'S83.124D ','Posterior dislocation of proximal end of tibia, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157058,10,'S83.124A ','Posterior dislocation of proximal end of tibia, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157057,10,'S83.123S ','Posterior subluxation of proximal end of tibia, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157056,10,'S83.123D ','Posterior subluxation of proximal end of tibia, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157055,10,'S83.123A ','Posterior subluxation of proximal end of tibia, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157054,10,'S83.122S ','Posterior subluxation of proximal end of tibia, left knee, sequela','Y','0000-00-00 00:00:00'),(157053,10,'S83.122D ','Posterior subluxation of proximal end of tibia, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157052,10,'S83.122A ','Posterior subluxation of proximal end of tibia, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157051,10,'S83.121S ','Posterior subluxation of proximal end of tibia, right knee, sequela','Y','0000-00-00 00:00:00'),(157050,10,'S83.121D ','Posterior subluxation of proximal end of tibia, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157049,10,'S83.121A ','Posterior subluxation of proximal end of tibia, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157048,10,'S83.116S ','Anterior dislocation of proximal end of tibia, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157047,10,'S83.116D ','Anterior dislocation of proximal end of tibia, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157046,10,'S83.116A ','Anterior dislocation of proximal end of tibia, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157045,10,'S83.115S ','Anterior dislocation of proximal end of tibia, left knee, sequela','Y','0000-00-00 00:00:00'),(157044,10,'S83.115D ','Anterior dislocation of proximal end of tibia, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157043,10,'S83.115A ','Anterior dislocation of proximal end of tibia, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157042,10,'S83.114S ','Anterior dislocation of proximal end of tibia, right knee, sequela','Y','0000-00-00 00:00:00'),(157041,10,'S83.114D ','Anterior dislocation of proximal end of tibia, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157040,10,'S83.114A ','Anterior dislocation of proximal end of tibia, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157039,10,'S83.113S ','Anterior subluxation of proximal end of tibia, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157038,10,'S83.113D ','Anterior subluxation of proximal end of tibia, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157037,10,'S83.113A ','Anterior subluxation of proximal end of tibia, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157036,10,'S83.112S ','Anterior subluxation of proximal end of tibia, left knee, sequela','Y','0000-00-00 00:00:00'),(157035,10,'S83.112D ','Anterior subluxation of proximal end of tibia, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157034,10,'S83.112A ','Anterior subluxation of proximal end of tibia, left knee, initial encounter','Y','0000-00-00 00:00:00'),(157033,10,'S83.111S ','Anterior subluxation of proximal end of tibia, right knee, sequela','Y','0000-00-00 00:00:00'),(157032,10,'S83.111D ','Anterior subluxation of proximal end of tibia, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157031,10,'S83.111A ','Anterior subluxation of proximal end of tibia, right knee, initial encounter','Y','0000-00-00 00:00:00'),(157029,10,'S83.106D ','Unspecified dislocation of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157030,10,'S83.106S ','Unspecified dislocation of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157028,10,'S83.106A ','Unspecified dislocation of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157027,10,'S83.105S ','Unspecified dislocation of left knee, sequela','Y','0000-00-00 00:00:00'),(157026,10,'S83.105D ','Unspecified dislocation of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157025,10,'S83.105A ','Unspecified dislocation of left knee, initial encounter','Y','0000-00-00 00:00:00'),(157024,10,'S83.104S ','Unspecified dislocation of right knee, sequela','Y','0000-00-00 00:00:00'),(157023,10,'S83.104D ','Unspecified dislocation of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157022,10,'S83.104A ','Unspecified dislocation of right knee, initial encounter','Y','0000-00-00 00:00:00'),(157021,10,'S83.103S ','Unspecified subluxation of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(157019,10,'S83.103A ','Unspecified subluxation of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(157020,10,'S83.103D ','Unspecified subluxation of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157018,10,'S83.102S ','Unspecified subluxation of left knee, sequela','Y','0000-00-00 00:00:00'),(157017,10,'S83.102D ','Unspecified subluxation of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157016,10,'S83.102A ','Unspecified subluxation of left knee, initial encounter','Y','0000-00-00 00:00:00'),(157015,10,'S83.101S ','Unspecified subluxation of right knee, sequela','Y','0000-00-00 00:00:00'),(157014,10,'S83.101D ','Unspecified subluxation of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(157013,10,'S83.101A ','Unspecified subluxation of right knee, initial encounter','Y','0000-00-00 00:00:00'),(157011,10,'S83.096D ','Other dislocation of unspecified patella, subsequent encounter','Y','0000-00-00 00:00:00'),(157012,10,'S83.096S ','Other dislocation of unspecified patella, sequela','Y','0000-00-00 00:00:00'),(157010,10,'S83.096A ','Other dislocation of unspecified patella, initial encounter','Y','0000-00-00 00:00:00'),(157009,10,'S83.095S ','Other dislocation of left patella, sequela','Y','0000-00-00 00:00:00'),(157008,10,'S83.095D ','Other dislocation of left patella, subsequent encounter','Y','0000-00-00 00:00:00'),(157006,10,'S83.094S ','Other dislocation of right patella, sequela','Y','0000-00-00 00:00:00'),(157007,10,'S83.095A ','Other dislocation of left patella, initial encounter','Y','0000-00-00 00:00:00'),(157005,10,'S83.094D ','Other dislocation of right patella, subsequent encounter','Y','0000-00-00 00:00:00'),(157004,10,'S83.094A ','Other dislocation of right patella, initial encounter','Y','0000-00-00 00:00:00'),(157003,10,'S83.093S ','Other subluxation of unspecified patella, sequela','Y','0000-00-00 00:00:00'),(157002,10,'S83.093D ','Other subluxation of unspecified patella, subsequent encounter','Y','0000-00-00 00:00:00'),(157000,10,'S83.092S ','Other subluxation of left patella, sequela','Y','0000-00-00 00:00:00'),(157001,10,'S83.093A ','Other subluxation of unspecified patella, initial encounter','Y','0000-00-00 00:00:00'),(156999,10,'S83.092D ','Other subluxation of left patella, subsequent encounter','Y','0000-00-00 00:00:00'),(156998,10,'S83.092A ','Other subluxation of left patella, initial encounter','Y','0000-00-00 00:00:00'),(156997,10,'S83.091S ','Other subluxation of right patella, sequela','Y','0000-00-00 00:00:00'),(156996,10,'S83.091D ','Other subluxation of right patella, subsequent encounter','Y','0000-00-00 00:00:00'),(156995,10,'S83.091A ','Other subluxation of right patella, initial encounter','Y','0000-00-00 00:00:00'),(156994,10,'S83.016S ','Lateral dislocation of unspecified patella, sequela','Y','0000-00-00 00:00:00'),(156993,10,'S83.016D ','Lateral dislocation of unspecified patella, subsequent encounter','Y','0000-00-00 00:00:00'),(156992,10,'S83.016A ','Lateral dislocation of unspecified patella, initial encounter','Y','0000-00-00 00:00:00'),(156991,10,'S83.015S ','Lateral dislocation of left patella, sequela','Y','0000-00-00 00:00:00'),(156990,10,'S83.015D ','Lateral dislocation of left patella, subsequent encounter','Y','0000-00-00 00:00:00'),(156989,10,'S83.015A ','Lateral dislocation of left patella, initial encounter','Y','0000-00-00 00:00:00'),(156988,10,'S83.014S ','Lateral dislocation of right patella, sequela','Y','0000-00-00 00:00:00'),(156987,10,'S83.014D ','Lateral dislocation of right patella, subsequent encounter','Y','0000-00-00 00:00:00'),(156986,10,'S83.014A ','Lateral dislocation of right patella, initial encounter','Y','0000-00-00 00:00:00'),(156985,10,'S83.013S ','Lateral subluxation of unspecified patella, sequela','Y','0000-00-00 00:00:00'),(156984,10,'S83.013D ','Lateral subluxation of unspecified patella, subsequent encounter','Y','0000-00-00 00:00:00'),(156983,10,'S83.013A ','Lateral subluxation of unspecified patella, initial encounter','Y','0000-00-00 00:00:00'),(156982,10,'S83.012S ','Lateral subluxation of left patella, sequela','Y','0000-00-00 00:00:00'),(156981,10,'S83.012D ','Lateral subluxation of left patella, subsequent encounter','Y','0000-00-00 00:00:00'),(156980,10,'S83.012A ','Lateral subluxation of left patella, initial encounter','Y','0000-00-00 00:00:00'),(156979,10,'S83.011S ','Lateral subluxation of right patella, sequela','Y','0000-00-00 00:00:00'),(156978,10,'S83.011D ','Lateral subluxation of right patella, subsequent encounter','Y','0000-00-00 00:00:00'),(156977,10,'S83.011A ','Lateral subluxation of right patella, initial encounter','Y','0000-00-00 00:00:00'),(156976,10,'S83.006S ','Unspecified dislocation of unspecified patella, sequela','Y','0000-00-00 00:00:00'),(156975,10,'S83.006D ','Unspecified dislocation of unspecified patella, subsequent encounter','Y','0000-00-00 00:00:00'),(156974,10,'S83.006A ','Unspecified dislocation of unspecified patella, initial encounter','Y','0000-00-00 00:00:00'),(156973,10,'S83.005S ','Unspecified dislocation of left patella, sequela','Y','0000-00-00 00:00:00'),(156972,10,'S83.005D ','Unspecified dislocation of left patella, subsequent encounter','Y','0000-00-00 00:00:00'),(156971,10,'S83.005A ','Unspecified dislocation of left patella, initial encounter','Y','0000-00-00 00:00:00'),(156970,10,'S83.004S ','Unspecified dislocation of right patella, sequela','Y','0000-00-00 00:00:00'),(156969,10,'S83.004D ','Unspecified dislocation of right patella, subsequent encounter','Y','0000-00-00 00:00:00'),(156968,10,'S83.004A ','Unspecified dislocation of right patella, initial encounter','Y','0000-00-00 00:00:00'),(156967,10,'S83.003S ','Unspecified subluxation of unspecified patella, sequela','Y','0000-00-00 00:00:00'),(156966,10,'S83.003D ','Unspecified subluxation of unspecified patella, subsequent encounter','Y','0000-00-00 00:00:00'),(156965,10,'S83.003A ','Unspecified subluxation of unspecified patella, initial encounter','Y','0000-00-00 00:00:00'),(156964,10,'S83.002S ','Unspecified subluxation of left patella, sequela','Y','0000-00-00 00:00:00'),(156963,10,'S83.002D ','Unspecified subluxation of left patella, subsequent encounter','Y','0000-00-00 00:00:00'),(156962,10,'S83.002A ','Unspecified subluxation of left patella, initial encounter','Y','0000-00-00 00:00:00'),(156961,10,'S83.001S ','Unspecified subluxation of right patella, sequela','Y','0000-00-00 00:00:00'),(156960,10,'S83.001D ','Unspecified subluxation of right patella, subsequent encounter','Y','0000-00-00 00:00:00'),(156959,10,'S83.001A ','Unspecified subluxation of right patella, initial encounter','Y','0000-00-00 00:00:00'),(156958,10,'S82.92XS ','Unspecified fracture of left lower leg, sequela','Y','0000-00-00 00:00:00'),(156957,10,'S82.92XR ','Unspecified fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156956,10,'S82.92XQ ','Unspecified fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156955,10,'S82.92XP ','Unspecified fracture of left lower leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156954,10,'S82.92XN ','Unspecified fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156953,10,'S82.92XM ','Unspecified fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156952,10,'S82.92XK ','Unspecified fracture of left lower leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156951,10,'S82.92XJ ','Unspecified fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156950,10,'S82.92XH ','Unspecified fracture of left lower leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156949,10,'S82.92XG ','Unspecified fracture of left lower leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156948,10,'S82.92XF ','Unspecified fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156947,10,'S82.92XE ','Unspecified fracture of left lower leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156946,10,'S82.92XD ','Unspecified fracture of left lower leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156945,10,'S82.92XC ','Unspecified fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156944,10,'S82.92XB ','Unspecified fracture of left lower leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156943,10,'S82.92XA ','Unspecified fracture of left lower leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156942,10,'S82.91XS ','Unspecified fracture of right lower leg, sequela','Y','0000-00-00 00:00:00'),(156941,10,'S82.91XR ','Unspecified fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156940,10,'S82.91XQ ','Unspecified fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156939,10,'S82.91XP ','Unspecified fracture of right lower leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156938,10,'S82.91XN ','Unspecified fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156937,10,'S82.91XM ','Unspecified fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156936,10,'S82.91XK ','Unspecified fracture of right lower leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156935,10,'S82.91XJ ','Unspecified fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156934,10,'S82.91XH ','Unspecified fracture of right lower leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156933,10,'S82.91XG ','Unspecified fracture of right lower leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156932,10,'S82.91XF ','Unspecified fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156931,10,'S82.91XE ','Unspecified fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156930,10,'S82.91XD ','Unspecified fracture of right lower leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156929,10,'S82.91XC ','Unspecified fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156928,10,'S82.91XB ','Unspecified fracture of right lower leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156927,10,'S82.91XA ','Unspecified fracture of right lower leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156926,10,'S82.90XS ','Unspecified fracture of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(156925,10,'S82.90XR ','Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156924,10,'S82.90XQ ','Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156923,10,'S82.90XP ','Unspecified fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156922,10,'S82.90XN ','Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156921,10,'S82.90XM ','Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156920,10,'S82.90XK ','Unspecified fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156919,10,'S82.90XJ ','Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156918,10,'S82.90XH ','Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156917,10,'S82.90XG ','Unspecified fracture of unspecified lower leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156916,10,'S82.90XF ','Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156915,10,'S82.90XE ','Unspecified fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156914,10,'S82.90XD ','Unspecified fracture of unspecified lower leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156913,10,'S82.90XC ','Unspecified fracture of unspecified lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156912,10,'S82.90XB ','Unspecified fracture of unspecified lower leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156911,10,'S82.90XA ','Unspecified fracture of unspecified lower leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156910,10,'S82.899S ','Other fracture of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(156909,10,'S82.899R ','Other fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156908,10,'S82.899Q ','Other fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156907,10,'S82.899P ','Other fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156906,10,'S82.899N ','Other fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156905,10,'S82.899M ','Other fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156904,10,'S82.899K ','Other fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156903,10,'S82.899J ','Other fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156902,10,'S82.899H ','Other fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156901,10,'S82.899G ','Other fracture of unspecified lower leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156900,10,'S82.899F ','Other fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156899,10,'S82.899E ','Other fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156898,10,'S82.899D ','Other fracture of unspecified lower leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156897,10,'S82.899C ','Other fracture of unspecified lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156896,10,'S82.899B ','Other fracture of unspecified lower leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156895,10,'S82.899A ','Other fracture of unspecified lower leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156894,10,'S82.892S ','Other fracture of left lower leg, sequela','Y','0000-00-00 00:00:00'),(156893,10,'S82.892R ','Other fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156892,10,'S82.892Q ','Other fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156891,10,'S82.892P ','Other fracture of left lower leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156890,10,'S82.892N ','Other fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156889,10,'S82.892M ','Other fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156888,10,'S82.892K ','Other fracture of left lower leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156887,10,'S82.892J ','Other fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156886,10,'S82.892H ','Other fracture of left lower leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156885,10,'S82.892G ','Other fracture of left lower leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156884,10,'S82.892F ','Other fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156883,10,'S82.892E ','Other fracture of left lower leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156882,10,'S82.892D ','Other fracture of left lower leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156881,10,'S82.892C ','Other fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156880,10,'S82.892B ','Other fracture of left lower leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156879,10,'S82.892A ','Other fracture of left lower leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156878,10,'S82.891S ','Other fracture of right lower leg, sequela','Y','0000-00-00 00:00:00'),(156877,10,'S82.891R ','Other fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156876,10,'S82.891Q ','Other fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156875,10,'S82.891P ','Other fracture of right lower leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156874,10,'S82.891N ','Other fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156873,10,'S82.891M ','Other fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156872,10,'S82.891K ','Other fracture of right lower leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156871,10,'S82.891J ','Other fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156870,10,'S82.891H ','Other fracture of right lower leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156869,10,'S82.891G ','Other fracture of right lower leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156868,10,'S82.891F ','Other fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156867,10,'S82.891E ','Other fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156866,10,'S82.891D ','Other fracture of right lower leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156865,10,'S82.891C ','Other fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156864,10,'S82.891B ','Other fracture of right lower leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156863,10,'S82.891A ','Other fracture of right lower leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156862,10,'S82.876S ','Nondisplaced pilon fracture of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(156861,10,'S82.876R ','Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156860,10,'S82.876Q ','Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156859,10,'S82.876P ','Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156858,10,'S82.876N ','Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156857,10,'S82.876M ','Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156856,10,'S82.876K ','Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156855,10,'S82.876J ','Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156854,10,'S82.876H ','Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156853,10,'S82.876G ','Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156852,10,'S82.876F ','Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156851,10,'S82.876E ','Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156850,10,'S82.876D ','Nondisplaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156849,10,'S82.876C ','Nondisplaced pilon fracture of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156848,10,'S82.876B ','Nondisplaced pilon fracture of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156847,10,'S82.876A ','Nondisplaced pilon fracture of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156846,10,'S82.875S ','Nondisplaced pilon fracture of left tibia, sequela','Y','0000-00-00 00:00:00'),(156845,10,'S82.875R ','Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156844,10,'S82.875Q ','Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156843,10,'S82.875P ','Nondisplaced pilon fracture of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156842,10,'S82.875N ','Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156841,10,'S82.875M ','Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156840,10,'S82.875K ','Nondisplaced pilon fracture of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156839,10,'S82.875J ','Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156838,10,'S82.875H ','Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156837,10,'S82.875G ','Nondisplaced pilon fracture of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156836,10,'S82.875F ','Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156835,10,'S82.875E ','Nondisplaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156834,10,'S82.875D ','Nondisplaced pilon fracture of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156833,10,'S82.875C ','Nondisplaced pilon fracture of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156832,10,'S82.875B ','Nondisplaced pilon fracture of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156831,10,'S82.875A ','Nondisplaced pilon fracture of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156830,10,'S82.874S ','Nondisplaced pilon fracture of right tibia, sequela','Y','0000-00-00 00:00:00'),(156829,10,'S82.874R ','Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156828,10,'S82.874Q ','Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156827,10,'S82.874P ','Nondisplaced pilon fracture of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156826,10,'S82.874N ','Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156825,10,'S82.874M ','Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156824,10,'S82.874K ','Nondisplaced pilon fracture of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156823,10,'S82.874J ','Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156822,10,'S82.874H ','Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156821,10,'S82.874G ','Nondisplaced pilon fracture of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156820,10,'S82.874F ','Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156819,10,'S82.874E ','Nondisplaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156818,10,'S82.874D ','Nondisplaced pilon fracture of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156817,10,'S82.874C ','Nondisplaced pilon fracture of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156816,10,'S82.874B ','Nondisplaced pilon fracture of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156815,10,'S82.874A ','Nondisplaced pilon fracture of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156814,10,'S82.873S ','Displaced pilon fracture of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(156813,10,'S82.873R ','Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156812,10,'S82.873Q ','Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156811,10,'S82.873P ','Displaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156810,10,'S82.873N ','Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156809,10,'S82.873M ','Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156808,10,'S82.873K ','Displaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156807,10,'S82.873J ','Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156806,10,'S82.873H ','Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156805,10,'S82.873G ','Displaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156804,10,'S82.873F ','Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156803,10,'S82.873E ','Displaced pilon fracture of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156802,10,'S82.873D ','Displaced pilon fracture of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156801,10,'S82.873C ','Displaced pilon fracture of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156800,10,'S82.873B ','Displaced pilon fracture of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156799,10,'S82.873A ','Displaced pilon fracture of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156798,10,'S82.872S ','Displaced pilon fracture of left tibia, sequela','Y','0000-00-00 00:00:00'),(156797,10,'S82.872R ','Displaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156796,10,'S82.872Q ','Displaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156795,10,'S82.872P ','Displaced pilon fracture of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156794,10,'S82.872N ','Displaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156793,10,'S82.872M ','Displaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156792,10,'S82.872K ','Displaced pilon fracture of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156791,10,'S82.872J ','Displaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156790,10,'S82.872H ','Displaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156789,10,'S82.872G ','Displaced pilon fracture of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156788,10,'S82.872F ','Displaced pilon fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156787,10,'S82.872E ','Displaced pilon fracture of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156786,10,'S82.872D ','Displaced pilon fracture of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156785,10,'S82.872C ','Displaced pilon fracture of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156784,10,'S82.872B ','Displaced pilon fracture of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156783,10,'S82.872A ','Displaced pilon fracture of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156782,10,'S82.871S ','Displaced pilon fracture of right tibia, sequela','Y','0000-00-00 00:00:00'),(156781,10,'S82.871R ','Displaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156780,10,'S82.871Q ','Displaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156779,10,'S82.871P ','Displaced pilon fracture of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156778,10,'S82.871N ','Displaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156777,10,'S82.871M ','Displaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156776,10,'S82.871K ','Displaced pilon fracture of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156775,10,'S82.871J ','Displaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156774,10,'S82.871H ','Displaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156773,10,'S82.871G ','Displaced pilon fracture of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156772,10,'S82.871F ','Displaced pilon fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156771,10,'S82.871E ','Displaced pilon fracture of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156770,10,'S82.871D ','Displaced pilon fracture of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156769,10,'S82.871C ','Displaced pilon fracture of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156768,10,'S82.871B ','Displaced pilon fracture of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156767,10,'S82.871A ','Displaced pilon fracture of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156766,10,'S82.866S ','Nondisplaced Maisonneuve\'s fracture of unspecified leg, sequela','Y','0000-00-00 00:00:00'),(156765,10,'S82.866R ','Nondisplaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156764,10,'S82.866Q ','Nondisplaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156763,10,'S82.866P ','Nondisplaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156762,10,'S82.866N ','Nondisplaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156761,10,'S82.866M ','Nondisplaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156760,10,'S82.866K ','Nondisplaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156759,10,'S82.866J ','Nondisplaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156758,10,'S82.866H ','Nondisplaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156757,10,'S82.866G ','Nondisplaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156756,10,'S82.866F ','Nondisplaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156755,10,'S82.866E ','Nondisplaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156754,10,'S82.866D ','Nondisplaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156753,10,'S82.866C ','Nondisplaced Maisonneuve\'s fracture of unspecified leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156752,10,'S82.866B ','Nondisplaced Maisonneuve\'s fracture of unspecified leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156751,10,'S82.866A ','Nondisplaced Maisonneuve\'s fracture of unspecified leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156750,10,'S82.865S ','Nondisplaced Maisonneuve\'s fracture of left leg, sequela','Y','0000-00-00 00:00:00'),(156749,10,'S82.865R ','Nondisplaced Maisonneuve\'s fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156748,10,'S82.865Q ','Nondisplaced Maisonneuve\'s fracture of left leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156747,10,'S82.865P ','Nondisplaced Maisonneuve\'s fracture of left leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156746,10,'S82.865N ','Nondisplaced Maisonneuve\'s fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156745,10,'S82.865M ','Nondisplaced Maisonneuve\'s fracture of left leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156744,10,'S82.865K ','Nondisplaced Maisonneuve\'s fracture of left leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156743,10,'S82.865J ','Nondisplaced Maisonneuve\'s fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156742,10,'S82.865H ','Nondisplaced Maisonneuve\'s fracture of left leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156741,10,'S82.865G ','Nondisplaced Maisonneuve\'s fracture of left leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156740,10,'S82.865F ','Nondisplaced Maisonneuve\'s fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156739,10,'S82.865E ','Nondisplaced Maisonneuve\'s fracture of left leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156738,10,'S82.865D ','Nondisplaced Maisonneuve\'s fracture of left leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156737,10,'S82.865C ','Nondisplaced Maisonneuve\'s fracture of left leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156736,10,'S82.865B ','Nondisplaced Maisonneuve\'s fracture of left leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156735,10,'S82.865A ','Nondisplaced Maisonneuve\'s fracture of left leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156734,10,'S82.864S ','Nondisplaced Maisonneuve\'s fracture of right leg, sequela','Y','0000-00-00 00:00:00'),(156733,10,'S82.864R ','Nondisplaced Maisonneuve\'s fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156732,10,'S82.864Q ','Nondisplaced Maisonneuve\'s fracture of right leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156731,10,'S82.864P ','Nondisplaced Maisonneuve\'s fracture of right leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156730,10,'S82.864N ','Nondisplaced Maisonneuve\'s fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156729,10,'S82.864M ','Nondisplaced Maisonneuve\'s fracture of right leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156728,10,'S82.864K ','Nondisplaced Maisonneuve\'s fracture of right leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156727,10,'S82.864J ','Nondisplaced Maisonneuve\'s fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156726,10,'S82.864H ','Nondisplaced Maisonneuve\'s fracture of right leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156725,10,'S82.864G ','Nondisplaced Maisonneuve\'s fracture of right leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156724,10,'S82.864F ','Nondisplaced Maisonneuve\'s fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156723,10,'S82.864E ','Nondisplaced Maisonneuve\'s fracture of right leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156722,10,'S82.864D ','Nondisplaced Maisonneuve\'s fracture of right leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156721,10,'S82.864C ','Nondisplaced Maisonneuve\'s fracture of right leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156720,10,'S82.864B ','Nondisplaced Maisonneuve\'s fracture of right leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156719,10,'S82.864A ','Nondisplaced Maisonneuve\'s fracture of right leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156718,10,'S82.863S ','Displaced Maisonneuve\'s fracture of unspecified leg, sequela','Y','0000-00-00 00:00:00'),(156717,10,'S82.863R ','Displaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156716,10,'S82.863Q ','Displaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156715,10,'S82.863P ','Displaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156714,10,'S82.863N ','Displaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156713,10,'S82.863M ','Displaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156712,10,'S82.863K ','Displaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156711,10,'S82.863J ','Displaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156710,10,'S82.863H ','Displaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156709,10,'S82.863G ','Displaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156708,10,'S82.863F ','Displaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156707,10,'S82.863E ','Displaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156706,10,'S82.863D ','Displaced Maisonneuve\'s fracture of unspecified leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156705,10,'S82.863C ','Displaced Maisonneuve\'s fracture of unspecified leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156704,10,'S82.863B ','Displaced Maisonneuve\'s fracture of unspecified leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156703,10,'S82.863A ','Displaced Maisonneuve\'s fracture of unspecified leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156702,10,'S82.862S ','Displaced Maisonneuve\'s fracture of left leg, sequela','Y','0000-00-00 00:00:00'),(156701,10,'S82.862R ','Displaced Maisonneuve\'s fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156700,10,'S82.862Q ','Displaced Maisonneuve\'s fracture of left leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156699,10,'S82.862P ','Displaced Maisonneuve\'s fracture of left leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156698,10,'S82.862N ','Displaced Maisonneuve\'s fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156697,10,'S82.862M ','Displaced Maisonneuve\'s fracture of left leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156696,10,'S82.862K ','Displaced Maisonneuve\'s fracture of left leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156695,10,'S82.862J ','Displaced Maisonneuve\'s fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156694,10,'S82.862H ','Displaced Maisonneuve\'s fracture of left leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156693,10,'S82.862G ','Displaced Maisonneuve\'s fracture of left leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156692,10,'S82.862F ','Displaced Maisonneuve\'s fracture of left leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156691,10,'S82.862E ','Displaced Maisonneuve\'s fracture of left leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156690,10,'S82.862D ','Displaced Maisonneuve\'s fracture of left leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156689,10,'S82.862C ','Displaced Maisonneuve\'s fracture of left leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156688,10,'S82.862B ','Displaced Maisonneuve\'s fracture of left leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156687,10,'S82.862A ','Displaced Maisonneuve\'s fracture of left leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156686,10,'S82.861S ','Displaced Maisonneuve\'s fracture of right leg, sequela','Y','0000-00-00 00:00:00'),(156685,10,'S82.861R ','Displaced Maisonneuve\'s fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156684,10,'S82.861Q ','Displaced Maisonneuve\'s fracture of right leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156683,10,'S82.861P ','Displaced Maisonneuve\'s fracture of right leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156682,10,'S82.861N ','Displaced Maisonneuve\'s fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156681,10,'S82.861M ','Displaced Maisonneuve\'s fracture of right leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156680,10,'S82.861K ','Displaced Maisonneuve\'s fracture of right leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156679,10,'S82.861J ','Displaced Maisonneuve\'s fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156678,10,'S82.861H ','Displaced Maisonneuve\'s fracture of right leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156677,10,'S82.861G ','Displaced Maisonneuve\'s fracture of right leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156676,10,'S82.861F ','Displaced Maisonneuve\'s fracture of right leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156675,10,'S82.861E ','Displaced Maisonneuve\'s fracture of right leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156674,10,'S82.861D ','Displaced Maisonneuve\'s fracture of right leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156673,10,'S82.861C ','Displaced Maisonneuve\'s fracture of right leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156672,10,'S82.861B ','Displaced Maisonneuve\'s fracture of right leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156671,10,'S82.861A ','Displaced Maisonneuve\'s fracture of right leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156670,10,'S82.856S ','Nondisplaced trimalleolar fracture of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(156669,10,'S82.856R ','Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156668,10,'S82.856Q ','Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156667,10,'S82.856P ','Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156666,10,'S82.856N ','Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156665,10,'S82.856M ','Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156664,10,'S82.856K ','Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156663,10,'S82.856J ','Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156662,10,'S82.856H ','Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156661,10,'S82.856G ','Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156660,10,'S82.856F ','Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156659,10,'S82.856E ','Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156658,10,'S82.856D ','Nondisplaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156657,10,'S82.856C ','Nondisplaced trimalleolar fracture of unspecified lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156656,10,'S82.856B ','Nondisplaced trimalleolar fracture of unspecified lower leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156655,10,'S82.856A ','Nondisplaced trimalleolar fracture of unspecified lower leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156654,10,'S82.855S ','Nondisplaced trimalleolar fracture of left lower leg, sequela','Y','0000-00-00 00:00:00'),(156653,10,'S82.855R ','Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156652,10,'S82.855Q ','Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156651,10,'S82.855P ','Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156650,10,'S82.855N ','Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156649,10,'S82.855M ','Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156648,10,'S82.855K ','Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156647,10,'S82.855J ','Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156646,10,'S82.855H ','Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156645,10,'S82.855G ','Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156644,10,'S82.855F ','Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156643,10,'S82.855E ','Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156642,10,'S82.855D ','Nondisplaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156641,10,'S82.855C ','Nondisplaced trimalleolar fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156640,10,'S82.855B ','Nondisplaced trimalleolar fracture of left lower leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156639,10,'S82.855A ','Nondisplaced trimalleolar fracture of left lower leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156638,10,'S82.854S ','Nondisplaced trimalleolar fracture of right lower leg, sequela','Y','0000-00-00 00:00:00'),(156637,10,'S82.854R ','Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156636,10,'S82.854Q ','Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156635,10,'S82.854P ','Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156634,10,'S82.854N ','Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156633,10,'S82.854M ','Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156632,10,'S82.854K ','Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156631,10,'S82.854J ','Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156630,10,'S82.854H ','Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156629,10,'S82.854G ','Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156628,10,'S82.854F ','Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156627,10,'S82.854E ','Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156626,10,'S82.854D ','Nondisplaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156625,10,'S82.854C ','Nondisplaced trimalleolar fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156624,10,'S82.854B ','Nondisplaced trimalleolar fracture of right lower leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156623,10,'S82.854A ','Nondisplaced trimalleolar fracture of right lower leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156622,10,'S82.853S ','Displaced trimalleolar fracture of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(156621,10,'S82.853R ','Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156620,10,'S82.853Q ','Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156619,10,'S82.853P ','Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156618,10,'S82.853N ','Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156617,10,'S82.853M ','Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156616,10,'S82.853K ','Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156615,10,'S82.853J ','Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156614,10,'S82.853H ','Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156613,10,'S82.853G ','Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156612,10,'S82.853F ','Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156611,10,'S82.853E ','Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156610,10,'S82.853D ','Displaced trimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156609,10,'S82.853C ','Displaced trimalleolar fracture of unspecified lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156608,10,'S82.853B ','Displaced trimalleolar fracture of unspecified lower leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156607,10,'S82.853A ','Displaced trimalleolar fracture of unspecified lower leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156606,10,'S82.852S ','Displaced trimalleolar fracture of left lower leg, sequela','Y','0000-00-00 00:00:00'),(156605,10,'S82.852R ','Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156604,10,'S82.852Q ','Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156603,10,'S82.852P ','Displaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156602,10,'S82.852N ','Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156601,10,'S82.852M ','Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156600,10,'S82.852K ','Displaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156599,10,'S82.852J ','Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156598,10,'S82.852H ','Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156597,10,'S82.852G ','Displaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156596,10,'S82.852F ','Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156595,10,'S82.852E ','Displaced trimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156594,10,'S82.852D ','Displaced trimalleolar fracture of left lower leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156593,10,'S82.852C ','Displaced trimalleolar fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156592,10,'S82.852B ','Displaced trimalleolar fracture of left lower leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156591,10,'S82.852A ','Displaced trimalleolar fracture of left lower leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156590,10,'S82.851S ','Displaced trimalleolar fracture of right lower leg, sequela','Y','0000-00-00 00:00:00'),(156589,10,'S82.851R ','Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156588,10,'S82.851Q ','Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156587,10,'S82.851P ','Displaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156586,10,'S82.851N ','Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156585,10,'S82.851M ','Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156584,10,'S82.851K ','Displaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156583,10,'S82.851J ','Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156582,10,'S82.851H ','Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156581,10,'S82.851G ','Displaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156580,10,'S82.851F ','Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156579,10,'S82.851E ','Displaced trimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156578,10,'S82.851D ','Displaced trimalleolar fracture of right lower leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156577,10,'S82.851C ','Displaced trimalleolar fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156576,10,'S82.851B ','Displaced trimalleolar fracture of right lower leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156575,10,'S82.851A ','Displaced trimalleolar fracture of right lower leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156574,10,'S82.846S ','Nondisplaced bimalleolar fracture of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(156573,10,'S82.846R ','Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156572,10,'S82.846Q ','Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156571,10,'S82.846P ','Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156570,10,'S82.846N ','Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156569,10,'S82.846M ','Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156568,10,'S82.846K ','Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156567,10,'S82.846J ','Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156566,10,'S82.846H ','Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156565,10,'S82.846G ','Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156564,10,'S82.846F ','Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156563,10,'S82.846E ','Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156562,10,'S82.846D ','Nondisplaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156561,10,'S82.846C ','Nondisplaced bimalleolar fracture of unspecified lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156560,10,'S82.846B ','Nondisplaced bimalleolar fracture of unspecified lower leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156559,10,'S82.846A ','Nondisplaced bimalleolar fracture of unspecified lower leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156558,10,'S82.845S ','Nondisplaced bimalleolar fracture of left lower leg, sequela','Y','0000-00-00 00:00:00'),(156557,10,'S82.845R ','Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156556,10,'S82.845Q ','Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156555,10,'S82.845P ','Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156554,10,'S82.845N ','Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156553,10,'S82.845M ','Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156552,10,'S82.845K ','Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156551,10,'S82.845J ','Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156550,10,'S82.845H ','Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156549,10,'S82.845G ','Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156548,10,'S82.845F ','Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156547,10,'S82.845E ','Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156546,10,'S82.845D ','Nondisplaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156545,10,'S82.845C ','Nondisplaced bimalleolar fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156544,10,'S82.845B ','Nondisplaced bimalleolar fracture of left lower leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156543,10,'S82.845A ','Nondisplaced bimalleolar fracture of left lower leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156542,10,'S82.844S ','Nondisplaced bimalleolar fracture of right lower leg, sequela','Y','0000-00-00 00:00:00'),(156541,10,'S82.844R ','Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156540,10,'S82.844Q ','Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156539,10,'S82.844P ','Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156538,10,'S82.844N ','Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156537,10,'S82.844M ','Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156536,10,'S82.844K ','Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156535,10,'S82.844J ','Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156534,10,'S82.844H ','Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156533,10,'S82.844G ','Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156532,10,'S82.844F ','Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156531,10,'S82.844E ','Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156530,10,'S82.844D ','Nondisplaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156529,10,'S82.844C ','Nondisplaced bimalleolar fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156528,10,'S82.844B ','Nondisplaced bimalleolar fracture of right lower leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156527,10,'S82.844A ','Nondisplaced bimalleolar fracture of right lower leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156526,10,'S82.843S ','Displaced bimalleolar fracture of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(156525,10,'S82.843R ','Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156524,10,'S82.843Q ','Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156523,10,'S82.843P ','Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156522,10,'S82.843N ','Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156521,10,'S82.843M ','Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156520,10,'S82.843K ','Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156519,10,'S82.843J ','Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156518,10,'S82.843H ','Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156517,10,'S82.843G ','Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156516,10,'S82.843F ','Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156515,10,'S82.843E ','Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156514,10,'S82.843D ','Displaced bimalleolar fracture of unspecified lower leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156513,10,'S82.843C ','Displaced bimalleolar fracture of unspecified lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156512,10,'S82.843B ','Displaced bimalleolar fracture of unspecified lower leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156511,10,'S82.843A ','Displaced bimalleolar fracture of unspecified lower leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156510,10,'S82.842S ','Displaced bimalleolar fracture of left lower leg, sequela','Y','0000-00-00 00:00:00'),(156509,10,'S82.842R ','Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156508,10,'S82.842Q ','Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156507,10,'S82.842P ','Displaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156506,10,'S82.842N ','Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156505,10,'S82.842M ','Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156504,10,'S82.842K ','Displaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156503,10,'S82.842J ','Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156502,10,'S82.842H ','Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156501,10,'S82.842G ','Displaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156500,10,'S82.842F ','Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156499,10,'S82.842E ','Displaced bimalleolar fracture of left lower leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156498,10,'S82.842D ','Displaced bimalleolar fracture of left lower leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156497,10,'S82.842C ','Displaced bimalleolar fracture of left lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156496,10,'S82.842B ','Displaced bimalleolar fracture of left lower leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156495,10,'S82.842A ','Displaced bimalleolar fracture of left lower leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156494,10,'S82.841S ','Displaced bimalleolar fracture of right lower leg, sequela','Y','0000-00-00 00:00:00'),(156493,10,'S82.841R ','Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156492,10,'S82.841Q ','Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156491,10,'S82.841P ','Displaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156490,10,'S82.841N ','Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156489,10,'S82.841M ','Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156488,10,'S82.841K ','Displaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156487,10,'S82.841J ','Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156486,10,'S82.841H ','Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156485,10,'S82.841G ','Displaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156484,10,'S82.841F ','Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156483,10,'S82.841E ','Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156482,10,'S82.841D ','Displaced bimalleolar fracture of right lower leg, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156481,10,'S82.841C ','Displaced bimalleolar fracture of right lower leg, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156480,10,'S82.841B ','Displaced bimalleolar fracture of right lower leg, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156479,10,'S82.841A ','Displaced bimalleolar fracture of right lower leg, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156478,10,'S82.839S ','Other fracture of upper and lower end of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(156477,10,'S82.839R ','Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156476,10,'S82.839Q ','Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156475,10,'S82.839P ','Other fracture of upper and lower end of unspecified fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156474,10,'S82.839N ','Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156473,10,'S82.839M ','Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156472,10,'S82.839K ','Other fracture of upper and lower end of unspecified fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156471,10,'S82.839J ','Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156470,10,'S82.839H ','Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156469,10,'S82.839G ','Other fracture of upper and lower end of unspecified fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156468,10,'S82.839F ','Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156467,10,'S82.839E ','Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156466,10,'S82.839D ','Other fracture of upper and lower end of unspecified fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156465,10,'S82.839C ','Other fracture of upper and lower end of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156464,10,'S82.839B ','Other fracture of upper and lower end of unspecified fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156463,10,'S82.839A ','Other fracture of upper and lower end of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156462,10,'S82.832S ','Other fracture of upper and lower end of left fibula, sequela','Y','0000-00-00 00:00:00'),(156461,10,'S82.832R ','Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156460,10,'S82.832Q ','Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156459,10,'S82.832P ','Other fracture of upper and lower end of left fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156458,10,'S82.832N ','Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156457,10,'S82.832M ','Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156456,10,'S82.832K ','Other fracture of upper and lower end of left fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156455,10,'S82.832J ','Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156454,10,'S82.832H ','Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156453,10,'S82.832G ','Other fracture of upper and lower end of left fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156452,10,'S82.832F ','Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156451,10,'S82.832E ','Other fracture of upper and lower end of left fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156450,10,'S82.832D ','Other fracture of upper and lower end of left fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156449,10,'S82.832C ','Other fracture of upper and lower end of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156448,10,'S82.832B ','Other fracture of upper and lower end of left fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156447,10,'S82.832A ','Other fracture of upper and lower end of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156446,10,'S82.831S ','Other fracture of upper and lower end of right fibula, sequela','Y','0000-00-00 00:00:00'),(156445,10,'S82.831R ','Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156444,10,'S82.831Q ','Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156443,10,'S82.831P ','Other fracture of upper and lower end of right fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156442,10,'S82.831N ','Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156441,10,'S82.831M ','Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156440,10,'S82.831K ','Other fracture of upper and lower end of right fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156439,10,'S82.831J ','Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156438,10,'S82.831H ','Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156437,10,'S82.831G ','Other fracture of upper and lower end of right fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156436,10,'S82.831F ','Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156435,10,'S82.831E ','Other fracture of upper and lower end of right fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156434,10,'S82.831D ','Other fracture of upper and lower end of right fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156433,10,'S82.831C ','Other fracture of upper and lower end of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156432,10,'S82.831B ','Other fracture of upper and lower end of right fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156431,10,'S82.831A ','Other fracture of upper and lower end of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156430,10,'S82.829S ','Torus fracture of lower end of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(156429,10,'S82.829P ','Torus fracture of lower end of unspecified fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(156428,10,'S82.829K ','Torus fracture of lower end of unspecified fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(156427,10,'S82.829G ','Torus fracture of lower end of unspecified fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(156426,10,'S82.829D ','Torus fracture of lower end of unspecified fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(156425,10,'S82.829A ','Torus fracture of lower end of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156424,10,'S82.822S ','Torus fracture of lower end of left fibula, sequela','Y','0000-00-00 00:00:00'),(156423,10,'S82.822P ','Torus fracture of lower end of left fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(156422,10,'S82.822K ','Torus fracture of lower end of left fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(156421,10,'S82.822G ','Torus fracture of lower end of left fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(156420,10,'S82.822D ','Torus fracture of lower end of left fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(156419,10,'S82.822A ','Torus fracture of lower end of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156418,10,'S82.821S ','Torus fracture of lower end of right fibula, sequela','Y','0000-00-00 00:00:00'),(156417,10,'S82.821P ','Torus fracture of lower end of right fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(156416,10,'S82.821K ','Torus fracture of lower end of right fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(156415,10,'S82.821G ','Torus fracture of lower end of right fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(156414,10,'S82.821D ','Torus fracture of lower end of right fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(156413,10,'S82.821A ','Torus fracture of lower end of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156412,10,'S82.819S ','Torus fracture of upper end of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(156411,10,'S82.819P ','Torus fracture of upper end of unspecified fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(156410,10,'S82.819K ','Torus fracture of upper end of unspecified fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(156409,10,'S82.819G ','Torus fracture of upper end of unspecified fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(156408,10,'S82.819D ','Torus fracture of upper end of unspecified fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(156407,10,'S82.819A ','Torus fracture of upper end of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156406,10,'S82.812S ','Torus fracture of upper end of left fibula, sequela','Y','0000-00-00 00:00:00'),(156405,10,'S82.812P ','Torus fracture of upper end of left fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(156404,10,'S82.812K ','Torus fracture of upper end of left fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(156403,10,'S82.812G ','Torus fracture of upper end of left fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(156402,10,'S82.812D ','Torus fracture of upper end of left fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(156401,10,'S82.812A ','Torus fracture of upper end of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156400,10,'S82.811S ','Torus fracture of upper end of right fibula, sequela','Y','0000-00-00 00:00:00'),(156399,10,'S82.811P ','Torus fracture of upper end of right fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(156398,10,'S82.811K ','Torus fracture of upper end of right fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(156397,10,'S82.811G ','Torus fracture of upper end of right fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(156396,10,'S82.811D ','Torus fracture of upper end of right fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(156395,10,'S82.811A ','Torus fracture of upper end of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156394,10,'S82.66XS ','Nondisplaced fracture of lateral malleolus of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(156393,10,'S82.66XR ','Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156392,10,'S82.66XQ ','Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156391,10,'S82.66XP ','Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156390,10,'S82.66XN ','Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156389,10,'S82.66XM ','Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156388,10,'S82.66XK ','Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156387,10,'S82.66XJ ','Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156386,10,'S82.66XH ','Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156385,10,'S82.66XG ','Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156384,10,'S82.66XF ','Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156383,10,'S82.66XE ','Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156382,10,'S82.66XD ','Nondisplaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156381,10,'S82.66XC ','Nondisplaced fracture of lateral malleolus of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156380,10,'S82.66XB ','Nondisplaced fracture of lateral malleolus of unspecified fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156379,10,'S82.66XA ','Nondisplaced fracture of lateral malleolus of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156378,10,'S82.65XS ','Nondisplaced fracture of lateral malleolus of left fibula, sequela','Y','0000-00-00 00:00:00'),(156377,10,'S82.65XR ','Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156376,10,'S82.65XQ ','Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156375,10,'S82.65XP ','Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156374,10,'S82.65XN ','Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156373,10,'S82.65XM ','Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156372,10,'S82.65XK ','Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156371,10,'S82.65XJ ','Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156370,10,'S82.65XH ','Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156369,10,'S82.65XG ','Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156368,10,'S82.65XF ','Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156367,10,'S82.65XE ','Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156366,10,'S82.65XD ','Nondisplaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156365,10,'S82.65XC ','Nondisplaced fracture of lateral malleolus of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156364,10,'S82.65XB ','Nondisplaced fracture of lateral malleolus of left fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156363,10,'S82.65XA ','Nondisplaced fracture of lateral malleolus of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156362,10,'S82.64XS ','Nondisplaced fracture of lateral malleolus of right fibula, sequela','Y','0000-00-00 00:00:00'),(156361,10,'S82.64XR ','Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156360,10,'S82.64XQ ','Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156359,10,'S82.64XP ','Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156358,10,'S82.64XN ','Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156357,10,'S82.64XM ','Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156356,10,'S82.64XK ','Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156355,10,'S82.64XJ ','Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156354,10,'S82.64XH ','Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156353,10,'S82.64XG ','Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156352,10,'S82.64XF ','Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156351,10,'S82.64XE ','Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156350,10,'S82.64XD ','Nondisplaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156349,10,'S82.64XC ','Nondisplaced fracture of lateral malleolus of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156348,10,'S82.64XB ','Nondisplaced fracture of lateral malleolus of right fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156347,10,'S82.64XA ','Nondisplaced fracture of lateral malleolus of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156346,10,'S82.63XS ','Displaced fracture of lateral malleolus of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(156345,10,'S82.63XR ','Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156344,10,'S82.63XQ ','Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156343,10,'S82.63XP ','Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156342,10,'S82.63XN ','Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156341,10,'S82.63XM ','Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156340,10,'S82.63XK ','Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156339,10,'S82.63XJ ','Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156338,10,'S82.63XH ','Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156337,10,'S82.63XG ','Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156336,10,'S82.63XF ','Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156335,10,'S82.63XE ','Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156334,10,'S82.63XD ','Displaced fracture of lateral malleolus of unspecified fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156333,10,'S82.63XC ','Displaced fracture of lateral malleolus of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156332,10,'S82.63XB ','Displaced fracture of lateral malleolus of unspecified fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156331,10,'S82.63XA ','Displaced fracture of lateral malleolus of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156330,10,'S82.62XS ','Displaced fracture of lateral malleolus of left fibula, sequela','Y','0000-00-00 00:00:00'),(156329,10,'S82.62XR ','Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156328,10,'S82.62XQ ','Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156327,10,'S82.62XP ','Displaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156326,10,'S82.62XN ','Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156325,10,'S82.62XM ','Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156324,10,'S82.62XK ','Displaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156323,10,'S82.62XJ ','Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156322,10,'S82.62XH ','Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156321,10,'S82.62XG ','Displaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156320,10,'S82.62XF ','Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156319,10,'S82.62XE ','Displaced fracture of lateral malleolus of left fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156318,10,'S82.62XD ','Displaced fracture of lateral malleolus of left fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156317,10,'S82.62XC ','Displaced fracture of lateral malleolus of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156316,10,'S82.62XB ','Displaced fracture of lateral malleolus of left fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156315,10,'S82.62XA ','Displaced fracture of lateral malleolus of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156314,10,'S82.61XS ','Displaced fracture of lateral malleolus of right fibula, sequela','Y','0000-00-00 00:00:00'),(156313,10,'S82.61XR ','Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156312,10,'S82.61XQ ','Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156311,10,'S82.61XP ','Displaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156310,10,'S82.61XN ','Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156309,10,'S82.61XM ','Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156308,10,'S82.61XK ','Displaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156307,10,'S82.61XJ ','Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156306,10,'S82.61XH ','Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156305,10,'S82.61XG ','Displaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156304,10,'S82.61XF ','Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156303,10,'S82.61XE ','Displaced fracture of lateral malleolus of right fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156302,10,'S82.61XD ','Displaced fracture of lateral malleolus of right fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156301,10,'S82.61XC ','Displaced fracture of lateral malleolus of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156300,10,'S82.61XB ','Displaced fracture of lateral malleolus of right fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156299,10,'S82.61XA ','Displaced fracture of lateral malleolus of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156298,10,'S82.56XS ','Nondisplaced fracture of medial malleolus of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(156297,10,'S82.56XR ','Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156296,10,'S82.56XQ ','Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156295,10,'S82.56XP ','Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156294,10,'S82.56XN ','Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156293,10,'S82.56XM ','Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156292,10,'S82.56XK ','Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156291,10,'S82.56XJ ','Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156290,10,'S82.56XH ','Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156289,10,'S82.56XG ','Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156288,10,'S82.56XF ','Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156287,10,'S82.56XE ','Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156286,10,'S82.56XD ','Nondisplaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156285,10,'S82.56XC ','Nondisplaced fracture of medial malleolus of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156284,10,'S82.56XB ','Nondisplaced fracture of medial malleolus of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156283,10,'S82.56XA ','Nondisplaced fracture of medial malleolus of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156282,10,'S82.55XS ','Nondisplaced fracture of medial malleolus of left tibia, sequela','Y','0000-00-00 00:00:00'),(156281,10,'S82.55XR ','Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156280,10,'S82.55XQ ','Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156279,10,'S82.55XP ','Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156278,10,'S82.55XN ','Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156277,10,'S82.55XM ','Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156276,10,'S82.55XK ','Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156275,10,'S82.55XJ ','Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156274,10,'S82.55XH ','Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156273,10,'S82.55XG ','Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156272,10,'S82.55XF ','Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156271,10,'S82.55XE ','Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156270,10,'S82.55XD ','Nondisplaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156269,10,'S82.55XC ','Nondisplaced fracture of medial malleolus of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156268,10,'S82.55XB ','Nondisplaced fracture of medial malleolus of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156267,10,'S82.55XA ','Nondisplaced fracture of medial malleolus of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156266,10,'S82.54XS ','Nondisplaced fracture of medial malleolus of right tibia, sequela','Y','0000-00-00 00:00:00'),(156265,10,'S82.54XR ','Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156264,10,'S82.54XQ ','Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156263,10,'S82.54XP ','Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156262,10,'S82.54XN ','Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156261,10,'S82.54XM ','Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156260,10,'S82.54XK ','Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156259,10,'S82.54XJ ','Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156258,10,'S82.54XH ','Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156257,10,'S82.54XG ','Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156256,10,'S82.54XF ','Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156255,10,'S82.54XE ','Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156254,10,'S82.54XD ','Nondisplaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156253,10,'S82.54XC ','Nondisplaced fracture of medial malleolus of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156252,10,'S82.54XB ','Nondisplaced fracture of medial malleolus of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156251,10,'S82.54XA ','Nondisplaced fracture of medial malleolus of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156250,10,'S82.53XS ','Displaced fracture of medial malleolus of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(156249,10,'S82.53XR ','Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156248,10,'S82.53XQ ','Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156247,10,'S82.53XP ','Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156246,10,'S82.53XN ','Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156245,10,'S82.53XM ','Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156244,10,'S82.53XK ','Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156243,10,'S82.53XJ ','Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156242,10,'S82.53XH ','Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156241,10,'S82.53XG ','Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156240,10,'S82.53XF ','Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156239,10,'S82.53XE ','Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156238,10,'S82.53XD ','Displaced fracture of medial malleolus of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156237,10,'S82.53XC ','Displaced fracture of medial malleolus of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156236,10,'S82.53XB ','Displaced fracture of medial malleolus of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156235,10,'S82.53XA ','Displaced fracture of medial malleolus of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156234,10,'S82.52XS ','Displaced fracture of medial malleolus of left tibia, sequela','Y','0000-00-00 00:00:00'),(156233,10,'S82.52XR ','Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156232,10,'S82.52XQ ','Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156231,10,'S82.52XP ','Displaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156230,10,'S82.52XN ','Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156229,10,'S82.52XM ','Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156228,10,'S82.52XK ','Displaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156227,10,'S82.52XJ ','Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156226,10,'S82.52XH ','Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156225,10,'S82.52XG ','Displaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156224,10,'S82.52XF ','Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156223,10,'S82.52XE ','Displaced fracture of medial malleolus of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156222,10,'S82.52XD ','Displaced fracture of medial malleolus of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156221,10,'S82.52XC ','Displaced fracture of medial malleolus of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156220,10,'S82.52XB ','Displaced fracture of medial malleolus of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156219,10,'S82.52XA ','Displaced fracture of medial malleolus of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156218,10,'S82.51XS ','Displaced fracture of medial malleolus of right tibia, sequela','Y','0000-00-00 00:00:00'),(156217,10,'S82.51XR ','Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156216,10,'S82.51XQ ','Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156215,10,'S82.51XP ','Displaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156214,10,'S82.51XN ','Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156213,10,'S82.51XM ','Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156212,10,'S82.51XK ','Displaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156211,10,'S82.51XJ ','Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156210,10,'S82.51XH ','Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156209,10,'S82.51XG ','Displaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156208,10,'S82.51XF ','Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156207,10,'S82.51XE ','Displaced fracture of medial malleolus of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156206,10,'S82.51XD ','Displaced fracture of medial malleolus of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156205,10,'S82.51XC ','Displaced fracture of medial malleolus of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156204,10,'S82.51XB ','Displaced fracture of medial malleolus of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156203,10,'S82.51XA ','Displaced fracture of medial malleolus of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156202,10,'S82.499S ','Other fracture of shaft of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(156201,10,'S82.499R ','Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156200,10,'S82.499Q ','Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156199,10,'S82.499P ','Other fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156198,10,'S82.499N ','Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156197,10,'S82.499M ','Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156196,10,'S82.499K ','Other fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156195,10,'S82.499J ','Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156194,10,'S82.499H ','Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156193,10,'S82.499G ','Other fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156192,10,'S82.499F ','Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156191,10,'S82.499E ','Other fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156190,10,'S82.499D ','Other fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156189,10,'S82.499C ','Other fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156188,10,'S82.499B ','Other fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156187,10,'S82.499A ','Other fracture of shaft of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156186,10,'S82.492S ','Other fracture of shaft of left fibula, sequela','Y','0000-00-00 00:00:00'),(156185,10,'S82.492R ','Other fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156184,10,'S82.492Q ','Other fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156183,10,'S82.492P ','Other fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156182,10,'S82.492N ','Other fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156181,10,'S82.492M ','Other fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156180,10,'S82.492K ','Other fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156179,10,'S82.492J ','Other fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156178,10,'S82.492H ','Other fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156177,10,'S82.492G ','Other fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156176,10,'S82.492F ','Other fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156175,10,'S82.492E ','Other fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156174,10,'S82.492D ','Other fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156173,10,'S82.492C ','Other fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156172,10,'S82.492B ','Other fracture of shaft of left fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156171,10,'S82.492A ','Other fracture of shaft of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156170,10,'S82.491S ','Other fracture of shaft of right fibula, sequela','Y','0000-00-00 00:00:00'),(156169,10,'S82.491R ','Other fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156168,10,'S82.491Q ','Other fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156167,10,'S82.491P ','Other fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156166,10,'S82.491N ','Other fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156165,10,'S82.491M ','Other fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156164,10,'S82.491K ','Other fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156163,10,'S82.491J ','Other fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156162,10,'S82.491H ','Other fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156161,10,'S82.491G ','Other fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156160,10,'S82.491F ','Other fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156159,10,'S82.491E ','Other fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156158,10,'S82.491D ','Other fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156157,10,'S82.491C ','Other fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156156,10,'S82.491B ','Other fracture of shaft of right fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156155,10,'S82.491A ','Other fracture of shaft of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156154,10,'S82.466S ','Nondisplaced segmental fracture of shaft of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(156153,10,'S82.466R ','Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156152,10,'S82.466Q ','Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156151,10,'S82.466P ','Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156150,10,'S82.466N ','Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156149,10,'S82.466M ','Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156148,10,'S82.466K ','Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156147,10,'S82.466J ','Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156146,10,'S82.466H ','Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156145,10,'S82.466G ','Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156144,10,'S82.466F ','Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156143,10,'S82.466E ','Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156142,10,'S82.466D ','Nondisplaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156141,10,'S82.466C ','Nondisplaced segmental fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156140,10,'S82.466B ','Nondisplaced segmental fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156139,10,'S82.466A ','Nondisplaced segmental fracture of shaft of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156138,10,'S82.465S ','Nondisplaced segmental fracture of shaft of left fibula, sequela','Y','0000-00-00 00:00:00'),(156137,10,'S82.465R ','Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156136,10,'S82.465Q ','Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156135,10,'S82.465P ','Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156134,10,'S82.465N ','Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156133,10,'S82.465M ','Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156132,10,'S82.465K ','Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156131,10,'S82.465J ','Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156130,10,'S82.465H ','Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156129,10,'S82.465G ','Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156128,10,'S82.465F ','Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156127,10,'S82.465E ','Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156126,10,'S82.465D ','Nondisplaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156125,10,'S82.465C ','Nondisplaced segmental fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156124,10,'S82.465B ','Nondisplaced segmental fracture of shaft of left fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156123,10,'S82.465A ','Nondisplaced segmental fracture of shaft of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156122,10,'S82.464S ','Nondisplaced segmental fracture of shaft of right fibula, sequela','Y','0000-00-00 00:00:00'),(156121,10,'S82.464R ','Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156120,10,'S82.464Q ','Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156119,10,'S82.464P ','Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156118,10,'S82.464N ','Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156117,10,'S82.464M ','Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156116,10,'S82.464K ','Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156115,10,'S82.464J ','Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156114,10,'S82.464H ','Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156113,10,'S82.464G ','Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156112,10,'S82.464F ','Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156111,10,'S82.464E ','Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156110,10,'S82.464D ','Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156109,10,'S82.464C ','Nondisplaced segmental fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156108,10,'S82.464B ','Nondisplaced segmental fracture of shaft of right fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156107,10,'S82.464A ','Nondisplaced segmental fracture of shaft of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156106,10,'S82.463S ','Displaced segmental fracture of shaft of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(156105,10,'S82.463R ','Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156104,10,'S82.463Q ','Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156103,10,'S82.463P ','Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156102,10,'S82.463N ','Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156101,10,'S82.463M ','Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156100,10,'S82.463K ','Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156099,10,'S82.463J ','Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156098,10,'S82.463H ','Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156097,10,'S82.463G ','Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156096,10,'S82.463F ','Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156095,10,'S82.463E ','Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156094,10,'S82.463D ','Displaced segmental fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156093,10,'S82.463C ','Displaced segmental fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156092,10,'S82.463B ','Displaced segmental fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156091,10,'S82.463A ','Displaced segmental fracture of shaft of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156090,10,'S82.462S ','Displaced segmental fracture of shaft of left fibula, sequela','Y','0000-00-00 00:00:00'),(156089,10,'S82.462R ','Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156088,10,'S82.462Q ','Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156087,10,'S82.462P ','Displaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156086,10,'S82.462N ','Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156085,10,'S82.462M ','Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156084,10,'S82.462K ','Displaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156083,10,'S82.462J ','Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156082,10,'S82.462H ','Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156081,10,'S82.462G ','Displaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156080,10,'S82.462F ','Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156079,10,'S82.462E ','Displaced segmental fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156078,10,'S82.462D ','Displaced segmental fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156077,10,'S82.462C ','Displaced segmental fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156076,10,'S82.462B ','Displaced segmental fracture of shaft of left fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156075,10,'S82.462A ','Displaced segmental fracture of shaft of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156074,10,'S82.461S ','Displaced segmental fracture of shaft of right fibula, sequela','Y','0000-00-00 00:00:00'),(156073,10,'S82.461R ','Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156072,10,'S82.461Q ','Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156071,10,'S82.461P ','Displaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156070,10,'S82.461N ','Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156069,10,'S82.461M ','Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156068,10,'S82.461K ','Displaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156067,10,'S82.461J ','Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156066,10,'S82.461H ','Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156065,10,'S82.461G ','Displaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156064,10,'S82.461F ','Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156063,10,'S82.461E ','Displaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156062,10,'S82.461D ','Displaced segmental fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156061,10,'S82.461C ','Displaced segmental fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156060,10,'S82.461B ','Displaced segmental fracture of shaft of right fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156059,10,'S82.461A ','Displaced segmental fracture of shaft of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156058,10,'S82.456S ','Nondisplaced comminuted fracture of shaft of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(156057,10,'S82.456R ','Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156056,10,'S82.456Q ','Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156055,10,'S82.456P ','Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156054,10,'S82.456N ','Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156053,10,'S82.456M ','Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156052,10,'S82.456K ','Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156051,10,'S82.456J ','Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156050,10,'S82.456H ','Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156049,10,'S82.456G ','Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156048,10,'S82.456F ','Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156047,10,'S82.456E ','Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156046,10,'S82.456D ','Nondisplaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156045,10,'S82.456C ','Nondisplaced comminuted fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156044,10,'S82.456B ','Nondisplaced comminuted fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156043,10,'S82.456A ','Nondisplaced comminuted fracture of shaft of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156042,10,'S82.455S ','Nondisplaced comminuted fracture of shaft of left fibula, sequela','Y','0000-00-00 00:00:00'),(156041,10,'S82.455R ','Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156040,10,'S82.455Q ','Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156039,10,'S82.455P ','Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156038,10,'S82.455N ','Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156037,10,'S82.455M ','Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156036,10,'S82.455K ','Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156035,10,'S82.455J ','Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156034,10,'S82.455H ','Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156033,10,'S82.455G ','Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156032,10,'S82.455F ','Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156031,10,'S82.455E ','Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156030,10,'S82.455D ','Nondisplaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156029,10,'S82.455C ','Nondisplaced comminuted fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156028,10,'S82.455B ','Nondisplaced comminuted fracture of shaft of left fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156027,10,'S82.455A ','Nondisplaced comminuted fracture of shaft of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156026,10,'S82.454S ','Nondisplaced comminuted fracture of shaft of right fibula, sequela','Y','0000-00-00 00:00:00'),(156025,10,'S82.454R ','Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156024,10,'S82.454Q ','Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156023,10,'S82.454P ','Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156022,10,'S82.454N ','Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156021,10,'S82.454M ','Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156020,10,'S82.454K ','Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156019,10,'S82.454J ','Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156018,10,'S82.454H ','Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156017,10,'S82.454G ','Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156016,10,'S82.454F ','Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(156015,10,'S82.454E ','Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(156014,10,'S82.454D ','Nondisplaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(156013,10,'S82.454C ','Nondisplaced comminuted fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(156012,10,'S82.454B ','Nondisplaced comminuted fracture of shaft of right fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(156011,10,'S82.454A ','Nondisplaced comminuted fracture of shaft of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(156010,10,'S82.453S ','Displaced comminuted fracture of shaft of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(156009,10,'S82.453R ','Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(156008,10,'S82.453Q ','Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(156007,10,'S82.453P ','Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(156006,10,'S82.453N ','Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(156005,10,'S82.453M ','Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(156004,10,'S82.453K ','Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(156003,10,'S82.453J ','Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(156002,10,'S82.453H ','Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(156001,10,'S82.453G ','Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(156000,10,'S82.453F ','Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155999,10,'S82.453E ','Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155998,10,'S82.453D ','Displaced comminuted fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155997,10,'S82.453C ','Displaced comminuted fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155996,10,'S82.453B ','Displaced comminuted fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155995,10,'S82.453A ','Displaced comminuted fracture of shaft of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155994,10,'S82.452S ','Displaced comminuted fracture of shaft of left fibula, sequela','Y','0000-00-00 00:00:00'),(155993,10,'S82.452R ','Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155992,10,'S82.452Q ','Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155991,10,'S82.452P ','Displaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155990,10,'S82.452N ','Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155989,10,'S82.452M ','Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155988,10,'S82.452K ','Displaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155987,10,'S82.452J ','Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155986,10,'S82.452H ','Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155985,10,'S82.452G ','Displaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155984,10,'S82.452F ','Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155983,10,'S82.452E ','Displaced comminuted fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155982,10,'S82.452D ','Displaced comminuted fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155981,10,'S82.452C ','Displaced comminuted fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155980,10,'S82.452B ','Displaced comminuted fracture of shaft of left fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155979,10,'S82.452A ','Displaced comminuted fracture of shaft of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155978,10,'S82.451S ','Displaced comminuted fracture of shaft of right fibula, sequela','Y','0000-00-00 00:00:00'),(155977,10,'S82.451R ','Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155976,10,'S82.451Q ','Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155975,10,'S82.451P ','Displaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155974,10,'S82.451N ','Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155973,10,'S82.451M ','Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155972,10,'S82.451K ','Displaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155971,10,'S82.451J ','Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155970,10,'S82.451H ','Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155969,10,'S82.451G ','Displaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155968,10,'S82.451F ','Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155967,10,'S82.451E ','Displaced comminuted fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155966,10,'S82.451D ','Displaced comminuted fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155965,10,'S82.451C ','Displaced comminuted fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155964,10,'S82.451B ','Displaced comminuted fracture of shaft of right fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155963,10,'S82.451A ','Displaced comminuted fracture of shaft of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155962,10,'S82.446S ','Nondisplaced spiral fracture of shaft of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(155961,10,'S82.446R ','Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155960,10,'S82.446Q ','Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155959,10,'S82.446P ','Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155958,10,'S82.446N ','Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155957,10,'S82.446M ','Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155956,10,'S82.446K ','Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155955,10,'S82.446J ','Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155954,10,'S82.446H ','Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155953,10,'S82.446G ','Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155952,10,'S82.446F ','Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155951,10,'S82.446E ','Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155950,10,'S82.446D ','Nondisplaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155949,10,'S82.446C ','Nondisplaced spiral fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155948,10,'S82.446B ','Nondisplaced spiral fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155947,10,'S82.446A ','Nondisplaced spiral fracture of shaft of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155946,10,'S82.445S ','Nondisplaced spiral fracture of shaft of left fibula, sequela','Y','0000-00-00 00:00:00'),(155945,10,'S82.445R ','Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155944,10,'S82.445Q ','Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155943,10,'S82.445P ','Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155942,10,'S82.445N ','Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155941,10,'S82.445M ','Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155940,10,'S82.445K ','Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155939,10,'S82.445J ','Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155938,10,'S82.445H ','Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155937,10,'S82.445G ','Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155936,10,'S82.445F ','Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155935,10,'S82.445E ','Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155934,10,'S82.445D ','Nondisplaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155933,10,'S82.445C ','Nondisplaced spiral fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155932,10,'S82.445B ','Nondisplaced spiral fracture of shaft of left fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155931,10,'S82.445A ','Nondisplaced spiral fracture of shaft of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155930,10,'S82.444S ','Nondisplaced spiral fracture of shaft of right fibula, sequela','Y','0000-00-00 00:00:00'),(155929,10,'S82.444R ','Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155928,10,'S82.444Q ','Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155927,10,'S82.444P ','Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155926,10,'S82.444N ','Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155925,10,'S82.444M ','Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155924,10,'S82.444K ','Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155923,10,'S82.444J ','Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155922,10,'S82.444H ','Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155921,10,'S82.444G ','Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155920,10,'S82.444F ','Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155919,10,'S82.444E ','Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155918,10,'S82.444D ','Nondisplaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155917,10,'S82.444C ','Nondisplaced spiral fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155916,10,'S82.444B ','Nondisplaced spiral fracture of shaft of right fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155915,10,'S82.444A ','Nondisplaced spiral fracture of shaft of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155914,10,'S82.443S ','Displaced spiral fracture of shaft of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(155913,10,'S82.443R ','Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155912,10,'S82.443Q ','Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155911,10,'S82.443P ','Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155910,10,'S82.443N ','Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155909,10,'S82.443M ','Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155908,10,'S82.443K ','Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155907,10,'S82.443J ','Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155906,10,'S82.443H ','Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155905,10,'S82.443G ','Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155904,10,'S82.443F ','Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155903,10,'S82.443E ','Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155902,10,'S82.443D ','Displaced spiral fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155901,10,'S82.443C ','Displaced spiral fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155900,10,'S82.443B ','Displaced spiral fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155899,10,'S82.443A ','Displaced spiral fracture of shaft of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155898,10,'S82.442S ','Displaced spiral fracture of shaft of left fibula, sequela','Y','0000-00-00 00:00:00'),(155897,10,'S82.442R ','Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155896,10,'S82.442Q ','Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155895,10,'S82.442P ','Displaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155894,10,'S82.442N ','Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155893,10,'S82.442M ','Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155892,10,'S82.442K ','Displaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155891,10,'S82.442J ','Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155890,10,'S82.442H ','Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155889,10,'S82.442G ','Displaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155888,10,'S82.442F ','Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155887,10,'S82.442E ','Displaced spiral fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155886,10,'S82.442D ','Displaced spiral fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155885,10,'S82.442C ','Displaced spiral fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155884,10,'S82.442B ','Displaced spiral fracture of shaft of left fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155883,10,'S82.442A ','Displaced spiral fracture of shaft of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155882,10,'S82.441S ','Displaced spiral fracture of shaft of right fibula, sequela','Y','0000-00-00 00:00:00'),(155881,10,'S82.441R ','Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155880,10,'S82.441Q ','Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155879,10,'S82.441P ','Displaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155878,10,'S82.441N ','Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155877,10,'S82.441M ','Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155876,10,'S82.441K ','Displaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155875,10,'S82.441J ','Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155874,10,'S82.441H ','Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155873,10,'S82.441G ','Displaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155872,10,'S82.441F ','Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155871,10,'S82.441E ','Displaced spiral fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155870,10,'S82.441D ','Displaced spiral fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155869,10,'S82.441C ','Displaced spiral fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155868,10,'S82.441B ','Displaced spiral fracture of shaft of right fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155867,10,'S82.441A ','Displaced spiral fracture of shaft of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155866,10,'S82.436S ','Nondisplaced oblique fracture of shaft of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(155865,10,'S82.436R ','Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155864,10,'S82.436Q ','Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155863,10,'S82.436P ','Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155862,10,'S82.436N ','Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155861,10,'S82.436M ','Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155860,10,'S82.436K ','Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155859,10,'S82.436J ','Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155858,10,'S82.436H ','Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155857,10,'S82.436G ','Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155856,10,'S82.436F ','Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155855,10,'S82.436E ','Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155854,10,'S82.436D ','Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155853,10,'S82.436C ','Nondisplaced oblique fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155852,10,'S82.436B ','Nondisplaced oblique fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155851,10,'S82.436A ','Nondisplaced oblique fracture of shaft of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155850,10,'S82.435S ','Nondisplaced oblique fracture of shaft of left fibula, sequela','Y','0000-00-00 00:00:00'),(155849,10,'S82.435R ','Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155848,10,'S82.435Q ','Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155847,10,'S82.435P ','Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155846,10,'S82.435N ','Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155845,10,'S82.435M ','Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155844,10,'S82.435K ','Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155843,10,'S82.435J ','Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155842,10,'S82.435H ','Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155841,10,'S82.435G ','Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155840,10,'S82.435F ','Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155839,10,'S82.435E ','Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155838,10,'S82.435D ','Nondisplaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155837,10,'S82.435C ','Nondisplaced oblique fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155836,10,'S82.435B ','Nondisplaced oblique fracture of shaft of left fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155835,10,'S82.435A ','Nondisplaced oblique fracture of shaft of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155834,10,'S82.434S ','Nondisplaced oblique fracture of shaft of right fibula, sequela','Y','0000-00-00 00:00:00'),(155833,10,'S82.434R ','Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155832,10,'S82.434Q ','Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155831,10,'S82.434P ','Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155830,10,'S82.434N ','Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155829,10,'S82.434M ','Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155828,10,'S82.434K ','Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155827,10,'S82.434J ','Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155826,10,'S82.434H ','Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155825,10,'S82.434G ','Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155824,10,'S82.434F ','Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155823,10,'S82.434E ','Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155822,10,'S82.434D ','Nondisplaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155821,10,'S82.434C ','Nondisplaced oblique fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155820,10,'S82.434B ','Nondisplaced oblique fracture of shaft of right fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00');
INSERT INTO `icd` VALUES (155819,10,'S82.434A ','Nondisplaced oblique fracture of shaft of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155818,10,'S82.433S ','Displaced oblique fracture of shaft of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(155817,10,'S82.433R ','Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155816,10,'S82.433Q ','Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155815,10,'S82.433P ','Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155814,10,'S82.433N ','Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155813,10,'S82.433M ','Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155812,10,'S82.433K ','Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155811,10,'S82.433J ','Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155810,10,'S82.433H ','Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155809,10,'S82.433G ','Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155808,10,'S82.433F ','Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155807,10,'S82.433E ','Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155806,10,'S82.433D ','Displaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155805,10,'S82.433C ','Displaced oblique fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155804,10,'S82.433B ','Displaced oblique fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155802,10,'S82.432S ','Displaced oblique fracture of shaft of left fibula, sequela','Y','0000-00-00 00:00:00'),(155803,10,'S82.433A ','Displaced oblique fracture of shaft of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155801,10,'S82.432R ','Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155800,10,'S82.432Q ','Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155799,10,'S82.432P ','Displaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155798,10,'S82.432N ','Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155797,10,'S82.432M ','Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155796,10,'S82.432K ','Displaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155795,10,'S82.432J ','Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155794,10,'S82.432H ','Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155793,10,'S82.432G ','Displaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155792,10,'S82.432F ','Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155791,10,'S82.432E ','Displaced oblique fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155790,10,'S82.432D ','Displaced oblique fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155789,10,'S82.432C ','Displaced oblique fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155788,10,'S82.432B ','Displaced oblique fracture of shaft of left fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155787,10,'S82.432A ','Displaced oblique fracture of shaft of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155786,10,'S82.431S ','Displaced oblique fracture of shaft of right fibula, sequela','Y','0000-00-00 00:00:00'),(155785,10,'S82.431R ','Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155784,10,'S82.431Q ','Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155783,10,'S82.431P ','Displaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155782,10,'S82.431N ','Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155781,10,'S82.431M ','Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155780,10,'S82.431K ','Displaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155779,10,'S82.431J ','Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155778,10,'S82.431H ','Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155777,10,'S82.431G ','Displaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155776,10,'S82.431F ','Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155775,10,'S82.431E ','Displaced oblique fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155774,10,'S82.431D ','Displaced oblique fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155773,10,'S82.431C ','Displaced oblique fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155772,10,'S82.431B ','Displaced oblique fracture of shaft of right fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155771,10,'S82.431A ','Displaced oblique fracture of shaft of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155770,10,'S82.426S ','Nondisplaced transverse fracture of shaft of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(155769,10,'S82.426R ','Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155768,10,'S82.426Q ','Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155767,10,'S82.426P ','Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155766,10,'S82.426N ','Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155765,10,'S82.426M ','Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155764,10,'S82.426K ','Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155763,10,'S82.426J ','Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155762,10,'S82.426H ','Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155761,10,'S82.426G ','Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155760,10,'S82.426F ','Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155759,10,'S82.426E ','Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155758,10,'S82.426D ','Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155757,10,'S82.426C ','Nondisplaced transverse fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155756,10,'S82.426B ','Nondisplaced transverse fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155755,10,'S82.426A ','Nondisplaced transverse fracture of shaft of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155754,10,'S82.425S ','Nondisplaced transverse fracture of shaft of left fibula, sequela','Y','0000-00-00 00:00:00'),(155753,10,'S82.425R ','Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155752,10,'S82.425Q ','Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155751,10,'S82.425P ','Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155750,10,'S82.425N ','Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155749,10,'S82.425M ','Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155748,10,'S82.425K ','Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155747,10,'S82.425J ','Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155746,10,'S82.425H ','Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155745,10,'S82.425G ','Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155744,10,'S82.425F ','Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155743,10,'S82.425E ','Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155742,10,'S82.425D ','Nondisplaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155741,10,'S82.425C ','Nondisplaced transverse fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155740,10,'S82.425B ','Nondisplaced transverse fracture of shaft of left fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155739,10,'S82.425A ','Nondisplaced transverse fracture of shaft of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155738,10,'S82.424S ','Nondisplaced transverse fracture of shaft of right fibula, sequela','Y','0000-00-00 00:00:00'),(155737,10,'S82.424R ','Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155736,10,'S82.424Q ','Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155735,10,'S82.424P ','Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155734,10,'S82.424N ','Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155733,10,'S82.424M ','Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155732,10,'S82.424K ','Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155731,10,'S82.424J ','Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155730,10,'S82.424H ','Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155729,10,'S82.424G ','Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155728,10,'S82.424F ','Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155727,10,'S82.424E ','Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155726,10,'S82.424D ','Nondisplaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155725,10,'S82.424C ','Nondisplaced transverse fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155724,10,'S82.424B ','Nondisplaced transverse fracture of shaft of right fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155723,10,'S82.424A ','Nondisplaced transverse fracture of shaft of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155722,10,'S82.423S ','Displaced transverse fracture of shaft of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(155721,10,'S82.423R ','Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155720,10,'S82.423Q ','Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155719,10,'S82.423P ','Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155718,10,'S82.423N ','Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155717,10,'S82.423M ','Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155716,10,'S82.423K ','Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155715,10,'S82.423J ','Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155714,10,'S82.423H ','Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155713,10,'S82.423G ','Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155712,10,'S82.423F ','Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155711,10,'S82.423E ','Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155710,10,'S82.423D ','Displaced transverse fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155709,10,'S82.423C ','Displaced transverse fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155708,10,'S82.423B ','Displaced transverse fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155707,10,'S82.423A ','Displaced transverse fracture of shaft of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155706,10,'S82.422S ','Displaced transverse fracture of shaft of left fibula, sequela','Y','0000-00-00 00:00:00'),(155705,10,'S82.422R ','Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155704,10,'S82.422Q ','Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155703,10,'S82.422P ','Displaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155702,10,'S82.422N ','Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155701,10,'S82.422M ','Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155700,10,'S82.422K ','Displaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155699,10,'S82.422J ','Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155698,10,'S82.422H ','Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155697,10,'S82.422G ','Displaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155696,10,'S82.422F ','Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155695,10,'S82.422E ','Displaced transverse fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155694,10,'S82.422D ','Displaced transverse fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155693,10,'S82.422C ','Displaced transverse fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155692,10,'S82.422B ','Displaced transverse fracture of shaft of left fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155691,10,'S82.422A ','Displaced transverse fracture of shaft of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155690,10,'S82.421S ','Displaced transverse fracture of shaft of right fibula, sequela','Y','0000-00-00 00:00:00'),(155689,10,'S82.421R ','Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155688,10,'S82.421Q ','Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155687,10,'S82.421P ','Displaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155686,10,'S82.421N ','Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155685,10,'S82.421M ','Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155684,10,'S82.421K ','Displaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155683,10,'S82.421J ','Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155682,10,'S82.421H ','Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155681,10,'S82.421G ','Displaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155680,10,'S82.421F ','Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155679,10,'S82.421E ','Displaced transverse fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155678,10,'S82.421D ','Displaced transverse fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155677,10,'S82.421C ','Displaced transverse fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155676,10,'S82.421B ','Displaced transverse fracture of shaft of right fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155675,10,'S82.421A ','Displaced transverse fracture of shaft of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155674,10,'S82.409S ','Unspecified fracture of shaft of unspecified fibula, sequela','Y','0000-00-00 00:00:00'),(155673,10,'S82.409R ','Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155672,10,'S82.409Q ','Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155671,10,'S82.409P ','Unspecified fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155670,10,'S82.409N ','Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155669,10,'S82.409M ','Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155668,10,'S82.409K ','Unspecified fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155667,10,'S82.409J ','Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155666,10,'S82.409H ','Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155665,10,'S82.409G ','Unspecified fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155664,10,'S82.409F ','Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155663,10,'S82.409E ','Unspecified fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155662,10,'S82.409D ','Unspecified fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155661,10,'S82.409C ','Unspecified fracture of shaft of unspecified fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155660,10,'S82.409B ','Unspecified fracture of shaft of unspecified fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155659,10,'S82.409A ','Unspecified fracture of shaft of unspecified fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155658,10,'S82.402S ','Unspecified fracture of shaft of left fibula, sequela','Y','0000-00-00 00:00:00'),(155657,10,'S82.402R ','Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155656,10,'S82.402Q ','Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155655,10,'S82.402P ','Unspecified fracture of shaft of left fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155654,10,'S82.402N ','Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155653,10,'S82.402M ','Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155652,10,'S82.402K ','Unspecified fracture of shaft of left fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155651,10,'S82.402J ','Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155650,10,'S82.402H ','Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155649,10,'S82.402G ','Unspecified fracture of shaft of left fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155648,10,'S82.402F ','Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155647,10,'S82.402E ','Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155646,10,'S82.402D ','Unspecified fracture of shaft of left fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155645,10,'S82.402C ','Unspecified fracture of shaft of left fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155644,10,'S82.402B ','Unspecified fracture of shaft of left fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155643,10,'S82.402A ','Unspecified fracture of shaft of left fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155642,10,'S82.401S ','Unspecified fracture of shaft of right fibula, sequela','Y','0000-00-00 00:00:00'),(155641,10,'S82.401R ','Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155640,10,'S82.401Q ','Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155639,10,'S82.401P ','Unspecified fracture of shaft of right fibula, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155638,10,'S82.401N ','Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155637,10,'S82.401M ','Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155636,10,'S82.401K ','Unspecified fracture of shaft of right fibula, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155635,10,'S82.401J ','Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155634,10,'S82.401H ','Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155633,10,'S82.401G ','Unspecified fracture of shaft of right fibula, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155632,10,'S82.401F ','Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155631,10,'S82.401E ','Unspecified fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155630,10,'S82.401D ','Unspecified fracture of shaft of right fibula, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155629,10,'S82.401C ','Unspecified fracture of shaft of right fibula, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155628,10,'S82.401B ','Unspecified fracture of shaft of right fibula, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155627,10,'S82.401A ','Unspecified fracture of shaft of right fibula, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155626,10,'S82.399S ','Other fracture of lower end of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(155625,10,'S82.399R ','Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155624,10,'S82.399Q ','Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155623,10,'S82.399P ','Other fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155622,10,'S82.399N ','Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155621,10,'S82.399M ','Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155620,10,'S82.399K ','Other fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155619,10,'S82.399J ','Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155618,10,'S82.399H ','Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155617,10,'S82.399G ','Other fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155616,10,'S82.399F ','Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155615,10,'S82.399E ','Other fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155614,10,'S82.399D ','Other fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155613,10,'S82.399C ','Other fracture of lower end of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155612,10,'S82.399B ','Other fracture of lower end of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155611,10,'S82.399A ','Other fracture of lower end of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155610,10,'S82.392S ','Other fracture of lower end of left tibia, sequela','Y','0000-00-00 00:00:00'),(155609,10,'S82.392R ','Other fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155608,10,'S82.392Q ','Other fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155607,10,'S82.392P ','Other fracture of lower end of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155606,10,'S82.392N ','Other fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155605,10,'S82.392M ','Other fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155604,10,'S82.392K ','Other fracture of lower end of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155603,10,'S82.392J ','Other fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155602,10,'S82.392H ','Other fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155601,10,'S82.392G ','Other fracture of lower end of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155600,10,'S82.392F ','Other fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155599,10,'S82.392E ','Other fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155598,10,'S82.392D ','Other fracture of lower end of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155597,10,'S82.392C ','Other fracture of lower end of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155596,10,'S82.392B ','Other fracture of lower end of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155595,10,'S82.392A ','Other fracture of lower end of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155594,10,'S82.391S ','Other fracture of lower end of right tibia, sequela','Y','0000-00-00 00:00:00'),(155593,10,'S82.391R ','Other fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155592,10,'S82.391Q ','Other fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155591,10,'S82.391P ','Other fracture of lower end of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155590,10,'S82.391N ','Other fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155589,10,'S82.391M ','Other fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155588,10,'S82.391K ','Other fracture of lower end of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155587,10,'S82.391J ','Other fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155586,10,'S82.391H ','Other fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155585,10,'S82.391G ','Other fracture of lower end of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155584,10,'S82.391F ','Other fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155583,10,'S82.391E ','Other fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155582,10,'S82.391D ','Other fracture of lower end of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155581,10,'S82.391C ','Other fracture of lower end of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155580,10,'S82.391B ','Other fracture of lower end of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155579,10,'S82.391A ','Other fracture of lower end of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155578,10,'S82.319S ','Torus fracture of lower end of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(155577,10,'S82.319P ','Torus fracture of lower end of unspecified tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(155576,10,'S82.319K ','Torus fracture of lower end of unspecified tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(155575,10,'S82.319G ','Torus fracture of lower end of unspecified tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(155574,10,'S82.319D ','Torus fracture of lower end of unspecified tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(155573,10,'S82.319A ','Torus fracture of lower end of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155572,10,'S82.312S ','Torus fracture of lower end of left tibia, sequela','Y','0000-00-00 00:00:00'),(155571,10,'S82.312P ','Torus fracture of lower end of left tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(155570,10,'S82.312K ','Torus fracture of lower end of left tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(155569,10,'S82.312G ','Torus fracture of lower end of left tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(155568,10,'S82.312D ','Torus fracture of lower end of left tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(155567,10,'S82.312A ','Torus fracture of lower end of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155566,10,'S82.311S ','Torus fracture of lower end of right tibia, sequela','Y','0000-00-00 00:00:00'),(155565,10,'S82.311P ','Torus fracture of lower end of right tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(155564,10,'S82.311K ','Torus fracture of lower end of right tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(155563,10,'S82.311G ','Torus fracture of lower end of right tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(155562,10,'S82.311D ','Torus fracture of lower end of right tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(155561,10,'S82.311A ','Torus fracture of lower end of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155560,10,'S82.309S ','Unspecified fracture of lower end of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(155559,10,'S82.309R ','Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155558,10,'S82.309Q ','Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155557,10,'S82.309P ','Unspecified fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155556,10,'S82.309N ','Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155555,10,'S82.309M ','Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155554,10,'S82.309K ','Unspecified fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155553,10,'S82.309J ','Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155552,10,'S82.309H ','Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155551,10,'S82.309G ','Unspecified fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155550,10,'S82.309F ','Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155549,10,'S82.309E ','Unspecified fracture of lower end of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155548,10,'S82.309D ','Unspecified fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155547,10,'S82.309C ','Unspecified fracture of lower end of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155546,10,'S82.309B ','Unspecified fracture of lower end of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155545,10,'S82.309A ','Unspecified fracture of lower end of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155544,10,'S82.302S ','Unspecified fracture of lower end of left tibia, sequela','Y','0000-00-00 00:00:00'),(155543,10,'S82.302R ','Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155542,10,'S82.302Q ','Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155541,10,'S82.302P ','Unspecified fracture of lower end of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155540,10,'S82.302N ','Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155539,10,'S82.302M ','Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155538,10,'S82.302K ','Unspecified fracture of lower end of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155537,10,'S82.302J ','Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155536,10,'S82.302H ','Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155535,10,'S82.302G ','Unspecified fracture of lower end of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155534,10,'S82.302F ','Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155533,10,'S82.302E ','Unspecified fracture of lower end of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155532,10,'S82.302D ','Unspecified fracture of lower end of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155531,10,'S82.302C ','Unspecified fracture of lower end of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155530,10,'S82.302B ','Unspecified fracture of lower end of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155529,10,'S82.302A ','Unspecified fracture of lower end of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155528,10,'S82.301S ','Unspecified fracture of lower end of right tibia, sequela','Y','0000-00-00 00:00:00'),(155527,10,'S82.301R ','Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155526,10,'S82.301Q ','Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155525,10,'S82.301P ','Unspecified fracture of lower end of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155524,10,'S82.301N ','Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155523,10,'S82.301M ','Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155522,10,'S82.301K ','Unspecified fracture of lower end of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155521,10,'S82.301J ','Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155520,10,'S82.301H ','Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155519,10,'S82.301G ','Unspecified fracture of lower end of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155518,10,'S82.301F ','Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155517,10,'S82.301E ','Unspecified fracture of lower end of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155516,10,'S82.301D ','Unspecified fracture of lower end of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155515,10,'S82.301C ','Unspecified fracture of lower end of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155514,10,'S82.301B ','Unspecified fracture of lower end of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155513,10,'S82.301A ','Unspecified fracture of lower end of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155512,10,'S82.299S ','Other fracture of shaft of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(155511,10,'S82.299R ','Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155510,10,'S82.299Q ','Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155509,10,'S82.299P ','Other fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155508,10,'S82.299N ','Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155507,10,'S82.299M ','Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155506,10,'S82.299K ','Other fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155505,10,'S82.299J ','Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155504,10,'S82.299H ','Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155503,10,'S82.299G ','Other fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155502,10,'S82.299F ','Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155501,10,'S82.299E ','Other fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155500,10,'S82.299D ','Other fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155499,10,'S82.299C ','Other fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155498,10,'S82.299B ','Other fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155497,10,'S82.299A ','Other fracture of shaft of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155496,10,'S82.292S ','Other fracture of shaft of left tibia, sequela','Y','0000-00-00 00:00:00'),(155495,10,'S82.292R ','Other fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155494,10,'S82.292Q ','Other fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155493,10,'S82.292P ','Other fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155492,10,'S82.292N ','Other fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155491,10,'S82.292M ','Other fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155490,10,'S82.292K ','Other fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155489,10,'S82.292J ','Other fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155488,10,'S82.292H ','Other fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155487,10,'S82.292G ','Other fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155486,10,'S82.292F ','Other fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155485,10,'S82.292E ','Other fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155484,10,'S82.292D ','Other fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155483,10,'S82.292C ','Other fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155482,10,'S82.292B ','Other fracture of shaft of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155481,10,'S82.292A ','Other fracture of shaft of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155480,10,'S82.291S ','Other fracture of shaft of right tibia, sequela','Y','0000-00-00 00:00:00'),(155479,10,'S82.291R ','Other fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155478,10,'S82.291Q ','Other fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155477,10,'S82.291P ','Other fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155476,10,'S82.291N ','Other fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155475,10,'S82.291M ','Other fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155474,10,'S82.291K ','Other fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155473,10,'S82.291J ','Other fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155472,10,'S82.291H ','Other fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155471,10,'S82.291G ','Other fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155470,10,'S82.291F ','Other fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155469,10,'S82.291E ','Other fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155468,10,'S82.291D ','Other fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155467,10,'S82.291C ','Other fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155466,10,'S82.291B ','Other fracture of shaft of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155465,10,'S82.291A ','Other fracture of shaft of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155464,10,'S82.266S ','Nondisplaced segmental fracture of shaft of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(155463,10,'S82.266R ','Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155462,10,'S82.266Q ','Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155461,10,'S82.266P ','Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155460,10,'S82.266N ','Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155459,10,'S82.266M ','Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155458,10,'S82.266K ','Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155457,10,'S82.266J ','Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155456,10,'S82.266H ','Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155455,10,'S82.266G ','Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155454,10,'S82.266F ','Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155453,10,'S82.266E ','Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155452,10,'S82.266D ','Nondisplaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155451,10,'S82.266C ','Nondisplaced segmental fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155450,10,'S82.266B ','Nondisplaced segmental fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155449,10,'S82.266A ','Nondisplaced segmental fracture of shaft of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155448,10,'S82.265S ','Nondisplaced segmental fracture of shaft of left tibia, sequela','Y','0000-00-00 00:00:00'),(155447,10,'S82.265R ','Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155446,10,'S82.265Q ','Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155445,10,'S82.265P ','Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155444,10,'S82.265N ','Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155443,10,'S82.265M ','Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155442,10,'S82.265K ','Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155441,10,'S82.265J ','Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155440,10,'S82.265H ','Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155439,10,'S82.265G ','Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155438,10,'S82.265F ','Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155437,10,'S82.265E ','Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155436,10,'S82.265D ','Nondisplaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155435,10,'S82.265C ','Nondisplaced segmental fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155434,10,'S82.265B ','Nondisplaced segmental fracture of shaft of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155433,10,'S82.265A ','Nondisplaced segmental fracture of shaft of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155432,10,'S82.264S ','Nondisplaced segmental fracture of shaft of right tibia, sequela','Y','0000-00-00 00:00:00'),(155431,10,'S82.264R ','Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155430,10,'S82.264Q ','Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155429,10,'S82.264P ','Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155428,10,'S82.264N ','Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155427,10,'S82.264M ','Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155426,10,'S82.264K ','Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155425,10,'S82.264J ','Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155424,10,'S82.264H ','Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155423,10,'S82.264G ','Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155422,10,'S82.264F ','Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155421,10,'S82.264E ','Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155420,10,'S82.264D ','Nondisplaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155419,10,'S82.264C ','Nondisplaced segmental fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155418,10,'S82.264B ','Nondisplaced segmental fracture of shaft of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155417,10,'S82.264A ','Nondisplaced segmental fracture of shaft of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155416,10,'S82.263S ','Displaced segmental fracture of shaft of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(155415,10,'S82.263R ','Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155414,10,'S82.263Q ','Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155413,10,'S82.263P ','Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155412,10,'S82.263N ','Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155411,10,'S82.263M ','Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155410,10,'S82.263K ','Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155409,10,'S82.263J ','Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155408,10,'S82.263H ','Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155407,10,'S82.263G ','Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155406,10,'S82.263F ','Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155405,10,'S82.263E ','Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155404,10,'S82.263D ','Displaced segmental fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155403,10,'S82.263C ','Displaced segmental fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155402,10,'S82.263B ','Displaced segmental fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155401,10,'S82.263A ','Displaced segmental fracture of shaft of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155400,10,'S82.262S ','Displaced segmental fracture of shaft of left tibia, sequela','Y','0000-00-00 00:00:00'),(155399,10,'S82.262R ','Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155398,10,'S82.262Q ','Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155397,10,'S82.262P ','Displaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155396,10,'S82.262N ','Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155395,10,'S82.262M ','Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155394,10,'S82.262K ','Displaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155393,10,'S82.262J ','Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155392,10,'S82.262H ','Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155391,10,'S82.262G ','Displaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155390,10,'S82.262F ','Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155389,10,'S82.262E ','Displaced segmental fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155388,10,'S82.262D ','Displaced segmental fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155387,10,'S82.262C ','Displaced segmental fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155386,10,'S82.262B ','Displaced segmental fracture of shaft of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155385,10,'S82.262A ','Displaced segmental fracture of shaft of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155384,10,'S82.261S ','Displaced segmental fracture of shaft of right tibia, sequela','Y','0000-00-00 00:00:00'),(155383,10,'S82.261R ','Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155382,10,'S82.261Q ','Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155381,10,'S82.261P ','Displaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155380,10,'S82.261N ','Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155379,10,'S82.261M ','Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155378,10,'S82.261K ','Displaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155377,10,'S82.261J ','Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155376,10,'S82.261H ','Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155375,10,'S82.261G ','Displaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155374,10,'S82.261F ','Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155373,10,'S82.261E ','Displaced segmental fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155372,10,'S82.261D ','Displaced segmental fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155371,10,'S82.261C ','Displaced segmental fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155370,10,'S82.261B ','Displaced segmental fracture of shaft of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155369,10,'S82.261A ','Displaced segmental fracture of shaft of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155368,10,'S82.256S ','Nondisplaced comminuted fracture of shaft of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(155367,10,'S82.256R ','Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155366,10,'S82.256Q ','Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155365,10,'S82.256P ','Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155364,10,'S82.256N ','Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155363,10,'S82.256M ','Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155362,10,'S82.256K ','Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155361,10,'S82.256J ','Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155360,10,'S82.256H ','Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155359,10,'S82.256G ','Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155358,10,'S82.256F ','Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155357,10,'S82.256E ','Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155356,10,'S82.256D ','Nondisplaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155355,10,'S82.256C ','Nondisplaced comminuted fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155354,10,'S82.256B ','Nondisplaced comminuted fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155353,10,'S82.256A ','Nondisplaced comminuted fracture of shaft of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155352,10,'S82.255S ','Nondisplaced comminuted fracture of shaft of left tibia, sequela','Y','0000-00-00 00:00:00'),(155351,10,'S82.255R ','Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155350,10,'S82.255Q ','Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155349,10,'S82.255P ','Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155348,10,'S82.255N ','Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155347,10,'S82.255M ','Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155346,10,'S82.255K ','Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155345,10,'S82.255J ','Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155344,10,'S82.255H ','Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155343,10,'S82.255G ','Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155342,10,'S82.255F ','Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155341,10,'S82.255E ','Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155340,10,'S82.255D ','Nondisplaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155339,10,'S82.255C ','Nondisplaced comminuted fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155338,10,'S82.255B ','Nondisplaced comminuted fracture of shaft of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155337,10,'S82.255A ','Nondisplaced comminuted fracture of shaft of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155336,10,'S82.254S ','Nondisplaced comminuted fracture of shaft of right tibia, sequela','Y','0000-00-00 00:00:00'),(155335,10,'S82.254R ','Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155334,10,'S82.254Q ','Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155333,10,'S82.254P ','Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155332,10,'S82.254N ','Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155331,10,'S82.254M ','Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155330,10,'S82.254K ','Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155329,10,'S82.254J ','Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155328,10,'S82.254H ','Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155327,10,'S82.254G ','Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155326,10,'S82.254F ','Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155325,10,'S82.254E ','Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155324,10,'S82.254D ','Nondisplaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155323,10,'S82.254C ','Nondisplaced comminuted fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155322,10,'S82.254B ','Nondisplaced comminuted fracture of shaft of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155321,10,'S82.254A ','Nondisplaced comminuted fracture of shaft of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155320,10,'S82.253S ','Displaced comminuted fracture of shaft of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(155319,10,'S82.253R ','Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155318,10,'S82.253Q ','Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155317,10,'S82.253P ','Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155316,10,'S82.253N ','Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155315,10,'S82.253M ','Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155314,10,'S82.253K ','Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155313,10,'S82.253J ','Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155312,10,'S82.253H ','Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155311,10,'S82.253G ','Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155310,10,'S82.253F ','Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155309,10,'S82.253E ','Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155308,10,'S82.253D ','Displaced comminuted fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155307,10,'S82.253C ','Displaced comminuted fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155306,10,'S82.253B ','Displaced comminuted fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155305,10,'S82.253A ','Displaced comminuted fracture of shaft of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155304,10,'S82.252S ','Displaced comminuted fracture of shaft of left tibia, sequela','Y','0000-00-00 00:00:00'),(155303,10,'S82.252R ','Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155302,10,'S82.252Q ','Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155301,10,'S82.252P ','Displaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155300,10,'S82.252N ','Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155299,10,'S82.252M ','Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155298,10,'S82.252K ','Displaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155297,10,'S82.252J ','Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155296,10,'S82.252H ','Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155295,10,'S82.252G ','Displaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155294,10,'S82.252F ','Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155293,10,'S82.252E ','Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155292,10,'S82.252D ','Displaced comminuted fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155291,10,'S82.252C ','Displaced comminuted fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155290,10,'S82.252B ','Displaced comminuted fracture of shaft of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155289,10,'S82.252A ','Displaced comminuted fracture of shaft of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155288,10,'S82.251S ','Displaced comminuted fracture of shaft of right tibia, sequela','Y','0000-00-00 00:00:00'),(155287,10,'S82.251R ','Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155286,10,'S82.251Q ','Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155285,10,'S82.251P ','Displaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155284,10,'S82.251N ','Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155283,10,'S82.251M ','Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155282,10,'S82.251K ','Displaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155281,10,'S82.251J ','Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155280,10,'S82.251H ','Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155279,10,'S82.251G ','Displaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155278,10,'S82.251F ','Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155277,10,'S82.251E ','Displaced comminuted fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155276,10,'S82.251D ','Displaced comminuted fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155275,10,'S82.251C ','Displaced comminuted fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155274,10,'S82.251B ','Displaced comminuted fracture of shaft of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155273,10,'S82.251A ','Displaced comminuted fracture of shaft of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155272,10,'S82.246S ','Nondisplaced spiral fracture of shaft of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(155271,10,'S82.246R ','Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155270,10,'S82.246Q ','Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155269,10,'S82.246P ','Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155268,10,'S82.246N ','Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155267,10,'S82.246M ','Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155266,10,'S82.246K ','Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155265,10,'S82.246J ','Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155264,10,'S82.246H ','Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155263,10,'S82.246G ','Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155262,10,'S82.246F ','Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155261,10,'S82.246E ','Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155260,10,'S82.246D ','Nondisplaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155259,10,'S82.246C ','Nondisplaced spiral fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155258,10,'S82.246B ','Nondisplaced spiral fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155256,10,'S82.245S ','Nondisplaced spiral fracture of shaft of left tibia, sequela','Y','0000-00-00 00:00:00'),(155257,10,'S82.246A ','Nondisplaced spiral fracture of shaft of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155255,10,'S82.245R ','Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155254,10,'S82.245Q ','Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155253,10,'S82.245P ','Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155252,10,'S82.245N ','Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155251,10,'S82.245M ','Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155250,10,'S82.245K ','Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155249,10,'S82.245J ','Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155248,10,'S82.245H ','Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155247,10,'S82.245G ','Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155246,10,'S82.245F ','Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155245,10,'S82.245E ','Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155244,10,'S82.245D ','Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155243,10,'S82.245C ','Nondisplaced spiral fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155242,10,'S82.245B ','Nondisplaced spiral fracture of shaft of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155240,10,'S82.244S ','Nondisplaced spiral fracture of shaft of right tibia, sequela','Y','0000-00-00 00:00:00'),(155241,10,'S82.245A ','Nondisplaced spiral fracture of shaft of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155239,10,'S82.244R ','Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155238,10,'S82.244Q ','Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155237,10,'S82.244P ','Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155236,10,'S82.244N ','Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155235,10,'S82.244M ','Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155234,10,'S82.244K ','Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155233,10,'S82.244J ','Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155232,10,'S82.244H ','Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155231,10,'S82.244G ','Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155230,10,'S82.244F ','Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155229,10,'S82.244E ','Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155228,10,'S82.244D ','Nondisplaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155227,10,'S82.244C ','Nondisplaced spiral fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155226,10,'S82.244B ','Nondisplaced spiral fracture of shaft of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155224,10,'S82.243S ','Displaced spiral fracture of shaft of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(155225,10,'S82.244A ','Nondisplaced spiral fracture of shaft of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155223,10,'S82.243R ','Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155222,10,'S82.243Q ','Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155221,10,'S82.243P ','Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155220,10,'S82.243N ','Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155219,10,'S82.243M ','Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155218,10,'S82.243K ','Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155217,10,'S82.243J ','Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155216,10,'S82.243H ','Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155215,10,'S82.243G ','Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155214,10,'S82.243F ','Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155213,10,'S82.243E ','Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155212,10,'S82.243D ','Displaced spiral fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155211,10,'S82.243C ','Displaced spiral fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155210,10,'S82.243B ','Displaced spiral fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155209,10,'S82.243A ','Displaced spiral fracture of shaft of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155208,10,'S82.242S ','Displaced spiral fracture of shaft of left tibia, sequela','Y','0000-00-00 00:00:00'),(155207,10,'S82.242R ','Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155206,10,'S82.242Q ','Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155205,10,'S82.242P ','Displaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155204,10,'S82.242N ','Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155203,10,'S82.242M ','Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155202,10,'S82.242K ','Displaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155201,10,'S82.242J ','Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155200,10,'S82.242H ','Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155199,10,'S82.242G ','Displaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155198,10,'S82.242F ','Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155197,10,'S82.242E ','Displaced spiral fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155196,10,'S82.242D ','Displaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155195,10,'S82.242C ','Displaced spiral fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155194,10,'S82.242B ','Displaced spiral fracture of shaft of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155193,10,'S82.242A ','Displaced spiral fracture of shaft of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155192,10,'S82.241S ','Displaced spiral fracture of shaft of right tibia, sequela','Y','0000-00-00 00:00:00'),(155191,10,'S82.241R ','Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155190,10,'S82.241Q ','Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155189,10,'S82.241P ','Displaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155188,10,'S82.241N ','Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155187,10,'S82.241M ','Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155186,10,'S82.241K ','Displaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155185,10,'S82.241J ','Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155184,10,'S82.241H ','Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155183,10,'S82.241G ','Displaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155182,10,'S82.241F ','Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155181,10,'S82.241E ','Displaced spiral fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155180,10,'S82.241D ','Displaced spiral fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155179,10,'S82.241C ','Displaced spiral fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155178,10,'S82.241B ','Displaced spiral fracture of shaft of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155176,10,'S82.236S ','Nondisplaced oblique fracture of shaft of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(155177,10,'S82.241A ','Displaced spiral fracture of shaft of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155175,10,'S82.236R ','Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155174,10,'S82.236Q ','Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155173,10,'S82.236P ','Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155172,10,'S82.236N ','Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155171,10,'S82.236M ','Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155170,10,'S82.236K ','Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155169,10,'S82.236J ','Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155168,10,'S82.236H ','Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155167,10,'S82.236G ','Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155166,10,'S82.236F ','Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155165,10,'S82.236E ','Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155164,10,'S82.236D ','Nondisplaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155163,10,'S82.236C ','Nondisplaced oblique fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155162,10,'S82.236B ','Nondisplaced oblique fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155160,10,'S82.235S ','Nondisplaced oblique fracture of shaft of left tibia, sequela','Y','0000-00-00 00:00:00'),(155161,10,'S82.236A ','Nondisplaced oblique fracture of shaft of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155159,10,'S82.235R ','Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155158,10,'S82.235Q ','Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155157,10,'S82.235P ','Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155156,10,'S82.235N ','Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155155,10,'S82.235M ','Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155154,10,'S82.235K ','Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155153,10,'S82.235J ','Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155152,10,'S82.235H ','Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155151,10,'S82.235G ','Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155150,10,'S82.235F ','Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155149,10,'S82.235E ','Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155148,10,'S82.235D ','Nondisplaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155147,10,'S82.235C ','Nondisplaced oblique fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155146,10,'S82.235B ','Nondisplaced oblique fracture of shaft of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155145,10,'S82.235A ','Nondisplaced oblique fracture of shaft of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155144,10,'S82.234S ','Nondisplaced oblique fracture of shaft of right tibia, sequela','Y','0000-00-00 00:00:00'),(155143,10,'S82.234R ','Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155142,10,'S82.234Q ','Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155141,10,'S82.234P ','Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155140,10,'S82.234N ','Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155139,10,'S82.234M ','Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155138,10,'S82.234K ','Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155137,10,'S82.234J ','Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155136,10,'S82.234H ','Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155135,10,'S82.234G ','Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155134,10,'S82.234F ','Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155133,10,'S82.234E ','Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155132,10,'S82.234D ','Nondisplaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155131,10,'S82.234C ','Nondisplaced oblique fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155130,10,'S82.234B ','Nondisplaced oblique fracture of shaft of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155129,10,'S82.234A ','Nondisplaced oblique fracture of shaft of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155128,10,'S82.233S ','Displaced oblique fracture of shaft of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(155127,10,'S82.233R ','Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155126,10,'S82.233Q ','Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155125,10,'S82.233P ','Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155124,10,'S82.233N ','Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155123,10,'S82.233M ','Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155122,10,'S82.233K ','Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155121,10,'S82.233J ','Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155120,10,'S82.233H ','Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155119,10,'S82.233G ','Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155118,10,'S82.233F ','Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155117,10,'S82.233E ','Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155116,10,'S82.233D ','Displaced oblique fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155115,10,'S82.233C ','Displaced oblique fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155114,10,'S82.233B ','Displaced oblique fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155112,10,'S82.232S ','Displaced oblique fracture of shaft of left tibia, sequela','Y','0000-00-00 00:00:00'),(155113,10,'S82.233A ','Displaced oblique fracture of shaft of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155111,10,'S82.232R ','Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155110,10,'S82.232Q ','Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155109,10,'S82.232P ','Displaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155108,10,'S82.232N ','Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155107,10,'S82.232M ','Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155106,10,'S82.232K ','Displaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155105,10,'S82.232J ','Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155104,10,'S82.232H ','Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155103,10,'S82.232G ','Displaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155102,10,'S82.232F ','Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155101,10,'S82.232E ','Displaced oblique fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155100,10,'S82.232D ','Displaced oblique fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155099,10,'S82.232C ','Displaced oblique fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155098,10,'S82.232B ','Displaced oblique fracture of shaft of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155097,10,'S82.232A ','Displaced oblique fracture of shaft of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155096,10,'S82.231S ','Displaced oblique fracture of shaft of right tibia, sequela','Y','0000-00-00 00:00:00'),(155095,10,'S82.231R ','Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155094,10,'S82.231Q ','Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155093,10,'S82.231P ','Displaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155092,10,'S82.231N ','Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155091,10,'S82.231M ','Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155090,10,'S82.231K ','Displaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155089,10,'S82.231J ','Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155088,10,'S82.231H ','Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155087,10,'S82.231G ','Displaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155086,10,'S82.231F ','Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155085,10,'S82.231E ','Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155084,10,'S82.231D ','Displaced oblique fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155083,10,'S82.231C ','Displaced oblique fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155082,10,'S82.231B ','Displaced oblique fracture of shaft of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155081,10,'S82.231A ','Displaced oblique fracture of shaft of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155080,10,'S82.226S ','Nondisplaced transverse fracture of shaft of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(155079,10,'S82.226R ','Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155078,10,'S82.226Q ','Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155077,10,'S82.226P ','Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155076,10,'S82.226N ','Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155075,10,'S82.226M ','Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155074,10,'S82.226K ','Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155073,10,'S82.226J ','Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155072,10,'S82.226H ','Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155071,10,'S82.226G ','Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155070,10,'S82.226F ','Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155069,10,'S82.226E ','Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155068,10,'S82.226D ','Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155067,10,'S82.226C ','Nondisplaced transverse fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155066,10,'S82.226B ','Nondisplaced transverse fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155064,10,'S82.225S ','Nondisplaced transverse fracture of shaft of left tibia, sequela','Y','0000-00-00 00:00:00'),(155065,10,'S82.226A ','Nondisplaced transverse fracture of shaft of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155063,10,'S82.225R ','Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155062,10,'S82.225Q ','Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155061,10,'S82.225P ','Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155060,10,'S82.225N ','Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155059,10,'S82.225M ','Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155058,10,'S82.225K ','Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155057,10,'S82.225J ','Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155056,10,'S82.225H ','Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155055,10,'S82.225G ','Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155054,10,'S82.225F ','Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155053,10,'S82.225E ','Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155052,10,'S82.225D ','Nondisplaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155051,10,'S82.225C ','Nondisplaced transverse fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155050,10,'S82.225B ','Nondisplaced transverse fracture of shaft of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155049,10,'S82.225A ','Nondisplaced transverse fracture of shaft of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155048,10,'S82.224S ','Nondisplaced transverse fracture of shaft of right tibia, sequela','Y','0000-00-00 00:00:00'),(155047,10,'S82.224R ','Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155046,10,'S82.224Q ','Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155045,10,'S82.224P ','Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155044,10,'S82.224N ','Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155043,10,'S82.224M ','Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155042,10,'S82.224K ','Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155041,10,'S82.224J ','Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155040,10,'S82.224H ','Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155039,10,'S82.224G ','Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155038,10,'S82.224F ','Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155037,10,'S82.224E ','Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155036,10,'S82.224D ','Nondisplaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155035,10,'S82.224C ','Nondisplaced transverse fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155034,10,'S82.224B ','Nondisplaced transverse fracture of shaft of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155033,10,'S82.224A ','Nondisplaced transverse fracture of shaft of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155032,10,'S82.223S ','Displaced transverse fracture of shaft of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(155031,10,'S82.223R ','Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155030,10,'S82.223Q ','Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155029,10,'S82.223P ','Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155028,10,'S82.223N ','Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155027,10,'S82.223M ','Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155026,10,'S82.223K ','Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155025,10,'S82.223J ','Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155024,10,'S82.223H ','Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155023,10,'S82.223G ','Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155022,10,'S82.223F ','Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155021,10,'S82.223E ','Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155020,10,'S82.223D ','Displaced transverse fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155019,10,'S82.223C ','Displaced transverse fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155018,10,'S82.223B ','Displaced transverse fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155017,10,'S82.223A ','Displaced transverse fracture of shaft of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155016,10,'S82.222S ','Displaced transverse fracture of shaft of left tibia, sequela','Y','0000-00-00 00:00:00'),(155015,10,'S82.222R ','Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(155014,10,'S82.222Q ','Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(155013,10,'S82.222P ','Displaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(155012,10,'S82.222N ','Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(155011,10,'S82.222M ','Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(155010,10,'S82.222K ','Displaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(155009,10,'S82.222J ','Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(155008,10,'S82.222H ','Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(155007,10,'S82.222G ','Displaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(155006,10,'S82.222F ','Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(155005,10,'S82.222E ','Displaced transverse fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(155004,10,'S82.222D ','Displaced transverse fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(155003,10,'S82.222C ','Displaced transverse fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(155002,10,'S82.222B ','Displaced transverse fracture of shaft of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(155001,10,'S82.222A ','Displaced transverse fracture of shaft of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(155000,10,'S82.221S ','Displaced transverse fracture of shaft of right tibia, sequela','Y','0000-00-00 00:00:00'),(154999,10,'S82.221R ','Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154998,10,'S82.221Q ','Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154997,10,'S82.221P ','Displaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154996,10,'S82.221N ','Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154995,10,'S82.221M ','Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154994,10,'S82.221K ','Displaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154993,10,'S82.221J ','Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154992,10,'S82.221H ','Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154991,10,'S82.221G ','Displaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154990,10,'S82.221F ','Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154989,10,'S82.221E ','Displaced transverse fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154988,10,'S82.221D ','Displaced transverse fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154987,10,'S82.221C ','Displaced transverse fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154986,10,'S82.221B ','Displaced transverse fracture of shaft of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154985,10,'S82.221A ','Displaced transverse fracture of shaft of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154984,10,'S82.209S ','Unspecified fracture of shaft of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(154983,10,'S82.209R ','Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154982,10,'S82.209Q ','Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154981,10,'S82.209P ','Unspecified fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154980,10,'S82.209N ','Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154979,10,'S82.209M ','Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154978,10,'S82.209K ','Unspecified fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154977,10,'S82.209J ','Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154976,10,'S82.209H ','Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154975,10,'S82.209G ','Unspecified fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154974,10,'S82.209F ','Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154973,10,'S82.209E ','Unspecified fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154972,10,'S82.209D ','Unspecified fracture of shaft of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154971,10,'S82.209C ','Unspecified fracture of shaft of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154970,10,'S82.209B ','Unspecified fracture of shaft of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154969,10,'S82.209A ','Unspecified fracture of shaft of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154968,10,'S82.202S ','Unspecified fracture of shaft of left tibia, sequela','Y','0000-00-00 00:00:00'),(154967,10,'S82.202R ','Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154966,10,'S82.202Q ','Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154965,10,'S82.202P ','Unspecified fracture of shaft of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154964,10,'S82.202N ','Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154963,10,'S82.202M ','Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154962,10,'S82.202K ','Unspecified fracture of shaft of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154961,10,'S82.202J ','Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154960,10,'S82.202H ','Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154959,10,'S82.202G ','Unspecified fracture of shaft of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154958,10,'S82.202F ','Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154957,10,'S82.202E ','Unspecified fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154956,10,'S82.202D ','Unspecified fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154955,10,'S82.202C ','Unspecified fracture of shaft of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154954,10,'S82.202B ','Unspecified fracture of shaft of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154953,10,'S82.202A ','Unspecified fracture of shaft of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154952,10,'S82.201S ','Unspecified fracture of shaft of right tibia, sequela','Y','0000-00-00 00:00:00'),(154951,10,'S82.201R ','Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154950,10,'S82.201Q ','Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154949,10,'S82.201P ','Unspecified fracture of shaft of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154948,10,'S82.201N ','Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154947,10,'S82.201M ','Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154946,10,'S82.201K ','Unspecified fracture of shaft of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154945,10,'S82.201J ','Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154944,10,'S82.201H ','Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154943,10,'S82.201G ','Unspecified fracture of shaft of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154942,10,'S82.201F ','Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154941,10,'S82.201E ','Unspecified fracture of shaft of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154940,10,'S82.201D ','Unspecified fracture of shaft of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154939,10,'S82.201C ','Unspecified fracture of shaft of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154938,10,'S82.201B ','Unspecified fracture of shaft of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154937,10,'S82.201A ','Unspecified fracture of shaft of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154936,10,'S82.199S ','Other fracture of upper end of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(154935,10,'S82.199R ','Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154934,10,'S82.199Q ','Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154933,10,'S82.199P ','Other fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154932,10,'S82.199N ','Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154931,10,'S82.199M ','Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154930,10,'S82.199K ','Other fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154929,10,'S82.199J ','Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154928,10,'S82.199H ','Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154927,10,'S82.199G ','Other fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154926,10,'S82.199F ','Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154925,10,'S82.199E ','Other fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154924,10,'S82.199D ','Other fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154923,10,'S82.199C ','Other fracture of upper end of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154922,10,'S82.199B ','Other fracture of upper end of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154921,10,'S82.199A ','Other fracture of upper end of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154920,10,'S82.192S ','Other fracture of upper end of left tibia, sequela','Y','0000-00-00 00:00:00'),(154919,10,'S82.192R ','Other fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154918,10,'S82.192Q ','Other fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154917,10,'S82.192P ','Other fracture of upper end of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154916,10,'S82.192N ','Other fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154915,10,'S82.192M ','Other fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154914,10,'S82.192K ','Other fracture of upper end of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154913,10,'S82.192J ','Other fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154912,10,'S82.192H ','Other fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154911,10,'S82.192G ','Other fracture of upper end of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154910,10,'S82.192F ','Other fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154909,10,'S82.192E ','Other fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154908,10,'S82.192D ','Other fracture of upper end of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154907,10,'S82.192C ','Other fracture of upper end of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154906,10,'S82.192B ','Other fracture of upper end of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154905,10,'S82.192A ','Other fracture of upper end of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154904,10,'S82.191S ','Other fracture of upper end of right tibia, sequela','Y','0000-00-00 00:00:00'),(154903,10,'S82.191R ','Other fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154902,10,'S82.191Q ','Other fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154901,10,'S82.191P ','Other fracture of upper end of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154900,10,'S82.191N ','Other fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154899,10,'S82.191M ','Other fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154898,10,'S82.191K ','Other fracture of upper end of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154897,10,'S82.191J ','Other fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154896,10,'S82.191H ','Other fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154895,10,'S82.191G ','Other fracture of upper end of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154894,10,'S82.191F ','Other fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154893,10,'S82.191E ','Other fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154892,10,'S82.191D ','Other fracture of upper end of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154891,10,'S82.191C ','Other fracture of upper end of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154890,10,'S82.191B ','Other fracture of upper end of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154889,10,'S82.191A ','Other fracture of upper end of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154888,10,'S82.169S ','Torus fracture of upper end of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(154887,10,'S82.169P ','Torus fracture of upper end of unspecified tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(154886,10,'S82.169K ','Torus fracture of upper end of unspecified tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(154885,10,'S82.169G ','Torus fracture of upper end of unspecified tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(154884,10,'S82.169D ','Torus fracture of upper end of unspecified tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(154883,10,'S82.169A ','Torus fracture of upper end of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154882,10,'S82.162S ','Torus fracture of upper end of left tibia, sequela','Y','0000-00-00 00:00:00'),(154881,10,'S82.162P ','Torus fracture of upper end of left tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(154880,10,'S82.162K ','Torus fracture of upper end of left tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(154879,10,'S82.162G ','Torus fracture of upper end of left tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(154878,10,'S82.162D ','Torus fracture of upper end of left tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(154877,10,'S82.162A ','Torus fracture of upper end of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154876,10,'S82.161S ','Torus fracture of upper end of right tibia, sequela','Y','0000-00-00 00:00:00'),(154875,10,'S82.161P ','Torus fracture of upper end of right tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(154874,10,'S82.161K ','Torus fracture of upper end of right tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(154873,10,'S82.161G ','Torus fracture of upper end of right tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(154872,10,'S82.161D ','Torus fracture of upper end of right tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(154871,10,'S82.161A ','Torus fracture of upper end of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154870,10,'S82.156S ','Nondisplaced fracture of unspecified tibial tuberosity, sequela','Y','0000-00-00 00:00:00'),(154869,10,'S82.156R ','Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154868,10,'S82.156Q ','Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154867,10,'S82.156P ','Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154866,10,'S82.156N ','Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154865,10,'S82.156M ','Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154864,10,'S82.156K ','Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154863,10,'S82.156J ','Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154862,10,'S82.156H ','Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154861,10,'S82.156G ','Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154860,10,'S82.156F ','Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154859,10,'S82.156E ','Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154858,10,'S82.156D ','Nondisplaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154857,10,'S82.156C ','Nondisplaced fracture of unspecified tibial tuberosity, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154856,10,'S82.156B ','Nondisplaced fracture of unspecified tibial tuberosity, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154855,10,'S82.156A ','Nondisplaced fracture of unspecified tibial tuberosity, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154854,10,'S82.155S ','Nondisplaced fracture of left tibial tuberosity, sequela','Y','0000-00-00 00:00:00'),(154853,10,'S82.155R ','Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154852,10,'S82.155Q ','Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154851,10,'S82.155P ','Nondisplaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154850,10,'S82.155N ','Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154849,10,'S82.155M ','Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154848,10,'S82.155K ','Nondisplaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154847,10,'S82.155J ','Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154846,10,'S82.155H ','Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154845,10,'S82.155G ','Nondisplaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154844,10,'S82.155F ','Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154843,10,'S82.155E ','Nondisplaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154842,10,'S82.155D ','Nondisplaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154841,10,'S82.155C ','Nondisplaced fracture of left tibial tuberosity, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154840,10,'S82.155B ','Nondisplaced fracture of left tibial tuberosity, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154839,10,'S82.155A ','Nondisplaced fracture of left tibial tuberosity, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154838,10,'S82.154S ','Nondisplaced fracture of right tibial tuberosity, sequela','Y','0000-00-00 00:00:00'),(154837,10,'S82.154R ','Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154836,10,'S82.154Q ','Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154835,10,'S82.154P ','Nondisplaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154834,10,'S82.154N ','Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154833,10,'S82.154M ','Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154832,10,'S82.154K ','Nondisplaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154831,10,'S82.154J ','Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154830,10,'S82.154H ','Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154829,10,'S82.154G ','Nondisplaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154828,10,'S82.154F ','Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154827,10,'S82.154E ','Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154826,10,'S82.154D ','Nondisplaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154825,10,'S82.154C ','Nondisplaced fracture of right tibial tuberosity, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154824,10,'S82.154B ','Nondisplaced fracture of right tibial tuberosity, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154823,10,'S82.154A ','Nondisplaced fracture of right tibial tuberosity, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154822,10,'S82.153S ','Displaced fracture of unspecified tibial tuberosity, sequela','Y','0000-00-00 00:00:00'),(154821,10,'S82.153R ','Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154820,10,'S82.153Q ','Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154819,10,'S82.153P ','Displaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154818,10,'S82.153N ','Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154817,10,'S82.153M ','Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154816,10,'S82.153K ','Displaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154815,10,'S82.153J ','Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154814,10,'S82.153H ','Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154813,10,'S82.153G ','Displaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154812,10,'S82.153F ','Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154811,10,'S82.153E ','Displaced fracture of unspecified tibial tuberosity, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154810,10,'S82.153D ','Displaced fracture of unspecified tibial tuberosity, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154809,10,'S82.153C ','Displaced fracture of unspecified tibial tuberosity, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154808,10,'S82.153B ','Displaced fracture of unspecified tibial tuberosity, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154807,10,'S82.153A ','Displaced fracture of unspecified tibial tuberosity, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154806,10,'S82.152S ','Displaced fracture of left tibial tuberosity, sequela','Y','0000-00-00 00:00:00'),(154805,10,'S82.152R ','Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154804,10,'S82.152Q ','Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154803,10,'S82.152P ','Displaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154802,10,'S82.152N ','Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154801,10,'S82.152M ','Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154800,10,'S82.152K ','Displaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154799,10,'S82.152J ','Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154798,10,'S82.152H ','Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154797,10,'S82.152G ','Displaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154796,10,'S82.152F ','Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154795,10,'S82.152E ','Displaced fracture of left tibial tuberosity, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154794,10,'S82.152D ','Displaced fracture of left tibial tuberosity, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154793,10,'S82.152C ','Displaced fracture of left tibial tuberosity, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154792,10,'S82.152B ','Displaced fracture of left tibial tuberosity, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154791,10,'S82.152A ','Displaced fracture of left tibial tuberosity, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154790,10,'S82.151S ','Displaced fracture of right tibial tuberosity, sequela','Y','0000-00-00 00:00:00'),(154789,10,'S82.151R ','Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154788,10,'S82.151Q ','Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154787,10,'S82.151P ','Displaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154786,10,'S82.151N ','Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154785,10,'S82.151M ','Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154784,10,'S82.151K ','Displaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154783,10,'S82.151J ','Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154782,10,'S82.151H ','Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154781,10,'S82.151G ','Displaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154780,10,'S82.151F ','Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154779,10,'S82.151E ','Displaced fracture of right tibial tuberosity, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154778,10,'S82.151D ','Displaced fracture of right tibial tuberosity, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154777,10,'S82.151C ','Displaced fracture of right tibial tuberosity, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154776,10,'S82.151B ','Displaced fracture of right tibial tuberosity, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154775,10,'S82.151A ','Displaced fracture of right tibial tuberosity, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154774,10,'S82.146S ','Nondisplaced bicondylar fracture of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(154773,10,'S82.146R ','Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154772,10,'S82.146Q ','Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154771,10,'S82.146P ','Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154770,10,'S82.146N ','Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154769,10,'S82.146M ','Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154768,10,'S82.146K ','Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154767,10,'S82.146J ','Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154766,10,'S82.146H ','Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154765,10,'S82.146G ','Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154764,10,'S82.146F ','Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154763,10,'S82.146E ','Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154762,10,'S82.146D ','Nondisplaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154761,10,'S82.146C ','Nondisplaced bicondylar fracture of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154760,10,'S82.146B ','Nondisplaced bicondylar fracture of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154759,10,'S82.146A ','Nondisplaced bicondylar fracture of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154758,10,'S82.145S ','Nondisplaced bicondylar fracture of left tibia, sequela','Y','0000-00-00 00:00:00'),(154757,10,'S82.145R ','Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154756,10,'S82.145Q ','Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154755,10,'S82.145P ','Nondisplaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154754,10,'S82.145N ','Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154753,10,'S82.145M ','Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154752,10,'S82.145K ','Nondisplaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154751,10,'S82.145J ','Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154750,10,'S82.145H ','Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154749,10,'S82.145G ','Nondisplaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154748,10,'S82.145F ','Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154747,10,'S82.145E ','Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154746,10,'S82.145D ','Nondisplaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154745,10,'S82.145C ','Nondisplaced bicondylar fracture of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154744,10,'S82.145B ','Nondisplaced bicondylar fracture of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154742,10,'S82.144S ','Nondisplaced bicondylar fracture of right tibia, sequela','Y','0000-00-00 00:00:00'),(154743,10,'S82.145A ','Nondisplaced bicondylar fracture of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154741,10,'S82.144R ','Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154740,10,'S82.144Q ','Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154739,10,'S82.144P ','Nondisplaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154738,10,'S82.144N ','Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154737,10,'S82.144M ','Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154736,10,'S82.144K ','Nondisplaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154735,10,'S82.144J ','Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154734,10,'S82.144H ','Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154733,10,'S82.144G ','Nondisplaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154732,10,'S82.144F ','Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154731,10,'S82.144E ','Nondisplaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154730,10,'S82.144D ','Nondisplaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154729,10,'S82.144C ','Nondisplaced bicondylar fracture of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154728,10,'S82.144B ','Nondisplaced bicondylar fracture of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154727,10,'S82.144A ','Nondisplaced bicondylar fracture of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154726,10,'S82.143S ','Displaced bicondylar fracture of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(154725,10,'S82.143R ','Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154724,10,'S82.143Q ','Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154723,10,'S82.143P ','Displaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154722,10,'S82.143N ','Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154721,10,'S82.143M ','Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154720,10,'S82.143K ','Displaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154719,10,'S82.143J ','Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154718,10,'S82.143H ','Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154717,10,'S82.143G ','Displaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154716,10,'S82.143F ','Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154715,10,'S82.143E ','Displaced bicondylar fracture of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154714,10,'S82.143D ','Displaced bicondylar fracture of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154713,10,'S82.143C ','Displaced bicondylar fracture of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154712,10,'S82.143B ','Displaced bicondylar fracture of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154710,10,'S82.142S ','Displaced bicondylar fracture of left tibia, sequela','Y','0000-00-00 00:00:00'),(154711,10,'S82.143A ','Displaced bicondylar fracture of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154709,10,'S82.142R ','Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154708,10,'S82.142Q ','Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154707,10,'S82.142P ','Displaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154706,10,'S82.142N ','Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154705,10,'S82.142M ','Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154704,10,'S82.142K ','Displaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154703,10,'S82.142J ','Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154702,10,'S82.142H ','Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154701,10,'S82.142G ','Displaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154700,10,'S82.142F ','Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154699,10,'S82.142E ','Displaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154698,10,'S82.142D ','Displaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154697,10,'S82.142C ','Displaced bicondylar fracture of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154696,10,'S82.142B ','Displaced bicondylar fracture of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154695,10,'S82.142A ','Displaced bicondylar fracture of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154694,10,'S82.141S ','Displaced bicondylar fracture of right tibia, sequela','Y','0000-00-00 00:00:00'),(154693,10,'S82.141R ','Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154692,10,'S82.141Q ','Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154691,10,'S82.141P ','Displaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154690,10,'S82.141N ','Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154689,10,'S82.141M ','Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154688,10,'S82.141K ','Displaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154687,10,'S82.141J ','Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154686,10,'S82.141H ','Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154685,10,'S82.141G ','Displaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154684,10,'S82.141F ','Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154683,10,'S82.141E ','Displaced bicondylar fracture of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154682,10,'S82.141D ','Displaced bicondylar fracture of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154681,10,'S82.141C ','Displaced bicondylar fracture of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154680,10,'S82.141B ','Displaced bicondylar fracture of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154679,10,'S82.141A ','Displaced bicondylar fracture of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154678,10,'S82.136S ','Nondisplaced fracture of medial condyle of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(154677,10,'S82.136R ','Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154676,10,'S82.136Q ','Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154675,10,'S82.136P ','Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154674,10,'S82.136N ','Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154673,10,'S82.136M ','Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154672,10,'S82.136K ','Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154671,10,'S82.136J ','Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154670,10,'S82.136H ','Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154669,10,'S82.136G ','Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154668,10,'S82.136F ','Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154667,10,'S82.136E ','Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154666,10,'S82.136D ','Nondisplaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154665,10,'S82.136C ','Nondisplaced fracture of medial condyle of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154664,10,'S82.136B ','Nondisplaced fracture of medial condyle of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154663,10,'S82.136A ','Nondisplaced fracture of medial condyle of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154662,10,'S82.135S ','Nondisplaced fracture of medial condyle of left tibia, sequela','Y','0000-00-00 00:00:00'),(154661,10,'S82.135R ','Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154660,10,'S82.135Q ','Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154659,10,'S82.135P ','Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154658,10,'S82.135N ','Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154657,10,'S82.135M ','Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154656,10,'S82.135K ','Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154655,10,'S82.135J ','Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154654,10,'S82.135H ','Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154653,10,'S82.135G ','Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154652,10,'S82.135F ','Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154651,10,'S82.135E ','Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154650,10,'S82.135D ','Nondisplaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154649,10,'S82.135C ','Nondisplaced fracture of medial condyle of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154648,10,'S82.135B ','Nondisplaced fracture of medial condyle of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154647,10,'S82.135A ','Nondisplaced fracture of medial condyle of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154646,10,'S82.134S ','Nondisplaced fracture of medial condyle of right tibia, sequela','Y','0000-00-00 00:00:00'),(154645,10,'S82.134R ','Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154644,10,'S82.134Q ','Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154643,10,'S82.134P ','Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154642,10,'S82.134N ','Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154641,10,'S82.134M ','Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154640,10,'S82.134K ','Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154639,10,'S82.134J ','Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154638,10,'S82.134H ','Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154637,10,'S82.134G ','Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154636,10,'S82.134F ','Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154635,10,'S82.134E ','Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154634,10,'S82.134D ','Nondisplaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154633,10,'S82.134C ','Nondisplaced fracture of medial condyle of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154632,10,'S82.134B ','Nondisplaced fracture of medial condyle of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154630,10,'S82.133S ','Displaced fracture of medial condyle of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(154631,10,'S82.134A ','Nondisplaced fracture of medial condyle of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154629,10,'S82.133R ','Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154628,10,'S82.133Q ','Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154627,10,'S82.133P ','Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154626,10,'S82.133N ','Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154625,10,'S82.133M ','Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154624,10,'S82.133K ','Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154623,10,'S82.133J ','Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154622,10,'S82.133H ','Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154621,10,'S82.133G ','Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154620,10,'S82.133F ','Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154619,10,'S82.133E ','Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154618,10,'S82.133D ','Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154617,10,'S82.133C ','Displaced fracture of medial condyle of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154616,10,'S82.133B ','Displaced fracture of medial condyle of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154615,10,'S82.133A ','Displaced fracture of medial condyle of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154614,10,'S82.132S ','Displaced fracture of medial condyle of left tibia, sequela','Y','0000-00-00 00:00:00'),(154613,10,'S82.132R ','Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154612,10,'S82.132Q ','Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154611,10,'S82.132P ','Displaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154610,10,'S82.132N ','Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154609,10,'S82.132M ','Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154608,10,'S82.132K ','Displaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154607,10,'S82.132J ','Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154606,10,'S82.132H ','Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154605,10,'S82.132G ','Displaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154604,10,'S82.132F ','Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154603,10,'S82.132E ','Displaced fracture of medial condyle of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154602,10,'S82.132D ','Displaced fracture of medial condyle of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154601,10,'S82.132C ','Displaced fracture of medial condyle of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154600,10,'S82.132B ','Displaced fracture of medial condyle of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154599,10,'S82.132A ','Displaced fracture of medial condyle of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154598,10,'S82.131S ','Displaced fracture of medial condyle of right tibia, sequela','Y','0000-00-00 00:00:00'),(154597,10,'S82.131R ','Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154596,10,'S82.131Q ','Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154595,10,'S82.131P ','Displaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154594,10,'S82.131N ','Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154593,10,'S82.131M ','Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154592,10,'S82.131K ','Displaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154591,10,'S82.131J ','Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154590,10,'S82.131H ','Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154589,10,'S82.131G ','Displaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154588,10,'S82.131F ','Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154587,10,'S82.131E ','Displaced fracture of medial condyle of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154586,10,'S82.131D ','Displaced fracture of medial condyle of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154585,10,'S82.131C ','Displaced fracture of medial condyle of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154584,10,'S82.131B ','Displaced fracture of medial condyle of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154583,10,'S82.131A ','Displaced fracture of medial condyle of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154582,10,'S82.126S ','Nondisplaced fracture of lateral condyle of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(154581,10,'S82.126R ','Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154580,10,'S82.126Q ','Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154579,10,'S82.126P ','Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154578,10,'S82.126N ','Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154577,10,'S82.126M ','Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154576,10,'S82.126K ','Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154575,10,'S82.126J ','Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154574,10,'S82.126H ','Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154573,10,'S82.126G ','Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154572,10,'S82.126F ','Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154571,10,'S82.126E ','Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154570,10,'S82.126D ','Nondisplaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154569,10,'S82.126C ','Nondisplaced fracture of lateral condyle of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154568,10,'S82.126B ','Nondisplaced fracture of lateral condyle of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154567,10,'S82.126A ','Nondisplaced fracture of lateral condyle of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154566,10,'S82.125S ','Nondisplaced fracture of lateral condyle of left tibia, sequela','Y','0000-00-00 00:00:00'),(154565,10,'S82.125R ','Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154564,10,'S82.125Q ','Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154563,10,'S82.125P ','Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154562,10,'S82.125N ','Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154561,10,'S82.125M ','Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154560,10,'S82.125K ','Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154559,10,'S82.125J ','Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154558,10,'S82.125H ','Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154557,10,'S82.125G ','Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154556,10,'S82.125F ','Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154555,10,'S82.125E ','Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154554,10,'S82.125D ','Nondisplaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154553,10,'S82.125C ','Nondisplaced fracture of lateral condyle of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154552,10,'S82.125B ','Nondisplaced fracture of lateral condyle of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154551,10,'S82.125A ','Nondisplaced fracture of lateral condyle of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154550,10,'S82.124S ','Nondisplaced fracture of lateral condyle of right tibia, sequela','Y','0000-00-00 00:00:00'),(154549,10,'S82.124R ','Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154548,10,'S82.124Q ','Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154547,10,'S82.124P ','Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154546,10,'S82.124N ','Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154545,10,'S82.124M ','Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154544,10,'S82.124K ','Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154543,10,'S82.124J ','Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154542,10,'S82.124H ','Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154541,10,'S82.124G ','Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154540,10,'S82.124F ','Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154539,10,'S82.124E ','Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154538,10,'S82.124D ','Nondisplaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154537,10,'S82.124C ','Nondisplaced fracture of lateral condyle of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154536,10,'S82.124B ','Nondisplaced fracture of lateral condyle of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154535,10,'S82.124A ','Nondisplaced fracture of lateral condyle of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154534,10,'S82.123S ','Displaced fracture of lateral condyle of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(154533,10,'S82.123R ','Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154532,10,'S82.123Q ','Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154531,10,'S82.123P ','Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154530,10,'S82.123N ','Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154529,10,'S82.123M ','Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154528,10,'S82.123K ','Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154527,10,'S82.123J ','Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154526,10,'S82.123H ','Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154525,10,'S82.123G ','Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154524,10,'S82.123F ','Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154523,10,'S82.123E ','Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154522,10,'S82.123D ','Displaced fracture of lateral condyle of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154521,10,'S82.123C ','Displaced fracture of lateral condyle of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154520,10,'S82.123B ','Displaced fracture of lateral condyle of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154519,10,'S82.123A ','Displaced fracture of lateral condyle of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154518,10,'S82.122S ','Displaced fracture of lateral condyle of left tibia, sequela','Y','0000-00-00 00:00:00'),(154517,10,'S82.122R ','Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154516,10,'S82.122Q ','Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154515,10,'S82.122P ','Displaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154514,10,'S82.122N ','Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154513,10,'S82.122M ','Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154512,10,'S82.122K ','Displaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154511,10,'S82.122J ','Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154510,10,'S82.122H ','Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154509,10,'S82.122G ','Displaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154508,10,'S82.122F ','Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154507,10,'S82.122E ','Displaced fracture of lateral condyle of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154506,10,'S82.122D ','Displaced fracture of lateral condyle of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154505,10,'S82.122C ','Displaced fracture of lateral condyle of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154504,10,'S82.122B ','Displaced fracture of lateral condyle of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154503,10,'S82.122A ','Displaced fracture of lateral condyle of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154502,10,'S82.121S ','Displaced fracture of lateral condyle of right tibia, sequela','Y','0000-00-00 00:00:00'),(154501,10,'S82.121R ','Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154500,10,'S82.121Q ','Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154499,10,'S82.121P ','Displaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154498,10,'S82.121N ','Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154497,10,'S82.121M ','Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154496,10,'S82.121K ','Displaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154495,10,'S82.121J ','Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154494,10,'S82.121H ','Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154493,10,'S82.121G ','Displaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154492,10,'S82.121F ','Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154491,10,'S82.121E ','Displaced fracture of lateral condyle of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154490,10,'S82.121D ','Displaced fracture of lateral condyle of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154489,10,'S82.121C ','Displaced fracture of lateral condyle of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154488,10,'S82.121B ','Displaced fracture of lateral condyle of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154487,10,'S82.121A ','Displaced fracture of lateral condyle of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154486,10,'S82.116S ','Nondisplaced fracture of unspecified tibial spine, sequela','Y','0000-00-00 00:00:00'),(154485,10,'S82.116R ','Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154484,10,'S82.116Q ','Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154483,10,'S82.116P ','Nondisplaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154482,10,'S82.116N ','Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154481,10,'S82.116M ','Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154480,10,'S82.116K ','Nondisplaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154479,10,'S82.116J ','Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154478,10,'S82.116H ','Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154477,10,'S82.116G ','Nondisplaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154476,10,'S82.116F ','Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154475,10,'S82.116E ','Nondisplaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154474,10,'S82.116D ','Nondisplaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154473,10,'S82.116C ','Nondisplaced fracture of unspecified tibial spine, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154472,10,'S82.116B ','Nondisplaced fracture of unspecified tibial spine, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154471,10,'S82.116A ','Nondisplaced fracture of unspecified tibial spine, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154470,10,'S82.115S ','Nondisplaced fracture of left tibial spine, sequela','Y','0000-00-00 00:00:00'),(154469,10,'S82.115R ','Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154468,10,'S82.115Q ','Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154467,10,'S82.115P ','Nondisplaced fracture of left tibial spine, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154466,10,'S82.115N ','Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154465,10,'S82.115M ','Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154464,10,'S82.115K ','Nondisplaced fracture of left tibial spine, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154463,10,'S82.115J ','Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154462,10,'S82.115H ','Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154461,10,'S82.115G ','Nondisplaced fracture of left tibial spine, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154460,10,'S82.115F ','Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154459,10,'S82.115E ','Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154458,10,'S82.115D ','Nondisplaced fracture of left tibial spine, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154457,10,'S82.115C ','Nondisplaced fracture of left tibial spine, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154456,10,'S82.115B ','Nondisplaced fracture of left tibial spine, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154455,10,'S82.115A ','Nondisplaced fracture of left tibial spine, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154454,10,'S82.114S ','Nondisplaced fracture of right tibial spine, sequela','Y','0000-00-00 00:00:00'),(154453,10,'S82.114R ','Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154452,10,'S82.114Q ','Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154451,10,'S82.114P ','Nondisplaced fracture of right tibial spine, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154450,10,'S82.114N ','Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154449,10,'S82.114M ','Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154448,10,'S82.114K ','Nondisplaced fracture of right tibial spine, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154447,10,'S82.114J ','Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154446,10,'S82.114H ','Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154445,10,'S82.114G ','Nondisplaced fracture of right tibial spine, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154444,10,'S82.114F ','Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154443,10,'S82.114E ','Nondisplaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154442,10,'S82.114D ','Nondisplaced fracture of right tibial spine, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154441,10,'S82.114C ','Nondisplaced fracture of right tibial spine, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154440,10,'S82.114B ','Nondisplaced fracture of right tibial spine, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154439,10,'S82.114A ','Nondisplaced fracture of right tibial spine, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154438,10,'S82.113S ','Displaced fracture of unspecified tibial spine, sequela','Y','0000-00-00 00:00:00'),(154437,10,'S82.113R ','Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154436,10,'S82.113Q ','Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154435,10,'S82.113P ','Displaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154434,10,'S82.113N ','Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154433,10,'S82.113M ','Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154432,10,'S82.113K ','Displaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154431,10,'S82.113J ','Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154430,10,'S82.113H ','Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154429,10,'S82.113G ','Displaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154428,10,'S82.113F ','Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154427,10,'S82.113E ','Displaced fracture of unspecified tibial spine, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154426,10,'S82.113D ','Displaced fracture of unspecified tibial spine, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154425,10,'S82.113C ','Displaced fracture of unspecified tibial spine, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154424,10,'S82.113B ','Displaced fracture of unspecified tibial spine, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154423,10,'S82.113A ','Displaced fracture of unspecified tibial spine, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154422,10,'S82.112S ','Displaced fracture of left tibial spine, sequela','Y','0000-00-00 00:00:00'),(154421,10,'S82.112R ','Displaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154420,10,'S82.112Q ','Displaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154419,10,'S82.112P ','Displaced fracture of left tibial spine, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154418,10,'S82.112N ','Displaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154417,10,'S82.112M ','Displaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154416,10,'S82.112K ','Displaced fracture of left tibial spine, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154415,10,'S82.112J ','Displaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154414,10,'S82.112H ','Displaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154413,10,'S82.112G ','Displaced fracture of left tibial spine, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154412,10,'S82.112F ','Displaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154411,10,'S82.112E ','Displaced fracture of left tibial spine, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154410,10,'S82.112D ','Displaced fracture of left tibial spine, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154409,10,'S82.112C ','Displaced fracture of left tibial spine, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154408,10,'S82.112B ','Displaced fracture of left tibial spine, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154407,10,'S82.112A ','Displaced fracture of left tibial spine, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154406,10,'S82.111S ','Displaced fracture of right tibial spine, sequela','Y','0000-00-00 00:00:00'),(154405,10,'S82.111R ','Displaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154404,10,'S82.111Q ','Displaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154403,10,'S82.111P ','Displaced fracture of right tibial spine, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154402,10,'S82.111N ','Displaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154401,10,'S82.111M ','Displaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154400,10,'S82.111K ','Displaced fracture of right tibial spine, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154399,10,'S82.111J ','Displaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154398,10,'S82.111H ','Displaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154397,10,'S82.111G ','Displaced fracture of right tibial spine, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154396,10,'S82.111F ','Displaced fracture of right tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154395,10,'S82.111E ','Displaced fracture of right tibial spine, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154394,10,'S82.111D ','Displaced fracture of right tibial spine, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154393,10,'S82.111C ','Displaced fracture of right tibial spine, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154392,10,'S82.111B ','Displaced fracture of right tibial spine, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154391,10,'S82.111A ','Displaced fracture of right tibial spine, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154390,10,'S82.109S ','Unspecified fracture of upper end of unspecified tibia, sequela','Y','0000-00-00 00:00:00'),(154389,10,'S82.109R ','Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154388,10,'S82.109Q ','Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154387,10,'S82.109P ','Unspecified fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154386,10,'S82.109N ','Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154385,10,'S82.109M ','Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154384,10,'S82.109K ','Unspecified fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154383,10,'S82.109J ','Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154382,10,'S82.109H ','Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154381,10,'S82.109G ','Unspecified fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154380,10,'S82.109F ','Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154379,10,'S82.109E ','Unspecified fracture of upper end of unspecified tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154378,10,'S82.109D ','Unspecified fracture of upper end of unspecified tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154377,10,'S82.109C ','Unspecified fracture of upper end of unspecified tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154376,10,'S82.109B ','Unspecified fracture of upper end of unspecified tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154375,10,'S82.109A ','Unspecified fracture of upper end of unspecified tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154374,10,'S82.102S ','Unspecified fracture of upper end of left tibia, sequela','Y','0000-00-00 00:00:00'),(154373,10,'S82.102R ','Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154372,10,'S82.102Q ','Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154371,10,'S82.102P ','Unspecified fracture of upper end of left tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154370,10,'S82.102N ','Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154369,10,'S82.102M ','Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154368,10,'S82.102K ','Unspecified fracture of upper end of left tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154367,10,'S82.102J ','Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154366,10,'S82.102H ','Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154365,10,'S82.102G ','Unspecified fracture of upper end of left tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154364,10,'S82.102F ','Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154363,10,'S82.102E ','Unspecified fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154362,10,'S82.102D ','Unspecified fracture of upper end of left tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154361,10,'S82.102C ','Unspecified fracture of upper end of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154360,10,'S82.102B ','Unspecified fracture of upper end of left tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154359,10,'S82.102A ','Unspecified fracture of upper end of left tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154358,10,'S82.101S ','Unspecified fracture of upper end of right tibia, sequela','Y','0000-00-00 00:00:00'),(154357,10,'S82.101R ','Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154356,10,'S82.101Q ','Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154355,10,'S82.101P ','Unspecified fracture of upper end of right tibia, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154354,10,'S82.101N ','Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154353,10,'S82.101M ','Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154352,10,'S82.101K ','Unspecified fracture of upper end of right tibia, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154351,10,'S82.101J ','Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154350,10,'S82.101H ','Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154349,10,'S82.101G ','Unspecified fracture of upper end of right tibia, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154348,10,'S82.101F ','Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154347,10,'S82.101E ','Unspecified fracture of upper end of right tibia, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154346,10,'S82.101D ','Unspecified fracture of upper end of right tibia, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154345,10,'S82.101C ','Unspecified fracture of upper end of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154344,10,'S82.101B ','Unspecified fracture of upper end of right tibia, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154343,10,'S82.101A ','Unspecified fracture of upper end of right tibia, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154342,10,'S82.099S ','Other fracture of unspecified patella, sequela','Y','0000-00-00 00:00:00'),(154341,10,'S82.099R ','Other fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154340,10,'S82.099Q ','Other fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154339,10,'S82.099P ','Other fracture of unspecified patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154338,10,'S82.099N ','Other fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154337,10,'S82.099M ','Other fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154336,10,'S82.099K ','Other fracture of unspecified patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154335,10,'S82.099J ','Other fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154334,10,'S82.099H ','Other fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154333,10,'S82.099G ','Other fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154332,10,'S82.099F ','Other fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154331,10,'S82.099E ','Other fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154330,10,'S82.099D ','Other fracture of unspecified patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154329,10,'S82.099C ','Other fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154328,10,'S82.099B ','Other fracture of unspecified patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154327,10,'S82.099A ','Other fracture of unspecified patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154326,10,'S82.092S ','Other fracture of left patella, sequela','Y','0000-00-00 00:00:00'),(154325,10,'S82.092R ','Other fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154324,10,'S82.092Q ','Other fracture of left patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154323,10,'S82.092P ','Other fracture of left patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154322,10,'S82.092N ','Other fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154321,10,'S82.092M ','Other fracture of left patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154320,10,'S82.092K ','Other fracture of left patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154319,10,'S82.092J ','Other fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154318,10,'S82.092H ','Other fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154317,10,'S82.092G ','Other fracture of left patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154316,10,'S82.092F ','Other fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154315,10,'S82.092E ','Other fracture of left patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154314,10,'S82.092D ','Other fracture of left patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154313,10,'S82.092C ','Other fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154312,10,'S82.092B ','Other fracture of left patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154311,10,'S82.092A ','Other fracture of left patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154310,10,'S82.091S ','Other fracture of right patella, sequela','Y','0000-00-00 00:00:00'),(154309,10,'S82.091R ','Other fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154308,10,'S82.091Q ','Other fracture of right patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154307,10,'S82.091P ','Other fracture of right patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154306,10,'S82.091N ','Other fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154305,10,'S82.091M ','Other fracture of right patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154304,10,'S82.091K ','Other fracture of right patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154303,10,'S82.091J ','Other fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154302,10,'S82.091H ','Other fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154301,10,'S82.091G ','Other fracture of right patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154300,10,'S82.091F ','Other fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154299,10,'S82.091E ','Other fracture of right patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154298,10,'S82.091D ','Other fracture of right patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154297,10,'S82.091C ','Other fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154296,10,'S82.091B ','Other fracture of right patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154295,10,'S82.091A ','Other fracture of right patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154294,10,'S82.046S ','Nondisplaced comminuted fracture of unspecified patella, sequela','Y','0000-00-00 00:00:00'),(154293,10,'S82.046R ','Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154292,10,'S82.046Q ','Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154291,10,'S82.046P ','Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154290,10,'S82.046N ','Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154289,10,'S82.046M ','Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154288,10,'S82.046K ','Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154287,10,'S82.046J ','Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154286,10,'S82.046H ','Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154285,10,'S82.046G ','Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154284,10,'S82.046F ','Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154283,10,'S82.046E ','Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154282,10,'S82.046D ','Nondisplaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154281,10,'S82.046C ','Nondisplaced comminuted fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154280,10,'S82.046B ','Nondisplaced comminuted fracture of unspecified patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154279,10,'S82.046A ','Nondisplaced comminuted fracture of unspecified patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154278,10,'S82.045S ','Nondisplaced comminuted fracture of left patella, sequela','Y','0000-00-00 00:00:00'),(154277,10,'S82.045R ','Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154276,10,'S82.045Q ','Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154275,10,'S82.045P ','Nondisplaced comminuted fracture of left patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154274,10,'S82.045N ','Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154273,10,'S82.045M ','Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154272,10,'S82.045K ','Nondisplaced comminuted fracture of left patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154271,10,'S82.045J ','Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154270,10,'S82.045H ','Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154269,10,'S82.045G ','Nondisplaced comminuted fracture of left patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154268,10,'S82.045F ','Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154267,10,'S82.045E ','Nondisplaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154266,10,'S82.045D ','Nondisplaced comminuted fracture of left patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154265,10,'S82.045C ','Nondisplaced comminuted fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154264,10,'S82.045B ','Nondisplaced comminuted fracture of left patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154263,10,'S82.045A ','Nondisplaced comminuted fracture of left patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154262,10,'S82.044S ','Nondisplaced comminuted fracture of right patella, sequela','Y','0000-00-00 00:00:00'),(154261,10,'S82.044R ','Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154260,10,'S82.044Q ','Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154259,10,'S82.044P ','Nondisplaced comminuted fracture of right patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154258,10,'S82.044N ','Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154257,10,'S82.044M ','Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154256,10,'S82.044K ','Nondisplaced comminuted fracture of right patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154255,10,'S82.044J ','Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154254,10,'S82.044H ','Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154253,10,'S82.044G ','Nondisplaced comminuted fracture of right patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154252,10,'S82.044F ','Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154251,10,'S82.044E ','Nondisplaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154250,10,'S82.044D ','Nondisplaced comminuted fracture of right patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154249,10,'S82.044C ','Nondisplaced comminuted fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154248,10,'S82.044B ','Nondisplaced comminuted fracture of right patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154247,10,'S82.044A ','Nondisplaced comminuted fracture of right patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154246,10,'S82.043S ','Displaced comminuted fracture of unspecified patella, sequela','Y','0000-00-00 00:00:00'),(154245,10,'S82.043R ','Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154244,10,'S82.043Q ','Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154243,10,'S82.043P ','Displaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154242,10,'S82.043N ','Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154241,10,'S82.043M ','Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154240,10,'S82.043K ','Displaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154239,10,'S82.043J ','Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154238,10,'S82.043H ','Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154237,10,'S82.043G ','Displaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154236,10,'S82.043F ','Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154235,10,'S82.043E ','Displaced comminuted fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154234,10,'S82.043D ','Displaced comminuted fracture of unspecified patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154233,10,'S82.043C ','Displaced comminuted fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154232,10,'S82.043B ','Displaced comminuted fracture of unspecified patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154231,10,'S82.043A ','Displaced comminuted fracture of unspecified patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154230,10,'S82.042S ','Displaced comminuted fracture of left patella, sequela','Y','0000-00-00 00:00:00'),(154229,10,'S82.042R ','Displaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154228,10,'S82.042Q ','Displaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154227,10,'S82.042P ','Displaced comminuted fracture of left patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154226,10,'S82.042N ','Displaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154225,10,'S82.042M ','Displaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154224,10,'S82.042K ','Displaced comminuted fracture of left patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154223,10,'S82.042J ','Displaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154222,10,'S82.042H ','Displaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154221,10,'S82.042G ','Displaced comminuted fracture of left patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154220,10,'S82.042F ','Displaced comminuted fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154219,10,'S82.042E ','Displaced comminuted fracture of left patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154218,10,'S82.042D ','Displaced comminuted fracture of left patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154217,10,'S82.042C ','Displaced comminuted fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154216,10,'S82.042B ','Displaced comminuted fracture of left patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154215,10,'S82.042A ','Displaced comminuted fracture of left patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154214,10,'S82.041S ','Displaced comminuted fracture of right patella, sequela','Y','0000-00-00 00:00:00'),(154213,10,'S82.041R ','Displaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154212,10,'S82.041Q ','Displaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154211,10,'S82.041P ','Displaced comminuted fracture of right patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154210,10,'S82.041N ','Displaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154209,10,'S82.041M ','Displaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154208,10,'S82.041K ','Displaced comminuted fracture of right patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154207,10,'S82.041J ','Displaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154206,10,'S82.041H ','Displaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154205,10,'S82.041G ','Displaced comminuted fracture of right patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154204,10,'S82.041F ','Displaced comminuted fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154203,10,'S82.041E ','Displaced comminuted fracture of right patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154202,10,'S82.041D ','Displaced comminuted fracture of right patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154201,10,'S82.041C ','Displaced comminuted fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154200,10,'S82.041B ','Displaced comminuted fracture of right patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154199,10,'S82.041A ','Displaced comminuted fracture of right patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154198,10,'S82.036S ','Nondisplaced transverse fracture of unspecified patella, sequela','Y','0000-00-00 00:00:00'),(154197,10,'S82.036R ','Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154196,10,'S82.036Q ','Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154195,10,'S82.036P ','Nondisplaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154194,10,'S82.036N ','Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154193,10,'S82.036M ','Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154192,10,'S82.036K ','Nondisplaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154191,10,'S82.036J ','Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154190,10,'S82.036H ','Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154189,10,'S82.036G ','Nondisplaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154188,10,'S82.036F ','Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154187,10,'S82.036E ','Nondisplaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154186,10,'S82.036D ','Nondisplaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154185,10,'S82.036C ','Nondisplaced transverse fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154184,10,'S82.036B ','Nondisplaced transverse fracture of unspecified patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154183,10,'S82.036A ','Nondisplaced transverse fracture of unspecified patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154182,10,'S82.035S ','Nondisplaced transverse fracture of left patella, sequela','Y','0000-00-00 00:00:00'),(154181,10,'S82.035R ','Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154180,10,'S82.035Q ','Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154179,10,'S82.035P ','Nondisplaced transverse fracture of left patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154178,10,'S82.035N ','Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154177,10,'S82.035M ','Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154176,10,'S82.035K ','Nondisplaced transverse fracture of left patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154175,10,'S82.035J ','Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154174,10,'S82.035H ','Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154173,10,'S82.035G ','Nondisplaced transverse fracture of left patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154172,10,'S82.035F ','Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154171,10,'S82.035E ','Nondisplaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154170,10,'S82.035D ','Nondisplaced transverse fracture of left patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154169,10,'S82.035C ','Nondisplaced transverse fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154168,10,'S82.035B ','Nondisplaced transverse fracture of left patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154167,10,'S82.035A ','Nondisplaced transverse fracture of left patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154166,10,'S82.034S ','Nondisplaced transverse fracture of right patella, sequela','Y','0000-00-00 00:00:00'),(154165,10,'S82.034R ','Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154164,10,'S82.034Q ','Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154163,10,'S82.034P ','Nondisplaced transverse fracture of right patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154162,10,'S82.034N ','Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154161,10,'S82.034M ','Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154160,10,'S82.034K ','Nondisplaced transverse fracture of right patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154159,10,'S82.034J ','Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154158,10,'S82.034H ','Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154157,10,'S82.034G ','Nondisplaced transverse fracture of right patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154156,10,'S82.034F ','Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154155,10,'S82.034E ','Nondisplaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154154,10,'S82.034D ','Nondisplaced transverse fracture of right patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154153,10,'S82.034C ','Nondisplaced transverse fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154152,10,'S82.034B ','Nondisplaced transverse fracture of right patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154151,10,'S82.034A ','Nondisplaced transverse fracture of right patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154150,10,'S82.033S ','Displaced transverse fracture of unspecified patella, sequela','Y','0000-00-00 00:00:00'),(154149,10,'S82.033R ','Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154148,10,'S82.033Q ','Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154147,10,'S82.033P ','Displaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154146,10,'S82.033N ','Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154145,10,'S82.033M ','Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154144,10,'S82.033K ','Displaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154143,10,'S82.033J ','Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154142,10,'S82.033H ','Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154141,10,'S82.033G ','Displaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154140,10,'S82.033F ','Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154139,10,'S82.033E ','Displaced transverse fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154138,10,'S82.033D ','Displaced transverse fracture of unspecified patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154137,10,'S82.033C ','Displaced transverse fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154136,10,'S82.033B ','Displaced transverse fracture of unspecified patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154135,10,'S82.033A ','Displaced transverse fracture of unspecified patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154134,10,'S82.032S ','Displaced transverse fracture of left patella, sequela','Y','0000-00-00 00:00:00'),(154133,10,'S82.032R ','Displaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154132,10,'S82.032Q ','Displaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154131,10,'S82.032P ','Displaced transverse fracture of left patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154130,10,'S82.032N ','Displaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154129,10,'S82.032M ','Displaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154128,10,'S82.032K ','Displaced transverse fracture of left patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154127,10,'S82.032J ','Displaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154126,10,'S82.032H ','Displaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154125,10,'S82.032G ','Displaced transverse fracture of left patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154124,10,'S82.032F ','Displaced transverse fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154123,10,'S82.032E ','Displaced transverse fracture of left patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154122,10,'S82.032D ','Displaced transverse fracture of left patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154121,10,'S82.032C ','Displaced transverse fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154120,10,'S82.032B ','Displaced transverse fracture of left patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154119,10,'S82.032A ','Displaced transverse fracture of left patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154118,10,'S82.031S ','Displaced transverse fracture of right patella, sequela','Y','0000-00-00 00:00:00'),(154117,10,'S82.031R ','Displaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154116,10,'S82.031Q ','Displaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154115,10,'S82.031P ','Displaced transverse fracture of right patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154114,10,'S82.031N ','Displaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154113,10,'S82.031M ','Displaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154112,10,'S82.031K ','Displaced transverse fracture of right patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154111,10,'S82.031J ','Displaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154110,10,'S82.031H ','Displaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154109,10,'S82.031G ','Displaced transverse fracture of right patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154108,10,'S82.031F ','Displaced transverse fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154107,10,'S82.031E ','Displaced transverse fracture of right patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154106,10,'S82.031D ','Displaced transverse fracture of right patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154105,10,'S82.031C ','Displaced transverse fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154104,10,'S82.031B ','Displaced transverse fracture of right patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154103,10,'S82.031A ','Displaced transverse fracture of right patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154102,10,'S82.026S ','Nondisplaced longitudinal fracture of unspecified patella, sequela','Y','0000-00-00 00:00:00'),(154101,10,'S82.026R ','Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154100,10,'S82.026Q ','Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154099,10,'S82.026P ','Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154098,10,'S82.026N ','Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154097,10,'S82.026M ','Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154096,10,'S82.026K ','Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154095,10,'S82.026J ','Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154094,10,'S82.026H ','Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154093,10,'S82.026G ','Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154092,10,'S82.026F ','Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154091,10,'S82.026E ','Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154090,10,'S82.026D ','Nondisplaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154089,10,'S82.026C ','Nondisplaced longitudinal fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154088,10,'S82.026B ','Nondisplaced longitudinal fracture of unspecified patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154087,10,'S82.026A ','Nondisplaced longitudinal fracture of unspecified patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154086,10,'S82.025S ','Nondisplaced longitudinal fracture of left patella, sequela','Y','0000-00-00 00:00:00'),(154085,10,'S82.025R ','Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154084,10,'S82.025Q ','Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154083,10,'S82.025P ','Nondisplaced longitudinal fracture of left patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154082,10,'S82.025N ','Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154081,10,'S82.025M ','Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154080,10,'S82.025K ','Nondisplaced longitudinal fracture of left patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154079,10,'S82.025J ','Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154078,10,'S82.025H ','Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154077,10,'S82.025G ','Nondisplaced longitudinal fracture of left patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154076,10,'S82.025F ','Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154075,10,'S82.025E ','Nondisplaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154074,10,'S82.025D ','Nondisplaced longitudinal fracture of left patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154073,10,'S82.025C ','Nondisplaced longitudinal fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154072,10,'S82.025B ','Nondisplaced longitudinal fracture of left patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154071,10,'S82.025A ','Nondisplaced longitudinal fracture of left patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154070,10,'S82.024S ','Nondisplaced longitudinal fracture of right patella, sequela','Y','0000-00-00 00:00:00'),(154069,10,'S82.024R ','Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154068,10,'S82.024Q ','Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154067,10,'S82.024P ','Nondisplaced longitudinal fracture of right patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154066,10,'S82.024N ','Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154065,10,'S82.024M ','Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154064,10,'S82.024K ','Nondisplaced longitudinal fracture of right patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154063,10,'S82.024J ','Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154062,10,'S82.024H ','Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154061,10,'S82.024G ','Nondisplaced longitudinal fracture of right patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154060,10,'S82.024F ','Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154059,10,'S82.024E ','Nondisplaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154058,10,'S82.024D ','Nondisplaced longitudinal fracture of right patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154057,10,'S82.024C ','Nondisplaced longitudinal fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154056,10,'S82.024B ','Nondisplaced longitudinal fracture of right patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154055,10,'S82.024A ','Nondisplaced longitudinal fracture of right patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154054,10,'S82.023S ','Displaced longitudinal fracture of unspecified patella, sequela','Y','0000-00-00 00:00:00'),(154053,10,'S82.023R ','Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154052,10,'S82.023Q ','Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154051,10,'S82.023P ','Displaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154050,10,'S82.023N ','Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154049,10,'S82.023M ','Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154048,10,'S82.023K ','Displaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154047,10,'S82.023J ','Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154046,10,'S82.023H ','Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154045,10,'S82.023G ','Displaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154044,10,'S82.023F ','Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154043,10,'S82.023E ','Displaced longitudinal fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154042,10,'S82.023D ','Displaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154041,10,'S82.023C ','Displaced longitudinal fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154040,10,'S82.023B ','Displaced longitudinal fracture of unspecified patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154039,10,'S82.023A ','Displaced longitudinal fracture of unspecified patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154038,10,'S82.022S ','Displaced longitudinal fracture of left patella, sequela','Y','0000-00-00 00:00:00'),(154037,10,'S82.022R ','Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154036,10,'S82.022Q ','Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154035,10,'S82.022P ','Displaced longitudinal fracture of left patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154034,10,'S82.022N ','Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154033,10,'S82.022M ','Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154032,10,'S82.022K ','Displaced longitudinal fracture of left patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154031,10,'S82.022J ','Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154030,10,'S82.022H ','Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154029,10,'S82.022G ','Displaced longitudinal fracture of left patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154028,10,'S82.022F ','Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154027,10,'S82.022E ','Displaced longitudinal fracture of left patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154026,10,'S82.022D ','Displaced longitudinal fracture of left patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154025,10,'S82.022C ','Displaced longitudinal fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154024,10,'S82.022B ','Displaced longitudinal fracture of left patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154023,10,'S82.022A ','Displaced longitudinal fracture of left patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154022,10,'S82.021S ','Displaced longitudinal fracture of right patella, sequela','Y','0000-00-00 00:00:00'),(154021,10,'S82.021R ','Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154020,10,'S82.021Q ','Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154019,10,'S82.021P ','Displaced longitudinal fracture of right patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154018,10,'S82.021N ','Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154017,10,'S82.021M ','Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154016,10,'S82.021K ','Displaced longitudinal fracture of right patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(154015,10,'S82.021J ','Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(154014,10,'S82.021H ','Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(154013,10,'S82.021G ','Displaced longitudinal fracture of right patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(154012,10,'S82.021F ','Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(154011,10,'S82.021E ','Displaced longitudinal fracture of right patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(154010,10,'S82.021D ','Displaced longitudinal fracture of right patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(154009,10,'S82.021C ','Displaced longitudinal fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(154008,10,'S82.021B ','Displaced longitudinal fracture of right patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(154007,10,'S82.021A ','Displaced longitudinal fracture of right patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(154006,10,'S82.016S ','Nondisplaced osteochondral fracture of unspecified patella, sequela','Y','0000-00-00 00:00:00'),(154005,10,'S82.016R ','Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(154004,10,'S82.016Q ','Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(154003,10,'S82.016P ','Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(154002,10,'S82.016N ','Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(154001,10,'S82.016M ','Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(154000,10,'S82.016K ','Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(153999,10,'S82.016J ','Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(153998,10,'S82.016H ','Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(153997,10,'S82.016G ','Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(153996,10,'S82.016F ','Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(153995,10,'S82.016E ','Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(153994,10,'S82.016D ','Nondisplaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(153993,10,'S82.016C ','Nondisplaced osteochondral fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(153992,10,'S82.016B ','Nondisplaced osteochondral fracture of unspecified patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(153991,10,'S82.016A ','Nondisplaced osteochondral fracture of unspecified patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153990,10,'S82.015S ','Nondisplaced osteochondral fracture of left patella, sequela','Y','0000-00-00 00:00:00'),(153989,10,'S82.015R ','Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(153988,10,'S82.015Q ','Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(153987,10,'S82.015P ','Nondisplaced osteochondral fracture of left patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(153986,10,'S82.015N ','Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(153985,10,'S82.015M ','Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(153984,10,'S82.015K ','Nondisplaced osteochondral fracture of left patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(153983,10,'S82.015J ','Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(153982,10,'S82.015H ','Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(153981,10,'S82.015G ','Nondisplaced osteochondral fracture of left patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(153980,10,'S82.015F ','Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(153979,10,'S82.015E ','Nondisplaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(153978,10,'S82.015D ','Nondisplaced osteochondral fracture of left patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(153977,10,'S82.015C ','Nondisplaced osteochondral fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(153976,10,'S82.015B ','Nondisplaced osteochondral fracture of left patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(153975,10,'S82.015A ','Nondisplaced osteochondral fracture of left patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153974,10,'S82.014S ','Nondisplaced osteochondral fracture of right patella, sequela','Y','0000-00-00 00:00:00'),(153973,10,'S82.014R ','Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(153972,10,'S82.014Q ','Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(153971,10,'S82.014P ','Nondisplaced osteochondral fracture of right patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(153970,10,'S82.014N ','Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(153969,10,'S82.014M ','Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(153968,10,'S82.014K ','Nondisplaced osteochondral fracture of right patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(153967,10,'S82.014J ','Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(153966,10,'S82.014H ','Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(153965,10,'S82.014G ','Nondisplaced osteochondral fracture of right patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(153964,10,'S82.014F ','Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(153963,10,'S82.014E ','Nondisplaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(153962,10,'S82.014D ','Nondisplaced osteochondral fracture of right patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(153961,10,'S82.014C ','Nondisplaced osteochondral fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(153960,10,'S82.014B ','Nondisplaced osteochondral fracture of right patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(153959,10,'S82.014A ','Nondisplaced osteochondral fracture of right patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153958,10,'S82.013S ','Displaced osteochondral fracture of unspecified patella, sequela','Y','0000-00-00 00:00:00'),(153957,10,'S82.013R ','Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(153956,10,'S82.013Q ','Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(153955,10,'S82.013P ','Displaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(153954,10,'S82.013N ','Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(153953,10,'S82.013M ','Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(153952,10,'S82.013K ','Displaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(153951,10,'S82.013J ','Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(153950,10,'S82.013H ','Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(153949,10,'S82.013G ','Displaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(153948,10,'S82.013F ','Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(153947,10,'S82.013E ','Displaced osteochondral fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(153946,10,'S82.013D ','Displaced osteochondral fracture of unspecified patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(153945,10,'S82.013C ','Displaced osteochondral fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(153944,10,'S82.013B ','Displaced osteochondral fracture of unspecified patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(153943,10,'S82.013A ','Displaced osteochondral fracture of unspecified patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153942,10,'S82.012S ','Displaced osteochondral fracture of left patella, sequela','Y','0000-00-00 00:00:00'),(153941,10,'S82.012R ','Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(153940,10,'S82.012Q ','Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(153939,10,'S82.012P ','Displaced osteochondral fracture of left patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(153938,10,'S82.012N ','Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(153937,10,'S82.012M ','Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(153936,10,'S82.012K ','Displaced osteochondral fracture of left patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(153935,10,'S82.012J ','Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(153934,10,'S82.012H ','Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(153933,10,'S82.012G ','Displaced osteochondral fracture of left patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(153932,10,'S82.012F ','Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(153931,10,'S82.012E ','Displaced osteochondral fracture of left patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(153930,10,'S82.012D ','Displaced osteochondral fracture of left patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(153929,10,'S82.012C ','Displaced osteochondral fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(153928,10,'S82.012B ','Displaced osteochondral fracture of left patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(153927,10,'S82.012A ','Displaced osteochondral fracture of left patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153926,10,'S82.011S ','Displaced osteochondral fracture of right patella, sequela','Y','0000-00-00 00:00:00'),(153925,10,'S82.011R ','Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(153924,10,'S82.011Q ','Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(153923,10,'S82.011P ','Displaced osteochondral fracture of right patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(153922,10,'S82.011N ','Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(153921,10,'S82.011M ','Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(153920,10,'S82.011K ','Displaced osteochondral fracture of right patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(153919,10,'S82.011J ','Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(153918,10,'S82.011H ','Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(153917,10,'S82.011G ','Displaced osteochondral fracture of right patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(153916,10,'S82.011F ','Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(153915,10,'S82.011E ','Displaced osteochondral fracture of right patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(153914,10,'S82.011D ','Displaced osteochondral fracture of right patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(153913,10,'S82.011C ','Displaced osteochondral fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(153912,10,'S82.011B ','Displaced osteochondral fracture of right patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(153911,10,'S82.011A ','Displaced osteochondral fracture of right patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153910,10,'S82.009S ','Unspecified fracture of unspecified patella, sequela','Y','0000-00-00 00:00:00'),(153909,10,'S82.009R ','Unspecified fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(153908,10,'S82.009Q ','Unspecified fracture of unspecified patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(153907,10,'S82.009P ','Unspecified fracture of unspecified patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(153906,10,'S82.009N ','Unspecified fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(153905,10,'S82.009M ','Unspecified fracture of unspecified patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(153904,10,'S82.009K ','Unspecified fracture of unspecified patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(153903,10,'S82.009J ','Unspecified fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(153902,10,'S82.009H ','Unspecified fracture of unspecified patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(153901,10,'S82.009G ','Unspecified fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(153900,10,'S82.009F ','Unspecified fracture of unspecified patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(153899,10,'S82.009E ','Unspecified fracture of unspecified patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(153898,10,'S82.009D ','Unspecified fracture of unspecified patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(153897,10,'S82.009C ','Unspecified fracture of unspecified patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(153896,10,'S82.009B ','Unspecified fracture of unspecified patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(153895,10,'S82.009A ','Unspecified fracture of unspecified patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153894,10,'S82.002S ','Unspecified fracture of left patella, sequela','Y','0000-00-00 00:00:00'),(153893,10,'S82.002R ','Unspecified fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(153892,10,'S82.002Q ','Unspecified fracture of left patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(153891,10,'S82.002P ','Unspecified fracture of left patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(153890,10,'S82.002N ','Unspecified fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(153889,10,'S82.002M ','Unspecified fracture of left patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(153888,10,'S82.002K ','Unspecified fracture of left patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(153887,10,'S82.002J ','Unspecified fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(153886,10,'S82.002H ','Unspecified fracture of left patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(153885,10,'S82.002G ','Unspecified fracture of left patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(153884,10,'S82.002F ','Unspecified fracture of left patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(153883,10,'S82.002E ','Unspecified fracture of left patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(153882,10,'S82.002D ','Unspecified fracture of left patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(153881,10,'S82.002C ','Unspecified fracture of left patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(153880,10,'S82.002B ','Unspecified fracture of left patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(153879,10,'S82.002A ','Unspecified fracture of left patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153878,10,'S82.001S ','Unspecified fracture of right patella, sequela','Y','0000-00-00 00:00:00'),(153877,10,'S82.001R ','Unspecified fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(153876,10,'S82.001Q ','Unspecified fracture of right patella, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(153875,10,'S82.001P ','Unspecified fracture of right patella, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(153874,10,'S82.001N ','Unspecified fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(153873,10,'S82.001M ','Unspecified fracture of right patella, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(153872,10,'S82.001K ','Unspecified fracture of right patella, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(153871,10,'S82.001J ','Unspecified fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(153870,10,'S82.001H ','Unspecified fracture of right patella, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(153869,10,'S82.001G ','Unspecified fracture of right patella, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(153868,10,'S82.001F ','Unspecified fracture of right patella, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(153867,10,'S82.001E ','Unspecified fracture of right patella, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(153866,10,'S82.001D ','Unspecified fracture of right patella, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(153865,10,'S82.001C ','Unspecified fracture of right patella, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(153864,10,'S82.001B ','Unspecified fracture of right patella, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(153863,10,'S82.001A ','Unspecified fracture of right patella, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153862,10,'S81.859S ','Open bite, unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(153861,10,'S81.859D ','Open bite, unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153860,10,'S81.859A ','Open bite, unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153859,10,'S81.852S ','Open bite, left lower leg, sequela','Y','0000-00-00 00:00:00'),(153858,10,'S81.852D ','Open bite, left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153857,10,'S81.852A ','Open bite, left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153856,10,'S81.851S ','Open bite, right lower leg, sequela','Y','0000-00-00 00:00:00'),(153855,10,'S81.851D ','Open bite, right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153854,10,'S81.851A ','Open bite, right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153853,10,'S81.849S ','Puncture wound with foreign body, unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(153852,10,'S81.849D ','Puncture wound with foreign body, unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153851,10,'S81.849A ','Puncture wound with foreign body, unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153850,10,'S81.842S ','Puncture wound with foreign body, left lower leg, sequela','Y','0000-00-00 00:00:00'),(153849,10,'S81.842D ','Puncture wound with foreign body, left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153848,10,'S81.842A ','Puncture wound with foreign body, left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153847,10,'S81.841S ','Puncture wound with foreign body, right lower leg, sequela','Y','0000-00-00 00:00:00'),(153846,10,'S81.841D ','Puncture wound with foreign body, right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153845,10,'S81.841A ','Puncture wound with foreign body, right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153844,10,'S81.839S ','Puncture wound without foreign body, unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(153843,10,'S81.839D ','Puncture wound without foreign body, unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153842,10,'S81.839A ','Puncture wound without foreign body, unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153841,10,'S81.832S ','Puncture wound without foreign body, left lower leg, sequela','Y','0000-00-00 00:00:00'),(153840,10,'S81.832D ','Puncture wound without foreign body, left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153839,10,'S81.832A ','Puncture wound without foreign body, left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153838,10,'S81.831S ','Puncture wound without foreign body, right lower leg, sequela','Y','0000-00-00 00:00:00'),(153837,10,'S81.831D ','Puncture wound without foreign body, right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153836,10,'S81.831A ','Puncture wound without foreign body, right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153835,10,'S81.829S ','Laceration with foreign body, unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(153834,10,'S81.829D ','Laceration with foreign body, unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153833,10,'S81.829A ','Laceration with foreign body, unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153832,10,'S81.822S ','Laceration with foreign body, left lower leg, sequela','Y','0000-00-00 00:00:00'),(153831,10,'S81.822D ','Laceration with foreign body, left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153830,10,'S81.822A ','Laceration with foreign body, left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153829,10,'S81.821S ','Laceration with foreign body, right lower leg, sequela','Y','0000-00-00 00:00:00'),(153828,10,'S81.821D ','Laceration with foreign body, right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153827,10,'S81.821A ','Laceration with foreign body, right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153826,10,'S81.819S ','Laceration without foreign body, unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(153825,10,'S81.819D ','Laceration without foreign body, unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153824,10,'S81.819A ','Laceration without foreign body, unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153823,10,'S81.812S ','Laceration without foreign body, left lower leg, sequela','Y','0000-00-00 00:00:00'),(153822,10,'S81.812D ','Laceration without foreign body, left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153821,10,'S81.812A ','Laceration without foreign body, left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153820,10,'S81.811S ','Laceration without foreign body, right lower leg, sequela','Y','0000-00-00 00:00:00'),(153819,10,'S81.811D ','Laceration without foreign body, right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153818,10,'S81.811A ','Laceration without foreign body, right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153817,10,'S81.809S ','Unspecified open wound, unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(153816,10,'S81.809D ','Unspecified open wound, unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153815,10,'S81.809A ','Unspecified open wound, unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153814,10,'S81.802S ','Unspecified open wound, left lower leg, sequela','Y','0000-00-00 00:00:00'),(153813,10,'S81.802D ','Unspecified open wound, left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153812,10,'S81.802A ','Unspecified open wound, left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153811,10,'S81.801S ','Unspecified open wound, right lower leg, sequela','Y','0000-00-00 00:00:00'),(153810,10,'S81.801D ','Unspecified open wound, right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153809,10,'S81.801A ','Unspecified open wound, right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153808,10,'S81.059S ','Open bite, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(153807,10,'S81.059D ','Open bite, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153806,10,'S81.059A ','Open bite, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(153805,10,'S81.052S ','Open bite, left knee, sequela','Y','0000-00-00 00:00:00'),(153804,10,'S81.052D ','Open bite, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153803,10,'S81.052A ','Open bite, left knee, initial encounter','Y','0000-00-00 00:00:00'),(153802,10,'S81.051S ','Open bite, right knee, sequela','Y','0000-00-00 00:00:00'),(153801,10,'S81.051D ','Open bite, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153800,10,'S81.051A ','Open bite, right knee, initial encounter','Y','0000-00-00 00:00:00'),(153799,10,'S81.049S ','Puncture wound with foreign body, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(153798,10,'S81.049D ','Puncture wound with foreign body, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153797,10,'S81.049A ','Puncture wound with foreign body, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(153796,10,'S81.042S ','Puncture wound with foreign body, left knee, sequela','Y','0000-00-00 00:00:00'),(153795,10,'S81.042D ','Puncture wound with foreign body, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153794,10,'S81.042A ','Puncture wound with foreign body, left knee, initial encounter','Y','0000-00-00 00:00:00'),(153793,10,'S81.041S ','Puncture wound with foreign body, right knee, sequela','Y','0000-00-00 00:00:00'),(153792,10,'S81.041D ','Puncture wound with foreign body, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153791,10,'S81.041A ','Puncture wound with foreign body, right knee, initial encounter','Y','0000-00-00 00:00:00'),(153790,10,'S81.039S ','Puncture wound without foreign body, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(153789,10,'S81.039D ','Puncture wound without foreign body, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153788,10,'S81.039A ','Puncture wound without foreign body, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(153787,10,'S81.032S ','Puncture wound without foreign body, left knee, sequela','Y','0000-00-00 00:00:00'),(153786,10,'S81.032D ','Puncture wound without foreign body, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153785,10,'S81.032A ','Puncture wound without foreign body, left knee, initial encounter','Y','0000-00-00 00:00:00'),(153784,10,'S81.031S ','Puncture wound without foreign body, right knee, sequela','Y','0000-00-00 00:00:00'),(153783,10,'S81.031D ','Puncture wound without foreign body, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153782,10,'S81.031A ','Puncture wound without foreign body, right knee, initial encounter','Y','0000-00-00 00:00:00'),(153781,10,'S81.029S ','Laceration with foreign body, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(153780,10,'S81.029D ','Laceration with foreign body, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153779,10,'S81.029A ','Laceration with foreign body, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(153778,10,'S81.022S ','Laceration with foreign body, left knee, sequela','Y','0000-00-00 00:00:00'),(153777,10,'S81.022D ','Laceration with foreign body, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153776,10,'S81.022A ','Laceration with foreign body, left knee, initial encounter','Y','0000-00-00 00:00:00'),(153775,10,'S81.021S ','Laceration with foreign body, right knee, sequela','Y','0000-00-00 00:00:00'),(153774,10,'S81.021D ','Laceration with foreign body, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153773,10,'S81.021A ','Laceration with foreign body, right knee, initial encounter','Y','0000-00-00 00:00:00'),(153772,10,'S81.019S ','Laceration without foreign body, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(153771,10,'S81.019D ','Laceration without foreign body, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153770,10,'S81.019A ','Laceration without foreign body, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(153769,10,'S81.012S ','Laceration without foreign body, left knee, sequela','Y','0000-00-00 00:00:00'),(153768,10,'S81.012D ','Laceration without foreign body, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153767,10,'S81.012A ','Laceration without foreign body, left knee, initial encounter','Y','0000-00-00 00:00:00'),(153766,10,'S81.011S ','Laceration without foreign body, right knee, sequela','Y','0000-00-00 00:00:00'),(153765,10,'S81.011D ','Laceration without foreign body, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153764,10,'S81.011A ','Laceration without foreign body, right knee, initial encounter','Y','0000-00-00 00:00:00'),(153763,10,'S81.009S ','Unspecified open wound, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(153762,10,'S81.009D ','Unspecified open wound, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153761,10,'S81.009A ','Unspecified open wound, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(153760,10,'S81.002S ','Unspecified open wound, left knee, sequela','Y','0000-00-00 00:00:00'),(153759,10,'S81.002D ','Unspecified open wound, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153758,10,'S81.002A ','Unspecified open wound, left knee, initial encounter','Y','0000-00-00 00:00:00'),(153757,10,'S81.001S ','Unspecified open wound, right knee, sequela','Y','0000-00-00 00:00:00'),(153756,10,'S81.001D ','Unspecified open wound, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153755,10,'S81.001A ','Unspecified open wound, right knee, initial encounter','Y','0000-00-00 00:00:00'),(153754,10,'S80.929S ','Unspecified superficial injury of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(153753,10,'S80.929D ','Unspecified superficial injury of unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153752,10,'S80.929A ','Unspecified superficial injury of unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153751,10,'S80.922S ','Unspecified superficial injury of left lower leg, sequela','Y','0000-00-00 00:00:00'),(153750,10,'S80.922D ','Unspecified superficial injury of left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153749,10,'S80.922A ','Unspecified superficial injury of left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153748,10,'S80.921S ','Unspecified superficial injury of right lower leg, sequela','Y','0000-00-00 00:00:00'),(153747,10,'S80.921D ','Unspecified superficial injury of right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153746,10,'S80.921A ','Unspecified superficial injury of right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153745,10,'S80.919S ','Unspecified superficial injury of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(153744,10,'S80.919D ','Unspecified superficial injury of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153743,10,'S80.919A ','Unspecified superficial injury of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(153742,10,'S80.912S ','Unspecified superficial injury of left knee, sequela','Y','0000-00-00 00:00:00'),(153741,10,'S80.912D ','Unspecified superficial injury of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153740,10,'S80.912A ','Unspecified superficial injury of left knee, initial encounter','Y','0000-00-00 00:00:00'),(153739,10,'S80.911S ','Unspecified superficial injury of right knee, sequela','Y','0000-00-00 00:00:00'),(153738,10,'S80.911D ','Unspecified superficial injury of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153737,10,'S80.911A ','Unspecified superficial injury of right knee, initial encounter','Y','0000-00-00 00:00:00'),(153736,10,'S80.879S ','Other superficial bite, unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(153735,10,'S80.879D ','Other superficial bite, unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153734,10,'S80.879A ','Other superficial bite, unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153733,10,'S80.872S ','Other superficial bite, left lower leg, sequela','Y','0000-00-00 00:00:00'),(153732,10,'S80.872D ','Other superficial bite, left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153731,10,'S80.872A ','Other superficial bite, left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153730,10,'S80.871S ','Other superficial bite, right lower leg, sequela','Y','0000-00-00 00:00:00'),(153729,10,'S80.871D ','Other superficial bite, right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153728,10,'S80.871A ','Other superficial bite, right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153727,10,'S80.869S ','Insect bite (nonvenomous), unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(153726,10,'S80.869D ','Insect bite (nonvenomous), unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153725,10,'S80.869A ','Insect bite (nonvenomous), unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153724,10,'S80.862S ','Insect bite (nonvenomous), left lower leg, sequela','Y','0000-00-00 00:00:00'),(153723,10,'S80.862D ','Insect bite (nonvenomous), left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153722,10,'S80.862A ','Insect bite (nonvenomous), left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153721,10,'S80.861S ','Insect bite (nonvenomous), right lower leg, sequela','Y','0000-00-00 00:00:00'),(153720,10,'S80.861D ','Insect bite (nonvenomous), right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153719,10,'S80.861A ','Insect bite (nonvenomous), right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153718,10,'S80.859S ','Superficial foreign body, unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(153717,10,'S80.859D ','Superficial foreign body, unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153716,10,'S80.859A ','Superficial foreign body, unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153715,10,'S80.852S ','Superficial foreign body, left lower leg, sequela','Y','0000-00-00 00:00:00'),(153714,10,'S80.852D ','Superficial foreign body, left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153713,10,'S80.852A ','Superficial foreign body, left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153712,10,'S80.851S ','Superficial foreign body, right lower leg, sequela','Y','0000-00-00 00:00:00'),(153711,10,'S80.851D ','Superficial foreign body, right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153710,10,'S80.851A ','Superficial foreign body, right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153709,10,'S80.849S ','External constriction, unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(153708,10,'S80.849D ','External constriction, unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153707,10,'S80.849A ','External constriction, unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153706,10,'S80.842S ','External constriction, left lower leg, sequela','Y','0000-00-00 00:00:00'),(153705,10,'S80.842D ','External constriction, left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153704,10,'S80.842A ','External constriction, left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153703,10,'S80.841S ','External constriction, right lower leg, sequela','Y','0000-00-00 00:00:00'),(153702,10,'S80.841D ','External constriction, right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153701,10,'S80.841A ','External constriction, right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153700,10,'S80.829S ','Blister (nonthermal), unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(153699,10,'S80.829D ','Blister (nonthermal), unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153698,10,'S80.829A ','Blister (nonthermal), unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153697,10,'S80.822S ','Blister (nonthermal), left lower leg, sequela','Y','0000-00-00 00:00:00'),(153696,10,'S80.822D ','Blister (nonthermal), left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153695,10,'S80.822A ','Blister (nonthermal), left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153694,10,'S80.821S ','Blister (nonthermal), right lower leg, sequela','Y','0000-00-00 00:00:00'),(153693,10,'S80.821D ','Blister (nonthermal), right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153692,10,'S80.821A ','Blister (nonthermal), right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153691,10,'S80.819S ','Abrasion, unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(153690,10,'S80.819D ','Abrasion, unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153689,10,'S80.819A ','Abrasion, unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153688,10,'S80.812S ','Abrasion, left lower leg, sequela','Y','0000-00-00 00:00:00'),(153687,10,'S80.812D ','Abrasion, left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153686,10,'S80.812A ','Abrasion, left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153685,10,'S80.811S ','Abrasion, right lower leg, sequela','Y','0000-00-00 00:00:00'),(153684,10,'S80.811D ','Abrasion, right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153683,10,'S80.811A ','Abrasion, right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153682,10,'S80.279S ','Other superficial bite of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(153681,10,'S80.279D ','Other superficial bite of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153680,10,'S80.279A ','Other superficial bite of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(153679,10,'S80.272S ','Other superficial bite of left knee, sequela','Y','0000-00-00 00:00:00'),(153678,10,'S80.272D ','Other superficial bite of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153677,10,'S80.272A ','Other superficial bite of left knee, initial encounter','Y','0000-00-00 00:00:00'),(153676,10,'S80.271S ','Other superficial bite of right knee, sequela','Y','0000-00-00 00:00:00'),(153675,10,'S80.271D ','Other superficial bite of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153674,10,'S80.271A ','Other superficial bite of right knee, initial encounter','Y','0000-00-00 00:00:00'),(153673,10,'S80.269S ','Insect bite (nonvenomous), unspecified knee, sequela','Y','0000-00-00 00:00:00'),(153672,10,'S80.269D ','Insect bite (nonvenomous), unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153671,10,'S80.269A ','Insect bite (nonvenomous), unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(153670,10,'S80.262S ','Insect bite (nonvenomous), left knee, sequela','Y','0000-00-00 00:00:00'),(153669,10,'S80.262D ','Insect bite (nonvenomous), left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153668,10,'S80.262A ','Insect bite (nonvenomous), left knee, initial encounter','Y','0000-00-00 00:00:00'),(153667,10,'S80.261S ','Insect bite (nonvenomous), right knee, sequela','Y','0000-00-00 00:00:00'),(153666,10,'S80.261D ','Insect bite (nonvenomous), right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153665,10,'S80.261A ','Insect bite (nonvenomous), right knee, initial encounter','Y','0000-00-00 00:00:00'),(153664,10,'S80.259S ','Superficial foreign body, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(153663,10,'S80.259D ','Superficial foreign body, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153662,10,'S80.259A ','Superficial foreign body, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(153661,10,'S80.252S ','Superficial foreign body, left knee, sequela','Y','0000-00-00 00:00:00'),(153660,10,'S80.252D ','Superficial foreign body, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153659,10,'S80.252A ','Superficial foreign body, left knee, initial encounter','Y','0000-00-00 00:00:00'),(153658,10,'S80.251S ','Superficial foreign body, right knee, sequela','Y','0000-00-00 00:00:00'),(153657,10,'S80.251D ','Superficial foreign body, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153656,10,'S80.251A ','Superficial foreign body, right knee, initial encounter','Y','0000-00-00 00:00:00'),(153655,10,'S80.249S ','External constriction, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(153654,10,'S80.249D ','External constriction, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153653,10,'S80.249A ','External constriction, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(153652,10,'S80.242S ','External constriction, left knee, sequela','Y','0000-00-00 00:00:00'),(153651,10,'S80.242D ','External constriction, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153650,10,'S80.242A ','External constriction, left knee, initial encounter','Y','0000-00-00 00:00:00'),(153649,10,'S80.241S ','External constriction, right knee, sequela','Y','0000-00-00 00:00:00'),(153648,10,'S80.241D ','External constriction, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153647,10,'S80.241A ','External constriction, right knee, initial encounter','Y','0000-00-00 00:00:00'),(153646,10,'S80.229S ','Blister (nonthermal), unspecified knee, sequela','Y','0000-00-00 00:00:00'),(153645,10,'S80.229D ','Blister (nonthermal), unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153644,10,'S80.229A ','Blister (nonthermal), unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(153643,10,'S80.222S ','Blister (nonthermal), left knee, sequela','Y','0000-00-00 00:00:00'),(153642,10,'S80.222D ','Blister (nonthermal), left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153641,10,'S80.222A ','Blister (nonthermal), left knee, initial encounter','Y','0000-00-00 00:00:00'),(153640,10,'S80.221S ','Blister (nonthermal), right knee, sequela','Y','0000-00-00 00:00:00'),(153639,10,'S80.221D ','Blister (nonthermal), right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153638,10,'S80.221A ','Blister (nonthermal), right knee, initial encounter','Y','0000-00-00 00:00:00'),(153637,10,'S80.219S ','Abrasion, unspecified knee, sequela','Y','0000-00-00 00:00:00'),(153636,10,'S80.219D ','Abrasion, unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153635,10,'S80.219A ','Abrasion, unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(153634,10,'S80.212S ','Abrasion, left knee, sequela','Y','0000-00-00 00:00:00'),(153633,10,'S80.212D ','Abrasion, left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153632,10,'S80.212A ','Abrasion, left knee, initial encounter','Y','0000-00-00 00:00:00'),(153631,10,'S80.211S ','Abrasion, right knee, sequela','Y','0000-00-00 00:00:00'),(153630,10,'S80.211D ','Abrasion, right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153629,10,'S80.211A ','Abrasion, right knee, initial encounter','Y','0000-00-00 00:00:00'),(153628,10,'S80.12XS ','Contusion of left lower leg, sequela','Y','0000-00-00 00:00:00'),(153627,10,'S80.12XD ','Contusion of left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153626,10,'S80.12XA ','Contusion of left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153625,10,'S80.11XS ','Contusion of right lower leg, sequela','Y','0000-00-00 00:00:00'),(153624,10,'S80.11XD ','Contusion of right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153623,10,'S80.11XA ','Contusion of right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153622,10,'S80.10XS ','Contusion of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(153621,10,'S80.10XD ','Contusion of unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153620,10,'S80.10XA ','Contusion of unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(153619,10,'S80.02XS ','Contusion of left knee, sequela','Y','0000-00-00 00:00:00'),(153618,10,'S80.02XD ','Contusion of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153617,10,'S80.02XA ','Contusion of left knee, initial encounter','Y','0000-00-00 00:00:00'),(153616,10,'S80.01XS ','Contusion of right knee, sequela','Y','0000-00-00 00:00:00'),(153615,10,'S80.01XD ','Contusion of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153614,10,'S80.01XA ','Contusion of right knee, initial encounter','Y','0000-00-00 00:00:00'),(153613,10,'S80.00XS ','Contusion of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(153612,10,'S80.00XD ','Contusion of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153611,10,'S80.00XA ','Contusion of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(153610,10,'S79.929S ','Unspecified injury of unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153609,10,'S79.929D ','Unspecified injury of unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153608,10,'S79.929A ','Unspecified injury of unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153607,10,'S79.922S ','Unspecified injury of left thigh, sequela','Y','0000-00-00 00:00:00'),(153606,10,'S79.922D ','Unspecified injury of left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153605,10,'S79.922A ','Unspecified injury of left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153604,10,'S79.921S ','Unspecified injury of right thigh, sequela','Y','0000-00-00 00:00:00'),(153603,10,'S79.921D ','Unspecified injury of right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153602,10,'S79.921A ','Unspecified injury of right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153601,10,'S79.919S ','Unspecified injury of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(153600,10,'S79.919D ','Unspecified injury of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153599,10,'S79.919A ','Unspecified injury of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(153598,10,'S79.912S ','Unspecified injury of left hip, sequela','Y','0000-00-00 00:00:00'),(153597,10,'S79.912D ','Unspecified injury of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153596,10,'S79.912A ','Unspecified injury of left hip, initial encounter','Y','0000-00-00 00:00:00'),(153595,10,'S79.911S ','Unspecified injury of right hip, sequela','Y','0000-00-00 00:00:00'),(153594,10,'S79.911D ','Unspecified injury of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153593,10,'S79.911A ','Unspecified injury of right hip, initial encounter','Y','0000-00-00 00:00:00'),(153592,10,'S79.829S ','Other specified injuries of unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153591,10,'S79.829D ','Other specified injuries of unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153590,10,'S79.829A ','Other specified injuries of unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153589,10,'S79.822S ','Other specified injuries of left thigh, sequela','Y','0000-00-00 00:00:00'),(153588,10,'S79.822D ','Other specified injuries of left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153587,10,'S79.822A ','Other specified injuries of left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153586,10,'S79.821S ','Other specified injuries of right thigh, sequela','Y','0000-00-00 00:00:00'),(153585,10,'S79.821D ','Other specified injuries of right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153584,10,'S79.821A ','Other specified injuries of right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153583,10,'S79.819S ','Other specified injuries of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(153582,10,'S79.819D ','Other specified injuries of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153581,10,'S79.819A ','Other specified injuries of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(153580,10,'S79.812S ','Other specified injuries of left hip, sequela','Y','0000-00-00 00:00:00'),(153579,10,'S79.812D ','Other specified injuries of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153578,10,'S79.812A ','Other specified injuries of left hip, initial encounter','Y','0000-00-00 00:00:00'),(153577,10,'S79.811S ','Other specified injuries of right hip, sequela','Y','0000-00-00 00:00:00'),(153576,10,'S79.811D ','Other specified injuries of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153575,10,'S79.811A ','Other specified injuries of right hip, initial encounter','Y','0000-00-00 00:00:00'),(153574,10,'S79.199S ','Other physeal fracture of lower end of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(153573,10,'S79.199P ','Other physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153572,10,'S79.199K ','Other physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153571,10,'S79.199G ','Other physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153570,10,'S79.199D ','Other physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153569,10,'S79.199A ','Other physeal fracture of lower end of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153568,10,'S79.192S ','Other physeal fracture of lower end of left femur, sequela','Y','0000-00-00 00:00:00'),(153567,10,'S79.192P ','Other physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153566,10,'S79.192K ','Other physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153565,10,'S79.192G ','Other physeal fracture of lower end of left femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153564,10,'S79.192D ','Other physeal fracture of lower end of left femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153562,10,'S79.191S ','Other physeal fracture of lower end of right femur, sequela','Y','0000-00-00 00:00:00'),(153563,10,'S79.192A ','Other physeal fracture of lower end of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153561,10,'S79.191P ','Other physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153560,10,'S79.191K ','Other physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153559,10,'S79.191G ','Other physeal fracture of lower end of right femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153558,10,'S79.191D ','Other physeal fracture of lower end of right femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153557,10,'S79.191A ','Other physeal fracture of lower end of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153556,10,'S79.149S ','Salter-Harris Type IV physeal fracture of lower end of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(153555,10,'S79.149P ','Salter-Harris Type IV physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153554,10,'S79.149K ','Salter-Harris Type IV physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153553,10,'S79.149G ','Salter-Harris Type IV physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153552,10,'S79.149D ','Salter-Harris Type IV physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153551,10,'S79.149A ','Salter-Harris Type IV physeal fracture of lower end of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153550,10,'S79.142S ','Salter-Harris Type IV physeal fracture of lower end of left femur, sequela','Y','0000-00-00 00:00:00'),(153549,10,'S79.142P ','Salter-Harris Type IV physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153548,10,'S79.142K ','Salter-Harris Type IV physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153547,10,'S79.142G ','Salter-Harris Type IV physeal fracture of lower end of left femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153546,10,'S79.142D ','Salter-Harris Type IV physeal fracture of lower end of left femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153545,10,'S79.142A ','Salter-Harris Type IV physeal fracture of lower end of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153544,10,'S79.141S ','Salter-Harris Type IV physeal fracture of lower end of right femur, sequela','Y','0000-00-00 00:00:00'),(153543,10,'S79.141P ','Salter-Harris Type IV physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153542,10,'S79.141K ','Salter-Harris Type IV physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153541,10,'S79.141G ','Salter-Harris Type IV physeal fracture of lower end of right femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153540,10,'S79.141D ','Salter-Harris Type IV physeal fracture of lower end of right femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153539,10,'S79.141A ','Salter-Harris Type IV physeal fracture of lower end of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153538,10,'S79.139S ','Salter-Harris Type III physeal fracture of lower end of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(153537,10,'S79.139P ','Salter-Harris Type III physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153536,10,'S79.139K ','Salter-Harris Type III physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153535,10,'S79.139G ','Salter-Harris Type III physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153534,10,'S79.139D ','Salter-Harris Type III physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153533,10,'S79.139A ','Salter-Harris Type III physeal fracture of lower end of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153532,10,'S79.132S ','Salter-Harris Type III physeal fracture of lower end of left femur, sequela','Y','0000-00-00 00:00:00'),(153531,10,'S79.132P ','Salter-Harris Type III physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153530,10,'S79.132K ','Salter-Harris Type III physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153529,10,'S79.132G ','Salter-Harris Type III physeal fracture of lower end of left femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153528,10,'S79.132D ','Salter-Harris Type III physeal fracture of lower end of left femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153527,10,'S79.132A ','Salter-Harris Type III physeal fracture of lower end of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153526,10,'S79.131S ','Salter-Harris Type III physeal fracture of lower end of right femur, sequela','Y','0000-00-00 00:00:00'),(153525,10,'S79.131P ','Salter-Harris Type III physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153524,10,'S79.131K ','Salter-Harris Type III physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153523,10,'S79.131G ','Salter-Harris Type III physeal fracture of lower end of right femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153522,10,'S79.131D ','Salter-Harris Type III physeal fracture of lower end of right femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153521,10,'S79.131A ','Salter-Harris Type III physeal fracture of lower end of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153520,10,'S79.129S ','Salter-Harris Type II physeal fracture of lower end of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(153519,10,'S79.129P ','Salter-Harris Type II physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153518,10,'S79.129K ','Salter-Harris Type II physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153517,10,'S79.129G ','Salter-Harris Type II physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153516,10,'S79.129D ','Salter-Harris Type II physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153515,10,'S79.129A ','Salter-Harris Type II physeal fracture of lower end of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153514,10,'S79.122S ','Salter-Harris Type II physeal fracture of lower end of left femur, sequela','Y','0000-00-00 00:00:00'),(153513,10,'S79.122P ','Salter-Harris Type II physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153512,10,'S79.122K ','Salter-Harris Type II physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153511,10,'S79.122G ','Salter-Harris Type II physeal fracture of lower end of left femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153510,10,'S79.122D ','Salter-Harris Type II physeal fracture of lower end of left femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153509,10,'S79.122A ','Salter-Harris Type II physeal fracture of lower end of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153508,10,'S79.121S ','Salter-Harris Type II physeal fracture of lower end of right femur, sequela','Y','0000-00-00 00:00:00'),(153507,10,'S79.121P ','Salter-Harris Type II physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153506,10,'S79.121K ','Salter-Harris Type II physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153505,10,'S79.121G ','Salter-Harris Type II physeal fracture of lower end of right femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153504,10,'S79.121D ','Salter-Harris Type II physeal fracture of lower end of right femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153503,10,'S79.121A ','Salter-Harris Type II physeal fracture of lower end of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153502,10,'S79.119S ','Salter-Harris Type I physeal fracture of lower end of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(153501,10,'S79.119P ','Salter-Harris Type I physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153500,10,'S79.119K ','Salter-Harris Type I physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153499,10,'S79.119G ','Salter-Harris Type I physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153498,10,'S79.119D ','Salter-Harris Type I physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153497,10,'S79.119A ','Salter-Harris Type I physeal fracture of lower end of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153496,10,'S79.112S ','Salter-Harris Type I physeal fracture of lower end of left femur, sequela','Y','0000-00-00 00:00:00'),(153495,10,'S79.112P ','Salter-Harris Type I physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153494,10,'S79.112K ','Salter-Harris Type I physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153493,10,'S79.112G ','Salter-Harris Type I physeal fracture of lower end of left femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153492,10,'S79.112D ','Salter-Harris Type I physeal fracture of lower end of left femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153491,10,'S79.112A ','Salter-Harris Type I physeal fracture of lower end of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153490,10,'S79.111S ','Salter-Harris Type I physeal fracture of lower end of right femur, sequela','Y','0000-00-00 00:00:00'),(153489,10,'S79.111P ','Salter-Harris Type I physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153488,10,'S79.111K ','Salter-Harris Type I physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153487,10,'S79.111G ','Salter-Harris Type I physeal fracture of lower end of right femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153486,10,'S79.111D ','Salter-Harris Type I physeal fracture of lower end of right femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153485,10,'S79.111A ','Salter-Harris Type I physeal fracture of lower end of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153484,10,'S79.109S ','Unspecified physeal fracture of lower end of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(153483,10,'S79.109P ','Unspecified physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153482,10,'S79.109K ','Unspecified physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153481,10,'S79.109G ','Unspecified physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153480,10,'S79.109D ','Unspecified physeal fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153479,10,'S79.109A ','Unspecified physeal fracture of lower end of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153478,10,'S79.102S ','Unspecified physeal fracture of lower end of left femur, sequela','Y','0000-00-00 00:00:00'),(153477,10,'S79.102P ','Unspecified physeal fracture of lower end of left femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153476,10,'S79.102K ','Unspecified physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153475,10,'S79.102G ','Unspecified physeal fracture of lower end of left femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153474,10,'S79.102D ','Unspecified physeal fracture of lower end of left femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153473,10,'S79.102A ','Unspecified physeal fracture of lower end of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153472,10,'S79.101S ','Unspecified physeal fracture of lower end of right femur, sequela','Y','0000-00-00 00:00:00'),(153471,10,'S79.101P ','Unspecified physeal fracture of lower end of right femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153470,10,'S79.101K ','Unspecified physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153469,10,'S79.101G ','Unspecified physeal fracture of lower end of right femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153468,10,'S79.101D ','Unspecified physeal fracture of lower end of right femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153467,10,'S79.101A ','Unspecified physeal fracture of lower end of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153466,10,'S79.099S ','Other physeal fracture of upper end of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(153465,10,'S79.099P ','Other physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153464,10,'S79.099K ','Other physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153463,10,'S79.099G ','Other physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153462,10,'S79.099D ','Other physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153461,10,'S79.099A ','Other physeal fracture of upper end of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153460,10,'S79.092S ','Other physeal fracture of upper end of left femur, sequela','Y','0000-00-00 00:00:00'),(153459,10,'S79.092P ','Other physeal fracture of upper end of left femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153458,10,'S79.092K ','Other physeal fracture of upper end of left femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153457,10,'S79.092G ','Other physeal fracture of upper end of left femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153456,10,'S79.092D ','Other physeal fracture of upper end of left femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153455,10,'S79.092A ','Other physeal fracture of upper end of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153454,10,'S79.091S ','Other physeal fracture of upper end of right femur, sequela','Y','0000-00-00 00:00:00'),(153453,10,'S79.091P ','Other physeal fracture of upper end of right femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153452,10,'S79.091K ','Other physeal fracture of upper end of right femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153451,10,'S79.091G ','Other physeal fracture of upper end of right femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153450,10,'S79.091D ','Other physeal fracture of upper end of right femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153449,10,'S79.091A ','Other physeal fracture of upper end of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153448,10,'S79.019S ','Salter-Harris Type I physeal fracture of upper end of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(153447,10,'S79.019P ','Salter-Harris Type I physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153446,10,'S79.019K ','Salter-Harris Type I physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153445,10,'S79.019G ','Salter-Harris Type I physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153444,10,'S79.019D ','Salter-Harris Type I physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153443,10,'S79.019A ','Salter-Harris Type I physeal fracture of upper end of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153442,10,'S79.012S ','Salter-Harris Type I physeal fracture of upper end of left femur, sequela','Y','0000-00-00 00:00:00'),(153441,10,'S79.012P ','Salter-Harris Type I physeal fracture of upper end of left femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153440,10,'S79.012K ','Salter-Harris Type I physeal fracture of upper end of left femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153439,10,'S79.012G ','Salter-Harris Type I physeal fracture of upper end of left femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153438,10,'S79.012D ','Salter-Harris Type I physeal fracture of upper end of left femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153437,10,'S79.012A ','Salter-Harris Type I physeal fracture of upper end of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153436,10,'S79.011S ','Salter-Harris Type I physeal fracture of upper end of right femur, sequela','Y','0000-00-00 00:00:00'),(153435,10,'S79.011P ','Salter-Harris Type I physeal fracture of upper end of right femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153434,10,'S79.011K ','Salter-Harris Type I physeal fracture of upper end of right femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153433,10,'S79.011G ','Salter-Harris Type I physeal fracture of upper end of right femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153432,10,'S79.011D ','Salter-Harris Type I physeal fracture of upper end of right femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153431,10,'S79.011A ','Salter-Harris Type I physeal fracture of upper end of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153430,10,'S79.009S ','Unspecified physeal fracture of upper end of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(153429,10,'S79.009P ','Unspecified physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153428,10,'S79.009K ','Unspecified physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153427,10,'S79.009G ','Unspecified physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153426,10,'S79.009D ','Unspecified physeal fracture of upper end of unspecified femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153425,10,'S79.009A ','Unspecified physeal fracture of upper end of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153424,10,'S79.002S ','Unspecified physeal fracture of upper end of left femur, sequela','Y','0000-00-00 00:00:00'),(153423,10,'S79.002P ','Unspecified physeal fracture of upper end of left femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153422,10,'S79.002K ','Unspecified physeal fracture of upper end of left femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153421,10,'S79.002G ','Unspecified physeal fracture of upper end of left femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153420,10,'S79.002D ','Unspecified physeal fracture of upper end of left femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153419,10,'S79.002A ','Unspecified physeal fracture of upper end of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153418,10,'S79.001S ','Unspecified physeal fracture of upper end of right femur, sequela','Y','0000-00-00 00:00:00'),(153417,10,'S79.001P ','Unspecified physeal fracture of upper end of right femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(153416,10,'S79.001K ','Unspecified physeal fracture of upper end of right femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(153415,10,'S79.001G ','Unspecified physeal fracture of upper end of right femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(153414,10,'S79.001D ','Unspecified physeal fracture of upper end of right femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(153413,10,'S79.001A ','Unspecified physeal fracture of upper end of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(153412,10,'S78.929S ','Partial traumatic amputation of unspecified hip and thigh, level unspecified, sequela','Y','0000-00-00 00:00:00'),(153411,10,'S78.929D ','Partial traumatic amputation of unspecified hip and thigh, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(153410,10,'S78.929A ','Partial traumatic amputation of unspecified hip and thigh, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(153409,10,'S78.922S ','Partial traumatic amputation of left hip and thigh, level unspecified, sequela','Y','0000-00-00 00:00:00'),(153408,10,'S78.922D ','Partial traumatic amputation of left hip and thigh, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(153407,10,'S78.922A ','Partial traumatic amputation of left hip and thigh, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(153406,10,'S78.921S ','Partial traumatic amputation of right hip and thigh, level unspecified, sequela','Y','0000-00-00 00:00:00'),(153405,10,'S78.921D ','Partial traumatic amputation of right hip and thigh, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(153404,10,'S78.921A ','Partial traumatic amputation of right hip and thigh, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(153403,10,'S78.919S ','Complete traumatic amputation of unspecified hip and thigh, level unspecified, sequela','Y','0000-00-00 00:00:00'),(153402,10,'S78.919D ','Complete traumatic amputation of unspecified hip and thigh, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(153401,10,'S78.919A ','Complete traumatic amputation of unspecified hip and thigh, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(153400,10,'S78.912S ','Complete traumatic amputation of left hip and thigh, level unspecified, sequela','Y','0000-00-00 00:00:00'),(153399,10,'S78.912D ','Complete traumatic amputation of left hip and thigh, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(153398,10,'S78.912A ','Complete traumatic amputation of left hip and thigh, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(153397,10,'S78.911S ','Complete traumatic amputation of right hip and thigh, level unspecified, sequela','Y','0000-00-00 00:00:00'),(153396,10,'S78.911D ','Complete traumatic amputation of right hip and thigh, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(153395,10,'S78.911A ','Complete traumatic amputation of right hip and thigh, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(153394,10,'S78.129S ','Partial traumatic amputation at level between unspecified hip and knee, sequela','Y','0000-00-00 00:00:00'),(153393,10,'S78.129D ','Partial traumatic amputation at level between unspecified hip and knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153392,10,'S78.129A ','Partial traumatic amputation at level between unspecified hip and knee, initial encounter','Y','0000-00-00 00:00:00'),(153391,10,'S78.122S ','Partial traumatic amputation at level between left hip and knee, sequela','Y','0000-00-00 00:00:00'),(153390,10,'S78.122D ','Partial traumatic amputation at level between left hip and knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153389,10,'S78.122A ','Partial traumatic amputation at level between left hip and knee, initial encounter','Y','0000-00-00 00:00:00'),(153388,10,'S78.121S ','Partial traumatic amputation at level between right hip and knee, sequela','Y','0000-00-00 00:00:00'),(153387,10,'S78.121D ','Partial traumatic amputation at level between right hip and knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153386,10,'S78.121A ','Partial traumatic amputation at level between right hip and knee, initial encounter','Y','0000-00-00 00:00:00'),(153385,10,'S78.119S ','Complete traumatic amputation at level between unspecified hip and knee, sequela','Y','0000-00-00 00:00:00'),(153384,10,'S78.119D ','Complete traumatic amputation at level between unspecified hip and knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153383,10,'S78.119A ','Complete traumatic amputation at level between unspecified hip and knee, initial encounter','Y','0000-00-00 00:00:00'),(153382,10,'S78.112S ','Complete traumatic amputation at level between left hip and knee, sequela','Y','0000-00-00 00:00:00'),(153381,10,'S78.112D ','Complete traumatic amputation at level between left hip and knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153380,10,'S78.112A ','Complete traumatic amputation at level between left hip and knee, initial encounter','Y','0000-00-00 00:00:00'),(153379,10,'S78.111S ','Complete traumatic amputation at level between right hip and knee, sequela','Y','0000-00-00 00:00:00'),(153378,10,'S78.111D ','Complete traumatic amputation at level between right hip and knee, subsequent encounter','Y','0000-00-00 00:00:00'),(153377,10,'S78.111A ','Complete traumatic amputation at level between right hip and knee, initial encounter','Y','0000-00-00 00:00:00'),(153376,10,'S78.029S ','Partial traumatic amputation at unspecified hip joint, sequela','Y','0000-00-00 00:00:00'),(153375,10,'S78.029D ','Partial traumatic amputation at unspecified hip joint, subsequent encounter','Y','0000-00-00 00:00:00'),(153374,10,'S78.029A ','Partial traumatic amputation at unspecified hip joint, initial encounter','Y','0000-00-00 00:00:00'),(153373,10,'S78.022S ','Partial traumatic amputation at left hip joint, sequela','Y','0000-00-00 00:00:00'),(153372,10,'S78.022D ','Partial traumatic amputation at left hip joint, subsequent encounter','Y','0000-00-00 00:00:00'),(153371,10,'S78.022A ','Partial traumatic amputation at left hip joint, initial encounter','Y','0000-00-00 00:00:00'),(153370,10,'S78.021S ','Partial traumatic amputation at right hip joint, sequela','Y','0000-00-00 00:00:00'),(153369,10,'S78.021D ','Partial traumatic amputation at right hip joint, subsequent encounter','Y','0000-00-00 00:00:00'),(153368,10,'S78.021A ','Partial traumatic amputation at right hip joint, initial encounter','Y','0000-00-00 00:00:00'),(153367,10,'S78.019S ','Complete traumatic amputation at unspecified hip joint, sequela','Y','0000-00-00 00:00:00'),(153366,10,'S78.019D ','Complete traumatic amputation at unspecified hip joint, subsequent encounter','Y','0000-00-00 00:00:00'),(153365,10,'S78.019A ','Complete traumatic amputation at unspecified hip joint, initial encounter','Y','0000-00-00 00:00:00'),(153364,10,'S78.012S ','Complete traumatic amputation at left hip joint, sequela','Y','0000-00-00 00:00:00'),(153363,10,'S78.012D ','Complete traumatic amputation at left hip joint, subsequent encounter','Y','0000-00-00 00:00:00'),(153362,10,'S78.012A ','Complete traumatic amputation at left hip joint, initial encounter','Y','0000-00-00 00:00:00'),(153361,10,'S78.011S ','Complete traumatic amputation at right hip joint, sequela','Y','0000-00-00 00:00:00'),(153360,10,'S78.011D ','Complete traumatic amputation at right hip joint, subsequent encounter','Y','0000-00-00 00:00:00'),(153359,10,'S78.011A ','Complete traumatic amputation at right hip joint, initial encounter','Y','0000-00-00 00:00:00'),(153358,10,'S77.22XS ','Crushing injury of left hip with thigh, sequela','Y','0000-00-00 00:00:00'),(153357,10,'S77.22XD ','Crushing injury of left hip with thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153356,10,'S77.22XA ','Crushing injury of left hip with thigh, initial encounter','Y','0000-00-00 00:00:00'),(153355,10,'S77.21XS ','Crushing injury of right hip with thigh, sequela','Y','0000-00-00 00:00:00'),(153354,10,'S77.21XD ','Crushing injury of right hip with thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153353,10,'S77.21XA ','Crushing injury of right hip with thigh, initial encounter','Y','0000-00-00 00:00:00'),(153352,10,'S77.20XS ','Crushing injury of unspecified hip with thigh, sequela','Y','0000-00-00 00:00:00'),(153351,10,'S77.20XD ','Crushing injury of unspecified hip with thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153350,10,'S77.20XA ','Crushing injury of unspecified hip with thigh, initial encounter','Y','0000-00-00 00:00:00'),(153349,10,'S77.12XS ','Crushing injury of left thigh, sequela','Y','0000-00-00 00:00:00'),(153348,10,'S77.12XD ','Crushing injury of left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153347,10,'S77.12XA ','Crushing injury of left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153346,10,'S77.11XS ','Crushing injury of right thigh, sequela','Y','0000-00-00 00:00:00'),(153345,10,'S77.11XD ','Crushing injury of right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153344,10,'S77.11XA ','Crushing injury of right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153343,10,'S77.10XS ','Crushing injury of unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153342,10,'S77.10XD ','Crushing injury of unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153341,10,'S77.10XA ','Crushing injury of unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153340,10,'S77.02XS ','Crushing injury of left hip, sequela','Y','0000-00-00 00:00:00'),(153339,10,'S77.02XD ','Crushing injury of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153338,10,'S77.02XA ','Crushing injury of left hip, initial encounter','Y','0000-00-00 00:00:00'),(153337,10,'S77.01XS ','Crushing injury of right hip, sequela','Y','0000-00-00 00:00:00'),(153336,10,'S77.01XD ','Crushing injury of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153335,10,'S77.01XA ','Crushing injury of right hip, initial encounter','Y','0000-00-00 00:00:00'),(153334,10,'S77.00XS ','Crushing injury of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(153333,10,'S77.00XD ','Crushing injury of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153332,10,'S77.00XA ','Crushing injury of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(153331,10,'S76.999S ','Other specified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153330,10,'S76.999D ','Other specified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153329,10,'S76.999A ','Other specified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153328,10,'S76.992S ','Other specified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, sequela','Y','0000-00-00 00:00:00'),(153327,10,'S76.992D ','Other specified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153326,10,'S76.992A ','Other specified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153325,10,'S76.991S ','Other specified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, sequela','Y','0000-00-00 00:00:00'),(153324,10,'S76.991D ','Other specified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153323,10,'S76.991A ','Other specified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153322,10,'S76.929S ','Laceration of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153321,10,'S76.929D ','Laceration of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153320,10,'S76.929A ','Laceration of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153319,10,'S76.922S ','Laceration of unspecified muscles, fascia and tendons at thigh level, left thigh, sequela','Y','0000-00-00 00:00:00'),(153318,10,'S76.922D ','Laceration of unspecified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153317,10,'S76.922A ','Laceration of unspecified muscles, fascia and tendons at thigh level, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153316,10,'S76.921S ','Laceration of unspecified muscles, fascia and tendons at thigh level, right thigh, sequela','Y','0000-00-00 00:00:00'),(153315,10,'S76.921D ','Laceration of unspecified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153314,10,'S76.921A ','Laceration of unspecified muscles, fascia and tendons at thigh level, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153313,10,'S76.919S ','Strain of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153312,10,'S76.919D ','Strain of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153311,10,'S76.919A ','Strain of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153310,10,'S76.912S ','Strain of unspecified muscles, fascia and tendons at thigh level, left thigh, sequela','Y','0000-00-00 00:00:00'),(153309,10,'S76.912D ','Strain of unspecified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153308,10,'S76.912A ','Strain of unspecified muscles, fascia and tendons at thigh level, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153307,10,'S76.911S ','Strain of unspecified muscles, fascia and tendons at thigh level, right thigh, sequela','Y','0000-00-00 00:00:00'),(153306,10,'S76.911D ','Strain of unspecified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153305,10,'S76.911A ','Strain of unspecified muscles, fascia and tendons at thigh level, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153304,10,'S76.909S ','Unspecified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153303,10,'S76.909D ','Unspecified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153302,10,'S76.909A ','Unspecified injury of unspecified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153301,10,'S76.902S ','Unspecified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, sequela','Y','0000-00-00 00:00:00'),(153300,10,'S76.902D ','Unspecified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153299,10,'S76.902A ','Unspecified injury of unspecified muscles, fascia and tendons at thigh level, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153298,10,'S76.901S ','Unspecified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, sequela','Y','0000-00-00 00:00:00'),(153297,10,'S76.901D ','Unspecified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153296,10,'S76.901A ','Unspecified injury of unspecified muscles, fascia and tendons at thigh level, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153295,10,'S76.899S ','Other injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153294,10,'S76.899D ','Other injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153293,10,'S76.899A ','Other injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153292,10,'S76.892S ','Other injury of other specified muscles, fascia and tendons at thigh level, left thigh, sequela','Y','0000-00-00 00:00:00'),(153291,10,'S76.892D ','Other injury of other specified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153290,10,'S76.892A ','Other injury of other specified muscles, fascia and tendons at thigh level, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153289,10,'S76.891S ','Other injury of other specified muscles, fascia and tendons at thigh level, right thigh, sequela','Y','0000-00-00 00:00:00'),(153288,10,'S76.891D ','Other injury of other specified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153287,10,'S76.891A ','Other injury of other specified muscles, fascia and tendons at thigh level, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153286,10,'S76.829S ','Laceration of other specified muscles, fascia and tendons at thigh level, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153285,10,'S76.829D ','Laceration of other specified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153284,10,'S76.829A ','Laceration of other specified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153283,10,'S76.822S ','Laceration of other specified muscles, fascia and tendons at thigh level, left thigh, sequela','Y','0000-00-00 00:00:00'),(153282,10,'S76.822D ','Laceration of other specified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153281,10,'S76.822A ','Laceration of other specified muscles, fascia and tendons at thigh level, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153280,10,'S76.821S ','Laceration of other specified muscles, fascia and tendons at thigh level, right thigh, sequela','Y','0000-00-00 00:00:00'),(153279,10,'S76.821D ','Laceration of other specified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153278,10,'S76.821A ','Laceration of other specified muscles, fascia and tendons at thigh level, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153277,10,'S76.819S ','Strain of other specified muscles, fascia and tendons at thigh level, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153276,10,'S76.819D ','Strain of other specified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153275,10,'S76.819A ','Strain of other specified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153274,10,'S76.812S ','Strain of other specified muscles, fascia and tendons at thigh level, left thigh, sequela','Y','0000-00-00 00:00:00'),(153273,10,'S76.812D ','Strain of other specified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153272,10,'S76.812A ','Strain of other specified muscles, fascia and tendons at thigh level, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153271,10,'S76.811S ','Strain of other specified muscles, fascia and tendons at thigh level, right thigh, sequela','Y','0000-00-00 00:00:00'),(153270,10,'S76.811D ','Strain of other specified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153269,10,'S76.811A ','Strain of other specified muscles, fascia and tendons at thigh level, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153268,10,'S76.809S ','Unspecified injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153267,10,'S76.809D ','Unspecified injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153266,10,'S76.809A ','Unspecified injury of other specified muscles, fascia and tendons at thigh level, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153265,10,'S76.802S ','Unspecified injury of other specified muscles, fascia and tendons at thigh level, left thigh, sequela','Y','0000-00-00 00:00:00'),(153264,10,'S76.802D ','Unspecified injury of other specified muscles, fascia and tendons at thigh level, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153263,10,'S76.802A ','Unspecified injury of other specified muscles, fascia and tendons at thigh level, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153262,10,'S76.801S ','Unspecified injury of other specified muscles, fascia and tendons at thigh level, right thigh, sequela','Y','0000-00-00 00:00:00'),(153261,10,'S76.801D ','Unspecified injury of other specified muscles, fascia and tendons at thigh level, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153260,10,'S76.801A ','Unspecified injury of other specified muscles, fascia and tendons at thigh level, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153259,10,'S76.399S ','Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153258,10,'S76.399D ','Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153257,10,'S76.399A ','Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153256,10,'S76.392S ','Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, sequela','Y','0000-00-00 00:00:00'),(153255,10,'S76.392D ','Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153254,10,'S76.392A ','Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153253,10,'S76.391S ','Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, sequela','Y','0000-00-00 00:00:00'),(153252,10,'S76.391D ','Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153251,10,'S76.391A ','Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153250,10,'S76.329S ','Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153249,10,'S76.329D ','Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153248,10,'S76.329A ','Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153247,10,'S76.322S ','Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, sequela','Y','0000-00-00 00:00:00'),(153246,10,'S76.322D ','Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153245,10,'S76.322A ','Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153244,10,'S76.321S ','Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, sequela','Y','0000-00-00 00:00:00'),(153243,10,'S76.321D ','Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153242,10,'S76.321A ','Laceration of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153241,10,'S76.319S ','Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153240,10,'S76.319D ','Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153239,10,'S76.319A ','Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153238,10,'S76.312S ','Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, sequela','Y','0000-00-00 00:00:00'),(153237,10,'S76.312D ','Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153236,10,'S76.312A ','Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153235,10,'S76.311S ','Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, sequela','Y','0000-00-00 00:00:00'),(153234,10,'S76.311D ','Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153233,10,'S76.311A ','Strain of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153232,10,'S76.309S ','Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153231,10,'S76.309D ','Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153230,10,'S76.309A ','Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153229,10,'S76.302S ','Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, sequela','Y','0000-00-00 00:00:00'),(153228,10,'S76.302D ','Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153227,10,'S76.302A ','Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153226,10,'S76.301S ','Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, sequela','Y','0000-00-00 00:00:00'),(153225,10,'S76.301D ','Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153224,10,'S76.301A ','Unspecified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153223,10,'S76.299S ','Other injury of adductor muscle, fascia and tendon of unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153222,10,'S76.299D ','Other injury of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153220,10,'S76.292S ','Other injury of adductor muscle, fascia and tendon of left thigh, sequela','Y','0000-00-00 00:00:00'),(153221,10,'S76.299A ','Other injury of adductor muscle, fascia and tendon of unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153219,10,'S76.292D ','Other injury of adductor muscle, fascia and tendon of left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153218,10,'S76.292A ','Other injury of adductor muscle, fascia and tendon of left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153217,10,'S76.291S ','Other injury of adductor muscle, fascia and tendon of right thigh, sequela','Y','0000-00-00 00:00:00'),(153216,10,'S76.291D ','Other injury of adductor muscle, fascia and tendon of right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153215,10,'S76.291A ','Other injury of adductor muscle, fascia and tendon of right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153214,10,'S76.229S ','Laceration of adductor muscle, fascia and tendon of unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153213,10,'S76.229D ','Laceration of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153212,10,'S76.229A ','Laceration of adductor muscle, fascia and tendon of unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153211,10,'S76.222S ','Laceration of adductor muscle, fascia and tendon of left thigh, sequela','Y','0000-00-00 00:00:00'),(153210,10,'S76.222D ','Laceration of adductor muscle, fascia and tendon of left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153208,10,'S76.221S ','Laceration of adductor muscle, fascia and tendon of right thigh, sequela','Y','0000-00-00 00:00:00'),(153209,10,'S76.222A ','Laceration of adductor muscle, fascia and tendon of left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153207,10,'S76.221D ','Laceration of adductor muscle, fascia and tendon of right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153206,10,'S76.221A ','Laceration of adductor muscle, fascia and tendon of right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153205,10,'S76.219S ','Strain of adductor muscle, fascia and tendon of unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153204,10,'S76.219D ','Strain of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153203,10,'S76.219A ','Strain of adductor muscle, fascia and tendon of unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153202,10,'S76.212S ','Strain of adductor muscle, fascia and tendon of left thigh, sequela','Y','0000-00-00 00:00:00'),(153201,10,'S76.212D ','Strain of adductor muscle, fascia and tendon of left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153200,10,'S76.212A ','Strain of adductor muscle, fascia and tendon of left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153199,10,'S76.211S ','Strain of adductor muscle, fascia and tendon of right thigh, sequela','Y','0000-00-00 00:00:00'),(153198,10,'S76.211D ','Strain of adductor muscle, fascia and tendon of right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153197,10,'S76.211A ','Strain of adductor muscle, fascia and tendon of right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153196,10,'S76.209S ','Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(153195,10,'S76.209D ','Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153194,10,'S76.209A ','Unspecified injury of adductor muscle, fascia and tendon of unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(153193,10,'S76.202S ','Unspecified injury of adductor muscle, fascia and tendon of left thigh, sequela','Y','0000-00-00 00:00:00'),(153192,10,'S76.202D ','Unspecified injury of adductor muscle, fascia and tendon of left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153191,10,'S76.202A ','Unspecified injury of adductor muscle, fascia and tendon of left thigh, initial encounter','Y','0000-00-00 00:00:00'),(153190,10,'S76.201S ','Unspecified injury of adductor muscle, fascia and tendon of right thigh, sequela','Y','0000-00-00 00:00:00'),(153189,10,'S76.201D ','Unspecified injury of adductor muscle, fascia and tendon of right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(153188,10,'S76.201A ','Unspecified injury of adductor muscle, fascia and tendon of right thigh, initial encounter','Y','0000-00-00 00:00:00'),(153187,10,'S76.199S ','Other specified injury of unspecified quadriceps muscle, fascia and tendon, sequela','Y','0000-00-00 00:00:00'),(153186,10,'S76.199D ','Other specified injury of unspecified quadriceps muscle, fascia and tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(153185,10,'S76.199A ','Other specified injury of unspecified quadriceps muscle, fascia and tendon, initial encounter','Y','0000-00-00 00:00:00'),(153184,10,'S76.192S ','Other specified injury of left quadriceps muscle, fascia and tendon, sequela','Y','0000-00-00 00:00:00'),(153183,10,'S76.192D ','Other specified injury of left quadriceps muscle, fascia and tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(153182,10,'S76.192A ','Other specified injury of left quadriceps muscle, fascia and tendon, initial encounter','Y','0000-00-00 00:00:00'),(153181,10,'S76.191S ','Other specified injury of right quadriceps muscle, fascia and tendon, sequela','Y','0000-00-00 00:00:00'),(153180,10,'S76.191D ','Other specified injury of right quadriceps muscle, fascia and tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(153179,10,'S76.191A ','Other specified injury of right quadriceps muscle, fascia and tendon, initial encounter','Y','0000-00-00 00:00:00'),(153178,10,'S76.129S ','Laceration of unspecified quadriceps muscle, fascia and tendon, sequela','Y','0000-00-00 00:00:00'),(153177,10,'S76.129D ','Laceration of unspecified quadriceps muscle, fascia and tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(153176,10,'S76.129A ','Laceration of unspecified quadriceps muscle, fascia and tendon, initial encounter','Y','0000-00-00 00:00:00'),(153175,10,'S76.122S ','Laceration of left quadriceps muscle, fascia and tendon, sequela','Y','0000-00-00 00:00:00'),(153174,10,'S76.122D ','Laceration of left quadriceps muscle, fascia and tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(153172,10,'S76.121S ','Laceration of right quadriceps muscle, fascia and tendon, sequela','Y','0000-00-00 00:00:00'),(153173,10,'S76.122A ','Laceration of left quadriceps muscle, fascia and tendon, initial encounter','Y','0000-00-00 00:00:00'),(153171,10,'S76.121D ','Laceration of right quadriceps muscle, fascia and tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(153170,10,'S76.121A ','Laceration of right quadriceps muscle, fascia and tendon, initial encounter','Y','0000-00-00 00:00:00'),(153169,10,'S76.119S ','Strain of unspecified quadriceps muscle, fascia and tendon, sequela','Y','0000-00-00 00:00:00'),(153168,10,'S76.119D ','Strain of unspecified quadriceps muscle, fascia and tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(153167,10,'S76.119A ','Strain of unspecified quadriceps muscle, fascia and tendon, initial encounter','Y','0000-00-00 00:00:00'),(153166,10,'S76.112S ','Strain of left quadriceps muscle, fascia and tendon, sequela','Y','0000-00-00 00:00:00'),(153165,10,'S76.112D ','Strain of left quadriceps muscle, fascia and tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(153164,10,'S76.112A ','Strain of left quadriceps muscle, fascia and tendon, initial encounter','Y','0000-00-00 00:00:00'),(153163,10,'S76.111S ','Strain of right quadriceps muscle, fascia and tendon, sequela','Y','0000-00-00 00:00:00'),(153162,10,'S76.111D ','Strain of right quadriceps muscle, fascia and tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(153161,10,'S76.111A ','Strain of right quadriceps muscle, fascia and tendon, initial encounter','Y','0000-00-00 00:00:00'),(153160,10,'S76.109S ','Unspecified injury of unspecified quadriceps muscle, fascia and tendon, sequela','Y','0000-00-00 00:00:00'),(153159,10,'S76.109D ','Unspecified injury of unspecified quadriceps muscle, fascia and tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(153158,10,'S76.109A ','Unspecified injury of unspecified quadriceps muscle, fascia and tendon, initial encounter','Y','0000-00-00 00:00:00'),(153157,10,'S76.102S ','Unspecified injury of left quadriceps muscle, fascia and tendon, sequela','Y','0000-00-00 00:00:00'),(153156,10,'S76.102D ','Unspecified injury of left quadriceps muscle, fascia and tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(153155,10,'S76.102A ','Unspecified injury of left quadriceps muscle, fascia and tendon, initial encounter','Y','0000-00-00 00:00:00'),(153154,10,'S76.101S ','Unspecified injury of right quadriceps muscle, fascia and tendon, sequela','Y','0000-00-00 00:00:00'),(153153,10,'S76.101D ','Unspecified injury of right quadriceps muscle, fascia and tendon, subsequent encounter','Y','0000-00-00 00:00:00'),(153152,10,'S76.101A ','Unspecified injury of right quadriceps muscle, fascia and tendon, initial encounter','Y','0000-00-00 00:00:00'),(153151,10,'S76.099S ','Other specified injury of muscle, fascia and tendon of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(153150,10,'S76.099D ','Other specified injury of muscle, fascia and tendon of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153149,10,'S76.099A ','Other specified injury of muscle, fascia and tendon of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(153148,10,'S76.092S ','Other specified injury of muscle, fascia and tendon of left hip, sequela','Y','0000-00-00 00:00:00'),(153147,10,'S76.092D ','Other specified injury of muscle, fascia and tendon of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153146,10,'S76.092A ','Other specified injury of muscle, fascia and tendon of left hip, initial encounter','Y','0000-00-00 00:00:00'),(153145,10,'S76.091S ','Other specified injury of muscle, fascia and tendon of right hip, sequela','Y','0000-00-00 00:00:00'),(153144,10,'S76.091D ','Other specified injury of muscle, fascia and tendon of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153143,10,'S76.091A ','Other specified injury of muscle, fascia and tendon of right hip, initial encounter','Y','0000-00-00 00:00:00'),(153142,10,'S76.029S ','Laceration of muscle, fascia and tendon of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(153141,10,'S76.029D ','Laceration of muscle, fascia and tendon of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153140,10,'S76.029A ','Laceration of muscle, fascia and tendon of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(153139,10,'S76.022S ','Laceration of muscle, fascia and tendon of left hip, sequela','Y','0000-00-00 00:00:00'),(153138,10,'S76.022D ','Laceration of muscle, fascia and tendon of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153137,10,'S76.022A ','Laceration of muscle, fascia and tendon of left hip, initial encounter','Y','0000-00-00 00:00:00'),(153136,10,'S76.021S ','Laceration of muscle, fascia and tendon of right hip, sequela','Y','0000-00-00 00:00:00'),(153135,10,'S76.021D ','Laceration of muscle, fascia and tendon of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153134,10,'S76.021A ','Laceration of muscle, fascia and tendon of right hip, initial encounter','Y','0000-00-00 00:00:00'),(153133,10,'S76.019S ','Strain of muscle, fascia and tendon of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(153132,10,'S76.019D ','Strain of muscle, fascia and tendon of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153131,10,'S76.019A ','Strain of muscle, fascia and tendon of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(153130,10,'S76.012S ','Strain of muscle, fascia and tendon of left hip, sequela','Y','0000-00-00 00:00:00'),(153129,10,'S76.012D ','Strain of muscle, fascia and tendon of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153127,10,'S76.011S ','Strain of muscle, fascia and tendon of right hip, sequela','Y','0000-00-00 00:00:00'),(153128,10,'S76.012A ','Strain of muscle, fascia and tendon of left hip, initial encounter','Y','0000-00-00 00:00:00'),(153126,10,'S76.011D ','Strain of muscle, fascia and tendon of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153125,10,'S76.011A ','Strain of muscle, fascia and tendon of right hip, initial encounter','Y','0000-00-00 00:00:00'),(153124,10,'S76.009S ','Unspecified injury of muscle, fascia and tendon of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(153123,10,'S76.009D ','Unspecified injury of muscle, fascia and tendon of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153122,10,'S76.009A ','Unspecified injury of muscle, fascia and tendon of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(153121,10,'S76.002S ','Unspecified injury of muscle, fascia and tendon of left hip, sequela','Y','0000-00-00 00:00:00'),(153120,10,'S76.002D ','Unspecified injury of muscle, fascia and tendon of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153119,10,'S76.002A ','Unspecified injury of muscle, fascia and tendon of left hip, initial encounter','Y','0000-00-00 00:00:00'),(153118,10,'S76.001S ','Unspecified injury of muscle, fascia and tendon of right hip, sequela','Y','0000-00-00 00:00:00'),(153117,10,'S76.001D ','Unspecified injury of muscle, fascia and tendon of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(153116,10,'S76.001A ','Unspecified injury of muscle, fascia and tendon of right hip, initial encounter','Y','0000-00-00 00:00:00'),(153115,10,'S75.999S ','Other specified injury of unspecified blood vessel at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(153114,10,'S75.999D ','Other specified injury of unspecified blood vessel at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153113,10,'S75.999A ','Other specified injury of unspecified blood vessel at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(153112,10,'S75.992S ','Other specified injury of unspecified blood vessel at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(153111,10,'S75.992D ','Other specified injury of unspecified blood vessel at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153110,10,'S75.992A ','Other specified injury of unspecified blood vessel at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(153109,10,'S75.991S ','Other specified injury of unspecified blood vessel at hip and thigh level, right leg, sequela','Y','0000-00-00 00:00:00'),(153108,10,'S75.991D ','Other specified injury of unspecified blood vessel at hip and thigh level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153107,10,'S75.991A ','Other specified injury of unspecified blood vessel at hip and thigh level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(153106,10,'S75.919S ','Laceration of unspecified blood vessel at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(153105,10,'S75.919D ','Laceration of unspecified blood vessel at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153104,10,'S75.919A ','Laceration of unspecified blood vessel at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(153103,10,'S75.912S ','Laceration of unspecified blood vessel at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(153102,10,'S75.912D ','Laceration of unspecified blood vessel at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153101,10,'S75.912A ','Laceration of unspecified blood vessel at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(153100,10,'S75.911S ','Laceration of unspecified blood vessel at hip and thigh level, right leg, sequela','Y','0000-00-00 00:00:00'),(153099,10,'S75.911D ','Laceration of unspecified blood vessel at hip and thigh level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153098,10,'S75.911A ','Laceration of unspecified blood vessel at hip and thigh level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(153097,10,'S75.909S ','Unspecified injury of unspecified blood vessel at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(153096,10,'S75.909D ','Unspecified injury of unspecified blood vessel at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153095,10,'S75.909A ','Unspecified injury of unspecified blood vessel at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(153094,10,'S75.902S ','Unspecified injury of unspecified blood vessel at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(153093,10,'S75.902D ','Unspecified injury of unspecified blood vessel at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153092,10,'S75.902A ','Unspecified injury of unspecified blood vessel at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(153091,10,'S75.901S ','Unspecified injury of unspecified blood vessel at hip and thigh level, right leg, sequela','Y','0000-00-00 00:00:00'),(153090,10,'S75.901D ','Unspecified injury of unspecified blood vessel at hip and thigh level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153089,10,'S75.901A ','Unspecified injury of unspecified blood vessel at hip and thigh level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(153088,10,'S75.899S ','Other specified injury of other blood vessels at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(153087,10,'S75.899D ','Other specified injury of other blood vessels at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153086,10,'S75.899A ','Other specified injury of other blood vessels at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(153085,10,'S75.892S ','Other specified injury of other blood vessels at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(153084,10,'S75.892D ','Other specified injury of other blood vessels at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153083,10,'S75.892A ','Other specified injury of other blood vessels at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(153082,10,'S75.891S ','Other specified injury of other blood vessels at hip and thigh level, right leg, sequela','Y','0000-00-00 00:00:00'),(153081,10,'S75.891D ','Other specified injury of other blood vessels at hip and thigh level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153080,10,'S75.891A ','Other specified injury of other blood vessels at hip and thigh level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(153079,10,'S75.819S ','Laceration of other blood vessels at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(153078,10,'S75.819D ','Laceration of other blood vessels at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153077,10,'S75.819A ','Laceration of other blood vessels at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(153076,10,'S75.812S ','Laceration of other blood vessels at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(153075,10,'S75.812D ','Laceration of other blood vessels at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153074,10,'S75.812A ','Laceration of other blood vessels at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(153073,10,'S75.811S ','Laceration of other blood vessels at hip and thigh level, right leg, sequela','Y','0000-00-00 00:00:00'),(153072,10,'S75.811D ','Laceration of other blood vessels at hip and thigh level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153071,10,'S75.811A ','Laceration of other blood vessels at hip and thigh level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(153070,10,'S75.809S ','Unspecified injury of other blood vessels at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(153069,10,'S75.809D ','Unspecified injury of other blood vessels at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153068,10,'S75.809A ','Unspecified injury of other blood vessels at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(153067,10,'S75.802S ','Unspecified injury of other blood vessels at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(153066,10,'S75.802D ','Unspecified injury of other blood vessels at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153065,10,'S75.802A ','Unspecified injury of other blood vessels at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(153064,10,'S75.801S ','Unspecified injury of other blood vessels at hip and thigh level, right leg, sequela','Y','0000-00-00 00:00:00'),(153063,10,'S75.801D ','Unspecified injury of other blood vessels at hip and thigh level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153062,10,'S75.801A ','Unspecified injury of other blood vessels at hip and thigh level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(153061,10,'S75.299S ','Other specified injury of greater saphenous vein at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(153060,10,'S75.299D ','Other specified injury of greater saphenous vein at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153059,10,'S75.299A ','Other specified injury of greater saphenous vein at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(153058,10,'S75.292S ','Other specified injury of greater saphenous vein at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(153057,10,'S75.292D ','Other specified injury of greater saphenous vein at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153056,10,'S75.292A ','Other specified injury of greater saphenous vein at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(153055,10,'S75.291S ','Other specified injury of greater saphenous vein at hip and thigh level, right leg, sequela','Y','0000-00-00 00:00:00'),(153054,10,'S75.291D ','Other specified injury of greater saphenous vein at hip and thigh level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153053,10,'S75.291A ','Other specified injury of greater saphenous vein at hip and thigh level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(153052,10,'S75.229S ','Major laceration of greater saphenous vein at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(153051,10,'S75.229D ','Major laceration of greater saphenous vein at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153050,10,'S75.229A ','Major laceration of greater saphenous vein at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(153049,10,'S75.222S ','Major laceration of greater saphenous vein at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(153048,10,'S75.222D ','Major laceration of greater saphenous vein at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153047,10,'S75.222A ','Major laceration of greater saphenous vein at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(153046,10,'S75.221S ','Major laceration of greater saphenous vein at hip and thigh level, right leg, sequela','Y','0000-00-00 00:00:00'),(153045,10,'S75.221D ','Major laceration of greater saphenous vein at hip and thigh level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153044,10,'S75.221A ','Major laceration of greater saphenous vein at hip and thigh level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(153043,10,'S75.219S ','Minor laceration of greater saphenous vein at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(153042,10,'S75.219D ','Minor laceration of greater saphenous vein at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153041,10,'S75.219A ','Minor laceration of greater saphenous vein at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(153040,10,'S75.212S ','Minor laceration of greater saphenous vein at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(153039,10,'S75.212D ','Minor laceration of greater saphenous vein at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153038,10,'S75.212A ','Minor laceration of greater saphenous vein at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(153037,10,'S75.211S ','Minor laceration of greater saphenous vein at hip and thigh level, right leg, sequela','Y','0000-00-00 00:00:00'),(153036,10,'S75.211D ','Minor laceration of greater saphenous vein at hip and thigh level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153035,10,'S75.211A ','Minor laceration of greater saphenous vein at hip and thigh level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(153034,10,'S75.209S ','Unspecified injury of greater saphenous vein at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(153033,10,'S75.209D ','Unspecified injury of greater saphenous vein at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153032,10,'S75.209A ','Unspecified injury of greater saphenous vein at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(153031,10,'S75.202S ','Unspecified injury of greater saphenous vein at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(153030,10,'S75.202D ','Unspecified injury of greater saphenous vein at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153029,10,'S75.202A ','Unspecified injury of greater saphenous vein at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(153028,10,'S75.201S ','Unspecified injury of greater saphenous vein at hip and thigh level, right leg, sequela','Y','0000-00-00 00:00:00'),(153027,10,'S75.201D ','Unspecified injury of greater saphenous vein at hip and thigh level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153026,10,'S75.201A ','Unspecified injury of greater saphenous vein at hip and thigh level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(153025,10,'S75.199S ','Other specified injury of femoral vein at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(153024,10,'S75.199D ','Other specified injury of femoral vein at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153023,10,'S75.199A ','Other specified injury of femoral vein at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(153022,10,'S75.192S ','Other specified injury of femoral vein at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(153021,10,'S75.192D ','Other specified injury of femoral vein at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153020,10,'S75.192A ','Other specified injury of femoral vein at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(153019,10,'S75.191S ','Other specified injury of femoral vein at hip and thigh level, right leg, sequela','Y','0000-00-00 00:00:00'),(153018,10,'S75.191D ','Other specified injury of femoral vein at hip and thigh level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153017,10,'S75.191A ','Other specified injury of femoral vein at hip and thigh level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(153016,10,'S75.129S ','Major laceration of femoral vein at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(153015,10,'S75.129D ','Major laceration of femoral vein at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153014,10,'S75.129A ','Major laceration of femoral vein at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(153013,10,'S75.122S ','Major laceration of femoral vein at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(153012,10,'S75.122D ','Major laceration of femoral vein at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153011,10,'S75.122A ','Major laceration of femoral vein at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(153010,10,'S75.121S ','Major laceration of femoral vein at hip and thigh level, right leg, sequela','Y','0000-00-00 00:00:00'),(153009,10,'S75.121D ','Major laceration of femoral vein at hip and thigh level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153008,10,'S75.121A ','Major laceration of femoral vein at hip and thigh level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(153007,10,'S75.119S ','Minor laceration of femoral vein at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(153006,10,'S75.119D ','Minor laceration of femoral vein at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153005,10,'S75.119A ','Minor laceration of femoral vein at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(153004,10,'S75.112S ','Minor laceration of femoral vein at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(153003,10,'S75.112D ','Minor laceration of femoral vein at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(153002,10,'S75.112A ','Minor laceration of femoral vein at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(153001,10,'S75.111S ','Minor laceration of femoral vein at hip and thigh level, right leg, sequela','Y','0000-00-00 00:00:00'),(153000,10,'S75.111D ','Minor laceration of femoral vein at hip and thigh level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152999,10,'S75.111A ','Minor laceration of femoral vein at hip and thigh level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(152998,10,'S75.109S ','Unspecified injury of femoral vein at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(152997,10,'S75.109D ','Unspecified injury of femoral vein at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152996,10,'S75.109A ','Unspecified injury of femoral vein at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(152995,10,'S75.102S ','Unspecified injury of femoral vein at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(152994,10,'S75.102D ','Unspecified injury of femoral vein at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152993,10,'S75.102A ','Unspecified injury of femoral vein at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(152992,10,'S75.101S ','Unspecified injury of femoral vein at hip and thigh level, right leg, sequela','Y','0000-00-00 00:00:00'),(152991,10,'S75.101D ','Unspecified injury of femoral vein at hip and thigh level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152990,10,'S75.101A ','Unspecified injury of femoral vein at hip and thigh level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(152989,10,'S75.099S ','Other specified injury of femoral artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(152988,10,'S75.099D ','Other specified injury of femoral artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152987,10,'S75.099A ','Other specified injury of femoral artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(152986,10,'S75.092S ','Other specified injury of femoral artery, left leg, sequela','Y','0000-00-00 00:00:00'),(152985,10,'S75.092D ','Other specified injury of femoral artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152984,10,'S75.092A ','Other specified injury of femoral artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(152983,10,'S75.091S ','Other specified injury of femoral artery, right leg, sequela','Y','0000-00-00 00:00:00'),(152982,10,'S75.091D ','Other specified injury of femoral artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152981,10,'S75.091A ','Other specified injury of femoral artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(152980,10,'S75.029S ','Major laceration of femoral artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(152979,10,'S75.029D ','Major laceration of femoral artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152978,10,'S75.029A ','Major laceration of femoral artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(152977,10,'S75.022S ','Major laceration of femoral artery, left leg, sequela','Y','0000-00-00 00:00:00'),(152976,10,'S75.022D ','Major laceration of femoral artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152975,10,'S75.022A ','Major laceration of femoral artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(152974,10,'S75.021S ','Major laceration of femoral artery, right leg, sequela','Y','0000-00-00 00:00:00'),(152973,10,'S75.021D ','Major laceration of femoral artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152972,10,'S75.021A ','Major laceration of femoral artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(152971,10,'S75.019S ','Minor laceration of femoral artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(152970,10,'S75.019D ','Minor laceration of femoral artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152969,10,'S75.019A ','Minor laceration of femoral artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(152968,10,'S75.012S ','Minor laceration of femoral artery, left leg, sequela','Y','0000-00-00 00:00:00'),(152967,10,'S75.012D ','Minor laceration of femoral artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152966,10,'S75.012A ','Minor laceration of femoral artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(152965,10,'S75.011S ','Minor laceration of femoral artery, right leg, sequela','Y','0000-00-00 00:00:00'),(152964,10,'S75.011D ','Minor laceration of femoral artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152963,10,'S75.011A ','Minor laceration of femoral artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(152962,10,'S75.009S ','Unspecified injury of femoral artery, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(152961,10,'S75.009D ','Unspecified injury of femoral artery, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152960,10,'S75.009A ','Unspecified injury of femoral artery, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(152959,10,'S75.002S ','Unspecified injury of femoral artery, left leg, sequela','Y','0000-00-00 00:00:00'),(152958,10,'S75.002D ','Unspecified injury of femoral artery, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152957,10,'S75.002A ','Unspecified injury of femoral artery, left leg, initial encounter','Y','0000-00-00 00:00:00'),(152956,10,'S75.001S ','Unspecified injury of femoral artery, right leg, sequela','Y','0000-00-00 00:00:00'),(152955,10,'S75.001D ','Unspecified injury of femoral artery, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152954,10,'S75.001A ','Unspecified injury of femoral artery, right leg, initial encounter','Y','0000-00-00 00:00:00'),(152953,10,'S74.92XS ','Injury of unspecified nerve at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(152952,10,'S74.92XD ','Injury of unspecified nerve at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152951,10,'S74.92XA ','Injury of unspecified nerve at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(152950,10,'S74.91XS ','Injury of unspecified nerve at hip and thigh level, right leg, sequela','Y','0000-00-00 00:00:00'),(152949,10,'S74.91XD ','Injury of unspecified nerve at hip and thigh level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152948,10,'S74.91XA ','Injury of unspecified nerve at hip and thigh level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(152947,10,'S74.90XS ','Injury of unspecified nerve at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(152946,10,'S74.90XD ','Injury of unspecified nerve at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152945,10,'S74.90XA ','Injury of unspecified nerve at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(152944,10,'S74.8X9S ','Injury of other nerves at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(152943,10,'S74.8X9D ','Injury of other nerves at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152942,10,'S74.8X9A ','Injury of other nerves at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(152941,10,'S74.8X2S ','Injury of other nerves at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(152940,10,'S74.8X2D ','Injury of other nerves at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152939,10,'S74.8X2A ','Injury of other nerves at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(152938,10,'S74.8X1S ','Injury of other nerves at hip and thigh level, right leg, sequela','Y','0000-00-00 00:00:00'),(152937,10,'S74.8X1D ','Injury of other nerves at hip and thigh level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152936,10,'S74.8X1A ','Injury of other nerves at hip and thigh level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(152935,10,'S74.22XS ','Injury of cutaneous sensory nerve at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(152934,10,'S74.22XD ','Injury of cutaneous sensory nerve at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152933,10,'S74.22XA ','Injury of cutaneous sensory nerve at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(152932,10,'S74.21XS ','Injury of cutaneous sensory nerve at hip and high level, right leg, sequela','Y','0000-00-00 00:00:00'),(152931,10,'S74.21XD ','Injury of cutaneous sensory nerve at hip and high level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152930,10,'S74.21XA ','Injury of cutaneous sensory nerve at hip and high level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(152929,10,'S74.20XS ','Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(152928,10,'S74.20XD ','Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152927,10,'S74.20XA ','Injury of cutaneous sensory nerve at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(152926,10,'S74.12XS ','Injury of femoral nerve at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(152925,10,'S74.12XD ','Injury of femoral nerve at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152924,10,'S74.12XA ','Injury of femoral nerve at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(152923,10,'S74.11XS ','Injury of femoral nerve at hip and thigh level, right leg, sequela','Y','0000-00-00 00:00:00'),(152922,10,'S74.11XD ','Injury of femoral nerve at hip and thigh level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152921,10,'S74.11XA ','Injury of femoral nerve at hip and thigh level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(152920,10,'S74.10XS ','Injury of femoral nerve at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(152919,10,'S74.10XD ','Injury of femoral nerve at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152918,10,'S74.10XA ','Injury of femoral nerve at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(152917,10,'S74.02XS ','Injury of sciatic nerve at hip and thigh level, left leg, sequela','Y','0000-00-00 00:00:00'),(152916,10,'S74.02XD ','Injury of sciatic nerve at hip and thigh level, left leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152915,10,'S74.02XA ','Injury of sciatic nerve at hip and thigh level, left leg, initial encounter','Y','0000-00-00 00:00:00'),(152914,10,'S74.01XS ','Injury of sciatic nerve at hip and thigh level, right leg, sequela','Y','0000-00-00 00:00:00'),(152913,10,'S74.01XD ','Injury of sciatic nerve at hip and thigh level, right leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152912,10,'S74.01XA ','Injury of sciatic nerve at hip and thigh level, right leg, initial encounter','Y','0000-00-00 00:00:00'),(152911,10,'S74.00XS ','Injury of sciatic nerve at hip and thigh level, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(152910,10,'S74.00XD ','Injury of sciatic nerve at hip and thigh level, unspecified leg, subsequent encounter','Y','0000-00-00 00:00:00'),(152909,10,'S74.00XA ','Injury of sciatic nerve at hip and thigh level, unspecified leg, initial encounter','Y','0000-00-00 00:00:00'),(152908,10,'S73.199S ','Other sprain of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(152907,10,'S73.199D ','Other sprain of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152906,10,'S73.199A ','Other sprain of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(152905,10,'S73.192S ','Other sprain of left hip, sequela','Y','0000-00-00 00:00:00'),(152904,10,'S73.192D ','Other sprain of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152902,10,'S73.191S ','Other sprain of right hip, sequela','Y','0000-00-00 00:00:00'),(152903,10,'S73.192A ','Other sprain of left hip, initial encounter','Y','0000-00-00 00:00:00'),(152901,10,'S73.191D ','Other sprain of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152900,10,'S73.191A ','Other sprain of right hip, initial encounter','Y','0000-00-00 00:00:00'),(152899,10,'S73.129S ','Ischiocapsular ligament sprain of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(152898,10,'S73.129D ','Ischiocapsular ligament sprain of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152897,10,'S73.129A ','Ischiocapsular ligament sprain of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(152896,10,'S73.122S ','Ischiocapsular ligament sprain of left hip, sequela','Y','0000-00-00 00:00:00'),(152895,10,'S73.122D ','Ischiocapsular ligament sprain of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152894,10,'S73.122A ','Ischiocapsular ligament sprain of left hip, initial encounter','Y','0000-00-00 00:00:00'),(152893,10,'S73.121S ','Ischiocapsular ligament sprain of right hip, sequela','Y','0000-00-00 00:00:00'),(152892,10,'S73.121D ','Ischiocapsular ligament sprain of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152891,10,'S73.121A ','Ischiocapsular ligament sprain of right hip, initial encounter','Y','0000-00-00 00:00:00'),(152890,10,'S73.119S ','Iliofemoral ligament sprain of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(152889,10,'S73.119D ','Iliofemoral ligament sprain of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152888,10,'S73.119A ','Iliofemoral ligament sprain of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(152887,10,'S73.112S ','Iliofemoral ligament sprain of left hip, sequela','Y','0000-00-00 00:00:00'),(152886,10,'S73.112D ','Iliofemoral ligament sprain of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152885,10,'S73.112A ','Iliofemoral ligament sprain of left hip, initial encounter','Y','0000-00-00 00:00:00'),(152884,10,'S73.111S ','Iliofemoral ligament sprain of right hip, sequela','Y','0000-00-00 00:00:00'),(152883,10,'S73.111D ','Iliofemoral ligament sprain of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152882,10,'S73.111A ','Iliofemoral ligament sprain of right hip, initial encounter','Y','0000-00-00 00:00:00'),(152881,10,'S73.109S ','Unspecified sprain of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(152880,10,'S73.109D ','Unspecified sprain of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152879,10,'S73.109A ','Unspecified sprain of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(152878,10,'S73.102S ','Unspecified sprain of left hip, sequela','Y','0000-00-00 00:00:00'),(152877,10,'S73.102D ','Unspecified sprain of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152876,10,'S73.102A ','Unspecified sprain of left hip, initial encounter','Y','0000-00-00 00:00:00'),(152875,10,'S73.101S ','Unspecified sprain of right hip, sequela','Y','0000-00-00 00:00:00'),(152874,10,'S73.101D ','Unspecified sprain of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152873,10,'S73.101A ','Unspecified sprain of right hip, initial encounter','Y','0000-00-00 00:00:00'),(152872,10,'S73.046S ','Central dislocation of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(152871,10,'S73.046D ','Central dislocation of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152870,10,'S73.046A ','Central dislocation of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(152869,10,'S73.045S ','Central dislocation of left hip, sequela','Y','0000-00-00 00:00:00'),(152868,10,'S73.045D ','Central dislocation of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152867,10,'S73.045A ','Central dislocation of left hip, initial encounter','Y','0000-00-00 00:00:00'),(152866,10,'S73.044S ','Central dislocation of right hip, sequela','Y','0000-00-00 00:00:00'),(152865,10,'S73.044D ','Central dislocation of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152864,10,'S73.044A ','Central dislocation of right hip, initial encounter','Y','0000-00-00 00:00:00'),(152863,10,'S73.043S ','Central subluxation of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(152862,10,'S73.043D ','Central subluxation of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152860,10,'S73.042S ','Central subluxation of left hip, sequela','Y','0000-00-00 00:00:00'),(152861,10,'S73.043A ','Central subluxation of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(152859,10,'S73.042D ','Central subluxation of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152858,10,'S73.042A ','Central subluxation of left hip, initial encounter','Y','0000-00-00 00:00:00'),(152857,10,'S73.041S ','Central subluxation of right hip, sequela','Y','0000-00-00 00:00:00'),(152856,10,'S73.041D ','Central subluxation of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152855,10,'S73.041A ','Central subluxation of right hip, initial encounter','Y','0000-00-00 00:00:00'),(152854,10,'S73.036S ','Other anterior dislocation of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(152853,10,'S73.036D ','Other anterior dislocation of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152852,10,'S73.036A ','Other anterior dislocation of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(152851,10,'S73.035S ','Other anterior dislocation of left hip, sequela','Y','0000-00-00 00:00:00'),(152850,10,'S73.035D ','Other anterior dislocation of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152849,10,'S73.035A ','Other anterior dislocation of left hip, initial encounter','Y','0000-00-00 00:00:00'),(152848,10,'S73.034S ','Other anterior dislocation of right hip, sequela','Y','0000-00-00 00:00:00'),(152847,10,'S73.034D ','Other anterior dislocation of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152846,10,'S73.034A ','Other anterior dislocation of right hip, initial encounter','Y','0000-00-00 00:00:00'),(152845,10,'S73.033S ','Other anterior subluxation of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(152844,10,'S73.033D ','Other anterior subluxation of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152843,10,'S73.033A ','Other anterior subluxation of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(152842,10,'S73.032S ','Other anterior subluxation of left hip, sequela','Y','0000-00-00 00:00:00'),(152841,10,'S73.032D ','Other anterior subluxation of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152840,10,'S73.032A ','Other anterior subluxation of left hip, initial encounter','Y','0000-00-00 00:00:00'),(152839,10,'S73.031S ','Other anterior subluxation of right hip, sequela','Y','0000-00-00 00:00:00'),(152838,10,'S73.031D ','Other anterior subluxation of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152837,10,'S73.031A ','Other anterior subluxation of right hip, initial encounter','Y','0000-00-00 00:00:00'),(152836,10,'S73.026S ','Obturator dislocation of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(152835,10,'S73.026D ','Obturator dislocation of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152834,10,'S73.026A ','Obturator dislocation of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(152833,10,'S73.025S ','Obturator dislocation of left hip, sequela','Y','0000-00-00 00:00:00'),(152832,10,'S73.025D ','Obturator dislocation of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152831,10,'S73.025A ','Obturator dislocation of left hip, initial encounter','Y','0000-00-00 00:00:00'),(152830,10,'S73.024S ','Obturator dislocation of right hip, sequela','Y','0000-00-00 00:00:00'),(152829,10,'S73.024D ','Obturator dislocation of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152828,10,'S73.024A ','Obturator dislocation of right hip, initial encounter','Y','0000-00-00 00:00:00'),(152827,10,'S73.023S ','Obturator subluxation of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(152826,10,'S73.023D ','Obturator subluxation of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152825,10,'S73.023A ','Obturator subluxation of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(152824,10,'S73.022S ','Obturator subluxation of left hip, sequela','Y','0000-00-00 00:00:00'),(152823,10,'S73.022D ','Obturator subluxation of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152822,10,'S73.022A ','Obturator subluxation of left hip, initial encounter','Y','0000-00-00 00:00:00'),(152821,10,'S73.021S ','Obturator subluxation of right hip, sequela','Y','0000-00-00 00:00:00'),(152820,10,'S73.021D ','Obturator subluxation of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152819,10,'S73.021A ','Obturator subluxation of right hip, initial encounter','Y','0000-00-00 00:00:00'),(152818,10,'S73.016S ','Posterior dislocation of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(152817,10,'S73.016D ','Posterior dislocation of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152816,10,'S73.016A ','Posterior dislocation of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(152815,10,'S73.015S ','Posterior dislocation of left hip, sequela','Y','0000-00-00 00:00:00'),(152814,10,'S73.015D ','Posterior dislocation of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152813,10,'S73.015A ','Posterior dislocation of left hip, initial encounter','Y','0000-00-00 00:00:00'),(152812,10,'S73.014S ','Posterior dislocation of right hip, sequela','Y','0000-00-00 00:00:00'),(152811,10,'S73.014D ','Posterior dislocation of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152810,10,'S73.014A ','Posterior dislocation of right hip, initial encounter','Y','0000-00-00 00:00:00'),(152809,10,'S73.013S ','Posterior subluxation of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(152808,10,'S73.013D ','Posterior subluxation of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152807,10,'S73.013A ','Posterior subluxation of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(152806,10,'S73.012S ','Posterior subluxation of left hip, sequela','Y','0000-00-00 00:00:00'),(152805,10,'S73.012D ','Posterior subluxation of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152804,10,'S73.012A ','Posterior subluxation of left hip, initial encounter','Y','0000-00-00 00:00:00'),(152803,10,'S73.011S ','Posterior subluxation of right hip, sequela','Y','0000-00-00 00:00:00'),(152801,10,'S73.011A ','Posterior subluxation of right hip, initial encounter','Y','0000-00-00 00:00:00'),(152802,10,'S73.011D ','Posterior subluxation of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152800,10,'S73.006S ','Unspecified dislocation of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(152799,10,'S73.006D ','Unspecified dislocation of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152798,10,'S73.006A ','Unspecified dislocation of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(152797,10,'S73.005S ','Unspecified dislocation of left hip, sequela','Y','0000-00-00 00:00:00'),(152796,10,'S73.005D ','Unspecified dislocation of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152795,10,'S73.005A ','Unspecified dislocation of left hip, initial encounter','Y','0000-00-00 00:00:00'),(152794,10,'S73.004S ','Unspecified dislocation of right hip, sequela','Y','0000-00-00 00:00:00'),(152793,10,'S73.004D ','Unspecified dislocation of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152792,10,'S73.004A ','Unspecified dislocation of right hip, initial encounter','Y','0000-00-00 00:00:00'),(152791,10,'S73.003S ','Unspecified subluxation of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(152790,10,'S73.003D ','Unspecified subluxation of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152789,10,'S73.003A ','Unspecified subluxation of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(152788,10,'S73.002S ','Unspecified subluxation of left hip, sequela','Y','0000-00-00 00:00:00'),(152786,10,'S73.002A ','Unspecified subluxation of left hip, initial encounter','Y','0000-00-00 00:00:00'),(152787,10,'S73.002D ','Unspecified subluxation of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152785,10,'S73.001S ','Unspecified subluxation of right hip, sequela','Y','0000-00-00 00:00:00'),(152784,10,'S73.001D ','Unspecified subluxation of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(152783,10,'S73.001A ','Unspecified subluxation of right hip, initial encounter','Y','0000-00-00 00:00:00'),(152782,10,'S72.92XS ','Unspecified fracture of left femur, sequela','Y','0000-00-00 00:00:00'),(152781,10,'S72.92XR ','Unspecified fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152780,10,'S72.92XQ ','Unspecified fracture of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152779,10,'S72.92XP ','Unspecified fracture of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152778,10,'S72.92XN ','Unspecified fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152777,10,'S72.92XM ','Unspecified fracture of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152776,10,'S72.92XK ','Unspecified fracture of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152775,10,'S72.92XJ ','Unspecified fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152774,10,'S72.92XH ','Unspecified fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152773,10,'S72.92XG ','Unspecified fracture of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152772,10,'S72.92XF ','Unspecified fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152771,10,'S72.92XE ','Unspecified fracture of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152770,10,'S72.92XD ','Unspecified fracture of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152769,10,'S72.92XC ','Unspecified fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152768,10,'S72.92XB ','Unspecified fracture of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152767,10,'S72.92XA ','Unspecified fracture of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152766,10,'S72.91XS ','Unspecified fracture of right femur, sequela','Y','0000-00-00 00:00:00'),(152765,10,'S72.91XR ','Unspecified fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152764,10,'S72.91XQ ','Unspecified fracture of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152763,10,'S72.91XP ','Unspecified fracture of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152762,10,'S72.91XN ','Unspecified fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152761,10,'S72.91XM ','Unspecified fracture of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152760,10,'S72.91XK ','Unspecified fracture of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152759,10,'S72.91XJ ','Unspecified fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152758,10,'S72.91XH ','Unspecified fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152757,10,'S72.91XG ','Unspecified fracture of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152756,10,'S72.91XF ','Unspecified fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152755,10,'S72.91XE ','Unspecified fracture of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152754,10,'S72.91XD ','Unspecified fracture of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152753,10,'S72.91XC ','Unspecified fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152752,10,'S72.91XB ','Unspecified fracture of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152751,10,'S72.91XA ','Unspecified fracture of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152750,10,'S72.90XS ','Unspecified fracture of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(152749,10,'S72.90XR ','Unspecified fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152748,10,'S72.90XQ ','Unspecified fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152747,10,'S72.90XP ','Unspecified fracture of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152746,10,'S72.90XN ','Unspecified fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152745,10,'S72.90XM ','Unspecified fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152744,10,'S72.90XK ','Unspecified fracture of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152743,10,'S72.90XJ ','Unspecified fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152742,10,'S72.90XH ','Unspecified fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152741,10,'S72.90XG ','Unspecified fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152740,10,'S72.90XF ','Unspecified fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152739,10,'S72.90XE ','Unspecified fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152738,10,'S72.90XD ','Unspecified fracture of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152737,10,'S72.90XC ','Unspecified fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152736,10,'S72.90XB ','Unspecified fracture of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152735,10,'S72.90XA ','Unspecified fracture of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152734,10,'S72.8X9S ','Other fracture of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(152733,10,'S72.8X9R ','Other fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152732,10,'S72.8X9Q ','Other fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152731,10,'S72.8X9P ','Other fracture of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152730,10,'S72.8X9N ','Other fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152729,10,'S72.8X9M ','Other fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152728,10,'S72.8X9K ','Other fracture of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152727,10,'S72.8X9J ','Other fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152726,10,'S72.8X9H ','Other fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152725,10,'S72.8X9G ','Other fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152724,10,'S72.8X9F ','Other fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152723,10,'S72.8X9E ','Other fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152722,10,'S72.8X9D ','Other fracture of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152721,10,'S72.8X9C ','Other fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152720,10,'S72.8X9B ','Other fracture of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152719,10,'S72.8X9A ','Other fracture of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152718,10,'S72.8X2S ','Other fracture of left femur, sequela','Y','0000-00-00 00:00:00'),(152717,10,'S72.8X2R ','Other fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152716,10,'S72.8X2Q ','Other fracture of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152715,10,'S72.8X2P ','Other fracture of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152714,10,'S72.8X2N ','Other fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152713,10,'S72.8X2M ','Other fracture of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152712,10,'S72.8X2K ','Other fracture of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152711,10,'S72.8X2J ','Other fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152710,10,'S72.8X2H ','Other fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152709,10,'S72.8X2G ','Other fracture of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152708,10,'S72.8X2F ','Other fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152707,10,'S72.8X2E ','Other fracture of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152706,10,'S72.8X2D ','Other fracture of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152705,10,'S72.8X2C ','Other fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152704,10,'S72.8X2B ','Other fracture of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152703,10,'S72.8X2A ','Other fracture of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152702,10,'S72.8X1S ','Other fracture of right femur, sequela','Y','0000-00-00 00:00:00'),(152701,10,'S72.8X1R ','Other fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152700,10,'S72.8X1Q ','Other fracture of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152699,10,'S72.8X1P ','Other fracture of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152698,10,'S72.8X1N ','Other fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152697,10,'S72.8X1M ','Other fracture of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152696,10,'S72.8X1K ','Other fracture of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152695,10,'S72.8X1J ','Other fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152694,10,'S72.8X1H ','Other fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152693,10,'S72.8X1G ','Other fracture of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152692,10,'S72.8X1F ','Other fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152691,10,'S72.8X1E ','Other fracture of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152690,10,'S72.8X1D ','Other fracture of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152689,10,'S72.8X1C ','Other fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152688,10,'S72.8X1B ','Other fracture of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152687,10,'S72.8X1A ','Other fracture of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152686,10,'S72.499S ','Other fracture of lower end of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(152685,10,'S72.499R ','Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152684,10,'S72.499Q ','Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152683,10,'S72.499P ','Other fracture of lower end of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152682,10,'S72.499N ','Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152681,10,'S72.499M ','Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152680,10,'S72.499K ','Other fracture of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152679,10,'S72.499J ','Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152678,10,'S72.499H ','Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152677,10,'S72.499G ','Other fracture of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152676,10,'S72.499F ','Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152675,10,'S72.499E ','Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152674,10,'S72.499D ','Other fracture of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152673,10,'S72.499C ','Other fracture of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152672,10,'S72.499B ','Other fracture of lower end of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152671,10,'S72.499A ','Other fracture of lower end of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152670,10,'S72.492S ','Other fracture of lower end of left femur, sequela','Y','0000-00-00 00:00:00'),(152669,10,'S72.492R ','Other fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152668,10,'S72.492Q ','Other fracture of lower end of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152667,10,'S72.492P ','Other fracture of lower end of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152666,10,'S72.492N ','Other fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152665,10,'S72.492M ','Other fracture of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152664,10,'S72.492K ','Other fracture of lower end of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152663,10,'S72.492J ','Other fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152662,10,'S72.492H ','Other fracture of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152661,10,'S72.492G ','Other fracture of lower end of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152660,10,'S72.492F ','Other fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152659,10,'S72.492E ','Other fracture of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152658,10,'S72.492D ','Other fracture of lower end of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152657,10,'S72.492C ','Other fracture of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152656,10,'S72.492B ','Other fracture of lower end of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152655,10,'S72.492A ','Other fracture of lower end of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152654,10,'S72.491S ','Other fracture of lower end of right femur, sequela','Y','0000-00-00 00:00:00'),(152653,10,'S72.491R ','Other fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152652,10,'S72.491Q ','Other fracture of lower end of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152651,10,'S72.491P ','Other fracture of lower end of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152650,10,'S72.491N ','Other fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152649,10,'S72.491M ','Other fracture of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152648,10,'S72.491K ','Other fracture of lower end of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152647,10,'S72.491J ','Other fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152646,10,'S72.491H ','Other fracture of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152645,10,'S72.491G ','Other fracture of lower end of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152644,10,'S72.491F ','Other fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152643,10,'S72.491E ','Other fracture of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152642,10,'S72.491D ','Other fracture of lower end of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152641,10,'S72.491C ','Other fracture of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152640,10,'S72.491B ','Other fracture of lower end of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152639,10,'S72.491A ','Other fracture of lower end of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152638,10,'S72.479S ','Torus fracture of lower end of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(152637,10,'S72.479P ','Torus fracture of lower end of unspecified femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(152636,10,'S72.479K ','Torus fracture of lower end of unspecified femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(152635,10,'S72.479G ','Torus fracture of lower end of unspecified femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(152634,10,'S72.479D ','Torus fracture of lower end of unspecified femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(152633,10,'S72.479A ','Torus fracture of lower end of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152632,10,'S72.472S ','Torus fracture of lower end of left femur, sequela','Y','0000-00-00 00:00:00'),(152631,10,'S72.472P ','Torus fracture of lower end of left femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(152630,10,'S72.472K ','Torus fracture of lower end of left femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(152629,10,'S72.472G ','Torus fracture of lower end of left femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(152628,10,'S72.472D ','Torus fracture of lower end of left femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(152627,10,'S72.472A ','Torus fracture of lower end of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152626,10,'S72.471S ','Torus fracture of lower end of right femur, sequela','Y','0000-00-00 00:00:00'),(152625,10,'S72.471P ','Torus fracture of lower end of right femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(152624,10,'S72.471K ','Torus fracture of lower end of right femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(152623,10,'S72.471G ','Torus fracture of lower end of right femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(152622,10,'S72.471D ','Torus fracture of lower end of right femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(152621,10,'S72.471A ','Torus fracture of lower end of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152620,10,'S72.466S ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(152619,10,'S72.466R ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152618,10,'S72.466Q ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152617,10,'S72.466P ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152616,10,'S72.466N ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152615,10,'S72.466M ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152614,10,'S72.466K ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152613,10,'S72.466J ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152612,10,'S72.466H ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152611,10,'S72.466G ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152610,10,'S72.466F ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152609,10,'S72.466E ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152608,10,'S72.466D ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152607,10,'S72.466C ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152606,10,'S72.466B ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152605,10,'S72.466A ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152604,10,'S72.465S ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, sequela','Y','0000-00-00 00:00:00'),(152603,10,'S72.465R ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152602,10,'S72.465Q ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152601,10,'S72.465P ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152600,10,'S72.465N ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152599,10,'S72.465M ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152598,10,'S72.465K ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152597,10,'S72.465J ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152596,10,'S72.465H ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152595,10,'S72.465G ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152594,10,'S72.465F ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152593,10,'S72.465E ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152592,10,'S72.465D ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152591,10,'S72.465C ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152590,10,'S72.465B ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152589,10,'S72.465A ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152588,10,'S72.464S ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, sequela','Y','0000-00-00 00:00:00'),(152587,10,'S72.464R ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152586,10,'S72.464Q ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152585,10,'S72.464P ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152584,10,'S72.464N ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152583,10,'S72.464M ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152582,10,'S72.464K ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152581,10,'S72.464J ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152580,10,'S72.464H ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152579,10,'S72.464G ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152578,10,'S72.464F ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152577,10,'S72.464E ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152576,10,'S72.464D ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152575,10,'S72.464C ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152574,10,'S72.464B ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152573,10,'S72.464A ','Nondisplaced supracondylar fracture with intracondylar extension of lower end of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152572,10,'S72.463S ','Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(152571,10,'S72.463R ','Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152570,10,'S72.463Q ','Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152569,10,'S72.463P ','Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152568,10,'S72.463N ','Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152567,10,'S72.463M ','Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152566,10,'S72.463K ','Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152565,10,'S72.463J ','Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152564,10,'S72.463H ','Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152563,10,'S72.463G ','Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152562,10,'S72.463F ','Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152561,10,'S72.463E ','Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152560,10,'S72.463D ','Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152559,10,'S72.463C ','Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152558,10,'S72.463B ','Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152557,10,'S72.463A ','Displaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152556,10,'S72.462S ','Displaced supracondylar fracture with intracondylar extension of lower end of left femur, sequela','Y','0000-00-00 00:00:00'),(152555,10,'S72.462R ','Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152554,10,'S72.462Q ','Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152553,10,'S72.462P ','Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152552,10,'S72.462N ','Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152551,10,'S72.462M ','Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152550,10,'S72.462K ','Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152549,10,'S72.462J ','Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152548,10,'S72.462H ','Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152547,10,'S72.462G ','Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152546,10,'S72.462F ','Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152545,10,'S72.462E ','Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152544,10,'S72.462D ','Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152543,10,'S72.462C ','Displaced supracondylar fracture with intracondylar extension of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152542,10,'S72.462B ','Displaced supracondylar fracture with intracondylar extension of lower end of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152541,10,'S72.462A ','Displaced supracondylar fracture with intracondylar extension of lower end of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152540,10,'S72.461S ','Displaced supracondylar fracture with intracondylar extension of lower end of right femur, sequela','Y','0000-00-00 00:00:00'),(152539,10,'S72.461R ','Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152538,10,'S72.461Q ','Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152537,10,'S72.461P ','Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152536,10,'S72.461N ','Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152535,10,'S72.461M ','Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152534,10,'S72.461K ','Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152533,10,'S72.461J ','Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152532,10,'S72.461H ','Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152531,10,'S72.461G ','Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152530,10,'S72.461F ','Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152529,10,'S72.461E ','Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152528,10,'S72.461D ','Displaced supracondylar fracture with intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152527,10,'S72.461C ','Displaced supracondylar fracture with intracondylar extension of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152526,10,'S72.461B ','Displaced supracondylar fracture with intracondylar extension of lower end of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152525,10,'S72.461A ','Displaced supracondylar fracture with intracondylar extension of lower end of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152524,10,'S72.456S ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(152523,10,'S72.456R ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152522,10,'S72.456Q ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152521,10,'S72.456P ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152520,10,'S72.456N ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152519,10,'S72.456M ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152518,10,'S72.456K ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152517,10,'S72.456J ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152516,10,'S72.456H ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152515,10,'S72.456G ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152514,10,'S72.456F ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152513,10,'S72.456E ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152512,10,'S72.456D ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152511,10,'S72.456C ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152510,10,'S72.456B ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152509,10,'S72.456A ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152508,10,'S72.455S ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, sequela','Y','0000-00-00 00:00:00'),(152507,10,'S72.455R ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152506,10,'S72.455Q ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152505,10,'S72.455P ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152504,10,'S72.455N ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152503,10,'S72.455M ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152502,10,'S72.455K ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152501,10,'S72.455J ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152500,10,'S72.455H ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152499,10,'S72.455G ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152498,10,'S72.455F ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152497,10,'S72.455E ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152496,10,'S72.455D ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152495,10,'S72.455C ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152494,10,'S72.455B ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152493,10,'S72.455A ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152492,10,'S72.454S ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, sequela','Y','0000-00-00 00:00:00'),(152491,10,'S72.454R ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152490,10,'S72.454Q ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152489,10,'S72.454P ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152488,10,'S72.454N ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152487,10,'S72.454M ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152486,10,'S72.454K ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152485,10,'S72.454J ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152484,10,'S72.454H ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152483,10,'S72.454G ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152482,10,'S72.454F ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152481,10,'S72.454E ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152480,10,'S72.454D ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152479,10,'S72.454C ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152478,10,'S72.454B ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152477,10,'S72.454A ','Nondisplaced supracondylar fracture without intracondylar extension of lower end of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152476,10,'S72.453S ','Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(152475,10,'S72.453R ','Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152474,10,'S72.453Q ','Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152473,10,'S72.453P ','Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152472,10,'S72.453N ','Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152471,10,'S72.453M ','Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152470,10,'S72.453K ','Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152469,10,'S72.453J ','Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152468,10,'S72.453H ','Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152467,10,'S72.453G ','Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152466,10,'S72.453F ','Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152465,10,'S72.453E ','Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152464,10,'S72.453D ','Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152463,10,'S72.453C ','Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152462,10,'S72.453B ','Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152461,10,'S72.453A ','Displaced supracondylar fracture without intracondylar extension of lower end of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152460,10,'S72.452S ','Displaced supracondylar fracture without intracondylar extension of lower end of left femur, sequela','Y','0000-00-00 00:00:00'),(152459,10,'S72.452R ','Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152458,10,'S72.452Q ','Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152457,10,'S72.452P ','Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152456,10,'S72.452N ','Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152455,10,'S72.452M ','Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152454,10,'S72.452K ','Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152453,10,'S72.452J ','Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152452,10,'S72.452H ','Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152451,10,'S72.452G ','Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152450,10,'S72.452F ','Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152449,10,'S72.452E ','Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152448,10,'S72.452D ','Displaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152447,10,'S72.452C ','Displaced supracondylar fracture without intracondylar extension of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152446,10,'S72.452B ','Displaced supracondylar fracture without intracondylar extension of lower end of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152445,10,'S72.452A ','Displaced supracondylar fracture without intracondylar extension of lower end of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152444,10,'S72.451S ','Displaced supracondylar fracture without intracondylar extension of lower end of right femur, sequela','Y','0000-00-00 00:00:00'),(152443,10,'S72.451R ','Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152442,10,'S72.451Q ','Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152441,10,'S72.451P ','Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152440,10,'S72.451N ','Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152439,10,'S72.451M ','Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152438,10,'S72.451K ','Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152437,10,'S72.451J ','Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152436,10,'S72.451H ','Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152435,10,'S72.451G ','Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152434,10,'S72.451F ','Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152433,10,'S72.451E ','Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152432,10,'S72.451D ','Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152431,10,'S72.451C ','Displaced supracondylar fracture without intracondylar extension of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152430,10,'S72.451B ','Displaced supracondylar fracture without intracondylar extension of lower end of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152429,10,'S72.451A ','Displaced supracondylar fracture without intracondylar extension of lower end of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152428,10,'S72.446S ','Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(152427,10,'S72.446R ','Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152426,10,'S72.446Q ','Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152425,10,'S72.446P ','Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152424,10,'S72.446N ','Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152423,10,'S72.446M ','Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152422,10,'S72.446K ','Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152421,10,'S72.446J ','Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152420,10,'S72.446H ','Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152419,10,'S72.446G ','Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152418,10,'S72.446F ','Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152417,10,'S72.446E ','Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152416,10,'S72.446D ','Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152415,10,'S72.446C ','Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152414,10,'S72.446B ','Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152413,10,'S72.446A ','Nondisplaced fracture of lower epiphysis (separation) of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152412,10,'S72.445S ','Nondisplaced fracture of lower epiphysis (separation) of left femur, sequela','Y','0000-00-00 00:00:00'),(152411,10,'S72.445R ','Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152410,10,'S72.445Q ','Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152409,10,'S72.445P ','Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152408,10,'S72.445N ','Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152407,10,'S72.445M ','Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152406,10,'S72.445K ','Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152405,10,'S72.445J ','Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152404,10,'S72.445H ','Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152403,10,'S72.445G ','Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152402,10,'S72.445F ','Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152401,10,'S72.445E ','Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152400,10,'S72.445D ','Nondisplaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152399,10,'S72.445C ','Nondisplaced fracture of lower epiphysis (separation) of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152398,10,'S72.445B ','Nondisplaced fracture of lower epiphysis (separation) of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152397,10,'S72.445A ','Nondisplaced fracture of lower epiphysis (separation) of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152396,10,'S72.444S ','Nondisplaced fracture of lower epiphysis (separation) of right femur, sequela','Y','0000-00-00 00:00:00'),(152395,10,'S72.444R ','Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152394,10,'S72.444Q ','Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152393,10,'S72.444P ','Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152392,10,'S72.444N ','Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152391,10,'S72.444M ','Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152390,10,'S72.444K ','Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152389,10,'S72.444J ','Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152388,10,'S72.444H ','Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152387,10,'S72.444G ','Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152386,10,'S72.444F ','Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152385,10,'S72.444E ','Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152384,10,'S72.444D ','Nondisplaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152383,10,'S72.444C ','Nondisplaced fracture of lower epiphysis (separation) of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152382,10,'S72.444B ','Nondisplaced fracture of lower epiphysis (separation) of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152381,10,'S72.444A ','Nondisplaced fracture of lower epiphysis (separation) of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152380,10,'S72.443S ','Displaced fracture of lower epiphysis (separation) of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(152379,10,'S72.443R ','Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152378,10,'S72.443Q ','Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152377,10,'S72.443P ','Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152376,10,'S72.443N ','Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152375,10,'S72.443M ','Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152374,10,'S72.443K ','Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152373,10,'S72.443J ','Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152372,10,'S72.443H ','Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152371,10,'S72.443G ','Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152370,10,'S72.443F ','Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152369,10,'S72.443E ','Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152368,10,'S72.443D ','Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152367,10,'S72.443C ','Displaced fracture of lower epiphysis (separation) of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152366,10,'S72.443B ','Displaced fracture of lower epiphysis (separation) of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152365,10,'S72.443A ','Displaced fracture of lower epiphysis (separation) of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152364,10,'S72.442S ','Displaced fracture of lower epiphysis (separation) of left femur, sequela','Y','0000-00-00 00:00:00'),(152363,10,'S72.442R ','Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152362,10,'S72.442Q ','Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152361,10,'S72.442P ','Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152360,10,'S72.442N ','Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152359,10,'S72.442M ','Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152358,10,'S72.442K ','Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152357,10,'S72.442J ','Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152356,10,'S72.442H ','Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152355,10,'S72.442G ','Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152354,10,'S72.442F ','Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152353,10,'S72.442E ','Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152352,10,'S72.442D ','Displaced fracture of lower epiphysis (separation) of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152351,10,'S72.442C ','Displaced fracture of lower epiphysis (separation) of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152350,10,'S72.442B ','Displaced fracture of lower epiphysis (separation) of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152349,10,'S72.442A ','Displaced fracture of lower epiphysis (separation) of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152348,10,'S72.441S ','Displaced fracture of lower epiphysis (separation) of right femur, sequela','Y','0000-00-00 00:00:00'),(152347,10,'S72.441R ','Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152346,10,'S72.441Q ','Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152345,10,'S72.441P ','Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152344,10,'S72.441N ','Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152343,10,'S72.441M ','Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152342,10,'S72.441K ','Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152341,10,'S72.441J ','Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152340,10,'S72.441H ','Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152339,10,'S72.441G ','Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152338,10,'S72.441F ','Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152337,10,'S72.441E ','Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152336,10,'S72.441D ','Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152335,10,'S72.441C ','Displaced fracture of lower epiphysis (separation) of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152334,10,'S72.441B ','Displaced fracture of lower epiphysis (separation) of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152333,10,'S72.441A ','Displaced fracture of lower epiphysis (separation) of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152332,10,'S72.436S ','Nondisplaced fracture of medial condyle of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(152331,10,'S72.436R ','Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152330,10,'S72.436Q ','Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152329,10,'S72.436P ','Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152328,10,'S72.436N ','Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152327,10,'S72.436M ','Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152326,10,'S72.436K ','Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152325,10,'S72.436J ','Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152324,10,'S72.436H ','Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152323,10,'S72.436G ','Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152322,10,'S72.436F ','Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152321,10,'S72.436E ','Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152320,10,'S72.436D ','Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152319,10,'S72.436C ','Nondisplaced fracture of medial condyle of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152318,10,'S72.436B ','Nondisplaced fracture of medial condyle of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152317,10,'S72.436A ','Nondisplaced fracture of medial condyle of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152316,10,'S72.435S ','Nondisplaced fracture of medial condyle of left femur, sequela','Y','0000-00-00 00:00:00'),(152315,10,'S72.435R ','Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152314,10,'S72.435Q ','Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152313,10,'S72.435P ','Nondisplaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152312,10,'S72.435N ','Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152311,10,'S72.435M ','Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152310,10,'S72.435K ','Nondisplaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152309,10,'S72.435J ','Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152308,10,'S72.435H ','Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152307,10,'S72.435G ','Nondisplaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152306,10,'S72.435F ','Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152305,10,'S72.435E ','Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152304,10,'S72.435D ','Nondisplaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152303,10,'S72.435C ','Nondisplaced fracture of medial condyle of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152301,10,'S72.435A ','Nondisplaced fracture of medial condyle of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152302,10,'S72.435B ','Nondisplaced fracture of medial condyle of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152300,10,'S72.434S ','Nondisplaced fracture of medial condyle of right femur, sequela','Y','0000-00-00 00:00:00'),(152299,10,'S72.434R ','Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152298,10,'S72.434Q ','Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152297,10,'S72.434P ','Nondisplaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152296,10,'S72.434N ','Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152295,10,'S72.434M ','Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152294,10,'S72.434K ','Nondisplaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152293,10,'S72.434J ','Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152292,10,'S72.434H ','Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152291,10,'S72.434G ','Nondisplaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152290,10,'S72.434F ','Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152289,10,'S72.434E ','Nondisplaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152288,10,'S72.434D ','Nondisplaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152287,10,'S72.434C ','Nondisplaced fracture of medial condyle of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152286,10,'S72.434B ','Nondisplaced fracture of medial condyle of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152285,10,'S72.434A ','Nondisplaced fracture of medial condyle of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152284,10,'S72.433S ','Displaced fracture of medial condyle of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(152283,10,'S72.433R ','Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152282,10,'S72.433Q ','Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152281,10,'S72.433P ','Displaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152280,10,'S72.433N ','Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152279,10,'S72.433M ','Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152278,10,'S72.433K ','Displaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152277,10,'S72.433J ','Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152276,10,'S72.433H ','Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152275,10,'S72.433G ','Displaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152274,10,'S72.433F ','Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152273,10,'S72.433E ','Displaced fracture of medial condyle of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152272,10,'S72.433D ','Displaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152271,10,'S72.433C ','Displaced fracture of medial condyle of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152270,10,'S72.433B ','Displaced fracture of medial condyle of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152269,10,'S72.433A ','Displaced fracture of medial condyle of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152268,10,'S72.432S ','Displaced fracture of medial condyle of left femur, sequela','Y','0000-00-00 00:00:00'),(152267,10,'S72.432R ','Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152266,10,'S72.432Q ','Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152265,10,'S72.432P ','Displaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152264,10,'S72.432N ','Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152263,10,'S72.432M ','Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152262,10,'S72.432K ','Displaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152261,10,'S72.432J ','Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152260,10,'S72.432H ','Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152259,10,'S72.432G ','Displaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152258,10,'S72.432F ','Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152257,10,'S72.432E ','Displaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152256,10,'S72.432D ','Displaced fracture of medial condyle of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152255,10,'S72.432C ','Displaced fracture of medial condyle of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152254,10,'S72.432B ','Displaced fracture of medial condyle of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152253,10,'S72.432A ','Displaced fracture of medial condyle of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152252,10,'S72.431S ','Displaced fracture of medial condyle of right femur, sequela','Y','0000-00-00 00:00:00'),(152251,10,'S72.431R ','Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152250,10,'S72.431Q ','Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152249,10,'S72.431P ','Displaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152248,10,'S72.431N ','Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152247,10,'S72.431M ','Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152246,10,'S72.431K ','Displaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152245,10,'S72.431J ','Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152244,10,'S72.431H ','Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152243,10,'S72.431G ','Displaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152242,10,'S72.431F ','Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152241,10,'S72.431E ','Displaced fracture of medial condyle of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152240,10,'S72.431D ','Displaced fracture of medial condyle of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152239,10,'S72.431C ','Displaced fracture of medial condyle of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152238,10,'S72.431B ','Displaced fracture of medial condyle of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152237,10,'S72.431A ','Displaced fracture of medial condyle of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152236,10,'S72.426S ','Nondisplaced fracture of lateral condyle of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(152235,10,'S72.426R ','Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152234,10,'S72.426Q ','Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152233,10,'S72.426P ','Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152232,10,'S72.426N ','Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152231,10,'S72.426M ','Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152230,10,'S72.426K ','Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152229,10,'S72.426J ','Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152228,10,'S72.426H ','Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152227,10,'S72.426G ','Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152226,10,'S72.426F ','Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152225,10,'S72.426E ','Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152224,10,'S72.426D ','Nondisplaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152223,10,'S72.426C ','Nondisplaced fracture of lateral condyle of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152222,10,'S72.426B ','Nondisplaced fracture of lateral condyle of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152221,10,'S72.426A ','Nondisplaced fracture of lateral condyle of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152220,10,'S72.425S ','Nondisplaced fracture of lateral condyle of left femur, sequela','Y','0000-00-00 00:00:00'),(152219,10,'S72.425R ','Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152218,10,'S72.425Q ','Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152217,10,'S72.425P ','Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152216,10,'S72.425N ','Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152215,10,'S72.425M ','Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152214,10,'S72.425K ','Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152213,10,'S72.425J ','Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152212,10,'S72.425H ','Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152211,10,'S72.425G ','Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152210,10,'S72.425F ','Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152209,10,'S72.425E ','Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152208,10,'S72.425D ','Nondisplaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152207,10,'S72.425C ','Nondisplaced fracture of lateral condyle of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152206,10,'S72.425B ','Nondisplaced fracture of lateral condyle of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152205,10,'S72.425A ','Nondisplaced fracture of lateral condyle of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152204,10,'S72.424S ','Nondisplaced fracture of lateral condyle of right femur, sequela','Y','0000-00-00 00:00:00'),(152203,10,'S72.424R ','Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152202,10,'S72.424Q ','Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152201,10,'S72.424P ','Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152200,10,'S72.424N ','Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152199,10,'S72.424M ','Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152198,10,'S72.424K ','Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152197,10,'S72.424J ','Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152196,10,'S72.424H ','Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152195,10,'S72.424G ','Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152194,10,'S72.424F ','Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152193,10,'S72.424E ','Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152192,10,'S72.424D ','Nondisplaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152191,10,'S72.424C ','Nondisplaced fracture of lateral condyle of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152190,10,'S72.424B ','Nondisplaced fracture of lateral condyle of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152189,10,'S72.424A ','Nondisplaced fracture of lateral condyle of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152188,10,'S72.423S ','Displaced fracture of lateral condyle of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(152187,10,'S72.423R ','Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152186,10,'S72.423Q ','Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152185,10,'S72.423P ','Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152184,10,'S72.423N ','Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152183,10,'S72.423M ','Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152182,10,'S72.423K ','Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152181,10,'S72.423J ','Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152180,10,'S72.423H ','Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152179,10,'S72.423G ','Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152178,10,'S72.423F ','Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152177,10,'S72.423E ','Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152176,10,'S72.423D ','Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152175,10,'S72.423C ','Displaced fracture of lateral condyle of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152174,10,'S72.423B ','Displaced fracture of lateral condyle of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152173,10,'S72.423A ','Displaced fracture of lateral condyle of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152172,10,'S72.422S ','Displaced fracture of lateral condyle of left femur, sequela','Y','0000-00-00 00:00:00'),(152171,10,'S72.422R ','Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152170,10,'S72.422Q ','Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152169,10,'S72.422P ','Displaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152168,10,'S72.422N ','Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152167,10,'S72.422M ','Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152166,10,'S72.422K ','Displaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152165,10,'S72.422J ','Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152164,10,'S72.422H ','Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152163,10,'S72.422G ','Displaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152162,10,'S72.422F ','Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152161,10,'S72.422E ','Displaced fracture of lateral condyle of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152160,10,'S72.422D ','Displaced fracture of lateral condyle of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152159,10,'S72.422C ','Displaced fracture of lateral condyle of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152158,10,'S72.422B ','Displaced fracture of lateral condyle of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152157,10,'S72.422A ','Displaced fracture of lateral condyle of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152156,10,'S72.421S ','Displaced fracture of lateral condyle of right femur, sequela','Y','0000-00-00 00:00:00'),(152155,10,'S72.421R ','Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152154,10,'S72.421Q ','Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152153,10,'S72.421P ','Displaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152152,10,'S72.421N ','Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152151,10,'S72.421M ','Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152150,10,'S72.421K ','Displaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152149,10,'S72.421J ','Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152148,10,'S72.421H ','Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152147,10,'S72.421G ','Displaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152146,10,'S72.421F ','Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152145,10,'S72.421E ','Displaced fracture of lateral condyle of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152144,10,'S72.421D ','Displaced fracture of lateral condyle of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152143,10,'S72.421C ','Displaced fracture of lateral condyle of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152142,10,'S72.421B ','Displaced fracture of lateral condyle of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152141,10,'S72.421A ','Displaced fracture of lateral condyle of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152140,10,'S72.416S ','Nondisplaced unspecified condyle fracture of lower end of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(152139,10,'S72.416R ','Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152138,10,'S72.416Q ','Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152137,10,'S72.416P ','Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152136,10,'S72.416N ','Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152135,10,'S72.416M ','Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152134,10,'S72.416K ','Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152133,10,'S72.416J ','Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152132,10,'S72.416H ','Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152131,10,'S72.416G ','Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152130,10,'S72.416F ','Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152129,10,'S72.416E ','Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152128,10,'S72.416D ','Nondisplaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152127,10,'S72.416C ','Nondisplaced unspecified condyle fracture of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152126,10,'S72.416B ','Nondisplaced unspecified condyle fracture of lower end of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152125,10,'S72.416A ','Nondisplaced unspecified condyle fracture of lower end of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152124,10,'S72.415S ','Nondisplaced unspecified condyle fracture of lower end of left femur, sequela','Y','0000-00-00 00:00:00'),(152123,10,'S72.415R ','Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152122,10,'S72.415Q ','Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152121,10,'S72.415P ','Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152120,10,'S72.415N ','Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152119,10,'S72.415M ','Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152118,10,'S72.415K ','Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152117,10,'S72.415J ','Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152116,10,'S72.415H ','Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152115,10,'S72.415G ','Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152114,10,'S72.415F ','Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152113,10,'S72.415E ','Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152112,10,'S72.415D ','Nondisplaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152111,10,'S72.415C ','Nondisplaced unspecified condyle fracture of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152110,10,'S72.415B ','Nondisplaced unspecified condyle fracture of lower end of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152109,10,'S72.415A ','Nondisplaced unspecified condyle fracture of lower end of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152108,10,'S72.414S ','Nondisplaced unspecified condyle fracture of lower end of right femur, sequela','Y','0000-00-00 00:00:00'),(152107,10,'S72.414R ','Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152106,10,'S72.414Q ','Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152105,10,'S72.414P ','Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152104,10,'S72.414N ','Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152103,10,'S72.414M ','Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152102,10,'S72.414K ','Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152101,10,'S72.414J ','Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152100,10,'S72.414H ','Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152099,10,'S72.414G ','Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152098,10,'S72.414F ','Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152097,10,'S72.414E ','Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152096,10,'S72.414D ','Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152095,10,'S72.414C ','Nondisplaced unspecified condyle fracture of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152094,10,'S72.414B ','Nondisplaced unspecified condyle fracture of lower end of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152093,10,'S72.414A ','Nondisplaced unspecified condyle fracture of lower end of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152092,10,'S72.413S ','Displaced unspecified condyle fracture of lower end of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(152091,10,'S72.413R ','Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152090,10,'S72.413Q ','Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152089,10,'S72.413P ','Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152088,10,'S72.413N ','Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152087,10,'S72.413M ','Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152086,10,'S72.413K ','Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152085,10,'S72.413J ','Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152084,10,'S72.413H ','Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152083,10,'S72.413G ','Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152082,10,'S72.413F ','Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152081,10,'S72.413E ','Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152080,10,'S72.413D ','Displaced unspecified condyle fracture of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152079,10,'S72.413C ','Displaced unspecified condyle fracture of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152078,10,'S72.413B ','Displaced unspecified condyle fracture of lower end of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152077,10,'S72.413A ','Displaced unspecified condyle fracture of lower end of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152076,10,'S72.412S ','Displaced unspecified condyle fracture of lower end of left femur, sequela','Y','0000-00-00 00:00:00'),(152075,10,'S72.412R ','Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152074,10,'S72.412Q ','Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152073,10,'S72.412P ','Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152072,10,'S72.412N ','Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152071,10,'S72.412M ','Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152070,10,'S72.412K ','Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152069,10,'S72.412J ','Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152068,10,'S72.412H ','Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152067,10,'S72.412G ','Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152066,10,'S72.412F ','Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152065,10,'S72.412E ','Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152064,10,'S72.412D ','Displaced unspecified condyle fracture of lower end of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152063,10,'S72.412C ','Displaced unspecified condyle fracture of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152062,10,'S72.412B ','Displaced unspecified condyle fracture of lower end of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152061,10,'S72.412A ','Displaced unspecified condyle fracture of lower end of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152060,10,'S72.411S ','Displaced unspecified condyle fracture of lower end of right femur, sequela','Y','0000-00-00 00:00:00'),(152059,10,'S72.411R ','Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152058,10,'S72.411Q ','Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152057,10,'S72.411P ','Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152056,10,'S72.411N ','Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152055,10,'S72.411M ','Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152054,10,'S72.411K ','Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152053,10,'S72.411J ','Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152052,10,'S72.411H ','Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152051,10,'S72.411G ','Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152050,10,'S72.411F ','Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152049,10,'S72.411E ','Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152048,10,'S72.411D ','Displaced unspecified condyle fracture of lower end of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152047,10,'S72.411C ','Displaced unspecified condyle fracture of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152046,10,'S72.411B ','Displaced unspecified condyle fracture of lower end of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152045,10,'S72.411A ','Displaced unspecified condyle fracture of lower end of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152044,10,'S72.409S ','Unspecified fracture of lower end of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(152043,10,'S72.409R ','Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152042,10,'S72.409Q ','Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152041,10,'S72.409P ','Unspecified fracture of lower end of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152040,10,'S72.409N ','Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152039,10,'S72.409M ','Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152038,10,'S72.409K ','Unspecified fracture of lower end of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152037,10,'S72.409J ','Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152036,10,'S72.409H ','Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152035,10,'S72.409G ','Unspecified fracture of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152034,10,'S72.409F ','Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152033,10,'S72.409E ','Unspecified fracture of lower end of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152032,10,'S72.409D ','Unspecified fracture of lower end of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152031,10,'S72.409C ','Unspecified fracture of lower end of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152030,10,'S72.409B ','Unspecified fracture of lower end of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152029,10,'S72.409A ','Unspecified fracture of lower end of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152028,10,'S72.402S ','Unspecified fracture of lower end of left femur, sequela','Y','0000-00-00 00:00:00'),(152027,10,'S72.402R ','Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152026,10,'S72.402Q ','Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152025,10,'S72.402P ','Unspecified fracture of lower end of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152024,10,'S72.402N ','Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152023,10,'S72.402M ','Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152022,10,'S72.402K ','Unspecified fracture of lower end of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152021,10,'S72.402J ','Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152020,10,'S72.402H ','Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152019,10,'S72.402G ','Unspecified fracture of lower end of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152018,10,'S72.402F ','Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152017,10,'S72.402E ','Unspecified fracture of lower end of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152016,10,'S72.402D ','Unspecified fracture of lower end of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(152015,10,'S72.402C ','Unspecified fracture of lower end of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(152014,10,'S72.402B ','Unspecified fracture of lower end of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(152013,10,'S72.402A ','Unspecified fracture of lower end of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(152012,10,'S72.401S ','Unspecified fracture of lower end of right femur, sequela','Y','0000-00-00 00:00:00'),(152011,10,'S72.401R ','Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(152010,10,'S72.401Q ','Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(152009,10,'S72.401P ','Unspecified fracture of lower end of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(152008,10,'S72.401N ','Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(152007,10,'S72.401M ','Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(152006,10,'S72.401K ','Unspecified fracture of lower end of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(152005,10,'S72.401J ','Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(152004,10,'S72.401H ','Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(152003,10,'S72.401G ','Unspecified fracture of lower end of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(152002,10,'S72.401F ','Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(152001,10,'S72.401E ','Unspecified fracture of lower end of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(152000,10,'S72.401D ','Unspecified fracture of lower end of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151999,10,'S72.401C ','Unspecified fracture of lower end of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151998,10,'S72.401B ','Unspecified fracture of lower end of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151997,10,'S72.401A ','Unspecified fracture of lower end of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151996,10,'S72.399S ','Other fracture of shaft of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151995,10,'S72.399R ','Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151994,10,'S72.399Q ','Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151993,10,'S72.399P ','Other fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151992,10,'S72.399N ','Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151991,10,'S72.399M ','Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151990,10,'S72.399K ','Other fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151989,10,'S72.399J ','Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151988,10,'S72.399H ','Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151987,10,'S72.399G ','Other fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151986,10,'S72.399F ','Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151985,10,'S72.399E ','Other fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151984,10,'S72.399D ','Other fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151983,10,'S72.399C ','Other fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151982,10,'S72.399B ','Other fracture of shaft of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151981,10,'S72.399A ','Other fracture of shaft of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151980,10,'S72.392S ','Other fracture of shaft of left femur, sequela','Y','0000-00-00 00:00:00'),(151979,10,'S72.392R ','Other fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151978,10,'S72.392Q ','Other fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151977,10,'S72.392P ','Other fracture of shaft of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151976,10,'S72.392N ','Other fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151975,10,'S72.392M ','Other fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151974,10,'S72.392K ','Other fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151973,10,'S72.392J ','Other fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151972,10,'S72.392H ','Other fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151971,10,'S72.392G ','Other fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151970,10,'S72.392F ','Other fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151969,10,'S72.392E ','Other fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151968,10,'S72.392D ','Other fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151967,10,'S72.392C ','Other fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151966,10,'S72.392B ','Other fracture of shaft of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151965,10,'S72.392A ','Other fracture of shaft of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151964,10,'S72.391S ','Other fracture of shaft of right femur, sequela','Y','0000-00-00 00:00:00'),(151963,10,'S72.391R ','Other fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151962,10,'S72.391Q ','Other fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151961,10,'S72.391P ','Other fracture of shaft of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151960,10,'S72.391N ','Other fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151959,10,'S72.391M ','Other fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151958,10,'S72.391K ','Other fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151957,10,'S72.391J ','Other fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151956,10,'S72.391H ','Other fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151955,10,'S72.391G ','Other fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151954,10,'S72.391F ','Other fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151953,10,'S72.391E ','Other fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151952,10,'S72.391D ','Other fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151951,10,'S72.391C ','Other fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151950,10,'S72.391B ','Other fracture of shaft of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151949,10,'S72.391A ','Other fracture of shaft of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151948,10,'S72.366S ','Nondisplaced segmental fracture of shaft of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151947,10,'S72.366R ','Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151946,10,'S72.366Q ','Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151945,10,'S72.366P ','Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151944,10,'S72.366N ','Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151943,10,'S72.366M ','Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151942,10,'S72.366K ','Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151941,10,'S72.366J ','Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151940,10,'S72.366H ','Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151939,10,'S72.366G ','Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151938,10,'S72.366F ','Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151937,10,'S72.366E ','Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151936,10,'S72.366D ','Nondisplaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151935,10,'S72.366C ','Nondisplaced segmental fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151934,10,'S72.366B ','Nondisplaced segmental fracture of shaft of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151933,10,'S72.366A ','Nondisplaced segmental fracture of shaft of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151932,10,'S72.365S ','Nondisplaced segmental fracture of shaft of left femur, sequela','Y','0000-00-00 00:00:00'),(151931,10,'S72.365R ','Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151930,10,'S72.365Q ','Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151929,10,'S72.365P ','Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151928,10,'S72.365N ','Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151927,10,'S72.365M ','Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151926,10,'S72.365K ','Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151925,10,'S72.365J ','Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151924,10,'S72.365H ','Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151923,10,'S72.365G ','Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151922,10,'S72.365F ','Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151921,10,'S72.365E ','Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151920,10,'S72.365D ','Nondisplaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151919,10,'S72.365C ','Nondisplaced segmental fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151918,10,'S72.365B ','Nondisplaced segmental fracture of shaft of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151917,10,'S72.365A ','Nondisplaced segmental fracture of shaft of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151916,10,'S72.364S ','Nondisplaced segmental fracture of shaft of right femur, sequela','Y','0000-00-00 00:00:00'),(151915,10,'S72.364R ','Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151914,10,'S72.364Q ','Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151913,10,'S72.364P ','Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151912,10,'S72.364N ','Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151911,10,'S72.364M ','Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151910,10,'S72.364K ','Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151909,10,'S72.364J ','Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151908,10,'S72.364H ','Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151907,10,'S72.364G ','Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151906,10,'S72.364F ','Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151905,10,'S72.364E ','Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151904,10,'S72.364D ','Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151903,10,'S72.364C ','Nondisplaced segmental fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151902,10,'S72.364B ','Nondisplaced segmental fracture of shaft of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151901,10,'S72.364A ','Nondisplaced segmental fracture of shaft of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151900,10,'S72.363S ','Displaced segmental fracture of shaft of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151899,10,'S72.363R ','Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151898,10,'S72.363Q ','Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151897,10,'S72.363P ','Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151896,10,'S72.363N ','Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151895,10,'S72.363M ','Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151894,10,'S72.363K ','Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151893,10,'S72.363J ','Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151892,10,'S72.363H ','Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151891,10,'S72.363G ','Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151890,10,'S72.363F ','Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151889,10,'S72.363E ','Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151888,10,'S72.363D ','Displaced segmental fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151887,10,'S72.363C ','Displaced segmental fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151886,10,'S72.363B ','Displaced segmental fracture of shaft of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151885,10,'S72.363A ','Displaced segmental fracture of shaft of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151884,10,'S72.362S ','Displaced segmental fracture of shaft of left femur, sequela','Y','0000-00-00 00:00:00'),(151883,10,'S72.362R ','Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151882,10,'S72.362Q ','Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151881,10,'S72.362P ','Displaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151880,10,'S72.362N ','Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151879,10,'S72.362M ','Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151878,10,'S72.362K ','Displaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151877,10,'S72.362J ','Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151876,10,'S72.362H ','Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151875,10,'S72.362G ','Displaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151874,10,'S72.362F ','Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151873,10,'S72.362E ','Displaced segmental fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151872,10,'S72.362D ','Displaced segmental fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151871,10,'S72.362C ','Displaced segmental fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151870,10,'S72.362B ','Displaced segmental fracture of shaft of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151869,10,'S72.362A ','Displaced segmental fracture of shaft of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151868,10,'S72.361S ','Displaced segmental fracture of shaft of right femur, sequela','Y','0000-00-00 00:00:00'),(151867,10,'S72.361R ','Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151866,10,'S72.361Q ','Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151865,10,'S72.361P ','Displaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151864,10,'S72.361N ','Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151863,10,'S72.361M ','Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151862,10,'S72.361K ','Displaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151861,10,'S72.361J ','Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151860,10,'S72.361H ','Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151859,10,'S72.361G ','Displaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151858,10,'S72.361F ','Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151857,10,'S72.361E ','Displaced segmental fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151856,10,'S72.361D ','Displaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151855,10,'S72.361C ','Displaced segmental fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151854,10,'S72.361B ','Displaced segmental fracture of shaft of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151853,10,'S72.361A ','Displaced segmental fracture of shaft of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151852,10,'S72.356S ','Nondisplaced comminuted fracture of shaft of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151851,10,'S72.356R ','Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151850,10,'S72.356Q ','Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151849,10,'S72.356P ','Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151848,10,'S72.356N ','Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151847,10,'S72.356M ','Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151846,10,'S72.356K ','Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151845,10,'S72.356J ','Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151844,10,'S72.356H ','Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151843,10,'S72.356G ','Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151842,10,'S72.356F ','Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151841,10,'S72.356E ','Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151840,10,'S72.356D ','Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151839,10,'S72.356C ','Nondisplaced comminuted fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151838,10,'S72.356B ','Nondisplaced comminuted fracture of shaft of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151837,10,'S72.356A ','Nondisplaced comminuted fracture of shaft of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151836,10,'S72.355S ','Nondisplaced comminuted fracture of shaft of left femur, sequela','Y','0000-00-00 00:00:00'),(151835,10,'S72.355R ','Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151834,10,'S72.355Q ','Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151833,10,'S72.355P ','Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151832,10,'S72.355N ','Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151831,10,'S72.355M ','Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151830,10,'S72.355K ','Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151829,10,'S72.355J ','Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151828,10,'S72.355H ','Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151827,10,'S72.355G ','Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151826,10,'S72.355F ','Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151825,10,'S72.355E ','Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151824,10,'S72.355D ','Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151823,10,'S72.355C ','Nondisplaced comminuted fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151822,10,'S72.355B ','Nondisplaced comminuted fracture of shaft of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151821,10,'S72.355A ','Nondisplaced comminuted fracture of shaft of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151820,10,'S72.354S ','Nondisplaced comminuted fracture of shaft of right femur, sequela','Y','0000-00-00 00:00:00'),(151819,10,'S72.354R ','Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151818,10,'S72.354Q ','Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151817,10,'S72.354P ','Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151816,10,'S72.354N ','Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151815,10,'S72.354M ','Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151814,10,'S72.354K ','Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151813,10,'S72.354J ','Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151812,10,'S72.354H ','Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151811,10,'S72.354G ','Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151810,10,'S72.354F ','Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151809,10,'S72.354E ','Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151808,10,'S72.354D ','Nondisplaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151807,10,'S72.354C ','Nondisplaced comminuted fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151806,10,'S72.354B ','Nondisplaced comminuted fracture of shaft of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151805,10,'S72.354A ','Nondisplaced comminuted fracture of shaft of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151804,10,'S72.353S ','Displaced comminuted fracture of shaft of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151803,10,'S72.353R ','Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151802,10,'S72.353Q ','Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151801,10,'S72.353P ','Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151800,10,'S72.353N ','Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151799,10,'S72.353M ','Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151798,10,'S72.353K ','Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151797,10,'S72.353J ','Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151796,10,'S72.353H ','Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151795,10,'S72.353G ','Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151794,10,'S72.353F ','Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151793,10,'S72.353E ','Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151792,10,'S72.353D ','Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151791,10,'S72.353C ','Displaced comminuted fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151790,10,'S72.353B ','Displaced comminuted fracture of shaft of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151789,10,'S72.353A ','Displaced comminuted fracture of shaft of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151788,10,'S72.352S ','Displaced comminuted fracture of shaft of left femur, sequela','Y','0000-00-00 00:00:00'),(151787,10,'S72.352R ','Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151786,10,'S72.352Q ','Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151785,10,'S72.352P ','Displaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151784,10,'S72.352N ','Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151783,10,'S72.352M ','Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151782,10,'S72.352K ','Displaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151781,10,'S72.352J ','Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151780,10,'S72.352H ','Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151779,10,'S72.352G ','Displaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151778,10,'S72.352F ','Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151777,10,'S72.352E ','Displaced comminuted fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151776,10,'S72.352D ','Displaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151775,10,'S72.352C ','Displaced comminuted fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151774,10,'S72.352B ','Displaced comminuted fracture of shaft of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151773,10,'S72.352A ','Displaced comminuted fracture of shaft of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151772,10,'S72.351S ','Displaced comminuted fracture of shaft of right femur, sequela','Y','0000-00-00 00:00:00'),(151771,10,'S72.351R ','Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151770,10,'S72.351Q ','Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151769,10,'S72.351P ','Displaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151768,10,'S72.351N ','Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151767,10,'S72.351M ','Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151766,10,'S72.351K ','Displaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151765,10,'S72.351J ','Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151764,10,'S72.351H ','Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151763,10,'S72.351G ','Displaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151762,10,'S72.351F ','Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151761,10,'S72.351E ','Displaced comminuted fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151760,10,'S72.351D ','Displaced comminuted fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151759,10,'S72.351C ','Displaced comminuted fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151758,10,'S72.351B ','Displaced comminuted fracture of shaft of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151757,10,'S72.351A ','Displaced comminuted fracture of shaft of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151756,10,'S72.346S ','Nondisplaced spiral fracture of shaft of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151755,10,'S72.346R ','Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151754,10,'S72.346Q ','Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151753,10,'S72.346P ','Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151752,10,'S72.346N ','Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151751,10,'S72.346M ','Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151750,10,'S72.346K ','Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151749,10,'S72.346J ','Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151748,10,'S72.346H ','Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151747,10,'S72.346G ','Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151746,10,'S72.346F ','Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151745,10,'S72.346E ','Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151744,10,'S72.346D ','Nondisplaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151743,10,'S72.346C ','Nondisplaced spiral fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151742,10,'S72.346B ','Nondisplaced spiral fracture of shaft of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151741,10,'S72.346A ','Nondisplaced spiral fracture of shaft of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151740,10,'S72.345S ','Nondisplaced spiral fracture of shaft of left femur, sequela','Y','0000-00-00 00:00:00'),(151739,10,'S72.345R ','Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151738,10,'S72.345Q ','Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151737,10,'S72.345P ','Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151736,10,'S72.345N ','Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151735,10,'S72.345M ','Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151734,10,'S72.345K ','Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151733,10,'S72.345J ','Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151732,10,'S72.345H ','Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151731,10,'S72.345G ','Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151730,10,'S72.345F ','Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151729,10,'S72.345E ','Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151728,10,'S72.345D ','Nondisplaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151727,10,'S72.345C ','Nondisplaced spiral fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151726,10,'S72.345B ','Nondisplaced spiral fracture of shaft of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151725,10,'S72.345A ','Nondisplaced spiral fracture of shaft of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151724,10,'S72.344S ','Nondisplaced spiral fracture of shaft of right femur, sequela','Y','0000-00-00 00:00:00'),(151723,10,'S72.344R ','Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151722,10,'S72.344Q ','Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151721,10,'S72.344P ','Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151720,10,'S72.344N ','Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151719,10,'S72.344M ','Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151718,10,'S72.344K ','Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151717,10,'S72.344J ','Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151716,10,'S72.344H ','Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151715,10,'S72.344G ','Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151714,10,'S72.344F ','Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151713,10,'S72.344E ','Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151712,10,'S72.344D ','Nondisplaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151711,10,'S72.344C ','Nondisplaced spiral fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151710,10,'S72.344B ','Nondisplaced spiral fracture of shaft of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151709,10,'S72.344A ','Nondisplaced spiral fracture of shaft of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151708,10,'S72.343S ','Displaced spiral fracture of shaft of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151707,10,'S72.343R ','Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151706,10,'S72.343Q ','Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151705,10,'S72.343P ','Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151704,10,'S72.343N ','Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151703,10,'S72.343M ','Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151702,10,'S72.343K ','Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151701,10,'S72.343J ','Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151700,10,'S72.343H ','Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151699,10,'S72.343G ','Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151698,10,'S72.343F ','Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151697,10,'S72.343E ','Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151696,10,'S72.343D ','Displaced spiral fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151695,10,'S72.343C ','Displaced spiral fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151694,10,'S72.343B ','Displaced spiral fracture of shaft of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151693,10,'S72.343A ','Displaced spiral fracture of shaft of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151692,10,'S72.342S ','Displaced spiral fracture of shaft of left femur, sequela','Y','0000-00-00 00:00:00'),(151691,10,'S72.342R ','Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151690,10,'S72.342Q ','Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151689,10,'S72.342P ','Displaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151688,10,'S72.342N ','Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151687,10,'S72.342M ','Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151686,10,'S72.342K ','Displaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151685,10,'S72.342J ','Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151684,10,'S72.342H ','Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151683,10,'S72.342G ','Displaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151682,10,'S72.342F ','Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151681,10,'S72.342E ','Displaced spiral fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151680,10,'S72.342D ','Displaced spiral fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151679,10,'S72.342C ','Displaced spiral fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151678,10,'S72.342B ','Displaced spiral fracture of shaft of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151677,10,'S72.342A ','Displaced spiral fracture of shaft of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151676,10,'S72.341S ','Displaced spiral fracture of shaft of right femur, sequela','Y','0000-00-00 00:00:00'),(151675,10,'S72.341R ','Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151674,10,'S72.341Q ','Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151673,10,'S72.341P ','Displaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151672,10,'S72.341N ','Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151671,10,'S72.341M ','Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151670,10,'S72.341K ','Displaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151669,10,'S72.341J ','Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151668,10,'S72.341H ','Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151667,10,'S72.341G ','Displaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151666,10,'S72.341F ','Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151665,10,'S72.341E ','Displaced spiral fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151664,10,'S72.341D ','Displaced spiral fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151663,10,'S72.341C ','Displaced spiral fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151662,10,'S72.341B ','Displaced spiral fracture of shaft of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151661,10,'S72.341A ','Displaced spiral fracture of shaft of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151660,10,'S72.336S ','Nondisplaced oblique fracture of shaft of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151659,10,'S72.336R ','Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151658,10,'S72.336Q ','Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151657,10,'S72.336P ','Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151656,10,'S72.336N ','Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151655,10,'S72.336M ','Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151654,10,'S72.336K ','Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151653,10,'S72.336J ','Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151652,10,'S72.336H ','Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151651,10,'S72.336G ','Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151650,10,'S72.336F ','Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151649,10,'S72.336E ','Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151648,10,'S72.336D ','Nondisplaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151647,10,'S72.336C ','Nondisplaced oblique fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151646,10,'S72.336B ','Nondisplaced oblique fracture of shaft of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151645,10,'S72.336A ','Nondisplaced oblique fracture of shaft of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151644,10,'S72.335S ','Nondisplaced oblique fracture of shaft of left femur, sequela','Y','0000-00-00 00:00:00'),(151643,10,'S72.335R ','Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151642,10,'S72.335Q ','Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151641,10,'S72.335P ','Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151640,10,'S72.335N ','Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151639,10,'S72.335M ','Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151638,10,'S72.335K ','Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151637,10,'S72.335J ','Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151636,10,'S72.335H ','Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151635,10,'S72.335G ','Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151634,10,'S72.335F ','Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151633,10,'S72.335E ','Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151632,10,'S72.335D ','Nondisplaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151631,10,'S72.335C ','Nondisplaced oblique fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151630,10,'S72.335B ','Nondisplaced oblique fracture of shaft of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151629,10,'S72.335A ','Nondisplaced oblique fracture of shaft of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151628,10,'S72.334S ','Nondisplaced oblique fracture of shaft of right femur, sequela','Y','0000-00-00 00:00:00'),(151627,10,'S72.334R ','Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151626,10,'S72.334Q ','Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151625,10,'S72.334P ','Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151624,10,'S72.334N ','Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151623,10,'S72.334M ','Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151622,10,'S72.334K ','Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151621,10,'S72.334J ','Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151620,10,'S72.334H ','Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151619,10,'S72.334G ','Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151618,10,'S72.334F ','Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151617,10,'S72.334E ','Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151616,10,'S72.334D ','Nondisplaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151615,10,'S72.334C ','Nondisplaced oblique fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151614,10,'S72.334B ','Nondisplaced oblique fracture of shaft of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151613,10,'S72.334A ','Nondisplaced oblique fracture of shaft of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151612,10,'S72.333S ','Displaced oblique fracture of shaft of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151611,10,'S72.333R ','Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151610,10,'S72.333Q ','Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151609,10,'S72.333P ','Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151608,10,'S72.333N ','Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151607,10,'S72.333M ','Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151606,10,'S72.333K ','Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151605,10,'S72.333J ','Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151604,10,'S72.333H ','Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151603,10,'S72.333G ','Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151602,10,'S72.333F ','Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151601,10,'S72.333E ','Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151600,10,'S72.333D ','Displaced oblique fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151599,10,'S72.333C ','Displaced oblique fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151598,10,'S72.333B ','Displaced oblique fracture of shaft of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151597,10,'S72.333A ','Displaced oblique fracture of shaft of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151596,10,'S72.332S ','Displaced oblique fracture of shaft of left femur, sequela','Y','0000-00-00 00:00:00'),(151595,10,'S72.332R ','Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151594,10,'S72.332Q ','Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151593,10,'S72.332P ','Displaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151592,10,'S72.332N ','Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151591,10,'S72.332M ','Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151590,10,'S72.332K ','Displaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151589,10,'S72.332J ','Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151588,10,'S72.332H ','Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151587,10,'S72.332G ','Displaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151586,10,'S72.332F ','Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151585,10,'S72.332E ','Displaced oblique fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151584,10,'S72.332D ','Displaced oblique fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151583,10,'S72.332C ','Displaced oblique fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151582,10,'S72.332B ','Displaced oblique fracture of shaft of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151581,10,'S72.332A ','Displaced oblique fracture of shaft of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151580,10,'S72.331S ','Displaced oblique fracture of shaft of right femur, sequela','Y','0000-00-00 00:00:00'),(151579,10,'S72.331R ','Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151578,10,'S72.331Q ','Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151577,10,'S72.331P ','Displaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151576,10,'S72.331N ','Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151575,10,'S72.331M ','Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151574,10,'S72.331K ','Displaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151573,10,'S72.331J ','Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151572,10,'S72.331H ','Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151571,10,'S72.331G ','Displaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151570,10,'S72.331F ','Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151569,10,'S72.331E ','Displaced oblique fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151568,10,'S72.331D ','Displaced oblique fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151567,10,'S72.331C ','Displaced oblique fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151566,10,'S72.331B ','Displaced oblique fracture of shaft of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151565,10,'S72.331A ','Displaced oblique fracture of shaft of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151564,10,'S72.326S ','Nondisplaced transverse fracture of shaft of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151563,10,'S72.326R ','Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151562,10,'S72.326Q ','Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151561,10,'S72.326P ','Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151560,10,'S72.326N ','Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151559,10,'S72.326M ','Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151558,10,'S72.326K ','Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151557,10,'S72.326J ','Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151556,10,'S72.326H ','Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151555,10,'S72.326G ','Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151554,10,'S72.326F ','Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151553,10,'S72.326E ','Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151552,10,'S72.326D ','Nondisplaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151551,10,'S72.326C ','Nondisplaced transverse fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151550,10,'S72.326B ','Nondisplaced transverse fracture of shaft of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151549,10,'S72.326A ','Nondisplaced transverse fracture of shaft of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151548,10,'S72.325S ','Nondisplaced transverse fracture of shaft of left femur, sequela','Y','0000-00-00 00:00:00'),(151547,10,'S72.325R ','Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151546,10,'S72.325Q ','Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151545,10,'S72.325P ','Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151544,10,'S72.325N ','Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151543,10,'S72.325M ','Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151542,10,'S72.325K ','Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151541,10,'S72.325J ','Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151540,10,'S72.325H ','Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151539,10,'S72.325G ','Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151538,10,'S72.325F ','Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151537,10,'S72.325E ','Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151536,10,'S72.325D ','Nondisplaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151535,10,'S72.325C ','Nondisplaced transverse fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151534,10,'S72.325B ','Nondisplaced transverse fracture of shaft of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151533,10,'S72.325A ','Nondisplaced transverse fracture of shaft of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151532,10,'S72.324S ','Nondisplaced transverse fracture of shaft of right femur, sequela','Y','0000-00-00 00:00:00'),(151531,10,'S72.324R ','Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151530,10,'S72.324Q ','Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151529,10,'S72.324P ','Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151528,10,'S72.324N ','Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151527,10,'S72.324M ','Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151526,10,'S72.324K ','Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151525,10,'S72.324J ','Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151524,10,'S72.324H ','Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151523,10,'S72.324G ','Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151522,10,'S72.324F ','Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151521,10,'S72.324E ','Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151520,10,'S72.324D ','Nondisplaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151519,10,'S72.324C ','Nondisplaced transverse fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151518,10,'S72.324B ','Nondisplaced transverse fracture of shaft of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151517,10,'S72.324A ','Nondisplaced transverse fracture of shaft of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151516,10,'S72.323S ','Displaced transverse fracture of shaft of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151515,10,'S72.323R ','Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151514,10,'S72.323Q ','Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151513,10,'S72.323P ','Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151512,10,'S72.323N ','Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151511,10,'S72.323M ','Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151510,10,'S72.323K ','Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151509,10,'S72.323J ','Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151508,10,'S72.323H ','Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151507,10,'S72.323G ','Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151506,10,'S72.323F ','Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151505,10,'S72.323E ','Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151504,10,'S72.323D ','Displaced transverse fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151503,10,'S72.323C ','Displaced transverse fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151502,10,'S72.323B ','Displaced transverse fracture of shaft of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151501,10,'S72.323A ','Displaced transverse fracture of shaft of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151500,10,'S72.322S ','Displaced transverse fracture of shaft of left femur, sequela','Y','0000-00-00 00:00:00'),(151499,10,'S72.322R ','Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151498,10,'S72.322Q ','Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151497,10,'S72.322P ','Displaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151496,10,'S72.322N ','Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151495,10,'S72.322M ','Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151494,10,'S72.322K ','Displaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151493,10,'S72.322J ','Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151492,10,'S72.322H ','Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151491,10,'S72.322G ','Displaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151490,10,'S72.322F ','Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151489,10,'S72.322E ','Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151488,10,'S72.322D ','Displaced transverse fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151487,10,'S72.322C ','Displaced transverse fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151486,10,'S72.322B ','Displaced transverse fracture of shaft of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151485,10,'S72.322A ','Displaced transverse fracture of shaft of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151484,10,'S72.321S ','Displaced transverse fracture of shaft of right femur, sequela','Y','0000-00-00 00:00:00'),(151483,10,'S72.321R ','Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151482,10,'S72.321Q ','Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151481,10,'S72.321P ','Displaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151480,10,'S72.321N ','Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151479,10,'S72.321M ','Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151478,10,'S72.321K ','Displaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151477,10,'S72.321J ','Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151476,10,'S72.321H ','Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151475,10,'S72.321G ','Displaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151474,10,'S72.321F ','Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151473,10,'S72.321E ','Displaced transverse fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151472,10,'S72.321D ','Displaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151471,10,'S72.321C ','Displaced transverse fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151470,10,'S72.321B ','Displaced transverse fracture of shaft of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151469,10,'S72.321A ','Displaced transverse fracture of shaft of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151468,10,'S72.309S ','Unspecified fracture of shaft of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151467,10,'S72.309R ','Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151466,10,'S72.309Q ','Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151465,10,'S72.309P ','Unspecified fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151464,10,'S72.309N ','Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151463,10,'S72.309M ','Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151462,10,'S72.309K ','Unspecified fracture of shaft of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151461,10,'S72.309J ','Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151460,10,'S72.309H ','Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151459,10,'S72.309G ','Unspecified fracture of shaft of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151458,10,'S72.309F ','Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151457,10,'S72.309E ','Unspecified fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151456,10,'S72.309D ','Unspecified fracture of shaft of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151455,10,'S72.309C ','Unspecified fracture of shaft of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151454,10,'S72.309B ','Unspecified fracture of shaft of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151453,10,'S72.309A ','Unspecified fracture of shaft of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151452,10,'S72.302S ','Unspecified fracture of shaft of left femur, sequela','Y','0000-00-00 00:00:00'),(151451,10,'S72.302R ','Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151450,10,'S72.302Q ','Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151449,10,'S72.302P ','Unspecified fracture of shaft of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151448,10,'S72.302N ','Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151447,10,'S72.302M ','Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151446,10,'S72.302K ','Unspecified fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151445,10,'S72.302J ','Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151444,10,'S72.302H ','Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151443,10,'S72.302G ','Unspecified fracture of shaft of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151442,10,'S72.302F ','Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151441,10,'S72.302E ','Unspecified fracture of shaft of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151440,10,'S72.302D ','Unspecified fracture of shaft of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151439,10,'S72.302C ','Unspecified fracture of shaft of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151438,10,'S72.302B ','Unspecified fracture of shaft of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151437,10,'S72.302A ','Unspecified fracture of shaft of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151436,10,'S72.301S ','Unspecified fracture of shaft of right femur, sequela','Y','0000-00-00 00:00:00'),(151435,10,'S72.301R ','Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151434,10,'S72.301Q ','Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151433,10,'S72.301P ','Unspecified fracture of shaft of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151432,10,'S72.301N ','Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151431,10,'S72.301M ','Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151430,10,'S72.301K ','Unspecified fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151429,10,'S72.301J ','Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151428,10,'S72.301H ','Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151427,10,'S72.301G ','Unspecified fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151426,10,'S72.301F ','Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151425,10,'S72.301E ','Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151424,10,'S72.301D ','Unspecified fracture of shaft of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151423,10,'S72.301C ','Unspecified fracture of shaft of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151422,10,'S72.301B ','Unspecified fracture of shaft of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151421,10,'S72.301A ','Unspecified fracture of shaft of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151420,10,'S72.26XS ','Nondisplaced subtrochanteric fracture of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151419,10,'S72.26XR ','Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151418,10,'S72.26XQ ','Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151417,10,'S72.26XP ','Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151416,10,'S72.26XN ','Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151415,10,'S72.26XM ','Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151414,10,'S72.26XK ','Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151413,10,'S72.26XJ ','Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151412,10,'S72.26XH ','Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151411,10,'S72.26XG ','Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151410,10,'S72.26XF ','Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151409,10,'S72.26XE ','Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151408,10,'S72.26XD ','Nondisplaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151407,10,'S72.26XC ','Nondisplaced subtrochanteric fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151406,10,'S72.26XB ','Nondisplaced subtrochanteric fracture of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151405,10,'S72.26XA ','Nondisplaced subtrochanteric fracture of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151404,10,'S72.25XS ','Nondisplaced subtrochanteric fracture of left femur, sequela','Y','0000-00-00 00:00:00'),(151403,10,'S72.25XR ','Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151402,10,'S72.25XQ ','Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151401,10,'S72.25XP ','Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151400,10,'S72.25XN ','Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151399,10,'S72.25XM ','Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151398,10,'S72.25XK ','Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151397,10,'S72.25XJ ','Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151396,10,'S72.25XH ','Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151395,10,'S72.25XG ','Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151394,10,'S72.25XF ','Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151393,10,'S72.25XE ','Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151392,10,'S72.25XD ','Nondisplaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151391,10,'S72.25XC ','Nondisplaced subtrochanteric fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151390,10,'S72.25XB ','Nondisplaced subtrochanteric fracture of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151389,10,'S72.25XA ','Nondisplaced subtrochanteric fracture of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151388,10,'S72.24XS ','Nondisplaced subtrochanteric fracture of right femur, sequela','Y','0000-00-00 00:00:00'),(151387,10,'S72.24XR ','Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151386,10,'S72.24XQ ','Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151385,10,'S72.24XP ','Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151384,10,'S72.24XN ','Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151383,10,'S72.24XM ','Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151382,10,'S72.24XK ','Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151381,10,'S72.24XJ ','Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151380,10,'S72.24XH ','Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151379,10,'S72.24XG ','Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151378,10,'S72.24XF ','Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151377,10,'S72.24XE ','Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151376,10,'S72.24XD ','Nondisplaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151375,10,'S72.24XC ','Nondisplaced subtrochanteric fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151374,10,'S72.24XB ','Nondisplaced subtrochanteric fracture of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151373,10,'S72.24XA ','Nondisplaced subtrochanteric fracture of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151372,10,'S72.23XS ','Displaced subtrochanteric fracture of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151371,10,'S72.23XR ','Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151370,10,'S72.23XQ ','Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151369,10,'S72.23XP ','Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151368,10,'S72.23XN ','Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151367,10,'S72.23XM ','Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151366,10,'S72.23XK ','Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151365,10,'S72.23XJ ','Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151364,10,'S72.23XH ','Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151363,10,'S72.23XG ','Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151362,10,'S72.23XF ','Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151361,10,'S72.23XE ','Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151360,10,'S72.23XD ','Displaced subtrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151359,10,'S72.23XC ','Displaced subtrochanteric fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151358,10,'S72.23XB ','Displaced subtrochanteric fracture of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151357,10,'S72.23XA ','Displaced subtrochanteric fracture of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151356,10,'S72.22XS ','Displaced subtrochanteric fracture of left femur, sequela','Y','0000-00-00 00:00:00'),(151355,10,'S72.22XR ','Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151354,10,'S72.22XQ ','Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151353,10,'S72.22XP ','Displaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151352,10,'S72.22XN ','Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151351,10,'S72.22XM ','Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151350,10,'S72.22XK ','Displaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151349,10,'S72.22XJ ','Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151348,10,'S72.22XH ','Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151347,10,'S72.22XG ','Displaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151346,10,'S72.22XF ','Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151345,10,'S72.22XE ','Displaced subtrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151344,10,'S72.22XD ','Displaced subtrochanteric fracture of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151343,10,'S72.22XC ','Displaced subtrochanteric fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151342,10,'S72.22XB ','Displaced subtrochanteric fracture of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151341,10,'S72.22XA ','Displaced subtrochanteric fracture of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151340,10,'S72.21XS ','Displaced subtrochanteric fracture of right femur, sequela','Y','0000-00-00 00:00:00'),(151339,10,'S72.21XR ','Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151338,10,'S72.21XQ ','Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151337,10,'S72.21XP ','Displaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151336,10,'S72.21XN ','Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151335,10,'S72.21XM ','Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151334,10,'S72.21XK ','Displaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151333,10,'S72.21XJ ','Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151332,10,'S72.21XH ','Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151331,10,'S72.21XG ','Displaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151330,10,'S72.21XF ','Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151329,10,'S72.21XE ','Displaced subtrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151328,10,'S72.21XD ','Displaced subtrochanteric fracture of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151327,10,'S72.21XC ','Displaced subtrochanteric fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151326,10,'S72.21XB ','Displaced subtrochanteric fracture of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151325,10,'S72.21XA ','Displaced subtrochanteric fracture of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151324,10,'S72.146S ','Nondisplaced intertrochanteric fracture of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151323,10,'S72.146R ','Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151322,10,'S72.146Q ','Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151321,10,'S72.146P ','Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151320,10,'S72.146N ','Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151319,10,'S72.146M ','Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151318,10,'S72.146K ','Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151317,10,'S72.146J ','Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151316,10,'S72.146H ','Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151315,10,'S72.146G ','Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151314,10,'S72.146F ','Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151313,10,'S72.146E ','Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151312,10,'S72.146D ','Nondisplaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151311,10,'S72.146C ','Nondisplaced intertrochanteric fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151310,10,'S72.146B ','Nondisplaced intertrochanteric fracture of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151309,10,'S72.146A ','Nondisplaced intertrochanteric fracture of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151308,10,'S72.145S ','Nondisplaced intertrochanteric fracture of left femur, sequela','Y','0000-00-00 00:00:00'),(151307,10,'S72.145R ','Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151306,10,'S72.145Q ','Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151305,10,'S72.145P ','Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151304,10,'S72.145N ','Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151303,10,'S72.145M ','Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151302,10,'S72.145K ','Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151301,10,'S72.145J ','Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151300,10,'S72.145H ','Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151299,10,'S72.145G ','Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151298,10,'S72.145F ','Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151297,10,'S72.145E ','Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151296,10,'S72.145D ','Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151295,10,'S72.145C ','Nondisplaced intertrochanteric fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151294,10,'S72.145B ','Nondisplaced intertrochanteric fracture of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151293,10,'S72.145A ','Nondisplaced intertrochanteric fracture of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151292,10,'S72.144S ','Nondisplaced intertrochanteric fracture of right femur, sequela','Y','0000-00-00 00:00:00'),(151291,10,'S72.144R ','Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151290,10,'S72.144Q ','Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151289,10,'S72.144P ','Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151288,10,'S72.144N ','Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151287,10,'S72.144M ','Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151286,10,'S72.144K ','Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151285,10,'S72.144J ','Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151284,10,'S72.144H ','Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151283,10,'S72.144G ','Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151282,10,'S72.144F ','Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151281,10,'S72.144E ','Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151280,10,'S72.144D ','Nondisplaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151279,10,'S72.144C ','Nondisplaced intertrochanteric fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151278,10,'S72.144B ','Nondisplaced intertrochanteric fracture of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151277,10,'S72.144A ','Nondisplaced intertrochanteric fracture of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151276,10,'S72.143S ','Displaced intertrochanteric fracture of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151275,10,'S72.143R ','Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151274,10,'S72.143Q ','Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151273,10,'S72.143P ','Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151272,10,'S72.143N ','Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151271,10,'S72.143M ','Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151270,10,'S72.143K ','Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151269,10,'S72.143J ','Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151268,10,'S72.143H ','Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151267,10,'S72.143G ','Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151266,10,'S72.143F ','Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151265,10,'S72.143E ','Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151264,10,'S72.143D ','Displaced intertrochanteric fracture of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151263,10,'S72.143C ','Displaced intertrochanteric fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151262,10,'S72.143B ','Displaced intertrochanteric fracture of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151261,10,'S72.143A ','Displaced intertrochanteric fracture of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151260,10,'S72.142S ','Displaced intertrochanteric fracture of left femur, sequela','Y','0000-00-00 00:00:00'),(151259,10,'S72.142R ','Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151258,10,'S72.142Q ','Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151257,10,'S72.142P ','Displaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151256,10,'S72.142N ','Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151255,10,'S72.142M ','Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151254,10,'S72.142K ','Displaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151253,10,'S72.142J ','Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151252,10,'S72.142H ','Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151251,10,'S72.142G ','Displaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151250,10,'S72.142F ','Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151249,10,'S72.142E ','Displaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151248,10,'S72.142D ','Displaced intertrochanteric fracture of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151247,10,'S72.142C ','Displaced intertrochanteric fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151246,10,'S72.142B ','Displaced intertrochanteric fracture of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151245,10,'S72.142A ','Displaced intertrochanteric fracture of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151244,10,'S72.141S ','Displaced intertrochanteric fracture of right femur, sequela','Y','0000-00-00 00:00:00'),(151243,10,'S72.141R ','Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151242,10,'S72.141Q ','Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151241,10,'S72.141P ','Displaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151240,10,'S72.141N ','Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151239,10,'S72.141M ','Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151238,10,'S72.141K ','Displaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151237,10,'S72.141J ','Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151236,10,'S72.141H ','Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151235,10,'S72.141G ','Displaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151234,10,'S72.141F ','Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151233,10,'S72.141E ','Displaced intertrochanteric fracture of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151232,10,'S72.141D ','Displaced intertrochanteric fracture of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151231,10,'S72.141C ','Displaced intertrochanteric fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151230,10,'S72.141B ','Displaced intertrochanteric fracture of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151229,10,'S72.141A ','Displaced intertrochanteric fracture of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151228,10,'S72.136S ','Nondisplaced apophyseal fracture of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151227,10,'S72.136R ','Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151226,10,'S72.136Q ','Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151225,10,'S72.136P ','Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151224,10,'S72.136N ','Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151223,10,'S72.136M ','Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151222,10,'S72.136K ','Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151221,10,'S72.136J ','Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151220,10,'S72.136H ','Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151219,10,'S72.136G ','Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151218,10,'S72.136F ','Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151217,10,'S72.136E ','Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151216,10,'S72.136D ','Nondisplaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151215,10,'S72.136C ','Nondisplaced apophyseal fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151214,10,'S72.136B ','Nondisplaced apophyseal fracture of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151213,10,'S72.136A ','Nondisplaced apophyseal fracture of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151212,10,'S72.135S ','Nondisplaced apophyseal fracture of left femur, sequela','Y','0000-00-00 00:00:00'),(151211,10,'S72.135R ','Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151210,10,'S72.135Q ','Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151209,10,'S72.135P ','Nondisplaced apophyseal fracture of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151208,10,'S72.135N ','Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151207,10,'S72.135M ','Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151206,10,'S72.135K ','Nondisplaced apophyseal fracture of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151205,10,'S72.135J ','Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151204,10,'S72.135H ','Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151203,10,'S72.135G ','Nondisplaced apophyseal fracture of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151202,10,'S72.135F ','Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151201,10,'S72.135E ','Nondisplaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151200,10,'S72.135D ','Nondisplaced apophyseal fracture of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151199,10,'S72.135C ','Nondisplaced apophyseal fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151198,10,'S72.135B ','Nondisplaced apophyseal fracture of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151197,10,'S72.135A ','Nondisplaced apophyseal fracture of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151196,10,'S72.134S ','Nondisplaced apophyseal fracture of right femur, sequela','Y','0000-00-00 00:00:00'),(151195,10,'S72.134R ','Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151194,10,'S72.134Q ','Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151193,10,'S72.134P ','Nondisplaced apophyseal fracture of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151192,10,'S72.134N ','Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151191,10,'S72.134M ','Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151190,10,'S72.134K ','Nondisplaced apophyseal fracture of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151189,10,'S72.134J ','Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151188,10,'S72.134H ','Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151187,10,'S72.134G ','Nondisplaced apophyseal fracture of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151186,10,'S72.134F ','Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151185,10,'S72.134E ','Nondisplaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151184,10,'S72.134D ','Nondisplaced apophyseal fracture of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151183,10,'S72.134C ','Nondisplaced apophyseal fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151182,10,'S72.134B ','Nondisplaced apophyseal fracture of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151181,10,'S72.134A ','Nondisplaced apophyseal fracture of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151180,10,'S72.133S ','Displaced apophyseal fracture of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151179,10,'S72.133R ','Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151178,10,'S72.133Q ','Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151177,10,'S72.133P ','Displaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151176,10,'S72.133N ','Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151175,10,'S72.133M ','Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151174,10,'S72.133K ','Displaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151173,10,'S72.133J ','Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151172,10,'S72.133H ','Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151171,10,'S72.133G ','Displaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151170,10,'S72.133F ','Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151169,10,'S72.133E ','Displaced apophyseal fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151168,10,'S72.133D ','Displaced apophyseal fracture of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151167,10,'S72.133C ','Displaced apophyseal fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151166,10,'S72.133B ','Displaced apophyseal fracture of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151165,10,'S72.133A ','Displaced apophyseal fracture of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151164,10,'S72.132S ','Displaced apophyseal fracture of left femur, sequela','Y','0000-00-00 00:00:00'),(151163,10,'S72.132R ','Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151162,10,'S72.132Q ','Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151161,10,'S72.132P ','Displaced apophyseal fracture of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151160,10,'S72.132N ','Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151159,10,'S72.132M ','Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151158,10,'S72.132K ','Displaced apophyseal fracture of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151157,10,'S72.132J ','Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151156,10,'S72.132H ','Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151155,10,'S72.132G ','Displaced apophyseal fracture of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151154,10,'S72.132F ','Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151153,10,'S72.132E ','Displaced apophyseal fracture of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151152,10,'S72.132D ','Displaced apophyseal fracture of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151151,10,'S72.132C ','Displaced apophyseal fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151150,10,'S72.132B ','Displaced apophyseal fracture of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151149,10,'S72.132A ','Displaced apophyseal fracture of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151148,10,'S72.131S ','Displaced apophyseal fracture of right femur, sequela','Y','0000-00-00 00:00:00'),(151147,10,'S72.131R ','Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151146,10,'S72.131Q ','Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151145,10,'S72.131P ','Displaced apophyseal fracture of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151144,10,'S72.131N ','Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151143,10,'S72.131M ','Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151142,10,'S72.131K ','Displaced apophyseal fracture of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151141,10,'S72.131J ','Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151140,10,'S72.131H ','Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151139,10,'S72.131G ','Displaced apophyseal fracture of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151138,10,'S72.131F ','Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151137,10,'S72.131E ','Displaced apophyseal fracture of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151136,10,'S72.131D ','Displaced apophyseal fracture of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151135,10,'S72.131C ','Displaced apophyseal fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151134,10,'S72.131B ','Displaced apophyseal fracture of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151133,10,'S72.131A ','Displaced apophyseal fracture of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151132,10,'S72.126S ','Nondisplaced fracture of lesser trochanter of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151131,10,'S72.126R ','Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151130,10,'S72.126Q ','Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151129,10,'S72.126P ','Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151128,10,'S72.126N ','Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151127,10,'S72.126M ','Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151126,10,'S72.126K ','Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151125,10,'S72.126J ','Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151124,10,'S72.126H ','Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151123,10,'S72.126G ','Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151122,10,'S72.126F ','Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151121,10,'S72.126E ','Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151120,10,'S72.126D ','Nondisplaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151119,10,'S72.126C ','Nondisplaced fracture of lesser trochanter of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151118,10,'S72.126B ','Nondisplaced fracture of lesser trochanter of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151117,10,'S72.126A ','Nondisplaced fracture of lesser trochanter of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151116,10,'S72.125S ','Nondisplaced fracture of lesser trochanter of left femur, sequela','Y','0000-00-00 00:00:00'),(151115,10,'S72.125R ','Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151114,10,'S72.125Q ','Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151113,10,'S72.125P ','Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151112,10,'S72.125N ','Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151111,10,'S72.125M ','Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151110,10,'S72.125K ','Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151109,10,'S72.125J ','Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151108,10,'S72.125H ','Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151107,10,'S72.125G ','Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151106,10,'S72.125F ','Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151105,10,'S72.125E ','Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151104,10,'S72.125D ','Nondisplaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151103,10,'S72.125C ','Nondisplaced fracture of lesser trochanter of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151102,10,'S72.125B ','Nondisplaced fracture of lesser trochanter of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151101,10,'S72.125A ','Nondisplaced fracture of lesser trochanter of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151100,10,'S72.124S ','Nondisplaced fracture of lesser trochanter of right femur, sequela','Y','0000-00-00 00:00:00'),(151099,10,'S72.124R ','Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151098,10,'S72.124Q ','Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151097,10,'S72.124P ','Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151096,10,'S72.124N ','Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151095,10,'S72.124M ','Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151094,10,'S72.124K ','Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151093,10,'S72.124J ','Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151092,10,'S72.124H ','Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151091,10,'S72.124G ','Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151090,10,'S72.124F ','Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151089,10,'S72.124E ','Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151088,10,'S72.124D ','Nondisplaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151087,10,'S72.124C ','Nondisplaced fracture of lesser trochanter of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151086,10,'S72.124B ','Nondisplaced fracture of lesser trochanter of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151085,10,'S72.124A ','Nondisplaced fracture of lesser trochanter of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151084,10,'S72.123S ','Displaced fracture of lesser trochanter of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151083,10,'S72.123R ','Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151082,10,'S72.123Q ','Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151081,10,'S72.123P ','Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151080,10,'S72.123N ','Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151079,10,'S72.123M ','Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151078,10,'S72.123K ','Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151077,10,'S72.123J ','Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151076,10,'S72.123H ','Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151075,10,'S72.123G ','Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151074,10,'S72.123F ','Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151073,10,'S72.123E ','Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151072,10,'S72.123D ','Displaced fracture of lesser trochanter of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151071,10,'S72.123C ','Displaced fracture of lesser trochanter of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151070,10,'S72.123B ','Displaced fracture of lesser trochanter of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151069,10,'S72.123A ','Displaced fracture of lesser trochanter of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151068,10,'S72.122S ','Displaced fracture of lesser trochanter of left femur, sequela','Y','0000-00-00 00:00:00'),(151067,10,'S72.122R ','Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151066,10,'S72.122Q ','Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151065,10,'S72.122P ','Displaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151064,10,'S72.122N ','Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151063,10,'S72.122M ','Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151062,10,'S72.122K ','Displaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151061,10,'S72.122J ','Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151060,10,'S72.122H ','Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151059,10,'S72.122G ','Displaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151058,10,'S72.122F ','Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151057,10,'S72.122E ','Displaced fracture of lesser trochanter of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151056,10,'S72.122D ','Displaced fracture of lesser trochanter of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151055,10,'S72.122C ','Displaced fracture of lesser trochanter of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151054,10,'S72.122B ','Displaced fracture of lesser trochanter of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151053,10,'S72.122A ','Displaced fracture of lesser trochanter of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151052,10,'S72.121S ','Displaced fracture of lesser trochanter of right femur, sequela','Y','0000-00-00 00:00:00'),(151051,10,'S72.121R ','Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151050,10,'S72.121Q ','Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151049,10,'S72.121P ','Displaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151048,10,'S72.121N ','Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151047,10,'S72.121M ','Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151046,10,'S72.121K ','Displaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151045,10,'S72.121J ','Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151044,10,'S72.121H ','Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151043,10,'S72.121G ','Displaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151042,10,'S72.121F ','Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151041,10,'S72.121E ','Displaced fracture of lesser trochanter of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151040,10,'S72.121D ','Displaced fracture of lesser trochanter of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151039,10,'S72.121C ','Displaced fracture of lesser trochanter of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151038,10,'S72.121B ','Displaced fracture of lesser trochanter of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151037,10,'S72.121A ','Displaced fracture of lesser trochanter of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151036,10,'S72.116S ','Nondisplaced fracture of greater trochanter of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(151035,10,'S72.116R ','Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151034,10,'S72.116Q ','Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151033,10,'S72.116P ','Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151032,10,'S72.116N ','Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151031,10,'S72.116M ','Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151030,10,'S72.116K ','Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151029,10,'S72.116J ','Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151028,10,'S72.116H ','Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151027,10,'S72.116G ','Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151026,10,'S72.116F ','Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151025,10,'S72.116E ','Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151024,10,'S72.116D ','Nondisplaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151023,10,'S72.116C ','Nondisplaced fracture of greater trochanter of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151022,10,'S72.116B ','Nondisplaced fracture of greater trochanter of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151021,10,'S72.116A ','Nondisplaced fracture of greater trochanter of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151020,10,'S72.115S ','Nondisplaced fracture of greater trochanter of left femur, sequela','Y','0000-00-00 00:00:00'),(151019,10,'S72.115R ','Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151018,10,'S72.115Q ','Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151017,10,'S72.115P ','Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151016,10,'S72.115N ','Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(151015,10,'S72.115M ','Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(151014,10,'S72.115K ','Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(151013,10,'S72.115J ','Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(151012,10,'S72.115H ','Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(151011,10,'S72.115G ','Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(151010,10,'S72.115F ','Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(151009,10,'S72.115E ','Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(151008,10,'S72.115D ','Nondisplaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(151007,10,'S72.115C ','Nondisplaced fracture of greater trochanter of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(151006,10,'S72.115B ','Nondisplaced fracture of greater trochanter of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(151005,10,'S72.115A ','Nondisplaced fracture of greater trochanter of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(151004,10,'S72.114S ','Nondisplaced fracture of greater trochanter of right femur, sequela','Y','0000-00-00 00:00:00'),(151003,10,'S72.114R ','Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(151002,10,'S72.114Q ','Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(151001,10,'S72.114P ','Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(151000,10,'S72.114N ','Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150999,10,'S72.114M ','Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150998,10,'S72.114K ','Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150997,10,'S72.114J ','Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150996,10,'S72.114H ','Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150995,10,'S72.114G ','Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150994,10,'S72.114F ','Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150993,10,'S72.114E ','Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150992,10,'S72.114D ','Nondisplaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150991,10,'S72.114C ','Nondisplaced fracture of greater trochanter of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150990,10,'S72.114B ','Nondisplaced fracture of greater trochanter of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150989,10,'S72.114A ','Nondisplaced fracture of greater trochanter of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150988,10,'S72.113S ','Displaced fracture of greater trochanter of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(150987,10,'S72.113R ','Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150986,10,'S72.113Q ','Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150985,10,'S72.113P ','Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150984,10,'S72.113N ','Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150983,10,'S72.113M ','Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150982,10,'S72.113K ','Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150981,10,'S72.113J ','Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150980,10,'S72.113H ','Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150979,10,'S72.113G ','Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150978,10,'S72.113F ','Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150977,10,'S72.113E ','Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150976,10,'S72.113D ','Displaced fracture of greater trochanter of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150975,10,'S72.113C ','Displaced fracture of greater trochanter of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150974,10,'S72.113B ','Displaced fracture of greater trochanter of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150973,10,'S72.113A ','Displaced fracture of greater trochanter of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150972,10,'S72.112S ','Displaced fracture of greater trochanter of left femur, sequela','Y','0000-00-00 00:00:00'),(150971,10,'S72.112R ','Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150970,10,'S72.112Q ','Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150969,10,'S72.112P ','Displaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150968,10,'S72.112N ','Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150967,10,'S72.112M ','Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150966,10,'S72.112K ','Displaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150965,10,'S72.112J ','Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150964,10,'S72.112H ','Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150963,10,'S72.112G ','Displaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150962,10,'S72.112F ','Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150961,10,'S72.112E ','Displaced fracture of greater trochanter of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150960,10,'S72.112D ','Displaced fracture of greater trochanter of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150959,10,'S72.112C ','Displaced fracture of greater trochanter of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150958,10,'S72.112B ','Displaced fracture of greater trochanter of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150957,10,'S72.112A ','Displaced fracture of greater trochanter of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150956,10,'S72.111S ','Displaced fracture of greater trochanter of right femur, sequela','Y','0000-00-00 00:00:00'),(150955,10,'S72.111R ','Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150954,10,'S72.111Q ','Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150953,10,'S72.111P ','Displaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150952,10,'S72.111N ','Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150951,10,'S72.111M ','Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150950,10,'S72.111K ','Displaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150949,10,'S72.111J ','Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150948,10,'S72.111H ','Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150947,10,'S72.111G ','Displaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150946,10,'S72.111F ','Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150945,10,'S72.111E ','Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150944,10,'S72.111D ','Displaced fracture of greater trochanter of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150943,10,'S72.111C ','Displaced fracture of greater trochanter of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150942,10,'S72.111B ','Displaced fracture of greater trochanter of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150941,10,'S72.111A ','Displaced fracture of greater trochanter of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150940,10,'S72.109S ','Unspecified trochanteric fracture of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(150939,10,'S72.109R ','Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150938,10,'S72.109Q ','Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150937,10,'S72.109P ','Unspecified trochanteric fracture of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150936,10,'S72.109N ','Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150935,10,'S72.109M ','Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150934,10,'S72.109K ','Unspecified trochanteric fracture of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150933,10,'S72.109J ','Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150932,10,'S72.109H ','Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150931,10,'S72.109G ','Unspecified trochanteric fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150930,10,'S72.109F ','Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150929,10,'S72.109E ','Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150928,10,'S72.109D ','Unspecified trochanteric fracture of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150927,10,'S72.109C ','Unspecified trochanteric fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150926,10,'S72.109B ','Unspecified trochanteric fracture of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150925,10,'S72.109A ','Unspecified trochanteric fracture of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150924,10,'S72.102S ','Unspecified trochanteric fracture of left femur, sequela','Y','0000-00-00 00:00:00'),(150923,10,'S72.102R ','Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150922,10,'S72.102Q ','Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150921,10,'S72.102P ','Unspecified trochanteric fracture of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150920,10,'S72.102N ','Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150919,10,'S72.102M ','Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150918,10,'S72.102K ','Unspecified trochanteric fracture of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150917,10,'S72.102J ','Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150916,10,'S72.102H ','Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150915,10,'S72.102G ','Unspecified trochanteric fracture of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150914,10,'S72.102F ','Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150913,10,'S72.102E ','Unspecified trochanteric fracture of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150912,10,'S72.102D ','Unspecified trochanteric fracture of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150911,10,'S72.102C ','Unspecified trochanteric fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150910,10,'S72.102B ','Unspecified trochanteric fracture of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150908,10,'S72.101S ','Unspecified trochanteric fracture of right femur, sequela','Y','0000-00-00 00:00:00'),(150909,10,'S72.102A ','Unspecified trochanteric fracture of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150907,10,'S72.101R ','Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150906,10,'S72.101Q ','Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150905,10,'S72.101P ','Unspecified trochanteric fracture of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150904,10,'S72.101N ','Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150903,10,'S72.101M ','Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150902,10,'S72.101K ','Unspecified trochanteric fracture of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150901,10,'S72.101J ','Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150900,10,'S72.101H ','Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150899,10,'S72.101G ','Unspecified trochanteric fracture of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150898,10,'S72.101F ','Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150897,10,'S72.101E ','Unspecified trochanteric fracture of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150896,10,'S72.101D ','Unspecified trochanteric fracture of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150895,10,'S72.101C ','Unspecified trochanteric fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150894,10,'S72.101B ','Unspecified trochanteric fracture of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150893,10,'S72.101A ','Unspecified trochanteric fracture of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150892,10,'S72.099S ','Other fracture of head and neck of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(150891,10,'S72.099R ','Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150890,10,'S72.099Q ','Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150889,10,'S72.099P ','Other fracture of head and neck of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150888,10,'S72.099N ','Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150887,10,'S72.099M ','Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150886,10,'S72.099K ','Other fracture of head and neck of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150885,10,'S72.099J ','Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150884,10,'S72.099H ','Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150883,10,'S72.099G ','Other fracture of head and neck of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150882,10,'S72.099F ','Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150881,10,'S72.099E ','Other fracture of head and neck of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150880,10,'S72.099D ','Other fracture of head and neck of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150879,10,'S72.099C ','Other fracture of head and neck of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150878,10,'S72.099B ','Other fracture of head and neck of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150877,10,'S72.099A ','Other fracture of head and neck of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150876,10,'S72.092S ','Other fracture of head and neck of left femur, sequela','Y','0000-00-00 00:00:00'),(150875,10,'S72.092R ','Other fracture of head and neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150874,10,'S72.092Q ','Other fracture of head and neck of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150873,10,'S72.092P ','Other fracture of head and neck of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150872,10,'S72.092N ','Other fracture of head and neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150871,10,'S72.092M ','Other fracture of head and neck of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150870,10,'S72.092K ','Other fracture of head and neck of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150869,10,'S72.092J ','Other fracture of head and neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150868,10,'S72.092H ','Other fracture of head and neck of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150867,10,'S72.092G ','Other fracture of head and neck of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150866,10,'S72.092F ','Other fracture of head and neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150865,10,'S72.092E ','Other fracture of head and neck of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150864,10,'S72.092D ','Other fracture of head and neck of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150863,10,'S72.092C ','Other fracture of head and neck of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150862,10,'S72.092B ','Other fracture of head and neck of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150861,10,'S72.092A ','Other fracture of head and neck of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150860,10,'S72.091S ','Other fracture of head and neck of right femur, sequela','Y','0000-00-00 00:00:00'),(150859,10,'S72.091R ','Other fracture of head and neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150858,10,'S72.091Q ','Other fracture of head and neck of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150857,10,'S72.091P ','Other fracture of head and neck of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150856,10,'S72.091N ','Other fracture of head and neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150855,10,'S72.091M ','Other fracture of head and neck of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150854,10,'S72.091K ','Other fracture of head and neck of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150853,10,'S72.091J ','Other fracture of head and neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150851,10,'S72.091G ','Other fracture of head and neck of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150852,10,'S72.091H ','Other fracture of head and neck of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150850,10,'S72.091F ','Other fracture of head and neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150849,10,'S72.091E ','Other fracture of head and neck of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150848,10,'S72.091D ','Other fracture of head and neck of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150847,10,'S72.091C ','Other fracture of head and neck of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150846,10,'S72.091B ','Other fracture of head and neck of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150845,10,'S72.091A ','Other fracture of head and neck of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150844,10,'S72.066S ','Nondisplaced articular fracture of head of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(150843,10,'S72.066R ','Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150842,10,'S72.066Q ','Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150841,10,'S72.066P ','Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150840,10,'S72.066N ','Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150839,10,'S72.066M ','Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150838,10,'S72.066K ','Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150837,10,'S72.066J ','Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150836,10,'S72.066H ','Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150835,10,'S72.066G ','Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150834,10,'S72.066F ','Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150833,10,'S72.066E ','Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150832,10,'S72.066D ','Nondisplaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150831,10,'S72.066C ','Nondisplaced articular fracture of head of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150830,10,'S72.066B ','Nondisplaced articular fracture of head of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150828,10,'S72.065S ','Nondisplaced articular fracture of head of left femur, sequela','Y','0000-00-00 00:00:00'),(150829,10,'S72.066A ','Nondisplaced articular fracture of head of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150827,10,'S72.065R ','Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150826,10,'S72.065Q ','Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150825,10,'S72.065P ','Nondisplaced articular fracture of head of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150824,10,'S72.065N ','Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150823,10,'S72.065M ','Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150822,10,'S72.065K ','Nondisplaced articular fracture of head of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150821,10,'S72.065J ','Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150820,10,'S72.065H ','Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150819,10,'S72.065G ','Nondisplaced articular fracture of head of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150818,10,'S72.065F ','Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150817,10,'S72.065E ','Nondisplaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150816,10,'S72.065D ','Nondisplaced articular fracture of head of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150815,10,'S72.065C ','Nondisplaced articular fracture of head of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150814,10,'S72.065B ','Nondisplaced articular fracture of head of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150813,10,'S72.065A ','Nondisplaced articular fracture of head of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150812,10,'S72.064S ','Nondisplaced articular fracture of head of right femur, sequela','Y','0000-00-00 00:00:00'),(150811,10,'S72.064R ','Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150810,10,'S72.064Q ','Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150809,10,'S72.064P ','Nondisplaced articular fracture of head of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150807,10,'S72.064M ','Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150808,10,'S72.064N ','Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150806,10,'S72.064K ','Nondisplaced articular fracture of head of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150805,10,'S72.064J ','Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150804,10,'S72.064H ','Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150803,10,'S72.064G ','Nondisplaced articular fracture of head of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150802,10,'S72.064F ','Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150801,10,'S72.064E ','Nondisplaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150800,10,'S72.064D ','Nondisplaced articular fracture of head of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150799,10,'S72.064C ','Nondisplaced articular fracture of head of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150798,10,'S72.064B ','Nondisplaced articular fracture of head of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150797,10,'S72.064A ','Nondisplaced articular fracture of head of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150796,10,'S72.063S ','Displaced articular fracture of head of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(150795,10,'S72.063R ','Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150794,10,'S72.063Q ','Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150793,10,'S72.063P ','Displaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150792,10,'S72.063N ','Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150791,10,'S72.063M ','Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150790,10,'S72.063K ','Displaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150789,10,'S72.063J ','Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150788,10,'S72.063H ','Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150787,10,'S72.063G ','Displaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150786,10,'S72.063F ','Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150785,10,'S72.063E ','Displaced articular fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150783,10,'S72.063C ','Displaced articular fracture of head of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150784,10,'S72.063D ','Displaced articular fracture of head of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150782,10,'S72.063B ','Displaced articular fracture of head of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150780,10,'S72.062S ','Displaced articular fracture of head of left femur, sequela','Y','0000-00-00 00:00:00'),(150781,10,'S72.063A ','Displaced articular fracture of head of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150779,10,'S72.062R ','Displaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150778,10,'S72.062Q ','Displaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150777,10,'S72.062P ','Displaced articular fracture of head of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150776,10,'S72.062N ','Displaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150775,10,'S72.062M ','Displaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150774,10,'S72.062K ','Displaced articular fracture of head of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150773,10,'S72.062J ','Displaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150772,10,'S72.062H ','Displaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150771,10,'S72.062G ','Displaced articular fracture of head of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150770,10,'S72.062F ','Displaced articular fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150769,10,'S72.062E ','Displaced articular fracture of head of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150768,10,'S72.062D ','Displaced articular fracture of head of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150767,10,'S72.062C ','Displaced articular fracture of head of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150765,10,'S72.062A ','Displaced articular fracture of head of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150766,10,'S72.062B ','Displaced articular fracture of head of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150764,10,'S72.061S ','Displaced articular fracture of head of right femur, sequela','Y','0000-00-00 00:00:00'),(150763,10,'S72.061R ','Displaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150762,10,'S72.061Q ','Displaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150761,10,'S72.061P ','Displaced articular fracture of head of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150759,10,'S72.061M ','Displaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150760,10,'S72.061N ','Displaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150758,10,'S72.061K ','Displaced articular fracture of head of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150757,10,'S72.061J ','Displaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150756,10,'S72.061H ','Displaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150755,10,'S72.061G ','Displaced articular fracture of head of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150754,10,'S72.061F ','Displaced articular fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150753,10,'S72.061E ','Displaced articular fracture of head of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150752,10,'S72.061D ','Displaced articular fracture of head of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150751,10,'S72.061C ','Displaced articular fracture of head of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150750,10,'S72.061B ','Displaced articular fracture of head of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150749,10,'S72.061A ','Displaced articular fracture of head of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150748,10,'S72.059S ','Unspecified fracture of head of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(150747,10,'S72.059R ','Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150746,10,'S72.059Q ','Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150745,10,'S72.059P ','Unspecified fracture of head of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150744,10,'S72.059N ','Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150743,10,'S72.059M ','Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150742,10,'S72.059K ','Unspecified fracture of head of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150741,10,'S72.059J ','Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150740,10,'S72.059H ','Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150739,10,'S72.059G ','Unspecified fracture of head of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150737,10,'S72.059E ','Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150738,10,'S72.059F ','Unspecified fracture of head of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150736,10,'S72.059D ','Unspecified fracture of head of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150735,10,'S72.059C ','Unspecified fracture of head of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150733,10,'S72.059A ','Unspecified fracture of head of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150734,10,'S72.059B ','Unspecified fracture of head of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150732,10,'S72.052S ','Unspecified fracture of head of left femur, sequela','Y','0000-00-00 00:00:00'),(150731,10,'S72.052R ','Unspecified fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150730,10,'S72.052Q ','Unspecified fracture of head of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150729,10,'S72.052P ','Unspecified fracture of head of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150728,10,'S72.052N ','Unspecified fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150727,10,'S72.052M ','Unspecified fracture of head of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150726,10,'S72.052K ','Unspecified fracture of head of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150725,10,'S72.052J ','Unspecified fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150724,10,'S72.052H ','Unspecified fracture of head of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150723,10,'S72.052G ','Unspecified fracture of head of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150722,10,'S72.052F ','Unspecified fracture of head of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150721,10,'S72.052E ','Unspecified fracture of head of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150720,10,'S72.052D ','Unspecified fracture of head of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150719,10,'S72.052C ','Unspecified fracture of head of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150718,10,'S72.052B ','Unspecified fracture of head of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150717,10,'S72.052A ','Unspecified fracture of head of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150716,10,'S72.051S ','Unspecified fracture of head of right femur, sequela','Y','0000-00-00 00:00:00'),(150715,10,'S72.051R ','Unspecified fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150714,10,'S72.051Q ','Unspecified fracture of head of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150712,10,'S72.051N ','Unspecified fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150713,10,'S72.051P ','Unspecified fracture of head of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150711,10,'S72.051M ','Unspecified fracture of head of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150710,10,'S72.051K ','Unspecified fracture of head of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150709,10,'S72.051J ','Unspecified fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150708,10,'S72.051H ','Unspecified fracture of head of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150707,10,'S72.051G ','Unspecified fracture of head of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150706,10,'S72.051F ','Unspecified fracture of head of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150705,10,'S72.051E ','Unspecified fracture of head of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150704,10,'S72.051D ','Unspecified fracture of head of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150703,10,'S72.051C ','Unspecified fracture of head of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150702,10,'S72.051B ','Unspecified fracture of head of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150701,10,'S72.051A ','Unspecified fracture of head of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150700,10,'S72.046S ','Nondisplaced fracture of base of neck of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(150699,10,'S72.046R ','Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150698,10,'S72.046Q ','Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150697,10,'S72.046P ','Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150696,10,'S72.046N ','Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150695,10,'S72.046M ','Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150694,10,'S72.046K ','Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150693,10,'S72.046J ','Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150692,10,'S72.046H ','Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150691,10,'S72.046G ','Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150690,10,'S72.046F ','Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150689,10,'S72.046E ','Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150688,10,'S72.046D ','Nondisplaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150687,10,'S72.046C ','Nondisplaced fracture of base of neck of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150686,10,'S72.046B ','Nondisplaced fracture of base of neck of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150684,10,'S72.045S ','Nondisplaced fracture of base of neck of left femur, sequela','Y','0000-00-00 00:00:00'),(150685,10,'S72.046A ','Nondisplaced fracture of base of neck of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150683,10,'S72.045R ','Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150682,10,'S72.045Q ','Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150681,10,'S72.045P ','Nondisplaced fracture of base of neck of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150680,10,'S72.045N ','Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150679,10,'S72.045M ','Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150678,10,'S72.045K ','Nondisplaced fracture of base of neck of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150677,10,'S72.045J ','Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150676,10,'S72.045H ','Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150675,10,'S72.045G ','Nondisplaced fracture of base of neck of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150674,10,'S72.045F ','Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150673,10,'S72.045E ','Nondisplaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150672,10,'S72.045D ','Nondisplaced fracture of base of neck of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150671,10,'S72.045C ','Nondisplaced fracture of base of neck of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150670,10,'S72.045B ','Nondisplaced fracture of base of neck of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150669,10,'S72.045A ','Nondisplaced fracture of base of neck of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150668,10,'S72.044S ','Nondisplaced fracture of base of neck of right femur, sequela','Y','0000-00-00 00:00:00'),(150666,10,'S72.044Q ','Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150667,10,'S72.044R ','Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150665,10,'S72.044P ','Nondisplaced fracture of base of neck of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150664,10,'S72.044N ','Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150663,10,'S72.044M ','Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150662,10,'S72.044K ','Nondisplaced fracture of base of neck of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150661,10,'S72.044J ','Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150660,10,'S72.044H ','Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150659,10,'S72.044G ','Nondisplaced fracture of base of neck of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150658,10,'S72.044F ','Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150657,10,'S72.044E ','Nondisplaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150656,10,'S72.044D ','Nondisplaced fracture of base of neck of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150655,10,'S72.044C ','Nondisplaced fracture of base of neck of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150654,10,'S72.044B ','Nondisplaced fracture of base of neck of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150652,10,'S72.043S ','Displaced fracture of base of neck of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(150653,10,'S72.044A ','Nondisplaced fracture of base of neck of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150651,10,'S72.043R ','Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150650,10,'S72.043Q ','Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150649,10,'S72.043P ','Displaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150648,10,'S72.043N ','Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150647,10,'S72.043M ','Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150646,10,'S72.043K ','Displaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150645,10,'S72.043J ','Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150644,10,'S72.043H ','Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150642,10,'S72.043F ','Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150643,10,'S72.043G ','Displaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150641,10,'S72.043E ','Displaced fracture of base of neck of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150640,10,'S72.043D ','Displaced fracture of base of neck of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150639,10,'S72.043C ','Displaced fracture of base of neck of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150637,10,'S72.043A ','Displaced fracture of base of neck of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150638,10,'S72.043B ','Displaced fracture of base of neck of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150636,10,'S72.042S ','Displaced fracture of base of neck of left femur, sequela','Y','0000-00-00 00:00:00'),(150635,10,'S72.042R ','Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150634,10,'S72.042Q ','Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150633,10,'S72.042P ','Displaced fracture of base of neck of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150632,10,'S72.042N ','Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150631,10,'S72.042M ','Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150630,10,'S72.042K ','Displaced fracture of base of neck of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150629,10,'S72.042J ','Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150628,10,'S72.042H ','Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150627,10,'S72.042G ','Displaced fracture of base of neck of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150626,10,'S72.042F ','Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150625,10,'S72.042E ','Displaced fracture of base of neck of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150624,10,'S72.042D ','Displaced fracture of base of neck of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150623,10,'S72.042C ','Displaced fracture of base of neck of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150622,10,'S72.042B ','Displaced fracture of base of neck of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150620,10,'S72.041S ','Displaced fracture of base of neck of right femur, sequela','Y','0000-00-00 00:00:00'),(150621,10,'S72.042A ','Displaced fracture of base of neck of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150619,10,'S72.041R ','Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150618,10,'S72.041Q ','Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150617,10,'S72.041P ','Displaced fracture of base of neck of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150616,10,'S72.041N ','Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150615,10,'S72.041M ','Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150614,10,'S72.041K ','Displaced fracture of base of neck of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150612,10,'S72.041H ','Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150613,10,'S72.041J ','Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150611,10,'S72.041G ','Displaced fracture of base of neck of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150610,10,'S72.041F ','Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150609,10,'S72.041E ','Displaced fracture of base of neck of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150608,10,'S72.041D ','Displaced fracture of base of neck of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150607,10,'S72.041C ','Displaced fracture of base of neck of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150606,10,'S72.041B ','Displaced fracture of base of neck of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150605,10,'S72.041A ','Displaced fracture of base of neck of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150604,10,'S72.036S ','Nondisplaced midcervical fracture of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(150603,10,'S72.036R ','Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150602,10,'S72.036Q ','Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150601,10,'S72.036P ','Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150600,10,'S72.036N ','Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150599,10,'S72.036M ','Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150598,10,'S72.036K ','Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150597,10,'S72.036J ','Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150596,10,'S72.036H ','Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150595,10,'S72.036G ','Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150594,10,'S72.036F ','Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150593,10,'S72.036E ','Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150592,10,'S72.036D ','Nondisplaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150591,10,'S72.036C ','Nondisplaced midcervical fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150590,10,'S72.036B ','Nondisplaced midcervical fracture of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150589,10,'S72.036A ','Nondisplaced midcervical fracture of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150588,10,'S72.035S ','Nondisplaced midcervical fracture of left femur, sequela','Y','0000-00-00 00:00:00'),(150587,10,'S72.035R ','Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150586,10,'S72.035Q ','Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150585,10,'S72.035P ','Nondisplaced midcervical fracture of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150584,10,'S72.035N ','Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150583,10,'S72.035M ','Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150582,10,'S72.035K ','Nondisplaced midcervical fracture of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150581,10,'S72.035J ','Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150580,10,'S72.035H ','Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150579,10,'S72.035G ','Nondisplaced midcervical fracture of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150578,10,'S72.035F ','Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150577,10,'S72.035E ','Nondisplaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150575,10,'S72.035C ','Nondisplaced midcervical fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150576,10,'S72.035D ','Nondisplaced midcervical fracture of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150574,10,'S72.035B ','Nondisplaced midcervical fracture of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150572,10,'S72.034S ','Nondisplaced midcervical fracture of right femur, sequela','Y','0000-00-00 00:00:00'),(150573,10,'S72.035A ','Nondisplaced midcervical fracture of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150571,10,'S72.034R ','Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150570,10,'S72.034Q ','Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150569,10,'S72.034P ','Nondisplaced midcervical fracture of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150568,10,'S72.034N ','Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150567,10,'S72.034M ','Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150566,10,'S72.034K ','Nondisplaced midcervical fracture of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150565,10,'S72.034J ','Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150564,10,'S72.034H ','Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150563,10,'S72.034G ','Nondisplaced midcervical fracture of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150562,10,'S72.034F ','Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150561,10,'S72.034E ','Nondisplaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150560,10,'S72.034D ','Nondisplaced midcervical fracture of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150559,10,'S72.034C ','Nondisplaced midcervical fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150558,10,'S72.034B ','Nondisplaced midcervical fracture of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150557,10,'S72.034A ','Nondisplaced midcervical fracture of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150556,10,'S72.033S ','Displaced midcervical fracture of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(150555,10,'S72.033R ','Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150554,10,'S72.033Q ','Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150553,10,'S72.033P ','Displaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150552,10,'S72.033N ','Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150550,10,'S72.033K ','Displaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150551,10,'S72.033M ','Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150549,10,'S72.033J ','Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150548,10,'S72.033H ','Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150547,10,'S72.033G ','Displaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150546,10,'S72.033F ','Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150545,10,'S72.033E ','Displaced midcervical fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150544,10,'S72.033D ','Displaced midcervical fracture of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150542,10,'S72.033B ','Displaced midcervical fracture of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150543,10,'S72.033C ','Displaced midcervical fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150541,10,'S72.033A ','Displaced midcervical fracture of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150540,10,'S72.032S ','Displaced midcervical fracture of left femur, sequela','Y','0000-00-00 00:00:00'),(150539,10,'S72.032R ','Displaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150537,10,'S72.032P ','Displaced midcervical fracture of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150538,10,'S72.032Q ','Displaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150536,10,'S72.032N ','Displaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150535,10,'S72.032M ','Displaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150534,10,'S72.032K ','Displaced midcervical fracture of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150533,10,'S72.032J ','Displaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150532,10,'S72.032H ','Displaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150531,10,'S72.032G ','Displaced midcervical fracture of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150530,10,'S72.032F ','Displaced midcervical fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150528,10,'S72.032D ','Displaced midcervical fracture of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150529,10,'S72.032E ','Displaced midcervical fracture of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150527,10,'S72.032C ','Displaced midcervical fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150525,10,'S72.032A ','Displaced midcervical fracture of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150526,10,'S72.032B ','Displaced midcervical fracture of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150523,10,'S72.031R ','Displaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150524,10,'S72.031S ','Displaced midcervical fracture of right femur, sequela','Y','0000-00-00 00:00:00'),(150522,10,'S72.031Q ','Displaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150520,10,'S72.031N ','Displaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150521,10,'S72.031P ','Displaced midcervical fracture of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150519,10,'S72.031M ','Displaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150518,10,'S72.031K ','Displaced midcervical fracture of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150517,10,'S72.031J ','Displaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150515,10,'S72.031G ','Displaced midcervical fracture of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150516,10,'S72.031H ','Displaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150514,10,'S72.031F ','Displaced midcervical fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150513,10,'S72.031E ','Displaced midcervical fracture of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150512,10,'S72.031D ','Displaced midcervical fracture of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150511,10,'S72.031C ','Displaced midcervical fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150510,10,'S72.031B ','Displaced midcervical fracture of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150509,10,'S72.031A ','Displaced midcervical fracture of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150508,10,'S72.026S ','Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(150507,10,'S72.026R ','Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150506,10,'S72.026Q ','Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150505,10,'S72.026P ','Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150504,10,'S72.026N ','Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150503,10,'S72.026M ','Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150502,10,'S72.026K ','Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150501,10,'S72.026J ','Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150500,10,'S72.026H ','Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150499,10,'S72.026G ','Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150498,10,'S72.026F ','Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150496,10,'S72.026D ','Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150497,10,'S72.026E ','Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150495,10,'S72.026C ','Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150494,10,'S72.026B ','Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150492,10,'S72.025S ','Nondisplaced fracture of epiphysis (separation) (upper) of left femur, sequela','Y','0000-00-00 00:00:00'),(150493,10,'S72.026A ','Nondisplaced fracture of epiphysis (separation) (upper) of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150491,10,'S72.025R ','Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150489,10,'S72.025P ','Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150490,10,'S72.025Q ','Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150488,10,'S72.025N ','Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150487,10,'S72.025M ','Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150486,10,'S72.025K ','Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150485,10,'S72.025J ','Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150484,10,'S72.025H ','Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150483,10,'S72.025G ','Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150482,10,'S72.025F ','Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150481,10,'S72.025E ','Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150480,10,'S72.025D ','Nondisplaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150479,10,'S72.025C ','Nondisplaced fracture of epiphysis (separation) (upper) of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150478,10,'S72.025B ','Nondisplaced fracture of epiphysis (separation) (upper) of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150477,10,'S72.025A ','Nondisplaced fracture of epiphysis (separation) (upper) of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150476,10,'S72.024S ','Nondisplaced fracture of epiphysis (separation) (upper) of right femur, sequela','Y','0000-00-00 00:00:00'),(150475,10,'S72.024R ','Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150474,10,'S72.024Q ','Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150473,10,'S72.024P ','Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150472,10,'S72.024N ','Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150471,10,'S72.024M ','Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150470,10,'S72.024K ','Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150469,10,'S72.024J ','Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150468,10,'S72.024H ','Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150467,10,'S72.024G ','Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150466,10,'S72.024F ','Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150465,10,'S72.024E ','Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150464,10,'S72.024D ','Nondisplaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150463,10,'S72.024C ','Nondisplaced fracture of epiphysis (separation) (upper) of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150462,10,'S72.024B ','Nondisplaced fracture of epiphysis (separation) (upper) of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150461,10,'S72.024A ','Nondisplaced fracture of epiphysis (separation) (upper) of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150460,10,'S72.023S ','Displaced fracture of epiphysis (separation) (upper) of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(150459,10,'S72.023R ','Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150458,10,'S72.023Q ','Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150457,10,'S72.023P ','Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150456,10,'S72.023N ','Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150455,10,'S72.023M ','Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150454,10,'S72.023K ','Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150453,10,'S72.023J ','Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150452,10,'S72.023H ','Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150451,10,'S72.023G ','Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150450,10,'S72.023F ','Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150449,10,'S72.023E ','Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150448,10,'S72.023D ','Displaced fracture of epiphysis (separation) (upper) of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150447,10,'S72.023C ','Displaced fracture of epiphysis (separation) (upper) of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150446,10,'S72.023B ','Displaced fracture of epiphysis (separation) (upper) of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150445,10,'S72.023A ','Displaced fracture of epiphysis (separation) (upper) of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150444,10,'S72.022S ','Displaced fracture of epiphysis (separation) (upper) of left femur, sequela','Y','0000-00-00 00:00:00'),(150443,10,'S72.022R ','Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150442,10,'S72.022Q ','Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150441,10,'S72.022P ','Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150440,10,'S72.022N ','Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150439,10,'S72.022M ','Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150438,10,'S72.022K ','Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150437,10,'S72.022J ','Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150436,10,'S72.022H ','Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150435,10,'S72.022G ','Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150434,10,'S72.022F ','Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150433,10,'S72.022E ','Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150432,10,'S72.022D ','Displaced fracture of epiphysis (separation) (upper) of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150431,10,'S72.022C ','Displaced fracture of epiphysis (separation) (upper) of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150430,10,'S72.022B ','Displaced fracture of epiphysis (separation) (upper) of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150429,10,'S72.022A ','Displaced fracture of epiphysis (separation) (upper) of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150428,10,'S72.021S ','Displaced fracture of epiphysis (separation) (upper) of right femur, sequela','Y','0000-00-00 00:00:00'),(150427,10,'S72.021R ','Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150426,10,'S72.021Q ','Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150425,10,'S72.021P ','Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150424,10,'S72.021N ','Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150423,10,'S72.021M ','Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150422,10,'S72.021K ','Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150421,10,'S72.021J ','Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150420,10,'S72.021H ','Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150419,10,'S72.021G ','Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150418,10,'S72.021F ','Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150417,10,'S72.021E ','Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150416,10,'S72.021D ','Displaced fracture of epiphysis (separation) (upper) of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150415,10,'S72.021C ','Displaced fracture of epiphysis (separation) (upper) of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150414,10,'S72.021B ','Displaced fracture of epiphysis (separation) (upper) of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150413,10,'S72.021A ','Displaced fracture of epiphysis (separation) (upper) of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150412,10,'S72.019S ','Unspecified intracapsular fracture of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(150411,10,'S72.019R ','Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150410,10,'S72.019Q ','Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150409,10,'S72.019P ','Unspecified intracapsular fracture of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150408,10,'S72.019N ','Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150407,10,'S72.019M ','Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150406,10,'S72.019K ','Unspecified intracapsular fracture of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150405,10,'S72.019J ','Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150404,10,'S72.019H ','Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150403,10,'S72.019G ','Unspecified intracapsular fracture of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150402,10,'S72.019F ','Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150401,10,'S72.019E ','Unspecified intracapsular fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150400,10,'S72.019D ','Unspecified intracapsular fracture of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150399,10,'S72.019C ','Unspecified intracapsular fracture of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150398,10,'S72.019B ','Unspecified intracapsular fracture of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150397,10,'S72.019A ','Unspecified intracapsular fracture of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150396,10,'S72.012S ','Unspecified intracapsular fracture of left femur, sequela','Y','0000-00-00 00:00:00'),(150395,10,'S72.012R ','Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150394,10,'S72.012Q ','Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150393,10,'S72.012P ','Unspecified intracapsular fracture of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150392,10,'S72.012N ','Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150391,10,'S72.012M ','Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150390,10,'S72.012K ','Unspecified intracapsular fracture of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150389,10,'S72.012J ','Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150388,10,'S72.012H ','Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150387,10,'S72.012G ','Unspecified intracapsular fracture of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150386,10,'S72.012F ','Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150385,10,'S72.012E ','Unspecified intracapsular fracture of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150384,10,'S72.012D ','Unspecified intracapsular fracture of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150383,10,'S72.012C ','Unspecified intracapsular fracture of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150382,10,'S72.012B ','Unspecified intracapsular fracture of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150381,10,'S72.012A ','Unspecified intracapsular fracture of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150380,10,'S72.011S ','Unspecified intracapsular fracture of right femur, sequela','Y','0000-00-00 00:00:00'),(150379,10,'S72.011R ','Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150378,10,'S72.011Q ','Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150377,10,'S72.011P ','Unspecified intracapsular fracture of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150376,10,'S72.011N ','Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150375,10,'S72.011M ','Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150374,10,'S72.011K ','Unspecified intracapsular fracture of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150373,10,'S72.011J ','Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150372,10,'S72.011H ','Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150371,10,'S72.011G ','Unspecified intracapsular fracture of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150370,10,'S72.011F ','Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150369,10,'S72.011E ','Unspecified intracapsular fracture of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150368,10,'S72.011D ','Unspecified intracapsular fracture of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150367,10,'S72.011C ','Unspecified intracapsular fracture of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150366,10,'S72.011B ','Unspecified intracapsular fracture of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150365,10,'S72.011A ','Unspecified intracapsular fracture of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150364,10,'S72.009S ','Fracture of unspecified part of neck of unspecified femur, sequela','Y','0000-00-00 00:00:00'),(150363,10,'S72.009R ','Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150362,10,'S72.009Q ','Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150361,10,'S72.009P ','Fracture of unspecified part of neck of unspecified femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150360,10,'S72.009N ','Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150359,10,'S72.009M ','Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150358,10,'S72.009K ','Fracture of unspecified part of neck of unspecified femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150357,10,'S72.009J ','Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150356,10,'S72.009H ','Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150355,10,'S72.009G ','Fracture of unspecified part of neck of unspecified femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150354,10,'S72.009F ','Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150353,10,'S72.009E ','Fracture of unspecified part of neck of unspecified femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150352,10,'S72.009D ','Fracture of unspecified part of neck of unspecified femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150351,10,'S72.009C ','Fracture of unspecified part of neck of unspecified femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150350,10,'S72.009B ','Fracture of unspecified part of neck of unspecified femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150349,10,'S72.009A ','Fracture of unspecified part of neck of unspecified femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150348,10,'S72.002S ','Fracture of unspecified part of neck of left femur, sequela','Y','0000-00-00 00:00:00'),(150347,10,'S72.002R ','Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150346,10,'S72.002Q ','Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150345,10,'S72.002P ','Fracture of unspecified part of neck of left femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150344,10,'S72.002N ','Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150343,10,'S72.002M ','Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150342,10,'S72.002K ','Fracture of unspecified part of neck of left femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150341,10,'S72.002J ','Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150340,10,'S72.002H ','Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150339,10,'S72.002G ','Fracture of unspecified part of neck of left femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150338,10,'S72.002F ','Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150337,10,'S72.002E ','Fracture of unspecified part of neck of left femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150336,10,'S72.002D ','Fracture of unspecified part of neck of left femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150335,10,'S72.002C ','Fracture of unspecified part of neck of left femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150334,10,'S72.002B ','Fracture of unspecified part of neck of left femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150333,10,'S72.002A ','Fracture of unspecified part of neck of left femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150332,10,'S72.001S ','Fracture of unspecified part of neck of right femur, sequela','Y','0000-00-00 00:00:00'),(150331,10,'S72.001R ','Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(150330,10,'S72.001Q ','Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(150329,10,'S72.001P ','Fracture of unspecified part of neck of right femur, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(150328,10,'S72.001N ','Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(150327,10,'S72.001M ','Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(150326,10,'S72.001K ','Fracture of unspecified part of neck of right femur, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(150325,10,'S72.001J ','Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(150324,10,'S72.001H ','Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(150323,10,'S72.001G ','Fracture of unspecified part of neck of right femur, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(150322,10,'S72.001F ','Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(150321,10,'S72.001E ','Fracture of unspecified part of neck of right femur, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(150320,10,'S72.001D ','Fracture of unspecified part of neck of right femur, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(150319,10,'S72.001C ','Fracture of unspecified part of neck of right femur, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(150318,10,'S72.001B ','Fracture of unspecified part of neck of right femur, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(150317,10,'S72.001A ','Fracture of unspecified part of neck of right femur, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(150316,10,'S71.159S ','Open bite, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(150315,10,'S71.159D ','Open bite, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150314,10,'S71.159A ','Open bite, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(150313,10,'S71.152S ','Open bite, left thigh, sequela','Y','0000-00-00 00:00:00'),(150312,10,'S71.152D ','Open bite, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150310,10,'S71.151S ','Open bite, right thigh, sequela','Y','0000-00-00 00:00:00'),(150311,10,'S71.152A ','Open bite, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(150309,10,'S71.151D ','Open bite, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150308,10,'S71.151A ','Open bite, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(150307,10,'S71.149S ','Puncture wound with foreign body, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(150306,10,'S71.149D ','Puncture wound with foreign body, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150305,10,'S71.149A ','Puncture wound with foreign body, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(150304,10,'S71.142S ','Puncture wound with foreign body, left thigh, sequela','Y','0000-00-00 00:00:00'),(150303,10,'S71.142D ','Puncture wound with foreign body, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150302,10,'S71.142A ','Puncture wound with foreign body, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(150301,10,'S71.141S ','Puncture wound with foreign body, right thigh, sequela','Y','0000-00-00 00:00:00'),(150300,10,'S71.141D ','Puncture wound with foreign body, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150299,10,'S71.141A ','Puncture wound with foreign body, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(150298,10,'S71.139S ','Puncture wound without foreign body, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(150297,10,'S71.139D ','Puncture wound without foreign body, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150296,10,'S71.139A ','Puncture wound without foreign body, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(150295,10,'S71.132S ','Puncture wound without foreign body, left thigh, sequela','Y','0000-00-00 00:00:00'),(150294,10,'S71.132D ','Puncture wound without foreign body, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150293,10,'S71.132A ','Puncture wound without foreign body, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(150292,10,'S71.131S ','Puncture wound without foreign body, right thigh, sequela','Y','0000-00-00 00:00:00'),(150291,10,'S71.131D ','Puncture wound without foreign body, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150290,10,'S71.131A ','Puncture wound without foreign body, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(150289,10,'S71.129S ','Laceration with foreign body, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(150288,10,'S71.129D ','Laceration with foreign body, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150287,10,'S71.129A ','Laceration with foreign body, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(150285,10,'S71.122D ','Laceration with foreign body, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150286,10,'S71.122S ','Laceration with foreign body, left thigh, sequela','Y','0000-00-00 00:00:00'),(150284,10,'S71.122A ','Laceration with foreign body, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(150283,10,'S71.121S ','Laceration with foreign body, right thigh, sequela','Y','0000-00-00 00:00:00'),(150282,10,'S71.121D ','Laceration with foreign body, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150281,10,'S71.121A ','Laceration with foreign body, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(150280,10,'S71.119S ','Laceration without foreign body, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(150279,10,'S71.119D ','Laceration without foreign body, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150277,10,'S71.112S ','Laceration without foreign body, left thigh, sequela','Y','0000-00-00 00:00:00'),(150278,10,'S71.119A ','Laceration without foreign body, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(150276,10,'S71.112D ','Laceration without foreign body, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150275,10,'S71.112A ','Laceration without foreign body, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(150274,10,'S71.111S ','Laceration without foreign body, right thigh, sequela','Y','0000-00-00 00:00:00'),(150273,10,'S71.111D ','Laceration without foreign body, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150271,10,'S71.109S ','Unspecified open wound, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(150272,10,'S71.111A ','Laceration without foreign body, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(150270,10,'S71.109D ','Unspecified open wound, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150269,10,'S71.109A ','Unspecified open wound, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(150268,10,'S71.102S ','Unspecified open wound, left thigh, sequela','Y','0000-00-00 00:00:00'),(150266,10,'S71.102A ','Unspecified open wound, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(150267,10,'S71.102D ','Unspecified open wound, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150265,10,'S71.101S ','Unspecified open wound, right thigh, sequela','Y','0000-00-00 00:00:00'),(150264,10,'S71.101D ','Unspecified open wound, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150263,10,'S71.101A ','Unspecified open wound, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(150262,10,'S71.059S ','Open bite, unspecified hip, sequela','Y','0000-00-00 00:00:00'),(150260,10,'S71.059A ','Open bite, unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(150261,10,'S71.059D ','Open bite, unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150258,10,'S71.052D ','Open bite, left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150259,10,'S71.052S ','Open bite, left hip, sequela','Y','0000-00-00 00:00:00'),(150256,10,'S71.051S ','Open bite, right hip, sequela','Y','0000-00-00 00:00:00'),(150257,10,'S71.052A ','Open bite, left hip, initial encounter','Y','0000-00-00 00:00:00'),(150255,10,'S71.051D ','Open bite, right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150254,10,'S71.051A ','Open bite, right hip, initial encounter','Y','0000-00-00 00:00:00'),(150253,10,'S71.049S ','Puncture wound with foreign body, unspecified hip, sequela','Y','0000-00-00 00:00:00'),(150252,10,'S71.049D ','Puncture wound with foreign body, unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150250,10,'S71.042S ','Puncture wound with foreign body, left hip, sequela','Y','0000-00-00 00:00:00'),(150251,10,'S71.049A ','Puncture wound with foreign body, unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(150249,10,'S71.042D ','Puncture wound with foreign body, left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150248,10,'S71.042A ','Puncture wound with foreign body, left hip, initial encounter','Y','0000-00-00 00:00:00'),(150247,10,'S71.041S ','Puncture wound with foreign body, right hip, sequela','Y','0000-00-00 00:00:00'),(150246,10,'S71.041D ','Puncture wound with foreign body, right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150245,10,'S71.041A ','Puncture wound with foreign body, right hip, initial encounter','Y','0000-00-00 00:00:00'),(150244,10,'S71.039S ','Puncture wound without foreign body, unspecified hip, sequela','Y','0000-00-00 00:00:00'),(150243,10,'S71.039D ','Puncture wound without foreign body, unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150241,10,'S71.032S ','Puncture wound without foreign body, left hip, sequela','Y','0000-00-00 00:00:00'),(150242,10,'S71.039A ','Puncture wound without foreign body, unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(150240,10,'S71.032D ','Puncture wound without foreign body, left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150239,10,'S71.032A ','Puncture wound without foreign body, left hip, initial encounter','Y','0000-00-00 00:00:00'),(150237,10,'S71.031D ','Puncture wound without foreign body, right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150238,10,'S71.031S ','Puncture wound without foreign body, right hip, sequela','Y','0000-00-00 00:00:00'),(150236,10,'S71.031A ','Puncture wound without foreign body, right hip, initial encounter','Y','0000-00-00 00:00:00'),(150235,10,'S71.029S ','Laceration with foreign body, unspecified hip, sequela','Y','0000-00-00 00:00:00'),(150234,10,'S71.029D ','Laceration with foreign body, unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150233,10,'S71.029A ','Laceration with foreign body, unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(150232,10,'S71.022S ','Laceration with foreign body, left hip, sequela','Y','0000-00-00 00:00:00'),(150231,10,'S71.022D ','Laceration with foreign body, left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150229,10,'S71.021S ','Laceration with foreign body, right hip, sequela','Y','0000-00-00 00:00:00'),(150230,10,'S71.022A ','Laceration with foreign body, left hip, initial encounter','Y','0000-00-00 00:00:00'),(150228,10,'S71.021D ','Laceration with foreign body, right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150227,10,'S71.021A ','Laceration with foreign body, right hip, initial encounter','Y','0000-00-00 00:00:00'),(150226,10,'S71.019S ','Laceration without foreign body, unspecified hip, sequela','Y','0000-00-00 00:00:00'),(150225,10,'S71.019D ','Laceration without foreign body, unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150224,10,'S71.019A ','Laceration without foreign body, unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(150223,10,'S71.012S ','Laceration without foreign body, left hip, sequela','Y','0000-00-00 00:00:00'),(150222,10,'S71.012D ','Laceration without foreign body, left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150221,10,'S71.012A ','Laceration without foreign body, left hip, initial encounter','Y','0000-00-00 00:00:00'),(150220,10,'S71.011S ','Laceration without foreign body, right hip, sequela','Y','0000-00-00 00:00:00'),(150219,10,'S71.011D ','Laceration without foreign body, right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150217,10,'S71.009S ','Unspecified open wound, unspecified hip, sequela','Y','0000-00-00 00:00:00'),(150218,10,'S71.011A ','Laceration without foreign body, right hip, initial encounter','Y','0000-00-00 00:00:00'),(150216,10,'S71.009D ','Unspecified open wound, unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150215,10,'S71.009A ','Unspecified open wound, unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(150214,10,'S71.002S ','Unspecified open wound, left hip, sequela','Y','0000-00-00 00:00:00'),(150213,10,'S71.002D ','Unspecified open wound, left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150211,10,'S71.001S ','Unspecified open wound, right hip, sequela','Y','0000-00-00 00:00:00'),(150212,10,'S71.002A ','Unspecified open wound, left hip, initial encounter','Y','0000-00-00 00:00:00'),(150210,10,'S71.001D ','Unspecified open wound, right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150209,10,'S71.001A ','Unspecified open wound, right hip, initial encounter','Y','0000-00-00 00:00:00'),(150208,10,'S70.929S ','Unspecified superficial injury of unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(150207,10,'S70.929D ','Unspecified superficial injury of unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150206,10,'S70.929A ','Unspecified superficial injury of unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(150205,10,'S70.922S ','Unspecified superficial injury of left thigh, sequela','Y','0000-00-00 00:00:00'),(150204,10,'S70.922D ','Unspecified superficial injury of left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150203,10,'S70.922A ','Unspecified superficial injury of left thigh, initial encounter','Y','0000-00-00 00:00:00'),(150202,10,'S70.921S ','Unspecified superficial injury of right thigh, sequela','Y','0000-00-00 00:00:00'),(150201,10,'S70.921D ','Unspecified superficial injury of right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150200,10,'S70.921A ','Unspecified superficial injury of right thigh, initial encounter','Y','0000-00-00 00:00:00'),(150199,10,'S70.919S ','Unspecified superficial injury of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(150198,10,'S70.919D ','Unspecified superficial injury of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150197,10,'S70.919A ','Unspecified superficial injury of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(150196,10,'S70.912S ','Unspecified superficial injury of left hip, sequela','Y','0000-00-00 00:00:00'),(150195,10,'S70.912D ','Unspecified superficial injury of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150194,10,'S70.912A ','Unspecified superficial injury of left hip, initial encounter','Y','0000-00-00 00:00:00'),(150193,10,'S70.911S ','Unspecified superficial injury of right hip, sequela','Y','0000-00-00 00:00:00'),(150192,10,'S70.911D ','Unspecified superficial injury of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150191,10,'S70.911A ','Unspecified superficial injury of right hip, initial encounter','Y','0000-00-00 00:00:00'),(150190,10,'S70.379S ','Other superficial bite of unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(150189,10,'S70.379D ','Other superficial bite of unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150188,10,'S70.379A ','Other superficial bite of unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(150187,10,'S70.372S ','Other superficial bite of left thigh, sequela','Y','0000-00-00 00:00:00'),(150186,10,'S70.372D ','Other superficial bite of left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150185,10,'S70.372A ','Other superficial bite of left thigh, initial encounter','Y','0000-00-00 00:00:00'),(150184,10,'S70.371S ','Other superficial bite of right thigh, sequela','Y','0000-00-00 00:00:00'),(150183,10,'S70.371D ','Other superficial bite of right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150182,10,'S70.371A ','Other superficial bite of right thigh, initial encounter','Y','0000-00-00 00:00:00'),(150181,10,'S70.369S ','Insect bite (nonvenomous), unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(150180,10,'S70.369D ','Insect bite (nonvenomous), unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150178,10,'S70.362S ','Insect bite (nonvenomous), left thigh, sequela','Y','0000-00-00 00:00:00'),(150179,10,'S70.369A ','Insect bite (nonvenomous), unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(150177,10,'S70.362D ','Insect bite (nonvenomous), left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150175,10,'S70.361S ','Insect bite (nonvenomous), right thigh, sequela','Y','0000-00-00 00:00:00'),(150176,10,'S70.362A ','Insect bite (nonvenomous), left thigh, initial encounter','Y','0000-00-00 00:00:00'),(150174,10,'S70.361D ','Insect bite (nonvenomous), right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150173,10,'S70.361A ','Insect bite (nonvenomous), right thigh, initial encounter','Y','0000-00-00 00:00:00'),(150172,10,'S70.359S ','Superficial foreign body, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(150170,10,'S70.359A ','Superficial foreign body, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(150171,10,'S70.359D ','Superficial foreign body, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150169,10,'S70.352S ','Superficial foreign body, left thigh, sequela','Y','0000-00-00 00:00:00'),(150167,10,'S70.352A ','Superficial foreign body, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(150168,10,'S70.352D ','Superficial foreign body, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150166,10,'S70.351S ','Superficial foreign body, right thigh, sequela','Y','0000-00-00 00:00:00'),(150164,10,'S70.351A ','Superficial foreign body, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(150165,10,'S70.351D ','Superficial foreign body, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150163,10,'S70.349S ','External constriction, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(150162,10,'S70.349D ','External constriction, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150161,10,'S70.349A ','External constriction, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(150159,10,'S70.342D ','External constriction, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150160,10,'S70.342S ','External constriction, left thigh, sequela','Y','0000-00-00 00:00:00'),(150158,10,'S70.342A ','External constriction, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(150157,10,'S70.341S ','External constriction, right thigh, sequela','Y','0000-00-00 00:00:00'),(150156,10,'S70.341D ','External constriction, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150154,10,'S70.329S ','Blister (nonthermal), unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(150155,10,'S70.341A ','External constriction, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(150153,10,'S70.329D ','Blister (nonthermal), unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150151,10,'S70.322S ','Blister (nonthermal), left thigh, sequela','Y','0000-00-00 00:00:00'),(150152,10,'S70.329A ','Blister (nonthermal), unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(150150,10,'S70.322D ','Blister (nonthermal), left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150148,10,'S70.321S ','Blister (nonthermal), right thigh, sequela','Y','0000-00-00 00:00:00'),(150149,10,'S70.322A ','Blister (nonthermal), left thigh, initial encounter','Y','0000-00-00 00:00:00'),(150147,10,'S70.321D ','Blister (nonthermal), right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150146,10,'S70.321A ','Blister (nonthermal), right thigh, initial encounter','Y','0000-00-00 00:00:00'),(150144,10,'S70.319D ','Abrasion, unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150145,10,'S70.319S ','Abrasion, unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(150142,10,'S70.312S ','Abrasion, left thigh, sequela','Y','0000-00-00 00:00:00'),(150143,10,'S70.319A ','Abrasion, unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(150140,10,'S70.312A ','Abrasion, left thigh, initial encounter','Y','0000-00-00 00:00:00'),(150141,10,'S70.312D ','Abrasion, left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150138,10,'S70.311D ','Abrasion, right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150139,10,'S70.311S ','Abrasion, right thigh, sequela','Y','0000-00-00 00:00:00'),(150137,10,'S70.311A ','Abrasion, right thigh, initial encounter','Y','0000-00-00 00:00:00'),(150136,10,'S70.279S ','Other superficial bite of hip, unspecified hip, sequela','Y','0000-00-00 00:00:00'),(150135,10,'S70.279D ','Other superficial bite of hip, unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150134,10,'S70.279A ','Other superficial bite of hip, unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(150133,10,'S70.272S ','Other superficial bite of hip, left hip, sequela','Y','0000-00-00 00:00:00'),(150132,10,'S70.272D ','Other superficial bite of hip, left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150131,10,'S70.272A ','Other superficial bite of hip, left hip, initial encounter','Y','0000-00-00 00:00:00'),(150130,10,'S70.271S ','Other superficial bite of hip, right hip, sequela','Y','0000-00-00 00:00:00'),(150129,10,'S70.271D ','Other superficial bite of hip, right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150128,10,'S70.271A ','Other superficial bite of hip, right hip, initial encounter','Y','0000-00-00 00:00:00'),(150126,10,'S70.269D ','Insect bite (nonvenomous), unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150127,10,'S70.269S ','Insect bite (nonvenomous), unspecified hip, sequela','Y','0000-00-00 00:00:00'),(150125,10,'S70.269A ','Insect bite (nonvenomous), unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(150124,10,'S70.262S ','Insect bite (nonvenomous), left hip, sequela','Y','0000-00-00 00:00:00'),(150123,10,'S70.262D ','Insect bite (nonvenomous), left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150122,10,'S70.262A ','Insect bite (nonvenomous), left hip, initial encounter','Y','0000-00-00 00:00:00'),(150121,10,'S70.261S ','Insect bite (nonvenomous), right hip, sequela','Y','0000-00-00 00:00:00'),(150119,10,'S70.261A ','Insect bite (nonvenomous), right hip, initial encounter','Y','0000-00-00 00:00:00'),(150120,10,'S70.261D ','Insect bite (nonvenomous), right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150118,10,'S70.259S ','Superficial foreign body, unspecified hip, sequela','Y','0000-00-00 00:00:00'),(150117,10,'S70.259D ','Superficial foreign body, unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150116,10,'S70.259A ','Superficial foreign body, unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(150115,10,'S70.252S ','Superficial foreign body, left hip, sequela','Y','0000-00-00 00:00:00'),(150113,10,'S70.252A ','Superficial foreign body, left hip, initial encounter','Y','0000-00-00 00:00:00'),(150114,10,'S70.252D ','Superficial foreign body, left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150112,10,'S70.251S ','Superficial foreign body, right hip, sequela','Y','0000-00-00 00:00:00'),(150111,10,'S70.251D ','Superficial foreign body, right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150110,10,'S70.251A ','Superficial foreign body, right hip, initial encounter','Y','0000-00-00 00:00:00'),(150108,10,'S70.249D ','External constriction, unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150109,10,'S70.249S ','External constriction, unspecified hip, sequela','Y','0000-00-00 00:00:00'),(150107,10,'S70.249A ','External constriction, unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(150105,10,'S70.242D ','External constriction, left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150106,10,'S70.242S ','External constriction, left hip, sequela','Y','0000-00-00 00:00:00'),(150104,10,'S70.242A ','External constriction, left hip, initial encounter','Y','0000-00-00 00:00:00'),(150102,10,'S70.241D ','External constriction, right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150103,10,'S70.241S ','External constriction, right hip, sequela','Y','0000-00-00 00:00:00'),(150101,10,'S70.241A ','External constriction, right hip, initial encounter','Y','0000-00-00 00:00:00'),(150100,10,'S70.229S ','Blister (nonthermal), unspecified hip, sequela','Y','0000-00-00 00:00:00'),(150098,10,'S70.229A ','Blister (nonthermal), unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(150099,10,'S70.229D ','Blister (nonthermal), unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150096,10,'S70.222D ','Blister (nonthermal), left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150097,10,'S70.222S ','Blister (nonthermal), left hip, sequela','Y','0000-00-00 00:00:00'),(150094,10,'S70.221S ','Blister (nonthermal), right hip, sequela','Y','0000-00-00 00:00:00'),(150095,10,'S70.222A ','Blister (nonthermal), left hip, initial encounter','Y','0000-00-00 00:00:00'),(150093,10,'S70.221D ','Blister (nonthermal), right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150091,10,'S70.219S ','Abrasion, unspecified hip, sequela','Y','0000-00-00 00:00:00'),(150092,10,'S70.221A ','Blister (nonthermal), right hip, initial encounter','Y','0000-00-00 00:00:00'),(150090,10,'S70.219D ','Abrasion, unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150088,10,'S70.212S ','Abrasion, left hip, sequela','Y','0000-00-00 00:00:00'),(150089,10,'S70.219A ','Abrasion, unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(150087,10,'S70.212D ','Abrasion, left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150085,10,'S70.211S ','Abrasion, right hip, sequela','Y','0000-00-00 00:00:00'),(150086,10,'S70.212A ','Abrasion, left hip, initial encounter','Y','0000-00-00 00:00:00'),(150083,10,'S70.211A ','Abrasion, right hip, initial encounter','Y','0000-00-00 00:00:00'),(150084,10,'S70.211D ','Abrasion, right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150082,10,'S70.12XS ','Contusion of left thigh, sequela','Y','0000-00-00 00:00:00'),(150081,10,'S70.12XD ','Contusion of left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150079,10,'S70.11XS ','Contusion of right thigh, sequela','Y','0000-00-00 00:00:00'),(150080,10,'S70.12XA ','Contusion of left thigh, initial encounter','Y','0000-00-00 00:00:00'),(150078,10,'S70.11XD ','Contusion of right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150076,10,'S70.10XS ','Contusion of unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(150077,10,'S70.11XA ','Contusion of right thigh, initial encounter','Y','0000-00-00 00:00:00'),(150075,10,'S70.10XD ','Contusion of unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(150073,10,'S70.02XS ','Contusion of left hip, sequela','Y','0000-00-00 00:00:00'),(150074,10,'S70.10XA ','Contusion of unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(150072,10,'S70.02XD ','Contusion of left hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150070,10,'S70.01XS ','Contusion of right hip, sequela','Y','0000-00-00 00:00:00'),(150071,10,'S70.02XA ','Contusion of left hip, initial encounter','Y','0000-00-00 00:00:00'),(150068,10,'S70.01XA ','Contusion of right hip, initial encounter','Y','0000-00-00 00:00:00'),(150069,10,'S70.01XD ','Contusion of right hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150067,10,'S70.00XS ','Contusion of unspecified hip, sequela','Y','0000-00-00 00:00:00'),(150065,10,'S70.00XA ','Contusion of unspecified hip, initial encounter','Y','0000-00-00 00:00:00'),(150066,10,'S70.00XD ','Contusion of unspecified hip, subsequent encounter','Y','0000-00-00 00:00:00'),(150064,10,'S69.92XS ','Unspecified injury of left wrist, hand and finger(s), sequela','Y','0000-00-00 00:00:00'),(150063,10,'S69.92XD ','Unspecified injury of left wrist, hand and finger(s), subsequent encounter','Y','0000-00-00 00:00:00'),(150062,10,'S69.92XA ','Unspecified injury of left wrist, hand and finger(s), initial encounter','Y','0000-00-00 00:00:00'),(150061,10,'S69.91XS ','Unspecified injury of right wrist, hand and finger(s), sequela','Y','0000-00-00 00:00:00'),(150060,10,'S69.91XD ','Unspecified injury of right wrist, hand and finger(s), subsequent encounter','Y','0000-00-00 00:00:00'),(150059,10,'S69.91XA ','Unspecified injury of right wrist, hand and finger(s), initial encounter','Y','0000-00-00 00:00:00'),(150058,10,'S69.90XS ','Unspecified injury of unspecified wrist, hand and finger(s), sequela','Y','0000-00-00 00:00:00'),(150057,10,'S69.90XD ','Unspecified injury of unspecified wrist, hand and finger(s), subsequent encounter','Y','0000-00-00 00:00:00'),(150056,10,'S69.90XA ','Unspecified injury of unspecified wrist, hand and finger(s), initial encounter','Y','0000-00-00 00:00:00'),(150055,10,'S69.82XS ','Other specified injuries of left wrist, hand and finger(s), sequela','Y','0000-00-00 00:00:00'),(150054,10,'S69.82XD ','Other specified injuries of left wrist, hand and finger(s), subsequent encounter','Y','0000-00-00 00:00:00'),(150053,10,'S69.82XA ','Other specified injuries of left wrist, hand and finger(s), initial encounter','Y','0000-00-00 00:00:00'),(150052,10,'S69.81XS ','Other specified injuries of right wrist, hand and finger(s), sequela','Y','0000-00-00 00:00:00'),(150051,10,'S69.81XD ','Other specified injuries of right wrist, hand and finger(s), subsequent encounter','Y','0000-00-00 00:00:00'),(150050,10,'S69.81XA ','Other specified injuries of right wrist, hand and finger(s), initial encounter','Y','0000-00-00 00:00:00'),(150049,10,'S69.80XS ','Other specified injuries of unspecified wrist, hand and finger(s), sequela','Y','0000-00-00 00:00:00'),(150048,10,'S69.80XD ','Other specified injuries of unspecified wrist, hand and finger(s), subsequent encounter','Y','0000-00-00 00:00:00'),(150047,10,'S69.80XA ','Other specified injuries of unspecified wrist, hand and finger(s), initial encounter','Y','0000-00-00 00:00:00'),(150046,10,'S68.729S ','Partial traumatic transmetacarpal amputation of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(150045,10,'S68.729D ','Partial traumatic transmetacarpal amputation of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(150044,10,'S68.729A ','Partial traumatic transmetacarpal amputation of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(150043,10,'S68.722S ','Partial traumatic transmetacarpal amputation of left hand, sequela','Y','0000-00-00 00:00:00'),(150042,10,'S68.722D ','Partial traumatic transmetacarpal amputation of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(150041,10,'S68.722A ','Partial traumatic transmetacarpal amputation of left hand, initial encounter','Y','0000-00-00 00:00:00'),(150040,10,'S68.721S ','Partial traumatic transmetacarpal amputation of right hand, sequela','Y','0000-00-00 00:00:00'),(150039,10,'S68.721D ','Partial traumatic transmetacarpal amputation of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(150037,10,'S68.719S ','Complete traumatic transmetacarpal amputation of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(150038,10,'S68.721A ','Partial traumatic transmetacarpal amputation of right hand, initial encounter','Y','0000-00-00 00:00:00'),(150036,10,'S68.719D ','Complete traumatic transmetacarpal amputation of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(150035,10,'S68.719A ','Complete traumatic transmetacarpal amputation of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(150034,10,'S68.712S ','Complete traumatic transmetacarpal amputation of left hand, sequela','Y','0000-00-00 00:00:00'),(150033,10,'S68.712D ','Complete traumatic transmetacarpal amputation of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(150032,10,'S68.712A ','Complete traumatic transmetacarpal amputation of left hand, initial encounter','Y','0000-00-00 00:00:00'),(150031,10,'S68.711S ','Complete traumatic transmetacarpal amputation of right hand, sequela','Y','0000-00-00 00:00:00'),(150029,10,'S68.711A ','Complete traumatic transmetacarpal amputation of right hand, initial encounter','Y','0000-00-00 00:00:00'),(150030,10,'S68.711D ','Complete traumatic transmetacarpal amputation of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(150028,10,'S68.629S ','Partial traumatic transphalangeal amputation of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(150027,10,'S68.629D ','Partial traumatic transphalangeal amputation of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(150026,10,'S68.629A ','Partial traumatic transphalangeal amputation of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(150025,10,'S68.628S ','Partial traumatic transphalangeal amputation of other finger, sequela','Y','0000-00-00 00:00:00'),(150024,10,'S68.628D ','Partial traumatic transphalangeal amputation of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(150023,10,'S68.628A ','Partial traumatic transphalangeal amputation of other finger, initial encounter','Y','0000-00-00 00:00:00'),(150022,10,'S68.627S ','Partial traumatic transphalangeal amputation of left little finger, sequela','Y','0000-00-00 00:00:00'),(150021,10,'S68.627D ','Partial traumatic transphalangeal amputation of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(150020,10,'S68.627A ','Partial traumatic transphalangeal amputation of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(150019,10,'S68.626S ','Partial traumatic transphalangeal amputation of right little finger, sequela','Y','0000-00-00 00:00:00'),(150018,10,'S68.626D ','Partial traumatic transphalangeal amputation of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(150016,10,'S68.625S ','Partial traumatic transphalangeal amputation of left ring finger, sequela','Y','0000-00-00 00:00:00'),(150017,10,'S68.626A ','Partial traumatic transphalangeal amputation of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(150015,10,'S68.625D ','Partial traumatic transphalangeal amputation of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(150014,10,'S68.625A ','Partial traumatic transphalangeal amputation of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(150013,10,'S68.624S ','Partial traumatic transphalangeal amputation of right ring finger, sequela','Y','0000-00-00 00:00:00'),(150011,10,'S68.624A ','Partial traumatic transphalangeal amputation of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(150012,10,'S68.624D ','Partial traumatic transphalangeal amputation of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(150010,10,'S68.623S ','Partial traumatic transphalangeal amputation of left middle finger, sequela','Y','0000-00-00 00:00:00'),(150009,10,'S68.623D ','Partial traumatic transphalangeal amputation of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(150008,10,'S68.623A ','Partial traumatic transphalangeal amputation of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(150007,10,'S68.622S ','Partial traumatic transphalangeal amputation of right middle finger, sequela','Y','0000-00-00 00:00:00'),(150006,10,'S68.622D ','Partial traumatic transphalangeal amputation of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(150005,10,'S68.622A ','Partial traumatic transphalangeal amputation of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(150004,10,'S68.621S ','Partial traumatic transphalangeal amputation of left index finger, sequela','Y','0000-00-00 00:00:00'),(150003,10,'S68.621D ','Partial traumatic transphalangeal amputation of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(150002,10,'S68.621A ','Partial traumatic transphalangeal amputation of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(150001,10,'S68.620S ','Partial traumatic transphalangeal amputation of right index finger, sequela','Y','0000-00-00 00:00:00'),(150000,10,'S68.620D ','Partial traumatic transphalangeal amputation of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149999,10,'S68.620A ','Partial traumatic transphalangeal amputation of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(149998,10,'S68.619S ','Complete traumatic transphalangeal amputation of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(149997,10,'S68.619D ','Complete traumatic transphalangeal amputation of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149996,10,'S68.619A ','Complete traumatic transphalangeal amputation of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(149995,10,'S68.618S ','Complete traumatic transphalangeal amputation of other finger, sequela','Y','0000-00-00 00:00:00'),(149994,10,'S68.618D ','Complete traumatic transphalangeal amputation of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149993,10,'S68.618A ','Complete traumatic transphalangeal amputation of other finger, initial encounter','Y','0000-00-00 00:00:00'),(149992,10,'S68.617S ','Complete traumatic transphalangeal amputation of left little finger, sequela','Y','0000-00-00 00:00:00'),(149991,10,'S68.617D ','Complete traumatic transphalangeal amputation of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149990,10,'S68.617A ','Complete traumatic transphalangeal amputation of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(149989,10,'S68.616S ','Complete traumatic transphalangeal amputation of right little finger, sequela','Y','0000-00-00 00:00:00'),(149988,10,'S68.616D ','Complete traumatic transphalangeal amputation of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149987,10,'S68.616A ','Complete traumatic transphalangeal amputation of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(149986,10,'S68.615S ','Complete traumatic transphalangeal amputation of left ring finger, sequela','Y','0000-00-00 00:00:00'),(149985,10,'S68.615D ','Complete traumatic transphalangeal amputation of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149983,10,'S68.614S ','Complete traumatic transphalangeal amputation of right ring finger, sequela','Y','0000-00-00 00:00:00'),(149984,10,'S68.615A ','Complete traumatic transphalangeal amputation of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(149982,10,'S68.614D ','Complete traumatic transphalangeal amputation of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149981,10,'S68.614A ','Complete traumatic transphalangeal amputation of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(149980,10,'S68.613S ','Complete traumatic transphalangeal amputation of left middle finger, sequela','Y','0000-00-00 00:00:00'),(149979,10,'S68.613D ','Complete traumatic transphalangeal amputation of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149977,10,'S68.612S ','Complete traumatic transphalangeal amputation of right middle finger, sequela','Y','0000-00-00 00:00:00'),(149978,10,'S68.613A ','Complete traumatic transphalangeal amputation of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(149976,10,'S68.612D ','Complete traumatic transphalangeal amputation of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149975,10,'S68.612A ','Complete traumatic transphalangeal amputation of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(149974,10,'S68.611S ','Complete traumatic transphalangeal amputation of left index finger, sequela','Y','0000-00-00 00:00:00'),(149973,10,'S68.611D ','Complete traumatic transphalangeal amputation of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149972,10,'S68.611A ','Complete traumatic transphalangeal amputation of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(149971,10,'S68.610S ','Complete traumatic transphalangeal amputation of right index finger, sequela','Y','0000-00-00 00:00:00'),(149970,10,'S68.610D ','Complete traumatic transphalangeal amputation of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149969,10,'S68.610A ','Complete traumatic transphalangeal amputation of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(149968,10,'S68.529S ','Partial traumatic transphalangeal amputation of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(149967,10,'S68.529D ','Partial traumatic transphalangeal amputation of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149966,10,'S68.529A ','Partial traumatic transphalangeal amputation of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(149965,10,'S68.522S ','Partial traumatic transphalangeal amputation of left thumb, sequela','Y','0000-00-00 00:00:00'),(149964,10,'S68.522D ','Partial traumatic transphalangeal amputation of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149963,10,'S68.522A ','Partial traumatic transphalangeal amputation of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(149962,10,'S68.521S ','Partial traumatic transphalangeal amputation of right thumb, sequela','Y','0000-00-00 00:00:00'),(149961,10,'S68.521D ','Partial traumatic transphalangeal amputation of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149960,10,'S68.521A ','Partial traumatic transphalangeal amputation of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(149959,10,'S68.519S ','Complete traumatic transphalangeal amputation of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(149958,10,'S68.519D ','Complete traumatic transphalangeal amputation of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149956,10,'S68.512S ','Complete traumatic transphalangeal amputation of left thumb, sequela','Y','0000-00-00 00:00:00'),(149957,10,'S68.519A ','Complete traumatic transphalangeal amputation of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(149955,10,'S68.512D ','Complete traumatic transphalangeal amputation of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149954,10,'S68.512A ','Complete traumatic transphalangeal amputation of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(149953,10,'S68.511S ','Complete traumatic transphalangeal amputation of right thumb, sequela','Y','0000-00-00 00:00:00'),(149952,10,'S68.511D ','Complete traumatic transphalangeal amputation of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149951,10,'S68.511A ','Complete traumatic transphalangeal amputation of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(149950,10,'S68.429S ','Partial traumatic amputation of unspecified hand at wrist level, sequela','Y','0000-00-00 00:00:00'),(149949,10,'S68.429D ','Partial traumatic amputation of unspecified hand at wrist level, subsequent encounter','Y','0000-00-00 00:00:00'),(149947,10,'S68.422S ','Partial traumatic amputation of left hand at wrist level, sequela','Y','0000-00-00 00:00:00'),(149948,10,'S68.429A ','Partial traumatic amputation of unspecified hand at wrist level, initial encounter','Y','0000-00-00 00:00:00'),(149946,10,'S68.422D ','Partial traumatic amputation of left hand at wrist level, subsequent encounter','Y','0000-00-00 00:00:00'),(149945,10,'S68.422A ','Partial traumatic amputation of left hand at wrist level, initial encounter','Y','0000-00-00 00:00:00'),(149944,10,'S68.421S ','Partial traumatic amputation of right hand at wrist level, sequela','Y','0000-00-00 00:00:00'),(149943,10,'S68.421D ','Partial traumatic amputation of right hand at wrist level, subsequent encounter','Y','0000-00-00 00:00:00'),(149942,10,'S68.421A ','Partial traumatic amputation of right hand at wrist level, initial encounter','Y','0000-00-00 00:00:00'),(149941,10,'S68.419S ','Complete traumatic amputation of unspecified hand at wrist level, sequela','Y','0000-00-00 00:00:00'),(149940,10,'S68.419D ','Complete traumatic amputation of unspecified hand at wrist level, subsequent encounter','Y','0000-00-00 00:00:00'),(149939,10,'S68.419A ','Complete traumatic amputation of unspecified hand at wrist level, initial encounter','Y','0000-00-00 00:00:00'),(149938,10,'S68.412S ','Complete traumatic amputation of left hand at wrist level, sequela','Y','0000-00-00 00:00:00'),(149937,10,'S68.412D ','Complete traumatic amputation of left hand at wrist level, subsequent encounter','Y','0000-00-00 00:00:00'),(149935,10,'S68.411S ','Complete traumatic amputation of right hand at wrist level, sequela','Y','0000-00-00 00:00:00'),(149936,10,'S68.412A ','Complete traumatic amputation of left hand at wrist level, initial encounter','Y','0000-00-00 00:00:00'),(149934,10,'S68.411D ','Complete traumatic amputation of right hand at wrist level, subsequent encounter','Y','0000-00-00 00:00:00'),(149933,10,'S68.411A ','Complete traumatic amputation of right hand at wrist level, initial encounter','Y','0000-00-00 00:00:00'),(149932,10,'S68.129S ','Partial traumatic metacarpophalangeal amputation of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(149931,10,'S68.129D ','Partial traumatic metacarpophalangeal amputation of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149929,10,'S68.128S ','Partial traumatic metacarpophalangeal amputation of other finger, sequela','Y','0000-00-00 00:00:00'),(149930,10,'S68.129A ','Partial traumatic metacarpophalangeal amputation of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(149928,10,'S68.128D ','Partial traumatic metacarpophalangeal amputation of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149927,10,'S68.128A ','Partial traumatic metacarpophalangeal amputation of other finger, initial encounter','Y','0000-00-00 00:00:00'),(149926,10,'S68.127S ','Partial traumatic metacarpophalangeal amputation of left little finger, sequela','Y','0000-00-00 00:00:00'),(149925,10,'S68.127D ','Partial traumatic metacarpophalangeal amputation of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149923,10,'S68.126S ','Partial traumatic metacarpophalangeal amputation of right little finger, sequela','Y','0000-00-00 00:00:00'),(149924,10,'S68.127A ','Partial traumatic metacarpophalangeal amputation of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(149922,10,'S68.126D ','Partial traumatic metacarpophalangeal amputation of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149921,10,'S68.126A ','Partial traumatic metacarpophalangeal amputation of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(149920,10,'S68.125S ','Partial traumatic metacarpophalangeal amputation of left ring finger, sequela','Y','0000-00-00 00:00:00'),(149919,10,'S68.125D ','Partial traumatic metacarpophalangeal amputation of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149918,10,'S68.125A ','Partial traumatic metacarpophalangeal amputation of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(149917,10,'S68.124S ','Partial traumatic metacarpophalangeal amputation of right ring finger, sequela','Y','0000-00-00 00:00:00'),(149916,10,'S68.124D ','Partial traumatic metacarpophalangeal amputation of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149915,10,'S68.124A ','Partial traumatic metacarpophalangeal amputation of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(149914,10,'S68.123S ','Partial traumatic metacarpophalangeal amputation of left middle finger, sequela','Y','0000-00-00 00:00:00'),(149913,10,'S68.123D ','Partial traumatic metacarpophalangeal amputation of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149911,10,'S68.122S ','Partial traumatic metacarpophalangeal amputation of right middle finger, sequela','Y','0000-00-00 00:00:00'),(149912,10,'S68.123A ','Partial traumatic metacarpophalangeal amputation of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(149910,10,'S68.122D ','Partial traumatic metacarpophalangeal amputation of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149909,10,'S68.122A ','Partial traumatic metacarpophalangeal amputation of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(149908,10,'S68.121S ','Partial traumatic metacarpophalangeal amputation of left index finger, sequela','Y','0000-00-00 00:00:00'),(149907,10,'S68.121D ','Partial traumatic metacarpophalangeal amputation of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149905,10,'S68.120S ','Partial traumatic metacarpophalangeal amputation of right index finger, sequela','Y','0000-00-00 00:00:00'),(149906,10,'S68.121A ','Partial traumatic metacarpophalangeal amputation of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(149904,10,'S68.120D ','Partial traumatic metacarpophalangeal amputation of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149903,10,'S68.120A ','Partial traumatic metacarpophalangeal amputation of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(149902,10,'S68.119S ','Complete traumatic metacarpophalangeal amputation of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(149901,10,'S68.119D ','Complete traumatic metacarpophalangeal amputation of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149900,10,'S68.119A ','Complete traumatic metacarpophalangeal amputation of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(149899,10,'S68.118S ','Complete traumatic metacarpophalangeal amputation of other finger, sequela','Y','0000-00-00 00:00:00'),(149898,10,'S68.118D ','Complete traumatic metacarpophalangeal amputation of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149897,10,'S68.118A ','Complete traumatic metacarpophalangeal amputation of other finger, initial encounter','Y','0000-00-00 00:00:00'),(149896,10,'S68.117S ','Complete traumatic metacarpophalangeal amputation of left little finger, sequela','Y','0000-00-00 00:00:00'),(149895,10,'S68.117D ','Complete traumatic metacarpophalangeal amputation of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149894,10,'S68.117A ','Complete traumatic metacarpophalangeal amputation of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(149893,10,'S68.116S ','Complete traumatic metacarpophalangeal amputation of right little finger, sequela','Y','0000-00-00 00:00:00'),(149892,10,'S68.116D ','Complete traumatic metacarpophalangeal amputation of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149891,10,'S68.116A ','Complete traumatic metacarpophalangeal amputation of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(149890,10,'S68.115S ','Complete traumatic metacarpophalangeal amputation of left ring finger, sequela','Y','0000-00-00 00:00:00'),(149889,10,'S68.115D ','Complete traumatic metacarpophalangeal amputation of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149888,10,'S68.115A ','Complete traumatic metacarpophalangeal amputation of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(149887,10,'S68.114S ','Complete traumatic metacarpophalangeal amputation of right ring finger, sequela','Y','0000-00-00 00:00:00'),(149886,10,'S68.114D ','Complete traumatic metacarpophalangeal amputation of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149885,10,'S68.114A ','Complete traumatic metacarpophalangeal amputation of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(149884,10,'S68.113S ','Complete traumatic metacarpophalangeal amputation of left middle finger, sequela','Y','0000-00-00 00:00:00'),(149883,10,'S68.113D ','Complete traumatic metacarpophalangeal amputation of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149882,10,'S68.113A ','Complete traumatic metacarpophalangeal amputation of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(149881,10,'S68.112S ','Complete traumatic metacarpophalangeal amputation of right middle finger, sequela','Y','0000-00-00 00:00:00'),(149880,10,'S68.112D ','Complete traumatic metacarpophalangeal amputation of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149879,10,'S68.112A ','Complete traumatic metacarpophalangeal amputation of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(149878,10,'S68.111S ','Complete traumatic metacarpophalangeal amputation of left index finger, sequela','Y','0000-00-00 00:00:00'),(149877,10,'S68.111D ','Complete traumatic metacarpophalangeal amputation of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149876,10,'S68.111A ','Complete traumatic metacarpophalangeal amputation of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(149875,10,'S68.110S ','Complete traumatic metacarpophalangeal amputation of right index finger, sequela','Y','0000-00-00 00:00:00'),(149874,10,'S68.110D ','Complete traumatic metacarpophalangeal amputation of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149873,10,'S68.110A ','Complete traumatic metacarpophalangeal amputation of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(149872,10,'S68.029S ','Partial traumatic metacarpophalangeal amputation of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(149871,10,'S68.029D ','Partial traumatic metacarpophalangeal amputation of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149869,10,'S68.022S ','Partial traumatic metacarpophalangeal amputation of left thumb, sequela','Y','0000-00-00 00:00:00'),(149870,10,'S68.029A ','Partial traumatic metacarpophalangeal amputation of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(149868,10,'S68.022D ','Partial traumatic metacarpophalangeal amputation of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149867,10,'S68.022A ','Partial traumatic metacarpophalangeal amputation of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(149866,10,'S68.021S ','Partial traumatic metacarpophalangeal amputation of right thumb, sequela','Y','0000-00-00 00:00:00'),(149865,10,'S68.021D ','Partial traumatic metacarpophalangeal amputation of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149864,10,'S68.021A ','Partial traumatic metacarpophalangeal amputation of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(149863,10,'S68.019S ','Complete traumatic metacarpophalangeal amputation of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(149862,10,'S68.019D ','Complete traumatic metacarpophalangeal amputation of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149861,10,'S68.019A ','Complete traumatic metacarpophalangeal amputation of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(149860,10,'S68.012S ','Complete traumatic metacarpophalangeal amputation of left thumb, sequela','Y','0000-00-00 00:00:00'),(149859,10,'S68.012D ','Complete traumatic metacarpophalangeal amputation of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149858,10,'S68.012A ','Complete traumatic metacarpophalangeal amputation of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(149857,10,'S68.011S ','Complete traumatic metacarpophalangeal amputation of right thumb, sequela','Y','0000-00-00 00:00:00'),(149856,10,'S68.011D ','Complete traumatic metacarpophalangeal amputation of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149855,10,'S68.011A ','Complete traumatic metacarpophalangeal amputation of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(149854,10,'S67.92XS ','Crushing injury of unspecified part(s) of left wrist, hand and fingers, sequela','Y','0000-00-00 00:00:00'),(149853,10,'S67.92XD ','Crushing injury of unspecified part(s) of left wrist, hand and fingers, subsequent encounter','Y','0000-00-00 00:00:00'),(149852,10,'S67.92XA ','Crushing injury of unspecified part(s) of left wrist, hand and fingers, initial encounter','Y','0000-00-00 00:00:00'),(149851,10,'S67.91XS ','Crushing injury of unspecified part(s) of right wrist, hand and fingers, sequela','Y','0000-00-00 00:00:00'),(149850,10,'S67.91XD ','Crushing injury of unspecified part(s) of right wrist, hand and fingers, subsequent encounter','Y','0000-00-00 00:00:00'),(149849,10,'S67.91XA ','Crushing injury of unspecified part(s) of right wrist, hand and fingers, initial encounter','Y','0000-00-00 00:00:00'),(149848,10,'S67.90XS ','Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers, sequela','Y','0000-00-00 00:00:00'),(149847,10,'S67.90XD ','Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers, subsequent encounter','Y','0000-00-00 00:00:00'),(149846,10,'S67.90XA ','Crushing injury of unspecified part(s) of unspecified wrist, hand and fingers, initial encounter','Y','0000-00-00 00:00:00'),(149845,10,'S67.42XS ','Crushing injury of left wrist and hand, sequela','Y','0000-00-00 00:00:00'),(149844,10,'S67.42XD ','Crushing injury of left wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149843,10,'S67.42XA ','Crushing injury of left wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(149841,10,'S67.41XD ','Crushing injury of right wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149842,10,'S67.41XS ','Crushing injury of right wrist and hand, sequela','Y','0000-00-00 00:00:00'),(149840,10,'S67.41XA ','Crushing injury of right wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(149839,10,'S67.40XS ','Crushing injury of unspecified wrist and hand, sequela','Y','0000-00-00 00:00:00'),(149838,10,'S67.40XD ','Crushing injury of unspecified wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149837,10,'S67.40XA ','Crushing injury of unspecified wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(149836,10,'S67.32XS ','Crushing injury of left wrist, sequela','Y','0000-00-00 00:00:00'),(149835,10,'S67.32XD ','Crushing injury of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(149834,10,'S67.32XA ','Crushing injury of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(149833,10,'S67.31XS ','Crushing injury of right wrist, sequela','Y','0000-00-00 00:00:00'),(149832,10,'S67.31XD ','Crushing injury of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(149831,10,'S67.31XA ','Crushing injury of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(149830,10,'S67.30XS ','Crushing injury of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(149829,10,'S67.30XD ','Crushing injury of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(149828,10,'S67.30XA ','Crushing injury of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(149827,10,'S67.22XS ','Crushing injury of left hand, sequela','Y','0000-00-00 00:00:00'),(149826,10,'S67.22XD ','Crushing injury of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149825,10,'S67.22XA ','Crushing injury of left hand, initial encounter','Y','0000-00-00 00:00:00'),(149824,10,'S67.21XS ','Crushing injury of right hand, sequela','Y','0000-00-00 00:00:00'),(149823,10,'S67.21XD ','Crushing injury of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149822,10,'S67.21XA ','Crushing injury of right hand, initial encounter','Y','0000-00-00 00:00:00'),(149821,10,'S67.20XS ','Crushing injury of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(149820,10,'S67.20XD ','Crushing injury of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149819,10,'S67.20XA ','Crushing injury of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(149818,10,'S67.198S ','Crushing injury of other finger, sequela','Y','0000-00-00 00:00:00'),(149817,10,'S67.198D ','Crushing injury of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149816,10,'S67.198A ','Crushing injury of other finger, initial encounter','Y','0000-00-00 00:00:00'),(149815,10,'S67.197S ','Crushing injury of left little finger, sequela','Y','0000-00-00 00:00:00'),(149814,10,'S67.197D ','Crushing injury of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149813,10,'S67.197A ','Crushing injury of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(149812,10,'S67.196S ','Crushing injury of right little finger, sequela','Y','0000-00-00 00:00:00'),(149811,10,'S67.196D ','Crushing injury of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149810,10,'S67.196A ','Crushing injury of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(149809,10,'S67.195S ','Crushing injury of left ring finger, sequela','Y','0000-00-00 00:00:00'),(149808,10,'S67.195D ','Crushing injury of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149807,10,'S67.195A ','Crushing injury of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(149806,10,'S67.194S ','Crushing injury of right ring finger, sequela','Y','0000-00-00 00:00:00'),(149805,10,'S67.194D ','Crushing injury of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149804,10,'S67.194A ','Crushing injury of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(149803,10,'S67.193S ','Crushing injury of left middle finger, sequela','Y','0000-00-00 00:00:00'),(149802,10,'S67.193D ','Crushing injury of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149801,10,'S67.193A ','Crushing injury of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(149800,10,'S67.192S ','Crushing injury of right middle finger, sequela','Y','0000-00-00 00:00:00'),(149799,10,'S67.192D ','Crushing injury of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149798,10,'S67.192A ','Crushing injury of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(149797,10,'S67.191S ','Crushing injury of left index finger, sequela','Y','0000-00-00 00:00:00'),(149796,10,'S67.191D ','Crushing injury of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149795,10,'S67.191A ','Crushing injury of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(149794,10,'S67.190S ','Crushing injury of right index finger, sequela','Y','0000-00-00 00:00:00'),(149793,10,'S67.190D ','Crushing injury of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149792,10,'S67.190A ','Crushing injury of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(149791,10,'S67.10XS ','Crushing injury of unspecified finger(s), sequela','Y','0000-00-00 00:00:00'),(149790,10,'S67.10XD ','Crushing injury of unspecified finger(s), subsequent encounter','Y','0000-00-00 00:00:00'),(149789,10,'S67.10XA ','Crushing injury of unspecified finger(s), initial encounter','Y','0000-00-00 00:00:00'),(149788,10,'S67.02XS ','Crushing injury of left thumb, sequela','Y','0000-00-00 00:00:00'),(149787,10,'S67.02XD ','Crushing injury of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149786,10,'S67.02XA ','Crushing injury of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(149785,10,'S67.01XS ','Crushing injury of right thumb, sequela','Y','0000-00-00 00:00:00'),(149784,10,'S67.01XD ','Crushing injury of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149783,10,'S67.01XA ','Crushing injury of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(149782,10,'S67.00XS ','Crushing injury of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(149781,10,'S67.00XD ','Crushing injury of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149780,10,'S67.00XA ','Crushing injury of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(149779,10,'S66.999S ','Other injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(149778,10,'S66.999D ','Other injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149777,10,'S66.999A ','Other injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(149776,10,'S66.992S ','Other injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, sequela','Y','0000-00-00 00:00:00'),(149775,10,'S66.992D ','Other injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149774,10,'S66.992A ','Other injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, initial encounter','Y','0000-00-00 00:00:00'),(149773,10,'S66.991S ','Other injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, sequela','Y','0000-00-00 00:00:00'),(149772,10,'S66.991D ','Other injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149771,10,'S66.991A ','Other injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, initial encounter','Y','0000-00-00 00:00:00'),(149770,10,'S66.929S ','Laceration of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(149769,10,'S66.929D ','Laceration of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149768,10,'S66.929A ','Laceration of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(149767,10,'S66.922S ','Laceration of unspecified muscle, fascia and tendon at wrist and hand level, left hand, sequela','Y','0000-00-00 00:00:00'),(149766,10,'S66.922D ','Laceration of unspecified muscle, fascia and tendon at wrist and hand level, left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149765,10,'S66.922A ','Laceration of unspecified muscle, fascia and tendon at wrist and hand level, left hand, initial encounter','Y','0000-00-00 00:00:00'),(149764,10,'S66.921S ','Laceration of unspecified muscle, fascia and tendon at wrist and hand level, right hand, sequela','Y','0000-00-00 00:00:00'),(149763,10,'S66.921D ','Laceration of unspecified muscle, fascia and tendon at wrist and hand level, right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149762,10,'S66.921A ','Laceration of unspecified muscle, fascia and tendon at wrist and hand level, right hand, initial encounter','Y','0000-00-00 00:00:00'),(149761,10,'S66.919S ','Strain of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(149760,10,'S66.919D ','Strain of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149759,10,'S66.919A ','Strain of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(149758,10,'S66.912S ','Strain of unspecified muscle, fascia and tendon at wrist and hand level, left hand, sequela','Y','0000-00-00 00:00:00'),(149757,10,'S66.912D ','Strain of unspecified muscle, fascia and tendon at wrist and hand level, left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149756,10,'S66.912A ','Strain of unspecified muscle, fascia and tendon at wrist and hand level, left hand, initial encounter','Y','0000-00-00 00:00:00'),(149755,10,'S66.911S ','Strain of unspecified muscle, fascia and tendon at wrist and hand level, right hand, sequela','Y','0000-00-00 00:00:00'),(149754,10,'S66.911D ','Strain of unspecified muscle, fascia and tendon at wrist and hand level, right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149753,10,'S66.911A ','Strain of unspecified muscle, fascia and tendon at wrist and hand level, right hand, initial encounter','Y','0000-00-00 00:00:00'),(149752,10,'S66.909S ','Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(149751,10,'S66.909D ','Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149750,10,'S66.909A ','Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(149749,10,'S66.902S ','Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, sequela','Y','0000-00-00 00:00:00'),(149748,10,'S66.902D ','Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149747,10,'S66.902A ','Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, left hand, initial encounter','Y','0000-00-00 00:00:00'),(149746,10,'S66.901S ','Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, sequela','Y','0000-00-00 00:00:00'),(149745,10,'S66.901D ','Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149744,10,'S66.901A ','Unspecified injury of unspecified muscle, fascia and tendon at wrist and hand level, right hand, initial encounter','Y','0000-00-00 00:00:00'),(149743,10,'S66.899S ','Other injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(149742,10,'S66.899D ','Other injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149741,10,'S66.899A ','Other injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(149740,10,'S66.892S ','Other injury of other specified muscles, fascia and tendons at wrist and hand level, left hand, sequela','Y','0000-00-00 00:00:00'),(149739,10,'S66.892D ','Other injury of other specified muscles, fascia and tendons at wrist and hand level, left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149738,10,'S66.892A ','Other injury of other specified muscles, fascia and tendons at wrist and hand level, left hand, initial encounter','Y','0000-00-00 00:00:00'),(149737,10,'S66.891S ','Other injury of other specified muscles, fascia and tendons at wrist and hand level, right hand, sequela','Y','0000-00-00 00:00:00'),(149736,10,'S66.891D ','Other injury of other specified muscles, fascia and tendons at wrist and hand level, right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149735,10,'S66.891A ','Other injury of other specified muscles, fascia and tendons at wrist and hand level, right hand, initial encounter','Y','0000-00-00 00:00:00'),(149734,10,'S66.829S ','Laceration of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(149733,10,'S66.829D ','Laceration of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149732,10,'S66.829A ','Laceration of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(149731,10,'S66.822S ','Laceration of other specified muscles, fascia and tendons at wrist and hand level, left hand, sequela','Y','0000-00-00 00:00:00'),(149730,10,'S66.822D ','Laceration of other specified muscles, fascia and tendons at wrist and hand level, left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149729,10,'S66.822A ','Laceration of other specified muscles, fascia and tendons at wrist and hand level, left hand, initial encounter','Y','0000-00-00 00:00:00'),(149728,10,'S66.821S ','Laceration of other specified muscles, fascia and tendons at wrist and hand level, right hand, sequela','Y','0000-00-00 00:00:00'),(149727,10,'S66.821D ','Laceration of other specified muscles, fascia and tendons at wrist and hand level, right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149726,10,'S66.821A ','Laceration of other specified muscles, fascia and tendons at wrist and hand level, right hand, initial encounter','Y','0000-00-00 00:00:00'),(149725,10,'S66.819S ','Strain of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(149724,10,'S66.819D ','Strain of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149723,10,'S66.819A ','Strain of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(149722,10,'S66.812S ','Strain of other specified muscles, fascia and tendons at wrist and hand level, left hand, sequela','Y','0000-00-00 00:00:00'),(149721,10,'S66.812D ','Strain of other specified muscles, fascia and tendons at wrist and hand level, left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149720,10,'S66.812A ','Strain of other specified muscles, fascia and tendons at wrist and hand level, left hand, initial encounter','Y','0000-00-00 00:00:00'),(149719,10,'S66.811S ','Strain of other specified muscles, fascia and tendons at wrist and hand level, right hand, sequela','Y','0000-00-00 00:00:00'),(149718,10,'S66.811D ','Strain of other specified muscles, fascia and tendons at wrist and hand level, right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149717,10,'S66.811A ','Strain of other specified muscles, fascia and tendons at wrist and hand level, right hand, initial encounter','Y','0000-00-00 00:00:00'),(149716,10,'S66.809S ','Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(149715,10,'S66.809D ','Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149714,10,'S66.809A ','Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(149713,10,'S66.802S ','Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, left hand, sequela','Y','0000-00-00 00:00:00'),(149712,10,'S66.802D ','Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149711,10,'S66.802A ','Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, left hand, initial encounter','Y','0000-00-00 00:00:00'),(149710,10,'S66.801S ','Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, right hand, sequela','Y','0000-00-00 00:00:00'),(149709,10,'S66.801D ','Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149708,10,'S66.801A ','Unspecified injury of other specified muscles, fascia and tendons at wrist and hand level, right hand, initial encounter','Y','0000-00-00 00:00:00'),(149707,10,'S66.599S ','Other injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149706,10,'S66.599D ','Other injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149705,10,'S66.599A ','Other injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149704,10,'S66.598S ','Other injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149703,10,'S66.598D ','Other injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149702,10,'S66.598A ','Other injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149701,10,'S66.597S ','Other injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149700,10,'S66.597D ','Other injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149699,10,'S66.597A ','Other injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149698,10,'S66.596S ','Other injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149697,10,'S66.596D ','Other injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149696,10,'S66.596A ','Other injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149695,10,'S66.595S ','Other injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149694,10,'S66.595D ','Other injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149693,10,'S66.595A ','Other injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149692,10,'S66.594S ','Other injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149691,10,'S66.594D ','Other injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149690,10,'S66.594A ','Other injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149689,10,'S66.593S ','Other injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149688,10,'S66.593D ','Other injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149687,10,'S66.593A ','Other injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149686,10,'S66.592S ','Other injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149685,10,'S66.592D ','Other injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149684,10,'S66.592A ','Other injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149683,10,'S66.591S ','Other injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149682,10,'S66.591D ','Other injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149681,10,'S66.591A ','Other injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149680,10,'S66.590S ','Other injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149679,10,'S66.590D ','Other injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149678,10,'S66.590A ','Other injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149677,10,'S66.529S ','Laceration of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149676,10,'S66.529D ','Laceration of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149675,10,'S66.529A ','Laceration of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149674,10,'S66.528S ','Laceration of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149673,10,'S66.528D ','Laceration of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149672,10,'S66.528A ','Laceration of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149671,10,'S66.527S ','Laceration of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149670,10,'S66.527D ','Laceration of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149669,10,'S66.527A ','Laceration of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149668,10,'S66.526S ','Laceration of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149667,10,'S66.526D ','Laceration of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149666,10,'S66.526A ','Laceration of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149665,10,'S66.525S ','Laceration of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149664,10,'S66.525D ','Laceration of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149663,10,'S66.525A ','Laceration of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149662,10,'S66.524S ','Laceration of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149661,10,'S66.524D ','Laceration of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149660,10,'S66.524A ','Laceration of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149659,10,'S66.523S ','Laceration of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149658,10,'S66.523D ','Laceration of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149657,10,'S66.523A ','Laceration of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149656,10,'S66.522S ','Laceration of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149655,10,'S66.522D ','Laceration of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149654,10,'S66.522A ','Laceration of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149653,10,'S66.521S ','Laceration of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149652,10,'S66.521D ','Laceration of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149651,10,'S66.521A ','Laceration of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149650,10,'S66.520S ','Laceration of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149649,10,'S66.520D ','Laceration of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149648,10,'S66.520A ','Laceration of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149647,10,'S66.519S ','Strain of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149646,10,'S66.519D ','Strain of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149645,10,'S66.519A ','Strain of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149644,10,'S66.518S ','Strain of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149643,10,'S66.518D ','Strain of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149642,10,'S66.518A ','Strain of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149641,10,'S66.517S ','Strain of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149640,10,'S66.517D ','Strain of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149639,10,'S66.517A ','Strain of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149638,10,'S66.516S ','Strain of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149637,10,'S66.516D ','Strain of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149636,10,'S66.516A ','Strain of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149635,10,'S66.515S ','Strain of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149634,10,'S66.515D ','Strain of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149633,10,'S66.515A ','Strain of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149632,10,'S66.514S ','Strain of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149631,10,'S66.514D ','Strain of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149630,10,'S66.514A ','Strain of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149629,10,'S66.513S ','Strain of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149628,10,'S66.513D ','Strain of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149627,10,'S66.513A ','Strain of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149626,10,'S66.512S ','Strain of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149625,10,'S66.512D ','Strain of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149624,10,'S66.512A ','Strain of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149623,10,'S66.511S ','Strain of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149622,10,'S66.511D ','Strain of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149621,10,'S66.511A ','Strain of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149620,10,'S66.510S ','Strain of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149619,10,'S66.510D ','Strain of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149618,10,'S66.510A ','Strain of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149617,10,'S66.509S ','Unspecified injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149616,10,'S66.509D ','Unspecified injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149615,10,'S66.509A ','Unspecified injury of intrinsic muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149614,10,'S66.508S ','Unspecified injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149613,10,'S66.508D ','Unspecified injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149612,10,'S66.508A ','Unspecified injury of intrinsic muscle, fascia and tendon of other finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149611,10,'S66.507S ','Unspecified injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149610,10,'S66.507D ','Unspecified injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149609,10,'S66.507A ','Unspecified injury of intrinsic muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149608,10,'S66.506S ','Unspecified injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149607,10,'S66.506D ','Unspecified injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149606,10,'S66.506A ','Unspecified injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149605,10,'S66.505S ','Unspecified injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149604,10,'S66.505D ','Unspecified injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149603,10,'S66.505A ','Unspecified injury of intrinsic muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149602,10,'S66.504S ','Unspecified injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149601,10,'S66.504D ','Unspecified injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149600,10,'S66.504A ','Unspecified injury of intrinsic muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149599,10,'S66.503S ','Unspecified injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149598,10,'S66.503D ','Unspecified injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149597,10,'S66.503A ','Unspecified injury of intrinsic muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149596,10,'S66.502S ','Unspecified injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149595,10,'S66.502D ','Unspecified injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149594,10,'S66.502A ','Unspecified injury of intrinsic muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149593,10,'S66.501S ','Unspecified injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149592,10,'S66.501D ','Unspecified injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149591,10,'S66.501A ','Unspecified injury of intrinsic muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149590,10,'S66.500S ','Unspecified injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149589,10,'S66.500D ','Unspecified injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149588,10,'S66.500A ','Unspecified injury of intrinsic muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149587,10,'S66.499S ','Other specified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149586,10,'S66.499D ','Other specified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149585,10,'S66.499A ','Other specified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149584,10,'S66.492S ','Other specified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149583,10,'S66.492D ','Other specified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149582,10,'S66.492A ','Other specified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149581,10,'S66.491S ','Other specified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149580,10,'S66.491D ','Other specified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149579,10,'S66.491A ','Other specified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149578,10,'S66.429S ','Laceration of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149577,10,'S66.429D ','Laceration of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149576,10,'S66.429A ','Laceration of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149575,10,'S66.422S ','Laceration of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149574,10,'S66.422D ','Laceration of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149573,10,'S66.422A ','Laceration of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149572,10,'S66.421S ','Laceration of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149571,10,'S66.421D ','Laceration of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149570,10,'S66.421A ','Laceration of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149569,10,'S66.419S ','Strain of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149568,10,'S66.419D ','Strain of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149567,10,'S66.419A ','Strain of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149566,10,'S66.412S ','Strain of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149565,10,'S66.412D ','Strain of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149564,10,'S66.412A ','Strain of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149563,10,'S66.411S ','Strain of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149562,10,'S66.411D ','Strain of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149561,10,'S66.411A ','Strain of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149560,10,'S66.409S ','Unspecified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149559,10,'S66.409D ','Unspecified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149558,10,'S66.409A ','Unspecified injury of intrinsic muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149557,10,'S66.402S ','Unspecified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149556,10,'S66.402D ','Unspecified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149555,10,'S66.402A ','Unspecified injury of intrinsic muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149554,10,'S66.401S ','Unspecified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149553,10,'S66.401D ','Unspecified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149552,10,'S66.401A ','Unspecified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149551,10,'S66.399S ','Other injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149550,10,'S66.399D ','Other injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149549,10,'S66.399A ','Other injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149548,10,'S66.398S ','Other injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149547,10,'S66.398D ','Other injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149546,10,'S66.398A ','Other injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149545,10,'S66.397S ','Other injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149544,10,'S66.397D ','Other injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149543,10,'S66.397A ','Other injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149542,10,'S66.396S ','Other injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149541,10,'S66.396D ','Other injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149540,10,'S66.396A ','Other injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149539,10,'S66.395S ','Other injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149538,10,'S66.395D ','Other injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149537,10,'S66.395A ','Other injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149536,10,'S66.394S ','Other injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149535,10,'S66.394D ','Other injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149534,10,'S66.394A ','Other injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149533,10,'S66.393S ','Other injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149532,10,'S66.393D ','Other injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149531,10,'S66.393A ','Other injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149530,10,'S66.392S ','Other injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149529,10,'S66.392D ','Other injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149528,10,'S66.392A ','Other injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149527,10,'S66.391S ','Other injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149526,10,'S66.391D ','Other injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149525,10,'S66.391A ','Other injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149524,10,'S66.390S ','Other injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149523,10,'S66.390D ','Other injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149522,10,'S66.390A ','Other injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149521,10,'S66.329S ','Laceration of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149520,10,'S66.329D ','Laceration of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149519,10,'S66.329A ','Laceration of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149518,10,'S66.328S ','Laceration of extensor muscle, fascia and tendon of other finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149517,10,'S66.328D ','Laceration of extensor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149516,10,'S66.328A ','Laceration of extensor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149515,10,'S66.327S ','Laceration of extensor muscle, fascia and tendon of left little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149514,10,'S66.327D ','Laceration of extensor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149513,10,'S66.327A ','Laceration of extensor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149512,10,'S66.326S ','Laceration of extensor muscle, fascia and tendon of right little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149511,10,'S66.326D ','Laceration of extensor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149510,10,'S66.326A ','Laceration of extensor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149509,10,'S66.325S ','Laceration of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149508,10,'S66.325D ','Laceration of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149507,10,'S66.325A ','Laceration of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149506,10,'S66.324S ','Laceration of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149505,10,'S66.324D ','Laceration of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149504,10,'S66.324A ','Laceration of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149503,10,'S66.323S ','Laceration of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149502,10,'S66.323D ','Laceration of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149501,10,'S66.323A ','Laceration of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149500,10,'S66.322S ','Laceration of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149499,10,'S66.322D ','Laceration of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149498,10,'S66.322A ','Laceration of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149497,10,'S66.321S ','Laceration of extensor muscle, fascia and tendon of left index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149496,10,'S66.321D ','Laceration of extensor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149495,10,'S66.321A ','Laceration of extensor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149494,10,'S66.320S ','Laceration of extensor muscle, fascia and tendon of right index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149493,10,'S66.320D ','Laceration of extensor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149492,10,'S66.320A ','Laceration of extensor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149491,10,'S66.319S ','Strain of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149490,10,'S66.319D ','Strain of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149489,10,'S66.319A ','Strain of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149488,10,'S66.318S ','Strain of extensor muscle, fascia and tendon of other finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149487,10,'S66.318D ','Strain of extensor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149486,10,'S66.318A ','Strain of extensor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149485,10,'S66.317S ','Strain of extensor muscle, fascia and tendon of left little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149484,10,'S66.317D ','Strain of extensor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149483,10,'S66.317A ','Strain of extensor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149482,10,'S66.316S ','Strain of extensor muscle, fascia and tendon of right little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149481,10,'S66.316D ','Strain of extensor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149480,10,'S66.316A ','Strain of extensor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149479,10,'S66.315S ','Strain of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149478,10,'S66.315D ','Strain of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149477,10,'S66.315A ','Strain of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149476,10,'S66.314S ','Strain of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149475,10,'S66.314D ','Strain of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149474,10,'S66.314A ','Strain of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149473,10,'S66.313S ','Strain of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149472,10,'S66.313D ','Strain of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149471,10,'S66.313A ','Strain of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149470,10,'S66.312S ','Strain of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149469,10,'S66.312D ','Strain of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149468,10,'S66.312A ','Strain of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149467,10,'S66.311S ','Strain of extensor muscle, fascia and tendon of left index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149466,10,'S66.311D ','Strain of extensor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149465,10,'S66.311A ','Strain of extensor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149464,10,'S66.310S ','Strain of extensor muscle, fascia and tendon of right index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149463,10,'S66.310D ','Strain of extensor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149462,10,'S66.310A ','Strain of extensor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149461,10,'S66.309S ','Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149460,10,'S66.309D ','Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149459,10,'S66.309A ','Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149458,10,'S66.308S ','Unspecified injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149457,10,'S66.308D ','Unspecified injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149456,10,'S66.308A ','Unspecified injury of extensor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149455,10,'S66.307S ','Unspecified injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149454,10,'S66.307D ','Unspecified injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149453,10,'S66.307A ','Unspecified injury of extensor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149452,10,'S66.306S ','Unspecified injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149451,10,'S66.306D ','Unspecified injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149450,10,'S66.306A ','Unspecified injury of extensor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149449,10,'S66.305S ','Unspecified injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149448,10,'S66.305D ','Unspecified injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149447,10,'S66.305A ','Unspecified injury of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149446,10,'S66.304S ','Unspecified injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149445,10,'S66.304D ','Unspecified injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149444,10,'S66.304A ','Unspecified injury of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149443,10,'S66.303S ','Unspecified injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149442,10,'S66.303D ','Unspecified injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149441,10,'S66.303A ','Unspecified injury of extensor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149440,10,'S66.302S ','Unspecified injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149439,10,'S66.302D ','Unspecified injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149438,10,'S66.302A ','Unspecified injury of extensor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149437,10,'S66.301S ','Unspecified injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149436,10,'S66.301D ','Unspecified injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149435,10,'S66.301A ','Unspecified injury of extensor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149434,10,'S66.300S ','Unspecified injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149433,10,'S66.300D ','Unspecified injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149432,10,'S66.300A ','Unspecified injury of extensor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149431,10,'S66.299S ','Other specified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149430,10,'S66.299D ','Other specified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149429,10,'S66.299A ','Other specified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149428,10,'S66.292S ','Other specified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149427,10,'S66.292D ','Other specified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149426,10,'S66.292A ','Other specified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149425,10,'S66.291S ','Other specified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149424,10,'S66.291D ','Other specified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149423,10,'S66.291A ','Other specified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149422,10,'S66.229S ','Laceration of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149421,10,'S66.229D ','Laceration of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149420,10,'S66.229A ','Laceration of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149419,10,'S66.222S ','Laceration of extensor muscle, fascia and tendon of left thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149418,10,'S66.222D ','Laceration of extensor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149417,10,'S66.222A ','Laceration of extensor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149416,10,'S66.221S ','Laceration of extensor muscle, fascia and tendon of right thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149415,10,'S66.221D ','Laceration of extensor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149414,10,'S66.221A ','Laceration of extensor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149413,10,'S66.219S ','Strain of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149412,10,'S66.219D ','Strain of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149411,10,'S66.219A ','Strain of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149410,10,'S66.212S ','Strain of extensor muscle, fascia and tendon of left thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149409,10,'S66.212D ','Strain of extensor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149408,10,'S66.212A ','Strain of extensor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149407,10,'S66.211S ','Strain of extensor muscle, fascia and tendon of right thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149406,10,'S66.211D ','Strain of extensor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149405,10,'S66.211A ','Strain of extensor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149404,10,'S66.209S ','Unspecified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149403,10,'S66.209D ','Unspecified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149402,10,'S66.209A ','Unspecified injury of extensor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149401,10,'S66.202S ','Unspecified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149400,10,'S66.202D ','Unspecified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149399,10,'S66.202A ','Unspecified injury of extensor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149398,10,'S66.201S ','Unspecified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149397,10,'S66.201D ','Unspecified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149396,10,'S66.201A ','Unspecified injury of extensor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149395,10,'S66.199S ','Other injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149394,10,'S66.199D ','Other injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149393,10,'S66.199A ','Other injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149392,10,'S66.198S ','Other injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149391,10,'S66.198D ','Other injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149390,10,'S66.198A ','Other injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149389,10,'S66.197S ','Other injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149388,10,'S66.197D ','Other injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149387,10,'S66.197A ','Other injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149386,10,'S66.196S ','Other injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149385,10,'S66.196D ','Other injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149384,10,'S66.196A ','Other injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149383,10,'S66.195S ','Other injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149382,10,'S66.195D ','Other injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149381,10,'S66.195A ','Other injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149380,10,'S66.194S ','Other injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149379,10,'S66.194D ','Other injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149378,10,'S66.194A ','Other injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149377,10,'S66.193S ','Other injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149376,10,'S66.193D ','Other injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149375,10,'S66.193A ','Other injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149374,10,'S66.192S ','Other injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149373,10,'S66.192D ','Other injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149372,10,'S66.192A ','Other injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149371,10,'S66.191S ','Other injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149370,10,'S66.191D ','Other injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149369,10,'S66.191A ','Other injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149368,10,'S66.190S ','Other injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149367,10,'S66.190D ','Other injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149366,10,'S66.190A ','Other injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149365,10,'S66.129S ','Laceration of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149364,10,'S66.129D ','Laceration of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149363,10,'S66.129A ','Laceration of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149362,10,'S66.128S ','Laceration of flexor muscle, fascia and tendon of other finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149361,10,'S66.128D ','Laceration of flexor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149360,10,'S66.128A ','Laceration of flexor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149359,10,'S66.127S ','Laceration of flexor muscle, fascia and tendon of left little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149358,10,'S66.127D ','Laceration of flexor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149357,10,'S66.127A ','Laceration of flexor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149356,10,'S66.126S ','Laceration of flexor muscle, fascia and tendon of right little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149355,10,'S66.126D ','Laceration of flexor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149354,10,'S66.126A ','Laceration of flexor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149353,10,'S66.125S ','Laceration of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149352,10,'S66.125D ','Laceration of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149351,10,'S66.125A ','Laceration of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149350,10,'S66.124S ','Laceration of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149349,10,'S66.124D ','Laceration of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149348,10,'S66.124A ','Laceration of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149347,10,'S66.123S ','Laceration of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149346,10,'S66.123D ','Laceration of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149345,10,'S66.123A ','Laceration of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149344,10,'S66.122S ','Laceration of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149343,10,'S66.122D ','Laceration of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149342,10,'S66.122A ','Laceration of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149341,10,'S66.121S ','Laceration of flexor muscle, fascia and tendon of left index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149340,10,'S66.121D ','Laceration of flexor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149339,10,'S66.121A ','Laceration of flexor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149338,10,'S66.120S ','Laceration of flexor muscle, fascia and tendon of right index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149337,10,'S66.120D ','Laceration of flexor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149336,10,'S66.120A ','Laceration of flexor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149335,10,'S66.119S ','Strain of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149334,10,'S66.119D ','Strain of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149333,10,'S66.119A ','Strain of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149332,10,'S66.118S ','Strain of flexor muscle, fascia and tendon of other finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149331,10,'S66.118D ','Strain of flexor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149330,10,'S66.118A ','Strain of flexor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149329,10,'S66.117S ','Strain of flexor muscle, fascia and tendon of left little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149328,10,'S66.117D ','Strain of flexor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149327,10,'S66.117A ','Strain of flexor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149326,10,'S66.116S ','Strain of flexor muscle, fascia and tendon of right little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149325,10,'S66.116D ','Strain of flexor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149324,10,'S66.116A ','Strain of flexor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149323,10,'S66.115S ','Strain of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149322,10,'S66.115D ','Strain of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149321,10,'S66.115A ','Strain of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149320,10,'S66.114S ','Strain of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149319,10,'S66.114D ','Strain of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149318,10,'S66.114A ','Strain of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149317,10,'S66.113S ','Strain of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149316,10,'S66.113D ','Strain of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149315,10,'S66.113A ','Strain of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149314,10,'S66.112S ','Strain of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149313,10,'S66.112D ','Strain of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149312,10,'S66.112A ','Strain of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149311,10,'S66.111S ','Strain of flexor muscle, fascia and tendon of left index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149310,10,'S66.111D ','Strain of flexor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149309,10,'S66.111A ','Strain of flexor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149308,10,'S66.110S ','Strain of flexor muscle, fascia and tendon of right index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149307,10,'S66.110D ','Strain of flexor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149306,10,'S66.110A ','Strain of flexor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149305,10,'S66.109S ','Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149304,10,'S66.109D ','Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149303,10,'S66.109A ','Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149302,10,'S66.108S ','Unspecified injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149301,10,'S66.108D ','Unspecified injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149300,10,'S66.108A ','Unspecified injury of flexor muscle, fascia and tendon of other finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149299,10,'S66.107S ','Unspecified injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149298,10,'S66.107D ','Unspecified injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149297,10,'S66.107A ','Unspecified injury of flexor muscle, fascia and tendon of left little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149296,10,'S66.106S ','Unspecified injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149295,10,'S66.106D ','Unspecified injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149294,10,'S66.106A ','Unspecified injury of flexor muscle, fascia and tendon of right little finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149293,10,'S66.105S ','Unspecified injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149292,10,'S66.105D ','Unspecified injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149291,10,'S66.105A ','Unspecified injury of flexor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149290,10,'S66.104S ','Unspecified injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149289,10,'S66.104D ','Unspecified injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149288,10,'S66.104A ','Unspecified injury of flexor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149287,10,'S66.103S ','Unspecified injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149286,10,'S66.103D ','Unspecified injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149285,10,'S66.103A ','Unspecified injury of flexor muscle, fascia and tendon of left middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149284,10,'S66.102S ','Unspecified injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149283,10,'S66.102D ','Unspecified injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149282,10,'S66.102A ','Unspecified injury of flexor muscle, fascia and tendon of right middle finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149281,10,'S66.101S ','Unspecified injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149280,10,'S66.101D ','Unspecified injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149279,10,'S66.101A ','Unspecified injury of flexor muscle, fascia and tendon of left index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149278,10,'S66.100S ','Unspecified injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149277,10,'S66.100D ','Unspecified injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149276,10,'S66.100A ','Unspecified injury of flexor muscle, fascia and tendon of right index finger at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149275,10,'S66.099S ','Other specified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149274,10,'S66.099D ','Other specified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149273,10,'S66.099A ','Other specified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149272,10,'S66.092S ','Other specified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149271,10,'S66.092D ','Other specified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149270,10,'S66.092A ','Other specified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149269,10,'S66.091S ','Other specified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149268,10,'S66.091D ','Other specified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149267,10,'S66.091A ','Other specified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149266,10,'S66.029S ','Laceration of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149265,10,'S66.029D ','Laceration of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149264,10,'S66.029A ','Laceration of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149263,10,'S66.022S ','Laceration of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149262,10,'S66.022D ','Laceration of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149261,10,'S66.022A ','Laceration of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149260,10,'S66.021S ','Laceration of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149259,10,'S66.021D ','Laceration of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149258,10,'S66.021A ','Laceration of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149257,10,'S66.019S ','Strain of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149256,10,'S66.019D ','Strain of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149255,10,'S66.019A ','Strain of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149254,10,'S66.012S ','Strain of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149253,10,'S66.012D ','Strain of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149252,10,'S66.012A ','Strain of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00');
INSERT INTO `icd` VALUES (149251,10,'S66.011S ','Strain of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149250,10,'S66.011D ','Strain of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149249,10,'S66.011A ','Strain of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149248,10,'S66.009S ','Unspecified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149247,10,'S66.009D ','Unspecified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149246,10,'S66.009A ','Unspecified injury of long flexor muscle, fascia and tendon of unspecified thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149245,10,'S66.002S ','Unspecified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149244,10,'S66.002D ','Unspecified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149243,10,'S66.002A ','Unspecified injury of long flexor muscle, fascia and tendon of left thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149242,10,'S66.001S ','Unspecified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, sequela','Y','0000-00-00 00:00:00'),(149241,10,'S66.001D ','Unspecified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, subsequent encounter','Y','0000-00-00 00:00:00'),(149240,10,'S66.001A ','Unspecified injury of long flexor muscle, fascia and tendon of right thumb at wrist and hand level, initial encounter','Y','0000-00-00 00:00:00'),(149239,10,'S65.999S ','Other specified injury of unspecified blood vessel at wrist and hand of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(149238,10,'S65.999D ','Other specified injury of unspecified blood vessel at wrist and hand of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149237,10,'S65.999A ','Other specified injury of unspecified blood vessel at wrist and hand of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(149236,10,'S65.992S ','Other specified injury of unspecified blood vessel at wrist and hand of left arm, sequela','Y','0000-00-00 00:00:00'),(149235,10,'S65.992D ','Other specified injury of unspecified blood vessel at wrist and hand of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149234,10,'S65.992A ','Other specified injury of unspecified blood vessel at wrist and hand of left arm, initial encounter','Y','0000-00-00 00:00:00'),(149233,10,'S65.991S ','Other specified injury of unspecified blood vessel at wrist and hand of right arm, sequela','Y','0000-00-00 00:00:00'),(149232,10,'S65.991D ','Other specified injury of unspecified blood vessel at wrist and hand of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149231,10,'S65.991A ','Other specified injury of unspecified blood vessel at wrist and hand of right arm, initial encounter','Y','0000-00-00 00:00:00'),(149230,10,'S65.919S ','Laceration of unspecified blood vessel at wrist and hand level of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(149229,10,'S65.919D ','Laceration of unspecified blood vessel at wrist and hand level of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149228,10,'S65.919A ','Laceration of unspecified blood vessel at wrist and hand level of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(149227,10,'S65.912S ','Laceration of unspecified blood vessel at wrist and hand level of left arm, sequela','Y','0000-00-00 00:00:00'),(149226,10,'S65.912D ','Laceration of unspecified blood vessel at wrist and hand level of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149225,10,'S65.912A ','Laceration of unspecified blood vessel at wrist and hand level of left arm, initial encounter','Y','0000-00-00 00:00:00'),(149224,10,'S65.911S ','Laceration of unspecified blood vessel at wrist and hand level of right arm, sequela','Y','0000-00-00 00:00:00'),(149223,10,'S65.911D ','Laceration of unspecified blood vessel at wrist and hand level of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149222,10,'S65.911A ','Laceration of unspecified blood vessel at wrist and hand level of right arm, initial encounter','Y','0000-00-00 00:00:00'),(149221,10,'S65.909S ','Unspecified injury of unspecified blood vessel at wrist and hand level of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(149220,10,'S65.909D ','Unspecified injury of unspecified blood vessel at wrist and hand level of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149219,10,'S65.909A ','Unspecified injury of unspecified blood vessel at wrist and hand level of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(149218,10,'S65.902S ','Unspecified injury of unspecified blood vessel at wrist and hand level of left arm, sequela','Y','0000-00-00 00:00:00'),(149217,10,'S65.902D ','Unspecified injury of unspecified blood vessel at wrist and hand level of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149216,10,'S65.902A ','Unspecified injury of unspecified blood vessel at wrist and hand level of left arm, initial encounter','Y','0000-00-00 00:00:00'),(149215,10,'S65.901S ','Unspecified injury of unspecified blood vessel at wrist and hand level of right arm, sequela','Y','0000-00-00 00:00:00'),(149214,10,'S65.901D ','Unspecified injury of unspecified blood vessel at wrist and hand level of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149213,10,'S65.901A ','Unspecified injury of unspecified blood vessel at wrist and hand level of right arm, initial encounter','Y','0000-00-00 00:00:00'),(149212,10,'S65.899S ','Other specified injury of other blood vessels at wrist and hand level of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(149211,10,'S65.899D ','Other specified injury of other blood vessels at wrist and hand level of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149210,10,'S65.899A ','Other specified injury of other blood vessels at wrist and hand level of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(149209,10,'S65.892S ','Other specified injury of other blood vessels at wrist and hand level of left arm, sequela','Y','0000-00-00 00:00:00'),(149208,10,'S65.892D ','Other specified injury of other blood vessels at wrist and hand level of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149207,10,'S65.892A ','Other specified injury of other blood vessels at wrist and hand level of left arm, initial encounter','Y','0000-00-00 00:00:00'),(149206,10,'S65.891S ','Other specified injury of other blood vessels at wrist and hand level of right arm, sequela','Y','0000-00-00 00:00:00'),(149205,10,'S65.891D ','Other specified injury of other blood vessels at wrist and hand level of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149204,10,'S65.891A ','Other specified injury of other blood vessels at wrist and hand level of right arm, initial encounter','Y','0000-00-00 00:00:00'),(149203,10,'S65.819S ','Laceration of other blood vessels at wrist and hand level of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(149202,10,'S65.819D ','Laceration of other blood vessels at wrist and hand level of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149201,10,'S65.819A ','Laceration of other blood vessels at wrist and hand level of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(149200,10,'S65.812S ','Laceration of other blood vessels at wrist and hand level of left arm, sequela','Y','0000-00-00 00:00:00'),(149199,10,'S65.812D ','Laceration of other blood vessels at wrist and hand level of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149198,10,'S65.812A ','Laceration of other blood vessels at wrist and hand level of left arm, initial encounter','Y','0000-00-00 00:00:00'),(149197,10,'S65.811S ','Laceration of other blood vessels at wrist and hand level of right arm, sequela','Y','0000-00-00 00:00:00'),(149196,10,'S65.811D ','Laceration of other blood vessels at wrist and hand level of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149195,10,'S65.811A ','Laceration of other blood vessels at wrist and hand level of right arm, initial encounter','Y','0000-00-00 00:00:00'),(149194,10,'S65.809S ','Unspecified injury of other blood vessels at wrist and hand level of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(149193,10,'S65.809D ','Unspecified injury of other blood vessels at wrist and hand level of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149192,10,'S65.809A ','Unspecified injury of other blood vessels at wrist and hand level of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(149191,10,'S65.802S ','Unspecified injury of other blood vessels at wrist and hand level of left arm, sequela','Y','0000-00-00 00:00:00'),(149190,10,'S65.802D ','Unspecified injury of other blood vessels at wrist and hand level of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149189,10,'S65.802A ','Unspecified injury of other blood vessels at wrist and hand level of left arm, initial encounter','Y','0000-00-00 00:00:00'),(149188,10,'S65.801S ','Unspecified injury of other blood vessels at wrist and hand level of right arm, sequela','Y','0000-00-00 00:00:00'),(149187,10,'S65.801D ','Unspecified injury of other blood vessels at wrist and hand level of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149186,10,'S65.801A ','Unspecified injury of other blood vessels at wrist and hand level of right arm, initial encounter','Y','0000-00-00 00:00:00'),(149185,10,'S65.599S ','Other specified injury of blood vessel of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(149184,10,'S65.599D ','Other specified injury of blood vessel of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149183,10,'S65.599A ','Other specified injury of blood vessel of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(149182,10,'S65.598S ','Other specified injury of blood vessel of other finger, sequela','Y','0000-00-00 00:00:00'),(149181,10,'S65.598D ','Other specified injury of blood vessel of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149180,10,'S65.598A ','Other specified injury of blood vessel of other finger, initial encounter','Y','0000-00-00 00:00:00'),(149179,10,'S65.597S ','Other specified injury of blood vessel of left little finger, sequela','Y','0000-00-00 00:00:00'),(149178,10,'S65.597D ','Other specified injury of blood vessel of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149177,10,'S65.597A ','Other specified injury of blood vessel of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(149176,10,'S65.596S ','Other specified injury of blood vessel of right little finger, sequela','Y','0000-00-00 00:00:00'),(149175,10,'S65.596D ','Other specified injury of blood vessel of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149174,10,'S65.596A ','Other specified injury of blood vessel of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(149173,10,'S65.595S ','Other specified injury of blood vessel of left ring finger, sequela','Y','0000-00-00 00:00:00'),(149172,10,'S65.595D ','Other specified injury of blood vessel of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149171,10,'S65.595A ','Other specified injury of blood vessel of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(149170,10,'S65.594S ','Other specified injury of blood vessel of right ring finger, sequela','Y','0000-00-00 00:00:00'),(149169,10,'S65.594D ','Other specified injury of blood vessel of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149168,10,'S65.594A ','Other specified injury of blood vessel of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(149167,10,'S65.593S ','Other specified injury of blood vessel of left middle finger, sequela','Y','0000-00-00 00:00:00'),(149166,10,'S65.593D ','Other specified injury of blood vessel of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149165,10,'S65.593A ','Other specified injury of blood vessel of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(149164,10,'S65.592S ','Other specified injury of blood vessel of right middle finger, sequela','Y','0000-00-00 00:00:00'),(149163,10,'S65.592D ','Other specified injury of blood vessel of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149162,10,'S65.592A ','Other specified injury of blood vessel of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(149161,10,'S65.591S ','Other specified injury of blood vessel of left index finger, sequela','Y','0000-00-00 00:00:00'),(149160,10,'S65.591D ','Other specified injury of blood vessel of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149159,10,'S65.591A ','Other specified injury of blood vessel of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(149158,10,'S65.590S ','Other specified injury of blood vessel of right index finger, sequela','Y','0000-00-00 00:00:00'),(149157,10,'S65.590D ','Other specified injury of blood vessel of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149155,10,'S65.519S ','Laceration of blood vessel of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(149156,10,'S65.590A ','Other specified injury of blood vessel of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(149154,10,'S65.519D ','Laceration of blood vessel of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149153,10,'S65.519A ','Laceration of blood vessel of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(149152,10,'S65.518S ','Laceration of blood vessel of other finger, sequela','Y','0000-00-00 00:00:00'),(149151,10,'S65.518D ','Laceration of blood vessel of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149149,10,'S65.517S ','Laceration of blood vessel of left little finger, sequela','Y','0000-00-00 00:00:00'),(149150,10,'S65.518A ','Laceration of blood vessel of other finger, initial encounter','Y','0000-00-00 00:00:00'),(149148,10,'S65.517D ','Laceration of blood vessel of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149147,10,'S65.517A ','Laceration of blood vessel of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(149146,10,'S65.516S ','Laceration of blood vessel of right little finger, sequela','Y','0000-00-00 00:00:00'),(149145,10,'S65.516D ','Laceration of blood vessel of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149143,10,'S65.515S ','Laceration of blood vessel of left ring finger, sequela','Y','0000-00-00 00:00:00'),(149144,10,'S65.516A ','Laceration of blood vessel of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(149142,10,'S65.515D ','Laceration of blood vessel of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149141,10,'S65.515A ','Laceration of blood vessel of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(149140,10,'S65.514S ','Laceration of blood vessel of right ring finger, sequela','Y','0000-00-00 00:00:00'),(149139,10,'S65.514D ','Laceration of blood vessel of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149138,10,'S65.514A ','Laceration of blood vessel of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(149137,10,'S65.513S ','Laceration of blood vessel of left middle finger, sequela','Y','0000-00-00 00:00:00'),(149136,10,'S65.513D ','Laceration of blood vessel of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149135,10,'S65.513A ','Laceration of blood vessel of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(149134,10,'S65.512S ','Laceration of blood vessel of right middle finger, sequela','Y','0000-00-00 00:00:00'),(149133,10,'S65.512D ','Laceration of blood vessel of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149132,10,'S65.512A ','Laceration of blood vessel of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(149131,10,'S65.511S ','Laceration of blood vessel of left index finger, sequela','Y','0000-00-00 00:00:00'),(149130,10,'S65.511D ','Laceration of blood vessel of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149129,10,'S65.511A ','Laceration of blood vessel of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(149128,10,'S65.510S ','Laceration of blood vessel of right index finger, sequela','Y','0000-00-00 00:00:00'),(149127,10,'S65.510D ','Laceration of blood vessel of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149126,10,'S65.510A ','Laceration of blood vessel of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(149125,10,'S65.509S ','Unspecified injury of blood vessel of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(149124,10,'S65.509D ','Unspecified injury of blood vessel of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149123,10,'S65.509A ','Unspecified injury of blood vessel of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(149122,10,'S65.508S ','Unspecified injury of blood vessel of other finger, sequela','Y','0000-00-00 00:00:00'),(149121,10,'S65.508D ','Unspecified injury of blood vessel of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149120,10,'S65.508A ','Unspecified injury of blood vessel of other finger, initial encounter','Y','0000-00-00 00:00:00'),(149119,10,'S65.507S ','Unspecified injury of blood vessel of left little finger, sequela','Y','0000-00-00 00:00:00'),(149118,10,'S65.507D ','Unspecified injury of blood vessel of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149117,10,'S65.507A ','Unspecified injury of blood vessel of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(149116,10,'S65.506S ','Unspecified injury of blood vessel of right little finger, sequela','Y','0000-00-00 00:00:00'),(149115,10,'S65.506D ','Unspecified injury of blood vessel of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149114,10,'S65.506A ','Unspecified injury of blood vessel of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(149113,10,'S65.505S ','Unspecified injury of blood vessel of left ring finger, sequela','Y','0000-00-00 00:00:00'),(149112,10,'S65.505D ','Unspecified injury of blood vessel of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149111,10,'S65.505A ','Unspecified injury of blood vessel of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(149110,10,'S65.504S ','Unspecified injury of blood vessel of right ring finger, sequela','Y','0000-00-00 00:00:00'),(149109,10,'S65.504D ','Unspecified injury of blood vessel of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149108,10,'S65.504A ','Unspecified injury of blood vessel of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(149107,10,'S65.503S ','Unspecified injury of blood vessel of left middle finger, sequela','Y','0000-00-00 00:00:00'),(149106,10,'S65.503D ','Unspecified injury of blood vessel of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149105,10,'S65.503A ','Unspecified injury of blood vessel of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(149104,10,'S65.502S ','Unspecified injury of blood vessel of right middle finger, sequela','Y','0000-00-00 00:00:00'),(149103,10,'S65.502D ','Unspecified injury of blood vessel of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149102,10,'S65.502A ','Unspecified injury of blood vessel of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(149101,10,'S65.501S ','Unspecified injury of blood vessel of left index finger, sequela','Y','0000-00-00 00:00:00'),(149100,10,'S65.501D ','Unspecified injury of blood vessel of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149098,10,'S65.500S ','Unspecified injury of blood vessel of right index finger, sequela','Y','0000-00-00 00:00:00'),(149099,10,'S65.501A ','Unspecified injury of blood vessel of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(149097,10,'S65.500D ','Unspecified injury of blood vessel of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(149096,10,'S65.500A ','Unspecified injury of blood vessel of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(149095,10,'S65.499S ','Other specified injury of blood vessel of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(149094,10,'S65.499D ','Other specified injury of blood vessel of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149093,10,'S65.499A ','Other specified injury of blood vessel of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(149092,10,'S65.492S ','Other specified injury of blood vessel of left thumb, sequela','Y','0000-00-00 00:00:00'),(149091,10,'S65.492D ','Other specified injury of blood vessel of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149090,10,'S65.492A ','Other specified injury of blood vessel of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(149089,10,'S65.491S ','Other specified injury of blood vessel of right thumb, sequela','Y','0000-00-00 00:00:00'),(149088,10,'S65.491D ','Other specified injury of blood vessel of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149087,10,'S65.491A ','Other specified injury of blood vessel of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(149086,10,'S65.419S ','Laceration of blood vessel of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(149085,10,'S65.419D ','Laceration of blood vessel of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149084,10,'S65.419A ','Laceration of blood vessel of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(149083,10,'S65.412S ','Laceration of blood vessel of left thumb, sequela','Y','0000-00-00 00:00:00'),(149082,10,'S65.412D ','Laceration of blood vessel of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149081,10,'S65.412A ','Laceration of blood vessel of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(149080,10,'S65.411S ','Laceration of blood vessel of right thumb, sequela','Y','0000-00-00 00:00:00'),(149079,10,'S65.411D ','Laceration of blood vessel of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149078,10,'S65.411A ','Laceration of blood vessel of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(149077,10,'S65.409S ','Unspecified injury of blood vessel of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(149076,10,'S65.409D ','Unspecified injury of blood vessel of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149074,10,'S65.402S ','Unspecified injury of blood vessel of left thumb, sequela','Y','0000-00-00 00:00:00'),(149075,10,'S65.409A ','Unspecified injury of blood vessel of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(149073,10,'S65.402D ','Unspecified injury of blood vessel of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149072,10,'S65.402A ','Unspecified injury of blood vessel of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(149071,10,'S65.401S ','Unspecified injury of blood vessel of right thumb, sequela','Y','0000-00-00 00:00:00'),(149070,10,'S65.401D ','Unspecified injury of blood vessel of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(149069,10,'S65.401A ','Unspecified injury of blood vessel of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(149068,10,'S65.399S ','Other specified injury of deep palmar arch of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(149067,10,'S65.399D ','Other specified injury of deep palmar arch of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149066,10,'S65.399A ','Other specified injury of deep palmar arch of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(149065,10,'S65.392S ','Other specified injury of deep palmar arch of left hand, sequela','Y','0000-00-00 00:00:00'),(149064,10,'S65.392D ','Other specified injury of deep palmar arch of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149063,10,'S65.392A ','Other specified injury of deep palmar arch of left hand, initial encounter','Y','0000-00-00 00:00:00'),(149062,10,'S65.391S ','Other specified injury of deep palmar arch of right hand, sequela','Y','0000-00-00 00:00:00'),(149061,10,'S65.391D ','Other specified injury of deep palmar arch of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149060,10,'S65.391A ','Other specified injury of deep palmar arch of right hand, initial encounter','Y','0000-00-00 00:00:00'),(149059,10,'S65.319S ','Laceration of deep palmar arch of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(149058,10,'S65.319D ','Laceration of deep palmar arch of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149057,10,'S65.319A ','Laceration of deep palmar arch of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(149056,10,'S65.312S ','Laceration of deep palmar arch of left hand, sequela','Y','0000-00-00 00:00:00'),(149055,10,'S65.312D ','Laceration of deep palmar arch of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149054,10,'S65.312A ','Laceration of deep palmar arch of left hand, initial encounter','Y','0000-00-00 00:00:00'),(149053,10,'S65.311S ','Laceration of deep palmar arch of right hand, sequela','Y','0000-00-00 00:00:00'),(149052,10,'S65.311D ','Laceration of deep palmar arch of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149051,10,'S65.311A ','Laceration of deep palmar arch of right hand, initial encounter','Y','0000-00-00 00:00:00'),(149050,10,'S65.309S ','Unspecified injury of deep palmar arch of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(149049,10,'S65.309D ','Unspecified injury of deep palmar arch of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149048,10,'S65.309A ','Unspecified injury of deep palmar arch of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(149047,10,'S65.302S ','Unspecified injury of deep palmar arch of left hand, sequela','Y','0000-00-00 00:00:00'),(149046,10,'S65.302D ','Unspecified injury of deep palmar arch of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149045,10,'S65.302A ','Unspecified injury of deep palmar arch of left hand, initial encounter','Y','0000-00-00 00:00:00'),(149044,10,'S65.301S ','Unspecified injury of deep palmar arch of right hand, sequela','Y','0000-00-00 00:00:00'),(149043,10,'S65.301D ','Unspecified injury of deep palmar arch of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149042,10,'S65.301A ','Unspecified injury of deep palmar arch of right hand, initial encounter','Y','0000-00-00 00:00:00'),(149041,10,'S65.299S ','Other specified injury of superficial palmar arch of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(149040,10,'S65.299D ','Other specified injury of superficial palmar arch of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149039,10,'S65.299A ','Other specified injury of superficial palmar arch of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(149038,10,'S65.292S ','Other specified injury of superficial palmar arch of left hand, sequela','Y','0000-00-00 00:00:00'),(149037,10,'S65.292D ','Other specified injury of superficial palmar arch of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149036,10,'S65.292A ','Other specified injury of superficial palmar arch of left hand, initial encounter','Y','0000-00-00 00:00:00'),(149035,10,'S65.291S ','Other specified injury of superficial palmar arch of right hand, sequela','Y','0000-00-00 00:00:00'),(149034,10,'S65.291D ','Other specified injury of superficial palmar arch of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149033,10,'S65.291A ','Other specified injury of superficial palmar arch of right hand, initial encounter','Y','0000-00-00 00:00:00'),(149032,10,'S65.219S ','Laceration of superficial palmar arch of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(149031,10,'S65.219D ','Laceration of superficial palmar arch of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149030,10,'S65.219A ','Laceration of superficial palmar arch of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(149029,10,'S65.212S ','Laceration of superficial palmar arch of left hand, sequela','Y','0000-00-00 00:00:00'),(149028,10,'S65.212D ','Laceration of superficial palmar arch of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149027,10,'S65.212A ','Laceration of superficial palmar arch of left hand, initial encounter','Y','0000-00-00 00:00:00'),(149026,10,'S65.211S ','Laceration of superficial palmar arch of right hand, sequela','Y','0000-00-00 00:00:00'),(149025,10,'S65.211D ','Laceration of superficial palmar arch of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149024,10,'S65.211A ','Laceration of superficial palmar arch of right hand, initial encounter','Y','0000-00-00 00:00:00'),(149023,10,'S65.209S ','Unspecified injury of superficial palmar arch of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(149022,10,'S65.209D ','Unspecified injury of superficial palmar arch of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149021,10,'S65.209A ','Unspecified injury of superficial palmar arch of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(149020,10,'S65.202S ','Unspecified injury of superficial palmar arch of left hand, sequela','Y','0000-00-00 00:00:00'),(149019,10,'S65.202D ','Unspecified injury of superficial palmar arch of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149018,10,'S65.202A ','Unspecified injury of superficial palmar arch of left hand, initial encounter','Y','0000-00-00 00:00:00'),(149017,10,'S65.201S ','Unspecified injury of superficial palmar arch of right hand, sequela','Y','0000-00-00 00:00:00'),(149016,10,'S65.201D ','Unspecified injury of superficial palmar arch of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(149015,10,'S65.201A ','Unspecified injury of superficial palmar arch of right hand, initial encounter','Y','0000-00-00 00:00:00'),(149014,10,'S65.199S ','Other specified injury of radial artery at wrist and hand level of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(149013,10,'S65.199D ','Other specified injury of radial artery at wrist and hand level of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149012,10,'S65.199A ','Other specified injury of radial artery at wrist and hand level of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(149011,10,'S65.192S ','Other specified injury of radial artery at wrist and hand level of left arm, sequela','Y','0000-00-00 00:00:00'),(149010,10,'S65.192D ','Other specified injury of radial artery at wrist and hand level of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149009,10,'S65.192A ','Other specified injury of radial artery at wrist and hand level of left arm, initial encounter','Y','0000-00-00 00:00:00'),(149008,10,'S65.191S ','Other specified injury of radial artery at wrist and hand level of right arm, sequela','Y','0000-00-00 00:00:00'),(149007,10,'S65.191D ','Other specified injury of radial artery at wrist and hand level of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149006,10,'S65.191A ','Other specified injury of radial artery at wrist and hand level of right arm, initial encounter','Y','0000-00-00 00:00:00'),(149005,10,'S65.119S ','Laceration of radial artery at wrist and hand level of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(149004,10,'S65.119D ','Laceration of radial artery at wrist and hand level of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149003,10,'S65.119A ','Laceration of radial artery at wrist and hand level of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(149002,10,'S65.112S ','Laceration of radial artery at wrist and hand level of left arm, sequela','Y','0000-00-00 00:00:00'),(149001,10,'S65.112D ','Laceration of radial artery at wrist and hand level of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(149000,10,'S65.112A ','Laceration of radial artery at wrist and hand level of left arm, initial encounter','Y','0000-00-00 00:00:00'),(148999,10,'S65.111S ','Laceration of radial artery at wrist and hand level of right arm, sequela','Y','0000-00-00 00:00:00'),(148998,10,'S65.111D ','Laceration of radial artery at wrist and hand level of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148997,10,'S65.111A ','Laceration of radial artery at wrist and hand level of right arm, initial encounter','Y','0000-00-00 00:00:00'),(148996,10,'S65.109S ','Unspecified injury of radial artery at wrist and hand level of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(148995,10,'S65.109D ','Unspecified injury of radial artery at wrist and hand level of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148994,10,'S65.109A ','Unspecified injury of radial artery at wrist and hand level of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(148993,10,'S65.102S ','Unspecified injury of radial artery at wrist and hand level of left arm, sequela','Y','0000-00-00 00:00:00'),(148992,10,'S65.102D ','Unspecified injury of radial artery at wrist and hand level of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148991,10,'S65.102A ','Unspecified injury of radial artery at wrist and hand level of left arm, initial encounter','Y','0000-00-00 00:00:00'),(148990,10,'S65.101S ','Unspecified injury of radial artery at wrist and hand level of right arm, sequela','Y','0000-00-00 00:00:00'),(148989,10,'S65.101D ','Unspecified injury of radial artery at wrist and hand level of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148988,10,'S65.101A ','Unspecified injury of radial artery at wrist and hand level of right arm, initial encounter','Y','0000-00-00 00:00:00'),(148987,10,'S65.099S ','Other specified injury of ulnar artery at wrist and hand level of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(148986,10,'S65.099D ','Other specified injury of ulnar artery at wrist and hand level of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148985,10,'S65.099A ','Other specified injury of ulnar artery at wrist and hand level of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(148984,10,'S65.092S ','Other specified injury of ulnar artery at wrist and hand level of left arm, sequela','Y','0000-00-00 00:00:00'),(148983,10,'S65.092D ','Other specified injury of ulnar artery at wrist and hand level of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148982,10,'S65.092A ','Other specified injury of ulnar artery at wrist and hand level of left arm, initial encounter','Y','0000-00-00 00:00:00'),(148981,10,'S65.091S ','Other specified injury of ulnar artery at wrist and hand level of right arm, sequela','Y','0000-00-00 00:00:00'),(148980,10,'S65.091D ','Other specified injury of ulnar artery at wrist and hand level of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148979,10,'S65.091A ','Other specified injury of ulnar artery at wrist and hand level of right arm, initial encounter','Y','0000-00-00 00:00:00'),(148978,10,'S65.019S ','Laceration of ulnar artery at wrist and hand level of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(148977,10,'S65.019D ','Laceration of ulnar artery at wrist and hand level of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148976,10,'S65.019A ','Laceration of ulnar artery at wrist and hand level of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(148975,10,'S65.012S ','Laceration of ulnar artery at wrist and hand level of left arm, sequela','Y','0000-00-00 00:00:00'),(148974,10,'S65.012D ','Laceration of ulnar artery at wrist and hand level of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148973,10,'S65.012A ','Laceration of ulnar artery at wrist and hand level of left arm, initial encounter','Y','0000-00-00 00:00:00'),(148972,10,'S65.011S ','Laceration of ulnar artery at wrist and hand level of right arm, sequela','Y','0000-00-00 00:00:00'),(148971,10,'S65.011D ','Laceration of ulnar artery at wrist and hand level of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148970,10,'S65.011A ','Laceration of ulnar artery at wrist and hand level of right arm, initial encounter','Y','0000-00-00 00:00:00'),(148969,10,'S65.009S ','Unspecified injury of ulnar artery at wrist and hand level of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(148968,10,'S65.009D ','Unspecified injury of ulnar artery at wrist and hand level of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148967,10,'S65.009A ','Unspecified injury of ulnar artery at wrist and hand level of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(148966,10,'S65.002S ','Unspecified injury of ulnar artery at wrist and hand level of left arm, sequela','Y','0000-00-00 00:00:00'),(148965,10,'S65.002D ','Unspecified injury of ulnar artery at wrist and hand level of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148964,10,'S65.002A ','Unspecified injury of ulnar artery at wrist and hand level of left arm, initial encounter','Y','0000-00-00 00:00:00'),(148963,10,'S65.001S ','Unspecified injury of ulnar artery at wrist and hand level of right arm, sequela','Y','0000-00-00 00:00:00'),(148962,10,'S65.001D ','Unspecified injury of ulnar artery at wrist and hand level of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148961,10,'S65.001A ','Unspecified injury of ulnar artery at wrist and hand level of right arm, initial encounter','Y','0000-00-00 00:00:00'),(148960,10,'S64.92XS ','Injury of unspecified nerve at wrist and hand level of left arm, sequela','Y','0000-00-00 00:00:00'),(148959,10,'S64.92XD ','Injury of unspecified nerve at wrist and hand level of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148958,10,'S64.92XA ','Injury of unspecified nerve at wrist and hand level of left arm, initial encounter','Y','0000-00-00 00:00:00'),(148957,10,'S64.91XS ','Injury of unspecified nerve at wrist and hand level of right arm, sequela','Y','0000-00-00 00:00:00'),(148956,10,'S64.91XD ','Injury of unspecified nerve at wrist and hand level of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148955,10,'S64.91XA ','Injury of unspecified nerve at wrist and hand level of right arm, initial encounter','Y','0000-00-00 00:00:00'),(148954,10,'S64.90XS ','Injury of unspecified nerve at wrist and hand level of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(148953,10,'S64.90XD ','Injury of unspecified nerve at wrist and hand level of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148952,10,'S64.90XA ','Injury of unspecified nerve at wrist and hand level of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(148951,10,'S64.8X9S ','Injury of other nerves at wrist and hand level of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(148950,10,'S64.8X9D ','Injury of other nerves at wrist and hand level of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148949,10,'S64.8X9A ','Injury of other nerves at wrist and hand level of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(148948,10,'S64.8X2S ','Injury of other nerves at wrist and hand level of left arm, sequela','Y','0000-00-00 00:00:00'),(148947,10,'S64.8X2D ','Injury of other nerves at wrist and hand level of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148946,10,'S64.8X2A ','Injury of other nerves at wrist and hand level of left arm, initial encounter','Y','0000-00-00 00:00:00'),(148945,10,'S64.8X1S ','Injury of other nerves at wrist and hand level of right arm, sequela','Y','0000-00-00 00:00:00'),(148944,10,'S64.8X1D ','Injury of other nerves at wrist and hand level of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148943,10,'S64.8X1A ','Injury of other nerves at wrist and hand level of right arm, initial encounter','Y','0000-00-00 00:00:00'),(148942,10,'S64.498S ','Injury of digital nerve of other finger, sequela','Y','0000-00-00 00:00:00'),(148941,10,'S64.498D ','Injury of digital nerve of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148940,10,'S64.498A ','Injury of digital nerve of other finger, initial encounter','Y','0000-00-00 00:00:00'),(148939,10,'S64.497S ','Injury of digital nerve of left little finger, sequela','Y','0000-00-00 00:00:00'),(148938,10,'S64.497D ','Injury of digital nerve of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148937,10,'S64.497A ','Injury of digital nerve of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(148936,10,'S64.496S ','Injury of digital nerve of right little finger, sequela','Y','0000-00-00 00:00:00'),(148935,10,'S64.496D ','Injury of digital nerve of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148934,10,'S64.496A ','Injury of digital nerve of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(148933,10,'S64.495S ','Injury of digital nerve of left ring finger, sequela','Y','0000-00-00 00:00:00'),(148932,10,'S64.495D ','Injury of digital nerve of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148931,10,'S64.495A ','Injury of digital nerve of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148930,10,'S64.494S ','Injury of digital nerve of right ring finger, sequela','Y','0000-00-00 00:00:00'),(148929,10,'S64.494D ','Injury of digital nerve of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148928,10,'S64.494A ','Injury of digital nerve of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148927,10,'S64.493S ','Injury of digital nerve of left middle finger, sequela','Y','0000-00-00 00:00:00'),(148926,10,'S64.493D ','Injury of digital nerve of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148925,10,'S64.493A ','Injury of digital nerve of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148924,10,'S64.492S ','Injury of digital nerve of right middle finger, sequela','Y','0000-00-00 00:00:00'),(148923,10,'S64.492D ','Injury of digital nerve of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148922,10,'S64.492A ','Injury of digital nerve of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148921,10,'S64.491S ','Injury of digital nerve of left index finger, sequela','Y','0000-00-00 00:00:00'),(148920,10,'S64.491D ','Injury of digital nerve of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148919,10,'S64.491A ','Injury of digital nerve of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(148918,10,'S64.490S ','Injury of digital nerve of right index finger, sequela','Y','0000-00-00 00:00:00'),(148917,10,'S64.490D ','Injury of digital nerve of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148916,10,'S64.490A ','Injury of digital nerve of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(148915,10,'S64.40XS ','Injury of digital nerve of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(148914,10,'S64.40XD ','Injury of digital nerve of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148913,10,'S64.40XA ','Injury of digital nerve of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(148912,10,'S64.32XS ','Injury of digital nerve of left thumb, sequela','Y','0000-00-00 00:00:00'),(148911,10,'S64.32XD ','Injury of digital nerve of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148910,10,'S64.32XA ','Injury of digital nerve of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(148909,10,'S64.31XS ','Injury of digital nerve of right thumb, sequela','Y','0000-00-00 00:00:00'),(148908,10,'S64.31XD ','Injury of digital nerve of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148907,10,'S64.31XA ','Injury of digital nerve of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(148906,10,'S64.30XS ','Injury of digital nerve of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(148905,10,'S64.30XD ','Injury of digital nerve of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148904,10,'S64.30XA ','Injury of digital nerve of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(148903,10,'S64.22XS ','Injury of radial nerve at wrist and hand level of left arm, sequela','Y','0000-00-00 00:00:00'),(148902,10,'S64.22XD ','Injury of radial nerve at wrist and hand level of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148901,10,'S64.22XA ','Injury of radial nerve at wrist and hand level of left arm, initial encounter','Y','0000-00-00 00:00:00'),(148900,10,'S64.21XS ','Injury of radial nerve at wrist and hand level of right arm, sequela','Y','0000-00-00 00:00:00'),(148899,10,'S64.21XD ','Injury of radial nerve at wrist and hand level of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148898,10,'S64.21XA ','Injury of radial nerve at wrist and hand level of right arm, initial encounter','Y','0000-00-00 00:00:00'),(148897,10,'S64.20XS ','Injury of radial nerve at wrist and hand level of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(148896,10,'S64.20XD ','Injury of radial nerve at wrist and hand level of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148895,10,'S64.20XA ','Injury of radial nerve at wrist and hand level of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(148894,10,'S64.12XS ','Injury of median nerve at wrist and hand level of left arm, sequela','Y','0000-00-00 00:00:00'),(148893,10,'S64.12XD ','Injury of median nerve at wrist and hand level of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148892,10,'S64.12XA ','Injury of median nerve at wrist and hand level of left arm, initial encounter','Y','0000-00-00 00:00:00'),(148891,10,'S64.11XS ','Injury of median nerve at wrist and hand level of right arm, sequela','Y','0000-00-00 00:00:00'),(148890,10,'S64.11XD ','Injury of median nerve at wrist and hand level of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148889,10,'S64.11XA ','Injury of median nerve at wrist and hand level of right arm, initial encounter','Y','0000-00-00 00:00:00'),(148888,10,'S64.10XS ','Injury of median nerve at wrist and hand level of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(148887,10,'S64.10XD ','Injury of median nerve at wrist and hand level of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148886,10,'S64.10XA ','Injury of median nerve at wrist and hand level of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(148885,10,'S64.02XS ','Injury of ulnar nerve at wrist and hand level of left arm, sequela','Y','0000-00-00 00:00:00'),(148884,10,'S64.02XD ','Injury of ulnar nerve at wrist and hand level of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148883,10,'S64.02XA ','Injury of ulnar nerve at wrist and hand level of left arm, initial encounter','Y','0000-00-00 00:00:00'),(148882,10,'S64.01XS ','Injury of ulnar nerve at wrist and hand level of right arm, sequela','Y','0000-00-00 00:00:00'),(148881,10,'S64.01XD ','Injury of ulnar nerve at wrist and hand level of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148880,10,'S64.01XA ','Injury of ulnar nerve at wrist and hand level of right arm, initial encounter','Y','0000-00-00 00:00:00'),(148879,10,'S64.00XS ','Injury of ulnar nerve at wrist and hand level of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(148878,10,'S64.00XD ','Injury of ulnar nerve at wrist and hand level of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(148877,10,'S64.00XA ','Injury of ulnar nerve at wrist and hand level of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(148876,10,'S63.92XS ','Sprain of unspecified part of left wrist and hand, sequela','Y','0000-00-00 00:00:00'),(148875,10,'S63.92XD ','Sprain of unspecified part of left wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148874,10,'S63.92XA ','Sprain of unspecified part of left wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(148873,10,'S63.91XS ','Sprain of unspecified part of right wrist and hand, sequela','Y','0000-00-00 00:00:00'),(148872,10,'S63.91XD ','Sprain of unspecified part of right wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148871,10,'S63.91XA ','Sprain of unspecified part of right wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(148870,10,'S63.90XS ','Sprain of unspecified part of unspecified wrist and hand, sequela','Y','0000-00-00 00:00:00'),(148869,10,'S63.90XD ','Sprain of unspecified part of unspecified wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148868,10,'S63.90XA ','Sprain of unspecified part of unspecified wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(148867,10,'S63.8X9S ','Sprain of other part of unspecified wrist and hand, sequela','Y','0000-00-00 00:00:00'),(148866,10,'S63.8X9D ','Sprain of other part of unspecified wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148865,10,'S63.8X9A ','Sprain of other part of unspecified wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(148864,10,'S63.8X2S ','Sprain of other part of left wrist and hand, sequela','Y','0000-00-00 00:00:00'),(148863,10,'S63.8X2D ','Sprain of other part of left wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148862,10,'S63.8X2A ','Sprain of other part of left wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(148861,10,'S63.8X1S ','Sprain of other part of right wrist and hand, sequela','Y','0000-00-00 00:00:00'),(148860,10,'S63.8X1D ','Sprain of other part of right wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148859,10,'S63.8X1A ','Sprain of other part of right wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(148858,10,'S63.699S ','Other sprain of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(148857,10,'S63.699D ','Other sprain of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148856,10,'S63.699A ','Other sprain of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(148855,10,'S63.698S ','Other sprain of other finger, sequela','Y','0000-00-00 00:00:00'),(148854,10,'S63.698D ','Other sprain of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148853,10,'S63.698A ','Other sprain of other finger, initial encounter','Y','0000-00-00 00:00:00'),(148852,10,'S63.697S ','Other sprain of left little finger, sequela','Y','0000-00-00 00:00:00'),(148851,10,'S63.697D ','Other sprain of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148850,10,'S63.697A ','Other sprain of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(148849,10,'S63.696S ','Other sprain of right little finger, sequela','Y','0000-00-00 00:00:00'),(148848,10,'S63.696D ','Other sprain of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148847,10,'S63.696A ','Other sprain of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(148846,10,'S63.695S ','Other sprain of left ring finger, sequela','Y','0000-00-00 00:00:00'),(148845,10,'S63.695D ','Other sprain of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148844,10,'S63.695A ','Other sprain of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148843,10,'S63.694S ','Other sprain of right ring finger, sequela','Y','0000-00-00 00:00:00'),(148842,10,'S63.694D ','Other sprain of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148841,10,'S63.694A ','Other sprain of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148840,10,'S63.693S ','Other sprain of left middle finger, sequela','Y','0000-00-00 00:00:00'),(148839,10,'S63.693D ','Other sprain of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148838,10,'S63.693A ','Other sprain of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148837,10,'S63.692S ','Other sprain of right middle finger, sequela','Y','0000-00-00 00:00:00'),(148836,10,'S63.692D ','Other sprain of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148835,10,'S63.692A ','Other sprain of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148834,10,'S63.691S ','Other sprain of left index finger, sequela','Y','0000-00-00 00:00:00'),(148833,10,'S63.691D ','Other sprain of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148832,10,'S63.691A ','Other sprain of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(148831,10,'S63.690S ','Other sprain of right index finger, sequela','Y','0000-00-00 00:00:00'),(148830,10,'S63.690D ','Other sprain of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148829,10,'S63.690A ','Other sprain of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(148828,10,'S63.689S ','Other sprain of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(148827,10,'S63.689D ','Other sprain of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148826,10,'S63.689A ','Other sprain of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(148825,10,'S63.682S ','Other sprain of left thumb, sequela','Y','0000-00-00 00:00:00'),(148824,10,'S63.682D ','Other sprain of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148823,10,'S63.682A ','Other sprain of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(148822,10,'S63.681S ','Other sprain of right thumb, sequela','Y','0000-00-00 00:00:00'),(148821,10,'S63.681D ','Other sprain of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148820,10,'S63.681A ','Other sprain of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(148819,10,'S63.659S ','Sprain of metacarpophalangeal joint of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(148818,10,'S63.659D ','Sprain of metacarpophalangeal joint of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148817,10,'S63.659A ','Sprain of metacarpophalangeal joint of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(148816,10,'S63.658S ','Sprain of metacarpophalangeal joint of other finger, sequela','Y','0000-00-00 00:00:00'),(148815,10,'S63.658D ','Sprain of metacarpophalangeal joint of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148814,10,'S63.658A ','Sprain of metacarpophalangeal joint of other finger, initial encounter','Y','0000-00-00 00:00:00'),(148813,10,'S63.657S ','Sprain of metacarpophalangeal joint of left little finger, sequela','Y','0000-00-00 00:00:00'),(148812,10,'S63.657D ','Sprain of metacarpophalangeal joint of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148811,10,'S63.657A ','Sprain of metacarpophalangeal joint of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(148810,10,'S63.656S ','Sprain of metacarpophalangeal joint of right little finger, sequela','Y','0000-00-00 00:00:00'),(148809,10,'S63.656D ','Sprain of metacarpophalangeal joint of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148808,10,'S63.656A ','Sprain of metacarpophalangeal joint of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(148807,10,'S63.655S ','Sprain of metacarpophalangeal joint of left ring finger, sequela','Y','0000-00-00 00:00:00'),(148806,10,'S63.655D ','Sprain of metacarpophalangeal joint of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148805,10,'S63.655A ','Sprain of metacarpophalangeal joint of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148804,10,'S63.654S ','Sprain of metacarpophalangeal joint of right ring finger, sequela','Y','0000-00-00 00:00:00'),(148803,10,'S63.654D ','Sprain of metacarpophalangeal joint of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148802,10,'S63.654A ','Sprain of metacarpophalangeal joint of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148801,10,'S63.653S ','Sprain of metacarpophalangeal joint of left middle finger, sequela','Y','0000-00-00 00:00:00'),(148800,10,'S63.653D ','Sprain of metacarpophalangeal joint of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148799,10,'S63.653A ','Sprain of metacarpophalangeal joint of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148798,10,'S63.652S ','Sprain of metacarpophalangeal joint of right middle finger, sequela','Y','0000-00-00 00:00:00'),(148797,10,'S63.652D ','Sprain of metacarpophalangeal joint of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148796,10,'S63.652A ','Sprain of metacarpophalangeal joint of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148795,10,'S63.651S ','Sprain of metacarpophalangeal joint of left index finger, sequela','Y','0000-00-00 00:00:00'),(148794,10,'S63.651D ','Sprain of metacarpophalangeal joint of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148793,10,'S63.651A ','Sprain of metacarpophalangeal joint of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(148792,10,'S63.650S ','Sprain of metacarpophalangeal joint of right index finger, sequela','Y','0000-00-00 00:00:00'),(148791,10,'S63.650D ','Sprain of metacarpophalangeal joint of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148790,10,'S63.650A ','Sprain of metacarpophalangeal joint of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(148789,10,'S63.649S ','Sprain of metacarpophalangeal joint of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(148788,10,'S63.649D ','Sprain of metacarpophalangeal joint of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148787,10,'S63.649A ','Sprain of metacarpophalangeal joint of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(148786,10,'S63.642S ','Sprain of metacarpophalangeal joint of left thumb, sequela','Y','0000-00-00 00:00:00'),(148785,10,'S63.642D ','Sprain of metacarpophalangeal joint of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148784,10,'S63.642A ','Sprain of metacarpophalangeal joint of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(148783,10,'S63.641S ','Sprain of metacarpophalangeal joint of right thumb, sequela','Y','0000-00-00 00:00:00'),(148782,10,'S63.641D ','Sprain of metacarpophalangeal joint of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148781,10,'S63.641A ','Sprain of metacarpophalangeal joint of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(148780,10,'S63.639S ','Sprain of interphalangeal joint of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(148779,10,'S63.639D ','Sprain of interphalangeal joint of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148778,10,'S63.639A ','Sprain of interphalangeal joint of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(148777,10,'S63.638S ','Sprain of interphalangeal joint of other finger, sequela','Y','0000-00-00 00:00:00'),(148776,10,'S63.638D ','Sprain of interphalangeal joint of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148775,10,'S63.638A ','Sprain of interphalangeal joint of other finger, initial encounter','Y','0000-00-00 00:00:00'),(148774,10,'S63.637S ','Sprain of interphalangeal joint of left little finger, sequela','Y','0000-00-00 00:00:00'),(148773,10,'S63.637D ','Sprain of interphalangeal joint of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148772,10,'S63.637A ','Sprain of interphalangeal joint of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(148771,10,'S63.636S ','Sprain of interphalangeal joint of right little finger, sequela','Y','0000-00-00 00:00:00'),(148770,10,'S63.636D ','Sprain of interphalangeal joint of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148769,10,'S63.636A ','Sprain of interphalangeal joint of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(148768,10,'S63.635S ','Sprain of interphalangeal joint of left ring finger, sequela','Y','0000-00-00 00:00:00'),(148767,10,'S63.635D ','Sprain of interphalangeal joint of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148766,10,'S63.635A ','Sprain of interphalangeal joint of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148765,10,'S63.634S ','Sprain of interphalangeal joint of right ring finger, sequela','Y','0000-00-00 00:00:00'),(148764,10,'S63.634D ','Sprain of interphalangeal joint of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148763,10,'S63.634A ','Sprain of interphalangeal joint of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148762,10,'S63.633S ','Sprain of interphalangeal joint of left middle finger, sequela','Y','0000-00-00 00:00:00'),(148761,10,'S63.633D ','Sprain of interphalangeal joint of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148760,10,'S63.633A ','Sprain of interphalangeal joint of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148759,10,'S63.632S ','Sprain of interphalangeal joint of right middle finger, sequela','Y','0000-00-00 00:00:00'),(148758,10,'S63.632D ','Sprain of interphalangeal joint of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148757,10,'S63.632A ','Sprain of interphalangeal joint of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148756,10,'S63.631S ','Sprain of interphalangeal joint of left index finger, sequela','Y','0000-00-00 00:00:00'),(148755,10,'S63.631D ','Sprain of interphalangeal joint of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148754,10,'S63.631A ','Sprain of interphalangeal joint of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(148753,10,'S63.630S ','Sprain of interphalangeal joint of right index finger, sequela','Y','0000-00-00 00:00:00'),(148752,10,'S63.630D ','Sprain of interphalangeal joint of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148751,10,'S63.630A ','Sprain of interphalangeal joint of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(148750,10,'S63.629S ','Sprain of interphalangeal joint of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(148749,10,'S63.629D ','Sprain of interphalangeal joint of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148748,10,'S63.629A ','Sprain of interphalangeal joint of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(148747,10,'S63.622S ','Sprain of interphalangeal joint of left thumb, sequela','Y','0000-00-00 00:00:00'),(148746,10,'S63.622D ','Sprain of interphalangeal joint of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148745,10,'S63.622A ','Sprain of interphalangeal joint of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(148744,10,'S63.621S ','Sprain of interphalangeal joint of right thumb, sequela','Y','0000-00-00 00:00:00'),(148743,10,'S63.621D ','Sprain of interphalangeal joint of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148742,10,'S63.621A ','Sprain of interphalangeal joint of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(148741,10,'S63.619S ','Unspecified sprain of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(148740,10,'S63.619D ','Unspecified sprain of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148739,10,'S63.619A ','Unspecified sprain of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(148738,10,'S63.618S ','Unspecified sprain of other finger, sequela','Y','0000-00-00 00:00:00'),(148737,10,'S63.618D ','Unspecified sprain of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148736,10,'S63.618A ','Unspecified sprain of other finger, initial encounter','Y','0000-00-00 00:00:00'),(148735,10,'S63.617S ','Unspecified sprain of left little finger, sequela','Y','0000-00-00 00:00:00'),(148734,10,'S63.617D ','Unspecified sprain of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148733,10,'S63.617A ','Unspecified sprain of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(148732,10,'S63.616S ','Unspecified sprain of right little finger, sequela','Y','0000-00-00 00:00:00'),(148731,10,'S63.616D ','Unspecified sprain of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148730,10,'S63.616A ','Unspecified sprain of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(148729,10,'S63.615S ','Unspecified sprain of left ring finger, sequela','Y','0000-00-00 00:00:00'),(148728,10,'S63.615D ','Unspecified sprain of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148727,10,'S63.615A ','Unspecified sprain of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148726,10,'S63.614S ','Unspecified sprain of right ring finger, sequela','Y','0000-00-00 00:00:00'),(148725,10,'S63.614D ','Unspecified sprain of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148724,10,'S63.614A ','Unspecified sprain of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148723,10,'S63.613S ','Unspecified sprain of left middle finger, sequela','Y','0000-00-00 00:00:00'),(148722,10,'S63.613D ','Unspecified sprain of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148721,10,'S63.613A ','Unspecified sprain of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148720,10,'S63.612S ','Unspecified sprain of right middle finger, sequela','Y','0000-00-00 00:00:00'),(148719,10,'S63.612D ','Unspecified sprain of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148718,10,'S63.612A ','Unspecified sprain of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148717,10,'S63.611S ','Unspecified sprain of left index finger, sequela','Y','0000-00-00 00:00:00'),(148716,10,'S63.611D ','Unspecified sprain of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148715,10,'S63.611A ','Unspecified sprain of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(148714,10,'S63.610S ','Unspecified sprain of right index finger, sequela','Y','0000-00-00 00:00:00'),(148713,10,'S63.610D ','Unspecified sprain of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148712,10,'S63.610A ','Unspecified sprain of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(148711,10,'S63.609S ','Unspecified sprain of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(148710,10,'S63.609D ','Unspecified sprain of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148709,10,'S63.609A ','Unspecified sprain of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(148708,10,'S63.602S ','Unspecified sprain of left thumb, sequela','Y','0000-00-00 00:00:00'),(148707,10,'S63.602D ','Unspecified sprain of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148706,10,'S63.602A ','Unspecified sprain of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(148705,10,'S63.601S ','Unspecified sprain of right thumb, sequela','Y','0000-00-00 00:00:00'),(148704,10,'S63.601D ','Unspecified sprain of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148703,10,'S63.601A ','Unspecified sprain of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(148702,10,'S63.599S ','Other specified sprain of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(148701,10,'S63.599D ','Other specified sprain of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148700,10,'S63.599A ','Other specified sprain of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(148699,10,'S63.592S ','Other specified sprain of left wrist, sequela','Y','0000-00-00 00:00:00'),(148698,10,'S63.592D ','Other specified sprain of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148697,10,'S63.592A ','Other specified sprain of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(148696,10,'S63.591S ','Other specified sprain of right wrist, sequela','Y','0000-00-00 00:00:00'),(148695,10,'S63.591D ','Other specified sprain of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148694,10,'S63.591A ','Other specified sprain of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(148693,10,'S63.529S ','Sprain of radiocarpal joint of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(148692,10,'S63.529D ','Sprain of radiocarpal joint of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148691,10,'S63.529A ','Sprain of radiocarpal joint of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(148690,10,'S63.522S ','Sprain of radiocarpal joint of left wrist, sequela','Y','0000-00-00 00:00:00'),(148689,10,'S63.522D ','Sprain of radiocarpal joint of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148688,10,'S63.522A ','Sprain of radiocarpal joint of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(148687,10,'S63.521S ','Sprain of radiocarpal joint of right wrist, sequela','Y','0000-00-00 00:00:00'),(148686,10,'S63.521D ','Sprain of radiocarpal joint of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148685,10,'S63.521A ','Sprain of radiocarpal joint of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(148684,10,'S63.519S ','Sprain of carpal joint of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(148683,10,'S63.519D ','Sprain of carpal joint of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148682,10,'S63.519A ','Sprain of carpal joint of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(148681,10,'S63.512S ','Sprain of carpal joint of left wrist, sequela','Y','0000-00-00 00:00:00'),(148680,10,'S63.512D ','Sprain of carpal joint of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148679,10,'S63.512A ','Sprain of carpal joint of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(148678,10,'S63.511S ','Sprain of carpal joint of right wrist, sequela','Y','0000-00-00 00:00:00'),(148677,10,'S63.511D ','Sprain of carpal joint of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148676,10,'S63.511A ','Sprain of carpal joint of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(148675,10,'S63.509S ','Unspecified sprain of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(148674,10,'S63.509D ','Unspecified sprain of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148673,10,'S63.509A ','Unspecified sprain of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(148672,10,'S63.502S ','Unspecified sprain of left wrist, sequela','Y','0000-00-00 00:00:00'),(148671,10,'S63.502D ','Unspecified sprain of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148670,10,'S63.502A ','Unspecified sprain of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(148669,10,'S63.501S ','Unspecified sprain of right wrist, sequela','Y','0000-00-00 00:00:00'),(148668,10,'S63.501D ','Unspecified sprain of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148667,10,'S63.501A ','Unspecified sprain of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(148666,10,'S63.499S ','Traumatic rupture of other ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148665,10,'S63.499D ','Traumatic rupture of other ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148664,10,'S63.499A ','Traumatic rupture of other ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148663,10,'S63.498S ','Traumatic rupture of other ligament of other finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148662,10,'S63.498D ','Traumatic rupture of other ligament of other finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148661,10,'S63.498A ','Traumatic rupture of other ligament of other finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148660,10,'S63.497S ','Traumatic rupture of other ligament of left little finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148659,10,'S63.497D ','Traumatic rupture of other ligament of left little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148658,10,'S63.497A ','Traumatic rupture of other ligament of left little finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148657,10,'S63.496S ','Traumatic rupture of other ligament of right little finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148656,10,'S63.496D ','Traumatic rupture of other ligament of right little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148655,10,'S63.496A ','Traumatic rupture of other ligament of right little finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148654,10,'S63.495S ','Traumatic rupture of other ligament of left ring finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148653,10,'S63.495D ','Traumatic rupture of other ligament of left ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148652,10,'S63.495A ','Traumatic rupture of other ligament of left ring finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148651,10,'S63.494S ','Traumatic rupture of other ligament of right ring finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148650,10,'S63.494D ','Traumatic rupture of other ligament of right ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148649,10,'S63.494A ','Traumatic rupture of other ligament of right ring finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148648,10,'S63.493S ','Traumatic rupture of other ligament of left middle finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148647,10,'S63.493D ','Traumatic rupture of other ligament of left middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148646,10,'S63.493A ','Traumatic rupture of other ligament of left middle finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148645,10,'S63.492S ','Traumatic rupture of other ligament of right middle finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148644,10,'S63.492D ','Traumatic rupture of other ligament of right middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148643,10,'S63.492A ','Traumatic rupture of other ligament of right middle finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148642,10,'S63.491S ','Traumatic rupture of other ligament of left index finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148641,10,'S63.491D ','Traumatic rupture of other ligament of left index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148640,10,'S63.491A ','Traumatic rupture of other ligament of left index finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148639,10,'S63.490S ','Traumatic rupture of other ligament of right index finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148638,10,'S63.490D ','Traumatic rupture of other ligament of right index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148637,10,'S63.490A ','Traumatic rupture of other ligament of right index finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148636,10,'S63.439S ','Traumatic rupture of volar plate of unspecified finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148635,10,'S63.439D ','Traumatic rupture of volar plate of unspecified finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148634,10,'S63.439A ','Traumatic rupture of volar plate of unspecified finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148633,10,'S63.438S ','Traumatic rupture of volar plate of other finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148632,10,'S63.438D ','Traumatic rupture of volar plate of other finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148631,10,'S63.438A ','Traumatic rupture of volar plate of other finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148630,10,'S63.437S ','Traumatic rupture of volar plate of left little finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148629,10,'S63.437D ','Traumatic rupture of volar plate of left little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148628,10,'S63.437A ','Traumatic rupture of volar plate of left little finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148627,10,'S63.436S ','Traumatic rupture of volar plate of right little finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148626,10,'S63.436D ','Traumatic rupture of volar plate of right little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148625,10,'S63.436A ','Traumatic rupture of volar plate of right little finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148624,10,'S63.435S ','Traumatic rupture of volar plate of left ring finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148623,10,'S63.435D ','Traumatic rupture of volar plate of left ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148622,10,'S63.435A ','Traumatic rupture of volar plate of left ring finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148621,10,'S63.434S ','Traumatic rupture of volar plate of right ring finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148620,10,'S63.434D ','Traumatic rupture of volar plate of right ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148619,10,'S63.434A ','Traumatic rupture of volar plate of right ring finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148618,10,'S63.433S ','Traumatic rupture of volar plate of left middle finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148617,10,'S63.433D ','Traumatic rupture of volar plate of left middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148616,10,'S63.433A ','Traumatic rupture of volar plate of left middle finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148615,10,'S63.432S ','Traumatic rupture of volar plate of right middle finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148614,10,'S63.432D ','Traumatic rupture of volar plate of right middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148613,10,'S63.432A ','Traumatic rupture of volar plate of right middle finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148612,10,'S63.431S ','Traumatic rupture of volar plate of left index finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148611,10,'S63.431D ','Traumatic rupture of volar plate of left index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148610,10,'S63.431A ','Traumatic rupture of volar plate of left index finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148609,10,'S63.430S ','Traumatic rupture of volar plate of right index finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148608,10,'S63.430D ','Traumatic rupture of volar plate of right index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148607,10,'S63.430A ','Traumatic rupture of volar plate of right index finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148606,10,'S63.429S ','Traumatic rupture of palmar ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148605,10,'S63.429D ','Traumatic rupture of palmar ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148604,10,'S63.429A ','Traumatic rupture of palmar ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148603,10,'S63.428S ','Traumatic rupture of palmar ligament of other finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148602,10,'S63.428D ','Traumatic rupture of palmar ligament of other finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148601,10,'S63.428A ','Traumatic rupture of palmar ligament of other finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148600,10,'S63.427S ','Traumatic rupture of palmar ligament of left little finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148599,10,'S63.427D ','Traumatic rupture of palmar ligament of left little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148598,10,'S63.427A ','Traumatic rupture of palmar ligament of left little finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148597,10,'S63.426S ','Traumatic rupture of palmar ligament of right little finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148596,10,'S63.426D ','Traumatic rupture of palmar ligament of right little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148595,10,'S63.426A ','Traumatic rupture of palmar ligament of right little finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148594,10,'S63.425S ','Traumatic rupture of palmar ligament of left ring finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148593,10,'S63.425D ','Traumatic rupture of palmar ligament of left ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148592,10,'S63.425A ','Traumatic rupture of palmar ligament of left ring finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148591,10,'S63.424S ','Traumatic rupture of palmar ligament of right ring finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148590,10,'S63.424D ','Traumatic rupture of palmar ligament of right ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148589,10,'S63.424A ','Traumatic rupture of palmar ligament of right ring finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148588,10,'S63.423S ','Traumatic rupture of palmar ligament of left middle finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148587,10,'S63.423D ','Traumatic rupture of palmar ligament of left middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148586,10,'S63.423A ','Traumatic rupture of palmar ligament of left middle finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148585,10,'S63.422S ','Traumatic rupture of palmar ligament of right middle finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148584,10,'S63.422D ','Traumatic rupture of palmar ligament of right middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148583,10,'S63.422A ','Traumatic rupture of palmar ligament of right middle finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148582,10,'S63.421S ','Traumatic rupture of palmar ligament of left index finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148581,10,'S63.421D ','Traumatic rupture of palmar ligament of left index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148580,10,'S63.421A ','Traumatic rupture of palmar ligament of left index finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148579,10,'S63.420S ','Traumatic rupture of palmar ligament of right index finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148578,10,'S63.420D ','Traumatic rupture of palmar ligament of right index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148577,10,'S63.420A ','Traumatic rupture of palmar ligament of right index finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148576,10,'S63.419S ','Traumatic rupture of collateral ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148575,10,'S63.419D ','Traumatic rupture of collateral ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148574,10,'S63.419A ','Traumatic rupture of collateral ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148573,10,'S63.418S ','Traumatic rupture of collateral ligament of other finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148572,10,'S63.418D ','Traumatic rupture of collateral ligament of other finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148571,10,'S63.418A ','Traumatic rupture of collateral ligament of other finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148570,10,'S63.417S ','Traumatic rupture of collateral ligament of left little finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148569,10,'S63.417D ','Traumatic rupture of collateral ligament of left little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148568,10,'S63.417A ','Traumatic rupture of collateral ligament of left little finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148567,10,'S63.416S ','Traumatic rupture of collateral ligament of right little finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148566,10,'S63.416D ','Traumatic rupture of collateral ligament of right little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148565,10,'S63.416A ','Traumatic rupture of collateral ligament of right little finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148564,10,'S63.415S ','Traumatic rupture of collateral ligament of left ring finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148563,10,'S63.415D ','Traumatic rupture of collateral ligament of left ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148562,10,'S63.415A ','Traumatic rupture of collateral ligament of left ring finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148561,10,'S63.414S ','Traumatic rupture of collateral ligament of right ring finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148560,10,'S63.414D ','Traumatic rupture of collateral ligament of right ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148559,10,'S63.414A ','Traumatic rupture of collateral ligament of right ring finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148558,10,'S63.413S ','Traumatic rupture of collateral ligament of left middle finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148557,10,'S63.413D ','Traumatic rupture of collateral ligament of left middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148556,10,'S63.413A ','Traumatic rupture of collateral ligament of left middle finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148555,10,'S63.412S ','Traumatic rupture of collateral ligament of right middle finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148554,10,'S63.412D ','Traumatic rupture of collateral ligament of right middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148553,10,'S63.412A ','Traumatic rupture of collateral ligament of right middle finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148552,10,'S63.411S ','Traumatic rupture of collateral ligament of left index finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148551,10,'S63.411D ','Traumatic rupture of collateral ligament of left index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148550,10,'S63.411A ','Traumatic rupture of collateral ligament of left index finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148549,10,'S63.410S ','Traumatic rupture of collateral ligament of right index finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148548,10,'S63.410D ','Traumatic rupture of collateral ligament of right index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148547,10,'S63.410A ','Traumatic rupture of collateral ligament of right index finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148546,10,'S63.409S ','Traumatic rupture of unspecified ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148545,10,'S63.409D ','Traumatic rupture of unspecified ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148544,10,'S63.409A ','Traumatic rupture of unspecified ligament of unspecified finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148543,10,'S63.408S ','Traumatic rupture of unspecified ligament of other finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148542,10,'S63.408D ','Traumatic rupture of unspecified ligament of other finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148541,10,'S63.408A ','Traumatic rupture of unspecified ligament of other finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148540,10,'S63.407S ','Traumatic rupture of unspecified ligament of left little finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148539,10,'S63.407D ','Traumatic rupture of unspecified ligament of left little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148538,10,'S63.407A ','Traumatic rupture of unspecified ligament of left little finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148537,10,'S63.406S ','Traumatic rupture of unspecified ligament of right little finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148536,10,'S63.406D ','Traumatic rupture of unspecified ligament of right little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148535,10,'S63.406A ','Traumatic rupture of unspecified ligament of right little finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148534,10,'S63.405S ','Traumatic rupture of unspecified ligament of left ring finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148533,10,'S63.405D ','Traumatic rupture of unspecified ligament of left ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148532,10,'S63.405A ','Traumatic rupture of unspecified ligament of left ring finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148531,10,'S63.404S ','Traumatic rupture of unspecified ligament of right ring finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148530,10,'S63.404D ','Traumatic rupture of unspecified ligament of right ring finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148529,10,'S63.404A ','Traumatic rupture of unspecified ligament of right ring finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148528,10,'S63.403S ','Traumatic rupture of unspecified ligament of left middle finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148527,10,'S63.403D ','Traumatic rupture of unspecified ligament of left middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148526,10,'S63.403A ','Traumatic rupture of unspecified ligament of left middle finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148525,10,'S63.402S ','Traumatic rupture of unspecified ligament of right middle finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148524,10,'S63.402D ','Traumatic rupture of unspecified ligament of right middle finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148523,10,'S63.402A ','Traumatic rupture of unspecified ligament of right middle finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148522,10,'S63.401S ','Traumatic rupture of unspecified ligament of left index finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148521,10,'S63.401D ','Traumatic rupture of unspecified ligament of left index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148520,10,'S63.401A ','Traumatic rupture of unspecified ligament of left index finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148519,10,'S63.400S ','Traumatic rupture of unspecified ligament of right index finger at metacarpophalangeal and interphalangeal joint, sequela','Y','0000-00-00 00:00:00'),(148518,10,'S63.400D ','Traumatic rupture of unspecified ligament of right index finger at metacarpophalangeal and interphalangeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(148517,10,'S63.400A ','Traumatic rupture of unspecified ligament of right index finger at metacarpophalangeal and interphalangeal joint, initial encounter','Y','0000-00-00 00:00:00'),(148516,10,'S63.399S ','Traumatic rupture of other ligament of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(148515,10,'S63.399D ','Traumatic rupture of other ligament of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148514,10,'S63.399A ','Traumatic rupture of other ligament of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(148513,10,'S63.392S ','Traumatic rupture of other ligament of left wrist, sequela','Y','0000-00-00 00:00:00'),(148512,10,'S63.392D ','Traumatic rupture of other ligament of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148511,10,'S63.392A ','Traumatic rupture of other ligament of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(148510,10,'S63.391S ','Traumatic rupture of other ligament of right wrist, sequela','Y','0000-00-00 00:00:00'),(148509,10,'S63.391D ','Traumatic rupture of other ligament of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148508,10,'S63.391A ','Traumatic rupture of other ligament of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(148507,10,'S63.339S ','Traumatic rupture of unspecified ulnocarpal (palmar) ligament, sequela','Y','0000-00-00 00:00:00'),(148506,10,'S63.339D ','Traumatic rupture of unspecified ulnocarpal (palmar) ligament, subsequent encounter','Y','0000-00-00 00:00:00'),(148505,10,'S63.339A ','Traumatic rupture of unspecified ulnocarpal (palmar) ligament, initial encounter','Y','0000-00-00 00:00:00'),(148504,10,'S63.332S ','Traumatic rupture of left ulnocarpal (palmar) ligament, sequela','Y','0000-00-00 00:00:00'),(148503,10,'S63.332D ','Traumatic rupture of left ulnocarpal (palmar) ligament, subsequent encounter','Y','0000-00-00 00:00:00'),(148502,10,'S63.332A ','Traumatic rupture of left ulnocarpal (palmar) ligament, initial encounter','Y','0000-00-00 00:00:00'),(148501,10,'S63.331S ','Traumatic rupture of right ulnocarpal (palmar) ligament, sequela','Y','0000-00-00 00:00:00'),(148500,10,'S63.331D ','Traumatic rupture of right ulnocarpal (palmar) ligament, subsequent encounter','Y','0000-00-00 00:00:00'),(148499,10,'S63.331A ','Traumatic rupture of right ulnocarpal (palmar) ligament, initial encounter','Y','0000-00-00 00:00:00'),(148498,10,'S63.329S ','Traumatic rupture of unspecified radiocarpal ligament, sequela','Y','0000-00-00 00:00:00'),(148497,10,'S63.329D ','Traumatic rupture of unspecified radiocarpal ligament, subsequent encounter','Y','0000-00-00 00:00:00'),(148496,10,'S63.329A ','Traumatic rupture of unspecified radiocarpal ligament, initial encounter','Y','0000-00-00 00:00:00'),(148495,10,'S63.322S ','Traumatic rupture of left radiocarpal ligament, sequela','Y','0000-00-00 00:00:00'),(148494,10,'S63.322D ','Traumatic rupture of left radiocarpal ligament, subsequent encounter','Y','0000-00-00 00:00:00'),(148493,10,'S63.322A ','Traumatic rupture of left radiocarpal ligament, initial encounter','Y','0000-00-00 00:00:00'),(148492,10,'S63.321S ','Traumatic rupture of right radiocarpal ligament, sequela','Y','0000-00-00 00:00:00'),(148491,10,'S63.321D ','Traumatic rupture of right radiocarpal ligament, subsequent encounter','Y','0000-00-00 00:00:00'),(148490,10,'S63.321A ','Traumatic rupture of right radiocarpal ligament, initial encounter','Y','0000-00-00 00:00:00'),(148489,10,'S63.319S ','Traumatic rupture of collateral ligament of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(148488,10,'S63.319D ','Traumatic rupture of collateral ligament of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148487,10,'S63.319A ','Traumatic rupture of collateral ligament of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(148486,10,'S63.312S ','Traumatic rupture of collateral ligament of left wrist, sequela','Y','0000-00-00 00:00:00'),(148485,10,'S63.312D ','Traumatic rupture of collateral ligament of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148484,10,'S63.312A ','Traumatic rupture of collateral ligament of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(148483,10,'S63.311S ','Traumatic rupture of collateral ligament of right wrist, sequela','Y','0000-00-00 00:00:00'),(148482,10,'S63.311D ','Traumatic rupture of collateral ligament of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148481,10,'S63.311A ','Traumatic rupture of collateral ligament of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(148480,10,'S63.309S ','Traumatic rupture of unspecified ligament of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(148479,10,'S63.309D ','Traumatic rupture of unspecified ligament of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148478,10,'S63.309A ','Traumatic rupture of unspecified ligament of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(148477,10,'S63.302S ','Traumatic rupture of unspecified ligament of left wrist, sequela','Y','0000-00-00 00:00:00'),(148476,10,'S63.302D ','Traumatic rupture of unspecified ligament of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148475,10,'S63.302A ','Traumatic rupture of unspecified ligament of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(148474,10,'S63.301S ','Traumatic rupture of unspecified ligament of right wrist, sequela','Y','0000-00-00 00:00:00'),(148473,10,'S63.301D ','Traumatic rupture of unspecified ligament of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148472,10,'S63.301A ','Traumatic rupture of unspecified ligament of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(148471,10,'S63.299S ','Dislocation of distal interphalangeal joint of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(148470,10,'S63.299D ','Dislocation of distal interphalangeal joint of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148469,10,'S63.299A ','Dislocation of distal interphalangeal joint of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(148468,10,'S63.298S ','Dislocation of distal interphalangeal joint of other finger, sequela','Y','0000-00-00 00:00:00'),(148467,10,'S63.298D ','Dislocation of distal interphalangeal joint of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148466,10,'S63.298A ','Dislocation of distal interphalangeal joint of other finger, initial encounter','Y','0000-00-00 00:00:00'),(148465,10,'S63.297S ','Dislocation of distal interphalangeal joint of left little finger, sequela','Y','0000-00-00 00:00:00'),(148464,10,'S63.297D ','Dislocation of distal interphalangeal joint of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148463,10,'S63.297A ','Dislocation of distal interphalangeal joint of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(148462,10,'S63.296S ','Dislocation of distal interphalangeal joint of right little finger, sequela','Y','0000-00-00 00:00:00'),(148461,10,'S63.296D ','Dislocation of distal interphalangeal joint of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148460,10,'S63.296A ','Dislocation of distal interphalangeal joint of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(148459,10,'S63.295S ','Dislocation of distal interphalangeal joint of left ring finger, sequela','Y','0000-00-00 00:00:00'),(148458,10,'S63.295D ','Dislocation of distal interphalangeal joint of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148457,10,'S63.295A ','Dislocation of distal interphalangeal joint of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148456,10,'S63.294S ','Dislocation of distal interphalangeal joint of right ring finger, sequela','Y','0000-00-00 00:00:00'),(148455,10,'S63.294D ','Dislocation of distal interphalangeal joint of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148454,10,'S63.294A ','Dislocation of distal interphalangeal joint of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148453,10,'S63.293S ','Dislocation of distal interphalangeal joint of left middle finger, sequela','Y','0000-00-00 00:00:00'),(148452,10,'S63.293D ','Dislocation of distal interphalangeal joint of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148451,10,'S63.293A ','Dislocation of distal interphalangeal joint of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148450,10,'S63.292S ','Dislocation of distal interphalangeal joint of right middle finger, sequela','Y','0000-00-00 00:00:00'),(148449,10,'S63.292D ','Dislocation of distal interphalangeal joint of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148448,10,'S63.292A ','Dislocation of distal interphalangeal joint of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148447,10,'S63.291S ','Dislocation of distal interphalangeal joint of left index finger, sequela','Y','0000-00-00 00:00:00'),(148446,10,'S63.291D ','Dislocation of distal interphalangeal joint of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148445,10,'S63.291A ','Dislocation of distal interphalangeal joint of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(148444,10,'S63.290S ','Dislocation of distal interphalangeal joint of right index finger, sequela','Y','0000-00-00 00:00:00'),(148443,10,'S63.290D ','Dislocation of distal interphalangeal joint of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148442,10,'S63.290A ','Dislocation of distal interphalangeal joint of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(148441,10,'S63.289S ','Dislocation of proximal interphalangeal joint of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(148440,10,'S63.289D ','Dislocation of proximal interphalangeal joint of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148439,10,'S63.289A ','Dislocation of proximal interphalangeal joint of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(148438,10,'S63.288S ','Dislocation of proximal interphalangeal joint of other finger, sequela','Y','0000-00-00 00:00:00'),(148437,10,'S63.288D ','Dislocation of proximal interphalangeal joint of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148436,10,'S63.288A ','Dislocation of proximal interphalangeal joint of other finger, initial encounter','Y','0000-00-00 00:00:00'),(148435,10,'S63.287S ','Dislocation of proximal interphalangeal joint of left little finger, sequela','Y','0000-00-00 00:00:00'),(148434,10,'S63.287D ','Dislocation of proximal interphalangeal joint of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148433,10,'S63.287A ','Dislocation of proximal interphalangeal joint of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(148432,10,'S63.286S ','Dislocation of proximal interphalangeal joint of right little finger, sequela','Y','0000-00-00 00:00:00'),(148431,10,'S63.286D ','Dislocation of proximal interphalangeal joint of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148430,10,'S63.286A ','Dislocation of proximal interphalangeal joint of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(148429,10,'S63.285S ','Dislocation of proximal interphalangeal joint of left ring finger, sequela','Y','0000-00-00 00:00:00'),(148428,10,'S63.285D ','Dislocation of proximal interphalangeal joint of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148427,10,'S63.285A ','Dislocation of proximal interphalangeal joint of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148426,10,'S63.284S ','Dislocation of proximal interphalangeal joint of right ring finger, sequela','Y','0000-00-00 00:00:00'),(148425,10,'S63.284D ','Dislocation of proximal interphalangeal joint of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148424,10,'S63.284A ','Dislocation of proximal interphalangeal joint of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148423,10,'S63.283S ','Dislocation of proximal interphalangeal joint of left middle finger, sequela','Y','0000-00-00 00:00:00'),(148422,10,'S63.283D ','Dislocation of proximal interphalangeal joint of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148421,10,'S63.283A ','Dislocation of proximal interphalangeal joint of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148420,10,'S63.282S ','Dislocation of proximal interphalangeal joint of right middle finger, sequela','Y','0000-00-00 00:00:00'),(148419,10,'S63.282D ','Dislocation of proximal interphalangeal joint of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148418,10,'S63.282A ','Dislocation of proximal interphalangeal joint of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148417,10,'S63.281S ','Dislocation of proximal interphalangeal joint of left index finger, sequela','Y','0000-00-00 00:00:00'),(148416,10,'S63.281D ','Dislocation of proximal interphalangeal joint of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148415,10,'S63.281A ','Dislocation of proximal interphalangeal joint of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(148414,10,'S63.280S ','Dislocation of proximal interphalangeal joint of right index finger, sequela','Y','0000-00-00 00:00:00'),(148413,10,'S63.280D ','Dislocation of proximal interphalangeal joint of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148412,10,'S63.280A ','Dislocation of proximal interphalangeal joint of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(148411,10,'S63.279S ','Dislocation of unspecified interphalangeal joint of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(148410,10,'S63.279D ','Dislocation of unspecified interphalangeal joint of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148409,10,'S63.279A ','Dislocation of unspecified interphalangeal joint of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(148408,10,'S63.278S ','Dislocation of unspecified interphalangeal joint of other finger, sequela','Y','0000-00-00 00:00:00'),(148407,10,'S63.278D ','Dislocation of unspecified interphalangeal joint of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148406,10,'S63.278A ','Dislocation of unspecified interphalangeal joint of other finger, initial encounter','Y','0000-00-00 00:00:00'),(148405,10,'S63.277S ','Dislocation of unspecified interphalangeal joint of left little finger, sequela','Y','0000-00-00 00:00:00'),(148404,10,'S63.277D ','Dislocation of unspecified interphalangeal joint of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148403,10,'S63.277A ','Dislocation of unspecified interphalangeal joint of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(148402,10,'S63.276S ','Dislocation of unspecified interphalangeal joint of right little finger, sequela','Y','0000-00-00 00:00:00'),(148401,10,'S63.276D ','Dislocation of unspecified interphalangeal joint of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148400,10,'S63.276A ','Dislocation of unspecified interphalangeal joint of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(148399,10,'S63.275S ','Dislocation of unspecified interphalangeal joint of left ring finger, sequela','Y','0000-00-00 00:00:00'),(148398,10,'S63.275D ','Dislocation of unspecified interphalangeal joint of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148397,10,'S63.275A ','Dislocation of unspecified interphalangeal joint of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148396,10,'S63.274S ','Dislocation of unspecified interphalangeal joint of right ring finger, sequela','Y','0000-00-00 00:00:00'),(148395,10,'S63.274D ','Dislocation of unspecified interphalangeal joint of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148394,10,'S63.274A ','Dislocation of unspecified interphalangeal joint of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148393,10,'S63.273S ','Dislocation of unspecified interphalangeal joint of left middle finger, sequela','Y','0000-00-00 00:00:00'),(148392,10,'S63.273D ','Dislocation of unspecified interphalangeal joint of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148391,10,'S63.273A ','Dislocation of unspecified interphalangeal joint of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148390,10,'S63.272S ','Dislocation of unspecified interphalangeal joint of right middle finger, sequela','Y','0000-00-00 00:00:00'),(148389,10,'S63.272D ','Dislocation of unspecified interphalangeal joint of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148388,10,'S63.272A ','Dislocation of unspecified interphalangeal joint of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148387,10,'S63.271S ','Dislocation of unspecified interphalangeal joint of left index finger, sequela','Y','0000-00-00 00:00:00'),(148386,10,'S63.271D ','Dislocation of unspecified interphalangeal joint of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148385,10,'S63.271A ','Dislocation of unspecified interphalangeal joint of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(148384,10,'S63.270S ','Dislocation of unspecified interphalangeal joint of right index finger, sequela','Y','0000-00-00 00:00:00'),(148383,10,'S63.270D ','Dislocation of unspecified interphalangeal joint of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148382,10,'S63.270A ','Dislocation of unspecified interphalangeal joint of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(148381,10,'S63.269S ','Dislocation of metacarpophalangeal joint of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(148380,10,'S63.269D ','Dislocation of metacarpophalangeal joint of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148379,10,'S63.269A ','Dislocation of metacarpophalangeal joint of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(148378,10,'S63.268S ','Dislocation of metacarpophalangeal joint of other finger, sequela','Y','0000-00-00 00:00:00'),(148377,10,'S63.268D ','Dislocation of metacarpophalangeal joint of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148376,10,'S63.268A ','Dislocation of metacarpophalangeal joint of other finger, initial encounter','Y','0000-00-00 00:00:00'),(148375,10,'S63.267S ','Dislocation of metacarpophalangeal joint of left little finger, sequela','Y','0000-00-00 00:00:00'),(148374,10,'S63.267D ','Dislocation of metacarpophalangeal joint of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148373,10,'S63.267A ','Dislocation of metacarpophalangeal joint of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(148372,10,'S63.266S ','Dislocation of metacarpophalangeal joint of right little finger, sequela','Y','0000-00-00 00:00:00'),(148371,10,'S63.266D ','Dislocation of metacarpophalangeal joint of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148370,10,'S63.266A ','Dislocation of metacarpophalangeal joint of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(148369,10,'S63.265S ','Dislocation of metacarpophalangeal joint of left ring finger, sequela','Y','0000-00-00 00:00:00'),(148368,10,'S63.265D ','Dislocation of metacarpophalangeal joint of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148367,10,'S63.265A ','Dislocation of metacarpophalangeal joint of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148366,10,'S63.264S ','Dislocation of metacarpophalangeal joint of right ring finger, sequela','Y','0000-00-00 00:00:00'),(148365,10,'S63.264D ','Dislocation of metacarpophalangeal joint of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148364,10,'S63.264A ','Dislocation of metacarpophalangeal joint of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148363,10,'S63.263S ','Dislocation of metacarpophalangeal joint of left middle finger, sequela','Y','0000-00-00 00:00:00'),(148362,10,'S63.263D ','Dislocation of metacarpophalangeal joint of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148361,10,'S63.263A ','Dislocation of metacarpophalangeal joint of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148360,10,'S63.262S ','Dislocation of metacarpophalangeal joint of right middle finger, sequela','Y','0000-00-00 00:00:00'),(148359,10,'S63.262D ','Dislocation of metacarpophalangeal joint of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148358,10,'S63.262A ','Dislocation of metacarpophalangeal joint of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148357,10,'S63.261S ','Dislocation of metacarpophalangeal joint of left index finger, sequela','Y','0000-00-00 00:00:00'),(148356,10,'S63.261D ','Dislocation of metacarpophalangeal joint of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148355,10,'S63.261A ','Dislocation of metacarpophalangeal joint of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(148354,10,'S63.260S ','Dislocation of metacarpophalangeal joint of right index finger, sequela','Y','0000-00-00 00:00:00'),(148353,10,'S63.260D ','Dislocation of metacarpophalangeal joint of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148352,10,'S63.260A ','Dislocation of metacarpophalangeal joint of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(148351,10,'S63.259S ','Unspecified dislocation of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(148349,10,'S63.259A ','Unspecified dislocation of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(148350,10,'S63.259D ','Unspecified dislocation of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148348,10,'S63.258S ','Unspecified dislocation of other finger, sequela','Y','0000-00-00 00:00:00'),(148347,10,'S63.258D ','Unspecified dislocation of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148346,10,'S63.258A ','Unspecified dislocation of other finger, initial encounter','Y','0000-00-00 00:00:00'),(148344,10,'S63.257D ','Unspecified dislocation of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148345,10,'S63.257S ','Unspecified dislocation of left little finger, sequela','Y','0000-00-00 00:00:00'),(148343,10,'S63.257A ','Unspecified dislocation of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(148342,10,'S63.256S ','Unspecified dislocation of right little finger, sequela','Y','0000-00-00 00:00:00'),(148341,10,'S63.256D ','Unspecified dislocation of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148340,10,'S63.256A ','Unspecified dislocation of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(148338,10,'S63.255D ','Unspecified dislocation of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148339,10,'S63.255S ','Unspecified dislocation of left ring finger, sequela','Y','0000-00-00 00:00:00'),(148337,10,'S63.255A ','Unspecified dislocation of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148336,10,'S63.254S ','Unspecified dislocation of right ring finger, sequela','Y','0000-00-00 00:00:00'),(148334,10,'S63.254A ','Unspecified dislocation of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148335,10,'S63.254D ','Unspecified dislocation of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148333,10,'S63.253S ','Unspecified dislocation of left middle finger, sequela','Y','0000-00-00 00:00:00'),(148332,10,'S63.253D ','Unspecified dislocation of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148331,10,'S63.253A ','Unspecified dislocation of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148329,10,'S63.252D ','Unspecified dislocation of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148330,10,'S63.252S ','Unspecified dislocation of right middle finger, sequela','Y','0000-00-00 00:00:00'),(148328,10,'S63.252A ','Unspecified dislocation of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148327,10,'S63.251S ','Unspecified dislocation of left index finger, sequela','Y','0000-00-00 00:00:00'),(148326,10,'S63.251D ','Unspecified dislocation of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148324,10,'S63.250S ','Unspecified dislocation of right index finger, sequela','Y','0000-00-00 00:00:00'),(148325,10,'S63.251A ','Unspecified dislocation of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(148323,10,'S63.250D ','Unspecified dislocation of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148322,10,'S63.250A ','Unspecified dislocation of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(148321,10,'S63.249S ','Subluxation of distal interphalangeal joint of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(148320,10,'S63.249D ','Subluxation of distal interphalangeal joint of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148319,10,'S63.249A ','Subluxation of distal interphalangeal joint of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(148318,10,'S63.248S ','Subluxation of distal interphalangeal joint of other finger, sequela','Y','0000-00-00 00:00:00'),(148316,10,'S63.248A ','Subluxation of distal interphalangeal joint of other finger, initial encounter','Y','0000-00-00 00:00:00'),(148317,10,'S63.248D ','Subluxation of distal interphalangeal joint of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148315,10,'S63.247S ','Subluxation of distal interphalangeal joint of left little finger, sequela','Y','0000-00-00 00:00:00'),(148314,10,'S63.247D ','Subluxation of distal interphalangeal joint of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148313,10,'S63.247A ','Subluxation of distal interphalangeal joint of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(148312,10,'S63.246S ','Subluxation of distal interphalangeal joint of right little finger, sequela','Y','0000-00-00 00:00:00'),(148311,10,'S63.246D ','Subluxation of distal interphalangeal joint of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148310,10,'S63.246A ','Subluxation of distal interphalangeal joint of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(148309,10,'S63.245S ','Subluxation of distal interphalangeal joint of left ring finger, sequela','Y','0000-00-00 00:00:00'),(148308,10,'S63.245D ','Subluxation of distal interphalangeal joint of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148307,10,'S63.245A ','Subluxation of distal interphalangeal joint of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148306,10,'S63.244S ','Subluxation of distal interphalangeal joint of right ring finger, sequela','Y','0000-00-00 00:00:00'),(148305,10,'S63.244D ','Subluxation of distal interphalangeal joint of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148304,10,'S63.244A ','Subluxation of distal interphalangeal joint of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148303,10,'S63.243S ','Subluxation of distal interphalangeal joint of left middle finger, sequela','Y','0000-00-00 00:00:00'),(148302,10,'S63.243D ','Subluxation of distal interphalangeal joint of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148301,10,'S63.243A ','Subluxation of distal interphalangeal joint of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148300,10,'S63.242S ','Subluxation of distal interphalangeal joint of right middle finger, sequela','Y','0000-00-00 00:00:00'),(148299,10,'S63.242D ','Subluxation of distal interphalangeal joint of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148298,10,'S63.242A ','Subluxation of distal interphalangeal joint of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148297,10,'S63.241S ','Subluxation of distal interphalangeal joint of left index finger, sequela','Y','0000-00-00 00:00:00'),(148296,10,'S63.241D ','Subluxation of distal interphalangeal joint of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148295,10,'S63.241A ','Subluxation of distal interphalangeal joint of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(148294,10,'S63.240S ','Subluxation of distal interphalangeal joint of right index finger, sequela','Y','0000-00-00 00:00:00'),(148293,10,'S63.240D ','Subluxation of distal interphalangeal joint of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148291,10,'S63.239S ','Subluxation of proximal interphalangeal joint of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(148292,10,'S63.240A ','Subluxation of distal interphalangeal joint of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(148290,10,'S63.239D ','Subluxation of proximal interphalangeal joint of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148289,10,'S63.239A ','Subluxation of proximal interphalangeal joint of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(148288,10,'S63.238S ','Subluxation of proximal interphalangeal joint of other finger, sequela','Y','0000-00-00 00:00:00'),(148287,10,'S63.238D ','Subluxation of proximal interphalangeal joint of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148286,10,'S63.238A ','Subluxation of proximal interphalangeal joint of other finger, initial encounter','Y','0000-00-00 00:00:00'),(148284,10,'S63.237D ','Subluxation of proximal interphalangeal joint of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148285,10,'S63.237S ','Subluxation of proximal interphalangeal joint of left little finger, sequela','Y','0000-00-00 00:00:00'),(148283,10,'S63.237A ','Subluxation of proximal interphalangeal joint of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(148282,10,'S63.236S ','Subluxation of proximal interphalangeal joint of right little finger, sequela','Y','0000-00-00 00:00:00'),(148281,10,'S63.236D ','Subluxation of proximal interphalangeal joint of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148280,10,'S63.236A ','Subluxation of proximal interphalangeal joint of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(148279,10,'S63.235S ','Subluxation of proximal interphalangeal joint of left ring finger, sequela','Y','0000-00-00 00:00:00'),(148277,10,'S63.235A ','Subluxation of proximal interphalangeal joint of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148278,10,'S63.235D ','Subluxation of proximal interphalangeal joint of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148276,10,'S63.234S ','Subluxation of proximal interphalangeal joint of right ring finger, sequela','Y','0000-00-00 00:00:00'),(148275,10,'S63.234D ','Subluxation of proximal interphalangeal joint of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148274,10,'S63.234A ','Subluxation of proximal interphalangeal joint of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148273,10,'S63.233S ','Subluxation of proximal interphalangeal joint of left middle finger, sequela','Y','0000-00-00 00:00:00'),(148272,10,'S63.233D ','Subluxation of proximal interphalangeal joint of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148270,10,'S63.232S ','Subluxation of proximal interphalangeal joint of right middle finger, sequela','Y','0000-00-00 00:00:00'),(148271,10,'S63.233A ','Subluxation of proximal interphalangeal joint of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148269,10,'S63.232D ','Subluxation of proximal interphalangeal joint of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148268,10,'S63.232A ','Subluxation of proximal interphalangeal joint of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148267,10,'S63.231S ','Subluxation of proximal interphalangeal joint of left index finger, sequela','Y','0000-00-00 00:00:00'),(148266,10,'S63.231D ','Subluxation of proximal interphalangeal joint of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148265,10,'S63.231A ','Subluxation of proximal interphalangeal joint of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(148264,10,'S63.230S ','Subluxation of proximal interphalangeal joint of right index finger, sequela','Y','0000-00-00 00:00:00'),(148263,10,'S63.230D ','Subluxation of proximal interphalangeal joint of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148262,10,'S63.230A ','Subluxation of proximal interphalangeal joint of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(148261,10,'S63.229S ','Subluxation of unspecified interphalangeal joint of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(148260,10,'S63.229D ','Subluxation of unspecified interphalangeal joint of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148258,10,'S63.228S ','Subluxation of unspecified interphalangeal joint of other finger, sequela','Y','0000-00-00 00:00:00'),(148259,10,'S63.229A ','Subluxation of unspecified interphalangeal joint of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(148257,10,'S63.228D ','Subluxation of unspecified interphalangeal joint of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148256,10,'S63.228A ','Subluxation of unspecified interphalangeal joint of other finger, initial encounter','Y','0000-00-00 00:00:00'),(148255,10,'S63.227S ','Subluxation of unspecified interphalangeal joint of left little finger, sequela','Y','0000-00-00 00:00:00'),(148254,10,'S63.227D ','Subluxation of unspecified interphalangeal joint of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148253,10,'S63.227A ','Subluxation of unspecified interphalangeal joint of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(148252,10,'S63.226S ','Subluxation of unspecified interphalangeal joint of right little finger, sequela','Y','0000-00-00 00:00:00'),(148251,10,'S63.226D ','Subluxation of unspecified interphalangeal joint of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148250,10,'S63.226A ','Subluxation of unspecified interphalangeal joint of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(148249,10,'S63.225S ','Subluxation of unspecified interphalangeal joint of left ring finger, sequela','Y','0000-00-00 00:00:00'),(148247,10,'S63.225A ','Subluxation of unspecified interphalangeal joint of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148248,10,'S63.225D ','Subluxation of unspecified interphalangeal joint of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148246,10,'S63.224S ','Subluxation of unspecified interphalangeal joint of right ring finger, sequela','Y','0000-00-00 00:00:00'),(148245,10,'S63.224D ','Subluxation of unspecified interphalangeal joint of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148244,10,'S63.224A ','Subluxation of unspecified interphalangeal joint of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148243,10,'S63.223S ','Subluxation of unspecified interphalangeal joint of left middle finger, sequela','Y','0000-00-00 00:00:00'),(148242,10,'S63.223D ','Subluxation of unspecified interphalangeal joint of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148240,10,'S63.222S ','Subluxation of unspecified interphalangeal joint of right middle finger, sequela','Y','0000-00-00 00:00:00'),(148241,10,'S63.223A ','Subluxation of unspecified interphalangeal joint of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148239,10,'S63.222D ','Subluxation of unspecified interphalangeal joint of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148238,10,'S63.222A ','Subluxation of unspecified interphalangeal joint of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148237,10,'S63.221S ','Subluxation of unspecified interphalangeal joint of left index finger, sequela','Y','0000-00-00 00:00:00'),(148236,10,'S63.221D ','Subluxation of unspecified interphalangeal joint of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148235,10,'S63.221A ','Subluxation of unspecified interphalangeal joint of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(148234,10,'S63.220S ','Subluxation of unspecified interphalangeal joint of right index finger, sequela','Y','0000-00-00 00:00:00'),(148233,10,'S63.220D ','Subluxation of unspecified interphalangeal joint of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148231,10,'S63.219S ','Subluxation of metacarpophalangeal joint of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(148232,10,'S63.220A ','Subluxation of unspecified interphalangeal joint of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(148230,10,'S63.219D ','Subluxation of metacarpophalangeal joint of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148229,10,'S63.219A ','Subluxation of metacarpophalangeal joint of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(148228,10,'S63.218S ','Subluxation of metacarpophalangeal joint of other finger, sequela','Y','0000-00-00 00:00:00'),(148226,10,'S63.218A ','Subluxation of metacarpophalangeal joint of other finger, initial encounter','Y','0000-00-00 00:00:00'),(148227,10,'S63.218D ','Subluxation of metacarpophalangeal joint of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148225,10,'S63.217S ','Subluxation of metacarpophalangeal joint of left little finger, sequela','Y','0000-00-00 00:00:00'),(148224,10,'S63.217D ','Subluxation of metacarpophalangeal joint of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148223,10,'S63.217A ','Subluxation of metacarpophalangeal joint of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(148222,10,'S63.216S ','Subluxation of metacarpophalangeal joint of right little finger, sequela','Y','0000-00-00 00:00:00'),(148220,10,'S63.216A ','Subluxation of metacarpophalangeal joint of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(148221,10,'S63.216D ','Subluxation of metacarpophalangeal joint of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148219,10,'S63.215S ','Subluxation of metacarpophalangeal joint of left ring finger, sequela','Y','0000-00-00 00:00:00'),(148218,10,'S63.215D ','Subluxation of metacarpophalangeal joint of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148217,10,'S63.215A ','Subluxation of metacarpophalangeal joint of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148215,10,'S63.214D ','Subluxation of metacarpophalangeal joint of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148216,10,'S63.214S ','Subluxation of metacarpophalangeal joint of right ring finger, sequela','Y','0000-00-00 00:00:00'),(148214,10,'S63.214A ','Subluxation of metacarpophalangeal joint of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148213,10,'S63.213S ','Subluxation of metacarpophalangeal joint of left middle finger, sequela','Y','0000-00-00 00:00:00'),(148212,10,'S63.213D ','Subluxation of metacarpophalangeal joint of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148211,10,'S63.213A ','Subluxation of metacarpophalangeal joint of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148209,10,'S63.212D ','Subluxation of metacarpophalangeal joint of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148210,10,'S63.212S ','Subluxation of metacarpophalangeal joint of right middle finger, sequela','Y','0000-00-00 00:00:00'),(148208,10,'S63.212A ','Subluxation of metacarpophalangeal joint of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148207,10,'S63.211S ','Subluxation of metacarpophalangeal joint of left index finger, sequela','Y','0000-00-00 00:00:00'),(148206,10,'S63.211D ','Subluxation of metacarpophalangeal joint of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148204,10,'S63.210S ','Subluxation of metacarpophalangeal joint of right index finger, sequela','Y','0000-00-00 00:00:00'),(148205,10,'S63.211A ','Subluxation of metacarpophalangeal joint of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(148203,10,'S63.210D ','Subluxation of metacarpophalangeal joint of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148202,10,'S63.210A ','Subluxation of metacarpophalangeal joint of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(148200,10,'S63.209D ','Unspecified subluxation of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148201,10,'S63.209S ','Unspecified subluxation of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(148199,10,'S63.209A ','Unspecified subluxation of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(148198,10,'S63.208S ','Unspecified subluxation of other finger, sequela','Y','0000-00-00 00:00:00'),(148196,10,'S63.208A ','Unspecified subluxation of other finger, initial encounter','Y','0000-00-00 00:00:00'),(148197,10,'S63.208D ','Unspecified subluxation of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148195,10,'S63.207S ','Unspecified subluxation of left little finger, sequela','Y','0000-00-00 00:00:00'),(148194,10,'S63.207D ','Unspecified subluxation of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148193,10,'S63.207A ','Unspecified subluxation of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(148192,10,'S63.206S ','Unspecified subluxation of right little finger, sequela','Y','0000-00-00 00:00:00'),(148191,10,'S63.206D ','Unspecified subluxation of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148189,10,'S63.205S ','Unspecified subluxation of left ring finger, sequela','Y','0000-00-00 00:00:00'),(148190,10,'S63.206A ','Unspecified subluxation of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(148188,10,'S63.205D ','Unspecified subluxation of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148187,10,'S63.205A ','Unspecified subluxation of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148186,10,'S63.204S ','Unspecified subluxation of right ring finger, sequela','Y','0000-00-00 00:00:00'),(148185,10,'S63.204D ','Unspecified subluxation of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148183,10,'S63.203S ','Unspecified subluxation of left middle finger, sequela','Y','0000-00-00 00:00:00'),(148184,10,'S63.204A ','Unspecified subluxation of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(148182,10,'S63.203D ','Unspecified subluxation of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148181,10,'S63.203A ','Unspecified subluxation of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148180,10,'S63.202S ','Unspecified subluxation of right middle finger, sequela','Y','0000-00-00 00:00:00'),(148179,10,'S63.202D ','Unspecified subluxation of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148177,10,'S63.201S ','Unspecified subluxation of left index finger, sequela','Y','0000-00-00 00:00:00'),(148178,10,'S63.202A ','Unspecified subluxation of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(148176,10,'S63.201D ','Unspecified subluxation of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148175,10,'S63.201A ','Unspecified subluxation of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(148174,10,'S63.200S ','Unspecified subluxation of right index finger, sequela','Y','0000-00-00 00:00:00'),(148173,10,'S63.200D ','Unspecified subluxation of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(148172,10,'S63.200A ','Unspecified subluxation of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(148171,10,'S63.126S ','Dislocation of interphalangeal joint of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(148170,10,'S63.126D ','Dislocation of interphalangeal joint of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148169,10,'S63.126A ','Dislocation of interphalangeal joint of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(148168,10,'S63.125S ','Dislocation of interphalangeal joint of left thumb, sequela','Y','0000-00-00 00:00:00'),(148167,10,'S63.125D ','Dislocation of interphalangeal joint of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148166,10,'S63.125A ','Dislocation of interphalangeal joint of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(148165,10,'S63.124S ','Dislocation of interphalangeal joint of right thumb, sequela','Y','0000-00-00 00:00:00'),(148164,10,'S63.124D ','Dislocation of interphalangeal joint of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148163,10,'S63.124A ','Dislocation of interphalangeal joint of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(148162,10,'S63.123S ','Subluxation of interphalangeal joint of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(148161,10,'S63.123D ','Subluxation of interphalangeal joint of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148160,10,'S63.123A ','Subluxation of interphalangeal joint of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(148159,10,'S63.122S ','Subluxation of interphalangeal joint of left thumb, sequela','Y','0000-00-00 00:00:00'),(148158,10,'S63.122D ','Subluxation of interphalangeal joint of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148157,10,'S63.122A ','Subluxation of interphalangeal joint of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(148156,10,'S63.121S ','Subluxation of interphalangeal joint of right thumb, sequela','Y','0000-00-00 00:00:00'),(148155,10,'S63.121D ','Subluxation of interphalangeal joint of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148154,10,'S63.121A ','Subluxation of interphalangeal joint of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(148153,10,'S63.116S ','Dislocation of metacarpophalangeal joint of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(148152,10,'S63.116D ','Dislocation of metacarpophalangeal joint of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148151,10,'S63.116A ','Dislocation of metacarpophalangeal joint of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(148150,10,'S63.115S ','Dislocation of metacarpophalangeal joint of left thumb, sequela','Y','0000-00-00 00:00:00'),(148149,10,'S63.115D ','Dislocation of metacarpophalangeal joint of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148148,10,'S63.115A ','Dislocation of metacarpophalangeal joint of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(148147,10,'S63.114S ','Dislocation of metacarpophalangeal joint of right thumb, sequela','Y','0000-00-00 00:00:00'),(148146,10,'S63.114D ','Dislocation of metacarpophalangeal joint of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148145,10,'S63.114A ','Dislocation of metacarpophalangeal joint of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(148144,10,'S63.113S ','Subluxation of metacarpophalangeal joint of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(148143,10,'S63.113D ','Subluxation of metacarpophalangeal joint of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148142,10,'S63.113A ','Subluxation of metacarpophalangeal joint of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(148141,10,'S63.112S ','Subluxation of metacarpophalangeal joint of left thumb, sequela','Y','0000-00-00 00:00:00'),(148140,10,'S63.112D ','Subluxation of metacarpophalangeal joint of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148139,10,'S63.112A ','Subluxation of metacarpophalangeal joint of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(148138,10,'S63.111S ','Subluxation of metacarpophalangeal joint of right thumb, sequela','Y','0000-00-00 00:00:00'),(148137,10,'S63.111D ','Subluxation of metacarpophalangeal joint of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148136,10,'S63.111A ','Subluxation of metacarpophalangeal joint of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(148135,10,'S63.106S ','Unspecified dislocation of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(148134,10,'S63.106D ','Unspecified dislocation of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148133,10,'S63.106A ','Unspecified dislocation of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(148132,10,'S63.105S ','Unspecified dislocation of left thumb, sequela','Y','0000-00-00 00:00:00'),(148131,10,'S63.105D ','Unspecified dislocation of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148130,10,'S63.105A ','Unspecified dislocation of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(148129,10,'S63.104S ','Unspecified dislocation of right thumb, sequela','Y','0000-00-00 00:00:00'),(148128,10,'S63.104D ','Unspecified dislocation of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148127,10,'S63.104A ','Unspecified dislocation of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(148126,10,'S63.103S ','Unspecified subluxation of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(148125,10,'S63.103D ','Unspecified subluxation of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148124,10,'S63.103A ','Unspecified subluxation of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(148123,10,'S63.102S ','Unspecified subluxation of left thumb, sequela','Y','0000-00-00 00:00:00'),(148122,10,'S63.102D ','Unspecified subluxation of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148120,10,'S63.101S ','Unspecified subluxation of right thumb, sequela','Y','0000-00-00 00:00:00'),(148121,10,'S63.102A ','Unspecified subluxation of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(148119,10,'S63.101D ','Unspecified subluxation of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148118,10,'S63.101A ','Unspecified subluxation of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(148117,10,'S63.096S ','Other dislocation of unspecified wrist and hand, sequela','Y','0000-00-00 00:00:00'),(148116,10,'S63.096D ','Other dislocation of unspecified wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148114,10,'S63.095S ','Other dislocation of left wrist and hand, sequela','Y','0000-00-00 00:00:00'),(148115,10,'S63.096A ','Other dislocation of unspecified wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(148113,10,'S63.095D ','Other dislocation of left wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148112,10,'S63.095A ','Other dislocation of left wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(148111,10,'S63.094S ','Other dislocation of right wrist and hand, sequela','Y','0000-00-00 00:00:00'),(148110,10,'S63.094D ','Other dislocation of right wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148109,10,'S63.094A ','Other dislocation of right wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(148108,10,'S63.093S ','Other subluxation of unspecified wrist and hand, sequela','Y','0000-00-00 00:00:00'),(148107,10,'S63.093D ','Other subluxation of unspecified wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148106,10,'S63.093A ','Other subluxation of unspecified wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(148105,10,'S63.092S ','Other subluxation of left wrist and hand, sequela','Y','0000-00-00 00:00:00'),(148104,10,'S63.092D ','Other subluxation of left wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148103,10,'S63.092A ','Other subluxation of left wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(148102,10,'S63.091S ','Other subluxation of right wrist and hand, sequela','Y','0000-00-00 00:00:00'),(148101,10,'S63.091D ','Other subluxation of right wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148099,10,'S63.076S ','Dislocation of distal end of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(148100,10,'S63.091A ','Other subluxation of right wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(148098,10,'S63.076D ','Dislocation of distal end of unspecified ulna, subsequent encounter','Y','0000-00-00 00:00:00'),(148097,10,'S63.076A ','Dislocation of distal end of unspecified ulna, initial encounter','Y','0000-00-00 00:00:00'),(148095,10,'S63.075D ','Dislocation of distal end of left ulna, subsequent encounter','Y','0000-00-00 00:00:00'),(148096,10,'S63.075S ','Dislocation of distal end of left ulna, sequela','Y','0000-00-00 00:00:00'),(148094,10,'S63.075A ','Dislocation of distal end of left ulna, initial encounter','Y','0000-00-00 00:00:00'),(148093,10,'S63.074S ','Dislocation of distal end of right ulna, sequela','Y','0000-00-00 00:00:00'),(148091,10,'S63.074A ','Dislocation of distal end of right ulna, initial encounter','Y','0000-00-00 00:00:00'),(148092,10,'S63.074D ','Dislocation of distal end of right ulna, subsequent encounter','Y','0000-00-00 00:00:00'),(148090,10,'S63.073S ','Subluxation of distal end of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(148089,10,'S63.073D ','Subluxation of distal end of unspecified ulna, subsequent encounter','Y','0000-00-00 00:00:00'),(148087,10,'S63.072S ','Subluxation of distal end of left ulna, sequela','Y','0000-00-00 00:00:00'),(148088,10,'S63.073A ','Subluxation of distal end of unspecified ulna, initial encounter','Y','0000-00-00 00:00:00'),(148086,10,'S63.072D ','Subluxation of distal end of left ulna, subsequent encounter','Y','0000-00-00 00:00:00'),(148085,10,'S63.072A ','Subluxation of distal end of left ulna, initial encounter','Y','0000-00-00 00:00:00'),(148083,10,'S63.071D ','Subluxation of distal end of right ulna, subsequent encounter','Y','0000-00-00 00:00:00'),(148084,10,'S63.071S ','Subluxation of distal end of right ulna, sequela','Y','0000-00-00 00:00:00'),(148082,10,'S63.071A ','Subluxation of distal end of right ulna, initial encounter','Y','0000-00-00 00:00:00'),(148081,10,'S63.066S ','Dislocation of metacarpal (bone), proximal end of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(148080,10,'S63.066D ','Dislocation of metacarpal (bone), proximal end of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148079,10,'S63.066A ','Dislocation of metacarpal (bone), proximal end of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(148078,10,'S63.065S ','Dislocation of metacarpal (bone), proximal end of left hand, sequela','Y','0000-00-00 00:00:00'),(148077,10,'S63.065D ','Dislocation of metacarpal (bone), proximal end of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148076,10,'S63.065A ','Dislocation of metacarpal (bone), proximal end of left hand, initial encounter','Y','0000-00-00 00:00:00'),(148075,10,'S63.064S ','Dislocation of metacarpal (bone), proximal end of right hand, sequela','Y','0000-00-00 00:00:00'),(148073,10,'S63.064A ','Dislocation of metacarpal (bone), proximal end of right hand, initial encounter','Y','0000-00-00 00:00:00'),(148074,10,'S63.064D ','Dislocation of metacarpal (bone), proximal end of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148072,10,'S63.063S ','Subluxation of metacarpal (bone), proximal end of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(148071,10,'S63.063D ','Subluxation of metacarpal (bone), proximal end of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148070,10,'S63.063A ','Subluxation of metacarpal (bone), proximal end of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(148069,10,'S63.062S ','Subluxation of metacarpal (bone), proximal end of left hand, sequela','Y','0000-00-00 00:00:00'),(148068,10,'S63.062D ','Subluxation of metacarpal (bone), proximal end of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148066,10,'S63.061S ','Subluxation of metacarpal (bone), proximal end of right hand, sequela','Y','0000-00-00 00:00:00'),(148067,10,'S63.062A ','Subluxation of metacarpal (bone), proximal end of left hand, initial encounter','Y','0000-00-00 00:00:00'),(148065,10,'S63.061D ','Subluxation of metacarpal (bone), proximal end of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148064,10,'S63.061A ','Subluxation of metacarpal (bone), proximal end of right hand, initial encounter','Y','0000-00-00 00:00:00'),(148063,10,'S63.056S ','Dislocation of other carpometacarpal joint of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(148062,10,'S63.056D ','Dislocation of other carpometacarpal joint of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148060,10,'S63.055S ','Dislocation of other carpometacarpal joint of left hand, sequela','Y','0000-00-00 00:00:00'),(148061,10,'S63.056A ','Dislocation of other carpometacarpal joint of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(148059,10,'S63.055D ','Dislocation of other carpometacarpal joint of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148058,10,'S63.055A ','Dislocation of other carpometacarpal joint of left hand, initial encounter','Y','0000-00-00 00:00:00'),(148057,10,'S63.054S ','Dislocation of other carpometacarpal joint of right hand, sequela','Y','0000-00-00 00:00:00'),(148055,10,'S63.054A ','Dislocation of other carpometacarpal joint of right hand, initial encounter','Y','0000-00-00 00:00:00'),(148056,10,'S63.054D ','Dislocation of other carpometacarpal joint of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148054,10,'S63.053S ','Subluxation of other carpometacarpal joint of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(148053,10,'S63.053D ','Subluxation of other carpometacarpal joint of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148052,10,'S63.053A ','Subluxation of other carpometacarpal joint of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(148050,10,'S63.052D ','Subluxation of other carpometacarpal joint of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148051,10,'S63.052S ','Subluxation of other carpometacarpal joint of left hand, sequela','Y','0000-00-00 00:00:00'),(148049,10,'S63.052A ','Subluxation of other carpometacarpal joint of left hand, initial encounter','Y','0000-00-00 00:00:00'),(148048,10,'S63.051S ','Subluxation of other carpometacarpal joint of right hand, sequela','Y','0000-00-00 00:00:00'),(148047,10,'S63.051D ','Subluxation of other carpometacarpal joint of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(148045,10,'S63.046S ','Dislocation of carpometacarpal joint of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(148046,10,'S63.051A ','Subluxation of other carpometacarpal joint of right hand, initial encounter','Y','0000-00-00 00:00:00'),(148044,10,'S63.046D ','Dislocation of carpometacarpal joint of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148043,10,'S63.046A ','Dislocation of carpometacarpal joint of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(148042,10,'S63.045S ','Dislocation of carpometacarpal joint of left thumb, sequela','Y','0000-00-00 00:00:00'),(148040,10,'S63.045A ','Dislocation of carpometacarpal joint of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(148041,10,'S63.045D ','Dislocation of carpometacarpal joint of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148039,10,'S63.044S ','Dislocation of carpometacarpal joint of right thumb, sequela','Y','0000-00-00 00:00:00'),(148038,10,'S63.044D ','Dislocation of carpometacarpal joint of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148037,10,'S63.044A ','Dislocation of carpometacarpal joint of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(148035,10,'S63.043D ','Subluxation of carpometacarpal joint of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148036,10,'S63.043S ','Subluxation of carpometacarpal joint of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(148034,10,'S63.043A ','Subluxation of carpometacarpal joint of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(148033,10,'S63.042S ','Subluxation of carpometacarpal joint of left thumb, sequela','Y','0000-00-00 00:00:00'),(148032,10,'S63.042D ','Subluxation of carpometacarpal joint of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148030,10,'S63.041S ','Subluxation of carpometacarpal joint of right thumb, sequela','Y','0000-00-00 00:00:00'),(148031,10,'S63.042A ','Subluxation of carpometacarpal joint of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(148029,10,'S63.041D ','Subluxation of carpometacarpal joint of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(148028,10,'S63.041A ','Subluxation of carpometacarpal joint of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(148027,10,'S63.036S ','Dislocation of midcarpal joint of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(148025,10,'S63.036A ','Dislocation of midcarpal joint of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(148026,10,'S63.036D ','Dislocation of midcarpal joint of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148024,10,'S63.035S ','Dislocation of midcarpal joint of left wrist, sequela','Y','0000-00-00 00:00:00'),(148023,10,'S63.035D ','Dislocation of midcarpal joint of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148021,10,'S63.034S ','Dislocation of midcarpal joint of right wrist, sequela','Y','0000-00-00 00:00:00'),(148022,10,'S63.035A ','Dislocation of midcarpal joint of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(148020,10,'S63.034D ','Dislocation of midcarpal joint of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148018,10,'S63.033S ','Subluxation of midcarpal joint of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(148019,10,'S63.034A ','Dislocation of midcarpal joint of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(148017,10,'S63.033D ','Subluxation of midcarpal joint of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148016,10,'S63.033A ','Subluxation of midcarpal joint of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(148014,10,'S63.032D ','Subluxation of midcarpal joint of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148015,10,'S63.032S ','Subluxation of midcarpal joint of left wrist, sequela','Y','0000-00-00 00:00:00'),(148013,10,'S63.032A ','Subluxation of midcarpal joint of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(148012,10,'S63.031S ','Subluxation of midcarpal joint of right wrist, sequela','Y','0000-00-00 00:00:00'),(148010,10,'S63.031A ','Subluxation of midcarpal joint of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(148011,10,'S63.031D ','Subluxation of midcarpal joint of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148009,10,'S63.026S ','Dislocation of radiocarpal joint of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(148008,10,'S63.026D ','Dislocation of radiocarpal joint of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148006,10,'S63.025S ','Dislocation of radiocarpal joint of left wrist, sequela','Y','0000-00-00 00:00:00'),(148007,10,'S63.026A ','Dislocation of radiocarpal joint of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(148005,10,'S63.025D ','Dislocation of radiocarpal joint of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148004,10,'S63.025A ','Dislocation of radiocarpal joint of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(148002,10,'S63.024D ','Dislocation of radiocarpal joint of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(148003,10,'S63.024S ','Dislocation of radiocarpal joint of right wrist, sequela','Y','0000-00-00 00:00:00'),(148001,10,'S63.024A ','Dislocation of radiocarpal joint of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(148000,10,'S63.023S ','Subluxation of radiocarpal joint of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(147999,10,'S63.023D ','Subluxation of radiocarpal joint of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(147997,10,'S63.022S ','Subluxation of radiocarpal joint of left wrist, sequela','Y','0000-00-00 00:00:00'),(147998,10,'S63.023A ','Subluxation of radiocarpal joint of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(147996,10,'S63.022D ','Subluxation of radiocarpal joint of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(147994,10,'S63.021S ','Subluxation of radiocarpal joint of right wrist, sequela','Y','0000-00-00 00:00:00'),(147995,10,'S63.022A ','Subluxation of radiocarpal joint of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(147993,10,'S63.021D ','Subluxation of radiocarpal joint of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(147992,10,'S63.021A ','Subluxation of radiocarpal joint of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(147991,10,'S63.016S ','Dislocation of distal radioulnar joint of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(147989,10,'S63.016A ','Dislocation of distal radioulnar joint of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(147990,10,'S63.016D ','Dislocation of distal radioulnar joint of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(147988,10,'S63.015S ','Dislocation of distal radioulnar joint of left wrist, sequela','Y','0000-00-00 00:00:00'),(147987,10,'S63.015D ','Dislocation of distal radioulnar joint of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(147985,10,'S63.014S ','Dislocation of distal radioulnar joint of right wrist, sequela','Y','0000-00-00 00:00:00'),(147986,10,'S63.015A ','Dislocation of distal radioulnar joint of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(147984,10,'S63.014D ','Dislocation of distal radioulnar joint of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(147983,10,'S63.014A ','Dislocation of distal radioulnar joint of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(147982,10,'S63.013S ','Subluxation of distal radioulnar joint of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(147980,10,'S63.013A ','Subluxation of distal radioulnar joint of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(147981,10,'S63.013D ','Subluxation of distal radioulnar joint of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(147979,10,'S63.012S ','Subluxation of distal radioulnar joint of left wrist, sequela','Y','0000-00-00 00:00:00'),(147978,10,'S63.012D ','Subluxation of distal radioulnar joint of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(147976,10,'S63.011S ','Subluxation of distal radioulnar joint of right wrist, sequela','Y','0000-00-00 00:00:00'),(147977,10,'S63.012A ','Subluxation of distal radioulnar joint of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(147975,10,'S63.011D ','Subluxation of distal radioulnar joint of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(147974,10,'S63.011A ','Subluxation of distal radioulnar joint of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(147973,10,'S63.006S ','Unspecified dislocation of unspecified wrist and hand, sequela','Y','0000-00-00 00:00:00'),(147971,10,'S63.006A ','Unspecified dislocation of unspecified wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(147972,10,'S63.006D ','Unspecified dislocation of unspecified wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(147970,10,'S63.005S ','Unspecified dislocation of left wrist and hand, sequela','Y','0000-00-00 00:00:00'),(147969,10,'S63.005D ','Unspecified dislocation of left wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(147967,10,'S63.004S ','Unspecified dislocation of right wrist and hand, sequela','Y','0000-00-00 00:00:00'),(147968,10,'S63.005A ','Unspecified dislocation of left wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(147966,10,'S63.004D ','Unspecified dislocation of right wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(147965,10,'S63.004A ','Unspecified dislocation of right wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(147964,10,'S63.003S ','Unspecified subluxation of unspecified wrist and hand, sequela','Y','0000-00-00 00:00:00'),(147963,10,'S63.003D ','Unspecified subluxation of unspecified wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(147962,10,'S63.003A ','Unspecified subluxation of unspecified wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(147961,10,'S63.002S ','Unspecified subluxation of left wrist and hand, sequela','Y','0000-00-00 00:00:00'),(147960,10,'S63.002D ','Unspecified subluxation of left wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(147959,10,'S63.002A ','Unspecified subluxation of left wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(147958,10,'S63.001S ','Unspecified subluxation of right wrist and hand, sequela','Y','0000-00-00 00:00:00'),(147957,10,'S63.001D ','Unspecified subluxation of right wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(147955,10,'S62.92XS ','Unspecified fracture of left wrist and hand, sequela','Y','0000-00-00 00:00:00'),(147956,10,'S63.001A ','Unspecified subluxation of right wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(147954,10,'S62.92XP ','Unspecified fracture of left wrist and hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147953,10,'S62.92XK ','Unspecified fracture of left wrist and hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147952,10,'S62.92XG ','Unspecified fracture of left wrist and hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147951,10,'S62.92XD ','Unspecified fracture of left wrist and hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147950,10,'S62.92XB ','Unspecified fracture of left wrist and hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147949,10,'S62.92XA ','Unspecified fracture of left wrist and hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147948,10,'S62.91XS ','Unspecified fracture of right wrist and hand, sequela','Y','0000-00-00 00:00:00'),(147947,10,'S62.91XP ','Unspecified fracture of right wrist and hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147946,10,'S62.91XK ','Unspecified fracture of right wrist and hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147945,10,'S62.91XG ','Unspecified fracture of right wrist and hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147944,10,'S62.91XD ','Unspecified fracture of right wrist and hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147943,10,'S62.91XB ','Unspecified fracture of right wrist and hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147942,10,'S62.91XA ','Unspecified fracture of right wrist and hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147941,10,'S62.90XS ','Unspecified fracture of unspecified wrist and hand, sequela','Y','0000-00-00 00:00:00'),(147940,10,'S62.90XP ','Unspecified fracture of unspecified wrist and hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147939,10,'S62.90XK ','Unspecified fracture of unspecified wrist and hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147938,10,'S62.90XG ','Unspecified fracture of unspecified wrist and hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147937,10,'S62.90XD ','Unspecified fracture of unspecified wrist and hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147936,10,'S62.90XB ','Unspecified fracture of unspecified wrist and hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147935,10,'S62.90XA ','Unspecified fracture of unspecified wrist and hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147934,10,'S62.669S ','Nondisplaced fracture of distal phalanx of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(147933,10,'S62.669P ','Nondisplaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147932,10,'S62.669K ','Nondisplaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147931,10,'S62.669G ','Nondisplaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147930,10,'S62.669D ','Nondisplaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147929,10,'S62.669B ','Nondisplaced fracture of distal phalanx of unspecified finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147928,10,'S62.669A ','Nondisplaced fracture of distal phalanx of unspecified finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147927,10,'S62.668S ','Nondisplaced fracture of distal phalanx of other finger, sequela','Y','0000-00-00 00:00:00'),(147926,10,'S62.668P ','Nondisplaced fracture of distal phalanx of other finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147925,10,'S62.668K ','Nondisplaced fracture of distal phalanx of other finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147924,10,'S62.668G ','Nondisplaced fracture of distal phalanx of other finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147923,10,'S62.668D ','Nondisplaced fracture of distal phalanx of other finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147922,10,'S62.668B ','Nondisplaced fracture of distal phalanx of other finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147921,10,'S62.668A ','Nondisplaced fracture of distal phalanx of other finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147920,10,'S62.667S ','Nondisplaced fracture of distal phalanx of left little finger, sequela','Y','0000-00-00 00:00:00'),(147919,10,'S62.667P ','Nondisplaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147918,10,'S62.667K ','Nondisplaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147917,10,'S62.667G ','Nondisplaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147916,10,'S62.667D ','Nondisplaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147915,10,'S62.667B ','Nondisplaced fracture of distal phalanx of left little finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147914,10,'S62.667A ','Nondisplaced fracture of distal phalanx of left little finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147913,10,'S62.666S ','Nondisplaced fracture of distal phalanx of right little finger, sequela','Y','0000-00-00 00:00:00'),(147912,10,'S62.666P ','Nondisplaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147911,10,'S62.666K ','Nondisplaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147910,10,'S62.666G ','Nondisplaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147909,10,'S62.666D ','Nondisplaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147908,10,'S62.666B ','Nondisplaced fracture of distal phalanx of right little finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147907,10,'S62.666A ','Nondisplaced fracture of distal phalanx of right little finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147906,10,'S62.665S ','Nondisplaced fracture of distal phalanx of left ring finger, sequela','Y','0000-00-00 00:00:00'),(147905,10,'S62.665P ','Nondisplaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147904,10,'S62.665K ','Nondisplaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147903,10,'S62.665G ','Nondisplaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147902,10,'S62.665D ','Nondisplaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147901,10,'S62.665B ','Nondisplaced fracture of distal phalanx of left ring finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147900,10,'S62.665A ','Nondisplaced fracture of distal phalanx of left ring finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147899,10,'S62.664S ','Nondisplaced fracture of distal phalanx of right ring finger, sequela','Y','0000-00-00 00:00:00'),(147898,10,'S62.664P ','Nondisplaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147897,10,'S62.664K ','Nondisplaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147896,10,'S62.664G ','Nondisplaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147895,10,'S62.664D ','Nondisplaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147894,10,'S62.664B ','Nondisplaced fracture of distal phalanx of right ring finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147893,10,'S62.664A ','Nondisplaced fracture of distal phalanx of right ring finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147892,10,'S62.663S ','Nondisplaced fracture of distal phalanx of left middle finger, sequela','Y','0000-00-00 00:00:00'),(147891,10,'S62.663P ','Nondisplaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147890,10,'S62.663K ','Nondisplaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147889,10,'S62.663G ','Nondisplaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147888,10,'S62.663D ','Nondisplaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147887,10,'S62.663B ','Nondisplaced fracture of distal phalanx of left middle finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147886,10,'S62.663A ','Nondisplaced fracture of distal phalanx of left middle finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147885,10,'S62.662S ','Nondisplaced fracture of distal phalanx of right middle finger, sequela','Y','0000-00-00 00:00:00'),(147884,10,'S62.662P ','Nondisplaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147883,10,'S62.662K ','Nondisplaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147882,10,'S62.662G ','Nondisplaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147881,10,'S62.662D ','Nondisplaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147880,10,'S62.662B ','Nondisplaced fracture of distal phalanx of right middle finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147879,10,'S62.662A ','Nondisplaced fracture of distal phalanx of right middle finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147878,10,'S62.661S ','Nondisplaced fracture of distal phalanx of left index finger, sequela','Y','0000-00-00 00:00:00'),(147877,10,'S62.661P ','Nondisplaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147876,10,'S62.661K ','Nondisplaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147875,10,'S62.661G ','Nondisplaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147874,10,'S62.661D ','Nondisplaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147873,10,'S62.661B ','Nondisplaced fracture of distal phalanx of left index finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147872,10,'S62.661A ','Nondisplaced fracture of distal phalanx of left index finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147871,10,'S62.660S ','Nondisplaced fracture of distal phalanx of right index finger, sequela','Y','0000-00-00 00:00:00'),(147870,10,'S62.660P ','Nondisplaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147869,10,'S62.660K ','Nondisplaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147868,10,'S62.660G ','Nondisplaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147867,10,'S62.660D ','Nondisplaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147866,10,'S62.660B ','Nondisplaced fracture of distal phalanx of right index finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147865,10,'S62.660A ','Nondisplaced fracture of distal phalanx of right index finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147864,10,'S62.659S ','Nondisplaced fracture of middle phalanx of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(147863,10,'S62.659P ','Nondisplaced fracture of middle phalanx of unspecified finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147862,10,'S62.659K ','Nondisplaced fracture of middle phalanx of unspecified finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147861,10,'S62.659G ','Nondisplaced fracture of middle phalanx of unspecified finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147860,10,'S62.659D ','Nondisplaced fracture of middle phalanx of unspecified finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147859,10,'S62.659B ','Nondisplaced fracture of middle phalanx of unspecified finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147858,10,'S62.659A ','Nondisplaced fracture of middle phalanx of unspecified finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147857,10,'S62.658S ','Nondisplaced fracture of middle phalanx of other finger, sequela','Y','0000-00-00 00:00:00'),(147856,10,'S62.658P ','Nondisplaced fracture of middle phalanx of other finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147855,10,'S62.658K ','Nondisplaced fracture of middle phalanx of other finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147854,10,'S62.658G ','Nondisplaced fracture of middle phalanx of other finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147853,10,'S62.658D ','Nondisplaced fracture of middle phalanx of other finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147852,10,'S62.658B ','Nondisplaced fracture of middle phalanx of other finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147851,10,'S62.658A ','Nondisplaced fracture of middle phalanx of other finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147850,10,'S62.657S ','Nondisplaced fracture of middle phalanx of left little finger, sequela','Y','0000-00-00 00:00:00'),(147849,10,'S62.657P ','Nondisplaced fracture of middle phalanx of left little finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147848,10,'S62.657K ','Nondisplaced fracture of middle phalanx of left little finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147847,10,'S62.657G ','Nondisplaced fracture of middle phalanx of left little finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147846,10,'S62.657D ','Nondisplaced fracture of middle phalanx of left little finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147845,10,'S62.657B ','Nondisplaced fracture of middle phalanx of left little finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147844,10,'S62.657A ','Nondisplaced fracture of middle phalanx of left little finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147843,10,'S62.656S ','Nondisplaced fracture of middle phalanx of right little finger, sequela','Y','0000-00-00 00:00:00'),(147842,10,'S62.656P ','Nondisplaced fracture of middle phalanx of right little finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147841,10,'S62.656K ','Nondisplaced fracture of middle phalanx of right little finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147840,10,'S62.656G ','Nondisplaced fracture of middle phalanx of right little finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147839,10,'S62.656D ','Nondisplaced fracture of middle phalanx of right little finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147838,10,'S62.656B ','Nondisplaced fracture of middle phalanx of right little finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147837,10,'S62.656A ','Nondisplaced fracture of middle phalanx of right little finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147836,10,'S62.655S ','Nondisplaced fracture of middle phalanx of left ring finger, sequela','Y','0000-00-00 00:00:00'),(147835,10,'S62.655P ','Nondisplaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147834,10,'S62.655K ','Nondisplaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147833,10,'S62.655G ','Nondisplaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147832,10,'S62.655D ','Nondisplaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147831,10,'S62.655B ','Nondisplaced fracture of middle phalanx of left ring finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147830,10,'S62.655A ','Nondisplaced fracture of middle phalanx of left ring finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147829,10,'S62.654S ','Nondisplaced fracture of middle phalanx of right ring finger, sequela','Y','0000-00-00 00:00:00'),(147828,10,'S62.654P ','Nondisplaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147827,10,'S62.654K ','Nondisplaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147826,10,'S62.654G ','Nondisplaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147825,10,'S62.654D ','Nondisplaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147824,10,'S62.654B ','Nondisplaced fracture of middle phalanx of right ring finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147823,10,'S62.654A ','Nondisplaced fracture of middle phalanx of right ring finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147822,10,'S62.653S ','Nondisplaced fracture of middle phalanx of left middle finger, sequela','Y','0000-00-00 00:00:00'),(147821,10,'S62.653P ','Nondisplaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147820,10,'S62.653K ','Nondisplaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147819,10,'S62.653G ','Nondisplaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147818,10,'S62.653D ','Nondisplaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147817,10,'S62.653B ','Nondisplaced fracture of middle phalanx of left middle finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147816,10,'S62.653A ','Nondisplaced fracture of middle phalanx of left middle finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147815,10,'S62.652S ','Nondisplaced fracture of middle phalanx of right middle finger, sequela','Y','0000-00-00 00:00:00'),(147814,10,'S62.652P ','Nondisplaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147813,10,'S62.652K ','Nondisplaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147812,10,'S62.652G ','Nondisplaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147811,10,'S62.652D ','Nondisplaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147810,10,'S62.652B ','Nondisplaced fracture of middle phalanx of right middle finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147809,10,'S62.652A ','Nondisplaced fracture of middle phalanx of right middle finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147808,10,'S62.651S ','Nondisplaced fracture of middle phalanx of left index finger, sequela','Y','0000-00-00 00:00:00'),(147807,10,'S62.651P ','Nondisplaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147806,10,'S62.651K ','Nondisplaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147805,10,'S62.651G ','Nondisplaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147804,10,'S62.651D ','Nondisplaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147803,10,'S62.651B ','Nondisplaced fracture of middle phalanx of left index finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147802,10,'S62.651A ','Nondisplaced fracture of middle phalanx of left index finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147801,10,'S62.650S ','Nondisplaced fracture of middle phalanx of right index finger, sequela','Y','0000-00-00 00:00:00'),(147800,10,'S62.650P ','Nondisplaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147799,10,'S62.650K ','Nondisplaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147798,10,'S62.650G ','Nondisplaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147797,10,'S62.650D ','Nondisplaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147796,10,'S62.650B ','Nondisplaced fracture of middle phalanx of right index finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147795,10,'S62.650A ','Nondisplaced fracture of middle phalanx of right index finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147794,10,'S62.649S ','Nondisplaced fracture of proximal phalanx of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(147793,10,'S62.649P ','Nondisplaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147792,10,'S62.649K ','Nondisplaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147791,10,'S62.649G ','Nondisplaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147790,10,'S62.649D ','Nondisplaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147789,10,'S62.649B ','Nondisplaced fracture of proximal phalanx of unspecified finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147788,10,'S62.649A ','Nondisplaced fracture of proximal phalanx of unspecified finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147787,10,'S62.648S ','Nondisplaced fracture of proximal phalanx of other finger, sequela','Y','0000-00-00 00:00:00'),(147786,10,'S62.648P ','Nondisplaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147785,10,'S62.648K ','Nondisplaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147784,10,'S62.648G ','Nondisplaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147783,10,'S62.648D ','Nondisplaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147782,10,'S62.648B ','Nondisplaced fracture of proximal phalanx of other finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147781,10,'S62.648A ','Nondisplaced fracture of proximal phalanx of other finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147780,10,'S62.647S ','Nondisplaced fracture of proximal phalanx of left little finger, sequela','Y','0000-00-00 00:00:00'),(147779,10,'S62.647P ','Nondisplaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147778,10,'S62.647K ','Nondisplaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147777,10,'S62.647G ','Nondisplaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147776,10,'S62.647D ','Nondisplaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147775,10,'S62.647B ','Nondisplaced fracture of proximal phalanx of left little finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147774,10,'S62.647A ','Nondisplaced fracture of proximal phalanx of left little finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147773,10,'S62.646S ','Nondisplaced fracture of proximal phalanx of right little finger, sequela','Y','0000-00-00 00:00:00'),(147772,10,'S62.646P ','Nondisplaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147771,10,'S62.646K ','Nondisplaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147770,10,'S62.646G ','Nondisplaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147769,10,'S62.646D ','Nondisplaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147768,10,'S62.646B ','Nondisplaced fracture of proximal phalanx of right little finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147767,10,'S62.646A ','Nondisplaced fracture of proximal phalanx of right little finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147766,10,'S62.645S ','Nondisplaced fracture of proximal phalanx of left ring finger, sequela','Y','0000-00-00 00:00:00'),(147765,10,'S62.645P ','Nondisplaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147764,10,'S62.645K ','Nondisplaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147763,10,'S62.645G ','Nondisplaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147762,10,'S62.645D ','Nondisplaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147761,10,'S62.645B ','Nondisplaced fracture of proximal phalanx of left ring finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147760,10,'S62.645A ','Nondisplaced fracture of proximal phalanx of left ring finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147759,10,'S62.644S ','Nondisplaced fracture of proximal phalanx of right ring finger, sequela','Y','0000-00-00 00:00:00'),(147758,10,'S62.644P ','Nondisplaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147757,10,'S62.644K ','Nondisplaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147756,10,'S62.644G ','Nondisplaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147755,10,'S62.644D ','Nondisplaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147754,10,'S62.644B ','Nondisplaced fracture of proximal phalanx of right ring finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147753,10,'S62.644A ','Nondisplaced fracture of proximal phalanx of right ring finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147752,10,'S62.643S ','Nondisplaced fracture of proximal phalanx of left middle finger, sequela','Y','0000-00-00 00:00:00'),(147751,10,'S62.643P ','Nondisplaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147750,10,'S62.643K ','Nondisplaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147749,10,'S62.643G ','Nondisplaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147748,10,'S62.643D ','Nondisplaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147747,10,'S62.643B ','Nondisplaced fracture of proximal phalanx of left middle finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147746,10,'S62.643A ','Nondisplaced fracture of proximal phalanx of left middle finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147745,10,'S62.642S ','Nondisplaced fracture of proximal phalanx of right middle finger, sequela','Y','0000-00-00 00:00:00'),(147744,10,'S62.642P ','Nondisplaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147743,10,'S62.642K ','Nondisplaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147742,10,'S62.642G ','Nondisplaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147741,10,'S62.642D ','Nondisplaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147740,10,'S62.642B ','Nondisplaced fracture of proximal phalanx of right middle finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147739,10,'S62.642A ','Nondisplaced fracture of proximal phalanx of right middle finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147738,10,'S62.641S ','Nondisplaced fracture of proximal phalanx of left index finger, sequela','Y','0000-00-00 00:00:00'),(147737,10,'S62.641P ','Nondisplaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147736,10,'S62.641K ','Nondisplaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147735,10,'S62.641G ','Nondisplaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147734,10,'S62.641D ','Nondisplaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147733,10,'S62.641B ','Nondisplaced fracture of proximal phalanx of left index finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147732,10,'S62.641A ','Nondisplaced fracture of proximal phalanx of left index finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147731,10,'S62.640S ','Nondisplaced fracture of proximal phalanx of right index finger, sequela','Y','0000-00-00 00:00:00'),(147730,10,'S62.640P ','Nondisplaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147729,10,'S62.640K ','Nondisplaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147728,10,'S62.640G ','Nondisplaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147727,10,'S62.640D ','Nondisplaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147726,10,'S62.640B ','Nondisplaced fracture of proximal phalanx of right index finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147725,10,'S62.640A ','Nondisplaced fracture of proximal phalanx of right index finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147724,10,'S62.639S ','Displaced fracture of distal phalanx of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(147723,10,'S62.639P ','Displaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147722,10,'S62.639K ','Displaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147721,10,'S62.639G ','Displaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147720,10,'S62.639D ','Displaced fracture of distal phalanx of unspecified finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147719,10,'S62.639B ','Displaced fracture of distal phalanx of unspecified finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147718,10,'S62.639A ','Displaced fracture of distal phalanx of unspecified finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147717,10,'S62.638S ','Displaced fracture of distal phalanx of other finger, sequela','Y','0000-00-00 00:00:00'),(147716,10,'S62.638P ','Displaced fracture of distal phalanx of other finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147715,10,'S62.638K ','Displaced fracture of distal phalanx of other finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147714,10,'S62.638G ','Displaced fracture of distal phalanx of other finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147713,10,'S62.638D ','Displaced fracture of distal phalanx of other finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147712,10,'S62.638B ','Displaced fracture of distal phalanx of other finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147711,10,'S62.638A ','Displaced fracture of distal phalanx of other finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147710,10,'S62.637S ','Displaced fracture of distal phalanx of left little finger, sequela','Y','0000-00-00 00:00:00'),(147709,10,'S62.637P ','Displaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147708,10,'S62.637K ','Displaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147707,10,'S62.637G ','Displaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147706,10,'S62.637D ','Displaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147705,10,'S62.637B ','Displaced fracture of distal phalanx of left little finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147704,10,'S62.637A ','Displaced fracture of distal phalanx of left little finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147703,10,'S62.636S ','Displaced fracture of distal phalanx of right little finger, sequela','Y','0000-00-00 00:00:00'),(147702,10,'S62.636P ','Displaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147701,10,'S62.636K ','Displaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147700,10,'S62.636G ','Displaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147699,10,'S62.636D ','Displaced fracture of distal phalanx of right little finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147698,10,'S62.636B ','Displaced fracture of distal phalanx of right little finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147697,10,'S62.636A ','Displaced fracture of distal phalanx of right little finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147696,10,'S62.635S ','Displaced fracture of distal phalanx of left ring finger, sequela','Y','0000-00-00 00:00:00'),(147695,10,'S62.635P ','Displaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147694,10,'S62.635K ','Displaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147693,10,'S62.635G ','Displaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147692,10,'S62.635D ','Displaced fracture of distal phalanx of left ring finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147691,10,'S62.635B ','Displaced fracture of distal phalanx of left ring finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147690,10,'S62.635A ','Displaced fracture of distal phalanx of left ring finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147689,10,'S62.634S ','Displaced fracture of distal phalanx of right ring finger, sequela','Y','0000-00-00 00:00:00'),(147688,10,'S62.634P ','Displaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147687,10,'S62.634K ','Displaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147686,10,'S62.634G ','Displaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147685,10,'S62.634D ','Displaced fracture of distal phalanx of right ring finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147684,10,'S62.634B ','Displaced fracture of distal phalanx of right ring finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147683,10,'S62.634A ','Displaced fracture of distal phalanx of right ring finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147682,10,'S62.633S ','Displaced fracture of distal phalanx of left middle finger, sequela','Y','0000-00-00 00:00:00'),(147681,10,'S62.633P ','Displaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147680,10,'S62.633K ','Displaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147679,10,'S62.633G ','Displaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147678,10,'S62.633D ','Displaced fracture of distal phalanx of left middle finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147677,10,'S62.633B ','Displaced fracture of distal phalanx of left middle finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147676,10,'S62.633A ','Displaced fracture of distal phalanx of left middle finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147675,10,'S62.632S ','Displaced fracture of distal phalanx of right middle finger, sequela','Y','0000-00-00 00:00:00'),(147674,10,'S62.632P ','Displaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147673,10,'S62.632K ','Displaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147672,10,'S62.632G ','Displaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147671,10,'S62.632D ','Displaced fracture of distal phalanx of right middle finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147670,10,'S62.632B ','Displaced fracture of distal phalanx of right middle finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147669,10,'S62.632A ','Displaced fracture of distal phalanx of right middle finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147668,10,'S62.631S ','Displaced fracture of distal phalanx of left index finger, sequela','Y','0000-00-00 00:00:00'),(147667,10,'S62.631P ','Displaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147666,10,'S62.631K ','Displaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147665,10,'S62.631G ','Displaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147664,10,'S62.631D ','Displaced fracture of distal phalanx of left index finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147663,10,'S62.631B ','Displaced fracture of distal phalanx of left index finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147662,10,'S62.631A ','Displaced fracture of distal phalanx of left index finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147661,10,'S62.630S ','Displaced fracture of distal phalanx of right index finger, sequela','Y','0000-00-00 00:00:00'),(147660,10,'S62.630P ','Displaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147659,10,'S62.630K ','Displaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147658,10,'S62.630G ','Displaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147657,10,'S62.630D ','Displaced fracture of distal phalanx of right index finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147656,10,'S62.630B ','Displaced fracture of distal phalanx of right index finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147655,10,'S62.630A ','Displaced fracture of distal phalanx of right index finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147654,10,'S62.629S ','Displaced fracture of middle phalanx of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(147653,10,'S62.629P ','Displaced fracture of middle phalanx of unspecified finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147652,10,'S62.629K ','Displaced fracture of middle phalanx of unspecified finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147651,10,'S62.629G ','Displaced fracture of middle phalanx of unspecified finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147650,10,'S62.629D ','Displaced fracture of middle phalanx of unspecified finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147649,10,'S62.629B ','Displaced fracture of middle phalanx of unspecified finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147648,10,'S62.629A ','Displaced fracture of middle phalanx of unspecified finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147647,10,'S62.628S ','Displaced fracture of middle phalanx of other finger, sequela','Y','0000-00-00 00:00:00'),(147646,10,'S62.628P ','Displaced fracture of middle phalanx of other finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147645,10,'S62.628K ','Displaced fracture of middle phalanx of other finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147644,10,'S62.628G ','Displaced fracture of middle phalanx of other finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147643,10,'S62.628D ','Displaced fracture of middle phalanx of other finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147642,10,'S62.628B ','Displaced fracture of middle phalanx of other finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147641,10,'S62.628A ','Displaced fracture of middle phalanx of other finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147640,10,'S62.627S ','Displaced fracture of middle phalanx of left little finger, sequela','Y','0000-00-00 00:00:00'),(147639,10,'S62.627P ','Displaced fracture of middle phalanx of left little finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147638,10,'S62.627K ','Displaced fracture of middle phalanx of left little finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147637,10,'S62.627G ','Displaced fracture of middle phalanx of left little finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147636,10,'S62.627D ','Displaced fracture of middle phalanx of left little finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147635,10,'S62.627B ','Displaced fracture of middle phalanx of left little finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147633,10,'S62.626S ','Displaced fracture of middle phalanx of right little finger, sequela','Y','0000-00-00 00:00:00'),(147634,10,'S62.627A ','Displaced fracture of middle phalanx of left little finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147632,10,'S62.626P ','Displaced fracture of middle phalanx of right little finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147631,10,'S62.626K ','Displaced fracture of middle phalanx of right little finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147630,10,'S62.626G ','Displaced fracture of middle phalanx of right little finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147629,10,'S62.626D ','Displaced fracture of middle phalanx of right little finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147628,10,'S62.626B ','Displaced fracture of middle phalanx of right little finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147627,10,'S62.626A ','Displaced fracture of middle phalanx of right little finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147626,10,'S62.625S ','Displaced fracture of middle phalanx of left ring finger, sequela','Y','0000-00-00 00:00:00'),(147625,10,'S62.625P ','Displaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147624,10,'S62.625K ','Displaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147623,10,'S62.625G ','Displaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147622,10,'S62.625D ','Displaced fracture of middle phalanx of left ring finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147621,10,'S62.625B ','Displaced fracture of middle phalanx of left ring finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147620,10,'S62.625A ','Displaced fracture of middle phalanx of left ring finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147619,10,'S62.624S ','Displaced fracture of middle phalanx of right ring finger, sequela','Y','0000-00-00 00:00:00'),(147618,10,'S62.624P ','Displaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147617,10,'S62.624K ','Displaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147616,10,'S62.624G ','Displaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147615,10,'S62.624D ','Displaced fracture of middle phalanx of right ring finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147614,10,'S62.624B ','Displaced fracture of middle phalanx of right ring finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147613,10,'S62.624A ','Displaced fracture of middle phalanx of right ring finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147612,10,'S62.623S ','Displaced fracture of middle phalanx of left middle finger, sequela','Y','0000-00-00 00:00:00'),(147611,10,'S62.623P ','Displaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147610,10,'S62.623K ','Displaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147609,10,'S62.623G ','Displaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147608,10,'S62.623D ','Displaced fracture of middle phalanx of left middle finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147607,10,'S62.623B ','Displaced fracture of middle phalanx of left middle finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147606,10,'S62.623A ','Displaced fracture of middle phalanx of left middle finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147605,10,'S62.622S ','Displaced fracture of middle phalanx of right middle finger, sequela','Y','0000-00-00 00:00:00'),(147604,10,'S62.622P ','Displaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147603,10,'S62.622K ','Displaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147602,10,'S62.622G ','Displaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147601,10,'S62.622D ','Displaced fracture of middle phalanx of right middle finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147600,10,'S62.622B ','Displaced fracture of middle phalanx of right middle finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147598,10,'S62.621S ','Displaced fracture of middle phalanx of left index finger, sequela','Y','0000-00-00 00:00:00'),(147599,10,'S62.622A ','Displaced fracture of middle phalanx of right middle finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147597,10,'S62.621P ','Displaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147596,10,'S62.621K ','Displaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147595,10,'S62.621G ','Displaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147594,10,'S62.621D ','Displaced fracture of middle phalanx of left index finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147593,10,'S62.621B ','Displaced fracture of middle phalanx of left index finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147592,10,'S62.621A ','Displaced fracture of middle phalanx of left index finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147591,10,'S62.620S ','Displaced fracture of middle phalanx of right index finger, sequela','Y','0000-00-00 00:00:00'),(147590,10,'S62.620P ','Displaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147589,10,'S62.620K ','Displaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147588,10,'S62.620G ','Displaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147587,10,'S62.620D ','Displaced fracture of middle phalanx of right index finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147586,10,'S62.620B ','Displaced fracture of middle phalanx of right index finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147584,10,'S62.619S ','Displaced fracture of proximal phalanx of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(147585,10,'S62.620A ','Displaced fracture of middle phalanx of right index finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147583,10,'S62.619P ','Displaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147582,10,'S62.619K ','Displaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147581,10,'S62.619G ','Displaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147580,10,'S62.619D ','Displaced fracture of proximal phalanx of unspecified finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147579,10,'S62.619B ','Displaced fracture of proximal phalanx of unspecified finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147578,10,'S62.619A ','Displaced fracture of proximal phalanx of unspecified finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147577,10,'S62.618S ','Displaced fracture of proximal phalanx of other finger, sequela','Y','0000-00-00 00:00:00'),(147576,10,'S62.618P ','Displaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147575,10,'S62.618K ','Displaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147574,10,'S62.618G ','Displaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147573,10,'S62.618D ','Displaced fracture of proximal phalanx of other finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147572,10,'S62.618B ','Displaced fracture of proximal phalanx of other finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147571,10,'S62.618A ','Displaced fracture of proximal phalanx of other finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147570,10,'S62.617S ','Displaced fracture of proximal phalanx of left little finger, sequela','Y','0000-00-00 00:00:00'),(147569,10,'S62.617P ','Displaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147568,10,'S62.617K ','Displaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147567,10,'S62.617G ','Displaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147566,10,'S62.617D ','Displaced fracture of proximal phalanx of left little finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147565,10,'S62.617B ','Displaced fracture of proximal phalanx of left little finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147564,10,'S62.617A ','Displaced fracture of proximal phalanx of left little finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147563,10,'S62.616S ','Displaced fracture of proximal phalanx of right little finger, sequela','Y','0000-00-00 00:00:00'),(147562,10,'S62.616P ','Displaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147561,10,'S62.616K ','Displaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147560,10,'S62.616G ','Displaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147559,10,'S62.616D ','Displaced fracture of proximal phalanx of right little finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147558,10,'S62.616B ','Displaced fracture of proximal phalanx of right little finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147557,10,'S62.616A ','Displaced fracture of proximal phalanx of right little finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147556,10,'S62.615S ','Displaced fracture of proximal phalanx of left ring finger, sequela','Y','0000-00-00 00:00:00'),(147555,10,'S62.615P ','Displaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147554,10,'S62.615K ','Displaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147553,10,'S62.615G ','Displaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147552,10,'S62.615D ','Displaced fracture of proximal phalanx of left ring finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147551,10,'S62.615B ','Displaced fracture of proximal phalanx of left ring finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147550,10,'S62.615A ','Displaced fracture of proximal phalanx of left ring finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147549,10,'S62.614S ','Displaced fracture of proximal phalanx of right ring finger, sequela','Y','0000-00-00 00:00:00'),(147548,10,'S62.614P ','Displaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147547,10,'S62.614K ','Displaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147546,10,'S62.614G ','Displaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147545,10,'S62.614D ','Displaced fracture of proximal phalanx of right ring finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147544,10,'S62.614B ','Displaced fracture of proximal phalanx of right ring finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147542,10,'S62.613S ','Displaced fracture of proximal phalanx of left middle finger, sequela','Y','0000-00-00 00:00:00'),(147543,10,'S62.614A ','Displaced fracture of proximal phalanx of right ring finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147541,10,'S62.613P ','Displaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147540,10,'S62.613K ','Displaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147539,10,'S62.613G ','Displaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147538,10,'S62.613D ','Displaced fracture of proximal phalanx of left middle finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147537,10,'S62.613B ','Displaced fracture of proximal phalanx of left middle finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147536,10,'S62.613A ','Displaced fracture of proximal phalanx of left middle finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147535,10,'S62.612S ','Displaced fracture of proximal phalanx of right middle finger, sequela','Y','0000-00-00 00:00:00'),(147534,10,'S62.612P ','Displaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147533,10,'S62.612K ','Displaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147532,10,'S62.612G ','Displaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147531,10,'S62.612D ','Displaced fracture of proximal phalanx of right middle finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147530,10,'S62.612B ','Displaced fracture of proximal phalanx of right middle finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147529,10,'S62.612A ','Displaced fracture of proximal phalanx of right middle finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147528,10,'S62.611S ','Displaced fracture of proximal phalanx of left index finger, sequela','Y','0000-00-00 00:00:00'),(147527,10,'S62.611P ','Displaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147526,10,'S62.611K ','Displaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147525,10,'S62.611G ','Displaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147524,10,'S62.611D ','Displaced fracture of proximal phalanx of left index finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147523,10,'S62.611B ','Displaced fracture of proximal phalanx of left index finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147522,10,'S62.611A ','Displaced fracture of proximal phalanx of left index finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147521,10,'S62.610S ','Displaced fracture of proximal phalanx of right index finger, sequela','Y','0000-00-00 00:00:00'),(147520,10,'S62.610P ','Displaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147519,10,'S62.610K ','Displaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147518,10,'S62.610G ','Displaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147517,10,'S62.610D ','Displaced fracture of proximal phalanx of right index finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147516,10,'S62.610B ','Displaced fracture of proximal phalanx of right index finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147515,10,'S62.610A ','Displaced fracture of proximal phalanx of right index finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147514,10,'S62.609S ','Fracture of unspecified phalanx of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(147513,10,'S62.609P ','Fracture of unspecified phalanx of unspecified finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147512,10,'S62.609K ','Fracture of unspecified phalanx of unspecified finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147511,10,'S62.609G ','Fracture of unspecified phalanx of unspecified finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147510,10,'S62.609D ','Fracture of unspecified phalanx of unspecified finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147509,10,'S62.609B ','Fracture of unspecified phalanx of unspecified finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147507,10,'S62.608S ','Fracture of unspecified phalanx of other finger, sequela','Y','0000-00-00 00:00:00'),(147508,10,'S62.609A ','Fracture of unspecified phalanx of unspecified finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147506,10,'S62.608P ','Fracture of unspecified phalanx of other finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147505,10,'S62.608K ','Fracture of unspecified phalanx of other finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147504,10,'S62.608G ','Fracture of unspecified phalanx of other finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147503,10,'S62.608D ','Fracture of unspecified phalanx of other finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147502,10,'S62.608B ','Fracture of unspecified phalanx of other finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147501,10,'S62.608A ','Fracture of unspecified phalanx of other finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147500,10,'S62.607S ','Fracture of unspecified phalanx of left little finger, sequela','Y','0000-00-00 00:00:00'),(147499,10,'S62.607P ','Fracture of unspecified phalanx of left little finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147498,10,'S62.607K ','Fracture of unspecified phalanx of left little finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147497,10,'S62.607G ','Fracture of unspecified phalanx of left little finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147496,10,'S62.607D ','Fracture of unspecified phalanx of left little finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147495,10,'S62.607B ','Fracture of unspecified phalanx of left little finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147493,10,'S62.606S ','Fracture of unspecified phalanx of right little finger, sequela','Y','0000-00-00 00:00:00'),(147494,10,'S62.607A ','Fracture of unspecified phalanx of left little finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147492,10,'S62.606P ','Fracture of unspecified phalanx of right little finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147491,10,'S62.606K ','Fracture of unspecified phalanx of right little finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147490,10,'S62.606G ','Fracture of unspecified phalanx of right little finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147489,10,'S62.606D ','Fracture of unspecified phalanx of right little finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147488,10,'S62.606B ','Fracture of unspecified phalanx of right little finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147487,10,'S62.606A ','Fracture of unspecified phalanx of right little finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147486,10,'S62.605S ','Fracture of unspecified phalanx of left ring finger, sequela','Y','0000-00-00 00:00:00'),(147485,10,'S62.605P ','Fracture of unspecified phalanx of left ring finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147484,10,'S62.605K ','Fracture of unspecified phalanx of left ring finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147483,10,'S62.605G ','Fracture of unspecified phalanx of left ring finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147482,10,'S62.605D ','Fracture of unspecified phalanx of left ring finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147481,10,'S62.605B ','Fracture of unspecified phalanx of left ring finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147480,10,'S62.605A ','Fracture of unspecified phalanx of left ring finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147479,10,'S62.604S ','Fracture of unspecified phalanx of right ring finger, sequela','Y','0000-00-00 00:00:00'),(147478,10,'S62.604P ','Fracture of unspecified phalanx of right ring finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147477,10,'S62.604K ','Fracture of unspecified phalanx of right ring finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147476,10,'S62.604G ','Fracture of unspecified phalanx of right ring finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147475,10,'S62.604D ','Fracture of unspecified phalanx of right ring finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147474,10,'S62.604B ','Fracture of unspecified phalanx of right ring finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147473,10,'S62.604A ','Fracture of unspecified phalanx of right ring finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147472,10,'S62.603S ','Fracture of unspecified phalanx of left middle finger, sequela','Y','0000-00-00 00:00:00'),(147471,10,'S62.603P ','Fracture of unspecified phalanx of left middle finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147470,10,'S62.603K ','Fracture of unspecified phalanx of left middle finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147469,10,'S62.603G ','Fracture of unspecified phalanx of left middle finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147468,10,'S62.603D ','Fracture of unspecified phalanx of left middle finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147467,10,'S62.603B ','Fracture of unspecified phalanx of left middle finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147465,10,'S62.602S ','Fracture of unspecified phalanx of right middle finger, sequela','Y','0000-00-00 00:00:00'),(147466,10,'S62.603A ','Fracture of unspecified phalanx of left middle finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147464,10,'S62.602P ','Fracture of unspecified phalanx of right middle finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147463,10,'S62.602K ','Fracture of unspecified phalanx of right middle finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147462,10,'S62.602G ','Fracture of unspecified phalanx of right middle finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147461,10,'S62.602D ','Fracture of unspecified phalanx of right middle finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147460,10,'S62.602B ','Fracture of unspecified phalanx of right middle finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147458,10,'S62.601S ','Fracture of unspecified phalanx of left index finger, sequela','Y','0000-00-00 00:00:00'),(147459,10,'S62.602A ','Fracture of unspecified phalanx of right middle finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147457,10,'S62.601P ','Fracture of unspecified phalanx of left index finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147456,10,'S62.601K ','Fracture of unspecified phalanx of left index finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147455,10,'S62.601G ','Fracture of unspecified phalanx of left index finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147454,10,'S62.601D ','Fracture of unspecified phalanx of left index finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147453,10,'S62.601B ','Fracture of unspecified phalanx of left index finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147452,10,'S62.601A ','Fracture of unspecified phalanx of left index finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147451,10,'S62.600S ','Fracture of unspecified phalanx of right index finger, sequela','Y','0000-00-00 00:00:00'),(147450,10,'S62.600P ','Fracture of unspecified phalanx of right index finger, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147449,10,'S62.600K ','Fracture of unspecified phalanx of right index finger, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147448,10,'S62.600G ','Fracture of unspecified phalanx of right index finger, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147447,10,'S62.600D ','Fracture of unspecified phalanx of right index finger, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147446,10,'S62.600B ','Fracture of unspecified phalanx of right index finger, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147445,10,'S62.600A ','Fracture of unspecified phalanx of right index finger, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147444,10,'S62.526S ','Nondisplaced fracture of distal phalanx of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(147443,10,'S62.526P ','Nondisplaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147442,10,'S62.526K ','Nondisplaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147441,10,'S62.526G ','Nondisplaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147440,10,'S62.526D ','Nondisplaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147439,10,'S62.526B ','Nondisplaced fracture of distal phalanx of unspecified thumb, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147438,10,'S62.526A ','Nondisplaced fracture of distal phalanx of unspecified thumb, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147437,10,'S62.525S ','Nondisplaced fracture of distal phalanx of left thumb, sequela','Y','0000-00-00 00:00:00'),(147436,10,'S62.525P ','Nondisplaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147435,10,'S62.525K ','Nondisplaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147434,10,'S62.525G ','Nondisplaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147433,10,'S62.525D ','Nondisplaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147432,10,'S62.525B ','Nondisplaced fracture of distal phalanx of left thumb, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147430,10,'S62.524S ','Nondisplaced fracture of distal phalanx of right thumb, sequela','Y','0000-00-00 00:00:00'),(147431,10,'S62.525A ','Nondisplaced fracture of distal phalanx of left thumb, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147429,10,'S62.524P ','Nondisplaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147428,10,'S62.524K ','Nondisplaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147427,10,'S62.524G ','Nondisplaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147426,10,'S62.524D ','Nondisplaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147425,10,'S62.524B ','Nondisplaced fracture of distal phalanx of right thumb, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147424,10,'S62.524A ','Nondisplaced fracture of distal phalanx of right thumb, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147423,10,'S62.523S ','Displaced fracture of distal phalanx of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(147422,10,'S62.523P ','Displaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147421,10,'S62.523K ','Displaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147420,10,'S62.523G ','Displaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147419,10,'S62.523D ','Displaced fracture of distal phalanx of unspecified thumb, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147418,10,'S62.523B ','Displaced fracture of distal phalanx of unspecified thumb, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147417,10,'S62.523A ','Displaced fracture of distal phalanx of unspecified thumb, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147416,10,'S62.522S ','Displaced fracture of distal phalanx of left thumb, sequela','Y','0000-00-00 00:00:00'),(147415,10,'S62.522P ','Displaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147414,10,'S62.522K ','Displaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147413,10,'S62.522G ','Displaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147412,10,'S62.522D ','Displaced fracture of distal phalanx of left thumb, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147411,10,'S62.522B ','Displaced fracture of distal phalanx of left thumb, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147410,10,'S62.522A ','Displaced fracture of distal phalanx of left thumb, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147409,10,'S62.521S ','Displaced fracture of distal phalanx of right thumb, sequela','Y','0000-00-00 00:00:00'),(147408,10,'S62.521P ','Displaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147407,10,'S62.521K ','Displaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147406,10,'S62.521G ','Displaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147405,10,'S62.521D ','Displaced fracture of distal phalanx of right thumb, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147404,10,'S62.521B ','Displaced fracture of distal phalanx of right thumb, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147403,10,'S62.521A ','Displaced fracture of distal phalanx of right thumb, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147402,10,'S62.516S ','Nondisplaced fracture of proximal phalanx of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(147401,10,'S62.516P ','Nondisplaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147400,10,'S62.516K ','Nondisplaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147399,10,'S62.516G ','Nondisplaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147398,10,'S62.516D ','Nondisplaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147397,10,'S62.516B ','Nondisplaced fracture of proximal phalanx of unspecified thumb, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147396,10,'S62.516A ','Nondisplaced fracture of proximal phalanx of unspecified thumb, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147395,10,'S62.515S ','Nondisplaced fracture of proximal phalanx of left thumb, sequela','Y','0000-00-00 00:00:00'),(147394,10,'S62.515P ','Nondisplaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147393,10,'S62.515K ','Nondisplaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147392,10,'S62.515G ','Nondisplaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147391,10,'S62.515D ','Nondisplaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147390,10,'S62.515B ','Nondisplaced fracture of proximal phalanx of left thumb, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147389,10,'S62.515A ','Nondisplaced fracture of proximal phalanx of left thumb, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147388,10,'S62.514S ','Nondisplaced fracture of proximal phalanx of right thumb, sequela','Y','0000-00-00 00:00:00'),(147387,10,'S62.514P ','Nondisplaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147386,10,'S62.514K ','Nondisplaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147385,10,'S62.514G ','Nondisplaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147384,10,'S62.514D ','Nondisplaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147383,10,'S62.514B ','Nondisplaced fracture of proximal phalanx of right thumb, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147382,10,'S62.514A ','Nondisplaced fracture of proximal phalanx of right thumb, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147381,10,'S62.513S ','Displaced fracture of proximal phalanx of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(147380,10,'S62.513P ','Displaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147379,10,'S62.513K ','Displaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147378,10,'S62.513G ','Displaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147377,10,'S62.513D ','Displaced fracture of proximal phalanx of unspecified thumb, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147376,10,'S62.513B ','Displaced fracture of proximal phalanx of unspecified thumb, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147375,10,'S62.513A ','Displaced fracture of proximal phalanx of unspecified thumb, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147374,10,'S62.512S ','Displaced fracture of proximal phalanx of left thumb, sequela','Y','0000-00-00 00:00:00'),(147373,10,'S62.512P ','Displaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147372,10,'S62.512K ','Displaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147371,10,'S62.512G ','Displaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147370,10,'S62.512D ','Displaced fracture of proximal phalanx of left thumb, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147369,10,'S62.512B ','Displaced fracture of proximal phalanx of left thumb, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147368,10,'S62.512A ','Displaced fracture of proximal phalanx of left thumb, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147367,10,'S62.511S ','Displaced fracture of proximal phalanx of right thumb, sequela','Y','0000-00-00 00:00:00'),(147366,10,'S62.511P ','Displaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147365,10,'S62.511K ','Displaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147364,10,'S62.511G ','Displaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147363,10,'S62.511D ','Displaced fracture of proximal phalanx of right thumb, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147362,10,'S62.511B ','Displaced fracture of proximal phalanx of right thumb, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147361,10,'S62.511A ','Displaced fracture of proximal phalanx of right thumb, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147360,10,'S62.509S ','Fracture of unspecified phalanx of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(147359,10,'S62.509P ','Fracture of unspecified phalanx of unspecified thumb, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147358,10,'S62.509K ','Fracture of unspecified phalanx of unspecified thumb, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147357,10,'S62.509G ','Fracture of unspecified phalanx of unspecified thumb, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147356,10,'S62.509D ','Fracture of unspecified phalanx of unspecified thumb, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147355,10,'S62.509B ','Fracture of unspecified phalanx of unspecified thumb, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147354,10,'S62.509A ','Fracture of unspecified phalanx of unspecified thumb, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147353,10,'S62.502S ','Fracture of unspecified phalanx of left thumb, sequela','Y','0000-00-00 00:00:00'),(147352,10,'S62.502P ','Fracture of unspecified phalanx of left thumb, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147351,10,'S62.502K ','Fracture of unspecified phalanx of left thumb, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147350,10,'S62.502G ','Fracture of unspecified phalanx of left thumb, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147349,10,'S62.502D ','Fracture of unspecified phalanx of left thumb, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147348,10,'S62.502B ','Fracture of unspecified phalanx of left thumb, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147347,10,'S62.502A ','Fracture of unspecified phalanx of left thumb, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147346,10,'S62.501S ','Fracture of unspecified phalanx of right thumb, sequela','Y','0000-00-00 00:00:00'),(147345,10,'S62.501P ','Fracture of unspecified phalanx of right thumb, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147344,10,'S62.501K ','Fracture of unspecified phalanx of right thumb, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147343,10,'S62.501G ','Fracture of unspecified phalanx of right thumb, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147342,10,'S62.501D ','Fracture of unspecified phalanx of right thumb, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147341,10,'S62.501B ','Fracture of unspecified phalanx of right thumb, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147340,10,'S62.501A ','Fracture of unspecified phalanx of right thumb, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147339,10,'S62.399S ','Other fracture of unspecified metacarpal bone, sequela','Y','0000-00-00 00:00:00'),(147338,10,'S62.399P ','Other fracture of unspecified metacarpal bone, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147337,10,'S62.399K ','Other fracture of unspecified metacarpal bone, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147336,10,'S62.399G ','Other fracture of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147335,10,'S62.399D ','Other fracture of unspecified metacarpal bone, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147334,10,'S62.399B ','Other fracture of unspecified metacarpal bone, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147333,10,'S62.399A ','Other fracture of unspecified metacarpal bone, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147332,10,'S62.398S ','Other fracture of other metacarpal bone, sequela','Y','0000-00-00 00:00:00'),(147331,10,'S62.398P ','Other fracture of other metacarpal bone, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147330,10,'S62.398K ','Other fracture of other metacarpal bone, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147329,10,'S62.398G ','Other fracture of other metacarpal bone, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147328,10,'S62.398D ','Other fracture of other metacarpal bone, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147327,10,'S62.398B ','Other fracture of other metacarpal bone, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147325,10,'S62.397S ','Other fracture of fifth metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147326,10,'S62.398A ','Other fracture of other metacarpal bone, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147324,10,'S62.397P ','Other fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147323,10,'S62.397K ','Other fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147322,10,'S62.397G ','Other fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147321,10,'S62.397D ','Other fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147320,10,'S62.397B ','Other fracture of fifth metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147319,10,'S62.397A ','Other fracture of fifth metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147318,10,'S62.396S ','Other fracture of fifth metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147317,10,'S62.396P ','Other fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147316,10,'S62.396K ','Other fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147315,10,'S62.396G ','Other fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147314,10,'S62.396D ','Other fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147313,10,'S62.396B ','Other fracture of fifth metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147312,10,'S62.396A ','Other fracture of fifth metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147311,10,'S62.395S ','Other fracture of fourth metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147310,10,'S62.395P ','Other fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147309,10,'S62.395K ','Other fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147308,10,'S62.395G ','Other fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147307,10,'S62.395D ','Other fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147306,10,'S62.395B ','Other fracture of fourth metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147305,10,'S62.395A ','Other fracture of fourth metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147304,10,'S62.394S ','Other fracture of fourth metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147303,10,'S62.394P ','Other fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147302,10,'S62.394K ','Other fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147301,10,'S62.394G ','Other fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147300,10,'S62.394D ','Other fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147299,10,'S62.394B ','Other fracture of fourth metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147298,10,'S62.394A ','Other fracture of fourth metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147297,10,'S62.393S ','Other fracture of third metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147296,10,'S62.393P ','Other fracture of third metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147295,10,'S62.393K ','Other fracture of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147294,10,'S62.393G ','Other fracture of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147293,10,'S62.393D ','Other fracture of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147292,10,'S62.393B ','Other fracture of third metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147290,10,'S62.392S ','Other fracture of third metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147291,10,'S62.393A ','Other fracture of third metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147289,10,'S62.392P ','Other fracture of third metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147288,10,'S62.392K ','Other fracture of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147287,10,'S62.392G ','Other fracture of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147286,10,'S62.392D ','Other fracture of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147285,10,'S62.392B ','Other fracture of third metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147284,10,'S62.392A ','Other fracture of third metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147283,10,'S62.391S ','Other fracture of second metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147282,10,'S62.391P ','Other fracture of second metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147281,10,'S62.391K ','Other fracture of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147280,10,'S62.391G ','Other fracture of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147279,10,'S62.391D ','Other fracture of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147278,10,'S62.391B ','Other fracture of second metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147277,10,'S62.391A ','Other fracture of second metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147276,10,'S62.390S ','Other fracture of second metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147275,10,'S62.390P ','Other fracture of second metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147274,10,'S62.390K ','Other fracture of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147273,10,'S62.390G ','Other fracture of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147272,10,'S62.390D ','Other fracture of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147271,10,'S62.390B ','Other fracture of second metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147270,10,'S62.390A ','Other fracture of second metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147269,10,'S62.369S ','Nondisplaced fracture of neck of unspecified metacarpal bone, sequela','Y','0000-00-00 00:00:00'),(147268,10,'S62.369P ','Nondisplaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147267,10,'S62.369K ','Nondisplaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147266,10,'S62.369G ','Nondisplaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147265,10,'S62.369D ','Nondisplaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147264,10,'S62.369B ','Nondisplaced fracture of neck of unspecified metacarpal bone, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147263,10,'S62.369A ','Nondisplaced fracture of neck of unspecified metacarpal bone, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147262,10,'S62.368S ','Nondisplaced fracture of neck of other metacarpal bone, sequela','Y','0000-00-00 00:00:00'),(147261,10,'S62.368P ','Nondisplaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147260,10,'S62.368K ','Nondisplaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147259,10,'S62.368G ','Nondisplaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147258,10,'S62.368D ','Nondisplaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147257,10,'S62.368B ','Nondisplaced fracture of neck of other metacarpal bone, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147256,10,'S62.368A ','Nondisplaced fracture of neck of other metacarpal bone, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147255,10,'S62.367S ','Nondisplaced fracture of neck of fifth metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147254,10,'S62.367P ','Nondisplaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147253,10,'S62.367K ','Nondisplaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147252,10,'S62.367G ','Nondisplaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147251,10,'S62.367D ','Nondisplaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147250,10,'S62.367B ','Nondisplaced fracture of neck of fifth metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147249,10,'S62.367A ','Nondisplaced fracture of neck of fifth metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147248,10,'S62.366S ','Nondisplaced fracture of neck of fifth metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147247,10,'S62.366P ','Nondisplaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147246,10,'S62.366K ','Nondisplaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147245,10,'S62.366G ','Nondisplaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147244,10,'S62.366D ','Nondisplaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147243,10,'S62.366B ','Nondisplaced fracture of neck of fifth metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147242,10,'S62.366A ','Nondisplaced fracture of neck of fifth metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147241,10,'S62.365S ','Nondisplaced fracture of neck of fourth metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147240,10,'S62.365P ','Nondisplaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147239,10,'S62.365K ','Nondisplaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147238,10,'S62.365G ','Nondisplaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147237,10,'S62.365D ','Nondisplaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147236,10,'S62.365B ','Nondisplaced fracture of neck of fourth metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147235,10,'S62.365A ','Nondisplaced fracture of neck of fourth metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147234,10,'S62.364S ','Nondisplaced fracture of neck of fourth metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147233,10,'S62.364P ','Nondisplaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147232,10,'S62.364K ','Nondisplaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147231,10,'S62.364G ','Nondisplaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147230,10,'S62.364D ','Nondisplaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147229,10,'S62.364B ','Nondisplaced fracture of neck of fourth metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147228,10,'S62.364A ','Nondisplaced fracture of neck of fourth metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147227,10,'S62.363S ','Nondisplaced fracture of neck of third metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147226,10,'S62.363P ','Nondisplaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147225,10,'S62.363K ','Nondisplaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147224,10,'S62.363G ','Nondisplaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147223,10,'S62.363D ','Nondisplaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147222,10,'S62.363B ','Nondisplaced fracture of neck of third metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147221,10,'S62.363A ','Nondisplaced fracture of neck of third metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147220,10,'S62.362S ','Nondisplaced fracture of neck of third metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147219,10,'S62.362P ','Nondisplaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147218,10,'S62.362K ','Nondisplaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147217,10,'S62.362G ','Nondisplaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147216,10,'S62.362D ','Nondisplaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147215,10,'S62.362B ','Nondisplaced fracture of neck of third metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147214,10,'S62.362A ','Nondisplaced fracture of neck of third metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147213,10,'S62.361S ','Nondisplaced fracture of neck of second metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147212,10,'S62.361P ','Nondisplaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147211,10,'S62.361K ','Nondisplaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147210,10,'S62.361G ','Nondisplaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147209,10,'S62.361D ','Nondisplaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147208,10,'S62.361B ','Nondisplaced fracture of neck of second metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147207,10,'S62.361A ','Nondisplaced fracture of neck of second metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147206,10,'S62.360S ','Nondisplaced fracture of neck of second metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147205,10,'S62.360P ','Nondisplaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147204,10,'S62.360K ','Nondisplaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147203,10,'S62.360G ','Nondisplaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147202,10,'S62.360D ','Nondisplaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147201,10,'S62.360B ','Nondisplaced fracture of neck of second metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147200,10,'S62.360A ','Nondisplaced fracture of neck of second metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147199,10,'S62.359S ','Nondisplaced fracture of shaft of unspecified metacarpal bone, sequela','Y','0000-00-00 00:00:00'),(147198,10,'S62.359P ','Nondisplaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147197,10,'S62.359K ','Nondisplaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147196,10,'S62.359G ','Nondisplaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147195,10,'S62.359D ','Nondisplaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147194,10,'S62.359B ','Nondisplaced fracture of shaft of unspecified metacarpal bone, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147193,10,'S62.359A ','Nondisplaced fracture of shaft of unspecified metacarpal bone, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147192,10,'S62.358S ','Nondisplaced fracture of shaft of other metacarpal bone, sequela','Y','0000-00-00 00:00:00'),(147191,10,'S62.358P ','Nondisplaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147190,10,'S62.358K ','Nondisplaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147189,10,'S62.358G ','Nondisplaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147188,10,'S62.358D ','Nondisplaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147187,10,'S62.358B ','Nondisplaced fracture of shaft of other metacarpal bone, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147186,10,'S62.358A ','Nondisplaced fracture of shaft of other metacarpal bone, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147185,10,'S62.357S ','Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147184,10,'S62.357P ','Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147183,10,'S62.357K ','Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147182,10,'S62.357G ','Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147181,10,'S62.357D ','Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147180,10,'S62.357B ','Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147179,10,'S62.357A ','Nondisplaced fracture of shaft of fifth metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147178,10,'S62.356S ','Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147177,10,'S62.356P ','Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147176,10,'S62.356K ','Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147175,10,'S62.356G ','Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147174,10,'S62.356D ','Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147173,10,'S62.356B ','Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147172,10,'S62.356A ','Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147171,10,'S62.355S ','Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147170,10,'S62.355P ','Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147169,10,'S62.355K ','Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147168,10,'S62.355G ','Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147167,10,'S62.355D ','Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147166,10,'S62.355B ','Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147165,10,'S62.355A ','Nondisplaced fracture of shaft of fourth metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147164,10,'S62.354S ','Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147163,10,'S62.354P ','Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147162,10,'S62.354K ','Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147161,10,'S62.354G ','Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147160,10,'S62.354D ','Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147159,10,'S62.354B ','Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147158,10,'S62.354A ','Nondisplaced fracture of shaft of fourth metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147157,10,'S62.353S ','Nondisplaced fracture of shaft of third metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147156,10,'S62.353P ','Nondisplaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147155,10,'S62.353K ','Nondisplaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147154,10,'S62.353G ','Nondisplaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147153,10,'S62.353D ','Nondisplaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147152,10,'S62.353B ','Nondisplaced fracture of shaft of third metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147151,10,'S62.353A ','Nondisplaced fracture of shaft of third metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147150,10,'S62.352S ','Nondisplaced fracture of shaft of third metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147149,10,'S62.352P ','Nondisplaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147148,10,'S62.352K ','Nondisplaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147147,10,'S62.352G ','Nondisplaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147146,10,'S62.352D ','Nondisplaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147145,10,'S62.352B ','Nondisplaced fracture of shaft of third metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147144,10,'S62.352A ','Nondisplaced fracture of shaft of third metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147143,10,'S62.351S ','Nondisplaced fracture of shaft of second metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147142,10,'S62.351P ','Nondisplaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147141,10,'S62.351K ','Nondisplaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147140,10,'S62.351G ','Nondisplaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147139,10,'S62.351D ','Nondisplaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147138,10,'S62.351B ','Nondisplaced fracture of shaft of second metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147137,10,'S62.351A ','Nondisplaced fracture of shaft of second metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147136,10,'S62.350S ','Nondisplaced fracture of shaft of second metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147135,10,'S62.350P ','Nondisplaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147134,10,'S62.350K ','Nondisplaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147133,10,'S62.350G ','Nondisplaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147132,10,'S62.350D ','Nondisplaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147131,10,'S62.350B ','Nondisplaced fracture of shaft of second metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147130,10,'S62.350A ','Nondisplaced fracture of shaft of second metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147129,10,'S62.349S ','Nondisplaced fracture of base of unspecified metacarpal bone, sequela','Y','0000-00-00 00:00:00'),(147128,10,'S62.349P ','Nondisplaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147127,10,'S62.349K ','Nondisplaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147126,10,'S62.349G ','Nondisplaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147125,10,'S62.349D ','Nondisplaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147124,10,'S62.349B ','Nondisplaced fracture of base of unspecified metacarpal bone, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147123,10,'S62.349A ','Nondisplaced fracture of base of unspecified metacarpal bone, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147122,10,'S62.348S ','Nondisplaced fracture of base of other metacarpal bone, sequela','Y','0000-00-00 00:00:00'),(147121,10,'S62.348P ','Nondisplaced fracture of base of other metacarpal bone, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147120,10,'S62.348K ','Nondisplaced fracture of base of other metacarpal bone, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147119,10,'S62.348G ','Nondisplaced fracture of base of other metacarpal bone, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147118,10,'S62.348D ','Nondisplaced fracture of base of other metacarpal bone, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147117,10,'S62.348B ','Nondisplaced fracture of base of other metacarpal bone, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147116,10,'S62.348A ','Nondisplaced fracture of base of other metacarpal bone, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147115,10,'S62.347S ','Nondisplaced fracture of base of fifth metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147114,10,'S62.347P ','Nondisplaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147113,10,'S62.347K ','Nondisplaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147112,10,'S62.347G ','Nondisplaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147111,10,'S62.347D ','Nondisplaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147110,10,'S62.347B ','Nondisplaced fracture of base of fifth metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147109,10,'S62.347A ','Nondisplaced fracture of base of fifth metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147108,10,'S62.346S ','Nondisplaced fracture of base of fifth metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147107,10,'S62.346P ','Nondisplaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147106,10,'S62.346K ','Nondisplaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147105,10,'S62.346G ','Nondisplaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147104,10,'S62.346D ','Nondisplaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147103,10,'S62.346B ','Nondisplaced fracture of base of fifth metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147102,10,'S62.346A ','Nondisplaced fracture of base of fifth metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147101,10,'S62.345S ','Nondisplaced fracture of base of fourth metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147100,10,'S62.345P ','Nondisplaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147099,10,'S62.345K ','Nondisplaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147098,10,'S62.345G ','Nondisplaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147097,10,'S62.345D ','Nondisplaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147096,10,'S62.345B ','Nondisplaced fracture of base of fourth metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147095,10,'S62.345A ','Nondisplaced fracture of base of fourth metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147094,10,'S62.344S ','Nondisplaced fracture of base of fourth metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147093,10,'S62.344P ','Nondisplaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147092,10,'S62.344K ','Nondisplaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147091,10,'S62.344G ','Nondisplaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147090,10,'S62.344D ','Nondisplaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147089,10,'S62.344B ','Nondisplaced fracture of base of fourth metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147088,10,'S62.344A ','Nondisplaced fracture of base of fourth metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147087,10,'S62.343S ','Nondisplaced fracture of base of third metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147086,10,'S62.343P ','Nondisplaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147085,10,'S62.343K ','Nondisplaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147084,10,'S62.343G ','Nondisplaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147083,10,'S62.343D ','Nondisplaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147082,10,'S62.343B ','Nondisplaced fracture of base of third metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147081,10,'S62.343A ','Nondisplaced fracture of base of third metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147080,10,'S62.342S ','Nondisplaced fracture of base of third metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147079,10,'S62.342P ','Nondisplaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147078,10,'S62.342K ','Nondisplaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147077,10,'S62.342G ','Nondisplaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147076,10,'S62.342D ','Nondisplaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147075,10,'S62.342B ','Nondisplaced fracture of base of third metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147074,10,'S62.342A ','Nondisplaced fracture of base of third metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147073,10,'S62.341S ','Nondisplaced fracture of base of second metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147072,10,'S62.341P ','Nondisplaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147071,10,'S62.341K ','Nondisplaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147070,10,'S62.341G ','Nondisplaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147069,10,'S62.341D ','Nondisplaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147068,10,'S62.341B ','Nondisplaced fracture of base of second metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147067,10,'S62.341A ','Nondisplaced fracture of base of second metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147066,10,'S62.340S ','Nondisplaced fracture of base of second metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147065,10,'S62.340P ','Nondisplaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147064,10,'S62.340K ','Nondisplaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147063,10,'S62.340G ','Nondisplaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147062,10,'S62.340D ','Nondisplaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147061,10,'S62.340B ','Nondisplaced fracture of base of second metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147060,10,'S62.340A ','Nondisplaced fracture of base of second metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147059,10,'S62.339S ','Displaced fracture of neck of unspecified metacarpal bone, sequela','Y','0000-00-00 00:00:00'),(147058,10,'S62.339P ','Displaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147057,10,'S62.339K ','Displaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147056,10,'S62.339G ','Displaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147055,10,'S62.339D ','Displaced fracture of neck of unspecified metacarpal bone, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147054,10,'S62.339B ','Displaced fracture of neck of unspecified metacarpal bone, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147053,10,'S62.339A ','Displaced fracture of neck of unspecified metacarpal bone, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147052,10,'S62.338S ','Displaced fracture of neck of other metacarpal bone, sequela','Y','0000-00-00 00:00:00'),(147051,10,'S62.338P ','Displaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147050,10,'S62.338K ','Displaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147049,10,'S62.338G ','Displaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147048,10,'S62.338D ','Displaced fracture of neck of other metacarpal bone, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147047,10,'S62.338B ','Displaced fracture of neck of other metacarpal bone, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147046,10,'S62.338A ','Displaced fracture of neck of other metacarpal bone, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147045,10,'S62.337S ','Displaced fracture of neck of fifth metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147044,10,'S62.337P ','Displaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147043,10,'S62.337K ','Displaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147042,10,'S62.337G ','Displaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147041,10,'S62.337D ','Displaced fracture of neck of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147040,10,'S62.337B ','Displaced fracture of neck of fifth metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147039,10,'S62.337A ','Displaced fracture of neck of fifth metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147038,10,'S62.336S ','Displaced fracture of neck of fifth metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147037,10,'S62.336P ','Displaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147036,10,'S62.336K ','Displaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147035,10,'S62.336G ','Displaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147034,10,'S62.336D ','Displaced fracture of neck of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147033,10,'S62.336B ','Displaced fracture of neck of fifth metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147032,10,'S62.336A ','Displaced fracture of neck of fifth metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147031,10,'S62.335S ','Displaced fracture of neck of fourth metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147030,10,'S62.335P ','Displaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147029,10,'S62.335K ','Displaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147028,10,'S62.335G ','Displaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147027,10,'S62.335D ','Displaced fracture of neck of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147026,10,'S62.335B ','Displaced fracture of neck of fourth metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147025,10,'S62.335A ','Displaced fracture of neck of fourth metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147024,10,'S62.334S ','Displaced fracture of neck of fourth metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147023,10,'S62.334P ','Displaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147022,10,'S62.334K ','Displaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147021,10,'S62.334G ','Displaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147020,10,'S62.334D ','Displaced fracture of neck of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147019,10,'S62.334B ','Displaced fracture of neck of fourth metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147018,10,'S62.334A ','Displaced fracture of neck of fourth metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147017,10,'S62.333S ','Displaced fracture of neck of third metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147016,10,'S62.333P ','Displaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147015,10,'S62.333K ','Displaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147014,10,'S62.333G ','Displaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147013,10,'S62.333D ','Displaced fracture of neck of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147012,10,'S62.333B ','Displaced fracture of neck of third metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147011,10,'S62.333A ','Displaced fracture of neck of third metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147010,10,'S62.332S ','Displaced fracture of neck of third metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(147009,10,'S62.332P ','Displaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147008,10,'S62.332K ','Displaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147007,10,'S62.332G ','Displaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(147006,10,'S62.332D ','Displaced fracture of neck of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(147005,10,'S62.332B ','Displaced fracture of neck of third metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(147004,10,'S62.332A ','Displaced fracture of neck of third metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(147003,10,'S62.331S ','Displaced fracture of neck of second metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(147002,10,'S62.331P ','Displaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(147001,10,'S62.331K ','Displaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(147000,10,'S62.331G ','Displaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146999,10,'S62.331D ','Displaced fracture of neck of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146998,10,'S62.331B ','Displaced fracture of neck of second metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146997,10,'S62.331A ','Displaced fracture of neck of second metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146996,10,'S62.330S ','Displaced fracture of neck of second metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146995,10,'S62.330P ','Displaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146994,10,'S62.330K ','Displaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146993,10,'S62.330G ','Displaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146992,10,'S62.330D ','Displaced fracture of neck of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146991,10,'S62.330B ','Displaced fracture of neck of second metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146990,10,'S62.330A ','Displaced fracture of neck of second metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146989,10,'S62.329S ','Displaced fracture of shaft of unspecified metacarpal bone, sequela','Y','0000-00-00 00:00:00'),(146988,10,'S62.329P ','Displaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146987,10,'S62.329K ','Displaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146986,10,'S62.329G ','Displaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146985,10,'S62.329D ','Displaced fracture of shaft of unspecified metacarpal bone, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146984,10,'S62.329B ','Displaced fracture of shaft of unspecified metacarpal bone, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146983,10,'S62.329A ','Displaced fracture of shaft of unspecified metacarpal bone, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146982,10,'S62.328S ','Displaced fracture of shaft of other metacarpal bone, sequela','Y','0000-00-00 00:00:00'),(146981,10,'S62.328P ','Displaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146980,10,'S62.328K ','Displaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146979,10,'S62.328G ','Displaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146978,10,'S62.328D ','Displaced fracture of shaft of other metacarpal bone, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146977,10,'S62.328B ','Displaced fracture of shaft of other metacarpal bone, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146976,10,'S62.328A ','Displaced fracture of shaft of other metacarpal bone, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146975,10,'S62.327S ','Displaced fracture of shaft of fifth metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146974,10,'S62.327P ','Displaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146973,10,'S62.327K ','Displaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146972,10,'S62.327G ','Displaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146971,10,'S62.327D ','Displaced fracture of shaft of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146970,10,'S62.327B ','Displaced fracture of shaft of fifth metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146969,10,'S62.327A ','Displaced fracture of shaft of fifth metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146968,10,'S62.326S ','Displaced fracture of shaft of fifth metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146967,10,'S62.326P ','Displaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146966,10,'S62.326K ','Displaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146965,10,'S62.326G ','Displaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146964,10,'S62.326D ','Displaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146963,10,'S62.326B ','Displaced fracture of shaft of fifth metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146962,10,'S62.326A ','Displaced fracture of shaft of fifth metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146961,10,'S62.325S ','Displaced fracture of shaft of fourth metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146960,10,'S62.325P ','Displaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146959,10,'S62.325K ','Displaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146958,10,'S62.325G ','Displaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146957,10,'S62.325D ','Displaced fracture of shaft of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146956,10,'S62.325B ','Displaced fracture of shaft of fourth metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146955,10,'S62.325A ','Displaced fracture of shaft of fourth metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146954,10,'S62.324S ','Displaced fracture of shaft of fourth metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146953,10,'S62.324P ','Displaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146952,10,'S62.324K ','Displaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146951,10,'S62.324G ','Displaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146950,10,'S62.324D ','Displaced fracture of shaft of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146949,10,'S62.324B ','Displaced fracture of shaft of fourth metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146948,10,'S62.324A ','Displaced fracture of shaft of fourth metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146947,10,'S62.323S ','Displaced fracture of shaft of third metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146946,10,'S62.323P ','Displaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146945,10,'S62.323K ','Displaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146944,10,'S62.323G ','Displaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146943,10,'S62.323D ','Displaced fracture of shaft of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146942,10,'S62.323B ','Displaced fracture of shaft of third metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146941,10,'S62.323A ','Displaced fracture of shaft of third metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146940,10,'S62.322S ','Displaced fracture of shaft of third metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146939,10,'S62.322P ','Displaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146938,10,'S62.322K ','Displaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146937,10,'S62.322G ','Displaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146936,10,'S62.322D ','Displaced fracture of shaft of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146935,10,'S62.322B ','Displaced fracture of shaft of third metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146934,10,'S62.322A ','Displaced fracture of shaft of third metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146933,10,'S62.321S ','Displaced fracture of shaft of second metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146932,10,'S62.321P ','Displaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146931,10,'S62.321K ','Displaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146930,10,'S62.321G ','Displaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146929,10,'S62.321D ','Displaced fracture of shaft of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146928,10,'S62.321B ','Displaced fracture of shaft of second metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146927,10,'S62.321A ','Displaced fracture of shaft of second metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146926,10,'S62.320S ','Displaced fracture of shaft of second metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146925,10,'S62.320P ','Displaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146924,10,'S62.320K ','Displaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146923,10,'S62.320G ','Displaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146922,10,'S62.320D ','Displaced fracture of shaft of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146921,10,'S62.320B ','Displaced fracture of shaft of second metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146920,10,'S62.320A ','Displaced fracture of shaft of second metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146919,10,'S62.319S ','Displaced fracture of base of unspecified metacarpal bone, sequela','Y','0000-00-00 00:00:00'),(146918,10,'S62.319P ','Displaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146917,10,'S62.319K ','Displaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146916,10,'S62.319G ','Displaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146915,10,'S62.319D ','Displaced fracture of base of unspecified metacarpal bone, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146914,10,'S62.319B ','Displaced fracture of base of unspecified metacarpal bone, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146913,10,'S62.319A ','Displaced fracture of base of unspecified metacarpal bone, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146912,10,'S62.318S ','Displaced fracture of base of other metacarpal bone, sequela','Y','0000-00-00 00:00:00'),(146911,10,'S62.318P ','Displaced fracture of base of other metacarpal bone, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146910,10,'S62.318K ','Displaced fracture of base of other metacarpal bone, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146909,10,'S62.318G ','Displaced fracture of base of other metacarpal bone, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146908,10,'S62.318D ','Displaced fracture of base of other metacarpal bone, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146907,10,'S62.318B ','Displaced fracture of base of other metacarpal bone, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146906,10,'S62.318A ','Displaced fracture of base of other metacarpal bone, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146905,10,'S62.317S ','Displaced fracture of base of fifth metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146904,10,'S62.317P ','Displaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146903,10,'S62.317K ','Displaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146902,10,'S62.317G ','Displaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146901,10,'S62.317D ','Displaced fracture of base of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146900,10,'S62.317B ','Displaced fracture of base of fifth metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146899,10,'S62.317A ','Displaced fracture of base of fifth metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146898,10,'S62.316S ','Displaced fracture of base of fifth metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146897,10,'S62.316P ','Displaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146896,10,'S62.316K ','Displaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146895,10,'S62.316G ','Displaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146894,10,'S62.316D ','Displaced fracture of base of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146893,10,'S62.316B ','Displaced fracture of base of fifth metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146892,10,'S62.316A ','Displaced fracture of base of fifth metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146891,10,'S62.315S ','Displaced fracture of base of fourth metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146890,10,'S62.315P ','Displaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146889,10,'S62.315K ','Displaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146888,10,'S62.315G ','Displaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146887,10,'S62.315D ','Displaced fracture of base of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146886,10,'S62.315B ','Displaced fracture of base of fourth metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146885,10,'S62.315A ','Displaced fracture of base of fourth metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146884,10,'S62.314S ','Displaced fracture of base of fourth metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146883,10,'S62.314P ','Displaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146882,10,'S62.314K ','Displaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146881,10,'S62.314G ','Displaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146880,10,'S62.314D ','Displaced fracture of base of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146879,10,'S62.314B ','Displaced fracture of base of fourth metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146878,10,'S62.314A ','Displaced fracture of base of fourth metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146877,10,'S62.313S ','Displaced fracture of base of third metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146876,10,'S62.313P ','Displaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146875,10,'S62.313K ','Displaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146874,10,'S62.313G ','Displaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146873,10,'S62.313D ','Displaced fracture of base of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146872,10,'S62.313B ','Displaced fracture of base of third metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146871,10,'S62.313A ','Displaced fracture of base of third metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146870,10,'S62.312S ','Displaced fracture of base of third metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146869,10,'S62.312P ','Displaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146868,10,'S62.312K ','Displaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146867,10,'S62.312G ','Displaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146866,10,'S62.312D ','Displaced fracture of base of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146865,10,'S62.312B ','Displaced fracture of base of third metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146864,10,'S62.312A ','Displaced fracture of base of third metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146863,10,'S62.311S ','Displaced fracture of base of second metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146862,10,'S62.311P ','Displaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146861,10,'S62.311K ','Displaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146860,10,'S62.311G ','Displaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146859,10,'S62.311D ','Displaced fracture of base of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146858,10,'S62.311B ','Displaced fracture of base of second metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146857,10,'S62.311A ','Displaced fracture of base of second metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146856,10,'S62.310S ','Displaced fracture of base of second metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146855,10,'S62.310P ','Displaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146854,10,'S62.310K ','Displaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146853,10,'S62.310G ','Displaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146852,10,'S62.310D ','Displaced fracture of base of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146851,10,'S62.310B ','Displaced fracture of base of second metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146850,10,'S62.310A ','Displaced fracture of base of second metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146849,10,'S62.309S ','Unspecified fracture of unspecified metacarpal bone, sequela','Y','0000-00-00 00:00:00'),(146848,10,'S62.309P ','Unspecified fracture of unspecified metacarpal bone, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146847,10,'S62.309K ','Unspecified fracture of unspecified metacarpal bone, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146846,10,'S62.309G ','Unspecified fracture of unspecified metacarpal bone, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146845,10,'S62.309D ','Unspecified fracture of unspecified metacarpal bone, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146844,10,'S62.309B ','Unspecified fracture of unspecified metacarpal bone, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146843,10,'S62.309A ','Unspecified fracture of unspecified metacarpal bone, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146842,10,'S62.308S ','Unspecified fracture of other metacarpal bone, sequela','Y','0000-00-00 00:00:00'),(146841,10,'S62.308P ','Unspecified fracture of other metacarpal bone, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146840,10,'S62.308K ','Unspecified fracture of other metacarpal bone, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146839,10,'S62.308G ','Unspecified fracture of other metacarpal bone, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146838,10,'S62.308D ','Unspecified fracture of other metacarpal bone, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146837,10,'S62.308B ','Unspecified fracture of other metacarpal bone, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146836,10,'S62.308A ','Unspecified fracture of other metacarpal bone, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146835,10,'S62.307S ','Unspecified fracture of fifth metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146834,10,'S62.307P ','Unspecified fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146833,10,'S62.307K ','Unspecified fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146832,10,'S62.307G ','Unspecified fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146831,10,'S62.307D ','Unspecified fracture of fifth metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146830,10,'S62.307B ','Unspecified fracture of fifth metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146829,10,'S62.307A ','Unspecified fracture of fifth metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146828,10,'S62.306S ','Unspecified fracture of fifth metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146827,10,'S62.306P ','Unspecified fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146826,10,'S62.306K ','Unspecified fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146825,10,'S62.306G ','Unspecified fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146824,10,'S62.306D ','Unspecified fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146823,10,'S62.306B ','Unspecified fracture of fifth metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146822,10,'S62.306A ','Unspecified fracture of fifth metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146821,10,'S62.305S ','Unspecified fracture of fourth metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146820,10,'S62.305P ','Unspecified fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146819,10,'S62.305K ','Unspecified fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146818,10,'S62.305G ','Unspecified fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146817,10,'S62.305D ','Unspecified fracture of fourth metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146816,10,'S62.305B ','Unspecified fracture of fourth metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146815,10,'S62.305A ','Unspecified fracture of fourth metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146814,10,'S62.304S ','Unspecified fracture of fourth metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146813,10,'S62.304P ','Unspecified fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146812,10,'S62.304K ','Unspecified fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146811,10,'S62.304G ','Unspecified fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146810,10,'S62.304D ','Unspecified fracture of fourth metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146809,10,'S62.304B ','Unspecified fracture of fourth metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146808,10,'S62.304A ','Unspecified fracture of fourth metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146807,10,'S62.303S ','Unspecified fracture of third metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146806,10,'S62.303P ','Unspecified fracture of third metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146805,10,'S62.303K ','Unspecified fracture of third metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146804,10,'S62.303G ','Unspecified fracture of third metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146803,10,'S62.303D ','Unspecified fracture of third metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146802,10,'S62.303B ','Unspecified fracture of third metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146801,10,'S62.303A ','Unspecified fracture of third metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146800,10,'S62.302S ','Unspecified fracture of third metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146799,10,'S62.302P ','Unspecified fracture of third metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146798,10,'S62.302K ','Unspecified fracture of third metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146797,10,'S62.302G ','Unspecified fracture of third metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146796,10,'S62.302D ','Unspecified fracture of third metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146795,10,'S62.302B ','Unspecified fracture of third metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146794,10,'S62.302A ','Unspecified fracture of third metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146793,10,'S62.301S ','Unspecified fracture of second metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146792,10,'S62.301P ','Unspecified fracture of second metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146791,10,'S62.301K ','Unspecified fracture of second metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146790,10,'S62.301G ','Unspecified fracture of second metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146789,10,'S62.301D ','Unspecified fracture of second metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146788,10,'S62.301B ','Unspecified fracture of second metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146787,10,'S62.301A ','Unspecified fracture of second metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146786,10,'S62.300S ','Unspecified fracture of second metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146785,10,'S62.300P ','Unspecified fracture of second metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146784,10,'S62.300K ','Unspecified fracture of second metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146783,10,'S62.300G ','Unspecified fracture of second metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146782,10,'S62.300D ','Unspecified fracture of second metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146781,10,'S62.300B ','Unspecified fracture of second metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146780,10,'S62.300A ','Unspecified fracture of second metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146779,10,'S62.299S ','Other fracture of first metacarpal bone, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(146778,10,'S62.299P ','Other fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146777,10,'S62.299K ','Other fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146776,10,'S62.299G ','Other fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146775,10,'S62.299D ','Other fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146774,10,'S62.299B ','Other fracture of first metacarpal bone, unspecified hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146773,10,'S62.299A ','Other fracture of first metacarpal bone, unspecified hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146772,10,'S62.292S ','Other fracture of first metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146771,10,'S62.292P ','Other fracture of first metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146770,10,'S62.292K ','Other fracture of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146769,10,'S62.292G ','Other fracture of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146768,10,'S62.292D ','Other fracture of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146767,10,'S62.292B ','Other fracture of first metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146766,10,'S62.292A ','Other fracture of first metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146765,10,'S62.291S ','Other fracture of first metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146764,10,'S62.291P ','Other fracture of first metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146763,10,'S62.291K ','Other fracture of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146762,10,'S62.291G ','Other fracture of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146761,10,'S62.291D ','Other fracture of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146760,10,'S62.291B ','Other fracture of first metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146759,10,'S62.291A ','Other fracture of first metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146758,10,'S62.256S ','Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(146757,10,'S62.256P ','Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146756,10,'S62.256K ','Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146755,10,'S62.256G ','Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146754,10,'S62.256D ','Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146753,10,'S62.256B ','Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146752,10,'S62.256A ','Nondisplaced fracture of neck of first metacarpal bone, unspecified hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146751,10,'S62.255S ','Nondisplaced fracture of neck of first metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146750,10,'S62.255P ','Nondisplaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146749,10,'S62.255K ','Nondisplaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146748,10,'S62.255G ','Nondisplaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146747,10,'S62.255D ','Nondisplaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146746,10,'S62.255B ','Nondisplaced fracture of neck of first metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146745,10,'S62.255A ','Nondisplaced fracture of neck of first metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146744,10,'S62.254S ','Nondisplaced fracture of neck of first metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146743,10,'S62.254P ','Nondisplaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146742,10,'S62.254K ','Nondisplaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146741,10,'S62.254G ','Nondisplaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146740,10,'S62.254D ','Nondisplaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146739,10,'S62.254B ','Nondisplaced fracture of neck of first metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146738,10,'S62.254A ','Nondisplaced fracture of neck of first metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146737,10,'S62.253S ','Displaced fracture of neck of first metacarpal bone, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(146736,10,'S62.253P ','Displaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146735,10,'S62.253K ','Displaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146734,10,'S62.253G ','Displaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146733,10,'S62.253D ','Displaced fracture of neck of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146732,10,'S62.253B ','Displaced fracture of neck of first metacarpal bone, unspecified hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146731,10,'S62.253A ','Displaced fracture of neck of first metacarpal bone, unspecified hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146730,10,'S62.252S ','Displaced fracture of neck of first metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146729,10,'S62.252P ','Displaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146728,10,'S62.252K ','Displaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146727,10,'S62.252G ','Displaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146726,10,'S62.252D ','Displaced fracture of neck of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146725,10,'S62.252B ','Displaced fracture of neck of first metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146724,10,'S62.252A ','Displaced fracture of neck of first metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146723,10,'S62.251S ','Displaced fracture of neck of first metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146722,10,'S62.251P ','Displaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146721,10,'S62.251K ','Displaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146720,10,'S62.251G ','Displaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146719,10,'S62.251D ','Displaced fracture of neck of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146718,10,'S62.251B ','Displaced fracture of neck of first metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146717,10,'S62.251A ','Displaced fracture of neck of first metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146716,10,'S62.246S ','Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(146715,10,'S62.246P ','Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146714,10,'S62.246K ','Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146713,10,'S62.246G ','Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146712,10,'S62.246D ','Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146711,10,'S62.246B ','Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146710,10,'S62.246A ','Nondisplaced fracture of shaft of first metacarpal bone, unspecified hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146709,10,'S62.245S ','Nondisplaced fracture of shaft of first metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146708,10,'S62.245P ','Nondisplaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146707,10,'S62.245K ','Nondisplaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146706,10,'S62.245G ','Nondisplaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146705,10,'S62.245D ','Nondisplaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146704,10,'S62.245B ','Nondisplaced fracture of shaft of first metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146703,10,'S62.245A ','Nondisplaced fracture of shaft of first metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146702,10,'S62.244S ','Nondisplaced fracture of shaft of first metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146701,10,'S62.244P ','Nondisplaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146700,10,'S62.244K ','Nondisplaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146699,10,'S62.244G ','Nondisplaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146698,10,'S62.244D ','Nondisplaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146697,10,'S62.244B ','Nondisplaced fracture of shaft of first metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146696,10,'S62.244A ','Nondisplaced fracture of shaft of first metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146695,10,'S62.243S ','Displaced fracture of shaft of first metacarpal bone, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(146694,10,'S62.243P ','Displaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146693,10,'S62.243K ','Displaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146692,10,'S62.243G ','Displaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146691,10,'S62.243D ','Displaced fracture of shaft of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146690,10,'S62.243B ','Displaced fracture of shaft of first metacarpal bone, unspecified hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146689,10,'S62.243A ','Displaced fracture of shaft of first metacarpal bone, unspecified hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146688,10,'S62.242S ','Displaced fracture of shaft of first metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146687,10,'S62.242P ','Displaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146686,10,'S62.242K ','Displaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146685,10,'S62.242G ','Displaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146684,10,'S62.242D ','Displaced fracture of shaft of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146683,10,'S62.242B ','Displaced fracture of shaft of first metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146682,10,'S62.242A ','Displaced fracture of shaft of first metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146681,10,'S62.241S ','Displaced fracture of shaft of first metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146680,10,'S62.241P ','Displaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146679,10,'S62.241K ','Displaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146678,10,'S62.241G ','Displaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146677,10,'S62.241D ','Displaced fracture of shaft of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146676,10,'S62.241B ','Displaced fracture of shaft of first metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146675,10,'S62.241A ','Displaced fracture of shaft of first metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146674,10,'S62.236S ','Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(146673,10,'S62.236P ','Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146672,10,'S62.236K ','Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146671,10,'S62.236G ','Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146670,10,'S62.236D ','Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146669,10,'S62.236B ','Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146668,10,'S62.236A ','Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146667,10,'S62.235S ','Other nondisplaced fracture of base of first metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146666,10,'S62.235P ','Other nondisplaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146665,10,'S62.235K ','Other nondisplaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146664,10,'S62.235G ','Other nondisplaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146663,10,'S62.235D ','Other nondisplaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146662,10,'S62.235B ','Other nondisplaced fracture of base of first metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146661,10,'S62.235A ','Other nondisplaced fracture of base of first metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146660,10,'S62.234S ','Other nondisplaced fracture of base of first metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146659,10,'S62.234P ','Other nondisplaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146658,10,'S62.234K ','Other nondisplaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146657,10,'S62.234G ','Other nondisplaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146656,10,'S62.234D ','Other nondisplaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146655,10,'S62.234B ','Other nondisplaced fracture of base of first metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146654,10,'S62.234A ','Other nondisplaced fracture of base of first metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146653,10,'S62.233S ','Other displaced fracture of base of first metacarpal bone, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(146652,10,'S62.233P ','Other displaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146651,10,'S62.233K ','Other displaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146650,10,'S62.233G ','Other displaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146649,10,'S62.233D ','Other displaced fracture of base of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146648,10,'S62.233B ','Other displaced fracture of base of first metacarpal bone, unspecified hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146647,10,'S62.233A ','Other displaced fracture of base of first metacarpal bone, unspecified hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146646,10,'S62.232S ','Other displaced fracture of base of first metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146645,10,'S62.232P ','Other displaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146644,10,'S62.232K ','Other displaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146643,10,'S62.232G ','Other displaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146642,10,'S62.232D ','Other displaced fracture of base of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146641,10,'S62.232B ','Other displaced fracture of base of first metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146640,10,'S62.232A ','Other displaced fracture of base of first metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146639,10,'S62.231S ','Other displaced fracture of base of first metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146638,10,'S62.231P ','Other displaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146637,10,'S62.231K ','Other displaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146636,10,'S62.231G ','Other displaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146635,10,'S62.231D ','Other displaced fracture of base of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146634,10,'S62.231B ','Other displaced fracture of base of first metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146633,10,'S62.231A ','Other displaced fracture of base of first metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146632,10,'S62.226S ','Nondisplaced Rolando\'s fracture, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(146631,10,'S62.226P ','Nondisplaced Rolando\'s fracture, unspecified hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146630,10,'S62.226K ','Nondisplaced Rolando\'s fracture, unspecified hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146629,10,'S62.226G ','Nondisplaced Rolando\'s fracture, unspecified hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146628,10,'S62.226D ','Nondisplaced Rolando\'s fracture, unspecified hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146627,10,'S62.226B ','Nondisplaced Rolando\'s fracture, unspecified hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146626,10,'S62.226A ','Nondisplaced Rolando\'s fracture, unspecified hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146625,10,'S62.225S ','Nondisplaced Rolando\'s fracture, left hand, sequela','Y','0000-00-00 00:00:00'),(146624,10,'S62.225P ','Nondisplaced Rolando\'s fracture, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146623,10,'S62.225K ','Nondisplaced Rolando\'s fracture, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146622,10,'S62.225G ','Nondisplaced Rolando\'s fracture, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146621,10,'S62.225D ','Nondisplaced Rolando\'s fracture, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146620,10,'S62.225B ','Nondisplaced Rolando\'s fracture, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146619,10,'S62.225A ','Nondisplaced Rolando\'s fracture, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146618,10,'S62.224S ','Nondisplaced Rolando\'s fracture, right hand, sequela','Y','0000-00-00 00:00:00'),(146617,10,'S62.224P ','Nondisplaced Rolando\'s fracture, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146616,10,'S62.224K ','Nondisplaced Rolando\'s fracture, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146615,10,'S62.224G ','Nondisplaced Rolando\'s fracture, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146614,10,'S62.224D ','Nondisplaced Rolando\'s fracture, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146613,10,'S62.224B ','Nondisplaced Rolando\'s fracture, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146611,10,'S62.223S ','Displaced Rolando\'s fracture, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(146612,10,'S62.224A ','Nondisplaced Rolando\'s fracture, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146610,10,'S62.223P ','Displaced Rolando\'s fracture, unspecified hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146609,10,'S62.223K ','Displaced Rolando\'s fracture, unspecified hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146608,10,'S62.223G ','Displaced Rolando\'s fracture, unspecified hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146607,10,'S62.223D ','Displaced Rolando\'s fracture, unspecified hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146606,10,'S62.223B ','Displaced Rolando\'s fracture, unspecified hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146604,10,'S62.222S ','Displaced Rolando\'s fracture, left hand, sequela','Y','0000-00-00 00:00:00'),(146605,10,'S62.223A ','Displaced Rolando\'s fracture, unspecified hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146603,10,'S62.222P ','Displaced Rolando\'s fracture, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146602,10,'S62.222K ','Displaced Rolando\'s fracture, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146601,10,'S62.222G ','Displaced Rolando\'s fracture, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146600,10,'S62.222D ','Displaced Rolando\'s fracture, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146599,10,'S62.222B ','Displaced Rolando\'s fracture, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146597,10,'S62.221S ','Displaced Rolando\'s fracture, right hand, sequela','Y','0000-00-00 00:00:00'),(146598,10,'S62.222A ','Displaced Rolando\'s fracture, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146596,10,'S62.221P ','Displaced Rolando\'s fracture, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146595,10,'S62.221K ','Displaced Rolando\'s fracture, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146594,10,'S62.221G ','Displaced Rolando\'s fracture, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146593,10,'S62.221D ','Displaced Rolando\'s fracture, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146592,10,'S62.221B ','Displaced Rolando\'s fracture, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146591,10,'S62.221A ','Displaced Rolando\'s fracture, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146590,10,'S62.213S ','Bennett\'s fracture, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(146589,10,'S62.213P ','Bennett\'s fracture, unspecified hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146588,10,'S62.213K ','Bennett\'s fracture, unspecified hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146587,10,'S62.213G ','Bennett\'s fracture, unspecified hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146586,10,'S62.213D ','Bennett\'s fracture, unspecified hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146585,10,'S62.213B ','Bennett\'s fracture, unspecified hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146583,10,'S62.212S ','Bennett\'s fracture, left hand, sequela','Y','0000-00-00 00:00:00'),(146584,10,'S62.213A ','Bennett\'s fracture, unspecified hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146582,10,'S62.212P ','Bennett\'s fracture, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146581,10,'S62.212K ','Bennett\'s fracture, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146580,10,'S62.212G ','Bennett\'s fracture, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146579,10,'S62.212D ','Bennett\'s fracture, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146577,10,'S62.212A ','Bennett\'s fracture, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146578,10,'S62.212B ','Bennett\'s fracture, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146576,10,'S62.211S ','Bennett\'s fracture, right hand, sequela','Y','0000-00-00 00:00:00'),(146575,10,'S62.211P ','Bennett\'s fracture, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146574,10,'S62.211K ','Bennett\'s fracture, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146573,10,'S62.211G ','Bennett\'s fracture, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146572,10,'S62.211D ','Bennett\'s fracture, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146571,10,'S62.211B ','Bennett\'s fracture, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146570,10,'S62.211A ','Bennett\'s fracture, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146569,10,'S62.209S ','Unspecified fracture of first metacarpal bone, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(146568,10,'S62.209P ','Unspecified fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146567,10,'S62.209K ','Unspecified fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146566,10,'S62.209G ','Unspecified fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146565,10,'S62.209D ','Unspecified fracture of first metacarpal bone, unspecified hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146564,10,'S62.209B ','Unspecified fracture of first metacarpal bone, unspecified hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146563,10,'S62.209A ','Unspecified fracture of first metacarpal bone, unspecified hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146562,10,'S62.202S ','Unspecified fracture of first metacarpal bone, left hand, sequela','Y','0000-00-00 00:00:00'),(146561,10,'S62.202P ','Unspecified fracture of first metacarpal bone, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146560,10,'S62.202K ','Unspecified fracture of first metacarpal bone, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146559,10,'S62.202G ','Unspecified fracture of first metacarpal bone, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146558,10,'S62.202D ','Unspecified fracture of first metacarpal bone, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146557,10,'S62.202B ','Unspecified fracture of first metacarpal bone, left hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146556,10,'S62.202A ','Unspecified fracture of first metacarpal bone, left hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146555,10,'S62.201S ','Unspecified fracture of first metacarpal bone, right hand, sequela','Y','0000-00-00 00:00:00'),(146554,10,'S62.201P ','Unspecified fracture of first metacarpal bone, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146553,10,'S62.201K ','Unspecified fracture of first metacarpal bone, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146552,10,'S62.201G ','Unspecified fracture of first metacarpal bone, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146551,10,'S62.201D ','Unspecified fracture of first metacarpal bone, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146550,10,'S62.201B ','Unspecified fracture of first metacarpal bone, right hand, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146549,10,'S62.201A ','Unspecified fracture of first metacarpal bone, right hand, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146548,10,'S62.186S ','Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146547,10,'S62.186P ','Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146546,10,'S62.186K ','Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146545,10,'S62.186G ','Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146544,10,'S62.186D ','Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146543,10,'S62.186B ','Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146542,10,'S62.186A ','Nondisplaced fracture of trapezoid [smaller multangular], unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146541,10,'S62.185S ','Nondisplaced fracture of trapezoid [smaller multangular], left wrist, sequela','Y','0000-00-00 00:00:00'),(146540,10,'S62.185P ','Nondisplaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146539,10,'S62.185K ','Nondisplaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146538,10,'S62.185G ','Nondisplaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146537,10,'S62.185D ','Nondisplaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146536,10,'S62.185B ','Nondisplaced fracture of trapezoid [smaller multangular], left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146535,10,'S62.185A ','Nondisplaced fracture of trapezoid [smaller multangular], left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146534,10,'S62.184S ','Nondisplaced fracture of trapezoid [smaller multangular], right wrist, sequela','Y','0000-00-00 00:00:00'),(146533,10,'S62.184P ','Nondisplaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146532,10,'S62.184K ','Nondisplaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146531,10,'S62.184G ','Nondisplaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146530,10,'S62.184D ','Nondisplaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146529,10,'S62.184B ','Nondisplaced fracture of trapezoid [smaller multangular], right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146528,10,'S62.184A ','Nondisplaced fracture of trapezoid [smaller multangular], right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146527,10,'S62.183S ','Displaced fracture of trapezoid [smaller multangular], unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146526,10,'S62.183P ','Displaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146525,10,'S62.183K ','Displaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146524,10,'S62.183G ','Displaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146523,10,'S62.183D ','Displaced fracture of trapezoid [smaller multangular], unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146522,10,'S62.183B ','Displaced fracture of trapezoid [smaller multangular], unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146521,10,'S62.183A ','Displaced fracture of trapezoid [smaller multangular], unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146520,10,'S62.182S ','Displaced fracture of trapezoid [smaller multangular], left wrist, sequela','Y','0000-00-00 00:00:00'),(146519,10,'S62.182P ','Displaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146518,10,'S62.182K ','Displaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146517,10,'S62.182G ','Displaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146516,10,'S62.182D ','Displaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146515,10,'S62.182B ','Displaced fracture of trapezoid [smaller multangular], left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146514,10,'S62.182A ','Displaced fracture of trapezoid [smaller multangular], left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146513,10,'S62.181S ','Displaced fracture of trapezoid [smaller multangular], right wrist, sequela','Y','0000-00-00 00:00:00'),(146512,10,'S62.181P ','Displaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146511,10,'S62.181K ','Displaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146510,10,'S62.181G ','Displaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146509,10,'S62.181D ','Displaced fracture of trapezoid [smaller multangular], right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146508,10,'S62.181B ','Displaced fracture of trapezoid [smaller multangular], right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146507,10,'S62.181A ','Displaced fracture of trapezoid [smaller multangular], right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146506,10,'S62.176S ','Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146505,10,'S62.176P ','Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146504,10,'S62.176K ','Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146503,10,'S62.176G ','Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146502,10,'S62.176D ','Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146501,10,'S62.176B ','Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146500,10,'S62.176A ','Nondisplaced fracture of trapezium [larger multangular], unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146499,10,'S62.175S ','Nondisplaced fracture of trapezium [larger multangular], left wrist, sequela','Y','0000-00-00 00:00:00'),(146498,10,'S62.175P ','Nondisplaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146497,10,'S62.175K ','Nondisplaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146496,10,'S62.175G ','Nondisplaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146495,10,'S62.175D ','Nondisplaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146494,10,'S62.175B ','Nondisplaced fracture of trapezium [larger multangular], left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146493,10,'S62.175A ','Nondisplaced fracture of trapezium [larger multangular], left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146492,10,'S62.174S ','Nondisplaced fracture of trapezium [larger multangular], right wrist, sequela','Y','0000-00-00 00:00:00'),(146491,10,'S62.174P ','Nondisplaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146490,10,'S62.174K ','Nondisplaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146489,10,'S62.174G ','Nondisplaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146488,10,'S62.174D ','Nondisplaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146487,10,'S62.174B ','Nondisplaced fracture of trapezium [larger multangular], right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146486,10,'S62.174A ','Nondisplaced fracture of trapezium [larger multangular], right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146485,10,'S62.173S ','Displaced fracture of trapezium [larger multangular], unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146484,10,'S62.173P ','Displaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146483,10,'S62.173K ','Displaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146482,10,'S62.173G ','Displaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146481,10,'S62.173D ','Displaced fracture of trapezium [larger multangular], unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146480,10,'S62.173B ','Displaced fracture of trapezium [larger multangular], unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146479,10,'S62.173A ','Displaced fracture of trapezium [larger multangular], unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146478,10,'S62.172S ','Displaced fracture of trapezium [larger multangular], left wrist, sequela','Y','0000-00-00 00:00:00'),(146477,10,'S62.172P ','Displaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146476,10,'S62.172K ','Displaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146475,10,'S62.172G ','Displaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146474,10,'S62.172D ','Displaced fracture of trapezium [larger multangular], left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146473,10,'S62.172B ','Displaced fracture of trapezium [larger multangular], left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146472,10,'S62.172A ','Displaced fracture of trapezium [larger multangular], left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146471,10,'S62.171S ','Displaced fracture of trapezium [larger multangular], right wrist, sequela','Y','0000-00-00 00:00:00'),(146470,10,'S62.171P ','Displaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146469,10,'S62.171K ','Displaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146468,10,'S62.171G ','Displaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146467,10,'S62.171D ','Displaced fracture of trapezium [larger multangular], right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146466,10,'S62.171B ','Displaced fracture of trapezium [larger multangular], right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146464,10,'S62.166S ','Nondisplaced fracture of pisiform, unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146465,10,'S62.171A ','Displaced fracture of trapezium [larger multangular], right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146463,10,'S62.166P ','Nondisplaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146462,10,'S62.166K ','Nondisplaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146461,10,'S62.166G ','Nondisplaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146460,10,'S62.166D ','Nondisplaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146459,10,'S62.166B ','Nondisplaced fracture of pisiform, unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146458,10,'S62.166A ','Nondisplaced fracture of pisiform, unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146457,10,'S62.165S ','Nondisplaced fracture of pisiform, left wrist, sequela','Y','0000-00-00 00:00:00'),(146456,10,'S62.165P ','Nondisplaced fracture of pisiform, left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146455,10,'S62.165K ','Nondisplaced fracture of pisiform, left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146454,10,'S62.165G ','Nondisplaced fracture of pisiform, left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146453,10,'S62.165D ','Nondisplaced fracture of pisiform, left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146452,10,'S62.165B ','Nondisplaced fracture of pisiform, left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146451,10,'S62.165A ','Nondisplaced fracture of pisiform, left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146450,10,'S62.164S ','Nondisplaced fracture of pisiform, right wrist, sequela','Y','0000-00-00 00:00:00'),(146449,10,'S62.164P ','Nondisplaced fracture of pisiform, right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146448,10,'S62.164K ','Nondisplaced fracture of pisiform, right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146447,10,'S62.164G ','Nondisplaced fracture of pisiform, right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146446,10,'S62.164D ','Nondisplaced fracture of pisiform, right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146445,10,'S62.164B ','Nondisplaced fracture of pisiform, right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146443,10,'S62.163S ','Displaced fracture of pisiform, unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146444,10,'S62.164A ','Nondisplaced fracture of pisiform, right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146442,10,'S62.163P ','Displaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146441,10,'S62.163K ','Displaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146440,10,'S62.163G ','Displaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146439,10,'S62.163D ','Displaced fracture of pisiform, unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146438,10,'S62.163B ','Displaced fracture of pisiform, unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146437,10,'S62.163A ','Displaced fracture of pisiform, unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146436,10,'S62.162S ','Displaced fracture of pisiform, left wrist, sequela','Y','0000-00-00 00:00:00'),(146435,10,'S62.162P ','Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146434,10,'S62.162K ','Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146433,10,'S62.162G ','Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146432,10,'S62.162D ','Displaced fracture of pisiform, left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146431,10,'S62.162B ','Displaced fracture of pisiform, left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146429,10,'S62.161S ','Displaced fracture of pisiform, right wrist, sequela','Y','0000-00-00 00:00:00'),(146430,10,'S62.162A ','Displaced fracture of pisiform, left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146428,10,'S62.161P ','Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146427,10,'S62.161K ','Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146426,10,'S62.161G ','Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146425,10,'S62.161D ','Displaced fracture of pisiform, right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146424,10,'S62.161B ','Displaced fracture of pisiform, right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146423,10,'S62.161A ','Displaced fracture of pisiform, right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146422,10,'S62.156S ','Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146421,10,'S62.156P ','Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146420,10,'S62.156K ','Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146419,10,'S62.156G ','Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146418,10,'S62.156D ','Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146417,10,'S62.156B ','Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146416,10,'S62.156A ','Nondisplaced fracture of hook process of hamate [unciform] bone, unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146415,10,'S62.155S ','Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, sequela','Y','0000-00-00 00:00:00'),(146414,10,'S62.155P ','Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146413,10,'S62.155K ','Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146412,10,'S62.155G ','Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146411,10,'S62.155D ','Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146410,10,'S62.155B ','Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146409,10,'S62.155A ','Nondisplaced fracture of hook process of hamate [unciform] bone, left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146408,10,'S62.154S ','Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, sequela','Y','0000-00-00 00:00:00'),(146407,10,'S62.154P ','Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146406,10,'S62.154K ','Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146405,10,'S62.154G ','Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146404,10,'S62.154D ','Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146403,10,'S62.154B ','Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146402,10,'S62.154A ','Nondisplaced fracture of hook process of hamate [unciform] bone, right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146401,10,'S62.153S ','Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146400,10,'S62.153P ','Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146399,10,'S62.153K ','Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146398,10,'S62.153G ','Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146397,10,'S62.153D ','Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146396,10,'S62.153B ','Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146395,10,'S62.153A ','Displaced fracture of hook process of hamate [unciform] bone, unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146394,10,'S62.152S ','Displaced fracture of hook process of hamate [unciform] bone, left wrist, sequela','Y','0000-00-00 00:00:00'),(146393,10,'S62.152P ','Displaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146392,10,'S62.152K ','Displaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146391,10,'S62.152G ','Displaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146390,10,'S62.152D ','Displaced fracture of hook process of hamate [unciform] bone, left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146389,10,'S62.152B ','Displaced fracture of hook process of hamate [unciform] bone, left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146388,10,'S62.152A ','Displaced fracture of hook process of hamate [unciform] bone, left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146387,10,'S62.151S ','Displaced fracture of hook process of hamate [unciform] bone, right wrist, sequela','Y','0000-00-00 00:00:00'),(146386,10,'S62.151P ','Displaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146385,10,'S62.151K ','Displaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146384,10,'S62.151G ','Displaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146383,10,'S62.151D ','Displaced fracture of hook process of hamate [unciform] bone, right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146382,10,'S62.151B ','Displaced fracture of hook process of hamate [unciform] bone, right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146381,10,'S62.151A ','Displaced fracture of hook process of hamate [unciform] bone, right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146380,10,'S62.146S ','Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146379,10,'S62.146P ','Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146378,10,'S62.146K ','Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146377,10,'S62.146G ','Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146376,10,'S62.146D ','Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146375,10,'S62.146B ','Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146374,10,'S62.146A ','Nondisplaced fracture of body of hamate [unciform] bone, unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146373,10,'S62.145S ','Nondisplaced fracture of body of hamate [unciform] bone, left wrist, sequela','Y','0000-00-00 00:00:00'),(146372,10,'S62.145P ','Nondisplaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146371,10,'S62.145K ','Nondisplaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146370,10,'S62.145G ','Nondisplaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146369,10,'S62.145D ','Nondisplaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146368,10,'S62.145B ','Nondisplaced fracture of body of hamate [unciform] bone, left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146367,10,'S62.145A ','Nondisplaced fracture of body of hamate [unciform] bone, left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146366,10,'S62.144S ','Nondisplaced fracture of body of hamate [unciform] bone, right wrist, sequela','Y','0000-00-00 00:00:00'),(146365,10,'S62.144P ','Nondisplaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146364,10,'S62.144K ','Nondisplaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146363,10,'S62.144G ','Nondisplaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146362,10,'S62.144D ','Nondisplaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146361,10,'S62.144B ','Nondisplaced fracture of body of hamate [unciform] bone, right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146360,10,'S62.144A ','Nondisplaced fracture of body of hamate [unciform] bone, right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146359,10,'S62.143S ','Displaced fracture of body of hamate [unciform] bone, unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146358,10,'S62.143P ','Displaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146357,10,'S62.143K ','Displaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146356,10,'S62.143G ','Displaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146355,10,'S62.143D ','Displaced fracture of body of hamate [unciform] bone, unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146354,10,'S62.143B ','Displaced fracture of body of hamate [unciform] bone, unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146352,10,'S62.142S ','Displaced fracture of body of hamate [unciform] bone, left wrist, sequela','Y','0000-00-00 00:00:00'),(146353,10,'S62.143A ','Displaced fracture of body of hamate [unciform] bone, unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146351,10,'S62.142P ','Displaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146350,10,'S62.142K ','Displaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146349,10,'S62.142G ','Displaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146348,10,'S62.142D ','Displaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146347,10,'S62.142B ','Displaced fracture of body of hamate [unciform] bone, left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146345,10,'S62.141S ','Displaced fracture of body of hamate [unciform] bone, right wrist, sequela','Y','0000-00-00 00:00:00'),(146346,10,'S62.142A ','Displaced fracture of body of hamate [unciform] bone, left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146344,10,'S62.141P ','Displaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146343,10,'S62.141K ','Displaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146342,10,'S62.141G ','Displaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146341,10,'S62.141D ','Displaced fracture of body of hamate [unciform] bone, right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146340,10,'S62.141B ','Displaced fracture of body of hamate [unciform] bone, right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146339,10,'S62.141A ','Displaced fracture of body of hamate [unciform] bone, right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146338,10,'S62.136S ','Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146337,10,'S62.136P ','Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146336,10,'S62.136K ','Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146335,10,'S62.136G ','Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146334,10,'S62.136D ','Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146333,10,'S62.136B ','Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146332,10,'S62.136A ','Nondisplaced fracture of capitate [os magnum] bone, unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146331,10,'S62.135S ','Nondisplaced fracture of capitate [os magnum] bone, left wrist, sequela','Y','0000-00-00 00:00:00'),(146330,10,'S62.135P ','Nondisplaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146329,10,'S62.135K ','Nondisplaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146328,10,'S62.135G ','Nondisplaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146327,10,'S62.135D ','Nondisplaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146326,10,'S62.135B ','Nondisplaced fracture of capitate [os magnum] bone, left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146325,10,'S62.135A ','Nondisplaced fracture of capitate [os magnum] bone, left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146324,10,'S62.134S ','Nondisplaced fracture of capitate [os magnum] bone, right wrist, sequela','Y','0000-00-00 00:00:00'),(146323,10,'S62.134P ','Nondisplaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146322,10,'S62.134K ','Nondisplaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146321,10,'S62.134G ','Nondisplaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146320,10,'S62.134D ','Nondisplaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146319,10,'S62.134B ','Nondisplaced fracture of capitate [os magnum] bone, right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146318,10,'S62.134A ','Nondisplaced fracture of capitate [os magnum] bone, right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146317,10,'S62.133S ','Displaced fracture of capitate [os magnum] bone, unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146316,10,'S62.133P ','Displaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146315,10,'S62.133K ','Displaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146314,10,'S62.133G ','Displaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146313,10,'S62.133D ','Displaced fracture of capitate [os magnum] bone, unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146312,10,'S62.133B ','Displaced fracture of capitate [os magnum] bone, unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146311,10,'S62.133A ','Displaced fracture of capitate [os magnum] bone, unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146310,10,'S62.132S ','Displaced fracture of capitate [os magnum] bone, left wrist, sequela','Y','0000-00-00 00:00:00'),(146309,10,'S62.132P ','Displaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146308,10,'S62.132K ','Displaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146307,10,'S62.132G ','Displaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146306,10,'S62.132D ','Displaced fracture of capitate [os magnum] bone, left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146305,10,'S62.132B ','Displaced fracture of capitate [os magnum] bone, left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146304,10,'S62.132A ','Displaced fracture of capitate [os magnum] bone, left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146303,10,'S62.131S ','Displaced fracture of capitate [os magnum] bone, right wrist, sequela','Y','0000-00-00 00:00:00'),(146302,10,'S62.131P ','Displaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146301,10,'S62.131K ','Displaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146300,10,'S62.131G ','Displaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146299,10,'S62.131D ','Displaced fracture of capitate [os magnum] bone, right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146298,10,'S62.131B ','Displaced fracture of capitate [os magnum] bone, right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146297,10,'S62.131A ','Displaced fracture of capitate [os magnum] bone, right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146296,10,'S62.126S ','Nondisplaced fracture of lunate [semilunar], unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146295,10,'S62.126P ','Nondisplaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146294,10,'S62.126K ','Nondisplaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146293,10,'S62.126G ','Nondisplaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146292,10,'S62.126D ','Nondisplaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146291,10,'S62.126B ','Nondisplaced fracture of lunate [semilunar], unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146290,10,'S62.126A ','Nondisplaced fracture of lunate [semilunar], unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146289,10,'S62.125S ','Nondisplaced fracture of lunate [semilunar], left wrist, sequela','Y','0000-00-00 00:00:00'),(146288,10,'S62.125P ','Nondisplaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146287,10,'S62.125K ','Nondisplaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146286,10,'S62.125G ','Nondisplaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146285,10,'S62.125D ','Nondisplaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146284,10,'S62.125B ','Nondisplaced fracture of lunate [semilunar], left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146283,10,'S62.125A ','Nondisplaced fracture of lunate [semilunar], left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146282,10,'S62.124S ','Nondisplaced fracture of lunate [semilunar], right wrist, sequela','Y','0000-00-00 00:00:00'),(146281,10,'S62.124P ','Nondisplaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146280,10,'S62.124K ','Nondisplaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146279,10,'S62.124G ','Nondisplaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146278,10,'S62.124D ','Nondisplaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146277,10,'S62.124B ','Nondisplaced fracture of lunate [semilunar], right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146276,10,'S62.124A ','Nondisplaced fracture of lunate [semilunar], right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146275,10,'S62.123S ','Displaced fracture of lunate [semilunar], unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146274,10,'S62.123P ','Displaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146273,10,'S62.123K ','Displaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146272,10,'S62.123G ','Displaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146271,10,'S62.123D ','Displaced fracture of lunate [semilunar], unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146270,10,'S62.123B ','Displaced fracture of lunate [semilunar], unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146268,10,'S62.122S ','Displaced fracture of lunate [semilunar], left wrist, sequela','Y','0000-00-00 00:00:00'),(146269,10,'S62.123A ','Displaced fracture of lunate [semilunar], unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146267,10,'S62.122P ','Displaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146266,10,'S62.122K ','Displaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146265,10,'S62.122G ','Displaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146264,10,'S62.122D ','Displaced fracture of lunate [semilunar], left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146263,10,'S62.122B ','Displaced fracture of lunate [semilunar], left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146261,10,'S62.121S ','Displaced fracture of lunate [semilunar], right wrist, sequela','Y','0000-00-00 00:00:00'),(146262,10,'S62.122A ','Displaced fracture of lunate [semilunar], left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146260,10,'S62.121P ','Displaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146259,10,'S62.121K ','Displaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146258,10,'S62.121G ','Displaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146257,10,'S62.121D ','Displaced fracture of lunate [semilunar], right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146256,10,'S62.121B ','Displaced fracture of lunate [semilunar], right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146255,10,'S62.121A ','Displaced fracture of lunate [semilunar], right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146254,10,'S62.116S ','Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146253,10,'S62.116P ','Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146252,10,'S62.116K ','Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146251,10,'S62.116G ','Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146250,10,'S62.116D ','Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146249,10,'S62.116B ','Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146248,10,'S62.116A ','Nondisplaced fracture of triquetrum [cuneiform] bone, unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146247,10,'S62.115S ','Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, sequela','Y','0000-00-00 00:00:00'),(146246,10,'S62.115P ','Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146245,10,'S62.115K ','Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146244,10,'S62.115G ','Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146243,10,'S62.115D ','Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146242,10,'S62.115B ','Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146241,10,'S62.115A ','Nondisplaced fracture of triquetrum [cuneiform] bone, left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146240,10,'S62.114S ','Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, sequela','Y','0000-00-00 00:00:00'),(146239,10,'S62.114P ','Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146238,10,'S62.114K ','Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146237,10,'S62.114G ','Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146236,10,'S62.114D ','Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146235,10,'S62.114B ','Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146234,10,'S62.114A ','Nondisplaced fracture of triquetrum [cuneiform] bone, right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146233,10,'S62.113S ','Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146232,10,'S62.113P ','Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146231,10,'S62.113K ','Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146230,10,'S62.113G ','Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146229,10,'S62.113D ','Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146228,10,'S62.113B ','Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146227,10,'S62.113A ','Displaced fracture of triquetrum [cuneiform] bone, unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146226,10,'S62.112S ','Displaced fracture of triquetrum [cuneiform] bone, left wrist, sequela','Y','0000-00-00 00:00:00'),(146225,10,'S62.112P ','Displaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146224,10,'S62.112K ','Displaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146223,10,'S62.112G ','Displaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146222,10,'S62.112D ','Displaced fracture of triquetrum [cuneiform] bone, left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146221,10,'S62.112B ','Displaced fracture of triquetrum [cuneiform] bone, left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146220,10,'S62.112A ','Displaced fracture of triquetrum [cuneiform] bone, left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146219,10,'S62.111S ','Displaced fracture of triquetrum [cuneiform] bone, right wrist, sequela','Y','0000-00-00 00:00:00'),(146218,10,'S62.111P ','Displaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146217,10,'S62.111K ','Displaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146216,10,'S62.111G ','Displaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146215,10,'S62.111D ','Displaced fracture of triquetrum [cuneiform] bone, right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146214,10,'S62.111B ','Displaced fracture of triquetrum [cuneiform] bone, right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146213,10,'S62.111A ','Displaced fracture of triquetrum [cuneiform] bone, right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146212,10,'S62.109S ','Fracture of unspecified carpal bone, unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146211,10,'S62.109P ','Fracture of unspecified carpal bone, unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146210,10,'S62.109K ','Fracture of unspecified carpal bone, unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146209,10,'S62.109G ','Fracture of unspecified carpal bone, unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146208,10,'S62.109D ','Fracture of unspecified carpal bone, unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146207,10,'S62.109B ','Fracture of unspecified carpal bone, unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146206,10,'S62.109A ','Fracture of unspecified carpal bone, unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146205,10,'S62.102S ','Fracture of unspecified carpal bone, left wrist, sequela','Y','0000-00-00 00:00:00'),(146204,10,'S62.102P ','Fracture of unspecified carpal bone, left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146203,10,'S62.102K ','Fracture of unspecified carpal bone, left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146202,10,'S62.102G ','Fracture of unspecified carpal bone, left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146201,10,'S62.102D ','Fracture of unspecified carpal bone, left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146200,10,'S62.102B ','Fracture of unspecified carpal bone, left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146199,10,'S62.102A ','Fracture of unspecified carpal bone, left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146198,10,'S62.101S ','Fracture of unspecified carpal bone, right wrist, sequela','Y','0000-00-00 00:00:00'),(146197,10,'S62.101P ','Fracture of unspecified carpal bone, right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146196,10,'S62.101K ','Fracture of unspecified carpal bone, right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146195,10,'S62.101G ','Fracture of unspecified carpal bone, right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146194,10,'S62.101D ','Fracture of unspecified carpal bone, right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146193,10,'S62.101B ','Fracture of unspecified carpal bone, right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146192,10,'S62.101A ','Fracture of unspecified carpal bone, right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146191,10,'S62.036S ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146190,10,'S62.036P ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146189,10,'S62.036K ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146188,10,'S62.036G ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146187,10,'S62.036D ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146186,10,'S62.036B ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146185,10,'S62.036A ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146184,10,'S62.035S ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, sequela','Y','0000-00-00 00:00:00'),(146183,10,'S62.035P ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146182,10,'S62.035K ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146181,10,'S62.035G ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146180,10,'S62.035D ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146179,10,'S62.035B ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146178,10,'S62.035A ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146177,10,'S62.034S ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, sequela','Y','0000-00-00 00:00:00'),(146176,10,'S62.034P ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146175,10,'S62.034K ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146174,10,'S62.034G ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146173,10,'S62.034D ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146172,10,'S62.034B ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146171,10,'S62.034A ','Nondisplaced fracture of proximal third of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146170,10,'S62.033S ','Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146169,10,'S62.033P ','Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146168,10,'S62.033K ','Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146167,10,'S62.033G ','Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146166,10,'S62.033D ','Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146165,10,'S62.033B ','Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146164,10,'S62.033A ','Displaced fracture of proximal third of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146163,10,'S62.032S ','Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, sequela','Y','0000-00-00 00:00:00'),(146162,10,'S62.032P ','Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146161,10,'S62.032K ','Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146160,10,'S62.032G ','Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146159,10,'S62.032D ','Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146158,10,'S62.032B ','Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146157,10,'S62.032A ','Displaced fracture of proximal third of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146156,10,'S62.031S ','Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, sequela','Y','0000-00-00 00:00:00'),(146155,10,'S62.031P ','Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146154,10,'S62.031K ','Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146153,10,'S62.031G ','Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146152,10,'S62.031D ','Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146151,10,'S62.031B ','Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146150,10,'S62.031A ','Displaced fracture of proximal third of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146149,10,'S62.026S ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146148,10,'S62.026P ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146147,10,'S62.026K ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146146,10,'S62.026G ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146145,10,'S62.026D ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146144,10,'S62.026B ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146143,10,'S62.026A ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146142,10,'S62.025S ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, sequela','Y','0000-00-00 00:00:00'),(146141,10,'S62.025P ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146140,10,'S62.025K ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146139,10,'S62.025G ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146138,10,'S62.025D ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146137,10,'S62.025B ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146136,10,'S62.025A ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146135,10,'S62.024S ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, sequela','Y','0000-00-00 00:00:00'),(146134,10,'S62.024P ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146133,10,'S62.024K ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146132,10,'S62.024G ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146131,10,'S62.024D ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146130,10,'S62.024B ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146129,10,'S62.024A ','Nondisplaced fracture of middle third of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146128,10,'S62.023S ','Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146127,10,'S62.023P ','Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146126,10,'S62.023K ','Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146125,10,'S62.023G ','Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146124,10,'S62.023D ','Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146123,10,'S62.023B ','Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146122,10,'S62.023A ','Displaced fracture of middle third of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146121,10,'S62.022S ','Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, sequela','Y','0000-00-00 00:00:00'),(146120,10,'S62.022P ','Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146119,10,'S62.022K ','Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146118,10,'S62.022G ','Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146117,10,'S62.022D ','Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146116,10,'S62.022B ','Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146115,10,'S62.022A ','Displaced fracture of middle third of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146114,10,'S62.021S ','Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, sequela','Y','0000-00-00 00:00:00'),(146113,10,'S62.021P ','Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146112,10,'S62.021K ','Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146111,10,'S62.021G ','Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146110,10,'S62.021D ','Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146109,10,'S62.021B ','Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146108,10,'S62.021A ','Displaced fracture of middle third of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146107,10,'S62.016S ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146106,10,'S62.016P ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146105,10,'S62.016K ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146104,10,'S62.016G ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146103,10,'S62.016D ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146102,10,'S62.016B ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146101,10,'S62.016A ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146100,10,'S62.015S ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, sequela','Y','0000-00-00 00:00:00'),(146099,10,'S62.015P ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146098,10,'S62.015K ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146097,10,'S62.015G ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146096,10,'S62.015D ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146095,10,'S62.015B ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146094,10,'S62.015A ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146093,10,'S62.014S ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, sequela','Y','0000-00-00 00:00:00'),(146092,10,'S62.014P ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146091,10,'S62.014K ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146090,10,'S62.014G ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146089,10,'S62.014D ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146088,10,'S62.014B ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146087,10,'S62.014A ','Nondisplaced fracture of distal pole of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146086,10,'S62.013S ','Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146085,10,'S62.013P ','Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146084,10,'S62.013K ','Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146083,10,'S62.013G ','Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146082,10,'S62.013D ','Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146081,10,'S62.013B ','Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146080,10,'S62.013A ','Displaced fracture of distal pole of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146079,10,'S62.012S ','Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, sequela','Y','0000-00-00 00:00:00'),(146078,10,'S62.012P ','Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146077,10,'S62.012K ','Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146076,10,'S62.012G ','Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146075,10,'S62.012D ','Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146074,10,'S62.012B ','Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146073,10,'S62.012A ','Displaced fracture of distal pole of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146072,10,'S62.011S ','Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, sequela','Y','0000-00-00 00:00:00'),(146071,10,'S62.011P ','Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146070,10,'S62.011K ','Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146069,10,'S62.011G ','Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146068,10,'S62.011D ','Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146067,10,'S62.011B ','Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146066,10,'S62.011A ','Displaced fracture of distal pole of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146065,10,'S62.009S ','Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146064,10,'S62.009P ','Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146063,10,'S62.009K ','Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146062,10,'S62.009G ','Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146061,10,'S62.009D ','Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146060,10,'S62.009B ','Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146059,10,'S62.009A ','Unspecified fracture of navicular [scaphoid] bone of unspecified wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146058,10,'S62.002S ','Unspecified fracture of navicular [scaphoid] bone of left wrist, sequela','Y','0000-00-00 00:00:00'),(146057,10,'S62.002P ','Unspecified fracture of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146056,10,'S62.002K ','Unspecified fracture of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146055,10,'S62.002G ','Unspecified fracture of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146054,10,'S62.002D ','Unspecified fracture of navicular [scaphoid] bone of left wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146053,10,'S62.002B ','Unspecified fracture of navicular [scaphoid] bone of left wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146052,10,'S62.002A ','Unspecified fracture of navicular [scaphoid] bone of left wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146051,10,'S62.001S ','Unspecified fracture of navicular [scaphoid] bone of right wrist, sequela','Y','0000-00-00 00:00:00'),(146050,10,'S62.001P ','Unspecified fracture of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(146049,10,'S62.001K ','Unspecified fracture of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(146048,10,'S62.001G ','Unspecified fracture of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(146047,10,'S62.001D ','Unspecified fracture of navicular [scaphoid] bone of right wrist, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(146046,10,'S62.001B ','Unspecified fracture of navicular [scaphoid] bone of right wrist, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(146045,10,'S62.001A ','Unspecified fracture of navicular [scaphoid] bone of right wrist, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(146044,10,'S61.559S ','Open bite of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146043,10,'S61.559D ','Open bite of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(146041,10,'S61.552S ','Open bite of left wrist, sequela','Y','0000-00-00 00:00:00'),(146042,10,'S61.559A ','Open bite of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(146040,10,'S61.552D ','Open bite of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(146038,10,'S61.551S ','Open bite of right wrist, sequela','Y','0000-00-00 00:00:00'),(146039,10,'S61.552A ','Open bite of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(146037,10,'S61.551D ','Open bite of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(146036,10,'S61.551A ','Open bite of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(146035,10,'S61.549S ','Puncture wound with foreign body of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146034,10,'S61.549D ','Puncture wound with foreign body of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(146033,10,'S61.549A ','Puncture wound with foreign body of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(146032,10,'S61.542S ','Puncture wound with foreign body of left wrist, sequela','Y','0000-00-00 00:00:00'),(146031,10,'S61.542D ','Puncture wound with foreign body of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(146030,10,'S61.542A ','Puncture wound with foreign body of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(146029,10,'S61.541S ','Puncture wound with foreign body of right wrist, sequela','Y','0000-00-00 00:00:00'),(146028,10,'S61.541D ','Puncture wound with foreign body of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(146026,10,'S61.539S ','Puncture wound without foreign body of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146027,10,'S61.541A ','Puncture wound with foreign body of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(146025,10,'S61.539D ','Puncture wound without foreign body of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(146024,10,'S61.539A ','Puncture wound without foreign body of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(146023,10,'S61.532S ','Puncture wound without foreign body of left wrist, sequela','Y','0000-00-00 00:00:00'),(146022,10,'S61.532D ','Puncture wound without foreign body of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(146020,10,'S61.531S ','Puncture wound without foreign body of right wrist, sequela','Y','0000-00-00 00:00:00'),(146021,10,'S61.532A ','Puncture wound without foreign body of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(146019,10,'S61.531D ','Puncture wound without foreign body of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(146018,10,'S61.531A ','Puncture wound without foreign body of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(146017,10,'S61.529S ','Laceration with foreign body of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146016,10,'S61.529D ','Laceration with foreign body of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(146015,10,'S61.529A ','Laceration with foreign body of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(146014,10,'S61.522S ','Laceration with foreign body of left wrist, sequela','Y','0000-00-00 00:00:00'),(146013,10,'S61.522D ','Laceration with foreign body of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(146011,10,'S61.521S ','Laceration with foreign body of right wrist, sequela','Y','0000-00-00 00:00:00'),(146012,10,'S61.522A ','Laceration with foreign body of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(146010,10,'S61.521D ','Laceration with foreign body of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(146009,10,'S61.521A ','Laceration with foreign body of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(146008,10,'S61.519S ','Laceration without foreign body of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(146007,10,'S61.519D ','Laceration without foreign body of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(146006,10,'S61.519A ','Laceration without foreign body of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(146005,10,'S61.512S ','Laceration without foreign body of left wrist, sequela','Y','0000-00-00 00:00:00'),(146003,10,'S61.512A ','Laceration without foreign body of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(146004,10,'S61.512D ','Laceration without foreign body of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(146002,10,'S61.511S ','Laceration without foreign body of right wrist, sequela','Y','0000-00-00 00:00:00'),(146001,10,'S61.511D ','Laceration without foreign body of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(146000,10,'S61.511A ','Laceration without foreign body of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(145999,10,'S61.509S ','Unspecified open wound of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(145998,10,'S61.509D ','Unspecified open wound of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145996,10,'S61.502S ','Unspecified open wound of left wrist, sequela','Y','0000-00-00 00:00:00'),(145997,10,'S61.509A ','Unspecified open wound of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(145995,10,'S61.502D ','Unspecified open wound of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145994,10,'S61.502A ','Unspecified open wound of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(145992,10,'S61.501D ','Unspecified open wound of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145993,10,'S61.501S ','Unspecified open wound of right wrist, sequela','Y','0000-00-00 00:00:00'),(145991,10,'S61.501A ','Unspecified open wound of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(145990,10,'S61.459S ','Open bite of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(145988,10,'S61.459A ','Open bite of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(145989,10,'S61.459D ','Open bite of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145987,10,'S61.452S ','Open bite of left hand, sequela','Y','0000-00-00 00:00:00'),(145985,10,'S61.452A ','Open bite of left hand, initial encounter','Y','0000-00-00 00:00:00'),(145986,10,'S61.452D ','Open bite of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145983,10,'S61.451D ','Open bite of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145984,10,'S61.451S ','Open bite of right hand, sequela','Y','0000-00-00 00:00:00'),(145982,10,'S61.451A ','Open bite of right hand, initial encounter','Y','0000-00-00 00:00:00'),(145981,10,'S61.449S ','Puncture wound with foreign body of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(145980,10,'S61.449D ','Puncture wound with foreign body of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145979,10,'S61.449A ','Puncture wound with foreign body of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(145978,10,'S61.442S ','Puncture wound with foreign body of left hand, sequela','Y','0000-00-00 00:00:00'),(145977,10,'S61.442D ','Puncture wound with foreign body of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145975,10,'S61.441S ','Puncture wound with foreign body of right hand, sequela','Y','0000-00-00 00:00:00'),(145976,10,'S61.442A ','Puncture wound with foreign body of left hand, initial encounter','Y','0000-00-00 00:00:00'),(145974,10,'S61.441D ','Puncture wound with foreign body of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145973,10,'S61.441A ','Puncture wound with foreign body of right hand, initial encounter','Y','0000-00-00 00:00:00'),(145972,10,'S61.439S ','Puncture wound without foreign body of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(145971,10,'S61.439D ','Puncture wound without foreign body of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145969,10,'S61.432S ','Puncture wound without foreign body of left hand, sequela','Y','0000-00-00 00:00:00'),(145970,10,'S61.439A ','Puncture wound without foreign body of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(145968,10,'S61.432D ','Puncture wound without foreign body of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145967,10,'S61.432A ','Puncture wound without foreign body of left hand, initial encounter','Y','0000-00-00 00:00:00'),(145966,10,'S61.431S ','Puncture wound without foreign body of right hand, sequela','Y','0000-00-00 00:00:00'),(145965,10,'S61.431D ','Puncture wound without foreign body of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145964,10,'S61.431A ','Puncture wound without foreign body of right hand, initial encounter','Y','0000-00-00 00:00:00'),(145963,10,'S61.429S ','Laceration with foreign body of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(145962,10,'S61.429D ','Laceration with foreign body of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145961,10,'S61.429A ','Laceration with foreign body of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(145959,10,'S61.422D ','Laceration with foreign body of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145960,10,'S61.422S ','Laceration with foreign body of left hand, sequela','Y','0000-00-00 00:00:00'),(145958,10,'S61.422A ','Laceration with foreign body of left hand, initial encounter','Y','0000-00-00 00:00:00'),(145957,10,'S61.421S ','Laceration with foreign body of right hand, sequela','Y','0000-00-00 00:00:00'),(145956,10,'S61.421D ','Laceration with foreign body of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145955,10,'S61.421A ','Laceration with foreign body of right hand, initial encounter','Y','0000-00-00 00:00:00'),(145954,10,'S61.419S ','Laceration without foreign body of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(145953,10,'S61.419D ','Laceration without foreign body of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145951,10,'S61.412S ','Laceration without foreign body of left hand, sequela','Y','0000-00-00 00:00:00'),(145952,10,'S61.419A ','Laceration without foreign body of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(145950,10,'S61.412D ','Laceration without foreign body of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145949,10,'S61.412A ','Laceration without foreign body of left hand, initial encounter','Y','0000-00-00 00:00:00'),(145947,10,'S61.411D ','Laceration without foreign body of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145948,10,'S61.411S ','Laceration without foreign body of right hand, sequela','Y','0000-00-00 00:00:00'),(145946,10,'S61.411A ','Laceration without foreign body of right hand, initial encounter','Y','0000-00-00 00:00:00'),(145945,10,'S61.409S ','Unspecified open wound of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(145944,10,'S61.409D ','Unspecified open wound of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145943,10,'S61.409A ','Unspecified open wound of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(145942,10,'S61.402S ','Unspecified open wound of left hand, sequela','Y','0000-00-00 00:00:00'),(145940,10,'S61.402A ','Unspecified open wound of left hand, initial encounter','Y','0000-00-00 00:00:00'),(145941,10,'S61.402D ','Unspecified open wound of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145939,10,'S61.401S ','Unspecified open wound of right hand, sequela','Y','0000-00-00 00:00:00'),(145938,10,'S61.401D ','Unspecified open wound of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145936,10,'S61.359S ','Open bite of unspecified finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145937,10,'S61.401A ','Unspecified open wound of right hand, initial encounter','Y','0000-00-00 00:00:00'),(145935,10,'S61.359D ','Open bite of unspecified finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145934,10,'S61.359A ','Open bite of unspecified finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145933,10,'S61.358S ','Open bite of other finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145932,10,'S61.358D ','Open bite of other finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145931,10,'S61.358A ','Open bite of other finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145930,10,'S61.357S ','Open bite of left little finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145929,10,'S61.357D ','Open bite of left little finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145928,10,'S61.357A ','Open bite of left little finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145927,10,'S61.356S ','Open bite of right little finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145926,10,'S61.356D ','Open bite of right little finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145925,10,'S61.356A ','Open bite of right little finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145924,10,'S61.355S ','Open bite of left ring finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145923,10,'S61.355D ','Open bite of left ring finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145922,10,'S61.355A ','Open bite of left ring finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145921,10,'S61.354S ','Open bite of right ring finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145920,10,'S61.354D ','Open bite of right ring finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145919,10,'S61.354A ','Open bite of right ring finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145918,10,'S61.353S ','Open bite of left middle finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145917,10,'S61.353D ','Open bite of left middle finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145915,10,'S61.352S ','Open bite of right middle finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145916,10,'S61.353A ','Open bite of left middle finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145914,10,'S61.352D ','Open bite of right middle finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145913,10,'S61.352A ','Open bite of right middle finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145912,10,'S61.351S ','Open bite of left index finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145911,10,'S61.351D ','Open bite of left index finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145910,10,'S61.351A ','Open bite of left index finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145909,10,'S61.350S ','Open bite of right index finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145908,10,'S61.350D ','Open bite of right index finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145907,10,'S61.350A ','Open bite of right index finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145906,10,'S61.349S ','Puncture wound with foreign body of unspecified finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145905,10,'S61.349D ','Puncture wound with foreign body of unspecified finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145904,10,'S61.349A ','Puncture wound with foreign body of unspecified finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145903,10,'S61.348S ','Puncture wound with foreign body of other finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145902,10,'S61.348D ','Puncture wound with foreign body of other finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145901,10,'S61.348A ','Puncture wound with foreign body of other finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145900,10,'S61.347S ','Puncture wound with foreign body of left little finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145899,10,'S61.347D ','Puncture wound with foreign body of left little finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145898,10,'S61.347A ','Puncture wound with foreign body of left little finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145897,10,'S61.346S ','Puncture wound with foreign body of right little finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145896,10,'S61.346D ','Puncture wound with foreign body of right little finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145895,10,'S61.346A ','Puncture wound with foreign body of right little finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145894,10,'S61.345S ','Puncture wound with foreign body of left ring finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145893,10,'S61.345D ','Puncture wound with foreign body of left ring finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145892,10,'S61.345A ','Puncture wound with foreign body of left ring finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145891,10,'S61.344S ','Puncture wound with foreign body of right ring finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145890,10,'S61.344D ','Puncture wound with foreign body of right ring finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145889,10,'S61.344A ','Puncture wound with foreign body of right ring finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145888,10,'S61.343S ','Puncture wound with foreign body of left middle finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145887,10,'S61.343D ','Puncture wound with foreign body of left middle finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145886,10,'S61.343A ','Puncture wound with foreign body of left middle finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145885,10,'S61.342S ','Puncture wound with foreign body of right middle finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145884,10,'S61.342D ','Puncture wound with foreign body of right middle finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145883,10,'S61.342A ','Puncture wound with foreign body of right middle finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145882,10,'S61.341S ','Puncture wound with foreign body of left index finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145881,10,'S61.341D ','Puncture wound with foreign body of left index finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145880,10,'S61.341A ','Puncture wound with foreign body of left index finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145879,10,'S61.340S ','Puncture wound with foreign body of right index finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145878,10,'S61.340D ','Puncture wound with foreign body of right index finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145877,10,'S61.340A ','Puncture wound with foreign body of right index finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145876,10,'S61.339S ','Puncture wound without foreign body of unspecified finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145875,10,'S61.339D ','Puncture wound without foreign body of unspecified finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145874,10,'S61.339A ','Puncture wound without foreign body of unspecified finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145873,10,'S61.338S ','Puncture wound without foreign body of other finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145872,10,'S61.338D ','Puncture wound without foreign body of other finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145871,10,'S61.338A ','Puncture wound without foreign body of other finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145870,10,'S61.337S ','Puncture wound without foreign body of left little finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145869,10,'S61.337D ','Puncture wound without foreign body of left little finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145868,10,'S61.337A ','Puncture wound without foreign body of left little finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145867,10,'S61.336S ','Puncture wound without foreign body of right little finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145866,10,'S61.336D ','Puncture wound without foreign body of right little finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145865,10,'S61.336A ','Puncture wound without foreign body of right little finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145864,10,'S61.335S ','Puncture wound without foreign body of left ring finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145863,10,'S61.335D ','Puncture wound without foreign body of left ring finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145862,10,'S61.335A ','Puncture wound without foreign body of left ring finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145861,10,'S61.334S ','Puncture wound without foreign body of right ring finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145860,10,'S61.334D ','Puncture wound without foreign body of right ring finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145859,10,'S61.334A ','Puncture wound without foreign body of right ring finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145858,10,'S61.333S ','Puncture wound without foreign body of left middle finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145857,10,'S61.333D ','Puncture wound without foreign body of left middle finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145856,10,'S61.333A ','Puncture wound without foreign body of left middle finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145855,10,'S61.332S ','Puncture wound without foreign body of right middle finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145854,10,'S61.332D ','Puncture wound without foreign body of right middle finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145853,10,'S61.332A ','Puncture wound without foreign body of right middle finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145852,10,'S61.331S ','Puncture wound without foreign body of left index finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145851,10,'S61.331D ','Puncture wound without foreign body of left index finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145850,10,'S61.331A ','Puncture wound without foreign body of left index finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145849,10,'S61.330S ','Puncture wound without foreign body of right index finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145848,10,'S61.330D ','Puncture wound without foreign body of right index finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145847,10,'S61.330A ','Puncture wound without foreign body of right index finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145846,10,'S61.329S ','Laceration with foreign body of unspecified finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145845,10,'S61.329D ','Laceration with foreign body of unspecified finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145844,10,'S61.329A ','Laceration with foreign body of unspecified finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145843,10,'S61.328S ','Laceration with foreign body of other finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145842,10,'S61.328D ','Laceration with foreign body of other finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145841,10,'S61.328A ','Laceration with foreign body of other finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145840,10,'S61.327S ','Laceration with foreign body of left little finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145839,10,'S61.327D ','Laceration with foreign body of left little finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145838,10,'S61.327A ','Laceration with foreign body of left little finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145837,10,'S61.326S ','Laceration with foreign body of right little finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145836,10,'S61.326D ','Laceration with foreign body of right little finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145835,10,'S61.326A ','Laceration with foreign body of right little finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145834,10,'S61.325S ','Laceration with foreign body of left ring finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145833,10,'S61.325D ','Laceration with foreign body of left ring finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145832,10,'S61.325A ','Laceration with foreign body of left ring finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145831,10,'S61.324S ','Laceration with foreign body of right ring finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145830,10,'S61.324D ','Laceration with foreign body of right ring finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145829,10,'S61.324A ','Laceration with foreign body of right ring finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145828,10,'S61.323S ','Laceration with foreign body of left middle finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145827,10,'S61.323D ','Laceration with foreign body of left middle finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145826,10,'S61.323A ','Laceration with foreign body of left middle finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145825,10,'S61.322S ','Laceration with foreign body of right middle finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145824,10,'S61.322D ','Laceration with foreign body of right middle finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145823,10,'S61.322A ','Laceration with foreign body of right middle finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145822,10,'S61.321S ','Laceration with foreign body of left index finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145821,10,'S61.321D ','Laceration with foreign body of left index finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145820,10,'S61.321A ','Laceration with foreign body of left index finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145819,10,'S61.320S ','Laceration with foreign body of right index finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145818,10,'S61.320D ','Laceration with foreign body of right index finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145817,10,'S61.320A ','Laceration with foreign body of right index finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145816,10,'S61.319S ','Laceration without foreign body of unspecified finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145815,10,'S61.319D ','Laceration without foreign body of unspecified finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145814,10,'S61.319A ','Laceration without foreign body of unspecified finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145813,10,'S61.318S ','Laceration without foreign body of other finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145812,10,'S61.318D ','Laceration without foreign body of other finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145811,10,'S61.318A ','Laceration without foreign body of other finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145810,10,'S61.317S ','Laceration without foreign body of left little finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145809,10,'S61.317D ','Laceration without foreign body of left little finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145808,10,'S61.317A ','Laceration without foreign body of left little finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145807,10,'S61.316S ','Laceration without foreign body of right little finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145806,10,'S61.316D ','Laceration without foreign body of right little finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145805,10,'S61.316A ','Laceration without foreign body of right little finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145804,10,'S61.315S ','Laceration without foreign body of left ring finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145803,10,'S61.315D ','Laceration without foreign body of left ring finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145802,10,'S61.315A ','Laceration without foreign body of left ring finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145801,10,'S61.314S ','Laceration without foreign body of right ring finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145800,10,'S61.314D ','Laceration without foreign body of right ring finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145799,10,'S61.314A ','Laceration without foreign body of right ring finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145798,10,'S61.313S ','Laceration without foreign body of left middle finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145797,10,'S61.313D ','Laceration without foreign body of left middle finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145796,10,'S61.313A ','Laceration without foreign body of left middle finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145795,10,'S61.312S ','Laceration without foreign body of right middle finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145794,10,'S61.312D ','Laceration without foreign body of right middle finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145793,10,'S61.312A ','Laceration without foreign body of right middle finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145792,10,'S61.311S ','Laceration without foreign body of left index finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145791,10,'S61.311D ','Laceration without foreign body of left index finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145790,10,'S61.311A ','Laceration without foreign body of left index finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145789,10,'S61.310S ','Laceration without foreign body of right index finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145788,10,'S61.310D ','Laceration without foreign body of right index finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145787,10,'S61.310A ','Laceration without foreign body of right index finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145786,10,'S61.309S ','Unspecified open wound of unspecified finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145785,10,'S61.309D ','Unspecified open wound of unspecified finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145784,10,'S61.309A ','Unspecified open wound of unspecified finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145783,10,'S61.308S ','Unspecified open wound of other finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145782,10,'S61.308D ','Unspecified open wound of other finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145781,10,'S61.308A ','Unspecified open wound of other finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145780,10,'S61.307S ','Unspecified open wound of left little finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145779,10,'S61.307D ','Unspecified open wound of left little finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145778,10,'S61.307A ','Unspecified open wound of left little finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145777,10,'S61.306S ','Unspecified open wound of right little finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145776,10,'S61.306D ','Unspecified open wound of right little finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145775,10,'S61.306A ','Unspecified open wound of right little finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145773,10,'S61.305D ','Unspecified open wound of left ring finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145774,10,'S61.305S ','Unspecified open wound of left ring finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145771,10,'S61.304S ','Unspecified open wound of right ring finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145772,10,'S61.305A ','Unspecified open wound of left ring finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145770,10,'S61.304D ','Unspecified open wound of right ring finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145769,10,'S61.304A ','Unspecified open wound of right ring finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145768,10,'S61.303S ','Unspecified open wound of left middle finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145767,10,'S61.303D ','Unspecified open wound of left middle finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145765,10,'S61.302S ','Unspecified open wound of right middle finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145766,10,'S61.303A ','Unspecified open wound of left middle finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145763,10,'S61.302A ','Unspecified open wound of right middle finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145764,10,'S61.302D ','Unspecified open wound of right middle finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145762,10,'S61.301S ','Unspecified open wound of left index finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145761,10,'S61.301D ','Unspecified open wound of left index finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145759,10,'S61.300S ','Unspecified open wound of right index finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145760,10,'S61.301A ','Unspecified open wound of left index finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145758,10,'S61.300D ','Unspecified open wound of right index finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145757,10,'S61.300A ','Unspecified open wound of right index finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145756,10,'S61.259S ','Open bite of unspecified finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145754,10,'S61.259A ','Open bite of unspecified finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145755,10,'S61.259D ','Open bite of unspecified finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145753,10,'S61.258S ','Open bite of other finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145752,10,'S61.258D ','Open bite of other finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145750,10,'S61.257S ','Open bite of left little finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145751,10,'S61.258A ','Open bite of other finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145749,10,'S61.257D ','Open bite of left little finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145747,10,'S61.256S ','Open bite of right little finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145748,10,'S61.257A ','Open bite of left little finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145746,10,'S61.256D ','Open bite of right little finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145745,10,'S61.256A ','Open bite of right little finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145744,10,'S61.255S ','Open bite of left ring finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145742,10,'S61.255A ','Open bite of left ring finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145743,10,'S61.255D ','Open bite of left ring finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145741,10,'S61.254S ','Open bite of right ring finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145739,10,'S61.254A ','Open bite of right ring finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145740,10,'S61.254D ','Open bite of right ring finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145738,10,'S61.253S ','Open bite of left middle finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145737,10,'S61.253D ','Open bite of left middle finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145736,10,'S61.253A ','Open bite of left middle finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145734,10,'S61.252D ','Open bite of right middle finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145735,10,'S61.252S ','Open bite of right middle finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145733,10,'S61.252A ','Open bite of right middle finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145731,10,'S61.251D ','Open bite of left index finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145732,10,'S61.251S ','Open bite of left index finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145730,10,'S61.251A ','Open bite of left index finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145728,10,'S61.250D ','Open bite of right index finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145729,10,'S61.250S ','Open bite of right index finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145727,10,'S61.250A ','Open bite of right index finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145726,10,'S61.249S ','Puncture wound with foreign body of unspecified finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145725,10,'S61.249D ','Puncture wound with foreign body of unspecified finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145724,10,'S61.249A ','Puncture wound with foreign body of unspecified finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145723,10,'S61.248S ','Puncture wound with foreign body of other finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145722,10,'S61.248D ','Puncture wound with foreign body of other finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145720,10,'S61.247S ','Puncture wound with foreign body of left little finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145721,10,'S61.248A ','Puncture wound with foreign body of other finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145719,10,'S61.247D ','Puncture wound with foreign body of left little finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145718,10,'S61.247A ','Puncture wound with foreign body of left little finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145716,10,'S61.246D ','Puncture wound with foreign body of right little finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145717,10,'S61.246S ','Puncture wound with foreign body of right little finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145715,10,'S61.246A ','Puncture wound with foreign body of right little finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145714,10,'S61.245S ','Puncture wound with foreign body of left ring finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145713,10,'S61.245D ','Puncture wound with foreign body of left ring finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145712,10,'S61.245A ','Puncture wound with foreign body of left ring finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145711,10,'S61.244S ','Puncture wound with foreign body of right ring finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145710,10,'S61.244D ','Puncture wound with foreign body of right ring finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145709,10,'S61.244A ','Puncture wound with foreign body of right ring finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145707,10,'S61.243D ','Puncture wound with foreign body of left middle finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145708,10,'S61.243S ','Puncture wound with foreign body of left middle finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145706,10,'S61.243A ','Puncture wound with foreign body of left middle finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145705,10,'S61.242S ','Puncture wound with foreign body of right middle finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145704,10,'S61.242D ','Puncture wound with foreign body of right middle finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145703,10,'S61.242A ','Puncture wound with foreign body of right middle finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145702,10,'S61.241S ','Puncture wound with foreign body of left index finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145701,10,'S61.241D ','Puncture wound with foreign body of left index finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145699,10,'S61.240S ','Puncture wound with foreign body of right index finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145700,10,'S61.241A ','Puncture wound with foreign body of left index finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145698,10,'S61.240D ','Puncture wound with foreign body of right index finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145697,10,'S61.240A ','Puncture wound with foreign body of right index finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145696,10,'S61.239S ','Puncture wound without foreign body of unspecified finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145695,10,'S61.239D ','Puncture wound without foreign body of unspecified finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145694,10,'S61.239A ','Puncture wound without foreign body of unspecified finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145693,10,'S61.238S ','Puncture wound without foreign body of other finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145692,10,'S61.238D ','Puncture wound without foreign body of other finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145690,10,'S61.237S ','Puncture wound without foreign body of left little finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145691,10,'S61.238A ','Puncture wound without foreign body of other finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145689,10,'S61.237D ','Puncture wound without foreign body of left little finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145687,10,'S61.236S ','Puncture wound without foreign body of right little finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145688,10,'S61.237A ','Puncture wound without foreign body of left little finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145686,10,'S61.236D ','Puncture wound without foreign body of right little finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145685,10,'S61.236A ','Puncture wound without foreign body of right little finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145684,10,'S61.235S ','Puncture wound without foreign body of left ring finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145683,10,'S61.235D ','Puncture wound without foreign body of left ring finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145681,10,'S61.234S ','Puncture wound without foreign body of right ring finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145682,10,'S61.235A ','Puncture wound without foreign body of left ring finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145680,10,'S61.234D ','Puncture wound without foreign body of right ring finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145679,10,'S61.234A ','Puncture wound without foreign body of right ring finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145678,10,'S61.233S ','Puncture wound without foreign body of left middle finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145677,10,'S61.233D ','Puncture wound without foreign body of left middle finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145676,10,'S61.233A ','Puncture wound without foreign body of left middle finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145675,10,'S61.232S ','Puncture wound without foreign body of right middle finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145674,10,'S61.232D ','Puncture wound without foreign body of right middle finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145673,10,'S61.232A ','Puncture wound without foreign body of right middle finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145672,10,'S61.231S ','Puncture wound without foreign body of left index finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145671,10,'S61.231D ','Puncture wound without foreign body of left index finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145670,10,'S61.231A ','Puncture wound without foreign body of left index finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145669,10,'S61.230S ','Puncture wound without foreign body of right index finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145668,10,'S61.230D ','Puncture wound without foreign body of right index finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145667,10,'S61.230A ','Puncture wound without foreign body of right index finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145666,10,'S61.229S ','Laceration with foreign body of unspecified finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145665,10,'S61.229D ','Laceration with foreign body of unspecified finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145663,10,'S61.228S ','Laceration with foreign body of other finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145664,10,'S61.229A ','Laceration with foreign body of unspecified finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145662,10,'S61.228D ','Laceration with foreign body of other finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145661,10,'S61.228A ','Laceration with foreign body of other finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145660,10,'S61.227S ','Laceration with foreign body of left little finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145659,10,'S61.227D ','Laceration with foreign body of left little finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145658,10,'S61.227A ','Laceration with foreign body of left little finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145657,10,'S61.226S ','Laceration with foreign body of right little finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145656,10,'S61.226D ','Laceration with foreign body of right little finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145655,10,'S61.226A ','Laceration with foreign body of right little finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145654,10,'S61.225S ','Laceration with foreign body of left ring finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145653,10,'S61.225D ','Laceration with foreign body of left ring finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145652,10,'S61.225A ','Laceration with foreign body of left ring finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145651,10,'S61.224S ','Laceration with foreign body of right ring finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145650,10,'S61.224D ','Laceration with foreign body of right ring finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145649,10,'S61.224A ','Laceration with foreign body of right ring finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145648,10,'S61.223S ','Laceration with foreign body of left middle finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145647,10,'S61.223D ','Laceration with foreign body of left middle finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145646,10,'S61.223A ','Laceration with foreign body of left middle finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145645,10,'S61.222S ','Laceration with foreign body of right middle finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145644,10,'S61.222D ','Laceration with foreign body of right middle finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145643,10,'S61.222A ','Laceration with foreign body of right middle finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145642,10,'S61.221S ','Laceration with foreign body of left index finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145641,10,'S61.221D ','Laceration with foreign body of left index finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145640,10,'S61.221A ','Laceration with foreign body of left index finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145639,10,'S61.220S ','Laceration with foreign body of right index finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145638,10,'S61.220D ','Laceration with foreign body of right index finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145637,10,'S61.220A ','Laceration with foreign body of right index finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145636,10,'S61.219S ','Laceration without foreign body of unspecified finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145635,10,'S61.219D ','Laceration without foreign body of unspecified finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145634,10,'S61.219A ','Laceration without foreign body of unspecified finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145633,10,'S61.218S ','Laceration without foreign body of other finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145632,10,'S61.218D ','Laceration without foreign body of other finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145631,10,'S61.218A ','Laceration without foreign body of other finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145630,10,'S61.217S ','Laceration without foreign body of left little finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145629,10,'S61.217D ','Laceration without foreign body of left little finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145628,10,'S61.217A ','Laceration without foreign body of left little finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145627,10,'S61.216S ','Laceration without foreign body of right little finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145626,10,'S61.216D ','Laceration without foreign body of right little finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145625,10,'S61.216A ','Laceration without foreign body of right little finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145624,10,'S61.215S ','Laceration without foreign body of left ring finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145623,10,'S61.215D ','Laceration without foreign body of left ring finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145622,10,'S61.215A ','Laceration without foreign body of left ring finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145621,10,'S61.214S ','Laceration without foreign body of right ring finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145620,10,'S61.214D ','Laceration without foreign body of right ring finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145619,10,'S61.214A ','Laceration without foreign body of right ring finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145618,10,'S61.213S ','Laceration without foreign body of left middle finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145617,10,'S61.213D ','Laceration without foreign body of left middle finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145616,10,'S61.213A ','Laceration without foreign body of left middle finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145615,10,'S61.212S ','Laceration without foreign body of right middle finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145614,10,'S61.212D ','Laceration without foreign body of right middle finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145613,10,'S61.212A ','Laceration without foreign body of right middle finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145612,10,'S61.211S ','Laceration without foreign body of left index finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145611,10,'S61.211D ','Laceration without foreign body of left index finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145610,10,'S61.211A ','Laceration without foreign body of left index finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145609,10,'S61.210S ','Laceration without foreign body of right index finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145608,10,'S61.210D ','Laceration without foreign body of right index finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145607,10,'S61.210A ','Laceration without foreign body of right index finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145606,10,'S61.209S ','Unspecified open wound of unspecified finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145605,10,'S61.209D ','Unspecified open wound of unspecified finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145604,10,'S61.209A ','Unspecified open wound of unspecified finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145603,10,'S61.208S ','Unspecified open wound of other finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145602,10,'S61.208D ','Unspecified open wound of other finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145601,10,'S61.208A ','Unspecified open wound of other finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145600,10,'S61.207S ','Unspecified open wound of left little finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145599,10,'S61.207D ','Unspecified open wound of left little finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145598,10,'S61.207A ','Unspecified open wound of left little finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145597,10,'S61.206S ','Unspecified open wound of right little finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145596,10,'S61.206D ','Unspecified open wound of right little finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145595,10,'S61.206A ','Unspecified open wound of right little finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145594,10,'S61.205S ','Unspecified open wound of left ring finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145593,10,'S61.205D ','Unspecified open wound of left ring finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145592,10,'S61.205A ','Unspecified open wound of left ring finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145591,10,'S61.204S ','Unspecified open wound of right ring finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145590,10,'S61.204D ','Unspecified open wound of right ring finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145589,10,'S61.204A ','Unspecified open wound of right ring finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145588,10,'S61.203S ','Unspecified open wound of left middle finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145587,10,'S61.203D ','Unspecified open wound of left middle finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145586,10,'S61.203A ','Unspecified open wound of left middle finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145585,10,'S61.202S ','Unspecified open wound of right middle finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145584,10,'S61.202D ','Unspecified open wound of right middle finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145583,10,'S61.202A ','Unspecified open wound of right middle finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145582,10,'S61.201S ','Unspecified open wound of left index finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145581,10,'S61.201D ','Unspecified open wound of left index finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145579,10,'S61.200S ','Unspecified open wound of right index finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145580,10,'S61.201A ','Unspecified open wound of left index finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145578,10,'S61.200D ','Unspecified open wound of right index finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145577,10,'S61.200A ','Unspecified open wound of right index finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145576,10,'S61.159S ','Open bite of unspecified thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145575,10,'S61.159D ','Open bite of unspecified thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145573,10,'S61.152S ','Open bite of left thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145574,10,'S61.159A ','Open bite of unspecified thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145572,10,'S61.152D ','Open bite of left thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145571,10,'S61.152A ','Open bite of left thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145570,10,'S61.151S ','Open bite of right thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145569,10,'S61.151D ','Open bite of right thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145568,10,'S61.151A ','Open bite of right thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145567,10,'S61.149S ','Puncture wound with foreign body of unspecified thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145566,10,'S61.149D ','Puncture wound with foreign body of unspecified thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145565,10,'S61.149A ','Puncture wound with foreign body of unspecified thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145564,10,'S61.142S ','Puncture wound with foreign body of left thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145563,10,'S61.142D ','Puncture wound with foreign body of left thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145562,10,'S61.142A ','Puncture wound with foreign body of left thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145561,10,'S61.141S ','Puncture wound with foreign body of right thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145560,10,'S61.141D ','Puncture wound with foreign body of right thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145559,10,'S61.141A ','Puncture wound with foreign body of right thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145558,10,'S61.139S ','Puncture wound without foreign body of unspecified thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145557,10,'S61.139D ','Puncture wound without foreign body of unspecified thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145556,10,'S61.139A ','Puncture wound without foreign body of unspecified thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145555,10,'S61.132S ','Puncture wound without foreign body of left thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145554,10,'S61.132D ','Puncture wound without foreign body of left thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145553,10,'S61.132A ','Puncture wound without foreign body of left thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145552,10,'S61.131S ','Puncture wound without foreign body of right thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145551,10,'S61.131D ','Puncture wound without foreign body of right thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145550,10,'S61.131A ','Puncture wound without foreign body of right thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145549,10,'S61.129S ','Laceration with foreign body of unspecified thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145548,10,'S61.129D ','Laceration with foreign body of unspecified thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145547,10,'S61.129A ','Laceration with foreign body of unspecified thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145546,10,'S61.122S ','Laceration with foreign body of left thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145545,10,'S61.122D ','Laceration with foreign body of left thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145544,10,'S61.122A ','Laceration with foreign body of left thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145543,10,'S61.121S ','Laceration with foreign body of right thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145542,10,'S61.121D ','Laceration with foreign body of right thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145541,10,'S61.121A ','Laceration with foreign body of right thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145540,10,'S61.119S ','Laceration without foreign body of unspecified thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145539,10,'S61.119D ','Laceration without foreign body of unspecified thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145538,10,'S61.119A ','Laceration without foreign body of unspecified thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145537,10,'S61.112S ','Laceration without foreign body of left thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145536,10,'S61.112D ','Laceration without foreign body of left thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145535,10,'S61.112A ','Laceration without foreign body of left thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145534,10,'S61.111S ','Laceration without foreign body of right thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145533,10,'S61.111D ','Laceration without foreign body of right thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145532,10,'S61.111A ','Laceration without foreign body of right thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145531,10,'S61.109S ','Unspecified open wound of unspecified thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145530,10,'S61.109D ','Unspecified open wound of unspecified thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145529,10,'S61.109A ','Unspecified open wound of unspecified thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145528,10,'S61.102S ','Unspecified open wound of left thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145527,10,'S61.102D ','Unspecified open wound of left thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145526,10,'S61.102A ','Unspecified open wound of left thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145525,10,'S61.101S ','Unspecified open wound of right thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145524,10,'S61.101D ','Unspecified open wound of right thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145523,10,'S61.101A ','Unspecified open wound of right thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145522,10,'S61.059S ','Open bite of unspecified thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145521,10,'S61.059D ','Open bite of unspecified thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145520,10,'S61.059A ','Open bite of unspecified thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145519,10,'S61.052S ','Open bite of left thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145518,10,'S61.052D ','Open bite of left thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145517,10,'S61.052A ','Open bite of left thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145516,10,'S61.051S ','Open bite of right thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145515,10,'S61.051D ','Open bite of right thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145514,10,'S61.051A ','Open bite of right thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145513,10,'S61.049S ','Puncture wound with foreign body of unspecified thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145512,10,'S61.049D ','Puncture wound with foreign body of unspecified thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145511,10,'S61.049A ','Puncture wound with foreign body of unspecified thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145510,10,'S61.042S ','Puncture wound with foreign body of left thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145509,10,'S61.042D ','Puncture wound with foreign body of left thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145508,10,'S61.042A ','Puncture wound with foreign body of left thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145507,10,'S61.041S ','Puncture wound with foreign body of right thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145506,10,'S61.041D ','Puncture wound with foreign body of right thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145505,10,'S61.041A ','Puncture wound with foreign body of right thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145504,10,'S61.039S ','Puncture wound without foreign body of unspecified thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145503,10,'S61.039D ','Puncture wound without foreign body of unspecified thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145502,10,'S61.039A ','Puncture wound without foreign body of unspecified thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145501,10,'S61.032S ','Puncture wound without foreign body of left thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145500,10,'S61.032D ','Puncture wound without foreign body of left thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145499,10,'S61.032A ','Puncture wound without foreign body of left thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145498,10,'S61.031S ','Puncture wound without foreign body of right thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145497,10,'S61.031D ','Puncture wound without foreign body of right thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145496,10,'S61.031A ','Puncture wound without foreign body of right thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145495,10,'S61.029S ','Laceration with foreign body of unspecified thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145494,10,'S61.029D ','Laceration with foreign body of unspecified thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145493,10,'S61.029A ','Laceration with foreign body of unspecified thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145492,10,'S61.022S ','Laceration with foreign body of left thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145491,10,'S61.022D ','Laceration with foreign body of left thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145490,10,'S61.022A ','Laceration with foreign body of left thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145489,10,'S61.021S ','Laceration with foreign body of right thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145488,10,'S61.021D ','Laceration with foreign body of right thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145487,10,'S61.021A ','Laceration with foreign body of right thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145486,10,'S61.019S ','Laceration without foreign body of unspecified thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145485,10,'S61.019D ','Laceration without foreign body of unspecified thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145484,10,'S61.019A ','Laceration without foreign body of unspecified thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145483,10,'S61.012S ','Laceration without foreign body of left thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145482,10,'S61.012D ','Laceration without foreign body of left thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145481,10,'S61.012A ','Laceration without foreign body of left thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145480,10,'S61.011S ','Laceration without foreign body of right thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145479,10,'S61.011D ','Laceration without foreign body of right thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145478,10,'S61.011A ','Laceration without foreign body of right thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145477,10,'S61.009S ','Unspecified open wound of unspecified thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145476,10,'S61.009D ','Unspecified open wound of unspecified thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145475,10,'S61.009A ','Unspecified open wound of unspecified thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145474,10,'S61.002S ','Unspecified open wound of left thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145473,10,'S61.002D ','Unspecified open wound of left thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145472,10,'S61.002A ','Unspecified open wound of left thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145471,10,'S61.001S ','Unspecified open wound of right thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(145470,10,'S61.001D ','Unspecified open wound of right thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145469,10,'S61.001A ','Unspecified open wound of right thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145468,10,'S60.949S ','Unspecified superficial injury of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(145467,10,'S60.949D ','Unspecified superficial injury of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145466,10,'S60.949A ','Unspecified superficial injury of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(145464,10,'S60.948D ','Unspecified superficial injury of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145465,10,'S60.948S ','Unspecified superficial injury of other finger, sequela','Y','0000-00-00 00:00:00'),(145463,10,'S60.948A ','Unspecified superficial injury of other finger, initial encounter','Y','0000-00-00 00:00:00'),(145462,10,'S60.947S ','Unspecified superficial injury of left little finger, sequela','Y','0000-00-00 00:00:00'),(145461,10,'S60.947D ','Unspecified superficial injury of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145460,10,'S60.947A ','Unspecified superficial injury of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(145459,10,'S60.946S ','Unspecified superficial injury of right little finger, sequela','Y','0000-00-00 00:00:00'),(145458,10,'S60.946D ','Unspecified superficial injury of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145457,10,'S60.946A ','Unspecified superficial injury of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(145456,10,'S60.945S ','Unspecified superficial injury of left ring finger, sequela','Y','0000-00-00 00:00:00'),(145455,10,'S60.945D ','Unspecified superficial injury of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145454,10,'S60.945A ','Unspecified superficial injury of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(145453,10,'S60.944S ','Unspecified superficial injury of right ring finger, sequela','Y','0000-00-00 00:00:00'),(145452,10,'S60.944D ','Unspecified superficial injury of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145451,10,'S60.944A ','Unspecified superficial injury of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(145450,10,'S60.943S ','Unspecified superficial injury of left middle finger, sequela','Y','0000-00-00 00:00:00'),(145449,10,'S60.943D ','Unspecified superficial injury of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145448,10,'S60.943A ','Unspecified superficial injury of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(145447,10,'S60.942S ','Unspecified superficial injury of right middle finger, sequela','Y','0000-00-00 00:00:00'),(145446,10,'S60.942D ','Unspecified superficial injury of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145445,10,'S60.942A ','Unspecified superficial injury of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(145444,10,'S60.941S ','Unspecified superficial injury of left index finger, sequela','Y','0000-00-00 00:00:00'),(145443,10,'S60.941D ','Unspecified superficial injury of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145441,10,'S60.940S ','Unspecified superficial injury of right index finger, sequela','Y','0000-00-00 00:00:00'),(145442,10,'S60.941A ','Unspecified superficial injury of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(145440,10,'S60.940D ','Unspecified superficial injury of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145439,10,'S60.940A ','Unspecified superficial injury of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(145438,10,'S60.939S ','Unspecified superficial injury of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(145437,10,'S60.939D ','Unspecified superficial injury of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145436,10,'S60.939A ','Unspecified superficial injury of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(145435,10,'S60.932S ','Unspecified superficial injury of left thumb, sequela','Y','0000-00-00 00:00:00'),(145434,10,'S60.932D ','Unspecified superficial injury of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145432,10,'S60.931S ','Unspecified superficial injury of right thumb, sequela','Y','0000-00-00 00:00:00'),(145433,10,'S60.932A ','Unspecified superficial injury of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(145431,10,'S60.931D ','Unspecified superficial injury of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145430,10,'S60.931A ','Unspecified superficial injury of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(145429,10,'S60.929S ','Unspecified superficial injury of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(145427,10,'S60.929A ','Unspecified superficial injury of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(145428,10,'S60.929D ','Unspecified superficial injury of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145426,10,'S60.922S ','Unspecified superficial injury of left hand, sequela','Y','0000-00-00 00:00:00'),(145425,10,'S60.922D ','Unspecified superficial injury of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145424,10,'S60.922A ','Unspecified superficial injury of left hand, initial encounter','Y','0000-00-00 00:00:00'),(145423,10,'S60.921S ','Unspecified superficial injury of right hand, sequela','Y','0000-00-00 00:00:00'),(145422,10,'S60.921D ','Unspecified superficial injury of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145421,10,'S60.921A ','Unspecified superficial injury of right hand, initial encounter','Y','0000-00-00 00:00:00'),(145420,10,'S60.919S ','Unspecified superficial injury of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(145419,10,'S60.919D ','Unspecified superficial injury of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145417,10,'S60.912S ','Unspecified superficial injury of left wrist, sequela','Y','0000-00-00 00:00:00'),(145418,10,'S60.919A ','Unspecified superficial injury of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(145416,10,'S60.912D ','Unspecified superficial injury of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145415,10,'S60.912A ','Unspecified superficial injury of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(145414,10,'S60.911S ','Unspecified superficial injury of right wrist, sequela','Y','0000-00-00 00:00:00'),(145413,10,'S60.911D ','Unspecified superficial injury of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145412,10,'S60.911A ','Unspecified superficial injury of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(145411,10,'S60.879S ','Other superficial bite of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(145410,10,'S60.879D ','Other superficial bite of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145408,10,'S60.872S ','Other superficial bite of left wrist, sequela','Y','0000-00-00 00:00:00'),(145409,10,'S60.879A ','Other superficial bite of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(145407,10,'S60.872D ','Other superficial bite of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145406,10,'S60.872A ','Other superficial bite of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(145405,10,'S60.871S ','Other superficial bite of right wrist, sequela','Y','0000-00-00 00:00:00'),(145403,10,'S60.871A ','Other superficial bite of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(145404,10,'S60.871D ','Other superficial bite of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145402,10,'S60.869S ','Insect bite (nonvenomous) of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(145401,10,'S60.869D ','Insect bite (nonvenomous) of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145400,10,'S60.869A ','Insect bite (nonvenomous) of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(145399,10,'S60.862S ','Insect bite (nonvenomous) of left wrist, sequela','Y','0000-00-00 00:00:00'),(145398,10,'S60.862D ','Insect bite (nonvenomous) of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145397,10,'S60.862A ','Insect bite (nonvenomous) of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(145395,10,'S60.861D ','Insect bite (nonvenomous) of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145396,10,'S60.861S ','Insect bite (nonvenomous) of right wrist, sequela','Y','0000-00-00 00:00:00'),(145394,10,'S60.861A ','Insect bite (nonvenomous) of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(145393,10,'S60.859S ','Superficial foreign body of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(145392,10,'S60.859D ','Superficial foreign body of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145391,10,'S60.859A ','Superficial foreign body of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(145390,10,'S60.852S ','Superficial foreign body of left wrist, sequela','Y','0000-00-00 00:00:00'),(145389,10,'S60.852D ','Superficial foreign body of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145387,10,'S60.851S ','Superficial foreign body of right wrist, sequela','Y','0000-00-00 00:00:00'),(145388,10,'S60.852A ','Superficial foreign body of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(145386,10,'S60.851D ','Superficial foreign body of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145385,10,'S60.851A ','Superficial foreign body of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(145384,10,'S60.849S ','External constriction of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(145383,10,'S60.849D ','External constriction of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145382,10,'S60.849A ','External constriction of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(145381,10,'S60.842S ','External constriction of left wrist, sequela','Y','0000-00-00 00:00:00'),(145380,10,'S60.842D ','External constriction of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145378,10,'S60.841S ','External constriction of right wrist, sequela','Y','0000-00-00 00:00:00'),(145379,10,'S60.842A ','External constriction of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(145377,10,'S60.841D ','External constriction of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145376,10,'S60.841A ','External constriction of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(145375,10,'S60.829S ','Blister (nonthermal) of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(145374,10,'S60.829D ','Blister (nonthermal) of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145373,10,'S60.829A ','Blister (nonthermal) of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(145372,10,'S60.822S ','Blister (nonthermal) of left wrist, sequela','Y','0000-00-00 00:00:00'),(145371,10,'S60.822D ','Blister (nonthermal) of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145370,10,'S60.822A ','Blister (nonthermal) of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(145369,10,'S60.821S ','Blister (nonthermal) of right wrist, sequela','Y','0000-00-00 00:00:00'),(145368,10,'S60.821D ','Blister (nonthermal) of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145367,10,'S60.821A ','Blister (nonthermal) of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(145366,10,'S60.819S ','Abrasion of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(145365,10,'S60.819D ','Abrasion of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145364,10,'S60.819A ','Abrasion of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(145363,10,'S60.812S ','Abrasion of left wrist, sequela','Y','0000-00-00 00:00:00'),(145362,10,'S60.812D ','Abrasion of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145361,10,'S60.812A ','Abrasion of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(145360,10,'S60.811S ','Abrasion of right wrist, sequela','Y','0000-00-00 00:00:00'),(145359,10,'S60.811D ','Abrasion of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145358,10,'S60.811A ','Abrasion of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(145357,10,'S60.579S ','Other superficial bite of hand of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(145356,10,'S60.579D ','Other superficial bite of hand of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145355,10,'S60.579A ','Other superficial bite of hand of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(145354,10,'S60.572S ','Other superficial bite of hand of left hand, sequela','Y','0000-00-00 00:00:00'),(145353,10,'S60.572D ','Other superficial bite of hand of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145352,10,'S60.572A ','Other superficial bite of hand of left hand, initial encounter','Y','0000-00-00 00:00:00'),(145351,10,'S60.571S ','Other superficial bite of hand of right hand, sequela','Y','0000-00-00 00:00:00'),(145350,10,'S60.571D ','Other superficial bite of hand of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145349,10,'S60.571A ','Other superficial bite of hand of right hand, initial encounter','Y','0000-00-00 00:00:00'),(145348,10,'S60.569S ','Insect bite (nonvenomous) of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(145347,10,'S60.569D ','Insect bite (nonvenomous) of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145346,10,'S60.569A ','Insect bite (nonvenomous) of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(145345,10,'S60.562S ','Insect bite (nonvenomous) of left hand, sequela','Y','0000-00-00 00:00:00'),(145344,10,'S60.562D ','Insect bite (nonvenomous) of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145343,10,'S60.562A ','Insect bite (nonvenomous) of left hand, initial encounter','Y','0000-00-00 00:00:00'),(145342,10,'S60.561S ','Insect bite (nonvenomous) of right hand, sequela','Y','0000-00-00 00:00:00'),(145341,10,'S60.561D ','Insect bite (nonvenomous) of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145340,10,'S60.561A ','Insect bite (nonvenomous) of right hand, initial encounter','Y','0000-00-00 00:00:00'),(145339,10,'S60.559S ','Superficial foreign body of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(145338,10,'S60.559D ','Superficial foreign body of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145337,10,'S60.559A ','Superficial foreign body of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(145336,10,'S60.552S ','Superficial foreign body of left hand, sequela','Y','0000-00-00 00:00:00'),(145335,10,'S60.552D ','Superficial foreign body of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145334,10,'S60.552A ','Superficial foreign body of left hand, initial encounter','Y','0000-00-00 00:00:00'),(145333,10,'S60.551S ','Superficial foreign body of right hand, sequela','Y','0000-00-00 00:00:00'),(145332,10,'S60.551D ','Superficial foreign body of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145331,10,'S60.551A ','Superficial foreign body of right hand, initial encounter','Y','0000-00-00 00:00:00'),(145330,10,'S60.549S ','External constriction of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(145329,10,'S60.549D ','External constriction of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145328,10,'S60.549A ','External constriction of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(145327,10,'S60.542S ','External constriction of left hand, sequela','Y','0000-00-00 00:00:00'),(145326,10,'S60.542D ','External constriction of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145325,10,'S60.542A ','External constriction of left hand, initial encounter','Y','0000-00-00 00:00:00'),(145324,10,'S60.541S ','External constriction of right hand, sequela','Y','0000-00-00 00:00:00'),(145323,10,'S60.541D ','External constriction of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145322,10,'S60.541A ','External constriction of right hand, initial encounter','Y','0000-00-00 00:00:00'),(145321,10,'S60.529S ','Blister (nonthermal) of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(145320,10,'S60.529D ','Blister (nonthermal) of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145319,10,'S60.529A ','Blister (nonthermal) of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(145318,10,'S60.522S ','Blister (nonthermal) of left hand, sequela','Y','0000-00-00 00:00:00'),(145317,10,'S60.522D ','Blister (nonthermal) of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145316,10,'S60.522A ','Blister (nonthermal) of left hand, initial encounter','Y','0000-00-00 00:00:00'),(145315,10,'S60.521S ','Blister (nonthermal) of right hand, sequela','Y','0000-00-00 00:00:00'),(145314,10,'S60.521D ','Blister (nonthermal) of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145313,10,'S60.521A ','Blister (nonthermal) of right hand, initial encounter','Y','0000-00-00 00:00:00'),(145312,10,'S60.519S ','Abrasion of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(145311,10,'S60.519D ','Abrasion of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145310,10,'S60.519A ','Abrasion of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(145309,10,'S60.512S ','Abrasion of left hand, sequela','Y','0000-00-00 00:00:00'),(145308,10,'S60.512D ','Abrasion of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145307,10,'S60.512A ','Abrasion of left hand, initial encounter','Y','0000-00-00 00:00:00'),(145306,10,'S60.511S ','Abrasion of right hand, sequela','Y','0000-00-00 00:00:00'),(145305,10,'S60.511D ','Abrasion of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145304,10,'S60.511A ','Abrasion of right hand, initial encounter','Y','0000-00-00 00:00:00'),(145303,10,'S60.479S ','Other superficial bite of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(145302,10,'S60.479D ','Other superficial bite of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145301,10,'S60.479A ','Other superficial bite of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(145300,10,'S60.478S ','Other superficial bite of other finger, sequela','Y','0000-00-00 00:00:00'),(145299,10,'S60.478D ','Other superficial bite of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145298,10,'S60.478A ','Other superficial bite of other finger, initial encounter','Y','0000-00-00 00:00:00'),(145297,10,'S60.477S ','Other superficial bite of left little finger, sequela','Y','0000-00-00 00:00:00'),(145296,10,'S60.477D ','Other superficial bite of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145295,10,'S60.477A ','Other superficial bite of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(145294,10,'S60.476S ','Other superficial bite of right little finger, sequela','Y','0000-00-00 00:00:00'),(145293,10,'S60.476D ','Other superficial bite of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145292,10,'S60.476A ','Other superficial bite of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(145291,10,'S60.475S ','Other superficial bite of left ring finger, sequela','Y','0000-00-00 00:00:00'),(145290,10,'S60.475D ','Other superficial bite of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145289,10,'S60.475A ','Other superficial bite of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(145288,10,'S60.474S ','Other superficial bite of right ring finger, sequela','Y','0000-00-00 00:00:00'),(145287,10,'S60.474D ','Other superficial bite of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145286,10,'S60.474A ','Other superficial bite of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(145285,10,'S60.473S ','Other superficial bite of left middle finger, sequela','Y','0000-00-00 00:00:00'),(145284,10,'S60.473D ','Other superficial bite of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145283,10,'S60.473A ','Other superficial bite of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(145282,10,'S60.472S ','Other superficial bite of right middle finger, sequela','Y','0000-00-00 00:00:00'),(145281,10,'S60.472D ','Other superficial bite of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145280,10,'S60.472A ','Other superficial bite of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(145279,10,'S60.471S ','Other superficial bite of left index finger, sequela','Y','0000-00-00 00:00:00'),(145278,10,'S60.471D ','Other superficial bite of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145277,10,'S60.471A ','Other superficial bite of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(145276,10,'S60.470S ','Other superficial bite of right index finger, sequela','Y','0000-00-00 00:00:00'),(145275,10,'S60.470D ','Other superficial bite of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145274,10,'S60.470A ','Other superficial bite of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(145273,10,'S60.469S ','Insect bite (nonvenomous) of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(145272,10,'S60.469D ','Insect bite (nonvenomous) of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145271,10,'S60.469A ','Insect bite (nonvenomous) of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(145270,10,'S60.468S ','Insect bite (nonvenomous) of other finger, sequela','Y','0000-00-00 00:00:00'),(145269,10,'S60.468D ','Insect bite (nonvenomous) of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145268,10,'S60.468A ','Insect bite (nonvenomous) of other finger, initial encounter','Y','0000-00-00 00:00:00'),(145267,10,'S60.467S ','Insect bite (nonvenomous) of left little finger, sequela','Y','0000-00-00 00:00:00'),(145266,10,'S60.467D ','Insect bite (nonvenomous) of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145265,10,'S60.467A ','Insect bite (nonvenomous) of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(145264,10,'S60.466S ','Insect bite (nonvenomous) of right little finger, sequela','Y','0000-00-00 00:00:00'),(145263,10,'S60.466D ','Insect bite (nonvenomous) of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145262,10,'S60.466A ','Insect bite (nonvenomous) of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(145261,10,'S60.465S ','Insect bite (nonvenomous) of left ring finger, sequela','Y','0000-00-00 00:00:00'),(145260,10,'S60.465D ','Insect bite (nonvenomous) of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145259,10,'S60.465A ','Insect bite (nonvenomous) of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(145258,10,'S60.464S ','Insect bite (nonvenomous) of right ring finger, sequela','Y','0000-00-00 00:00:00'),(145257,10,'S60.464D ','Insect bite (nonvenomous) of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145256,10,'S60.464A ','Insect bite (nonvenomous) of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(145255,10,'S60.463S ','Insect bite (nonvenomous) of left middle finger, sequela','Y','0000-00-00 00:00:00'),(145254,10,'S60.463D ','Insect bite (nonvenomous) of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145253,10,'S60.463A ','Insect bite (nonvenomous) of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(145252,10,'S60.462S ','Insect bite (nonvenomous) of right middle finger, sequela','Y','0000-00-00 00:00:00'),(145251,10,'S60.462D ','Insect bite (nonvenomous) of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145250,10,'S60.462A ','Insect bite (nonvenomous) of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(145249,10,'S60.461S ','Insect bite (nonvenomous) of left index finger, sequela','Y','0000-00-00 00:00:00'),(145248,10,'S60.461D ','Insect bite (nonvenomous) of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145247,10,'S60.461A ','Insect bite (nonvenomous) of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(145246,10,'S60.460S ','Insect bite (nonvenomous) of right index finger, sequela','Y','0000-00-00 00:00:00'),(145245,10,'S60.460D ','Insect bite (nonvenomous) of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145244,10,'S60.460A ','Insect bite (nonvenomous) of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(145243,10,'S60.459S ','Superficial foreign body of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(145242,10,'S60.459D ','Superficial foreign body of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145241,10,'S60.459A ','Superficial foreign body of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(145240,10,'S60.458S ','Superficial foreign body of other finger, sequela','Y','0000-00-00 00:00:00'),(145239,10,'S60.458D ','Superficial foreign body of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145238,10,'S60.458A ','Superficial foreign body of other finger, initial encounter','Y','0000-00-00 00:00:00'),(145237,10,'S60.457S ','Superficial foreign body of left little finger, sequela','Y','0000-00-00 00:00:00'),(145236,10,'S60.457D ','Superficial foreign body of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145235,10,'S60.457A ','Superficial foreign body of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(145234,10,'S60.456S ','Superficial foreign body of right little finger, sequela','Y','0000-00-00 00:00:00'),(145233,10,'S60.456D ','Superficial foreign body of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145232,10,'S60.456A ','Superficial foreign body of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(145231,10,'S60.455S ','Superficial foreign body of left ring finger, sequela','Y','0000-00-00 00:00:00'),(145230,10,'S60.455D ','Superficial foreign body of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145229,10,'S60.455A ','Superficial foreign body of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(145228,10,'S60.454S ','Superficial foreign body of right ring finger, sequela','Y','0000-00-00 00:00:00'),(145227,10,'S60.454D ','Superficial foreign body of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145226,10,'S60.454A ','Superficial foreign body of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(145225,10,'S60.453S ','Superficial foreign body of left middle finger, sequela','Y','0000-00-00 00:00:00'),(145224,10,'S60.453D ','Superficial foreign body of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145223,10,'S60.453A ','Superficial foreign body of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(145222,10,'S60.452S ','Superficial foreign body of right middle finger, sequela','Y','0000-00-00 00:00:00'),(145221,10,'S60.452D ','Superficial foreign body of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145220,10,'S60.452A ','Superficial foreign body of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(145219,10,'S60.451S ','Superficial foreign body of left index finger, sequela','Y','0000-00-00 00:00:00'),(145218,10,'S60.451D ','Superficial foreign body of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145217,10,'S60.451A ','Superficial foreign body of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(145216,10,'S60.450S ','Superficial foreign body of right index finger, sequela','Y','0000-00-00 00:00:00'),(145215,10,'S60.450D ','Superficial foreign body of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145214,10,'S60.450A ','Superficial foreign body of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(145213,10,'S60.449S ','External constriction of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(145212,10,'S60.449D ','External constriction of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145211,10,'S60.449A ','External constriction of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(145210,10,'S60.448S ','External constriction of other finger, sequela','Y','0000-00-00 00:00:00'),(145209,10,'S60.448D ','External constriction of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145208,10,'S60.448A ','External constriction of other finger, initial encounter','Y','0000-00-00 00:00:00'),(145207,10,'S60.447S ','External constriction of left little finger, sequela','Y','0000-00-00 00:00:00'),(145206,10,'S60.447D ','External constriction of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145205,10,'S60.447A ','External constriction of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(145204,10,'S60.446S ','External constriction of right little finger, sequela','Y','0000-00-00 00:00:00'),(145203,10,'S60.446D ','External constriction of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145202,10,'S60.446A ','External constriction of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(145201,10,'S60.445S ','External constriction of left ring finger, sequela','Y','0000-00-00 00:00:00'),(145200,10,'S60.445D ','External constriction of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145199,10,'S60.445A ','External constriction of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(145198,10,'S60.444S ','External constriction of right ring finger, sequela','Y','0000-00-00 00:00:00'),(145197,10,'S60.444D ','External constriction of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145196,10,'S60.444A ','External constriction of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(145195,10,'S60.443S ','External constriction of left middle finger, sequela','Y','0000-00-00 00:00:00'),(145194,10,'S60.443D ','External constriction of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145193,10,'S60.443A ','External constriction of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(145192,10,'S60.442S ','External constriction of right middle finger, sequela','Y','0000-00-00 00:00:00'),(145191,10,'S60.442D ','External constriction of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145190,10,'S60.442A ','External constriction of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(145189,10,'S60.441S ','External constriction of left index finger, sequela','Y','0000-00-00 00:00:00'),(145188,10,'S60.441D ','External constriction of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145187,10,'S60.441A ','External constriction of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(145186,10,'S60.440S ','External constriction of right index finger, sequela','Y','0000-00-00 00:00:00'),(145185,10,'S60.440D ','External constriction of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145184,10,'S60.440A ','External constriction of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(145183,10,'S60.429S ','Blister (nonthermal) of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(145182,10,'S60.429D ','Blister (nonthermal) of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145181,10,'S60.429A ','Blister (nonthermal) of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(145180,10,'S60.428S ','Blister (nonthermal) of other finger, sequela','Y','0000-00-00 00:00:00'),(145179,10,'S60.428D ','Blister (nonthermal) of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145178,10,'S60.428A ','Blister (nonthermal) of other finger, initial encounter','Y','0000-00-00 00:00:00'),(145177,10,'S60.427S ','Blister (nonthermal) of left little finger, sequela','Y','0000-00-00 00:00:00'),(145176,10,'S60.427D ','Blister (nonthermal) of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145175,10,'S60.427A ','Blister (nonthermal) of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(145174,10,'S60.426S ','Blister (nonthermal) of right little finger, sequela','Y','0000-00-00 00:00:00'),(145173,10,'S60.426D ','Blister (nonthermal) of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145172,10,'S60.426A ','Blister (nonthermal) of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(145171,10,'S60.425S ','Blister (nonthermal) of left ring finger, sequela','Y','0000-00-00 00:00:00'),(145170,10,'S60.425D ','Blister (nonthermal) of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145169,10,'S60.425A ','Blister (nonthermal) of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(145168,10,'S60.424S ','Blister (nonthermal) of right ring finger, sequela','Y','0000-00-00 00:00:00'),(145167,10,'S60.424D ','Blister (nonthermal) of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145166,10,'S60.424A ','Blister (nonthermal) of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(145165,10,'S60.423S ','Blister (nonthermal) of left middle finger, sequela','Y','0000-00-00 00:00:00'),(145164,10,'S60.423D ','Blister (nonthermal) of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145163,10,'S60.423A ','Blister (nonthermal) of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(145162,10,'S60.422S ','Blister (nonthermal) of right middle finger, sequela','Y','0000-00-00 00:00:00'),(145161,10,'S60.422D ','Blister (nonthermal) of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145160,10,'S60.422A ','Blister (nonthermal) of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(145159,10,'S60.421S ','Blister (nonthermal) of left index finger, sequela','Y','0000-00-00 00:00:00'),(145158,10,'S60.421D ','Blister (nonthermal) of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145157,10,'S60.421A ','Blister (nonthermal) of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(145156,10,'S60.420S ','Blister (nonthermal) of right index finger, sequela','Y','0000-00-00 00:00:00'),(145155,10,'S60.420D ','Blister (nonthermal) of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145154,10,'S60.420A ','Blister (nonthermal) of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(145153,10,'S60.419S ','Abrasion of unspecified finger, sequela','Y','0000-00-00 00:00:00'),(145152,10,'S60.419D ','Abrasion of unspecified finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145151,10,'S60.419A ','Abrasion of unspecified finger, initial encounter','Y','0000-00-00 00:00:00'),(145150,10,'S60.418S ','Abrasion of other finger, sequela','Y','0000-00-00 00:00:00'),(145149,10,'S60.418D ','Abrasion of other finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145148,10,'S60.418A ','Abrasion of other finger, initial encounter','Y','0000-00-00 00:00:00'),(145147,10,'S60.417S ','Abrasion of left little finger, sequela','Y','0000-00-00 00:00:00'),(145146,10,'S60.417D ','Abrasion of left little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145145,10,'S60.417A ','Abrasion of left little finger, initial encounter','Y','0000-00-00 00:00:00'),(145144,10,'S60.416S ','Abrasion of right little finger, sequela','Y','0000-00-00 00:00:00'),(145143,10,'S60.416D ','Abrasion of right little finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145142,10,'S60.416A ','Abrasion of right little finger, initial encounter','Y','0000-00-00 00:00:00'),(145141,10,'S60.415S ','Abrasion of left ring finger, sequela','Y','0000-00-00 00:00:00'),(145140,10,'S60.415D ','Abrasion of left ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145139,10,'S60.415A ','Abrasion of left ring finger, initial encounter','Y','0000-00-00 00:00:00'),(145138,10,'S60.414S ','Abrasion of right ring finger, sequela','Y','0000-00-00 00:00:00'),(145137,10,'S60.414D ','Abrasion of right ring finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145136,10,'S60.414A ','Abrasion of right ring finger, initial encounter','Y','0000-00-00 00:00:00'),(145135,10,'S60.413S ','Abrasion of left middle finger, sequela','Y','0000-00-00 00:00:00'),(145134,10,'S60.413D ','Abrasion of left middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145133,10,'S60.413A ','Abrasion of left middle finger, initial encounter','Y','0000-00-00 00:00:00'),(145132,10,'S60.412S ','Abrasion of right middle finger, sequela','Y','0000-00-00 00:00:00'),(145131,10,'S60.412D ','Abrasion of right middle finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145130,10,'S60.412A ','Abrasion of right middle finger, initial encounter','Y','0000-00-00 00:00:00'),(145129,10,'S60.411S ','Abrasion of left index finger, sequela','Y','0000-00-00 00:00:00'),(145128,10,'S60.411D ','Abrasion of left index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145127,10,'S60.411A ','Abrasion of left index finger, initial encounter','Y','0000-00-00 00:00:00'),(145126,10,'S60.410S ','Abrasion of right index finger, sequela','Y','0000-00-00 00:00:00'),(145125,10,'S60.410D ','Abrasion of right index finger, subsequent encounter','Y','0000-00-00 00:00:00'),(145124,10,'S60.410A ','Abrasion of right index finger, initial encounter','Y','0000-00-00 00:00:00'),(145123,10,'S60.399S ','Other superficial injuries of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(145122,10,'S60.399D ','Other superficial injuries of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145121,10,'S60.399A ','Other superficial injuries of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(145120,10,'S60.392S ','Other superficial injuries of left thumb, sequela','Y','0000-00-00 00:00:00'),(145119,10,'S60.392D ','Other superficial injuries of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145118,10,'S60.392A ','Other superficial injuries of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(145117,10,'S60.391S ','Other superficial injuries of right thumb, sequela','Y','0000-00-00 00:00:00'),(145116,10,'S60.391D ','Other superficial injuries of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145115,10,'S60.391A ','Other superficial injuries of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(145114,10,'S60.379S ','Other superficial bite of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(145113,10,'S60.379D ','Other superficial bite of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145112,10,'S60.379A ','Other superficial bite of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(145111,10,'S60.372S ','Other superficial bite of left thumb, sequela','Y','0000-00-00 00:00:00'),(145110,10,'S60.372D ','Other superficial bite of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145109,10,'S60.372A ','Other superficial bite of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(145108,10,'S60.371S ','Other superficial bite of right thumb, sequela','Y','0000-00-00 00:00:00'),(145107,10,'S60.371D ','Other superficial bite of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145106,10,'S60.371A ','Other superficial bite of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(145105,10,'S60.369S ','Insect bite (nonvenomous) of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(145104,10,'S60.369D ','Insect bite (nonvenomous) of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145103,10,'S60.369A ','Insect bite (nonvenomous) of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(145102,10,'S60.362S ','Insect bite (nonvenomous) of left thumb, sequela','Y','0000-00-00 00:00:00'),(145101,10,'S60.362D ','Insect bite (nonvenomous) of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145100,10,'S60.362A ','Insect bite (nonvenomous) of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(145099,10,'S60.361S ','Insect bite (nonvenomous) of right thumb, sequela','Y','0000-00-00 00:00:00'),(145098,10,'S60.361D ','Insect bite (nonvenomous) of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145097,10,'S60.361A ','Insect bite (nonvenomous) of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(145096,10,'S60.359S ','Superficial foreign body of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(145095,10,'S60.359D ','Superficial foreign body of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145094,10,'S60.359A ','Superficial foreign body of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(145093,10,'S60.352S ','Superficial foreign body of left thumb, sequela','Y','0000-00-00 00:00:00'),(145092,10,'S60.352D ','Superficial foreign body of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145091,10,'S60.352A ','Superficial foreign body of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(145090,10,'S60.351S ','Superficial foreign body of right thumb, sequela','Y','0000-00-00 00:00:00'),(145089,10,'S60.351D ','Superficial foreign body of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145088,10,'S60.351A ','Superficial foreign body of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(145087,10,'S60.349S ','External constriction of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(145086,10,'S60.349D ','External constriction of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145085,10,'S60.349A ','External constriction of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(145084,10,'S60.342S ','External constriction of left thumb, sequela','Y','0000-00-00 00:00:00'),(145083,10,'S60.342D ','External constriction of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145082,10,'S60.342A ','External constriction of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(145081,10,'S60.341S ','External constriction of right thumb, sequela','Y','0000-00-00 00:00:00'),(145080,10,'S60.341D ','External constriction of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145079,10,'S60.341A ','External constriction of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(145078,10,'S60.329S ','Blister (nonthermal) of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(145077,10,'S60.329D ','Blister (nonthermal) of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145076,10,'S60.329A ','Blister (nonthermal) of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(145075,10,'S60.322S ','Blister (nonthermal) of left thumb, sequela','Y','0000-00-00 00:00:00'),(145074,10,'S60.322D ','Blister (nonthermal) of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145073,10,'S60.322A ','Blister (nonthermal) of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(145072,10,'S60.321S ','Blister (nonthermal) of right thumb, sequela','Y','0000-00-00 00:00:00'),(145071,10,'S60.321D ','Blister (nonthermal) of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145070,10,'S60.321A ','Blister (nonthermal) of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(145069,10,'S60.319S ','Abrasion of unspecified thumb, sequela','Y','0000-00-00 00:00:00'),(145068,10,'S60.319D ','Abrasion of unspecified thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145067,10,'S60.319A ','Abrasion of unspecified thumb, initial encounter','Y','0000-00-00 00:00:00'),(145066,10,'S60.312S ','Abrasion of left thumb, sequela','Y','0000-00-00 00:00:00'),(145065,10,'S60.312D ','Abrasion of left thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145064,10,'S60.312A ','Abrasion of left thumb, initial encounter','Y','0000-00-00 00:00:00'),(145063,10,'S60.311S ','Abrasion of right thumb, sequela','Y','0000-00-00 00:00:00'),(145062,10,'S60.311D ','Abrasion of right thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(145061,10,'S60.311A ','Abrasion of right thumb, initial encounter','Y','0000-00-00 00:00:00'),(145060,10,'S60.229S ','Contusion of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(145059,10,'S60.229D ','Contusion of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145058,10,'S60.229A ','Contusion of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(145057,10,'S60.222S ','Contusion of left hand, sequela','Y','0000-00-00 00:00:00'),(145056,10,'S60.222D ','Contusion of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145055,10,'S60.222A ','Contusion of left hand, initial encounter','Y','0000-00-00 00:00:00'),(145054,10,'S60.221S ','Contusion of right hand, sequela','Y','0000-00-00 00:00:00'),(145053,10,'S60.221D ','Contusion of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(145052,10,'S60.221A ','Contusion of right hand, initial encounter','Y','0000-00-00 00:00:00'),(145051,10,'S60.219S ','Contusion of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(145050,10,'S60.219D ','Contusion of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145049,10,'S60.219A ','Contusion of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(145048,10,'S60.212S ','Contusion of left wrist, sequela','Y','0000-00-00 00:00:00'),(145047,10,'S60.212D ','Contusion of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145046,10,'S60.212A ','Contusion of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(145045,10,'S60.211S ','Contusion of right wrist, sequela','Y','0000-00-00 00:00:00'),(145044,10,'S60.211D ','Contusion of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(145043,10,'S60.211A ','Contusion of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(145042,10,'S60.159S ','Contusion of unspecified little finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145041,10,'S60.159D ','Contusion of unspecified little finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145040,10,'S60.159A ','Contusion of unspecified little finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145039,10,'S60.152S ','Contusion of left little finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145038,10,'S60.152D ','Contusion of left little finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145037,10,'S60.152A ','Contusion of left little finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145036,10,'S60.151S ','Contusion of right little finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145035,10,'S60.151D ','Contusion of right little finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145034,10,'S60.151A ','Contusion of right little finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145033,10,'S60.149S ','Contusion of unspecified ring finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145032,10,'S60.149D ','Contusion of unspecified ring finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145031,10,'S60.149A ','Contusion of unspecified ring finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145030,10,'S60.142S ','Contusion of left ring finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145029,10,'S60.142D ','Contusion of left ring finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145028,10,'S60.142A ','Contusion of left ring finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145027,10,'S60.141S ','Contusion of right ring finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145026,10,'S60.141D ','Contusion of right ring finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145025,10,'S60.141A ','Contusion of right ring finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145024,10,'S60.139S ','Contusion of unspecified middle finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145023,10,'S60.139D ','Contusion of unspecified middle finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145022,10,'S60.139A ','Contusion of unspecified middle finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145021,10,'S60.132S ','Contusion of left middle finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145020,10,'S60.132D ','Contusion of left middle finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145019,10,'S60.132A ','Contusion of left middle finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145018,10,'S60.131S ','Contusion of right middle finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145017,10,'S60.131D ','Contusion of right middle finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145016,10,'S60.131A ','Contusion of right middle finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145015,10,'S60.129S ','Contusion of unspecified index finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145014,10,'S60.129D ','Contusion of unspecified index finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145013,10,'S60.129A ','Contusion of unspecified index finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145012,10,'S60.122S ','Contusion of left index finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145011,10,'S60.122D ','Contusion of left index finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145010,10,'S60.122A ','Contusion of left index finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145009,10,'S60.121S ','Contusion of right index finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145008,10,'S60.121D ','Contusion of right index finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145007,10,'S60.121A ','Contusion of right index finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145006,10,'S60.119S ','Contusion of unspecified thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145005,10,'S60.119D ','Contusion of unspecified thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145004,10,'S60.119A ','Contusion of unspecified thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145003,10,'S60.112S ','Contusion of left thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(145002,10,'S60.112D ','Contusion of left thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(145001,10,'S60.112A ','Contusion of left thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(145000,10,'S60.111S ','Contusion of right thumb with damage to nail, sequela','Y','0000-00-00 00:00:00'),(144999,10,'S60.111D ','Contusion of right thumb with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(144998,10,'S60.111A ','Contusion of right thumb with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(144997,10,'S60.10XS ','Contusion of unspecified finger with damage to nail, sequela','Y','0000-00-00 00:00:00'),(144996,10,'S60.10XD ','Contusion of unspecified finger with damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(144995,10,'S60.10XA ','Contusion of unspecified finger with damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(144994,10,'S60.059S ','Contusion of unspecified little finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(144993,10,'S60.059D ','Contusion of unspecified little finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(144992,10,'S60.059A ','Contusion of unspecified little finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(144991,10,'S60.052S ','Contusion of left little finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(144990,10,'S60.052D ','Contusion of left little finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(144989,10,'S60.052A ','Contusion of left little finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(144988,10,'S60.051S ','Contusion of right little finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(144987,10,'S60.051D ','Contusion of right little finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(144986,10,'S60.051A ','Contusion of right little finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(144985,10,'S60.049S ','Contusion of unspecified ring finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(144984,10,'S60.049D ','Contusion of unspecified ring finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(144983,10,'S60.049A ','Contusion of unspecified ring finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(144982,10,'S60.042S ','Contusion of left ring finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(144981,10,'S60.042D ','Contusion of left ring finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(144980,10,'S60.042A ','Contusion of left ring finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(144979,10,'S60.041S ','Contusion of right ring finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(144978,10,'S60.041D ','Contusion of right ring finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(144977,10,'S60.041A ','Contusion of right ring finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(144976,10,'S60.039S ','Contusion of unspecified middle finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(144975,10,'S60.039D ','Contusion of unspecified middle finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(144974,10,'S60.039A ','Contusion of unspecified middle finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(144973,10,'S60.032S ','Contusion of left middle finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(144972,10,'S60.032D ','Contusion of left middle finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(144971,10,'S60.032A ','Contusion of left middle finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(144970,10,'S60.031S ','Contusion of right middle finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(144969,10,'S60.031D ','Contusion of right middle finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(144968,10,'S60.031A ','Contusion of right middle finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(144967,10,'S60.029S ','Contusion of unspecified index finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(144966,10,'S60.029D ','Contusion of unspecified index finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(144965,10,'S60.029A ','Contusion of unspecified index finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(144964,10,'S60.022S ','Contusion of left index finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(144963,10,'S60.022D ','Contusion of left index finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(144962,10,'S60.022A ','Contusion of left index finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(144961,10,'S60.021S ','Contusion of right index finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(144960,10,'S60.021D ','Contusion of right index finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(144959,10,'S60.021A ','Contusion of right index finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(144958,10,'S60.019S ','Contusion of unspecified thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(144957,10,'S60.019D ','Contusion of unspecified thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(144956,10,'S60.019A ','Contusion of unspecified thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(144955,10,'S60.012S ','Contusion of left thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(144954,10,'S60.012D ','Contusion of left thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(144953,10,'S60.012A ','Contusion of left thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(144952,10,'S60.011S ','Contusion of right thumb without damage to nail, sequela','Y','0000-00-00 00:00:00'),(144951,10,'S60.011D ','Contusion of right thumb without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(144950,10,'S60.011A ','Contusion of right thumb without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(144949,10,'S60.00XS ','Contusion of unspecified finger without damage to nail, sequela','Y','0000-00-00 00:00:00'),(144948,10,'S60.00XD ','Contusion of unspecified finger without damage to nail, subsequent encounter','Y','0000-00-00 00:00:00'),(144947,10,'S60.00XA ','Contusion of unspecified finger without damage to nail, initial encounter','Y','0000-00-00 00:00:00'),(144946,10,'S59.919S ','Unspecified injury of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(144945,10,'S59.919D ','Unspecified injury of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(144944,10,'S59.919A ','Unspecified injury of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(144942,10,'S59.912D ','Unspecified injury of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(144943,10,'S59.912S ','Unspecified injury of left forearm, sequela','Y','0000-00-00 00:00:00'),(144941,10,'S59.912A ','Unspecified injury of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(144940,10,'S59.911S ','Unspecified injury of right forearm, sequela','Y','0000-00-00 00:00:00'),(144939,10,'S59.911D ','Unspecified injury of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(144938,10,'S59.911A ','Unspecified injury of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(144937,10,'S59.909S ','Unspecified injury of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(144936,10,'S59.909D ','Unspecified injury of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(144934,10,'S59.902S ','Unspecified injury of left elbow, sequela','Y','0000-00-00 00:00:00'),(144935,10,'S59.909A ','Unspecified injury of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(144933,10,'S59.902D ','Unspecified injury of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(144932,10,'S59.902A ','Unspecified injury of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(144931,10,'S59.901S ','Unspecified injury of right elbow, sequela','Y','0000-00-00 00:00:00'),(144930,10,'S59.901D ','Unspecified injury of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(144928,10,'S59.819S ','Other specified injuries unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(144929,10,'S59.901A ','Unspecified injury of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(144927,10,'S59.819D ','Other specified injuries unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(144926,10,'S59.819A ','Other specified injuries unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(144925,10,'S59.812S ','Other specified injuries left forearm, sequela','Y','0000-00-00 00:00:00'),(144924,10,'S59.812D ','Other specified injuries left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(144923,10,'S59.812A ','Other specified injuries left forearm, initial encounter','Y','0000-00-00 00:00:00'),(144921,10,'S59.811D ','Other specified injuries right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(144922,10,'S59.811S ','Other specified injuries right forearm, sequela','Y','0000-00-00 00:00:00'),(144920,10,'S59.811A ','Other specified injuries right forearm, initial encounter','Y','0000-00-00 00:00:00'),(144919,10,'S59.809S ','Other specified injuries of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(144918,10,'S59.809D ','Other specified injuries of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(144916,10,'S59.802S ','Other specified injuries of left elbow, sequela','Y','0000-00-00 00:00:00'),(144917,10,'S59.809A ','Other specified injuries of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(144915,10,'S59.802D ','Other specified injuries of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(144914,10,'S59.802A ','Other specified injuries of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(144913,10,'S59.801S ','Other specified injuries of right elbow, sequela','Y','0000-00-00 00:00:00'),(144912,10,'S59.801D ','Other specified injuries of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(144910,10,'S59.299S ','Other physeal fracture of lower end of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144911,10,'S59.801A ','Other specified injuries of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(144909,10,'S59.299P ','Other physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144908,10,'S59.299K ','Other physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144907,10,'S59.299G ','Other physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144906,10,'S59.299D ','Other physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144905,10,'S59.299A ','Other physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144904,10,'S59.292S ','Other physeal fracture of lower end of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(144903,10,'S59.292P ','Other physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144902,10,'S59.292K ','Other physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144901,10,'S59.292G ','Other physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144900,10,'S59.292D ','Other physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144898,10,'S59.291S ','Other physeal fracture of lower end of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(144899,10,'S59.292A ','Other physeal fracture of lower end of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144897,10,'S59.291P ','Other physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144896,10,'S59.291K ','Other physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144895,10,'S59.291G ','Other physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144894,10,'S59.291D ','Other physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144893,10,'S59.291A ','Other physeal fracture of lower end of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144892,10,'S59.249S ','Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144891,10,'S59.249P ','Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144890,10,'S59.249K ','Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144889,10,'S59.249G ','Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144888,10,'S59.249D ','Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144887,10,'S59.249A ','Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144886,10,'S59.242S ','Salter-Harris Type IV physeal fracture of lower end of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(144885,10,'S59.242P ','Salter-Harris Type IV physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144884,10,'S59.242K ','Salter-Harris Type IV physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144883,10,'S59.242G ','Salter-Harris Type IV physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144882,10,'S59.242D ','Salter-Harris Type IV physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144881,10,'S59.242A ','Salter-Harris Type IV physeal fracture of lower end of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144880,10,'S59.241S ','Salter-Harris Type IV physeal fracture of lower end of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(144879,10,'S59.241P ','Salter-Harris Type IV physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144878,10,'S59.241K ','Salter-Harris Type IV physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144877,10,'S59.241G ','Salter-Harris Type IV physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144876,10,'S59.241D ','Salter-Harris Type IV physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144875,10,'S59.241A ','Salter-Harris Type IV physeal fracture of lower end of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144874,10,'S59.239S ','Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144873,10,'S59.239P ','Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144872,10,'S59.239K ','Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144871,10,'S59.239G ','Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144870,10,'S59.239D ','Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144869,10,'S59.239A ','Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144868,10,'S59.232S ','Salter-Harris Type III physeal fracture of lower end of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(144867,10,'S59.232P ','Salter-Harris Type III physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144866,10,'S59.232K ','Salter-Harris Type III physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144865,10,'S59.232G ','Salter-Harris Type III physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144864,10,'S59.232D ','Salter-Harris Type III physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144863,10,'S59.232A ','Salter-Harris Type III physeal fracture of lower end of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144862,10,'S59.231S ','Salter-Harris Type III physeal fracture of lower end of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(144861,10,'S59.231P ','Salter-Harris Type III physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144860,10,'S59.231K ','Salter-Harris Type III physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144859,10,'S59.231G ','Salter-Harris Type III physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144858,10,'S59.231D ','Salter-Harris Type III physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144857,10,'S59.231A ','Salter-Harris Type III physeal fracture of lower end of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144856,10,'S59.229S ','Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144855,10,'S59.229P ','Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144854,10,'S59.229K ','Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144853,10,'S59.229G ','Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144852,10,'S59.229D ','Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144851,10,'S59.229A ','Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144850,10,'S59.222S ','Salter-Harris Type II physeal fracture of lower end of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(144849,10,'S59.222P ','Salter-Harris Type II physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144848,10,'S59.222K ','Salter-Harris Type II physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144847,10,'S59.222G ','Salter-Harris Type II physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144846,10,'S59.222D ','Salter-Harris Type II physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144845,10,'S59.222A ','Salter-Harris Type II physeal fracture of lower end of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144844,10,'S59.221S ','Salter-Harris Type II physeal fracture of lower end of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(144843,10,'S59.221P ','Salter-Harris Type II physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144842,10,'S59.221K ','Salter-Harris Type II physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144841,10,'S59.221G ','Salter-Harris Type II physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144840,10,'S59.221D ','Salter-Harris Type II physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144839,10,'S59.221A ','Salter-Harris Type II physeal fracture of lower end of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144838,10,'S59.219S ','Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144837,10,'S59.219P ','Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144836,10,'S59.219K ','Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144835,10,'S59.219G ','Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144834,10,'S59.219D ','Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144833,10,'S59.219A ','Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144832,10,'S59.212S ','Salter-Harris Type I physeal fracture of lower end of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(144831,10,'S59.212P ','Salter-Harris Type I physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144830,10,'S59.212K ','Salter-Harris Type I physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144829,10,'S59.212G ','Salter-Harris Type I physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144828,10,'S59.212D ','Salter-Harris Type I physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144827,10,'S59.212A ','Salter-Harris Type I physeal fracture of lower end of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144826,10,'S59.211S ','Salter-Harris Type I physeal fracture of lower end of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(144825,10,'S59.211P ','Salter-Harris Type I physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144824,10,'S59.211K ','Salter-Harris Type I physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144823,10,'S59.211G ','Salter-Harris Type I physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144822,10,'S59.211D ','Salter-Harris Type I physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144821,10,'S59.211A ','Salter-Harris Type I physeal fracture of lower end of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144820,10,'S59.209S ','Unspecified physeal fracture of lower end of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144819,10,'S59.209P ','Unspecified physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144818,10,'S59.209K ','Unspecified physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144817,10,'S59.209G ','Unspecified physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144816,10,'S59.209D ','Unspecified physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144815,10,'S59.209A ','Unspecified physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144814,10,'S59.202S ','Unspecified physeal fracture of lower end of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(144813,10,'S59.202P ','Unspecified physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144812,10,'S59.202K ','Unspecified physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144811,10,'S59.202G ','Unspecified physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144810,10,'S59.202D ','Unspecified physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144809,10,'S59.202A ','Unspecified physeal fracture of lower end of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144808,10,'S59.201S ','Unspecified physeal fracture of lower end of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(144807,10,'S59.201P ','Unspecified physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144806,10,'S59.201K ','Unspecified physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144805,10,'S59.201G ','Unspecified physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144804,10,'S59.201D ','Unspecified physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144803,10,'S59.201A ','Unspecified physeal fracture of lower end of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144802,10,'S59.199S ','Other physeal fracture of upper end of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144801,10,'S59.199P ','Other physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144800,10,'S59.199K ','Other physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144799,10,'S59.199G ','Other physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144798,10,'S59.199D ','Other physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144797,10,'S59.199A ','Other physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144796,10,'S59.192S ','Other physeal fracture of upper end of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(144795,10,'S59.192P ','Other physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144794,10,'S59.192K ','Other physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144793,10,'S59.192G ','Other physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144792,10,'S59.192D ','Other physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144791,10,'S59.192A ','Other physeal fracture of upper end of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144790,10,'S59.191S ','Other physeal fracture of upper end of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(144789,10,'S59.191P ','Other physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144788,10,'S59.191K ','Other physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144787,10,'S59.191G ','Other physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144786,10,'S59.191D ','Other physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144785,10,'S59.191A ','Other physeal fracture of upper end of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144784,10,'S59.149S ','Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144783,10,'S59.149P ','Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144782,10,'S59.149K ','Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144781,10,'S59.149G ','Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144780,10,'S59.149D ','Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144779,10,'S59.149A ','Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144778,10,'S59.142S ','Salter-Harris Type IV physeal fracture of upper end of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(144777,10,'S59.142P ','Salter-Harris Type IV physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144776,10,'S59.142K ','Salter-Harris Type IV physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144775,10,'S59.142G ','Salter-Harris Type IV physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144774,10,'S59.142D ','Salter-Harris Type IV physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144773,10,'S59.142A ','Salter-Harris Type IV physeal fracture of upper end of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144772,10,'S59.141S ','Salter-Harris Type IV physeal fracture of upper end of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(144771,10,'S59.141P ','Salter-Harris Type IV physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144770,10,'S59.141K ','Salter-Harris Type IV physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144769,10,'S59.141G ','Salter-Harris Type IV physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144768,10,'S59.141D ','Salter-Harris Type IV physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144767,10,'S59.141A ','Salter-Harris Type IV physeal fracture of upper end of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144766,10,'S59.139S ','Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144765,10,'S59.139P ','Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144764,10,'S59.139K ','Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144763,10,'S59.139G ','Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144762,10,'S59.139D ','Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144761,10,'S59.139A ','Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144760,10,'S59.132S ','Salter-Harris Type III physeal fracture of upper end of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(144759,10,'S59.132P ','Salter-Harris Type III physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144758,10,'S59.132K ','Salter-Harris Type III physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144757,10,'S59.132G ','Salter-Harris Type III physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144756,10,'S59.132D ','Salter-Harris Type III physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144755,10,'S59.132A ','Salter-Harris Type III physeal fracture of upper end of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144754,10,'S59.131S ','Salter-Harris Type III physeal fracture of upper end of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(144753,10,'S59.131P ','Salter-Harris Type III physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144752,10,'S59.131K ','Salter-Harris Type III physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144751,10,'S59.131G ','Salter-Harris Type III physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144750,10,'S59.131D ','Salter-Harris Type III physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144749,10,'S59.131A ','Salter-Harris Type III physeal fracture of upper end of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144748,10,'S59.129S ','Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144747,10,'S59.129P ','Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144746,10,'S59.129K ','Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144745,10,'S59.129G ','Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144744,10,'S59.129D ','Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144743,10,'S59.129A ','Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144742,10,'S59.122S ','Salter-Harris Type II physeal fracture of upper end of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(144741,10,'S59.122P ','Salter-Harris Type II physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144740,10,'S59.122K ','Salter-Harris Type II physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144739,10,'S59.122G ','Salter-Harris Type II physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144738,10,'S59.122D ','Salter-Harris Type II physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144737,10,'S59.122A ','Salter-Harris Type II physeal fracture of upper end of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144736,10,'S59.121S ','Salter-Harris Type II physeal fracture of upper end of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(144735,10,'S59.121P ','Salter-Harris Type II physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144734,10,'S59.121K ','Salter-Harris Type II physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144733,10,'S59.121G ','Salter-Harris Type II physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144732,10,'S59.121D ','Salter-Harris Type II physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144731,10,'S59.121A ','Salter-Harris Type II physeal fracture of upper end of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144730,10,'S59.119S ','Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144729,10,'S59.119P ','Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144728,10,'S59.119K ','Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144727,10,'S59.119G ','Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144726,10,'S59.119D ','Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144725,10,'S59.119A ','Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144724,10,'S59.112S ','Salter-Harris Type I physeal fracture of upper end of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(144723,10,'S59.112P ','Salter-Harris Type I physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144722,10,'S59.112K ','Salter-Harris Type I physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144721,10,'S59.112G ','Salter-Harris Type I physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144720,10,'S59.112D ','Salter-Harris Type I physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144719,10,'S59.112A ','Salter-Harris Type I physeal fracture of upper end of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144718,10,'S59.111S ','Salter-Harris Type I physeal fracture of upper end of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(144717,10,'S59.111P ','Salter-Harris Type I physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144716,10,'S59.111K ','Salter-Harris Type I physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144715,10,'S59.111G ','Salter-Harris Type I physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144714,10,'S59.111D ','Salter-Harris Type I physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144713,10,'S59.111A ','Salter-Harris Type I physeal fracture of upper end of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144712,10,'S59.109S ','Unspecified physeal fracture of upper end of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144711,10,'S59.109P ','Unspecified physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144710,10,'S59.109K ','Unspecified physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144709,10,'S59.109G ','Unspecified physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144708,10,'S59.109D ','Unspecified physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144707,10,'S59.109A ','Unspecified physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144706,10,'S59.102S ','Unspecified physeal fracture of upper end of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(144705,10,'S59.102P ','Unspecified physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144704,10,'S59.102K ','Unspecified physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144703,10,'S59.102G ','Unspecified physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144702,10,'S59.102D ','Unspecified physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144701,10,'S59.102A ','Unspecified physeal fracture of upper end of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144700,10,'S59.101S ','Unspecified physeal fracture of upper end of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(144699,10,'S59.101P ','Unspecified physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144698,10,'S59.101K ','Unspecified physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144697,10,'S59.101G ','Unspecified physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144696,10,'S59.101D ','Unspecified physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144695,10,'S59.101A ','Unspecified physeal fracture of upper end of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144694,10,'S59.099S ','Other physeal fracture of lower end of ulna, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144693,10,'S59.099P ','Other physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144692,10,'S59.099K ','Other physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144691,10,'S59.099G ','Other physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144690,10,'S59.099D ','Other physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144689,10,'S59.099A ','Other physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144688,10,'S59.092S ','Other physeal fracture of lower end of ulna, left arm, sequela','Y','0000-00-00 00:00:00'),(144687,10,'S59.092P ','Other physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144686,10,'S59.092K ','Other physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144685,10,'S59.092G ','Other physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144684,10,'S59.092D ','Other physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144683,10,'S59.092A ','Other physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144682,10,'S59.091S ','Other physeal fracture of lower end of ulna, right arm, sequela','Y','0000-00-00 00:00:00'),(144681,10,'S59.091P ','Other physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144680,10,'S59.091K ','Other physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144679,10,'S59.091G ','Other physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144678,10,'S59.091D ','Other physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144677,10,'S59.091A ','Other physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144676,10,'S59.049S ','Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144675,10,'S59.049P ','Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144674,10,'S59.049K ','Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144673,10,'S59.049G ','Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144672,10,'S59.049D ','Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144671,10,'S59.049A ','Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144670,10,'S59.042S ','Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, sequela','Y','0000-00-00 00:00:00'),(144669,10,'S59.042P ','Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144668,10,'S59.042K ','Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144667,10,'S59.042G ','Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144666,10,'S59.042D ','Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144665,10,'S59.042A ','Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144664,10,'S59.041S ','Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, sequela','Y','0000-00-00 00:00:00'),(144663,10,'S59.041P ','Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144662,10,'S59.041K ','Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144661,10,'S59.041G ','Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144660,10,'S59.041D ','Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144659,10,'S59.041A ','Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144658,10,'S59.039S ','Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144657,10,'S59.039P ','Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144656,10,'S59.039K ','Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144655,10,'S59.039G ','Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144654,10,'S59.039D ','Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144653,10,'S59.039A ','Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144652,10,'S59.032S ','Salter-Harris Type III physeal fracture of lower end of ulna, left arm, sequela','Y','0000-00-00 00:00:00'),(144651,10,'S59.032P ','Salter-Harris Type III physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144650,10,'S59.032K ','Salter-Harris Type III physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144649,10,'S59.032G ','Salter-Harris Type III physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144648,10,'S59.032D ','Salter-Harris Type III physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144647,10,'S59.032A ','Salter-Harris Type III physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144646,10,'S59.031S ','Salter-Harris Type III physeal fracture of lower end of ulna, right arm, sequela','Y','0000-00-00 00:00:00'),(144645,10,'S59.031P ','Salter-Harris Type III physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144644,10,'S59.031K ','Salter-Harris Type III physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144643,10,'S59.031G ','Salter-Harris Type III physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144642,10,'S59.031D ','Salter-Harris Type III physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144641,10,'S59.031A ','Salter-Harris Type III physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144640,10,'S59.029S ','Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144639,10,'S59.029P ','Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144638,10,'S59.029K ','Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144637,10,'S59.029G ','Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144636,10,'S59.029D ','Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144635,10,'S59.029A ','Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144634,10,'S59.022S ','Salter-Harris Type II physeal fracture of lower end of ulna, left arm, sequela','Y','0000-00-00 00:00:00'),(144633,10,'S59.022P ','Salter-Harris Type II physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144632,10,'S59.022K ','Salter-Harris Type II physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144631,10,'S59.022G ','Salter-Harris Type II physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144630,10,'S59.022D ','Salter-Harris Type II physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144629,10,'S59.022A ','Salter-Harris Type II physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144628,10,'S59.021S ','Salter-Harris Type II physeal fracture of lower end of ulna, right arm, sequela','Y','0000-00-00 00:00:00'),(144627,10,'S59.021P ','Salter-Harris Type II physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144626,10,'S59.021K ','Salter-Harris Type II physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144625,10,'S59.021G ','Salter-Harris Type II physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144624,10,'S59.021D ','Salter-Harris Type II physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144623,10,'S59.021A ','Salter-Harris Type II physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144622,10,'S59.019S ','Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144621,10,'S59.019P ','Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144620,10,'S59.019K ','Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144619,10,'S59.019G ','Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144618,10,'S59.019D ','Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144617,10,'S59.019A ','Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144616,10,'S59.012S ','Salter-Harris Type I physeal fracture of lower end of ulna, left arm, sequela','Y','0000-00-00 00:00:00'),(144615,10,'S59.012P ','Salter-Harris Type I physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144614,10,'S59.012K ','Salter-Harris Type I physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144613,10,'S59.012G ','Salter-Harris Type I physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144612,10,'S59.012D ','Salter-Harris Type I physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144611,10,'S59.012A ','Salter-Harris Type I physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144610,10,'S59.011S ','Salter-Harris Type I physeal fracture of lower end of ulna, right arm, sequela','Y','0000-00-00 00:00:00'),(144609,10,'S59.011P ','Salter-Harris Type I physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144608,10,'S59.011K ','Salter-Harris Type I physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144607,10,'S59.011G ','Salter-Harris Type I physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144606,10,'S59.011D ','Salter-Harris Type I physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144605,10,'S59.011A ','Salter-Harris Type I physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144604,10,'S59.009S ','Unspecified physeal fracture of lower end of ulna, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144603,10,'S59.009P ','Unspecified physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144602,10,'S59.009K ','Unspecified physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144601,10,'S59.009G ','Unspecified physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144600,10,'S59.009D ','Unspecified physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144598,10,'S59.002S ','Unspecified physeal fracture of lower end of ulna, left arm, sequela','Y','0000-00-00 00:00:00'),(144599,10,'S59.009A ','Unspecified physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144597,10,'S59.002P ','Unspecified physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144596,10,'S59.002K ','Unspecified physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144595,10,'S59.002G ','Unspecified physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144594,10,'S59.002D ','Unspecified physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144593,10,'S59.002A ','Unspecified physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144592,10,'S59.001S ','Unspecified physeal fracture of lower end of ulna, right arm, sequela','Y','0000-00-00 00:00:00'),(144591,10,'S59.001P ','Unspecified physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(144590,10,'S59.001K ','Unspecified physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(144589,10,'S59.001G ','Unspecified physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(144588,10,'S59.001D ','Unspecified physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(144587,10,'S59.001A ','Unspecified physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(144586,10,'S58.929S ','Partial traumatic amputation of unspecified forearm, level unspecified, sequela','Y','0000-00-00 00:00:00'),(144585,10,'S58.929D ','Partial traumatic amputation of unspecified forearm, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(144584,10,'S58.929A ','Partial traumatic amputation of unspecified forearm, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(144583,10,'S58.922S ','Partial traumatic amputation of left forearm, level unspecified, sequela','Y','0000-00-00 00:00:00'),(144582,10,'S58.922D ','Partial traumatic amputation of left forearm, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(144581,10,'S58.922A ','Partial traumatic amputation of left forearm, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(144580,10,'S58.921S ','Partial traumatic amputation of right forearm, level unspecified, sequela','Y','0000-00-00 00:00:00'),(144579,10,'S58.921D ','Partial traumatic amputation of right forearm, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(144578,10,'S58.921A ','Partial traumatic amputation of right forearm, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(144577,10,'S58.919S ','Complete traumatic amputation of unspecified forearm, level unspecified, sequela','Y','0000-00-00 00:00:00'),(144576,10,'S58.919D ','Complete traumatic amputation of unspecified forearm, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(144575,10,'S58.919A ','Complete traumatic amputation of unspecified forearm, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(144574,10,'S58.912S ','Complete traumatic amputation of left forearm, level unspecified, sequela','Y','0000-00-00 00:00:00'),(144573,10,'S58.912D ','Complete traumatic amputation of left forearm, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(144572,10,'S58.912A ','Complete traumatic amputation of left forearm, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(144571,10,'S58.911S ','Complete traumatic amputation of right forearm, level unspecified, sequela','Y','0000-00-00 00:00:00'),(144570,10,'S58.911D ','Complete traumatic amputation of right forearm, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(144569,10,'S58.911A ','Complete traumatic amputation of right forearm, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(144568,10,'S58.129S ','Partial traumatic amputation at level between elbow and wrist, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144567,10,'S58.129D ','Partial traumatic amputation at level between elbow and wrist, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144566,10,'S58.129A ','Partial traumatic amputation at level between elbow and wrist, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144565,10,'S58.122S ','Partial traumatic amputation at level between elbow and wrist, left arm, sequela','Y','0000-00-00 00:00:00'),(144564,10,'S58.122D ','Partial traumatic amputation at level between elbow and wrist, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144563,10,'S58.122A ','Partial traumatic amputation at level between elbow and wrist, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144562,10,'S58.121S ','Partial traumatic amputation at level between elbow and wrist, right arm, sequela','Y','0000-00-00 00:00:00'),(144561,10,'S58.121D ','Partial traumatic amputation at level between elbow and wrist, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144560,10,'S58.121A ','Partial traumatic amputation at level between elbow and wrist, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144559,10,'S58.119S ','Complete traumatic amputation at level between elbow and wrist, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144558,10,'S58.119D ','Complete traumatic amputation at level between elbow and wrist, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144557,10,'S58.119A ','Complete traumatic amputation at level between elbow and wrist, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144556,10,'S58.112S ','Complete traumatic amputation at level between elbow and wrist, left arm, sequela','Y','0000-00-00 00:00:00'),(144555,10,'S58.112D ','Complete traumatic amputation at level between elbow and wrist, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144554,10,'S58.112A ','Complete traumatic amputation at level between elbow and wrist, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144553,10,'S58.111S ','Complete traumatic amputation at level between elbow and wrist, right arm, sequela','Y','0000-00-00 00:00:00'),(144552,10,'S58.111D ','Complete traumatic amputation at level between elbow and wrist, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144551,10,'S58.111A ','Complete traumatic amputation at level between elbow and wrist, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144550,10,'S58.029S ','Partial traumatic amputation at elbow level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144548,10,'S58.029A ','Partial traumatic amputation at elbow level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144549,10,'S58.029D ','Partial traumatic amputation at elbow level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144547,10,'S58.022S ','Partial traumatic amputation at elbow level, left arm, sequela','Y','0000-00-00 00:00:00'),(144546,10,'S58.022D ','Partial traumatic amputation at elbow level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144545,10,'S58.022A ','Partial traumatic amputation at elbow level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144544,10,'S58.021S ','Partial traumatic amputation at elbow level, right arm, sequela','Y','0000-00-00 00:00:00'),(144542,10,'S58.021A ','Partial traumatic amputation at elbow level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144543,10,'S58.021D ','Partial traumatic amputation at elbow level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144541,10,'S58.019S ','Complete traumatic amputation at elbow level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144540,10,'S58.019D ','Complete traumatic amputation at elbow level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144539,10,'S58.019A ','Complete traumatic amputation at elbow level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144538,10,'S58.012S ','Complete traumatic amputation at elbow level, left arm, sequela','Y','0000-00-00 00:00:00'),(144537,10,'S58.012D ','Complete traumatic amputation at elbow level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144536,10,'S58.012A ','Complete traumatic amputation at elbow level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144534,10,'S58.011D ','Complete traumatic amputation at elbow level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144535,10,'S58.011S ','Complete traumatic amputation at elbow level, right arm, sequela','Y','0000-00-00 00:00:00'),(144533,10,'S58.011A ','Complete traumatic amputation at elbow level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144532,10,'S57.82XS ','Crushing injury of left forearm, sequela','Y','0000-00-00 00:00:00'),(144531,10,'S57.82XD ','Crushing injury of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(144529,10,'S57.81XS ','Crushing injury of right forearm, sequela','Y','0000-00-00 00:00:00'),(144530,10,'S57.82XA ','Crushing injury of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(144528,10,'S57.81XD ','Crushing injury of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(144526,10,'S57.80XS ','Crushing injury of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(144527,10,'S57.81XA ','Crushing injury of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(144525,10,'S57.80XD ','Crushing injury of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(144523,10,'S57.02XS ','Crushing injury of left elbow, sequela','Y','0000-00-00 00:00:00'),(144524,10,'S57.80XA ','Crushing injury of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(144522,10,'S57.02XD ','Crushing injury of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(144521,10,'S57.02XA ','Crushing injury of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(144519,10,'S57.01XD ','Crushing injury of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(144520,10,'S57.01XS ','Crushing injury of right elbow, sequela','Y','0000-00-00 00:00:00'),(144518,10,'S57.01XA ','Crushing injury of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(144516,10,'S57.00XD ','Crushing injury of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(144517,10,'S57.00XS ','Crushing injury of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(144515,10,'S57.00XA ','Crushing injury of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(144514,10,'S56.999S ','Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144513,10,'S56.999D ','Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144512,10,'S56.999A ','Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144511,10,'S56.992S ','Other injury of unspecified muscles, fascia and tendons at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144510,10,'S56.992D ','Other injury of unspecified muscles, fascia and tendons at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144509,10,'S56.992A ','Other injury of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144508,10,'S56.991S ','Other injury of unspecified muscles, fascia and tendons at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144507,10,'S56.991D ','Other injury of unspecified muscles, fascia and tendons at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144506,10,'S56.991A ','Other injury of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144505,10,'S56.929S ','Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144504,10,'S56.929D ','Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144503,10,'S56.929A ','Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144502,10,'S56.922S ','Laceration of unspecified muscles, fascia and tendons at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144501,10,'S56.922D ','Laceration of unspecified muscles, fascia and tendons at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144500,10,'S56.922A ','Laceration of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144499,10,'S56.921S ','Laceration of unspecified muscles, fascia and tendons at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144498,10,'S56.921D ','Laceration of unspecified muscles, fascia and tendons at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144497,10,'S56.921A ','Laceration of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144496,10,'S56.919S ','Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144495,10,'S56.919D ','Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144494,10,'S56.919A ','Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144493,10,'S56.912S ','Strain of unspecified muscles, fascia and tendons at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144492,10,'S56.912D ','Strain of unspecified muscles, fascia and tendons at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144491,10,'S56.912A ','Strain of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144490,10,'S56.911S ','Strain of unspecified muscles, fascia and tendons at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144489,10,'S56.911D ','Strain of unspecified muscles, fascia and tendons at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144488,10,'S56.911A ','Strain of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144487,10,'S56.909S ','Unspecified injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144486,10,'S56.909D ','Unspecified injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144485,10,'S56.909A ','Unspecified injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144484,10,'S56.902S ','Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144483,10,'S56.902D ','Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144482,10,'S56.902A ','Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144481,10,'S56.901S ','Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144480,10,'S56.901D ','Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144479,10,'S56.901A ','Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144478,10,'S56.899S ','Other injury of other muscles, fascia and tendons at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144477,10,'S56.899D ','Other injury of other muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144476,10,'S56.899A ','Other injury of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144475,10,'S56.892S ','Other injury of other muscles, fascia and tendons at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144474,10,'S56.892D ','Other injury of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144473,10,'S56.892A ','Other injury of other muscles, fascia and tendons at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144472,10,'S56.891S ','Other injury of other muscles, fascia and tendons at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144471,10,'S56.891D ','Other injury of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144470,10,'S56.891A ','Other injury of other muscles, fascia and tendons at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144469,10,'S56.829S ','Laceration of other muscles, fascia and tendons at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144468,10,'S56.829D ','Laceration of other muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144467,10,'S56.829A ','Laceration of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144466,10,'S56.822S ','Laceration of other muscles, fascia and tendons at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144465,10,'S56.822D ','Laceration of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144464,10,'S56.822A ','Laceration of other muscles, fascia and tendons at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144463,10,'S56.821S ','Laceration of other muscles, fascia and tendons at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144462,10,'S56.821D ','Laceration of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144461,10,'S56.821A ','Laceration of other muscles, fascia and tendons at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144460,10,'S56.819S ','Strain of other muscles, fascia and tendons at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144459,10,'S56.819D ','Strain of other muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144458,10,'S56.819A ','Strain of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144457,10,'S56.812S ','Strain of other muscles, fascia and tendons at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144456,10,'S56.812D ','Strain of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144455,10,'S56.812A ','Strain of other muscles, fascia and tendons at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144454,10,'S56.811S ','Strain of other muscles, fascia and tendons at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144453,10,'S56.811D ','Strain of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144452,10,'S56.811A ','Strain of other muscles, fascia and tendons at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144451,10,'S56.809S ','Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144450,10,'S56.809D ','Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144449,10,'S56.809A ','Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144448,10,'S56.802S ','Unspecified injury of other muscles, fascia and tendons at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144447,10,'S56.802D ','Unspecified injury of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144446,10,'S56.802A ','Unspecified injury of other muscles, fascia and tendons at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144445,10,'S56.801S ','Unspecified injury of other muscles, fascia and tendons at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144444,10,'S56.801D ','Unspecified injury of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144443,10,'S56.801A ','Unspecified injury of other muscles, fascia and tendons at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144442,10,'S56.599S ','Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144441,10,'S56.599D ','Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144440,10,'S56.599A ','Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144439,10,'S56.592S ','Other injury of other extensor muscle, fascia and tendon at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144438,10,'S56.592D ','Other injury of other extensor muscle, fascia and tendon at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144437,10,'S56.592A ','Other injury of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144436,10,'S56.591S ','Other injury of other extensor muscle, fascia and tendon at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144435,10,'S56.591D ','Other injury of other extensor muscle, fascia and tendon at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144434,10,'S56.591A ','Other injury of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144433,10,'S56.529S ','Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144432,10,'S56.529D ','Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144431,10,'S56.529A ','Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144430,10,'S56.522S ','Laceration of other extensor muscle, fascia and tendon at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144429,10,'S56.522D ','Laceration of other extensor muscle, fascia and tendon at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144428,10,'S56.522A ','Laceration of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144427,10,'S56.521S ','Laceration of other extensor muscle, fascia and tendon at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144426,10,'S56.521D ','Laceration of other extensor muscle, fascia and tendon at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144425,10,'S56.521A ','Laceration of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144424,10,'S56.519S ','Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144423,10,'S56.519D ','Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144422,10,'S56.519A ','Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144421,10,'S56.512S ','Strain of other extensor muscle, fascia and tendon at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144420,10,'S56.512D ','Strain of other extensor muscle, fascia and tendon at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144419,10,'S56.512A ','Strain of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144418,10,'S56.511S ','Strain of other extensor muscle, fascia and tendon at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144417,10,'S56.511D ','Strain of other extensor muscle, fascia and tendon at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144416,10,'S56.511A ','Strain of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144415,10,'S56.509S ','Unspecified injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144414,10,'S56.509D ','Unspecified injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144413,10,'S56.509A ','Unspecified injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144412,10,'S56.502S ','Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144411,10,'S56.502D ','Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144410,10,'S56.502A ','Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144409,10,'S56.501S ','Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144408,10,'S56.501D ','Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144407,10,'S56.501A ','Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144406,10,'S56.499S ','Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144405,10,'S56.499D ','Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144404,10,'S56.499A ','Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144403,10,'S56.498S ','Other injury of extensor muscle, fascia and tendon of left little finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144402,10,'S56.498D ','Other injury of extensor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144401,10,'S56.498A ','Other injury of extensor muscle, fascia and tendon of left little finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144400,10,'S56.497S ','Other injury of extensor muscle, fascia and tendon of right little finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144399,10,'S56.497D ','Other injury of extensor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144398,10,'S56.497A ','Other injury of extensor muscle, fascia and tendon of right little finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144397,10,'S56.496S ','Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144396,10,'S56.496D ','Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144395,10,'S56.496A ','Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144394,10,'S56.495S ','Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144393,10,'S56.495D ','Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144392,10,'S56.495A ','Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144391,10,'S56.494S ','Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144390,10,'S56.494D ','Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144389,10,'S56.494A ','Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144388,10,'S56.493S ','Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144387,10,'S56.493D ','Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144386,10,'S56.493A ','Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144385,10,'S56.492S ','Other injury of extensor muscle, fascia and tendon of left index finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144384,10,'S56.492D ','Other injury of extensor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144383,10,'S56.492A ','Other injury of extensor muscle, fascia and tendon of left index finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144382,10,'S56.491S ','Other injury of extensor muscle, fascia and tendon of right index finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144381,10,'S56.491D ','Other injury of extensor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144380,10,'S56.491A ','Other injury of extensor muscle, fascia and tendon of right index finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144379,10,'S56.429S ','Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144378,10,'S56.429D ','Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144377,10,'S56.429A ','Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144376,10,'S56.428S ','Laceration of extensor muscle, fascia and tendon of left little finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144375,10,'S56.428D ','Laceration of extensor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144374,10,'S56.428A ','Laceration of extensor muscle, fascia and tendon of left little finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144373,10,'S56.427S ','Laceration of extensor muscle, fascia and tendon of right little finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144372,10,'S56.427D ','Laceration of extensor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144371,10,'S56.427A ','Laceration of extensor muscle, fascia and tendon of right little finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144370,10,'S56.426S ','Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144369,10,'S56.426D ','Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144368,10,'S56.426A ','Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144367,10,'S56.425S ','Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144366,10,'S56.425D ','Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144365,10,'S56.425A ','Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144364,10,'S56.424S ','Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144363,10,'S56.424D ','Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144362,10,'S56.424A ','Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144361,10,'S56.423S ','Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144360,10,'S56.423D ','Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144359,10,'S56.423A ','Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144358,10,'S56.422S ','Laceration of extensor muscle, fascia and tendon of left index finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144357,10,'S56.422D ','Laceration of extensor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144356,10,'S56.422A ','Laceration of extensor muscle, fascia and tendon of left index finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144355,10,'S56.421S ','Laceration of extensor muscle, fascia and tendon of right index finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144354,10,'S56.421D ','Laceration of extensor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144353,10,'S56.421A ','Laceration of extensor muscle, fascia and tendon of right index finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144352,10,'S56.419S ','Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144351,10,'S56.419D ','Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144350,10,'S56.419A ','Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144349,10,'S56.418S ','Strain of extensor muscle, fascia and tendon of left little finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144348,10,'S56.418D ','Strain of extensor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144347,10,'S56.418A ','Strain of extensor muscle, fascia and tendon of left little finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144346,10,'S56.417S ','Strain of extensor muscle, fascia and tendon of right little finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144345,10,'S56.417D ','Strain of extensor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144344,10,'S56.417A ','Strain of extensor muscle, fascia and tendon of right little finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144343,10,'S56.416S ','Strain of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144342,10,'S56.416D ','Strain of extensor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144341,10,'S56.416A ','Strain of extensor muscle, fascia and tendon of left ring finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144340,10,'S56.415S ','Strain of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144339,10,'S56.415D ','Strain of extensor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144338,10,'S56.415A ','Strain of extensor muscle, fascia and tendon of right ring finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144337,10,'S56.414S ','Strain of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144336,10,'S56.414D ','Strain of extensor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144335,10,'S56.414A ','Strain of extensor muscle, fascia and tendon of left middle finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144334,10,'S56.413S ','Strain of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144333,10,'S56.413D ','Strain of extensor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144332,10,'S56.413A ','Strain of extensor muscle, fascia and tendon of right middle finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144331,10,'S56.412S ','Strain of extensor muscle, fascia and tendon of left index finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144330,10,'S56.412D ','Strain of extensor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144329,10,'S56.412A ','Strain of extensor muscle, fascia and tendon of left index finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144328,10,'S56.411S ','Strain of extensor muscle, fascia and tendon of right index finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144327,10,'S56.411D ','Strain of extensor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144326,10,'S56.411A ','Strain of extensor muscle, fascia and tendon of right index finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144325,10,'S56.409S ','Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144324,10,'S56.409D ','Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144323,10,'S56.409A ','Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144322,10,'S56.408S ','Unspecified injury of extensor muscle, fascia and tendon of left little finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144321,10,'S56.408D ','Unspecified injury of extensor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144320,10,'S56.408A ','Unspecified injury of extensor muscle, fascia and tendon of left little finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144319,10,'S56.407S ','Unspecified injury of extensor muscle, fascia and tendon of right little finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144318,10,'S56.407D ','Unspecified injury of extensor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144317,10,'S56.407A ','Unspecified injury of extensor muscle, fascia and tendon of right little finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144316,10,'S56.406S ','Unspecified injury of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144315,10,'S56.406D ','Unspecified injury of extensor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144314,10,'S56.406A ','Unspecified injury of extensor muscle, fascia and tendon of left ring finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144313,10,'S56.405S ','Unspecified injury of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144312,10,'S56.405D ','Unspecified injury of extensor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144311,10,'S56.405A ','Unspecified injury of extensor muscle, fascia and tendon of right ring finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144310,10,'S56.404S ','Unspecified injury of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144309,10,'S56.404D ','Unspecified injury of extensor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144308,10,'S56.404A ','Unspecified injury of extensor muscle, fascia and tendon of left middle finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144307,10,'S56.403S ','Unspecified injury of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144306,10,'S56.403D ','Unspecified injury of extensor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144305,10,'S56.403A ','Unspecified injury of extensor muscle, fascia and tendon of right middle finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144304,10,'S56.402S ','Unspecified injury of extensor muscle, fascia and tendon of left index finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144303,10,'S56.402D ','Unspecified injury of extensor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144302,10,'S56.402A ','Unspecified injury of extensor muscle, fascia and tendon of left index finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144301,10,'S56.401S ','Unspecified injury of extensor muscle, fascia and tendon of right index finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144300,10,'S56.401D ','Unspecified injury of extensor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144299,10,'S56.401A ','Unspecified injury of extensor muscle, fascia and tendon of right index finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144298,10,'S56.399S ','Other injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144297,10,'S56.399D ','Other injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144296,10,'S56.399A ','Other injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144295,10,'S56.392S ','Other injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144294,10,'S56.392D ','Other injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144293,10,'S56.392A ','Other injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144292,10,'S56.391S ','Other injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144291,10,'S56.391D ','Other injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144290,10,'S56.391A ','Other injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144289,10,'S56.329S ','Laceration of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144288,10,'S56.329D ','Laceration of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144287,10,'S56.329A ','Laceration of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144286,10,'S56.322S ','Laceration of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144285,10,'S56.322D ','Laceration of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144284,10,'S56.322A ','Laceration of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144283,10,'S56.321S ','Laceration of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144282,10,'S56.321D ','Laceration of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144281,10,'S56.321A ','Laceration of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144280,10,'S56.319S ','Strain of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144279,10,'S56.319D ','Strain of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144278,10,'S56.319A ','Strain of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144277,10,'S56.312S ','Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144276,10,'S56.312D ','Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144275,10,'S56.312A ','Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144274,10,'S56.311S ','Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144273,10,'S56.311D ','Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144272,10,'S56.311A ','Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144271,10,'S56.309S ','Unspecified injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144270,10,'S56.309D ','Unspecified injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144269,10,'S56.309A ','Unspecified injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144268,10,'S56.302S ','Unspecified injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144267,10,'S56.302D ','Unspecified injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144265,10,'S56.301S ','Unspecified injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144266,10,'S56.302A ','Unspecified injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144264,10,'S56.301D ','Unspecified injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144263,10,'S56.301A ','Unspecified injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144262,10,'S56.299S ','Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144261,10,'S56.299D ','Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144260,10,'S56.299A ','Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144259,10,'S56.292S ','Other injury of other flexor muscle, fascia and tendon at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144258,10,'S56.292D ','Other injury of other flexor muscle, fascia and tendon at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144257,10,'S56.292A ','Other injury of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144256,10,'S56.291S ','Other injury of other flexor muscle, fascia and tendon at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144254,10,'S56.291A ','Other injury of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144255,10,'S56.291D ','Other injury of other flexor muscle, fascia and tendon at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144253,10,'S56.229S ','Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144252,10,'S56.229D ','Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144251,10,'S56.229A ','Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144250,10,'S56.222S ','Laceration of other flexor muscle, fascia and tendon at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144248,10,'S56.222A ','Laceration of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144249,10,'S56.222D ','Laceration of other flexor muscle, fascia and tendon at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144247,10,'S56.221S ','Laceration of other flexor muscle, fascia and tendon at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144246,10,'S56.221D ','Laceration of other flexor muscle, fascia and tendon at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144245,10,'S56.221A ','Laceration of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144244,10,'S56.219S ','Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144243,10,'S56.219D ','Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144242,10,'S56.219A ','Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144241,10,'S56.212S ','Strain of other flexor muscle, fascia and tendon at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144239,10,'S56.212A ','Strain of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144240,10,'S56.212D ','Strain of other flexor muscle, fascia and tendon at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144238,10,'S56.211S ','Strain of other flexor muscle, fascia and tendon at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144237,10,'S56.211D ','Strain of other flexor muscle, fascia and tendon at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144235,10,'S56.209S ','Unspecified injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144236,10,'S56.211A ','Strain of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144234,10,'S56.209D ','Unspecified injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144233,10,'S56.209A ','Unspecified injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144232,10,'S56.202S ','Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144231,10,'S56.202D ','Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144229,10,'S56.201S ','Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144230,10,'S56.202A ','Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144228,10,'S56.201D ','Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144227,10,'S56.201A ','Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144226,10,'S56.199S ','Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144225,10,'S56.199D ','Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144224,10,'S56.199A ','Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144223,10,'S56.198S ','Other injury of flexor muscle, fascia and tendon of left little finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144222,10,'S56.198D ','Other injury of flexor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144221,10,'S56.198A ','Other injury of flexor muscle, fascia and tendon of left little finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144220,10,'S56.197S ','Other injury of flexor muscle, fascia and tendon of right little finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144218,10,'S56.197A ','Other injury of flexor muscle, fascia and tendon of right little finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144219,10,'S56.197D ','Other injury of flexor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144217,10,'S56.196S ','Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144216,10,'S56.196D ','Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144215,10,'S56.196A ','Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144213,10,'S56.195D ','Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144214,10,'S56.195S ','Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144212,10,'S56.195A ','Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144211,10,'S56.194S ','Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144210,10,'S56.194D ','Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144209,10,'S56.194A ','Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144208,10,'S56.193S ','Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144206,10,'S56.193A ','Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144207,10,'S56.193D ','Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144205,10,'S56.192S ','Other injury of flexor muscle, fascia and tendon of left index finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144204,10,'S56.192D ','Other injury of flexor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144203,10,'S56.192A ','Other injury of flexor muscle, fascia and tendon of left index finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144202,10,'S56.191S ','Other injury of flexor muscle, fascia and tendon of right index finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144201,10,'S56.191D ','Other injury of flexor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144200,10,'S56.191A ','Other injury of flexor muscle, fascia and tendon of right index finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144199,10,'S56.129S ','Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144197,10,'S56.129A ','Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144198,10,'S56.129D ','Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144196,10,'S56.128S ','Laceration of flexor muscle, fascia and tendon of left little finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144195,10,'S56.128D ','Laceration of flexor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144194,10,'S56.128A ','Laceration of flexor muscle, fascia and tendon of left little finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144192,10,'S56.127D ','Laceration of flexor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144193,10,'S56.127S ','Laceration of flexor muscle, fascia and tendon of right little finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144191,10,'S56.127A ','Laceration of flexor muscle, fascia and tendon of right little finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144190,10,'S56.126S ','Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144189,10,'S56.126D ','Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144188,10,'S56.126A ','Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144187,10,'S56.125S ','Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144186,10,'S56.125D ','Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144185,10,'S56.125A ','Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144184,10,'S56.124S ','Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144182,10,'S56.124A ','Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144183,10,'S56.124D ','Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144181,10,'S56.123S ','Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144180,10,'S56.123D ','Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144179,10,'S56.123A ','Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144177,10,'S56.122D ','Laceration of flexor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144178,10,'S56.122S ','Laceration of flexor muscle, fascia and tendon of left index finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144176,10,'S56.122A ','Laceration of flexor muscle, fascia and tendon of left index finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144175,10,'S56.121S ','Laceration of flexor muscle, fascia and tendon of right index finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144174,10,'S56.121D ','Laceration of flexor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144172,10,'S56.119S ','Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144173,10,'S56.121A ','Laceration of flexor muscle, fascia and tendon of right index finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144171,10,'S56.119D ','Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144170,10,'S56.119A ','Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144169,10,'S56.118S ','Strain of flexor muscle, fascia and tendon of left little finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144168,10,'S56.118D ','Strain of flexor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144167,10,'S56.118A ','Strain of flexor muscle, fascia and tendon of left little finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144166,10,'S56.117S ','Strain of flexor muscle, fascia and tendon of right little finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144165,10,'S56.117D ','Strain of flexor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144164,10,'S56.117A ','Strain of flexor muscle, fascia and tendon of right little finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144162,10,'S56.116D ','Strain of flexor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144163,10,'S56.116S ','Strain of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144161,10,'S56.116A ','Strain of flexor muscle, fascia and tendon of left ring finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144160,10,'S56.115S ','Strain of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144159,10,'S56.115D ','Strain of flexor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144157,10,'S56.114S ','Strain of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144158,10,'S56.115A ','Strain of flexor muscle, fascia and tendon of right ring finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144156,10,'S56.114D ','Strain of flexor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144155,10,'S56.114A ','Strain of flexor muscle, fascia and tendon of left middle finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144154,10,'S56.113S ','Strain of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144153,10,'S56.113D ','Strain of flexor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144151,10,'S56.112S ','Strain of flexor muscle, fascia and tendon of left index finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144152,10,'S56.113A ','Strain of flexor muscle, fascia and tendon of right middle finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144150,10,'S56.112D ','Strain of flexor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144149,10,'S56.112A ','Strain of flexor muscle, fascia and tendon of left index finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144148,10,'S56.111S ','Strain of flexor muscle, fascia and tendon of right index finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144147,10,'S56.111D ','Strain of flexor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144146,10,'S56.111A ','Strain of flexor muscle, fascia and tendon of right index finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144145,10,'S56.109S ','Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144144,10,'S56.109D ','Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144143,10,'S56.109A ','Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144142,10,'S56.108S ','Unspecified injury of flexor muscle, fascia and tendon of left little finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144141,10,'S56.108D ','Unspecified injury of flexor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144140,10,'S56.108A ','Unspecified injury of flexor muscle, fascia and tendon of left little finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144139,10,'S56.107S ','Unspecified injury of flexor muscle, fascia and tendon of right little finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144138,10,'S56.107D ','Unspecified injury of flexor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144136,10,'S56.106S ','Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144137,10,'S56.107A ','Unspecified injury of flexor muscle, fascia and tendon of right little finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144135,10,'S56.106D ','Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144134,10,'S56.106A ','Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144133,10,'S56.105S ','Unspecified injury of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144132,10,'S56.105D ','Unspecified injury of flexor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144131,10,'S56.105A ','Unspecified injury of flexor muscle, fascia and tendon of right ring finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144130,10,'S56.104S ','Unspecified injury of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144129,10,'S56.104D ','Unspecified injury of flexor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144128,10,'S56.104A ','Unspecified injury of flexor muscle, fascia and tendon of left middle finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144127,10,'S56.103S ','Unspecified injury of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144126,10,'S56.103D ','Unspecified injury of flexor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144125,10,'S56.103A ','Unspecified injury of flexor muscle, fascia and tendon of right middle finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144123,10,'S56.102D ','Unspecified injury of flexor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144124,10,'S56.102S ','Unspecified injury of flexor muscle, fascia and tendon of left index finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144122,10,'S56.102A ','Unspecified injury of flexor muscle, fascia and tendon of left index finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144121,10,'S56.101S ','Unspecified injury of flexor muscle, fascia and tendon of right index finger at forearm level, sequela','Y','0000-00-00 00:00:00'),(144120,10,'S56.101D ','Unspecified injury of flexor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144119,10,'S56.101A ','Unspecified injury of flexor muscle, fascia and tendon of right index finger at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144118,10,'S56.099S ','Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144117,10,'S56.099D ','Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144115,10,'S56.092S ','Other injury of flexor muscle, fascia and tendon of left thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144116,10,'S56.099A ','Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144114,10,'S56.092D ','Other injury of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144112,10,'S56.091S ','Other injury of flexor muscle, fascia and tendon of right thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144113,10,'S56.092A ','Other injury of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144111,10,'S56.091D ','Other injury of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144110,10,'S56.091A ','Other injury of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144109,10,'S56.029S ','Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144108,10,'S56.029D ','Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144106,10,'S56.022S ','Laceration of flexor muscle, fascia and tendon of left thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144107,10,'S56.029A ','Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144105,10,'S56.022D ','Laceration of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144104,10,'S56.022A ','Laceration of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144103,10,'S56.021S ','Laceration of flexor muscle, fascia and tendon of right thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144101,10,'S56.021A ','Laceration of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144102,10,'S56.021D ','Laceration of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144100,10,'S56.019S ','Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144099,10,'S56.019D ','Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144098,10,'S56.019A ','Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144096,10,'S56.012D ','Strain of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144097,10,'S56.012S ','Strain of flexor muscle, fascia and tendon of left thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144095,10,'S56.012A ','Strain of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144094,10,'S56.011S ','Strain of flexor muscle, fascia and tendon of right thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144093,10,'S56.011D ','Strain of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144092,10,'S56.011A ','Strain of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144091,10,'S56.009S ','Unspecified injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144090,10,'S56.009D ','Unspecified injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144089,10,'S56.009A ','Unspecified injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144088,10,'S56.002S ','Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144086,10,'S56.002A ','Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144087,10,'S56.002D ','Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144085,10,'S56.001S ','Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level, sequela','Y','0000-00-00 00:00:00'),(144084,10,'S56.001D ','Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter','Y','0000-00-00 00:00:00'),(144083,10,'S56.001A ','Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter','Y','0000-00-00 00:00:00'),(144082,10,'S55.999S ','Other specified injury of unspecified blood vessel at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144081,10,'S55.999D ','Other specified injury of unspecified blood vessel at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144079,10,'S55.992S ','Other specified injury of unspecified blood vessel at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144080,10,'S55.999A ','Other specified injury of unspecified blood vessel at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144078,10,'S55.992D ','Other specified injury of unspecified blood vessel at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144077,10,'S55.992A ','Other specified injury of unspecified blood vessel at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144076,10,'S55.991S ','Other specified injury of unspecified blood vessel at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144075,10,'S55.991D ','Other specified injury of unspecified blood vessel at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144074,10,'S55.991A ','Other specified injury of unspecified blood vessel at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144073,10,'S55.919S ','Laceration of unspecified blood vessel at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144071,10,'S55.919A ','Laceration of unspecified blood vessel at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144072,10,'S55.919D ','Laceration of unspecified blood vessel at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144070,10,'S55.912S ','Laceration of unspecified blood vessel at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144068,10,'S55.912A ','Laceration of unspecified blood vessel at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144069,10,'S55.912D ','Laceration of unspecified blood vessel at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144067,10,'S55.911S ','Laceration of unspecified blood vessel at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144065,10,'S55.911A ','Laceration of unspecified blood vessel at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144066,10,'S55.911D ','Laceration of unspecified blood vessel at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144064,10,'S55.909S ','Unspecified injury of unspecified blood vessel at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144063,10,'S55.909D ','Unspecified injury of unspecified blood vessel at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144061,10,'S55.902S ','Unspecified injury of unspecified blood vessel at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144062,10,'S55.909A ','Unspecified injury of unspecified blood vessel at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144060,10,'S55.902D ','Unspecified injury of unspecified blood vessel at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144059,10,'S55.902A ','Unspecified injury of unspecified blood vessel at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144057,10,'S55.901D ','Unspecified injury of unspecified blood vessel at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144058,10,'S55.901S ','Unspecified injury of unspecified blood vessel at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144056,10,'S55.901A ','Unspecified injury of unspecified blood vessel at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144055,10,'S55.899S ','Other specified injury of other blood vessels at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144054,10,'S55.899D ','Other specified injury of other blood vessels at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144053,10,'S55.899A ','Other specified injury of other blood vessels at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144052,10,'S55.892S ','Other specified injury of other blood vessels at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144050,10,'S55.892A ','Other specified injury of other blood vessels at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144051,10,'S55.892D ','Other specified injury of other blood vessels at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144049,10,'S55.891S ','Other specified injury of other blood vessels at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144048,10,'S55.891D ','Other specified injury of other blood vessels at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144047,10,'S55.891A ','Other specified injury of other blood vessels at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144046,10,'S55.819S ','Laceration of other blood vessels at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144045,10,'S55.819D ','Laceration of other blood vessels at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144044,10,'S55.819A ','Laceration of other blood vessels at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144043,10,'S55.812S ','Laceration of other blood vessels at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144042,10,'S55.812D ','Laceration of other blood vessels at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144040,10,'S55.811S ','Laceration of other blood vessels at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144041,10,'S55.812A ','Laceration of other blood vessels at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144039,10,'S55.811D ','Laceration of other blood vessels at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144038,10,'S55.811A ','Laceration of other blood vessels at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144037,10,'S55.809S ','Unspecified injury of other blood vessels at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144036,10,'S55.809D ','Unspecified injury of other blood vessels at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144035,10,'S55.809A ','Unspecified injury of other blood vessels at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144034,10,'S55.802S ','Unspecified injury of other blood vessels at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144033,10,'S55.802D ','Unspecified injury of other blood vessels at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144032,10,'S55.802A ','Unspecified injury of other blood vessels at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144031,10,'S55.801S ','Unspecified injury of other blood vessels at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144030,10,'S55.801D ','Unspecified injury of other blood vessels at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144029,10,'S55.801A ','Unspecified injury of other blood vessels at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144028,10,'S55.299S ','Other specified injury of vein at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144027,10,'S55.299D ','Other specified injury of vein at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144025,10,'S55.292S ','Other specified injury of vein at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144026,10,'S55.299A ','Other specified injury of vein at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144024,10,'S55.292D ','Other specified injury of vein at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144023,10,'S55.292A ','Other specified injury of vein at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144022,10,'S55.291S ','Other specified injury of vein at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144021,10,'S55.291D ','Other specified injury of vein at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144020,10,'S55.291A ','Other specified injury of vein at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144019,10,'S55.219S ','Laceration of vein at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144018,10,'S55.219D ','Laceration of vein at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144016,10,'S55.212S ','Laceration of vein at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144017,10,'S55.219A ','Laceration of vein at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144015,10,'S55.212D ','Laceration of vein at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144013,10,'S55.211S ','Laceration of vein at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144014,10,'S55.212A ','Laceration of vein at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144012,10,'S55.211D ','Laceration of vein at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144011,10,'S55.211A ','Laceration of vein at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144010,10,'S55.209S ','Unspecified injury of vein at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144008,10,'S55.209A ','Unspecified injury of vein at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(144009,10,'S55.209D ','Unspecified injury of vein at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144007,10,'S55.202S ','Unspecified injury of vein at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(144006,10,'S55.202D ','Unspecified injury of vein at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144004,10,'S55.201S ','Unspecified injury of vein at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(144005,10,'S55.202A ','Unspecified injury of vein at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(144003,10,'S55.201D ','Unspecified injury of vein at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(144002,10,'S55.201A ','Unspecified injury of vein at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(144001,10,'S55.199S ','Other specified injury of radial artery at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(144000,10,'S55.199D ','Other specified injury of radial artery at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143999,10,'S55.199A ','Other specified injury of radial artery at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(143998,10,'S55.192S ','Other specified injury of radial artery at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(143997,10,'S55.192D ','Other specified injury of radial artery at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143995,10,'S55.191S ','Other specified injury of radial artery at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(143996,10,'S55.192A ','Other specified injury of radial artery at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(143994,10,'S55.191D ','Other specified injury of radial artery at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143993,10,'S55.191A ','Other specified injury of radial artery at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(143992,10,'S55.119S ','Laceration of radial artery at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(143991,10,'S55.119D ','Laceration of radial artery at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143990,10,'S55.119A ','Laceration of radial artery at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(143988,10,'S55.112D ','Laceration of radial artery at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143989,10,'S55.112S ','Laceration of radial artery at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(143987,10,'S55.112A ','Laceration of radial artery at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(143986,10,'S55.111S ','Laceration of radial artery at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(143985,10,'S55.111D ','Laceration of radial artery at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143984,10,'S55.111A ','Laceration of radial artery at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(143983,10,'S55.109S ','Unspecified injury of radial artery at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(143982,10,'S55.109D ','Unspecified injury of radial artery at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143981,10,'S55.109A ','Unspecified injury of radial artery at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(143980,10,'S55.102S ','Unspecified injury of radial artery at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(143979,10,'S55.102D ','Unspecified injury of radial artery at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143978,10,'S55.102A ','Unspecified injury of radial artery at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(143976,10,'S55.101D ','Unspecified injury of radial artery at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143977,10,'S55.101S ','Unspecified injury of radial artery at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(143975,10,'S55.101A ','Unspecified injury of radial artery at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(143974,10,'S55.099S ','Other specified injury of ulnar artery at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(143973,10,'S55.099D ','Other specified injury of ulnar artery at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143972,10,'S55.099A ','Other specified injury of ulnar artery at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(143971,10,'S55.092S ','Other specified injury of ulnar artery at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(143970,10,'S55.092D ','Other specified injury of ulnar artery at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143969,10,'S55.092A ','Other specified injury of ulnar artery at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(143968,10,'S55.091S ','Other specified injury of ulnar artery at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(143967,10,'S55.091D ','Other specified injury of ulnar artery at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143966,10,'S55.091A ','Other specified injury of ulnar artery at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(143964,10,'S55.019D ','Laceration of ulnar artery at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143965,10,'S55.019S ','Laceration of ulnar artery at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(143963,10,'S55.019A ','Laceration of ulnar artery at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(143962,10,'S55.012S ','Laceration of ulnar artery at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(143960,10,'S55.012A ','Laceration of ulnar artery at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(143961,10,'S55.012D ','Laceration of ulnar artery at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143959,10,'S55.011S ','Laceration of ulnar artery at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(143958,10,'S55.011D ','Laceration of ulnar artery at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143957,10,'S55.011A ','Laceration of ulnar artery at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(143956,10,'S55.009S ','Unspecified injury of ulnar artery at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(143955,10,'S55.009D ','Unspecified injury of ulnar artery at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143953,10,'S55.002S ','Unspecified injury of ulnar artery at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(143954,10,'S55.009A ','Unspecified injury of ulnar artery at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(143952,10,'S55.002D ','Unspecified injury of ulnar artery at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143951,10,'S55.002A ','Unspecified injury of ulnar artery at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(143950,10,'S55.001S ','Unspecified injury of ulnar artery at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(143949,10,'S55.001D ','Unspecified injury of ulnar artery at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143948,10,'S55.001A ','Unspecified injury of ulnar artery at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(143947,10,'S54.92XS ','Injury of unspecified nerve at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(143946,10,'S54.92XD ','Injury of unspecified nerve at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143945,10,'S54.92XA ','Injury of unspecified nerve at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(143944,10,'S54.91XS ','Injury of unspecified nerve at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(143943,10,'S54.91XD ','Injury of unspecified nerve at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143941,10,'S54.90XS ','Injury of unspecified nerve at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(143942,10,'S54.91XA ','Injury of unspecified nerve at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(143940,10,'S54.90XD ','Injury of unspecified nerve at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143938,10,'S54.8X9S ','Injury of other nerves at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(143939,10,'S54.90XA ','Injury of unspecified nerve at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(143937,10,'S54.8X9D ','Injury of other nerves at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143936,10,'S54.8X9A ','Injury of other nerves at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(143935,10,'S54.8X2S ','Injury of other nerves at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(143934,10,'S54.8X2D ','Injury of other nerves at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143933,10,'S54.8X2A ','Injury of other nerves at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(143932,10,'S54.8X1S ','Injury of other nerves at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(143931,10,'S54.8X1D ','Injury of other nerves at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143929,10,'S54.32XS ','Injury of cutaneous sensory nerve at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(143930,10,'S54.8X1A ','Injury of other nerves at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(143928,10,'S54.32XD ','Injury of cutaneous sensory nerve at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143927,10,'S54.32XA ','Injury of cutaneous sensory nerve at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(143926,10,'S54.31XS ','Injury of cutaneous sensory nerve at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(143925,10,'S54.31XD ','Injury of cutaneous sensory nerve at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143924,10,'S54.31XA ','Injury of cutaneous sensory nerve at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(143923,10,'S54.30XS ','Injury of cutaneous sensory nerve at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(143922,10,'S54.30XD ','Injury of cutaneous sensory nerve at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143921,10,'S54.30XA ','Injury of cutaneous sensory nerve at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(143919,10,'S54.22XD ','Injury of radial nerve at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143920,10,'S54.22XS ','Injury of radial nerve at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(143918,10,'S54.22XA ','Injury of radial nerve at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(143917,10,'S54.21XS ','Injury of radial nerve at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(143916,10,'S54.21XD ','Injury of radial nerve at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143914,10,'S54.20XS ','Injury of radial nerve at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(143915,10,'S54.21XA ','Injury of radial nerve at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(143913,10,'S54.20XD ','Injury of radial nerve at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143912,10,'S54.20XA ','Injury of radial nerve at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(143911,10,'S54.12XS ','Injury of median nerve at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(143909,10,'S54.12XA ','Injury of median nerve at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(143910,10,'S54.12XD ','Injury of median nerve at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143908,10,'S54.11XS ','Injury of median nerve at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(143907,10,'S54.11XD ','Injury of median nerve at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143906,10,'S54.11XA ','Injury of median nerve at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(143905,10,'S54.10XS ','Injury of median nerve at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(143904,10,'S54.10XD ','Injury of median nerve at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143902,10,'S54.02XS ','Injury of ulnar nerve at forearm level, left arm, sequela','Y','0000-00-00 00:00:00'),(143903,10,'S54.10XA ','Injury of median nerve at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(143901,10,'S54.02XD ','Injury of ulnar nerve at forearm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143900,10,'S54.02XA ','Injury of ulnar nerve at forearm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(143899,10,'S54.01XS ','Injury of ulnar nerve at forearm level, right arm, sequela','Y','0000-00-00 00:00:00'),(143898,10,'S54.01XD ','Injury of ulnar nerve at forearm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143897,10,'S54.01XA ','Injury of ulnar nerve at forearm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(143896,10,'S54.00XS ','Injury of ulnar nerve at forearm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(143895,10,'S54.00XD ','Injury of ulnar nerve at forearm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(143893,10,'S53.499S ','Other sprain of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(143894,10,'S54.00XA ','Injury of ulnar nerve at forearm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(143892,10,'S53.499D ','Other sprain of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143890,10,'S53.492S ','Other sprain of left elbow, sequela','Y','0000-00-00 00:00:00'),(143891,10,'S53.499A ','Other sprain of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(143889,10,'S53.492D ','Other sprain of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143887,10,'S53.491S ','Other sprain of right elbow, sequela','Y','0000-00-00 00:00:00'),(143888,10,'S53.492A ','Other sprain of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(143886,10,'S53.491D ','Other sprain of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143884,10,'S53.449S ','Ulnar collateral ligament sprain of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(143885,10,'S53.491A ','Other sprain of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(143883,10,'S53.449D ','Ulnar collateral ligament sprain of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143882,10,'S53.449A ','Ulnar collateral ligament sprain of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(143881,10,'S53.442S ','Ulnar collateral ligament sprain of left elbow, sequela','Y','0000-00-00 00:00:00'),(143880,10,'S53.442D ','Ulnar collateral ligament sprain of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143879,10,'S53.442A ','Ulnar collateral ligament sprain of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(143878,10,'S53.441S ','Ulnar collateral ligament sprain of right elbow, sequela','Y','0000-00-00 00:00:00'),(143877,10,'S53.441D ','Ulnar collateral ligament sprain of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143876,10,'S53.441A ','Ulnar collateral ligament sprain of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(143874,10,'S53.439D ','Radial collateral ligament sprain of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143875,10,'S53.439S ','Radial collateral ligament sprain of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(143873,10,'S53.439A ','Radial collateral ligament sprain of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(143872,10,'S53.432S ','Radial collateral ligament sprain of left elbow, sequela','Y','0000-00-00 00:00:00'),(143870,10,'S53.432A ','Radial collateral ligament sprain of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(143871,10,'S53.432D ','Radial collateral ligament sprain of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143869,10,'S53.431S ','Radial collateral ligament sprain of right elbow, sequela','Y','0000-00-00 00:00:00'),(143868,10,'S53.431D ','Radial collateral ligament sprain of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143867,10,'S53.431A ','Radial collateral ligament sprain of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(143865,10,'S53.429D ','Ulnohumeral (joint) sprain of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143866,10,'S53.429S ','Ulnohumeral (joint) sprain of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(143864,10,'S53.429A ','Ulnohumeral (joint) sprain of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(143863,10,'S53.422S ','Ulnohumeral (joint) sprain of left elbow, sequela','Y','0000-00-00 00:00:00'),(143862,10,'S53.422D ','Ulnohumeral (joint) sprain of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143861,10,'S53.422A ','Ulnohumeral (joint) sprain of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(143860,10,'S53.421S ','Ulnohumeral (joint) sprain of right elbow, sequela','Y','0000-00-00 00:00:00'),(143859,10,'S53.421D ','Ulnohumeral (joint) sprain of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143857,10,'S53.419S ','Radiohumeral (joint) sprain of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(143858,10,'S53.421A ','Ulnohumeral (joint) sprain of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(143856,10,'S53.419D ','Radiohumeral (joint) sprain of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143855,10,'S53.419A ','Radiohumeral (joint) sprain of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(143853,10,'S53.412D ','Radiohumeral (joint) sprain of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143854,10,'S53.412S ','Radiohumeral (joint) sprain of left elbow, sequela','Y','0000-00-00 00:00:00'),(143852,10,'S53.412A ','Radiohumeral (joint) sprain of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(143850,10,'S53.411D ','Radiohumeral (joint) sprain of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143851,10,'S53.411S ','Radiohumeral (joint) sprain of right elbow, sequela','Y','0000-00-00 00:00:00'),(143849,10,'S53.411A ','Radiohumeral (joint) sprain of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(143848,10,'S53.409S ','Unspecified sprain of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(143846,10,'S53.409A ','Unspecified sprain of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(143847,10,'S53.409D ','Unspecified sprain of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143845,10,'S53.402S ','Unspecified sprain of left elbow, sequela','Y','0000-00-00 00:00:00'),(143843,10,'S53.402A ','Unspecified sprain of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(143844,10,'S53.402D ','Unspecified sprain of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143842,10,'S53.401S ','Unspecified sprain of right elbow, sequela','Y','0000-00-00 00:00:00'),(143840,10,'S53.401A ','Unspecified sprain of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(143841,10,'S53.401D ','Unspecified sprain of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143839,10,'S53.32XS ','Traumatic rupture of left ulnar collateral ligament, sequela','Y','0000-00-00 00:00:00'),(143838,10,'S53.32XD ','Traumatic rupture of left ulnar collateral ligament, subsequent encounter','Y','0000-00-00 00:00:00'),(143837,10,'S53.32XA ','Traumatic rupture of left ulnar collateral ligament, initial encounter','Y','0000-00-00 00:00:00'),(143836,10,'S53.31XS ','Traumatic rupture of right ulnar collateral ligament, sequela','Y','0000-00-00 00:00:00'),(143835,10,'S53.31XD ','Traumatic rupture of right ulnar collateral ligament, subsequent encounter','Y','0000-00-00 00:00:00'),(143834,10,'S53.31XA ','Traumatic rupture of right ulnar collateral ligament, initial encounter','Y','0000-00-00 00:00:00'),(143833,10,'S53.30XS ','Traumatic rupture of unspecified ulnar collateral ligament, sequela','Y','0000-00-00 00:00:00'),(143832,10,'S53.30XD ','Traumatic rupture of unspecified ulnar collateral ligament, subsequent encounter','Y','0000-00-00 00:00:00'),(143831,10,'S53.30XA ','Traumatic rupture of unspecified ulnar collateral ligament, initial encounter','Y','0000-00-00 00:00:00'),(143830,10,'S53.22XS ','Traumatic rupture of left radial collateral ligament, sequela','Y','0000-00-00 00:00:00'),(143829,10,'S53.22XD ','Traumatic rupture of left radial collateral ligament, subsequent encounter','Y','0000-00-00 00:00:00'),(143828,10,'S53.22XA ','Traumatic rupture of left radial collateral ligament, initial encounter','Y','0000-00-00 00:00:00'),(143827,10,'S53.21XS ','Traumatic rupture of right radial collateral ligament, sequela','Y','0000-00-00 00:00:00'),(143826,10,'S53.21XD ','Traumatic rupture of right radial collateral ligament, subsequent encounter','Y','0000-00-00 00:00:00'),(143825,10,'S53.21XA ','Traumatic rupture of right radial collateral ligament, initial encounter','Y','0000-00-00 00:00:00'),(143824,10,'S53.20XS ','Traumatic rupture of unspecified radial collateral ligament, sequela','Y','0000-00-00 00:00:00'),(143823,10,'S53.20XD ','Traumatic rupture of unspecified radial collateral ligament, subsequent encounter','Y','0000-00-00 00:00:00'),(143822,10,'S53.20XA ','Traumatic rupture of unspecified radial collateral ligament, initial encounter','Y','0000-00-00 00:00:00'),(143821,10,'S53.196S ','Other dislocation of unspecified ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143820,10,'S53.196D ','Other dislocation of unspecified ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143819,10,'S53.196A ','Other dislocation of unspecified ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143818,10,'S53.195S ','Other dislocation of left ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143816,10,'S53.195A ','Other dislocation of left ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143817,10,'S53.195D ','Other dislocation of left ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143815,10,'S53.194S ','Other dislocation of right ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143814,10,'S53.194D ','Other dislocation of right ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143812,10,'S53.193S ','Other subluxation of unspecified ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143813,10,'S53.194A ','Other dislocation of right ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143811,10,'S53.193D ','Other subluxation of unspecified ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143810,10,'S53.193A ','Other subluxation of unspecified ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143809,10,'S53.192S ','Other subluxation of left ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143808,10,'S53.192D ','Other subluxation of left ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143807,10,'S53.192A ','Other subluxation of left ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143805,10,'S53.191D ','Other subluxation of right ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143806,10,'S53.191S ','Other subluxation of right ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143804,10,'S53.191A ','Other subluxation of right ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143803,10,'S53.146S ','Lateral dislocation of unspecified ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143802,10,'S53.146D ','Lateral dislocation of unspecified ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143801,10,'S53.146A ','Lateral dislocation of unspecified ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143799,10,'S53.145D ','Lateral dislocation of left ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143800,10,'S53.145S ','Lateral dislocation of left ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143798,10,'S53.145A ','Lateral dislocation of left ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143797,10,'S53.144S ','Lateral dislocation of right ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143796,10,'S53.144D ','Lateral dislocation of right ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143794,10,'S53.143S ','Lateral subluxation of unspecified ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143795,10,'S53.144A ','Lateral dislocation of right ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143793,10,'S53.143D ','Lateral subluxation of unspecified ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143792,10,'S53.143A ','Lateral subluxation of unspecified ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143791,10,'S53.142S ','Lateral subluxation of left ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143790,10,'S53.142D ','Lateral subluxation of left ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143789,10,'S53.142A ','Lateral subluxation of left ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143787,10,'S53.141D ','Lateral subluxation of right ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143788,10,'S53.141S ','Lateral subluxation of right ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143786,10,'S53.141A ','Lateral subluxation of right ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143785,10,'S53.136S ','Medial dislocation of unspecified ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143784,10,'S53.136D ','Medial dislocation of unspecified ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143782,10,'S53.135S ','Medial dislocation of left ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143783,10,'S53.136A ','Medial dislocation of unspecified ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143781,10,'S53.135D ','Medial dislocation of left ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143779,10,'S53.134S ','Medial dislocation of right ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143780,10,'S53.135A ','Medial dislocation of left ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143778,10,'S53.134D ','Medial dislocation of right ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143777,10,'S53.134A ','Medial dislocation of right ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143776,10,'S53.133S ','Medial subluxation of unspecified ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143775,10,'S53.133D ','Medial subluxation of unspecified ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143773,10,'S53.132S ','Medial subluxation of left ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143774,10,'S53.133A ','Medial subluxation of unspecified ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143772,10,'S53.132D ','Medial subluxation of left ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143771,10,'S53.132A ','Medial subluxation of left ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143770,10,'S53.131S ','Medial subluxation of right ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143768,10,'S53.131A ','Medial subluxation of right ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143769,10,'S53.131D ','Medial subluxation of right ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143767,10,'S53.126S ','Posterior dislocation of unspecified ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143766,10,'S53.126D ','Posterior dislocation of unspecified ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143765,10,'S53.126A ','Posterior dislocation of unspecified ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143764,10,'S53.125S ','Posterior dislocation of left ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143762,10,'S53.125A ','Posterior dislocation of left ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143763,10,'S53.125D ','Posterior dislocation of left ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143761,10,'S53.124S ','Posterior dislocation of right ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143760,10,'S53.124D ','Posterior dislocation of right ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143759,10,'S53.124A ','Posterior dislocation of right ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143757,10,'S53.123D ','Posterior subluxation of unspecified ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143758,10,'S53.123S ','Posterior subluxation of unspecified ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143756,10,'S53.123A ','Posterior subluxation of unspecified ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143755,10,'S53.122S ','Posterior subluxation of left ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143754,10,'S53.122D ','Posterior subluxation of left ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143753,10,'S53.122A ','Posterior subluxation of left ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143752,10,'S53.121S ','Posterior subluxation of right ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143750,10,'S53.121A ','Posterior subluxation of right ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143751,10,'S53.121D ','Posterior subluxation of right ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143749,10,'S53.116S ','Anterior dislocation of unspecified ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143748,10,'S53.116D ','Anterior dislocation of unspecified ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143747,10,'S53.116A ','Anterior dislocation of unspecified ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143746,10,'S53.115S ','Anterior dislocation of left ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143744,10,'S53.115A ','Anterior dislocation of left ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143745,10,'S53.115D ','Anterior dislocation of left ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143743,10,'S53.114S ','Anterior dislocation of right ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143742,10,'S53.114D ','Anterior dislocation of right ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143741,10,'S53.114A ','Anterior dislocation of right ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143739,10,'S53.113D ','Anterior subluxation of unspecified ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143740,10,'S53.113S ','Anterior subluxation of unspecified ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143738,10,'S53.113A ','Anterior subluxation of unspecified ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143737,10,'S53.112S ','Anterior subluxation of left ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143736,10,'S53.112D ','Anterior subluxation of left ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143735,10,'S53.112A ','Anterior subluxation of left ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143734,10,'S53.111S ','Anterior subluxation of right ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143732,10,'S53.111A ','Anterior subluxation of right ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143733,10,'S53.111D ','Anterior subluxation of right ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143731,10,'S53.106S ','Unspecified dislocation of unspecified ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143730,10,'S53.106D ','Unspecified dislocation of unspecified ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143729,10,'S53.106A ','Unspecified dislocation of unspecified ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143728,10,'S53.105S ','Unspecified dislocation of left ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143726,10,'S53.105A ','Unspecified dislocation of left ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143727,10,'S53.105D ','Unspecified dislocation of left ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143725,10,'S53.104S ','Unspecified dislocation of right ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143724,10,'S53.104D ','Unspecified dislocation of right ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143722,10,'S53.103S ','Unspecified subluxation of unspecified ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143723,10,'S53.104A ','Unspecified dislocation of right ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143721,10,'S53.103D ','Unspecified subluxation of unspecified ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143720,10,'S53.103A ','Unspecified subluxation of unspecified ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143719,10,'S53.102S ','Unspecified subluxation of left ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143717,10,'S53.102A ','Unspecified subluxation of left ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143718,10,'S53.102D ','Unspecified subluxation of left ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143716,10,'S53.101S ','Unspecified subluxation of right ulnohumeral joint, sequela','Y','0000-00-00 00:00:00'),(143715,10,'S53.101D ','Unspecified subluxation of right ulnohumeral joint, subsequent encounter','Y','0000-00-00 00:00:00'),(143713,10,'S53.096S ','Other dislocation of unspecified radial head, sequela','Y','0000-00-00 00:00:00'),(143714,10,'S53.101A ','Unspecified subluxation of right ulnohumeral joint, initial encounter','Y','0000-00-00 00:00:00'),(143712,10,'S53.096D ','Other dislocation of unspecified radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143711,10,'S53.096A ','Other dislocation of unspecified radial head, initial encounter','Y','0000-00-00 00:00:00'),(143710,10,'S53.095S ','Other dislocation of left radial head, sequela','Y','0000-00-00 00:00:00'),(143708,10,'S53.095A ','Other dislocation of left radial head, initial encounter','Y','0000-00-00 00:00:00'),(143709,10,'S53.095D ','Other dislocation of left radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143707,10,'S53.094S ','Other dislocation of right radial head, sequela','Y','0000-00-00 00:00:00'),(143705,10,'S53.094A ','Other dislocation of right radial head, initial encounter','Y','0000-00-00 00:00:00'),(143706,10,'S53.094D ','Other dislocation of right radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143704,10,'S53.093S ','Other subluxation of unspecified radial head, sequela','Y','0000-00-00 00:00:00'),(143703,10,'S53.093D ','Other subluxation of unspecified radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143701,10,'S53.092S ','Other subluxation of left radial head, sequela','Y','0000-00-00 00:00:00'),(143702,10,'S53.093A ','Other subluxation of unspecified radial head, initial encounter','Y','0000-00-00 00:00:00'),(143700,10,'S53.092D ','Other subluxation of left radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143699,10,'S53.092A ','Other subluxation of left radial head, initial encounter','Y','0000-00-00 00:00:00'),(143697,10,'S53.091D ','Other subluxation of right radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143698,10,'S53.091S ','Other subluxation of right radial head, sequela','Y','0000-00-00 00:00:00'),(143696,10,'S53.091A ','Other subluxation of right radial head, initial encounter','Y','0000-00-00 00:00:00'),(143695,10,'S53.033S ','Nursemaid\'s elbow, unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(143694,10,'S53.033D ','Nursemaid\'s elbow, unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143693,10,'S53.033A ','Nursemaid\'s elbow, unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(143692,10,'S53.032S ','Nursemaid\'s elbow, left elbow, sequela','Y','0000-00-00 00:00:00'),(143691,10,'S53.032D ','Nursemaid\'s elbow, left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143689,10,'S53.031S ','Nursemaid\'s elbow, right elbow, sequela','Y','0000-00-00 00:00:00'),(143690,10,'S53.032A ','Nursemaid\'s elbow, left elbow, initial encounter','Y','0000-00-00 00:00:00'),(143688,10,'S53.031D ','Nursemaid\'s elbow, right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(143687,10,'S53.031A ','Nursemaid\'s elbow, right elbow, initial encounter','Y','0000-00-00 00:00:00'),(143685,10,'S53.026D ','Posterior dislocation of unspecified radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143686,10,'S53.026S ','Posterior dislocation of unspecified radial head, sequela','Y','0000-00-00 00:00:00'),(143684,10,'S53.026A ','Posterior dislocation of unspecified radial head, initial encounter','Y','0000-00-00 00:00:00'),(143683,10,'S53.025S ','Posterior dislocation of left radial head, sequela','Y','0000-00-00 00:00:00'),(143681,10,'S53.025A ','Posterior dislocation of left radial head, initial encounter','Y','0000-00-00 00:00:00'),(143682,10,'S53.025D ','Posterior dislocation of left radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143680,10,'S53.024S ','Posterior dislocation of right radial head, sequela','Y','0000-00-00 00:00:00'),(143679,10,'S53.024D ','Posterior dislocation of right radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143678,10,'S53.024A ','Posterior dislocation of right radial head, initial encounter','Y','0000-00-00 00:00:00'),(143677,10,'S53.023S ','Posterior subluxation of unspecified radial head, sequela','Y','0000-00-00 00:00:00'),(143676,10,'S53.023D ','Posterior subluxation of unspecified radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143675,10,'S53.023A ','Posterior subluxation of unspecified radial head, initial encounter','Y','0000-00-00 00:00:00'),(143674,10,'S53.022S ','Posterior subluxation of left radial head, sequela','Y','0000-00-00 00:00:00'),(143673,10,'S53.022D ','Posterior subluxation of left radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143672,10,'S53.022A ','Posterior subluxation of left radial head, initial encounter','Y','0000-00-00 00:00:00'),(143671,10,'S53.021S ','Posterior subluxation of right radial head, sequela','Y','0000-00-00 00:00:00'),(143669,10,'S53.021A ','Posterior subluxation of right radial head, initial encounter','Y','0000-00-00 00:00:00'),(143670,10,'S53.021D ','Posterior subluxation of right radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143668,10,'S53.016S ','Anterior dislocation of unspecified radial head, sequela','Y','0000-00-00 00:00:00'),(143667,10,'S53.016D ','Anterior dislocation of unspecified radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143665,10,'S53.015S ','Anterior dislocation of left radial head, sequela','Y','0000-00-00 00:00:00'),(143666,10,'S53.016A ','Anterior dislocation of unspecified radial head, initial encounter','Y','0000-00-00 00:00:00'),(143664,10,'S53.015D ','Anterior dislocation of left radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143662,10,'S53.014S ','Anterior dislocation of right radial head, sequela','Y','0000-00-00 00:00:00'),(143663,10,'S53.015A ','Anterior dislocation of left radial head, initial encounter','Y','0000-00-00 00:00:00'),(143661,10,'S53.014D ','Anterior dislocation of right radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143660,10,'S53.014A ','Anterior dislocation of right radial head, initial encounter','Y','0000-00-00 00:00:00'),(143658,10,'S53.013D ','Anterior subluxation of unspecified radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143659,10,'S53.013S ','Anterior subluxation of unspecified radial head, sequela','Y','0000-00-00 00:00:00'),(143657,10,'S53.013A ','Anterior subluxation of unspecified radial head, initial encounter','Y','0000-00-00 00:00:00'),(143656,10,'S53.012S ','Anterior subluxation of left radial head, sequela','Y','0000-00-00 00:00:00'),(143654,10,'S53.012A ','Anterior subluxation of left radial head, initial encounter','Y','0000-00-00 00:00:00'),(143655,10,'S53.012D ','Anterior subluxation of left radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143653,10,'S53.011S ','Anterior subluxation of right radial head, sequela','Y','0000-00-00 00:00:00'),(143652,10,'S53.011D ','Anterior subluxation of right radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143651,10,'S53.011A ','Anterior subluxation of right radial head, initial encounter','Y','0000-00-00 00:00:00'),(143650,10,'S53.006S ','Unspecified dislocation of unspecified radial head, sequela','Y','0000-00-00 00:00:00'),(143649,10,'S53.006D ','Unspecified dislocation of unspecified radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143648,10,'S53.006A ','Unspecified dislocation of unspecified radial head, initial encounter','Y','0000-00-00 00:00:00'),(143646,10,'S53.005D ','Unspecified dislocation of left radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143647,10,'S53.005S ','Unspecified dislocation of left radial head, sequela','Y','0000-00-00 00:00:00'),(143645,10,'S53.005A ','Unspecified dislocation of left radial head, initial encounter','Y','0000-00-00 00:00:00'),(143644,10,'S53.004S ','Unspecified dislocation of right radial head, sequela','Y','0000-00-00 00:00:00'),(143642,10,'S53.004A ','Unspecified dislocation of right radial head, initial encounter','Y','0000-00-00 00:00:00'),(143643,10,'S53.004D ','Unspecified dislocation of right radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143641,10,'S53.003S ','Unspecified subluxation of unspecified radial head, sequela','Y','0000-00-00 00:00:00'),(143640,10,'S53.003D ','Unspecified subluxation of unspecified radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143639,10,'S53.003A ','Unspecified subluxation of unspecified radial head, initial encounter','Y','0000-00-00 00:00:00'),(143638,10,'S53.002S ','Unspecified subluxation of left radial head, sequela','Y','0000-00-00 00:00:00'),(143636,10,'S53.002A ','Unspecified subluxation of left radial head, initial encounter','Y','0000-00-00 00:00:00'),(143637,10,'S53.002D ','Unspecified subluxation of left radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143635,10,'S53.001S ','Unspecified subluxation of right radial head, sequela','Y','0000-00-00 00:00:00'),(143634,10,'S53.001D ','Unspecified subluxation of right radial head, subsequent encounter','Y','0000-00-00 00:00:00'),(143632,10,'S52.92XS ','Unspecified fracture of left forearm, sequela','Y','0000-00-00 00:00:00'),(143633,10,'S53.001A ','Unspecified subluxation of right radial head, initial encounter','Y','0000-00-00 00:00:00'),(143631,10,'S52.92XR ','Unspecified fracture of left forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143630,10,'S52.92XQ ','Unspecified fracture of left forearm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143629,10,'S52.92XP ','Unspecified fracture of left forearm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143628,10,'S52.92XN ','Unspecified fracture of left forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143627,10,'S52.92XM ','Unspecified fracture of left forearm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143626,10,'S52.92XK ','Unspecified fracture of left forearm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143625,10,'S52.92XJ ','Unspecified fracture of left forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143624,10,'S52.92XH ','Unspecified fracture of left forearm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143623,10,'S52.92XG ','Unspecified fracture of left forearm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143622,10,'S52.92XF ','Unspecified fracture of left forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143621,10,'S52.92XE ','Unspecified fracture of left forearm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143620,10,'S52.92XD ','Unspecified fracture of left forearm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143619,10,'S52.92XC ','Unspecified fracture of left forearm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143618,10,'S52.92XB ','Unspecified fracture of left forearm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143617,10,'S52.92XA ','Unspecified fracture of left forearm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143616,10,'S52.91XS ','Unspecified fracture of right forearm, sequela','Y','0000-00-00 00:00:00'),(143615,10,'S52.91XR ','Unspecified fracture of right forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143614,10,'S52.91XQ ','Unspecified fracture of right forearm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143613,10,'S52.91XP ','Unspecified fracture of right forearm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143612,10,'S52.91XN ','Unspecified fracture of right forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143611,10,'S52.91XM ','Unspecified fracture of right forearm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143610,10,'S52.91XK ','Unspecified fracture of right forearm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143609,10,'S52.91XJ ','Unspecified fracture of right forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143608,10,'S52.91XH ','Unspecified fracture of right forearm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143607,10,'S52.91XG ','Unspecified fracture of right forearm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143606,10,'S52.91XF ','Unspecified fracture of right forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143605,10,'S52.91XE ','Unspecified fracture of right forearm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143604,10,'S52.91XD ','Unspecified fracture of right forearm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143603,10,'S52.91XC ','Unspecified fracture of right forearm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143602,10,'S52.91XB ','Unspecified fracture of right forearm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143601,10,'S52.91XA ','Unspecified fracture of right forearm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143600,10,'S52.90XS ','Unspecified fracture of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(143599,10,'S52.90XR ','Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143598,10,'S52.90XQ ','Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143597,10,'S52.90XP ','Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143596,10,'S52.90XN ','Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143595,10,'S52.90XM ','Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143594,10,'S52.90XK ','Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143593,10,'S52.90XJ ','Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143592,10,'S52.90XH ','Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143591,10,'S52.90XG ','Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143590,10,'S52.90XF ','Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143589,10,'S52.90XE ','Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143588,10,'S52.90XD ','Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143587,10,'S52.90XC ','Unspecified fracture of unspecified forearm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143586,10,'S52.90XB ','Unspecified fracture of unspecified forearm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143584,10,'S52.699S ','Other fracture of lower end of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(143585,10,'S52.90XA ','Unspecified fracture of unspecified forearm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143583,10,'S52.699R ','Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143582,10,'S52.699Q ','Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143581,10,'S52.699P ','Other fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143580,10,'S52.699N ','Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143579,10,'S52.699M ','Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143578,10,'S52.699K ','Other fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143577,10,'S52.699J ','Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143576,10,'S52.699H ','Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143575,10,'S52.699G ','Other fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143574,10,'S52.699F ','Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143573,10,'S52.699E ','Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143572,10,'S52.699D ','Other fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143571,10,'S52.699C ','Other fracture of lower end of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143570,10,'S52.699B ','Other fracture of lower end of unspecified ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143569,10,'S52.699A ','Other fracture of lower end of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143568,10,'S52.692S ','Other fracture of lower end of left ulna, sequela','Y','0000-00-00 00:00:00'),(143567,10,'S52.692R ','Other fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143566,10,'S52.692Q ','Other fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143565,10,'S52.692P ','Other fracture of lower end of left ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143564,10,'S52.692N ','Other fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143563,10,'S52.692M ','Other fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143562,10,'S52.692K ','Other fracture of lower end of left ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143561,10,'S52.692J ','Other fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143560,10,'S52.692H ','Other fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143559,10,'S52.692G ','Other fracture of lower end of left ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143558,10,'S52.692F ','Other fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143557,10,'S52.692E ','Other fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143556,10,'S52.692D ','Other fracture of lower end of left ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143555,10,'S52.692C ','Other fracture of lower end of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143554,10,'S52.692B ','Other fracture of lower end of left ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143553,10,'S52.692A ','Other fracture of lower end of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143552,10,'S52.691S ','Other fracture of lower end of right ulna, sequela','Y','0000-00-00 00:00:00'),(143551,10,'S52.691R ','Other fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143550,10,'S52.691Q ','Other fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143549,10,'S52.691P ','Other fracture of lower end of right ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143548,10,'S52.691N ','Other fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143547,10,'S52.691M ','Other fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143546,10,'S52.691K ','Other fracture of lower end of right ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143545,10,'S52.691J ','Other fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143544,10,'S52.691H ','Other fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143543,10,'S52.691G ','Other fracture of lower end of right ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143542,10,'S52.691F ','Other fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143541,10,'S52.691E ','Other fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143540,10,'S52.691D ','Other fracture of lower end of right ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143539,10,'S52.691C ','Other fracture of lower end of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143538,10,'S52.691B ','Other fracture of lower end of right ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143536,10,'S52.629S ','Torus fracture of lower end of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(143537,10,'S52.691A ','Other fracture of lower end of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143535,10,'S52.629P ','Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(143534,10,'S52.629K ','Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(143533,10,'S52.629G ','Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(143532,10,'S52.629D ','Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(143531,10,'S52.629A ','Torus fracture of lower end of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143530,10,'S52.622S ','Torus fracture of lower end of left ulna, sequela','Y','0000-00-00 00:00:00'),(143529,10,'S52.622P ','Torus fracture of lower end of left ulna, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(143528,10,'S52.622K ','Torus fracture of lower end of left ulna, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(143527,10,'S52.622G ','Torus fracture of lower end of left ulna, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(143526,10,'S52.622D ','Torus fracture of lower end of left ulna, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(143525,10,'S52.622A ','Torus fracture of lower end of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143524,10,'S52.621S ','Torus fracture of lower end of right ulna, sequela','Y','0000-00-00 00:00:00'),(143523,10,'S52.621P ','Torus fracture of lower end of right ulna, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(143522,10,'S52.621K ','Torus fracture of lower end of right ulna, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(143521,10,'S52.621G ','Torus fracture of lower end of right ulna, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(143520,10,'S52.621D ','Torus fracture of lower end of right ulna, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(143519,10,'S52.621A ','Torus fracture of lower end of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143518,10,'S52.616S ','Nondisplaced fracture of unspecified ulna styloid process, sequela','Y','0000-00-00 00:00:00'),(143517,10,'S52.616R ','Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143516,10,'S52.616Q ','Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143515,10,'S52.616P ','Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143514,10,'S52.616N ','Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143513,10,'S52.616M ','Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143512,10,'S52.616K ','Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143511,10,'S52.616J ','Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143510,10,'S52.616H ','Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143509,10,'S52.616G ','Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143508,10,'S52.616F ','Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143507,10,'S52.616E ','Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143506,10,'S52.616D ','Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143505,10,'S52.616C ','Nondisplaced fracture of unspecified ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143504,10,'S52.616B ','Nondisplaced fracture of unspecified ulna styloid process, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143503,10,'S52.616A ','Nondisplaced fracture of unspecified ulna styloid process, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143502,10,'S52.615S ','Nondisplaced fracture of left ulna styloid process, sequela','Y','0000-00-00 00:00:00'),(143501,10,'S52.615R ','Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143500,10,'S52.615Q ','Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143499,10,'S52.615P ','Nondisplaced fracture of left ulna styloid process, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143498,10,'S52.615N ','Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143497,10,'S52.615M ','Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143496,10,'S52.615K ','Nondisplaced fracture of left ulna styloid process, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143495,10,'S52.615J ','Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143494,10,'S52.615H ','Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143493,10,'S52.615G ','Nondisplaced fracture of left ulna styloid process, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143492,10,'S52.615F ','Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143491,10,'S52.615E ','Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143490,10,'S52.615D ','Nondisplaced fracture of left ulna styloid process, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143489,10,'S52.615C ','Nondisplaced fracture of left ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143488,10,'S52.615B ','Nondisplaced fracture of left ulna styloid process, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143487,10,'S52.615A ','Nondisplaced fracture of left ulna styloid process, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143486,10,'S52.614S ','Nondisplaced fracture of right ulna styloid process, sequela','Y','0000-00-00 00:00:00'),(143485,10,'S52.614R ','Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143484,10,'S52.614Q ','Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143483,10,'S52.614P ','Nondisplaced fracture of right ulna styloid process, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143482,10,'S52.614N ','Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143481,10,'S52.614M ','Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143480,10,'S52.614K ','Nondisplaced fracture of right ulna styloid process, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143479,10,'S52.614J ','Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143478,10,'S52.614H ','Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143477,10,'S52.614G ','Nondisplaced fracture of right ulna styloid process, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143476,10,'S52.614F ','Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143475,10,'S52.614E ','Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143474,10,'S52.614D ','Nondisplaced fracture of right ulna styloid process, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143473,10,'S52.614C ','Nondisplaced fracture of right ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143472,10,'S52.614B ','Nondisplaced fracture of right ulna styloid process, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143471,10,'S52.614A ','Nondisplaced fracture of right ulna styloid process, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143470,10,'S52.613S ','Displaced fracture of unspecified ulna styloid process, sequela','Y','0000-00-00 00:00:00'),(143469,10,'S52.613R ','Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143468,10,'S52.613Q ','Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143467,10,'S52.613P ','Displaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143466,10,'S52.613N ','Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143465,10,'S52.613M ','Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143464,10,'S52.613K ','Displaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143463,10,'S52.613J ','Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143462,10,'S52.613H ','Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143461,10,'S52.613G ','Displaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143460,10,'S52.613F ','Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143459,10,'S52.613E ','Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143458,10,'S52.613D ','Displaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143457,10,'S52.613C ','Displaced fracture of unspecified ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143456,10,'S52.613B ','Displaced fracture of unspecified ulna styloid process, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143454,10,'S52.612S ','Displaced fracture of left ulna styloid process, sequela','Y','0000-00-00 00:00:00'),(143455,10,'S52.613A ','Displaced fracture of unspecified ulna styloid process, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143453,10,'S52.612R ','Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143452,10,'S52.612Q ','Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143451,10,'S52.612P ','Displaced fracture of left ulna styloid process, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143450,10,'S52.612N ','Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143449,10,'S52.612M ','Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143448,10,'S52.612K ','Displaced fracture of left ulna styloid process, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143447,10,'S52.612J ','Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143446,10,'S52.612H ','Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143445,10,'S52.612G ','Displaced fracture of left ulna styloid process, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143444,10,'S52.612F ','Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143443,10,'S52.612E ','Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143442,10,'S52.612D ','Displaced fracture of left ulna styloid process, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143441,10,'S52.612C ','Displaced fracture of left ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143440,10,'S52.612B ','Displaced fracture of left ulna styloid process, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143438,10,'S52.611S ','Displaced fracture of right ulna styloid process, sequela','Y','0000-00-00 00:00:00'),(143439,10,'S52.612A ','Displaced fracture of left ulna styloid process, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143437,10,'S52.611R ','Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143436,10,'S52.611Q ','Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143435,10,'S52.611P ','Displaced fracture of right ulna styloid process, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143434,10,'S52.611N ','Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143433,10,'S52.611M ','Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143432,10,'S52.611K ','Displaced fracture of right ulna styloid process, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143431,10,'S52.611J ','Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143430,10,'S52.611H ','Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143429,10,'S52.611G ','Displaced fracture of right ulna styloid process, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143428,10,'S52.611F ','Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143427,10,'S52.611E ','Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143426,10,'S52.611D ','Displaced fracture of right ulna styloid process, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143425,10,'S52.611C ','Displaced fracture of right ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143423,10,'S52.611A ','Displaced fracture of right ulna styloid process, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143424,10,'S52.611B ','Displaced fracture of right ulna styloid process, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143422,10,'S52.609S ','Unspecified fracture of lower end of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(143421,10,'S52.609R ','Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143420,10,'S52.609Q ','Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143419,10,'S52.609P ','Unspecified fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143418,10,'S52.609N ','Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143417,10,'S52.609M ','Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143416,10,'S52.609K ','Unspecified fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143415,10,'S52.609J ','Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143414,10,'S52.609H ','Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143413,10,'S52.609G ','Unspecified fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143412,10,'S52.609F ','Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143411,10,'S52.609E ','Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143410,10,'S52.609D ','Unspecified fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143409,10,'S52.609C ','Unspecified fracture of lower end of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143408,10,'S52.609B ','Unspecified fracture of lower end of unspecified ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143407,10,'S52.609A ','Unspecified fracture of lower end of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143406,10,'S52.602S ','Unspecified fracture of lower end of left ulna, sequela','Y','0000-00-00 00:00:00'),(143405,10,'S52.602R ','Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143404,10,'S52.602Q ','Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143403,10,'S52.602P ','Unspecified fracture of lower end of left ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143402,10,'S52.602N ','Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143401,10,'S52.602M ','Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143400,10,'S52.602K ','Unspecified fracture of lower end of left ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143399,10,'S52.602J ','Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143398,10,'S52.602H ','Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143397,10,'S52.602G ','Unspecified fracture of lower end of left ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143396,10,'S52.602F ','Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143395,10,'S52.602E ','Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143394,10,'S52.602D ','Unspecified fracture of lower end of left ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143393,10,'S52.602C ','Unspecified fracture of lower end of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143391,10,'S52.602A ','Unspecified fracture of lower end of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143392,10,'S52.602B ','Unspecified fracture of lower end of left ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143390,10,'S52.601S ','Unspecified fracture of lower end of right ulna, sequela','Y','0000-00-00 00:00:00'),(143389,10,'S52.601R ','Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143388,10,'S52.601Q ','Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143387,10,'S52.601P ','Unspecified fracture of lower end of right ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143386,10,'S52.601N ','Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143385,10,'S52.601M ','Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143384,10,'S52.601K ','Unspecified fracture of lower end of right ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143383,10,'S52.601J ','Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143382,10,'S52.601H ','Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143381,10,'S52.601G ','Unspecified fracture of lower end of right ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143380,10,'S52.601F ','Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143379,10,'S52.601E ','Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143378,10,'S52.601D ','Unspecified fracture of lower end of right ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143377,10,'S52.601C ','Unspecified fracture of lower end of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143376,10,'S52.601B ','Unspecified fracture of lower end of right ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143375,10,'S52.601A ','Unspecified fracture of lower end of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143374,10,'S52.599S ','Other fractures of lower end of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(143373,10,'S52.599R ','Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143372,10,'S52.599Q ','Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143371,10,'S52.599P ','Other fractures of lower end of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143370,10,'S52.599N ','Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143369,10,'S52.599M ','Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143368,10,'S52.599K ','Other fractures of lower end of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143367,10,'S52.599J ','Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143366,10,'S52.599H ','Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143365,10,'S52.599G ','Other fractures of lower end of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143364,10,'S52.599F ','Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143363,10,'S52.599E ','Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143362,10,'S52.599D ','Other fractures of lower end of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143361,10,'S52.599C ','Other fractures of lower end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143360,10,'S52.599B ','Other fractures of lower end of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143359,10,'S52.599A ','Other fractures of lower end of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143358,10,'S52.592S ','Other fractures of lower end of left radius, sequela','Y','0000-00-00 00:00:00'),(143357,10,'S52.592R ','Other fractures of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143356,10,'S52.592Q ','Other fractures of lower end of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143355,10,'S52.592P ','Other fractures of lower end of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143354,10,'S52.592N ','Other fractures of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143353,10,'S52.592M ','Other fractures of lower end of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143352,10,'S52.592K ','Other fractures of lower end of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143351,10,'S52.592J ','Other fractures of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143350,10,'S52.592H ','Other fractures of lower end of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143349,10,'S52.592G ','Other fractures of lower end of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143348,10,'S52.592F ','Other fractures of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143347,10,'S52.592E ','Other fractures of lower end of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143346,10,'S52.592D ','Other fractures of lower end of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143345,10,'S52.592C ','Other fractures of lower end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143344,10,'S52.592B ','Other fractures of lower end of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143342,10,'S52.591S ','Other fractures of lower end of right radius, sequela','Y','0000-00-00 00:00:00'),(143343,10,'S52.592A ','Other fractures of lower end of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143341,10,'S52.591R ','Other fractures of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143340,10,'S52.591Q ','Other fractures of lower end of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143339,10,'S52.591P ','Other fractures of lower end of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143338,10,'S52.591N ','Other fractures of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143337,10,'S52.591M ','Other fractures of lower end of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143336,10,'S52.591K ','Other fractures of lower end of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143335,10,'S52.591J ','Other fractures of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143334,10,'S52.591H ','Other fractures of lower end of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143333,10,'S52.591G ','Other fractures of lower end of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143332,10,'S52.591F ','Other fractures of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143331,10,'S52.591E ','Other fractures of lower end of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143330,10,'S52.591D ','Other fractures of lower end of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143329,10,'S52.591C ','Other fractures of lower end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143328,10,'S52.591B ','Other fractures of lower end of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143326,10,'S52.579S ','Other intraarticular fracture of lower end of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(143327,10,'S52.591A ','Other fractures of lower end of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143325,10,'S52.579R ','Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143324,10,'S52.579Q ','Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143323,10,'S52.579P ','Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143322,10,'S52.579N ','Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143321,10,'S52.579M ','Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143320,10,'S52.579K ','Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143319,10,'S52.579J ','Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143318,10,'S52.579H ','Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143317,10,'S52.579G ','Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143316,10,'S52.579F ','Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143315,10,'S52.579E ','Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143314,10,'S52.579D ','Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143313,10,'S52.579C ','Other intraarticular fracture of lower end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143312,10,'S52.579B ','Other intraarticular fracture of lower end of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143310,10,'S52.572S ','Other intraarticular fracture of lower end of left radius, sequela','Y','0000-00-00 00:00:00'),(143311,10,'S52.579A ','Other intraarticular fracture of lower end of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143309,10,'S52.572R ','Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143308,10,'S52.572Q ','Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143307,10,'S52.572P ','Other intraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143306,10,'S52.572N ','Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143305,10,'S52.572M ','Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143304,10,'S52.572K ','Other intraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143303,10,'S52.572J ','Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143302,10,'S52.572H ','Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143301,10,'S52.572G ','Other intraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143300,10,'S52.572F ','Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143299,10,'S52.572E ','Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143298,10,'S52.572D ','Other intraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143297,10,'S52.572C ','Other intraarticular fracture of lower end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143296,10,'S52.572B ','Other intraarticular fracture of lower end of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143295,10,'S52.572A ','Other intraarticular fracture of lower end of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143294,10,'S52.571S ','Other intraarticular fracture of lower end of right radius, sequela','Y','0000-00-00 00:00:00'),(143293,10,'S52.571R ','Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143292,10,'S52.571Q ','Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143291,10,'S52.571P ','Other intraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143290,10,'S52.571N ','Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143289,10,'S52.571M ','Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143288,10,'S52.571K ','Other intraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143287,10,'S52.571J ','Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143286,10,'S52.571H ','Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143285,10,'S52.571G ','Other intraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143284,10,'S52.571F ','Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143283,10,'S52.571E ','Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143282,10,'S52.571D ','Other intraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143281,10,'S52.571C ','Other intraarticular fracture of lower end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143280,10,'S52.571B ','Other intraarticular fracture of lower end of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143279,10,'S52.571A ','Other intraarticular fracture of lower end of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143278,10,'S52.569S ','Barton\'s fracture of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(143277,10,'S52.569R ','Barton\'s fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143276,10,'S52.569Q ','Barton\'s fracture of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143275,10,'S52.569P ','Barton\'s fracture of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143274,10,'S52.569N ','Barton\'s fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143273,10,'S52.569M ','Barton\'s fracture of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143272,10,'S52.569K ','Barton\'s fracture of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143271,10,'S52.569J ','Barton\'s fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143270,10,'S52.569H ','Barton\'s fracture of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143269,10,'S52.569G ','Barton\'s fracture of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143268,10,'S52.569F ','Barton\'s fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143267,10,'S52.569E ','Barton\'s fracture of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143266,10,'S52.569D ','Barton\'s fracture of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143265,10,'S52.569C ','Barton\'s fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143264,10,'S52.569B ','Barton\'s fracture of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143263,10,'S52.569A ','Barton\'s fracture of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143262,10,'S52.562S ','Barton\'s fracture of left radius, sequela','Y','0000-00-00 00:00:00'),(143261,10,'S52.562R ','Barton\'s fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143260,10,'S52.562Q ','Barton\'s fracture of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143259,10,'S52.562P ','Barton\'s fracture of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143258,10,'S52.562N ','Barton\'s fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143257,10,'S52.562M ','Barton\'s fracture of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143256,10,'S52.562K ','Barton\'s fracture of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143255,10,'S52.562J ','Barton\'s fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143254,10,'S52.562H ','Barton\'s fracture of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143253,10,'S52.562G ','Barton\'s fracture of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143252,10,'S52.562F ','Barton\'s fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143251,10,'S52.562E ','Barton\'s fracture of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143250,10,'S52.562D ','Barton\'s fracture of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143249,10,'S52.562C ','Barton\'s fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143248,10,'S52.562B ','Barton\'s fracture of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143247,10,'S52.562A ','Barton\'s fracture of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143246,10,'S52.561S ','Barton\'s fracture of right radius, sequela','Y','0000-00-00 00:00:00'),(143245,10,'S52.561R ','Barton\'s fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143244,10,'S52.561Q ','Barton\'s fracture of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143243,10,'S52.561P ','Barton\'s fracture of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143242,10,'S52.561N ','Barton\'s fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143241,10,'S52.561M ','Barton\'s fracture of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143240,10,'S52.561K ','Barton\'s fracture of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143239,10,'S52.561J ','Barton\'s fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143238,10,'S52.561H ','Barton\'s fracture of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143237,10,'S52.561G ','Barton\'s fracture of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143236,10,'S52.561F ','Barton\'s fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143235,10,'S52.561E ','Barton\'s fracture of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143234,10,'S52.561D ','Barton\'s fracture of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143232,10,'S52.561B ','Barton\'s fracture of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143233,10,'S52.561C ','Barton\'s fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143231,10,'S52.561A ','Barton\'s fracture of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143230,10,'S52.559S ','Other extraarticular fracture of lower end of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(143229,10,'S52.559R ','Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143228,10,'S52.559Q ','Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143227,10,'S52.559P ','Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143226,10,'S52.559N ','Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143225,10,'S52.559M ','Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143224,10,'S52.559K ','Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143223,10,'S52.559J ','Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143222,10,'S52.559H ','Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143221,10,'S52.559G ','Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143220,10,'S52.559F ','Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143219,10,'S52.559E ','Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143218,10,'S52.559D ','Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143217,10,'S52.559C ','Other extraarticular fracture of lower end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143216,10,'S52.559B ','Other extraarticular fracture of lower end of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143215,10,'S52.559A ','Other extraarticular fracture of lower end of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143214,10,'S52.552S ','Other extraarticular fracture of lower end of left radius, sequela','Y','0000-00-00 00:00:00'),(143213,10,'S52.552R ','Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143212,10,'S52.552Q ','Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143211,10,'S52.552P ','Other extraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143210,10,'S52.552N ','Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143209,10,'S52.552M ','Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143208,10,'S52.552K ','Other extraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143207,10,'S52.552J ','Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143206,10,'S52.552H ','Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143205,10,'S52.552G ','Other extraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143204,10,'S52.552F ','Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143203,10,'S52.552E ','Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143202,10,'S52.552D ','Other extraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143201,10,'S52.552C ','Other extraarticular fracture of lower end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143199,10,'S52.552A ','Other extraarticular fracture of lower end of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143200,10,'S52.552B ','Other extraarticular fracture of lower end of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143198,10,'S52.551S ','Other extraarticular fracture of lower end of right radius, sequela','Y','0000-00-00 00:00:00'),(143197,10,'S52.551R ','Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143196,10,'S52.551Q ','Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143195,10,'S52.551P ','Other extraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143194,10,'S52.551N ','Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143193,10,'S52.551M ','Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143192,10,'S52.551K ','Other extraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143191,10,'S52.551J ','Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143190,10,'S52.551H ','Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143189,10,'S52.551G ','Other extraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143188,10,'S52.551F ','Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143187,10,'S52.551E ','Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143186,10,'S52.551D ','Other extraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143185,10,'S52.551C ','Other extraarticular fracture of lower end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143184,10,'S52.551B ','Other extraarticular fracture of lower end of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143182,10,'S52.549S ','Smith\'s fracture of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(143183,10,'S52.551A ','Other extraarticular fracture of lower end of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143181,10,'S52.549R ','Smith\'s fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143179,10,'S52.549P ','Smith\'s fracture of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143180,10,'S52.549Q ','Smith\'s fracture of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143178,10,'S52.549N ','Smith\'s fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143177,10,'S52.549M ','Smith\'s fracture of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143176,10,'S52.549K ','Smith\'s fracture of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143175,10,'S52.549J ','Smith\'s fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143174,10,'S52.549H ','Smith\'s fracture of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143173,10,'S52.549G ','Smith\'s fracture of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143172,10,'S52.549F ','Smith\'s fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143171,10,'S52.549E ','Smith\'s fracture of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143170,10,'S52.549D ','Smith\'s fracture of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143169,10,'S52.549C ','Smith\'s fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143168,10,'S52.549B ','Smith\'s fracture of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143166,10,'S52.542S ','Smith\'s fracture of left radius, sequela','Y','0000-00-00 00:00:00'),(143167,10,'S52.549A ','Smith\'s fracture of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143165,10,'S52.542R ','Smith\'s fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143163,10,'S52.542P ','Smith\'s fracture of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143164,10,'S52.542Q ','Smith\'s fracture of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143162,10,'S52.542N ','Smith\'s fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143160,10,'S52.542K ','Smith\'s fracture of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143161,10,'S52.542M ','Smith\'s fracture of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143159,10,'S52.542J ','Smith\'s fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143158,10,'S52.542H ','Smith\'s fracture of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143157,10,'S52.542G ','Smith\'s fracture of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143156,10,'S52.542F ','Smith\'s fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143155,10,'S52.542E ','Smith\'s fracture of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143154,10,'S52.542D ','Smith\'s fracture of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143153,10,'S52.542C ','Smith\'s fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143152,10,'S52.542B ','Smith\'s fracture of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143150,10,'S52.541S ','Smith\'s fracture of right radius, sequela','Y','0000-00-00 00:00:00'),(143151,10,'S52.542A ','Smith\'s fracture of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143149,10,'S52.541R ','Smith\'s fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143148,10,'S52.541Q ','Smith\'s fracture of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143147,10,'S52.541P ','Smith\'s fracture of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143146,10,'S52.541N ','Smith\'s fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143145,10,'S52.541M ','Smith\'s fracture of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143144,10,'S52.541K ','Smith\'s fracture of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143143,10,'S52.541J ','Smith\'s fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143142,10,'S52.541H ','Smith\'s fracture of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143141,10,'S52.541G ','Smith\'s fracture of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143140,10,'S52.541F ','Smith\'s fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143138,10,'S52.541D ','Smith\'s fracture of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143139,10,'S52.541E ','Smith\'s fracture of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143137,10,'S52.541C ','Smith\'s fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143136,10,'S52.541B ','Smith\'s fracture of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143134,10,'S52.539S ','Colles\' fracture of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(143135,10,'S52.541A ','Smith\'s fracture of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143133,10,'S52.539R ','Colles\' fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143132,10,'S52.539Q ','Colles\' fracture of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143131,10,'S52.539P ','Colles\' fracture of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143130,10,'S52.539N ','Colles\' fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143129,10,'S52.539M ','Colles\' fracture of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143128,10,'S52.539K ','Colles\' fracture of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143127,10,'S52.539J ','Colles\' fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143126,10,'S52.539H ','Colles\' fracture of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143125,10,'S52.539G ','Colles\' fracture of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143124,10,'S52.539F ','Colles\' fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143123,10,'S52.539E ','Colles\' fracture of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143122,10,'S52.539D ','Colles\' fracture of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143121,10,'S52.539C ','Colles\' fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143120,10,'S52.539B ','Colles\' fracture of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143119,10,'S52.539A ','Colles\' fracture of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143118,10,'S52.532S ','Colles\' fracture of left radius, sequela','Y','0000-00-00 00:00:00'),(143117,10,'S52.532R ','Colles\' fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143116,10,'S52.532Q ','Colles\' fracture of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143115,10,'S52.532P ','Colles\' fracture of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143114,10,'S52.532N ','Colles\' fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143113,10,'S52.532M ','Colles\' fracture of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143112,10,'S52.532K ','Colles\' fracture of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143111,10,'S52.532J ','Colles\' fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143110,10,'S52.532H ','Colles\' fracture of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143109,10,'S52.532G ','Colles\' fracture of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143108,10,'S52.532F ','Colles\' fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143107,10,'S52.532E ','Colles\' fracture of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143106,10,'S52.532D ','Colles\' fracture of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143104,10,'S52.532B ','Colles\' fracture of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143105,10,'S52.532C ','Colles\' fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143103,10,'S52.532A ','Colles\' fracture of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143102,10,'S52.531S ','Colles\' fracture of right radius, sequela','Y','0000-00-00 00:00:00'),(143101,10,'S52.531R ','Colles\' fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143100,10,'S52.531Q ','Colles\' fracture of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143099,10,'S52.531P ','Colles\' fracture of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143098,10,'S52.531N ','Colles\' fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143097,10,'S52.531M ','Colles\' fracture of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143096,10,'S52.531K ','Colles\' fracture of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143095,10,'S52.531J ','Colles\' fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143094,10,'S52.531H ','Colles\' fracture of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143093,10,'S52.531G ','Colles\' fracture of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143092,10,'S52.531F ','Colles\' fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143090,10,'S52.531D ','Colles\' fracture of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143091,10,'S52.531E ','Colles\' fracture of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143089,10,'S52.531C ','Colles\' fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143088,10,'S52.531B ','Colles\' fracture of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143086,10,'S52.529S ','Torus fracture of lower end of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(143087,10,'S52.531A ','Colles\' fracture of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143085,10,'S52.529P ','Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(143084,10,'S52.529K ','Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(143083,10,'S52.529G ','Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(143082,10,'S52.529D ','Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(143081,10,'S52.529A ','Torus fracture of lower end of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143080,10,'S52.522S ','Torus fracture of lower end of left radius, sequela','Y','0000-00-00 00:00:00'),(143079,10,'S52.522P ','Torus fracture of lower end of left radius, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(143078,10,'S52.522K ','Torus fracture of lower end of left radius, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(143077,10,'S52.522G ','Torus fracture of lower end of left radius, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(143076,10,'S52.522D ','Torus fracture of lower end of left radius, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(143075,10,'S52.522A ','Torus fracture of lower end of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143074,10,'S52.521S ','Torus fracture of lower end of right radius, sequela','Y','0000-00-00 00:00:00'),(143073,10,'S52.521P ','Torus fracture of lower end of right radius, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(143072,10,'S52.521K ','Torus fracture of lower end of right radius, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(143071,10,'S52.521G ','Torus fracture of lower end of right radius, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(143070,10,'S52.521D ','Torus fracture of lower end of right radius, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(143069,10,'S52.521A ','Torus fracture of lower end of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143068,10,'S52.516S ','Nondisplaced fracture of unspecified radial styloid process, sequela','Y','0000-00-00 00:00:00'),(143067,10,'S52.516R ','Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143066,10,'S52.516Q ','Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143065,10,'S52.516P ','Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143064,10,'S52.516N ','Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143063,10,'S52.516M ','Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143062,10,'S52.516K ','Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143061,10,'S52.516J ','Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143060,10,'S52.516H ','Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143059,10,'S52.516G ','Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143058,10,'S52.516F ','Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143057,10,'S52.516E ','Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143056,10,'S52.516D ','Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143055,10,'S52.516C ','Nondisplaced fracture of unspecified radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143054,10,'S52.516B ','Nondisplaced fracture of unspecified radial styloid process, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143053,10,'S52.516A ','Nondisplaced fracture of unspecified radial styloid process, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143052,10,'S52.515S ','Nondisplaced fracture of left radial styloid process, sequela','Y','0000-00-00 00:00:00'),(143051,10,'S52.515R ','Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143050,10,'S52.515Q ','Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143049,10,'S52.515P ','Nondisplaced fracture of left radial styloid process, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143048,10,'S52.515N ','Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143047,10,'S52.515M ','Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143046,10,'S52.515K ','Nondisplaced fracture of left radial styloid process, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143045,10,'S52.515J ','Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143044,10,'S52.515H ','Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143043,10,'S52.515G ','Nondisplaced fracture of left radial styloid process, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143042,10,'S52.515F ','Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143041,10,'S52.515E ','Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143040,10,'S52.515D ','Nondisplaced fracture of left radial styloid process, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143039,10,'S52.515C ','Nondisplaced fracture of left radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143038,10,'S52.515B ','Nondisplaced fracture of left radial styloid process, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143037,10,'S52.515A ','Nondisplaced fracture of left radial styloid process, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143036,10,'S52.514S ','Nondisplaced fracture of right radial styloid process, sequela','Y','0000-00-00 00:00:00'),(143035,10,'S52.514R ','Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143034,10,'S52.514Q ','Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143033,10,'S52.514P ','Nondisplaced fracture of right radial styloid process, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143032,10,'S52.514N ','Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143031,10,'S52.514M ','Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143030,10,'S52.514K ','Nondisplaced fracture of right radial styloid process, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143029,10,'S52.514J ','Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143028,10,'S52.514H ','Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143027,10,'S52.514G ','Nondisplaced fracture of right radial styloid process, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143026,10,'S52.514F ','Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143025,10,'S52.514E ','Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143024,10,'S52.514D ','Nondisplaced fracture of right radial styloid process, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143023,10,'S52.514C ','Nondisplaced fracture of right radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143022,10,'S52.514B ','Nondisplaced fracture of right radial styloid process, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143021,10,'S52.514A ','Nondisplaced fracture of right radial styloid process, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143020,10,'S52.513S ','Displaced fracture of unspecified radial styloid process, sequela','Y','0000-00-00 00:00:00'),(143019,10,'S52.513R ','Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143018,10,'S52.513Q ','Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143017,10,'S52.513P ','Displaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143016,10,'S52.513N ','Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(143015,10,'S52.513M ','Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(143014,10,'S52.513K ','Displaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(143013,10,'S52.513J ','Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(143012,10,'S52.513H ','Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(143011,10,'S52.513G ','Displaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(143010,10,'S52.513F ','Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(143009,10,'S52.513E ','Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(143008,10,'S52.513D ','Displaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(143007,10,'S52.513C ','Displaced fracture of unspecified radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(143006,10,'S52.513B ','Displaced fracture of unspecified radial styloid process, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(143005,10,'S52.513A ','Displaced fracture of unspecified radial styloid process, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(143004,10,'S52.512S ','Displaced fracture of left radial styloid process, sequela','Y','0000-00-00 00:00:00'),(143003,10,'S52.512R ','Displaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(143002,10,'S52.512Q ','Displaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(143001,10,'S52.512P ','Displaced fracture of left radial styloid process, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(143000,10,'S52.512N ','Displaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142999,10,'S52.512M ','Displaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142998,10,'S52.512K ','Displaced fracture of left radial styloid process, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142997,10,'S52.512J ','Displaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142996,10,'S52.512H ','Displaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142995,10,'S52.512G ','Displaced fracture of left radial styloid process, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142994,10,'S52.512F ','Displaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142993,10,'S52.512E ','Displaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142992,10,'S52.512D ','Displaced fracture of left radial styloid process, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142991,10,'S52.512C ','Displaced fracture of left radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142990,10,'S52.512B ','Displaced fracture of left radial styloid process, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142988,10,'S52.511S ','Displaced fracture of right radial styloid process, sequela','Y','0000-00-00 00:00:00'),(142989,10,'S52.512A ','Displaced fracture of left radial styloid process, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142987,10,'S52.511R ','Displaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142986,10,'S52.511Q ','Displaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142985,10,'S52.511P ','Displaced fracture of right radial styloid process, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142984,10,'S52.511N ','Displaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142983,10,'S52.511M ','Displaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142982,10,'S52.511K ','Displaced fracture of right radial styloid process, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142981,10,'S52.511J ','Displaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142980,10,'S52.511H ','Displaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142979,10,'S52.511G ','Displaced fracture of right radial styloid process, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142978,10,'S52.511F ','Displaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142977,10,'S52.511E ','Displaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142976,10,'S52.511D ','Displaced fracture of right radial styloid process, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142975,10,'S52.511C ','Displaced fracture of right radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142974,10,'S52.511B ','Displaced fracture of right radial styloid process, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142973,10,'S52.511A ','Displaced fracture of right radial styloid process, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142972,10,'S52.509S ','Unspecified fracture of the lower end of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(142971,10,'S52.509R ','Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142970,10,'S52.509Q ','Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142969,10,'S52.509P ','Unspecified fracture of the lower end of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142968,10,'S52.509N ','Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142967,10,'S52.509M ','Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142966,10,'S52.509K ','Unspecified fracture of the lower end of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142965,10,'S52.509J ','Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142964,10,'S52.509H ','Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142963,10,'S52.509G ','Unspecified fracture of the lower end of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142962,10,'S52.509F ','Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142961,10,'S52.509E ','Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142960,10,'S52.509D ','Unspecified fracture of the lower end of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142959,10,'S52.509C ','Unspecified fracture of the lower end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142958,10,'S52.509B ','Unspecified fracture of the lower end of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142956,10,'S52.502S ','Unspecified fracture of the lower end of left radius, sequela','Y','0000-00-00 00:00:00'),(142957,10,'S52.509A ','Unspecified fracture of the lower end of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142955,10,'S52.502R ','Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142954,10,'S52.502Q ','Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142953,10,'S52.502P ','Unspecified fracture of the lower end of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142952,10,'S52.502N ','Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142951,10,'S52.502M ','Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142950,10,'S52.502K ','Unspecified fracture of the lower end of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142949,10,'S52.502J ','Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142948,10,'S52.502H ','Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142947,10,'S52.502G ','Unspecified fracture of the lower end of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142946,10,'S52.502F ','Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142945,10,'S52.502E ','Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142944,10,'S52.502D ','Unspecified fracture of the lower end of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142943,10,'S52.502C ','Unspecified fracture of the lower end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142942,10,'S52.502B ','Unspecified fracture of the lower end of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142941,10,'S52.502A ','Unspecified fracture of the lower end of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142940,10,'S52.501S ','Unspecified fracture of the lower end of right radius, sequela','Y','0000-00-00 00:00:00'),(142939,10,'S52.501R ','Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142938,10,'S52.501Q ','Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142937,10,'S52.501P ','Unspecified fracture of the lower end of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142936,10,'S52.501N ','Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142935,10,'S52.501M ','Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142934,10,'S52.501K ','Unspecified fracture of the lower end of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142933,10,'S52.501J ','Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142932,10,'S52.501H ','Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142931,10,'S52.501G ','Unspecified fracture of the lower end of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142930,10,'S52.501F ','Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142929,10,'S52.501E ','Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142928,10,'S52.501D ','Unspecified fracture of the lower end of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142927,10,'S52.501C ','Unspecified fracture of the lower end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142926,10,'S52.501B ','Unspecified fracture of the lower end of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142925,10,'S52.501A ','Unspecified fracture of the lower end of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142924,10,'S52.399S ','Other fracture of shaft of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(142923,10,'S52.399R ','Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142922,10,'S52.399Q ','Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142921,10,'S52.399P ','Other fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142920,10,'S52.399N ','Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142919,10,'S52.399M ','Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142918,10,'S52.399K ','Other fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142917,10,'S52.399J ','Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142916,10,'S52.399H ','Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142915,10,'S52.399G ','Other fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142914,10,'S52.399F ','Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142913,10,'S52.399E ','Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142912,10,'S52.399D ','Other fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142911,10,'S52.399C ','Other fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142910,10,'S52.399B ','Other fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142909,10,'S52.399A ','Other fracture of shaft of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142908,10,'S52.392S ','Other fracture of shaft of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(142907,10,'S52.392R ','Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142906,10,'S52.392Q ','Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142905,10,'S52.392P ','Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142904,10,'S52.392N ','Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142903,10,'S52.392M ','Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142902,10,'S52.392K ','Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142901,10,'S52.392J ','Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142900,10,'S52.392H ','Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142899,10,'S52.392G ','Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142898,10,'S52.392F ','Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142897,10,'S52.392E ','Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142896,10,'S52.392D ','Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142895,10,'S52.392C ','Other fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142894,10,'S52.392B ','Other fracture of shaft of radius, left arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142892,10,'S52.391S ','Other fracture of shaft of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(142893,10,'S52.392A ','Other fracture of shaft of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142891,10,'S52.391R ','Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142890,10,'S52.391Q ','Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142889,10,'S52.391P ','Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142888,10,'S52.391N ','Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142887,10,'S52.391M ','Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142886,10,'S52.391K ','Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142885,10,'S52.391J ','Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142884,10,'S52.391H ','Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142883,10,'S52.391G ','Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142882,10,'S52.391F ','Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142881,10,'S52.391E ','Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142880,10,'S52.391D ','Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142879,10,'S52.391C ','Other fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142878,10,'S52.391B ','Other fracture of shaft of radius, right arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142876,10,'S52.389S ','Bent bone of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(142877,10,'S52.391A ','Other fracture of shaft of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142875,10,'S52.389R ','Bent bone of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142874,10,'S52.389Q ','Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142873,10,'S52.389P ','Bent bone of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142872,10,'S52.389N ','Bent bone of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142871,10,'S52.389M ','Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142870,10,'S52.389K ','Bent bone of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142869,10,'S52.389J ','Bent bone of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142868,10,'S52.389H ','Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142867,10,'S52.389G ','Bent bone of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142866,10,'S52.389F ','Bent bone of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142865,10,'S52.389E ','Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142864,10,'S52.389D ','Bent bone of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142863,10,'S52.389C ','Bent bone of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142862,10,'S52.389B ','Bent bone of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142861,10,'S52.389A ','Bent bone of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142860,10,'S52.382S ','Bent bone of left radius, sequela','Y','0000-00-00 00:00:00'),(142858,10,'S52.382Q ','Bent bone of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142859,10,'S52.382R ','Bent bone of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142857,10,'S52.382P ','Bent bone of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142856,10,'S52.382N ','Bent bone of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142855,10,'S52.382M ','Bent bone of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142854,10,'S52.382K ','Bent bone of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142853,10,'S52.382J ','Bent bone of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142852,10,'S52.382H ','Bent bone of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142851,10,'S52.382G ','Bent bone of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142850,10,'S52.382F ','Bent bone of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142849,10,'S52.382E ','Bent bone of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142848,10,'S52.382D ','Bent bone of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142847,10,'S52.382C ','Bent bone of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142845,10,'S52.382A ','Bent bone of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142846,10,'S52.382B ','Bent bone of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142844,10,'S52.381S ','Bent bone of right radius, sequela','Y','0000-00-00 00:00:00'),(142843,10,'S52.381R ','Bent bone of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142842,10,'S52.381Q ','Bent bone of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142841,10,'S52.381P ','Bent bone of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142840,10,'S52.381N ','Bent bone of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142838,10,'S52.381K ','Bent bone of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142839,10,'S52.381M ','Bent bone of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142837,10,'S52.381J ','Bent bone of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142835,10,'S52.381G ','Bent bone of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142836,10,'S52.381H ','Bent bone of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142834,10,'S52.381F ','Bent bone of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142833,10,'S52.381E ','Bent bone of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142832,10,'S52.381D ','Bent bone of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142831,10,'S52.381C ','Bent bone of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142830,10,'S52.381B ','Bent bone of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142828,10,'S52.379S ','Galeazzi\'s fracture of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(142829,10,'S52.381A ','Bent bone of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142827,10,'S52.379R ','Galeazzi\'s fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142826,10,'S52.379Q ','Galeazzi\'s fracture of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142825,10,'S52.379P ','Galeazzi\'s fracture of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142824,10,'S52.379N ','Galeazzi\'s fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142823,10,'S52.379M ','Galeazzi\'s fracture of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142822,10,'S52.379K ','Galeazzi\'s fracture of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142821,10,'S52.379J ','Galeazzi\'s fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142820,10,'S52.379H ','Galeazzi\'s fracture of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142819,10,'S52.379G ','Galeazzi\'s fracture of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142818,10,'S52.379F ','Galeazzi\'s fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142817,10,'S52.379E ','Galeazzi\'s fracture of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142816,10,'S52.379D ','Galeazzi\'s fracture of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142815,10,'S52.379C ','Galeazzi\'s fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142814,10,'S52.379B ','Galeazzi\'s fracture of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142812,10,'S52.372S ','Galeazzi\'s fracture of left radius, sequela','Y','0000-00-00 00:00:00'),(142813,10,'S52.379A ','Galeazzi\'s fracture of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142811,10,'S52.372R ','Galeazzi\'s fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142810,10,'S52.372Q ','Galeazzi\'s fracture of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142809,10,'S52.372P ','Galeazzi\'s fracture of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142808,10,'S52.372N ','Galeazzi\'s fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142807,10,'S52.372M ','Galeazzi\'s fracture of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142806,10,'S52.372K ','Galeazzi\'s fracture of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142805,10,'S52.372J ','Galeazzi\'s fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142804,10,'S52.372H ','Galeazzi\'s fracture of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142803,10,'S52.372G ','Galeazzi\'s fracture of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142802,10,'S52.372F ','Galeazzi\'s fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142801,10,'S52.372E ','Galeazzi\'s fracture of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142800,10,'S52.372D ','Galeazzi\'s fracture of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142799,10,'S52.372C ','Galeazzi\'s fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142798,10,'S52.372B ','Galeazzi\'s fracture of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142796,10,'S52.371S ','Galeazzi\'s fracture of right radius, sequela','Y','0000-00-00 00:00:00'),(142797,10,'S52.372A ','Galeazzi\'s fracture of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142795,10,'S52.371R ','Galeazzi\'s fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142794,10,'S52.371Q ','Galeazzi\'s fracture of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142793,10,'S52.371P ','Galeazzi\'s fracture of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142792,10,'S52.371N ','Galeazzi\'s fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142791,10,'S52.371M ','Galeazzi\'s fracture of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142790,10,'S52.371K ','Galeazzi\'s fracture of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142789,10,'S52.371J ','Galeazzi\'s fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142788,10,'S52.371H ','Galeazzi\'s fracture of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142787,10,'S52.371G ','Galeazzi\'s fracture of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142786,10,'S52.371F ','Galeazzi\'s fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142785,10,'S52.371E ','Galeazzi\'s fracture of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142784,10,'S52.371D ','Galeazzi\'s fracture of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142783,10,'S52.371C ','Galeazzi\'s fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142782,10,'S52.371B ','Galeazzi\'s fracture of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142781,10,'S52.371A ','Galeazzi\'s fracture of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142780,10,'S52.366S ','Nondisplaced segmental fracture of shaft of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(142779,10,'S52.366R ','Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142778,10,'S52.366Q ','Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142777,10,'S52.366P ','Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142776,10,'S52.366N ','Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142775,10,'S52.366M ','Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142774,10,'S52.366K ','Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142773,10,'S52.366J ','Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142772,10,'S52.366H ','Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142771,10,'S52.366G ','Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142770,10,'S52.366F ','Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142769,10,'S52.366E ','Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142768,10,'S52.366D ','Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142767,10,'S52.366C ','Nondisplaced segmental fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142766,10,'S52.366B ','Nondisplaced segmental fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142765,10,'S52.366A ','Nondisplaced segmental fracture of shaft of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142764,10,'S52.365S ','Nondisplaced segmental fracture of shaft of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(142763,10,'S52.365R ','Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142762,10,'S52.365Q ','Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142761,10,'S52.365P ','Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142760,10,'S52.365N ','Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142759,10,'S52.365M ','Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142758,10,'S52.365K ','Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142757,10,'S52.365J ','Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142756,10,'S52.365H ','Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142755,10,'S52.365G ','Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142754,10,'S52.365F ','Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142753,10,'S52.365E ','Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142752,10,'S52.365D ','Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142751,10,'S52.365C ','Nondisplaced segmental fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142750,10,'S52.365B ','Nondisplaced segmental fracture of shaft of radius, left arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142749,10,'S52.365A ','Nondisplaced segmental fracture of shaft of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142748,10,'S52.364S ','Nondisplaced segmental fracture of shaft of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(142747,10,'S52.364R ','Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142746,10,'S52.364Q ','Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142745,10,'S52.364P ','Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142744,10,'S52.364N ','Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142743,10,'S52.364M ','Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142742,10,'S52.364K ','Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142741,10,'S52.364J ','Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142740,10,'S52.364H ','Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142739,10,'S52.364G ','Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142738,10,'S52.364F ','Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142737,10,'S52.364E ','Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142736,10,'S52.364D ','Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142735,10,'S52.364C ','Nondisplaced segmental fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142734,10,'S52.364B ','Nondisplaced segmental fracture of shaft of radius, right arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142733,10,'S52.364A ','Nondisplaced segmental fracture of shaft of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142732,10,'S52.363S ','Displaced segmental fracture of shaft of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(142731,10,'S52.363R ','Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142730,10,'S52.363Q ','Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142729,10,'S52.363P ','Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142728,10,'S52.363N ','Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142727,10,'S52.363M ','Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142726,10,'S52.363K ','Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142725,10,'S52.363J ','Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142724,10,'S52.363H ','Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142723,10,'S52.363G ','Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142722,10,'S52.363F ','Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142721,10,'S52.363E ','Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142720,10,'S52.363D ','Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142719,10,'S52.363C ','Displaced segmental fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142718,10,'S52.363B ','Displaced segmental fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142717,10,'S52.363A ','Displaced segmental fracture of shaft of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142716,10,'S52.362S ','Displaced segmental fracture of shaft of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(142715,10,'S52.362R ','Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142714,10,'S52.362Q ','Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142713,10,'S52.362P ','Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142712,10,'S52.362N ','Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142711,10,'S52.362M ','Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142710,10,'S52.362K ','Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142709,10,'S52.362J ','Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142708,10,'S52.362H ','Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142707,10,'S52.362G ','Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142706,10,'S52.362F ','Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142705,10,'S52.362E ','Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142704,10,'S52.362D ','Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142703,10,'S52.362C ','Displaced segmental fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142702,10,'S52.362B ','Displaced segmental fracture of shaft of radius, left arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142700,10,'S52.361S ','Displaced segmental fracture of shaft of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(142701,10,'S52.362A ','Displaced segmental fracture of shaft of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142699,10,'S52.361R ','Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142698,10,'S52.361Q ','Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142697,10,'S52.361P ','Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142696,10,'S52.361N ','Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142695,10,'S52.361M ','Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142694,10,'S52.361K ','Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142693,10,'S52.361J ','Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142692,10,'S52.361H ','Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142691,10,'S52.361G ','Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142690,10,'S52.361F ','Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142689,10,'S52.361E ','Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142688,10,'S52.361D ','Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142687,10,'S52.361C ','Displaced segmental fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142686,10,'S52.361B ','Displaced segmental fracture of shaft of radius, right arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142685,10,'S52.361A ','Displaced segmental fracture of shaft of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142684,10,'S52.356S ','Nondisplaced comminuted fracture of shaft of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(142683,10,'S52.356R ','Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142682,10,'S52.356Q ','Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142681,10,'S52.356P ','Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142680,10,'S52.356N ','Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142679,10,'S52.356M ','Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142678,10,'S52.356K ','Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142677,10,'S52.356J ','Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142676,10,'S52.356H ','Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142675,10,'S52.356G ','Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142674,10,'S52.356F ','Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142673,10,'S52.356E ','Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142672,10,'S52.356D ','Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142671,10,'S52.356C ','Nondisplaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142670,10,'S52.356B ','Nondisplaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142668,10,'S52.355S ','Nondisplaced comminuted fracture of shaft of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(142669,10,'S52.356A ','Nondisplaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142667,10,'S52.355R ','Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142666,10,'S52.355Q ','Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142665,10,'S52.355P ','Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142664,10,'S52.355N ','Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142663,10,'S52.355M ','Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142662,10,'S52.355K ','Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142661,10,'S52.355J ','Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142660,10,'S52.355H ','Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142659,10,'S52.355G ','Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142658,10,'S52.355F ','Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142657,10,'S52.355E ','Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142656,10,'S52.355D ','Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142655,10,'S52.355C ','Nondisplaced comminuted fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142654,10,'S52.355B ','Nondisplaced comminuted fracture of shaft of radius, left arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142653,10,'S52.355A ','Nondisplaced comminuted fracture of shaft of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142652,10,'S52.354S ','Nondisplaced comminuted fracture of shaft of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(142651,10,'S52.354R ','Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142650,10,'S52.354Q ','Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142649,10,'S52.354P ','Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142648,10,'S52.354N ','Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142647,10,'S52.354M ','Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142646,10,'S52.354K ','Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142645,10,'S52.354J ','Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142644,10,'S52.354H ','Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142643,10,'S52.354G ','Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142642,10,'S52.354F ','Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142641,10,'S52.354E ','Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142640,10,'S52.354D ','Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142639,10,'S52.354C ','Nondisplaced comminuted fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142638,10,'S52.354B ','Nondisplaced comminuted fracture of shaft of radius, right arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142637,10,'S52.354A ','Nondisplaced comminuted fracture of shaft of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142636,10,'S52.353S ','Displaced comminuted fracture of shaft of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(142635,10,'S52.353R ','Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142634,10,'S52.353Q ','Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142633,10,'S52.353P ','Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142632,10,'S52.353N ','Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142631,10,'S52.353M ','Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142630,10,'S52.353K ','Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142629,10,'S52.353J ','Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142628,10,'S52.353H ','Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142627,10,'S52.353G ','Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142626,10,'S52.353F ','Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142625,10,'S52.353E ','Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142624,10,'S52.353D ','Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142623,10,'S52.353C ','Displaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142622,10,'S52.353B ','Displaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142621,10,'S52.353A ','Displaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142620,10,'S52.352S ','Displaced comminuted fracture of shaft of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(142619,10,'S52.352R ','Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142618,10,'S52.352Q ','Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142617,10,'S52.352P ','Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142616,10,'S52.352N ','Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142615,10,'S52.352M ','Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142614,10,'S52.352K ','Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142613,10,'S52.352J ','Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142612,10,'S52.352H ','Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142611,10,'S52.352G ','Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142610,10,'S52.352F ','Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142609,10,'S52.352E ','Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142608,10,'S52.352D ','Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142607,10,'S52.352C ','Displaced comminuted fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142606,10,'S52.352B ','Displaced comminuted fracture of shaft of radius, left arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142604,10,'S52.351S ','Displaced comminuted fracture of shaft of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(142605,10,'S52.352A ','Displaced comminuted fracture of shaft of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142603,10,'S52.351R ','Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142602,10,'S52.351Q ','Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142601,10,'S52.351P ','Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142600,10,'S52.351N ','Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142599,10,'S52.351M ','Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142598,10,'S52.351K ','Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142597,10,'S52.351J ','Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142596,10,'S52.351H ','Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142595,10,'S52.351G ','Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142594,10,'S52.351F ','Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142593,10,'S52.351E ','Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142592,10,'S52.351D ','Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142591,10,'S52.351C ','Displaced comminuted fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142590,10,'S52.351B ','Displaced comminuted fracture of shaft of radius, right arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142589,10,'S52.351A ','Displaced comminuted fracture of shaft of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142588,10,'S52.346S ','Nondisplaced spiral fracture of shaft of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(142587,10,'S52.346R ','Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142586,10,'S52.346Q ','Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142585,10,'S52.346P ','Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142584,10,'S52.346N ','Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142583,10,'S52.346M ','Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142582,10,'S52.346K ','Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142581,10,'S52.346J ','Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142580,10,'S52.346H ','Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142579,10,'S52.346G ','Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142578,10,'S52.346F ','Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142577,10,'S52.346E ','Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142576,10,'S52.346D ','Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142575,10,'S52.346C ','Nondisplaced spiral fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142574,10,'S52.346B ','Nondisplaced spiral fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142572,10,'S52.345S ','Nondisplaced spiral fracture of shaft of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(142573,10,'S52.346A ','Nondisplaced spiral fracture of shaft of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142571,10,'S52.345R ','Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142570,10,'S52.345Q ','Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142569,10,'S52.345P ','Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142568,10,'S52.345N ','Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142567,10,'S52.345M ','Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142566,10,'S52.345K ','Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142565,10,'S52.345J ','Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142564,10,'S52.345H ','Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142563,10,'S52.345G ','Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142562,10,'S52.345F ','Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142561,10,'S52.345E ','Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142560,10,'S52.345D ','Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142559,10,'S52.345C ','Nondisplaced spiral fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142558,10,'S52.345B ','Nondisplaced spiral fracture of shaft of radius, left arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142557,10,'S52.345A ','Nondisplaced spiral fracture of shaft of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142556,10,'S52.344S ','Nondisplaced spiral fracture of shaft of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(142555,10,'S52.344R ','Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142554,10,'S52.344Q ','Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142553,10,'S52.344P ','Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142552,10,'S52.344N ','Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142551,10,'S52.344M ','Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142550,10,'S52.344K ','Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142549,10,'S52.344J ','Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142548,10,'S52.344H ','Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142547,10,'S52.344G ','Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142546,10,'S52.344F ','Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142545,10,'S52.344E ','Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142544,10,'S52.344D ','Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142543,10,'S52.344C ','Nondisplaced spiral fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142542,10,'S52.344B ','Nondisplaced spiral fracture of shaft of radius, right arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142541,10,'S52.344A ','Nondisplaced spiral fracture of shaft of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142540,10,'S52.343S ','Displaced spiral fracture of shaft of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(142539,10,'S52.343R ','Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142538,10,'S52.343Q ','Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142537,10,'S52.343P ','Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142536,10,'S52.343N ','Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142535,10,'S52.343M ','Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142534,10,'S52.343K ','Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142533,10,'S52.343J ','Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142532,10,'S52.343H ','Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142531,10,'S52.343G ','Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142530,10,'S52.343F ','Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142529,10,'S52.343E ','Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142528,10,'S52.343D ','Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142527,10,'S52.343C ','Displaced spiral fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142526,10,'S52.343B ','Displaced spiral fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142524,10,'S52.342S ','Displaced spiral fracture of shaft of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(142525,10,'S52.343A ','Displaced spiral fracture of shaft of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142523,10,'S52.342R ','Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142522,10,'S52.342Q ','Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142521,10,'S52.342P ','Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142520,10,'S52.342N ','Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142519,10,'S52.342M ','Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142518,10,'S52.342K ','Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142517,10,'S52.342J ','Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142516,10,'S52.342H ','Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142515,10,'S52.342G ','Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142514,10,'S52.342F ','Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142513,10,'S52.342E ','Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142512,10,'S52.342D ','Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142511,10,'S52.342C ','Displaced spiral fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142510,10,'S52.342B ','Displaced spiral fracture of shaft of radius, left arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142509,10,'S52.342A ','Displaced spiral fracture of shaft of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142508,10,'S52.341S ','Displaced spiral fracture of shaft of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(142507,10,'S52.341R ','Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142506,10,'S52.341Q ','Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142505,10,'S52.341P ','Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142504,10,'S52.341N ','Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142503,10,'S52.341M ','Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142502,10,'S52.341K ','Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142501,10,'S52.341J ','Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142500,10,'S52.341H ','Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142499,10,'S52.341G ','Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142498,10,'S52.341F ','Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142497,10,'S52.341E ','Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142496,10,'S52.341D ','Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142495,10,'S52.341C ','Displaced spiral fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142494,10,'S52.341B ','Displaced spiral fracture of shaft of radius, right arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142493,10,'S52.341A ','Displaced spiral fracture of shaft of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142492,10,'S52.336S ','Nondisplaced oblique fracture of shaft of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(142491,10,'S52.336R ','Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142490,10,'S52.336Q ','Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142489,10,'S52.336P ','Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142488,10,'S52.336N ','Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142487,10,'S52.336M ','Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142486,10,'S52.336K ','Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142485,10,'S52.336J ','Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142484,10,'S52.336H ','Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142483,10,'S52.336G ','Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142482,10,'S52.336F ','Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142481,10,'S52.336E ','Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142480,10,'S52.336D ','Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142479,10,'S52.336C ','Nondisplaced oblique fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142478,10,'S52.336B ','Nondisplaced oblique fracture of shaft of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142477,10,'S52.336A ','Nondisplaced oblique fracture of shaft of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142476,10,'S52.335S ','Nondisplaced oblique fracture of shaft of left radius, sequela','Y','0000-00-00 00:00:00'),(142475,10,'S52.335R ','Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142474,10,'S52.335Q ','Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142473,10,'S52.335P ','Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142472,10,'S52.335N ','Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142471,10,'S52.335M ','Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142470,10,'S52.335K ','Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142469,10,'S52.335J ','Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142468,10,'S52.335H ','Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142467,10,'S52.335G ','Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142466,10,'S52.335F ','Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142465,10,'S52.335E ','Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142464,10,'S52.335D ','Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142463,10,'S52.335C ','Nondisplaced oblique fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142462,10,'S52.335B ','Nondisplaced oblique fracture of shaft of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142461,10,'S52.335A ','Nondisplaced oblique fracture of shaft of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142460,10,'S52.334S ','Nondisplaced oblique fracture of shaft of right radius, sequela','Y','0000-00-00 00:00:00'),(142459,10,'S52.334R ','Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142458,10,'S52.334Q ','Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142457,10,'S52.334P ','Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142456,10,'S52.334N ','Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142455,10,'S52.334M ','Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142454,10,'S52.334K ','Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142453,10,'S52.334J ','Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142452,10,'S52.334H ','Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142451,10,'S52.334G ','Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142450,10,'S52.334F ','Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142449,10,'S52.334E ','Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142448,10,'S52.334D ','Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142447,10,'S52.334C ','Nondisplaced oblique fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142446,10,'S52.334B ','Nondisplaced oblique fracture of shaft of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142445,10,'S52.334A ','Nondisplaced oblique fracture of shaft of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142444,10,'S52.333S ','Displaced oblique fracture of shaft of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(142443,10,'S52.333R ','Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142442,10,'S52.333Q ','Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142441,10,'S52.333P ','Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142440,10,'S52.333N ','Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142439,10,'S52.333M ','Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142438,10,'S52.333K ','Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142437,10,'S52.333J ','Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142436,10,'S52.333H ','Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142435,10,'S52.333G ','Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142434,10,'S52.333F ','Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142433,10,'S52.333E ','Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142432,10,'S52.333D ','Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142431,10,'S52.333C ','Displaced oblique fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142430,10,'S52.333B ','Displaced oblique fracture of shaft of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142429,10,'S52.333A ','Displaced oblique fracture of shaft of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142428,10,'S52.332S ','Displaced oblique fracture of shaft of left radius, sequela','Y','0000-00-00 00:00:00'),(142427,10,'S52.332R ','Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142426,10,'S52.332Q ','Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142425,10,'S52.332P ','Displaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142424,10,'S52.332N ','Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142423,10,'S52.332M ','Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142422,10,'S52.332K ','Displaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142421,10,'S52.332J ','Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142420,10,'S52.332H ','Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142419,10,'S52.332G ','Displaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142418,10,'S52.332F ','Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142417,10,'S52.332E ','Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142416,10,'S52.332D ','Displaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142415,10,'S52.332C ','Displaced oblique fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142414,10,'S52.332B ','Displaced oblique fracture of shaft of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142413,10,'S52.332A ','Displaced oblique fracture of shaft of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142412,10,'S52.331S ','Displaced oblique fracture of shaft of right radius, sequela','Y','0000-00-00 00:00:00'),(142411,10,'S52.331R ','Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142410,10,'S52.331Q ','Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142409,10,'S52.331P ','Displaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142408,10,'S52.331N ','Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142407,10,'S52.331M ','Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142406,10,'S52.331K ','Displaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142405,10,'S52.331J ','Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142404,10,'S52.331H ','Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142403,10,'S52.331G ','Displaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142402,10,'S52.331F ','Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142401,10,'S52.331E ','Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142400,10,'S52.331D ','Displaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142399,10,'S52.331C ','Displaced oblique fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142398,10,'S52.331B ','Displaced oblique fracture of shaft of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142396,10,'S52.326S ','Nondisplaced transverse fracture of shaft of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(142397,10,'S52.331A ','Displaced oblique fracture of shaft of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142395,10,'S52.326R ','Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142394,10,'S52.326Q ','Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142393,10,'S52.326P ','Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142392,10,'S52.326N ','Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142391,10,'S52.326M ','Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142390,10,'S52.326K ','Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142389,10,'S52.326J ','Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142388,10,'S52.326H ','Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142387,10,'S52.326G ','Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142386,10,'S52.326F ','Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142385,10,'S52.326E ','Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142384,10,'S52.326D ','Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142383,10,'S52.326C ','Nondisplaced transverse fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142382,10,'S52.326B ','Nondisplaced transverse fracture of shaft of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142380,10,'S52.325S ','Nondisplaced transverse fracture of shaft of left radius, sequela','Y','0000-00-00 00:00:00'),(142381,10,'S52.326A ','Nondisplaced transverse fracture of shaft of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142379,10,'S52.325R ','Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142378,10,'S52.325Q ','Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142377,10,'S52.325P ','Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142376,10,'S52.325N ','Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142375,10,'S52.325M ','Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142374,10,'S52.325K ','Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142373,10,'S52.325J ','Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142372,10,'S52.325H ','Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142371,10,'S52.325G ','Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142370,10,'S52.325F ','Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142369,10,'S52.325E ','Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142368,10,'S52.325D ','Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142367,10,'S52.325C ','Nondisplaced transverse fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142366,10,'S52.325B ','Nondisplaced transverse fracture of shaft of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142364,10,'S52.324S ','Nondisplaced transverse fracture of shaft of right radius, sequela','Y','0000-00-00 00:00:00'),(142365,10,'S52.325A ','Nondisplaced transverse fracture of shaft of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142363,10,'S52.324R ','Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142362,10,'S52.324Q ','Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142361,10,'S52.324P ','Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142360,10,'S52.324N ','Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142359,10,'S52.324M ','Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142358,10,'S52.324K ','Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142357,10,'S52.324J ','Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142356,10,'S52.324H ','Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142355,10,'S52.324G ','Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142354,10,'S52.324F ','Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142353,10,'S52.324E ','Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142352,10,'S52.324D ','Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142351,10,'S52.324C ','Nondisplaced transverse fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142350,10,'S52.324B ','Nondisplaced transverse fracture of shaft of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142349,10,'S52.324A ','Nondisplaced transverse fracture of shaft of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142348,10,'S52.323S ','Displaced transverse fracture of shaft of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(142347,10,'S52.323R ','Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142346,10,'S52.323Q ','Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142345,10,'S52.323P ','Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142344,10,'S52.323N ','Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142343,10,'S52.323M ','Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142342,10,'S52.323K ','Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142341,10,'S52.323J ','Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142340,10,'S52.323H ','Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142339,10,'S52.323G ','Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142338,10,'S52.323F ','Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142337,10,'S52.323E ','Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142336,10,'S52.323D ','Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142335,10,'S52.323C ','Displaced transverse fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142334,10,'S52.323B ','Displaced transverse fracture of shaft of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142332,10,'S52.322S ','Displaced transverse fracture of shaft of left radius, sequela','Y','0000-00-00 00:00:00'),(142333,10,'S52.323A ','Displaced transverse fracture of shaft of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142331,10,'S52.322R ','Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142330,10,'S52.322Q ','Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142329,10,'S52.322P ','Displaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142328,10,'S52.322N ','Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142327,10,'S52.322M ','Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142326,10,'S52.322K ','Displaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142325,10,'S52.322J ','Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142324,10,'S52.322H ','Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142323,10,'S52.322G ','Displaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142322,10,'S52.322F ','Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142321,10,'S52.322E ','Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142320,10,'S52.322D ','Displaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142319,10,'S52.322C ','Displaced transverse fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142318,10,'S52.322B ','Displaced transverse fracture of shaft of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142317,10,'S52.322A ','Displaced transverse fracture of shaft of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142316,10,'S52.321S ','Displaced transverse fracture of shaft of right radius, sequela','Y','0000-00-00 00:00:00'),(142315,10,'S52.321R ','Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142314,10,'S52.321Q ','Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142313,10,'S52.321P ','Displaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142312,10,'S52.321N ','Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142311,10,'S52.321M ','Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142310,10,'S52.321K ','Displaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142309,10,'S52.321J ','Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142308,10,'S52.321H ','Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142307,10,'S52.321G ','Displaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142306,10,'S52.321F ','Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142305,10,'S52.321E ','Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142304,10,'S52.321D ','Displaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142303,10,'S52.321C ','Displaced transverse fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142302,10,'S52.321B ','Displaced transverse fracture of shaft of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142301,10,'S52.321A ','Displaced transverse fracture of shaft of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142300,10,'S52.319S ','Greenstick fracture of shaft of radius, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(142299,10,'S52.319P ','Greenstick fracture of shaft of radius, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(142298,10,'S52.319K ','Greenstick fracture of shaft of radius, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(142297,10,'S52.319G ','Greenstick fracture of shaft of radius, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(142296,10,'S52.319D ','Greenstick fracture of shaft of radius, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(142295,10,'S52.319A ','Greenstick fracture of shaft of radius, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142294,10,'S52.312S ','Greenstick fracture of shaft of radius, left arm, sequela','Y','0000-00-00 00:00:00'),(142293,10,'S52.312P ','Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(142292,10,'S52.312K ','Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(142291,10,'S52.312G ','Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(142290,10,'S52.312D ','Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(142288,10,'S52.311S ','Greenstick fracture of shaft of radius, right arm, sequela','Y','0000-00-00 00:00:00'),(142289,10,'S52.312A ','Greenstick fracture of shaft of radius, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142287,10,'S52.311P ','Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(142286,10,'S52.311K ','Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(142285,10,'S52.311G ','Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(142284,10,'S52.311D ','Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(142283,10,'S52.311A ','Greenstick fracture of shaft of radius, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142282,10,'S52.309S ','Unspecified fracture of shaft of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(142281,10,'S52.309R ','Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142280,10,'S52.309Q ','Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142279,10,'S52.309P ','Unspecified fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142278,10,'S52.309N ','Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142277,10,'S52.309M ','Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142276,10,'S52.309K ','Unspecified fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142275,10,'S52.309J ','Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142274,10,'S52.309H ','Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142273,10,'S52.309G ','Unspecified fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142272,10,'S52.309F ','Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142271,10,'S52.309E ','Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142270,10,'S52.309D ','Unspecified fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142269,10,'S52.309C ','Unspecified fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142268,10,'S52.309B ','Unspecified fracture of shaft of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142266,10,'S52.302S ','Unspecified fracture of shaft of left radius, sequela','Y','0000-00-00 00:00:00'),(142267,10,'S52.309A ','Unspecified fracture of shaft of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142265,10,'S52.302R ','Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142264,10,'S52.302Q ','Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142263,10,'S52.302P ','Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142262,10,'S52.302N ','Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142261,10,'S52.302M ','Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142260,10,'S52.302K ','Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142259,10,'S52.302J ','Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142258,10,'S52.302H ','Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142257,10,'S52.302G ','Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142256,10,'S52.302F ','Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142255,10,'S52.302E ','Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142254,10,'S52.302D ','Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142253,10,'S52.302C ','Unspecified fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142252,10,'S52.302B ','Unspecified fracture of shaft of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142251,10,'S52.302A ','Unspecified fracture of shaft of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142250,10,'S52.301S ','Unspecified fracture of shaft of right radius, sequela','Y','0000-00-00 00:00:00'),(142249,10,'S52.301R ','Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142248,10,'S52.301Q ','Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142247,10,'S52.301P ','Unspecified fracture of shaft of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142246,10,'S52.301N ','Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142245,10,'S52.301M ','Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142244,10,'S52.301K ','Unspecified fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142243,10,'S52.301J ','Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142242,10,'S52.301H ','Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142241,10,'S52.301G ','Unspecified fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142240,10,'S52.301F ','Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142239,10,'S52.301E ','Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142238,10,'S52.301D ','Unspecified fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142237,10,'S52.301C ','Unspecified fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142236,10,'S52.301B ','Unspecified fracture of shaft of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142235,10,'S52.301A ','Unspecified fracture of shaft of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142234,10,'S52.299S ','Other fracture of shaft of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(142233,10,'S52.299R ','Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142232,10,'S52.299Q ','Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142231,10,'S52.299P ','Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142230,10,'S52.299N ','Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142229,10,'S52.299M ','Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142228,10,'S52.299K ','Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142227,10,'S52.299J ','Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142226,10,'S52.299H ','Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142225,10,'S52.299G ','Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142224,10,'S52.299F ','Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142223,10,'S52.299E ','Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142222,10,'S52.299D ','Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142221,10,'S52.299C ','Other fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142220,10,'S52.299B ','Other fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142219,10,'S52.299A ','Other fracture of shaft of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142218,10,'S52.292S ','Other fracture of shaft of left ulna, sequela','Y','0000-00-00 00:00:00'),(142217,10,'S52.292R ','Other fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142216,10,'S52.292Q ','Other fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142215,10,'S52.292P ','Other fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142214,10,'S52.292N ','Other fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142213,10,'S52.292M ','Other fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142212,10,'S52.292K ','Other fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142211,10,'S52.292J ','Other fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142210,10,'S52.292H ','Other fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142209,10,'S52.292G ','Other fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142208,10,'S52.292F ','Other fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142207,10,'S52.292E ','Other fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142206,10,'S52.292D ','Other fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142205,10,'S52.292C ','Other fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142203,10,'S52.292A ','Other fracture of shaft of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142204,10,'S52.292B ','Other fracture of shaft of left ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142202,10,'S52.291S ','Other fracture of shaft of right ulna, sequela','Y','0000-00-00 00:00:00'),(142201,10,'S52.291R ','Other fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142200,10,'S52.291Q ','Other fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142199,10,'S52.291P ','Other fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142198,10,'S52.291N ','Other fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142197,10,'S52.291M ','Other fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142196,10,'S52.291K ','Other fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142195,10,'S52.291J ','Other fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142194,10,'S52.291H ','Other fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142193,10,'S52.291G ','Other fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142192,10,'S52.291F ','Other fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142191,10,'S52.291E ','Other fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142190,10,'S52.291D ','Other fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142189,10,'S52.291C ','Other fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142188,10,'S52.291B ','Other fracture of shaft of right ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142186,10,'S52.283S ','Bent bone of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(142187,10,'S52.291A ','Other fracture of shaft of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142185,10,'S52.283R ','Bent bone of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142184,10,'S52.283Q ','Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142183,10,'S52.283P ','Bent bone of unspecified ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142182,10,'S52.283N ','Bent bone of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142181,10,'S52.283M ','Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142180,10,'S52.283K ','Bent bone of unspecified ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142179,10,'S52.283J ','Bent bone of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142178,10,'S52.283H ','Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142177,10,'S52.283G ','Bent bone of unspecified ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142176,10,'S52.283F ','Bent bone of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142175,10,'S52.283E ','Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142174,10,'S52.283D ','Bent bone of unspecified ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142173,10,'S52.283C ','Bent bone of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142172,10,'S52.283B ','Bent bone of unspecified ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142170,10,'S52.282S ','Bent bone of left ulna, sequela','Y','0000-00-00 00:00:00'),(142171,10,'S52.283A ','Bent bone of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142169,10,'S52.282R ','Bent bone of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142168,10,'S52.282Q ','Bent bone of left ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142167,10,'S52.282P ','Bent bone of left ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142166,10,'S52.282N ','Bent bone of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142165,10,'S52.282M ','Bent bone of left ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142164,10,'S52.282K ','Bent bone of left ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142163,10,'S52.282J ','Bent bone of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142162,10,'S52.282H ','Bent bone of left ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142161,10,'S52.282G ','Bent bone of left ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142160,10,'S52.282F ','Bent bone of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142159,10,'S52.282E ','Bent bone of left ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142158,10,'S52.282D ','Bent bone of left ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142157,10,'S52.282C ','Bent bone of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142155,10,'S52.282A ','Bent bone of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142156,10,'S52.282B ','Bent bone of left ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142154,10,'S52.281S ','Bent bone of right ulna, sequela','Y','0000-00-00 00:00:00'),(142153,10,'S52.281R ','Bent bone of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142151,10,'S52.281P ','Bent bone of right ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142152,10,'S52.281Q ','Bent bone of right ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142150,10,'S52.281N ','Bent bone of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142149,10,'S52.281M ','Bent bone of right ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142148,10,'S52.281K ','Bent bone of right ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142147,10,'S52.281J ','Bent bone of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142146,10,'S52.281H ','Bent bone of right ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142145,10,'S52.281G ','Bent bone of right ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142144,10,'S52.281F ','Bent bone of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142143,10,'S52.281E ','Bent bone of right ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142142,10,'S52.281D ','Bent bone of right ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142141,10,'S52.281C ','Bent bone of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142139,10,'S52.281A ','Bent bone of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142140,10,'S52.281B ','Bent bone of right ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142138,10,'S52.279S ','Monteggia\'s fracture of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(142137,10,'S52.279R ','Monteggia\'s fracture of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142136,10,'S52.279Q ','Monteggia\'s fracture of unspecified ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142135,10,'S52.279P ','Monteggia\'s fracture of unspecified ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142134,10,'S52.279N ','Monteggia\'s fracture of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142133,10,'S52.279M ','Monteggia\'s fracture of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142132,10,'S52.279K ','Monteggia\'s fracture of unspecified ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142131,10,'S52.279J ','Monteggia\'s fracture of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142130,10,'S52.279H ','Monteggia\'s fracture of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142129,10,'S52.279G ','Monteggia\'s fracture of unspecified ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142128,10,'S52.279F ','Monteggia\'s fracture of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142127,10,'S52.279E ','Monteggia\'s fracture of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00');
INSERT INTO `icd` VALUES (142126,10,'S52.279D ','Monteggia\'s fracture of unspecified ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142125,10,'S52.279C ','Monteggia\'s fracture of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142124,10,'S52.279B ','Monteggia\'s fracture of unspecified ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142123,10,'S52.279A ','Monteggia\'s fracture of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142122,10,'S52.272S ','Monteggia\'s fracture of left ulna, sequela','Y','0000-00-00 00:00:00'),(142121,10,'S52.272R ','Monteggia\'s fracture of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142120,10,'S52.272Q ','Monteggia\'s fracture of left ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142119,10,'S52.272P ','Monteggia\'s fracture of left ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142118,10,'S52.272N ','Monteggia\'s fracture of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142117,10,'S52.272M ','Monteggia\'s fracture of left ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142116,10,'S52.272K ','Monteggia\'s fracture of left ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142115,10,'S52.272J ','Monteggia\'s fracture of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142114,10,'S52.272H ','Monteggia\'s fracture of left ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142113,10,'S52.272G ','Monteggia\'s fracture of left ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142112,10,'S52.272F ','Monteggia\'s fracture of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142111,10,'S52.272E ','Monteggia\'s fracture of left ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142110,10,'S52.272D ','Monteggia\'s fracture of left ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142109,10,'S52.272C ','Monteggia\'s fracture of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142108,10,'S52.272B ','Monteggia\'s fracture of left ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142106,10,'S52.271S ','Monteggia\'s fracture of right ulna, sequela','Y','0000-00-00 00:00:00'),(142107,10,'S52.272A ','Monteggia\'s fracture of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142105,10,'S52.271R ','Monteggia\'s fracture of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142104,10,'S52.271Q ','Monteggia\'s fracture of right ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142103,10,'S52.271P ','Monteggia\'s fracture of right ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142102,10,'S52.271N ','Monteggia\'s fracture of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142101,10,'S52.271M ','Monteggia\'s fracture of right ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142100,10,'S52.271K ','Monteggia\'s fracture of right ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142099,10,'S52.271J ','Monteggia\'s fracture of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142098,10,'S52.271H ','Monteggia\'s fracture of right ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142097,10,'S52.271G ','Monteggia\'s fracture of right ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142096,10,'S52.271F ','Monteggia\'s fracture of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142095,10,'S52.271E ','Monteggia\'s fracture of right ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142094,10,'S52.271D ','Monteggia\'s fracture of right ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142093,10,'S52.271C ','Monteggia\'s fracture of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142092,10,'S52.271B ','Monteggia\'s fracture of right ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142091,10,'S52.271A ','Monteggia\'s fracture of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142090,10,'S52.266S ','Nondisplaced segmental fracture of shaft of ulna, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(142089,10,'S52.266R ','Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142088,10,'S52.266Q ','Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142087,10,'S52.266P ','Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142086,10,'S52.266N ','Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142085,10,'S52.266M ','Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142084,10,'S52.266K ','Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142083,10,'S52.266J ','Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142082,10,'S52.266H ','Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142081,10,'S52.266G ','Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142080,10,'S52.266F ','Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142079,10,'S52.266E ','Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142078,10,'S52.266D ','Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142077,10,'S52.266C ','Nondisplaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142076,10,'S52.266B ','Nondisplaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142075,10,'S52.266A ','Nondisplaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142074,10,'S52.265S ','Nondisplaced segmental fracture of shaft of ulna, left arm, sequela','Y','0000-00-00 00:00:00'),(142073,10,'S52.265R ','Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142072,10,'S52.265Q ','Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142071,10,'S52.265P ','Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142070,10,'S52.265N ','Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142069,10,'S52.265M ','Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142068,10,'S52.265K ','Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142067,10,'S52.265J ','Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142066,10,'S52.265H ','Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142065,10,'S52.265G ','Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142064,10,'S52.265F ','Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142063,10,'S52.265E ','Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142062,10,'S52.265D ','Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142061,10,'S52.265C ','Nondisplaced segmental fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142060,10,'S52.265B ','Nondisplaced segmental fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142058,10,'S52.264S ','Nondisplaced segmental fracture of shaft of ulna, right arm, sequela','Y','0000-00-00 00:00:00'),(142059,10,'S52.265A ','Nondisplaced segmental fracture of shaft of ulna, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142057,10,'S52.264R ','Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142056,10,'S52.264Q ','Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142055,10,'S52.264P ','Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142054,10,'S52.264N ','Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142053,10,'S52.264M ','Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142052,10,'S52.264K ','Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142051,10,'S52.264J ','Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142050,10,'S52.264H ','Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142049,10,'S52.264G ','Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142048,10,'S52.264F ','Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142047,10,'S52.264E ','Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142046,10,'S52.264D ','Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142045,10,'S52.264C ','Nondisplaced segmental fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142044,10,'S52.264B ','Nondisplaced segmental fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142043,10,'S52.264A ','Nondisplaced segmental fracture of shaft of ulna, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142042,10,'S52.263S ','Displaced segmental fracture of shaft of ulna, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(142041,10,'S52.263R ','Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142040,10,'S52.263Q ','Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142039,10,'S52.263P ','Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142038,10,'S52.263N ','Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142037,10,'S52.263M ','Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142036,10,'S52.263K ','Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142035,10,'S52.263J ','Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142034,10,'S52.263H ','Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142033,10,'S52.263G ','Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142032,10,'S52.263F ','Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142031,10,'S52.263E ','Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142030,10,'S52.263D ','Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142029,10,'S52.263C ','Displaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142028,10,'S52.263B ','Displaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142027,10,'S52.263A ','Displaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142026,10,'S52.262S ','Displaced segmental fracture of shaft of ulna, left arm, sequela','Y','0000-00-00 00:00:00'),(142025,10,'S52.262R ','Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142024,10,'S52.262Q ','Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142023,10,'S52.262P ','Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142022,10,'S52.262N ','Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142021,10,'S52.262M ','Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142020,10,'S52.262K ','Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142019,10,'S52.262J ','Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142018,10,'S52.262H ','Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142017,10,'S52.262G ','Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142016,10,'S52.262F ','Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(142015,10,'S52.262E ','Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(142014,10,'S52.262D ','Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(142013,10,'S52.262C ','Displaced segmental fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(142012,10,'S52.262B ','Displaced segmental fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(142011,10,'S52.262A ','Displaced segmental fracture of shaft of ulna, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(142010,10,'S52.261S ','Displaced segmental fracture of shaft of ulna, right arm, sequela','Y','0000-00-00 00:00:00'),(142009,10,'S52.261R ','Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(142008,10,'S52.261Q ','Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(142007,10,'S52.261P ','Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(142006,10,'S52.261N ','Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(142005,10,'S52.261M ','Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(142004,10,'S52.261K ','Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(142003,10,'S52.261J ','Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(142002,10,'S52.261H ','Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(142001,10,'S52.261G ','Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(142000,10,'S52.261F ','Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141999,10,'S52.261E ','Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141998,10,'S52.261D ','Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141997,10,'S52.261C ','Displaced segmental fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141996,10,'S52.261B ','Displaced segmental fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141995,10,'S52.261A ','Displaced segmental fracture of shaft of ulna, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141994,10,'S52.256S ','Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(141993,10,'S52.256R ','Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141992,10,'S52.256Q ','Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141991,10,'S52.256P ','Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141990,10,'S52.256N ','Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141989,10,'S52.256M ','Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141988,10,'S52.256K ','Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141987,10,'S52.256J ','Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141986,10,'S52.256H ','Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141985,10,'S52.256G ','Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141984,10,'S52.256F ','Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141983,10,'S52.256E ','Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141982,10,'S52.256D ','Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141981,10,'S52.256C ','Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141980,10,'S52.256B ','Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141979,10,'S52.256A ','Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141978,10,'S52.255S ','Nondisplaced comminuted fracture of shaft of ulna, left arm, sequela','Y','0000-00-00 00:00:00'),(141977,10,'S52.255R ','Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141976,10,'S52.255Q ','Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141975,10,'S52.255P ','Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141974,10,'S52.255N ','Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141973,10,'S52.255M ','Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141972,10,'S52.255K ','Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141971,10,'S52.255J ','Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141970,10,'S52.255H ','Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141969,10,'S52.255G ','Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141968,10,'S52.255F ','Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141967,10,'S52.255E ','Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141966,10,'S52.255D ','Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141965,10,'S52.255C ','Nondisplaced comminuted fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141964,10,'S52.255B ','Nondisplaced comminuted fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141963,10,'S52.255A ','Nondisplaced comminuted fracture of shaft of ulna, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141962,10,'S52.254S ','Nondisplaced comminuted fracture of shaft of ulna, right arm, sequela','Y','0000-00-00 00:00:00'),(141961,10,'S52.254R ','Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141960,10,'S52.254Q ','Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141959,10,'S52.254P ','Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141958,10,'S52.254N ','Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141957,10,'S52.254M ','Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141956,10,'S52.254K ','Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141955,10,'S52.254J ','Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141954,10,'S52.254H ','Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141953,10,'S52.254G ','Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141952,10,'S52.254F ','Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141951,10,'S52.254E ','Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141950,10,'S52.254D ','Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141949,10,'S52.254C ','Nondisplaced comminuted fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141948,10,'S52.254B ','Nondisplaced comminuted fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141947,10,'S52.254A ','Nondisplaced comminuted fracture of shaft of ulna, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141946,10,'S52.253S ','Displaced comminuted fracture of shaft of ulna, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(141945,10,'S52.253R ','Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141944,10,'S52.253Q ','Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141943,10,'S52.253P ','Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141942,10,'S52.253N ','Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141941,10,'S52.253M ','Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141940,10,'S52.253K ','Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141939,10,'S52.253J ','Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141938,10,'S52.253H ','Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141937,10,'S52.253G ','Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141936,10,'S52.253F ','Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141935,10,'S52.253E ','Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141934,10,'S52.253D ','Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141933,10,'S52.253C ','Displaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141932,10,'S52.253B ','Displaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141931,10,'S52.253A ','Displaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141930,10,'S52.252S ','Displaced comminuted fracture of shaft of ulna, left arm, sequela','Y','0000-00-00 00:00:00'),(141929,10,'S52.252R ','Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141928,10,'S52.252Q ','Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141927,10,'S52.252P ','Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141926,10,'S52.252N ','Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141925,10,'S52.252M ','Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141924,10,'S52.252K ','Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141923,10,'S52.252J ','Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141922,10,'S52.252H ','Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141921,10,'S52.252G ','Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141920,10,'S52.252F ','Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141919,10,'S52.252E ','Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141918,10,'S52.252D ','Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141917,10,'S52.252C ','Displaced comminuted fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141916,10,'S52.252B ','Displaced comminuted fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141915,10,'S52.252A ','Displaced comminuted fracture of shaft of ulna, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141914,10,'S52.251S ','Displaced comminuted fracture of shaft of ulna, right arm, sequela','Y','0000-00-00 00:00:00'),(141913,10,'S52.251R ','Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141912,10,'S52.251Q ','Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141911,10,'S52.251P ','Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141910,10,'S52.251N ','Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141909,10,'S52.251M ','Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141908,10,'S52.251K ','Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141907,10,'S52.251J ','Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141906,10,'S52.251H ','Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141905,10,'S52.251G ','Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141904,10,'S52.251F ','Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141903,10,'S52.251E ','Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141902,10,'S52.251D ','Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141901,10,'S52.251C ','Displaced comminuted fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141900,10,'S52.251B ','Displaced comminuted fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141899,10,'S52.251A ','Displaced comminuted fracture of shaft of ulna, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141898,10,'S52.246S ','Nondisplaced spiral fracture of shaft of ulna, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(141897,10,'S52.246R ','Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141896,10,'S52.246Q ','Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141895,10,'S52.246P ','Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141894,10,'S52.246N ','Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141893,10,'S52.246M ','Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141892,10,'S52.246K ','Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141891,10,'S52.246J ','Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141890,10,'S52.246H ','Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141889,10,'S52.246G ','Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141888,10,'S52.246F ','Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141887,10,'S52.246E ','Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141886,10,'S52.246D ','Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141885,10,'S52.246C ','Nondisplaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141884,10,'S52.246B ','Nondisplaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141883,10,'S52.246A ','Nondisplaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141882,10,'S52.245S ','Nondisplaced spiral fracture of shaft of ulna, left arm, sequela','Y','0000-00-00 00:00:00'),(141881,10,'S52.245R ','Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141880,10,'S52.245Q ','Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141879,10,'S52.245P ','Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141878,10,'S52.245N ','Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141877,10,'S52.245M ','Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141876,10,'S52.245K ','Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141875,10,'S52.245J ','Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141874,10,'S52.245H ','Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141873,10,'S52.245G ','Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141872,10,'S52.245F ','Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141871,10,'S52.245E ','Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141870,10,'S52.245D ','Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141869,10,'S52.245C ','Nondisplaced spiral fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141868,10,'S52.245B ','Nondisplaced spiral fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141867,10,'S52.245A ','Nondisplaced spiral fracture of shaft of ulna, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141866,10,'S52.244S ','Nondisplaced spiral fracture of shaft of ulna, right arm, sequela','Y','0000-00-00 00:00:00'),(141865,10,'S52.244R ','Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141864,10,'S52.244Q ','Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141863,10,'S52.244P ','Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141862,10,'S52.244N ','Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141861,10,'S52.244M ','Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141860,10,'S52.244K ','Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141859,10,'S52.244J ','Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141858,10,'S52.244H ','Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141857,10,'S52.244G ','Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141856,10,'S52.244F ','Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141855,10,'S52.244E ','Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141854,10,'S52.244D ','Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141853,10,'S52.244C ','Nondisplaced spiral fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141852,10,'S52.244B ','Nondisplaced spiral fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141850,10,'S52.243S ','Displaced spiral fracture of shaft of ulna, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(141851,10,'S52.244A ','Nondisplaced spiral fracture of shaft of ulna, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141849,10,'S52.243R ','Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141848,10,'S52.243Q ','Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141847,10,'S52.243P ','Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141846,10,'S52.243N ','Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141845,10,'S52.243M ','Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141844,10,'S52.243K ','Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141843,10,'S52.243J ','Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141842,10,'S52.243H ','Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141841,10,'S52.243G ','Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141840,10,'S52.243F ','Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141839,10,'S52.243E ','Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141838,10,'S52.243D ','Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141837,10,'S52.243C ','Displaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141836,10,'S52.243B ','Displaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141835,10,'S52.243A ','Displaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141834,10,'S52.242S ','Displaced spiral fracture of shaft of ulna, left arm, sequela','Y','0000-00-00 00:00:00'),(141833,10,'S52.242R ','Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141832,10,'S52.242Q ','Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141831,10,'S52.242P ','Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141830,10,'S52.242N ','Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141829,10,'S52.242M ','Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141828,10,'S52.242K ','Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141827,10,'S52.242J ','Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141826,10,'S52.242H ','Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141825,10,'S52.242G ','Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141824,10,'S52.242F ','Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141823,10,'S52.242E ','Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141822,10,'S52.242D ','Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141821,10,'S52.242C ','Displaced spiral fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141820,10,'S52.242B ','Displaced spiral fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141819,10,'S52.242A ','Displaced spiral fracture of shaft of ulna, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141818,10,'S52.241S ','Displaced spiral fracture of shaft of ulna, right arm, sequela','Y','0000-00-00 00:00:00'),(141817,10,'S52.241R ','Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141816,10,'S52.241Q ','Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141815,10,'S52.241P ','Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141814,10,'S52.241N ','Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141813,10,'S52.241M ','Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141812,10,'S52.241K ','Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141811,10,'S52.241J ','Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141810,10,'S52.241H ','Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141809,10,'S52.241G ','Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141808,10,'S52.241F ','Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141807,10,'S52.241E ','Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141806,10,'S52.241D ','Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141805,10,'S52.241C ','Displaced spiral fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141804,10,'S52.241B ','Displaced spiral fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141803,10,'S52.241A ','Displaced spiral fracture of shaft of ulna, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141802,10,'S52.236S ','Nondisplaced oblique fracture of shaft of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(141801,10,'S52.236R ','Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141800,10,'S52.236Q ','Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141799,10,'S52.236P ','Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141798,10,'S52.236N ','Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141797,10,'S52.236M ','Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141796,10,'S52.236K ','Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141795,10,'S52.236J ','Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141794,10,'S52.236H ','Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141793,10,'S52.236G ','Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141792,10,'S52.236F ','Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141791,10,'S52.236E ','Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141790,10,'S52.236D ','Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141789,10,'S52.236C ','Nondisplaced oblique fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141788,10,'S52.236B ','Nondisplaced oblique fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141787,10,'S52.236A ','Nondisplaced oblique fracture of shaft of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141786,10,'S52.235S ','Nondisplaced oblique fracture of shaft of left ulna, sequela','Y','0000-00-00 00:00:00'),(141785,10,'S52.235R ','Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141784,10,'S52.235Q ','Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141783,10,'S52.235P ','Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141782,10,'S52.235N ','Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141781,10,'S52.235M ','Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141780,10,'S52.235K ','Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141779,10,'S52.235J ','Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141778,10,'S52.235H ','Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141777,10,'S52.235G ','Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141776,10,'S52.235F ','Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141775,10,'S52.235E ','Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141774,10,'S52.235D ','Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141773,10,'S52.235C ','Nondisplaced oblique fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141772,10,'S52.235B ','Nondisplaced oblique fracture of shaft of left ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141771,10,'S52.235A ','Nondisplaced oblique fracture of shaft of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141770,10,'S52.234S ','Nondisplaced oblique fracture of shaft of right ulna, sequela','Y','0000-00-00 00:00:00'),(141769,10,'S52.234R ','Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141768,10,'S52.234Q ','Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141767,10,'S52.234P ','Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141766,10,'S52.234N ','Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141765,10,'S52.234M ','Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141764,10,'S52.234K ','Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141763,10,'S52.234J ','Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141762,10,'S52.234H ','Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141761,10,'S52.234G ','Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141760,10,'S52.234F ','Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141759,10,'S52.234E ','Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141758,10,'S52.234D ','Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141757,10,'S52.234C ','Nondisplaced oblique fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141756,10,'S52.234B ','Nondisplaced oblique fracture of shaft of right ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141755,10,'S52.234A ','Nondisplaced oblique fracture of shaft of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141754,10,'S52.233S ','Displaced oblique fracture of shaft of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(141753,10,'S52.233R ','Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141752,10,'S52.233Q ','Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141751,10,'S52.233P ','Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141750,10,'S52.233N ','Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141749,10,'S52.233M ','Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141748,10,'S52.233K ','Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141747,10,'S52.233J ','Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141746,10,'S52.233H ','Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141745,10,'S52.233G ','Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141744,10,'S52.233F ','Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141743,10,'S52.233E ','Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141742,10,'S52.233D ','Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141741,10,'S52.233C ','Displaced oblique fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141740,10,'S52.233B ','Displaced oblique fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141739,10,'S52.233A ','Displaced oblique fracture of shaft of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141738,10,'S52.232S ','Displaced oblique fracture of shaft of left ulna, sequela','Y','0000-00-00 00:00:00'),(141737,10,'S52.232R ','Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141736,10,'S52.232Q ','Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141735,10,'S52.232P ','Displaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141734,10,'S52.232N ','Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141733,10,'S52.232M ','Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141732,10,'S52.232K ','Displaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141731,10,'S52.232J ','Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141730,10,'S52.232H ','Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141729,10,'S52.232G ','Displaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141728,10,'S52.232F ','Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141727,10,'S52.232E ','Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141726,10,'S52.232D ','Displaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141725,10,'S52.232C ','Displaced oblique fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141724,10,'S52.232B ','Displaced oblique fracture of shaft of left ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141723,10,'S52.232A ','Displaced oblique fracture of shaft of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141722,10,'S52.231S ','Displaced oblique fracture of shaft of right ulna, sequela','Y','0000-00-00 00:00:00'),(141721,10,'S52.231R ','Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141720,10,'S52.231Q ','Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141719,10,'S52.231P ','Displaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141718,10,'S52.231N ','Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141717,10,'S52.231M ','Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141716,10,'S52.231K ','Displaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141715,10,'S52.231J ','Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141714,10,'S52.231H ','Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141713,10,'S52.231G ','Displaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141712,10,'S52.231F ','Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141711,10,'S52.231E ','Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141710,10,'S52.231D ','Displaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141709,10,'S52.231C ','Displaced oblique fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141708,10,'S52.231B ','Displaced oblique fracture of shaft of right ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141707,10,'S52.231A ','Displaced oblique fracture of shaft of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141706,10,'S52.226S ','Nondisplaced transverse fracture of shaft of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(141705,10,'S52.226R ','Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141704,10,'S52.226Q ','Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141703,10,'S52.226P ','Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141702,10,'S52.226N ','Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141701,10,'S52.226M ','Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141700,10,'S52.226K ','Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141699,10,'S52.226J ','Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141698,10,'S52.226H ','Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141697,10,'S52.226G ','Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141696,10,'S52.226F ','Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141695,10,'S52.226E ','Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141694,10,'S52.226D ','Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141693,10,'S52.226C ','Nondisplaced transverse fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141692,10,'S52.226B ','Nondisplaced transverse fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141691,10,'S52.226A ','Nondisplaced transverse fracture of shaft of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141690,10,'S52.225S ','Nondisplaced transverse fracture of shaft of left ulna, sequela','Y','0000-00-00 00:00:00'),(141689,10,'S52.225R ','Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141688,10,'S52.225Q ','Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141687,10,'S52.225P ','Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141686,10,'S52.225N ','Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141685,10,'S52.225M ','Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141684,10,'S52.225K ','Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141683,10,'S52.225J ','Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141682,10,'S52.225H ','Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141681,10,'S52.225G ','Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141680,10,'S52.225F ','Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141679,10,'S52.225E ','Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141678,10,'S52.225D ','Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141677,10,'S52.225C ','Nondisplaced transverse fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141676,10,'S52.225B ','Nondisplaced transverse fracture of shaft of left ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141675,10,'S52.225A ','Nondisplaced transverse fracture of shaft of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141674,10,'S52.224S ','Nondisplaced transverse fracture of shaft of right ulna, sequela','Y','0000-00-00 00:00:00'),(141673,10,'S52.224R ','Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141672,10,'S52.224Q ','Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141671,10,'S52.224P ','Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141670,10,'S52.224N ','Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141669,10,'S52.224M ','Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141668,10,'S52.224K ','Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141667,10,'S52.224J ','Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141666,10,'S52.224H ','Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141665,10,'S52.224G ','Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141664,10,'S52.224F ','Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141663,10,'S52.224E ','Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141662,10,'S52.224D ','Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141661,10,'S52.224C ','Nondisplaced transverse fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141660,10,'S52.224B ','Nondisplaced transverse fracture of shaft of right ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141659,10,'S52.224A ','Nondisplaced transverse fracture of shaft of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141658,10,'S52.223S ','Displaced transverse fracture of shaft of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(141657,10,'S52.223R ','Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141656,10,'S52.223Q ','Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141655,10,'S52.223P ','Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141654,10,'S52.223N ','Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141653,10,'S52.223M ','Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141652,10,'S52.223K ','Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141651,10,'S52.223J ','Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141650,10,'S52.223H ','Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141649,10,'S52.223G ','Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141648,10,'S52.223F ','Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141647,10,'S52.223E ','Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141646,10,'S52.223D ','Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141645,10,'S52.223C ','Displaced transverse fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141644,10,'S52.223B ','Displaced transverse fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141643,10,'S52.223A ','Displaced transverse fracture of shaft of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141642,10,'S52.222S ','Displaced transverse fracture of shaft of left ulna, sequela','Y','0000-00-00 00:00:00'),(141641,10,'S52.222R ','Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141640,10,'S52.222Q ','Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141639,10,'S52.222P ','Displaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141638,10,'S52.222N ','Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141637,10,'S52.222M ','Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141636,10,'S52.222K ','Displaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141635,10,'S52.222J ','Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141634,10,'S52.222H ','Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141633,10,'S52.222G ','Displaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141632,10,'S52.222F ','Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141631,10,'S52.222E ','Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141630,10,'S52.222D ','Displaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141629,10,'S52.222C ','Displaced transverse fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141628,10,'S52.222B ','Displaced transverse fracture of shaft of left ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141627,10,'S52.222A ','Displaced transverse fracture of shaft of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141626,10,'S52.221S ','Displaced transverse fracture of shaft of right ulna, sequela','Y','0000-00-00 00:00:00'),(141625,10,'S52.221R ','Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141624,10,'S52.221Q ','Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141623,10,'S52.221P ','Displaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141622,10,'S52.221N ','Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141621,10,'S52.221M ','Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141620,10,'S52.221K ','Displaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141619,10,'S52.221J ','Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141618,10,'S52.221H ','Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141617,10,'S52.221G ','Displaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141616,10,'S52.221F ','Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141615,10,'S52.221E ','Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141614,10,'S52.221D ','Displaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141613,10,'S52.221C ','Displaced transverse fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141612,10,'S52.221B ','Displaced transverse fracture of shaft of right ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141611,10,'S52.221A ','Displaced transverse fracture of shaft of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141610,10,'S52.219S ','Greenstick fracture of shaft of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(141609,10,'S52.219P ','Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(141608,10,'S52.219K ','Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(141607,10,'S52.219G ','Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(141606,10,'S52.219D ','Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(141605,10,'S52.219A ','Greenstick fracture of shaft of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141604,10,'S52.212S ','Greenstick fracture of shaft of left ulna, sequela','Y','0000-00-00 00:00:00'),(141603,10,'S52.212P ','Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(141602,10,'S52.212K ','Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(141601,10,'S52.212G ','Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(141600,10,'S52.212D ','Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(141599,10,'S52.212A ','Greenstick fracture of shaft of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141598,10,'S52.211S ','Greenstick fracture of shaft of right ulna, sequela','Y','0000-00-00 00:00:00'),(141597,10,'S52.211P ','Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(141596,10,'S52.211K ','Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(141595,10,'S52.211G ','Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(141594,10,'S52.211D ','Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(141593,10,'S52.211A ','Greenstick fracture of shaft of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141592,10,'S52.209S ','Unspecified fracture of shaft of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(141591,10,'S52.209R ','Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141590,10,'S52.209Q ','Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141589,10,'S52.209P ','Unspecified fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141588,10,'S52.209N ','Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141587,10,'S52.209M ','Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141586,10,'S52.209K ','Unspecified fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141585,10,'S52.209J ','Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141584,10,'S52.209H ','Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141583,10,'S52.209G ','Unspecified fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141582,10,'S52.209F ','Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141581,10,'S52.209E ','Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141580,10,'S52.209D ','Unspecified fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141579,10,'S52.209C ','Unspecified fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141578,10,'S52.209B ','Unspecified fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141577,10,'S52.209A ','Unspecified fracture of shaft of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141576,10,'S52.202S ','Unspecified fracture of shaft of left ulna, sequela','Y','0000-00-00 00:00:00'),(141575,10,'S52.202R ','Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141574,10,'S52.202Q ','Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141573,10,'S52.202P ','Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141572,10,'S52.202N ','Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141571,10,'S52.202M ','Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141570,10,'S52.202K ','Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141569,10,'S52.202J ','Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141568,10,'S52.202H ','Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141567,10,'S52.202G ','Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141566,10,'S52.202F ','Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141565,10,'S52.202E ','Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141564,10,'S52.202D ','Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141563,10,'S52.202C ','Unspecified fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141562,10,'S52.202B ','Unspecified fracture of shaft of left ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141561,10,'S52.202A ','Unspecified fracture of shaft of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141560,10,'S52.201S ','Unspecified fracture of shaft of right ulna, sequela','Y','0000-00-00 00:00:00'),(141559,10,'S52.201R ','Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141558,10,'S52.201Q ','Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141557,10,'S52.201P ','Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141556,10,'S52.201N ','Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141555,10,'S52.201M ','Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141554,10,'S52.201K ','Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141553,10,'S52.201J ','Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141552,10,'S52.201H ','Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141551,10,'S52.201G ','Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141550,10,'S52.201F ','Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141549,10,'S52.201E ','Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141548,10,'S52.201D ','Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141547,10,'S52.201C ','Unspecified fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141546,10,'S52.201B ','Unspecified fracture of shaft of right ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141545,10,'S52.201A ','Unspecified fracture of shaft of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141544,10,'S52.189S ','Other fracture of upper end of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(141543,10,'S52.189R ','Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141542,10,'S52.189Q ','Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141541,10,'S52.189P ','Other fracture of upper end of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141540,10,'S52.189N ','Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141539,10,'S52.189M ','Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141538,10,'S52.189K ','Other fracture of upper end of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141537,10,'S52.189J ','Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141536,10,'S52.189H ','Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141535,10,'S52.189G ','Other fracture of upper end of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141534,10,'S52.189F ','Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141533,10,'S52.189E ','Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141532,10,'S52.189D ','Other fracture of upper end of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141531,10,'S52.189C ','Other fracture of upper end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141530,10,'S52.189B ','Other fracture of upper end of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141528,10,'S52.182S ','Other fracture of upper end of left radius, sequela','Y','0000-00-00 00:00:00'),(141529,10,'S52.189A ','Other fracture of upper end of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141527,10,'S52.182R ','Other fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141526,10,'S52.182Q ','Other fracture of upper end of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141525,10,'S52.182P ','Other fracture of upper end of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141524,10,'S52.182N ','Other fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141523,10,'S52.182M ','Other fracture of upper end of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141522,10,'S52.182K ','Other fracture of upper end of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141521,10,'S52.182J ','Other fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141520,10,'S52.182H ','Other fracture of upper end of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141519,10,'S52.182G ','Other fracture of upper end of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141518,10,'S52.182F ','Other fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141517,10,'S52.182E ','Other fracture of upper end of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141516,10,'S52.182D ','Other fracture of upper end of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141515,10,'S52.182C ','Other fracture of upper end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141514,10,'S52.182B ','Other fracture of upper end of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141513,10,'S52.182A ','Other fracture of upper end of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141512,10,'S52.181S ','Other fracture of upper end of right radius, sequela','Y','0000-00-00 00:00:00'),(141511,10,'S52.181R ','Other fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141510,10,'S52.181Q ','Other fracture of upper end of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141509,10,'S52.181P ','Other fracture of upper end of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141508,10,'S52.181N ','Other fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141507,10,'S52.181M ','Other fracture of upper end of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141506,10,'S52.181K ','Other fracture of upper end of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141505,10,'S52.181J ','Other fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141504,10,'S52.181H ','Other fracture of upper end of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141503,10,'S52.181G ','Other fracture of upper end of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141502,10,'S52.181F ','Other fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141501,10,'S52.181E ','Other fracture of upper end of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141500,10,'S52.181D ','Other fracture of upper end of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141499,10,'S52.181C ','Other fracture of upper end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141498,10,'S52.181B ','Other fracture of upper end of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141496,10,'S52.136S ','Nondisplaced fracture of neck of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(141497,10,'S52.181A ','Other fracture of upper end of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141495,10,'S52.136R ','Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141494,10,'S52.136Q ','Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141493,10,'S52.136P ','Nondisplaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141492,10,'S52.136N ','Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141491,10,'S52.136M ','Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141490,10,'S52.136K ','Nondisplaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141489,10,'S52.136J ','Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141488,10,'S52.136H ','Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141487,10,'S52.136G ','Nondisplaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141486,10,'S52.136F ','Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141485,10,'S52.136E ','Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141484,10,'S52.136D ','Nondisplaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141483,10,'S52.136C ','Nondisplaced fracture of neck of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141482,10,'S52.136B ','Nondisplaced fracture of neck of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141481,10,'S52.136A ','Nondisplaced fracture of neck of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141480,10,'S52.135S ','Nondisplaced fracture of neck of left radius, sequela','Y','0000-00-00 00:00:00'),(141479,10,'S52.135R ','Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141478,10,'S52.135Q ','Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141477,10,'S52.135P ','Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141476,10,'S52.135N ','Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141475,10,'S52.135M ','Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141474,10,'S52.135K ','Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141473,10,'S52.135J ','Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141472,10,'S52.135H ','Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141471,10,'S52.135G ','Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141470,10,'S52.135F ','Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141469,10,'S52.135E ','Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141468,10,'S52.135D ','Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141467,10,'S52.135C ','Nondisplaced fracture of neck of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141466,10,'S52.135B ','Nondisplaced fracture of neck of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141465,10,'S52.135A ','Nondisplaced fracture of neck of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141464,10,'S52.134S ','Nondisplaced fracture of neck of right radius, sequela','Y','0000-00-00 00:00:00'),(141463,10,'S52.134R ','Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141462,10,'S52.134Q ','Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141461,10,'S52.134P ','Nondisplaced fracture of neck of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141460,10,'S52.134N ','Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141459,10,'S52.134M ','Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141458,10,'S52.134K ','Nondisplaced fracture of neck of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141457,10,'S52.134J ','Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141456,10,'S52.134H ','Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141455,10,'S52.134G ','Nondisplaced fracture of neck of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141454,10,'S52.134F ','Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141453,10,'S52.134E ','Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141452,10,'S52.134D ','Nondisplaced fracture of neck of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141451,10,'S52.134C ','Nondisplaced fracture of neck of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141450,10,'S52.134B ','Nondisplaced fracture of neck of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141448,10,'S52.133S ','Displaced fracture of neck of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(141449,10,'S52.134A ','Nondisplaced fracture of neck of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141447,10,'S52.133R ','Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141446,10,'S52.133Q ','Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141445,10,'S52.133P ','Displaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141444,10,'S52.133N ','Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141443,10,'S52.133M ','Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141442,10,'S52.133K ','Displaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141441,10,'S52.133J ','Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141440,10,'S52.133H ','Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141439,10,'S52.133G ','Displaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141438,10,'S52.133F ','Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141437,10,'S52.133E ','Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141436,10,'S52.133D ','Displaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141435,10,'S52.133C ','Displaced fracture of neck of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141434,10,'S52.133B ','Displaced fracture of neck of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141432,10,'S52.132S ','Displaced fracture of neck of left radius, sequela','Y','0000-00-00 00:00:00'),(141433,10,'S52.133A ','Displaced fracture of neck of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141431,10,'S52.132R ','Displaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141430,10,'S52.132Q ','Displaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141429,10,'S52.132P ','Displaced fracture of neck of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141428,10,'S52.132N ','Displaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141427,10,'S52.132M ','Displaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141426,10,'S52.132K ','Displaced fracture of neck of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141425,10,'S52.132J ','Displaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141424,10,'S52.132H ','Displaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141423,10,'S52.132G ','Displaced fracture of neck of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141422,10,'S52.132F ','Displaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141421,10,'S52.132E ','Displaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141420,10,'S52.132D ','Displaced fracture of neck of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141419,10,'S52.132C ','Displaced fracture of neck of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141418,10,'S52.132B ','Displaced fracture of neck of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141416,10,'S52.131S ','Displaced fracture of neck of right radius, sequela','Y','0000-00-00 00:00:00'),(141417,10,'S52.132A ','Displaced fracture of neck of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141415,10,'S52.131R ','Displaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141414,10,'S52.131Q ','Displaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141413,10,'S52.131P ','Displaced fracture of neck of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141412,10,'S52.131N ','Displaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141411,10,'S52.131M ','Displaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141410,10,'S52.131K ','Displaced fracture of neck of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141409,10,'S52.131J ','Displaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141408,10,'S52.131H ','Displaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141407,10,'S52.131G ','Displaced fracture of neck of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141406,10,'S52.131F ','Displaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141405,10,'S52.131E ','Displaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141404,10,'S52.131D ','Displaced fracture of neck of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141403,10,'S52.131C ','Displaced fracture of neck of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141402,10,'S52.131B ','Displaced fracture of neck of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141401,10,'S52.131A ','Displaced fracture of neck of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141400,10,'S52.126S ','Nondisplaced fracture of head of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(141399,10,'S52.126R ','Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141398,10,'S52.126Q ','Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141397,10,'S52.126P ','Nondisplaced fracture of head of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141396,10,'S52.126N ','Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141395,10,'S52.126M ','Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141394,10,'S52.126K ','Nondisplaced fracture of head of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141393,10,'S52.126J ','Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141392,10,'S52.126H ','Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141391,10,'S52.126G ','Nondisplaced fracture of head of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141390,10,'S52.126F ','Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141389,10,'S52.126E ','Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141388,10,'S52.126D ','Nondisplaced fracture of head of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141387,10,'S52.126C ','Nondisplaced fracture of head of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141386,10,'S52.126B ','Nondisplaced fracture of head of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141385,10,'S52.126A ','Nondisplaced fracture of head of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141384,10,'S52.125S ','Nondisplaced fracture of head of left radius, sequela','Y','0000-00-00 00:00:00'),(141383,10,'S52.125R ','Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141382,10,'S52.125Q ','Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141381,10,'S52.125P ','Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141380,10,'S52.125N ','Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141379,10,'S52.125M ','Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141378,10,'S52.125K ','Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141377,10,'S52.125J ','Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141376,10,'S52.125H ','Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141375,10,'S52.125G ','Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141374,10,'S52.125F ','Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141373,10,'S52.125E ','Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141372,10,'S52.125D ','Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141371,10,'S52.125C ','Nondisplaced fracture of head of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141370,10,'S52.125B ','Nondisplaced fracture of head of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141369,10,'S52.125A ','Nondisplaced fracture of head of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141368,10,'S52.124S ','Nondisplaced fracture of head of right radius, sequela','Y','0000-00-00 00:00:00'),(141367,10,'S52.124R ','Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141366,10,'S52.124Q ','Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141365,10,'S52.124P ','Nondisplaced fracture of head of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141364,10,'S52.124N ','Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141363,10,'S52.124M ','Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141362,10,'S52.124K ','Nondisplaced fracture of head of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141361,10,'S52.124J ','Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141360,10,'S52.124H ','Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141359,10,'S52.124G ','Nondisplaced fracture of head of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141358,10,'S52.124F ','Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141357,10,'S52.124E ','Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141356,10,'S52.124D ','Nondisplaced fracture of head of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141355,10,'S52.124C ','Nondisplaced fracture of head of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141354,10,'S52.124B ','Nondisplaced fracture of head of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141353,10,'S52.124A ','Nondisplaced fracture of head of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141352,10,'S52.123S ','Displaced fracture of head of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(141351,10,'S52.123R ','Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141350,10,'S52.123Q ','Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141349,10,'S52.123P ','Displaced fracture of head of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141348,10,'S52.123N ','Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141347,10,'S52.123M ','Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141346,10,'S52.123K ','Displaced fracture of head of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141345,10,'S52.123J ','Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141344,10,'S52.123H ','Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141343,10,'S52.123G ','Displaced fracture of head of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141342,10,'S52.123F ','Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141341,10,'S52.123E ','Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141340,10,'S52.123D ','Displaced fracture of head of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141339,10,'S52.123C ','Displaced fracture of head of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141338,10,'S52.123B ','Displaced fracture of head of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141337,10,'S52.123A ','Displaced fracture of head of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141336,10,'S52.122S ','Displaced fracture of head of left radius, sequela','Y','0000-00-00 00:00:00'),(141335,10,'S52.122R ','Displaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141334,10,'S52.122Q ','Displaced fracture of head of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141333,10,'S52.122P ','Displaced fracture of head of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141332,10,'S52.122N ','Displaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141331,10,'S52.122M ','Displaced fracture of head of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141330,10,'S52.122K ','Displaced fracture of head of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141329,10,'S52.122J ','Displaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141328,10,'S52.122H ','Displaced fracture of head of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141327,10,'S52.122G ','Displaced fracture of head of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141326,10,'S52.122F ','Displaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141325,10,'S52.122E ','Displaced fracture of head of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141324,10,'S52.122D ','Displaced fracture of head of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141323,10,'S52.122C ','Displaced fracture of head of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141322,10,'S52.122B ','Displaced fracture of head of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141321,10,'S52.122A ','Displaced fracture of head of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141320,10,'S52.121S ','Displaced fracture of head of right radius, sequela','Y','0000-00-00 00:00:00'),(141319,10,'S52.121R ','Displaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141318,10,'S52.121Q ','Displaced fracture of head of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141317,10,'S52.121P ','Displaced fracture of head of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141316,10,'S52.121N ','Displaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141315,10,'S52.121M ','Displaced fracture of head of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141314,10,'S52.121K ','Displaced fracture of head of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141313,10,'S52.121J ','Displaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141312,10,'S52.121H ','Displaced fracture of head of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141311,10,'S52.121G ','Displaced fracture of head of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141310,10,'S52.121F ','Displaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141309,10,'S52.121E ','Displaced fracture of head of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141308,10,'S52.121D ','Displaced fracture of head of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141307,10,'S52.121C ','Displaced fracture of head of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141306,10,'S52.121B ','Displaced fracture of head of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141305,10,'S52.121A ','Displaced fracture of head of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141304,10,'S52.119S ','Torus fracture of upper end of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(141303,10,'S52.119P ','Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(141302,10,'S52.119K ','Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(141301,10,'S52.119G ','Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(141300,10,'S52.119D ','Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(141298,10,'S52.112S ','Torus fracture of upper end of left radius, sequela','Y','0000-00-00 00:00:00'),(141299,10,'S52.119A ','Torus fracture of upper end of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141297,10,'S52.112P ','Torus fracture of upper end of left radius, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(141296,10,'S52.112K ','Torus fracture of upper end of left radius, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(141295,10,'S52.112G ','Torus fracture of upper end of left radius, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(141294,10,'S52.112D ','Torus fracture of upper end of left radius, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(141292,10,'S52.111S ','Torus fracture of upper end of right radius, sequela','Y','0000-00-00 00:00:00'),(141293,10,'S52.112A ','Torus fracture of upper end of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141291,10,'S52.111P ','Torus fracture of upper end of right radius, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(141290,10,'S52.111K ','Torus fracture of upper end of right radius, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(141289,10,'S52.111G ','Torus fracture of upper end of right radius, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(141288,10,'S52.111D ','Torus fracture of upper end of right radius, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(141287,10,'S52.111A ','Torus fracture of upper end of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141286,10,'S52.109S ','Unspecified fracture of upper end of unspecified radius, sequela','Y','0000-00-00 00:00:00'),(141285,10,'S52.109R ','Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141284,10,'S52.109Q ','Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141283,10,'S52.109P ','Unspecified fracture of upper end of unspecified radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141282,10,'S52.109N ','Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141281,10,'S52.109M ','Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141280,10,'S52.109K ','Unspecified fracture of upper end of unspecified radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141279,10,'S52.109J ','Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141278,10,'S52.109H ','Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141277,10,'S52.109G ','Unspecified fracture of upper end of unspecified radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141276,10,'S52.109F ','Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141275,10,'S52.109E ','Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141274,10,'S52.109D ','Unspecified fracture of upper end of unspecified radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141273,10,'S52.109C ','Unspecified fracture of upper end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141272,10,'S52.109B ','Unspecified fracture of upper end of unspecified radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141271,10,'S52.109A ','Unspecified fracture of upper end of unspecified radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141270,10,'S52.102S ','Unspecified fracture of upper end of left radius, sequela','Y','0000-00-00 00:00:00'),(141269,10,'S52.102R ','Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141268,10,'S52.102Q ','Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141267,10,'S52.102P ','Unspecified fracture of upper end of left radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141266,10,'S52.102N ','Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141265,10,'S52.102M ','Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141264,10,'S52.102K ','Unspecified fracture of upper end of left radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141263,10,'S52.102J ','Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141262,10,'S52.102H ','Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141261,10,'S52.102G ','Unspecified fracture of upper end of left radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141260,10,'S52.102F ','Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141259,10,'S52.102E ','Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141258,10,'S52.102D ','Unspecified fracture of upper end of left radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141257,10,'S52.102C ','Unspecified fracture of upper end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141256,10,'S52.102B ','Unspecified fracture of upper end of left radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141255,10,'S52.102A ','Unspecified fracture of upper end of left radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141254,10,'S52.101S ','Unspecified fracture of upper end of right radius, sequela','Y','0000-00-00 00:00:00'),(141253,10,'S52.101R ','Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141252,10,'S52.101Q ','Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141251,10,'S52.101P ','Unspecified fracture of upper end of right radius, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141250,10,'S52.101N ','Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141249,10,'S52.101M ','Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141248,10,'S52.101K ','Unspecified fracture of upper end of right radius, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141247,10,'S52.101J ','Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141246,10,'S52.101H ','Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141245,10,'S52.101G ','Unspecified fracture of upper end of right radius, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141244,10,'S52.101F ','Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141243,10,'S52.101E ','Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141242,10,'S52.101D ','Unspecified fracture of upper end of right radius, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141241,10,'S52.101C ','Unspecified fracture of upper end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141240,10,'S52.101B ','Unspecified fracture of upper end of right radius, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141239,10,'S52.101A ','Unspecified fracture of upper end of right radius, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141238,10,'S52.099S ','Other fracture of upper end of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(141237,10,'S52.099R ','Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141236,10,'S52.099Q ','Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141235,10,'S52.099P ','Other fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141234,10,'S52.099N ','Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141233,10,'S52.099M ','Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141232,10,'S52.099K ','Other fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141231,10,'S52.099J ','Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141230,10,'S52.099H ','Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141229,10,'S52.099G ','Other fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141228,10,'S52.099F ','Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141227,10,'S52.099E ','Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141226,10,'S52.099D ','Other fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141225,10,'S52.099C ','Other fracture of upper end of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141224,10,'S52.099B ','Other fracture of upper end of unspecified ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141223,10,'S52.099A ','Other fracture of upper end of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141222,10,'S52.092S ','Other fracture of upper end of left ulna, sequela','Y','0000-00-00 00:00:00'),(141221,10,'S52.092R ','Other fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141220,10,'S52.092Q ','Other fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141219,10,'S52.092P ','Other fracture of upper end of left ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141218,10,'S52.092N ','Other fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141217,10,'S52.092M ','Other fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141216,10,'S52.092K ','Other fracture of upper end of left ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141215,10,'S52.092J ','Other fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141214,10,'S52.092H ','Other fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141213,10,'S52.092G ','Other fracture of upper end of left ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141212,10,'S52.092F ','Other fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141211,10,'S52.092E ','Other fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141210,10,'S52.092D ','Other fracture of upper end of left ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141209,10,'S52.092C ','Other fracture of upper end of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141208,10,'S52.092B ','Other fracture of upper end of left ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141207,10,'S52.092A ','Other fracture of upper end of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141206,10,'S52.091S ','Other fracture of upper end of right ulna, sequela','Y','0000-00-00 00:00:00'),(141205,10,'S52.091R ','Other fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141204,10,'S52.091Q ','Other fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141203,10,'S52.091P ','Other fracture of upper end of right ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141202,10,'S52.091N ','Other fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141201,10,'S52.091M ','Other fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141200,10,'S52.091K ','Other fracture of upper end of right ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141199,10,'S52.091J ','Other fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141198,10,'S52.091H ','Other fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141197,10,'S52.091G ','Other fracture of upper end of right ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141196,10,'S52.091F ','Other fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141195,10,'S52.091E ','Other fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141194,10,'S52.091D ','Other fracture of upper end of right ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141193,10,'S52.091C ','Other fracture of upper end of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141192,10,'S52.091B ','Other fracture of upper end of right ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141191,10,'S52.091A ','Other fracture of upper end of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141190,10,'S52.046S ','Nondisplaced fracture of coronoid process of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(141189,10,'S52.046R ','Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141188,10,'S52.046Q ','Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141187,10,'S52.046P ','Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141186,10,'S52.046N ','Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141185,10,'S52.046M ','Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141184,10,'S52.046K ','Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141183,10,'S52.046J ','Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141182,10,'S52.046H ','Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141181,10,'S52.046G ','Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141180,10,'S52.046F ','Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141179,10,'S52.046E ','Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141178,10,'S52.046D ','Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141177,10,'S52.046C ','Nondisplaced fracture of coronoid process of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141176,10,'S52.046B ','Nondisplaced fracture of coronoid process of unspecified ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141175,10,'S52.046A ','Nondisplaced fracture of coronoid process of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141174,10,'S52.045S ','Nondisplaced fracture of coronoid process of left ulna, sequela','Y','0000-00-00 00:00:00'),(141173,10,'S52.045R ','Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141172,10,'S52.045Q ','Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141171,10,'S52.045P ','Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141170,10,'S52.045N ','Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141169,10,'S52.045M ','Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141168,10,'S52.045K ','Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141167,10,'S52.045J ','Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141166,10,'S52.045H ','Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141165,10,'S52.045G ','Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141164,10,'S52.045F ','Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141163,10,'S52.045E ','Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141162,10,'S52.045D ','Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141161,10,'S52.045C ','Nondisplaced fracture of coronoid process of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141160,10,'S52.045B ','Nondisplaced fracture of coronoid process of left ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141159,10,'S52.045A ','Nondisplaced fracture of coronoid process of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141158,10,'S52.044S ','Nondisplaced fracture of coronoid process of right ulna, sequela','Y','0000-00-00 00:00:00'),(141157,10,'S52.044R ','Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141156,10,'S52.044Q ','Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141155,10,'S52.044P ','Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141154,10,'S52.044N ','Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141153,10,'S52.044M ','Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141152,10,'S52.044K ','Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141151,10,'S52.044J ','Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141150,10,'S52.044H ','Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141149,10,'S52.044G ','Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141148,10,'S52.044F ','Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141147,10,'S52.044E ','Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141146,10,'S52.044D ','Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141145,10,'S52.044C ','Nondisplaced fracture of coronoid process of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141144,10,'S52.044B ','Nondisplaced fracture of coronoid process of right ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141143,10,'S52.044A ','Nondisplaced fracture of coronoid process of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141142,10,'S52.043S ','Displaced fracture of coronoid process of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(141141,10,'S52.043R ','Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141140,10,'S52.043Q ','Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141139,10,'S52.043P ','Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141138,10,'S52.043N ','Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141137,10,'S52.043M ','Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141136,10,'S52.043K ','Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141135,10,'S52.043J ','Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141134,10,'S52.043H ','Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141133,10,'S52.043G ','Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141132,10,'S52.043F ','Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141131,10,'S52.043E ','Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141130,10,'S52.043D ','Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141129,10,'S52.043C ','Displaced fracture of coronoid process of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141128,10,'S52.043B ','Displaced fracture of coronoid process of unspecified ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141127,10,'S52.043A ','Displaced fracture of coronoid process of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141126,10,'S52.042S ','Displaced fracture of coronoid process of left ulna, sequela','Y','0000-00-00 00:00:00'),(141125,10,'S52.042R ','Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141124,10,'S52.042Q ','Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141123,10,'S52.042P ','Displaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141122,10,'S52.042N ','Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141121,10,'S52.042M ','Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141120,10,'S52.042K ','Displaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141119,10,'S52.042J ','Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141118,10,'S52.042H ','Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141117,10,'S52.042G ','Displaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141116,10,'S52.042F ','Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141115,10,'S52.042E ','Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141114,10,'S52.042D ','Displaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141113,10,'S52.042C ','Displaced fracture of coronoid process of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141112,10,'S52.042B ','Displaced fracture of coronoid process of left ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141110,10,'S52.041S ','Displaced fracture of coronoid process of right ulna, sequela','Y','0000-00-00 00:00:00'),(141111,10,'S52.042A ','Displaced fracture of coronoid process of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141109,10,'S52.041R ','Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141108,10,'S52.041Q ','Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141107,10,'S52.041P ','Displaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141106,10,'S52.041N ','Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141105,10,'S52.041M ','Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141104,10,'S52.041K ','Displaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141103,10,'S52.041J ','Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141102,10,'S52.041H ','Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141101,10,'S52.041G ','Displaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141100,10,'S52.041F ','Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141099,10,'S52.041E ','Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141098,10,'S52.041D ','Displaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141097,10,'S52.041C ','Displaced fracture of coronoid process of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141096,10,'S52.041B ','Displaced fracture of coronoid process of right ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141095,10,'S52.041A ','Displaced fracture of coronoid process of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141094,10,'S52.036S ','Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(141093,10,'S52.036R ','Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141092,10,'S52.036Q ','Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141091,10,'S52.036P ','Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141090,10,'S52.036N ','Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141089,10,'S52.036M ','Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141088,10,'S52.036K ','Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141087,10,'S52.036J ','Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141086,10,'S52.036H ','Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141085,10,'S52.036G ','Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141084,10,'S52.036F ','Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141083,10,'S52.036E ','Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141082,10,'S52.036D ','Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141081,10,'S52.036C ','Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141080,10,'S52.036B ','Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141079,10,'S52.036A ','Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141078,10,'S52.035S ','Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, sequela','Y','0000-00-00 00:00:00'),(141077,10,'S52.035R ','Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141076,10,'S52.035Q ','Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141075,10,'S52.035P ','Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141074,10,'S52.035N ','Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141073,10,'S52.035M ','Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141072,10,'S52.035K ','Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141071,10,'S52.035J ','Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141070,10,'S52.035H ','Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141069,10,'S52.035G ','Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141068,10,'S52.035F ','Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141067,10,'S52.035E ','Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141066,10,'S52.035D ','Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141065,10,'S52.035C ','Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141064,10,'S52.035B ','Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141063,10,'S52.035A ','Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141062,10,'S52.034S ','Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, sequela','Y','0000-00-00 00:00:00'),(141061,10,'S52.034R ','Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141060,10,'S52.034Q ','Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141059,10,'S52.034P ','Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141058,10,'S52.034N ','Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141057,10,'S52.034M ','Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141056,10,'S52.034K ','Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141055,10,'S52.034J ','Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141054,10,'S52.034H ','Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141053,10,'S52.034G ','Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141052,10,'S52.034F ','Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141051,10,'S52.034E ','Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141050,10,'S52.034D ','Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141049,10,'S52.034C ','Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141048,10,'S52.034B ','Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141047,10,'S52.034A ','Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141046,10,'S52.033S ','Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(141045,10,'S52.033R ','Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141044,10,'S52.033Q ','Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141043,10,'S52.033P ','Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141042,10,'S52.033N ','Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141041,10,'S52.033M ','Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141040,10,'S52.033K ','Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141039,10,'S52.033J ','Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141038,10,'S52.033H ','Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141037,10,'S52.033G ','Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141036,10,'S52.033F ','Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141035,10,'S52.033E ','Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141034,10,'S52.033D ','Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141033,10,'S52.033C ','Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141032,10,'S52.033B ','Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141031,10,'S52.033A ','Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141030,10,'S52.032S ','Displaced fracture of olecranon process with intraarticular extension of left ulna, sequela','Y','0000-00-00 00:00:00'),(141029,10,'S52.032R ','Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141028,10,'S52.032Q ','Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141027,10,'S52.032P ','Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141026,10,'S52.032N ','Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141025,10,'S52.032M ','Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141024,10,'S52.032K ','Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141023,10,'S52.032J ','Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141022,10,'S52.032H ','Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141021,10,'S52.032G ','Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141020,10,'S52.032F ','Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141019,10,'S52.032E ','Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141018,10,'S52.032D ','Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141017,10,'S52.032C ','Displaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141016,10,'S52.032B ','Displaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(141015,10,'S52.032A ','Displaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(141014,10,'S52.031S ','Displaced fracture of olecranon process with intraarticular extension of right ulna, sequela','Y','0000-00-00 00:00:00'),(141013,10,'S52.031R ','Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(141012,10,'S52.031Q ','Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(141011,10,'S52.031P ','Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(141010,10,'S52.031N ','Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(141009,10,'S52.031M ','Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(141008,10,'S52.031K ','Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(141007,10,'S52.031J ','Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(141006,10,'S52.031H ','Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(141005,10,'S52.031G ','Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(141004,10,'S52.031F ','Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(141003,10,'S52.031E ','Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(141002,10,'S52.031D ','Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(141001,10,'S52.031C ','Displaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(141000,10,'S52.031B ','Displaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(140999,10,'S52.031A ','Displaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140998,10,'S52.026S ','Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(140997,10,'S52.026R ','Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(140996,10,'S52.026Q ','Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(140995,10,'S52.026P ','Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(140994,10,'S52.026N ','Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(140993,10,'S52.026M ','Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(140992,10,'S52.026K ','Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(140991,10,'S52.026J ','Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(140990,10,'S52.026H ','Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(140989,10,'S52.026G ','Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(140988,10,'S52.026F ','Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(140987,10,'S52.026E ','Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(140986,10,'S52.026D ','Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(140985,10,'S52.026C ','Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(140984,10,'S52.026B ','Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(140983,10,'S52.026A ','Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140982,10,'S52.025S ','Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, sequela','Y','0000-00-00 00:00:00'),(140981,10,'S52.025R ','Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(140980,10,'S52.025Q ','Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(140979,10,'S52.025P ','Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(140978,10,'S52.025N ','Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(140977,10,'S52.025M ','Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(140976,10,'S52.025K ','Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(140975,10,'S52.025J ','Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(140974,10,'S52.025H ','Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(140973,10,'S52.025G ','Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(140972,10,'S52.025F ','Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(140971,10,'S52.025E ','Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(140970,10,'S52.025D ','Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(140969,10,'S52.025C ','Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(140968,10,'S52.025B ','Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(140967,10,'S52.025A ','Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140966,10,'S52.024S ','Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, sequela','Y','0000-00-00 00:00:00'),(140965,10,'S52.024R ','Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(140964,10,'S52.024Q ','Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(140963,10,'S52.024P ','Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(140962,10,'S52.024N ','Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(140961,10,'S52.024M ','Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(140960,10,'S52.024K ','Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(140959,10,'S52.024J ','Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(140958,10,'S52.024H ','Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(140957,10,'S52.024G ','Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(140956,10,'S52.024F ','Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(140955,10,'S52.024E ','Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(140954,10,'S52.024D ','Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(140953,10,'S52.024C ','Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(140952,10,'S52.024B ','Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(140951,10,'S52.024A ','Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140950,10,'S52.023S ','Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(140949,10,'S52.023R ','Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(140948,10,'S52.023Q ','Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(140947,10,'S52.023P ','Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(140946,10,'S52.023N ','Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(140945,10,'S52.023M ','Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(140944,10,'S52.023K ','Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(140943,10,'S52.023J ','Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(140942,10,'S52.023H ','Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(140941,10,'S52.023G ','Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(140940,10,'S52.023F ','Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(140939,10,'S52.023E ','Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(140938,10,'S52.023D ','Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(140937,10,'S52.023C ','Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(140936,10,'S52.023B ','Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(140935,10,'S52.023A ','Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140934,10,'S52.022S ','Displaced fracture of olecranon process without intraarticular extension of left ulna, sequela','Y','0000-00-00 00:00:00'),(140933,10,'S52.022R ','Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(140932,10,'S52.022Q ','Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(140931,10,'S52.022P ','Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(140930,10,'S52.022N ','Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(140929,10,'S52.022M ','Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(140928,10,'S52.022K ','Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(140927,10,'S52.022J ','Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(140926,10,'S52.022H ','Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(140925,10,'S52.022G ','Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(140924,10,'S52.022F ','Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(140923,10,'S52.022E ','Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(140922,10,'S52.022D ','Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(140921,10,'S52.022C ','Displaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(140920,10,'S52.022B ','Displaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(140919,10,'S52.022A ','Displaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140918,10,'S52.021S ','Displaced fracture of olecranon process without intraarticular extension of right ulna, sequela','Y','0000-00-00 00:00:00'),(140917,10,'S52.021R ','Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(140916,10,'S52.021Q ','Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(140915,10,'S52.021P ','Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(140914,10,'S52.021N ','Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(140913,10,'S52.021M ','Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(140912,10,'S52.021K ','Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(140911,10,'S52.021J ','Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(140910,10,'S52.021H ','Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(140909,10,'S52.021G ','Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(140908,10,'S52.021F ','Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(140907,10,'S52.021E ','Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(140906,10,'S52.021D ','Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(140905,10,'S52.021C ','Displaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(140904,10,'S52.021B ','Displaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(140903,10,'S52.021A ','Displaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140902,10,'S52.019S ','Torus fracture of upper end of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(140901,10,'S52.019P ','Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140900,10,'S52.019K ','Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140899,10,'S52.019G ','Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140898,10,'S52.019D ','Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140897,10,'S52.019A ','Torus fracture of upper end of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140896,10,'S52.012S ','Torus fracture of upper end of left ulna, sequela','Y','0000-00-00 00:00:00'),(140895,10,'S52.012P ','Torus fracture of upper end of left ulna, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140894,10,'S52.012K ','Torus fracture of upper end of left ulna, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140893,10,'S52.012G ','Torus fracture of upper end of left ulna, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140892,10,'S52.012D ','Torus fracture of upper end of left ulna, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140891,10,'S52.012A ','Torus fracture of upper end of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140890,10,'S52.011S ','Torus fracture of upper end of right ulna, sequela','Y','0000-00-00 00:00:00'),(140889,10,'S52.011P ','Torus fracture of upper end of right ulna, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140888,10,'S52.011K ','Torus fracture of upper end of right ulna, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140887,10,'S52.011G ','Torus fracture of upper end of right ulna, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140886,10,'S52.011D ','Torus fracture of upper end of right ulna, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140885,10,'S52.011A ','Torus fracture of upper end of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140884,10,'S52.009S ','Unspecified fracture of upper end of unspecified ulna, sequela','Y','0000-00-00 00:00:00'),(140883,10,'S52.009R ','Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(140882,10,'S52.009Q ','Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(140881,10,'S52.009P ','Unspecified fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(140880,10,'S52.009N ','Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(140879,10,'S52.009M ','Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(140878,10,'S52.009K ','Unspecified fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(140877,10,'S52.009J ','Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(140876,10,'S52.009H ','Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(140875,10,'S52.009G ','Unspecified fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(140874,10,'S52.009F ','Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(140873,10,'S52.009E ','Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(140872,10,'S52.009D ','Unspecified fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(140871,10,'S52.009C ','Unspecified fracture of upper end of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(140870,10,'S52.009B ','Unspecified fracture of upper end of unspecified ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(140869,10,'S52.009A ','Unspecified fracture of upper end of unspecified ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140868,10,'S52.002S ','Unspecified fracture of upper end of left ulna, sequela','Y','0000-00-00 00:00:00'),(140867,10,'S52.002R ','Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(140866,10,'S52.002Q ','Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(140865,10,'S52.002P ','Unspecified fracture of upper end of left ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(140864,10,'S52.002N ','Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(140863,10,'S52.002M ','Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(140862,10,'S52.002K ','Unspecified fracture of upper end of left ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(140861,10,'S52.002J ','Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(140860,10,'S52.002H ','Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(140859,10,'S52.002G ','Unspecified fracture of upper end of left ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(140858,10,'S52.002F ','Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(140857,10,'S52.002E ','Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(140856,10,'S52.002D ','Unspecified fracture of upper end of left ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(140855,10,'S52.002C ','Unspecified fracture of upper end of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(140854,10,'S52.002B ','Unspecified fracture of upper end of left ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(140853,10,'S52.002A ','Unspecified fracture of upper end of left ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140852,10,'S52.001S ','Unspecified fracture of upper end of right ulna, sequela','Y','0000-00-00 00:00:00'),(140851,10,'S52.001R ','Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion','Y','0000-00-00 00:00:00'),(140850,10,'S52.001Q ','Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with malunion','Y','0000-00-00 00:00:00'),(140849,10,'S52.001P ','Unspecified fracture of upper end of right ulna, subsequent encounter for closed fracture with malunion','Y','0000-00-00 00:00:00'),(140848,10,'S52.001N ','Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion','Y','0000-00-00 00:00:00'),(140847,10,'S52.001M ','Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with nonunion','Y','0000-00-00 00:00:00'),(140846,10,'S52.001K ','Unspecified fracture of upper end of right ulna, subsequent encounter for closed fracture with nonunion','Y','0000-00-00 00:00:00'),(140845,10,'S52.001J ','Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing','Y','0000-00-00 00:00:00'),(140844,10,'S52.001H ','Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with delayed healing','Y','0000-00-00 00:00:00'),(140843,10,'S52.001G ','Unspecified fracture of upper end of right ulna, subsequent encounter for closed fracture with delayed healing','Y','0000-00-00 00:00:00'),(140842,10,'S52.001F ','Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing','Y','0000-00-00 00:00:00'),(140841,10,'S52.001E ','Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with routine healing','Y','0000-00-00 00:00:00'),(140840,10,'S52.001D ','Unspecified fracture of upper end of right ulna, subsequent encounter for closed fracture with routine healing','Y','0000-00-00 00:00:00'),(140839,10,'S52.001C ','Unspecified fracture of upper end of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC','Y','0000-00-00 00:00:00'),(140838,10,'S52.001B ','Unspecified fracture of upper end of right ulna, initial encounter for open fracture type I or II','Y','0000-00-00 00:00:00'),(140837,10,'S52.001A ','Unspecified fracture of upper end of right ulna, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140836,10,'S51.859S ','Open bite of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(140835,10,'S51.859D ','Open bite of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140834,10,'S51.859A ','Open bite of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(140833,10,'S51.852S ','Open bite of left forearm, sequela','Y','0000-00-00 00:00:00'),(140832,10,'S51.852D ','Open bite of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140831,10,'S51.852A ','Open bite of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(140830,10,'S51.851S ','Open bite of right forearm, sequela','Y','0000-00-00 00:00:00'),(140829,10,'S51.851D ','Open bite of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140828,10,'S51.851A ','Open bite of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(140827,10,'S51.849S ','Puncture wound with foreign body of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(140826,10,'S51.849D ','Puncture wound with foreign body of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140825,10,'S51.849A ','Puncture wound with foreign body of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(140824,10,'S51.842S ','Puncture wound with foreign body of left forearm, sequela','Y','0000-00-00 00:00:00'),(140823,10,'S51.842D ','Puncture wound with foreign body of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140822,10,'S51.842A ','Puncture wound with foreign body of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(140821,10,'S51.841S ','Puncture wound with foreign body of right forearm, sequela','Y','0000-00-00 00:00:00'),(140820,10,'S51.841D ','Puncture wound with foreign body of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140819,10,'S51.841A ','Puncture wound with foreign body of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(140818,10,'S51.839S ','Puncture wound without foreign body of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(140817,10,'S51.839D ','Puncture wound without foreign body of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140816,10,'S51.839A ','Puncture wound without foreign body of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(140815,10,'S51.832S ','Puncture wound without foreign body of left forearm, sequela','Y','0000-00-00 00:00:00'),(140814,10,'S51.832D ','Puncture wound without foreign body of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140813,10,'S51.832A ','Puncture wound without foreign body of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(140812,10,'S51.831S ','Puncture wound without foreign body of right forearm, sequela','Y','0000-00-00 00:00:00'),(140811,10,'S51.831D ','Puncture wound without foreign body of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140810,10,'S51.831A ','Puncture wound without foreign body of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(140809,10,'S51.829S ','Laceration with foreign body of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(140808,10,'S51.829D ','Laceration with foreign body of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140807,10,'S51.829A ','Laceration with foreign body of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(140806,10,'S51.822S ','Laceration with foreign body of left forearm, sequela','Y','0000-00-00 00:00:00'),(140805,10,'S51.822D ','Laceration with foreign body of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140804,10,'S51.822A ','Laceration with foreign body of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(140803,10,'S51.821S ','Laceration with foreign body of right forearm, sequela','Y','0000-00-00 00:00:00'),(140802,10,'S51.821D ','Laceration with foreign body of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140801,10,'S51.821A ','Laceration with foreign body of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(140800,10,'S51.819S ','Laceration without foreign body of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(140799,10,'S51.819D ','Laceration without foreign body of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140798,10,'S51.819A ','Laceration without foreign body of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(140797,10,'S51.812S ','Laceration without foreign body of left forearm, sequela','Y','0000-00-00 00:00:00'),(140796,10,'S51.812D ','Laceration without foreign body of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140795,10,'S51.812A ','Laceration without foreign body of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(140794,10,'S51.811S ','Laceration without foreign body of right forearm, sequela','Y','0000-00-00 00:00:00'),(140793,10,'S51.811D ','Laceration without foreign body of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140792,10,'S51.811A ','Laceration without foreign body of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(140791,10,'S51.809S ','Unspecified open wound of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(140790,10,'S51.809D ','Unspecified open wound of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140789,10,'S51.809A ','Unspecified open wound of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(140788,10,'S51.802S ','Unspecified open wound of left forearm, sequela','Y','0000-00-00 00:00:00'),(140787,10,'S51.802D ','Unspecified open wound of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140786,10,'S51.802A ','Unspecified open wound of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(140785,10,'S51.801S ','Unspecified open wound of right forearm, sequela','Y','0000-00-00 00:00:00'),(140784,10,'S51.801D ','Unspecified open wound of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140783,10,'S51.801A ','Unspecified open wound of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(140782,10,'S51.059S ','Open bite, unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(140781,10,'S51.059D ','Open bite, unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140780,10,'S51.059A ','Open bite, unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(140779,10,'S51.052S ','Open bite, left elbow, sequela','Y','0000-00-00 00:00:00'),(140778,10,'S51.052D ','Open bite, left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140777,10,'S51.052A ','Open bite, left elbow, initial encounter','Y','0000-00-00 00:00:00'),(140776,10,'S51.051S ','Open bite, right elbow, sequela','Y','0000-00-00 00:00:00'),(140775,10,'S51.051D ','Open bite, right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140774,10,'S51.051A ','Open bite, right elbow, initial encounter','Y','0000-00-00 00:00:00'),(140773,10,'S51.049S ','Puncture wound with foreign body of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(140772,10,'S51.049D ','Puncture wound with foreign body of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140771,10,'S51.049A ','Puncture wound with foreign body of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(140770,10,'S51.042S ','Puncture wound with foreign body of left elbow, sequela','Y','0000-00-00 00:00:00'),(140769,10,'S51.042D ','Puncture wound with foreign body of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140768,10,'S51.042A ','Puncture wound with foreign body of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(140767,10,'S51.041S ','Puncture wound with foreign body of right elbow, sequela','Y','0000-00-00 00:00:00'),(140766,10,'S51.041D ','Puncture wound with foreign body of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140765,10,'S51.041A ','Puncture wound with foreign body of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(140764,10,'S51.039S ','Puncture wound without foreign body of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(140763,10,'S51.039D ','Puncture wound without foreign body of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140762,10,'S51.039A ','Puncture wound without foreign body of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(140761,10,'S51.032S ','Puncture wound without foreign body of left elbow, sequela','Y','0000-00-00 00:00:00'),(140760,10,'S51.032D ','Puncture wound without foreign body of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140759,10,'S51.032A ','Puncture wound without foreign body of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(140758,10,'S51.031S ','Puncture wound without foreign body of right elbow, sequela','Y','0000-00-00 00:00:00'),(140757,10,'S51.031D ','Puncture wound without foreign body of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140756,10,'S51.031A ','Puncture wound without foreign body of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(140755,10,'S51.029S ','Laceration with foreign body of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(140754,10,'S51.029D ','Laceration with foreign body of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140753,10,'S51.029A ','Laceration with foreign body of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(140752,10,'S51.022S ','Laceration with foreign body of left elbow, sequela','Y','0000-00-00 00:00:00'),(140751,10,'S51.022D ','Laceration with foreign body of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140750,10,'S51.022A ','Laceration with foreign body of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(140749,10,'S51.021S ','Laceration with foreign body of right elbow, sequela','Y','0000-00-00 00:00:00'),(140748,10,'S51.021D ','Laceration with foreign body of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140747,10,'S51.021A ','Laceration with foreign body of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(140746,10,'S51.019S ','Laceration without foreign body of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(140745,10,'S51.019D ','Laceration without foreign body of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140744,10,'S51.019A ','Laceration without foreign body of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(140743,10,'S51.012S ','Laceration without foreign body of left elbow, sequela','Y','0000-00-00 00:00:00'),(140742,10,'S51.012D ','Laceration without foreign body of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140741,10,'S51.012A ','Laceration without foreign body of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(140740,10,'S51.011S ','Laceration without foreign body of right elbow, sequela','Y','0000-00-00 00:00:00'),(140739,10,'S51.011D ','Laceration without foreign body of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140738,10,'S51.011A ','Laceration without foreign body of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(140737,10,'S51.009S ','Unspecified open wound of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(140736,10,'S51.009D ','Unspecified open wound of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140735,10,'S51.009A ','Unspecified open wound of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(140734,10,'S51.002S ','Unspecified open wound of left elbow, sequela','Y','0000-00-00 00:00:00'),(140733,10,'S51.002D ','Unspecified open wound of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140732,10,'S51.002A ','Unspecified open wound of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(140731,10,'S51.001S ','Unspecified open wound of right elbow, sequela','Y','0000-00-00 00:00:00'),(140730,10,'S51.001D ','Unspecified open wound of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140729,10,'S51.001A ','Unspecified open wound of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(140728,10,'S50.919S ','Unspecified superficial injury of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(140727,10,'S50.919D ','Unspecified superficial injury of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140726,10,'S50.919A ','Unspecified superficial injury of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(140725,10,'S50.912S ','Unspecified superficial injury of left forearm, sequela','Y','0000-00-00 00:00:00'),(140724,10,'S50.912D ','Unspecified superficial injury of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140723,10,'S50.912A ','Unspecified superficial injury of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(140722,10,'S50.911S ','Unspecified superficial injury of right forearm, sequela','Y','0000-00-00 00:00:00'),(140721,10,'S50.911D ','Unspecified superficial injury of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140720,10,'S50.911A ','Unspecified superficial injury of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(140719,10,'S50.909S ','Unspecified superficial injury of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(140718,10,'S50.909D ','Unspecified superficial injury of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140717,10,'S50.909A ','Unspecified superficial injury of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(140716,10,'S50.902S ','Unspecified superficial injury of left elbow, sequela','Y','0000-00-00 00:00:00'),(140715,10,'S50.902D ','Unspecified superficial injury of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140714,10,'S50.902A ','Unspecified superficial injury of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(140713,10,'S50.901S ','Unspecified superficial injury of right elbow, sequela','Y','0000-00-00 00:00:00'),(140712,10,'S50.901D ','Unspecified superficial injury of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140711,10,'S50.901A ','Unspecified superficial injury of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(140710,10,'S50.879S ','Other superficial bite of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(140709,10,'S50.879D ','Other superficial bite of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140708,10,'S50.879A ','Other superficial bite of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(140707,10,'S50.872S ','Other superficial bite of left forearm, sequela','Y','0000-00-00 00:00:00'),(140706,10,'S50.872D ','Other superficial bite of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140705,10,'S50.872A ','Other superficial bite of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(140704,10,'S50.871S ','Other superficial bite of right forearm, sequela','Y','0000-00-00 00:00:00'),(140703,10,'S50.871D ','Other superficial bite of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140702,10,'S50.871A ','Other superficial bite of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(140701,10,'S50.869S ','Insect bite (nonvenomous) of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(140700,10,'S50.869D ','Insect bite (nonvenomous) of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140699,10,'S50.869A ','Insect bite (nonvenomous) of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(140698,10,'S50.862S ','Insect bite (nonvenomous) of left forearm, sequela','Y','0000-00-00 00:00:00'),(140697,10,'S50.862D ','Insect bite (nonvenomous) of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140696,10,'S50.862A ','Insect bite (nonvenomous) of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(140695,10,'S50.861S ','Insect bite (nonvenomous) of right forearm, sequela','Y','0000-00-00 00:00:00'),(140694,10,'S50.861D ','Insect bite (nonvenomous) of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140693,10,'S50.861A ','Insect bite (nonvenomous) of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(140692,10,'S50.859S ','Superficial foreign body of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(140691,10,'S50.859D ','Superficial foreign body of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140690,10,'S50.859A ','Superficial foreign body of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(140689,10,'S50.852S ','Superficial foreign body of left forearm, sequela','Y','0000-00-00 00:00:00'),(140688,10,'S50.852D ','Superficial foreign body of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140687,10,'S50.852A ','Superficial foreign body of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(140686,10,'S50.851S ','Superficial foreign body of right forearm, sequela','Y','0000-00-00 00:00:00'),(140685,10,'S50.851D ','Superficial foreign body of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140684,10,'S50.851A ','Superficial foreign body of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(140683,10,'S50.849S ','External constriction of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(140682,10,'S50.849D ','External constriction of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140681,10,'S50.849A ','External constriction of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(140680,10,'S50.842S ','External constriction of left forearm, sequela','Y','0000-00-00 00:00:00'),(140679,10,'S50.842D ','External constriction of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140678,10,'S50.842A ','External constriction of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(140677,10,'S50.841S ','External constriction of right forearm, sequela','Y','0000-00-00 00:00:00'),(140676,10,'S50.841D ','External constriction of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140675,10,'S50.841A ','External constriction of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(140674,10,'S50.829S ','Blister (nonthermal) of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(140673,10,'S50.829D ','Blister (nonthermal) of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140672,10,'S50.829A ','Blister (nonthermal) of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(140671,10,'S50.822S ','Blister (nonthermal) of left forearm, sequela','Y','0000-00-00 00:00:00'),(140670,10,'S50.822D ','Blister (nonthermal) of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140669,10,'S50.822A ','Blister (nonthermal) of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(140668,10,'S50.821S ','Blister (nonthermal) of right forearm, sequela','Y','0000-00-00 00:00:00'),(140667,10,'S50.821D ','Blister (nonthermal) of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140666,10,'S50.821A ','Blister (nonthermal) of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(140665,10,'S50.819S ','Abrasion of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(140664,10,'S50.819D ','Abrasion of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140663,10,'S50.819A ','Abrasion of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(140662,10,'S50.812S ','Abrasion of left forearm, sequela','Y','0000-00-00 00:00:00'),(140661,10,'S50.812D ','Abrasion of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140660,10,'S50.812A ','Abrasion of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(140659,10,'S50.811S ','Abrasion of right forearm, sequela','Y','0000-00-00 00:00:00'),(140658,10,'S50.811D ','Abrasion of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140657,10,'S50.811A ','Abrasion of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(140656,10,'S50.379S ','Other superficial bite of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(140655,10,'S50.379D ','Other superficial bite of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140654,10,'S50.379A ','Other superficial bite of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(140653,10,'S50.372S ','Other superficial bite of left elbow, sequela','Y','0000-00-00 00:00:00'),(140652,10,'S50.372D ','Other superficial bite of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140651,10,'S50.372A ','Other superficial bite of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(140650,10,'S50.371S ','Other superficial bite of right elbow, sequela','Y','0000-00-00 00:00:00'),(140649,10,'S50.371D ','Other superficial bite of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140648,10,'S50.371A ','Other superficial bite of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(140647,10,'S50.369S ','Insect bite (nonvenomous) of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(140646,10,'S50.369D ','Insect bite (nonvenomous) of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140645,10,'S50.369A ','Insect bite (nonvenomous) of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(140644,10,'S50.362S ','Insect bite (nonvenomous) of left elbow, sequela','Y','0000-00-00 00:00:00'),(140643,10,'S50.362D ','Insect bite (nonvenomous) of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140642,10,'S50.362A ','Insect bite (nonvenomous) of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(140641,10,'S50.361S ','Insect bite (nonvenomous) of right elbow, sequela','Y','0000-00-00 00:00:00'),(140640,10,'S50.361D ','Insect bite (nonvenomous) of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140639,10,'S50.361A ','Insect bite (nonvenomous) of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(140638,10,'S50.359S ','Superficial foreign body of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(140637,10,'S50.359D ','Superficial foreign body of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140636,10,'S50.359A ','Superficial foreign body of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(140635,10,'S50.352S ','Superficial foreign body of left elbow, sequela','Y','0000-00-00 00:00:00'),(140634,10,'S50.352D ','Superficial foreign body of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140633,10,'S50.352A ','Superficial foreign body of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(140632,10,'S50.351S ','Superficial foreign body of right elbow, sequela','Y','0000-00-00 00:00:00'),(140631,10,'S50.351D ','Superficial foreign body of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140630,10,'S50.351A ','Superficial foreign body of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(140629,10,'S50.349S ','External constriction of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(140628,10,'S50.349D ','External constriction of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140626,10,'S50.342S ','External constriction of left elbow, sequela','Y','0000-00-00 00:00:00'),(140627,10,'S50.349A ','External constriction of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(140625,10,'S50.342D ','External constriction of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140623,10,'S50.341S ','External constriction of right elbow, sequela','Y','0000-00-00 00:00:00'),(140624,10,'S50.342A ','External constriction of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(140622,10,'S50.341D ','External constriction of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140621,10,'S50.341A ','External constriction of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(140620,10,'S50.329S ','Blister (nonthermal) of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(140619,10,'S50.329D ','Blister (nonthermal) of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140618,10,'S50.329A ','Blister (nonthermal) of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(140617,10,'S50.322S ','Blister (nonthermal) of left elbow, sequela','Y','0000-00-00 00:00:00'),(140616,10,'S50.322D ','Blister (nonthermal) of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140615,10,'S50.322A ','Blister (nonthermal) of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(140614,10,'S50.321S ','Blister (nonthermal) of right elbow, sequela','Y','0000-00-00 00:00:00'),(140613,10,'S50.321D ','Blister (nonthermal) of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140612,10,'S50.321A ','Blister (nonthermal) of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(140611,10,'S50.319S ','Abrasion of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(140610,10,'S50.319D ','Abrasion of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140609,10,'S50.319A ','Abrasion of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(140607,10,'S50.312D ','Abrasion of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140608,10,'S50.312S ','Abrasion of left elbow, sequela','Y','0000-00-00 00:00:00'),(140606,10,'S50.312A ','Abrasion of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(140605,10,'S50.311S ','Abrasion of right elbow, sequela','Y','0000-00-00 00:00:00'),(140603,10,'S50.311A ','Abrasion of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(140604,10,'S50.311D ','Abrasion of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140602,10,'S50.12XS ','Contusion of left forearm, sequela','Y','0000-00-00 00:00:00'),(140601,10,'S50.12XD ','Contusion of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140599,10,'S50.11XS ','Contusion of right forearm, sequela','Y','0000-00-00 00:00:00'),(140600,10,'S50.12XA ','Contusion of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(140598,10,'S50.11XD ','Contusion of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140597,10,'S50.11XA ','Contusion of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(140596,10,'S50.10XS ','Contusion of unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(140595,10,'S50.10XD ','Contusion of unspecified forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(140594,10,'S50.10XA ','Contusion of unspecified forearm, initial encounter','Y','0000-00-00 00:00:00'),(140592,10,'S50.02XD ','Contusion of left elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140593,10,'S50.02XS ','Contusion of left elbow, sequela','Y','0000-00-00 00:00:00'),(140591,10,'S50.02XA ','Contusion of left elbow, initial encounter','Y','0000-00-00 00:00:00'),(140590,10,'S50.01XS ','Contusion of right elbow, sequela','Y','0000-00-00 00:00:00'),(140588,10,'S50.01XA ','Contusion of right elbow, initial encounter','Y','0000-00-00 00:00:00'),(140589,10,'S50.01XD ','Contusion of right elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140587,10,'S50.00XS ','Contusion of unspecified elbow, sequela','Y','0000-00-00 00:00:00'),(140586,10,'S50.00XD ','Contusion of unspecified elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140585,10,'S50.00XA ','Contusion of unspecified elbow, initial encounter','Y','0000-00-00 00:00:00'),(140584,10,'S49.92XS ','Unspecified injury of left shoulder and upper arm, sequela','Y','0000-00-00 00:00:00'),(140583,10,'S49.92XD ','Unspecified injury of left shoulder and upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140582,10,'S49.92XA ','Unspecified injury of left shoulder and upper arm, initial encounter','Y','0000-00-00 00:00:00'),(140581,10,'S49.91XS ','Unspecified injury of right shoulder and upper arm, sequela','Y','0000-00-00 00:00:00'),(140580,10,'S49.91XD ','Unspecified injury of right shoulder and upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140579,10,'S49.91XA ','Unspecified injury of right shoulder and upper arm, initial encounter','Y','0000-00-00 00:00:00'),(140578,10,'S49.90XS ','Unspecified injury of shoulder and upper arm, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140577,10,'S49.90XD ','Unspecified injury of shoulder and upper arm, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140576,10,'S49.90XA ','Unspecified injury of shoulder and upper arm, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140575,10,'S49.82XS ','Other specified injuries of left shoulder and upper arm, sequela','Y','0000-00-00 00:00:00'),(140574,10,'S49.82XD ','Other specified injuries of left shoulder and upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140573,10,'S49.82XA ','Other specified injuries of left shoulder and upper arm, initial encounter','Y','0000-00-00 00:00:00'),(140572,10,'S49.81XS ','Other specified injuries of right shoulder and upper arm, sequela','Y','0000-00-00 00:00:00'),(140571,10,'S49.81XD ','Other specified injuries of right shoulder and upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140570,10,'S49.81XA ','Other specified injuries of right shoulder and upper arm, initial encounter','Y','0000-00-00 00:00:00'),(140569,10,'S49.80XS ','Other specified injuries of shoulder and upper arm, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140568,10,'S49.80XD ','Other specified injuries of shoulder and upper arm, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140567,10,'S49.80XA ','Other specified injuries of shoulder and upper arm, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140566,10,'S49.199S ','Other physeal fracture of lower end of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140565,10,'S49.199P ','Other physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140564,10,'S49.199K ','Other physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140563,10,'S49.199G ','Other physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140562,10,'S49.199D ','Other physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140561,10,'S49.199A ','Other physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140560,10,'S49.192S ','Other physeal fracture of lower end of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(140559,10,'S49.192P ','Other physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140558,10,'S49.192K ','Other physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140557,10,'S49.192G ','Other physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140556,10,'S49.192D ','Other physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140555,10,'S49.192A ','Other physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140554,10,'S49.191S ','Other physeal fracture of lower end of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(140553,10,'S49.191P ','Other physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140552,10,'S49.191K ','Other physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140551,10,'S49.191G ','Other physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140550,10,'S49.191D ','Other physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140549,10,'S49.191A ','Other physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140548,10,'S49.149S ','Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140547,10,'S49.149P ','Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140546,10,'S49.149K ','Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140545,10,'S49.149G ','Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140544,10,'S49.149D ','Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140543,10,'S49.149A ','Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140542,10,'S49.142S ','Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(140541,10,'S49.142P ','Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140540,10,'S49.142K ','Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140539,10,'S49.142G ','Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140538,10,'S49.142D ','Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140537,10,'S49.142A ','Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140536,10,'S49.141S ','Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(140535,10,'S49.141P ','Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140534,10,'S49.141K ','Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140533,10,'S49.141G ','Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140532,10,'S49.141D ','Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140531,10,'S49.141A ','Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140530,10,'S49.139S ','Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140529,10,'S49.139P ','Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140528,10,'S49.139K ','Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140527,10,'S49.139G ','Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140526,10,'S49.139D ','Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140525,10,'S49.139A ','Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140524,10,'S49.132S ','Salter-Harris Type III physeal fracture of lower end of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(140523,10,'S49.132P ','Salter-Harris Type III physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140522,10,'S49.132K ','Salter-Harris Type III physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140521,10,'S49.132G ','Salter-Harris Type III physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140520,10,'S49.132D ','Salter-Harris Type III physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140519,10,'S49.132A ','Salter-Harris Type III physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140518,10,'S49.131S ','Salter-Harris Type III physeal fracture of lower end of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(140517,10,'S49.131P ','Salter-Harris Type III physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140516,10,'S49.131K ','Salter-Harris Type III physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140515,10,'S49.131G ','Salter-Harris Type III physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140514,10,'S49.131D ','Salter-Harris Type III physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140513,10,'S49.131A ','Salter-Harris Type III physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140512,10,'S49.129S ','Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140511,10,'S49.129P ','Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140510,10,'S49.129K ','Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140509,10,'S49.129G ','Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140508,10,'S49.129D ','Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140507,10,'S49.129A ','Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140506,10,'S49.122S ','Salter-Harris Type II physeal fracture of lower end of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(140505,10,'S49.122P ','Salter-Harris Type II physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140504,10,'S49.122K ','Salter-Harris Type II physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140503,10,'S49.122G ','Salter-Harris Type II physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140502,10,'S49.122D ','Salter-Harris Type II physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140501,10,'S49.122A ','Salter-Harris Type II physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140500,10,'S49.121S ','Salter-Harris Type II physeal fracture of lower end of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(140499,10,'S49.121P ','Salter-Harris Type II physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140498,10,'S49.121K ','Salter-Harris Type II physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140497,10,'S49.121G ','Salter-Harris Type II physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140496,10,'S49.121D ','Salter-Harris Type II physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140495,10,'S49.121A ','Salter-Harris Type II physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140494,10,'S49.119S ','Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140493,10,'S49.119P ','Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140492,10,'S49.119K ','Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140491,10,'S49.119G ','Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140490,10,'S49.119D ','Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140489,10,'S49.119A ','Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140488,10,'S49.112S ','Salter-Harris Type I physeal fracture of lower end of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(140487,10,'S49.112P ','Salter-Harris Type I physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140486,10,'S49.112K ','Salter-Harris Type I physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140485,10,'S49.112G ','Salter-Harris Type I physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140484,10,'S49.112D ','Salter-Harris Type I physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140483,10,'S49.112A ','Salter-Harris Type I physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140482,10,'S49.111S ','Salter-Harris Type I physeal fracture of lower end of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(140481,10,'S49.111P ','Salter-Harris Type I physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140480,10,'S49.111K ','Salter-Harris Type I physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140479,10,'S49.111G ','Salter-Harris Type I physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140478,10,'S49.111D ','Salter-Harris Type I physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140477,10,'S49.111A ','Salter-Harris Type I physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140476,10,'S49.109S ','Unspecified physeal fracture of lower end of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140475,10,'S49.109P ','Unspecified physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140474,10,'S49.109K ','Unspecified physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140473,10,'S49.109G ','Unspecified physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140472,10,'S49.109D ','Unspecified physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140471,10,'S49.109A ','Unspecified physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140470,10,'S49.102S ','Unspecified physeal fracture of lower end of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(140469,10,'S49.102P ','Unspecified physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140468,10,'S49.102K ','Unspecified physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140467,10,'S49.102G ','Unspecified physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140466,10,'S49.102D ','Unspecified physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140465,10,'S49.102A ','Unspecified physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140464,10,'S49.101S ','Unspecified physeal fracture of lower end of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(140463,10,'S49.101P ','Unspecified physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140462,10,'S49.101K ','Unspecified physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140461,10,'S49.101G ','Unspecified physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140460,10,'S49.101D ','Unspecified physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140459,10,'S49.101A ','Unspecified physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140458,10,'S49.099S ','Other physeal fracture of upper end of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140457,10,'S49.099P ','Other physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140456,10,'S49.099K ','Other physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140455,10,'S49.099G ','Other physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140454,10,'S49.099D ','Other physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140453,10,'S49.099A ','Other physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140452,10,'S49.092S ','Other physeal fracture of upper end of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(140451,10,'S49.092P ','Other physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140450,10,'S49.092K ','Other physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140449,10,'S49.092G ','Other physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140448,10,'S49.092D ','Other physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140447,10,'S49.092A ','Other physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140446,10,'S49.091S ','Other physeal fracture of upper end of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(140445,10,'S49.091P ','Other physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140444,10,'S49.091K ','Other physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140443,10,'S49.091G ','Other physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140442,10,'S49.091D ','Other physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140441,10,'S49.091A ','Other physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140440,10,'S49.049S ','Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140439,10,'S49.049P ','Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140438,10,'S49.049K ','Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140437,10,'S49.049G ','Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140436,10,'S49.049D ','Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140435,10,'S49.049A ','Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140434,10,'S49.042S ','Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(140433,10,'S49.042P ','Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140432,10,'S49.042K ','Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140431,10,'S49.042G ','Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140430,10,'S49.042D ','Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140429,10,'S49.042A ','Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140428,10,'S49.041S ','Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(140427,10,'S49.041P ','Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140426,10,'S49.041K ','Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140425,10,'S49.041G ','Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140424,10,'S49.041D ','Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140423,10,'S49.041A ','Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140422,10,'S49.039S ','Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140421,10,'S49.039P ','Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140420,10,'S49.039K ','Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140419,10,'S49.039G ','Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140418,10,'S49.039D ','Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140417,10,'S49.039A ','Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140416,10,'S49.032S ','Salter-Harris Type III physeal fracture of upper end of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(140415,10,'S49.032P ','Salter-Harris Type III physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140414,10,'S49.032K ','Salter-Harris Type III physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140413,10,'S49.032G ','Salter-Harris Type III physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140412,10,'S49.032D ','Salter-Harris Type III physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140411,10,'S49.032A ','Salter-Harris Type III physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140410,10,'S49.031S ','Salter-Harris Type III physeal fracture of upper end of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(140409,10,'S49.031P ','Salter-Harris Type III physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140408,10,'S49.031K ','Salter-Harris Type III physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140407,10,'S49.031G ','Salter-Harris Type III physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140406,10,'S49.031D ','Salter-Harris Type III physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140405,10,'S49.031A ','Salter-Harris Type III physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140404,10,'S49.029S ','Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140403,10,'S49.029P ','Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140402,10,'S49.029K ','Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140401,10,'S49.029G ','Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140400,10,'S49.029D ','Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140399,10,'S49.029A ','Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140398,10,'S49.022S ','Salter-Harris Type II physeal fracture of upper end of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(140397,10,'S49.022P ','Salter-Harris Type II physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140396,10,'S49.022K ','Salter-Harris Type II physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140395,10,'S49.022G ','Salter-Harris Type II physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140394,10,'S49.022D ','Salter-Harris Type II physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140393,10,'S49.022A ','Salter-Harris Type II physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140392,10,'S49.021S ','Salter-Harris Type II physeal fracture of upper end of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(140391,10,'S49.021P ','Salter-Harris Type II physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140390,10,'S49.021K ','Salter-Harris Type II physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140389,10,'S49.021G ','Salter-Harris Type II physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140388,10,'S49.021D ','Salter-Harris Type II physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140387,10,'S49.021A ','Salter-Harris Type II physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140386,10,'S49.019S ','Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140385,10,'S49.019P ','Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140384,10,'S49.019K ','Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140383,10,'S49.019G ','Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140382,10,'S49.019D ','Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140381,10,'S49.019A ','Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140380,10,'S49.012S ','Salter-Harris Type I physeal fracture of upper end of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(140379,10,'S49.012P ','Salter-Harris Type I physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140378,10,'S49.012K ','Salter-Harris Type I physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140377,10,'S49.012G ','Salter-Harris Type I physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140376,10,'S49.012D ','Salter-Harris Type I physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140375,10,'S49.012A ','Salter-Harris Type I physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140374,10,'S49.011S ','Salter-Harris Type I physeal fracture of upper end of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(140373,10,'S49.011P ','Salter-Harris Type I physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140372,10,'S49.011K ','Salter-Harris Type I physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140371,10,'S49.011G ','Salter-Harris Type I physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140370,10,'S49.011D ','Salter-Harris Type I physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140369,10,'S49.011A ','Salter-Harris Type I physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140368,10,'S49.009S ','Unspecified physeal fracture of upper end of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140367,10,'S49.009P ','Unspecified physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140366,10,'S49.009K ','Unspecified physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140365,10,'S49.009G ','Unspecified physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140364,10,'S49.009D ','Unspecified physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140363,10,'S49.009A ','Unspecified physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140362,10,'S49.002S ','Unspecified physeal fracture of upper end of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(140361,10,'S49.002P ','Unspecified physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140360,10,'S49.002K ','Unspecified physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140359,10,'S49.002G ','Unspecified physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140358,10,'S49.002D ','Unspecified physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140357,10,'S49.002A ','Unspecified physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140356,10,'S49.001S ','Unspecified physeal fracture of upper end of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(140355,10,'S49.001P ','Unspecified physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(140354,10,'S49.001K ','Unspecified physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(140353,10,'S49.001G ','Unspecified physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(140352,10,'S49.001D ','Unspecified physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(140351,10,'S49.001A ','Unspecified physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(140350,10,'S48.929S ','Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified, sequela','Y','0000-00-00 00:00:00'),(140349,10,'S48.929D ','Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(140348,10,'S48.929A ','Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(140347,10,'S48.922S ','Partial traumatic amputation of left shoulder and upper arm, level unspecified, sequela','Y','0000-00-00 00:00:00'),(140346,10,'S48.922D ','Partial traumatic amputation of left shoulder and upper arm, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(140345,10,'S48.922A ','Partial traumatic amputation of left shoulder and upper arm, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(140344,10,'S48.921S ','Partial traumatic amputation of right shoulder and upper arm, level unspecified, sequela','Y','0000-00-00 00:00:00'),(140343,10,'S48.921D ','Partial traumatic amputation of right shoulder and upper arm, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(140342,10,'S48.921A ','Partial traumatic amputation of right shoulder and upper arm, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(140341,10,'S48.919S ','Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified, sequela','Y','0000-00-00 00:00:00'),(140340,10,'S48.919D ','Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(140339,10,'S48.919A ','Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(140338,10,'S48.912S ','Complete traumatic amputation of left shoulder and upper arm, level unspecified, sequela','Y','0000-00-00 00:00:00'),(140337,10,'S48.912D ','Complete traumatic amputation of left shoulder and upper arm, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(140336,10,'S48.912A ','Complete traumatic amputation of left shoulder and upper arm, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(140335,10,'S48.911S ','Complete traumatic amputation of right shoulder and upper arm, level unspecified, sequela','Y','0000-00-00 00:00:00'),(140334,10,'S48.911D ','Complete traumatic amputation of right shoulder and upper arm, level unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(140333,10,'S48.911A ','Complete traumatic amputation of right shoulder and upper arm, level unspecified, initial encounter','Y','0000-00-00 00:00:00'),(140332,10,'S48.129S ','Partial traumatic amputation at level between unspecified shoulder and elbow, sequela','Y','0000-00-00 00:00:00'),(140331,10,'S48.129D ','Partial traumatic amputation at level between unspecified shoulder and elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140330,10,'S48.129A ','Partial traumatic amputation at level between unspecified shoulder and elbow, initial encounter','Y','0000-00-00 00:00:00'),(140329,10,'S48.122S ','Partial traumatic amputation at level between left shoulder and elbow, sequela','Y','0000-00-00 00:00:00'),(140328,10,'S48.122D ','Partial traumatic amputation at level between left shoulder and elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140327,10,'S48.122A ','Partial traumatic amputation at level between left shoulder and elbow, initial encounter','Y','0000-00-00 00:00:00'),(140326,10,'S48.121S ','Partial traumatic amputation at level between right shoulder and elbow, sequela','Y','0000-00-00 00:00:00'),(140325,10,'S48.121D ','Partial traumatic amputation at level between right shoulder and elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140324,10,'S48.121A ','Partial traumatic amputation at level between right shoulder and elbow, initial encounter','Y','0000-00-00 00:00:00'),(140323,10,'S48.119S ','Complete traumatic amputation at level between unspecified shoulder and elbow, sequela','Y','0000-00-00 00:00:00'),(140322,10,'S48.119D ','Complete traumatic amputation at level between unspecified shoulder and elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140321,10,'S48.119A ','Complete traumatic amputation at level between unspecified shoulder and elbow, initial encounter','Y','0000-00-00 00:00:00'),(140320,10,'S48.112S ','Complete traumatic amputation at level between left shoulder and elbow, sequela','Y','0000-00-00 00:00:00'),(140319,10,'S48.112D ','Complete traumatic amputation at level between left shoulder and elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140318,10,'S48.112A ','Complete traumatic amputation at level between left shoulder and elbow, initial encounter','Y','0000-00-00 00:00:00'),(140317,10,'S48.111S ','Complete traumatic amputation at level between right shoulder and elbow, sequela','Y','0000-00-00 00:00:00'),(140316,10,'S48.111D ','Complete traumatic amputation at level between right shoulder and elbow, subsequent encounter','Y','0000-00-00 00:00:00'),(140315,10,'S48.111A ','Complete traumatic amputation at level between right shoulder and elbow, initial encounter','Y','0000-00-00 00:00:00'),(140314,10,'S48.029S ','Partial traumatic amputation at unspecified shoulder joint, sequela','Y','0000-00-00 00:00:00'),(140313,10,'S48.029D ','Partial traumatic amputation at unspecified shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(140312,10,'S48.029A ','Partial traumatic amputation at unspecified shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(140311,10,'S48.022S ','Partial traumatic amputation at left shoulder joint, sequela','Y','0000-00-00 00:00:00'),(140310,10,'S48.022D ','Partial traumatic amputation at left shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(140309,10,'S48.022A ','Partial traumatic amputation at left shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(140308,10,'S48.021S ','Partial traumatic amputation at right shoulder joint, sequela','Y','0000-00-00 00:00:00'),(140307,10,'S48.021D ','Partial traumatic amputation at right shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(140306,10,'S48.021A ','Partial traumatic amputation at right shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(140305,10,'S48.019S ','Complete traumatic amputation at unspecified shoulder joint, sequela','Y','0000-00-00 00:00:00'),(140304,10,'S48.019D ','Complete traumatic amputation at unspecified shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(140303,10,'S48.019A ','Complete traumatic amputation at unspecified shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(140302,10,'S48.012S ','Complete traumatic amputation at left shoulder joint, sequela','Y','0000-00-00 00:00:00'),(140301,10,'S48.012D ','Complete traumatic amputation at left shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(140300,10,'S48.012A ','Complete traumatic amputation at left shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(140299,10,'S48.011S ','Complete traumatic amputation at right shoulder joint, sequela','Y','0000-00-00 00:00:00'),(140298,10,'S48.011D ','Complete traumatic amputation at right shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(140297,10,'S48.011A ','Complete traumatic amputation at right shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(140296,10,'S47.9XXS ','Crushing injury of shoulder and upper arm, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140295,10,'S47.9XXD ','Crushing injury of shoulder and upper arm, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140294,10,'S47.9XXA ','Crushing injury of shoulder and upper arm, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140293,10,'S47.2XXS ','Crushing injury of left shoulder and upper arm, sequela','Y','0000-00-00 00:00:00'),(140292,10,'S47.2XXD ','Crushing injury of left shoulder and upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140291,10,'S47.2XXA ','Crushing injury of left shoulder and upper arm, initial encounter','Y','0000-00-00 00:00:00'),(140290,10,'S47.1XXS ','Crushing injury of right shoulder and upper arm, sequela','Y','0000-00-00 00:00:00'),(140289,10,'S47.1XXD ','Crushing injury of right shoulder and upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140288,10,'S47.1XXA ','Crushing injury of right shoulder and upper arm, initial encounter','Y','0000-00-00 00:00:00'),(140287,10,'S46.999S ','Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140286,10,'S46.999D ','Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140285,10,'S46.999A ','Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140284,10,'S46.992S ','Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(140283,10,'S46.992D ','Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140282,10,'S46.992A ','Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140281,10,'S46.991S ','Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(140280,10,'S46.991D ','Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140279,10,'S46.991A ','Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140278,10,'S46.929S ','Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140277,10,'S46.929D ','Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140276,10,'S46.929A ','Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140275,10,'S46.922S ','Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(140274,10,'S46.922D ','Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140273,10,'S46.922A ','Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140272,10,'S46.921S ','Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(140271,10,'S46.921D ','Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140270,10,'S46.921A ','Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140269,10,'S46.919S ','Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140268,10,'S46.919D ','Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140267,10,'S46.919A ','Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140266,10,'S46.912S ','Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(140265,10,'S46.912D ','Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140264,10,'S46.912A ','Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140263,10,'S46.911S ','Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(140262,10,'S46.911D ','Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140261,10,'S46.911A ','Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140260,10,'S46.909S ','Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140259,10,'S46.909D ','Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140258,10,'S46.909A ','Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140257,10,'S46.902S ','Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(140256,10,'S46.902D ','Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140255,10,'S46.902A ','Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140254,10,'S46.901S ','Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(140253,10,'S46.901D ','Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140252,10,'S46.901A ','Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140251,10,'S46.899S ','Other injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140250,10,'S46.899D ','Other injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140249,10,'S46.899A ','Other injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140248,10,'S46.892S ','Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(140247,10,'S46.892D ','Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140246,10,'S46.892A ','Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140245,10,'S46.891S ','Other injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(140244,10,'S46.891D ','Other injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140243,10,'S46.891A ','Other injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140242,10,'S46.829S ','Laceration of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140241,10,'S46.829D ','Laceration of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140240,10,'S46.829A ','Laceration of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140239,10,'S46.822S ','Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(140238,10,'S46.822D ','Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140237,10,'S46.822A ','Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140236,10,'S46.821S ','Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(140235,10,'S46.821D ','Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140234,10,'S46.821A ','Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140233,10,'S46.819S ','Strain of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140232,10,'S46.819D ','Strain of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140231,10,'S46.819A ','Strain of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140230,10,'S46.812S ','Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(140229,10,'S46.812D ','Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140228,10,'S46.812A ','Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140227,10,'S46.811S ','Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(140226,10,'S46.811D ','Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140225,10,'S46.811A ','Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140224,10,'S46.809S ','Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140223,10,'S46.809D ','Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140222,10,'S46.809A ','Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140221,10,'S46.802S ','Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(140220,10,'S46.802D ','Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140219,10,'S46.802A ','Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140218,10,'S46.801S ','Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(140217,10,'S46.801D ','Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140216,10,'S46.801A ','Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140215,10,'S46.399S ','Other injury of muscle, fascia and tendon of triceps, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140214,10,'S46.399D ','Other injury of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140213,10,'S46.399A ','Other injury of muscle, fascia and tendon of triceps, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140212,10,'S46.392S ','Other injury of muscle, fascia and tendon of triceps, left arm, sequela','Y','0000-00-00 00:00:00'),(140211,10,'S46.392D ','Other injury of muscle, fascia and tendon of triceps, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140210,10,'S46.392A ','Other injury of muscle, fascia and tendon of triceps, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140208,10,'S46.391D ','Other injury of muscle, fascia and tendon of triceps, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140209,10,'S46.391S ','Other injury of muscle, fascia and tendon of triceps, right arm, sequela','Y','0000-00-00 00:00:00'),(140207,10,'S46.391A ','Other injury of muscle, fascia and tendon of triceps, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140206,10,'S46.329S ','Laceration of muscle, fascia and tendon of triceps, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140205,10,'S46.329D ','Laceration of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140204,10,'S46.329A ','Laceration of muscle, fascia and tendon of triceps, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140203,10,'S46.322S ','Laceration of muscle, fascia and tendon of triceps, left arm, sequela','Y','0000-00-00 00:00:00'),(140202,10,'S46.322D ','Laceration of muscle, fascia and tendon of triceps, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140200,10,'S46.321S ','Laceration of muscle, fascia and tendon of triceps, right arm, sequela','Y','0000-00-00 00:00:00'),(140201,10,'S46.322A ','Laceration of muscle, fascia and tendon of triceps, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140199,10,'S46.321D ','Laceration of muscle, fascia and tendon of triceps, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140198,10,'S46.321A ','Laceration of muscle, fascia and tendon of triceps, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140197,10,'S46.319S ','Strain of muscle, fascia and tendon of triceps, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140196,10,'S46.319D ','Strain of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140195,10,'S46.319A ','Strain of muscle, fascia and tendon of triceps, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140194,10,'S46.312S ','Strain of muscle, fascia and tendon of triceps, left arm, sequela','Y','0000-00-00 00:00:00'),(140192,10,'S46.312A ','Strain of muscle, fascia and tendon of triceps, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140193,10,'S46.312D ','Strain of muscle, fascia and tendon of triceps, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140191,10,'S46.311S ','Strain of muscle, fascia and tendon of triceps, right arm, sequela','Y','0000-00-00 00:00:00'),(140190,10,'S46.311D ','Strain of muscle, fascia and tendon of triceps, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140189,10,'S46.311A ','Strain of muscle, fascia and tendon of triceps, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140188,10,'S46.309S ','Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140187,10,'S46.309D ','Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140185,10,'S46.302S ','Unspecified injury of muscle, fascia and tendon of triceps, left arm, sequela','Y','0000-00-00 00:00:00'),(140186,10,'S46.309A ','Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140184,10,'S46.302D ','Unspecified injury of muscle, fascia and tendon of triceps, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140183,10,'S46.302A ','Unspecified injury of muscle, fascia and tendon of triceps, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140182,10,'S46.301S ','Unspecified injury of muscle, fascia and tendon of triceps, right arm, sequela','Y','0000-00-00 00:00:00'),(140180,10,'S46.301A ','Unspecified injury of muscle, fascia and tendon of triceps, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140181,10,'S46.301D ','Unspecified injury of muscle, fascia and tendon of triceps, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140179,10,'S46.299S ','Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140178,10,'S46.299D ','Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140177,10,'S46.299A ','Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140176,10,'S46.292S ','Other injury of muscle, fascia and tendon of other parts of biceps, left arm, sequela','Y','0000-00-00 00:00:00'),(140175,10,'S46.292D ','Other injury of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140174,10,'S46.292A ','Other injury of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140173,10,'S46.291S ','Other injury of muscle, fascia and tendon of other parts of biceps, right arm, sequela','Y','0000-00-00 00:00:00'),(140172,10,'S46.291D ','Other injury of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140171,10,'S46.291A ','Other injury of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140170,10,'S46.229S ','Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140169,10,'S46.229D ','Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140168,10,'S46.229A ','Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140167,10,'S46.222S ','Laceration of muscle, fascia and tendon of other parts of biceps, left arm, sequela','Y','0000-00-00 00:00:00'),(140166,10,'S46.222D ','Laceration of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140164,10,'S46.221S ','Laceration of muscle, fascia and tendon of other parts of biceps, right arm, sequela','Y','0000-00-00 00:00:00'),(140165,10,'S46.222A ','Laceration of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140163,10,'S46.221D ','Laceration of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140162,10,'S46.221A ','Laceration of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140161,10,'S46.219S ','Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140160,10,'S46.219D ','Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140159,10,'S46.219A ','Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140158,10,'S46.212S ','Strain of muscle, fascia and tendon of other parts of biceps, left arm, sequela','Y','0000-00-00 00:00:00'),(140157,10,'S46.212D ','Strain of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140156,10,'S46.212A ','Strain of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140155,10,'S46.211S ','Strain of muscle, fascia and tendon of other parts of biceps, right arm, sequela','Y','0000-00-00 00:00:00'),(140154,10,'S46.211D ','Strain of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140153,10,'S46.211A ','Strain of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140152,10,'S46.209S ','Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140151,10,'S46.209D ','Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140150,10,'S46.209A ','Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140149,10,'S46.202S ','Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm, sequela','Y','0000-00-00 00:00:00'),(140148,10,'S46.202D ','Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140147,10,'S46.202A ','Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140146,10,'S46.201S ','Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm, sequela','Y','0000-00-00 00:00:00'),(140145,10,'S46.201D ','Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140144,10,'S46.201A ','Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140143,10,'S46.199S ','Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140142,10,'S46.199D ','Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140141,10,'S46.199A ','Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140140,10,'S46.192S ','Other injury of muscle, fascia and tendon of long head of biceps, left arm, sequela','Y','0000-00-00 00:00:00'),(140139,10,'S46.192D ','Other injury of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140137,10,'S46.191S ','Other injury of muscle, fascia and tendon of long head of biceps, right arm, sequela','Y','0000-00-00 00:00:00'),(140138,10,'S46.192A ','Other injury of muscle, fascia and tendon of long head of biceps, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140136,10,'S46.191D ','Other injury of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140135,10,'S46.191A ','Other injury of muscle, fascia and tendon of long head of biceps, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140134,10,'S46.129S ','Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140133,10,'S46.129D ','Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140132,10,'S46.129A ','Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140131,10,'S46.122S ','Laceration of muscle, fascia and tendon of long head of biceps, left arm, sequela','Y','0000-00-00 00:00:00'),(140130,10,'S46.122D ','Laceration of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140129,10,'S46.122A ','Laceration of muscle, fascia and tendon of long head of biceps, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140128,10,'S46.121S ','Laceration of muscle, fascia and tendon of long head of biceps, right arm, sequela','Y','0000-00-00 00:00:00'),(140127,10,'S46.121D ','Laceration of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140126,10,'S46.121A ','Laceration of muscle, fascia and tendon of long head of biceps, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140125,10,'S46.119S ','Strain of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140124,10,'S46.119D ','Strain of muscle, fascia and tendon of long head of biceps, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140123,10,'S46.119A ','Strain of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140122,10,'S46.112S ','Strain of muscle, fascia and tendon of long head of biceps, left arm, sequela','Y','0000-00-00 00:00:00'),(140120,10,'S46.112A ','Strain of muscle, fascia and tendon of long head of biceps, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140121,10,'S46.112D ','Strain of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140119,10,'S46.111S ','Strain of muscle, fascia and tendon of long head of biceps, right arm, sequela','Y','0000-00-00 00:00:00'),(140118,10,'S46.111D ','Strain of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140117,10,'S46.111A ','Strain of muscle, fascia and tendon of long head of biceps, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140116,10,'S46.109S ','Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140115,10,'S46.109D ','Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140114,10,'S46.109A ','Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140113,10,'S46.102S ','Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm, sequela','Y','0000-00-00 00:00:00'),(140112,10,'S46.102D ','Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140111,10,'S46.102A ','Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140110,10,'S46.101S ','Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm, sequela','Y','0000-00-00 00:00:00'),(140109,10,'S46.101D ','Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140108,10,'S46.101A ','Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140107,10,'S46.099S ','Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(140106,10,'S46.099D ','Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(140105,10,'S46.099A ','Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(140104,10,'S46.092S ','Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela','Y','0000-00-00 00:00:00'),(140103,10,'S46.092D ','Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(140102,10,'S46.092A ','Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(140101,10,'S46.091S ','Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela','Y','0000-00-00 00:00:00'),(140100,10,'S46.091D ','Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(140099,10,'S46.091A ','Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(140098,10,'S46.029S ','Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(140097,10,'S46.029D ','Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(140096,10,'S46.029A ','Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(140095,10,'S46.022S ','Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela','Y','0000-00-00 00:00:00'),(140094,10,'S46.022D ','Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(140093,10,'S46.022A ','Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(140092,10,'S46.021S ','Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela','Y','0000-00-00 00:00:00'),(140091,10,'S46.021D ','Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(140090,10,'S46.021A ','Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(140089,10,'S46.019S ','Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(140088,10,'S46.019D ','Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(140087,10,'S46.019A ','Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(140086,10,'S46.012S ','Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela','Y','0000-00-00 00:00:00'),(140085,10,'S46.012D ','Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(140084,10,'S46.012A ','Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(140083,10,'S46.011S ','Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela','Y','0000-00-00 00:00:00'),(140082,10,'S46.011D ','Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(140081,10,'S46.011A ','Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(140080,10,'S46.009S ','Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(140079,10,'S46.009D ','Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(140078,10,'S46.009A ','Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(140077,10,'S46.002S ','Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela','Y','0000-00-00 00:00:00'),(140076,10,'S46.002D ','Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(140075,10,'S46.002A ','Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(140074,10,'S46.001S ','Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela','Y','0000-00-00 00:00:00'),(140073,10,'S46.001D ','Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(140072,10,'S46.001A ','Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(140071,10,'S45.999S ','Other specified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140070,10,'S45.999D ','Other specified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140069,10,'S45.999A ','Other specified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140068,10,'S45.992S ','Other specified injury of unspecified blood vessel at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(140067,10,'S45.992D ','Other specified injury of unspecified blood vessel at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140066,10,'S45.992A ','Other specified injury of unspecified blood vessel at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140065,10,'S45.991S ','Other specified injury of unspecified blood vessel at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(140064,10,'S45.991D ','Other specified injury of unspecified blood vessel at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140063,10,'S45.991A ','Other specified injury of unspecified blood vessel at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140062,10,'S45.919S ','Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140061,10,'S45.919D ','Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140060,10,'S45.919A ','Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140059,10,'S45.912S ','Laceration of unspecified blood vessel at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(140058,10,'S45.912D ','Laceration of unspecified blood vessel at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140057,10,'S45.912A ','Laceration of unspecified blood vessel at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140056,10,'S45.911S ','Laceration of unspecified blood vessel at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(140055,10,'S45.911D ','Laceration of unspecified blood vessel at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140054,10,'S45.911A ','Laceration of unspecified blood vessel at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140053,10,'S45.909S ','Unspecified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140052,10,'S45.909D ','Unspecified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140051,10,'S45.909A ','Unspecified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140050,10,'S45.902S ','Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(140049,10,'S45.902D ','Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140048,10,'S45.902A ','Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140047,10,'S45.901S ','Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(140046,10,'S45.901D ','Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140045,10,'S45.901A ','Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140044,10,'S45.899S ','Other specified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140043,10,'S45.899D ','Other specified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140042,10,'S45.899A ','Other specified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140041,10,'S45.892S ','Other specified injury of other specified blood vessels at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(140040,10,'S45.892D ','Other specified injury of other specified blood vessels at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140039,10,'S45.892A ','Other specified injury of other specified blood vessels at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140038,10,'S45.891S ','Other specified injury of other specified blood vessels at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(140037,10,'S45.891D ','Other specified injury of other specified blood vessels at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140036,10,'S45.891A ','Other specified injury of other specified blood vessels at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140035,10,'S45.819S ','Laceration of other specified blood vessels at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140034,10,'S45.819D ','Laceration of other specified blood vessels at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140033,10,'S45.819A ','Laceration of other specified blood vessels at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140032,10,'S45.812S ','Laceration of other specified blood vessels at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(140031,10,'S45.812D ','Laceration of other specified blood vessels at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140030,10,'S45.812A ','Laceration of other specified blood vessels at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140029,10,'S45.811S ','Laceration of other specified blood vessels at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(140028,10,'S45.811D ','Laceration of other specified blood vessels at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140027,10,'S45.811A ','Laceration of other specified blood vessels at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140026,10,'S45.809S ','Unspecified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140025,10,'S45.809D ','Unspecified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140024,10,'S45.809A ','Unspecified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140023,10,'S45.802S ','Unspecified injury of other specified blood vessels at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(140022,10,'S45.802D ','Unspecified injury of other specified blood vessels at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140021,10,'S45.802A ','Unspecified injury of other specified blood vessels at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140020,10,'S45.801S ','Unspecified injury of other specified blood vessels at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(140019,10,'S45.801D ','Unspecified injury of other specified blood vessels at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140018,10,'S45.801A ','Unspecified injury of other specified blood vessels at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140017,10,'S45.399S ','Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140016,10,'S45.399D ','Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140015,10,'S45.399A ','Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140014,10,'S45.392S ','Other specified injury of superficial vein at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(140013,10,'S45.392D ','Other specified injury of superficial vein at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140012,10,'S45.392A ','Other specified injury of superficial vein at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140011,10,'S45.391S ','Other specified injury of superficial vein at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(140010,10,'S45.391D ','Other specified injury of superficial vein at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140009,10,'S45.391A ','Other specified injury of superficial vein at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(140008,10,'S45.319S ','Laceration of superficial vein at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(140007,10,'S45.319D ','Laceration of superficial vein at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140006,10,'S45.319A ','Laceration of superficial vein at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(140005,10,'S45.312S ','Laceration of superficial vein at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(140004,10,'S45.312D ','Laceration of superficial vein at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140003,10,'S45.312A ','Laceration of superficial vein at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(140002,10,'S45.311S ','Laceration of superficial vein at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(140001,10,'S45.311D ','Laceration of superficial vein at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(140000,10,'S45.311A ','Laceration of superficial vein at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(139999,10,'S45.309S ','Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(139998,10,'S45.309D ','Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139997,10,'S45.309A ','Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(139996,10,'S45.302S ','Unspecified injury of superficial vein at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(139995,10,'S45.302D ','Unspecified injury of superficial vein at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139994,10,'S45.302A ','Unspecified injury of superficial vein at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(139993,10,'S45.301S ','Unspecified injury of superficial vein at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(139992,10,'S45.301D ','Unspecified injury of superficial vein at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139991,10,'S45.301A ','Unspecified injury of superficial vein at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(139990,10,'S45.299S ','Other specified injury of axillary or brachial vein, unspecified side, sequela','Y','0000-00-00 00:00:00'),(139989,10,'S45.299D ','Other specified injury of axillary or brachial vein, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(139988,10,'S45.299A ','Other specified injury of axillary or brachial vein, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(139987,10,'S45.292S ','Other specified injury of axillary or brachial vein, left side, sequela','Y','0000-00-00 00:00:00'),(139986,10,'S45.292D ','Other specified injury of axillary or brachial vein, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(139984,10,'S45.291S ','Other specified injury of axillary or brachial vein, right side, sequela','Y','0000-00-00 00:00:00'),(139985,10,'S45.292A ','Other specified injury of axillary or brachial vein, left side, initial encounter','Y','0000-00-00 00:00:00'),(139983,10,'S45.291D ','Other specified injury of axillary or brachial vein, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(139982,10,'S45.291A ','Other specified injury of axillary or brachial vein, right side, initial encounter','Y','0000-00-00 00:00:00'),(139981,10,'S45.219S ','Laceration of axillary or brachial vein, unspecified side, sequela','Y','0000-00-00 00:00:00'),(139980,10,'S45.219D ','Laceration of axillary or brachial vein, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(139979,10,'S45.219A ','Laceration of axillary or brachial vein, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(139978,10,'S45.212S ','Laceration of axillary or brachial vein, left side, sequela','Y','0000-00-00 00:00:00'),(139977,10,'S45.212D ','Laceration of axillary or brachial vein, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(139976,10,'S45.212A ','Laceration of axillary or brachial vein, left side, initial encounter','Y','0000-00-00 00:00:00'),(139974,10,'S45.211D ','Laceration of axillary or brachial vein, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(139975,10,'S45.211S ','Laceration of axillary or brachial vein, right side, sequela','Y','0000-00-00 00:00:00'),(139973,10,'S45.211A ','Laceration of axillary or brachial vein, right side, initial encounter','Y','0000-00-00 00:00:00'),(139972,10,'S45.209S ','Unspecified injury of axillary or brachial vein, unspecified side, sequela','Y','0000-00-00 00:00:00'),(139971,10,'S45.209D ','Unspecified injury of axillary or brachial vein, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(139969,10,'S45.202S ','Unspecified injury of axillary or brachial vein, left side, sequela','Y','0000-00-00 00:00:00'),(139970,10,'S45.209A ','Unspecified injury of axillary or brachial vein, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(139968,10,'S45.202D ','Unspecified injury of axillary or brachial vein, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(139967,10,'S45.202A ','Unspecified injury of axillary or brachial vein, left side, initial encounter','Y','0000-00-00 00:00:00'),(139966,10,'S45.201S ','Unspecified injury of axillary or brachial vein, right side, sequela','Y','0000-00-00 00:00:00'),(139965,10,'S45.201D ','Unspecified injury of axillary or brachial vein, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(139963,10,'S45.199S ','Other specified injury of brachial artery, unspecified side, sequela','Y','0000-00-00 00:00:00'),(139964,10,'S45.201A ','Unspecified injury of axillary or brachial vein, right side, initial encounter','Y','0000-00-00 00:00:00'),(139962,10,'S45.199D ','Other specified injury of brachial artery, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(139961,10,'S45.199A ','Other specified injury of brachial artery, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(139960,10,'S45.192S ','Other specified injury of brachial artery, left side, sequela','Y','0000-00-00 00:00:00'),(139959,10,'S45.192D ','Other specified injury of brachial artery, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(139958,10,'S45.192A ','Other specified injury of brachial artery, left side, initial encounter','Y','0000-00-00 00:00:00'),(139957,10,'S45.191S ','Other specified injury of brachial artery, right side, sequela','Y','0000-00-00 00:00:00'),(139956,10,'S45.191D ','Other specified injury of brachial artery, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(139955,10,'S45.191A ','Other specified injury of brachial artery, right side, initial encounter','Y','0000-00-00 00:00:00'),(139954,10,'S45.119S ','Laceration of brachial artery, unspecified side, sequela','Y','0000-00-00 00:00:00'),(139952,10,'S45.119A ','Laceration of brachial artery, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(139953,10,'S45.119D ','Laceration of brachial artery, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(139951,10,'S45.112S ','Laceration of brachial artery, left side, sequela','Y','0000-00-00 00:00:00'),(139950,10,'S45.112D ','Laceration of brachial artery, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(139949,10,'S45.112A ','Laceration of brachial artery, left side, initial encounter','Y','0000-00-00 00:00:00'),(139948,10,'S45.111S ','Laceration of brachial artery, right side, sequela','Y','0000-00-00 00:00:00'),(139947,10,'S45.111D ','Laceration of brachial artery, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(139945,10,'S45.109S ','Unspecified injury of brachial artery, unspecified side, sequela','Y','0000-00-00 00:00:00'),(139946,10,'S45.111A ','Laceration of brachial artery, right side, initial encounter','Y','0000-00-00 00:00:00'),(139944,10,'S45.109D ','Unspecified injury of brachial artery, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(139942,10,'S45.102S ','Unspecified injury of brachial artery, left side, sequela','Y','0000-00-00 00:00:00'),(139943,10,'S45.109A ','Unspecified injury of brachial artery, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(139941,10,'S45.102D ','Unspecified injury of brachial artery, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(139940,10,'S45.102A ','Unspecified injury of brachial artery, left side, initial encounter','Y','0000-00-00 00:00:00'),(139939,10,'S45.101S ','Unspecified injury of brachial artery, right side, sequela','Y','0000-00-00 00:00:00'),(139937,10,'S45.101A ','Unspecified injury of brachial artery, right side, initial encounter','Y','0000-00-00 00:00:00'),(139938,10,'S45.101D ','Unspecified injury of brachial artery, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(139936,10,'S45.099S ','Other specified injury of axillary artery, unspecified side, sequela','Y','0000-00-00 00:00:00'),(139935,10,'S45.099D ','Other specified injury of axillary artery, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(139934,10,'S45.099A ','Other specified injury of axillary artery, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(139933,10,'S45.092S ','Other specified injury of axillary artery, left side, sequela','Y','0000-00-00 00:00:00'),(139932,10,'S45.092D ','Other specified injury of axillary artery, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(139930,10,'S45.091S ','Other specified injury of axillary artery, right side, sequela','Y','0000-00-00 00:00:00'),(139931,10,'S45.092A ','Other specified injury of axillary artery, left side, initial encounter','Y','0000-00-00 00:00:00'),(139929,10,'S45.091D ','Other specified injury of axillary artery, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(139928,10,'S45.091A ','Other specified injury of axillary artery, right side, initial encounter','Y','0000-00-00 00:00:00'),(139927,10,'S45.019S ','Laceration of axillary artery, unspecified side, sequela','Y','0000-00-00 00:00:00'),(139926,10,'S45.019D ','Laceration of axillary artery, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(139924,10,'S45.012S ','Laceration of axillary artery, left side, sequela','Y','0000-00-00 00:00:00'),(139925,10,'S45.019A ','Laceration of axillary artery, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(139923,10,'S45.012D ','Laceration of axillary artery, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(139921,10,'S45.011S ','Laceration of axillary artery, right side, sequela','Y','0000-00-00 00:00:00'),(139922,10,'S45.012A ','Laceration of axillary artery, left side, initial encounter','Y','0000-00-00 00:00:00'),(139920,10,'S45.011D ','Laceration of axillary artery, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(139919,10,'S45.011A ','Laceration of axillary artery, right side, initial encounter','Y','0000-00-00 00:00:00'),(139918,10,'S45.009S ','Unspecified injury of axillary artery, unspecified side, sequela','Y','0000-00-00 00:00:00'),(139917,10,'S45.009D ','Unspecified injury of axillary artery, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(139916,10,'S45.009A ','Unspecified injury of axillary artery, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(139914,10,'S45.002D ','Unspecified injury of axillary artery, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(139915,10,'S45.002S ','Unspecified injury of axillary artery, left side, sequela','Y','0000-00-00 00:00:00'),(139913,10,'S45.002A ','Unspecified injury of axillary artery, left side, initial encounter','Y','0000-00-00 00:00:00'),(139912,10,'S45.001S ','Unspecified injury of axillary artery, right side, sequela','Y','0000-00-00 00:00:00'),(139910,10,'S45.001A ','Unspecified injury of axillary artery, right side, initial encounter','Y','0000-00-00 00:00:00'),(139911,10,'S45.001D ','Unspecified injury of axillary artery, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(139909,10,'S44.92XS ','Injury of unspecified nerve at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(139908,10,'S44.92XD ','Injury of unspecified nerve at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139906,10,'S44.91XS ','Injury of unspecified nerve at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(139907,10,'S44.92XA ','Injury of unspecified nerve at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(139905,10,'S44.91XD ','Injury of unspecified nerve at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139904,10,'S44.91XA ','Injury of unspecified nerve at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(139903,10,'S44.90XS ','Injury of unspecified nerve at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(139902,10,'S44.90XD ','Injury of unspecified nerve at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139901,10,'S44.90XA ','Injury of unspecified nerve at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(139900,10,'S44.8X9S ','Injury of other nerves at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(139899,10,'S44.8X9D ','Injury of other nerves at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139897,10,'S44.8X2S ','Injury of other nerves at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(139898,10,'S44.8X9A ','Injury of other nerves at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(139896,10,'S44.8X2D ','Injury of other nerves at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139895,10,'S44.8X2A ','Injury of other nerves at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(139894,10,'S44.8X1S ','Injury of other nerves at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(139892,10,'S44.8X1A ','Injury of other nerves at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(139893,10,'S44.8X1D ','Injury of other nerves at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139891,10,'S44.52XS ','Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(139890,10,'S44.52XD ','Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139889,10,'S44.52XA ','Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(139888,10,'S44.51XS ','Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(139887,10,'S44.51XD ','Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139886,10,'S44.51XA ','Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(139885,10,'S44.50XS ','Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(139884,10,'S44.50XD ','Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139883,10,'S44.50XA ','Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(139881,10,'S44.42XD ','Injury of musculocutaneous nerve, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139882,10,'S44.42XS ','Injury of musculocutaneous nerve, left arm, sequela','Y','0000-00-00 00:00:00'),(139880,10,'S44.42XA ','Injury of musculocutaneous nerve, left arm, initial encounter','Y','0000-00-00 00:00:00'),(139879,10,'S44.41XS ','Injury of musculocutaneous nerve, right arm, sequela','Y','0000-00-00 00:00:00'),(139878,10,'S44.41XD ','Injury of musculocutaneous nerve, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139877,10,'S44.41XA ','Injury of musculocutaneous nerve, right arm, initial encounter','Y','0000-00-00 00:00:00'),(139876,10,'S44.40XS ','Injury of musculocutaneous nerve, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(139875,10,'S44.40XD ','Injury of musculocutaneous nerve, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139874,10,'S44.40XA ','Injury of musculocutaneous nerve, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(139873,10,'S44.32XS ','Injury of axillary nerve, left arm, sequela','Y','0000-00-00 00:00:00'),(139872,10,'S44.32XD ','Injury of axillary nerve, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139871,10,'S44.32XA ','Injury of axillary nerve, left arm, initial encounter','Y','0000-00-00 00:00:00'),(139870,10,'S44.31XS ','Injury of axillary nerve, right arm, sequela','Y','0000-00-00 00:00:00'),(139869,10,'S44.31XD ','Injury of axillary nerve, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139868,10,'S44.31XA ','Injury of axillary nerve, right arm, initial encounter','Y','0000-00-00 00:00:00'),(139867,10,'S44.30XS ','Injury of axillary nerve, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(139866,10,'S44.30XD ','Injury of axillary nerve, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139865,10,'S44.30XA ','Injury of axillary nerve, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(139864,10,'S44.22XS ','Injury of radial nerve at upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(139863,10,'S44.22XD ','Injury of radial nerve at upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139862,10,'S44.22XA ','Injury of radial nerve at upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(139861,10,'S44.21XS ','Injury of radial nerve at upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(139860,10,'S44.21XD ','Injury of radial nerve at upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139859,10,'S44.21XA ','Injury of radial nerve at upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(139858,10,'S44.20XS ','Injury of radial nerve at upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(139857,10,'S44.20XD ','Injury of radial nerve at upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139856,10,'S44.20XA ','Injury of radial nerve at upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(139855,10,'S44.12XS ','Injury of median nerve at upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(139854,10,'S44.12XD ','Injury of median nerve at upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139853,10,'S44.12XA ','Injury of median nerve at upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(139852,10,'S44.11XS ','Injury of median nerve at upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(139851,10,'S44.11XD ','Injury of median nerve at upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139850,10,'S44.11XA ','Injury of median nerve at upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(139849,10,'S44.10XS ','Injury of median nerve at upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(139848,10,'S44.10XD ','Injury of median nerve at upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139847,10,'S44.10XA ','Injury of median nerve at upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(139846,10,'S44.02XS ','Injury of ulnar nerve at upper arm level, left arm, sequela','Y','0000-00-00 00:00:00'),(139845,10,'S44.02XD ','Injury of ulnar nerve at upper arm level, left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139843,10,'S44.01XS ','Injury of ulnar nerve at upper arm level, right arm, sequela','Y','0000-00-00 00:00:00'),(139844,10,'S44.02XA ','Injury of ulnar nerve at upper arm level, left arm, initial encounter','Y','0000-00-00 00:00:00'),(139842,10,'S44.01XD ','Injury of ulnar nerve at upper arm level, right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139841,10,'S44.01XA ','Injury of ulnar nerve at upper arm level, right arm, initial encounter','Y','0000-00-00 00:00:00'),(139840,10,'S44.00XS ','Injury of ulnar nerve at upper arm level, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(139839,10,'S44.00XD ','Injury of ulnar nerve at upper arm level, unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(139838,10,'S44.00XA ','Injury of ulnar nerve at upper arm level, unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(139836,10,'S43.92XD ','Sprain of unspecified parts of left shoulder girdle, subsequent encounter','Y','0000-00-00 00:00:00'),(139837,10,'S43.92XS ','Sprain of unspecified parts of left shoulder girdle, sequela','Y','0000-00-00 00:00:00'),(139835,10,'S43.92XA ','Sprain of unspecified parts of left shoulder girdle, initial encounter','Y','0000-00-00 00:00:00'),(139834,10,'S43.91XS ','Sprain of unspecified parts of right shoulder girdle, sequela','Y','0000-00-00 00:00:00'),(139833,10,'S43.91XD ','Sprain of unspecified parts of right shoulder girdle, subsequent encounter','Y','0000-00-00 00:00:00'),(139832,10,'S43.91XA ','Sprain of unspecified parts of right shoulder girdle, initial encounter','Y','0000-00-00 00:00:00'),(139831,10,'S43.90XS ','Sprain of unspecified parts of unspecified shoulder girdle, sequela','Y','0000-00-00 00:00:00'),(139830,10,'S43.90XD ','Sprain of unspecified parts of unspecified shoulder girdle, subsequent encounter','Y','0000-00-00 00:00:00'),(139829,10,'S43.90XA ','Sprain of unspecified parts of unspecified shoulder girdle, initial encounter','Y','0000-00-00 00:00:00'),(139828,10,'S43.82XS ','Sprain of other specified parts of left shoulder girdle, sequela','Y','0000-00-00 00:00:00'),(139827,10,'S43.82XD ','Sprain of other specified parts of left shoulder girdle, subsequent encounter','Y','0000-00-00 00:00:00'),(139825,10,'S43.81XS ','Sprain of other specified parts of right shoulder girdle, sequela','Y','0000-00-00 00:00:00'),(139826,10,'S43.82XA ','Sprain of other specified parts of left shoulder girdle, initial encounter','Y','0000-00-00 00:00:00'),(139824,10,'S43.81XD ','Sprain of other specified parts of right shoulder girdle, subsequent encounter','Y','0000-00-00 00:00:00'),(139823,10,'S43.81XA ','Sprain of other specified parts of right shoulder girdle, initial encounter','Y','0000-00-00 00:00:00'),(139822,10,'S43.80XS ','Sprain of other specified parts of unspecified shoulder girdle, sequela','Y','0000-00-00 00:00:00'),(139820,10,'S43.80XA ','Sprain of other specified parts of unspecified shoulder girdle, initial encounter','Y','0000-00-00 00:00:00'),(139821,10,'S43.80XD ','Sprain of other specified parts of unspecified shoulder girdle, subsequent encounter','Y','0000-00-00 00:00:00'),(139819,10,'S43.62XS ','Sprain of left sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139818,10,'S43.62XD ','Sprain of left sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139817,10,'S43.62XA ','Sprain of left sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139815,10,'S43.61XD ','Sprain of right sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139816,10,'S43.61XS ','Sprain of right sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139814,10,'S43.61XA ','Sprain of right sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139813,10,'S43.60XS ','Sprain of unspecified sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139811,10,'S43.60XA ','Sprain of unspecified sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139812,10,'S43.60XD ','Sprain of unspecified sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139810,10,'S43.52XS ','Sprain of left acromioclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139809,10,'S43.52XD ','Sprain of left acromioclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139808,10,'S43.52XA ','Sprain of left acromioclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139806,10,'S43.51XD ','Sprain of right acromioclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139807,10,'S43.51XS ','Sprain of right acromioclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139805,10,'S43.51XA ','Sprain of right acromioclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139804,10,'S43.50XS ','Sprain of unspecified acromioclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139802,10,'S43.50XA ','Sprain of unspecified acromioclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139803,10,'S43.50XD ','Sprain of unspecified acromioclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139801,10,'S43.499S ','Other sprain of unspecified shoulder joint, sequela','Y','0000-00-00 00:00:00'),(139800,10,'S43.499D ','Other sprain of unspecified shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139799,10,'S43.499A ','Other sprain of unspecified shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(139798,10,'S43.492S ','Other sprain of left shoulder joint, sequela','Y','0000-00-00 00:00:00'),(139796,10,'S43.492A ','Other sprain of left shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(139797,10,'S43.492D ','Other sprain of left shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139795,10,'S43.491S ','Other sprain of right shoulder joint, sequela','Y','0000-00-00 00:00:00'),(139793,10,'S43.491A ','Other sprain of right shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(139794,10,'S43.491D ','Other sprain of right shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139792,10,'S43.439S ','Superior glenoid labrum lesion of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(139791,10,'S43.439D ','Superior glenoid labrum lesion of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(139790,10,'S43.439A ','Superior glenoid labrum lesion of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(139789,10,'S43.432S ','Superior glenoid labrum lesion of left shoulder, sequela','Y','0000-00-00 00:00:00'),(139788,10,'S43.432D ','Superior glenoid labrum lesion of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(139786,10,'S43.431S ','Superior glenoid labrum lesion of right shoulder, sequela','Y','0000-00-00 00:00:00'),(139787,10,'S43.432A ','Superior glenoid labrum lesion of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(139785,10,'S43.431D ','Superior glenoid labrum lesion of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(139784,10,'S43.431A ','Superior glenoid labrum lesion of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(139782,10,'S43.429D ','Sprain of unspecified rotator cuff capsule, subsequent encounter','Y','0000-00-00 00:00:00'),(139783,10,'S43.429S ','Sprain of unspecified rotator cuff capsule, sequela','Y','0000-00-00 00:00:00'),(139781,10,'S43.429A ','Sprain of unspecified rotator cuff capsule, initial encounter','Y','0000-00-00 00:00:00'),(139780,10,'S43.422S ','Sprain of left rotator cuff capsule, sequela','Y','0000-00-00 00:00:00'),(139779,10,'S43.422D ','Sprain of left rotator cuff capsule, subsequent encounter','Y','0000-00-00 00:00:00'),(139777,10,'S43.421S ','Sprain of right rotator cuff capsule, sequela','Y','0000-00-00 00:00:00'),(139778,10,'S43.422A ','Sprain of left rotator cuff capsule, initial encounter','Y','0000-00-00 00:00:00'),(139776,10,'S43.421D ','Sprain of right rotator cuff capsule, subsequent encounter','Y','0000-00-00 00:00:00'),(139775,10,'S43.421A ','Sprain of right rotator cuff capsule, initial encounter','Y','0000-00-00 00:00:00'),(139773,10,'S43.419D ','Sprain of unspecified coracohumeral (ligament), subsequent encounter','Y','0000-00-00 00:00:00'),(139774,10,'S43.419S ','Sprain of unspecified coracohumeral (ligament), sequela','Y','0000-00-00 00:00:00'),(139772,10,'S43.419A ','Sprain of unspecified coracohumeral (ligament), initial encounter','Y','0000-00-00 00:00:00'),(139771,10,'S43.412S ','Sprain of left coracohumeral (ligament), sequela','Y','0000-00-00 00:00:00'),(139770,10,'S43.412D ','Sprain of left coracohumeral (ligament), subsequent encounter','Y','0000-00-00 00:00:00'),(139768,10,'S43.411S ','Sprain of right coracohumeral (ligament), sequela','Y','0000-00-00 00:00:00'),(139769,10,'S43.412A ','Sprain of left coracohumeral (ligament), initial encounter','Y','0000-00-00 00:00:00'),(139767,10,'S43.411D ','Sprain of right coracohumeral (ligament), subsequent encounter','Y','0000-00-00 00:00:00'),(139766,10,'S43.411A ','Sprain of right coracohumeral (ligament), initial encounter','Y','0000-00-00 00:00:00'),(139764,10,'S43.409D ','Unspecified sprain of unspecified shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139765,10,'S43.409S ','Unspecified sprain of unspecified shoulder joint, sequela','Y','0000-00-00 00:00:00'),(139763,10,'S43.409A ','Unspecified sprain of unspecified shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(139762,10,'S43.402S ','Unspecified sprain of left shoulder joint, sequela','Y','0000-00-00 00:00:00'),(139761,10,'S43.402D ','Unspecified sprain of left shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139759,10,'S43.401S ','Unspecified sprain of right shoulder joint, sequela','Y','0000-00-00 00:00:00'),(139760,10,'S43.402A ','Unspecified sprain of left shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(139758,10,'S43.401D ','Unspecified sprain of right shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139757,10,'S43.401A ','Unspecified sprain of right shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(139756,10,'S43.396S ','Dislocation of other parts of unspecified shoulder girdle, sequela','Y','0000-00-00 00:00:00'),(139755,10,'S43.396D ','Dislocation of other parts of unspecified shoulder girdle, subsequent encounter','Y','0000-00-00 00:00:00'),(139754,10,'S43.396A ','Dislocation of other parts of unspecified shoulder girdle, initial encounter','Y','0000-00-00 00:00:00'),(139753,10,'S43.395S ','Dislocation of other parts of left shoulder girdle, sequela','Y','0000-00-00 00:00:00'),(139751,10,'S43.395A ','Dislocation of other parts of left shoulder girdle, initial encounter','Y','0000-00-00 00:00:00'),(139752,10,'S43.395D ','Dislocation of other parts of left shoulder girdle, subsequent encounter','Y','0000-00-00 00:00:00'),(139750,10,'S43.394S ','Dislocation of other parts of right shoulder girdle, sequela','Y','0000-00-00 00:00:00'),(139749,10,'S43.394D ','Dislocation of other parts of right shoulder girdle, subsequent encounter','Y','0000-00-00 00:00:00'),(139748,10,'S43.394A ','Dislocation of other parts of right shoulder girdle, initial encounter','Y','0000-00-00 00:00:00'),(139747,10,'S43.393S ','Subluxation of other parts of unspecified shoulder girdle, sequela','Y','0000-00-00 00:00:00'),(139746,10,'S43.393D ','Subluxation of other parts of unspecified shoulder girdle, subsequent encounter','Y','0000-00-00 00:00:00'),(139745,10,'S43.393A ','Subluxation of other parts of unspecified shoulder girdle, initial encounter','Y','0000-00-00 00:00:00'),(139743,10,'S43.392D ','Subluxation of other parts of left shoulder girdle, subsequent encounter','Y','0000-00-00 00:00:00'),(139744,10,'S43.392S ','Subluxation of other parts of left shoulder girdle, sequela','Y','0000-00-00 00:00:00'),(139742,10,'S43.392A ','Subluxation of other parts of left shoulder girdle, initial encounter','Y','0000-00-00 00:00:00'),(139741,10,'S43.391S ','Subluxation of other parts of right shoulder girdle, sequela','Y','0000-00-00 00:00:00'),(139739,10,'S43.391A ','Subluxation of other parts of right shoulder girdle, initial encounter','Y','0000-00-00 00:00:00'),(139740,10,'S43.391D ','Subluxation of other parts of right shoulder girdle, subsequent encounter','Y','0000-00-00 00:00:00'),(139738,10,'S43.316S ','Dislocation of unspecified scapula, sequela','Y','0000-00-00 00:00:00'),(139737,10,'S43.316D ','Dislocation of unspecified scapula, subsequent encounter','Y','0000-00-00 00:00:00'),(139736,10,'S43.316A ','Dislocation of unspecified scapula, initial encounter','Y','0000-00-00 00:00:00'),(139735,10,'S43.315S ','Dislocation of left scapula, sequela','Y','0000-00-00 00:00:00'),(139733,10,'S43.315A ','Dislocation of left scapula, initial encounter','Y','0000-00-00 00:00:00'),(139734,10,'S43.315D ','Dislocation of left scapula, subsequent encounter','Y','0000-00-00 00:00:00'),(139732,10,'S43.314S ','Dislocation of right scapula, sequela','Y','0000-00-00 00:00:00'),(139730,10,'S43.314A ','Dislocation of right scapula, initial encounter','Y','0000-00-00 00:00:00'),(139731,10,'S43.314D ','Dislocation of right scapula, subsequent encounter','Y','0000-00-00 00:00:00'),(139729,10,'S43.313S ','Subluxation of unspecified scapula, sequela','Y','0000-00-00 00:00:00'),(139728,10,'S43.313D ','Subluxation of unspecified scapula, subsequent encounter','Y','0000-00-00 00:00:00'),(139727,10,'S43.313A ','Subluxation of unspecified scapula, initial encounter','Y','0000-00-00 00:00:00'),(139725,10,'S43.312D ','Subluxation of left scapula, subsequent encounter','Y','0000-00-00 00:00:00'),(139726,10,'S43.312S ','Subluxation of left scapula, sequela','Y','0000-00-00 00:00:00'),(139724,10,'S43.312A ','Subluxation of left scapula, initial encounter','Y','0000-00-00 00:00:00'),(139722,10,'S43.311D ','Subluxation of right scapula, subsequent encounter','Y','0000-00-00 00:00:00'),(139723,10,'S43.311S ','Subluxation of right scapula, sequela','Y','0000-00-00 00:00:00'),(139721,10,'S43.311A ','Subluxation of right scapula, initial encounter','Y','0000-00-00 00:00:00'),(139720,10,'S43.306S ','Dislocation of unspecified parts of unspecified shoulder girdle, sequela','Y','0000-00-00 00:00:00'),(139719,10,'S43.306D ','Dislocation of unspecified parts of unspecified shoulder girdle, subsequent encounter','Y','0000-00-00 00:00:00'),(139718,10,'S43.306A ','Dislocation of unspecified parts of unspecified shoulder girdle, initial encounter','Y','0000-00-00 00:00:00'),(139717,10,'S43.305S ','Dislocation of unspecified parts of left shoulder girdle, sequela','Y','0000-00-00 00:00:00'),(139716,10,'S43.305D ','Dislocation of unspecified parts of left shoulder girdle, subsequent encounter','Y','0000-00-00 00:00:00'),(139715,10,'S43.305A ','Dislocation of unspecified parts of left shoulder girdle, initial encounter','Y','0000-00-00 00:00:00'),(139714,10,'S43.304S ','Dislocation of unspecified parts of right shoulder girdle, sequela','Y','0000-00-00 00:00:00'),(139713,10,'S43.304D ','Dislocation of unspecified parts of right shoulder girdle, subsequent encounter','Y','0000-00-00 00:00:00'),(139712,10,'S43.304A ','Dislocation of unspecified parts of right shoulder girdle, initial encounter','Y','0000-00-00 00:00:00'),(139711,10,'S43.303S ','Subluxation of unspecified parts of unspecified shoulder girdle, sequela','Y','0000-00-00 00:00:00'),(139710,10,'S43.303D ','Subluxation of unspecified parts of unspecified shoulder girdle, subsequent encounter','Y','0000-00-00 00:00:00'),(139709,10,'S43.303A ','Subluxation of unspecified parts of unspecified shoulder girdle, initial encounter','Y','0000-00-00 00:00:00'),(139708,10,'S43.302S ','Subluxation of unspecified parts of left shoulder girdle, sequela','Y','0000-00-00 00:00:00'),(139707,10,'S43.302D ','Subluxation of unspecified parts of left shoulder girdle, subsequent encounter','Y','0000-00-00 00:00:00'),(139706,10,'S43.302A ','Subluxation of unspecified parts of left shoulder girdle, initial encounter','Y','0000-00-00 00:00:00'),(139705,10,'S43.301S ','Subluxation of unspecified parts of right shoulder girdle, sequela','Y','0000-00-00 00:00:00'),(139704,10,'S43.301D ','Subluxation of unspecified parts of right shoulder girdle, subsequent encounter','Y','0000-00-00 00:00:00'),(139703,10,'S43.301A ','Subluxation of unspecified parts of right shoulder girdle, initial encounter','Y','0000-00-00 00:00:00'),(139702,10,'S43.226S ','Posterior dislocation of unspecified sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139701,10,'S43.226D ','Posterior dislocation of unspecified sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139700,10,'S43.226A ','Posterior dislocation of unspecified sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139699,10,'S43.225S ','Posterior dislocation of left sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139698,10,'S43.225D ','Posterior dislocation of left sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139697,10,'S43.225A ','Posterior dislocation of left sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139696,10,'S43.224S ','Posterior dislocation of right sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139695,10,'S43.224D ','Posterior dislocation of right sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139694,10,'S43.224A ','Posterior dislocation of right sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139693,10,'S43.223S ','Posterior subluxation of unspecified sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139692,10,'S43.223D ','Posterior subluxation of unspecified sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139691,10,'S43.223A ','Posterior subluxation of unspecified sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139690,10,'S43.222S ','Posterior subluxation of left sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139689,10,'S43.222D ','Posterior subluxation of left sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139688,10,'S43.222A ','Posterior subluxation of left sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139687,10,'S43.221S ','Posterior subluxation of right sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139686,10,'S43.221D ','Posterior subluxation of right sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139685,10,'S43.221A ','Posterior subluxation of right sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139684,10,'S43.216S ','Anterior dislocation of unspecified sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139683,10,'S43.216D ','Anterior dislocation of unspecified sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139682,10,'S43.216A ','Anterior dislocation of unspecified sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139681,10,'S43.215S ','Anterior dislocation of left sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139680,10,'S43.215D ','Anterior dislocation of left sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139679,10,'S43.215A ','Anterior dislocation of left sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139678,10,'S43.214S ','Anterior dislocation of right sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139677,10,'S43.214D ','Anterior dislocation of right sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139676,10,'S43.214A ','Anterior dislocation of right sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139675,10,'S43.213S ','Anterior subluxation of unspecified sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139674,10,'S43.213D ','Anterior subluxation of unspecified sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139673,10,'S43.213A ','Anterior subluxation of unspecified sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139672,10,'S43.212S ','Anterior subluxation of left sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139671,10,'S43.212D ','Anterior subluxation of left sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139670,10,'S43.212A ','Anterior subluxation of left sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139669,10,'S43.211S ','Anterior subluxation of right sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139668,10,'S43.211D ','Anterior subluxation of right sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139667,10,'S43.211A ','Anterior subluxation of right sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139666,10,'S43.206S ','Unspecified dislocation of unspecified sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139665,10,'S43.206D ','Unspecified dislocation of unspecified sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139664,10,'S43.206A ','Unspecified dislocation of unspecified sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139663,10,'S43.205S ','Unspecified dislocation of left sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139662,10,'S43.205D ','Unspecified dislocation of left sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139661,10,'S43.205A ','Unspecified dislocation of left sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139660,10,'S43.204S ','Unspecified dislocation of right sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139659,10,'S43.204D ','Unspecified dislocation of right sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139658,10,'S43.204A ','Unspecified dislocation of right sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139657,10,'S43.203S ','Unspecified subluxation of unspecified sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139656,10,'S43.203D ','Unspecified subluxation of unspecified sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139655,10,'S43.203A ','Unspecified subluxation of unspecified sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139654,10,'S43.202S ','Unspecified subluxation of left sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139653,10,'S43.202D ','Unspecified subluxation of left sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139652,10,'S43.202A ','Unspecified subluxation of left sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139651,10,'S43.201S ','Unspecified subluxation of right sternoclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139650,10,'S43.201D ','Unspecified subluxation of right sternoclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139649,10,'S43.201A ','Unspecified subluxation of right sternoclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139648,10,'S43.159S ','Posterior dislocation of unspecified acromioclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139647,10,'S43.159D ','Posterior dislocation of unspecified acromioclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139645,10,'S43.152S ','Posterior dislocation of left acromioclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139646,10,'S43.159A ','Posterior dislocation of unspecified acromioclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139644,10,'S43.152D ','Posterior dislocation of left acromioclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139642,10,'S43.151S ','Posterior dislocation of right acromioclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139643,10,'S43.152A ','Posterior dislocation of left acromioclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139641,10,'S43.151D ','Posterior dislocation of right acromioclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139640,10,'S43.151A ','Posterior dislocation of right acromioclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139639,10,'S43.149S ','Inferior dislocation of unspecified acromioclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139638,10,'S43.149D ','Inferior dislocation of unspecified acromioclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139636,10,'S43.142S ','Inferior dislocation of left acromioclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139637,10,'S43.149A ','Inferior dislocation of unspecified acromioclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139635,10,'S43.142D ','Inferior dislocation of left acromioclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139634,10,'S43.142A ','Inferior dislocation of left acromioclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139633,10,'S43.141S ','Inferior dislocation of right acromioclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139632,10,'S43.141D ','Inferior dislocation of right acromioclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139631,10,'S43.141A ','Inferior dislocation of right acromioclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139630,10,'S43.139S ','Dislocation of unspecified acromioclavicular joint, greater than 200% displacement, sequela','Y','0000-00-00 00:00:00'),(139629,10,'S43.139D ','Dislocation of unspecified acromioclavicular joint, greater than 200% displacement, subsequent encounter','Y','0000-00-00 00:00:00'),(139628,10,'S43.139A ','Dislocation of unspecified acromioclavicular joint, greater than 200% displacement, initial encounter','Y','0000-00-00 00:00:00'),(139627,10,'S43.132S ','Dislocation of left acromioclavicular joint, greater than 200% displacement, sequela','Y','0000-00-00 00:00:00'),(139626,10,'S43.132D ','Dislocation of left acromioclavicular joint, greater than 200% displacement, subsequent encounter','Y','0000-00-00 00:00:00'),(139625,10,'S43.132A ','Dislocation of left acromioclavicular joint, greater than 200% displacement, initial encounter','Y','0000-00-00 00:00:00'),(139624,10,'S43.131S ','Dislocation of right acromioclavicular joint, greater than 200% displacement, sequela','Y','0000-00-00 00:00:00'),(139623,10,'S43.131D ','Dislocation of right acromioclavicular joint, greater than 200% displacement, subsequent encounter','Y','0000-00-00 00:00:00'),(139622,10,'S43.131A ','Dislocation of right acromioclavicular joint, greater than 200% displacement, initial encounter','Y','0000-00-00 00:00:00'),(139621,10,'S43.129S ','Dislocation of unspecified acromioclavicular joint, 100%-200% displacement, sequela','Y','0000-00-00 00:00:00'),(139620,10,'S43.129D ','Dislocation of unspecified acromioclavicular joint, 100%-200% displacement, subsequent encounter','Y','0000-00-00 00:00:00'),(139619,10,'S43.129A ','Dislocation of unspecified acromioclavicular joint, 100%-200% displacement, initial encounter','Y','0000-00-00 00:00:00'),(139617,10,'S43.122D ','Dislocation of left acromioclavicular joint, 100%-200% displacement, subsequent encounter','Y','0000-00-00 00:00:00'),(139618,10,'S43.122S ','Dislocation of left acromioclavicular joint, 100%-200% displacement, sequela','Y','0000-00-00 00:00:00'),(139616,10,'S43.122A ','Dislocation of left acromioclavicular joint, 100%-200% displacement, initial encounter','Y','0000-00-00 00:00:00'),(139615,10,'S43.121S ','Dislocation of right acromioclavicular joint, 100%-200% displacement, sequela','Y','0000-00-00 00:00:00'),(139614,10,'S43.121D ','Dislocation of right acromioclavicular joint, 100%-200% displacement, subsequent encounter','Y','0000-00-00 00:00:00'),(139613,10,'S43.121A ','Dislocation of right acromioclavicular joint, 100%-200% displacement, initial encounter','Y','0000-00-00 00:00:00'),(139612,10,'S43.119S ','Subluxation of unspecified acromioclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139611,10,'S43.119D ','Subluxation of unspecified acromioclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139610,10,'S43.119A ','Subluxation of unspecified acromioclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139609,10,'S43.112S ','Subluxation of left acromioclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139607,10,'S43.112A ','Subluxation of left acromioclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139608,10,'S43.112D ','Subluxation of left acromioclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139606,10,'S43.111S ','Subluxation of right acromioclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139605,10,'S43.111D ','Subluxation of right acromioclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139604,10,'S43.111A ','Subluxation of right acromioclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139603,10,'S43.109S ','Unspecified dislocation of unspecified acromioclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139602,10,'S43.109D ','Unspecified dislocation of unspecified acromioclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139601,10,'S43.109A ','Unspecified dislocation of unspecified acromioclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139600,10,'S43.102S ','Unspecified dislocation of left acromioclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139599,10,'S43.102D ','Unspecified dislocation of left acromioclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139598,10,'S43.102A ','Unspecified dislocation of left acromioclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139597,10,'S43.101S ','Unspecified dislocation of right acromioclavicular joint, sequela','Y','0000-00-00 00:00:00'),(139596,10,'S43.101D ','Unspecified dislocation of right acromioclavicular joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139594,10,'S43.086S ','Other dislocation of unspecified shoulder joint, sequela','Y','0000-00-00 00:00:00'),(139595,10,'S43.101A ','Unspecified dislocation of right acromioclavicular joint, initial encounter','Y','0000-00-00 00:00:00'),(139593,10,'S43.086D ','Other dislocation of unspecified shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139592,10,'S43.086A ','Other dislocation of unspecified shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(139591,10,'S43.085S ','Other dislocation of left shoulder joint, sequela','Y','0000-00-00 00:00:00'),(139590,10,'S43.085D ','Other dislocation of left shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139588,10,'S43.084S ','Other dislocation of right shoulder joint, sequela','Y','0000-00-00 00:00:00'),(139589,10,'S43.085A ','Other dislocation of left shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(139587,10,'S43.084D ','Other dislocation of right shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139586,10,'S43.084A ','Other dislocation of right shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(139584,10,'S43.083D ','Other subluxation of unspecified shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139585,10,'S43.083S ','Other subluxation of unspecified shoulder joint, sequela','Y','0000-00-00 00:00:00'),(139583,10,'S43.083A ','Other subluxation of unspecified shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(139582,10,'S43.082S ','Other subluxation of left shoulder joint, sequela','Y','0000-00-00 00:00:00'),(139581,10,'S43.082D ','Other subluxation of left shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139580,10,'S43.082A ','Other subluxation of left shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(139578,10,'S43.081D ','Other subluxation of right shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139579,10,'S43.081S ','Other subluxation of right shoulder joint, sequela','Y','0000-00-00 00:00:00'),(139577,10,'S43.081A ','Other subluxation of right shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(139576,10,'S43.036S ','Inferior dislocation of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139575,10,'S43.036D ','Inferior dislocation of unspecified humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(139574,10,'S43.036A ','Inferior dislocation of unspecified humerus, initial encounter','Y','0000-00-00 00:00:00'),(139572,10,'S43.035D ','Inferior dislocation of left humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(139573,10,'S43.035S ','Inferior dislocation of left humerus, sequela','Y','0000-00-00 00:00:00'),(139571,10,'S43.035A ','Inferior dislocation of left humerus, initial encounter','Y','0000-00-00 00:00:00'),(139569,10,'S43.034D ','Inferior dislocation of right humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(139570,10,'S43.034S ','Inferior dislocation of right humerus, sequela','Y','0000-00-00 00:00:00'),(139568,10,'S43.034A ','Inferior dislocation of right humerus, initial encounter','Y','0000-00-00 00:00:00'),(139566,10,'S43.033D ','Inferior subluxation of unspecified humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(139567,10,'S43.033S ','Inferior subluxation of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139565,10,'S43.033A ','Inferior subluxation of unspecified humerus, initial encounter','Y','0000-00-00 00:00:00'),(139564,10,'S43.032S ','Inferior subluxation of left humerus, sequela','Y','0000-00-00 00:00:00'),(139563,10,'S43.032D ','Inferior subluxation of left humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(139561,10,'S43.031S ','Inferior subluxation of right humerus, sequela','Y','0000-00-00 00:00:00'),(139562,10,'S43.032A ','Inferior subluxation of left humerus, initial encounter','Y','0000-00-00 00:00:00'),(139560,10,'S43.031D ','Inferior subluxation of right humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(139559,10,'S43.031A ','Inferior subluxation of right humerus, initial encounter','Y','0000-00-00 00:00:00'),(139558,10,'S43.026S ','Posterior dislocation of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139556,10,'S43.026A ','Posterior dislocation of unspecified humerus, initial encounter','Y','0000-00-00 00:00:00'),(139557,10,'S43.026D ','Posterior dislocation of unspecified humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(139555,10,'S43.025S ','Posterior dislocation of left humerus, sequela','Y','0000-00-00 00:00:00'),(139554,10,'S43.025D ','Posterior dislocation of left humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(139553,10,'S43.025A ','Posterior dislocation of left humerus, initial encounter','Y','0000-00-00 00:00:00'),(139552,10,'S43.024S ','Posterior dislocation of right humerus, sequela','Y','0000-00-00 00:00:00'),(139550,10,'S43.024A ','Posterior dislocation of right humerus, initial encounter','Y','0000-00-00 00:00:00'),(139551,10,'S43.024D ','Posterior dislocation of right humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(139549,10,'S43.023S ','Posterior subluxation of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139548,10,'S43.023D ','Posterior subluxation of unspecified humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(139547,10,'S43.023A ','Posterior subluxation of unspecified humerus, initial encounter','Y','0000-00-00 00:00:00'),(139546,10,'S43.022S ','Posterior subluxation of left humerus, sequela','Y','0000-00-00 00:00:00'),(139544,10,'S43.022A ','Posterior subluxation of left humerus, initial encounter','Y','0000-00-00 00:00:00'),(139545,10,'S43.022D ','Posterior subluxation of left humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(139543,10,'S43.021S ','Posterior subluxation of right humerus, sequela','Y','0000-00-00 00:00:00'),(139541,10,'S43.021A ','Posterior subluxation of right humerus, initial encounter','Y','0000-00-00 00:00:00'),(139542,10,'S43.021D ','Posterior subluxation of right humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(139540,10,'S43.016S ','Anterior dislocation of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139539,10,'S43.016D ','Anterior dislocation of unspecified humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(139538,10,'S43.016A ','Anterior dislocation of unspecified humerus, initial encounter','Y','0000-00-00 00:00:00'),(139537,10,'S43.015S ','Anterior dislocation of left humerus, sequela','Y','0000-00-00 00:00:00'),(139535,10,'S43.015A ','Anterior dislocation of left humerus, initial encounter','Y','0000-00-00 00:00:00'),(139536,10,'S43.015D ','Anterior dislocation of left humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(139534,10,'S43.014S ','Anterior dislocation of right humerus, sequela','Y','0000-00-00 00:00:00'),(139532,10,'S43.014A ','Anterior dislocation of right humerus, initial encounter','Y','0000-00-00 00:00:00'),(139533,10,'S43.014D ','Anterior dislocation of right humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(139531,10,'S43.013S ','Anterior subluxation of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139530,10,'S43.013D ','Anterior subluxation of unspecified humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(139529,10,'S43.013A ','Anterior subluxation of unspecified humerus, initial encounter','Y','0000-00-00 00:00:00'),(139528,10,'S43.012S ','Anterior subluxation of left humerus, sequela','Y','0000-00-00 00:00:00'),(139526,10,'S43.012A ','Anterior subluxation of left humerus, initial encounter','Y','0000-00-00 00:00:00'),(139527,10,'S43.012D ','Anterior subluxation of left humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(139525,10,'S43.011S ','Anterior subluxation of right humerus, sequela','Y','0000-00-00 00:00:00'),(139524,10,'S43.011D ','Anterior subluxation of right humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(139522,10,'S43.006S ','Unspecified dislocation of unspecified shoulder joint, sequela','Y','0000-00-00 00:00:00'),(139523,10,'S43.011A ','Anterior subluxation of right humerus, initial encounter','Y','0000-00-00 00:00:00'),(139521,10,'S43.006D ','Unspecified dislocation of unspecified shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139519,10,'S43.005S ','Unspecified dislocation of left shoulder joint, sequela','Y','0000-00-00 00:00:00'),(139520,10,'S43.006A ','Unspecified dislocation of unspecified shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(139518,10,'S43.005D ','Unspecified dislocation of left shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139517,10,'S43.005A ','Unspecified dislocation of left shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(139515,10,'S43.004D ','Unspecified dislocation of right shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139516,10,'S43.004S ','Unspecified dislocation of right shoulder joint, sequela','Y','0000-00-00 00:00:00'),(139514,10,'S43.004A ','Unspecified dislocation of right shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(139513,10,'S43.003S ','Unspecified subluxation of unspecified shoulder joint, sequela','Y','0000-00-00 00:00:00'),(139512,10,'S43.003D ','Unspecified subluxation of unspecified shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139511,10,'S43.003A ','Unspecified subluxation of unspecified shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(139510,10,'S43.002S ','Unspecified subluxation of left shoulder joint, sequela','Y','0000-00-00 00:00:00'),(139509,10,'S43.002D ','Unspecified subluxation of left shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139508,10,'S43.002A ','Unspecified subluxation of left shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(139507,10,'S43.001S ','Unspecified subluxation of right shoulder joint, sequela','Y','0000-00-00 00:00:00'),(139506,10,'S43.001D ','Unspecified subluxation of right shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(139505,10,'S43.001A ','Unspecified subluxation of right shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(139504,10,'S42.92XS ','Fracture of left shoulder girdle, part unspecified, sequela','Y','0000-00-00 00:00:00'),(139503,10,'S42.92XP ','Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139502,10,'S42.92XK ','Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139501,10,'S42.92XG ','Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139500,10,'S42.92XD ','Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139499,10,'S42.92XB ','Fracture of left shoulder girdle, part unspecified, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139498,10,'S42.92XA ','Fracture of left shoulder girdle, part unspecified, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139497,10,'S42.91XS ','Fracture of right shoulder girdle, part unspecified, sequela','Y','0000-00-00 00:00:00'),(139496,10,'S42.91XP ','Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139495,10,'S42.91XK ','Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139494,10,'S42.91XG ','Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139493,10,'S42.91XD ','Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139492,10,'S42.91XB ','Fracture of right shoulder girdle, part unspecified, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139490,10,'S42.90XS ','Fracture of unspecified shoulder girdle, part unspecified, sequela','Y','0000-00-00 00:00:00'),(139491,10,'S42.91XA ','Fracture of right shoulder girdle, part unspecified, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139489,10,'S42.90XP ','Fracture of unspecified shoulder girdle, part unspecified, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139488,10,'S42.90XK ','Fracture of unspecified shoulder girdle, part unspecified, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139487,10,'S42.90XG ','Fracture of unspecified shoulder girdle, part unspecified, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139486,10,'S42.90XD ','Fracture of unspecified shoulder girdle, part unspecified, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139485,10,'S42.90XB ','Fracture of unspecified shoulder girdle, part unspecified, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139484,10,'S42.90XA ','Fracture of unspecified shoulder girdle, part unspecified, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139483,10,'S42.496S ','Other nondisplaced fracture of lower end of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139482,10,'S42.496P ','Other nondisplaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139481,10,'S42.496K ','Other nondisplaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139480,10,'S42.496G ','Other nondisplaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139479,10,'S42.496D ','Other nondisplaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139478,10,'S42.496B ','Other nondisplaced fracture of lower end of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139477,10,'S42.496A ','Other nondisplaced fracture of lower end of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139476,10,'S42.495S ','Other nondisplaced fracture of lower end of left humerus, sequela','Y','0000-00-00 00:00:00'),(139475,10,'S42.495P ','Other nondisplaced fracture of lower end of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139474,10,'S42.495K ','Other nondisplaced fracture of lower end of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139473,10,'S42.495G ','Other nondisplaced fracture of lower end of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139472,10,'S42.495D ','Other nondisplaced fracture of lower end of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139471,10,'S42.495B ','Other nondisplaced fracture of lower end of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139470,10,'S42.495A ','Other nondisplaced fracture of lower end of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139469,10,'S42.494S ','Other nondisplaced fracture of lower end of right humerus, sequela','Y','0000-00-00 00:00:00'),(139468,10,'S42.494P ','Other nondisplaced fracture of lower end of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139467,10,'S42.494K ','Other nondisplaced fracture of lower end of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139466,10,'S42.494G ','Other nondisplaced fracture of lower end of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139465,10,'S42.494D ','Other nondisplaced fracture of lower end of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139464,10,'S42.494B ','Other nondisplaced fracture of lower end of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139463,10,'S42.494A ','Other nondisplaced fracture of lower end of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139462,10,'S42.493S ','Other displaced fracture of lower end of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139461,10,'S42.493P ','Other displaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139460,10,'S42.493K ','Other displaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139459,10,'S42.493G ','Other displaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139458,10,'S42.493D ','Other displaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139457,10,'S42.493B ','Other displaced fracture of lower end of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139455,10,'S42.492S ','Other displaced fracture of lower end of left humerus, sequela','Y','0000-00-00 00:00:00'),(139456,10,'S42.493A ','Other displaced fracture of lower end of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139454,10,'S42.492P ','Other displaced fracture of lower end of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139453,10,'S42.492K ','Other displaced fracture of lower end of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139452,10,'S42.492G ','Other displaced fracture of lower end of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139451,10,'S42.492D ','Other displaced fracture of lower end of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139450,10,'S42.492B ','Other displaced fracture of lower end of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139449,10,'S42.492A ','Other displaced fracture of lower end of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139448,10,'S42.491S ','Other displaced fracture of lower end of right humerus, sequela','Y','0000-00-00 00:00:00'),(139447,10,'S42.491P ','Other displaced fracture of lower end of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139446,10,'S42.491K ','Other displaced fracture of lower end of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139445,10,'S42.491G ','Other displaced fracture of lower end of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139444,10,'S42.491D ','Other displaced fracture of lower end of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139443,10,'S42.491B ','Other displaced fracture of lower end of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139442,10,'S42.491A ','Other displaced fracture of lower end of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139441,10,'S42.489S ','Torus fracture of lower end of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139440,10,'S42.489P ','Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139439,10,'S42.489K ','Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139438,10,'S42.489G ','Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139437,10,'S42.489D ','Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139435,10,'S42.482S ','Torus fracture of lower end of left humerus, sequela','Y','0000-00-00 00:00:00'),(139436,10,'S42.489A ','Torus fracture of lower end of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139434,10,'S42.482P ','Torus fracture of lower end of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139433,10,'S42.482K ','Torus fracture of lower end of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139432,10,'S42.482G ','Torus fracture of lower end of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139431,10,'S42.482D ','Torus fracture of lower end of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139430,10,'S42.482A ','Torus fracture of lower end of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139429,10,'S42.481S ','Torus fracture of lower end of right humerus, sequela','Y','0000-00-00 00:00:00'),(139428,10,'S42.481P ','Torus fracture of lower end of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139427,10,'S42.481K ','Torus fracture of lower end of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139426,10,'S42.481G ','Torus fracture of lower end of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139425,10,'S42.481D ','Torus fracture of lower end of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139424,10,'S42.481A ','Torus fracture of lower end of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139423,10,'S42.476S ','Nondisplaced transcondylar fracture of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139422,10,'S42.476P ','Nondisplaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139421,10,'S42.476K ','Nondisplaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139420,10,'S42.476G ','Nondisplaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139419,10,'S42.476D ','Nondisplaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139418,10,'S42.476B ','Nondisplaced transcondylar fracture of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139417,10,'S42.476A ','Nondisplaced transcondylar fracture of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139416,10,'S42.475S ','Nondisplaced transcondylar fracture of left humerus, sequela','Y','0000-00-00 00:00:00'),(139415,10,'S42.475P ','Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139414,10,'S42.475K ','Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139413,10,'S42.475G ','Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139412,10,'S42.475D ','Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139411,10,'S42.475B ','Nondisplaced transcondylar fracture of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139410,10,'S42.475A ','Nondisplaced transcondylar fracture of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139409,10,'S42.474S ','Nondisplaced transcondylar fracture of right humerus, sequela','Y','0000-00-00 00:00:00'),(139408,10,'S42.474P ','Nondisplaced transcondylar fracture of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139407,10,'S42.474K ','Nondisplaced transcondylar fracture of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139406,10,'S42.474G ','Nondisplaced transcondylar fracture of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139405,10,'S42.474D ','Nondisplaced transcondylar fracture of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139404,10,'S42.474B ','Nondisplaced transcondylar fracture of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139403,10,'S42.474A ','Nondisplaced transcondylar fracture of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139402,10,'S42.473S ','Displaced transcondylar fracture of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139401,10,'S42.473P ','Displaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139400,10,'S42.473K ','Displaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139399,10,'S42.473G ','Displaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139398,10,'S42.473D ','Displaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139397,10,'S42.473B ','Displaced transcondylar fracture of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139396,10,'S42.473A ','Displaced transcondylar fracture of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139395,10,'S42.472S ','Displaced transcondylar fracture of left humerus, sequela','Y','0000-00-00 00:00:00'),(139394,10,'S42.472P ','Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139393,10,'S42.472K ','Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139392,10,'S42.472G ','Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139391,10,'S42.472D ','Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139390,10,'S42.472B ','Displaced transcondylar fracture of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139388,10,'S42.471S ','Displaced transcondylar fracture of right humerus, sequela','Y','0000-00-00 00:00:00'),(139389,10,'S42.472A ','Displaced transcondylar fracture of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139387,10,'S42.471P ','Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139386,10,'S42.471K ','Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139385,10,'S42.471G ','Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139384,10,'S42.471D ','Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139383,10,'S42.471B ','Displaced transcondylar fracture of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139382,10,'S42.471A ','Displaced transcondylar fracture of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139381,10,'S42.466S ','Nondisplaced fracture of medial condyle of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139380,10,'S42.466P ','Nondisplaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139379,10,'S42.466K ','Nondisplaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139378,10,'S42.466G ','Nondisplaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139377,10,'S42.466D ','Nondisplaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139376,10,'S42.466B ','Nondisplaced fracture of medial condyle of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139375,10,'S42.466A ','Nondisplaced fracture of medial condyle of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139374,10,'S42.465S ','Nondisplaced fracture of medial condyle of left humerus, sequela','Y','0000-00-00 00:00:00'),(139373,10,'S42.465P ','Nondisplaced fracture of medial condyle of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139372,10,'S42.465K ','Nondisplaced fracture of medial condyle of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139371,10,'S42.465G ','Nondisplaced fracture of medial condyle of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139370,10,'S42.465D ','Nondisplaced fracture of medial condyle of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139369,10,'S42.465B ','Nondisplaced fracture of medial condyle of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139368,10,'S42.465A ','Nondisplaced fracture of medial condyle of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139367,10,'S42.464S ','Nondisplaced fracture of medial condyle of right humerus, sequela','Y','0000-00-00 00:00:00'),(139366,10,'S42.464P ','Nondisplaced fracture of medial condyle of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139365,10,'S42.464K ','Nondisplaced fracture of medial condyle of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139364,10,'S42.464G ','Nondisplaced fracture of medial condyle of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139363,10,'S42.464D ','Nondisplaced fracture of medial condyle of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139362,10,'S42.464B ','Nondisplaced fracture of medial condyle of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139360,10,'S42.463S ','Displaced fracture of medial condyle of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139361,10,'S42.464A ','Nondisplaced fracture of medial condyle of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139359,10,'S42.463P ','Displaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139358,10,'S42.463K ','Displaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139357,10,'S42.463G ','Displaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139356,10,'S42.463D ','Displaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139355,10,'S42.463B ','Displaced fracture of medial condyle of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139353,10,'S42.462S ','Displaced fracture of medial condyle of left humerus, sequela','Y','0000-00-00 00:00:00'),(139354,10,'S42.463A ','Displaced fracture of medial condyle of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139352,10,'S42.462P ','Displaced fracture of medial condyle of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139351,10,'S42.462K ','Displaced fracture of medial condyle of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139350,10,'S42.462G ','Displaced fracture of medial condyle of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139349,10,'S42.462D ','Displaced fracture of medial condyle of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139348,10,'S42.462B ','Displaced fracture of medial condyle of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139346,10,'S42.461S ','Displaced fracture of medial condyle of right humerus, sequela','Y','0000-00-00 00:00:00'),(139347,10,'S42.462A ','Displaced fracture of medial condyle of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139345,10,'S42.461P ','Displaced fracture of medial condyle of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139344,10,'S42.461K ','Displaced fracture of medial condyle of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139343,10,'S42.461G ','Displaced fracture of medial condyle of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139342,10,'S42.461D ','Displaced fracture of medial condyle of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139341,10,'S42.461B ','Displaced fracture of medial condyle of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139340,10,'S42.461A ','Displaced fracture of medial condyle of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139339,10,'S42.456S ','Nondisplaced fracture of lateral condyle of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139338,10,'S42.456P ','Nondisplaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139337,10,'S42.456K ','Nondisplaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139336,10,'S42.456G ','Nondisplaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139335,10,'S42.456D ','Nondisplaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139334,10,'S42.456B ','Nondisplaced fracture of lateral condyle of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139333,10,'S42.456A ','Nondisplaced fracture of lateral condyle of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139332,10,'S42.455S ','Nondisplaced fracture of lateral condyle of left humerus, sequela','Y','0000-00-00 00:00:00'),(139331,10,'S42.455P ','Nondisplaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139330,10,'S42.455K ','Nondisplaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139329,10,'S42.455G ','Nondisplaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139328,10,'S42.455D ','Nondisplaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139327,10,'S42.455B ','Nondisplaced fracture of lateral condyle of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139326,10,'S42.455A ','Nondisplaced fracture of lateral condyle of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139325,10,'S42.454S ','Nondisplaced fracture of lateral condyle of right humerus, sequela','Y','0000-00-00 00:00:00'),(139324,10,'S42.454P ','Nondisplaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139323,10,'S42.454K ','Nondisplaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139322,10,'S42.454G ','Nondisplaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139321,10,'S42.454D ','Nondisplaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139320,10,'S42.454B ','Nondisplaced fracture of lateral condyle of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139318,10,'S42.453S ','Displaced fracture of lateral condyle of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139319,10,'S42.454A ','Nondisplaced fracture of lateral condyle of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139317,10,'S42.453P ','Displaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139316,10,'S42.453K ','Displaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139315,10,'S42.453G ','Displaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139314,10,'S42.453D ','Displaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139313,10,'S42.453B ','Displaced fracture of lateral condyle of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139312,10,'S42.453A ','Displaced fracture of lateral condyle of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139311,10,'S42.452S ','Displaced fracture of lateral condyle of left humerus, sequela','Y','0000-00-00 00:00:00'),(139310,10,'S42.452P ','Displaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139309,10,'S42.452K ','Displaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139308,10,'S42.452G ','Displaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139307,10,'S42.452D ','Displaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139306,10,'S42.452B ','Displaced fracture of lateral condyle of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139305,10,'S42.452A ','Displaced fracture of lateral condyle of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139304,10,'S42.451S ','Displaced fracture of lateral condyle of right humerus, sequela','Y','0000-00-00 00:00:00'),(139303,10,'S42.451P ','Displaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139302,10,'S42.451K ','Displaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139301,10,'S42.451G ','Displaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139300,10,'S42.451D ','Displaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139299,10,'S42.451B ','Displaced fracture of lateral condyle of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139298,10,'S42.451A ','Displaced fracture of lateral condyle of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139297,10,'S42.449S ','Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139296,10,'S42.449P ','Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139295,10,'S42.449K ','Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139294,10,'S42.449G ','Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139293,10,'S42.449D ','Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139292,10,'S42.449B ','Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139291,10,'S42.449A ','Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139290,10,'S42.448S ','Incarcerated fracture (avulsion) of medial epicondyle of left humerus, sequela','Y','0000-00-00 00:00:00'),(139289,10,'S42.448P ','Incarcerated fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139288,10,'S42.448K ','Incarcerated fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139287,10,'S42.448G ','Incarcerated fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139286,10,'S42.448D ','Incarcerated fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139285,10,'S42.448B ','Incarcerated fracture (avulsion) of medial epicondyle of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139284,10,'S42.448A ','Incarcerated fracture (avulsion) of medial epicondyle of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139283,10,'S42.447S ','Incarcerated fracture (avulsion) of medial epicondyle of right humerus, sequela','Y','0000-00-00 00:00:00'),(139282,10,'S42.447P ','Incarcerated fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139281,10,'S42.447K ','Incarcerated fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139280,10,'S42.447G ','Incarcerated fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139279,10,'S42.447D ','Incarcerated fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139278,10,'S42.447B ','Incarcerated fracture (avulsion) of medial epicondyle of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139277,10,'S42.447A ','Incarcerated fracture (avulsion) of medial epicondyle of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139276,10,'S42.446S ','Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139275,10,'S42.446P ','Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139274,10,'S42.446K ','Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139273,10,'S42.446G ','Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139272,10,'S42.446D ','Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139271,10,'S42.446B ','Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139270,10,'S42.446A ','Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139269,10,'S42.445S ','Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, sequela','Y','0000-00-00 00:00:00'),(139268,10,'S42.445P ','Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139267,10,'S42.445K ','Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139266,10,'S42.445G ','Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139265,10,'S42.445D ','Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139264,10,'S42.445B ','Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139263,10,'S42.445A ','Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139262,10,'S42.444S ','Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, sequela','Y','0000-00-00 00:00:00'),(139261,10,'S42.444P ','Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139260,10,'S42.444K ','Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139259,10,'S42.444G ','Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139258,10,'S42.444D ','Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139257,10,'S42.444B ','Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139256,10,'S42.444A ','Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139255,10,'S42.443S ','Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139254,10,'S42.443P ','Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139253,10,'S42.443K ','Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139252,10,'S42.443G ','Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139251,10,'S42.443D ','Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139250,10,'S42.443B ','Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139249,10,'S42.443A ','Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139248,10,'S42.442S ','Displaced fracture (avulsion) of medial epicondyle of left humerus, sequela','Y','0000-00-00 00:00:00'),(139247,10,'S42.442P ','Displaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139246,10,'S42.442K ','Displaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139245,10,'S42.442G ','Displaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139244,10,'S42.442D ','Displaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139243,10,'S42.442B ','Displaced fracture (avulsion) of medial epicondyle of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139242,10,'S42.442A ','Displaced fracture (avulsion) of medial epicondyle of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139241,10,'S42.441S ','Displaced fracture (avulsion) of medial epicondyle of right humerus, sequela','Y','0000-00-00 00:00:00'),(139240,10,'S42.441P ','Displaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139239,10,'S42.441K ','Displaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139238,10,'S42.441G ','Displaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139237,10,'S42.441D ','Displaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139236,10,'S42.441B ','Displaced fracture (avulsion) of medial epicondyle of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139235,10,'S42.441A ','Displaced fracture (avulsion) of medial epicondyle of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139234,10,'S42.436S ','Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139233,10,'S42.436P ','Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139232,10,'S42.436K ','Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139231,10,'S42.436G ','Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139230,10,'S42.436D ','Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139229,10,'S42.436B ','Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139228,10,'S42.436A ','Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139227,10,'S42.435S ','Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, sequela','Y','0000-00-00 00:00:00'),(139226,10,'S42.435P ','Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139225,10,'S42.435K ','Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139224,10,'S42.435G ','Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139223,10,'S42.435D ','Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139222,10,'S42.435B ','Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139221,10,'S42.435A ','Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139220,10,'S42.434S ','Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, sequela','Y','0000-00-00 00:00:00'),(139219,10,'S42.434P ','Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139218,10,'S42.434K ','Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139217,10,'S42.434G ','Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139216,10,'S42.434D ','Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139215,10,'S42.434B ','Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139214,10,'S42.434A ','Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139213,10,'S42.433S ','Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139212,10,'S42.433P ','Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139211,10,'S42.433K ','Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139210,10,'S42.433G ','Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139209,10,'S42.433D ','Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139208,10,'S42.433B ','Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139207,10,'S42.433A ','Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139206,10,'S42.432S ','Displaced fracture (avulsion) of lateral epicondyle of left humerus, sequela','Y','0000-00-00 00:00:00'),(139205,10,'S42.432P ','Displaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139204,10,'S42.432K ','Displaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139203,10,'S42.432G ','Displaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139202,10,'S42.432D ','Displaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139201,10,'S42.432B ','Displaced fracture (avulsion) of lateral epicondyle of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139200,10,'S42.432A ','Displaced fracture (avulsion) of lateral epicondyle of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139199,10,'S42.431S ','Displaced fracture (avulsion) of lateral epicondyle of right humerus, sequela','Y','0000-00-00 00:00:00'),(139198,10,'S42.431P ','Displaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139197,10,'S42.431K ','Displaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139196,10,'S42.431G ','Displaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139195,10,'S42.431D ','Displaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139194,10,'S42.431B ','Displaced fracture (avulsion) of lateral epicondyle of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139193,10,'S42.431A ','Displaced fracture (avulsion) of lateral epicondyle of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139192,10,'S42.426S ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139191,10,'S42.426P ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139190,10,'S42.426K ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139189,10,'S42.426G ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139188,10,'S42.426D ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139187,10,'S42.426B ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139186,10,'S42.426A ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139185,10,'S42.425S ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, sequela','Y','0000-00-00 00:00:00'),(139184,10,'S42.425P ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139183,10,'S42.425K ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139182,10,'S42.425G ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139181,10,'S42.425D ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139180,10,'S42.425B ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139179,10,'S42.425A ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139178,10,'S42.424S ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, sequela','Y','0000-00-00 00:00:00'),(139177,10,'S42.424P ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139176,10,'S42.424K ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139175,10,'S42.424G ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139174,10,'S42.424D ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139173,10,'S42.424B ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139172,10,'S42.424A ','Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139171,10,'S42.423S ','Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139170,10,'S42.423P ','Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139169,10,'S42.423K ','Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139168,10,'S42.423G ','Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139167,10,'S42.423D ','Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139166,10,'S42.423B ','Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139165,10,'S42.423A ','Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139164,10,'S42.422S ','Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, sequela','Y','0000-00-00 00:00:00'),(139163,10,'S42.422P ','Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139162,10,'S42.422K ','Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139161,10,'S42.422G ','Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139160,10,'S42.422D ','Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139159,10,'S42.422B ','Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139158,10,'S42.422A ','Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139157,10,'S42.421S ','Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, sequela','Y','0000-00-00 00:00:00'),(139156,10,'S42.421P ','Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139155,10,'S42.421K ','Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139154,10,'S42.421G ','Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139153,10,'S42.421D ','Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139152,10,'S42.421B ','Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139151,10,'S42.421A ','Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139150,10,'S42.416S ','Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139149,10,'S42.416P ','Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139148,10,'S42.416K ','Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139147,10,'S42.416G ','Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139146,10,'S42.416D ','Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139145,10,'S42.416B ','Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139144,10,'S42.416A ','Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139143,10,'S42.415S ','Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, sequela','Y','0000-00-00 00:00:00'),(139142,10,'S42.415P ','Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139141,10,'S42.415K ','Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139140,10,'S42.415G ','Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139139,10,'S42.415D ','Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139138,10,'S42.415B ','Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139137,10,'S42.415A ','Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139136,10,'S42.414S ','Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, sequela','Y','0000-00-00 00:00:00'),(139135,10,'S42.414P ','Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139134,10,'S42.414K ','Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139133,10,'S42.414G ','Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139132,10,'S42.414D ','Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139131,10,'S42.414B ','Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139130,10,'S42.414A ','Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139129,10,'S42.413S ','Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139128,10,'S42.413P ','Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139127,10,'S42.413K ','Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139126,10,'S42.413G ','Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139125,10,'S42.413D ','Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139124,10,'S42.413B ','Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139123,10,'S42.413A ','Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139122,10,'S42.412S ','Displaced simple supracondylar fracture without intercondylar fracture of left humerus, sequela','Y','0000-00-00 00:00:00'),(139121,10,'S42.412P ','Displaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139120,10,'S42.412K ','Displaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139119,10,'S42.412G ','Displaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139118,10,'S42.412D ','Displaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139117,10,'S42.412B ','Displaced simple supracondylar fracture without intercondylar fracture of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139116,10,'S42.412A ','Displaced simple supracondylar fracture without intercondylar fracture of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139115,10,'S42.411S ','Displaced simple supracondylar fracture without intercondylar fracture of right humerus, sequela','Y','0000-00-00 00:00:00'),(139114,10,'S42.411P ','Displaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139113,10,'S42.411K ','Displaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139112,10,'S42.411G ','Displaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139111,10,'S42.411D ','Displaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139110,10,'S42.411B ','Displaced simple supracondylar fracture without intercondylar fracture of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139109,10,'S42.411A ','Displaced simple supracondylar fracture without intercondylar fracture of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139108,10,'S42.409S ','Unspecified fracture of lower end of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139107,10,'S42.409P ','Unspecified fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139106,10,'S42.409K ','Unspecified fracture of lower end of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139105,10,'S42.409G ','Unspecified fracture of lower end of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139104,10,'S42.409D ','Unspecified fracture of lower end of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139103,10,'S42.409B ','Unspecified fracture of lower end of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139101,10,'S42.402S ','Unspecified fracture of lower end of left humerus, sequela','Y','0000-00-00 00:00:00'),(139102,10,'S42.409A ','Unspecified fracture of lower end of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139100,10,'S42.402P ','Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139099,10,'S42.402K ','Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139098,10,'S42.402G ','Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139097,10,'S42.402D ','Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139096,10,'S42.402B ','Unspecified fracture of lower end of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139095,10,'S42.402A ','Unspecified fracture of lower end of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139094,10,'S42.401S ','Unspecified fracture of lower end of right humerus, sequela','Y','0000-00-00 00:00:00'),(139093,10,'S42.401P ','Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139092,10,'S42.401K ','Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139091,10,'S42.401G ','Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139090,10,'S42.401D ','Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139089,10,'S42.401B ','Unspecified fracture of lower end of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139088,10,'S42.401A ','Unspecified fracture of lower end of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139087,10,'S42.399S ','Other fracture of shaft of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(139086,10,'S42.399P ','Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139085,10,'S42.399K ','Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139084,10,'S42.399G ','Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139083,10,'S42.399D ','Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139082,10,'S42.399B ','Other fracture of shaft of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139081,10,'S42.399A ','Other fracture of shaft of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139080,10,'S42.392S ','Other fracture of shaft of left humerus, sequela','Y','0000-00-00 00:00:00'),(139079,10,'S42.392P ','Other fracture of shaft of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139078,10,'S42.392K ','Other fracture of shaft of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139077,10,'S42.392G ','Other fracture of shaft of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139076,10,'S42.392D ','Other fracture of shaft of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139075,10,'S42.392B ','Other fracture of shaft of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139074,10,'S42.392A ','Other fracture of shaft of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139073,10,'S42.391S ','Other fracture of shaft of right humerus, sequela','Y','0000-00-00 00:00:00'),(139072,10,'S42.391P ','Other fracture of shaft of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139071,10,'S42.391K ','Other fracture of shaft of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139070,10,'S42.391G ','Other fracture of shaft of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139069,10,'S42.391D ','Other fracture of shaft of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139068,10,'S42.391B ','Other fracture of shaft of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139067,10,'S42.391A ','Other fracture of shaft of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139066,10,'S42.366S ','Nondisplaced segmental fracture of shaft of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(139065,10,'S42.366P ','Nondisplaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139064,10,'S42.366K ','Nondisplaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139063,10,'S42.366G ','Nondisplaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139062,10,'S42.366D ','Nondisplaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139061,10,'S42.366B ','Nondisplaced segmental fracture of shaft of humerus, unspecified arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139060,10,'S42.366A ','Nondisplaced segmental fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139059,10,'S42.365S ','Nondisplaced segmental fracture of shaft of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(139058,10,'S42.365P ','Nondisplaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139057,10,'S42.365K ','Nondisplaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139056,10,'S42.365G ','Nondisplaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139055,10,'S42.365D ','Nondisplaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139054,10,'S42.365B ','Nondisplaced segmental fracture of shaft of humerus, left arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139053,10,'S42.365A ','Nondisplaced segmental fracture of shaft of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139052,10,'S42.364S ','Nondisplaced segmental fracture of shaft of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(139051,10,'S42.364P ','Nondisplaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139050,10,'S42.364K ','Nondisplaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139049,10,'S42.364G ','Nondisplaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139048,10,'S42.364D ','Nondisplaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139047,10,'S42.364B ','Nondisplaced segmental fracture of shaft of humerus, right arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139046,10,'S42.364A ','Nondisplaced segmental fracture of shaft of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139045,10,'S42.363S ','Displaced segmental fracture of shaft of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(139044,10,'S42.363P ','Displaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139043,10,'S42.363K ','Displaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139042,10,'S42.363G ','Displaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139041,10,'S42.363D ','Displaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139040,10,'S42.363B ','Displaced segmental fracture of shaft of humerus, unspecified arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139039,10,'S42.363A ','Displaced segmental fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139038,10,'S42.362S ','Displaced segmental fracture of shaft of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(139037,10,'S42.362P ','Displaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139036,10,'S42.362K ','Displaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139035,10,'S42.362G ','Displaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139034,10,'S42.362D ','Displaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139033,10,'S42.362B ','Displaced segmental fracture of shaft of humerus, left arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139032,10,'S42.362A ','Displaced segmental fracture of shaft of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139031,10,'S42.361S ','Displaced segmental fracture of shaft of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(139030,10,'S42.361P ','Displaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139029,10,'S42.361K ','Displaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139028,10,'S42.361G ','Displaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139027,10,'S42.361D ','Displaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139026,10,'S42.361B ','Displaced segmental fracture of shaft of humerus, right arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139025,10,'S42.361A ','Displaced segmental fracture of shaft of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139024,10,'S42.356S ','Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(139023,10,'S42.356P ','Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139022,10,'S42.356K ','Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139021,10,'S42.356G ','Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139020,10,'S42.356D ','Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139019,10,'S42.356B ','Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139018,10,'S42.356A ','Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139017,10,'S42.355S ','Nondisplaced comminuted fracture of shaft of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(139016,10,'S42.355P ','Nondisplaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139015,10,'S42.355K ','Nondisplaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139014,10,'S42.355G ','Nondisplaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139013,10,'S42.355D ','Nondisplaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139012,10,'S42.355B ','Nondisplaced comminuted fracture of shaft of humerus, left arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139011,10,'S42.355A ','Nondisplaced comminuted fracture of shaft of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139010,10,'S42.354S ','Nondisplaced comminuted fracture of shaft of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(139009,10,'S42.354P ','Nondisplaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139008,10,'S42.354K ','Nondisplaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139007,10,'S42.354G ','Nondisplaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(139006,10,'S42.354D ','Nondisplaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(139005,10,'S42.354B ','Nondisplaced comminuted fracture of shaft of humerus, right arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(139004,10,'S42.354A ','Nondisplaced comminuted fracture of shaft of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(139003,10,'S42.353S ','Displaced comminuted fracture of shaft of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(139002,10,'S42.353P ','Displaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(139001,10,'S42.353K ','Displaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(139000,10,'S42.353G ','Displaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138999,10,'S42.353D ','Displaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138998,10,'S42.353B ','Displaced comminuted fracture of shaft of humerus, unspecified arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138997,10,'S42.353A ','Displaced comminuted fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138996,10,'S42.352S ','Displaced comminuted fracture of shaft of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(138995,10,'S42.352P ','Displaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138994,10,'S42.352K ','Displaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138993,10,'S42.352G ','Displaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138992,10,'S42.352D ','Displaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138991,10,'S42.352B ','Displaced comminuted fracture of shaft of humerus, left arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138990,10,'S42.352A ','Displaced comminuted fracture of shaft of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138989,10,'S42.351S ','Displaced comminuted fracture of shaft of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(138988,10,'S42.351P ','Displaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138987,10,'S42.351K ','Displaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138986,10,'S42.351G ','Displaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138985,10,'S42.351D ','Displaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138984,10,'S42.351B ','Displaced comminuted fracture of shaft of humerus, right arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138983,10,'S42.351A ','Displaced comminuted fracture of shaft of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138982,10,'S42.346S ','Nondisplaced spiral fracture of shaft of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(138981,10,'S42.346P ','Nondisplaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138980,10,'S42.346K ','Nondisplaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138979,10,'S42.346G ','Nondisplaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138978,10,'S42.346D ','Nondisplaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138977,10,'S42.346B ','Nondisplaced spiral fracture of shaft of humerus, unspecified arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138976,10,'S42.346A ','Nondisplaced spiral fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138975,10,'S42.345S ','Nondisplaced spiral fracture of shaft of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(138974,10,'S42.345P ','Nondisplaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138973,10,'S42.345K ','Nondisplaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138972,10,'S42.345G ','Nondisplaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138971,10,'S42.345D ','Nondisplaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138970,10,'S42.345B ','Nondisplaced spiral fracture of shaft of humerus, left arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138969,10,'S42.345A ','Nondisplaced spiral fracture of shaft of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138968,10,'S42.344S ','Nondisplaced spiral fracture of shaft of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(138967,10,'S42.344P ','Nondisplaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138966,10,'S42.344K ','Nondisplaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138965,10,'S42.344G ','Nondisplaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138964,10,'S42.344D ','Nondisplaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138963,10,'S42.344B ','Nondisplaced spiral fracture of shaft of humerus, right arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138962,10,'S42.344A ','Nondisplaced spiral fracture of shaft of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138961,10,'S42.343S ','Displaced spiral fracture of shaft of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(138960,10,'S42.343P ','Displaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138959,10,'S42.343K ','Displaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138958,10,'S42.343G ','Displaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138957,10,'S42.343D ','Displaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138956,10,'S42.343B ','Displaced spiral fracture of shaft of humerus, unspecified arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138955,10,'S42.343A ','Displaced spiral fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138954,10,'S42.342S ','Displaced spiral fracture of shaft of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(138953,10,'S42.342P ','Displaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138952,10,'S42.342K ','Displaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138951,10,'S42.342G ','Displaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138950,10,'S42.342D ','Displaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138949,10,'S42.342B ','Displaced spiral fracture of shaft of humerus, left arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138948,10,'S42.342A ','Displaced spiral fracture of shaft of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138947,10,'S42.341S ','Displaced spiral fracture of shaft of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(138946,10,'S42.341P ','Displaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138945,10,'S42.341K ','Displaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138944,10,'S42.341G ','Displaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138943,10,'S42.341D ','Displaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138942,10,'S42.341B ','Displaced spiral fracture of shaft of humerus, right arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138941,10,'S42.341A ','Displaced spiral fracture of shaft of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138940,10,'S42.336S ','Nondisplaced oblique fracture of shaft of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(138939,10,'S42.336P ','Nondisplaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138938,10,'S42.336K ','Nondisplaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138937,10,'S42.336G ','Nondisplaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138936,10,'S42.336D ','Nondisplaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138935,10,'S42.336B ','Nondisplaced oblique fracture of shaft of humerus, unspecified arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138934,10,'S42.336A ','Nondisplaced oblique fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138933,10,'S42.335S ','Nondisplaced oblique fracture of shaft of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(138932,10,'S42.335P ','Nondisplaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138931,10,'S42.335K ','Nondisplaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138930,10,'S42.335G ','Nondisplaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138929,10,'S42.335D ','Nondisplaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138928,10,'S42.335B ','Nondisplaced oblique fracture of shaft of humerus, left arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138927,10,'S42.335A ','Nondisplaced oblique fracture of shaft of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138926,10,'S42.334S ','Nondisplaced oblique fracture of shaft of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(138925,10,'S42.334P ','Nondisplaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138924,10,'S42.334K ','Nondisplaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138923,10,'S42.334G ','Nondisplaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138922,10,'S42.334D ','Nondisplaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138921,10,'S42.334B ','Nondisplaced oblique fracture of shaft of humerus, right arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138920,10,'S42.334A ','Nondisplaced oblique fracture of shaft of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138919,10,'S42.333S ','Displaced oblique fracture of shaft of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(138918,10,'S42.333P ','Displaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138917,10,'S42.333K ','Displaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138916,10,'S42.333G ','Displaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138915,10,'S42.333D ','Displaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138914,10,'S42.333B ','Displaced oblique fracture of shaft of humerus, unspecified arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138912,10,'S42.332S ','Displaced oblique fracture of shaft of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(138913,10,'S42.333A ','Displaced oblique fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138911,10,'S42.332P ','Displaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138910,10,'S42.332K ','Displaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138909,10,'S42.332G ','Displaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138908,10,'S42.332D ','Displaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138907,10,'S42.332B ','Displaced oblique fracture of shaft of humerus, left arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138905,10,'S42.331S ','Displaced oblique fracture of shaft of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(138906,10,'S42.332A ','Displaced oblique fracture of shaft of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138904,10,'S42.331P ','Displaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138903,10,'S42.331K ','Displaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138902,10,'S42.331G ','Displaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138901,10,'S42.331D ','Displaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138900,10,'S42.331B ','Displaced oblique fracture of shaft of humerus, right arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138899,10,'S42.331A ','Displaced oblique fracture of shaft of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138898,10,'S42.326S ','Nondisplaced transverse fracture of shaft of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(138897,10,'S42.326P ','Nondisplaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138896,10,'S42.326K ','Nondisplaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138895,10,'S42.326G ','Nondisplaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138894,10,'S42.326D ','Nondisplaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138893,10,'S42.326B ','Nondisplaced transverse fracture of shaft of humerus, unspecified arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138892,10,'S42.326A ','Nondisplaced transverse fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138891,10,'S42.325S ','Nondisplaced transverse fracture of shaft of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(138890,10,'S42.325P ','Nondisplaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138889,10,'S42.325K ','Nondisplaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138888,10,'S42.325G ','Nondisplaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138887,10,'S42.325D ','Nondisplaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138886,10,'S42.325B ','Nondisplaced transverse fracture of shaft of humerus, left arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138885,10,'S42.325A ','Nondisplaced transverse fracture of shaft of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138884,10,'S42.324S ','Nondisplaced transverse fracture of shaft of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(138883,10,'S42.324P ','Nondisplaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138882,10,'S42.324K ','Nondisplaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138881,10,'S42.324G ','Nondisplaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138880,10,'S42.324D ','Nondisplaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138879,10,'S42.324B ','Nondisplaced transverse fracture of shaft of humerus, right arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138878,10,'S42.324A ','Nondisplaced transverse fracture of shaft of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138877,10,'S42.323S ','Displaced transverse fracture of shaft of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(138876,10,'S42.323P ','Displaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138875,10,'S42.323K ','Displaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138874,10,'S42.323G ','Displaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138873,10,'S42.323D ','Displaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138872,10,'S42.323B ','Displaced transverse fracture of shaft of humerus, unspecified arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138871,10,'S42.323A ','Displaced transverse fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138870,10,'S42.322S ','Displaced transverse fracture of shaft of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(138869,10,'S42.322P ','Displaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138868,10,'S42.322K ','Displaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138867,10,'S42.322G ','Displaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138866,10,'S42.322D ','Displaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138865,10,'S42.322B ','Displaced transverse fracture of shaft of humerus, left arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138864,10,'S42.322A ','Displaced transverse fracture of shaft of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138863,10,'S42.321S ','Displaced transverse fracture of shaft of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(138862,10,'S42.321P ','Displaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138861,10,'S42.321K ','Displaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138860,10,'S42.321G ','Displaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138859,10,'S42.321D ','Displaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138858,10,'S42.321B ','Displaced transverse fracture of shaft of humerus, right arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138857,10,'S42.321A ','Displaced transverse fracture of shaft of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138856,10,'S42.319S ','Greenstick fracture of shaft of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(138855,10,'S42.319P ','Greenstick fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138854,10,'S42.319K ','Greenstick fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138853,10,'S42.319G ','Greenstick fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138852,10,'S42.319D ','Greenstick fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138851,10,'S42.319A ','Greenstick fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138850,10,'S42.312S ','Greenstick fracture of shaft of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(138849,10,'S42.312P ','Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138848,10,'S42.312K ','Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138847,10,'S42.312G ','Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138846,10,'S42.312D ','Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138845,10,'S42.312A ','Greenstick fracture of shaft of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138844,10,'S42.311S ','Greenstick fracture of shaft of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(138843,10,'S42.311P ','Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138842,10,'S42.311K ','Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138841,10,'S42.311G ','Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138840,10,'S42.311D ','Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138839,10,'S42.311A ','Greenstick fracture of shaft of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138838,10,'S42.309S ','Unspecified fracture of shaft of humerus, unspecified arm, sequela','Y','0000-00-00 00:00:00'),(138837,10,'S42.309P ','Unspecified fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138836,10,'S42.309K ','Unspecified fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138835,10,'S42.309G ','Unspecified fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138834,10,'S42.309D ','Unspecified fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138833,10,'S42.309B ','Unspecified fracture of shaft of humerus, unspecified arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138831,10,'S42.302S ','Unspecified fracture of shaft of humerus, left arm, sequela','Y','0000-00-00 00:00:00'),(138832,10,'S42.309A ','Unspecified fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138830,10,'S42.302P ','Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138829,10,'S42.302K ','Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138828,10,'S42.302G ','Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138827,10,'S42.302D ','Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138826,10,'S42.302B ','Unspecified fracture of shaft of humerus, left arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138824,10,'S42.301S ','Unspecified fracture of shaft of humerus, right arm, sequela','Y','0000-00-00 00:00:00'),(138825,10,'S42.302A ','Unspecified fracture of shaft of humerus, left arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138823,10,'S42.301P ','Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138822,10,'S42.301K ','Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138821,10,'S42.301G ','Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138820,10,'S42.301D ','Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138819,10,'S42.301B ','Unspecified fracture of shaft of humerus, right arm, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138818,10,'S42.301A ','Unspecified fracture of shaft of humerus, right arm, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138817,10,'S42.296S ','Other nondisplaced fracture of upper end of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(138816,10,'S42.296P ','Other nondisplaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138815,10,'S42.296K ','Other nondisplaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138814,10,'S42.296G ','Other nondisplaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138813,10,'S42.296D ','Other nondisplaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138812,10,'S42.296B ','Other nondisplaced fracture of upper end of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138811,10,'S42.296A ','Other nondisplaced fracture of upper end of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138810,10,'S42.295S ','Other nondisplaced fracture of upper end of left humerus, sequela','Y','0000-00-00 00:00:00'),(138809,10,'S42.295P ','Other nondisplaced fracture of upper end of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138808,10,'S42.295K ','Other nondisplaced fracture of upper end of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138807,10,'S42.295G ','Other nondisplaced fracture of upper end of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138806,10,'S42.295D ','Other nondisplaced fracture of upper end of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138805,10,'S42.295B ','Other nondisplaced fracture of upper end of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138804,10,'S42.295A ','Other nondisplaced fracture of upper end of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138803,10,'S42.294S ','Other nondisplaced fracture of upper end of right humerus, sequela','Y','0000-00-00 00:00:00'),(138802,10,'S42.294P ','Other nondisplaced fracture of upper end of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138801,10,'S42.294K ','Other nondisplaced fracture of upper end of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138800,10,'S42.294G ','Other nondisplaced fracture of upper end of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138799,10,'S42.294D ','Other nondisplaced fracture of upper end of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138798,10,'S42.294B ','Other nondisplaced fracture of upper end of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138797,10,'S42.294A ','Other nondisplaced fracture of upper end of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138796,10,'S42.293S ','Other displaced fracture of upper end of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(138795,10,'S42.293P ','Other displaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138794,10,'S42.293K ','Other displaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138793,10,'S42.293G ','Other displaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138792,10,'S42.293D ','Other displaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138791,10,'S42.293B ','Other displaced fracture of upper end of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138790,10,'S42.293A ','Other displaced fracture of upper end of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138789,10,'S42.292S ','Other displaced fracture of upper end of left humerus, sequela','Y','0000-00-00 00:00:00'),(138788,10,'S42.292P ','Other displaced fracture of upper end of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138787,10,'S42.292K ','Other displaced fracture of upper end of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138786,10,'S42.292G ','Other displaced fracture of upper end of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138785,10,'S42.292D ','Other displaced fracture of upper end of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138784,10,'S42.292B ','Other displaced fracture of upper end of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138783,10,'S42.292A ','Other displaced fracture of upper end of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138782,10,'S42.291S ','Other displaced fracture of upper end of right humerus, sequela','Y','0000-00-00 00:00:00'),(138781,10,'S42.291P ','Other displaced fracture of upper end of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138780,10,'S42.291K ','Other displaced fracture of upper end of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138779,10,'S42.291G ','Other displaced fracture of upper end of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138778,10,'S42.291D ','Other displaced fracture of upper end of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138777,10,'S42.291B ','Other displaced fracture of upper end of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138776,10,'S42.291A ','Other displaced fracture of upper end of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138775,10,'S42.279S ','Torus fracture of upper end of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(138774,10,'S42.279P ','Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138773,10,'S42.279K ','Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138772,10,'S42.279G ','Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138771,10,'S42.279D ','Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138770,10,'S42.279A ','Torus fracture of upper end of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138769,10,'S42.272S ','Torus fracture of upper end of left humerus, sequela','Y','0000-00-00 00:00:00'),(138768,10,'S42.272P ','Torus fracture of upper end of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138767,10,'S42.272K ','Torus fracture of upper end of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138766,10,'S42.272G ','Torus fracture of upper end of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138765,10,'S42.272D ','Torus fracture of upper end of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138764,10,'S42.272A ','Torus fracture of upper end of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138763,10,'S42.271S ','Torus fracture of upper end of right humerus, sequela','Y','0000-00-00 00:00:00'),(138762,10,'S42.271P ','Torus fracture of upper end of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138761,10,'S42.271K ','Torus fracture of upper end of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138760,10,'S42.271G ','Torus fracture of upper end of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138759,10,'S42.271D ','Torus fracture of upper end of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138758,10,'S42.271A ','Torus fracture of upper end of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138757,10,'S42.266S ','Nondisplaced fracture of lesser tuberosity of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(138756,10,'S42.266P ','Nondisplaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138755,10,'S42.266K ','Nondisplaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138754,10,'S42.266G ','Nondisplaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138753,10,'S42.266D ','Nondisplaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138752,10,'S42.266B ','Nondisplaced fracture of lesser tuberosity of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138751,10,'S42.266A ','Nondisplaced fracture of lesser tuberosity of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138750,10,'S42.265S ','Nondisplaced fracture of lesser tuberosity of left humerus, sequela','Y','0000-00-00 00:00:00'),(138749,10,'S42.265P ','Nondisplaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138748,10,'S42.265K ','Nondisplaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138747,10,'S42.265G ','Nondisplaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138746,10,'S42.265D ','Nondisplaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138745,10,'S42.265B ','Nondisplaced fracture of lesser tuberosity of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138744,10,'S42.265A ','Nondisplaced fracture of lesser tuberosity of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138743,10,'S42.264S ','Nondisplaced fracture of lesser tuberosity of right humerus, sequela','Y','0000-00-00 00:00:00'),(138742,10,'S42.264P ','Nondisplaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138741,10,'S42.264K ','Nondisplaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138740,10,'S42.264G ','Nondisplaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138739,10,'S42.264D ','Nondisplaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138738,10,'S42.264B ','Nondisplaced fracture of lesser tuberosity of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138737,10,'S42.264A ','Nondisplaced fracture of lesser tuberosity of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138736,10,'S42.263S ','Displaced fracture of lesser tuberosity of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(138735,10,'S42.263P ','Displaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138734,10,'S42.263K ','Displaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138733,10,'S42.263G ','Displaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138732,10,'S42.263D ','Displaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138731,10,'S42.263B ','Displaced fracture of lesser tuberosity of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138730,10,'S42.263A ','Displaced fracture of lesser tuberosity of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138729,10,'S42.262S ','Displaced fracture of lesser tuberosity of left humerus, sequela','Y','0000-00-00 00:00:00'),(138728,10,'S42.262P ','Displaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138727,10,'S42.262K ','Displaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138726,10,'S42.262G ','Displaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138725,10,'S42.262D ','Displaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138724,10,'S42.262B ','Displaced fracture of lesser tuberosity of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138723,10,'S42.262A ','Displaced fracture of lesser tuberosity of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138722,10,'S42.261S ','Displaced fracture of lesser tuberosity of right humerus, sequela','Y','0000-00-00 00:00:00'),(138721,10,'S42.261P ','Displaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138720,10,'S42.261K ','Displaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138719,10,'S42.261G ','Displaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138718,10,'S42.261D ','Displaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138717,10,'S42.261B ','Displaced fracture of lesser tuberosity of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138716,10,'S42.261A ','Displaced fracture of lesser tuberosity of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138715,10,'S42.256S ','Nondisplaced fracture of greater tuberosity of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(138714,10,'S42.256P ','Nondisplaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138713,10,'S42.256K ','Nondisplaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138712,10,'S42.256G ','Nondisplaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138711,10,'S42.256D ','Nondisplaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138710,10,'S42.256B ','Nondisplaced fracture of greater tuberosity of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138708,10,'S42.255S ','Nondisplaced fracture of greater tuberosity of left humerus, sequela','Y','0000-00-00 00:00:00'),(138709,10,'S42.256A ','Nondisplaced fracture of greater tuberosity of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138707,10,'S42.255P ','Nondisplaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138706,10,'S42.255K ','Nondisplaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138705,10,'S42.255G ','Nondisplaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138704,10,'S42.255D ','Nondisplaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138703,10,'S42.255B ','Nondisplaced fracture of greater tuberosity of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138702,10,'S42.255A ','Nondisplaced fracture of greater tuberosity of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138701,10,'S42.254S ','Nondisplaced fracture of greater tuberosity of right humerus, sequela','Y','0000-00-00 00:00:00'),(138700,10,'S42.254P ','Nondisplaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138699,10,'S42.254K ','Nondisplaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138698,10,'S42.254G ','Nondisplaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138697,10,'S42.254D ','Nondisplaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138696,10,'S42.254B ','Nondisplaced fracture of greater tuberosity of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138695,10,'S42.254A ','Nondisplaced fracture of greater tuberosity of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138694,10,'S42.253S ','Displaced fracture of greater tuberosity of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(138693,10,'S42.253P ','Displaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138692,10,'S42.253K ','Displaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138691,10,'S42.253G ','Displaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138690,10,'S42.253D ','Displaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138689,10,'S42.253B ','Displaced fracture of greater tuberosity of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138688,10,'S42.253A ','Displaced fracture of greater tuberosity of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138687,10,'S42.252S ','Displaced fracture of greater tuberosity of left humerus, sequela','Y','0000-00-00 00:00:00'),(138686,10,'S42.252P ','Displaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138685,10,'S42.252K ','Displaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138684,10,'S42.252G ','Displaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138683,10,'S42.252D ','Displaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138682,10,'S42.252B ','Displaced fracture of greater tuberosity of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138681,10,'S42.252A ','Displaced fracture of greater tuberosity of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138680,10,'S42.251S ','Displaced fracture of greater tuberosity of right humerus, sequela','Y','0000-00-00 00:00:00'),(138679,10,'S42.251P ','Displaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138678,10,'S42.251K ','Displaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138677,10,'S42.251G ','Displaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138676,10,'S42.251D ','Displaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138675,10,'S42.251B ','Displaced fracture of greater tuberosity of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138673,10,'S42.249S ','4-part fracture of surgical neck of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(138674,10,'S42.251A ','Displaced fracture of greater tuberosity of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138672,10,'S42.249P ','4-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138671,10,'S42.249K ','4-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138670,10,'S42.249G ','4-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138669,10,'S42.249D ','4-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138668,10,'S42.249B ','4-part fracture of surgical neck of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138667,10,'S42.249A ','4-part fracture of surgical neck of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138666,10,'S42.242S ','4-part fracture of surgical neck of left humerus, sequela','Y','0000-00-00 00:00:00'),(138665,10,'S42.242P ','4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138664,10,'S42.242K ','4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138663,10,'S42.242G ','4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138662,10,'S42.242D ','4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138661,10,'S42.242B ','4-part fracture of surgical neck of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138659,10,'S42.241S ','4-part fracture of surgical neck of right humerus, sequela','Y','0000-00-00 00:00:00'),(138660,10,'S42.242A ','4-part fracture of surgical neck of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138658,10,'S42.241P ','4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138657,10,'S42.241K ','4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138656,10,'S42.241G ','4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138655,10,'S42.241D ','4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138654,10,'S42.241B ','4-part fracture of surgical neck of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138653,10,'S42.241A ','4-part fracture of surgical neck of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138652,10,'S42.239S ','3-part fracture of surgical neck of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(138651,10,'S42.239P ','3-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138650,10,'S42.239K ','3-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138649,10,'S42.239G ','3-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138648,10,'S42.239D ','3-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138647,10,'S42.239B ','3-part fracture of surgical neck of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138646,10,'S42.239A ','3-part fracture of surgical neck of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138645,10,'S42.232S ','3-part fracture of surgical neck of left humerus, sequela','Y','0000-00-00 00:00:00'),(138644,10,'S42.232P ','3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138643,10,'S42.232K ','3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138642,10,'S42.232G ','3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138641,10,'S42.232D ','3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138640,10,'S42.232B ','3-part fracture of surgical neck of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138639,10,'S42.232A ','3-part fracture of surgical neck of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138638,10,'S42.231S ','3-part fracture of surgical neck of right humerus, sequela','Y','0000-00-00 00:00:00'),(138637,10,'S42.231P ','3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138636,10,'S42.231K ','3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138635,10,'S42.231G ','3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138634,10,'S42.231D ','3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138633,10,'S42.231B ','3-part fracture of surgical neck of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138632,10,'S42.231A ','3-part fracture of surgical neck of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138631,10,'S42.226S ','2-part nondisplaced fracture of surgical neck of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(138630,10,'S42.226P ','2-part nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138629,10,'S42.226K ','2-part nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138628,10,'S42.226G ','2-part nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138627,10,'S42.226D ','2-part nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138626,10,'S42.226B ','2-part nondisplaced fracture of surgical neck of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138625,10,'S42.226A ','2-part nondisplaced fracture of surgical neck of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138624,10,'S42.225S ','2-part nondisplaced fracture of surgical neck of left humerus, sequela','Y','0000-00-00 00:00:00'),(138623,10,'S42.225P ','2-part nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138622,10,'S42.225K ','2-part nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138621,10,'S42.225G ','2-part nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138620,10,'S42.225D ','2-part nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138619,10,'S42.225B ','2-part nondisplaced fracture of surgical neck of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138618,10,'S42.225A ','2-part nondisplaced fracture of surgical neck of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138617,10,'S42.224S ','2-part nondisplaced fracture of surgical neck of right humerus, sequela','Y','0000-00-00 00:00:00'),(138616,10,'S42.224P ','2-part nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138615,10,'S42.224K ','2-part nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138614,10,'S42.224G ','2-part nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138613,10,'S42.224D ','2-part nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138612,10,'S42.224B ','2-part nondisplaced fracture of surgical neck of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138611,10,'S42.224A ','2-part nondisplaced fracture of surgical neck of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138610,10,'S42.223S ','2-part displaced fracture of surgical neck of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(138609,10,'S42.223P ','2-part displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138608,10,'S42.223K ','2-part displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138607,10,'S42.223G ','2-part displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138606,10,'S42.223D ','2-part displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138605,10,'S42.223B ','2-part displaced fracture of surgical neck of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138603,10,'S42.222S ','2-part displaced fracture of surgical neck of left humerus, sequela','Y','0000-00-00 00:00:00'),(138604,10,'S42.223A ','2-part displaced fracture of surgical neck of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138602,10,'S42.222P ','2-part displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138601,10,'S42.222K ','2-part displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138600,10,'S42.222G ','2-part displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138599,10,'S42.222D ','2-part displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138598,10,'S42.222B ','2-part displaced fracture of surgical neck of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138597,10,'S42.222A ','2-part displaced fracture of surgical neck of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138596,10,'S42.221S ','2-part displaced fracture of surgical neck of right humerus, sequela','Y','0000-00-00 00:00:00'),(138595,10,'S42.221P ','2-part displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138594,10,'S42.221K ','2-part displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138593,10,'S42.221G ','2-part displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138592,10,'S42.221D ','2-part displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138591,10,'S42.221B ','2-part displaced fracture of surgical neck of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138590,10,'S42.221A ','2-part displaced fracture of surgical neck of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138589,10,'S42.216S ','Unspecified nondisplaced fracture of surgical neck of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(138588,10,'S42.216P ','Unspecified nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138587,10,'S42.216K ','Unspecified nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138586,10,'S42.216G ','Unspecified nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138585,10,'S42.216D ','Unspecified nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138584,10,'S42.216B ','Unspecified nondisplaced fracture of surgical neck of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138583,10,'S42.216A ','Unspecified nondisplaced fracture of surgical neck of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138582,10,'S42.215S ','Unspecified nondisplaced fracture of surgical neck of left humerus, sequela','Y','0000-00-00 00:00:00'),(138581,10,'S42.215P ','Unspecified nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138580,10,'S42.215K ','Unspecified nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138579,10,'S42.215G ','Unspecified nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138578,10,'S42.215D ','Unspecified nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138577,10,'S42.215B ','Unspecified nondisplaced fracture of surgical neck of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138576,10,'S42.215A ','Unspecified nondisplaced fracture of surgical neck of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138575,10,'S42.214S ','Unspecified nondisplaced fracture of surgical neck of right humerus, sequela','Y','0000-00-00 00:00:00'),(138574,10,'S42.214P ','Unspecified nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138573,10,'S42.214K ','Unspecified nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138572,10,'S42.214G ','Unspecified nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138571,10,'S42.214D ','Unspecified nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138570,10,'S42.214B ','Unspecified nondisplaced fracture of surgical neck of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138569,10,'S42.214A ','Unspecified nondisplaced fracture of surgical neck of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138568,10,'S42.213S ','Unspecified displaced fracture of surgical neck of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(138567,10,'S42.213P ','Unspecified displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138566,10,'S42.213K ','Unspecified displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138565,10,'S42.213G ','Unspecified displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138564,10,'S42.213D ','Unspecified displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138563,10,'S42.213B ','Unspecified displaced fracture of surgical neck of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138562,10,'S42.213A ','Unspecified displaced fracture of surgical neck of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138561,10,'S42.212S ','Unspecified displaced fracture of surgical neck of left humerus, sequela','Y','0000-00-00 00:00:00'),(138560,10,'S42.212P ','Unspecified displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138559,10,'S42.212K ','Unspecified displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138558,10,'S42.212G ','Unspecified displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138557,10,'S42.212D ','Unspecified displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138556,10,'S42.212B ','Unspecified displaced fracture of surgical neck of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138555,10,'S42.212A ','Unspecified displaced fracture of surgical neck of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138554,10,'S42.211S ','Unspecified displaced fracture of surgical neck of right humerus, sequela','Y','0000-00-00 00:00:00'),(138553,10,'S42.211P ','Unspecified displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138552,10,'S42.211K ','Unspecified displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138551,10,'S42.211G ','Unspecified displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138550,10,'S42.211D ','Unspecified displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138549,10,'S42.211B ','Unspecified displaced fracture of surgical neck of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138548,10,'S42.211A ','Unspecified displaced fracture of surgical neck of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138547,10,'S42.209S ','Unspecified fracture of upper end of unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(138546,10,'S42.209P ','Unspecified fracture of upper end of unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138545,10,'S42.209K ','Unspecified fracture of upper end of unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138544,10,'S42.209G ','Unspecified fracture of upper end of unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138543,10,'S42.209D ','Unspecified fracture of upper end of unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138542,10,'S42.209B ','Unspecified fracture of upper end of unspecified humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138541,10,'S42.209A ','Unspecified fracture of upper end of unspecified humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138540,10,'S42.202S ','Unspecified fracture of upper end of left humerus, sequela','Y','0000-00-00 00:00:00'),(138539,10,'S42.202P ','Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138538,10,'S42.202K ','Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138537,10,'S42.202G ','Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138536,10,'S42.202D ','Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138535,10,'S42.202B ','Unspecified fracture of upper end of left humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138534,10,'S42.202A ','Unspecified fracture of upper end of left humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138533,10,'S42.201S ','Unspecified fracture of upper end of right humerus, sequela','Y','0000-00-00 00:00:00'),(138532,10,'S42.201P ','Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138531,10,'S42.201K ','Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138530,10,'S42.201G ','Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138529,10,'S42.201D ','Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138528,10,'S42.201B ','Unspecified fracture of upper end of right humerus, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138527,10,'S42.201A ','Unspecified fracture of upper end of right humerus, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138526,10,'S42.199S ','Fracture of other part of scapula, unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(138525,10,'S42.199P ','Fracture of other part of scapula, unspecified shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138524,10,'S42.199K ','Fracture of other part of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138523,10,'S42.199G ','Fracture of other part of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138522,10,'S42.199D ','Fracture of other part of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138521,10,'S42.199B ','Fracture of other part of scapula, unspecified shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138520,10,'S42.199A ','Fracture of other part of scapula, unspecified shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138519,10,'S42.192S ','Fracture of other part of scapula, left shoulder, sequela','Y','0000-00-00 00:00:00'),(138518,10,'S42.192P ','Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138517,10,'S42.192K ','Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138516,10,'S42.192G ','Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138515,10,'S42.192D ','Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138514,10,'S42.192B ','Fracture of other part of scapula, left shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138513,10,'S42.192A ','Fracture of other part of scapula, left shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138512,10,'S42.191S ','Fracture of other part of scapula, right shoulder, sequela','Y','0000-00-00 00:00:00'),(138511,10,'S42.191P ','Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138510,10,'S42.191K ','Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138509,10,'S42.191G ','Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138508,10,'S42.191D ','Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138507,10,'S42.191B ','Fracture of other part of scapula, right shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138506,10,'S42.191A ','Fracture of other part of scapula, right shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138505,10,'S42.156S ','Nondisplaced fracture of neck of scapula, unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(138504,10,'S42.156P ','Nondisplaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138503,10,'S42.156K ','Nondisplaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138502,10,'S42.156G ','Nondisplaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138501,10,'S42.156D ','Nondisplaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138500,10,'S42.156B ','Nondisplaced fracture of neck of scapula, unspecified shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138499,10,'S42.156A ','Nondisplaced fracture of neck of scapula, unspecified shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138498,10,'S42.155S ','Nondisplaced fracture of neck of scapula, left shoulder, sequela','Y','0000-00-00 00:00:00'),(138497,10,'S42.155P ','Nondisplaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138496,10,'S42.155K ','Nondisplaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138495,10,'S42.155G ','Nondisplaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138494,10,'S42.155D ','Nondisplaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138493,10,'S42.155B ','Nondisplaced fracture of neck of scapula, left shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138492,10,'S42.155A ','Nondisplaced fracture of neck of scapula, left shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138491,10,'S42.154S ','Nondisplaced fracture of neck of scapula, right shoulder, sequela','Y','0000-00-00 00:00:00'),(138490,10,'S42.154P ','Nondisplaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138489,10,'S42.154K ','Nondisplaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138488,10,'S42.154G ','Nondisplaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138487,10,'S42.154D ','Nondisplaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138486,10,'S42.154B ','Nondisplaced fracture of neck of scapula, right shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138485,10,'S42.154A ','Nondisplaced fracture of neck of scapula, right shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138484,10,'S42.153S ','Displaced fracture of neck of scapula, unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(138483,10,'S42.153P ','Displaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138482,10,'S42.153K ','Displaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138481,10,'S42.153G ','Displaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138480,10,'S42.153D ','Displaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138479,10,'S42.153B ','Displaced fracture of neck of scapula, unspecified shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138478,10,'S42.153A ','Displaced fracture of neck of scapula, unspecified shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138477,10,'S42.152S ','Displaced fracture of neck of scapula, left shoulder, sequela','Y','0000-00-00 00:00:00'),(138476,10,'S42.152P ','Displaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138475,10,'S42.152K ','Displaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138474,10,'S42.152G ','Displaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138473,10,'S42.152D ','Displaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138472,10,'S42.152B ','Displaced fracture of neck of scapula, left shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138471,10,'S42.152A ','Displaced fracture of neck of scapula, left shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138470,10,'S42.151S ','Displaced fracture of neck of scapula, right shoulder, sequela','Y','0000-00-00 00:00:00'),(138469,10,'S42.151P ','Displaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138468,10,'S42.151K ','Displaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138467,10,'S42.151G ','Displaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138466,10,'S42.151D ','Displaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138465,10,'S42.151B ','Displaced fracture of neck of scapula, right shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138464,10,'S42.151A ','Displaced fracture of neck of scapula, right shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138463,10,'S42.146S ','Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(138462,10,'S42.146P ','Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138461,10,'S42.146K ','Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138460,10,'S42.146G ','Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138459,10,'S42.146D ','Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138458,10,'S42.146B ','Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138457,10,'S42.146A ','Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138456,10,'S42.145S ','Nondisplaced fracture of glenoid cavity of scapula, left shoulder, sequela','Y','0000-00-00 00:00:00'),(138455,10,'S42.145P ','Nondisplaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138454,10,'S42.145K ','Nondisplaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138453,10,'S42.145G ','Nondisplaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138452,10,'S42.145D ','Nondisplaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138451,10,'S42.145B ','Nondisplaced fracture of glenoid cavity of scapula, left shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138450,10,'S42.145A ','Nondisplaced fracture of glenoid cavity of scapula, left shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138449,10,'S42.144S ','Nondisplaced fracture of glenoid cavity of scapula, right shoulder, sequela','Y','0000-00-00 00:00:00'),(138448,10,'S42.144P ','Nondisplaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138447,10,'S42.144K ','Nondisplaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138446,10,'S42.144G ','Nondisplaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138445,10,'S42.144D ','Nondisplaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138444,10,'S42.144B ','Nondisplaced fracture of glenoid cavity of scapula, right shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138443,10,'S42.144A ','Nondisplaced fracture of glenoid cavity of scapula, right shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138442,10,'S42.143S ','Displaced fracture of glenoid cavity of scapula, unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(138441,10,'S42.143P ','Displaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138440,10,'S42.143K ','Displaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138439,10,'S42.143G ','Displaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138438,10,'S42.143D ','Displaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138437,10,'S42.143B ','Displaced fracture of glenoid cavity of scapula, unspecified shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138436,10,'S42.143A ','Displaced fracture of glenoid cavity of scapula, unspecified shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138435,10,'S42.142S ','Displaced fracture of glenoid cavity of scapula, left shoulder, sequela','Y','0000-00-00 00:00:00'),(138434,10,'S42.142P ','Displaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138433,10,'S42.142K ','Displaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138432,10,'S42.142G ','Displaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138431,10,'S42.142D ','Displaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138430,10,'S42.142B ','Displaced fracture of glenoid cavity of scapula, left shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138429,10,'S42.142A ','Displaced fracture of glenoid cavity of scapula, left shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138428,10,'S42.141S ','Displaced fracture of glenoid cavity of scapula, right shoulder, sequela','Y','0000-00-00 00:00:00'),(138427,10,'S42.141P ','Displaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138426,10,'S42.141K ','Displaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138425,10,'S42.141G ','Displaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138424,10,'S42.141D ','Displaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138423,10,'S42.141B ','Displaced fracture of glenoid cavity of scapula, right shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138422,10,'S42.141A ','Displaced fracture of glenoid cavity of scapula, right shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138421,10,'S42.136S ','Nondisplaced fracture of coracoid process, unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(138420,10,'S42.136P ','Nondisplaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138419,10,'S42.136K ','Nondisplaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138418,10,'S42.136G ','Nondisplaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138417,10,'S42.136D ','Nondisplaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138416,10,'S42.136B ','Nondisplaced fracture of coracoid process, unspecified shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138415,10,'S42.136A ','Nondisplaced fracture of coracoid process, unspecified shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138414,10,'S42.135S ','Nondisplaced fracture of coracoid process, left shoulder, sequela','Y','0000-00-00 00:00:00'),(138413,10,'S42.135P ','Nondisplaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138412,10,'S42.135K ','Nondisplaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138411,10,'S42.135G ','Nondisplaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138410,10,'S42.135D ','Nondisplaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138409,10,'S42.135B ','Nondisplaced fracture of coracoid process, left shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138408,10,'S42.135A ','Nondisplaced fracture of coracoid process, left shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138407,10,'S42.134S ','Nondisplaced fracture of coracoid process, right shoulder, sequela','Y','0000-00-00 00:00:00'),(138406,10,'S42.134P ','Nondisplaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138405,10,'S42.134K ','Nondisplaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138404,10,'S42.134G ','Nondisplaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138403,10,'S42.134D ','Nondisplaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138402,10,'S42.134B ','Nondisplaced fracture of coracoid process, right shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138401,10,'S42.134A ','Nondisplaced fracture of coracoid process, right shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138400,10,'S42.133S ','Displaced fracture of coracoid process, unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(138399,10,'S42.133P ','Displaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138398,10,'S42.133K ','Displaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138397,10,'S42.133G ','Displaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138396,10,'S42.133D ','Displaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138395,10,'S42.133B ','Displaced fracture of coracoid process, unspecified shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138394,10,'S42.133A ','Displaced fracture of coracoid process, unspecified shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138393,10,'S42.132S ','Displaced fracture of coracoid process, left shoulder, sequela','Y','0000-00-00 00:00:00'),(138392,10,'S42.132P ','Displaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138391,10,'S42.132K ','Displaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138390,10,'S42.132G ','Displaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138389,10,'S42.132D ','Displaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138388,10,'S42.132B ','Displaced fracture of coracoid process, left shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138387,10,'S42.132A ','Displaced fracture of coracoid process, left shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138386,10,'S42.131S ','Displaced fracture of coracoid process, right shoulder, sequela','Y','0000-00-00 00:00:00'),(138385,10,'S42.131P ','Displaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138384,10,'S42.131K ','Displaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138383,10,'S42.131G ','Displaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138382,10,'S42.131D ','Displaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138381,10,'S42.131B ','Displaced fracture of coracoid process, right shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138380,10,'S42.131A ','Displaced fracture of coracoid process, right shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138379,10,'S42.126S ','Nondisplaced fracture of acromial process, unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(138378,10,'S42.126P ','Nondisplaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138377,10,'S42.126K ','Nondisplaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138376,10,'S42.126G ','Nondisplaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138375,10,'S42.126D ','Nondisplaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138374,10,'S42.126B ','Nondisplaced fracture of acromial process, unspecified shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138373,10,'S42.126A ','Nondisplaced fracture of acromial process, unspecified shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138372,10,'S42.125S ','Nondisplaced fracture of acromial process, left shoulder, sequela','Y','0000-00-00 00:00:00'),(138371,10,'S42.125P ','Nondisplaced fracture of acromial process, left shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138370,10,'S42.125K ','Nondisplaced fracture of acromial process, left shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138369,10,'S42.125G ','Nondisplaced fracture of acromial process, left shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138368,10,'S42.125D ','Nondisplaced fracture of acromial process, left shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138367,10,'S42.125B ','Nondisplaced fracture of acromial process, left shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138366,10,'S42.125A ','Nondisplaced fracture of acromial process, left shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138365,10,'S42.124S ','Nondisplaced fracture of acromial process, right shoulder, sequela','Y','0000-00-00 00:00:00'),(138364,10,'S42.124P ','Nondisplaced fracture of acromial process, right shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138363,10,'S42.124K ','Nondisplaced fracture of acromial process, right shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138362,10,'S42.124G ','Nondisplaced fracture of acromial process, right shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138361,10,'S42.124D ','Nondisplaced fracture of acromial process, right shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138360,10,'S42.124B ','Nondisplaced fracture of acromial process, right shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138359,10,'S42.124A ','Nondisplaced fracture of acromial process, right shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138358,10,'S42.123S ','Displaced fracture of acromial process, unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(138357,10,'S42.123P ','Displaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138356,10,'S42.123K ','Displaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138355,10,'S42.123G ','Displaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138354,10,'S42.123D ','Displaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138353,10,'S42.123B ','Displaced fracture of acromial process, unspecified shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138352,10,'S42.123A ','Displaced fracture of acromial process, unspecified shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138351,10,'S42.122S ','Displaced fracture of acromial process, left shoulder, sequela','Y','0000-00-00 00:00:00'),(138350,10,'S42.122P ','Displaced fracture of acromial process, left shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138349,10,'S42.122K ','Displaced fracture of acromial process, left shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138348,10,'S42.122G ','Displaced fracture of acromial process, left shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138347,10,'S42.122D ','Displaced fracture of acromial process, left shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138346,10,'S42.122B ','Displaced fracture of acromial process, left shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138345,10,'S42.122A ','Displaced fracture of acromial process, left shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138344,10,'S42.121S ','Displaced fracture of acromial process, right shoulder, sequela','Y','0000-00-00 00:00:00'),(138343,10,'S42.121P ','Displaced fracture of acromial process, right shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138342,10,'S42.121K ','Displaced fracture of acromial process, right shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138341,10,'S42.121G ','Displaced fracture of acromial process, right shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138340,10,'S42.121D ','Displaced fracture of acromial process, right shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138339,10,'S42.121B ','Displaced fracture of acromial process, right shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138338,10,'S42.121A ','Displaced fracture of acromial process, right shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138337,10,'S42.116S ','Nondisplaced fracture of body of scapula, unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(138336,10,'S42.116P ','Nondisplaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138335,10,'S42.116K ','Nondisplaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138334,10,'S42.116G ','Nondisplaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138333,10,'S42.116D ','Nondisplaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138332,10,'S42.116B ','Nondisplaced fracture of body of scapula, unspecified shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138331,10,'S42.116A ','Nondisplaced fracture of body of scapula, unspecified shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138330,10,'S42.115S ','Nondisplaced fracture of body of scapula, left shoulder, sequela','Y','0000-00-00 00:00:00'),(138329,10,'S42.115P ','Nondisplaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138328,10,'S42.115K ','Nondisplaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138327,10,'S42.115G ','Nondisplaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138326,10,'S42.115D ','Nondisplaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138325,10,'S42.115B ','Nondisplaced fracture of body of scapula, left shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138324,10,'S42.115A ','Nondisplaced fracture of body of scapula, left shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138323,10,'S42.114S ','Nondisplaced fracture of body of scapula, right shoulder, sequela','Y','0000-00-00 00:00:00'),(138322,10,'S42.114P ','Nondisplaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138321,10,'S42.114K ','Nondisplaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138320,10,'S42.114G ','Nondisplaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138319,10,'S42.114D ','Nondisplaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138318,10,'S42.114B ','Nondisplaced fracture of body of scapula, right shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138317,10,'S42.114A ','Nondisplaced fracture of body of scapula, right shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138316,10,'S42.113S ','Displaced fracture of body of scapula, unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(138315,10,'S42.113P ','Displaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138314,10,'S42.113K ','Displaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138313,10,'S42.113G ','Displaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138312,10,'S42.113D ','Displaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138311,10,'S42.113B ','Displaced fracture of body of scapula, unspecified shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138310,10,'S42.113A ','Displaced fracture of body of scapula, unspecified shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138309,10,'S42.112S ','Displaced fracture of body of scapula, left shoulder, sequela','Y','0000-00-00 00:00:00'),(138308,10,'S42.112P ','Displaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138307,10,'S42.112K ','Displaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138306,10,'S42.112G ','Displaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138305,10,'S42.112D ','Displaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138304,10,'S42.112B ','Displaced fracture of body of scapula, left shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138303,10,'S42.112A ','Displaced fracture of body of scapula, left shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138302,10,'S42.111S ','Displaced fracture of body of scapula, right shoulder, sequela','Y','0000-00-00 00:00:00'),(138301,10,'S42.111P ','Displaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138300,10,'S42.111K ','Displaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138299,10,'S42.111G ','Displaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138298,10,'S42.111D ','Displaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138297,10,'S42.111B ','Displaced fracture of body of scapula, right shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138296,10,'S42.111A ','Displaced fracture of body of scapula, right shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138295,10,'S42.109S ','Fracture of unspecified part of scapula, unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(138294,10,'S42.109P ','Fracture of unspecified part of scapula, unspecified shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138293,10,'S42.109K ','Fracture of unspecified part of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138292,10,'S42.109G ','Fracture of unspecified part of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138291,10,'S42.109D ','Fracture of unspecified part of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138290,10,'S42.109B ','Fracture of unspecified part of scapula, unspecified shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138289,10,'S42.109A ','Fracture of unspecified part of scapula, unspecified shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138288,10,'S42.102S ','Fracture of unspecified part of scapula, left shoulder, sequela','Y','0000-00-00 00:00:00'),(138287,10,'S42.102P ','Fracture of unspecified part of scapula, left shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138286,10,'S42.102K ','Fracture of unspecified part of scapula, left shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138285,10,'S42.102G ','Fracture of unspecified part of scapula, left shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138284,10,'S42.102D ','Fracture of unspecified part of scapula, left shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138283,10,'S42.102B ','Fracture of unspecified part of scapula, left shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138282,10,'S42.102A ','Fracture of unspecified part of scapula, left shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138281,10,'S42.101S ','Fracture of unspecified part of scapula, right shoulder, sequela','Y','0000-00-00 00:00:00'),(138280,10,'S42.101P ','Fracture of unspecified part of scapula, right shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138279,10,'S42.101K ','Fracture of unspecified part of scapula, right shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138278,10,'S42.101G ','Fracture of unspecified part of scapula, right shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138277,10,'S42.101D ','Fracture of unspecified part of scapula, right shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138276,10,'S42.101B ','Fracture of unspecified part of scapula, right shoulder, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138275,10,'S42.101A ','Fracture of unspecified part of scapula, right shoulder, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138274,10,'S42.036S ','Nondisplaced fracture of lateral end of unspecified clavicle, sequela','Y','0000-00-00 00:00:00'),(138273,10,'S42.036P ','Nondisplaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138272,10,'S42.036K ','Nondisplaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138271,10,'S42.036G ','Nondisplaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138270,10,'S42.036D ','Nondisplaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138269,10,'S42.036B ','Nondisplaced fracture of lateral end of unspecified clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138268,10,'S42.036A ','Nondisplaced fracture of lateral end of unspecified clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138267,10,'S42.035S ','Nondisplaced fracture of lateral end of left clavicle, sequela','Y','0000-00-00 00:00:00'),(138266,10,'S42.035P ','Nondisplaced fracture of lateral end of left clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138265,10,'S42.035K ','Nondisplaced fracture of lateral end of left clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138264,10,'S42.035G ','Nondisplaced fracture of lateral end of left clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138263,10,'S42.035D ','Nondisplaced fracture of lateral end of left clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138262,10,'S42.035B ','Nondisplaced fracture of lateral end of left clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138261,10,'S42.035A ','Nondisplaced fracture of lateral end of left clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138260,10,'S42.034S ','Nondisplaced fracture of lateral end of right clavicle, sequela','Y','0000-00-00 00:00:00'),(138259,10,'S42.034P ','Nondisplaced fracture of lateral end of right clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138258,10,'S42.034K ','Nondisplaced fracture of lateral end of right clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138257,10,'S42.034G ','Nondisplaced fracture of lateral end of right clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138256,10,'S42.034D ','Nondisplaced fracture of lateral end of right clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138255,10,'S42.034B ','Nondisplaced fracture of lateral end of right clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138254,10,'S42.034A ','Nondisplaced fracture of lateral end of right clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138253,10,'S42.033S ','Displaced fracture of lateral end of unspecified clavicle, sequela','Y','0000-00-00 00:00:00'),(138252,10,'S42.033P ','Displaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138251,10,'S42.033K ','Displaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138250,10,'S42.033G ','Displaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138249,10,'S42.033D ','Displaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138248,10,'S42.033B ','Displaced fracture of lateral end of unspecified clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138247,10,'S42.033A ','Displaced fracture of lateral end of unspecified clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138246,10,'S42.032S ','Displaced fracture of lateral end of left clavicle, sequela','Y','0000-00-00 00:00:00'),(138245,10,'S42.032P ','Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138244,10,'S42.032K ','Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138243,10,'S42.032G ','Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138242,10,'S42.032D ','Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138241,10,'S42.032B ','Displaced fracture of lateral end of left clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138240,10,'S42.032A ','Displaced fracture of lateral end of left clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138239,10,'S42.031S ','Displaced fracture of lateral end of right clavicle, sequela','Y','0000-00-00 00:00:00'),(138238,10,'S42.031P ','Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138237,10,'S42.031K ','Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138236,10,'S42.031G ','Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138235,10,'S42.031D ','Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138234,10,'S42.031B ','Displaced fracture of lateral end of right clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138233,10,'S42.031A ','Displaced fracture of lateral end of right clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138232,10,'S42.026S ','Nondisplaced fracture of shaft of unspecified clavicle, sequela','Y','0000-00-00 00:00:00'),(138231,10,'S42.026P ','Nondisplaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138230,10,'S42.026K ','Nondisplaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138229,10,'S42.026G ','Nondisplaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138228,10,'S42.026D ','Nondisplaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138227,10,'S42.026B ','Nondisplaced fracture of shaft of unspecified clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138226,10,'S42.026A ','Nondisplaced fracture of shaft of unspecified clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138225,10,'S42.025S ','Nondisplaced fracture of shaft of left clavicle, sequela','Y','0000-00-00 00:00:00'),(138224,10,'S42.025P ','Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138223,10,'S42.025K ','Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138222,10,'S42.025G ','Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138221,10,'S42.025D ','Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138220,10,'S42.025B ','Nondisplaced fracture of shaft of left clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138219,10,'S42.025A ','Nondisplaced fracture of shaft of left clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138218,10,'S42.024S ','Nondisplaced fracture of shaft of right clavicle, sequela','Y','0000-00-00 00:00:00'),(138217,10,'S42.024P ','Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138216,10,'S42.024K ','Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138215,10,'S42.024G ','Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138214,10,'S42.024D ','Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138213,10,'S42.024B ','Nondisplaced fracture of shaft of right clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138212,10,'S42.024A ','Nondisplaced fracture of shaft of right clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138211,10,'S42.023S ','Displaced fracture of shaft of unspecified clavicle, sequela','Y','0000-00-00 00:00:00'),(138210,10,'S42.023P ','Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138209,10,'S42.023K ','Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138208,10,'S42.023G ','Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138207,10,'S42.023D ','Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138206,10,'S42.023B ','Displaced fracture of shaft of unspecified clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138205,10,'S42.023A ','Displaced fracture of shaft of unspecified clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138204,10,'S42.022S ','Displaced fracture of shaft of left clavicle, sequela','Y','0000-00-00 00:00:00'),(138203,10,'S42.022P ','Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138202,10,'S42.022K ','Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138201,10,'S42.022G ','Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138200,10,'S42.022D ','Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138199,10,'S42.022B ','Displaced fracture of shaft of left clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138198,10,'S42.022A ','Displaced fracture of shaft of left clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138197,10,'S42.021S ','Displaced fracture of shaft of right clavicle, sequela','Y','0000-00-00 00:00:00'),(138196,10,'S42.021P ','Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138195,10,'S42.021K ','Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138194,10,'S42.021G ','Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138193,10,'S42.021D ','Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138192,10,'S42.021B ','Displaced fracture of shaft of right clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138190,10,'S42.019S ','Nondisplaced fracture of sternal end of unspecified clavicle, sequela','Y','0000-00-00 00:00:00'),(138191,10,'S42.021A ','Displaced fracture of shaft of right clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138189,10,'S42.019P ','Nondisplaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138188,10,'S42.019K ','Nondisplaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138187,10,'S42.019G ','Nondisplaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138186,10,'S42.019D ','Nondisplaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138185,10,'S42.019B ','Nondisplaced fracture of sternal end of unspecified clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138183,10,'S42.018S ','Nondisplaced fracture of sternal end of left clavicle, sequela','Y','0000-00-00 00:00:00'),(138184,10,'S42.019A ','Nondisplaced fracture of sternal end of unspecified clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138182,10,'S42.018P ','Nondisplaced fracture of sternal end of left clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138181,10,'S42.018K ','Nondisplaced fracture of sternal end of left clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138180,10,'S42.018G ','Nondisplaced fracture of sternal end of left clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138179,10,'S42.018D ','Nondisplaced fracture of sternal end of left clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138178,10,'S42.018B ','Nondisplaced fracture of sternal end of left clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138176,10,'S42.017S ','Nondisplaced fracture of sternal end of right clavicle, sequela','Y','0000-00-00 00:00:00'),(138177,10,'S42.018A ','Nondisplaced fracture of sternal end of left clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138175,10,'S42.017P ','Nondisplaced fracture of sternal end of right clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138174,10,'S42.017K ','Nondisplaced fracture of sternal end of right clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138173,10,'S42.017G ','Nondisplaced fracture of sternal end of right clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138172,10,'S42.017D ','Nondisplaced fracture of sternal end of right clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138171,10,'S42.017B ','Nondisplaced fracture of sternal end of right clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138169,10,'S42.016S ','Posterior displaced fracture of sternal end of unspecified clavicle, sequela','Y','0000-00-00 00:00:00'),(138170,10,'S42.017A ','Nondisplaced fracture of sternal end of right clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138168,10,'S42.016P ','Posterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138167,10,'S42.016K ','Posterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138166,10,'S42.016G ','Posterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138165,10,'S42.016D ','Posterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138164,10,'S42.016B ','Posterior displaced fracture of sternal end of unspecified clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138162,10,'S42.015S ','Posterior displaced fracture of sternal end of left clavicle, sequela','Y','0000-00-00 00:00:00'),(138163,10,'S42.016A ','Posterior displaced fracture of sternal end of unspecified clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138161,10,'S42.015P ','Posterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138160,10,'S42.015K ','Posterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138159,10,'S42.015G ','Posterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138158,10,'S42.015D ','Posterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138157,10,'S42.015B ','Posterior displaced fracture of sternal end of left clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138156,10,'S42.015A ','Posterior displaced fracture of sternal end of left clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138155,10,'S42.014S ','Posterior displaced fracture of sternal end of right clavicle, sequela','Y','0000-00-00 00:00:00'),(138154,10,'S42.014P ','Posterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138153,10,'S42.014K ','Posterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138152,10,'S42.014G ','Posterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138151,10,'S42.014D ','Posterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138150,10,'S42.014B ','Posterior displaced fracture of sternal end of right clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138149,10,'S42.014A ','Posterior displaced fracture of sternal end of right clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138148,10,'S42.013S ','Anterior displaced fracture of sternal end of unspecified clavicle, sequela','Y','0000-00-00 00:00:00'),(138147,10,'S42.013P ','Anterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138146,10,'S42.013K ','Anterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138145,10,'S42.013G ','Anterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138144,10,'S42.013D ','Anterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138143,10,'S42.013B ','Anterior displaced fracture of sternal end of unspecified clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138141,10,'S42.012S ','Anterior displaced fracture of sternal end of left clavicle, sequela','Y','0000-00-00 00:00:00'),(138142,10,'S42.013A ','Anterior displaced fracture of sternal end of unspecified clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138140,10,'S42.012P ','Anterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138139,10,'S42.012K ','Anterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138138,10,'S42.012G ','Anterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138137,10,'S42.012D ','Anterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138136,10,'S42.012B ','Anterior displaced fracture of sternal end of left clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138134,10,'S42.011S ','Anterior displaced fracture of sternal end of right clavicle, sequela','Y','0000-00-00 00:00:00'),(138135,10,'S42.012A ','Anterior displaced fracture of sternal end of left clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138133,10,'S42.011P ','Anterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138132,10,'S42.011K ','Anterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138131,10,'S42.011G ','Anterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138130,10,'S42.011D ','Anterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138129,10,'S42.011B ','Anterior displaced fracture of sternal end of right clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138128,10,'S42.011A ','Anterior displaced fracture of sternal end of right clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138127,10,'S42.009S ','Fracture of unspecified part of unspecified clavicle, sequela','Y','0000-00-00 00:00:00'),(138126,10,'S42.009P ','Fracture of unspecified part of unspecified clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138125,10,'S42.009K ','Fracture of unspecified part of unspecified clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138124,10,'S42.009G ','Fracture of unspecified part of unspecified clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138123,10,'S42.009D ','Fracture of unspecified part of unspecified clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138122,10,'S42.009B ','Fracture of unspecified part of unspecified clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138121,10,'S42.009A ','Fracture of unspecified part of unspecified clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138120,10,'S42.002S ','Fracture of unspecified part of left clavicle, sequela','Y','0000-00-00 00:00:00'),(138119,10,'S42.002P ','Fracture of unspecified part of left clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138118,10,'S42.002K ','Fracture of unspecified part of left clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138117,10,'S42.002G ','Fracture of unspecified part of left clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138116,10,'S42.002D ','Fracture of unspecified part of left clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138115,10,'S42.002B ','Fracture of unspecified part of left clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138113,10,'S42.001S ','Fracture of unspecified part of right clavicle, sequela','Y','0000-00-00 00:00:00'),(138114,10,'S42.002A ','Fracture of unspecified part of left clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138112,10,'S42.001P ','Fracture of unspecified part of right clavicle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(138111,10,'S42.001K ','Fracture of unspecified part of right clavicle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(138110,10,'S42.001G ','Fracture of unspecified part of right clavicle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(138109,10,'S42.001D ','Fracture of unspecified part of right clavicle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(138108,10,'S42.001B ','Fracture of unspecified part of right clavicle, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(138107,10,'S42.001A ','Fracture of unspecified part of right clavicle, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(138106,10,'S41.159S ','Open bite of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(138104,10,'S41.159A ','Open bite of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(138105,10,'S41.159D ','Open bite of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(138103,10,'S41.152S ','Open bite of left upper arm, sequela','Y','0000-00-00 00:00:00'),(138101,10,'S41.152A ','Open bite of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(138102,10,'S41.152D ','Open bite of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(138100,10,'S41.151S ','Open bite of right upper arm, sequela','Y','0000-00-00 00:00:00'),(138098,10,'S41.151A ','Open bite of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(138099,10,'S41.151D ','Open bite of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(138097,10,'S41.149S ','Puncture wound with foreign body of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(138096,10,'S41.149D ','Puncture wound with foreign body of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(138095,10,'S41.149A ','Puncture wound with foreign body of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(138093,10,'S41.142D ','Puncture wound with foreign body of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(138094,10,'S41.142S ','Puncture wound with foreign body of left upper arm, sequela','Y','0000-00-00 00:00:00'),(138092,10,'S41.142A ','Puncture wound with foreign body of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(138091,10,'S41.141S ','Puncture wound with foreign body of right upper arm, sequela','Y','0000-00-00 00:00:00'),(138090,10,'S41.141D ','Puncture wound with foreign body of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(138089,10,'S41.141A ','Puncture wound with foreign body of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(138088,10,'S41.139S ','Puncture wound without foreign body of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(138087,10,'S41.139D ','Puncture wound without foreign body of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(138085,10,'S41.132S ','Puncture wound without foreign body of left upper arm, sequela','Y','0000-00-00 00:00:00'),(138086,10,'S41.139A ','Puncture wound without foreign body of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(138084,10,'S41.132D ','Puncture wound without foreign body of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(138083,10,'S41.132A ','Puncture wound without foreign body of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(138082,10,'S41.131S ','Puncture wound without foreign body of right upper arm, sequela','Y','0000-00-00 00:00:00'),(138080,10,'S41.131A ','Puncture wound without foreign body of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(138081,10,'S41.131D ','Puncture wound without foreign body of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(138079,10,'S41.129S ','Laceration with foreign body of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(138078,10,'S41.129D ','Laceration with foreign body of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(138077,10,'S41.129A ','Laceration with foreign body of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(138075,10,'S41.122D ','Laceration with foreign body of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(138076,10,'S41.122S ','Laceration with foreign body of left upper arm, sequela','Y','0000-00-00 00:00:00'),(138074,10,'S41.122A ','Laceration with foreign body of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(138073,10,'S41.121S ','Laceration with foreign body of right upper arm, sequela','Y','0000-00-00 00:00:00'),(138072,10,'S41.121D ','Laceration with foreign body of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(138071,10,'S41.121A ','Laceration with foreign body of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(138070,10,'S41.119S ','Laceration without foreign body of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(138068,10,'S41.119A ','Laceration without foreign body of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(138069,10,'S41.119D ','Laceration without foreign body of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(138067,10,'S41.112S ','Laceration without foreign body of left upper arm, sequela','Y','0000-00-00 00:00:00'),(138066,10,'S41.112D ','Laceration without foreign body of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(138064,10,'S41.111S ','Laceration without foreign body of right upper arm, sequela','Y','0000-00-00 00:00:00'),(138065,10,'S41.112A ','Laceration without foreign body of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(138063,10,'S41.111D ','Laceration without foreign body of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(138062,10,'S41.111A ','Laceration without foreign body of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(138061,10,'S41.109S ','Unspecified open wound of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(138059,10,'S41.109A ','Unspecified open wound of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(138060,10,'S41.109D ','Unspecified open wound of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(138058,10,'S41.102S ','Unspecified open wound of left upper arm, sequela','Y','0000-00-00 00:00:00'),(138057,10,'S41.102D ','Unspecified open wound of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(138055,10,'S41.101S ','Unspecified open wound of right upper arm, sequela','Y','0000-00-00 00:00:00'),(138056,10,'S41.102A ','Unspecified open wound of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(138054,10,'S41.101D ','Unspecified open wound of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(138052,10,'S41.059S ','Open bite of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(138053,10,'S41.101A ','Unspecified open wound of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(138051,10,'S41.059D ','Open bite of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(138049,10,'S41.052S ','Open bite of left shoulder, sequela','Y','0000-00-00 00:00:00'),(138050,10,'S41.059A ','Open bite of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(138048,10,'S41.052D ','Open bite of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(138046,10,'S41.051S ','Open bite of right shoulder, sequela','Y','0000-00-00 00:00:00'),(138047,10,'S41.052A ','Open bite of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(138045,10,'S41.051D ','Open bite of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(138043,10,'S41.049S ','Puncture wound with foreign body of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(138044,10,'S41.051A ','Open bite of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(138042,10,'S41.049D ','Puncture wound with foreign body of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(138041,10,'S41.049A ','Puncture wound with foreign body of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(138040,10,'S41.042S ','Puncture wound with foreign body of left shoulder, sequela','Y','0000-00-00 00:00:00'),(138038,10,'S41.042A ','Puncture wound with foreign body of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(138039,10,'S41.042D ','Puncture wound with foreign body of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(138037,10,'S41.041S ','Puncture wound with foreign body of right shoulder, sequela','Y','0000-00-00 00:00:00'),(138036,10,'S41.041D ','Puncture wound with foreign body of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(138035,10,'S41.041A ','Puncture wound with foreign body of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(138034,10,'S41.039S ','Puncture wound without foreign body of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(138032,10,'S41.039A ','Puncture wound without foreign body of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(138033,10,'S41.039D ','Puncture wound without foreign body of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(138031,10,'S41.032S ','Puncture wound without foreign body of left shoulder, sequela','Y','0000-00-00 00:00:00'),(138030,10,'S41.032D ','Puncture wound without foreign body of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(138029,10,'S41.032A ','Puncture wound without foreign body of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(138028,10,'S41.031S ','Puncture wound without foreign body of right shoulder, sequela','Y','0000-00-00 00:00:00'),(138027,10,'S41.031D ','Puncture wound without foreign body of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(138026,10,'S41.031A ','Puncture wound without foreign body of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(138025,10,'S41.029S ','Laceration with foreign body of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(138024,10,'S41.029D ','Laceration with foreign body of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(138023,10,'S41.029A ','Laceration with foreign body of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(138022,10,'S41.022S ','Laceration with foreign body of left shoulder, sequela','Y','0000-00-00 00:00:00'),(138021,10,'S41.022D ','Laceration with foreign body of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(138020,10,'S41.022A ','Laceration with foreign body of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(138019,10,'S41.021S ','Laceration with foreign body of right shoulder, sequela','Y','0000-00-00 00:00:00'),(138018,10,'S41.021D ','Laceration with foreign body of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(138017,10,'S41.021A ','Laceration with foreign body of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(138016,10,'S41.019S ','Laceration without foreign body of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(138015,10,'S41.019D ','Laceration without foreign body of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(138014,10,'S41.019A ','Laceration without foreign body of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(138013,10,'S41.012S ','Laceration without foreign body of left shoulder, sequela','Y','0000-00-00 00:00:00'),(138012,10,'S41.012D ','Laceration without foreign body of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(138011,10,'S41.012A ','Laceration without foreign body of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(138010,10,'S41.011S ','Laceration without foreign body of right shoulder, sequela','Y','0000-00-00 00:00:00'),(138009,10,'S41.011D ','Laceration without foreign body of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(138008,10,'S41.011A ','Laceration without foreign body of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(138007,10,'S41.009S ','Unspecified open wound of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(138006,10,'S41.009D ','Unspecified open wound of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(138005,10,'S41.009A ','Unspecified open wound of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(138004,10,'S41.002S ','Unspecified open wound of left shoulder, sequela','Y','0000-00-00 00:00:00'),(138003,10,'S41.002D ','Unspecified open wound of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(138002,10,'S41.002A ','Unspecified open wound of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(138001,10,'S41.001S ','Unspecified open wound of right shoulder, sequela','Y','0000-00-00 00:00:00'),(138000,10,'S41.001D ','Unspecified open wound of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137999,10,'S41.001A ','Unspecified open wound of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137998,10,'S40.929S ','Unspecified superficial injury of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(137997,10,'S40.929D ','Unspecified superficial injury of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137996,10,'S40.929A ','Unspecified superficial injury of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137995,10,'S40.922S ','Unspecified superficial injury of left upper arm, sequela','Y','0000-00-00 00:00:00'),(137994,10,'S40.922D ','Unspecified superficial injury of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137993,10,'S40.922A ','Unspecified superficial injury of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137992,10,'S40.921S ','Unspecified superficial injury of right upper arm, sequela','Y','0000-00-00 00:00:00'),(137991,10,'S40.921D ','Unspecified superficial injury of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137990,10,'S40.921A ','Unspecified superficial injury of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137989,10,'S40.919S ','Unspecified superficial injury of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(137988,10,'S40.919D ','Unspecified superficial injury of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137987,10,'S40.919A ','Unspecified superficial injury of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137986,10,'S40.912S ','Unspecified superficial injury of left shoulder, sequela','Y','0000-00-00 00:00:00'),(137985,10,'S40.912D ','Unspecified superficial injury of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137984,10,'S40.912A ','Unspecified superficial injury of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137983,10,'S40.911S ','Unspecified superficial injury of right shoulder, sequela','Y','0000-00-00 00:00:00'),(137982,10,'S40.911D ','Unspecified superficial injury of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137981,10,'S40.911A ','Unspecified superficial injury of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137980,10,'S40.879S ','Other superficial bite of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(137979,10,'S40.879D ','Other superficial bite of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137978,10,'S40.879A ','Other superficial bite of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137977,10,'S40.872S ','Other superficial bite of left upper arm, sequela','Y','0000-00-00 00:00:00'),(137976,10,'S40.872D ','Other superficial bite of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137975,10,'S40.872A ','Other superficial bite of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137974,10,'S40.871S ','Other superficial bite of right upper arm, sequela','Y','0000-00-00 00:00:00'),(137973,10,'S40.871D ','Other superficial bite of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137972,10,'S40.871A ','Other superficial bite of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137971,10,'S40.869S ','Insect bite (nonvenomous) of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(137970,10,'S40.869D ','Insect bite (nonvenomous) of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137969,10,'S40.869A ','Insect bite (nonvenomous) of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137968,10,'S40.862S ','Insect bite (nonvenomous) of left upper arm, sequela','Y','0000-00-00 00:00:00'),(137967,10,'S40.862D ','Insect bite (nonvenomous) of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137966,10,'S40.862A ','Insect bite (nonvenomous) of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137965,10,'S40.861S ','Insect bite (nonvenomous) of right upper arm, sequela','Y','0000-00-00 00:00:00'),(137964,10,'S40.861D ','Insect bite (nonvenomous) of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137963,10,'S40.861A ','Insect bite (nonvenomous) of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137962,10,'S40.859S ','Superficial foreign body of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(137961,10,'S40.859D ','Superficial foreign body of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137960,10,'S40.859A ','Superficial foreign body of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137959,10,'S40.852S ','Superficial foreign body of left upper arm, sequela','Y','0000-00-00 00:00:00'),(137958,10,'S40.852D ','Superficial foreign body of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137957,10,'S40.852A ','Superficial foreign body of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137956,10,'S40.851S ','Superficial foreign body of right upper arm, sequela','Y','0000-00-00 00:00:00'),(137955,10,'S40.851D ','Superficial foreign body of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137954,10,'S40.851A ','Superficial foreign body of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137953,10,'S40.849S ','External constriction of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(137952,10,'S40.849D ','External constriction of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137951,10,'S40.849A ','External constriction of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137950,10,'S40.842S ','External constriction of left upper arm, sequela','Y','0000-00-00 00:00:00'),(137949,10,'S40.842D ','External constriction of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137948,10,'S40.842A ','External constriction of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137947,10,'S40.841S ','External constriction of right upper arm, sequela','Y','0000-00-00 00:00:00'),(137946,10,'S40.841D ','External constriction of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137945,10,'S40.841A ','External constriction of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137944,10,'S40.829S ','Blister (nonthermal) of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(137943,10,'S40.829D ','Blister (nonthermal) of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137942,10,'S40.829A ','Blister (nonthermal) of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137941,10,'S40.822S ','Blister (nonthermal) of left upper arm, sequela','Y','0000-00-00 00:00:00'),(137940,10,'S40.822D ','Blister (nonthermal) of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137939,10,'S40.822A ','Blister (nonthermal) of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137938,10,'S40.821S ','Blister (nonthermal) of right upper arm, sequela','Y','0000-00-00 00:00:00'),(137937,10,'S40.821D ','Blister (nonthermal) of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137936,10,'S40.821A ','Blister (nonthermal) of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137935,10,'S40.819S ','Abrasion of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(137934,10,'S40.819D ','Abrasion of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137933,10,'S40.819A ','Abrasion of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137932,10,'S40.812S ','Abrasion of left upper arm, sequela','Y','0000-00-00 00:00:00'),(137931,10,'S40.812D ','Abrasion of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137930,10,'S40.812A ','Abrasion of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137929,10,'S40.811S ','Abrasion of right upper arm, sequela','Y','0000-00-00 00:00:00'),(137928,10,'S40.811D ','Abrasion of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137927,10,'S40.811A ','Abrasion of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137926,10,'S40.279S ','Other superficial bite of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(137925,10,'S40.279D ','Other superficial bite of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137924,10,'S40.279A ','Other superficial bite of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137923,10,'S40.272S ','Other superficial bite of left shoulder, sequela','Y','0000-00-00 00:00:00'),(137922,10,'S40.272D ','Other superficial bite of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137921,10,'S40.272A ','Other superficial bite of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137920,10,'S40.271S ','Other superficial bite of right shoulder, sequela','Y','0000-00-00 00:00:00'),(137919,10,'S40.271D ','Other superficial bite of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137918,10,'S40.271A ','Other superficial bite of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137917,10,'S40.269S ','Insect bite (nonvenomous) of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(137916,10,'S40.269D ','Insect bite (nonvenomous) of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137915,10,'S40.269A ','Insect bite (nonvenomous) of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137914,10,'S40.262S ','Insect bite (nonvenomous) of left shoulder, sequela','Y','0000-00-00 00:00:00'),(137913,10,'S40.262D ','Insect bite (nonvenomous) of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137912,10,'S40.262A ','Insect bite (nonvenomous) of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137911,10,'S40.261S ','Insect bite (nonvenomous) of right shoulder, sequela','Y','0000-00-00 00:00:00'),(137910,10,'S40.261D ','Insect bite (nonvenomous) of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137909,10,'S40.261A ','Insect bite (nonvenomous) of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137908,10,'S40.259S ','Superficial foreign body of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(137907,10,'S40.259D ','Superficial foreign body of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137906,10,'S40.259A ','Superficial foreign body of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137905,10,'S40.252S ','Superficial foreign body of left shoulder, sequela','Y','0000-00-00 00:00:00'),(137904,10,'S40.252D ','Superficial foreign body of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137903,10,'S40.252A ','Superficial foreign body of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137902,10,'S40.251S ','Superficial foreign body of right shoulder, sequela','Y','0000-00-00 00:00:00'),(137901,10,'S40.251D ','Superficial foreign body of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137900,10,'S40.251A ','Superficial foreign body of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137899,10,'S40.249S ','External constriction of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(137898,10,'S40.249D ','External constriction of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137897,10,'S40.249A ','External constriction of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137896,10,'S40.242S ','External constriction of left shoulder, sequela','Y','0000-00-00 00:00:00'),(137895,10,'S40.242D ','External constriction of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137894,10,'S40.242A ','External constriction of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137893,10,'S40.241S ','External constriction of right shoulder, sequela','Y','0000-00-00 00:00:00'),(137892,10,'S40.241D ','External constriction of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137891,10,'S40.241A ','External constriction of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137890,10,'S40.229S ','Blister (nonthermal) of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(137889,10,'S40.229D ','Blister (nonthermal) of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137888,10,'S40.229A ','Blister (nonthermal) of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137887,10,'S40.222S ','Blister (nonthermal) of left shoulder, sequela','Y','0000-00-00 00:00:00'),(137886,10,'S40.222D ','Blister (nonthermal) of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137885,10,'S40.222A ','Blister (nonthermal) of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137884,10,'S40.221S ','Blister (nonthermal) of right shoulder, sequela','Y','0000-00-00 00:00:00'),(137883,10,'S40.221D ','Blister (nonthermal) of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137882,10,'S40.221A ','Blister (nonthermal) of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137881,10,'S40.219S ','Abrasion of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(137880,10,'S40.219D ','Abrasion of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137879,10,'S40.219A ','Abrasion of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137878,10,'S40.212S ','Abrasion of left shoulder, sequela','Y','0000-00-00 00:00:00'),(137877,10,'S40.212D ','Abrasion of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137876,10,'S40.212A ','Abrasion of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137875,10,'S40.211S ','Abrasion of right shoulder, sequela','Y','0000-00-00 00:00:00'),(137874,10,'S40.211D ','Abrasion of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137873,10,'S40.211A ','Abrasion of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137872,10,'S40.029S ','Contusion of unspecified upper arm, sequela','Y','0000-00-00 00:00:00'),(137871,10,'S40.029D ','Contusion of unspecified upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137870,10,'S40.029A ','Contusion of unspecified upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137869,10,'S40.022S ','Contusion of left upper arm, sequela','Y','0000-00-00 00:00:00'),(137868,10,'S40.022D ','Contusion of left upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137867,10,'S40.022A ','Contusion of left upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137866,10,'S40.021S ','Contusion of right upper arm, sequela','Y','0000-00-00 00:00:00'),(137865,10,'S40.021D ','Contusion of right upper arm, subsequent encounter','Y','0000-00-00 00:00:00'),(137864,10,'S40.021A ','Contusion of right upper arm, initial encounter','Y','0000-00-00 00:00:00'),(137863,10,'S40.019S ','Contusion of unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(137862,10,'S40.019D ','Contusion of unspecified shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137861,10,'S40.019A ','Contusion of unspecified shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137860,10,'S40.012S ','Contusion of left shoulder, sequela','Y','0000-00-00 00:00:00'),(137859,10,'S40.012D ','Contusion of left shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137858,10,'S40.012A ','Contusion of left shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137857,10,'S40.011S ','Contusion of right shoulder, sequela','Y','0000-00-00 00:00:00'),(137856,10,'S40.011D ','Contusion of right shoulder, subsequent encounter','Y','0000-00-00 00:00:00'),(137855,10,'S40.011A ','Contusion of right shoulder, initial encounter','Y','0000-00-00 00:00:00'),(137854,10,'S39.94XS ','Unspecified injury of external genitals, sequela','Y','0000-00-00 00:00:00'),(137853,10,'S39.94XD ','Unspecified injury of external genitals, subsequent encounter','Y','0000-00-00 00:00:00'),(137852,10,'S39.94XA ','Unspecified injury of external genitals, initial encounter','Y','0000-00-00 00:00:00'),(137851,10,'S39.93XS ','Unspecified injury of pelvis, sequela','Y','0000-00-00 00:00:00'),(137850,10,'S39.93XD ','Unspecified injury of pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(137849,10,'S39.93XA ','Unspecified injury of pelvis, initial encounter','Y','0000-00-00 00:00:00'),(137848,10,'S39.92XS ','Unspecified injury of lower back, sequela','Y','0000-00-00 00:00:00'),(137847,10,'S39.92XD ','Unspecified injury of lower back, subsequent encounter','Y','0000-00-00 00:00:00'),(137846,10,'S39.92XA ','Unspecified injury of lower back, initial encounter','Y','0000-00-00 00:00:00'),(137845,10,'S39.91XS ','Unspecified injury of abdomen, sequela','Y','0000-00-00 00:00:00'),(137844,10,'S39.91XD ','Unspecified injury of abdomen, subsequent encounter','Y','0000-00-00 00:00:00'),(137843,10,'S39.91XA ','Unspecified injury of abdomen, initial encounter','Y','0000-00-00 00:00:00'),(137842,10,'S39.848S ','Other specified injuries of external genitals, sequela','Y','0000-00-00 00:00:00'),(137841,10,'S39.848D ','Other specified injuries of external genitals, subsequent encounter','Y','0000-00-00 00:00:00'),(137840,10,'S39.848A ','Other specified injuries of external genitals, initial encounter','Y','0000-00-00 00:00:00'),(137839,10,'S39.840S ','Fracture of corpus cavernosum penis, sequela','Y','0000-00-00 00:00:00'),(137838,10,'S39.840D ','Fracture of corpus cavernosum penis, subsequent encounter','Y','0000-00-00 00:00:00'),(137837,10,'S39.840A ','Fracture of corpus cavernosum penis, initial encounter','Y','0000-00-00 00:00:00'),(137836,10,'S39.83XS ','Other specified injuries of pelvis, sequela','Y','0000-00-00 00:00:00'),(137835,10,'S39.83XD ','Other specified injuries of pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(137834,10,'S39.83XA ','Other specified injuries of pelvis, initial encounter','Y','0000-00-00 00:00:00'),(137833,10,'S39.82XS ','Other specified injuries of lower back, sequela','Y','0000-00-00 00:00:00'),(137832,10,'S39.82XD ','Other specified injuries of lower back, subsequent encounter','Y','0000-00-00 00:00:00'),(137831,10,'S39.82XA ','Other specified injuries of lower back, initial encounter','Y','0000-00-00 00:00:00'),(137830,10,'S39.81XS ','Other specified injuries of abdomen, sequela','Y','0000-00-00 00:00:00'),(137829,10,'S39.81XD ','Other specified injuries of abdomen, subsequent encounter','Y','0000-00-00 00:00:00'),(137828,10,'S39.81XA ','Other specified injuries of abdomen, initial encounter','Y','0000-00-00 00:00:00'),(137827,10,'S39.093S ','Other injury of muscle, fascia and tendon of pelvis, sequela','Y','0000-00-00 00:00:00'),(137826,10,'S39.093D ','Other injury of muscle, fascia and tendon of pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(137825,10,'S39.093A ','Other injury of muscle, fascia and tendon of pelvis, initial encounter','Y','0000-00-00 00:00:00'),(137824,10,'S39.092S ','Other injury of muscle, fascia and tendon of lower back, sequela','Y','0000-00-00 00:00:00'),(137823,10,'S39.092D ','Other injury of muscle, fascia and tendon of lower back, subsequent encounter','Y','0000-00-00 00:00:00'),(137822,10,'S39.092A ','Other injury of muscle, fascia and tendon of lower back, initial encounter','Y','0000-00-00 00:00:00'),(137821,10,'S39.091S ','Other injury of muscle, fascia and tendon of abdomen, sequela','Y','0000-00-00 00:00:00'),(137820,10,'S39.091D ','Other injury of muscle, fascia and tendon of abdomen, subsequent encounter','Y','0000-00-00 00:00:00'),(137819,10,'S39.091A ','Other injury of muscle, fascia and tendon of abdomen, initial encounter','Y','0000-00-00 00:00:00'),(137818,10,'S39.023S ','Laceration of muscle, fascia and tendon of pelvis, sequela','Y','0000-00-00 00:00:00'),(137817,10,'S39.023D ','Laceration of muscle, fascia and tendon of pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(137816,10,'S39.023A ','Laceration of muscle, fascia and tendon of pelvis, initial encounter','Y','0000-00-00 00:00:00'),(137815,10,'S39.022S ','Laceration of muscle, fascia and tendon of lower back, sequela','Y','0000-00-00 00:00:00'),(137814,10,'S39.022D ','Laceration of muscle, fascia and tendon of lower back, subsequent encounter','Y','0000-00-00 00:00:00'),(137813,10,'S39.022A ','Laceration of muscle, fascia and tendon of lower back, initial encounter','Y','0000-00-00 00:00:00'),(137812,10,'S39.021S ','Laceration of muscle, fascia and tendon of abdomen, sequela','Y','0000-00-00 00:00:00'),(137811,10,'S39.021D ','Laceration of muscle, fascia and tendon of abdomen, subsequent encounter','Y','0000-00-00 00:00:00'),(137810,10,'S39.021A ','Laceration of muscle, fascia and tendon of abdomen, initial encounter','Y','0000-00-00 00:00:00'),(137809,10,'S39.013S ','Strain of muscle, fascia and tendon of pelvis, sequela','Y','0000-00-00 00:00:00'),(137808,10,'S39.013D ','Strain of muscle, fascia and tendon of pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(137807,10,'S39.013A ','Strain of muscle, fascia and tendon of pelvis, initial encounter','Y','0000-00-00 00:00:00'),(137806,10,'S39.012S ','Strain of muscle, fascia and tendon of lower back, sequela','Y','0000-00-00 00:00:00'),(137805,10,'S39.012D ','Strain of muscle, fascia and tendon of lower back, subsequent encounter','Y','0000-00-00 00:00:00'),(137804,10,'S39.012A ','Strain of muscle, fascia and tendon of lower back, initial encounter','Y','0000-00-00 00:00:00'),(137803,10,'S39.011S ','Strain of muscle, fascia and tendon of abdomen, sequela','Y','0000-00-00 00:00:00'),(137802,10,'S39.011D ','Strain of muscle, fascia and tendon of abdomen, subsequent encounter','Y','0000-00-00 00:00:00'),(137801,10,'S39.011A ','Strain of muscle, fascia and tendon of abdomen, initial encounter','Y','0000-00-00 00:00:00'),(137800,10,'S39.003S ','Unspecified injury of muscle, fascia and tendon of pelvis, sequela','Y','0000-00-00 00:00:00'),(137799,10,'S39.003D ','Unspecified injury of muscle, fascia and tendon of pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(137798,10,'S39.003A ','Unspecified injury of muscle, fascia and tendon of pelvis, initial encounter','Y','0000-00-00 00:00:00'),(137797,10,'S39.002S ','Unspecified injury of muscle, fascia and tendon of lower back, sequela','Y','0000-00-00 00:00:00'),(137796,10,'S39.002D ','Unspecified injury of muscle, fascia and tendon of lower back, subsequent encounter','Y','0000-00-00 00:00:00'),(137795,10,'S39.002A ','Unspecified injury of muscle, fascia and tendon of lower back, initial encounter','Y','0000-00-00 00:00:00'),(137794,10,'S39.001S ','Unspecified injury of muscle, fascia and tendon of abdomen, sequela','Y','0000-00-00 00:00:00'),(137793,10,'S39.001D ','Unspecified injury of muscle, fascia and tendon of abdomen, subsequent encounter','Y','0000-00-00 00:00:00'),(137792,10,'S39.001A ','Unspecified injury of muscle, fascia and tendon of abdomen, initial encounter','Y','0000-00-00 00:00:00'),(137791,10,'S38.3XXS ','Transection (partial) of abdomen, sequela','Y','0000-00-00 00:00:00'),(137790,10,'S38.3XXD ','Transection (partial) of abdomen, subsequent encounter','Y','0000-00-00 00:00:00'),(137789,10,'S38.3XXA ','Transection (partial) of abdomen, initial encounter','Y','0000-00-00 00:00:00'),(137788,10,'S38.232S ','Partial traumatic amputation of scrotum and testis, sequela','Y','0000-00-00 00:00:00'),(137787,10,'S38.232D ','Partial traumatic amputation of scrotum and testis, subsequent encounter','Y','0000-00-00 00:00:00'),(137786,10,'S38.232A ','Partial traumatic amputation of scrotum and testis, initial encounter','Y','0000-00-00 00:00:00'),(137785,10,'S38.231S ','Complete traumatic amputation of scrotum and testis, sequela','Y','0000-00-00 00:00:00'),(137784,10,'S38.231D ','Complete traumatic amputation of scrotum and testis, subsequent encounter','Y','0000-00-00 00:00:00'),(137783,10,'S38.231A ','Complete traumatic amputation of scrotum and testis, initial encounter','Y','0000-00-00 00:00:00'),(137782,10,'S38.222S ','Partial traumatic amputation of penis, sequela','Y','0000-00-00 00:00:00'),(137781,10,'S38.222D ','Partial traumatic amputation of penis, subsequent encounter','Y','0000-00-00 00:00:00'),(137780,10,'S38.222A ','Partial traumatic amputation of penis, initial encounter','Y','0000-00-00 00:00:00'),(137779,10,'S38.221S ','Complete traumatic amputation of penis, sequela','Y','0000-00-00 00:00:00'),(137778,10,'S38.221D ','Complete traumatic amputation of penis, subsequent encounter','Y','0000-00-00 00:00:00'),(137777,10,'S38.221A ','Complete traumatic amputation of penis, initial encounter','Y','0000-00-00 00:00:00'),(137776,10,'S38.212S ','Partial traumatic amputation of female external genital organs, sequela','Y','0000-00-00 00:00:00'),(137775,10,'S38.212D ','Partial traumatic amputation of female external genital organs, subsequent encounter','Y','0000-00-00 00:00:00'),(137774,10,'S38.212A ','Partial traumatic amputation of female external genital organs, initial encounter','Y','0000-00-00 00:00:00'),(137773,10,'S38.211S ','Complete traumatic amputation of female external genital organs, sequela','Y','0000-00-00 00:00:00'),(137772,10,'S38.211D ','Complete traumatic amputation of female external genital organs, subsequent encounter','Y','0000-00-00 00:00:00'),(137771,10,'S38.211A ','Complete traumatic amputation of female external genital organs, initial encounter','Y','0000-00-00 00:00:00'),(137770,10,'S38.1XXS ','Crushing injury of abdomen, lower back, and pelvis, sequela','Y','0000-00-00 00:00:00'),(137769,10,'S38.1XXD ','Crushing injury of abdomen, lower back, and pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(137768,10,'S38.1XXA ','Crushing injury of abdomen, lower back, and pelvis, initial encounter','Y','0000-00-00 00:00:00'),(137767,10,'S38.03XS ','Crushing injury of vulva, sequela','Y','0000-00-00 00:00:00'),(137765,10,'S38.03XA ','Crushing injury of vulva, initial encounter','Y','0000-00-00 00:00:00'),(137766,10,'S38.03XD ','Crushing injury of vulva, subsequent encounter','Y','0000-00-00 00:00:00'),(137764,10,'S38.02XS ','Crushing injury of scrotum and testis, sequela','Y','0000-00-00 00:00:00'),(137763,10,'S38.02XD ','Crushing injury of scrotum and testis, subsequent encounter','Y','0000-00-00 00:00:00'),(137762,10,'S38.02XA ','Crushing injury of scrotum and testis, initial encounter','Y','0000-00-00 00:00:00'),(137761,10,'S38.01XS ','Crushing injury of penis, sequela','Y','0000-00-00 00:00:00'),(137759,10,'S38.01XA ','Crushing injury of penis, initial encounter','Y','0000-00-00 00:00:00'),(137760,10,'S38.01XD ','Crushing injury of penis, subsequent encounter','Y','0000-00-00 00:00:00'),(137758,10,'S38.002S ','Crushing injury of unspecified external genital organs, female, sequela','Y','0000-00-00 00:00:00'),(137757,10,'S38.002D ','Crushing injury of unspecified external genital organs, female, subsequent encounter','Y','0000-00-00 00:00:00'),(137756,10,'S38.002A ','Crushing injury of unspecified external genital organs, female, initial encounter','Y','0000-00-00 00:00:00'),(137755,10,'S38.001S ','Crushing injury of unspecified external genital organs, male, sequela','Y','0000-00-00 00:00:00'),(137754,10,'S38.001D ','Crushing injury of unspecified external genital organs, male, subsequent encounter','Y','0000-00-00 00:00:00'),(137753,10,'S38.001A ','Crushing injury of unspecified external genital organs, male, initial encounter','Y','0000-00-00 00:00:00'),(137752,10,'S37.99XS ','Other injury of unspecified urinary and pelvic organ, sequela','Y','0000-00-00 00:00:00'),(137751,10,'S37.99XD ','Other injury of unspecified urinary and pelvic organ, subsequent encounter','Y','0000-00-00 00:00:00'),(137750,10,'S37.99XA ','Other injury of unspecified urinary and pelvic organ, initial encounter','Y','0000-00-00 00:00:00'),(137749,10,'S37.93XS ','Laceration of unspecified urinary and pelvic organ, sequela','Y','0000-00-00 00:00:00'),(137748,10,'S37.93XD ','Laceration of unspecified urinary and pelvic organ, subsequent encounter','Y','0000-00-00 00:00:00'),(137747,10,'S37.93XA ','Laceration of unspecified urinary and pelvic organ, initial encounter','Y','0000-00-00 00:00:00'),(137746,10,'S37.92XS ','Contusion of unspecified urinary and pelvic organ, sequela','Y','0000-00-00 00:00:00'),(137745,10,'S37.92XD ','Contusion of unspecified urinary and pelvic organ, subsequent encounter','Y','0000-00-00 00:00:00'),(137744,10,'S37.92XA ','Contusion of unspecified urinary and pelvic organ, initial encounter','Y','0000-00-00 00:00:00'),(137743,10,'S37.90XS ','Unspecified injury of unspecified urinary and pelvic organ, sequela','Y','0000-00-00 00:00:00'),(137742,10,'S37.90XD ','Unspecified injury of unspecified urinary and pelvic organ, subsequent encounter','Y','0000-00-00 00:00:00'),(137741,10,'S37.90XA ','Unspecified injury of unspecified urinary and pelvic organ, initial encounter','Y','0000-00-00 00:00:00'),(137740,10,'S37.899S ','Unspecified injury of other urinary and pelvic organ, sequela','Y','0000-00-00 00:00:00'),(137739,10,'S37.899D ','Unspecified injury of other urinary and pelvic organ, subsequent encounter','Y','0000-00-00 00:00:00'),(137738,10,'S37.899A ','Unspecified injury of other urinary and pelvic organ, initial encounter','Y','0000-00-00 00:00:00'),(137737,10,'S37.898S ','Other injury of other urinary and pelvic organ, sequela','Y','0000-00-00 00:00:00'),(137736,10,'S37.898D ','Other injury of other urinary and pelvic organ, subsequent encounter','Y','0000-00-00 00:00:00'),(137735,10,'S37.898A ','Other injury of other urinary and pelvic organ, initial encounter','Y','0000-00-00 00:00:00'),(137734,10,'S37.893S ','Laceration of other urinary and pelvic organ, sequela','Y','0000-00-00 00:00:00'),(137733,10,'S37.893D ','Laceration of other urinary and pelvic organ, subsequent encounter','Y','0000-00-00 00:00:00'),(137732,10,'S37.893A ','Laceration of other urinary and pelvic organ, initial encounter','Y','0000-00-00 00:00:00'),(137731,10,'S37.892S ','Contusion of other urinary and pelvic organ, sequela','Y','0000-00-00 00:00:00'),(137730,10,'S37.892D ','Contusion of other urinary and pelvic organ, subsequent encounter','Y','0000-00-00 00:00:00'),(137729,10,'S37.892A ','Contusion of other urinary and pelvic organ, initial encounter','Y','0000-00-00 00:00:00'),(137728,10,'S37.829S ','Unspecified injury of prostate, sequela','Y','0000-00-00 00:00:00'),(137727,10,'S37.829D ','Unspecified injury of prostate, subsequent encounter','Y','0000-00-00 00:00:00'),(137726,10,'S37.829A ','Unspecified injury of prostate, initial encounter','Y','0000-00-00 00:00:00'),(137725,10,'S37.828S ','Other injury of prostate, sequela','Y','0000-00-00 00:00:00'),(137724,10,'S37.828D ','Other injury of prostate, subsequent encounter','Y','0000-00-00 00:00:00'),(137723,10,'S37.828A ','Other injury of prostate, initial encounter','Y','0000-00-00 00:00:00'),(137722,10,'S37.823S ','Laceration of prostate, sequela','Y','0000-00-00 00:00:00'),(137721,10,'S37.823D ','Laceration of prostate, subsequent encounter','Y','0000-00-00 00:00:00'),(137720,10,'S37.823A ','Laceration of prostate, initial encounter','Y','0000-00-00 00:00:00'),(137719,10,'S37.822S ','Contusion of prostate, sequela','Y','0000-00-00 00:00:00'),(137718,10,'S37.822D ','Contusion of prostate, subsequent encounter','Y','0000-00-00 00:00:00'),(137717,10,'S37.822A ','Contusion of prostate, initial encounter','Y','0000-00-00 00:00:00'),(137716,10,'S37.819S ','Unspecified injury of adrenal gland, sequela','Y','0000-00-00 00:00:00'),(137715,10,'S37.819D ','Unspecified injury of adrenal gland, subsequent encounter','Y','0000-00-00 00:00:00'),(137714,10,'S37.819A ','Unspecified injury of adrenal gland, initial encounter','Y','0000-00-00 00:00:00'),(137713,10,'S37.818S ','Other injury of adrenal gland, sequela','Y','0000-00-00 00:00:00'),(137712,10,'S37.818D ','Other injury of adrenal gland, subsequent encounter','Y','0000-00-00 00:00:00'),(137711,10,'S37.818A ','Other injury of adrenal gland, initial encounter','Y','0000-00-00 00:00:00'),(137710,10,'S37.813S ','Laceration of adrenal gland, sequela','Y','0000-00-00 00:00:00'),(137709,10,'S37.813D ','Laceration of adrenal gland, subsequent encounter','Y','0000-00-00 00:00:00'),(137708,10,'S37.813A ','Laceration of adrenal gland, initial encounter','Y','0000-00-00 00:00:00'),(137707,10,'S37.812S ','Contusion of adrenal gland, sequela','Y','0000-00-00 00:00:00'),(137706,10,'S37.812D ','Contusion of adrenal gland, subsequent encounter','Y','0000-00-00 00:00:00'),(137705,10,'S37.812A ','Contusion of adrenal gland, initial encounter','Y','0000-00-00 00:00:00'),(137704,10,'S37.69XS ','Other injury of uterus, sequela','Y','0000-00-00 00:00:00'),(137703,10,'S37.69XD ','Other injury of uterus, subsequent encounter','Y','0000-00-00 00:00:00'),(137702,10,'S37.69XA ','Other injury of uterus, initial encounter','Y','0000-00-00 00:00:00'),(137701,10,'S37.63XS ','Laceration of uterus, sequela','Y','0000-00-00 00:00:00'),(137700,10,'S37.63XD ','Laceration of uterus, subsequent encounter','Y','0000-00-00 00:00:00'),(137699,10,'S37.63XA ','Laceration of uterus, initial encounter','Y','0000-00-00 00:00:00'),(137698,10,'S37.62XS ','Contusion of uterus, sequela','Y','0000-00-00 00:00:00'),(137697,10,'S37.62XD ','Contusion of uterus, subsequent encounter','Y','0000-00-00 00:00:00'),(137696,10,'S37.62XA ','Contusion of uterus, initial encounter','Y','0000-00-00 00:00:00'),(137695,10,'S37.60XS ','Unspecified injury of uterus, sequela','Y','0000-00-00 00:00:00'),(137694,10,'S37.60XD ','Unspecified injury of uterus, subsequent encounter','Y','0000-00-00 00:00:00'),(137693,10,'S37.60XA ','Unspecified injury of uterus, initial encounter','Y','0000-00-00 00:00:00'),(137692,10,'S37.599S ','Other injury of fallopian tube, unspecified, sequela','Y','0000-00-00 00:00:00'),(137691,10,'S37.599D ','Other injury of fallopian tube, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(137690,10,'S37.599A ','Other injury of fallopian tube, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(137689,10,'S37.592S ','Other injury of fallopian tube, bilateral, sequela','Y','0000-00-00 00:00:00'),(137688,10,'S37.592D ','Other injury of fallopian tube, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(137687,10,'S37.592A ','Other injury of fallopian tube, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(137686,10,'S37.591S ','Other injury of fallopian tube, unilateral, sequela','Y','0000-00-00 00:00:00'),(137685,10,'S37.591D ','Other injury of fallopian tube, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(137684,10,'S37.591A ','Other injury of fallopian tube, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(137683,10,'S37.539S ','Laceration of fallopian tube, unspecified, sequela','Y','0000-00-00 00:00:00'),(137682,10,'S37.539D ','Laceration of fallopian tube, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(137681,10,'S37.539A ','Laceration of fallopian tube, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(137680,10,'S37.532S ','Laceration of fallopian tube, bilateral, sequela','Y','0000-00-00 00:00:00'),(137679,10,'S37.532D ','Laceration of fallopian tube, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(137678,10,'S37.532A ','Laceration of fallopian tube, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(137677,10,'S37.531S ','Laceration of fallopian tube, unilateral, sequela','Y','0000-00-00 00:00:00'),(137676,10,'S37.531D ','Laceration of fallopian tube, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(137675,10,'S37.531A ','Laceration of fallopian tube, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(137674,10,'S37.529S ','Contusion of fallopian tube, unspecified, sequela','Y','0000-00-00 00:00:00'),(137673,10,'S37.529D ','Contusion of fallopian tube, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(137672,10,'S37.529A ','Contusion of fallopian tube, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(137671,10,'S37.522S ','Contusion of fallopian tube, bilateral, sequela','Y','0000-00-00 00:00:00'),(137670,10,'S37.522D ','Contusion of fallopian tube, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(137669,10,'S37.522A ','Contusion of fallopian tube, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(137668,10,'S37.521S ','Contusion of fallopian tube, unilateral, sequela','Y','0000-00-00 00:00:00'),(137667,10,'S37.521D ','Contusion of fallopian tube, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(137666,10,'S37.521A ','Contusion of fallopian tube, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(137665,10,'S37.519S ','Primary blast injury of fallopian tube, unspecified, sequela','Y','0000-00-00 00:00:00'),(137664,10,'S37.519D ','Primary blast injury of fallopian tube, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(137663,10,'S37.519A ','Primary blast injury of fallopian tube, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(137662,10,'S37.512S ','Primary blast injury of fallopian tube, bilateral, sequela','Y','0000-00-00 00:00:00'),(137661,10,'S37.512D ','Primary blast injury of fallopian tube, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(137660,10,'S37.512A ','Primary blast injury of fallopian tube, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(137659,10,'S37.511S ','Primary blast injury of fallopian tube, unilateral, sequela','Y','0000-00-00 00:00:00'),(137658,10,'S37.511D ','Primary blast injury of fallopian tube, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(137657,10,'S37.511A ','Primary blast injury of fallopian tube, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(137656,10,'S37.509S ','Unspecified injury of fallopian tube, unspecified, sequela','Y','0000-00-00 00:00:00'),(137655,10,'S37.509D ','Unspecified injury of fallopian tube, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(137654,10,'S37.509A ','Unspecified injury of fallopian tube, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(137653,10,'S37.502S ','Unspecified injury of fallopian tube, bilateral, sequela','Y','0000-00-00 00:00:00'),(137652,10,'S37.502D ','Unspecified injury of fallopian tube, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(137651,10,'S37.502A ','Unspecified injury of fallopian tube, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(137650,10,'S37.501S ','Unspecified injury of fallopian tube, unilateral, sequela','Y','0000-00-00 00:00:00'),(137649,10,'S37.501D ','Unspecified injury of fallopian tube, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(137648,10,'S37.501A ','Unspecified injury of fallopian tube, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(137647,10,'S37.499S ','Other injury of ovary, unspecified, sequela','Y','0000-00-00 00:00:00'),(137646,10,'S37.499D ','Other injury of ovary, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(137645,10,'S37.499A ','Other injury of ovary, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(137644,10,'S37.492S ','Other injury of ovary, bilateral, sequela','Y','0000-00-00 00:00:00'),(137643,10,'S37.492D ','Other injury of ovary, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(137642,10,'S37.492A ','Other injury of ovary, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(137641,10,'S37.491S ','Other injury of ovary, unilateral, sequela','Y','0000-00-00 00:00:00'),(137640,10,'S37.491D ','Other injury of ovary, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(137639,10,'S37.491A ','Other injury of ovary, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(137638,10,'S37.439S ','Laceration of ovary, unspecified, sequela','Y','0000-00-00 00:00:00'),(137637,10,'S37.439D ','Laceration of ovary, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(137636,10,'S37.439A ','Laceration of ovary, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(137635,10,'S37.432S ','Laceration of ovary, bilateral, sequela','Y','0000-00-00 00:00:00'),(137634,10,'S37.432D ','Laceration of ovary, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(137633,10,'S37.432A ','Laceration of ovary, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(137632,10,'S37.431S ','Laceration of ovary, unilateral, sequela','Y','0000-00-00 00:00:00'),(137631,10,'S37.431D ','Laceration of ovary, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(137630,10,'S37.431A ','Laceration of ovary, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(137629,10,'S37.429S ','Contusion of ovary, unspecified, sequela','Y','0000-00-00 00:00:00'),(137628,10,'S37.429D ','Contusion of ovary, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(137627,10,'S37.429A ','Contusion of ovary, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(137626,10,'S37.422S ','Contusion of ovary, bilateral, sequela','Y','0000-00-00 00:00:00'),(137625,10,'S37.422D ','Contusion of ovary, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(137624,10,'S37.422A ','Contusion of ovary, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(137623,10,'S37.421S ','Contusion of ovary, unilateral, sequela','Y','0000-00-00 00:00:00'),(137622,10,'S37.421D ','Contusion of ovary, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(137621,10,'S37.421A ','Contusion of ovary, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(137620,10,'S37.409S ','Unspecified injury of ovary, unspecified, sequela','Y','0000-00-00 00:00:00'),(137619,10,'S37.409D ','Unspecified injury of ovary, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(137618,10,'S37.409A ','Unspecified injury of ovary, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(137617,10,'S37.402S ','Unspecified injury of ovary, bilateral, sequela','Y','0000-00-00 00:00:00'),(137616,10,'S37.402D ','Unspecified injury of ovary, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(137615,10,'S37.402A ','Unspecified injury of ovary, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(137614,10,'S37.401S ','Unspecified injury of ovary, unilateral, sequela','Y','0000-00-00 00:00:00'),(137613,10,'S37.401D ','Unspecified injury of ovary, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(137612,10,'S37.401A ','Unspecified injury of ovary, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(137611,10,'S37.39XS ','Other injury of urethra, sequela','Y','0000-00-00 00:00:00'),(137610,10,'S37.39XD ','Other injury of urethra, subsequent encounter','Y','0000-00-00 00:00:00'),(137609,10,'S37.39XA ','Other injury of urethra, initial encounter','Y','0000-00-00 00:00:00'),(137608,10,'S37.33XS ','Laceration of urethra, sequela','Y','0000-00-00 00:00:00'),(137607,10,'S37.33XD ','Laceration of urethra, subsequent encounter','Y','0000-00-00 00:00:00'),(137606,10,'S37.33XA ','Laceration of urethra, initial encounter','Y','0000-00-00 00:00:00'),(137605,10,'S37.32XS ','Contusion of urethra, sequela','Y','0000-00-00 00:00:00'),(137604,10,'S37.32XD ','Contusion of urethra, subsequent encounter','Y','0000-00-00 00:00:00'),(137603,10,'S37.32XA ','Contusion of urethra, initial encounter','Y','0000-00-00 00:00:00'),(137602,10,'S37.30XS ','Unspecified injury of urethra, sequela','Y','0000-00-00 00:00:00'),(137601,10,'S37.30XD ','Unspecified injury of urethra, subsequent encounter','Y','0000-00-00 00:00:00'),(137600,10,'S37.30XA ','Unspecified injury of urethra, initial encounter','Y','0000-00-00 00:00:00'),(137599,10,'S37.29XS ','Other injury of bladder, sequela','Y','0000-00-00 00:00:00'),(137598,10,'S37.29XD ','Other injury of bladder, subsequent encounter','Y','0000-00-00 00:00:00'),(137597,10,'S37.29XA ','Other injury of bladder, initial encounter','Y','0000-00-00 00:00:00'),(137596,10,'S37.23XS ','Laceration of bladder, sequela','Y','0000-00-00 00:00:00'),(137595,10,'S37.23XD ','Laceration of bladder, subsequent encounter','Y','0000-00-00 00:00:00'),(137594,10,'S37.23XA ','Laceration of bladder, initial encounter','Y','0000-00-00 00:00:00'),(137593,10,'S37.22XS ','Contusion of bladder, sequela','Y','0000-00-00 00:00:00'),(137592,10,'S37.22XD ','Contusion of bladder, subsequent encounter','Y','0000-00-00 00:00:00'),(137591,10,'S37.22XA ','Contusion of bladder, initial encounter','Y','0000-00-00 00:00:00'),(137590,10,'S37.20XS ','Unspecified injury of bladder, sequela','Y','0000-00-00 00:00:00'),(137589,10,'S37.20XD ','Unspecified injury of bladder, subsequent encounter','Y','0000-00-00 00:00:00'),(137588,10,'S37.20XA ','Unspecified injury of bladder, initial encounter','Y','0000-00-00 00:00:00'),(137587,10,'S37.19XS ','Other injury of ureter, sequela','Y','0000-00-00 00:00:00'),(137586,10,'S37.19XD ','Other injury of ureter, subsequent encounter','Y','0000-00-00 00:00:00'),(137585,10,'S37.19XA ','Other injury of ureter, initial encounter','Y','0000-00-00 00:00:00'),(137584,10,'S37.13XS ','Laceration of ureter, sequela','Y','0000-00-00 00:00:00'),(137583,10,'S37.13XD ','Laceration of ureter, subsequent encounter','Y','0000-00-00 00:00:00'),(137582,10,'S37.13XA ','Laceration of ureter, initial encounter','Y','0000-00-00 00:00:00'),(137581,10,'S37.12XS ','Contusion of ureter, sequela','Y','0000-00-00 00:00:00'),(137580,10,'S37.12XD ','Contusion of ureter, subsequent encounter','Y','0000-00-00 00:00:00'),(137578,10,'S37.10XS ','Unspecified injury of ureter, sequela','Y','0000-00-00 00:00:00'),(137579,10,'S37.12XA ','Contusion of ureter, initial encounter','Y','0000-00-00 00:00:00'),(137577,10,'S37.10XD ','Unspecified injury of ureter, subsequent encounter','Y','0000-00-00 00:00:00'),(137576,10,'S37.10XA ','Unspecified injury of ureter, initial encounter','Y','0000-00-00 00:00:00'),(137575,10,'S37.099S ','Other injury of unspecified kidney, sequela','Y','0000-00-00 00:00:00'),(137574,10,'S37.099D ','Other injury of unspecified kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137573,10,'S37.099A ','Other injury of unspecified kidney, initial encounter','Y','0000-00-00 00:00:00'),(137572,10,'S37.092S ','Other injury of left kidney, sequela','Y','0000-00-00 00:00:00'),(137571,10,'S37.092D ','Other injury of left kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137570,10,'S37.092A ','Other injury of left kidney, initial encounter','Y','0000-00-00 00:00:00'),(137569,10,'S37.091S ','Other injury of right kidney, sequela','Y','0000-00-00 00:00:00'),(137568,10,'S37.091D ','Other injury of right kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137567,10,'S37.091A ','Other injury of right kidney, initial encounter','Y','0000-00-00 00:00:00'),(137566,10,'S37.069S ','Major laceration of unspecified kidney, sequela','Y','0000-00-00 00:00:00'),(137565,10,'S37.069D ','Major laceration of unspecified kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137563,10,'S37.062S ','Major laceration of left kidney, sequela','Y','0000-00-00 00:00:00'),(137564,10,'S37.069A ','Major laceration of unspecified kidney, initial encounter','Y','0000-00-00 00:00:00'),(137562,10,'S37.062D ','Major laceration of left kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137561,10,'S37.062A ','Major laceration of left kidney, initial encounter','Y','0000-00-00 00:00:00'),(137560,10,'S37.061S ','Major laceration of right kidney, sequela','Y','0000-00-00 00:00:00'),(137558,10,'S37.061A ','Major laceration of right kidney, initial encounter','Y','0000-00-00 00:00:00'),(137559,10,'S37.061D ','Major laceration of right kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137557,10,'S37.059S ','Moderate laceration of unspecified kidney, sequela','Y','0000-00-00 00:00:00'),(137556,10,'S37.059D ','Moderate laceration of unspecified kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137555,10,'S37.059A ','Moderate laceration of unspecified kidney, initial encounter','Y','0000-00-00 00:00:00'),(137554,10,'S37.052S ','Moderate laceration of left kidney, sequela','Y','0000-00-00 00:00:00'),(137553,10,'S37.052D ','Moderate laceration of left kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137552,10,'S37.052A ','Moderate laceration of left kidney, initial encounter','Y','0000-00-00 00:00:00'),(137551,10,'S37.051S ','Moderate laceration of right kidney, sequela','Y','0000-00-00 00:00:00'),(137550,10,'S37.051D ','Moderate laceration of right kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137549,10,'S37.051A ','Moderate laceration of right kidney, initial encounter','Y','0000-00-00 00:00:00'),(137548,10,'S37.049S ','Minor laceration of unspecified kidney, sequela','Y','0000-00-00 00:00:00'),(137547,10,'S37.049D ','Minor laceration of unspecified kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137545,10,'S37.042S ','Minor laceration of left kidney, sequela','Y','0000-00-00 00:00:00'),(137546,10,'S37.049A ','Minor laceration of unspecified kidney, initial encounter','Y','0000-00-00 00:00:00'),(137544,10,'S37.042D ','Minor laceration of left kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137543,10,'S37.042A ','Minor laceration of left kidney, initial encounter','Y','0000-00-00 00:00:00'),(137542,10,'S37.041S ','Minor laceration of right kidney, sequela','Y','0000-00-00 00:00:00'),(137541,10,'S37.041D ','Minor laceration of right kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137539,10,'S37.039S ','Laceration of unspecified kidney, unspecified degree, sequela','Y','0000-00-00 00:00:00'),(137540,10,'S37.041A ','Minor laceration of right kidney, initial encounter','Y','0000-00-00 00:00:00'),(137538,10,'S37.039D ','Laceration of unspecified kidney, unspecified degree, subsequent encounter','Y','0000-00-00 00:00:00'),(137537,10,'S37.039A ','Laceration of unspecified kidney, unspecified degree, initial encounter','Y','0000-00-00 00:00:00'),(137536,10,'S37.032S ','Laceration of left kidney, unspecified degree, sequela','Y','0000-00-00 00:00:00'),(137535,10,'S37.032D ','Laceration of left kidney, unspecified degree, subsequent encounter','Y','0000-00-00 00:00:00'),(137534,10,'S37.032A ','Laceration of left kidney, unspecified degree, initial encounter','Y','0000-00-00 00:00:00'),(137533,10,'S37.031S ','Laceration of right kidney, unspecified degree, sequela','Y','0000-00-00 00:00:00'),(137532,10,'S37.031D ','Laceration of right kidney, unspecified degree, subsequent encounter','Y','0000-00-00 00:00:00'),(137531,10,'S37.031A ','Laceration of right kidney, unspecified degree, initial encounter','Y','0000-00-00 00:00:00'),(137529,10,'S37.029D ','Major contusion of unspecified kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137530,10,'S37.029S ','Major contusion of unspecified kidney, sequela','Y','0000-00-00 00:00:00'),(137528,10,'S37.029A ','Major contusion of unspecified kidney, initial encounter','Y','0000-00-00 00:00:00'),(137527,10,'S37.022S ','Major contusion of left kidney, sequela','Y','0000-00-00 00:00:00'),(137525,10,'S37.022A ','Major contusion of left kidney, initial encounter','Y','0000-00-00 00:00:00'),(137526,10,'S37.022D ','Major contusion of left kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137524,10,'S37.021S ','Major contusion of right kidney, sequela','Y','0000-00-00 00:00:00'),(137523,10,'S37.021D ','Major contusion of right kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137522,10,'S37.021A ','Major contusion of right kidney, initial encounter','Y','0000-00-00 00:00:00'),(137521,10,'S37.019S ','Minor contusion of unspecified kidney, sequela','Y','0000-00-00 00:00:00'),(137520,10,'S37.019D ','Minor contusion of unspecified kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137518,10,'S37.012S ','Minor contusion of left kidney, sequela','Y','0000-00-00 00:00:00'),(137519,10,'S37.019A ','Minor contusion of unspecified kidney, initial encounter','Y','0000-00-00 00:00:00'),(137517,10,'S37.012D ','Minor contusion of left kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137516,10,'S37.012A ','Minor contusion of left kidney, initial encounter','Y','0000-00-00 00:00:00'),(137515,10,'S37.011S ','Minor contusion of right kidney, sequela','Y','0000-00-00 00:00:00'),(137513,10,'S37.011A ','Minor contusion of right kidney, initial encounter','Y','0000-00-00 00:00:00'),(137514,10,'S37.011D ','Minor contusion of right kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137512,10,'S37.009S ','Unspecified injury of unspecified kidney, sequela','Y','0000-00-00 00:00:00'),(137511,10,'S37.009D ','Unspecified injury of unspecified kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137510,10,'S37.009A ','Unspecified injury of unspecified kidney, initial encounter','Y','0000-00-00 00:00:00'),(137509,10,'S37.002S ','Unspecified injury of left kidney, sequela','Y','0000-00-00 00:00:00'),(137507,10,'S37.002A ','Unspecified injury of left kidney, initial encounter','Y','0000-00-00 00:00:00'),(137508,10,'S37.002D ','Unspecified injury of left kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137506,10,'S37.001S ','Unspecified injury of right kidney, sequela','Y','0000-00-00 00:00:00'),(137505,10,'S37.001D ','Unspecified injury of right kidney, subsequent encounter','Y','0000-00-00 00:00:00'),(137504,10,'S37.001A ','Unspecified injury of right kidney, initial encounter','Y','0000-00-00 00:00:00'),(137502,10,'S36.99XD ','Other injury of unspecified intra-abdominal organ, subsequent encounter','Y','0000-00-00 00:00:00'),(137503,10,'S36.99XS ','Other injury of unspecified intra-abdominal organ, sequela','Y','0000-00-00 00:00:00'),(137501,10,'S36.99XA ','Other injury of unspecified intra-abdominal organ, initial encounter','Y','0000-00-00 00:00:00'),(137500,10,'S36.93XS ','Laceration of unspecified intra-abdominal organ, sequela','Y','0000-00-00 00:00:00'),(137499,10,'S36.93XD ','Laceration of unspecified intra-abdominal organ, subsequent encounter','Y','0000-00-00 00:00:00'),(137498,10,'S36.93XA ','Laceration of unspecified intra-abdominal organ, initial encounter','Y','0000-00-00 00:00:00'),(137496,10,'S36.92XD ','Contusion of unspecified intra-abdominal organ, subsequent encounter','Y','0000-00-00 00:00:00'),(137497,10,'S36.92XS ','Contusion of unspecified intra-abdominal organ, sequela','Y','0000-00-00 00:00:00'),(137495,10,'S36.92XA ','Contusion of unspecified intra-abdominal organ, initial encounter','Y','0000-00-00 00:00:00'),(137494,10,'S36.90XS ','Unspecified injury of unspecified intra-abdominal organ, sequela','Y','0000-00-00 00:00:00'),(137493,10,'S36.90XD ','Unspecified injury of unspecified intra-abdominal organ, subsequent encounter','Y','0000-00-00 00:00:00'),(137492,10,'S36.90XA ','Unspecified injury of unspecified intra-abdominal organ, initial encounter','Y','0000-00-00 00:00:00'),(137491,10,'S36.899S ','Unspecified injury of other intra-abdominal organs, sequela','Y','0000-00-00 00:00:00'),(137490,10,'S36.899D ','Unspecified injury of other intra-abdominal organs, subsequent encounter','Y','0000-00-00 00:00:00'),(137489,10,'S36.899A ','Unspecified injury of other intra-abdominal organs, initial encounter','Y','0000-00-00 00:00:00'),(137488,10,'S36.898S ','Other injury of other intra-abdominal organs, sequela','Y','0000-00-00 00:00:00'),(137486,10,'S36.898A ','Other injury of other intra-abdominal organs, initial encounter','Y','0000-00-00 00:00:00'),(137487,10,'S36.898D ','Other injury of other intra-abdominal organs, subsequent encounter','Y','0000-00-00 00:00:00'),(137485,10,'S36.893S ','Laceration of other intra-abdominal organs, sequela','Y','0000-00-00 00:00:00'),(137484,10,'S36.893D ','Laceration of other intra-abdominal organs, subsequent encounter','Y','0000-00-00 00:00:00'),(137483,10,'S36.893A ','Laceration of other intra-abdominal organs, initial encounter','Y','0000-00-00 00:00:00'),(137481,10,'S36.892D ','Contusion of other intra-abdominal organs, subsequent encounter','Y','0000-00-00 00:00:00'),(137482,10,'S36.892S ','Contusion of other intra-abdominal organs, sequela','Y','0000-00-00 00:00:00'),(137480,10,'S36.892A ','Contusion of other intra-abdominal organs, initial encounter','Y','0000-00-00 00:00:00'),(137479,10,'S36.81XS ','Injury of peritoneum, sequela','Y','0000-00-00 00:00:00'),(137477,10,'S36.81XA ','Injury of peritoneum, initial encounter','Y','0000-00-00 00:00:00'),(137478,10,'S36.81XD ','Injury of peritoneum, subsequent encounter','Y','0000-00-00 00:00:00'),(137476,10,'S36.69XS ','Other injury of rectum, sequela','Y','0000-00-00 00:00:00'),(137474,10,'S36.69XA ','Other injury of rectum, initial encounter','Y','0000-00-00 00:00:00'),(137475,10,'S36.69XD ','Other injury of rectum, subsequent encounter','Y','0000-00-00 00:00:00'),(137473,10,'S36.63XS ','Laceration of rectum, sequela','Y','0000-00-00 00:00:00'),(137471,10,'S36.63XA ','Laceration of rectum, initial encounter','Y','0000-00-00 00:00:00'),(137472,10,'S36.63XD ','Laceration of rectum, subsequent encounter','Y','0000-00-00 00:00:00'),(137469,10,'S36.62XD ','Contusion of rectum, subsequent encounter','Y','0000-00-00 00:00:00'),(137470,10,'S36.62XS ','Contusion of rectum, sequela','Y','0000-00-00 00:00:00'),(137467,10,'S36.61XS ','Primary blast injury of rectum, sequela','Y','0000-00-00 00:00:00'),(137468,10,'S36.62XA ','Contusion of rectum, initial encounter','Y','0000-00-00 00:00:00'),(137466,10,'S36.61XD ','Primary blast injury of rectum, subsequent encounter','Y','0000-00-00 00:00:00'),(137464,10,'S36.60XS ','Unspecified injury of rectum, sequela','Y','0000-00-00 00:00:00'),(137465,10,'S36.61XA ','Primary blast injury of rectum, initial encounter','Y','0000-00-00 00:00:00'),(137463,10,'S36.60XD ','Unspecified injury of rectum, subsequent encounter','Y','0000-00-00 00:00:00'),(137461,10,'S36.599S ','Other injury of unspecified part of colon, sequela','Y','0000-00-00 00:00:00'),(137462,10,'S36.60XA ','Unspecified injury of rectum, initial encounter','Y','0000-00-00 00:00:00'),(137460,10,'S36.599D ','Other injury of unspecified part of colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137458,10,'S36.598S ','Other injury of other part of colon, sequela','Y','0000-00-00 00:00:00'),(137459,10,'S36.599A ','Other injury of unspecified part of colon, initial encounter','Y','0000-00-00 00:00:00'),(137457,10,'S36.598D ','Other injury of other part of colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137455,10,'S36.593S ','Other injury of sigmoid colon, sequela','Y','0000-00-00 00:00:00'),(137456,10,'S36.598A ','Other injury of other part of colon, initial encounter','Y','0000-00-00 00:00:00'),(137454,10,'S36.593D ','Other injury of sigmoid colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137452,10,'S36.592S ','Other injury of descending [left] colon, sequela','Y','0000-00-00 00:00:00'),(137453,10,'S36.593A ','Other injury of sigmoid colon, initial encounter','Y','0000-00-00 00:00:00'),(137451,10,'S36.592D ','Other injury of descending [left] colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137450,10,'S36.592A ','Other injury of descending [left] colon, initial encounter','Y','0000-00-00 00:00:00'),(137448,10,'S36.591D ','Other injury of transverse colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137449,10,'S36.591S ','Other injury of transverse colon, sequela','Y','0000-00-00 00:00:00'),(137447,10,'S36.591A ','Other injury of transverse colon, initial encounter','Y','0000-00-00 00:00:00'),(137445,10,'S36.590D ','Other injury of ascending [right] colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137446,10,'S36.590S ','Other injury of ascending [right] colon, sequela','Y','0000-00-00 00:00:00'),(137444,10,'S36.590A ','Other injury of ascending [right] colon, initial encounter','Y','0000-00-00 00:00:00'),(137443,10,'S36.539S ','Laceration of unspecified part of colon, sequela','Y','0000-00-00 00:00:00'),(137441,10,'S36.539A ','Laceration of unspecified part of colon, initial encounter','Y','0000-00-00 00:00:00'),(137442,10,'S36.539D ','Laceration of unspecified part of colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137440,10,'S36.538S ','Laceration of other part of colon, sequela','Y','0000-00-00 00:00:00'),(137438,10,'S36.538A ','Laceration of other part of colon, initial encounter','Y','0000-00-00 00:00:00'),(137439,10,'S36.538D ','Laceration of other part of colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137437,10,'S36.533S ','Laceration of sigmoid colon, sequela','Y','0000-00-00 00:00:00'),(137435,10,'S36.533A ','Laceration of sigmoid colon, initial encounter','Y','0000-00-00 00:00:00'),(137436,10,'S36.533D ','Laceration of sigmoid colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137434,10,'S36.532S ','Laceration of descending [left] colon, sequela','Y','0000-00-00 00:00:00'),(137432,10,'S36.532A ','Laceration of descending [left] colon, initial encounter','Y','0000-00-00 00:00:00'),(137433,10,'S36.532D ','Laceration of descending [left] colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137431,10,'S36.531S ','Laceration of transverse colon, sequela','Y','0000-00-00 00:00:00'),(137429,10,'S36.531A ','Laceration of transverse colon, initial encounter','Y','0000-00-00 00:00:00'),(137430,10,'S36.531D ','Laceration of transverse colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137428,10,'S36.530S ','Laceration of ascending [right] colon, sequela','Y','0000-00-00 00:00:00'),(137426,10,'S36.530A ','Laceration of ascending [right] colon, initial encounter','Y','0000-00-00 00:00:00'),(137427,10,'S36.530D ','Laceration of ascending [right] colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137425,10,'S36.529S ','Contusion of unspecified part of colon, sequela','Y','0000-00-00 00:00:00'),(137424,10,'S36.529D ','Contusion of unspecified part of colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137422,10,'S36.528S ','Contusion of other part of colon, sequela','Y','0000-00-00 00:00:00'),(137423,10,'S36.529A ','Contusion of unspecified part of colon, initial encounter','Y','0000-00-00 00:00:00'),(137421,10,'S36.528D ','Contusion of other part of colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137419,10,'S36.523S ','Contusion of sigmoid colon, sequela','Y','0000-00-00 00:00:00'),(137420,10,'S36.528A ','Contusion of other part of colon, initial encounter','Y','0000-00-00 00:00:00'),(137418,10,'S36.523D ','Contusion of sigmoid colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137416,10,'S36.522S ','Contusion of descending [left] colon, sequela','Y','0000-00-00 00:00:00'),(137417,10,'S36.523A ','Contusion of sigmoid colon, initial encounter','Y','0000-00-00 00:00:00'),(137415,10,'S36.522D ','Contusion of descending [left] colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137414,10,'S36.522A ','Contusion of descending [left] colon, initial encounter','Y','0000-00-00 00:00:00'),(137412,10,'S36.521D ','Contusion of transverse colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137413,10,'S36.521S ','Contusion of transverse colon, sequela','Y','0000-00-00 00:00:00'),(137411,10,'S36.521A ','Contusion of transverse colon, initial encounter','Y','0000-00-00 00:00:00'),(137410,10,'S36.520S ','Contusion of ascending [right] colon, sequela','Y','0000-00-00 00:00:00'),(137409,10,'S36.520D ','Contusion of ascending [right] colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137407,10,'S36.519S ','Primary blast injury of unspecified part of colon, sequela','Y','0000-00-00 00:00:00'),(137408,10,'S36.520A ','Contusion of ascending [right] colon, initial encounter','Y','0000-00-00 00:00:00'),(137406,10,'S36.519D ','Primary blast injury of unspecified part of colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137405,10,'S36.519A ','Primary blast injury of unspecified part of colon, initial encounter','Y','0000-00-00 00:00:00'),(137404,10,'S36.518S ','Primary blast injury of other part of colon, sequela','Y','0000-00-00 00:00:00'),(137403,10,'S36.518D ','Primary blast injury of other part of colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137402,10,'S36.518A ','Primary blast injury of other part of colon, initial encounter','Y','0000-00-00 00:00:00'),(137400,10,'S36.513D ','Primary blast injury of sigmoid colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137401,10,'S36.513S ','Primary blast injury of sigmoid colon, sequela','Y','0000-00-00 00:00:00'),(137399,10,'S36.513A ','Primary blast injury of sigmoid colon, initial encounter','Y','0000-00-00 00:00:00'),(137398,10,'S36.512S ','Primary blast injury of descending [left] colon, sequela','Y','0000-00-00 00:00:00'),(137397,10,'S36.512D ','Primary blast injury of descending [left] colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137396,10,'S36.512A ','Primary blast injury of descending [left] colon, initial encounter','Y','0000-00-00 00:00:00'),(137395,10,'S36.511S ','Primary blast injury of transverse colon, sequela','Y','0000-00-00 00:00:00'),(137393,10,'S36.511A ','Primary blast injury of transverse colon, initial encounter','Y','0000-00-00 00:00:00'),(137394,10,'S36.511D ','Primary blast injury of transverse colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137392,10,'S36.510S ','Primary blast injury of ascending [right] colon, sequela','Y','0000-00-00 00:00:00'),(137391,10,'S36.510D ','Primary blast injury of ascending [right] colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137390,10,'S36.510A ','Primary blast injury of ascending [right] colon, initial encounter','Y','0000-00-00 00:00:00'),(137389,10,'S36.509S ','Unspecified injury of unspecified part of colon, sequela','Y','0000-00-00 00:00:00'),(137388,10,'S36.509D ','Unspecified injury of unspecified part of colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137386,10,'S36.508S ','Unspecified injury of other part of colon, sequela','Y','0000-00-00 00:00:00'),(137387,10,'S36.509A ','Unspecified injury of unspecified part of colon, initial encounter','Y','0000-00-00 00:00:00'),(137385,10,'S36.508D ','Unspecified injury of other part of colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137384,10,'S36.508A ','Unspecified injury of other part of colon, initial encounter','Y','0000-00-00 00:00:00'),(137383,10,'S36.503S ','Unspecified injury of sigmoid colon, sequela','Y','0000-00-00 00:00:00'),(137382,10,'S36.503D ','Unspecified injury of sigmoid colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137380,10,'S36.502S ','Unspecified injury of descending [left] colon, sequela','Y','0000-00-00 00:00:00'),(137381,10,'S36.503A ','Unspecified injury of sigmoid colon, initial encounter','Y','0000-00-00 00:00:00'),(137379,10,'S36.502D ','Unspecified injury of descending [left] colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137378,10,'S36.502A ','Unspecified injury of descending [left] colon, initial encounter','Y','0000-00-00 00:00:00'),(137377,10,'S36.501S ','Unspecified injury of transverse colon, sequela','Y','0000-00-00 00:00:00'),(137375,10,'S36.501A ','Unspecified injury of transverse colon, initial encounter','Y','0000-00-00 00:00:00'),(137376,10,'S36.501D ','Unspecified injury of transverse colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137374,10,'S36.500S ','Unspecified injury of ascending [right] colon, sequela','Y','0000-00-00 00:00:00'),(137373,10,'S36.500D ','Unspecified injury of ascending [right] colon, subsequent encounter','Y','0000-00-00 00:00:00'),(137372,10,'S36.500A ','Unspecified injury of ascending [right] colon, initial encounter','Y','0000-00-00 00:00:00'),(137371,10,'S36.499S ','Other injury of unspecified part of small intestine, sequela','Y','0000-00-00 00:00:00'),(137370,10,'S36.499D ','Other injury of unspecified part of small intestine, subsequent encounter','Y','0000-00-00 00:00:00'),(137369,10,'S36.499A ','Other injury of unspecified part of small intestine, initial encounter','Y','0000-00-00 00:00:00'),(137368,10,'S36.498S ','Other injury of other part of small intestine, sequela','Y','0000-00-00 00:00:00'),(137366,10,'S36.498A ','Other injury of other part of small intestine, initial encounter','Y','0000-00-00 00:00:00'),(137367,10,'S36.498D ','Other injury of other part of small intestine, subsequent encounter','Y','0000-00-00 00:00:00'),(137365,10,'S36.490S ','Other injury of duodenum, sequela','Y','0000-00-00 00:00:00'),(137363,10,'S36.490A ','Other injury of duodenum, initial encounter','Y','0000-00-00 00:00:00'),(137364,10,'S36.490D ','Other injury of duodenum, subsequent encounter','Y','0000-00-00 00:00:00'),(137362,10,'S36.439S ','Laceration of unspecified part of small intestine, sequela','Y','0000-00-00 00:00:00'),(137361,10,'S36.439D ','Laceration of unspecified part of small intestine, subsequent encounter','Y','0000-00-00 00:00:00'),(137360,10,'S36.439A ','Laceration of unspecified part of small intestine, initial encounter','Y','0000-00-00 00:00:00'),(137359,10,'S36.438S ','Laceration of other part of small intestine, sequela','Y','0000-00-00 00:00:00'),(137357,10,'S36.438A ','Laceration of other part of small intestine, initial encounter','Y','0000-00-00 00:00:00'),(137358,10,'S36.438D ','Laceration of other part of small intestine, subsequent encounter','Y','0000-00-00 00:00:00'),(137356,10,'S36.430S ','Laceration of duodenum, sequela','Y','0000-00-00 00:00:00'),(137354,10,'S36.430A ','Laceration of duodenum, initial encounter','Y','0000-00-00 00:00:00'),(137355,10,'S36.430D ','Laceration of duodenum, subsequent encounter','Y','0000-00-00 00:00:00'),(137353,10,'S36.429S ','Contusion of unspecified part of small intestine, sequela','Y','0000-00-00 00:00:00'),(137352,10,'S36.429D ','Contusion of unspecified part of small intestine, subsequent encounter','Y','0000-00-00 00:00:00'),(137351,10,'S36.429A ','Contusion of unspecified part of small intestine, initial encounter','Y','0000-00-00 00:00:00'),(137349,10,'S36.428D ','Contusion of other part of small intestine, subsequent encounter','Y','0000-00-00 00:00:00'),(137350,10,'S36.428S ','Contusion of other part of small intestine, sequela','Y','0000-00-00 00:00:00'),(137348,10,'S36.428A ','Contusion of other part of small intestine, initial encounter','Y','0000-00-00 00:00:00'),(137347,10,'S36.420S ','Contusion of duodenum, sequela','Y','0000-00-00 00:00:00'),(137345,10,'S36.420A ','Contusion of duodenum, initial encounter','Y','0000-00-00 00:00:00'),(137346,10,'S36.420D ','Contusion of duodenum, subsequent encounter','Y','0000-00-00 00:00:00'),(137344,10,'S36.419S ','Primary blast injury of unspecified part of small intestine, sequela','Y','0000-00-00 00:00:00'),(137343,10,'S36.419D ','Primary blast injury of unspecified part of small intestine, subsequent encounter','Y','0000-00-00 00:00:00'),(137342,10,'S36.419A ','Primary blast injury of unspecified part of small intestine, initial encounter','Y','0000-00-00 00:00:00'),(137341,10,'S36.418S ','Primary blast injury of other part of small intestine, sequela','Y','0000-00-00 00:00:00'),(137340,10,'S36.418D ','Primary blast injury of other part of small intestine, subsequent encounter','Y','0000-00-00 00:00:00'),(137339,10,'S36.418A ','Primary blast injury of other part of small intestine, initial encounter','Y','0000-00-00 00:00:00'),(137338,10,'S36.410S ','Primary blast injury of duodenum, sequela','Y','0000-00-00 00:00:00'),(137336,10,'S36.410A ','Primary blast injury of duodenum, initial encounter','Y','0000-00-00 00:00:00'),(137337,10,'S36.410D ','Primary blast injury of duodenum, subsequent encounter','Y','0000-00-00 00:00:00'),(137335,10,'S36.409S ','Unspecified injury of unspecified part of small intestine, sequela','Y','0000-00-00 00:00:00'),(137334,10,'S36.409D ','Unspecified injury of unspecified part of small intestine, subsequent encounter','Y','0000-00-00 00:00:00'),(137333,10,'S36.409A ','Unspecified injury of unspecified part of small intestine, initial encounter','Y','0000-00-00 00:00:00'),(137332,10,'S36.408S ','Unspecified injury of other part of small intestine, sequela','Y','0000-00-00 00:00:00'),(137331,10,'S36.408D ','Unspecified injury of other part of small intestine, subsequent encounter','Y','0000-00-00 00:00:00'),(137329,10,'S36.400S ','Unspecified injury of duodenum, sequela','Y','0000-00-00 00:00:00'),(137330,10,'S36.408A ','Unspecified injury of other part of small intestine, initial encounter','Y','0000-00-00 00:00:00'),(137328,10,'S36.400D ','Unspecified injury of duodenum, subsequent encounter','Y','0000-00-00 00:00:00'),(137326,10,'S36.39XS ','Other injury of stomach, sequela','Y','0000-00-00 00:00:00'),(137327,10,'S36.400A ','Unspecified injury of duodenum, initial encounter','Y','0000-00-00 00:00:00'),(137325,10,'S36.39XD ','Other injury of stomach, subsequent encounter','Y','0000-00-00 00:00:00'),(137323,10,'S36.33XS ','Laceration of stomach, sequela','Y','0000-00-00 00:00:00'),(137324,10,'S36.39XA ','Other injury of stomach, initial encounter','Y','0000-00-00 00:00:00'),(137322,10,'S36.33XD ','Laceration of stomach, subsequent encounter','Y','0000-00-00 00:00:00'),(137320,10,'S36.32XS ','Contusion of stomach, sequela','Y','0000-00-00 00:00:00'),(137321,10,'S36.33XA ','Laceration of stomach, initial encounter','Y','0000-00-00 00:00:00'),(137319,10,'S36.32XD ','Contusion of stomach, subsequent encounter','Y','0000-00-00 00:00:00'),(137317,10,'S36.30XS ','Unspecified injury of stomach, sequela','Y','0000-00-00 00:00:00'),(137318,10,'S36.32XA ','Contusion of stomach, initial encounter','Y','0000-00-00 00:00:00'),(137316,10,'S36.30XD ','Unspecified injury of stomach, subsequent encounter','Y','0000-00-00 00:00:00'),(137314,10,'S36.299S ','Other injury of unspecified part of pancreas, sequela','Y','0000-00-00 00:00:00'),(137315,10,'S36.30XA ','Unspecified injury of stomach, initial encounter','Y','0000-00-00 00:00:00'),(137313,10,'S36.299D ','Other injury of unspecified part of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137312,10,'S36.299A ','Other injury of unspecified part of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137311,10,'S36.292S ','Other injury of tail of pancreas, sequela','Y','0000-00-00 00:00:00'),(137309,10,'S36.292A ','Other injury of tail of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137310,10,'S36.292D ','Other injury of tail of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137308,10,'S36.291S ','Other injury of body of pancreas, sequela','Y','0000-00-00 00:00:00'),(137307,10,'S36.291D ','Other injury of body of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137305,10,'S36.290S ','Other injury of head of pancreas, sequela','Y','0000-00-00 00:00:00'),(137306,10,'S36.291A ','Other injury of body of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137304,10,'S36.290D ','Other injury of head of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137303,10,'S36.290A ','Other injury of head of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137302,10,'S36.269S ','Major laceration of unspecified part of pancreas, sequela','Y','0000-00-00 00:00:00'),(137300,10,'S36.269A ','Major laceration of unspecified part of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137301,10,'S36.269D ','Major laceration of unspecified part of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137299,10,'S36.262S ','Major laceration of tail of pancreas, sequela','Y','0000-00-00 00:00:00'),(137298,10,'S36.262D ','Major laceration of tail of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137296,10,'S36.261S ','Major laceration of body of pancreas, sequela','Y','0000-00-00 00:00:00'),(137297,10,'S36.262A ','Major laceration of tail of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137295,10,'S36.261D ','Major laceration of body of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137294,10,'S36.261A ','Major laceration of body of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137292,10,'S36.260D ','Major laceration of head of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137293,10,'S36.260S ','Major laceration of head of pancreas, sequela','Y','0000-00-00 00:00:00'),(137291,10,'S36.260A ','Major laceration of head of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137290,10,'S36.259S ','Moderate laceration of unspecified part of pancreas, sequela','Y','0000-00-00 00:00:00'),(137289,10,'S36.259D ','Moderate laceration of unspecified part of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137287,10,'S36.252S ','Moderate laceration of tail of pancreas, sequela','Y','0000-00-00 00:00:00'),(137288,10,'S36.259A ','Moderate laceration of unspecified part of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137286,10,'S36.252D ','Moderate laceration of tail of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137285,10,'S36.252A ','Moderate laceration of tail of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137284,10,'S36.251S ','Moderate laceration of body of pancreas, sequela','Y','0000-00-00 00:00:00'),(137283,10,'S36.251D ','Moderate laceration of body of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137282,10,'S36.251A ','Moderate laceration of body of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137280,10,'S36.250D ','Moderate laceration of head of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137281,10,'S36.250S ','Moderate laceration of head of pancreas, sequela','Y','0000-00-00 00:00:00'),(137279,10,'S36.250A ','Moderate laceration of head of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137278,10,'S36.249S ','Minor laceration of unspecified part of pancreas, sequela','Y','0000-00-00 00:00:00'),(137277,10,'S36.249D ','Minor laceration of unspecified part of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137276,10,'S36.249A ','Minor laceration of unspecified part of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137275,10,'S36.242S ','Minor laceration of tail of pancreas, sequela','Y','0000-00-00 00:00:00'),(137273,10,'S36.242A ','Minor laceration of tail of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137274,10,'S36.242D ','Minor laceration of tail of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137272,10,'S36.241S ','Minor laceration of body of pancreas, sequela','Y','0000-00-00 00:00:00'),(137271,10,'S36.241D ','Minor laceration of body of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137269,10,'S36.240S ','Minor laceration of head of pancreas, sequela','Y','0000-00-00 00:00:00'),(137270,10,'S36.241A ','Minor laceration of body of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137268,10,'S36.240D ','Minor laceration of head of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137267,10,'S36.240A ','Minor laceration of head of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137266,10,'S36.239S ','Laceration of unspecified part of pancreas, unspecified degree, sequela','Y','0000-00-00 00:00:00'),(137265,10,'S36.239D ','Laceration of unspecified part of pancreas, unspecified degree, subsequent encounter','Y','0000-00-00 00:00:00'),(137264,10,'S36.239A ','Laceration of unspecified part of pancreas, unspecified degree, initial encounter','Y','0000-00-00 00:00:00'),(137262,10,'S36.232D ','Laceration of tail of pancreas, unspecified degree, subsequent encounter','Y','0000-00-00 00:00:00'),(137263,10,'S36.232S ','Laceration of tail of pancreas, unspecified degree, sequela','Y','0000-00-00 00:00:00'),(137261,10,'S36.232A ','Laceration of tail of pancreas, unspecified degree, initial encounter','Y','0000-00-00 00:00:00'),(137260,10,'S36.231S ','Laceration of body of pancreas, unspecified degree, sequela','Y','0000-00-00 00:00:00'),(137259,10,'S36.231D ','Laceration of body of pancreas, unspecified degree, subsequent encounter','Y','0000-00-00 00:00:00'),(137258,10,'S36.231A ','Laceration of body of pancreas, unspecified degree, initial encounter','Y','0000-00-00 00:00:00'),(137256,10,'S36.230D ','Laceration of head of pancreas, unspecified degree, subsequent encounter','Y','0000-00-00 00:00:00'),(137257,10,'S36.230S ','Laceration of head of pancreas, unspecified degree, sequela','Y','0000-00-00 00:00:00'),(137255,10,'S36.230A ','Laceration of head of pancreas, unspecified degree, initial encounter','Y','0000-00-00 00:00:00'),(137254,10,'S36.229S ','Contusion of unspecified part of pancreas, sequela','Y','0000-00-00 00:00:00'),(137252,10,'S36.229A ','Contusion of unspecified part of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137253,10,'S36.229D ','Contusion of unspecified part of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137251,10,'S36.222S ','Contusion of tail of pancreas, sequela','Y','0000-00-00 00:00:00'),(137249,10,'S36.222A ','Contusion of tail of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137250,10,'S36.222D ','Contusion of tail of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137248,10,'S36.221S ','Contusion of body of pancreas, sequela','Y','0000-00-00 00:00:00'),(137246,10,'S36.221A ','Contusion of body of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137247,10,'S36.221D ','Contusion of body of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137245,10,'S36.220S ','Contusion of head of pancreas, sequela','Y','0000-00-00 00:00:00'),(137243,10,'S36.220A ','Contusion of head of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137244,10,'S36.220D ','Contusion of head of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137242,10,'S36.209S ','Unspecified injury of unspecified part of pancreas, sequela','Y','0000-00-00 00:00:00'),(137241,10,'S36.209D ','Unspecified injury of unspecified part of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137239,10,'S36.202S ','Unspecified injury of tail of pancreas, sequela','Y','0000-00-00 00:00:00'),(137240,10,'S36.209A ','Unspecified injury of unspecified part of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137238,10,'S36.202D ','Unspecified injury of tail of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137237,10,'S36.202A ','Unspecified injury of tail of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137235,10,'S36.201D ','Unspecified injury of body of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137236,10,'S36.201S ','Unspecified injury of body of pancreas, sequela','Y','0000-00-00 00:00:00'),(137234,10,'S36.201A ','Unspecified injury of body of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137233,10,'S36.200S ','Unspecified injury of head of pancreas, sequela','Y','0000-00-00 00:00:00'),(137231,10,'S36.200A ','Unspecified injury of head of pancreas, initial encounter','Y','0000-00-00 00:00:00'),(137232,10,'S36.200D ','Unspecified injury of head of pancreas, subsequent encounter','Y','0000-00-00 00:00:00'),(137229,10,'S36.13XD ','Injury of bile duct, subsequent encounter','Y','0000-00-00 00:00:00'),(137230,10,'S36.13XS ','Injury of bile duct, sequela','Y','0000-00-00 00:00:00'),(137228,10,'S36.13XA ','Injury of bile duct, initial encounter','Y','0000-00-00 00:00:00'),(137226,10,'S36.129D ','Unspecified injury of gallbladder, subsequent encounter','Y','0000-00-00 00:00:00'),(137227,10,'S36.129S ','Unspecified injury of gallbladder, sequela','Y','0000-00-00 00:00:00'),(137225,10,'S36.129A ','Unspecified injury of gallbladder, initial encounter','Y','0000-00-00 00:00:00'),(137223,10,'S36.128D ','Other injury of gallbladder, subsequent encounter','Y','0000-00-00 00:00:00'),(137224,10,'S36.128S ','Other injury of gallbladder, sequela','Y','0000-00-00 00:00:00'),(137222,10,'S36.128A ','Other injury of gallbladder, initial encounter','Y','0000-00-00 00:00:00'),(137220,10,'S36.123D ','Laceration of gallbladder, subsequent encounter','Y','0000-00-00 00:00:00'),(137221,10,'S36.123S ','Laceration of gallbladder, sequela','Y','0000-00-00 00:00:00'),(137219,10,'S36.123A ','Laceration of gallbladder, initial encounter','Y','0000-00-00 00:00:00'),(137217,10,'S36.122D ','Contusion of gallbladder, subsequent encounter','Y','0000-00-00 00:00:00'),(137218,10,'S36.122S ','Contusion of gallbladder, sequela','Y','0000-00-00 00:00:00'),(137216,10,'S36.122A ','Contusion of gallbladder, initial encounter','Y','0000-00-00 00:00:00'),(137214,10,'S36.119D ','Unspecified injury of liver, subsequent encounter','Y','0000-00-00 00:00:00'),(137215,10,'S36.119S ','Unspecified injury of liver, sequela','Y','0000-00-00 00:00:00'),(137213,10,'S36.119A ','Unspecified injury of liver, initial encounter','Y','0000-00-00 00:00:00'),(137211,10,'S36.118D ','Other injury of liver, subsequent encounter','Y','0000-00-00 00:00:00'),(137212,10,'S36.118S ','Other injury of liver, sequela','Y','0000-00-00 00:00:00'),(137210,10,'S36.118A ','Other injury of liver, initial encounter','Y','0000-00-00 00:00:00'),(137208,10,'S36.116D ','Major laceration of liver, subsequent encounter','Y','0000-00-00 00:00:00'),(137209,10,'S36.116S ','Major laceration of liver, sequela','Y','0000-00-00 00:00:00'),(137207,10,'S36.116A ','Major laceration of liver, initial encounter','Y','0000-00-00 00:00:00'),(137205,10,'S36.115D ','Moderate laceration of liver, subsequent encounter','Y','0000-00-00 00:00:00'),(137206,10,'S36.115S ','Moderate laceration of liver, sequela','Y','0000-00-00 00:00:00'),(137204,10,'S36.115A ','Moderate laceration of liver, initial encounter','Y','0000-00-00 00:00:00'),(137202,10,'S36.114D ','Minor laceration of liver, subsequent encounter','Y','0000-00-00 00:00:00'),(137203,10,'S36.114S ','Minor laceration of liver, sequela','Y','0000-00-00 00:00:00'),(137201,10,'S36.114A ','Minor laceration of liver, initial encounter','Y','0000-00-00 00:00:00'),(137200,10,'S36.113S ','Laceration of liver, unspecified degree, sequela','Y','0000-00-00 00:00:00'),(137198,10,'S36.113A ','Laceration of liver, unspecified degree, initial encounter','Y','0000-00-00 00:00:00'),(137199,10,'S36.113D ','Laceration of liver, unspecified degree, subsequent encounter','Y','0000-00-00 00:00:00'),(137197,10,'S36.112S ','Contusion of liver, sequela','Y','0000-00-00 00:00:00'),(137195,10,'S36.112A ','Contusion of liver, initial encounter','Y','0000-00-00 00:00:00'),(137196,10,'S36.112D ','Contusion of liver, subsequent encounter','Y','0000-00-00 00:00:00'),(137194,10,'S36.09XS ','Other injury of spleen, sequela','Y','0000-00-00 00:00:00'),(137192,10,'S36.09XA ','Other injury of spleen, initial encounter','Y','0000-00-00 00:00:00'),(137193,10,'S36.09XD ','Other injury of spleen, subsequent encounter','Y','0000-00-00 00:00:00'),(137191,10,'S36.039S ','Unspecified laceration of spleen, sequela','Y','0000-00-00 00:00:00'),(137190,10,'S36.039D ','Unspecified laceration of spleen, subsequent encounter','Y','0000-00-00 00:00:00'),(137188,10,'S36.032S ','Major laceration of spleen, sequela','Y','0000-00-00 00:00:00'),(137189,10,'S36.039A ','Unspecified laceration of spleen, initial encounter','Y','0000-00-00 00:00:00'),(137187,10,'S36.032D ','Major laceration of spleen, subsequent encounter','Y','0000-00-00 00:00:00'),(137185,10,'S36.031S ','Moderate laceration of spleen, sequela','Y','0000-00-00 00:00:00'),(137186,10,'S36.032A ','Major laceration of spleen, initial encounter','Y','0000-00-00 00:00:00'),(137184,10,'S36.031D ','Moderate laceration of spleen, subsequent encounter','Y','0000-00-00 00:00:00'),(137183,10,'S36.031A ','Moderate laceration of spleen, initial encounter','Y','0000-00-00 00:00:00'),(137181,10,'S36.030D ','Superficial (capsular) laceration of spleen, subsequent encounter','Y','0000-00-00 00:00:00'),(137182,10,'S36.030S ','Superficial (capsular) laceration of spleen, sequela','Y','0000-00-00 00:00:00'),(137180,10,'S36.030A ','Superficial (capsular) laceration of spleen, initial encounter','Y','0000-00-00 00:00:00'),(137179,10,'S36.029S ','Unspecified contusion of spleen, sequela','Y','0000-00-00 00:00:00'),(137178,10,'S36.029D ','Unspecified contusion of spleen, subsequent encounter','Y','0000-00-00 00:00:00'),(137176,10,'S36.021S ','Major contusion of spleen, sequela','Y','0000-00-00 00:00:00'),(137177,10,'S36.029A ','Unspecified contusion of spleen, initial encounter','Y','0000-00-00 00:00:00'),(137175,10,'S36.021D ','Major contusion of spleen, subsequent encounter','Y','0000-00-00 00:00:00'),(137173,10,'S36.020S ','Minor contusion of spleen, sequela','Y','0000-00-00 00:00:00'),(137174,10,'S36.021A ','Major contusion of spleen, initial encounter','Y','0000-00-00 00:00:00'),(137172,10,'S36.020D ','Minor contusion of spleen, subsequent encounter','Y','0000-00-00 00:00:00'),(137170,10,'S36.00XS ','Unspecified injury of spleen, sequela','Y','0000-00-00 00:00:00'),(137171,10,'S36.020A ','Minor contusion of spleen, initial encounter','Y','0000-00-00 00:00:00'),(137169,10,'S36.00XD ','Unspecified injury of spleen, subsequent encounter','Y','0000-00-00 00:00:00'),(137168,10,'S36.00XA ','Unspecified injury of spleen, initial encounter','Y','0000-00-00 00:00:00'),(137167,10,'S35.99XS ','Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level, sequela','Y','0000-00-00 00:00:00'),(137166,10,'S35.99XD ','Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level, subsequent encounter','Y','0000-00-00 00:00:00'),(137165,10,'S35.99XA ','Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level, initial encounter','Y','0000-00-00 00:00:00'),(137164,10,'S35.91XS ','Laceration of unspecified blood vessel at abdomen, lower back and pelvis level, sequela','Y','0000-00-00 00:00:00'),(137163,10,'S35.91XD ','Laceration of unspecified blood vessel at abdomen, lower back and pelvis level, subsequent encounter','Y','0000-00-00 00:00:00'),(137162,10,'S35.91XA ','Laceration of unspecified blood vessel at abdomen, lower back and pelvis level, initial encounter','Y','0000-00-00 00:00:00'),(137161,10,'S35.90XS ','Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level, sequela','Y','0000-00-00 00:00:00'),(137160,10,'S35.90XD ','Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level, subsequent encounter','Y','0000-00-00 00:00:00'),(137159,10,'S35.90XA ','Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level, initial encounter','Y','0000-00-00 00:00:00'),(137158,10,'S35.8X9S ','Unspecified injury of other blood vessels at abdomen, lower back and pelvis level, sequela','Y','0000-00-00 00:00:00'),(137157,10,'S35.8X9D ','Unspecified injury of other blood vessels at abdomen, lower back and pelvis level, subsequent encounter','Y','0000-00-00 00:00:00'),(137156,10,'S35.8X9A ','Unspecified injury of other blood vessels at abdomen, lower back and pelvis level, initial encounter','Y','0000-00-00 00:00:00'),(137155,10,'S35.8X8S ','Other specified injury of other blood vessels at abdomen, lower back and pelvis level, sequela','Y','0000-00-00 00:00:00'),(137154,10,'S35.8X8D ','Other specified injury of other blood vessels at abdomen, lower back and pelvis level, subsequent encounter','Y','0000-00-00 00:00:00'),(137153,10,'S35.8X8A ','Other specified injury of other blood vessels at abdomen, lower back and pelvis level, initial encounter','Y','0000-00-00 00:00:00'),(137152,10,'S35.8X1S ','Laceration of other blood vessels at abdomen, lower back and pelvis level, sequela','Y','0000-00-00 00:00:00'),(137151,10,'S35.8X1D ','Laceration of other blood vessels at abdomen, lower back and pelvis level, subsequent encounter','Y','0000-00-00 00:00:00'),(137150,10,'S35.8X1A ','Laceration of other blood vessels at abdomen, lower back and pelvis level, initial encounter','Y','0000-00-00 00:00:00'),(137149,10,'S35.59XS ','Injury of other iliac blood vessels, sequela','Y','0000-00-00 00:00:00'),(137148,10,'S35.59XD ','Injury of other iliac blood vessels, subsequent encounter','Y','0000-00-00 00:00:00'),(137146,10,'S35.536S ','Injury of unspecified uterine vein, sequela','Y','0000-00-00 00:00:00'),(137147,10,'S35.59XA ','Injury of other iliac blood vessels, initial encounter','Y','0000-00-00 00:00:00'),(137145,10,'S35.536D ','Injury of unspecified uterine vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137144,10,'S35.536A ','Injury of unspecified uterine vein, initial encounter','Y','0000-00-00 00:00:00'),(137142,10,'S35.535D ','Injury of left uterine vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137143,10,'S35.535S ','Injury of left uterine vein, sequela','Y','0000-00-00 00:00:00'),(137141,10,'S35.535A ','Injury of left uterine vein, initial encounter','Y','0000-00-00 00:00:00'),(137139,10,'S35.534D ','Injury of right uterine vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137140,10,'S35.534S ','Injury of right uterine vein, sequela','Y','0000-00-00 00:00:00'),(137138,10,'S35.534A ','Injury of right uterine vein, initial encounter','Y','0000-00-00 00:00:00'),(137137,10,'S35.533S ','Injury of unspecified uterine artery, sequela','Y','0000-00-00 00:00:00'),(137135,10,'S35.533A ','Injury of unspecified uterine artery, initial encounter','Y','0000-00-00 00:00:00'),(137136,10,'S35.533D ','Injury of unspecified uterine artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137134,10,'S35.532S ','Injury of left uterine artery, sequela','Y','0000-00-00 00:00:00'),(137132,10,'S35.532A ','Injury of left uterine artery, initial encounter','Y','0000-00-00 00:00:00'),(137133,10,'S35.532D ','Injury of left uterine artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137131,10,'S35.531S ','Injury of right uterine artery, sequela','Y','0000-00-00 00:00:00'),(137129,10,'S35.531A ','Injury of right uterine artery, initial encounter','Y','0000-00-00 00:00:00'),(137130,10,'S35.531D ','Injury of right uterine artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137128,10,'S35.516S ','Injury of unspecified iliac vein, sequela','Y','0000-00-00 00:00:00'),(137126,10,'S35.516A ','Injury of unspecified iliac vein, initial encounter','Y','0000-00-00 00:00:00'),(137127,10,'S35.516D ','Injury of unspecified iliac vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137125,10,'S35.515S ','Injury of left iliac vein, sequela','Y','0000-00-00 00:00:00'),(137123,10,'S35.515A ','Injury of left iliac vein, initial encounter','Y','0000-00-00 00:00:00'),(137124,10,'S35.515D ','Injury of left iliac vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137122,10,'S35.514S ','Injury of right iliac vein, sequela','Y','0000-00-00 00:00:00'),(137120,10,'S35.514A ','Injury of right iliac vein, initial encounter','Y','0000-00-00 00:00:00'),(137121,10,'S35.514D ','Injury of right iliac vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137119,10,'S35.513S ','Injury of unspecified iliac artery, sequela','Y','0000-00-00 00:00:00'),(137118,10,'S35.513D ','Injury of unspecified iliac artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137116,10,'S35.512S ','Injury of left iliac artery, sequela','Y','0000-00-00 00:00:00'),(137117,10,'S35.513A ','Injury of unspecified iliac artery, initial encounter','Y','0000-00-00 00:00:00'),(137115,10,'S35.512D ','Injury of left iliac artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137113,10,'S35.511S ','Injury of right iliac artery, sequela','Y','0000-00-00 00:00:00'),(137114,10,'S35.512A ','Injury of left iliac artery, initial encounter','Y','0000-00-00 00:00:00'),(137112,10,'S35.511D ','Injury of right iliac artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137110,10,'S35.50XS ','Injury of unspecified iliac blood vessel(s), sequela','Y','0000-00-00 00:00:00'),(137111,10,'S35.511A ','Injury of right iliac artery, initial encounter','Y','0000-00-00 00:00:00'),(137109,10,'S35.50XD ','Injury of unspecified iliac blood vessel(s), subsequent encounter','Y','0000-00-00 00:00:00'),(137108,10,'S35.50XA ','Injury of unspecified iliac blood vessel(s), initial encounter','Y','0000-00-00 00:00:00'),(137107,10,'S35.496S ','Other specified injury of unspecified renal vein, sequela','Y','0000-00-00 00:00:00'),(137106,10,'S35.496D ','Other specified injury of unspecified renal vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137104,10,'S35.495S ','Other specified injury of left renal vein, sequela','Y','0000-00-00 00:00:00'),(137105,10,'S35.496A ','Other specified injury of unspecified renal vein, initial encounter','Y','0000-00-00 00:00:00'),(137103,10,'S35.495D ','Other specified injury of left renal vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137102,10,'S35.495A ','Other specified injury of left renal vein, initial encounter','Y','0000-00-00 00:00:00'),(137101,10,'S35.494S ','Other specified injury of right renal vein, sequela','Y','0000-00-00 00:00:00'),(137099,10,'S35.494A ','Other specified injury of right renal vein, initial encounter','Y','0000-00-00 00:00:00'),(137100,10,'S35.494D ','Other specified injury of right renal vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137098,10,'S35.493S ','Other specified injury of unspecified renal artery, sequela','Y','0000-00-00 00:00:00'),(137097,10,'S35.493D ','Other specified injury of unspecified renal artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137096,10,'S35.493A ','Other specified injury of unspecified renal artery, initial encounter','Y','0000-00-00 00:00:00'),(137095,10,'S35.492S ','Other specified injury of left renal artery, sequela','Y','0000-00-00 00:00:00'),(137093,10,'S35.492A ','Other specified injury of left renal artery, initial encounter','Y','0000-00-00 00:00:00'),(137094,10,'S35.492D ','Other specified injury of left renal artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137092,10,'S35.491S ','Other specified injury of right renal artery, sequela','Y','0000-00-00 00:00:00'),(137091,10,'S35.491D ','Other specified injury of right renal artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137089,10,'S35.416S ','Laceration of unspecified renal vein, sequela','Y','0000-00-00 00:00:00'),(137090,10,'S35.491A ','Other specified injury of right renal artery, initial encounter','Y','0000-00-00 00:00:00'),(137088,10,'S35.416D ','Laceration of unspecified renal vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137087,10,'S35.416A ','Laceration of unspecified renal vein, initial encounter','Y','0000-00-00 00:00:00'),(137085,10,'S35.415D ','Laceration of left renal vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137086,10,'S35.415S ','Laceration of left renal vein, sequela','Y','0000-00-00 00:00:00'),(137084,10,'S35.415A ','Laceration of left renal vein, initial encounter','Y','0000-00-00 00:00:00'),(137083,10,'S35.414S ','Laceration of right renal vein, sequela','Y','0000-00-00 00:00:00'),(137081,10,'S35.414A ','Laceration of right renal vein, initial encounter','Y','0000-00-00 00:00:00'),(137082,10,'S35.414D ','Laceration of right renal vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137080,10,'S35.413S ','Laceration of unspecified renal artery, sequela','Y','0000-00-00 00:00:00'),(137079,10,'S35.413D ','Laceration of unspecified renal artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137078,10,'S35.413A ','Laceration of unspecified renal artery, initial encounter','Y','0000-00-00 00:00:00'),(137076,10,'S35.412D ','Laceration of left renal artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137077,10,'S35.412S ','Laceration of left renal artery, sequela','Y','0000-00-00 00:00:00'),(137075,10,'S35.412A ','Laceration of left renal artery, initial encounter','Y','0000-00-00 00:00:00'),(137074,10,'S35.411S ','Laceration of right renal artery, sequela','Y','0000-00-00 00:00:00'),(137072,10,'S35.411A ','Laceration of right renal artery, initial encounter','Y','0000-00-00 00:00:00'),(137073,10,'S35.411D ','Laceration of right renal artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137071,10,'S35.406S ','Unspecified injury of unspecified renal vein, sequela','Y','0000-00-00 00:00:00'),(137070,10,'S35.406D ','Unspecified injury of unspecified renal vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137069,10,'S35.406A ','Unspecified injury of unspecified renal vein, initial encounter','Y','0000-00-00 00:00:00'),(137068,10,'S35.405S ','Unspecified injury of left renal vein, sequela','Y','0000-00-00 00:00:00'),(137066,10,'S35.405A ','Unspecified injury of left renal vein, initial encounter','Y','0000-00-00 00:00:00'),(137067,10,'S35.405D ','Unspecified injury of left renal vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137065,10,'S35.404S ','Unspecified injury of right renal vein, sequela','Y','0000-00-00 00:00:00'),(137064,10,'S35.404D ','Unspecified injury of right renal vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137062,10,'S35.403S ','Unspecified injury of unspecified renal artery, sequela','Y','0000-00-00 00:00:00'),(137063,10,'S35.404A ','Unspecified injury of right renal vein, initial encounter','Y','0000-00-00 00:00:00'),(137061,10,'S35.403D ','Unspecified injury of unspecified renal artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137060,10,'S35.403A ','Unspecified injury of unspecified renal artery, initial encounter','Y','0000-00-00 00:00:00'),(137058,10,'S35.402D ','Unspecified injury of left renal artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137059,10,'S35.402S ','Unspecified injury of left renal artery, sequela','Y','0000-00-00 00:00:00'),(137057,10,'S35.402A ','Unspecified injury of left renal artery, initial encounter','Y','0000-00-00 00:00:00'),(137056,10,'S35.401S ','Unspecified injury of right renal artery, sequela','Y','0000-00-00 00:00:00'),(137054,10,'S35.401A ','Unspecified injury of right renal artery, initial encounter','Y','0000-00-00 00:00:00'),(137055,10,'S35.401D ','Unspecified injury of right renal artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137053,10,'S35.349S ','Unspecified injury of inferior mesenteric vein, sequela','Y','0000-00-00 00:00:00'),(137052,10,'S35.349D ','Unspecified injury of inferior mesenteric vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137051,10,'S35.349A ','Unspecified injury of inferior mesenteric vein, initial encounter','Y','0000-00-00 00:00:00'),(137049,10,'S35.348D ','Other specified injury of inferior mesenteric vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137050,10,'S35.348S ','Other specified injury of inferior mesenteric vein, sequela','Y','0000-00-00 00:00:00'),(137048,10,'S35.348A ','Other specified injury of inferior mesenteric vein, initial encounter','Y','0000-00-00 00:00:00'),(137047,10,'S35.341S ','Laceration of inferior mesenteric vein, sequela','Y','0000-00-00 00:00:00'),(137046,10,'S35.341D ','Laceration of inferior mesenteric vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137044,10,'S35.339S ','Unspecified injury of superior mesenteric vein, sequela','Y','0000-00-00 00:00:00'),(137045,10,'S35.341A ','Laceration of inferior mesenteric vein, initial encounter','Y','0000-00-00 00:00:00'),(137043,10,'S35.339D ','Unspecified injury of superior mesenteric vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137042,10,'S35.339A ','Unspecified injury of superior mesenteric vein, initial encounter','Y','0000-00-00 00:00:00'),(137041,10,'S35.338S ','Other specified injury of superior mesenteric vein, sequela','Y','0000-00-00 00:00:00'),(137039,10,'S35.338A ','Other specified injury of superior mesenteric vein, initial encounter','Y','0000-00-00 00:00:00'),(137040,10,'S35.338D ','Other specified injury of superior mesenteric vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137038,10,'S35.331S ','Laceration of superior mesenteric vein, sequela','Y','0000-00-00 00:00:00'),(137037,10,'S35.331D ','Laceration of superior mesenteric vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137035,10,'S35.329S ','Unspecified injury of splenic vein, sequela','Y','0000-00-00 00:00:00'),(137036,10,'S35.331A ','Laceration of superior mesenteric vein, initial encounter','Y','0000-00-00 00:00:00'),(137034,10,'S35.329D ','Unspecified injury of splenic vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137032,10,'S35.328S ','Other specified injury of splenic vein, sequela','Y','0000-00-00 00:00:00'),(137033,10,'S35.329A ','Unspecified injury of splenic vein, initial encounter','Y','0000-00-00 00:00:00'),(137031,10,'S35.328D ','Other specified injury of splenic vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137029,10,'S35.321S ','Laceration of splenic vein, sequela','Y','0000-00-00 00:00:00'),(137030,10,'S35.328A ','Other specified injury of splenic vein, initial encounter','Y','0000-00-00 00:00:00'),(137028,10,'S35.321D ','Laceration of splenic vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137026,10,'S35.319S ','Unspecified injury of portal vein, sequela','Y','0000-00-00 00:00:00'),(137027,10,'S35.321A ','Laceration of splenic vein, initial encounter','Y','0000-00-00 00:00:00'),(137025,10,'S35.319D ','Unspecified injury of portal vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137023,10,'S35.318S ','Other specified injury of portal vein, sequela','Y','0000-00-00 00:00:00'),(137024,10,'S35.319A ','Unspecified injury of portal vein, initial encounter','Y','0000-00-00 00:00:00'),(137022,10,'S35.318D ','Other specified injury of portal vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137020,10,'S35.311S ','Laceration of portal vein, sequela','Y','0000-00-00 00:00:00'),(137021,10,'S35.318A ','Other specified injury of portal vein, initial encounter','Y','0000-00-00 00:00:00'),(137019,10,'S35.311D ','Laceration of portal vein, subsequent encounter','Y','0000-00-00 00:00:00'),(137018,10,'S35.311A ','Laceration of portal vein, initial encounter','Y','0000-00-00 00:00:00'),(137017,10,'S35.299S ','Unspecified injury of branches of celiac and mesenteric artery, sequela','Y','0000-00-00 00:00:00'),(137016,10,'S35.299D ','Unspecified injury of branches of celiac and mesenteric artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137014,10,'S35.298S ','Other injury of branches of celiac and mesenteric artery, sequela','Y','0000-00-00 00:00:00'),(137015,10,'S35.299A ','Unspecified injury of branches of celiac and mesenteric artery, initial encounter','Y','0000-00-00 00:00:00'),(137013,10,'S35.298D ','Other injury of branches of celiac and mesenteric artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137012,10,'S35.298A ','Other injury of branches of celiac and mesenteric artery, initial encounter','Y','0000-00-00 00:00:00'),(137011,10,'S35.292S ','Major laceration of branches of celiac and mesenteric artery, sequela','Y','0000-00-00 00:00:00'),(137010,10,'S35.292D ','Major laceration of branches of celiac and mesenteric artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137009,10,'S35.292A ','Major laceration of branches of celiac and mesenteric artery, initial encounter','Y','0000-00-00 00:00:00'),(137008,10,'S35.291S ','Minor laceration of branches of celiac and mesenteric artery, sequela','Y','0000-00-00 00:00:00'),(137007,10,'S35.291D ','Minor laceration of branches of celiac and mesenteric artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137006,10,'S35.291A ','Minor laceration of branches of celiac and mesenteric artery, initial encounter','Y','0000-00-00 00:00:00'),(137005,10,'S35.239S ','Unspecified injury of inferior mesenteric artery, sequela','Y','0000-00-00 00:00:00'),(137004,10,'S35.239D ','Unspecified injury of inferior mesenteric artery, subsequent encounter','Y','0000-00-00 00:00:00'),(137003,10,'S35.239A ','Unspecified injury of inferior mesenteric artery, initial encounter','Y','0000-00-00 00:00:00'),(137002,10,'S35.238S ','Other injury of inferior mesenteric artery, sequela','Y','0000-00-00 00:00:00'),(137000,10,'S35.238A ','Other injury of inferior mesenteric artery, initial encounter','Y','0000-00-00 00:00:00'),(137001,10,'S35.238D ','Other injury of inferior mesenteric artery, subsequent encounter','Y','0000-00-00 00:00:00'),(136999,10,'S35.232S ','Major laceration of inferior mesenteric artery, sequela','Y','0000-00-00 00:00:00'),(136998,10,'S35.232D ','Major laceration of inferior mesenteric artery, subsequent encounter','Y','0000-00-00 00:00:00'),(136997,10,'S35.232A ','Major laceration of inferior mesenteric artery, initial encounter','Y','0000-00-00 00:00:00'),(136996,10,'S35.231S ','Minor laceration of inferior mesenteric artery, sequela','Y','0000-00-00 00:00:00'),(136995,10,'S35.231D ','Minor laceration of inferior mesenteric artery, subsequent encounter','Y','0000-00-00 00:00:00'),(136993,10,'S35.229S ','Unspecified injury of superior mesenteric artery, sequela','Y','0000-00-00 00:00:00'),(136994,10,'S35.231A ','Minor laceration of inferior mesenteric artery, initial encounter','Y','0000-00-00 00:00:00'),(136992,10,'S35.229D ','Unspecified injury of superior mesenteric artery, subsequent encounter','Y','0000-00-00 00:00:00'),(136991,10,'S35.229A ','Unspecified injury of superior mesenteric artery, initial encounter','Y','0000-00-00 00:00:00'),(136990,10,'S35.228S ','Other injury of superior mesenteric artery, sequela','Y','0000-00-00 00:00:00'),(136989,10,'S35.228D ','Other injury of superior mesenteric artery, subsequent encounter','Y','0000-00-00 00:00:00'),(136988,10,'S35.228A ','Other injury of superior mesenteric artery, initial encounter','Y','0000-00-00 00:00:00'),(136987,10,'S35.222S ','Major laceration of superior mesenteric artery, sequela','Y','0000-00-00 00:00:00'),(136986,10,'S35.222D ','Major laceration of superior mesenteric artery, subsequent encounter','Y','0000-00-00 00:00:00'),(136984,10,'S35.221S ','Minor laceration of superior mesenteric artery, sequela','Y','0000-00-00 00:00:00'),(136985,10,'S35.222A ','Major laceration of superior mesenteric artery, initial encounter','Y','0000-00-00 00:00:00'),(136983,10,'S35.221D ','Minor laceration of superior mesenteric artery, subsequent encounter','Y','0000-00-00 00:00:00'),(136982,10,'S35.221A ','Minor laceration of superior mesenteric artery, initial encounter','Y','0000-00-00 00:00:00'),(136981,10,'S35.219S ','Unspecified injury of celiac artery, sequela','Y','0000-00-00 00:00:00'),(136979,10,'S35.219A ','Unspecified injury of celiac artery, initial encounter','Y','0000-00-00 00:00:00'),(136980,10,'S35.219D ','Unspecified injury of celiac artery, subsequent encounter','Y','0000-00-00 00:00:00'),(136978,10,'S35.218S ','Other injury of celiac artery, sequela','Y','0000-00-00 00:00:00'),(136976,10,'S35.218A ','Other injury of celiac artery, initial encounter','Y','0000-00-00 00:00:00'),(136977,10,'S35.218D ','Other injury of celiac artery, subsequent encounter','Y','0000-00-00 00:00:00'),(136975,10,'S35.212S ','Major laceration of celiac artery, sequela','Y','0000-00-00 00:00:00'),(136974,10,'S35.212D ','Major laceration of celiac artery, subsequent encounter','Y','0000-00-00 00:00:00'),(136972,10,'S35.211S ','Minor laceration of celiac artery, sequela','Y','0000-00-00 00:00:00'),(136973,10,'S35.212A ','Major laceration of celiac artery, initial encounter','Y','0000-00-00 00:00:00'),(136971,10,'S35.211D ','Minor laceration of celiac artery, subsequent encounter','Y','0000-00-00 00:00:00'),(136970,10,'S35.211A ','Minor laceration of celiac artery, initial encounter','Y','0000-00-00 00:00:00'),(136968,10,'S35.19XD ','Other injury of inferior vena cava, subsequent encounter','Y','0000-00-00 00:00:00'),(136969,10,'S35.19XS ','Other injury of inferior vena cava, sequela','Y','0000-00-00 00:00:00'),(136967,10,'S35.19XA ','Other injury of inferior vena cava, initial encounter','Y','0000-00-00 00:00:00'),(136966,10,'S35.12XS ','Major laceration of inferior vena cava, sequela','Y','0000-00-00 00:00:00'),(136964,10,'S35.12XA ','Major laceration of inferior vena cava, initial encounter','Y','0000-00-00 00:00:00'),(136965,10,'S35.12XD ','Major laceration of inferior vena cava, subsequent encounter','Y','0000-00-00 00:00:00'),(136963,10,'S35.11XS ','Minor laceration of inferior vena cava, sequela','Y','0000-00-00 00:00:00'),(136962,10,'S35.11XD ','Minor laceration of inferior vena cava, subsequent encounter','Y','0000-00-00 00:00:00'),(136961,10,'S35.11XA ','Minor laceration of inferior vena cava, initial encounter','Y','0000-00-00 00:00:00'),(136959,10,'S35.10XD ','Unspecified injury of inferior vena cava, subsequent encounter','Y','0000-00-00 00:00:00'),(136960,10,'S35.10XS ','Unspecified injury of inferior vena cava, sequela','Y','0000-00-00 00:00:00'),(136958,10,'S35.10XA ','Unspecified injury of inferior vena cava, initial encounter','Y','0000-00-00 00:00:00'),(136957,10,'S35.09XS ','Other injury of abdominal aorta, sequela','Y','0000-00-00 00:00:00'),(136956,10,'S35.09XD ','Other injury of abdominal aorta, subsequent encounter','Y','0000-00-00 00:00:00'),(136954,10,'S35.02XS ','Major laceration of abdominal aorta, sequela','Y','0000-00-00 00:00:00'),(136955,10,'S35.09XA ','Other injury of abdominal aorta, initial encounter','Y','0000-00-00 00:00:00'),(136953,10,'S35.02XD ','Major laceration of abdominal aorta, subsequent encounter','Y','0000-00-00 00:00:00'),(136952,10,'S35.02XA ','Major laceration of abdominal aorta, initial encounter','Y','0000-00-00 00:00:00'),(136950,10,'S35.01XD ','Minor laceration of abdominal aorta, subsequent encounter','Y','0000-00-00 00:00:00'),(136951,10,'S35.01XS ','Minor laceration of abdominal aorta, sequela','Y','0000-00-00 00:00:00'),(136949,10,'S35.01XA ','Minor laceration of abdominal aorta, initial encounter','Y','0000-00-00 00:00:00'),(136948,10,'S35.00XS ','Unspecified injury of abdominal aorta, sequela','Y','0000-00-00 00:00:00'),(136946,10,'S35.00XA ','Unspecified injury of abdominal aorta, initial encounter','Y','0000-00-00 00:00:00'),(136947,10,'S35.00XD ','Unspecified injury of abdominal aorta, subsequent encounter','Y','0000-00-00 00:00:00'),(136945,10,'S34.9XXS ','Injury of unspecified nerves at abdomen, lower back and pelvis level, sequela','Y','0000-00-00 00:00:00'),(136944,10,'S34.9XXD ','Injury of unspecified nerves at abdomen, lower back and pelvis level, subsequent encounter','Y','0000-00-00 00:00:00'),(136943,10,'S34.9XXA ','Injury of unspecified nerves at abdomen, lower back and pelvis level, initial encounter','Y','0000-00-00 00:00:00'),(136942,10,'S34.8XXS ','Injury of other nerves at abdomen, lower back and pelvis level, sequela','Y','0000-00-00 00:00:00'),(136941,10,'S34.8XXD ','Injury of other nerves at abdomen, lower back and pelvis level, subsequent encounter','Y','0000-00-00 00:00:00'),(136940,10,'S34.8XXA ','Injury of other nerves at abdomen, lower back and pelvis level, initial encounter','Y','0000-00-00 00:00:00'),(136939,10,'S34.6XXS ','Injury of peripheral nerve(s) at abdomen, lower back and pelvis level, sequela','Y','0000-00-00 00:00:00'),(136938,10,'S34.6XXD ','Injury of peripheral nerve(s) at abdomen, lower back and pelvis level, subsequent encounter','Y','0000-00-00 00:00:00'),(136937,10,'S34.6XXA ','Injury of peripheral nerve(s) at abdomen, lower back and pelvis level, initial encounter','Y','0000-00-00 00:00:00'),(136936,10,'S34.5XXS ','Injury of lumbar, sacral and pelvic sympathetic nerves, sequela','Y','0000-00-00 00:00:00'),(136935,10,'S34.5XXD ','Injury of lumbar, sacral and pelvic sympathetic nerves, subsequent encounter','Y','0000-00-00 00:00:00'),(136934,10,'S34.5XXA ','Injury of lumbar, sacral and pelvic sympathetic nerves, initial encounter','Y','0000-00-00 00:00:00'),(136932,10,'S34.4XXD ','Injury of lumbosacral plexus, subsequent encounter','Y','0000-00-00 00:00:00'),(136933,10,'S34.4XXS ','Injury of lumbosacral plexus, sequela','Y','0000-00-00 00:00:00'),(136931,10,'S34.4XXA ','Injury of lumbosacral plexus, initial encounter','Y','0000-00-00 00:00:00'),(136929,10,'S34.3XXD ','Injury of cauda equina, subsequent encounter','Y','0000-00-00 00:00:00'),(136930,10,'S34.3XXS ','Injury of cauda equina, sequela','Y','0000-00-00 00:00:00'),(136928,10,'S34.3XXA ','Injury of cauda equina, initial encounter','Y','0000-00-00 00:00:00'),(136927,10,'S34.22XS ','Injury of nerve root of sacral spine, sequela','Y','0000-00-00 00:00:00'),(136925,10,'S34.22XA ','Injury of nerve root of sacral spine, initial encounter','Y','0000-00-00 00:00:00'),(136926,10,'S34.22XD ','Injury of nerve root of sacral spine, subsequent encounter','Y','0000-00-00 00:00:00'),(136924,10,'S34.21XS ','Injury of nerve root of lumbar spine, sequela','Y','0000-00-00 00:00:00'),(136922,10,'S34.21XA ','Injury of nerve root of lumbar spine, initial encounter','Y','0000-00-00 00:00:00'),(136923,10,'S34.21XD ','Injury of nerve root of lumbar spine, subsequent encounter','Y','0000-00-00 00:00:00'),(136921,10,'S34.139S ','Unspecified injury to sacral spinal cord, sequela','Y','0000-00-00 00:00:00'),(136920,10,'S34.139D ','Unspecified injury to sacral spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136918,10,'S34.132S ','Incomplete lesion of sacral spinal cord, sequela','Y','0000-00-00 00:00:00'),(136919,10,'S34.139A ','Unspecified injury to sacral spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136917,10,'S34.132D ','Incomplete lesion of sacral spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136916,10,'S34.132A ','Incomplete lesion of sacral spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136915,10,'S34.131S ','Complete lesion of sacral spinal cord, sequela','Y','0000-00-00 00:00:00'),(136913,10,'S34.131A ','Complete lesion of sacral spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136914,10,'S34.131D ','Complete lesion of sacral spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136912,10,'S34.129S ','Incomplete lesion of unspecified level of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136911,10,'S34.129D ','Incomplete lesion of unspecified level of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136910,10,'S34.129A ','Incomplete lesion of unspecified level of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136909,10,'S34.125S ','Incomplete lesion of L5 level of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136908,10,'S34.125D ','Incomplete lesion of L5 level of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136907,10,'S34.125A ','Incomplete lesion of L5 level of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136906,10,'S34.124S ','Incomplete lesion of L4 level of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136904,10,'S34.124A ','Incomplete lesion of L4 level of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136905,10,'S34.124D ','Incomplete lesion of L4 level of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136903,10,'S34.123S ','Incomplete lesion of L3 level of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136902,10,'S34.123D ','Incomplete lesion of L3 level of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136901,10,'S34.123A ','Incomplete lesion of L3 level of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136900,10,'S34.122S ','Incomplete lesion of L2 level of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136898,10,'S34.122A ','Incomplete lesion of L2 level of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136899,10,'S34.122D ','Incomplete lesion of L2 level of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136897,10,'S34.121S ','Incomplete lesion of L1 level of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136896,10,'S34.121D ','Incomplete lesion of L1 level of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136895,10,'S34.121A ','Incomplete lesion of L1 level of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136894,10,'S34.119S ','Complete lesion of unspecified level of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136893,10,'S34.119D ','Complete lesion of unspecified level of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136891,10,'S34.115S ','Complete lesion of L5 level of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136892,10,'S34.119A ','Complete lesion of unspecified level of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136890,10,'S34.115D ','Complete lesion of L5 level of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136889,10,'S34.115A ','Complete lesion of L5 level of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136888,10,'S34.114S ','Complete lesion of L4 level of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136887,10,'S34.114D ','Complete lesion of L4 level of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136886,10,'S34.114A ','Complete lesion of L4 level of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136885,10,'S34.113S ','Complete lesion of L3 level of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136883,10,'S34.113A ','Complete lesion of L3 level of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136884,10,'S34.113D ','Complete lesion of L3 level of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136882,10,'S34.112S ','Complete lesion of L2 level of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136881,10,'S34.112D ','Complete lesion of L2 level of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136880,10,'S34.112A ','Complete lesion of L2 level of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136879,10,'S34.111S ','Complete lesion of L1 level of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136878,10,'S34.111D ','Complete lesion of L1 level of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136877,10,'S34.111A ','Complete lesion of L1 level of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136876,10,'S34.109S ','Unspecified injury to unspecified level of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136875,10,'S34.109D ','Unspecified injury to unspecified level of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136873,10,'S34.105S ','Unspecified injury to L5 level of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136874,10,'S34.109A ','Unspecified injury to unspecified level of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136872,10,'S34.105D ','Unspecified injury to L5 level of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136871,10,'S34.105A ','Unspecified injury to L5 level of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136870,10,'S34.104S ','Unspecified injury to L4 level of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136869,10,'S34.104D ','Unspecified injury to L4 level of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136868,10,'S34.104A ','Unspecified injury to L4 level of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136867,10,'S34.103S ','Unspecified injury to L3 level of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136866,10,'S34.103D ','Unspecified injury to L3 level of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136865,10,'S34.103A ','Unspecified injury to L3 level of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136863,10,'S34.102D ','Unspecified injury to L2 level of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136864,10,'S34.102S ','Unspecified injury to L2 level of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136862,10,'S34.102A ','Unspecified injury to L2 level of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136861,10,'S34.101S ','Unspecified injury to L1 level of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136860,10,'S34.101D ','Unspecified injury to L1 level of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136859,10,'S34.101A ','Unspecified injury to L1 level of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136857,10,'S34.02XD ','Concussion and edema of sacral spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136858,10,'S34.02XS ','Concussion and edema of sacral spinal cord, sequela','Y','0000-00-00 00:00:00'),(136856,10,'S34.02XA ','Concussion and edema of sacral spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136855,10,'S34.01XS ','Concussion and edema of lumbar spinal cord, sequela','Y','0000-00-00 00:00:00'),(136853,10,'S34.01XA ','Concussion and edema of lumbar spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(136854,10,'S34.01XD ','Concussion and edema of lumbar spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(136852,10,'S33.9XXS ','Sprain of unspecified parts of lumbar spine and pelvis, sequela','Y','0000-00-00 00:00:00'),(136851,10,'S33.9XXD ','Sprain of unspecified parts of lumbar spine and pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(136850,10,'S33.9XXA ','Sprain of unspecified parts of lumbar spine and pelvis, initial encounter','Y','0000-00-00 00:00:00'),(136849,10,'S33.8XXS ','Sprain of other parts of lumbar spine and pelvis, sequela','Y','0000-00-00 00:00:00'),(136848,10,'S33.8XXD ','Sprain of other parts of lumbar spine and pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(136846,10,'S33.6XXS ','Sprain of sacroiliac joint, sequela','Y','0000-00-00 00:00:00'),(136847,10,'S33.8XXA ','Sprain of other parts of lumbar spine and pelvis, initial encounter','Y','0000-00-00 00:00:00'),(136845,10,'S33.6XXD ','Sprain of sacroiliac joint, subsequent encounter','Y','0000-00-00 00:00:00'),(136844,10,'S33.6XXA ','Sprain of sacroiliac joint, initial encounter','Y','0000-00-00 00:00:00'),(136842,10,'S33.5XXD ','Sprain of ligaments of lumbar spine, subsequent encounter','Y','0000-00-00 00:00:00'),(136843,10,'S33.5XXS ','Sprain of ligaments of lumbar spine, sequela','Y','0000-00-00 00:00:00'),(136841,10,'S33.5XXA ','Sprain of ligaments of lumbar spine, initial encounter','Y','0000-00-00 00:00:00'),(136840,10,'S33.4XXS ','Traumatic rupture of symphysis pubis, sequela','Y','0000-00-00 00:00:00'),(136838,10,'S33.4XXA ','Traumatic rupture of symphysis pubis, initial encounter','Y','0000-00-00 00:00:00'),(136839,10,'S33.4XXD ','Traumatic rupture of symphysis pubis, subsequent encounter','Y','0000-00-00 00:00:00'),(136837,10,'S33.39XS ','Dislocation of other parts of lumbar spine and pelvis, sequela','Y','0000-00-00 00:00:00'),(136836,10,'S33.39XD ','Dislocation of other parts of lumbar spine and pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(136835,10,'S33.39XA ','Dislocation of other parts of lumbar spine and pelvis, initial encounter','Y','0000-00-00 00:00:00'),(136834,10,'S33.30XS ','Dislocation of unspecified parts of lumbar spine and pelvis, sequela','Y','0000-00-00 00:00:00'),(136833,10,'S33.30XD ','Dislocation of unspecified parts of lumbar spine and pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(136832,10,'S33.30XA ','Dislocation of unspecified parts of lumbar spine and pelvis, initial encounter','Y','0000-00-00 00:00:00'),(136831,10,'S33.2XXS ','Dislocation of sacroiliac and sacrococcygeal joint, sequela','Y','0000-00-00 00:00:00'),(136830,10,'S33.2XXD ','Dislocation of sacroiliac and sacrococcygeal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(136829,10,'S33.2XXA ','Dislocation of sacroiliac and sacrococcygeal joint, initial encounter','Y','0000-00-00 00:00:00'),(136827,10,'S33.141D ','Dislocation of L4/L5 lumbar vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(136828,10,'S33.141S ','Dislocation of L4/L5 lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136826,10,'S33.141A ','Dislocation of L4/L5 lumbar vertebra, initial encounter','Y','0000-00-00 00:00:00'),(136825,10,'S33.140S ','Subluxation of L4/L5 lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136824,10,'S33.140D ','Subluxation of L4/L5 lumbar vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(136822,10,'S33.131S ','Dislocation of L3/L4 lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136823,10,'S33.140A ','Subluxation of L4/L5 lumbar vertebra, initial encounter','Y','0000-00-00 00:00:00'),(136821,10,'S33.131D ','Dislocation of L3/L4 lumbar vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(136819,10,'S33.130S ','Subluxation of L3/L4 lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136820,10,'S33.131A ','Dislocation of L3/L4 lumbar vertebra, initial encounter','Y','0000-00-00 00:00:00'),(136818,10,'S33.130D ','Subluxation of L3/L4 lumbar vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(136817,10,'S33.130A ','Subluxation of L3/L4 lumbar vertebra, initial encounter','Y','0000-00-00 00:00:00'),(136816,10,'S33.121S ','Dislocation of L2/L3 lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136815,10,'S33.121D ','Dislocation of L2/L3 lumbar vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(136814,10,'S33.121A ','Dislocation of L2/L3 lumbar vertebra, initial encounter','Y','0000-00-00 00:00:00'),(136813,10,'S33.120S ','Subluxation of L2/L3 lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136812,10,'S33.120D ','Subluxation of L2/L3 lumbar vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(136811,10,'S33.120A ','Subluxation of L2/L3 lumbar vertebra, initial encounter','Y','0000-00-00 00:00:00'),(136810,10,'S33.111S ','Dislocation of L1/L2 lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136809,10,'S33.111D ','Dislocation of L1/L2 lumbar vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(136808,10,'S33.111A ','Dislocation of L1/L2 lumbar vertebra, initial encounter','Y','0000-00-00 00:00:00'),(136807,10,'S33.110S ','Subluxation of L1/L2 lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136806,10,'S33.110D ','Subluxation of L1/L2 lumbar vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(136805,10,'S33.110A ','Subluxation of L1/L2 lumbar vertebra, initial encounter','Y','0000-00-00 00:00:00'),(136804,10,'S33.101S ','Dislocation of unspecified lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136803,10,'S33.101D ','Dislocation of unspecified lumbar vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(136802,10,'S33.101A ','Dislocation of unspecified lumbar vertebra, initial encounter','Y','0000-00-00 00:00:00'),(136801,10,'S33.100S ','Subluxation of unspecified lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136800,10,'S33.100D ','Subluxation of unspecified lumbar vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(136799,10,'S33.100A ','Subluxation of unspecified lumbar vertebra, initial encounter','Y','0000-00-00 00:00:00'),(136798,10,'S33.0XXS ','Traumatic rupture of lumbar intervertebral disc, sequela','Y','0000-00-00 00:00:00'),(136797,10,'S33.0XXD ','Traumatic rupture of lumbar intervertebral disc, subsequent encounter','Y','0000-00-00 00:00:00'),(136796,10,'S33.0XXA ','Traumatic rupture of lumbar intervertebral disc, initial encounter','Y','0000-00-00 00:00:00'),(136795,10,'S32.9XXS ','Fracture of unspecified parts of lumbosacral spine and pelvis, sequela','Y','0000-00-00 00:00:00'),(136794,10,'S32.9XXK ','Fracture of unspecified parts of lumbosacral spine and pelvis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136793,10,'S32.9XXG ','Fracture of unspecified parts of lumbosacral spine and pelvis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136792,10,'S32.9XXD ','Fracture of unspecified parts of lumbosacral spine and pelvis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136791,10,'S32.9XXB ','Fracture of unspecified parts of lumbosacral spine and pelvis, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136790,10,'S32.9XXA ','Fracture of unspecified parts of lumbosacral spine and pelvis, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136789,10,'S32.89XS ','Fracture of other parts of pelvis, sequela','Y','0000-00-00 00:00:00'),(136788,10,'S32.89XK ','Fracture of other parts of pelvis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136787,10,'S32.89XG ','Fracture of other parts of pelvis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136786,10,'S32.89XD ','Fracture of other parts of pelvis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136785,10,'S32.89XB ','Fracture of other parts of pelvis, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136784,10,'S32.89XA ','Fracture of other parts of pelvis, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136783,10,'S32.82XS ','Multiple fractures of pelvis without disruption of pelvic ring, sequela','Y','0000-00-00 00:00:00'),(136782,10,'S32.82XK ','Multiple fractures of pelvis without disruption of pelvic ring, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136781,10,'S32.82XG ','Multiple fractures of pelvis without disruption of pelvic ring, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136780,10,'S32.82XD ','Multiple fractures of pelvis without disruption of pelvic ring, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136779,10,'S32.82XB ','Multiple fractures of pelvis without disruption of pelvic ring, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136778,10,'S32.82XA ','Multiple fractures of pelvis without disruption of pelvic ring, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136777,10,'S32.811S ','Multiple fractures of pelvis with unstable disruption of pelvic ring, sequela','Y','0000-00-00 00:00:00'),(136776,10,'S32.811K ','Multiple fractures of pelvis with unstable disruption of pelvic ring, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136775,10,'S32.811G ','Multiple fractures of pelvis with unstable disruption of pelvic ring, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136774,10,'S32.811D ','Multiple fractures of pelvis with unstable disruption of pelvic ring, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136773,10,'S32.811B ','Multiple fractures of pelvis with unstable disruption of pelvic ring, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136772,10,'S32.811A ','Multiple fractures of pelvis with unstable disruption of pelvic ring, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136771,10,'S32.810S ','Multiple fractures of pelvis with stable disruption of pelvic ring, sequela','Y','0000-00-00 00:00:00'),(136770,10,'S32.810K ','Multiple fractures of pelvis with stable disruption of pelvic ring, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136769,10,'S32.810G ','Multiple fractures of pelvis with stable disruption of pelvic ring, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136768,10,'S32.810D ','Multiple fractures of pelvis with stable disruption of pelvic ring, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136767,10,'S32.810B ','Multiple fractures of pelvis with stable disruption of pelvic ring, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136766,10,'S32.810A ','Multiple fractures of pelvis with stable disruption of pelvic ring, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136765,10,'S32.699S ','Other specified fracture of unspecified ischium, sequela','Y','0000-00-00 00:00:00'),(136764,10,'S32.699K ','Other specified fracture of unspecified ischium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136763,10,'S32.699G ','Other specified fracture of unspecified ischium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136762,10,'S32.699D ','Other specified fracture of unspecified ischium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136761,10,'S32.699B ','Other specified fracture of unspecified ischium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136760,10,'S32.699A ','Other specified fracture of unspecified ischium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136759,10,'S32.692S ','Other specified fracture of left ischium, sequela','Y','0000-00-00 00:00:00'),(136758,10,'S32.692K ','Other specified fracture of left ischium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136757,10,'S32.692G ','Other specified fracture of left ischium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136756,10,'S32.692D ','Other specified fracture of left ischium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136755,10,'S32.692B ','Other specified fracture of left ischium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136754,10,'S32.692A ','Other specified fracture of left ischium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136753,10,'S32.691S ','Other specified fracture of right ischium, sequela','Y','0000-00-00 00:00:00'),(136752,10,'S32.691K ','Other specified fracture of right ischium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136751,10,'S32.691G ','Other specified fracture of right ischium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136750,10,'S32.691D ','Other specified fracture of right ischium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136749,10,'S32.691B ','Other specified fracture of right ischium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136748,10,'S32.691A ','Other specified fracture of right ischium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136747,10,'S32.616S ','Nondisplaced avulsion fracture of unspecified ischium, sequela','Y','0000-00-00 00:00:00'),(136746,10,'S32.616K ','Nondisplaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136745,10,'S32.616G ','Nondisplaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136744,10,'S32.616D ','Nondisplaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136743,10,'S32.616B ','Nondisplaced avulsion fracture of unspecified ischium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136742,10,'S32.616A ','Nondisplaced avulsion fracture of unspecified ischium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136741,10,'S32.615S ','Nondisplaced avulsion fracture of left ischium, sequela','Y','0000-00-00 00:00:00'),(136740,10,'S32.615K ','Nondisplaced avulsion fracture of left ischium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136739,10,'S32.615G ','Nondisplaced avulsion fracture of left ischium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136738,10,'S32.615D ','Nondisplaced avulsion fracture of left ischium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136737,10,'S32.615B ','Nondisplaced avulsion fracture of left ischium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136736,10,'S32.615A ','Nondisplaced avulsion fracture of left ischium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136735,10,'S32.614S ','Nondisplaced avulsion fracture of right ischium, sequela','Y','0000-00-00 00:00:00'),(136734,10,'S32.614K ','Nondisplaced avulsion fracture of right ischium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136733,10,'S32.614G ','Nondisplaced avulsion fracture of right ischium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136732,10,'S32.614D ','Nondisplaced avulsion fracture of right ischium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136731,10,'S32.614B ','Nondisplaced avulsion fracture of right ischium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136730,10,'S32.614A ','Nondisplaced avulsion fracture of right ischium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136729,10,'S32.613S ','Displaced avulsion fracture of unspecified ischium, sequela','Y','0000-00-00 00:00:00'),(136728,10,'S32.613K ','Displaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136727,10,'S32.613G ','Displaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136726,10,'S32.613D ','Displaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136725,10,'S32.613B ','Displaced avulsion fracture of unspecified ischium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136724,10,'S32.613A ','Displaced avulsion fracture of unspecified ischium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136723,10,'S32.612S ','Displaced avulsion fracture of left ischium, sequela','Y','0000-00-00 00:00:00'),(136722,10,'S32.612K ','Displaced avulsion fracture of left ischium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136721,10,'S32.612G ','Displaced avulsion fracture of left ischium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136720,10,'S32.612D ','Displaced avulsion fracture of left ischium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136719,10,'S32.612B ','Displaced avulsion fracture of left ischium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136718,10,'S32.612A ','Displaced avulsion fracture of left ischium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136717,10,'S32.611S ','Displaced avulsion fracture of right ischium, sequela','Y','0000-00-00 00:00:00'),(136716,10,'S32.611K ','Displaced avulsion fracture of right ischium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136715,10,'S32.611G ','Displaced avulsion fracture of right ischium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136714,10,'S32.611D ','Displaced avulsion fracture of right ischium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136713,10,'S32.611B ','Displaced avulsion fracture of right ischium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136712,10,'S32.611A ','Displaced avulsion fracture of right ischium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136711,10,'S32.609S ','Unspecified fracture of unspecified ischium, sequela','Y','0000-00-00 00:00:00'),(136710,10,'S32.609K ','Unspecified fracture of unspecified ischium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136709,10,'S32.609G ','Unspecified fracture of unspecified ischium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136708,10,'S32.609D ','Unspecified fracture of unspecified ischium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136707,10,'S32.609B ','Unspecified fracture of unspecified ischium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136706,10,'S32.609A ','Unspecified fracture of unspecified ischium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136705,10,'S32.602S ','Unspecified fracture of left ischium, sequela','Y','0000-00-00 00:00:00'),(136704,10,'S32.602K ','Unspecified fracture of left ischium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136703,10,'S32.602G ','Unspecified fracture of left ischium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136702,10,'S32.602D ','Unspecified fracture of left ischium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136701,10,'S32.602B ','Unspecified fracture of left ischium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136700,10,'S32.602A ','Unspecified fracture of left ischium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136699,10,'S32.601S ','Unspecified fracture of right ischium, sequela','Y','0000-00-00 00:00:00'),(136698,10,'S32.601K ','Unspecified fracture of right ischium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136697,10,'S32.601G ','Unspecified fracture of right ischium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136696,10,'S32.601D ','Unspecified fracture of right ischium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136695,10,'S32.601B ','Unspecified fracture of right ischium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136694,10,'S32.601A ','Unspecified fracture of right ischium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136693,10,'S32.599S ','Other specified fracture of unspecified pubis, sequela','Y','0000-00-00 00:00:00'),(136692,10,'S32.599K ','Other specified fracture of unspecified pubis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136691,10,'S32.599G ','Other specified fracture of unspecified pubis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136690,10,'S32.599D ','Other specified fracture of unspecified pubis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136689,10,'S32.599B ','Other specified fracture of unspecified pubis, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136688,10,'S32.599A ','Other specified fracture of unspecified pubis, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136687,10,'S32.592S ','Other specified fracture of left pubis, sequela','Y','0000-00-00 00:00:00'),(136686,10,'S32.592K ','Other specified fracture of left pubis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136685,10,'S32.592G ','Other specified fracture of left pubis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136684,10,'S32.592D ','Other specified fracture of left pubis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136683,10,'S32.592B ','Other specified fracture of left pubis, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136682,10,'S32.592A ','Other specified fracture of left pubis, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136681,10,'S32.591S ','Other specified fracture of right pubis, sequela','Y','0000-00-00 00:00:00'),(136680,10,'S32.591K ','Other specified fracture of right pubis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136679,10,'S32.591G ','Other specified fracture of right pubis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136678,10,'S32.591D ','Other specified fracture of right pubis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136677,10,'S32.591B ','Other specified fracture of right pubis, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136676,10,'S32.591A ','Other specified fracture of right pubis, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136675,10,'S32.519S ','Fracture of superior rim of unspecified pubis, sequela','Y','0000-00-00 00:00:00'),(136674,10,'S32.519K ','Fracture of superior rim of unspecified pubis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136673,10,'S32.519G ','Fracture of superior rim of unspecified pubis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136672,10,'S32.519D ','Fracture of superior rim of unspecified pubis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136671,10,'S32.519B ','Fracture of superior rim of unspecified pubis, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136670,10,'S32.519A ','Fracture of superior rim of unspecified pubis, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136669,10,'S32.512S ','Fracture of superior rim of left pubis, sequela','Y','0000-00-00 00:00:00'),(136668,10,'S32.512K ','Fracture of superior rim of left pubis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136667,10,'S32.512G ','Fracture of superior rim of left pubis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136666,10,'S32.512D ','Fracture of superior rim of left pubis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136665,10,'S32.512B ','Fracture of superior rim of left pubis, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136664,10,'S32.512A ','Fracture of superior rim of left pubis, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136663,10,'S32.511S ','Fracture of superior rim of right pubis, sequela','Y','0000-00-00 00:00:00'),(136662,10,'S32.511K ','Fracture of superior rim of right pubis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136661,10,'S32.511G ','Fracture of superior rim of right pubis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136660,10,'S32.511D ','Fracture of superior rim of right pubis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136659,10,'S32.511B ','Fracture of superior rim of right pubis, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136658,10,'S32.511A ','Fracture of superior rim of right pubis, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136657,10,'S32.509S ','Unspecified fracture of unspecified pubis, sequela','Y','0000-00-00 00:00:00'),(136656,10,'S32.509K ','Unspecified fracture of unspecified pubis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136655,10,'S32.509G ','Unspecified fracture of unspecified pubis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136654,10,'S32.509D ','Unspecified fracture of unspecified pubis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136653,10,'S32.509B ','Unspecified fracture of unspecified pubis, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136652,10,'S32.509A ','Unspecified fracture of unspecified pubis, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136651,10,'S32.502S ','Unspecified fracture of left pubis, sequela','Y','0000-00-00 00:00:00'),(136650,10,'S32.502K ','Unspecified fracture of left pubis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136649,10,'S32.502G ','Unspecified fracture of left pubis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136648,10,'S32.502D ','Unspecified fracture of left pubis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136647,10,'S32.502B ','Unspecified fracture of left pubis, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136646,10,'S32.502A ','Unspecified fracture of left pubis, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136645,10,'S32.501S ','Unspecified fracture of right pubis, sequela','Y','0000-00-00 00:00:00'),(136644,10,'S32.501K ','Unspecified fracture of right pubis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136643,10,'S32.501G ','Unspecified fracture of right pubis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136642,10,'S32.501D ','Unspecified fracture of right pubis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136641,10,'S32.501B ','Unspecified fracture of right pubis, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136640,10,'S32.501A ','Unspecified fracture of right pubis, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136639,10,'S32.499S ','Other specified fracture of unspecified acetabulum, sequela','Y','0000-00-00 00:00:00'),(136638,10,'S32.499K ','Other specified fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136637,10,'S32.499G ','Other specified fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136636,10,'S32.499D ','Other specified fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136635,10,'S32.499B ','Other specified fracture of unspecified acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136634,10,'S32.499A ','Other specified fracture of unspecified acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136633,10,'S32.492S ','Other specified fracture of left acetabulum, sequela','Y','0000-00-00 00:00:00'),(136632,10,'S32.492K ','Other specified fracture of left acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136631,10,'S32.492G ','Other specified fracture of left acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136630,10,'S32.492D ','Other specified fracture of left acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136629,10,'S32.492B ','Other specified fracture of left acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136628,10,'S32.492A ','Other specified fracture of left acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136627,10,'S32.491S ','Other specified fracture of right acetabulum, sequela','Y','0000-00-00 00:00:00'),(136626,10,'S32.491K ','Other specified fracture of right acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136625,10,'S32.491G ','Other specified fracture of right acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136624,10,'S32.491D ','Other specified fracture of right acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136623,10,'S32.491B ','Other specified fracture of right acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136622,10,'S32.491A ','Other specified fracture of right acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136621,10,'S32.486S ','Nondisplaced dome fracture of unspecified acetabulum, sequela','Y','0000-00-00 00:00:00'),(136620,10,'S32.486K ','Nondisplaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136619,10,'S32.486G ','Nondisplaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136618,10,'S32.486D ','Nondisplaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136617,10,'S32.486B ','Nondisplaced dome fracture of unspecified acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136616,10,'S32.486A ','Nondisplaced dome fracture of unspecified acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136615,10,'S32.485S ','Nondisplaced dome fracture of left acetabulum, sequela','Y','0000-00-00 00:00:00'),(136614,10,'S32.485K ','Nondisplaced dome fracture of left acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136613,10,'S32.485G ','Nondisplaced dome fracture of left acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136612,10,'S32.485D ','Nondisplaced dome fracture of left acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136611,10,'S32.485B ','Nondisplaced dome fracture of left acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136610,10,'S32.485A ','Nondisplaced dome fracture of left acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136609,10,'S32.484S ','Nondisplaced dome fracture of right acetabulum, sequela','Y','0000-00-00 00:00:00'),(136608,10,'S32.484K ','Nondisplaced dome fracture of right acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136607,10,'S32.484G ','Nondisplaced dome fracture of right acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136606,10,'S32.484D ','Nondisplaced dome fracture of right acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136605,10,'S32.484B ','Nondisplaced dome fracture of right acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136604,10,'S32.484A ','Nondisplaced dome fracture of right acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136603,10,'S32.483S ','Displaced dome fracture of unspecified acetabulum, sequela','Y','0000-00-00 00:00:00'),(136602,10,'S32.483K ','Displaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136601,10,'S32.483G ','Displaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136600,10,'S32.483D ','Displaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136599,10,'S32.483B ','Displaced dome fracture of unspecified acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136598,10,'S32.483A ','Displaced dome fracture of unspecified acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136597,10,'S32.482S ','Displaced dome fracture of left acetabulum, sequela','Y','0000-00-00 00:00:00'),(136596,10,'S32.482K ','Displaced dome fracture of left acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136595,10,'S32.482G ','Displaced dome fracture of left acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136594,10,'S32.482D ','Displaced dome fracture of left acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136593,10,'S32.482B ','Displaced dome fracture of left acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136592,10,'S32.482A ','Displaced dome fracture of left acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136591,10,'S32.481S ','Displaced dome fracture of right acetabulum, sequela','Y','0000-00-00 00:00:00'),(136590,10,'S32.481K ','Displaced dome fracture of right acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136589,10,'S32.481G ','Displaced dome fracture of right acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136588,10,'S32.481D ','Displaced dome fracture of right acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136587,10,'S32.481B ','Displaced dome fracture of right acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136586,10,'S32.481A ','Displaced dome fracture of right acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136585,10,'S32.476S ','Nondisplaced fracture of medial wall of unspecified acetabulum, sequela','Y','0000-00-00 00:00:00'),(136584,10,'S32.476K ','Nondisplaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136583,10,'S32.476G ','Nondisplaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136582,10,'S32.476D ','Nondisplaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136581,10,'S32.476B ','Nondisplaced fracture of medial wall of unspecified acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136580,10,'S32.476A ','Nondisplaced fracture of medial wall of unspecified acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136579,10,'S32.475S ','Nondisplaced fracture of medial wall of left acetabulum, sequela','Y','0000-00-00 00:00:00'),(136578,10,'S32.475K ','Nondisplaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136577,10,'S32.475G ','Nondisplaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136576,10,'S32.475D ','Nondisplaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136575,10,'S32.475B ','Nondisplaced fracture of medial wall of left acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136574,10,'S32.475A ','Nondisplaced fracture of medial wall of left acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136573,10,'S32.474S ','Nondisplaced fracture of medial wall of right acetabulum, sequela','Y','0000-00-00 00:00:00'),(136572,10,'S32.474K ','Nondisplaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136571,10,'S32.474G ','Nondisplaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136570,10,'S32.474D ','Nondisplaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136569,10,'S32.474B ','Nondisplaced fracture of medial wall of right acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136568,10,'S32.474A ','Nondisplaced fracture of medial wall of right acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136567,10,'S32.473S ','Displaced fracture of medial wall of unspecified acetabulum, sequela','Y','0000-00-00 00:00:00'),(136566,10,'S32.473K ','Displaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136565,10,'S32.473G ','Displaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136564,10,'S32.473D ','Displaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136563,10,'S32.473B ','Displaced fracture of medial wall of unspecified acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136562,10,'S32.473A ','Displaced fracture of medial wall of unspecified acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136561,10,'S32.472S ','Displaced fracture of medial wall of left acetabulum, sequela','Y','0000-00-00 00:00:00'),(136560,10,'S32.472K ','Displaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136559,10,'S32.472G ','Displaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136558,10,'S32.472D ','Displaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136557,10,'S32.472B ','Displaced fracture of medial wall of left acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136556,10,'S32.472A ','Displaced fracture of medial wall of left acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136555,10,'S32.471S ','Displaced fracture of medial wall of right acetabulum, sequela','Y','0000-00-00 00:00:00'),(136554,10,'S32.471K ','Displaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136553,10,'S32.471G ','Displaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136552,10,'S32.471D ','Displaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136551,10,'S32.471B ','Displaced fracture of medial wall of right acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136550,10,'S32.471A ','Displaced fracture of medial wall of right acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136549,10,'S32.466S ','Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, sequela','Y','0000-00-00 00:00:00'),(136548,10,'S32.466K ','Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136547,10,'S32.466G ','Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136546,10,'S32.466D ','Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136545,10,'S32.466B ','Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136544,10,'S32.466A ','Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136543,10,'S32.465S ','Nondisplaced associated transverse-posterior fracture of left acetabulum, sequela','Y','0000-00-00 00:00:00'),(136542,10,'S32.465K ','Nondisplaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136541,10,'S32.465G ','Nondisplaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136540,10,'S32.465D ','Nondisplaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136539,10,'S32.465B ','Nondisplaced associated transverse-posterior fracture of left acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136538,10,'S32.465A ','Nondisplaced associated transverse-posterior fracture of left acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136537,10,'S32.464S ','Nondisplaced associated transverse-posterior fracture of right acetabulum, sequela','Y','0000-00-00 00:00:00'),(136536,10,'S32.464K ','Nondisplaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136535,10,'S32.464G ','Nondisplaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136534,10,'S32.464D ','Nondisplaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136533,10,'S32.464B ','Nondisplaced associated transverse-posterior fracture of right acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136532,10,'S32.464A ','Nondisplaced associated transverse-posterior fracture of right acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136531,10,'S32.463S ','Displaced associated transverse-posterior fracture of unspecified acetabulum, sequela','Y','0000-00-00 00:00:00'),(136530,10,'S32.463K ','Displaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136529,10,'S32.463G ','Displaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136528,10,'S32.463D ','Displaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136527,10,'S32.463B ','Displaced associated transverse-posterior fracture of unspecified acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136526,10,'S32.463A ','Displaced associated transverse-posterior fracture of unspecified acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136525,10,'S32.462S ','Displaced associated transverse-posterior fracture of left acetabulum, sequela','Y','0000-00-00 00:00:00'),(136524,10,'S32.462K ','Displaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136523,10,'S32.462G ','Displaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136522,10,'S32.462D ','Displaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136521,10,'S32.462B ','Displaced associated transverse-posterior fracture of left acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136520,10,'S32.462A ','Displaced associated transverse-posterior fracture of left acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136519,10,'S32.461S ','Displaced associated transverse-posterior fracture of right acetabulum, sequela','Y','0000-00-00 00:00:00'),(136518,10,'S32.461K ','Displaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136517,10,'S32.461G ','Displaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136516,10,'S32.461D ','Displaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136515,10,'S32.461B ','Displaced associated transverse-posterior fracture of right acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136514,10,'S32.461A ','Displaced associated transverse-posterior fracture of right acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136513,10,'S32.456S ','Nondisplaced transverse fracture of unspecified acetabulum, sequela','Y','0000-00-00 00:00:00'),(136512,10,'S32.456K ','Nondisplaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136511,10,'S32.456G ','Nondisplaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136510,10,'S32.456D ','Nondisplaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136509,10,'S32.456B ','Nondisplaced transverse fracture of unspecified acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136508,10,'S32.456A ','Nondisplaced transverse fracture of unspecified acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136507,10,'S32.455S ','Nondisplaced transverse fracture of left acetabulum, sequela','Y','0000-00-00 00:00:00'),(136506,10,'S32.455K ','Nondisplaced transverse fracture of left acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136505,10,'S32.455G ','Nondisplaced transverse fracture of left acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136504,10,'S32.455D ','Nondisplaced transverse fracture of left acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136503,10,'S32.455B ','Nondisplaced transverse fracture of left acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136502,10,'S32.455A ','Nondisplaced transverse fracture of left acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136501,10,'S32.454S ','Nondisplaced transverse fracture of right acetabulum, sequela','Y','0000-00-00 00:00:00'),(136500,10,'S32.454K ','Nondisplaced transverse fracture of right acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136499,10,'S32.454G ','Nondisplaced transverse fracture of right acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136498,10,'S32.454D ','Nondisplaced transverse fracture of right acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136497,10,'S32.454B ','Nondisplaced transverse fracture of right acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136496,10,'S32.454A ','Nondisplaced transverse fracture of right acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136495,10,'S32.453S ','Displaced transverse fracture of unspecified acetabulum, sequela','Y','0000-00-00 00:00:00'),(136494,10,'S32.453K ','Displaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136493,10,'S32.453G ','Displaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136492,10,'S32.453D ','Displaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136491,10,'S32.453B ','Displaced transverse fracture of unspecified acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136490,10,'S32.453A ','Displaced transverse fracture of unspecified acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136489,10,'S32.452S ','Displaced transverse fracture of left acetabulum, sequela','Y','0000-00-00 00:00:00'),(136488,10,'S32.452K ','Displaced transverse fracture of left acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136487,10,'S32.452G ','Displaced transverse fracture of left acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136486,10,'S32.452D ','Displaced transverse fracture of left acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136485,10,'S32.452B ','Displaced transverse fracture of left acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136484,10,'S32.452A ','Displaced transverse fracture of left acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136483,10,'S32.451S ','Displaced transverse fracture of right acetabulum, sequela','Y','0000-00-00 00:00:00'),(136482,10,'S32.451K ','Displaced transverse fracture of right acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136481,10,'S32.451G ','Displaced transverse fracture of right acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136480,10,'S32.451D ','Displaced transverse fracture of right acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136479,10,'S32.451B ','Displaced transverse fracture of right acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136478,10,'S32.451A ','Displaced transverse fracture of right acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136477,10,'S32.446S ','Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, sequela','Y','0000-00-00 00:00:00'),(136476,10,'S32.446K ','Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136475,10,'S32.446G ','Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136474,10,'S32.446D ','Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136473,10,'S32.446B ','Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136472,10,'S32.446A ','Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136471,10,'S32.445S ','Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, sequela','Y','0000-00-00 00:00:00'),(136470,10,'S32.445K ','Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136469,10,'S32.445G ','Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136468,10,'S32.445D ','Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136467,10,'S32.445B ','Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136466,10,'S32.445A ','Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136465,10,'S32.444S ','Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, sequela','Y','0000-00-00 00:00:00'),(136464,10,'S32.444K ','Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136463,10,'S32.444G ','Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136462,10,'S32.444D ','Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136461,10,'S32.444B ','Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136460,10,'S32.444A ','Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136459,10,'S32.443S ','Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, sequela','Y','0000-00-00 00:00:00'),(136458,10,'S32.443K ','Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136457,10,'S32.443G ','Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136456,10,'S32.443D ','Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136455,10,'S32.443B ','Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136453,10,'S32.442S ','Displaced fracture of posterior column [ilioischial] of left acetabulum, sequela','Y','0000-00-00 00:00:00'),(136454,10,'S32.443A ','Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136452,10,'S32.442K ','Displaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136451,10,'S32.442G ','Displaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136450,10,'S32.442D ','Displaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136449,10,'S32.442B ','Displaced fracture of posterior column [ilioischial] of left acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136448,10,'S32.442A ','Displaced fracture of posterior column [ilioischial] of left acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136447,10,'S32.441S ','Displaced fracture of posterior column [ilioischial] of right acetabulum, sequela','Y','0000-00-00 00:00:00'),(136446,10,'S32.441K ','Displaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136445,10,'S32.441G ','Displaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136444,10,'S32.441D ','Displaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136443,10,'S32.441B ','Displaced fracture of posterior column [ilioischial] of right acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136441,10,'S32.436S ','Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, sequela','Y','0000-00-00 00:00:00'),(136442,10,'S32.441A ','Displaced fracture of posterior column [ilioischial] of right acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136440,10,'S32.436K ','Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136439,10,'S32.436G ','Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136438,10,'S32.436D ','Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136437,10,'S32.436B ','Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136436,10,'S32.436A ','Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136435,10,'S32.435S ','Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, sequela','Y','0000-00-00 00:00:00'),(136434,10,'S32.435K ','Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136433,10,'S32.435G ','Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136432,10,'S32.435D ','Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136431,10,'S32.435B ','Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136430,10,'S32.435A ','Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136429,10,'S32.434S ','Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, sequela','Y','0000-00-00 00:00:00'),(136428,10,'S32.434K ','Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136427,10,'S32.434G ','Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136426,10,'S32.434D ','Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136425,10,'S32.434B ','Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136424,10,'S32.434A ','Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136423,10,'S32.433S ','Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, sequela','Y','0000-00-00 00:00:00'),(136422,10,'S32.433K ','Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136421,10,'S32.433G ','Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136420,10,'S32.433D ','Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136419,10,'S32.433B ','Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136418,10,'S32.433A ','Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136417,10,'S32.432S ','Displaced fracture of anterior column [iliopubic] of left acetabulum, sequela','Y','0000-00-00 00:00:00'),(136416,10,'S32.432K ','Displaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136415,10,'S32.432G ','Displaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136414,10,'S32.432D ','Displaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136413,10,'S32.432B ','Displaced fracture of anterior column [iliopubic] of left acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136412,10,'S32.432A ','Displaced fracture of anterior column [iliopubic] of left acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136411,10,'S32.431S ','Displaced fracture of anterior column [iliopubic] of right acetabulum, sequela','Y','0000-00-00 00:00:00'),(136410,10,'S32.431K ','Displaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136409,10,'S32.431G ','Displaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136408,10,'S32.431D ','Displaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136407,10,'S32.431B ','Displaced fracture of anterior column [iliopubic] of right acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136406,10,'S32.431A ','Displaced fracture of anterior column [iliopubic] of right acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136405,10,'S32.426S ','Nondisplaced fracture of posterior wall of unspecified acetabulum, sequela','Y','0000-00-00 00:00:00'),(136404,10,'S32.426K ','Nondisplaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136403,10,'S32.426G ','Nondisplaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136402,10,'S32.426D ','Nondisplaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136401,10,'S32.426B ','Nondisplaced fracture of posterior wall of unspecified acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136400,10,'S32.426A ','Nondisplaced fracture of posterior wall of unspecified acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136399,10,'S32.425S ','Nondisplaced fracture of posterior wall of left acetabulum, sequela','Y','0000-00-00 00:00:00'),(136398,10,'S32.425K ','Nondisplaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136397,10,'S32.425G ','Nondisplaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136396,10,'S32.425D ','Nondisplaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136395,10,'S32.425B ','Nondisplaced fracture of posterior wall of left acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136393,10,'S32.424S ','Nondisplaced fracture of posterior wall of right acetabulum, sequela','Y','0000-00-00 00:00:00'),(136394,10,'S32.425A ','Nondisplaced fracture of posterior wall of left acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136392,10,'S32.424K ','Nondisplaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136391,10,'S32.424G ','Nondisplaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136390,10,'S32.424D ','Nondisplaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136389,10,'S32.424B ','Nondisplaced fracture of posterior wall of right acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136388,10,'S32.424A ','Nondisplaced fracture of posterior wall of right acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136387,10,'S32.423S ','Displaced fracture of posterior wall of unspecified acetabulum, sequela','Y','0000-00-00 00:00:00'),(136386,10,'S32.423K ','Displaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136385,10,'S32.423G ','Displaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136384,10,'S32.423D ','Displaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136383,10,'S32.423B ','Displaced fracture of posterior wall of unspecified acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136382,10,'S32.423A ','Displaced fracture of posterior wall of unspecified acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136380,10,'S32.422K ','Displaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136381,10,'S32.422S ','Displaced fracture of posterior wall of left acetabulum, sequela','Y','0000-00-00 00:00:00'),(136379,10,'S32.422G ','Displaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136378,10,'S32.422D ','Displaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136377,10,'S32.422B ','Displaced fracture of posterior wall of left acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136376,10,'S32.422A ','Displaced fracture of posterior wall of left acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136375,10,'S32.421S ','Displaced fracture of posterior wall of right acetabulum, sequela','Y','0000-00-00 00:00:00'),(136374,10,'S32.421K ','Displaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136373,10,'S32.421G ','Displaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136372,10,'S32.421D ','Displaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136371,10,'S32.421B ','Displaced fracture of posterior wall of right acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136370,10,'S32.421A ','Displaced fracture of posterior wall of right acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136369,10,'S32.416S ','Nondisplaced fracture of anterior wall of unspecified acetabulum, sequela','Y','0000-00-00 00:00:00'),(136368,10,'S32.416K ','Nondisplaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136367,10,'S32.416G ','Nondisplaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136366,10,'S32.416D ','Nondisplaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136365,10,'S32.416B ','Nondisplaced fracture of anterior wall of unspecified acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136363,10,'S32.415S ','Nondisplaced fracture of anterior wall of left acetabulum, sequela','Y','0000-00-00 00:00:00'),(136364,10,'S32.416A ','Nondisplaced fracture of anterior wall of unspecified acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136362,10,'S32.415K ','Nondisplaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136361,10,'S32.415G ','Nondisplaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136360,10,'S32.415D ','Nondisplaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136359,10,'S32.415B ','Nondisplaced fracture of anterior wall of left acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136358,10,'S32.415A ','Nondisplaced fracture of anterior wall of left acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136357,10,'S32.414S ','Nondisplaced fracture of anterior wall of right acetabulum, sequela','Y','0000-00-00 00:00:00'),(136356,10,'S32.414K ','Nondisplaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136355,10,'S32.414G ','Nondisplaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136354,10,'S32.414D ','Nondisplaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136353,10,'S32.414B ','Nondisplaced fracture of anterior wall of right acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136352,10,'S32.414A ','Nondisplaced fracture of anterior wall of right acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136351,10,'S32.413S ','Displaced fracture of anterior wall of unspecified acetabulum, sequela','Y','0000-00-00 00:00:00'),(136350,10,'S32.413K ','Displaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136349,10,'S32.413G ','Displaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136348,10,'S32.413D ','Displaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136347,10,'S32.413B ','Displaced fracture of anterior wall of unspecified acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136346,10,'S32.413A ','Displaced fracture of anterior wall of unspecified acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136345,10,'S32.412S ','Displaced fracture of anterior wall of left acetabulum, sequela','Y','0000-00-00 00:00:00'),(136344,10,'S32.412K ','Displaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136343,10,'S32.412G ','Displaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136342,10,'S32.412D ','Displaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136340,10,'S32.412A ','Displaced fracture of anterior wall of left acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136341,10,'S32.412B ','Displaced fracture of anterior wall of left acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136339,10,'S32.411S ','Displaced fracture of anterior wall of right acetabulum, sequela','Y','0000-00-00 00:00:00'),(136338,10,'S32.411K ','Displaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136337,10,'S32.411G ','Displaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136336,10,'S32.411D ','Displaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136335,10,'S32.411B ','Displaced fracture of anterior wall of right acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136333,10,'S32.409S ','Unspecified fracture of unspecified acetabulum, sequela','Y','0000-00-00 00:00:00'),(136334,10,'S32.411A ','Displaced fracture of anterior wall of right acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136332,10,'S32.409K ','Unspecified fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136331,10,'S32.409G ','Unspecified fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136330,10,'S32.409D ','Unspecified fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136329,10,'S32.409B ','Unspecified fracture of unspecified acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136327,10,'S32.402S ','Unspecified fracture of left acetabulum, sequela','Y','0000-00-00 00:00:00'),(136328,10,'S32.409A ','Unspecified fracture of unspecified acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136326,10,'S32.402K ','Unspecified fracture of left acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136325,10,'S32.402G ','Unspecified fracture of left acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136324,10,'S32.402D ','Unspecified fracture of left acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136322,10,'S32.402A ','Unspecified fracture of left acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136323,10,'S32.402B ','Unspecified fracture of left acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136321,10,'S32.401S ','Unspecified fracture of right acetabulum, sequela','Y','0000-00-00 00:00:00'),(136320,10,'S32.401K ','Unspecified fracture of right acetabulum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136319,10,'S32.401G ','Unspecified fracture of right acetabulum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136318,10,'S32.401D ','Unspecified fracture of right acetabulum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136317,10,'S32.401B ','Unspecified fracture of right acetabulum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136315,10,'S32.399S ','Other fracture of unspecified ilium, sequela','Y','0000-00-00 00:00:00'),(136316,10,'S32.401A ','Unspecified fracture of right acetabulum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136314,10,'S32.399K ','Other fracture of unspecified ilium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136313,10,'S32.399G ','Other fracture of unspecified ilium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136311,10,'S32.399B ','Other fracture of unspecified ilium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136312,10,'S32.399D ','Other fracture of unspecified ilium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136309,10,'S32.392S ','Other fracture of left ilium, sequela','Y','0000-00-00 00:00:00'),(136310,10,'S32.399A ','Other fracture of unspecified ilium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136308,10,'S32.392K ','Other fracture of left ilium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136307,10,'S32.392G ','Other fracture of left ilium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136305,10,'S32.392B ','Other fracture of left ilium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136306,10,'S32.392D ','Other fracture of left ilium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136304,10,'S32.392A ','Other fracture of left ilium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136302,10,'S32.391K ','Other fracture of right ilium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136303,10,'S32.391S ','Other fracture of right ilium, sequela','Y','0000-00-00 00:00:00'),(136301,10,'S32.391G ','Other fracture of right ilium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136300,10,'S32.391D ','Other fracture of right ilium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136299,10,'S32.391B ','Other fracture of right ilium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136297,10,'S32.316S ','Nondisplaced avulsion fracture of unspecified ilium, sequela','Y','0000-00-00 00:00:00'),(136298,10,'S32.391A ','Other fracture of right ilium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136296,10,'S32.316K ','Nondisplaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136295,10,'S32.316G ','Nondisplaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136294,10,'S32.316D ','Nondisplaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136293,10,'S32.316B ','Nondisplaced avulsion fracture of unspecified ilium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136291,10,'S32.315S ','Nondisplaced avulsion fracture of left ilium, sequela','Y','0000-00-00 00:00:00'),(136292,10,'S32.316A ','Nondisplaced avulsion fracture of unspecified ilium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136290,10,'S32.315K ','Nondisplaced avulsion fracture of left ilium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136289,10,'S32.315G ','Nondisplaced avulsion fracture of left ilium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136288,10,'S32.315D ','Nondisplaced avulsion fracture of left ilium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136287,10,'S32.315B ','Nondisplaced avulsion fracture of left ilium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136286,10,'S32.315A ','Nondisplaced avulsion fracture of left ilium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136285,10,'S32.314S ','Nondisplaced avulsion fracture of right ilium, sequela','Y','0000-00-00 00:00:00'),(136284,10,'S32.314K ','Nondisplaced avulsion fracture of right ilium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136283,10,'S32.314G ','Nondisplaced avulsion fracture of right ilium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136282,10,'S32.314D ','Nondisplaced avulsion fracture of right ilium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136281,10,'S32.314B ','Nondisplaced avulsion fracture of right ilium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136280,10,'S32.314A ','Nondisplaced avulsion fracture of right ilium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136279,10,'S32.313S ','Displaced avulsion fracture of unspecified ilium, sequela','Y','0000-00-00 00:00:00'),(136278,10,'S32.313K ','Displaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136277,10,'S32.313G ','Displaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136276,10,'S32.313D ','Displaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136275,10,'S32.313B ','Displaced avulsion fracture of unspecified ilium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136274,10,'S32.313A ','Displaced avulsion fracture of unspecified ilium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136273,10,'S32.312S ','Displaced avulsion fracture of left ilium, sequela','Y','0000-00-00 00:00:00'),(136272,10,'S32.312K ','Displaced avulsion fracture of left ilium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136271,10,'S32.312G ','Displaced avulsion fracture of left ilium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136270,10,'S32.312D ','Displaced avulsion fracture of left ilium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136269,10,'S32.312B ','Displaced avulsion fracture of left ilium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136267,10,'S32.311S ','Displaced avulsion fracture of right ilium, sequela','Y','0000-00-00 00:00:00'),(136268,10,'S32.312A ','Displaced avulsion fracture of left ilium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136266,10,'S32.311K ','Displaced avulsion fracture of right ilium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136265,10,'S32.311G ','Displaced avulsion fracture of right ilium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136263,10,'S32.311B ','Displaced avulsion fracture of right ilium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136264,10,'S32.311D ','Displaced avulsion fracture of right ilium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136262,10,'S32.311A ','Displaced avulsion fracture of right ilium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136261,10,'S32.309S ','Unspecified fracture of unspecified ilium, sequela','Y','0000-00-00 00:00:00'),(136260,10,'S32.309K ','Unspecified fracture of unspecified ilium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136259,10,'S32.309G ','Unspecified fracture of unspecified ilium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136258,10,'S32.309D ','Unspecified fracture of unspecified ilium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136257,10,'S32.309B ','Unspecified fracture of unspecified ilium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136255,10,'S32.302S ','Unspecified fracture of left ilium, sequela','Y','0000-00-00 00:00:00'),(136256,10,'S32.309A ','Unspecified fracture of unspecified ilium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136254,10,'S32.302K ','Unspecified fracture of left ilium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136253,10,'S32.302G ','Unspecified fracture of left ilium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136252,10,'S32.302D ','Unspecified fracture of left ilium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136251,10,'S32.302B ','Unspecified fracture of left ilium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136249,10,'S32.301S ','Unspecified fracture of right ilium, sequela','Y','0000-00-00 00:00:00'),(136250,10,'S32.302A ','Unspecified fracture of left ilium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136248,10,'S32.301K ','Unspecified fracture of right ilium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136247,10,'S32.301G ','Unspecified fracture of right ilium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136246,10,'S32.301D ','Unspecified fracture of right ilium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136245,10,'S32.301B ','Unspecified fracture of right ilium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136244,10,'S32.301A ','Unspecified fracture of right ilium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136242,10,'S32.2XXK ','Fracture of coccyx, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136243,10,'S32.2XXS ','Fracture of coccyx, sequela','Y','0000-00-00 00:00:00'),(136241,10,'S32.2XXG ','Fracture of coccyx, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136240,10,'S32.2XXD ','Fracture of coccyx, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136239,10,'S32.2XXB ','Fracture of coccyx, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136237,10,'S32.19XS ','Other fracture of sacrum, sequela','Y','0000-00-00 00:00:00'),(136238,10,'S32.2XXA ','Fracture of coccyx, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136236,10,'S32.19XK ','Other fracture of sacrum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136235,10,'S32.19XG ','Other fracture of sacrum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136234,10,'S32.19XD ','Other fracture of sacrum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136233,10,'S32.19XB ','Other fracture of sacrum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136232,10,'S32.19XA ','Other fracture of sacrum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136231,10,'S32.17XS ','Type 4 fracture of sacrum, sequela','Y','0000-00-00 00:00:00'),(136230,10,'S32.17XK ','Type 4 fracture of sacrum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136229,10,'S32.17XG ','Type 4 fracture of sacrum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136227,10,'S32.17XB ','Type 4 fracture of sacrum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136228,10,'S32.17XD ','Type 4 fracture of sacrum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136226,10,'S32.17XA ','Type 4 fracture of sacrum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136225,10,'S32.16XS ','Type 3 fracture of sacrum, sequela','Y','0000-00-00 00:00:00'),(136223,10,'S32.16XG ','Type 3 fracture of sacrum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136224,10,'S32.16XK ','Type 3 fracture of sacrum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136221,10,'S32.16XB ','Type 3 fracture of sacrum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136222,10,'S32.16XD ','Type 3 fracture of sacrum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136220,10,'S32.16XA ','Type 3 fracture of sacrum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136219,10,'S32.15XS ','Type 2 fracture of sacrum, sequela','Y','0000-00-00 00:00:00'),(136218,10,'S32.15XK ','Type 2 fracture of sacrum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136216,10,'S32.15XD ','Type 2 fracture of sacrum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136217,10,'S32.15XG ','Type 2 fracture of sacrum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136215,10,'S32.15XB ','Type 2 fracture of sacrum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136213,10,'S32.14XS ','Type 1 fracture of sacrum, sequela','Y','0000-00-00 00:00:00'),(136214,10,'S32.15XA ','Type 2 fracture of sacrum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136212,10,'S32.14XK ','Type 1 fracture of sacrum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136211,10,'S32.14XG ','Type 1 fracture of sacrum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136210,10,'S32.14XD ','Type 1 fracture of sacrum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136208,10,'S32.14XA ','Type 1 fracture of sacrum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136209,10,'S32.14XB ','Type 1 fracture of sacrum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136207,10,'S32.139S ','Unspecified Zone III fracture of sacrum, sequela','Y','0000-00-00 00:00:00'),(136206,10,'S32.139K ','Unspecified Zone III fracture of sacrum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136205,10,'S32.139G ','Unspecified Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136204,10,'S32.139D ','Unspecified Zone III fracture of sacrum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136203,10,'S32.139B ','Unspecified Zone III fracture of sacrum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136201,10,'S32.132S ','Severely displaced Zone III fracture of sacrum, sequela','Y','0000-00-00 00:00:00'),(136202,10,'S32.139A ','Unspecified Zone III fracture of sacrum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136200,10,'S32.132K ','Severely displaced Zone III fracture of sacrum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136199,10,'S32.132G ','Severely displaced Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136198,10,'S32.132D ','Severely displaced Zone III fracture of sacrum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136197,10,'S32.132B ','Severely displaced Zone III fracture of sacrum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136196,10,'S32.132A ','Severely displaced Zone III fracture of sacrum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136195,10,'S32.131S ','Minimally displaced Zone III fracture of sacrum, sequela','Y','0000-00-00 00:00:00'),(136194,10,'S32.131K ','Minimally displaced Zone III fracture of sacrum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136193,10,'S32.131G ','Minimally displaced Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136192,10,'S32.131D ','Minimally displaced Zone III fracture of sacrum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136191,10,'S32.131B ','Minimally displaced Zone III fracture of sacrum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136190,10,'S32.131A ','Minimally displaced Zone III fracture of sacrum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136189,10,'S32.130S ','Nondisplaced Zone III fracture of sacrum, sequela','Y','0000-00-00 00:00:00'),(136188,10,'S32.130K ','Nondisplaced Zone III fracture of sacrum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136187,10,'S32.130G ','Nondisplaced Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136186,10,'S32.130D ','Nondisplaced Zone III fracture of sacrum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136185,10,'S32.130B ','Nondisplaced Zone III fracture of sacrum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136183,10,'S32.129S ','Unspecified Zone II fracture of sacrum, sequela','Y','0000-00-00 00:00:00'),(136184,10,'S32.130A ','Nondisplaced Zone III fracture of sacrum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136182,10,'S32.129K ','Unspecified Zone II fracture of sacrum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136181,10,'S32.129G ','Unspecified Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136180,10,'S32.129D ','Unspecified Zone II fracture of sacrum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136179,10,'S32.129B ','Unspecified Zone II fracture of sacrum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136178,10,'S32.129A ','Unspecified Zone II fracture of sacrum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136177,10,'S32.122S ','Severely displaced Zone II fracture of sacrum, sequela','Y','0000-00-00 00:00:00'),(136176,10,'S32.122K ','Severely displaced Zone II fracture of sacrum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136175,10,'S32.122G ','Severely displaced Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136174,10,'S32.122D ','Severely displaced Zone II fracture of sacrum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136173,10,'S32.122B ','Severely displaced Zone II fracture of sacrum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136171,10,'S32.121S ','Minimally displaced Zone II fracture of sacrum, sequela','Y','0000-00-00 00:00:00'),(136172,10,'S32.122A ','Severely displaced Zone II fracture of sacrum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136170,10,'S32.121K ','Minimally displaced Zone II fracture of sacrum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136169,10,'S32.121G ','Minimally displaced Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136168,10,'S32.121D ','Minimally displaced Zone II fracture of sacrum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136167,10,'S32.121B ','Minimally displaced Zone II fracture of sacrum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136166,10,'S32.121A ','Minimally displaced Zone II fracture of sacrum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136165,10,'S32.120S ','Nondisplaced Zone II fracture of sacrum, sequela','Y','0000-00-00 00:00:00'),(136164,10,'S32.120K ','Nondisplaced Zone II fracture of sacrum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136163,10,'S32.120G ','Nondisplaced Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136162,10,'S32.120D ','Nondisplaced Zone II fracture of sacrum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136161,10,'S32.120B ','Nondisplaced Zone II fracture of sacrum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136159,10,'S32.119S ','Unspecified Zone I fracture of sacrum, sequela','Y','0000-00-00 00:00:00'),(136160,10,'S32.120A ','Nondisplaced Zone II fracture of sacrum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136158,10,'S32.119K ','Unspecified Zone I fracture of sacrum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136157,10,'S32.119G ','Unspecified Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136156,10,'S32.119D ','Unspecified Zone I fracture of sacrum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136155,10,'S32.119B ','Unspecified Zone I fracture of sacrum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136153,10,'S32.112S ','Severely displaced Zone I fracture of sacrum, sequela','Y','0000-00-00 00:00:00'),(136154,10,'S32.119A ','Unspecified Zone I fracture of sacrum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136152,10,'S32.112K ','Severely displaced Zone I fracture of sacrum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136151,10,'S32.112G ','Severely displaced Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136149,10,'S32.112B ','Severely displaced Zone I fracture of sacrum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136150,10,'S32.112D ','Severely displaced Zone I fracture of sacrum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136148,10,'S32.112A ','Severely displaced Zone I fracture of sacrum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136147,10,'S32.111S ','Minimally displaced Zone I fracture of sacrum, sequela','Y','0000-00-00 00:00:00'),(136146,10,'S32.111K ','Minimally displaced Zone I fracture of sacrum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136145,10,'S32.111G ','Minimally displaced Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136144,10,'S32.111D ','Minimally displaced Zone I fracture of sacrum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136143,10,'S32.111B ','Minimally displaced Zone I fracture of sacrum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136141,10,'S32.110S ','Nondisplaced Zone I fracture of sacrum, sequela','Y','0000-00-00 00:00:00'),(136142,10,'S32.111A ','Minimally displaced Zone I fracture of sacrum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136140,10,'S32.110K ','Nondisplaced Zone I fracture of sacrum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136139,10,'S32.110G ','Nondisplaced Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136138,10,'S32.110D ','Nondisplaced Zone I fracture of sacrum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136137,10,'S32.110B ','Nondisplaced Zone I fracture of sacrum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136136,10,'S32.110A ','Nondisplaced Zone I fracture of sacrum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136135,10,'S32.10XS ','Unspecified fracture of sacrum, sequela','Y','0000-00-00 00:00:00'),(136134,10,'S32.10XK ','Unspecified fracture of sacrum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136133,10,'S32.10XG ','Unspecified fracture of sacrum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136132,10,'S32.10XD ','Unspecified fracture of sacrum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136131,10,'S32.10XB ','Unspecified fracture of sacrum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136130,10,'S32.10XA ','Unspecified fracture of sacrum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136129,10,'S32.059S ','Unspecified fracture of fifth lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136128,10,'S32.059K ','Unspecified fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136127,10,'S32.059G ','Unspecified fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136126,10,'S32.059D ','Unspecified fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136125,10,'S32.059B ','Unspecified fracture of fifth lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136124,10,'S32.059A ','Unspecified fracture of fifth lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136122,10,'S32.058K ','Other fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136123,10,'S32.058S ','Other fracture of fifth lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136121,10,'S32.058G ','Other fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136120,10,'S32.058D ','Other fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136119,10,'S32.058B ','Other fracture of fifth lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136118,10,'S32.058A ','Other fracture of fifth lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136117,10,'S32.052S ','Unstable burst fracture of fifth lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136116,10,'S32.052K ','Unstable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136115,10,'S32.052G ','Unstable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136114,10,'S32.052D ','Unstable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136113,10,'S32.052B ','Unstable burst fracture of fifth lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136111,10,'S32.051S ','Stable burst fracture of fifth lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136112,10,'S32.052A ','Unstable burst fracture of fifth lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136110,10,'S32.051K ','Stable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136109,10,'S32.051G ','Stable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136107,10,'S32.051B ','Stable burst fracture of fifth lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136108,10,'S32.051D ','Stable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136106,10,'S32.051A ','Stable burst fracture of fifth lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136105,10,'S32.050S ','Wedge compression fracture of fifth lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136104,10,'S32.050K ','Wedge compression fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136103,10,'S32.050G ','Wedge compression fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136102,10,'S32.050D ','Wedge compression fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136101,10,'S32.050B ','Wedge compression fracture of fifth lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136100,10,'S32.050A ','Wedge compression fracture of fifth lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136099,10,'S32.049S ','Unspecified fracture of fourth lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136098,10,'S32.049K ','Unspecified fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136097,10,'S32.049G ','Unspecified fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136096,10,'S32.049D ','Unspecified fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136095,10,'S32.049B ','Unspecified fracture of fourth lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136093,10,'S32.048S ','Other fracture of fourth lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136094,10,'S32.049A ','Unspecified fracture of fourth lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136092,10,'S32.048K ','Other fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136091,10,'S32.048G ','Other fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136090,10,'S32.048D ','Other fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136089,10,'S32.048B ','Other fracture of fourth lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136087,10,'S32.042S ','Unstable burst fracture of fourth lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136088,10,'S32.048A ','Other fracture of fourth lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136086,10,'S32.042K ','Unstable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136085,10,'S32.042G ','Unstable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136084,10,'S32.042D ','Unstable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136083,10,'S32.042B ','Unstable burst fracture of fourth lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136081,10,'S32.041S ','Stable burst fracture of fourth lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136082,10,'S32.042A ','Unstable burst fracture of fourth lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136080,10,'S32.041K ','Stable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136079,10,'S32.041G ','Stable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136078,10,'S32.041D ','Stable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136077,10,'S32.041B ','Stable burst fracture of fourth lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136076,10,'S32.041A ','Stable burst fracture of fourth lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136075,10,'S32.040S ','Wedge compression fracture of fourth lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136074,10,'S32.040K ','Wedge compression fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136073,10,'S32.040G ','Wedge compression fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136072,10,'S32.040D ','Wedge compression fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136071,10,'S32.040B ','Wedge compression fracture of fourth lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136069,10,'S32.039S ','Unspecified fracture of third lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136070,10,'S32.040A ','Wedge compression fracture of fourth lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136068,10,'S32.039K ','Unspecified fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136067,10,'S32.039G ','Unspecified fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136066,10,'S32.039D ','Unspecified fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136065,10,'S32.039B ','Unspecified fracture of third lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136064,10,'S32.039A ','Unspecified fracture of third lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136063,10,'S32.038S ','Other fracture of third lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136062,10,'S32.038K ','Other fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136061,10,'S32.038G ','Other fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136060,10,'S32.038D ','Other fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136059,10,'S32.038B ','Other fracture of third lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136058,10,'S32.038A ','Other fracture of third lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136057,10,'S32.032S ','Unstable burst fracture of third lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136056,10,'S32.032K ','Unstable burst fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136055,10,'S32.032G ','Unstable burst fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136054,10,'S32.032D ','Unstable burst fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136053,10,'S32.032B ','Unstable burst fracture of third lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136052,10,'S32.032A ','Unstable burst fracture of third lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136051,10,'S32.031S ','Stable burst fracture of third lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136050,10,'S32.031K ','Stable burst fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136049,10,'S32.031G ','Stable burst fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136048,10,'S32.031D ','Stable burst fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136047,10,'S32.031B ','Stable burst fracture of third lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136045,10,'S32.030S ','Wedge compression fracture of third lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136046,10,'S32.031A ','Stable burst fracture of third lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136044,10,'S32.030K ','Wedge compression fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136043,10,'S32.030G ','Wedge compression fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136042,10,'S32.030D ','Wedge compression fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136041,10,'S32.030B ','Wedge compression fracture of third lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136040,10,'S32.030A ','Wedge compression fracture of third lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136039,10,'S32.029S ','Unspecified fracture of second lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136038,10,'S32.029K ','Unspecified fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136037,10,'S32.029G ','Unspecified fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136036,10,'S32.029D ','Unspecified fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136035,10,'S32.029B ','Unspecified fracture of second lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136033,10,'S32.028S ','Other fracture of second lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136034,10,'S32.029A ','Unspecified fracture of second lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136032,10,'S32.028K ','Other fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136031,10,'S32.028G ','Other fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136030,10,'S32.028D ','Other fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136029,10,'S32.028B ','Other fracture of second lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136028,10,'S32.028A ','Other fracture of second lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136027,10,'S32.022S ','Unstable burst fracture of second lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136026,10,'S32.022K ','Unstable burst fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136025,10,'S32.022G ','Unstable burst fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136024,10,'S32.022D ','Unstable burst fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136023,10,'S32.022B ','Unstable burst fracture of second lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136022,10,'S32.022A ','Unstable burst fracture of second lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136021,10,'S32.021S ','Stable burst fracture of second lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136020,10,'S32.021K ','Stable burst fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136019,10,'S32.021G ','Stable burst fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136018,10,'S32.021D ','Stable burst fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136017,10,'S32.021B ','Stable burst fracture of second lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136016,10,'S32.021A ','Stable burst fracture of second lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136015,10,'S32.020S ','Wedge compression fracture of second lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136014,10,'S32.020K ','Wedge compression fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136013,10,'S32.020G ','Wedge compression fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136012,10,'S32.020D ','Wedge compression fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136011,10,'S32.020B ','Wedge compression fracture of second lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136010,10,'S32.020A ','Wedge compression fracture of second lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136009,10,'S32.019S ','Unspecified fracture of first lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136008,10,'S32.019K ','Unspecified fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136007,10,'S32.019G ','Unspecified fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136006,10,'S32.019D ','Unspecified fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(136005,10,'S32.019B ','Unspecified fracture of first lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(136004,10,'S32.019A ','Unspecified fracture of first lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(136003,10,'S32.018S ','Other fracture of first lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(136002,10,'S32.018K ','Other fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(136001,10,'S32.018G ','Other fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(136000,10,'S32.018D ','Other fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(135999,10,'S32.018B ','Other fracture of first lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(135997,10,'S32.012S ','Unstable burst fracture of first lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(135998,10,'S32.018A ','Other fracture of first lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(135996,10,'S32.012K ','Unstable burst fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(135995,10,'S32.012G ','Unstable burst fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(135994,10,'S32.012D ','Unstable burst fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(135993,10,'S32.012B ','Unstable burst fracture of first lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(135992,10,'S32.012A ','Unstable burst fracture of first lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(135991,10,'S32.011S ','Stable burst fracture of first lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(135990,10,'S32.011K ','Stable burst fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(135989,10,'S32.011G ','Stable burst fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(135988,10,'S32.011D ','Stable burst fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(135987,10,'S32.011B ','Stable burst fracture of first lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(135985,10,'S32.010S ','Wedge compression fracture of first lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(135986,10,'S32.011A ','Stable burst fracture of first lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(135984,10,'S32.010K ','Wedge compression fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(135983,10,'S32.010G ','Wedge compression fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(135982,10,'S32.010D ','Wedge compression fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(135981,10,'S32.010B ','Wedge compression fracture of first lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(135980,10,'S32.010A ','Wedge compression fracture of first lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(135979,10,'S32.009S ','Unspecified fracture of unspecified lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(135978,10,'S32.009K ','Unspecified fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(135977,10,'S32.009G ','Unspecified fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(135976,10,'S32.009D ','Unspecified fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(135975,10,'S32.009B ','Unspecified fracture of unspecified lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(135974,10,'S32.009A ','Unspecified fracture of unspecified lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(135973,10,'S32.008S ','Other fracture of unspecified lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(135972,10,'S32.008K ','Other fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(135971,10,'S32.008G ','Other fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(135970,10,'S32.008D ','Other fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(135969,10,'S32.008B ','Other fracture of unspecified lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(135968,10,'S32.008A ','Other fracture of unspecified lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(135967,10,'S32.002S ','Unstable burst fracture of unspecified lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(135966,10,'S32.002K ','Unstable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(135965,10,'S32.002G ','Unstable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(135964,10,'S32.002D ','Unstable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(135963,10,'S32.002B ','Unstable burst fracture of unspecified lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(135962,10,'S32.002A ','Unstable burst fracture of unspecified lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(135961,10,'S32.001S ','Stable burst fracture of unspecified lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(135960,10,'S32.001K ','Stable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(135959,10,'S32.001G ','Stable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(135958,10,'S32.001D ','Stable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(135957,10,'S32.001B ','Stable burst fracture of unspecified lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(135956,10,'S32.001A ','Stable burst fracture of unspecified lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(135955,10,'S32.000S ','Wedge compression fracture of unspecified lumbar vertebra, sequela','Y','0000-00-00 00:00:00'),(135954,10,'S32.000K ','Wedge compression fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(135953,10,'S32.000G ','Wedge compression fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(135952,10,'S32.000D ','Wedge compression fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(135951,10,'S32.000B ','Wedge compression fracture of unspecified lumbar vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(135950,10,'S32.000A ','Wedge compression fracture of unspecified lumbar vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(135948,10,'S31.839D ','Unspecified open wound of anus, subsequent encounter','Y','0000-00-00 00:00:00'),(135949,10,'S31.839S ','Unspecified open wound of anus, sequela','Y','0000-00-00 00:00:00'),(135946,10,'S31.835S ','Open bite of anus, sequela','Y','0000-00-00 00:00:00'),(135947,10,'S31.839A ','Unspecified open wound of anus, initial encounter','Y','0000-00-00 00:00:00'),(135945,10,'S31.835D ','Open bite of anus, subsequent encounter','Y','0000-00-00 00:00:00'),(135943,10,'S31.834S ','Puncture wound with foreign body of anus, sequela','Y','0000-00-00 00:00:00'),(135944,10,'S31.835A ','Open bite of anus, initial encounter','Y','0000-00-00 00:00:00'),(135942,10,'S31.834D ','Puncture wound with foreign body of anus, subsequent encounter','Y','0000-00-00 00:00:00'),(135941,10,'S31.834A ','Puncture wound with foreign body of anus, initial encounter','Y','0000-00-00 00:00:00'),(135940,10,'S31.833S ','Puncture wound without foreign body of anus, sequela','Y','0000-00-00 00:00:00'),(135938,10,'S31.833A ','Puncture wound without foreign body of anus, initial encounter','Y','0000-00-00 00:00:00'),(135939,10,'S31.833D ','Puncture wound without foreign body of anus, subsequent encounter','Y','0000-00-00 00:00:00'),(135937,10,'S31.832S ','Laceration with foreign body of anus, sequela','Y','0000-00-00 00:00:00'),(135936,10,'S31.832D ','Laceration with foreign body of anus, subsequent encounter','Y','0000-00-00 00:00:00'),(135935,10,'S31.832A ','Laceration with foreign body of anus, initial encounter','Y','0000-00-00 00:00:00'),(135934,10,'S31.831S ','Laceration without foreign body of anus, sequela','Y','0000-00-00 00:00:00'),(135933,10,'S31.831D ','Laceration without foreign body of anus, subsequent encounter','Y','0000-00-00 00:00:00'),(135931,10,'S31.829S ','Unspecified open wound of left buttock, sequela','Y','0000-00-00 00:00:00'),(135932,10,'S31.831A ','Laceration without foreign body of anus, initial encounter','Y','0000-00-00 00:00:00'),(135930,10,'S31.829D ','Unspecified open wound of left buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(135928,10,'S31.825S ','Open bite of left buttock, sequela','Y','0000-00-00 00:00:00'),(135929,10,'S31.829A ','Unspecified open wound of left buttock, initial encounter','Y','0000-00-00 00:00:00'),(135927,10,'S31.825D ','Open bite of left buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(135925,10,'S31.824S ','Puncture wound with foreign body of left buttock, sequela','Y','0000-00-00 00:00:00'),(135926,10,'S31.825A ','Open bite of left buttock, initial encounter','Y','0000-00-00 00:00:00'),(135924,10,'S31.824D ','Puncture wound with foreign body of left buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(135923,10,'S31.824A ','Puncture wound with foreign body of left buttock, initial encounter','Y','0000-00-00 00:00:00'),(135922,10,'S31.823S ','Puncture wound without foreign body of left buttock, sequela','Y','0000-00-00 00:00:00'),(135921,10,'S31.823D ','Puncture wound without foreign body of left buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(135920,10,'S31.823A ','Puncture wound without foreign body of left buttock, initial encounter','Y','0000-00-00 00:00:00'),(135918,10,'S31.822D ','Laceration with foreign body of left buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(135919,10,'S31.822S ','Laceration with foreign body of left buttock, sequela','Y','0000-00-00 00:00:00'),(135917,10,'S31.822A ','Laceration with foreign body of left buttock, initial encounter','Y','0000-00-00 00:00:00'),(135916,10,'S31.821S ','Laceration without foreign body of left buttock, sequela','Y','0000-00-00 00:00:00'),(135914,10,'S31.821A ','Laceration without foreign body of left buttock, initial encounter','Y','0000-00-00 00:00:00'),(135915,10,'S31.821D ','Laceration without foreign body of left buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(135913,10,'S31.819S ','Unspecified open wound of right buttock, sequela','Y','0000-00-00 00:00:00'),(135912,10,'S31.819D ','Unspecified open wound of right buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(135910,10,'S31.815S ','Open bite of right buttock, sequela','Y','0000-00-00 00:00:00'),(135911,10,'S31.819A ','Unspecified open wound of right buttock, initial encounter','Y','0000-00-00 00:00:00'),(135908,10,'S31.815A ','Open bite of right buttock, initial encounter','Y','0000-00-00 00:00:00'),(135909,10,'S31.815D ','Open bite of right buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(135907,10,'S31.814S ','Puncture wound with foreign body of right buttock, sequela','Y','0000-00-00 00:00:00'),(135906,10,'S31.814D ','Puncture wound with foreign body of right buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(135904,10,'S31.813S ','Puncture wound without foreign body of right buttock, sequela','Y','0000-00-00 00:00:00'),(135905,10,'S31.814A ','Puncture wound with foreign body of right buttock, initial encounter','Y','0000-00-00 00:00:00'),(135903,10,'S31.813D ','Puncture wound without foreign body of right buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(135902,10,'S31.813A ','Puncture wound without foreign body of right buttock, initial encounter','Y','0000-00-00 00:00:00'),(135901,10,'S31.812S ','Laceration with foreign body of right buttock, sequela','Y','0000-00-00 00:00:00'),(135899,10,'S31.812A ','Laceration with foreign body of right buttock, initial encounter','Y','0000-00-00 00:00:00'),(135900,10,'S31.812D ','Laceration with foreign body of right buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(135898,10,'S31.811S ','Laceration without foreign body of right buttock, sequela','Y','0000-00-00 00:00:00'),(135897,10,'S31.811D ','Laceration without foreign body of right buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(135896,10,'S31.811A ','Laceration without foreign body of right buttock, initial encounter','Y','0000-00-00 00:00:00'),(135895,10,'S31.809S ','Unspecified open wound of unspecified buttock, sequela','Y','0000-00-00 00:00:00'),(135894,10,'S31.809D ','Unspecified open wound of unspecified buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(135893,10,'S31.809A ','Unspecified open wound of unspecified buttock, initial encounter','Y','0000-00-00 00:00:00'),(135891,10,'S31.805D ','Open bite of unspecified buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(135892,10,'S31.805S ','Open bite of unspecified buttock, sequela','Y','0000-00-00 00:00:00'),(135890,10,'S31.805A ','Open bite of unspecified buttock, initial encounter','Y','0000-00-00 00:00:00'),(135889,10,'S31.804S ','Puncture wound with foreign body of unspecified buttock, sequela','Y','0000-00-00 00:00:00'),(135888,10,'S31.804D ','Puncture wound with foreign body of unspecified buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(135886,10,'S31.803S ','Puncture wound without foreign body of unspecified buttock, sequela','Y','0000-00-00 00:00:00'),(135887,10,'S31.804A ','Puncture wound with foreign body of unspecified buttock, initial encounter','Y','0000-00-00 00:00:00'),(135885,10,'S31.803D ','Puncture wound without foreign body of unspecified buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(135884,10,'S31.803A ','Puncture wound without foreign body of unspecified buttock, initial encounter','Y','0000-00-00 00:00:00'),(135883,10,'S31.802S ','Laceration with foreign body of unspecified buttock, sequela','Y','0000-00-00 00:00:00'),(135882,10,'S31.802D ','Laceration with foreign body of unspecified buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(135881,10,'S31.802A ','Laceration with foreign body of unspecified buttock, initial encounter','Y','0000-00-00 00:00:00'),(135880,10,'S31.801S ','Laceration without foreign body of unspecified buttock, sequela','Y','0000-00-00 00:00:00'),(135879,10,'S31.801D ','Laceration without foreign body of unspecified buttock, subsequent encounter','Y','0000-00-00 00:00:00'),(135878,10,'S31.801A ','Laceration without foreign body of unspecified buttock, initial encounter','Y','0000-00-00 00:00:00'),(135877,10,'S31.659S ','Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135876,10,'S31.659D ','Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135875,10,'S31.659A ','Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135874,10,'S31.655S ','Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135873,10,'S31.655D ','Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135872,10,'S31.655A ','Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135871,10,'S31.654S ','Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135870,10,'S31.654D ','Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135869,10,'S31.654A ','Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135868,10,'S31.653S ','Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135867,10,'S31.653D ','Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135866,10,'S31.653A ','Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135865,10,'S31.652S ','Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135864,10,'S31.652D ','Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135863,10,'S31.652A ','Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135862,10,'S31.651S ','Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135861,10,'S31.651D ','Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135860,10,'S31.651A ','Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135859,10,'S31.650S ','Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135858,10,'S31.650D ','Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135857,10,'S31.650A ','Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135856,10,'S31.649S ','Puncture wound with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135855,10,'S31.649D ','Puncture wound with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135854,10,'S31.649A ','Puncture wound with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135853,10,'S31.645S ','Puncture wound with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135852,10,'S31.645D ','Puncture wound with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135851,10,'S31.645A ','Puncture wound with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135850,10,'S31.644S ','Puncture wound with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135849,10,'S31.644D ','Puncture wound with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135848,10,'S31.644A ','Puncture wound with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135847,10,'S31.643S ','Puncture wound with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135846,10,'S31.643D ','Puncture wound with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135845,10,'S31.643A ','Puncture wound with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135844,10,'S31.642S ','Puncture wound with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135843,10,'S31.642D ','Puncture wound with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135842,10,'S31.642A ','Puncture wound with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135841,10,'S31.641S ','Puncture wound with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135840,10,'S31.641D ','Puncture wound with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135839,10,'S31.641A ','Puncture wound with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135838,10,'S31.640S ','Puncture wound with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135837,10,'S31.640D ','Puncture wound with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135836,10,'S31.640A ','Puncture wound with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135835,10,'S31.639S ','Puncture wound without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135834,10,'S31.639D ','Puncture wound without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135833,10,'S31.639A ','Puncture wound without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135832,10,'S31.635S ','Puncture wound without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135831,10,'S31.635D ','Puncture wound without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135830,10,'S31.635A ','Puncture wound without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135829,10,'S31.634S ','Puncture wound without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135828,10,'S31.634D ','Puncture wound without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135827,10,'S31.634A ','Puncture wound without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135826,10,'S31.633S ','Puncture wound without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135825,10,'S31.633D ','Puncture wound without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135824,10,'S31.633A ','Puncture wound without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135823,10,'S31.632S ','Puncture wound without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135822,10,'S31.632D ','Puncture wound without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135821,10,'S31.632A ','Puncture wound without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135820,10,'S31.631S ','Puncture wound without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135819,10,'S31.631D ','Puncture wound without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135818,10,'S31.631A ','Puncture wound without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135817,10,'S31.630S ','Puncture wound without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135816,10,'S31.630D ','Puncture wound without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135815,10,'S31.630A ','Puncture wound without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135814,10,'S31.629S ','Laceration with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135813,10,'S31.629D ','Laceration with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135812,10,'S31.629A ','Laceration with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135811,10,'S31.625S ','Laceration with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135810,10,'S31.625D ','Laceration with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135809,10,'S31.625A ','Laceration with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135808,10,'S31.624S ','Laceration with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135807,10,'S31.624D ','Laceration with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135806,10,'S31.624A ','Laceration with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135805,10,'S31.623S ','Laceration with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135804,10,'S31.623D ','Laceration with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135803,10,'S31.623A ','Laceration with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135802,10,'S31.622S ','Laceration with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135801,10,'S31.622D ','Laceration with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135800,10,'S31.622A ','Laceration with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135799,10,'S31.621S ','Laceration with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135798,10,'S31.621D ','Laceration with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135797,10,'S31.621A ','Laceration with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135796,10,'S31.620S ','Laceration with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135795,10,'S31.620D ','Laceration with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135794,10,'S31.620A ','Laceration with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135793,10,'S31.619S ','Laceration without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135792,10,'S31.619D ','Laceration without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135791,10,'S31.619A ','Laceration without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135790,10,'S31.615S ','Laceration without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135789,10,'S31.615D ','Laceration without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135788,10,'S31.615A ','Laceration without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135787,10,'S31.614S ','Laceration without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135786,10,'S31.614D ','Laceration without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135785,10,'S31.614A ','Laceration without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135784,10,'S31.613S ','Laceration without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135783,10,'S31.613D ','Laceration without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135782,10,'S31.613A ','Laceration without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135781,10,'S31.612S ','Laceration without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135780,10,'S31.612D ','Laceration without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135779,10,'S31.612A ','Laceration without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135778,10,'S31.611S ','Laceration without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135777,10,'S31.611D ','Laceration without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135776,10,'S31.611A ','Laceration without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135775,10,'S31.610S ','Laceration without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135774,10,'S31.610D ','Laceration without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135773,10,'S31.610A ','Laceration without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135772,10,'S31.609S ','Unspecified open wound of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135771,10,'S31.609D ','Unspecified open wound of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135770,10,'S31.609A ','Unspecified open wound of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135769,10,'S31.605S ','Unspecified open wound of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135768,10,'S31.605D ','Unspecified open wound of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135767,10,'S31.605A ','Unspecified open wound of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135766,10,'S31.604S ','Unspecified open wound of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135765,10,'S31.604D ','Unspecified open wound of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135764,10,'S31.604A ','Unspecified open wound of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135763,10,'S31.603S ','Unspecified open wound of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135762,10,'S31.603D ','Unspecified open wound of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135761,10,'S31.603A ','Unspecified open wound of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135760,10,'S31.602S ','Unspecified open wound of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135759,10,'S31.602D ','Unspecified open wound of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135758,10,'S31.602A ','Unspecified open wound of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135757,10,'S31.601S ','Unspecified open wound of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135756,10,'S31.601D ','Unspecified open wound of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135755,10,'S31.601A ','Unspecified open wound of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135754,10,'S31.600S ','Unspecified open wound of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135753,10,'S31.600D ','Unspecified open wound of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135752,10,'S31.600A ','Unspecified open wound of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135751,10,'S31.552S ','Open bite of unspecified external genital organs, female, sequela','Y','0000-00-00 00:00:00'),(135749,10,'S31.552A ','Open bite of unspecified external genital organs, female, initial encounter','Y','0000-00-00 00:00:00'),(135750,10,'S31.552D ','Open bite of unspecified external genital organs, female, subsequent encounter','Y','0000-00-00 00:00:00'),(135748,10,'S31.551S ','Open bite of unspecified external genital organs, male, sequela','Y','0000-00-00 00:00:00'),(135747,10,'S31.551D ','Open bite of unspecified external genital organs, male, subsequent encounter','Y','0000-00-00 00:00:00'),(135746,10,'S31.551A ','Open bite of unspecified external genital organs, male, initial encounter','Y','0000-00-00 00:00:00'),(135745,10,'S31.542S ','Puncture wound with foreign body of unspecified external genital organs, female, sequela','Y','0000-00-00 00:00:00'),(135744,10,'S31.542D ','Puncture wound with foreign body of unspecified external genital organs, female, subsequent encounter','Y','0000-00-00 00:00:00'),(135743,10,'S31.542A ','Puncture wound with foreign body of unspecified external genital organs, female, initial encounter','Y','0000-00-00 00:00:00'),(135742,10,'S31.541S ','Puncture wound with foreign body of unspecified external genital organs, male, sequela','Y','0000-00-00 00:00:00'),(135741,10,'S31.541D ','Puncture wound with foreign body of unspecified external genital organs, male, subsequent encounter','Y','0000-00-00 00:00:00'),(135740,10,'S31.541A ','Puncture wound with foreign body of unspecified external genital organs, male, initial encounter','Y','0000-00-00 00:00:00'),(135739,10,'S31.532S ','Puncture wound without foreign body of unspecified external genital organs, female, sequela','Y','0000-00-00 00:00:00'),(135738,10,'S31.532D ','Puncture wound without foreign body of unspecified external genital organs, female, subsequent encounter','Y','0000-00-00 00:00:00'),(135736,10,'S31.531S ','Puncture wound without foreign body of unspecified external genital organs, male, sequela','Y','0000-00-00 00:00:00'),(135737,10,'S31.532A ','Puncture wound without foreign body of unspecified external genital organs, female, initial encounter','Y','0000-00-00 00:00:00'),(135735,10,'S31.531D ','Puncture wound without foreign body of unspecified external genital organs, male, subsequent encounter','Y','0000-00-00 00:00:00'),(135733,10,'S31.522S ','Laceration with foreign body of unspecified external genital organs, female, sequela','Y','0000-00-00 00:00:00'),(135734,10,'S31.531A ','Puncture wound without foreign body of unspecified external genital organs, male, initial encounter','Y','0000-00-00 00:00:00'),(135732,10,'S31.522D ','Laceration with foreign body of unspecified external genital organs, female, subsequent encounter','Y','0000-00-00 00:00:00'),(135731,10,'S31.522A ','Laceration with foreign body of unspecified external genital organs, female, initial encounter','Y','0000-00-00 00:00:00'),(135730,10,'S31.521S ','Laceration with foreign body of unspecified external genital organs, male, sequela','Y','0000-00-00 00:00:00'),(135729,10,'S31.521D ','Laceration with foreign body of unspecified external genital organs, male, subsequent encounter','Y','0000-00-00 00:00:00'),(135728,10,'S31.521A ','Laceration with foreign body of unspecified external genital organs, male, initial encounter','Y','0000-00-00 00:00:00'),(135727,10,'S31.512S ','Laceration without foreign body of unspecified external genital organs, female, sequela','Y','0000-00-00 00:00:00'),(135726,10,'S31.512D ','Laceration without foreign body of unspecified external genital organs, female, subsequent encounter','Y','0000-00-00 00:00:00'),(135725,10,'S31.512A ','Laceration without foreign body of unspecified external genital organs, female, initial encounter','Y','0000-00-00 00:00:00'),(135724,10,'S31.511S ','Laceration without foreign body of unspecified external genital organs, male, sequela','Y','0000-00-00 00:00:00'),(135723,10,'S31.511D ','Laceration without foreign body of unspecified external genital organs, male, subsequent encounter','Y','0000-00-00 00:00:00'),(135722,10,'S31.511A ','Laceration without foreign body of unspecified external genital organs, male, initial encounter','Y','0000-00-00 00:00:00'),(135721,10,'S31.502S ','Unspecified open wound of unspecified external genital organs, female, sequela','Y','0000-00-00 00:00:00'),(135720,10,'S31.502D ','Unspecified open wound of unspecified external genital organs, female, subsequent encounter','Y','0000-00-00 00:00:00'),(135719,10,'S31.502A ','Unspecified open wound of unspecified external genital organs, female, initial encounter','Y','0000-00-00 00:00:00'),(135718,10,'S31.501S ','Unspecified open wound of unspecified external genital organs, male, sequela','Y','0000-00-00 00:00:00'),(135716,10,'S31.501A ','Unspecified open wound of unspecified external genital organs, male, initial encounter','Y','0000-00-00 00:00:00'),(135717,10,'S31.501D ','Unspecified open wound of unspecified external genital organs, male, subsequent encounter','Y','0000-00-00 00:00:00'),(135715,10,'S31.45XS ','Open bite of vagina and vulva, sequela','Y','0000-00-00 00:00:00'),(135713,10,'S31.45XA ','Open bite of vagina and vulva, initial encounter','Y','0000-00-00 00:00:00'),(135714,10,'S31.45XD ','Open bite of vagina and vulva, subsequent encounter','Y','0000-00-00 00:00:00'),(135712,10,'S31.44XS ','Puncture wound with foreign body of vagina and vulva, sequela','Y','0000-00-00 00:00:00'),(135711,10,'S31.44XD ','Puncture wound with foreign body of vagina and vulva, subsequent encounter','Y','0000-00-00 00:00:00'),(135710,10,'S31.44XA ','Puncture wound with foreign body of vagina and vulva, initial encounter','Y','0000-00-00 00:00:00'),(135709,10,'S31.43XS ','Puncture wound without foreign body of vagina and vulva, sequela','Y','0000-00-00 00:00:00'),(135708,10,'S31.43XD ','Puncture wound without foreign body of vagina and vulva, subsequent encounter','Y','0000-00-00 00:00:00'),(135707,10,'S31.43XA ','Puncture wound without foreign body of vagina and vulva, initial encounter','Y','0000-00-00 00:00:00'),(135706,10,'S31.42XS ','Laceration with foreign body of vagina and vulva, sequela','Y','0000-00-00 00:00:00'),(135704,10,'S31.42XA ','Laceration with foreign body of vagina and vulva, initial encounter','Y','0000-00-00 00:00:00'),(135705,10,'S31.42XD ','Laceration with foreign body of vagina and vulva, subsequent encounter','Y','0000-00-00 00:00:00'),(135703,10,'S31.41XS ','Laceration without foreign body of vagina and vulva, sequela','Y','0000-00-00 00:00:00'),(135702,10,'S31.41XD ','Laceration without foreign body of vagina and vulva, subsequent encounter','Y','0000-00-00 00:00:00'),(135700,10,'S31.40XS ','Unspecified open wound of vagina and vulva, sequela','Y','0000-00-00 00:00:00'),(135701,10,'S31.41XA ','Laceration without foreign body of vagina and vulva, initial encounter','Y','0000-00-00 00:00:00'),(135699,10,'S31.40XD ','Unspecified open wound of vagina and vulva, subsequent encounter','Y','0000-00-00 00:00:00'),(135697,10,'S31.35XS ','Open bite of scrotum and testes, sequela','Y','0000-00-00 00:00:00'),(135698,10,'S31.40XA ','Unspecified open wound of vagina and vulva, initial encounter','Y','0000-00-00 00:00:00'),(135696,10,'S31.35XD ','Open bite of scrotum and testes, subsequent encounter','Y','0000-00-00 00:00:00'),(135694,10,'S31.34XS ','Puncture wound with foreign body of scrotum and testes, sequela','Y','0000-00-00 00:00:00'),(135695,10,'S31.35XA ','Open bite of scrotum and testes, initial encounter','Y','0000-00-00 00:00:00'),(135693,10,'S31.34XD ','Puncture wound with foreign body of scrotum and testes, subsequent encounter','Y','0000-00-00 00:00:00'),(135692,10,'S31.34XA ','Puncture wound with foreign body of scrotum and testes, initial encounter','Y','0000-00-00 00:00:00'),(135691,10,'S31.33XS ','Puncture wound without foreign body of scrotum and testes, sequela','Y','0000-00-00 00:00:00'),(135690,10,'S31.33XD ','Puncture wound without foreign body of scrotum and testes, subsequent encounter','Y','0000-00-00 00:00:00'),(135689,10,'S31.33XA ','Puncture wound without foreign body of scrotum and testes, initial encounter','Y','0000-00-00 00:00:00'),(135688,10,'S31.32XS ','Laceration with foreign body of scrotum and testes, sequela','Y','0000-00-00 00:00:00'),(135686,10,'S31.32XA ','Laceration with foreign body of scrotum and testes, initial encounter','Y','0000-00-00 00:00:00'),(135687,10,'S31.32XD ','Laceration with foreign body of scrotum and testes, subsequent encounter','Y','0000-00-00 00:00:00'),(135685,10,'S31.31XS ','Laceration without foreign body of scrotum and testes, sequela','Y','0000-00-00 00:00:00'),(135683,10,'S31.31XA ','Laceration without foreign body of scrotum and testes, initial encounter','Y','0000-00-00 00:00:00'),(135684,10,'S31.31XD ','Laceration without foreign body of scrotum and testes, subsequent encounter','Y','0000-00-00 00:00:00'),(135682,10,'S31.30XS ','Unspecified open wound of scrotum and testes, sequela','Y','0000-00-00 00:00:00'),(135680,10,'S31.30XA ','Unspecified open wound of scrotum and testes, initial encounter','Y','0000-00-00 00:00:00'),(135681,10,'S31.30XD ','Unspecified open wound of scrotum and testes, subsequent encounter','Y','0000-00-00 00:00:00'),(135678,10,'S31.25XD ','Open bite of penis, subsequent encounter','Y','0000-00-00 00:00:00'),(135679,10,'S31.25XS ','Open bite of penis, sequela','Y','0000-00-00 00:00:00'),(135677,10,'S31.25XA ','Open bite of penis, initial encounter','Y','0000-00-00 00:00:00'),(135675,10,'S31.24XD ','Puncture wound with foreign body of penis, subsequent encounter','Y','0000-00-00 00:00:00'),(135676,10,'S31.24XS ','Puncture wound with foreign body of penis, sequela','Y','0000-00-00 00:00:00'),(135674,10,'S31.24XA ','Puncture wound with foreign body of penis, initial encounter','Y','0000-00-00 00:00:00'),(135672,10,'S31.23XD ','Puncture wound without foreign body of penis, subsequent encounter','Y','0000-00-00 00:00:00'),(135673,10,'S31.23XS ','Puncture wound without foreign body of penis, sequela','Y','0000-00-00 00:00:00'),(135671,10,'S31.23XA ','Puncture wound without foreign body of penis, initial encounter','Y','0000-00-00 00:00:00'),(135669,10,'S31.22XD ','Laceration with foreign body of penis, subsequent encounter','Y','0000-00-00 00:00:00'),(135670,10,'S31.22XS ','Laceration with foreign body of penis, sequela','Y','0000-00-00 00:00:00'),(135668,10,'S31.22XA ','Laceration with foreign body of penis, initial encounter','Y','0000-00-00 00:00:00'),(135667,10,'S31.21XS ','Laceration without foreign body of penis, sequela','Y','0000-00-00 00:00:00'),(135666,10,'S31.21XD ','Laceration without foreign body of penis, subsequent encounter','Y','0000-00-00 00:00:00'),(135665,10,'S31.21XA ','Laceration without foreign body of penis, initial encounter','Y','0000-00-00 00:00:00'),(135663,10,'S31.20XD ','Unspecified open wound of penis, subsequent encounter','Y','0000-00-00 00:00:00'),(135664,10,'S31.20XS ','Unspecified open wound of penis, sequela','Y','0000-00-00 00:00:00'),(135662,10,'S31.20XA ','Unspecified open wound of penis, initial encounter','Y','0000-00-00 00:00:00'),(135661,10,'S31.159S ','Open bite of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135660,10,'S31.159D ','Open bite of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135659,10,'S31.159A ','Open bite of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135658,10,'S31.155S ','Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135657,10,'S31.155D ','Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135656,10,'S31.155A ','Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135655,10,'S31.154S ','Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135654,10,'S31.154D ','Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135653,10,'S31.154A ','Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135652,10,'S31.153S ','Open bite of abdominal wall, right lower quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135651,10,'S31.153D ','Open bite of abdominal wall, right lower quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135650,10,'S31.153A ','Open bite of abdominal wall, right lower quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135649,10,'S31.152S ','Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135648,10,'S31.152D ','Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135647,10,'S31.152A ','Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135646,10,'S31.151S ','Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135645,10,'S31.151D ','Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135644,10,'S31.151A ','Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135643,10,'S31.150S ','Open bite of abdominal wall, right upper quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135642,10,'S31.150D ','Open bite of abdominal wall, right upper quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135641,10,'S31.150A ','Open bite of abdominal wall, right upper quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135640,10,'S31.149S ','Puncture wound of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135639,10,'S31.149D ','Puncture wound of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135638,10,'S31.149A ','Puncture wound of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135637,10,'S31.145S ','Puncture wound of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135636,10,'S31.145D ','Puncture wound of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135635,10,'S31.145A ','Puncture wound of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135634,10,'S31.144S ','Puncture wound of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135633,10,'S31.144D ','Puncture wound of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135632,10,'S31.144A ','Puncture wound of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135631,10,'S31.143S ','Puncture wound of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135630,10,'S31.143D ','Puncture wound of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135629,10,'S31.143A ','Puncture wound of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135628,10,'S31.142S ','Puncture wound of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135627,10,'S31.142D ','Puncture wound of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135626,10,'S31.142A ','Puncture wound of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135625,10,'S31.141S ','Puncture wound of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135624,10,'S31.141D ','Puncture wound of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135623,10,'S31.141A ','Puncture wound of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135622,10,'S31.140S ','Puncture wound of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135621,10,'S31.140D ','Puncture wound of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135620,10,'S31.140A ','Puncture wound of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135619,10,'S31.139S ','Puncture wound of abdominal wall without foreign body, unspecified quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135618,10,'S31.139D ','Puncture wound of abdominal wall without foreign body, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135617,10,'S31.139A ','Puncture wound of abdominal wall without foreign body, unspecified quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135616,10,'S31.135S ','Puncture wound of abdominal wall without foreign body, periumbilic region without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135615,10,'S31.135D ','Puncture wound of abdominal wall without foreign body, periumbilic region without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135614,10,'S31.135A ','Puncture wound of abdominal wall without foreign body, periumbilic region without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135613,10,'S31.134S ','Puncture wound of abdominal wall without foreign body, left lower quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135612,10,'S31.134D ','Puncture wound of abdominal wall without foreign body, left lower quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135611,10,'S31.134A ','Puncture wound of abdominal wall without foreign body, left lower quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135610,10,'S31.133S ','Puncture wound of abdominal wall without foreign body, right lower quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135609,10,'S31.133D ','Puncture wound of abdominal wall without foreign body, right lower quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135608,10,'S31.133A ','Puncture wound of abdominal wall without foreign body, right lower quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135607,10,'S31.132S ','Puncture wound of abdominal wall without foreign body, epigastric region without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135606,10,'S31.132D ','Puncture wound of abdominal wall without foreign body, epigastric region without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135605,10,'S31.132A ','Puncture wound of abdominal wall without foreign body, epigastric region without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135604,10,'S31.131S ','Puncture wound of abdominal wall without foreign body, left upper quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135603,10,'S31.131D ','Puncture wound of abdominal wall without foreign body, left upper quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135602,10,'S31.131A ','Puncture wound of abdominal wall without foreign body, left upper quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135601,10,'S31.130S ','Puncture wound of abdominal wall without foreign body, right upper quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135600,10,'S31.130D ','Puncture wound of abdominal wall without foreign body, right upper quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135599,10,'S31.130A ','Puncture wound of abdominal wall without foreign body, right upper quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135598,10,'S31.129S ','Laceration of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135597,10,'S31.129D ','Laceration of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135596,10,'S31.129A ','Laceration of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135595,10,'S31.125S ','Laceration of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135594,10,'S31.125D ','Laceration of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135593,10,'S31.125A ','Laceration of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135592,10,'S31.124S ','Laceration of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135591,10,'S31.124D ','Laceration of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135590,10,'S31.124A ','Laceration of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135589,10,'S31.123S ','Laceration of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135588,10,'S31.123D ','Laceration of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135587,10,'S31.123A ','Laceration of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135586,10,'S31.122S ','Laceration of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135585,10,'S31.122D ','Laceration of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135584,10,'S31.122A ','Laceration of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135583,10,'S31.121S ','Laceration of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135582,10,'S31.121D ','Laceration of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135581,10,'S31.121A ','Laceration of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135580,10,'S31.120S ','Laceration of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135579,10,'S31.120D ','Laceration of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135578,10,'S31.120A ','Laceration of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135577,10,'S31.119S ','Laceration without foreign body of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135576,10,'S31.119D ','Laceration without foreign body of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135575,10,'S31.119A ','Laceration without foreign body of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135574,10,'S31.115S ','Laceration without foreign body of abdominal wall, periumbilic region without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135573,10,'S31.115D ','Laceration without foreign body of abdominal wall, periumbilic region without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135572,10,'S31.115A ','Laceration without foreign body of abdominal wall, periumbilic region without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135571,10,'S31.114S ','Laceration without foreign body of abdominal wall, left lower quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135570,10,'S31.114D ','Laceration without foreign body of abdominal wall, left lower quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135569,10,'S31.114A ','Laceration without foreign body of abdominal wall, left lower quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135568,10,'S31.113S ','Laceration without foreign body of abdominal wall, right lower quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135567,10,'S31.113D ','Laceration without foreign body of abdominal wall, right lower quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135566,10,'S31.113A ','Laceration without foreign body of abdominal wall, right lower quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135565,10,'S31.112S ','Laceration without foreign body of abdominal wall, epigastric region without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135564,10,'S31.112D ','Laceration without foreign body of abdominal wall, epigastric region without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135563,10,'S31.112A ','Laceration without foreign body of abdominal wall, epigastric region without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135562,10,'S31.111S ','Laceration without foreign body of abdominal wall, left upper quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135561,10,'S31.111D ','Laceration without foreign body of abdominal wall, left upper quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135560,10,'S31.111A ','Laceration without foreign body of abdominal wall, left upper quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135559,10,'S31.110S ','Laceration without foreign body of abdominal wall, right upper quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135558,10,'S31.110D ','Laceration without foreign body of abdominal wall, right upper quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135557,10,'S31.110A ','Laceration without foreign body of abdominal wall, right upper quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135556,10,'S31.109S ','Unspecified open wound of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135555,10,'S31.109D ','Unspecified open wound of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135554,10,'S31.109A ','Unspecified open wound of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135553,10,'S31.105S ','Unspecified open wound of abdominal wall, periumbilic region without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135552,10,'S31.105D ','Unspecified open wound of abdominal wall, periumbilic region without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135551,10,'S31.105A ','Unspecified open wound of abdominal wall, periumbilic region without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135550,10,'S31.104S ','Unspecified open wound of abdominal wall, left lower quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135549,10,'S31.104D ','Unspecified open wound of abdominal wall, left lower quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135548,10,'S31.104A ','Unspecified open wound of abdominal wall, left lower quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135547,10,'S31.103S ','Unspecified open wound of abdominal wall, right lower quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135546,10,'S31.103D ','Unspecified open wound of abdominal wall, right lower quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135545,10,'S31.103A ','Unspecified open wound of abdominal wall, right lower quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135544,10,'S31.102S ','Unspecified open wound of abdominal wall, epigastric region without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135543,10,'S31.102D ','Unspecified open wound of abdominal wall, epigastric region without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135542,10,'S31.102A ','Unspecified open wound of abdominal wall, epigastric region without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135541,10,'S31.101S ','Unspecified open wound of abdominal wall, left upper quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135540,10,'S31.101D ','Unspecified open wound of abdominal wall, left upper quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135539,10,'S31.101A ','Unspecified open wound of abdominal wall, left upper quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135538,10,'S31.100S ','Unspecified open wound of abdominal wall, right upper quadrant without penetration into peritoneal cavity, sequela','Y','0000-00-00 00:00:00'),(135537,10,'S31.100D ','Unspecified open wound of abdominal wall, right upper quadrant without penetration into peritoneal cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(135535,10,'S31.051S ','Open bite of lower back and pelvis with penetration into retroperitoneum, sequela','Y','0000-00-00 00:00:00'),(135536,10,'S31.100A ','Unspecified open wound of abdominal wall, right upper quadrant without penetration into peritoneal cavity, initial encounter','Y','0000-00-00 00:00:00'),(135534,10,'S31.051D ','Open bite of lower back and pelvis with penetration into retroperitoneum, subsequent encounter','Y','0000-00-00 00:00:00'),(135532,10,'S31.050S ','Open bite of lower back and pelvis without penetration into retroperitoneum, sequela','Y','0000-00-00 00:00:00'),(135533,10,'S31.051A ','Open bite of lower back and pelvis with penetration into retroperitoneum, initial encounter','Y','0000-00-00 00:00:00'),(135531,10,'S31.050D ','Open bite of lower back and pelvis without penetration into retroperitoneum, subsequent encounter','Y','0000-00-00 00:00:00'),(135530,10,'S31.050A ','Open bite of lower back and pelvis without penetration into retroperitoneum, initial encounter','Y','0000-00-00 00:00:00'),(135529,10,'S31.041S ','Puncture wound with foreign body of lower back and pelvis with penetration into retroperitoneum, sequela','Y','0000-00-00 00:00:00'),(135528,10,'S31.041D ','Puncture wound with foreign body of lower back and pelvis with penetration into retroperitoneum, subsequent encounter','Y','0000-00-00 00:00:00'),(135527,10,'S31.041A ','Puncture wound with foreign body of lower back and pelvis with penetration into retroperitoneum, initial encounter','Y','0000-00-00 00:00:00'),(135526,10,'S31.040S ','Puncture wound with foreign body of lower back and pelvis without penetration into retroperitoneum, sequela','Y','0000-00-00 00:00:00'),(135525,10,'S31.040D ','Puncture wound with foreign body of lower back and pelvis without penetration into retroperitoneum, subsequent encounter','Y','0000-00-00 00:00:00'),(135524,10,'S31.040A ','Puncture wound with foreign body of lower back and pelvis without penetration into retroperitoneum, initial encounter','Y','0000-00-00 00:00:00'),(135523,10,'S31.031S ','Puncture wound without foreign body of lower back and pelvis with penetration into retroperitoneum, sequela','Y','0000-00-00 00:00:00'),(135522,10,'S31.031D ','Puncture wound without foreign body of lower back and pelvis with penetration into retroperitoneum, subsequent encounter','Y','0000-00-00 00:00:00'),(135521,10,'S31.031A ','Puncture wound without foreign body of lower back and pelvis with penetration into retroperitoneum, initial encounter','Y','0000-00-00 00:00:00'),(135520,10,'S31.030S ','Puncture wound without foreign body of lower back and pelvis without penetration into retroperitoneum, sequela','Y','0000-00-00 00:00:00'),(135519,10,'S31.030D ','Puncture wound without foreign body of lower back and pelvis without penetration into retroperitoneum, subsequent encounter','Y','0000-00-00 00:00:00'),(135518,10,'S31.030A ','Puncture wound without foreign body of lower back and pelvis without penetration into retroperitoneum, initial encounter','Y','0000-00-00 00:00:00'),(135517,10,'S31.021S ','Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum, sequela','Y','0000-00-00 00:00:00'),(135516,10,'S31.021D ','Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum, subsequent encounter','Y','0000-00-00 00:00:00'),(135515,10,'S31.021A ','Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum, initial encounter','Y','0000-00-00 00:00:00'),(135514,10,'S31.020S ','Laceration with foreign body of lower back and pelvis without penetration into retroperitoneum, sequela','Y','0000-00-00 00:00:00'),(135513,10,'S31.020D ','Laceration with foreign body of lower back and pelvis without penetration into retroperitoneum, subsequent encounter','Y','0000-00-00 00:00:00'),(135512,10,'S31.020A ','Laceration with foreign body of lower back and pelvis without penetration into retroperitoneum, initial encounter','Y','0000-00-00 00:00:00'),(135511,10,'S31.011S ','Laceration without foreign body of lower back and pelvis with penetration into retroperitoneum, sequela','Y','0000-00-00 00:00:00'),(135510,10,'S31.011D ','Laceration without foreign body of lower back and pelvis with penetration into retroperitoneum, subsequent encounter','Y','0000-00-00 00:00:00'),(135509,10,'S31.011A ','Laceration without foreign body of lower back and pelvis with penetration into retroperitoneum, initial encounter','Y','0000-00-00 00:00:00'),(135508,10,'S31.010S ','Laceration without foreign body of lower back and pelvis without penetration into retroperitoneum, sequela','Y','0000-00-00 00:00:00'),(135507,10,'S31.010D ','Laceration without foreign body of lower back and pelvis without penetration into retroperitoneum, subsequent encounter','Y','0000-00-00 00:00:00'),(135506,10,'S31.010A ','Laceration without foreign body of lower back and pelvis without penetration into retroperitoneum, initial encounter','Y','0000-00-00 00:00:00'),(135505,10,'S31.001S ','Unspecified open wound of lower back and pelvis with penetration into retroperitoneum, sequela','Y','0000-00-00 00:00:00'),(135504,10,'S31.001D ','Unspecified open wound of lower back and pelvis with penetration into retroperitoneum, subsequent encounter','Y','0000-00-00 00:00:00'),(135503,10,'S31.001A ','Unspecified open wound of lower back and pelvis with penetration into retroperitoneum, initial encounter','Y','0000-00-00 00:00:00'),(135502,10,'S31.000S ','Unspecified open wound of lower back and pelvis without penetration into retroperitoneum, sequela','Y','0000-00-00 00:00:00'),(135501,10,'S31.000D ','Unspecified open wound of lower back and pelvis without penetration into retroperitoneum, subsequent encounter','Y','0000-00-00 00:00:00'),(135500,10,'S31.000A ','Unspecified open wound of lower back and pelvis without penetration into retroperitoneum, initial encounter','Y','0000-00-00 00:00:00'),(135499,10,'S30.98XS ','Unspecified superficial injury of anus, sequela','Y','0000-00-00 00:00:00'),(135497,10,'S30.98XA ','Unspecified superficial injury of anus, initial encounter','Y','0000-00-00 00:00:00'),(135498,10,'S30.98XD ','Unspecified superficial injury of anus, subsequent encounter','Y','0000-00-00 00:00:00'),(135496,10,'S30.97XS ','Unspecified superficial injury of unspecified external genital organs, female, sequela','Y','0000-00-00 00:00:00'),(135495,10,'S30.97XD ','Unspecified superficial injury of unspecified external genital organs, female, subsequent encounter','Y','0000-00-00 00:00:00'),(135494,10,'S30.97XA ','Unspecified superficial injury of unspecified external genital organs, female, initial encounter','Y','0000-00-00 00:00:00'),(135493,10,'S30.96XS ','Unspecified superficial injury of unspecified external genital organs, male, sequela','Y','0000-00-00 00:00:00'),(135492,10,'S30.96XD ','Unspecified superficial injury of unspecified external genital organs, male, subsequent encounter','Y','0000-00-00 00:00:00'),(135491,10,'S30.96XA ','Unspecified superficial injury of unspecified external genital organs, male, initial encounter','Y','0000-00-00 00:00:00'),(135490,10,'S30.95XS ','Unspecified superficial injury of vagina and vulva, sequela','Y','0000-00-00 00:00:00'),(135489,10,'S30.95XD ','Unspecified superficial injury of vagina and vulva, subsequent encounter','Y','0000-00-00 00:00:00'),(135487,10,'S30.94XS ','Unspecified superficial injury of scrotum and testes, sequela','Y','0000-00-00 00:00:00'),(135488,10,'S30.95XA ','Unspecified superficial injury of vagina and vulva, initial encounter','Y','0000-00-00 00:00:00'),(135486,10,'S30.94XD ','Unspecified superficial injury of scrotum and testes, subsequent encounter','Y','0000-00-00 00:00:00'),(135485,10,'S30.94XA ','Unspecified superficial injury of scrotum and testes, initial encounter','Y','0000-00-00 00:00:00'),(135484,10,'S30.93XS ','Unspecified superficial injury of penis, sequela','Y','0000-00-00 00:00:00'),(135483,10,'S30.93XD ','Unspecified superficial injury of penis, subsequent encounter','Y','0000-00-00 00:00:00'),(135482,10,'S30.93XA ','Unspecified superficial injury of penis, initial encounter','Y','0000-00-00 00:00:00'),(135481,10,'S30.92XS ','Unspecified superficial injury of abdominal wall, sequela','Y','0000-00-00 00:00:00'),(135480,10,'S30.92XD ','Unspecified superficial injury of abdominal wall, subsequent encounter','Y','0000-00-00 00:00:00'),(135479,10,'S30.92XA ','Unspecified superficial injury of abdominal wall, initial encounter','Y','0000-00-00 00:00:00'),(135477,10,'S30.91XD ','Unspecified superficial injury of lower back and pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(135478,10,'S30.91XS ','Unspecified superficial injury of lower back and pelvis, sequela','Y','0000-00-00 00:00:00'),(135476,10,'S30.91XA ','Unspecified superficial injury of lower back and pelvis, initial encounter','Y','0000-00-00 00:00:00'),(135474,10,'S30.877D ','Other superficial bite of anus, subsequent encounter','Y','0000-00-00 00:00:00'),(135475,10,'S30.877S ','Other superficial bite of anus, sequela','Y','0000-00-00 00:00:00'),(135473,10,'S30.877A ','Other superficial bite of anus, initial encounter','Y','0000-00-00 00:00:00'),(135472,10,'S30.876S ','Other superficial bite of unspecified external genital organs, female, sequela','Y','0000-00-00 00:00:00'),(135471,10,'S30.876D ','Other superficial bite of unspecified external genital organs, female, subsequent encounter','Y','0000-00-00 00:00:00'),(135470,10,'S30.876A ','Other superficial bite of unspecified external genital organs, female, initial encounter','Y','0000-00-00 00:00:00'),(135468,10,'S30.875D ','Other superficial bite of unspecified external genital organs, male, subsequent encounter','Y','0000-00-00 00:00:00'),(135469,10,'S30.875S ','Other superficial bite of unspecified external genital organs, male, sequela','Y','0000-00-00 00:00:00'),(135467,10,'S30.875A ','Other superficial bite of unspecified external genital organs, male, initial encounter','Y','0000-00-00 00:00:00'),(135466,10,'S30.874S ','Other superficial bite of vagina and vulva, sequela','Y','0000-00-00 00:00:00'),(135465,10,'S30.874D ','Other superficial bite of vagina and vulva, subsequent encounter','Y','0000-00-00 00:00:00'),(135464,10,'S30.874A ','Other superficial bite of vagina and vulva, initial encounter','Y','0000-00-00 00:00:00'),(135463,10,'S30.873S ','Other superficial bite of scrotum and testes, sequela','Y','0000-00-00 00:00:00'),(135462,10,'S30.873D ','Other superficial bite of scrotum and testes, subsequent encounter','Y','0000-00-00 00:00:00'),(135460,10,'S30.872S ','Other superficial bite of penis, sequela','Y','0000-00-00 00:00:00'),(135461,10,'S30.873A ','Other superficial bite of scrotum and testes, initial encounter','Y','0000-00-00 00:00:00'),(135459,10,'S30.872D ','Other superficial bite of penis, subsequent encounter','Y','0000-00-00 00:00:00'),(135457,10,'S30.871S ','Other superficial bite of abdominal wall, sequela','Y','0000-00-00 00:00:00'),(135458,10,'S30.872A ','Other superficial bite of penis, initial encounter','Y','0000-00-00 00:00:00'),(135456,10,'S30.871D ','Other superficial bite of abdominal wall, subsequent encounter','Y','0000-00-00 00:00:00'),(135455,10,'S30.871A ','Other superficial bite of abdominal wall, initial encounter','Y','0000-00-00 00:00:00'),(135453,10,'S30.870D ','Other superficial bite of lower back and pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(135454,10,'S30.870S ','Other superficial bite of lower back and pelvis, sequela','Y','0000-00-00 00:00:00'),(135452,10,'S30.870A ','Other superficial bite of lower back and pelvis, initial encounter','Y','0000-00-00 00:00:00'),(135450,10,'S30.867D ','Insect bite (nonvenomous) of anus, subsequent encounter','Y','0000-00-00 00:00:00'),(135451,10,'S30.867S ','Insect bite (nonvenomous) of anus, sequela','Y','0000-00-00 00:00:00'),(135449,10,'S30.867A ','Insect bite (nonvenomous) of anus, initial encounter','Y','0000-00-00 00:00:00'),(135448,10,'S30.866S ','Insect bite (nonvenomous) of unspecified external genital organs, female, sequela','Y','0000-00-00 00:00:00'),(135447,10,'S30.866D ','Insect bite (nonvenomous) of unspecified external genital organs, female, subsequent encounter','Y','0000-00-00 00:00:00'),(135446,10,'S30.866A ','Insect bite (nonvenomous) of unspecified external genital organs, female, initial encounter','Y','0000-00-00 00:00:00'),(135445,10,'S30.865S ','Insect bite (nonvenomous) of unspecified external genital organs, male, sequela','Y','0000-00-00 00:00:00'),(135444,10,'S30.865D ','Insect bite (nonvenomous) of unspecified external genital organs, male, subsequent encounter','Y','0000-00-00 00:00:00'),(135443,10,'S30.865A ','Insect bite (nonvenomous) of unspecified external genital organs, male, initial encounter','Y','0000-00-00 00:00:00'),(135442,10,'S30.864S ','Insect bite (nonvenomous) of vagina and vulva, sequela','Y','0000-00-00 00:00:00'),(135441,10,'S30.864D ','Insect bite (nonvenomous) of vagina and vulva, subsequent encounter','Y','0000-00-00 00:00:00'),(135440,10,'S30.864A ','Insect bite (nonvenomous) of vagina and vulva, initial encounter','Y','0000-00-00 00:00:00'),(135439,10,'S30.863S ','Insect bite (nonvenomous) of scrotum and testes, sequela','Y','0000-00-00 00:00:00'),(135437,10,'S30.863A ','Insect bite (nonvenomous) of scrotum and testes, initial encounter','Y','0000-00-00 00:00:00'),(135438,10,'S30.863D ','Insect bite (nonvenomous) of scrotum and testes, subsequent encounter','Y','0000-00-00 00:00:00'),(135436,10,'S30.862S ','Insect bite (nonvenomous) of penis, sequela','Y','0000-00-00 00:00:00'),(135434,10,'S30.862A ','Insect bite (nonvenomous) of penis, initial encounter','Y','0000-00-00 00:00:00'),(135435,10,'S30.862D ','Insect bite (nonvenomous) of penis, subsequent encounter','Y','0000-00-00 00:00:00'),(135433,10,'S30.861S ','Insect bite (nonvenomous) of abdominal wall, sequela','Y','0000-00-00 00:00:00'),(135432,10,'S30.861D ','Insect bite (nonvenomous) of abdominal wall, subsequent encounter','Y','0000-00-00 00:00:00'),(135430,10,'S30.860S ','Insect bite (nonvenomous) of lower back and pelvis, sequela','Y','0000-00-00 00:00:00'),(135431,10,'S30.861A ','Insect bite (nonvenomous) of abdominal wall, initial encounter','Y','0000-00-00 00:00:00'),(135429,10,'S30.860D ','Insect bite (nonvenomous) of lower back and pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(135428,10,'S30.860A ','Insect bite (nonvenomous) of lower back and pelvis, initial encounter','Y','0000-00-00 00:00:00'),(135426,10,'S30.857D ','Superficial foreign body of anus, subsequent encounter','Y','0000-00-00 00:00:00'),(135427,10,'S30.857S ','Superficial foreign body of anus, sequela','Y','0000-00-00 00:00:00'),(135425,10,'S30.857A ','Superficial foreign body of anus, initial encounter','Y','0000-00-00 00:00:00'),(135424,10,'S30.856S ','Superficial foreign body of unspecified external genital organs, female, sequela','Y','0000-00-00 00:00:00'),(135423,10,'S30.856D ','Superficial foreign body of unspecified external genital organs, female, subsequent encounter','Y','0000-00-00 00:00:00'),(135422,10,'S30.856A ','Superficial foreign body of unspecified external genital organs, female, initial encounter','Y','0000-00-00 00:00:00'),(135421,10,'S30.855S ','Superficial foreign body of unspecified external genital organs, male, sequela','Y','0000-00-00 00:00:00'),(135420,10,'S30.855D ','Superficial foreign body of unspecified external genital organs, male, subsequent encounter','Y','0000-00-00 00:00:00'),(135419,10,'S30.855A ','Superficial foreign body of unspecified external genital organs, male, initial encounter','Y','0000-00-00 00:00:00'),(135418,10,'S30.854S ','Superficial foreign body of vagina and vulva, sequela','Y','0000-00-00 00:00:00'),(135416,10,'S30.854A ','Superficial foreign body of vagina and vulva, initial encounter','Y','0000-00-00 00:00:00'),(135417,10,'S30.854D ','Superficial foreign body of vagina and vulva, subsequent encounter','Y','0000-00-00 00:00:00'),(135415,10,'S30.853S ','Superficial foreign body of scrotum and testes, sequela','Y','0000-00-00 00:00:00'),(135413,10,'S30.853A ','Superficial foreign body of scrotum and testes, initial encounter','Y','0000-00-00 00:00:00'),(135414,10,'S30.853D ','Superficial foreign body of scrotum and testes, subsequent encounter','Y','0000-00-00 00:00:00'),(135412,10,'S30.852S ','Superficial foreign body of penis, sequela','Y','0000-00-00 00:00:00'),(135410,10,'S30.852A ','Superficial foreign body of penis, initial encounter','Y','0000-00-00 00:00:00'),(135411,10,'S30.852D ','Superficial foreign body of penis, subsequent encounter','Y','0000-00-00 00:00:00'),(135409,10,'S30.851S ','Superficial foreign body of abdominal wall, sequela','Y','0000-00-00 00:00:00'),(135408,10,'S30.851D ','Superficial foreign body of abdominal wall, subsequent encounter','Y','0000-00-00 00:00:00'),(135406,10,'S30.850S ','Superficial foreign body of lower back and pelvis, sequela','Y','0000-00-00 00:00:00'),(135407,10,'S30.851A ','Superficial foreign body of abdominal wall, initial encounter','Y','0000-00-00 00:00:00'),(135405,10,'S30.850D ','Superficial foreign body of lower back and pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(135404,10,'S30.850A ','Superficial foreign body of lower back and pelvis, initial encounter','Y','0000-00-00 00:00:00'),(135403,10,'S30.846S ','External constriction of unspecified external genital organs, female, sequela','Y','0000-00-00 00:00:00'),(135402,10,'S30.846D ','External constriction of unspecified external genital organs, female, subsequent encounter','Y','0000-00-00 00:00:00'),(135401,10,'S30.846A ','External constriction of unspecified external genital organs, female, initial encounter','Y','0000-00-00 00:00:00'),(135400,10,'S30.845S ','External constriction of unspecified external genital organs, male, sequela','Y','0000-00-00 00:00:00'),(135399,10,'S30.845D ','External constriction of unspecified external genital organs, male, subsequent encounter','Y','0000-00-00 00:00:00'),(135397,10,'S30.844S ','External constriction of vagina and vulva, sequela','Y','0000-00-00 00:00:00'),(135398,10,'S30.845A ','External constriction of unspecified external genital organs, male, initial encounter','Y','0000-00-00 00:00:00'),(135396,10,'S30.844D ','External constriction of vagina and vulva, subsequent encounter','Y','0000-00-00 00:00:00'),(135394,10,'S30.843S ','External constriction of scrotum and testes, sequela','Y','0000-00-00 00:00:00'),(135395,10,'S30.844A ','External constriction of vagina and vulva, initial encounter','Y','0000-00-00 00:00:00'),(135393,10,'S30.843D ','External constriction of scrotum and testes, subsequent encounter','Y','0000-00-00 00:00:00'),(135392,10,'S30.843A ','External constriction of scrotum and testes, initial encounter','Y','0000-00-00 00:00:00'),(135390,10,'S30.842D ','External constriction of penis, subsequent encounter','Y','0000-00-00 00:00:00'),(135391,10,'S30.842S ','External constriction of penis, sequela','Y','0000-00-00 00:00:00'),(135389,10,'S30.842A ','External constriction of penis, initial encounter','Y','0000-00-00 00:00:00'),(135388,10,'S30.841S ','External constriction of abdominal wall, sequela','Y','0000-00-00 00:00:00'),(135386,10,'S30.841A ','External constriction of abdominal wall, initial encounter','Y','0000-00-00 00:00:00'),(135387,10,'S30.841D ','External constriction of abdominal wall, subsequent encounter','Y','0000-00-00 00:00:00'),(135385,10,'S30.840S ','External constriction of lower back and pelvis, sequela','Y','0000-00-00 00:00:00'),(135384,10,'S30.840D ','External constriction of lower back and pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(135383,10,'S30.840A ','External constriction of lower back and pelvis, initial encounter','Y','0000-00-00 00:00:00'),(135381,10,'S30.827D ','Blister (nonthermal) of anus, subsequent encounter','Y','0000-00-00 00:00:00'),(135382,10,'S30.827S ','Blister (nonthermal) of anus, sequela','Y','0000-00-00 00:00:00'),(135380,10,'S30.827A ','Blister (nonthermal) of anus, initial encounter','Y','0000-00-00 00:00:00'),(135379,10,'S30.826S ','Blister (nonthermal) of unspecified external genital organs, female, sequela','Y','0000-00-00 00:00:00'),(135378,10,'S30.826D ','Blister (nonthermal) of unspecified external genital organs, female, subsequent encounter','Y','0000-00-00 00:00:00'),(135377,10,'S30.826A ','Blister (nonthermal) of unspecified external genital organs, female, initial encounter','Y','0000-00-00 00:00:00'),(135376,10,'S30.825S ','Blister (nonthermal) of unspecified external genital organs, male, sequela','Y','0000-00-00 00:00:00'),(135375,10,'S30.825D ','Blister (nonthermal) of unspecified external genital organs, male, subsequent encounter','Y','0000-00-00 00:00:00'),(135374,10,'S30.825A ','Blister (nonthermal) of unspecified external genital organs, male, initial encounter','Y','0000-00-00 00:00:00'),(135372,10,'S30.824D ','Blister (nonthermal) of vagina and vulva, subsequent encounter','Y','0000-00-00 00:00:00'),(135373,10,'S30.824S ','Blister (nonthermal) of vagina and vulva, sequela','Y','0000-00-00 00:00:00'),(135371,10,'S30.824A ','Blister (nonthermal) of vagina and vulva, initial encounter','Y','0000-00-00 00:00:00'),(135370,10,'S30.823S ','Blister (nonthermal) of scrotum and testes, sequela','Y','0000-00-00 00:00:00'),(135368,10,'S30.823A ','Blister (nonthermal) of scrotum and testes, initial encounter','Y','0000-00-00 00:00:00'),(135369,10,'S30.823D ','Blister (nonthermal) of scrotum and testes, subsequent encounter','Y','0000-00-00 00:00:00'),(135367,10,'S30.822S ','Blister (nonthermal) of penis, sequela','Y','0000-00-00 00:00:00'),(135366,10,'S30.822D ','Blister (nonthermal) of penis, subsequent encounter','Y','0000-00-00 00:00:00'),(135365,10,'S30.822A ','Blister (nonthermal) of penis, initial encounter','Y','0000-00-00 00:00:00'),(135364,10,'S30.821S ','Blister (nonthermal) of abdominal wall, sequela','Y','0000-00-00 00:00:00'),(135362,10,'S30.821A ','Blister (nonthermal) of abdominal wall, initial encounter','Y','0000-00-00 00:00:00'),(135363,10,'S30.821D ','Blister (nonthermal) of abdominal wall, subsequent encounter','Y','0000-00-00 00:00:00'),(135361,10,'S30.820S ','Blister (nonthermal) of lower back and pelvis, sequela','Y','0000-00-00 00:00:00'),(135359,10,'S30.820A ','Blister (nonthermal) of lower back and pelvis, initial encounter','Y','0000-00-00 00:00:00'),(135360,10,'S30.820D ','Blister (nonthermal) of lower back and pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(135357,10,'S30.817D ','Abrasion of anus, subsequent encounter','Y','0000-00-00 00:00:00'),(135358,10,'S30.817S ','Abrasion of anus, sequela','Y','0000-00-00 00:00:00'),(135356,10,'S30.817A ','Abrasion of anus, initial encounter','Y','0000-00-00 00:00:00'),(135354,10,'S30.816D ','Abrasion of unspecified external genital organs, female, subsequent encounter','Y','0000-00-00 00:00:00'),(135355,10,'S30.816S ','Abrasion of unspecified external genital organs, female, sequela','Y','0000-00-00 00:00:00'),(135353,10,'S30.816A ','Abrasion of unspecified external genital organs, female, initial encounter','Y','0000-00-00 00:00:00'),(135352,10,'S30.815S ','Abrasion of unspecified external genital organs, male, sequela','Y','0000-00-00 00:00:00'),(135351,10,'S30.815D ','Abrasion of unspecified external genital organs, male, subsequent encounter','Y','0000-00-00 00:00:00'),(135349,10,'S30.814S ','Abrasion of vagina and vulva, sequela','Y','0000-00-00 00:00:00'),(135350,10,'S30.815A ','Abrasion of unspecified external genital organs, male, initial encounter','Y','0000-00-00 00:00:00'),(135348,10,'S30.814D ','Abrasion of vagina and vulva, subsequent encounter','Y','0000-00-00 00:00:00'),(135346,10,'S30.813S ','Abrasion of scrotum and testes, sequela','Y','0000-00-00 00:00:00'),(135347,10,'S30.814A ','Abrasion of vagina and vulva, initial encounter','Y','0000-00-00 00:00:00'),(135345,10,'S30.813D ','Abrasion of scrotum and testes, subsequent encounter','Y','0000-00-00 00:00:00'),(135344,10,'S30.813A ','Abrasion of scrotum and testes, initial encounter','Y','0000-00-00 00:00:00'),(135342,10,'S30.812D ','Abrasion of penis, subsequent encounter','Y','0000-00-00 00:00:00'),(135343,10,'S30.812S ','Abrasion of penis, sequela','Y','0000-00-00 00:00:00'),(135341,10,'S30.812A ','Abrasion of penis, initial encounter','Y','0000-00-00 00:00:00'),(135339,10,'S30.811D ','Abrasion of abdominal wall, subsequent encounter','Y','0000-00-00 00:00:00'),(135340,10,'S30.811S ','Abrasion of abdominal wall, sequela','Y','0000-00-00 00:00:00'),(135338,10,'S30.811A ','Abrasion of abdominal wall, initial encounter','Y','0000-00-00 00:00:00'),(135336,10,'S30.810D ','Abrasion of lower back and pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(135337,10,'S30.810S ','Abrasion of lower back and pelvis, sequela','Y','0000-00-00 00:00:00'),(135334,10,'S30.3XXS ','Contusion of anus, sequela','Y','0000-00-00 00:00:00'),(135335,10,'S30.810A ','Abrasion of lower back and pelvis, initial encounter','Y','0000-00-00 00:00:00'),(135332,10,'S30.3XXA ','Contusion of anus, initial encounter','Y','0000-00-00 00:00:00'),(135333,10,'S30.3XXD ','Contusion of anus, subsequent encounter','Y','0000-00-00 00:00:00'),(135330,10,'S30.23XD ','Contusion of vagina and vulva, subsequent encounter','Y','0000-00-00 00:00:00'),(135331,10,'S30.23XS ','Contusion of vagina and vulva, sequela','Y','0000-00-00 00:00:00'),(135329,10,'S30.23XA ','Contusion of vagina and vulva, initial encounter','Y','0000-00-00 00:00:00'),(135327,10,'S30.22XD ','Contusion of scrotum and testes, subsequent encounter','Y','0000-00-00 00:00:00'),(135328,10,'S30.22XS ','Contusion of scrotum and testes, sequela','Y','0000-00-00 00:00:00'),(135325,10,'S30.21XS ','Contusion of penis, sequela','Y','0000-00-00 00:00:00'),(135326,10,'S30.22XA ','Contusion of scrotum and testes, initial encounter','Y','0000-00-00 00:00:00'),(135324,10,'S30.21XD ','Contusion of penis, subsequent encounter','Y','0000-00-00 00:00:00'),(135322,10,'S30.202S ','Contusion of unspecified external genital organ, female, sequela','Y','0000-00-00 00:00:00'),(135323,10,'S30.21XA ','Contusion of penis, initial encounter','Y','0000-00-00 00:00:00'),(135321,10,'S30.202D ','Contusion of unspecified external genital organ, female, subsequent encounter','Y','0000-00-00 00:00:00'),(135320,10,'S30.202A ','Contusion of unspecified external genital organ, female, initial encounter','Y','0000-00-00 00:00:00'),(135319,10,'S30.201S ','Contusion of unspecified external genital organ, male, sequela','Y','0000-00-00 00:00:00'),(135318,10,'S30.201D ','Contusion of unspecified external genital organ, male, subsequent encounter','Y','0000-00-00 00:00:00'),(135317,10,'S30.201A ','Contusion of unspecified external genital organ, male, initial encounter','Y','0000-00-00 00:00:00'),(135316,10,'S30.1XXS ','Contusion of abdominal wall, sequela','Y','0000-00-00 00:00:00'),(135314,10,'S30.1XXA ','Contusion of abdominal wall, initial encounter','Y','0000-00-00 00:00:00'),(135315,10,'S30.1XXD ','Contusion of abdominal wall, subsequent encounter','Y','0000-00-00 00:00:00'),(135312,10,'S30.0XXD ','Contusion of lower back and pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(135313,10,'S30.0XXS ','Contusion of lower back and pelvis, sequela','Y','0000-00-00 00:00:00'),(135311,10,'S30.0XXA ','Contusion of lower back and pelvis, initial encounter','Y','0000-00-00 00:00:00'),(135309,10,'S29.9XXD ','Unspecified injury of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135310,10,'S29.9XXS ','Unspecified injury of thorax, sequela','Y','0000-00-00 00:00:00'),(135307,10,'S29.8XXS ','Other specified injuries of thorax, sequela','Y','0000-00-00 00:00:00'),(135308,10,'S29.9XXA ','Unspecified injury of thorax, initial encounter','Y','0000-00-00 00:00:00'),(135306,10,'S29.8XXD ','Other specified injuries of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135305,10,'S29.8XXA ','Other specified injuries of thorax, initial encounter','Y','0000-00-00 00:00:00'),(135304,10,'S29.099S ','Other injury of muscle and tendon of unspecified wall of thorax, sequela','Y','0000-00-00 00:00:00'),(135303,10,'S29.099D ','Other injury of muscle and tendon of unspecified wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135301,10,'S29.092S ','Other injury of muscle and tendon of back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(135302,10,'S29.099A ','Other injury of muscle and tendon of unspecified wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(135300,10,'S29.092D ','Other injury of muscle and tendon of back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135299,10,'S29.092A ','Other injury of muscle and tendon of back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(135298,10,'S29.091S ','Other injury of muscle and tendon of front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(135297,10,'S29.091D ','Other injury of muscle and tendon of front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135296,10,'S29.091A ','Other injury of muscle and tendon of front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(135295,10,'S29.029S ','Laceration of muscle and tendon of unspecified wall of thorax, sequela','Y','0000-00-00 00:00:00'),(135294,10,'S29.029D ','Laceration of muscle and tendon of unspecified wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135292,10,'S29.022S ','Laceration of muscle and tendon of back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(135293,10,'S29.029A ','Laceration of muscle and tendon of unspecified wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(135291,10,'S29.022D ','Laceration of muscle and tendon of back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135290,10,'S29.022A ','Laceration of muscle and tendon of back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(135288,10,'S29.021D ','Laceration of muscle and tendon of front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135289,10,'S29.021S ','Laceration of muscle and tendon of front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(135287,10,'S29.021A ','Laceration of muscle and tendon of front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(135286,10,'S29.019S ','Strain of muscle and tendon of unspecified wall of thorax, sequela','Y','0000-00-00 00:00:00'),(135285,10,'S29.019D ','Strain of muscle and tendon of unspecified wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135283,10,'S29.012S ','Strain of muscle and tendon of back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(135284,10,'S29.019A ','Strain of muscle and tendon of unspecified wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(135282,10,'S29.012D ','Strain of muscle and tendon of back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135281,10,'S29.012A ','Strain of muscle and tendon of back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(135280,10,'S29.011S ','Strain of muscle and tendon of front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(135279,10,'S29.011D ','Strain of muscle and tendon of front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135278,10,'S29.011A ','Strain of muscle and tendon of front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(135277,10,'S29.009S ','Unspecified injury of muscle and tendon of unspecified wall of thorax, sequela','Y','0000-00-00 00:00:00'),(135276,10,'S29.009D ','Unspecified injury of muscle and tendon of unspecified wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135275,10,'S29.009A ','Unspecified injury of muscle and tendon of unspecified wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(135273,10,'S29.002D ','Unspecified injury of muscle and tendon of back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135274,10,'S29.002S ','Unspecified injury of muscle and tendon of back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(135272,10,'S29.002A ','Unspecified injury of muscle and tendon of back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(135271,10,'S29.001S ','Unspecified injury of muscle and tendon of front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(135270,10,'S29.001D ','Unspecified injury of muscle and tendon of front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135269,10,'S29.001A ','Unspecified injury of muscle and tendon of front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(135267,10,'S28.229D ','Partial traumatic amputation of unspecified breast, subsequent encounter','Y','0000-00-00 00:00:00'),(135268,10,'S28.229S ','Partial traumatic amputation of unspecified breast, sequela','Y','0000-00-00 00:00:00'),(135266,10,'S28.229A ','Partial traumatic amputation of unspecified breast, initial encounter','Y','0000-00-00 00:00:00'),(135265,10,'S28.222S ','Partial traumatic amputation of left breast, sequela','Y','0000-00-00 00:00:00'),(135263,10,'S28.222A ','Partial traumatic amputation of left breast, initial encounter','Y','0000-00-00 00:00:00'),(135264,10,'S28.222D ','Partial traumatic amputation of left breast, subsequent encounter','Y','0000-00-00 00:00:00'),(135262,10,'S28.221S ','Partial traumatic amputation of right breast, sequela','Y','0000-00-00 00:00:00'),(135261,10,'S28.221D ','Partial traumatic amputation of right breast, subsequent encounter','Y','0000-00-00 00:00:00'),(135260,10,'S28.221A ','Partial traumatic amputation of right breast, initial encounter','Y','0000-00-00 00:00:00'),(135259,10,'S28.219S ','Complete traumatic amputation of unspecified breast, sequela','Y','0000-00-00 00:00:00'),(135258,10,'S28.219D ','Complete traumatic amputation of unspecified breast, subsequent encounter','Y','0000-00-00 00:00:00'),(135256,10,'S28.212S ','Complete traumatic amputation of left breast, sequela','Y','0000-00-00 00:00:00'),(135257,10,'S28.219A ','Complete traumatic amputation of unspecified breast, initial encounter','Y','0000-00-00 00:00:00'),(135255,10,'S28.212D ','Complete traumatic amputation of left breast, subsequent encounter','Y','0000-00-00 00:00:00'),(135253,10,'S28.211S ','Complete traumatic amputation of right breast, sequela','Y','0000-00-00 00:00:00'),(135254,10,'S28.212A ','Complete traumatic amputation of left breast, initial encounter','Y','0000-00-00 00:00:00'),(135252,10,'S28.211D ','Complete traumatic amputation of right breast, subsequent encounter','Y','0000-00-00 00:00:00'),(135251,10,'S28.211A ','Complete traumatic amputation of right breast, initial encounter','Y','0000-00-00 00:00:00'),(135249,10,'S28.1XXD ','Traumatic amputation (partial) of part of thorax, except breast, subsequent encounter','Y','0000-00-00 00:00:00'),(135250,10,'S28.1XXS ','Traumatic amputation (partial) of part of thorax, except breast, sequela','Y','0000-00-00 00:00:00'),(135248,10,'S28.1XXA ','Traumatic amputation (partial) of part of thorax, except breast, initial encounter','Y','0000-00-00 00:00:00'),(135246,10,'S28.0XXD ','Crushed chest, subsequent encounter','Y','0000-00-00 00:00:00'),(135247,10,'S28.0XXS ','Crushed chest, sequela','Y','0000-00-00 00:00:00'),(135245,10,'S28.0XXA ','Crushed chest, initial encounter','Y','0000-00-00 00:00:00'),(135243,10,'S27.9XXD ','Injury of unspecified intrathoracic organ, subsequent encounter','Y','0000-00-00 00:00:00'),(135244,10,'S27.9XXS ','Injury of unspecified intrathoracic organ, sequela','Y','0000-00-00 00:00:00'),(135242,10,'S27.9XXA ','Injury of unspecified intrathoracic organ, initial encounter','Y','0000-00-00 00:00:00'),(135241,10,'S27.899S ','Unspecified injury of other specified intrathoracic organs, sequela','Y','0000-00-00 00:00:00'),(135240,10,'S27.899D ','Unspecified injury of other specified intrathoracic organs, subsequent encounter','Y','0000-00-00 00:00:00'),(135239,10,'S27.899A ','Unspecified injury of other specified intrathoracic organs, initial encounter','Y','0000-00-00 00:00:00'),(135238,10,'S27.898S ','Other injury of other specified intrathoracic organs, sequela','Y','0000-00-00 00:00:00'),(135237,10,'S27.898D ','Other injury of other specified intrathoracic organs, subsequent encounter','Y','0000-00-00 00:00:00'),(135235,10,'S27.893S ','Laceration of other specified intrathoracic organs, sequela','Y','0000-00-00 00:00:00'),(135236,10,'S27.898A ','Other injury of other specified intrathoracic organs, initial encounter','Y','0000-00-00 00:00:00'),(135234,10,'S27.893D ','Laceration of other specified intrathoracic organs, subsequent encounter','Y','0000-00-00 00:00:00'),(135233,10,'S27.893A ','Laceration of other specified intrathoracic organs, initial encounter','Y','0000-00-00 00:00:00'),(135231,10,'S27.892D ','Contusion of other specified intrathoracic organs, subsequent encounter','Y','0000-00-00 00:00:00'),(135232,10,'S27.892S ','Contusion of other specified intrathoracic organs, sequela','Y','0000-00-00 00:00:00'),(135230,10,'S27.892A ','Contusion of other specified intrathoracic organs, initial encounter','Y','0000-00-00 00:00:00'),(135229,10,'S27.819S ','Unspecified injury of esophagus (thoracic part), sequela','Y','0000-00-00 00:00:00'),(135227,10,'S27.819A ','Unspecified injury of esophagus (thoracic part), initial encounter','Y','0000-00-00 00:00:00'),(135228,10,'S27.819D ','Unspecified injury of esophagus (thoracic part), subsequent encounter','Y','0000-00-00 00:00:00'),(135226,10,'S27.818S ','Other injury of esophagus (thoracic part), sequela','Y','0000-00-00 00:00:00'),(135224,10,'S27.818A ','Other injury of esophagus (thoracic part), initial encounter','Y','0000-00-00 00:00:00'),(135225,10,'S27.818D ','Other injury of esophagus (thoracic part), subsequent encounter','Y','0000-00-00 00:00:00'),(135223,10,'S27.813S ','Laceration of esophagus (thoracic part), sequela','Y','0000-00-00 00:00:00'),(135221,10,'S27.813A ','Laceration of esophagus (thoracic part), initial encounter','Y','0000-00-00 00:00:00'),(135222,10,'S27.813D ','Laceration of esophagus (thoracic part), subsequent encounter','Y','0000-00-00 00:00:00'),(135220,10,'S27.812S ','Contusion of esophagus (thoracic part), sequela','Y','0000-00-00 00:00:00'),(135219,10,'S27.812D ','Contusion of esophagus (thoracic part), subsequent encounter','Y','0000-00-00 00:00:00'),(135218,10,'S27.812A ','Contusion of esophagus (thoracic part), initial encounter','Y','0000-00-00 00:00:00'),(135216,10,'S27.809D ','Unspecified injury of diaphragm, subsequent encounter','Y','0000-00-00 00:00:00'),(135217,10,'S27.809S ','Unspecified injury of diaphragm, sequela','Y','0000-00-00 00:00:00'),(135215,10,'S27.809A ','Unspecified injury of diaphragm, initial encounter','Y','0000-00-00 00:00:00'),(135213,10,'S27.808D ','Other injury of diaphragm, subsequent encounter','Y','0000-00-00 00:00:00'),(135214,10,'S27.808S ','Other injury of diaphragm, sequela','Y','0000-00-00 00:00:00'),(135211,10,'S27.803S ','Laceration of diaphragm, sequela','Y','0000-00-00 00:00:00'),(135212,10,'S27.808A ','Other injury of diaphragm, initial encounter','Y','0000-00-00 00:00:00'),(135210,10,'S27.803D ','Laceration of diaphragm, subsequent encounter','Y','0000-00-00 00:00:00'),(135208,10,'S27.802S ','Contusion of diaphragm, sequela','Y','0000-00-00 00:00:00'),(135209,10,'S27.803A ','Laceration of diaphragm, initial encounter','Y','0000-00-00 00:00:00'),(135206,10,'S27.802A ','Contusion of diaphragm, initial encounter','Y','0000-00-00 00:00:00'),(135207,10,'S27.802D ','Contusion of diaphragm, subsequent encounter','Y','0000-00-00 00:00:00'),(135204,10,'S27.69XD ','Other injury of pleura, subsequent encounter','Y','0000-00-00 00:00:00'),(135205,10,'S27.69XS ','Other injury of pleura, sequela','Y','0000-00-00 00:00:00'),(135203,10,'S27.69XA ','Other injury of pleura, initial encounter','Y','0000-00-00 00:00:00'),(135201,10,'S27.63XD ','Laceration of pleura, subsequent encounter','Y','0000-00-00 00:00:00'),(135202,10,'S27.63XS ','Laceration of pleura, sequela','Y','0000-00-00 00:00:00'),(135199,10,'S27.60XS ','Unspecified injury of pleura, sequela','Y','0000-00-00 00:00:00'),(135200,10,'S27.63XA ','Laceration of pleura, initial encounter','Y','0000-00-00 00:00:00'),(135198,10,'S27.60XD ','Unspecified injury of pleura, subsequent encounter','Y','0000-00-00 00:00:00'),(135196,10,'S27.59XS ','Other injury of thoracic trachea, sequela','Y','0000-00-00 00:00:00'),(135197,10,'S27.60XA ','Unspecified injury of pleura, initial encounter','Y','0000-00-00 00:00:00'),(135195,10,'S27.59XD ','Other injury of thoracic trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(135194,10,'S27.59XA ','Other injury of thoracic trachea, initial encounter','Y','0000-00-00 00:00:00'),(135193,10,'S27.53XS ','Laceration of thoracic trachea, sequela','Y','0000-00-00 00:00:00'),(135191,10,'S27.53XA ','Laceration of thoracic trachea, initial encounter','Y','0000-00-00 00:00:00'),(135192,10,'S27.53XD ','Laceration of thoracic trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(135190,10,'S27.52XS ','Contusion of thoracic trachea, sequela','Y','0000-00-00 00:00:00'),(135188,10,'S27.52XA ','Contusion of thoracic trachea, initial encounter','Y','0000-00-00 00:00:00'),(135189,10,'S27.52XD ','Contusion of thoracic trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(135187,10,'S27.51XS ','Primary blast injury of thoracic trachea, sequela','Y','0000-00-00 00:00:00'),(135185,10,'S27.51XA ','Primary blast injury of thoracic trachea, initial encounter','Y','0000-00-00 00:00:00'),(135186,10,'S27.51XD ','Primary blast injury of thoracic trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(135184,10,'S27.50XS ','Unspecified injury of thoracic trachea, sequela','Y','0000-00-00 00:00:00'),(135183,10,'S27.50XD ','Unspecified injury of thoracic trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(135181,10,'S27.499S ','Other injury of bronchus, unspecified, sequela','Y','0000-00-00 00:00:00'),(135182,10,'S27.50XA ','Unspecified injury of thoracic trachea, initial encounter','Y','0000-00-00 00:00:00'),(135180,10,'S27.499D ','Other injury of bronchus, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(135178,10,'S27.492S ','Other injury of bronchus, bilateral, sequela','Y','0000-00-00 00:00:00'),(135179,10,'S27.499A ','Other injury of bronchus, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(135177,10,'S27.492D ','Other injury of bronchus, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135176,10,'S27.492A ','Other injury of bronchus, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(135174,10,'S27.491D ','Other injury of bronchus, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135175,10,'S27.491S ','Other injury of bronchus, unilateral, sequela','Y','0000-00-00 00:00:00'),(135173,10,'S27.491A ','Other injury of bronchus, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(135172,10,'S27.439S ','Laceration of bronchus, unspecified, sequela','Y','0000-00-00 00:00:00'),(135171,10,'S27.439D ','Laceration of bronchus, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(135169,10,'S27.432S ','Laceration of bronchus, bilateral, sequela','Y','0000-00-00 00:00:00'),(135170,10,'S27.439A ','Laceration of bronchus, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(135168,10,'S27.432D ','Laceration of bronchus, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135166,10,'S27.431S ','Laceration of bronchus, unilateral, sequela','Y','0000-00-00 00:00:00'),(135167,10,'S27.432A ','Laceration of bronchus, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(135165,10,'S27.431D ','Laceration of bronchus, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135163,10,'S27.429S ','Contusion of bronchus, unspecified, sequela','Y','0000-00-00 00:00:00'),(135164,10,'S27.431A ','Laceration of bronchus, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(135162,10,'S27.429D ','Contusion of bronchus, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(135160,10,'S27.422S ','Contusion of bronchus, bilateral, sequela','Y','0000-00-00 00:00:00'),(135161,10,'S27.429A ','Contusion of bronchus, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(135158,10,'S27.422A ','Contusion of bronchus, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(135159,10,'S27.422D ','Contusion of bronchus, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135157,10,'S27.421S ','Contusion of bronchus, unilateral, sequela','Y','0000-00-00 00:00:00'),(135155,10,'S27.421A ','Contusion of bronchus, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(135156,10,'S27.421D ','Contusion of bronchus, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135154,10,'S27.419S ','Primary blast injury of bronchus, unspecified, sequela','Y','0000-00-00 00:00:00'),(135153,10,'S27.419D ','Primary blast injury of bronchus, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(135151,10,'S27.412S ','Primary blast injury of bronchus, bilateral, sequela','Y','0000-00-00 00:00:00'),(135152,10,'S27.419A ','Primary blast injury of bronchus, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(135150,10,'S27.412D ','Primary blast injury of bronchus, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135149,10,'S27.412A ','Primary blast injury of bronchus, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(135148,10,'S27.411S ','Primary blast injury of bronchus, unilateral, sequela','Y','0000-00-00 00:00:00'),(135147,10,'S27.411D ','Primary blast injury of bronchus, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135146,10,'S27.411A ','Primary blast injury of bronchus, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(135144,10,'S27.409D ','Unspecified injury of bronchus, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(135145,10,'S27.409S ','Unspecified injury of bronchus, unspecified, sequela','Y','0000-00-00 00:00:00'),(135143,10,'S27.409A ','Unspecified injury of bronchus, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(135141,10,'S27.402D ','Unspecified injury of bronchus, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135142,10,'S27.402S ','Unspecified injury of bronchus, bilateral, sequela','Y','0000-00-00 00:00:00'),(135140,10,'S27.402A ','Unspecified injury of bronchus, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(135139,10,'S27.401S ','Unspecified injury of bronchus, unilateral, sequela','Y','0000-00-00 00:00:00'),(135137,10,'S27.401A ','Unspecified injury of bronchus, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(135138,10,'S27.401D ','Unspecified injury of bronchus, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135136,10,'S27.399S ','Other injuries of lung, unspecified, sequela','Y','0000-00-00 00:00:00'),(135134,10,'S27.399A ','Other injuries of lung, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(135135,10,'S27.399D ','Other injuries of lung, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(135133,10,'S27.392S ','Other injuries of lung, bilateral, sequela','Y','0000-00-00 00:00:00'),(135131,10,'S27.392A ','Other injuries of lung, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(135132,10,'S27.392D ','Other injuries of lung, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135130,10,'S27.391S ','Other injuries of lung, unilateral, sequela','Y','0000-00-00 00:00:00'),(135128,10,'S27.391A ','Other injuries of lung, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(135129,10,'S27.391D ','Other injuries of lung, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135127,10,'S27.339S ','Laceration of lung, unspecified, sequela','Y','0000-00-00 00:00:00'),(135126,10,'S27.339D ','Laceration of lung, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(135125,10,'S27.339A ','Laceration of lung, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(135123,10,'S27.332D ','Laceration of lung, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135124,10,'S27.332S ','Laceration of lung, bilateral, sequela','Y','0000-00-00 00:00:00'),(135122,10,'S27.332A ','Laceration of lung, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(135120,10,'S27.331D ','Laceration of lung, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135121,10,'S27.331S ','Laceration of lung, unilateral, sequela','Y','0000-00-00 00:00:00'),(135118,10,'S27.329S ','Contusion of lung, unspecified, sequela','Y','0000-00-00 00:00:00'),(135119,10,'S27.331A ','Laceration of lung, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(135117,10,'S27.329D ','Contusion of lung, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(135115,10,'S27.322S ','Contusion of lung, bilateral, sequela','Y','0000-00-00 00:00:00'),(135116,10,'S27.329A ','Contusion of lung, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(135114,10,'S27.322D ','Contusion of lung, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135112,10,'S27.321S ','Contusion of lung, unilateral, sequela','Y','0000-00-00 00:00:00'),(135113,10,'S27.322A ','Contusion of lung, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(135111,10,'S27.321D ','Contusion of lung, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135109,10,'S27.319S ','Primary blast injury of lung, unspecified, sequela','Y','0000-00-00 00:00:00'),(135110,10,'S27.321A ','Contusion of lung, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(135108,10,'S27.319D ','Primary blast injury of lung, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(135107,10,'S27.319A ','Primary blast injury of lung, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(135105,10,'S27.312D ','Primary blast injury of lung, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135106,10,'S27.312S ','Primary blast injury of lung, bilateral, sequela','Y','0000-00-00 00:00:00'),(135104,10,'S27.312A ','Primary blast injury of lung, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(135103,10,'S27.311S ','Primary blast injury of lung, unilateral, sequela','Y','0000-00-00 00:00:00'),(135102,10,'S27.311D ','Primary blast injury of lung, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135100,10,'S27.309S ','Unspecified injury of lung, unspecified, sequela','Y','0000-00-00 00:00:00'),(135101,10,'S27.311A ','Primary blast injury of lung, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(135099,10,'S27.309D ','Unspecified injury of lung, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(135097,10,'S27.302S ','Unspecified injury of lung, bilateral, sequela','Y','0000-00-00 00:00:00'),(135098,10,'S27.309A ','Unspecified injury of lung, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(135096,10,'S27.302D ','Unspecified injury of lung, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135094,10,'S27.301S ','Unspecified injury of lung, unilateral, sequela','Y','0000-00-00 00:00:00'),(135095,10,'S27.302A ','Unspecified injury of lung, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(135093,10,'S27.301D ','Unspecified injury of lung, unilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(135091,10,'S27.2XXS ','Traumatic hemopneumothorax, sequela','Y','0000-00-00 00:00:00'),(135092,10,'S27.301A ','Unspecified injury of lung, unilateral, initial encounter','Y','0000-00-00 00:00:00'),(135089,10,'S27.2XXA ','Traumatic hemopneumothorax, initial encounter','Y','0000-00-00 00:00:00'),(135090,10,'S27.2XXD ','Traumatic hemopneumothorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135087,10,'S27.1XXD ','Traumatic hemothorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135088,10,'S27.1XXS ','Traumatic hemothorax, sequela','Y','0000-00-00 00:00:00'),(135085,10,'S27.0XXS ','Traumatic pneumothorax, sequela','Y','0000-00-00 00:00:00'),(135086,10,'S27.1XXA ','Traumatic hemothorax, initial encounter','Y','0000-00-00 00:00:00'),(135084,10,'S27.0XXD ','Traumatic pneumothorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135082,10,'S26.99XS ','Other injury of heart, unspecified with or without hemopericardium, sequela','Y','0000-00-00 00:00:00'),(135083,10,'S27.0XXA ','Traumatic pneumothorax, initial encounter','Y','0000-00-00 00:00:00'),(135081,10,'S26.99XD ','Other injury of heart, unspecified with or without hemopericardium, subsequent encounter','Y','0000-00-00 00:00:00'),(135080,10,'S26.99XA ','Other injury of heart, unspecified with or without hemopericardium, initial encounter','Y','0000-00-00 00:00:00'),(135079,10,'S26.92XS ','Laceration of heart, unspecified with or without hemopericardium, sequela','Y','0000-00-00 00:00:00'),(135078,10,'S26.92XD ','Laceration of heart, unspecified with or without hemopericardium, subsequent encounter','Y','0000-00-00 00:00:00'),(135077,10,'S26.92XA ','Laceration of heart, unspecified with or without hemopericardium, initial encounter','Y','0000-00-00 00:00:00'),(135076,10,'S26.91XS ','Contusion of heart, unspecified with or without hemopericardium, sequela','Y','0000-00-00 00:00:00'),(135074,10,'S26.91XA ','Contusion of heart, unspecified with or without hemopericardium, initial encounter','Y','0000-00-00 00:00:00'),(135075,10,'S26.91XD ','Contusion of heart, unspecified with or without hemopericardium, subsequent encounter','Y','0000-00-00 00:00:00'),(135073,10,'S26.90XS ','Unspecified injury of heart, unspecified with or without hemopericardium, sequela','Y','0000-00-00 00:00:00'),(135072,10,'S26.90XD ','Unspecified injury of heart, unspecified with or without hemopericardium, subsequent encounter','Y','0000-00-00 00:00:00'),(135071,10,'S26.90XA ','Unspecified injury of heart, unspecified with or without hemopericardium, initial encounter','Y','0000-00-00 00:00:00'),(135070,10,'S26.19XS ','Other injury of heart without hemopericardium, sequela','Y','0000-00-00 00:00:00'),(135069,10,'S26.19XD ','Other injury of heart without hemopericardium, subsequent encounter','Y','0000-00-00 00:00:00'),(135067,10,'S26.12XS ','Laceration of heart without hemopericardium, sequela','Y','0000-00-00 00:00:00'),(135068,10,'S26.19XA ','Other injury of heart without hemopericardium, initial encounter','Y','0000-00-00 00:00:00'),(135066,10,'S26.12XD ','Laceration of heart without hemopericardium, subsequent encounter','Y','0000-00-00 00:00:00'),(135065,10,'S26.12XA ','Laceration of heart without hemopericardium, initial encounter','Y','0000-00-00 00:00:00'),(135063,10,'S26.11XD ','Contusion of heart without hemopericardium, subsequent encounter','Y','0000-00-00 00:00:00'),(135064,10,'S26.11XS ','Contusion of heart without hemopericardium, sequela','Y','0000-00-00 00:00:00'),(135062,10,'S26.11XA ','Contusion of heart without hemopericardium, initial encounter','Y','0000-00-00 00:00:00'),(135061,10,'S26.10XS ','Unspecified injury of heart without hemopericardium, sequela','Y','0000-00-00 00:00:00'),(135060,10,'S26.10XD ','Unspecified injury of heart without hemopericardium, subsequent encounter','Y','0000-00-00 00:00:00'),(135058,10,'S26.09XS ','Other injury of heart with hemopericardium, sequela','Y','0000-00-00 00:00:00'),(135059,10,'S26.10XA ','Unspecified injury of heart without hemopericardium, initial encounter','Y','0000-00-00 00:00:00'),(135057,10,'S26.09XD ','Other injury of heart with hemopericardium, subsequent encounter','Y','0000-00-00 00:00:00'),(135055,10,'S26.022S ','Major laceration of heart with hemopericardium, sequela','Y','0000-00-00 00:00:00'),(135056,10,'S26.09XA ','Other injury of heart with hemopericardium, initial encounter','Y','0000-00-00 00:00:00'),(135054,10,'S26.022D ','Major laceration of heart with hemopericardium, subsequent encounter','Y','0000-00-00 00:00:00'),(135053,10,'S26.022A ','Major laceration of heart with hemopericardium, initial encounter','Y','0000-00-00 00:00:00'),(135051,10,'S26.021D ','Moderate laceration of heart with hemopericardium, subsequent encounter','Y','0000-00-00 00:00:00'),(135052,10,'S26.021S ','Moderate laceration of heart with hemopericardium, sequela','Y','0000-00-00 00:00:00'),(135050,10,'S26.021A ','Moderate laceration of heart with hemopericardium, initial encounter','Y','0000-00-00 00:00:00'),(135049,10,'S26.020S ','Mild laceration of heart with hemopericardium, sequela','Y','0000-00-00 00:00:00'),(135048,10,'S26.020D ','Mild laceration of heart with hemopericardium, subsequent encounter','Y','0000-00-00 00:00:00'),(135046,10,'S26.01XS ','Contusion of heart with hemopericardium, sequela','Y','0000-00-00 00:00:00'),(135047,10,'S26.020A ','Mild laceration of heart with hemopericardium, initial encounter','Y','0000-00-00 00:00:00'),(135045,10,'S26.01XD ','Contusion of heart with hemopericardium, subsequent encounter','Y','0000-00-00 00:00:00'),(135044,10,'S26.01XA ','Contusion of heart with hemopericardium, initial encounter','Y','0000-00-00 00:00:00'),(135043,10,'S26.00XS ','Unspecified injury of heart with hemopericardium, sequela','Y','0000-00-00 00:00:00'),(135042,10,'S26.00XD ','Unspecified injury of heart with hemopericardium, subsequent encounter','Y','0000-00-00 00:00:00'),(135041,10,'S26.00XA ','Unspecified injury of heart with hemopericardium, initial encounter','Y','0000-00-00 00:00:00'),(135040,10,'S25.99XS ','Other specified injury of unspecified blood vessel of thorax, sequela','Y','0000-00-00 00:00:00'),(135039,10,'S25.99XD ','Other specified injury of unspecified blood vessel of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135037,10,'S25.91XS ','Laceration of unspecified blood vessel of thorax, sequela','Y','0000-00-00 00:00:00'),(135038,10,'S25.99XA ','Other specified injury of unspecified blood vessel of thorax, initial encounter','Y','0000-00-00 00:00:00'),(135036,10,'S25.91XD ','Laceration of unspecified blood vessel of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135035,10,'S25.91XA ','Laceration of unspecified blood vessel of thorax, initial encounter','Y','0000-00-00 00:00:00'),(135034,10,'S25.90XS ','Unspecified injury of unspecified blood vessel of thorax, sequela','Y','0000-00-00 00:00:00'),(135032,10,'S25.90XA ','Unspecified injury of unspecified blood vessel of thorax, initial encounter','Y','0000-00-00 00:00:00'),(135033,10,'S25.90XD ','Unspecified injury of unspecified blood vessel of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(135031,10,'S25.899S ','Other specified injury of other blood vessels of thorax, unspecified side, sequela','Y','0000-00-00 00:00:00'),(135030,10,'S25.899D ','Other specified injury of other blood vessels of thorax, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(135029,10,'S25.899A ','Other specified injury of other blood vessels of thorax, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(135028,10,'S25.892S ','Other specified injury of other blood vessels of thorax, left side, sequela','Y','0000-00-00 00:00:00'),(135027,10,'S25.892D ','Other specified injury of other blood vessels of thorax, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(135026,10,'S25.892A ','Other specified injury of other blood vessels of thorax, left side, initial encounter','Y','0000-00-00 00:00:00'),(135025,10,'S25.891S ','Other specified injury of other blood vessels of thorax, right side, sequela','Y','0000-00-00 00:00:00'),(135024,10,'S25.891D ','Other specified injury of other blood vessels of thorax, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(135023,10,'S25.891A ','Other specified injury of other blood vessels of thorax, right side, initial encounter','Y','0000-00-00 00:00:00'),(135022,10,'S25.819S ','Laceration of other blood vessels of thorax, unspecified side, sequela','Y','0000-00-00 00:00:00'),(135020,10,'S25.819A ','Laceration of other blood vessels of thorax, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(135021,10,'S25.819D ','Laceration of other blood vessels of thorax, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(135019,10,'S25.812S ','Laceration of other blood vessels of thorax, left side, sequela','Y','0000-00-00 00:00:00'),(135018,10,'S25.812D ','Laceration of other blood vessels of thorax, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(135017,10,'S25.812A ','Laceration of other blood vessels of thorax, left side, initial encounter','Y','0000-00-00 00:00:00'),(135015,10,'S25.811D ','Laceration of other blood vessels of thorax, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(135016,10,'S25.811S ','Laceration of other blood vessels of thorax, right side, sequela','Y','0000-00-00 00:00:00'),(135014,10,'S25.811A ','Laceration of other blood vessels of thorax, right side, initial encounter','Y','0000-00-00 00:00:00'),(135013,10,'S25.809S ','Unspecified injury of other blood vessels of thorax, unspecified side, sequela','Y','0000-00-00 00:00:00'),(135012,10,'S25.809D ','Unspecified injury of other blood vessels of thorax, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(135011,10,'S25.809A ','Unspecified injury of other blood vessels of thorax, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(135010,10,'S25.802S ','Unspecified injury of other blood vessels of thorax, left side, sequela','Y','0000-00-00 00:00:00'),(135009,10,'S25.802D ','Unspecified injury of other blood vessels of thorax, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(135008,10,'S25.802A ','Unspecified injury of other blood vessels of thorax, left side, initial encounter','Y','0000-00-00 00:00:00'),(135007,10,'S25.801S ','Unspecified injury of other blood vessels of thorax, right side, sequela','Y','0000-00-00 00:00:00'),(135006,10,'S25.801D ','Unspecified injury of other blood vessels of thorax, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(135005,10,'S25.801A ','Unspecified injury of other blood vessels of thorax, right side, initial encounter','Y','0000-00-00 00:00:00'),(135004,10,'S25.599S ','Other specified injury of intercostal blood vessels, unspecified side, sequela','Y','0000-00-00 00:00:00'),(135002,10,'S25.599A ','Other specified injury of intercostal blood vessels, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(135003,10,'S25.599D ','Other specified injury of intercostal blood vessels, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(135001,10,'S25.592S ','Other specified injury of intercostal blood vessels, left side, sequela','Y','0000-00-00 00:00:00'),(135000,10,'S25.592D ','Other specified injury of intercostal blood vessels, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(134999,10,'S25.592A ','Other specified injury of intercostal blood vessels, left side, initial encounter','Y','0000-00-00 00:00:00'),(134998,10,'S25.591S ','Other specified injury of intercostal blood vessels, right side, sequela','Y','0000-00-00 00:00:00'),(134997,10,'S25.591D ','Other specified injury of intercostal blood vessels, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(134995,10,'S25.519S ','Laceration of intercostal blood vessels, unspecified side, sequela','Y','0000-00-00 00:00:00'),(134996,10,'S25.591A ','Other specified injury of intercostal blood vessels, right side, initial encounter','Y','0000-00-00 00:00:00'),(134994,10,'S25.519D ','Laceration of intercostal blood vessels, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(134993,10,'S25.519A ','Laceration of intercostal blood vessels, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(134992,10,'S25.512S ','Laceration of intercostal blood vessels, left side, sequela','Y','0000-00-00 00:00:00'),(134991,10,'S25.512D ','Laceration of intercostal blood vessels, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(134990,10,'S25.512A ','Laceration of intercostal blood vessels, left side, initial encounter','Y','0000-00-00 00:00:00'),(134989,10,'S25.511S ','Laceration of intercostal blood vessels, right side, sequela','Y','0000-00-00 00:00:00'),(134988,10,'S25.511D ','Laceration of intercostal blood vessels, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(134987,10,'S25.511A ','Laceration of intercostal blood vessels, right side, initial encounter','Y','0000-00-00 00:00:00'),(134986,10,'S25.509S ','Unspecified injury of intercostal blood vessels, unspecified side, sequela','Y','0000-00-00 00:00:00'),(134984,10,'S25.509A ','Unspecified injury of intercostal blood vessels, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(134985,10,'S25.509D ','Unspecified injury of intercostal blood vessels, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(134983,10,'S25.502S ','Unspecified injury of intercostal blood vessels, left side, sequela','Y','0000-00-00 00:00:00'),(134982,10,'S25.502D ','Unspecified injury of intercostal blood vessels, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(134980,10,'S25.501S ','Unspecified injury of intercostal blood vessels, right side, sequela','Y','0000-00-00 00:00:00'),(134981,10,'S25.502A ','Unspecified injury of intercostal blood vessels, left side, initial encounter','Y','0000-00-00 00:00:00'),(134979,10,'S25.501D ','Unspecified injury of intercostal blood vessels, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(134978,10,'S25.501A ','Unspecified injury of intercostal blood vessels, right side, initial encounter','Y','0000-00-00 00:00:00'),(134977,10,'S25.499S ','Other specified injury of unspecified pulmonary blood vessels, sequela','Y','0000-00-00 00:00:00'),(134976,10,'S25.499D ','Other specified injury of unspecified pulmonary blood vessels, subsequent encounter','Y','0000-00-00 00:00:00'),(134975,10,'S25.499A ','Other specified injury of unspecified pulmonary blood vessels, initial encounter','Y','0000-00-00 00:00:00'),(134974,10,'S25.492S ','Other specified injury of left pulmonary blood vessels, sequela','Y','0000-00-00 00:00:00'),(134973,10,'S25.492D ','Other specified injury of left pulmonary blood vessels, subsequent encounter','Y','0000-00-00 00:00:00'),(134972,10,'S25.492A ','Other specified injury of left pulmonary blood vessels, initial encounter','Y','0000-00-00 00:00:00'),(134971,10,'S25.491S ','Other specified injury of right pulmonary blood vessels, sequela','Y','0000-00-00 00:00:00'),(134970,10,'S25.491D ','Other specified injury of right pulmonary blood vessels, subsequent encounter','Y','0000-00-00 00:00:00'),(134969,10,'S25.491A ','Other specified injury of right pulmonary blood vessels, initial encounter','Y','0000-00-00 00:00:00'),(134967,10,'S25.429D ','Major laceration of unspecified pulmonary blood vessels, subsequent encounter','Y','0000-00-00 00:00:00'),(134968,10,'S25.429S ','Major laceration of unspecified pulmonary blood vessels, sequela','Y','0000-00-00 00:00:00'),(134966,10,'S25.429A ','Major laceration of unspecified pulmonary blood vessels, initial encounter','Y','0000-00-00 00:00:00'),(134965,10,'S25.422S ','Major laceration of left pulmonary blood vessels, sequela','Y','0000-00-00 00:00:00'),(134963,10,'S25.422A ','Major laceration of left pulmonary blood vessels, initial encounter','Y','0000-00-00 00:00:00'),(134964,10,'S25.422D ','Major laceration of left pulmonary blood vessels, subsequent encounter','Y','0000-00-00 00:00:00'),(134962,10,'S25.421S ','Major laceration of right pulmonary blood vessels, sequela','Y','0000-00-00 00:00:00'),(134961,10,'S25.421D ','Major laceration of right pulmonary blood vessels, subsequent encounter','Y','0000-00-00 00:00:00'),(134959,10,'S25.419S ','Minor laceration of unspecified pulmonary blood vessels, sequela','Y','0000-00-00 00:00:00'),(134960,10,'S25.421A ','Major laceration of right pulmonary blood vessels, initial encounter','Y','0000-00-00 00:00:00'),(134958,10,'S25.419D ','Minor laceration of unspecified pulmonary blood vessels, subsequent encounter','Y','0000-00-00 00:00:00'),(134957,10,'S25.419A ','Minor laceration of unspecified pulmonary blood vessels, initial encounter','Y','0000-00-00 00:00:00'),(134956,10,'S25.412S ','Minor laceration of left pulmonary blood vessels, sequela','Y','0000-00-00 00:00:00'),(134954,10,'S25.412A ','Minor laceration of left pulmonary blood vessels, initial encounter','Y','0000-00-00 00:00:00'),(134955,10,'S25.412D ','Minor laceration of left pulmonary blood vessels, subsequent encounter','Y','0000-00-00 00:00:00'),(134953,10,'S25.411S ','Minor laceration of right pulmonary blood vessels, sequela','Y','0000-00-00 00:00:00'),(134952,10,'S25.411D ','Minor laceration of right pulmonary blood vessels, subsequent encounter','Y','0000-00-00 00:00:00'),(134951,10,'S25.411A ','Minor laceration of right pulmonary blood vessels, initial encounter','Y','0000-00-00 00:00:00'),(134950,10,'S25.409S ','Unspecified injury of unspecified pulmonary blood vessels, sequela','Y','0000-00-00 00:00:00'),(134949,10,'S25.409D ','Unspecified injury of unspecified pulmonary blood vessels, subsequent encounter','Y','0000-00-00 00:00:00'),(134948,10,'S25.409A ','Unspecified injury of unspecified pulmonary blood vessels, initial encounter','Y','0000-00-00 00:00:00'),(134946,10,'S25.402D ','Unspecified injury of left pulmonary blood vessels, subsequent encounter','Y','0000-00-00 00:00:00'),(134947,10,'S25.402S ','Unspecified injury of left pulmonary blood vessels, sequela','Y','0000-00-00 00:00:00'),(134945,10,'S25.402A ','Unspecified injury of left pulmonary blood vessels, initial encounter','Y','0000-00-00 00:00:00'),(134944,10,'S25.401S ','Unspecified injury of right pulmonary blood vessels, sequela','Y','0000-00-00 00:00:00'),(134942,10,'S25.401A ','Unspecified injury of right pulmonary blood vessels, initial encounter','Y','0000-00-00 00:00:00'),(134943,10,'S25.401D ','Unspecified injury of right pulmonary blood vessels, subsequent encounter','Y','0000-00-00 00:00:00'),(134941,10,'S25.399S ','Other specified injury of unspecified innominate or subclavian vein, sequela','Y','0000-00-00 00:00:00'),(134940,10,'S25.399D ','Other specified injury of unspecified innominate or subclavian vein, subsequent encounter','Y','0000-00-00 00:00:00'),(134939,10,'S25.399A ','Other specified injury of unspecified innominate or subclavian vein, initial encounter','Y','0000-00-00 00:00:00'),(134938,10,'S25.392S ','Other specified injury of left innominate or subclavian vein, sequela','Y','0000-00-00 00:00:00'),(134937,10,'S25.392D ','Other specified injury of left innominate or subclavian vein, subsequent encounter','Y','0000-00-00 00:00:00'),(134936,10,'S25.392A ','Other specified injury of left innominate or subclavian vein, initial encounter','Y','0000-00-00 00:00:00'),(134935,10,'S25.391S ','Other specified injury of right innominate or subclavian vein, sequela','Y','0000-00-00 00:00:00'),(134934,10,'S25.391D ','Other specified injury of right innominate or subclavian vein, subsequent encounter','Y','0000-00-00 00:00:00'),(134933,10,'S25.391A ','Other specified injury of right innominate or subclavian vein, initial encounter','Y','0000-00-00 00:00:00'),(134932,10,'S25.329S ','Major laceration of unspecified innominate or subclavian vein, sequela','Y','0000-00-00 00:00:00'),(134931,10,'S25.329D ','Major laceration of unspecified innominate or subclavian vein, subsequent encounter','Y','0000-00-00 00:00:00'),(134930,10,'S25.329A ','Major laceration of unspecified innominate or subclavian vein, initial encounter','Y','0000-00-00 00:00:00'),(134928,10,'S25.322D ','Major laceration of left innominate or subclavian vein, subsequent encounter','Y','0000-00-00 00:00:00'),(134929,10,'S25.322S ','Major laceration of left innominate or subclavian vein, sequela','Y','0000-00-00 00:00:00'),(134927,10,'S25.322A ','Major laceration of left innominate or subclavian vein, initial encounter','Y','0000-00-00 00:00:00'),(134926,10,'S25.321S ','Major laceration of right innominate or subclavian vein, sequela','Y','0000-00-00 00:00:00'),(134924,10,'S25.321A ','Major laceration of right innominate or subclavian vein, initial encounter','Y','0000-00-00 00:00:00'),(134925,10,'S25.321D ','Major laceration of right innominate or subclavian vein, subsequent encounter','Y','0000-00-00 00:00:00'),(134923,10,'S25.319S ','Minor laceration of unspecified innominate or subclavian vein, sequela','Y','0000-00-00 00:00:00'),(134922,10,'S25.319D ','Minor laceration of unspecified innominate or subclavian vein, subsequent encounter','Y','0000-00-00 00:00:00'),(134921,10,'S25.319A ','Minor laceration of unspecified innominate or subclavian vein, initial encounter','Y','0000-00-00 00:00:00'),(134920,10,'S25.312S ','Minor laceration of left innominate or subclavian vein, sequela','Y','0000-00-00 00:00:00'),(134918,10,'S25.312A ','Minor laceration of left innominate or subclavian vein, initial encounter','Y','0000-00-00 00:00:00'),(134919,10,'S25.312D ','Minor laceration of left innominate or subclavian vein, subsequent encounter','Y','0000-00-00 00:00:00'),(134917,10,'S25.311S ','Minor laceration of right innominate or subclavian vein, sequela','Y','0000-00-00 00:00:00'),(134916,10,'S25.311D ','Minor laceration of right innominate or subclavian vein, subsequent encounter','Y','0000-00-00 00:00:00'),(134915,10,'S25.311A ','Minor laceration of right innominate or subclavian vein, initial encounter','Y','0000-00-00 00:00:00'),(134914,10,'S25.309S ','Unspecified injury of unspecified innominate or subclavian vein, sequela','Y','0000-00-00 00:00:00'),(134913,10,'S25.309D ','Unspecified injury of unspecified innominate or subclavian vein, subsequent encounter','Y','0000-00-00 00:00:00'),(134912,10,'S25.309A ','Unspecified injury of unspecified innominate or subclavian vein, initial encounter','Y','0000-00-00 00:00:00'),(134911,10,'S25.302S ','Unspecified injury of left innominate or subclavian vein, sequela','Y','0000-00-00 00:00:00'),(134910,10,'S25.302D ','Unspecified injury of left innominate or subclavian vein, subsequent encounter','Y','0000-00-00 00:00:00'),(134909,10,'S25.302A ','Unspecified injury of left innominate or subclavian vein, initial encounter','Y','0000-00-00 00:00:00'),(134907,10,'S25.301D ','Unspecified injury of right innominate or subclavian vein, subsequent encounter','Y','0000-00-00 00:00:00'),(134908,10,'S25.301S ','Unspecified injury of right innominate or subclavian vein, sequela','Y','0000-00-00 00:00:00'),(134906,10,'S25.301A ','Unspecified injury of right innominate or subclavian vein, initial encounter','Y','0000-00-00 00:00:00'),(134905,10,'S25.29XS ','Other specified injury of superior vena cava, sequela','Y','0000-00-00 00:00:00'),(134903,10,'S25.29XA ','Other specified injury of superior vena cava, initial encounter','Y','0000-00-00 00:00:00'),(134904,10,'S25.29XD ','Other specified injury of superior vena cava, subsequent encounter','Y','0000-00-00 00:00:00'),(134902,10,'S25.22XS ','Major laceration of superior vena cava, sequela','Y','0000-00-00 00:00:00'),(134900,10,'S25.22XA ','Major laceration of superior vena cava, initial encounter','Y','0000-00-00 00:00:00'),(134901,10,'S25.22XD ','Major laceration of superior vena cava, subsequent encounter','Y','0000-00-00 00:00:00'),(134899,10,'S25.21XS ','Minor laceration of superior vena cava, sequela','Y','0000-00-00 00:00:00'),(134897,10,'S25.21XA ','Minor laceration of superior vena cava, initial encounter','Y','0000-00-00 00:00:00'),(134898,10,'S25.21XD ','Minor laceration of superior vena cava, subsequent encounter','Y','0000-00-00 00:00:00'),(134896,10,'S25.20XS ','Unspecified injury of superior vena cava, sequela','Y','0000-00-00 00:00:00'),(134895,10,'S25.20XD ','Unspecified injury of superior vena cava, subsequent encounter','Y','0000-00-00 00:00:00'),(134894,10,'S25.20XA ','Unspecified injury of superior vena cava, initial encounter','Y','0000-00-00 00:00:00'),(134893,10,'S25.199S ','Other specified injury of unspecified innominate or subclavian artery, sequela','Y','0000-00-00 00:00:00'),(134892,10,'S25.199D ','Other specified injury of unspecified innominate or subclavian artery, subsequent encounter','Y','0000-00-00 00:00:00'),(134891,10,'S25.199A ','Other specified injury of unspecified innominate or subclavian artery, initial encounter','Y','0000-00-00 00:00:00'),(134890,10,'S25.192S ','Other specified injury of left innominate or subclavian artery, sequela','Y','0000-00-00 00:00:00'),(134889,10,'S25.192D ','Other specified injury of left innominate or subclavian artery, subsequent encounter','Y','0000-00-00 00:00:00'),(134888,10,'S25.192A ','Other specified injury of left innominate or subclavian artery, initial encounter','Y','0000-00-00 00:00:00'),(134887,10,'S25.191S ','Other specified injury of right innominate or subclavian artery, sequela','Y','0000-00-00 00:00:00'),(134886,10,'S25.191D ','Other specified injury of right innominate or subclavian artery, subsequent encounter','Y','0000-00-00 00:00:00'),(134884,10,'S25.129S ','Major laceration of unspecified innominate or subclavian artery, sequela','Y','0000-00-00 00:00:00'),(134885,10,'S25.191A ','Other specified injury of right innominate or subclavian artery, initial encounter','Y','0000-00-00 00:00:00'),(134883,10,'S25.129D ','Major laceration of unspecified innominate or subclavian artery, subsequent encounter','Y','0000-00-00 00:00:00'),(134882,10,'S25.129A ','Major laceration of unspecified innominate or subclavian artery, initial encounter','Y','0000-00-00 00:00:00'),(134881,10,'S25.122S ','Major laceration of left innominate or subclavian artery, sequela','Y','0000-00-00 00:00:00'),(134880,10,'S25.122D ','Major laceration of left innominate or subclavian artery, subsequent encounter','Y','0000-00-00 00:00:00'),(134879,10,'S25.122A ','Major laceration of left innominate or subclavian artery, initial encounter','Y','0000-00-00 00:00:00'),(134878,10,'S25.121S ','Major laceration of right innominate or subclavian artery, sequela','Y','0000-00-00 00:00:00'),(134877,10,'S25.121D ','Major laceration of right innominate or subclavian artery, subsequent encounter','Y','0000-00-00 00:00:00'),(134876,10,'S25.121A ','Major laceration of right innominate or subclavian artery, initial encounter','Y','0000-00-00 00:00:00'),(134875,10,'S25.119S ','Minor laceration of unspecified innominate or subclavian artery, sequela','Y','0000-00-00 00:00:00'),(134873,10,'S25.119A ','Minor laceration of unspecified innominate or subclavian artery, initial encounter','Y','0000-00-00 00:00:00'),(134874,10,'S25.119D ','Minor laceration of unspecified innominate or subclavian artery, subsequent encounter','Y','0000-00-00 00:00:00'),(134872,10,'S25.112S ','Minor laceration of left innominate or subclavian artery, sequela','Y','0000-00-00 00:00:00'),(134871,10,'S25.112D ','Minor laceration of left innominate or subclavian artery, subsequent encounter','Y','0000-00-00 00:00:00'),(134869,10,'S25.111S ','Minor laceration of right innominate or subclavian artery, sequela','Y','0000-00-00 00:00:00'),(134870,10,'S25.112A ','Minor laceration of left innominate or subclavian artery, initial encounter','Y','0000-00-00 00:00:00'),(134868,10,'S25.111D ','Minor laceration of right innominate or subclavian artery, subsequent encounter','Y','0000-00-00 00:00:00'),(134867,10,'S25.111A ','Minor laceration of right innominate or subclavian artery, initial encounter','Y','0000-00-00 00:00:00'),(134866,10,'S25.109S ','Unspecified injury of unspecified innominate or subclavian artery, sequela','Y','0000-00-00 00:00:00'),(134864,10,'S25.109A ','Unspecified injury of unspecified innominate or subclavian artery, initial encounter','Y','0000-00-00 00:00:00'),(134865,10,'S25.109D ','Unspecified injury of unspecified innominate or subclavian artery, subsequent encounter','Y','0000-00-00 00:00:00'),(134863,10,'S25.102S ','Unspecified injury of left innominate or subclavian artery, sequela','Y','0000-00-00 00:00:00'),(134862,10,'S25.102D ','Unspecified injury of left innominate or subclavian artery, subsequent encounter','Y','0000-00-00 00:00:00'),(134861,10,'S25.102A ','Unspecified injury of left innominate or subclavian artery, initial encounter','Y','0000-00-00 00:00:00'),(134860,10,'S25.101S ','Unspecified injury of right innominate or subclavian artery, sequela','Y','0000-00-00 00:00:00'),(134859,10,'S25.101D ','Unspecified injury of right innominate or subclavian artery, subsequent encounter','Y','0000-00-00 00:00:00'),(134858,10,'S25.101A ','Unspecified injury of right innominate or subclavian artery, initial encounter','Y','0000-00-00 00:00:00'),(134857,10,'S25.09XS ','Other specified injury of thoracic aorta, sequela','Y','0000-00-00 00:00:00'),(134855,10,'S25.09XA ','Other specified injury of thoracic aorta, initial encounter','Y','0000-00-00 00:00:00'),(134856,10,'S25.09XD ','Other specified injury of thoracic aorta, subsequent encounter','Y','0000-00-00 00:00:00'),(134854,10,'S25.02XS ','Major laceration of thoracic aorta, sequela','Y','0000-00-00 00:00:00'),(134852,10,'S25.02XA ','Major laceration of thoracic aorta, initial encounter','Y','0000-00-00 00:00:00'),(134853,10,'S25.02XD ','Major laceration of thoracic aorta, subsequent encounter','Y','0000-00-00 00:00:00'),(134851,10,'S25.01XS ','Minor laceration of thoracic aorta, sequela','Y','0000-00-00 00:00:00'),(134849,10,'S25.01XA ','Minor laceration of thoracic aorta, initial encounter','Y','0000-00-00 00:00:00'),(134850,10,'S25.01XD ','Minor laceration of thoracic aorta, subsequent encounter','Y','0000-00-00 00:00:00'),(134848,10,'S25.00XS ','Unspecified injury of thoracic aorta, sequela','Y','0000-00-00 00:00:00'),(134846,10,'S25.00XA ','Unspecified injury of thoracic aorta, initial encounter','Y','0000-00-00 00:00:00'),(134847,10,'S25.00XD ','Unspecified injury of thoracic aorta, subsequent encounter','Y','0000-00-00 00:00:00'),(134845,10,'S24.9XXS ','Injury of unspecified nerve of thorax, sequela','Y','0000-00-00 00:00:00'),(134843,10,'S24.9XXA ','Injury of unspecified nerve of thorax, initial encounter','Y','0000-00-00 00:00:00'),(134844,10,'S24.9XXD ','Injury of unspecified nerve of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(134842,10,'S24.8XXS ','Injury of other specified nerves of thorax, sequela','Y','0000-00-00 00:00:00'),(134841,10,'S24.8XXD ','Injury of other specified nerves of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(134839,10,'S24.4XXS ','Injury of thoracic sympathetic nervous system, sequela','Y','0000-00-00 00:00:00'),(134840,10,'S24.8XXA ','Injury of other specified nerves of thorax, initial encounter','Y','0000-00-00 00:00:00'),(134838,10,'S24.4XXD ','Injury of thoracic sympathetic nervous system, subsequent encounter','Y','0000-00-00 00:00:00'),(134837,10,'S24.4XXA ','Injury of thoracic sympathetic nervous system, initial encounter','Y','0000-00-00 00:00:00'),(134835,10,'S24.3XXD ','Injury of peripheral nerves of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(134836,10,'S24.3XXS ','Injury of peripheral nerves of thorax, sequela','Y','0000-00-00 00:00:00'),(134834,10,'S24.3XXA ','Injury of peripheral nerves of thorax, initial encounter','Y','0000-00-00 00:00:00'),(134832,10,'S24.2XXD ','Injury of nerve root of thoracic spine, subsequent encounter','Y','0000-00-00 00:00:00'),(134833,10,'S24.2XXS ','Injury of nerve root of thoracic spine, sequela','Y','0000-00-00 00:00:00'),(134831,10,'S24.2XXA ','Injury of nerve root of thoracic spine, initial encounter','Y','0000-00-00 00:00:00'),(134830,10,'S24.159S ','Other incomplete lesion at unspecified level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134829,10,'S24.159D ','Other incomplete lesion at unspecified level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134828,10,'S24.159A ','Other incomplete lesion at unspecified level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134827,10,'S24.154S ','Other incomplete lesion at T11-T12 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134826,10,'S24.154D ','Other incomplete lesion at T11-T12 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134824,10,'S24.153S ','Other incomplete lesion at T7-T10 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134825,10,'S24.154A ','Other incomplete lesion at T11-T12 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134823,10,'S24.153D ','Other incomplete lesion at T7-T10 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134822,10,'S24.153A ','Other incomplete lesion at T7-T10 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134821,10,'S24.152S ','Other incomplete lesion at T2-T6 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134820,10,'S24.152D ','Other incomplete lesion at T2-T6 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134819,10,'S24.152A ','Other incomplete lesion at T2-T6 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134818,10,'S24.151S ','Other incomplete lesion at T1 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134817,10,'S24.151D ','Other incomplete lesion at T1 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134816,10,'S24.151A ','Other incomplete lesion at T1 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134815,10,'S24.149S ','Brown-Sequard syndrome at unspecified level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134814,10,'S24.149D ','Brown-Sequard syndrome at unspecified level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134813,10,'S24.149A ','Brown-Sequard syndrome at unspecified level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134812,10,'S24.144S ','Brown-Sequard syndrome at T11-T12 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134810,10,'S24.144A ','Brown-Sequard syndrome at T11-T12 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134811,10,'S24.144D ','Brown-Sequard syndrome at T11-T12 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134809,10,'S24.143S ','Brown-Sequard syndrome at T7-T10 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134808,10,'S24.143D ','Brown-Sequard syndrome at T7-T10 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134807,10,'S24.143A ','Brown-Sequard syndrome at T7-T10 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134806,10,'S24.142S ','Brown-Sequard syndrome at T2-T6 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134805,10,'S24.142D ','Brown-Sequard syndrome at T2-T6 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134803,10,'S24.141S ','Brown-Sequard syndrome at T1 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134804,10,'S24.142A ','Brown-Sequard syndrome at T2-T6 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134802,10,'S24.141D ','Brown-Sequard syndrome at T1 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134801,10,'S24.141A ','Brown-Sequard syndrome at T1 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134800,10,'S24.139S ','Anterior cord syndrome at unspecified level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134799,10,'S24.139D ','Anterior cord syndrome at unspecified level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134798,10,'S24.139A ','Anterior cord syndrome at unspecified level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134796,10,'S24.134D ','Anterior cord syndrome at T11-T12 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134797,10,'S24.134S ','Anterior cord syndrome at T11-T12 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134795,10,'S24.134A ','Anterior cord syndrome at T11-T12 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134794,10,'S24.133S ','Anterior cord syndrome at T7-T10 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134793,10,'S24.133D ','Anterior cord syndrome at T7-T10 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134792,10,'S24.133A ','Anterior cord syndrome at T7-T10 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134791,10,'S24.132S ','Anterior cord syndrome at T2-T6 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134789,10,'S24.132A ','Anterior cord syndrome at T2-T6 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134790,10,'S24.132D ','Anterior cord syndrome at T2-T6 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134788,10,'S24.131S ','Anterior cord syndrome at T1 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134787,10,'S24.131D ','Anterior cord syndrome at T1 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134786,10,'S24.131A ','Anterior cord syndrome at T1 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134785,10,'S24.119S ','Complete lesion at unspecified level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134784,10,'S24.119D ','Complete lesion at unspecified level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134783,10,'S24.119A ','Complete lesion at unspecified level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134782,10,'S24.114S ','Complete lesion at T11-T12 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134781,10,'S24.114D ','Complete lesion at T11-T12 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134780,10,'S24.114A ','Complete lesion at T11-T12 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134778,10,'S24.113D ','Complete lesion at T7-T10 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134779,10,'S24.113S ','Complete lesion at T7-T10 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134777,10,'S24.113A ','Complete lesion at T7-T10 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134776,10,'S24.112S ','Complete lesion at T2-T6 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134775,10,'S24.112D ','Complete lesion at T2-T6 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134773,10,'S24.111S ','Complete lesion at T1 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134774,10,'S24.112A ','Complete lesion at T2-T6 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134772,10,'S24.111D ','Complete lesion at T1 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134771,10,'S24.111A ','Complete lesion at T1 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134770,10,'S24.109S ','Unspecified injury at unspecified level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134769,10,'S24.109D ','Unspecified injury at unspecified level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134767,10,'S24.104S ','Unspecified injury at T11-T12 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134768,10,'S24.109A ','Unspecified injury at unspecified level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134766,10,'S24.104D ','Unspecified injury at T11-T12 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134765,10,'S24.104A ','Unspecified injury at T11-T12 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134764,10,'S24.103S ','Unspecified injury at T7-T10 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134762,10,'S24.103A ','Unspecified injury at T7-T10 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134763,10,'S24.103D ','Unspecified injury at T7-T10 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134761,10,'S24.102S ','Unspecified injury at T2-T6 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134760,10,'S24.102D ','Unspecified injury at T2-T6 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134758,10,'S24.101S ','Unspecified injury at T1 level of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134759,10,'S24.102A ','Unspecified injury at T2-T6 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134757,10,'S24.101D ','Unspecified injury at T1 level of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134755,10,'S24.0XXS ','Concussion and edema of thoracic spinal cord, sequela','Y','0000-00-00 00:00:00'),(134756,10,'S24.101A ','Unspecified injury at T1 level of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134754,10,'S24.0XXD ','Concussion and edema of thoracic spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(134753,10,'S24.0XXA ','Concussion and edema of thoracic spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(134751,10,'S23.9XXD ','Sprain of unspecified parts of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(134752,10,'S23.9XXS ','Sprain of unspecified parts of thorax, sequela','Y','0000-00-00 00:00:00'),(134750,10,'S23.9XXA ','Sprain of unspecified parts of thorax, initial encounter','Y','0000-00-00 00:00:00'),(134748,10,'S23.8XXD ','Sprain of other specified parts of thorax, subsequent encounter','Y','0000-00-00 00:00:00');
INSERT INTO `icd` VALUES (134749,10,'S23.8XXS ','Sprain of other specified parts of thorax, sequela','Y','0000-00-00 00:00:00'),(134747,10,'S23.8XXA ','Sprain of other specified parts of thorax, initial encounter','Y','0000-00-00 00:00:00'),(134746,10,'S23.429S ','Unspecified sprain of sternum, sequela','Y','0000-00-00 00:00:00'),(134745,10,'S23.429D ','Unspecified sprain of sternum, subsequent encounter','Y','0000-00-00 00:00:00'),(134744,10,'S23.429A ','Unspecified sprain of sternum, initial encounter','Y','0000-00-00 00:00:00'),(134742,10,'S23.428D ','Other sprain of sternum, subsequent encounter','Y','0000-00-00 00:00:00'),(134743,10,'S23.428S ','Other sprain of sternum, sequela','Y','0000-00-00 00:00:00'),(134741,10,'S23.428A ','Other sprain of sternum, initial encounter','Y','0000-00-00 00:00:00'),(134739,10,'S23.421D ','Sprain of chondrosternal joint, subsequent encounter','Y','0000-00-00 00:00:00'),(134740,10,'S23.421S ','Sprain of chondrosternal joint, sequela','Y','0000-00-00 00:00:00'),(134738,10,'S23.421A ','Sprain of chondrosternal joint, initial encounter','Y','0000-00-00 00:00:00'),(134737,10,'S23.420S ','Sprain of sternoclavicular (joint) (ligament), sequela','Y','0000-00-00 00:00:00'),(134736,10,'S23.420D ','Sprain of sternoclavicular (joint) (ligament), subsequent encounter','Y','0000-00-00 00:00:00'),(134734,10,'S23.41XS ','Sprain of ribs, sequela','Y','0000-00-00 00:00:00'),(134735,10,'S23.420A ','Sprain of sternoclavicular (joint) (ligament), initial encounter','Y','0000-00-00 00:00:00'),(134732,10,'S23.41XA ','Sprain of ribs, initial encounter','Y','0000-00-00 00:00:00'),(134733,10,'S23.41XD ','Sprain of ribs, subsequent encounter','Y','0000-00-00 00:00:00'),(134731,10,'S23.3XXS ','Sprain of ligaments of thoracic spine, sequela','Y','0000-00-00 00:00:00'),(134730,10,'S23.3XXD ','Sprain of ligaments of thoracic spine, subsequent encounter','Y','0000-00-00 00:00:00'),(134728,10,'S23.29XS ','Dislocation of other parts of thorax, sequela','Y','0000-00-00 00:00:00'),(134729,10,'S23.3XXA ','Sprain of ligaments of thoracic spine, initial encounter','Y','0000-00-00 00:00:00'),(134727,10,'S23.29XD ','Dislocation of other parts of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(134726,10,'S23.29XA ','Dislocation of other parts of thorax, initial encounter','Y','0000-00-00 00:00:00'),(134725,10,'S23.20XS ','Dislocation of unspecified part of thorax, sequela','Y','0000-00-00 00:00:00'),(134724,10,'S23.20XD ','Dislocation of unspecified part of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(134722,10,'S23.171S ','Dislocation of T12/L1 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134723,10,'S23.20XA ','Dislocation of unspecified part of thorax, initial encounter','Y','0000-00-00 00:00:00'),(134721,10,'S23.171D ','Dislocation of T12/L1 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134720,10,'S23.171A ','Dislocation of T12/L1 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134718,10,'S23.170D ','Subluxation of T12/L1 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134719,10,'S23.170S ','Subluxation of T12/L1 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134717,10,'S23.170A ','Subluxation of T12/L1 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134716,10,'S23.163S ','Dislocation of T11/T12 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134714,10,'S23.163A ','Dislocation of T11/T12 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134715,10,'S23.163D ','Dislocation of T11/T12 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134713,10,'S23.162S ','Subluxation of T11/T12 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134712,10,'S23.162D ','Subluxation of T11/T12 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134711,10,'S23.162A ','Subluxation of T11/T12 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134710,10,'S23.161S ','Dislocation of T10/T11 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134709,10,'S23.161D ','Dislocation of T10/T11 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134707,10,'S23.160S ','Subluxation of T10/T11 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134708,10,'S23.161A ','Dislocation of T10/T11 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134706,10,'S23.160D ','Subluxation of T10/T11 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134705,10,'S23.160A ','Subluxation of T10/T11 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134704,10,'S23.153S ','Dislocation of T9/T10 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134702,10,'S23.153A ','Dislocation of T9/T10 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134703,10,'S23.153D ','Dislocation of T9/T10 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134701,10,'S23.152S ','Subluxation of T9/T10 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134700,10,'S23.152D ','Subluxation of T9/T10 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134698,10,'S23.151S ','Dislocation of T8/T9 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134699,10,'S23.152A ','Subluxation of T9/T10 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134697,10,'S23.151D ','Dislocation of T8/T9 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134695,10,'S23.150S ','Subluxation of T8/T9 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134696,10,'S23.151A ','Dislocation of T8/T9 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134694,10,'S23.150D ','Subluxation of T8/T9 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134693,10,'S23.150A ','Subluxation of T8/T9 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134691,10,'S23.143D ','Dislocation of T7/T8 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134692,10,'S23.143S ','Dislocation of T7/T8 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134690,10,'S23.143A ','Dislocation of T7/T8 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134689,10,'S23.142S ','Subluxation of T7/T8 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134687,10,'S23.142A ','Subluxation of T7/T8 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134688,10,'S23.142D ','Subluxation of T7/T8 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134686,10,'S23.141S ','Dislocation of T6/T7 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134685,10,'S23.141D ','Dislocation of T6/T7 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134684,10,'S23.141A ','Dislocation of T6/T7 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134683,10,'S23.140S ','Subluxation of T6/T7 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134681,10,'S23.140A ','Subluxation of T6/T7 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134682,10,'S23.140D ','Subluxation of T6/T7 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134680,10,'S23.133S ','Dislocation of T5/T6 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134678,10,'S23.133A ','Dislocation of T5/T6 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134679,10,'S23.133D ','Dislocation of T5/T6 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134677,10,'S23.132S ','Subluxation of T5/T6 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134675,10,'S23.132A ','Subluxation of T5/T6 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134676,10,'S23.132D ','Subluxation of T5/T6 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134674,10,'S23.131S ','Dislocation of T4/T5 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134672,10,'S23.131A ','Dislocation of T4/T5 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134673,10,'S23.131D ','Dislocation of T4/T5 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134671,10,'S23.130S ','Subluxation of T4/T5 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134670,10,'S23.130D ','Subluxation of T4/T5 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134668,10,'S23.123S ','Dislocation of T3/T4 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134669,10,'S23.130A ','Subluxation of T4/T5 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134667,10,'S23.123D ','Dislocation of T3/T4 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134665,10,'S23.122S ','Subluxation of T3/T4 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134666,10,'S23.123A ','Dislocation of T3/T4 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134664,10,'S23.122D ','Subluxation of T3/T4 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134662,10,'S23.121S ','Dislocation of T2/T3 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134663,10,'S23.122A ','Subluxation of T3/T4 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134661,10,'S23.121D ','Dislocation of T2/T3 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134660,10,'S23.121A ','Dislocation of T2/T3 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134658,10,'S23.120D ','Subluxation of T2/T3 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134659,10,'S23.120S ','Subluxation of T2/T3 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134657,10,'S23.120A ','Subluxation of T2/T3 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134656,10,'S23.111S ','Dislocation of T1/T2 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134654,10,'S23.111A ','Dislocation of T1/T2 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134655,10,'S23.111D ','Dislocation of T1/T2 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134653,10,'S23.110S ','Subluxation of T1/T2 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134652,10,'S23.110D ','Subluxation of T1/T2 thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134650,10,'S23.101S ','Dislocation of unspecified thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134651,10,'S23.110A ','Subluxation of T1/T2 thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134649,10,'S23.101D ','Dislocation of unspecified thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134648,10,'S23.101A ','Dislocation of unspecified thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134647,10,'S23.100S ','Subluxation of unspecified thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134645,10,'S23.100A ','Subluxation of unspecified thoracic vertebra, initial encounter','Y','0000-00-00 00:00:00'),(134646,10,'S23.100D ','Subluxation of unspecified thoracic vertebra, subsequent encounter','Y','0000-00-00 00:00:00'),(134644,10,'S23.0XXS ','Traumatic rupture of thoracic intervertebral disc, sequela','Y','0000-00-00 00:00:00'),(134643,10,'S23.0XXD ','Traumatic rupture of thoracic intervertebral disc, subsequent encounter','Y','0000-00-00 00:00:00'),(134641,10,'S22.9XXS ','Fracture of bony thorax, part unspecified, sequela','Y','0000-00-00 00:00:00'),(134642,10,'S23.0XXA ','Traumatic rupture of thoracic intervertebral disc, initial encounter','Y','0000-00-00 00:00:00'),(134640,10,'S22.9XXK ','Fracture of bony thorax, part unspecified, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134639,10,'S22.9XXG ','Fracture of bony thorax, part unspecified, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134638,10,'S22.9XXD ','Fracture of bony thorax, part unspecified, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134637,10,'S22.9XXB ','Fracture of bony thorax, part unspecified, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134635,10,'S22.5XXS ','Flail chest, sequela','Y','0000-00-00 00:00:00'),(134636,10,'S22.9XXA ','Fracture of bony thorax, part unspecified, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134634,10,'S22.5XXK ','Flail chest, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134633,10,'S22.5XXG ','Flail chest, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134631,10,'S22.5XXB ','Flail chest, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134632,10,'S22.5XXD ','Flail chest, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134630,10,'S22.5XXA ','Flail chest, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134629,10,'S22.49XS ','Multiple fractures of ribs, unspecified side, sequela','Y','0000-00-00 00:00:00'),(134628,10,'S22.49XK ','Multiple fractures of ribs, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134627,10,'S22.49XG ','Multiple fractures of ribs, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134626,10,'S22.49XD ','Multiple fractures of ribs, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134625,10,'S22.49XB ','Multiple fractures of ribs, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134624,10,'S22.49XA ','Multiple fractures of ribs, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134623,10,'S22.43XS ','Multiple fractures of ribs, bilateral, sequela','Y','0000-00-00 00:00:00'),(134622,10,'S22.43XK ','Multiple fractures of ribs, bilateral, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134621,10,'S22.43XG ','Multiple fractures of ribs, bilateral, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134620,10,'S22.43XD ','Multiple fractures of ribs, bilateral, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134618,10,'S22.43XA ','Multiple fractures of ribs, bilateral, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134619,10,'S22.43XB ','Multiple fractures of ribs, bilateral, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134617,10,'S22.42XS ','Multiple fractures of ribs, left side, sequela','Y','0000-00-00 00:00:00'),(134616,10,'S22.42XK ','Multiple fractures of ribs, left side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134615,10,'S22.42XG ','Multiple fractures of ribs, left side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134613,10,'S22.42XB ','Multiple fractures of ribs, left side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134614,10,'S22.42XD ','Multiple fractures of ribs, left side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134612,10,'S22.42XA ','Multiple fractures of ribs, left side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134611,10,'S22.41XS ','Multiple fractures of ribs, right side, sequela','Y','0000-00-00 00:00:00'),(134610,10,'S22.41XK ','Multiple fractures of ribs, right side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134608,10,'S22.41XD ','Multiple fractures of ribs, right side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134609,10,'S22.41XG ','Multiple fractures of ribs, right side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134607,10,'S22.41XB ','Multiple fractures of ribs, right side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134606,10,'S22.41XA ','Multiple fractures of ribs, right side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134605,10,'S22.39XS ','Fracture of one rib, unspecified side, sequela','Y','0000-00-00 00:00:00'),(134604,10,'S22.39XK ','Fracture of one rib, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134603,10,'S22.39XG ','Fracture of one rib, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134602,10,'S22.39XD ','Fracture of one rib, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134600,10,'S22.39XA ','Fracture of one rib, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134601,10,'S22.39XB ','Fracture of one rib, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134599,10,'S22.32XS ','Fracture of one rib, left side, sequela','Y','0000-00-00 00:00:00'),(134598,10,'S22.32XK ','Fracture of one rib, left side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134596,10,'S22.32XD ','Fracture of one rib, left side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134597,10,'S22.32XG ','Fracture of one rib, left side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134595,10,'S22.32XB ','Fracture of one rib, left side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134593,10,'S22.31XS ','Fracture of one rib, right side, sequela','Y','0000-00-00 00:00:00'),(134594,10,'S22.32XA ','Fracture of one rib, left side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134592,10,'S22.31XK ','Fracture of one rib, right side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134591,10,'S22.31XG ','Fracture of one rib, right side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134590,10,'S22.31XD ','Fracture of one rib, right side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134588,10,'S22.31XA ','Fracture of one rib, right side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134589,10,'S22.31XB ','Fracture of one rib, right side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134587,10,'S22.24XS ','Fracture of xiphoid process, sequela','Y','0000-00-00 00:00:00'),(134586,10,'S22.24XK ','Fracture of xiphoid process, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134585,10,'S22.24XG ','Fracture of xiphoid process, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134584,10,'S22.24XD ','Fracture of xiphoid process, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134582,10,'S22.24XA ','Fracture of xiphoid process, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134583,10,'S22.24XB ','Fracture of xiphoid process, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134581,10,'S22.23XS ','Sternal manubrial dissociation, sequela','Y','0000-00-00 00:00:00'),(134579,10,'S22.23XG ','Sternal manubrial dissociation, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134580,10,'S22.23XK ','Sternal manubrial dissociation, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134578,10,'S22.23XD ','Sternal manubrial dissociation, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134577,10,'S22.23XB ','Sternal manubrial dissociation, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134575,10,'S22.22XS ','Fracture of body of sternum, sequela','Y','0000-00-00 00:00:00'),(134576,10,'S22.23XA ','Sternal manubrial dissociation, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134574,10,'S22.22XK ','Fracture of body of sternum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134572,10,'S22.22XD ','Fracture of body of sternum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134573,10,'S22.22XG ','Fracture of body of sternum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134571,10,'S22.22XB ','Fracture of body of sternum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134569,10,'S22.21XS ','Fracture of manubrium, sequela','Y','0000-00-00 00:00:00'),(134570,10,'S22.22XA ','Fracture of body of sternum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134568,10,'S22.21XK ','Fracture of manubrium, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134566,10,'S22.21XD ','Fracture of manubrium, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134567,10,'S22.21XG ','Fracture of manubrium, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134564,10,'S22.21XA ','Fracture of manubrium, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134565,10,'S22.21XB ','Fracture of manubrium, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134563,10,'S22.20XS ','Unspecified fracture of sternum, sequela','Y','0000-00-00 00:00:00'),(134562,10,'S22.20XK ','Unspecified fracture of sternum, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134561,10,'S22.20XG ','Unspecified fracture of sternum, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134559,10,'S22.20XB ','Unspecified fracture of sternum, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134560,10,'S22.20XD ','Unspecified fracture of sternum, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134558,10,'S22.20XA ','Unspecified fracture of sternum, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134557,10,'S22.089S ','Unspecified fracture of T11-T12 vertebra, sequela','Y','0000-00-00 00:00:00'),(134555,10,'S22.089G ','Unspecified fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134556,10,'S22.089K ','Unspecified fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134554,10,'S22.089D ','Unspecified fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134553,10,'S22.089B ','Unspecified fracture of T11-T12 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134551,10,'S22.088S ','Other fracture of T11-T12 vertebra, sequela','Y','0000-00-00 00:00:00'),(134552,10,'S22.089A ','Unspecified fracture of T11-T12 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134550,10,'S22.088K ','Other fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134549,10,'S22.088G ','Other fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134548,10,'S22.088D ','Other fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134546,10,'S22.088A ','Other fracture of T11-T12 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134547,10,'S22.088B ','Other fracture of T11-T12 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134545,10,'S22.082S ','Unstable burst fracture of T11-T12 vertebra, sequela','Y','0000-00-00 00:00:00'),(134544,10,'S22.082K ','Unstable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134543,10,'S22.082G ','Unstable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134541,10,'S22.082B ','Unstable burst fracture of T11-T12 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134542,10,'S22.082D ','Unstable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134540,10,'S22.082A ','Unstable burst fracture of T11-T12 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134538,10,'S22.081K ','Stable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134539,10,'S22.081S ','Stable burst fracture of T11-T12 vertebra, sequela','Y','0000-00-00 00:00:00'),(134537,10,'S22.081G ','Stable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134536,10,'S22.081D ','Stable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134535,10,'S22.081B ','Stable burst fracture of T11-T12 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134533,10,'S22.080S ','Wedge compression fracture of T11-T12 vertebra, sequela','Y','0000-00-00 00:00:00'),(134534,10,'S22.081A ','Stable burst fracture of T11-T12 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134532,10,'S22.080K ','Wedge compression fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134531,10,'S22.080G ','Wedge compression fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134530,10,'S22.080D ','Wedge compression fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134529,10,'S22.080B ','Wedge compression fracture of T11-T12 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134527,10,'S22.079S ','Unspecified fracture of T9-T10 vertebra, sequela','Y','0000-00-00 00:00:00'),(134528,10,'S22.080A ','Wedge compression fracture of T11-T12 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134526,10,'S22.079K ','Unspecified fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134525,10,'S22.079G ','Unspecified fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134524,10,'S22.079D ','Unspecified fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134522,10,'S22.079A ','Unspecified fracture of T9-T10 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134523,10,'S22.079B ','Unspecified fracture of T9-T10 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134521,10,'S22.078S ','Other fracture of T9-T10 vertebra, sequela','Y','0000-00-00 00:00:00'),(134520,10,'S22.078K ','Other fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134518,10,'S22.078D ','Other fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134519,10,'S22.078G ','Other fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134517,10,'S22.078B ','Other fracture of T9-T10 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134515,10,'S22.072S ','Unstable burst fracture of T9-T10 vertebra, sequela','Y','0000-00-00 00:00:00'),(134516,10,'S22.078A ','Other fracture of T9-T10 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134514,10,'S22.072K ','Unstable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134513,10,'S22.072G ','Unstable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134512,10,'S22.072D ','Unstable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134511,10,'S22.072B ','Unstable burst fracture of T9-T10 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134509,10,'S22.071S ','Stable burst fracture of T9-T10 vertebra, sequela','Y','0000-00-00 00:00:00'),(134510,10,'S22.072A ','Unstable burst fracture of T9-T10 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134508,10,'S22.071K ','Stable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134507,10,'S22.071G ','Stable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134506,10,'S22.071D ','Stable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134505,10,'S22.071B ','Stable burst fracture of T9-T10 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134504,10,'S22.071A ','Stable burst fracture of T9-T10 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134503,10,'S22.070S ','Wedge compression fracture of T9-T10 vertebra, sequela','Y','0000-00-00 00:00:00'),(134502,10,'S22.070K ','Wedge compression fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134501,10,'S22.070G ','Wedge compression fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134500,10,'S22.070D ','Wedge compression fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134499,10,'S22.070B ','Wedge compression fracture of T9-T10 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134497,10,'S22.069S ','Unspecified fracture of T7-T8 vertebra, sequela','Y','0000-00-00 00:00:00'),(134498,10,'S22.070A ','Wedge compression fracture of T9-T10 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134496,10,'S22.069K ','Unspecified fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134495,10,'S22.069G ','Unspecified fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134494,10,'S22.069D ','Unspecified fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134493,10,'S22.069B ','Unspecified fracture of T7-T8 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134492,10,'S22.069A ','Unspecified fracture of T7-T8 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134491,10,'S22.068S ','Other fracture of T7-T8 thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134490,10,'S22.068K ','Other fracture of T7-T8 thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134489,10,'S22.068G ','Other fracture of T7-T8 thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134488,10,'S22.068D ','Other fracture of T7-T8 thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134487,10,'S22.068B ','Other fracture of T7-T8 thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134485,10,'S22.062S ','Unstable burst fracture of T7-T8 vertebra, sequela','Y','0000-00-00 00:00:00'),(134486,10,'S22.068A ','Other fracture of T7-T8 thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134484,10,'S22.062K ','Unstable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134483,10,'S22.062G ','Unstable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134482,10,'S22.062D ','Unstable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134481,10,'S22.062B ','Unstable burst fracture of T7-T8 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134480,10,'S22.062A ','Unstable burst fracture of T7-T8 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134479,10,'S22.061S ','Stable burst fracture of T7-T8 vertebra, sequela','Y','0000-00-00 00:00:00'),(134478,10,'S22.061K ','Stable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134477,10,'S22.061G ','Stable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134476,10,'S22.061D ','Stable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134474,10,'S22.061A ','Stable burst fracture of T7-T8 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134475,10,'S22.061B ','Stable burst fracture of T7-T8 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134473,10,'S22.060S ','Wedge compression fracture of T7-T8 vertebra, sequela','Y','0000-00-00 00:00:00'),(134472,10,'S22.060K ','Wedge compression fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134471,10,'S22.060G ','Wedge compression fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134470,10,'S22.060D ','Wedge compression fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134469,10,'S22.060B ','Wedge compression fracture of T7-T8 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134467,10,'S22.059S ','Unspecified fracture of T5-T6 vertebra, sequela','Y','0000-00-00 00:00:00'),(134468,10,'S22.060A ','Wedge compression fracture of T7-T8 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134466,10,'S22.059K ','Unspecified fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134465,10,'S22.059G ','Unspecified fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134464,10,'S22.059D ','Unspecified fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134463,10,'S22.059B ','Unspecified fracture of T5-T6 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134462,10,'S22.059A ','Unspecified fracture of T5-T6 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134460,10,'S22.058K ','Other fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134461,10,'S22.058S ','Other fracture of T5-T6 vertebra, sequela','Y','0000-00-00 00:00:00'),(134459,10,'S22.058G ','Other fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134458,10,'S22.058D ','Other fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134457,10,'S22.058B ','Other fracture of T5-T6 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134456,10,'S22.058A ','Other fracture of T5-T6 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134455,10,'S22.052S ','Unstable burst fracture of T5-T6 vertebra, sequela','Y','0000-00-00 00:00:00'),(134454,10,'S22.052K ','Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134453,10,'S22.052G ','Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134452,10,'S22.052D ','Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134450,10,'S22.052A ','Unstable burst fracture of T5-T6 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134451,10,'S22.052B ','Unstable burst fracture of T5-T6 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134449,10,'S22.051S ','Stable burst fracture of T5-T6 vertebra, sequela','Y','0000-00-00 00:00:00'),(134448,10,'S22.051K ','Stable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134447,10,'S22.051G ','Stable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134446,10,'S22.051D ','Stable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134445,10,'S22.051B ','Stable burst fracture of T5-T6 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134443,10,'S22.050S ','Wedge compression fracture of T5-T6 vertebra, sequela','Y','0000-00-00 00:00:00'),(134444,10,'S22.051A ','Stable burst fracture of T5-T6 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134442,10,'S22.050K ','Wedge compression fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134441,10,'S22.050G ','Wedge compression fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134440,10,'S22.050D ','Wedge compression fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134439,10,'S22.050B ','Wedge compression fracture of T5-T6 vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134438,10,'S22.050A ','Wedge compression fracture of T5-T6 vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134437,10,'S22.049S ','Unspecified fracture of fourth thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134436,10,'S22.049K ','Unspecified fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134435,10,'S22.049G ','Unspecified fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134434,10,'S22.049D ','Unspecified fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134433,10,'S22.049B ','Unspecified fracture of fourth thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134432,10,'S22.049A ','Unspecified fracture of fourth thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134430,10,'S22.048K ','Other fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134431,10,'S22.048S ','Other fracture of fourth thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134429,10,'S22.048G ','Other fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134428,10,'S22.048D ','Other fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134427,10,'S22.048B ','Other fracture of fourth thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134426,10,'S22.048A ','Other fracture of fourth thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134425,10,'S22.042S ','Unstable burst fracture of fourth thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134424,10,'S22.042K ','Unstable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134423,10,'S22.042G ','Unstable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134422,10,'S22.042D ','Unstable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134421,10,'S22.042B ','Unstable burst fracture of fourth thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134419,10,'S22.041S ','Stable burst fracture of fourth thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134420,10,'S22.042A ','Unstable burst fracture of fourth thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134418,10,'S22.041K ','Stable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134417,10,'S22.041G ','Stable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134415,10,'S22.041B ','Stable burst fracture of fourth thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134416,10,'S22.041D ','Stable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134414,10,'S22.041A ','Stable burst fracture of fourth thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134413,10,'S22.040S ','Wedge compression fracture of fourth thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134412,10,'S22.040K ','Wedge compression fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134411,10,'S22.040G ','Wedge compression fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134410,10,'S22.040D ','Wedge compression fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134409,10,'S22.040B ','Wedge compression fracture of fourth thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134408,10,'S22.040A ','Wedge compression fracture of fourth thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134407,10,'S22.039S ','Unspecified fracture of third thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134406,10,'S22.039K ','Unspecified fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134405,10,'S22.039G ','Unspecified fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134404,10,'S22.039D ','Unspecified fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134403,10,'S22.039B ','Unspecified fracture of third thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134402,10,'S22.039A ','Unspecified fracture of third thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134401,10,'S22.038S ','Other fracture of third thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134400,10,'S22.038K ','Other fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134399,10,'S22.038G ','Other fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134398,10,'S22.038D ','Other fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134397,10,'S22.038B ','Other fracture of third thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134395,10,'S22.032S ','Unstable burst fracture of third thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134396,10,'S22.038A ','Other fracture of third thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134394,10,'S22.032K ','Unstable burst fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134393,10,'S22.032G ','Unstable burst fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134392,10,'S22.032D ','Unstable burst fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134391,10,'S22.032B ','Unstable burst fracture of third thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134390,10,'S22.032A ','Unstable burst fracture of third thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134389,10,'S22.031S ','Stable burst fracture of third thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134388,10,'S22.031K ','Stable burst fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134387,10,'S22.031G ','Stable burst fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134386,10,'S22.031D ','Stable burst fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134385,10,'S22.031B ','Stable burst fracture of third thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134384,10,'S22.031A ','Stable burst fracture of third thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134383,10,'S22.030S ','Wedge compression fracture of third thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134382,10,'S22.030K ','Wedge compression fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134381,10,'S22.030G ','Wedge compression fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134380,10,'S22.030D ','Wedge compression fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134379,10,'S22.030B ','Wedge compression fracture of third thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134378,10,'S22.030A ','Wedge compression fracture of third thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134377,10,'S22.029S ','Unspecified fracture of second thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134376,10,'S22.029K ','Unspecified fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134375,10,'S22.029G ','Unspecified fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134374,10,'S22.029D ','Unspecified fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134373,10,'S22.029B ','Unspecified fracture of second thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134371,10,'S22.028S ','Other fracture of second thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134372,10,'S22.029A ','Unspecified fracture of second thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134370,10,'S22.028K ','Other fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134369,10,'S22.028G ','Other fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134367,10,'S22.028B ','Other fracture of second thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134368,10,'S22.028D ','Other fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134366,10,'S22.028A ','Other fracture of second thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134365,10,'S22.022S ','Unstable burst fracture of second thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134364,10,'S22.022K ','Unstable burst fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134363,10,'S22.022G ','Unstable burst fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134362,10,'S22.022D ','Unstable burst fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134361,10,'S22.022B ','Unstable burst fracture of second thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134360,10,'S22.022A ','Unstable burst fracture of second thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134359,10,'S22.021S ','Stable burst fracture of second thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134358,10,'S22.021K ','Stable burst fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134357,10,'S22.021G ','Stable burst fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134356,10,'S22.021D ','Stable burst fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134355,10,'S22.021B ','Stable burst fracture of second thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134353,10,'S22.020S ','Wedge compression fracture of second thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134354,10,'S22.021A ','Stable burst fracture of second thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134352,10,'S22.020K ','Wedge compression fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134351,10,'S22.020G ','Wedge compression fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134350,10,'S22.020D ','Wedge compression fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134349,10,'S22.020B ','Wedge compression fracture of second thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134348,10,'S22.020A ','Wedge compression fracture of second thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134347,10,'S22.019S ','Unspecified fracture of first thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134346,10,'S22.019K ','Unspecified fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134345,10,'S22.019G ','Unspecified fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134344,10,'S22.019D ','Unspecified fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134343,10,'S22.019B ','Unspecified fracture of first thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134341,10,'S22.018S ','Other fracture of first thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134342,10,'S22.019A ','Unspecified fracture of first thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134340,10,'S22.018K ','Other fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134339,10,'S22.018G ','Other fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134338,10,'S22.018D ','Other fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134337,10,'S22.018B ','Other fracture of first thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134336,10,'S22.018A ','Other fracture of first thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134335,10,'S22.012S ','Unstable burst fracture of first thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134334,10,'S22.012K ','Unstable burst fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134333,10,'S22.012G ','Unstable burst fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134332,10,'S22.012D ','Unstable burst fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134331,10,'S22.012B ','Unstable burst fracture of first thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134330,10,'S22.012A ','Unstable burst fracture of first thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134329,10,'S22.011S ','Stable burst fracture of first thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134328,10,'S22.011K ','Stable burst fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134327,10,'S22.011G ','Stable burst fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134326,10,'S22.011D ','Stable burst fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134325,10,'S22.011B ','Stable burst fracture of first thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134324,10,'S22.011A ','Stable burst fracture of first thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134323,10,'S22.010S ','Wedge compression fracture of first thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134322,10,'S22.010K ','Wedge compression fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134321,10,'S22.010G ','Wedge compression fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134320,10,'S22.010D ','Wedge compression fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134319,10,'S22.010B ','Wedge compression fracture of first thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134317,10,'S22.009S ','Unspecified fracture of unspecified thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134318,10,'S22.010A ','Wedge compression fracture of first thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134316,10,'S22.009K ','Unspecified fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134315,10,'S22.009G ','Unspecified fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134314,10,'S22.009D ','Unspecified fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134313,10,'S22.009B ','Unspecified fracture of unspecified thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134312,10,'S22.009A ','Unspecified fracture of unspecified thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134311,10,'S22.008S ','Other fracture of unspecified thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134310,10,'S22.008K ','Other fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134309,10,'S22.008G ','Other fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134308,10,'S22.008D ','Other fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134307,10,'S22.008B ','Other fracture of unspecified thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134306,10,'S22.008A ','Other fracture of unspecified thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134305,10,'S22.002S ','Unstable burst fracture of unspecified thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134304,10,'S22.002K ','Unstable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134303,10,'S22.002G ','Unstable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134302,10,'S22.002D ','Unstable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134301,10,'S22.002B ','Unstable burst fracture of unspecified thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134299,10,'S22.001S ','Stable burst fracture of unspecified thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134300,10,'S22.002A ','Unstable burst fracture of unspecified thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134298,10,'S22.001K ','Stable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134297,10,'S22.001G ','Stable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134296,10,'S22.001D ','Stable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134295,10,'S22.001B ','Stable burst fracture of unspecified thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134294,10,'S22.001A ','Stable burst fracture of unspecified thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134293,10,'S22.000S ','Wedge compression fracture of unspecified thoracic vertebra, sequela','Y','0000-00-00 00:00:00'),(134292,10,'S22.000K ','Wedge compression fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(134291,10,'S22.000G ','Wedge compression fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(134290,10,'S22.000D ','Wedge compression fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(134289,10,'S22.000B ','Wedge compression fracture of unspecified thoracic vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(134288,10,'S22.000A ','Wedge compression fracture of unspecified thoracic vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(134286,10,'S21.95XD ','Open bite of unspecified part of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(134287,10,'S21.95XS ','Open bite of unspecified part of thorax, sequela','Y','0000-00-00 00:00:00'),(134285,10,'S21.95XA ','Open bite of unspecified part of thorax, initial encounter','Y','0000-00-00 00:00:00'),(134284,10,'S21.94XS ','Puncture wound with foreign body of unspecified part of thorax, sequela','Y','0000-00-00 00:00:00'),(134282,10,'S21.94XA ','Puncture wound with foreign body of unspecified part of thorax, initial encounter','Y','0000-00-00 00:00:00'),(134283,10,'S21.94XD ','Puncture wound with foreign body of unspecified part of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(134281,10,'S21.93XS ','Puncture wound without foreign body of unspecified part of thorax, sequela','Y','0000-00-00 00:00:00'),(134280,10,'S21.93XD ','Puncture wound without foreign body of unspecified part of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(134279,10,'S21.93XA ','Puncture wound without foreign body of unspecified part of thorax, initial encounter','Y','0000-00-00 00:00:00'),(134278,10,'S21.92XS ','Laceration with foreign body of unspecified part of thorax, sequela','Y','0000-00-00 00:00:00'),(134277,10,'S21.92XD ','Laceration with foreign body of unspecified part of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(134275,10,'S21.91XS ','Laceration without foreign body of unspecified part of thorax, sequela','Y','0000-00-00 00:00:00'),(134276,10,'S21.92XA ','Laceration with foreign body of unspecified part of thorax, initial encounter','Y','0000-00-00 00:00:00'),(134274,10,'S21.91XD ','Laceration without foreign body of unspecified part of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(134272,10,'S21.90XS ','Unspecified open wound of unspecified part of thorax, sequela','Y','0000-00-00 00:00:00'),(134273,10,'S21.91XA ','Laceration without foreign body of unspecified part of thorax, initial encounter','Y','0000-00-00 00:00:00'),(134271,10,'S21.90XD ','Unspecified open wound of unspecified part of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(134270,10,'S21.90XA ','Unspecified open wound of unspecified part of thorax, initial encounter','Y','0000-00-00 00:00:00'),(134269,10,'S21.459S ','Open bite of unspecified back wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134268,10,'S21.459D ','Open bite of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134266,10,'S21.452S ','Open bite of left back wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134267,10,'S21.459A ','Open bite of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134265,10,'S21.452D ','Open bite of left back wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134264,10,'S21.452A ','Open bite of left back wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134263,10,'S21.451S ','Open bite of right back wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134262,10,'S21.451D ','Open bite of right back wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134261,10,'S21.451A ','Open bite of right back wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134260,10,'S21.449S ','Puncture wound with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134259,10,'S21.449D ','Puncture wound with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134258,10,'S21.449A ','Puncture wound with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134257,10,'S21.442S ','Puncture wound with foreign body of left back wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134256,10,'S21.442D ','Puncture wound with foreign body of left back wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134255,10,'S21.442A ','Puncture wound with foreign body of left back wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134254,10,'S21.441S ','Puncture wound with foreign body of right back wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134253,10,'S21.441D ','Puncture wound with foreign body of right back wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134252,10,'S21.441A ','Puncture wound with foreign body of right back wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134251,10,'S21.439S ','Puncture wound without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134250,10,'S21.439D ','Puncture wound without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134249,10,'S21.439A ','Puncture wound without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134248,10,'S21.432S ','Puncture wound without foreign body of left back wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134247,10,'S21.432D ','Puncture wound without foreign body of left back wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134246,10,'S21.432A ','Puncture wound without foreign body of left back wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134245,10,'S21.431S ','Puncture wound without foreign body of right back wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134244,10,'S21.431D ','Puncture wound without foreign body of right back wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134243,10,'S21.431A ','Puncture wound without foreign body of right back wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134242,10,'S21.429S ','Laceration with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134241,10,'S21.429D ','Laceration with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134240,10,'S21.429A ','Laceration with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134239,10,'S21.422S ','Laceration with foreign body of left back wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134238,10,'S21.422D ','Laceration with foreign body of left back wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134236,10,'S21.421S ','Laceration with foreign body of right back wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134237,10,'S21.422A ','Laceration with foreign body of left back wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134235,10,'S21.421D ','Laceration with foreign body of right back wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134234,10,'S21.421A ','Laceration with foreign body of right back wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134233,10,'S21.419S ','Laceration without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134232,10,'S21.419D ','Laceration without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134231,10,'S21.419A ','Laceration without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134230,10,'S21.412S ','Laceration without foreign body of left back wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134229,10,'S21.412D ','Laceration without foreign body of left back wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134228,10,'S21.412A ','Laceration without foreign body of left back wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134227,10,'S21.411S ','Laceration without foreign body of right back wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134226,10,'S21.411D ','Laceration without foreign body of right back wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134225,10,'S21.411A ','Laceration without foreign body of right back wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134224,10,'S21.409S ','Unspecified open wound of unspecified back wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134223,10,'S21.409D ','Unspecified open wound of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134221,10,'S21.402S ','Unspecified open wound of left back wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134222,10,'S21.409A ','Unspecified open wound of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134220,10,'S21.402D ','Unspecified open wound of left back wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134219,10,'S21.402A ','Unspecified open wound of left back wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134218,10,'S21.401S ','Unspecified open wound of right back wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134217,10,'S21.401D ','Unspecified open wound of right back wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134216,10,'S21.401A ','Unspecified open wound of right back wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134215,10,'S21.359S ','Open bite of unspecified front wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134214,10,'S21.359D ','Open bite of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134213,10,'S21.359A ','Open bite of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134212,10,'S21.352S ','Open bite of left front wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134211,10,'S21.352D ','Open bite of left front wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134210,10,'S21.352A ','Open bite of left front wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134209,10,'S21.351S ','Open bite of right front wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134207,10,'S21.351A ','Open bite of right front wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134208,10,'S21.351D ','Open bite of right front wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134206,10,'S21.349S ','Puncture wound with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134205,10,'S21.349D ','Puncture wound with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134204,10,'S21.349A ','Puncture wound with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134203,10,'S21.342S ','Puncture wound with foreign body of left front wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134202,10,'S21.342D ','Puncture wound with foreign body of left front wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134201,10,'S21.342A ','Puncture wound with foreign body of left front wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134200,10,'S21.341S ','Puncture wound with foreign body of right front wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134199,10,'S21.341D ','Puncture wound with foreign body of right front wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134197,10,'S21.339S ','Puncture wound without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134198,10,'S21.341A ','Puncture wound with foreign body of right front wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134196,10,'S21.339D ','Puncture wound without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134195,10,'S21.339A ','Puncture wound without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134194,10,'S21.332S ','Puncture wound without foreign body of left front wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134193,10,'S21.332D ','Puncture wound without foreign body of left front wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134192,10,'S21.332A ','Puncture wound without foreign body of left front wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134191,10,'S21.331S ','Puncture wound without foreign body of right front wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134190,10,'S21.331D ','Puncture wound without foreign body of right front wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134188,10,'S21.329S ','Laceration with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134189,10,'S21.331A ','Puncture wound without foreign body of right front wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134187,10,'S21.329D ','Laceration with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134186,10,'S21.329A ','Laceration with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134185,10,'S21.322S ','Laceration with foreign body of left front wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134184,10,'S21.322D ','Laceration with foreign body of left front wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134183,10,'S21.322A ','Laceration with foreign body of left front wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134182,10,'S21.321S ','Laceration with foreign body of right front wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134180,10,'S21.321A ','Laceration with foreign body of right front wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134181,10,'S21.321D ','Laceration with foreign body of right front wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134179,10,'S21.319S ','Laceration without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134178,10,'S21.319D ','Laceration without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134177,10,'S21.319A ','Laceration without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134176,10,'S21.312S ','Laceration without foreign body of left front wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134175,10,'S21.312D ','Laceration without foreign body of left front wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134173,10,'S21.311S ','Laceration without foreign body of right front wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134174,10,'S21.312A ','Laceration without foreign body of left front wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134172,10,'S21.311D ','Laceration without foreign body of right front wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134171,10,'S21.311A ','Laceration without foreign body of right front wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134170,10,'S21.309S ','Unspecified open wound of unspecified front wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134169,10,'S21.309D ','Unspecified open wound of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134167,10,'S21.302S ','Unspecified open wound of left front wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134168,10,'S21.309A ','Unspecified open wound of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134166,10,'S21.302D ','Unspecified open wound of left front wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134165,10,'S21.302A ','Unspecified open wound of left front wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134164,10,'S21.301S ','Unspecified open wound of right front wall of thorax with penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134162,10,'S21.301A ','Unspecified open wound of right front wall of thorax with penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134163,10,'S21.301D ','Unspecified open wound of right front wall of thorax with penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134161,10,'S21.259S ','Open bite of unspecified back wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134160,10,'S21.259D ','Open bite of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134158,10,'S21.252S ','Open bite of left back wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134159,10,'S21.259A ','Open bite of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134157,10,'S21.252D ','Open bite of left back wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134156,10,'S21.252A ','Open bite of left back wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134155,10,'S21.251S ','Open bite of right back wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134154,10,'S21.251D ','Open bite of right back wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134153,10,'S21.251A ','Open bite of right back wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134152,10,'S21.249S ','Puncture wound with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134151,10,'S21.249D ','Puncture wound with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134149,10,'S21.242S ','Puncture wound with foreign body of left back wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134150,10,'S21.249A ','Puncture wound with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134148,10,'S21.242D ','Puncture wound with foreign body of left back wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134147,10,'S21.242A ','Puncture wound with foreign body of left back wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134146,10,'S21.241S ','Puncture wound with foreign body of right back wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134145,10,'S21.241D ','Puncture wound with foreign body of right back wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134144,10,'S21.241A ','Puncture wound with foreign body of right back wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134143,10,'S21.239S ','Puncture wound without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134142,10,'S21.239D ','Puncture wound without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134141,10,'S21.239A ','Puncture wound without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134140,10,'S21.232S ','Puncture wound without foreign body of left back wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134139,10,'S21.232D ','Puncture wound without foreign body of left back wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134138,10,'S21.232A ','Puncture wound without foreign body of left back wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134137,10,'S21.231S ','Puncture wound without foreign body of right back wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134136,10,'S21.231D ','Puncture wound without foreign body of right back wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134135,10,'S21.231A ','Puncture wound without foreign body of right back wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134134,10,'S21.229S ','Laceration with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134133,10,'S21.229D ','Laceration with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134132,10,'S21.229A ','Laceration with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134130,10,'S21.222D ','Laceration with foreign body of left back wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134131,10,'S21.222S ','Laceration with foreign body of left back wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134129,10,'S21.222A ','Laceration with foreign body of left back wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134128,10,'S21.221S ','Laceration with foreign body of right back wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134127,10,'S21.221D ','Laceration with foreign body of right back wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134126,10,'S21.221A ','Laceration with foreign body of right back wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134125,10,'S21.219S ','Laceration without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134124,10,'S21.219D ','Laceration without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134123,10,'S21.219A ','Laceration without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134122,10,'S21.212S ','Laceration without foreign body of left back wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134121,10,'S21.212D ','Laceration without foreign body of left back wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134120,10,'S21.212A ','Laceration without foreign body of left back wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134119,10,'S21.211S ','Laceration without foreign body of right back wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134118,10,'S21.211D ','Laceration without foreign body of right back wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134116,10,'S21.209S ','Unspecified open wound of unspecified back wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134117,10,'S21.211A ','Laceration without foreign body of right back wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134115,10,'S21.209D ','Unspecified open wound of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134114,10,'S21.209A ','Unspecified open wound of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134113,10,'S21.202S ','Unspecified open wound of left back wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134112,10,'S21.202D ','Unspecified open wound of left back wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134110,10,'S21.201S ','Unspecified open wound of right back wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134111,10,'S21.202A ','Unspecified open wound of left back wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134109,10,'S21.201D ','Unspecified open wound of right back wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134108,10,'S21.201A ','Unspecified open wound of right back wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134107,10,'S21.159S ','Open bite of unspecified front wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134105,10,'S21.159A ','Open bite of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134106,10,'S21.159D ','Open bite of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134104,10,'S21.152S ','Open bite of left front wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134103,10,'S21.152D ','Open bite of left front wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134102,10,'S21.152A ','Open bite of left front wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134101,10,'S21.151S ','Open bite of right front wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134100,10,'S21.151D ','Open bite of right front wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134099,10,'S21.151A ','Open bite of right front wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134098,10,'S21.149S ','Puncture wound with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134097,10,'S21.149D ','Puncture wound with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134095,10,'S21.142S ','Puncture wound with foreign body of left front wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134096,10,'S21.149A ','Puncture wound with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134094,10,'S21.142D ','Puncture wound with foreign body of left front wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134093,10,'S21.142A ','Puncture wound with foreign body of left front wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134092,10,'S21.141S ','Puncture wound with foreign body of right front wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134091,10,'S21.141D ','Puncture wound with foreign body of right front wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134090,10,'S21.141A ','Puncture wound with foreign body of right front wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134089,10,'S21.139S ','Puncture wound without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134088,10,'S21.139D ','Puncture wound without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134087,10,'S21.139A ','Puncture wound without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134086,10,'S21.132S ','Puncture wound without foreign body of left front wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134085,10,'S21.132D ','Puncture wound without foreign body of left front wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134084,10,'S21.132A ','Puncture wound without foreign body of left front wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134083,10,'S21.131S ','Puncture wound without foreign body of right front wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134081,10,'S21.131A ','Puncture wound without foreign body of right front wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134082,10,'S21.131D ','Puncture wound without foreign body of right front wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134080,10,'S21.129S ','Laceration with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134079,10,'S21.129D ','Laceration with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134078,10,'S21.129A ','Laceration with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134077,10,'S21.122S ','Laceration with foreign body of left front wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134076,10,'S21.122D ','Laceration with foreign body of left front wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134075,10,'S21.122A ','Laceration with foreign body of left front wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134074,10,'S21.121S ','Laceration with foreign body of right front wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134073,10,'S21.121D ','Laceration with foreign body of right front wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134072,10,'S21.121A ','Laceration with foreign body of right front wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134071,10,'S21.119S ','Laceration without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134070,10,'S21.119D ','Laceration without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134069,10,'S21.119A ','Laceration without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134068,10,'S21.112S ','Laceration without foreign body of left front wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134067,10,'S21.112D ','Laceration without foreign body of left front wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134066,10,'S21.112A ','Laceration without foreign body of left front wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134065,10,'S21.111S ','Laceration without foreign body of right front wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134064,10,'S21.111D ','Laceration without foreign body of right front wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134062,10,'S21.109S ','Unspecified open wound of unspecified front wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134063,10,'S21.111A ','Laceration without foreign body of right front wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134061,10,'S21.109D ','Unspecified open wound of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134060,10,'S21.109A ','Unspecified open wound of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134059,10,'S21.102S ','Unspecified open wound of left front wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134058,10,'S21.102D ','Unspecified open wound of left front wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134057,10,'S21.102A ','Unspecified open wound of left front wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134055,10,'S21.101D ','Unspecified open wound of right front wall of thorax without penetration into thoracic cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(134056,10,'S21.101S ','Unspecified open wound of right front wall of thorax without penetration into thoracic cavity, sequela','Y','0000-00-00 00:00:00'),(134054,10,'S21.101A ','Unspecified open wound of right front wall of thorax without penetration into thoracic cavity, initial encounter','Y','0000-00-00 00:00:00'),(134052,10,'S21.059D ','Open bite of unspecified breast, subsequent encounter','Y','0000-00-00 00:00:00'),(134053,10,'S21.059S ','Open bite of unspecified breast, sequela','Y','0000-00-00 00:00:00'),(134050,10,'S21.052S ','Open bite of left breast, sequela','Y','0000-00-00 00:00:00'),(134051,10,'S21.059A ','Open bite of unspecified breast, initial encounter','Y','0000-00-00 00:00:00'),(134048,10,'S21.052A ','Open bite of left breast, initial encounter','Y','0000-00-00 00:00:00'),(134049,10,'S21.052D ','Open bite of left breast, subsequent encounter','Y','0000-00-00 00:00:00'),(134046,10,'S21.051D ','Open bite of right breast, subsequent encounter','Y','0000-00-00 00:00:00'),(134047,10,'S21.051S ','Open bite of right breast, sequela','Y','0000-00-00 00:00:00'),(134044,10,'S21.049S ','Puncture wound with foreign body of unspecified breast, sequela','Y','0000-00-00 00:00:00'),(134045,10,'S21.051A ','Open bite of right breast, initial encounter','Y','0000-00-00 00:00:00'),(134043,10,'S21.049D ','Puncture wound with foreign body of unspecified breast, subsequent encounter','Y','0000-00-00 00:00:00'),(134041,10,'S21.042S ','Puncture wound with foreign body of left breast, sequela','Y','0000-00-00 00:00:00'),(134042,10,'S21.049A ','Puncture wound with foreign body of unspecified breast, initial encounter','Y','0000-00-00 00:00:00'),(134039,10,'S21.042A ','Puncture wound with foreign body of left breast, initial encounter','Y','0000-00-00 00:00:00'),(134040,10,'S21.042D ','Puncture wound with foreign body of left breast, subsequent encounter','Y','0000-00-00 00:00:00'),(134038,10,'S21.041S ','Puncture wound with foreign body of right breast, sequela','Y','0000-00-00 00:00:00'),(134036,10,'S21.041A ','Puncture wound with foreign body of right breast, initial encounter','Y','0000-00-00 00:00:00'),(134037,10,'S21.041D ','Puncture wound with foreign body of right breast, subsequent encounter','Y','0000-00-00 00:00:00'),(134035,10,'S21.039S ','Puncture wound without foreign body of unspecified breast, sequela','Y','0000-00-00 00:00:00'),(134033,10,'S21.039A ','Puncture wound without foreign body of unspecified breast, initial encounter','Y','0000-00-00 00:00:00'),(134034,10,'S21.039D ','Puncture wound without foreign body of unspecified breast, subsequent encounter','Y','0000-00-00 00:00:00'),(134031,10,'S21.032D ','Puncture wound without foreign body of left breast, subsequent encounter','Y','0000-00-00 00:00:00'),(134032,10,'S21.032S ','Puncture wound without foreign body of left breast, sequela','Y','0000-00-00 00:00:00'),(134030,10,'S21.032A ','Puncture wound without foreign body of left breast, initial encounter','Y','0000-00-00 00:00:00'),(134028,10,'S21.031D ','Puncture wound without foreign body of right breast, subsequent encounter','Y','0000-00-00 00:00:00'),(134029,10,'S21.031S ','Puncture wound without foreign body of right breast, sequela','Y','0000-00-00 00:00:00'),(134026,10,'S21.029S ','Laceration with foreign body of unspecified breast, sequela','Y','0000-00-00 00:00:00'),(134027,10,'S21.031A ','Puncture wound without foreign body of right breast, initial encounter','Y','0000-00-00 00:00:00'),(134025,10,'S21.029D ','Laceration with foreign body of unspecified breast, subsequent encounter','Y','0000-00-00 00:00:00'),(134024,10,'S21.029A ','Laceration with foreign body of unspecified breast, initial encounter','Y','0000-00-00 00:00:00'),(134023,10,'S21.022S ','Laceration with foreign body of left breast, sequela','Y','0000-00-00 00:00:00'),(134021,10,'S21.022A ','Laceration with foreign body of left breast, initial encounter','Y','0000-00-00 00:00:00'),(134022,10,'S21.022D ','Laceration with foreign body of left breast, subsequent encounter','Y','0000-00-00 00:00:00'),(134019,10,'S21.021D ','Laceration with foreign body of right breast, subsequent encounter','Y','0000-00-00 00:00:00'),(134020,10,'S21.021S ','Laceration with foreign body of right breast, sequela','Y','0000-00-00 00:00:00'),(134018,10,'S21.021A ','Laceration with foreign body of right breast, initial encounter','Y','0000-00-00 00:00:00'),(134016,10,'S21.019D ','Laceration without foreign body of unspecified breast, subsequent encounter','Y','0000-00-00 00:00:00'),(134017,10,'S21.019S ','Laceration without foreign body of unspecified breast, sequela','Y','0000-00-00 00:00:00'),(134014,10,'S21.012S ','Laceration without foreign body of left breast, sequela','Y','0000-00-00 00:00:00'),(134015,10,'S21.019A ','Laceration without foreign body of unspecified breast, initial encounter','Y','0000-00-00 00:00:00'),(134013,10,'S21.012D ','Laceration without foreign body of left breast, subsequent encounter','Y','0000-00-00 00:00:00'),(134011,10,'S21.011S ','Laceration without foreign body of right breast, sequela','Y','0000-00-00 00:00:00'),(134012,10,'S21.012A ','Laceration without foreign body of left breast, initial encounter','Y','0000-00-00 00:00:00'),(134009,10,'S21.011A ','Laceration without foreign body of right breast, initial encounter','Y','0000-00-00 00:00:00'),(134010,10,'S21.011D ','Laceration without foreign body of right breast, subsequent encounter','Y','0000-00-00 00:00:00'),(134008,10,'S21.009S ','Unspecified open wound of unspecified breast, sequela','Y','0000-00-00 00:00:00'),(134006,10,'S21.009A ','Unspecified open wound of unspecified breast, initial encounter','Y','0000-00-00 00:00:00'),(134007,10,'S21.009D ','Unspecified open wound of unspecified breast, subsequent encounter','Y','0000-00-00 00:00:00'),(134004,10,'S21.002D ','Unspecified open wound of left breast, subsequent encounter','Y','0000-00-00 00:00:00'),(134005,10,'S21.002S ','Unspecified open wound of left breast, sequela','Y','0000-00-00 00:00:00'),(134002,10,'S21.001S ','Unspecified open wound of right breast, sequela','Y','0000-00-00 00:00:00'),(134003,10,'S21.002A ','Unspecified open wound of left breast, initial encounter','Y','0000-00-00 00:00:00'),(134000,10,'S21.001A ','Unspecified open wound of right breast, initial encounter','Y','0000-00-00 00:00:00'),(134001,10,'S21.001D ','Unspecified open wound of right breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133999,10,'S20.97XS ','Other superficial bite of unspecified parts of thorax, sequela','Y','0000-00-00 00:00:00'),(133998,10,'S20.97XD ','Other superficial bite of unspecified parts of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133996,10,'S20.96XS ','Insect bite (nonvenomous) of unspecified parts of thorax, sequela','Y','0000-00-00 00:00:00'),(133997,10,'S20.97XA ','Other superficial bite of unspecified parts of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133995,10,'S20.96XD ','Insect bite (nonvenomous) of unspecified parts of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133993,10,'S20.95XS ','Superficial foreign body of unspecified parts of thorax, sequela','Y','0000-00-00 00:00:00'),(133994,10,'S20.96XA ','Insect bite (nonvenomous) of unspecified parts of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133992,10,'S20.95XD ','Superficial foreign body of unspecified parts of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133990,10,'S20.94XS ','External constriction of unspecified parts of thorax, sequela','Y','0000-00-00 00:00:00'),(133991,10,'S20.95XA ','Superficial foreign body of unspecified parts of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133988,10,'S20.94XA ','External constriction of unspecified parts of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133989,10,'S20.94XD ','External constriction of unspecified parts of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133987,10,'S20.92XS ','Blister (nonthermal) of unspecified parts of thorax, sequela','Y','0000-00-00 00:00:00'),(133985,10,'S20.92XA ','Blister (nonthermal) of unspecified parts of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133986,10,'S20.92XD ','Blister (nonthermal) of unspecified parts of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133983,10,'S20.91XD ','Abrasion of unspecified parts of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133984,10,'S20.91XS ','Abrasion of unspecified parts of thorax, sequela','Y','0000-00-00 00:00:00'),(133981,10,'S20.90XS ','Unspecified superficial injury of unspecified parts of thorax, sequela','Y','0000-00-00 00:00:00'),(133982,10,'S20.91XA ','Abrasion of unspecified parts of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133980,10,'S20.90XD ','Unspecified superficial injury of unspecified parts of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133978,10,'S20.479S ','Other superficial bite of unspecified back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133979,10,'S20.90XA ','Unspecified superficial injury of unspecified parts of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133977,10,'S20.479D ','Other superficial bite of unspecified back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133975,10,'S20.472S ','Other superficial bite of left back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133976,10,'S20.479A ','Other superficial bite of unspecified back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133974,10,'S20.472D ','Other superficial bite of left back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133973,10,'S20.472A ','Other superficial bite of left back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133972,10,'S20.471S ','Other superficial bite of right back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133971,10,'S20.471D ','Other superficial bite of right back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133970,10,'S20.471A ','Other superficial bite of right back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133969,10,'S20.469S ','Insect bite (nonvenomous) of unspecified back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133968,10,'S20.469D ','Insect bite (nonvenomous) of unspecified back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133967,10,'S20.469A ','Insect bite (nonvenomous) of unspecified back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133966,10,'S20.462S ','Insect bite (nonvenomous) of left back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133965,10,'S20.462D ','Insect bite (nonvenomous) of left back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133964,10,'S20.462A ','Insect bite (nonvenomous) of left back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133963,10,'S20.461S ','Insect bite (nonvenomous) of right back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133962,10,'S20.461D ','Insect bite (nonvenomous) of right back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133961,10,'S20.461A ','Insect bite (nonvenomous) of right back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133960,10,'S20.459S ','Superficial foreign body of unspecified back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133959,10,'S20.459D ','Superficial foreign body of unspecified back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133958,10,'S20.459A ','Superficial foreign body of unspecified back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133957,10,'S20.452S ','Superficial foreign body of left back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133956,10,'S20.452D ','Superficial foreign body of left back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133955,10,'S20.452A ','Superficial foreign body of left back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133954,10,'S20.451S ','Superficial foreign body of right back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133953,10,'S20.451D ','Superficial foreign body of right back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133951,10,'S20.449S ','External constriction of unspecified back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133952,10,'S20.451A ','Superficial foreign body of right back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133950,10,'S20.449D ','External constriction of unspecified back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133949,10,'S20.449A ','External constriction of unspecified back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133948,10,'S20.442S ','External constriction of left back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133947,10,'S20.442D ','External constriction of left back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133946,10,'S20.442A ','External constriction of left back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133944,10,'S20.441D ','External constriction of right back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133945,10,'S20.441S ','External constriction of right back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133943,10,'S20.441A ','External constriction of right back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133942,10,'S20.429S ','Blister (nonthermal) of unspecified back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133941,10,'S20.429D ','Blister (nonthermal) of unspecified back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133940,10,'S20.429A ','Blister (nonthermal) of unspecified back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133939,10,'S20.422S ','Blister (nonthermal) of left back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133938,10,'S20.422D ','Blister (nonthermal) of left back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133937,10,'S20.422A ','Blister (nonthermal) of left back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133936,10,'S20.421S ','Blister (nonthermal) of right back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133934,10,'S20.421A ','Blister (nonthermal) of right back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133935,10,'S20.421D ','Blister (nonthermal) of right back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133933,10,'S20.419S ','Abrasion of unspecified back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133932,10,'S20.419D ','Abrasion of unspecified back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133930,10,'S20.412S ','Abrasion of left back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133931,10,'S20.419A ','Abrasion of unspecified back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133929,10,'S20.412D ','Abrasion of left back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133928,10,'S20.412A ','Abrasion of left back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133926,10,'S20.411D ','Abrasion of right back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133927,10,'S20.411S ','Abrasion of right back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133925,10,'S20.411A ','Abrasion of right back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133924,10,'S20.409S ','Unspecified superficial injuries of unspecified back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133923,10,'S20.409D ','Unspecified superficial injuries of unspecified back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133922,10,'S20.409A ','Unspecified superficial injuries of unspecified back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133921,10,'S20.402S ','Unspecified superficial injuries of left back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133920,10,'S20.402D ','Unspecified superficial injuries of left back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133919,10,'S20.402A ','Unspecified superficial injuries of left back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133918,10,'S20.401S ','Unspecified superficial injuries of right back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133916,10,'S20.401A ','Unspecified superficial injuries of right back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133917,10,'S20.401D ','Unspecified superficial injuries of right back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133915,10,'S20.379S ','Other superficial bite of unspecified front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133914,10,'S20.379D ','Other superficial bite of unspecified front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133913,10,'S20.379A ','Other superficial bite of unspecified front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133912,10,'S20.374S ','Other superficial bite of middle front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133911,10,'S20.374D ','Other superficial bite of middle front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133909,10,'S20.373S ','Other superficial bite of bilateral front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133910,10,'S20.374A ','Other superficial bite of middle front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133908,10,'S20.373D ','Other superficial bite of bilateral front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133907,10,'S20.373A ','Other superficial bite of bilateral front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133906,10,'S20.372S ','Other superficial bite of left front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133905,10,'S20.372D ','Other superficial bite of left front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133904,10,'S20.372A ','Other superficial bite of left front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133903,10,'S20.371S ','Other superficial bite of right front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133902,10,'S20.371D ','Other superficial bite of right front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133901,10,'S20.371A ','Other superficial bite of right front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133900,10,'S20.369S ','Insect bite (nonvenomous) of unspecified front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133899,10,'S20.369D ','Insect bite (nonvenomous) of unspecified front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133898,10,'S20.369A ','Insect bite (nonvenomous) of unspecified front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133897,10,'S20.364S ','Insect bite (nonvenomous) of middle front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133896,10,'S20.364D ','Insect bite (nonvenomous) of middle front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133895,10,'S20.364A ','Insect bite (nonvenomous) of middle front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133894,10,'S20.363S ','Insect bite (nonvenomous) of bilateral front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133893,10,'S20.363D ','Insect bite (nonvenomous) of bilateral front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133892,10,'S20.363A ','Insect bite (nonvenomous) of bilateral front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133891,10,'S20.362S ','Insect bite (nonvenomous) of left front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133890,10,'S20.362D ','Insect bite (nonvenomous) of left front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133889,10,'S20.362A ','Insect bite (nonvenomous) of left front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133888,10,'S20.361S ','Insect bite (nonvenomous) of right front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133887,10,'S20.361D ','Insect bite (nonvenomous) of right front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133886,10,'S20.361A ','Insect bite (nonvenomous) of right front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133885,10,'S20.359S ','Superficial foreign body of unspecified front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133884,10,'S20.359D ','Superficial foreign body of unspecified front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133883,10,'S20.359A ','Superficial foreign body of unspecified front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133882,10,'S20.354S ','Superficial foreign body of middle front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133881,10,'S20.354D ','Superficial foreign body of middle front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133880,10,'S20.354A ','Superficial foreign body of middle front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133879,10,'S20.353S ','Superficial foreign body of bilateral front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133878,10,'S20.353D ','Superficial foreign body of bilateral front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133877,10,'S20.353A ','Superficial foreign body of bilateral front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133876,10,'S20.352S ','Superficial foreign body of left front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133875,10,'S20.352D ','Superficial foreign body of left front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133874,10,'S20.352A ','Superficial foreign body of left front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133873,10,'S20.351S ','Superficial foreign body of right front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133872,10,'S20.351D ','Superficial foreign body of right front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133871,10,'S20.351A ','Superficial foreign body of right front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133870,10,'S20.349S ','External constriction of unspecified front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133869,10,'S20.349D ','External constriction of unspecified front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133867,10,'S20.344S ','External constriction of middle front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133868,10,'S20.349A ','External constriction of unspecified front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133866,10,'S20.344D ','External constriction of middle front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133865,10,'S20.344A ','External constriction of middle front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133864,10,'S20.343S ','External constriction of bilateral front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133863,10,'S20.343D ','External constriction of bilateral front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133862,10,'S20.343A ','External constriction of bilateral front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133861,10,'S20.342S ','External constriction of left front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133860,10,'S20.342D ','External constriction of left front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133859,10,'S20.342A ','External constriction of left front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133858,10,'S20.341S ','External constriction of right front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133857,10,'S20.341D ','External constriction of right front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133856,10,'S20.341A ','External constriction of right front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133855,10,'S20.329S ','Blister (nonthermal) of unspecified front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133853,10,'S20.329A ','Blister (nonthermal) of unspecified front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133854,10,'S20.329D ','Blister (nonthermal) of unspecified front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133852,10,'S20.324S ','Blister (nonthermal) of middle front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133851,10,'S20.324D ','Blister (nonthermal) of middle front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133850,10,'S20.324A ','Blister (nonthermal) of middle front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133849,10,'S20.323S ','Blister (nonthermal) of bilateral front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133848,10,'S20.323D ','Blister (nonthermal) of bilateral front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133846,10,'S20.322S ','Blister (nonthermal) of left front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133847,10,'S20.323A ','Blister (nonthermal) of bilateral front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133845,10,'S20.322D ','Blister (nonthermal) of left front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133844,10,'S20.322A ','Blister (nonthermal) of left front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133843,10,'S20.321S ','Blister (nonthermal) of right front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133842,10,'S20.321D ','Blister (nonthermal) of right front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133841,10,'S20.321A ','Blister (nonthermal) of right front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133840,10,'S20.319S ','Abrasion of unspecified front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133839,10,'S20.319D ','Abrasion of unspecified front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133837,10,'S20.314S ','Abrasion of middle front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133838,10,'S20.319A ','Abrasion of unspecified front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133836,10,'S20.314D ','Abrasion of middle front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133835,10,'S20.314A ','Abrasion of middle front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133834,10,'S20.313S ','Abrasion of bilateral front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133832,10,'S20.313A ','Abrasion of bilateral front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133833,10,'S20.313D ','Abrasion of bilateral front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133831,10,'S20.312S ','Abrasion of left front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133830,10,'S20.312D ','Abrasion of left front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133829,10,'S20.312A ','Abrasion of left front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133828,10,'S20.311S ','Abrasion of right front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133826,10,'S20.311A ','Abrasion of right front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133827,10,'S20.311D ','Abrasion of right front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133825,10,'S20.309S ','Unspecified superficial injuries of unspecified front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133824,10,'S20.309D ','Unspecified superficial injuries of unspecified front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133823,10,'S20.309A ','Unspecified superficial injuries of unspecified front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133822,10,'S20.304S ','Unspecified superficial injuries of middle front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133821,10,'S20.304D ','Unspecified superficial injuries of middle front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133820,10,'S20.304A ','Unspecified superficial injuries of middle front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133819,10,'S20.303S ','Unspecified superficial injuries of bilateral front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133818,10,'S20.303D ','Unspecified superficial injuries of bilateral front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133817,10,'S20.303A ','Unspecified superficial injuries of bilateral front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133816,10,'S20.302S ','Unspecified superficial injuries of left front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133815,10,'S20.302D ','Unspecified superficial injuries of left front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133814,10,'S20.302A ','Unspecified superficial injuries of left front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133813,10,'S20.301S ','Unspecified superficial injuries of right front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133812,10,'S20.301D ','Unspecified superficial injuries of right front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133811,10,'S20.301A ','Unspecified superficial injuries of right front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133810,10,'S20.229S ','Contusion of unspecified back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133809,10,'S20.229D ','Contusion of unspecified back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133808,10,'S20.229A ','Contusion of unspecified back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133807,10,'S20.224S ','Contusion of middle back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133806,10,'S20.224D ','Contusion of middle back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133805,10,'S20.224A ','Contusion of middle back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133804,10,'S20.223S ','Contusion of bilateral back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133803,10,'S20.223D ','Contusion of bilateral back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133802,10,'S20.223A ','Contusion of bilateral back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133801,10,'S20.222S ','Contusion of left back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133800,10,'S20.222D ','Contusion of left back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133799,10,'S20.222A ','Contusion of left back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133798,10,'S20.221S ','Contusion of right back wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133797,10,'S20.221D ','Contusion of right back wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133796,10,'S20.221A ','Contusion of right back wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133795,10,'S20.219S ','Contusion of unspecified front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133794,10,'S20.219D ','Contusion of unspecified front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133793,10,'S20.219A ','Contusion of unspecified front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133792,10,'S20.214S ','Contusion of middle front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133791,10,'S20.214D ','Contusion of middle front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133790,10,'S20.214A ','Contusion of middle front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133789,10,'S20.213S ','Contusion of bilateral front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133788,10,'S20.213D ','Contusion of bilateral front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133787,10,'S20.213A ','Contusion of bilateral front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133786,10,'S20.212S ','Contusion of left front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133785,10,'S20.212D ','Contusion of left front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133784,10,'S20.212A ','Contusion of left front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133783,10,'S20.211S ','Contusion of right front wall of thorax, sequela','Y','0000-00-00 00:00:00'),(133782,10,'S20.211D ','Contusion of right front wall of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(133781,10,'S20.211A ','Contusion of right front wall of thorax, initial encounter','Y','0000-00-00 00:00:00'),(133780,10,'S20.20XS ','Contusion of thorax, unspecified, sequela','Y','0000-00-00 00:00:00'),(133779,10,'S20.20XD ','Contusion of thorax, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(133778,10,'S20.20XA ','Contusion of thorax, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(133777,10,'S20.179S ','Other superficial bite of breast, unspecified breast, sequela','Y','0000-00-00 00:00:00'),(133776,10,'S20.179D ','Other superficial bite of breast, unspecified breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133775,10,'S20.179A ','Other superficial bite of breast, unspecified breast, initial encounter','Y','0000-00-00 00:00:00'),(133774,10,'S20.172S ','Other superficial bite of breast, left breast, sequela','Y','0000-00-00 00:00:00'),(133773,10,'S20.172D ','Other superficial bite of breast, left breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133772,10,'S20.172A ','Other superficial bite of breast, left breast, initial encounter','Y','0000-00-00 00:00:00'),(133771,10,'S20.171S ','Other superficial bite of breast, right breast, sequela','Y','0000-00-00 00:00:00'),(133770,10,'S20.171D ','Other superficial bite of breast, right breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133769,10,'S20.171A ','Other superficial bite of breast, right breast, initial encounter','Y','0000-00-00 00:00:00'),(133768,10,'S20.169S ','Insect bite (nonvenomous) of breast, unspecified breast, sequela','Y','0000-00-00 00:00:00'),(133767,10,'S20.169D ','Insect bite (nonvenomous) of breast, unspecified breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133766,10,'S20.169A ','Insect bite (nonvenomous) of breast, unspecified breast, initial encounter','Y','0000-00-00 00:00:00'),(133765,10,'S20.162S ','Insect bite (nonvenomous) of breast, left breast, sequela','Y','0000-00-00 00:00:00'),(133764,10,'S20.162D ','Insect bite (nonvenomous) of breast, left breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133763,10,'S20.162A ','Insect bite (nonvenomous) of breast, left breast, initial encounter','Y','0000-00-00 00:00:00'),(133762,10,'S20.161S ','Insect bite (nonvenomous) of breast, right breast, sequela','Y','0000-00-00 00:00:00'),(133761,10,'S20.161D ','Insect bite (nonvenomous) of breast, right breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133760,10,'S20.161A ','Insect bite (nonvenomous) of breast, right breast, initial encounter','Y','0000-00-00 00:00:00'),(133759,10,'S20.159S ','Superficial foreign body of breast, unspecified breast, sequela','Y','0000-00-00 00:00:00'),(133758,10,'S20.159D ','Superficial foreign body of breast, unspecified breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133757,10,'S20.159A ','Superficial foreign body of breast, unspecified breast, initial encounter','Y','0000-00-00 00:00:00'),(133756,10,'S20.152S ','Superficial foreign body of breast, left breast, sequela','Y','0000-00-00 00:00:00'),(133755,10,'S20.152D ','Superficial foreign body of breast, left breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133754,10,'S20.152A ','Superficial foreign body of breast, left breast, initial encounter','Y','0000-00-00 00:00:00'),(133753,10,'S20.151S ','Superficial foreign body of breast, right breast, sequela','Y','0000-00-00 00:00:00'),(133752,10,'S20.151D ','Superficial foreign body of breast, right breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133751,10,'S20.151A ','Superficial foreign body of breast, right breast, initial encounter','Y','0000-00-00 00:00:00'),(133750,10,'S20.149S ','External constriction of part of breast, unspecified breast, sequela','Y','0000-00-00 00:00:00'),(133749,10,'S20.149D ','External constriction of part of breast, unspecified breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133748,10,'S20.149A ','External constriction of part of breast, unspecified breast, initial encounter','Y','0000-00-00 00:00:00'),(133747,10,'S20.142S ','External constriction of part of breast, left breast, sequela','Y','0000-00-00 00:00:00'),(133746,10,'S20.142D ','External constriction of part of breast, left breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133745,10,'S20.142A ','External constriction of part of breast, left breast, initial encounter','Y','0000-00-00 00:00:00'),(133744,10,'S20.141S ','External constriction of part of breast, right breast, sequela','Y','0000-00-00 00:00:00'),(133743,10,'S20.141D ','External constriction of part of breast, right breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133742,10,'S20.141A ','External constriction of part of breast, right breast, initial encounter','Y','0000-00-00 00:00:00'),(133741,10,'S20.129S ','Blister (nonthermal) of breast, unspecified breast, sequela','Y','0000-00-00 00:00:00'),(133740,10,'S20.129D ','Blister (nonthermal) of breast, unspecified breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133739,10,'S20.129A ','Blister (nonthermal) of breast, unspecified breast, initial encounter','Y','0000-00-00 00:00:00'),(133738,10,'S20.122S ','Blister (nonthermal) of breast, left breast, sequela','Y','0000-00-00 00:00:00'),(133737,10,'S20.122D ','Blister (nonthermal) of breast, left breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133736,10,'S20.122A ','Blister (nonthermal) of breast, left breast, initial encounter','Y','0000-00-00 00:00:00'),(133735,10,'S20.121S ','Blister (nonthermal) of breast, right breast, sequela','Y','0000-00-00 00:00:00'),(133734,10,'S20.121D ','Blister (nonthermal) of breast, right breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133733,10,'S20.121A ','Blister (nonthermal) of breast, right breast, initial encounter','Y','0000-00-00 00:00:00'),(133732,10,'S20.119S ','Abrasion of breast, unspecified breast, sequela','Y','0000-00-00 00:00:00'),(133731,10,'S20.119D ','Abrasion of breast, unspecified breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133730,10,'S20.119A ','Abrasion of breast, unspecified breast, initial encounter','Y','0000-00-00 00:00:00'),(133729,10,'S20.112S ','Abrasion of breast, left breast, sequela','Y','0000-00-00 00:00:00'),(133728,10,'S20.112D ','Abrasion of breast, left breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133727,10,'S20.112A ','Abrasion of breast, left breast, initial encounter','Y','0000-00-00 00:00:00'),(133726,10,'S20.111S ','Abrasion of breast, right breast, sequela','Y','0000-00-00 00:00:00'),(133725,10,'S20.111D ','Abrasion of breast, right breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133724,10,'S20.111A ','Abrasion of breast, right breast, initial encounter','Y','0000-00-00 00:00:00'),(133723,10,'S20.109S ','Unspecified superficial injuries of breast, unspecified breast, sequela','Y','0000-00-00 00:00:00'),(133722,10,'S20.109D ','Unspecified superficial injuries of breast, unspecified breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133721,10,'S20.109A ','Unspecified superficial injuries of breast, unspecified breast, initial encounter','Y','0000-00-00 00:00:00'),(133720,10,'S20.102S ','Unspecified superficial injuries of breast, left breast, sequela','Y','0000-00-00 00:00:00'),(133719,10,'S20.102D ','Unspecified superficial injuries of breast, left breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133718,10,'S20.102A ','Unspecified superficial injuries of breast, left breast, initial encounter','Y','0000-00-00 00:00:00'),(133717,10,'S20.101S ','Unspecified superficial injuries of breast, right breast, sequela','Y','0000-00-00 00:00:00'),(133716,10,'S20.101D ','Unspecified superficial injuries of breast, right breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133715,10,'S20.101A ','Unspecified superficial injuries of breast, right breast, initial encounter','Y','0000-00-00 00:00:00'),(133714,10,'S20.02XS ','Contusion of left breast, sequela','Y','0000-00-00 00:00:00'),(133713,10,'S20.02XD ','Contusion of left breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133712,10,'S20.02XA ','Contusion of left breast, initial encounter','Y','0000-00-00 00:00:00'),(133711,10,'S20.01XS ','Contusion of right breast, sequela','Y','0000-00-00 00:00:00'),(133710,10,'S20.01XD ','Contusion of right breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133709,10,'S20.01XA ','Contusion of right breast, initial encounter','Y','0000-00-00 00:00:00'),(133708,10,'S20.00XS ','Contusion of breast, unspecified breast, sequela','Y','0000-00-00 00:00:00'),(133707,10,'S20.00XD ','Contusion of breast, unspecified breast, subsequent encounter','Y','0000-00-00 00:00:00'),(133705,10,'S19.9XXS ','Unspecified injury of neck, sequela','Y','0000-00-00 00:00:00'),(133706,10,'S20.00XA ','Contusion of breast, unspecified breast, initial encounter','Y','0000-00-00 00:00:00'),(133704,10,'S19.9XXD ','Unspecified injury of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(133703,10,'S19.9XXA ','Unspecified injury of neck, initial encounter','Y','0000-00-00 00:00:00'),(133702,10,'S19.89XS ','Other specified injuries of other specified part of neck, sequela','Y','0000-00-00 00:00:00'),(133701,10,'S19.89XD ','Other specified injuries of other specified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(133700,10,'S19.89XA ','Other specified injuries of other specified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(133699,10,'S19.85XS ','Other specified injuries of pharynx and cervical esophagus, sequela','Y','0000-00-00 00:00:00'),(133698,10,'S19.85XD ','Other specified injuries of pharynx and cervical esophagus, subsequent encounter','Y','0000-00-00 00:00:00'),(133697,10,'S19.85XA ','Other specified injuries of pharynx and cervical esophagus, initial encounter','Y','0000-00-00 00:00:00'),(133696,10,'S19.84XS ','Other specified injuries of thyroid gland, sequela','Y','0000-00-00 00:00:00'),(133695,10,'S19.84XD ','Other specified injuries of thyroid gland, subsequent encounter','Y','0000-00-00 00:00:00'),(133694,10,'S19.84XA ','Other specified injuries of thyroid gland, initial encounter','Y','0000-00-00 00:00:00'),(133693,10,'S19.83XS ','Other specified injuries of vocal cord, sequela','Y','0000-00-00 00:00:00'),(133692,10,'S19.83XD ','Other specified injuries of vocal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133691,10,'S19.83XA ','Other specified injuries of vocal cord, initial encounter','Y','0000-00-00 00:00:00'),(133690,10,'S19.82XS ','Other specified injuries of cervical trachea, sequela','Y','0000-00-00 00:00:00'),(133689,10,'S19.82XD ','Other specified injuries of cervical trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(133688,10,'S19.82XA ','Other specified injuries of cervical trachea, initial encounter','Y','0000-00-00 00:00:00'),(133687,10,'S19.81XS ','Other specified injuries of larynx, sequela','Y','0000-00-00 00:00:00'),(133686,10,'S19.81XD ','Other specified injuries of larynx, subsequent encounter','Y','0000-00-00 00:00:00'),(133685,10,'S19.81XA ','Other specified injuries of larynx, initial encounter','Y','0000-00-00 00:00:00'),(133684,10,'S19.80XS ','Other specified injuries of unspecified part of neck, sequela','Y','0000-00-00 00:00:00'),(133683,10,'S19.80XD ','Other specified injuries of unspecified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(133682,10,'S19.80XA ','Other specified injuries of unspecified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(133681,10,'S17.9XXS ','Crushing injury of neck, part unspecified, sequela','Y','0000-00-00 00:00:00'),(133680,10,'S17.9XXD ','Crushing injury of neck, part unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(133679,10,'S17.9XXA ','Crushing injury of neck, part unspecified, initial encounter','Y','0000-00-00 00:00:00'),(133678,10,'S17.8XXS ','Crushing injury of other specified parts of neck, sequela','Y','0000-00-00 00:00:00'),(133677,10,'S17.8XXD ','Crushing injury of other specified parts of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(133676,10,'S17.8XXA ','Crushing injury of other specified parts of neck, initial encounter','Y','0000-00-00 00:00:00'),(133675,10,'S17.0XXS ','Crushing injury of larynx and trachea, sequela','Y','0000-00-00 00:00:00'),(133674,10,'S17.0XXD ','Crushing injury of larynx and trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(133673,10,'S17.0XXA ','Crushing injury of larynx and trachea, initial encounter','Y','0000-00-00 00:00:00'),(133672,10,'S16.9XXS ','Unspecified injury of muscle, fascia and tendon at neck level, sequela','Y','0000-00-00 00:00:00'),(133671,10,'S16.9XXD ','Unspecified injury of muscle, fascia and tendon at neck level, subsequent encounter','Y','0000-00-00 00:00:00'),(133670,10,'S16.9XXA ','Unspecified injury of muscle, fascia and tendon at neck level, initial encounter','Y','0000-00-00 00:00:00'),(133669,10,'S16.8XXS ','Other specified injury of muscle, fascia and tendon at neck level, sequela','Y','0000-00-00 00:00:00'),(133668,10,'S16.8XXD ','Other specified injury of muscle, fascia and tendon at neck level, subsequent encounter','Y','0000-00-00 00:00:00'),(133667,10,'S16.8XXA ','Other specified injury of muscle, fascia and tendon at neck level, initial encounter','Y','0000-00-00 00:00:00'),(133666,10,'S16.2XXS ','Laceration of muscle, fascia and tendon at neck level, sequela','Y','0000-00-00 00:00:00'),(133665,10,'S16.2XXD ','Laceration of muscle, fascia and tendon at neck level, subsequent encounter','Y','0000-00-00 00:00:00'),(133664,10,'S16.2XXA ','Laceration of muscle, fascia and tendon at neck level, initial encounter','Y','0000-00-00 00:00:00'),(133663,10,'S16.1XXS ','Strain of muscle, fascia and tendon at neck level, sequela','Y','0000-00-00 00:00:00'),(133662,10,'S16.1XXD ','Strain of muscle, fascia and tendon at neck level, subsequent encounter','Y','0000-00-00 00:00:00'),(133661,10,'S16.1XXA ','Strain of muscle, fascia and tendon at neck level, initial encounter','Y','0000-00-00 00:00:00'),(133660,10,'S15.9XXS ','Injury of unspecified blood vessel at neck level, sequela','Y','0000-00-00 00:00:00'),(133659,10,'S15.9XXD ','Injury of unspecified blood vessel at neck level, subsequent encounter','Y','0000-00-00 00:00:00'),(133658,10,'S15.9XXA ','Injury of unspecified blood vessel at neck level, initial encounter','Y','0000-00-00 00:00:00'),(133657,10,'S15.8XXS ','Injury of other specified blood vessels at neck level, sequela','Y','0000-00-00 00:00:00'),(133656,10,'S15.8XXD ','Injury of other specified blood vessels at neck level, subsequent encounter','Y','0000-00-00 00:00:00'),(133655,10,'S15.8XXA ','Injury of other specified blood vessels at neck level, initial encounter','Y','0000-00-00 00:00:00'),(133654,10,'S15.399S ','Other specified injury of unspecified internal jugular vein, sequela','Y','0000-00-00 00:00:00'),(133653,10,'S15.399D ','Other specified injury of unspecified internal jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133652,10,'S15.399A ','Other specified injury of unspecified internal jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133651,10,'S15.392S ','Other specified injury of left internal jugular vein, sequela','Y','0000-00-00 00:00:00'),(133650,10,'S15.392D ','Other specified injury of left internal jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133649,10,'S15.392A ','Other specified injury of left internal jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133648,10,'S15.391S ','Other specified injury of right internal jugular vein, sequela','Y','0000-00-00 00:00:00'),(133647,10,'S15.391D ','Other specified injury of right internal jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133646,10,'S15.391A ','Other specified injury of right internal jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133645,10,'S15.329S ','Major laceration of unspecified internal jugular vein, sequela','Y','0000-00-00 00:00:00'),(133644,10,'S15.329D ','Major laceration of unspecified internal jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133643,10,'S15.329A ','Major laceration of unspecified internal jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133642,10,'S15.322S ','Major laceration of left internal jugular vein, sequela','Y','0000-00-00 00:00:00'),(133641,10,'S15.322D ','Major laceration of left internal jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133640,10,'S15.322A ','Major laceration of left internal jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133639,10,'S15.321S ','Major laceration of right internal jugular vein, sequela','Y','0000-00-00 00:00:00'),(133638,10,'S15.321D ','Major laceration of right internal jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133637,10,'S15.321A ','Major laceration of right internal jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133636,10,'S15.319S ','Minor laceration of unspecified internal jugular vein, sequela','Y','0000-00-00 00:00:00'),(133635,10,'S15.319D ','Minor laceration of unspecified internal jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133634,10,'S15.319A ','Minor laceration of unspecified internal jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133633,10,'S15.312S ','Minor laceration of left internal jugular vein, sequela','Y','0000-00-00 00:00:00'),(133632,10,'S15.312D ','Minor laceration of left internal jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133631,10,'S15.312A ','Minor laceration of left internal jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133630,10,'S15.311S ','Minor laceration of right internal jugular vein, sequela','Y','0000-00-00 00:00:00'),(133629,10,'S15.311D ','Minor laceration of right internal jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133628,10,'S15.311A ','Minor laceration of right internal jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133627,10,'S15.309S ','Unspecified injury of unspecified internal jugular vein, sequela','Y','0000-00-00 00:00:00'),(133626,10,'S15.309D ','Unspecified injury of unspecified internal jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133625,10,'S15.309A ','Unspecified injury of unspecified internal jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133624,10,'S15.302S ','Unspecified injury of left internal jugular vein, sequela','Y','0000-00-00 00:00:00'),(133623,10,'S15.302D ','Unspecified injury of left internal jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133622,10,'S15.302A ','Unspecified injury of left internal jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133621,10,'S15.301S ','Unspecified injury of right internal jugular vein, sequela','Y','0000-00-00 00:00:00'),(133620,10,'S15.301D ','Unspecified injury of right internal jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133619,10,'S15.301A ','Unspecified injury of right internal jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133618,10,'S15.299S ','Other specified injury of unspecified external jugular vein, sequela','Y','0000-00-00 00:00:00'),(133617,10,'S15.299D ','Other specified injury of unspecified external jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133616,10,'S15.299A ','Other specified injury of unspecified external jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133615,10,'S15.292S ','Other specified injury of left external jugular vein, sequela','Y','0000-00-00 00:00:00'),(133614,10,'S15.292D ','Other specified injury of left external jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133613,10,'S15.292A ','Other specified injury of left external jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133612,10,'S15.291S ','Other specified injury of right external jugular vein, sequela','Y','0000-00-00 00:00:00'),(133611,10,'S15.291D ','Other specified injury of right external jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133610,10,'S15.291A ','Other specified injury of right external jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133609,10,'S15.229S ','Major laceration of unspecified external jugular vein, sequela','Y','0000-00-00 00:00:00'),(133608,10,'S15.229D ','Major laceration of unspecified external jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133607,10,'S15.229A ','Major laceration of unspecified external jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133606,10,'S15.222S ','Major laceration of left external jugular vein, sequela','Y','0000-00-00 00:00:00'),(133605,10,'S15.222D ','Major laceration of left external jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133604,10,'S15.222A ','Major laceration of left external jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133603,10,'S15.221S ','Major laceration of right external jugular vein, sequela','Y','0000-00-00 00:00:00'),(133602,10,'S15.221D ','Major laceration of right external jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133601,10,'S15.221A ','Major laceration of right external jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133600,10,'S15.219S ','Minor laceration of unspecified external jugular vein, sequela','Y','0000-00-00 00:00:00'),(133599,10,'S15.219D ','Minor laceration of unspecified external jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133598,10,'S15.219A ','Minor laceration of unspecified external jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133597,10,'S15.212S ','Minor laceration of left external jugular vein, sequela','Y','0000-00-00 00:00:00'),(133596,10,'S15.212D ','Minor laceration of left external jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133595,10,'S15.212A ','Minor laceration of left external jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133594,10,'S15.211S ','Minor laceration of right external jugular vein, sequela','Y','0000-00-00 00:00:00'),(133593,10,'S15.211D ','Minor laceration of right external jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133592,10,'S15.211A ','Minor laceration of right external jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133591,10,'S15.209S ','Unspecified injury of unspecified external jugular vein, sequela','Y','0000-00-00 00:00:00'),(133590,10,'S15.209D ','Unspecified injury of unspecified external jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133589,10,'S15.209A ','Unspecified injury of unspecified external jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133588,10,'S15.202S ','Unspecified injury of left external jugular vein, sequela','Y','0000-00-00 00:00:00'),(133587,10,'S15.202D ','Unspecified injury of left external jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133585,10,'S15.201S ','Unspecified injury of right external jugular vein, sequela','Y','0000-00-00 00:00:00'),(133586,10,'S15.202A ','Unspecified injury of left external jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133584,10,'S15.201D ','Unspecified injury of right external jugular vein, subsequent encounter','Y','0000-00-00 00:00:00'),(133583,10,'S15.201A ','Unspecified injury of right external jugular vein, initial encounter','Y','0000-00-00 00:00:00'),(133582,10,'S15.199S ','Other specified injury of unspecified vertebral artery, sequela','Y','0000-00-00 00:00:00'),(133581,10,'S15.199D ','Other specified injury of unspecified vertebral artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133580,10,'S15.199A ','Other specified injury of unspecified vertebral artery, initial encounter','Y','0000-00-00 00:00:00'),(133579,10,'S15.192S ','Other specified injury of left vertebral artery, sequela','Y','0000-00-00 00:00:00'),(133578,10,'S15.192D ','Other specified injury of left vertebral artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133577,10,'S15.192A ','Other specified injury of left vertebral artery, initial encounter','Y','0000-00-00 00:00:00'),(133576,10,'S15.191S ','Other specified injury of right vertebral artery, sequela','Y','0000-00-00 00:00:00'),(133575,10,'S15.191D ','Other specified injury of right vertebral artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133574,10,'S15.191A ','Other specified injury of right vertebral artery, initial encounter','Y','0000-00-00 00:00:00'),(133573,10,'S15.129S ','Major laceration of unspecified vertebral artery, sequela','Y','0000-00-00 00:00:00'),(133572,10,'S15.129D ','Major laceration of unspecified vertebral artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133571,10,'S15.129A ','Major laceration of unspecified vertebral artery, initial encounter','Y','0000-00-00 00:00:00'),(133570,10,'S15.122S ','Major laceration of left vertebral artery, sequela','Y','0000-00-00 00:00:00'),(133569,10,'S15.122D ','Major laceration of left vertebral artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133568,10,'S15.122A ','Major laceration of left vertebral artery, initial encounter','Y','0000-00-00 00:00:00'),(133567,10,'S15.121S ','Major laceration of right vertebral artery, sequela','Y','0000-00-00 00:00:00'),(133566,10,'S15.121D ','Major laceration of right vertebral artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133565,10,'S15.121A ','Major laceration of right vertebral artery, initial encounter','Y','0000-00-00 00:00:00'),(133564,10,'S15.119S ','Minor laceration of unspecified vertebral artery, sequela','Y','0000-00-00 00:00:00'),(133563,10,'S15.119D ','Minor laceration of unspecified vertebral artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133562,10,'S15.119A ','Minor laceration of unspecified vertebral artery, initial encounter','Y','0000-00-00 00:00:00'),(133561,10,'S15.112S ','Minor laceration of left vertebral artery, sequela','Y','0000-00-00 00:00:00'),(133560,10,'S15.112D ','Minor laceration of left vertebral artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133559,10,'S15.112A ','Minor laceration of left vertebral artery, initial encounter','Y','0000-00-00 00:00:00'),(133558,10,'S15.111S ','Minor laceration of right vertebral artery, sequela','Y','0000-00-00 00:00:00'),(133556,10,'S15.111A ','Minor laceration of right vertebral artery, initial encounter','Y','0000-00-00 00:00:00'),(133557,10,'S15.111D ','Minor laceration of right vertebral artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133555,10,'S15.109S ','Unspecified injury of unspecified vertebral artery, sequela','Y','0000-00-00 00:00:00'),(133554,10,'S15.109D ','Unspecified injury of unspecified vertebral artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133553,10,'S15.109A ','Unspecified injury of unspecified vertebral artery, initial encounter','Y','0000-00-00 00:00:00'),(133552,10,'S15.102S ','Unspecified injury of left vertebral artery, sequela','Y','0000-00-00 00:00:00'),(133551,10,'S15.102D ','Unspecified injury of left vertebral artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133550,10,'S15.102A ','Unspecified injury of left vertebral artery, initial encounter','Y','0000-00-00 00:00:00'),(133549,10,'S15.101S ','Unspecified injury of right vertebral artery, sequela','Y','0000-00-00 00:00:00'),(133548,10,'S15.101D ','Unspecified injury of right vertebral artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133547,10,'S15.101A ','Unspecified injury of right vertebral artery, initial encounter','Y','0000-00-00 00:00:00'),(133546,10,'S15.099S ','Other specified injury of unspecified carotid artery, sequela','Y','0000-00-00 00:00:00'),(133545,10,'S15.099D ','Other specified injury of unspecified carotid artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133544,10,'S15.099A ','Other specified injury of unspecified carotid artery, initial encounter','Y','0000-00-00 00:00:00'),(133543,10,'S15.092S ','Other specified injury of left carotid artery, sequela','Y','0000-00-00 00:00:00'),(133542,10,'S15.092D ','Other specified injury of left carotid artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133541,10,'S15.092A ','Other specified injury of left carotid artery, initial encounter','Y','0000-00-00 00:00:00'),(133540,10,'S15.091S ','Other specified injury of right carotid artery, sequela','Y','0000-00-00 00:00:00'),(133539,10,'S15.091D ','Other specified injury of right carotid artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133538,10,'S15.091A ','Other specified injury of right carotid artery, initial encounter','Y','0000-00-00 00:00:00'),(133537,10,'S15.029S ','Major laceration of unspecified carotid artery, sequela','Y','0000-00-00 00:00:00'),(133536,10,'S15.029D ','Major laceration of unspecified carotid artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133535,10,'S15.029A ','Major laceration of unspecified carotid artery, initial encounter','Y','0000-00-00 00:00:00'),(133534,10,'S15.022S ','Major laceration of left carotid artery, sequela','Y','0000-00-00 00:00:00'),(133533,10,'S15.022D ','Major laceration of left carotid artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133532,10,'S15.022A ','Major laceration of left carotid artery, initial encounter','Y','0000-00-00 00:00:00'),(133531,10,'S15.021S ','Major laceration of right carotid artery, sequela','Y','0000-00-00 00:00:00'),(133530,10,'S15.021D ','Major laceration of right carotid artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133528,10,'S15.019S ','Minor laceration of unspecified carotid artery, sequela','Y','0000-00-00 00:00:00'),(133529,10,'S15.021A ','Major laceration of right carotid artery, initial encounter','Y','0000-00-00 00:00:00'),(133527,10,'S15.019D ','Minor laceration of unspecified carotid artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133526,10,'S15.019A ','Minor laceration of unspecified carotid artery, initial encounter','Y','0000-00-00 00:00:00'),(133525,10,'S15.012S ','Minor laceration of left carotid artery, sequela','Y','0000-00-00 00:00:00'),(133524,10,'S15.012D ','Minor laceration of left carotid artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133523,10,'S15.012A ','Minor laceration of left carotid artery, initial encounter','Y','0000-00-00 00:00:00'),(133522,10,'S15.011S ','Minor laceration of right carotid artery, sequela','Y','0000-00-00 00:00:00'),(133521,10,'S15.011D ','Minor laceration of right carotid artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133520,10,'S15.011A ','Minor laceration of right carotid artery, initial encounter','Y','0000-00-00 00:00:00'),(133519,10,'S15.009S ','Unspecified injury of unspecified carotid artery, sequela','Y','0000-00-00 00:00:00'),(133518,10,'S15.009D ','Unspecified injury of unspecified carotid artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133517,10,'S15.009A ','Unspecified injury of unspecified carotid artery, initial encounter','Y','0000-00-00 00:00:00'),(133516,10,'S15.002S ','Unspecified injury of left carotid artery, sequela','Y','0000-00-00 00:00:00'),(133515,10,'S15.002D ','Unspecified injury of left carotid artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133514,10,'S15.002A ','Unspecified injury of left carotid artery, initial encounter','Y','0000-00-00 00:00:00'),(133513,10,'S15.001S ','Unspecified injury of right carotid artery, sequela','Y','0000-00-00 00:00:00'),(133512,10,'S15.001D ','Unspecified injury of right carotid artery, subsequent encounter','Y','0000-00-00 00:00:00'),(133511,10,'S15.001A ','Unspecified injury of right carotid artery, initial encounter','Y','0000-00-00 00:00:00'),(133510,10,'S14.9XXS ','Injury of unspecified nerves of neck, sequela','Y','0000-00-00 00:00:00'),(133509,10,'S14.9XXD ','Injury of unspecified nerves of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(133508,10,'S14.9XXA ','Injury of unspecified nerves of neck, initial encounter','Y','0000-00-00 00:00:00'),(133507,10,'S14.8XXS ','Injury of other specified nerves of neck, sequela','Y','0000-00-00 00:00:00'),(133506,10,'S14.8XXD ','Injury of other specified nerves of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(133505,10,'S14.8XXA ','Injury of other specified nerves of neck, initial encounter','Y','0000-00-00 00:00:00'),(133504,10,'S14.5XXS ','Injury of cervical sympathetic nerves, sequela','Y','0000-00-00 00:00:00'),(133503,10,'S14.5XXD ','Injury of cervical sympathetic nerves, subsequent encounter','Y','0000-00-00 00:00:00'),(133502,10,'S14.5XXA ','Injury of cervical sympathetic nerves, initial encounter','Y','0000-00-00 00:00:00'),(133501,10,'S14.4XXS ','Injury of peripheral nerves of neck, sequela','Y','0000-00-00 00:00:00'),(133500,10,'S14.4XXD ','Injury of peripheral nerves of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(133499,10,'S14.4XXA ','Injury of peripheral nerves of neck, initial encounter','Y','0000-00-00 00:00:00'),(133498,10,'S14.3XXS ','Injury of brachial plexus, sequela','Y','0000-00-00 00:00:00'),(133497,10,'S14.3XXD ','Injury of brachial plexus, subsequent encounter','Y','0000-00-00 00:00:00'),(133496,10,'S14.3XXA ','Injury of brachial plexus, initial encounter','Y','0000-00-00 00:00:00'),(133495,10,'S14.2XXS ','Injury of nerve root of cervical spine, sequela','Y','0000-00-00 00:00:00'),(133494,10,'S14.2XXD ','Injury of nerve root of cervical spine, subsequent encounter','Y','0000-00-00 00:00:00'),(133493,10,'S14.2XXA ','Injury of nerve root of cervical spine, initial encounter','Y','0000-00-00 00:00:00'),(133492,10,'S14.159S ','Other incomplete lesion at unspecified level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133491,10,'S14.159D ','Other incomplete lesion at unspecified level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133490,10,'S14.159A ','Other incomplete lesion at unspecified level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133489,10,'S14.158S ','Other incomplete lesion at C8 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133488,10,'S14.158D ','Other incomplete lesion at C8 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133487,10,'S14.158A ','Other incomplete lesion at C8 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133486,10,'S14.157S ','Other incomplete lesion at C7 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133485,10,'S14.157D ','Other incomplete lesion at C7 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133484,10,'S14.157A ','Other incomplete lesion at C7 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133483,10,'S14.156S ','Other incomplete lesion at C6 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133482,10,'S14.156D ','Other incomplete lesion at C6 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133481,10,'S14.156A ','Other incomplete lesion at C6 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133480,10,'S14.155S ','Other incomplete lesion at C5 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133479,10,'S14.155D ','Other incomplete lesion at C5 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133478,10,'S14.155A ','Other incomplete lesion at C5 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133477,10,'S14.154S ','Other incomplete lesion at C4 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133476,10,'S14.154D ','Other incomplete lesion at C4 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133475,10,'S14.154A ','Other incomplete lesion at C4 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133474,10,'S14.153S ','Other incomplete lesion at C3 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133473,10,'S14.153D ','Other incomplete lesion at C3 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133472,10,'S14.153A ','Other incomplete lesion at C3 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133471,10,'S14.152S ','Other incomplete lesion at C2 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133470,10,'S14.152D ','Other incomplete lesion at C2 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133469,10,'S14.152A ','Other incomplete lesion at C2 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133468,10,'S14.151S ','Other incomplete lesion at C1 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133467,10,'S14.151D ','Other incomplete lesion at C1 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133466,10,'S14.151A ','Other incomplete lesion at C1 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133465,10,'S14.149S ','Brown-Sequard syndrome at unspecified level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133464,10,'S14.149D ','Brown-Sequard syndrome at unspecified level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133463,10,'S14.149A ','Brown-Sequard syndrome at unspecified level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133462,10,'S14.148S ','Brown-Sequard syndrome at C8 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133461,10,'S14.148D ','Brown-Sequard syndrome at C8 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133460,10,'S14.148A ','Brown-Sequard syndrome at C8 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133459,10,'S14.147S ','Brown-Sequard syndrome at C7 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133458,10,'S14.147D ','Brown-Sequard syndrome at C7 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133457,10,'S14.147A ','Brown-Sequard syndrome at C7 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133456,10,'S14.146S ','Brown-Sequard syndrome at C6 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133455,10,'S14.146D ','Brown-Sequard syndrome at C6 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133454,10,'S14.146A ','Brown-Sequard syndrome at C6 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133453,10,'S14.145S ','Brown-Sequard syndrome at C5 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133452,10,'S14.145D ','Brown-Sequard syndrome at C5 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133451,10,'S14.145A ','Brown-Sequard syndrome at C5 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133450,10,'S14.144S ','Brown-Sequard syndrome at C4 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133449,10,'S14.144D ','Brown-Sequard syndrome at C4 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133448,10,'S14.144A ','Brown-Sequard syndrome at C4 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133447,10,'S14.143S ','Brown-Sequard syndrome at C3 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133446,10,'S14.143D ','Brown-Sequard syndrome at C3 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133445,10,'S14.143A ','Brown-Sequard syndrome at C3 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133444,10,'S14.142S ','Brown-Sequard syndrome at C2 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133443,10,'S14.142D ','Brown-Sequard syndrome at C2 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133442,10,'S14.142A ','Brown-Sequard syndrome at C2 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133441,10,'S14.141S ','Brown-Sequard syndrome at C1 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133440,10,'S14.141D ','Brown-Sequard syndrome at C1 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133439,10,'S14.141A ','Brown-Sequard syndrome at C1 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133438,10,'S14.139S ','Anterior cord syndrome at unspecified level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133437,10,'S14.139D ','Anterior cord syndrome at unspecified level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133436,10,'S14.139A ','Anterior cord syndrome at unspecified level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133435,10,'S14.138S ','Anterior cord syndrome at C8 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133434,10,'S14.138D ','Anterior cord syndrome at C8 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133433,10,'S14.138A ','Anterior cord syndrome at C8 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133432,10,'S14.137S ','Anterior cord syndrome at C7 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133431,10,'S14.137D ','Anterior cord syndrome at C7 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133430,10,'S14.137A ','Anterior cord syndrome at C7 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133429,10,'S14.136S ','Anterior cord syndrome at C6 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133427,10,'S14.136A ','Anterior cord syndrome at C6 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133428,10,'S14.136D ','Anterior cord syndrome at C6 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133426,10,'S14.135S ','Anterior cord syndrome at C5 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133425,10,'S14.135D ','Anterior cord syndrome at C5 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133424,10,'S14.135A ','Anterior cord syndrome at C5 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133422,10,'S14.134D ','Anterior cord syndrome at C4 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133423,10,'S14.134S ','Anterior cord syndrome at C4 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133421,10,'S14.134A ','Anterior cord syndrome at C4 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133420,10,'S14.133S ','Anterior cord syndrome at C3 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133419,10,'S14.133D ','Anterior cord syndrome at C3 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133418,10,'S14.133A ','Anterior cord syndrome at C3 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133417,10,'S14.132S ','Anterior cord syndrome at C2 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133416,10,'S14.132D ','Anterior cord syndrome at C2 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133414,10,'S14.131S ','Anterior cord syndrome at C1 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133415,10,'S14.132A ','Anterior cord syndrome at C2 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133413,10,'S14.131D ','Anterior cord syndrome at C1 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133412,10,'S14.131A ','Anterior cord syndrome at C1 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133411,10,'S14.129S ','Central cord syndrome at unspecified level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133410,10,'S14.129D ','Central cord syndrome at unspecified level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133409,10,'S14.129A ','Central cord syndrome at unspecified level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133408,10,'S14.128S ','Central cord syndrome at C8 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133407,10,'S14.128D ','Central cord syndrome at C8 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133406,10,'S14.128A ','Central cord syndrome at C8 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133405,10,'S14.127S ','Central cord syndrome at C7 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133403,10,'S14.127A ','Central cord syndrome at C7 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133404,10,'S14.127D ','Central cord syndrome at C7 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133402,10,'S14.126S ','Central cord syndrome at C6 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133401,10,'S14.126D ','Central cord syndrome at C6 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133400,10,'S14.126A ','Central cord syndrome at C6 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133399,10,'S14.125S ','Central cord syndrome at C5 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133397,10,'S14.125A ','Central cord syndrome at C5 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133398,10,'S14.125D ','Central cord syndrome at C5 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133396,10,'S14.124S ','Central cord syndrome at C4 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133395,10,'S14.124D ','Central cord syndrome at C4 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133394,10,'S14.124A ','Central cord syndrome at C4 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133392,10,'S14.123D ','Central cord syndrome at C3 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133393,10,'S14.123S ','Central cord syndrome at C3 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133391,10,'S14.123A ','Central cord syndrome at C3 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133390,10,'S14.122S ','Central cord syndrome at C2 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133389,10,'S14.122D ','Central cord syndrome at C2 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133388,10,'S14.122A ','Central cord syndrome at C2 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133387,10,'S14.121S ','Central cord syndrome at C1 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133386,10,'S14.121D ','Central cord syndrome at C1 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133385,10,'S14.121A ','Central cord syndrome at C1 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133384,10,'S14.119S ','Complete lesion at unspecified level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133383,10,'S14.119D ','Complete lesion at unspecified level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133381,10,'S14.118S ','Complete lesion at C8 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133382,10,'S14.119A ','Complete lesion at unspecified level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133380,10,'S14.118D ','Complete lesion at C8 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133379,10,'S14.118A ','Complete lesion at C8 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133378,10,'S14.117S ','Complete lesion at C7 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133377,10,'S14.117D ','Complete lesion at C7 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133376,10,'S14.117A ','Complete lesion at C7 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133375,10,'S14.116S ','Complete lesion at C6 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133374,10,'S14.116D ','Complete lesion at C6 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133373,10,'S14.116A ','Complete lesion at C6 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133372,10,'S14.115S ','Complete lesion at C5 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133371,10,'S14.115D ','Complete lesion at C5 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133370,10,'S14.115A ','Complete lesion at C5 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133369,10,'S14.114S ','Complete lesion at C4 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133368,10,'S14.114D ','Complete lesion at C4 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133367,10,'S14.114A ','Complete lesion at C4 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133366,10,'S14.113S ','Complete lesion at C3 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133365,10,'S14.113D ','Complete lesion at C3 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133364,10,'S14.113A ','Complete lesion at C3 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133363,10,'S14.112S ','Complete lesion at C2 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133362,10,'S14.112D ','Complete lesion at C2 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133361,10,'S14.112A ','Complete lesion at C2 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133360,10,'S14.111S ','Complete lesion at C1 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133359,10,'S14.111D ','Complete lesion at C1 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133358,10,'S14.111A ','Complete lesion at C1 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133357,10,'S14.109S ','Unspecified injury at unspecified level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133356,10,'S14.109D ','Unspecified injury at unspecified level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133355,10,'S14.109A ','Unspecified injury at unspecified level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133354,10,'S14.108S ','Unspecified injury at C8 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133353,10,'S14.108D ','Unspecified injury at C8 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133352,10,'S14.108A ','Unspecified injury at C8 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133351,10,'S14.107S ','Unspecified injury at C7 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133350,10,'S14.107D ','Unspecified injury at C7 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133349,10,'S14.107A ','Unspecified injury at C7 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133348,10,'S14.106S ','Unspecified injury at C6 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133347,10,'S14.106D ','Unspecified injury at C6 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133346,10,'S14.106A ','Unspecified injury at C6 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133345,10,'S14.105S ','Unspecified injury at C5 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133344,10,'S14.105D ','Unspecified injury at C5 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133343,10,'S14.105A ','Unspecified injury at C5 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133342,10,'S14.104S ','Unspecified injury at C4 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133341,10,'S14.104D ','Unspecified injury at C4 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133340,10,'S14.104A ','Unspecified injury at C4 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133339,10,'S14.103S ','Unspecified injury at C3 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133338,10,'S14.103D ','Unspecified injury at C3 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133337,10,'S14.103A ','Unspecified injury at C3 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133336,10,'S14.102S ','Unspecified injury at C2 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133335,10,'S14.102D ','Unspecified injury at C2 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133334,10,'S14.102A ','Unspecified injury at C2 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133333,10,'S14.101S ','Unspecified injury at C1 level of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133332,10,'S14.101D ','Unspecified injury at C1 level of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133331,10,'S14.101A ','Unspecified injury at C1 level of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133330,10,'S14.0XXS ','Concussion and edema of cervical spinal cord, sequela','Y','0000-00-00 00:00:00'),(133329,10,'S14.0XXD ','Concussion and edema of cervical spinal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(133328,10,'S14.0XXA ','Concussion and edema of cervical spinal cord, initial encounter','Y','0000-00-00 00:00:00'),(133327,10,'S13.9XXS ','Sprain of joints and ligaments of unspecified parts of neck, sequela','Y','0000-00-00 00:00:00'),(133326,10,'S13.9XXD ','Sprain of joints and ligaments of unspecified parts of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(133325,10,'S13.9XXA ','Sprain of joints and ligaments of unspecified parts of neck, initial encounter','Y','0000-00-00 00:00:00'),(133324,10,'S13.8XXS ','Sprain of joints and ligaments of other parts of neck, sequela','Y','0000-00-00 00:00:00'),(133323,10,'S13.8XXD ','Sprain of joints and ligaments of other parts of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(133322,10,'S13.8XXA ','Sprain of joints and ligaments of other parts of neck, initial encounter','Y','0000-00-00 00:00:00'),(133320,10,'S13.5XXD ','Sprain of thyroid region, subsequent encounter','Y','0000-00-00 00:00:00'),(133321,10,'S13.5XXS ','Sprain of thyroid region, sequela','Y','0000-00-00 00:00:00'),(133319,10,'S13.5XXA ','Sprain of thyroid region, initial encounter','Y','0000-00-00 00:00:00'),(133318,10,'S13.4XXS ','Sprain of ligaments of cervical spine, sequela','Y','0000-00-00 00:00:00'),(133316,10,'S13.4XXA ','Sprain of ligaments of cervical spine, initial encounter','Y','0000-00-00 00:00:00'),(133317,10,'S13.4XXD ','Sprain of ligaments of cervical spine, subsequent encounter','Y','0000-00-00 00:00:00'),(133315,10,'S13.29XS ','Dislocation of other parts of neck, sequela','Y','0000-00-00 00:00:00'),(133314,10,'S13.29XD ','Dislocation of other parts of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(133313,10,'S13.29XA ','Dislocation of other parts of neck, initial encounter','Y','0000-00-00 00:00:00'),(133312,10,'S13.20XS ','Dislocation of unspecified parts of neck, sequela','Y','0000-00-00 00:00:00'),(133311,10,'S13.20XD ','Dislocation of unspecified parts of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(133310,10,'S13.20XA ','Dislocation of unspecified parts of neck, initial encounter','Y','0000-00-00 00:00:00'),(133309,10,'S13.181S ','Dislocation of C7/T1 cervical vertebrae, sequela','Y','0000-00-00 00:00:00'),(133308,10,'S13.181D ','Dislocation of C7/T1 cervical vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(133307,10,'S13.181A ','Dislocation of C7/T1 cervical vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(133306,10,'S13.180S ','Subluxation of C7/T1 cervical vertebrae, sequela','Y','0000-00-00 00:00:00'),(133305,10,'S13.180D ','Subluxation of C7/T1 cervical vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(133304,10,'S13.180A ','Subluxation of C7/T1 cervical vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(133303,10,'S13.171S ','Dislocation of C6/C7 cervical vertebrae, sequela','Y','0000-00-00 00:00:00'),(133302,10,'S13.171D ','Dislocation of C6/C7 cervical vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(133301,10,'S13.171A ','Dislocation of C6/C7 cervical vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(133300,10,'S13.170S ','Subluxation of C6/C7 cervical vertebrae, sequela','Y','0000-00-00 00:00:00'),(133299,10,'S13.170D ','Subluxation of C6/C7 cervical vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(133298,10,'S13.170A ','Subluxation of C6/C7 cervical vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(133297,10,'S13.161S ','Dislocation of C5/C6 cervical vertebrae, sequela','Y','0000-00-00 00:00:00'),(133296,10,'S13.161D ','Dislocation of C5/C6 cervical vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(133295,10,'S13.161A ','Dislocation of C5/C6 cervical vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(133294,10,'S13.160S ','Subluxation of C5/C6 cervical vertebrae, sequela','Y','0000-00-00 00:00:00'),(133293,10,'S13.160D ','Subluxation of C5/C6 cervical vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(133292,10,'S13.160A ','Subluxation of C5/C6 cervical vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(133291,10,'S13.151S ','Dislocation of C4/C5 cervical vertebrae, sequela','Y','0000-00-00 00:00:00'),(133290,10,'S13.151D ','Dislocation of C4/C5 cervical vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(133289,10,'S13.151A ','Dislocation of C4/C5 cervical vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(133288,10,'S13.150S ','Subluxation of C4/C5 cervical vertebrae, sequela','Y','0000-00-00 00:00:00'),(133287,10,'S13.150D ','Subluxation of C4/C5 cervical vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(133286,10,'S13.150A ','Subluxation of C4/C5 cervical vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(133285,10,'S13.141S ','Dislocation of C3/C4 cervical vertebrae, sequela','Y','0000-00-00 00:00:00'),(133284,10,'S13.141D ','Dislocation of C3/C4 cervical vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(133283,10,'S13.141A ','Dislocation of C3/C4 cervical vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(133282,10,'S13.140S ','Subluxation of C3/C4 cervical vertebrae, sequela','Y','0000-00-00 00:00:00'),(133281,10,'S13.140D ','Subluxation of C3/C4 cervical vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(133280,10,'S13.140A ','Subluxation of C3/C4 cervical vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(133279,10,'S13.131S ','Dislocation of C2/C3 cervical vertebrae, sequela','Y','0000-00-00 00:00:00'),(133278,10,'S13.131D ','Dislocation of C2/C3 cervical vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(133277,10,'S13.131A ','Dislocation of C2/C3 cervical vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(133276,10,'S13.130S ','Subluxation of C2/C3 cervical vertebrae, sequela','Y','0000-00-00 00:00:00'),(133275,10,'S13.130D ','Subluxation of C2/C3 cervical vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(133274,10,'S13.130A ','Subluxation of C2/C3 cervical vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(133273,10,'S13.121S ','Dislocation of C1/C2 cervical vertebrae, sequela','Y','0000-00-00 00:00:00'),(133272,10,'S13.121D ','Dislocation of C1/C2 cervical vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(133271,10,'S13.121A ','Dislocation of C1/C2 cervical vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(133270,10,'S13.120S ','Subluxation of C1/C2 cervical vertebrae, sequela','Y','0000-00-00 00:00:00'),(133269,10,'S13.120D ','Subluxation of C1/C2 cervical vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(133268,10,'S13.120A ','Subluxation of C1/C2 cervical vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(133267,10,'S13.111S ','Dislocation of C0/C1 cervical vertebrae, sequela','Y','0000-00-00 00:00:00'),(133266,10,'S13.111D ','Dislocation of C0/C1 cervical vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(133265,10,'S13.111A ','Dislocation of C0/C1 cervical vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(133264,10,'S13.110S ','Subluxation of C0/C1 cervical vertebrae, sequela','Y','0000-00-00 00:00:00'),(133263,10,'S13.110D ','Subluxation of C0/C1 cervical vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(133262,10,'S13.110A ','Subluxation of C0/C1 cervical vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(133261,10,'S13.101S ','Dislocation of unspecified cervical vertebrae, sequela','Y','0000-00-00 00:00:00'),(133260,10,'S13.101D ','Dislocation of unspecified cervical vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(133259,10,'S13.101A ','Dislocation of unspecified cervical vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(133258,10,'S13.100S ','Subluxation of unspecified cervical vertebrae, sequela','Y','0000-00-00 00:00:00'),(133257,10,'S13.100D ','Subluxation of unspecified cervical vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(133256,10,'S13.100A ','Subluxation of unspecified cervical vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(133255,10,'S13.0XXS ','Traumatic rupture of cervical intervertebral disc, sequela','Y','0000-00-00 00:00:00'),(133254,10,'S13.0XXD ','Traumatic rupture of cervical intervertebral disc, subsequent encounter','Y','0000-00-00 00:00:00'),(133252,10,'S12.9XXS ','Fracture of neck, unspecified, sequela','Y','0000-00-00 00:00:00'),(133253,10,'S13.0XXA ','Traumatic rupture of cervical intervertebral disc, initial encounter','Y','0000-00-00 00:00:00'),(133251,10,'S12.9XXD ','Fracture of neck, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(133250,10,'S12.9XXA ','Fracture of neck, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(133249,10,'S12.8XXS ','Fracture of other parts of neck, sequela','Y','0000-00-00 00:00:00'),(133248,10,'S12.8XXD ','Fracture of other parts of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(133247,10,'S12.8XXA ','Fracture of other parts of neck, initial encounter','Y','0000-00-00 00:00:00'),(133246,10,'S12.691S ','Other nondisplaced fracture of seventh cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133245,10,'S12.691K ','Other nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133244,10,'S12.691G ','Other nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133243,10,'S12.691D ','Other nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133242,10,'S12.691B ','Other nondisplaced fracture of seventh cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133241,10,'S12.691A ','Other nondisplaced fracture of seventh cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133240,10,'S12.690S ','Other displaced fracture of seventh cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133239,10,'S12.690K ','Other displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133238,10,'S12.690G ','Other displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133237,10,'S12.690D ','Other displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133236,10,'S12.690B ','Other displaced fracture of seventh cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133235,10,'S12.690A ','Other displaced fracture of seventh cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133234,10,'S12.651S ','Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133233,10,'S12.651K ','Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133232,10,'S12.651G ','Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133231,10,'S12.651D ','Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133230,10,'S12.651B ','Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133229,10,'S12.651A ','Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133228,10,'S12.650S ','Other traumatic displaced spondylolisthesis of seventh cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133227,10,'S12.650K ','Other traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133226,10,'S12.650G ','Other traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133225,10,'S12.650D ','Other traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133224,10,'S12.650B ','Other traumatic displaced spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133223,10,'S12.650A ','Other traumatic displaced spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133222,10,'S12.64XS ','Type III traumatic spondylolisthesis of seventh cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133221,10,'S12.64XK ','Type III traumatic spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133220,10,'S12.64XG ','Type III traumatic spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133219,10,'S12.64XD ','Type III traumatic spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133218,10,'S12.64XB ','Type III traumatic spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133217,10,'S12.64XA ','Type III traumatic spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133216,10,'S12.631S ','Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133215,10,'S12.631K ','Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133214,10,'S12.631G ','Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133213,10,'S12.631D ','Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133212,10,'S12.631B ','Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133211,10,'S12.631A ','Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133210,10,'S12.630S ','Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133209,10,'S12.630K ','Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133208,10,'S12.630G ','Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133207,10,'S12.630D ','Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133206,10,'S12.630B ','Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133205,10,'S12.630A ','Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133204,10,'S12.601S ','Unspecified nondisplaced fracture of seventh cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133203,10,'S12.601K ','Unspecified nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133202,10,'S12.601G ','Unspecified nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133201,10,'S12.601D ','Unspecified nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133200,10,'S12.601B ','Unspecified nondisplaced fracture of seventh cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133199,10,'S12.601A ','Unspecified nondisplaced fracture of seventh cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133198,10,'S12.600S ','Unspecified displaced fracture of seventh cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133197,10,'S12.600K ','Unspecified displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133196,10,'S12.600G ','Unspecified displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133195,10,'S12.600D ','Unspecified displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133194,10,'S12.600B ','Unspecified displaced fracture of seventh cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133193,10,'S12.600A ','Unspecified displaced fracture of seventh cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133192,10,'S12.591S ','Other nondisplaced fracture of sixth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133191,10,'S12.591K ','Other nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133190,10,'S12.591G ','Other nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133189,10,'S12.591D ','Other nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133188,10,'S12.591B ','Other nondisplaced fracture of sixth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133186,10,'S12.590S ','Other displaced fracture of sixth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133187,10,'S12.591A ','Other nondisplaced fracture of sixth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133185,10,'S12.590K ','Other displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133184,10,'S12.590G ','Other displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133183,10,'S12.590D ','Other displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133182,10,'S12.590B ','Other displaced fracture of sixth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133181,10,'S12.590A ','Other displaced fracture of sixth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133180,10,'S12.551S ','Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133179,10,'S12.551K ','Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133178,10,'S12.551G ','Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133177,10,'S12.551D ','Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133176,10,'S12.551B ','Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133175,10,'S12.551A ','Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133174,10,'S12.550S ','Other traumatic displaced spondylolisthesis of sixth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133173,10,'S12.550K ','Other traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133172,10,'S12.550G ','Other traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133171,10,'S12.550D ','Other traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133170,10,'S12.550B ','Other traumatic displaced spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133169,10,'S12.550A ','Other traumatic displaced spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133168,10,'S12.54XS ','Type III traumatic spondylolisthesis of sixth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133167,10,'S12.54XK ','Type III traumatic spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133166,10,'S12.54XG ','Type III traumatic spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133165,10,'S12.54XD ','Type III traumatic spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133164,10,'S12.54XB ','Type III traumatic spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133163,10,'S12.54XA ','Type III traumatic spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133162,10,'S12.531S ','Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133161,10,'S12.531K ','Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133160,10,'S12.531G ','Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133159,10,'S12.531D ','Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133158,10,'S12.531B ','Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133157,10,'S12.531A ','Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133156,10,'S12.530S ','Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133155,10,'S12.530K ','Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133154,10,'S12.530G ','Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133153,10,'S12.530D ','Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133152,10,'S12.530B ','Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133151,10,'S12.530A ','Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133150,10,'S12.501S ','Unspecified nondisplaced fracture of sixth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133149,10,'S12.501K ','Unspecified nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133148,10,'S12.501G ','Unspecified nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133147,10,'S12.501D ','Unspecified nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133146,10,'S12.501B ','Unspecified nondisplaced fracture of sixth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133144,10,'S12.500S ','Unspecified displaced fracture of sixth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133145,10,'S12.501A ','Unspecified nondisplaced fracture of sixth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133143,10,'S12.500K ','Unspecified displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133142,10,'S12.500G ','Unspecified displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133141,10,'S12.500D ','Unspecified displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133140,10,'S12.500B ','Unspecified displaced fracture of sixth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133139,10,'S12.500A ','Unspecified displaced fracture of sixth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133138,10,'S12.491S ','Other nondisplaced fracture of fifth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133137,10,'S12.491K ','Other nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133136,10,'S12.491G ','Other nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133135,10,'S12.491D ','Other nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133134,10,'S12.491B ','Other nondisplaced fracture of fifth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133133,10,'S12.491A ','Other nondisplaced fracture of fifth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133132,10,'S12.490S ','Other displaced fracture of fifth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133131,10,'S12.490K ','Other displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133130,10,'S12.490G ','Other displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133129,10,'S12.490D ','Other displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133128,10,'S12.490B ','Other displaced fracture of fifth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133127,10,'S12.490A ','Other displaced fracture of fifth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133126,10,'S12.451S ','Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133125,10,'S12.451K ','Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133124,10,'S12.451G ','Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133123,10,'S12.451D ','Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133122,10,'S12.451B ','Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133121,10,'S12.451A ','Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133120,10,'S12.450S ','Other traumatic displaced spondylolisthesis of fifth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133119,10,'S12.450K ','Other traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133118,10,'S12.450G ','Other traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133117,10,'S12.450D ','Other traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133116,10,'S12.450B ','Other traumatic displaced spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133115,10,'S12.450A ','Other traumatic displaced spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133114,10,'S12.44XS ','Type III traumatic spondylolisthesis of fifth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133113,10,'S12.44XK ','Type III traumatic spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133112,10,'S12.44XG ','Type III traumatic spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133111,10,'S12.44XD ','Type III traumatic spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133110,10,'S12.44XB ','Type III traumatic spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133109,10,'S12.44XA ','Type III traumatic spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133108,10,'S12.431S ','Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133107,10,'S12.431K ','Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133106,10,'S12.431G ','Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133105,10,'S12.431D ','Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133104,10,'S12.431B ','Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133103,10,'S12.431A ','Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133102,10,'S12.430S ','Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133101,10,'S12.430K ','Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133100,10,'S12.430G ','Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133099,10,'S12.430D ','Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133098,10,'S12.430B ','Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133097,10,'S12.430A ','Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133096,10,'S12.401S ','Unspecified nondisplaced fracture of fifth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133095,10,'S12.401K ','Unspecified nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133094,10,'S12.401G ','Unspecified nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133093,10,'S12.401D ','Unspecified nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133092,10,'S12.401B ','Unspecified nondisplaced fracture of fifth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133091,10,'S12.401A ','Unspecified nondisplaced fracture of fifth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133090,10,'S12.400S ','Unspecified displaced fracture of fifth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133089,10,'S12.400K ','Unspecified displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133088,10,'S12.400G ','Unspecified displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133087,10,'S12.400D ','Unspecified displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133086,10,'S12.400B ','Unspecified displaced fracture of fifth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133085,10,'S12.400A ','Unspecified displaced fracture of fifth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133084,10,'S12.391S ','Other nondisplaced fracture of fourth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133083,10,'S12.391K ','Other nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133082,10,'S12.391G ','Other nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133081,10,'S12.391D ','Other nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133080,10,'S12.391B ','Other nondisplaced fracture of fourth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133079,10,'S12.391A ','Other nondisplaced fracture of fourth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133078,10,'S12.390S ','Other displaced fracture of fourth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133077,10,'S12.390K ','Other displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133076,10,'S12.390G ','Other displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133075,10,'S12.390D ','Other displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133074,10,'S12.390B ','Other displaced fracture of fourth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133073,10,'S12.390A ','Other displaced fracture of fourth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133072,10,'S12.351S ','Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133071,10,'S12.351K ','Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133070,10,'S12.351G ','Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133069,10,'S12.351D ','Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133068,10,'S12.351B ','Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133067,10,'S12.351A ','Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133066,10,'S12.350S ','Other traumatic displaced spondylolisthesis of fourth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133065,10,'S12.350K ','Other traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133064,10,'S12.350G ','Other traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133063,10,'S12.350D ','Other traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133062,10,'S12.350B ','Other traumatic displaced spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133061,10,'S12.350A ','Other traumatic displaced spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133060,10,'S12.34XS ','Type III traumatic spondylolisthesis of fourth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133059,10,'S12.34XK ','Type III traumatic spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133058,10,'S12.34XG ','Type III traumatic spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133057,10,'S12.34XD ','Type III traumatic spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133056,10,'S12.34XB ','Type III traumatic spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133055,10,'S12.34XA ','Type III traumatic spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133054,10,'S12.331S ','Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133053,10,'S12.331K ','Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133052,10,'S12.331G ','Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133051,10,'S12.331D ','Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133050,10,'S12.331B ','Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133049,10,'S12.331A ','Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133048,10,'S12.330S ','Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133047,10,'S12.330K ','Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133046,10,'S12.330G ','Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133045,10,'S12.330D ','Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133044,10,'S12.330B ','Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133043,10,'S12.330A ','Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133042,10,'S12.301S ','Unspecified nondisplaced fracture of fourth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133041,10,'S12.301K ','Unspecified nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133040,10,'S12.301G ','Unspecified nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133039,10,'S12.301D ','Unspecified nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133038,10,'S12.301B ','Unspecified nondisplaced fracture of fourth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133037,10,'S12.301A ','Unspecified nondisplaced fracture of fourth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133036,10,'S12.300S ','Unspecified displaced fracture of fourth cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133035,10,'S12.300K ','Unspecified displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133034,10,'S12.300G ','Unspecified displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133033,10,'S12.300D ','Unspecified displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133032,10,'S12.300B ','Unspecified displaced fracture of fourth cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133031,10,'S12.300A ','Unspecified displaced fracture of fourth cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133030,10,'S12.291S ','Other nondisplaced fracture of third cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133029,10,'S12.291K ','Other nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133028,10,'S12.291G ','Other nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133027,10,'S12.291D ','Other nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133026,10,'S12.291B ','Other nondisplaced fracture of third cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133025,10,'S12.291A ','Other nondisplaced fracture of third cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133024,10,'S12.290S ','Other displaced fracture of third cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133023,10,'S12.290K ','Other displaced fracture of third cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133022,10,'S12.290G ','Other displaced fracture of third cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133021,10,'S12.290D ','Other displaced fracture of third cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133020,10,'S12.290B ','Other displaced fracture of third cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133019,10,'S12.290A ','Other displaced fracture of third cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133018,10,'S12.251S ','Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133017,10,'S12.251K ','Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133016,10,'S12.251G ','Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133015,10,'S12.251D ','Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133014,10,'S12.251B ','Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133013,10,'S12.251A ','Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133012,10,'S12.250S ','Other traumatic displaced spondylolisthesis of third cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133011,10,'S12.250K ','Other traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133010,10,'S12.250G ','Other traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133009,10,'S12.250D ','Other traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133008,10,'S12.250B ','Other traumatic displaced spondylolisthesis of third cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133007,10,'S12.250A ','Other traumatic displaced spondylolisthesis of third cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133006,10,'S12.24XS ','Type III traumatic spondylolisthesis of third cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(133005,10,'S12.24XK ','Type III traumatic spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(133004,10,'S12.24XG ','Type III traumatic spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(133003,10,'S12.24XD ','Type III traumatic spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(133002,10,'S12.24XB ','Type III traumatic spondylolisthesis of third cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(133001,10,'S12.24XA ','Type III traumatic spondylolisthesis of third cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(133000,10,'S12.231S ','Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132999,10,'S12.231K ','Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132998,10,'S12.231G ','Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132997,10,'S12.231D ','Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132996,10,'S12.231B ','Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132995,10,'S12.231A ','Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132994,10,'S12.230S ','Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132993,10,'S12.230K ','Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132992,10,'S12.230G ','Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132991,10,'S12.230D ','Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132990,10,'S12.230B ','Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132989,10,'S12.230A ','Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132988,10,'S12.201S ','Unspecified nondisplaced fracture of third cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132987,10,'S12.201K ','Unspecified nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132986,10,'S12.201G ','Unspecified nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132985,10,'S12.201D ','Unspecified nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132984,10,'S12.201B ','Unspecified nondisplaced fracture of third cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132983,10,'S12.201A ','Unspecified nondisplaced fracture of third cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132982,10,'S12.200S ','Unspecified displaced fracture of third cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132981,10,'S12.200K ','Unspecified displaced fracture of third cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132980,10,'S12.200G ','Unspecified displaced fracture of third cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132979,10,'S12.200D ','Unspecified displaced fracture of third cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132978,10,'S12.200B ','Unspecified displaced fracture of third cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132977,10,'S12.200A ','Unspecified displaced fracture of third cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132976,10,'S12.191S ','Other nondisplaced fracture of second cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132975,10,'S12.191K ','Other nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132974,10,'S12.191G ','Other nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132973,10,'S12.191D ','Other nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132972,10,'S12.191B ','Other nondisplaced fracture of second cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132971,10,'S12.191A ','Other nondisplaced fracture of second cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132970,10,'S12.190S ','Other displaced fracture of second cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132969,10,'S12.190K ','Other displaced fracture of second cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132968,10,'S12.190G ','Other displaced fracture of second cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132967,10,'S12.190D ','Other displaced fracture of second cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132966,10,'S12.190B ','Other displaced fracture of second cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132965,10,'S12.190A ','Other displaced fracture of second cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132964,10,'S12.151S ','Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132963,10,'S12.151K ','Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132962,10,'S12.151G ','Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132961,10,'S12.151D ','Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132960,10,'S12.151B ','Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132959,10,'S12.151A ','Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132958,10,'S12.150S ','Other traumatic displaced spondylolisthesis of second cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132957,10,'S12.150K ','Other traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132956,10,'S12.150G ','Other traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132955,10,'S12.150D ','Other traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132954,10,'S12.150B ','Other traumatic displaced spondylolisthesis of second cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132953,10,'S12.150A ','Other traumatic displaced spondylolisthesis of second cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132952,10,'S12.14XS ','Type III traumatic spondylolisthesis of second cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132951,10,'S12.14XK ','Type III traumatic spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132950,10,'S12.14XG ','Type III traumatic spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132949,10,'S12.14XD ','Type III traumatic spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132948,10,'S12.14XB ','Type III traumatic spondylolisthesis of second cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132947,10,'S12.14XA ','Type III traumatic spondylolisthesis of second cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132946,10,'S12.131S ','Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132945,10,'S12.131K ','Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132944,10,'S12.131G ','Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132943,10,'S12.131D ','Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132942,10,'S12.131B ','Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132941,10,'S12.131A ','Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132940,10,'S12.130S ','Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132939,10,'S12.130K ','Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132938,10,'S12.130G ','Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132937,10,'S12.130D ','Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132936,10,'S12.130B ','Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132935,10,'S12.130A ','Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132934,10,'S12.121S ','Other nondisplaced dens fracture, sequela','Y','0000-00-00 00:00:00'),(132933,10,'S12.121K ','Other nondisplaced dens fracture, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132931,10,'S12.121D ','Other nondisplaced dens fracture, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132932,10,'S12.121G ','Other nondisplaced dens fracture, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132930,10,'S12.121B ','Other nondisplaced dens fracture, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132929,10,'S12.121A ','Other nondisplaced dens fracture, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132928,10,'S12.120S ','Other displaced dens fracture, sequela','Y','0000-00-00 00:00:00'),(132927,10,'S12.120K ','Other displaced dens fracture, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132926,10,'S12.120G ','Other displaced dens fracture, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132924,10,'S12.120B ','Other displaced dens fracture, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132925,10,'S12.120D ','Other displaced dens fracture, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132923,10,'S12.120A ','Other displaced dens fracture, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132922,10,'S12.112S ','Nondisplaced Type II dens fracture, sequela','Y','0000-00-00 00:00:00'),(132921,10,'S12.112K ','Nondisplaced Type II dens fracture, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132920,10,'S12.112G ','Nondisplaced Type II dens fracture, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132919,10,'S12.112D ','Nondisplaced Type II dens fracture, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132918,10,'S12.112B ','Nondisplaced Type II dens fracture, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132916,10,'S12.111S ','Posterior displaced Type II dens fracture, sequela','Y','0000-00-00 00:00:00'),(132917,10,'S12.112A ','Nondisplaced Type II dens fracture, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132915,10,'S12.111K ','Posterior displaced Type II dens fracture, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132914,10,'S12.111G ','Posterior displaced Type II dens fracture, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132913,10,'S12.111D ','Posterior displaced Type II dens fracture, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132912,10,'S12.111B ','Posterior displaced Type II dens fracture, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132911,10,'S12.111A ','Posterior displaced Type II dens fracture, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132910,10,'S12.110S ','Anterior displaced Type II dens fracture, sequela','Y','0000-00-00 00:00:00'),(132909,10,'S12.110K ','Anterior displaced Type II dens fracture, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132908,10,'S12.110G ','Anterior displaced Type II dens fracture, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132907,10,'S12.110D ','Anterior displaced Type II dens fracture, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132906,10,'S12.110B ','Anterior displaced Type II dens fracture, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132905,10,'S12.110A ','Anterior displaced Type II dens fracture, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132904,10,'S12.101S ','Unspecified nondisplaced fracture of second cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132903,10,'S12.101K ','Unspecified nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132902,10,'S12.101G ','Unspecified nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132901,10,'S12.101D ','Unspecified nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132900,10,'S12.101B ','Unspecified nondisplaced fracture of second cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132899,10,'S12.101A ','Unspecified nondisplaced fracture of second cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132898,10,'S12.100S ','Unspecified displaced fracture of second cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132897,10,'S12.100K ','Unspecified displaced fracture of second cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132896,10,'S12.100G ','Unspecified displaced fracture of second cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132895,10,'S12.100D ','Unspecified displaced fracture of second cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132894,10,'S12.100B ','Unspecified displaced fracture of second cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132893,10,'S12.100A ','Unspecified displaced fracture of second cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132892,10,'S12.091S ','Other nondisplaced fracture of first cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132891,10,'S12.091K ','Other nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132890,10,'S12.091G ','Other nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132889,10,'S12.091D ','Other nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132888,10,'S12.091B ','Other nondisplaced fracture of first cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132886,10,'S12.090S ','Other displaced fracture of first cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132887,10,'S12.091A ','Other nondisplaced fracture of first cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132885,10,'S12.090K ','Other displaced fracture of first cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132884,10,'S12.090G ','Other displaced fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132883,10,'S12.090D ','Other displaced fracture of first cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132882,10,'S12.090B ','Other displaced fracture of first cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132881,10,'S12.090A ','Other displaced fracture of first cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132880,10,'S12.041S ','Nondisplaced lateral mass fracture of first cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132879,10,'S12.041K ','Nondisplaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132878,10,'S12.041G ','Nondisplaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132877,10,'S12.041D ','Nondisplaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132876,10,'S12.041B ','Nondisplaced lateral mass fracture of first cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132874,10,'S12.040S ','Displaced lateral mass fracture of first cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132875,10,'S12.041A ','Nondisplaced lateral mass fracture of first cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132873,10,'S12.040K ','Displaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132872,10,'S12.040G ','Displaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132871,10,'S12.040D ','Displaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132870,10,'S12.040B ','Displaced lateral mass fracture of first cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132868,10,'S12.031S ','Nondisplaced posterior arch fracture of first cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132869,10,'S12.040A ','Displaced lateral mass fracture of first cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132867,10,'S12.031K ','Nondisplaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132866,10,'S12.031G ','Nondisplaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132865,10,'S12.031D ','Nondisplaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132864,10,'S12.031B ','Nondisplaced posterior arch fracture of first cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132863,10,'S12.031A ','Nondisplaced posterior arch fracture of first cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132862,10,'S12.030S ','Displaced posterior arch fracture of first cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132861,10,'S12.030K ','Displaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132860,10,'S12.030G ','Displaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132859,10,'S12.030D ','Displaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132858,10,'S12.030B ','Displaced posterior arch fracture of first cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132856,10,'S12.02XS ','Unstable burst fracture of first cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132857,10,'S12.030A ','Displaced posterior arch fracture of first cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132855,10,'S12.02XK ','Unstable burst fracture of first cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132854,10,'S12.02XG ','Unstable burst fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132853,10,'S12.02XD ','Unstable burst fracture of first cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132852,10,'S12.02XB ','Unstable burst fracture of first cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132851,10,'S12.02XA ','Unstable burst fracture of first cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132850,10,'S12.01XS ','Stable burst fracture of first cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132849,10,'S12.01XK ','Stable burst fracture of first cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132848,10,'S12.01XG ','Stable burst fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132847,10,'S12.01XD ','Stable burst fracture of first cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132846,10,'S12.01XB ','Stable burst fracture of first cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132845,10,'S12.01XA ','Stable burst fracture of first cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132844,10,'S12.001S ','Unspecified nondisplaced fracture of first cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132843,10,'S12.001K ','Unspecified nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132842,10,'S12.001G ','Unspecified nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132841,10,'S12.001D ','Unspecified nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132840,10,'S12.001B ','Unspecified nondisplaced fracture of first cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132839,10,'S12.001A ','Unspecified nondisplaced fracture of first cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132838,10,'S12.000S ','Unspecified displaced fracture of first cervical vertebra, sequela','Y','0000-00-00 00:00:00'),(132837,10,'S12.000K ','Unspecified displaced fracture of first cervical vertebra, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(132836,10,'S12.000G ','Unspecified displaced fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(132835,10,'S12.000D ','Unspecified displaced fracture of first cervical vertebra, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(132834,10,'S12.000B ','Unspecified displaced fracture of first cervical vertebra, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(132833,10,'S12.000A ','Unspecified displaced fracture of first cervical vertebra, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(132832,10,'S11.95XS ','Open bite of unspecified part of neck, sequela','Y','0000-00-00 00:00:00'),(132830,10,'S11.95XA ','Open bite of unspecified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132831,10,'S11.95XD ','Open bite of unspecified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132829,10,'S11.94XS ','Puncture wound with foreign body of unspecified part of neck, sequela','Y','0000-00-00 00:00:00'),(132828,10,'S11.94XD ','Puncture wound with foreign body of unspecified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132827,10,'S11.94XA ','Puncture wound with foreign body of unspecified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132826,10,'S11.93XS ','Puncture wound without foreign body of unspecified part of neck, sequela','Y','0000-00-00 00:00:00'),(132825,10,'S11.93XD ','Puncture wound without foreign body of unspecified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132823,10,'S11.92XS ','Laceration with foreign body of unspecified part of neck, sequela','Y','0000-00-00 00:00:00'),(132824,10,'S11.93XA ','Puncture wound without foreign body of unspecified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132822,10,'S11.92XD ','Laceration with foreign body of unspecified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132821,10,'S11.92XA ','Laceration with foreign body of unspecified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132820,10,'S11.91XS ','Laceration without foreign body of unspecified part of neck, sequela','Y','0000-00-00 00:00:00'),(132819,10,'S11.91XD ','Laceration without foreign body of unspecified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132817,10,'S11.90XS ','Unspecified open wound of unspecified part of neck, sequela','Y','0000-00-00 00:00:00'),(132818,10,'S11.91XA ','Laceration without foreign body of unspecified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132816,10,'S11.90XD ','Unspecified open wound of unspecified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132815,10,'S11.90XA ','Unspecified open wound of unspecified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132814,10,'S11.89XS ','Other open wound of other specified part of neck, sequela','Y','0000-00-00 00:00:00'),(132813,10,'S11.89XD ','Other open wound of other specified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132811,10,'S11.85XS ','Open bite of other specified part of neck, sequela','Y','0000-00-00 00:00:00'),(132812,10,'S11.89XA ','Other open wound of other specified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132810,10,'S11.85XD ','Open bite of other specified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132809,10,'S11.85XA ','Open bite of other specified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132808,10,'S11.84XS ','Puncture wound with foreign body of other specified part of neck, sequela','Y','0000-00-00 00:00:00'),(132807,10,'S11.84XD ','Puncture wound with foreign body of other specified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132806,10,'S11.84XA ','Puncture wound with foreign body of other specified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132805,10,'S11.83XS ','Puncture wound without foreign body of other specified part of neck, sequela','Y','0000-00-00 00:00:00'),(132804,10,'S11.83XD ','Puncture wound without foreign body of other specified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132803,10,'S11.83XA ','Puncture wound without foreign body of other specified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132802,10,'S11.82XS ','Laceration with foreign body of other specified part of neck, sequela','Y','0000-00-00 00:00:00'),(132801,10,'S11.82XD ','Laceration with foreign body of other specified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132799,10,'S11.81XS ','Laceration without foreign body of other specified part of neck, sequela','Y','0000-00-00 00:00:00'),(132800,10,'S11.82XA ','Laceration with foreign body of other specified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132798,10,'S11.81XD ','Laceration without foreign body of other specified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132797,10,'S11.81XA ','Laceration without foreign body of other specified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132796,10,'S11.80XS ','Unspecified open wound of other specified part of neck, sequela','Y','0000-00-00 00:00:00'),(132795,10,'S11.80XD ','Unspecified open wound of other specified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132794,10,'S11.80XA ','Unspecified open wound of other specified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132792,10,'S11.25XD ','Open bite of pharynx and cervical esophagus, subsequent encounter','Y','0000-00-00 00:00:00'),(132793,10,'S11.25XS ','Open bite of pharynx and cervical esophagus, sequela','Y','0000-00-00 00:00:00'),(132791,10,'S11.25XA ','Open bite of pharynx and cervical esophagus, initial encounter','Y','0000-00-00 00:00:00'),(132790,10,'S11.24XS ','Puncture wound with foreign body of pharynx and cervical esophagus, sequela','Y','0000-00-00 00:00:00'),(132789,10,'S11.24XD ','Puncture wound with foreign body of pharynx and cervical esophagus, subsequent encounter','Y','0000-00-00 00:00:00'),(132788,10,'S11.24XA ','Puncture wound with foreign body of pharynx and cervical esophagus, initial encounter','Y','0000-00-00 00:00:00'),(132787,10,'S11.23XS ','Puncture wound without foreign body of pharynx and cervical esophagus, sequela','Y','0000-00-00 00:00:00'),(132785,10,'S11.23XA ','Puncture wound without foreign body of pharynx and cervical esophagus, initial encounter','Y','0000-00-00 00:00:00'),(132786,10,'S11.23XD ','Puncture wound without foreign body of pharynx and cervical esophagus, subsequent encounter','Y','0000-00-00 00:00:00'),(132784,10,'S11.22XS ','Laceration with foreign body of pharynx and cervical esophagus, sequela','Y','0000-00-00 00:00:00'),(132783,10,'S11.22XD ','Laceration with foreign body of pharynx and cervical esophagus, subsequent encounter','Y','0000-00-00 00:00:00'),(132782,10,'S11.22XA ','Laceration with foreign body of pharynx and cervical esophagus, initial encounter','Y','0000-00-00 00:00:00'),(132781,10,'S11.21XS ','Laceration without foreign body of pharynx and cervical esophagus, sequela','Y','0000-00-00 00:00:00'),(132780,10,'S11.21XD ','Laceration without foreign body of pharynx and cervical esophagus, subsequent encounter','Y','0000-00-00 00:00:00'),(132778,10,'S11.20XS ','Unspecified open wound of pharynx and cervical esophagus, sequela','Y','0000-00-00 00:00:00'),(132779,10,'S11.21XA ','Laceration without foreign body of pharynx and cervical esophagus, initial encounter','Y','0000-00-00 00:00:00'),(132777,10,'S11.20XD ','Unspecified open wound of pharynx and cervical esophagus, subsequent encounter','Y','0000-00-00 00:00:00'),(132776,10,'S11.20XA ','Unspecified open wound of pharynx and cervical esophagus, initial encounter','Y','0000-00-00 00:00:00'),(132775,10,'S11.15XS ','Open bite of thyroid gland, sequela','Y','0000-00-00 00:00:00'),(132774,10,'S11.15XD ','Open bite of thyroid gland, subsequent encounter','Y','0000-00-00 00:00:00'),(132773,10,'S11.15XA ','Open bite of thyroid gland, initial encounter','Y','0000-00-00 00:00:00'),(132772,10,'S11.14XS ','Puncture wound with foreign body of thyroid gland, sequela','Y','0000-00-00 00:00:00'),(132771,10,'S11.14XD ','Puncture wound with foreign body of thyroid gland, subsequent encounter','Y','0000-00-00 00:00:00'),(132770,10,'S11.14XA ','Puncture wound with foreign body of thyroid gland, initial encounter','Y','0000-00-00 00:00:00'),(132768,10,'S11.13XD ','Puncture wound without foreign body of thyroid gland, subsequent encounter','Y','0000-00-00 00:00:00'),(132769,10,'S11.13XS ','Puncture wound without foreign body of thyroid gland, sequela','Y','0000-00-00 00:00:00'),(132767,10,'S11.13XA ','Puncture wound without foreign body of thyroid gland, initial encounter','Y','0000-00-00 00:00:00'),(132766,10,'S11.12XS ','Laceration with foreign body of thyroid gland, sequela','Y','0000-00-00 00:00:00'),(132764,10,'S11.12XA ','Laceration with foreign body of thyroid gland, initial encounter','Y','0000-00-00 00:00:00'),(132765,10,'S11.12XD ','Laceration with foreign body of thyroid gland, subsequent encounter','Y','0000-00-00 00:00:00'),(132763,10,'S11.11XS ','Laceration without foreign body of thyroid gland, sequela','Y','0000-00-00 00:00:00'),(132762,10,'S11.11XD ','Laceration without foreign body of thyroid gland, subsequent encounter','Y','0000-00-00 00:00:00'),(132760,10,'S11.10XS ','Unspecified open wound of thyroid gland, sequela','Y','0000-00-00 00:00:00'),(132761,10,'S11.11XA ','Laceration without foreign body of thyroid gland, initial encounter','Y','0000-00-00 00:00:00'),(132759,10,'S11.10XD ','Unspecified open wound of thyroid gland, subsequent encounter','Y','0000-00-00 00:00:00'),(132758,10,'S11.10XA ','Unspecified open wound of thyroid gland, initial encounter','Y','0000-00-00 00:00:00'),(132756,10,'S11.039D ','Unspecified open wound of vocal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(132757,10,'S11.039S ','Unspecified open wound of vocal cord, sequela','Y','0000-00-00 00:00:00'),(132755,10,'S11.039A ','Unspecified open wound of vocal cord, initial encounter','Y','0000-00-00 00:00:00'),(132754,10,'S11.035S ','Open bite of vocal cord, sequela','Y','0000-00-00 00:00:00'),(132753,10,'S11.035D ','Open bite of vocal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(132751,10,'S11.034S ','Puncture wound with foreign body of vocal cord, sequela','Y','0000-00-00 00:00:00'),(132752,10,'S11.035A ','Open bite of vocal cord, initial encounter','Y','0000-00-00 00:00:00'),(132750,10,'S11.034D ','Puncture wound with foreign body of vocal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(132749,10,'S11.034A ','Puncture wound with foreign body of vocal cord, initial encounter','Y','0000-00-00 00:00:00'),(132747,10,'S11.033D ','Puncture wound without foreign body of vocal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(132748,10,'S11.033S ','Puncture wound without foreign body of vocal cord, sequela','Y','0000-00-00 00:00:00'),(132746,10,'S11.033A ','Puncture wound without foreign body of vocal cord, initial encounter','Y','0000-00-00 00:00:00'),(132744,10,'S11.032D ','Laceration with foreign body of vocal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(132745,10,'S11.032S ','Laceration with foreign body of vocal cord, sequela','Y','0000-00-00 00:00:00'),(132743,10,'S11.032A ','Laceration with foreign body of vocal cord, initial encounter','Y','0000-00-00 00:00:00'),(132742,10,'S11.031S ','Laceration without foreign body of vocal cord, sequela','Y','0000-00-00 00:00:00'),(132740,10,'S11.031A ','Laceration without foreign body of vocal cord, initial encounter','Y','0000-00-00 00:00:00'),(132741,10,'S11.031D ','Laceration without foreign body of vocal cord, subsequent encounter','Y','0000-00-00 00:00:00'),(132739,10,'S11.029S ','Unspecified open wound of trachea, sequela','Y','0000-00-00 00:00:00'),(132737,10,'S11.029A ','Unspecified open wound of trachea, initial encounter','Y','0000-00-00 00:00:00'),(132738,10,'S11.029D ','Unspecified open wound of trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(132736,10,'S11.025S ','Open bite of trachea, sequela','Y','0000-00-00 00:00:00'),(132734,10,'S11.025A ','Open bite of trachea, initial encounter','Y','0000-00-00 00:00:00'),(132735,10,'S11.025D ','Open bite of trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(132733,10,'S11.024S ','Puncture wound with foreign body of trachea, sequela','Y','0000-00-00 00:00:00'),(132732,10,'S11.024D ','Puncture wound with foreign body of trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(132731,10,'S11.024A ','Puncture wound with foreign body of trachea, initial encounter','Y','0000-00-00 00:00:00'),(132730,10,'S11.023S ','Puncture wound without foreign body of trachea, sequela','Y','0000-00-00 00:00:00'),(132729,10,'S11.023D ','Puncture wound without foreign body of trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(132727,10,'S11.022S ','Laceration with foreign body of trachea, sequela','Y','0000-00-00 00:00:00'),(132728,10,'S11.023A ','Puncture wound without foreign body of trachea, initial encounter','Y','0000-00-00 00:00:00'),(132726,10,'S11.022D ','Laceration with foreign body of trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(132724,10,'S11.021S ','Laceration without foreign body of trachea, sequela','Y','0000-00-00 00:00:00'),(132725,10,'S11.022A ','Laceration with foreign body of trachea, initial encounter','Y','0000-00-00 00:00:00'),(132723,10,'S11.021D ','Laceration without foreign body of trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(132722,10,'S11.021A ','Laceration without foreign body of trachea, initial encounter','Y','0000-00-00 00:00:00'),(132720,10,'S11.019D ','Unspecified open wound of larynx, subsequent encounter','Y','0000-00-00 00:00:00'),(132721,10,'S11.019S ','Unspecified open wound of larynx, sequela','Y','0000-00-00 00:00:00'),(132719,10,'S11.019A ','Unspecified open wound of larynx, initial encounter','Y','0000-00-00 00:00:00'),(132717,10,'S11.015D ','Open bite of larynx, subsequent encounter','Y','0000-00-00 00:00:00'),(132718,10,'S11.015S ','Open bite of larynx, sequela','Y','0000-00-00 00:00:00'),(132716,10,'S11.015A ','Open bite of larynx, initial encounter','Y','0000-00-00 00:00:00'),(132715,10,'S11.014S ','Puncture wound with foreign body of larynx, sequela','Y','0000-00-00 00:00:00'),(132713,10,'S11.014A ','Puncture wound with foreign body of larynx, initial encounter','Y','0000-00-00 00:00:00'),(132714,10,'S11.014D ','Puncture wound with foreign body of larynx, subsequent encounter','Y','0000-00-00 00:00:00'),(132712,10,'S11.013S ','Puncture wound without foreign body of larynx, sequela','Y','0000-00-00 00:00:00'),(132711,10,'S11.013D ','Puncture wound without foreign body of larynx, subsequent encounter','Y','0000-00-00 00:00:00'),(132710,10,'S11.013A ','Puncture wound without foreign body of larynx, initial encounter','Y','0000-00-00 00:00:00'),(132709,10,'S11.012S ','Laceration with foreign body of larynx, sequela','Y','0000-00-00 00:00:00'),(132708,10,'S11.012D ','Laceration with foreign body of larynx, subsequent encounter','Y','0000-00-00 00:00:00'),(132707,10,'S11.012A ','Laceration with foreign body of larynx, initial encounter','Y','0000-00-00 00:00:00'),(132705,10,'S11.011D ','Laceration without foreign body of larynx, subsequent encounter','Y','0000-00-00 00:00:00'),(132706,10,'S11.011S ','Laceration without foreign body of larynx, sequela','Y','0000-00-00 00:00:00'),(132704,10,'S11.011A ','Laceration without foreign body of larynx, initial encounter','Y','0000-00-00 00:00:00'),(132703,10,'S10.97XS ','Other superficial bite of unspecified part of neck, sequela','Y','0000-00-00 00:00:00'),(132702,10,'S10.97XD ','Other superficial bite of unspecified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132700,10,'S10.96XS ','Insect bite of unspecified part of neck, sequela','Y','0000-00-00 00:00:00'),(132701,10,'S10.97XA ','Other superficial bite of unspecified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132699,10,'S10.96XD ','Insect bite of unspecified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132698,10,'S10.96XA ','Insect bite of unspecified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132697,10,'S10.95XS ','Superficial foreign body of unspecified part of neck, sequela','Y','0000-00-00 00:00:00'),(132696,10,'S10.95XD ','Superficial foreign body of unspecified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132694,10,'S10.94XS ','External constriction of unspecified part of neck, sequela','Y','0000-00-00 00:00:00'),(132695,10,'S10.95XA ','Superficial foreign body of unspecified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132693,10,'S10.94XD ','External constriction of unspecified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132692,10,'S10.94XA ','External constriction of unspecified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132691,10,'S10.93XS ','Contusion of unspecified part of neck, sequela','Y','0000-00-00 00:00:00'),(132690,10,'S10.93XD ','Contusion of unspecified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132689,10,'S10.93XA ','Contusion of unspecified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132688,10,'S10.92XS ','Blister (nonthermal) of unspecified part of neck, sequela','Y','0000-00-00 00:00:00'),(132686,10,'S10.92XA ','Blister (nonthermal) of unspecified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132687,10,'S10.92XD ','Blister (nonthermal) of unspecified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132685,10,'S10.91XS ','Abrasion of unspecified part of neck, sequela','Y','0000-00-00 00:00:00'),(132683,10,'S10.91XA ','Abrasion of unspecified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132684,10,'S10.91XD ','Abrasion of unspecified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132682,10,'S10.90XS ','Unspecified superficial injury of unspecified part of neck, sequela','Y','0000-00-00 00:00:00'),(132681,10,'S10.90XD ','Unspecified superficial injury of unspecified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132680,10,'S10.90XA ','Unspecified superficial injury of unspecified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132679,10,'S10.87XS ','Other superficial bite of other specified part of neck, sequela','Y','0000-00-00 00:00:00'),(132677,10,'S10.87XA ','Other superficial bite of other specified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132678,10,'S10.87XD ','Other superficial bite of other specified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132676,10,'S10.86XS ','Insect bite of other specified part of neck, sequela','Y','0000-00-00 00:00:00'),(132675,10,'S10.86XD ','Insect bite of other specified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132673,10,'S10.85XS ','Superficial foreign body of other specified part of neck, sequela','Y','0000-00-00 00:00:00'),(132674,10,'S10.86XA ','Insect bite of other specified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132672,10,'S10.85XD ','Superficial foreign body of other specified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132671,10,'S10.85XA ','Superficial foreign body of other specified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132670,10,'S10.84XS ','External constriction of other specified part of neck, sequela','Y','0000-00-00 00:00:00'),(132669,10,'S10.84XD ','External constriction of other specified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132667,10,'S10.83XS ','Contusion of other specified part of neck, sequela','Y','0000-00-00 00:00:00'),(132668,10,'S10.84XA ','External constriction of other specified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132666,10,'S10.83XD ','Contusion of other specified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132665,10,'S10.83XA ','Contusion of other specified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132664,10,'S10.82XS ','Blister (nonthermal) of other specified part of neck, sequela','Y','0000-00-00 00:00:00'),(132662,10,'S10.82XA ','Blister (nonthermal) of other specified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132663,10,'S10.82XD ','Blister (nonthermal) of other specified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132661,10,'S10.81XS ','Abrasion of other specified part of neck, sequela','Y','0000-00-00 00:00:00'),(132660,10,'S10.81XD ','Abrasion of other specified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132658,10,'S10.80XS ','Unspecified superficial injury of other specified part of neck, sequela','Y','0000-00-00 00:00:00'),(132659,10,'S10.81XA ','Abrasion of other specified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132657,10,'S10.80XD ','Unspecified superficial injury of other specified part of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(132656,10,'S10.80XA ','Unspecified superficial injury of other specified part of neck, initial encounter','Y','0000-00-00 00:00:00'),(132655,10,'S10.17XS ','Other superficial bite of throat, sequela','Y','0000-00-00 00:00:00'),(132654,10,'S10.17XD ','Other superficial bite of throat, subsequent encounter','Y','0000-00-00 00:00:00'),(132653,10,'S10.17XA ','Other superficial bite of throat, initial encounter','Y','0000-00-00 00:00:00'),(132652,10,'S10.16XS ','Insect bite (nonvenomous) of throat, sequela','Y','0000-00-00 00:00:00'),(132650,10,'S10.16XA ','Insect bite (nonvenomous) of throat, initial encounter','Y','0000-00-00 00:00:00'),(132651,10,'S10.16XD ','Insect bite (nonvenomous) of throat, subsequent encounter','Y','0000-00-00 00:00:00'),(132649,10,'S10.15XS ','Superficial foreign body of throat, sequela','Y','0000-00-00 00:00:00'),(132647,10,'S10.15XA ','Superficial foreign body of throat, initial encounter','Y','0000-00-00 00:00:00'),(132648,10,'S10.15XD ','Superficial foreign body of throat, subsequent encounter','Y','0000-00-00 00:00:00'),(132646,10,'S10.14XS ','External constriction of part of throat, sequela','Y','0000-00-00 00:00:00'),(132644,10,'S10.14XA ','External constriction of part of throat, initial encounter','Y','0000-00-00 00:00:00'),(132645,10,'S10.14XD ','External constriction of part of throat, subsequent encounter','Y','0000-00-00 00:00:00'),(132643,10,'S10.12XS ','Blister (nonthermal) of throat, sequela','Y','0000-00-00 00:00:00'),(132641,10,'S10.12XA ','Blister (nonthermal) of throat, initial encounter','Y','0000-00-00 00:00:00'),(132642,10,'S10.12XD ','Blister (nonthermal) of throat, subsequent encounter','Y','0000-00-00 00:00:00'),(132639,10,'S10.11XD ','Abrasion of throat, subsequent encounter','Y','0000-00-00 00:00:00'),(132640,10,'S10.11XS ','Abrasion of throat, sequela','Y','0000-00-00 00:00:00'),(132638,10,'S10.11XA ','Abrasion of throat, initial encounter','Y','0000-00-00 00:00:00'),(132636,10,'S10.10XD ','Unspecified superficial injuries of throat, subsequent encounter','Y','0000-00-00 00:00:00'),(132637,10,'S10.10XS ','Unspecified superficial injuries of throat, sequela','Y','0000-00-00 00:00:00'),(132635,10,'S10.10XA ','Unspecified superficial injuries of throat, initial encounter','Y','0000-00-00 00:00:00'),(132633,10,'S10.0XXD ','Contusion of throat, subsequent encounter','Y','0000-00-00 00:00:00'),(132634,10,'S10.0XXS ','Contusion of throat, sequela','Y','0000-00-00 00:00:00'),(132631,10,'S09.93XS ','Unspecified injury of face, sequela','Y','0000-00-00 00:00:00'),(132632,10,'S10.0XXA ','Contusion of throat, initial encounter','Y','0000-00-00 00:00:00'),(132629,10,'S09.93XA ','Unspecified injury of face, initial encounter','Y','0000-00-00 00:00:00'),(132630,10,'S09.93XD ','Unspecified injury of face, subsequent encounter','Y','0000-00-00 00:00:00'),(132628,10,'S09.92XS ','Unspecified injury of nose, sequela','Y','0000-00-00 00:00:00'),(132627,10,'S09.92XD ','Unspecified injury of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(132625,10,'S09.91XS ','Unspecified injury of ear, sequela','Y','0000-00-00 00:00:00'),(132626,10,'S09.92XA ','Unspecified injury of nose, initial encounter','Y','0000-00-00 00:00:00'),(132623,10,'S09.91XA ','Unspecified injury of ear, initial encounter','Y','0000-00-00 00:00:00'),(132624,10,'S09.91XD ','Unspecified injury of ear, subsequent encounter','Y','0000-00-00 00:00:00'),(132621,10,'S09.90XD ','Unspecified injury of head, subsequent encounter','Y','0000-00-00 00:00:00'),(132622,10,'S09.90XS ','Unspecified injury of head, sequela','Y','0000-00-00 00:00:00'),(132620,10,'S09.90XA ','Unspecified injury of head, initial encounter','Y','0000-00-00 00:00:00'),(132618,10,'S09.8XXD ','Other specified injuries of head, subsequent encounter','Y','0000-00-00 00:00:00'),(132619,10,'S09.8XXS ','Other specified injuries of head, sequela','Y','0000-00-00 00:00:00'),(132617,10,'S09.8XXA ','Other specified injuries of head, initial encounter','Y','0000-00-00 00:00:00'),(132616,10,'S09.399S ','Other specified injury of unspecified middle and inner ear, sequela','Y','0000-00-00 00:00:00'),(132615,10,'S09.399D ','Other specified injury of unspecified middle and inner ear, subsequent encounter','Y','0000-00-00 00:00:00'),(132613,10,'S09.392S ','Other specified injury of left middle and inner ear, sequela','Y','0000-00-00 00:00:00'),(132614,10,'S09.399A ','Other specified injury of unspecified middle and inner ear, initial encounter','Y','0000-00-00 00:00:00'),(132612,10,'S09.392D ','Other specified injury of left middle and inner ear, subsequent encounter','Y','0000-00-00 00:00:00'),(132611,10,'S09.392A ','Other specified injury of left middle and inner ear, initial encounter','Y','0000-00-00 00:00:00'),(132610,10,'S09.391S ','Other specified injury of right middle and inner ear, sequela','Y','0000-00-00 00:00:00'),(132609,10,'S09.391D ','Other specified injury of right middle and inner ear, subsequent encounter','Y','0000-00-00 00:00:00'),(132608,10,'S09.391A ','Other specified injury of right middle and inner ear, initial encounter','Y','0000-00-00 00:00:00'),(132607,10,'S09.319S ','Primary blast injury of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(132606,10,'S09.319D ','Primary blast injury of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(132604,10,'S09.313S ','Primary blast injury of ear, bilateral, sequela','Y','0000-00-00 00:00:00'),(132605,10,'S09.319A ','Primary blast injury of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(132603,10,'S09.313D ','Primary blast injury of ear, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(132601,10,'S09.312S ','Primary blast injury of left ear, sequela','Y','0000-00-00 00:00:00'),(132602,10,'S09.313A ','Primary blast injury of ear, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(132600,10,'S09.312D ','Primary blast injury of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(132598,10,'S09.311S ','Primary blast injury of right ear, sequela','Y','0000-00-00 00:00:00'),(132599,10,'S09.312A ','Primary blast injury of left ear, initial encounter','Y','0000-00-00 00:00:00'),(132597,10,'S09.311D ','Primary blast injury of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(132596,10,'S09.311A ','Primary blast injury of right ear, initial encounter','Y','0000-00-00 00:00:00'),(132595,10,'S09.309S ','Unspecified injury of unspecified middle and inner ear, sequela','Y','0000-00-00 00:00:00'),(132594,10,'S09.309D ','Unspecified injury of unspecified middle and inner ear, subsequent encounter','Y','0000-00-00 00:00:00'),(132592,10,'S09.302S ','Unspecified injury of left middle and inner ear, sequela','Y','0000-00-00 00:00:00'),(132593,10,'S09.309A ','Unspecified injury of unspecified middle and inner ear, initial encounter','Y','0000-00-00 00:00:00'),(132591,10,'S09.302D ','Unspecified injury of left middle and inner ear, subsequent encounter','Y','0000-00-00 00:00:00'),(132590,10,'S09.302A ','Unspecified injury of left middle and inner ear, initial encounter','Y','0000-00-00 00:00:00'),(132589,10,'S09.301S ','Unspecified injury of right middle and inner ear, sequela','Y','0000-00-00 00:00:00'),(132588,10,'S09.301D ','Unspecified injury of right middle and inner ear, subsequent encounter','Y','0000-00-00 00:00:00'),(132587,10,'S09.301A ','Unspecified injury of right middle and inner ear, initial encounter','Y','0000-00-00 00:00:00'),(132586,10,'S09.22XS ','Traumatic rupture of left ear drum, sequela','Y','0000-00-00 00:00:00'),(132585,10,'S09.22XD ','Traumatic rupture of left ear drum, subsequent encounter','Y','0000-00-00 00:00:00'),(132583,10,'S09.21XS ','Traumatic rupture of right ear drum, sequela','Y','0000-00-00 00:00:00'),(132584,10,'S09.22XA ','Traumatic rupture of left ear drum, initial encounter','Y','0000-00-00 00:00:00'),(132582,10,'S09.21XD ','Traumatic rupture of right ear drum, subsequent encounter','Y','0000-00-00 00:00:00'),(132581,10,'S09.21XA ','Traumatic rupture of right ear drum, initial encounter','Y','0000-00-00 00:00:00'),(132579,10,'S09.20XD ','Traumatic rupture of unspecified ear drum, subsequent encounter','Y','0000-00-00 00:00:00'),(132580,10,'S09.20XS ','Traumatic rupture of unspecified ear drum, sequela','Y','0000-00-00 00:00:00'),(132578,10,'S09.20XA ','Traumatic rupture of unspecified ear drum, initial encounter','Y','0000-00-00 00:00:00'),(132577,10,'S09.19XS ','Other specified injury of muscle and tendon of head, sequela','Y','0000-00-00 00:00:00'),(132576,10,'S09.19XD ','Other specified injury of muscle and tendon of head, subsequent encounter','Y','0000-00-00 00:00:00'),(132574,10,'S09.12XS ','Laceration of muscle and tendon of head, sequela','Y','0000-00-00 00:00:00'),(132575,10,'S09.19XA ','Other specified injury of muscle and tendon of head, initial encounter','Y','0000-00-00 00:00:00'),(132573,10,'S09.12XD ','Laceration of muscle and tendon of head, subsequent encounter','Y','0000-00-00 00:00:00'),(132572,10,'S09.12XA ','Laceration of muscle and tendon of head, initial encounter','Y','0000-00-00 00:00:00'),(132570,10,'S09.11XD ','Strain of muscle and tendon of head, subsequent encounter','Y','0000-00-00 00:00:00'),(132571,10,'S09.11XS ','Strain of muscle and tendon of head, sequela','Y','0000-00-00 00:00:00'),(132569,10,'S09.11XA ','Strain of muscle and tendon of head, initial encounter','Y','0000-00-00 00:00:00'),(132568,10,'S09.10XS ','Unspecified injury of muscle and tendon of head, sequela','Y','0000-00-00 00:00:00'),(132567,10,'S09.10XD ','Unspecified injury of muscle and tendon of head, subsequent encounter','Y','0000-00-00 00:00:00'),(132566,10,'S09.10XA ','Unspecified injury of muscle and tendon of head, initial encounter','Y','0000-00-00 00:00:00'),(132565,10,'S09.0XXS ','Injury of blood vessels of head, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(132564,10,'S09.0XXD ','Injury of blood vessels of head, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(132562,10,'S08.89XS ','Traumatic amputation of other parts of head, sequela','Y','0000-00-00 00:00:00'),(132563,10,'S09.0XXA ','Injury of blood vessels of head, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(132561,10,'S08.89XD ','Traumatic amputation of other parts of head, subsequent encounter','Y','0000-00-00 00:00:00'),(132559,10,'S08.812S ','Partial traumatic amputation of nose, sequela','Y','0000-00-00 00:00:00'),(132560,10,'S08.89XA ','Traumatic amputation of other parts of head, initial encounter','Y','0000-00-00 00:00:00'),(132558,10,'S08.812D ','Partial traumatic amputation of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(132556,10,'S08.811S ','Complete traumatic amputation of nose, sequela','Y','0000-00-00 00:00:00'),(132557,10,'S08.812A ','Partial traumatic amputation of nose, initial encounter','Y','0000-00-00 00:00:00'),(132555,10,'S08.811D ','Complete traumatic amputation of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(132553,10,'S08.129S ','Partial traumatic amputation of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(132554,10,'S08.811A ','Complete traumatic amputation of nose, initial encounter','Y','0000-00-00 00:00:00'),(132552,10,'S08.129D ','Partial traumatic amputation of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(132551,10,'S08.129A ','Partial traumatic amputation of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(132549,10,'S08.122D ','Partial traumatic amputation of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(132550,10,'S08.122S ','Partial traumatic amputation of left ear, sequela','Y','0000-00-00 00:00:00'),(132548,10,'S08.122A ','Partial traumatic amputation of left ear, initial encounter','Y','0000-00-00 00:00:00'),(132547,10,'S08.121S ','Partial traumatic amputation of right ear, sequela','Y','0000-00-00 00:00:00'),(132546,10,'S08.121D ','Partial traumatic amputation of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(132545,10,'S08.121A ','Partial traumatic amputation of right ear, initial encounter','Y','0000-00-00 00:00:00'),(132544,10,'S08.119S ','Complete traumatic amputation of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(132542,10,'S08.119A ','Complete traumatic amputation of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(132543,10,'S08.119D ','Complete traumatic amputation of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(132541,10,'S08.112S ','Complete traumatic amputation of left ear, sequela','Y','0000-00-00 00:00:00'),(132540,10,'S08.112D ','Complete traumatic amputation of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(132538,10,'S08.111S ','Complete traumatic amputation of right ear, sequela','Y','0000-00-00 00:00:00'),(132539,10,'S08.112A ','Complete traumatic amputation of left ear, initial encounter','Y','0000-00-00 00:00:00'),(132537,10,'S08.111D ','Complete traumatic amputation of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(132535,10,'S08.0XXS ','Avulsion of scalp, sequela','Y','0000-00-00 00:00:00'),(132536,10,'S08.111A ','Complete traumatic amputation of right ear, initial encounter','Y','0000-00-00 00:00:00'),(132534,10,'S08.0XXD ','Avulsion of scalp, subsequent encounter','Y','0000-00-00 00:00:00'),(132532,10,'S07.9XXS ','Crushing injury of head, part unspecified, sequela','Y','0000-00-00 00:00:00'),(132533,10,'S08.0XXA ','Avulsion of scalp, initial encounter','Y','0000-00-00 00:00:00'),(132531,10,'S07.9XXD ','Crushing injury of head, part unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(132530,10,'S07.9XXA ','Crushing injury of head, part unspecified, initial encounter','Y','0000-00-00 00:00:00'),(132529,10,'S07.8XXS ','Crushing injury of other parts of head, sequela','Y','0000-00-00 00:00:00'),(132528,10,'S07.8XXD ','Crushing injury of other parts of head, subsequent encounter','Y','0000-00-00 00:00:00'),(132527,10,'S07.8XXA ','Crushing injury of other parts of head, initial encounter','Y','0000-00-00 00:00:00'),(132525,10,'S07.1XXD ','Crushing injury of skull, subsequent encounter','Y','0000-00-00 00:00:00'),(132526,10,'S07.1XXS ','Crushing injury of skull, sequela','Y','0000-00-00 00:00:00'),(132524,10,'S07.1XXA ','Crushing injury of skull, initial encounter','Y','0000-00-00 00:00:00'),(132522,10,'S07.0XXD ','Crushing injury of face, subsequent encounter','Y','0000-00-00 00:00:00'),(132523,10,'S07.0XXS ','Crushing injury of face, sequela','Y','0000-00-00 00:00:00'),(132521,10,'S07.0XXA ','Crushing injury of face, initial encounter','Y','0000-00-00 00:00:00'),(132520,10,'S06.A1XS ','Traumatic brain compression with herniation, sequela','Y','0000-00-00 00:00:00'),(132518,10,'S06.A1XA ','Traumatic brain compression with herniation, initial encounter','Y','0000-00-00 00:00:00'),(132519,10,'S06.A1XD ','Traumatic brain compression with herniation, subsequent encounter','Y','0000-00-00 00:00:00'),(132517,10,'S06.A0XS ','Traumatic brain compression without herniation, sequela','Y','0000-00-00 00:00:00'),(132515,10,'S06.A0XA ','Traumatic brain compression without herniation, initial encounter','Y','0000-00-00 00:00:00'),(132516,10,'S06.A0XD ','Traumatic brain compression without herniation, subsequent encounter','Y','0000-00-00 00:00:00'),(132514,10,'S06.9X9S ','Unspecified intracranial injury with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(132513,10,'S06.9X9D ','Unspecified intracranial injury with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(132512,10,'S06.9X9A ','Unspecified intracranial injury with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(132511,10,'S06.9XAS ','Unspecified intracranial injury with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(132510,10,'S06.9XAD ','Unspecified intracranial injury with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(132509,10,'S06.9XAA ','Unspecified intracranial injury with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(132508,10,'S06.9X8A ','Unspecified intracranial injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132507,10,'S06.9X7A ','Unspecified intracranial injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132506,10,'S06.9X6S ','Unspecified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(132505,10,'S06.9X6D ','Unspecified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(132504,10,'S06.9X6A ','Unspecified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(132503,10,'S06.9X5S ','Unspecified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela','Y','0000-00-00 00:00:00'),(132502,10,'S06.9X5D ','Unspecified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter','Y','0000-00-00 00:00:00'),(132501,10,'S06.9X5A ','Unspecified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','Y','0000-00-00 00:00:00'),(132500,10,'S06.9X4S ','Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(132499,10,'S06.9X4D ','Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(132498,10,'S06.9X4A ','Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(132497,10,'S06.9X3S ','Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132496,10,'S06.9X3D ','Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132495,10,'S06.9X3A ','Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132494,10,'S06.9X2S ','Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132493,10,'S06.9X2D ','Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132492,10,'S06.9X2A ','Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132491,10,'S06.9X1S ','Unspecified intracranial injury with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(132490,10,'S06.9X1D ','Unspecified intracranial injury with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(132489,10,'S06.9X1A ','Unspecified intracranial injury with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(132488,10,'S06.9X0S ','Unspecified intracranial injury without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(132487,10,'S06.9X0D ','Unspecified intracranial injury without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(132486,10,'S06.9X0A ','Unspecified intracranial injury without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132485,10,'S06.899S ','Other specified intracranial injury with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(132484,10,'S06.899D ','Other specified intracranial injury with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(132483,10,'S06.899A ','Other specified intracranial injury with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(132482,10,'S06.89AS ','Other specified intracranial injury with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(132481,10,'S06.89AD ','Other specified intracranial injury with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(132480,10,'S06.89AA ','Other specified intracranial injury with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(132479,10,'S06.898A ','Other specified intracranial injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132478,10,'S06.897A ','Other specified intracranial injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132477,10,'S06.896S ','Other specified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(132476,10,'S06.896D ','Other specified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(132475,10,'S06.896A ','Other specified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(132474,10,'S06.895S ','Other specified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela','Y','0000-00-00 00:00:00'),(132473,10,'S06.895D ','Other specified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter','Y','0000-00-00 00:00:00'),(132472,10,'S06.895A ','Other specified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','Y','0000-00-00 00:00:00'),(132471,10,'S06.894S ','Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(132470,10,'S06.894D ','Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(132469,10,'S06.894A ','Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(132468,10,'S06.893S ','Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132467,10,'S06.893D ','Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132466,10,'S06.893A ','Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132465,10,'S06.892S ','Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132464,10,'S06.892D ','Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132463,10,'S06.892A ','Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132462,10,'S06.891S ','Other specified intracranial injury with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(132461,10,'S06.891D ','Other specified intracranial injury with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(132460,10,'S06.891A ','Other specified intracranial injury with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(132459,10,'S06.890S ','Other specified intracranial injury without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(132458,10,'S06.890D ','Other specified intracranial injury without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(132457,10,'S06.890A ','Other specified intracranial injury without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132456,10,'S06.8A9S ','Primary blast injury of brain, not elsewhere classified with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(132455,10,'S06.8A9D ','Primary blast injury of brain, not elsewhere classified with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(132454,10,'S06.8A9A ','Primary blast injury of brain, not elsewhere classified with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(132453,10,'S06.8AAS ','Primary blast injury of brain, not elsewhere classified with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(132452,10,'S06.8AAD ','Primary blast injury of brain, not elsewhere classified with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(132451,10,'S06.8AAA ','Primary blast injury of brain, not elsewhere classified with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(132450,10,'S06.8A8A ','Primary blast injury of brain, not elsewhere classified with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132449,10,'S06.8A7A ','Primary blast injury of brain, not elsewhere classified with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132448,10,'S06.8A6S ','Primary blast injury of brain, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(132447,10,'S06.8A6D ','Primary blast injury of brain, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(132446,10,'S06.8A6A ','Primary blast injury of brain, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(132445,10,'S06.8A5S ','Primary blast injury of brain, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela','Y','0000-00-00 00:00:00'),(132444,10,'S06.8A5D ','Primary blast injury of brain, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter','Y','0000-00-00 00:00:00'),(132443,10,'S06.8A5A ','Primary blast injury of brain, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','Y','0000-00-00 00:00:00'),(132442,10,'S06.8A4S ','Primary blast injury of brain, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(132441,10,'S06.8A4D ','Primary blast injury of brain, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(132440,10,'S06.8A4A ','Primary blast injury of brain, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(132439,10,'S06.8A3S ','Primary blast injury of brain, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132438,10,'S06.8A3D ','Primary blast injury of brain, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132437,10,'S06.8A3A ','Primary blast injury of brain, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132436,10,'S06.8A2S ','Primary blast injury of brain, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132435,10,'S06.8A2D ','Primary blast injury of brain, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132434,10,'S06.8A2A ','Primary blast injury of brain, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132433,10,'S06.8A1S ','Primary blast injury of brain, not elsewhere classified with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(132432,10,'S06.8A1D ','Primary blast injury of brain, not elsewhere classified with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(132431,10,'S06.8A1A ','Primary blast injury of brain, not elsewhere classified with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(132430,10,'S06.8A0S ','Primary blast injury of brain, not elsewhere classified without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(132429,10,'S06.8A0D ','Primary blast injury of brain, not elsewhere classified without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(132428,10,'S06.8A0A ','Primary blast injury of brain, not elsewhere classified without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132427,10,'S06.829S ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(132426,10,'S06.829D ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(132425,10,'S06.829A ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(132424,10,'S06.82AS ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(132423,10,'S06.82AD ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(132422,10,'S06.82AA ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(132421,10,'S06.828A ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132420,10,'S06.827A ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132419,10,'S06.826S ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(132418,10,'S06.826D ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(132417,10,'S06.826A ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(132416,10,'S06.825S ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela','Y','0000-00-00 00:00:00'),(132415,10,'S06.825D ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter','Y','0000-00-00 00:00:00'),(132414,10,'S06.825A ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','Y','0000-00-00 00:00:00'),(132413,10,'S06.824S ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(132412,10,'S06.824D ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(132411,10,'S06.824A ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(132410,10,'S06.823S ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132409,10,'S06.823D ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132408,10,'S06.823A ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132407,10,'S06.822S ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132406,10,'S06.822D ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132405,10,'S06.822A ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132404,10,'S06.821S ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(132403,10,'S06.821D ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(132402,10,'S06.821A ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(132401,10,'S06.820S ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(132400,10,'S06.820D ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(132399,10,'S06.820A ','Injury of left internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132398,10,'S06.819S ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(132397,10,'S06.819D ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(132396,10,'S06.819A ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(132395,10,'S06.81AS ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(132394,10,'S06.81AD ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(132393,10,'S06.81AA ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(132392,10,'S06.818A ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132391,10,'S06.817A ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132390,10,'S06.816S ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(132389,10,'S06.816D ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(132388,10,'S06.816A ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(132387,10,'S06.815S ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela','Y','0000-00-00 00:00:00'),(132386,10,'S06.815D ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter','Y','0000-00-00 00:00:00'),(132385,10,'S06.815A ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','Y','0000-00-00 00:00:00'),(132384,10,'S06.814S ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(132383,10,'S06.814D ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(132382,10,'S06.814A ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(132381,10,'S06.813S ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132380,10,'S06.813D ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132379,10,'S06.813A ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132378,10,'S06.812S ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132377,10,'S06.812D ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132376,10,'S06.812A ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132375,10,'S06.811S ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(132374,10,'S06.811D ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(132373,10,'S06.811A ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(132372,10,'S06.810S ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(132371,10,'S06.810D ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(132370,10,'S06.810A ','Injury of right internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132369,10,'S06.6X9S ','Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(132368,10,'S06.6X9D ','Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(132367,10,'S06.6X9A ','Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(132366,10,'S06.6XAS ','Traumatic subarachnoid hemorrhage with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(132365,10,'S06.6XAD ','Traumatic subarachnoid hemorrhage with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(132364,10,'S06.6XAA ','Traumatic subarachnoid hemorrhage with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(132363,10,'S06.6X8A ','Traumatic subarachnoid hemorrhage with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132362,10,'S06.6X7A ','Traumatic subarachnoid hemorrhage with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132361,10,'S06.6X6S ','Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(132360,10,'S06.6X6D ','Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(132359,10,'S06.6X6A ','Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(132358,10,'S06.6X5S ','Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela','Y','0000-00-00 00:00:00'),(132357,10,'S06.6X5D ','Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter','Y','0000-00-00 00:00:00'),(132356,10,'S06.6X5A ','Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','Y','0000-00-00 00:00:00'),(132355,10,'S06.6X4S ','Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(132354,10,'S06.6X4D ','Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(132353,10,'S06.6X4A ','Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(132352,10,'S06.6X3S ','Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132351,10,'S06.6X3D ','Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132350,10,'S06.6X3A ','Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132349,10,'S06.6X2S ','Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132348,10,'S06.6X2D ','Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132347,10,'S06.6X2A ','Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132346,10,'S06.6X1S ','Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(132345,10,'S06.6X1D ','Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(132344,10,'S06.6X1A ','Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(132343,10,'S06.6X0S ','Traumatic subarachnoid hemorrhage without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(132342,10,'S06.6X0D ','Traumatic subarachnoid hemorrhage without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(132341,10,'S06.6X0A ','Traumatic subarachnoid hemorrhage without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132340,10,'S06.5X9S ','Traumatic subdural hemorrhage with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(132339,10,'S06.5X9D ','Traumatic subdural hemorrhage with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(132338,10,'S06.5X9A ','Traumatic subdural hemorrhage with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(132337,10,'S06.5XAS ','Traumatic subdural hemorrhage with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(132336,10,'S06.5XAD ','Traumatic subdural hemorrhage with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(132335,10,'S06.5XAA ','Traumatic subdural hemorrhage with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(132334,10,'S06.5X8A ','Traumatic subdural hemorrhage with loss of consciousness of any duration with death due to other cause before regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132333,10,'S06.5X7A ','Traumatic subdural hemorrhage with loss of consciousness of any duration with death due to brain injury before regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132332,10,'S06.5X6S ','Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(132331,10,'S06.5X6D ','Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(132330,10,'S06.5X6A ','Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(132329,10,'S06.5X5S ','Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela','Y','0000-00-00 00:00:00'),(132328,10,'S06.5X5D ','Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter','Y','0000-00-00 00:00:00'),(132327,10,'S06.5X5A ','Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','Y','0000-00-00 00:00:00'),(132326,10,'S06.5X4S ','Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(132325,10,'S06.5X4D ','Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(132324,10,'S06.5X4A ','Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(132323,10,'S06.5X3S ','Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132322,10,'S06.5X3D ','Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132321,10,'S06.5X3A ','Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132320,10,'S06.5X2S ','Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132319,10,'S06.5X2D ','Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132318,10,'S06.5X2A ','Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132317,10,'S06.5X1S ','Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(132316,10,'S06.5X1D ','Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(132315,10,'S06.5X1A ','Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(132314,10,'S06.5X0S ','Traumatic subdural hemorrhage without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(132313,10,'S06.5X0D ','Traumatic subdural hemorrhage without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(132311,10,'S06.4X9S ','Epidural hemorrhage with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(132312,10,'S06.5X0A ','Traumatic subdural hemorrhage without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132310,10,'S06.4X9D ','Epidural hemorrhage with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(132309,10,'S06.4X9A ','Epidural hemorrhage with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(132308,10,'S06.4XAS ','Epidural hemorrhage with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(132307,10,'S06.4XAD ','Epidural hemorrhage with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(132306,10,'S06.4XAA ','Epidural hemorrhage with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(132305,10,'S06.4X8A ','Epidural hemorrhage with loss of consciousness of any duration with death due to other causes prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132304,10,'S06.4X7A ','Epidural hemorrhage with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132303,10,'S06.4X6S ','Epidural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(132302,10,'S06.4X6D ','Epidural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(132301,10,'S06.4X6A ','Epidural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(132300,10,'S06.4X5S ','Epidural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela','Y','0000-00-00 00:00:00'),(132299,10,'S06.4X5D ','Epidural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter','Y','0000-00-00 00:00:00'),(132298,10,'S06.4X5A ','Epidural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','Y','0000-00-00 00:00:00'),(132297,10,'S06.4X4S ','Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(132296,10,'S06.4X4D ','Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(132295,10,'S06.4X4A ','Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(132293,10,'S06.4X3D ','Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132294,10,'S06.4X3S ','Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132292,10,'S06.4X3A ','Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132291,10,'S06.4X2S ','Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132290,10,'S06.4X2D ','Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132288,10,'S06.4X1S ','Epidural hemorrhage with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(132289,10,'S06.4X2A ','Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132287,10,'S06.4X1D ','Epidural hemorrhage with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(132286,10,'S06.4X1A ','Epidural hemorrhage with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(132285,10,'S06.4X0S ','Epidural hemorrhage without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(132284,10,'S06.4X0D ','Epidural hemorrhage without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(132283,10,'S06.4X0A ','Epidural hemorrhage without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132282,10,'S06.389S ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(132281,10,'S06.389D ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(132280,10,'S06.389A ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(132279,10,'S06.38AS ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(132278,10,'S06.38AD ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(132277,10,'S06.38AA ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(132276,10,'S06.388A ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132275,10,'S06.387A ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132274,10,'S06.386S ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(132273,10,'S06.386D ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(132272,10,'S06.386A ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(132271,10,'S06.385S ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela','Y','0000-00-00 00:00:00'),(132270,10,'S06.385D ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter','Y','0000-00-00 00:00:00'),(132269,10,'S06.385A ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','Y','0000-00-00 00:00:00'),(132268,10,'S06.384S ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(132267,10,'S06.384D ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(132266,10,'S06.384A ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(132265,10,'S06.383S ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132264,10,'S06.383D ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132263,10,'S06.383A ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132262,10,'S06.382S ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132261,10,'S06.382D ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132260,10,'S06.382A ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132259,10,'S06.381S ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(132258,10,'S06.381D ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(132257,10,'S06.381A ','Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(132256,10,'S06.380S ','Contusion, laceration, and hemorrhage of brainstem without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(132255,10,'S06.380D ','Contusion, laceration, and hemorrhage of brainstem without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(132254,10,'S06.380A ','Contusion, laceration, and hemorrhage of brainstem without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132253,10,'S06.379S ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(132252,10,'S06.379D ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(132251,10,'S06.379A ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(132250,10,'S06.37AS ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(132249,10,'S06.37AD ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(132248,10,'S06.37AA ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(132247,10,'S06.378A ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132246,10,'S06.377A ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132245,10,'S06.376S ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(132244,10,'S06.376D ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(132243,10,'S06.376A ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(132242,10,'S06.375S ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela','Y','0000-00-00 00:00:00'),(132241,10,'S06.375D ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter','Y','0000-00-00 00:00:00'),(132240,10,'S06.375A ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','Y','0000-00-00 00:00:00'),(132239,10,'S06.374S ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(132238,10,'S06.374D ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(132237,10,'S06.374A ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(132236,10,'S06.373S ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132235,10,'S06.373D ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132234,10,'S06.373A ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132233,10,'S06.372S ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132232,10,'S06.372D ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132231,10,'S06.372A ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132230,10,'S06.371S ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(132229,10,'S06.371D ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(132228,10,'S06.371A ','Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(132227,10,'S06.370S ','Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(132226,10,'S06.370D ','Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(132225,10,'S06.370A ','Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132224,10,'S06.369S ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(132223,10,'S06.369D ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(132222,10,'S06.369A ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(132221,10,'S06.36AS ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(132220,10,'S06.36AD ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(132219,10,'S06.36AA ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(132218,10,'S06.368A ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132217,10,'S06.367A ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132216,10,'S06.366S ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(132215,10,'S06.366D ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(132214,10,'S06.366A ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(132213,10,'S06.365S ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela','Y','0000-00-00 00:00:00'),(132212,10,'S06.365D ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter','Y','0000-00-00 00:00:00'),(132211,10,'S06.365A ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','Y','0000-00-00 00:00:00'),(132210,10,'S06.364S ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(132209,10,'S06.364D ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(132208,10,'S06.364A ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(132207,10,'S06.363S ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 1 hours to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132206,10,'S06.363D ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 1 hours to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132205,10,'S06.363A ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 1 hours to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132204,10,'S06.362S ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132203,10,'S06.362D ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132202,10,'S06.362A ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132201,10,'S06.361S ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(132200,10,'S06.361D ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(132199,10,'S06.361A ','Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(132198,10,'S06.360S ','Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(132197,10,'S06.360D ','Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(132196,10,'S06.360A ','Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132195,10,'S06.359S ','Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(132194,10,'S06.359D ','Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(132193,10,'S06.359A ','Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(132192,10,'S06.35AS ','Traumatic hemorrhage of left cerebrum with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(132191,10,'S06.35AD ','Traumatic hemorrhage of left cerebrum with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(132190,10,'S06.35AA ','Traumatic hemorrhage of left cerebrum with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(132189,10,'S06.358A ','Traumatic hemorrhage of left cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132188,10,'S06.357A ','Traumatic hemorrhage of left cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132187,10,'S06.356S ','Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(132186,10,'S06.356D ','Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(132185,10,'S06.356A ','Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(132184,10,'S06.355S ','Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela','Y','0000-00-00 00:00:00'),(132183,10,'S06.355D ','Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter','Y','0000-00-00 00:00:00'),(132182,10,'S06.355A ','Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','Y','0000-00-00 00:00:00'),(132181,10,'S06.354S ','Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(132180,10,'S06.354D ','Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(132179,10,'S06.354A ','Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(132178,10,'S06.353S ','Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132177,10,'S06.353D ','Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132176,10,'S06.353A ','Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132175,10,'S06.352S ','Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132174,10,'S06.352D ','Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132173,10,'S06.352A ','Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132172,10,'S06.351S ','Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(132171,10,'S06.351D ','Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(132170,10,'S06.351A ','Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(132169,10,'S06.350S ','Traumatic hemorrhage of left cerebrum without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(132168,10,'S06.350D ','Traumatic hemorrhage of left cerebrum without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(132167,10,'S06.350A ','Traumatic hemorrhage of left cerebrum without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132166,10,'S06.349S ','Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(132165,10,'S06.349D ','Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(132164,10,'S06.349A ','Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(132163,10,'S06.34AS ','Traumatic hemorrhage of right cerebrum with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(132162,10,'S06.34AD ','Traumatic hemorrhage of right cerebrum with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(132161,10,'S06.34AA ','Traumatic hemorrhage of right cerebrum with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(132160,10,'S06.348A ','Traumatic hemorrhage of right cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132159,10,'S06.347A ','Traumatic hemorrhage of right cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132158,10,'S06.346S ','Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(132157,10,'S06.346D ','Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(132156,10,'S06.346A ','Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(132155,10,'S06.345S ','Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela','Y','0000-00-00 00:00:00'),(132154,10,'S06.345D ','Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter','Y','0000-00-00 00:00:00'),(132153,10,'S06.345A ','Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','Y','0000-00-00 00:00:00'),(132152,10,'S06.344S ','Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(132151,10,'S06.344D ','Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(132150,10,'S06.344A ','Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(132149,10,'S06.343S ','Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132148,10,'S06.343D ','Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132147,10,'S06.343A ','Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132146,10,'S06.342S ','Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132145,10,'S06.342D ','Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132144,10,'S06.342A ','Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132143,10,'S06.341S ','Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(132142,10,'S06.341D ','Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(132141,10,'S06.341A ','Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(132140,10,'S06.340S ','Traumatic hemorrhage of right cerebrum without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(132139,10,'S06.340D ','Traumatic hemorrhage of right cerebrum without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(132138,10,'S06.340A ','Traumatic hemorrhage of right cerebrum without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132137,10,'S06.339S ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(132136,10,'S06.339D ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(132135,10,'S06.339A ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(132134,10,'S06.33AS ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(132133,10,'S06.33AD ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(132132,10,'S06.33AA ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(132131,10,'S06.338A ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132130,10,'S06.337A ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132129,10,'S06.336S ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(132128,10,'S06.336D ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(132127,10,'S06.336A ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(132126,10,'S06.335S ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela','Y','0000-00-00 00:00:00'),(132125,10,'S06.335D ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter','Y','0000-00-00 00:00:00'),(132124,10,'S06.335A ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','Y','0000-00-00 00:00:00'),(132123,10,'S06.334S ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(132122,10,'S06.334D ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(132121,10,'S06.334A ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(132120,10,'S06.333S ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132119,10,'S06.333D ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132118,10,'S06.333A ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132117,10,'S06.332S ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132116,10,'S06.332D ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132115,10,'S06.332A ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132114,10,'S06.331S ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(132113,10,'S06.331D ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(132112,10,'S06.331A ','Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(132111,10,'S06.330S ','Contusion and laceration of cerebrum, unspecified, without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(132110,10,'S06.330D ','Contusion and laceration of cerebrum, unspecified, without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(132109,10,'S06.330A ','Contusion and laceration of cerebrum, unspecified, without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132108,10,'S06.329S ','Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(132107,10,'S06.329D ','Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(132106,10,'S06.329A ','Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(132105,10,'S06.32AS ','Contusion and laceration of left cerebrum with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(132104,10,'S06.32AD ','Contusion and laceration of left cerebrum with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(132103,10,'S06.32AA ','Contusion and laceration of left cerebrum with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(132102,10,'S06.328A ','Contusion and laceration of left cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132101,10,'S06.327A ','Contusion and laceration of left cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132100,10,'S06.326S ','Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(132099,10,'S06.326D ','Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(132098,10,'S06.326A ','Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(132097,10,'S06.325S ','Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela','Y','0000-00-00 00:00:00'),(132096,10,'S06.325D ','Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter','Y','0000-00-00 00:00:00'),(132095,10,'S06.325A ','Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','Y','0000-00-00 00:00:00'),(132094,10,'S06.324S ','Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(132093,10,'S06.324D ','Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(132092,10,'S06.324A ','Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(132091,10,'S06.323S ','Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132090,10,'S06.323D ','Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132089,10,'S06.323A ','Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132088,10,'S06.322S ','Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132087,10,'S06.322D ','Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132086,10,'S06.322A ','Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132085,10,'S06.321S ','Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(132084,10,'S06.321D ','Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(132083,10,'S06.321A ','Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(132082,10,'S06.320S ','Contusion and laceration of left cerebrum without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(132081,10,'S06.320D ','Contusion and laceration of left cerebrum without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(132080,10,'S06.320A ','Contusion and laceration of left cerebrum without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132079,10,'S06.319S ','Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(132078,10,'S06.319D ','Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(132077,10,'S06.319A ','Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(132076,10,'S06.31AS ','Contusion and laceration of right cerebrum with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(132075,10,'S06.31AD ','Contusion and laceration of right cerebrum with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(132074,10,'S06.31AA ','Contusion and laceration of right cerebrum with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(132073,10,'S06.318A ','Contusion and laceration of right cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132072,10,'S06.317A ','Contusion and laceration of right cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132071,10,'S06.316S ','Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(132070,10,'S06.316D ','Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(132069,10,'S06.316A ','Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(132068,10,'S06.315S ','Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela','Y','0000-00-00 00:00:00'),(132067,10,'S06.315D ','Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter','Y','0000-00-00 00:00:00'),(132066,10,'S06.315A ','Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','Y','0000-00-00 00:00:00'),(132065,10,'S06.314S ','Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(132064,10,'S06.314D ','Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(132063,10,'S06.314A ','Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(132062,10,'S06.313S ','Contusion and laceration of right cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132061,10,'S06.313D ','Contusion and laceration of right cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132060,10,'S06.313A ','Contusion and laceration of right cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132059,10,'S06.312S ','Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132058,10,'S06.312D ','Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132057,10,'S06.312A ','Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132056,10,'S06.311S ','Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(132055,10,'S06.311D ','Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(132054,10,'S06.311A ','Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(132053,10,'S06.310S ','Contusion and laceration of right cerebrum without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(132052,10,'S06.310D ','Contusion and laceration of right cerebrum without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(132051,10,'S06.310A ','Contusion and laceration of right cerebrum without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132050,10,'S06.309S ','Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(132049,10,'S06.309D ','Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(132048,10,'S06.309A ','Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(132047,10,'S06.30AS ','Unspecified focal traumatic brain injury with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(132046,10,'S06.30AD ','Unspecified focal traumatic brain injury with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(132045,10,'S06.30AA ','Unspecified focal traumatic brain injury with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(132044,10,'S06.308A ','Unspecified focal traumatic brain injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132043,10,'S06.307A ','Unspecified focal traumatic brain injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132042,10,'S06.306S ','Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(132041,10,'S06.306D ','Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(132040,10,'S06.306A ','Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(132039,10,'S06.305S ','Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela','Y','0000-00-00 00:00:00'),(132038,10,'S06.305D ','Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter','Y','0000-00-00 00:00:00'),(132037,10,'S06.305A ','Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','Y','0000-00-00 00:00:00'),(132036,10,'S06.304S ','Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(132035,10,'S06.304D ','Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(132034,10,'S06.304A ','Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(132033,10,'S06.303S ','Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132032,10,'S06.303D ','Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132031,10,'S06.303A ','Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132030,10,'S06.302S ','Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132029,10,'S06.302D ','Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132028,10,'S06.302A ','Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132027,10,'S06.301S ','Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(132026,10,'S06.301D ','Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(132025,10,'S06.301A ','Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(132024,10,'S06.300S ','Unspecified focal traumatic brain injury without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(132023,10,'S06.300D ','Unspecified focal traumatic brain injury without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(132022,10,'S06.300A ','Unspecified focal traumatic brain injury without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132021,10,'S06.2X9S ','Diffuse traumatic brain injury with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(132020,10,'S06.2X9D ','Diffuse traumatic brain injury with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(132019,10,'S06.2X9A ','Diffuse traumatic brain injury with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(132018,10,'S06.2XAS ','Diffuse traumatic brain injury with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(132017,10,'S06.2XAD ','Diffuse traumatic brain injury with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(132016,10,'S06.2XAA ','Diffuse traumatic brain injury with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(132015,10,'S06.2X8A ','Diffuse traumatic brain injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132014,10,'S06.2X7A ','Diffuse traumatic brain injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(132013,10,'S06.2X6S ','Diffuse traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(132012,10,'S06.2X6D ','Diffuse traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(132011,10,'S06.2X6A ','Diffuse traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(132010,10,'S06.2X5S ','Diffuse traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious levels, sequela','Y','0000-00-00 00:00:00'),(132009,10,'S06.2X5D ','Diffuse traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious levels, subsequent encounter','Y','0000-00-00 00:00:00'),(132008,10,'S06.2X5A ','Diffuse traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious levels, initial encounter','Y','0000-00-00 00:00:00'),(132007,10,'S06.2X4S ','Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(132006,10,'S06.2X4D ','Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(132005,10,'S06.2X4A ','Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(132004,10,'S06.2X3S ','Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132003,10,'S06.2X3D ','Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(132002,10,'S06.2X3A ','Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(132001,10,'S06.2X2S ','Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(132000,10,'S06.2X2D ','Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(131999,10,'S06.2X2A ','Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(131998,10,'S06.2X1S ','Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(131997,10,'S06.2X1D ','Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(131995,10,'S06.2X0S ','Diffuse traumatic brain injury without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(131996,10,'S06.2X1A ','Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(131994,10,'S06.2X0D ','Diffuse traumatic brain injury without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(131993,10,'S06.2X0A ','Diffuse traumatic brain injury without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(131992,10,'S06.1X9S ','Traumatic cerebral edema with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(131991,10,'S06.1X9D ','Traumatic cerebral edema with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(131990,10,'S06.1X9A ','Traumatic cerebral edema with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(131989,10,'S06.1XAS ','Traumatic cerebral edema with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(131988,10,'S06.1XAD ','Traumatic cerebral edema with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(131987,10,'S06.1XAA ','Traumatic cerebral edema with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(131986,10,'S06.1X8A ','Traumatic cerebral edema with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(131985,10,'S06.1X7A ','Traumatic cerebral edema with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter','Y','0000-00-00 00:00:00'),(131984,10,'S06.1X6S ','Traumatic cerebral edema with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela','Y','0000-00-00 00:00:00'),(131983,10,'S06.1X6D ','Traumatic cerebral edema with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter','Y','0000-00-00 00:00:00'),(131982,10,'S06.1X6A ','Traumatic cerebral edema with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter','Y','0000-00-00 00:00:00'),(131981,10,'S06.1X5S ','Traumatic cerebral edema with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela','Y','0000-00-00 00:00:00'),(131980,10,'S06.1X5D ','Traumatic cerebral edema with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter','Y','0000-00-00 00:00:00'),(131979,10,'S06.1X5A ','Traumatic cerebral edema with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter','Y','0000-00-00 00:00:00'),(131978,10,'S06.1X4S ','Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, sequela','Y','0000-00-00 00:00:00'),(131977,10,'S06.1X4D ','Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, subsequent encounter','Y','0000-00-00 00:00:00'),(131976,10,'S06.1X4A ','Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, initial encounter','Y','0000-00-00 00:00:00'),(131975,10,'S06.1X3S ','Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela','Y','0000-00-00 00:00:00'),(131974,10,'S06.1X3D ','Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(131973,10,'S06.1X3A ','Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(131972,10,'S06.1X2S ','Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes, sequela','Y','0000-00-00 00:00:00'),(131971,10,'S06.1X2D ','Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter','Y','0000-00-00 00:00:00'),(131970,10,'S06.1X2A ','Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes, initial encounter','Y','0000-00-00 00:00:00'),(131969,10,'S06.1X1S ','Traumatic cerebral edema with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(131968,10,'S06.1X1D ','Traumatic cerebral edema with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(131967,10,'S06.1X1A ','Traumatic cerebral edema with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(131966,10,'S06.1X0S ','Traumatic cerebral edema without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(131965,10,'S06.1X0D ','Traumatic cerebral edema without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(131963,10,'S06.0X9S ','Concussion with loss of consciousness of unspecified duration, sequela','Y','0000-00-00 00:00:00'),(131964,10,'S06.1X0A ','Traumatic cerebral edema without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(131962,10,'S06.0X9D ','Concussion with loss of consciousness of unspecified duration, subsequent encounter','Y','0000-00-00 00:00:00'),(131961,10,'S06.0X9A ','Concussion with loss of consciousness of unspecified duration, initial encounter','Y','0000-00-00 00:00:00'),(131960,10,'S06.0XAS ','Concussion with loss of consciousness status unknown, sequela','Y','0000-00-00 00:00:00'),(131959,10,'S06.0XAD ','Concussion with loss of consciousness status unknown, subsequent encounter','Y','0000-00-00 00:00:00'),(131958,10,'S06.0XAA ','Concussion with loss of consciousness status unknown, initial encounter','Y','0000-00-00 00:00:00'),(131957,10,'S06.0X1S ','Concussion with loss of consciousness of 30 minutes or less, sequela','Y','0000-00-00 00:00:00'),(131956,10,'S06.0X1D ','Concussion with loss of consciousness of 30 minutes or less, subsequent encounter','Y','0000-00-00 00:00:00'),(131955,10,'S06.0X1A ','Concussion with loss of consciousness of 30 minutes or less, initial encounter','Y','0000-00-00 00:00:00'),(131954,10,'S06.0X0S ','Concussion without loss of consciousness, sequela','Y','0000-00-00 00:00:00'),(131952,10,'S06.0X0A ','Concussion without loss of consciousness, initial encounter','Y','0000-00-00 00:00:00'),(131953,10,'S06.0X0D ','Concussion without loss of consciousness, subsequent encounter','Y','0000-00-00 00:00:00'),(131951,10,'S05.92XS ','Unspecified injury of left eye and orbit, sequela','Y','0000-00-00 00:00:00'),(131949,10,'S05.92XA ','Unspecified injury of left eye and orbit, initial encounter','Y','0000-00-00 00:00:00'),(131950,10,'S05.92XD ','Unspecified injury of left eye and orbit, subsequent encounter','Y','0000-00-00 00:00:00'),(131948,10,'S05.91XS ','Unspecified injury of right eye and orbit, sequela','Y','0000-00-00 00:00:00'),(131946,10,'S05.91XA ','Unspecified injury of right eye and orbit, initial encounter','Y','0000-00-00 00:00:00'),(131947,10,'S05.91XD ','Unspecified injury of right eye and orbit, subsequent encounter','Y','0000-00-00 00:00:00'),(131945,10,'S05.90XS ','Unspecified injury of unspecified eye and orbit, sequela','Y','0000-00-00 00:00:00'),(131944,10,'S05.90XD ','Unspecified injury of unspecified eye and orbit, subsequent encounter','Y','0000-00-00 00:00:00'),(131942,10,'S05.8X9S ','Other injuries of unspecified eye and orbit, sequela','Y','0000-00-00 00:00:00'),(131943,10,'S05.90XA ','Unspecified injury of unspecified eye and orbit, initial encounter','Y','0000-00-00 00:00:00'),(131941,10,'S05.8X9D ','Other injuries of unspecified eye and orbit, subsequent encounter','Y','0000-00-00 00:00:00'),(131939,10,'S05.8X2S ','Other injuries of left eye and orbit, sequela','Y','0000-00-00 00:00:00'),(131940,10,'S05.8X9A ','Other injuries of unspecified eye and orbit, initial encounter','Y','0000-00-00 00:00:00'),(131938,10,'S05.8X2D ','Other injuries of left eye and orbit, subsequent encounter','Y','0000-00-00 00:00:00'),(131937,10,'S05.8X2A ','Other injuries of left eye and orbit, initial encounter','Y','0000-00-00 00:00:00'),(131936,10,'S05.8X1S ','Other injuries of right eye and orbit, sequela','Y','0000-00-00 00:00:00'),(131934,10,'S05.8X1A ','Other injuries of right eye and orbit, initial encounter','Y','0000-00-00 00:00:00'),(131935,10,'S05.8X1D ','Other injuries of right eye and orbit, subsequent encounter','Y','0000-00-00 00:00:00'),(131932,10,'S05.72XD ','Avulsion of left eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131933,10,'S05.72XS ','Avulsion of left eye, sequela','Y','0000-00-00 00:00:00'),(131930,10,'S05.71XS ','Avulsion of right eye, sequela','Y','0000-00-00 00:00:00'),(131931,10,'S05.72XA ','Avulsion of left eye, initial encounter','Y','0000-00-00 00:00:00'),(131929,10,'S05.71XD ','Avulsion of right eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131927,10,'S05.70XS ','Avulsion of unspecified eye, sequela','Y','0000-00-00 00:00:00'),(131928,10,'S05.71XA ','Avulsion of right eye, initial encounter','Y','0000-00-00 00:00:00'),(131925,10,'S05.70XA ','Avulsion of unspecified eye, initial encounter','Y','0000-00-00 00:00:00'),(131926,10,'S05.70XD ','Avulsion of unspecified eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131924,10,'S05.62XS ','Penetrating wound without foreign body of left eyeball, sequela','Y','0000-00-00 00:00:00'),(131923,10,'S05.62XD ','Penetrating wound without foreign body of left eyeball, subsequent encounter','Y','0000-00-00 00:00:00'),(131922,10,'S05.62XA ','Penetrating wound without foreign body of left eyeball, initial encounter','Y','0000-00-00 00:00:00'),(131920,10,'S05.61XD ','Penetrating wound without foreign body of right eyeball, subsequent encounter','Y','0000-00-00 00:00:00'),(131921,10,'S05.61XS ','Penetrating wound without foreign body of right eyeball, sequela','Y','0000-00-00 00:00:00'),(131919,10,'S05.61XA ','Penetrating wound without foreign body of right eyeball, initial encounter','Y','0000-00-00 00:00:00'),(131918,10,'S05.60XS ','Penetrating wound without foreign body of unspecified eyeball, sequela','Y','0000-00-00 00:00:00'),(131917,10,'S05.60XD ','Penetrating wound without foreign body of unspecified eyeball, subsequent encounter','Y','0000-00-00 00:00:00'),(131916,10,'S05.60XA ','Penetrating wound without foreign body of unspecified eyeball, initial encounter','Y','0000-00-00 00:00:00'),(131915,10,'S05.52XS ','Penetrating wound with foreign body of left eyeball, sequela','Y','0000-00-00 00:00:00'),(131914,10,'S05.52XD ','Penetrating wound with foreign body of left eyeball, subsequent encounter','Y','0000-00-00 00:00:00'),(131913,10,'S05.52XA ','Penetrating wound with foreign body of left eyeball, initial encounter','Y','0000-00-00 00:00:00'),(131912,10,'S05.51XS ','Penetrating wound with foreign body of right eyeball, sequela','Y','0000-00-00 00:00:00'),(131910,10,'S05.51XA ','Penetrating wound with foreign body of right eyeball, initial encounter','Y','0000-00-00 00:00:00'),(131911,10,'S05.51XD ','Penetrating wound with foreign body of right eyeball, subsequent encounter','Y','0000-00-00 00:00:00'),(131909,10,'S05.50XS ','Penetrating wound with foreign body of unspecified eyeball, sequela','Y','0000-00-00 00:00:00'),(131908,10,'S05.50XD ','Penetrating wound with foreign body of unspecified eyeball, subsequent encounter','Y','0000-00-00 00:00:00'),(131907,10,'S05.50XA ','Penetrating wound with foreign body of unspecified eyeball, initial encounter','Y','0000-00-00 00:00:00'),(131906,10,'S05.42XS ','Penetrating wound of orbit with or without foreign body, left eye, sequela','Y','0000-00-00 00:00:00'),(131905,10,'S05.42XD ','Penetrating wound of orbit with or without foreign body, left eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131903,10,'S05.41XS ','Penetrating wound of orbit with or without foreign body, right eye, sequela','Y','0000-00-00 00:00:00'),(131904,10,'S05.42XA ','Penetrating wound of orbit with or without foreign body, left eye, initial encounter','Y','0000-00-00 00:00:00'),(131902,10,'S05.41XD ','Penetrating wound of orbit with or without foreign body, right eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131901,10,'S05.41XA ','Penetrating wound of orbit with or without foreign body, right eye, initial encounter','Y','0000-00-00 00:00:00'),(131900,10,'S05.40XS ','Penetrating wound of orbit with or without foreign body, unspecified eye, sequela','Y','0000-00-00 00:00:00'),(131899,10,'S05.40XD ','Penetrating wound of orbit with or without foreign body, unspecified eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131898,10,'S05.40XA ','Penetrating wound of orbit with or without foreign body, unspecified eye, initial encounter','Y','0000-00-00 00:00:00'),(131897,10,'S05.32XS ','Ocular laceration without prolapse or loss of intraocular tissue, left eye, sequela','Y','0000-00-00 00:00:00'),(131896,10,'S05.32XD ','Ocular laceration without prolapse or loss of intraocular tissue, left eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131895,10,'S05.32XA ','Ocular laceration without prolapse or loss of intraocular tissue, left eye, initial encounter','Y','0000-00-00 00:00:00'),(131894,10,'S05.31XS ','Ocular laceration without prolapse or loss of intraocular tissue, right eye, sequela','Y','0000-00-00 00:00:00'),(131893,10,'S05.31XD ','Ocular laceration without prolapse or loss of intraocular tissue, right eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131892,10,'S05.31XA ','Ocular laceration without prolapse or loss of intraocular tissue, right eye, initial encounter','Y','0000-00-00 00:00:00'),(131891,10,'S05.30XS ','Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye, sequela','Y','0000-00-00 00:00:00'),(131890,10,'S05.30XD ','Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131889,10,'S05.30XA ','Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye, initial encounter','Y','0000-00-00 00:00:00'),(131888,10,'S05.22XS ','Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye, sequela','Y','0000-00-00 00:00:00'),(131887,10,'S05.22XD ','Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131886,10,'S05.22XA ','Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye, initial encounter','Y','0000-00-00 00:00:00'),(131885,10,'S05.21XS ','Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye, sequela','Y','0000-00-00 00:00:00'),(131884,10,'S05.21XD ','Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131883,10,'S05.21XA ','Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye, initial encounter','Y','0000-00-00 00:00:00'),(131882,10,'S05.20XS ','Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye, sequela','Y','0000-00-00 00:00:00'),(131881,10,'S05.20XD ','Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131880,10,'S05.20XA ','Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye, initial encounter','Y','0000-00-00 00:00:00'),(131879,10,'S05.12XS ','Contusion of eyeball and orbital tissues, left eye, sequela','Y','0000-00-00 00:00:00'),(131877,10,'S05.12XA ','Contusion of eyeball and orbital tissues, left eye, initial encounter','Y','0000-00-00 00:00:00'),(131878,10,'S05.12XD ','Contusion of eyeball and orbital tissues, left eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131876,10,'S05.11XS ','Contusion of eyeball and orbital tissues, right eye, sequela','Y','0000-00-00 00:00:00'),(131875,10,'S05.11XD ','Contusion of eyeball and orbital tissues, right eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131873,10,'S05.10XS ','Contusion of eyeball and orbital tissues, unspecified eye, sequela','Y','0000-00-00 00:00:00'),(131874,10,'S05.11XA ','Contusion of eyeball and orbital tissues, right eye, initial encounter','Y','0000-00-00 00:00:00'),(131872,10,'S05.10XD ','Contusion of eyeball and orbital tissues, unspecified eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131871,10,'S05.10XA ','Contusion of eyeball and orbital tissues, unspecified eye, initial encounter','Y','0000-00-00 00:00:00'),(131870,10,'S05.02XS ','Injury of conjunctiva and corneal abrasion without foreign body, left eye, sequela','Y','0000-00-00 00:00:00'),(131869,10,'S05.02XD ','Injury of conjunctiva and corneal abrasion without foreign body, left eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131868,10,'S05.02XA ','Injury of conjunctiva and corneal abrasion without foreign body, left eye, initial encounter','Y','0000-00-00 00:00:00'),(131867,10,'S05.01XS ','Injury of conjunctiva and corneal abrasion without foreign body, right eye, sequela','Y','0000-00-00 00:00:00'),(131866,10,'S05.01XD ','Injury of conjunctiva and corneal abrasion without foreign body, right eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131865,10,'S05.01XA ','Injury of conjunctiva and corneal abrasion without foreign body, right eye, initial encounter','Y','0000-00-00 00:00:00'),(131864,10,'S05.00XS ','Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye, sequela','Y','0000-00-00 00:00:00'),(131863,10,'S05.00XD ','Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131862,10,'S05.00XA ','Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye, initial encounter','Y','0000-00-00 00:00:00'),(131861,10,'S04.9XXS ','Injury of unspecified cranial nerve, sequela','Y','0000-00-00 00:00:00'),(131859,10,'S04.9XXA ','Injury of unspecified cranial nerve, initial encounter','Y','0000-00-00 00:00:00'),(131860,10,'S04.9XXD ','Injury of unspecified cranial nerve, subsequent encounter','Y','0000-00-00 00:00:00'),(131858,10,'S04.899S ','Injury of other cranial nerves, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131857,10,'S04.899D ','Injury of other cranial nerves, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(131855,10,'S04.892S ','Injury of other cranial nerves, left side, sequela','Y','0000-00-00 00:00:00'),(131856,10,'S04.899A ','Injury of other cranial nerves, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(131854,10,'S04.892D ','Injury of other cranial nerves, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(131853,10,'S04.892A ','Injury of other cranial nerves, left side, initial encounter','Y','0000-00-00 00:00:00'),(131851,10,'S04.891D ','Injury of other cranial nerves, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(131852,10,'S04.891S ','Injury of other cranial nerves, right side, sequela','Y','0000-00-00 00:00:00'),(131850,10,'S04.891A ','Injury of other cranial nerves, right side, initial encounter','Y','0000-00-00 00:00:00'),(131849,10,'S04.819S ','Injury of olfactory [1st ] nerve, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131848,10,'S04.819D ','Injury of olfactory [1st ] nerve, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(131846,10,'S04.812S ','Injury of olfactory [1st ] nerve, left side, sequela','Y','0000-00-00 00:00:00'),(131847,10,'S04.819A ','Injury of olfactory [1st ] nerve, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(131845,10,'S04.812D ','Injury of olfactory [1st ] nerve, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(131844,10,'S04.812A ','Injury of olfactory [1st ] nerve, left side, initial encounter','Y','0000-00-00 00:00:00'),(131843,10,'S04.811S ','Injury of olfactory [1st ] nerve, right side, sequela','Y','0000-00-00 00:00:00'),(131841,10,'S04.811A ','Injury of olfactory [1st ] nerve, right side, initial encounter','Y','0000-00-00 00:00:00'),(131842,10,'S04.811D ','Injury of olfactory [1st ] nerve, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(131840,10,'S04.72XS ','Injury of accessory nerve, left side, sequela','Y','0000-00-00 00:00:00'),(131838,10,'S04.72XA ','Injury of accessory nerve, left side, initial encounter','Y','0000-00-00 00:00:00'),(131839,10,'S04.72XD ','Injury of accessory nerve, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(131837,10,'S04.71XS ','Injury of accessory nerve, right side, sequela','Y','0000-00-00 00:00:00'),(131835,10,'S04.71XA ','Injury of accessory nerve, right side, initial encounter','Y','0000-00-00 00:00:00'),(131836,10,'S04.71XD ','Injury of accessory nerve, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(131834,10,'S04.70XS ','Injury of accessory nerve, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131833,10,'S04.70XD ','Injury of accessory nerve, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(131831,10,'S04.62XS ','Injury of acoustic nerve, left side, sequela','Y','0000-00-00 00:00:00'),(131832,10,'S04.70XA ','Injury of accessory nerve, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(131830,10,'S04.62XD ','Injury of acoustic nerve, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(131829,10,'S04.62XA ','Injury of acoustic nerve, left side, initial encounter','Y','0000-00-00 00:00:00'),(131827,10,'S04.61XD ','Injury of acoustic nerve, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(131828,10,'S04.61XS ','Injury of acoustic nerve, right side, sequela','Y','0000-00-00 00:00:00'),(131826,10,'S04.61XA ','Injury of acoustic nerve, right side, initial encounter','Y','0000-00-00 00:00:00'),(131825,10,'S04.60XS ','Injury of acoustic nerve, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131824,10,'S04.60XD ','Injury of acoustic nerve, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(131823,10,'S04.60XA ','Injury of acoustic nerve, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(131821,10,'S04.52XD ','Injury of facial nerve, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(131822,10,'S04.52XS ','Injury of facial nerve, left side, sequela','Y','0000-00-00 00:00:00'),(131820,10,'S04.52XA ','Injury of facial nerve, left side, initial encounter','Y','0000-00-00 00:00:00'),(131818,10,'S04.51XD ','Injury of facial nerve, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(131819,10,'S04.51XS ','Injury of facial nerve, right side, sequela','Y','0000-00-00 00:00:00'),(131817,10,'S04.51XA ','Injury of facial nerve, right side, initial encounter','Y','0000-00-00 00:00:00'),(131815,10,'S04.50XD ','Injury of facial nerve, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(131816,10,'S04.50XS ','Injury of facial nerve, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131814,10,'S04.50XA ','Injury of facial nerve, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(131812,10,'S04.42XD ','Injury of abducent nerve, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(131813,10,'S04.42XS ','Injury of abducent nerve, left side, sequela','Y','0000-00-00 00:00:00'),(131811,10,'S04.42XA ','Injury of abducent nerve, left side, initial encounter','Y','0000-00-00 00:00:00'),(131809,10,'S04.41XD ','Injury of abducent nerve, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(131810,10,'S04.41XS ','Injury of abducent nerve, right side, sequela','Y','0000-00-00 00:00:00'),(131808,10,'S04.41XA ','Injury of abducent nerve, right side, initial encounter','Y','0000-00-00 00:00:00'),(131806,10,'S04.40XD ','Injury of abducent nerve, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(131807,10,'S04.40XS ','Injury of abducent nerve, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131805,10,'S04.40XA ','Injury of abducent nerve, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(131803,10,'S04.32XD ','Injury of trigeminal nerve, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(131804,10,'S04.32XS ','Injury of trigeminal nerve, left side, sequela','Y','0000-00-00 00:00:00'),(131802,10,'S04.32XA ','Injury of trigeminal nerve, left side, initial encounter','Y','0000-00-00 00:00:00'),(131801,10,'S04.31XS ','Injury of trigeminal nerve, right side, sequela','Y','0000-00-00 00:00:00'),(131800,10,'S04.31XD ','Injury of trigeminal nerve, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(131799,10,'S04.31XA ','Injury of trigeminal nerve, right side, initial encounter','Y','0000-00-00 00:00:00'),(131797,10,'S04.30XD ','Injury of trigeminal nerve, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(131798,10,'S04.30XS ','Injury of trigeminal nerve, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131796,10,'S04.30XA ','Injury of trigeminal nerve, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(131794,10,'S04.22XD ','Injury of trochlear nerve, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(131795,10,'S04.22XS ','Injury of trochlear nerve, left side, sequela','Y','0000-00-00 00:00:00'),(131793,10,'S04.22XA ','Injury of trochlear nerve, left side, initial encounter','Y','0000-00-00 00:00:00'),(131792,10,'S04.21XS ','Injury of trochlear nerve, right side, sequela','Y','0000-00-00 00:00:00'),(131790,10,'S04.21XA ','Injury of trochlear nerve, right side, initial encounter','Y','0000-00-00 00:00:00'),(131791,10,'S04.21XD ','Injury of trochlear nerve, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(131789,10,'S04.20XS ','Injury of trochlear nerve, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131788,10,'S04.20XD ','Injury of trochlear nerve, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(131786,10,'S04.12XS ','Injury of oculomotor nerve, left side, sequela','Y','0000-00-00 00:00:00'),(131787,10,'S04.20XA ','Injury of trochlear nerve, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(131785,10,'S04.12XD ','Injury of oculomotor nerve, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(131783,10,'S04.11XS ','Injury of oculomotor nerve, right side, sequela','Y','0000-00-00 00:00:00'),(131784,10,'S04.12XA ','Injury of oculomotor nerve, left side, initial encounter','Y','0000-00-00 00:00:00'),(131782,10,'S04.11XD ','Injury of oculomotor nerve, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(131781,10,'S04.11XA ','Injury of oculomotor nerve, right side, initial encounter','Y','0000-00-00 00:00:00'),(131780,10,'S04.10XS ','Injury of oculomotor nerve, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131779,10,'S04.10XD ','Injury of oculomotor nerve, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(131778,10,'S04.10XA ','Injury of oculomotor nerve, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(131776,10,'S04.049D ','Injury of visual cortex, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(131777,10,'S04.049S ','Injury of visual cortex, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131775,10,'S04.049A ','Injury of visual cortex, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(131773,10,'S04.042D ','Injury of visual cortex, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(131774,10,'S04.042S ','Injury of visual cortex, left side, sequela','Y','0000-00-00 00:00:00'),(131772,10,'S04.042A ','Injury of visual cortex, left side, initial encounter','Y','0000-00-00 00:00:00'),(131770,10,'S04.041D ','Injury of visual cortex, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(131771,10,'S04.041S ','Injury of visual cortex, right side, sequela','Y','0000-00-00 00:00:00'),(131769,10,'S04.041A ','Injury of visual cortex, right side, initial encounter','Y','0000-00-00 00:00:00'),(131768,10,'S04.039S ','Injury of optic tract and pathways, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131766,10,'S04.039A ','Injury of optic tract and pathways, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(131767,10,'S04.039D ','Injury of optic tract and pathways, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(131765,10,'S04.032S ','Injury of optic tract and pathways, left side, sequela','Y','0000-00-00 00:00:00'),(131764,10,'S04.032D ','Injury of optic tract and pathways, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(131762,10,'S04.031S ','Injury of optic tract and pathways, right side, sequela','Y','0000-00-00 00:00:00'),(131763,10,'S04.032A ','Injury of optic tract and pathways, left side, initial encounter','Y','0000-00-00 00:00:00'),(131761,10,'S04.031D ','Injury of optic tract and pathways, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(131760,10,'S04.031A ','Injury of optic tract and pathways, right side, initial encounter','Y','0000-00-00 00:00:00'),(131759,10,'S04.02XS ','Injury of optic chiasm, sequela','Y','0000-00-00 00:00:00'),(131757,10,'S04.02XA ','Injury of optic chiasm, initial encounter','Y','0000-00-00 00:00:00'),(131758,10,'S04.02XD ','Injury of optic chiasm, subsequent encounter','Y','0000-00-00 00:00:00'),(131756,10,'S04.019S ','Injury of optic nerve, unspecified eye, sequela','Y','0000-00-00 00:00:00'),(131755,10,'S04.019D ','Injury of optic nerve, unspecified eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131753,10,'S04.012S ','Injury of optic nerve, left eye, sequela','Y','0000-00-00 00:00:00'),(131754,10,'S04.019A ','Injury of optic nerve, unspecified eye, initial encounter','Y','0000-00-00 00:00:00'),(131751,10,'S04.012A ','Injury of optic nerve, left eye, initial encounter','Y','0000-00-00 00:00:00'),(131752,10,'S04.012D ','Injury of optic nerve, left eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131750,10,'S04.011S ','Injury of optic nerve, right eye, sequela','Y','0000-00-00 00:00:00'),(131748,10,'S04.011A ','Injury of optic nerve, right eye, initial encounter','Y','0000-00-00 00:00:00'),(131749,10,'S04.011D ','Injury of optic nerve, right eye, subsequent encounter','Y','0000-00-00 00:00:00'),(131747,10,'S03.9XXS ','Sprain of joints and ligaments of unspecified parts of head, sequela','Y','0000-00-00 00:00:00'),(131746,10,'S03.9XXD ','Sprain of joints and ligaments of unspecified parts of head, subsequent encounter','Y','0000-00-00 00:00:00'),(131745,10,'S03.9XXA ','Sprain of joints and ligaments of unspecified parts of head, initial encounter','Y','0000-00-00 00:00:00'),(131743,10,'S03.8XXD ','Sprain of joints and ligaments of other parts of head, subsequent encounter','Y','0000-00-00 00:00:00'),(131744,10,'S03.8XXS ','Sprain of joints and ligaments of other parts of head, sequela','Y','0000-00-00 00:00:00'),(131742,10,'S03.8XXA ','Sprain of joints and ligaments of other parts of head, initial encounter','Y','0000-00-00 00:00:00'),(131741,10,'S03.43XS ','Sprain of jaw, bilateral, sequela','Y','0000-00-00 00:00:00'),(131739,10,'S03.43XA ','Sprain of jaw, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(131740,10,'S03.43XD ','Sprain of jaw, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(131738,10,'S03.42XS ','Sprain of jaw, left side, sequela','Y','0000-00-00 00:00:00'),(131737,10,'S03.42XD ','Sprain of jaw, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(131735,10,'S03.41XS ','Sprain of jaw, right side, sequela','Y','0000-00-00 00:00:00'),(131736,10,'S03.42XA ','Sprain of jaw, left side, initial encounter','Y','0000-00-00 00:00:00'),(131734,10,'S03.41XD ','Sprain of jaw, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(131732,10,'S03.40XS ','Sprain of jaw, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131733,10,'S03.41XA ','Sprain of jaw, right side, initial encounter','Y','0000-00-00 00:00:00'),(131731,10,'S03.40XD ','Sprain of jaw, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(131729,10,'S03.2XXS ','Dislocation of tooth, sequela','Y','0000-00-00 00:00:00'),(131730,10,'S03.40XA ','Sprain of jaw, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(131727,10,'S03.2XXA ','Dislocation of tooth, initial encounter','Y','0000-00-00 00:00:00'),(131728,10,'S03.2XXD ','Dislocation of tooth, subsequent encounter','Y','0000-00-00 00:00:00'),(131726,10,'S03.1XXS ','Dislocation of septal cartilage of nose, sequela','Y','0000-00-00 00:00:00'),(131724,10,'S03.1XXA ','Dislocation of septal cartilage of nose, initial encounter','Y','0000-00-00 00:00:00'),(131725,10,'S03.1XXD ','Dislocation of septal cartilage of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(131723,10,'S03.03XS ','Dislocation of jaw, bilateral, sequela','Y','0000-00-00 00:00:00'),(131721,10,'S03.03XA ','Dislocation of jaw, bilateral, initial encounter','Y','0000-00-00 00:00:00'),(131722,10,'S03.03XD ','Dislocation of jaw, bilateral, subsequent encounter','Y','0000-00-00 00:00:00'),(131720,10,'S03.02XS ','Dislocation of jaw, left side, sequela','Y','0000-00-00 00:00:00'),(131718,10,'S03.02XA ','Dislocation of jaw, left side, initial encounter','Y','0000-00-00 00:00:00'),(131719,10,'S03.02XD ','Dislocation of jaw, left side, subsequent encounter','Y','0000-00-00 00:00:00'),(131717,10,'S03.01XS ','Dislocation of jaw, right side, sequela','Y','0000-00-00 00:00:00'),(131715,10,'S03.01XA ','Dislocation of jaw, right side, initial encounter','Y','0000-00-00 00:00:00'),(131716,10,'S03.01XD ','Dislocation of jaw, right side, subsequent encounter','Y','0000-00-00 00:00:00'),(131714,10,'S03.00XS ','Dislocation of jaw, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131713,10,'S03.00XD ','Dislocation of jaw, unspecified side, subsequent encounter','Y','0000-00-00 00:00:00'),(131712,10,'S03.00XA ','Dislocation of jaw, unspecified side, initial encounter','Y','0000-00-00 00:00:00'),(131711,10,'S02.92XS ','Unspecified fracture of facial bones, sequela','Y','0000-00-00 00:00:00'),(131710,10,'S02.92XK ','Unspecified fracture of facial bones, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131709,10,'S02.92XG ','Unspecified fracture of facial bones, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131708,10,'S02.92XD ','Unspecified fracture of facial bones, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131707,10,'S02.92XB ','Unspecified fracture of facial bones, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131705,10,'S02.91XS ','Unspecified fracture of skull, sequela','Y','0000-00-00 00:00:00'),(131706,10,'S02.92XA ','Unspecified fracture of facial bones, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131704,10,'S02.91XK ','Unspecified fracture of skull, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131703,10,'S02.91XG ','Unspecified fracture of skull, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131702,10,'S02.91XD ','Unspecified fracture of skull, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131701,10,'S02.91XB ','Unspecified fracture of skull, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131699,10,'S02.85XS ','Fracture of orbit, unspecified, sequela','Y','0000-00-00 00:00:00'),(131700,10,'S02.91XA ','Unspecified fracture of skull, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131698,10,'S02.85XK ','Fracture of orbit, unspecified, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131697,10,'S02.85XG ','Fracture of orbit, unspecified, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131696,10,'S02.85XD ','Fracture of orbit, unspecified, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131695,10,'S02.85XB ','Fracture of orbit, unspecified, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131693,10,'S02.849S ','Fracture of lateral orbital wall, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131694,10,'S02.85XA ','Fracture of orbit, unspecified, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131692,10,'S02.849K ','Fracture of lateral orbital wall, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131691,10,'S02.849G ','Fracture of lateral orbital wall, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131690,10,'S02.849D ','Fracture of lateral orbital wall, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131689,10,'S02.849B ','Fracture of lateral orbital wall, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131688,10,'S02.849A ','Fracture of lateral orbital wall, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131687,10,'S02.842S ','Fracture of lateral orbital wall, left side, sequela','Y','0000-00-00 00:00:00'),(131686,10,'S02.842K ','Fracture of lateral orbital wall, left side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131685,10,'S02.842G ','Fracture of lateral orbital wall, left side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131684,10,'S02.842D ','Fracture of lateral orbital wall, left side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131683,10,'S02.842B ','Fracture of lateral orbital wall, left side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131681,10,'S02.841S ','Fracture of lateral orbital wall, right side, sequela','Y','0000-00-00 00:00:00'),(131682,10,'S02.842A ','Fracture of lateral orbital wall, left side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131680,10,'S02.841K ','Fracture of lateral orbital wall, right side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131679,10,'S02.841G ','Fracture of lateral orbital wall, right side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131678,10,'S02.841D ','Fracture of lateral orbital wall, right side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131677,10,'S02.841B ','Fracture of lateral orbital wall, right side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131676,10,'S02.841A ','Fracture of lateral orbital wall, right side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131675,10,'S02.839S ','Fracture of medial orbital wall, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131674,10,'S02.839K ','Fracture of medial orbital wall, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131673,10,'S02.839G ','Fracture of medial orbital wall, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131672,10,'S02.839D ','Fracture of medial orbital wall, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131671,10,'S02.839B ','Fracture of medial orbital wall, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131669,10,'S02.832S ','Fracture of medial orbital wall, left side, sequela','Y','0000-00-00 00:00:00'),(131670,10,'S02.839A ','Fracture of medial orbital wall, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131668,10,'S02.832K ','Fracture of medial orbital wall, left side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131667,10,'S02.832G ','Fracture of medial orbital wall, left side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131666,10,'S02.832D ','Fracture of medial orbital wall, left side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131665,10,'S02.832B ','Fracture of medial orbital wall, left side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131664,10,'S02.832A ','Fracture of medial orbital wall, left side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131663,10,'S02.831S ','Fracture of medial orbital wall, right side, sequela','Y','0000-00-00 00:00:00'),(131662,10,'S02.831K ','Fracture of medial orbital wall, right side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131661,10,'S02.831G ','Fracture of medial orbital wall, right side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131660,10,'S02.831D ','Fracture of medial orbital wall, right side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131659,10,'S02.831B ','Fracture of medial orbital wall, right side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131657,10,'S02.82XS ','Fracture of other specified skull and facial bones, left side, sequela','Y','0000-00-00 00:00:00'),(131658,10,'S02.831A ','Fracture of medial orbital wall, right side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131656,10,'S02.82XK ','Fracture of other specified skull and facial bones, left side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131655,10,'S02.82XG ','Fracture of other specified skull and facial bones, left side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131654,10,'S02.82XD ','Fracture of other specified skull and facial bones, left side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131653,10,'S02.82XB ','Fracture of other specified skull and facial bones, left side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131652,10,'S02.82XA ','Fracture of other specified skull and facial bones, left side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131651,10,'S02.81XS ','Fracture of other specified skull and facial bones, right side, sequela','Y','0000-00-00 00:00:00'),(131650,10,'S02.81XK ','Fracture of other specified skull and facial bones, right side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131649,10,'S02.81XG ','Fracture of other specified skull and facial bones, right side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131648,10,'S02.81XD ','Fracture of other specified skull and facial bones, right side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131647,10,'S02.81XB ','Fracture of other specified skull and facial bones, right side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131646,10,'S02.81XA ','Fracture of other specified skull and facial bones, right side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131645,10,'S02.80XS ','Fracture of other specified skull and facial bones, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131644,10,'S02.80XK ','Fracture of other specified skull and facial bones, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131643,10,'S02.80XG ','Fracture of other specified skull and facial bones, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131642,10,'S02.80XD ','Fracture of other specified skull and facial bones, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131641,10,'S02.80XB ','Fracture of other specified skull and facial bones, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131639,10,'S02.69XS ','Fracture of mandible of other specified site, sequela','Y','0000-00-00 00:00:00'),(131640,10,'S02.80XA ','Fracture of other specified skull and facial bones, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131638,10,'S02.69XK ','Fracture of mandible of other specified site, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131637,10,'S02.69XG ','Fracture of mandible of other specified site, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131636,10,'S02.69XD ','Fracture of mandible of other specified site, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131635,10,'S02.69XB ','Fracture of mandible of other specified site, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131634,10,'S02.69XA ','Fracture of mandible of other specified site, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131633,10,'S02.672S ','Fracture of alveolus of left mandible, sequela','Y','0000-00-00 00:00:00'),(131632,10,'S02.672K ','Fracture of alveolus of left mandible, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131631,10,'S02.672G ','Fracture of alveolus of left mandible, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131630,10,'S02.672D ','Fracture of alveolus of left mandible, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131629,10,'S02.672B ','Fracture of alveolus of left mandible, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131628,10,'S02.672A ','Fracture of alveolus of left mandible, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131627,10,'S02.671S ','Fracture of alveolus of right mandible, sequela','Y','0000-00-00 00:00:00'),(131626,10,'S02.671K ','Fracture of alveolus of right mandible, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131625,10,'S02.671G ','Fracture of alveolus of right mandible, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131624,10,'S02.671D ','Fracture of alveolus of right mandible, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131623,10,'S02.671B ','Fracture of alveolus of right mandible, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131621,10,'S02.670S ','Fracture of alveolus of mandible, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131622,10,'S02.671A ','Fracture of alveolus of right mandible, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131620,10,'S02.670K ','Fracture of alveolus of mandible, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131619,10,'S02.670G ','Fracture of alveolus of mandible, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131618,10,'S02.670D ','Fracture of alveolus of mandible, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131617,10,'S02.670B ','Fracture of alveolus of mandible, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131616,10,'S02.670A ','Fracture of alveolus of mandible, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131615,10,'S02.66XS ','Fracture of symphysis of mandible, sequela','Y','0000-00-00 00:00:00'),(131614,10,'S02.66XK ','Fracture of symphysis of mandible, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131613,10,'S02.66XG ','Fracture of symphysis of mandible, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131612,10,'S02.66XD ','Fracture of symphysis of mandible, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131610,10,'S02.66XA ','Fracture of symphysis of mandible, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131611,10,'S02.66XB ','Fracture of symphysis of mandible, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131609,10,'S02.652S ','Fracture of angle of left mandible, sequela','Y','0000-00-00 00:00:00'),(131608,10,'S02.652K ','Fracture of angle of left mandible, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131607,10,'S02.652G ','Fracture of angle of left mandible, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131605,10,'S02.652B ','Fracture of angle of left mandible, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131606,10,'S02.652D ','Fracture of angle of left mandible, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131604,10,'S02.652A ','Fracture of angle of left mandible, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131603,10,'S02.651S ','Fracture of angle of right mandible, sequela','Y','0000-00-00 00:00:00'),(131602,10,'S02.651K ','Fracture of angle of right mandible, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131601,10,'S02.651G ','Fracture of angle of right mandible, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131600,10,'S02.651D ','Fracture of angle of right mandible, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131598,10,'S02.651A ','Fracture of angle of right mandible, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131599,10,'S02.651B ','Fracture of angle of right mandible, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131597,10,'S02.650S ','Fracture of angle of mandible, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131596,10,'S02.650K ','Fracture of angle of mandible, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131595,10,'S02.650G ','Fracture of angle of mandible, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131594,10,'S02.650D ','Fracture of angle of mandible, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131593,10,'S02.650B ','Fracture of angle of mandible, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131592,10,'S02.650A ','Fracture of angle of mandible, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131591,10,'S02.642S ','Fracture of ramus of left mandible, sequela','Y','0000-00-00 00:00:00'),(131590,10,'S02.642K ','Fracture of ramus of left mandible, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131589,10,'S02.642G ','Fracture of ramus of left mandible, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131587,10,'S02.642B ','Fracture of ramus of left mandible, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131588,10,'S02.642D ','Fracture of ramus of left mandible, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131586,10,'S02.642A ','Fracture of ramus of left mandible, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131585,10,'S02.641S ','Fracture of ramus of right mandible, sequela','Y','0000-00-00 00:00:00'),(131584,10,'S02.641K ','Fracture of ramus of right mandible, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131583,10,'S02.641G ','Fracture of ramus of right mandible, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131581,10,'S02.641B ','Fracture of ramus of right mandible, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131582,10,'S02.641D ','Fracture of ramus of right mandible, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131580,10,'S02.641A ','Fracture of ramus of right mandible, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131579,10,'S02.640S ','Fracture of ramus of mandible, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131578,10,'S02.640K ','Fracture of ramus of mandible, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131577,10,'S02.640G ','Fracture of ramus of mandible, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131576,10,'S02.640D ','Fracture of ramus of mandible, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131575,10,'S02.640B ','Fracture of ramus of mandible, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131574,10,'S02.640A ','Fracture of ramus of mandible, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131573,10,'S02.632S ','Fracture of coronoid process of left mandible, sequela','Y','0000-00-00 00:00:00'),(131572,10,'S02.632K ','Fracture of coronoid process of left mandible, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131571,10,'S02.632G ','Fracture of coronoid process of left mandible, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131570,10,'S02.632D ','Fracture of coronoid process of left mandible, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131569,10,'S02.632B ','Fracture of coronoid process of left mandible, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131567,10,'S02.631S ','Fracture of coronoid process of right mandible, sequela','Y','0000-00-00 00:00:00'),(131568,10,'S02.632A ','Fracture of coronoid process of left mandible, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131566,10,'S02.631K ','Fracture of coronoid process of right mandible, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131565,10,'S02.631G ','Fracture of coronoid process of right mandible, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131564,10,'S02.631D ','Fracture of coronoid process of right mandible, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131563,10,'S02.631B ','Fracture of coronoid process of right mandible, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131562,10,'S02.631A ','Fracture of coronoid process of right mandible, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131561,10,'S02.630S ','Fracture of coronoid process of mandible, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131560,10,'S02.630K ','Fracture of coronoid process of mandible, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131559,10,'S02.630G ','Fracture of coronoid process of mandible, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131558,10,'S02.630D ','Fracture of coronoid process of mandible, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131557,10,'S02.630B ','Fracture of coronoid process of mandible, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131556,10,'S02.630A ','Fracture of coronoid process of mandible, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131555,10,'S02.622S ','Fracture of subcondylar process of left mandible, sequela','Y','0000-00-00 00:00:00'),(131554,10,'S02.622K ','Fracture of subcondylar process of left mandible, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131553,10,'S02.622G ','Fracture of subcondylar process of left mandible, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131552,10,'S02.622D ','Fracture of subcondylar process of left mandible, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131551,10,'S02.622B ','Fracture of subcondylar process of left mandible, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131549,10,'S02.621S ','Fracture of subcondylar process of right mandible, sequela','Y','0000-00-00 00:00:00'),(131550,10,'S02.622A ','Fracture of subcondylar process of left mandible, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131548,10,'S02.621K ','Fracture of subcondylar process of right mandible, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131547,10,'S02.621G ','Fracture of subcondylar process of right mandible, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131546,10,'S02.621D ','Fracture of subcondylar process of right mandible, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131545,10,'S02.621B ','Fracture of subcondylar process of right mandible, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131544,10,'S02.621A ','Fracture of subcondylar process of right mandible, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131543,10,'S02.620S ','Fracture of subcondylar process of mandible, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131542,10,'S02.620K ','Fracture of subcondylar process of mandible, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131541,10,'S02.620G ','Fracture of subcondylar process of mandible, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131540,10,'S02.620D ','Fracture of subcondylar process of mandible, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131539,10,'S02.620B ','Fracture of subcondylar process of mandible, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131537,10,'S02.612S ','Fracture of condylar process of left mandible, sequela','Y','0000-00-00 00:00:00'),(131538,10,'S02.620A ','Fracture of subcondylar process of mandible, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131536,10,'S02.612K ','Fracture of condylar process of left mandible, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131535,10,'S02.612G ','Fracture of condylar process of left mandible, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131534,10,'S02.612D ','Fracture of condylar process of left mandible, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131533,10,'S02.612B ','Fracture of condylar process of left mandible, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131532,10,'S02.612A ','Fracture of condylar process of left mandible, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131531,10,'S02.611S ','Fracture of condylar process of right mandible, sequela','Y','0000-00-00 00:00:00'),(131530,10,'S02.611K ','Fracture of condylar process of right mandible, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131529,10,'S02.611G ','Fracture of condylar process of right mandible, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131528,10,'S02.611D ','Fracture of condylar process of right mandible, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131527,10,'S02.611B ','Fracture of condylar process of right mandible, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131525,10,'S02.610S ','Fracture of condylar process of mandible, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131526,10,'S02.611A ','Fracture of condylar process of right mandible, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131524,10,'S02.610K ','Fracture of condylar process of mandible, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131523,10,'S02.610G ','Fracture of condylar process of mandible, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131522,10,'S02.610D ','Fracture of condylar process of mandible, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131521,10,'S02.610B ','Fracture of condylar process of mandible, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131520,10,'S02.610A ','Fracture of condylar process of mandible, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131519,10,'S02.609S ','Fracture of mandible, unspecified, sequela','Y','0000-00-00 00:00:00'),(131518,10,'S02.609K ','Fracture of mandible, unspecified, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131517,10,'S02.609G ','Fracture of mandible, unspecified, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131516,10,'S02.609D ','Fracture of mandible, unspecified, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131515,10,'S02.609B ','Fracture of mandible, unspecified, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131514,10,'S02.609A ','Fracture of mandible, unspecified, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131513,10,'S02.602S ','Fracture of unspecified part of body of left mandible, sequela','Y','0000-00-00 00:00:00'),(131512,10,'S02.602K ','Fracture of unspecified part of body of left mandible, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131511,10,'S02.602G ','Fracture of unspecified part of body of left mandible, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131510,10,'S02.602D ','Fracture of unspecified part of body of left mandible, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131509,10,'S02.602B ','Fracture of unspecified part of body of left mandible, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131508,10,'S02.602A ','Fracture of unspecified part of body of left mandible, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131507,10,'S02.601S ','Fracture of unspecified part of body of right mandible, sequela','Y','0000-00-00 00:00:00'),(131506,10,'S02.601K ','Fracture of unspecified part of body of right mandible, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131505,10,'S02.601G ','Fracture of unspecified part of body of right mandible, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131504,10,'S02.601D ','Fracture of unspecified part of body of right mandible, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131503,10,'S02.601B ','Fracture of unspecified part of body of right mandible, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131502,10,'S02.601A ','Fracture of unspecified part of body of right mandible, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131501,10,'S02.600S ','Fracture of unspecified part of body of mandible, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131500,10,'S02.600K ','Fracture of unspecified part of body of mandible, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131499,10,'S02.600G ','Fracture of unspecified part of body of mandible, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131498,10,'S02.600D ','Fracture of unspecified part of body of mandible, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131497,10,'S02.600B ','Fracture of unspecified part of body of mandible, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131495,10,'S02.5XXS ','Fracture of tooth (traumatic), sequela','Y','0000-00-00 00:00:00'),(131496,10,'S02.600A ','Fracture of unspecified part of body of mandible, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131494,10,'S02.5XXK ','Fracture of tooth (traumatic), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131493,10,'S02.5XXG ','Fracture of tooth (traumatic), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131492,10,'S02.5XXD ','Fracture of tooth (traumatic), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131490,10,'S02.5XXA ','Fracture of tooth (traumatic), initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131491,10,'S02.5XXB ','Fracture of tooth (traumatic), initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131489,10,'S02.42XS ','Fracture of alveolus of maxilla, sequela','Y','0000-00-00 00:00:00'),(131488,10,'S02.42XK ','Fracture of alveolus of maxilla, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131487,10,'S02.42XG ','Fracture of alveolus of maxilla, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131485,10,'S02.42XB ','Fracture of alveolus of maxilla, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131486,10,'S02.42XD ','Fracture of alveolus of maxilla, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131484,10,'S02.42XA ','Fracture of alveolus of maxilla, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131482,10,'S02.413K ','LeFort III fracture, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131483,10,'S02.413S ','LeFort III fracture, sequela','Y','0000-00-00 00:00:00'),(131481,10,'S02.413G ','LeFort III fracture, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131480,10,'S02.413D ','LeFort III fracture, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131479,10,'S02.413B ','LeFort III fracture, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131478,10,'S02.413A ','LeFort III fracture, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131476,10,'S02.412K ','LeFort II fracture, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131477,10,'S02.412S ','LeFort II fracture, sequela','Y','0000-00-00 00:00:00'),(131475,10,'S02.412G ','LeFort II fracture, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131474,10,'S02.412D ','LeFort II fracture, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131472,10,'S02.412A ','LeFort II fracture, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131473,10,'S02.412B ','LeFort II fracture, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131471,10,'S02.411S ','LeFort I fracture, sequela','Y','0000-00-00 00:00:00'),(131470,10,'S02.411K ','LeFort I fracture, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131468,10,'S02.411D ','LeFort I fracture, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131469,10,'S02.411G ','LeFort I fracture, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131467,10,'S02.411B ','LeFort I fracture, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131465,10,'S02.40FS ','Zygomatic fracture, left side, sequela','Y','0000-00-00 00:00:00'),(131466,10,'S02.411A ','LeFort I fracture, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131464,10,'S02.40FK ','Zygomatic fracture, left side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131463,10,'S02.40FG ','Zygomatic fracture, left side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131462,10,'S02.40FD ','Zygomatic fracture, left side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131461,10,'S02.40FB ','Zygomatic fracture, left side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131460,10,'S02.40FA ','Zygomatic fracture, left side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131459,10,'S02.40ES ','Zygomatic fracture, right side, sequela','Y','0000-00-00 00:00:00'),(131458,10,'S02.40EK ','Zygomatic fracture, right side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131457,10,'S02.40EG ','Zygomatic fracture, right side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131456,10,'S02.40ED ','Zygomatic fracture, right side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131454,10,'S02.40EA ','Zygomatic fracture, right side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131455,10,'S02.40EB ','Zygomatic fracture, right side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131453,10,'S02.40DS ','Maxillary fracture, left side, sequela','Y','0000-00-00 00:00:00'),(131452,10,'S02.40DK ','Maxillary fracture, left side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131451,10,'S02.40DG ','Maxillary fracture, left side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131449,10,'S02.40DB ','Maxillary fracture, left side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131450,10,'S02.40DD ','Maxillary fracture, left side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131448,10,'S02.40DA ','Maxillary fracture, left side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131447,10,'S02.40CS ','Maxillary fracture, right side, sequela','Y','0000-00-00 00:00:00'),(131446,10,'S02.40CK ','Maxillary fracture, right side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131445,10,'S02.40CG ','Maxillary fracture, right side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131444,10,'S02.40CD ','Maxillary fracture, right side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131442,10,'S02.40CA ','Maxillary fracture, right side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131443,10,'S02.40CB ','Maxillary fracture, right side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131441,10,'S02.40BS ','Malar fracture, left side, sequela','Y','0000-00-00 00:00:00'),(131440,10,'S02.40BK ','Malar fracture, left side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131439,10,'S02.40BG ','Malar fracture, left side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131438,10,'S02.40BD ','Malar fracture, left side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131437,10,'S02.40BB ','Malar fracture, left side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131435,10,'S02.40AS ','Malar fracture, right side, sequela','Y','0000-00-00 00:00:00'),(131436,10,'S02.40BA ','Malar fracture, left side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131434,10,'S02.40AK ','Malar fracture, right side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131433,10,'S02.40AG ','Malar fracture, right side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131431,10,'S02.40AB ','Malar fracture, right side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131432,10,'S02.40AD ','Malar fracture, right side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131430,10,'S02.40AA ','Malar fracture, right side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131429,10,'S02.402S ','Zygomatic fracture, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131428,10,'S02.402K ','Zygomatic fracture, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131426,10,'S02.402D ','Zygomatic fracture, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131427,10,'S02.402G ','Zygomatic fracture, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131425,10,'S02.402B ','Zygomatic fracture, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131424,10,'S02.402A ','Zygomatic fracture, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131422,10,'S02.401K ','Maxillary fracture, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131423,10,'S02.401S ','Maxillary fracture, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131421,10,'S02.401G ','Maxillary fracture, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131420,10,'S02.401D ','Maxillary fracture, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131419,10,'S02.401B ','Maxillary fracture, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131418,10,'S02.401A ','Maxillary fracture, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131417,10,'S02.400S ','Malar fracture, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131416,10,'S02.400K ','Malar fracture, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131415,10,'S02.400G ','Malar fracture, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131414,10,'S02.400D ','Malar fracture, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131413,10,'S02.400B ','Malar fracture, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131412,10,'S02.400A ','Malar fracture, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131411,10,'S02.32XS ','Fracture of orbital floor, left side, sequela','Y','0000-00-00 00:00:00'),(131410,10,'S02.32XK ','Fracture of orbital floor, left side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131409,10,'S02.32XG ','Fracture of orbital floor, left side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131408,10,'S02.32XD ','Fracture of orbital floor, left side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131407,10,'S02.32XB ','Fracture of orbital floor, left side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131406,10,'S02.32XA ','Fracture of orbital floor, left side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131405,10,'S02.31XS ','Fracture of orbital floor, right side, sequela','Y','0000-00-00 00:00:00'),(131404,10,'S02.31XK ','Fracture of orbital floor, right side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131403,10,'S02.31XG ','Fracture of orbital floor, right side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131402,10,'S02.31XD ','Fracture of orbital floor, right side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131401,10,'S02.31XB ','Fracture of orbital floor, right side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131400,10,'S02.31XA ','Fracture of orbital floor, right side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131399,10,'S02.30XS ','Fracture of orbital floor, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131398,10,'S02.30XK ','Fracture of orbital floor, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131397,10,'S02.30XG ','Fracture of orbital floor, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131396,10,'S02.30XD ','Fracture of orbital floor, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131395,10,'S02.30XB ','Fracture of orbital floor, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131394,10,'S02.30XA ','Fracture of orbital floor, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131393,10,'S02.2XXS ','Fracture of nasal bones, sequela','Y','0000-00-00 00:00:00'),(131392,10,'S02.2XXK ','Fracture of nasal bones, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131391,10,'S02.2XXG ','Fracture of nasal bones, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131390,10,'S02.2XXD ','Fracture of nasal bones, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131389,10,'S02.2XXB ','Fracture of nasal bones, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131388,10,'S02.2XXA ','Fracture of nasal bones, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131387,10,'S02.19XS ','Other fracture of base of skull, sequela','Y','0000-00-00 00:00:00'),(131386,10,'S02.19XK ','Other fracture of base of skull, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131385,10,'S02.19XG ','Other fracture of base of skull, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131384,10,'S02.19XD ','Other fracture of base of skull, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131383,10,'S02.19XB ','Other fracture of base of skull, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131381,10,'S02.129S ','Fracture of orbital roof, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131382,10,'S02.19XA ','Other fracture of base of skull, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131380,10,'S02.129K ','Fracture of orbital roof, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131379,10,'S02.129G ','Fracture of orbital roof, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131378,10,'S02.129D ','Fracture of orbital roof, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131377,10,'S02.129B ','Fracture of orbital roof, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131376,10,'S02.129A ','Fracture of orbital roof, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131375,10,'S02.122S ','Fracture of orbital roof, left side, sequela','Y','0000-00-00 00:00:00'),(131374,10,'S02.122K ','Fracture of orbital roof, left side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131373,10,'S02.122G ','Fracture of orbital roof, left side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131372,10,'S02.122D ','Fracture of orbital roof, left side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131371,10,'S02.122B ','Fracture of orbital roof, left side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131369,10,'S02.121S ','Fracture of orbital roof, right side, sequela','Y','0000-00-00 00:00:00'),(131370,10,'S02.122A ','Fracture of orbital roof, left side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131368,10,'S02.121K ','Fracture of orbital roof, right side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131367,10,'S02.121G ','Fracture of orbital roof, right side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131366,10,'S02.121D ','Fracture of orbital roof, right side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131365,10,'S02.121B ','Fracture of orbital roof, right side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131363,10,'S02.11HS ','Other fracture of occiput, left side, sequela','Y','0000-00-00 00:00:00'),(131364,10,'S02.121A ','Fracture of orbital roof, right side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131362,10,'S02.11HK ','Other fracture of occiput, left side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131361,10,'S02.11HG ','Other fracture of occiput, left side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131360,10,'S02.11HD ','Other fracture of occiput, left side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131359,10,'S02.11HB ','Other fracture of occiput, left side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131358,10,'S02.11HA ','Other fracture of occiput, left side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131357,10,'S02.11GS ','Other fracture of occiput, right side, sequela','Y','0000-00-00 00:00:00'),(131356,10,'S02.11GK ','Other fracture of occiput, right side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131355,10,'S02.11GG ','Other fracture of occiput, right side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131354,10,'S02.11GD ','Other fracture of occiput, right side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131353,10,'S02.11GB ','Other fracture of occiput, right side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131352,10,'S02.11GA ','Other fracture of occiput, right side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131351,10,'S02.11FS ','Type III occipital condyle fracture, left side, sequela','Y','0000-00-00 00:00:00'),(131350,10,'S02.11FK ','Type III occipital condyle fracture, left side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131349,10,'S02.11FG ','Type III occipital condyle fracture, left side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131348,10,'S02.11FD ','Type III occipital condyle fracture, left side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131347,10,'S02.11FB ','Type III occipital condyle fracture, left side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131346,10,'S02.11FA ','Type III occipital condyle fracture, left side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131345,10,'S02.11ES ','Type III occipital condyle fracture, right side, sequela','Y','0000-00-00 00:00:00'),(131344,10,'S02.11EK ','Type III occipital condyle fracture, right side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131343,10,'S02.11EG ','Type III occipital condyle fracture, right side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131342,10,'S02.11ED ','Type III occipital condyle fracture, right side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131341,10,'S02.11EB ','Type III occipital condyle fracture, right side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131340,10,'S02.11EA ','Type III occipital condyle fracture, right side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131339,10,'S02.11DS ','Type II occipital condyle fracture, left side, sequela','Y','0000-00-00 00:00:00'),(131338,10,'S02.11DK ','Type II occipital condyle fracture, left side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131337,10,'S02.11DG ','Type II occipital condyle fracture, left side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131336,10,'S02.11DD ','Type II occipital condyle fracture, left side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131334,10,'S02.11DA ','Type II occipital condyle fracture, left side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131335,10,'S02.11DB ','Type II occipital condyle fracture, left side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131333,10,'S02.11CS ','Type II occipital condyle fracture, right side, sequela','Y','0000-00-00 00:00:00'),(131332,10,'S02.11CK ','Type II occipital condyle fracture, right side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131331,10,'S02.11CG ','Type II occipital condyle fracture, right side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131330,10,'S02.11CD ','Type II occipital condyle fracture, right side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131329,10,'S02.11CB ','Type II occipital condyle fracture, right side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131328,10,'S02.11CA ','Type II occipital condyle fracture, right side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131327,10,'S02.11BS ','Type I occipital condyle fracture, left side, sequela','Y','0000-00-00 00:00:00'),(131326,10,'S02.11BK ','Type I occipital condyle fracture, left side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131325,10,'S02.11BG ','Type I occipital condyle fracture, left side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131324,10,'S02.11BD ','Type I occipital condyle fracture, left side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131323,10,'S02.11BB ','Type I occipital condyle fracture, left side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131322,10,'S02.11BA ','Type I occipital condyle fracture, left side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131321,10,'S02.11AS ','Type I occipital condyle fracture, right side, sequela','Y','0000-00-00 00:00:00'),(131320,10,'S02.11AK ','Type I occipital condyle fracture, right side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131319,10,'S02.11AG ','Type I occipital condyle fracture, right side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131318,10,'S02.11AD ','Type I occipital condyle fracture, right side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131317,10,'S02.11AB ','Type I occipital condyle fracture, right side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131316,10,'S02.11AA ','Type I occipital condyle fracture, right side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131315,10,'S02.119S ','Unspecified fracture of occiput, sequela','Y','0000-00-00 00:00:00'),(131314,10,'S02.119K ','Unspecified fracture of occiput, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131313,10,'S02.119G ','Unspecified fracture of occiput, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131312,10,'S02.119D ','Unspecified fracture of occiput, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131311,10,'S02.119B ','Unspecified fracture of occiput, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131310,10,'S02.119A ','Unspecified fracture of occiput, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131309,10,'S02.118S ','Other fracture of occiput, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131308,10,'S02.118K ','Other fracture of occiput, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131307,10,'S02.118G ','Other fracture of occiput, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131306,10,'S02.118D ','Other fracture of occiput, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131305,10,'S02.118B ','Other fracture of occiput, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131304,10,'S02.118A ','Other fracture of occiput, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131303,10,'S02.113S ','Unspecified occipital condyle fracture, sequela','Y','0000-00-00 00:00:00'),(131302,10,'S02.113K ','Unspecified occipital condyle fracture, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131301,10,'S02.113G ','Unspecified occipital condyle fracture, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131300,10,'S02.113D ','Unspecified occipital condyle fracture, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131299,10,'S02.113B ','Unspecified occipital condyle fracture, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131298,10,'S02.113A ','Unspecified occipital condyle fracture, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131297,10,'S02.112S ','Type III occipital condyle fracture, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131296,10,'S02.112K ','Type III occipital condyle fracture, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131295,10,'S02.112G ','Type III occipital condyle fracture, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131294,10,'S02.112D ','Type III occipital condyle fracture, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131293,10,'S02.112B ','Type III occipital condyle fracture, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131292,10,'S02.112A ','Type III occipital condyle fracture, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131291,10,'S02.111S ','Type II occipital condyle fracture, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131290,10,'S02.111K ','Type II occipital condyle fracture, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131289,10,'S02.111G ','Type II occipital condyle fracture, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131288,10,'S02.111D ','Type II occipital condyle fracture, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131287,10,'S02.111B ','Type II occipital condyle fracture, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131286,10,'S02.111A ','Type II occipital condyle fracture, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131285,10,'S02.110S ','Type I occipital condyle fracture, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131284,10,'S02.110K ','Type I occipital condyle fracture, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131283,10,'S02.110G ','Type I occipital condyle fracture, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131282,10,'S02.110D ','Type I occipital condyle fracture, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131281,10,'S02.110B ','Type I occipital condyle fracture, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131280,10,'S02.110A ','Type I occipital condyle fracture, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131279,10,'S02.109S ','Fracture of base of skull, unspecified side, sequela','Y','0000-00-00 00:00:00'),(131278,10,'S02.109K ','Fracture of base of skull, unspecified side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131277,10,'S02.109G ','Fracture of base of skull, unspecified side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131276,10,'S02.109D ','Fracture of base of skull, unspecified side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131275,10,'S02.109B ','Fracture of base of skull, unspecified side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131273,10,'S02.102S ','Fracture of base of skull, left side, sequela','Y','0000-00-00 00:00:00'),(131274,10,'S02.109A ','Fracture of base of skull, unspecified side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131272,10,'S02.102K ','Fracture of base of skull, left side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131271,10,'S02.102G ','Fracture of base of skull, left side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131270,10,'S02.102D ','Fracture of base of skull, left side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131269,10,'S02.102B ','Fracture of base of skull, left side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131268,10,'S02.102A ','Fracture of base of skull, left side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131267,10,'S02.101S ','Fracture of base of skull, right side, sequela','Y','0000-00-00 00:00:00'),(131266,10,'S02.101K ','Fracture of base of skull, right side, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131265,10,'S02.101G ','Fracture of base of skull, right side, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131264,10,'S02.101D ','Fracture of base of skull, right side, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131263,10,'S02.101B ','Fracture of base of skull, right side, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131262,10,'S02.101A ','Fracture of base of skull, right side, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131261,10,'S02.0XXS ','Fracture of vault of skull, sequela','Y','0000-00-00 00:00:00'),(131260,10,'S02.0XXK ','Fracture of vault of skull, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(131259,10,'S02.0XXG ','Fracture of vault of skull, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(131258,10,'S02.0XXD ','Fracture of vault of skull, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(131256,10,'S02.0XXA ','Fracture of vault of skull, initial encounter for closed fracture','Y','0000-00-00 00:00:00'),(131257,10,'S02.0XXB ','Fracture of vault of skull, initial encounter for open fracture','Y','0000-00-00 00:00:00'),(131255,10,'S01.95XS ','Open bite of unspecified part of head, sequela','Y','0000-00-00 00:00:00'),(131254,10,'S01.95XD ','Open bite of unspecified part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(131252,10,'S01.94XS ','Puncture wound with foreign body of unspecified part of head, sequela','Y','0000-00-00 00:00:00'),(131253,10,'S01.95XA ','Open bite of unspecified part of head, initial encounter','Y','0000-00-00 00:00:00'),(131251,10,'S01.94XD ','Puncture wound with foreign body of unspecified part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(131249,10,'S01.93XS ','Puncture wound without foreign body of unspecified part of head, sequela','Y','0000-00-00 00:00:00'),(131250,10,'S01.94XA ','Puncture wound with foreign body of unspecified part of head, initial encounter','Y','0000-00-00 00:00:00'),(131248,10,'S01.93XD ','Puncture wound without foreign body of unspecified part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(131247,10,'S01.93XA ','Puncture wound without foreign body of unspecified part of head, initial encounter','Y','0000-00-00 00:00:00'),(131246,10,'S01.92XS ','Laceration with foreign body of unspecified part of head, sequela','Y','0000-00-00 00:00:00'),(131245,10,'S01.92XD ','Laceration with foreign body of unspecified part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(131244,10,'S01.92XA ','Laceration with foreign body of unspecified part of head, initial encounter','Y','0000-00-00 00:00:00'),(131243,10,'S01.91XS ','Laceration without foreign body of unspecified part of head, sequela','Y','0000-00-00 00:00:00'),(131242,10,'S01.91XD ','Laceration without foreign body of unspecified part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(131241,10,'S01.91XA ','Laceration without foreign body of unspecified part of head, initial encounter','Y','0000-00-00 00:00:00'),(131240,10,'S01.90XS ','Unspecified open wound of unspecified part of head, sequela','Y','0000-00-00 00:00:00'),(131239,10,'S01.90XD ','Unspecified open wound of unspecified part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(131237,10,'S01.85XS ','Open bite of other part of head, sequela','Y','0000-00-00 00:00:00'),(131238,10,'S01.90XA ','Unspecified open wound of unspecified part of head, initial encounter','Y','0000-00-00 00:00:00'),(131236,10,'S01.85XD ','Open bite of other part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(131234,10,'S01.84XS ','Puncture wound with foreign body of other part of head, sequela','Y','0000-00-00 00:00:00'),(131235,10,'S01.85XA ','Open bite of other part of head, initial encounter','Y','0000-00-00 00:00:00'),(131233,10,'S01.84XD ','Puncture wound with foreign body of other part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(131232,10,'S01.84XA ','Puncture wound with foreign body of other part of head, initial encounter','Y','0000-00-00 00:00:00'),(131231,10,'S01.83XS ','Puncture wound without foreign body of other part of head, sequela','Y','0000-00-00 00:00:00'),(131230,10,'S01.83XD ','Puncture wound without foreign body of other part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(131229,10,'S01.83XA ','Puncture wound without foreign body of other part of head, initial encounter','Y','0000-00-00 00:00:00'),(131228,10,'S01.82XS ','Laceration with foreign body of other part of head, sequela','Y','0000-00-00 00:00:00'),(131227,10,'S01.82XD ','Laceration with foreign body of other part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(131226,10,'S01.82XA ','Laceration with foreign body of other part of head, initial encounter','Y','0000-00-00 00:00:00'),(131225,10,'S01.81XS ','Laceration without foreign body of other part of head, sequela','Y','0000-00-00 00:00:00'),(131224,10,'S01.81XD ','Laceration without foreign body of other part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(131223,10,'S01.81XA ','Laceration without foreign body of other part of head, initial encounter','Y','0000-00-00 00:00:00'),(131221,10,'S01.80XD ','Unspecified open wound of other part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(131222,10,'S01.80XS ','Unspecified open wound of other part of head, sequela','Y','0000-00-00 00:00:00'),(131220,10,'S01.80XA ','Unspecified open wound of other part of head, initial encounter','Y','0000-00-00 00:00:00'),(131218,10,'S01.552D ','Open bite of oral cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(131219,10,'S01.552S ','Open bite of oral cavity, sequela','Y','0000-00-00 00:00:00'),(131217,10,'S01.552A ','Open bite of oral cavity, initial encounter','Y','0000-00-00 00:00:00'),(131215,10,'S01.551D ','Open bite of lip, subsequent encounter','Y','0000-00-00 00:00:00'),(131216,10,'S01.551S ','Open bite of lip, sequela','Y','0000-00-00 00:00:00'),(131214,10,'S01.551A ','Open bite of lip, initial encounter','Y','0000-00-00 00:00:00'),(131212,10,'S01.542D ','Puncture wound with foreign body of oral cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(131213,10,'S01.542S ','Puncture wound with foreign body of oral cavity, sequela','Y','0000-00-00 00:00:00'),(131211,10,'S01.542A ','Puncture wound with foreign body of oral cavity, initial encounter','Y','0000-00-00 00:00:00'),(131210,10,'S01.541S ','Puncture wound with foreign body of lip, sequela','Y','0000-00-00 00:00:00'),(131208,10,'S01.541A ','Puncture wound with foreign body of lip, initial encounter','Y','0000-00-00 00:00:00'),(131209,10,'S01.541D ','Puncture wound with foreign body of lip, subsequent encounter','Y','0000-00-00 00:00:00'),(131207,10,'S01.532S ','Puncture wound without foreign body of oral cavity, sequela','Y','0000-00-00 00:00:00'),(131206,10,'S01.532D ','Puncture wound without foreign body of oral cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(131205,10,'S01.532A ','Puncture wound without foreign body of oral cavity, initial encounter','Y','0000-00-00 00:00:00'),(131204,10,'S01.531S ','Puncture wound without foreign body of lip, sequela','Y','0000-00-00 00:00:00'),(131203,10,'S01.531D ','Puncture wound without foreign body of lip, subsequent encounter','Y','0000-00-00 00:00:00'),(131201,10,'S01.522S ','Laceration with foreign body of oral cavity, sequela','Y','0000-00-00 00:00:00'),(131202,10,'S01.531A ','Puncture wound without foreign body of lip, initial encounter','Y','0000-00-00 00:00:00'),(131200,10,'S01.522D ','Laceration with foreign body of oral cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(131198,10,'S01.521S ','Laceration with foreign body of lip, sequela','Y','0000-00-00 00:00:00'),(131199,10,'S01.522A ','Laceration with foreign body of oral cavity, initial encounter','Y','0000-00-00 00:00:00'),(131197,10,'S01.521D ','Laceration with foreign body of lip, subsequent encounter','Y','0000-00-00 00:00:00'),(131195,10,'S01.512S ','Laceration without foreign body of oral cavity, sequela','Y','0000-00-00 00:00:00'),(131196,10,'S01.521A ','Laceration with foreign body of lip, initial encounter','Y','0000-00-00 00:00:00'),(131194,10,'S01.512D ','Laceration without foreign body of oral cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(131193,10,'S01.512A ','Laceration without foreign body of oral cavity, initial encounter','Y','0000-00-00 00:00:00'),(131191,10,'S01.511D ','Laceration without foreign body of lip, subsequent encounter','Y','0000-00-00 00:00:00'),(131192,10,'S01.511S ','Laceration without foreign body of lip, sequela','Y','0000-00-00 00:00:00'),(131190,10,'S01.511A ','Laceration without foreign body of lip, initial encounter','Y','0000-00-00 00:00:00'),(131189,10,'S01.502S ','Unspecified open wound of oral cavity, sequela','Y','0000-00-00 00:00:00'),(131187,10,'S01.502A ','Unspecified open wound of oral cavity, initial encounter','Y','0000-00-00 00:00:00'),(131188,10,'S01.502D ','Unspecified open wound of oral cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(131186,10,'S01.501S ','Unspecified open wound of lip, sequela','Y','0000-00-00 00:00:00'),(131185,10,'S01.501D ','Unspecified open wound of lip, subsequent encounter','Y','0000-00-00 00:00:00'),(131184,10,'S01.501A ','Unspecified open wound of lip, initial encounter','Y','0000-00-00 00:00:00'),(131183,10,'S01.459S ','Open bite of unspecified cheek and temporomandibular area, sequela','Y','0000-00-00 00:00:00'),(131182,10,'S01.459D ','Open bite of unspecified cheek and temporomandibular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131181,10,'S01.459A ','Open bite of unspecified cheek and temporomandibular area, initial encounter','Y','0000-00-00 00:00:00'),(131179,10,'S01.452D ','Open bite of left cheek and temporomandibular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131180,10,'S01.452S ','Open bite of left cheek and temporomandibular area, sequela','Y','0000-00-00 00:00:00'),(131178,10,'S01.452A ','Open bite of left cheek and temporomandibular area, initial encounter','Y','0000-00-00 00:00:00'),(131177,10,'S01.451S ','Open bite of right cheek and temporomandibular area, sequela','Y','0000-00-00 00:00:00'),(131176,10,'S01.451D ','Open bite of right cheek and temporomandibular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131174,10,'S01.449S ','Puncture wound with foreign body of unspecified cheek and temporomandibular area, sequela','Y','0000-00-00 00:00:00'),(131175,10,'S01.451A ','Open bite of right cheek and temporomandibular area, initial encounter','Y','0000-00-00 00:00:00'),(131173,10,'S01.449D ','Puncture wound with foreign body of unspecified cheek and temporomandibular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131171,10,'S01.442S ','Puncture wound with foreign body of left cheek and temporomandibular area, sequela','Y','0000-00-00 00:00:00'),(131172,10,'S01.449A ','Puncture wound with foreign body of unspecified cheek and temporomandibular area, initial encounter','Y','0000-00-00 00:00:00'),(131170,10,'S01.442D ','Puncture wound with foreign body of left cheek and temporomandibular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131169,10,'S01.442A ','Puncture wound with foreign body of left cheek and temporomandibular area, initial encounter','Y','0000-00-00 00:00:00'),(131168,10,'S01.441S ','Puncture wound with foreign body of right cheek and temporomandibular area, sequela','Y','0000-00-00 00:00:00'),(131167,10,'S01.441D ','Puncture wound with foreign body of right cheek and temporomandibular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131166,10,'S01.441A ','Puncture wound with foreign body of right cheek and temporomandibular area, initial encounter','Y','0000-00-00 00:00:00'),(131165,10,'S01.439S ','Puncture wound without foreign body of unspecified cheek and temporomandibular area, sequela','Y','0000-00-00 00:00:00'),(131164,10,'S01.439D ','Puncture wound without foreign body of unspecified cheek and temporomandibular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131163,10,'S01.439A ','Puncture wound without foreign body of unspecified cheek and temporomandibular area, initial encounter','Y','0000-00-00 00:00:00'),(131162,10,'S01.432S ','Puncture wound without foreign body of left cheek and temporomandibular area, sequela','Y','0000-00-00 00:00:00'),(131161,10,'S01.432D ','Puncture wound without foreign body of left cheek and temporomandibular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131160,10,'S01.432A ','Puncture wound without foreign body of left cheek and temporomandibular area, initial encounter','Y','0000-00-00 00:00:00'),(131158,10,'S01.431D ','Puncture wound without foreign body of right cheek and temporomandibular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131159,10,'S01.431S ','Puncture wound without foreign body of right cheek and temporomandibular area, sequela','Y','0000-00-00 00:00:00'),(131157,10,'S01.431A ','Puncture wound without foreign body of right cheek and temporomandibular area, initial encounter','Y','0000-00-00 00:00:00'),(131156,10,'S01.429S ','Laceration with foreign body of unspecified cheek and temporomandibular area, sequela','Y','0000-00-00 00:00:00'),(131155,10,'S01.429D ','Laceration with foreign body of unspecified cheek and temporomandibular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131153,10,'S01.422S ','Laceration with foreign body of left cheek and temporomandibular area, sequela','Y','0000-00-00 00:00:00'),(131154,10,'S01.429A ','Laceration with foreign body of unspecified cheek and temporomandibular area, initial encounter','Y','0000-00-00 00:00:00'),(131152,10,'S01.422D ','Laceration with foreign body of left cheek and temporomandibular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131151,10,'S01.422A ','Laceration with foreign body of left cheek and temporomandibular area, initial encounter','Y','0000-00-00 00:00:00'),(131150,10,'S01.421S ','Laceration with foreign body of right cheek and temporomandibular area, sequela','Y','0000-00-00 00:00:00'),(131149,10,'S01.421D ','Laceration with foreign body of right cheek and temporomandibular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131148,10,'S01.421A ','Laceration with foreign body of right cheek and temporomandibular area, initial encounter','Y','0000-00-00 00:00:00'),(131147,10,'S01.419S ','Laceration without foreign body of unspecified cheek and temporomandibular area, sequela','Y','0000-00-00 00:00:00'),(131146,10,'S01.419D ','Laceration without foreign body of unspecified cheek and temporomandibular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131145,10,'S01.419A ','Laceration without foreign body of unspecified cheek and temporomandibular area, initial encounter','Y','0000-00-00 00:00:00'),(131144,10,'S01.412S ','Laceration without foreign body of left cheek and temporomandibular area, sequela','Y','0000-00-00 00:00:00'),(131143,10,'S01.412D ','Laceration without foreign body of left cheek and temporomandibular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131142,10,'S01.412A ','Laceration without foreign body of left cheek and temporomandibular area, initial encounter','Y','0000-00-00 00:00:00'),(131141,10,'S01.411S ','Laceration without foreign body of right cheek and temporomandibular area, sequela','Y','0000-00-00 00:00:00'),(131140,10,'S01.411D ','Laceration without foreign body of right cheek and temporomandibular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131139,10,'S01.411A ','Laceration without foreign body of right cheek and temporomandibular area, initial encounter','Y','0000-00-00 00:00:00'),(131138,10,'S01.409S ','Unspecified open wound of unspecified cheek and temporomandibular area, sequela','Y','0000-00-00 00:00:00'),(131137,10,'S01.409D ','Unspecified open wound of unspecified cheek and temporomandibular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131136,10,'S01.409A ','Unspecified open wound of unspecified cheek and temporomandibular area, initial encounter','Y','0000-00-00 00:00:00'),(131135,10,'S01.402S ','Unspecified open wound of left cheek and temporomandibular area, sequela','Y','0000-00-00 00:00:00'),(131134,10,'S01.402D ','Unspecified open wound of left cheek and temporomandibular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131133,10,'S01.402A ','Unspecified open wound of left cheek and temporomandibular area, initial encounter','Y','0000-00-00 00:00:00'),(131132,10,'S01.401S ','Unspecified open wound of right cheek and temporomandibular area, sequela','Y','0000-00-00 00:00:00'),(131131,10,'S01.401D ','Unspecified open wound of right cheek and temporomandibular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131129,10,'S01.359S ','Open bite of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(131130,10,'S01.401A ','Unspecified open wound of right cheek and temporomandibular area, initial encounter','Y','0000-00-00 00:00:00'),(131127,10,'S01.359A ','Open bite of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(131128,10,'S01.359D ','Open bite of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(131126,10,'S01.352S ','Open bite of left ear, sequela','Y','0000-00-00 00:00:00'),(131124,10,'S01.352A ','Open bite of left ear, initial encounter','Y','0000-00-00 00:00:00'),(131125,10,'S01.352D ','Open bite of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(131122,10,'S01.351D ','Open bite of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(131123,10,'S01.351S ','Open bite of right ear, sequela','Y','0000-00-00 00:00:00'),(131121,10,'S01.351A ','Open bite of right ear, initial encounter','Y','0000-00-00 00:00:00'),(131119,10,'S01.349D ','Puncture wound with foreign body of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(131120,10,'S01.349S ','Puncture wound with foreign body of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(131118,10,'S01.349A ','Puncture wound with foreign body of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(131117,10,'S01.342S ','Puncture wound with foreign body of left ear, sequela','Y','0000-00-00 00:00:00'),(131116,10,'S01.342D ','Puncture wound with foreign body of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(131114,10,'S01.341S ','Puncture wound with foreign body of right ear, sequela','Y','0000-00-00 00:00:00'),(131115,10,'S01.342A ','Puncture wound with foreign body of left ear, initial encounter','Y','0000-00-00 00:00:00'),(131113,10,'S01.341D ','Puncture wound with foreign body of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(131112,10,'S01.341A ','Puncture wound with foreign body of right ear, initial encounter','Y','0000-00-00 00:00:00'),(131111,10,'S01.339S ','Puncture wound without foreign body of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(131110,10,'S01.339D ','Puncture wound without foreign body of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(131108,10,'S01.332S ','Puncture wound without foreign body of left ear, sequela','Y','0000-00-00 00:00:00'),(131109,10,'S01.339A ','Puncture wound without foreign body of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(131107,10,'S01.332D ','Puncture wound without foreign body of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(131105,10,'S01.331S ','Puncture wound without foreign body of right ear, sequela','Y','0000-00-00 00:00:00'),(131106,10,'S01.332A ','Puncture wound without foreign body of left ear, initial encounter','Y','0000-00-00 00:00:00'),(131104,10,'S01.331D ','Puncture wound without foreign body of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(131103,10,'S01.331A ','Puncture wound without foreign body of right ear, initial encounter','Y','0000-00-00 00:00:00'),(131101,10,'S01.329D ','Laceration with foreign body of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(131102,10,'S01.329S ','Laceration with foreign body of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(131100,10,'S01.329A ','Laceration with foreign body of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(131098,10,'S01.322D ','Laceration with foreign body of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(131099,10,'S01.322S ','Laceration with foreign body of left ear, sequela','Y','0000-00-00 00:00:00'),(131097,10,'S01.322A ','Laceration with foreign body of left ear, initial encounter','Y','0000-00-00 00:00:00'),(131095,10,'S01.321D ','Laceration with foreign body of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(131096,10,'S01.321S ','Laceration with foreign body of right ear, sequela','Y','0000-00-00 00:00:00'),(131094,10,'S01.321A ','Laceration with foreign body of right ear, initial encounter','Y','0000-00-00 00:00:00'),(131092,10,'S01.319D ','Laceration without foreign body of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(131093,10,'S01.319S ','Laceration without foreign body of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(131091,10,'S01.319A ','Laceration without foreign body of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(131090,10,'S01.312S ','Laceration without foreign body of left ear, sequela','Y','0000-00-00 00:00:00'),(131089,10,'S01.312D ','Laceration without foreign body of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(131088,10,'S01.312A ','Laceration without foreign body of left ear, initial encounter','Y','0000-00-00 00:00:00'),(131087,10,'S01.311S ','Laceration without foreign body of right ear, sequela','Y','0000-00-00 00:00:00'),(131085,10,'S01.311A ','Laceration without foreign body of right ear, initial encounter','Y','0000-00-00 00:00:00'),(131086,10,'S01.311D ','Laceration without foreign body of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(131084,10,'S01.309S ','Unspecified open wound of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(131082,10,'S01.309A ','Unspecified open wound of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(131083,10,'S01.309D ','Unspecified open wound of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(131081,10,'S01.302S ','Unspecified open wound of left ear, sequela','Y','0000-00-00 00:00:00'),(131079,10,'S01.302A ','Unspecified open wound of left ear, initial encounter','Y','0000-00-00 00:00:00'),(131080,10,'S01.302D ','Unspecified open wound of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(131078,10,'S01.301S ','Unspecified open wound of right ear, sequela','Y','0000-00-00 00:00:00'),(131077,10,'S01.301D ','Unspecified open wound of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(131075,10,'S01.25XS ','Open bite of nose, sequela','Y','0000-00-00 00:00:00'),(131076,10,'S01.301A ','Unspecified open wound of right ear, initial encounter','Y','0000-00-00 00:00:00'),(131073,10,'S01.25XA ','Open bite of nose, initial encounter','Y','0000-00-00 00:00:00'),(131074,10,'S01.25XD ','Open bite of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(131072,10,'S01.24XS ','Puncture wound with foreign body of nose, sequela','Y','0000-00-00 00:00:00'),(131071,10,'S01.24XD ','Puncture wound with foreign body of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(131070,10,'S01.24XA ','Puncture wound with foreign body of nose, initial encounter','Y','0000-00-00 00:00:00'),(131069,10,'S01.23XS ','Puncture wound without foreign body of nose, sequela','Y','0000-00-00 00:00:00'),(131068,10,'S01.23XD ','Puncture wound without foreign body of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(131066,10,'S01.22XS ','Laceration with foreign body of nose, sequela','Y','0000-00-00 00:00:00'),(131067,10,'S01.23XA ','Puncture wound without foreign body of nose, initial encounter','Y','0000-00-00 00:00:00'),(131065,10,'S01.22XD ','Laceration with foreign body of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(131063,10,'S01.21XS ','Laceration without foreign body of nose, sequela','Y','0000-00-00 00:00:00'),(131064,10,'S01.22XA ','Laceration with foreign body of nose, initial encounter','Y','0000-00-00 00:00:00'),(131062,10,'S01.21XD ','Laceration without foreign body of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(131060,10,'S01.20XS ','Unspecified open wound of nose, sequela','Y','0000-00-00 00:00:00'),(131061,10,'S01.21XA ','Laceration without foreign body of nose, initial encounter','Y','0000-00-00 00:00:00'),(131059,10,'S01.20XD ','Unspecified open wound of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(131057,10,'S01.159S ','Open bite of unspecified eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(131058,10,'S01.20XA ','Unspecified open wound of nose, initial encounter','Y','0000-00-00 00:00:00'),(131056,10,'S01.159D ','Open bite of unspecified eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131055,10,'S01.159A ','Open bite of unspecified eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(131054,10,'S01.152S ','Open bite of left eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(131053,10,'S01.152D ','Open bite of left eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131052,10,'S01.152A ','Open bite of left eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(131050,10,'S01.151D ','Open bite of right eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131051,10,'S01.151S ','Open bite of right eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(131049,10,'S01.151A ','Open bite of right eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(131048,10,'S01.149S ','Puncture wound with foreign body of unspecified eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(131047,10,'S01.149D ','Puncture wound with foreign body of unspecified eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131046,10,'S01.149A ','Puncture wound with foreign body of unspecified eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(131045,10,'S01.142S ','Puncture wound with foreign body of left eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(131043,10,'S01.142A ','Puncture wound with foreign body of left eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(131044,10,'S01.142D ','Puncture wound with foreign body of left eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131042,10,'S01.141S ','Puncture wound with foreign body of right eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(131041,10,'S01.141D ','Puncture wound with foreign body of right eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131040,10,'S01.141A ','Puncture wound with foreign body of right eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(131039,10,'S01.139S ','Puncture wound without foreign body of unspecified eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(131038,10,'S01.139D ','Puncture wound without foreign body of unspecified eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131037,10,'S01.139A ','Puncture wound without foreign body of unspecified eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(131036,10,'S01.132S ','Puncture wound without foreign body of left eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(131035,10,'S01.132D ','Puncture wound without foreign body of left eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131034,10,'S01.132A ','Puncture wound without foreign body of left eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(131033,10,'S01.131S ','Puncture wound without foreign body of right eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(131032,10,'S01.131D ','Puncture wound without foreign body of right eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131031,10,'S01.131A ','Puncture wound without foreign body of right eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(131030,10,'S01.129S ','Laceration with foreign body of unspecified eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(131029,10,'S01.129D ','Laceration with foreign body of unspecified eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131028,10,'S01.129A ','Laceration with foreign body of unspecified eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(131027,10,'S01.122S ','Laceration with foreign body of left eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(131026,10,'S01.122D ','Laceration with foreign body of left eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131025,10,'S01.122A ','Laceration with foreign body of left eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(131023,10,'S01.121D ','Laceration with foreign body of right eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131024,10,'S01.121S ','Laceration with foreign body of right eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(131022,10,'S01.121A ','Laceration with foreign body of right eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(131021,10,'S01.119S ','Laceration without foreign body of unspecified eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(131020,10,'S01.119D ','Laceration without foreign body of unspecified eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131019,10,'S01.119A ','Laceration without foreign body of unspecified eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(131018,10,'S01.112S ','Laceration without foreign body of left eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(131017,10,'S01.112D ','Laceration without foreign body of left eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131016,10,'S01.112A ','Laceration without foreign body of left eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(131015,10,'S01.111S ','Laceration without foreign body of right eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(131014,10,'S01.111D ','Laceration without foreign body of right eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131013,10,'S01.111A ','Laceration without foreign body of right eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(131012,10,'S01.109S ','Unspecified open wound of unspecified eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(131011,10,'S01.109D ','Unspecified open wound of unspecified eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131010,10,'S01.109A ','Unspecified open wound of unspecified eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(131009,10,'S01.102S ','Unspecified open wound of left eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(131007,10,'S01.102A ','Unspecified open wound of left eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(131008,10,'S01.102D ','Unspecified open wound of left eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131006,10,'S01.101S ','Unspecified open wound of right eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(131005,10,'S01.101D ','Unspecified open wound of right eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(131003,10,'S01.05XS ','Open bite of scalp, sequela','Y','0000-00-00 00:00:00'),(131004,10,'S01.101A ','Unspecified open wound of right eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(131001,10,'S01.05XA ','Open bite of scalp, initial encounter','Y','0000-00-00 00:00:00'),(131002,10,'S01.05XD ','Open bite of scalp, subsequent encounter','Y','0000-00-00 00:00:00'),(131000,10,'S01.04XS ','Puncture wound with foreign body of scalp, sequela','Y','0000-00-00 00:00:00'),(130999,10,'S01.04XD ','Puncture wound with foreign body of scalp, subsequent encounter','Y','0000-00-00 00:00:00'),(130997,10,'S01.03XS ','Puncture wound without foreign body of scalp, sequela','Y','0000-00-00 00:00:00'),(130998,10,'S01.04XA ','Puncture wound with foreign body of scalp, initial encounter','Y','0000-00-00 00:00:00'),(130996,10,'S01.03XD ','Puncture wound without foreign body of scalp, subsequent encounter','Y','0000-00-00 00:00:00'),(130995,10,'S01.03XA ','Puncture wound without foreign body of scalp, initial encounter','Y','0000-00-00 00:00:00'),(130994,10,'S01.02XS ','Laceration with foreign body of scalp, sequela','Y','0000-00-00 00:00:00'),(130992,10,'S01.02XA ','Laceration with foreign body of scalp, initial encounter','Y','0000-00-00 00:00:00'),(130993,10,'S01.02XD ','Laceration with foreign body of scalp, subsequent encounter','Y','0000-00-00 00:00:00'),(130991,10,'S01.01XS ','Laceration without foreign body of scalp, sequela','Y','0000-00-00 00:00:00'),(130989,10,'S01.01XA ','Laceration without foreign body of scalp, initial encounter','Y','0000-00-00 00:00:00'),(130990,10,'S01.01XD ','Laceration without foreign body of scalp, subsequent encounter','Y','0000-00-00 00:00:00'),(130987,10,'S01.00XD ','Unspecified open wound of scalp, subsequent encounter','Y','0000-00-00 00:00:00'),(130988,10,'S01.00XS ','Unspecified open wound of scalp, sequela','Y','0000-00-00 00:00:00'),(130986,10,'S01.00XA ','Unspecified open wound of scalp, initial encounter','Y','0000-00-00 00:00:00'),(130984,10,'S00.97XD ','Other superficial bite of unspecified part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(130985,10,'S00.97XS ','Other superficial bite of unspecified part of head, sequela','Y','0000-00-00 00:00:00'),(130983,10,'S00.97XA ','Other superficial bite of unspecified part of head, initial encounter','Y','0000-00-00 00:00:00'),(130982,10,'S00.96XS ','Insect bite (nonvenomous) of unspecified part of head, sequela','Y','0000-00-00 00:00:00'),(130980,10,'S00.96XA ','Insect bite (nonvenomous) of unspecified part of head, initial encounter','Y','0000-00-00 00:00:00'),(130981,10,'S00.96XD ','Insect bite (nonvenomous) of unspecified part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(130979,10,'S00.95XS ','Superficial foreign body of unspecified part of head, sequela','Y','0000-00-00 00:00:00'),(130978,10,'S00.95XD ','Superficial foreign body of unspecified part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(130976,10,'S00.94XS ','External constriction of unspecified part of head, sequela','Y','0000-00-00 00:00:00'),(130977,10,'S00.95XA ','Superficial foreign body of unspecified part of head, initial encounter','Y','0000-00-00 00:00:00'),(130975,10,'S00.94XD ','External constriction of unspecified part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(130974,10,'S00.94XA ','External constriction of unspecified part of head, initial encounter','Y','0000-00-00 00:00:00'),(130973,10,'S00.93XS ','Contusion of unspecified part of head, sequela','Y','0000-00-00 00:00:00'),(130972,10,'S00.93XD ','Contusion of unspecified part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(130971,10,'S00.93XA ','Contusion of unspecified part of head, initial encounter','Y','0000-00-00 00:00:00'),(130970,10,'S00.92XS ','Blister (nonthermal) of unspecified part of head, sequela','Y','0000-00-00 00:00:00'),(130968,10,'S00.92XA ','Blister (nonthermal) of unspecified part of head, initial encounter','Y','0000-00-00 00:00:00'),(130969,10,'S00.92XD ','Blister (nonthermal) of unspecified part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(130967,10,'S00.91XS ','Abrasion of unspecified part of head, sequela','Y','0000-00-00 00:00:00'),(130965,10,'S00.91XA ','Abrasion of unspecified part of head, initial encounter','Y','0000-00-00 00:00:00'),(130966,10,'S00.91XD ','Abrasion of unspecified part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(130964,10,'S00.90XS ','Unspecified superficial injury of unspecified part of head, sequela','Y','0000-00-00 00:00:00'),(130963,10,'S00.90XD ','Unspecified superficial injury of unspecified part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(130962,10,'S00.90XA ','Unspecified superficial injury of unspecified part of head, initial encounter','Y','0000-00-00 00:00:00'),(130960,10,'S00.87XD ','Other superficial bite of other part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(130961,10,'S00.87XS ','Other superficial bite of other part of head, sequela','Y','0000-00-00 00:00:00'),(130959,10,'S00.87XA ','Other superficial bite of other part of head, initial encounter','Y','0000-00-00 00:00:00'),(130958,10,'S00.86XS ','Insect bite (nonvenomous) of other part of head, sequela','Y','0000-00-00 00:00:00'),(130957,10,'S00.86XD ','Insect bite (nonvenomous) of other part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(130955,10,'S00.85XS ','Superficial foreign body of other part of head, sequela','Y','0000-00-00 00:00:00'),(130956,10,'S00.86XA ','Insect bite (nonvenomous) of other part of head, initial encounter','Y','0000-00-00 00:00:00'),(130954,10,'S00.85XD ','Superficial foreign body of other part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(130953,10,'S00.85XA ','Superficial foreign body of other part of head, initial encounter','Y','0000-00-00 00:00:00'),(130951,10,'S00.84XD ','External constriction of other part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(130952,10,'S00.84XS ','External constriction of other part of head, sequela','Y','0000-00-00 00:00:00'),(130950,10,'S00.84XA ','External constriction of other part of head, initial encounter','Y','0000-00-00 00:00:00'),(130948,10,'S00.83XD ','Contusion of other part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(130949,10,'S00.83XS ','Contusion of other part of head, sequela','Y','0000-00-00 00:00:00'),(130947,10,'S00.83XA ','Contusion of other part of head, initial encounter','Y','0000-00-00 00:00:00'),(130946,10,'S00.82XS ','Blister (nonthermal) of other part of head, sequela','Y','0000-00-00 00:00:00'),(130944,10,'S00.82XA ','Blister (nonthermal) of other part of head, initial encounter','Y','0000-00-00 00:00:00'),(130945,10,'S00.82XD ','Blister (nonthermal) of other part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(130943,10,'S00.81XS ','Abrasion of other part of head, sequela','Y','0000-00-00 00:00:00'),(130941,10,'S00.81XA ','Abrasion of other part of head, initial encounter','Y','0000-00-00 00:00:00'),(130942,10,'S00.81XD ','Abrasion of other part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(130940,10,'S00.80XS ','Unspecified superficial injury of other part of head, sequela','Y','0000-00-00 00:00:00'),(130939,10,'S00.80XD ','Unspecified superficial injury of other part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(130938,10,'S00.80XA ','Unspecified superficial injury of other part of head, initial encounter','Y','0000-00-00 00:00:00'),(130936,10,'S00.572D ','Other superficial bite of oral cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(130937,10,'S00.572S ','Other superficial bite of oral cavity, sequela','Y','0000-00-00 00:00:00'),(130935,10,'S00.572A ','Other superficial bite of oral cavity, initial encounter','Y','0000-00-00 00:00:00'),(130934,10,'S00.571S ','Other superficial bite of lip, sequela','Y','0000-00-00 00:00:00'),(130933,10,'S00.571D ','Other superficial bite of lip, subsequent encounter','Y','0000-00-00 00:00:00'),(130931,10,'S00.562S ','Insect bite (nonvenomous) of oral cavity, sequela','Y','0000-00-00 00:00:00'),(130932,10,'S00.571A ','Other superficial bite of lip, initial encounter','Y','0000-00-00 00:00:00'),(130930,10,'S00.562D ','Insect bite (nonvenomous) of oral cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(130928,10,'S00.561S ','Insect bite (nonvenomous) of lip, sequela','Y','0000-00-00 00:00:00'),(130929,10,'S00.562A ','Insect bite (nonvenomous) of oral cavity, initial encounter','Y','0000-00-00 00:00:00'),(130927,10,'S00.561D ','Insect bite (nonvenomous) of lip, subsequent encounter','Y','0000-00-00 00:00:00'),(130925,10,'S00.552S ','Superficial foreign body of oral cavity, sequela','Y','0000-00-00 00:00:00'),(130926,10,'S00.561A ','Insect bite (nonvenomous) of lip, initial encounter','Y','0000-00-00 00:00:00'),(130924,10,'S00.552D ','Superficial foreign body of oral cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(130922,10,'S00.551S ','Superficial foreign body of lip, sequela','Y','0000-00-00 00:00:00'),(130923,10,'S00.552A ','Superficial foreign body of oral cavity, initial encounter','Y','0000-00-00 00:00:00'),(130920,10,'S00.551A ','Superficial foreign body of lip, initial encounter','Y','0000-00-00 00:00:00'),(130921,10,'S00.551D ','Superficial foreign body of lip, subsequent encounter','Y','0000-00-00 00:00:00'),(130919,10,'S00.542S ','External constriction of oral cavity, sequela','Y','0000-00-00 00:00:00'),(130917,10,'S00.542A ','External constriction of oral cavity, initial encounter','Y','0000-00-00 00:00:00'),(130918,10,'S00.542D ','External constriction of oral cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(130915,10,'S00.541D ','External constriction of lip, subsequent encounter','Y','0000-00-00 00:00:00'),(130916,10,'S00.541S ','External constriction of lip, sequela','Y','0000-00-00 00:00:00'),(130914,10,'S00.541A ','External constriction of lip, initial encounter','Y','0000-00-00 00:00:00'),(130912,10,'S00.532D ','Contusion of oral cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(130913,10,'S00.532S ','Contusion of oral cavity, sequela','Y','0000-00-00 00:00:00'),(130910,10,'S00.531S ','Contusion of lip, sequela','Y','0000-00-00 00:00:00'),(130911,10,'S00.532A ','Contusion of oral cavity, initial encounter','Y','0000-00-00 00:00:00'),(130909,10,'S00.531D ','Contusion of lip, subsequent encounter','Y','0000-00-00 00:00:00'),(130908,10,'S00.531A ','Contusion of lip, initial encounter','Y','0000-00-00 00:00:00'),(130907,10,'S00.522S ','Blister (nonthermal) of oral cavity, sequela','Y','0000-00-00 00:00:00'),(130905,10,'S00.522A ','Blister (nonthermal) of oral cavity, initial encounter','Y','0000-00-00 00:00:00'),(130906,10,'S00.522D ','Blister (nonthermal) of oral cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(130904,10,'S00.521S ','Blister (nonthermal) of lip, sequela','Y','0000-00-00 00:00:00'),(130902,10,'S00.521A ','Blister (nonthermal) of lip, initial encounter','Y','0000-00-00 00:00:00'),(130903,10,'S00.521D ','Blister (nonthermal) of lip, subsequent encounter','Y','0000-00-00 00:00:00'),(130900,10,'S00.512D ','Abrasion of oral cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(130901,10,'S00.512S ','Abrasion of oral cavity, sequela','Y','0000-00-00 00:00:00'),(130898,10,'S00.511S ','Abrasion of lip, sequela','Y','0000-00-00 00:00:00'),(130899,10,'S00.512A ','Abrasion of oral cavity, initial encounter','Y','0000-00-00 00:00:00'),(130896,10,'S00.511A ','Abrasion of lip, initial encounter','Y','0000-00-00 00:00:00'),(130897,10,'S00.511D ','Abrasion of lip, subsequent encounter','Y','0000-00-00 00:00:00'),(130895,10,'S00.502S ','Unspecified superficial injury of oral cavity, sequela','Y','0000-00-00 00:00:00'),(130894,10,'S00.502D ','Unspecified superficial injury of oral cavity, subsequent encounter','Y','0000-00-00 00:00:00'),(130892,10,'S00.501S ','Unspecified superficial injury of lip, sequela','Y','0000-00-00 00:00:00'),(130893,10,'S00.502A ','Unspecified superficial injury of oral cavity, initial encounter','Y','0000-00-00 00:00:00'),(130891,10,'S00.501D ','Unspecified superficial injury of lip, subsequent encounter','Y','0000-00-00 00:00:00'),(130889,10,'S00.479S ','Other superficial bite of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(130890,10,'S00.501A ','Unspecified superficial injury of lip, initial encounter','Y','0000-00-00 00:00:00'),(130888,10,'S00.479D ','Other superficial bite of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130886,10,'S00.472S ','Other superficial bite of left ear, sequela','Y','0000-00-00 00:00:00'),(130887,10,'S00.479A ','Other superficial bite of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(130885,10,'S00.472D ','Other superficial bite of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130884,10,'S00.472A ','Other superficial bite of left ear, initial encounter','Y','0000-00-00 00:00:00'),(130883,10,'S00.471S ','Other superficial bite of right ear, sequela','Y','0000-00-00 00:00:00'),(130882,10,'S00.471D ','Other superficial bite of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130880,10,'S00.469S ','Insect bite (nonvenomous) of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(130881,10,'S00.471A ','Other superficial bite of right ear, initial encounter','Y','0000-00-00 00:00:00'),(130879,10,'S00.469D ','Insect bite (nonvenomous) of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130877,10,'S00.462S ','Insect bite (nonvenomous) of left ear, sequela','Y','0000-00-00 00:00:00'),(130878,10,'S00.469A ','Insect bite (nonvenomous) of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(130876,10,'S00.462D ','Insect bite (nonvenomous) of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130874,10,'S00.461S ','Insect bite (nonvenomous) of right ear, sequela','Y','0000-00-00 00:00:00'),(130875,10,'S00.462A ','Insect bite (nonvenomous) of left ear, initial encounter','Y','0000-00-00 00:00:00'),(130873,10,'S00.461D ','Insect bite (nonvenomous) of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130871,10,'S00.459S ','Superficial foreign body of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(130872,10,'S00.461A ','Insect bite (nonvenomous) of right ear, initial encounter','Y','0000-00-00 00:00:00'),(130870,10,'S00.459D ','Superficial foreign body of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130869,10,'S00.459A ','Superficial foreign body of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(130867,10,'S00.452D ','Superficial foreign body of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130868,10,'S00.452S ','Superficial foreign body of left ear, sequela','Y','0000-00-00 00:00:00'),(130866,10,'S00.452A ','Superficial foreign body of left ear, initial encounter','Y','0000-00-00 00:00:00'),(130864,10,'S00.451D ','Superficial foreign body of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130865,10,'S00.451S ','Superficial foreign body of right ear, sequela','Y','0000-00-00 00:00:00'),(130862,10,'S00.449S ','External constriction of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(130863,10,'S00.451A ','Superficial foreign body of right ear, initial encounter','Y','0000-00-00 00:00:00'),(130861,10,'S00.449D ','External constriction of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130860,10,'S00.449A ','External constriction of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(130858,10,'S00.442D ','External constriction of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130859,10,'S00.442S ','External constriction of left ear, sequela','Y','0000-00-00 00:00:00'),(130857,10,'S00.442A ','External constriction of left ear, initial encounter','Y','0000-00-00 00:00:00'),(130855,10,'S00.441D ','External constriction of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130856,10,'S00.441S ','External constriction of right ear, sequela','Y','0000-00-00 00:00:00'),(130853,10,'S00.439S ','Contusion of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(130854,10,'S00.441A ','External constriction of right ear, initial encounter','Y','0000-00-00 00:00:00'),(130852,10,'S00.439D ','Contusion of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130850,10,'S00.432S ','Contusion of left ear, sequela','Y','0000-00-00 00:00:00'),(130851,10,'S00.439A ','Contusion of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(130848,10,'S00.432A ','Contusion of left ear, initial encounter','Y','0000-00-00 00:00:00'),(130849,10,'S00.432D ','Contusion of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130846,10,'S00.431D ','Contusion of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130847,10,'S00.431S ','Contusion of right ear, sequela','Y','0000-00-00 00:00:00'),(130844,10,'S00.429S ','Blister (nonthermal) of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(130845,10,'S00.431A ','Contusion of right ear, initial encounter','Y','0000-00-00 00:00:00'),(130843,10,'S00.429D ','Blister (nonthermal) of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130841,10,'S00.422S ','Blister (nonthermal) of left ear, sequela','Y','0000-00-00 00:00:00'),(130842,10,'S00.429A ','Blister (nonthermal) of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(130840,10,'S00.422D ','Blister (nonthermal) of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130839,10,'S00.422A ','Blister (nonthermal) of left ear, initial encounter','Y','0000-00-00 00:00:00'),(130838,10,'S00.421S ','Blister (nonthermal) of right ear, sequela','Y','0000-00-00 00:00:00'),(130836,10,'S00.421A ','Blister (nonthermal) of right ear, initial encounter','Y','0000-00-00 00:00:00'),(130837,10,'S00.421D ','Blister (nonthermal) of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130835,10,'S00.419S ','Abrasion of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(130833,10,'S00.419A ','Abrasion of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(130834,10,'S00.419D ','Abrasion of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130831,10,'S00.412D ','Abrasion of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130832,10,'S00.412S ','Abrasion of left ear, sequela','Y','0000-00-00 00:00:00'),(130829,10,'S00.411S ','Abrasion of right ear, sequela','Y','0000-00-00 00:00:00'),(130830,10,'S00.412A ','Abrasion of left ear, initial encounter','Y','0000-00-00 00:00:00'),(130828,10,'S00.411D ','Abrasion of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130826,10,'S00.409S ','Unspecified superficial injury of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(130827,10,'S00.411A ','Abrasion of right ear, initial encounter','Y','0000-00-00 00:00:00'),(130825,10,'S00.409D ','Unspecified superficial injury of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130824,10,'S00.409A ','Unspecified superficial injury of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(130822,10,'S00.402D ','Unspecified superficial injury of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130823,10,'S00.402S ','Unspecified superficial injury of left ear, sequela','Y','0000-00-00 00:00:00'),(130821,10,'S00.402A ','Unspecified superficial injury of left ear, initial encounter','Y','0000-00-00 00:00:00'),(130820,10,'S00.401S ','Unspecified superficial injury of right ear, sequela','Y','0000-00-00 00:00:00'),(130818,10,'S00.401A ','Unspecified superficial injury of right ear, initial encounter','Y','0000-00-00 00:00:00'),(130819,10,'S00.401D ','Unspecified superficial injury of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(130817,10,'S00.37XS ','Other superficial bite of nose, sequela','Y','0000-00-00 00:00:00'),(130816,10,'S00.37XD ','Other superficial bite of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(130815,10,'S00.37XA ','Other superficial bite of nose, initial encounter','Y','0000-00-00 00:00:00'),(130813,10,'S00.36XD ','Insect bite (nonvenomous) of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(130814,10,'S00.36XS ','Insect bite (nonvenomous) of nose, sequela','Y','0000-00-00 00:00:00'),(130812,10,'S00.36XA ','Insect bite (nonvenomous) of nose, initial encounter','Y','0000-00-00 00:00:00'),(130810,10,'S00.35XD ','Superficial foreign body of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(130811,10,'S00.35XS ','Superficial foreign body of nose, sequela','Y','0000-00-00 00:00:00'),(130809,10,'S00.35XA ','Superficial foreign body of nose, initial encounter','Y','0000-00-00 00:00:00'),(130807,10,'S00.34XD ','External constriction of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(130808,10,'S00.34XS ','External constriction of nose, sequela','Y','0000-00-00 00:00:00'),(130805,10,'S00.33XS ','Contusion of nose, sequela','Y','0000-00-00 00:00:00'),(130806,10,'S00.34XA ','External constriction of nose, initial encounter','Y','0000-00-00 00:00:00'),(130803,10,'S00.33XA ','Contusion of nose, initial encounter','Y','0000-00-00 00:00:00'),(130804,10,'S00.33XD ','Contusion of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(130802,10,'S00.32XS ','Blister (nonthermal) of nose, sequela','Y','0000-00-00 00:00:00'),(130800,10,'S00.32XA ','Blister (nonthermal) of nose, initial encounter','Y','0000-00-00 00:00:00'),(130801,10,'S00.32XD ','Blister (nonthermal) of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(130799,10,'S00.31XS ','Abrasion of nose, sequela','Y','0000-00-00 00:00:00'),(130797,10,'S00.31XA ','Abrasion of nose, initial encounter','Y','0000-00-00 00:00:00'),(130798,10,'S00.31XD ','Abrasion of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(130796,10,'S00.30XS ','Unspecified superficial injury of nose, sequela','Y','0000-00-00 00:00:00'),(130794,10,'S00.30XA ','Unspecified superficial injury of nose, initial encounter','Y','0000-00-00 00:00:00'),(130795,10,'S00.30XD ','Unspecified superficial injury of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(130793,10,'S00.279S ','Other superficial bite of unspecified eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130792,10,'S00.279D ','Other superficial bite of unspecified eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130791,10,'S00.279A ','Other superficial bite of unspecified eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130790,10,'S00.272S ','Other superficial bite of left eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130789,10,'S00.272D ','Other superficial bite of left eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130788,10,'S00.272A ','Other superficial bite of left eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130787,10,'S00.271S ','Other superficial bite of right eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130785,10,'S00.271A ','Other superficial bite of right eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130786,10,'S00.271D ','Other superficial bite of right eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130784,10,'S00.269S ','Insect bite (nonvenomous) of unspecified eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130783,10,'S00.269D ','Insect bite (nonvenomous) of unspecified eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130782,10,'S00.269A ','Insect bite (nonvenomous) of unspecified eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130781,10,'S00.262S ','Insect bite (nonvenomous) of left eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130779,10,'S00.262A ','Insect bite (nonvenomous) of left eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130780,10,'S00.262D ','Insect bite (nonvenomous) of left eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130778,10,'S00.261S ','Insect bite (nonvenomous) of right eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130777,10,'S00.261D ','Insect bite (nonvenomous) of right eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130776,10,'S00.261A ','Insect bite (nonvenomous) of right eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130775,10,'S00.259S ','Superficial foreign body of unspecified eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130774,10,'S00.259D ','Superficial foreign body of unspecified eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130773,10,'S00.259A ','Superficial foreign body of unspecified eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130772,10,'S00.252S ','Superficial foreign body of left eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130771,10,'S00.252D ','Superficial foreign body of left eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130770,10,'S00.252A ','Superficial foreign body of left eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130769,10,'S00.251S ','Superficial foreign body of right eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130767,10,'S00.251A ','Superficial foreign body of right eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130768,10,'S00.251D ','Superficial foreign body of right eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130766,10,'S00.249S ','External constriction of unspecified eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130765,10,'S00.249D ','External constriction of unspecified eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130764,10,'S00.249A ','External constriction of unspecified eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130763,10,'S00.242S ','External constriction of left eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130761,10,'S00.242A ','External constriction of left eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130762,10,'S00.242D ','External constriction of left eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130760,10,'S00.241S ','External constriction of right eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130759,10,'S00.241D ','External constriction of right eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130758,10,'S00.241A ','External constriction of right eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130756,10,'S00.229D ','Blister (nonthermal) of unspecified eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130757,10,'S00.229S ','Blister (nonthermal) of unspecified eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130755,10,'S00.229A ','Blister (nonthermal) of unspecified eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130754,10,'S00.222S ','Blister (nonthermal) of left eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130753,10,'S00.222D ','Blister (nonthermal) of left eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130751,10,'S00.221S ','Blister (nonthermal) of right eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130752,10,'S00.222A ','Blister (nonthermal) of left eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130750,10,'S00.221D ','Blister (nonthermal) of right eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130749,10,'S00.221A ','Blister (nonthermal) of right eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130747,10,'S00.219D ','Abrasion of unspecified eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130748,10,'S00.219S ','Abrasion of unspecified eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130746,10,'S00.219A ','Abrasion of unspecified eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130745,10,'S00.212S ','Abrasion of left eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130743,10,'S00.212A ','Abrasion of left eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130744,10,'S00.212D ','Abrasion of left eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130742,10,'S00.211S ','Abrasion of right eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130740,10,'S00.211A ','Abrasion of right eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130741,10,'S00.211D ','Abrasion of right eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130739,10,'S00.209S ','Unspecified superficial injury of unspecified eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130738,10,'S00.209D ','Unspecified superficial injury of unspecified eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130737,10,'S00.209A ','Unspecified superficial injury of unspecified eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130736,10,'S00.202S ','Unspecified superficial injury of left eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130735,10,'S00.202D ','Unspecified superficial injury of left eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130733,10,'S00.201S ','Unspecified superficial injury of right eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130734,10,'S00.202A ','Unspecified superficial injury of left eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130732,10,'S00.201D ','Unspecified superficial injury of right eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130731,10,'S00.201A ','Unspecified superficial injury of right eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130729,10,'S00.12XD ','Contusion of left eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130730,10,'S00.12XS ','Contusion of left eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130728,10,'S00.12XA ','Contusion of left eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130726,10,'S00.11XD ','Contusion of right eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130727,10,'S00.11XS ','Contusion of right eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130725,10,'S00.11XA ','Contusion of right eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130724,10,'S00.10XS ','Contusion of unspecified eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(130722,10,'S00.10XA ','Contusion of unspecified eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(130723,10,'S00.10XD ','Contusion of unspecified eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(130720,10,'S00.07XD ','Other superficial bite of scalp, subsequent encounter','Y','0000-00-00 00:00:00'),(130721,10,'S00.07XS ','Other superficial bite of scalp, sequela','Y','0000-00-00 00:00:00'),(130719,10,'S00.07XA ','Other superficial bite of scalp, initial encounter','Y','0000-00-00 00:00:00'),(130717,10,'S00.06XD ','Insect bite (nonvenomous) of scalp, subsequent encounter','Y','0000-00-00 00:00:00'),(130718,10,'S00.06XS ','Insect bite (nonvenomous) of scalp, sequela','Y','0000-00-00 00:00:00'),(130716,10,'S00.06XA ','Insect bite (nonvenomous) of scalp, initial encounter','Y','0000-00-00 00:00:00'),(130715,10,'S00.05XS ','Superficial foreign body of scalp, sequela','Y','0000-00-00 00:00:00'),(130714,10,'S00.05XD ','Superficial foreign body of scalp, subsequent encounter','Y','0000-00-00 00:00:00'),(130712,10,'S00.04XS ','External constriction of part of scalp, sequela','Y','0000-00-00 00:00:00'),(130713,10,'S00.05XA ','Superficial foreign body of scalp, initial encounter','Y','0000-00-00 00:00:00'),(130711,10,'S00.04XD ','External constriction of part of scalp, subsequent encounter','Y','0000-00-00 00:00:00'),(130709,10,'S00.03XS ','Contusion of scalp, sequela','Y','0000-00-00 00:00:00'),(130710,10,'S00.04XA ','External constriction of part of scalp, initial encounter','Y','0000-00-00 00:00:00'),(130707,10,'S00.03XA ','Contusion of scalp, initial encounter','Y','0000-00-00 00:00:00'),(130708,10,'S00.03XD ','Contusion of scalp, subsequent encounter','Y','0000-00-00 00:00:00'),(130706,10,'S00.02XS ','Blister (nonthermal) of scalp, sequela','Y','0000-00-00 00:00:00'),(130704,10,'S00.02XA ','Blister (nonthermal) of scalp, initial encounter','Y','0000-00-00 00:00:00'),(130705,10,'S00.02XD ','Blister (nonthermal) of scalp, subsequent encounter','Y','0000-00-00 00:00:00'),(130702,10,'S00.01XD ','Abrasion of scalp, subsequent encounter','Y','0000-00-00 00:00:00'),(130703,10,'S00.01XS ','Abrasion of scalp, sequela','Y','0000-00-00 00:00:00'),(130701,10,'S00.01XA ','Abrasion of scalp, initial encounter','Y','0000-00-00 00:00:00'),(130699,10,'S00.00XD ','Unspecified superficial injury of scalp, subsequent encounter','Y','0000-00-00 00:00:00'),(130700,10,'S00.00XS ','Unspecified superficial injury of scalp, sequela','Y','0000-00-00 00:00:00'),(130698,10,'S00.00XA ','Unspecified superficial injury of scalp, initial encounter','Y','0000-00-00 00:00:00'),(130696,10,'R97.8 ','Other abnormal tumor markers','Y','0000-00-00 00:00:00'),(130697,10,'R99','Ill-defined and unknown cause of mortality','Y','0000-00-00 00:00:00'),(130695,10,'R97.21 ','Rising PSA following treatment for malignant neoplasm of prostate','Y','0000-00-00 00:00:00'),(130693,10,'R97.1 ','Elevated cancer antigen 125 [CA 125]','Y','0000-00-00 00:00:00'),(130694,10,'R97.20 ','Elevated prostate specific antigen [PSA]','Y','0000-00-00 00:00:00'),(130691,10,'R94.8 ','Abnormal results of function studies of other organs and systems','Y','0000-00-00 00:00:00'),(130692,10,'R97.0 ','Elevated carcinoembryonic antigen [CEA]','Y','0000-00-00 00:00:00'),(130690,10,'R94.7 ','Abnormal results of other endocrine function studies','Y','0000-00-00 00:00:00'),(130689,10,'R94.6 ','Abnormal results of thyroid function studies','Y','0000-00-00 00:00:00'),(130687,10,'R94.4 ','Abnormal results of kidney function studies','Y','0000-00-00 00:00:00'),(130688,10,'R94.5 ','Abnormal results of liver function studies','Y','0000-00-00 00:00:00'),(130686,10,'R94.39 ','Abnormal result of other cardiovascular function study','Y','0000-00-00 00:00:00'),(130685,10,'R94.31 ','Abnormal electrocardiogram [ECG] [EKG]','Y','0000-00-00 00:00:00'),(130683,10,'R94.2 ','Abnormal results of pulmonary function studies','Y','0000-00-00 00:00:00'),(130684,10,'R94.30 ','Abnormal result of cardiovascular function study, unspecified','Y','0000-00-00 00:00:00'),(130681,10,'R94.131 ','Abnormal electromyogram [EMG]','Y','0000-00-00 00:00:00'),(130682,10,'R94.138 ','Abnormal results of other function studies of peripheral nervous system','Y','0000-00-00 00:00:00'),(130680,10,'R94.130 ','Abnormal response to nerve stimulation, unspecified','Y','0000-00-00 00:00:00'),(130678,10,'R94.121 ','Abnormal vestibular function study','Y','0000-00-00 00:00:00'),(130679,10,'R94.128 ','Abnormal results of other function studies of ear and other special senses','Y','0000-00-00 00:00:00'),(130676,10,'R94.118 ','Abnormal results of other function studies of eye','Y','0000-00-00 00:00:00'),(130677,10,'R94.120 ','Abnormal auditory function study','Y','0000-00-00 00:00:00'),(130675,10,'R94.113 ','Abnormal oculomotor study','Y','0000-00-00 00:00:00'),(130673,10,'R94.111 ','Abnormal electroretinogram [ERG]','Y','0000-00-00 00:00:00'),(130674,10,'R94.112 ','Abnormal visually evoked potential [VEP]','Y','0000-00-00 00:00:00'),(130671,10,'R94.09 ','Abnormal results of other function studies of central nervous system','Y','0000-00-00 00:00:00'),(130672,10,'R94.110 ','Abnormal electro-oculogram [EOG]','Y','0000-00-00 00:00:00'),(130669,10,'R94.01 ','Abnormal electroencephalogram [EEG]','Y','0000-00-00 00:00:00'),(130670,10,'R94.02 ','Abnormal brain scan','Y','0000-00-00 00:00:00'),(130668,10,'R93.9 ','Diagnostic imaging inconclusive due to excess body fat of patient','Y','0000-00-00 00:00:00'),(130667,10,'R93.89 ','Abnormal findings on diagnostic imaging of other specified body structures','Y','0000-00-00 00:00:00'),(130666,10,'R93.819 ','Abnormal radiologic findings on diagnostic imaging of unspecified testicle','Y','0000-00-00 00:00:00'),(130665,10,'R93.813 ','Abnormal radiologic findings on diagnostic imaging of testicles, bilateral','Y','0000-00-00 00:00:00'),(130664,10,'R93.812 ','Abnormal radiologic findings on diagnostic imaging of left testicle','Y','0000-00-00 00:00:00'),(130663,10,'R93.811 ','Abnormal radiologic findings on diagnostic imaging of right testicle','Y','0000-00-00 00:00:00'),(130661,10,'R93.6 ','Abnormal findings on diagnostic imaging of limbs','Y','0000-00-00 00:00:00'),(130662,10,'R93.7 ','Abnormal findings on diagnostic imaging of other parts of musculoskeletal system','Y','0000-00-00 00:00:00'),(130660,10,'R93.5 ','Abnormal findings on diagnostic imaging of other abdominal regions, including retroperitoneum','Y','0000-00-00 00:00:00'),(130659,10,'R93.49 ','Abnormal radiologic findings on diagnostic imaging of other urinary organs','Y','0000-00-00 00:00:00'),(130657,10,'R93.422 ','Abnormal radiologic findings on diagnostic imaging of left kidney','Y','0000-00-00 00:00:00'),(130658,10,'R93.429 ','Abnormal radiologic findings on diagnostic imaging of unspecified kidney','Y','0000-00-00 00:00:00'),(130656,10,'R93.421 ','Abnormal radiologic findings on diagnostic imaging of right kidney','Y','0000-00-00 00:00:00'),(130655,10,'R93.41 ','Abnormal radiologic findings on diagnostic imaging of renal pelvis, ureter, or bladder','Y','0000-00-00 00:00:00'),(130653,10,'R93.2 ','Abnormal findings on diagnostic imaging of liver and biliary tract','Y','0000-00-00 00:00:00'),(130654,10,'R93.3 ','Abnormal findings on diagnostic imaging of other parts of digestive tract','Y','0000-00-00 00:00:00'),(130652,10,'R93.1 ','Abnormal findings on diagnostic imaging of heart and coronary circulation','Y','0000-00-00 00:00:00'),(130651,10,'R93.0 ','Abnormal findings on diagnostic imaging of skull and head, not elsewhere classified','Y','0000-00-00 00:00:00'),(130649,10,'R92.343 ','Mammographic extreme density, bilateral breasts','Y','0000-00-00 00:00:00'),(130650,10,'R92.8 ','Other abnormal and inconclusive findings on diagnostic imaging of breast','Y','0000-00-00 00:00:00'),(130647,10,'R92.341 ','Mammographic extreme density, right breast','Y','0000-00-00 00:00:00'),(130648,10,'R92.342 ','Mammographic extreme density, left breast','Y','0000-00-00 00:00:00'),(130646,10,'R92.333 ','Mammographic heterogeneous density, bilateral breasts','Y','0000-00-00 00:00:00'),(130645,10,'R92.332 ','Mammographic heterogeneous density, left breast','Y','0000-00-00 00:00:00'),(130644,10,'R92.331 ','Mammographic heterogeneous density, right breast','Y','0000-00-00 00:00:00'),(130642,10,'R92.322 ','Mammographic fibroglandular density, left breast','Y','0000-00-00 00:00:00'),(130643,10,'R92.323 ','Mammographic fibroglandular density, bilateral breasts','Y','0000-00-00 00:00:00'),(130641,10,'R92.321 ','Mammographic fibroglandular density, right breast','Y','0000-00-00 00:00:00'),(130639,10,'R92.312 ','Mammographic fatty tissue density, left breast','Y','0000-00-00 00:00:00'),(130640,10,'R92.313 ','Mammographic fatty tissue density, bilateral breasts','Y','0000-00-00 00:00:00'),(130637,10,'R92.30 ','Dense breasts, unspecified','Y','0000-00-00 00:00:00'),(130638,10,'R92.311 ','Mammographic fatty tissue density, right breast','Y','0000-00-00 00:00:00'),(130635,10,'R92.1 ','Mammographic calcification found on diagnostic imaging of breast','Y','0000-00-00 00:00:00'),(130636,10,'R92.2 ','Inconclusive mammogram','Y','0000-00-00 00:00:00'),(130634,10,'R92.0 ','Mammographic microcalcification found on diagnostic imaging of breast','Y','0000-00-00 00:00:00'),(130632,10,'R91.1 ','Solitary pulmonary nodule','Y','0000-00-00 00:00:00'),(130633,10,'R91.8 ','Other nonspecific abnormal finding of lung field','Y','0000-00-00 00:00:00'),(130630,10,'R90.82 ','White matter disease, unspecified','Y','0000-00-00 00:00:00'),(130631,10,'R90.89 ','Other abnormal findings on diagnostic imaging of central nervous system','Y','0000-00-00 00:00:00'),(130629,10,'R90.81 ','Abnormal echoencephalogram','Y','0000-00-00 00:00:00'),(130628,10,'R90.0 ','Intracranial space-occupying lesion found on diagnostic imaging of central nervous system','Y','0000-00-00 00:00:00'),(130626,10,'R89.8 ','Other abnormal findings in specimens from other organs, systems and tissues','Y','0000-00-00 00:00:00'),(130627,10,'R89.9 ','Unspecified abnormal finding in specimens from other organs, systems and tissues','Y','0000-00-00 00:00:00'),(130625,10,'R89.7 ','Abnormal histological findings in specimens from other organs, systems and tissues','Y','0000-00-00 00:00:00'),(130624,10,'R89.6 ','Abnormal cytological findings in specimens from other organs, systems and tissues','Y','0000-00-00 00:00:00'),(130623,10,'R89.5 ','Abnormal microbiological findings in specimens from other organs, systems and tissues','Y','0000-00-00 00:00:00'),(130622,10,'R89.4 ','Abnormal immunological findings in specimens from other organs, systems and tissues','Y','0000-00-00 00:00:00'),(130621,10,'R89.3 ','Abnormal level of substances chiefly nonmedicinal as to source in specimens from other organs, systems and tissues','Y','0000-00-00 00:00:00'),(130620,10,'R89.2 ','Abnormal level of other drugs, medicaments and biological substances in specimens from other organs, systems and tissues','Y','0000-00-00 00:00:00'),(130619,10,'R89.1 ','Abnormal level of hormones in specimens from other organs, systems and tissues','Y','0000-00-00 00:00:00'),(130617,10,'R88.8 ','Abnormal findings in other body fluids and substances','Y','0000-00-00 00:00:00'),(130618,10,'R89.0 ','Abnormal level of enzymes in specimens from other organs, systems and tissues','Y','0000-00-00 00:00:00'),(130616,10,'R88.0 ','Cloudy (hemodialysis) (peritoneal) dialysis effluent','Y','0000-00-00 00:00:00'),(130614,10,'R87.89 ','Other abnormal findings in specimens from female genital organs','Y','0000-00-00 00:00:00'),(130615,10,'R87.9 ','Unspecified abnormal finding in specimens from female genital organs','Y','0000-00-00 00:00:00'),(130613,10,'R87.821 ','Vaginal low risk human papillomavirus (HPV) DNA test positive','Y','0000-00-00 00:00:00'),(130612,10,'R87.820 ','Cervical low risk human papillomavirus (HPV) DNA test positive','Y','0000-00-00 00:00:00'),(130610,10,'R87.810 ','Cervical high risk human papillomavirus (HPV) DNA test positive','Y','0000-00-00 00:00:00'),(130611,10,'R87.811 ','Vaginal high risk human papillomavirus (HPV) DNA test positive','Y','0000-00-00 00:00:00'),(130609,10,'R87.7 ','Abnormal histological findings in specimens from female genital organs','Y','0000-00-00 00:00:00'),(130608,10,'R87.69 ','Abnormal cytological findings in specimens from other female genital organs','Y','0000-00-00 00:00:00'),(130607,10,'R87.629 ','Unspecified abnormal cytological findings in specimens from vagina','Y','0000-00-00 00:00:00'),(130605,10,'R87.625 ','Unsatisfactory cytologic smear of vagina','Y','0000-00-00 00:00:00'),(130606,10,'R87.628 ','Other abnormal cytological findings on specimens from vagina','Y','0000-00-00 00:00:00'),(130604,10,'R87.624 ','Cytologic evidence of malignancy on smear of vagina','Y','0000-00-00 00:00:00'),(130603,10,'R87.623 ','High grade squamous intraepithelial lesion on cytologic smear of vagina (HGSIL)','Y','0000-00-00 00:00:00'),(130602,10,'R87.622 ','Low grade squamous intraepithelial lesion on cytologic smear of vagina (LGSIL)','Y','0000-00-00 00:00:00'),(130601,10,'R87.621 ','Atypical squamous cells cannot exclude high grade squamous intraepithelial lesion on cytologic smear of vagina (ASC-H)','Y','0000-00-00 00:00:00'),(130600,10,'R87.620 ','Atypical squamous cells of undetermined significance on cytologic smear of vagina (ASC-US)','Y','0000-00-00 00:00:00'),(130599,10,'R87.619 ','Unspecified abnormal cytological findings in specimens from cervix uteri','Y','0000-00-00 00:00:00'),(130598,10,'R87.618 ','Other abnormal cytological findings on specimens from cervix uteri','Y','0000-00-00 00:00:00'),(130596,10,'R87.615 ','Unsatisfactory cytologic smear of cervix','Y','0000-00-00 00:00:00'),(130597,10,'R87.616 ','Satisfactory cervical smear but lacking transformation zone','Y','0000-00-00 00:00:00'),(130595,10,'R87.614 ','Cytologic evidence of malignancy on smear of cervix','Y','0000-00-00 00:00:00'),(130593,10,'R87.612 ','Low grade squamous intraepithelial lesion on cytologic smear of cervix (LGSIL)','Y','0000-00-00 00:00:00'),(130594,10,'R87.613 ','High grade squamous intraepithelial lesion on cytologic smear of cervix (HGSIL)','Y','0000-00-00 00:00:00'),(130592,10,'R87.611 ','Atypical squamous cells cannot exclude high grade squamous intraepithelial lesion on cytologic smear of cervix (ASC-H)','Y','0000-00-00 00:00:00'),(130591,10,'R87.610 ','Atypical squamous cells of undetermined significance on cytologic smear of cervix (ASC-US)','Y','0000-00-00 00:00:00'),(130590,10,'R87.5 ','Abnormal microbiological findings in specimens from female genital organs','Y','0000-00-00 00:00:00'),(130589,10,'R87.4 ','Abnormal immunological findings in specimens from female genital organs','Y','0000-00-00 00:00:00'),(130588,10,'R87.3 ','Abnormal level of substances chiefly nonmedicinal as to source in specimens from female genital organs','Y','0000-00-00 00:00:00'),(130587,10,'R87.2 ','Abnormal level of other drugs, medicaments and biological substances in specimens from female genital organs','Y','0000-00-00 00:00:00'),(130585,10,'R87.0 ','Abnormal level of enzymes in specimens from female genital organs','Y','0000-00-00 00:00:00'),(130586,10,'R87.1 ','Abnormal level of hormones in specimens from female genital organs','Y','0000-00-00 00:00:00'),(130584,10,'R86.9 ','Unspecified abnormal finding in specimens from male genital organs','Y','0000-00-00 00:00:00'),(130583,10,'R86.8 ','Other abnormal findings in specimens from male genital organs','Y','0000-00-00 00:00:00'),(130582,10,'R86.7 ','Abnormal histological findings in specimens from male genital organs','Y','0000-00-00 00:00:00'),(130581,10,'R86.6 ','Abnormal cytological findings in specimens from male genital organs','Y','0000-00-00 00:00:00'),(130580,10,'R86.5 ','Abnormal microbiological findings in specimens from male genital organs','Y','0000-00-00 00:00:00'),(130579,10,'R86.4 ','Abnormal immunological findings in specimens from male genital organs','Y','0000-00-00 00:00:00'),(130578,10,'R86.3 ','Abnormal level of substances chiefly nonmedicinal as to source in specimens from male genital organs','Y','0000-00-00 00:00:00'),(130577,10,'R86.2 ','Abnormal level of other drugs, medicaments and biological substances in specimens from male genital organs','Y','0000-00-00 00:00:00'),(130576,10,'R86.1 ','Abnormal level of hormones in specimens from male genital organs','Y','0000-00-00 00:00:00'),(130575,10,'R86.0 ','Abnormal level of enzymes in specimens from male genital organs','Y','0000-00-00 00:00:00'),(130574,10,'R85.9 ','Unspecified abnormal finding in specimens from digestive organs and abdominal cavity','Y','0000-00-00 00:00:00'),(130573,10,'R85.89 ','Other abnormal findings in specimens from digestive organs and abdominal cavity','Y','0000-00-00 00:00:00'),(130571,10,'R85.81 ','Anal high risk human papillomavirus (HPV) DNA test positive','Y','0000-00-00 00:00:00'),(130572,10,'R85.82 ','Anal low risk human papillomavirus (HPV) DNA test positive','Y','0000-00-00 00:00:00'),(130570,10,'R85.7 ','Abnormal histological findings in specimens from digestive organs and abdominal cavity','Y','0000-00-00 00:00:00'),(130568,10,'R85.619 ','Unspecified abnormal cytological findings in specimens from anus','Y','0000-00-00 00:00:00'),(130569,10,'R85.69 ','Abnormal cytological findings in specimens from other digestive organs and abdominal cavity','Y','0000-00-00 00:00:00'),(130567,10,'R85.618 ','Other abnormal cytological findings on specimens from anus','Y','0000-00-00 00:00:00'),(130566,10,'R85.616 ','Satisfactory anal smear but lacking transformation zone','Y','0000-00-00 00:00:00'),(130564,10,'R85.614 ','Cytologic evidence of malignancy on smear of anus','Y','0000-00-00 00:00:00'),(130565,10,'R85.615 ','Unsatisfactory cytologic smear of anus','Y','0000-00-00 00:00:00'),(130563,10,'R85.613 ','High grade squamous intraepithelial lesion on cytologic smear of anus (HGSIL)','Y','0000-00-00 00:00:00'),(130562,10,'R85.612 ','Low grade squamous intraepithelial lesion on cytologic smear of anus (LGSIL)','Y','0000-00-00 00:00:00'),(130561,10,'R85.611 ','Atypical squamous cells cannot exclude high grade squamous intraepithelial lesion on cytologic smear of anus (ASC-H)','Y','0000-00-00 00:00:00'),(130560,10,'R85.610 ','Atypical squamous cells of undetermined significance on cytologic smear of anus (ASC-US)','Y','0000-00-00 00:00:00'),(130559,10,'R85.5 ','Abnormal microbiological findings in specimens from digestive organs and abdominal cavity','Y','0000-00-00 00:00:00'),(130558,10,'R85.4 ','Abnormal immunological findings in specimens from digestive organs and abdominal cavity','Y','0000-00-00 00:00:00'),(130557,10,'R85.3 ','Abnormal level of substances chiefly nonmedicinal as to source in specimens from digestive organs and abdominal cavity','Y','0000-00-00 00:00:00'),(130556,10,'R85.2 ','Abnormal level of other drugs, medicaments and biological substances in specimens from digestive organs and abdominal cavity','Y','0000-00-00 00:00:00'),(130555,10,'R85.1 ','Abnormal level of hormones in specimens from digestive organs and abdominal cavity','Y','0000-00-00 00:00:00'),(130554,10,'R85.0 ','Abnormal level of enzymes in specimens from digestive organs and abdominal cavity','Y','0000-00-00 00:00:00'),(130553,10,'R84.9 ','Unspecified abnormal finding in specimens from respiratory organs and thorax','Y','0000-00-00 00:00:00'),(130552,10,'R84.8 ','Other abnormal findings in specimens from respiratory organs and thorax','Y','0000-00-00 00:00:00'),(130551,10,'R84.7 ','Abnormal histological findings in specimens from respiratory organs and thorax','Y','0000-00-00 00:00:00'),(130550,10,'R84.6 ','Abnormal cytological findings in specimens from respiratory organs and thorax','Y','0000-00-00 00:00:00'),(130549,10,'R84.5 ','Abnormal microbiological findings in specimens from respiratory organs and thorax','Y','0000-00-00 00:00:00'),(130548,10,'R84.4 ','Abnormal immunological findings in specimens from respiratory organs and thorax','Y','0000-00-00 00:00:00'),(130547,10,'R84.3 ','Abnormal level of substances chiefly nonmedicinal as to source in specimens from respiratory organs and thorax','Y','0000-00-00 00:00:00'),(130546,10,'R84.2 ','Abnormal level of other drugs, medicaments and biological substances in specimens from respiratory organs and thorax','Y','0000-00-00 00:00:00'),(130545,10,'R84.1 ','Abnormal level of hormones in specimens from respiratory organs and thorax','Y','0000-00-00 00:00:00'),(130543,10,'R83.9 ','Unspecified abnormal finding in cerebrospinal fluid','Y','0000-00-00 00:00:00'),(130544,10,'R84.0 ','Abnormal level of enzymes in specimens from respiratory organs and thorax','Y','0000-00-00 00:00:00'),(130542,10,'R83.8 ','Other abnormal findings in cerebrospinal fluid','Y','0000-00-00 00:00:00'),(130540,10,'R83.5 ','Abnormal microbiological findings in cerebrospinal fluid','Y','0000-00-00 00:00:00'),(130541,10,'R83.6 ','Abnormal cytological findings in cerebrospinal fluid','Y','0000-00-00 00:00:00'),(130539,10,'R83.4 ','Abnormal immunological findings in cerebrospinal fluid','Y','0000-00-00 00:00:00'),(130538,10,'R83.3 ','Abnormal level of substances chiefly nonmedicinal as to source in cerebrospinal fluid','Y','0000-00-00 00:00:00'),(130537,10,'R83.2 ','Abnormal level of other drugs, medicaments and biological substances in cerebrospinal fluid','Y','0000-00-00 00:00:00'),(130535,10,'R83.0 ','Abnormal level of enzymes in cerebrospinal fluid','Y','0000-00-00 00:00:00'),(130536,10,'R83.1 ','Abnormal level of hormones in cerebrospinal fluid','Y','0000-00-00 00:00:00'),(130533,10,'R82.994 ','Hypercalciuria','Y','0000-00-00 00:00:00'),(130534,10,'R82.998 ','Other abnormal findings in urine','Y','0000-00-00 00:00:00'),(130531,10,'R82.992 ','Hyperoxaluria','Y','0000-00-00 00:00:00'),(130532,10,'R82.993 ','Hyperuricosuria','Y','0000-00-00 00:00:00'),(130529,10,'R82.91 ','Other chromoabnormalities of urine','Y','0000-00-00 00:00:00'),(130530,10,'R82.991 ','Hypocitraturia','Y','0000-00-00 00:00:00'),(130528,10,'R82.90 ','Unspecified abnormal findings in urine','Y','0000-00-00 00:00:00'),(130526,10,'R82.81 ','Pyuria','Y','0000-00-00 00:00:00'),(130527,10,'R82.89 ','Other abnormal findings on cytological and histological examination of urine','Y','0000-00-00 00:00:00'),(130524,10,'R82.71 ','Bacteriuria','Y','0000-00-00 00:00:00'),(130525,10,'R82.79 ','Other abnormal findings on microbiological examination of urine','Y','0000-00-00 00:00:00'),(130523,10,'R82.6 ','Abnormal urine levels of substances chiefly nonmedicinal as to source','Y','0000-00-00 00:00:00'),(130520,10,'R82.3 ','Hemoglobinuria','Y','0000-00-00 00:00:00'),(130521,10,'R82.4 ','Acetonuria','Y','0000-00-00 00:00:00'),(130522,10,'R82.5 ','Elevated urine levels of drugs, medicaments and biological substances','Y','0000-00-00 00:00:00'),(130517,10,'R82.0 ','Chyluria','Y','0000-00-00 00:00:00'),(130518,10,'R82.1 ','Myoglobinuria','Y','0000-00-00 00:00:00'),(130519,10,'R82.2 ','Biliuria','Y','0000-00-00 00:00:00'),(130515,10,'R80.9 ','Proteinuria, unspecified','Y','0000-00-00 00:00:00'),(130516,10,'R81','Glycosuria','Y','0000-00-00 00:00:00'),(130513,10,'R80.3 ','Bence Jones proteinuria','Y','0000-00-00 00:00:00'),(130514,10,'R80.8 ','Other proteinuria','Y','0000-00-00 00:00:00'),(130511,10,'R80.1 ','Persistent proteinuria, unspecified','Y','0000-00-00 00:00:00'),(130512,10,'R80.2 ','Orthostatic proteinuria, unspecified','Y','0000-00-00 00:00:00'),(130510,10,'R80.0 ','Isolated proteinuria','Y','0000-00-00 00:00:00'),(130508,10,'R79.89 ','Other specified abnormal findings of blood chemistry','Y','0000-00-00 00:00:00'),(130509,10,'R79.9 ','Abnormal finding of blood chemistry, unspecified','Y','0000-00-00 00:00:00'),(130506,10,'R79.82 ','Elevated C-reactive protein (CRP)','Y','0000-00-00 00:00:00'),(130507,10,'R79.83 ','Abnormal findings of blood amino-acid level','Y','0000-00-00 00:00:00'),(130505,10,'R79.81 ','Abnormal blood-gas level','Y','0000-00-00 00:00:00'),(130504,10,'R79.1 ','Abnormal coagulation profile','Y','0000-00-00 00:00:00'),(130503,10,'R79.0 ','Abnormal level of blood mineral','Y','0000-00-00 00:00:00'),(130501,10,'R78.89 ','Finding of other specified substances, not normally found in blood','Y','0000-00-00 00:00:00'),(130502,10,'R78.9 ','Finding of unspecified substance, not normally found in blood','Y','0000-00-00 00:00:00'),(130499,10,'R78.79 ','Finding of abnormal level of heavy metals in blood','Y','0000-00-00 00:00:00'),(130500,10,'R78.81 ','Bacteremia','Y','0000-00-00 00:00:00'),(130497,10,'R78.6 ','Finding of steroid agent in blood','Y','0000-00-00 00:00:00'),(130498,10,'R78.71 ','Abnormal lead level in blood','Y','0000-00-00 00:00:00'),(130495,10,'R78.4 ','Finding of other drugs of addictive potential in blood','Y','0000-00-00 00:00:00'),(130496,10,'R78.5 ','Finding of other psychotropic drug in blood','Y','0000-00-00 00:00:00'),(130493,10,'R78.2 ','Finding of cocaine in blood','Y','0000-00-00 00:00:00'),(130494,10,'R78.3 ','Finding of hallucinogen in blood','Y','0000-00-00 00:00:00'),(130491,10,'R78.0 ','Finding of alcohol in blood','Y','0000-00-00 00:00:00'),(130492,10,'R78.1 ','Finding of opiate drug in blood','Y','0000-00-00 00:00:00'),(130489,10,'R77.8 ','Other specified abnormalities of plasma proteins','Y','0000-00-00 00:00:00'),(130490,10,'R77.9 ','Abnormality of plasma protein, unspecified','Y','0000-00-00 00:00:00'),(130488,10,'R77.2 ','Abnormality of alphafetoprotein','Y','0000-00-00 00:00:00'),(130486,10,'R77.0 ','Abnormality of albumin','Y','0000-00-00 00:00:00'),(130487,10,'R77.1 ','Abnormality of globulin','Y','0000-00-00 00:00:00'),(130484,10,'R76.8 ','Other specified abnormal immunological findings in serum','Y','0000-00-00 00:00:00'),(130485,10,'R76.9 ','Abnormal immunological finding in serum, unspecified','Y','0000-00-00 00:00:00'),(130482,10,'R76.11 ','Nonspecific reaction to tuberculin skin test without active tuberculosis','Y','0000-00-00 00:00:00'),(130483,10,'R76.12 ','Nonspecific reaction to cell mediated immunity measurement of gamma interferon antigen response without active tuberculosis','Y','0000-00-00 00:00:00'),(130480,10,'R75','Inconclusive laboratory evidence of human immunodeficiency virus [HIV]','Y','0000-00-00 00:00:00'),(130481,10,'R76.0 ','Raised antibody titer','Y','0000-00-00 00:00:00'),(130479,10,'R74.9 ','Abnormal serum enzyme level, unspecified','Y','0000-00-00 00:00:00'),(130478,10,'R74.8 ','Abnormal levels of other serum enzymes','Y','0000-00-00 00:00:00'),(130476,10,'R74.01 ','Elevation of levels of liver transaminase levels','Y','0000-00-00 00:00:00'),(130477,10,'R74.02 ','Elevation of levels of lactic acid dehydrogenase [LDH]','Y','0000-00-00 00:00:00'),(130474,10,'R73.09 ','Other abnormal glucose','Y','0000-00-00 00:00:00'),(130475,10,'R73.9 ','Hyperglycemia, unspecified','Y','0000-00-00 00:00:00'),(130472,10,'R73.02 ','Impaired glucose tolerance (oral)','Y','0000-00-00 00:00:00'),(130473,10,'R73.03 ','Prediabetes','Y','0000-00-00 00:00:00'),(130470,10,'R71.8 ','Other abnormality of red blood cells','Y','0000-00-00 00:00:00'),(130471,10,'R73.01 ','Impaired fasting glucose','Y','0000-00-00 00:00:00'),(130468,10,'R70.1 ','Abnormal plasma viscosity','Y','0000-00-00 00:00:00'),(130469,10,'R71.0 ','Precipitous drop in hematocrit','Y','0000-00-00 00:00:00'),(130466,10,'R69','Illness, unspecified','Y','0000-00-00 00:00:00'),(130467,10,'R70.0 ','Elevated erythrocyte sedimentation rate','Y','0000-00-00 00:00:00'),(130463,10,'R68.83 ','Chills (without fever)','Y','0000-00-00 00:00:00'),(130464,10,'R68.84 ','Jaw pain','Y','0000-00-00 00:00:00'),(130465,10,'R68.89 ','Other general symptoms and signs','Y','0000-00-00 00:00:00'),(130460,10,'R68.3 ','Clubbing of fingers','Y','0000-00-00 00:00:00'),(130461,10,'R68.81 ','Early satiety','Y','0000-00-00 00:00:00'),(130462,10,'R68.82 ','Decreased libido','Y','0000-00-00 00:00:00'),(130458,10,'R68.19 ','Other nonspecific symptoms peculiar to infancy','Y','0000-00-00 00:00:00'),(130459,10,'R68.2 ','Dry mouth, unspecified','Y','0000-00-00 00:00:00'),(130456,10,'R68.12 ','Fussy infant (baby)','Y','0000-00-00 00:00:00'),(130457,10,'R68.13 ','Apparent life threatening event in infant (ALTE)','Y','0000-00-00 00:00:00'),(130454,10,'R68.0 ','Hypothermia, not associated with low environmental temperature','Y','0000-00-00 00:00:00'),(130455,10,'R68.11 ','Excessive crying of infant (baby)','Y','0000-00-00 00:00:00'),(130452,10,'R65.20 ','Severe sepsis without septic shock','Y','0000-00-00 00:00:00'),(130453,10,'R65.21 ','Severe sepsis with septic shock','Y','0000-00-00 00:00:00'),(130451,10,'R65.11 ','Systemic inflammatory response syndrome (SIRS) of non-infectious origin with acute organ dysfunction','Y','0000-00-00 00:00:00'),(130450,10,'R65.10 ','Systemic inflammatory response syndrome (SIRS) of non-infectious origin without acute organ dysfunction','Y','0000-00-00 00:00:00'),(130449,10,'R64','Cachexia','Y','0000-00-00 00:00:00'),(130447,10,'R63.6 ','Underweight','Y','0000-00-00 00:00:00'),(130448,10,'R63.8 ','Other symptoms and signs concerning food and fluid intake','Y','0000-00-00 00:00:00'),(130445,10,'R63.4 ','Abnormal weight loss','Y','0000-00-00 00:00:00'),(130446,10,'R63.5 ','Abnormal weight gain','Y','0000-00-00 00:00:00'),(130444,10,'R63.39 ','Other feeding difficulties','Y','0000-00-00 00:00:00'),(130442,10,'R63.31 ','Pediatric feeding disorder, acute','Y','0000-00-00 00:00:00'),(130443,10,'R63.32 ','Pediatric feeding disorder, chronic','Y','0000-00-00 00:00:00'),(130439,10,'R63.1 ','Polydipsia','Y','0000-00-00 00:00:00'),(130440,10,'R63.2 ','Polyphagia','Y','0000-00-00 00:00:00'),(130441,10,'R63.30 ','Feeding difficulties, unspecified','Y','0000-00-00 00:00:00'),(130437,10,'R62.7 ','Adult failure to thrive','Y','0000-00-00 00:00:00'),(130438,10,'R63.0 ','Anorexia','Y','0000-00-00 00:00:00'),(130435,10,'R62.52 ','Short stature (child)','Y','0000-00-00 00:00:00'),(130436,10,'R62.59 ','Other lack of expected normal physiological development in childhood','Y','0000-00-00 00:00:00'),(130434,10,'R62.51 ','Failure to thrive (child)','Y','0000-00-00 00:00:00'),(130431,10,'R61','Generalized hyperhidrosis','Y','0000-00-00 00:00:00'),(130432,10,'R62.0 ','Delayed milestone in childhood','Y','0000-00-00 00:00:00'),(130433,10,'R62.50 ','Unspecified lack of expected normal physiological development in childhood','Y','0000-00-00 00:00:00'),(130429,10,'R60.1 ','Generalized edema','Y','0000-00-00 00:00:00'),(130430,10,'R60.9 ','Edema, unspecified','Y','0000-00-00 00:00:00'),(130427,10,'R59.9 ','Enlarged lymph nodes, unspecified','Y','0000-00-00 00:00:00'),(130428,10,'R60.0 ','Localized edema','Y','0000-00-00 00:00:00'),(130425,10,'R59.0 ','Localized enlarged lymph nodes','Y','0000-00-00 00:00:00'),(130426,10,'R59.1 ','Generalized enlarged lymph nodes','Y','0000-00-00 00:00:00'),(130423,10,'R57.9 ','Shock, unspecified','Y','0000-00-00 00:00:00'),(130424,10,'R58','Hemorrhage, not elsewhere classified','Y','0000-00-00 00:00:00'),(130421,10,'R57.1 ','Hypovolemic shock','Y','0000-00-00 00:00:00'),(130422,10,'R57.8 ','Other shock','Y','0000-00-00 00:00:00'),(130418,10,'R56.1 ','Post traumatic seizures','Y','0000-00-00 00:00:00'),(130419,10,'R56.9 ','Unspecified convulsions','Y','0000-00-00 00:00:00'),(130420,10,'R57.0 ','Cardiogenic shock','Y','0000-00-00 00:00:00'),(130417,10,'R56.01 ','Complex febrile convulsions','Y','0000-00-00 00:00:00'),(130415,10,'R55','Syncope and collapse','Y','0000-00-00 00:00:00'),(130416,10,'R56.00 ','Simple febrile convulsions','Y','0000-00-00 00:00:00'),(130413,10,'R53.83 ','Other fatigue','Y','0000-00-00 00:00:00'),(130414,10,'R54','Age-related physical debility','Y','0000-00-00 00:00:00'),(130411,10,'R53.81 ','Other malaise','Y','0000-00-00 00:00:00'),(130412,10,'R53.82 ','Chronic fatigue, unspecified','Y','0000-00-00 00:00:00'),(130409,10,'R53.1 ','Weakness','Y','0000-00-00 00:00:00'),(130410,10,'R53.2 ','Functional quadriplegia','Y','0000-00-00 00:00:00'),(130406,10,'R51.9 ','Headache, unspecified','Y','0000-00-00 00:00:00'),(130407,10,'R52','Pain, unspecified','Y','0000-00-00 00:00:00'),(130408,10,'R53.0 ','Neoplastic (malignant) related fatigue','Y','0000-00-00 00:00:00'),(130404,10,'R50.9 ','Fever, unspecified','Y','0000-00-00 00:00:00'),(130405,10,'R51.0 ','Headache with orthostatic component, not elsewhere classified','Y','0000-00-00 00:00:00'),(130402,10,'R50.83 ','Postvaccination fever','Y','0000-00-00 00:00:00'),(130403,10,'R50.84 ','Febrile nonhemolytic transfusion reaction','Y','0000-00-00 00:00:00'),(130400,10,'R50.81 ','Fever presenting with conditions classified elsewhere','Y','0000-00-00 00:00:00'),(130401,10,'R50.82 ','Postprocedural fever','Y','0000-00-00 00:00:00'),(130398,10,'R49.9 ','Unspecified voice and resonance disorder','Y','0000-00-00 00:00:00'),(130399,10,'R50.2 ','Drug induced fever','Y','0000-00-00 00:00:00'),(130396,10,'R49.22 ','Hyponasality','Y','0000-00-00 00:00:00'),(130397,10,'R49.8 ','Other voice and resonance disorders','Y','0000-00-00 00:00:00'),(130393,10,'R49.0 ','Dysphonia','Y','0000-00-00 00:00:00'),(130394,10,'R49.1 ','Aphonia','Y','0000-00-00 00:00:00'),(130395,10,'R49.21 ','Hypernasality','Y','0000-00-00 00:00:00'),(130391,10,'R48.8 ','Other symbolic dysfunctions','Y','0000-00-00 00:00:00'),(130392,10,'R48.9 ','Unspecified symbolic dysfunctions','Y','0000-00-00 00:00:00'),(130388,10,'R48.1 ','Agnosia','Y','0000-00-00 00:00:00'),(130389,10,'R48.2 ','Apraxia','Y','0000-00-00 00:00:00'),(130390,10,'R48.3 ','Visual agnosia','Y','0000-00-00 00:00:00'),(130386,10,'R47.9 ','Unspecified speech disturbances','Y','0000-00-00 00:00:00'),(130387,10,'R48.0 ','Dyslexia and alexia','Y','0000-00-00 00:00:00'),(130385,10,'R47.89 ','Other speech disturbances','Y','0000-00-00 00:00:00'),(130383,10,'R47.81 ','Slurred speech','Y','0000-00-00 00:00:00'),(130384,10,'R47.82 ','Fluency disorder in conditions classified elsewhere','Y','0000-00-00 00:00:00'),(130381,10,'R47.02 ','Dysphasia','Y','0000-00-00 00:00:00'),(130382,10,'R47.1 ','Dysarthria and anarthria','Y','0000-00-00 00:00:00'),(130380,10,'R47.01 ','Aphasia','Y','0000-00-00 00:00:00'),(130378,10,'R46.81 ','Obsessive-compulsive behavior','Y','0000-00-00 00:00:00'),(130379,10,'R46.89 ','Other symptoms and signs involving appearance and behavior','Y','0000-00-00 00:00:00'),(130377,10,'R46.7 ','Verbosity and circumstantial detail obscuring reason for contact','Y','0000-00-00 00:00:00'),(130375,10,'R46.5 ','Suspiciousness and marked evasiveness','Y','0000-00-00 00:00:00'),(130376,10,'R46.6 ','Undue concern and preoccupation with stressful events','Y','0000-00-00 00:00:00'),(130372,10,'R46.2 ','Strange and inexplicable behavior','Y','0000-00-00 00:00:00'),(130373,10,'R46.3 ','Overactivity','Y','0000-00-00 00:00:00'),(130374,10,'R46.4 ','Slowness and poor responsiveness','Y','0000-00-00 00:00:00'),(130370,10,'R46.0 ','Very low level of personal hygiene','Y','0000-00-00 00:00:00'),(130371,10,'R46.1 ','Bizarre personal appearance','Y','0000-00-00 00:00:00'),(130368,10,'R45.88 ','Nonsuicidal self-harm','Y','0000-00-00 00:00:00'),(130369,10,'R45.89 ','Other symptoms and signs involving emotional state','Y','0000-00-00 00:00:00'),(130366,10,'R45.86 ','Emotional lability','Y','0000-00-00 00:00:00'),(130367,10,'R45.87 ','Impulsiveness','Y','0000-00-00 00:00:00'),(130363,10,'R45.84 ','Anhedonia','Y','0000-00-00 00:00:00'),(130364,10,'R45.850 ','Homicidal ideations','Y','0000-00-00 00:00:00'),(130365,10,'R45.851 ','Suicidal ideations','Y','0000-00-00 00:00:00'),(130361,10,'R45.82 ','Worries','Y','0000-00-00 00:00:00'),(130362,10,'R45.83 ','Excessive crying of child, adolescent or adult','Y','0000-00-00 00:00:00'),(130359,10,'R45.7 ','State of emotional shock and stress, unspecified','Y','0000-00-00 00:00:00'),(130360,10,'R45.81 ','Low self-esteem','Y','0000-00-00 00:00:00'),(130357,10,'R45.5 ','Hostility','Y','0000-00-00 00:00:00'),(130358,10,'R45.6 ','Violent behavior','Y','0000-00-00 00:00:00'),(130354,10,'R45.2 ','Unhappiness','Y','0000-00-00 00:00:00'),(130355,10,'R45.3 ','Demoralization and apathy','Y','0000-00-00 00:00:00'),(130356,10,'R45.4 ','Irritability and anger','Y','0000-00-00 00:00:00'),(130352,10,'R45.0 ','Nervousness','Y','0000-00-00 00:00:00'),(130353,10,'R45.1 ','Restlessness and agitation','Y','0000-00-00 00:00:00'),(130351,10,'R44.9 ','Unspecified symptoms and signs involving general sensations and perceptions','Y','0000-00-00 00:00:00'),(130350,10,'R44.8 ','Other symptoms and signs involving general sensations and perceptions','Y','0000-00-00 00:00:00'),(130348,10,'R44.2 ','Other hallucinations','Y','0000-00-00 00:00:00'),(130349,10,'R44.3 ','Hallucinations, unspecified','Y','0000-00-00 00:00:00'),(130346,10,'R44.0 ','Auditory hallucinations','Y','0000-00-00 00:00:00'),(130347,10,'R44.1 ','Visual hallucinations','Y','0000-00-00 00:00:00'),(130344,10,'R43.8 ','Other disturbances of smell and taste','Y','0000-00-00 00:00:00'),(130345,10,'R43.9 ','Unspecified disturbances of smell and taste','Y','0000-00-00 00:00:00'),(130341,10,'R43.0 ','Anosmia','Y','0000-00-00 00:00:00'),(130342,10,'R43.1 ','Parosmia','Y','0000-00-00 00:00:00'),(130343,10,'R43.2 ','Parageusia','Y','0000-00-00 00:00:00'),(130340,10,'R42','Dizziness and giddiness','Y','0000-00-00 00:00:00'),(130338,10,'R41.89 ','Other symptoms and signs involving cognitive functions and awareness','Y','0000-00-00 00:00:00'),(130339,10,'R41.9 ','Unspecified symptoms and signs involving cognitive functions and awareness','Y','0000-00-00 00:00:00'),(130336,10,'R41.843 ','Psychomotor deficit','Y','0000-00-00 00:00:00'),(130337,10,'R41.844 ','Frontal lobe and executive function deficit','Y','0000-00-00 00:00:00'),(130334,10,'R41.841 ','Cognitive communication deficit','Y','0000-00-00 00:00:00'),(130335,10,'R41.842 ','Visuospatial deficit','Y','0000-00-00 00:00:00'),(130333,10,'R41.840 ','Attention and concentration deficit','Y','0000-00-00 00:00:00'),(130331,10,'R41.82 ','Altered mental status, unspecified','Y','0000-00-00 00:00:00'),(130332,10,'R41.83 ','Borderline intellectual functioning','Y','0000-00-00 00:00:00'),(130328,10,'R41.3 ','Other amnesia','Y','0000-00-00 00:00:00'),(130329,10,'R41.4 ','Neurologic neglect syndrome','Y','0000-00-00 00:00:00'),(130330,10,'R41.81 ','Age-related cognitive decline','Y','0000-00-00 00:00:00'),(130326,10,'R41.1 ','Anterograde amnesia','Y','0000-00-00 00:00:00'),(130327,10,'R41.2 ','Retrograde amnesia','Y','0000-00-00 00:00:00'),(130324,10,'R40.4 ','Transient alteration of awareness','Y','0000-00-00 00:00:00'),(130325,10,'R41.0 ','Disorientation, unspecified','Y','0000-00-00 00:00:00'),(130322,10,'R40.2A ','Nontraumatic coma due to underlying condition','Y','0000-00-00 00:00:00'),(130323,10,'R40.3 ','Persistent vegetative state','Y','0000-00-00 00:00:00'),(130321,10,'R40.2444 ','Other coma, without documented Glasgow coma scale score, or with partial score reported, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130320,10,'R40.2443 ','Other coma, without documented Glasgow coma scale score, or with partial score reported, at hospital admission','Y','0000-00-00 00:00:00'),(130319,10,'R40.2442 ','Other coma, without documented Glasgow coma scale score, or with partial score reported, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130318,10,'R40.2441 ','Other coma, without documented Glasgow coma scale score, or with partial score reported, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130317,10,'R40.2440 ','Other coma, without documented Glasgow coma scale score, or with partial score reported, unspecified time','Y','0000-00-00 00:00:00'),(130315,10,'R40.2433 ','Glasgow coma scale score 3-8, at hospital admission','Y','0000-00-00 00:00:00'),(130316,10,'R40.2434 ','Glasgow coma scale score 3-8, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130314,10,'R40.2432 ','Glasgow coma scale score 3-8, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130312,10,'R40.2430 ','Glasgow coma scale score 3-8, unspecified time','Y','0000-00-00 00:00:00'),(130313,10,'R40.2431 ','Glasgow coma scale score 3-8, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130311,10,'R40.2424 ','Glasgow coma scale score 9-12, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130310,10,'R40.2423 ','Glasgow coma scale score 9-12, at hospital admission','Y','0000-00-00 00:00:00'),(130308,10,'R40.2421 ','Glasgow coma scale score 9-12, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130309,10,'R40.2422 ','Glasgow coma scale score 9-12, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130307,10,'R40.2420 ','Glasgow coma scale score 9-12, unspecified time','Y','0000-00-00 00:00:00'),(130306,10,'R40.2414 ','Glasgow coma scale score 13-15, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130304,10,'R40.2412 ','Glasgow coma scale score 13-15, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130305,10,'R40.2413 ','Glasgow coma scale score 13-15, at hospital admission','Y','0000-00-00 00:00:00'),(130302,10,'R40.2410 ','Glasgow coma scale score 13-15, unspecified time','Y','0000-00-00 00:00:00'),(130303,10,'R40.2411 ','Glasgow coma scale score 13-15, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130300,10,'R40.2363 ','Coma scale, best motor response, obeys commands, at hospital admission','Y','0000-00-00 00:00:00'),(130301,10,'R40.2364 ','Coma scale, best motor response, obeys commands, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130299,10,'R40.2362 ','Coma scale, best motor response, obeys commands, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130298,10,'R40.2361 ','Coma scale, best motor response, obeys commands, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130297,10,'R40.2360 ','Coma scale, best motor response, obeys commands, unspecified time','Y','0000-00-00 00:00:00'),(130296,10,'R40.2354 ','Coma scale, best motor response, localizes pain, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130294,10,'R40.2352 ','Coma scale, best motor response, localizes pain, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130295,10,'R40.2353 ','Coma scale, best motor response, localizes pain, at hospital admission','Y','0000-00-00 00:00:00'),(130293,10,'R40.2351 ','Coma scale, best motor response, localizes pain, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130292,10,'R40.2350 ','Coma scale, best motor response, localizes pain, unspecified time','Y','0000-00-00 00:00:00'),(130291,10,'R40.2344 ','Coma scale, best motor response, flexion withdrawal, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130290,10,'R40.2343 ','Coma scale, best motor response, flexion withdrawal, at hospital admission','Y','0000-00-00 00:00:00'),(130289,10,'R40.2342 ','Coma scale, best motor response, flexion withdrawal, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130287,10,'R40.2340 ','Coma scale, best motor response, flexion withdrawal, unspecified time','Y','0000-00-00 00:00:00'),(130288,10,'R40.2341 ','Coma scale, best motor response, flexion withdrawal, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130286,10,'R40.2334 ','Coma scale, best motor response, abnormal flexion, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130285,10,'R40.2333 ','Coma scale, best motor response, abnormal flexion, at hospital admission','Y','0000-00-00 00:00:00'),(130284,10,'R40.2332 ','Coma scale, best motor response, abnormal flexion, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130283,10,'R40.2331 ','Coma scale, best motor response, abnormal flexion, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130282,10,'R40.2330 ','Coma scale, best motor response, abnormal flexion, unspecified time','Y','0000-00-00 00:00:00'),(130281,10,'R40.2324 ','Coma scale, best motor response, extension, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130280,10,'R40.2323 ','Coma scale, best motor response, extension, at hospital admission','Y','0000-00-00 00:00:00'),(130278,10,'R40.2321 ','Coma scale, best motor response, extension, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130279,10,'R40.2322 ','Coma scale, best motor response, extension, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130277,10,'R40.2320 ','Coma scale, best motor response, extension, unspecified time','Y','0000-00-00 00:00:00'),(130276,10,'R40.2314 ','Coma scale, best motor response, none, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130274,10,'R40.2312 ','Coma scale, best motor response, none, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130275,10,'R40.2313 ','Coma scale, best motor response, none, at hospital admission','Y','0000-00-00 00:00:00'),(130273,10,'R40.2311 ','Coma scale, best motor response, none, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130272,10,'R40.2310 ','Coma scale, best motor response, none, unspecified time','Y','0000-00-00 00:00:00'),(130271,10,'R40.2254 ','Coma scale, best verbal response, oriented, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130270,10,'R40.2253 ','Coma scale, best verbal response, oriented, at hospital admission','Y','0000-00-00 00:00:00'),(130268,10,'R40.2251 ','Coma scale, best verbal response, oriented, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130269,10,'R40.2252 ','Coma scale, best verbal response, oriented, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130267,10,'R40.2250 ','Coma scale, best verbal response, oriented, unspecified time','Y','0000-00-00 00:00:00'),(130266,10,'R40.2244 ','Coma scale, best verbal response, confused conversation, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130265,10,'R40.2243 ','Coma scale, best verbal response, confused conversation, at hospital admission','Y','0000-00-00 00:00:00'),(130264,10,'R40.2242 ','Coma scale, best verbal response, confused conversation, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130262,10,'R40.2240 ','Coma scale, best verbal response, confused conversation, unspecified time','Y','0000-00-00 00:00:00'),(130263,10,'R40.2241 ','Coma scale, best verbal response, confused conversation, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130261,10,'R40.2234 ','Coma scale, best verbal response, inappropriate words, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130260,10,'R40.2233 ','Coma scale, best verbal response, inappropriate words, at hospital admission','Y','0000-00-00 00:00:00'),(130259,10,'R40.2232 ','Coma scale, best verbal response, inappropriate words, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130258,10,'R40.2231 ','Coma scale, best verbal response, inappropriate words, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130257,10,'R40.2230 ','Coma scale, best verbal response, inappropriate words, unspecified time','Y','0000-00-00 00:00:00'),(130256,10,'R40.2224 ','Coma scale, best verbal response, incomprehensible words, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130255,10,'R40.2223 ','Coma scale, best verbal response, incomprehensible words, at hospital admission','Y','0000-00-00 00:00:00'),(130253,10,'R40.2221 ','Coma scale, best verbal response, incomprehensible words, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130254,10,'R40.2222 ','Coma scale, best verbal response, incomprehensible words, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130252,10,'R40.2220 ','Coma scale, best verbal response, incomprehensible words, unspecified time','Y','0000-00-00 00:00:00'),(130251,10,'R40.2214 ','Coma scale, best verbal response, none, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130250,10,'R40.2213 ','Coma scale, best verbal response, none, at hospital admission','Y','0000-00-00 00:00:00'),(130249,10,'R40.2212 ','Coma scale, best verbal response, none, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130248,10,'R40.2211 ','Coma scale, best verbal response, none, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130247,10,'R40.2210 ','Coma scale, best verbal response, none, unspecified time','Y','0000-00-00 00:00:00'),(130246,10,'R40.2144 ','Coma scale, eyes open, spontaneous, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130244,10,'R40.2142 ','Coma scale, eyes open, spontaneous, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130245,10,'R40.2143 ','Coma scale, eyes open, spontaneous, at hospital admission','Y','0000-00-00 00:00:00'),(130243,10,'R40.2141 ','Coma scale, eyes open, spontaneous, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130241,10,'R40.2134 ','Coma scale, eyes open, to sound, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130242,10,'R40.2140 ','Coma scale, eyes open, spontaneous, unspecified time','Y','0000-00-00 00:00:00'),(130240,10,'R40.2133 ','Coma scale, eyes open, to sound, at hospital admission','Y','0000-00-00 00:00:00'),(130239,10,'R40.2132 ','Coma scale, eyes open, to sound, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130237,10,'R40.2130 ','Coma scale, eyes open, to sound, unspecified time','Y','0000-00-00 00:00:00'),(130238,10,'R40.2131 ','Coma scale, eyes open, to sound, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130236,10,'R40.2124 ','Coma scale, eyes open, to pain, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130234,10,'R40.2122 ','Coma scale, eyes open, to pain, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130235,10,'R40.2123 ','Coma scale, eyes open, to pain, at hospital admission','Y','0000-00-00 00:00:00'),(130233,10,'R40.2121 ','Coma scale, eyes open, to pain, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130231,10,'R40.2114 ','Coma scale, eyes open, never, 24 hours or more after hospital admission','Y','0000-00-00 00:00:00'),(130232,10,'R40.2120 ','Coma scale, eyes open, to pain, unspecified time','Y','0000-00-00 00:00:00'),(130230,10,'R40.2113 ','Coma scale, eyes open, never, at hospital admission','Y','0000-00-00 00:00:00'),(130228,10,'R40.2111 ','Coma scale, eyes open, never, in the field [EMT or ambulance]','Y','0000-00-00 00:00:00'),(130229,10,'R40.2112 ','Coma scale, eyes open, never, at arrival to emergency department','Y','0000-00-00 00:00:00'),(130227,10,'R40.2110 ','Coma scale, eyes open, never, unspecified time','Y','0000-00-00 00:00:00'),(130225,10,'R40.1 ','Stupor','Y','0000-00-00 00:00:00'),(130226,10,'R40.20 ','Unspecified coma','Y','0000-00-00 00:00:00'),(130224,10,'R40.0 ','Somnolence','Y','0000-00-00 00:00:00'),(130223,10,'R39.9 ','Unspecified symptoms and signs involving the genitourinary system','Y','0000-00-00 00:00:00'),(130221,10,'R39.84 ','Bilateral non-palpable testicles','Y','0000-00-00 00:00:00'),(130222,10,'R39.89 ','Other symptoms and signs involving the genitourinary system','Y','0000-00-00 00:00:00'),(130220,10,'R39.83 ','Unilateral non-palpable testicle','Y','0000-00-00 00:00:00'),(130219,10,'R39.82 ','Chronic bladder pain','Y','0000-00-00 00:00:00'),(130217,10,'R39.2 ','Extrarenal uremia','Y','0000-00-00 00:00:00'),(130218,10,'R39.81 ','Functional urinary incontinence','Y','0000-00-00 00:00:00'),(130216,10,'R39.198 ','Other difficulties with micturition','Y','0000-00-00 00:00:00'),(130214,10,'R39.191 ','Need to immediately re-void','Y','0000-00-00 00:00:00'),(130215,10,'R39.192 ','Position dependent micturition','Y','0000-00-00 00:00:00'),(130213,10,'R39.16 ','Straining to void','Y','0000-00-00 00:00:00'),(130211,10,'R39.14 ','Feeling of incomplete bladder emptying','Y','0000-00-00 00:00:00'),(130212,10,'R39.15 ','Urgency of urination','Y','0000-00-00 00:00:00'),(130210,10,'R39.13 ','Splitting of urinary stream','Y','0000-00-00 00:00:00'),(130208,10,'R39.11 ','Hesitancy of micturition','Y','0000-00-00 00:00:00'),(130209,10,'R39.12 ','Poor urinary stream','Y','0000-00-00 00:00:00'),(130206,10,'R37','Sexual dysfunction, unspecified','Y','0000-00-00 00:00:00'),(130207,10,'R39.0 ','Extravasation of urine','Y','0000-00-00 00:00:00'),(130204,10,'R36.1 ','Hematospermia','Y','0000-00-00 00:00:00'),(130205,10,'R36.9 ','Urethral discharge, unspecified','Y','0000-00-00 00:00:00'),(130202,10,'R35.89 ','Other polyuria','Y','0000-00-00 00:00:00'),(130203,10,'R36.0 ','Urethral discharge without blood','Y','0000-00-00 00:00:00'),(130200,10,'R35.1 ','Nocturia','Y','0000-00-00 00:00:00'),(130201,10,'R35.81 ','Nocturnal polyuria','Y','0000-00-00 00:00:00'),(130199,10,'R35.0 ','Frequency of micturition','Y','0000-00-00 00:00:00'),(130197,10,'R33.9 ','Retention of urine, unspecified','Y','0000-00-00 00:00:00'),(130198,10,'R34','Anuria and oliguria','Y','0000-00-00 00:00:00'),(130195,10,'R33.0 ','Drug induced retention of urine','Y','0000-00-00 00:00:00'),(130196,10,'R33.8 ','Other retention of urine','Y','0000-00-00 00:00:00'),(130193,10,'R31.9 ','Hematuria, unspecified','Y','0000-00-00 00:00:00'),(130194,10,'R32','Unspecified urinary incontinence','Y','0000-00-00 00:00:00'),(130192,10,'R31.29 ','Other microscopic hematuria','Y','0000-00-00 00:00:00'),(130190,10,'R31.1 ','Benign essential microscopic hematuria','Y','0000-00-00 00:00:00'),(130191,10,'R31.21 ','Asymptomatic microscopic hematuria','Y','0000-00-00 00:00:00'),(130189,10,'R31.0 ','Gross hematuria','Y','0000-00-00 00:00:00'),(130188,10,'R30.9 ','Painful micturition, unspecified','Y','0000-00-00 00:00:00'),(130186,10,'R30.0 ','Dysuria','Y','0000-00-00 00:00:00'),(130187,10,'R30.1 ','Vesical tenesmus','Y','0000-00-00 00:00:00'),(130185,10,'R29.91 ','Unspecified symptoms and signs involving the musculoskeletal system','Y','0000-00-00 00:00:00'),(130184,10,'R29.90 ','Unspecified symptoms and signs involving the nervous system','Y','0000-00-00 00:00:00'),(130182,10,'R29.891 ','Ocular torticollis','Y','0000-00-00 00:00:00'),(130183,10,'R29.898 ','Other symptoms and signs involving the musculoskeletal system','Y','0000-00-00 00:00:00'),(130181,10,'R29.890 ','Loss of height','Y','0000-00-00 00:00:00'),(130180,10,'R29.818 ','Other symptoms and signs involving the nervous system','Y','0000-00-00 00:00:00'),(130178,10,'R29.742 ','NIHSS score 42','Y','0000-00-00 00:00:00'),(130179,10,'R29.810 ','Facial weakness','Y','0000-00-00 00:00:00'),(130176,10,'R29.740 ','NIHSS score 40','Y','0000-00-00 00:00:00'),(130177,10,'R29.741 ','NIHSS score 41','Y','0000-00-00 00:00:00'),(130174,10,'R29.738 ','NIHSS score 38','Y','0000-00-00 00:00:00'),(130175,10,'R29.739 ','NIHSS score 39','Y','0000-00-00 00:00:00'),(130172,10,'R29.736 ','NIHSS score 36','Y','0000-00-00 00:00:00'),(130173,10,'R29.737 ','NIHSS score 37','Y','0000-00-00 00:00:00'),(130170,10,'R29.734 ','NIHSS score 34','Y','0000-00-00 00:00:00'),(130171,10,'R29.735 ','NIHSS score 35','Y','0000-00-00 00:00:00'),(130168,10,'R29.732 ','NIHSS score 32','Y','0000-00-00 00:00:00'),(130169,10,'R29.733 ','NIHSS score 33','Y','0000-00-00 00:00:00'),(130166,10,'R29.730 ','NIHSS score 30','Y','0000-00-00 00:00:00'),(130167,10,'R29.731 ','NIHSS score 31','Y','0000-00-00 00:00:00'),(130164,10,'R29.728 ','NIHSS score 28','Y','0000-00-00 00:00:00'),(130165,10,'R29.729 ','NIHSS score 29','Y','0000-00-00 00:00:00'),(130161,10,'R29.725 ','NIHSS score 25','Y','0000-00-00 00:00:00'),(130162,10,'R29.726 ','NIHSS score 26','Y','0000-00-00 00:00:00'),(130163,10,'R29.727 ','NIHSS score 27','Y','0000-00-00 00:00:00'),(130158,10,'R29.722 ','NIHSS score 22','Y','0000-00-00 00:00:00'),(130159,10,'R29.723 ','NIHSS score 23','Y','0000-00-00 00:00:00'),(130160,10,'R29.724 ','NIHSS score 24','Y','0000-00-00 00:00:00'),(130156,10,'R29.720 ','NIHSS score 20','Y','0000-00-00 00:00:00'),(130157,10,'R29.721 ','NIHSS score 21','Y','0000-00-00 00:00:00'),(130153,10,'R29.717 ','NIHSS score 17','Y','0000-00-00 00:00:00'),(130154,10,'R29.718 ','NIHSS score 18','Y','0000-00-00 00:00:00'),(130155,10,'R29.719 ','NIHSS score 19','Y','0000-00-00 00:00:00'),(130150,10,'R29.714 ','NIHSS score 14','Y','0000-00-00 00:00:00'),(130151,10,'R29.715 ','NIHSS score 15','Y','0000-00-00 00:00:00'),(130152,10,'R29.716 ','NIHSS score 16','Y','0000-00-00 00:00:00'),(130147,10,'R29.711 ','NIHSS score 11','Y','0000-00-00 00:00:00'),(130148,10,'R29.712 ','NIHSS score 12','Y','0000-00-00 00:00:00'),(130149,10,'R29.713 ','NIHSS score 13','Y','0000-00-00 00:00:00'),(130145,10,'R29.709 ','NIHSS score 9','Y','0000-00-00 00:00:00'),(130146,10,'R29.710 ','NIHSS score 10','Y','0000-00-00 00:00:00'),(130142,10,'R29.706 ','NIHSS score 6','Y','0000-00-00 00:00:00'),(130143,10,'R29.707 ','NIHSS score 7','Y','0000-00-00 00:00:00'),(130144,10,'R29.708 ','NIHSS score 8','Y','0000-00-00 00:00:00'),(130139,10,'R29.703 ','NIHSS score 3','Y','0000-00-00 00:00:00'),(130140,10,'R29.704 ','NIHSS score 4','Y','0000-00-00 00:00:00'),(130141,10,'R29.705 ','NIHSS score 5','Y','0000-00-00 00:00:00'),(130137,10,'R29.701 ','NIHSS score 1','Y','0000-00-00 00:00:00'),(130138,10,'R29.702 ','NIHSS score 2','Y','0000-00-00 00:00:00'),(130134,10,'R29.5 ','Transient paralysis','Y','0000-00-00 00:00:00'),(130135,10,'R29.6 ','Repeated falls','Y','0000-00-00 00:00:00'),(130136,10,'R29.700 ','NIHSS score 0','Y','0000-00-00 00:00:00'),(130131,10,'R29.2 ','Abnormal reflex','Y','0000-00-00 00:00:00'),(130132,10,'R29.3 ','Abnormal posture','Y','0000-00-00 00:00:00'),(130133,10,'R29.4 ','Clicking hip','Y','0000-00-00 00:00:00'),(130129,10,'R29.0 ','Tetany','Y','0000-00-00 00:00:00'),(130130,10,'R29.1 ','Meningismus','Y','0000-00-00 00:00:00'),(130128,10,'R27.9 ','Unspecified lack of coordination','Y','0000-00-00 00:00:00'),(130126,10,'R27.0 ','Ataxia, unspecified','Y','0000-00-00 00:00:00'),(130127,10,'R27.8 ','Other lack of coordination','Y','0000-00-00 00:00:00'),(130124,10,'R26.89 ','Other abnormalities of gait and mobility','Y','0000-00-00 00:00:00'),(130125,10,'R26.9 ','Unspecified abnormalities of gait and mobility','Y','0000-00-00 00:00:00'),(130123,10,'R26.81 ','Unsteadiness on feet','Y','0000-00-00 00:00:00'),(130120,10,'R26.0 ','Ataxic gait','Y','0000-00-00 00:00:00'),(130121,10,'R26.1 ','Paralytic gait','Y','0000-00-00 00:00:00'),(130122,10,'R26.2 ','Difficulty in walking, not elsewhere classified','Y','0000-00-00 00:00:00'),(130119,10,'R25.9 ','Unspecified abnormal involuntary movements','Y','0000-00-00 00:00:00'),(130116,10,'R25.2 ','Cramp and spasm','Y','0000-00-00 00:00:00'),(130117,10,'R25.3 ','Fasciculation','Y','0000-00-00 00:00:00'),(130118,10,'R25.8 ','Other abnormal involuntary movements','Y','0000-00-00 00:00:00'),(130114,10,'R25.0 ','Abnormal head movements','Y','0000-00-00 00:00:00'),(130115,10,'R25.1 ','Tremor, unspecified','Y','0000-00-00 00:00:00'),(130111,10,'R23.4 ','Changes in skin texture','Y','0000-00-00 00:00:00'),(130112,10,'R23.8 ','Other skin changes','Y','0000-00-00 00:00:00'),(130113,10,'R23.9 ','Unspecified skin changes','Y','0000-00-00 00:00:00'),(130109,10,'R23.2 ','Flushing','Y','0000-00-00 00:00:00'),(130110,10,'R23.3 ','Spontaneous ecchymoses','Y','0000-00-00 00:00:00'),(130107,10,'R23.0 ','Cyanosis','Y','0000-00-00 00:00:00'),(130108,10,'R23.1 ','Pallor','Y','0000-00-00 00:00:00'),(130105,10,'R22.43 ','Localized swelling, mass and lump, lower limb, bilateral','Y','0000-00-00 00:00:00'),(130106,10,'R22.9 ','Localized swelling, mass and lump, unspecified','Y','0000-00-00 00:00:00'),(130104,10,'R22.42 ','Localized swelling, mass and lump, left lower limb','Y','0000-00-00 00:00:00'),(130102,10,'R22.40 ','Localized swelling, mass and lump, unspecified lower limb','Y','0000-00-00 00:00:00'),(130103,10,'R22.41 ','Localized swelling, mass and lump, right lower limb','Y','0000-00-00 00:00:00'),(130101,10,'R22.33 ','Localized swelling, mass and lump, upper limb, bilateral','Y','0000-00-00 00:00:00'),(130100,10,'R22.32 ','Localized swelling, mass and lump, left upper limb','Y','0000-00-00 00:00:00'),(130099,10,'R22.31 ','Localized swelling, mass and lump, right upper limb','Y','0000-00-00 00:00:00'),(130097,10,'R22.2 ','Localized swelling, mass and lump, trunk','Y','0000-00-00 00:00:00'),(130098,10,'R22.30 ','Localized swelling, mass and lump, unspecified upper limb','Y','0000-00-00 00:00:00'),(130095,10,'R22.0 ','Localized swelling, mass and lump, head','Y','0000-00-00 00:00:00'),(130096,10,'R22.1 ','Localized swelling, mass and lump, neck','Y','0000-00-00 00:00:00'),(130093,10,'R20.9 ','Unspecified disturbances of skin sensation','Y','0000-00-00 00:00:00'),(130094,10,'R21','Rash and other nonspecific skin eruption','Y','0000-00-00 00:00:00'),(130091,10,'R20.3 ','Hyperesthesia','Y','0000-00-00 00:00:00'),(130092,10,'R20.8 ','Other disturbances of skin sensation','Y','0000-00-00 00:00:00'),(130089,10,'R20.1 ','Hypoesthesia of skin','Y','0000-00-00 00:00:00'),(130090,10,'R20.2 ','Paresthesia of skin','Y','0000-00-00 00:00:00'),(130087,10,'R19.8 ','Other specified symptoms and signs involving the digestive system and abdomen','Y','0000-00-00 00:00:00'),(130088,10,'R20.0 ','Anesthesia of skin','Y','0000-00-00 00:00:00'),(130085,10,'R19.6 ','Halitosis','Y','0000-00-00 00:00:00'),(130086,10,'R19.7 ','Diarrhea, unspecified','Y','0000-00-00 00:00:00'),(130082,10,'R19.37 ','Generalized abdominal rigidity','Y','0000-00-00 00:00:00'),(130083,10,'R19.4 ','Change in bowel habit','Y','0000-00-00 00:00:00'),(130084,10,'R19.5 ','Other fecal abnormalities','Y','0000-00-00 00:00:00'),(130080,10,'R19.35 ','Periumbilic abdominal rigidity','Y','0000-00-00 00:00:00'),(130081,10,'R19.36 ','Epigastric abdominal rigidity','Y','0000-00-00 00:00:00'),(130078,10,'R19.33 ','Right lower quadrant abdominal rigidity','Y','0000-00-00 00:00:00'),(130079,10,'R19.34 ','Left lower quadrant abdominal rigidity','Y','0000-00-00 00:00:00'),(130076,10,'R19.31 ','Right upper quadrant abdominal rigidity','Y','0000-00-00 00:00:00'),(130077,10,'R19.32 ','Left upper quadrant abdominal rigidity','Y','0000-00-00 00:00:00'),(130074,10,'R19.2 ','Visible peristalsis','Y','0000-00-00 00:00:00'),(130075,10,'R19.30 ','Abdominal rigidity, unspecified site','Y','0000-00-00 00:00:00'),(130072,10,'R19.12 ','Hyperactive bowel sounds','Y','0000-00-00 00:00:00'),(130073,10,'R19.15 ','Other abnormal bowel sounds','Y','0000-00-00 00:00:00'),(130070,10,'R19.09 ','Other intra-abdominal and pelvic swelling, mass and lump','Y','0000-00-00 00:00:00'),(130071,10,'R19.11 ','Absent bowel sounds','Y','0000-00-00 00:00:00'),(130068,10,'R19.06 ','Epigastric swelling, mass or lump','Y','0000-00-00 00:00:00'),(130069,10,'R19.07 ','Generalized intra-abdominal and pelvic swelling, mass and lump','Y','0000-00-00 00:00:00'),(130067,10,'R19.05 ','Periumbilic swelling, mass or lump','Y','0000-00-00 00:00:00'),(130065,10,'R19.03 ','Right lower quadrant abdominal swelling, mass and lump','Y','0000-00-00 00:00:00'),(130066,10,'R19.04 ','Left lower quadrant abdominal swelling, mass and lump','Y','0000-00-00 00:00:00'),(130064,10,'R19.02 ','Left upper quadrant abdominal swelling, mass and lump','Y','0000-00-00 00:00:00'),(130063,10,'R19.01 ','Right upper quadrant abdominal swelling, mass and lump','Y','0000-00-00 00:00:00'),(130060,10,'R18.0 ','Malignant ascites','Y','0000-00-00 00:00:00'),(130061,10,'R18.8 ','Other ascites','Y','0000-00-00 00:00:00'),(130062,10,'R19.00 ','Intra-abdominal and pelvic swelling, mass and lump, unspecified site','Y','0000-00-00 00:00:00'),(130058,10,'R16.2 ','Hepatomegaly with splenomegaly, not elsewhere classified','Y','0000-00-00 00:00:00'),(130059,10,'R17','Unspecified jaundice','Y','0000-00-00 00:00:00'),(130057,10,'R16.1 ','Splenomegaly, not elsewhere classified','Y','0000-00-00 00:00:00'),(130054,10,'R15.2 ','Fecal urgency','Y','0000-00-00 00:00:00'),(130055,10,'R15.9 ','Full incontinence of feces','Y','0000-00-00 00:00:00'),(130056,10,'R16.0 ','Hepatomegaly, not elsewhere classified','Y','0000-00-00 00:00:00'),(130052,10,'R15.0 ','Incomplete defecation','Y','0000-00-00 00:00:00'),(130053,10,'R15.1 ','Fecal smearing','Y','0000-00-00 00:00:00'),(130049,10,'R14.1 ','Gas pain','Y','0000-00-00 00:00:00'),(130050,10,'R14.2 ','Eructation','Y','0000-00-00 00:00:00'),(130051,10,'R14.3 ','Flatulence','Y','0000-00-00 00:00:00'),(130047,10,'R13.19 ','Other dysphagia','Y','0000-00-00 00:00:00'),(130048,10,'R14.0 ','Abdominal distension (gaseous)','Y','0000-00-00 00:00:00'),(130045,10,'R13.13 ','Dysphagia, pharyngeal phase','Y','0000-00-00 00:00:00'),(130046,10,'R13.14 ','Dysphagia, pharyngoesophageal phase','Y','0000-00-00 00:00:00'),(130043,10,'R13.11 ','Dysphagia, oral phase','Y','0000-00-00 00:00:00'),(130044,10,'R13.12 ','Dysphagia, oropharyngeal phase','Y','0000-00-00 00:00:00'),(130040,10,'R12','Heartburn','Y','0000-00-00 00:00:00'),(130041,10,'R13.0 ','Aphagia','Y','0000-00-00 00:00:00'),(130042,10,'R13.10 ','Dysphagia, unspecified','Y','0000-00-00 00:00:00'),(130039,10,'R11.2 ','Nausea with vomiting, unspecified','Y','0000-00-00 00:00:00'),(130038,10,'R11.15 ','Cyclical vomiting syndrome unrelated to migraine','Y','0000-00-00 00:00:00'),(130036,10,'R11.13 ','Vomiting of fecal matter','Y','0000-00-00 00:00:00'),(130037,10,'R11.14 ','Bilious vomiting','Y','0000-00-00 00:00:00'),(130034,10,'R11.11 ','Vomiting without nausea','Y','0000-00-00 00:00:00'),(130035,10,'R11.12 ','Projectile vomiting','Y','0000-00-00 00:00:00'),(130032,10,'R11.0 ','Nausea','Y','0000-00-00 00:00:00'),(130033,10,'R11.10 ','Vomiting, unspecified','Y','0000-00-00 00:00:00'),(130029,10,'R10.83 ','Colic','Y','0000-00-00 00:00:00'),(130030,10,'R10.84 ','Generalized abdominal pain','Y','0000-00-00 00:00:00'),(130031,10,'R10.9 ','Unspecified abdominal pain','Y','0000-00-00 00:00:00'),(130027,10,'R10.827 ','Generalized rebound abdominal tenderness','Y','0000-00-00 00:00:00'),(130028,10,'R10.829 ','Rebound abdominal tenderness, unspecified site','Y','0000-00-00 00:00:00'),(130026,10,'R10.826 ','Epigastric rebound abdominal tenderness','Y','0000-00-00 00:00:00'),(130024,10,'R10.824 ','Left lower quadrant rebound abdominal tenderness','Y','0000-00-00 00:00:00'),(130025,10,'R10.825 ','Periumbilic rebound abdominal tenderness','Y','0000-00-00 00:00:00'),(130023,10,'R10.823 ','Right lower quadrant rebound abdominal tenderness','Y','0000-00-00 00:00:00'),(130021,10,'R10.821 ','Right upper quadrant rebound abdominal tenderness','Y','0000-00-00 00:00:00'),(130022,10,'R10.822 ','Left upper quadrant rebound abdominal tenderness','Y','0000-00-00 00:00:00'),(130019,10,'R10.817 ','Generalized abdominal tenderness','Y','0000-00-00 00:00:00'),(130020,10,'R10.819 ','Abdominal tenderness, unspecified site','Y','0000-00-00 00:00:00'),(130017,10,'R10.815 ','Periumbilic abdominal tenderness','Y','0000-00-00 00:00:00'),(130018,10,'R10.816 ','Epigastric abdominal tenderness','Y','0000-00-00 00:00:00'),(130016,10,'R10.814 ','Left lower quadrant abdominal tenderness','Y','0000-00-00 00:00:00'),(130014,10,'R10.812 ','Left upper quadrant abdominal tenderness','Y','0000-00-00 00:00:00'),(130015,10,'R10.813 ','Right lower quadrant abdominal tenderness','Y','0000-00-00 00:00:00'),(130012,10,'R10.33 ','Periumbilical pain','Y','0000-00-00 00:00:00'),(130013,10,'R10.811 ','Right upper quadrant abdominal tenderness','Y','0000-00-00 00:00:00'),(130011,10,'R10.32 ','Left lower quadrant pain','Y','0000-00-00 00:00:00'),(130009,10,'R10.30 ','Lower abdominal pain, unspecified','Y','0000-00-00 00:00:00'),(130010,10,'R10.31 ','Right lower quadrant pain','Y','0000-00-00 00:00:00'),(130007,10,'R10.13 ','Epigastric pain','Y','0000-00-00 00:00:00'),(130008,10,'R10.2 ','Pelvic and perineal pain','Y','0000-00-00 00:00:00'),(130005,10,'R10.11 ','Right upper quadrant pain','Y','0000-00-00 00:00:00'),(130006,10,'R10.12 ','Left upper quadrant pain','Y','0000-00-00 00:00:00'),(130003,10,'R10.0 ','Acute abdomen','Y','0000-00-00 00:00:00'),(130004,10,'R10.10 ','Upper abdominal pain, unspecified','Y','0000-00-00 00:00:00'),(130001,10,'R09.A2 ','Foreign body sensation, throat','Y','0000-00-00 00:00:00'),(130002,10,'R09.A9 ','Foreign body sensation, other site','Y','0000-00-00 00:00:00'),(129999,10,'R09.A0 ','Foreign body sensation, unspecified','Y','0000-00-00 00:00:00'),(130000,10,'R09.A1 ','Foreign body sensation, nose','Y','0000-00-00 00:00:00'),(129998,10,'R09.89 ','Other specified symptoms and signs involving the circulatory and respiratory systems','Y','0000-00-00 00:00:00'),(129995,10,'R09.3 ','Abnormal sputum','Y','0000-00-00 00:00:00'),(129996,10,'R09.81 ','Nasal congestion','Y','0000-00-00 00:00:00'),(129997,10,'R09.82 ','Postnasal drip','Y','0000-00-00 00:00:00'),(129992,10,'R09.02 ','Hypoxemia','Y','0000-00-00 00:00:00'),(129993,10,'R09.1 ','Pleurisy','Y','0000-00-00 00:00:00'),(129994,10,'R09.2 ','Respiratory arrest','Y','0000-00-00 00:00:00'),(129990,10,'R07.9 ','Chest pain, unspecified','Y','0000-00-00 00:00:00'),(129991,10,'R09.01 ','Asphyxia','Y','0000-00-00 00:00:00'),(129987,10,'R07.81 ','Pleurodynia','Y','0000-00-00 00:00:00'),(129988,10,'R07.82 ','Intercostal pain','Y','0000-00-00 00:00:00'),(129989,10,'R07.89 ','Other chest pain','Y','0000-00-00 00:00:00'),(129984,10,'R07.0 ','Pain in throat','Y','0000-00-00 00:00:00'),(129985,10,'R07.1 ','Chest pain on breathing','Y','0000-00-00 00:00:00'),(129986,10,'R07.2 ','Precordial pain','Y','0000-00-00 00:00:00'),(129983,10,'R06.9 ','Unspecified abnormalities of breathing','Y','0000-00-00 00:00:00'),(129981,10,'R06.83 ','Snoring','Y','0000-00-00 00:00:00'),(129982,10,'R06.89 ','Other abnormalities of breathing','Y','0000-00-00 00:00:00'),(129978,10,'R06.7 ','Sneezing','Y','0000-00-00 00:00:00'),(129979,10,'R06.81 ','Apnea, not elsewhere classified','Y','0000-00-00 00:00:00'),(129980,10,'R06.82 ','Tachypnea, not elsewhere classified','Y','0000-00-00 00:00:00'),(129976,10,'R06.5 ','Mouth breathing','Y','0000-00-00 00:00:00'),(129977,10,'R06.6 ','Hiccough','Y','0000-00-00 00:00:00'),(129975,10,'R06.4 ','Hyperventilation','Y','0000-00-00 00:00:00'),(129972,10,'R06.1 ','Stridor','Y','0000-00-00 00:00:00'),(129973,10,'R06.2 ','Wheezing','Y','0000-00-00 00:00:00'),(129974,10,'R06.3 ','Periodic breathing','Y','0000-00-00 00:00:00'),(129970,10,'R06.03 ','Acute respiratory distress','Y','0000-00-00 00:00:00'),(129971,10,'R06.09 ','Other forms of dyspnea','Y','0000-00-00 00:00:00'),(129968,10,'R06.01 ','Orthopnea','Y','0000-00-00 00:00:00'),(129969,10,'R06.02 ','Shortness of breath','Y','0000-00-00 00:00:00'),(129965,10,'R05.8 ','Other specified cough','Y','0000-00-00 00:00:00'),(129966,10,'R05.9 ','Cough, unspecified','Y','0000-00-00 00:00:00'),(129967,10,'R06.00 ','Dyspnea, unspecified','Y','0000-00-00 00:00:00'),(129962,10,'R05.2 ','Subacute cough','Y','0000-00-00 00:00:00'),(129963,10,'R05.3 ','Chronic cough','Y','0000-00-00 00:00:00'),(129964,10,'R05.4 ','Cough syncope','Y','0000-00-00 00:00:00'),(129961,10,'R05.1 ','Acute cough','Y','0000-00-00 00:00:00'),(129959,10,'R04.89 ','Hemorrhage from other sites in respiratory passages','Y','0000-00-00 00:00:00'),(129960,10,'R04.9 ','Hemorrhage from respiratory passages, unspecified','Y','0000-00-00 00:00:00'),(129957,10,'R04.2 ','Hemoptysis','Y','0000-00-00 00:00:00'),(129958,10,'R04.81 ','Acute idiopathic pulmonary hemorrhage in infants','Y','0000-00-00 00:00:00'),(129955,10,'R04.0 ','Epistaxis','Y','0000-00-00 00:00:00'),(129956,10,'R04.1 ','Hemorrhage from throat','Y','0000-00-00 00:00:00'),(129953,10,'R03.0 ','Elevated blood-pressure reading, without diagnosis of hypertension','Y','0000-00-00 00:00:00'),(129954,10,'R03.1 ','Nonspecific low blood-pressure reading','Y','0000-00-00 00:00:00'),(129951,10,'R01.1 ','Cardiac murmur, unspecified','Y','0000-00-00 00:00:00'),(129952,10,'R01.2 ','Other cardiac sounds','Y','0000-00-00 00:00:00'),(129949,10,'R00.9 ','Unspecified abnormalities of heart beat','Y','0000-00-00 00:00:00'),(129950,10,'R01.0 ','Benign and innocent cardiac murmurs','Y','0000-00-00 00:00:00'),(129947,10,'R00.2 ','Palpitations','Y','0000-00-00 00:00:00'),(129948,10,'R00.8 ','Other abnormalities of heart beat','Y','0000-00-00 00:00:00'),(129945,10,'R00.0 ','Tachycardia, unspecified','Y','0000-00-00 00:00:00'),(129946,10,'R00.1 ','Bradycardia, unspecified','Y','0000-00-00 00:00:00'),(129944,10,'Q99.9 ','Chromosomal abnormality, unspecified','Y','0000-00-00 00:00:00'),(129942,10,'Q99.2 ','Fragile X chromosome','Y','0000-00-00 00:00:00'),(129943,10,'Q99.8 ','Other specified chromosome abnormalities','Y','0000-00-00 00:00:00'),(129940,10,'Q99.0 ','Chimera 46, XX/46, XY','Y','0000-00-00 00:00:00'),(129941,10,'Q99.1 ','46, XX true hermaphrodite','Y','0000-00-00 00:00:00'),(129939,10,'Q98.9 ','Sex chromosome abnormality, male phenotype, unspecified','Y','0000-00-00 00:00:00'),(129937,10,'Q98.7 ','Male with sex chromosome mosaicism','Y','0000-00-00 00:00:00'),(129938,10,'Q98.8 ','Other specified sex chromosome abnormalities, male phenotype','Y','0000-00-00 00:00:00'),(129935,10,'Q98.5 ','Karyotype 47, XYY','Y','0000-00-00 00:00:00'),(129936,10,'Q98.6 ','Male with structurally abnormal sex chromosome','Y','0000-00-00 00:00:00'),(129933,10,'Q98.3 ','Other male with 46, XX karyotype','Y','0000-00-00 00:00:00'),(129934,10,'Q98.4 ','Klinefelter syndrome, unspecified','Y','0000-00-00 00:00:00'),(129932,10,'Q98.1 ','Klinefelter syndrome, male with more than two X chromosomes','Y','0000-00-00 00:00:00'),(129930,10,'Q97.9 ','Sex chromosome abnormality, female phenotype, unspecified','Y','0000-00-00 00:00:00'),(129931,10,'Q98.0 ','Klinefelter syndrome karyotype 47, XXY','Y','0000-00-00 00:00:00'),(129929,10,'Q97.8 ','Other specified sex chromosome abnormalities, female phenotype','Y','0000-00-00 00:00:00'),(129927,10,'Q97.2 ','Mosaicism, lines with various numbers of X chromosomes','Y','0000-00-00 00:00:00'),(129928,10,'Q97.3 ','Female with 46, XY karyotype','Y','0000-00-00 00:00:00'),(129926,10,'Q97.1 ','Female with more than three X chromosomes','Y','0000-00-00 00:00:00'),(129924,10,'Q96.9 ','Turner\'s syndrome, unspecified','Y','0000-00-00 00:00:00'),(129925,10,'Q97.0 ','Karyotype 47, XXX','Y','0000-00-00 00:00:00'),(129922,10,'Q96.4 ','Mosaicism, 45, X/other cell line(s) with abnormal sex chromosome','Y','0000-00-00 00:00:00'),(129923,10,'Q96.8 ','Other variants of Turner\'s syndrome','Y','0000-00-00 00:00:00'),(129921,10,'Q96.3 ','Mosaicism, 45, X/46, XX or XY','Y','0000-00-00 00:00:00'),(129918,10,'Q96.0 ','Karyotype 45, X','Y','0000-00-00 00:00:00'),(129919,10,'Q96.1 ','Karyotype 46, X iso (Xq)','Y','0000-00-00 00:00:00'),(129920,10,'Q96.2 ','Karyotype 46, X with abnormal sex chromosome, except iso (Xq)','Y','0000-00-00 00:00:00'),(129916,10,'Q95.8 ','Other balanced rearrangements and structural markers','Y','0000-00-00 00:00:00'),(129917,10,'Q95.9 ','Balanced rearrangement and structural marker, unspecified','Y','0000-00-00 00:00:00'),(129915,10,'Q95.5 ','Individual with autosomal fragile site','Y','0000-00-00 00:00:00'),(129913,10,'Q95.2 ','Balanced autosomal rearrangement in abnormal individual','Y','0000-00-00 00:00:00'),(129914,10,'Q95.3 ','Balanced sex/autosomal rearrangement in abnormal individual','Y','0000-00-00 00:00:00'),(129912,10,'Q95.1 ','Chromosome inversion in normal individual','Y','0000-00-00 00:00:00'),(129910,10,'Q93.9 ','Deletion from autosomes, unspecified','Y','0000-00-00 00:00:00'),(129911,10,'Q95.0 ','Balanced translocation and insertion in normal individual','Y','0000-00-00 00:00:00'),(129907,10,'Q93.82 ','Williams syndrome','Y','0000-00-00 00:00:00'),(129908,10,'Q93.88 ','Other microdeletions','Y','0000-00-00 00:00:00'),(129909,10,'Q93.89 ','Other deletions from the autosomes','Y','0000-00-00 00:00:00'),(129906,10,'Q93.81 ','Velo-cardio-facial syndrome','Y','0000-00-00 00:00:00'),(129904,10,'Q93.59 ','Other deletions of part of a chromosome','Y','0000-00-00 00:00:00'),(129905,10,'Q93.7 ','Deletions with other complex rearrangements','Y','0000-00-00 00:00:00'),(129901,10,'Q93.4 ','Deletion of short arm of chromosome 5','Y','0000-00-00 00:00:00'),(129902,10,'Q93.51 ','Angelman syndrome','Y','0000-00-00 00:00:00'),(129903,10,'Q93.52 ','Phelan-McDermid syndrome','Y','0000-00-00 00:00:00'),(129900,10,'Q93.3 ','Deletion of short arm of chromosome 4','Y','0000-00-00 00:00:00'),(129898,10,'Q93.1 ','Whole chromosome monosomy, mosaicism (mitotic nondisjunction)','Y','0000-00-00 00:00:00'),(129899,10,'Q93.2 ','Chromosome replaced with ring, dicentric or isochromosome','Y','0000-00-00 00:00:00'),(129897,10,'Q93.0 ','Whole chromosome monosomy, nonmosaicism (meiotic nondisjunction)','Y','0000-00-00 00:00:00'),(129895,10,'Q92.8 ','Other specified trisomies and partial trisomies of autosomes','Y','0000-00-00 00:00:00'),(129896,10,'Q92.9 ','Trisomy and partial trisomy of autosomes, unspecified','Y','0000-00-00 00:00:00'),(129893,10,'Q92.62 ','Marker chromosomes in abnormal individual','Y','0000-00-00 00:00:00'),(129894,10,'Q92.7 ','Triploidy and polyploidy','Y','0000-00-00 00:00:00'),(129891,10,'Q92.5 ','Duplications with other complex rearrangements','Y','0000-00-00 00:00:00'),(129892,10,'Q92.61 ','Marker chromosomes in normal individual','Y','0000-00-00 00:00:00'),(129890,10,'Q92.2 ','Partial trisomy','Y','0000-00-00 00:00:00'),(129889,10,'Q92.1 ','Whole chromosome trisomy, mosaicism (mitotic nondisjunction)','Y','0000-00-00 00:00:00'),(129887,10,'Q91.7 ','Trisomy 13, unspecified','Y','0000-00-00 00:00:00'),(129888,10,'Q92.0 ','Whole chromosome trisomy, nonmosaicism (meiotic nondisjunction)','Y','0000-00-00 00:00:00'),(129886,10,'Q91.6 ','Trisomy 13, translocation','Y','0000-00-00 00:00:00'),(129884,10,'Q91.4 ','Trisomy 13, nonmosaicism (meiotic nondisjunction)','Y','0000-00-00 00:00:00'),(129885,10,'Q91.5 ','Trisomy 13, mosaicism (mitotic nondisjunction)','Y','0000-00-00 00:00:00'),(129882,10,'Q91.2 ','Trisomy 18, translocation','Y','0000-00-00 00:00:00'),(129883,10,'Q91.3 ','Trisomy 18, unspecified','Y','0000-00-00 00:00:00'),(129880,10,'Q91.0 ','Trisomy 18, nonmosaicism (meiotic nondisjunction)','Y','0000-00-00 00:00:00'),(129881,10,'Q91.1 ','Trisomy 18, mosaicism (mitotic nondisjunction)','Y','0000-00-00 00:00:00'),(129878,10,'Q90.2 ','Trisomy 21, translocation','Y','0000-00-00 00:00:00'),(129879,10,'Q90.9 ','Down syndrome, unspecified','Y','0000-00-00 00:00:00'),(129877,10,'Q90.1 ','Trisomy 21, mosaicism (mitotic nondisjunction)','Y','0000-00-00 00:00:00'),(129875,10,'Q89.9 ','Congenital malformation, unspecified','Y','0000-00-00 00:00:00'),(129876,10,'Q90.0 ','Trisomy 21, nonmosaicism (meiotic nondisjunction)','Y','0000-00-00 00:00:00'),(129874,10,'Q89.8 ','Other specified congenital malformations','Y','0000-00-00 00:00:00'),(129871,10,'Q89.3 ','Situs inversus','Y','0000-00-00 00:00:00'),(129872,10,'Q89.4 ','Conjoined twins','Y','0000-00-00 00:00:00'),(129873,10,'Q89.7 ','Multiple congenital malformations, not elsewhere classified','Y','0000-00-00 00:00:00'),(129870,10,'Q89.2 ','Congenital malformations of other endocrine glands','Y','0000-00-00 00:00:00'),(129868,10,'Q89.09 ','Congenital malformations of spleen','Y','0000-00-00 00:00:00'),(129869,10,'Q89.1 ','Congenital malformations of adrenal gland','Y','0000-00-00 00:00:00'),(129867,10,'Q89.01 ','Asplenia (congenital)','Y','0000-00-00 00:00:00'),(129864,10,'Q87.84 ','Laurence-Moon syndrome','Y','0000-00-00 00:00:00'),(129865,10,'Q87.85 ','MED13L syndrome','Y','0000-00-00 00:00:00'),(129866,10,'Q87.89 ','Other specified congenital malformation syndromes, not elsewhere classified','Y','0000-00-00 00:00:00'),(129863,10,'Q87.83 ','Bardet-Biedl syndrome','Y','0000-00-00 00:00:00'),(129861,10,'Q87.81 ','Alport syndrome','Y','0000-00-00 00:00:00'),(129862,10,'Q87.82 ','Arterial tortuosity syndrome','Y','0000-00-00 00:00:00'),(129860,10,'Q87.5 ','Other congenital malformation syndromes with other skeletal changes','Y','0000-00-00 00:00:00'),(129859,10,'Q87.43 ','Marfan syndrome with skeletal manifestation','Y','0000-00-00 00:00:00'),(129857,10,'Q87.418 ','Marfan syndrome with other cardiovascular manifestations','Y','0000-00-00 00:00:00'),(129858,10,'Q87.42 ','Marfan syndrome with ocular manifestations','Y','0000-00-00 00:00:00'),(129856,10,'Q87.410 ','Marfan syndrome with aortic dilation','Y','0000-00-00 00:00:00'),(129854,10,'Q87.3 ','Congenital malformation syndromes involving early overgrowth','Y','0000-00-00 00:00:00'),(129855,10,'Q87.40 ','Marfan syndrome, unspecified','Y','0000-00-00 00:00:00'),(129853,10,'Q87.2 ','Congenital malformation syndromes predominantly involving limbs','Y','0000-00-00 00:00:00'),(129851,10,'Q87.11 ','Prader-Willi syndrome','Y','0000-00-00 00:00:00'),(129852,10,'Q87.19 ','Other congenital malformation syndromes predominantly associated with short stature','Y','0000-00-00 00:00:00'),(129850,10,'Q87.0 ','Congenital malformation syndromes predominantly affecting facial appearance','Y','0000-00-00 00:00:00'),(129848,10,'Q86.2 ','Dysmorphism due to warfarin','Y','0000-00-00 00:00:00'),(129849,10,'Q86.8 ','Other congenital malformation syndromes due to known exogenous causes','Y','0000-00-00 00:00:00'),(129846,10,'Q86.0 ','Fetal alcohol syndrome (dysmorphic)','Y','0000-00-00 00:00:00'),(129847,10,'Q86.1 ','Fetal hydantoin syndrome','Y','0000-00-00 00:00:00'),(129844,10,'Q85.89 ','Other phakomatoses, not elsewhere classified','Y','0000-00-00 00:00:00'),(129845,10,'Q85.9 ','Phakomatosis, unspecified','Y','0000-00-00 00:00:00'),(129843,10,'Q85.83 ','Von Hippel-Lindau syndrome','Y','0000-00-00 00:00:00'),(129841,10,'Q85.81 ','PTEN hamartoma tumor syndrome','Y','0000-00-00 00:00:00'),(129842,10,'Q85.82 ','Other Cowden syndrome','Y','0000-00-00 00:00:00'),(129838,10,'Q85.03 ','Schwannomatosis','Y','0000-00-00 00:00:00'),(129839,10,'Q85.09 ','Other neurofibromatosis','Y','0000-00-00 00:00:00'),(129840,10,'Q85.1 ','Tuberous sclerosis','Y','0000-00-00 00:00:00'),(129837,10,'Q85.02 ','Neurofibromatosis, type 2','Y','0000-00-00 00:00:00'),(129835,10,'Q85.00 ','Neurofibromatosis, unspecified','Y','0000-00-00 00:00:00'),(129836,10,'Q85.01 ','Neurofibromatosis, type 1','Y','0000-00-00 00:00:00'),(129834,10,'Q84.9 ','Congenital malformation of integument, unspecified','Y','0000-00-00 00:00:00'),(129832,10,'Q84.6 ','Other congenital malformations of nails','Y','0000-00-00 00:00:00'),(129833,10,'Q84.8 ','Other specified congenital malformations of integument','Y','0000-00-00 00:00:00'),(129830,10,'Q84.4 ','Congenital leukonychia','Y','0000-00-00 00:00:00'),(129831,10,'Q84.5 ','Enlarged and hypertrophic nails','Y','0000-00-00 00:00:00'),(129828,10,'Q84.2 ','Other congenital malformations of hair','Y','0000-00-00 00:00:00'),(129829,10,'Q84.3 ','Anonychia','Y','0000-00-00 00:00:00'),(129826,10,'Q84.0 ','Congenital alopecia','Y','0000-00-00 00:00:00'),(129827,10,'Q84.1 ','Congenital morphological disturbances of hair, not elsewhere classified','Y','0000-00-00 00:00:00'),(129824,10,'Q83.8 ','Other congenital malformations of breast','Y','0000-00-00 00:00:00'),(129825,10,'Q83.9 ','Congenital malformation of breast, unspecified','Y','0000-00-00 00:00:00'),(129821,10,'Q83.1 ','Accessory breast','Y','0000-00-00 00:00:00'),(129822,10,'Q83.2 ','Absent nipple','Y','0000-00-00 00:00:00'),(129823,10,'Q83.3 ','Accessory nipple','Y','0000-00-00 00:00:00'),(129819,10,'Q82.9 ','Congenital malformation of skin, unspecified','Y','0000-00-00 00:00:00'),(129820,10,'Q83.0 ','Congenital absence of breast with absent nipple','Y','0000-00-00 00:00:00'),(129817,10,'Q82.6 ','Congenital sacral dimple','Y','0000-00-00 00:00:00'),(129818,10,'Q82.8 ','Other specified congenital malformations of skin','Y','0000-00-00 00:00:00'),(129815,10,'Q82.4 ','Ectodermal dysplasia (anhidrotic)','Y','0000-00-00 00:00:00'),(129816,10,'Q82.5 ','Congenital non-neoplastic nevus','Y','0000-00-00 00:00:00'),(129813,10,'Q82.2 ','Congenital cutaneous mastocytosis','Y','0000-00-00 00:00:00'),(129814,10,'Q82.3 ','Incontinentia pigmenti','Y','0000-00-00 00:00:00'),(129811,10,'Q82.0 ','Hereditary lymphedema','Y','0000-00-00 00:00:00'),(129812,10,'Q82.1 ','Xeroderma pigmentosum','Y','0000-00-00 00:00:00'),(129809,10,'Q81.8 ','Other epidermolysis bullosa','Y','0000-00-00 00:00:00'),(129810,10,'Q81.9 ','Epidermolysis bullosa, unspecified','Y','0000-00-00 00:00:00'),(129807,10,'Q81.1 ','Epidermolysis bullosa letalis','Y','0000-00-00 00:00:00'),(129808,10,'Q81.2 ','Epidermolysis bullosa dystrophica','Y','0000-00-00 00:00:00'),(129806,10,'Q81.0 ','Epidermolysis bullosa simplex','Y','0000-00-00 00:00:00'),(129804,10,'Q80.8 ','Other congenital ichthyosis','Y','0000-00-00 00:00:00'),(129805,10,'Q80.9 ','Congenital ichthyosis, unspecified','Y','0000-00-00 00:00:00'),(129802,10,'Q80.3 ','Congenital bullous ichthyosiform erythroderma','Y','0000-00-00 00:00:00'),(129803,10,'Q80.4 ','Harlequin fetus','Y','0000-00-00 00:00:00'),(129800,10,'Q80.1 ','X-linked ichthyosis','Y','0000-00-00 00:00:00'),(129801,10,'Q80.2 ','Lamellar ichthyosis','Y','0000-00-00 00:00:00'),(129798,10,'Q79.9 ','Congenital malformation of musculoskeletal system, unspecified','Y','0000-00-00 00:00:00'),(129799,10,'Q80.0 ','Ichthyosis vulgaris','Y','0000-00-00 00:00:00'),(129796,10,'Q79.69 ','Other Ehlers-Danlos syndromes','Y','0000-00-00 00:00:00'),(129797,10,'Q79.8 ','Other congenital malformations of musculoskeletal system','Y','0000-00-00 00:00:00'),(129794,10,'Q79.62 ','Hypermobile Ehlers-Danlos syndrome','Y','0000-00-00 00:00:00'),(129795,10,'Q79.63 ','Vascular Ehlers-Danlos syndrome','Y','0000-00-00 00:00:00'),(129793,10,'Q79.61 ','Classical Ehlers-Danlos syndrome','Y','0000-00-00 00:00:00'),(129791,10,'Q79.59 ','Other congenital malformations of abdominal wall','Y','0000-00-00 00:00:00'),(129792,10,'Q79.60 ','Ehlers-Danlos syndrome, unspecified','Y','0000-00-00 00:00:00'),(129788,10,'Q79.3 ','Gastroschisis','Y','0000-00-00 00:00:00'),(129789,10,'Q79.4 ','Prune belly syndrome','Y','0000-00-00 00:00:00'),(129790,10,'Q79.51 ','Congenital hernia of bladder','Y','0000-00-00 00:00:00'),(129786,10,'Q79.1 ','Other congenital malformations of diaphragm','Y','0000-00-00 00:00:00'),(129787,10,'Q79.2 ','Exomphalos','Y','0000-00-00 00:00:00'),(129784,10,'Q78.9 ','Osteochondrodysplasia, unspecified','Y','0000-00-00 00:00:00'),(129785,10,'Q79.0 ','Congenital diaphragmatic hernia','Y','0000-00-00 00:00:00'),(129782,10,'Q78.6 ','Multiple congenital exostoses','Y','0000-00-00 00:00:00'),(129783,10,'Q78.8 ','Other specified osteochondrodysplasias','Y','0000-00-00 00:00:00'),(129780,10,'Q78.4 ','Enchondromatosis','Y','0000-00-00 00:00:00'),(129781,10,'Q78.5 ','Metaphyseal dysplasia','Y','0000-00-00 00:00:00'),(129778,10,'Q78.2 ','Osteopetrosis','Y','0000-00-00 00:00:00'),(129779,10,'Q78.3 ','Progressive diaphyseal dysplasia','Y','0000-00-00 00:00:00'),(129776,10,'Q78.0 ','Osteogenesis imperfecta','Y','0000-00-00 00:00:00'),(129777,10,'Q78.1 ','Polyostotic fibrous dysplasia','Y','0000-00-00 00:00:00'),(129775,10,'Q77.9 ','Osteochondrodysplasia with defects of growth of tubular bones and spine, unspecified','Y','0000-00-00 00:00:00'),(129773,10,'Q77.7 ','Spondyloepiphyseal dysplasia','Y','0000-00-00 00:00:00'),(129774,10,'Q77.8 ','Other osteochondrodysplasia with defects of growth of tubular bones and spine','Y','0000-00-00 00:00:00'),(129771,10,'Q77.5 ','Diastrophic dysplasia','Y','0000-00-00 00:00:00'),(129772,10,'Q77.6 ','Chondroectodermal dysplasia','Y','0000-00-00 00:00:00'),(129769,10,'Q77.3 ','Chondrodysplasia punctata','Y','0000-00-00 00:00:00'),(129770,10,'Q77.4 ','Achondroplasia','Y','0000-00-00 00:00:00'),(129767,10,'Q77.1 ','Thanatophoric short stature','Y','0000-00-00 00:00:00'),(129768,10,'Q77.2 ','Short rib syndrome','Y','0000-00-00 00:00:00'),(129765,10,'Q76.9 ','Congenital malformation of bony thorax, unspecified','Y','0000-00-00 00:00:00'),(129766,10,'Q77.0 ','Achondrogenesis','Y','0000-00-00 00:00:00'),(129763,10,'Q76.7 ','Congenital malformation of sternum','Y','0000-00-00 00:00:00'),(129764,10,'Q76.8 ','Other congenital malformations of bony thorax','Y','0000-00-00 00:00:00'),(129761,10,'Q76.5 ','Cervical rib','Y','0000-00-00 00:00:00'),(129762,10,'Q76.6 ','Other congenital malformations of ribs','Y','0000-00-00 00:00:00'),(129760,10,'Q76.49 ','Other congenital malformations of spine, not associated with scoliosis','Y','0000-00-00 00:00:00'),(129758,10,'Q76.428 ','Congenital lordosis, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(129759,10,'Q76.429 ','Congenital lordosis, unspecified region','Y','0000-00-00 00:00:00'),(129756,10,'Q76.426 ','Congenital lordosis, lumbar region','Y','0000-00-00 00:00:00'),(129757,10,'Q76.427 ','Congenital lordosis, lumbosacral region','Y','0000-00-00 00:00:00'),(129754,10,'Q76.419 ','Congenital kyphosis, unspecified region','Y','0000-00-00 00:00:00'),(129755,10,'Q76.425 ','Congenital lordosis, thoracolumbar region','Y','0000-00-00 00:00:00'),(129753,10,'Q76.415 ','Congenital kyphosis, thoracolumbar region','Y','0000-00-00 00:00:00'),(129751,10,'Q76.413 ','Congenital kyphosis, cervicothoracic region','Y','0000-00-00 00:00:00'),(129752,10,'Q76.414 ','Congenital kyphosis, thoracic region','Y','0000-00-00 00:00:00'),(129749,10,'Q76.411 ','Congenital kyphosis, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(129750,10,'Q76.412 ','Congenital kyphosis, cervical region','Y','0000-00-00 00:00:00'),(129748,10,'Q76.3 ','Congenital scoliosis due to congenital bony malformation','Y','0000-00-00 00:00:00'),(129746,10,'Q76.1 ','Klippel-Feil syndrome','Y','0000-00-00 00:00:00'),(129747,10,'Q76.2 ','Congenital spondylolisthesis','Y','0000-00-00 00:00:00'),(129745,10,'Q76.0 ','Spina bifida occulta','Y','0000-00-00 00:00:00'),(129743,10,'Q75.8 ','Other specified congenital malformations of skull and face bones','Y','0000-00-00 00:00:00'),(129744,10,'Q75.9 ','Congenital malformation of skull and face bones, unspecified','Y','0000-00-00 00:00:00'),(129741,10,'Q75.4 ','Mandibulofacial dysostosis','Y','0000-00-00 00:00:00'),(129742,10,'Q75.5 ','Oculomandibular dysostosis','Y','0000-00-00 00:00:00'),(129739,10,'Q75.2 ','Hypertelorism','Y','0000-00-00 00:00:00'),(129740,10,'Q75.3 ','Macrocephaly','Y','0000-00-00 00:00:00'),(129737,10,'Q75.08 ','Other single-suture craniosynostosis','Y','0000-00-00 00:00:00'),(129738,10,'Q75.1 ','Craniofacial dysostosis','Y','0000-00-00 00:00:00'),(129734,10,'Q75.051 ','Cloverleaf skull','Y','0000-00-00 00:00:00'),(129735,10,'Q75.052 ','Pansynostosis','Y','0000-00-00 00:00:00'),(129736,10,'Q75.058 ','Other multi-suture craniosynostosis','Y','0000-00-00 00:00:00'),(129732,10,'Q75.042 ','Lambdoid craniosynostosis, bilateral','Y','0000-00-00 00:00:00'),(129733,10,'Q75.049 ','Lambdoid craniosynostosis, unspecified','Y','0000-00-00 00:00:00'),(129730,10,'Q75.03 ','Metopic craniosynostosis','Y','0000-00-00 00:00:00'),(129731,10,'Q75.041 ','Lambdoid craniosynostosis, unilateral','Y','0000-00-00 00:00:00'),(129728,10,'Q75.022 ','Coronal craniosynostosis bilateral','Y','0000-00-00 00:00:00'),(129729,10,'Q75.029 ','Coronal craniosynostosis unspecified','Y','0000-00-00 00:00:00'),(129726,10,'Q75.01 ','Sagittal craniosynostosis','Y','0000-00-00 00:00:00'),(129727,10,'Q75.021 ','Coronal craniosynostosis unilateral','Y','0000-00-00 00:00:00'),(129724,10,'Q75.002 ','Craniosynostosis unspecified, bilateral','Y','0000-00-00 00:00:00'),(129725,10,'Q75.009 ','Craniosynostosis unspecified','Y','0000-00-00 00:00:00'),(129723,10,'Q75.001 ','Craniosynostosis unspecified, unilateral','Y','0000-00-00 00:00:00'),(129721,10,'Q74.8 ','Other specified congenital malformations of limb(s)','Y','0000-00-00 00:00:00'),(129722,10,'Q74.9 ','Unspecified congenital malformation of limb(s)','Y','0000-00-00 00:00:00'),(129719,10,'Q74.2 ','Other congenital malformations of lower limb(s), including pelvic girdle','Y','0000-00-00 00:00:00'),(129720,10,'Q74.3 ','Arthrogryposis multiplex congenita','Y','0000-00-00 00:00:00'),(129718,10,'Q74.1 ','Congenital malformation of knee','Y','0000-00-00 00:00:00'),(129717,10,'Q74.0 ','Other congenital malformations of upper limb(s), including shoulder girdle','Y','0000-00-00 00:00:00'),(129716,10,'Q73.8 ','Other reduction defects of unspecified limb(s)','Y','0000-00-00 00:00:00'),(129714,10,'Q73.0 ','Congenital absence of unspecified limb(s)','Y','0000-00-00 00:00:00'),(129715,10,'Q73.1 ','Phocomelia, unspecified limb(s)','Y','0000-00-00 00:00:00'),(129713,10,'Q72.93 ','Unspecified reduction defect of lower limb, bilateral','Y','0000-00-00 00:00:00'),(129711,10,'Q72.91 ','Unspecified reduction defect of right lower limb','Y','0000-00-00 00:00:00'),(129712,10,'Q72.92 ','Unspecified reduction defect of left lower limb','Y','0000-00-00 00:00:00'),(129710,10,'Q72.90 ','Unspecified reduction defect of unspecified lower limb','Y','0000-00-00 00:00:00'),(129709,10,'Q72.899 ','Other reduction defects of unspecified lower limb','Y','0000-00-00 00:00:00'),(129707,10,'Q72.892 ','Other reduction defects of left lower limb','Y','0000-00-00 00:00:00'),(129708,10,'Q72.893 ','Other reduction defects of lower limb, bilateral','Y','0000-00-00 00:00:00'),(129705,10,'Q72.819 ','Congenital shortening of unspecified lower limb','Y','0000-00-00 00:00:00'),(129706,10,'Q72.891 ','Other reduction defects of right lower limb','Y','0000-00-00 00:00:00'),(129704,10,'Q72.813 ','Congenital shortening of lower limb, bilateral','Y','0000-00-00 00:00:00'),(129702,10,'Q72.811 ','Congenital shortening of right lower limb','Y','0000-00-00 00:00:00'),(129703,10,'Q72.812 ','Congenital shortening of left lower limb','Y','0000-00-00 00:00:00'),(129700,10,'Q72.72 ','Split foot, left lower limb','Y','0000-00-00 00:00:00'),(129701,10,'Q72.73 ','Split foot, bilateral','Y','0000-00-00 00:00:00'),(129698,10,'Q72.70 ','Split foot, unspecified lower limb','Y','0000-00-00 00:00:00'),(129699,10,'Q72.71 ','Split foot, right lower limb','Y','0000-00-00 00:00:00'),(129697,10,'Q72.63 ','Longitudinal reduction defect of fibula, bilateral','Y','0000-00-00 00:00:00'),(129695,10,'Q72.61 ','Longitudinal reduction defect of right fibula','Y','0000-00-00 00:00:00'),(129696,10,'Q72.62 ','Longitudinal reduction defect of left fibula','Y','0000-00-00 00:00:00'),(129694,10,'Q72.60 ','Longitudinal reduction defect of unspecified fibula','Y','0000-00-00 00:00:00'),(129692,10,'Q72.52 ','Longitudinal reduction defect of left tibia','Y','0000-00-00 00:00:00'),(129693,10,'Q72.53 ','Longitudinal reduction defect of tibia, bilateral','Y','0000-00-00 00:00:00'),(129691,10,'Q72.51 ','Longitudinal reduction defect of right tibia','Y','0000-00-00 00:00:00'),(129690,10,'Q72.50 ','Longitudinal reduction defect of unspecified tibia','Y','0000-00-00 00:00:00'),(129688,10,'Q72.42 ','Longitudinal reduction defect of left femur','Y','0000-00-00 00:00:00'),(129689,10,'Q72.43 ','Longitudinal reduction defect of femur, bilateral','Y','0000-00-00 00:00:00'),(129686,10,'Q72.40 ','Longitudinal reduction defect of unspecified femur','Y','0000-00-00 00:00:00'),(129687,10,'Q72.41 ','Longitudinal reduction defect of right femur','Y','0000-00-00 00:00:00'),(129685,10,'Q72.33 ','Congenital absence of foot and toe(s), bilateral','Y','0000-00-00 00:00:00'),(129683,10,'Q72.31 ','Congenital absence of right foot and toe(s)','Y','0000-00-00 00:00:00'),(129684,10,'Q72.32 ','Congenital absence of left foot and toe(s)','Y','0000-00-00 00:00:00'),(129682,10,'Q72.30 ','Congenital absence of unspecified foot and toe(s)','Y','0000-00-00 00:00:00'),(129681,10,'Q72.23 ','Congenital absence of both lower leg and foot, bilateral','Y','0000-00-00 00:00:00'),(129679,10,'Q72.21 ','Congenital absence of both lower leg and foot, right lower limb','Y','0000-00-00 00:00:00'),(129680,10,'Q72.22 ','Congenital absence of both lower leg and foot, left lower limb','Y','0000-00-00 00:00:00'),(129678,10,'Q72.20 ','Congenital absence of both lower leg and foot, unspecified lower limb','Y','0000-00-00 00:00:00'),(129677,10,'Q72.13 ','Congenital absence of thigh and lower leg with foot present, bilateral','Y','0000-00-00 00:00:00'),(129676,10,'Q72.12 ','Congenital absence of left thigh and lower leg with foot present','Y','0000-00-00 00:00:00'),(129674,10,'Q72.10 ','Congenital absence of unspecified thigh and lower leg with foot present','Y','0000-00-00 00:00:00'),(129675,10,'Q72.11 ','Congenital absence of right thigh and lower leg with foot present','Y','0000-00-00 00:00:00'),(129673,10,'Q72.03 ','Congenital complete absence of lower limb, bilateral','Y','0000-00-00 00:00:00'),(129672,10,'Q72.02 ','Congenital complete absence of left lower limb','Y','0000-00-00 00:00:00'),(129671,10,'Q72.01 ','Congenital complete absence of right lower limb','Y','0000-00-00 00:00:00'),(129669,10,'Q71.93 ','Unspecified reduction defect of upper limb, bilateral','Y','0000-00-00 00:00:00'),(129670,10,'Q72.00 ','Congenital complete absence of unspecified lower limb','Y','0000-00-00 00:00:00'),(129668,10,'Q71.92 ','Unspecified reduction defect of left upper limb','Y','0000-00-00 00:00:00'),(129666,10,'Q71.90 ','Unspecified reduction defect of unspecified upper limb','Y','0000-00-00 00:00:00'),(129667,10,'Q71.91 ','Unspecified reduction defect of right upper limb','Y','0000-00-00 00:00:00'),(129665,10,'Q71.899 ','Other reduction defects of unspecified upper limb','Y','0000-00-00 00:00:00'),(129663,10,'Q71.892 ','Other reduction defects of left upper limb','Y','0000-00-00 00:00:00'),(129664,10,'Q71.893 ','Other reduction defects of upper limb, bilateral','Y','0000-00-00 00:00:00'),(129662,10,'Q71.891 ','Other reduction defects of right upper limb','Y','0000-00-00 00:00:00'),(129660,10,'Q71.813 ','Congenital shortening of upper limb, bilateral','Y','0000-00-00 00:00:00'),(129661,10,'Q71.819 ','Congenital shortening of unspecified upper limb','Y','0000-00-00 00:00:00'),(129658,10,'Q71.811 ','Congenital shortening of right upper limb','Y','0000-00-00 00:00:00'),(129659,10,'Q71.812 ','Congenital shortening of left upper limb','Y','0000-00-00 00:00:00'),(129656,10,'Q71.62 ','Lobster-claw left hand','Y','0000-00-00 00:00:00'),(129657,10,'Q71.63 ','Lobster-claw hand, bilateral','Y','0000-00-00 00:00:00'),(129654,10,'Q71.60 ','Lobster-claw hand, unspecified hand','Y','0000-00-00 00:00:00'),(129655,10,'Q71.61 ','Lobster-claw right hand','Y','0000-00-00 00:00:00'),(129653,10,'Q71.53 ','Longitudinal reduction defect of ulna, bilateral','Y','0000-00-00 00:00:00'),(129651,10,'Q71.51 ','Longitudinal reduction defect of right ulna','Y','0000-00-00 00:00:00'),(129652,10,'Q71.52 ','Longitudinal reduction defect of left ulna','Y','0000-00-00 00:00:00'),(129650,10,'Q71.50 ','Longitudinal reduction defect of unspecified ulna','Y','0000-00-00 00:00:00'),(129649,10,'Q71.43 ','Longitudinal reduction defect of radius, bilateral','Y','0000-00-00 00:00:00'),(129648,10,'Q71.42 ','Longitudinal reduction defect of left radius','Y','0000-00-00 00:00:00'),(129646,10,'Q71.40 ','Longitudinal reduction defect of unspecified radius','Y','0000-00-00 00:00:00'),(129647,10,'Q71.41 ','Longitudinal reduction defect of right radius','Y','0000-00-00 00:00:00'),(129645,10,'Q71.33 ','Congenital absence of hand and finger, bilateral','Y','0000-00-00 00:00:00'),(129643,10,'Q71.31 ','Congenital absence of right hand and finger','Y','0000-00-00 00:00:00'),(129644,10,'Q71.32 ','Congenital absence of left hand and finger','Y','0000-00-00 00:00:00'),(129642,10,'Q71.30 ','Congenital absence of unspecified hand and finger','Y','0000-00-00 00:00:00'),(129640,10,'Q71.22 ','Congenital absence of both forearm and hand, left upper limb','Y','0000-00-00 00:00:00'),(129641,10,'Q71.23 ','Congenital absence of both forearm and hand, bilateral','Y','0000-00-00 00:00:00'),(129639,10,'Q71.21 ','Congenital absence of both forearm and hand, right upper limb','Y','0000-00-00 00:00:00'),(129638,10,'Q71.20 ','Congenital absence of both forearm and hand, unspecified upper limb','Y','0000-00-00 00:00:00'),(129636,10,'Q71.12 ','Congenital absence of left upper arm and forearm with hand present','Y','0000-00-00 00:00:00'),(129637,10,'Q71.13 ','Congenital absence of upper arm and forearm with hand present, bilateral','Y','0000-00-00 00:00:00'),(129635,10,'Q71.11 ','Congenital absence of right upper arm and forearm with hand present','Y','0000-00-00 00:00:00'),(129634,10,'Q71.10 ','Congenital absence of unspecified upper arm and forearm with hand present','Y','0000-00-00 00:00:00'),(129633,10,'Q71.03 ','Congenital complete absence of upper limb, bilateral','Y','0000-00-00 00:00:00'),(129631,10,'Q71.01 ','Congenital complete absence of right upper limb','Y','0000-00-00 00:00:00'),(129632,10,'Q71.02 ','Congenital complete absence of left upper limb','Y','0000-00-00 00:00:00'),(129629,10,'Q70.9 ','Syndactyly, unspecified','Y','0000-00-00 00:00:00'),(129630,10,'Q71.00 ','Congenital complete absence of unspecified upper limb','Y','0000-00-00 00:00:00'),(129627,10,'Q70.33 ','Webbed toes, bilateral','Y','0000-00-00 00:00:00'),(129628,10,'Q70.4 ','Polysyndactyly, unspecified','Y','0000-00-00 00:00:00'),(129626,10,'Q70.32 ','Webbed toes, left foot','Y','0000-00-00 00:00:00'),(129624,10,'Q70.30 ','Webbed toes, unspecified foot','Y','0000-00-00 00:00:00'),(129625,10,'Q70.31 ','Webbed toes, right foot','Y','0000-00-00 00:00:00'),(129622,10,'Q70.22 ','Fused toes, left foot','Y','0000-00-00 00:00:00'),(129623,10,'Q70.23 ','Fused toes, bilateral','Y','0000-00-00 00:00:00'),(129620,10,'Q70.20 ','Fused toes, unspecified foot','Y','0000-00-00 00:00:00'),(129621,10,'Q70.21 ','Fused toes, right foot','Y','0000-00-00 00:00:00'),(129618,10,'Q70.12 ','Webbed fingers, left hand','Y','0000-00-00 00:00:00'),(129619,10,'Q70.13 ','Webbed fingers, bilateral','Y','0000-00-00 00:00:00'),(129616,10,'Q70.10 ','Webbed fingers, unspecified hand','Y','0000-00-00 00:00:00'),(129617,10,'Q70.11 ','Webbed fingers, right hand','Y','0000-00-00 00:00:00'),(129614,10,'Q70.02 ','Fused fingers, left hand','Y','0000-00-00 00:00:00'),(129615,10,'Q70.03 ','Fused fingers, bilateral','Y','0000-00-00 00:00:00'),(129612,10,'Q70.00 ','Fused fingers, unspecified hand','Y','0000-00-00 00:00:00'),(129613,10,'Q70.01 ','Fused fingers, right hand','Y','0000-00-00 00:00:00'),(129610,10,'Q69.2 ','Accessory toe(s)','Y','0000-00-00 00:00:00'),(129611,10,'Q69.9 ','Polydactyly, unspecified','Y','0000-00-00 00:00:00'),(129608,10,'Q69.0 ','Accessory finger(s)','Y','0000-00-00 00:00:00'),(129609,10,'Q69.1 ','Accessory thumb(s)','Y','0000-00-00 00:00:00'),(129606,10,'Q68.6 ','Discoid meniscus','Y','0000-00-00 00:00:00'),(129607,10,'Q68.8 ','Other specified congenital musculoskeletal deformities','Y','0000-00-00 00:00:00'),(129605,10,'Q68.5 ','Congenital bowing of long bones of leg, unspecified','Y','0000-00-00 00:00:00'),(129603,10,'Q68.3 ','Congenital bowing of femur','Y','0000-00-00 00:00:00'),(129604,10,'Q68.4 ','Congenital bowing of tibia and fibula','Y','0000-00-00 00:00:00'),(129601,10,'Q68.1 ','Congenital deformity of finger(s) and hand','Y','0000-00-00 00:00:00'),(129602,10,'Q68.2 ','Congenital deformity of knee','Y','0000-00-00 00:00:00'),(129600,10,'Q68.0 ','Congenital deformity of sternocleidomastoid muscle','Y','0000-00-00 00:00:00'),(129597,10,'Q67.6 ','Pectus excavatum','Y','0000-00-00 00:00:00'),(129598,10,'Q67.7 ','Pectus carinatum','Y','0000-00-00 00:00:00'),(129599,10,'Q67.8 ','Other congenital deformities of chest','Y','0000-00-00 00:00:00'),(129596,10,'Q67.5 ','Congenital deformity of spine','Y','0000-00-00 00:00:00'),(129595,10,'Q67.4 ','Other congenital deformities of skull, face and jaw','Y','0000-00-00 00:00:00'),(129593,10,'Q67.2 ','Dolichocephaly','Y','0000-00-00 00:00:00'),(129594,10,'Q67.3 ','Plagiocephaly','Y','0000-00-00 00:00:00'),(129591,10,'Q67.0 ','Congenital facial asymmetry','Y','0000-00-00 00:00:00'),(129592,10,'Q67.1 ','Congenital compression facies','Y','0000-00-00 00:00:00'),(129590,10,'Q66.92 ','Congenital deformity of feet, unspecified, left foot','Y','0000-00-00 00:00:00'),(129588,10,'Q66.90 ','Congenital deformity of feet, unspecified, unspecified foot','Y','0000-00-00 00:00:00'),(129589,10,'Q66.91 ','Congenital deformity of feet, unspecified, right foot','Y','0000-00-00 00:00:00'),(129586,10,'Q66.82 ','Congenital vertical talus deformity, left foot','Y','0000-00-00 00:00:00'),(129587,10,'Q66.89 ','Other specified congenital deformities of feet','Y','0000-00-00 00:00:00'),(129585,10,'Q66.81 ','Congenital vertical talus deformity, right foot','Y','0000-00-00 00:00:00'),(129583,10,'Q66.72 ','Congenital pes cavus, left foot','Y','0000-00-00 00:00:00'),(129584,10,'Q66.80 ','Congenital vertical talus deformity, unspecified foot','Y','0000-00-00 00:00:00'),(129581,10,'Q66.70 ','Congenital pes cavus, unspecified foot','Y','0000-00-00 00:00:00'),(129582,10,'Q66.71 ','Congenital pes cavus, right foot','Y','0000-00-00 00:00:00'),(129579,10,'Q66.52 ','Congenital pes planus, left foot','Y','0000-00-00 00:00:00'),(129580,10,'Q66.6 ','Other congenital valgus deformities of feet','Y','0000-00-00 00:00:00'),(129577,10,'Q66.50 ','Congenital pes planus, unspecified foot','Y','0000-00-00 00:00:00'),(129578,10,'Q66.51 ','Congenital pes planus, right foot','Y','0000-00-00 00:00:00'),(129575,10,'Q66.41 ','Congenital talipes calcaneovalgus, right foot','Y','0000-00-00 00:00:00'),(129576,10,'Q66.42 ','Congenital talipes calcaneovalgus, left foot','Y','0000-00-00 00:00:00'),(129574,10,'Q66.40 ','Congenital talipes calcaneovalgus, unspecified foot','Y','0000-00-00 00:00:00'),(129572,10,'Q66.31 ','Other congenital varus deformities of feet, right foot','Y','0000-00-00 00:00:00'),(129573,10,'Q66.32 ','Other congenital varus deformities of feet, left foot','Y','0000-00-00 00:00:00'),(129571,10,'Q66.30 ','Other congenital varus deformities of feet, unspecified foot','Y','0000-00-00 00:00:00'),(129570,10,'Q66.229 ','Congenital metatarsus adductus, unspecified foot','Y','0000-00-00 00:00:00'),(129569,10,'Q66.222 ','Congenital metatarsus adductus, left foot','Y','0000-00-00 00:00:00'),(129568,10,'Q66.221 ','Congenital metatarsus adductus, right foot','Y','0000-00-00 00:00:00'),(129566,10,'Q66.212 ','Congenital metatarsus primus varus, left foot','Y','0000-00-00 00:00:00'),(129567,10,'Q66.219 ','Congenital metatarsus primus varus, unspecified foot','Y','0000-00-00 00:00:00'),(129565,10,'Q66.211 ','Congenital metatarsus primus varus, right foot','Y','0000-00-00 00:00:00'),(129563,10,'Q66.11 ','Congenital talipes calcaneovarus, right foot','Y','0000-00-00 00:00:00'),(129564,10,'Q66.12 ','Congenital talipes calcaneovarus, left foot','Y','0000-00-00 00:00:00'),(129562,10,'Q66.10 ','Congenital talipes calcaneovarus, unspecified foot','Y','0000-00-00 00:00:00'),(129560,10,'Q66.01 ','Congenital talipes equinovarus, right foot','Y','0000-00-00 00:00:00'),(129561,10,'Q66.02 ','Congenital talipes equinovarus, left foot','Y','0000-00-00 00:00:00'),(129559,10,'Q66.00 ','Congenital talipes equinovarus, unspecified foot','Y','0000-00-00 00:00:00'),(129557,10,'Q65.89 ','Other specified congenital deformities of hip','Y','0000-00-00 00:00:00'),(129558,10,'Q65.9 ','Congenital deformity of hip, unspecified','Y','0000-00-00 00:00:00'),(129555,10,'Q65.81 ','Congenital coxa valga','Y','0000-00-00 00:00:00'),(129556,10,'Q65.82 ','Congenital coxa vara','Y','0000-00-00 00:00:00'),(129554,10,'Q65.6 ','Congenital unstable hip','Y','0000-00-00 00:00:00'),(129552,10,'Q65.4 ','Congenital partial dislocation of hip, bilateral','Y','0000-00-00 00:00:00'),(129553,10,'Q65.5 ','Congenital partial dislocation of hip, unspecified','Y','0000-00-00 00:00:00'),(129551,10,'Q65.32 ','Congenital partial dislocation of left hip, unilateral','Y','0000-00-00 00:00:00'),(129550,10,'Q65.31 ','Congenital partial dislocation of right hip, unilateral','Y','0000-00-00 00:00:00'),(129548,10,'Q65.2 ','Congenital dislocation of hip, unspecified','Y','0000-00-00 00:00:00'),(129549,10,'Q65.30 ','Congenital partial dislocation of unspecified hip, unilateral','Y','0000-00-00 00:00:00'),(129547,10,'Q65.1 ','Congenital dislocation of hip, bilateral','Y','0000-00-00 00:00:00'),(129546,10,'Q65.02 ','Congenital dislocation of left hip, unilateral','Y','0000-00-00 00:00:00'),(129544,10,'Q65.00 ','Congenital dislocation of unspecified hip, unilateral','Y','0000-00-00 00:00:00'),(129545,10,'Q65.01 ','Congenital dislocation of right hip, unilateral','Y','0000-00-00 00:00:00'),(129543,10,'Q64.9 ','Congenital malformation of urinary system, unspecified','Y','0000-00-00 00:00:00'),(129542,10,'Q64.8 ','Other specified congenital malformations of urinary system','Y','0000-00-00 00:00:00'),(129539,10,'Q64.74 ','Double urethra','Y','0000-00-00 00:00:00'),(129540,10,'Q64.75 ','Double urinary meatus','Y','0000-00-00 00:00:00'),(129541,10,'Q64.79 ','Other congenital malformations of bladder and urethra','Y','0000-00-00 00:00:00'),(129538,10,'Q64.73 ','Congenital urethrorectal fistula','Y','0000-00-00 00:00:00'),(129536,10,'Q64.71 ','Congenital prolapse of urethra','Y','0000-00-00 00:00:00'),(129537,10,'Q64.72 ','Congenital prolapse of urinary meatus','Y','0000-00-00 00:00:00'),(129534,10,'Q64.6 ','Congenital diverticulum of bladder','Y','0000-00-00 00:00:00'),(129535,10,'Q64.70 ','Unspecified congenital malformation of bladder and urethra','Y','0000-00-00 00:00:00'),(129533,10,'Q64.5 ','Congenital absence of bladder and urethra','Y','0000-00-00 00:00:00'),(129531,10,'Q64.39 ','Other atresia and stenosis of urethra and bladder neck','Y','0000-00-00 00:00:00'),(129532,10,'Q64.4 ','Malformation of urachus','Y','0000-00-00 00:00:00'),(129529,10,'Q64.32 ','Congenital stricture of urethra','Y','0000-00-00 00:00:00'),(129530,10,'Q64.33 ','Congenital stricture of urinary meatus','Y','0000-00-00 00:00:00'),(129528,10,'Q64.31 ','Congenital bladder neck obstruction','Y','0000-00-00 00:00:00'),(129526,10,'Q64.19 ','Other exstrophy of urinary bladder','Y','0000-00-00 00:00:00'),(129527,10,'Q64.2 ','Congenital posterior urethral valves','Y','0000-00-00 00:00:00'),(129525,10,'Q64.12 ','Cloacal exstrophy of urinary bladder','Y','0000-00-00 00:00:00'),(129524,10,'Q64.11 ','Supravesical fissure of urinary bladder','Y','0000-00-00 00:00:00'),(129522,10,'Q64.0 ','Epispadias','Y','0000-00-00 00:00:00'),(129523,10,'Q64.10 ','Exstrophy of urinary bladder, unspecified','Y','0000-00-00 00:00:00'),(129521,10,'Q63.9 ','Congenital malformation of kidney, unspecified','Y','0000-00-00 00:00:00'),(129519,10,'Q63.3 ','Hyperplastic and giant kidney','Y','0000-00-00 00:00:00'),(129520,10,'Q63.8 ','Other specified congenital malformations of kidney','Y','0000-00-00 00:00:00'),(129517,10,'Q63.1 ','Lobulated, fused and horseshoe kidney','Y','0000-00-00 00:00:00'),(129518,10,'Q63.2 ','Ectopic kidney','Y','0000-00-00 00:00:00'),(129515,10,'Q62.8 ','Other congenital malformations of ureter','Y','0000-00-00 00:00:00'),(129516,10,'Q63.0 ','Accessory kidney','Y','0000-00-00 00:00:00'),(129513,10,'Q62.69 ','Other malposition of ureter','Y','0000-00-00 00:00:00'),(129514,10,'Q62.7 ','Congenital vesico-uretero-renal reflux','Y','0000-00-00 00:00:00'),(129511,10,'Q62.62 ','Displacement of ureter','Y','0000-00-00 00:00:00'),(129512,10,'Q62.63 ','Anomalous implantation of ureter','Y','0000-00-00 00:00:00'),(129509,10,'Q62.60 ','Malposition of ureter, unspecified','Y','0000-00-00 00:00:00'),(129510,10,'Q62.61 ','Deviation of ureter','Y','0000-00-00 00:00:00'),(129507,10,'Q62.4 ','Agenesis of ureter','Y','0000-00-00 00:00:00'),(129508,10,'Q62.5 ','Duplication of ureter','Y','0000-00-00 00:00:00'),(129505,10,'Q62.32 ','Cecoureterocele','Y','0000-00-00 00:00:00'),(129506,10,'Q62.39 ','Other obstructive defects of renal pelvis and ureter','Y','0000-00-00 00:00:00'),(129503,10,'Q62.2 ','Congenital megaureter','Y','0000-00-00 00:00:00'),(129504,10,'Q62.31 ','Congenital ureterocele, orthotopic','Y','0000-00-00 00:00:00'),(129502,10,'Q62.12 ','Congenital occlusion of ureterovesical orifice','Y','0000-00-00 00:00:00'),(129500,10,'Q62.10 ','Congenital occlusion of ureter, unspecified','Y','0000-00-00 00:00:00'),(129501,10,'Q62.11 ','Congenital occlusion of ureteropelvic junction','Y','0000-00-00 00:00:00'),(129498,10,'Q61.9 ','Cystic kidney disease, unspecified','Y','0000-00-00 00:00:00'),(129499,10,'Q62.0 ','Congenital hydronephrosis','Y','0000-00-00 00:00:00'),(129496,10,'Q61.5 ','Medullary cystic kidney','Y','0000-00-00 00:00:00'),(129497,10,'Q61.8 ','Other cystic kidney diseases','Y','0000-00-00 00:00:00'),(129495,10,'Q61.4 ','Renal dysplasia','Y','0000-00-00 00:00:00'),(129493,10,'Q61.2 ','Polycystic kidney, adult type','Y','0000-00-00 00:00:00'),(129494,10,'Q61.3 ','Polycystic kidney, unspecified','Y','0000-00-00 00:00:00'),(129492,10,'Q61.19 ','Other polycystic kidney, infantile type','Y','0000-00-00 00:00:00'),(129490,10,'Q61.02 ','Congenital multiple renal cysts','Y','0000-00-00 00:00:00'),(129491,10,'Q61.11 ','Cystic dilatation of collecting ducts','Y','0000-00-00 00:00:00'),(129488,10,'Q61.00 ','Congenital renal cyst, unspecified','Y','0000-00-00 00:00:00'),(129489,10,'Q61.01 ','Congenital single renal cyst','Y','0000-00-00 00:00:00'),(129486,10,'Q60.5 ','Renal hypoplasia, unspecified','Y','0000-00-00 00:00:00'),(129487,10,'Q60.6 ','Potter\'s syndrome','Y','0000-00-00 00:00:00'),(129484,10,'Q60.3 ','Renal hypoplasia, unilateral','Y','0000-00-00 00:00:00'),(129485,10,'Q60.4 ','Renal hypoplasia, bilateral','Y','0000-00-00 00:00:00'),(129483,10,'Q60.2 ','Renal agenesis, unspecified','Y','0000-00-00 00:00:00'),(129481,10,'Q60.0 ','Renal agenesis, unilateral','Y','0000-00-00 00:00:00'),(129482,10,'Q60.1 ','Renal agenesis, bilateral','Y','0000-00-00 00:00:00'),(129479,10,'Q56.3 ','Pseudohermaphroditism, unspecified','Y','0000-00-00 00:00:00'),(129480,10,'Q56.4 ','Indeterminate sex, unspecified','Y','0000-00-00 00:00:00'),(129478,10,'Q56.2 ','Female pseudohermaphroditism, not elsewhere classified','Y','0000-00-00 00:00:00'),(129476,10,'Q56.0 ','Hermaphroditism, not elsewhere classified','Y','0000-00-00 00:00:00'),(129477,10,'Q56.1 ','Male pseudohermaphroditism, not elsewhere classified','Y','0000-00-00 00:00:00'),(129475,10,'Q55.9 ','Congenital malformation of male genital organ, unspecified','Y','0000-00-00 00:00:00'),(129473,10,'Q55.7 ','Congenital vasocutaneous fistula','Y','0000-00-00 00:00:00'),(129474,10,'Q55.8 ','Other specified congenital malformations of male genital organs','Y','0000-00-00 00:00:00'),(129471,10,'Q55.64 ','Hidden penis','Y','0000-00-00 00:00:00'),(129472,10,'Q55.69 ','Other congenital malformation of penis','Y','0000-00-00 00:00:00'),(129469,10,'Q55.62 ','Hypoplasia of penis','Y','0000-00-00 00:00:00'),(129470,10,'Q55.63 ','Congenital torsion of penis','Y','0000-00-00 00:00:00'),(129468,10,'Q55.61 ','Curvature of penis (lateral)','Y','0000-00-00 00:00:00'),(129467,10,'Q55.5 ','Congenital absence and aplasia of penis','Y','0000-00-00 00:00:00'),(129466,10,'Q55.4 ','Other congenital malformations of vas deferens, epididymis, seminal vesicles and prostate','Y','0000-00-00 00:00:00'),(129465,10,'Q55.3 ','Atresia of vas deferens','Y','0000-00-00 00:00:00'),(129463,10,'Q55.23 ','Scrotal transposition','Y','0000-00-00 00:00:00'),(129464,10,'Q55.29 ','Other congenital malformations of testis and scrotum','Y','0000-00-00 00:00:00'),(129461,10,'Q55.21 ','Polyorchism','Y','0000-00-00 00:00:00'),(129462,10,'Q55.22 ','Retractile testis','Y','0000-00-00 00:00:00'),(129459,10,'Q55.1 ','Hypoplasia of testis and scrotum','Y','0000-00-00 00:00:00'),(129460,10,'Q55.20 ','Unspecified congenital malformations of testis and scrotum','Y','0000-00-00 00:00:00'),(129457,10,'Q54.9 ','Hypospadias, unspecified','Y','0000-00-00 00:00:00'),(129458,10,'Q55.0 ','Absence and aplasia of testis','Y','0000-00-00 00:00:00'),(129455,10,'Q54.4 ','Congenital chordee','Y','0000-00-00 00:00:00'),(129456,10,'Q54.8 ','Other hypospadias','Y','0000-00-00 00:00:00'),(129453,10,'Q54.2 ','Hypospadias, penoscrotal','Y','0000-00-00 00:00:00'),(129454,10,'Q54.3 ','Hypospadias, perineal','Y','0000-00-00 00:00:00'),(129451,10,'Q54.0 ','Hypospadias, balanic','Y','0000-00-00 00:00:00'),(129452,10,'Q54.1 ','Hypospadias, penile','Y','0000-00-00 00:00:00'),(129449,10,'Q53.23 ','Bilateral high scrotal testes','Y','0000-00-00 00:00:00'),(129450,10,'Q53.9 ','Undescended testicle, unspecified','Y','0000-00-00 00:00:00'),(129447,10,'Q53.212 ','Bilateral inguinal testes','Y','0000-00-00 00:00:00'),(129448,10,'Q53.22 ','Ectopic perineal testis, bilateral','Y','0000-00-00 00:00:00'),(129446,10,'Q53.211 ','Bilateral intraabdominal testes','Y','0000-00-00 00:00:00'),(129444,10,'Q53.13 ','Unilateral high scrotal testis','Y','0000-00-00 00:00:00'),(129445,10,'Q53.20 ','Undescended testicle, unspecified, bilateral','Y','0000-00-00 00:00:00'),(129442,10,'Q53.112 ','Unilateral inguinal testis','Y','0000-00-00 00:00:00'),(129443,10,'Q53.12 ','Ectopic perineal testis, unilateral','Y','0000-00-00 00:00:00'),(129441,10,'Q53.111 ','Unilateral intraabdominal testis','Y','0000-00-00 00:00:00'),(129440,10,'Q53.10 ','Unspecified undescended testicle, unilateral','Y','0000-00-00 00:00:00'),(129438,10,'Q53.01 ','Ectopic testis, unilateral','Y','0000-00-00 00:00:00'),(129439,10,'Q53.02 ','Ectopic testes, bilateral','Y','0000-00-00 00:00:00'),(129437,10,'Q53.00 ','Ectopic testis, unspecified','Y','0000-00-00 00:00:00'),(129435,10,'Q52.8 ','Other specified congenital malformations of female genitalia','Y','0000-00-00 00:00:00'),(129436,10,'Q52.9 ','Congenital malformation of female genitalia, unspecified','Y','0000-00-00 00:00:00'),(129433,10,'Q52.71 ','Congenital absence of vulva','Y','0000-00-00 00:00:00'),(129434,10,'Q52.79 ','Other congenital malformations of vulva','Y','0000-00-00 00:00:00'),(129431,10,'Q52.6 ','Congenital malformation of clitoris','Y','0000-00-00 00:00:00'),(129432,10,'Q52.70 ','Unspecified congenital malformations of vulva','Y','0000-00-00 00:00:00'),(129429,10,'Q52.4 ','Other congenital malformations of vagina','Y','0000-00-00 00:00:00'),(129430,10,'Q52.5 ','Fusion of labia','Y','0000-00-00 00:00:00'),(129427,10,'Q52.2 ','Congenital rectovaginal fistula','Y','0000-00-00 00:00:00'),(129428,10,'Q52.3 ','Imperforate hymen','Y','0000-00-00 00:00:00'),(129426,10,'Q52.129 ','Other and unspecified longitudinal vaginal septum','Y','0000-00-00 00:00:00'),(129424,10,'Q52.123 ','Longitudinal vaginal septum, microperforate, right side','Y','0000-00-00 00:00:00'),(129425,10,'Q52.124 ','Longitudinal vaginal septum, microperforate, left side','Y','0000-00-00 00:00:00'),(129423,10,'Q52.122 ','Longitudinal vaginal septum, obstructing, left side','Y','0000-00-00 00:00:00'),(129421,10,'Q52.120 ','Longitudinal vaginal septum, nonobstructing','Y','0000-00-00 00:00:00'),(129422,10,'Q52.121 ','Longitudinal vaginal septum, obstructing, right side','Y','0000-00-00 00:00:00'),(129420,10,'Q52.11 ','Transverse vaginal septum','Y','0000-00-00 00:00:00'),(129418,10,'Q52.0 ','Congenital absence of vagina','Y','0000-00-00 00:00:00'),(129419,10,'Q52.10 ','Doubling of vagina, unspecified','Y','0000-00-00 00:00:00'),(129416,10,'Q51.828 ','Other congenital malformations of cervix','Y','0000-00-00 00:00:00'),(129417,10,'Q51.9 ','Congenital malformation of uterus and cervix, unspecified','Y','0000-00-00 00:00:00'),(129415,10,'Q51.821 ','Hypoplasia of cervix','Y','0000-00-00 00:00:00'),(129414,10,'Q51.820 ','Cervical duplication','Y','0000-00-00 00:00:00'),(129412,10,'Q51.811 ','Hypoplasia of uterus','Y','0000-00-00 00:00:00'),(129413,10,'Q51.818 ','Other congenital malformations of uterus','Y','0000-00-00 00:00:00'),(129411,10,'Q51.810 ','Arcuate uterus','Y','0000-00-00 00:00:00'),(129409,10,'Q51.6 ','Embryonic cyst of cervix','Y','0000-00-00 00:00:00'),(129410,10,'Q51.7 ','Congenital fistulae between uterus and digestive and urinary tracts','Y','0000-00-00 00:00:00'),(129407,10,'Q51.4 ','Unicornate uterus','Y','0000-00-00 00:00:00'),(129408,10,'Q51.5 ','Agenesis and aplasia of cervix','Y','0000-00-00 00:00:00'),(129405,10,'Q51.28 ','Other and unspecified doubling of uterus','Y','0000-00-00 00:00:00'),(129406,10,'Q51.3 ','Bicornate uterus','Y','0000-00-00 00:00:00'),(129404,10,'Q51.22 ','Partial doubling of uterus','Y','0000-00-00 00:00:00'),(129403,10,'Q51.21 ','Complete doubling of uterus','Y','0000-00-00 00:00:00'),(129401,10,'Q51.10 ','Doubling of uterus with doubling of cervix and vagina without obstruction','Y','0000-00-00 00:00:00'),(129402,10,'Q51.11 ','Doubling of uterus with doubling of cervix and vagina with obstruction','Y','0000-00-00 00:00:00'),(129400,10,'Q51.0 ','Agenesis and aplasia of uterus','Y','0000-00-00 00:00:00'),(129399,10,'Q50.6 ','Other congenital malformations of fallopian tube and broad ligament','Y','0000-00-00 00:00:00'),(129397,10,'Q50.4 ','Embryonic cyst of fallopian tube','Y','0000-00-00 00:00:00'),(129398,10,'Q50.5 ','Embryonic cyst of broad ligament','Y','0000-00-00 00:00:00'),(129395,10,'Q50.32 ','Ovarian streak','Y','0000-00-00 00:00:00'),(129396,10,'Q50.39 ','Other congenital malformation of ovary','Y','0000-00-00 00:00:00'),(129393,10,'Q50.2 ','Congenital torsion of ovary','Y','0000-00-00 00:00:00'),(129394,10,'Q50.31 ','Accessory ovary','Y','0000-00-00 00:00:00'),(129391,10,'Q50.02 ','Congenital absence of ovary, bilateral','Y','0000-00-00 00:00:00'),(129392,10,'Q50.1 ','Developmental ovarian cyst','Y','0000-00-00 00:00:00'),(129390,10,'Q50.01 ','Congenital absence of ovary, unilateral','Y','0000-00-00 00:00:00'),(129389,10,'Q45.9 ','Congenital malformation of digestive system, unspecified','Y','0000-00-00 00:00:00'),(129388,10,'Q45.8 ','Other specified congenital malformations of digestive system','Y','0000-00-00 00:00:00'),(129386,10,'Q45.2 ','Congenital pancreatic cyst','Y','0000-00-00 00:00:00'),(129387,10,'Q45.3 ','Other congenital malformations of pancreas and pancreatic duct','Y','0000-00-00 00:00:00'),(129384,10,'Q45.0 ','Agenesis, aplasia and hypoplasia of pancreas','Y','0000-00-00 00:00:00'),(129385,10,'Q45.1 ','Annular pancreas','Y','0000-00-00 00:00:00'),(129383,10,'Q44.79 ','Other congenital malformations of liver','Y','0000-00-00 00:00:00'),(129381,10,'Q44.70 ','Other congenital malformation of liver, unspecified','Y','0000-00-00 00:00:00'),(129382,10,'Q44.71 ','Alagille syndrome','Y','0000-00-00 00:00:00'),(129380,10,'Q44.6 ','Cystic disease of liver','Y','0000-00-00 00:00:00'),(129378,10,'Q44.4 ','Choledochal cyst','Y','0000-00-00 00:00:00'),(129379,10,'Q44.5 ','Other congenital malformations of bile ducts','Y','0000-00-00 00:00:00'),(129376,10,'Q44.2 ','Atresia of bile ducts','Y','0000-00-00 00:00:00'),(129377,10,'Q44.3 ','Congenital stenosis and stricture of bile ducts','Y','0000-00-00 00:00:00'),(129375,10,'Q44.1 ','Other congenital malformations of gallbladder','Y','0000-00-00 00:00:00'),(129373,10,'Q43.9 ','Congenital malformation of intestine, unspecified','Y','0000-00-00 00:00:00'),(129374,10,'Q44.0 ','Agenesis, aplasia and hypoplasia of gallbladder','Y','0000-00-00 00:00:00'),(129372,10,'Q43.8 ','Other specified congenital malformations of intestine','Y','0000-00-00 00:00:00'),(129370,10,'Q43.6 ','Congenital fistula of rectum and anus','Y','0000-00-00 00:00:00'),(129371,10,'Q43.7 ','Persistent cloaca','Y','0000-00-00 00:00:00'),(129368,10,'Q43.4 ','Duplication of intestine','Y','0000-00-00 00:00:00'),(129369,10,'Q43.5 ','Ectopic anus','Y','0000-00-00 00:00:00'),(129367,10,'Q43.3 ','Congenital malformations of intestinal fixation','Y','0000-00-00 00:00:00'),(129366,10,'Q43.2 ','Other congenital functional disorders of colon','Y','0000-00-00 00:00:00'),(129365,10,'Q43.1 ','Hirschsprung\'s disease','Y','0000-00-00 00:00:00'),(129364,10,'Q43.0 ','Meckel\'s diverticulum (displaced) (hypertrophic)','Y','0000-00-00 00:00:00'),(129363,10,'Q42.9 ','Congenital absence, atresia and stenosis of large intestine, part unspecified','Y','0000-00-00 00:00:00'),(129362,10,'Q42.8 ','Congenital absence, atresia and stenosis of other parts of large intestine','Y','0000-00-00 00:00:00'),(129360,10,'Q42.2 ','Congenital absence, atresia and stenosis of anus with fistula','Y','0000-00-00 00:00:00'),(129361,10,'Q42.3 ','Congenital absence, atresia and stenosis of anus without fistula','Y','0000-00-00 00:00:00'),(129359,10,'Q42.1 ','Congenital absence, atresia and stenosis of rectum without fistula','Y','0000-00-00 00:00:00'),(129358,10,'Q42.0 ','Congenital absence, atresia and stenosis of rectum with fistula','Y','0000-00-00 00:00:00'),(129357,10,'Q41.9 ','Congenital absence, atresia and stenosis of small intestine, part unspecified','Y','0000-00-00 00:00:00'),(129356,10,'Q41.8 ','Congenital absence, atresia and stenosis of other specified parts of small intestine','Y','0000-00-00 00:00:00'),(129354,10,'Q41.1 ','Congenital absence, atresia and stenosis of jejunum','Y','0000-00-00 00:00:00'),(129355,10,'Q41.2 ','Congenital absence, atresia and stenosis of ileum','Y','0000-00-00 00:00:00'),(129353,10,'Q41.0 ','Congenital absence, atresia and stenosis of duodenum','Y','0000-00-00 00:00:00'),(129352,10,'Q40.9 ','Congenital malformation of upper alimentary tract, unspecified','Y','0000-00-00 00:00:00'),(129350,10,'Q40.3 ','Congenital malformation of stomach, unspecified','Y','0000-00-00 00:00:00'),(129351,10,'Q40.8 ','Other specified congenital malformations of upper alimentary tract','Y','0000-00-00 00:00:00'),(129348,10,'Q40.1 ','Congenital hiatus hernia','Y','0000-00-00 00:00:00'),(129349,10,'Q40.2 ','Other specified congenital malformations of stomach','Y','0000-00-00 00:00:00'),(129347,10,'Q40.0 ','Congenital hypertrophic pyloric stenosis','Y','0000-00-00 00:00:00'),(129345,10,'Q39.8 ','Other congenital malformations of esophagus','Y','0000-00-00 00:00:00'),(129346,10,'Q39.9 ','Congenital malformation of esophagus, unspecified','Y','0000-00-00 00:00:00'),(129344,10,'Q39.6 ','Congenital diverticulum of esophagus','Y','0000-00-00 00:00:00'),(129342,10,'Q39.4 ','Esophageal web','Y','0000-00-00 00:00:00'),(129343,10,'Q39.5 ','Congenital dilatation of esophagus','Y','0000-00-00 00:00:00'),(129340,10,'Q39.2 ','Congenital tracheo-esophageal fistula without atresia','Y','0000-00-00 00:00:00'),(129341,10,'Q39.3 ','Congenital stenosis and stricture of esophagus','Y','0000-00-00 00:00:00'),(129338,10,'Q39.0 ','Atresia of esophagus without fistula','Y','0000-00-00 00:00:00'),(129339,10,'Q39.1 ','Atresia of esophagus with tracheo-esophageal fistula','Y','0000-00-00 00:00:00'),(129336,10,'Q38.7 ','Congenital pharyngeal pouch','Y','0000-00-00 00:00:00'),(129337,10,'Q38.8 ','Other congenital malformations of pharynx','Y','0000-00-00 00:00:00'),(129335,10,'Q38.6 ','Other congenital malformations of mouth','Y','0000-00-00 00:00:00'),(129333,10,'Q38.4 ','Congenital malformations of salivary glands and ducts','Y','0000-00-00 00:00:00'),(129334,10,'Q38.5 ','Congenital malformations of palate, not elsewhere classified','Y','0000-00-00 00:00:00'),(129331,10,'Q38.2 ','Macroglossia','Y','0000-00-00 00:00:00'),(129332,10,'Q38.3 ','Other congenital malformations of tongue','Y','0000-00-00 00:00:00'),(129329,10,'Q38.0 ','Congenital malformations of lips, not elsewhere classified','Y','0000-00-00 00:00:00'),(129330,10,'Q38.1 ','Ankyloglossia','Y','0000-00-00 00:00:00'),(129328,10,'Q37.9 ','Unspecified cleft palate with unilateral cleft lip','Y','0000-00-00 00:00:00'),(129326,10,'Q37.5 ','Cleft hard and soft palate with unilateral cleft lip','Y','0000-00-00 00:00:00'),(129327,10,'Q37.8 ','Unspecified cleft palate with bilateral cleft lip','Y','0000-00-00 00:00:00'),(129325,10,'Q37.4 ','Cleft hard and soft palate with bilateral cleft lip','Y','0000-00-00 00:00:00'),(129323,10,'Q37.2 ','Cleft soft palate with bilateral cleft lip','Y','0000-00-00 00:00:00'),(129324,10,'Q37.3 ','Cleft soft palate with unilateral cleft lip','Y','0000-00-00 00:00:00'),(129322,10,'Q37.1 ','Cleft hard palate with unilateral cleft lip','Y','0000-00-00 00:00:00'),(129321,10,'Q37.0 ','Cleft hard palate with bilateral cleft lip','Y','0000-00-00 00:00:00'),(129319,10,'Q36.1 ','Cleft lip, median','Y','0000-00-00 00:00:00'),(129320,10,'Q36.9 ','Cleft lip, unilateral','Y','0000-00-00 00:00:00'),(129317,10,'Q35.9 ','Cleft palate, unspecified','Y','0000-00-00 00:00:00'),(129318,10,'Q36.0 ','Cleft lip, bilateral','Y','0000-00-00 00:00:00'),(129315,10,'Q35.5 ','Cleft hard palate with cleft soft palate','Y','0000-00-00 00:00:00'),(129316,10,'Q35.7 ','Cleft uvula','Y','0000-00-00 00:00:00'),(129313,10,'Q35.1 ','Cleft hard palate','Y','0000-00-00 00:00:00'),(129314,10,'Q35.3 ','Cleft soft palate','Y','0000-00-00 00:00:00'),(129312,10,'Q34.9 ','Congenital malformation of respiratory system, unspecified','Y','0000-00-00 00:00:00'),(129310,10,'Q34.1 ','Congenital cyst of mediastinum','Y','0000-00-00 00:00:00'),(129311,10,'Q34.8 ','Other specified congenital malformations of respiratory system','Y','0000-00-00 00:00:00'),(129309,10,'Q34.0 ','Anomaly of pleura','Y','0000-00-00 00:00:00'),(129307,10,'Q33.8 ','Other congenital malformations of lung','Y','0000-00-00 00:00:00'),(129308,10,'Q33.9 ','Congenital malformation of lung, unspecified','Y','0000-00-00 00:00:00'),(129305,10,'Q33.5 ','Ectopic tissue in lung','Y','0000-00-00 00:00:00'),(129306,10,'Q33.6 ','Congenital hypoplasia and dysplasia of lung','Y','0000-00-00 00:00:00'),(129303,10,'Q33.3 ','Agenesis of lung','Y','0000-00-00 00:00:00'),(129304,10,'Q33.4 ','Congenital bronchiectasis','Y','0000-00-00 00:00:00'),(129301,10,'Q33.1 ','Accessory lobe of lung','Y','0000-00-00 00:00:00'),(129302,10,'Q33.2 ','Sequestration of lung','Y','0000-00-00 00:00:00'),(129299,10,'Q32.4 ','Other congenital malformations of bronchus','Y','0000-00-00 00:00:00'),(129300,10,'Q33.0 ','Congenital cystic lung','Y','0000-00-00 00:00:00'),(129297,10,'Q32.2 ','Congenital bronchomalacia','Y','0000-00-00 00:00:00'),(129298,10,'Q32.3 ','Congenital stenosis of bronchus','Y','0000-00-00 00:00:00'),(129295,10,'Q32.0 ','Congenital tracheomalacia','Y','0000-00-00 00:00:00'),(129296,10,'Q32.1 ','Other congenital malformations of trachea','Y','0000-00-00 00:00:00'),(129294,10,'Q31.9 ','Congenital malformation of larynx, unspecified','Y','0000-00-00 00:00:00'),(129293,10,'Q31.8 ','Other congenital malformations of larynx','Y','0000-00-00 00:00:00'),(129291,10,'Q31.3 ','Laryngocele','Y','0000-00-00 00:00:00'),(129292,10,'Q31.5 ','Congenital laryngomalacia','Y','0000-00-00 00:00:00'),(129290,10,'Q31.2 ','Laryngeal hypoplasia','Y','0000-00-00 00:00:00'),(129288,10,'Q31.0 ','Web of larynx','Y','0000-00-00 00:00:00'),(129289,10,'Q31.1 ','Congenital subglottic stenosis','Y','0000-00-00 00:00:00'),(129286,10,'Q30.8 ','Other congenital malformations of nose','Y','0000-00-00 00:00:00'),(129287,10,'Q30.9 ','Congenital malformation of nose, unspecified','Y','0000-00-00 00:00:00'),(129284,10,'Q30.2 ','Fissured, notched and cleft nose','Y','0000-00-00 00:00:00'),(129285,10,'Q30.3 ','Congenital perforated nasal septum','Y','0000-00-00 00:00:00'),(129283,10,'Q30.1 ','Agenesis and underdevelopment of nose','Y','0000-00-00 00:00:00'),(129281,10,'Q28.9 ','Congenital malformation of circulatory system, unspecified','Y','0000-00-00 00:00:00'),(129282,10,'Q30.0 ','Choanal atresia','Y','0000-00-00 00:00:00'),(129280,10,'Q28.8 ','Other specified congenital malformations of circulatory system','Y','0000-00-00 00:00:00'),(129278,10,'Q28.2 ','Arteriovenous malformation of cerebral vessels','Y','0000-00-00 00:00:00'),(129279,10,'Q28.3 ','Other malformations of cerebral vessels','Y','0000-00-00 00:00:00'),(129277,10,'Q28.1 ','Other malformations of precerebral vessels','Y','0000-00-00 00:00:00'),(129276,10,'Q28.0 ','Arteriovenous malformation of precerebral vessels','Y','0000-00-00 00:00:00'),(129275,10,'Q27.9 ','Congenital malformation of peripheral vascular system, unspecified','Y','0000-00-00 00:00:00'),(129273,10,'Q27.4 ','Congenital phlebectasia','Y','0000-00-00 00:00:00'),(129274,10,'Q27.8 ','Other specified congenital malformations of peripheral vascular system','Y','0000-00-00 00:00:00'),(129271,10,'Q27.34 ','Arteriovenous malformation of renal vessel','Y','0000-00-00 00:00:00'),(129272,10,'Q27.39 ','Arteriovenous malformation, other site','Y','0000-00-00 00:00:00'),(129270,10,'Q27.33 ','Arteriovenous malformation of digestive system vessel','Y','0000-00-00 00:00:00'),(129269,10,'Q27.32 ','Arteriovenous malformation of vessel of lower limb','Y','0000-00-00 00:00:00'),(129268,10,'Q27.31 ','Arteriovenous malformation of vessel of upper limb','Y','0000-00-00 00:00:00'),(129267,10,'Q27.30 ','Arteriovenous malformation, site unspecified','Y','0000-00-00 00:00:00'),(129266,10,'Q27.2 ','Other congenital malformations of renal artery','Y','0000-00-00 00:00:00'),(129265,10,'Q27.1 ','Congenital renal artery stenosis','Y','0000-00-00 00:00:00'),(129264,10,'Q27.0 ','Congenital absence and hypoplasia of umbilical artery','Y','0000-00-00 00:00:00'),(129263,10,'Q26.9 ','Congenital malformation of great vein, unspecified','Y','0000-00-00 00:00:00'),(129262,10,'Q26.8 ','Other congenital malformations of great veins','Y','0000-00-00 00:00:00'),(129261,10,'Q26.6 ','Portal vein-hepatic artery fistula','Y','0000-00-00 00:00:00'),(129260,10,'Q26.5 ','Anomalous portal venous connection','Y','0000-00-00 00:00:00'),(129259,10,'Q26.4 ','Anomalous pulmonary venous connection, unspecified','Y','0000-00-00 00:00:00'),(129258,10,'Q26.3 ','Partial anomalous pulmonary venous connection','Y','0000-00-00 00:00:00'),(129257,10,'Q26.2 ','Total anomalous pulmonary venous connection','Y','0000-00-00 00:00:00'),(129256,10,'Q26.1 ','Persistent left superior vena cava','Y','0000-00-00 00:00:00'),(129255,10,'Q26.0 ','Congenital stenosis of vena cava','Y','0000-00-00 00:00:00'),(129254,10,'Q25.9 ','Congenital malformation of great arteries, unspecified','Y','0000-00-00 00:00:00'),(129253,10,'Q25.8 ','Other congenital malformations of other great arteries','Y','0000-00-00 00:00:00'),(129252,10,'Q25.79 ','Other congenital malformations of pulmonary artery','Y','0000-00-00 00:00:00'),(129251,10,'Q25.72 ','Congenital pulmonary arteriovenous malformation','Y','0000-00-00 00:00:00'),(129250,10,'Q25.71 ','Coarctation of pulmonary artery','Y','0000-00-00 00:00:00'),(129249,10,'Q25.6 ','Stenosis of pulmonary artery','Y','0000-00-00 00:00:00'),(129248,10,'Q25.5 ','Atresia of pulmonary artery','Y','0000-00-00 00:00:00'),(129247,10,'Q25.49 ','Other congenital malformations of aorta','Y','0000-00-00 00:00:00'),(129246,10,'Q25.48 ','Anomalous origin of subclavian artery','Y','0000-00-00 00:00:00'),(129245,10,'Q25.47 ','Right aortic arch','Y','0000-00-00 00:00:00'),(129244,10,'Q25.46 ','Tortuous aortic arch','Y','0000-00-00 00:00:00'),(129243,10,'Q25.45 ','Double aortic arch','Y','0000-00-00 00:00:00'),(129242,10,'Q25.44 ','Congenital dilation of aorta','Y','0000-00-00 00:00:00'),(129241,10,'Q25.43 ','Congenital aneurysm of aorta','Y','0000-00-00 00:00:00'),(129240,10,'Q25.42 ','Hypoplasia of aorta','Y','0000-00-00 00:00:00'),(129239,10,'Q25.41 ','Absence and aplasia of aorta','Y','0000-00-00 00:00:00'),(129238,10,'Q25.40 ','Congenital malformation of aorta unspecified','Y','0000-00-00 00:00:00'),(129237,10,'Q25.3 ','Supravalvular aortic stenosis','Y','0000-00-00 00:00:00'),(129236,10,'Q25.29 ','Other atresia of aorta','Y','0000-00-00 00:00:00'),(129235,10,'Q25.21 ','Interruption of aortic arch','Y','0000-00-00 00:00:00'),(129234,10,'Q25.1 ','Coarctation of aorta','Y','0000-00-00 00:00:00'),(129233,10,'Q25.0 ','Patent ductus arteriosus','Y','0000-00-00 00:00:00'),(129232,10,'Q24.9 ','Congenital malformation of heart, unspecified','Y','0000-00-00 00:00:00'),(129231,10,'Q24.8 ','Other specified congenital malformations of heart','Y','0000-00-00 00:00:00'),(129230,10,'Q24.6 ','Congenital heart block','Y','0000-00-00 00:00:00'),(129229,10,'Q24.5 ','Malformation of coronary vessels','Y','0000-00-00 00:00:00'),(129228,10,'Q24.4 ','Congenital subaortic stenosis','Y','0000-00-00 00:00:00'),(129227,10,'Q24.3 ','Pulmonary infundibular stenosis','Y','0000-00-00 00:00:00'),(129226,10,'Q24.2 ','Cor triatriatum','Y','0000-00-00 00:00:00'),(129225,10,'Q24.1 ','Levocardia','Y','0000-00-00 00:00:00'),(129224,10,'Q24.0 ','Dextrocardia','Y','0000-00-00 00:00:00'),(129223,10,'Q23.9 ','Congenital malformation of aortic and mitral valves, unspecified','Y','0000-00-00 00:00:00'),(129222,10,'Q23.8 ','Other congenital malformations of aortic and mitral valves','Y','0000-00-00 00:00:00'),(129221,10,'Q23.4 ','Hypoplastic left heart syndrome','Y','0000-00-00 00:00:00'),(129220,10,'Q23.3 ','Congenital mitral insufficiency','Y','0000-00-00 00:00:00'),(129219,10,'Q23.2 ','Congenital mitral stenosis','Y','0000-00-00 00:00:00'),(129218,10,'Q23.1 ','Congenital insufficiency of aortic valve','Y','0000-00-00 00:00:00'),(129217,10,'Q23.0 ','Congenital stenosis of aortic valve','Y','0000-00-00 00:00:00'),(129216,10,'Q22.9 ','Congenital malformation of tricuspid valve, unspecified','Y','0000-00-00 00:00:00'),(129215,10,'Q22.8 ','Other congenital malformations of tricuspid valve','Y','0000-00-00 00:00:00'),(129214,10,'Q22.6 ','Hypoplastic right heart syndrome','Y','0000-00-00 00:00:00'),(129213,10,'Q22.5 ','Ebstein\'s anomaly','Y','0000-00-00 00:00:00'),(129212,10,'Q22.4 ','Congenital tricuspid stenosis','Y','0000-00-00 00:00:00'),(129211,10,'Q22.3 ','Other congenital malformations of pulmonary valve','Y','0000-00-00 00:00:00'),(129210,10,'Q22.2 ','Congenital pulmonary valve insufficiency','Y','0000-00-00 00:00:00'),(129209,10,'Q22.1 ','Congenital pulmonary valve stenosis','Y','0000-00-00 00:00:00'),(129208,10,'Q22.0 ','Pulmonary valve atresia','Y','0000-00-00 00:00:00'),(129207,10,'Q21.9 ','Congenital malformation of cardiac septum, unspecified','Y','0000-00-00 00:00:00'),(129206,10,'Q21.8 ','Other congenital malformations of cardiac septa','Y','0000-00-00 00:00:00'),(129205,10,'Q21.4 ','Aortopulmonary septal defect','Y','0000-00-00 00:00:00'),(129204,10,'Q21.3 ','Tetralogy of Fallot','Y','0000-00-00 00:00:00'),(129203,10,'Q21.23 ','Complete atrioventricular septal defect','Y','0000-00-00 00:00:00'),(129202,10,'Q21.22 ','Transitional atrioventricular septal defect','Y','0000-00-00 00:00:00'),(129201,10,'Q21.21 ','Partial atrioventricular septal defect','Y','0000-00-00 00:00:00'),(129200,10,'Q21.20 ','Atrioventricular septal defect, unspecified as to partial or complete','Y','0000-00-00 00:00:00'),(129199,10,'Q21.19 ','Other specified atrial septal defect','Y','0000-00-00 00:00:00'),(129198,10,'Q21.16 ','Sinus venosus atrial septal defect, unspecified','Y','0000-00-00 00:00:00'),(129197,10,'Q21.15 ','Inferior sinus venosus atrial septal defect','Y','0000-00-00 00:00:00'),(129195,10,'Q21.13 ','Coronary sinus atrial septal defect','Y','0000-00-00 00:00:00'),(129196,10,'Q21.14 ','Superior sinus venosus atrial septal defect','Y','0000-00-00 00:00:00'),(129194,10,'Q21.12 ','Patent foramen ovale','Y','0000-00-00 00:00:00'),(129193,10,'Q21.11 ','Secundum atrial septal defect','Y','0000-00-00 00:00:00'),(129191,10,'Q21.0 ','Ventricular septal defect','Y','0000-00-00 00:00:00'),(129192,10,'Q21.10 ','Atrial septal defect, unspecified','Y','0000-00-00 00:00:00'),(129190,10,'Q20.9 ','Congenital malformation of cardiac chambers and connections, unspecified','Y','0000-00-00 00:00:00'),(129189,10,'Q20.8 ','Other congenital malformations of cardiac chambers and connections','Y','0000-00-00 00:00:00'),(129188,10,'Q20.6 ','Isomerism of atrial appendages','Y','0000-00-00 00:00:00'),(129186,10,'Q20.4 ','Double inlet ventricle','Y','0000-00-00 00:00:00'),(129187,10,'Q20.5 ','Discordant atrioventricular connection','Y','0000-00-00 00:00:00'),(129185,10,'Q20.3 ','Discordant ventriculoarterial connection','Y','0000-00-00 00:00:00'),(129184,10,'Q20.2 ','Double outlet left ventricle','Y','0000-00-00 00:00:00'),(129182,10,'Q20.0 ','Common arterial trunk','Y','0000-00-00 00:00:00'),(129183,10,'Q20.1 ','Double outlet right ventricle','Y','0000-00-00 00:00:00'),(129181,10,'Q18.9 ','Congenital malformation of face and neck, unspecified','Y','0000-00-00 00:00:00'),(129180,10,'Q18.8 ','Other specified congenital malformations of face and neck','Y','0000-00-00 00:00:00'),(129178,10,'Q18.6 ','Macrocheilia','Y','0000-00-00 00:00:00'),(129179,10,'Q18.7 ','Microcheilia','Y','0000-00-00 00:00:00'),(129176,10,'Q18.4 ','Macrostomia','Y','0000-00-00 00:00:00'),(129177,10,'Q18.5 ','Microstomia','Y','0000-00-00 00:00:00'),(129175,10,'Q18.3 ','Webbing of neck','Y','0000-00-00 00:00:00'),(129173,10,'Q18.1 ','Preauricular sinus and cyst','Y','0000-00-00 00:00:00'),(129174,10,'Q18.2 ','Other branchial cleft malformations','Y','0000-00-00 00:00:00'),(129172,10,'Q18.0 ','Sinus, fistula and cyst of branchial cleft','Y','0000-00-00 00:00:00'),(129171,10,'Q17.9 ','Congenital malformation of ear, unspecified','Y','0000-00-00 00:00:00'),(129170,10,'Q17.8 ','Other specified congenital malformations of ear','Y','0000-00-00 00:00:00'),(129168,10,'Q17.4 ','Misplaced ear','Y','0000-00-00 00:00:00'),(129169,10,'Q17.5 ','Prominent ear','Y','0000-00-00 00:00:00'),(129166,10,'Q17.2 ','Microtia','Y','0000-00-00 00:00:00'),(129167,10,'Q17.3 ','Other misshapen ear','Y','0000-00-00 00:00:00'),(129164,10,'Q17.0 ','Accessory auricle','Y','0000-00-00 00:00:00'),(129165,10,'Q17.1 ','Macrotia','Y','0000-00-00 00:00:00'),(129163,10,'Q16.9 ','Congenital malformation of ear causing impairment of hearing, unspecified','Y','0000-00-00 00:00:00'),(129162,10,'Q16.5 ','Congenital malformation of inner ear','Y','0000-00-00 00:00:00'),(129161,10,'Q16.4 ','Other congenital malformations of middle ear','Y','0000-00-00 00:00:00'),(129160,10,'Q16.3 ','Congenital malformation of ear ossicles','Y','0000-00-00 00:00:00'),(129159,10,'Q16.2 ','Absence of eustachian tube','Y','0000-00-00 00:00:00'),(129158,10,'Q16.1 ','Congenital absence, atresia and stricture of auditory canal (external)','Y','0000-00-00 00:00:00'),(129157,10,'Q16.0 ','Congenital absence of (ear) auricle','Y','0000-00-00 00:00:00'),(129156,10,'Q15.9 ','Congenital malformation of eye, unspecified','Y','0000-00-00 00:00:00'),(129154,10,'Q15.0 ','Congenital glaucoma','Y','0000-00-00 00:00:00'),(129155,10,'Q15.8 ','Other specified congenital malformations of eye','Y','0000-00-00 00:00:00'),(129153,10,'Q14.9 ','Congenital malformation of posterior segment of eye, unspecified','Y','0000-00-00 00:00:00'),(129152,10,'Q14.8 ','Other congenital malformations of posterior segment of eye','Y','0000-00-00 00:00:00'),(129151,10,'Q14.3 ','Congenital malformation of choroid','Y','0000-00-00 00:00:00'),(129150,10,'Q14.2 ','Congenital malformation of optic disc','Y','0000-00-00 00:00:00'),(129149,10,'Q14.1 ','Congenital malformation of retina','Y','0000-00-00 00:00:00'),(129148,10,'Q14.0 ','Congenital malformation of vitreous humor','Y','0000-00-00 00:00:00'),(129147,10,'Q13.9 ','Congenital malformation of anterior segment of eye, unspecified','Y','0000-00-00 00:00:00'),(129146,10,'Q13.89 ','Other congenital malformations of anterior segment of eye','Y','0000-00-00 00:00:00'),(129144,10,'Q13.5 ','Blue sclera','Y','0000-00-00 00:00:00'),(129145,10,'Q13.81 ','Rieger\'s anomaly','Y','0000-00-00 00:00:00'),(129143,10,'Q13.4 ','Other congenital corneal malformations','Y','0000-00-00 00:00:00'),(129142,10,'Q13.3 ','Congenital corneal opacity','Y','0000-00-00 00:00:00'),(129141,10,'Q13.2 ','Other congenital malformations of iris','Y','0000-00-00 00:00:00'),(129139,10,'Q13.0 ','Coloboma of iris','Y','0000-00-00 00:00:00'),(129140,10,'Q13.1 ','Absence of iris','Y','0000-00-00 00:00:00'),(129137,10,'Q12.8 ','Other congenital lens malformations','Y','0000-00-00 00:00:00'),(129138,10,'Q12.9 ','Congenital lens malformation, unspecified','Y','0000-00-00 00:00:00'),(129135,10,'Q12.3 ','Congenital aphakia','Y','0000-00-00 00:00:00'),(129136,10,'Q12.4 ','Spherophakia','Y','0000-00-00 00:00:00'),(129134,10,'Q12.2 ','Coloboma of lens','Y','0000-00-00 00:00:00'),(129132,10,'Q12.0 ','Congenital cataract','Y','0000-00-00 00:00:00'),(129133,10,'Q12.1 ','Congenital displaced lens','Y','0000-00-00 00:00:00'),(129130,10,'Q11.2 ','Microphthalmos','Y','0000-00-00 00:00:00'),(129131,10,'Q11.3 ','Macrophthalmos','Y','0000-00-00 00:00:00'),(129129,10,'Q11.1 ','Other anophthalmos','Y','0000-00-00 00:00:00'),(129127,10,'Q10.7 ','Congenital malformation of orbit','Y','0000-00-00 00:00:00'),(129128,10,'Q11.0 ','Cystic eyeball','Y','0000-00-00 00:00:00'),(129126,10,'Q10.6 ','Other congenital malformations of lacrimal apparatus','Y','0000-00-00 00:00:00'),(129125,10,'Q10.5 ','Congenital stenosis and stricture of lacrimal duct','Y','0000-00-00 00:00:00'),(129123,10,'Q10.3 ','Other congenital malformations of eyelid','Y','0000-00-00 00:00:00'),(129124,10,'Q10.4 ','Absence and agenesis of lacrimal apparatus','Y','0000-00-00 00:00:00'),(129122,10,'Q10.2 ','Congenital entropion','Y','0000-00-00 00:00:00'),(129120,10,'Q10.0 ','Congenital ptosis','Y','0000-00-00 00:00:00'),(129121,10,'Q10.1 ','Congenital ectropion','Y','0000-00-00 00:00:00'),(129119,10,'Q07.9 ','Congenital malformation of nervous system, unspecified','Y','0000-00-00 00:00:00'),(129118,10,'Q07.8 ','Other specified congenital malformations of nervous system','Y','0000-00-00 00:00:00'),(129117,10,'Q07.03 ','Arnold-Chiari syndrome with spina bifida and hydrocephalus','Y','0000-00-00 00:00:00'),(129116,10,'Q07.02 ','Arnold-Chiari syndrome with hydrocephalus','Y','0000-00-00 00:00:00'),(129115,10,'Q07.01 ','Arnold-Chiari syndrome with spina bifida','Y','0000-00-00 00:00:00'),(129114,10,'Q07.00 ','Arnold-Chiari syndrome without spina bifida or hydrocephalus','Y','0000-00-00 00:00:00'),(129113,10,'Q06.9 ','Congenital malformation of spinal cord, unspecified','Y','0000-00-00 00:00:00'),(129112,10,'Q06.8 ','Other specified congenital malformations of spinal cord','Y','0000-00-00 00:00:00'),(129111,10,'Q06.4 ','Hydromyelia','Y','0000-00-00 00:00:00'),(129110,10,'Q06.3 ','Other congenital cauda equina malformations','Y','0000-00-00 00:00:00'),(129109,10,'Q06.2 ','Diastematomyelia','Y','0000-00-00 00:00:00'),(129107,10,'Q06.0 ','Amyelia','Y','0000-00-00 00:00:00'),(129108,10,'Q06.1 ','Hypoplasia and dysplasia of spinal cord','Y','0000-00-00 00:00:00'),(129106,10,'Q05.9 ','Spina bifida, unspecified','Y','0000-00-00 00:00:00'),(129105,10,'Q05.8 ','Sacral spina bifida without hydrocephalus','Y','0000-00-00 00:00:00'),(129104,10,'Q05.7 ','Lumbar spina bifida without hydrocephalus','Y','0000-00-00 00:00:00'),(129103,10,'Q05.6 ','Thoracic spina bifida without hydrocephalus','Y','0000-00-00 00:00:00'),(129102,10,'Q05.5 ','Cervical spina bifida without hydrocephalus','Y','0000-00-00 00:00:00'),(129101,10,'Q05.4 ','Unspecified spina bifida with hydrocephalus','Y','0000-00-00 00:00:00'),(129100,10,'Q05.3 ','Sacral spina bifida with hydrocephalus','Y','0000-00-00 00:00:00'),(129099,10,'Q05.2 ','Lumbar spina bifida with hydrocephalus','Y','0000-00-00 00:00:00'),(129098,10,'Q05.1 ','Thoracic spina bifida with hydrocephalus','Y','0000-00-00 00:00:00'),(129097,10,'Q05.0 ','Cervical spina bifida with hydrocephalus','Y','0000-00-00 00:00:00'),(129096,10,'Q04.9 ','Congenital malformation of brain, unspecified','Y','0000-00-00 00:00:00'),(129094,10,'Q04.6 ','Congenital cerebral cysts','Y','0000-00-00 00:00:00'),(129095,10,'Q04.8 ','Other specified congenital malformations of brain','Y','0000-00-00 00:00:00'),(129093,10,'Q04.5 ','Megalencephaly','Y','0000-00-00 00:00:00'),(129091,10,'Q04.3 ','Other reduction deformities of brain','Y','0000-00-00 00:00:00'),(129092,10,'Q04.4 ','Septo-optic dysplasia of brain','Y','0000-00-00 00:00:00'),(129090,10,'Q04.2 ','Holoprosencephaly','Y','0000-00-00 00:00:00'),(129088,10,'Q04.0 ','Congenital malformations of corpus callosum','Y','0000-00-00 00:00:00'),(129089,10,'Q04.1 ','Arhinencephaly','Y','0000-00-00 00:00:00'),(129087,10,'Q03.9 ','Congenital hydrocephalus, unspecified','Y','0000-00-00 00:00:00'),(129086,10,'Q03.8 ','Other congenital hydrocephalus','Y','0000-00-00 00:00:00'),(129084,10,'Q03.0 ','Malformations of aqueduct of Sylvius','Y','0000-00-00 00:00:00'),(129085,10,'Q03.1 ','Atresia of foramina of Magendie and Luschka','Y','0000-00-00 00:00:00'),(129083,10,'Q02','Microcephaly','Y','0000-00-00 00:00:00'),(129081,10,'Q01.8 ','Encephalocele of other sites','Y','0000-00-00 00:00:00'),(129082,10,'Q01.9 ','Encephalocele, unspecified','Y','0000-00-00 00:00:00'),(129080,10,'Q01.2 ','Occipital encephalocele','Y','0000-00-00 00:00:00'),(129078,10,'Q01.0 ','Frontal encephalocele','Y','0000-00-00 00:00:00'),(129079,10,'Q01.1 ','Nasofrontal encephalocele','Y','0000-00-00 00:00:00'),(129076,10,'Q00.1 ','Craniorachischisis','Y','0000-00-00 00:00:00'),(129077,10,'Q00.2 ','Iniencephaly','Y','0000-00-00 00:00:00'),(129075,10,'Q00.0 ','Anencephaly','Y','0000-00-00 00:00:00'),(129074,10,'P96.9 ','Condition originating in the perinatal period, unspecified','Y','0000-00-00 00:00:00'),(129073,10,'P96.89 ','Other specified conditions originating in the perinatal period','Y','0000-00-00 00:00:00'),(129071,10,'P96.82 ','Delayed separation of umbilical cord','Y','0000-00-00 00:00:00'),(129072,10,'P96.83 ','Meconium staining','Y','0000-00-00 00:00:00'),(129070,10,'P96.81 ','Exposure to (parental) (environmental) tobacco smoke in the perinatal period','Y','0000-00-00 00:00:00'),(129069,10,'P96.5 ','Complication to newborn due to (fetal) intrauterine procedure','Y','0000-00-00 00:00:00'),(129068,10,'P96.3 ','Wide cranial sutures of newborn','Y','0000-00-00 00:00:00'),(129067,10,'P96.2 ','Withdrawal symptoms from therapeutic use of drugs in newborn','Y','0000-00-00 00:00:00'),(129066,10,'P96.1 ','Neonatal withdrawal symptoms from maternal use of drugs of addiction','Y','0000-00-00 00:00:00'),(129064,10,'P95','Stillbirth','Y','0000-00-00 00:00:00'),(129065,10,'P96.0 ','Congenital renal failure','Y','0000-00-00 00:00:00'),(129063,10,'P94.9 ','Disorder of muscle tone of newborn, unspecified','Y','0000-00-00 00:00:00'),(129061,10,'P94.2 ','Congenital hypotonia','Y','0000-00-00 00:00:00'),(129062,10,'P94.8 ','Other disorders of muscle tone of newborn','Y','0000-00-00 00:00:00'),(129059,10,'P94.0 ','Transient neonatal myasthenia gravis','Y','0000-00-00 00:00:00'),(129060,10,'P94.1 ','Congenital hypertonia','Y','0000-00-00 00:00:00'),(129058,10,'P93.8 ','Other reactions and intoxications due to drugs administered to newborn','Y','0000-00-00 00:00:00'),(129057,10,'P93.0 ','Grey baby syndrome','Y','0000-00-00 00:00:00'),(129055,10,'P92.8 ','Other feeding problems of newborn','Y','0000-00-00 00:00:00'),(129056,10,'P92.9 ','Feeding problem of newborn, unspecified','Y','0000-00-00 00:00:00'),(129054,10,'P92.6 ','Failure to thrive in newborn','Y','0000-00-00 00:00:00'),(129052,10,'P92.4 ','Overfeeding of newborn','Y','0000-00-00 00:00:00'),(129053,10,'P92.5 ','Neonatal difficulty in feeding at breast','Y','0000-00-00 00:00:00'),(129050,10,'P92.2 ','Slow feeding of newborn','Y','0000-00-00 00:00:00'),(129051,10,'P92.3 ','Underfeeding of newborn','Y','0000-00-00 00:00:00'),(129049,10,'P92.1 ','Regurgitation and rumination of newborn','Y','0000-00-00 00:00:00'),(129047,10,'P92.01 ','Bilious vomiting of newborn','Y','0000-00-00 00:00:00'),(129048,10,'P92.09 ','Other vomiting of newborn','Y','0000-00-00 00:00:00'),(129046,10,'P91.9 ','Disturbance of cerebral status of newborn, unspecified','Y','0000-00-00 00:00:00'),(129045,10,'P91.88 ','Other specified disturbances of cerebral status of newborn','Y','0000-00-00 00:00:00'),(129044,10,'P91.829 ','Neonatal cerebral infarction, unspecified side','Y','0000-00-00 00:00:00'),(129043,10,'P91.823 ','Neonatal cerebral infarction, bilateral','Y','0000-00-00 00:00:00'),(129042,10,'P91.822 ','Neonatal cerebral infarction, left side of brain','Y','0000-00-00 00:00:00'),(129041,10,'P91.821 ','Neonatal cerebral infarction, right side of brain','Y','0000-00-00 00:00:00'),(129040,10,'P91.819 ','Neonatal encephalopathy, unspecified','Y','0000-00-00 00:00:00'),(129039,10,'P91.811 ','Neonatal encephalopathy in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(129038,10,'P91.63 ','Severe hypoxic ischemic encephalopathy [HIE]','Y','0000-00-00 00:00:00'),(129036,10,'P91.61 ','Mild hypoxic ischemic encephalopathy [HIE]','Y','0000-00-00 00:00:00'),(129037,10,'P91.62 ','Moderate hypoxic ischemic encephalopathy [HIE]','Y','0000-00-00 00:00:00'),(129035,10,'P91.60 ','Hypoxic ischemic encephalopathy [HIE], unspecified','Y','0000-00-00 00:00:00'),(129034,10,'P91.5 ','Neonatal coma','Y','0000-00-00 00:00:00'),(129032,10,'P91.3 ','Neonatal cerebral irritability','Y','0000-00-00 00:00:00'),(129033,10,'P91.4 ','Neonatal cerebral depression','Y','0000-00-00 00:00:00'),(129031,10,'P91.2 ','Neonatal cerebral leukomalacia','Y','0000-00-00 00:00:00'),(129030,10,'P91.1 ','Acquired periventricular cysts of newborn','Y','0000-00-00 00:00:00'),(129028,10,'P90','Convulsions of newborn','Y','0000-00-00 00:00:00'),(129029,10,'P91.0 ','Neonatal cerebral ischemia','Y','0000-00-00 00:00:00'),(129027,10,'P84','Other problems with newborn','Y','0000-00-00 00:00:00'),(129026,10,'P83.9 ','Condition of the integument specific to newborn, unspecified','Y','0000-00-00 00:00:00'),(129025,10,'P83.88 ','Other specified conditions of integument specific to newborn','Y','0000-00-00 00:00:00'),(129023,10,'P83.6 ','Umbilical polyp of newborn','Y','0000-00-00 00:00:00'),(129024,10,'P83.81 ','Umbilical granuloma','Y','0000-00-00 00:00:00'),(129022,10,'P83.5 ','Congenital hydrocele','Y','0000-00-00 00:00:00'),(129020,10,'P83.39 ','Other edema specific to newborn','Y','0000-00-00 00:00:00'),(129021,10,'P83.4 ','Breast engorgement of newborn','Y','0000-00-00 00:00:00'),(129019,10,'P83.30 ','Unspecified edema specific to newborn','Y','0000-00-00 00:00:00'),(129018,10,'P83.2 ','Hydrops fetalis not due to hemolytic disease','Y','0000-00-00 00:00:00'),(129016,10,'P83.0 ','Sclerema neonatorum','Y','0000-00-00 00:00:00'),(129017,10,'P83.1 ','Neonatal erythema toxicum','Y','0000-00-00 00:00:00'),(129015,10,'P81.9 ','Disturbance of temperature regulation of newborn, unspecified','Y','0000-00-00 00:00:00'),(129013,10,'P81.0 ','Environmental hyperthermia of newborn','Y','0000-00-00 00:00:00'),(129014,10,'P81.8 ','Other specified disturbances of temperature regulation of newborn','Y','0000-00-00 00:00:00'),(129012,10,'P80.9 ','Hypothermia of newborn, unspecified','Y','0000-00-00 00:00:00'),(129010,10,'P80.0 ','Cold injury syndrome','Y','0000-00-00 00:00:00'),(129011,10,'P80.8 ','Other hypothermia of newborn','Y','0000-00-00 00:00:00'),(129009,10,'P78.9 ','Perinatal digestive system disorder, unspecified','Y','0000-00-00 00:00:00'),(129007,10,'P78.84 ','Gestational alloimmune liver disease','Y','0000-00-00 00:00:00'),(129008,10,'P78.89 ','Other specified perinatal digestive system disorders','Y','0000-00-00 00:00:00'),(129006,10,'P78.83 ','Newborn esophageal reflux','Y','0000-00-00 00:00:00'),(129004,10,'P78.81 ','Congenital cirrhosis (of liver)','Y','0000-00-00 00:00:00'),(129005,10,'P78.82 ','Peptic ulcer of newborn','Y','0000-00-00 00:00:00'),(129003,10,'P78.3 ','Noninfective neonatal diarrhea','Y','0000-00-00 00:00:00'),(129002,10,'P78.2 ','Neonatal hematemesis and melena due to swallowed maternal blood','Y','0000-00-00 00:00:00'),(129000,10,'P78.0 ','Perinatal intestinal perforation','Y','0000-00-00 00:00:00'),(129001,10,'P78.1 ','Other neonatal peritonitis','Y','0000-00-00 00:00:00'),(128999,10,'P77.9 ','Necrotizing enterocolitis in newborn, unspecified','Y','0000-00-00 00:00:00'),(128998,10,'P77.3 ','Stage 3 necrotizing enterocolitis in newborn','Y','0000-00-00 00:00:00'),(128997,10,'P77.2 ','Stage 2 necrotizing enterocolitis in newborn','Y','0000-00-00 00:00:00'),(128996,10,'P77.1 ','Stage 1 necrotizing enterocolitis in newborn','Y','0000-00-00 00:00:00'),(128995,10,'P76.9 ','Intestinal obstruction of newborn, unspecified','Y','0000-00-00 00:00:00'),(128994,10,'P76.8 ','Other specified intestinal obstruction of newborn','Y','0000-00-00 00:00:00'),(128993,10,'P76.2 ','Intestinal obstruction due to inspissated milk','Y','0000-00-00 00:00:00'),(128991,10,'P76.0 ','Meconium plug syndrome','Y','0000-00-00 00:00:00'),(128992,10,'P76.1 ','Transitory ileus of newborn','Y','0000-00-00 00:00:00'),(128990,10,'P74.9 ','Transitory metabolic disturbance of newborn, unspecified','Y','0000-00-00 00:00:00'),(128989,10,'P74.8 ','Other transitory metabolic disturbances of newborn','Y','0000-00-00 00:00:00'),(128988,10,'P74.6 ','Transitory hyperammonemia of newborn','Y','0000-00-00 00:00:00'),(128987,10,'P74.5 ','Transitory tyrosinemia of newborn','Y','0000-00-00 00:00:00'),(128986,10,'P74.49 ','Other transitory electrolyte disturbance of newborn','Y','0000-00-00 00:00:00'),(128984,10,'P74.421 ','Hyperchloremia of newborn','Y','0000-00-00 00:00:00'),(128985,10,'P74.422 ','Hypochloremia of newborn','Y','0000-00-00 00:00:00'),(128983,10,'P74.41 ','Alkalosis of newborn','Y','0000-00-00 00:00:00'),(128981,10,'P74.31 ','Hyperkalemia of newborn','Y','0000-00-00 00:00:00'),(128982,10,'P74.32 ','Hypokalemia of newborn','Y','0000-00-00 00:00:00'),(128980,10,'P74.22 ','Hyponatremia of newborn','Y','0000-00-00 00:00:00'),(128978,10,'P74.1 ','Dehydration of newborn','Y','0000-00-00 00:00:00'),(128979,10,'P74.21 ','Hypernatremia of newborn','Y','0000-00-00 00:00:00'),(128977,10,'P74.0 ','Late metabolic acidosis of newborn','Y','0000-00-00 00:00:00'),(128976,10,'P72.9 ','Transitory neonatal endocrine disorder, unspecified','Y','0000-00-00 00:00:00'),(128975,10,'P72.8 ','Other specified transitory neonatal endocrine disorders','Y','0000-00-00 00:00:00'),(128973,10,'P72.1 ','Transitory neonatal hyperthyroidism','Y','0000-00-00 00:00:00'),(128974,10,'P72.2 ','Other transitory neonatal disorders of thyroid function, not elsewhere classified','Y','0000-00-00 00:00:00'),(128972,10,'P72.0 ','Neonatal goiter, not elsewhere classified','Y','0000-00-00 00:00:00'),(128971,10,'P71.9 ','Transitory neonatal disorder of calcium and magnesium metabolism, unspecified','Y','0000-00-00 00:00:00'),(128970,10,'P71.8 ','Other transitory neonatal disorders of calcium and magnesium metabolism','Y','0000-00-00 00:00:00'),(128969,10,'P71.4 ','Transitory neonatal hypoparathyroidism','Y','0000-00-00 00:00:00'),(128968,10,'P71.3 ','Neonatal tetany without calcium or magnesium deficiency','Y','0000-00-00 00:00:00'),(128967,10,'P71.2 ','Neonatal hypomagnesemia','Y','0000-00-00 00:00:00'),(128966,10,'P71.1 ','Other neonatal hypocalcemia','Y','0000-00-00 00:00:00'),(128965,10,'P71.0 ','Cow\'s milk hypocalcemia in newborn','Y','0000-00-00 00:00:00'),(128964,10,'P70.9 ','Transitory disorder of carbohydrate metabolism of newborn, unspecified','Y','0000-00-00 00:00:00'),(128963,10,'P70.8 ','Other transitory disorders of carbohydrate metabolism of newborn','Y','0000-00-00 00:00:00'),(128962,10,'P70.4 ','Other neonatal hypoglycemia','Y','0000-00-00 00:00:00'),(128961,10,'P70.3 ','Iatrogenic neonatal hypoglycemia','Y','0000-00-00 00:00:00'),(128960,10,'P70.2 ','Neonatal diabetes mellitus','Y','0000-00-00 00:00:00'),(128959,10,'P70.1 ','Syndrome of infant of a diabetic mother','Y','0000-00-00 00:00:00'),(128958,10,'P70.0 ','Syndrome of infant of mother with gestational diabetes','Y','0000-00-00 00:00:00'),(128957,10,'P61.9 ','Perinatal hematological disorder, unspecified','Y','0000-00-00 00:00:00'),(128956,10,'P61.8 ','Other specified perinatal hematological disorders','Y','0000-00-00 00:00:00'),(128955,10,'P61.6 ','Other transient neonatal disorders of coagulation','Y','0000-00-00 00:00:00'),(128954,10,'P61.5 ','Transient neonatal neutropenia','Y','0000-00-00 00:00:00'),(128953,10,'P61.4 ','Other congenital anemias, not elsewhere classified','Y','0000-00-00 00:00:00'),(128952,10,'P61.3 ','Congenital anemia from fetal blood loss','Y','0000-00-00 00:00:00'),(128950,10,'P61.1 ','Polycythemia neonatorum','Y','0000-00-00 00:00:00'),(128951,10,'P61.2 ','Anemia of prematurity','Y','0000-00-00 00:00:00'),(128949,10,'P61.0 ','Transient neonatal thrombocytopenia','Y','0000-00-00 00:00:00'),(128948,10,'P60','Disseminated intravascular coagulation of newborn','Y','0000-00-00 00:00:00'),(128947,10,'P59.9 ','Neonatal jaundice, unspecified','Y','0000-00-00 00:00:00'),(128946,10,'P59.8 ','Neonatal jaundice from other specified causes','Y','0000-00-00 00:00:00'),(128945,10,'P59.3 ','Neonatal jaundice from breast milk inhibitor','Y','0000-00-00 00:00:00'),(128944,10,'P59.29 ','Neonatal jaundice from other hepatocellular damage','Y','0000-00-00 00:00:00'),(128942,10,'P59.1 ','Inspissated bile syndrome','Y','0000-00-00 00:00:00'),(128943,10,'P59.20 ','Neonatal jaundice from unspecified hepatocellular damage','Y','0000-00-00 00:00:00'),(128941,10,'P59.0 ','Neonatal jaundice associated with preterm delivery','Y','0000-00-00 00:00:00'),(128940,10,'P58.9 ','Neonatal jaundice due to excessive hemolysis, unspecified','Y','0000-00-00 00:00:00'),(128939,10,'P58.8 ','Neonatal jaundice due to other specified excessive hemolysis','Y','0000-00-00 00:00:00'),(128938,10,'P58.5 ','Neonatal jaundice due to swallowed maternal blood','Y','0000-00-00 00:00:00'),(128937,10,'P58.42 ','Neonatal jaundice due to drugs or toxins given to newborn','Y','0000-00-00 00:00:00'),(128936,10,'P58.41 ','Neonatal jaundice due to drugs or toxins transmitted from mother','Y','0000-00-00 00:00:00'),(128935,10,'P58.3 ','Neonatal jaundice due to polycythemia','Y','0000-00-00 00:00:00'),(128934,10,'P58.2 ','Neonatal jaundice due to infection','Y','0000-00-00 00:00:00'),(128933,10,'P58.1 ','Neonatal jaundice due to bleeding','Y','0000-00-00 00:00:00'),(128932,10,'P58.0 ','Neonatal jaundice due to bruising','Y','0000-00-00 00:00:00'),(128930,10,'P57.8 ','Other specified kernicterus','Y','0000-00-00 00:00:00'),(128931,10,'P57.9 ','Kernicterus, unspecified','Y','0000-00-00 00:00:00'),(128929,10,'P57.0 ','Kernicterus due to isoimmunization','Y','0000-00-00 00:00:00'),(128928,10,'P56.99 ','Hydrops fetalis due to other hemolytic disease','Y','0000-00-00 00:00:00'),(128927,10,'P56.90 ','Hydrops fetalis due to unspecified hemolytic disease','Y','0000-00-00 00:00:00'),(128926,10,'P56.0 ','Hydrops fetalis due to isoimmunization','Y','0000-00-00 00:00:00'),(128925,10,'P55.9 ','Hemolytic disease of newborn, unspecified','Y','0000-00-00 00:00:00'),(128924,10,'P55.8 ','Other hemolytic diseases of newborn','Y','0000-00-00 00:00:00'),(128922,10,'P55.0 ','Rh isoimmunization of newborn','Y','0000-00-00 00:00:00'),(128923,10,'P55.1 ','ABO isoimmunization of newborn','Y','0000-00-00 00:00:00'),(128921,10,'P54.9 ','Neonatal hemorrhage, unspecified','Y','0000-00-00 00:00:00'),(128920,10,'P54.8 ','Other specified neonatal hemorrhages','Y','0000-00-00 00:00:00'),(128919,10,'P54.6 ','Neonatal vaginal hemorrhage','Y','0000-00-00 00:00:00'),(128918,10,'P54.5 ','Neonatal cutaneous hemorrhage','Y','0000-00-00 00:00:00'),(128917,10,'P54.4 ','Neonatal adrenal hemorrhage','Y','0000-00-00 00:00:00'),(128915,10,'P54.2 ','Neonatal rectal hemorrhage','Y','0000-00-00 00:00:00'),(128916,10,'P54.3 ','Other neonatal gastrointestinal hemorrhage','Y','0000-00-00 00:00:00'),(128914,10,'P54.1 ','Neonatal melena','Y','0000-00-00 00:00:00'),(128912,10,'P53','Hemorrhagic disease of newborn','Y','0000-00-00 00:00:00'),(128913,10,'P54.0 ','Neonatal hematemesis','Y','0000-00-00 00:00:00'),(128911,10,'P52.9 ','Intracranial (nontraumatic) hemorrhage of newborn, unspecified','Y','0000-00-00 00:00:00'),(128910,10,'P52.8 ','Other intracranial (nontraumatic) hemorrhages of newborn','Y','0000-00-00 00:00:00'),(128909,10,'P52.6 ','Cerebellar (nontraumatic) and posterior fossa hemorrhage of newborn','Y','0000-00-00 00:00:00'),(128908,10,'P52.5 ','Subarachnoid (nontraumatic) hemorrhage of newborn','Y','0000-00-00 00:00:00'),(128907,10,'P52.4 ','Intracerebral (nontraumatic) hemorrhage of newborn','Y','0000-00-00 00:00:00'),(128906,10,'P52.3 ','Unspecified intraventricular (nontraumatic) hemorrhage of newborn','Y','0000-00-00 00:00:00'),(128905,10,'P52.22 ','Intraventricular (nontraumatic) hemorrhage, grade 4, of newborn','Y','0000-00-00 00:00:00'),(128904,10,'P52.21 ','Intraventricular (nontraumatic) hemorrhage, grade 3, of newborn','Y','0000-00-00 00:00:00'),(128903,10,'P52.1 ','Intraventricular (nontraumatic) hemorrhage, grade 2, of newborn','Y','0000-00-00 00:00:00'),(128902,10,'P52.0 ','Intraventricular (nontraumatic) hemorrhage, grade 1, of newborn','Y','0000-00-00 00:00:00'),(128900,10,'P51.8 ','Other umbilical hemorrhages of newborn','Y','0000-00-00 00:00:00'),(128901,10,'P51.9 ','Umbilical hemorrhage of newborn, unspecified','Y','0000-00-00 00:00:00'),(128899,10,'P51.0 ','Massive umbilical hemorrhage of newborn','Y','0000-00-00 00:00:00'),(128898,10,'P50.9 ','Newborn affected by intrauterine (fetal) blood loss, unspecified','Y','0000-00-00 00:00:00'),(128897,10,'P50.8 ','Newborn affected by other intrauterine (fetal) blood loss','Y','0000-00-00 00:00:00'),(128896,10,'P50.5 ','Newborn affected by intrauterine (fetal) blood loss from cut end of co-twin\'s cord','Y','0000-00-00 00:00:00'),(128895,10,'P50.4 ','Newborn affected by hemorrhage into maternal circulation','Y','0000-00-00 00:00:00'),(128894,10,'P50.3 ','Newborn affected by hemorrhage into co-twin','Y','0000-00-00 00:00:00'),(128893,10,'P50.2 ','Newborn affected by intrauterine (fetal) blood loss from placenta','Y','0000-00-00 00:00:00'),(128892,10,'P50.1 ','Newborn affected by intrauterine (fetal) blood loss from ruptured cord','Y','0000-00-00 00:00:00'),(128891,10,'P50.0 ','Newborn affected by intrauterine (fetal) blood loss from vasa previa','Y','0000-00-00 00:00:00'),(128890,10,'P39.9 ','Infection specific to the perinatal period, unspecified','Y','0000-00-00 00:00:00'),(128888,10,'P39.4 ','Neonatal skin infection','Y','0000-00-00 00:00:00'),(128889,10,'P39.8 ','Other specified infections specific to the perinatal period','Y','0000-00-00 00:00:00'),(128887,10,'P39.3 ','Neonatal urinary tract infection','Y','0000-00-00 00:00:00'),(128886,10,'P39.2 ','Intra-amniotic infection affecting newborn, not elsewhere classified','Y','0000-00-00 00:00:00'),(128885,10,'P39.1 ','Neonatal conjunctivitis and dacryocystitis','Y','0000-00-00 00:00:00'),(128884,10,'P39.0 ','Neonatal infective mastitis','Y','0000-00-00 00:00:00'),(128883,10,'P38.9 ','Omphalitis without hemorrhage','Y','0000-00-00 00:00:00'),(128882,10,'P38.1 ','Omphalitis with mild hemorrhage','Y','0000-00-00 00:00:00'),(128881,10,'P37.9 ','Congenital infectious or parasitic disease, unspecified','Y','0000-00-00 00:00:00'),(128880,10,'P37.8 ','Other specified congenital infectious and parasitic diseases','Y','0000-00-00 00:00:00'),(128879,10,'P37.5 ','Neonatal candidiasis','Y','0000-00-00 00:00:00'),(128878,10,'P37.4 ','Other congenital malaria','Y','0000-00-00 00:00:00'),(128877,10,'P37.3 ','Congenital falciparum malaria','Y','0000-00-00 00:00:00'),(128876,10,'P37.2 ','Neonatal (disseminated) listeriosis','Y','0000-00-00 00:00:00'),(128875,10,'P37.1 ','Congenital toxoplasmosis','Y','0000-00-00 00:00:00'),(128874,10,'P37.0 ','Congenital tuberculosis','Y','0000-00-00 00:00:00'),(128872,10,'P36.8 ','Other bacterial sepsis of newborn','Y','0000-00-00 00:00:00'),(128873,10,'P36.9 ','Bacterial sepsis of newborn, unspecified','Y','0000-00-00 00:00:00'),(128871,10,'P36.5 ','Sepsis of newborn due to anaerobes','Y','0000-00-00 00:00:00'),(128870,10,'P36.4 ','Sepsis of newborn due to Escherichia coli','Y','0000-00-00 00:00:00'),(128869,10,'P36.39 ','Sepsis of newborn due to other staphylococci','Y','0000-00-00 00:00:00'),(128868,10,'P36.30 ','Sepsis of newborn due to unspecified staphylococci','Y','0000-00-00 00:00:00'),(128867,10,'P36.2 ','Sepsis of newborn due to Staphylococcus aureus','Y','0000-00-00 00:00:00'),(128866,10,'P36.19 ','Sepsis of newborn due to other streptococci','Y','0000-00-00 00:00:00'),(128865,10,'P36.10 ','Sepsis of newborn due to unspecified streptococci','Y','0000-00-00 00:00:00'),(128863,10,'P35.9 ','Congenital viral disease, unspecified','Y','0000-00-00 00:00:00'),(128864,10,'P36.0 ','Sepsis of newborn due to streptococcus, group B','Y','0000-00-00 00:00:00'),(128862,10,'P35.8 ','Other congenital viral diseases','Y','0000-00-00 00:00:00'),(128861,10,'P35.4 ','Congenital Zika virus disease','Y','0000-00-00 00:00:00'),(128860,10,'P35.3 ','Congenital viral hepatitis','Y','0000-00-00 00:00:00'),(128859,10,'P35.2 ','Congenital herpesviral [herpes simplex] infection','Y','0000-00-00 00:00:00'),(128857,10,'P35.0 ','Congenital rubella syndrome','Y','0000-00-00 00:00:00'),(128858,10,'P35.1 ','Congenital cytomegalovirus infection','Y','0000-00-00 00:00:00'),(128856,10,'P29.9 ','Cardiovascular disorder originating in the perinatal period, unspecified','Y','0000-00-00 00:00:00'),(128855,10,'P29.89 ','Other cardiovascular disorders originating in the perinatal period','Y','0000-00-00 00:00:00'),(128853,10,'P29.4 ','Transient myocardial ischemia in newborn','Y','0000-00-00 00:00:00'),(128854,10,'P29.81 ','Cardiac arrest of newborn','Y','0000-00-00 00:00:00'),(128852,10,'P29.38 ','Other persistent fetal circulation','Y','0000-00-00 00:00:00'),(128850,10,'P29.2 ','Neonatal hypertension','Y','0000-00-00 00:00:00'),(128851,10,'P29.30 ','Pulmonary hypertension of newborn','Y','0000-00-00 00:00:00'),(128849,10,'P29.12 ','Neonatal bradycardia','Y','0000-00-00 00:00:00'),(128847,10,'P29.0 ','Neonatal cardiac failure','Y','0000-00-00 00:00:00'),(128848,10,'P29.11 ','Neonatal tachycardia','Y','0000-00-00 00:00:00'),(128846,10,'P28.9 ','Respiratory condition of newborn, unspecified','Y','0000-00-00 00:00:00'),(128845,10,'P28.89 ','Other specified respiratory conditions of newborn','Y','0000-00-00 00:00:00'),(128844,10,'P28.81 ','Respiratory arrest of newborn','Y','0000-00-00 00:00:00'),(128843,10,'P28.5 ','Respiratory failure of newborn','Y','0000-00-00 00:00:00'),(128841,10,'P28.43 ','Mixed neonatal apnea of newborn','Y','0000-00-00 00:00:00'),(128842,10,'P28.49 ','Other apnea of newborn','Y','0000-00-00 00:00:00'),(128840,10,'P28.42 ','Obstructive apnea of newborn','Y','0000-00-00 00:00:00'),(128839,10,'P28.41 ','Central neonatal apnea of newborn','Y','0000-00-00 00:00:00'),(128838,10,'P28.40 ','Unspecified apnea of newborn','Y','0000-00-00 00:00:00'),(128837,10,'P28.39 ','Other primary sleep apnea of newborn','Y','0000-00-00 00:00:00'),(128836,10,'P28.33 ','Primary mixed sleep apnea of newborn','Y','0000-00-00 00:00:00'),(128835,10,'P28.32 ','Primary obstructive sleep apnea of newborn','Y','0000-00-00 00:00:00'),(128834,10,'P28.31 ','Primary central sleep apnea of newborn','Y','0000-00-00 00:00:00'),(128833,10,'P28.30 ','Primary sleep apnea of newborn, unspecified','Y','0000-00-00 00:00:00'),(128832,10,'P28.2 ','Cyanotic attacks of newborn','Y','0000-00-00 00:00:00'),(128831,10,'P28.19 ','Other atelectasis of newborn','Y','0000-00-00 00:00:00'),(128830,10,'P28.11 ','Resorption atelectasis without respiratory distress syndrome','Y','0000-00-00 00:00:00'),(128828,10,'P28.0 ','Primary atelectasis of newborn','Y','0000-00-00 00:00:00'),(128829,10,'P28.10 ','Unspecified atelectasis of newborn','Y','0000-00-00 00:00:00'),(128827,10,'P27.9 ','Unspecified chronic respiratory disease originating in the perinatal period','Y','0000-00-00 00:00:00'),(128826,10,'P27.8 ','Other chronic respiratory diseases originating in the perinatal period','Y','0000-00-00 00:00:00'),(128825,10,'P27.1 ','Bronchopulmonary dysplasia originating in the perinatal period','Y','0000-00-00 00:00:00'),(128824,10,'P27.0 ','Wilson-Mikity syndrome','Y','0000-00-00 00:00:00'),(128823,10,'P26.9 ','Unspecified pulmonary hemorrhage originating in the perinatal period','Y','0000-00-00 00:00:00'),(128822,10,'P26.8 ','Other pulmonary hemorrhages originating in the perinatal period','Y','0000-00-00 00:00:00'),(128821,10,'P26.1 ','Massive pulmonary hemorrhage originating in the perinatal period','Y','0000-00-00 00:00:00'),(128820,10,'P26.0 ','Tracheobronchial hemorrhage originating in the perinatal period','Y','0000-00-00 00:00:00'),(128819,10,'P25.8 ','Other conditions related to interstitial emphysema originating in the perinatal period','Y','0000-00-00 00:00:00'),(128818,10,'P25.3 ','Pneumopericardium originating in the perinatal period','Y','0000-00-00 00:00:00'),(128817,10,'P25.2 ','Pneumomediastinum originating in the perinatal period','Y','0000-00-00 00:00:00'),(128816,10,'P25.1 ','Pneumothorax originating in the perinatal period','Y','0000-00-00 00:00:00'),(128815,10,'P25.0 ','Interstitial emphysema originating in the perinatal period','Y','0000-00-00 00:00:00'),(128814,10,'P24.9 ','Neonatal aspiration, unspecified','Y','0000-00-00 00:00:00'),(128813,10,'P24.81 ','Other neonatal aspiration with respiratory symptoms','Y','0000-00-00 00:00:00'),(128812,10,'P24.80 ','Other neonatal aspiration without respiratory symptoms','Y','0000-00-00 00:00:00'),(128811,10,'P24.31 ','Neonatal aspiration of milk and regurgitated food with respiratory symptoms','Y','0000-00-00 00:00:00'),(128810,10,'P24.30 ','Neonatal aspiration of milk and regurgitated food without respiratory symptoms','Y','0000-00-00 00:00:00'),(128809,10,'P24.21 ','Neonatal aspiration of blood with respiratory symptoms','Y','0000-00-00 00:00:00'),(128808,10,'P24.20 ','Neonatal aspiration of blood without respiratory symptoms','Y','0000-00-00 00:00:00'),(128807,10,'P24.11 ','Neonatal aspiration of (clear) amniotic fluid and mucus with respiratory symptoms','Y','0000-00-00 00:00:00'),(128806,10,'P24.10 ','Neonatal aspiration of (clear) amniotic fluid and mucus without respiratory symptoms','Y','0000-00-00 00:00:00'),(128805,10,'P24.01 ','Meconium aspiration with respiratory symptoms','Y','0000-00-00 00:00:00'),(128803,10,'P23.9 ','Congenital pneumonia, unspecified','Y','0000-00-00 00:00:00'),(128804,10,'P24.00 ','Meconium aspiration without respiratory symptoms','Y','0000-00-00 00:00:00'),(128802,10,'P23.8 ','Congenital pneumonia due to other organisms','Y','0000-00-00 00:00:00'),(128801,10,'P23.6 ','Congenital pneumonia due to other bacterial agents','Y','0000-00-00 00:00:00'),(128800,10,'P23.5 ','Congenital pneumonia due to Pseudomonas','Y','0000-00-00 00:00:00'),(128799,10,'P23.4 ','Congenital pneumonia due to Escherichia coli','Y','0000-00-00 00:00:00'),(128798,10,'P23.3 ','Congenital pneumonia due to streptococcus, group B','Y','0000-00-00 00:00:00'),(128797,10,'P23.2 ','Congenital pneumonia due to staphylococcus','Y','0000-00-00 00:00:00'),(128796,10,'P23.1 ','Congenital pneumonia due to Chlamydia','Y','0000-00-00 00:00:00'),(128795,10,'P23.0 ','Congenital pneumonia due to viral agent','Y','0000-00-00 00:00:00'),(128793,10,'P22.8 ','Other respiratory distress of newborn','Y','0000-00-00 00:00:00'),(128794,10,'P22.9 ','Respiratory distress of newborn, unspecified','Y','0000-00-00 00:00:00'),(128792,10,'P22.1 ','Transient tachypnea of newborn','Y','0000-00-00 00:00:00'),(128791,10,'P22.0 ','Respiratory distress syndrome of newborn','Y','0000-00-00 00:00:00'),(128790,10,'P19.9 ','Metabolic acidemia in newborn, unspecified','Y','0000-00-00 00:00:00'),(128789,10,'P19.2 ','Metabolic acidemia noted at birth','Y','0000-00-00 00:00:00'),(128788,10,'P19.1 ','Metabolic acidemia in newborn first noted during labor','Y','0000-00-00 00:00:00'),(128787,10,'P19.0 ','Metabolic acidemia in newborn first noted before onset of labor','Y','0000-00-00 00:00:00'),(128786,10,'P15.9 ','Birth injury, unspecified','Y','0000-00-00 00:00:00'),(128785,10,'P15.8 ','Other specified birth injuries','Y','0000-00-00 00:00:00'),(128784,10,'P15.6 ','Subcutaneous fat necrosis due to birth injury','Y','0000-00-00 00:00:00'),(128782,10,'P15.4 ','Birth injury to face','Y','0000-00-00 00:00:00'),(128783,10,'P15.5 ','Birth injury to external genitalia','Y','0000-00-00 00:00:00'),(128781,10,'P15.3 ','Birth injury to eye','Y','0000-00-00 00:00:00'),(128779,10,'P15.1 ','Birth injury to spleen','Y','0000-00-00 00:00:00'),(128780,10,'P15.2 ','Sternomastoid injury due to birth injury','Y','0000-00-00 00:00:00'),(128778,10,'P15.0 ','Birth injury to liver','Y','0000-00-00 00:00:00'),(128777,10,'P14.9 ','Birth injury to peripheral nervous system, unspecified','Y','0000-00-00 00:00:00'),(128776,10,'P14.8 ','Birth injuries to other parts of peripheral nervous system','Y','0000-00-00 00:00:00'),(128775,10,'P14.3 ','Other brachial plexus birth injuries','Y','0000-00-00 00:00:00'),(128773,10,'P14.1 ','Klumpke\'s paralysis due to birth injury','Y','0000-00-00 00:00:00'),(128774,10,'P14.2 ','Phrenic nerve paralysis due to birth injury','Y','0000-00-00 00:00:00'),(128772,10,'P14.0 ','Erb\'s paralysis due to birth injury','Y','0000-00-00 00:00:00'),(128771,10,'P13.9 ','Birth injury to skeleton, unspecified','Y','0000-00-00 00:00:00'),(128770,10,'P13.8 ','Birth injuries to other parts of skeleton','Y','0000-00-00 00:00:00'),(128768,10,'P13.3 ','Birth injury to other long bones','Y','0000-00-00 00:00:00'),(128769,10,'P13.4 ','Fracture of clavicle due to birth injury','Y','0000-00-00 00:00:00'),(128767,10,'P13.2 ','Birth injury to femur','Y','0000-00-00 00:00:00'),(128766,10,'P13.1 ','Other birth injuries to skull','Y','0000-00-00 00:00:00'),(128765,10,'P13.0 ','Fracture of skull due to birth injury','Y','0000-00-00 00:00:00'),(128764,10,'P12.9 ','Birth injury to scalp, unspecified','Y','0000-00-00 00:00:00'),(128762,10,'P12.81 ','Caput succedaneum','Y','0000-00-00 00:00:00'),(128763,10,'P12.89 ','Other birth injuries to scalp','Y','0000-00-00 00:00:00'),(128761,10,'P12.4 ','Injury of scalp of newborn due to monitoring equipment','Y','0000-00-00 00:00:00'),(128760,10,'P12.3 ','Bruising of scalp due to birth injury','Y','0000-00-00 00:00:00'),(128759,10,'P12.2 ','Epicranial subaponeurotic hemorrhage due to birth injury','Y','0000-00-00 00:00:00'),(128758,10,'P12.1 ','Chignon (from vacuum extraction) due to birth injury','Y','0000-00-00 00:00:00'),(128757,10,'P12.0 ','Cephalhematoma due to birth injury','Y','0000-00-00 00:00:00'),(128756,10,'P11.9 ','Birth injury to central nervous system, unspecified','Y','0000-00-00 00:00:00'),(128755,10,'P11.5 ','Birth injury to spine and spinal cord','Y','0000-00-00 00:00:00'),(128753,10,'P11.3 ','Birth injury to facial nerve','Y','0000-00-00 00:00:00'),(128754,10,'P11.4 ','Birth injury to other cranial nerves','Y','0000-00-00 00:00:00'),(128752,10,'P11.2 ','Unspecified brain damage due to birth injury','Y','0000-00-00 00:00:00'),(128750,10,'P11.0 ','Cerebral edema due to birth injury','Y','0000-00-00 00:00:00'),(128751,10,'P11.1 ','Other specified brain damage due to birth injury','Y','0000-00-00 00:00:00'),(128749,10,'P10.9 ','Unspecified intracranial laceration and hemorrhage due to birth injury','Y','0000-00-00 00:00:00'),(128748,10,'P10.8 ','Other intracranial lacerations and hemorrhages due to birth injury','Y','0000-00-00 00:00:00'),(128747,10,'P10.4 ','Tentorial tear due to birth injury','Y','0000-00-00 00:00:00'),(128746,10,'P10.3 ','Subarachnoid hemorrhage due to birth injury','Y','0000-00-00 00:00:00'),(128745,10,'P10.2 ','Intraventricular hemorrhage due to birth injury','Y','0000-00-00 00:00:00'),(128744,10,'P10.1 ','Cerebral hemorrhage due to birth injury','Y','0000-00-00 00:00:00'),(128743,10,'P10.0 ','Subdural hemorrhage due to birth injury','Y','0000-00-00 00:00:00'),(128742,10,'P09.9 ','Abnormal findings on neonatal screening, unspecified','Y','0000-00-00 00:00:00'),(128741,10,'P09.8 ','Other abnormal findings on neonatal screening','Y','0000-00-00 00:00:00'),(128740,10,'P09.6 ','Abnormal findings on neonatal screening for neonatal hearing loss','Y','0000-00-00 00:00:00'),(128739,10,'P09.5 ','Abnormal findings on neonatal screening for critical congenital heart disease','Y','0000-00-00 00:00:00'),(128738,10,'P09.4 ','Abnormal findings on neonatal screening for cystic fibrosis','Y','0000-00-00 00:00:00'),(128737,10,'P09.3 ','Abnormal findings on neonatal screening for congenital hematologic disorders','Y','0000-00-00 00:00:00'),(128736,10,'P09.2 ','Abnormal findings on neonatal screening for congenital endocrine disease','Y','0000-00-00 00:00:00'),(128735,10,'P09.1 ','Abnormal findings on neonatal screening for inborn errors of metabolism','Y','0000-00-00 00:00:00'),(128733,10,'P08.21 ','Post-term newborn','Y','0000-00-00 00:00:00'),(128734,10,'P08.22 ','Prolonged gestation of newborn','Y','0000-00-00 00:00:00'),(128732,10,'P08.1 ','Other heavy for gestational age newborn','Y','0000-00-00 00:00:00'),(128731,10,'P08.0 ','Exceptionally large newborn baby','Y','0000-00-00 00:00:00'),(128730,10,'P07.39 ','Preterm newborn, gestational age 36 completed weeks','Y','0000-00-00 00:00:00'),(128729,10,'P07.38 ','Preterm newborn, gestational age 35 completed weeks','Y','0000-00-00 00:00:00'),(128728,10,'P07.37 ','Preterm newborn, gestational age 34 completed weeks','Y','0000-00-00 00:00:00'),(128727,10,'P07.36 ','Preterm newborn, gestational age 33 completed weeks','Y','0000-00-00 00:00:00'),(128726,10,'P07.35 ','Preterm newborn, gestational age 32 completed weeks','Y','0000-00-00 00:00:00'),(128725,10,'P07.34 ','Preterm newborn, gestational age 31 completed weeks','Y','0000-00-00 00:00:00'),(128724,10,'P07.33 ','Preterm newborn, gestational age 30 completed weeks','Y','0000-00-00 00:00:00'),(128723,10,'P07.32 ','Preterm newborn, gestational age 29 completed weeks','Y','0000-00-00 00:00:00'),(128722,10,'P07.31 ','Preterm newborn, gestational age 28 completed weeks','Y','0000-00-00 00:00:00'),(128721,10,'P07.30 ','Preterm newborn, unspecified weeks of gestation','Y','0000-00-00 00:00:00'),(128720,10,'P07.26 ','Extreme immaturity of newborn, gestational age 27 completed weeks','Y','0000-00-00 00:00:00'),(128719,10,'P07.25 ','Extreme immaturity of newborn, gestational age 26 completed weeks','Y','0000-00-00 00:00:00'),(128718,10,'P07.24 ','Extreme immaturity of newborn, gestational age 25 completed weeks','Y','0000-00-00 00:00:00'),(128717,10,'P07.23 ','Extreme immaturity of newborn, gestational age 24 completed weeks','Y','0000-00-00 00:00:00'),(128716,10,'P07.22 ','Extreme immaturity of newborn, gestational age 23 completed weeks','Y','0000-00-00 00:00:00'),(128715,10,'P07.21 ','Extreme immaturity of newborn, gestational age less than 23 completed weeks','Y','0000-00-00 00:00:00'),(128714,10,'P07.20 ','Extreme immaturity of newborn, unspecified weeks of gestation','Y','0000-00-00 00:00:00'),(128713,10,'P07.18 ','Other low birth weight newborn, 2000-2499 grams','Y','0000-00-00 00:00:00'),(128712,10,'P07.17 ','Other low birth weight newborn, 1750-1999 grams','Y','0000-00-00 00:00:00'),(128711,10,'P07.16 ','Other low birth weight newborn, 1500-1749 grams','Y','0000-00-00 00:00:00'),(128710,10,'P07.15 ','Other low birth weight newborn, 1250-1499 grams','Y','0000-00-00 00:00:00'),(128709,10,'P07.14 ','Other low birth weight newborn, 1000-1249 grams','Y','0000-00-00 00:00:00'),(128708,10,'P07.10 ','Other low birth weight newborn, unspecified weight','Y','0000-00-00 00:00:00'),(128707,10,'P07.03 ','Extremely low birth weight newborn, 750-999 grams','Y','0000-00-00 00:00:00'),(128706,10,'P07.02 ','Extremely low birth weight newborn, 500-749 grams','Y','0000-00-00 00:00:00'),(128705,10,'P07.01 ','Extremely low birth weight newborn, less than 500 grams','Y','0000-00-00 00:00:00'),(128704,10,'P07.00 ','Extremely low birth weight newborn, unspecified weight','Y','0000-00-00 00:00:00'),(128703,10,'P05.9 ','Newborn affected by slow intrauterine growth, unspecified','Y','0000-00-00 00:00:00'),(128702,10,'P05.2 ','Newborn affected by fetal (intrauterine) malnutrition not light or small for gestational age','Y','0000-00-00 00:00:00'),(128701,10,'P05.19 ','Newborn small for gestational age, other','Y','0000-00-00 00:00:00'),(128700,10,'P05.18 ','Newborn small for gestational age, 2000-2499 grams','Y','0000-00-00 00:00:00'),(128699,10,'P05.17 ','Newborn small for gestational age, 1750-1999 grams','Y','0000-00-00 00:00:00'),(128698,10,'P05.16 ','Newborn small for gestational age, 1500-1749 grams','Y','0000-00-00 00:00:00'),(128697,10,'P05.15 ','Newborn small for gestational age, 1250-1499 grams','Y','0000-00-00 00:00:00'),(128696,10,'P05.14 ','Newborn small for gestational age, 1000-1249 grams','Y','0000-00-00 00:00:00'),(128695,10,'P05.13 ','Newborn small for gestational age, 750-999 grams','Y','0000-00-00 00:00:00'),(128694,10,'P05.12 ','Newborn small for gestational age, 500-749 grams','Y','0000-00-00 00:00:00'),(128693,10,'P05.11 ','Newborn small for gestational age, less than 500 grams','Y','0000-00-00 00:00:00'),(128692,10,'P05.10 ','Newborn small for gestational age, unspecified weight','Y','0000-00-00 00:00:00'),(128691,10,'P05.09 ','Newborn light for gestational age, 2500 grams and over','Y','0000-00-00 00:00:00'),(128690,10,'P05.08 ','Newborn light for gestational age, 2000-2499 grams','Y','0000-00-00 00:00:00'),(128688,10,'P05.06 ','Newborn light for gestational age, 1500-1749 grams','Y','0000-00-00 00:00:00'),(128689,10,'P05.07 ','Newborn light for gestational age, 1750-1999 grams','Y','0000-00-00 00:00:00'),(128687,10,'P05.05 ','Newborn light for gestational age, 1250-1499 grams','Y','0000-00-00 00:00:00'),(128686,10,'P05.04 ','Newborn light for gestational age, 1000-1249 grams','Y','0000-00-00 00:00:00'),(128685,10,'P05.03 ','Newborn light for gestational age, 750-999 grams','Y','0000-00-00 00:00:00'),(128684,10,'P05.02 ','Newborn light for gestational age, 500-749 grams','Y','0000-00-00 00:00:00'),(128683,10,'P05.01 ','Newborn light for gestational age, less than 500 grams','Y','0000-00-00 00:00:00'),(128681,10,'P04.9 ','Newborn affected by maternal noxious substance, unspecified','Y','0000-00-00 00:00:00'),(128682,10,'P05.00 ','Newborn light for gestational age, unspecified weight','Y','0000-00-00 00:00:00'),(128680,10,'P04.89 ','Newborn affected by other maternal noxious substances','Y','0000-00-00 00:00:00'),(128679,10,'P04.81 ','Newborn affected by maternal use of cannabis','Y','0000-00-00 00:00:00'),(128678,10,'P04.6 ','Newborn affected by maternal exposure to environmental chemical substances','Y','0000-00-00 00:00:00'),(128677,10,'P04.5 ','Newborn affected by maternal use of nutritional chemical substances','Y','0000-00-00 00:00:00'),(128676,10,'P04.49 ','Newborn affected by maternal use of other drugs of addiction','Y','0000-00-00 00:00:00'),(128675,10,'P04.42 ','Newborn affected by maternal use of hallucinogens','Y','0000-00-00 00:00:00'),(128674,10,'P04.41 ','Newborn affected by maternal use of cocaine','Y','0000-00-00 00:00:00'),(128672,10,'P04.3 ','Newborn affected by maternal use of alcohol','Y','0000-00-00 00:00:00'),(128673,10,'P04.40 ','Newborn affected by maternal use of unspecified drugs of addiction','Y','0000-00-00 00:00:00'),(128671,10,'P04.2 ','Newborn affected by maternal use of tobacco','Y','0000-00-00 00:00:00'),(128670,10,'P04.19 ','Newborn affected by maternal use of unspecified medication','Y','0000-00-00 00:00:00'),(128669,10,'P04.18 ','Newborn affected by other maternal medication','Y','0000-00-00 00:00:00'),(128668,10,'P04.1A ','Newborn affected by maternal use of anxiolytics','Y','0000-00-00 00:00:00'),(128667,10,'P04.17 ','Newborn affected by maternal use of sedative-hypnotics','Y','0000-00-00 00:00:00'),(128665,10,'P04.15 ','Newborn affected by maternal use of antidepressants','Y','0000-00-00 00:00:00'),(128666,10,'P04.16 ','Newborn affected by maternal use of amphetamines','Y','0000-00-00 00:00:00'),(128664,10,'P04.14 ','Newborn affected by maternal use of opiates','Y','0000-00-00 00:00:00'),(128663,10,'P04.13 ','Newborn affected by maternal use of anticonvulsants','Y','0000-00-00 00:00:00'),(128661,10,'P04.11 ','Newborn affected by maternal antineoplastic chemotherapy','Y','0000-00-00 00:00:00'),(128662,10,'P04.12 ','Newborn affected by maternal cytotoxic drugs','Y','0000-00-00 00:00:00'),(128660,10,'P04.0 ','Newborn affected by maternal anesthesia and analgesia in pregnancy, labor and delivery','Y','0000-00-00 00:00:00'),(128659,10,'P03.9 ','Newborn affected by complication of labor and delivery, unspecified','Y','0000-00-00 00:00:00'),(128658,10,'P03.89 ','Newborn affected by other specified complications of labor and delivery','Y','0000-00-00 00:00:00'),(128657,10,'P03.82 ','Meconium passage during delivery','Y','0000-00-00 00:00:00'),(128656,10,'P03.819 ','Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm, unspecified as to time of onset','Y','0000-00-00 00:00:00'),(128655,10,'P03.811 ','Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm during labor','Y','0000-00-00 00:00:00'),(128654,10,'P03.810 ','Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm before the onset of labor','Y','0000-00-00 00:00:00'),(128653,10,'P03.6 ','Newborn affected by abnormal uterine contractions','Y','0000-00-00 00:00:00'),(128651,10,'P03.4 ','Newborn affected by Cesarean delivery','Y','0000-00-00 00:00:00'),(128652,10,'P03.5 ','Newborn affected by precipitate delivery','Y','0000-00-00 00:00:00'),(128650,10,'P03.3 ','Newborn affected by delivery by vacuum extractor [ventouse]','Y','0000-00-00 00:00:00'),(128649,10,'P03.2 ','Newborn affected by forceps delivery','Y','0000-00-00 00:00:00'),(128648,10,'P03.1 ','Newborn affected by other malpresentation, malposition and disproportion during labor and delivery','Y','0000-00-00 00:00:00'),(128647,10,'P03.0 ','Newborn affected by breech delivery and extraction','Y','0000-00-00 00:00:00'),(128646,10,'P02.9 ','Newborn affected by abnormality of membranes, unspecified','Y','0000-00-00 00:00:00'),(128645,10,'P02.8 ','Newborn affected by other abnormalities of membranes','Y','0000-00-00 00:00:00'),(128644,10,'P02.78 ','Newborn affected by other conditions from chorioamnionitis','Y','0000-00-00 00:00:00'),(128643,10,'P02.70 ','Newborn affected by fetal inflammatory response syndrome','Y','0000-00-00 00:00:00'),(128642,10,'P02.69 ','Newborn affected by other conditions of umbilical cord','Y','0000-00-00 00:00:00'),(128641,10,'P02.60 ','Newborn affected by unspecified conditions of umbilical cord','Y','0000-00-00 00:00:00'),(128639,10,'P02.4 ','Newborn affected by prolapsed cord','Y','0000-00-00 00:00:00'),(128640,10,'P02.5 ','Newborn affected by other compression of umbilical cord','Y','0000-00-00 00:00:00'),(128638,10,'P02.3 ','Newborn affected by placental transfusion syndromes','Y','0000-00-00 00:00:00'),(128637,10,'P02.29 ','Newborn affected by other morphological and functional abnormalities of placenta','Y','0000-00-00 00:00:00'),(128636,10,'P02.20 ','Newborn affected by unspecified morphological and functional abnormalities of placenta','Y','0000-00-00 00:00:00'),(128634,10,'P02.0 ','Newborn affected by placenta previa','Y','0000-00-00 00:00:00'),(128635,10,'P02.1 ','Newborn affected by other forms of placental separation and hemorrhage','Y','0000-00-00 00:00:00'),(128633,10,'P01.9 ','Newborn affected by maternal complication of pregnancy, unspecified','Y','0000-00-00 00:00:00'),(128632,10,'P01.8 ','Newborn affected by other maternal complications of pregnancy','Y','0000-00-00 00:00:00'),(128631,10,'P01.7 ','Newborn affected by malpresentation before labor','Y','0000-00-00 00:00:00'),(128630,10,'P01.6 ','Newborn affected by maternal death','Y','0000-00-00 00:00:00'),(128629,10,'P01.5 ','Newborn affected by multiple pregnancy','Y','0000-00-00 00:00:00'),(128628,10,'P01.4 ','Newborn affected by ectopic pregnancy','Y','0000-00-00 00:00:00'),(128627,10,'P01.3 ','Newborn affected by polyhydramnios','Y','0000-00-00 00:00:00'),(128626,10,'P01.2 ','Newborn affected by oligohydramnios','Y','0000-00-00 00:00:00'),(128625,10,'P01.1 ','Newborn affected by premature rupture of membranes','Y','0000-00-00 00:00:00'),(128624,10,'P01.0 ','Newborn affected by incompetent cervix','Y','0000-00-00 00:00:00'),(128623,10,'P00.9 ','Newborn affected by unspecified maternal condition','Y','0000-00-00 00:00:00'),(128622,10,'P00.89 ','Newborn affected by other maternal conditions','Y','0000-00-00 00:00:00'),(128621,10,'P00.82 ','Newborn affected by (positive) maternal group B streptococcus (GBS) colonization','Y','0000-00-00 00:00:00'),(128620,10,'P00.81 ','Newborn affected by periodontal disease in mother','Y','0000-00-00 00:00:00'),(128619,10,'P00.7 ','Newborn affected by other medical procedures on mother, not elsewhere classified','Y','0000-00-00 00:00:00'),(128618,10,'P00.6 ','Newborn affected by surgical procedure on mother','Y','0000-00-00 00:00:00'),(128617,10,'P00.5 ','Newborn affected by maternal injury','Y','0000-00-00 00:00:00'),(128616,10,'P00.4 ','Newborn affected by maternal nutritional disorders','Y','0000-00-00 00:00:00'),(128615,10,'P00.3 ','Newborn affected by other maternal circulatory and respiratory diseases','Y','0000-00-00 00:00:00'),(128614,10,'P00.2 ','Newborn affected by maternal infectious and parasitic diseases','Y','0000-00-00 00:00:00'),(128613,10,'P00.1 ','Newborn affected by maternal renal and urinary tract diseases','Y','0000-00-00 00:00:00'),(128612,10,'P00.0 ','Newborn affected by maternal hypertensive disorders','Y','0000-00-00 00:00:00'),(128611,10,'O9A.53 ','Psychological abuse complicating the puerperium','Y','0000-00-00 00:00:00'),(128610,10,'O9A.52 ','Psychological abuse complicating childbirth','Y','0000-00-00 00:00:00'),(128609,10,'O9A.519 ','Psychological abuse complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128608,10,'O9A.513 ','Psychological abuse complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128607,10,'O9A.512 ','Psychological abuse complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128605,10,'O9A.43 ','Sexual abuse complicating the puerperium','Y','0000-00-00 00:00:00'),(128606,10,'O9A.511 ','Psychological abuse complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128604,10,'O9A.42 ','Sexual abuse complicating childbirth','Y','0000-00-00 00:00:00'),(128603,10,'O9A.419 ','Sexual abuse complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128602,10,'O9A.413 ','Sexual abuse complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128601,10,'O9A.412 ','Sexual abuse complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128600,10,'O9A.411 ','Sexual abuse complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128599,10,'O9A.33 ','Physical abuse complicating the puerperium','Y','0000-00-00 00:00:00'),(128598,10,'O9A.32 ','Physical abuse complicating childbirth','Y','0000-00-00 00:00:00'),(128597,10,'O9A.319 ','Physical abuse complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128596,10,'O9A.313 ','Physical abuse complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128595,10,'O9A.312 ','Physical abuse complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128594,10,'O9A.311 ','Physical abuse complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128593,10,'O9A.23 ','Injury, poisoning and certain other consequences of external causes complicating the puerperium','Y','0000-00-00 00:00:00'),(128592,10,'O9A.22 ','Injury, poisoning and certain other consequences of external causes complicating childbirth','Y','0000-00-00 00:00:00'),(128591,10,'O9A.219 ','Injury, poisoning and certain other consequences of external causes complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128590,10,'O9A.213 ','Injury, poisoning and certain other consequences of external causes complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128589,10,'O9A.212 ','Injury, poisoning and certain other consequences of external causes complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128587,10,'O9A.13 ','Malignant neoplasm complicating the puerperium','Y','0000-00-00 00:00:00'),(128588,10,'O9A.211 ','Injury, poisoning and certain other consequences of external causes complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128586,10,'O9A.12 ','Malignant neoplasm complicating childbirth','Y','0000-00-00 00:00:00'),(128585,10,'O9A.119 ','Malignant neoplasm complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128584,10,'O9A.113 ','Malignant neoplasm complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128583,10,'O9A.112 ','Malignant neoplasm complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128582,10,'O9A.111 ','Malignant neoplasm complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128581,10,'O99.893 ','Other specified diseases and conditions complicating puerperium','Y','0000-00-00 00:00:00'),(128580,10,'O99.892 ','Other specified diseases and conditions complicating childbirth','Y','0000-00-00 00:00:00'),(128579,10,'O99.891 ','Other specified diseases and conditions complicating pregnancy','Y','0000-00-00 00:00:00'),(128577,10,'O99.844 ','Bariatric surgery status complicating childbirth','Y','0000-00-00 00:00:00'),(128578,10,'O99.845 ','Bariatric surgery status complicating the puerperium','Y','0000-00-00 00:00:00'),(128576,10,'O99.843 ','Bariatric surgery status complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128575,10,'O99.842 ','Bariatric surgery status complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128574,10,'O99.841 ','Bariatric surgery status complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128573,10,'O99.840 ','Bariatric surgery status complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128572,10,'O99.835 ','Other infection carrier state complicating the puerperium','Y','0000-00-00 00:00:00'),(128571,10,'O99.834 ','Other infection carrier state complicating childbirth','Y','0000-00-00 00:00:00'),(128570,10,'O99.830 ','Other infection carrier state complicating pregnancy','Y','0000-00-00 00:00:00'),(128569,10,'O99.825 ','Streptococcus B carrier state complicating the puerperium','Y','0000-00-00 00:00:00'),(128568,10,'O99.824 ','Streptococcus B carrier state complicating childbirth','Y','0000-00-00 00:00:00'),(128567,10,'O99.820 ','Streptococcus B carrier state complicating pregnancy','Y','0000-00-00 00:00:00'),(128566,10,'O99.815 ','Abnormal glucose complicating the puerperium','Y','0000-00-00 00:00:00'),(128564,10,'O99.810 ','Abnormal glucose complicating pregnancy','Y','0000-00-00 00:00:00'),(128565,10,'O99.814 ','Abnormal glucose complicating childbirth','Y','0000-00-00 00:00:00'),(128563,10,'O99.73 ','Diseases of the skin and subcutaneous tissue complicating the puerperium','Y','0000-00-00 00:00:00'),(128562,10,'O99.72 ','Diseases of the skin and subcutaneous tissue complicating childbirth','Y','0000-00-00 00:00:00'),(128561,10,'O99.719 ','Diseases of the skin and subcutaneous tissue complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128560,10,'O99.713 ','Diseases of the skin and subcutaneous tissue complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128559,10,'O99.712 ','Diseases of the skin and subcutaneous tissue complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128558,10,'O99.711 ','Diseases of the skin and subcutaneous tissue complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128557,10,'O99.63 ','Diseases of the digestive system complicating the puerperium','Y','0000-00-00 00:00:00'),(128556,10,'O99.62 ','Diseases of the digestive system complicating childbirth','Y','0000-00-00 00:00:00'),(128555,10,'O99.619 ','Diseases of the digestive system complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128554,10,'O99.613 ','Diseases of the digestive system complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128553,10,'O99.612 ','Diseases of the digestive system complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128552,10,'O99.611 ','Diseases of the digestive system complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128551,10,'O99.53 ','Diseases of the respiratory system complicating the puerperium','Y','0000-00-00 00:00:00'),(128550,10,'O99.52 ','Diseases of the respiratory system complicating childbirth','Y','0000-00-00 00:00:00'),(128549,10,'O99.519 ','Diseases of the respiratory system complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128548,10,'O99.513 ','Diseases of the respiratory system complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128547,10,'O99.512 ','Diseases of the respiratory system complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128546,10,'O99.511 ','Diseases of the respiratory system complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128545,10,'O99.43 ','Diseases of the circulatory system complicating the puerperium','Y','0000-00-00 00:00:00'),(128544,10,'O99.42 ','Diseases of the circulatory system complicating childbirth','Y','0000-00-00 00:00:00'),(128543,10,'O99.419 ','Diseases of the circulatory system complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128542,10,'O99.413 ','Diseases of the circulatory system complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128541,10,'O99.412 ','Diseases of the circulatory system complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128540,10,'O99.411 ','Diseases of the circulatory system complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128539,10,'O99.355 ','Diseases of the nervous system complicating the puerperium','Y','0000-00-00 00:00:00'),(128538,10,'O99.354 ','Diseases of the nervous system complicating childbirth','Y','0000-00-00 00:00:00'),(128537,10,'O99.353 ','Diseases of the nervous system complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128536,10,'O99.352 ','Diseases of the nervous system complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128535,10,'O99.351 ','Diseases of the nervous system complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128534,10,'O99.350 ','Diseases of the nervous system complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128533,10,'O99.345 ','Other mental disorders complicating the puerperium','Y','0000-00-00 00:00:00'),(128532,10,'O99.344 ','Other mental disorders complicating childbirth','Y','0000-00-00 00:00:00'),(128531,10,'O99.343 ','Other mental disorders complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128530,10,'O99.342 ','Other mental disorders complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128529,10,'O99.341 ','Other mental disorders complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128527,10,'O99.335 ','Smoking (tobacco) complicating the puerperium','Y','0000-00-00 00:00:00'),(128528,10,'O99.340 ','Other mental disorders complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128526,10,'O99.334 ','Smoking (tobacco) complicating childbirth','Y','0000-00-00 00:00:00'),(128524,10,'O99.332 ','Smoking (tobacco) complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128525,10,'O99.333 ','Smoking (tobacco) complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128523,10,'O99.331 ','Smoking (tobacco) complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128521,10,'O99.325 ','Drug use complicating the puerperium','Y','0000-00-00 00:00:00'),(128522,10,'O99.330 ','Smoking (tobacco) complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128520,10,'O99.324 ','Drug use complicating childbirth','Y','0000-00-00 00:00:00'),(128518,10,'O99.322 ','Drug use complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128519,10,'O99.323 ','Drug use complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128516,10,'O99.320 ','Drug use complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128517,10,'O99.321 ','Drug use complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128515,10,'O99.315 ','Alcohol use complicating the puerperium','Y','0000-00-00 00:00:00'),(128513,10,'O99.313 ','Alcohol use complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128514,10,'O99.314 ','Alcohol use complicating childbirth','Y','0000-00-00 00:00:00'),(128512,10,'O99.312 ','Alcohol use complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128511,10,'O99.311 ','Alcohol use complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128510,10,'O99.310 ','Alcohol use complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128508,10,'O99.284 ','Endocrine, nutritional and metabolic diseases complicating childbirth','Y','0000-00-00 00:00:00'),(128509,10,'O99.285 ','Endocrine, nutritional and metabolic diseases complicating the puerperium','Y','0000-00-00 00:00:00'),(128507,10,'O99.283 ','Endocrine, nutritional and metabolic diseases complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128506,10,'O99.282 ','Endocrine, nutritional and metabolic diseases complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128505,10,'O99.281 ','Endocrine, nutritional and metabolic diseases complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128504,10,'O99.280 ','Endocrine, nutritional and metabolic diseases complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128502,10,'O99.214 ','Obesity complicating childbirth','Y','0000-00-00 00:00:00'),(128503,10,'O99.215 ','Obesity complicating the puerperium','Y','0000-00-00 00:00:00'),(128501,10,'O99.213 ','Obesity complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128499,10,'O99.211 ','Obesity complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128500,10,'O99.212 ','Obesity complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128498,10,'O99.210 ','Obesity complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128497,10,'O99.13 ','Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating the puerperium','Y','0000-00-00 00:00:00'),(128496,10,'O99.12 ','Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating childbirth','Y','0000-00-00 00:00:00'),(128495,10,'O99.119 ','Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128494,10,'O99.113 ','Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128493,10,'O99.112 ','Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128492,10,'O99.111 ','Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128490,10,'O99.02 ','Anemia complicating childbirth','Y','0000-00-00 00:00:00'),(128491,10,'O99.03 ','Anemia complicating the puerperium','Y','0000-00-00 00:00:00'),(128489,10,'O99.019 ','Anemia complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128487,10,'O99.012 ','Anemia complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128488,10,'O99.013 ','Anemia complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128486,10,'O99.011 ','Anemia complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128485,10,'O98.93 ','Unspecified maternal infectious and parasitic disease complicating the puerperium','Y','0000-00-00 00:00:00'),(128484,10,'O98.92 ','Unspecified maternal infectious and parasitic disease complicating childbirth','Y','0000-00-00 00:00:00'),(128483,10,'O98.919 ','Unspecified maternal infectious and parasitic disease complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128482,10,'O98.913 ','Unspecified maternal infectious and parasitic disease complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128481,10,'O98.912 ','Unspecified maternal infectious and parasitic disease complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128480,10,'O98.911 ','Unspecified maternal infectious and parasitic disease complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128479,10,'O98.83 ','Other maternal infectious and parasitic diseases complicating the puerperium','Y','0000-00-00 00:00:00'),(128478,10,'O98.82 ','Other maternal infectious and parasitic diseases complicating childbirth','Y','0000-00-00 00:00:00'),(128477,10,'O98.819 ','Other maternal infectious and parasitic diseases complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128476,10,'O98.813 ','Other maternal infectious and parasitic diseases complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128475,10,'O98.812 ','Other maternal infectious and parasitic diseases complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128474,10,'O98.811 ','Other maternal infectious and parasitic diseases complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128472,10,'O98.72 ','Human immunodeficiency virus [HIV] disease complicating childbirth','Y','0000-00-00 00:00:00'),(128473,10,'O98.73 ','Human immunodeficiency virus [HIV] disease complicating the puerperium','Y','0000-00-00 00:00:00'),(128471,10,'O98.719 ','Human immunodeficiency virus [HIV] disease complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128470,10,'O98.713 ','Human immunodeficiency virus [HIV] disease complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128469,10,'O98.712 ','Human immunodeficiency virus [HIV] disease complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128467,10,'O98.63 ','Protozoal diseases complicating the puerperium','Y','0000-00-00 00:00:00'),(128468,10,'O98.711 ','Human immunodeficiency virus [HIV] disease complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128466,10,'O98.62 ','Protozoal diseases complicating childbirth','Y','0000-00-00 00:00:00'),(128465,10,'O98.619 ','Protozoal diseases complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128463,10,'O98.612 ','Protozoal diseases complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128464,10,'O98.613 ','Protozoal diseases complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128462,10,'O98.611 ','Protozoal diseases complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128461,10,'O98.53 ','Other viral diseases complicating the puerperium','Y','0000-00-00 00:00:00'),(128459,10,'O98.519 ','Other viral diseases complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128460,10,'O98.52 ','Other viral diseases complicating childbirth','Y','0000-00-00 00:00:00'),(128458,10,'O98.513 ','Other viral diseases complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128457,10,'O98.512 ','Other viral diseases complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128455,10,'O98.43 ','Viral hepatitis complicating the puerperium','Y','0000-00-00 00:00:00'),(128456,10,'O98.511 ','Other viral diseases complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128454,10,'O98.42 ','Viral hepatitis complicating childbirth','Y','0000-00-00 00:00:00'),(128452,10,'O98.413 ','Viral hepatitis complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128453,10,'O98.419 ','Viral hepatitis complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128451,10,'O98.412 ','Viral hepatitis complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128450,10,'O98.411 ','Viral hepatitis complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128449,10,'O98.33 ','Other infections with a predominantly sexual mode of transmission complicating the puerperium','Y','0000-00-00 00:00:00'),(128448,10,'O98.32 ','Other infections with a predominantly sexual mode of transmission complicating childbirth','Y','0000-00-00 00:00:00'),(128447,10,'O98.319 ','Other infections with a predominantly sexual mode of transmission complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128446,10,'O98.313 ','Other infections with a predominantly sexual mode of transmission complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128445,10,'O98.312 ','Other infections with a predominantly sexual mode of transmission complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128444,10,'O98.311 ','Other infections with a predominantly sexual mode of transmission complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128443,10,'O98.23 ','Gonorrhea complicating the puerperium','Y','0000-00-00 00:00:00'),(128441,10,'O98.219 ','Gonorrhea complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128442,10,'O98.22 ','Gonorrhea complicating childbirth','Y','0000-00-00 00:00:00'),(128440,10,'O98.213 ','Gonorrhea complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128439,10,'O98.212 ','Gonorrhea complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128437,10,'O98.13 ','Syphilis complicating the puerperium','Y','0000-00-00 00:00:00'),(128438,10,'O98.211 ','Gonorrhea complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128435,10,'O98.119 ','Syphilis complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128436,10,'O98.12 ','Syphilis complicating childbirth','Y','0000-00-00 00:00:00'),(128434,10,'O98.113 ','Syphilis complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128432,10,'O98.111 ','Syphilis complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128433,10,'O98.112 ','Syphilis complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128430,10,'O98.02 ','Tuberculosis complicating childbirth','Y','0000-00-00 00:00:00'),(128431,10,'O98.03 ','Tuberculosis complicating the puerperium','Y','0000-00-00 00:00:00'),(128429,10,'O98.019 ','Tuberculosis complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128428,10,'O98.013 ','Tuberculosis complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128426,10,'O98.011 ','Tuberculosis complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128427,10,'O98.012 ','Tuberculosis complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128425,10,'O94','Sequelae of complication of pregnancy, childbirth, and the puerperium','Y','0000-00-00 00:00:00'),(128423,10,'O92.70 ','Unspecified disorders of lactation','Y','0000-00-00 00:00:00'),(128424,10,'O92.79 ','Other disorders of lactation','Y','0000-00-00 00:00:00'),(128421,10,'O92.5 ','Suppressed lactation','Y','0000-00-00 00:00:00'),(128422,10,'O92.6 ','Galactorrhea','Y','0000-00-00 00:00:00'),(128419,10,'O92.3 ','Agalactia','Y','0000-00-00 00:00:00'),(128420,10,'O92.4 ','Hypogalactia','Y','0000-00-00 00:00:00'),(128418,10,'O92.29 ','Other disorders of breast associated with pregnancy and the puerperium','Y','0000-00-00 00:00:00'),(128417,10,'O92.20 ','Unspecified disorder of breast associated with pregnancy and the puerperium','Y','0000-00-00 00:00:00'),(128416,10,'O92.13 ','Cracked nipple associated with lactation','Y','0000-00-00 00:00:00'),(128414,10,'O92.119 ','Cracked nipple associated with pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128415,10,'O92.12 ','Cracked nipple associated with the puerperium','Y','0000-00-00 00:00:00'),(128413,10,'O92.113 ','Cracked nipple associated with pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128412,10,'O92.112 ','Cracked nipple associated with pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128410,10,'O92.03 ','Retracted nipple associated with lactation','Y','0000-00-00 00:00:00'),(128411,10,'O92.111 ','Cracked nipple associated with pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128409,10,'O92.02 ','Retracted nipple associated with the puerperium','Y','0000-00-00 00:00:00'),(128408,10,'O92.019 ','Retracted nipple associated with pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128407,10,'O92.013 ','Retracted nipple associated with pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128405,10,'O92.011 ','Retracted nipple associated with pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128406,10,'O92.012 ','Retracted nipple associated with pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128404,10,'O91.23 ','Nonpurulent mastitis associated with lactation','Y','0000-00-00 00:00:00'),(128403,10,'O91.22 ','Nonpurulent mastitis associated with the puerperium','Y','0000-00-00 00:00:00'),(128401,10,'O91.213 ','Nonpurulent mastitis associated with pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128402,10,'O91.219 ','Nonpurulent mastitis associated with pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128400,10,'O91.212 ','Nonpurulent mastitis associated with pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128399,10,'O91.211 ','Nonpurulent mastitis associated with pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128397,10,'O91.12 ','Abscess of breast associated with the puerperium','Y','0000-00-00 00:00:00'),(128398,10,'O91.13 ','Abscess of breast associated with lactation','Y','0000-00-00 00:00:00'),(128396,10,'O91.119 ','Abscess of breast associated with pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128395,10,'O91.113 ','Abscess of breast associated with pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128393,10,'O91.111 ','Abscess of breast associated with pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128394,10,'O91.112 ','Abscess of breast associated with pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128392,10,'O91.03 ','Infection of nipple associated with lactation','Y','0000-00-00 00:00:00'),(128391,10,'O91.02 ','Infection of nipple associated with the puerperium','Y','0000-00-00 00:00:00'),(128390,10,'O91.019 ','Infection of nipple associated with pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128389,10,'O91.013 ','Infection of nipple associated with pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128388,10,'O91.012 ','Infection of nipple associated with pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128386,10,'O90.9 ','Complication of the puerperium, unspecified','Y','0000-00-00 00:00:00'),(128387,10,'O91.011 ','Infection of nipple associated with pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128385,10,'O90.89 ','Other complications of the puerperium, not elsewhere classified','Y','0000-00-00 00:00:00'),(128383,10,'O90.6 ','Postpartum mood disturbance','Y','0000-00-00 00:00:00'),(128384,10,'O90.81 ','Anemia of the puerperium','Y','0000-00-00 00:00:00'),(128382,10,'O90.5 ','Postpartum thyroiditis','Y','0000-00-00 00:00:00'),(128380,10,'O90.41 ','Hepatorenal syndrome following labor and delivery','Y','0000-00-00 00:00:00'),(128381,10,'O90.49 ','Other postpartum acute kidney failure','Y','0000-00-00 00:00:00'),(128379,10,'O90.3 ','Peripartum cardiomyopathy','Y','0000-00-00 00:00:00'),(128377,10,'O90.1 ','Disruption of perineal obstetric wound','Y','0000-00-00 00:00:00'),(128378,10,'O90.2 ','Hematoma of obstetric wound','Y','0000-00-00 00:00:00'),(128376,10,'O90.0 ','Disruption of cesarean delivery wound','Y','0000-00-00 00:00:00'),(128375,10,'O89.9 ','Complication of anesthesia during the puerperium, unspecified','Y','0000-00-00 00:00:00'),(128374,10,'O89.8 ','Other complications of anesthesia during the puerperium','Y','0000-00-00 00:00:00'),(128373,10,'O89.6 ','Failed or difficult intubation for anesthesia during the puerperium','Y','0000-00-00 00:00:00'),(128372,10,'O89.5 ','Other complications of spinal and epidural anesthesia during the puerperium','Y','0000-00-00 00:00:00'),(128371,10,'O89.4 ','Spinal and epidural anesthesia-induced headache during the puerperium','Y','0000-00-00 00:00:00'),(128370,10,'O89.3 ','Toxic reaction to local anesthesia during the puerperium','Y','0000-00-00 00:00:00'),(128369,10,'O89.2 ','Central nervous system complications of anesthesia during the puerperium','Y','0000-00-00 00:00:00'),(128368,10,'O89.1 ','Cardiac complications of anesthesia during the puerperium','Y','0000-00-00 00:00:00'),(128367,10,'O89.09 ','Other pulmonary complications of anesthesia during the puerperium','Y','0000-00-00 00:00:00'),(128366,10,'O89.01 ','Aspiration pneumonitis due to anesthesia during the puerperium','Y','0000-00-00 00:00:00'),(128365,10,'O88.83 ','Other embolism in the puerperium','Y','0000-00-00 00:00:00'),(128364,10,'O88.82 ','Other embolism in childbirth','Y','0000-00-00 00:00:00'),(128362,10,'O88.813 ','Other embolism in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128363,10,'O88.819 ','Other embolism in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128361,10,'O88.812 ','Other embolism in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128360,10,'O88.811 ','Other embolism in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128358,10,'O88.32 ','Pyemic and septic embolism in childbirth','Y','0000-00-00 00:00:00'),(128359,10,'O88.33 ','Pyemic and septic embolism in the puerperium','Y','0000-00-00 00:00:00'),(128357,10,'O88.319 ','Pyemic and septic embolism in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128356,10,'O88.313 ','Pyemic and septic embolism in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128355,10,'O88.312 ','Pyemic and septic embolism in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128354,10,'O88.311 ','Pyemic and septic embolism in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128353,10,'O88.23 ','Thromboembolism in the puerperium','Y','0000-00-00 00:00:00'),(128351,10,'O88.219 ','Thromboembolism in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128352,10,'O88.22 ','Thromboembolism in childbirth','Y','0000-00-00 00:00:00'),(128350,10,'O88.213 ','Thromboembolism in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128349,10,'O88.212 ','Thromboembolism in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128347,10,'O88.13 ','Amniotic fluid embolism in the puerperium','Y','0000-00-00 00:00:00'),(128348,10,'O88.211 ','Thromboembolism in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128346,10,'O88.12 ','Amniotic fluid embolism in childbirth','Y','0000-00-00 00:00:00'),(128345,10,'O88.119 ','Amniotic fluid embolism in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128343,10,'O88.112 ','Amniotic fluid embolism in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128344,10,'O88.113 ','Amniotic fluid embolism in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128342,10,'O88.111 ','Amniotic fluid embolism in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128340,10,'O88.02 ','Air embolism in childbirth','Y','0000-00-00 00:00:00'),(128341,10,'O88.03 ','Air embolism in the puerperium','Y','0000-00-00 00:00:00'),(128339,10,'O88.019 ','Air embolism in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(128337,10,'O88.012 ','Air embolism in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(128338,10,'O88.013 ','Air embolism in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(128336,10,'O88.011 ','Air embolism in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(128335,10,'O87.9 ','Venous complication in the puerperium, unspecified','Y','0000-00-00 00:00:00'),(128333,10,'O87.4 ','Varicose veins of lower extremity in the puerperium','Y','0000-00-00 00:00:00'),(128334,10,'O87.8 ','Other venous complications in the puerperium','Y','0000-00-00 00:00:00'),(128332,10,'O87.3 ','Cerebral venous thrombosis in the puerperium','Y','0000-00-00 00:00:00'),(128331,10,'O87.2 ','Hemorrhoids in the puerperium','Y','0000-00-00 00:00:00'),(128329,10,'O87.0 ','Superficial thrombophlebitis in the puerperium','Y','0000-00-00 00:00:00'),(128330,10,'O87.1 ','Deep phlebothrombosis in the puerperium','Y','0000-00-00 00:00:00'),(128328,10,'O86.89 ','Other specified puerperal infections','Y','0000-00-00 00:00:00'),(128326,10,'O86.4 ','Pyrexia of unknown origin following delivery','Y','0000-00-00 00:00:00'),(128327,10,'O86.81 ','Puerperal septic thrombophlebitis','Y','0000-00-00 00:00:00'),(128325,10,'O86.29 ','Other urinary tract infection following delivery','Y','0000-00-00 00:00:00'),(128324,10,'O86.22 ','Infection of bladder following delivery','Y','0000-00-00 00:00:00'),(128322,10,'O86.20 ','Urinary tract infection following delivery, unspecified','Y','0000-00-00 00:00:00'),(128323,10,'O86.21 ','Infection of kidney following delivery','Y','0000-00-00 00:00:00'),(128321,10,'O86.19 ','Other infection of genital tract following delivery','Y','0000-00-00 00:00:00'),(128319,10,'O86.12 ','Endometritis following delivery','Y','0000-00-00 00:00:00'),(128320,10,'O86.13 ','Vaginitis following delivery','Y','0000-00-00 00:00:00'),(128318,10,'O86.11 ','Cervicitis following delivery','Y','0000-00-00 00:00:00'),(128317,10,'O86.09 ','Infection of obstetric surgical wound, other surgical site','Y','0000-00-00 00:00:00'),(128316,10,'O86.04 ','Sepsis following an obstetrical procedure','Y','0000-00-00 00:00:00'),(128314,10,'O86.02 ','Infection of obstetric surgical wound, deep incisional site','Y','0000-00-00 00:00:00'),(128315,10,'O86.03 ','Infection of obstetric surgical wound, organ and space site','Y','0000-00-00 00:00:00'),(128313,10,'O86.01 ','Infection of obstetric surgical wound, superficial incisional site','Y','0000-00-00 00:00:00'),(128311,10,'O85','Puerperal sepsis','Y','0000-00-00 00:00:00'),(128312,10,'O86.00 ','Infection of obstetric surgical wound, unspecified','Y','0000-00-00 00:00:00'),(128310,10,'O82','Encounter for cesarean delivery without indication','Y','0000-00-00 00:00:00'),(128309,10,'O80','Encounter for full-term uncomplicated delivery','Y','0000-00-00 00:00:00'),(128308,10,'O77.9 ','Labor and delivery complicated by fetal stress, unspecified','Y','0000-00-00 00:00:00'),(128307,10,'O77.8 ','Labor and delivery complicated by other evidence of fetal stress','Y','0000-00-00 00:00:00'),(128305,10,'O77.0 ','Labor and delivery complicated by meconium in amniotic fluid','Y','0000-00-00 00:00:00'),(128306,10,'O77.1 ','Fetal stress in labor or delivery due to drug administration','Y','0000-00-00 00:00:00'),(128304,10,'O76','Abnormality in fetal heart rate and rhythm complicating labor and delivery','Y','0000-00-00 00:00:00'),(128303,10,'O75.9 ','Complication of labor and delivery, unspecified','Y','0000-00-00 00:00:00'),(128302,10,'O75.89 ','Other specified complications of labor and delivery','Y','0000-00-00 00:00:00'),(128301,10,'O75.82 ','Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section','Y','0000-00-00 00:00:00'),(128300,10,'O75.81 ','Maternal exhaustion complicating labor and delivery','Y','0000-00-00 00:00:00'),(128299,10,'O75.5 ','Delayed delivery after artificial rupture of membranes','Y','0000-00-00 00:00:00'),(128298,10,'O75.4 ','Other complications of obstetric surgery and procedures','Y','0000-00-00 00:00:00'),(128297,10,'O75.3 ','Other infection during labor','Y','0000-00-00 00:00:00'),(128296,10,'O75.2 ','Pyrexia during labor, not elsewhere classified','Y','0000-00-00 00:00:00'),(128295,10,'O75.1 ','Shock during or following labor and delivery','Y','0000-00-00 00:00:00'),(128294,10,'O75.0 ','Maternal distress during labor and delivery','Y','0000-00-00 00:00:00'),(128293,10,'O74.9 ','Complication of anesthesia during labor and delivery, unspecified','Y','0000-00-00 00:00:00'),(128292,10,'O74.8 ','Other complications of anesthesia during labor and delivery','Y','0000-00-00 00:00:00'),(128291,10,'O74.7 ','Failed or difficult intubation for anesthesia during labor and delivery','Y','0000-00-00 00:00:00'),(128290,10,'O74.6 ','Other complications of spinal and epidural anesthesia during labor and delivery','Y','0000-00-00 00:00:00'),(128289,10,'O74.5 ','Spinal and epidural anesthesia-induced headache during labor and delivery','Y','0000-00-00 00:00:00'),(128288,10,'O74.4 ','Toxic reaction to local anesthesia during labor and delivery','Y','0000-00-00 00:00:00'),(128287,10,'O74.3 ','Central nervous system complications of anesthesia during labor and delivery','Y','0000-00-00 00:00:00'),(128286,10,'O74.2 ','Cardiac complications of anesthesia during labor and delivery','Y','0000-00-00 00:00:00'),(128285,10,'O74.1 ','Other pulmonary complications of anesthesia during labor and delivery','Y','0000-00-00 00:00:00'),(128284,10,'O74.0 ','Aspiration pneumonitis due to anesthesia during labor and delivery','Y','0000-00-00 00:00:00'),(128283,10,'O73.1 ','Retained portions of placenta and membranes, without hemorrhage','Y','0000-00-00 00:00:00'),(128282,10,'O73.0 ','Retained placenta without hemorrhage','Y','0000-00-00 00:00:00'),(128280,10,'O72.2 ','Delayed and secondary postpartum hemorrhage','Y','0000-00-00 00:00:00'),(128281,10,'O72.3 ','Postpartum coagulation defects','Y','0000-00-00 00:00:00'),(128279,10,'O72.1 ','Other immediate postpartum hemorrhage','Y','0000-00-00 00:00:00'),(128277,10,'O71.9 ','Obstetric trauma, unspecified','Y','0000-00-00 00:00:00'),(128278,10,'O72.0 ','Third-stage hemorrhage','Y','0000-00-00 00:00:00'),(128276,10,'O71.89 ','Other specified obstetric trauma','Y','0000-00-00 00:00:00'),(128275,10,'O71.82 ','Other specified trauma to perineum and vulva','Y','0000-00-00 00:00:00'),(128274,10,'O71.81 ','Laceration of uterus, not elsewhere classified','Y','0000-00-00 00:00:00'),(128273,10,'O71.7 ','Obstetric hematoma of pelvis','Y','0000-00-00 00:00:00'),(128272,10,'O71.6 ','Obstetric damage to pelvic joints and ligaments','Y','0000-00-00 00:00:00'),(128270,10,'O71.4 ','Obstetric high vaginal laceration alone','Y','0000-00-00 00:00:00'),(128271,10,'O71.5 ','Other obstetric injury to pelvic organs','Y','0000-00-00 00:00:00'),(128269,10,'O71.3 ','Obstetric laceration of cervix','Y','0000-00-00 00:00:00'),(128267,10,'O71.1 ','Rupture of uterus during labor','Y','0000-00-00 00:00:00'),(128268,10,'O71.2 ','Postpartum inversion of uterus','Y','0000-00-00 00:00:00'),(128266,10,'O71.03 ','Rupture of uterus before onset of labor, third trimester','Y','0000-00-00 00:00:00'),(128265,10,'O71.02 ','Rupture of uterus before onset of labor, second trimester','Y','0000-00-00 00:00:00'),(128264,10,'O71.00 ','Rupture of uterus before onset of labor, unspecified trimester','Y','0000-00-00 00:00:00'),(128263,10,'O70.9 ','Perineal laceration during delivery, unspecified','Y','0000-00-00 00:00:00'),(128262,10,'O70.4 ','Anal sphincter tear complicating delivery, not associated with third degree laceration','Y','0000-00-00 00:00:00'),(128261,10,'O70.3 ','Fourth degree perineal laceration during delivery','Y','0000-00-00 00:00:00'),(128259,10,'O70.22 ','Third degree perineal laceration during delivery, IIIb','Y','0000-00-00 00:00:00'),(128260,10,'O70.23 ','Third degree perineal laceration during delivery, IIIc','Y','0000-00-00 00:00:00'),(128258,10,'O70.21 ','Third degree perineal laceration during delivery, IIIa','Y','0000-00-00 00:00:00'),(128257,10,'O70.20 ','Third degree perineal laceration during delivery, unspecified','Y','0000-00-00 00:00:00'),(128256,10,'O70.1 ','Second degree perineal laceration during delivery','Y','0000-00-00 00:00:00'),(128255,10,'O70.0 ','First degree perineal laceration during delivery','Y','0000-00-00 00:00:00'),(128254,10,'O69.9XX9 ','Labor and delivery complicated by cord complication, unspecified, other fetus','Y','0000-00-00 00:00:00'),(128253,10,'O69.9XX5 ','Labor and delivery complicated by cord complication, unspecified, fetus 5','Y','0000-00-00 00:00:00'),(128252,10,'O69.9XX4 ','Labor and delivery complicated by cord complication, unspecified, fetus 4','Y','0000-00-00 00:00:00'),(128251,10,'O69.9XX3 ','Labor and delivery complicated by cord complication, unspecified, fetus 3','Y','0000-00-00 00:00:00'),(128250,10,'O69.9XX2 ','Labor and delivery complicated by cord complication, unspecified, fetus 2','Y','0000-00-00 00:00:00'),(128249,10,'O69.9XX1 ','Labor and delivery complicated by cord complication, unspecified, fetus 1','Y','0000-00-00 00:00:00'),(128248,10,'O69.9XX0 ','Labor and delivery complicated by cord complication, unspecified, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128247,10,'O69.89X9 ','Labor and delivery complicated by other cord complications, other fetus','Y','0000-00-00 00:00:00'),(128246,10,'O69.89X5 ','Labor and delivery complicated by other cord complications, fetus 5','Y','0000-00-00 00:00:00'),(128245,10,'O69.89X4 ','Labor and delivery complicated by other cord complications, fetus 4','Y','0000-00-00 00:00:00'),(128244,10,'O69.89X3 ','Labor and delivery complicated by other cord complications, fetus 3','Y','0000-00-00 00:00:00'),(128243,10,'O69.89X2 ','Labor and delivery complicated by other cord complications, fetus 2','Y','0000-00-00 00:00:00'),(128242,10,'O69.89X1 ','Labor and delivery complicated by other cord complications, fetus 1','Y','0000-00-00 00:00:00'),(128241,10,'O69.89X0 ','Labor and delivery complicated by other cord complications, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128240,10,'O69.82X9 ','Labor and delivery complicated by other cord entanglement, without compression, other fetus','Y','0000-00-00 00:00:00'),(128239,10,'O69.82X5 ','Labor and delivery complicated by other cord entanglement, without compression, fetus 5','Y','0000-00-00 00:00:00'),(128238,10,'O69.82X4 ','Labor and delivery complicated by other cord entanglement, without compression, fetus 4','Y','0000-00-00 00:00:00'),(128237,10,'O69.82X3 ','Labor and delivery complicated by other cord entanglement, without compression, fetus 3','Y','0000-00-00 00:00:00'),(128236,10,'O69.82X2 ','Labor and delivery complicated by other cord entanglement, without compression, fetus 2','Y','0000-00-00 00:00:00'),(128235,10,'O69.82X1 ','Labor and delivery complicated by other cord entanglement, without compression, fetus 1','Y','0000-00-00 00:00:00'),(128234,10,'O69.82X0 ','Labor and delivery complicated by other cord entanglement, without compression, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128233,10,'O69.81X9 ','Labor and delivery complicated by cord around neck, without compression, other fetus','Y','0000-00-00 00:00:00'),(128232,10,'O69.81X5 ','Labor and delivery complicated by cord around neck, without compression, fetus 5','Y','0000-00-00 00:00:00'),(128231,10,'O69.81X4 ','Labor and delivery complicated by cord around neck, without compression, fetus 4','Y','0000-00-00 00:00:00'),(128230,10,'O69.81X3 ','Labor and delivery complicated by cord around neck, without compression, fetus 3','Y','0000-00-00 00:00:00'),(128229,10,'O69.81X2 ','Labor and delivery complicated by cord around neck, without compression, fetus 2','Y','0000-00-00 00:00:00'),(128228,10,'O69.81X1 ','Labor and delivery complicated by cord around neck, without compression, fetus 1','Y','0000-00-00 00:00:00'),(128227,10,'O69.81X0 ','Labor and delivery complicated by cord around neck, without compression, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128226,10,'O69.5XX9 ','Labor and delivery complicated by vascular lesion of cord, other fetus','Y','0000-00-00 00:00:00'),(128225,10,'O69.5XX5 ','Labor and delivery complicated by vascular lesion of cord, fetus 5','Y','0000-00-00 00:00:00'),(128224,10,'O69.5XX4 ','Labor and delivery complicated by vascular lesion of cord, fetus 4','Y','0000-00-00 00:00:00'),(128223,10,'O69.5XX3 ','Labor and delivery complicated by vascular lesion of cord, fetus 3','Y','0000-00-00 00:00:00'),(128222,10,'O69.5XX2 ','Labor and delivery complicated by vascular lesion of cord, fetus 2','Y','0000-00-00 00:00:00'),(128221,10,'O69.5XX1 ','Labor and delivery complicated by vascular lesion of cord, fetus 1','Y','0000-00-00 00:00:00'),(128220,10,'O69.5XX0 ','Labor and delivery complicated by vascular lesion of cord, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128219,10,'O69.4XX9 ','Labor and delivery complicated by vasa previa, other fetus','Y','0000-00-00 00:00:00'),(128218,10,'O69.4XX5 ','Labor and delivery complicated by vasa previa, fetus 5','Y','0000-00-00 00:00:00'),(128216,10,'O69.4XX3 ','Labor and delivery complicated by vasa previa, fetus 3','Y','0000-00-00 00:00:00'),(128217,10,'O69.4XX4 ','Labor and delivery complicated by vasa previa, fetus 4','Y','0000-00-00 00:00:00'),(128214,10,'O69.4XX1 ','Labor and delivery complicated by vasa previa, fetus 1','Y','0000-00-00 00:00:00'),(128215,10,'O69.4XX2 ','Labor and delivery complicated by vasa previa, fetus 2','Y','0000-00-00 00:00:00'),(128213,10,'O69.4XX0 ','Labor and delivery complicated by vasa previa, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128212,10,'O69.3XX9 ','Labor and delivery complicated by short cord, other fetus','Y','0000-00-00 00:00:00'),(128211,10,'O69.3XX5 ','Labor and delivery complicated by short cord, fetus 5','Y','0000-00-00 00:00:00'),(128209,10,'O69.3XX3 ','Labor and delivery complicated by short cord, fetus 3','Y','0000-00-00 00:00:00'),(128210,10,'O69.3XX4 ','Labor and delivery complicated by short cord, fetus 4','Y','0000-00-00 00:00:00'),(128207,10,'O69.3XX1 ','Labor and delivery complicated by short cord, fetus 1','Y','0000-00-00 00:00:00'),(128208,10,'O69.3XX2 ','Labor and delivery complicated by short cord, fetus 2','Y','0000-00-00 00:00:00'),(128206,10,'O69.3XX0 ','Labor and delivery complicated by short cord, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128205,10,'O69.2XX9 ','Labor and delivery complicated by other cord entanglement, with compression, other fetus','Y','0000-00-00 00:00:00'),(128204,10,'O69.2XX5 ','Labor and delivery complicated by other cord entanglement, with compression, fetus 5','Y','0000-00-00 00:00:00'),(128203,10,'O69.2XX4 ','Labor and delivery complicated by other cord entanglement, with compression, fetus 4','Y','0000-00-00 00:00:00'),(128202,10,'O69.2XX3 ','Labor and delivery complicated by other cord entanglement, with compression, fetus 3','Y','0000-00-00 00:00:00'),(128201,10,'O69.2XX2 ','Labor and delivery complicated by other cord entanglement, with compression, fetus 2','Y','0000-00-00 00:00:00'),(128200,10,'O69.2XX1 ','Labor and delivery complicated by other cord entanglement, with compression, fetus 1','Y','0000-00-00 00:00:00'),(128199,10,'O69.2XX0 ','Labor and delivery complicated by other cord entanglement, with compression, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128198,10,'O69.1XX9 ','Labor and delivery complicated by cord around neck, with compression, other fetus','Y','0000-00-00 00:00:00'),(128197,10,'O69.1XX5 ','Labor and delivery complicated by cord around neck, with compression, fetus 5','Y','0000-00-00 00:00:00'),(128196,10,'O69.1XX4 ','Labor and delivery complicated by cord around neck, with compression, fetus 4','Y','0000-00-00 00:00:00'),(128195,10,'O69.1XX3 ','Labor and delivery complicated by cord around neck, with compression, fetus 3','Y','0000-00-00 00:00:00'),(128194,10,'O69.1XX2 ','Labor and delivery complicated by cord around neck, with compression, fetus 2','Y','0000-00-00 00:00:00'),(128193,10,'O69.1XX1 ','Labor and delivery complicated by cord around neck, with compression, fetus 1','Y','0000-00-00 00:00:00'),(128192,10,'O69.1XX0 ','Labor and delivery complicated by cord around neck, with compression, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128191,10,'O69.0XX9 ','Labor and delivery complicated by prolapse of cord, other fetus','Y','0000-00-00 00:00:00'),(128190,10,'O69.0XX5 ','Labor and delivery complicated by prolapse of cord, fetus 5','Y','0000-00-00 00:00:00'),(128189,10,'O69.0XX4 ','Labor and delivery complicated by prolapse of cord, fetus 4','Y','0000-00-00 00:00:00'),(128187,10,'O69.0XX2 ','Labor and delivery complicated by prolapse of cord, fetus 2','Y','0000-00-00 00:00:00'),(128188,10,'O69.0XX3 ','Labor and delivery complicated by prolapse of cord, fetus 3','Y','0000-00-00 00:00:00'),(128186,10,'O69.0XX1 ','Labor and delivery complicated by prolapse of cord, fetus 1','Y','0000-00-00 00:00:00'),(128185,10,'O69.0XX0 ','Labor and delivery complicated by prolapse of cord, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128183,10,'O67.9 ','Intrapartum hemorrhage, unspecified','Y','0000-00-00 00:00:00'),(128184,10,'O68','Labor and delivery complicated by abnormality of fetal acid-base balance','Y','0000-00-00 00:00:00'),(128182,10,'O67.8 ','Other intrapartum hemorrhage','Y','0000-00-00 00:00:00'),(128180,10,'O66.9 ','Obstructed labor, unspecified','Y','0000-00-00 00:00:00'),(128181,10,'O67.0 ','Intrapartum hemorrhage with coagulation defect','Y','0000-00-00 00:00:00'),(128178,10,'O66.6 ','Obstructed labor due to other multiple fetuses','Y','0000-00-00 00:00:00'),(128179,10,'O66.8 ','Other specified obstructed labor','Y','0000-00-00 00:00:00'),(128177,10,'O66.5 ','Attempted application of vacuum extractor and forceps','Y','0000-00-00 00:00:00'),(128175,10,'O66.40 ','Failed trial of labor, unspecified','Y','0000-00-00 00:00:00'),(128176,10,'O66.41 ','Failed attempted vaginal birth after previous cesarean delivery','Y','0000-00-00 00:00:00'),(128174,10,'O66.3 ','Obstructed labor due to other abnormalities of fetus','Y','0000-00-00 00:00:00'),(128173,10,'O66.2 ','Obstructed labor due to unusually large fetus','Y','0000-00-00 00:00:00'),(128171,10,'O66.0 ','Obstructed labor due to shoulder dystocia','Y','0000-00-00 00:00:00'),(128172,10,'O66.1 ','Obstructed labor due to locked twins','Y','0000-00-00 00:00:00'),(128170,10,'O65.9 ','Obstructed labor due to maternal pelvic abnormality, unspecified','Y','0000-00-00 00:00:00'),(128169,10,'O65.8 ','Obstructed labor due to other maternal pelvic abnormalities','Y','0000-00-00 00:00:00'),(128167,10,'O65.4 ','Obstructed labor due to fetopelvic disproportion, unspecified','Y','0000-00-00 00:00:00'),(128168,10,'O65.5 ','Obstructed labor due to abnormality of maternal pelvic organs','Y','0000-00-00 00:00:00'),(128166,10,'O65.3 ','Obstructed labor due to pelvic outlet and mid-cavity contraction','Y','0000-00-00 00:00:00'),(128165,10,'O65.2 ','Obstructed labor due to pelvic inlet contraction','Y','0000-00-00 00:00:00'),(128163,10,'O65.0 ','Obstructed labor due to deformed pelvis','Y','0000-00-00 00:00:00'),(128164,10,'O65.1 ','Obstructed labor due to generally contracted pelvis','Y','0000-00-00 00:00:00'),(128162,10,'O64.9XX9 ','Obstructed labor due to malposition and malpresentation, unspecified, other fetus','Y','0000-00-00 00:00:00'),(128161,10,'O64.9XX5 ','Obstructed labor due to malposition and malpresentation, unspecified, fetus 5','Y','0000-00-00 00:00:00'),(128160,10,'O64.9XX4 ','Obstructed labor due to malposition and malpresentation, unspecified, fetus 4','Y','0000-00-00 00:00:00'),(128159,10,'O64.9XX3 ','Obstructed labor due to malposition and malpresentation, unspecified, fetus 3','Y','0000-00-00 00:00:00'),(128158,10,'O64.9XX2 ','Obstructed labor due to malposition and malpresentation, unspecified, fetus 2','Y','0000-00-00 00:00:00'),(128157,10,'O64.9XX1 ','Obstructed labor due to malposition and malpresentation, unspecified, fetus 1','Y','0000-00-00 00:00:00'),(128156,10,'O64.9XX0 ','Obstructed labor due to malposition and malpresentation, unspecified, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128155,10,'O64.8XX9 ','Obstructed labor due to other malposition and malpresentation, other fetus','Y','0000-00-00 00:00:00'),(128154,10,'O64.8XX5 ','Obstructed labor due to other malposition and malpresentation, fetus 5','Y','0000-00-00 00:00:00'),(128152,10,'O64.8XX3 ','Obstructed labor due to other malposition and malpresentation, fetus 3','Y','0000-00-00 00:00:00'),(128153,10,'O64.8XX4 ','Obstructed labor due to other malposition and malpresentation, fetus 4','Y','0000-00-00 00:00:00'),(128151,10,'O64.8XX2 ','Obstructed labor due to other malposition and malpresentation, fetus 2','Y','0000-00-00 00:00:00'),(128150,10,'O64.8XX1 ','Obstructed labor due to other malposition and malpresentation, fetus 1','Y','0000-00-00 00:00:00'),(128149,10,'O64.8XX0 ','Obstructed labor due to other malposition and malpresentation, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128148,10,'O64.5XX9 ','Obstructed labor due to compound presentation, other fetus','Y','0000-00-00 00:00:00'),(128147,10,'O64.5XX5 ','Obstructed labor due to compound presentation, fetus 5','Y','0000-00-00 00:00:00'),(128145,10,'O64.5XX3 ','Obstructed labor due to compound presentation, fetus 3','Y','0000-00-00 00:00:00'),(128146,10,'O64.5XX4 ','Obstructed labor due to compound presentation, fetus 4','Y','0000-00-00 00:00:00'),(128143,10,'O64.5XX1 ','Obstructed labor due to compound presentation, fetus 1','Y','0000-00-00 00:00:00'),(128144,10,'O64.5XX2 ','Obstructed labor due to compound presentation, fetus 2','Y','0000-00-00 00:00:00'),(128142,10,'O64.5XX0 ','Obstructed labor due to compound presentation, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128141,10,'O64.4XX9 ','Obstructed labor due to shoulder presentation, other fetus','Y','0000-00-00 00:00:00'),(128140,10,'O64.4XX5 ','Obstructed labor due to shoulder presentation, fetus 5','Y','0000-00-00 00:00:00'),(128138,10,'O64.4XX3 ','Obstructed labor due to shoulder presentation, fetus 3','Y','0000-00-00 00:00:00'),(128139,10,'O64.4XX4 ','Obstructed labor due to shoulder presentation, fetus 4','Y','0000-00-00 00:00:00'),(128137,10,'O64.4XX2 ','Obstructed labor due to shoulder presentation, fetus 2','Y','0000-00-00 00:00:00'),(128136,10,'O64.4XX1 ','Obstructed labor due to shoulder presentation, fetus 1','Y','0000-00-00 00:00:00'),(128135,10,'O64.4XX0 ','Obstructed labor due to shoulder presentation, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128133,10,'O64.3XX5 ','Obstructed labor due to brow presentation, fetus 5','Y','0000-00-00 00:00:00'),(128134,10,'O64.3XX9 ','Obstructed labor due to brow presentation, other fetus','Y','0000-00-00 00:00:00'),(128132,10,'O64.3XX4 ','Obstructed labor due to brow presentation, fetus 4','Y','0000-00-00 00:00:00'),(128130,10,'O64.3XX2 ','Obstructed labor due to brow presentation, fetus 2','Y','0000-00-00 00:00:00'),(128131,10,'O64.3XX3 ','Obstructed labor due to brow presentation, fetus 3','Y','0000-00-00 00:00:00'),(128129,10,'O64.3XX1 ','Obstructed labor due to brow presentation, fetus 1','Y','0000-00-00 00:00:00'),(128127,10,'O64.2XX9 ','Obstructed labor due to face presentation, other fetus','Y','0000-00-00 00:00:00'),(128128,10,'O64.3XX0 ','Obstructed labor due to brow presentation, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128126,10,'O64.2XX5 ','Obstructed labor due to face presentation, fetus 5','Y','0000-00-00 00:00:00'),(128125,10,'O64.2XX4 ','Obstructed labor due to face presentation, fetus 4','Y','0000-00-00 00:00:00'),(128123,10,'O64.2XX2 ','Obstructed labor due to face presentation, fetus 2','Y','0000-00-00 00:00:00'),(128124,10,'O64.2XX3 ','Obstructed labor due to face presentation, fetus 3','Y','0000-00-00 00:00:00'),(128122,10,'O64.2XX1 ','Obstructed labor due to face presentation, fetus 1','Y','0000-00-00 00:00:00'),(128121,10,'O64.2XX0 ','Obstructed labor due to face presentation, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128120,10,'O64.1XX9 ','Obstructed labor due to breech presentation, other fetus','Y','0000-00-00 00:00:00'),(128119,10,'O64.1XX5 ','Obstructed labor due to breech presentation, fetus 5','Y','0000-00-00 00:00:00'),(128118,10,'O64.1XX4 ','Obstructed labor due to breech presentation, fetus 4','Y','0000-00-00 00:00:00'),(128116,10,'O64.1XX2 ','Obstructed labor due to breech presentation, fetus 2','Y','0000-00-00 00:00:00'),(128117,10,'O64.1XX3 ','Obstructed labor due to breech presentation, fetus 3','Y','0000-00-00 00:00:00'),(128115,10,'O64.1XX1 ','Obstructed labor due to breech presentation, fetus 1','Y','0000-00-00 00:00:00'),(128114,10,'O64.1XX0 ','Obstructed labor due to breech presentation, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128113,10,'O64.0XX9 ','Obstructed labor due to incomplete rotation of fetal head, other fetus','Y','0000-00-00 00:00:00'),(128112,10,'O64.0XX5 ','Obstructed labor due to incomplete rotation of fetal head, fetus 5','Y','0000-00-00 00:00:00'),(128111,10,'O64.0XX4 ','Obstructed labor due to incomplete rotation of fetal head, fetus 4','Y','0000-00-00 00:00:00'),(128110,10,'O64.0XX3 ','Obstructed labor due to incomplete rotation of fetal head, fetus 3','Y','0000-00-00 00:00:00'),(128109,10,'O64.0XX2 ','Obstructed labor due to incomplete rotation of fetal head, fetus 2','Y','0000-00-00 00:00:00'),(128108,10,'O64.0XX1 ','Obstructed labor due to incomplete rotation of fetal head, fetus 1','Y','0000-00-00 00:00:00'),(128107,10,'O64.0XX0 ','Obstructed labor due to incomplete rotation of fetal head, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128105,10,'O63.2 ','Delayed delivery of second twin, triplet, etc.','Y','0000-00-00 00:00:00'),(128106,10,'O63.9 ','Long labor, unspecified','Y','0000-00-00 00:00:00'),(128103,10,'O63.0 ','Prolonged first stage (of labor)','Y','0000-00-00 00:00:00'),(128104,10,'O63.1 ','Prolonged second stage (of labor)','Y','0000-00-00 00:00:00'),(128102,10,'O62.9 ','Abnormality of forces of labor, unspecified','Y','0000-00-00 00:00:00'),(128101,10,'O62.8 ','Other abnormalities of forces of labor','Y','0000-00-00 00:00:00'),(128099,10,'O62.3 ','Precipitate labor','Y','0000-00-00 00:00:00'),(128100,10,'O62.4 ','Hypertonic, incoordinate, and prolonged uterine contractions','Y','0000-00-00 00:00:00'),(128097,10,'O62.1 ','Secondary uterine inertia','Y','0000-00-00 00:00:00'),(128098,10,'O62.2 ','Other uterine inertia','Y','0000-00-00 00:00:00'),(128095,10,'O61.9 ','Failed induction of labor, unspecified','Y','0000-00-00 00:00:00'),(128096,10,'O62.0 ','Primary inadequate contractions','Y','0000-00-00 00:00:00'),(128094,10,'O61.8 ','Other failed induction of labor','Y','0000-00-00 00:00:00'),(128092,10,'O61.0 ','Failed medical induction of labor','Y','0000-00-00 00:00:00'),(128093,10,'O61.1 ','Failed instrumental induction of labor','Y','0000-00-00 00:00:00'),(128091,10,'O60.23X9 ','Term delivery with preterm labor, third trimester, other fetus','Y','0000-00-00 00:00:00'),(128090,10,'O60.23X5 ','Term delivery with preterm labor, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(128089,10,'O60.23X4 ','Term delivery with preterm labor, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(128088,10,'O60.23X3 ','Term delivery with preterm labor, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(128086,10,'O60.23X1 ','Term delivery with preterm labor, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(128087,10,'O60.23X2 ','Term delivery with preterm labor, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(128085,10,'O60.23X0 ','Term delivery with preterm labor, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128084,10,'O60.22X9 ','Term delivery with preterm labor, second trimester, other fetus','Y','0000-00-00 00:00:00'),(128083,10,'O60.22X5 ','Term delivery with preterm labor, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(128082,10,'O60.22X4 ','Term delivery with preterm labor, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(128081,10,'O60.22X3 ','Term delivery with preterm labor, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(128079,10,'O60.22X1 ','Term delivery with preterm labor, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(128080,10,'O60.22X2 ','Term delivery with preterm labor, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(128078,10,'O60.22X0 ','Term delivery with preterm labor, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128077,10,'O60.20X9 ','Term delivery with preterm labor, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(128076,10,'O60.20X5 ','Term delivery with preterm labor, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(128075,10,'O60.20X4 ','Term delivery with preterm labor, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(128074,10,'O60.20X3 ','Term delivery with preterm labor, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(128072,10,'O60.20X1 ','Term delivery with preterm labor, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(128073,10,'O60.20X2 ','Term delivery with preterm labor, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(128071,10,'O60.20X0 ','Term delivery with preterm labor, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128070,10,'O60.14X9 ','Preterm labor third trimester with preterm delivery third trimester, other fetus','Y','0000-00-00 00:00:00'),(128069,10,'O60.14X5 ','Preterm labor third trimester with preterm delivery third trimester, fetus 5','Y','0000-00-00 00:00:00'),(128067,10,'O60.14X3 ','Preterm labor third trimester with preterm delivery third trimester, fetus 3','Y','0000-00-00 00:00:00'),(128068,10,'O60.14X4 ','Preterm labor third trimester with preterm delivery third trimester, fetus 4','Y','0000-00-00 00:00:00'),(128066,10,'O60.14X2 ','Preterm labor third trimester with preterm delivery third trimester, fetus 2','Y','0000-00-00 00:00:00'),(128065,10,'O60.14X1 ','Preterm labor third trimester with preterm delivery third trimester, fetus 1','Y','0000-00-00 00:00:00'),(128064,10,'O60.14X0 ','Preterm labor third trimester with preterm delivery third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128063,10,'O60.13X9 ','Preterm labor second trimester with preterm delivery third trimester, other fetus','Y','0000-00-00 00:00:00'),(128061,10,'O60.13X4 ','Preterm labor second trimester with preterm delivery third trimester, fetus 4','Y','0000-00-00 00:00:00'),(128062,10,'O60.13X5 ','Preterm labor second trimester with preterm delivery third trimester, fetus 5','Y','0000-00-00 00:00:00'),(128060,10,'O60.13X3 ','Preterm labor second trimester with preterm delivery third trimester, fetus 3','Y','0000-00-00 00:00:00'),(128059,10,'O60.13X2 ','Preterm labor second trimester with preterm delivery third trimester, fetus 2','Y','0000-00-00 00:00:00'),(128058,10,'O60.13X1 ','Preterm labor second trimester with preterm delivery third trimester, fetus 1','Y','0000-00-00 00:00:00'),(128057,10,'O60.13X0 ','Preterm labor second trimester with preterm delivery third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128056,10,'O60.12X9 ','Preterm labor second trimester with preterm delivery second trimester, other fetus','Y','0000-00-00 00:00:00'),(128055,10,'O60.12X5 ','Preterm labor second trimester with preterm delivery second trimester, fetus 5','Y','0000-00-00 00:00:00'),(128054,10,'O60.12X4 ','Preterm labor second trimester with preterm delivery second trimester, fetus 4','Y','0000-00-00 00:00:00'),(128053,10,'O60.12X3 ','Preterm labor second trimester with preterm delivery second trimester, fetus 3','Y','0000-00-00 00:00:00'),(128052,10,'O60.12X2 ','Preterm labor second trimester with preterm delivery second trimester, fetus 2','Y','0000-00-00 00:00:00'),(128051,10,'O60.12X1 ','Preterm labor second trimester with preterm delivery second trimester, fetus 1','Y','0000-00-00 00:00:00'),(128050,10,'O60.12X0 ','Preterm labor second trimester with preterm delivery second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128049,10,'O60.10X9 ','Preterm labor with preterm delivery, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(128048,10,'O60.10X5 ','Preterm labor with preterm delivery, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(128046,10,'O60.10X3 ','Preterm labor with preterm delivery, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(128047,10,'O60.10X4 ','Preterm labor with preterm delivery, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(128045,10,'O60.10X2 ','Preterm labor with preterm delivery, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(128044,10,'O60.10X1 ','Preterm labor with preterm delivery, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(128043,10,'O60.10X0 ','Preterm labor with preterm delivery, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(128041,10,'O60.02 ','Preterm labor without delivery, second trimester','Y','0000-00-00 00:00:00'),(128042,10,'O60.03 ','Preterm labor without delivery, third trimester','Y','0000-00-00 00:00:00'),(128039,10,'O48.1 ','Prolonged pregnancy','Y','0000-00-00 00:00:00'),(128040,10,'O60.00 ','Preterm labor without delivery, unspecified trimester','Y','0000-00-00 00:00:00'),(128037,10,'O47.9 ','False labor, unspecified','Y','0000-00-00 00:00:00'),(128038,10,'O48.0 ','Post-term pregnancy','Y','0000-00-00 00:00:00'),(128036,10,'O47.1 ','False labor at or after 37 completed weeks of gestation','Y','0000-00-00 00:00:00'),(128035,10,'O47.03 ','False labor before 37 completed weeks of gestation, third trimester','Y','0000-00-00 00:00:00'),(128034,10,'O47.02 ','False labor before 37 completed weeks of gestation, second trimester','Y','0000-00-00 00:00:00'),(128033,10,'O47.00 ','False labor before 37 completed weeks of gestation, unspecified trimester','Y','0000-00-00 00:00:00'),(128031,10,'O46.92 ','Antepartum hemorrhage, unspecified, second trimester','Y','0000-00-00 00:00:00'),(128032,10,'O46.93 ','Antepartum hemorrhage, unspecified, third trimester','Y','0000-00-00 00:00:00'),(128030,10,'O46.91 ','Antepartum hemorrhage, unspecified, first trimester','Y','0000-00-00 00:00:00'),(128029,10,'O46.90 ','Antepartum hemorrhage, unspecified, unspecified trimester','Y','0000-00-00 00:00:00'),(128027,10,'O46.8X3 ','Other antepartum hemorrhage, third trimester','Y','0000-00-00 00:00:00'),(128028,10,'O46.8X9 ','Other antepartum hemorrhage, unspecified trimester','Y','0000-00-00 00:00:00'),(128026,10,'O46.8X2 ','Other antepartum hemorrhage, second trimester','Y','0000-00-00 00:00:00'),(128024,10,'O46.099 ','Antepartum hemorrhage with other coagulation defect, unspecified trimester','Y','0000-00-00 00:00:00'),(128025,10,'O46.8X1 ','Other antepartum hemorrhage, first trimester','Y','0000-00-00 00:00:00'),(128023,10,'O46.093 ','Antepartum hemorrhage with other coagulation defect, third trimester','Y','0000-00-00 00:00:00'),(128022,10,'O46.092 ','Antepartum hemorrhage with other coagulation defect, second trimester','Y','0000-00-00 00:00:00'),(128021,10,'O46.091 ','Antepartum hemorrhage with other coagulation defect, first trimester','Y','0000-00-00 00:00:00'),(128020,10,'O46.029 ','Antepartum hemorrhage with disseminated intravascular coagulation, unspecified trimester','Y','0000-00-00 00:00:00'),(128019,10,'O46.023 ','Antepartum hemorrhage with disseminated intravascular coagulation, third trimester','Y','0000-00-00 00:00:00'),(128018,10,'O46.022 ','Antepartum hemorrhage with disseminated intravascular coagulation, second trimester','Y','0000-00-00 00:00:00'),(128017,10,'O46.021 ','Antepartum hemorrhage with disseminated intravascular coagulation, first trimester','Y','0000-00-00 00:00:00'),(128015,10,'O46.013 ','Antepartum hemorrhage with afibrinogenemia, third trimester','Y','0000-00-00 00:00:00'),(128016,10,'O46.019 ','Antepartum hemorrhage with afibrinogenemia, unspecified trimester','Y','0000-00-00 00:00:00'),(128014,10,'O46.012 ','Antepartum hemorrhage with afibrinogenemia, second trimester','Y','0000-00-00 00:00:00'),(128013,10,'O46.011 ','Antepartum hemorrhage with afibrinogenemia, first trimester','Y','0000-00-00 00:00:00'),(128012,10,'O46.009 ','Antepartum hemorrhage with coagulation defect, unspecified, unspecified trimester','Y','0000-00-00 00:00:00'),(128011,10,'O46.003 ','Antepartum hemorrhage with coagulation defect, unspecified, third trimester','Y','0000-00-00 00:00:00'),(128010,10,'O46.002 ','Antepartum hemorrhage with coagulation defect, unspecified, second trimester','Y','0000-00-00 00:00:00'),(128009,10,'O46.001 ','Antepartum hemorrhage with coagulation defect, unspecified, first trimester','Y','0000-00-00 00:00:00'),(128008,10,'O45.93 ','Premature separation of placenta, unspecified, third trimester','Y','0000-00-00 00:00:00'),(128007,10,'O45.92 ','Premature separation of placenta, unspecified, second trimester','Y','0000-00-00 00:00:00'),(128006,10,'O45.91 ','Premature separation of placenta, unspecified, first trimester','Y','0000-00-00 00:00:00'),(128004,10,'O45.8X9 ','Other premature separation of placenta, unspecified trimester','Y','0000-00-00 00:00:00'),(128005,10,'O45.90 ','Premature separation of placenta, unspecified, unspecified trimester','Y','0000-00-00 00:00:00'),(128003,10,'O45.8X3 ','Other premature separation of placenta, third trimester','Y','0000-00-00 00:00:00'),(128001,10,'O45.8X1 ','Other premature separation of placenta, first trimester','Y','0000-00-00 00:00:00'),(128002,10,'O45.8X2 ','Other premature separation of placenta, second trimester','Y','0000-00-00 00:00:00'),(128000,10,'O45.099 ','Premature separation of placenta with other coagulation defect, unspecified trimester','Y','0000-00-00 00:00:00'),(127999,10,'O45.093 ','Premature separation of placenta with other coagulation defect, third trimester','Y','0000-00-00 00:00:00'),(127998,10,'O45.092 ','Premature separation of placenta with other coagulation defect, second trimester','Y','0000-00-00 00:00:00'),(127997,10,'O45.091 ','Premature separation of placenta with other coagulation defect, first trimester','Y','0000-00-00 00:00:00'),(127996,10,'O45.029 ','Premature separation of placenta with disseminated intravascular coagulation, unspecified trimester','Y','0000-00-00 00:00:00'),(127995,10,'O45.023 ','Premature separation of placenta with disseminated intravascular coagulation, third trimester','Y','0000-00-00 00:00:00'),(127994,10,'O45.022 ','Premature separation of placenta with disseminated intravascular coagulation, second trimester','Y','0000-00-00 00:00:00'),(127993,10,'O45.021 ','Premature separation of placenta with disseminated intravascular coagulation, first trimester','Y','0000-00-00 00:00:00'),(127992,10,'O45.019 ','Premature separation of placenta with afibrinogenemia, unspecified trimester','Y','0000-00-00 00:00:00'),(127991,10,'O45.013 ','Premature separation of placenta with afibrinogenemia, third trimester','Y','0000-00-00 00:00:00'),(127990,10,'O45.012 ','Premature separation of placenta with afibrinogenemia, second trimester','Y','0000-00-00 00:00:00'),(127989,10,'O45.011 ','Premature separation of placenta with afibrinogenemia, first trimester','Y','0000-00-00 00:00:00'),(127988,10,'O45.009 ','Premature separation of placenta with coagulation defect, unspecified, unspecified trimester','Y','0000-00-00 00:00:00'),(127987,10,'O45.003 ','Premature separation of placenta with coagulation defect, unspecified, third trimester','Y','0000-00-00 00:00:00'),(127986,10,'O45.002 ','Premature separation of placenta with coagulation defect, unspecified, second trimester','Y','0000-00-00 00:00:00'),(127985,10,'O45.001 ','Premature separation of placenta with coagulation defect, unspecified, first trimester','Y','0000-00-00 00:00:00'),(127984,10,'O44.53 ','Low lying placenta with hemorrhage, third trimester','Y','0000-00-00 00:00:00'),(127983,10,'O44.52 ','Low lying placenta with hemorrhage, second trimester','Y','0000-00-00 00:00:00'),(127982,10,'O44.51 ','Low lying placenta with hemorrhage, first trimester','Y','0000-00-00 00:00:00'),(127980,10,'O44.43 ','Low lying placenta NOS or without hemorrhage, third trimester','Y','0000-00-00 00:00:00'),(127981,10,'O44.50 ','Low lying placenta with hemorrhage, unspecified trimester','Y','0000-00-00 00:00:00'),(127979,10,'O44.42 ','Low lying placenta NOS or without hemorrhage, second trimester','Y','0000-00-00 00:00:00'),(127978,10,'O44.41 ','Low lying placenta NOS or without hemorrhage, first trimester','Y','0000-00-00 00:00:00'),(127977,10,'O44.40 ','Low lying placenta NOS or without hemorrhage, unspecified trimester','Y','0000-00-00 00:00:00'),(127976,10,'O44.33 ','Partial placenta previa with hemorrhage, third trimester','Y','0000-00-00 00:00:00'),(127975,10,'O44.32 ','Partial placenta previa with hemorrhage, second trimester','Y','0000-00-00 00:00:00'),(127973,10,'O44.30 ','Partial placenta previa with hemorrhage, unspecified trimester','Y','0000-00-00 00:00:00'),(127974,10,'O44.31 ','Partial placenta previa with hemorrhage, first trimester','Y','0000-00-00 00:00:00'),(127972,10,'O44.23 ','Partial placenta previa NOS or without hemorrhage, third trimester','Y','0000-00-00 00:00:00'),(127971,10,'O44.22 ','Partial placenta previa NOS or without hemorrhage, second trimester','Y','0000-00-00 00:00:00'),(127970,10,'O44.21 ','Partial placenta previa NOS or without hemorrhage, first trimester','Y','0000-00-00 00:00:00'),(127968,10,'O44.13 ','Complete placenta previa with hemorrhage, third trimester','Y','0000-00-00 00:00:00'),(127969,10,'O44.20 ','Partial placenta previa NOS or without hemorrhage, unspecified trimester','Y','0000-00-00 00:00:00'),(127967,10,'O44.12 ','Complete placenta previa with hemorrhage, second trimester','Y','0000-00-00 00:00:00'),(127966,10,'O44.11 ','Complete placenta previa with hemorrhage, first trimester','Y','0000-00-00 00:00:00'),(127964,10,'O44.03 ','Complete placenta previa NOS or without hemorrhage, third trimester','Y','0000-00-00 00:00:00'),(127965,10,'O44.10 ','Complete placenta previa with hemorrhage, unspecified trimester','Y','0000-00-00 00:00:00'),(127963,10,'O44.02 ','Complete placenta previa NOS or without hemorrhage, second trimester','Y','0000-00-00 00:00:00'),(127961,10,'O44.00 ','Complete placenta previa NOS or without hemorrhage, unspecified trimester','Y','0000-00-00 00:00:00'),(127962,10,'O44.01 ','Complete placenta previa NOS or without hemorrhage, first trimester','Y','0000-00-00 00:00:00'),(127960,10,'O43.93 ','Unspecified placental disorder, third trimester','Y','0000-00-00 00:00:00'),(127958,10,'O43.91 ','Unspecified placental disorder, first trimester','Y','0000-00-00 00:00:00'),(127959,10,'O43.92 ','Unspecified placental disorder, second trimester','Y','0000-00-00 00:00:00'),(127957,10,'O43.90 ','Unspecified placental disorder, unspecified trimester','Y','0000-00-00 00:00:00'),(127956,10,'O43.899 ','Other placental disorders, unspecified trimester','Y','0000-00-00 00:00:00'),(127954,10,'O43.892 ','Other placental disorders, second trimester','Y','0000-00-00 00:00:00'),(127955,10,'O43.893 ','Other placental disorders, third trimester','Y','0000-00-00 00:00:00'),(127953,10,'O43.891 ','Other placental disorders, first trimester','Y','0000-00-00 00:00:00'),(127951,10,'O43.813 ','Placental infarction, third trimester','Y','0000-00-00 00:00:00'),(127952,10,'O43.819 ','Placental infarction, unspecified trimester','Y','0000-00-00 00:00:00'),(127949,10,'O43.811 ','Placental infarction, first trimester','Y','0000-00-00 00:00:00'),(127950,10,'O43.812 ','Placental infarction, second trimester','Y','0000-00-00 00:00:00'),(127947,10,'O43.233 ','Placenta percreta, third trimester','Y','0000-00-00 00:00:00'),(127948,10,'O43.239 ','Placenta percreta, unspecified trimester','Y','0000-00-00 00:00:00'),(127946,10,'O43.232 ','Placenta percreta, second trimester','Y','0000-00-00 00:00:00'),(127944,10,'O43.229 ','Placenta increta, unspecified trimester','Y','0000-00-00 00:00:00'),(127945,10,'O43.231 ','Placenta percreta, first trimester','Y','0000-00-00 00:00:00'),(127942,10,'O43.222 ','Placenta increta, second trimester','Y','0000-00-00 00:00:00'),(127943,10,'O43.223 ','Placenta increta, third trimester','Y','0000-00-00 00:00:00'),(127940,10,'O43.219 ','Placenta accreta, unspecified trimester','Y','0000-00-00 00:00:00'),(127941,10,'O43.221 ','Placenta increta, first trimester','Y','0000-00-00 00:00:00'),(127938,10,'O43.212 ','Placenta accreta, second trimester','Y','0000-00-00 00:00:00'),(127939,10,'O43.213 ','Placenta accreta, third trimester','Y','0000-00-00 00:00:00'),(127937,10,'O43.211 ','Placenta accreta, first trimester','Y','0000-00-00 00:00:00'),(127936,10,'O43.199 ','Other malformation of placenta, unspecified trimester','Y','0000-00-00 00:00:00'),(127934,10,'O43.192 ','Other malformation of placenta, second trimester','Y','0000-00-00 00:00:00'),(127935,10,'O43.193 ','Other malformation of placenta, third trimester','Y','0000-00-00 00:00:00'),(127933,10,'O43.191 ','Other malformation of placenta, first trimester','Y','0000-00-00 00:00:00'),(127931,10,'O43.123 ','Velamentous insertion of umbilical cord, third trimester','Y','0000-00-00 00:00:00'),(127932,10,'O43.129 ','Velamentous insertion of umbilical cord, unspecified trimester','Y','0000-00-00 00:00:00'),(127930,10,'O43.122 ','Velamentous insertion of umbilical cord, second trimester','Y','0000-00-00 00:00:00'),(127928,10,'O43.119 ','Circumvallate placenta, unspecified trimester','Y','0000-00-00 00:00:00'),(127929,10,'O43.121 ','Velamentous insertion of umbilical cord, first trimester','Y','0000-00-00 00:00:00'),(127927,10,'O43.113 ','Circumvallate placenta, third trimester','Y','0000-00-00 00:00:00'),(127926,10,'O43.112 ','Circumvallate placenta, second trimester','Y','0000-00-00 00:00:00'),(127924,10,'O43.109 ','Malformation of placenta, unspecified, unspecified trimester','Y','0000-00-00 00:00:00'),(127925,10,'O43.111 ','Circumvallate placenta, first trimester','Y','0000-00-00 00:00:00'),(127923,10,'O43.103 ','Malformation of placenta, unspecified, third trimester','Y','0000-00-00 00:00:00'),(127922,10,'O43.102 ','Malformation of placenta, unspecified, second trimester','Y','0000-00-00 00:00:00'),(127920,10,'O43.029 ','Fetus-to-fetus placental transfusion syndrome, unspecified trimester','Y','0000-00-00 00:00:00'),(127921,10,'O43.101 ','Malformation of placenta, unspecified, first trimester','Y','0000-00-00 00:00:00'),(127918,10,'O43.022 ','Fetus-to-fetus placental transfusion syndrome, second trimester','Y','0000-00-00 00:00:00'),(127919,10,'O43.023 ','Fetus-to-fetus placental transfusion syndrome, third trimester','Y','0000-00-00 00:00:00'),(127917,10,'O43.021 ','Fetus-to-fetus placental transfusion syndrome, first trimester','Y','0000-00-00 00:00:00'),(127916,10,'O43.019 ','Fetomaternal placental transfusion syndrome, unspecified trimester','Y','0000-00-00 00:00:00'),(127914,10,'O43.012 ','Fetomaternal placental transfusion syndrome, second trimester','Y','0000-00-00 00:00:00'),(127915,10,'O43.013 ','Fetomaternal placental transfusion syndrome, third trimester','Y','0000-00-00 00:00:00'),(127913,10,'O43.011 ','Fetomaternal placental transfusion syndrome, first trimester','Y','0000-00-00 00:00:00'),(127912,10,'O42.92 ','Full-term premature rupture of membranes, unspecified as to length of time between rupture and onset of labor','Y','0000-00-00 00:00:00'),(127911,10,'O42.919 ','Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, unspecified trimester','Y','0000-00-00 00:00:00'),(127910,10,'O42.913 ','Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, third trimester','Y','0000-00-00 00:00:00'),(127909,10,'O42.912 ','Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, second trimester','Y','0000-00-00 00:00:00'),(127908,10,'O42.911 ','Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, first trimester','Y','0000-00-00 00:00:00'),(127907,10,'O42.90 ','Premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, unspecified weeks of gestation','Y','0000-00-00 00:00:00'),(127906,10,'O42.12 ','Full-term premature rupture of membranes, onset of labor more than 24 hours following rupture','Y','0000-00-00 00:00:00'),(127905,10,'O42.119 ','Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture, unspecified trimester','Y','0000-00-00 00:00:00'),(127904,10,'O42.113 ','Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture, third trimester','Y','0000-00-00 00:00:00'),(127903,10,'O42.112 ','Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture, second trimester','Y','0000-00-00 00:00:00'),(127902,10,'O42.111 ','Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture, first trimester','Y','0000-00-00 00:00:00'),(127901,10,'O42.10 ','Premature rupture of membranes, onset of labor more than 24 hours following rupture, unspecified weeks of gestation','Y','0000-00-00 00:00:00'),(127900,10,'O42.02 ','Full-term premature rupture of membranes, onset of labor within 24 hours of rupture','Y','0000-00-00 00:00:00'),(127899,10,'O42.019 ','Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, unspecified trimester','Y','0000-00-00 00:00:00'),(127898,10,'O42.013 ','Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, third trimester','Y','0000-00-00 00:00:00'),(127897,10,'O42.012 ','Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, second trimester','Y','0000-00-00 00:00:00'),(127896,10,'O42.011 ','Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, first trimester','Y','0000-00-00 00:00:00'),(127895,10,'O42.00 ','Premature rupture of membranes, onset of labor within 24 hours of rupture, unspecified weeks of gestation','Y','0000-00-00 00:00:00'),(127894,10,'O41.93X9 ','Disorder of amniotic fluid and membranes, unspecified, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127893,10,'O41.93X5 ','Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127892,10,'O41.93X4 ','Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127891,10,'O41.93X3 ','Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127890,10,'O41.93X2 ','Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127889,10,'O41.93X1 ','Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127888,10,'O41.93X0 ','Disorder of amniotic fluid and membranes, unspecified, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127887,10,'O41.92X9 ','Disorder of amniotic fluid and membranes, unspecified, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127886,10,'O41.92X5 ','Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127885,10,'O41.92X4 ','Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127884,10,'O41.92X3 ','Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127883,10,'O41.92X2 ','Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127882,10,'O41.92X1 ','Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127881,10,'O41.92X0 ','Disorder of amniotic fluid and membranes, unspecified, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127880,10,'O41.91X9 ','Disorder of amniotic fluid and membranes, unspecified, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127879,10,'O41.91X5 ','Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127878,10,'O41.91X4 ','Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127877,10,'O41.91X3 ','Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127876,10,'O41.91X2 ','Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127875,10,'O41.91X1 ','Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127874,10,'O41.91X0 ','Disorder of amniotic fluid and membranes, unspecified, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127873,10,'O41.90X9 ','Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127872,10,'O41.90X5 ','Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127871,10,'O41.90X4 ','Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127870,10,'O41.90X3 ','Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127869,10,'O41.90X2 ','Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127868,10,'O41.90X1 ','Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127867,10,'O41.90X0 ','Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127866,10,'O41.8X99 ','Other specified disorders of amniotic fluid and membranes, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127865,10,'O41.8X95 ','Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127864,10,'O41.8X94 ','Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127863,10,'O41.8X93 ','Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127862,10,'O41.8X92 ','Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127861,10,'O41.8X91 ','Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127860,10,'O41.8X90 ','Other specified disorders of amniotic fluid and membranes, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127859,10,'O41.8X39 ','Other specified disorders of amniotic fluid and membranes, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127858,10,'O41.8X35 ','Other specified disorders of amniotic fluid and membranes, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127857,10,'O41.8X34 ','Other specified disorders of amniotic fluid and membranes, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127856,10,'O41.8X33 ','Other specified disorders of amniotic fluid and membranes, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127855,10,'O41.8X32 ','Other specified disorders of amniotic fluid and membranes, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127854,10,'O41.8X31 ','Other specified disorders of amniotic fluid and membranes, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127853,10,'O41.8X30 ','Other specified disorders of amniotic fluid and membranes, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127852,10,'O41.8X29 ','Other specified disorders of amniotic fluid and membranes, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127851,10,'O41.8X25 ','Other specified disorders of amniotic fluid and membranes, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127850,10,'O41.8X24 ','Other specified disorders of amniotic fluid and membranes, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127849,10,'O41.8X23 ','Other specified disorders of amniotic fluid and membranes, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127848,10,'O41.8X22 ','Other specified disorders of amniotic fluid and membranes, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127847,10,'O41.8X21 ','Other specified disorders of amniotic fluid and membranes, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127846,10,'O41.8X20 ','Other specified disorders of amniotic fluid and membranes, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127845,10,'O41.8X19 ','Other specified disorders of amniotic fluid and membranes, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127844,10,'O41.8X15 ','Other specified disorders of amniotic fluid and membranes, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127843,10,'O41.8X14 ','Other specified disorders of amniotic fluid and membranes, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127842,10,'O41.8X13 ','Other specified disorders of amniotic fluid and membranes, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127841,10,'O41.8X12 ','Other specified disorders of amniotic fluid and membranes, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127840,10,'O41.8X11 ','Other specified disorders of amniotic fluid and membranes, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127838,10,'O41.1499 ','Placentitis, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127839,10,'O41.8X10 ','Other specified disorders of amniotic fluid and membranes, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127837,10,'O41.1495 ','Placentitis, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127836,10,'O41.1494 ','Placentitis, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127834,10,'O41.1492 ','Placentitis, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127835,10,'O41.1493 ','Placentitis, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127833,10,'O41.1491 ','Placentitis, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127832,10,'O41.1490 ','Placentitis, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127830,10,'O41.1435 ','Placentitis, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127831,10,'O41.1439 ','Placentitis, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127829,10,'O41.1434 ','Placentitis, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127828,10,'O41.1433 ','Placentitis, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127827,10,'O41.1432 ','Placentitis, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127826,10,'O41.1431 ','Placentitis, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127825,10,'O41.1430 ','Placentitis, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127824,10,'O41.1429 ','Placentitis, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127823,10,'O41.1425 ','Placentitis, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127822,10,'O41.1424 ','Placentitis, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127821,10,'O41.1423 ','Placentitis, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127820,10,'O41.1422 ','Placentitis, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127819,10,'O41.1421 ','Placentitis, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127818,10,'O41.1420 ','Placentitis, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127817,10,'O41.1419 ','Placentitis, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127816,10,'O41.1415 ','Placentitis, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127815,10,'O41.1414 ','Placentitis, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127814,10,'O41.1413 ','Placentitis, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127813,10,'O41.1412 ','Placentitis, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127812,10,'O41.1411 ','Placentitis, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127811,10,'O41.1410 ','Placentitis, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127810,10,'O41.1299 ','Chorioamnionitis, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127809,10,'O41.1295 ','Chorioamnionitis, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127808,10,'O41.1294 ','Chorioamnionitis, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127807,10,'O41.1293 ','Chorioamnionitis, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127806,10,'O41.1292 ','Chorioamnionitis, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127805,10,'O41.1291 ','Chorioamnionitis, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127804,10,'O41.1290 ','Chorioamnionitis, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127803,10,'O41.1239 ','Chorioamnionitis, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127802,10,'O41.1235 ','Chorioamnionitis, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127801,10,'O41.1234 ','Chorioamnionitis, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127800,10,'O41.1233 ','Chorioamnionitis, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127799,10,'O41.1232 ','Chorioamnionitis, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127798,10,'O41.1231 ','Chorioamnionitis, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127797,10,'O41.1230 ','Chorioamnionitis, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127796,10,'O41.1229 ','Chorioamnionitis, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127795,10,'O41.1225 ','Chorioamnionitis, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127794,10,'O41.1224 ','Chorioamnionitis, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127793,10,'O41.1223 ','Chorioamnionitis, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127792,10,'O41.1222 ','Chorioamnionitis, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127791,10,'O41.1221 ','Chorioamnionitis, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127790,10,'O41.1220 ','Chorioamnionitis, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127789,10,'O41.1219 ','Chorioamnionitis, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127788,10,'O41.1215 ','Chorioamnionitis, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127787,10,'O41.1214 ','Chorioamnionitis, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127786,10,'O41.1213 ','Chorioamnionitis, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127785,10,'O41.1212 ','Chorioamnionitis, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127784,10,'O41.1211 ','Chorioamnionitis, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127783,10,'O41.1210 ','Chorioamnionitis, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127782,10,'O41.1099 ','Infection of amniotic sac and membranes, unspecified, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127781,10,'O41.1095 ','Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127780,10,'O41.1094 ','Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127779,10,'O41.1093 ','Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127778,10,'O41.1092 ','Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127777,10,'O41.1091 ','Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127776,10,'O41.1090 ','Infection of amniotic sac and membranes, unspecified, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127775,10,'O41.1039 ','Infection of amniotic sac and membranes, unspecified, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127774,10,'O41.1035 ','Infection of amniotic sac and membranes, unspecified, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127773,10,'O41.1034 ','Infection of amniotic sac and membranes, unspecified, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127772,10,'O41.1033 ','Infection of amniotic sac and membranes, unspecified, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127771,10,'O41.1032 ','Infection of amniotic sac and membranes, unspecified, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127770,10,'O41.1031 ','Infection of amniotic sac and membranes, unspecified, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127769,10,'O41.1030 ','Infection of amniotic sac and membranes, unspecified, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127768,10,'O41.1029 ','Infection of amniotic sac and membranes, unspecified, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127767,10,'O41.1025 ','Infection of amniotic sac and membranes, unspecified, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127766,10,'O41.1024 ','Infection of amniotic sac and membranes, unspecified, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127765,10,'O41.1023 ','Infection of amniotic sac and membranes, unspecified, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127764,10,'O41.1022 ','Infection of amniotic sac and membranes, unspecified, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127763,10,'O41.1021 ','Infection of amniotic sac and membranes, unspecified, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127762,10,'O41.1020 ','Infection of amniotic sac and membranes, unspecified, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127761,10,'O41.1019 ','Infection of amniotic sac and membranes, unspecified, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127760,10,'O41.1015 ','Infection of amniotic sac and membranes, unspecified, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127759,10,'O41.1014 ','Infection of amniotic sac and membranes, unspecified, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127758,10,'O41.1013 ','Infection of amniotic sac and membranes, unspecified, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127757,10,'O41.1012 ','Infection of amniotic sac and membranes, unspecified, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127756,10,'O41.1011 ','Infection of amniotic sac and membranes, unspecified, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127755,10,'O41.1010 ','Infection of amniotic sac and membranes, unspecified, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127754,10,'O41.03X9 ','Oligohydramnios, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127753,10,'O41.03X5 ','Oligohydramnios, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127752,10,'O41.03X4 ','Oligohydramnios, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127751,10,'O41.03X3 ','Oligohydramnios, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127750,10,'O41.03X2 ','Oligohydramnios, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127749,10,'O41.03X1 ','Oligohydramnios, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127748,10,'O41.03X0 ','Oligohydramnios, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127747,10,'O41.02X9 ','Oligohydramnios, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127746,10,'O41.02X5 ','Oligohydramnios, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127745,10,'O41.02X4 ','Oligohydramnios, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127744,10,'O41.02X3 ','Oligohydramnios, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127743,10,'O41.02X2 ','Oligohydramnios, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127742,10,'O41.02X1 ','Oligohydramnios, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127741,10,'O41.02X0 ','Oligohydramnios, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127740,10,'O41.01X9 ','Oligohydramnios, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127739,10,'O41.01X5 ','Oligohydramnios, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127738,10,'O41.01X4 ','Oligohydramnios, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127737,10,'O41.01X3 ','Oligohydramnios, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127736,10,'O41.01X2 ','Oligohydramnios, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127735,10,'O41.01X1 ','Oligohydramnios, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127734,10,'O41.01X0 ','Oligohydramnios, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127733,10,'O41.00X9 ','Oligohydramnios, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127732,10,'O41.00X5 ','Oligohydramnios, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127731,10,'O41.00X4 ','Oligohydramnios, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127730,10,'O41.00X3 ','Oligohydramnios, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127729,10,'O41.00X2 ','Oligohydramnios, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127728,10,'O41.00X1 ','Oligohydramnios, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127727,10,'O41.00X0 ','Oligohydramnios, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127726,10,'O40.9XX9 ','Polyhydramnios, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127725,10,'O40.9XX5 ','Polyhydramnios, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127724,10,'O40.9XX4 ','Polyhydramnios, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127723,10,'O40.9XX3 ','Polyhydramnios, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127722,10,'O40.9XX2 ','Polyhydramnios, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127721,10,'O40.9XX1 ','Polyhydramnios, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127720,10,'O40.9XX0 ','Polyhydramnios, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127719,10,'O40.3XX9 ','Polyhydramnios, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127718,10,'O40.3XX5 ','Polyhydramnios, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127717,10,'O40.3XX4 ','Polyhydramnios, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127716,10,'O40.3XX3 ','Polyhydramnios, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127715,10,'O40.3XX2 ','Polyhydramnios, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127714,10,'O40.3XX1 ','Polyhydramnios, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127713,10,'O40.3XX0 ','Polyhydramnios, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127712,10,'O40.2XX9 ','Polyhydramnios, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127711,10,'O40.2XX5 ','Polyhydramnios, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127710,10,'O40.2XX4 ','Polyhydramnios, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127709,10,'O40.2XX3 ','Polyhydramnios, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127708,10,'O40.2XX2 ','Polyhydramnios, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127707,10,'O40.2XX1 ','Polyhydramnios, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127706,10,'O40.2XX0 ','Polyhydramnios, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127705,10,'O40.1XX9 ','Polyhydramnios, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127704,10,'O40.1XX5 ','Polyhydramnios, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127703,10,'O40.1XX4 ','Polyhydramnios, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127702,10,'O40.1XX3 ','Polyhydramnios, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127701,10,'O40.1XX2 ','Polyhydramnios, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127700,10,'O40.1XX1 ','Polyhydramnios, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127699,10,'O40.1XX0 ','Polyhydramnios, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127698,10,'O36.93X9 ','Maternal care for fetal problem, unspecified, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127697,10,'O36.93X5 ','Maternal care for fetal problem, unspecified, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127696,10,'O36.93X4 ','Maternal care for fetal problem, unspecified, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127695,10,'O36.93X3 ','Maternal care for fetal problem, unspecified, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127694,10,'O36.93X2 ','Maternal care for fetal problem, unspecified, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127693,10,'O36.93X1 ','Maternal care for fetal problem, unspecified, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127692,10,'O36.93X0 ','Maternal care for fetal problem, unspecified, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127691,10,'O36.92X9 ','Maternal care for fetal problem, unspecified, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127690,10,'O36.92X5 ','Maternal care for fetal problem, unspecified, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127689,10,'O36.92X4 ','Maternal care for fetal problem, unspecified, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127688,10,'O36.92X3 ','Maternal care for fetal problem, unspecified, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127687,10,'O36.92X2 ','Maternal care for fetal problem, unspecified, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127686,10,'O36.92X1 ','Maternal care for fetal problem, unspecified, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127685,10,'O36.92X0 ','Maternal care for fetal problem, unspecified, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127684,10,'O36.91X9 ','Maternal care for fetal problem, unspecified, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127683,10,'O36.91X5 ','Maternal care for fetal problem, unspecified, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127682,10,'O36.91X4 ','Maternal care for fetal problem, unspecified, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127681,10,'O36.91X3 ','Maternal care for fetal problem, unspecified, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127680,10,'O36.91X2 ','Maternal care for fetal problem, unspecified, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127679,10,'O36.91X1 ','Maternal care for fetal problem, unspecified, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127678,10,'O36.91X0 ','Maternal care for fetal problem, unspecified, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127677,10,'O36.90X9 ','Maternal care for fetal problem, unspecified, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127676,10,'O36.90X5 ','Maternal care for fetal problem, unspecified, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127675,10,'O36.90X4 ','Maternal care for fetal problem, unspecified, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127674,10,'O36.90X3 ','Maternal care for fetal problem, unspecified, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127673,10,'O36.90X2 ','Maternal care for fetal problem, unspecified, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127672,10,'O36.90X1 ','Maternal care for fetal problem, unspecified, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127671,10,'O36.90X0 ','Maternal care for fetal problem, unspecified, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127670,10,'O36.8999 ','Maternal care for other specified fetal problems, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127669,10,'O36.8995 ','Maternal care for other specified fetal problems, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127668,10,'O36.8994 ','Maternal care for other specified fetal problems, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127667,10,'O36.8993 ','Maternal care for other specified fetal problems, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127666,10,'O36.8992 ','Maternal care for other specified fetal problems, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127665,10,'O36.8991 ','Maternal care for other specified fetal problems, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127664,10,'O36.8990 ','Maternal care for other specified fetal problems, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127663,10,'O36.8939 ','Maternal care for other specified fetal problems, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127662,10,'O36.8935 ','Maternal care for other specified fetal problems, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127661,10,'O36.8934 ','Maternal care for other specified fetal problems, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127660,10,'O36.8933 ','Maternal care for other specified fetal problems, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127659,10,'O36.8932 ','Maternal care for other specified fetal problems, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127658,10,'O36.8931 ','Maternal care for other specified fetal problems, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127657,10,'O36.8930 ','Maternal care for other specified fetal problems, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127656,10,'O36.8929 ','Maternal care for other specified fetal problems, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127655,10,'O36.8925 ','Maternal care for other specified fetal problems, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127654,10,'O36.8924 ','Maternal care for other specified fetal problems, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127653,10,'O36.8923 ','Maternal care for other specified fetal problems, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127652,10,'O36.8922 ','Maternal care for other specified fetal problems, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127651,10,'O36.8921 ','Maternal care for other specified fetal problems, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127650,10,'O36.8920 ','Maternal care for other specified fetal problems, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127649,10,'O36.8919 ','Maternal care for other specified fetal problems, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127648,10,'O36.8915 ','Maternal care for other specified fetal problems, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127647,10,'O36.8914 ','Maternal care for other specified fetal problems, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127646,10,'O36.8913 ','Maternal care for other specified fetal problems, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127645,10,'O36.8912 ','Maternal care for other specified fetal problems, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127644,10,'O36.8911 ','Maternal care for other specified fetal problems, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127643,10,'O36.8910 ','Maternal care for other specified fetal problems, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127642,10,'O36.8399 ','Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127641,10,'O36.8395 ','Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127640,10,'O36.8394 ','Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127639,10,'O36.8393 ','Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127638,10,'O36.8392 ','Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127637,10,'O36.8391 ','Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127636,10,'O36.8390 ','Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127635,10,'O36.8339 ','Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127634,10,'O36.8335 ','Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127633,10,'O36.8334 ','Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127632,10,'O36.8333 ','Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127631,10,'O36.8332 ','Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127630,10,'O36.8331 ','Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127629,10,'O36.8330 ','Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127628,10,'O36.8329 ','Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127627,10,'O36.8325 ','Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127626,10,'O36.8324 ','Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127625,10,'O36.8323 ','Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127624,10,'O36.8322 ','Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127623,10,'O36.8321 ','Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127622,10,'O36.8320 ','Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127621,10,'O36.8319 ','Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127620,10,'O36.8315 ','Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127619,10,'O36.8314 ','Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127618,10,'O36.8313 ','Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127617,10,'O36.8312 ','Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127616,10,'O36.8311 ','Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127615,10,'O36.8310 ','Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127614,10,'O36.8299 ','Fetal anemia and thrombocytopenia, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127613,10,'O36.8295 ','Fetal anemia and thrombocytopenia, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127612,10,'O36.8294 ','Fetal anemia and thrombocytopenia, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127611,10,'O36.8293 ','Fetal anemia and thrombocytopenia, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127610,10,'O36.8292 ','Fetal anemia and thrombocytopenia, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127609,10,'O36.8291 ','Fetal anemia and thrombocytopenia, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127608,10,'O36.8290 ','Fetal anemia and thrombocytopenia, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127607,10,'O36.8239 ','Fetal anemia and thrombocytopenia, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127606,10,'O36.8235 ','Fetal anemia and thrombocytopenia, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127605,10,'O36.8234 ','Fetal anemia and thrombocytopenia, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127604,10,'O36.8233 ','Fetal anemia and thrombocytopenia, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127603,10,'O36.8232 ','Fetal anemia and thrombocytopenia, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127602,10,'O36.8231 ','Fetal anemia and thrombocytopenia, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127601,10,'O36.8230 ','Fetal anemia and thrombocytopenia, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127600,10,'O36.8229 ','Fetal anemia and thrombocytopenia, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127599,10,'O36.8225 ','Fetal anemia and thrombocytopenia, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127598,10,'O36.8224 ','Fetal anemia and thrombocytopenia, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127597,10,'O36.8223 ','Fetal anemia and thrombocytopenia, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127596,10,'O36.8222 ','Fetal anemia and thrombocytopenia, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127595,10,'O36.8221 ','Fetal anemia and thrombocytopenia, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127594,10,'O36.8220 ','Fetal anemia and thrombocytopenia, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127593,10,'O36.8219 ','Fetal anemia and thrombocytopenia, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127592,10,'O36.8215 ','Fetal anemia and thrombocytopenia, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127591,10,'O36.8214 ','Fetal anemia and thrombocytopenia, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127590,10,'O36.8213 ','Fetal anemia and thrombocytopenia, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127589,10,'O36.8212 ','Fetal anemia and thrombocytopenia, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127588,10,'O36.8211 ','Fetal anemia and thrombocytopenia, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127587,10,'O36.8210 ','Fetal anemia and thrombocytopenia, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127586,10,'O36.8199 ','Decreased fetal movements, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127585,10,'O36.8195 ','Decreased fetal movements, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127584,10,'O36.8194 ','Decreased fetal movements, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127583,10,'O36.8193 ','Decreased fetal movements, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127582,10,'O36.8192 ','Decreased fetal movements, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127581,10,'O36.8191 ','Decreased fetal movements, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127580,10,'O36.8190 ','Decreased fetal movements, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127579,10,'O36.8139 ','Decreased fetal movements, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127578,10,'O36.8135 ','Decreased fetal movements, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127577,10,'O36.8134 ','Decreased fetal movements, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127576,10,'O36.8133 ','Decreased fetal movements, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127575,10,'O36.8132 ','Decreased fetal movements, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127574,10,'O36.8131 ','Decreased fetal movements, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127573,10,'O36.8130 ','Decreased fetal movements, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127572,10,'O36.8129 ','Decreased fetal movements, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127571,10,'O36.8125 ','Decreased fetal movements, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127570,10,'O36.8124 ','Decreased fetal movements, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127569,10,'O36.8123 ','Decreased fetal movements, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127568,10,'O36.8122 ','Decreased fetal movements, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127567,10,'O36.8121 ','Decreased fetal movements, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127566,10,'O36.8120 ','Decreased fetal movements, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127565,10,'O36.80X9 ','Pregnancy with inconclusive fetal viability, other fetus','Y','0000-00-00 00:00:00'),(127564,10,'O36.80X5 ','Pregnancy with inconclusive fetal viability, fetus 5','Y','0000-00-00 00:00:00'),(127563,10,'O36.80X4 ','Pregnancy with inconclusive fetal viability, fetus 4','Y','0000-00-00 00:00:00'),(127562,10,'O36.80X3 ','Pregnancy with inconclusive fetal viability, fetus 3','Y','0000-00-00 00:00:00'),(127561,10,'O36.80X2 ','Pregnancy with inconclusive fetal viability, fetus 2','Y','0000-00-00 00:00:00'),(127560,10,'O36.80X1 ','Pregnancy with inconclusive fetal viability, fetus 1','Y','0000-00-00 00:00:00'),(127559,10,'O36.80X0 ','Pregnancy with inconclusive fetal viability, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127558,10,'O36.73X9 ','Maternal care for viable fetus in abdominal pregnancy, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127557,10,'O36.73X5 ','Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127556,10,'O36.73X4 ','Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127555,10,'O36.73X3 ','Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127554,10,'O36.73X2 ','Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127553,10,'O36.73X1 ','Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127552,10,'O36.73X0 ','Maternal care for viable fetus in abdominal pregnancy, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127551,10,'O36.72X9 ','Maternal care for viable fetus in abdominal pregnancy, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127550,10,'O36.72X5 ','Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127549,10,'O36.72X4 ','Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127548,10,'O36.72X3 ','Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127547,10,'O36.72X2 ','Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127546,10,'O36.72X1 ','Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127545,10,'O36.72X0 ','Maternal care for viable fetus in abdominal pregnancy, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127544,10,'O36.71X9 ','Maternal care for viable fetus in abdominal pregnancy, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127543,10,'O36.71X5 ','Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127542,10,'O36.71X4 ','Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127541,10,'O36.71X3 ','Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127540,10,'O36.71X2 ','Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127539,10,'O36.71X1 ','Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127538,10,'O36.71X0 ','Maternal care for viable fetus in abdominal pregnancy, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127537,10,'O36.70X9 ','Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127536,10,'O36.70X5 ','Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127535,10,'O36.70X4 ','Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127534,10,'O36.70X3 ','Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127533,10,'O36.70X2 ','Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127532,10,'O36.70X1 ','Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127531,10,'O36.70X0 ','Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127530,10,'O36.63X9 ','Maternal care for excessive fetal growth, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127529,10,'O36.63X5 ','Maternal care for excessive fetal growth, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127528,10,'O36.63X4 ','Maternal care for excessive fetal growth, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127527,10,'O36.63X3 ','Maternal care for excessive fetal growth, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127526,10,'O36.63X2 ','Maternal care for excessive fetal growth, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127525,10,'O36.63X1 ','Maternal care for excessive fetal growth, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127524,10,'O36.63X0 ','Maternal care for excessive fetal growth, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127523,10,'O36.62X9 ','Maternal care for excessive fetal growth, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127522,10,'O36.62X5 ','Maternal care for excessive fetal growth, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127521,10,'O36.62X4 ','Maternal care for excessive fetal growth, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127520,10,'O36.62X3 ','Maternal care for excessive fetal growth, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127519,10,'O36.62X2 ','Maternal care for excessive fetal growth, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127518,10,'O36.62X1 ','Maternal care for excessive fetal growth, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127517,10,'O36.62X0 ','Maternal care for excessive fetal growth, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127516,10,'O36.61X9 ','Maternal care for excessive fetal growth, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127515,10,'O36.61X5 ','Maternal care for excessive fetal growth, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127514,10,'O36.61X4 ','Maternal care for excessive fetal growth, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127513,10,'O36.61X3 ','Maternal care for excessive fetal growth, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127512,10,'O36.61X2 ','Maternal care for excessive fetal growth, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127511,10,'O36.61X1 ','Maternal care for excessive fetal growth, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127510,10,'O36.61X0 ','Maternal care for excessive fetal growth, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127509,10,'O36.60X9 ','Maternal care for excessive fetal growth, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127508,10,'O36.60X5 ','Maternal care for excessive fetal growth, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127507,10,'O36.60X4 ','Maternal care for excessive fetal growth, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127506,10,'O36.60X3 ','Maternal care for excessive fetal growth, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127505,10,'O36.60X2 ','Maternal care for excessive fetal growth, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127504,10,'O36.60X1 ','Maternal care for excessive fetal growth, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127503,10,'O36.60X0 ','Maternal care for excessive fetal growth, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127502,10,'O36.5999 ','Maternal care for other known or suspected poor fetal growth, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127501,10,'O36.5995 ','Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127500,10,'O36.5994 ','Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127499,10,'O36.5993 ','Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127498,10,'O36.5992 ','Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127497,10,'O36.5991 ','Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127496,10,'O36.5990 ','Maternal care for other known or suspected poor fetal growth, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127495,10,'O36.5939 ','Maternal care for other known or suspected poor fetal growth, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127494,10,'O36.5935 ','Maternal care for other known or suspected poor fetal growth, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127493,10,'O36.5934 ','Maternal care for other known or suspected poor fetal growth, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127492,10,'O36.5933 ','Maternal care for other known or suspected poor fetal growth, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127491,10,'O36.5932 ','Maternal care for other known or suspected poor fetal growth, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127490,10,'O36.5931 ','Maternal care for other known or suspected poor fetal growth, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127489,10,'O36.5930 ','Maternal care for other known or suspected poor fetal growth, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127488,10,'O36.5929 ','Maternal care for other known or suspected poor fetal growth, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127487,10,'O36.5925 ','Maternal care for other known or suspected poor fetal growth, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127486,10,'O36.5924 ','Maternal care for other known or suspected poor fetal growth, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127485,10,'O36.5923 ','Maternal care for other known or suspected poor fetal growth, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127484,10,'O36.5922 ','Maternal care for other known or suspected poor fetal growth, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127483,10,'O36.5921 ','Maternal care for other known or suspected poor fetal growth, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127482,10,'O36.5920 ','Maternal care for other known or suspected poor fetal growth, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127481,10,'O36.5919 ','Maternal care for other known or suspected poor fetal growth, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127480,10,'O36.5915 ','Maternal care for other known or suspected poor fetal growth, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127479,10,'O36.5914 ','Maternal care for other known or suspected poor fetal growth, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127478,10,'O36.5913 ','Maternal care for other known or suspected poor fetal growth, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127477,10,'O36.5912 ','Maternal care for other known or suspected poor fetal growth, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127476,10,'O36.5911 ','Maternal care for other known or suspected poor fetal growth, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127475,10,'O36.5910 ','Maternal care for other known or suspected poor fetal growth, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127474,10,'O36.5199 ','Maternal care for known or suspected placental insufficiency, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127473,10,'O36.5195 ','Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127472,10,'O36.5194 ','Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127471,10,'O36.5193 ','Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127470,10,'O36.5192 ','Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127469,10,'O36.5191 ','Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127468,10,'O36.5190 ','Maternal care for known or suspected placental insufficiency, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127467,10,'O36.5139 ','Maternal care for known or suspected placental insufficiency, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127466,10,'O36.5135 ','Maternal care for known or suspected placental insufficiency, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127465,10,'O36.5134 ','Maternal care for known or suspected placental insufficiency, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127464,10,'O36.5133 ','Maternal care for known or suspected placental insufficiency, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127463,10,'O36.5132 ','Maternal care for known or suspected placental insufficiency, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127462,10,'O36.5131 ','Maternal care for known or suspected placental insufficiency, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127461,10,'O36.5130 ','Maternal care for known or suspected placental insufficiency, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127460,10,'O36.5129 ','Maternal care for known or suspected placental insufficiency, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127459,10,'O36.5125 ','Maternal care for known or suspected placental insufficiency, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127458,10,'O36.5124 ','Maternal care for known or suspected placental insufficiency, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127457,10,'O36.5123 ','Maternal care for known or suspected placental insufficiency, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127456,10,'O36.5122 ','Maternal care for known or suspected placental insufficiency, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127455,10,'O36.5121 ','Maternal care for known or suspected placental insufficiency, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127454,10,'O36.5120 ','Maternal care for known or suspected placental insufficiency, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127453,10,'O36.5119 ','Maternal care for known or suspected placental insufficiency, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127452,10,'O36.5115 ','Maternal care for known or suspected placental insufficiency, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127451,10,'O36.5114 ','Maternal care for known or suspected placental insufficiency, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127450,10,'O36.5113 ','Maternal care for known or suspected placental insufficiency, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127449,10,'O36.5112 ','Maternal care for known or suspected placental insufficiency, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127448,10,'O36.5111 ','Maternal care for known or suspected placental insufficiency, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127447,10,'O36.5110 ','Maternal care for known or suspected placental insufficiency, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127446,10,'O36.4XX9 ','Maternal care for intrauterine death, other fetus','Y','0000-00-00 00:00:00'),(127444,10,'O36.4XX4 ','Maternal care for intrauterine death, fetus 4','Y','0000-00-00 00:00:00'),(127445,10,'O36.4XX5 ','Maternal care for intrauterine death, fetus 5','Y','0000-00-00 00:00:00'),(127443,10,'O36.4XX3 ','Maternal care for intrauterine death, fetus 3','Y','0000-00-00 00:00:00'),(127442,10,'O36.4XX2 ','Maternal care for intrauterine death, fetus 2','Y','0000-00-00 00:00:00'),(127441,10,'O36.4XX1 ','Maternal care for intrauterine death, fetus 1','Y','0000-00-00 00:00:00'),(127440,10,'O36.4XX0 ','Maternal care for intrauterine death, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127439,10,'O36.23X9 ','Maternal care for hydrops fetalis, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127438,10,'O36.23X5 ','Maternal care for hydrops fetalis, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127437,10,'O36.23X4 ','Maternal care for hydrops fetalis, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127436,10,'O36.23X3 ','Maternal care for hydrops fetalis, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127435,10,'O36.23X2 ','Maternal care for hydrops fetalis, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127434,10,'O36.23X1 ','Maternal care for hydrops fetalis, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127433,10,'O36.23X0 ','Maternal care for hydrops fetalis, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127432,10,'O36.22X9 ','Maternal care for hydrops fetalis, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127431,10,'O36.22X5 ','Maternal care for hydrops fetalis, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127430,10,'O36.22X4 ','Maternal care for hydrops fetalis, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127429,10,'O36.22X3 ','Maternal care for hydrops fetalis, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127428,10,'O36.22X2 ','Maternal care for hydrops fetalis, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127427,10,'O36.22X1 ','Maternal care for hydrops fetalis, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127426,10,'O36.22X0 ','Maternal care for hydrops fetalis, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127425,10,'O36.21X9 ','Maternal care for hydrops fetalis, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127424,10,'O36.21X5 ','Maternal care for hydrops fetalis, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127423,10,'O36.21X4 ','Maternal care for hydrops fetalis, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127422,10,'O36.21X3 ','Maternal care for hydrops fetalis, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127421,10,'O36.21X2 ','Maternal care for hydrops fetalis, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127420,10,'O36.21X1 ','Maternal care for hydrops fetalis, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127419,10,'O36.21X0 ','Maternal care for hydrops fetalis, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127418,10,'O36.20X9 ','Maternal care for hydrops fetalis, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127417,10,'O36.20X5 ','Maternal care for hydrops fetalis, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127416,10,'O36.20X4 ','Maternal care for hydrops fetalis, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127415,10,'O36.20X3 ','Maternal care for hydrops fetalis, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127414,10,'O36.20X2 ','Maternal care for hydrops fetalis, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127413,10,'O36.20X1 ','Maternal care for hydrops fetalis, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127412,10,'O36.20X0 ','Maternal care for hydrops fetalis, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127411,10,'O36.1999 ','Maternal care for other isoimmunization, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127410,10,'O36.1995 ','Maternal care for other isoimmunization, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127409,10,'O36.1994 ','Maternal care for other isoimmunization, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127408,10,'O36.1993 ','Maternal care for other isoimmunization, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127407,10,'O36.1992 ','Maternal care for other isoimmunization, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127406,10,'O36.1991 ','Maternal care for other isoimmunization, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127405,10,'O36.1990 ','Maternal care for other isoimmunization, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127404,10,'O36.1939 ','Maternal care for other isoimmunization, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127403,10,'O36.1935 ','Maternal care for other isoimmunization, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127402,10,'O36.1934 ','Maternal care for other isoimmunization, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127401,10,'O36.1933 ','Maternal care for other isoimmunization, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127400,10,'O36.1932 ','Maternal care for other isoimmunization, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127399,10,'O36.1931 ','Maternal care for other isoimmunization, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127398,10,'O36.1930 ','Maternal care for other isoimmunization, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127397,10,'O36.1929 ','Maternal care for other isoimmunization, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127396,10,'O36.1925 ','Maternal care for other isoimmunization, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127395,10,'O36.1924 ','Maternal care for other isoimmunization, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127394,10,'O36.1923 ','Maternal care for other isoimmunization, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127393,10,'O36.1922 ','Maternal care for other isoimmunization, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127392,10,'O36.1921 ','Maternal care for other isoimmunization, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127391,10,'O36.1920 ','Maternal care for other isoimmunization, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127390,10,'O36.1919 ','Maternal care for other isoimmunization, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127389,10,'O36.1915 ','Maternal care for other isoimmunization, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127388,10,'O36.1914 ','Maternal care for other isoimmunization, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127387,10,'O36.1913 ','Maternal care for other isoimmunization, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127386,10,'O36.1912 ','Maternal care for other isoimmunization, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127385,10,'O36.1911 ','Maternal care for other isoimmunization, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127384,10,'O36.1910 ','Maternal care for other isoimmunization, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127383,10,'O36.1199 ','Maternal care for Anti-A sensitization, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127382,10,'O36.1195 ','Maternal care for Anti-A sensitization, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127381,10,'O36.1194 ','Maternal care for Anti-A sensitization, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127380,10,'O36.1193 ','Maternal care for Anti-A sensitization, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127379,10,'O36.1192 ','Maternal care for Anti-A sensitization, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127378,10,'O36.1191 ','Maternal care for Anti-A sensitization, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127377,10,'O36.1190 ','Maternal care for Anti-A sensitization, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127376,10,'O36.1139 ','Maternal care for Anti-A sensitization, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127375,10,'O36.1135 ','Maternal care for Anti-A sensitization, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127374,10,'O36.1134 ','Maternal care for Anti-A sensitization, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127373,10,'O36.1133 ','Maternal care for Anti-A sensitization, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127372,10,'O36.1132 ','Maternal care for Anti-A sensitization, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127371,10,'O36.1131 ','Maternal care for Anti-A sensitization, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127370,10,'O36.1130 ','Maternal care for Anti-A sensitization, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127369,10,'O36.1129 ','Maternal care for Anti-A sensitization, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127368,10,'O36.1125 ','Maternal care for Anti-A sensitization, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127367,10,'O36.1124 ','Maternal care for Anti-A sensitization, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127366,10,'O36.1123 ','Maternal care for Anti-A sensitization, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127365,10,'O36.1122 ','Maternal care for Anti-A sensitization, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127364,10,'O36.1121 ','Maternal care for Anti-A sensitization, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127363,10,'O36.1120 ','Maternal care for Anti-A sensitization, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127362,10,'O36.1119 ','Maternal care for Anti-A sensitization, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127361,10,'O36.1115 ','Maternal care for Anti-A sensitization, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127360,10,'O36.1114 ','Maternal care for Anti-A sensitization, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127359,10,'O36.1113 ','Maternal care for Anti-A sensitization, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127358,10,'O36.1112 ','Maternal care for Anti-A sensitization, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127357,10,'O36.1111 ','Maternal care for Anti-A sensitization, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127356,10,'O36.1110 ','Maternal care for Anti-A sensitization, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127355,10,'O36.0999 ','Maternal care for other rhesus isoimmunization, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127354,10,'O36.0995 ','Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127353,10,'O36.0994 ','Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127352,10,'O36.0993 ','Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127351,10,'O36.0992 ','Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127350,10,'O36.0991 ','Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127349,10,'O36.0990 ','Maternal care for other rhesus isoimmunization, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127348,10,'O36.0939 ','Maternal care for other rhesus isoimmunization, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127347,10,'O36.0935 ','Maternal care for other rhesus isoimmunization, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127346,10,'O36.0934 ','Maternal care for other rhesus isoimmunization, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127345,10,'O36.0933 ','Maternal care for other rhesus isoimmunization, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127344,10,'O36.0932 ','Maternal care for other rhesus isoimmunization, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127343,10,'O36.0931 ','Maternal care for other rhesus isoimmunization, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127342,10,'O36.0930 ','Maternal care for other rhesus isoimmunization, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127341,10,'O36.0929 ','Maternal care for other rhesus isoimmunization, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127340,10,'O36.0925 ','Maternal care for other rhesus isoimmunization, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127339,10,'O36.0924 ','Maternal care for other rhesus isoimmunization, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127338,10,'O36.0923 ','Maternal care for other rhesus isoimmunization, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127337,10,'O36.0922 ','Maternal care for other rhesus isoimmunization, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127336,10,'O36.0921 ','Maternal care for other rhesus isoimmunization, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127335,10,'O36.0920 ','Maternal care for other rhesus isoimmunization, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127334,10,'O36.0919 ','Maternal care for other rhesus isoimmunization, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127333,10,'O36.0915 ','Maternal care for other rhesus isoimmunization, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127332,10,'O36.0914 ','Maternal care for other rhesus isoimmunization, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127331,10,'O36.0913 ','Maternal care for other rhesus isoimmunization, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127330,10,'O36.0912 ','Maternal care for other rhesus isoimmunization, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127329,10,'O36.0911 ','Maternal care for other rhesus isoimmunization, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127328,10,'O36.0910 ','Maternal care for other rhesus isoimmunization, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127327,10,'O36.0199 ','Maternal care for anti-D [Rh] antibodies, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(127326,10,'O36.0195 ','Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(127325,10,'O36.0194 ','Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(127324,10,'O36.0193 ','Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(127323,10,'O36.0192 ','Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(127322,10,'O36.0191 ','Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(127321,10,'O36.0190 ','Maternal care for anti-D [Rh] antibodies, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127320,10,'O36.0139 ','Maternal care for anti-D [Rh] antibodies, third trimester, other fetus','Y','0000-00-00 00:00:00'),(127319,10,'O36.0135 ','Maternal care for anti-D [Rh] antibodies, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(127318,10,'O36.0134 ','Maternal care for anti-D [Rh] antibodies, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(127317,10,'O36.0133 ','Maternal care for anti-D [Rh] antibodies, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(127316,10,'O36.0132 ','Maternal care for anti-D [Rh] antibodies, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(127315,10,'O36.0131 ','Maternal care for anti-D [Rh] antibodies, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(127314,10,'O36.0130 ','Maternal care for anti-D [Rh] antibodies, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127313,10,'O36.0129 ','Maternal care for anti-D [Rh] antibodies, second trimester, other fetus','Y','0000-00-00 00:00:00'),(127312,10,'O36.0125 ','Maternal care for anti-D [Rh] antibodies, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(127311,10,'O36.0124 ','Maternal care for anti-D [Rh] antibodies, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(127310,10,'O36.0123 ','Maternal care for anti-D [Rh] antibodies, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(127309,10,'O36.0122 ','Maternal care for anti-D [Rh] antibodies, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(127308,10,'O36.0121 ','Maternal care for anti-D [Rh] antibodies, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(127307,10,'O36.0120 ','Maternal care for anti-D [Rh] antibodies, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127306,10,'O36.0119 ','Maternal care for anti-D [Rh] antibodies, first trimester, other fetus','Y','0000-00-00 00:00:00'),(127305,10,'O36.0115 ','Maternal care for anti-D [Rh] antibodies, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(127304,10,'O36.0114 ','Maternal care for anti-D [Rh] antibodies, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(127303,10,'O36.0113 ','Maternal care for anti-D [Rh] antibodies, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(127302,10,'O36.0112 ','Maternal care for anti-D [Rh] antibodies, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(127301,10,'O36.0111 ','Maternal care for anti-D [Rh] antibodies, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(127300,10,'O36.0110 ','Maternal care for anti-D [Rh] antibodies, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127299,10,'O35.9XX9 ','Maternal care for (suspected) fetal abnormality and damage, unspecified, other fetus','Y','0000-00-00 00:00:00'),(127298,10,'O35.9XX5 ','Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 5','Y','0000-00-00 00:00:00'),(127297,10,'O35.9XX4 ','Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 4','Y','0000-00-00 00:00:00'),(127296,10,'O35.9XX3 ','Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 3','Y','0000-00-00 00:00:00'),(127295,10,'O35.9XX2 ','Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 2','Y','0000-00-00 00:00:00'),(127294,10,'O35.9XX1 ','Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 1','Y','0000-00-00 00:00:00'),(127293,10,'O35.9XX0 ','Maternal care for (suspected) fetal abnormality and damage, unspecified, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127292,10,'O35.8XX9 ','Maternal care for other (suspected) fetal abnormality and damage, other fetus','Y','0000-00-00 00:00:00'),(127291,10,'O35.8XX5 ','Maternal care for other (suspected) fetal abnormality and damage, fetus 5','Y','0000-00-00 00:00:00'),(127290,10,'O35.8XX4 ','Maternal care for other (suspected) fetal abnormality and damage, fetus 4','Y','0000-00-00 00:00:00'),(127289,10,'O35.8XX3 ','Maternal care for other (suspected) fetal abnormality and damage, fetus 3','Y','0000-00-00 00:00:00'),(127288,10,'O35.8XX2 ','Maternal care for other (suspected) fetal abnormality and damage, fetus 2','Y','0000-00-00 00:00:00'),(127287,10,'O35.8XX1 ','Maternal care for other (suspected) fetal abnormality and damage, fetus 1','Y','0000-00-00 00:00:00'),(127286,10,'O35.8XX0 ','Maternal care for other (suspected) fetal abnormality and damage, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127285,10,'O35.7XX9 ','Maternal care for (suspected) damage to fetus by other medical procedures, other fetus','Y','0000-00-00 00:00:00'),(127284,10,'O35.7XX5 ','Maternal care for (suspected) damage to fetus by other medical procedures, fetus 5','Y','0000-00-00 00:00:00'),(127283,10,'O35.7XX4 ','Maternal care for (suspected) damage to fetus by other medical procedures, fetus 4','Y','0000-00-00 00:00:00'),(127282,10,'O35.7XX3 ','Maternal care for (suspected) damage to fetus by other medical procedures, fetus 3','Y','0000-00-00 00:00:00'),(127281,10,'O35.7XX2 ','Maternal care for (suspected) damage to fetus by other medical procedures, fetus 2','Y','0000-00-00 00:00:00'),(127280,10,'O35.7XX1 ','Maternal care for (suspected) damage to fetus by other medical procedures, fetus 1','Y','0000-00-00 00:00:00'),(127279,10,'O35.7XX0 ','Maternal care for (suspected) damage to fetus by other medical procedures, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127278,10,'O35.6XX9 ','Maternal care for (suspected) damage to fetus by radiation, other fetus','Y','0000-00-00 00:00:00'),(127277,10,'O35.6XX5 ','Maternal care for (suspected) damage to fetus by radiation, fetus 5','Y','0000-00-00 00:00:00'),(127276,10,'O35.6XX4 ','Maternal care for (suspected) damage to fetus by radiation, fetus 4','Y','0000-00-00 00:00:00'),(127275,10,'O35.6XX3 ','Maternal care for (suspected) damage to fetus by radiation, fetus 3','Y','0000-00-00 00:00:00'),(127274,10,'O35.6XX2 ','Maternal care for (suspected) damage to fetus by radiation, fetus 2','Y','0000-00-00 00:00:00'),(127273,10,'O35.6XX1 ','Maternal care for (suspected) damage to fetus by radiation, fetus 1','Y','0000-00-00 00:00:00'),(127272,10,'O35.6XX0 ','Maternal care for (suspected) damage to fetus by radiation, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127271,10,'O35.5XX9 ','Maternal care for (suspected) damage to fetus by drugs, other fetus','Y','0000-00-00 00:00:00'),(127270,10,'O35.5XX5 ','Maternal care for (suspected) damage to fetus by drugs, fetus 5','Y','0000-00-00 00:00:00'),(127269,10,'O35.5XX4 ','Maternal care for (suspected) damage to fetus by drugs, fetus 4','Y','0000-00-00 00:00:00'),(127268,10,'O35.5XX3 ','Maternal care for (suspected) damage to fetus by drugs, fetus 3','Y','0000-00-00 00:00:00'),(127267,10,'O35.5XX2 ','Maternal care for (suspected) damage to fetus by drugs, fetus 2','Y','0000-00-00 00:00:00'),(127266,10,'O35.5XX1 ','Maternal care for (suspected) damage to fetus by drugs, fetus 1','Y','0000-00-00 00:00:00'),(127265,10,'O35.5XX0 ','Maternal care for (suspected) damage to fetus by drugs, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127264,10,'O35.4XX9 ','Maternal care for (suspected) damage to fetus from alcohol, other fetus','Y','0000-00-00 00:00:00'),(127263,10,'O35.4XX5 ','Maternal care for (suspected) damage to fetus from alcohol, fetus 5','Y','0000-00-00 00:00:00'),(127262,10,'O35.4XX4 ','Maternal care for (suspected) damage to fetus from alcohol, fetus 4','Y','0000-00-00 00:00:00'),(127261,10,'O35.4XX3 ','Maternal care for (suspected) damage to fetus from alcohol, fetus 3','Y','0000-00-00 00:00:00'),(127260,10,'O35.4XX2 ','Maternal care for (suspected) damage to fetus from alcohol, fetus 2','Y','0000-00-00 00:00:00'),(127259,10,'O35.4XX1 ','Maternal care for (suspected) damage to fetus from alcohol, fetus 1','Y','0000-00-00 00:00:00'),(127258,10,'O35.4XX0 ','Maternal care for (suspected) damage to fetus from alcohol, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127257,10,'O35.3XX9 ','Maternal care for (suspected) damage to fetus from viral disease in mother, other fetus','Y','0000-00-00 00:00:00'),(127256,10,'O35.3XX5 ','Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 5','Y','0000-00-00 00:00:00'),(127255,10,'O35.3XX4 ','Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 4','Y','0000-00-00 00:00:00'),(127254,10,'O35.3XX3 ','Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 3','Y','0000-00-00 00:00:00'),(127253,10,'O35.3XX2 ','Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 2','Y','0000-00-00 00:00:00'),(127252,10,'O35.3XX1 ','Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 1','Y','0000-00-00 00:00:00'),(127251,10,'O35.3XX0 ','Maternal care for (suspected) damage to fetus from viral disease in mother, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127250,10,'O35.2XX9 ','Maternal care for (suspected) hereditary disease in fetus, other fetus','Y','0000-00-00 00:00:00'),(127249,10,'O35.2XX5 ','Maternal care for (suspected) hereditary disease in fetus, fetus 5','Y','0000-00-00 00:00:00'),(127248,10,'O35.2XX4 ','Maternal care for (suspected) hereditary disease in fetus, fetus 4','Y','0000-00-00 00:00:00'),(127247,10,'O35.2XX3 ','Maternal care for (suspected) hereditary disease in fetus, fetus 3','Y','0000-00-00 00:00:00'),(127246,10,'O35.2XX2 ','Maternal care for (suspected) hereditary disease in fetus, fetus 2','Y','0000-00-00 00:00:00'),(127245,10,'O35.2XX1 ','Maternal care for (suspected) hereditary disease in fetus, fetus 1','Y','0000-00-00 00:00:00'),(127244,10,'O35.2XX0 ','Maternal care for (suspected) hereditary disease in fetus, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127243,10,'O35.HXX9 ','Maternal care for other (suspected) fetal abnormality and damage, fetal lower extremities anomalies, other fetus','Y','0000-00-00 00:00:00'),(127242,10,'O35.HXX5 ','Maternal care for other (suspected) fetal abnormality and damage, fetal lower extremities anomalies, fetus 5','Y','0000-00-00 00:00:00'),(127241,10,'O35.HXX4 ','Maternal care for other (suspected) fetal abnormality and damage, fetal lower extremities anomalies, fetus 4','Y','0000-00-00 00:00:00'),(127240,10,'O35.HXX3 ','Maternal care for other (suspected) fetal abnormality and damage, fetal lower extremities anomalies, fetus 3','Y','0000-00-00 00:00:00'),(127239,10,'O35.HXX2 ','Maternal care for other (suspected) fetal abnormality and damage, fetal lower extremities anomalies, fetus 2','Y','0000-00-00 00:00:00'),(127238,10,'O35.HXX1 ','Maternal care for other (suspected) fetal abnormality and damage, fetal lower extremities anomalies, fetus 1','Y','0000-00-00 00:00:00'),(127237,10,'O35.HXX0 ','Maternal care for other (suspected) fetal abnormality and damage, fetal lower extremities anomalies, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127236,10,'O35.GXX9 ','Maternal care for other (suspected) fetal abnormality and damage, fetal upper extremities anomalies, other fetus','Y','0000-00-00 00:00:00'),(127235,10,'O35.GXX5 ','Maternal care for other (suspected) fetal abnormality and damage, fetal upper extremities anomalies, fetus 5','Y','0000-00-00 00:00:00'),(127234,10,'O35.GXX4 ','Maternal care for other (suspected) fetal abnormality and damage, fetal upper extremities anomalies, fetus 4','Y','0000-00-00 00:00:00'),(127233,10,'O35.GXX3 ','Maternal care for other (suspected) fetal abnormality and damage, fetal upper extremities anomalies, fetus 3','Y','0000-00-00 00:00:00'),(127232,10,'O35.GXX2 ','Maternal care for other (suspected) fetal abnormality and damage, fetal upper extremities anomalies, fetus 2','Y','0000-00-00 00:00:00'),(127231,10,'O35.GXX1 ','Maternal care for other (suspected) fetal abnormality and damage, fetal upper extremities anomalies, fetus 1','Y','0000-00-00 00:00:00'),(127230,10,'O35.GXX0 ','Maternal care for other (suspected) fetal abnormality and damage, fetal upper extremities anomalies, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127229,10,'O35.FXX9 ','Maternal care for other (suspected) fetal abnormality and damage, fetal musculoskeletal anomalies of trunk, other fetus','Y','0000-00-00 00:00:00'),(127228,10,'O35.FXX5 ','Maternal care for other (suspected) fetal abnormality and damage, fetal musculoskeletal anomalies of trunk, fetus 5','Y','0000-00-00 00:00:00'),(127227,10,'O35.FXX4 ','Maternal care for other (suspected) fetal abnormality and damage, fetal musculoskeletal anomalies of trunk, fetus 4','Y','0000-00-00 00:00:00'),(127226,10,'O35.FXX3 ','Maternal care for other (suspected) fetal abnormality and damage, fetal musculoskeletal anomalies of trunk, fetus 3','Y','0000-00-00 00:00:00'),(127225,10,'O35.FXX2 ','Maternal care for other (suspected) fetal abnormality and damage, fetal musculoskeletal anomalies of trunk, fetus 2','Y','0000-00-00 00:00:00'),(127224,10,'O35.FXX1 ','Maternal care for other (suspected) fetal abnormality and damage, fetal musculoskeletal anomalies of trunk, fetus 1','Y','0000-00-00 00:00:00'),(127223,10,'O35.FXX0 ','Maternal care for other (suspected) fetal abnormality and damage, fetal musculoskeletal anomalies of trunk, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127222,10,'O35.EXX9 ','Maternal care for other (suspected) fetal abnormality and damage, fetal genitourinary anomalies, other fetus','Y','0000-00-00 00:00:00'),(127221,10,'O35.EXX5 ','Maternal care for other (suspected) fetal abnormality and damage, fetal genitourinary anomalies, fetus 5','Y','0000-00-00 00:00:00'),(127220,10,'O35.EXX4 ','Maternal care for other (suspected) fetal abnormality and damage, fetal genitourinary anomalies, fetus 4','Y','0000-00-00 00:00:00'),(127219,10,'O35.EXX3 ','Maternal care for other (suspected) fetal abnormality and damage, fetal genitourinary anomalies, fetus 3','Y','0000-00-00 00:00:00'),(127218,10,'O35.EXX2 ','Maternal care for other (suspected) fetal abnormality and damage, fetal genitourinary anomalies, fetus 2','Y','0000-00-00 00:00:00'),(127217,10,'O35.EXX1 ','Maternal care for other (suspected) fetal abnormality and damage, fetal genitourinary anomalies, fetus 1','Y','0000-00-00 00:00:00'),(127216,10,'O35.EXX0 ','Maternal care for other (suspected) fetal abnormality and damage, fetal genitourinary anomalies, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127215,10,'O35.DXX9 ','Maternal care for other (suspected) fetal abnormality and damage, fetal gastrointestinal anomalies, other fetus','Y','0000-00-00 00:00:00'),(127214,10,'O35.DXX5 ','Maternal care for other (suspected) fetal abnormality and damage, fetal gastrointestinal anomalies, fetus 5','Y','0000-00-00 00:00:00'),(127213,10,'O35.DXX4 ','Maternal care for other (suspected) fetal abnormality and damage, fetal gastrointestinal anomalies, fetus 4','Y','0000-00-00 00:00:00'),(127212,10,'O35.DXX3 ','Maternal care for other (suspected) fetal abnormality and damage, fetal gastrointestinal anomalies, fetus 3','Y','0000-00-00 00:00:00'),(127211,10,'O35.DXX2 ','Maternal care for other (suspected) fetal abnormality and damage, fetal gastrointestinal anomalies, fetus 2','Y','0000-00-00 00:00:00'),(127210,10,'O35.DXX1 ','Maternal care for other (suspected) fetal abnormality and damage, fetal gastrointestinal anomalies, fetus 1','Y','0000-00-00 00:00:00'),(127209,10,'O35.DXX0 ','Maternal care for other (suspected) fetal abnormality and damage, fetal gastrointestinal anomalies, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127208,10,'O35.CXX9 ','Maternal care for other (suspected) fetal abnormality and damage, fetal pulmonary anomalies, other fetus','Y','0000-00-00 00:00:00'),(127207,10,'O35.CXX5 ','Maternal care for other (suspected) fetal abnormality and damage, fetal pulmonary anomalies, fetus 5','Y','0000-00-00 00:00:00'),(127206,10,'O35.CXX4 ','Maternal care for other (suspected) fetal abnormality and damage, fetal pulmonary anomalies, fetus 4','Y','0000-00-00 00:00:00'),(127205,10,'O35.CXX3 ','Maternal care for other (suspected) fetal abnormality and damage, fetal pulmonary anomalies, fetus 3','Y','0000-00-00 00:00:00'),(127204,10,'O35.CXX2 ','Maternal care for other (suspected) fetal abnormality and damage, fetal pulmonary anomalies, fetus 2','Y','0000-00-00 00:00:00'),(127203,10,'O35.CXX1 ','Maternal care for other (suspected) fetal abnormality and damage, fetal pulmonary anomalies, fetus 1','Y','0000-00-00 00:00:00'),(127202,10,'O35.CXX0 ','Maternal care for other (suspected) fetal abnormality and damage, fetal pulmonary anomalies, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127201,10,'O35.BXX9 ','Maternal care for other (suspected) fetal abnormality and damage, fetal cardiac anomalies, other fetus','Y','0000-00-00 00:00:00'),(127200,10,'O35.BXX5 ','Maternal care for other (suspected) fetal abnormality and damage, fetal cardiac anomalies, fetus 5','Y','0000-00-00 00:00:00'),(127199,10,'O35.BXX4 ','Maternal care for other (suspected) fetal abnormality and damage, fetal cardiac anomalies, fetus 4','Y','0000-00-00 00:00:00'),(127198,10,'O35.BXX3 ','Maternal care for other (suspected) fetal abnormality and damage, fetal cardiac anomalies, fetus 3','Y','0000-00-00 00:00:00'),(127197,10,'O35.BXX2 ','Maternal care for other (suspected) fetal abnormality and damage, fetal cardiac anomalies, fetus 2','Y','0000-00-00 00:00:00'),(127196,10,'O35.BXX1 ','Maternal care for other (suspected) fetal abnormality and damage, fetal cardiac anomalies, fetus 1','Y','0000-00-00 00:00:00'),(127195,10,'O35.BXX0 ','Maternal care for other (suspected) fetal abnormality and damage, fetal cardiac anomalies, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127194,10,'O35.AXX9 ','Maternal care for other (suspected) fetal abnormality and damage, fetal facial anomalies, other fetus','Y','0000-00-00 00:00:00'),(127193,10,'O35.AXX5 ','Maternal care for other (suspected) fetal abnormality and damage, fetal facial anomalies, fetus 5','Y','0000-00-00 00:00:00'),(127192,10,'O35.AXX4 ','Maternal care for other (suspected) fetal abnormality and damage, fetal facial anomalies, fetus 4','Y','0000-00-00 00:00:00'),(127191,10,'O35.AXX3 ','Maternal care for other (suspected) fetal abnormality and damage, fetal facial anomalies, fetus 3','Y','0000-00-00 00:00:00'),(127190,10,'O35.AXX2 ','Maternal care for other (suspected) fetal abnormality and damage, fetal facial anomalies, fetus 2','Y','0000-00-00 00:00:00'),(127189,10,'O35.AXX1 ','Maternal care for other (suspected) fetal abnormality and damage, fetal facial anomalies, fetus 1','Y','0000-00-00 00:00:00'),(127188,10,'O35.AXX0 ','Maternal care for other (suspected) fetal abnormality and damage, fetal facial anomalies, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127187,10,'O35.19X9 ','Maternal care for (suspected) chromosomal abnormality in fetus, other chromosomal abnormality, other fetus','Y','0000-00-00 00:00:00'),(127186,10,'O35.19X5 ','Maternal care for (suspected) chromosomal abnormality in fetus, other chromosomal abnormality, fetus 5','Y','0000-00-00 00:00:00'),(127185,10,'O35.19X4 ','Maternal care for (suspected) chromosomal abnormality in fetus, other chromosomal abnormality, fetus 4','Y','0000-00-00 00:00:00'),(127184,10,'O35.19X3 ','Maternal care for (suspected) chromosomal abnormality in fetus, other chromosomal abnormality, fetus 3','Y','0000-00-00 00:00:00'),(127183,10,'O35.19X2 ','Maternal care for (suspected) chromosomal abnormality in fetus, other chromosomal abnormality, fetus 2','Y','0000-00-00 00:00:00'),(127182,10,'O35.19X1 ','Maternal care for (suspected) chromosomal abnormality in fetus, other chromosomal abnormality, fetus 1','Y','0000-00-00 00:00:00'),(127181,10,'O35.19X0 ','Maternal care for (suspected) chromosomal abnormality in fetus, other chromosomal abnormality, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127180,10,'O35.15X9 ','Maternal care for (suspected) chromosomal abnormality in fetus, sex chromosome abnormality, other fetus','Y','0000-00-00 00:00:00'),(127179,10,'O35.15X5 ','Maternal care for (suspected) chromosomal abnormality in fetus, sex chromosome abnormality, fetus 5','Y','0000-00-00 00:00:00'),(127178,10,'O35.15X4 ','Maternal care for (suspected) chromosomal abnormality in fetus, sex chromosome abnormality, fetus 4','Y','0000-00-00 00:00:00'),(127177,10,'O35.15X3 ','Maternal care for (suspected) chromosomal abnormality in fetus, sex chromosome abnormality, fetus 3','Y','0000-00-00 00:00:00'),(127176,10,'O35.15X2 ','Maternal care for (suspected) chromosomal abnormality in fetus, sex chromosome abnormality, fetus 2','Y','0000-00-00 00:00:00'),(127175,10,'O35.15X1 ','Maternal care for (suspected) chromosomal abnormality in fetus, sex chromosome abnormality, fetus 1','Y','0000-00-00 00:00:00'),(127174,10,'O35.15X0 ','Maternal care for (suspected) chromosomal abnormality in fetus, sex chromosome abnormality, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127173,10,'O35.14X9 ','Maternal care for (suspected) chromosomal abnormality in fetus, Turner Syndrome, other fetus','Y','0000-00-00 00:00:00'),(127172,10,'O35.14X5 ','Maternal care for (suspected) chromosomal abnormality in fetus, Turner Syndrome, fetus 5','Y','0000-00-00 00:00:00'),(127171,10,'O35.14X4 ','Maternal care for (suspected) chromosomal abnormality in fetus, Turner Syndrome, fetus 4','Y','0000-00-00 00:00:00'),(127170,10,'O35.14X3 ','Maternal care for (suspected) chromosomal abnormality in fetus, Turner Syndrome, fetus 3','Y','0000-00-00 00:00:00'),(127169,10,'O35.14X2 ','Maternal care for (suspected) chromosomal abnormality in fetus, Turner Syndrome, fetus 2','Y','0000-00-00 00:00:00'),(127168,10,'O35.14X1 ','Maternal care for (suspected) chromosomal abnormality in fetus, Turner Syndrome, fetus 1','Y','0000-00-00 00:00:00'),(127167,10,'O35.14X0 ','Maternal care for (suspected) chromosomal abnormality in fetus, Turner Syndrome, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127166,10,'O35.13X9 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 21, other fetus','Y','0000-00-00 00:00:00'),(127165,10,'O35.13X5 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 21, fetus 5','Y','0000-00-00 00:00:00'),(127164,10,'O35.13X4 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 21, fetus 4','Y','0000-00-00 00:00:00'),(127163,10,'O35.13X3 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 21, fetus 3','Y','0000-00-00 00:00:00'),(127162,10,'O35.13X2 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 21, fetus 2','Y','0000-00-00 00:00:00'),(127161,10,'O35.13X1 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 21, fetus 1','Y','0000-00-00 00:00:00'),(127160,10,'O35.13X0 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 21, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127159,10,'O35.12X9 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 18, other fetus','Y','0000-00-00 00:00:00'),(127158,10,'O35.12X5 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 18, fetus 5','Y','0000-00-00 00:00:00'),(127157,10,'O35.12X4 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 18, fetus 4','Y','0000-00-00 00:00:00'),(127156,10,'O35.12X3 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 18, fetus 3','Y','0000-00-00 00:00:00'),(127155,10,'O35.12X2 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 18, fetus 2','Y','0000-00-00 00:00:00'),(127154,10,'O35.12X1 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 18, fetus 1','Y','0000-00-00 00:00:00'),(127153,10,'O35.12X0 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 18, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127152,10,'O35.11X9 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 13, other fetus','Y','0000-00-00 00:00:00'),(127151,10,'O35.11X5 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 13, fetus 5','Y','0000-00-00 00:00:00'),(127150,10,'O35.11X4 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 13, fetus 4','Y','0000-00-00 00:00:00'),(127149,10,'O35.11X3 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 13, fetus 3','Y','0000-00-00 00:00:00'),(127148,10,'O35.11X2 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 13, fetus 2','Y','0000-00-00 00:00:00'),(127147,10,'O35.11X1 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 13, fetus 1','Y','0000-00-00 00:00:00'),(127146,10,'O35.11X0 ','Maternal care for (suspected) chromosomal abnormality in fetus, Trisomy 13, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127145,10,'O35.10X9 ','Maternal care for (suspected) chromosomal abnormality in fetus, unspecified, other fetus','Y','0000-00-00 00:00:00'),(127144,10,'O35.10X5 ','Maternal care for (suspected) chromosomal abnormality in fetus, unspecified, fetus 5','Y','0000-00-00 00:00:00'),(127143,10,'O35.10X4 ','Maternal care for (suspected) chromosomal abnormality in fetus, unspecified, fetus 4','Y','0000-00-00 00:00:00'),(127142,10,'O35.10X3 ','Maternal care for (suspected) chromosomal abnormality in fetus, unspecified, fetus 3','Y','0000-00-00 00:00:00'),(127141,10,'O35.10X2 ','Maternal care for (suspected) chromosomal abnormality in fetus, unspecified, fetus 2','Y','0000-00-00 00:00:00'),(127140,10,'O35.10X1 ','Maternal care for (suspected) chromosomal abnormality in fetus, unspecified, fetus 1','Y','0000-00-00 00:00:00'),(127139,10,'O35.10X0 ','Maternal care for (suspected) chromosomal abnormality in fetus, unspecified, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127138,10,'O35.09X9 ','Maternal care for (suspected) other central nervous system malformation or damage in fetus, other fetus','Y','0000-00-00 00:00:00'),(127137,10,'O35.09X5 ','Maternal care for (suspected) other central nervous system malformation or damage in fetus, fetus 5','Y','0000-00-00 00:00:00'),(127136,10,'O35.09X4 ','Maternal care for (suspected) other central nervous system malformation or damage in fetus, fetus 4','Y','0000-00-00 00:00:00'),(127135,10,'O35.09X3 ','Maternal care for (suspected) other central nervous system malformation or damage in fetus, fetus 3','Y','0000-00-00 00:00:00'),(127134,10,'O35.09X2 ','Maternal care for (suspected) other central nervous system malformation or damage in fetus, fetus 2','Y','0000-00-00 00:00:00'),(127133,10,'O35.09X1 ','Maternal care for (suspected) other central nervous system malformation or damage in fetus, fetus 1','Y','0000-00-00 00:00:00'),(127132,10,'O35.09X0 ','Maternal care for (suspected) other central nervous system malformation or damage in fetus, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127131,10,'O35.08X9 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, spina bifida, other fetus','Y','0000-00-00 00:00:00'),(127130,10,'O35.08X5 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, spina bifida, fetus 5','Y','0000-00-00 00:00:00'),(127129,10,'O35.08X4 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, spina bifida, fetus 4','Y','0000-00-00 00:00:00'),(127128,10,'O35.08X3 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, spina bifida, fetus 3','Y','0000-00-00 00:00:00'),(127127,10,'O35.08X2 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, spina bifida, fetus 2','Y','0000-00-00 00:00:00'),(127126,10,'O35.08X1 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, spina bifida, fetus 1','Y','0000-00-00 00:00:00'),(127125,10,'O35.08X0 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, spina bifida, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127124,10,'O35.07X9 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, microcephaly, other fetus','Y','0000-00-00 00:00:00'),(127123,10,'O35.07X5 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, microcephaly, fetus 5','Y','0000-00-00 00:00:00'),(127122,10,'O35.07X4 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, microcephaly, fetus 4','Y','0000-00-00 00:00:00'),(127121,10,'O35.07X3 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, microcephaly, fetus 3','Y','0000-00-00 00:00:00'),(127120,10,'O35.07X2 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, microcephaly, fetus 2','Y','0000-00-00 00:00:00'),(127119,10,'O35.07X1 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, microcephaly, fetus 1','Y','0000-00-00 00:00:00'),(127118,10,'O35.07X0 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, microcephaly, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127117,10,'O35.06X9 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, hydrocephaly, other fetus','Y','0000-00-00 00:00:00'),(127116,10,'O35.06X5 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, hydrocephaly, fetus 5','Y','0000-00-00 00:00:00'),(127115,10,'O35.06X4 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, hydrocephaly, fetus 4','Y','0000-00-00 00:00:00'),(127114,10,'O35.06X3 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, hydrocephaly, fetus 3','Y','0000-00-00 00:00:00'),(127113,10,'O35.06X2 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, hydrocephaly, fetus 2','Y','0000-00-00 00:00:00'),(127112,10,'O35.06X1 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, hydrocephaly, fetus 1','Y','0000-00-00 00:00:00'),(127111,10,'O35.06X0 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, hydrocephaly, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127110,10,'O35.05X9 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, holoprosencephaly, other fetus','Y','0000-00-00 00:00:00'),(127109,10,'O35.05X5 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, holoprosencephaly, fetus 5','Y','0000-00-00 00:00:00'),(127108,10,'O35.05X4 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, holoprosencephaly, fetus 4','Y','0000-00-00 00:00:00'),(127107,10,'O35.05X3 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, holoprosencephaly, fetus 3','Y','0000-00-00 00:00:00'),(127106,10,'O35.05X2 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, holoprosencephaly, fetus 2','Y','0000-00-00 00:00:00'),(127105,10,'O35.05X1 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, holoprosencephaly, fetus 1','Y','0000-00-00 00:00:00'),(127104,10,'O35.05X0 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, holoprosencephaly, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127103,10,'O35.04X9 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, encephalocele, other fetus','Y','0000-00-00 00:00:00'),(127102,10,'O35.04X5 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, encephalocele, fetus 5','Y','0000-00-00 00:00:00'),(127101,10,'O35.04X4 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, encephalocele, fetus 4','Y','0000-00-00 00:00:00'),(127100,10,'O35.04X3 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, encephalocele, fetus 3','Y','0000-00-00 00:00:00'),(127099,10,'O35.04X2 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, encephalocele, fetus 2','Y','0000-00-00 00:00:00'),(127098,10,'O35.04X1 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, encephalocele, fetus 1','Y','0000-00-00 00:00:00'),(127097,10,'O35.04X0 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, encephalocele, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127096,10,'O35.03X9 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, choroid plexus cysts, other fetus','Y','0000-00-00 00:00:00'),(127095,10,'O35.03X5 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, choroid plexus cysts, fetus 5','Y','0000-00-00 00:00:00'),(127094,10,'O35.03X4 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, choroid plexus cysts, fetus 4','Y','0000-00-00 00:00:00'),(127093,10,'O35.03X3 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, choroid plexus cysts, fetus 3','Y','0000-00-00 00:00:00'),(127092,10,'O35.03X2 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, choroid plexus cysts, fetus 2','Y','0000-00-00 00:00:00'),(127091,10,'O35.03X1 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, choroid plexus cysts, fetus 1','Y','0000-00-00 00:00:00'),(127090,10,'O35.03X0 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, choroid plexus cysts, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127089,10,'O35.02X9 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, anencephaly, other fetus','Y','0000-00-00 00:00:00'),(127088,10,'O35.02X5 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, anencephaly, fetus 5','Y','0000-00-00 00:00:00'),(127087,10,'O35.02X4 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, anencephaly, fetus 4','Y','0000-00-00 00:00:00'),(127086,10,'O35.02X3 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, anencephaly, fetus 3','Y','0000-00-00 00:00:00'),(127085,10,'O35.02X2 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, anencephaly, fetus 2','Y','0000-00-00 00:00:00'),(127084,10,'O35.02X1 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, anencephaly, fetus 1','Y','0000-00-00 00:00:00'),(127083,10,'O35.02X0 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, anencephaly, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127082,10,'O35.01X9 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, agenesis of the corpus callosum, other fetus','Y','0000-00-00 00:00:00'),(127081,10,'O35.01X5 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, agenesis of the corpus callosum, fetus 5','Y','0000-00-00 00:00:00'),(127080,10,'O35.01X4 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, agenesis of the corpus callosum, fetus 4','Y','0000-00-00 00:00:00'),(127079,10,'O35.01X3 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, agenesis of the corpus callosum, fetus 3','Y','0000-00-00 00:00:00'),(127078,10,'O35.01X2 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, agenesis of the corpus callosum, fetus 2','Y','0000-00-00 00:00:00'),(127077,10,'O35.01X1 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, agenesis of the corpus callosum, fetus 1','Y','0000-00-00 00:00:00'),(127076,10,'O35.01X0 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, agenesis of the corpus callosum, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127075,10,'O35.00X9 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, unspecified, other fetus','Y','0000-00-00 00:00:00'),(127074,10,'O35.00X5 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, unspecified, fetus 5','Y','0000-00-00 00:00:00'),(127073,10,'O35.00X4 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, unspecified, fetus 4','Y','0000-00-00 00:00:00'),(127072,10,'O35.00X3 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, unspecified, fetus 3','Y','0000-00-00 00:00:00'),(127071,10,'O35.00X2 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, unspecified, fetus 2','Y','0000-00-00 00:00:00'),(127070,10,'O35.00X1 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, unspecified, fetus 1','Y','0000-00-00 00:00:00'),(127069,10,'O35.00X0 ','Maternal care for (suspected) central nervous system malformation or damage in fetus, unspecified, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127068,10,'O34.93 ','Maternal care for abnormality of pelvic organ, unspecified, third trimester','Y','0000-00-00 00:00:00'),(127067,10,'O34.92 ','Maternal care for abnormality of pelvic organ, unspecified, second trimester','Y','0000-00-00 00:00:00'),(127066,10,'O34.91 ','Maternal care for abnormality of pelvic organ, unspecified, first trimester','Y','0000-00-00 00:00:00'),(127065,10,'O34.90 ','Maternal care for abnormality of pelvic organ, unspecified, unspecified trimester','Y','0000-00-00 00:00:00'),(127064,10,'O34.83 ','Maternal care for other abnormalities of pelvic organs, third trimester','Y','0000-00-00 00:00:00'),(127063,10,'O34.82 ','Maternal care for other abnormalities of pelvic organs, second trimester','Y','0000-00-00 00:00:00'),(127062,10,'O34.81 ','Maternal care for other abnormalities of pelvic organs, first trimester','Y','0000-00-00 00:00:00'),(127061,10,'O34.80 ','Maternal care for other abnormalities of pelvic organs, unspecified trimester','Y','0000-00-00 00:00:00'),(127060,10,'O34.73 ','Maternal care for abnormality of vulva and perineum, third trimester','Y','0000-00-00 00:00:00'),(127059,10,'O34.72 ','Maternal care for abnormality of vulva and perineum, second trimester','Y','0000-00-00 00:00:00'),(127058,10,'O34.71 ','Maternal care for abnormality of vulva and perineum, first trimester','Y','0000-00-00 00:00:00'),(127057,10,'O34.70 ','Maternal care for abnormality of vulva and perineum, unspecified trimester','Y','0000-00-00 00:00:00'),(127055,10,'O34.62 ','Maternal care for abnormality of vagina, second trimester','Y','0000-00-00 00:00:00'),(127056,10,'O34.63 ','Maternal care for abnormality of vagina, third trimester','Y','0000-00-00 00:00:00'),(127054,10,'O34.61 ','Maternal care for abnormality of vagina, first trimester','Y','0000-00-00 00:00:00'),(127053,10,'O34.60 ','Maternal care for abnormality of vagina, unspecified trimester','Y','0000-00-00 00:00:00'),(127052,10,'O34.599 ','Maternal care for other abnormalities of gravid uterus, unspecified trimester','Y','0000-00-00 00:00:00'),(127051,10,'O34.593 ','Maternal care for other abnormalities of gravid uterus, third trimester','Y','0000-00-00 00:00:00'),(127050,10,'O34.592 ','Maternal care for other abnormalities of gravid uterus, second trimester','Y','0000-00-00 00:00:00'),(127049,10,'O34.591 ','Maternal care for other abnormalities of gravid uterus, first trimester','Y','0000-00-00 00:00:00'),(127048,10,'O34.539 ','Maternal care for retroversion of gravid uterus, unspecified trimester','Y','0000-00-00 00:00:00'),(127047,10,'O34.533 ','Maternal care for retroversion of gravid uterus, third trimester','Y','0000-00-00 00:00:00'),(127046,10,'O34.532 ','Maternal care for retroversion of gravid uterus, second trimester','Y','0000-00-00 00:00:00'),(127045,10,'O34.531 ','Maternal care for retroversion of gravid uterus, first trimester','Y','0000-00-00 00:00:00'),(127044,10,'O34.529 ','Maternal care for prolapse of gravid uterus, unspecified trimester','Y','0000-00-00 00:00:00'),(127043,10,'O34.523 ','Maternal care for prolapse of gravid uterus, third trimester','Y','0000-00-00 00:00:00'),(127042,10,'O34.522 ','Maternal care for prolapse of gravid uterus, second trimester','Y','0000-00-00 00:00:00'),(127041,10,'O34.521 ','Maternal care for prolapse of gravid uterus, first trimester','Y','0000-00-00 00:00:00'),(127040,10,'O34.519 ','Maternal care for incarceration of gravid uterus, unspecified trimester','Y','0000-00-00 00:00:00'),(127039,10,'O34.513 ','Maternal care for incarceration of gravid uterus, third trimester','Y','0000-00-00 00:00:00'),(127038,10,'O34.512 ','Maternal care for incarceration of gravid uterus, second trimester','Y','0000-00-00 00:00:00'),(127037,10,'O34.511 ','Maternal care for incarceration of gravid uterus, first trimester','Y','0000-00-00 00:00:00'),(127036,10,'O34.43 ','Maternal care for other abnormalities of cervix, third trimester','Y','0000-00-00 00:00:00'),(127035,10,'O34.42 ','Maternal care for other abnormalities of cervix, second trimester','Y','0000-00-00 00:00:00'),(127034,10,'O34.41 ','Maternal care for other abnormalities of cervix, first trimester','Y','0000-00-00 00:00:00'),(127033,10,'O34.40 ','Maternal care for other abnormalities of cervix, unspecified trimester','Y','0000-00-00 00:00:00'),(127032,10,'O34.33 ','Maternal care for cervical incompetence, third trimester','Y','0000-00-00 00:00:00'),(127031,10,'O34.32 ','Maternal care for cervical incompetence, second trimester','Y','0000-00-00 00:00:00'),(127030,10,'O34.31 ','Maternal care for cervical incompetence, first trimester','Y','0000-00-00 00:00:00'),(127029,10,'O34.30 ','Maternal care for cervical incompetence, unspecified trimester','Y','0000-00-00 00:00:00'),(127028,10,'O34.29 ','Maternal care due to uterine scar from other previous surgery','Y','0000-00-00 00:00:00'),(127027,10,'O34.22 ','Maternal care for cesarean scar defect (isthmocele)','Y','0000-00-00 00:00:00'),(127026,10,'O34.219 ','Maternal care for unspecified type scar from previous cesarean delivery','Y','0000-00-00 00:00:00'),(127025,10,'O34.218 ','Maternal care for other type scar from previous cesarean delivery','Y','0000-00-00 00:00:00'),(127024,10,'O34.212 ','Maternal care for vertical scar from previous cesarean delivery','Y','0000-00-00 00:00:00'),(127023,10,'O34.211 ','Maternal care for low transverse scar from previous cesarean delivery','Y','0000-00-00 00:00:00'),(127022,10,'O34.13 ','Maternal care for benign tumor of corpus uteri, third trimester','Y','0000-00-00 00:00:00'),(127021,10,'O34.12 ','Maternal care for benign tumor of corpus uteri, second trimester','Y','0000-00-00 00:00:00'),(127020,10,'O34.11 ','Maternal care for benign tumor of corpus uteri, first trimester','Y','0000-00-00 00:00:00'),(127019,10,'O34.10 ','Maternal care for benign tumor of corpus uteri, unspecified trimester','Y','0000-00-00 00:00:00'),(127018,10,'O34.03 ','Maternal care for unspecified congenital malformation of uterus, third trimester','Y','0000-00-00 00:00:00'),(127017,10,'O34.02 ','Maternal care for unspecified congenital malformation of uterus, second trimester','Y','0000-00-00 00:00:00'),(127016,10,'O34.01 ','Maternal care for unspecified congenital malformation of uterus, first trimester','Y','0000-00-00 00:00:00'),(127015,10,'O34.00 ','Maternal care for unspecified congenital malformation of uterus, unspecified trimester','Y','0000-00-00 00:00:00'),(127014,10,'O33.9 ','Maternal care for disproportion, unspecified','Y','0000-00-00 00:00:00'),(127013,10,'O33.8 ','Maternal care for disproportion of other origin','Y','0000-00-00 00:00:00'),(127012,10,'O33.7XX9 ','Maternal care for disproportion due to other fetal deformities, other fetus','Y','0000-00-00 00:00:00'),(127011,10,'O33.7XX5 ','Maternal care for disproportion due to other fetal deformities, fetus 5','Y','0000-00-00 00:00:00'),(127010,10,'O33.7XX4 ','Maternal care for disproportion due to other fetal deformities, fetus 4','Y','0000-00-00 00:00:00'),(127009,10,'O33.7XX3 ','Maternal care for disproportion due to other fetal deformities, fetus 3','Y','0000-00-00 00:00:00'),(127008,10,'O33.7XX2 ','Maternal care for disproportion due to other fetal deformities, fetus 2','Y','0000-00-00 00:00:00'),(127007,10,'O33.7XX1 ','Maternal care for disproportion due to other fetal deformities, fetus 1','Y','0000-00-00 00:00:00'),(127006,10,'O33.7XX0 ','Maternal care for disproportion due to other fetal deformities, not applicable or unspecified','Y','0000-00-00 00:00:00'),(127005,10,'O33.6XX9 ','Maternal care for disproportion due to hydrocephalic fetus, other fetus','Y','0000-00-00 00:00:00'),(127004,10,'O33.6XX5 ','Maternal care for disproportion due to hydrocephalic fetus, fetus 5','Y','0000-00-00 00:00:00'),(127003,10,'O33.6XX4 ','Maternal care for disproportion due to hydrocephalic fetus, fetus 4','Y','0000-00-00 00:00:00'),(127002,10,'O33.6XX3 ','Maternal care for disproportion due to hydrocephalic fetus, fetus 3','Y','0000-00-00 00:00:00'),(127001,10,'O33.6XX2 ','Maternal care for disproportion due to hydrocephalic fetus, fetus 2','Y','0000-00-00 00:00:00'),(127000,10,'O33.6XX1 ','Maternal care for disproportion due to hydrocephalic fetus, fetus 1','Y','0000-00-00 00:00:00'),(126999,10,'O33.6XX0 ','Maternal care for disproportion due to hydrocephalic fetus, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126998,10,'O33.5XX9 ','Maternal care for disproportion due to unusually large fetus, other fetus','Y','0000-00-00 00:00:00'),(126997,10,'O33.5XX5 ','Maternal care for disproportion due to unusually large fetus, fetus 5','Y','0000-00-00 00:00:00'),(126996,10,'O33.5XX4 ','Maternal care for disproportion due to unusually large fetus, fetus 4','Y','0000-00-00 00:00:00'),(126995,10,'O33.5XX3 ','Maternal care for disproportion due to unusually large fetus, fetus 3','Y','0000-00-00 00:00:00'),(126994,10,'O33.5XX2 ','Maternal care for disproportion due to unusually large fetus, fetus 2','Y','0000-00-00 00:00:00'),(126993,10,'O33.5XX1 ','Maternal care for disproportion due to unusually large fetus, fetus 1','Y','0000-00-00 00:00:00'),(126992,10,'O33.5XX0 ','Maternal care for disproportion due to unusually large fetus, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126991,10,'O33.4XX9 ','Maternal care for disproportion of mixed maternal and fetal origin, other fetus','Y','0000-00-00 00:00:00'),(126990,10,'O33.4XX5 ','Maternal care for disproportion of mixed maternal and fetal origin, fetus 5','Y','0000-00-00 00:00:00'),(126989,10,'O33.4XX4 ','Maternal care for disproportion of mixed maternal and fetal origin, fetus 4','Y','0000-00-00 00:00:00'),(126988,10,'O33.4XX3 ','Maternal care for disproportion of mixed maternal and fetal origin, fetus 3','Y','0000-00-00 00:00:00'),(126987,10,'O33.4XX2 ','Maternal care for disproportion of mixed maternal and fetal origin, fetus 2','Y','0000-00-00 00:00:00'),(126986,10,'O33.4XX1 ','Maternal care for disproportion of mixed maternal and fetal origin, fetus 1','Y','0000-00-00 00:00:00'),(126985,10,'O33.4XX0 ','Maternal care for disproportion of mixed maternal and fetal origin, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126984,10,'O33.3XX9 ','Maternal care for disproportion due to outlet contraction of pelvis, other fetus','Y','0000-00-00 00:00:00'),(126983,10,'O33.3XX5 ','Maternal care for disproportion due to outlet contraction of pelvis, fetus 5','Y','0000-00-00 00:00:00'),(126982,10,'O33.3XX4 ','Maternal care for disproportion due to outlet contraction of pelvis, fetus 4','Y','0000-00-00 00:00:00'),(126981,10,'O33.3XX3 ','Maternal care for disproportion due to outlet contraction of pelvis, fetus 3','Y','0000-00-00 00:00:00'),(126980,10,'O33.3XX2 ','Maternal care for disproportion due to outlet contraction of pelvis, fetus 2','Y','0000-00-00 00:00:00'),(126979,10,'O33.3XX1 ','Maternal care for disproportion due to outlet contraction of pelvis, fetus 1','Y','0000-00-00 00:00:00'),(126978,10,'O33.3XX0 ','Maternal care for disproportion due to outlet contraction of pelvis, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126976,10,'O33.1 ','Maternal care for disproportion due to generally contracted pelvis','Y','0000-00-00 00:00:00'),(126977,10,'O33.2 ','Maternal care for disproportion due to inlet contraction of pelvis','Y','0000-00-00 00:00:00'),(126975,10,'O33.0 ','Maternal care for disproportion due to deformity of maternal pelvic bones','Y','0000-00-00 00:00:00'),(126974,10,'O32.9XX9 ','Maternal care for malpresentation of fetus, unspecified, other fetus','Y','0000-00-00 00:00:00'),(126973,10,'O32.9XX5 ','Maternal care for malpresentation of fetus, unspecified, fetus 5','Y','0000-00-00 00:00:00'),(126972,10,'O32.9XX4 ','Maternal care for malpresentation of fetus, unspecified, fetus 4','Y','0000-00-00 00:00:00'),(126971,10,'O32.9XX3 ','Maternal care for malpresentation of fetus, unspecified, fetus 3','Y','0000-00-00 00:00:00'),(126970,10,'O32.9XX2 ','Maternal care for malpresentation of fetus, unspecified, fetus 2','Y','0000-00-00 00:00:00'),(126969,10,'O32.9XX1 ','Maternal care for malpresentation of fetus, unspecified, fetus 1','Y','0000-00-00 00:00:00'),(126968,10,'O32.9XX0 ','Maternal care for malpresentation of fetus, unspecified, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126967,10,'O32.8XX9 ','Maternal care for other malpresentation of fetus, other fetus','Y','0000-00-00 00:00:00'),(126965,10,'O32.8XX4 ','Maternal care for other malpresentation of fetus, fetus 4','Y','0000-00-00 00:00:00'),(126966,10,'O32.8XX5 ','Maternal care for other malpresentation of fetus, fetus 5','Y','0000-00-00 00:00:00'),(126964,10,'O32.8XX3 ','Maternal care for other malpresentation of fetus, fetus 3','Y','0000-00-00 00:00:00'),(126963,10,'O32.8XX2 ','Maternal care for other malpresentation of fetus, fetus 2','Y','0000-00-00 00:00:00'),(126962,10,'O32.8XX1 ','Maternal care for other malpresentation of fetus, fetus 1','Y','0000-00-00 00:00:00'),(126961,10,'O32.8XX0 ','Maternal care for other malpresentation of fetus, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126960,10,'O32.6XX9 ','Maternal care for compound presentation, other fetus','Y','0000-00-00 00:00:00'),(126959,10,'O32.6XX5 ','Maternal care for compound presentation, fetus 5','Y','0000-00-00 00:00:00'),(126957,10,'O32.6XX3 ','Maternal care for compound presentation, fetus 3','Y','0000-00-00 00:00:00'),(126958,10,'O32.6XX4 ','Maternal care for compound presentation, fetus 4','Y','0000-00-00 00:00:00'),(126955,10,'O32.6XX1 ','Maternal care for compound presentation, fetus 1','Y','0000-00-00 00:00:00'),(126956,10,'O32.6XX2 ','Maternal care for compound presentation, fetus 2','Y','0000-00-00 00:00:00'),(126954,10,'O32.6XX0 ','Maternal care for compound presentation, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126953,10,'O32.4XX9 ','Maternal care for high head at term, other fetus','Y','0000-00-00 00:00:00'),(126951,10,'O32.4XX4 ','Maternal care for high head at term, fetus 4','Y','0000-00-00 00:00:00'),(126952,10,'O32.4XX5 ','Maternal care for high head at term, fetus 5','Y','0000-00-00 00:00:00'),(126950,10,'O32.4XX3 ','Maternal care for high head at term, fetus 3','Y','0000-00-00 00:00:00'),(126948,10,'O32.4XX1 ','Maternal care for high head at term, fetus 1','Y','0000-00-00 00:00:00'),(126949,10,'O32.4XX2 ','Maternal care for high head at term, fetus 2','Y','0000-00-00 00:00:00'),(126947,10,'O32.4XX0 ','Maternal care for high head at term, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126946,10,'O32.3XX9 ','Maternal care for face, brow and chin presentation, other fetus','Y','0000-00-00 00:00:00'),(126945,10,'O32.3XX5 ','Maternal care for face, brow and chin presentation, fetus 5','Y','0000-00-00 00:00:00'),(126944,10,'O32.3XX4 ','Maternal care for face, brow and chin presentation, fetus 4','Y','0000-00-00 00:00:00'),(126943,10,'O32.3XX3 ','Maternal care for face, brow and chin presentation, fetus 3','Y','0000-00-00 00:00:00'),(126942,10,'O32.3XX2 ','Maternal care for face, brow and chin presentation, fetus 2','Y','0000-00-00 00:00:00'),(126941,10,'O32.3XX1 ','Maternal care for face, brow and chin presentation, fetus 1','Y','0000-00-00 00:00:00'),(126940,10,'O32.3XX0 ','Maternal care for face, brow and chin presentation, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126939,10,'O32.2XX9 ','Maternal care for transverse and oblique lie, other fetus','Y','0000-00-00 00:00:00'),(126938,10,'O32.2XX5 ','Maternal care for transverse and oblique lie, fetus 5','Y','0000-00-00 00:00:00'),(126937,10,'O32.2XX4 ','Maternal care for transverse and oblique lie, fetus 4','Y','0000-00-00 00:00:00'),(126936,10,'O32.2XX3 ','Maternal care for transverse and oblique lie, fetus 3','Y','0000-00-00 00:00:00'),(126935,10,'O32.2XX2 ','Maternal care for transverse and oblique lie, fetus 2','Y','0000-00-00 00:00:00'),(126934,10,'O32.2XX1 ','Maternal care for transverse and oblique lie, fetus 1','Y','0000-00-00 00:00:00'),(126933,10,'O32.2XX0 ','Maternal care for transverse and oblique lie, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126932,10,'O32.1XX9 ','Maternal care for breech presentation, other fetus','Y','0000-00-00 00:00:00'),(126930,10,'O32.1XX4 ','Maternal care for breech presentation, fetus 4','Y','0000-00-00 00:00:00'),(126931,10,'O32.1XX5 ','Maternal care for breech presentation, fetus 5','Y','0000-00-00 00:00:00'),(126929,10,'O32.1XX3 ','Maternal care for breech presentation, fetus 3','Y','0000-00-00 00:00:00'),(126928,10,'O32.1XX2 ','Maternal care for breech presentation, fetus 2','Y','0000-00-00 00:00:00'),(126927,10,'O32.1XX1 ','Maternal care for breech presentation, fetus 1','Y','0000-00-00 00:00:00'),(126926,10,'O32.1XX0 ','Maternal care for breech presentation, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126924,10,'O32.0XX5 ','Maternal care for unstable lie, fetus 5','Y','0000-00-00 00:00:00'),(126925,10,'O32.0XX9 ','Maternal care for unstable lie, other fetus','Y','0000-00-00 00:00:00'),(126923,10,'O32.0XX4 ','Maternal care for unstable lie, fetus 4','Y','0000-00-00 00:00:00'),(126922,10,'O32.0XX3 ','Maternal care for unstable lie, fetus 3','Y','0000-00-00 00:00:00'),(126920,10,'O32.0XX1 ','Maternal care for unstable lie, fetus 1','Y','0000-00-00 00:00:00'),(126921,10,'O32.0XX2 ','Maternal care for unstable lie, fetus 2','Y','0000-00-00 00:00:00'),(126919,10,'O32.0XX0 ','Maternal care for unstable lie, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126918,10,'O31.8X99 ','Other complications specific to multiple gestation, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(126917,10,'O31.8X95 ','Other complications specific to multiple gestation, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(126916,10,'O31.8X94 ','Other complications specific to multiple gestation, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(126915,10,'O31.8X93 ','Other complications specific to multiple gestation, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(126914,10,'O31.8X92 ','Other complications specific to multiple gestation, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(126913,10,'O31.8X91 ','Other complications specific to multiple gestation, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(126912,10,'O31.8X90 ','Other complications specific to multiple gestation, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126911,10,'O31.8X39 ','Other complications specific to multiple gestation, third trimester, other fetus','Y','0000-00-00 00:00:00'),(126910,10,'O31.8X35 ','Other complications specific to multiple gestation, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(126909,10,'O31.8X34 ','Other complications specific to multiple gestation, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(126908,10,'O31.8X33 ','Other complications specific to multiple gestation, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(126907,10,'O31.8X32 ','Other complications specific to multiple gestation, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(126906,10,'O31.8X31 ','Other complications specific to multiple gestation, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(126905,10,'O31.8X30 ','Other complications specific to multiple gestation, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126904,10,'O31.8X29 ','Other complications specific to multiple gestation, second trimester, other fetus','Y','0000-00-00 00:00:00'),(126903,10,'O31.8X25 ','Other complications specific to multiple gestation, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(126902,10,'O31.8X24 ','Other complications specific to multiple gestation, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(126901,10,'O31.8X23 ','Other complications specific to multiple gestation, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(126900,10,'O31.8X22 ','Other complications specific to multiple gestation, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(126899,10,'O31.8X21 ','Other complications specific to multiple gestation, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(126898,10,'O31.8X20 ','Other complications specific to multiple gestation, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126897,10,'O31.8X19 ','Other complications specific to multiple gestation, first trimester, other fetus','Y','0000-00-00 00:00:00'),(126896,10,'O31.8X15 ','Other complications specific to multiple gestation, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(126895,10,'O31.8X14 ','Other complications specific to multiple gestation, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(126894,10,'O31.8X13 ','Other complications specific to multiple gestation, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(126893,10,'O31.8X12 ','Other complications specific to multiple gestation, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(126892,10,'O31.8X11 ','Other complications specific to multiple gestation, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(126891,10,'O31.8X10 ','Other complications specific to multiple gestation, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126890,10,'O31.33X9 ','Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, other fetus','Y','0000-00-00 00:00:00'),(126889,10,'O31.33X5 ','Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(126888,10,'O31.33X4 ','Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(126887,10,'O31.33X3 ','Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(126886,10,'O31.33X2 ','Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(126885,10,'O31.33X1 ','Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(126884,10,'O31.33X0 ','Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126883,10,'O31.32X9 ','Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, other fetus','Y','0000-00-00 00:00:00'),(126882,10,'O31.32X5 ','Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(126881,10,'O31.32X4 ','Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(126880,10,'O31.32X3 ','Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(126879,10,'O31.32X2 ','Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(126878,10,'O31.32X1 ','Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(126877,10,'O31.32X0 ','Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126876,10,'O31.31X9 ','Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, other fetus','Y','0000-00-00 00:00:00'),(126875,10,'O31.31X5 ','Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(126874,10,'O31.31X4 ','Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(126873,10,'O31.31X3 ','Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(126872,10,'O31.31X2 ','Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(126871,10,'O31.31X1 ','Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(126870,10,'O31.31X0 ','Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126869,10,'O31.30X9 ','Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(126868,10,'O31.30X5 ','Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(126867,10,'O31.30X4 ','Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(126866,10,'O31.30X3 ','Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(126865,10,'O31.30X2 ','Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(126864,10,'O31.30X1 ','Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(126863,10,'O31.30X0 ','Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126862,10,'O31.23X9 ','Continuing pregnancy after intrauterine death of one fetus or more, third trimester, other fetus','Y','0000-00-00 00:00:00'),(126861,10,'O31.23X5 ','Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(126860,10,'O31.23X4 ','Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(126859,10,'O31.23X3 ','Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(126858,10,'O31.23X2 ','Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(126857,10,'O31.23X1 ','Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(126856,10,'O31.23X0 ','Continuing pregnancy after intrauterine death of one fetus or more, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126855,10,'O31.22X9 ','Continuing pregnancy after intrauterine death of one fetus or more, second trimester, other fetus','Y','0000-00-00 00:00:00'),(126854,10,'O31.22X5 ','Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(126853,10,'O31.22X4 ','Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(126852,10,'O31.22X3 ','Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(126851,10,'O31.22X2 ','Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(126850,10,'O31.22X1 ','Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(126849,10,'O31.22X0 ','Continuing pregnancy after intrauterine death of one fetus or more, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126848,10,'O31.21X9 ','Continuing pregnancy after intrauterine death of one fetus or more, first trimester, other fetus','Y','0000-00-00 00:00:00'),(126847,10,'O31.21X5 ','Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(126846,10,'O31.21X4 ','Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(126845,10,'O31.21X3 ','Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(126844,10,'O31.21X2 ','Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(126843,10,'O31.21X1 ','Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(126842,10,'O31.21X0 ','Continuing pregnancy after intrauterine death of one fetus or more, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126841,10,'O31.20X9 ','Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(126840,10,'O31.20X5 ','Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(126839,10,'O31.20X4 ','Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(126838,10,'O31.20X3 ','Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(126837,10,'O31.20X2 ','Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(126836,10,'O31.20X1 ','Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(126835,10,'O31.20X0 ','Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126834,10,'O31.13X9 ','Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, other fetus','Y','0000-00-00 00:00:00'),(126833,10,'O31.13X5 ','Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(126832,10,'O31.13X4 ','Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(126831,10,'O31.13X3 ','Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(126830,10,'O31.13X2 ','Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(126829,10,'O31.13X1 ','Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(126828,10,'O31.13X0 ','Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126827,10,'O31.12X9 ','Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, other fetus','Y','0000-00-00 00:00:00'),(126826,10,'O31.12X5 ','Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(126825,10,'O31.12X4 ','Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(126824,10,'O31.12X3 ','Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(126823,10,'O31.12X2 ','Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(126822,10,'O31.12X1 ','Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(126821,10,'O31.12X0 ','Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126820,10,'O31.11X9 ','Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, other fetus','Y','0000-00-00 00:00:00'),(126819,10,'O31.11X5 ','Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(126818,10,'O31.11X4 ','Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(126817,10,'O31.11X3 ','Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(126816,10,'O31.11X2 ','Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(126815,10,'O31.11X1 ','Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(126814,10,'O31.11X0 ','Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126813,10,'O31.10X9 ','Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(126812,10,'O31.10X5 ','Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(126811,10,'O31.10X4 ','Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(126810,10,'O31.10X3 ','Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(126809,10,'O31.10X2 ','Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(126808,10,'O31.10X1 ','Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(126807,10,'O31.10X0 ','Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126806,10,'O31.03X9 ','Papyraceous fetus, third trimester, other fetus','Y','0000-00-00 00:00:00'),(126804,10,'O31.03X4 ','Papyraceous fetus, third trimester, fetus 4','Y','0000-00-00 00:00:00'),(126805,10,'O31.03X5 ','Papyraceous fetus, third trimester, fetus 5','Y','0000-00-00 00:00:00'),(126803,10,'O31.03X3 ','Papyraceous fetus, third trimester, fetus 3','Y','0000-00-00 00:00:00'),(126801,10,'O31.03X1 ','Papyraceous fetus, third trimester, fetus 1','Y','0000-00-00 00:00:00'),(126802,10,'O31.03X2 ','Papyraceous fetus, third trimester, fetus 2','Y','0000-00-00 00:00:00'),(126800,10,'O31.03X0 ','Papyraceous fetus, third trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126799,10,'O31.02X9 ','Papyraceous fetus, second trimester, other fetus','Y','0000-00-00 00:00:00'),(126798,10,'O31.02X5 ','Papyraceous fetus, second trimester, fetus 5','Y','0000-00-00 00:00:00'),(126797,10,'O31.02X4 ','Papyraceous fetus, second trimester, fetus 4','Y','0000-00-00 00:00:00'),(126795,10,'O31.02X2 ','Papyraceous fetus, second trimester, fetus 2','Y','0000-00-00 00:00:00'),(126796,10,'O31.02X3 ','Papyraceous fetus, second trimester, fetus 3','Y','0000-00-00 00:00:00'),(126794,10,'O31.02X1 ','Papyraceous fetus, second trimester, fetus 1','Y','0000-00-00 00:00:00'),(126793,10,'O31.02X0 ','Papyraceous fetus, second trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126791,10,'O31.01X5 ','Papyraceous fetus, first trimester, fetus 5','Y','0000-00-00 00:00:00'),(126792,10,'O31.01X9 ','Papyraceous fetus, first trimester, other fetus','Y','0000-00-00 00:00:00'),(126790,10,'O31.01X4 ','Papyraceous fetus, first trimester, fetus 4','Y','0000-00-00 00:00:00'),(126789,10,'O31.01X3 ','Papyraceous fetus, first trimester, fetus 3','Y','0000-00-00 00:00:00'),(126788,10,'O31.01X2 ','Papyraceous fetus, first trimester, fetus 2','Y','0000-00-00 00:00:00'),(126786,10,'O31.01X0 ','Papyraceous fetus, first trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126787,10,'O31.01X1 ','Papyraceous fetus, first trimester, fetus 1','Y','0000-00-00 00:00:00'),(126785,10,'O31.00X9 ','Papyraceous fetus, unspecified trimester, other fetus','Y','0000-00-00 00:00:00'),(126784,10,'O31.00X5 ','Papyraceous fetus, unspecified trimester, fetus 5','Y','0000-00-00 00:00:00'),(126782,10,'O31.00X3 ','Papyraceous fetus, unspecified trimester, fetus 3','Y','0000-00-00 00:00:00'),(126783,10,'O31.00X4 ','Papyraceous fetus, unspecified trimester, fetus 4','Y','0000-00-00 00:00:00'),(126780,10,'O31.00X1 ','Papyraceous fetus, unspecified trimester, fetus 1','Y','0000-00-00 00:00:00'),(126781,10,'O31.00X2 ','Papyraceous fetus, unspecified trimester, fetus 2','Y','0000-00-00 00:00:00'),(126779,10,'O31.00X0 ','Papyraceous fetus, unspecified trimester, not applicable or unspecified','Y','0000-00-00 00:00:00'),(126778,10,'O30.93 ','Multiple gestation, unspecified, third trimester','Y','0000-00-00 00:00:00'),(126777,10,'O30.92 ','Multiple gestation, unspecified, second trimester','Y','0000-00-00 00:00:00'),(126775,10,'O30.90 ','Multiple gestation, unspecified, unspecified trimester','Y','0000-00-00 00:00:00'),(126776,10,'O30.91 ','Multiple gestation, unspecified, first trimester','Y','0000-00-00 00:00:00'),(126774,10,'O30.899 ','Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs, unspecified trimester','Y','0000-00-00 00:00:00'),(126773,10,'O30.893 ','Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs, third trimester','Y','0000-00-00 00:00:00'),(126772,10,'O30.892 ','Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs, second trimester','Y','0000-00-00 00:00:00'),(126771,10,'O30.891 ','Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs, first trimester','Y','0000-00-00 00:00:00'),(126770,10,'O30.839 ','Other specified multiple gestation, number of chorions and amnions are both equal to the number of fetuses, unspecified trimester','Y','0000-00-00 00:00:00'),(126769,10,'O30.833 ','Other specified multiple gestation, number of chorions and amnions are both equal to the number of fetuses, third trimester','Y','0000-00-00 00:00:00'),(126768,10,'O30.832 ','Other specified multiple gestation, number of chorions and amnions are both equal to the number of fetuses, second trimester','Y','0000-00-00 00:00:00'),(126767,10,'O30.831 ','Other specified multiple gestation, number of chorions and amnions are both equal to the number of fetuses, first trimester','Y','0000-00-00 00:00:00'),(126766,10,'O30.829 ','Other specified multiple gestation with two or more monoamniotic fetuses, unspecified trimester','Y','0000-00-00 00:00:00'),(126765,10,'O30.823 ','Other specified multiple gestation with two or more monoamniotic fetuses, third trimester','Y','0000-00-00 00:00:00'),(126764,10,'O30.822 ','Other specified multiple gestation with two or more monoamniotic fetuses, second trimester','Y','0000-00-00 00:00:00'),(126763,10,'O30.821 ','Other specified multiple gestation with two or more monoamniotic fetuses, first trimester','Y','0000-00-00 00:00:00'),(126762,10,'O30.819 ','Other specified multiple gestation with two or more monochorionic fetuses, unspecified trimester','Y','0000-00-00 00:00:00'),(126761,10,'O30.813 ','Other specified multiple gestation with two or more monochorionic fetuses, third trimester','Y','0000-00-00 00:00:00'),(126760,10,'O30.812 ','Other specified multiple gestation with two or more monochorionic fetuses, second trimester','Y','0000-00-00 00:00:00'),(126759,10,'O30.811 ','Other specified multiple gestation with two or more monochorionic fetuses, first trimester','Y','0000-00-00 00:00:00'),(126758,10,'O30.809 ','Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs, unspecified trimester','Y','0000-00-00 00:00:00'),(126757,10,'O30.803 ','Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs, third trimester','Y','0000-00-00 00:00:00'),(126756,10,'O30.802 ','Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs, second trimester','Y','0000-00-00 00:00:00'),(126755,10,'O30.801 ','Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs, first trimester','Y','0000-00-00 00:00:00'),(126754,10,'O30.299 ','Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs, unspecified trimester','Y','0000-00-00 00:00:00'),(126753,10,'O30.293 ','Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs, third trimester','Y','0000-00-00 00:00:00'),(126752,10,'O30.292 ','Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs, second trimester','Y','0000-00-00 00:00:00'),(126751,10,'O30.291 ','Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs, first trimester','Y','0000-00-00 00:00:00'),(126750,10,'O30.239 ','Quadruplet pregnancy, quadrachorionic/quadra-amniotic, unspecified trimester','Y','0000-00-00 00:00:00'),(126749,10,'O30.233 ','Quadruplet pregnancy, quadrachorionic/quadra-amniotic, third trimester','Y','0000-00-00 00:00:00'),(126747,10,'O30.231 ','Quadruplet pregnancy, quadrachorionic/quadra-amniotic, first trimester','Y','0000-00-00 00:00:00'),(126748,10,'O30.232 ','Quadruplet pregnancy, quadrachorionic/quadra-amniotic, second trimester','Y','0000-00-00 00:00:00'),(126746,10,'O30.229 ','Quadruplet pregnancy with two or more monoamniotic fetuses, unspecified trimester','Y','0000-00-00 00:00:00'),(126745,10,'O30.223 ','Quadruplet pregnancy with two or more monoamniotic fetuses, third trimester','Y','0000-00-00 00:00:00'),(126744,10,'O30.222 ','Quadruplet pregnancy with two or more monoamniotic fetuses, second trimester','Y','0000-00-00 00:00:00'),(126743,10,'O30.221 ','Quadruplet pregnancy with two or more monoamniotic fetuses, first trimester','Y','0000-00-00 00:00:00'),(126742,10,'O30.219 ','Quadruplet pregnancy with two or more monochorionic fetuses, unspecified trimester','Y','0000-00-00 00:00:00'),(126741,10,'O30.213 ','Quadruplet pregnancy with two or more monochorionic fetuses, third trimester','Y','0000-00-00 00:00:00'),(126740,10,'O30.212 ','Quadruplet pregnancy with two or more monochorionic fetuses, second trimester','Y','0000-00-00 00:00:00'),(126739,10,'O30.211 ','Quadruplet pregnancy with two or more monochorionic fetuses, first trimester','Y','0000-00-00 00:00:00'),(126738,10,'O30.209 ','Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, unspecified trimester','Y','0000-00-00 00:00:00'),(126737,10,'O30.203 ','Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, third trimester','Y','0000-00-00 00:00:00'),(126736,10,'O30.202 ','Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, second trimester','Y','0000-00-00 00:00:00'),(126735,10,'O30.201 ','Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, first trimester','Y','0000-00-00 00:00:00'),(126734,10,'O30.199 ','Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs, unspecified trimester','Y','0000-00-00 00:00:00'),(126733,10,'O30.193 ','Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs, third trimester','Y','0000-00-00 00:00:00'),(126732,10,'O30.192 ','Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs, second trimester','Y','0000-00-00 00:00:00'),(126731,10,'O30.191 ','Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs, first trimester','Y','0000-00-00 00:00:00'),(126730,10,'O30.139 ','Triplet pregnancy, trichorionic/triamniotic, unspecified trimester','Y','0000-00-00 00:00:00'),(126728,10,'O30.132 ','Triplet pregnancy, trichorionic/triamniotic, second trimester','Y','0000-00-00 00:00:00'),(126729,10,'O30.133 ','Triplet pregnancy, trichorionic/triamniotic, third trimester','Y','0000-00-00 00:00:00'),(126727,10,'O30.131 ','Triplet pregnancy, trichorionic/triamniotic, first trimester','Y','0000-00-00 00:00:00'),(126726,10,'O30.129 ','Triplet pregnancy with two or more monoamniotic fetuses, unspecified trimester','Y','0000-00-00 00:00:00'),(126725,10,'O30.123 ','Triplet pregnancy with two or more monoamniotic fetuses, third trimester','Y','0000-00-00 00:00:00'),(126724,10,'O30.122 ','Triplet pregnancy with two or more monoamniotic fetuses, second trimester','Y','0000-00-00 00:00:00'),(126723,10,'O30.121 ','Triplet pregnancy with two or more monoamniotic fetuses, first trimester','Y','0000-00-00 00:00:00'),(126722,10,'O30.119 ','Triplet pregnancy with two or more monochorionic fetuses, unspecified trimester','Y','0000-00-00 00:00:00'),(126721,10,'O30.113 ','Triplet pregnancy with two or more monochorionic fetuses, third trimester','Y','0000-00-00 00:00:00'),(126720,10,'O30.112 ','Triplet pregnancy with two or more monochorionic fetuses, second trimester','Y','0000-00-00 00:00:00'),(126719,10,'O30.111 ','Triplet pregnancy with two or more monochorionic fetuses, first trimester','Y','0000-00-00 00:00:00'),(126718,10,'O30.109 ','Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, unspecified trimester','Y','0000-00-00 00:00:00'),(126717,10,'O30.103 ','Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, third trimester','Y','0000-00-00 00:00:00'),(126716,10,'O30.102 ','Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, second trimester','Y','0000-00-00 00:00:00'),(126715,10,'O30.101 ','Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, first trimester','Y','0000-00-00 00:00:00'),(126714,10,'O30.099 ','Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, unspecified trimester','Y','0000-00-00 00:00:00'),(126713,10,'O30.093 ','Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, third trimester','Y','0000-00-00 00:00:00'),(126712,10,'O30.092 ','Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, second trimester','Y','0000-00-00 00:00:00'),(126711,10,'O30.091 ','Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, first trimester','Y','0000-00-00 00:00:00'),(126709,10,'O30.043 ','Twin pregnancy, dichorionic/diamniotic, third trimester','Y','0000-00-00 00:00:00'),(126710,10,'O30.049 ','Twin pregnancy, dichorionic/diamniotic, unspecified trimester','Y','0000-00-00 00:00:00'),(126708,10,'O30.042 ','Twin pregnancy, dichorionic/diamniotic, second trimester','Y','0000-00-00 00:00:00'),(126707,10,'O30.041 ','Twin pregnancy, dichorionic/diamniotic, first trimester','Y','0000-00-00 00:00:00'),(126705,10,'O30.033 ','Twin pregnancy, monochorionic/diamniotic, third trimester','Y','0000-00-00 00:00:00'),(126706,10,'O30.039 ','Twin pregnancy, monochorionic/diamniotic, unspecified trimester','Y','0000-00-00 00:00:00'),(126704,10,'O30.032 ','Twin pregnancy, monochorionic/diamniotic, second trimester','Y','0000-00-00 00:00:00'),(126703,10,'O30.031 ','Twin pregnancy, monochorionic/diamniotic, first trimester','Y','0000-00-00 00:00:00'),(126702,10,'O30.029 ','Conjoined twin pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126700,10,'O30.022 ','Conjoined twin pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126701,10,'O30.023 ','Conjoined twin pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126699,10,'O30.021 ','Conjoined twin pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126698,10,'O30.019 ','Twin pregnancy, monochorionic/monoamniotic, unspecified trimester','Y','0000-00-00 00:00:00'),(126697,10,'O30.013 ','Twin pregnancy, monochorionic/monoamniotic, third trimester','Y','0000-00-00 00:00:00'),(126696,10,'O30.012 ','Twin pregnancy, monochorionic/monoamniotic, second trimester','Y','0000-00-00 00:00:00'),(126695,10,'O30.011 ','Twin pregnancy, monochorionic/monoamniotic, first trimester','Y','0000-00-00 00:00:00'),(126694,10,'O30.009 ','Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, unspecified trimester','Y','0000-00-00 00:00:00'),(126693,10,'O30.003 ','Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, third trimester','Y','0000-00-00 00:00:00'),(126692,10,'O30.002 ','Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, second trimester','Y','0000-00-00 00:00:00'),(126691,10,'O30.001 ','Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, first trimester','Y','0000-00-00 00:00:00'),(126690,10,'O29.93 ','Unspecified complication of anesthesia during pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126689,10,'O29.92 ','Unspecified complication of anesthesia during pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126688,10,'O29.91 ','Unspecified complication of anesthesia during pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126687,10,'O29.90 ','Unspecified complication of anesthesia during pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126686,10,'O29.8X9 ','Other complications of anesthesia during pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126685,10,'O29.8X3 ','Other complications of anesthesia during pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126684,10,'O29.8X2 ','Other complications of anesthesia during pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126683,10,'O29.8X1 ','Other complications of anesthesia during pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126682,10,'O29.63 ','Failed or difficult intubation for anesthesia during pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126681,10,'O29.62 ','Failed or difficult intubation for anesthesia during pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126680,10,'O29.61 ','Failed or difficult intubation for anesthesia during pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126679,10,'O29.60 ','Failed or difficult intubation for anesthesia during pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126678,10,'O29.5X9 ','Other complications of spinal and epidural anesthesia during pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126677,10,'O29.5X3 ','Other complications of spinal and epidural anesthesia during pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126676,10,'O29.5X2 ','Other complications of spinal and epidural anesthesia during pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126675,10,'O29.5X1 ','Other complications of spinal and epidural anesthesia during pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126674,10,'O29.43 ','Spinal and epidural anesthesia induced headache during pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126673,10,'O29.42 ','Spinal and epidural anesthesia induced headache during pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126672,10,'O29.41 ','Spinal and epidural anesthesia induced headache during pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126671,10,'O29.40 ','Spinal and epidural anesthesia induced headache during pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126670,10,'O29.3X9 ','Toxic reaction to local anesthesia during pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126669,10,'O29.3X3 ','Toxic reaction to local anesthesia during pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126667,10,'O29.3X1 ','Toxic reaction to local anesthesia during pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126668,10,'O29.3X2 ','Toxic reaction to local anesthesia during pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126666,10,'O29.299 ','Other central nervous system complications of anesthesia during pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126665,10,'O29.293 ','Other central nervous system complications of anesthesia during pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126664,10,'O29.292 ','Other central nervous system complications of anesthesia during pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126663,10,'O29.291 ','Other central nervous system complications of anesthesia during pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126662,10,'O29.219 ','Cerebral anoxia due to anesthesia during pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126661,10,'O29.213 ','Cerebral anoxia due to anesthesia during pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126659,10,'O29.211 ','Cerebral anoxia due to anesthesia during pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126660,10,'O29.212 ','Cerebral anoxia due to anesthesia during pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126658,10,'O29.199 ','Other cardiac complications of anesthesia during pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126657,10,'O29.193 ','Other cardiac complications of anesthesia during pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126656,10,'O29.192 ','Other cardiac complications of anesthesia during pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126655,10,'O29.191 ','Other cardiac complications of anesthesia during pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126654,10,'O29.129 ','Cardiac failure due to anesthesia during pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126652,10,'O29.122 ','Cardiac failure due to anesthesia during pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126653,10,'O29.123 ','Cardiac failure due to anesthesia during pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126651,10,'O29.121 ','Cardiac failure due to anesthesia during pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126650,10,'O29.119 ','Cardiac arrest due to anesthesia during pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126649,10,'O29.113 ','Cardiac arrest due to anesthesia during pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126648,10,'O29.112 ','Cardiac arrest due to anesthesia during pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126647,10,'O29.111 ','Cardiac arrest due to anesthesia during pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126646,10,'O29.099 ','Other pulmonary complications of anesthesia during pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126645,10,'O29.093 ','Other pulmonary complications of anesthesia during pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126644,10,'O29.092 ','Other pulmonary complications of anesthesia during pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126643,10,'O29.091 ','Other pulmonary complications of anesthesia during pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126642,10,'O29.029 ','Pressure collapse of lung due to anesthesia during pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126641,10,'O29.023 ','Pressure collapse of lung due to anesthesia during pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126640,10,'O29.022 ','Pressure collapse of lung due to anesthesia during pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126639,10,'O29.021 ','Pressure collapse of lung due to anesthesia during pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126638,10,'O29.019 ','Aspiration pneumonitis due to anesthesia during pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126637,10,'O29.013 ','Aspiration pneumonitis due to anesthesia during pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126636,10,'O29.012 ','Aspiration pneumonitis due to anesthesia during pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126635,10,'O29.011 ','Aspiration pneumonitis due to anesthesia during pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126634,10,'O28.9 ','Unspecified abnormal findings on antenatal screening of mother','Y','0000-00-00 00:00:00'),(126633,10,'O28.8 ','Other abnormal findings on antenatal screening of mother','Y','0000-00-00 00:00:00'),(126632,10,'O28.5 ','Abnormal chromosomal and genetic finding on antenatal screening of mother','Y','0000-00-00 00:00:00'),(126630,10,'O28.3 ','Abnormal ultrasonic finding on antenatal screening of mother','Y','0000-00-00 00:00:00'),(126631,10,'O28.4 ','Abnormal radiological finding on antenatal screening of mother','Y','0000-00-00 00:00:00'),(126629,10,'O28.2 ','Abnormal cytological finding on antenatal screening of mother','Y','0000-00-00 00:00:00'),(126628,10,'O28.1 ','Abnormal biochemical finding on antenatal screening of mother','Y','0000-00-00 00:00:00'),(126627,10,'O28.0 ','Abnormal hematological finding on antenatal screening of mother','Y','0000-00-00 00:00:00'),(126626,10,'O26.93 ','Pregnancy related conditions, unspecified, third trimester','Y','0000-00-00 00:00:00'),(126625,10,'O26.92 ','Pregnancy related conditions, unspecified, second trimester','Y','0000-00-00 00:00:00'),(126624,10,'O26.91 ','Pregnancy related conditions, unspecified, first trimester','Y','0000-00-00 00:00:00'),(126623,10,'O26.90 ','Pregnancy related conditions, unspecified, unspecified trimester','Y','0000-00-00 00:00:00'),(126621,10,'O26.893 ','Other specified pregnancy related conditions, third trimester','Y','0000-00-00 00:00:00'),(126622,10,'O26.899 ','Other specified pregnancy related conditions, unspecified trimester','Y','0000-00-00 00:00:00'),(126620,10,'O26.892 ','Other specified pregnancy related conditions, second trimester','Y','0000-00-00 00:00:00'),(126619,10,'O26.891 ','Other specified pregnancy related conditions, first trimester','Y','0000-00-00 00:00:00'),(126618,10,'O26.879 ','Cervical shortening, unspecified trimester','Y','0000-00-00 00:00:00'),(126616,10,'O26.872 ','Cervical shortening, second trimester','Y','0000-00-00 00:00:00'),(126617,10,'O26.873 ','Cervical shortening, third trimester','Y','0000-00-00 00:00:00'),(126615,10,'O26.86 ','Pruritic urticarial papules and plaques of pregnancy (PUPPP)','Y','0000-00-00 00:00:00'),(126614,10,'O26.859 ','Spotting complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126612,10,'O26.852 ','Spotting complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126613,10,'O26.853 ','Spotting complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126611,10,'O26.851 ','Spotting complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126610,10,'O26.849 ','Uterine size-date discrepancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126609,10,'O26.843 ','Uterine size-date discrepancy, third trimester','Y','0000-00-00 00:00:00'),(126607,10,'O26.841 ','Uterine size-date discrepancy, first trimester','Y','0000-00-00 00:00:00'),(126608,10,'O26.842 ','Uterine size-date discrepancy, second trimester','Y','0000-00-00 00:00:00'),(126606,10,'O26.839 ','Pregnancy related renal disease, unspecified trimester','Y','0000-00-00 00:00:00'),(126605,10,'O26.833 ','Pregnancy related renal disease, third trimester','Y','0000-00-00 00:00:00'),(126603,10,'O26.831 ','Pregnancy related renal disease, first trimester','Y','0000-00-00 00:00:00'),(126604,10,'O26.832 ','Pregnancy related renal disease, second trimester','Y','0000-00-00 00:00:00'),(126601,10,'O26.823 ','Pregnancy related peripheral neuritis, third trimester','Y','0000-00-00 00:00:00'),(126602,10,'O26.829 ','Pregnancy related peripheral neuritis, unspecified trimester','Y','0000-00-00 00:00:00'),(126600,10,'O26.822 ','Pregnancy related peripheral neuritis, second trimester','Y','0000-00-00 00:00:00'),(126599,10,'O26.821 ','Pregnancy related peripheral neuritis, first trimester','Y','0000-00-00 00:00:00'),(126597,10,'O26.813 ','Pregnancy related exhaustion and fatigue, third trimester','Y','0000-00-00 00:00:00'),(126598,10,'O26.819 ','Pregnancy related exhaustion and fatigue, unspecified trimester','Y','0000-00-00 00:00:00'),(126596,10,'O26.812 ','Pregnancy related exhaustion and fatigue, second trimester','Y','0000-00-00 00:00:00'),(126595,10,'O26.811 ','Pregnancy related exhaustion and fatigue, first trimester','Y','0000-00-00 00:00:00'),(126594,10,'O26.73 ','Subluxation of symphysis (pubis) in the puerperium','Y','0000-00-00 00:00:00'),(126593,10,'O26.72 ','Subluxation of symphysis (pubis) in childbirth','Y','0000-00-00 00:00:00'),(126592,10,'O26.719 ','Subluxation of symphysis (pubis) in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126590,10,'O26.712 ','Subluxation of symphysis (pubis) in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126591,10,'O26.713 ','Subluxation of symphysis (pubis) in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126589,10,'O26.711 ','Subluxation of symphysis (pubis) in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126588,10,'O26.649 ','Intrahepatic cholestasis of pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126587,10,'O26.643 ','Intrahepatic cholestasis of pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126586,10,'O26.642 ','Intrahepatic cholestasis of pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126585,10,'O26.641 ','Intrahepatic cholestasis of pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126583,10,'O26.62 ','Liver and biliary tract disorders in childbirth','Y','0000-00-00 00:00:00'),(126584,10,'O26.63 ','Liver and biliary tract disorders in the puerperium','Y','0000-00-00 00:00:00'),(126582,10,'O26.619 ','Liver and biliary tract disorders in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126581,10,'O26.613 ','Liver and biliary tract disorders in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126580,10,'O26.612 ','Liver and biliary tract disorders in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126578,10,'O26.53 ','Maternal hypotension syndrome, third trimester','Y','0000-00-00 00:00:00'),(126579,10,'O26.611 ','Liver and biliary tract disorders in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126577,10,'O26.52 ','Maternal hypotension syndrome, second trimester','Y','0000-00-00 00:00:00'),(126576,10,'O26.51 ','Maternal hypotension syndrome, first trimester','Y','0000-00-00 00:00:00'),(126574,10,'O26.43 ','Herpes gestationis, third trimester','Y','0000-00-00 00:00:00'),(126575,10,'O26.50 ','Maternal hypotension syndrome, unspecified trimester','Y','0000-00-00 00:00:00'),(126572,10,'O26.41 ','Herpes gestationis, first trimester','Y','0000-00-00 00:00:00'),(126573,10,'O26.42 ','Herpes gestationis, second trimester','Y','0000-00-00 00:00:00'),(126571,10,'O26.40 ','Herpes gestationis, unspecified trimester','Y','0000-00-00 00:00:00'),(126570,10,'O26.33 ','Retained intrauterine contraceptive device in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126569,10,'O26.32 ','Retained intrauterine contraceptive device in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126568,10,'O26.31 ','Retained intrauterine contraceptive device in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126567,10,'O26.30 ','Retained intrauterine contraceptive device in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126566,10,'O26.23 ','Pregnancy care for patient with recurrent pregnancy loss, third trimester','Y','0000-00-00 00:00:00'),(126565,10,'O26.22 ','Pregnancy care for patient with recurrent pregnancy loss, second trimester','Y','0000-00-00 00:00:00'),(126564,10,'O26.21 ','Pregnancy care for patient with recurrent pregnancy loss, first trimester','Y','0000-00-00 00:00:00'),(126563,10,'O26.20 ','Pregnancy care for patient with recurrent pregnancy loss, unspecified trimester','Y','0000-00-00 00:00:00'),(126561,10,'O26.12 ','Low weight gain in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126562,10,'O26.13 ','Low weight gain in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126559,10,'O26.10 ','Low weight gain in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126560,10,'O26.11 ','Low weight gain in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126558,10,'O26.03 ','Excessive weight gain in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126557,10,'O26.02 ','Excessive weight gain in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126555,10,'O26.00 ','Excessive weight gain in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126556,10,'O26.01 ','Excessive weight gain in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126553,10,'O25.2 ','Malnutrition in childbirth','Y','0000-00-00 00:00:00'),(126554,10,'O25.3 ','Malnutrition in the puerperium','Y','0000-00-00 00:00:00'),(126552,10,'O25.13 ','Malnutrition in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126551,10,'O25.12 ','Malnutrition in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126550,10,'O25.11 ','Malnutrition in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126548,10,'O24.93 ','Unspecified diabetes mellitus in the puerperium','Y','0000-00-00 00:00:00'),(126549,10,'O25.10 ','Malnutrition in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126547,10,'O24.92 ','Unspecified diabetes mellitus in childbirth','Y','0000-00-00 00:00:00'),(126545,10,'O24.913 ','Unspecified diabetes mellitus in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126546,10,'O24.919 ','Unspecified diabetes mellitus in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126544,10,'O24.912 ','Unspecified diabetes mellitus in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126543,10,'O24.911 ','Unspecified diabetes mellitus in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126542,10,'O24.83 ','Other pre-existing diabetes mellitus in the puerperium','Y','0000-00-00 00:00:00'),(126541,10,'O24.82 ','Other pre-existing diabetes mellitus in childbirth','Y','0000-00-00 00:00:00'),(126540,10,'O24.819 ','Other pre-existing diabetes mellitus in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126539,10,'O24.813 ','Other pre-existing diabetes mellitus in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126537,10,'O24.811 ','Other pre-existing diabetes mellitus in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126538,10,'O24.812 ','Other pre-existing diabetes mellitus in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126536,10,'O24.439 ','Gestational diabetes mellitus in the puerperium, unspecified control','Y','0000-00-00 00:00:00'),(126535,10,'O24.435 ','Gestational diabetes mellitus in puerperium, controlled by oral hypoglycemic drugs','Y','0000-00-00 00:00:00'),(126534,10,'O24.434 ','Gestational diabetes mellitus in the puerperium, insulin controlled','Y','0000-00-00 00:00:00'),(126533,10,'O24.430 ','Gestational diabetes mellitus in the puerperium, diet controlled','Y','0000-00-00 00:00:00'),(126532,10,'O24.429 ','Gestational diabetes mellitus in childbirth, unspecified control','Y','0000-00-00 00:00:00'),(126531,10,'O24.425 ','Gestational diabetes mellitus in childbirth, controlled by oral hypoglycemic drugs','Y','0000-00-00 00:00:00'),(126530,10,'O24.424 ','Gestational diabetes mellitus in childbirth, insulin controlled','Y','0000-00-00 00:00:00'),(126529,10,'O24.420 ','Gestational diabetes mellitus in childbirth, diet controlled','Y','0000-00-00 00:00:00'),(126528,10,'O24.419 ','Gestational diabetes mellitus in pregnancy, unspecified control','Y','0000-00-00 00:00:00'),(126527,10,'O24.415 ','Gestational diabetes mellitus in pregnancy, controlled by oral hypoglycemic drugs','Y','0000-00-00 00:00:00'),(126526,10,'O24.414 ','Gestational diabetes mellitus in pregnancy, insulin controlled','Y','0000-00-00 00:00:00'),(126525,10,'O24.410 ','Gestational diabetes mellitus in pregnancy, diet controlled','Y','0000-00-00 00:00:00'),(126523,10,'O24.32 ','Unspecified pre-existing diabetes mellitus in childbirth','Y','0000-00-00 00:00:00'),(126524,10,'O24.33 ','Unspecified pre-existing diabetes mellitus in the puerperium','Y','0000-00-00 00:00:00'),(126522,10,'O24.319 ','Unspecified pre-existing diabetes mellitus in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126521,10,'O24.313 ','Unspecified pre-existing diabetes mellitus in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126520,10,'O24.312 ','Unspecified pre-existing diabetes mellitus in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126519,10,'O24.311 ','Unspecified pre-existing diabetes mellitus in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126518,10,'O24.13 ','Pre-existing type 2 diabetes mellitus, in the puerperium','Y','0000-00-00 00:00:00'),(126517,10,'O24.12 ','Pre-existing type 2 diabetes mellitus, in childbirth','Y','0000-00-00 00:00:00'),(126516,10,'O24.119 ','Pre-existing type 2 diabetes mellitus, in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126515,10,'O24.113 ','Pre-existing type 2 diabetes mellitus, in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126514,10,'O24.112 ','Pre-existing type 2 diabetes mellitus, in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126512,10,'O24.03 ','Pre-existing type 1 diabetes mellitus, in the puerperium','Y','0000-00-00 00:00:00'),(126513,10,'O24.111 ','Pre-existing type 2 diabetes mellitus, in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126511,10,'O24.02 ','Pre-existing type 1 diabetes mellitus, in childbirth','Y','0000-00-00 00:00:00'),(126510,10,'O24.019 ','Pre-existing type 1 diabetes mellitus, in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126509,10,'O24.013 ','Pre-existing type 1 diabetes mellitus, in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126508,10,'O24.012 ','Pre-existing type 1 diabetes mellitus, in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126507,10,'O24.011 ','Pre-existing type 1 diabetes mellitus, in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126506,10,'O23.93 ','Unspecified genitourinary tract infection in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126505,10,'O23.92 ','Unspecified genitourinary tract infection in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126504,10,'O23.91 ','Unspecified genitourinary tract infection in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126503,10,'O23.90 ','Unspecified genitourinary tract infection in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126502,10,'O23.599 ','Infection of other part of genital tract in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126501,10,'O23.593 ','Infection of other part of genital tract in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126500,10,'O23.592 ','Infection of other part of genital tract in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126499,10,'O23.591 ','Infection of other part of genital tract in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126497,10,'O23.523 ','Salpingo-oophoritis in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126498,10,'O23.529 ','Salpingo-oophoritis in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126495,10,'O23.521 ','Salpingo-oophoritis in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126496,10,'O23.522 ','Salpingo-oophoritis in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126494,10,'O23.519 ','Infections of cervix in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126493,10,'O23.513 ','Infections of cervix in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126491,10,'O23.511 ','Infections of cervix in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126492,10,'O23.512 ','Infections of cervix in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126490,10,'O23.43 ','Unspecified infection of urinary tract in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126489,10,'O23.42 ','Unspecified infection of urinary tract in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126488,10,'O23.41 ','Unspecified infection of urinary tract in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126487,10,'O23.40 ','Unspecified infection of urinary tract in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126486,10,'O23.33 ','Infections of other parts of urinary tract in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126485,10,'O23.32 ','Infections of other parts of urinary tract in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126484,10,'O23.31 ','Infections of other parts of urinary tract in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126483,10,'O23.30 ','Infections of other parts of urinary tract in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126482,10,'O23.23 ','Infections of urethra in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126481,10,'O23.22 ','Infections of urethra in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126480,10,'O23.21 ','Infections of urethra in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126478,10,'O23.13 ','Infections of bladder in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126479,10,'O23.20 ','Infections of urethra in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126477,10,'O23.12 ','Infections of bladder in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126475,10,'O23.10 ','Infections of bladder in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126476,10,'O23.11 ','Infections of bladder in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126474,10,'O23.03 ','Infections of kidney in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126472,10,'O23.01 ','Infections of kidney in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126473,10,'O23.02 ','Infections of kidney in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126471,10,'O23.00 ','Infections of kidney in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126470,10,'O22.93 ','Venous complication in pregnancy, unspecified, third trimester','Y','0000-00-00 00:00:00'),(126469,10,'O22.92 ','Venous complication in pregnancy, unspecified, second trimester','Y','0000-00-00 00:00:00'),(126468,10,'O22.91 ','Venous complication in pregnancy, unspecified, first trimester','Y','0000-00-00 00:00:00'),(126467,10,'O22.90 ','Venous complication in pregnancy, unspecified, unspecified trimester','Y','0000-00-00 00:00:00'),(126466,10,'O22.8X9 ','Other venous complications in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126464,10,'O22.8X2 ','Other venous complications in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126465,10,'O22.8X3 ','Other venous complications in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126463,10,'O22.8X1 ','Other venous complications in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126462,10,'O22.53 ','Cerebral venous thrombosis in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126461,10,'O22.52 ','Cerebral venous thrombosis in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126460,10,'O22.51 ','Cerebral venous thrombosis in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126458,10,'O22.43 ','Hemorrhoids in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126459,10,'O22.50 ','Cerebral venous thrombosis in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126457,10,'O22.42 ','Hemorrhoids in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126455,10,'O22.40 ','Hemorrhoids in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126456,10,'O22.41 ','Hemorrhoids in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126454,10,'O22.33 ','Deep phlebothrombosis in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126453,10,'O22.32 ','Deep phlebothrombosis in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126452,10,'O22.31 ','Deep phlebothrombosis in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126450,10,'O22.23 ','Superficial thrombophlebitis in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126451,10,'O22.30 ','Deep phlebothrombosis in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126449,10,'O22.22 ','Superficial thrombophlebitis in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126448,10,'O22.21 ','Superficial thrombophlebitis in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126446,10,'O22.13 ','Genital varices in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126447,10,'O22.20 ','Superficial thrombophlebitis in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126445,10,'O22.12 ','Genital varices in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126444,10,'O22.11 ','Genital varices in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126443,10,'O22.10 ','Genital varices in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126442,10,'O22.03 ','Varicose veins of lower extremity in pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126440,10,'O22.01 ','Varicose veins of lower extremity in pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126441,10,'O22.02 ','Varicose veins of lower extremity in pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126439,10,'O22.00 ','Varicose veins of lower extremity in pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126437,10,'O21.8 ','Other vomiting complicating pregnancy','Y','0000-00-00 00:00:00'),(126438,10,'O21.9 ','Vomiting of pregnancy, unspecified','Y','0000-00-00 00:00:00'),(126436,10,'O21.2 ','Late vomiting of pregnancy','Y','0000-00-00 00:00:00'),(126435,10,'O21.1 ','Hyperemesis gravidarum with metabolic disturbance','Y','0000-00-00 00:00:00'),(126433,10,'O20.9 ','Hemorrhage in early pregnancy, unspecified','Y','0000-00-00 00:00:00'),(126434,10,'O21.0 ','Mild hyperemesis gravidarum','Y','0000-00-00 00:00:00'),(126431,10,'O20.0 ','Threatened abortion','Y','0000-00-00 00:00:00'),(126432,10,'O20.8 ','Other hemorrhage in early pregnancy','Y','0000-00-00 00:00:00'),(126430,10,'O16.9 ','Unspecified maternal hypertension, unspecified trimester','Y','0000-00-00 00:00:00'),(126429,10,'O16.5 ','Unspecified maternal hypertension, complicating the puerperium','Y','0000-00-00 00:00:00'),(126427,10,'O16.3 ','Unspecified maternal hypertension, third trimester','Y','0000-00-00 00:00:00'),(126428,10,'O16.4 ','Unspecified maternal hypertension, complicating childbirth','Y','0000-00-00 00:00:00'),(126426,10,'O16.2 ','Unspecified maternal hypertension, second trimester','Y','0000-00-00 00:00:00'),(126425,10,'O16.1 ','Unspecified maternal hypertension, first trimester','Y','0000-00-00 00:00:00'),(126423,10,'O15.2 ','Eclampsia complicating the puerperium','Y','0000-00-00 00:00:00'),(126424,10,'O15.9 ','Eclampsia, unspecified as to time period','Y','0000-00-00 00:00:00'),(126421,10,'O15.03 ','Eclampsia complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126422,10,'O15.1 ','Eclampsia complicating labor','Y','0000-00-00 00:00:00'),(126420,10,'O15.02 ','Eclampsia complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126418,10,'O14.95 ','Unspecified pre-eclampsia, complicating the puerperium','Y','0000-00-00 00:00:00'),(126419,10,'O15.00 ','Eclampsia complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126417,10,'O14.94 ','Unspecified pre-eclampsia, complicating childbirth','Y','0000-00-00 00:00:00'),(126416,10,'O14.93 ','Unspecified pre-eclampsia, third trimester','Y','0000-00-00 00:00:00'),(126415,10,'O14.92 ','Unspecified pre-eclampsia, second trimester','Y','0000-00-00 00:00:00'),(126413,10,'O14.25 ','HELLP syndrome, complicating the puerperium','Y','0000-00-00 00:00:00'),(126414,10,'O14.90 ','Unspecified pre-eclampsia, unspecified trimester','Y','0000-00-00 00:00:00'),(126412,10,'O14.24 ','HELLP syndrome, complicating childbirth','Y','0000-00-00 00:00:00'),(126410,10,'O14.22 ','HELLP syndrome (HELLP), second trimester','Y','0000-00-00 00:00:00'),(126411,10,'O14.23 ','HELLP syndrome (HELLP), third trimester','Y','0000-00-00 00:00:00'),(126409,10,'O14.20 ','HELLP syndrome (HELLP), unspecified trimester','Y','0000-00-00 00:00:00'),(126407,10,'O14.14 ','Severe pre-eclampsia complicating childbirth','Y','0000-00-00 00:00:00'),(126408,10,'O14.15 ','Severe pre-eclampsia, complicating the puerperium','Y','0000-00-00 00:00:00'),(126406,10,'O14.13 ','Severe pre-eclampsia, third trimester','Y','0000-00-00 00:00:00'),(126405,10,'O14.12 ','Severe pre-eclampsia, second trimester','Y','0000-00-00 00:00:00'),(126404,10,'O14.10 ','Severe pre-eclampsia, unspecified trimester','Y','0000-00-00 00:00:00'),(126402,10,'O14.04 ','Mild to moderate pre-eclampsia, complicating childbirth','Y','0000-00-00 00:00:00'),(126403,10,'O14.05 ','Mild to moderate pre-eclampsia, complicating the puerperium','Y','0000-00-00 00:00:00'),(126401,10,'O14.03 ','Mild to moderate pre-eclampsia, third trimester','Y','0000-00-00 00:00:00'),(126400,10,'O14.02 ','Mild to moderate pre-eclampsia, second trimester','Y','0000-00-00 00:00:00'),(126399,10,'O14.00 ','Mild to moderate pre-eclampsia, unspecified trimester','Y','0000-00-00 00:00:00'),(126398,10,'O13.9 ','Gestational [pregnancy-induced] hypertension without significant proteinuria, unspecified trimester','Y','0000-00-00 00:00:00'),(126397,10,'O13.5 ','Gestational [pregnancy-induced] hypertension without significant proteinuria, complicating the puerperium','Y','0000-00-00 00:00:00'),(126396,10,'O13.4 ','Gestational [pregnancy-induced] hypertension without significant proteinuria, complicating childbirth','Y','0000-00-00 00:00:00'),(126395,10,'O13.3 ','Gestational [pregnancy-induced] hypertension without significant proteinuria, third trimester','Y','0000-00-00 00:00:00'),(126394,10,'O13.2 ','Gestational [pregnancy-induced] hypertension without significant proteinuria, second trimester','Y','0000-00-00 00:00:00'),(126392,10,'O12.25 ','Gestational edema with proteinuria, complicating the puerperium','Y','0000-00-00 00:00:00'),(126393,10,'O13.1 ','Gestational [pregnancy-induced] hypertension without significant proteinuria, first trimester','Y','0000-00-00 00:00:00'),(126390,10,'O12.23 ','Gestational edema with proteinuria, third trimester','Y','0000-00-00 00:00:00'),(126391,10,'O12.24 ','Gestational edema with proteinuria, complicating childbirth','Y','0000-00-00 00:00:00'),(126389,10,'O12.22 ','Gestational edema with proteinuria, second trimester','Y','0000-00-00 00:00:00'),(126388,10,'O12.21 ','Gestational edema with proteinuria, first trimester','Y','0000-00-00 00:00:00'),(126387,10,'O12.20 ','Gestational edema with proteinuria, unspecified trimester','Y','0000-00-00 00:00:00'),(126385,10,'O12.14 ','Gestational proteinuria, complicating childbirth','Y','0000-00-00 00:00:00'),(126386,10,'O12.15 ','Gestational proteinuria, complicating the puerperium','Y','0000-00-00 00:00:00'),(126384,10,'O12.13 ','Gestational proteinuria, third trimester','Y','0000-00-00 00:00:00'),(126383,10,'O12.12 ','Gestational proteinuria, second trimester','Y','0000-00-00 00:00:00'),(126381,10,'O12.10 ','Gestational proteinuria, unspecified trimester','Y','0000-00-00 00:00:00'),(126382,10,'O12.11 ','Gestational proteinuria, first trimester','Y','0000-00-00 00:00:00'),(126380,10,'O12.05 ','Gestational edema, complicating the puerperium','Y','0000-00-00 00:00:00'),(126378,10,'O12.03 ','Gestational edema, third trimester','Y','0000-00-00 00:00:00'),(126379,10,'O12.04 ','Gestational edema, complicating childbirth','Y','0000-00-00 00:00:00'),(126377,10,'O12.02 ','Gestational edema, second trimester','Y','0000-00-00 00:00:00'),(126375,10,'O12.00 ','Gestational edema, unspecified trimester','Y','0000-00-00 00:00:00'),(126376,10,'O12.01 ','Gestational edema, first trimester','Y','0000-00-00 00:00:00'),(126374,10,'O11.9 ','Pre-existing hypertension with pre-eclampsia, unspecified trimester','Y','0000-00-00 00:00:00'),(126373,10,'O11.5 ','Pre-existing hypertension with pre-eclampsia, complicating the puerperium','Y','0000-00-00 00:00:00'),(126372,10,'O11.4 ','Pre-existing hypertension with pre-eclampsia, complicating childbirth','Y','0000-00-00 00:00:00'),(126371,10,'O11.3 ','Pre-existing hypertension with pre-eclampsia, third trimester','Y','0000-00-00 00:00:00'),(126370,10,'O11.2 ','Pre-existing hypertension with pre-eclampsia, second trimester','Y','0000-00-00 00:00:00'),(126368,10,'O10.93 ','Unspecified pre-existing hypertension complicating the puerperium','Y','0000-00-00 00:00:00'),(126369,10,'O11.1 ','Pre-existing hypertension with pre-eclampsia, first trimester','Y','0000-00-00 00:00:00'),(126367,10,'O10.92 ','Unspecified pre-existing hypertension complicating childbirth','Y','0000-00-00 00:00:00'),(126366,10,'O10.919 ','Unspecified pre-existing hypertension complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126365,10,'O10.913 ','Unspecified pre-existing hypertension complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126364,10,'O10.912 ','Unspecified pre-existing hypertension complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126363,10,'O10.911 ','Unspecified pre-existing hypertension complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126362,10,'O10.43 ','Pre-existing secondary hypertension complicating the puerperium','Y','0000-00-00 00:00:00'),(126361,10,'O10.42 ','Pre-existing secondary hypertension complicating childbirth','Y','0000-00-00 00:00:00'),(126360,10,'O10.419 ','Pre-existing secondary hypertension complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126359,10,'O10.413 ','Pre-existing secondary hypertension complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126358,10,'O10.412 ','Pre-existing secondary hypertension complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126357,10,'O10.411 ','Pre-existing secondary hypertension complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126356,10,'O10.33 ','Pre-existing hypertensive heart and chronic kidney disease complicating the puerperium','Y','0000-00-00 00:00:00'),(126355,10,'O10.32 ','Pre-existing hypertensive heart and chronic kidney disease complicating childbirth','Y','0000-00-00 00:00:00'),(126354,10,'O10.319 ','Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126353,10,'O10.313 ','Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126352,10,'O10.312 ','Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126351,10,'O10.311 ','Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126350,10,'O10.23 ','Pre-existing hypertensive chronic kidney disease complicating the puerperium','Y','0000-00-00 00:00:00'),(126349,10,'O10.22 ','Pre-existing hypertensive chronic kidney disease complicating childbirth','Y','0000-00-00 00:00:00'),(126348,10,'O10.219 ','Pre-existing hypertensive chronic kidney disease complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126347,10,'O10.213 ','Pre-existing hypertensive chronic kidney disease complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126346,10,'O10.212 ','Pre-existing hypertensive chronic kidney disease complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126345,10,'O10.211 ','Pre-existing hypertensive chronic kidney disease complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126344,10,'O10.13 ','Pre-existing hypertensive heart disease complicating the puerperium','Y','0000-00-00 00:00:00'),(126343,10,'O10.12 ','Pre-existing hypertensive heart disease complicating childbirth','Y','0000-00-00 00:00:00'),(126342,10,'O10.119 ','Pre-existing hypertensive heart disease complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126341,10,'O10.113 ','Pre-existing hypertensive heart disease complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126340,10,'O10.112 ','Pre-existing hypertensive heart disease complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126339,10,'O10.111 ','Pre-existing hypertensive heart disease complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126337,10,'O10.02 ','Pre-existing essential hypertension complicating childbirth','Y','0000-00-00 00:00:00'),(126338,10,'O10.03 ','Pre-existing essential hypertension complicating the puerperium','Y','0000-00-00 00:00:00'),(126336,10,'O10.019 ','Pre-existing essential hypertension complicating pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126335,10,'O10.013 ','Pre-existing essential hypertension complicating pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126334,10,'O10.012 ','Pre-existing essential hypertension complicating pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126333,10,'O10.011 ','Pre-existing essential hypertension complicating pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126332,10,'O09.93 ','Supervision of high risk pregnancy, unspecified, third trimester','Y','0000-00-00 00:00:00'),(126331,10,'O09.92 ','Supervision of high risk pregnancy, unspecified, second trimester','Y','0000-00-00 00:00:00'),(126329,10,'O09.90 ','Supervision of high risk pregnancy, unspecified, unspecified trimester','Y','0000-00-00 00:00:00'),(126330,10,'O09.91 ','Supervision of high risk pregnancy, unspecified, first trimester','Y','0000-00-00 00:00:00'),(126328,10,'O09.899 ','Supervision of other high risk pregnancies, unspecified trimester','Y','0000-00-00 00:00:00'),(126327,10,'O09.893 ','Supervision of other high risk pregnancies, third trimester','Y','0000-00-00 00:00:00'),(126326,10,'O09.892 ','Supervision of other high risk pregnancies, second trimester','Y','0000-00-00 00:00:00'),(126325,10,'O09.891 ','Supervision of other high risk pregnancies, first trimester','Y','0000-00-00 00:00:00'),(126324,10,'O09.829 ','Supervision of pregnancy with history of in utero procedure during previous pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126323,10,'O09.823 ','Supervision of pregnancy with history of in utero procedure during previous pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126322,10,'O09.822 ','Supervision of pregnancy with history of in utero procedure during previous pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126321,10,'O09.821 ','Supervision of pregnancy with history of in utero procedure during previous pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126320,10,'O09.819 ','Supervision of pregnancy resulting from assisted reproductive technology, unspecified trimester','Y','0000-00-00 00:00:00'),(126319,10,'O09.813 ','Supervision of pregnancy resulting from assisted reproductive technology, third trimester','Y','0000-00-00 00:00:00'),(126318,10,'O09.812 ','Supervision of pregnancy resulting from assisted reproductive technology, second trimester','Y','0000-00-00 00:00:00'),(126317,10,'O09.811 ','Supervision of pregnancy resulting from assisted reproductive technology, first trimester','Y','0000-00-00 00:00:00'),(126316,10,'O09.73 ','Supervision of high risk pregnancy due to social problems, third trimester','Y','0000-00-00 00:00:00'),(126315,10,'O09.72 ','Supervision of high risk pregnancy due to social problems, second trimester','Y','0000-00-00 00:00:00'),(126314,10,'O09.71 ','Supervision of high risk pregnancy due to social problems, first trimester','Y','0000-00-00 00:00:00'),(126313,10,'O09.70 ','Supervision of high risk pregnancy due to social problems, unspecified trimester','Y','0000-00-00 00:00:00'),(126312,10,'O09.629 ','Supervision of young multigravida, unspecified trimester','Y','0000-00-00 00:00:00'),(126310,10,'O09.622 ','Supervision of young multigravida, second trimester','Y','0000-00-00 00:00:00'),(126311,10,'O09.623 ','Supervision of young multigravida, third trimester','Y','0000-00-00 00:00:00'),(126309,10,'O09.621 ','Supervision of young multigravida, first trimester','Y','0000-00-00 00:00:00'),(126307,10,'O09.613 ','Supervision of young primigravida, third trimester','Y','0000-00-00 00:00:00'),(126308,10,'O09.619 ','Supervision of young primigravida, unspecified trimester','Y','0000-00-00 00:00:00'),(126306,10,'O09.612 ','Supervision of young primigravida, second trimester','Y','0000-00-00 00:00:00'),(126305,10,'O09.611 ','Supervision of young primigravida, first trimester','Y','0000-00-00 00:00:00'),(126304,10,'O09.529 ','Supervision of elderly multigravida, unspecified trimester','Y','0000-00-00 00:00:00'),(126303,10,'O09.523 ','Supervision of elderly multigravida, third trimester','Y','0000-00-00 00:00:00'),(126301,10,'O09.521 ','Supervision of elderly multigravida, first trimester','Y','0000-00-00 00:00:00'),(126302,10,'O09.522 ','Supervision of elderly multigravida, second trimester','Y','0000-00-00 00:00:00'),(126300,10,'O09.519 ','Supervision of elderly primigravida, unspecified trimester','Y','0000-00-00 00:00:00'),(126299,10,'O09.513 ','Supervision of elderly primigravida, third trimester','Y','0000-00-00 00:00:00'),(126297,10,'O09.511 ','Supervision of elderly primigravida, first trimester','Y','0000-00-00 00:00:00'),(126298,10,'O09.512 ','Supervision of elderly primigravida, second trimester','Y','0000-00-00 00:00:00'),(126296,10,'O09.43 ','Supervision of pregnancy with grand multiparity, third trimester','Y','0000-00-00 00:00:00'),(126295,10,'O09.42 ','Supervision of pregnancy with grand multiparity, second trimester','Y','0000-00-00 00:00:00'),(126293,10,'O09.40 ','Supervision of pregnancy with grand multiparity, unspecified trimester','Y','0000-00-00 00:00:00'),(126294,10,'O09.41 ','Supervision of pregnancy with grand multiparity, first trimester','Y','0000-00-00 00:00:00'),(126292,10,'O09.33 ','Supervision of pregnancy with insufficient antenatal care, third trimester','Y','0000-00-00 00:00:00'),(126291,10,'O09.32 ','Supervision of pregnancy with insufficient antenatal care, second trimester','Y','0000-00-00 00:00:00'),(126290,10,'O09.31 ','Supervision of pregnancy with insufficient antenatal care, first trimester','Y','0000-00-00 00:00:00'),(126289,10,'O09.30 ','Supervision of pregnancy with insufficient antenatal care, unspecified trimester','Y','0000-00-00 00:00:00'),(126288,10,'O09.299 ','Supervision of pregnancy with other poor reproductive or obstetric history, unspecified trimester','Y','0000-00-00 00:00:00'),(126287,10,'O09.293 ','Supervision of pregnancy with other poor reproductive or obstetric history, third trimester','Y','0000-00-00 00:00:00'),(126286,10,'O09.292 ','Supervision of pregnancy with other poor reproductive or obstetric history, second trimester','Y','0000-00-00 00:00:00'),(126285,10,'O09.291 ','Supervision of pregnancy with other poor reproductive or obstetric history, first trimester','Y','0000-00-00 00:00:00'),(126284,10,'O09.219 ','Supervision of pregnancy with history of pre-term labor, unspecified trimester','Y','0000-00-00 00:00:00'),(126283,10,'O09.213 ','Supervision of pregnancy with history of pre-term labor, third trimester','Y','0000-00-00 00:00:00'),(126282,10,'O09.212 ','Supervision of pregnancy with history of pre-term labor, second trimester','Y','0000-00-00 00:00:00'),(126281,10,'O09.211 ','Supervision of pregnancy with history of pre-term labor, first trimester','Y','0000-00-00 00:00:00'),(126280,10,'O09.A3 ','Supervision of pregnancy with history of molar pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126279,10,'O09.A2 ','Supervision of pregnancy with history of molar pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126278,10,'O09.A1 ','Supervision of pregnancy with history of molar pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126277,10,'O09.A0 ','Supervision of pregnancy with history of molar pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126276,10,'O09.13 ','Supervision of pregnancy with history of ectopic pregnancy, third trimester','Y','0000-00-00 00:00:00'),(126275,10,'O09.12 ','Supervision of pregnancy with history of ectopic pregnancy, second trimester','Y','0000-00-00 00:00:00'),(126274,10,'O09.11 ','Supervision of pregnancy with history of ectopic pregnancy, first trimester','Y','0000-00-00 00:00:00'),(126273,10,'O09.10 ','Supervision of pregnancy with history of ectopic pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(126272,10,'O09.03 ','Supervision of pregnancy with history of infertility, third trimester','Y','0000-00-00 00:00:00'),(126271,10,'O09.02 ','Supervision of pregnancy with history of infertility, second trimester','Y','0000-00-00 00:00:00'),(126270,10,'O09.01 ','Supervision of pregnancy with history of infertility, first trimester','Y','0000-00-00 00:00:00'),(126269,10,'O09.00 ','Supervision of pregnancy with history of infertility, unspecified trimester','Y','0000-00-00 00:00:00'),(126268,10,'O08.9 ','Unspecified complication following an ectopic and molar pregnancy','Y','0000-00-00 00:00:00'),(126267,10,'O08.89 ','Other complications following an ectopic and molar pregnancy','Y','0000-00-00 00:00:00'),(126266,10,'O08.83 ','Urinary tract infection following an ectopic and molar pregnancy','Y','0000-00-00 00:00:00'),(126264,10,'O08.81 ','Cardiac arrest following an ectopic and molar pregnancy','Y','0000-00-00 00:00:00'),(126265,10,'O08.82 ','Sepsis following ectopic and molar pregnancy','Y','0000-00-00 00:00:00'),(126263,10,'O08.7 ','Other venous complications following an ectopic and molar pregnancy','Y','0000-00-00 00:00:00'),(126262,10,'O08.6 ','Damage to pelvic organs and tissues following an ectopic and molar pregnancy','Y','0000-00-00 00:00:00'),(126261,10,'O08.5 ','Metabolic disorders following an ectopic and molar pregnancy','Y','0000-00-00 00:00:00'),(126260,10,'O08.4 ','Renal failure following ectopic and molar pregnancy','Y','0000-00-00 00:00:00'),(126258,10,'O08.2 ','Embolism following ectopic and molar pregnancy','Y','0000-00-00 00:00:00'),(126259,10,'O08.3 ','Shock following ectopic and molar pregnancy','Y','0000-00-00 00:00:00'),(126257,10,'O08.1 ','Delayed or excessive hemorrhage following ectopic and molar pregnancy','Y','0000-00-00 00:00:00'),(126256,10,'O08.0 ','Genital tract and pelvic infection following ectopic and molar pregnancy','Y','0000-00-00 00:00:00'),(126255,10,'O07.4 ','Failed attempted termination of pregnancy without complication','Y','0000-00-00 00:00:00'),(126254,10,'O07.39 ','Failed attempted termination of pregnancy with other complications','Y','0000-00-00 00:00:00'),(126253,10,'O07.38 ','Urinary tract infection following failed attempted termination of pregnancy','Y','0000-00-00 00:00:00'),(126252,10,'O07.37 ','Sepsis following failed attempted termination of pregnancy','Y','0000-00-00 00:00:00'),(126251,10,'O07.36 ','Cardiac arrest following failed attempted termination of pregnancy','Y','0000-00-00 00:00:00'),(126250,10,'O07.35 ','Other venous complications following failed attempted termination of pregnancy','Y','0000-00-00 00:00:00'),(126249,10,'O07.34 ','Damage to pelvic organs following failed attempted termination of pregnancy','Y','0000-00-00 00:00:00'),(126248,10,'O07.33 ','Metabolic disorder following failed attempted termination of pregnancy','Y','0000-00-00 00:00:00'),(126246,10,'O07.31 ','Shock following failed attempted termination of pregnancy','Y','0000-00-00 00:00:00'),(126247,10,'O07.32 ','Renal failure following failed attempted termination of pregnancy','Y','0000-00-00 00:00:00'),(126245,10,'O07.30 ','Failed attempted termination of pregnancy with unspecified complications','Y','0000-00-00 00:00:00'),(126244,10,'O07.2 ','Embolism following failed attempted termination of pregnancy','Y','0000-00-00 00:00:00'),(126243,10,'O07.1 ','Delayed or excessive hemorrhage following failed attempted termination of pregnancy','Y','0000-00-00 00:00:00'),(126242,10,'O07.0 ','Genital tract and pelvic infection following failed attempted termination of pregnancy','Y','0000-00-00 00:00:00'),(126241,10,'O04.89 ','(Induced) termination of pregnancy with other complications','Y','0000-00-00 00:00:00'),(126240,10,'O04.88 ','Urinary tract infection following (induced) termination of pregnancy','Y','0000-00-00 00:00:00'),(126238,10,'O04.86 ','Cardiac arrest following (induced) termination of pregnancy','Y','0000-00-00 00:00:00'),(126239,10,'O04.87 ','Sepsis following (induced) termination of pregnancy','Y','0000-00-00 00:00:00'),(126237,10,'O04.85 ','Other venous complications following (induced) termination of pregnancy','Y','0000-00-00 00:00:00'),(126236,10,'O04.84 ','Damage to pelvic organs following (induced) termination of pregnancy','Y','0000-00-00 00:00:00'),(126235,10,'O04.83 ','Metabolic disorder following (induced) termination of pregnancy','Y','0000-00-00 00:00:00'),(126234,10,'O04.82 ','Renal failure following (induced) termination of pregnancy','Y','0000-00-00 00:00:00'),(126233,10,'O04.81 ','Shock following (induced) termination of pregnancy','Y','0000-00-00 00:00:00'),(126232,10,'O04.80 ','(Induced) termination of pregnancy with unspecified complications','Y','0000-00-00 00:00:00'),(126231,10,'O04.7 ','Embolism following (induced) termination of pregnancy','Y','0000-00-00 00:00:00'),(126230,10,'O04.6 ','Delayed or excessive hemorrhage following (induced) termination of pregnancy','Y','0000-00-00 00:00:00'),(126229,10,'O04.5 ','Genital tract and pelvic infection following (induced) termination of pregnancy','Y','0000-00-00 00:00:00'),(126228,10,'O03.9 ','Complete or unspecified spontaneous abortion without complication','Y','0000-00-00 00:00:00'),(126227,10,'O03.89 ','Complete or unspecified spontaneous abortion with other complications','Y','0000-00-00 00:00:00'),(126226,10,'O03.88 ','Urinary tract infection following complete or unspecified spontaneous abortion','Y','0000-00-00 00:00:00'),(126225,10,'O03.87 ','Sepsis following complete or unspecified spontaneous abortion','Y','0000-00-00 00:00:00'),(126224,10,'O03.86 ','Cardiac arrest following complete or unspecified spontaneous abortion','Y','0000-00-00 00:00:00'),(126223,10,'O03.85 ','Other venous complications following complete or unspecified spontaneous abortion','Y','0000-00-00 00:00:00'),(126222,10,'O03.84 ','Damage to pelvic organs following complete or unspecified spontaneous abortion','Y','0000-00-00 00:00:00'),(126221,10,'O03.83 ','Metabolic disorder following complete or unspecified spontaneous abortion','Y','0000-00-00 00:00:00'),(126220,10,'O03.82 ','Renal failure following complete or unspecified spontaneous abortion','Y','0000-00-00 00:00:00'),(126219,10,'O03.81 ','Shock following complete or unspecified spontaneous abortion','Y','0000-00-00 00:00:00'),(126218,10,'O03.80 ','Unspecified complication following complete or unspecified spontaneous abortion','Y','0000-00-00 00:00:00'),(126217,10,'O03.7 ','Embolism following complete or unspecified spontaneous abortion','Y','0000-00-00 00:00:00'),(126216,10,'O03.6 ','Delayed or excessive hemorrhage following complete or unspecified spontaneous abortion','Y','0000-00-00 00:00:00'),(126215,10,'O03.5 ','Genital tract and pelvic infection following complete or unspecified spontaneous abortion','Y','0000-00-00 00:00:00'),(126213,10,'O03.39 ','Incomplete spontaneous abortion with other complications','Y','0000-00-00 00:00:00'),(126214,10,'O03.4 ','Incomplete spontaneous abortion without complication','Y','0000-00-00 00:00:00'),(126212,10,'O03.38 ','Urinary tract infection following incomplete spontaneous abortion','Y','0000-00-00 00:00:00'),(126211,10,'O03.37 ','Sepsis following incomplete spontaneous abortion','Y','0000-00-00 00:00:00'),(126210,10,'O03.36 ','Cardiac arrest following incomplete spontaneous abortion','Y','0000-00-00 00:00:00'),(126209,10,'O03.35 ','Other venous complications following incomplete spontaneous abortion','Y','0000-00-00 00:00:00'),(126208,10,'O03.34 ','Damage to pelvic organs following incomplete spontaneous abortion','Y','0000-00-00 00:00:00'),(126207,10,'O03.33 ','Metabolic disorder following incomplete spontaneous abortion','Y','0000-00-00 00:00:00'),(126206,10,'O03.32 ','Renal failure following incomplete spontaneous abortion','Y','0000-00-00 00:00:00'),(126205,10,'O03.31 ','Shock following incomplete spontaneous abortion','Y','0000-00-00 00:00:00'),(126204,10,'O03.30 ','Unspecified complication following incomplete spontaneous abortion','Y','0000-00-00 00:00:00'),(126203,10,'O03.2 ','Embolism following incomplete spontaneous abortion','Y','0000-00-00 00:00:00'),(126202,10,'O03.1 ','Delayed or excessive hemorrhage following incomplete spontaneous abortion','Y','0000-00-00 00:00:00'),(126200,10,'O02.9 ','Abnormal product of conception, unspecified','Y','0000-00-00 00:00:00'),(126201,10,'O03.0 ','Genital tract and pelvic infection following incomplete spontaneous abortion','Y','0000-00-00 00:00:00'),(126199,10,'O02.89 ','Other abnormal products of conception','Y','0000-00-00 00:00:00'),(126197,10,'O02.1 ','Missed abortion','Y','0000-00-00 00:00:00'),(126198,10,'O02.81 ','Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy','Y','0000-00-00 00:00:00'),(126195,10,'O01.9 ','Hydatidiform mole, unspecified','Y','0000-00-00 00:00:00'),(126196,10,'O02.0 ','Blighted ovum and nonhydatidiform mole','Y','0000-00-00 00:00:00'),(126194,10,'O01.1 ','Incomplete and partial hydatidiform mole','Y','0000-00-00 00:00:00'),(126193,10,'O01.0 ','Classical hydatidiform mole','Y','0000-00-00 00:00:00'),(126192,10,'O00.91 ','Unspecified ectopic pregnancy with intrauterine pregnancy','Y','0000-00-00 00:00:00'),(126191,10,'O00.90 ','Unspecified ectopic pregnancy without intrauterine pregnancy','Y','0000-00-00 00:00:00'),(126189,10,'O00.80 ','Other ectopic pregnancy without intrauterine pregnancy','Y','0000-00-00 00:00:00'),(126190,10,'O00.81 ','Other ectopic pregnancy with intrauterine pregnancy','Y','0000-00-00 00:00:00'),(126188,10,'O00.219 ','Unspecified ovarian pregnancy with intrauterine pregnancy','Y','0000-00-00 00:00:00'),(126187,10,'O00.212 ','Left ovarian pregnancy with intrauterine pregnancy','Y','0000-00-00 00:00:00'),(126186,10,'O00.211 ','Right ovarian pregnancy with intrauterine pregnancy','Y','0000-00-00 00:00:00'),(126185,10,'O00.209 ','Unspecified ovarian pregnancy without intrauterine pregnancy','Y','0000-00-00 00:00:00'),(126184,10,'O00.202 ','Left ovarian pregnancy without intrauterine pregnancy','Y','0000-00-00 00:00:00'),(126182,10,'O00.119 ','Unspecified tubal pregnancy with intrauterine pregnancy','Y','0000-00-00 00:00:00'),(126183,10,'O00.201 ','Right ovarian pregnancy without intrauterine pregnancy','Y','0000-00-00 00:00:00'),(126181,10,'O00.112 ','Left tubal pregnancy with intrauterine pregnancy','Y','0000-00-00 00:00:00'),(126180,10,'O00.111 ','Right tubal pregnancy with intrauterine pregnancy','Y','0000-00-00 00:00:00'),(126178,10,'O00.102 ','Left tubal pregnancy without intrauterine pregnancy','Y','0000-00-00 00:00:00'),(126179,10,'O00.109 ','Unspecified tubal pregnancy without intrauterine pregnancy','Y','0000-00-00 00:00:00'),(126177,10,'O00.101 ','Right tubal pregnancy without intrauterine pregnancy','Y','0000-00-00 00:00:00'),(126176,10,'O00.01 ','Abdominal pregnancy with intrauterine pregnancy','Y','0000-00-00 00:00:00'),(126175,10,'O00.00 ','Abdominal pregnancy without intrauterine pregnancy','Y','0000-00-00 00:00:00'),(126173,10,'N99.85 ','Post endometrial ablation syndrome','Y','0000-00-00 00:00:00'),(126174,10,'N99.89 ','Other postprocedural complications and disorders of genitourinary system','Y','0000-00-00 00:00:00'),(126172,10,'N99.843 ','Postprocedural seroma of a genitourinary system organ or structure following other procedure','Y','0000-00-00 00:00:00'),(126171,10,'N99.842 ','Postprocedural seroma of a genitourinary system organ or structure following a genitourinary system procedure','Y','0000-00-00 00:00:00'),(126170,10,'N99.841 ','Postprocedural hematoma of a genitourinary system organ or structure following other procedure','Y','0000-00-00 00:00:00'),(126168,10,'N99.83 ','Residual ovary syndrome','Y','0000-00-00 00:00:00'),(126169,10,'N99.840 ','Postprocedural hematoma of a genitourinary system organ or structure following a genitourinary system procedure','Y','0000-00-00 00:00:00'),(126167,10,'N99.821 ','Postprocedural hemorrhage of a genitourinary system organ or structure following other procedure','Y','0000-00-00 00:00:00'),(126165,10,'N99.81 ','Other intraoperative complications of genitourinary system','Y','0000-00-00 00:00:00'),(126166,10,'N99.820 ','Postprocedural hemorrhage of a genitourinary system organ or structure following a genitourinary system procedure','Y','0000-00-00 00:00:00'),(126164,10,'N99.72 ','Accidental puncture and laceration of a genitourinary system organ or structure during other procedure','Y','0000-00-00 00:00:00'),(126163,10,'N99.71 ','Accidental puncture and laceration of a genitourinary system organ or structure during a genitourinary system procedure','Y','0000-00-00 00:00:00'),(126162,10,'N99.62 ','Intraoperative hemorrhage and hematoma of a genitourinary system organ or structure complicating other procedure','Y','0000-00-00 00:00:00'),(126161,10,'N99.61 ','Intraoperative hemorrhage and hematoma of a genitourinary system organ or structure complicating a genitourinary system procedure','Y','0000-00-00 00:00:00'),(126159,10,'N99.534 ','Stenosis of continent stoma of urinary tract','Y','0000-00-00 00:00:00'),(126160,10,'N99.538 ','Other complication of continent stoma of urinary tract','Y','0000-00-00 00:00:00'),(126158,10,'N99.533 ','Herniation of continent stoma of urinary tract','Y','0000-00-00 00:00:00'),(126156,10,'N99.531 ','Infection of continent stoma of urinary tract','Y','0000-00-00 00:00:00'),(126157,10,'N99.532 ','Malfunction of continent stoma of urinary tract','Y','0000-00-00 00:00:00'),(126155,10,'N99.530 ','Hemorrhage of continent stoma of urinary tract','Y','0000-00-00 00:00:00'),(126154,10,'N99.528 ','Other complication of incontinent external stoma of urinary tract','Y','0000-00-00 00:00:00'),(126153,10,'N99.524 ','Stenosis of incontinent stoma of urinary tract','Y','0000-00-00 00:00:00'),(126151,10,'N99.522 ','Malfunction of incontinent external stoma of urinary tract','Y','0000-00-00 00:00:00'),(126152,10,'N99.523 ','Herniation of incontinent stoma of urinary tract','Y','0000-00-00 00:00:00'),(126150,10,'N99.521 ','Infection of incontinent external stoma of urinary tract','Y','0000-00-00 00:00:00'),(126148,10,'N99.518 ','Other cystostomy complication','Y','0000-00-00 00:00:00'),(126149,10,'N99.520 ','Hemorrhage of incontinent external stoma of urinary tract','Y','0000-00-00 00:00:00'),(126146,10,'N99.511 ','Cystostomy infection','Y','0000-00-00 00:00:00'),(126147,10,'N99.512 ','Cystostomy malfunction','Y','0000-00-00 00:00:00'),(126145,10,'N99.510 ','Cystostomy hemorrhage','Y','0000-00-00 00:00:00'),(126143,10,'N99.3 ','Prolapse of vaginal vault after hysterectomy','Y','0000-00-00 00:00:00'),(126144,10,'N99.4 ','Postprocedural pelvic peritoneal adhesions','Y','0000-00-00 00:00:00'),(126142,10,'N99.2 ','Postprocedural adhesions of vagina','Y','0000-00-00 00:00:00');
INSERT INTO `icd` VALUES (126140,10,'N99.116 ','Postprocedural urethral stricture, male, overlapping sites','Y','0000-00-00 00:00:00'),(126141,10,'N99.12 ','Postprocedural urethral stricture, female','Y','0000-00-00 00:00:00'),(126139,10,'N99.115 ','Postprocedural fossa navicularis urethral stricture','Y','0000-00-00 00:00:00'),(126138,10,'N99.114 ','Postprocedural urethral stricture, male, unspecified','Y','0000-00-00 00:00:00'),(126136,10,'N99.112 ','Postprocedural membranous urethral stricture, male','Y','0000-00-00 00:00:00'),(126137,10,'N99.113 ','Postprocedural anterior bulbous urethral stricture, male','Y','0000-00-00 00:00:00'),(126135,10,'N99.111 ','Postprocedural bulbous urethral stricture, male','Y','0000-00-00 00:00:00'),(126134,10,'N99.110 ','Postprocedural urethral stricture, male, meatal','Y','0000-00-00 00:00:00'),(126133,10,'N99.0 ','Postprocedural (acute) (chronic) kidney failure','Y','0000-00-00 00:00:00'),(126131,10,'N98.8 ','Other complications associated with artificial fertilization','Y','0000-00-00 00:00:00'),(126132,10,'N98.9 ','Complication associated with artificial fertilization, unspecified','Y','0000-00-00 00:00:00'),(126130,10,'N98.3 ','Complications of attempted introduction of embryo in embryo transfer','Y','0000-00-00 00:00:00'),(126129,10,'N98.2 ','Complications of attempted introduction of fertilized ovum following in vitro fertilization','Y','0000-00-00 00:00:00'),(126127,10,'N98.0 ','Infection associated with artificial insemination','Y','0000-00-00 00:00:00'),(126128,10,'N98.1 ','Hyperstimulation of ovaries','Y','0000-00-00 00:00:00'),(126126,10,'N97.9 ','Female infertility, unspecified','Y','0000-00-00 00:00:00'),(126125,10,'N97.8 ','Female infertility of other origin','Y','0000-00-00 00:00:00'),(126123,10,'N97.1 ','Female infertility of tubal origin','Y','0000-00-00 00:00:00'),(126124,10,'N97.2 ','Female infertility of uterine origin','Y','0000-00-00 00:00:00'),(126121,10,'N96','Recurrent pregnancy loss','Y','0000-00-00 00:00:00'),(126122,10,'N97.0 ','Female infertility associated with anovulation','Y','0000-00-00 00:00:00'),(126120,10,'N95.9 ','Unspecified menopausal and perimenopausal disorder','Y','0000-00-00 00:00:00'),(126118,10,'N95.2 ','Postmenopausal atrophic vaginitis','Y','0000-00-00 00:00:00'),(126119,10,'N95.8 ','Other specified menopausal and perimenopausal disorders','Y','0000-00-00 00:00:00'),(126116,10,'N95.0 ','Postmenopausal bleeding','Y','0000-00-00 00:00:00'),(126117,10,'N95.1 ','Menopausal and female climacteric states','Y','0000-00-00 00:00:00'),(126115,10,'N94.9 ','Unspecified condition associated with female genital organs and menstrual cycle','Y','0000-00-00 00:00:00'),(126114,10,'N94.89 ','Other specified conditions associated with female genital organs and menstrual cycle','Y','0000-00-00 00:00:00'),(126112,10,'N94.818 ','Other vulvodynia','Y','0000-00-00 00:00:00'),(126113,10,'N94.819 ','Vulvodynia, unspecified','Y','0000-00-00 00:00:00'),(126110,10,'N94.6 ','Dysmenorrhea, unspecified','Y','0000-00-00 00:00:00'),(126111,10,'N94.810 ','Vulvar vestibulitis','Y','0000-00-00 00:00:00'),(126108,10,'N94.4 ','Primary dysmenorrhea','Y','0000-00-00 00:00:00'),(126109,10,'N94.5 ','Secondary dysmenorrhea','Y','0000-00-00 00:00:00'),(126106,10,'N94.2 ','Vaginismus','Y','0000-00-00 00:00:00'),(126107,10,'N94.3 ','Premenstrual tension syndrome','Y','0000-00-00 00:00:00'),(126104,10,'N94.12 ','Deep dyspareunia','Y','0000-00-00 00:00:00'),(126105,10,'N94.19 ','Other specified dyspareunia','Y','0000-00-00 00:00:00'),(126103,10,'N94.11 ','Superficial (introital) dyspareunia','Y','0000-00-00 00:00:00'),(126102,10,'N94.10 ','Unspecified dyspareunia','Y','0000-00-00 00:00:00'),(126100,10,'N93.9 ','Abnormal uterine and vaginal bleeding, unspecified','Y','0000-00-00 00:00:00'),(126101,10,'N94.0 ','Mittelschmerz','Y','0000-00-00 00:00:00'),(126099,10,'N93.8 ','Other specified abnormal uterine and vaginal bleeding','Y','0000-00-00 00:00:00'),(126097,10,'N93.0 ','Postcoital and contact bleeding','Y','0000-00-00 00:00:00'),(126098,10,'N93.1 ','Pre-pubertal vaginal bleeding','Y','0000-00-00 00:00:00'),(126095,10,'N92.5 ','Other specified irregular menstruation','Y','0000-00-00 00:00:00'),(126096,10,'N92.6 ','Irregular menstruation, unspecified','Y','0000-00-00 00:00:00'),(126093,10,'N92.3 ','Ovulation bleeding','Y','0000-00-00 00:00:00'),(126094,10,'N92.4 ','Excessive bleeding in the premenopausal period','Y','0000-00-00 00:00:00'),(126092,10,'N92.2 ','Excessive menstruation at puberty','Y','0000-00-00 00:00:00'),(126091,10,'N92.1 ','Excessive and frequent menstruation with irregular cycle','Y','0000-00-00 00:00:00'),(126089,10,'N91.5 ','Oligomenorrhea, unspecified','Y','0000-00-00 00:00:00'),(126090,10,'N92.0 ','Excessive and frequent menstruation with regular cycle','Y','0000-00-00 00:00:00'),(126087,10,'N91.3 ','Primary oligomenorrhea','Y','0000-00-00 00:00:00'),(126088,10,'N91.4 ','Secondary oligomenorrhea','Y','0000-00-00 00:00:00'),(126085,10,'N91.1 ','Secondary amenorrhea','Y','0000-00-00 00:00:00'),(126086,10,'N91.2 ','Amenorrhea, unspecified','Y','0000-00-00 00:00:00'),(126083,10,'N90.9 ','Noninflammatory disorder of vulva and perineum, unspecified','Y','0000-00-00 00:00:00'),(126084,10,'N91.0 ','Primary amenorrhea','Y','0000-00-00 00:00:00'),(126082,10,'N90.89 ','Other specified noninflammatory disorders of vulva and perineum','Y','0000-00-00 00:00:00'),(126081,10,'N90.818 ','Other female genital mutilation status','Y','0000-00-00 00:00:00'),(126079,10,'N90.812 ','Female genital mutilation Type II status','Y','0000-00-00 00:00:00'),(126080,10,'N90.813 ','Female genital mutilation Type III status','Y','0000-00-00 00:00:00'),(126078,10,'N90.811 ','Female genital mutilation Type I status','Y','0000-00-00 00:00:00'),(126076,10,'N90.7 ','Vulvar cyst','Y','0000-00-00 00:00:00'),(126077,10,'N90.810 ','Female genital mutilation status, unspecified','Y','0000-00-00 00:00:00'),(126074,10,'N90.61 ','Childhood asymmetric labium majus enlargement','Y','0000-00-00 00:00:00'),(126075,10,'N90.69 ','Other specified hypertrophy of vulva','Y','0000-00-00 00:00:00'),(126072,10,'N90.5 ','Atrophy of vulva','Y','0000-00-00 00:00:00'),(126073,10,'N90.60 ','Unspecified hypertrophy of vulva','Y','0000-00-00 00:00:00'),(126070,10,'N90.3 ','Dysplasia of vulva, unspecified','Y','0000-00-00 00:00:00'),(126071,10,'N90.4 ','Leukoplakia of vulva','Y','0000-00-00 00:00:00'),(126069,10,'N90.1 ','Moderate vulvar dysplasia','Y','0000-00-00 00:00:00'),(126067,10,'N89.9 ','Noninflammatory disorder of vagina, unspecified','Y','0000-00-00 00:00:00'),(126068,10,'N90.0 ','Mild vulvar dysplasia','Y','0000-00-00 00:00:00'),(126066,10,'N89.8 ','Other specified noninflammatory disorders of vagina','Y','0000-00-00 00:00:00'),(126064,10,'N89.6 ','Tight hymenal ring','Y','0000-00-00 00:00:00'),(126065,10,'N89.7 ','Hematocolpos','Y','0000-00-00 00:00:00'),(126062,10,'N89.4 ','Leukoplakia of vagina','Y','0000-00-00 00:00:00'),(126063,10,'N89.5 ','Stricture and atresia of vagina','Y','0000-00-00 00:00:00'),(126060,10,'N89.1 ','Moderate vaginal dysplasia','Y','0000-00-00 00:00:00'),(126061,10,'N89.3 ','Dysplasia of vagina, unspecified','Y','0000-00-00 00:00:00'),(126058,10,'N88.9 ','Noninflammatory disorder of cervix uteri, unspecified','Y','0000-00-00 00:00:00'),(126059,10,'N89.0 ','Mild vaginal dysplasia','Y','0000-00-00 00:00:00'),(126057,10,'N88.8 ','Other specified noninflammatory disorders of cervix uteri','Y','0000-00-00 00:00:00'),(126056,10,'N88.4 ','Hypertrophic elongation of cervix uteri','Y','0000-00-00 00:00:00'),(126054,10,'N88.2 ','Stricture and stenosis of cervix uteri','Y','0000-00-00 00:00:00'),(126055,10,'N88.3 ','Incompetence of cervix uteri','Y','0000-00-00 00:00:00'),(126052,10,'N88.0 ','Leukoplakia of cervix uteri','Y','0000-00-00 00:00:00'),(126053,10,'N88.1 ','Old laceration of cervix uteri','Y','0000-00-00 00:00:00'),(126050,10,'N87.1 ','Moderate cervical dysplasia','Y','0000-00-00 00:00:00'),(126051,10,'N87.9 ','Dysplasia of cervix uteri, unspecified','Y','0000-00-00 00:00:00'),(126048,10,'N86','Erosion and ectropion of cervix uteri','Y','0000-00-00 00:00:00'),(126049,10,'N87.0 ','Mild cervical dysplasia','Y','0000-00-00 00:00:00'),(126046,10,'N85.9 ','Noninflammatory disorder of uterus, unspecified','Y','0000-00-00 00:00:00'),(126047,10,'N85.A ','Isthmocele','Y','0000-00-00 00:00:00'),(126045,10,'N85.8 ','Other specified noninflammatory disorders of uterus','Y','0000-00-00 00:00:00'),(126043,10,'N85.6 ','Intrauterine synechiae','Y','0000-00-00 00:00:00'),(126044,10,'N85.7 ','Hematometra','Y','0000-00-00 00:00:00'),(126041,10,'N85.4 ','Malposition of uterus','Y','0000-00-00 00:00:00'),(126042,10,'N85.5 ','Inversion of uterus','Y','0000-00-00 00:00:00'),(126039,10,'N85.2 ','Hypertrophy of uterus','Y','0000-00-00 00:00:00'),(126040,10,'N85.3 ','Subinvolution of uterus','Y','0000-00-00 00:00:00'),(126037,10,'N85.01 ','Benign endometrial hyperplasia','Y','0000-00-00 00:00:00'),(126038,10,'N85.02 ','Endometrial intraepithelial neoplasia [EIN]','Y','0000-00-00 00:00:00'),(126036,10,'N85.00 ','Endometrial hyperplasia, unspecified','Y','0000-00-00 00:00:00'),(126034,10,'N84.8 ','Polyp of other parts of female genital tract','Y','0000-00-00 00:00:00'),(126035,10,'N84.9 ','Polyp of female genital tract, unspecified','Y','0000-00-00 00:00:00'),(126032,10,'N84.2 ','Polyp of vagina','Y','0000-00-00 00:00:00'),(126033,10,'N84.3 ','Polyp of vulva','Y','0000-00-00 00:00:00'),(126030,10,'N84.0 ','Polyp of corpus uteri','Y','0000-00-00 00:00:00'),(126031,10,'N84.1 ','Polyp of cervix uteri','Y','0000-00-00 00:00:00'),(126029,10,'N83.9 ','Noninflammatory disorder of ovary, fallopian tube and broad ligament, unspecified','Y','0000-00-00 00:00:00'),(126028,10,'N83.8 ','Other noninflammatory disorders of ovary, fallopian tube and broad ligament','Y','0000-00-00 00:00:00'),(126026,10,'N83.6 ','Hematosalpinx','Y','0000-00-00 00:00:00'),(126027,10,'N83.7 ','Hematoma of broad ligament','Y','0000-00-00 00:00:00'),(126025,10,'N83.53 ','Torsion of ovary, ovarian pedicle and fallopian tube','Y','0000-00-00 00:00:00'),(126023,10,'N83.522 ','Torsion of left fallopian tube','Y','0000-00-00 00:00:00'),(126024,10,'N83.529 ','Torsion of fallopian tube, unspecified side','Y','0000-00-00 00:00:00'),(126022,10,'N83.521 ','Torsion of right fallopian tube','Y','0000-00-00 00:00:00'),(126021,10,'N83.519 ','Torsion of ovary and ovarian pedicle, unspecified side','Y','0000-00-00 00:00:00'),(126019,10,'N83.511 ','Torsion of right ovary and ovarian pedicle','Y','0000-00-00 00:00:00'),(126020,10,'N83.512 ','Torsion of left ovary and ovarian pedicle','Y','0000-00-00 00:00:00'),(126018,10,'N83.42 ','Prolapse and hernia of left ovary and fallopian tube','Y','0000-00-00 00:00:00'),(126016,10,'N83.40 ','Prolapse and hernia of ovary and fallopian tube, unspecified side','Y','0000-00-00 00:00:00'),(126017,10,'N83.41 ','Prolapse and hernia of right ovary and fallopian tube','Y','0000-00-00 00:00:00'),(126015,10,'N83.339 ','Acquired atrophy of ovary and fallopian tube, unspecified side','Y','0000-00-00 00:00:00'),(126013,10,'N83.331 ','Acquired atrophy of right ovary and fallopian tube','Y','0000-00-00 00:00:00'),(126014,10,'N83.332 ','Acquired atrophy of left ovary and fallopian tube','Y','0000-00-00 00:00:00'),(126012,10,'N83.329 ','Acquired atrophy of fallopian tube, unspecified side','Y','0000-00-00 00:00:00'),(126011,10,'N83.322 ','Acquired atrophy of left fallopian tube','Y','0000-00-00 00:00:00'),(126009,10,'N83.319 ','Acquired atrophy of ovary, unspecified side','Y','0000-00-00 00:00:00'),(126010,10,'N83.321 ','Acquired atrophy of right fallopian tube','Y','0000-00-00 00:00:00'),(126007,10,'N83.311 ','Acquired atrophy of right ovary','Y','0000-00-00 00:00:00'),(126008,10,'N83.312 ','Acquired atrophy of left ovary','Y','0000-00-00 00:00:00'),(126005,10,'N83.292 ','Other ovarian cyst, left side','Y','0000-00-00 00:00:00'),(126006,10,'N83.299 ','Other ovarian cyst, unspecified side','Y','0000-00-00 00:00:00'),(126004,10,'N83.291 ','Other ovarian cyst, right side','Y','0000-00-00 00:00:00'),(126002,10,'N83.202 ','Unspecified ovarian cyst, left side','Y','0000-00-00 00:00:00'),(126003,10,'N83.209 ','Unspecified ovarian cyst, unspecified side','Y','0000-00-00 00:00:00'),(126001,10,'N83.201 ','Unspecified ovarian cyst, right side','Y','0000-00-00 00:00:00'),(125999,10,'N83.11 ','Corpus luteum cyst of right ovary','Y','0000-00-00 00:00:00'),(126000,10,'N83.12 ','Corpus luteum cyst of left ovary','Y','0000-00-00 00:00:00'),(125998,10,'N83.10 ','Corpus luteum cyst of ovary, unspecified side','Y','0000-00-00 00:00:00'),(125996,10,'N83.01 ','Follicular cyst of right ovary','Y','0000-00-00 00:00:00'),(125997,10,'N83.02 ','Follicular cyst of left ovary','Y','0000-00-00 00:00:00'),(125994,10,'N82.9 ','Female genital tract fistula, unspecified','Y','0000-00-00 00:00:00'),(125995,10,'N83.00 ','Follicular cyst of ovary, unspecified side','Y','0000-00-00 00:00:00'),(125992,10,'N82.5 ','Female genital tract-skin fistulae','Y','0000-00-00 00:00:00'),(125993,10,'N82.8 ','Other female genital tract fistulae','Y','0000-00-00 00:00:00'),(125991,10,'N82.4 ','Other female intestinal-genital tract fistulae','Y','0000-00-00 00:00:00'),(125990,10,'N82.3 ','Fistula of vagina to large intestine','Y','0000-00-00 00:00:00'),(125988,10,'N82.1 ','Other female urinary-genital tract fistulae','Y','0000-00-00 00:00:00'),(125989,10,'N82.2 ','Fistula of vagina to small intestine','Y','0000-00-00 00:00:00'),(125986,10,'N81.9 ','Female genital prolapse, unspecified','Y','0000-00-00 00:00:00'),(125987,10,'N82.0 ','Vesicovaginal fistula','Y','0000-00-00 00:00:00'),(125984,10,'N81.85 ','Cervical stump prolapse','Y','0000-00-00 00:00:00'),(125985,10,'N81.89 ','Other female genital prolapse','Y','0000-00-00 00:00:00'),(125982,10,'N81.83 ','Incompetence or weakening of rectovaginal tissue','Y','0000-00-00 00:00:00'),(125983,10,'N81.84 ','Pelvic muscle wasting','Y','0000-00-00 00:00:00'),(125981,10,'N81.82 ','Incompetence or weakening of pubocervical tissue','Y','0000-00-00 00:00:00'),(125978,10,'N81.5 ','Vaginal enterocele','Y','0000-00-00 00:00:00'),(125979,10,'N81.6 ','Rectocele','Y','0000-00-00 00:00:00'),(125980,10,'N81.81 ','Perineocele','Y','0000-00-00 00:00:00'),(125977,10,'N81.4 ','Uterovaginal prolapse, unspecified','Y','0000-00-00 00:00:00'),(125976,10,'N81.3 ','Complete uterovaginal prolapse','Y','0000-00-00 00:00:00'),(125974,10,'N81.12 ','Cystocele, lateral','Y','0000-00-00 00:00:00'),(125975,10,'N81.2 ','Incomplete uterovaginal prolapse','Y','0000-00-00 00:00:00'),(125972,10,'N81.10 ','Cystocele, unspecified','Y','0000-00-00 00:00:00'),(125973,10,'N81.11 ','Cystocele, midline','Y','0000-00-00 00:00:00'),(125970,10,'N80.9 ','Endometriosis, unspecified','Y','0000-00-00 00:00:00'),(125971,10,'N81.0 ','Urethrocele','Y','0000-00-00 00:00:00'),(125969,10,'N80.8 ','Other endometriosis','Y','0000-00-00 00:00:00'),(125967,10,'N80.D6 ','Endometriosis of the femoral nerve','Y','0000-00-00 00:00:00'),(125968,10,'N80.D9 ','Endometriosis of other pelvic nerve','Y','0000-00-00 00:00:00'),(125966,10,'N80.D5 ','Endometriosis of the pudendal nerve','Y','0000-00-00 00:00:00'),(125965,10,'N80.D4 ','Endometriosis of the sciatic nerve','Y','0000-00-00 00:00:00'),(125964,10,'N80.D3 ','Endometriosis of the obturator nerve','Y','0000-00-00 00:00:00'),(125963,10,'N80.D2 ','Endometriosis of the sacral nerve roots','Y','0000-00-00 00:00:00'),(125962,10,'N80.D1 ','Endometriosis of the sacral splanchnic nerves','Y','0000-00-00 00:00:00'),(125960,10,'N80.C9 ','Endometriosis of other site of abdomen','Y','0000-00-00 00:00:00'),(125961,10,'N80.D0 ','Endometriosis of the pelvic nerves, unspecified','Y','0000-00-00 00:00:00'),(125959,10,'N80.C4 ','Endometriosis of extra-pelvic abdominal peritoneum','Y','0000-00-00 00:00:00'),(125957,10,'N80.C2 ','Endometriosis of the umbilicus','Y','0000-00-00 00:00:00'),(125958,10,'N80.C3 ','Endometriosis of the inguinal canal','Y','0000-00-00 00:00:00'),(125956,10,'N80.C19 ','Endometriosis of the anterior abdominal wall, unspecified depth','Y','0000-00-00 00:00:00'),(125955,10,'N80.C11 ','Endometriosis of the anterior abdominal wall, fascia and muscular layers','Y','0000-00-00 00:00:00'),(125954,10,'N80.C10 ','Endometriosis of the anterior abdominal wall, subcutaneous tissue','Y','0000-00-00 00:00:00'),(125953,10,'N80.C0 ','Endometriosis of the abdomen, unspecified','Y','0000-00-00 00:00:00'),(125951,10,'N80.B5 ','Endometriosis of the mediastinal space','Y','0000-00-00 00:00:00'),(125952,10,'N80.B6 ','Endometriosis of cardiothoracic space','Y','0000-00-00 00:00:00'),(125950,10,'N80.B4 ','Endometriosis of the pericardial space','Y','0000-00-00 00:00:00'),(125949,10,'N80.B39 ','Endometriosis of diaphragm, unspecified depth','Y','0000-00-00 00:00:00'),(125947,10,'N80.B31 ','Superficial endometriosis of diaphragm','Y','0000-00-00 00:00:00'),(125948,10,'N80.B32 ','Deep endometriosis of diaphragm','Y','0000-00-00 00:00:00'),(125945,10,'N80.B1 ','Endometriosis of pleura','Y','0000-00-00 00:00:00'),(125946,10,'N80.B2 ','Endometriosis of lung','Y','0000-00-00 00:00:00'),(125944,10,'N80.A69 ','Endometriosis of unspecified ureter, unspecified depth','Y','0000-00-00 00:00:00'),(125943,10,'N80.A63 ','Endometriosis of bilateral ureters, unspecified depth','Y','0000-00-00 00:00:00'),(125942,10,'N80.A62 ','Endometriosis of left ureter, unspecified depth','Y','0000-00-00 00:00:00'),(125941,10,'N80.A61 ','Endometriosis of right ureter, unspecified depth','Y','0000-00-00 00:00:00'),(125940,10,'N80.A59 ','Deep endometriosis of unspecified ureter','Y','0000-00-00 00:00:00'),(125938,10,'N80.A52 ','Deep endometriosis of left ureter','Y','0000-00-00 00:00:00'),(125939,10,'N80.A53 ','Deep endometriosis of bilateral ureters','Y','0000-00-00 00:00:00'),(125937,10,'N80.A51 ','Deep endometriosis of right ureter','Y','0000-00-00 00:00:00'),(125936,10,'N80.A49 ','Superficial endometriosis of unspecified ureter','Y','0000-00-00 00:00:00'),(125935,10,'N80.A43 ','Superficial endometriosis of bilateral ureters','Y','0000-00-00 00:00:00'),(125934,10,'N80.A42 ','Superficial endometriosis of left ureter','Y','0000-00-00 00:00:00'),(125933,10,'N80.A41 ','Superficial endometriosis of right ureter','Y','0000-00-00 00:00:00'),(125932,10,'N80.A2 ','Deep endometriosis of bladder','Y','0000-00-00 00:00:00'),(125931,10,'N80.A1 ','Superficial endometriosis of bladder','Y','0000-00-00 00:00:00'),(125929,10,'N80.6 ','Endometriosis in cutaneous scar','Y','0000-00-00 00:00:00'),(125930,10,'N80.A0 ','Endometriosis of bladder, unspecified depth','Y','0000-00-00 00:00:00'),(125928,10,'N80.569 ','Endometriosis of the small intestine, unspecified depth','Y','0000-00-00 00:00:00'),(125927,10,'N80.562 ','Deep endometriosis of the small intestine','Y','0000-00-00 00:00:00'),(125926,10,'N80.561 ','Superficial endometriosis of the small intestine','Y','0000-00-00 00:00:00'),(125925,10,'N80.559 ','Endometriosis of other parts of the colon, unspecified depth','Y','0000-00-00 00:00:00'),(125924,10,'N80.552 ','Deep endometriosis of other parts of the colon','Y','0000-00-00 00:00:00'),(125923,10,'N80.551 ','Superficial endometriosis of other parts of the colon','Y','0000-00-00 00:00:00'),(125921,10,'N80.542 ','Deep endometriosis of the appendix','Y','0000-00-00 00:00:00'),(125922,10,'N80.549 ','Endometriosis of the appendix, unspecified depth','Y','0000-00-00 00:00:00'),(125920,10,'N80.541 ','Superficial endometriosis of the appendix','Y','0000-00-00 00:00:00'),(125919,10,'N80.539 ','Endometriosis of the cecum, unspecified depth','Y','0000-00-00 00:00:00'),(125917,10,'N80.531 ','Superficial endometriosis of the cecum','Y','0000-00-00 00:00:00'),(125918,10,'N80.532 ','Deep endometriosis of the cecum','Y','0000-00-00 00:00:00'),(125916,10,'N80.529 ','Endometriosis of the sigmoid colon, unspecified depth','Y','0000-00-00 00:00:00'),(125915,10,'N80.522 ','Deep endometriosis of the sigmoid colon','Y','0000-00-00 00:00:00'),(125914,10,'N80.521 ','Superficial endometriosis of the sigmoid colon','Y','0000-00-00 00:00:00'),(125913,10,'N80.519 ','Endometriosis of the rectum, unspecified depth','Y','0000-00-00 00:00:00'),(125912,10,'N80.512 ','Deep endometriosis of the rectum','Y','0000-00-00 00:00:00'),(125911,10,'N80.511 ','Superficial endometriosis of the rectum','Y','0000-00-00 00:00:00'),(125910,10,'N80.50 ','Endometriosis of intestine, unspecified','Y','0000-00-00 00:00:00'),(125909,10,'N80.42 ','Endometriosis of rectovaginal septum with involvement of vagina','Y','0000-00-00 00:00:00'),(125908,10,'N80.41 ','Endometriosis of rectovaginal septum without involvement of vagina','Y','0000-00-00 00:00:00'),(125907,10,'N80.40 ','Endometriosis of rectovaginal septum, unspecified involvement of vagina','Y','0000-00-00 00:00:00'),(125906,10,'N80.399 ','Endometriosis of the pelvic peritoneum, other specified sites, unspecified depth','Y','0000-00-00 00:00:00'),(125905,10,'N80.392 ','Deep endometriosis of the pelvic peritoneum, other specified sites','Y','0000-00-00 00:00:00'),(125904,10,'N80.391 ','Superficial endometriosis of the pelvic peritoneum, other specified sites','Y','0000-00-00 00:00:00'),(125903,10,'N80.3C9 ','Endometriosis of the uterosacral ligament(s), unspecified side, unspecified depth','Y','0000-00-00 00:00:00'),(125902,10,'N80.3C3 ','Endometriosis of bilateral uterosacral ligament(s), unspecified depth','Y','0000-00-00 00:00:00'),(125901,10,'N80.3C2 ','Endometriosis of the left uterosacral ligament, unspecified depth','Y','0000-00-00 00:00:00'),(125900,10,'N80.3C1 ','Endometriosis of the right uterosacral ligament, unspecified depth','Y','0000-00-00 00:00:00'),(125899,10,'N80.3B9 ','Deep endometriosis of the uterosacral ligament(s), unspecified side','Y','0000-00-00 00:00:00'),(125898,10,'N80.3B3 ','Deep endometriosis of bilateral uterosacral ligament(s)','Y','0000-00-00 00:00:00'),(125897,10,'N80.3B2 ','Deep endometriosis of the left uterosacral ligament','Y','0000-00-00 00:00:00'),(125896,10,'N80.3B1 ','Deep endometriosis of the right uterosacral ligament','Y','0000-00-00 00:00:00'),(125895,10,'N80.3A9 ','Superficial endometriosis of the uterosacral ligament(s), unspecified side','Y','0000-00-00 00:00:00'),(125894,10,'N80.3A3 ','Superficial endometriosis of the bilateral uterosacral ligament(s)','Y','0000-00-00 00:00:00'),(125893,10,'N80.3A2 ','Superficial endometriosis of the left uterosacral ligament','Y','0000-00-00 00:00:00'),(125892,10,'N80.3A1 ','Superficial endometriosis of the right uterosacral ligament','Y','0000-00-00 00:00:00'),(125891,10,'N80.389 ','Endometriosis of the pelvic brim, unspecified side, unspecified depth','Y','0000-00-00 00:00:00'),(125890,10,'N80.383 ','Endometriosis of bilateral pelvic brim, unspecified depth','Y','0000-00-00 00:00:00'),(125889,10,'N80.382 ','Endometriosis of the left pelvic brim, unspecified depth','Y','0000-00-00 00:00:00'),(125888,10,'N80.381 ','Endometriosis of the right pelvic brim, unspecified depth','Y','0000-00-00 00:00:00'),(125887,10,'N80.379 ','Deep endometriosis of the pelvic brim, unspecified side','Y','0000-00-00 00:00:00'),(125886,10,'N80.373 ','Deep endometriosis of bilateral pelvic brim','Y','0000-00-00 00:00:00'),(125885,10,'N80.372 ','Deep endometriosis of the left pelvic brim','Y','0000-00-00 00:00:00'),(125884,10,'N80.371 ','Deep endometriosis of the right pelvic brim','Y','0000-00-00 00:00:00'),(125883,10,'N80.369 ','Superficial endometriosis of the pelvic brim, unspecified side','Y','0000-00-00 00:00:00'),(125882,10,'N80.363 ','Superficial endometriosis of bilateral pelvic brim','Y','0000-00-00 00:00:00'),(125881,10,'N80.362 ','Superficial endometriosis of the left pelvic brim','Y','0000-00-00 00:00:00'),(125880,10,'N80.361 ','Superficial endometriosis of the right pelvic brim','Y','0000-00-00 00:00:00'),(125879,10,'N80.359 ','Endometriosis of pelvic sidewall, unspecified side, unspecified depth','Y','0000-00-00 00:00:00'),(125878,10,'N80.353 ','Endometriosis of bilateral pelvic sidewall, unspecified depth','Y','0000-00-00 00:00:00'),(125877,10,'N80.352 ','Endometriosis of the left pelvic sidewall, unspecified depth','Y','0000-00-00 00:00:00'),(125876,10,'N80.351 ','Endometriosis of the right pelvic sidewall, unspecified depth','Y','0000-00-00 00:00:00'),(125875,10,'N80.349 ','Deep endometriosis of the pelvic sidewall, unspecified side','Y','0000-00-00 00:00:00'),(125874,10,'N80.343 ','Deep endometriosis of the bilateral pelvic sidewall','Y','0000-00-00 00:00:00'),(125873,10,'N80.342 ','Deep endometriosis of the left pelvic sidewall','Y','0000-00-00 00:00:00'),(125872,10,'N80.341 ','Deep endometriosis of the right pelvic sidewall','Y','0000-00-00 00:00:00'),(125871,10,'N80.339 ','Superficial endometriosis of pelvic sidewall, unspecified side','Y','0000-00-00 00:00:00'),(125870,10,'N80.333 ','Superficial endometriosis of bilateral pelvic sidewall','Y','0000-00-00 00:00:00'),(125869,10,'N80.332 ','Superficial endometriosis of the left pelvic sidewall','Y','0000-00-00 00:00:00'),(125868,10,'N80.331 ','Superficial endometriosis of the right pelvic sidewall','Y','0000-00-00 00:00:00'),(125867,10,'N80.329 ','Endometriosis of the posterior cul-de-sac, unspecified depth','Y','0000-00-00 00:00:00'),(125866,10,'N80.322 ','Deep endometriosis of the posterior cul-de-sac','Y','0000-00-00 00:00:00'),(125865,10,'N80.321 ','Superficial endometriosis of the posterior cul-de-sac','Y','0000-00-00 00:00:00'),(125864,10,'N80.319 ','Endometriosis of the anterior cul-de-sac, unspecified depth','Y','0000-00-00 00:00:00'),(125863,10,'N80.312 ','Deep endometriosis of the anterior cul-de-sac','Y','0000-00-00 00:00:00'),(125862,10,'N80.311 ','Superficial endometriosis of the anterior cul-de-sac','Y','0000-00-00 00:00:00'),(125861,10,'N80.30 ','Endometriosis of pelvic peritoneum, unspecified','Y','0000-00-00 00:00:00'),(125860,10,'N80.229 ','Deep endometriosis of unspecified fallopian tube','Y','0000-00-00 00:00:00'),(125859,10,'N80.223 ','Deep endometriosis of bilateral fallopian tubes','Y','0000-00-00 00:00:00'),(125858,10,'N80.222 ','Deep endometriosis of left fallopian tube','Y','0000-00-00 00:00:00'),(125857,10,'N80.221 ','Deep endometriosis of right fallopian tube','Y','0000-00-00 00:00:00'),(125856,10,'N80.219 ','Superficial endometriosis of unspecified fallopian tube','Y','0000-00-00 00:00:00'),(125855,10,'N80.213 ','Superficial endometriosis of bilateral fallopian tubes','Y','0000-00-00 00:00:00'),(125854,10,'N80.212 ','Superficial endometriosis of left fallopian tube','Y','0000-00-00 00:00:00'),(125853,10,'N80.211 ','Superficial endometriosis of right fallopian tube','Y','0000-00-00 00:00:00'),(125852,10,'N80.209 ','Endometriosis of unspecified fallopian tube, unspecified depth','Y','0000-00-00 00:00:00'),(125851,10,'N80.203 ','Endometriosis of bilateral fallopian tubes, unspecified depth','Y','0000-00-00 00:00:00'),(125850,10,'N80.202 ','Endometriosis of left fallopian tube, unspecified depth','Y','0000-00-00 00:00:00'),(125849,10,'N80.201 ','Endometriosis of right fallopian tube, unspecified depth','Y','0000-00-00 00:00:00'),(125848,10,'N80.129 ','Deep endometriosis of ovary, unspecified ovary','Y','0000-00-00 00:00:00'),(125847,10,'N80.123 ','Deep endometriosis of bilateral ovaries','Y','0000-00-00 00:00:00'),(125845,10,'N80.121 ','Deep endometriosis of right ovary','Y','0000-00-00 00:00:00'),(125846,10,'N80.122 ','Deep endometriosis of left ovary','Y','0000-00-00 00:00:00'),(125844,10,'N80.119 ','Superficial endometriosis of ovary, unspecified ovary','Y','0000-00-00 00:00:00'),(125842,10,'N80.112 ','Superficial endometriosis of left ovary','Y','0000-00-00 00:00:00'),(125843,10,'N80.113 ','Superficial endometriosis of bilateral ovaries','Y','0000-00-00 00:00:00'),(125841,10,'N80.111 ','Superficial endometriosis of right ovary','Y','0000-00-00 00:00:00'),(125840,10,'N80.109 ','Endometriosis of ovary, unspecified side, unspecified depth','Y','0000-00-00 00:00:00'),(125839,10,'N80.103 ','Endometriosis of bilateral ovaries, unspecified depth','Y','0000-00-00 00:00:00'),(125838,10,'N80.102 ','Endometriosis of left ovary, unspecified depth','Y','0000-00-00 00:00:00'),(125836,10,'N80.03 ','Adenomyosis of the uterus','Y','0000-00-00 00:00:00'),(125837,10,'N80.101 ','Endometriosis of right ovary, unspecified depth','Y','0000-00-00 00:00:00'),(125835,10,'N80.02 ','Deep endometriosis of the uterus','Y','0000-00-00 00:00:00'),(125834,10,'N80.01 ','Superficial endometriosis of the uterus','Y','0000-00-00 00:00:00'),(125833,10,'N80.00 ','Endometriosis of the uterus, unspecified','Y','0000-00-00 00:00:00'),(125832,10,'N77.1 ','Vaginitis, vulvitis and vulvovaginitis in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(125831,10,'N77.0 ','Ulceration of vulva in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(125830,10,'N76.89 ','Other specified inflammation of vagina and vulva','Y','0000-00-00 00:00:00'),(125829,10,'N76.82 ','Fournier disease of vagina and vulva','Y','0000-00-00 00:00:00'),(125828,10,'N76.81 ','Mucositis (ulcerative) of vagina and vulva','Y','0000-00-00 00:00:00'),(125826,10,'N76.5 ','Ulceration of vagina','Y','0000-00-00 00:00:00'),(125827,10,'N76.6 ','Ulceration of vulva','Y','0000-00-00 00:00:00'),(125825,10,'N76.4 ','Abscess of vulva','Y','0000-00-00 00:00:00'),(125823,10,'N76.2 ','Acute vulvitis','Y','0000-00-00 00:00:00'),(125824,10,'N76.3 ','Subacute and chronic vulvitis','Y','0000-00-00 00:00:00'),(125821,10,'N76.0 ','Acute vaginitis','Y','0000-00-00 00:00:00'),(125822,10,'N76.1 ','Subacute and chronic vaginitis','Y','0000-00-00 00:00:00'),(125820,10,'N75.9 ','Disease of Bartholin\'s gland, unspecified','Y','0000-00-00 00:00:00'),(125819,10,'N75.8 ','Other diseases of Bartholin\'s gland','Y','0000-00-00 00:00:00'),(125817,10,'N75.0 ','Cyst of Bartholin\'s gland','Y','0000-00-00 00:00:00'),(125818,10,'N75.1 ','Abscess of Bartholin\'s gland','Y','0000-00-00 00:00:00'),(125816,10,'N74','Female pelvic inflammatory disorders in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(125815,10,'N73.9 ','Female pelvic inflammatory disease, unspecified','Y','0000-00-00 00:00:00'),(125814,10,'N73.8 ','Other specified female pelvic inflammatory diseases','Y','0000-00-00 00:00:00'),(125813,10,'N73.6 ','Female pelvic peritoneal adhesions (postinfective)','Y','0000-00-00 00:00:00'),(125812,10,'N73.5 ','Female pelvic peritonitis, unspecified','Y','0000-00-00 00:00:00'),(125811,10,'N73.4 ','Female chronic pelvic peritonitis','Y','0000-00-00 00:00:00'),(125810,10,'N73.3 ','Female acute pelvic peritonitis','Y','0000-00-00 00:00:00'),(125809,10,'N73.2 ','Unspecified parametritis and pelvic cellulitis','Y','0000-00-00 00:00:00'),(125808,10,'N73.1 ','Chronic parametritis and pelvic cellulitis','Y','0000-00-00 00:00:00'),(125807,10,'N73.0 ','Acute parametritis and pelvic cellulitis','Y','0000-00-00 00:00:00'),(125806,10,'N72','Inflammatory disease of cervix uteri','Y','0000-00-00 00:00:00'),(125804,10,'N71.1 ','Chronic inflammatory disease of uterus','Y','0000-00-00 00:00:00'),(125805,10,'N71.9 ','Inflammatory disease of uterus, unspecified','Y','0000-00-00 00:00:00'),(125803,10,'N71.0 ','Acute inflammatory disease of uterus','Y','0000-00-00 00:00:00'),(125802,10,'N70.93 ','Salpingitis and oophoritis, unspecified','Y','0000-00-00 00:00:00'),(125800,10,'N70.91 ','Salpingitis, unspecified','Y','0000-00-00 00:00:00'),(125801,10,'N70.92 ','Oophoritis, unspecified','Y','0000-00-00 00:00:00'),(125799,10,'N70.13 ','Chronic salpingitis and oophoritis','Y','0000-00-00 00:00:00'),(125797,10,'N70.11 ','Chronic salpingitis','Y','0000-00-00 00:00:00'),(125798,10,'N70.12 ','Chronic oophoritis','Y','0000-00-00 00:00:00'),(125796,10,'N70.03 ','Acute salpingitis and oophoritis','Y','0000-00-00 00:00:00'),(125794,10,'N70.01 ','Acute salpingitis','Y','0000-00-00 00:00:00'),(125795,10,'N70.02 ','Acute oophoritis','Y','0000-00-00 00:00:00'),(125793,10,'N65.1 ','Disproportion of reconstructed breast','Y','0000-00-00 00:00:00'),(125791,10,'N64.9 ','Disorder of breast, unspecified','Y','0000-00-00 00:00:00'),(125792,10,'N65.0 ','Deformity of reconstructed breast','Y','0000-00-00 00:00:00'),(125790,10,'N64.89 ','Other specified disorders of breast','Y','0000-00-00 00:00:00'),(125788,10,'N64.81 ','Ptosis of breast','Y','0000-00-00 00:00:00'),(125789,10,'N64.82 ','Hypoplasia of breast','Y','0000-00-00 00:00:00'),(125787,10,'N64.59 ','Other signs and symptoms in breast','Y','0000-00-00 00:00:00'),(125785,10,'N64.52 ','Nipple discharge','Y','0000-00-00 00:00:00'),(125786,10,'N64.53 ','Retraction of nipple','Y','0000-00-00 00:00:00'),(125783,10,'N64.4 ','Mastodynia','Y','0000-00-00 00:00:00'),(125784,10,'N64.51 ','Induration of breast','Y','0000-00-00 00:00:00'),(125782,10,'N64.3 ','Galactorrhea not associated with childbirth','Y','0000-00-00 00:00:00'),(125781,10,'N64.2 ','Atrophy of breast','Y','0000-00-00 00:00:00'),(125779,10,'N64.0 ','Fissure and fistula of nipple','Y','0000-00-00 00:00:00'),(125780,10,'N64.1 ','Fat necrosis of breast','Y','0000-00-00 00:00:00'),(125778,10,'N63.42 ','Unspecified lump in left breast, subareolar','Y','0000-00-00 00:00:00'),(125777,10,'N63.41 ','Unspecified lump in right breast, subareolar','Y','0000-00-00 00:00:00'),(125776,10,'N63.32 ','Unspecified lump in axillary tail of the left breast','Y','0000-00-00 00:00:00'),(125775,10,'N63.31 ','Unspecified lump in axillary tail of the right breast','Y','0000-00-00 00:00:00'),(125774,10,'N63.25 ','Unspecified lump in the left breast, overlapping quadrants','Y','0000-00-00 00:00:00'),(125773,10,'N63.24 ','Unspecified lump in the left breast, lower inner quadrant','Y','0000-00-00 00:00:00'),(125772,10,'N63.23 ','Unspecified lump in the left breast, lower outer quadrant','Y','0000-00-00 00:00:00'),(125771,10,'N63.22 ','Unspecified lump in the left breast, upper inner quadrant','Y','0000-00-00 00:00:00'),(125770,10,'N63.21 ','Unspecified lump in the left breast, upper outer quadrant','Y','0000-00-00 00:00:00'),(125769,10,'N63.20 ','Unspecified lump in the left breast, unspecified quadrant','Y','0000-00-00 00:00:00'),(125768,10,'N63.15 ','Unspecified lump in the right breast, overlapping quadrants','Y','0000-00-00 00:00:00'),(125767,10,'N63.14 ','Unspecified lump in the right breast, lower inner quadrant','Y','0000-00-00 00:00:00'),(125766,10,'N63.13 ','Unspecified lump in the right breast, lower outer quadrant','Y','0000-00-00 00:00:00'),(125765,10,'N63.12 ','Unspecified lump in the right breast, upper inner quadrant','Y','0000-00-00 00:00:00'),(125764,10,'N63.11 ','Unspecified lump in the right breast, upper outer quadrant','Y','0000-00-00 00:00:00'),(125763,10,'N63.10 ','Unspecified lump in the right breast, unspecified quadrant','Y','0000-00-00 00:00:00'),(125762,10,'N63.0 ','Unspecified lump in unspecified breast','Y','0000-00-00 00:00:00'),(125761,10,'N62','Hypertrophy of breast','Y','0000-00-00 00:00:00'),(125760,10,'N61.23 ','Granulomatous mastitis, bilateral breast','Y','0000-00-00 00:00:00'),(125759,10,'N61.22 ','Granulomatous mastitis, left breast','Y','0000-00-00 00:00:00'),(125758,10,'N61.21 ','Granulomatous mastitis, right breast','Y','0000-00-00 00:00:00'),(125757,10,'N61.20 ','Granulomatous mastitis, unspecified breast','Y','0000-00-00 00:00:00'),(125756,10,'N61.1 ','Abscess of the breast and nipple','Y','0000-00-00 00:00:00'),(125755,10,'N61.0 ','Mastitis without abscess','Y','0000-00-00 00:00:00'),(125754,10,'N60.99 ','Unspecified benign mammary dysplasia of unspecified breast','Y','0000-00-00 00:00:00'),(125753,10,'N60.92 ','Unspecified benign mammary dysplasia of left breast','Y','0000-00-00 00:00:00'),(125752,10,'N60.91 ','Unspecified benign mammary dysplasia of right breast','Y','0000-00-00 00:00:00'),(125751,10,'N60.89 ','Other benign mammary dysplasias of unspecified breast','Y','0000-00-00 00:00:00'),(125750,10,'N60.82 ','Other benign mammary dysplasias of left breast','Y','0000-00-00 00:00:00'),(125749,10,'N60.81 ','Other benign mammary dysplasias of right breast','Y','0000-00-00 00:00:00'),(125748,10,'N60.49 ','Mammary duct ectasia of unspecified breast','Y','0000-00-00 00:00:00'),(125747,10,'N60.42 ','Mammary duct ectasia of left breast','Y','0000-00-00 00:00:00'),(125746,10,'N60.41 ','Mammary duct ectasia of right breast','Y','0000-00-00 00:00:00'),(125745,10,'N60.39 ','Fibrosclerosis of unspecified breast','Y','0000-00-00 00:00:00'),(125744,10,'N60.32 ','Fibrosclerosis of left breast','Y','0000-00-00 00:00:00'),(125743,10,'N60.31 ','Fibrosclerosis of right breast','Y','0000-00-00 00:00:00'),(125742,10,'N60.29 ','Fibroadenosis of unspecified breast','Y','0000-00-00 00:00:00'),(125741,10,'N60.22 ','Fibroadenosis of left breast','Y','0000-00-00 00:00:00'),(125740,10,'N60.21 ','Fibroadenosis of right breast','Y','0000-00-00 00:00:00'),(125739,10,'N60.19 ','Diffuse cystic mastopathy of unspecified breast','Y','0000-00-00 00:00:00'),(125738,10,'N60.12 ','Diffuse cystic mastopathy of left breast','Y','0000-00-00 00:00:00'),(125737,10,'N60.11 ','Diffuse cystic mastopathy of right breast','Y','0000-00-00 00:00:00'),(125736,10,'N60.09 ','Solitary cyst of unspecified breast','Y','0000-00-00 00:00:00'),(125735,10,'N60.02 ','Solitary cyst of left breast','Y','0000-00-00 00:00:00'),(125734,10,'N60.01 ','Solitary cyst of right breast','Y','0000-00-00 00:00:00'),(125733,10,'N53.9 ','Unspecified male sexual dysfunction','Y','0000-00-00 00:00:00'),(125732,10,'N53.8 ','Other male sexual dysfunction','Y','0000-00-00 00:00:00'),(125731,10,'N53.19 ','Other ejaculatory dysfunction','Y','0000-00-00 00:00:00'),(125730,10,'N53.14 ','Retrograde ejaculation','Y','0000-00-00 00:00:00'),(125729,10,'N53.13 ','Anejaculatory orgasm','Y','0000-00-00 00:00:00'),(125727,10,'N53.11 ','Retarded ejaculation','Y','0000-00-00 00:00:00'),(125728,10,'N53.12 ','Painful ejaculation','Y','0000-00-00 00:00:00'),(125726,10,'N52.9 ','Male erectile dysfunction, unspecified','Y','0000-00-00 00:00:00'),(125725,10,'N52.8 ','Other male erectile dysfunction','Y','0000-00-00 00:00:00'),(125724,10,'N52.39 ','Other and unspecified postprocedural erectile dysfunction','Y','0000-00-00 00:00:00'),(125723,10,'N52.37 ','Erectile dysfunction following prostate ablative therapy','Y','0000-00-00 00:00:00'),(125722,10,'N52.36 ','Erectile dysfunction following interstitial seed therapy','Y','0000-00-00 00:00:00'),(125721,10,'N52.35 ','Erectile dysfunction following radiation therapy','Y','0000-00-00 00:00:00'),(125720,10,'N52.34 ','Erectile dysfunction following simple prostatectomy','Y','0000-00-00 00:00:00'),(125719,10,'N52.33 ','Erectile dysfunction following urethral surgery','Y','0000-00-00 00:00:00'),(125718,10,'N52.32 ','Erectile dysfunction following radical cystectomy','Y','0000-00-00 00:00:00'),(125717,10,'N52.31 ','Erectile dysfunction following radical prostatectomy','Y','0000-00-00 00:00:00'),(125716,10,'N52.2 ','Drug-induced erectile dysfunction','Y','0000-00-00 00:00:00'),(125715,10,'N52.1 ','Erectile dysfunction due to diseases classified elsewhere','Y','0000-00-00 00:00:00'),(125714,10,'N52.03 ','Combined arterial insufficiency and corporo-venous occlusive erectile dysfunction','Y','0000-00-00 00:00:00'),(125713,10,'N52.02 ','Corporo-venous occlusive erectile dysfunction','Y','0000-00-00 00:00:00'),(125712,10,'N52.01 ','Erectile dysfunction due to arterial insufficiency','Y','0000-00-00 00:00:00'),(125711,10,'N51','Disorders of male genital organs in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(125710,10,'N50.9 ','Disorder of male genital organs, unspecified','Y','0000-00-00 00:00:00'),(125708,10,'N50.82 ','Scrotal pain','Y','0000-00-00 00:00:00'),(125709,10,'N50.89 ','Other specified disorders of the male genital organs','Y','0000-00-00 00:00:00'),(125707,10,'N50.819 ','Testicular pain, unspecified','Y','0000-00-00 00:00:00'),(125706,10,'N50.812 ','Left testicular pain','Y','0000-00-00 00:00:00'),(125705,10,'N50.811 ','Right testicular pain','Y','0000-00-00 00:00:00'),(125704,10,'N50.3 ','Cyst of epididymis','Y','0000-00-00 00:00:00'),(125703,10,'N50.1 ','Vascular disorders of male genital organs','Y','0000-00-00 00:00:00'),(125702,10,'N50.0 ','Atrophy of testis','Y','0000-00-00 00:00:00'),(125701,10,'N49.9 ','Inflammatory disorder of unspecified male genital organ','Y','0000-00-00 00:00:00'),(125700,10,'N49.8 ','Inflammatory disorders of other specified male genital organs','Y','0000-00-00 00:00:00'),(125699,10,'N49.3 ','Fournier gangrene','Y','0000-00-00 00:00:00'),(125698,10,'N49.2 ','Inflammatory disorders of scrotum','Y','0000-00-00 00:00:00'),(125697,10,'N49.1 ','Inflammatory disorders of spermatic cord, tunica vaginalis and vas deferens','Y','0000-00-00 00:00:00'),(125696,10,'N49.0 ','Inflammatory disorders of seminal vesicle','Y','0000-00-00 00:00:00'),(125695,10,'N48.9 ','Disorder of penis, unspecified','Y','0000-00-00 00:00:00'),(125694,10,'N48.89 ','Other specified disorders of penis','Y','0000-00-00 00:00:00'),(125693,10,'N48.83 ','Acquired buried penis','Y','0000-00-00 00:00:00'),(125692,10,'N48.82 ','Acquired torsion of penis','Y','0000-00-00 00:00:00'),(125691,10,'N48.81 ','Thrombosis of superficial vein of penis','Y','0000-00-00 00:00:00'),(125689,10,'N48.5 ','Ulcer of penis','Y','0000-00-00 00:00:00'),(125690,10,'N48.6 ','Induration penis plastica','Y','0000-00-00 00:00:00'),(125688,10,'N48.39 ','Other priapism','Y','0000-00-00 00:00:00'),(125687,10,'N48.33 ','Priapism, drug-induced','Y','0000-00-00 00:00:00'),(125686,10,'N48.32 ','Priapism due to disease classified elsewhere','Y','0000-00-00 00:00:00'),(125685,10,'N48.31 ','Priapism due to trauma','Y','0000-00-00 00:00:00'),(125684,10,'N48.30 ','Priapism, unspecified','Y','0000-00-00 00:00:00'),(125683,10,'N48.29 ','Other inflammatory disorders of penis','Y','0000-00-00 00:00:00'),(125682,10,'N48.22 ','Cellulitis of corpus cavernosum and penis','Y','0000-00-00 00:00:00'),(125680,10,'N48.1 ','Balanitis','Y','0000-00-00 00:00:00'),(125681,10,'N48.21 ','Abscess of corpus cavernosum and penis','Y','0000-00-00 00:00:00'),(125679,10,'N48.0 ','Leukoplakia of penis','Y','0000-00-00 00:00:00'),(125678,10,'N47.8 ','Other disorders of prepuce','Y','0000-00-00 00:00:00'),(125676,10,'N47.6 ','Balanoposthitis','Y','0000-00-00 00:00:00'),(125677,10,'N47.7 ','Other inflammatory diseases of prepuce','Y','0000-00-00 00:00:00'),(125675,10,'N47.5 ','Adhesions of prepuce and glans penis','Y','0000-00-00 00:00:00'),(125674,10,'N47.4 ','Benign cyst of prepuce','Y','0000-00-00 00:00:00'),(125672,10,'N47.2 ','Paraphimosis','Y','0000-00-00 00:00:00'),(125673,10,'N47.3 ','Deficient foreskin','Y','0000-00-00 00:00:00'),(125670,10,'N47.0 ','Adherent prepuce, newborn','Y','0000-00-00 00:00:00'),(125671,10,'N47.1 ','Phimosis','Y','0000-00-00 00:00:00'),(125669,10,'N46.9 ','Male infertility, unspecified','Y','0000-00-00 00:00:00'),(125668,10,'N46.8 ','Other male infertility','Y','0000-00-00 00:00:00'),(125667,10,'N46.129 ','Oligospermia due to other extratesticular causes','Y','0000-00-00 00:00:00'),(125666,10,'N46.125 ','Oligospermia due to systemic disease','Y','0000-00-00 00:00:00'),(125665,10,'N46.124 ','Oligospermia due to radiation','Y','0000-00-00 00:00:00'),(125664,10,'N46.123 ','Oligospermia due to obstruction of efferent ducts','Y','0000-00-00 00:00:00'),(125663,10,'N46.122 ','Oligospermia due to infection','Y','0000-00-00 00:00:00'),(125661,10,'N46.11 ','Organic oligospermia','Y','0000-00-00 00:00:00'),(125662,10,'N46.121 ','Oligospermia due to drug therapy','Y','0000-00-00 00:00:00'),(125660,10,'N46.029 ','Azoospermia due to other extratesticular causes','Y','0000-00-00 00:00:00'),(125659,10,'N46.025 ','Azoospermia due to systemic disease','Y','0000-00-00 00:00:00'),(125658,10,'N46.024 ','Azoospermia due to radiation','Y','0000-00-00 00:00:00'),(125657,10,'N46.023 ','Azoospermia due to obstruction of efferent ducts','Y','0000-00-00 00:00:00'),(125656,10,'N46.022 ','Azoospermia due to infection','Y','0000-00-00 00:00:00'),(125655,10,'N46.021 ','Azoospermia due to drug therapy','Y','0000-00-00 00:00:00'),(125654,10,'N46.01 ','Organic azoospermia','Y','0000-00-00 00:00:00'),(125652,10,'N45.3 ','Epididymo-orchitis','Y','0000-00-00 00:00:00'),(125653,10,'N45.4 ','Abscess of epididymis or testis','Y','0000-00-00 00:00:00'),(125650,10,'N45.1 ','Epididymitis','Y','0000-00-00 00:00:00'),(125651,10,'N45.2 ','Orchitis','Y','0000-00-00 00:00:00'),(125649,10,'N44.8 ','Other noninflammatory disorders of the testis','Y','0000-00-00 00:00:00'),(125648,10,'N44.2 ','Benign cyst of testis','Y','0000-00-00 00:00:00'),(125647,10,'N44.1 ','Cyst of tunica albuginea testis','Y','0000-00-00 00:00:00'),(125646,10,'N44.04 ','Torsion of appendix epididymis','Y','0000-00-00 00:00:00'),(125645,10,'N44.03 ','Torsion of appendix testis','Y','0000-00-00 00:00:00'),(125644,10,'N44.02 ','Intravaginal torsion of spermatic cord','Y','0000-00-00 00:00:00'),(125643,10,'N44.01 ','Extravaginal torsion of spermatic cord','Y','0000-00-00 00:00:00'),(125642,10,'N44.00 ','Torsion of testis, unspecified','Y','0000-00-00 00:00:00'),(125641,10,'N43.42 ','Spermatocele of epididymis, multiple','Y','0000-00-00 00:00:00'),(125640,10,'N43.41 ','Spermatocele of epididymis, single','Y','0000-00-00 00:00:00'),(125639,10,'N43.40 ','Spermatocele of epididymis, unspecified','Y','0000-00-00 00:00:00'),(125638,10,'N43.3 ','Hydrocele, unspecified','Y','0000-00-00 00:00:00'),(125637,10,'N43.2 ','Other hydrocele','Y','0000-00-00 00:00:00'),(125636,10,'N43.1 ','Infected hydrocele','Y','0000-00-00 00:00:00'),(125635,10,'N43.0 ','Encysted hydrocele','Y','0000-00-00 00:00:00'),(125634,10,'N42.9 ','Disorder of prostate, unspecified','Y','0000-00-00 00:00:00'),(125632,10,'N42.83 ','Cyst of prostate','Y','0000-00-00 00:00:00'),(125633,10,'N42.89 ','Other specified disorders of prostate','Y','0000-00-00 00:00:00'),(125631,10,'N42.82 ','Prostatosis syndrome','Y','0000-00-00 00:00:00'),(125630,10,'N42.81 ','Prostatodynia syndrome','Y','0000-00-00 00:00:00'),(125629,10,'N42.39 ','Other dysplasia of prostate','Y','0000-00-00 00:00:00'),(125628,10,'N42.32 ','Atypical small acinar proliferation of prostate','Y','0000-00-00 00:00:00'),(125627,10,'N42.31 ','Prostatic intraepithelial neoplasia','Y','0000-00-00 00:00:00'),(125626,10,'N42.30 ','Unspecified dysplasia of prostate','Y','0000-00-00 00:00:00'),(125624,10,'N42.0 ','Calculus of prostate','Y','0000-00-00 00:00:00'),(125625,10,'N42.1 ','Congestion and hemorrhage of prostate','Y','0000-00-00 00:00:00'),(125623,10,'N41.9 ','Inflammatory disease of prostate, unspecified','Y','0000-00-00 00:00:00'),(125622,10,'N41.8 ','Other inflammatory diseases of prostate','Y','0000-00-00 00:00:00'),(125621,10,'N41.4 ','Granulomatous prostatitis','Y','0000-00-00 00:00:00'),(125620,10,'N41.3 ','Prostatocystitis','Y','0000-00-00 00:00:00'),(125619,10,'N41.2 ','Abscess of prostate','Y','0000-00-00 00:00:00'),(125617,10,'N41.0 ','Acute prostatitis','Y','0000-00-00 00:00:00'),(125618,10,'N41.1 ','Chronic prostatitis','Y','0000-00-00 00:00:00'),(125616,10,'N40.3 ','Nodular prostate with lower urinary tract symptoms','Y','0000-00-00 00:00:00'),(125615,10,'N40.2 ','Nodular prostate without lower urinary tract symptoms','Y','0000-00-00 00:00:00'),(125614,10,'N40.1 ','Benign prostatic hyperplasia with lower urinary tract symptoms','Y','0000-00-00 00:00:00'),(125613,10,'N40.0 ','Benign prostatic hyperplasia without lower urinary tract symptoms','Y','0000-00-00 00:00:00'),(125612,10,'N39.9 ','Disorder of urinary system, unspecified','Y','0000-00-00 00:00:00'),(125611,10,'N39.8 ','Other specified disorders of urinary system','Y','0000-00-00 00:00:00'),(125610,10,'N39.498 ','Other specified urinary incontinence','Y','0000-00-00 00:00:00'),(125609,10,'N39.492 ','Postural (urinary) incontinence','Y','0000-00-00 00:00:00'),(125607,10,'N39.490 ','Overflow incontinence','Y','0000-00-00 00:00:00'),(125608,10,'N39.491 ','Coital incontinence','Y','0000-00-00 00:00:00'),(125606,10,'N39.46 ','Mixed incontinence','Y','0000-00-00 00:00:00'),(125604,10,'N39.44 ','Nocturnal enuresis','Y','0000-00-00 00:00:00'),(125605,10,'N39.45 ','Continuous leakage','Y','0000-00-00 00:00:00'),(125603,10,'N39.43 ','Post-void dribbling','Y','0000-00-00 00:00:00'),(125601,10,'N39.41 ','Urge incontinence','Y','0000-00-00 00:00:00'),(125602,10,'N39.42 ','Incontinence without sensory awareness','Y','0000-00-00 00:00:00'),(125600,10,'N39.3 ','Stress incontinence (female) (male)','Y','0000-00-00 00:00:00'),(125599,10,'N39.0 ','Urinary tract infection, site not specified','Y','0000-00-00 00:00:00'),(125598,10,'N37','Urethral disorders in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(125597,10,'N36.9 ','Urethral disorder, unspecified','Y','0000-00-00 00:00:00'),(125596,10,'N36.8 ','Other specified disorders of urethra','Y','0000-00-00 00:00:00'),(125594,10,'N36.44 ','Muscular disorders of urethra','Y','0000-00-00 00:00:00'),(125595,10,'N36.5 ','Urethral false passage','Y','0000-00-00 00:00:00'),(125593,10,'N36.43 ','Combined hypermobility of urethra and intrinsic sphincter deficiency','Y','0000-00-00 00:00:00'),(125591,10,'N36.41 ','Hypermobility of urethra','Y','0000-00-00 00:00:00'),(125592,10,'N36.42 ','Intrinsic sphincter deficiency (ISD)','Y','0000-00-00 00:00:00'),(125590,10,'N36.2 ','Urethral caruncle','Y','0000-00-00 00:00:00'),(125588,10,'N36.0 ','Urethral fistula','Y','0000-00-00 00:00:00'),(125589,10,'N36.1 ','Urethral diverticulum','Y','0000-00-00 00:00:00'),(125587,10,'N35.92 ','Unspecified urethral stricture, female','Y','0000-00-00 00:00:00'),(125586,10,'N35.919 ','Unspecified urethral stricture, male, unspecified site','Y','0000-00-00 00:00:00'),(125585,10,'N35.916 ','Unspecified urethral stricture, male, overlapping sites','Y','0000-00-00 00:00:00'),(125584,10,'N35.914 ','Unspecified anterior urethral stricture, male','Y','0000-00-00 00:00:00'),(125583,10,'N35.913 ','Unspecified membranous urethral stricture, male','Y','0000-00-00 00:00:00'),(125582,10,'N35.912 ','Unspecified bulbous urethral stricture, male','Y','0000-00-00 00:00:00'),(125581,10,'N35.911 ','Unspecified urethral stricture, male, meatal','Y','0000-00-00 00:00:00'),(125580,10,'N35.82 ','Other urethral stricture, female','Y','0000-00-00 00:00:00'),(125579,10,'N35.819 ','Other urethral stricture, male, unspecified site','Y','0000-00-00 00:00:00'),(125578,10,'N35.816 ','Other urethral stricture, male, overlapping sites','Y','0000-00-00 00:00:00'),(125577,10,'N35.814 ','Other anterior urethral stricture, male','Y','0000-00-00 00:00:00'),(125576,10,'N35.813 ','Other membranous urethral stricture, male','Y','0000-00-00 00:00:00'),(125574,10,'N35.811 ','Other urethral stricture, male, meatal','Y','0000-00-00 00:00:00'),(125575,10,'N35.812 ','Other bulbous urethral stricture, male','Y','0000-00-00 00:00:00'),(125573,10,'N35.12 ','Postinfective urethral stricture, not elsewhere classified, female','Y','0000-00-00 00:00:00'),(125572,10,'N35.119 ','Postinfective urethral stricture, not elsewhere classified, male, unspecified','Y','0000-00-00 00:00:00'),(125571,10,'N35.116 ','Postinfective urethral stricture, not elsewhere classified, male, overlapping sites','Y','0000-00-00 00:00:00'),(125570,10,'N35.114 ','Postinfective anterior urethral stricture, not elsewhere classified, male','Y','0000-00-00 00:00:00'),(125569,10,'N35.113 ','Postinfective membranous urethral stricture, not elsewhere classified, male','Y','0000-00-00 00:00:00'),(125568,10,'N35.112 ','Postinfective bulbous urethral stricture, not elsewhere classified, male','Y','0000-00-00 00:00:00'),(125567,10,'N35.111 ','Postinfective urethral stricture, not elsewhere classified, male, meatal','Y','0000-00-00 00:00:00'),(125566,10,'N35.028 ','Other post-traumatic urethral stricture, female','Y','0000-00-00 00:00:00'),(125565,10,'N35.021 ','Urethral stricture due to childbirth','Y','0000-00-00 00:00:00'),(125564,10,'N35.016 ','Post-traumatic urethral stricture, male, overlapping sites','Y','0000-00-00 00:00:00'),(125563,10,'N35.014 ','Post-traumatic urethral stricture, male, unspecified','Y','0000-00-00 00:00:00'),(125562,10,'N35.013 ','Post-traumatic anterior urethral stricture','Y','0000-00-00 00:00:00'),(125561,10,'N35.012 ','Post-traumatic membranous urethral stricture','Y','0000-00-00 00:00:00'),(125560,10,'N35.011 ','Post-traumatic bulbous urethral stricture','Y','0000-00-00 00:00:00'),(125559,10,'N35.010 ','Post-traumatic urethral stricture, male, meatal','Y','0000-00-00 00:00:00'),(125557,10,'N34.2 ','Other urethritis','Y','0000-00-00 00:00:00'),(125558,10,'N34.3 ','Urethral syndrome, unspecified','Y','0000-00-00 00:00:00'),(125556,10,'N34.1 ','Nonspecific urethritis','Y','0000-00-00 00:00:00'),(125555,10,'N34.0 ','Urethral abscess','Y','0000-00-00 00:00:00'),(125554,10,'N33','Bladder disorders in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(125553,10,'N32.9 ','Bladder disorder, unspecified','Y','0000-00-00 00:00:00'),(125552,10,'N32.89 ','Other specified disorders of bladder','Y','0000-00-00 00:00:00'),(125550,10,'N32.3 ','Diverticulum of bladder','Y','0000-00-00 00:00:00'),(125551,10,'N32.81 ','Overactive bladder','Y','0000-00-00 00:00:00'),(125549,10,'N32.2 ','Vesical fistula, not elsewhere classified','Y','0000-00-00 00:00:00'),(125548,10,'N32.1 ','Vesicointestinal fistula','Y','0000-00-00 00:00:00'),(125547,10,'N32.0 ','Bladder-neck obstruction','Y','0000-00-00 00:00:00'),(125546,10,'N31.9 ','Neuromuscular dysfunction of bladder, unspecified','Y','0000-00-00 00:00:00'),(125545,10,'N31.8 ','Other neuromuscular dysfunction of bladder','Y','0000-00-00 00:00:00'),(125544,10,'N31.2 ','Flaccid neuropathic bladder, not elsewhere classified','Y','0000-00-00 00:00:00'),(125543,10,'N31.1 ','Reflex neuropathic bladder, not elsewhere classified','Y','0000-00-00 00:00:00'),(125542,10,'N31.0 ','Uninhibited neuropathic bladder, not elsewhere classified','Y','0000-00-00 00:00:00'),(125541,10,'N30.91 ','Cystitis, unspecified with hematuria','Y','0000-00-00 00:00:00'),(125540,10,'N30.90 ','Cystitis, unspecified without hematuria','Y','0000-00-00 00:00:00'),(125539,10,'N30.81 ','Other cystitis with hematuria','Y','0000-00-00 00:00:00'),(125538,10,'N30.80 ','Other cystitis without hematuria','Y','0000-00-00 00:00:00'),(125537,10,'N30.41 ','Irradiation cystitis with hematuria','Y','0000-00-00 00:00:00'),(125536,10,'N30.40 ','Irradiation cystitis without hematuria','Y','0000-00-00 00:00:00'),(125535,10,'N30.31 ','Trigonitis with hematuria','Y','0000-00-00 00:00:00'),(125534,10,'N30.30 ','Trigonitis without hematuria','Y','0000-00-00 00:00:00'),(125533,10,'N30.21 ','Other chronic cystitis with hematuria','Y','0000-00-00 00:00:00'),(125532,10,'N30.20 ','Other chronic cystitis without hematuria','Y','0000-00-00 00:00:00'),(125531,10,'N30.11 ','Interstitial cystitis (chronic) with hematuria','Y','0000-00-00 00:00:00'),(125530,10,'N30.10 ','Interstitial cystitis (chronic) without hematuria','Y','0000-00-00 00:00:00'),(125529,10,'N30.01 ','Acute cystitis with hematuria','Y','0000-00-00 00:00:00'),(125528,10,'N30.00 ','Acute cystitis without hematuria','Y','0000-00-00 00:00:00'),(125527,10,'N29','Other disorders of kidney and ureter in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(125526,10,'N28.9 ','Disorder of kidney and ureter, unspecified','Y','0000-00-00 00:00:00'),(125525,10,'N28.89 ','Other specified disorders of kidney and ureter','Y','0000-00-00 00:00:00'),(125524,10,'N28.86 ','Ureteritis cystica','Y','0000-00-00 00:00:00'),(125522,10,'N28.84 ','Pyelitis cystica','Y','0000-00-00 00:00:00'),(125523,10,'N28.85 ','Pyeloureteritis cystica','Y','0000-00-00 00:00:00'),(125521,10,'N28.83 ','Nephroptosis','Y','0000-00-00 00:00:00'),(125519,10,'N28.81 ','Hypertrophy of kidney','Y','0000-00-00 00:00:00'),(125520,10,'N28.82 ','Megaloureter','Y','0000-00-00 00:00:00'),(125518,10,'N28.1 ','Cyst of kidney, acquired','Y','0000-00-00 00:00:00'),(125516,10,'N27.9 ','Small kidney, unspecified','Y','0000-00-00 00:00:00'),(125517,10,'N28.0 ','Ischemia and infarction of kidney','Y','0000-00-00 00:00:00'),(125515,10,'N27.1 ','Small kidney, bilateral','Y','0000-00-00 00:00:00'),(125513,10,'N26.9 ','Renal sclerosis, unspecified','Y','0000-00-00 00:00:00'),(125514,10,'N27.0 ','Small kidney, unilateral','Y','0000-00-00 00:00:00'),(125512,10,'N26.2 ','Page kidney','Y','0000-00-00 00:00:00'),(125511,10,'N26.1 ','Atrophy of kidney (terminal)','Y','0000-00-00 00:00:00'),(125510,10,'N25.9 ','Disorder resulting from impaired renal tubular function, unspecified','Y','0000-00-00 00:00:00'),(125509,10,'N25.89 ','Other disorders resulting from impaired renal tubular function','Y','0000-00-00 00:00:00'),(125507,10,'N25.1 ','Nephrogenic diabetes insipidus','Y','0000-00-00 00:00:00'),(125508,10,'N25.81 ','Secondary hyperparathyroidism of renal origin','Y','0000-00-00 00:00:00'),(125506,10,'N25.0 ','Renal osteodystrophy','Y','0000-00-00 00:00:00'),(125505,10,'N23','Unspecified renal colic','Y','0000-00-00 00:00:00'),(125503,10,'N21.9 ','Calculus of lower urinary tract, unspecified','Y','0000-00-00 00:00:00'),(125504,10,'N22','Calculus of urinary tract in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(125501,10,'N21.1 ','Calculus in urethra','Y','0000-00-00 00:00:00'),(125502,10,'N21.8 ','Other lower urinary tract calculus','Y','0000-00-00 00:00:00'),(125500,10,'N21.0 ','Calculus in bladder','Y','0000-00-00 00:00:00'),(125498,10,'N20.2 ','Calculus of kidney with calculus of ureter','Y','0000-00-00 00:00:00'),(125499,10,'N20.9 ','Urinary calculus, unspecified','Y','0000-00-00 00:00:00'),(125497,10,'N20.1 ','Calculus of ureter','Y','0000-00-00 00:00:00'),(125495,10,'N19','Unspecified kidney failure','Y','0000-00-00 00:00:00'),(125496,10,'N20.0 ','Calculus of kidney','Y','0000-00-00 00:00:00'),(125494,10,'N18.9 ','Chronic kidney disease, unspecified','Y','0000-00-00 00:00:00'),(125492,10,'N18.5 ','Chronic kidney disease, stage 5','Y','0000-00-00 00:00:00'),(125493,10,'N18.6 ','End stage renal disease','Y','0000-00-00 00:00:00'),(125491,10,'N18.4 ','Chronic kidney disease, stage 4 (severe)','Y','0000-00-00 00:00:00'),(125490,10,'N18.32 ','Chronic kidney disease, stage 3b','Y','0000-00-00 00:00:00'),(125489,10,'N18.31 ','Chronic kidney disease, stage 3a','Y','0000-00-00 00:00:00'),(125488,10,'N18.30 ','Chronic kidney disease, stage 3 unspecified','Y','0000-00-00 00:00:00'),(125486,10,'N18.1 ','Chronic kidney disease, stage 1','Y','0000-00-00 00:00:00'),(125487,10,'N18.2 ','Chronic kidney disease, stage 2 (mild)','Y','0000-00-00 00:00:00'),(125485,10,'N17.9 ','Acute kidney failure, unspecified','Y','0000-00-00 00:00:00'),(125484,10,'N17.8 ','Other acute kidney failure','Y','0000-00-00 00:00:00'),(125483,10,'N17.2 ','Acute kidney failure with medullary necrosis','Y','0000-00-00 00:00:00'),(125481,10,'N17.0 ','Acute kidney failure with tubular necrosis','Y','0000-00-00 00:00:00'),(125482,10,'N17.1 ','Acute kidney failure with acute cortical necrosis','Y','0000-00-00 00:00:00'),(125480,10,'N16','Renal tubulo-interstitial disorders in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(125479,10,'N15.9 ','Renal tubulo-interstitial disease, unspecified','Y','0000-00-00 00:00:00'),(125478,10,'N15.8 ','Other specified renal tubulo-interstitial diseases','Y','0000-00-00 00:00:00'),(125476,10,'N15.0 ','Balkan nephropathy','Y','0000-00-00 00:00:00'),(125477,10,'N15.1 ','Renal and perinephric abscess','Y','0000-00-00 00:00:00'),(125475,10,'N14.4 ','Toxic nephropathy, not elsewhere classified','Y','0000-00-00 00:00:00'),(125474,10,'N14.3 ','Nephropathy induced by heavy metals','Y','0000-00-00 00:00:00'),(125473,10,'N14.2 ','Nephropathy induced by unspecified drug, medicament or biological substance','Y','0000-00-00 00:00:00'),(125472,10,'N14.19 ','Nephropathy induced by other drugs, medicaments and biological substances','Y','0000-00-00 00:00:00'),(125471,10,'N14.11 ','Contrast-induced nephropathy','Y','0000-00-00 00:00:00'),(125470,10,'N14.0 ','Analgesic nephropathy','Y','0000-00-00 00:00:00'),(125469,10,'N13.9 ','Obstructive and reflux uropathy, unspecified','Y','0000-00-00 00:00:00'),(125468,10,'N13.8 ','Other obstructive and reflux uropathy','Y','0000-00-00 00:00:00'),(125467,10,'N13.739 ','Vesicoureteral-reflux with reflux nephropathy with hydroureter, unspecified','Y','0000-00-00 00:00:00'),(125466,10,'N13.732 ','Vesicoureteral-reflux with reflux nephropathy with hydroureter, bilateral','Y','0000-00-00 00:00:00'),(125465,10,'N13.731 ','Vesicoureteral-reflux with reflux nephropathy with hydroureter, unilateral','Y','0000-00-00 00:00:00'),(125464,10,'N13.729 ','Vesicoureteral-reflux with reflux nephropathy without hydroureter, unspecified','Y','0000-00-00 00:00:00'),(125463,10,'N13.722 ','Vesicoureteral-reflux with reflux nephropathy without hydroureter, bilateral','Y','0000-00-00 00:00:00'),(125462,10,'N13.721 ','Vesicoureteral-reflux with reflux nephropathy without hydroureter, unilateral','Y','0000-00-00 00:00:00'),(125461,10,'N13.71 ','Vesicoureteral-reflux without reflux nephropathy','Y','0000-00-00 00:00:00'),(125459,10,'N13.6 ','Pyonephrosis','Y','0000-00-00 00:00:00'),(125460,10,'N13.70 ','Vesicoureteral-reflux, unspecified','Y','0000-00-00 00:00:00'),(125458,10,'N13.5 ','Crossing vessel and stricture of ureter without hydronephrosis','Y','0000-00-00 00:00:00'),(125457,10,'N13.4 ','Hydroureter','Y','0000-00-00 00:00:00'),(125455,10,'N13.30 ','Unspecified hydronephrosis','Y','0000-00-00 00:00:00'),(125456,10,'N13.39 ','Other hydronephrosis','Y','0000-00-00 00:00:00'),(125454,10,'N13.2 ','Hydronephrosis with renal and ureteral calculous obstruction','Y','0000-00-00 00:00:00'),(125453,10,'N13.1 ','Hydronephrosis with ureteral stricture, not elsewhere classified','Y','0000-00-00 00:00:00'),(125452,10,'N13.0 ','Hydronephrosis with ureteropelvic junction obstruction','Y','0000-00-00 00:00:00'),(125451,10,'N12','Tubulo-interstitial nephritis, not specified as acute or chronic','Y','0000-00-00 00:00:00'),(125450,10,'N11.9 ','Chronic tubulo-interstitial nephritis, unspecified','Y','0000-00-00 00:00:00'),(125448,10,'N11.1 ','Chronic obstructive pyelonephritis','Y','0000-00-00 00:00:00'),(125449,10,'N11.8 ','Other chronic tubulo-interstitial nephritis','Y','0000-00-00 00:00:00'),(125447,10,'N11.0 ','Nonobstructive reflux-associated chronic pyelonephritis','Y','0000-00-00 00:00:00'),(125446,10,'N10','Acute pyelonephritis','Y','0000-00-00 00:00:00'),(125445,10,'N08','Glomerular disorders in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(125444,10,'N07.A ','Hereditary nephropathy, not elsewhere classified with C3 glomerulonephritis','Y','0000-00-00 00:00:00'),(125443,10,'N07.9 ','Hereditary nephropathy, not elsewhere classified with unspecified morphologic lesions','Y','0000-00-00 00:00:00'),(125442,10,'N07.8 ','Hereditary nephropathy, not elsewhere classified with other morphologic lesions','Y','0000-00-00 00:00:00'),(125441,10,'N07.7 ','Hereditary nephropathy, not elsewhere classified with diffuse crescentic glomerulonephritis','Y','0000-00-00 00:00:00'),(125440,10,'N07.6 ','Hereditary nephropathy, not elsewhere classified with dense deposit disease','Y','0000-00-00 00:00:00'),(125439,10,'N07.5 ','Hereditary nephropathy, not elsewhere classified with diffuse mesangiocapillary glomerulonephritis','Y','0000-00-00 00:00:00'),(125438,10,'N07.4 ','Hereditary nephropathy, not elsewhere classified with diffuse endocapillary proliferative glomerulonephritis','Y','0000-00-00 00:00:00'),(125437,10,'N07.3 ','Hereditary nephropathy, not elsewhere classified with diffuse mesangial proliferative glomerulonephritis','Y','0000-00-00 00:00:00'),(125436,10,'N07.2 ','Hereditary nephropathy, not elsewhere classified with diffuse membranous glomerulonephritis','Y','0000-00-00 00:00:00'),(125435,10,'N07.1 ','Hereditary nephropathy, not elsewhere classified with focal and segmental glomerular lesions','Y','0000-00-00 00:00:00'),(125434,10,'N07.0 ','Hereditary nephropathy, not elsewhere classified with minor glomerular abnormality','Y','0000-00-00 00:00:00'),(125433,10,'N06.A ','Isolated proteinuria with C3 glomerulonephritis','Y','0000-00-00 00:00:00'),(125432,10,'N06.9 ','Isolated proteinuria with unspecified morphologic lesion','Y','0000-00-00 00:00:00'),(125431,10,'N06.8 ','Isolated proteinuria with other morphologic lesion','Y','0000-00-00 00:00:00'),(125430,10,'N06.7 ','Isolated proteinuria with diffuse crescentic glomerulonephritis','Y','0000-00-00 00:00:00'),(125429,10,'N06.6 ','Isolated proteinuria with dense deposit disease','Y','0000-00-00 00:00:00'),(125428,10,'N06.5 ','Isolated proteinuria with diffuse mesangiocapillary glomerulonephritis','Y','0000-00-00 00:00:00'),(125427,10,'N06.4 ','Isolated proteinuria with diffuse endocapillary proliferative glomerulonephritis','Y','0000-00-00 00:00:00'),(125426,10,'N06.3 ','Isolated proteinuria with diffuse mesangial proliferative glomerulonephritis','Y','0000-00-00 00:00:00'),(125425,10,'N06.29 ','Other isolated proteinuria with diffuse membranous glomerulonephritis','Y','0000-00-00 00:00:00'),(125424,10,'N06.22 ','Secondary membranous nephropathy with isolated proteinuria','Y','0000-00-00 00:00:00'),(125423,10,'N06.21 ','Primary membranous nephropathy with isolated proteinuria','Y','0000-00-00 00:00:00'),(125422,10,'N06.20 ','Isolated proteinuria with diffuse membranous glomerulonephritis, unspecified','Y','0000-00-00 00:00:00'),(125421,10,'N06.1 ','Isolated proteinuria with focal and segmental glomerular lesions','Y','0000-00-00 00:00:00'),(125420,10,'N06.0 ','Isolated proteinuria with minor glomerular abnormality','Y','0000-00-00 00:00:00'),(125419,10,'N05.A ','Unspecified nephritic syndrome with C3 glomerulonephritis','Y','0000-00-00 00:00:00'),(125418,10,'N05.9 ','Unspecified nephritic syndrome with unspecified morphologic changes','Y','0000-00-00 00:00:00'),(125417,10,'N05.8 ','Unspecified nephritic syndrome with other morphologic changes','Y','0000-00-00 00:00:00'),(125416,10,'N05.7 ','Unspecified nephritic syndrome with diffuse crescentic glomerulonephritis','Y','0000-00-00 00:00:00'),(125415,10,'N05.6 ','Unspecified nephritic syndrome with dense deposit disease','Y','0000-00-00 00:00:00'),(125414,10,'N05.5 ','Unspecified nephritic syndrome with diffuse mesangiocapillary glomerulonephritis','Y','0000-00-00 00:00:00'),(125413,10,'N05.4 ','Unspecified nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis','Y','0000-00-00 00:00:00'),(125412,10,'N05.3 ','Unspecified nephritic syndrome with diffuse mesangial proliferative glomerulonephritis','Y','0000-00-00 00:00:00'),(125411,10,'N05.2 ','Unspecified nephritic syndrome with diffuse membranous glomerulonephritis','Y','0000-00-00 00:00:00'),(125410,10,'N05.1 ','Unspecified nephritic syndrome with focal and segmental glomerular lesions','Y','0000-00-00 00:00:00'),(125409,10,'N05.0 ','Unspecified nephritic syndrome with minor glomerular abnormality','Y','0000-00-00 00:00:00'),(125408,10,'N04.A ','Nephrotic syndrome with C3 glomerulonephritis','Y','0000-00-00 00:00:00'),(125406,10,'N04.8 ','Nephrotic syndrome with other morphologic changes','Y','0000-00-00 00:00:00'),(125407,10,'N04.9 ','Nephrotic syndrome with unspecified morphologic changes','Y','0000-00-00 00:00:00'),(125405,10,'N04.7 ','Nephrotic syndrome with diffuse crescentic glomerulonephritis','Y','0000-00-00 00:00:00'),(125404,10,'N04.6 ','Nephrotic syndrome with dense deposit disease','Y','0000-00-00 00:00:00'),(125403,10,'N04.5 ','Nephrotic syndrome with diffuse mesangiocapillary glomerulonephritis','Y','0000-00-00 00:00:00'),(125402,10,'N04.4 ','Nephrotic syndrome with diffuse endocapillary proliferative glomerulonephritis','Y','0000-00-00 00:00:00'),(125401,10,'N04.3 ','Nephrotic syndrome with diffuse mesangial proliferative glomerulonephritis','Y','0000-00-00 00:00:00'),(125399,10,'N04.22 ','Secondary membranous nephropathy with nephrotic syndrome','Y','0000-00-00 00:00:00'),(125400,10,'N04.29 ','Other nephrotic syndrome with diffuse membranous glomerulonephritis','Y','0000-00-00 00:00:00'),(125398,10,'N04.21 ','Primary membranous nephropathy with nephrotic syndrome','Y','0000-00-00 00:00:00'),(125397,10,'N04.20 ','Nephrotic syndrome with diffuse membranous glomerulonephritis, unspecified','Y','0000-00-00 00:00:00'),(125396,10,'N04.1 ','Nephrotic syndrome with focal and segmental glomerular lesions','Y','0000-00-00 00:00:00'),(125395,10,'N04.0 ','Nephrotic syndrome with minor glomerular abnormality','Y','0000-00-00 00:00:00'),(125394,10,'N03.A ','Chronic nephritic syndrome with C3 glomerulonephritis','Y','0000-00-00 00:00:00'),(125393,10,'N03.9 ','Chronic nephritic syndrome with unspecified morphologic changes','Y','0000-00-00 00:00:00'),(125392,10,'N03.8 ','Chronic nephritic syndrome with other morphologic changes','Y','0000-00-00 00:00:00'),(125391,10,'N03.7 ','Chronic nephritic syndrome with diffuse crescentic glomerulonephritis','Y','0000-00-00 00:00:00'),(125390,10,'N03.6 ','Chronic nephritic syndrome with dense deposit disease','Y','0000-00-00 00:00:00'),(125389,10,'N03.5 ','Chronic nephritic syndrome with diffuse mesangiocapillary glomerulonephritis','Y','0000-00-00 00:00:00'),(125388,10,'N03.4 ','Chronic nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis','Y','0000-00-00 00:00:00'),(125387,10,'N03.3 ','Chronic nephritic syndrome with diffuse mesangial proliferative glomerulonephritis','Y','0000-00-00 00:00:00'),(125386,10,'N03.2 ','Chronic nephritic syndrome with diffuse membranous glomerulonephritis','Y','0000-00-00 00:00:00'),(125385,10,'N03.1 ','Chronic nephritic syndrome with focal and segmental glomerular lesions','Y','0000-00-00 00:00:00'),(125384,10,'N03.0 ','Chronic nephritic syndrome with minor glomerular abnormality','Y','0000-00-00 00:00:00'),(125383,10,'N02.B9 ','Other recurrent and persistent immunoglobulin A nephropathy','Y','0000-00-00 00:00:00'),(125382,10,'N02.B6 ','Recurrent and persistent immunoglobulin A nephropathy with diffuse mesangiocapillary glomerulonephritis','Y','0000-00-00 00:00:00'),(125381,10,'N02.B5 ','Recurrent and persistent immunoglobulin A nephropathy with diffuse mesangial proliferative glomerulonephritis','Y','0000-00-00 00:00:00'),(125380,10,'N02.B4 ','Recurrent and persistent immunoglobulin A nephropathy with diffuse membranous glomerulonephritis','Y','0000-00-00 00:00:00'),(125379,10,'N02.B3 ','Recurrent and persistent immunoglobulin A nephropathy with diffuse membranoproliferative glomerulonephritis','Y','0000-00-00 00:00:00'),(125378,10,'N02.B2 ','Recurrent and persistent immunoglobulin A nephropathy with focal and segmental glomerular lesion','Y','0000-00-00 00:00:00'),(125377,10,'N02.B1 ','Recurrent and persistent immunoglobulin A nephropathy with glomerular lesion','Y','0000-00-00 00:00:00'),(125376,10,'N02.A ','Recurrent and persistent hematuria with C3 glomerulonephritis','Y','0000-00-00 00:00:00'),(125375,10,'N02.9 ','Recurrent and persistent hematuria with unspecified morphologic changes','Y','0000-00-00 00:00:00'),(125374,10,'N02.8 ','Recurrent and persistent hematuria with other morphologic changes','Y','0000-00-00 00:00:00'),(125373,10,'N02.7 ','Recurrent and persistent hematuria with diffuse crescentic glomerulonephritis','Y','0000-00-00 00:00:00'),(125372,10,'N02.6 ','Recurrent and persistent hematuria with dense deposit disease','Y','0000-00-00 00:00:00'),(125371,10,'N02.5 ','Recurrent and persistent hematuria with diffuse mesangiocapillary glomerulonephritis','Y','0000-00-00 00:00:00'),(125370,10,'N02.4 ','Recurrent and persistent hematuria with diffuse endocapillary proliferative glomerulonephritis','Y','0000-00-00 00:00:00'),(125369,10,'N02.3 ','Recurrent and persistent hematuria with diffuse mesangial proliferative glomerulonephritis','Y','0000-00-00 00:00:00'),(125368,10,'N02.2 ','Recurrent and persistent hematuria with diffuse membranous glomerulonephritis','Y','0000-00-00 00:00:00'),(125367,10,'N02.1 ','Recurrent and persistent hematuria with focal and segmental glomerular lesions','Y','0000-00-00 00:00:00'),(125366,10,'N02.0 ','Recurrent and persistent hematuria with minor glomerular abnormality','Y','0000-00-00 00:00:00'),(125365,10,'N01.A ','Rapidly progressive nephritic syndrome with C3 glomerulonephritis','Y','0000-00-00 00:00:00'),(125364,10,'N01.9 ','Rapidly progressive nephritic syndrome with unspecified morphologic changes','Y','0000-00-00 00:00:00'),(125363,10,'N01.8 ','Rapidly progressive nephritic syndrome with other morphologic changes','Y','0000-00-00 00:00:00'),(125362,10,'N01.7 ','Rapidly progressive nephritic syndrome with diffuse crescentic glomerulonephritis','Y','0000-00-00 00:00:00'),(125361,10,'N01.6 ','Rapidly progressive nephritic syndrome with dense deposit disease','Y','0000-00-00 00:00:00'),(125360,10,'N01.5 ','Rapidly progressive nephritic syndrome with diffuse mesangiocapillary glomerulonephritis','Y','0000-00-00 00:00:00'),(125359,10,'N01.4 ','Rapidly progressive nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis','Y','0000-00-00 00:00:00'),(125358,10,'N01.3 ','Rapidly progressive nephritic syndrome with diffuse mesangial proliferative glomerulonephritis','Y','0000-00-00 00:00:00'),(125357,10,'N01.2 ','Rapidly progressive nephritic syndrome with diffuse membranous glomerulonephritis','Y','0000-00-00 00:00:00'),(125356,10,'N01.1 ','Rapidly progressive nephritic syndrome with focal and segmental glomerular lesions','Y','0000-00-00 00:00:00'),(125354,10,'N00.A ','Acute nephritic syndrome with C3 glomerulonephritis','Y','0000-00-00 00:00:00'),(125355,10,'N01.0 ','Rapidly progressive nephritic syndrome with minor glomerular abnormality','Y','0000-00-00 00:00:00'),(125353,10,'N00.9 ','Acute nephritic syndrome with unspecified morphologic changes','Y','0000-00-00 00:00:00'),(125351,10,'N00.7 ','Acute nephritic syndrome with diffuse crescentic glomerulonephritis','Y','0000-00-00 00:00:00'),(125352,10,'N00.8 ','Acute nephritic syndrome with other morphologic changes','Y','0000-00-00 00:00:00'),(125350,10,'N00.6 ','Acute nephritic syndrome with dense deposit disease','Y','0000-00-00 00:00:00'),(125349,10,'N00.5 ','Acute nephritic syndrome with diffuse mesangiocapillary glomerulonephritis','Y','0000-00-00 00:00:00'),(125348,10,'N00.4 ','Acute nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis','Y','0000-00-00 00:00:00'),(125347,10,'N00.3 ','Acute nephritic syndrome with diffuse mesangial proliferative glomerulonephritis','Y','0000-00-00 00:00:00'),(125345,10,'N00.1 ','Acute nephritic syndrome with focal and segmental glomerular lesions','Y','0000-00-00 00:00:00'),(125346,10,'N00.2 ','Acute nephritic syndrome with diffuse membranous glomerulonephritis','Y','0000-00-00 00:00:00'),(125344,10,'N00.0 ','Acute nephritic syndrome with minor glomerular abnormality','Y','0000-00-00 00:00:00'),(125342,10,'M99.89 ','Other biomechanical lesions of abdomen and other regions','Y','0000-00-00 00:00:00'),(125343,10,'M99.9 ','Biomechanical lesion, unspecified','Y','0000-00-00 00:00:00'),(125341,10,'M99.88 ','Other biomechanical lesions of rib cage','Y','0000-00-00 00:00:00'),(125339,10,'M99.86 ','Other biomechanical lesions of lower extremity','Y','0000-00-00 00:00:00'),(125340,10,'M99.87 ','Other biomechanical lesions of upper extremity','Y','0000-00-00 00:00:00'),(125338,10,'M99.85 ','Other biomechanical lesions of pelvic region','Y','0000-00-00 00:00:00'),(125336,10,'M99.83 ','Other biomechanical lesions of lumbar region','Y','0000-00-00 00:00:00'),(125337,10,'M99.84 ','Other biomechanical lesions of sacral region','Y','0000-00-00 00:00:00'),(125335,10,'M99.82 ','Other biomechanical lesions of thoracic region','Y','0000-00-00 00:00:00'),(125333,10,'M99.80 ','Other biomechanical lesions of head region','Y','0000-00-00 00:00:00'),(125334,10,'M99.81 ','Other biomechanical lesions of cervical region','Y','0000-00-00 00:00:00'),(125331,10,'M99.78 ','Connective tissue and disc stenosis of intervertebral foramina of rib cage','Y','0000-00-00 00:00:00'),(125332,10,'M99.79 ','Connective tissue and disc stenosis of intervertebral foramina of abdomen and other regions','Y','0000-00-00 00:00:00'),(125330,10,'M99.77 ','Connective tissue and disc stenosis of intervertebral foramina of upper extremity','Y','0000-00-00 00:00:00'),(125329,10,'M99.76 ','Connective tissue and disc stenosis of intervertebral foramina of lower extremity','Y','0000-00-00 00:00:00'),(125328,10,'M99.75 ','Connective tissue and disc stenosis of intervertebral foramina of pelvic region','Y','0000-00-00 00:00:00'),(125327,10,'M99.74 ','Connective tissue and disc stenosis of intervertebral foramina of sacral region','Y','0000-00-00 00:00:00'),(125326,10,'M99.73 ','Connective tissue and disc stenosis of intervertebral foramina of lumbar region','Y','0000-00-00 00:00:00'),(125325,10,'M99.72 ','Connective tissue and disc stenosis of intervertebral foramina of thoracic region','Y','0000-00-00 00:00:00'),(125324,10,'M99.71 ','Connective tissue and disc stenosis of intervertebral foramina of cervical region','Y','0000-00-00 00:00:00'),(125323,10,'M99.70 ','Connective tissue and disc stenosis of intervertebral foramina of head region','Y','0000-00-00 00:00:00'),(125322,10,'M99.69 ','Osseous and subluxation stenosis of intervertebral foramina of abdomen and other regions','Y','0000-00-00 00:00:00'),(125321,10,'M99.68 ','Osseous and subluxation stenosis of intervertebral foramina of rib cage','Y','0000-00-00 00:00:00'),(125320,10,'M99.67 ','Osseous and subluxation stenosis of intervertebral foramina of upper extremity','Y','0000-00-00 00:00:00'),(125319,10,'M99.66 ','Osseous and subluxation stenosis of intervertebral foramina of lower extremity','Y','0000-00-00 00:00:00'),(125318,10,'M99.65 ','Osseous and subluxation stenosis of intervertebral foramina of pelvic region','Y','0000-00-00 00:00:00'),(125317,10,'M99.64 ','Osseous and subluxation stenosis of intervertebral foramina of sacral region','Y','0000-00-00 00:00:00'),(125316,10,'M99.63 ','Osseous and subluxation stenosis of intervertebral foramina of lumbar region','Y','0000-00-00 00:00:00'),(125315,10,'M99.62 ','Osseous and subluxation stenosis of intervertebral foramina of thoracic region','Y','0000-00-00 00:00:00'),(125313,10,'M99.60 ','Osseous and subluxation stenosis of intervertebral foramina of head region','Y','0000-00-00 00:00:00'),(125314,10,'M99.61 ','Osseous and subluxation stenosis of intervertebral foramina of cervical region','Y','0000-00-00 00:00:00'),(125312,10,'M99.59 ','Intervertebral disc stenosis of neural canal of abdomen and other regions','Y','0000-00-00 00:00:00'),(125311,10,'M99.58 ','Intervertebral disc stenosis of neural canal of rib cage','Y','0000-00-00 00:00:00'),(125309,10,'M99.56 ','Intervertebral disc stenosis of neural canal of lower extremity','Y','0000-00-00 00:00:00'),(125310,10,'M99.57 ','Intervertebral disc stenosis of neural canal of upper extremity','Y','0000-00-00 00:00:00'),(125308,10,'M99.55 ','Intervertebral disc stenosis of neural canal of pelvic region','Y','0000-00-00 00:00:00'),(125307,10,'M99.54 ','Intervertebral disc stenosis of neural canal of sacral region','Y','0000-00-00 00:00:00'),(125305,10,'M99.52 ','Intervertebral disc stenosis of neural canal of thoracic region','Y','0000-00-00 00:00:00'),(125306,10,'M99.53 ','Intervertebral disc stenosis of neural canal of lumbar region','Y','0000-00-00 00:00:00'),(125304,10,'M99.51 ','Intervertebral disc stenosis of neural canal of cervical region','Y','0000-00-00 00:00:00'),(125303,10,'M99.50 ','Intervertebral disc stenosis of neural canal of head region','Y','0000-00-00 00:00:00'),(125301,10,'M99.48 ','Connective tissue stenosis of neural canal of rib cage','Y','0000-00-00 00:00:00'),(125302,10,'M99.49 ','Connective tissue stenosis of neural canal of abdomen and other regions','Y','0000-00-00 00:00:00'),(125300,10,'M99.47 ','Connective tissue stenosis of neural canal of upper extremity','Y','0000-00-00 00:00:00'),(125299,10,'M99.46 ','Connective tissue stenosis of neural canal of lower extremity','Y','0000-00-00 00:00:00'),(125297,10,'M99.44 ','Connective tissue stenosis of neural canal of sacral region','Y','0000-00-00 00:00:00'),(125298,10,'M99.45 ','Connective tissue stenosis of neural canal of pelvic region','Y','0000-00-00 00:00:00'),(125296,10,'M99.43 ','Connective tissue stenosis of neural canal of lumbar region','Y','0000-00-00 00:00:00'),(125295,10,'M99.42 ','Connective tissue stenosis of neural canal of thoracic region','Y','0000-00-00 00:00:00'),(125294,10,'M99.41 ','Connective tissue stenosis of neural canal of cervical region','Y','0000-00-00 00:00:00'),(125292,10,'M99.39 ','Osseous stenosis of neural canal of abdomen and other regions','Y','0000-00-00 00:00:00'),(125293,10,'M99.40 ','Connective tissue stenosis of neural canal of head region','Y','0000-00-00 00:00:00'),(125291,10,'M99.38 ','Osseous stenosis of neural canal of rib cage','Y','0000-00-00 00:00:00'),(125289,10,'M99.36 ','Osseous stenosis of neural canal of lower extremity','Y','0000-00-00 00:00:00'),(125290,10,'M99.37 ','Osseous stenosis of neural canal of upper extremity','Y','0000-00-00 00:00:00'),(125288,10,'M99.35 ','Osseous stenosis of neural canal of pelvic region','Y','0000-00-00 00:00:00'),(125286,10,'M99.33 ','Osseous stenosis of neural canal of lumbar region','Y','0000-00-00 00:00:00'),(125287,10,'M99.34 ','Osseous stenosis of neural canal of sacral region','Y','0000-00-00 00:00:00'),(125285,10,'M99.32 ','Osseous stenosis of neural canal of thoracic region','Y','0000-00-00 00:00:00'),(125283,10,'M99.30 ','Osseous stenosis of neural canal of head region','Y','0000-00-00 00:00:00'),(125284,10,'M99.31 ','Osseous stenosis of neural canal of cervical region','Y','0000-00-00 00:00:00'),(125282,10,'M99.29 ','Subluxation stenosis of neural canal of abdomen and other regions','Y','0000-00-00 00:00:00'),(125281,10,'M99.28 ','Subluxation stenosis of neural canal of rib cage','Y','0000-00-00 00:00:00'),(125280,10,'M99.27 ','Subluxation stenosis of neural canal of upper extremity','Y','0000-00-00 00:00:00'),(125278,10,'M99.25 ','Subluxation stenosis of neural canal of pelvic region','Y','0000-00-00 00:00:00'),(125279,10,'M99.26 ','Subluxation stenosis of neural canal of lower extremity','Y','0000-00-00 00:00:00'),(125277,10,'M99.24 ','Subluxation stenosis of neural canal of sacral region','Y','0000-00-00 00:00:00'),(125275,10,'M99.22 ','Subluxation stenosis of neural canal of thoracic region','Y','0000-00-00 00:00:00'),(125276,10,'M99.23 ','Subluxation stenosis of neural canal of lumbar region','Y','0000-00-00 00:00:00'),(125274,10,'M99.21 ','Subluxation stenosis of neural canal of cervical region','Y','0000-00-00 00:00:00'),(125272,10,'M99.19 ','Subluxation complex (vertebral) of abdomen and other regions','Y','0000-00-00 00:00:00'),(125273,10,'M99.20 ','Subluxation stenosis of neural canal of head region','Y','0000-00-00 00:00:00'),(125271,10,'M99.18 ','Subluxation complex (vertebral) of rib cage','Y','0000-00-00 00:00:00'),(125269,10,'M99.16 ','Subluxation complex (vertebral) of lower extremity','Y','0000-00-00 00:00:00'),(125270,10,'M99.17 ','Subluxation complex (vertebral) of upper extremity','Y','0000-00-00 00:00:00'),(125268,10,'M99.15 ','Subluxation complex (vertebral) of pelvic region','Y','0000-00-00 00:00:00'),(125266,10,'M99.13 ','Subluxation complex (vertebral) of lumbar region','Y','0000-00-00 00:00:00'),(125267,10,'M99.14 ','Subluxation complex (vertebral) of sacral region','Y','0000-00-00 00:00:00'),(125265,10,'M99.12 ','Subluxation complex (vertebral) of thoracic region','Y','0000-00-00 00:00:00'),(125263,10,'M99.10 ','Subluxation complex (vertebral) of head region','Y','0000-00-00 00:00:00'),(125264,10,'M99.11 ','Subluxation complex (vertebral) of cervical region','Y','0000-00-00 00:00:00'),(125261,10,'M99.08 ','Segmental and somatic dysfunction of rib cage','Y','0000-00-00 00:00:00'),(125262,10,'M99.09 ','Segmental and somatic dysfunction of abdomen and other regions','Y','0000-00-00 00:00:00'),(125260,10,'M99.07 ','Segmental and somatic dysfunction of upper extremity','Y','0000-00-00 00:00:00'),(125259,10,'M99.06 ','Segmental and somatic dysfunction of lower extremity','Y','0000-00-00 00:00:00'),(125257,10,'M99.04 ','Segmental and somatic dysfunction of sacral region','Y','0000-00-00 00:00:00'),(125258,10,'M99.05 ','Segmental and somatic dysfunction of pelvic region','Y','0000-00-00 00:00:00'),(125256,10,'M99.03 ','Segmental and somatic dysfunction of lumbar region','Y','0000-00-00 00:00:00'),(125255,10,'M99.02 ','Segmental and somatic dysfunction of thoracic region','Y','0000-00-00 00:00:00'),(125253,10,'M99.00 ','Segmental and somatic dysfunction of head region','Y','0000-00-00 00:00:00'),(125254,10,'M99.01 ','Segmental and somatic dysfunction of cervical region','Y','0000-00-00 00:00:00'),(125252,10,'M97.9XXS ','Periprosthetic fracture around unspecified internal prosthetic joint, sequela','Y','0000-00-00 00:00:00'),(125251,10,'M97.9XXD ','Periprosthetic fracture around unspecified internal prosthetic joint, subsequent encounter','Y','0000-00-00 00:00:00'),(125250,10,'M97.9XXA ','Periprosthetic fracture around unspecified internal prosthetic joint, initial encounter','Y','0000-00-00 00:00:00'),(125249,10,'M97.8XXS ','Periprosthetic fracture around other internal prosthetic joint, sequela','Y','0000-00-00 00:00:00'),(125248,10,'M97.8XXD ','Periprosthetic fracture around other internal prosthetic joint, subsequent encounter','Y','0000-00-00 00:00:00'),(125247,10,'M97.8XXA ','Periprosthetic fracture around other internal prosthetic joint, initial encounter','Y','0000-00-00 00:00:00'),(125246,10,'M97.42XS ','Periprosthetic fracture around internal prosthetic left elbow joint, sequela','Y','0000-00-00 00:00:00'),(125245,10,'M97.42XD ','Periprosthetic fracture around internal prosthetic left elbow joint, subsequent encounter','Y','0000-00-00 00:00:00'),(125244,10,'M97.42XA ','Periprosthetic fracture around internal prosthetic left elbow joint, initial encounter','Y','0000-00-00 00:00:00'),(125243,10,'M97.41XS ','Periprosthetic fracture around internal prosthetic right elbow joint, sequela','Y','0000-00-00 00:00:00'),(125242,10,'M97.41XD ','Periprosthetic fracture around internal prosthetic right elbow joint, subsequent encounter','Y','0000-00-00 00:00:00'),(125241,10,'M97.41XA ','Periprosthetic fracture around internal prosthetic right elbow joint, initial encounter','Y','0000-00-00 00:00:00'),(125240,10,'M97.32XS ','Periprosthetic fracture around internal prosthetic left shoulder joint, sequela','Y','0000-00-00 00:00:00'),(125239,10,'M97.32XD ','Periprosthetic fracture around internal prosthetic left shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(125238,10,'M97.32XA ','Periprosthetic fracture around internal prosthetic left shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(125237,10,'M97.31XS ','Periprosthetic fracture around internal prosthetic right shoulder joint, sequela','Y','0000-00-00 00:00:00'),(125236,10,'M97.31XD ','Periprosthetic fracture around internal prosthetic right shoulder joint, subsequent encounter','Y','0000-00-00 00:00:00'),(125235,10,'M97.31XA ','Periprosthetic fracture around internal prosthetic right shoulder joint, initial encounter','Y','0000-00-00 00:00:00'),(125234,10,'M97.22XS ','Periprosthetic fracture around internal prosthetic left ankle joint, sequela','Y','0000-00-00 00:00:00'),(125233,10,'M97.22XD ','Periprosthetic fracture around internal prosthetic left ankle joint, subsequent encounter','Y','0000-00-00 00:00:00'),(125232,10,'M97.22XA ','Periprosthetic fracture around internal prosthetic left ankle joint, initial encounter','Y','0000-00-00 00:00:00'),(125231,10,'M97.21XS ','Periprosthetic fracture around internal prosthetic right ankle joint, sequela','Y','0000-00-00 00:00:00'),(125230,10,'M97.21XD ','Periprosthetic fracture around internal prosthetic right ankle joint, subsequent encounter','Y','0000-00-00 00:00:00'),(125229,10,'M97.21XA ','Periprosthetic fracture around internal prosthetic right ankle joint, initial encounter','Y','0000-00-00 00:00:00'),(125228,10,'M97.12XS ','Periprosthetic fracture around internal prosthetic left knee joint, sequela','Y','0000-00-00 00:00:00'),(125227,10,'M97.12XD ','Periprosthetic fracture around internal prosthetic left knee joint, subsequent encounter','Y','0000-00-00 00:00:00'),(125226,10,'M97.12XA ','Periprosthetic fracture around internal prosthetic left knee joint, initial encounter','Y','0000-00-00 00:00:00'),(125225,10,'M97.11XS ','Periprosthetic fracture around internal prosthetic right knee joint, sequela','Y','0000-00-00 00:00:00'),(125224,10,'M97.11XD ','Periprosthetic fracture around internal prosthetic right knee joint, subsequent encounter','Y','0000-00-00 00:00:00'),(125223,10,'M97.11XA ','Periprosthetic fracture around internal prosthetic right knee joint, initial encounter','Y','0000-00-00 00:00:00'),(125222,10,'M97.02XS ','Periprosthetic fracture around internal prosthetic left hip joint, sequela','Y','0000-00-00 00:00:00'),(125221,10,'M97.02XD ','Periprosthetic fracture around internal prosthetic left hip joint, subsequent encounter','Y','0000-00-00 00:00:00'),(125220,10,'M97.02XA ','Periprosthetic fracture around internal prosthetic left hip joint, initial encounter','Y','0000-00-00 00:00:00'),(125219,10,'M97.01XS ','Periprosthetic fracture around internal prosthetic right hip joint, sequela','Y','0000-00-00 00:00:00'),(125218,10,'M97.01XD ','Periprosthetic fracture around internal prosthetic right hip joint, subsequent encounter','Y','0000-00-00 00:00:00'),(125217,10,'M97.01XA ','Periprosthetic fracture around internal prosthetic right hip joint, initial encounter','Y','0000-00-00 00:00:00'),(125216,10,'M96.A9 ','Other fracture associated with chest compression and cardiopulmonary resuscitation','Y','0000-00-00 00:00:00'),(125215,10,'M96.A4 ','Flail chest associated with chest compression and cardiopulmonary resuscitation','Y','0000-00-00 00:00:00'),(125214,10,'M96.A3 ','Multiple fractures of ribs associated with chest compression and cardiopulmonary resuscitation','Y','0000-00-00 00:00:00'),(125213,10,'M96.A2 ','Fracture of one rib associated with chest compression and cardiopulmonary resuscitation','Y','0000-00-00 00:00:00'),(125212,10,'M96.A1 ','Fracture of sternum associated with chest compression and cardiopulmonary resuscitation','Y','0000-00-00 00:00:00'),(125211,10,'M96.89 ','Other intraoperative and postprocedural complications and disorders of the musculoskeletal system','Y','0000-00-00 00:00:00'),(125210,10,'M96.843 ','Postprocedural seroma of a musculoskeletal structure following other procedure','Y','0000-00-00 00:00:00'),(125209,10,'M96.842 ','Postprocedural seroma of a musculoskeletal structure following a musculoskeletal system procedure','Y','0000-00-00 00:00:00'),(125208,10,'M96.841 ','Postprocedural hematoma of a musculoskeletal structure following other procedure','Y','0000-00-00 00:00:00'),(125207,10,'M96.840 ','Postprocedural hematoma of a musculoskeletal structure following a musculoskeletal system procedure','Y','0000-00-00 00:00:00'),(125206,10,'M96.831 ','Postprocedural hemorrhage of a musculoskeletal structure following other procedure','Y','0000-00-00 00:00:00'),(125205,10,'M96.830 ','Postprocedural hemorrhage of a musculoskeletal structure following a musculoskeletal system procedure','Y','0000-00-00 00:00:00'),(125204,10,'M96.821 ','Accidental puncture and laceration of a musculoskeletal structure during other procedure','Y','0000-00-00 00:00:00'),(125203,10,'M96.820 ','Accidental puncture and laceration of a musculoskeletal structure during a musculoskeletal system procedure','Y','0000-00-00 00:00:00'),(125202,10,'M96.811 ','Intraoperative hemorrhage and hematoma of a musculoskeletal structure complicating other procedure','Y','0000-00-00 00:00:00'),(125201,10,'M96.810 ','Intraoperative hemorrhage and hematoma of a musculoskeletal structure complicating a musculoskeletal system procedure','Y','0000-00-00 00:00:00'),(125200,10,'M96.69 ','Fracture of other bone following insertion of orthopedic implant, joint prosthesis, or bone plate','Y','0000-00-00 00:00:00'),(125199,10,'M96.679 ','Fracture of tibia or fibula following insertion of orthopedic implant, joint prosthesis, or bone plate, unspecified leg','Y','0000-00-00 00:00:00'),(125198,10,'M96.672 ','Fracture of tibia or fibula following insertion of orthopedic implant, joint prosthesis, or bone plate, left leg','Y','0000-00-00 00:00:00'),(125197,10,'M96.671 ','Fracture of tibia or fibula following insertion of orthopedic implant, joint prosthesis, or bone plate, right leg','Y','0000-00-00 00:00:00'),(125196,10,'M96.669 ','Fracture of femur following insertion of orthopedic implant, joint prosthesis, or bone plate, unspecified leg','Y','0000-00-00 00:00:00'),(125195,10,'M96.662 ','Fracture of femur following insertion of orthopedic implant, joint prosthesis, or bone plate, left leg','Y','0000-00-00 00:00:00'),(125194,10,'M96.661 ','Fracture of femur following insertion of orthopedic implant, joint prosthesis, or bone plate, right leg','Y','0000-00-00 00:00:00'),(125193,10,'M96.65 ','Fracture of pelvis following insertion of orthopedic implant, joint prosthesis, or bone plate','Y','0000-00-00 00:00:00'),(125192,10,'M96.639 ','Fracture of radius or ulna following insertion of orthopedic implant, joint prosthesis, or bone plate, unspecified arm','Y','0000-00-00 00:00:00'),(125191,10,'M96.632 ','Fracture of radius or ulna following insertion of orthopedic implant, joint prosthesis, or bone plate, left arm','Y','0000-00-00 00:00:00'),(125190,10,'M96.631 ','Fracture of radius or ulna following insertion of orthopedic implant, joint prosthesis, or bone plate, right arm','Y','0000-00-00 00:00:00'),(125189,10,'M96.629 ','Fracture of humerus following insertion of orthopedic implant, joint prosthesis, or bone plate, unspecified arm','Y','0000-00-00 00:00:00'),(125188,10,'M96.622 ','Fracture of humerus following insertion of orthopedic implant, joint prosthesis, or bone plate, left arm','Y','0000-00-00 00:00:00'),(125186,10,'M96.5 ','Postradiation scoliosis','Y','0000-00-00 00:00:00'),(125187,10,'M96.621 ','Fracture of humerus following insertion of orthopedic implant, joint prosthesis, or bone plate, right arm','Y','0000-00-00 00:00:00'),(125184,10,'M96.3 ','Postlaminectomy kyphosis','Y','0000-00-00 00:00:00'),(125185,10,'M96.4 ','Postsurgical lordosis','Y','0000-00-00 00:00:00'),(125182,10,'M96.1 ','Postlaminectomy syndrome, not elsewhere classified','Y','0000-00-00 00:00:00'),(125183,10,'M96.2 ','Postradiation kyphosis','Y','0000-00-00 00:00:00'),(125181,10,'M96.0 ','Pseudarthrosis after fusion or arthrodesis','Y','0000-00-00 00:00:00'),(125180,10,'M95.9 ','Acquired deformity of musculoskeletal system, unspecified','Y','0000-00-00 00:00:00'),(125178,10,'M95.5 ','Acquired deformity of pelvis','Y','0000-00-00 00:00:00'),(125179,10,'M95.8 ','Other specified acquired deformities of musculoskeletal system','Y','0000-00-00 00:00:00'),(125177,10,'M95.4 ','Acquired deformity of chest and rib','Y','0000-00-00 00:00:00'),(125175,10,'M95.2 ','Other acquired deformity of head','Y','0000-00-00 00:00:00'),(125176,10,'M95.3 ','Acquired deformity of neck','Y','0000-00-00 00:00:00'),(125174,10,'M95.12 ','Cauliflower ear, left ear','Y','0000-00-00 00:00:00'),(125172,10,'M95.10 ','Cauliflower ear, unspecified ear','Y','0000-00-00 00:00:00'),(125173,10,'M95.11 ','Cauliflower ear, right ear','Y','0000-00-00 00:00:00'),(125171,10,'M95.0 ','Acquired deformity of nose','Y','0000-00-00 00:00:00'),(125170,10,'M94.9 ','Disorder of cartilage, unspecified','Y','0000-00-00 00:00:00'),(125168,10,'M94.8X8 ','Other specified disorders of cartilage, other site','Y','0000-00-00 00:00:00'),(125169,10,'M94.8X9 ','Other specified disorders of cartilage, unspecified sites','Y','0000-00-00 00:00:00'),(125167,10,'M94.8X7 ','Other specified disorders of cartilage, ankle and foot','Y','0000-00-00 00:00:00'),(125166,10,'M94.8X6 ','Other specified disorders of cartilage, lower leg','Y','0000-00-00 00:00:00'),(125164,10,'M94.8X4 ','Other specified disorders of cartilage, hand','Y','0000-00-00 00:00:00'),(125165,10,'M94.8X5 ','Other specified disorders of cartilage, thigh','Y','0000-00-00 00:00:00'),(125163,10,'M94.8X3 ','Other specified disorders of cartilage, forearm','Y','0000-00-00 00:00:00'),(125162,10,'M94.8X2 ','Other specified disorders of cartilage, upper arm','Y','0000-00-00 00:00:00'),(125161,10,'M94.8X1 ','Other specified disorders of cartilage, shoulder','Y','0000-00-00 00:00:00'),(125159,10,'M94.359 ','Chondrolysis, unspecified hip','Y','0000-00-00 00:00:00'),(125160,10,'M94.8X0 ','Other specified disorders of cartilage, multiple sites','Y','0000-00-00 00:00:00'),(125157,10,'M94.351 ','Chondrolysis, right hip','Y','0000-00-00 00:00:00'),(125158,10,'M94.352 ','Chondrolysis, left hip','Y','0000-00-00 00:00:00'),(125155,10,'M94.28 ','Chondromalacia, other site','Y','0000-00-00 00:00:00'),(125156,10,'M94.29 ','Chondromalacia, multiple sites','Y','0000-00-00 00:00:00'),(125154,10,'M94.279 ','Chondromalacia, unspecified ankle and joints of foot','Y','0000-00-00 00:00:00'),(125153,10,'M94.272 ','Chondromalacia, left ankle and joints of left foot','Y','0000-00-00 00:00:00'),(125151,10,'M94.269 ','Chondromalacia, unspecified knee','Y','0000-00-00 00:00:00'),(125152,10,'M94.271 ','Chondromalacia, right ankle and joints of right foot','Y','0000-00-00 00:00:00'),(125149,10,'M94.261 ','Chondromalacia, right knee','Y','0000-00-00 00:00:00'),(125150,10,'M94.262 ','Chondromalacia, left knee','Y','0000-00-00 00:00:00'),(125147,10,'M94.252 ','Chondromalacia, left hip','Y','0000-00-00 00:00:00'),(125148,10,'M94.259 ','Chondromalacia, unspecified hip','Y','0000-00-00 00:00:00'),(125146,10,'M94.251 ','Chondromalacia, right hip','Y','0000-00-00 00:00:00'),(125144,10,'M94.242 ','Chondromalacia, joints of left hand','Y','0000-00-00 00:00:00'),(125145,10,'M94.249 ','Chondromalacia, joints of unspecified hand','Y','0000-00-00 00:00:00'),(125142,10,'M94.239 ','Chondromalacia, unspecified wrist','Y','0000-00-00 00:00:00'),(125143,10,'M94.241 ','Chondromalacia, joints of right hand','Y','0000-00-00 00:00:00'),(125140,10,'M94.231 ','Chondromalacia, right wrist','Y','0000-00-00 00:00:00'),(125141,10,'M94.232 ','Chondromalacia, left wrist','Y','0000-00-00 00:00:00'),(125138,10,'M94.222 ','Chondromalacia, left elbow','Y','0000-00-00 00:00:00'),(125139,10,'M94.229 ','Chondromalacia, unspecified elbow','Y','0000-00-00 00:00:00'),(125137,10,'M94.221 ','Chondromalacia, right elbow','Y','0000-00-00 00:00:00'),(125136,10,'M94.219 ','Chondromalacia, unspecified shoulder','Y','0000-00-00 00:00:00'),(125135,10,'M94.212 ','Chondromalacia, left shoulder','Y','0000-00-00 00:00:00'),(125134,10,'M94.211 ','Chondromalacia, right shoulder','Y','0000-00-00 00:00:00'),(125133,10,'M94.20 ','Chondromalacia, unspecified site','Y','0000-00-00 00:00:00'),(125132,10,'M94.1 ','Relapsing polychondritis','Y','0000-00-00 00:00:00'),(125131,10,'M94.0 ','Chondrocostal junction syndrome [Tietze]','Y','0000-00-00 00:00:00'),(125130,10,'M93.99 ','Osteochondropathy, unspecified multiple sites','Y','0000-00-00 00:00:00'),(125129,10,'M93.98 ','Osteochondropathy, unspecified other','Y','0000-00-00 00:00:00'),(125128,10,'M93.979 ','Osteochondropathy, unspecified, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(125127,10,'M93.972 ','Osteochondropathy, unspecified, left ankle and foot','Y','0000-00-00 00:00:00'),(125126,10,'M93.971 ','Osteochondropathy, unspecified, right ankle and foot','Y','0000-00-00 00:00:00'),(125125,10,'M93.969 ','Osteochondropathy, unspecified, unspecified lower leg','Y','0000-00-00 00:00:00'),(125124,10,'M93.962 ','Osteochondropathy, unspecified, left lower leg','Y','0000-00-00 00:00:00'),(125123,10,'M93.961 ','Osteochondropathy, unspecified, right lower leg','Y','0000-00-00 00:00:00'),(125122,10,'M93.959 ','Osteochondropathy, unspecified, unspecified thigh','Y','0000-00-00 00:00:00'),(125121,10,'M93.952 ','Osteochondropathy, unspecified, left thigh','Y','0000-00-00 00:00:00'),(125120,10,'M93.951 ','Osteochondropathy, unspecified, right thigh','Y','0000-00-00 00:00:00'),(125119,10,'M93.949 ','Osteochondropathy, unspecified, unspecified hand','Y','0000-00-00 00:00:00'),(125118,10,'M93.942 ','Osteochondropathy, unspecified, left hand','Y','0000-00-00 00:00:00'),(125117,10,'M93.941 ','Osteochondropathy, unspecified, right hand','Y','0000-00-00 00:00:00'),(125116,10,'M93.939 ','Osteochondropathy, unspecified, unspecified forearm','Y','0000-00-00 00:00:00'),(125115,10,'M93.932 ','Osteochondropathy, unspecified, left forearm','Y','0000-00-00 00:00:00'),(125114,10,'M93.931 ','Osteochondropathy, unspecified, right forearm','Y','0000-00-00 00:00:00'),(125113,10,'M93.929 ','Osteochondropathy, unspecified, unspecified upper arm','Y','0000-00-00 00:00:00'),(125112,10,'M93.922 ','Osteochondropathy, unspecified, left upper arm','Y','0000-00-00 00:00:00'),(125111,10,'M93.921 ','Osteochondropathy, unspecified, right upper arm','Y','0000-00-00 00:00:00'),(125110,10,'M93.919 ','Osteochondropathy, unspecified, unspecified shoulder','Y','0000-00-00 00:00:00'),(125109,10,'M93.912 ','Osteochondropathy, unspecified, left shoulder','Y','0000-00-00 00:00:00'),(125108,10,'M93.911 ','Osteochondropathy, unspecified, right shoulder','Y','0000-00-00 00:00:00'),(125107,10,'M93.90 ','Osteochondropathy, unspecified of unspecified site','Y','0000-00-00 00:00:00'),(125106,10,'M93.89 ','Other specified osteochondropathies multiple sites','Y','0000-00-00 00:00:00'),(125105,10,'M93.88 ','Other specified osteochondropathies other','Y','0000-00-00 00:00:00'),(125104,10,'M93.879 ','Other specified osteochondropathies, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(125103,10,'M93.872 ','Other specified osteochondropathies, left ankle and foot','Y','0000-00-00 00:00:00'),(125102,10,'M93.871 ','Other specified osteochondropathies, right ankle and foot','Y','0000-00-00 00:00:00'),(125101,10,'M93.869 ','Other specified osteochondropathies, unspecified lower leg','Y','0000-00-00 00:00:00'),(125100,10,'M93.862 ','Other specified osteochondropathies, left lower leg','Y','0000-00-00 00:00:00'),(125099,10,'M93.861 ','Other specified osteochondropathies, right lower leg','Y','0000-00-00 00:00:00'),(125098,10,'M93.859 ','Other specified osteochondropathies, unspecified thigh','Y','0000-00-00 00:00:00'),(125097,10,'M93.852 ','Other specified osteochondropathies, left thigh','Y','0000-00-00 00:00:00'),(125096,10,'M93.851 ','Other specified osteochondropathies, right thigh','Y','0000-00-00 00:00:00'),(125095,10,'M93.849 ','Other specified osteochondropathies, unspecified hand','Y','0000-00-00 00:00:00'),(125094,10,'M93.842 ','Other specified osteochondropathies, left hand','Y','0000-00-00 00:00:00'),(125093,10,'M93.841 ','Other specified osteochondropathies, right hand','Y','0000-00-00 00:00:00'),(125092,10,'M93.839 ','Other specified osteochondropathies, unspecified forearm','Y','0000-00-00 00:00:00'),(125091,10,'M93.832 ','Other specified osteochondropathies, left forearm','Y','0000-00-00 00:00:00'),(125090,10,'M93.831 ','Other specified osteochondropathies, right forearm','Y','0000-00-00 00:00:00'),(125089,10,'M93.829 ','Other specified osteochondropathies, unspecified upper arm','Y','0000-00-00 00:00:00'),(125088,10,'M93.822 ','Other specified osteochondropathies, left upper arm','Y','0000-00-00 00:00:00'),(125087,10,'M93.821 ','Other specified osteochondropathies, right upper arm','Y','0000-00-00 00:00:00'),(125086,10,'M93.819 ','Other specified osteochondropathies, unspecified shoulder','Y','0000-00-00 00:00:00'),(125085,10,'M93.812 ','Other specified osteochondropathies, left shoulder','Y','0000-00-00 00:00:00'),(125084,10,'M93.811 ','Other specified osteochondropathies, right shoulder','Y','0000-00-00 00:00:00'),(125083,10,'M93.80 ','Other specified osteochondropathies of unspecified site','Y','0000-00-00 00:00:00'),(125081,10,'M93.28 ','Osteochondritis dissecans other site','Y','0000-00-00 00:00:00'),(125082,10,'M93.29 ','Osteochondritis dissecans multiple sites','Y','0000-00-00 00:00:00'),(125080,10,'M93.279 ','Osteochondritis dissecans, unspecified ankle and joints of foot','Y','0000-00-00 00:00:00'),(125079,10,'M93.272 ','Osteochondritis dissecans, left ankle and joints of left foot','Y','0000-00-00 00:00:00'),(125078,10,'M93.271 ','Osteochondritis dissecans, right ankle and joints of right foot','Y','0000-00-00 00:00:00'),(125077,10,'M93.269 ','Osteochondritis dissecans, unspecified knee','Y','0000-00-00 00:00:00'),(125076,10,'M93.262 ','Osteochondritis dissecans, left knee','Y','0000-00-00 00:00:00'),(125075,10,'M93.261 ','Osteochondritis dissecans, right knee','Y','0000-00-00 00:00:00'),(125074,10,'M93.259 ','Osteochondritis dissecans, unspecified hip','Y','0000-00-00 00:00:00'),(125073,10,'M93.252 ','Osteochondritis dissecans, left hip','Y','0000-00-00 00:00:00'),(125072,10,'M93.251 ','Osteochondritis dissecans, right hip','Y','0000-00-00 00:00:00'),(125071,10,'M93.249 ','Osteochondritis dissecans, joints of unspecified hand','Y','0000-00-00 00:00:00'),(125070,10,'M93.242 ','Osteochondritis dissecans, joints of left hand','Y','0000-00-00 00:00:00'),(125069,10,'M93.241 ','Osteochondritis dissecans, joints of right hand','Y','0000-00-00 00:00:00'),(125068,10,'M93.239 ','Osteochondritis dissecans, unspecified wrist','Y','0000-00-00 00:00:00'),(125067,10,'M93.232 ','Osteochondritis dissecans, left wrist','Y','0000-00-00 00:00:00'),(125066,10,'M93.231 ','Osteochondritis dissecans, right wrist','Y','0000-00-00 00:00:00'),(125065,10,'M93.229 ','Osteochondritis dissecans, unspecified elbow','Y','0000-00-00 00:00:00'),(125064,10,'M93.222 ','Osteochondritis dissecans, left elbow','Y','0000-00-00 00:00:00'),(125063,10,'M93.221 ','Osteochondritis dissecans, right elbow','Y','0000-00-00 00:00:00'),(125062,10,'M93.219 ','Osteochondritis dissecans, unspecified shoulder','Y','0000-00-00 00:00:00'),(125061,10,'M93.212 ','Osteochondritis dissecans, left shoulder','Y','0000-00-00 00:00:00'),(125060,10,'M93.211 ','Osteochondritis dissecans, right shoulder','Y','0000-00-00 00:00:00'),(125059,10,'M93.20 ','Osteochondritis dissecans of unspecified site','Y','0000-00-00 00:00:00'),(125058,10,'M93.1 ','Kienbock\'s disease of adults','Y','0000-00-00 00:00:00'),(125057,10,'M93.074 ','Acute on chronic slipped upper femoral epiphysis, unspecified stability (nontraumatic), bilateral hips','Y','0000-00-00 00:00:00'),(125056,10,'M93.073 ','Acute on chronic slipped upper femoral epiphysis, unspecified stability (nontraumatic), unspecified hip','Y','0000-00-00 00:00:00'),(125055,10,'M93.072 ','Acute on chronic slipped upper femoral epiphysis, unspecified stability (nontraumatic), left hip','Y','0000-00-00 00:00:00'),(125054,10,'M93.071 ','Acute on chronic slipped upper femoral epiphysis, unspecified stability (nontraumatic), right hip','Y','0000-00-00 00:00:00'),(125053,10,'M93.064 ','Acute slipped upper femoral epiphysis, unspecified stability (nontraumatic), bilateral hips','Y','0000-00-00 00:00:00'),(125052,10,'M93.063 ','Acute slipped upper femoral epiphysis, unspecified stability (nontraumatic), unspecified hip','Y','0000-00-00 00:00:00'),(125051,10,'M93.062 ','Acute slipped upper femoral epiphysis, unspecified stability (nontraumatic), left hip','Y','0000-00-00 00:00:00'),(125050,10,'M93.061 ','Acute slipped upper femoral epiphysis, unspecified stability (nontraumatic), right hip','Y','0000-00-00 00:00:00'),(125049,10,'M93.054 ','Acute on chronic slipped upper femoral epiphysis, unstable (nontraumatic), bilateral hips','Y','0000-00-00 00:00:00'),(125048,10,'M93.053 ','Acute on chronic slipped upper femoral epiphysis, unstable (nontraumatic), unspecified hip','Y','0000-00-00 00:00:00'),(125047,10,'M93.052 ','Acute on chronic slipped upper femoral epiphysis, unstable (nontraumatic), left hip','Y','0000-00-00 00:00:00'),(125046,10,'M93.051 ','Acute on chronic slipped upper femoral epiphysis, unstable (nontraumatic), right hip','Y','0000-00-00 00:00:00'),(125045,10,'M93.044 ','Acute slipped upper femoral epiphysis, unstable (nontraumatic), bilateral hips','Y','0000-00-00 00:00:00'),(125044,10,'M93.043 ','Acute slipped upper femoral epiphysis, unstable (nontraumatic), unspecified hip','Y','0000-00-00 00:00:00'),(125043,10,'M93.042 ','Acute slipped upper femoral epiphysis, unstable (nontraumatic), left hip','Y','0000-00-00 00:00:00'),(125042,10,'M93.041 ','Acute slipped upper femoral epiphysis, unstable (nontraumatic), right hip','Y','0000-00-00 00:00:00'),(125041,10,'M93.034 ','Acute on chronic slipped upper femoral epiphysis, stable (nontraumatic), bilateral hips','Y','0000-00-00 00:00:00'),(125040,10,'M93.033 ','Acute on chronic slipped upper femoral epiphysis, stable (nontraumatic), unspecified hip','Y','0000-00-00 00:00:00'),(125039,10,'M93.032 ','Acute on chronic slipped upper femoral epiphysis, stable (nontraumatic), left hip','Y','0000-00-00 00:00:00'),(125038,10,'M93.031 ','Acute on chronic slipped upper femoral epiphysis, stable (nontraumatic), right hip','Y','0000-00-00 00:00:00'),(125037,10,'M93.024 ','Chronic slipped upper femoral epiphysis, stable (nontraumatic), bilateral hips','Y','0000-00-00 00:00:00'),(125036,10,'M93.023 ','Chronic slipped upper femoral epiphysis, stable (nontraumatic), unspecified hip','Y','0000-00-00 00:00:00'),(125035,10,'M93.022 ','Chronic slipped upper femoral epiphysis, stable (nontraumatic), left hip','Y','0000-00-00 00:00:00'),(125034,10,'M93.021 ','Chronic slipped upper femoral epiphysis, stable (nontraumatic), right hip','Y','0000-00-00 00:00:00'),(125033,10,'M93.014 ','Acute slipped upper femoral epiphysis, stable (nontraumatic), bilateral hips','Y','0000-00-00 00:00:00'),(125032,10,'M93.013 ','Acute slipped upper femoral epiphysis, stable (nontraumatic), unspecified hip','Y','0000-00-00 00:00:00'),(125031,10,'M93.012 ','Acute slipped upper femoral epiphysis, stable (nontraumatic), left hip','Y','0000-00-00 00:00:00'),(125030,10,'M93.011 ','Acute slipped upper femoral epiphysis, stable (nontraumatic), right hip','Y','0000-00-00 00:00:00'),(125029,10,'M93.004 ','Unspecified slipped upper femoral epiphysis (nontraumatic), bilateral hips','Y','0000-00-00 00:00:00'),(125028,10,'M93.003 ','Unspecified slipped upper femoral epiphysis (nontraumatic), unspecified hip','Y','0000-00-00 00:00:00'),(125027,10,'M93.002 ','Unspecified slipped upper femoral epiphysis (nontraumatic), left hip','Y','0000-00-00 00:00:00'),(125026,10,'M93.001 ','Unspecified slipped upper femoral epiphysis (nontraumatic), right hip','Y','0000-00-00 00:00:00'),(125025,10,'M92.9 ','Juvenile osteochondrosis, unspecified','Y','0000-00-00 00:00:00'),(125024,10,'M92.8 ','Other specified juvenile osteochondrosis','Y','0000-00-00 00:00:00'),(125023,10,'M92.72 ','Juvenile osteochondrosis of metatarsus, left foot','Y','0000-00-00 00:00:00'),(125022,10,'M92.71 ','Juvenile osteochondrosis of metatarsus, right foot','Y','0000-00-00 00:00:00'),(125021,10,'M92.70 ','Juvenile osteochondrosis of metatarsus, unspecified foot','Y','0000-00-00 00:00:00'),(125020,10,'M92.62 ','Juvenile osteochondrosis of tarsus, left ankle','Y','0000-00-00 00:00:00'),(125019,10,'M92.61 ','Juvenile osteochondrosis of tarsus, right ankle','Y','0000-00-00 00:00:00'),(125018,10,'M92.60 ','Juvenile osteochondrosis of tarsus, unspecified ankle','Y','0000-00-00 00:00:00'),(125017,10,'M92.599 ','Other juvenile osteochondrosis of tibia and fibula, unspecified leg','Y','0000-00-00 00:00:00'),(125016,10,'M92.593 ','Other juvenile osteochondrosis of tibia and fibula, bilateral','Y','0000-00-00 00:00:00'),(125015,10,'M92.592 ','Other juvenile osteochondrosis of tibia and fibula, left leg','Y','0000-00-00 00:00:00'),(125014,10,'M92.591 ','Other juvenile osteochondrosis of tibia and fibula, right leg','Y','0000-00-00 00:00:00'),(125013,10,'M92.529 ','Juvenile osteochondrosis of tibia tubercle, unspecified leg','Y','0000-00-00 00:00:00'),(125012,10,'M92.523 ','Juvenile osteochondrosis of tibia tubercle, bilateral','Y','0000-00-00 00:00:00'),(125011,10,'M92.522 ','Juvenile osteochondrosis of tibia tubercle, left leg','Y','0000-00-00 00:00:00'),(125010,10,'M92.521 ','Juvenile osteochondrosis of tibia tubercle, right leg','Y','0000-00-00 00:00:00'),(125009,10,'M92.519 ','Juvenile osteochondrosis of proximal tibia, unspecified leg','Y','0000-00-00 00:00:00'),(125008,10,'M92.513 ','Juvenile osteochondrosis of proximal tibia, bilateral','Y','0000-00-00 00:00:00'),(125007,10,'M92.512 ','Juvenile osteochondrosis of proximal tibia, left leg','Y','0000-00-00 00:00:00'),(125006,10,'M92.511 ','Juvenile osteochondrosis of proximal tibia, right leg','Y','0000-00-00 00:00:00'),(125005,10,'M92.509 ','Unspecified juvenile osteochondrosis, unspecified leg','Y','0000-00-00 00:00:00'),(125004,10,'M92.503 ','Unspecified juvenile osteochondrosis, bilateral leg','Y','0000-00-00 00:00:00'),(125003,10,'M92.502 ','Unspecified juvenile osteochondrosis, left leg','Y','0000-00-00 00:00:00'),(125002,10,'M92.501 ','Unspecified juvenile osteochondrosis, right leg','Y','0000-00-00 00:00:00'),(125001,10,'M92.42 ','Juvenile osteochondrosis of patella, left knee','Y','0000-00-00 00:00:00'),(125000,10,'M92.41 ','Juvenile osteochondrosis of patella, right knee','Y','0000-00-00 00:00:00'),(124999,10,'M92.40 ','Juvenile osteochondrosis of patella, unspecified knee','Y','0000-00-00 00:00:00'),(124997,10,'M92.31 ','Other juvenile osteochondrosis, right upper limb','Y','0000-00-00 00:00:00'),(124998,10,'M92.32 ','Other juvenile osteochondrosis, left upper limb','Y','0000-00-00 00:00:00'),(124996,10,'M92.30 ','Other juvenile osteochondrosis, unspecified upper limb','Y','0000-00-00 00:00:00'),(124995,10,'M92.299 ','Other juvenile osteochondrosis, unspecified hand','Y','0000-00-00 00:00:00'),(124994,10,'M92.292 ','Other juvenile osteochondrosis, left hand','Y','0000-00-00 00:00:00'),(124993,10,'M92.291 ','Other juvenile osteochondrosis, right hand','Y','0000-00-00 00:00:00'),(124992,10,'M92.229 ','Osteochondrosis (juvenile) of metacarpal heads [Mauclaire], unspecified hand','Y','0000-00-00 00:00:00'),(124991,10,'M92.222 ','Osteochondrosis (juvenile) of metacarpal heads [Mauclaire], left hand','Y','0000-00-00 00:00:00'),(124990,10,'M92.221 ','Osteochondrosis (juvenile) of metacarpal heads [Mauclaire], right hand','Y','0000-00-00 00:00:00'),(124989,10,'M92.219 ','Osteochondrosis (juvenile) of carpal lunate [Kienbock], unspecified hand','Y','0000-00-00 00:00:00'),(124988,10,'M92.212 ','Osteochondrosis (juvenile) of carpal lunate [Kienbock], left hand','Y','0000-00-00 00:00:00'),(124987,10,'M92.211 ','Osteochondrosis (juvenile) of carpal lunate [Kienbock], right hand','Y','0000-00-00 00:00:00'),(124986,10,'M92.209 ','Unspecified juvenile osteochondrosis, unspecified hand','Y','0000-00-00 00:00:00'),(124985,10,'M92.202 ','Unspecified juvenile osteochondrosis, left hand','Y','0000-00-00 00:00:00'),(124984,10,'M92.201 ','Unspecified juvenile osteochondrosis, right hand','Y','0000-00-00 00:00:00'),(124982,10,'M92.11 ','Juvenile osteochondrosis of radius and ulna, right arm','Y','0000-00-00 00:00:00'),(124983,10,'M92.12 ','Juvenile osteochondrosis of radius and ulna, left arm','Y','0000-00-00 00:00:00'),(124981,10,'M92.10 ','Juvenile osteochondrosis of radius and ulna, unspecified arm','Y','0000-00-00 00:00:00'),(124980,10,'M92.02 ','Juvenile osteochondrosis of humerus, left arm','Y','0000-00-00 00:00:00'),(124979,10,'M92.01 ','Juvenile osteochondrosis of humerus, right arm','Y','0000-00-00 00:00:00'),(124978,10,'M92.00 ','Juvenile osteochondrosis of humerus, unspecified arm','Y','0000-00-00 00:00:00'),(124977,10,'M91.92 ','Juvenile osteochondrosis of hip and pelvis, unspecified, left leg','Y','0000-00-00 00:00:00'),(124976,10,'M91.91 ','Juvenile osteochondrosis of hip and pelvis, unspecified, right leg','Y','0000-00-00 00:00:00'),(124975,10,'M91.90 ','Juvenile osteochondrosis of hip and pelvis, unspecified, unspecified leg','Y','0000-00-00 00:00:00'),(124973,10,'M91.81 ','Other juvenile osteochondrosis of hip and pelvis, right leg','Y','0000-00-00 00:00:00'),(124974,10,'M91.82 ','Other juvenile osteochondrosis of hip and pelvis, left leg','Y','0000-00-00 00:00:00'),(124972,10,'M91.80 ','Other juvenile osteochondrosis of hip and pelvis, unspecified leg','Y','0000-00-00 00:00:00'),(124971,10,'M91.42 ','Coxa magna, left hip','Y','0000-00-00 00:00:00'),(124970,10,'M91.41 ','Coxa magna, right hip','Y','0000-00-00 00:00:00'),(124968,10,'M91.32 ','Pseudocoxalgia, left hip','Y','0000-00-00 00:00:00'),(124969,10,'M91.40 ','Coxa magna, unspecified hip','Y','0000-00-00 00:00:00'),(124967,10,'M91.31 ','Pseudocoxalgia, right hip','Y','0000-00-00 00:00:00'),(124965,10,'M91.22 ','Coxa plana, left hip','Y','0000-00-00 00:00:00'),(124966,10,'M91.30 ','Pseudocoxalgia, unspecified hip','Y','0000-00-00 00:00:00'),(124963,10,'M91.20 ','Coxa plana, unspecified hip','Y','0000-00-00 00:00:00'),(124964,10,'M91.21 ','Coxa plana, right hip','Y','0000-00-00 00:00:00'),(124962,10,'M91.12 ','Juvenile osteochondrosis of head of femur [Legg-Calve-Perthes], left leg','Y','0000-00-00 00:00:00'),(124961,10,'M91.11 ','Juvenile osteochondrosis of head of femur [Legg-Calve-Perthes], right leg','Y','0000-00-00 00:00:00'),(124960,10,'M91.10 ','Juvenile osteochondrosis of head of femur [Legg-Calve-Perthes], unspecified leg','Y','0000-00-00 00:00:00'),(124959,10,'M91.0 ','Juvenile osteochondrosis of pelvis','Y','0000-00-00 00:00:00'),(124958,10,'M90.89 ','Osteopathy in diseases classified elsewhere, multiple sites','Y','0000-00-00 00:00:00'),(124956,10,'M90.879 ','Osteopathy in diseases classified elsewhere, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124957,10,'M90.88 ','Osteopathy in diseases classified elsewhere, other site','Y','0000-00-00 00:00:00'),(124955,10,'M90.872 ','Osteopathy in diseases classified elsewhere, left ankle and foot','Y','0000-00-00 00:00:00'),(124954,10,'M90.871 ','Osteopathy in diseases classified elsewhere, right ankle and foot','Y','0000-00-00 00:00:00'),(124953,10,'M90.869 ','Osteopathy in diseases classified elsewhere, unspecified lower leg','Y','0000-00-00 00:00:00'),(124952,10,'M90.862 ','Osteopathy in diseases classified elsewhere, left lower leg','Y','0000-00-00 00:00:00'),(124951,10,'M90.861 ','Osteopathy in diseases classified elsewhere, right lower leg','Y','0000-00-00 00:00:00'),(124950,10,'M90.859 ','Osteopathy in diseases classified elsewhere, unspecified thigh','Y','0000-00-00 00:00:00'),(124948,10,'M90.851 ','Osteopathy in diseases classified elsewhere, right thigh','Y','0000-00-00 00:00:00'),(124949,10,'M90.852 ','Osteopathy in diseases classified elsewhere, left thigh','Y','0000-00-00 00:00:00'),(124947,10,'M90.849 ','Osteopathy in diseases classified elsewhere, unspecified hand','Y','0000-00-00 00:00:00'),(124946,10,'M90.842 ','Osteopathy in diseases classified elsewhere, left hand','Y','0000-00-00 00:00:00'),(124945,10,'M90.841 ','Osteopathy in diseases classified elsewhere, right hand','Y','0000-00-00 00:00:00'),(124944,10,'M90.839 ','Osteopathy in diseases classified elsewhere, unspecified forearm','Y','0000-00-00 00:00:00'),(124943,10,'M90.832 ','Osteopathy in diseases classified elsewhere, left forearm','Y','0000-00-00 00:00:00'),(124942,10,'M90.831 ','Osteopathy in diseases classified elsewhere, right forearm','Y','0000-00-00 00:00:00'),(124940,10,'M90.822 ','Osteopathy in diseases classified elsewhere, left upper arm','Y','0000-00-00 00:00:00'),(124941,10,'M90.829 ','Osteopathy in diseases classified elsewhere, unspecified upper arm','Y','0000-00-00 00:00:00'),(124939,10,'M90.821 ','Osteopathy in diseases classified elsewhere, right upper arm','Y','0000-00-00 00:00:00'),(124938,10,'M90.819 ','Osteopathy in diseases classified elsewhere, unspecified shoulder','Y','0000-00-00 00:00:00'),(124937,10,'M90.812 ','Osteopathy in diseases classified elsewhere, left shoulder','Y','0000-00-00 00:00:00'),(124936,10,'M90.811 ','Osteopathy in diseases classified elsewhere, right shoulder','Y','0000-00-00 00:00:00'),(124935,10,'M90.80 ','Osteopathy in diseases classified elsewhere, unspecified site','Y','0000-00-00 00:00:00'),(124934,10,'M90.69 ','Osteitis deformans in neoplastic diseases, multiple sites','Y','0000-00-00 00:00:00'),(124932,10,'M90.679 ','Osteitis deformans in neoplastic diseases, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124933,10,'M90.68 ','Osteitis deformans in neoplastic diseases, other site','Y','0000-00-00 00:00:00'),(124931,10,'M90.672 ','Osteitis deformans in neoplastic diseases, left ankle and foot','Y','0000-00-00 00:00:00'),(124930,10,'M90.671 ','Osteitis deformans in neoplastic diseases, right ankle and foot','Y','0000-00-00 00:00:00'),(124929,10,'M90.669 ','Osteitis deformans in neoplastic diseases, unspecified lower leg','Y','0000-00-00 00:00:00'),(124928,10,'M90.662 ','Osteitis deformans in neoplastic diseases, left lower leg','Y','0000-00-00 00:00:00'),(124927,10,'M90.661 ','Osteitis deformans in neoplastic diseases, right lower leg','Y','0000-00-00 00:00:00'),(124925,10,'M90.652 ','Osteitis deformans in neoplastic diseases, left thigh','Y','0000-00-00 00:00:00'),(124926,10,'M90.659 ','Osteitis deformans in neoplastic diseases, unspecified thigh','Y','0000-00-00 00:00:00'),(124924,10,'M90.651 ','Osteitis deformans in neoplastic diseases, right thigh','Y','0000-00-00 00:00:00'),(124923,10,'M90.649 ','Osteitis deformans in neoplastic diseases, unspecified hand','Y','0000-00-00 00:00:00'),(124921,10,'M90.641 ','Osteitis deformans in neoplastic diseases, right hand','Y','0000-00-00 00:00:00'),(124922,10,'M90.642 ','Osteitis deformans in neoplastic diseases, left hand','Y','0000-00-00 00:00:00'),(124920,10,'M90.639 ','Osteitis deformans in neoplastic diseases, unspecified forearm','Y','0000-00-00 00:00:00'),(124919,10,'M90.632 ','Osteitis deformans in neoplastic diseases, left forearm','Y','0000-00-00 00:00:00'),(124918,10,'M90.631 ','Osteitis deformans in neoplastic diseases, right forearm','Y','0000-00-00 00:00:00'),(124917,10,'M90.629 ','Osteitis deformans in neoplastic diseases, unspecified upper arm','Y','0000-00-00 00:00:00'),(124915,10,'M90.621 ','Osteitis deformans in neoplastic diseases, right upper arm','Y','0000-00-00 00:00:00'),(124916,10,'M90.622 ','Osteitis deformans in neoplastic diseases, left upper arm','Y','0000-00-00 00:00:00'),(124914,10,'M90.619 ','Osteitis deformans in neoplastic diseases, unspecified shoulder','Y','0000-00-00 00:00:00'),(124913,10,'M90.612 ','Osteitis deformans in neoplastic diseases, left shoulder','Y','0000-00-00 00:00:00'),(124912,10,'M90.611 ','Osteitis deformans in neoplastic diseases, right shoulder','Y','0000-00-00 00:00:00'),(124911,10,'M90.60 ','Osteitis deformans in neoplastic diseases, unspecified site','Y','0000-00-00 00:00:00'),(124910,10,'M90.59 ','Osteonecrosis in diseases classified elsewhere, multiple sites','Y','0000-00-00 00:00:00'),(124909,10,'M90.58 ','Osteonecrosis in diseases classified elsewhere, other site','Y','0000-00-00 00:00:00'),(124907,10,'M90.572 ','Osteonecrosis in diseases classified elsewhere, left ankle and foot','Y','0000-00-00 00:00:00'),(124908,10,'M90.579 ','Osteonecrosis in diseases classified elsewhere, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124906,10,'M90.571 ','Osteonecrosis in diseases classified elsewhere, right ankle and foot','Y','0000-00-00 00:00:00'),(124905,10,'M90.569 ','Osteonecrosis in diseases classified elsewhere, unspecified lower leg','Y','0000-00-00 00:00:00'),(124904,10,'M90.562 ','Osteonecrosis in diseases classified elsewhere, left lower leg','Y','0000-00-00 00:00:00'),(124903,10,'M90.561 ','Osteonecrosis in diseases classified elsewhere, right lower leg','Y','0000-00-00 00:00:00'),(124901,10,'M90.552 ','Osteonecrosis in diseases classified elsewhere, left thigh','Y','0000-00-00 00:00:00'),(124902,10,'M90.559 ','Osteonecrosis in diseases classified elsewhere, unspecified thigh','Y','0000-00-00 00:00:00'),(124900,10,'M90.551 ','Osteonecrosis in diseases classified elsewhere, right thigh','Y','0000-00-00 00:00:00'),(124899,10,'M90.549 ','Osteonecrosis in diseases classified elsewhere, unspecified hand','Y','0000-00-00 00:00:00'),(124898,10,'M90.542 ','Osteonecrosis in diseases classified elsewhere, left hand','Y','0000-00-00 00:00:00'),(124897,10,'M90.541 ','Osteonecrosis in diseases classified elsewhere, right hand','Y','0000-00-00 00:00:00'),(124896,10,'M90.539 ','Osteonecrosis in diseases classified elsewhere, unspecified forearm','Y','0000-00-00 00:00:00'),(124895,10,'M90.532 ','Osteonecrosis in diseases classified elsewhere, left forearm','Y','0000-00-00 00:00:00'),(124894,10,'M90.531 ','Osteonecrosis in diseases classified elsewhere, right forearm','Y','0000-00-00 00:00:00'),(124892,10,'M90.522 ','Osteonecrosis in diseases classified elsewhere, left upper arm','Y','0000-00-00 00:00:00'),(124893,10,'M90.529 ','Osteonecrosis in diseases classified elsewhere, unspecified upper arm','Y','0000-00-00 00:00:00'),(124891,10,'M90.521 ','Osteonecrosis in diseases classified elsewhere, right upper arm','Y','0000-00-00 00:00:00'),(124890,10,'M90.519 ','Osteonecrosis in diseases classified elsewhere, unspecified shoulder','Y','0000-00-00 00:00:00'),(124889,10,'M90.512 ','Osteonecrosis in diseases classified elsewhere, left shoulder','Y','0000-00-00 00:00:00'),(124888,10,'M90.511 ','Osteonecrosis in diseases classified elsewhere, right shoulder','Y','0000-00-00 00:00:00'),(124887,10,'M90.50 ','Osteonecrosis in diseases classified elsewhere, unspecified site','Y','0000-00-00 00:00:00'),(124885,10,'M89.8X9 ','Other specified disorders of bone, unspecified site','Y','0000-00-00 00:00:00'),(124886,10,'M89.9 ','Disorder of bone, unspecified','Y','0000-00-00 00:00:00'),(124884,10,'M89.8X8 ','Other specified disorders of bone, other site','Y','0000-00-00 00:00:00'),(124882,10,'M89.8X6 ','Other specified disorders of bone, lower leg','Y','0000-00-00 00:00:00'),(124883,10,'M89.8X7 ','Other specified disorders of bone, ankle and foot','Y','0000-00-00 00:00:00'),(124881,10,'M89.8X5 ','Other specified disorders of bone, thigh','Y','0000-00-00 00:00:00'),(124880,10,'M89.8X4 ','Other specified disorders of bone, hand','Y','0000-00-00 00:00:00'),(124879,10,'M89.8X3 ','Other specified disorders of bone, forearm','Y','0000-00-00 00:00:00'),(124878,10,'M89.8X2 ','Other specified disorders of bone, upper arm','Y','0000-00-00 00:00:00'),(124876,10,'M89.8X0 ','Other specified disorders of bone, multiple sites','Y','0000-00-00 00:00:00'),(124877,10,'M89.8X1 ','Other specified disorders of bone, shoulder','Y','0000-00-00 00:00:00'),(124875,10,'M89.79 ','Major osseous defect, multiple sites','Y','0000-00-00 00:00:00'),(124874,10,'M89.78 ','Major osseous defect, other site','Y','0000-00-00 00:00:00'),(124872,10,'M89.772 ','Major osseous defect, left ankle and foot','Y','0000-00-00 00:00:00'),(124873,10,'M89.779 ','Major osseous defect, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124871,10,'M89.771 ','Major osseous defect, right ankle and foot','Y','0000-00-00 00:00:00'),(124870,10,'M89.769 ','Major osseous defect, unspecified lower leg','Y','0000-00-00 00:00:00'),(124869,10,'M89.762 ','Major osseous defect, left lower leg','Y','0000-00-00 00:00:00'),(124868,10,'M89.761 ','Major osseous defect, right lower leg','Y','0000-00-00 00:00:00'),(124867,10,'M89.759 ','Major osseous defect, unspecified pelvic region and thigh','Y','0000-00-00 00:00:00'),(124866,10,'M89.752 ','Major osseous defect, left pelvic region and thigh','Y','0000-00-00 00:00:00'),(124864,10,'M89.749 ','Major osseous defect, unspecified hand','Y','0000-00-00 00:00:00'),(124865,10,'M89.751 ','Major osseous defect, right pelvic region and thigh','Y','0000-00-00 00:00:00'),(124862,10,'M89.741 ','Major osseous defect, right hand','Y','0000-00-00 00:00:00'),(124863,10,'M89.742 ','Major osseous defect, left hand','Y','0000-00-00 00:00:00'),(124861,10,'M89.739 ','Major osseous defect, unspecified forearm','Y','0000-00-00 00:00:00'),(124860,10,'M89.732 ','Major osseous defect, left forearm','Y','0000-00-00 00:00:00'),(124858,10,'M89.729 ','Major osseous defect, unspecified humerus','Y','0000-00-00 00:00:00'),(124859,10,'M89.731 ','Major osseous defect, right forearm','Y','0000-00-00 00:00:00'),(124857,10,'M89.722 ','Major osseous defect, left humerus','Y','0000-00-00 00:00:00'),(124855,10,'M89.719 ','Major osseous defect, unspecified shoulder region','Y','0000-00-00 00:00:00'),(124856,10,'M89.721 ','Major osseous defect, right humerus','Y','0000-00-00 00:00:00'),(124854,10,'M89.712 ','Major osseous defect, left shoulder region','Y','0000-00-00 00:00:00'),(124853,10,'M89.711 ','Major osseous defect, right shoulder region','Y','0000-00-00 00:00:00'),(124852,10,'M89.70 ','Major osseous defect, unspecified site','Y','0000-00-00 00:00:00'),(124851,10,'M89.69 ','Osteopathy after poliomyelitis, multiple sites','Y','0000-00-00 00:00:00'),(124849,10,'M89.679 ','Osteopathy after poliomyelitis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124850,10,'M89.68 ','Osteopathy after poliomyelitis, other site','Y','0000-00-00 00:00:00'),(124848,10,'M89.672 ','Osteopathy after poliomyelitis, left ankle and foot','Y','0000-00-00 00:00:00'),(124847,10,'M89.671 ','Osteopathy after poliomyelitis, right ankle and foot','Y','0000-00-00 00:00:00'),(124846,10,'M89.669 ','Osteopathy after poliomyelitis, unspecified lower leg','Y','0000-00-00 00:00:00'),(124845,10,'M89.662 ','Osteopathy after poliomyelitis, left lower leg','Y','0000-00-00 00:00:00'),(124844,10,'M89.661 ','Osteopathy after poliomyelitis, right lower leg','Y','0000-00-00 00:00:00'),(124842,10,'M89.652 ','Osteopathy after poliomyelitis, left thigh','Y','0000-00-00 00:00:00'),(124843,10,'M89.659 ','Osteopathy after poliomyelitis, unspecified thigh','Y','0000-00-00 00:00:00'),(124841,10,'M89.651 ','Osteopathy after poliomyelitis, right thigh','Y','0000-00-00 00:00:00'),(124840,10,'M89.649 ','Osteopathy after poliomyelitis, unspecified hand','Y','0000-00-00 00:00:00'),(124838,10,'M89.641 ','Osteopathy after poliomyelitis, right hand','Y','0000-00-00 00:00:00'),(124839,10,'M89.642 ','Osteopathy after poliomyelitis, left hand','Y','0000-00-00 00:00:00'),(124837,10,'M89.639 ','Osteopathy after poliomyelitis, unspecified forearm','Y','0000-00-00 00:00:00'),(124836,10,'M89.632 ','Osteopathy after poliomyelitis, left forearm','Y','0000-00-00 00:00:00'),(124835,10,'M89.631 ','Osteopathy after poliomyelitis, right forearm','Y','0000-00-00 00:00:00'),(124833,10,'M89.622 ','Osteopathy after poliomyelitis, left upper arm','Y','0000-00-00 00:00:00'),(124834,10,'M89.629 ','Osteopathy after poliomyelitis, unspecified upper arm','Y','0000-00-00 00:00:00'),(124832,10,'M89.621 ','Osteopathy after poliomyelitis, right upper arm','Y','0000-00-00 00:00:00'),(124831,10,'M89.619 ','Osteopathy after poliomyelitis, unspecified shoulder','Y','0000-00-00 00:00:00'),(124829,10,'M89.611 ','Osteopathy after poliomyelitis, right shoulder','Y','0000-00-00 00:00:00'),(124830,10,'M89.612 ','Osteopathy after poliomyelitis, left shoulder','Y','0000-00-00 00:00:00'),(124828,10,'M89.60 ','Osteopathy after poliomyelitis, unspecified site','Y','0000-00-00 00:00:00'),(124827,10,'M89.59 ','Osteolysis, multiple sites','Y','0000-00-00 00:00:00'),(124825,10,'M89.579 ','Osteolysis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124826,10,'M89.58 ','Osteolysis, other site','Y','0000-00-00 00:00:00'),(124823,10,'M89.571 ','Osteolysis, right ankle and foot','Y','0000-00-00 00:00:00'),(124824,10,'M89.572 ','Osteolysis, left ankle and foot','Y','0000-00-00 00:00:00'),(124821,10,'M89.562 ','Osteolysis, left lower leg','Y','0000-00-00 00:00:00'),(124822,10,'M89.569 ','Osteolysis, unspecified lower leg','Y','0000-00-00 00:00:00'),(124819,10,'M89.559 ','Osteolysis, unspecified thigh','Y','0000-00-00 00:00:00'),(124820,10,'M89.561 ','Osteolysis, right lower leg','Y','0000-00-00 00:00:00'),(124817,10,'M89.551 ','Osteolysis, right thigh','Y','0000-00-00 00:00:00'),(124818,10,'M89.552 ','Osteolysis, left thigh','Y','0000-00-00 00:00:00'),(124816,10,'M89.549 ','Osteolysis, unspecified hand','Y','0000-00-00 00:00:00'),(124815,10,'M89.542 ','Osteolysis, left hand','Y','0000-00-00 00:00:00'),(124813,10,'M89.539 ','Osteolysis, unspecified forearm','Y','0000-00-00 00:00:00'),(124814,10,'M89.541 ','Osteolysis, right hand','Y','0000-00-00 00:00:00'),(124811,10,'M89.531 ','Osteolysis, right forearm','Y','0000-00-00 00:00:00'),(124812,10,'M89.532 ','Osteolysis, left forearm','Y','0000-00-00 00:00:00'),(124809,10,'M89.522 ','Osteolysis, left upper arm','Y','0000-00-00 00:00:00'),(124810,10,'M89.529 ','Osteolysis, unspecified upper arm','Y','0000-00-00 00:00:00'),(124807,10,'M89.519 ','Osteolysis, unspecified shoulder','Y','0000-00-00 00:00:00'),(124808,10,'M89.521 ','Osteolysis, right upper arm','Y','0000-00-00 00:00:00'),(124805,10,'M89.511 ','Osteolysis, right shoulder','Y','0000-00-00 00:00:00'),(124806,10,'M89.512 ','Osteolysis, left shoulder','Y','0000-00-00 00:00:00'),(124804,10,'M89.50 ','Osteolysis, unspecified site','Y','0000-00-00 00:00:00'),(124803,10,'M89.49 ','Other hypertrophic osteoarthropathy, multiple sites','Y','0000-00-00 00:00:00'),(124802,10,'M89.48 ','Other hypertrophic osteoarthropathy, other site','Y','0000-00-00 00:00:00'),(124800,10,'M89.472 ','Other hypertrophic osteoarthropathy, left ankle and foot','Y','0000-00-00 00:00:00'),(124801,10,'M89.479 ','Other hypertrophic osteoarthropathy, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124799,10,'M89.471 ','Other hypertrophic osteoarthropathy, right ankle and foot','Y','0000-00-00 00:00:00'),(124798,10,'M89.469 ','Other hypertrophic osteoarthropathy, unspecified lower leg','Y','0000-00-00 00:00:00'),(124796,10,'M89.461 ','Other hypertrophic osteoarthropathy, right lower leg','Y','0000-00-00 00:00:00'),(124797,10,'M89.462 ','Other hypertrophic osteoarthropathy, left lower leg','Y','0000-00-00 00:00:00'),(124795,10,'M89.459 ','Other hypertrophic osteoarthropathy, unspecified thigh','Y','0000-00-00 00:00:00'),(124794,10,'M89.452 ','Other hypertrophic osteoarthropathy, left thigh','Y','0000-00-00 00:00:00'),(124793,10,'M89.451 ','Other hypertrophic osteoarthropathy, right thigh','Y','0000-00-00 00:00:00'),(124791,10,'M89.442 ','Other hypertrophic osteoarthropathy, left hand','Y','0000-00-00 00:00:00'),(124792,10,'M89.449 ','Other hypertrophic osteoarthropathy, unspecified hand','Y','0000-00-00 00:00:00'),(124790,10,'M89.441 ','Other hypertrophic osteoarthropathy, right hand','Y','0000-00-00 00:00:00'),(124789,10,'M89.439 ','Other hypertrophic osteoarthropathy, unspecified forearm','Y','0000-00-00 00:00:00'),(124787,10,'M89.431 ','Other hypertrophic osteoarthropathy, right forearm','Y','0000-00-00 00:00:00'),(124788,10,'M89.432 ','Other hypertrophic osteoarthropathy, left forearm','Y','0000-00-00 00:00:00'),(124786,10,'M89.429 ','Other hypertrophic osteoarthropathy, unspecified upper arm','Y','0000-00-00 00:00:00'),(124785,10,'M89.422 ','Other hypertrophic osteoarthropathy, left upper arm','Y','0000-00-00 00:00:00'),(124784,10,'M89.421 ','Other hypertrophic osteoarthropathy, right upper arm','Y','0000-00-00 00:00:00'),(124783,10,'M89.419 ','Other hypertrophic osteoarthropathy, unspecified shoulder','Y','0000-00-00 00:00:00'),(124782,10,'M89.412 ','Other hypertrophic osteoarthropathy, left shoulder','Y','0000-00-00 00:00:00'),(124780,10,'M89.40 ','Other hypertrophic osteoarthropathy, unspecified site','Y','0000-00-00 00:00:00'),(124781,10,'M89.411 ','Other hypertrophic osteoarthropathy, right shoulder','Y','0000-00-00 00:00:00'),(124779,10,'M89.39 ','Hypertrophy of bone, multiple sites','Y','0000-00-00 00:00:00'),(124778,10,'M89.38 ','Hypertrophy of bone, other site','Y','0000-00-00 00:00:00'),(124776,10,'M89.372 ','Hypertrophy of bone, left ankle and foot','Y','0000-00-00 00:00:00'),(124777,10,'M89.379 ','Hypertrophy of bone, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124775,10,'M89.371 ','Hypertrophy of bone, right ankle and foot','Y','0000-00-00 00:00:00'),(124773,10,'M89.364 ','Hypertrophy of bone, left fibula','Y','0000-00-00 00:00:00'),(124774,10,'M89.369 ','Hypertrophy of bone, unspecified tibia and fibula','Y','0000-00-00 00:00:00'),(124772,10,'M89.363 ','Hypertrophy of bone, right fibula','Y','0000-00-00 00:00:00'),(124770,10,'M89.361 ','Hypertrophy of bone, right tibia','Y','0000-00-00 00:00:00'),(124771,10,'M89.362 ','Hypertrophy of bone, left tibia','Y','0000-00-00 00:00:00'),(124768,10,'M89.352 ','Hypertrophy of bone, left femur','Y','0000-00-00 00:00:00'),(124769,10,'M89.359 ','Hypertrophy of bone, unspecified femur','Y','0000-00-00 00:00:00'),(124767,10,'M89.351 ','Hypertrophy of bone, right femur','Y','0000-00-00 00:00:00'),(124765,10,'M89.342 ','Hypertrophy of bone, left hand','Y','0000-00-00 00:00:00'),(124766,10,'M89.349 ','Hypertrophy of bone, unspecified hand','Y','0000-00-00 00:00:00'),(124764,10,'M89.341 ','Hypertrophy of bone, right hand','Y','0000-00-00 00:00:00'),(124762,10,'M89.334 ','Hypertrophy of bone, left radius','Y','0000-00-00 00:00:00'),(124763,10,'M89.339 ','Hypertrophy of bone, unspecified ulna and radius','Y','0000-00-00 00:00:00'),(124760,10,'M89.332 ','Hypertrophy of bone, left ulna','Y','0000-00-00 00:00:00'),(124761,10,'M89.333 ','Hypertrophy of bone, right radius','Y','0000-00-00 00:00:00'),(124759,10,'M89.331 ','Hypertrophy of bone, right ulna','Y','0000-00-00 00:00:00'),(124757,10,'M89.322 ','Hypertrophy of bone, left humerus','Y','0000-00-00 00:00:00'),(124758,10,'M89.329 ','Hypertrophy of bone, unspecified humerus','Y','0000-00-00 00:00:00'),(124756,10,'M89.321 ','Hypertrophy of bone, right humerus','Y','0000-00-00 00:00:00'),(124755,10,'M89.319 ','Hypertrophy of bone, unspecified shoulder','Y','0000-00-00 00:00:00'),(124753,10,'M89.311 ','Hypertrophy of bone, right shoulder','Y','0000-00-00 00:00:00'),(124754,10,'M89.312 ','Hypertrophy of bone, left shoulder','Y','0000-00-00 00:00:00'),(124752,10,'M89.30 ','Hypertrophy of bone, unspecified site','Y','0000-00-00 00:00:00'),(124750,10,'M89.28 ','Other disorders of bone development and growth, other site','Y','0000-00-00 00:00:00'),(124751,10,'M89.29 ','Other disorders of bone development and growth, multiple sites','Y','0000-00-00 00:00:00'),(124749,10,'M89.279 ','Other disorders of bone development and growth, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124748,10,'M89.272 ','Other disorders of bone development and growth, left ankle and foot','Y','0000-00-00 00:00:00'),(124747,10,'M89.271 ','Other disorders of bone development and growth, right ankle and foot','Y','0000-00-00 00:00:00'),(124746,10,'M89.269 ','Other disorders of bone development and growth, unspecified lower leg','Y','0000-00-00 00:00:00'),(124745,10,'M89.264 ','Other disorders of bone development and growth, left fibula','Y','0000-00-00 00:00:00'),(124744,10,'M89.263 ','Other disorders of bone development and growth, right fibula','Y','0000-00-00 00:00:00'),(124742,10,'M89.261 ','Other disorders of bone development and growth, right tibia','Y','0000-00-00 00:00:00'),(124743,10,'M89.262 ','Other disorders of bone development and growth, left tibia','Y','0000-00-00 00:00:00'),(124741,10,'M89.259 ','Other disorders of bone development and growth, unspecified femur','Y','0000-00-00 00:00:00'),(124740,10,'M89.252 ','Other disorders of bone development and growth, left femur','Y','0000-00-00 00:00:00'),(124739,10,'M89.251 ','Other disorders of bone development and growth, right femur','Y','0000-00-00 00:00:00'),(124738,10,'M89.249 ','Other disorders of bone development and growth, unspecified hand','Y','0000-00-00 00:00:00'),(124737,10,'M89.242 ','Other disorders of bone development and growth, left hand','Y','0000-00-00 00:00:00'),(124736,10,'M89.241 ','Other disorders of bone development and growth, right hand','Y','0000-00-00 00:00:00'),(124734,10,'M89.234 ','Other disorders of bone development and growth, left radius','Y','0000-00-00 00:00:00'),(124735,10,'M89.239 ','Other disorders of bone development and growth, unspecified ulna and radius','Y','0000-00-00 00:00:00'),(124733,10,'M89.233 ','Other disorders of bone development and growth, right radius','Y','0000-00-00 00:00:00'),(124732,10,'M89.232 ','Other disorders of bone development and growth, left ulna','Y','0000-00-00 00:00:00'),(124731,10,'M89.231 ','Other disorders of bone development and growth, right ulna','Y','0000-00-00 00:00:00'),(124730,10,'M89.229 ','Other disorders of bone development and growth, unspecified humerus','Y','0000-00-00 00:00:00'),(124729,10,'M89.222 ','Other disorders of bone development and growth, left humerus','Y','0000-00-00 00:00:00'),(124728,10,'M89.221 ','Other disorders of bone development and growth, right humerus','Y','0000-00-00 00:00:00'),(124727,10,'M89.219 ','Other disorders of bone development and growth, unspecified shoulder','Y','0000-00-00 00:00:00'),(124725,10,'M89.211 ','Other disorders of bone development and growth, right shoulder','Y','0000-00-00 00:00:00'),(124726,10,'M89.212 ','Other disorders of bone development and growth, left shoulder','Y','0000-00-00 00:00:00'),(124724,10,'M89.20 ','Other disorders of bone development and growth, unspecified site','Y','0000-00-00 00:00:00'),(124723,10,'M89.18 ','Physeal arrest, other site','Y','0000-00-00 00:00:00'),(124722,10,'M89.169 ','Physeal arrest, lower leg, unspecified','Y','0000-00-00 00:00:00'),(124720,10,'M89.167 ','Partial physeal arrest, left distal tibia','Y','0000-00-00 00:00:00'),(124721,10,'M89.168 ','Other physeal arrest of lower leg','Y','0000-00-00 00:00:00'),(124719,10,'M89.166 ','Partial physeal arrest, right distal tibia','Y','0000-00-00 00:00:00'),(124717,10,'M89.164 ','Complete physeal arrest, right distal tibia','Y','0000-00-00 00:00:00'),(124718,10,'M89.165 ','Complete physeal arrest, left distal tibia','Y','0000-00-00 00:00:00'),(124716,10,'M89.163 ','Partial physeal arrest, left proximal tibia','Y','0000-00-00 00:00:00'),(124714,10,'M89.161 ','Complete physeal arrest, left proximal tibia','Y','0000-00-00 00:00:00'),(124715,10,'M89.162 ','Partial physeal arrest, right proximal tibia','Y','0000-00-00 00:00:00'),(124713,10,'M89.160 ','Complete physeal arrest, right proximal tibia','Y','0000-00-00 00:00:00'),(124712,10,'M89.159 ','Physeal arrest, femur, unspecified','Y','0000-00-00 00:00:00'),(124711,10,'M89.158 ','Partial physeal arrest, left distal femur','Y','0000-00-00 00:00:00'),(124709,10,'M89.156 ','Complete physeal arrest, left distal femur','Y','0000-00-00 00:00:00'),(124710,10,'M89.157 ','Partial physeal arrest, right distal femur','Y','0000-00-00 00:00:00'),(124708,10,'M89.155 ','Complete physeal arrest, right distal femur','Y','0000-00-00 00:00:00'),(124707,10,'M89.154 ','Partial physeal arrest, left proximal femur','Y','0000-00-00 00:00:00'),(124705,10,'M89.152 ','Complete physeal arrest, left proximal femur','Y','0000-00-00 00:00:00'),(124706,10,'M89.153 ','Partial physeal arrest, right proximal femur','Y','0000-00-00 00:00:00'),(124704,10,'M89.151 ','Complete physeal arrest, right proximal femur','Y','0000-00-00 00:00:00'),(124703,10,'M89.139 ','Physeal arrest, forearm, unspecified','Y','0000-00-00 00:00:00'),(124702,10,'M89.138 ','Other physeal arrest of forearm','Y','0000-00-00 00:00:00'),(124700,10,'M89.133 ','Partial physeal arrest, right distal radius','Y','0000-00-00 00:00:00'),(124701,10,'M89.134 ','Partial physeal arrest, left distal radius','Y','0000-00-00 00:00:00'),(124699,10,'M89.132 ','Complete physeal arrest, left distal radius','Y','0000-00-00 00:00:00'),(124698,10,'M89.131 ','Complete physeal arrest, right distal radius','Y','0000-00-00 00:00:00'),(124696,10,'M89.128 ','Partial physeal arrest, left distal humerus','Y','0000-00-00 00:00:00'),(124697,10,'M89.129 ','Physeal arrest, humerus, unspecified','Y','0000-00-00 00:00:00'),(124695,10,'M89.127 ','Partial physeal arrest, right distal humerus','Y','0000-00-00 00:00:00'),(124694,10,'M89.126 ','Complete physeal arrest, left distal humerus','Y','0000-00-00 00:00:00'),(124693,10,'M89.125 ','Complete physeal arrest, right distal humerus','Y','0000-00-00 00:00:00'),(124691,10,'M89.123 ','Partial physeal arrest, right proximal humerus','Y','0000-00-00 00:00:00'),(124692,10,'M89.124 ','Partial physeal arrest, left proximal humerus','Y','0000-00-00 00:00:00'),(124690,10,'M89.122 ','Complete physeal arrest, left proximal humerus','Y','0000-00-00 00:00:00'),(124688,10,'M89.09 ','Algoneurodystrophy, multiple sites','Y','0000-00-00 00:00:00'),(124689,10,'M89.121 ','Complete physeal arrest, right proximal humerus','Y','0000-00-00 00:00:00'),(124687,10,'M89.08 ','Algoneurodystrophy, other site','Y','0000-00-00 00:00:00'),(124686,10,'M89.079 ','Algoneurodystrophy, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124685,10,'M89.072 ','Algoneurodystrophy, left ankle and foot','Y','0000-00-00 00:00:00'),(124683,10,'M89.069 ','Algoneurodystrophy, unspecified lower leg','Y','0000-00-00 00:00:00'),(124684,10,'M89.071 ','Algoneurodystrophy, right ankle and foot','Y','0000-00-00 00:00:00'),(124682,10,'M89.062 ','Algoneurodystrophy, left lower leg','Y','0000-00-00 00:00:00'),(124680,10,'M89.059 ','Algoneurodystrophy, unspecified thigh','Y','0000-00-00 00:00:00'),(124681,10,'M89.061 ','Algoneurodystrophy, right lower leg','Y','0000-00-00 00:00:00'),(124679,10,'M89.052 ','Algoneurodystrophy, left thigh','Y','0000-00-00 00:00:00'),(124677,10,'M89.049 ','Algoneurodystrophy, unspecified hand','Y','0000-00-00 00:00:00'),(124678,10,'M89.051 ','Algoneurodystrophy, right thigh','Y','0000-00-00 00:00:00'),(124676,10,'M89.042 ','Algoneurodystrophy, left hand','Y','0000-00-00 00:00:00'),(124675,10,'M89.041 ','Algoneurodystrophy, right hand','Y','0000-00-00 00:00:00'),(124673,10,'M89.032 ','Algoneurodystrophy, left forearm','Y','0000-00-00 00:00:00'),(124674,10,'M89.039 ','Algoneurodystrophy, unspecified forearm','Y','0000-00-00 00:00:00'),(124672,10,'M89.031 ','Algoneurodystrophy, right forearm','Y','0000-00-00 00:00:00'),(124670,10,'M89.022 ','Algoneurodystrophy, left upper arm','Y','0000-00-00 00:00:00'),(124671,10,'M89.029 ','Algoneurodystrophy, unspecified upper arm','Y','0000-00-00 00:00:00'),(124669,10,'M89.021 ','Algoneurodystrophy, right upper arm','Y','0000-00-00 00:00:00'),(124667,10,'M89.012 ','Algoneurodystrophy, left shoulder','Y','0000-00-00 00:00:00'),(124668,10,'M89.019 ','Algoneurodystrophy, unspecified shoulder','Y','0000-00-00 00:00:00'),(124666,10,'M89.011 ','Algoneurodystrophy, right shoulder','Y','0000-00-00 00:00:00'),(124665,10,'M89.00 ','Algoneurodystrophy, unspecified site','Y','0000-00-00 00:00:00'),(124663,10,'M88.89 ','Osteitis deformans of multiple sites','Y','0000-00-00 00:00:00'),(124664,10,'M88.9 ','Osteitis deformans of unspecified bone','Y','0000-00-00 00:00:00'),(124662,10,'M88.88 ','Osteitis deformans of other bones','Y','0000-00-00 00:00:00'),(124660,10,'M88.872 ','Osteitis deformans of left ankle and foot','Y','0000-00-00 00:00:00'),(124661,10,'M88.879 ','Osteitis deformans of unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124659,10,'M88.871 ','Osteitis deformans of right ankle and foot','Y','0000-00-00 00:00:00'),(124657,10,'M88.862 ','Osteitis deformans of left lower leg','Y','0000-00-00 00:00:00'),(124658,10,'M88.869 ','Osteitis deformans of unspecified lower leg','Y','0000-00-00 00:00:00'),(124656,10,'M88.861 ','Osteitis deformans of right lower leg','Y','0000-00-00 00:00:00'),(124655,10,'M88.859 ','Osteitis deformans of unspecified thigh','Y','0000-00-00 00:00:00'),(124653,10,'M88.851 ','Osteitis deformans of right thigh','Y','0000-00-00 00:00:00'),(124654,10,'M88.852 ','Osteitis deformans of left thigh','Y','0000-00-00 00:00:00'),(124651,10,'M88.842 ','Osteitis deformans of left hand','Y','0000-00-00 00:00:00'),(124652,10,'M88.849 ','Osteitis deformans of unspecified hand','Y','0000-00-00 00:00:00'),(124649,10,'M88.839 ','Osteitis deformans of unspecified forearm','Y','0000-00-00 00:00:00'),(124650,10,'M88.841 ','Osteitis deformans of right hand','Y','0000-00-00 00:00:00'),(124648,10,'M88.832 ','Osteitis deformans of left forearm','Y','0000-00-00 00:00:00'),(124646,10,'M88.829 ','Osteitis deformans of unspecified upper arm','Y','0000-00-00 00:00:00'),(124647,10,'M88.831 ','Osteitis deformans of right forearm','Y','0000-00-00 00:00:00'),(124645,10,'M88.822 ','Osteitis deformans of left upper arm','Y','0000-00-00 00:00:00'),(124644,10,'M88.821 ','Osteitis deformans of right upper arm','Y','0000-00-00 00:00:00'),(124642,10,'M88.812 ','Osteitis deformans of left shoulder','Y','0000-00-00 00:00:00'),(124643,10,'M88.819 ','Osteitis deformans of unspecified shoulder','Y','0000-00-00 00:00:00'),(124640,10,'M88.1 ','Osteitis deformans of vertebrae','Y','0000-00-00 00:00:00'),(124641,10,'M88.811 ','Osteitis deformans of right shoulder','Y','0000-00-00 00:00:00'),(124638,10,'M87.9 ','Osteonecrosis, unspecified','Y','0000-00-00 00:00:00'),(124639,10,'M88.0 ','Osteitis deformans of skull','Y','0000-00-00 00:00:00'),(124637,10,'M87.89 ','Other osteonecrosis, multiple sites','Y','0000-00-00 00:00:00'),(124635,10,'M87.879 ','Other osteonecrosis, unspecified toe(s)','Y','0000-00-00 00:00:00'),(124636,10,'M87.88 ','Other osteonecrosis, other site','Y','0000-00-00 00:00:00'),(124634,10,'M87.878 ','Other osteonecrosis, left toe(s)','Y','0000-00-00 00:00:00'),(124633,10,'M87.877 ','Other osteonecrosis, right toe(s)','Y','0000-00-00 00:00:00'),(124631,10,'M87.875 ','Other osteonecrosis, left foot','Y','0000-00-00 00:00:00'),(124632,10,'M87.876 ','Other osteonecrosis, unspecified foot','Y','0000-00-00 00:00:00'),(124629,10,'M87.873 ','Other osteonecrosis, unspecified ankle','Y','0000-00-00 00:00:00'),(124630,10,'M87.874 ','Other osteonecrosis, right foot','Y','0000-00-00 00:00:00'),(124627,10,'M87.871 ','Other osteonecrosis, right ankle','Y','0000-00-00 00:00:00'),(124628,10,'M87.872 ','Other osteonecrosis, left ankle','Y','0000-00-00 00:00:00'),(124625,10,'M87.865 ','Other osteonecrosis, left fibula','Y','0000-00-00 00:00:00'),(124626,10,'M87.869 ','Other osteonecrosis, unspecified fibula','Y','0000-00-00 00:00:00'),(124623,10,'M87.863 ','Other osteonecrosis, unspecified tibia','Y','0000-00-00 00:00:00'),(124624,10,'M87.864 ','Other osteonecrosis, right fibula','Y','0000-00-00 00:00:00'),(124622,10,'M87.862 ','Other osteonecrosis, left tibia','Y','0000-00-00 00:00:00'),(124621,10,'M87.861 ','Other osteonecrosis, right tibia','Y','0000-00-00 00:00:00'),(124619,10,'M87.852 ','Other osteonecrosis, left femur','Y','0000-00-00 00:00:00'),(124620,10,'M87.859 ','Other osteonecrosis, unspecified femur','Y','0000-00-00 00:00:00'),(124618,10,'M87.851 ','Other osteonecrosis, right femur','Y','0000-00-00 00:00:00'),(124616,10,'M87.849 ','Other osteonecrosis, unspecified finger(s)','Y','0000-00-00 00:00:00'),(124617,10,'M87.850 ','Other osteonecrosis, pelvis','Y','0000-00-00 00:00:00'),(124614,10,'M87.844 ','Other osteonecrosis, right finger(s)','Y','0000-00-00 00:00:00'),(124615,10,'M87.845 ','Other osteonecrosis, left finger(s)','Y','0000-00-00 00:00:00'),(124613,10,'M87.843 ','Other osteonecrosis, unspecified hand','Y','0000-00-00 00:00:00'),(124612,10,'M87.842 ','Other osteonecrosis, left hand','Y','0000-00-00 00:00:00'),(124610,10,'M87.839 ','Other osteonecrosis of unspecified carpus','Y','0000-00-00 00:00:00'),(124611,10,'M87.841 ','Other osteonecrosis, right hand','Y','0000-00-00 00:00:00'),(124609,10,'M87.838 ','Other osteonecrosis of left carpus','Y','0000-00-00 00:00:00'),(124607,10,'M87.836 ','Other osteonecrosis of unspecified ulna','Y','0000-00-00 00:00:00'),(124608,10,'M87.837 ','Other osteonecrosis of right carpus','Y','0000-00-00 00:00:00'),(124605,10,'M87.834 ','Other osteonecrosis of right ulna','Y','0000-00-00 00:00:00'),(124606,10,'M87.835 ','Other osteonecrosis of left ulna','Y','0000-00-00 00:00:00'),(124604,10,'M87.833 ','Other osteonecrosis of unspecified radius','Y','0000-00-00 00:00:00'),(124602,10,'M87.831 ','Other osteonecrosis of right radius','Y','0000-00-00 00:00:00'),(124603,10,'M87.832 ','Other osteonecrosis of left radius','Y','0000-00-00 00:00:00'),(124601,10,'M87.829 ','Other osteonecrosis, unspecified humerus','Y','0000-00-00 00:00:00'),(124600,10,'M87.822 ','Other osteonecrosis, left humerus','Y','0000-00-00 00:00:00'),(124598,10,'M87.819 ','Other osteonecrosis, unspecified shoulder','Y','0000-00-00 00:00:00'),(124599,10,'M87.821 ','Other osteonecrosis, right humerus','Y','0000-00-00 00:00:00'),(124597,10,'M87.812 ','Other osteonecrosis, left shoulder','Y','0000-00-00 00:00:00'),(124595,10,'M87.80 ','Other osteonecrosis, unspecified bone','Y','0000-00-00 00:00:00'),(124596,10,'M87.811 ','Other osteonecrosis, right shoulder','Y','0000-00-00 00:00:00'),(124593,10,'M87.38 ','Other secondary osteonecrosis, other site','Y','0000-00-00 00:00:00'),(124594,10,'M87.39 ','Other secondary osteonecrosis, multiple sites','Y','0000-00-00 00:00:00'),(124592,10,'M87.379 ','Other secondary osteonecrosis, unspecified toe(s)','Y','0000-00-00 00:00:00'),(124591,10,'M87.378 ','Other secondary osteonecrosis, left toe(s)','Y','0000-00-00 00:00:00'),(124589,10,'M87.376 ','Other secondary osteonecrosis, unspecified foot','Y','0000-00-00 00:00:00'),(124590,10,'M87.377 ','Other secondary osteonecrosis, right toe(s)','Y','0000-00-00 00:00:00'),(124588,10,'M87.375 ','Other secondary osteonecrosis, left foot','Y','0000-00-00 00:00:00'),(124586,10,'M87.373 ','Other secondary osteonecrosis, unspecified ankle','Y','0000-00-00 00:00:00'),(124587,10,'M87.374 ','Other secondary osteonecrosis, right foot','Y','0000-00-00 00:00:00'),(124585,10,'M87.372 ','Other secondary osteonecrosis, left ankle','Y','0000-00-00 00:00:00'),(124583,10,'M87.366 ','Other secondary osteonecrosis, unspecified fibula','Y','0000-00-00 00:00:00'),(124584,10,'M87.371 ','Other secondary osteonecrosis, right ankle','Y','0000-00-00 00:00:00'),(124582,10,'M87.365 ','Other secondary osteonecrosis, left fibula','Y','0000-00-00 00:00:00'),(124581,10,'M87.364 ','Other secondary osteonecrosis, right fibula','Y','0000-00-00 00:00:00'),(124579,10,'M87.362 ','Other secondary osteonecrosis, left tibia','Y','0000-00-00 00:00:00'),(124580,10,'M87.363 ','Other secondary osteonecrosis, unspecified tibia','Y','0000-00-00 00:00:00'),(124578,10,'M87.361 ','Other secondary osteonecrosis, right tibia','Y','0000-00-00 00:00:00'),(124576,10,'M87.352 ','Other secondary osteonecrosis, left femur','Y','0000-00-00 00:00:00'),(124577,10,'M87.353 ','Other secondary osteonecrosis, unspecified femur','Y','0000-00-00 00:00:00'),(124575,10,'M87.351 ','Other secondary osteonecrosis, right femur','Y','0000-00-00 00:00:00'),(124573,10,'M87.346 ','Other secondary osteonecrosis, unspecified finger(s)','Y','0000-00-00 00:00:00'),(124574,10,'M87.350 ','Other secondary osteonecrosis, pelvis','Y','0000-00-00 00:00:00'),(124572,10,'M87.345 ','Other secondary osteonecrosis, left finger(s)','Y','0000-00-00 00:00:00'),(124571,10,'M87.344 ','Other secondary osteonecrosis, right finger(s)','Y','0000-00-00 00:00:00'),(124569,10,'M87.342 ','Other secondary osteonecrosis, left hand','Y','0000-00-00 00:00:00'),(124570,10,'M87.343 ','Other secondary osteonecrosis, unspecified hand','Y','0000-00-00 00:00:00'),(124568,10,'M87.341 ','Other secondary osteonecrosis, right hand','Y','0000-00-00 00:00:00'),(124566,10,'M87.338 ','Other secondary osteonecrosis of left carpus','Y','0000-00-00 00:00:00'),(124567,10,'M87.339 ','Other secondary osteonecrosis of unspecified carpus','Y','0000-00-00 00:00:00'),(124565,10,'M87.337 ','Other secondary osteonecrosis of right carpus','Y','0000-00-00 00:00:00'),(124563,10,'M87.335 ','Other secondary osteonecrosis of left ulna','Y','0000-00-00 00:00:00'),(124564,10,'M87.336 ','Other secondary osteonecrosis of unspecified ulna','Y','0000-00-00 00:00:00'),(124562,10,'M87.334 ','Other secondary osteonecrosis of right ulna','Y','0000-00-00 00:00:00'),(124561,10,'M87.333 ','Other secondary osteonecrosis of unspecified radius','Y','0000-00-00 00:00:00'),(124560,10,'M87.332 ','Other secondary osteonecrosis of left radius','Y','0000-00-00 00:00:00'),(124558,10,'M87.329 ','Other secondary osteonecrosis, unspecified humerus','Y','0000-00-00 00:00:00'),(124559,10,'M87.331 ','Other secondary osteonecrosis of right radius','Y','0000-00-00 00:00:00'),(124557,10,'M87.322 ','Other secondary osteonecrosis, left humerus','Y','0000-00-00 00:00:00'),(124555,10,'M87.319 ','Other secondary osteonecrosis, unspecified shoulder','Y','0000-00-00 00:00:00'),(124556,10,'M87.321 ','Other secondary osteonecrosis, right humerus','Y','0000-00-00 00:00:00'),(124554,10,'M87.312 ','Other secondary osteonecrosis, left shoulder','Y','0000-00-00 00:00:00'),(124552,10,'M87.30 ','Other secondary osteonecrosis, unspecified bone','Y','0000-00-00 00:00:00'),(124553,10,'M87.311 ','Other secondary osteonecrosis, right shoulder','Y','0000-00-00 00:00:00'),(124550,10,'M87.28 ','Osteonecrosis due to previous trauma, other site','Y','0000-00-00 00:00:00'),(124551,10,'M87.29 ','Osteonecrosis due to previous trauma, multiple sites','Y','0000-00-00 00:00:00'),(124549,10,'M87.279 ','Osteonecrosis due to previous trauma, unspecified toe(s)','Y','0000-00-00 00:00:00'),(124548,10,'M87.278 ','Osteonecrosis due to previous trauma, left toe(s)','Y','0000-00-00 00:00:00'),(124546,10,'M87.276 ','Osteonecrosis due to previous trauma, unspecified foot','Y','0000-00-00 00:00:00'),(124547,10,'M87.277 ','Osteonecrosis due to previous trauma, right toe(s)','Y','0000-00-00 00:00:00'),(124545,10,'M87.275 ','Osteonecrosis due to previous trauma, left foot','Y','0000-00-00 00:00:00'),(124544,10,'M87.274 ','Osteonecrosis due to previous trauma, right foot','Y','0000-00-00 00:00:00'),(124543,10,'M87.273 ','Osteonecrosis due to previous trauma, unspecified ankle','Y','0000-00-00 00:00:00'),(124541,10,'M87.271 ','Osteonecrosis due to previous trauma, right ankle','Y','0000-00-00 00:00:00'),(124542,10,'M87.272 ','Osteonecrosis due to previous trauma, left ankle','Y','0000-00-00 00:00:00'),(124540,10,'M87.266 ','Osteonecrosis due to previous trauma, unspecified fibula','Y','0000-00-00 00:00:00'),(124538,10,'M87.264 ','Osteonecrosis due to previous trauma, right fibula','Y','0000-00-00 00:00:00'),(124539,10,'M87.265 ','Osteonecrosis due to previous trauma, left fibula','Y','0000-00-00 00:00:00'),(124537,10,'M87.263 ','Osteonecrosis due to previous trauma, unspecified tibia','Y','0000-00-00 00:00:00'),(124535,10,'M87.261 ','Osteonecrosis due to previous trauma, right tibia','Y','0000-00-00 00:00:00'),(124536,10,'M87.262 ','Osteonecrosis due to previous trauma, left tibia','Y','0000-00-00 00:00:00'),(124534,10,'M87.256 ','Osteonecrosis due to previous trauma, unspecified femur','Y','0000-00-00 00:00:00'),(124533,10,'M87.252 ','Osteonecrosis due to previous trauma, left femur','Y','0000-00-00 00:00:00'),(124532,10,'M87.251 ','Osteonecrosis due to previous trauma, right femur','Y','0000-00-00 00:00:00'),(124531,10,'M87.250 ','Osteonecrosis due to previous trauma, pelvis','Y','0000-00-00 00:00:00'),(124530,10,'M87.246 ','Osteonecrosis due to previous trauma, unspecified finger(s)','Y','0000-00-00 00:00:00'),(124528,10,'M87.244 ','Osteonecrosis due to previous trauma, right finger(s)','Y','0000-00-00 00:00:00'),(124529,10,'M87.245 ','Osteonecrosis due to previous trauma, left finger(s)','Y','0000-00-00 00:00:00'),(124527,10,'M87.243 ','Osteonecrosis due to previous trauma, unspecified hand','Y','0000-00-00 00:00:00'),(124526,10,'M87.242 ','Osteonecrosis due to previous trauma, left hand','Y','0000-00-00 00:00:00'),(124525,10,'M87.241 ','Osteonecrosis due to previous trauma, right hand','Y','0000-00-00 00:00:00'),(124524,10,'M87.239 ','Osteonecrosis due to previous trauma of unspecified carpus','Y','0000-00-00 00:00:00'),(124523,10,'M87.238 ','Osteonecrosis due to previous trauma of left carpus','Y','0000-00-00 00:00:00'),(124522,10,'M87.237 ','Osteonecrosis due to previous trauma of right carpus','Y','0000-00-00 00:00:00'),(124521,10,'M87.236 ','Osteonecrosis due to previous trauma of unspecified ulna','Y','0000-00-00 00:00:00'),(124519,10,'M87.234 ','Osteonecrosis due to previous trauma of right ulna','Y','0000-00-00 00:00:00'),(124520,10,'M87.235 ','Osteonecrosis due to previous trauma of left ulna','Y','0000-00-00 00:00:00'),(124518,10,'M87.233 ','Osteonecrosis due to previous trauma of unspecified radius','Y','0000-00-00 00:00:00'),(124517,10,'M87.232 ','Osteonecrosis due to previous trauma of left radius','Y','0000-00-00 00:00:00'),(124516,10,'M87.231 ','Osteonecrosis due to previous trauma of right radius','Y','0000-00-00 00:00:00'),(124515,10,'M87.229 ','Osteonecrosis due to previous trauma, unspecified humerus','Y','0000-00-00 00:00:00'),(124514,10,'M87.222 ','Osteonecrosis due to previous trauma, left humerus','Y','0000-00-00 00:00:00'),(124513,10,'M87.221 ','Osteonecrosis due to previous trauma, right humerus','Y','0000-00-00 00:00:00'),(124512,10,'M87.219 ','Osteonecrosis due to previous trauma, unspecified shoulder','Y','0000-00-00 00:00:00'),(124510,10,'M87.211 ','Osteonecrosis due to previous trauma, right shoulder','Y','0000-00-00 00:00:00'),(124511,10,'M87.212 ','Osteonecrosis due to previous trauma, left shoulder','Y','0000-00-00 00:00:00'),(124509,10,'M87.20 ','Osteonecrosis due to previous trauma, unspecified bone','Y','0000-00-00 00:00:00'),(124508,10,'M87.19 ','Osteonecrosis due to drugs, multiple sites','Y','0000-00-00 00:00:00'),(124507,10,'M87.188 ','Osteonecrosis due to drugs, other site','Y','0000-00-00 00:00:00'),(124506,10,'M87.180 ','Osteonecrosis due to drugs, jaw','Y','0000-00-00 00:00:00'),(124505,10,'M87.179 ','Osteonecrosis due to drugs, unspecified toe(s)','Y','0000-00-00 00:00:00'),(124504,10,'M87.178 ','Osteonecrosis due to drugs, left toe(s)','Y','0000-00-00 00:00:00'),(124503,10,'M87.177 ','Osteonecrosis due to drugs, right toe(s)','Y','0000-00-00 00:00:00'),(124502,10,'M87.176 ','Osteonecrosis due to drugs, unspecified foot','Y','0000-00-00 00:00:00'),(124501,10,'M87.175 ','Osteonecrosis due to drugs, left foot','Y','0000-00-00 00:00:00'),(124500,10,'M87.174 ','Osteonecrosis due to drugs, right foot','Y','0000-00-00 00:00:00'),(124499,10,'M87.173 ','Osteonecrosis due to drugs, unspecified ankle','Y','0000-00-00 00:00:00'),(124498,10,'M87.172 ','Osteonecrosis due to drugs, left ankle','Y','0000-00-00 00:00:00'),(124497,10,'M87.171 ','Osteonecrosis due to drugs, right ankle','Y','0000-00-00 00:00:00'),(124496,10,'M87.166 ','Osteonecrosis due to drugs, unspecified fibula','Y','0000-00-00 00:00:00'),(124495,10,'M87.165 ','Osteonecrosis due to drugs, left fibula','Y','0000-00-00 00:00:00'),(124494,10,'M87.164 ','Osteonecrosis due to drugs, right fibula','Y','0000-00-00 00:00:00'),(124493,10,'M87.163 ','Osteonecrosis due to drugs, unspecified tibia','Y','0000-00-00 00:00:00'),(124492,10,'M87.162 ','Osteonecrosis due to drugs, left tibia','Y','0000-00-00 00:00:00'),(124491,10,'M87.161 ','Osteonecrosis due to drugs, right tibia','Y','0000-00-00 00:00:00'),(124490,10,'M87.159 ','Osteonecrosis due to drugs, unspecified femur','Y','0000-00-00 00:00:00'),(124489,10,'M87.152 ','Osteonecrosis due to drugs, left femur','Y','0000-00-00 00:00:00'),(124488,10,'M87.151 ','Osteonecrosis due to drugs, right femur','Y','0000-00-00 00:00:00'),(124487,10,'M87.150 ','Osteonecrosis due to drugs, pelvis','Y','0000-00-00 00:00:00'),(124486,10,'M87.146 ','Osteonecrosis due to drugs, unspecified finger(s)','Y','0000-00-00 00:00:00'),(124485,10,'M87.145 ','Osteonecrosis due to drugs, left finger(s)','Y','0000-00-00 00:00:00'),(124484,10,'M87.144 ','Osteonecrosis due to drugs, right finger(s)','Y','0000-00-00 00:00:00'),(124483,10,'M87.143 ','Osteonecrosis due to drugs, unspecified hand','Y','0000-00-00 00:00:00'),(124482,10,'M87.142 ','Osteonecrosis due to drugs, left hand','Y','0000-00-00 00:00:00'),(124481,10,'M87.141 ','Osteonecrosis due to drugs, right hand','Y','0000-00-00 00:00:00'),(124480,10,'M87.139 ','Osteonecrosis due to drugs of unspecified carpus','Y','0000-00-00 00:00:00'),(124479,10,'M87.138 ','Osteonecrosis due to drugs of left carpus','Y','0000-00-00 00:00:00'),(124478,10,'M87.137 ','Osteonecrosis due to drugs of right carpus','Y','0000-00-00 00:00:00'),(124477,10,'M87.136 ','Osteonecrosis due to drugs of unspecified ulna','Y','0000-00-00 00:00:00'),(124476,10,'M87.135 ','Osteonecrosis due to drugs of left ulna','Y','0000-00-00 00:00:00'),(124475,10,'M87.134 ','Osteonecrosis due to drugs of right ulna','Y','0000-00-00 00:00:00'),(124474,10,'M87.133 ','Osteonecrosis due to drugs of unspecified radius','Y','0000-00-00 00:00:00'),(124473,10,'M87.132 ','Osteonecrosis due to drugs of left radius','Y','0000-00-00 00:00:00'),(124472,10,'M87.131 ','Osteonecrosis due to drugs of right radius','Y','0000-00-00 00:00:00'),(124471,10,'M87.129 ','Osteonecrosis due to drugs, unspecified humerus','Y','0000-00-00 00:00:00'),(124470,10,'M87.122 ','Osteonecrosis due to drugs, left humerus','Y','0000-00-00 00:00:00'),(124469,10,'M87.121 ','Osteonecrosis due to drugs, right humerus','Y','0000-00-00 00:00:00'),(124468,10,'M87.119 ','Osteonecrosis due to drugs, unspecified shoulder','Y','0000-00-00 00:00:00'),(124467,10,'M87.112 ','Osteonecrosis due to drugs, left shoulder','Y','0000-00-00 00:00:00'),(124466,10,'M87.111 ','Osteonecrosis due to drugs, right shoulder','Y','0000-00-00 00:00:00'),(124465,10,'M87.10 ','Osteonecrosis due to drugs, unspecified bone','Y','0000-00-00 00:00:00'),(124464,10,'M87.09 ','Idiopathic aseptic necrosis of bone, multiple sites','Y','0000-00-00 00:00:00'),(124463,10,'M87.08 ','Idiopathic aseptic necrosis of bone, other site','Y','0000-00-00 00:00:00'),(124462,10,'M87.079 ','Idiopathic aseptic necrosis of unspecified toe(s)','Y','0000-00-00 00:00:00'),(124461,10,'M87.078 ','Idiopathic aseptic necrosis of left toe(s)','Y','0000-00-00 00:00:00'),(124460,10,'M87.077 ','Idiopathic aseptic necrosis of right toe(s)','Y','0000-00-00 00:00:00'),(124459,10,'M87.076 ','Idiopathic aseptic necrosis of unspecified foot','Y','0000-00-00 00:00:00'),(124458,10,'M87.075 ','Idiopathic aseptic necrosis of left foot','Y','0000-00-00 00:00:00'),(124457,10,'M87.074 ','Idiopathic aseptic necrosis of right foot','Y','0000-00-00 00:00:00'),(124456,10,'M87.073 ','Idiopathic aseptic necrosis of unspecified ankle','Y','0000-00-00 00:00:00'),(124455,10,'M87.072 ','Idiopathic aseptic necrosis of left ankle','Y','0000-00-00 00:00:00'),(124454,10,'M87.071 ','Idiopathic aseptic necrosis of right ankle','Y','0000-00-00 00:00:00'),(124453,10,'M87.066 ','Idiopathic aseptic necrosis of unspecified fibula','Y','0000-00-00 00:00:00'),(124452,10,'M87.065 ','Idiopathic aseptic necrosis of left fibula','Y','0000-00-00 00:00:00'),(124451,10,'M87.064 ','Idiopathic aseptic necrosis of right fibula','Y','0000-00-00 00:00:00'),(124449,10,'M87.062 ','Idiopathic aseptic necrosis of left tibia','Y','0000-00-00 00:00:00'),(124450,10,'M87.063 ','Idiopathic aseptic necrosis of unspecified tibia','Y','0000-00-00 00:00:00'),(124448,10,'M87.061 ','Idiopathic aseptic necrosis of right tibia','Y','0000-00-00 00:00:00'),(124447,10,'M87.059 ','Idiopathic aseptic necrosis of unspecified femur','Y','0000-00-00 00:00:00'),(124446,10,'M87.052 ','Idiopathic aseptic necrosis of left femur','Y','0000-00-00 00:00:00'),(124444,10,'M87.050 ','Idiopathic aseptic necrosis of pelvis','Y','0000-00-00 00:00:00'),(124445,10,'M87.051 ','Idiopathic aseptic necrosis of right femur','Y','0000-00-00 00:00:00'),(124443,10,'M87.046 ','Idiopathic aseptic necrosis of unspecified finger(s)','Y','0000-00-00 00:00:00'),(124442,10,'M87.045 ','Idiopathic aseptic necrosis of left finger(s)','Y','0000-00-00 00:00:00'),(124441,10,'M87.044 ','Idiopathic aseptic necrosis of right finger(s)','Y','0000-00-00 00:00:00'),(124440,10,'M87.043 ','Idiopathic aseptic necrosis of unspecified hand','Y','0000-00-00 00:00:00'),(124439,10,'M87.042 ','Idiopathic aseptic necrosis of left hand','Y','0000-00-00 00:00:00'),(124438,10,'M87.041 ','Idiopathic aseptic necrosis of right hand','Y','0000-00-00 00:00:00'),(124437,10,'M87.039 ','Idiopathic aseptic necrosis of unspecified carpus','Y','0000-00-00 00:00:00'),(124436,10,'M87.038 ','Idiopathic aseptic necrosis of left carpus','Y','0000-00-00 00:00:00'),(124435,10,'M87.037 ','Idiopathic aseptic necrosis of right carpus','Y','0000-00-00 00:00:00'),(124434,10,'M87.036 ','Idiopathic aseptic necrosis of unspecified ulna','Y','0000-00-00 00:00:00'),(124433,10,'M87.035 ','Idiopathic aseptic necrosis of left ulna','Y','0000-00-00 00:00:00'),(124432,10,'M87.034 ','Idiopathic aseptic necrosis of right ulna','Y','0000-00-00 00:00:00'),(124431,10,'M87.033 ','Idiopathic aseptic necrosis of unspecified radius','Y','0000-00-00 00:00:00'),(124430,10,'M87.032 ','Idiopathic aseptic necrosis of left radius','Y','0000-00-00 00:00:00'),(124429,10,'M87.031 ','Idiopathic aseptic necrosis of right radius','Y','0000-00-00 00:00:00'),(124428,10,'M87.029 ','Idiopathic aseptic necrosis of unspecified humerus','Y','0000-00-00 00:00:00'),(124427,10,'M87.022 ','Idiopathic aseptic necrosis of left humerus','Y','0000-00-00 00:00:00'),(124426,10,'M87.021 ','Idiopathic aseptic necrosis of right humerus','Y','0000-00-00 00:00:00'),(124425,10,'M87.019 ','Idiopathic aseptic necrosis of unspecified shoulder','Y','0000-00-00 00:00:00'),(124424,10,'M87.012 ','Idiopathic aseptic necrosis of left shoulder','Y','0000-00-00 00:00:00'),(124423,10,'M87.011 ','Idiopathic aseptic necrosis of right shoulder','Y','0000-00-00 00:00:00'),(124422,10,'M87.00 ','Idiopathic aseptic necrosis of unspecified bone','Y','0000-00-00 00:00:00'),(124421,10,'M86.9 ','Osteomyelitis, unspecified','Y','0000-00-00 00:00:00'),(124420,10,'M86.8X9 ','Other osteomyelitis, unspecified sites','Y','0000-00-00 00:00:00'),(124419,10,'M86.8X8 ','Other osteomyelitis, other site','Y','0000-00-00 00:00:00'),(124417,10,'M86.8X6 ','Other osteomyelitis, lower leg','Y','0000-00-00 00:00:00'),(124418,10,'M86.8X7 ','Other osteomyelitis, ankle and foot','Y','0000-00-00 00:00:00'),(124416,10,'M86.8X5 ','Other osteomyelitis, thigh','Y','0000-00-00 00:00:00'),(124415,10,'M86.8X4 ','Other osteomyelitis, hand','Y','0000-00-00 00:00:00'),(124413,10,'M86.8X2 ','Other osteomyelitis, upper arm','Y','0000-00-00 00:00:00'),(124414,10,'M86.8X3 ','Other osteomyelitis, forearm','Y','0000-00-00 00:00:00'),(124412,10,'M86.8X1 ','Other osteomyelitis, shoulder','Y','0000-00-00 00:00:00'),(124411,10,'M86.8X0 ','Other osteomyelitis, multiple sites','Y','0000-00-00 00:00:00'),(124410,10,'M86.69 ','Other chronic osteomyelitis, multiple sites','Y','0000-00-00 00:00:00'),(124409,10,'M86.68 ','Other chronic osteomyelitis, other site','Y','0000-00-00 00:00:00'),(124408,10,'M86.679 ','Other chronic osteomyelitis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124407,10,'M86.672 ','Other chronic osteomyelitis, left ankle and foot','Y','0000-00-00 00:00:00'),(124406,10,'M86.671 ','Other chronic osteomyelitis, right ankle and foot','Y','0000-00-00 00:00:00'),(124405,10,'M86.669 ','Other chronic osteomyelitis, unspecified tibia and fibula','Y','0000-00-00 00:00:00'),(124404,10,'M86.662 ','Other chronic osteomyelitis, left tibia and fibula','Y','0000-00-00 00:00:00'),(124403,10,'M86.661 ','Other chronic osteomyelitis, right tibia and fibula','Y','0000-00-00 00:00:00'),(124402,10,'M86.659 ','Other chronic osteomyelitis, unspecified thigh','Y','0000-00-00 00:00:00'),(124401,10,'M86.652 ','Other chronic osteomyelitis, left thigh','Y','0000-00-00 00:00:00'),(124400,10,'M86.651 ','Other chronic osteomyelitis, right thigh','Y','0000-00-00 00:00:00'),(124399,10,'M86.649 ','Other chronic osteomyelitis, unspecified hand','Y','0000-00-00 00:00:00'),(124398,10,'M86.642 ','Other chronic osteomyelitis, left hand','Y','0000-00-00 00:00:00'),(124397,10,'M86.641 ','Other chronic osteomyelitis, right hand','Y','0000-00-00 00:00:00'),(124396,10,'M86.639 ','Other chronic osteomyelitis, unspecified radius and ulna','Y','0000-00-00 00:00:00'),(124395,10,'M86.632 ','Other chronic osteomyelitis, left radius and ulna','Y','0000-00-00 00:00:00'),(124394,10,'M86.631 ','Other chronic osteomyelitis, right radius and ulna','Y','0000-00-00 00:00:00'),(124393,10,'M86.629 ','Other chronic osteomyelitis, unspecified humerus','Y','0000-00-00 00:00:00'),(124392,10,'M86.622 ','Other chronic osteomyelitis, left humerus','Y','0000-00-00 00:00:00'),(124391,10,'M86.621 ','Other chronic osteomyelitis, right humerus','Y','0000-00-00 00:00:00'),(124390,10,'M86.619 ','Other chronic osteomyelitis, unspecified shoulder','Y','0000-00-00 00:00:00'),(124389,10,'M86.612 ','Other chronic osteomyelitis, left shoulder','Y','0000-00-00 00:00:00'),(124388,10,'M86.611 ','Other chronic osteomyelitis, right shoulder','Y','0000-00-00 00:00:00'),(124387,10,'M86.60 ','Other chronic osteomyelitis, unspecified site','Y','0000-00-00 00:00:00'),(124386,10,'M86.59 ','Other chronic hematogenous osteomyelitis, multiple sites','Y','0000-00-00 00:00:00'),(124385,10,'M86.58 ','Other chronic hematogenous osteomyelitis, other site','Y','0000-00-00 00:00:00'),(124384,10,'M86.579 ','Other chronic hematogenous osteomyelitis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124383,10,'M86.572 ','Other chronic hematogenous osteomyelitis, left ankle and foot','Y','0000-00-00 00:00:00'),(124382,10,'M86.571 ','Other chronic hematogenous osteomyelitis, right ankle and foot','Y','0000-00-00 00:00:00'),(124381,10,'M86.569 ','Other chronic hematogenous osteomyelitis, unspecified tibia and fibula','Y','0000-00-00 00:00:00'),(124380,10,'M86.562 ','Other chronic hematogenous osteomyelitis, left tibia and fibula','Y','0000-00-00 00:00:00'),(124379,10,'M86.561 ','Other chronic hematogenous osteomyelitis, right tibia and fibula','Y','0000-00-00 00:00:00'),(124378,10,'M86.559 ','Other chronic hematogenous osteomyelitis, unspecified femur','Y','0000-00-00 00:00:00'),(124377,10,'M86.552 ','Other chronic hematogenous osteomyelitis, left femur','Y','0000-00-00 00:00:00'),(124376,10,'M86.551 ','Other chronic hematogenous osteomyelitis, right femur','Y','0000-00-00 00:00:00'),(124375,10,'M86.549 ','Other chronic hematogenous osteomyelitis, unspecified hand','Y','0000-00-00 00:00:00'),(124374,10,'M86.542 ','Other chronic hematogenous osteomyelitis, left hand','Y','0000-00-00 00:00:00'),(124373,10,'M86.541 ','Other chronic hematogenous osteomyelitis, right hand','Y','0000-00-00 00:00:00'),(124372,10,'M86.539 ','Other chronic hematogenous osteomyelitis, unspecified radius and ulna','Y','0000-00-00 00:00:00'),(124371,10,'M86.532 ','Other chronic hematogenous osteomyelitis, left radius and ulna','Y','0000-00-00 00:00:00'),(124370,10,'M86.531 ','Other chronic hematogenous osteomyelitis, right radius and ulna','Y','0000-00-00 00:00:00'),(124369,10,'M86.529 ','Other chronic hematogenous osteomyelitis, unspecified humerus','Y','0000-00-00 00:00:00'),(124368,10,'M86.522 ','Other chronic hematogenous osteomyelitis, left humerus','Y','0000-00-00 00:00:00'),(124367,10,'M86.521 ','Other chronic hematogenous osteomyelitis, right humerus','Y','0000-00-00 00:00:00'),(124366,10,'M86.519 ','Other chronic hematogenous osteomyelitis, unspecified shoulder','Y','0000-00-00 00:00:00'),(124365,10,'M86.512 ','Other chronic hematogenous osteomyelitis, left shoulder','Y','0000-00-00 00:00:00'),(124364,10,'M86.511 ','Other chronic hematogenous osteomyelitis, right shoulder','Y','0000-00-00 00:00:00'),(124363,10,'M86.50 ','Other chronic hematogenous osteomyelitis, unspecified site','Y','0000-00-00 00:00:00'),(124362,10,'M86.49 ','Chronic osteomyelitis with draining sinus, multiple sites','Y','0000-00-00 00:00:00'),(124361,10,'M86.48 ','Chronic osteomyelitis with draining sinus, other site','Y','0000-00-00 00:00:00'),(124360,10,'M86.479 ','Chronic osteomyelitis with draining sinus, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124359,10,'M86.472 ','Chronic osteomyelitis with draining sinus, left ankle and foot','Y','0000-00-00 00:00:00'),(124358,10,'M86.471 ','Chronic osteomyelitis with draining sinus, right ankle and foot','Y','0000-00-00 00:00:00'),(124357,10,'M86.469 ','Chronic osteomyelitis with draining sinus, unspecified tibia and fibula','Y','0000-00-00 00:00:00'),(124356,10,'M86.462 ','Chronic osteomyelitis with draining sinus, left tibia and fibula','Y','0000-00-00 00:00:00'),(124355,10,'M86.461 ','Chronic osteomyelitis with draining sinus, right tibia and fibula','Y','0000-00-00 00:00:00'),(124354,10,'M86.459 ','Chronic osteomyelitis with draining sinus, unspecified femur','Y','0000-00-00 00:00:00'),(124353,10,'M86.452 ','Chronic osteomyelitis with draining sinus, left femur','Y','0000-00-00 00:00:00'),(124352,10,'M86.451 ','Chronic osteomyelitis with draining sinus, right femur','Y','0000-00-00 00:00:00'),(124351,10,'M86.449 ','Chronic osteomyelitis with draining sinus, unspecified hand','Y','0000-00-00 00:00:00'),(124350,10,'M86.442 ','Chronic osteomyelitis with draining sinus, left hand','Y','0000-00-00 00:00:00'),(124349,10,'M86.441 ','Chronic osteomyelitis with draining sinus, right hand','Y','0000-00-00 00:00:00'),(124348,10,'M86.439 ','Chronic osteomyelitis with draining sinus, unspecified radius and ulna','Y','0000-00-00 00:00:00'),(124347,10,'M86.432 ','Chronic osteomyelitis with draining sinus, left radius and ulna','Y','0000-00-00 00:00:00'),(124346,10,'M86.431 ','Chronic osteomyelitis with draining sinus, right radius and ulna','Y','0000-00-00 00:00:00'),(124345,10,'M86.429 ','Chronic osteomyelitis with draining sinus, unspecified humerus','Y','0000-00-00 00:00:00'),(124344,10,'M86.422 ','Chronic osteomyelitis with draining sinus, left humerus','Y','0000-00-00 00:00:00'),(124343,10,'M86.421 ','Chronic osteomyelitis with draining sinus, right humerus','Y','0000-00-00 00:00:00'),(124342,10,'M86.419 ','Chronic osteomyelitis with draining sinus, unspecified shoulder','Y','0000-00-00 00:00:00'),(124341,10,'M86.412 ','Chronic osteomyelitis with draining sinus, left shoulder','Y','0000-00-00 00:00:00'),(124340,10,'M86.411 ','Chronic osteomyelitis with draining sinus, right shoulder','Y','0000-00-00 00:00:00'),(124339,10,'M86.40 ','Chronic osteomyelitis with draining sinus, unspecified site','Y','0000-00-00 00:00:00'),(124338,10,'M86.39 ','Chronic multifocal osteomyelitis, multiple sites','Y','0000-00-00 00:00:00'),(124337,10,'M86.38 ','Chronic multifocal osteomyelitis, other site','Y','0000-00-00 00:00:00'),(124336,10,'M86.379 ','Chronic multifocal osteomyelitis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124335,10,'M86.372 ','Chronic multifocal osteomyelitis, left ankle and foot','Y','0000-00-00 00:00:00'),(124334,10,'M86.371 ','Chronic multifocal osteomyelitis, right ankle and foot','Y','0000-00-00 00:00:00'),(124333,10,'M86.369 ','Chronic multifocal osteomyelitis, unspecified tibia and fibula','Y','0000-00-00 00:00:00'),(124332,10,'M86.362 ','Chronic multifocal osteomyelitis, left tibia and fibula','Y','0000-00-00 00:00:00'),(124331,10,'M86.361 ','Chronic multifocal osteomyelitis, right tibia and fibula','Y','0000-00-00 00:00:00'),(124329,10,'M86.352 ','Chronic multifocal osteomyelitis, left femur','Y','0000-00-00 00:00:00'),(124330,10,'M86.359 ','Chronic multifocal osteomyelitis, unspecified femur','Y','0000-00-00 00:00:00'),(124328,10,'M86.351 ','Chronic multifocal osteomyelitis, right femur','Y','0000-00-00 00:00:00'),(124327,10,'M86.349 ','Chronic multifocal osteomyelitis, unspecified hand','Y','0000-00-00 00:00:00'),(124325,10,'M86.341 ','Chronic multifocal osteomyelitis, right hand','Y','0000-00-00 00:00:00'),(124326,10,'M86.342 ','Chronic multifocal osteomyelitis, left hand','Y','0000-00-00 00:00:00'),(124324,10,'M86.339 ','Chronic multifocal osteomyelitis, unspecified radius and ulna','Y','0000-00-00 00:00:00'),(124323,10,'M86.332 ','Chronic multifocal osteomyelitis, left radius and ulna','Y','0000-00-00 00:00:00'),(124322,10,'M86.331 ','Chronic multifocal osteomyelitis, right radius and ulna','Y','0000-00-00 00:00:00'),(124321,10,'M86.329 ','Chronic multifocal osteomyelitis, unspecified humerus','Y','0000-00-00 00:00:00'),(124320,10,'M86.322 ','Chronic multifocal osteomyelitis, left humerus','Y','0000-00-00 00:00:00'),(124319,10,'M86.321 ','Chronic multifocal osteomyelitis, right humerus','Y','0000-00-00 00:00:00'),(124318,10,'M86.319 ','Chronic multifocal osteomyelitis, unspecified shoulder','Y','0000-00-00 00:00:00'),(124317,10,'M86.312 ','Chronic multifocal osteomyelitis, left shoulder','Y','0000-00-00 00:00:00'),(124316,10,'M86.311 ','Chronic multifocal osteomyelitis, right shoulder','Y','0000-00-00 00:00:00'),(124315,10,'M86.30 ','Chronic multifocal osteomyelitis, unspecified site','Y','0000-00-00 00:00:00'),(124314,10,'M86.29 ','Subacute osteomyelitis, multiple sites','Y','0000-00-00 00:00:00'),(124313,10,'M86.28 ','Subacute osteomyelitis, other site','Y','0000-00-00 00:00:00'),(124311,10,'M86.272 ','Subacute osteomyelitis, left ankle and foot','Y','0000-00-00 00:00:00'),(124312,10,'M86.279 ','Subacute osteomyelitis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124310,10,'M86.271 ','Subacute osteomyelitis, right ankle and foot','Y','0000-00-00 00:00:00'),(124309,10,'M86.269 ','Subacute osteomyelitis, unspecified tibia and fibula','Y','0000-00-00 00:00:00'),(124307,10,'M86.261 ','Subacute osteomyelitis, right tibia and fibula','Y','0000-00-00 00:00:00'),(124308,10,'M86.262 ','Subacute osteomyelitis, left tibia and fibula','Y','0000-00-00 00:00:00'),(124306,10,'M86.259 ','Subacute osteomyelitis, unspecified femur','Y','0000-00-00 00:00:00'),(124304,10,'M86.251 ','Subacute osteomyelitis, right femur','Y','0000-00-00 00:00:00'),(124305,10,'M86.252 ','Subacute osteomyelitis, left femur','Y','0000-00-00 00:00:00'),(124303,10,'M86.249 ','Subacute osteomyelitis, unspecified hand','Y','0000-00-00 00:00:00'),(124301,10,'M86.241 ','Subacute osteomyelitis, right hand','Y','0000-00-00 00:00:00'),(124302,10,'M86.242 ','Subacute osteomyelitis, left hand','Y','0000-00-00 00:00:00'),(124300,10,'M86.239 ','Subacute osteomyelitis, unspecified radius and ulna','Y','0000-00-00 00:00:00'),(124299,10,'M86.232 ','Subacute osteomyelitis, left radius and ulna','Y','0000-00-00 00:00:00'),(124297,10,'M86.229 ','Subacute osteomyelitis, unspecified humerus','Y','0000-00-00 00:00:00'),(124298,10,'M86.231 ','Subacute osteomyelitis, right radius and ulna','Y','0000-00-00 00:00:00'),(124296,10,'M86.222 ','Subacute osteomyelitis, left humerus','Y','0000-00-00 00:00:00'),(124295,10,'M86.221 ','Subacute osteomyelitis, right humerus','Y','0000-00-00 00:00:00'),(124293,10,'M86.212 ','Subacute osteomyelitis, left shoulder','Y','0000-00-00 00:00:00'),(124294,10,'M86.219 ','Subacute osteomyelitis, unspecified shoulder','Y','0000-00-00 00:00:00'),(124292,10,'M86.211 ','Subacute osteomyelitis, right shoulder','Y','0000-00-00 00:00:00'),(124290,10,'M86.19 ','Other acute osteomyelitis, multiple sites','Y','0000-00-00 00:00:00'),(124291,10,'M86.20 ','Subacute osteomyelitis, unspecified site','Y','0000-00-00 00:00:00'),(124289,10,'M86.18 ','Other acute osteomyelitis, other site','Y','0000-00-00 00:00:00'),(124288,10,'M86.179 ','Other acute osteomyelitis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124287,10,'M86.172 ','Other acute osteomyelitis, left ankle and foot','Y','0000-00-00 00:00:00'),(124286,10,'M86.171 ','Other acute osteomyelitis, right ankle and foot','Y','0000-00-00 00:00:00'),(124285,10,'M86.169 ','Other acute osteomyelitis, unspecified tibia and fibula','Y','0000-00-00 00:00:00'),(124284,10,'M86.162 ','Other acute osteomyelitis, left tibia and fibula','Y','0000-00-00 00:00:00'),(124283,10,'M86.161 ','Other acute osteomyelitis, right tibia and fibula','Y','0000-00-00 00:00:00'),(124281,10,'M86.152 ','Other acute osteomyelitis, left femur','Y','0000-00-00 00:00:00'),(124282,10,'M86.159 ','Other acute osteomyelitis, unspecified femur','Y','0000-00-00 00:00:00'),(124280,10,'M86.151 ','Other acute osteomyelitis, right femur','Y','0000-00-00 00:00:00'),(124278,10,'M86.142 ','Other acute osteomyelitis, left hand','Y','0000-00-00 00:00:00'),(124279,10,'M86.149 ','Other acute osteomyelitis, unspecified hand','Y','0000-00-00 00:00:00'),(124277,10,'M86.141 ','Other acute osteomyelitis, right hand','Y','0000-00-00 00:00:00'),(124276,10,'M86.139 ','Other acute osteomyelitis, unspecified radius and ulna','Y','0000-00-00 00:00:00'),(124275,10,'M86.132 ','Other acute osteomyelitis, left radius and ulna','Y','0000-00-00 00:00:00'),(124274,10,'M86.131 ','Other acute osteomyelitis, right radius and ulna','Y','0000-00-00 00:00:00'),(124273,10,'M86.129 ','Other acute osteomyelitis, unspecified humerus','Y','0000-00-00 00:00:00'),(124271,10,'M86.121 ','Other acute osteomyelitis, right humerus','Y','0000-00-00 00:00:00'),(124272,10,'M86.122 ','Other acute osteomyelitis, left humerus','Y','0000-00-00 00:00:00'),(124270,10,'M86.119 ','Other acute osteomyelitis, unspecified shoulder','Y','0000-00-00 00:00:00'),(124269,10,'M86.112 ','Other acute osteomyelitis, left shoulder','Y','0000-00-00 00:00:00'),(124268,10,'M86.111 ','Other acute osteomyelitis, right shoulder','Y','0000-00-00 00:00:00'),(124267,10,'M86.10 ','Other acute osteomyelitis, unspecified site','Y','0000-00-00 00:00:00'),(124266,10,'M86.09 ','Acute hematogenous osteomyelitis, multiple sites','Y','0000-00-00 00:00:00'),(124265,10,'M86.08 ','Acute hematogenous osteomyelitis, other sites','Y','0000-00-00 00:00:00'),(124264,10,'M86.079 ','Acute hematogenous osteomyelitis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124263,10,'M86.072 ','Acute hematogenous osteomyelitis, left ankle and foot','Y','0000-00-00 00:00:00'),(124262,10,'M86.071 ','Acute hematogenous osteomyelitis, right ankle and foot','Y','0000-00-00 00:00:00'),(124261,10,'M86.069 ','Acute hematogenous osteomyelitis, unspecified tibia and fibula','Y','0000-00-00 00:00:00'),(124260,10,'M86.062 ','Acute hematogenous osteomyelitis, left tibia and fibula','Y','0000-00-00 00:00:00'),(124259,10,'M86.061 ','Acute hematogenous osteomyelitis, right tibia and fibula','Y','0000-00-00 00:00:00'),(124258,10,'M86.059 ','Acute hematogenous osteomyelitis, unspecified femur','Y','0000-00-00 00:00:00'),(124257,10,'M86.052 ','Acute hematogenous osteomyelitis, left femur','Y','0000-00-00 00:00:00'),(124256,10,'M86.051 ','Acute hematogenous osteomyelitis, right femur','Y','0000-00-00 00:00:00'),(124255,10,'M86.049 ','Acute hematogenous osteomyelitis, unspecified hand','Y','0000-00-00 00:00:00'),(124254,10,'M86.042 ','Acute hematogenous osteomyelitis, left hand','Y','0000-00-00 00:00:00'),(124253,10,'M86.041 ','Acute hematogenous osteomyelitis, right hand','Y','0000-00-00 00:00:00'),(124252,10,'M86.039 ','Acute hematogenous osteomyelitis, unspecified radius and ulna','Y','0000-00-00 00:00:00'),(124251,10,'M86.032 ','Acute hematogenous osteomyelitis, left radius and ulna','Y','0000-00-00 00:00:00'),(124250,10,'M86.031 ','Acute hematogenous osteomyelitis, right radius and ulna','Y','0000-00-00 00:00:00'),(124249,10,'M86.029 ','Acute hematogenous osteomyelitis, unspecified humerus','Y','0000-00-00 00:00:00'),(124248,10,'M86.022 ','Acute hematogenous osteomyelitis, left humerus','Y','0000-00-00 00:00:00'),(124247,10,'M86.021 ','Acute hematogenous osteomyelitis, right humerus','Y','0000-00-00 00:00:00'),(124246,10,'M86.019 ','Acute hematogenous osteomyelitis, unspecified shoulder','Y','0000-00-00 00:00:00'),(124245,10,'M86.012 ','Acute hematogenous osteomyelitis, left shoulder','Y','0000-00-00 00:00:00'),(124244,10,'M86.011 ','Acute hematogenous osteomyelitis, right shoulder','Y','0000-00-00 00:00:00'),(124243,10,'M86.00 ','Acute hematogenous osteomyelitis, unspecified site','Y','0000-00-00 00:00:00'),(124242,10,'M85.9 ','Disorder of bone density and structure, unspecified','Y','0000-00-00 00:00:00'),(124241,10,'M85.89 ','Other specified disorders of bone density and structure, multiple sites','Y','0000-00-00 00:00:00'),(124240,10,'M85.88 ','Other specified disorders of bone density and structure, other site','Y','0000-00-00 00:00:00'),(124239,10,'M85.879 ','Other specified disorders of bone density and structure, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124238,10,'M85.872 ','Other specified disorders of bone density and structure, left ankle and foot','Y','0000-00-00 00:00:00'),(124237,10,'M85.871 ','Other specified disorders of bone density and structure, right ankle and foot','Y','0000-00-00 00:00:00'),(124236,10,'M85.869 ','Other specified disorders of bone density and structure, unspecified lower leg','Y','0000-00-00 00:00:00'),(124235,10,'M85.862 ','Other specified disorders of bone density and structure, left lower leg','Y','0000-00-00 00:00:00'),(124234,10,'M85.861 ','Other specified disorders of bone density and structure, right lower leg','Y','0000-00-00 00:00:00'),(124233,10,'M85.859 ','Other specified disorders of bone density and structure, unspecified thigh','Y','0000-00-00 00:00:00'),(124232,10,'M85.852 ','Other specified disorders of bone density and structure, left thigh','Y','0000-00-00 00:00:00'),(124231,10,'M85.851 ','Other specified disorders of bone density and structure, right thigh','Y','0000-00-00 00:00:00'),(124230,10,'M85.849 ','Other specified disorders of bone density and structure, unspecified hand','Y','0000-00-00 00:00:00'),(124229,10,'M85.842 ','Other specified disorders of bone density and structure, left hand','Y','0000-00-00 00:00:00'),(124228,10,'M85.841 ','Other specified disorders of bone density and structure, right hand','Y','0000-00-00 00:00:00'),(124227,10,'M85.839 ','Other specified disorders of bone density and structure, unspecified forearm','Y','0000-00-00 00:00:00'),(124226,10,'M85.832 ','Other specified disorders of bone density and structure, left forearm','Y','0000-00-00 00:00:00'),(124225,10,'M85.831 ','Other specified disorders of bone density and structure, right forearm','Y','0000-00-00 00:00:00'),(124224,10,'M85.829 ','Other specified disorders of bone density and structure, unspecified upper arm','Y','0000-00-00 00:00:00'),(124223,10,'M85.822 ','Other specified disorders of bone density and structure, left upper arm','Y','0000-00-00 00:00:00'),(124222,10,'M85.821 ','Other specified disorders of bone density and structure, right upper arm','Y','0000-00-00 00:00:00'),(124221,10,'M85.819 ','Other specified disorders of bone density and structure, unspecified shoulder','Y','0000-00-00 00:00:00'),(124220,10,'M85.812 ','Other specified disorders of bone density and structure, left shoulder','Y','0000-00-00 00:00:00'),(124219,10,'M85.811 ','Other specified disorders of bone density and structure, right shoulder','Y','0000-00-00 00:00:00'),(124218,10,'M85.80 ','Other specified disorders of bone density and structure, unspecified site','Y','0000-00-00 00:00:00'),(124217,10,'M85.69 ','Other cyst of bone, multiple sites','Y','0000-00-00 00:00:00'),(124215,10,'M85.679 ','Other cyst of bone, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124216,10,'M85.68 ','Other cyst of bone, other site','Y','0000-00-00 00:00:00'),(124214,10,'M85.672 ','Other cyst of bone, left ankle and foot','Y','0000-00-00 00:00:00'),(124213,10,'M85.671 ','Other cyst of bone, right ankle and foot','Y','0000-00-00 00:00:00'),(124212,10,'M85.669 ','Other cyst of bone, unspecified lower leg','Y','0000-00-00 00:00:00'),(124211,10,'M85.662 ','Other cyst of bone, left lower leg','Y','0000-00-00 00:00:00'),(124210,10,'M85.661 ','Other cyst of bone, right lower leg','Y','0000-00-00 00:00:00'),(124209,10,'M85.659 ','Other cyst of bone, unspecified thigh','Y','0000-00-00 00:00:00'),(124208,10,'M85.652 ','Other cyst of bone, left thigh','Y','0000-00-00 00:00:00'),(124207,10,'M85.651 ','Other cyst of bone, right thigh','Y','0000-00-00 00:00:00'),(124206,10,'M85.649 ','Other cyst of bone, unspecified hand','Y','0000-00-00 00:00:00'),(124205,10,'M85.642 ','Other cyst of bone, left hand','Y','0000-00-00 00:00:00'),(124204,10,'M85.641 ','Other cyst of bone, right hand','Y','0000-00-00 00:00:00'),(124203,10,'M85.639 ','Other cyst of bone, unspecified forearm','Y','0000-00-00 00:00:00'),(124202,10,'M85.632 ','Other cyst of bone, left forearm','Y','0000-00-00 00:00:00'),(124201,10,'M85.631 ','Other cyst of bone, right forearm','Y','0000-00-00 00:00:00'),(124200,10,'M85.629 ','Other cyst of bone, unspecified upper arm','Y','0000-00-00 00:00:00'),(124199,10,'M85.622 ','Other cyst of bone, left upper arm','Y','0000-00-00 00:00:00'),(124198,10,'M85.621 ','Other cyst of bone, right upper arm','Y','0000-00-00 00:00:00'),(124197,10,'M85.619 ','Other cyst of bone, unspecified shoulder','Y','0000-00-00 00:00:00'),(124196,10,'M85.612 ','Other cyst of bone, left shoulder','Y','0000-00-00 00:00:00'),(124195,10,'M85.611 ','Other cyst of bone, right shoulder','Y','0000-00-00 00:00:00'),(124193,10,'M85.59 ','Aneurysmal bone cyst, multiple sites','Y','0000-00-00 00:00:00'),(124194,10,'M85.60 ','Other cyst of bone, unspecified site','Y','0000-00-00 00:00:00'),(124192,10,'M85.58 ','Aneurysmal bone cyst, other site','Y','0000-00-00 00:00:00'),(124191,10,'M85.579 ','Aneurysmal bone cyst, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124190,10,'M85.572 ','Aneurysmal bone cyst, left ankle and foot','Y','0000-00-00 00:00:00'),(124189,10,'M85.571 ','Aneurysmal bone cyst, right ankle and foot','Y','0000-00-00 00:00:00'),(124188,10,'M85.569 ','Aneurysmal bone cyst, unspecified lower leg','Y','0000-00-00 00:00:00'),(124187,10,'M85.562 ','Aneurysmal bone cyst, left lower leg','Y','0000-00-00 00:00:00'),(124186,10,'M85.561 ','Aneurysmal bone cyst, right lower leg','Y','0000-00-00 00:00:00'),(124185,10,'M85.559 ','Aneurysmal bone cyst, unspecified thigh','Y','0000-00-00 00:00:00'),(124183,10,'M85.551 ','Aneurysmal bone cyst, right thigh','Y','0000-00-00 00:00:00'),(124184,10,'M85.552 ','Aneurysmal bone cyst, left thigh','Y','0000-00-00 00:00:00'),(124182,10,'M85.549 ','Aneurysmal bone cyst, unspecified hand','Y','0000-00-00 00:00:00'),(124181,10,'M85.542 ','Aneurysmal bone cyst, left hand','Y','0000-00-00 00:00:00'),(124179,10,'M85.539 ','Aneurysmal bone cyst, unspecified forearm','Y','0000-00-00 00:00:00'),(124180,10,'M85.541 ','Aneurysmal bone cyst, right hand','Y','0000-00-00 00:00:00'),(124178,10,'M85.532 ','Aneurysmal bone cyst, left forearm','Y','0000-00-00 00:00:00'),(124177,10,'M85.531 ','Aneurysmal bone cyst, right forearm','Y','0000-00-00 00:00:00'),(124176,10,'M85.529 ','Aneurysmal bone cyst, unspecified upper arm','Y','0000-00-00 00:00:00'),(124175,10,'M85.522 ','Aneurysmal bone cyst, left upper arm','Y','0000-00-00 00:00:00'),(124174,10,'M85.521 ','Aneurysmal bone cyst, right upper arm','Y','0000-00-00 00:00:00'),(124173,10,'M85.519 ','Aneurysmal bone cyst, unspecified shoulder','Y','0000-00-00 00:00:00'),(124172,10,'M85.512 ','Aneurysmal bone cyst, left shoulder','Y','0000-00-00 00:00:00'),(124171,10,'M85.511 ','Aneurysmal bone cyst, right shoulder','Y','0000-00-00 00:00:00'),(124170,10,'M85.50 ','Aneurysmal bone cyst, unspecified site','Y','0000-00-00 00:00:00'),(124169,10,'M85.48 ','Solitary bone cyst, other site','Y','0000-00-00 00:00:00'),(124168,10,'M85.479 ','Solitary bone cyst, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124167,10,'M85.472 ','Solitary bone cyst, left ankle and foot','Y','0000-00-00 00:00:00'),(124166,10,'M85.471 ','Solitary bone cyst, right ankle and foot','Y','0000-00-00 00:00:00'),(124165,10,'M85.469 ','Solitary bone cyst, unspecified tibia and fibula','Y','0000-00-00 00:00:00'),(124164,10,'M85.462 ','Solitary bone cyst, left tibia and fibula','Y','0000-00-00 00:00:00'),(124163,10,'M85.461 ','Solitary bone cyst, right tibia and fibula','Y','0000-00-00 00:00:00'),(124162,10,'M85.459 ','Solitary bone cyst, unspecified pelvis','Y','0000-00-00 00:00:00'),(124161,10,'M85.452 ','Solitary bone cyst, left pelvis','Y','0000-00-00 00:00:00'),(124160,10,'M85.451 ','Solitary bone cyst, right pelvis','Y','0000-00-00 00:00:00'),(124159,10,'M85.449 ','Solitary bone cyst, unspecified hand','Y','0000-00-00 00:00:00'),(124157,10,'M85.441 ','Solitary bone cyst, right hand','Y','0000-00-00 00:00:00'),(124158,10,'M85.442 ','Solitary bone cyst, left hand','Y','0000-00-00 00:00:00'),(124156,10,'M85.439 ','Solitary bone cyst, unspecified ulna and radius','Y','0000-00-00 00:00:00'),(124155,10,'M85.432 ','Solitary bone cyst, left ulna and radius','Y','0000-00-00 00:00:00'),(124154,10,'M85.431 ','Solitary bone cyst, right ulna and radius','Y','0000-00-00 00:00:00'),(124153,10,'M85.429 ','Solitary bone cyst, unspecified humerus','Y','0000-00-00 00:00:00'),(124152,10,'M85.422 ','Solitary bone cyst, left humerus','Y','0000-00-00 00:00:00'),(124151,10,'M85.421 ','Solitary bone cyst, right humerus','Y','0000-00-00 00:00:00'),(124150,10,'M85.419 ','Solitary bone cyst, unspecified shoulder','Y','0000-00-00 00:00:00'),(124148,10,'M85.411 ','Solitary bone cyst, right shoulder','Y','0000-00-00 00:00:00'),(124149,10,'M85.412 ','Solitary bone cyst, left shoulder','Y','0000-00-00 00:00:00'),(124147,10,'M85.40 ','Solitary bone cyst, unspecified site','Y','0000-00-00 00:00:00'),(124146,10,'M85.39 ','Osteitis condensans, multiple sites','Y','0000-00-00 00:00:00'),(124145,10,'M85.38 ','Osteitis condensans, other site','Y','0000-00-00 00:00:00'),(124143,10,'M85.372 ','Osteitis condensans, left ankle and foot','Y','0000-00-00 00:00:00'),(124144,10,'M85.379 ','Osteitis condensans, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124142,10,'M85.371 ','Osteitis condensans, right ankle and foot','Y','0000-00-00 00:00:00'),(124141,10,'M85.369 ','Osteitis condensans, unspecified lower leg','Y','0000-00-00 00:00:00'),(124140,10,'M85.362 ','Osteitis condensans, left lower leg','Y','0000-00-00 00:00:00'),(124139,10,'M85.361 ','Osteitis condensans, right lower leg','Y','0000-00-00 00:00:00'),(124138,10,'M85.359 ','Osteitis condensans, unspecified thigh','Y','0000-00-00 00:00:00'),(124137,10,'M85.352 ','Osteitis condensans, left thigh','Y','0000-00-00 00:00:00'),(124136,10,'M85.351 ','Osteitis condensans, right thigh','Y','0000-00-00 00:00:00'),(124135,10,'M85.349 ','Osteitis condensans, unspecified hand','Y','0000-00-00 00:00:00'),(124134,10,'M85.342 ','Osteitis condensans, left hand','Y','0000-00-00 00:00:00'),(124133,10,'M85.341 ','Osteitis condensans, right hand','Y','0000-00-00 00:00:00'),(124132,10,'M85.339 ','Osteitis condensans, unspecified forearm','Y','0000-00-00 00:00:00'),(124131,10,'M85.332 ','Osteitis condensans, left forearm','Y','0000-00-00 00:00:00'),(124130,10,'M85.331 ','Osteitis condensans, right forearm','Y','0000-00-00 00:00:00'),(124129,10,'M85.329 ','Osteitis condensans, unspecified upper arm','Y','0000-00-00 00:00:00'),(124128,10,'M85.322 ','Osteitis condensans, left upper arm','Y','0000-00-00 00:00:00'),(124127,10,'M85.321 ','Osteitis condensans, right upper arm','Y','0000-00-00 00:00:00'),(124126,10,'M85.319 ','Osteitis condensans, unspecified shoulder','Y','0000-00-00 00:00:00'),(124125,10,'M85.312 ','Osteitis condensans, left shoulder','Y','0000-00-00 00:00:00'),(124124,10,'M85.311 ','Osteitis condensans, right shoulder','Y','0000-00-00 00:00:00'),(124123,10,'M85.30 ','Osteitis condensans, unspecified site','Y','0000-00-00 00:00:00'),(124121,10,'M85.19 ','Skeletal fluorosis, multiple sites','Y','0000-00-00 00:00:00'),(124122,10,'M85.2 ','Hyperostosis of skull','Y','0000-00-00 00:00:00'),(124120,10,'M85.18 ','Skeletal fluorosis, other site','Y','0000-00-00 00:00:00'),(124119,10,'M85.179 ','Skeletal fluorosis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124118,10,'M85.172 ','Skeletal fluorosis, left ankle and foot','Y','0000-00-00 00:00:00'),(124117,10,'M85.171 ','Skeletal fluorosis, right ankle and foot','Y','0000-00-00 00:00:00'),(124115,10,'M85.162 ','Skeletal fluorosis, left lower leg','Y','0000-00-00 00:00:00'),(124116,10,'M85.169 ','Skeletal fluorosis, unspecified lower leg','Y','0000-00-00 00:00:00'),(124114,10,'M85.161 ','Skeletal fluorosis, right lower leg','Y','0000-00-00 00:00:00'),(124113,10,'M85.159 ','Skeletal fluorosis, unspecified thigh','Y','0000-00-00 00:00:00'),(124112,10,'M85.152 ','Skeletal fluorosis, left thigh','Y','0000-00-00 00:00:00'),(124110,10,'M85.149 ','Skeletal fluorosis, unspecified hand','Y','0000-00-00 00:00:00'),(124111,10,'M85.151 ','Skeletal fluorosis, right thigh','Y','0000-00-00 00:00:00'),(124109,10,'M85.142 ','Skeletal fluorosis, left hand','Y','0000-00-00 00:00:00'),(124108,10,'M85.141 ','Skeletal fluorosis, right hand','Y','0000-00-00 00:00:00'),(124106,10,'M85.132 ','Skeletal fluorosis, left forearm','Y','0000-00-00 00:00:00'),(124107,10,'M85.139 ','Skeletal fluorosis, unspecified forearm','Y','0000-00-00 00:00:00'),(124105,10,'M85.131 ','Skeletal fluorosis, right forearm','Y','0000-00-00 00:00:00'),(124104,10,'M85.129 ','Skeletal fluorosis, unspecified upper arm','Y','0000-00-00 00:00:00'),(124103,10,'M85.122 ','Skeletal fluorosis, left upper arm','Y','0000-00-00 00:00:00'),(124102,10,'M85.121 ','Skeletal fluorosis, right upper arm','Y','0000-00-00 00:00:00'),(124101,10,'M85.119 ','Skeletal fluorosis, unspecified shoulder','Y','0000-00-00 00:00:00'),(124100,10,'M85.112 ','Skeletal fluorosis, left shoulder','Y','0000-00-00 00:00:00'),(124099,10,'M85.111 ','Skeletal fluorosis, right shoulder','Y','0000-00-00 00:00:00'),(124098,10,'M85.10 ','Skeletal fluorosis, unspecified site','Y','0000-00-00 00:00:00'),(124097,10,'M85.09 ','Fibrous dysplasia (monostotic), multiple sites','Y','0000-00-00 00:00:00'),(124096,10,'M85.08 ','Fibrous dysplasia (monostotic), other site','Y','0000-00-00 00:00:00'),(124095,10,'M85.079 ','Fibrous dysplasia (monostotic), unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124094,10,'M85.072 ','Fibrous dysplasia (monostotic), left ankle and foot','Y','0000-00-00 00:00:00'),(124093,10,'M85.071 ','Fibrous dysplasia (monostotic), right ankle and foot','Y','0000-00-00 00:00:00'),(124092,10,'M85.069 ','Fibrous dysplasia (monostotic), unspecified lower leg','Y','0000-00-00 00:00:00'),(124091,10,'M85.062 ','Fibrous dysplasia (monostotic), left lower leg','Y','0000-00-00 00:00:00'),(124090,10,'M85.061 ','Fibrous dysplasia (monostotic), right lower leg','Y','0000-00-00 00:00:00'),(124089,10,'M85.059 ','Fibrous dysplasia (monostotic), unspecified thigh','Y','0000-00-00 00:00:00'),(124088,10,'M85.052 ','Fibrous dysplasia (monostotic), left thigh','Y','0000-00-00 00:00:00'),(124087,10,'M85.051 ','Fibrous dysplasia (monostotic), right thigh','Y','0000-00-00 00:00:00'),(124086,10,'M85.049 ','Fibrous dysplasia (monostotic), unspecified hand','Y','0000-00-00 00:00:00'),(124084,10,'M85.041 ','Fibrous dysplasia (monostotic), right hand','Y','0000-00-00 00:00:00'),(124085,10,'M85.042 ','Fibrous dysplasia (monostotic), left hand','Y','0000-00-00 00:00:00'),(124083,10,'M85.039 ','Fibrous dysplasia (monostotic), unspecified forearm','Y','0000-00-00 00:00:00'),(124082,10,'M85.032 ','Fibrous dysplasia (monostotic), left forearm','Y','0000-00-00 00:00:00'),(124081,10,'M85.031 ','Fibrous dysplasia (monostotic), right forearm','Y','0000-00-00 00:00:00'),(124079,10,'M85.022 ','Fibrous dysplasia (monostotic), left upper arm','Y','0000-00-00 00:00:00'),(124080,10,'M85.029 ','Fibrous dysplasia (monostotic), unspecified upper arm','Y','0000-00-00 00:00:00'),(124078,10,'M85.021 ','Fibrous dysplasia (monostotic), right upper arm','Y','0000-00-00 00:00:00'),(124077,10,'M85.019 ','Fibrous dysplasia (monostotic), unspecified shoulder','Y','0000-00-00 00:00:00'),(124076,10,'M85.012 ','Fibrous dysplasia (monostotic), left shoulder','Y','0000-00-00 00:00:00'),(124075,10,'M85.011 ','Fibrous dysplasia (monostotic), right shoulder','Y','0000-00-00 00:00:00'),(124074,10,'M85.00 ','Fibrous dysplasia (monostotic), unspecified site','Y','0000-00-00 00:00:00'),(124072,10,'M84.88 ','Other disorders of continuity of bone, other site','Y','0000-00-00 00:00:00'),(124073,10,'M84.9 ','Disorder of continuity of bone, unspecified','Y','0000-00-00 00:00:00'),(124071,10,'M84.879 ','Other disorders of continuity of bone, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(124070,10,'M84.872 ','Other disorders of continuity of bone, left ankle and foot','Y','0000-00-00 00:00:00'),(124069,10,'M84.871 ','Other disorders of continuity of bone, right ankle and foot','Y','0000-00-00 00:00:00'),(124068,10,'M84.869 ','Other disorders of continuity of bone, unspecified tibia and fibula','Y','0000-00-00 00:00:00'),(124067,10,'M84.864 ','Other disorders of continuity of bone, left fibula','Y','0000-00-00 00:00:00'),(124066,10,'M84.863 ','Other disorders of continuity of bone, right fibula','Y','0000-00-00 00:00:00'),(124065,10,'M84.862 ','Other disorders of continuity of bone, left tibia','Y','0000-00-00 00:00:00'),(124064,10,'M84.861 ','Other disorders of continuity of bone, right tibia','Y','0000-00-00 00:00:00'),(124063,10,'M84.859 ','Other disorders of continuity of bone, unspecified pelvic region and thigh','Y','0000-00-00 00:00:00'),(124062,10,'M84.852 ','Other disorders of continuity of bone, left pelvic region and thigh','Y','0000-00-00 00:00:00'),(124061,10,'M84.851 ','Other disorders of continuity of bone, right pelvic region and thigh','Y','0000-00-00 00:00:00'),(124060,10,'M84.849 ','Other disorders of continuity of bone, unspecified hand','Y','0000-00-00 00:00:00'),(124059,10,'M84.842 ','Other disorders of continuity of bone, left hand','Y','0000-00-00 00:00:00'),(124058,10,'M84.841 ','Other disorders of continuity of bone, right hand','Y','0000-00-00 00:00:00'),(124057,10,'M84.839 ','Other disorders of continuity of bone, unspecified ulna and radius','Y','0000-00-00 00:00:00'),(124056,10,'M84.834 ','Other disorders of continuity of bone, left radius','Y','0000-00-00 00:00:00'),(124054,10,'M84.832 ','Other disorders of continuity of bone, left ulna','Y','0000-00-00 00:00:00'),(124055,10,'M84.833 ','Other disorders of continuity of bone, right radius','Y','0000-00-00 00:00:00'),(124053,10,'M84.831 ','Other disorders of continuity of bone, right ulna','Y','0000-00-00 00:00:00'),(124052,10,'M84.829 ','Other disorders of continuity of bone, unspecified humerus','Y','0000-00-00 00:00:00'),(124051,10,'M84.822 ','Other disorders of continuity of bone, left humerus','Y','0000-00-00 00:00:00'),(124050,10,'M84.821 ','Other disorders of continuity of bone, right humerus','Y','0000-00-00 00:00:00'),(124049,10,'M84.819 ','Other disorders of continuity of bone, unspecified shoulder','Y','0000-00-00 00:00:00'),(124048,10,'M84.812 ','Other disorders of continuity of bone, left shoulder','Y','0000-00-00 00:00:00'),(124047,10,'M84.811 ','Other disorders of continuity of bone, right shoulder','Y','0000-00-00 00:00:00'),(124046,10,'M84.80 ','Other disorders of continuity of bone, unspecified site','Y','0000-00-00 00:00:00'),(124045,10,'M84.759S ','Complete oblique atypical femoral fracture, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(124044,10,'M84.759P ','Complete oblique atypical femoral fracture, unspecified leg, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(124043,10,'M84.759K ','Complete oblique atypical femoral fracture, unspecified leg, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(124042,10,'M84.759G ','Complete oblique atypical femoral fracture, unspecified leg, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(124041,10,'M84.759D ','Complete oblique atypical femoral fracture, unspecified leg, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(124040,10,'M84.759A ','Complete oblique atypical femoral fracture, unspecified leg, initial encounter for fracture','Y','0000-00-00 00:00:00'),(124039,10,'M84.758S ','Complete oblique atypical femoral fracture, left leg, sequela','Y','0000-00-00 00:00:00'),(124038,10,'M84.758P ','Complete oblique atypical femoral fracture, left leg, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(124037,10,'M84.758K ','Complete oblique atypical femoral fracture, left leg, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(124036,10,'M84.758G ','Complete oblique atypical femoral fracture, left leg, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(124035,10,'M84.758D ','Complete oblique atypical femoral fracture, left leg, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(124034,10,'M84.758A ','Complete oblique atypical femoral fracture, left leg, initial encounter for fracture','Y','0000-00-00 00:00:00'),(124033,10,'M84.757S ','Complete oblique atypical femoral fracture, right leg, sequela','Y','0000-00-00 00:00:00'),(124032,10,'M84.757P ','Complete oblique atypical femoral fracture, right leg, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(124031,10,'M84.757K ','Complete oblique atypical femoral fracture, right leg, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(124030,10,'M84.757G ','Complete oblique atypical femoral fracture, right leg, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(124029,10,'M84.757D ','Complete oblique atypical femoral fracture, right leg, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(124028,10,'M84.757A ','Complete oblique atypical femoral fracture, right leg, initial encounter for fracture','Y','0000-00-00 00:00:00'),(124027,10,'M84.756S ','Complete transverse atypical femoral fracture, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(124026,10,'M84.756P ','Complete transverse atypical femoral fracture, unspecified leg, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(124025,10,'M84.756K ','Complete transverse atypical femoral fracture, unspecified leg, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(124024,10,'M84.756G ','Complete transverse atypical femoral fracture, unspecified leg, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(124023,10,'M84.756D ','Complete transverse atypical femoral fracture, unspecified leg, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(124022,10,'M84.756A ','Complete transverse atypical femoral fracture, unspecified leg, initial encounter for fracture','Y','0000-00-00 00:00:00'),(124021,10,'M84.755S ','Complete transverse atypical femoral fracture, left leg, sequela','Y','0000-00-00 00:00:00'),(124020,10,'M84.755P ','Complete transverse atypical femoral fracture, left leg, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(124019,10,'M84.755K ','Complete transverse atypical femoral fracture, left leg, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(124018,10,'M84.755G ','Complete transverse atypical femoral fracture, left leg, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(124017,10,'M84.755D ','Complete transverse atypical femoral fracture, left leg, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(124016,10,'M84.755A ','Complete transverse atypical femoral fracture, left leg, initial encounter for fracture','Y','0000-00-00 00:00:00'),(124015,10,'M84.754S ','Complete transverse atypical femoral fracture, right leg, sequela','Y','0000-00-00 00:00:00'),(124014,10,'M84.754P ','Complete transverse atypical femoral fracture, right leg, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(124013,10,'M84.754K ','Complete transverse atypical femoral fracture, right leg, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(124012,10,'M84.754G ','Complete transverse atypical femoral fracture, right leg, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(124011,10,'M84.754D ','Complete transverse atypical femoral fracture, right leg, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(124010,10,'M84.754A ','Complete transverse atypical femoral fracture, right leg, initial encounter for fracture','Y','0000-00-00 00:00:00'),(124009,10,'M84.753S ','Incomplete atypical femoral fracture, unspecified leg, sequela','Y','0000-00-00 00:00:00'),(124008,10,'M84.753P ','Incomplete atypical femoral fracture, unspecified leg, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(124007,10,'M84.753K ','Incomplete atypical femoral fracture, unspecified leg, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(124006,10,'M84.753G ','Incomplete atypical femoral fracture, unspecified leg, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(124005,10,'M84.753D ','Incomplete atypical femoral fracture, unspecified leg, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(124004,10,'M84.753A ','Incomplete atypical femoral fracture, unspecified leg, initial encounter for fracture','Y','0000-00-00 00:00:00'),(124003,10,'M84.752S ','Incomplete atypical femoral fracture, left leg, sequela','Y','0000-00-00 00:00:00'),(124002,10,'M84.752P ','Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(124001,10,'M84.752K ','Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(124000,10,'M84.752G ','Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123999,10,'M84.752D ','Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123998,10,'M84.752A ','Incomplete atypical femoral fracture, left leg, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123997,10,'M84.751S ','Incomplete atypical femoral fracture, right leg, sequela','Y','0000-00-00 00:00:00'),(123996,10,'M84.751P ','Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123995,10,'M84.751K ','Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123994,10,'M84.751G ','Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123993,10,'M84.751D ','Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123992,10,'M84.751A ','Incomplete atypical femoral fracture, right leg, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123991,10,'M84.750S ','Atypical femoral fracture, unspecified, sequela','Y','0000-00-00 00:00:00'),(123990,10,'M84.750P ','Atypical femoral fracture, unspecified, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123989,10,'M84.750K ','Atypical femoral fracture, unspecified, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123988,10,'M84.750G ','Atypical femoral fracture, unspecified, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123987,10,'M84.750D ','Atypical femoral fracture, unspecified, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123986,10,'M84.750A ','Atypical femoral fracture, unspecified, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123985,10,'M84.68XS ','Pathological fracture in other disease, other site, sequela','Y','0000-00-00 00:00:00'),(123984,10,'M84.68XP ','Pathological fracture in other disease, other site, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123983,10,'M84.68XK ','Pathological fracture in other disease, other site, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123982,10,'M84.68XG ','Pathological fracture in other disease, other site, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123981,10,'M84.68XD ','Pathological fracture in other disease, other site, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123980,10,'M84.68XA ','Pathological fracture in other disease, other site, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123979,10,'M84.676S ','Pathological fracture in other disease, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(123978,10,'M84.676P ','Pathological fracture in other disease, unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123977,10,'M84.676K ','Pathological fracture in other disease, unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123976,10,'M84.676G ','Pathological fracture in other disease, unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123975,10,'M84.676D ','Pathological fracture in other disease, unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123974,10,'M84.676A ','Pathological fracture in other disease, unspecified foot, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123973,10,'M84.675S ','Pathological fracture in other disease, left foot, sequela','Y','0000-00-00 00:00:00'),(123972,10,'M84.675P ','Pathological fracture in other disease, left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123971,10,'M84.675K ','Pathological fracture in other disease, left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123970,10,'M84.675G ','Pathological fracture in other disease, left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123969,10,'M84.675D ','Pathological fracture in other disease, left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123968,10,'M84.675A ','Pathological fracture in other disease, left foot, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123967,10,'M84.674S ','Pathological fracture in other disease, right foot, sequela','Y','0000-00-00 00:00:00'),(123966,10,'M84.674P ','Pathological fracture in other disease, right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123965,10,'M84.674K ','Pathological fracture in other disease, right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123964,10,'M84.674G ','Pathological fracture in other disease, right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123963,10,'M84.674D ','Pathological fracture in other disease, right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123962,10,'M84.674A ','Pathological fracture in other disease, right foot, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123961,10,'M84.673S ','Pathological fracture in other disease, unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(123960,10,'M84.673P ','Pathological fracture in other disease, unspecified ankle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123959,10,'M84.673K ','Pathological fracture in other disease, unspecified ankle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123958,10,'M84.673G ','Pathological fracture in other disease, unspecified ankle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123957,10,'M84.673D ','Pathological fracture in other disease, unspecified ankle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123956,10,'M84.673A ','Pathological fracture in other disease, unspecified ankle, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123955,10,'M84.672S ','Pathological fracture in other disease, left ankle, sequela','Y','0000-00-00 00:00:00'),(123954,10,'M84.672P ','Pathological fracture in other disease, left ankle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123953,10,'M84.672K ','Pathological fracture in other disease, left ankle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123952,10,'M84.672G ','Pathological fracture in other disease, left ankle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123951,10,'M84.672D ','Pathological fracture in other disease, left ankle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123950,10,'M84.672A ','Pathological fracture in other disease, left ankle, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123949,10,'M84.671S ','Pathological fracture in other disease, right ankle, sequela','Y','0000-00-00 00:00:00'),(123948,10,'M84.671P ','Pathological fracture in other disease, right ankle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123947,10,'M84.671K ','Pathological fracture in other disease, right ankle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123946,10,'M84.671G ','Pathological fracture in other disease, right ankle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123945,10,'M84.671D ','Pathological fracture in other disease, right ankle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123944,10,'M84.671A ','Pathological fracture in other disease, right ankle, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123943,10,'M84.669S ','Pathological fracture in other disease, unspecified tibia and fibula, sequela','Y','0000-00-00 00:00:00'),(123942,10,'M84.669P ','Pathological fracture in other disease, unspecified tibia and fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123941,10,'M84.669K ','Pathological fracture in other disease, unspecified tibia and fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123940,10,'M84.669G ','Pathological fracture in other disease, unspecified tibia and fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123939,10,'M84.669D ','Pathological fracture in other disease, unspecified tibia and fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123938,10,'M84.669A ','Pathological fracture in other disease, unspecified tibia and fibula, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123937,10,'M84.664S ','Pathological fracture in other disease, left fibula, sequela','Y','0000-00-00 00:00:00'),(123936,10,'M84.664P ','Pathological fracture in other disease, left fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123935,10,'M84.664K ','Pathological fracture in other disease, left fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123934,10,'M84.664G ','Pathological fracture in other disease, left fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123933,10,'M84.664D ','Pathological fracture in other disease, left fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123932,10,'M84.664A ','Pathological fracture in other disease, left fibula, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123931,10,'M84.663S ','Pathological fracture in other disease, right fibula, sequela','Y','0000-00-00 00:00:00'),(123930,10,'M84.663P ','Pathological fracture in other disease, right fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123929,10,'M84.663K ','Pathological fracture in other disease, right fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123928,10,'M84.663G ','Pathological fracture in other disease, right fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123927,10,'M84.663D ','Pathological fracture in other disease, right fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123926,10,'M84.663A ','Pathological fracture in other disease, right fibula, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123925,10,'M84.662S ','Pathological fracture in other disease, left tibia, sequela','Y','0000-00-00 00:00:00'),(123924,10,'M84.662P ','Pathological fracture in other disease, left tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123923,10,'M84.662K ','Pathological fracture in other disease, left tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123922,10,'M84.662G ','Pathological fracture in other disease, left tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123921,10,'M84.662D ','Pathological fracture in other disease, left tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123920,10,'M84.662A ','Pathological fracture in other disease, left tibia, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123919,10,'M84.661S ','Pathological fracture in other disease, right tibia, sequela','Y','0000-00-00 00:00:00'),(123918,10,'M84.661P ','Pathological fracture in other disease, right tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123917,10,'M84.661K ','Pathological fracture in other disease, right tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123916,10,'M84.661G ','Pathological fracture in other disease, right tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123915,10,'M84.661D ','Pathological fracture in other disease, right tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123914,10,'M84.661A ','Pathological fracture in other disease, right tibia, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123913,10,'M84.659S ','Pathological fracture in other disease, hip, unspecified, sequela','Y','0000-00-00 00:00:00'),(123912,10,'M84.659P ','Pathological fracture in other disease, hip, unspecified, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123911,10,'M84.659K ','Pathological fracture in other disease, hip, unspecified, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123910,10,'M84.659G ','Pathological fracture in other disease, hip, unspecified, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123909,10,'M84.659D ','Pathological fracture in other disease, hip, unspecified, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123908,10,'M84.659A ','Pathological fracture in other disease, hip, unspecified, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123907,10,'M84.653S ','Pathological fracture in other disease, unspecified femur, sequela','Y','0000-00-00 00:00:00'),(123906,10,'M84.653P ','Pathological fracture in other disease, unspecified femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123905,10,'M84.653K ','Pathological fracture in other disease, unspecified femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123904,10,'M84.653G ','Pathological fracture in other disease, unspecified femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123903,10,'M84.653D ','Pathological fracture in other disease, unspecified femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123902,10,'M84.653A ','Pathological fracture in other disease, unspecified femur, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123901,10,'M84.652S ','Pathological fracture in other disease, left femur, sequela','Y','0000-00-00 00:00:00'),(123900,10,'M84.652P ','Pathological fracture in other disease, left femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123899,10,'M84.652K ','Pathological fracture in other disease, left femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123898,10,'M84.652G ','Pathological fracture in other disease, left femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123897,10,'M84.652D ','Pathological fracture in other disease, left femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123896,10,'M84.652A ','Pathological fracture in other disease, left femur, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123895,10,'M84.651S ','Pathological fracture in other disease, right femur, sequela','Y','0000-00-00 00:00:00'),(123894,10,'M84.651P ','Pathological fracture in other disease, right femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123893,10,'M84.651K ','Pathological fracture in other disease, right femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123892,10,'M84.651G ','Pathological fracture in other disease, right femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123891,10,'M84.651D ','Pathological fracture in other disease, right femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123890,10,'M84.651A ','Pathological fracture in other disease, right femur, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123889,10,'M84.650S ','Pathological fracture in other disease, pelvis, sequela','Y','0000-00-00 00:00:00'),(123888,10,'M84.650P ','Pathological fracture in other disease, pelvis, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123887,10,'M84.650K ','Pathological fracture in other disease, pelvis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123886,10,'M84.650G ','Pathological fracture in other disease, pelvis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123885,10,'M84.650D ','Pathological fracture in other disease, pelvis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123884,10,'M84.650A ','Pathological fracture in other disease, pelvis, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123883,10,'M84.649S ','Pathological fracture in other disease, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(123882,10,'M84.649P ','Pathological fracture in other disease, unspecified hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123881,10,'M84.649K ','Pathological fracture in other disease, unspecified hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123880,10,'M84.649G ','Pathological fracture in other disease, unspecified hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123879,10,'M84.649D ','Pathological fracture in other disease, unspecified hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123878,10,'M84.649A ','Pathological fracture in other disease, unspecified hand, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123877,10,'M84.642S ','Pathological fracture in other disease, left hand, sequela','Y','0000-00-00 00:00:00'),(123876,10,'M84.642P ','Pathological fracture in other disease, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123875,10,'M84.642K ','Pathological fracture in other disease, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123874,10,'M84.642G ','Pathological fracture in other disease, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123873,10,'M84.642D ','Pathological fracture in other disease, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123872,10,'M84.642A ','Pathological fracture in other disease, left hand, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123871,10,'M84.641S ','Pathological fracture in other disease, right hand, sequela','Y','0000-00-00 00:00:00'),(123870,10,'M84.641P ','Pathological fracture in other disease, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123869,10,'M84.641K ','Pathological fracture in other disease, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123868,10,'M84.641G ','Pathological fracture in other disease, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123867,10,'M84.641D ','Pathological fracture in other disease, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123866,10,'M84.641A ','Pathological fracture in other disease, right hand, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123865,10,'M84.639S ','Pathological fracture in other disease, unspecified ulna and radius, sequela','Y','0000-00-00 00:00:00'),(123864,10,'M84.639P ','Pathological fracture in other disease, unspecified ulna and radius, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123863,10,'M84.639K ','Pathological fracture in other disease, unspecified ulna and radius, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123862,10,'M84.639G ','Pathological fracture in other disease, unspecified ulna and radius, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123861,10,'M84.639D ','Pathological fracture in other disease, unspecified ulna and radius, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123860,10,'M84.639A ','Pathological fracture in other disease, unspecified ulna and radius, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123859,10,'M84.634S ','Pathological fracture in other disease, left radius, sequela','Y','0000-00-00 00:00:00'),(123858,10,'M84.634P ','Pathological fracture in other disease, left radius, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123857,10,'M84.634K ','Pathological fracture in other disease, left radius, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123856,10,'M84.634G ','Pathological fracture in other disease, left radius, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123855,10,'M84.634D ','Pathological fracture in other disease, left radius, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123854,10,'M84.634A ','Pathological fracture in other disease, left radius, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123853,10,'M84.633S ','Pathological fracture in other disease, right radius, sequela','Y','0000-00-00 00:00:00'),(123852,10,'M84.633P ','Pathological fracture in other disease, right radius, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123851,10,'M84.633K ','Pathological fracture in other disease, right radius, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123850,10,'M84.633G ','Pathological fracture in other disease, right radius, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123849,10,'M84.633D ','Pathological fracture in other disease, right radius, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123848,10,'M84.633A ','Pathological fracture in other disease, right radius, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123847,10,'M84.632S ','Pathological fracture in other disease, left ulna, sequela','Y','0000-00-00 00:00:00'),(123846,10,'M84.632P ','Pathological fracture in other disease, left ulna, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123845,10,'M84.632K ','Pathological fracture in other disease, left ulna, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123844,10,'M84.632G ','Pathological fracture in other disease, left ulna, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123843,10,'M84.632D ','Pathological fracture in other disease, left ulna, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123842,10,'M84.632A ','Pathological fracture in other disease, left ulna, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123841,10,'M84.631S ','Pathological fracture in other disease, right ulna, sequela','Y','0000-00-00 00:00:00'),(123840,10,'M84.631P ','Pathological fracture in other disease, right ulna, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123839,10,'M84.631K ','Pathological fracture in other disease, right ulna, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123838,10,'M84.631G ','Pathological fracture in other disease, right ulna, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123837,10,'M84.631D ','Pathological fracture in other disease, right ulna, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123836,10,'M84.631A ','Pathological fracture in other disease, right ulna, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123835,10,'M84.629S ','Pathological fracture in other disease, unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(123834,10,'M84.629P ','Pathological fracture in other disease, unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123833,10,'M84.629K ','Pathological fracture in other disease, unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123832,10,'M84.629G ','Pathological fracture in other disease, unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123831,10,'M84.629D ','Pathological fracture in other disease, unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123830,10,'M84.629A ','Pathological fracture in other disease, unspecified humerus, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123829,10,'M84.622S ','Pathological fracture in other disease, left humerus, sequela','Y','0000-00-00 00:00:00'),(123828,10,'M84.622P ','Pathological fracture in other disease, left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123827,10,'M84.622K ','Pathological fracture in other disease, left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123826,10,'M84.622G ','Pathological fracture in other disease, left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123825,10,'M84.622D ','Pathological fracture in other disease, left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123824,10,'M84.622A ','Pathological fracture in other disease, left humerus, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123823,10,'M84.621S ','Pathological fracture in other disease, right humerus, sequela','Y','0000-00-00 00:00:00'),(123822,10,'M84.621P ','Pathological fracture in other disease, right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123821,10,'M84.621K ','Pathological fracture in other disease, right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123820,10,'M84.621G ','Pathological fracture in other disease, right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123819,10,'M84.621D ','Pathological fracture in other disease, right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123818,10,'M84.621A ','Pathological fracture in other disease, right humerus, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123817,10,'M84.619S ','Pathological fracture in other disease, unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(123816,10,'M84.619P ','Pathological fracture in other disease, unspecified shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123815,10,'M84.619K ','Pathological fracture in other disease, unspecified shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123814,10,'M84.619G ','Pathological fracture in other disease, unspecified shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123813,10,'M84.619D ','Pathological fracture in other disease, unspecified shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123812,10,'M84.619A ','Pathological fracture in other disease, unspecified shoulder, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123811,10,'M84.612S ','Pathological fracture in other disease, left shoulder, sequela','Y','0000-00-00 00:00:00'),(123810,10,'M84.612P ','Pathological fracture in other disease, left shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123809,10,'M84.612K ','Pathological fracture in other disease, left shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123808,10,'M84.612G ','Pathological fracture in other disease, left shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123807,10,'M84.612D ','Pathological fracture in other disease, left shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123806,10,'M84.612A ','Pathological fracture in other disease, left shoulder, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123805,10,'M84.611S ','Pathological fracture in other disease, right shoulder, sequela','Y','0000-00-00 00:00:00'),(123804,10,'M84.611P ','Pathological fracture in other disease, right shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123803,10,'M84.611K ','Pathological fracture in other disease, right shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123802,10,'M84.611G ','Pathological fracture in other disease, right shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123801,10,'M84.611D ','Pathological fracture in other disease, right shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123800,10,'M84.611A ','Pathological fracture in other disease, right shoulder, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123799,10,'M84.60XS ','Pathological fracture in other disease, unspecified site, sequela','Y','0000-00-00 00:00:00'),(123798,10,'M84.60XP ','Pathological fracture in other disease, unspecified site, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123797,10,'M84.60XK ','Pathological fracture in other disease, unspecified site, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123796,10,'M84.60XG ','Pathological fracture in other disease, unspecified site, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123795,10,'M84.60XD ','Pathological fracture in other disease, unspecified site, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123794,10,'M84.60XA ','Pathological fracture in other disease, unspecified site, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123793,10,'M84.58XS ','Pathological fracture in neoplastic disease, other specified site, sequela','Y','0000-00-00 00:00:00'),(123792,10,'M84.58XP ','Pathological fracture in neoplastic disease, other specified site, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123791,10,'M84.58XK ','Pathological fracture in neoplastic disease, other specified site, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123790,10,'M84.58XG ','Pathological fracture in neoplastic disease, other specified site, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123789,10,'M84.58XD ','Pathological fracture in neoplastic disease, other specified site, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123788,10,'M84.58XA ','Pathological fracture in neoplastic disease, other specified site, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123787,10,'M84.576S ','Pathological fracture in neoplastic disease, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(123786,10,'M84.576P ','Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123785,10,'M84.576K ','Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123784,10,'M84.576G ','Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123783,10,'M84.576D ','Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123782,10,'M84.576A ','Pathological fracture in neoplastic disease, unspecified foot, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123781,10,'M84.575S ','Pathological fracture in neoplastic disease, left foot, sequela','Y','0000-00-00 00:00:00'),(123780,10,'M84.575P ','Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123779,10,'M84.575K ','Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123778,10,'M84.575G ','Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123777,10,'M84.575D ','Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123776,10,'M84.575A ','Pathological fracture in neoplastic disease, left foot, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123775,10,'M84.574S ','Pathological fracture in neoplastic disease, right foot, sequela','Y','0000-00-00 00:00:00'),(123774,10,'M84.574P ','Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123773,10,'M84.574K ','Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123772,10,'M84.574G ','Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123771,10,'M84.574D ','Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123770,10,'M84.574A ','Pathological fracture in neoplastic disease, right foot, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123769,10,'M84.573S ','Pathological fracture in neoplastic disease, unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(123768,10,'M84.573P ','Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123767,10,'M84.573K ','Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123766,10,'M84.573G ','Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123765,10,'M84.573D ','Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123764,10,'M84.573A ','Pathological fracture in neoplastic disease, unspecified ankle, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123763,10,'M84.572S ','Pathological fracture in neoplastic disease, left ankle, sequela','Y','0000-00-00 00:00:00'),(123762,10,'M84.572P ','Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123761,10,'M84.572K ','Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123760,10,'M84.572G ','Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123759,10,'M84.572D ','Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123758,10,'M84.572A ','Pathological fracture in neoplastic disease, left ankle, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123757,10,'M84.571S ','Pathological fracture in neoplastic disease, right ankle, sequela','Y','0000-00-00 00:00:00'),(123756,10,'M84.571P ','Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123755,10,'M84.571K ','Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123754,10,'M84.571G ','Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123753,10,'M84.571D ','Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123752,10,'M84.571A ','Pathological fracture in neoplastic disease, right ankle, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123751,10,'M84.569S ','Pathological fracture in neoplastic disease, unspecified tibia and fibula, sequela','Y','0000-00-00 00:00:00'),(123750,10,'M84.569P ','Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123749,10,'M84.569K ','Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123748,10,'M84.569G ','Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123747,10,'M84.569D ','Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123746,10,'M84.569A ','Pathological fracture in neoplastic disease, unspecified tibia and fibula, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123745,10,'M84.564S ','Pathological fracture in neoplastic disease, left fibula, sequela','Y','0000-00-00 00:00:00'),(123744,10,'M84.564P ','Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123743,10,'M84.564K ','Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123742,10,'M84.564G ','Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123741,10,'M84.564D ','Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123740,10,'M84.564A ','Pathological fracture in neoplastic disease, left fibula, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123739,10,'M84.563S ','Pathological fracture in neoplastic disease, right fibula, sequela','Y','0000-00-00 00:00:00'),(123738,10,'M84.563P ','Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123737,10,'M84.563K ','Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123736,10,'M84.563G ','Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123735,10,'M84.563D ','Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123734,10,'M84.563A ','Pathological fracture in neoplastic disease, right fibula, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123733,10,'M84.562S ','Pathological fracture in neoplastic disease, left tibia, sequela','Y','0000-00-00 00:00:00'),(123732,10,'M84.562P ','Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123731,10,'M84.562K ','Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123730,10,'M84.562G ','Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123729,10,'M84.562D ','Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123728,10,'M84.562A ','Pathological fracture in neoplastic disease, left tibia, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123727,10,'M84.561S ','Pathological fracture in neoplastic disease, right tibia, sequela','Y','0000-00-00 00:00:00'),(123726,10,'M84.561P ','Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123725,10,'M84.561K ','Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123724,10,'M84.561G ','Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123723,10,'M84.561D ','Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123722,10,'M84.561A ','Pathological fracture in neoplastic disease, right tibia, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123721,10,'M84.559S ','Pathological fracture in neoplastic disease, hip, unspecified, sequela','Y','0000-00-00 00:00:00'),(123720,10,'M84.559P ','Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123719,10,'M84.559K ','Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123718,10,'M84.559G ','Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123717,10,'M84.559D ','Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123716,10,'M84.559A ','Pathological fracture in neoplastic disease, hip, unspecified, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123715,10,'M84.553S ','Pathological fracture in neoplastic disease, unspecified femur, sequela','Y','0000-00-00 00:00:00'),(123714,10,'M84.553P ','Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123713,10,'M84.553K ','Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123712,10,'M84.553G ','Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123711,10,'M84.553D ','Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123710,10,'M84.553A ','Pathological fracture in neoplastic disease, unspecified femur, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123709,10,'M84.552S ','Pathological fracture in neoplastic disease, left femur, sequela','Y','0000-00-00 00:00:00'),(123708,10,'M84.552P ','Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123707,10,'M84.552K ','Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123706,10,'M84.552G ','Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123705,10,'M84.552D ','Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123704,10,'M84.552A ','Pathological fracture in neoplastic disease, left femur, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123703,10,'M84.551S ','Pathological fracture in neoplastic disease, right femur, sequela','Y','0000-00-00 00:00:00'),(123702,10,'M84.551P ','Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123701,10,'M84.551K ','Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123700,10,'M84.551G ','Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123699,10,'M84.551D ','Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123698,10,'M84.551A ','Pathological fracture in neoplastic disease, right femur, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123697,10,'M84.550S ','Pathological fracture in neoplastic disease, pelvis, sequela','Y','0000-00-00 00:00:00'),(123696,10,'M84.550P ','Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123695,10,'M84.550K ','Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123694,10,'M84.550G ','Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123693,10,'M84.550D ','Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123692,10,'M84.550A ','Pathological fracture in neoplastic disease, pelvis, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123691,10,'M84.549S ','Pathological fracture in neoplastic disease, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(123690,10,'M84.549P ','Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123689,10,'M84.549K ','Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123688,10,'M84.549G ','Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123687,10,'M84.549D ','Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123686,10,'M84.549A ','Pathological fracture in neoplastic disease, unspecified hand, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123685,10,'M84.542S ','Pathological fracture in neoplastic disease, left hand, sequela','Y','0000-00-00 00:00:00'),(123684,10,'M84.542P ','Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123683,10,'M84.542K ','Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123682,10,'M84.542G ','Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123681,10,'M84.542D ','Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123680,10,'M84.542A ','Pathological fracture in neoplastic disease, left hand, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123679,10,'M84.541S ','Pathological fracture in neoplastic disease, right hand, sequela','Y','0000-00-00 00:00:00'),(123678,10,'M84.541P ','Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123677,10,'M84.541K ','Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123676,10,'M84.541G ','Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123675,10,'M84.541D ','Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123674,10,'M84.541A ','Pathological fracture in neoplastic disease, right hand, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123673,10,'M84.539S ','Pathological fracture in neoplastic disease, unspecified ulna and radius, sequela','Y','0000-00-00 00:00:00'),(123672,10,'M84.539P ','Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123671,10,'M84.539K ','Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123670,10,'M84.539G ','Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123669,10,'M84.539D ','Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123668,10,'M84.539A ','Pathological fracture in neoplastic disease, unspecified ulna and radius, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123667,10,'M84.534S ','Pathological fracture in neoplastic disease, left radius, sequela','Y','0000-00-00 00:00:00'),(123666,10,'M84.534P ','Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123665,10,'M84.534K ','Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123664,10,'M84.534G ','Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123663,10,'M84.534D ','Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123662,10,'M84.534A ','Pathological fracture in neoplastic disease, left radius, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123661,10,'M84.533S ','Pathological fracture in neoplastic disease, right radius, sequela','Y','0000-00-00 00:00:00'),(123660,10,'M84.533P ','Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123659,10,'M84.533K ','Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123658,10,'M84.533G ','Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123657,10,'M84.533D ','Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123656,10,'M84.533A ','Pathological fracture in neoplastic disease, right radius, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123655,10,'M84.532S ','Pathological fracture in neoplastic disease, left ulna, sequela','Y','0000-00-00 00:00:00'),(123654,10,'M84.532P ','Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123653,10,'M84.532K ','Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123652,10,'M84.532G ','Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123651,10,'M84.532D ','Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123650,10,'M84.532A ','Pathological fracture in neoplastic disease, left ulna, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123649,10,'M84.531S ','Pathological fracture in neoplastic disease, right ulna, sequela','Y','0000-00-00 00:00:00'),(123648,10,'M84.531P ','Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123647,10,'M84.531K ','Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123646,10,'M84.531G ','Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123645,10,'M84.531D ','Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123644,10,'M84.531A ','Pathological fracture in neoplastic disease, right ulna, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123643,10,'M84.529S ','Pathological fracture in neoplastic disease, unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(123642,10,'M84.529P ','Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123641,10,'M84.529K ','Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123640,10,'M84.529G ','Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123639,10,'M84.529D ','Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123638,10,'M84.529A ','Pathological fracture in neoplastic disease, unspecified humerus, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123637,10,'M84.522S ','Pathological fracture in neoplastic disease, left humerus, sequela','Y','0000-00-00 00:00:00'),(123636,10,'M84.522P ','Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123635,10,'M84.522K ','Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123634,10,'M84.522G ','Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123633,10,'M84.522D ','Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123631,10,'M84.521S ','Pathological fracture in neoplastic disease, right humerus, sequela','Y','0000-00-00 00:00:00'),(123632,10,'M84.522A ','Pathological fracture in neoplastic disease, left humerus, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123630,10,'M84.521P ','Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123629,10,'M84.521K ','Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123628,10,'M84.521G ','Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123627,10,'M84.521D ','Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123626,10,'M84.521A ','Pathological fracture in neoplastic disease, right humerus, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123625,10,'M84.519S ','Pathological fracture in neoplastic disease, unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(123624,10,'M84.519P ','Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123623,10,'M84.519K ','Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123622,10,'M84.519G ','Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123621,10,'M84.519D ','Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123620,10,'M84.519A ','Pathological fracture in neoplastic disease, unspecified shoulder, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123619,10,'M84.512S ','Pathological fracture in neoplastic disease, left shoulder, sequela','Y','0000-00-00 00:00:00'),(123618,10,'M84.512P ','Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123617,10,'M84.512K ','Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123616,10,'M84.512G ','Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123615,10,'M84.512D ','Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123614,10,'M84.512A ','Pathological fracture in neoplastic disease, left shoulder, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123613,10,'M84.511S ','Pathological fracture in neoplastic disease, right shoulder, sequela','Y','0000-00-00 00:00:00'),(123612,10,'M84.511P ','Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123611,10,'M84.511K ','Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123610,10,'M84.511G ','Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123609,10,'M84.511D ','Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123608,10,'M84.511A ','Pathological fracture in neoplastic disease, right shoulder, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123607,10,'M84.50XS ','Pathological fracture in neoplastic disease, unspecified site, sequela','Y','0000-00-00 00:00:00'),(123606,10,'M84.50XP ','Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123605,10,'M84.50XK ','Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123604,10,'M84.50XG ','Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123603,10,'M84.50XD ','Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123602,10,'M84.50XA ','Pathological fracture in neoplastic disease, unspecified site, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123601,10,'M84.48XS ','Pathological fracture, other site, sequela','Y','0000-00-00 00:00:00'),(123600,10,'M84.48XP ','Pathological fracture, other site, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123599,10,'M84.48XK ','Pathological fracture, other site, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123598,10,'M84.48XG ','Pathological fracture, other site, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123597,10,'M84.48XD ','Pathological fracture, other site, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123596,10,'M84.48XA ','Pathological fracture, other site, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123595,10,'M84.479S ','Pathological fracture, unspecified toe(s), sequela','Y','0000-00-00 00:00:00'),(123594,10,'M84.479P ','Pathological fracture, unspecified toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123593,10,'M84.479K ','Pathological fracture, unspecified toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123592,10,'M84.479G ','Pathological fracture, unspecified toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123591,10,'M84.479D ','Pathological fracture, unspecified toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123590,10,'M84.479A ','Pathological fracture, unspecified toe(s), initial encounter for fracture','Y','0000-00-00 00:00:00'),(123589,10,'M84.478S ','Pathological fracture, left toe(s), sequela','Y','0000-00-00 00:00:00'),(123588,10,'M84.478P ','Pathological fracture, left toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123587,10,'M84.478K ','Pathological fracture, left toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123586,10,'M84.478G ','Pathological fracture, left toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123585,10,'M84.478D ','Pathological fracture, left toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123583,10,'M84.477S ','Pathological fracture, right toe(s), sequela','Y','0000-00-00 00:00:00'),(123584,10,'M84.478A ','Pathological fracture, left toe(s), initial encounter for fracture','Y','0000-00-00 00:00:00'),(123582,10,'M84.477P ','Pathological fracture, right toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123581,10,'M84.477K ','Pathological fracture, right toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123580,10,'M84.477G ','Pathological fracture, right toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123579,10,'M84.477D ','Pathological fracture, right toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123578,10,'M84.477A ','Pathological fracture, right toe(s), initial encounter for fracture','Y','0000-00-00 00:00:00'),(123577,10,'M84.476S ','Pathological fracture, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(123576,10,'M84.476P ','Pathological fracture, unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123575,10,'M84.476K ','Pathological fracture, unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123574,10,'M84.476G ','Pathological fracture, unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123573,10,'M84.476D ','Pathological fracture, unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123572,10,'M84.476A ','Pathological fracture, unspecified foot, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123571,10,'M84.475S ','Pathological fracture, left foot, sequela','Y','0000-00-00 00:00:00'),(123570,10,'M84.475P ','Pathological fracture, left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123569,10,'M84.475K ','Pathological fracture, left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123568,10,'M84.475G ','Pathological fracture, left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123567,10,'M84.475D ','Pathological fracture, left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123566,10,'M84.475A ','Pathological fracture, left foot, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123565,10,'M84.474S ','Pathological fracture, right foot, sequela','Y','0000-00-00 00:00:00'),(123564,10,'M84.474P ','Pathological fracture, right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123563,10,'M84.474K ','Pathological fracture, right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123562,10,'M84.474G ','Pathological fracture, right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123561,10,'M84.474D ','Pathological fracture, right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123560,10,'M84.474A ','Pathological fracture, right foot, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123559,10,'M84.473S ','Pathological fracture, unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(123558,10,'M84.473P ','Pathological fracture, unspecified ankle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123557,10,'M84.473K ','Pathological fracture, unspecified ankle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123556,10,'M84.473G ','Pathological fracture, unspecified ankle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123555,10,'M84.473D ','Pathological fracture, unspecified ankle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123554,10,'M84.473A ','Pathological fracture, unspecified ankle, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123553,10,'M84.472S ','Pathological fracture, left ankle, sequela','Y','0000-00-00 00:00:00'),(123552,10,'M84.472P ','Pathological fracture, left ankle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123551,10,'M84.472K ','Pathological fracture, left ankle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123550,10,'M84.472G ','Pathological fracture, left ankle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123549,10,'M84.472D ','Pathological fracture, left ankle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123548,10,'M84.472A ','Pathological fracture, left ankle, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123547,10,'M84.471S ','Pathological fracture, right ankle, sequela','Y','0000-00-00 00:00:00'),(123546,10,'M84.471P ','Pathological fracture, right ankle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123545,10,'M84.471K ','Pathological fracture, right ankle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123544,10,'M84.471G ','Pathological fracture, right ankle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123543,10,'M84.471D ','Pathological fracture, right ankle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123541,10,'M84.469S ','Pathological fracture, unspecified tibia and fibula, sequela','Y','0000-00-00 00:00:00'),(123542,10,'M84.471A ','Pathological fracture, right ankle, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123540,10,'M84.469P ','Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123539,10,'M84.469K ','Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123538,10,'M84.469G ','Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123537,10,'M84.469D ','Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123536,10,'M84.469A ','Pathological fracture, unspecified tibia and fibula, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123535,10,'M84.464S ','Pathological fracture, left fibula, sequela','Y','0000-00-00 00:00:00'),(123534,10,'M84.464P ','Pathological fracture, left fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123533,10,'M84.464K ','Pathological fracture, left fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123532,10,'M84.464G ','Pathological fracture, left fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123531,10,'M84.464D ','Pathological fracture, left fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123530,10,'M84.464A ','Pathological fracture, left fibula, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123529,10,'M84.463S ','Pathological fracture, right fibula, sequela','Y','0000-00-00 00:00:00'),(123528,10,'M84.463P ','Pathological fracture, right fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123527,10,'M84.463K ','Pathological fracture, right fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123526,10,'M84.463G ','Pathological fracture, right fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123525,10,'M84.463D ','Pathological fracture, right fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123524,10,'M84.463A ','Pathological fracture, right fibula, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123523,10,'M84.462S ','Pathological fracture, left tibia, sequela','Y','0000-00-00 00:00:00'),(123522,10,'M84.462P ','Pathological fracture, left tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123521,10,'M84.462K ','Pathological fracture, left tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123520,10,'M84.462G ','Pathological fracture, left tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123519,10,'M84.462D ','Pathological fracture, left tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123518,10,'M84.462A ','Pathological fracture, left tibia, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123517,10,'M84.461S ','Pathological fracture, right tibia, sequela','Y','0000-00-00 00:00:00'),(123516,10,'M84.461P ','Pathological fracture, right tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123515,10,'M84.461K ','Pathological fracture, right tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123514,10,'M84.461G ','Pathological fracture, right tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123513,10,'M84.461D ','Pathological fracture, right tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123512,10,'M84.461A ','Pathological fracture, right tibia, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123511,10,'M84.459S ','Pathological fracture, hip, unspecified, sequela','Y','0000-00-00 00:00:00'),(123510,10,'M84.459P ','Pathological fracture, hip, unspecified, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123509,10,'M84.459K ','Pathological fracture, hip, unspecified, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123508,10,'M84.459G ','Pathological fracture, hip, unspecified, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123507,10,'M84.459D ','Pathological fracture, hip, unspecified, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123506,10,'M84.459A ','Pathological fracture, hip, unspecified, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123505,10,'M84.454S ','Pathological fracture, pelvis, sequela','Y','0000-00-00 00:00:00'),(123504,10,'M84.454P ','Pathological fracture, pelvis, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123503,10,'M84.454K ','Pathological fracture, pelvis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123502,10,'M84.454G ','Pathological fracture, pelvis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123501,10,'M84.454D ','Pathological fracture, pelvis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123500,10,'M84.454A ','Pathological fracture, pelvis, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123499,10,'M84.453S ','Pathological fracture, unspecified femur, sequela','Y','0000-00-00 00:00:00'),(123498,10,'M84.453P ','Pathological fracture, unspecified femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123497,10,'M84.453K ','Pathological fracture, unspecified femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123496,10,'M84.453G ','Pathological fracture, unspecified femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123495,10,'M84.453D ','Pathological fracture, unspecified femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123494,10,'M84.453A ','Pathological fracture, unspecified femur, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123493,10,'M84.452S ','Pathological fracture, left femur, sequela','Y','0000-00-00 00:00:00'),(123492,10,'M84.452P ','Pathological fracture, left femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123491,10,'M84.452K ','Pathological fracture, left femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123490,10,'M84.452G ','Pathological fracture, left femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123489,10,'M84.452D ','Pathological fracture, left femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123488,10,'M84.452A ','Pathological fracture, left femur, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123487,10,'M84.451S ','Pathological fracture, right femur, sequela','Y','0000-00-00 00:00:00'),(123486,10,'M84.451P ','Pathological fracture, right femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123485,10,'M84.451K ','Pathological fracture, right femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123484,10,'M84.451G ','Pathological fracture, right femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123483,10,'M84.451D ','Pathological fracture, right femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123482,10,'M84.451A ','Pathological fracture, right femur, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123481,10,'M84.446S ','Pathological fracture, unspecified finger(s), sequela','Y','0000-00-00 00:00:00'),(123480,10,'M84.446P ','Pathological fracture, unspecified finger(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123479,10,'M84.446K ','Pathological fracture, unspecified finger(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123478,10,'M84.446G ','Pathological fracture, unspecified finger(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123477,10,'M84.446D ','Pathological fracture, unspecified finger(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123476,10,'M84.446A ','Pathological fracture, unspecified finger(s), initial encounter for fracture','Y','0000-00-00 00:00:00'),(123475,10,'M84.445S ','Pathological fracture, left finger(s), sequela','Y','0000-00-00 00:00:00'),(123474,10,'M84.445P ','Pathological fracture, left finger(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123473,10,'M84.445K ','Pathological fracture, left finger(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123472,10,'M84.445G ','Pathological fracture, left finger(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123471,10,'M84.445D ','Pathological fracture, left finger(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123470,10,'M84.445A ','Pathological fracture, left finger(s), initial encounter for fracture','Y','0000-00-00 00:00:00'),(123469,10,'M84.444S ','Pathological fracture, right finger(s), sequela','Y','0000-00-00 00:00:00'),(123468,10,'M84.444P ','Pathological fracture, right finger(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123467,10,'M84.444K ','Pathological fracture, right finger(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123466,10,'M84.444G ','Pathological fracture, right finger(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123465,10,'M84.444D ','Pathological fracture, right finger(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123464,10,'M84.444A ','Pathological fracture, right finger(s), initial encounter for fracture','Y','0000-00-00 00:00:00'),(123463,10,'M84.443S ','Pathological fracture, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(123462,10,'M84.443P ','Pathological fracture, unspecified hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123461,10,'M84.443K ','Pathological fracture, unspecified hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123460,10,'M84.443G ','Pathological fracture, unspecified hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123459,10,'M84.443D ','Pathological fracture, unspecified hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123458,10,'M84.443A ','Pathological fracture, unspecified hand, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123457,10,'M84.442S ','Pathological fracture, left hand, sequela','Y','0000-00-00 00:00:00'),(123456,10,'M84.442P ','Pathological fracture, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123455,10,'M84.442K ','Pathological fracture, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123454,10,'M84.442G ','Pathological fracture, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123453,10,'M84.442D ','Pathological fracture, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123452,10,'M84.442A ','Pathological fracture, left hand, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123451,10,'M84.441S ','Pathological fracture, right hand, sequela','Y','0000-00-00 00:00:00'),(123450,10,'M84.441P ','Pathological fracture, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123449,10,'M84.441K ','Pathological fracture, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123448,10,'M84.441G ','Pathological fracture, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123447,10,'M84.441D ','Pathological fracture, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123446,10,'M84.441A ','Pathological fracture, right hand, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123445,10,'M84.439S ','Pathological fracture, unspecified ulna and radius, sequela','Y','0000-00-00 00:00:00'),(123444,10,'M84.439P ','Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123443,10,'M84.439K ','Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123442,10,'M84.439G ','Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123441,10,'M84.439D ','Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123440,10,'M84.439A ','Pathological fracture, unspecified ulna and radius, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123439,10,'M84.434S ','Pathological fracture, left radius, sequela','Y','0000-00-00 00:00:00'),(123438,10,'M84.434P ','Pathological fracture, left radius, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123437,10,'M84.434K ','Pathological fracture, left radius, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123436,10,'M84.434G ','Pathological fracture, left radius, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123435,10,'M84.434D ','Pathological fracture, left radius, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123434,10,'M84.434A ','Pathological fracture, left radius, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123433,10,'M84.433S ','Pathological fracture, right radius, sequela','Y','0000-00-00 00:00:00'),(123432,10,'M84.433P ','Pathological fracture, right radius, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123431,10,'M84.433K ','Pathological fracture, right radius, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123430,10,'M84.433G ','Pathological fracture, right radius, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123429,10,'M84.433D ','Pathological fracture, right radius, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123428,10,'M84.433A ','Pathological fracture, right radius, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123427,10,'M84.432S ','Pathological fracture, left ulna, sequela','Y','0000-00-00 00:00:00'),(123426,10,'M84.432P ','Pathological fracture, left ulna, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123425,10,'M84.432K ','Pathological fracture, left ulna, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123424,10,'M84.432G ','Pathological fracture, left ulna, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123423,10,'M84.432D ','Pathological fracture, left ulna, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123422,10,'M84.432A ','Pathological fracture, left ulna, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123421,10,'M84.431S ','Pathological fracture, right ulna, sequela','Y','0000-00-00 00:00:00'),(123420,10,'M84.431P ','Pathological fracture, right ulna, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123419,10,'M84.431K ','Pathological fracture, right ulna, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123418,10,'M84.431G ','Pathological fracture, right ulna, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123417,10,'M84.431D ','Pathological fracture, right ulna, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123416,10,'M84.431A ','Pathological fracture, right ulna, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123415,10,'M84.429S ','Pathological fracture, unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(123414,10,'M84.429P ','Pathological fracture, unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123413,10,'M84.429K ','Pathological fracture, unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123412,10,'M84.429G ','Pathological fracture, unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123411,10,'M84.429D ','Pathological fracture, unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123410,10,'M84.429A ','Pathological fracture, unspecified humerus, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123409,10,'M84.422S ','Pathological fracture, left humerus, sequela','Y','0000-00-00 00:00:00'),(123408,10,'M84.422P ','Pathological fracture, left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123407,10,'M84.422K ','Pathological fracture, left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123406,10,'M84.422G ','Pathological fracture, left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123405,10,'M84.422D ','Pathological fracture, left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123404,10,'M84.422A ','Pathological fracture, left humerus, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123403,10,'M84.421S ','Pathological fracture, right humerus, sequela','Y','0000-00-00 00:00:00'),(123402,10,'M84.421P ','Pathological fracture, right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123401,10,'M84.421K ','Pathological fracture, right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123400,10,'M84.421G ','Pathological fracture, right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123399,10,'M84.421D ','Pathological fracture, right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123398,10,'M84.421A ','Pathological fracture, right humerus, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123397,10,'M84.419S ','Pathological fracture, unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(123396,10,'M84.419P ','Pathological fracture, unspecified shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123395,10,'M84.419K ','Pathological fracture, unspecified shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123394,10,'M84.419G ','Pathological fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123393,10,'M84.419D ','Pathological fracture, unspecified shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123392,10,'M84.419A ','Pathological fracture, unspecified shoulder, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123391,10,'M84.412S ','Pathological fracture, left shoulder, sequela','Y','0000-00-00 00:00:00'),(123390,10,'M84.412P ','Pathological fracture, left shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123389,10,'M84.412K ','Pathological fracture, left shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123388,10,'M84.412G ','Pathological fracture, left shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123387,10,'M84.412D ','Pathological fracture, left shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123386,10,'M84.412A ','Pathological fracture, left shoulder, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123385,10,'M84.411S ','Pathological fracture, right shoulder, sequela','Y','0000-00-00 00:00:00'),(123384,10,'M84.411P ','Pathological fracture, right shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123383,10,'M84.411K ','Pathological fracture, right shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123382,10,'M84.411G ','Pathological fracture, right shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123381,10,'M84.411D ','Pathological fracture, right shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123380,10,'M84.411A ','Pathological fracture, right shoulder, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123379,10,'M84.40XS ','Pathological fracture, unspecified site, sequela','Y','0000-00-00 00:00:00'),(123378,10,'M84.40XP ','Pathological fracture, unspecified site, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123377,10,'M84.40XK ','Pathological fracture, unspecified site, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123376,10,'M84.40XG ','Pathological fracture, unspecified site, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123375,10,'M84.40XD ','Pathological fracture, unspecified site, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123374,10,'M84.40XA ','Pathological fracture, unspecified site, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123373,10,'M84.38XS ','Stress fracture, other site, sequela','Y','0000-00-00 00:00:00'),(123372,10,'M84.38XP ','Stress fracture, other site, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123371,10,'M84.38XK ','Stress fracture, other site, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123370,10,'M84.38XG ','Stress fracture, other site, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123369,10,'M84.38XD ','Stress fracture, other site, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123368,10,'M84.38XA ','Stress fracture, other site, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123367,10,'M84.379S ','Stress fracture, unspecified toe(s), sequela','Y','0000-00-00 00:00:00'),(123366,10,'M84.379P ','Stress fracture, unspecified toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123365,10,'M84.379K ','Stress fracture, unspecified toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123364,10,'M84.379G ','Stress fracture, unspecified toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123363,10,'M84.379D ','Stress fracture, unspecified toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123362,10,'M84.379A ','Stress fracture, unspecified toe(s), initial encounter for fracture','Y','0000-00-00 00:00:00'),(123361,10,'M84.378S ','Stress fracture, left toe(s), sequela','Y','0000-00-00 00:00:00'),(123360,10,'M84.378P ','Stress fracture, left toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123359,10,'M84.378K ','Stress fracture, left toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123358,10,'M84.378G ','Stress fracture, left toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123357,10,'M84.378D ','Stress fracture, left toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123356,10,'M84.378A ','Stress fracture, left toe(s), initial encounter for fracture','Y','0000-00-00 00:00:00'),(123355,10,'M84.377S ','Stress fracture, right toe(s), sequela','Y','0000-00-00 00:00:00'),(123354,10,'M84.377P ','Stress fracture, right toe(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123353,10,'M84.377K ','Stress fracture, right toe(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123352,10,'M84.377G ','Stress fracture, right toe(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123351,10,'M84.377D ','Stress fracture, right toe(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123350,10,'M84.377A ','Stress fracture, right toe(s), initial encounter for fracture','Y','0000-00-00 00:00:00'),(123349,10,'M84.376S ','Stress fracture, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(123348,10,'M84.376P ','Stress fracture, unspecified foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123347,10,'M84.376K ','Stress fracture, unspecified foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123346,10,'M84.376G ','Stress fracture, unspecified foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123345,10,'M84.376D ','Stress fracture, unspecified foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123344,10,'M84.376A ','Stress fracture, unspecified foot, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123343,10,'M84.375S ','Stress fracture, left foot, sequela','Y','0000-00-00 00:00:00'),(123342,10,'M84.375P ','Stress fracture, left foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123341,10,'M84.375K ','Stress fracture, left foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123340,10,'M84.375G ','Stress fracture, left foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123339,10,'M84.375D ','Stress fracture, left foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123337,10,'M84.374S ','Stress fracture, right foot, sequela','Y','0000-00-00 00:00:00'),(123338,10,'M84.375A ','Stress fracture, left foot, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123336,10,'M84.374P ','Stress fracture, right foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123335,10,'M84.374K ','Stress fracture, right foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123334,10,'M84.374G ','Stress fracture, right foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123333,10,'M84.374D ','Stress fracture, right foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123332,10,'M84.374A ','Stress fracture, right foot, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123331,10,'M84.373S ','Stress fracture, unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(123330,10,'M84.373P ','Stress fracture, unspecified ankle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123329,10,'M84.373K ','Stress fracture, unspecified ankle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123328,10,'M84.373G ','Stress fracture, unspecified ankle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123327,10,'M84.373D ','Stress fracture, unspecified ankle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123325,10,'M84.372S ','Stress fracture, left ankle, sequela','Y','0000-00-00 00:00:00'),(123326,10,'M84.373A ','Stress fracture, unspecified ankle, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123324,10,'M84.372P ','Stress fracture, left ankle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123323,10,'M84.372K ','Stress fracture, left ankle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123322,10,'M84.372G ','Stress fracture, left ankle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123321,10,'M84.372D ','Stress fracture, left ankle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123319,10,'M84.371S ','Stress fracture, right ankle, sequela','Y','0000-00-00 00:00:00'),(123320,10,'M84.372A ','Stress fracture, left ankle, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123318,10,'M84.371P ','Stress fracture, right ankle, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123317,10,'M84.371K ','Stress fracture, right ankle, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123316,10,'M84.371G ','Stress fracture, right ankle, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123315,10,'M84.371D ','Stress fracture, right ankle, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123314,10,'M84.371A ','Stress fracture, right ankle, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123313,10,'M84.369S ','Stress fracture, unspecified tibia and fibula, sequela','Y','0000-00-00 00:00:00'),(123312,10,'M84.369P ','Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123311,10,'M84.369K ','Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123310,10,'M84.369G ','Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123309,10,'M84.369D ','Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123308,10,'M84.369A ','Stress fracture, unspecified tibia and fibula, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123307,10,'M84.364S ','Stress fracture, left fibula, sequela','Y','0000-00-00 00:00:00'),(123306,10,'M84.364P ','Stress fracture, left fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123305,10,'M84.364K ','Stress fracture, left fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123304,10,'M84.364G ','Stress fracture, left fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123303,10,'M84.364D ','Stress fracture, left fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123302,10,'M84.364A ','Stress fracture, left fibula, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123301,10,'M84.363S ','Stress fracture, right fibula, sequela','Y','0000-00-00 00:00:00'),(123300,10,'M84.363P ','Stress fracture, right fibula, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123299,10,'M84.363K ','Stress fracture, right fibula, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123298,10,'M84.363G ','Stress fracture, right fibula, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123297,10,'M84.363D ','Stress fracture, right fibula, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123296,10,'M84.363A ','Stress fracture, right fibula, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123295,10,'M84.362S ','Stress fracture, left tibia, sequela','Y','0000-00-00 00:00:00'),(123294,10,'M84.362P ','Stress fracture, left tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123293,10,'M84.362K ','Stress fracture, left tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123292,10,'M84.362G ','Stress fracture, left tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123291,10,'M84.362D ','Stress fracture, left tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123290,10,'M84.362A ','Stress fracture, left tibia, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123289,10,'M84.361S ','Stress fracture, right tibia, sequela','Y','0000-00-00 00:00:00'),(123288,10,'M84.361P ','Stress fracture, right tibia, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123287,10,'M84.361K ','Stress fracture, right tibia, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123286,10,'M84.361G ','Stress fracture, right tibia, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123285,10,'M84.361D ','Stress fracture, right tibia, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123284,10,'M84.361A ','Stress fracture, right tibia, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123283,10,'M84.359S ','Stress fracture, hip, unspecified, sequela','Y','0000-00-00 00:00:00'),(123282,10,'M84.359P ','Stress fracture, hip, unspecified, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123281,10,'M84.359K ','Stress fracture, hip, unspecified, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123280,10,'M84.359G ','Stress fracture, hip, unspecified, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123279,10,'M84.359D ','Stress fracture, hip, unspecified, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123278,10,'M84.359A ','Stress fracture, hip, unspecified, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123277,10,'M84.353S ','Stress fracture, unspecified femur, sequela','Y','0000-00-00 00:00:00'),(123276,10,'M84.353P ','Stress fracture, unspecified femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123275,10,'M84.353K ','Stress fracture, unspecified femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123274,10,'M84.353G ','Stress fracture, unspecified femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123273,10,'M84.353D ','Stress fracture, unspecified femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123271,10,'M84.352S ','Stress fracture, left femur, sequela','Y','0000-00-00 00:00:00'),(123272,10,'M84.353A ','Stress fracture, unspecified femur, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123270,10,'M84.352P ','Stress fracture, left femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123269,10,'M84.352K ','Stress fracture, left femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123268,10,'M84.352G ','Stress fracture, left femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123267,10,'M84.352D ','Stress fracture, left femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123266,10,'M84.352A ','Stress fracture, left femur, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123265,10,'M84.351S ','Stress fracture, right femur, sequela','Y','0000-00-00 00:00:00'),(123264,10,'M84.351P ','Stress fracture, right femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123263,10,'M84.351K ','Stress fracture, right femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123262,10,'M84.351G ','Stress fracture, right femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123261,10,'M84.351D ','Stress fracture, right femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123259,10,'M84.350S ','Stress fracture, pelvis, sequela','Y','0000-00-00 00:00:00'),(123260,10,'M84.351A ','Stress fracture, right femur, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123258,10,'M84.350P ','Stress fracture, pelvis, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123257,10,'M84.350K ','Stress fracture, pelvis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123256,10,'M84.350G ','Stress fracture, pelvis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123255,10,'M84.350D ','Stress fracture, pelvis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123254,10,'M84.350A ','Stress fracture, pelvis, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123253,10,'M84.346S ','Stress fracture, unspecified finger(s), sequela','Y','0000-00-00 00:00:00'),(123252,10,'M84.346P ','Stress fracture, unspecified finger(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123251,10,'M84.346K ','Stress fracture, unspecified finger(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123250,10,'M84.346G ','Stress fracture, unspecified finger(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123249,10,'M84.346D ','Stress fracture, unspecified finger(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123248,10,'M84.346A ','Stress fracture, unspecified finger(s), initial encounter for fracture','Y','0000-00-00 00:00:00'),(123247,10,'M84.345S ','Stress fracture, left finger(s), sequela','Y','0000-00-00 00:00:00'),(123246,10,'M84.345P ','Stress fracture, left finger(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123245,10,'M84.345K ','Stress fracture, left finger(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123244,10,'M84.345G ','Stress fracture, left finger(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123243,10,'M84.345D ','Stress fracture, left finger(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123242,10,'M84.345A ','Stress fracture, left finger(s), initial encounter for fracture','Y','0000-00-00 00:00:00'),(123241,10,'M84.344S ','Stress fracture, right finger(s), sequela','Y','0000-00-00 00:00:00'),(123240,10,'M84.344P ','Stress fracture, right finger(s), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123239,10,'M84.344K ','Stress fracture, right finger(s), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123238,10,'M84.344G ','Stress fracture, right finger(s), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123237,10,'M84.344D ','Stress fracture, right finger(s), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123236,10,'M84.344A ','Stress fracture, right finger(s), initial encounter for fracture','Y','0000-00-00 00:00:00'),(123235,10,'M84.343S ','Stress fracture, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(123234,10,'M84.343P ','Stress fracture, unspecified hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123233,10,'M84.343K ','Stress fracture, unspecified hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123232,10,'M84.343G ','Stress fracture, unspecified hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123231,10,'M84.343D ','Stress fracture, unspecified hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123230,10,'M84.343A ','Stress fracture, unspecified hand, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123229,10,'M84.342S ','Stress fracture, left hand, sequela','Y','0000-00-00 00:00:00'),(123228,10,'M84.342P ','Stress fracture, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123227,10,'M84.342K ','Stress fracture, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123226,10,'M84.342G ','Stress fracture, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123225,10,'M84.342D ','Stress fracture, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123223,10,'M84.341S ','Stress fracture, right hand, sequela','Y','0000-00-00 00:00:00'),(123224,10,'M84.342A ','Stress fracture, left hand, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123222,10,'M84.341P ','Stress fracture, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123221,10,'M84.341K ','Stress fracture, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123220,10,'M84.341G ','Stress fracture, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123219,10,'M84.341D ','Stress fracture, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123218,10,'M84.341A ','Stress fracture, right hand, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123217,10,'M84.339S ','Stress fracture, unspecified ulna and radius, sequela','Y','0000-00-00 00:00:00'),(123216,10,'M84.339P ','Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123215,10,'M84.339K ','Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123214,10,'M84.339G ','Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123213,10,'M84.339D ','Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123212,10,'M84.339A ','Stress fracture, unspecified ulna and radius, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123211,10,'M84.334S ','Stress fracture, left radius, sequela','Y','0000-00-00 00:00:00'),(123210,10,'M84.334P ','Stress fracture, left radius, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123209,10,'M84.334K ','Stress fracture, left radius, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123208,10,'M84.334G ','Stress fracture, left radius, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123207,10,'M84.334D ','Stress fracture, left radius, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123206,10,'M84.334A ','Stress fracture, left radius, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123205,10,'M84.333S ','Stress fracture, right radius, sequela','Y','0000-00-00 00:00:00'),(123204,10,'M84.333P ','Stress fracture, right radius, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123203,10,'M84.333K ','Stress fracture, right radius, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123202,10,'M84.333G ','Stress fracture, right radius, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123201,10,'M84.333D ','Stress fracture, right radius, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123199,10,'M84.332S ','Stress fracture, left ulna, sequela','Y','0000-00-00 00:00:00'),(123200,10,'M84.333A ','Stress fracture, right radius, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123198,10,'M84.332P ','Stress fracture, left ulna, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123197,10,'M84.332K ','Stress fracture, left ulna, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123196,10,'M84.332G ','Stress fracture, left ulna, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123195,10,'M84.332D ','Stress fracture, left ulna, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123193,10,'M84.331S ','Stress fracture, right ulna, sequela','Y','0000-00-00 00:00:00'),(123194,10,'M84.332A ','Stress fracture, left ulna, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123192,10,'M84.331P ','Stress fracture, right ulna, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123191,10,'M84.331K ','Stress fracture, right ulna, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123190,10,'M84.331G ','Stress fracture, right ulna, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123189,10,'M84.331D ','Stress fracture, right ulna, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123187,10,'M84.329S ','Stress fracture, unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(123188,10,'M84.331A ','Stress fracture, right ulna, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123186,10,'M84.329P ','Stress fracture, unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123185,10,'M84.329K ','Stress fracture, unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123184,10,'M84.329G ','Stress fracture, unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123183,10,'M84.329D ','Stress fracture, unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123182,10,'M84.329A ','Stress fracture, unspecified humerus, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123181,10,'M84.322S ','Stress fracture, left humerus, sequela','Y','0000-00-00 00:00:00'),(123180,10,'M84.322P ','Stress fracture, left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123179,10,'M84.322K ','Stress fracture, left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123178,10,'M84.322G ','Stress fracture, left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123177,10,'M84.322D ','Stress fracture, left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123176,10,'M84.322A ','Stress fracture, left humerus, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123175,10,'M84.321S ','Stress fracture, right humerus, sequela','Y','0000-00-00 00:00:00'),(123174,10,'M84.321P ','Stress fracture, right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123173,10,'M84.321K ','Stress fracture, right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123172,10,'M84.321G ','Stress fracture, right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123171,10,'M84.321D ','Stress fracture, right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123170,10,'M84.321A ','Stress fracture, right humerus, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123169,10,'M84.319S ','Stress fracture, unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(123168,10,'M84.319P ','Stress fracture, unspecified shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123167,10,'M84.319K ','Stress fracture, unspecified shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123166,10,'M84.319G ','Stress fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123165,10,'M84.319D ','Stress fracture, unspecified shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123164,10,'M84.319A ','Stress fracture, unspecified shoulder, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123163,10,'M84.312S ','Stress fracture, left shoulder, sequela','Y','0000-00-00 00:00:00'),(123162,10,'M84.312P ','Stress fracture, left shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123161,10,'M84.312K ','Stress fracture, left shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123160,10,'M84.312G ','Stress fracture, left shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123159,10,'M84.312D ','Stress fracture, left shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123158,10,'M84.312A ','Stress fracture, left shoulder, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123157,10,'M84.311S ','Stress fracture, right shoulder, sequela','Y','0000-00-00 00:00:00'),(123156,10,'M84.311P ','Stress fracture, right shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123155,10,'M84.311K ','Stress fracture, right shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123154,10,'M84.311G ','Stress fracture, right shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123153,10,'M84.311D ','Stress fracture, right shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123152,10,'M84.311A ','Stress fracture, right shoulder, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123151,10,'M84.30XS ','Stress fracture, unspecified site, sequela','Y','0000-00-00 00:00:00'),(123150,10,'M84.30XP ','Stress fracture, unspecified site, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123149,10,'M84.30XK ','Stress fracture, unspecified site, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123148,10,'M84.30XG ','Stress fracture, unspecified site, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123147,10,'M84.30XD ','Stress fracture, unspecified site, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123146,10,'M84.30XA ','Stress fracture, unspecified site, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123145,10,'M83.9 ','Adult osteomalacia, unspecified','Y','0000-00-00 00:00:00'),(123144,10,'M83.8 ','Other adult osteomalacia','Y','0000-00-00 00:00:00'),(123142,10,'M83.4 ','Aluminum bone disease','Y','0000-00-00 00:00:00'),(123143,10,'M83.5 ','Other drug-induced osteomalacia in adults','Y','0000-00-00 00:00:00'),(123141,10,'M83.3 ','Adult osteomalacia due to malnutrition','Y','0000-00-00 00:00:00'),(123140,10,'M83.2 ','Adult osteomalacia due to malabsorption','Y','0000-00-00 00:00:00'),(123138,10,'M83.0 ','Puerperal osteomalacia','Y','0000-00-00 00:00:00'),(123139,10,'M83.1 ','Senile osteomalacia','Y','0000-00-00 00:00:00'),(123136,10,'M81.6 ','Localized osteoporosis [Lequesne]','Y','0000-00-00 00:00:00'),(123137,10,'M81.8 ','Other osteoporosis without current pathological fracture','Y','0000-00-00 00:00:00'),(123135,10,'M81.0 ','Age-related osteoporosis without current pathological fracture','Y','0000-00-00 00:00:00'),(123134,10,'M80.8B9S ','Other osteoporosis with current pathological fracture, unspecified pelvis, sequela','Y','0000-00-00 00:00:00'),(123133,10,'M80.8B9P ','Other osteoporosis with current pathological fracture, unspecified pelvis, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123132,10,'M80.8B9K ','Other osteoporosis with current pathological fracture, unspecified pelvis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123131,10,'M80.8B9G ','Other osteoporosis with current pathological fracture, unspecified pelvis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123130,10,'M80.8B9D ','Other osteoporosis with current pathological fracture, unspecified pelvis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123129,10,'M80.8B9A ','Other osteoporosis with current pathological fracture, unspecified pelvis, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123128,10,'M80.8B2S ','Other osteoporosis with current pathological fracture, left pelvis, sequela','Y','0000-00-00 00:00:00'),(123127,10,'M80.8B2P ','Other osteoporosis with current pathological fracture, left pelvis, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123126,10,'M80.8B2K ','Other osteoporosis with current pathological fracture, left pelvis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123125,10,'M80.8B2G ','Other osteoporosis with current pathological fracture, left pelvis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123124,10,'M80.8B2D ','Other osteoporosis with current pathological fracture, left pelvis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123123,10,'M80.8B2A ','Other osteoporosis with current pathological fracture, left pelvis, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123122,10,'M80.8B1S ','Other osteoporosis with current pathological fracture, right pelvis, sequela','Y','0000-00-00 00:00:00'),(123121,10,'M80.8B1P ','Other osteoporosis with current pathological fracture, right pelvis, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123120,10,'M80.8B1K ','Other osteoporosis with current pathological fracture, right pelvis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123119,10,'M80.8B1G ','Other osteoporosis with current pathological fracture, right pelvis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123118,10,'M80.8B1D ','Other osteoporosis with current pathological fracture, right pelvis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123117,10,'M80.8B1A ','Other osteoporosis with current pathological fracture, right pelvis, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123116,10,'M80.8AXS ','Other osteoporosis with current pathological fracture, other site, sequela','Y','0000-00-00 00:00:00'),(123115,10,'M80.8AXP ','Other osteoporosis with current pathological fracture, other site, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123114,10,'M80.8AXK ','Other osteoporosis with current pathological fracture, other site, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123113,10,'M80.8AXG ','Other osteoporosis with current pathological fracture, other site, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123112,10,'M80.8AXD ','Other osteoporosis with current pathological fracture, other site, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123111,10,'M80.8AXA ','Other osteoporosis with current pathological fracture, other site, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123110,10,'M80.88XS ','Other osteoporosis with current pathological fracture, vertebra(e), sequela','Y','0000-00-00 00:00:00'),(123109,10,'M80.88XP ','Other osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123108,10,'M80.88XK ','Other osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123107,10,'M80.88XG ','Other osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123106,10,'M80.88XD ','Other osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123105,10,'M80.88XA ','Other osteoporosis with current pathological fracture, vertebra(e), initial encounter for fracture','Y','0000-00-00 00:00:00'),(123104,10,'M80.879S ','Other osteoporosis with current pathological fracture, unspecified ankle and foot, sequela','Y','0000-00-00 00:00:00'),(123103,10,'M80.879P ','Other osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123102,10,'M80.879K ','Other osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123101,10,'M80.879G ','Other osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123100,10,'M80.879D ','Other osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123099,10,'M80.879A ','Other osteoporosis with current pathological fracture, unspecified ankle and foot, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123098,10,'M80.872S ','Other osteoporosis with current pathological fracture, left ankle and foot, sequela','Y','0000-00-00 00:00:00'),(123097,10,'M80.872P ','Other osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123096,10,'M80.872K ','Other osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123095,10,'M80.872G ','Other osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123094,10,'M80.872D ','Other osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123093,10,'M80.872A ','Other osteoporosis with current pathological fracture, left ankle and foot, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123092,10,'M80.871S ','Other osteoporosis with current pathological fracture, right ankle and foot, sequela','Y','0000-00-00 00:00:00'),(123091,10,'M80.871P ','Other osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123090,10,'M80.871K ','Other osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123089,10,'M80.871G ','Other osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123088,10,'M80.871D ','Other osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123087,10,'M80.871A ','Other osteoporosis with current pathological fracture, right ankle and foot, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123086,10,'M80.869S ','Other osteoporosis with current pathological fracture, unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(123085,10,'M80.869P ','Other osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123084,10,'M80.869K ','Other osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123083,10,'M80.869G ','Other osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123082,10,'M80.869D ','Other osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123081,10,'M80.869A ','Other osteoporosis with current pathological fracture, unspecified lower leg, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123080,10,'M80.862S ','Other osteoporosis with current pathological fracture, left lower leg, sequela','Y','0000-00-00 00:00:00'),(123079,10,'M80.862P ','Other osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123078,10,'M80.862K ','Other osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123077,10,'M80.862G ','Other osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123076,10,'M80.862D ','Other osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123075,10,'M80.862A ','Other osteoporosis with current pathological fracture, left lower leg, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123074,10,'M80.861S ','Other osteoporosis with current pathological fracture, right lower leg, sequela','Y','0000-00-00 00:00:00'),(123073,10,'M80.861P ','Other osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123072,10,'M80.861K ','Other osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123071,10,'M80.861G ','Other osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123070,10,'M80.861D ','Other osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123069,10,'M80.861A ','Other osteoporosis with current pathological fracture, right lower leg, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123068,10,'M80.859S ','Other osteoporosis with current pathological fracture, unspecified femur, sequela','Y','0000-00-00 00:00:00'),(123067,10,'M80.859P ','Other osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123066,10,'M80.859K ','Other osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123065,10,'M80.859G ','Other osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123064,10,'M80.859D ','Other osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123063,10,'M80.859A ','Other osteoporosis with current pathological fracture, unspecified femur, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123062,10,'M80.852S ','Other osteoporosis with current pathological fracture, left femur, sequela','Y','0000-00-00 00:00:00'),(123061,10,'M80.852P ','Other osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123060,10,'M80.852K ','Other osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123059,10,'M80.852G ','Other osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123058,10,'M80.852D ','Other osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123057,10,'M80.852A ','Other osteoporosis with current pathological fracture, left femur, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123056,10,'M80.851S ','Other osteoporosis with current pathological fracture, right femur, sequela','Y','0000-00-00 00:00:00'),(123055,10,'M80.851P ','Other osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123054,10,'M80.851K ','Other osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123053,10,'M80.851G ','Other osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123052,10,'M80.851D ','Other osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123051,10,'M80.851A ','Other osteoporosis with current pathological fracture, right femur, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123050,10,'M80.849S ','Other osteoporosis with current pathological fracture, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(123049,10,'M80.849P ','Other osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123048,10,'M80.849K ','Other osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123047,10,'M80.849G ','Other osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123046,10,'M80.849D ','Other osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123045,10,'M80.849A ','Other osteoporosis with current pathological fracture, unspecified hand, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123044,10,'M80.842S ','Other osteoporosis with current pathological fracture, left hand, sequela','Y','0000-00-00 00:00:00'),(123043,10,'M80.842P ','Other osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123042,10,'M80.842K ','Other osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123041,10,'M80.842G ','Other osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123040,10,'M80.842D ','Other osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123039,10,'M80.842A ','Other osteoporosis with current pathological fracture, left hand, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123038,10,'M80.841S ','Other osteoporosis with current pathological fracture, right hand, sequela','Y','0000-00-00 00:00:00'),(123037,10,'M80.841P ','Other osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123036,10,'M80.841K ','Other osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123035,10,'M80.841G ','Other osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123034,10,'M80.841D ','Other osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123033,10,'M80.841A ','Other osteoporosis with current pathological fracture, right hand, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123032,10,'M80.839S ','Other osteoporosis with current pathological fracture, unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(123031,10,'M80.839P ','Other osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123030,10,'M80.839K ','Other osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123029,10,'M80.839G ','Other osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123028,10,'M80.839D ','Other osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123027,10,'M80.839A ','Other osteoporosis with current pathological fracture, unspecified forearm, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123026,10,'M80.832S ','Other osteoporosis with current pathological fracture, left forearm, sequela','Y','0000-00-00 00:00:00'),(123025,10,'M80.832P ','Other osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123024,10,'M80.832K ','Other osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123023,10,'M80.832G ','Other osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123022,10,'M80.832D ','Other osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123021,10,'M80.832A ','Other osteoporosis with current pathological fracture, left forearm, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123020,10,'M80.831S ','Other osteoporosis with current pathological fracture, right forearm, sequela','Y','0000-00-00 00:00:00'),(123019,10,'M80.831P ','Other osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123018,10,'M80.831K ','Other osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123017,10,'M80.831G ','Other osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123016,10,'M80.831D ','Other osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123015,10,'M80.831A ','Other osteoporosis with current pathological fracture, right forearm, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123014,10,'M80.829S ','Other osteoporosis with current pathological fracture, unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(123013,10,'M80.829P ','Other osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123012,10,'M80.829K ','Other osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123011,10,'M80.829G ','Other osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123010,10,'M80.829D ','Other osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123009,10,'M80.829A ','Other osteoporosis with current pathological fracture, unspecified humerus, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123008,10,'M80.822S ','Other osteoporosis with current pathological fracture, left humerus, sequela','Y','0000-00-00 00:00:00'),(123007,10,'M80.822P ','Other osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123006,10,'M80.822K ','Other osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(123005,10,'M80.822G ','Other osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(123004,10,'M80.822D ','Other osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(123003,10,'M80.822A ','Other osteoporosis with current pathological fracture, left humerus, initial encounter for fracture','Y','0000-00-00 00:00:00'),(123002,10,'M80.821S ','Other osteoporosis with current pathological fracture, right humerus, sequela','Y','0000-00-00 00:00:00'),(123001,10,'M80.821P ','Other osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(123000,10,'M80.821K ','Other osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122999,10,'M80.821G ','Other osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122998,10,'M80.821D ','Other osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122997,10,'M80.821A ','Other osteoporosis with current pathological fracture, right humerus, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122996,10,'M80.819S ','Other osteoporosis with current pathological fracture, unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(122995,10,'M80.819P ','Other osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122994,10,'M80.819K ','Other osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122993,10,'M80.819G ','Other osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122992,10,'M80.819D ','Other osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122991,10,'M80.819A ','Other osteoporosis with current pathological fracture, unspecified shoulder, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122990,10,'M80.812S ','Other osteoporosis with current pathological fracture, left shoulder, sequela','Y','0000-00-00 00:00:00'),(122989,10,'M80.812P ','Other osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122988,10,'M80.812K ','Other osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122987,10,'M80.812G ','Other osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122986,10,'M80.812D ','Other osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122985,10,'M80.812A ','Other osteoporosis with current pathological fracture, left shoulder, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122984,10,'M80.811S ','Other osteoporosis with current pathological fracture, right shoulder, sequela','Y','0000-00-00 00:00:00'),(122983,10,'M80.811P ','Other osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122982,10,'M80.811K ','Other osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122981,10,'M80.811G ','Other osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122980,10,'M80.811D ','Other osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122979,10,'M80.811A ','Other osteoporosis with current pathological fracture, right shoulder, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122978,10,'M80.80XS ','Other osteoporosis with current pathological fracture, unspecified site, sequela','Y','0000-00-00 00:00:00'),(122977,10,'M80.80XP ','Other osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122976,10,'M80.80XK ','Other osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122975,10,'M80.80XG ','Other osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122974,10,'M80.80XD ','Other osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122973,10,'M80.80XA ','Other osteoporosis with current pathological fracture, unspecified site, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122972,10,'M80.0B9S ','Age-related osteoporosis with current pathological fracture, unspecified pelvis, sequela','Y','0000-00-00 00:00:00'),(122971,10,'M80.0B9P ','Age-related osteoporosis with current pathological fracture, unspecified pelvis, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122970,10,'M80.0B9K ','Age-related osteoporosis with current pathological fracture, unspecified pelvis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122969,10,'M80.0B9G ','Age-related osteoporosis with current pathological fracture, unspecified pelvis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122968,10,'M80.0B9D ','Age-related osteoporosis with current pathological fracture, unspecified pelvis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122967,10,'M80.0B9A ','Age-related osteoporosis with current pathological fracture, unspecified pelvis, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122966,10,'M80.0B2S ','Age-related osteoporosis with current pathological fracture, left pelvis, sequela','Y','0000-00-00 00:00:00'),(122965,10,'M80.0B2P ','Age-related osteoporosis with current pathological fracture, left pelvis, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122964,10,'M80.0B2K ','Age-related osteoporosis with current pathological fracture, left pelvis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122963,10,'M80.0B2G ','Age-related osteoporosis with current pathological fracture, left pelvis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122962,10,'M80.0B2D ','Age-related osteoporosis with current pathological fracture, left pelvis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122961,10,'M80.0B2A ','Age-related osteoporosis with current pathological fracture, left pelvis, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122960,10,'M80.0B1S ','Age-related osteoporosis with current pathological fracture, right pelvis, sequela','Y','0000-00-00 00:00:00'),(122959,10,'M80.0B1P ','Age-related osteoporosis with current pathological fracture, right pelvis, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122958,10,'M80.0B1K ','Age-related osteoporosis with current pathological fracture, right pelvis, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122957,10,'M80.0B1G ','Age-related osteoporosis with current pathological fracture, right pelvis, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122956,10,'M80.0B1D ','Age-related osteoporosis with current pathological fracture, right pelvis, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122955,10,'M80.0B1A ','Age-related osteoporosis with current pathological fracture, right pelvis, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122954,10,'M80.0AXS ','Age-related osteoporosis with current pathological fracture, other site, sequela','Y','0000-00-00 00:00:00'),(122953,10,'M80.0AXP ','Age-related osteoporosis with current pathological fracture, other site, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122952,10,'M80.0AXK ','Age-related osteoporosis with current pathological fracture, other site, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122951,10,'M80.0AXG ','Age-related osteoporosis with current pathological fracture, other site, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122950,10,'M80.0AXD ','Age-related osteoporosis with current pathological fracture, other site, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122949,10,'M80.0AXA ','Age-related osteoporosis with current pathological fracture, other site, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122948,10,'M80.08XS ','Age-related osteoporosis with current pathological fracture, vertebra(e), sequela','Y','0000-00-00 00:00:00'),(122947,10,'M80.08XP ','Age-related osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122946,10,'M80.08XK ','Age-related osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122945,10,'M80.08XG ','Age-related osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122944,10,'M80.08XD ','Age-related osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122943,10,'M80.08XA ','Age-related osteoporosis with current pathological fracture, vertebra(e), initial encounter for fracture','Y','0000-00-00 00:00:00'),(122942,10,'M80.079S ','Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, sequela','Y','0000-00-00 00:00:00'),(122941,10,'M80.079P ','Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122940,10,'M80.079K ','Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122939,10,'M80.079G ','Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122938,10,'M80.079D ','Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122937,10,'M80.079A ','Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122936,10,'M80.072S ','Age-related osteoporosis with current pathological fracture, left ankle and foot, sequela','Y','0000-00-00 00:00:00'),(122935,10,'M80.072P ','Age-related osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122934,10,'M80.072K ','Age-related osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122933,10,'M80.072G ','Age-related osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122932,10,'M80.072D ','Age-related osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122931,10,'M80.072A ','Age-related osteoporosis with current pathological fracture, left ankle and foot, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122930,10,'M80.071S ','Age-related osteoporosis with current pathological fracture, right ankle and foot, sequela','Y','0000-00-00 00:00:00'),(122929,10,'M80.071P ','Age-related osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122928,10,'M80.071K ','Age-related osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122927,10,'M80.071G ','Age-related osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122926,10,'M80.071D ','Age-related osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122925,10,'M80.071A ','Age-related osteoporosis with current pathological fracture, right ankle and foot, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122924,10,'M80.069S ','Age-related osteoporosis with current pathological fracture, unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(122923,10,'M80.069P ','Age-related osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122922,10,'M80.069K ','Age-related osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122921,10,'M80.069G ','Age-related osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122920,10,'M80.069D ','Age-related osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122919,10,'M80.069A ','Age-related osteoporosis with current pathological fracture, unspecified lower leg, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122918,10,'M80.062S ','Age-related osteoporosis with current pathological fracture, left lower leg, sequela','Y','0000-00-00 00:00:00'),(122917,10,'M80.062P ','Age-related osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122916,10,'M80.062K ','Age-related osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122915,10,'M80.062G ','Age-related osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122914,10,'M80.062D ','Age-related osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122913,10,'M80.062A ','Age-related osteoporosis with current pathological fracture, left lower leg, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122912,10,'M80.061S ','Age-related osteoporosis with current pathological fracture, right lower leg, sequela','Y','0000-00-00 00:00:00'),(122911,10,'M80.061P ','Age-related osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122910,10,'M80.061K ','Age-related osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122909,10,'M80.061G ','Age-related osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122908,10,'M80.061D ','Age-related osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122907,10,'M80.061A ','Age-related osteoporosis with current pathological fracture, right lower leg, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122906,10,'M80.059S ','Age-related osteoporosis with current pathological fracture, unspecified femur, sequela','Y','0000-00-00 00:00:00'),(122905,10,'M80.059P ','Age-related osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122904,10,'M80.059K ','Age-related osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122903,10,'M80.059G ','Age-related osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122902,10,'M80.059D ','Age-related osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122901,10,'M80.059A ','Age-related osteoporosis with current pathological fracture, unspecified femur, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122900,10,'M80.052S ','Age-related osteoporosis with current pathological fracture, left femur, sequela','Y','0000-00-00 00:00:00'),(122899,10,'M80.052P ','Age-related osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122898,10,'M80.052K ','Age-related osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122897,10,'M80.052G ','Age-related osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122896,10,'M80.052D ','Age-related osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122895,10,'M80.052A ','Age-related osteoporosis with current pathological fracture, left femur, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122894,10,'M80.051S ','Age-related osteoporosis with current pathological fracture, right femur, sequela','Y','0000-00-00 00:00:00'),(122893,10,'M80.051P ','Age-related osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122892,10,'M80.051K ','Age-related osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122891,10,'M80.051G ','Age-related osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122890,10,'M80.051D ','Age-related osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122889,10,'M80.051A ','Age-related osteoporosis with current pathological fracture, right femur, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122888,10,'M80.049S ','Age-related osteoporosis with current pathological fracture, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(122887,10,'M80.049P ','Age-related osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122886,10,'M80.049K ','Age-related osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122885,10,'M80.049G ','Age-related osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122884,10,'M80.049D ','Age-related osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122883,10,'M80.049A ','Age-related osteoporosis with current pathological fracture, unspecified hand, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122882,10,'M80.042S ','Age-related osteoporosis with current pathological fracture, left hand, sequela','Y','0000-00-00 00:00:00'),(122881,10,'M80.042P ','Age-related osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122880,10,'M80.042K ','Age-related osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122879,10,'M80.042G ','Age-related osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122878,10,'M80.042D ','Age-related osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122877,10,'M80.042A ','Age-related osteoporosis with current pathological fracture, left hand, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122876,10,'M80.041S ','Age-related osteoporosis with current pathological fracture, right hand, sequela','Y','0000-00-00 00:00:00'),(122875,10,'M80.041P ','Age-related osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122874,10,'M80.041K ','Age-related osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122873,10,'M80.041G ','Age-related osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122872,10,'M80.041D ','Age-related osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122871,10,'M80.041A ','Age-related osteoporosis with current pathological fracture, right hand, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122870,10,'M80.039S ','Age-related osteoporosis with current pathological fracture, unspecified forearm, sequela','Y','0000-00-00 00:00:00'),(122869,10,'M80.039P ','Age-related osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122868,10,'M80.039K ','Age-related osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122867,10,'M80.039G ','Age-related osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122866,10,'M80.039D ','Age-related osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122865,10,'M80.039A ','Age-related osteoporosis with current pathological fracture, unspecified forearm, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122864,10,'M80.032S ','Age-related osteoporosis with current pathological fracture, left forearm, sequela','Y','0000-00-00 00:00:00'),(122863,10,'M80.032P ','Age-related osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122862,10,'M80.032K ','Age-related osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122861,10,'M80.032G ','Age-related osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122860,10,'M80.032D ','Age-related osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122859,10,'M80.032A ','Age-related osteoporosis with current pathological fracture, left forearm, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122858,10,'M80.031S ','Age-related osteoporosis with current pathological fracture, right forearm, sequela','Y','0000-00-00 00:00:00'),(122857,10,'M80.031P ','Age-related osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122856,10,'M80.031K ','Age-related osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122855,10,'M80.031G ','Age-related osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122854,10,'M80.031D ','Age-related osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122853,10,'M80.031A ','Age-related osteoporosis with current pathological fracture, right forearm, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122852,10,'M80.029S ','Age-related osteoporosis with current pathological fracture, unspecified humerus, sequela','Y','0000-00-00 00:00:00'),(122851,10,'M80.029P ','Age-related osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122850,10,'M80.029K ','Age-related osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122849,10,'M80.029G ','Age-related osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122848,10,'M80.029D ','Age-related osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122847,10,'M80.029A ','Age-related osteoporosis with current pathological fracture, unspecified humerus, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122846,10,'M80.022S ','Age-related osteoporosis with current pathological fracture, left humerus, sequela','Y','0000-00-00 00:00:00'),(122845,10,'M80.022P ','Age-related osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122844,10,'M80.022K ','Age-related osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122843,10,'M80.022G ','Age-related osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122842,10,'M80.022D ','Age-related osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122841,10,'M80.022A ','Age-related osteoporosis with current pathological fracture, left humerus, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122840,10,'M80.021S ','Age-related osteoporosis with current pathological fracture, right humerus, sequela','Y','0000-00-00 00:00:00'),(122839,10,'M80.021P ','Age-related osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122838,10,'M80.021K ','Age-related osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122837,10,'M80.021G ','Age-related osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122836,10,'M80.021D ','Age-related osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122835,10,'M80.021A ','Age-related osteoporosis with current pathological fracture, right humerus, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122834,10,'M80.019S ','Age-related osteoporosis with current pathological fracture, unspecified shoulder, sequela','Y','0000-00-00 00:00:00'),(122833,10,'M80.019P ','Age-related osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122832,10,'M80.019K ','Age-related osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122831,10,'M80.019G ','Age-related osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122830,10,'M80.019D ','Age-related osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122829,10,'M80.019A ','Age-related osteoporosis with current pathological fracture, unspecified shoulder, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122828,10,'M80.012S ','Age-related osteoporosis with current pathological fracture, left shoulder, sequela','Y','0000-00-00 00:00:00'),(122827,10,'M80.012P ','Age-related osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122826,10,'M80.012K ','Age-related osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122825,10,'M80.012G ','Age-related osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122824,10,'M80.012D ','Age-related osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122823,10,'M80.012A ','Age-related osteoporosis with current pathological fracture, left shoulder, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122822,10,'M80.011S ','Age-related osteoporosis with current pathological fracture, right shoulder, sequela','Y','0000-00-00 00:00:00'),(122821,10,'M80.011P ','Age-related osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122820,10,'M80.011K ','Age-related osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122819,10,'M80.011G ','Age-related osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122818,10,'M80.011D ','Age-related osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122817,10,'M80.011A ','Age-related osteoporosis with current pathological fracture, right shoulder, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122816,10,'M80.00XS ','Age-related osteoporosis with current pathological fracture, unspecified site, sequela','Y','0000-00-00 00:00:00'),(122815,10,'M80.00XP ','Age-related osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with malunion','Y','0000-00-00 00:00:00'),(122814,10,'M80.00XK ','Age-related osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with nonunion','Y','0000-00-00 00:00:00'),(122813,10,'M80.00XG ','Age-related osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(122812,10,'M80.00XD ','Age-related osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(122811,10,'M80.00XA ','Age-related osteoporosis with current pathological fracture, unspecified site, initial encounter for fracture','Y','0000-00-00 00:00:00'),(122810,10,'M79.9 ','Soft tissue disorder, unspecified','Y','0000-00-00 00:00:00'),(122809,10,'M79.89 ','Other specified soft tissue disorders','Y','0000-00-00 00:00:00'),(122808,10,'M79.81 ','Nontraumatic hematoma of soft tissue','Y','0000-00-00 00:00:00'),(122807,10,'M79.A9 ','Nontraumatic compartment syndrome of other sites','Y','0000-00-00 00:00:00'),(122806,10,'M79.A3 ','Nontraumatic compartment syndrome of abdomen','Y','0000-00-00 00:00:00'),(122805,10,'M79.A29 ','Nontraumatic compartment syndrome of unspecified lower extremity','Y','0000-00-00 00:00:00'),(122804,10,'M79.A22 ','Nontraumatic compartment syndrome of left lower extremity','Y','0000-00-00 00:00:00'),(122803,10,'M79.A21 ','Nontraumatic compartment syndrome of right lower extremity','Y','0000-00-00 00:00:00'),(122802,10,'M79.A19 ','Nontraumatic compartment syndrome of unspecified upper extremity','Y','0000-00-00 00:00:00'),(122801,10,'M79.A12 ','Nontraumatic compartment syndrome of left upper extremity','Y','0000-00-00 00:00:00'),(122799,10,'M79.7 ','Fibromyalgia','Y','0000-00-00 00:00:00'),(122800,10,'M79.A11 ','Nontraumatic compartment syndrome of right upper extremity','Y','0000-00-00 00:00:00'),(122798,10,'M79.676 ','Pain in unspecified toe(s)','Y','0000-00-00 00:00:00'),(122797,10,'M79.675 ','Pain in left toe(s)','Y','0000-00-00 00:00:00'),(122795,10,'M79.673 ','Pain in unspecified foot','Y','0000-00-00 00:00:00'),(122796,10,'M79.674 ','Pain in right toe(s)','Y','0000-00-00 00:00:00'),(122794,10,'M79.672 ','Pain in left foot','Y','0000-00-00 00:00:00'),(122792,10,'M79.669 ','Pain in unspecified lower leg','Y','0000-00-00 00:00:00'),(122793,10,'M79.671 ','Pain in right foot','Y','0000-00-00 00:00:00'),(122791,10,'M79.662 ','Pain in left lower leg','Y','0000-00-00 00:00:00'),(122789,10,'M79.659 ','Pain in unspecified thigh','Y','0000-00-00 00:00:00'),(122790,10,'M79.661 ','Pain in right lower leg','Y','0000-00-00 00:00:00'),(122787,10,'M79.651 ','Pain in right thigh','Y','0000-00-00 00:00:00'),(122788,10,'M79.652 ','Pain in left thigh','Y','0000-00-00 00:00:00'),(122786,10,'M79.646 ','Pain in unspecified finger(s)','Y','0000-00-00 00:00:00'),(122784,10,'M79.644 ','Pain in right finger(s)','Y','0000-00-00 00:00:00'),(122785,10,'M79.645 ','Pain in left finger(s)','Y','0000-00-00 00:00:00'),(122783,10,'M79.643 ','Pain in unspecified hand','Y','0000-00-00 00:00:00'),(122782,10,'M79.642 ','Pain in left hand','Y','0000-00-00 00:00:00'),(122781,10,'M79.641 ','Pain in right hand','Y','0000-00-00 00:00:00'),(122780,10,'M79.639 ','Pain in unspecified forearm','Y','0000-00-00 00:00:00'),(122779,10,'M79.632 ','Pain in left forearm','Y','0000-00-00 00:00:00'),(122778,10,'M79.631 ','Pain in right forearm','Y','0000-00-00 00:00:00'),(122777,10,'M79.629 ','Pain in unspecified upper arm','Y','0000-00-00 00:00:00'),(122776,10,'M79.622 ','Pain in left upper arm','Y','0000-00-00 00:00:00'),(122775,10,'M79.621 ','Pain in right upper arm','Y','0000-00-00 00:00:00'),(122774,10,'M79.609 ','Pain in unspecified limb','Y','0000-00-00 00:00:00'),(122773,10,'M79.606 ','Pain in leg, unspecified','Y','0000-00-00 00:00:00'),(122772,10,'M79.605 ','Pain in left leg','Y','0000-00-00 00:00:00'),(122771,10,'M79.604 ','Pain in right leg','Y','0000-00-00 00:00:00'),(122770,10,'M79.603 ','Pain in arm, unspecified','Y','0000-00-00 00:00:00'),(122769,10,'M79.602 ','Pain in left arm','Y','0000-00-00 00:00:00'),(122768,10,'M79.601 ','Pain in right arm','Y','0000-00-00 00:00:00'),(122767,10,'M79.5 ','Residual foreign body in soft tissue','Y','0000-00-00 00:00:00'),(122766,10,'M79.4 ','Hypertrophy of (infrapatellar) fat pad','Y','0000-00-00 00:00:00'),(122765,10,'M79.3 ','Panniculitis, unspecified','Y','0000-00-00 00:00:00'),(122764,10,'M79.2 ','Neuralgia and neuritis, unspecified','Y','0000-00-00 00:00:00'),(122763,10,'M79.18 ','Myalgia, other site','Y','0000-00-00 00:00:00'),(122762,10,'M79.12 ','Myalgia of auxiliary muscles, head and neck','Y','0000-00-00 00:00:00'),(122761,10,'M79.11 ','Myalgia of mastication muscle','Y','0000-00-00 00:00:00'),(122760,10,'M79.10 ','Myalgia, unspecified site','Y','0000-00-00 00:00:00'),(122759,10,'M79.0 ','Rheumatism, unspecified','Y','0000-00-00 00:00:00'),(122758,10,'M77.9 ','Enthesopathy, unspecified','Y','0000-00-00 00:00:00'),(122757,10,'M77.8 ','Other enthesopathies, not elsewhere classified','Y','0000-00-00 00:00:00'),(122756,10,'M77.52 ','Other enthesopathy of left foot and ankle','Y','0000-00-00 00:00:00'),(122755,10,'M77.51 ','Other enthesopathy of right foot and ankle','Y','0000-00-00 00:00:00'),(122753,10,'M77.42 ','Metatarsalgia, left foot','Y','0000-00-00 00:00:00'),(122754,10,'M77.50 ','Other enthesopathy of unspecified foot and ankle','Y','0000-00-00 00:00:00'),(122752,10,'M77.41 ','Metatarsalgia, right foot','Y','0000-00-00 00:00:00'),(122750,10,'M77.32 ','Calcaneal spur, left foot','Y','0000-00-00 00:00:00'),(122751,10,'M77.40 ','Metatarsalgia, unspecified foot','Y','0000-00-00 00:00:00'),(122749,10,'M77.31 ','Calcaneal spur, right foot','Y','0000-00-00 00:00:00'),(122747,10,'M77.22 ','Periarthritis, left wrist','Y','0000-00-00 00:00:00'),(122748,10,'M77.30 ','Calcaneal spur, unspecified foot','Y','0000-00-00 00:00:00'),(122746,10,'M77.21 ','Periarthritis, right wrist','Y','0000-00-00 00:00:00'),(122744,10,'M77.12 ','Lateral epicondylitis, left elbow','Y','0000-00-00 00:00:00'),(122745,10,'M77.20 ','Periarthritis, unspecified wrist','Y','0000-00-00 00:00:00'),(122743,10,'M77.11 ','Lateral epicondylitis, right elbow','Y','0000-00-00 00:00:00'),(122742,10,'M77.10 ','Lateral epicondylitis, unspecified elbow','Y','0000-00-00 00:00:00'),(122741,10,'M77.02 ','Medial epicondylitis, left elbow','Y','0000-00-00 00:00:00'),(122740,10,'M77.01 ','Medial epicondylitis, right elbow','Y','0000-00-00 00:00:00'),(122739,10,'M77.00 ','Medial epicondylitis, unspecified elbow','Y','0000-00-00 00:00:00'),(122738,10,'M76.9 ','Unspecified enthesopathy, lower limb, excluding foot','Y','0000-00-00 00:00:00'),(122737,10,'M76.899 ','Other specified enthesopathies of unspecified lower limb, excluding foot','Y','0000-00-00 00:00:00'),(122736,10,'M76.892 ','Other specified enthesopathies of left lower limb, excluding foot','Y','0000-00-00 00:00:00'),(122735,10,'M76.891 ','Other specified enthesopathies of right lower limb, excluding foot','Y','0000-00-00 00:00:00'),(122734,10,'M76.829 ','Posterior tibial tendinitis, unspecified leg','Y','0000-00-00 00:00:00'),(122733,10,'M76.822 ','Posterior tibial tendinitis, left leg','Y','0000-00-00 00:00:00'),(122732,10,'M76.821 ','Posterior tibial tendinitis, right leg','Y','0000-00-00 00:00:00'),(122731,10,'M76.819 ','Anterior tibial syndrome, unspecified leg','Y','0000-00-00 00:00:00'),(122730,10,'M76.812 ','Anterior tibial syndrome, left leg','Y','0000-00-00 00:00:00'),(122729,10,'M76.811 ','Anterior tibial syndrome, right leg','Y','0000-00-00 00:00:00'),(122728,10,'M76.72 ','Peroneal tendinitis, left leg','Y','0000-00-00 00:00:00'),(122727,10,'M76.71 ','Peroneal tendinitis, right leg','Y','0000-00-00 00:00:00'),(122726,10,'M76.70 ','Peroneal tendinitis, unspecified leg','Y','0000-00-00 00:00:00'),(122725,10,'M76.62 ','Achilles tendinitis, left leg','Y','0000-00-00 00:00:00'),(122724,10,'M76.61 ','Achilles tendinitis, right leg','Y','0000-00-00 00:00:00'),(122723,10,'M76.60 ','Achilles tendinitis, unspecified leg','Y','0000-00-00 00:00:00'),(122722,10,'M76.52 ','Patellar tendinitis, left knee','Y','0000-00-00 00:00:00'),(122721,10,'M76.51 ','Patellar tendinitis, right knee','Y','0000-00-00 00:00:00'),(122720,10,'M76.50 ','Patellar tendinitis, unspecified knee','Y','0000-00-00 00:00:00'),(122719,10,'M76.42 ','Tibial collateral bursitis [Pellegrini-Stieda], left leg','Y','0000-00-00 00:00:00'),(122718,10,'M76.41 ','Tibial collateral bursitis [Pellegrini-Stieda], right leg','Y','0000-00-00 00:00:00'),(122717,10,'M76.40 ','Tibial collateral bursitis [Pellegrini-Stieda], unspecified leg','Y','0000-00-00 00:00:00'),(122716,10,'M76.32 ','Iliotibial band syndrome, left leg','Y','0000-00-00 00:00:00'),(122715,10,'M76.31 ','Iliotibial band syndrome, right leg','Y','0000-00-00 00:00:00'),(122713,10,'M76.22 ','Iliac crest spur, left hip','Y','0000-00-00 00:00:00'),(122714,10,'M76.30 ','Iliotibial band syndrome, unspecified leg','Y','0000-00-00 00:00:00'),(122712,10,'M76.21 ','Iliac crest spur, right hip','Y','0000-00-00 00:00:00'),(122710,10,'M76.12 ','Psoas tendinitis, left hip','Y','0000-00-00 00:00:00'),(122711,10,'M76.20 ','Iliac crest spur, unspecified hip','Y','0000-00-00 00:00:00'),(122709,10,'M76.11 ','Psoas tendinitis, right hip','Y','0000-00-00 00:00:00'),(122707,10,'M76.02 ','Gluteal tendinitis, left hip','Y','0000-00-00 00:00:00'),(122708,10,'M76.10 ','Psoas tendinitis, unspecified hip','Y','0000-00-00 00:00:00'),(122706,10,'M76.01 ','Gluteal tendinitis, right hip','Y','0000-00-00 00:00:00'),(122705,10,'M76.00 ','Gluteal tendinitis, unspecified hip','Y','0000-00-00 00:00:00'),(122704,10,'M75.92 ','Shoulder lesion, unspecified, left shoulder','Y','0000-00-00 00:00:00'),(122703,10,'M75.91 ','Shoulder lesion, unspecified, right shoulder','Y','0000-00-00 00:00:00'),(122702,10,'M75.90 ','Shoulder lesion, unspecified, unspecified shoulder','Y','0000-00-00 00:00:00'),(122701,10,'M75.82 ','Other shoulder lesions, left shoulder','Y','0000-00-00 00:00:00'),(122700,10,'M75.81 ','Other shoulder lesions, right shoulder','Y','0000-00-00 00:00:00'),(122699,10,'M75.80 ','Other shoulder lesions, unspecified shoulder','Y','0000-00-00 00:00:00'),(122698,10,'M75.52 ','Bursitis of left shoulder','Y','0000-00-00 00:00:00'),(122697,10,'M75.51 ','Bursitis of right shoulder','Y','0000-00-00 00:00:00'),(122696,10,'M75.50 ','Bursitis of unspecified shoulder','Y','0000-00-00 00:00:00'),(122695,10,'M75.42 ','Impingement syndrome of left shoulder','Y','0000-00-00 00:00:00'),(122694,10,'M75.41 ','Impingement syndrome of right shoulder','Y','0000-00-00 00:00:00'),(122693,10,'M75.40 ','Impingement syndrome of unspecified shoulder','Y','0000-00-00 00:00:00'),(122692,10,'M75.32 ','Calcific tendinitis of left shoulder','Y','0000-00-00 00:00:00'),(122691,10,'M75.31 ','Calcific tendinitis of right shoulder','Y','0000-00-00 00:00:00'),(122690,10,'M75.30 ','Calcific tendinitis of unspecified shoulder','Y','0000-00-00 00:00:00'),(122689,10,'M75.22 ','Bicipital tendinitis, left shoulder','Y','0000-00-00 00:00:00'),(122688,10,'M75.21 ','Bicipital tendinitis, right shoulder','Y','0000-00-00 00:00:00'),(122687,10,'M75.20 ','Bicipital tendinitis, unspecified shoulder','Y','0000-00-00 00:00:00'),(122686,10,'M75.122 ','Complete rotator cuff tear or rupture of left shoulder, not specified as traumatic','Y','0000-00-00 00:00:00'),(122685,10,'M75.121 ','Complete rotator cuff tear or rupture of right shoulder, not specified as traumatic','Y','0000-00-00 00:00:00'),(122684,10,'M75.120 ','Complete rotator cuff tear or rupture of unspecified shoulder, not specified as traumatic','Y','0000-00-00 00:00:00'),(122683,10,'M75.112 ','Incomplete rotator cuff tear or rupture of left shoulder, not specified as traumatic','Y','0000-00-00 00:00:00'),(122682,10,'M75.111 ','Incomplete rotator cuff tear or rupture of right shoulder, not specified as traumatic','Y','0000-00-00 00:00:00'),(122681,10,'M75.110 ','Incomplete rotator cuff tear or rupture of unspecified shoulder, not specified as traumatic','Y','0000-00-00 00:00:00'),(122680,10,'M75.102 ','Unspecified rotator cuff tear or rupture of left shoulder, not specified as traumatic','Y','0000-00-00 00:00:00'),(122679,10,'M75.101 ','Unspecified rotator cuff tear or rupture of right shoulder, not specified as traumatic','Y','0000-00-00 00:00:00'),(122678,10,'M75.100 ','Unspecified rotator cuff tear or rupture of unspecified shoulder, not specified as traumatic','Y','0000-00-00 00:00:00'),(122677,10,'M75.02 ','Adhesive capsulitis of left shoulder','Y','0000-00-00 00:00:00'),(122675,10,'M75.00 ','Adhesive capsulitis of unspecified shoulder','Y','0000-00-00 00:00:00'),(122676,10,'M75.01 ','Adhesive capsulitis of right shoulder','Y','0000-00-00 00:00:00'),(122673,10,'M72.8 ','Other fibroblastic disorders','Y','0000-00-00 00:00:00'),(122674,10,'M72.9 ','Fibroblastic disorder, unspecified','Y','0000-00-00 00:00:00'),(122672,10,'M72.6 ','Necrotizing fasciitis','Y','0000-00-00 00:00:00'),(122671,10,'M72.4 ','Pseudosarcomatous fibromatosis','Y','0000-00-00 00:00:00'),(122669,10,'M72.1 ','Knuckle pads','Y','0000-00-00 00:00:00'),(122670,10,'M72.2 ','Plantar fascial fibromatosis','Y','0000-00-00 00:00:00'),(122668,10,'M72.0 ','Palmar fascial fibromatosis [Dupuytren]','Y','0000-00-00 00:00:00'),(122667,10,'M71.9 ','Bursopathy, unspecified','Y','0000-00-00 00:00:00'),(122666,10,'M71.89 ','Other specified bursopathies, multiple sites','Y','0000-00-00 00:00:00'),(122665,10,'M71.88 ','Other specified bursopathies, other site','Y','0000-00-00 00:00:00'),(122664,10,'M71.879 ','Other specified bursopathies, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122663,10,'M71.872 ','Other specified bursopathies, left ankle and foot','Y','0000-00-00 00:00:00'),(122662,10,'M71.871 ','Other specified bursopathies, right ankle and foot','Y','0000-00-00 00:00:00'),(122661,10,'M71.869 ','Other specified bursopathies, unspecified knee','Y','0000-00-00 00:00:00'),(122660,10,'M71.862 ','Other specified bursopathies, left knee','Y','0000-00-00 00:00:00'),(122659,10,'M71.861 ','Other specified bursopathies, right knee','Y','0000-00-00 00:00:00'),(122658,10,'M71.859 ','Other specified bursopathies, unspecified hip','Y','0000-00-00 00:00:00'),(122657,10,'M71.852 ','Other specified bursopathies, left hip','Y','0000-00-00 00:00:00'),(122656,10,'M71.851 ','Other specified bursopathies, right hip','Y','0000-00-00 00:00:00'),(122655,10,'M71.849 ','Other specified bursopathies, unspecified hand','Y','0000-00-00 00:00:00'),(122654,10,'M71.842 ','Other specified bursopathies, left hand','Y','0000-00-00 00:00:00'),(122653,10,'M71.841 ','Other specified bursopathies, right hand','Y','0000-00-00 00:00:00'),(122652,10,'M71.839 ','Other specified bursopathies, unspecified wrist','Y','0000-00-00 00:00:00'),(122651,10,'M71.832 ','Other specified bursopathies, left wrist','Y','0000-00-00 00:00:00'),(122650,10,'M71.831 ','Other specified bursopathies, right wrist','Y','0000-00-00 00:00:00'),(122649,10,'M71.829 ','Other specified bursopathies, unspecified elbow','Y','0000-00-00 00:00:00'),(122648,10,'M71.822 ','Other specified bursopathies, left elbow','Y','0000-00-00 00:00:00'),(122647,10,'M71.821 ','Other specified bursopathies, right elbow','Y','0000-00-00 00:00:00'),(122646,10,'M71.819 ','Other specified bursopathies, unspecified shoulder','Y','0000-00-00 00:00:00'),(122645,10,'M71.812 ','Other specified bursopathies, left shoulder','Y','0000-00-00 00:00:00'),(122644,10,'M71.811 ','Other specified bursopathies, right shoulder','Y','0000-00-00 00:00:00'),(122643,10,'M71.80 ','Other specified bursopathies, unspecified site','Y','0000-00-00 00:00:00'),(122642,10,'M71.58 ','Other bursitis, not elsewhere classified, other site','Y','0000-00-00 00:00:00'),(122641,10,'M71.579 ','Other bursitis, not elsewhere classified, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122640,10,'M71.572 ','Other bursitis, not elsewhere classified, left ankle and foot','Y','0000-00-00 00:00:00'),(122639,10,'M71.571 ','Other bursitis, not elsewhere classified, right ankle and foot','Y','0000-00-00 00:00:00'),(122638,10,'M71.569 ','Other bursitis, not elsewhere classified, unspecified knee','Y','0000-00-00 00:00:00'),(122637,10,'M71.562 ','Other bursitis, not elsewhere classified, left knee','Y','0000-00-00 00:00:00'),(122636,10,'M71.561 ','Other bursitis, not elsewhere classified, right knee','Y','0000-00-00 00:00:00'),(122635,10,'M71.559 ','Other bursitis, not elsewhere classified, unspecified hip','Y','0000-00-00 00:00:00'),(122634,10,'M71.552 ','Other bursitis, not elsewhere classified, left hip','Y','0000-00-00 00:00:00'),(122633,10,'M71.551 ','Other bursitis, not elsewhere classified, right hip','Y','0000-00-00 00:00:00'),(122632,10,'M71.549 ','Other bursitis, not elsewhere classified, unspecified hand','Y','0000-00-00 00:00:00'),(122631,10,'M71.542 ','Other bursitis, not elsewhere classified, left hand','Y','0000-00-00 00:00:00'),(122630,10,'M71.541 ','Other bursitis, not elsewhere classified, right hand','Y','0000-00-00 00:00:00'),(122629,10,'M71.539 ','Other bursitis, not elsewhere classified, unspecified wrist','Y','0000-00-00 00:00:00'),(122628,10,'M71.532 ','Other bursitis, not elsewhere classified, left wrist','Y','0000-00-00 00:00:00'),(122627,10,'M71.531 ','Other bursitis, not elsewhere classified, right wrist','Y','0000-00-00 00:00:00'),(122626,10,'M71.529 ','Other bursitis, not elsewhere classified, unspecified elbow','Y','0000-00-00 00:00:00'),(122625,10,'M71.522 ','Other bursitis, not elsewhere classified, left elbow','Y','0000-00-00 00:00:00'),(122624,10,'M71.521 ','Other bursitis, not elsewhere classified, right elbow','Y','0000-00-00 00:00:00'),(122623,10,'M71.50 ','Other bursitis, not elsewhere classified, unspecified site','Y','0000-00-00 00:00:00'),(122622,10,'M71.49 ','Calcium deposit in bursa, multiple sites','Y','0000-00-00 00:00:00'),(122621,10,'M71.48 ','Calcium deposit in bursa, other site','Y','0000-00-00 00:00:00'),(122620,10,'M71.479 ','Calcium deposit in bursa, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122619,10,'M71.472 ','Calcium deposit in bursa, left ankle and foot','Y','0000-00-00 00:00:00'),(122618,10,'M71.471 ','Calcium deposit in bursa, right ankle and foot','Y','0000-00-00 00:00:00'),(122617,10,'M71.469 ','Calcium deposit in bursa, unspecified knee','Y','0000-00-00 00:00:00'),(122616,10,'M71.462 ','Calcium deposit in bursa, left knee','Y','0000-00-00 00:00:00'),(122615,10,'M71.461 ','Calcium deposit in bursa, right knee','Y','0000-00-00 00:00:00'),(122614,10,'M71.459 ','Calcium deposit in bursa, unspecified hip','Y','0000-00-00 00:00:00'),(122613,10,'M71.452 ','Calcium deposit in bursa, left hip','Y','0000-00-00 00:00:00'),(122612,10,'M71.451 ','Calcium deposit in bursa, right hip','Y','0000-00-00 00:00:00'),(122611,10,'M71.449 ','Calcium deposit in bursa, unspecified hand','Y','0000-00-00 00:00:00'),(122610,10,'M71.442 ','Calcium deposit in bursa, left hand','Y','0000-00-00 00:00:00'),(122609,10,'M71.441 ','Calcium deposit in bursa, right hand','Y','0000-00-00 00:00:00'),(122608,10,'M71.439 ','Calcium deposit in bursa, unspecified wrist','Y','0000-00-00 00:00:00'),(122607,10,'M71.432 ','Calcium deposit in bursa, left wrist','Y','0000-00-00 00:00:00'),(122606,10,'M71.431 ','Calcium deposit in bursa, right wrist','Y','0000-00-00 00:00:00'),(122605,10,'M71.429 ','Calcium deposit in bursa, unspecified elbow','Y','0000-00-00 00:00:00'),(122604,10,'M71.422 ','Calcium deposit in bursa, left elbow','Y','0000-00-00 00:00:00'),(122603,10,'M71.421 ','Calcium deposit in bursa, right elbow','Y','0000-00-00 00:00:00'),(122602,10,'M71.40 ','Calcium deposit in bursa, unspecified site','Y','0000-00-00 00:00:00'),(122601,10,'M71.39 ','Other bursal cyst, multiple sites','Y','0000-00-00 00:00:00'),(122600,10,'M71.38 ','Other bursal cyst, other site','Y','0000-00-00 00:00:00'),(122599,10,'M71.379 ','Other bursal cyst, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122598,10,'M71.372 ','Other bursal cyst, left ankle and foot','Y','0000-00-00 00:00:00'),(122597,10,'M71.371 ','Other bursal cyst, right ankle and foot','Y','0000-00-00 00:00:00'),(122596,10,'M71.359 ','Other bursal cyst, unspecified hip','Y','0000-00-00 00:00:00'),(122595,10,'M71.352 ','Other bursal cyst, left hip','Y','0000-00-00 00:00:00'),(122594,10,'M71.351 ','Other bursal cyst, right hip','Y','0000-00-00 00:00:00'),(122593,10,'M71.349 ','Other bursal cyst, unspecified hand','Y','0000-00-00 00:00:00'),(122592,10,'M71.342 ','Other bursal cyst, left hand','Y','0000-00-00 00:00:00'),(122591,10,'M71.341 ','Other bursal cyst, right hand','Y','0000-00-00 00:00:00'),(122590,10,'M71.339 ','Other bursal cyst, unspecified wrist','Y','0000-00-00 00:00:00'),(122589,10,'M71.332 ','Other bursal cyst, left wrist','Y','0000-00-00 00:00:00'),(122588,10,'M71.331 ','Other bursal cyst, right wrist','Y','0000-00-00 00:00:00'),(122587,10,'M71.329 ','Other bursal cyst, unspecified elbow','Y','0000-00-00 00:00:00'),(122586,10,'M71.322 ','Other bursal cyst, left elbow','Y','0000-00-00 00:00:00'),(122585,10,'M71.321 ','Other bursal cyst, right elbow','Y','0000-00-00 00:00:00'),(122584,10,'M71.319 ','Other bursal cyst, unspecified shoulder','Y','0000-00-00 00:00:00'),(122583,10,'M71.312 ','Other bursal cyst, left shoulder','Y','0000-00-00 00:00:00'),(122582,10,'M71.311 ','Other bursal cyst, right shoulder','Y','0000-00-00 00:00:00'),(122581,10,'M71.30 ','Other bursal cyst, unspecified site','Y','0000-00-00 00:00:00'),(122580,10,'M71.22 ','Synovial cyst of popliteal space [Baker], left knee','Y','0000-00-00 00:00:00'),(122579,10,'M71.21 ','Synovial cyst of popliteal space [Baker], right knee','Y','0000-00-00 00:00:00'),(122578,10,'M71.20 ','Synovial cyst of popliteal space [Baker], unspecified knee','Y','0000-00-00 00:00:00'),(122577,10,'M71.19 ','Other infective bursitis, multiple sites','Y','0000-00-00 00:00:00'),(122576,10,'M71.18 ','Other infective bursitis, other site','Y','0000-00-00 00:00:00'),(122575,10,'M71.179 ','Other infective bursitis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122574,10,'M71.172 ','Other infective bursitis, left ankle and foot','Y','0000-00-00 00:00:00'),(122572,10,'M71.169 ','Other infective bursitis, unspecified knee','Y','0000-00-00 00:00:00'),(122573,10,'M71.171 ','Other infective bursitis, right ankle and foot','Y','0000-00-00 00:00:00'),(122571,10,'M71.162 ','Other infective bursitis, left knee','Y','0000-00-00 00:00:00'),(122570,10,'M71.161 ','Other infective bursitis, right knee','Y','0000-00-00 00:00:00'),(122568,10,'M71.152 ','Other infective bursitis, left hip','Y','0000-00-00 00:00:00'),(122569,10,'M71.159 ','Other infective bursitis, unspecified hip','Y','0000-00-00 00:00:00'),(122567,10,'M71.151 ','Other infective bursitis, right hip','Y','0000-00-00 00:00:00'),(122566,10,'M71.149 ','Other infective bursitis, unspecified hand','Y','0000-00-00 00:00:00'),(122564,10,'M71.141 ','Other infective bursitis, right hand','Y','0000-00-00 00:00:00'),(122565,10,'M71.142 ','Other infective bursitis, left hand','Y','0000-00-00 00:00:00'),(122563,10,'M71.139 ','Other infective bursitis, unspecified wrist','Y','0000-00-00 00:00:00'),(122562,10,'M71.132 ','Other infective bursitis, left wrist','Y','0000-00-00 00:00:00'),(122561,10,'M71.131 ','Other infective bursitis, right wrist','Y','0000-00-00 00:00:00'),(122560,10,'M71.129 ','Other infective bursitis, unspecified elbow','Y','0000-00-00 00:00:00'),(122559,10,'M71.122 ','Other infective bursitis, left elbow','Y','0000-00-00 00:00:00'),(122558,10,'M71.121 ','Other infective bursitis, right elbow','Y','0000-00-00 00:00:00'),(122557,10,'M71.119 ','Other infective bursitis, unspecified shoulder','Y','0000-00-00 00:00:00'),(122556,10,'M71.112 ','Other infective bursitis, left shoulder','Y','0000-00-00 00:00:00'),(122555,10,'M71.111 ','Other infective bursitis, right shoulder','Y','0000-00-00 00:00:00'),(122554,10,'M71.10 ','Other infective bursitis, unspecified site','Y','0000-00-00 00:00:00'),(122552,10,'M71.08 ','Abscess of bursa, other site','Y','0000-00-00 00:00:00'),(122553,10,'M71.09 ','Abscess of bursa, multiple sites','Y','0000-00-00 00:00:00'),(122551,10,'M71.079 ','Abscess of bursa, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122550,10,'M71.072 ','Abscess of bursa, left ankle and foot','Y','0000-00-00 00:00:00'),(122549,10,'M71.071 ','Abscess of bursa, right ankle and foot','Y','0000-00-00 00:00:00'),(122548,10,'M71.069 ','Abscess of bursa, unspecified knee','Y','0000-00-00 00:00:00'),(122547,10,'M71.062 ','Abscess of bursa, left knee','Y','0000-00-00 00:00:00'),(122546,10,'M71.061 ','Abscess of bursa, right knee','Y','0000-00-00 00:00:00'),(122545,10,'M71.059 ','Abscess of bursa, unspecified hip','Y','0000-00-00 00:00:00'),(122543,10,'M71.051 ','Abscess of bursa, right hip','Y','0000-00-00 00:00:00'),(122544,10,'M71.052 ','Abscess of bursa, left hip','Y','0000-00-00 00:00:00'),(122542,10,'M71.049 ','Abscess of bursa, unspecified hand','Y','0000-00-00 00:00:00'),(122540,10,'M71.041 ','Abscess of bursa, right hand','Y','0000-00-00 00:00:00'),(122541,10,'M71.042 ','Abscess of bursa, left hand','Y','0000-00-00 00:00:00'),(122539,10,'M71.039 ','Abscess of bursa, unspecified wrist','Y','0000-00-00 00:00:00'),(122537,10,'M71.031 ','Abscess of bursa, right wrist','Y','0000-00-00 00:00:00'),(122538,10,'M71.032 ','Abscess of bursa, left wrist','Y','0000-00-00 00:00:00'),(122536,10,'M71.029 ','Abscess of bursa, unspecified elbow','Y','0000-00-00 00:00:00'),(122535,10,'M71.022 ','Abscess of bursa, left elbow','Y','0000-00-00 00:00:00'),(122534,10,'M71.021 ','Abscess of bursa, right elbow','Y','0000-00-00 00:00:00'),(122533,10,'M71.019 ','Abscess of bursa, unspecified shoulder','Y','0000-00-00 00:00:00'),(122531,10,'M71.011 ','Abscess of bursa, right shoulder','Y','0000-00-00 00:00:00'),(122532,10,'M71.012 ','Abscess of bursa, left shoulder','Y','0000-00-00 00:00:00'),(122530,10,'M71.00 ','Abscess of bursa, unspecified site','Y','0000-00-00 00:00:00'),(122529,10,'M70.99 ','Unspecified soft tissue disorder related to use, overuse and pressure multiple sites','Y','0000-00-00 00:00:00'),(122528,10,'M70.98 ','Unspecified soft tissue disorder related to use, overuse and pressure other','Y','0000-00-00 00:00:00'),(122527,10,'M70.979 ','Unspecified soft tissue disorder related to use, overuse and pressure, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122526,10,'M70.972 ','Unspecified soft tissue disorder related to use, overuse and pressure, left ankle and foot','Y','0000-00-00 00:00:00'),(122525,10,'M70.971 ','Unspecified soft tissue disorder related to use, overuse and pressure, right ankle and foot','Y','0000-00-00 00:00:00'),(122524,10,'M70.969 ','Unspecified soft tissue disorder related to use, overuse and pressure, unspecified lower leg','Y','0000-00-00 00:00:00'),(122523,10,'M70.962 ','Unspecified soft tissue disorder related to use, overuse and pressure, left lower leg','Y','0000-00-00 00:00:00'),(122522,10,'M70.961 ','Unspecified soft tissue disorder related to use, overuse and pressure, right lower leg','Y','0000-00-00 00:00:00'),(122521,10,'M70.959 ','Unspecified soft tissue disorder related to use, overuse and pressure, unspecified thigh','Y','0000-00-00 00:00:00'),(122520,10,'M70.952 ','Unspecified soft tissue disorder related to use, overuse and pressure, left thigh','Y','0000-00-00 00:00:00'),(122519,10,'M70.951 ','Unspecified soft tissue disorder related to use, overuse and pressure, right thigh','Y','0000-00-00 00:00:00'),(122518,10,'M70.949 ','Unspecified soft tissue disorder related to use, overuse and pressure, unspecified hand','Y','0000-00-00 00:00:00'),(122517,10,'M70.942 ','Unspecified soft tissue disorder related to use, overuse and pressure, left hand','Y','0000-00-00 00:00:00'),(122516,10,'M70.941 ','Unspecified soft tissue disorder related to use, overuse and pressure, right hand','Y','0000-00-00 00:00:00'),(122515,10,'M70.939 ','Unspecified soft tissue disorder related to use, overuse and pressure, unspecified forearm','Y','0000-00-00 00:00:00'),(122514,10,'M70.932 ','Unspecified soft tissue disorder related to use, overuse and pressure, left forearm','Y','0000-00-00 00:00:00'),(122513,10,'M70.931 ','Unspecified soft tissue disorder related to use, overuse and pressure, right forearm','Y','0000-00-00 00:00:00'),(122512,10,'M70.929 ','Unspecified soft tissue disorder related to use, overuse and pressure, unspecified upper arm','Y','0000-00-00 00:00:00'),(122511,10,'M70.922 ','Unspecified soft tissue disorder related to use, overuse and pressure, left upper arm','Y','0000-00-00 00:00:00'),(122510,10,'M70.921 ','Unspecified soft tissue disorder related to use, overuse and pressure, right upper arm','Y','0000-00-00 00:00:00'),(122509,10,'M70.919 ','Unspecified soft tissue disorder related to use, overuse and pressure, unspecified shoulder','Y','0000-00-00 00:00:00'),(122508,10,'M70.912 ','Unspecified soft tissue disorder related to use, overuse and pressure, left shoulder','Y','0000-00-00 00:00:00'),(122507,10,'M70.911 ','Unspecified soft tissue disorder related to use, overuse and pressure, right shoulder','Y','0000-00-00 00:00:00'),(122506,10,'M70.90 ','Unspecified soft tissue disorder related to use, overuse and pressure of unspecified site','Y','0000-00-00 00:00:00'),(122505,10,'M70.89 ','Other soft tissue disorders related to use, overuse and pressure multiple sites','Y','0000-00-00 00:00:00'),(122504,10,'M70.88 ','Other soft tissue disorders related to use, overuse and pressure other site','Y','0000-00-00 00:00:00'),(122503,10,'M70.879 ','Other soft tissue disorders related to use, overuse and pressure, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122502,10,'M70.872 ','Other soft tissue disorders related to use, overuse and pressure, left ankle and foot','Y','0000-00-00 00:00:00'),(122501,10,'M70.871 ','Other soft tissue disorders related to use, overuse and pressure, right ankle and foot','Y','0000-00-00 00:00:00'),(122500,10,'M70.869 ','Other soft tissue disorders related to use, overuse and pressure, unspecified leg','Y','0000-00-00 00:00:00'),(122499,10,'M70.862 ','Other soft tissue disorders related to use, overuse and pressure, left lower leg','Y','0000-00-00 00:00:00'),(122498,10,'M70.861 ','Other soft tissue disorders related to use, overuse and pressure, right lower leg','Y','0000-00-00 00:00:00'),(122497,10,'M70.859 ','Other soft tissue disorders related to use, overuse and pressure, unspecified thigh','Y','0000-00-00 00:00:00'),(122496,10,'M70.852 ','Other soft tissue disorders related to use, overuse and pressure, left thigh','Y','0000-00-00 00:00:00'),(122495,10,'M70.851 ','Other soft tissue disorders related to use, overuse and pressure, right thigh','Y','0000-00-00 00:00:00'),(122494,10,'M70.849 ','Other soft tissue disorders related to use, overuse and pressure, unspecified hand','Y','0000-00-00 00:00:00'),(122493,10,'M70.842 ','Other soft tissue disorders related to use, overuse and pressure, left hand','Y','0000-00-00 00:00:00'),(122492,10,'M70.841 ','Other soft tissue disorders related to use, overuse and pressure, right hand','Y','0000-00-00 00:00:00'),(122491,10,'M70.839 ','Other soft tissue disorders related to use, overuse and pressure, unspecified forearm','Y','0000-00-00 00:00:00'),(122490,10,'M70.832 ','Other soft tissue disorders related to use, overuse and pressure, left forearm','Y','0000-00-00 00:00:00'),(122489,10,'M70.831 ','Other soft tissue disorders related to use, overuse and pressure, right forearm','Y','0000-00-00 00:00:00'),(122488,10,'M70.829 ','Other soft tissue disorders related to use, overuse and pressure, unspecified upper arms','Y','0000-00-00 00:00:00'),(122487,10,'M70.822 ','Other soft tissue disorders related to use, overuse and pressure, left upper arm','Y','0000-00-00 00:00:00'),(122486,10,'M70.821 ','Other soft tissue disorders related to use, overuse and pressure, right upper arm','Y','0000-00-00 00:00:00'),(122485,10,'M70.819 ','Other soft tissue disorders related to use, overuse and pressure, unspecified shoulder','Y','0000-00-00 00:00:00'),(122484,10,'M70.812 ','Other soft tissue disorders related to use, overuse and pressure, left shoulder','Y','0000-00-00 00:00:00'),(122483,10,'M70.811 ','Other soft tissue disorders related to use, overuse and pressure, right shoulder','Y','0000-00-00 00:00:00'),(122482,10,'M70.80 ','Other soft tissue disorders related to use, overuse and pressure of unspecified site','Y','0000-00-00 00:00:00'),(122481,10,'M70.72 ','Other bursitis of hip, left hip','Y','0000-00-00 00:00:00'),(122480,10,'M70.71 ','Other bursitis of hip, right hip','Y','0000-00-00 00:00:00'),(122479,10,'M70.70 ','Other bursitis of hip, unspecified hip','Y','0000-00-00 00:00:00'),(122478,10,'M70.62 ','Trochanteric bursitis, left hip','Y','0000-00-00 00:00:00'),(122477,10,'M70.61 ','Trochanteric bursitis, right hip','Y','0000-00-00 00:00:00'),(122476,10,'M70.60 ','Trochanteric bursitis, unspecified hip','Y','0000-00-00 00:00:00'),(122475,10,'M70.52 ','Other bursitis of knee, left knee','Y','0000-00-00 00:00:00'),(122474,10,'M70.51 ','Other bursitis of knee, right knee','Y','0000-00-00 00:00:00'),(122473,10,'M70.50 ','Other bursitis of knee, unspecified knee','Y','0000-00-00 00:00:00'),(122472,10,'M70.42 ','Prepatellar bursitis, left knee','Y','0000-00-00 00:00:00'),(122471,10,'M70.41 ','Prepatellar bursitis, right knee','Y','0000-00-00 00:00:00'),(122470,10,'M70.40 ','Prepatellar bursitis, unspecified knee','Y','0000-00-00 00:00:00'),(122469,10,'M70.32 ','Other bursitis of elbow, left elbow','Y','0000-00-00 00:00:00'),(122468,10,'M70.31 ','Other bursitis of elbow, right elbow','Y','0000-00-00 00:00:00'),(122467,10,'M70.30 ','Other bursitis of elbow, unspecified elbow','Y','0000-00-00 00:00:00'),(122466,10,'M70.22 ','Olecranon bursitis, left elbow','Y','0000-00-00 00:00:00'),(122465,10,'M70.21 ','Olecranon bursitis, right elbow','Y','0000-00-00 00:00:00'),(122464,10,'M70.20 ','Olecranon bursitis, unspecified elbow','Y','0000-00-00 00:00:00'),(122463,10,'M70.12 ','Bursitis, left hand','Y','0000-00-00 00:00:00'),(122462,10,'M70.11 ','Bursitis, right hand','Y','0000-00-00 00:00:00'),(122461,10,'M70.10 ','Bursitis, unspecified hand','Y','0000-00-00 00:00:00'),(122460,10,'M70.049 ','Crepitant synovitis (acute) (chronic), unspecified hand','Y','0000-00-00 00:00:00'),(122459,10,'M70.042 ','Crepitant synovitis (acute) (chronic), left hand','Y','0000-00-00 00:00:00'),(122458,10,'M70.041 ','Crepitant synovitis (acute) (chronic), right hand','Y','0000-00-00 00:00:00'),(122457,10,'M70.039 ','Crepitant synovitis (acute) (chronic), unspecified wrist','Y','0000-00-00 00:00:00'),(122456,10,'M70.032 ','Crepitant synovitis (acute) (chronic), left wrist','Y','0000-00-00 00:00:00'),(122455,10,'M70.031 ','Crepitant synovitis (acute) (chronic), right wrist','Y','0000-00-00 00:00:00'),(122454,10,'M67.99 ','Unspecified disorder of synovium and tendon, multiple sites','Y','0000-00-00 00:00:00'),(122453,10,'M67.98 ','Unspecified disorder of synovium and tendon, other site','Y','0000-00-00 00:00:00'),(122452,10,'M67.979 ','Unspecified disorder of synovium and tendon, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122451,10,'M67.972 ','Unspecified disorder of synovium and tendon, left ankle and foot','Y','0000-00-00 00:00:00'),(122450,10,'M67.971 ','Unspecified disorder of synovium and tendon, right ankle and foot','Y','0000-00-00 00:00:00'),(122449,10,'M67.969 ','Unspecified disorder of synovium and tendon, unspecified lower leg','Y','0000-00-00 00:00:00'),(122448,10,'M67.962 ','Unspecified disorder of synovium and tendon, left lower leg','Y','0000-00-00 00:00:00'),(122447,10,'M67.961 ','Unspecified disorder of synovium and tendon, right lower leg','Y','0000-00-00 00:00:00'),(122446,10,'M67.959 ','Unspecified disorder of synovium and tendon, unspecified thigh','Y','0000-00-00 00:00:00'),(122445,10,'M67.952 ','Unspecified disorder of synovium and tendon, left thigh','Y','0000-00-00 00:00:00'),(122444,10,'M67.951 ','Unspecified disorder of synovium and tendon, right thigh','Y','0000-00-00 00:00:00'),(122443,10,'M67.949 ','Unspecified disorder of synovium and tendon, unspecified hand','Y','0000-00-00 00:00:00'),(122442,10,'M67.942 ','Unspecified disorder of synovium and tendon, left hand','Y','0000-00-00 00:00:00'),(122441,10,'M67.941 ','Unspecified disorder of synovium and tendon, right hand','Y','0000-00-00 00:00:00'),(122440,10,'M67.939 ','Unspecified disorder of synovium and tendon, unspecified forearm','Y','0000-00-00 00:00:00'),(122439,10,'M67.932 ','Unspecified disorder of synovium and tendon, left forearm','Y','0000-00-00 00:00:00'),(122438,10,'M67.931 ','Unspecified disorder of synovium and tendon, right forearm','Y','0000-00-00 00:00:00'),(122437,10,'M67.929 ','Unspecified disorder of synovium and tendon, unspecified upper arm','Y','0000-00-00 00:00:00'),(122436,10,'M67.922 ','Unspecified disorder of synovium and tendon, left upper arm','Y','0000-00-00 00:00:00'),(122435,10,'M67.921 ','Unspecified disorder of synovium and tendon, right upper arm','Y','0000-00-00 00:00:00'),(122434,10,'M67.919 ','Unspecified disorder of synovium and tendon, unspecified shoulder','Y','0000-00-00 00:00:00'),(122433,10,'M67.912 ','Unspecified disorder of synovium and tendon, left shoulder','Y','0000-00-00 00:00:00'),(122432,10,'M67.911 ','Unspecified disorder of synovium and tendon, right shoulder','Y','0000-00-00 00:00:00'),(122431,10,'M67.90 ','Unspecified disorder of synovium and tendon, unspecified site','Y','0000-00-00 00:00:00'),(122430,10,'M67.89 ','Other specified disorders of synovium and tendon, multiple sites','Y','0000-00-00 00:00:00'),(122429,10,'M67.88 ','Other specified disorders of synovium and tendon, other site','Y','0000-00-00 00:00:00'),(122428,10,'M67.879 ','Other specified disorders of synovium and tendon, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122427,10,'M67.874 ','Other specified disorders of tendon, left ankle and foot','Y','0000-00-00 00:00:00'),(122426,10,'M67.873 ','Other specified disorders of tendon, right ankle and foot','Y','0000-00-00 00:00:00'),(122425,10,'M67.872 ','Other specified disorders of synovium, left ankle and foot','Y','0000-00-00 00:00:00'),(122424,10,'M67.871 ','Other specified disorders of synovium, right ankle and foot','Y','0000-00-00 00:00:00'),(122423,10,'M67.869 ','Other specified disorders of synovium and tendon, unspecified knee','Y','0000-00-00 00:00:00'),(122422,10,'M67.864 ','Other specified disorders of tendon, left knee','Y','0000-00-00 00:00:00'),(122421,10,'M67.863 ','Other specified disorders of tendon, right knee','Y','0000-00-00 00:00:00'),(122420,10,'M67.862 ','Other specified disorders of synovium, left knee','Y','0000-00-00 00:00:00'),(122419,10,'M67.861 ','Other specified disorders of synovium, right knee','Y','0000-00-00 00:00:00'),(122418,10,'M67.859 ','Other specified disorders of synovium and tendon, unspecified hip','Y','0000-00-00 00:00:00'),(122417,10,'M67.854 ','Other specified disorders of tendon, left hip','Y','0000-00-00 00:00:00'),(122416,10,'M67.853 ','Other specified disorders of tendon, right hip','Y','0000-00-00 00:00:00'),(122415,10,'M67.852 ','Other specified disorders of synovium, left hip','Y','0000-00-00 00:00:00'),(122414,10,'M67.851 ','Other specified disorders of synovium, right hip','Y','0000-00-00 00:00:00'),(122413,10,'M67.849 ','Other specified disorders of synovium and tendon, unspecified hand','Y','0000-00-00 00:00:00'),(122412,10,'M67.844 ','Other specified disorders of tendon, left hand','Y','0000-00-00 00:00:00'),(122411,10,'M67.843 ','Other specified disorders of tendon, right hand','Y','0000-00-00 00:00:00'),(122410,10,'M67.842 ','Other specified disorders of synovium, left hand','Y','0000-00-00 00:00:00'),(122409,10,'M67.841 ','Other specified disorders of synovium, right hand','Y','0000-00-00 00:00:00'),(122408,10,'M67.839 ','Other specified disorders of synovium and tendon, unspecified wrist','Y','0000-00-00 00:00:00'),(122407,10,'M67.834 ','Other specified disorders of tendon, left wrist','Y','0000-00-00 00:00:00'),(122406,10,'M67.833 ','Other specified disorders of tendon, right wrist','Y','0000-00-00 00:00:00'),(122405,10,'M67.832 ','Other specified disorders of synovium, left wrist','Y','0000-00-00 00:00:00'),(122404,10,'M67.831 ','Other specified disorders of synovium, right wrist','Y','0000-00-00 00:00:00'),(122403,10,'M67.829 ','Other specified disorders of synovium and tendon, unspecified elbow','Y','0000-00-00 00:00:00'),(122402,10,'M67.824 ','Other specified disorders of tendon, left elbow','Y','0000-00-00 00:00:00'),(122401,10,'M67.823 ','Other specified disorders of tendon, right elbow','Y','0000-00-00 00:00:00'),(122400,10,'M67.822 ','Other specified disorders of synovium, left elbow','Y','0000-00-00 00:00:00'),(122399,10,'M67.821 ','Other specified disorders of synovium, right elbow','Y','0000-00-00 00:00:00'),(122398,10,'M67.819 ','Other specified disorders of synovium and tendon, unspecified shoulder','Y','0000-00-00 00:00:00'),(122397,10,'M67.814 ','Other specified disorders of tendon, left shoulder','Y','0000-00-00 00:00:00'),(122396,10,'M67.813 ','Other specified disorders of tendon, right shoulder','Y','0000-00-00 00:00:00'),(122395,10,'M67.812 ','Other specified disorders of synovium, left shoulder','Y','0000-00-00 00:00:00'),(122394,10,'M67.811 ','Other specified disorders of synovium, right shoulder','Y','0000-00-00 00:00:00'),(122393,10,'M67.80 ','Other specified disorders of synovium and tendon, unspecified site','Y','0000-00-00 00:00:00'),(122392,10,'M67.52 ','Plica syndrome, left knee','Y','0000-00-00 00:00:00'),(122391,10,'M67.51 ','Plica syndrome, right knee','Y','0000-00-00 00:00:00'),(122390,10,'M67.50 ','Plica syndrome, unspecified knee','Y','0000-00-00 00:00:00'),(122388,10,'M67.48 ','Ganglion, other site','Y','0000-00-00 00:00:00'),(122389,10,'M67.49 ','Ganglion, multiple sites','Y','0000-00-00 00:00:00'),(122387,10,'M67.479 ','Ganglion, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122386,10,'M67.472 ','Ganglion, left ankle and foot','Y','0000-00-00 00:00:00'),(122385,10,'M67.471 ','Ganglion, right ankle and foot','Y','0000-00-00 00:00:00'),(122384,10,'M67.469 ','Ganglion, unspecified knee','Y','0000-00-00 00:00:00'),(122382,10,'M67.461 ','Ganglion, right knee','Y','0000-00-00 00:00:00'),(122383,10,'M67.462 ','Ganglion, left knee','Y','0000-00-00 00:00:00'),(122381,10,'M67.459 ','Ganglion, unspecified hip','Y','0000-00-00 00:00:00'),(122379,10,'M67.451 ','Ganglion, right hip','Y','0000-00-00 00:00:00'),(122380,10,'M67.452 ','Ganglion, left hip','Y','0000-00-00 00:00:00'),(122378,10,'M67.449 ','Ganglion, unspecified hand','Y','0000-00-00 00:00:00'),(122376,10,'M67.441 ','Ganglion, right hand','Y','0000-00-00 00:00:00'),(122377,10,'M67.442 ','Ganglion, left hand','Y','0000-00-00 00:00:00'),(122375,10,'M67.439 ','Ganglion, unspecified wrist','Y','0000-00-00 00:00:00'),(122373,10,'M67.431 ','Ganglion, right wrist','Y','0000-00-00 00:00:00'),(122374,10,'M67.432 ','Ganglion, left wrist','Y','0000-00-00 00:00:00'),(122372,10,'M67.429 ','Ganglion, unspecified elbow','Y','0000-00-00 00:00:00'),(122370,10,'M67.421 ','Ganglion, right elbow','Y','0000-00-00 00:00:00'),(122371,10,'M67.422 ','Ganglion, left elbow','Y','0000-00-00 00:00:00'),(122369,10,'M67.419 ','Ganglion, unspecified shoulder','Y','0000-00-00 00:00:00'),(122368,10,'M67.412 ','Ganglion, left shoulder','Y','0000-00-00 00:00:00'),(122366,10,'M67.40 ','Ganglion, unspecified site','Y','0000-00-00 00:00:00'),(122367,10,'M67.411 ','Ganglion, right shoulder','Y','0000-00-00 00:00:00'),(122365,10,'M67.39 ','Transient synovitis, multiple sites','Y','0000-00-00 00:00:00'),(122364,10,'M67.38 ','Transient synovitis, other site','Y','0000-00-00 00:00:00'),(122363,10,'M67.379 ','Transient synovitis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122362,10,'M67.372 ','Transient synovitis, left ankle and foot','Y','0000-00-00 00:00:00'),(122361,10,'M67.371 ','Transient synovitis, right ankle and foot','Y','0000-00-00 00:00:00'),(122359,10,'M67.362 ','Transient synovitis, left knee','Y','0000-00-00 00:00:00'),(122360,10,'M67.369 ','Transient synovitis, unspecified knee','Y','0000-00-00 00:00:00'),(122358,10,'M67.361 ','Transient synovitis, right knee','Y','0000-00-00 00:00:00'),(122357,10,'M67.359 ','Transient synovitis, unspecified hip','Y','0000-00-00 00:00:00'),(122355,10,'M67.351 ','Transient synovitis, right hip','Y','0000-00-00 00:00:00'),(122356,10,'M67.352 ','Transient synovitis, left hip','Y','0000-00-00 00:00:00'),(122354,10,'M67.349 ','Transient synovitis, unspecified hand','Y','0000-00-00 00:00:00'),(122353,10,'M67.342 ','Transient synovitis, left hand','Y','0000-00-00 00:00:00'),(122352,10,'M67.341 ','Transient synovitis, right hand','Y','0000-00-00 00:00:00'),(122351,10,'M67.339 ','Transient synovitis, unspecified wrist','Y','0000-00-00 00:00:00'),(122349,10,'M67.331 ','Transient synovitis, right wrist','Y','0000-00-00 00:00:00'),(122350,10,'M67.332 ','Transient synovitis, left wrist','Y','0000-00-00 00:00:00'),(122348,10,'M67.329 ','Transient synovitis, unspecified elbow','Y','0000-00-00 00:00:00'),(122347,10,'M67.322 ','Transient synovitis, left elbow','Y','0000-00-00 00:00:00'),(122346,10,'M67.321 ','Transient synovitis, right elbow','Y','0000-00-00 00:00:00'),(122345,10,'M67.319 ','Transient synovitis, unspecified shoulder','Y','0000-00-00 00:00:00'),(122344,10,'M67.312 ','Transient synovitis, left shoulder','Y','0000-00-00 00:00:00'),(122343,10,'M67.311 ','Transient synovitis, right shoulder','Y','0000-00-00 00:00:00'),(122342,10,'M67.30 ','Transient synovitis, unspecified site','Y','0000-00-00 00:00:00'),(122341,10,'M67.29 ','Synovial hypertrophy, not elsewhere classified, multiple sites','Y','0000-00-00 00:00:00'),(122340,10,'M67.28 ','Synovial hypertrophy, not elsewhere classified, other site','Y','0000-00-00 00:00:00'),(122339,10,'M67.279 ','Synovial hypertrophy, not elsewhere classified, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122338,10,'M67.272 ','Synovial hypertrophy, not elsewhere classified, left ankle and foot','Y','0000-00-00 00:00:00'),(122337,10,'M67.271 ','Synovial hypertrophy, not elsewhere classified, right ankle and foot','Y','0000-00-00 00:00:00'),(122336,10,'M67.269 ','Synovial hypertrophy, not elsewhere classified, unspecified lower leg','Y','0000-00-00 00:00:00'),(122335,10,'M67.262 ','Synovial hypertrophy, not elsewhere classified, left lower leg','Y','0000-00-00 00:00:00'),(122334,10,'M67.261 ','Synovial hypertrophy, not elsewhere classified, right lower leg','Y','0000-00-00 00:00:00'),(122333,10,'M67.259 ','Synovial hypertrophy, not elsewhere classified, unspecified thigh','Y','0000-00-00 00:00:00'),(122332,10,'M67.252 ','Synovial hypertrophy, not elsewhere classified, left thigh','Y','0000-00-00 00:00:00'),(122331,10,'M67.251 ','Synovial hypertrophy, not elsewhere classified, right thigh','Y','0000-00-00 00:00:00'),(122330,10,'M67.249 ','Synovial hypertrophy, not elsewhere classified, unspecified hand','Y','0000-00-00 00:00:00'),(122329,10,'M67.242 ','Synovial hypertrophy, not elsewhere classified, left hand','Y','0000-00-00 00:00:00'),(122328,10,'M67.241 ','Synovial hypertrophy, not elsewhere classified, right hand','Y','0000-00-00 00:00:00'),(122327,10,'M67.239 ','Synovial hypertrophy, not elsewhere classified, unspecified forearm','Y','0000-00-00 00:00:00'),(122326,10,'M67.232 ','Synovial hypertrophy, not elsewhere classified, left forearm','Y','0000-00-00 00:00:00'),(122325,10,'M67.231 ','Synovial hypertrophy, not elsewhere classified, right forearm','Y','0000-00-00 00:00:00'),(122324,10,'M67.229 ','Synovial hypertrophy, not elsewhere classified, unspecified upper arm','Y','0000-00-00 00:00:00'),(122323,10,'M67.222 ','Synovial hypertrophy, not elsewhere classified, left upper arm','Y','0000-00-00 00:00:00'),(122322,10,'M67.221 ','Synovial hypertrophy, not elsewhere classified, right upper arm','Y','0000-00-00 00:00:00'),(122321,10,'M67.219 ','Synovial hypertrophy, not elsewhere classified, unspecified shoulder','Y','0000-00-00 00:00:00'),(122320,10,'M67.212 ','Synovial hypertrophy, not elsewhere classified, left shoulder','Y','0000-00-00 00:00:00'),(122319,10,'M67.211 ','Synovial hypertrophy, not elsewhere classified, right shoulder','Y','0000-00-00 00:00:00'),(122318,10,'M67.20 ','Synovial hypertrophy, not elsewhere classified, unspecified site','Y','0000-00-00 00:00:00'),(122317,10,'M67.02 ','Short Achilles tendon (acquired), left ankle','Y','0000-00-00 00:00:00'),(122316,10,'M67.01 ','Short Achilles tendon (acquired), right ankle','Y','0000-00-00 00:00:00'),(122315,10,'M67.00 ','Short Achilles tendon (acquired), unspecified ankle','Y','0000-00-00 00:00:00'),(122314,10,'M66.9 ','Spontaneous rupture of unspecified tendon','Y','0000-00-00 00:00:00'),(122313,10,'M66.89 ','Spontaneous rupture of other tendons, multiple sites','Y','0000-00-00 00:00:00'),(122312,10,'M66.88 ','Spontaneous rupture of other tendons, other sites','Y','0000-00-00 00:00:00'),(122311,10,'M66.879 ','Spontaneous rupture of other tendons, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122310,10,'M66.872 ','Spontaneous rupture of other tendons, left ankle and foot','Y','0000-00-00 00:00:00'),(122309,10,'M66.871 ','Spontaneous rupture of other tendons, right ankle and foot','Y','0000-00-00 00:00:00'),(122308,10,'M66.869 ','Spontaneous rupture of other tendons, unspecified lower leg','Y','0000-00-00 00:00:00'),(122307,10,'M66.862 ','Spontaneous rupture of other tendons, left lower leg','Y','0000-00-00 00:00:00'),(122306,10,'M66.861 ','Spontaneous rupture of other tendons, right lower leg','Y','0000-00-00 00:00:00'),(122305,10,'M66.859 ','Spontaneous rupture of other tendons, unspecified thigh','Y','0000-00-00 00:00:00'),(122304,10,'M66.852 ','Spontaneous rupture of other tendons, left thigh','Y','0000-00-00 00:00:00'),(122303,10,'M66.851 ','Spontaneous rupture of other tendons, right thigh','Y','0000-00-00 00:00:00'),(122302,10,'M66.849 ','Spontaneous rupture of other tendons, unspecified hand','Y','0000-00-00 00:00:00'),(122301,10,'M66.842 ','Spontaneous rupture of other tendons, left hand','Y','0000-00-00 00:00:00'),(122300,10,'M66.841 ','Spontaneous rupture of other tendons, right hand','Y','0000-00-00 00:00:00'),(122299,10,'M66.839 ','Spontaneous rupture of other tendons, unspecified forearm','Y','0000-00-00 00:00:00'),(122298,10,'M66.832 ','Spontaneous rupture of other tendons, left forearm','Y','0000-00-00 00:00:00'),(122297,10,'M66.831 ','Spontaneous rupture of other tendons, right forearm','Y','0000-00-00 00:00:00'),(122296,10,'M66.829 ','Spontaneous rupture of other tendons, unspecified upper arm','Y','0000-00-00 00:00:00'),(122295,10,'M66.822 ','Spontaneous rupture of other tendons, left upper arm','Y','0000-00-00 00:00:00'),(122294,10,'M66.821 ','Spontaneous rupture of other tendons, right upper arm','Y','0000-00-00 00:00:00'),(122293,10,'M66.819 ','Spontaneous rupture of other tendons, unspecified shoulder','Y','0000-00-00 00:00:00'),(122292,10,'M66.812 ','Spontaneous rupture of other tendons, left shoulder','Y','0000-00-00 00:00:00'),(122291,10,'M66.811 ','Spontaneous rupture of other tendons, right shoulder','Y','0000-00-00 00:00:00'),(122290,10,'M66.80 ','Spontaneous rupture of other tendons, unspecified site','Y','0000-00-00 00:00:00'),(122289,10,'M66.39 ','Spontaneous rupture of flexor tendons, multiple sites','Y','0000-00-00 00:00:00'),(122288,10,'M66.38 ','Spontaneous rupture of flexor tendons, other site','Y','0000-00-00 00:00:00'),(122287,10,'M66.379 ','Spontaneous rupture of flexor tendons, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122286,10,'M66.372 ','Spontaneous rupture of flexor tendons, left ankle and foot','Y','0000-00-00 00:00:00'),(122285,10,'M66.371 ','Spontaneous rupture of flexor tendons, right ankle and foot','Y','0000-00-00 00:00:00'),(122284,10,'M66.369 ','Spontaneous rupture of flexor tendons, unspecified lower leg','Y','0000-00-00 00:00:00'),(122283,10,'M66.362 ','Spontaneous rupture of flexor tendons, left lower leg','Y','0000-00-00 00:00:00'),(122282,10,'M66.361 ','Spontaneous rupture of flexor tendons, right lower leg','Y','0000-00-00 00:00:00'),(122281,10,'M66.359 ','Spontaneous rupture of flexor tendons, unspecified thigh','Y','0000-00-00 00:00:00'),(122280,10,'M66.352 ','Spontaneous rupture of flexor tendons, left thigh','Y','0000-00-00 00:00:00'),(122279,10,'M66.351 ','Spontaneous rupture of flexor tendons, right thigh','Y','0000-00-00 00:00:00'),(122278,10,'M66.349 ','Spontaneous rupture of flexor tendons, unspecified hand','Y','0000-00-00 00:00:00'),(122277,10,'M66.342 ','Spontaneous rupture of flexor tendons, left hand','Y','0000-00-00 00:00:00'),(122276,10,'M66.341 ','Spontaneous rupture of flexor tendons, right hand','Y','0000-00-00 00:00:00'),(122275,10,'M66.339 ','Spontaneous rupture of flexor tendons, unspecified forearm','Y','0000-00-00 00:00:00'),(122274,10,'M66.332 ','Spontaneous rupture of flexor tendons, left forearm','Y','0000-00-00 00:00:00'),(122273,10,'M66.331 ','Spontaneous rupture of flexor tendons, right forearm','Y','0000-00-00 00:00:00'),(122272,10,'M66.329 ','Spontaneous rupture of flexor tendons, unspecified upper arm','Y','0000-00-00 00:00:00'),(122271,10,'M66.322 ','Spontaneous rupture of flexor tendons, left upper arm','Y','0000-00-00 00:00:00'),(122270,10,'M66.321 ','Spontaneous rupture of flexor tendons, right upper arm','Y','0000-00-00 00:00:00'),(122269,10,'M66.319 ','Spontaneous rupture of flexor tendons, unspecified shoulder','Y','0000-00-00 00:00:00'),(122268,10,'M66.312 ','Spontaneous rupture of flexor tendons, left shoulder','Y','0000-00-00 00:00:00'),(122267,10,'M66.311 ','Spontaneous rupture of flexor tendons, right shoulder','Y','0000-00-00 00:00:00'),(122266,10,'M66.30 ','Spontaneous rupture of flexor tendons, unspecified site','Y','0000-00-00 00:00:00'),(122265,10,'M66.29 ','Spontaneous rupture of extensor tendons, multiple sites','Y','0000-00-00 00:00:00'),(122264,10,'M66.28 ','Spontaneous rupture of extensor tendons, other site','Y','0000-00-00 00:00:00'),(122263,10,'M66.279 ','Spontaneous rupture of extensor tendons, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122262,10,'M66.272 ','Spontaneous rupture of extensor tendons, left ankle and foot','Y','0000-00-00 00:00:00'),(122261,10,'M66.271 ','Spontaneous rupture of extensor tendons, right ankle and foot','Y','0000-00-00 00:00:00'),(122260,10,'M66.269 ','Spontaneous rupture of extensor tendons, unspecified lower leg','Y','0000-00-00 00:00:00'),(122259,10,'M66.262 ','Spontaneous rupture of extensor tendons, left lower leg','Y','0000-00-00 00:00:00'),(122258,10,'M66.261 ','Spontaneous rupture of extensor tendons, right lower leg','Y','0000-00-00 00:00:00'),(122257,10,'M66.259 ','Spontaneous rupture of extensor tendons, unspecified thigh','Y','0000-00-00 00:00:00'),(122256,10,'M66.252 ','Spontaneous rupture of extensor tendons, left thigh','Y','0000-00-00 00:00:00'),(122255,10,'M66.251 ','Spontaneous rupture of extensor tendons, right thigh','Y','0000-00-00 00:00:00'),(122254,10,'M66.249 ','Spontaneous rupture of extensor tendons, unspecified hand','Y','0000-00-00 00:00:00'),(122253,10,'M66.242 ','Spontaneous rupture of extensor tendons, left hand','Y','0000-00-00 00:00:00'),(122252,10,'M66.241 ','Spontaneous rupture of extensor tendons, right hand','Y','0000-00-00 00:00:00'),(122251,10,'M66.239 ','Spontaneous rupture of extensor tendons, unspecified forearm','Y','0000-00-00 00:00:00'),(122250,10,'M66.232 ','Spontaneous rupture of extensor tendons, left forearm','Y','0000-00-00 00:00:00'),(122249,10,'M66.231 ','Spontaneous rupture of extensor tendons, right forearm','Y','0000-00-00 00:00:00'),(122248,10,'M66.229 ','Spontaneous rupture of extensor tendons, unspecified upper arm','Y','0000-00-00 00:00:00'),(122247,10,'M66.222 ','Spontaneous rupture of extensor tendons, left upper arm','Y','0000-00-00 00:00:00'),(122246,10,'M66.221 ','Spontaneous rupture of extensor tendons, right upper arm','Y','0000-00-00 00:00:00'),(122245,10,'M66.219 ','Spontaneous rupture of extensor tendons, unspecified shoulder','Y','0000-00-00 00:00:00'),(122244,10,'M66.212 ','Spontaneous rupture of extensor tendons, left shoulder','Y','0000-00-00 00:00:00'),(122243,10,'M66.211 ','Spontaneous rupture of extensor tendons, right shoulder','Y','0000-00-00 00:00:00'),(122242,10,'M66.20 ','Spontaneous rupture of extensor tendons, unspecified site','Y','0000-00-00 00:00:00'),(122241,10,'M66.18 ','Rupture of synovium, other site','Y','0000-00-00 00:00:00'),(122240,10,'M66.179 ','Rupture of synovium, unspecified toe(s)','Y','0000-00-00 00:00:00'),(122239,10,'M66.178 ','Rupture of synovium, left toe(s)','Y','0000-00-00 00:00:00'),(122238,10,'M66.177 ','Rupture of synovium, right toe(s)','Y','0000-00-00 00:00:00'),(122237,10,'M66.176 ','Rupture of synovium, unspecified foot','Y','0000-00-00 00:00:00'),(122236,10,'M66.175 ','Rupture of synovium, left foot','Y','0000-00-00 00:00:00'),(122235,10,'M66.174 ','Rupture of synovium, right foot','Y','0000-00-00 00:00:00'),(122234,10,'M66.173 ','Rupture of synovium, unspecified ankle','Y','0000-00-00 00:00:00'),(122233,10,'M66.172 ','Rupture of synovium, left ankle','Y','0000-00-00 00:00:00'),(122232,10,'M66.171 ','Rupture of synovium, right ankle','Y','0000-00-00 00:00:00'),(122231,10,'M66.159 ','Rupture of synovium, unspecified hip','Y','0000-00-00 00:00:00'),(122230,10,'M66.152 ','Rupture of synovium, left hip','Y','0000-00-00 00:00:00'),(122229,10,'M66.151 ','Rupture of synovium, right hip','Y','0000-00-00 00:00:00'),(122228,10,'M66.146 ','Rupture of synovium, unspecified finger(s)','Y','0000-00-00 00:00:00'),(122227,10,'M66.145 ','Rupture of synovium, left finger(s)','Y','0000-00-00 00:00:00'),(122226,10,'M66.144 ','Rupture of synovium, right finger(s)','Y','0000-00-00 00:00:00'),(122225,10,'M66.143 ','Rupture of synovium, unspecified hand','Y','0000-00-00 00:00:00'),(122224,10,'M66.142 ','Rupture of synovium, left hand','Y','0000-00-00 00:00:00'),(122223,10,'M66.141 ','Rupture of synovium, right hand','Y','0000-00-00 00:00:00'),(122222,10,'M66.139 ','Rupture of synovium, unspecified wrist','Y','0000-00-00 00:00:00'),(122221,10,'M66.132 ','Rupture of synovium, left wrist','Y','0000-00-00 00:00:00'),(122220,10,'M66.131 ','Rupture of synovium, right wrist','Y','0000-00-00 00:00:00'),(122219,10,'M66.129 ','Rupture of synovium, unspecified elbow','Y','0000-00-00 00:00:00'),(122218,10,'M66.122 ','Rupture of synovium, left elbow','Y','0000-00-00 00:00:00'),(122217,10,'M66.121 ','Rupture of synovium, right elbow','Y','0000-00-00 00:00:00'),(122216,10,'M66.119 ','Rupture of synovium, unspecified shoulder','Y','0000-00-00 00:00:00'),(122215,10,'M66.112 ','Rupture of synovium, left shoulder','Y','0000-00-00 00:00:00'),(122214,10,'M66.111 ','Rupture of synovium, right shoulder','Y','0000-00-00 00:00:00'),(122213,10,'M66.10 ','Rupture of synovium, unspecified joint','Y','0000-00-00 00:00:00'),(122212,10,'M66.0 ','Rupture of popliteal cyst','Y','0000-00-00 00:00:00'),(122211,10,'M65.9 ','Synovitis and tenosynovitis, unspecified','Y','0000-00-00 00:00:00'),(122210,10,'M65.89 ','Other synovitis and tenosynovitis, multiple sites','Y','0000-00-00 00:00:00'),(122209,10,'M65.88 ','Other synovitis and tenosynovitis, other site','Y','0000-00-00 00:00:00'),(122208,10,'M65.879 ','Other synovitis and tenosynovitis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122207,10,'M65.872 ','Other synovitis and tenosynovitis, left ankle and foot','Y','0000-00-00 00:00:00'),(122206,10,'M65.871 ','Other synovitis and tenosynovitis, right ankle and foot','Y','0000-00-00 00:00:00'),(122205,10,'M65.869 ','Other synovitis and tenosynovitis, unspecified lower leg','Y','0000-00-00 00:00:00'),(122204,10,'M65.862 ','Other synovitis and tenosynovitis, left lower leg','Y','0000-00-00 00:00:00'),(122203,10,'M65.861 ','Other synovitis and tenosynovitis, right lower leg','Y','0000-00-00 00:00:00'),(122202,10,'M65.859 ','Other synovitis and tenosynovitis, unspecified thigh','Y','0000-00-00 00:00:00'),(122201,10,'M65.852 ','Other synovitis and tenosynovitis, left thigh','Y','0000-00-00 00:00:00'),(122200,10,'M65.851 ','Other synovitis and tenosynovitis, right thigh','Y','0000-00-00 00:00:00'),(122199,10,'M65.849 ','Other synovitis and tenosynovitis, unspecified hand','Y','0000-00-00 00:00:00'),(122198,10,'M65.842 ','Other synovitis and tenosynovitis, left hand','Y','0000-00-00 00:00:00'),(122197,10,'M65.841 ','Other synovitis and tenosynovitis, right hand','Y','0000-00-00 00:00:00'),(122196,10,'M65.839 ','Other synovitis and tenosynovitis, unspecified forearm','Y','0000-00-00 00:00:00'),(122195,10,'M65.832 ','Other synovitis and tenosynovitis, left forearm','Y','0000-00-00 00:00:00'),(122194,10,'M65.831 ','Other synovitis and tenosynovitis, right forearm','Y','0000-00-00 00:00:00'),(122193,10,'M65.829 ','Other synovitis and tenosynovitis, unspecified upper arm','Y','0000-00-00 00:00:00'),(122192,10,'M65.822 ','Other synovitis and tenosynovitis, left upper arm','Y','0000-00-00 00:00:00'),(122191,10,'M65.821 ','Other synovitis and tenosynovitis, right upper arm','Y','0000-00-00 00:00:00'),(122190,10,'M65.819 ','Other synovitis and tenosynovitis, unspecified shoulder','Y','0000-00-00 00:00:00'),(122189,10,'M65.812 ','Other synovitis and tenosynovitis, left shoulder','Y','0000-00-00 00:00:00'),(122188,10,'M65.811 ','Other synovitis and tenosynovitis, right shoulder','Y','0000-00-00 00:00:00'),(122187,10,'M65.80 ','Other synovitis and tenosynovitis, unspecified site','Y','0000-00-00 00:00:00'),(122186,10,'M65.4 ','Radial styloid tenosynovitis [de Quervain]','Y','0000-00-00 00:00:00'),(122185,10,'M65.359 ','Trigger finger, unspecified little finger','Y','0000-00-00 00:00:00'),(122184,10,'M65.352 ','Trigger finger, left little finger','Y','0000-00-00 00:00:00'),(122183,10,'M65.351 ','Trigger finger, right little finger','Y','0000-00-00 00:00:00'),(122182,10,'M65.349 ','Trigger finger, unspecified ring finger','Y','0000-00-00 00:00:00'),(122181,10,'M65.342 ','Trigger finger, left ring finger','Y','0000-00-00 00:00:00'),(122180,10,'M65.341 ','Trigger finger, right ring finger','Y','0000-00-00 00:00:00'),(122179,10,'M65.339 ','Trigger finger, unspecified middle finger','Y','0000-00-00 00:00:00'),(122178,10,'M65.332 ','Trigger finger, left middle finger','Y','0000-00-00 00:00:00'),(122177,10,'M65.331 ','Trigger finger, right middle finger','Y','0000-00-00 00:00:00'),(122176,10,'M65.329 ','Trigger finger, unspecified index finger','Y','0000-00-00 00:00:00'),(122175,10,'M65.322 ','Trigger finger, left index finger','Y','0000-00-00 00:00:00'),(122174,10,'M65.321 ','Trigger finger, right index finger','Y','0000-00-00 00:00:00'),(122173,10,'M65.319 ','Trigger thumb, unspecified thumb','Y','0000-00-00 00:00:00'),(122172,10,'M65.312 ','Trigger thumb, left thumb','Y','0000-00-00 00:00:00'),(122171,10,'M65.311 ','Trigger thumb, right thumb','Y','0000-00-00 00:00:00'),(122170,10,'M65.30 ','Trigger finger, unspecified finger','Y','0000-00-00 00:00:00'),(122169,10,'M65.29 ','Calcific tendinitis, multiple sites','Y','0000-00-00 00:00:00'),(122168,10,'M65.28 ','Calcific tendinitis, other site','Y','0000-00-00 00:00:00'),(122167,10,'M65.279 ','Calcific tendinitis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122166,10,'M65.272 ','Calcific tendinitis, left ankle and foot','Y','0000-00-00 00:00:00'),(122165,10,'M65.271 ','Calcific tendinitis, right ankle and foot','Y','0000-00-00 00:00:00'),(122164,10,'M65.269 ','Calcific tendinitis, unspecified lower leg','Y','0000-00-00 00:00:00'),(122163,10,'M65.262 ','Calcific tendinitis, left lower leg','Y','0000-00-00 00:00:00'),(122162,10,'M65.261 ','Calcific tendinitis, right lower leg','Y','0000-00-00 00:00:00'),(122161,10,'M65.259 ','Calcific tendinitis, unspecified thigh','Y','0000-00-00 00:00:00'),(122160,10,'M65.252 ','Calcific tendinitis, left thigh','Y','0000-00-00 00:00:00'),(122159,10,'M65.251 ','Calcific tendinitis, right thigh','Y','0000-00-00 00:00:00'),(122158,10,'M65.249 ','Calcific tendinitis, unspecified hand','Y','0000-00-00 00:00:00'),(122157,10,'M65.242 ','Calcific tendinitis, left hand','Y','0000-00-00 00:00:00'),(122156,10,'M65.241 ','Calcific tendinitis, right hand','Y','0000-00-00 00:00:00'),(122155,10,'M65.239 ','Calcific tendinitis, unspecified forearm','Y','0000-00-00 00:00:00'),(122153,10,'M65.231 ','Calcific tendinitis, right forearm','Y','0000-00-00 00:00:00'),(122154,10,'M65.232 ','Calcific tendinitis, left forearm','Y','0000-00-00 00:00:00'),(122152,10,'M65.229 ','Calcific tendinitis, unspecified upper arm','Y','0000-00-00 00:00:00'),(122151,10,'M65.222 ','Calcific tendinitis, left upper arm','Y','0000-00-00 00:00:00'),(122150,10,'M65.221 ','Calcific tendinitis, right upper arm','Y','0000-00-00 00:00:00'),(122149,10,'M65.20 ','Calcific tendinitis, unspecified site','Y','0000-00-00 00:00:00'),(122148,10,'M65.19 ','Other infective (teno)synovitis, multiple sites','Y','0000-00-00 00:00:00'),(122147,10,'M65.18 ','Other infective (teno)synovitis, other site','Y','0000-00-00 00:00:00'),(122146,10,'M65.179 ','Other infective (teno)synovitis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122145,10,'M65.172 ','Other infective (teno)synovitis, left ankle and foot','Y','0000-00-00 00:00:00'),(122144,10,'M65.171 ','Other infective (teno)synovitis, right ankle and foot','Y','0000-00-00 00:00:00'),(122143,10,'M65.169 ','Other infective (teno)synovitis, unspecified knee','Y','0000-00-00 00:00:00'),(122142,10,'M65.162 ','Other infective (teno)synovitis, left knee','Y','0000-00-00 00:00:00'),(122141,10,'M65.161 ','Other infective (teno)synovitis, right knee','Y','0000-00-00 00:00:00'),(122140,10,'M65.159 ','Other infective (teno)synovitis, unspecified hip','Y','0000-00-00 00:00:00'),(122139,10,'M65.152 ','Other infective (teno)synovitis, left hip','Y','0000-00-00 00:00:00'),(122138,10,'M65.151 ','Other infective (teno)synovitis, right hip','Y','0000-00-00 00:00:00'),(122137,10,'M65.149 ','Other infective (teno)synovitis, unspecified hand','Y','0000-00-00 00:00:00'),(122136,10,'M65.142 ','Other infective (teno)synovitis, left hand','Y','0000-00-00 00:00:00'),(122135,10,'M65.141 ','Other infective (teno)synovitis, right hand','Y','0000-00-00 00:00:00'),(122134,10,'M65.139 ','Other infective (teno)synovitis, unspecified wrist','Y','0000-00-00 00:00:00'),(122133,10,'M65.132 ','Other infective (teno)synovitis, left wrist','Y','0000-00-00 00:00:00'),(122132,10,'M65.131 ','Other infective (teno)synovitis, right wrist','Y','0000-00-00 00:00:00'),(122131,10,'M65.129 ','Other infective (teno)synovitis, unspecified elbow','Y','0000-00-00 00:00:00'),(122130,10,'M65.122 ','Other infective (teno)synovitis, left elbow','Y','0000-00-00 00:00:00'),(122129,10,'M65.121 ','Other infective (teno)synovitis, right elbow','Y','0000-00-00 00:00:00'),(122128,10,'M65.119 ','Other infective (teno)synovitis, unspecified shoulder','Y','0000-00-00 00:00:00'),(122127,10,'M65.112 ','Other infective (teno)synovitis, left shoulder','Y','0000-00-00 00:00:00'),(122126,10,'M65.111 ','Other infective (teno)synovitis, right shoulder','Y','0000-00-00 00:00:00'),(122125,10,'M65.10 ','Other infective (teno)synovitis, unspecified site','Y','0000-00-00 00:00:00'),(122124,10,'M65.08 ','Abscess of tendon sheath, other site','Y','0000-00-00 00:00:00'),(122123,10,'M65.079 ','Abscess of tendon sheath, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122122,10,'M65.072 ','Abscess of tendon sheath, left ankle and foot','Y','0000-00-00 00:00:00'),(122121,10,'M65.071 ','Abscess of tendon sheath, right ankle and foot','Y','0000-00-00 00:00:00'),(122120,10,'M65.069 ','Abscess of tendon sheath, unspecified lower leg','Y','0000-00-00 00:00:00'),(122119,10,'M65.062 ','Abscess of tendon sheath, left lower leg','Y','0000-00-00 00:00:00'),(122118,10,'M65.061 ','Abscess of tendon sheath, right lower leg','Y','0000-00-00 00:00:00'),(122117,10,'M65.059 ','Abscess of tendon sheath, unspecified thigh','Y','0000-00-00 00:00:00'),(122116,10,'M65.052 ','Abscess of tendon sheath, left thigh','Y','0000-00-00 00:00:00'),(122115,10,'M65.051 ','Abscess of tendon sheath, right thigh','Y','0000-00-00 00:00:00'),(122114,10,'M65.049 ','Abscess of tendon sheath, unspecified hand','Y','0000-00-00 00:00:00'),(122113,10,'M65.042 ','Abscess of tendon sheath, left hand','Y','0000-00-00 00:00:00'),(122112,10,'M65.041 ','Abscess of tendon sheath, right hand','Y','0000-00-00 00:00:00'),(122111,10,'M65.039 ','Abscess of tendon sheath, unspecified forearm','Y','0000-00-00 00:00:00'),(122110,10,'M65.032 ','Abscess of tendon sheath, left forearm','Y','0000-00-00 00:00:00'),(122109,10,'M65.031 ','Abscess of tendon sheath, right forearm','Y','0000-00-00 00:00:00'),(122108,10,'M65.029 ','Abscess of tendon sheath, unspecified upper arm','Y','0000-00-00 00:00:00'),(122107,10,'M65.022 ','Abscess of tendon sheath, left upper arm','Y','0000-00-00 00:00:00'),(122106,10,'M65.021 ','Abscess of tendon sheath, right upper arm','Y','0000-00-00 00:00:00'),(122105,10,'M65.019 ','Abscess of tendon sheath, unspecified shoulder','Y','0000-00-00 00:00:00'),(122104,10,'M65.012 ','Abscess of tendon sheath, left shoulder','Y','0000-00-00 00:00:00'),(122103,10,'M65.011 ','Abscess of tendon sheath, right shoulder','Y','0000-00-00 00:00:00'),(122102,10,'M65.00 ','Abscess of tendon sheath, unspecified site','Y','0000-00-00 00:00:00'),(122101,10,'M63.89 ','Disorders of muscle in diseases classified elsewhere, multiple sites','Y','0000-00-00 00:00:00'),(122100,10,'M63.88 ','Disorders of muscle in diseases classified elsewhere, other site','Y','0000-00-00 00:00:00'),(122099,10,'M63.879 ','Disorders of muscle in diseases classified elsewhere, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122098,10,'M63.872 ','Disorders of muscle in diseases classified elsewhere, left ankle and foot','Y','0000-00-00 00:00:00'),(122097,10,'M63.871 ','Disorders of muscle in diseases classified elsewhere, right ankle and foot','Y','0000-00-00 00:00:00'),(122096,10,'M63.869 ','Disorders of muscle in diseases classified elsewhere, unspecified lower leg','Y','0000-00-00 00:00:00'),(122095,10,'M63.862 ','Disorders of muscle in diseases classified elsewhere, left lower leg','Y','0000-00-00 00:00:00'),(122094,10,'M63.861 ','Disorders of muscle in diseases classified elsewhere, right lower leg','Y','0000-00-00 00:00:00'),(122093,10,'M63.859 ','Disorders of muscle in diseases classified elsewhere, unspecified thigh','Y','0000-00-00 00:00:00'),(122092,10,'M63.852 ','Disorders of muscle in diseases classified elsewhere, left thigh','Y','0000-00-00 00:00:00'),(122091,10,'M63.851 ','Disorders of muscle in diseases classified elsewhere, right thigh','Y','0000-00-00 00:00:00'),(122090,10,'M63.849 ','Disorders of muscle in diseases classified elsewhere, unspecified hand','Y','0000-00-00 00:00:00'),(122089,10,'M63.842 ','Disorders of muscle in diseases classified elsewhere, left hand','Y','0000-00-00 00:00:00'),(122088,10,'M63.841 ','Disorders of muscle in diseases classified elsewhere, right hand','Y','0000-00-00 00:00:00'),(122087,10,'M63.839 ','Disorders of muscle in diseases classified elsewhere, unspecified forearm','Y','0000-00-00 00:00:00'),(122086,10,'M63.832 ','Disorders of muscle in diseases classified elsewhere, left forearm','Y','0000-00-00 00:00:00'),(122085,10,'M63.831 ','Disorders of muscle in diseases classified elsewhere, right forearm','Y','0000-00-00 00:00:00'),(122084,10,'M63.829 ','Disorders of muscle in diseases classified elsewhere, unspecified upper arm','Y','0000-00-00 00:00:00'),(122083,10,'M63.822 ','Disorders of muscle in diseases classified elsewhere, left upper arm','Y','0000-00-00 00:00:00'),(122082,10,'M63.821 ','Disorders of muscle in diseases classified elsewhere, right upper arm','Y','0000-00-00 00:00:00'),(122081,10,'M63.819 ','Disorders of muscle in diseases classified elsewhere, unspecified shoulder','Y','0000-00-00 00:00:00'),(122080,10,'M63.812 ','Disorders of muscle in diseases classified elsewhere, left shoulder','Y','0000-00-00 00:00:00'),(122079,10,'M63.811 ','Disorders of muscle in diseases classified elsewhere, right shoulder','Y','0000-00-00 00:00:00'),(122078,10,'M63.80 ','Disorders of muscle in diseases classified elsewhere, unspecified site','Y','0000-00-00 00:00:00'),(122076,10,'M62.89 ','Other specified disorders of muscle','Y','0000-00-00 00:00:00'),(122077,10,'M62.9 ','Disorder of muscle, unspecified','Y','0000-00-00 00:00:00'),(122075,10,'M62.84 ','Sarcopenia','Y','0000-00-00 00:00:00'),(122073,10,'M62.831 ','Muscle spasm of calf','Y','0000-00-00 00:00:00'),(122074,10,'M62.838 ','Other muscle spasm','Y','0000-00-00 00:00:00'),(122071,10,'M62.82 ','Rhabdomyolysis','Y','0000-00-00 00:00:00'),(122072,10,'M62.830 ','Muscle spasm of back','Y','0000-00-00 00:00:00'),(122070,10,'M62.81 ','Muscle weakness (generalized)','Y','0000-00-00 00:00:00'),(122069,10,'M62.5A9 ','Muscle wasting and atrophy, not elsewhere classified, back, unspecified level','Y','0000-00-00 00:00:00'),(122068,10,'M62.5A2 ','Muscle wasting and atrophy, not elsewhere classified, back, lumbosacral','Y','0000-00-00 00:00:00'),(122067,10,'M62.5A1 ','Muscle wasting and atrophy, not elsewhere classified, back, thoracic','Y','0000-00-00 00:00:00'),(122066,10,'M62.5A0 ','Muscle wasting and atrophy, not elsewhere classified, back, cervical','Y','0000-00-00 00:00:00'),(122065,10,'M62.59 ','Muscle wasting and atrophy, not elsewhere classified, multiple sites','Y','0000-00-00 00:00:00'),(122064,10,'M62.58 ','Muscle wasting and atrophy, not elsewhere classified, other site','Y','0000-00-00 00:00:00'),(122063,10,'M62.579 ','Muscle wasting and atrophy, not elsewhere classified, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122062,10,'M62.572 ','Muscle wasting and atrophy, not elsewhere classified, left ankle and foot','Y','0000-00-00 00:00:00'),(122061,10,'M62.571 ','Muscle wasting and atrophy, not elsewhere classified, right ankle and foot','Y','0000-00-00 00:00:00'),(122060,10,'M62.569 ','Muscle wasting and atrophy, not elsewhere classified, unspecified lower leg','Y','0000-00-00 00:00:00'),(122059,10,'M62.562 ','Muscle wasting and atrophy, not elsewhere classified, left lower leg','Y','0000-00-00 00:00:00'),(122058,10,'M62.561 ','Muscle wasting and atrophy, not elsewhere classified, right lower leg','Y','0000-00-00 00:00:00'),(122057,10,'M62.559 ','Muscle wasting and atrophy, not elsewhere classified, unspecified thigh','Y','0000-00-00 00:00:00'),(122056,10,'M62.552 ','Muscle wasting and atrophy, not elsewhere classified, left thigh','Y','0000-00-00 00:00:00'),(122055,10,'M62.551 ','Muscle wasting and atrophy, not elsewhere classified, right thigh','Y','0000-00-00 00:00:00'),(122054,10,'M62.549 ','Muscle wasting and atrophy, not elsewhere classified, unspecified hand','Y','0000-00-00 00:00:00'),(122053,10,'M62.542 ','Muscle wasting and atrophy, not elsewhere classified, left hand','Y','0000-00-00 00:00:00'),(122052,10,'M62.541 ','Muscle wasting and atrophy, not elsewhere classified, right hand','Y','0000-00-00 00:00:00'),(122051,10,'M62.539 ','Muscle wasting and atrophy, not elsewhere classified, unspecified forearm','Y','0000-00-00 00:00:00'),(122050,10,'M62.532 ','Muscle wasting and atrophy, not elsewhere classified, left forearm','Y','0000-00-00 00:00:00'),(122049,10,'M62.531 ','Muscle wasting and atrophy, not elsewhere classified, right forearm','Y','0000-00-00 00:00:00'),(122048,10,'M62.529 ','Muscle wasting and atrophy, not elsewhere classified, unspecified upper arm','Y','0000-00-00 00:00:00'),(122047,10,'M62.522 ','Muscle wasting and atrophy, not elsewhere classified, left upper arm','Y','0000-00-00 00:00:00'),(122046,10,'M62.521 ','Muscle wasting and atrophy, not elsewhere classified, right upper arm','Y','0000-00-00 00:00:00'),(122045,10,'M62.519 ','Muscle wasting and atrophy, not elsewhere classified, unspecified shoulder','Y','0000-00-00 00:00:00'),(122044,10,'M62.512 ','Muscle wasting and atrophy, not elsewhere classified, left shoulder','Y','0000-00-00 00:00:00'),(122043,10,'M62.511 ','Muscle wasting and atrophy, not elsewhere classified, right shoulder','Y','0000-00-00 00:00:00'),(122042,10,'M62.50 ','Muscle wasting and atrophy, not elsewhere classified, unspecified site','Y','0000-00-00 00:00:00'),(122041,10,'M62.49 ','Contracture of muscle, multiple sites','Y','0000-00-00 00:00:00'),(122040,10,'M62.48 ','Contracture of muscle, other site','Y','0000-00-00 00:00:00'),(122039,10,'M62.479 ','Contracture of muscle, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122038,10,'M62.472 ','Contracture of muscle, left ankle and foot','Y','0000-00-00 00:00:00'),(122037,10,'M62.471 ','Contracture of muscle, right ankle and foot','Y','0000-00-00 00:00:00'),(122036,10,'M62.469 ','Contracture of muscle, unspecified lower leg','Y','0000-00-00 00:00:00'),(122035,10,'M62.462 ','Contracture of muscle, left lower leg','Y','0000-00-00 00:00:00'),(122034,10,'M62.461 ','Contracture of muscle, right lower leg','Y','0000-00-00 00:00:00'),(122033,10,'M62.459 ','Contracture of muscle, unspecified thigh','Y','0000-00-00 00:00:00'),(122032,10,'M62.452 ','Contracture of muscle, left thigh','Y','0000-00-00 00:00:00'),(122031,10,'M62.451 ','Contracture of muscle, right thigh','Y','0000-00-00 00:00:00'),(122030,10,'M62.449 ','Contracture of muscle, unspecified hand','Y','0000-00-00 00:00:00'),(122028,10,'M62.441 ','Contracture of muscle, right hand','Y','0000-00-00 00:00:00'),(122029,10,'M62.442 ','Contracture of muscle, left hand','Y','0000-00-00 00:00:00'),(122027,10,'M62.439 ','Contracture of muscle, unspecified forearm','Y','0000-00-00 00:00:00'),(122026,10,'M62.432 ','Contracture of muscle, left forearm','Y','0000-00-00 00:00:00'),(122025,10,'M62.431 ','Contracture of muscle, right forearm','Y','0000-00-00 00:00:00'),(122024,10,'M62.429 ','Contracture of muscle, unspecified upper arm','Y','0000-00-00 00:00:00'),(122023,10,'M62.422 ','Contracture of muscle, left upper arm','Y','0000-00-00 00:00:00'),(122022,10,'M62.421 ','Contracture of muscle, right upper arm','Y','0000-00-00 00:00:00'),(122021,10,'M62.419 ','Contracture of muscle, unspecified shoulder','Y','0000-00-00 00:00:00'),(122020,10,'M62.412 ','Contracture of muscle, left shoulder','Y','0000-00-00 00:00:00'),(122019,10,'M62.411 ','Contracture of muscle, right shoulder','Y','0000-00-00 00:00:00'),(122018,10,'M62.40 ','Contracture of muscle, unspecified site','Y','0000-00-00 00:00:00'),(122017,10,'M62.3 ','Immobility syndrome (paraplegic)','Y','0000-00-00 00:00:00'),(122016,10,'M62.28 ','Nontraumatic ischemic infarction of muscle, other site','Y','0000-00-00 00:00:00'),(122015,10,'M62.279 ','Nontraumatic ischemic infarction of muscle, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(122014,10,'M62.272 ','Nontraumatic ischemic infarction of muscle, left ankle and foot','Y','0000-00-00 00:00:00'),(122013,10,'M62.271 ','Nontraumatic ischemic infarction of muscle, right ankle and foot','Y','0000-00-00 00:00:00'),(122012,10,'M62.269 ','Nontraumatic ischemic infarction of muscle, unspecified lower leg','Y','0000-00-00 00:00:00'),(122011,10,'M62.262 ','Nontraumatic ischemic infarction of muscle, left lower leg','Y','0000-00-00 00:00:00'),(122010,10,'M62.261 ','Nontraumatic ischemic infarction of muscle, right lower leg','Y','0000-00-00 00:00:00'),(122009,10,'M62.259 ','Nontraumatic ischemic infarction of muscle, unspecified thigh','Y','0000-00-00 00:00:00'),(122008,10,'M62.252 ','Nontraumatic ischemic infarction of muscle, left thigh','Y','0000-00-00 00:00:00'),(122007,10,'M62.251 ','Nontraumatic ischemic infarction of muscle, right thigh','Y','0000-00-00 00:00:00'),(122006,10,'M62.249 ','Nontraumatic ischemic infarction of muscle, unspecified hand','Y','0000-00-00 00:00:00'),(122005,10,'M62.242 ','Nontraumatic ischemic infarction of muscle, left hand','Y','0000-00-00 00:00:00'),(122004,10,'M62.241 ','Nontraumatic ischemic infarction of muscle, right hand','Y','0000-00-00 00:00:00'),(122003,10,'M62.239 ','Nontraumatic ischemic infarction of muscle, unspecified forearm','Y','0000-00-00 00:00:00'),(122002,10,'M62.232 ','Nontraumatic ischemic infarction of muscle, left forearm','Y','0000-00-00 00:00:00'),(122001,10,'M62.231 ','Nontraumatic ischemic infarction of muscle, right forearm','Y','0000-00-00 00:00:00'),(122000,10,'M62.229 ','Nontraumatic ischemic infarction of muscle, unspecified upper arm','Y','0000-00-00 00:00:00'),(121999,10,'M62.222 ','Nontraumatic ischemic infarction of muscle, left upper arm','Y','0000-00-00 00:00:00'),(121998,10,'M62.221 ','Nontraumatic ischemic infarction of muscle, right upper arm','Y','0000-00-00 00:00:00'),(121997,10,'M62.219 ','Nontraumatic ischemic infarction of muscle, unspecified shoulder','Y','0000-00-00 00:00:00'),(121996,10,'M62.212 ','Nontraumatic ischemic infarction of muscle, left shoulder','Y','0000-00-00 00:00:00'),(121995,10,'M62.211 ','Nontraumatic ischemic infarction of muscle, right shoulder','Y','0000-00-00 00:00:00'),(121994,10,'M62.20 ','Nontraumatic ischemic infarction of muscle, unspecified site','Y','0000-00-00 00:00:00'),(121993,10,'M62.18 ','Other rupture of muscle (nontraumatic), other site','Y','0000-00-00 00:00:00'),(121992,10,'M62.179 ','Other rupture of muscle (nontraumatic), unspecified ankle and foot','Y','0000-00-00 00:00:00'),(121991,10,'M62.172 ','Other rupture of muscle (nontraumatic), left ankle and foot','Y','0000-00-00 00:00:00'),(121990,10,'M62.171 ','Other rupture of muscle (nontraumatic), right ankle and foot','Y','0000-00-00 00:00:00'),(121989,10,'M62.169 ','Other rupture of muscle (nontraumatic), unspecified lower leg','Y','0000-00-00 00:00:00'),(121988,10,'M62.162 ','Other rupture of muscle (nontraumatic), left lower leg','Y','0000-00-00 00:00:00'),(121987,10,'M62.161 ','Other rupture of muscle (nontraumatic), right lower leg','Y','0000-00-00 00:00:00'),(121986,10,'M62.159 ','Other rupture of muscle (nontraumatic), unspecified thigh','Y','0000-00-00 00:00:00'),(121985,10,'M62.152 ','Other rupture of muscle (nontraumatic), left thigh','Y','0000-00-00 00:00:00'),(121984,10,'M62.151 ','Other rupture of muscle (nontraumatic), right thigh','Y','0000-00-00 00:00:00'),(121983,10,'M62.149 ','Other rupture of muscle (nontraumatic), unspecified hand','Y','0000-00-00 00:00:00'),(121982,10,'M62.142 ','Other rupture of muscle (nontraumatic), left hand','Y','0000-00-00 00:00:00'),(121981,10,'M62.141 ','Other rupture of muscle (nontraumatic), right hand','Y','0000-00-00 00:00:00'),(121980,10,'M62.139 ','Other rupture of muscle (nontraumatic), unspecified forearm','Y','0000-00-00 00:00:00'),(121979,10,'M62.132 ','Other rupture of muscle (nontraumatic), left forearm','Y','0000-00-00 00:00:00'),(121978,10,'M62.131 ','Other rupture of muscle (nontraumatic), right forearm','Y','0000-00-00 00:00:00'),(121977,10,'M62.129 ','Other rupture of muscle (nontraumatic), unspecified upper arm','Y','0000-00-00 00:00:00'),(121976,10,'M62.122 ','Other rupture of muscle (nontraumatic), left upper arm','Y','0000-00-00 00:00:00'),(121975,10,'M62.121 ','Other rupture of muscle (nontraumatic), right upper arm','Y','0000-00-00 00:00:00'),(121974,10,'M62.119 ','Other rupture of muscle (nontraumatic), unspecified shoulder','Y','0000-00-00 00:00:00'),(121973,10,'M62.112 ','Other rupture of muscle (nontraumatic), left shoulder','Y','0000-00-00 00:00:00'),(121972,10,'M62.111 ','Other rupture of muscle (nontraumatic), right shoulder','Y','0000-00-00 00:00:00'),(121971,10,'M62.10 ','Other rupture of muscle (nontraumatic), unspecified site','Y','0000-00-00 00:00:00'),(121970,10,'M62.08 ','Separation of muscle (nontraumatic), other site','Y','0000-00-00 00:00:00'),(121969,10,'M62.079 ','Separation of muscle (nontraumatic), unspecified ankle and foot','Y','0000-00-00 00:00:00'),(121968,10,'M62.072 ','Separation of muscle (nontraumatic), left ankle and foot','Y','0000-00-00 00:00:00'),(121967,10,'M62.071 ','Separation of muscle (nontraumatic), right ankle and foot','Y','0000-00-00 00:00:00'),(121966,10,'M62.069 ','Separation of muscle (nontraumatic), unspecified lower leg','Y','0000-00-00 00:00:00'),(121965,10,'M62.062 ','Separation of muscle (nontraumatic), left lower leg','Y','0000-00-00 00:00:00'),(121964,10,'M62.061 ','Separation of muscle (nontraumatic), right lower leg','Y','0000-00-00 00:00:00'),(121963,10,'M62.059 ','Separation of muscle (nontraumatic), unspecified thigh','Y','0000-00-00 00:00:00'),(121962,10,'M62.052 ','Separation of muscle (nontraumatic), left thigh','Y','0000-00-00 00:00:00'),(121961,10,'M62.051 ','Separation of muscle (nontraumatic), right thigh','Y','0000-00-00 00:00:00'),(121960,10,'M62.049 ','Separation of muscle (nontraumatic), unspecified hand','Y','0000-00-00 00:00:00'),(121959,10,'M62.042 ','Separation of muscle (nontraumatic), left hand','Y','0000-00-00 00:00:00'),(121958,10,'M62.041 ','Separation of muscle (nontraumatic), right hand','Y','0000-00-00 00:00:00'),(121957,10,'M62.039 ','Separation of muscle (nontraumatic), unspecified forearm','Y','0000-00-00 00:00:00'),(121956,10,'M62.032 ','Separation of muscle (nontraumatic), left forearm','Y','0000-00-00 00:00:00'),(121955,10,'M62.031 ','Separation of muscle (nontraumatic), right forearm','Y','0000-00-00 00:00:00'),(121954,10,'M62.029 ','Separation of muscle (nontraumatic), unspecified upper arm','Y','0000-00-00 00:00:00'),(121953,10,'M62.022 ','Separation of muscle (nontraumatic), left upper arm','Y','0000-00-00 00:00:00'),(121952,10,'M62.021 ','Separation of muscle (nontraumatic), right upper arm','Y','0000-00-00 00:00:00'),(121951,10,'M62.019 ','Separation of muscle (nontraumatic), unspecified shoulder','Y','0000-00-00 00:00:00'),(121950,10,'M62.012 ','Separation of muscle (nontraumatic), left shoulder','Y','0000-00-00 00:00:00'),(121949,10,'M62.011 ','Separation of muscle (nontraumatic), right shoulder','Y','0000-00-00 00:00:00'),(121948,10,'M62.00 ','Separation of muscle (nontraumatic), unspecified site','Y','0000-00-00 00:00:00'),(121947,10,'M61.9 ','Calcification and ossification of muscle, unspecified','Y','0000-00-00 00:00:00'),(121946,10,'M61.59 ','Other ossification of muscle, multiple sites','Y','0000-00-00 00:00:00'),(121945,10,'M61.58 ','Other ossification of muscle, other site','Y','0000-00-00 00:00:00'),(121944,10,'M61.579 ','Other ossification of muscle, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(121943,10,'M61.572 ','Other ossification of muscle, left ankle and foot','Y','0000-00-00 00:00:00'),(121942,10,'M61.571 ','Other ossification of muscle, right ankle and foot','Y','0000-00-00 00:00:00'),(121941,10,'M61.569 ','Other ossification of muscle, unspecified lower leg','Y','0000-00-00 00:00:00'),(121940,10,'M61.562 ','Other ossification of muscle, left lower leg','Y','0000-00-00 00:00:00'),(121939,10,'M61.561 ','Other ossification of muscle, right lower leg','Y','0000-00-00 00:00:00'),(121938,10,'M61.559 ','Other ossification of muscle, unspecified thigh','Y','0000-00-00 00:00:00'),(121937,10,'M61.552 ','Other ossification of muscle, left thigh','Y','0000-00-00 00:00:00'),(121936,10,'M61.551 ','Other ossification of muscle, right thigh','Y','0000-00-00 00:00:00'),(121935,10,'M61.549 ','Other ossification of muscle, unspecified hand','Y','0000-00-00 00:00:00'),(121934,10,'M61.542 ','Other ossification of muscle, left hand','Y','0000-00-00 00:00:00'),(121933,10,'M61.541 ','Other ossification of muscle, right hand','Y','0000-00-00 00:00:00'),(121932,10,'M61.539 ','Other ossification of muscle, unspecified forearm','Y','0000-00-00 00:00:00'),(121931,10,'M61.532 ','Other ossification of muscle, left forearm','Y','0000-00-00 00:00:00'),(121930,10,'M61.531 ','Other ossification of muscle, right forearm','Y','0000-00-00 00:00:00'),(121929,10,'M61.529 ','Other ossification of muscle, unspecified upper arm','Y','0000-00-00 00:00:00'),(121928,10,'M61.522 ','Other ossification of muscle, left upper arm','Y','0000-00-00 00:00:00'),(121927,10,'M61.521 ','Other ossification of muscle, right upper arm','Y','0000-00-00 00:00:00'),(121926,10,'M61.519 ','Other ossification of muscle, unspecified shoulder','Y','0000-00-00 00:00:00'),(121925,10,'M61.512 ','Other ossification of muscle, left shoulder','Y','0000-00-00 00:00:00'),(121924,10,'M61.511 ','Other ossification of muscle, right shoulder','Y','0000-00-00 00:00:00'),(121923,10,'M61.50 ','Other ossification of muscle, unspecified site','Y','0000-00-00 00:00:00'),(121922,10,'M61.49 ','Other calcification of muscle, multiple sites','Y','0000-00-00 00:00:00'),(121921,10,'M61.48 ','Other calcification of muscle, other site','Y','0000-00-00 00:00:00'),(121920,10,'M61.479 ','Other calcification of muscle, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(121919,10,'M61.472 ','Other calcification of muscle, left ankle and foot','Y','0000-00-00 00:00:00'),(121918,10,'M61.471 ','Other calcification of muscle, right ankle and foot','Y','0000-00-00 00:00:00'),(121917,10,'M61.469 ','Other calcification of muscle, unspecified lower leg','Y','0000-00-00 00:00:00'),(121916,10,'M61.462 ','Other calcification of muscle, left lower leg','Y','0000-00-00 00:00:00'),(121915,10,'M61.461 ','Other calcification of muscle, right lower leg','Y','0000-00-00 00:00:00'),(121914,10,'M61.459 ','Other calcification of muscle, unspecified thigh','Y','0000-00-00 00:00:00'),(121912,10,'M61.451 ','Other calcification of muscle, right thigh','Y','0000-00-00 00:00:00'),(121913,10,'M61.452 ','Other calcification of muscle, left thigh','Y','0000-00-00 00:00:00'),(121911,10,'M61.449 ','Other calcification of muscle, unspecified hand','Y','0000-00-00 00:00:00'),(121909,10,'M61.441 ','Other calcification of muscle, right hand','Y','0000-00-00 00:00:00'),(121910,10,'M61.442 ','Other calcification of muscle, left hand','Y','0000-00-00 00:00:00'),(121908,10,'M61.439 ','Other calcification of muscle, unspecified forearm','Y','0000-00-00 00:00:00'),(121906,10,'M61.431 ','Other calcification of muscle, right forearm','Y','0000-00-00 00:00:00'),(121907,10,'M61.432 ','Other calcification of muscle, left forearm','Y','0000-00-00 00:00:00'),(121905,10,'M61.429 ','Other calcification of muscle, unspecified upper arm','Y','0000-00-00 00:00:00'),(121904,10,'M61.422 ','Other calcification of muscle, left upper arm','Y','0000-00-00 00:00:00'),(121902,10,'M61.419 ','Other calcification of muscle, unspecified shoulder','Y','0000-00-00 00:00:00'),(121903,10,'M61.421 ','Other calcification of muscle, right upper arm','Y','0000-00-00 00:00:00'),(121901,10,'M61.412 ','Other calcification of muscle, left shoulder','Y','0000-00-00 00:00:00'),(121900,10,'M61.411 ','Other calcification of muscle, right shoulder','Y','0000-00-00 00:00:00'),(121899,10,'M61.40 ','Other calcification of muscle, unspecified site','Y','0000-00-00 00:00:00'),(121898,10,'M61.39 ','Calcification and ossification of muscles associated with burns, multiple sites','Y','0000-00-00 00:00:00'),(121897,10,'M61.38 ','Calcification and ossification of muscles associated with burns, other site','Y','0000-00-00 00:00:00'),(121896,10,'M61.379 ','Calcification and ossification of muscles associated with burns, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(121895,10,'M61.372 ','Calcification and ossification of muscles associated with burns, left ankle and foot','Y','0000-00-00 00:00:00'),(121894,10,'M61.371 ','Calcification and ossification of muscles associated with burns, right ankle and foot','Y','0000-00-00 00:00:00'),(121893,10,'M61.369 ','Calcification and ossification of muscles associated with burns, unspecified lower leg','Y','0000-00-00 00:00:00'),(121892,10,'M61.362 ','Calcification and ossification of muscles associated with burns, left lower leg','Y','0000-00-00 00:00:00'),(121891,10,'M61.361 ','Calcification and ossification of muscles associated with burns, right lower leg','Y','0000-00-00 00:00:00'),(121890,10,'M61.359 ','Calcification and ossification of muscles associated with burns, unspecified thigh','Y','0000-00-00 00:00:00'),(121889,10,'M61.352 ','Calcification and ossification of muscles associated with burns, left thigh','Y','0000-00-00 00:00:00'),(121888,10,'M61.351 ','Calcification and ossification of muscles associated with burns, right thigh','Y','0000-00-00 00:00:00'),(121887,10,'M61.349 ','Calcification and ossification of muscles associated with burns, unspecified hand','Y','0000-00-00 00:00:00'),(121886,10,'M61.342 ','Calcification and ossification of muscles associated with burns, left hand','Y','0000-00-00 00:00:00'),(121885,10,'M61.341 ','Calcification and ossification of muscles associated with burns, right hand','Y','0000-00-00 00:00:00'),(121884,10,'M61.339 ','Calcification and ossification of muscles associated with burns, unspecified forearm','Y','0000-00-00 00:00:00'),(121883,10,'M61.332 ','Calcification and ossification of muscles associated with burns, left forearm','Y','0000-00-00 00:00:00'),(121882,10,'M61.331 ','Calcification and ossification of muscles associated with burns, right forearm','Y','0000-00-00 00:00:00'),(121881,10,'M61.329 ','Calcification and ossification of muscles associated with burns, unspecified upper arm','Y','0000-00-00 00:00:00'),(121880,10,'M61.322 ','Calcification and ossification of muscles associated with burns, left upper arm','Y','0000-00-00 00:00:00'),(121879,10,'M61.321 ','Calcification and ossification of muscles associated with burns, right upper arm','Y','0000-00-00 00:00:00'),(121878,10,'M61.319 ','Calcification and ossification of muscles associated with burns, unspecified shoulder','Y','0000-00-00 00:00:00'),(121877,10,'M61.312 ','Calcification and ossification of muscles associated with burns, left shoulder','Y','0000-00-00 00:00:00'),(121876,10,'M61.311 ','Calcification and ossification of muscles associated with burns, right shoulder','Y','0000-00-00 00:00:00'),(121875,10,'M61.30 ','Calcification and ossification of muscles associated with burns, unspecified site','Y','0000-00-00 00:00:00'),(121874,10,'M61.29 ','Paralytic calcification and ossification of muscle, multiple sites','Y','0000-00-00 00:00:00'),(121873,10,'M61.28 ','Paralytic calcification and ossification of muscle, other site','Y','0000-00-00 00:00:00'),(121872,10,'M61.279 ','Paralytic calcification and ossification of muscle, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(121871,10,'M61.272 ','Paralytic calcification and ossification of muscle, left ankle and foot','Y','0000-00-00 00:00:00'),(121870,10,'M61.271 ','Paralytic calcification and ossification of muscle, right ankle and foot','Y','0000-00-00 00:00:00'),(121869,10,'M61.269 ','Paralytic calcification and ossification of muscle, unspecified lower leg','Y','0000-00-00 00:00:00'),(121868,10,'M61.262 ','Paralytic calcification and ossification of muscle, left lower leg','Y','0000-00-00 00:00:00'),(121867,10,'M61.261 ','Paralytic calcification and ossification of muscle, right lower leg','Y','0000-00-00 00:00:00'),(121866,10,'M61.259 ','Paralytic calcification and ossification of muscle, unspecified thigh','Y','0000-00-00 00:00:00'),(121865,10,'M61.252 ','Paralytic calcification and ossification of muscle, left thigh','Y','0000-00-00 00:00:00'),(121864,10,'M61.251 ','Paralytic calcification and ossification of muscle, right thigh','Y','0000-00-00 00:00:00'),(121863,10,'M61.249 ','Paralytic calcification and ossification of muscle, unspecified hand','Y','0000-00-00 00:00:00'),(121862,10,'M61.242 ','Paralytic calcification and ossification of muscle, left hand','Y','0000-00-00 00:00:00'),(121861,10,'M61.241 ','Paralytic calcification and ossification of muscle, right hand','Y','0000-00-00 00:00:00'),(121860,10,'M61.239 ','Paralytic calcification and ossification of muscle, unspecified forearm','Y','0000-00-00 00:00:00'),(121859,10,'M61.232 ','Paralytic calcification and ossification of muscle, left forearm','Y','0000-00-00 00:00:00'),(121858,10,'M61.231 ','Paralytic calcification and ossification of muscle, right forearm','Y','0000-00-00 00:00:00'),(121857,10,'M61.229 ','Paralytic calcification and ossification of muscle, unspecified upper arm','Y','0000-00-00 00:00:00'),(121856,10,'M61.222 ','Paralytic calcification and ossification of muscle, left upper arm','Y','0000-00-00 00:00:00'),(121855,10,'M61.221 ','Paralytic calcification and ossification of muscle, right upper arm','Y','0000-00-00 00:00:00'),(121853,10,'M61.212 ','Paralytic calcification and ossification of muscle, left shoulder','Y','0000-00-00 00:00:00'),(121854,10,'M61.219 ','Paralytic calcification and ossification of muscle, unspecified shoulder','Y','0000-00-00 00:00:00'),(121852,10,'M61.211 ','Paralytic calcification and ossification of muscle, right shoulder','Y','0000-00-00 00:00:00'),(121851,10,'M61.20 ','Paralytic calcification and ossification of muscle, unspecified site','Y','0000-00-00 00:00:00'),(121849,10,'M61.18 ','Myositis ossificans progressiva, other site','Y','0000-00-00 00:00:00'),(121850,10,'M61.19 ','Myositis ossificans progressiva, multiple sites','Y','0000-00-00 00:00:00'),(121848,10,'M61.179 ','Myositis ossificans progressiva, unspecified toe(s)','Y','0000-00-00 00:00:00'),(121847,10,'M61.178 ','Myositis ossificans progressiva, left toe(s)','Y','0000-00-00 00:00:00'),(121845,10,'M61.176 ','Myositis ossificans progressiva, unspecified foot','Y','0000-00-00 00:00:00'),(121846,10,'M61.177 ','Myositis ossificans progressiva, right toe(s)','Y','0000-00-00 00:00:00'),(121844,10,'M61.175 ','Myositis ossificans progressiva, left foot','Y','0000-00-00 00:00:00'),(121843,10,'M61.174 ','Myositis ossificans progressiva, right foot','Y','0000-00-00 00:00:00'),(121841,10,'M61.172 ','Myositis ossificans progressiva, left ankle','Y','0000-00-00 00:00:00'),(121842,10,'M61.173 ','Myositis ossificans progressiva, unspecified ankle','Y','0000-00-00 00:00:00'),(121840,10,'M61.171 ','Myositis ossificans progressiva, right ankle','Y','0000-00-00 00:00:00'),(121839,10,'M61.169 ','Myositis ossificans progressiva, unspecified lower leg','Y','0000-00-00 00:00:00'),(121838,10,'M61.162 ','Myositis ossificans progressiva, left lower leg','Y','0000-00-00 00:00:00'),(121836,10,'M61.159 ','Myositis ossificans progressiva, unspecified thigh','Y','0000-00-00 00:00:00'),(121837,10,'M61.161 ','Myositis ossificans progressiva, right lower leg','Y','0000-00-00 00:00:00'),(121835,10,'M61.152 ','Myositis ossificans progressiva, left thigh','Y','0000-00-00 00:00:00'),(121834,10,'M61.151 ','Myositis ossificans progressiva, right thigh','Y','0000-00-00 00:00:00'),(121833,10,'M61.146 ','Myositis ossificans progressiva, unspecified finger(s)','Y','0000-00-00 00:00:00'),(121832,10,'M61.145 ','Myositis ossificans progressiva, left finger(s)','Y','0000-00-00 00:00:00'),(121830,10,'M61.143 ','Myositis ossificans progressiva, unspecified hand','Y','0000-00-00 00:00:00'),(121831,10,'M61.144 ','Myositis ossificans progressiva, right finger(s)','Y','0000-00-00 00:00:00'),(121829,10,'M61.142 ','Myositis ossificans progressiva, left hand','Y','0000-00-00 00:00:00'),(121827,10,'M61.139 ','Myositis ossificans progressiva, unspecified forearm','Y','0000-00-00 00:00:00'),(121828,10,'M61.141 ','Myositis ossificans progressiva, right hand','Y','0000-00-00 00:00:00'),(121826,10,'M61.132 ','Myositis ossificans progressiva, left forearm','Y','0000-00-00 00:00:00'),(121824,10,'M61.129 ','Myositis ossificans progressiva, unspecified arm','Y','0000-00-00 00:00:00'),(121825,10,'M61.131 ','Myositis ossificans progressiva, right forearm','Y','0000-00-00 00:00:00'),(121823,10,'M61.122 ','Myositis ossificans progressiva, left upper arm','Y','0000-00-00 00:00:00'),(121822,10,'M61.121 ','Myositis ossificans progressiva, right upper arm','Y','0000-00-00 00:00:00'),(121820,10,'M61.112 ','Myositis ossificans progressiva, left shoulder','Y','0000-00-00 00:00:00'),(121821,10,'M61.119 ','Myositis ossificans progressiva, unspecified shoulder','Y','0000-00-00 00:00:00'),(121819,10,'M61.111 ','Myositis ossificans progressiva, right shoulder','Y','0000-00-00 00:00:00'),(121818,10,'M61.10 ','Myositis ossificans progressiva, unspecified site','Y','0000-00-00 00:00:00'),(121816,10,'M61.08 ','Myositis ossificans traumatica, other site','Y','0000-00-00 00:00:00'),(121817,10,'M61.09 ','Myositis ossificans traumatica, multiple sites','Y','0000-00-00 00:00:00'),(121815,10,'M61.079 ','Myositis ossificans traumatica, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(121814,10,'M61.072 ','Myositis ossificans traumatica, left ankle and foot','Y','0000-00-00 00:00:00'),(121813,10,'M61.071 ','Myositis ossificans traumatica, right ankle and foot','Y','0000-00-00 00:00:00'),(121812,10,'M61.069 ','Myositis ossificans traumatica, unspecified lower leg','Y','0000-00-00 00:00:00'),(121811,10,'M61.062 ','Myositis ossificans traumatica, left lower leg','Y','0000-00-00 00:00:00'),(121810,10,'M61.061 ','Myositis ossificans traumatica, right lower leg','Y','0000-00-00 00:00:00'),(121809,10,'M61.059 ','Myositis ossificans traumatica, unspecified thigh','Y','0000-00-00 00:00:00'),(121807,10,'M61.051 ','Myositis ossificans traumatica, right thigh','Y','0000-00-00 00:00:00'),(121808,10,'M61.052 ','Myositis ossificans traumatica, left thigh','Y','0000-00-00 00:00:00'),(121806,10,'M61.049 ','Myositis ossificans traumatica, unspecified hand','Y','0000-00-00 00:00:00'),(121805,10,'M61.042 ','Myositis ossificans traumatica, left hand','Y','0000-00-00 00:00:00'),(121804,10,'M61.041 ','Myositis ossificans traumatica, right hand','Y','0000-00-00 00:00:00'),(121802,10,'M61.032 ','Myositis ossificans traumatica, left forearm','Y','0000-00-00 00:00:00'),(121803,10,'M61.039 ','Myositis ossificans traumatica, unspecified forearm','Y','0000-00-00 00:00:00'),(121801,10,'M61.031 ','Myositis ossificans traumatica, right forearm','Y','0000-00-00 00:00:00'),(121800,10,'M61.029 ','Myositis ossificans traumatica, unspecified upper arm','Y','0000-00-00 00:00:00'),(121799,10,'M61.022 ','Myositis ossificans traumatica, left upper arm','Y','0000-00-00 00:00:00'),(121798,10,'M61.021 ','Myositis ossificans traumatica, right upper arm','Y','0000-00-00 00:00:00'),(121797,10,'M61.019 ','Myositis ossificans traumatica, unspecified shoulder','Y','0000-00-00 00:00:00'),(121796,10,'M61.012 ','Myositis ossificans traumatica, left shoulder','Y','0000-00-00 00:00:00'),(121795,10,'M61.011 ','Myositis ossificans traumatica, right shoulder','Y','0000-00-00 00:00:00'),(121794,10,'M61.00 ','Myositis ossificans traumatica, unspecified site','Y','0000-00-00 00:00:00'),(121792,10,'M60.89 ','Other myositis, multiple sites','Y','0000-00-00 00:00:00'),(121793,10,'M60.9 ','Myositis, unspecified','Y','0000-00-00 00:00:00'),(121791,10,'M60.88 ','Other myositis, other site','Y','0000-00-00 00:00:00'),(121790,10,'M60.879 ','Other myositis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(121789,10,'M60.872 ','Other myositis, left ankle and foot','Y','0000-00-00 00:00:00'),(121788,10,'M60.871 ','Other myositis, right ankle and foot','Y','0000-00-00 00:00:00'),(121787,10,'M60.869 ','Other myositis, unspecified lower leg','Y','0000-00-00 00:00:00'),(121785,10,'M60.861 ','Other myositis, right lower leg','Y','0000-00-00 00:00:00'),(121786,10,'M60.862 ','Other myositis, left lower leg','Y','0000-00-00 00:00:00'),(121784,10,'M60.859 ','Other myositis, unspecified thigh','Y','0000-00-00 00:00:00'),(121782,10,'M60.851 ','Other myositis, right thigh','Y','0000-00-00 00:00:00'),(121783,10,'M60.852 ','Other myositis, left thigh','Y','0000-00-00 00:00:00'),(121781,10,'M60.849 ','Other myositis, unspecified hand','Y','0000-00-00 00:00:00'),(121779,10,'M60.841 ','Other myositis, right hand','Y','0000-00-00 00:00:00'),(121780,10,'M60.842 ','Other myositis, left hand','Y','0000-00-00 00:00:00'),(121778,10,'M60.839 ','Other myositis, unspecified forearm','Y','0000-00-00 00:00:00'),(121777,10,'M60.832 ','Other myositis, left forearm','Y','0000-00-00 00:00:00'),(121776,10,'M60.831 ','Other myositis, right forearm','Y','0000-00-00 00:00:00'),(121775,10,'M60.829 ','Other myositis, unspecified upper arm','Y','0000-00-00 00:00:00'),(121773,10,'M60.821 ','Other myositis, right upper arm','Y','0000-00-00 00:00:00'),(121774,10,'M60.822 ','Other myositis, left upper arm','Y','0000-00-00 00:00:00'),(121772,10,'M60.819 ','Other myositis, unspecified shoulder','Y','0000-00-00 00:00:00'),(121771,10,'M60.812 ','Other myositis, left shoulder','Y','0000-00-00 00:00:00'),(121770,10,'M60.811 ','Other myositis, right shoulder','Y','0000-00-00 00:00:00'),(121769,10,'M60.80 ','Other myositis, unspecified site','Y','0000-00-00 00:00:00'),(121768,10,'M60.28 ','Foreign body granuloma of soft tissue, not elsewhere classified, other site','Y','0000-00-00 00:00:00'),(121767,10,'M60.279 ','Foreign body granuloma of soft tissue, not elsewhere classified, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(121766,10,'M60.272 ','Foreign body granuloma of soft tissue, not elsewhere classified, left ankle and foot','Y','0000-00-00 00:00:00'),(121765,10,'M60.271 ','Foreign body granuloma of soft tissue, not elsewhere classified, right ankle and foot','Y','0000-00-00 00:00:00'),(121764,10,'M60.269 ','Foreign body granuloma of soft tissue, not elsewhere classified, unspecified lower leg','Y','0000-00-00 00:00:00'),(121763,10,'M60.262 ','Foreign body granuloma of soft tissue, not elsewhere classified, left lower leg','Y','0000-00-00 00:00:00'),(121762,10,'M60.261 ','Foreign body granuloma of soft tissue, not elsewhere classified, right lower leg','Y','0000-00-00 00:00:00'),(121761,10,'M60.259 ','Foreign body granuloma of soft tissue, not elsewhere classified, unspecified thigh','Y','0000-00-00 00:00:00'),(121760,10,'M60.252 ','Foreign body granuloma of soft tissue, not elsewhere classified, left thigh','Y','0000-00-00 00:00:00'),(121759,10,'M60.251 ','Foreign body granuloma of soft tissue, not elsewhere classified, right thigh','Y','0000-00-00 00:00:00'),(121758,10,'M60.249 ','Foreign body granuloma of soft tissue, not elsewhere classified, unspecified hand','Y','0000-00-00 00:00:00'),(121757,10,'M60.242 ','Foreign body granuloma of soft tissue, not elsewhere classified, left hand','Y','0000-00-00 00:00:00'),(121756,10,'M60.241 ','Foreign body granuloma of soft tissue, not elsewhere classified, right hand','Y','0000-00-00 00:00:00'),(121755,10,'M60.239 ','Foreign body granuloma of soft tissue, not elsewhere classified, unspecified forearm','Y','0000-00-00 00:00:00'),(121754,10,'M60.232 ','Foreign body granuloma of soft tissue, not elsewhere classified, left forearm','Y','0000-00-00 00:00:00'),(121753,10,'M60.231 ','Foreign body granuloma of soft tissue, not elsewhere classified, right forearm','Y','0000-00-00 00:00:00'),(121752,10,'M60.229 ','Foreign body granuloma of soft tissue, not elsewhere classified, unspecified upper arm','Y','0000-00-00 00:00:00'),(121751,10,'M60.222 ','Foreign body granuloma of soft tissue, not elsewhere classified, left upper arm','Y','0000-00-00 00:00:00'),(121750,10,'M60.221 ','Foreign body granuloma of soft tissue, not elsewhere classified, right upper arm','Y','0000-00-00 00:00:00'),(121749,10,'M60.219 ','Foreign body granuloma of soft tissue, not elsewhere classified, unspecified shoulder','Y','0000-00-00 00:00:00'),(121748,10,'M60.212 ','Foreign body granuloma of soft tissue, not elsewhere classified, left shoulder','Y','0000-00-00 00:00:00'),(121747,10,'M60.211 ','Foreign body granuloma of soft tissue, not elsewhere classified, right shoulder','Y','0000-00-00 00:00:00'),(121745,10,'M60.19 ','Interstitial myositis, multiple sites','Y','0000-00-00 00:00:00'),(121746,10,'M60.20 ','Foreign body granuloma of soft tissue, not elsewhere classified, unspecified site','Y','0000-00-00 00:00:00'),(121744,10,'M60.18 ','Interstitial myositis, other site','Y','0000-00-00 00:00:00'),(121743,10,'M60.179 ','Interstitial myositis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(121742,10,'M60.172 ','Interstitial myositis, left ankle and foot','Y','0000-00-00 00:00:00'),(121741,10,'M60.171 ','Interstitial myositis, right ankle and foot','Y','0000-00-00 00:00:00'),(121739,10,'M60.162 ','Interstitial myositis, left lower leg','Y','0000-00-00 00:00:00'),(121740,10,'M60.169 ','Interstitial myositis, unspecified lower leg','Y','0000-00-00 00:00:00'),(121738,10,'M60.161 ','Interstitial myositis, right lower leg','Y','0000-00-00 00:00:00'),(121737,10,'M60.159 ','Interstitial myositis, unspecified thigh','Y','0000-00-00 00:00:00'),(121735,10,'M60.151 ','Interstitial myositis, right thigh','Y','0000-00-00 00:00:00'),(121736,10,'M60.152 ','Interstitial myositis, left thigh','Y','0000-00-00 00:00:00'),(121734,10,'M60.149 ','Interstitial myositis, unspecified hand','Y','0000-00-00 00:00:00'),(121733,10,'M60.142 ','Interstitial myositis, left hand','Y','0000-00-00 00:00:00'),(121732,10,'M60.141 ','Interstitial myositis, right hand','Y','0000-00-00 00:00:00'),(121731,10,'M60.139 ','Interstitial myositis, unspecified forearm','Y','0000-00-00 00:00:00'),(121730,10,'M60.132 ','Interstitial myositis, left forearm','Y','0000-00-00 00:00:00'),(121729,10,'M60.131 ','Interstitial myositis, right forearm','Y','0000-00-00 00:00:00'),(121728,10,'M60.129 ','Interstitial myositis, unspecified upper arm','Y','0000-00-00 00:00:00'),(121727,10,'M60.122 ','Interstitial myositis, left upper arm','Y','0000-00-00 00:00:00'),(121726,10,'M60.121 ','Interstitial myositis, right upper arm','Y','0000-00-00 00:00:00'),(121725,10,'M60.119 ','Interstitial myositis, unspecified shoulder','Y','0000-00-00 00:00:00'),(121724,10,'M60.112 ','Interstitial myositis, left shoulder','Y','0000-00-00 00:00:00'),(121723,10,'M60.111 ','Interstitial myositis, right shoulder','Y','0000-00-00 00:00:00'),(121722,10,'M60.10 ','Interstitial myositis of unspecified site','Y','0000-00-00 00:00:00'),(121721,10,'M60.09 ','Infective myositis, multiple sites','Y','0000-00-00 00:00:00'),(121720,10,'M60.08 ','Infective myositis, other site','Y','0000-00-00 00:00:00'),(121719,10,'M60.078 ','Infective myositis, unspecified toe(s)','Y','0000-00-00 00:00:00'),(121718,10,'M60.077 ','Infective myositis, left toe(s)','Y','0000-00-00 00:00:00'),(121717,10,'M60.076 ','Infective myositis, right toe(s)','Y','0000-00-00 00:00:00'),(121715,10,'M60.074 ','Infective myositis, left foot','Y','0000-00-00 00:00:00'),(121716,10,'M60.075 ','Infective myositis, unspecified foot','Y','0000-00-00 00:00:00'),(121714,10,'M60.073 ','Infective myositis, right foot','Y','0000-00-00 00:00:00'),(121712,10,'M60.071 ','Infective myositis, left ankle','Y','0000-00-00 00:00:00'),(121713,10,'M60.072 ','Infective myositis, unspecified ankle','Y','0000-00-00 00:00:00'),(121711,10,'M60.070 ','Infective myositis, right ankle','Y','0000-00-00 00:00:00'),(121710,10,'M60.069 ','Infective myositis, unspecified lower leg','Y','0000-00-00 00:00:00'),(121709,10,'M60.062 ','Infective myositis, left lower leg','Y','0000-00-00 00:00:00'),(121708,10,'M60.061 ','Infective myositis, right lower leg','Y','0000-00-00 00:00:00'),(121707,10,'M60.059 ','Infective myositis, unspecified thigh','Y','0000-00-00 00:00:00'),(121705,10,'M60.051 ','Infective myositis, right thigh','Y','0000-00-00 00:00:00'),(121706,10,'M60.052 ','Infective myositis, left thigh','Y','0000-00-00 00:00:00'),(121704,10,'M60.046 ','Infective myositis, unspecified finger(s)','Y','0000-00-00 00:00:00'),(121703,10,'M60.045 ','Infective myositis, left finger(s)','Y','0000-00-00 00:00:00'),(121702,10,'M60.044 ','Infective myositis, right finger(s)','Y','0000-00-00 00:00:00'),(121701,10,'M60.043 ','Infective myositis, unspecified hand','Y','0000-00-00 00:00:00'),(121700,10,'M60.042 ','Infective myositis, left hand','Y','0000-00-00 00:00:00'),(121699,10,'M60.041 ','Infective myositis, right hand','Y','0000-00-00 00:00:00'),(121698,10,'M60.039 ','Infective myositis, unspecified forearm','Y','0000-00-00 00:00:00'),(121697,10,'M60.032 ','Infective myositis, left forearm','Y','0000-00-00 00:00:00'),(121695,10,'M60.029 ','Infective myositis, unspecified upper arm','Y','0000-00-00 00:00:00'),(121696,10,'M60.031 ','Infective myositis, right forearm','Y','0000-00-00 00:00:00'),(121693,10,'M60.021 ','Infective myositis, right upper arm','Y','0000-00-00 00:00:00'),(121694,10,'M60.022 ','Infective myositis, left upper arm','Y','0000-00-00 00:00:00'),(121691,10,'M60.012 ','Infective myositis, left shoulder','Y','0000-00-00 00:00:00'),(121692,10,'M60.019 ','Infective myositis, unspecified shoulder','Y','0000-00-00 00:00:00'),(121689,10,'M60.009 ','Infective myositis, unspecified site','Y','0000-00-00 00:00:00'),(121690,10,'M60.011 ','Infective myositis, right shoulder','Y','0000-00-00 00:00:00'),(121688,10,'M60.005 ','Infective myositis, unspecified leg','Y','0000-00-00 00:00:00'),(121686,10,'M60.003 ','Infective myositis, unspecified right leg','Y','0000-00-00 00:00:00'),(121687,10,'M60.004 ','Infective myositis, unspecified left leg','Y','0000-00-00 00:00:00'),(121684,10,'M60.001 ','Infective myositis, unspecified left arm','Y','0000-00-00 00:00:00'),(121685,10,'M60.002 ','Infective myositis, unspecified arm','Y','0000-00-00 00:00:00'),(121682,10,'M54.9 ','Dorsalgia, unspecified','Y','0000-00-00 00:00:00'),(121683,10,'M60.000 ','Infective myositis, unspecified right arm','Y','0000-00-00 00:00:00'),(121680,10,'M54.81 ','Occipital neuralgia','Y','0000-00-00 00:00:00'),(121681,10,'M54.89 ','Other dorsalgia','Y','0000-00-00 00:00:00'),(121678,10,'M54.59 ','Other low back pain','Y','0000-00-00 00:00:00'),(121679,10,'M54.6 ','Pain in thoracic spine','Y','0000-00-00 00:00:00'),(121676,10,'M54.50 ','Low back pain, unspecified','Y','0000-00-00 00:00:00'),(121677,10,'M54.51 ','Vertebrogenic low back pain','Y','0000-00-00 00:00:00'),(121674,10,'M54.41 ','Lumbago with sciatica, right side','Y','0000-00-00 00:00:00'),(121675,10,'M54.42 ','Lumbago with sciatica, left side','Y','0000-00-00 00:00:00'),(121672,10,'M54.32 ','Sciatica, left side','Y','0000-00-00 00:00:00'),(121673,10,'M54.40 ','Lumbago with sciatica, unspecified side','Y','0000-00-00 00:00:00'),(121670,10,'M54.30 ','Sciatica, unspecified side','Y','0000-00-00 00:00:00'),(121671,10,'M54.31 ','Sciatica, right side','Y','0000-00-00 00:00:00'),(121668,10,'M54.18 ','Radiculopathy, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121669,10,'M54.2 ','Cervicalgia','Y','0000-00-00 00:00:00'),(121666,10,'M54.16 ','Radiculopathy, lumbar region','Y','0000-00-00 00:00:00'),(121667,10,'M54.17 ','Radiculopathy, lumbosacral region','Y','0000-00-00 00:00:00'),(121665,10,'M54.15 ','Radiculopathy, thoracolumbar region','Y','0000-00-00 00:00:00'),(121663,10,'M54.13 ','Radiculopathy, cervicothoracic region','Y','0000-00-00 00:00:00'),(121664,10,'M54.14 ','Radiculopathy, thoracic region','Y','0000-00-00 00:00:00'),(121662,10,'M54.12 ','Radiculopathy, cervical region','Y','0000-00-00 00:00:00'),(121660,10,'M54.10 ','Radiculopathy, site unspecified','Y','0000-00-00 00:00:00'),(121661,10,'M54.11 ','Radiculopathy, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121659,10,'M54.09 ','Panniculitis affecting regions, neck and back, multiple sites in spine','Y','0000-00-00 00:00:00'),(121658,10,'M54.08 ','Panniculitis affecting regions of neck and back, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121657,10,'M54.07 ','Panniculitis affecting regions of neck and back, lumbosacral region','Y','0000-00-00 00:00:00'),(121656,10,'M54.06 ','Panniculitis affecting regions of neck and back, lumbar region','Y','0000-00-00 00:00:00'),(121655,10,'M54.05 ','Panniculitis affecting regions of neck and back, thoracolumbar region','Y','0000-00-00 00:00:00'),(121654,10,'M54.04 ','Panniculitis affecting regions of neck and back, thoracic region','Y','0000-00-00 00:00:00'),(121653,10,'M54.03 ','Panniculitis affecting regions of neck and back, cervicothoracic region','Y','0000-00-00 00:00:00'),(121652,10,'M54.02 ','Panniculitis affecting regions of neck and back, cervical region','Y','0000-00-00 00:00:00'),(121651,10,'M54.01 ','Panniculitis affecting regions of neck and back, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121649,10,'M53.9 ','Dorsopathy, unspecified','Y','0000-00-00 00:00:00'),(121650,10,'M54.00 ','Panniculitis affecting regions of neck and back, site unspecified','Y','0000-00-00 00:00:00'),(121648,10,'M53.88 ','Other specified dorsopathies, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121647,10,'M53.87 ','Other specified dorsopathies, lumbosacral region','Y','0000-00-00 00:00:00'),(121646,10,'M53.86 ','Other specified dorsopathies, lumbar region','Y','0000-00-00 00:00:00'),(121645,10,'M53.85 ','Other specified dorsopathies, thoracolumbar region','Y','0000-00-00 00:00:00'),(121643,10,'M53.83 ','Other specified dorsopathies, cervicothoracic region','Y','0000-00-00 00:00:00'),(121644,10,'M53.84 ','Other specified dorsopathies, thoracic region','Y','0000-00-00 00:00:00'),(121642,10,'M53.82 ','Other specified dorsopathies, cervical region','Y','0000-00-00 00:00:00'),(121641,10,'M53.81 ','Other specified dorsopathies, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121639,10,'M53.3 ','Sacrococcygeal disorders, not elsewhere classified','Y','0000-00-00 00:00:00'),(121640,10,'M53.80 ','Other specified dorsopathies, site unspecified','Y','0000-00-00 00:00:00'),(121638,10,'M53.2X9 ','Spinal instabilities, site unspecified','Y','0000-00-00 00:00:00'),(121637,10,'M53.2X8 ','Spinal instabilities, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121635,10,'M53.2X6 ','Spinal instabilities, lumbar region','Y','0000-00-00 00:00:00'),(121636,10,'M53.2X7 ','Spinal instabilities, lumbosacral region','Y','0000-00-00 00:00:00'),(121634,10,'M53.2X5 ','Spinal instabilities, thoracolumbar region','Y','0000-00-00 00:00:00'),(121633,10,'M53.2X4 ','Spinal instabilities, thoracic region','Y','0000-00-00 00:00:00'),(121631,10,'M53.2X2 ','Spinal instabilities, cervical region','Y','0000-00-00 00:00:00'),(121632,10,'M53.2X3 ','Spinal instabilities, cervicothoracic region','Y','0000-00-00 00:00:00'),(121630,10,'M53.2X1 ','Spinal instabilities, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121628,10,'M53.0 ','Cervicocranial syndrome','Y','0000-00-00 00:00:00'),(121629,10,'M53.1 ','Cervicobrachial syndrome','Y','0000-00-00 00:00:00'),(121627,10,'M51.A5 ','Intervertebral annulus fibrosus defect, large, lumbosacral region','Y','0000-00-00 00:00:00'),(121626,10,'M51.A4 ','Intervertebral annulus fibrosus defect, small, lumbosacral region','Y','0000-00-00 00:00:00'),(121625,10,'M51.A3 ','Intervertebral annulus fibrosus defect, lumbosacral region, unspecified size','Y','0000-00-00 00:00:00'),(121624,10,'M51.A2 ','Intervertebral annulus fibrosus defect, large, lumbar region','Y','0000-00-00 00:00:00'),(121623,10,'M51.A1 ','Intervertebral annulus fibrosus defect, small, lumbar region','Y','0000-00-00 00:00:00'),(121622,10,'M51.A0 ','Intervertebral annulus fibrosus defect, lumbar region, unspecified size','Y','0000-00-00 00:00:00'),(121621,10,'M51.9 ','Unspecified thoracic, thoracolumbar and lumbosacral intervertebral disc disorder','Y','0000-00-00 00:00:00'),(121620,10,'M51.87 ','Other intervertebral disc disorders, lumbosacral region','Y','0000-00-00 00:00:00'),(121618,10,'M51.85 ','Other intervertebral disc disorders, thoracolumbar region','Y','0000-00-00 00:00:00'),(121619,10,'M51.86 ','Other intervertebral disc disorders, lumbar region','Y','0000-00-00 00:00:00'),(121617,10,'M51.84 ','Other intervertebral disc disorders, thoracic region','Y','0000-00-00 00:00:00'),(121616,10,'M51.47 ','Schmorl\'s nodes, lumbosacral region','Y','0000-00-00 00:00:00'),(121614,10,'M51.45 ','Schmorl\'s nodes, thoracolumbar region','Y','0000-00-00 00:00:00'),(121615,10,'M51.46 ','Schmorl\'s nodes, lumbar region','Y','0000-00-00 00:00:00'),(121613,10,'M51.44 ','Schmorl\'s nodes, thoracic region','Y','0000-00-00 00:00:00'),(121612,10,'M51.37 ','Other intervertebral disc degeneration, lumbosacral region','Y','0000-00-00 00:00:00'),(121611,10,'M51.36 ','Other intervertebral disc degeneration, lumbar region','Y','0000-00-00 00:00:00'),(121610,10,'M51.35 ','Other intervertebral disc degeneration, thoracolumbar region','Y','0000-00-00 00:00:00'),(121609,10,'M51.34 ','Other intervertebral disc degeneration, thoracic region','Y','0000-00-00 00:00:00'),(121608,10,'M51.27 ','Other intervertebral disc displacement, lumbosacral region','Y','0000-00-00 00:00:00'),(121607,10,'M51.26 ','Other intervertebral disc displacement, lumbar region','Y','0000-00-00 00:00:00'),(121606,10,'M51.25 ','Other intervertebral disc displacement, thoracolumbar region','Y','0000-00-00 00:00:00'),(121605,10,'M51.24 ','Other intervertebral disc displacement, thoracic region','Y','0000-00-00 00:00:00'),(121604,10,'M51.17 ','Intervertebral disc disorders with radiculopathy, lumbosacral region','Y','0000-00-00 00:00:00'),(121603,10,'M51.16 ','Intervertebral disc disorders with radiculopathy, lumbar region','Y','0000-00-00 00:00:00'),(121602,10,'M51.15 ','Intervertebral disc disorders with radiculopathy, thoracolumbar region','Y','0000-00-00 00:00:00'),(121601,10,'M51.14 ','Intervertebral disc disorders with radiculopathy, thoracic region','Y','0000-00-00 00:00:00'),(121600,10,'M51.06 ','Intervertebral disc disorders with myelopathy, lumbar region','Y','0000-00-00 00:00:00'),(121599,10,'M51.05 ','Intervertebral disc disorders with myelopathy, thoracolumbar region','Y','0000-00-00 00:00:00'),(121598,10,'M51.04 ','Intervertebral disc disorders with myelopathy, thoracic region','Y','0000-00-00 00:00:00'),(121597,10,'M50.93 ','Cervical disc disorder, unspecified, cervicothoracic region','Y','0000-00-00 00:00:00'),(121596,10,'M50.923 ','Unspecified cervical disc disorder at C6-C7 level','Y','0000-00-00 00:00:00'),(121595,10,'M50.922 ','Unspecified cervical disc disorder at C5-C6 level','Y','0000-00-00 00:00:00'),(121594,10,'M50.921 ','Unspecified cervical disc disorder at C4-C5 level','Y','0000-00-00 00:00:00'),(121593,10,'M50.920 ','Unspecified cervical disc disorder, mid-cervical region, unspecified level','Y','0000-00-00 00:00:00'),(121592,10,'M50.91 ','Cervical disc disorder, unspecified, high cervical region','Y','0000-00-00 00:00:00'),(121591,10,'M50.90 ','Cervical disc disorder, unspecified, unspecified cervical region','Y','0000-00-00 00:00:00'),(121590,10,'M50.83 ','Other cervical disc disorders, cervicothoracic region','Y','0000-00-00 00:00:00'),(121589,10,'M50.823 ','Other cervical disc disorders at C6-C7 level','Y','0000-00-00 00:00:00'),(121588,10,'M50.822 ','Other cervical disc disorders at C5-C6 level','Y','0000-00-00 00:00:00'),(121587,10,'M50.821 ','Other cervical disc disorders at C4-C5 level','Y','0000-00-00 00:00:00'),(121586,10,'M50.820 ','Other cervical disc disorders, mid-cervical region, unspecified level','Y','0000-00-00 00:00:00'),(121585,10,'M50.81 ','Other cervical disc disorders, high cervical region','Y','0000-00-00 00:00:00'),(121584,10,'M50.80 ','Other cervical disc disorders, unspecified cervical region','Y','0000-00-00 00:00:00'),(121583,10,'M50.33 ','Other cervical disc degeneration, cervicothoracic region','Y','0000-00-00 00:00:00'),(121582,10,'M50.323 ','Other cervical disc degeneration at C6-C7 level','Y','0000-00-00 00:00:00'),(121581,10,'M50.322 ','Other cervical disc degeneration at C5-C6 level','Y','0000-00-00 00:00:00'),(121580,10,'M50.321 ','Other cervical disc degeneration at C4-C5 level','Y','0000-00-00 00:00:00'),(121579,10,'M50.320 ','Other cervical disc degeneration, mid-cervical region, unspecified level','Y','0000-00-00 00:00:00'),(121578,10,'M50.31 ','Other cervical disc degeneration, high cervical region','Y','0000-00-00 00:00:00'),(121577,10,'M50.30 ','Other cervical disc degeneration, unspecified cervical region','Y','0000-00-00 00:00:00'),(121576,10,'M50.23 ','Other cervical disc displacement, cervicothoracic region','Y','0000-00-00 00:00:00'),(121575,10,'M50.223 ','Other cervical disc displacement at C6-C7 level','Y','0000-00-00 00:00:00'),(121574,10,'M50.222 ','Other cervical disc displacement at C5-C6 level','Y','0000-00-00 00:00:00'),(121573,10,'M50.221 ','Other cervical disc displacement at C4-C5 level','Y','0000-00-00 00:00:00'),(121572,10,'M50.220 ','Other cervical disc displacement, mid-cervical region, unspecified level','Y','0000-00-00 00:00:00'),(121571,10,'M50.21 ','Other cervical disc displacement, high cervical region','Y','0000-00-00 00:00:00'),(121570,10,'M50.20 ','Other cervical disc displacement, unspecified cervical region','Y','0000-00-00 00:00:00'),(121569,10,'M50.13 ','Cervical disc disorder with radiculopathy, cervicothoracic region','Y','0000-00-00 00:00:00'),(121568,10,'M50.123 ','Cervical disc disorder at C6-C7 level with radiculopathy','Y','0000-00-00 00:00:00'),(121567,10,'M50.122 ','Cervical disc disorder at C5-C6 level with radiculopathy','Y','0000-00-00 00:00:00'),(121566,10,'M50.121 ','Cervical disc disorder at C4-C5 level with radiculopathy','Y','0000-00-00 00:00:00'),(121565,10,'M50.120 ','Mid-cervical disc disorder, unspecified level','Y','0000-00-00 00:00:00'),(121564,10,'M50.11 ','Cervical disc disorder with radiculopathy, high cervical region','Y','0000-00-00 00:00:00'),(121563,10,'M50.10 ','Cervical disc disorder with radiculopathy, unspecified cervical region','Y','0000-00-00 00:00:00'),(121562,10,'M50.03 ','Cervical disc disorder with myelopathy, cervicothoracic region','Y','0000-00-00 00:00:00'),(121561,10,'M50.023 ','Cervical disc disorder at C6-C7 level with myelopathy','Y','0000-00-00 00:00:00'),(121560,10,'M50.022 ','Cervical disc disorder at C5-C6 level with myelopathy','Y','0000-00-00 00:00:00'),(121559,10,'M50.021 ','Cervical disc disorder at C4-C5 level with myelopathy','Y','0000-00-00 00:00:00'),(121558,10,'M50.020 ','Cervical disc disorder with myelopathy, mid-cervical region, unspecified level','Y','0000-00-00 00:00:00'),(121557,10,'M50.01 ','Cervical disc disorder with myelopathy, high cervical region','Y','0000-00-00 00:00:00'),(121556,10,'M50.00 ','Cervical disc disorder with myelopathy, unspecified cervical region','Y','0000-00-00 00:00:00'),(121555,10,'M49.89 ','Spondylopathy in diseases classified elsewhere, multiple sites in spine','Y','0000-00-00 00:00:00'),(121554,10,'M49.88 ','Spondylopathy in diseases classified elsewhere, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121553,10,'M49.87 ','Spondylopathy in diseases classified elsewhere, lumbosacral region','Y','0000-00-00 00:00:00'),(121552,10,'M49.86 ','Spondylopathy in diseases classified elsewhere, lumbar region','Y','0000-00-00 00:00:00'),(121551,10,'M49.85 ','Spondylopathy in diseases classified elsewhere, thoracolumbar region','Y','0000-00-00 00:00:00'),(121550,10,'M49.84 ','Spondylopathy in diseases classified elsewhere, thoracic region','Y','0000-00-00 00:00:00'),(121549,10,'M49.83 ','Spondylopathy in diseases classified elsewhere, cervicothoracic region','Y','0000-00-00 00:00:00'),(121548,10,'M49.82 ','Spondylopathy in diseases classified elsewhere, cervical region','Y','0000-00-00 00:00:00'),(121547,10,'M49.81 ','Spondylopathy in diseases classified elsewhere, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121546,10,'M49.80 ','Spondylopathy in diseases classified elsewhere, site unspecified','Y','0000-00-00 00:00:00'),(121545,10,'M48.9 ','Spondylopathy, unspecified','Y','0000-00-00 00:00:00'),(121544,10,'M48.8X9 ','Other specified spondylopathies, site unspecified','Y','0000-00-00 00:00:00'),(121543,10,'M48.8X8 ','Other specified spondylopathies, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121542,10,'M48.8X7 ','Other specified spondylopathies, lumbosacral region','Y','0000-00-00 00:00:00'),(121541,10,'M48.8X6 ','Other specified spondylopathies, lumbar region','Y','0000-00-00 00:00:00'),(121540,10,'M48.8X5 ','Other specified spondylopathies, thoracolumbar region','Y','0000-00-00 00:00:00'),(121539,10,'M48.8X4 ','Other specified spondylopathies, thoracic region','Y','0000-00-00 00:00:00'),(121538,10,'M48.8X3 ','Other specified spondylopathies, cervicothoracic region','Y','0000-00-00 00:00:00'),(121537,10,'M48.8X2 ','Other specified spondylopathies, cervical region','Y','0000-00-00 00:00:00'),(121536,10,'M48.8X1 ','Other specified spondylopathies, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121535,10,'M48.58XS ','Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region, sequela of fracture','Y','0000-00-00 00:00:00'),(121534,10,'M48.58XG ','Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(121533,10,'M48.58XD ','Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(121532,10,'M48.58XA ','Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region, initial encounter for fracture','Y','0000-00-00 00:00:00'),(121531,10,'M48.57XS ','Collapsed vertebra, not elsewhere classified, lumbosacral region, sequela of fracture','Y','0000-00-00 00:00:00'),(121530,10,'M48.57XG ','Collapsed vertebra, not elsewhere classified, lumbosacral region, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(121529,10,'M48.57XD ','Collapsed vertebra, not elsewhere classified, lumbosacral region, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(121528,10,'M48.57XA ','Collapsed vertebra, not elsewhere classified, lumbosacral region, initial encounter for fracture','Y','0000-00-00 00:00:00'),(121527,10,'M48.56XS ','Collapsed vertebra, not elsewhere classified, lumbar region, sequela of fracture','Y','0000-00-00 00:00:00'),(121526,10,'M48.56XG ','Collapsed vertebra, not elsewhere classified, lumbar region, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(121525,10,'M48.56XD ','Collapsed vertebra, not elsewhere classified, lumbar region, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(121524,10,'M48.56XA ','Collapsed vertebra, not elsewhere classified, lumbar region, initial encounter for fracture','Y','0000-00-00 00:00:00'),(121523,10,'M48.55XS ','Collapsed vertebra, not elsewhere classified, thoracolumbar region, sequela of fracture','Y','0000-00-00 00:00:00'),(121522,10,'M48.55XG ','Collapsed vertebra, not elsewhere classified, thoracolumbar region, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(121521,10,'M48.55XD ','Collapsed vertebra, not elsewhere classified, thoracolumbar region, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(121520,10,'M48.55XA ','Collapsed vertebra, not elsewhere classified, thoracolumbar region, initial encounter for fracture','Y','0000-00-00 00:00:00'),(121519,10,'M48.54XS ','Collapsed vertebra, not elsewhere classified, thoracic region, sequela of fracture','Y','0000-00-00 00:00:00'),(121518,10,'M48.54XG ','Collapsed vertebra, not elsewhere classified, thoracic region, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(121517,10,'M48.54XD ','Collapsed vertebra, not elsewhere classified, thoracic region, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(121516,10,'M48.54XA ','Collapsed vertebra, not elsewhere classified, thoracic region, initial encounter for fracture','Y','0000-00-00 00:00:00'),(121515,10,'M48.53XS ','Collapsed vertebra, not elsewhere classified, cervicothoracic region, sequela of fracture','Y','0000-00-00 00:00:00'),(121514,10,'M48.53XG ','Collapsed vertebra, not elsewhere classified, cervicothoracic region, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(121513,10,'M48.53XD ','Collapsed vertebra, not elsewhere classified, cervicothoracic region, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(121512,10,'M48.53XA ','Collapsed vertebra, not elsewhere classified, cervicothoracic region, initial encounter for fracture','Y','0000-00-00 00:00:00'),(121511,10,'M48.52XS ','Collapsed vertebra, not elsewhere classified, cervical region, sequela of fracture','Y','0000-00-00 00:00:00'),(121510,10,'M48.52XG ','Collapsed vertebra, not elsewhere classified, cervical region, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(121509,10,'M48.52XD ','Collapsed vertebra, not elsewhere classified, cervical region, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(121508,10,'M48.52XA ','Collapsed vertebra, not elsewhere classified, cervical region, initial encounter for fracture','Y','0000-00-00 00:00:00'),(121507,10,'M48.51XS ','Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, sequela of fracture','Y','0000-00-00 00:00:00'),(121506,10,'M48.51XG ','Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(121505,10,'M48.51XD ','Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(121504,10,'M48.51XA ','Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, initial encounter for fracture','Y','0000-00-00 00:00:00'),(121503,10,'M48.50XS ','Collapsed vertebra, not elsewhere classified, site unspecified, sequela of fracture','Y','0000-00-00 00:00:00'),(121502,10,'M48.50XG ','Collapsed vertebra, not elsewhere classified, site unspecified, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(121501,10,'M48.50XD ','Collapsed vertebra, not elsewhere classified, site unspecified, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(121500,10,'M48.50XA ','Collapsed vertebra, not elsewhere classified, site unspecified, initial encounter for fracture','Y','0000-00-00 00:00:00'),(121499,10,'M48.48XS ','Fatigue fracture of vertebra, sacral and sacrococcygeal region, sequela of fracture','Y','0000-00-00 00:00:00'),(121498,10,'M48.48XG ','Fatigue fracture of vertebra, sacral and sacrococcygeal region, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(121497,10,'M48.48XD ','Fatigue fracture of vertebra, sacral and sacrococcygeal region, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(121496,10,'M48.48XA ','Fatigue fracture of vertebra, sacral and sacrococcygeal region, initial encounter for fracture','Y','0000-00-00 00:00:00'),(121495,10,'M48.47XS ','Fatigue fracture of vertebra, lumbosacral region, sequela of fracture','Y','0000-00-00 00:00:00'),(121494,10,'M48.47XG ','Fatigue fracture of vertebra, lumbosacral region, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(121493,10,'M48.47XD ','Fatigue fracture of vertebra, lumbosacral region, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(121492,10,'M48.47XA ','Fatigue fracture of vertebra, lumbosacral region, initial encounter for fracture','Y','0000-00-00 00:00:00'),(121491,10,'M48.46XS ','Fatigue fracture of vertebra, lumbar region, sequela of fracture','Y','0000-00-00 00:00:00'),(121490,10,'M48.46XG ','Fatigue fracture of vertebra, lumbar region, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(121489,10,'M48.46XD ','Fatigue fracture of vertebra, lumbar region, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(121488,10,'M48.46XA ','Fatigue fracture of vertebra, lumbar region, initial encounter for fracture','Y','0000-00-00 00:00:00'),(121487,10,'M48.45XS ','Fatigue fracture of vertebra, thoracolumbar region, sequela of fracture','Y','0000-00-00 00:00:00'),(121486,10,'M48.45XG ','Fatigue fracture of vertebra, thoracolumbar region, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(121485,10,'M48.45XD ','Fatigue fracture of vertebra, thoracolumbar region, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(121484,10,'M48.45XA ','Fatigue fracture of vertebra, thoracolumbar region, initial encounter for fracture','Y','0000-00-00 00:00:00'),(121483,10,'M48.44XS ','Fatigue fracture of vertebra, thoracic region, sequela of fracture','Y','0000-00-00 00:00:00'),(121482,10,'M48.44XG ','Fatigue fracture of vertebra, thoracic region, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(121481,10,'M48.44XD ','Fatigue fracture of vertebra, thoracic region, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(121480,10,'M48.44XA ','Fatigue fracture of vertebra, thoracic region, initial encounter for fracture','Y','0000-00-00 00:00:00'),(121479,10,'M48.43XS ','Fatigue fracture of vertebra, cervicothoracic region, sequela of fracture','Y','0000-00-00 00:00:00'),(121478,10,'M48.43XG ','Fatigue fracture of vertebra, cervicothoracic region, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(121477,10,'M48.43XD ','Fatigue fracture of vertebra, cervicothoracic region, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(121476,10,'M48.43XA ','Fatigue fracture of vertebra, cervicothoracic region, initial encounter for fracture','Y','0000-00-00 00:00:00'),(121475,10,'M48.42XS ','Fatigue fracture of vertebra, cervical region, sequela of fracture','Y','0000-00-00 00:00:00'),(121474,10,'M48.42XG ','Fatigue fracture of vertebra, cervical region, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(121473,10,'M48.42XD ','Fatigue fracture of vertebra, cervical region, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(121472,10,'M48.42XA ','Fatigue fracture of vertebra, cervical region, initial encounter for fracture','Y','0000-00-00 00:00:00'),(121471,10,'M48.41XS ','Fatigue fracture of vertebra, occipito-atlanto-axial region, sequela of fracture','Y','0000-00-00 00:00:00'),(121470,10,'M48.41XG ','Fatigue fracture of vertebra, occipito-atlanto-axial region, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(121469,10,'M48.41XD ','Fatigue fracture of vertebra, occipito-atlanto-axial region, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(121467,10,'M48.40XS ','Fatigue fracture of vertebra, site unspecified, sequela of fracture','Y','0000-00-00 00:00:00'),(121468,10,'M48.41XA ','Fatigue fracture of vertebra, occipito-atlanto-axial region, initial encounter for fracture','Y','0000-00-00 00:00:00'),(121466,10,'M48.40XG ','Fatigue fracture of vertebra, site unspecified, subsequent encounter for fracture with delayed healing','Y','0000-00-00 00:00:00'),(121465,10,'M48.40XD ','Fatigue fracture of vertebra, site unspecified, subsequent encounter for fracture with routine healing','Y','0000-00-00 00:00:00'),(121464,10,'M48.40XA ','Fatigue fracture of vertebra, site unspecified, initial encounter for fracture','Y','0000-00-00 00:00:00'),(121463,10,'M48.38 ','Traumatic spondylopathy, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121461,10,'M48.36 ','Traumatic spondylopathy, lumbar region','Y','0000-00-00 00:00:00'),(121462,10,'M48.37 ','Traumatic spondylopathy, lumbosacral region','Y','0000-00-00 00:00:00'),(121460,10,'M48.35 ','Traumatic spondylopathy, thoracolumbar region','Y','0000-00-00 00:00:00'),(121458,10,'M48.33 ','Traumatic spondylopathy, cervicothoracic region','Y','0000-00-00 00:00:00'),(121459,10,'M48.34 ','Traumatic spondylopathy, thoracic region','Y','0000-00-00 00:00:00'),(121457,10,'M48.32 ','Traumatic spondylopathy, cervical region','Y','0000-00-00 00:00:00'),(121455,10,'M48.30 ','Traumatic spondylopathy, site unspecified','Y','0000-00-00 00:00:00'),(121456,10,'M48.31 ','Traumatic spondylopathy, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121453,10,'M48.26 ','Kissing spine, lumbar region','Y','0000-00-00 00:00:00'),(121454,10,'M48.27 ','Kissing spine, lumbosacral region','Y','0000-00-00 00:00:00'),(121452,10,'M48.25 ','Kissing spine, thoracolumbar region','Y','0000-00-00 00:00:00'),(121450,10,'M48.23 ','Kissing spine, cervicothoracic region','Y','0000-00-00 00:00:00'),(121451,10,'M48.24 ','Kissing spine, thoracic region','Y','0000-00-00 00:00:00'),(121449,10,'M48.22 ','Kissing spine, cervical region','Y','0000-00-00 00:00:00'),(121447,10,'M48.20 ','Kissing spine, site unspecified','Y','0000-00-00 00:00:00'),(121448,10,'M48.21 ','Kissing spine, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121446,10,'M48.19 ','Ankylosing hyperostosis [Forestier], multiple sites in spine','Y','0000-00-00 00:00:00'),(121445,10,'M48.18 ','Ankylosing hyperostosis [Forestier], sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121443,10,'M48.16 ','Ankylosing hyperostosis [Forestier], lumbar region','Y','0000-00-00 00:00:00'),(121444,10,'M48.17 ','Ankylosing hyperostosis [Forestier], lumbosacral region','Y','0000-00-00 00:00:00'),(121442,10,'M48.15 ','Ankylosing hyperostosis [Forestier], thoracolumbar region','Y','0000-00-00 00:00:00'),(121440,10,'M48.13 ','Ankylosing hyperostosis [Forestier], cervicothoracic region','Y','0000-00-00 00:00:00'),(121441,10,'M48.14 ','Ankylosing hyperostosis [Forestier], thoracic region','Y','0000-00-00 00:00:00'),(121439,10,'M48.12 ','Ankylosing hyperostosis [Forestier], cervical region','Y','0000-00-00 00:00:00'),(121438,10,'M48.11 ','Ankylosing hyperostosis [Forestier], occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121436,10,'M48.08 ','Spinal stenosis, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121437,10,'M48.10 ','Ankylosing hyperostosis [Forestier], site unspecified','Y','0000-00-00 00:00:00'),(121435,10,'M48.07 ','Spinal stenosis, lumbosacral region','Y','0000-00-00 00:00:00'),(121434,10,'M48.062 ','Spinal stenosis, lumbar region with neurogenic claudication','Y','0000-00-00 00:00:00'),(121432,10,'M48.05 ','Spinal stenosis, thoracolumbar region','Y','0000-00-00 00:00:00'),(121433,10,'M48.061 ','Spinal stenosis, lumbar region without neurogenic claudication','Y','0000-00-00 00:00:00'),(121431,10,'M48.04 ','Spinal stenosis, thoracic region','Y','0000-00-00 00:00:00'),(121429,10,'M48.02 ','Spinal stenosis, cervical region','Y','0000-00-00 00:00:00'),(121430,10,'M48.03 ','Spinal stenosis, cervicothoracic region','Y','0000-00-00 00:00:00'),(121428,10,'M48.01 ','Spinal stenosis, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121426,10,'M47.9 ','Spondylosis, unspecified','Y','0000-00-00 00:00:00'),(121427,10,'M48.00 ','Spinal stenosis, site unspecified','Y','0000-00-00 00:00:00'),(121425,10,'M47.899 ','Other spondylosis, site unspecified','Y','0000-00-00 00:00:00'),(121424,10,'M47.898 ','Other spondylosis, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121422,10,'M47.896 ','Other spondylosis, lumbar region','Y','0000-00-00 00:00:00'),(121423,10,'M47.897 ','Other spondylosis, lumbosacral region','Y','0000-00-00 00:00:00'),(121421,10,'M47.895 ','Other spondylosis, thoracolumbar region','Y','0000-00-00 00:00:00'),(121420,10,'M47.894 ','Other spondylosis, thoracic region','Y','0000-00-00 00:00:00'),(121419,10,'M47.893 ','Other spondylosis, cervicothoracic region','Y','0000-00-00 00:00:00'),(121418,10,'M47.892 ','Other spondylosis, cervical region','Y','0000-00-00 00:00:00'),(121417,10,'M47.891 ','Other spondylosis, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121416,10,'M47.819 ','Spondylosis without myelopathy or radiculopathy, site unspecified','Y','0000-00-00 00:00:00'),(121415,10,'M47.818 ','Spondylosis without myelopathy or radiculopathy, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121414,10,'M47.817 ','Spondylosis without myelopathy or radiculopathy, lumbosacral region','Y','0000-00-00 00:00:00'),(121413,10,'M47.816 ','Spondylosis without myelopathy or radiculopathy, lumbar region','Y','0000-00-00 00:00:00'),(121412,10,'M47.815 ','Spondylosis without myelopathy or radiculopathy, thoracolumbar region','Y','0000-00-00 00:00:00'),(121411,10,'M47.814 ','Spondylosis without myelopathy or radiculopathy, thoracic region','Y','0000-00-00 00:00:00'),(121410,10,'M47.813 ','Spondylosis without myelopathy or radiculopathy, cervicothoracic region','Y','0000-00-00 00:00:00'),(121409,10,'M47.812 ','Spondylosis without myelopathy or radiculopathy, cervical region','Y','0000-00-00 00:00:00'),(121408,10,'M47.811 ','Spondylosis without myelopathy or radiculopathy, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121407,10,'M47.28 ','Other spondylosis with radiculopathy, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121406,10,'M47.27 ','Other spondylosis with radiculopathy, lumbosacral region','Y','0000-00-00 00:00:00'),(121405,10,'M47.26 ','Other spondylosis with radiculopathy, lumbar region','Y','0000-00-00 00:00:00'),(121404,10,'M47.25 ','Other spondylosis with radiculopathy, thoracolumbar region','Y','0000-00-00 00:00:00'),(121403,10,'M47.24 ','Other spondylosis with radiculopathy, thoracic region','Y','0000-00-00 00:00:00'),(121402,10,'M47.23 ','Other spondylosis with radiculopathy, cervicothoracic region','Y','0000-00-00 00:00:00'),(121401,10,'M47.22 ','Other spondylosis with radiculopathy, cervical region','Y','0000-00-00 00:00:00'),(121400,10,'M47.21 ','Other spondylosis with radiculopathy, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121399,10,'M47.20 ','Other spondylosis with radiculopathy, site unspecified','Y','0000-00-00 00:00:00'),(121398,10,'M47.16 ','Other spondylosis with myelopathy, lumbar region','Y','0000-00-00 00:00:00'),(121397,10,'M47.15 ','Other spondylosis with myelopathy, thoracolumbar region','Y','0000-00-00 00:00:00'),(121396,10,'M47.14 ','Other spondylosis with myelopathy, thoracic region','Y','0000-00-00 00:00:00'),(121395,10,'M47.13 ','Other spondylosis with myelopathy, cervicothoracic region','Y','0000-00-00 00:00:00'),(121394,10,'M47.12 ','Other spondylosis with myelopathy, cervical region','Y','0000-00-00 00:00:00'),(121393,10,'M47.11 ','Other spondylosis with myelopathy, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121392,10,'M47.10 ','Other spondylosis with myelopathy, site unspecified','Y','0000-00-00 00:00:00'),(121391,10,'M47.029 ','Vertebral artery compression syndromes, site unspecified','Y','0000-00-00 00:00:00'),(121390,10,'M47.022 ','Vertebral artery compression syndromes, cervical region','Y','0000-00-00 00:00:00'),(121389,10,'M47.021 ','Vertebral artery compression syndromes, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121388,10,'M47.019 ','Anterior spinal artery compression syndromes, site unspecified','Y','0000-00-00 00:00:00'),(121387,10,'M47.016 ','Anterior spinal artery compression syndromes, lumbar region','Y','0000-00-00 00:00:00'),(121386,10,'M47.015 ','Anterior spinal artery compression syndromes, thoracolumbar region','Y','0000-00-00 00:00:00'),(121385,10,'M47.014 ','Anterior spinal artery compression syndromes, thoracic region','Y','0000-00-00 00:00:00'),(121384,10,'M47.013 ','Anterior spinal artery compression syndromes, cervicothoracic region','Y','0000-00-00 00:00:00'),(121383,10,'M47.012 ','Anterior spinal artery compression syndromes, cervical region','Y','0000-00-00 00:00:00'),(121382,10,'M47.011 ','Anterior spinal artery compression syndromes, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121381,10,'M46.99 ','Unspecified inflammatory spondylopathy, multiple sites in spine','Y','0000-00-00 00:00:00'),(121380,10,'M46.98 ','Unspecified inflammatory spondylopathy, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121379,10,'M46.97 ','Unspecified inflammatory spondylopathy, lumbosacral region','Y','0000-00-00 00:00:00'),(121378,10,'M46.96 ','Unspecified inflammatory spondylopathy, lumbar region','Y','0000-00-00 00:00:00'),(121377,10,'M46.95 ','Unspecified inflammatory spondylopathy, thoracolumbar region','Y','0000-00-00 00:00:00'),(121376,10,'M46.94 ','Unspecified inflammatory spondylopathy, thoracic region','Y','0000-00-00 00:00:00'),(121375,10,'M46.93 ','Unspecified inflammatory spondylopathy, cervicothoracic region','Y','0000-00-00 00:00:00'),(121374,10,'M46.92 ','Unspecified inflammatory spondylopathy, cervical region','Y','0000-00-00 00:00:00'),(121373,10,'M46.91 ','Unspecified inflammatory spondylopathy, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121372,10,'M46.90 ','Unspecified inflammatory spondylopathy, site unspecified','Y','0000-00-00 00:00:00'),(121371,10,'M46.89 ','Other specified inflammatory spondylopathies, multiple sites in spine','Y','0000-00-00 00:00:00'),(121370,10,'M46.88 ','Other specified inflammatory spondylopathies, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121369,10,'M46.87 ','Other specified inflammatory spondylopathies, lumbosacral region','Y','0000-00-00 00:00:00'),(121368,10,'M46.86 ','Other specified inflammatory spondylopathies, lumbar region','Y','0000-00-00 00:00:00'),(121367,10,'M46.85 ','Other specified inflammatory spondylopathies, thoracolumbar region','Y','0000-00-00 00:00:00'),(121366,10,'M46.84 ','Other specified inflammatory spondylopathies, thoracic region','Y','0000-00-00 00:00:00'),(121365,10,'M46.83 ','Other specified inflammatory spondylopathies, cervicothoracic region','Y','0000-00-00 00:00:00'),(121364,10,'M46.82 ','Other specified inflammatory spondylopathies, cervical region','Y','0000-00-00 00:00:00'),(121363,10,'M46.81 ','Other specified inflammatory spondylopathies, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121362,10,'M46.80 ','Other specified inflammatory spondylopathies, site unspecified','Y','0000-00-00 00:00:00'),(121361,10,'M46.59 ','Other infective spondylopathies, multiple sites in spine','Y','0000-00-00 00:00:00'),(121360,10,'M46.58 ','Other infective spondylopathies, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121359,10,'M46.57 ','Other infective spondylopathies, lumbosacral region','Y','0000-00-00 00:00:00'),(121358,10,'M46.56 ','Other infective spondylopathies, lumbar region','Y','0000-00-00 00:00:00'),(121357,10,'M46.55 ','Other infective spondylopathies, thoracolumbar region','Y','0000-00-00 00:00:00'),(121356,10,'M46.54 ','Other infective spondylopathies, thoracic region','Y','0000-00-00 00:00:00'),(121355,10,'M46.53 ','Other infective spondylopathies, cervicothoracic region','Y','0000-00-00 00:00:00'),(121354,10,'M46.52 ','Other infective spondylopathies, cervical region','Y','0000-00-00 00:00:00'),(121353,10,'M46.51 ','Other infective spondylopathies, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121352,10,'M46.50 ','Other infective spondylopathies, site unspecified','Y','0000-00-00 00:00:00'),(121351,10,'M46.49 ','Discitis, unspecified, multiple sites in spine','Y','0000-00-00 00:00:00'),(121350,10,'M46.48 ','Discitis, unspecified, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121349,10,'M46.47 ','Discitis, unspecified, lumbosacral region','Y','0000-00-00 00:00:00'),(121348,10,'M46.46 ','Discitis, unspecified, lumbar region','Y','0000-00-00 00:00:00'),(121347,10,'M46.45 ','Discitis, unspecified, thoracolumbar region','Y','0000-00-00 00:00:00'),(121346,10,'M46.44 ','Discitis, unspecified, thoracic region','Y','0000-00-00 00:00:00'),(121345,10,'M46.43 ','Discitis, unspecified, cervicothoracic region','Y','0000-00-00 00:00:00'),(121344,10,'M46.42 ','Discitis, unspecified, cervical region','Y','0000-00-00 00:00:00'),(121342,10,'M46.40 ','Discitis, unspecified, site unspecified','Y','0000-00-00 00:00:00'),(121343,10,'M46.41 ','Discitis, unspecified, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121341,10,'M46.39 ','Infection of intervertebral disc (pyogenic), multiple sites in spine','Y','0000-00-00 00:00:00'),(121340,10,'M46.38 ','Infection of intervertebral disc (pyogenic), sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121339,10,'M46.37 ','Infection of intervertebral disc (pyogenic), lumbosacral region','Y','0000-00-00 00:00:00'),(121338,10,'M46.36 ','Infection of intervertebral disc (pyogenic), lumbar region','Y','0000-00-00 00:00:00'),(121337,10,'M46.35 ','Infection of intervertebral disc (pyogenic), thoracolumbar region','Y','0000-00-00 00:00:00'),(121336,10,'M46.34 ','Infection of intervertebral disc (pyogenic), thoracic region','Y','0000-00-00 00:00:00'),(121335,10,'M46.33 ','Infection of intervertebral disc (pyogenic), cervicothoracic region','Y','0000-00-00 00:00:00'),(121334,10,'M46.32 ','Infection of intervertebral disc (pyogenic), cervical region','Y','0000-00-00 00:00:00'),(121333,10,'M46.31 ','Infection of intervertebral disc (pyogenic), occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121332,10,'M46.30 ','Infection of intervertebral disc (pyogenic), site unspecified','Y','0000-00-00 00:00:00'),(121331,10,'M46.28 ','Osteomyelitis of vertebra, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121330,10,'M46.27 ','Osteomyelitis of vertebra, lumbosacral region','Y','0000-00-00 00:00:00'),(121329,10,'M46.26 ','Osteomyelitis of vertebra, lumbar region','Y','0000-00-00 00:00:00'),(121328,10,'M46.25 ','Osteomyelitis of vertebra, thoracolumbar region','Y','0000-00-00 00:00:00'),(121327,10,'M46.24 ','Osteomyelitis of vertebra, thoracic region','Y','0000-00-00 00:00:00'),(121326,10,'M46.23 ','Osteomyelitis of vertebra, cervicothoracic region','Y','0000-00-00 00:00:00'),(121325,10,'M46.22 ','Osteomyelitis of vertebra, cervical region','Y','0000-00-00 00:00:00'),(121324,10,'M46.21 ','Osteomyelitis of vertebra, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121323,10,'M46.20 ','Osteomyelitis of vertebra, site unspecified','Y','0000-00-00 00:00:00'),(121322,10,'M46.1 ','Sacroiliitis, not elsewhere classified','Y','0000-00-00 00:00:00'),(121321,10,'M46.09 ','Spinal enthesopathy, multiple sites in spine','Y','0000-00-00 00:00:00'),(121320,10,'M46.08 ','Spinal enthesopathy, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121319,10,'M46.07 ','Spinal enthesopathy, lumbosacral region','Y','0000-00-00 00:00:00'),(121318,10,'M46.06 ','Spinal enthesopathy, lumbar region','Y','0000-00-00 00:00:00'),(121317,10,'M46.05 ','Spinal enthesopathy, thoracolumbar region','Y','0000-00-00 00:00:00'),(121316,10,'M46.04 ','Spinal enthesopathy, thoracic region','Y','0000-00-00 00:00:00'),(121315,10,'M46.03 ','Spinal enthesopathy, cervicothoracic region','Y','0000-00-00 00:00:00'),(121314,10,'M46.02 ','Spinal enthesopathy, cervical region','Y','0000-00-00 00:00:00'),(121313,10,'M46.01 ','Spinal enthesopathy, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121312,10,'M46.00 ','Spinal enthesopathy, site unspecified','Y','0000-00-00 00:00:00'),(121311,10,'M45.AB ','Non-radiographic axial spondyloarthritis of multiple sites in spine','Y','0000-00-00 00:00:00'),(121310,10,'M45.A8 ','Non-radiographic axial spondyloarthritis of sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121309,10,'M45.A7 ','Non-radiographic axial spondyloarthritis of lumbosacral region','Y','0000-00-00 00:00:00'),(121308,10,'M45.A6 ','Non-radiographic axial spondyloarthritis of lumbar region','Y','0000-00-00 00:00:00'),(121307,10,'M45.A5 ','Non-radiographic axial spondyloarthritis of thoracolumbar region','Y','0000-00-00 00:00:00'),(121306,10,'M45.A4 ','Non-radiographic axial spondyloarthritis of thoracic region','Y','0000-00-00 00:00:00'),(121305,10,'M45.A3 ','Non-radiographic axial spondyloarthritis of cervicothoracic region','Y','0000-00-00 00:00:00'),(121304,10,'M45.A2 ','Non-radiographic axial spondyloarthritis of cervical region','Y','0000-00-00 00:00:00'),(121303,10,'M45.A1 ','Non-radiographic axial spondyloarthritis of occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121302,10,'M45.A0 ','Non-radiographic axial spondyloarthritis of unspecified sites in spine','Y','0000-00-00 00:00:00'),(121301,10,'M45.9 ','Ankylosing spondylitis of unspecified sites in spine','Y','0000-00-00 00:00:00'),(121300,10,'M45.8 ','Ankylosing spondylitis sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121299,10,'M45.7 ','Ankylosing spondylitis of lumbosacral region','Y','0000-00-00 00:00:00'),(121298,10,'M45.6 ','Ankylosing spondylitis lumbar region','Y','0000-00-00 00:00:00'),(121297,10,'M45.5 ','Ankylosing spondylitis of thoracolumbar region','Y','0000-00-00 00:00:00'),(121296,10,'M45.4 ','Ankylosing spondylitis of thoracic region','Y','0000-00-00 00:00:00'),(121295,10,'M45.3 ','Ankylosing spondylitis of cervicothoracic region','Y','0000-00-00 00:00:00'),(121294,10,'M45.2 ','Ankylosing spondylitis of cervical region','Y','0000-00-00 00:00:00'),(121293,10,'M45.1 ','Ankylosing spondylitis of occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121292,10,'M45.0 ','Ankylosing spondylitis of multiple sites in spine','Y','0000-00-00 00:00:00'),(121291,10,'M43.9 ','Deforming dorsopathy, unspecified','Y','0000-00-00 00:00:00'),(121290,10,'M43.8X9 ','Other specified deforming dorsopathies, site unspecified','Y','0000-00-00 00:00:00'),(121289,10,'M43.8X8 ','Other specified deforming dorsopathies, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121288,10,'M43.8X7 ','Other specified deforming dorsopathies, lumbosacral region','Y','0000-00-00 00:00:00'),(121287,10,'M43.8X6 ','Other specified deforming dorsopathies, lumbar region','Y','0000-00-00 00:00:00'),(121286,10,'M43.8X5 ','Other specified deforming dorsopathies, thoracolumbar region','Y','0000-00-00 00:00:00'),(121285,10,'M43.8X4 ','Other specified deforming dorsopathies, thoracic region','Y','0000-00-00 00:00:00'),(121284,10,'M43.8X3 ','Other specified deforming dorsopathies, cervicothoracic region','Y','0000-00-00 00:00:00'),(121283,10,'M43.8X2 ','Other specified deforming dorsopathies, cervical region','Y','0000-00-00 00:00:00'),(121281,10,'M43.6 ','Torticollis','Y','0000-00-00 00:00:00'),(121282,10,'M43.8X1 ','Other specified deforming dorsopathies, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121280,10,'M43.5X9 ','Other recurrent vertebral dislocation, site unspecified','Y','0000-00-00 00:00:00'),(121279,10,'M43.5X8 ','Other recurrent vertebral dislocation, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121278,10,'M43.5X7 ','Other recurrent vertebral dislocation, lumbosacral region','Y','0000-00-00 00:00:00'),(121277,10,'M43.5X6 ','Other recurrent vertebral dislocation, lumbar region','Y','0000-00-00 00:00:00'),(121276,10,'M43.5X5 ','Other recurrent vertebral dislocation, thoracolumbar region','Y','0000-00-00 00:00:00'),(121275,10,'M43.5X4 ','Other recurrent vertebral dislocation, thoracic region','Y','0000-00-00 00:00:00'),(121274,10,'M43.5X3 ','Other recurrent vertebral dislocation, cervicothoracic region','Y','0000-00-00 00:00:00'),(121273,10,'M43.5X2 ','Other recurrent vertebral dislocation, cervical region','Y','0000-00-00 00:00:00'),(121272,10,'M43.4 ','Other recurrent atlantoaxial dislocation','Y','0000-00-00 00:00:00'),(121271,10,'M43.3 ','Recurrent atlantoaxial dislocation with myelopathy','Y','0000-00-00 00:00:00'),(121269,10,'M43.27 ','Fusion of spine, lumbosacral region','Y','0000-00-00 00:00:00'),(121270,10,'M43.28 ','Fusion of spine, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121268,10,'M43.26 ','Fusion of spine, lumbar region','Y','0000-00-00 00:00:00'),(121267,10,'M43.25 ','Fusion of spine, thoracolumbar region','Y','0000-00-00 00:00:00'),(121266,10,'M43.24 ','Fusion of spine, thoracic region','Y','0000-00-00 00:00:00'),(121264,10,'M43.22 ','Fusion of spine, cervical region','Y','0000-00-00 00:00:00'),(121265,10,'M43.23 ','Fusion of spine, cervicothoracic region','Y','0000-00-00 00:00:00'),(121263,10,'M43.21 ','Fusion of spine, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121262,10,'M43.20 ','Fusion of spine, site unspecified','Y','0000-00-00 00:00:00'),(121260,10,'M43.18 ','Spondylolisthesis, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121261,10,'M43.19 ','Spondylolisthesis, multiple sites in spine','Y','0000-00-00 00:00:00'),(121259,10,'M43.17 ','Spondylolisthesis, lumbosacral region','Y','0000-00-00 00:00:00'),(121257,10,'M43.15 ','Spondylolisthesis, thoracolumbar region','Y','0000-00-00 00:00:00'),(121258,10,'M43.16 ','Spondylolisthesis, lumbar region','Y','0000-00-00 00:00:00'),(121256,10,'M43.14 ','Spondylolisthesis, thoracic region','Y','0000-00-00 00:00:00'),(121254,10,'M43.12 ','Spondylolisthesis, cervical region','Y','0000-00-00 00:00:00'),(121255,10,'M43.13 ','Spondylolisthesis, cervicothoracic region','Y','0000-00-00 00:00:00'),(121253,10,'M43.11 ','Spondylolisthesis, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121252,10,'M43.10 ','Spondylolisthesis, site unspecified','Y','0000-00-00 00:00:00'),(121251,10,'M43.09 ','Spondylolysis, multiple sites in spine','Y','0000-00-00 00:00:00'),(121250,10,'M43.08 ','Spondylolysis, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121248,10,'M43.06 ','Spondylolysis, lumbar region','Y','0000-00-00 00:00:00'),(121249,10,'M43.07 ','Spondylolysis, lumbosacral region','Y','0000-00-00 00:00:00'),(121247,10,'M43.05 ','Spondylolysis, thoracolumbar region','Y','0000-00-00 00:00:00'),(121246,10,'M43.04 ','Spondylolysis, thoracic region','Y','0000-00-00 00:00:00'),(121244,10,'M43.02 ','Spondylolysis, cervical region','Y','0000-00-00 00:00:00'),(121245,10,'M43.03 ','Spondylolysis, cervicothoracic region','Y','0000-00-00 00:00:00'),(121243,10,'M43.01 ','Spondylolysis, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121242,10,'M43.00 ','Spondylolysis, site unspecified','Y','0000-00-00 00:00:00'),(121241,10,'M42.9 ','Spinal osteochondrosis, unspecified','Y','0000-00-00 00:00:00'),(121240,10,'M42.19 ','Adult osteochondrosis of spine, multiple sites in spine','Y','0000-00-00 00:00:00'),(121239,10,'M42.18 ','Adult osteochondrosis of spine, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121238,10,'M42.17 ','Adult osteochondrosis of spine, lumbosacral region','Y','0000-00-00 00:00:00'),(121237,10,'M42.16 ','Adult osteochondrosis of spine, lumbar region','Y','0000-00-00 00:00:00'),(121236,10,'M42.15 ','Adult osteochondrosis of spine, thoracolumbar region','Y','0000-00-00 00:00:00'),(121235,10,'M42.14 ','Adult osteochondrosis of spine, thoracic region','Y','0000-00-00 00:00:00'),(121234,10,'M42.13 ','Adult osteochondrosis of spine, cervicothoracic region','Y','0000-00-00 00:00:00'),(121233,10,'M42.12 ','Adult osteochondrosis of spine, cervical region','Y','0000-00-00 00:00:00'),(121232,10,'M42.11 ','Adult osteochondrosis of spine, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121231,10,'M42.10 ','Adult osteochondrosis of spine, site unspecified','Y','0000-00-00 00:00:00'),(121230,10,'M42.09 ','Juvenile osteochondrosis of spine, multiple sites in spine','Y','0000-00-00 00:00:00'),(121229,10,'M42.08 ','Juvenile osteochondrosis of spine, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121228,10,'M42.07 ','Juvenile osteochondrosis of spine, lumbosacral region','Y','0000-00-00 00:00:00'),(121227,10,'M42.06 ','Juvenile osteochondrosis of spine, lumbar region','Y','0000-00-00 00:00:00'),(121226,10,'M42.05 ','Juvenile osteochondrosis of spine, thoracolumbar region','Y','0000-00-00 00:00:00'),(121225,10,'M42.04 ','Juvenile osteochondrosis of spine, thoracic region','Y','0000-00-00 00:00:00'),(121224,10,'M42.03 ','Juvenile osteochondrosis of spine, cervicothoracic region','Y','0000-00-00 00:00:00'),(121223,10,'M42.02 ','Juvenile osteochondrosis of spine, cervical region','Y','0000-00-00 00:00:00'),(121222,10,'M42.01 ','Juvenile osteochondrosis of spine, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121220,10,'M41.9 ','Scoliosis, unspecified','Y','0000-00-00 00:00:00'),(121221,10,'M42.00 ','Juvenile osteochondrosis of spine, site unspecified','Y','0000-00-00 00:00:00'),(121219,10,'M41.87 ','Other forms of scoliosis, lumbosacral region','Y','0000-00-00 00:00:00'),(121218,10,'M41.86 ','Other forms of scoliosis, lumbar region','Y','0000-00-00 00:00:00'),(121217,10,'M41.85 ','Other forms of scoliosis, thoracolumbar region','Y','0000-00-00 00:00:00'),(121216,10,'M41.84 ','Other forms of scoliosis, thoracic region','Y','0000-00-00 00:00:00'),(121215,10,'M41.83 ','Other forms of scoliosis, cervicothoracic region','Y','0000-00-00 00:00:00'),(121214,10,'M41.82 ','Other forms of scoliosis, cervical region','Y','0000-00-00 00:00:00'),(121213,10,'M41.80 ','Other forms of scoliosis, site unspecified','Y','0000-00-00 00:00:00'),(121212,10,'M41.57 ','Other secondary scoliosis, lumbosacral region','Y','0000-00-00 00:00:00'),(121211,10,'M41.56 ','Other secondary scoliosis, lumbar region','Y','0000-00-00 00:00:00'),(121210,10,'M41.55 ','Other secondary scoliosis, thoracolumbar region','Y','0000-00-00 00:00:00'),(121209,10,'M41.54 ','Other secondary scoliosis, thoracic region','Y','0000-00-00 00:00:00'),(121208,10,'M41.53 ','Other secondary scoliosis, cervicothoracic region','Y','0000-00-00 00:00:00'),(121206,10,'M41.50 ','Other secondary scoliosis, site unspecified','Y','0000-00-00 00:00:00'),(121207,10,'M41.52 ','Other secondary scoliosis, cervical region','Y','0000-00-00 00:00:00'),(121205,10,'M41.47 ','Neuromuscular scoliosis, lumbosacral region','Y','0000-00-00 00:00:00'),(121204,10,'M41.46 ','Neuromuscular scoliosis, lumbar region','Y','0000-00-00 00:00:00'),(121202,10,'M41.44 ','Neuromuscular scoliosis, thoracic region','Y','0000-00-00 00:00:00'),(121203,10,'M41.45 ','Neuromuscular scoliosis, thoracolumbar region','Y','0000-00-00 00:00:00'),(121201,10,'M41.43 ','Neuromuscular scoliosis, cervicothoracic region','Y','0000-00-00 00:00:00'),(121200,10,'M41.42 ','Neuromuscular scoliosis, cervical region','Y','0000-00-00 00:00:00'),(121199,10,'M41.41 ','Neuromuscular scoliosis, occipito-atlanto-axial region','Y','0000-00-00 00:00:00'),(121198,10,'M41.40 ','Neuromuscular scoliosis, site unspecified','Y','0000-00-00 00:00:00'),(121197,10,'M41.35 ','Thoracogenic scoliosis, thoracolumbar region','Y','0000-00-00 00:00:00'),(121196,10,'M41.34 ','Thoracogenic scoliosis, thoracic region','Y','0000-00-00 00:00:00'),(121195,10,'M41.30 ','Thoracogenic scoliosis, site unspecified','Y','0000-00-00 00:00:00'),(121194,10,'M41.27 ','Other idiopathic scoliosis, lumbosacral region','Y','0000-00-00 00:00:00'),(121193,10,'M41.26 ','Other idiopathic scoliosis, lumbar region','Y','0000-00-00 00:00:00'),(121192,10,'M41.25 ','Other idiopathic scoliosis, thoracolumbar region','Y','0000-00-00 00:00:00'),(121191,10,'M41.24 ','Other idiopathic scoliosis, thoracic region','Y','0000-00-00 00:00:00'),(121190,10,'M41.23 ','Other idiopathic scoliosis, cervicothoracic region','Y','0000-00-00 00:00:00'),(121189,10,'M41.22 ','Other idiopathic scoliosis, cervical region','Y','0000-00-00 00:00:00'),(121188,10,'M41.20 ','Other idiopathic scoliosis, site unspecified','Y','0000-00-00 00:00:00'),(121187,10,'M41.129 ','Adolescent idiopathic scoliosis, site unspecified','Y','0000-00-00 00:00:00'),(121186,10,'M41.127 ','Adolescent idiopathic scoliosis, lumbosacral region','Y','0000-00-00 00:00:00'),(121185,10,'M41.126 ','Adolescent idiopathic scoliosis, lumbar region','Y','0000-00-00 00:00:00'),(121184,10,'M41.125 ','Adolescent idiopathic scoliosis, thoracolumbar region','Y','0000-00-00 00:00:00'),(121183,10,'M41.124 ','Adolescent idiopathic scoliosis, thoracic region','Y','0000-00-00 00:00:00'),(121182,10,'M41.123 ','Adolescent idiopathic scoliosis, cervicothoracic region','Y','0000-00-00 00:00:00'),(121181,10,'M41.122 ','Adolescent idiopathic scoliosis, cervical region','Y','0000-00-00 00:00:00'),(121180,10,'M41.119 ','Juvenile idiopathic scoliosis, site unspecified','Y','0000-00-00 00:00:00'),(121179,10,'M41.117 ','Juvenile idiopathic scoliosis, lumbosacral region','Y','0000-00-00 00:00:00'),(121178,10,'M41.116 ','Juvenile idiopathic scoliosis, lumbar region','Y','0000-00-00 00:00:00'),(121177,10,'M41.115 ','Juvenile idiopathic scoliosis, thoracolumbar region','Y','0000-00-00 00:00:00'),(121176,10,'M41.114 ','Juvenile idiopathic scoliosis, thoracic region','Y','0000-00-00 00:00:00'),(121175,10,'M41.113 ','Juvenile idiopathic scoliosis, cervicothoracic region','Y','0000-00-00 00:00:00'),(121174,10,'M41.112 ','Juvenile idiopathic scoliosis, cervical region','Y','0000-00-00 00:00:00'),(121173,10,'M41.08 ','Infantile idiopathic scoliosis, sacral and sacrococcygeal region','Y','0000-00-00 00:00:00'),(121172,10,'M41.07 ','Infantile idiopathic scoliosis, lumbosacral region','Y','0000-00-00 00:00:00'),(121171,10,'M41.06 ','Infantile idiopathic scoliosis, lumbar region','Y','0000-00-00 00:00:00'),(121170,10,'M41.05 ','Infantile idiopathic scoliosis, thoracolumbar region','Y','0000-00-00 00:00:00'),(121169,10,'M41.04 ','Infantile idiopathic scoliosis, thoracic region','Y','0000-00-00 00:00:00'),(121168,10,'M41.03 ','Infantile idiopathic scoliosis, cervicothoracic region','Y','0000-00-00 00:00:00'),(121167,10,'M41.02 ','Infantile idiopathic scoliosis, cervical region','Y','0000-00-00 00:00:00'),(121166,10,'M41.00 ','Infantile idiopathic scoliosis, site unspecified','Y','0000-00-00 00:00:00'),(121165,10,'M40.57 ','Lordosis, unspecified, lumbosacral region','Y','0000-00-00 00:00:00'),(121164,10,'M40.56 ','Lordosis, unspecified, lumbar region','Y','0000-00-00 00:00:00'),(121163,10,'M40.55 ','Lordosis, unspecified, thoracolumbar region','Y','0000-00-00 00:00:00'),(121162,10,'M40.50 ','Lordosis, unspecified, site unspecified','Y','0000-00-00 00:00:00'),(121161,10,'M40.47 ','Postural lordosis, lumbosacral region','Y','0000-00-00 00:00:00'),(121160,10,'M40.46 ','Postural lordosis, lumbar region','Y','0000-00-00 00:00:00'),(121159,10,'M40.45 ','Postural lordosis, thoracolumbar region','Y','0000-00-00 00:00:00'),(121158,10,'M40.40 ','Postural lordosis, site unspecified','Y','0000-00-00 00:00:00'),(121157,10,'M40.37 ','Flatback syndrome, lumbosacral region','Y','0000-00-00 00:00:00'),(121156,10,'M40.36 ','Flatback syndrome, lumbar region','Y','0000-00-00 00:00:00'),(121155,10,'M40.35 ','Flatback syndrome, thoracolumbar region','Y','0000-00-00 00:00:00'),(121154,10,'M40.30 ','Flatback syndrome, site unspecified','Y','0000-00-00 00:00:00'),(121153,10,'M40.299 ','Other kyphosis, site unspecified','Y','0000-00-00 00:00:00'),(121151,10,'M40.294 ','Other kyphosis, thoracic region','Y','0000-00-00 00:00:00'),(121152,10,'M40.295 ','Other kyphosis, thoracolumbar region','Y','0000-00-00 00:00:00'),(121150,10,'M40.293 ','Other kyphosis, cervicothoracic region','Y','0000-00-00 00:00:00'),(121149,10,'M40.292 ','Other kyphosis, cervical region','Y','0000-00-00 00:00:00'),(121148,10,'M40.209 ','Unspecified kyphosis, site unspecified','Y','0000-00-00 00:00:00'),(121147,10,'M40.205 ','Unspecified kyphosis, thoracolumbar region','Y','0000-00-00 00:00:00'),(121146,10,'M40.204 ','Unspecified kyphosis, thoracic region','Y','0000-00-00 00:00:00'),(121145,10,'M40.203 ','Unspecified kyphosis, cervicothoracic region','Y','0000-00-00 00:00:00'),(121144,10,'M40.202 ','Unspecified kyphosis, cervical region','Y','0000-00-00 00:00:00'),(121143,10,'M40.15 ','Other secondary kyphosis, thoracolumbar region','Y','0000-00-00 00:00:00'),(121142,10,'M40.14 ','Other secondary kyphosis, thoracic region','Y','0000-00-00 00:00:00'),(121141,10,'M40.13 ','Other secondary kyphosis, cervicothoracic region','Y','0000-00-00 00:00:00'),(121140,10,'M40.12 ','Other secondary kyphosis, cervical region','Y','0000-00-00 00:00:00'),(121139,10,'M40.10 ','Other secondary kyphosis, site unspecified','Y','0000-00-00 00:00:00'),(121138,10,'M40.05 ','Postural kyphosis, thoracolumbar region','Y','0000-00-00 00:00:00'),(121137,10,'M40.04 ','Postural kyphosis, thoracic region','Y','0000-00-00 00:00:00'),(121136,10,'M40.03 ','Postural kyphosis, cervicothoracic region','Y','0000-00-00 00:00:00'),(121135,10,'M40.00 ','Postural kyphosis, site unspecified','Y','0000-00-00 00:00:00'),(121134,10,'M36.8 ','Systemic disorders of connective tissue in other diseases classified elsewhere','Y','0000-00-00 00:00:00'),(121133,10,'M36.4 ','Arthropathy in hypersensitivity reactions classified elsewhere','Y','0000-00-00 00:00:00'),(121131,10,'M36.2 ','Hemophilic arthropathy','Y','0000-00-00 00:00:00'),(121132,10,'M36.3 ','Arthropathy in other blood disorders','Y','0000-00-00 00:00:00'),(121130,10,'M36.1 ','Arthropathy in neoplastic disease','Y','0000-00-00 00:00:00'),(121129,10,'M36.0 ','Dermato(poly)myositis in neoplastic disease','Y','0000-00-00 00:00:00'),(121128,10,'M35.9 ','Systemic involvement of connective tissue, unspecified','Y','0000-00-00 00:00:00'),(121127,10,'M35.89 ','Other specified systemic involvement of connective tissue','Y','0000-00-00 00:00:00'),(121126,10,'M35.81 ','Multisystem inflammatory syndrome','Y','0000-00-00 00:00:00'),(121125,10,'M35.7 ','Hypermobility syndrome','Y','0000-00-00 00:00:00'),(121124,10,'M35.6 ','Relapsing panniculitis [Weber-Christian]','Y','0000-00-00 00:00:00'),(121123,10,'M35.5 ','Multifocal fibrosclerosis','Y','0000-00-00 00:00:00'),(121122,10,'M35.4 ','Diffuse (eosinophilic) fasciitis','Y','0000-00-00 00:00:00'),(121121,10,'M35.3 ','Polymyalgia rheumatica','Y','0000-00-00 00:00:00'),(121120,10,'M35.2 ','Behcet\'s disease','Y','0000-00-00 00:00:00'),(121119,10,'M35.1 ','Other overlap syndromes','Y','0000-00-00 00:00:00'),(121118,10,'M35.09 ','Sjogren syndrome with other organ involvement','Y','0000-00-00 00:00:00'),(121116,10,'M35.0B ','Sjogren syndrome with vasculitis','Y','0000-00-00 00:00:00'),(121117,10,'M35.0C ','Sjogren syndrome with dental involvement','Y','0000-00-00 00:00:00'),(121115,10,'M35.0A ','Sjogren syndrome with glomerular disease','Y','0000-00-00 00:00:00'),(121114,10,'M35.08 ','Sjogren syndrome with gastrointestinal involvement','Y','0000-00-00 00:00:00'),(121113,10,'M35.07 ','Sjogren syndrome with central nervous system involvement','Y','0000-00-00 00:00:00'),(121112,10,'M35.06 ','Sjogren syndrome with peripheral nervous system involvement','Y','0000-00-00 00:00:00'),(121111,10,'M35.05 ','Sjogren syndrome with inflammatory arthritis','Y','0000-00-00 00:00:00'),(121110,10,'M35.04 ','Sjogren syndrome with tubulo-interstitial nephropathy','Y','0000-00-00 00:00:00'),(121109,10,'M35.03 ','Sjogren syndrome with myopathy','Y','0000-00-00 00:00:00'),(121108,10,'M35.02 ','Sjogren syndrome with lung involvement','Y','0000-00-00 00:00:00'),(121107,10,'M35.01 ','Sjogren syndrome with keratoconjunctivitis','Y','0000-00-00 00:00:00'),(121106,10,'M35.00 ','Sjogren syndrome, unspecified','Y','0000-00-00 00:00:00'),(121105,10,'M34.9 ','Systemic sclerosis, unspecified','Y','0000-00-00 00:00:00'),(121104,10,'M34.89 ','Other systemic sclerosis','Y','0000-00-00 00:00:00'),(121103,10,'M34.83 ','Systemic sclerosis with polyneuropathy','Y','0000-00-00 00:00:00'),(121102,10,'M34.82 ','Systemic sclerosis with myopathy','Y','0000-00-00 00:00:00'),(121101,10,'M34.81 ','Systemic sclerosis with lung involvement','Y','0000-00-00 00:00:00'),(121100,10,'M34.2 ','Systemic sclerosis induced by drug and chemical','Y','0000-00-00 00:00:00'),(121098,10,'M34.0 ','Progressive systemic sclerosis','Y','0000-00-00 00:00:00'),(121099,10,'M34.1 ','CR(E)ST syndrome','Y','0000-00-00 00:00:00'),(121097,10,'M33.99 ','Dermatopolymyositis, unspecified with other organ involvement','Y','0000-00-00 00:00:00'),(121096,10,'M33.93 ','Dermatopolymyositis, unspecified without myopathy','Y','0000-00-00 00:00:00'),(121095,10,'M33.92 ','Dermatopolymyositis, unspecified with myopathy','Y','0000-00-00 00:00:00'),(121094,10,'M33.91 ','Dermatopolymyositis, unspecified with respiratory involvement','Y','0000-00-00 00:00:00'),(121093,10,'M33.90 ','Dermatopolymyositis, unspecified, organ involvement unspecified','Y','0000-00-00 00:00:00'),(121092,10,'M33.29 ','Polymyositis with other organ involvement','Y','0000-00-00 00:00:00'),(121091,10,'M33.22 ','Polymyositis with myopathy','Y','0000-00-00 00:00:00'),(121090,10,'M33.21 ','Polymyositis with respiratory involvement','Y','0000-00-00 00:00:00'),(121089,10,'M33.20 ','Polymyositis, organ involvement unspecified','Y','0000-00-00 00:00:00'),(121088,10,'M33.19 ','Other dermatomyositis with other organ involvement','Y','0000-00-00 00:00:00'),(121087,10,'M33.13 ','Other dermatomyositis without myopathy','Y','0000-00-00 00:00:00'),(121086,10,'M33.12 ','Other dermatomyositis with myopathy','Y','0000-00-00 00:00:00'),(121085,10,'M33.11 ','Other dermatomyositis with respiratory involvement','Y','0000-00-00 00:00:00'),(121084,10,'M33.10 ','Other dermatomyositis, organ involvement unspecified','Y','0000-00-00 00:00:00'),(121082,10,'M33.03 ','Juvenile dermatomyositis without myopathy','Y','0000-00-00 00:00:00'),(121083,10,'M33.09 ','Juvenile dermatomyositis with other organ involvement','Y','0000-00-00 00:00:00'),(121081,10,'M33.02 ','Juvenile dermatomyositis with myopathy','Y','0000-00-00 00:00:00'),(121080,10,'M33.01 ','Juvenile dermatomyositis with respiratory involvement','Y','0000-00-00 00:00:00'),(121079,10,'M33.00 ','Juvenile dermatomyositis, organ involvement unspecified','Y','0000-00-00 00:00:00'),(121077,10,'M32.8 ','Other forms of systemic lupus erythematosus','Y','0000-00-00 00:00:00'),(121078,10,'M32.9 ','Systemic lupus erythematosus, unspecified','Y','0000-00-00 00:00:00'),(121076,10,'M32.19 ','Other organ or system involvement in systemic lupus erythematosus','Y','0000-00-00 00:00:00'),(121075,10,'M32.15 ','Tubulo-interstitial nephropathy in systemic lupus erythematosus','Y','0000-00-00 00:00:00'),(121074,10,'M32.14 ','Glomerular disease in systemic lupus erythematosus','Y','0000-00-00 00:00:00'),(121073,10,'M32.13 ','Lung involvement in systemic lupus erythematosus','Y','0000-00-00 00:00:00'),(121072,10,'M32.12 ','Pericarditis in systemic lupus erythematosus','Y','0000-00-00 00:00:00'),(121071,10,'M32.11 ','Endocarditis in systemic lupus erythematosus','Y','0000-00-00 00:00:00'),(121070,10,'M32.10 ','Systemic lupus erythematosus, organ or system involvement unspecified','Y','0000-00-00 00:00:00'),(121069,10,'M32.0 ','Drug-induced systemic lupus erythematosus','Y','0000-00-00 00:00:00'),(121068,10,'M31.9 ','Necrotizing vasculopathy, unspecified','Y','0000-00-00 00:00:00'),(121067,10,'M31.8 ','Other specified necrotizing vasculopathies','Y','0000-00-00 00:00:00'),(121065,10,'M31.6 ','Other giant cell arteritis','Y','0000-00-00 00:00:00'),(121066,10,'M31.7 ','Microscopic polyangiitis','Y','0000-00-00 00:00:00'),(121064,10,'M31.5 ','Giant cell arteritis with polymyalgia rheumatica','Y','0000-00-00 00:00:00'),(121063,10,'M31.4 ','Aortic arch syndrome [Takayasu]','Y','0000-00-00 00:00:00'),(121062,10,'M31.31 ','Wegener\'s granulomatosis with renal involvement','Y','0000-00-00 00:00:00'),(121060,10,'M31.2 ','Lethal midline granuloma','Y','0000-00-00 00:00:00'),(121061,10,'M31.30 ','Wegener\'s granulomatosis without renal involvement','Y','0000-00-00 00:00:00'),(121059,10,'M31.19 ','Other thrombotic microangiopathy','Y','0000-00-00 00:00:00'),(121058,10,'M31.11 ','Hematopoietic stem cell transplantation-associated thrombotic microangiopathy [HSCT-TMA]','Y','0000-00-00 00:00:00'),(121057,10,'M31.10 ','Thrombotic microangiopathy, unspecified','Y','0000-00-00 00:00:00'),(121056,10,'M31.0 ','Hypersensitivity angiitis','Y','0000-00-00 00:00:00'),(121055,10,'M30.8 ','Other conditions related to polyarteritis nodosa','Y','0000-00-00 00:00:00'),(121054,10,'M30.3 ','Mucocutaneous lymph node syndrome [Kawasaki]','Y','0000-00-00 00:00:00'),(121053,10,'M30.2 ','Juvenile polyarteritis','Y','0000-00-00 00:00:00'),(121052,10,'M30.1 ','Polyarteritis with lung involvement [Churg-Strauss]','Y','0000-00-00 00:00:00'),(121051,10,'M30.0 ','Polyarteritis nodosa','Y','0000-00-00 00:00:00'),(121050,10,'M27.9 ','Disease of jaws, unspecified','Y','0000-00-00 00:00:00'),(121049,10,'M27.8 ','Other specified diseases of jaws','Y','0000-00-00 00:00:00'),(121048,10,'M27.69 ','Other endosseous dental implant failure','Y','0000-00-00 00:00:00'),(121047,10,'M27.63 ','Post-osseointegration mechanical failure of dental implant','Y','0000-00-00 00:00:00'),(121046,10,'M27.62 ','Post-osseointegration biological failure of dental implant','Y','0000-00-00 00:00:00'),(121045,10,'M27.61 ','Osseointegration failure of dental implant','Y','0000-00-00 00:00:00'),(121043,10,'M27.53 ','Endodontic underfill','Y','0000-00-00 00:00:00'),(121044,10,'M27.59 ','Other periradicular pathology associated with previous endodontic treatment','Y','0000-00-00 00:00:00'),(121042,10,'M27.52 ','Endodontic overfill','Y','0000-00-00 00:00:00'),(121041,10,'M27.51 ','Perforation of root canal space due to endodontic treatment','Y','0000-00-00 00:00:00'),(121040,10,'M27.49 ','Other cysts of jaw','Y','0000-00-00 00:00:00'),(121039,10,'M27.40 ','Unspecified cyst of jaw','Y','0000-00-00 00:00:00'),(121038,10,'M27.3 ','Alveolitis of jaws','Y','0000-00-00 00:00:00'),(121037,10,'M27.2 ','Inflammatory conditions of jaws','Y','0000-00-00 00:00:00'),(121036,10,'M27.1 ','Giant cell granuloma, central','Y','0000-00-00 00:00:00'),(121035,10,'M27.0 ','Developmental disorders of jaws','Y','0000-00-00 00:00:00'),(121034,10,'M26.9 ','Dentofacial anomaly, unspecified','Y','0000-00-00 00:00:00'),(121033,10,'M26.89 ','Other dentofacial anomalies','Y','0000-00-00 00:00:00'),(121032,10,'M26.82 ','Posterior soft tissue impingement','Y','0000-00-00 00:00:00'),(121031,10,'M26.81 ','Anterior soft tissue impingement','Y','0000-00-00 00:00:00'),(121029,10,'M26.74 ','Alveolar mandibular hypoplasia','Y','0000-00-00 00:00:00'),(121030,10,'M26.79 ','Other specified alveolar anomalies','Y','0000-00-00 00:00:00'),(121028,10,'M26.73 ','Alveolar maxillary hypoplasia','Y','0000-00-00 00:00:00'),(121027,10,'M26.72 ','Alveolar mandibular hyperplasia','Y','0000-00-00 00:00:00'),(121025,10,'M26.70 ','Unspecified alveolar anomaly','Y','0000-00-00 00:00:00'),(121026,10,'M26.71 ','Alveolar maxillary hyperplasia','Y','0000-00-00 00:00:00'),(121024,10,'M26.69 ','Other specified disorders of temporomandibular joint','Y','0000-00-00 00:00:00'),(121023,10,'M26.659 ','Arthropathy of unspecified temporomandibular joint','Y','0000-00-00 00:00:00'),(121022,10,'M26.653 ','Arthropathy of bilateral temporomandibular joint','Y','0000-00-00 00:00:00'),(121021,10,'M26.652 ','Arthropathy of left temporomandibular joint','Y','0000-00-00 00:00:00'),(121020,10,'M26.651 ','Arthropathy of right temporomandibular joint','Y','0000-00-00 00:00:00'),(121019,10,'M26.649 ','Arthritis of unspecified temporomandibular joint','Y','0000-00-00 00:00:00'),(121018,10,'M26.643 ','Arthritis of bilateral temporomandibular joint','Y','0000-00-00 00:00:00'),(121017,10,'M26.642 ','Arthritis of left temporomandibular joint','Y','0000-00-00 00:00:00'),(121016,10,'M26.641 ','Arthritis of right temporomandibular joint','Y','0000-00-00 00:00:00'),(121015,10,'M26.639 ','Articular disc disorder of temporomandibular joint, unspecified side','Y','0000-00-00 00:00:00'),(121014,10,'M26.633 ','Articular disc disorder of bilateral temporomandibular joint','Y','0000-00-00 00:00:00'),(121013,10,'M26.632 ','Articular disc disorder of left temporomandibular joint','Y','0000-00-00 00:00:00'),(121011,10,'M26.629 ','Arthralgia of temporomandibular joint, unspecified side','Y','0000-00-00 00:00:00'),(121012,10,'M26.631 ','Articular disc disorder of right temporomandibular joint','Y','0000-00-00 00:00:00'),(121010,10,'M26.623 ','Arthralgia of bilateral temporomandibular joint','Y','0000-00-00 00:00:00'),(121008,10,'M26.621 ','Arthralgia of right temporomandibular joint','Y','0000-00-00 00:00:00'),(121009,10,'M26.622 ','Arthralgia of left temporomandibular joint','Y','0000-00-00 00:00:00'),(121007,10,'M26.619 ','Adhesions and ankylosis of temporomandibular joint, unspecified side','Y','0000-00-00 00:00:00'),(121006,10,'M26.613 ','Adhesions and ankylosis of bilateral temporomandibular joint','Y','0000-00-00 00:00:00'),(121005,10,'M26.612 ','Adhesions and ankylosis of left temporomandibular joint','Y','0000-00-00 00:00:00'),(121004,10,'M26.611 ','Adhesions and ankylosis of right temporomandibular joint','Y','0000-00-00 00:00:00'),(121003,10,'M26.609 ','Unspecified temporomandibular joint disorder, unspecified side','Y','0000-00-00 00:00:00'),(121002,10,'M26.603 ','Bilateral temporomandibular joint disorder, unspecified','Y','0000-00-00 00:00:00'),(121001,10,'M26.602 ','Left temporomandibular joint disorder, unspecified','Y','0000-00-00 00:00:00'),(120999,10,'M26.59 ','Other dentofacial functional abnormalities','Y','0000-00-00 00:00:00'),(121000,10,'M26.601 ','Right temporomandibular joint disorder, unspecified','Y','0000-00-00 00:00:00'),(120998,10,'M26.57 ','Lack of posterior occlusal support','Y','0000-00-00 00:00:00'),(120997,10,'M26.56 ','Non-working side interference','Y','0000-00-00 00:00:00'),(120995,10,'M26.54 ','Insufficient anterior guidance','Y','0000-00-00 00:00:00'),(120996,10,'M26.55 ','Centric occlusion maximum intercuspation discrepancy','Y','0000-00-00 00:00:00'),(120994,10,'M26.53 ','Deviation in opening and closing of the mandible','Y','0000-00-00 00:00:00'),(120993,10,'M26.52 ','Limited mandibular range of motion','Y','0000-00-00 00:00:00'),(120992,10,'M26.51 ','Abnormal jaw closure','Y','0000-00-00 00:00:00'),(120990,10,'M26.4 ','Malocclusion, unspecified','Y','0000-00-00 00:00:00'),(120991,10,'M26.50 ','Dentofacial functional abnormalities, unspecified','Y','0000-00-00 00:00:00'),(120989,10,'M26.39 ','Other anomalies of tooth position of fully erupted tooth or teeth','Y','0000-00-00 00:00:00'),(120988,10,'M26.37 ','Excessive interocclusal distance of fully erupted teeth','Y','0000-00-00 00:00:00'),(120986,10,'M26.35 ','Rotation of fully erupted tooth or teeth','Y','0000-00-00 00:00:00'),(120987,10,'M26.36 ','Insufficient interocclusal distance of fully erupted teeth (ridge)','Y','0000-00-00 00:00:00'),(120985,10,'M26.34 ','Vertical displacement of fully erupted tooth or teeth','Y','0000-00-00 00:00:00'),(120983,10,'M26.32 ','Excessive spacing of fully erupted teeth','Y','0000-00-00 00:00:00'),(120984,10,'M26.33 ','Horizontal displacement of fully erupted tooth or teeth','Y','0000-00-00 00:00:00'),(120982,10,'M26.31 ','Crowding of fully erupted teeth','Y','0000-00-00 00:00:00'),(120981,10,'M26.30 ','Unspecified anomaly of tooth position of fully erupted tooth or teeth','Y','0000-00-00 00:00:00'),(120979,10,'M26.25 ','Anomalies of interarch distance','Y','0000-00-00 00:00:00'),(120980,10,'M26.29 ','Other anomalies of dental arch relationship','Y','0000-00-00 00:00:00'),(120978,10,'M26.24 ','Reverse articulation','Y','0000-00-00 00:00:00'),(120976,10,'M26.221 ','Open posterior occlusal relationship','Y','0000-00-00 00:00:00'),(120977,10,'M26.23 ','Excessive horizontal overlap','Y','0000-00-00 00:00:00'),(120975,10,'M26.220 ','Open anterior occlusal relationship','Y','0000-00-00 00:00:00'),(120973,10,'M26.213 ','Malocclusion, Angle\'s class III','Y','0000-00-00 00:00:00'),(120974,10,'M26.219 ','Malocclusion, Angle\'s class, unspecified','Y','0000-00-00 00:00:00'),(120972,10,'M26.212 ','Malocclusion, Angle\'s class II','Y','0000-00-00 00:00:00'),(120970,10,'M26.20 ','Unspecified anomaly of dental arch relationship','Y','0000-00-00 00:00:00'),(120971,10,'M26.211 ','Malocclusion, Angle\'s class I','Y','0000-00-00 00:00:00'),(120969,10,'M26.19 ','Other specified anomalies of jaw-cranial base relationship','Y','0000-00-00 00:00:00'),(120967,10,'M26.11 ','Maxillary asymmetry','Y','0000-00-00 00:00:00'),(120968,10,'M26.12 ','Other jaw asymmetry','Y','0000-00-00 00:00:00'),(120966,10,'M26.10 ','Unspecified anomaly of jaw-cranial base relationship','Y','0000-00-00 00:00:00'),(120965,10,'M26.09 ','Other specified anomalies of jaw size','Y','0000-00-00 00:00:00'),(120962,10,'M26.05 ','Macrogenia','Y','0000-00-00 00:00:00'),(120963,10,'M26.06 ','Microgenia','Y','0000-00-00 00:00:00'),(120964,10,'M26.07 ','Excessive tuberosity of jaw','Y','0000-00-00 00:00:00'),(120960,10,'M26.03 ','Mandibular hyperplasia','Y','0000-00-00 00:00:00'),(120961,10,'M26.04 ','Mandibular hypoplasia','Y','0000-00-00 00:00:00'),(120958,10,'M26.01 ','Maxillary hyperplasia','Y','0000-00-00 00:00:00'),(120959,10,'M26.02 ','Maxillary hypoplasia','Y','0000-00-00 00:00:00'),(120956,10,'M25.9 ','Joint disorder, unspecified','Y','0000-00-00 00:00:00'),(120957,10,'M26.00 ','Unspecified anomaly of jaw size','Y','0000-00-00 00:00:00'),(120955,10,'M25.879 ','Other specified joint disorders, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(120953,10,'M25.871 ','Other specified joint disorders, right ankle and foot','Y','0000-00-00 00:00:00'),(120954,10,'M25.872 ','Other specified joint disorders, left ankle and foot','Y','0000-00-00 00:00:00'),(120952,10,'M25.869 ','Other specified joint disorders, unspecified knee','Y','0000-00-00 00:00:00'),(120951,10,'M25.862 ','Other specified joint disorders, left knee','Y','0000-00-00 00:00:00'),(120949,10,'M25.859 ','Other specified joint disorders, unspecified hip','Y','0000-00-00 00:00:00'),(120950,10,'M25.861 ','Other specified joint disorders, right knee','Y','0000-00-00 00:00:00'),(120948,10,'M25.852 ','Other specified joint disorders, left hip','Y','0000-00-00 00:00:00'),(120946,10,'M25.849 ','Other specified joint disorders, unspecified hand','Y','0000-00-00 00:00:00'),(120947,10,'M25.851 ','Other specified joint disorders, right hip','Y','0000-00-00 00:00:00'),(120945,10,'M25.842 ','Other specified joint disorders, left hand','Y','0000-00-00 00:00:00'),(120944,10,'M25.841 ','Other specified joint disorders, right hand','Y','0000-00-00 00:00:00'),(120942,10,'M25.832 ','Other specified joint disorders, left wrist','Y','0000-00-00 00:00:00'),(120943,10,'M25.839 ','Other specified joint disorders, unspecified wrist','Y','0000-00-00 00:00:00'),(120941,10,'M25.831 ','Other specified joint disorders, right wrist','Y','0000-00-00 00:00:00'),(120940,10,'M25.829 ','Other specified joint disorders, unspecified elbow','Y','0000-00-00 00:00:00'),(120938,10,'M25.821 ','Other specified joint disorders, right elbow','Y','0000-00-00 00:00:00'),(120939,10,'M25.822 ','Other specified joint disorders, left elbow','Y','0000-00-00 00:00:00'),(120937,10,'M25.819 ','Other specified joint disorders, unspecified shoulder','Y','0000-00-00 00:00:00'),(120936,10,'M25.812 ','Other specified joint disorders, left shoulder','Y','0000-00-00 00:00:00'),(120935,10,'M25.811 ','Other specified joint disorders, right shoulder','Y','0000-00-00 00:00:00'),(120934,10,'M25.80 ','Other specified joint disorders, unspecified joint','Y','0000-00-00 00:00:00'),(120932,10,'M25.776 ','Osteophyte, unspecified foot','Y','0000-00-00 00:00:00'),(120933,10,'M25.78 ','Osteophyte, vertebrae','Y','0000-00-00 00:00:00'),(120931,10,'M25.775 ','Osteophyte, left foot','Y','0000-00-00 00:00:00'),(120930,10,'M25.774 ','Osteophyte, right foot','Y','0000-00-00 00:00:00'),(120928,10,'M25.772 ','Osteophyte, left ankle','Y','0000-00-00 00:00:00'),(120929,10,'M25.773 ','Osteophyte, unspecified ankle','Y','0000-00-00 00:00:00'),(120927,10,'M25.771 ','Osteophyte, right ankle','Y','0000-00-00 00:00:00'),(120926,10,'M25.769 ','Osteophyte, unspecified knee','Y','0000-00-00 00:00:00'),(120925,10,'M25.762 ','Osteophyte, left knee','Y','0000-00-00 00:00:00'),(120923,10,'M25.759 ','Osteophyte, unspecified hip','Y','0000-00-00 00:00:00'),(120924,10,'M25.761 ','Osteophyte, right knee','Y','0000-00-00 00:00:00'),(120922,10,'M25.752 ','Osteophyte, left hip','Y','0000-00-00 00:00:00'),(120921,10,'M25.751 ','Osteophyte, right hip','Y','0000-00-00 00:00:00'),(120920,10,'M25.749 ','Osteophyte, unspecified hand','Y','0000-00-00 00:00:00'),(120919,10,'M25.742 ','Osteophyte, left hand','Y','0000-00-00 00:00:00'),(120918,10,'M25.741 ','Osteophyte, right hand','Y','0000-00-00 00:00:00'),(120917,10,'M25.739 ','Osteophyte, unspecified wrist','Y','0000-00-00 00:00:00'),(120916,10,'M25.732 ','Osteophyte, left wrist','Y','0000-00-00 00:00:00'),(120914,10,'M25.729 ','Osteophyte, unspecified elbow','Y','0000-00-00 00:00:00'),(120915,10,'M25.731 ','Osteophyte, right wrist','Y','0000-00-00 00:00:00'),(120912,10,'M25.721 ','Osteophyte, right elbow','Y','0000-00-00 00:00:00'),(120913,10,'M25.722 ','Osteophyte, left elbow','Y','0000-00-00 00:00:00'),(120911,10,'M25.719 ','Osteophyte, unspecified shoulder','Y','0000-00-00 00:00:00'),(120910,10,'M25.712 ','Osteophyte, left shoulder','Y','0000-00-00 00:00:00'),(120908,10,'M25.70 ','Osteophyte, unspecified joint','Y','0000-00-00 00:00:00'),(120909,10,'M25.711 ','Osteophyte, right shoulder','Y','0000-00-00 00:00:00'),(120907,10,'M25.69 ','Stiffness of other specified joint, not elsewhere classified','Y','0000-00-00 00:00:00'),(120906,10,'M25.676 ','Stiffness of unspecified foot, not elsewhere classified','Y','0000-00-00 00:00:00'),(120905,10,'M25.675 ','Stiffness of left foot, not elsewhere classified','Y','0000-00-00 00:00:00'),(120904,10,'M25.674 ','Stiffness of right foot, not elsewhere classified','Y','0000-00-00 00:00:00'),(120903,10,'M25.673 ','Stiffness of unspecified ankle, not elsewhere classified','Y','0000-00-00 00:00:00'),(120902,10,'M25.672 ','Stiffness of left ankle, not elsewhere classified','Y','0000-00-00 00:00:00'),(120901,10,'M25.671 ','Stiffness of right ankle, not elsewhere classified','Y','0000-00-00 00:00:00'),(120900,10,'M25.669 ','Stiffness of unspecified knee, not elsewhere classified','Y','0000-00-00 00:00:00'),(120899,10,'M25.662 ','Stiffness of left knee, not elsewhere classified','Y','0000-00-00 00:00:00'),(120898,10,'M25.661 ','Stiffness of right knee, not elsewhere classified','Y','0000-00-00 00:00:00'),(120897,10,'M25.659 ','Stiffness of unspecified hip, not elsewhere classified','Y','0000-00-00 00:00:00'),(120896,10,'M25.652 ','Stiffness of left hip, not elsewhere classified','Y','0000-00-00 00:00:00'),(120894,10,'M25.649 ','Stiffness of unspecified hand, not elsewhere classified','Y','0000-00-00 00:00:00'),(120895,10,'M25.651 ','Stiffness of right hip, not elsewhere classified','Y','0000-00-00 00:00:00'),(120893,10,'M25.642 ','Stiffness of left hand, not elsewhere classified','Y','0000-00-00 00:00:00'),(120892,10,'M25.641 ','Stiffness of right hand, not elsewhere classified','Y','0000-00-00 00:00:00'),(120890,10,'M25.632 ','Stiffness of left wrist, not elsewhere classified','Y','0000-00-00 00:00:00'),(120891,10,'M25.639 ','Stiffness of unspecified wrist, not elsewhere classified','Y','0000-00-00 00:00:00'),(120889,10,'M25.631 ','Stiffness of right wrist, not elsewhere classified','Y','0000-00-00 00:00:00'),(120888,10,'M25.629 ','Stiffness of unspecified elbow, not elsewhere classified','Y','0000-00-00 00:00:00'),(120887,10,'M25.622 ','Stiffness of left elbow, not elsewhere classified','Y','0000-00-00 00:00:00'),(120886,10,'M25.621 ','Stiffness of right elbow, not elsewhere classified','Y','0000-00-00 00:00:00'),(120885,10,'M25.619 ','Stiffness of unspecified shoulder, not elsewhere classified','Y','0000-00-00 00:00:00'),(120884,10,'M25.612 ','Stiffness of left shoulder, not elsewhere classified','Y','0000-00-00 00:00:00'),(120883,10,'M25.611 ','Stiffness of right shoulder, not elsewhere classified','Y','0000-00-00 00:00:00'),(120881,10,'M25.59 ','Pain in other specified joint','Y','0000-00-00 00:00:00'),(120882,10,'M25.60 ','Stiffness of unspecified joint, not elsewhere classified','Y','0000-00-00 00:00:00'),(120880,10,'M25.579 ','Pain in unspecified ankle and joints of unspecified foot','Y','0000-00-00 00:00:00'),(120879,10,'M25.572 ','Pain in left ankle and joints of left foot','Y','0000-00-00 00:00:00'),(120878,10,'M25.571 ','Pain in right ankle and joints of right foot','Y','0000-00-00 00:00:00'),(120876,10,'M25.562 ','Pain in left knee','Y','0000-00-00 00:00:00'),(120877,10,'M25.569 ','Pain in unspecified knee','Y','0000-00-00 00:00:00'),(120875,10,'M25.561 ','Pain in right knee','Y','0000-00-00 00:00:00'),(120873,10,'M25.552 ','Pain in left hip','Y','0000-00-00 00:00:00'),(120874,10,'M25.559 ','Pain in unspecified hip','Y','0000-00-00 00:00:00'),(120872,10,'M25.551 ','Pain in right hip','Y','0000-00-00 00:00:00'),(120870,10,'M25.542 ','Pain in joints of left hand','Y','0000-00-00 00:00:00'),(120871,10,'M25.549 ','Pain in joints of unspecified hand','Y','0000-00-00 00:00:00'),(120869,10,'M25.541 ','Pain in joints of right hand','Y','0000-00-00 00:00:00'),(120867,10,'M25.532 ','Pain in left wrist','Y','0000-00-00 00:00:00'),(120868,10,'M25.539 ','Pain in unspecified wrist','Y','0000-00-00 00:00:00'),(120866,10,'M25.531 ','Pain in right wrist','Y','0000-00-00 00:00:00'),(120864,10,'M25.522 ','Pain in left elbow','Y','0000-00-00 00:00:00'),(120865,10,'M25.529 ','Pain in unspecified elbow','Y','0000-00-00 00:00:00'),(120863,10,'M25.521 ','Pain in right elbow','Y','0000-00-00 00:00:00'),(120861,10,'M25.512 ','Pain in left shoulder','Y','0000-00-00 00:00:00'),(120862,10,'M25.519 ','Pain in unspecified shoulder','Y','0000-00-00 00:00:00'),(120860,10,'M25.511 ','Pain in right shoulder','Y','0000-00-00 00:00:00'),(120859,10,'M25.50 ','Pain in unspecified joint','Y','0000-00-00 00:00:00'),(120857,10,'M25.476 ','Effusion, unspecified foot','Y','0000-00-00 00:00:00'),(120858,10,'M25.48 ','Effusion, other site','Y','0000-00-00 00:00:00'),(120856,10,'M25.475 ','Effusion, left foot','Y','0000-00-00 00:00:00'),(120855,10,'M25.474 ','Effusion, right foot','Y','0000-00-00 00:00:00'),(120854,10,'M25.473 ','Effusion, unspecified ankle','Y','0000-00-00 00:00:00'),(120853,10,'M25.472 ','Effusion, left ankle','Y','0000-00-00 00:00:00'),(120852,10,'M25.471 ','Effusion, right ankle','Y','0000-00-00 00:00:00'),(120851,10,'M25.469 ','Effusion, unspecified knee','Y','0000-00-00 00:00:00'),(120850,10,'M25.462 ','Effusion, left knee','Y','0000-00-00 00:00:00'),(120848,10,'M25.459 ','Effusion, unspecified hip','Y','0000-00-00 00:00:00'),(120849,10,'M25.461 ','Effusion, right knee','Y','0000-00-00 00:00:00'),(120846,10,'M25.451 ','Effusion, right hip','Y','0000-00-00 00:00:00'),(120847,10,'M25.452 ','Effusion, left hip','Y','0000-00-00 00:00:00'),(120844,10,'M25.442 ','Effusion, left hand','Y','0000-00-00 00:00:00'),(120845,10,'M25.449 ','Effusion, unspecified hand','Y','0000-00-00 00:00:00'),(120842,10,'M25.439 ','Effusion, unspecified wrist','Y','0000-00-00 00:00:00'),(120843,10,'M25.441 ','Effusion, right hand','Y','0000-00-00 00:00:00'),(120840,10,'M25.431 ','Effusion, right wrist','Y','0000-00-00 00:00:00'),(120841,10,'M25.432 ','Effusion, left wrist','Y','0000-00-00 00:00:00'),(120838,10,'M25.422 ','Effusion, left elbow','Y','0000-00-00 00:00:00'),(120839,10,'M25.429 ','Effusion, unspecified elbow','Y','0000-00-00 00:00:00'),(120836,10,'M25.419 ','Effusion, unspecified shoulder','Y','0000-00-00 00:00:00'),(120837,10,'M25.421 ','Effusion, right elbow','Y','0000-00-00 00:00:00'),(120834,10,'M25.411 ','Effusion, right shoulder','Y','0000-00-00 00:00:00'),(120835,10,'M25.412 ','Effusion, left shoulder','Y','0000-00-00 00:00:00'),(120833,10,'M25.40 ','Effusion, unspecified joint','Y','0000-00-00 00:00:00'),(120831,10,'M25.376 ','Other instability, unspecified foot','Y','0000-00-00 00:00:00'),(120832,10,'M25.39 ','Other instability, other specified joint','Y','0000-00-00 00:00:00'),(120830,10,'M25.375 ','Other instability, left foot','Y','0000-00-00 00:00:00'),(120828,10,'M25.373 ','Other instability, unspecified ankle','Y','0000-00-00 00:00:00'),(120829,10,'M25.374 ','Other instability, right foot','Y','0000-00-00 00:00:00'),(120827,10,'M25.372 ','Other instability, left ankle','Y','0000-00-00 00:00:00'),(120825,10,'M25.369 ','Other instability, unspecified knee','Y','0000-00-00 00:00:00'),(120826,10,'M25.371 ','Other instability, right ankle','Y','0000-00-00 00:00:00'),(120824,10,'M25.362 ','Other instability, left knee','Y','0000-00-00 00:00:00'),(120822,10,'M25.359 ','Other instability, unspecified hip','Y','0000-00-00 00:00:00'),(120823,10,'M25.361 ','Other instability, right knee','Y','0000-00-00 00:00:00'),(120821,10,'M25.352 ','Other instability, left hip','Y','0000-00-00 00:00:00'),(120819,10,'M25.349 ','Other instability, unspecified hand','Y','0000-00-00 00:00:00'),(120820,10,'M25.351 ','Other instability, right hip','Y','0000-00-00 00:00:00'),(120817,10,'M25.341 ','Other instability, right hand','Y','0000-00-00 00:00:00'),(120818,10,'M25.342 ','Other instability, left hand','Y','0000-00-00 00:00:00'),(120816,10,'M25.339 ','Other instability, unspecified wrist','Y','0000-00-00 00:00:00'),(120814,10,'M25.331 ','Other instability, right wrist','Y','0000-00-00 00:00:00'),(120815,10,'M25.332 ','Other instability, left wrist','Y','0000-00-00 00:00:00'),(120813,10,'M25.329 ','Other instability, unspecified elbow','Y','0000-00-00 00:00:00'),(120811,10,'M25.321 ','Other instability, right elbow','Y','0000-00-00 00:00:00'),(120812,10,'M25.322 ','Other instability, left elbow','Y','0000-00-00 00:00:00'),(120810,10,'M25.319 ','Other instability, unspecified shoulder','Y','0000-00-00 00:00:00'),(120809,10,'M25.312 ','Other instability, left shoulder','Y','0000-00-00 00:00:00'),(120807,10,'M25.30 ','Other instability, unspecified joint','Y','0000-00-00 00:00:00'),(120808,10,'M25.311 ','Other instability, right shoulder','Y','0000-00-00 00:00:00'),(120806,10,'M25.28 ','Flail joint, other site','Y','0000-00-00 00:00:00'),(120805,10,'M25.279 ','Flail joint, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(120803,10,'M25.271 ','Flail joint, right ankle and foot','Y','0000-00-00 00:00:00'),(120804,10,'M25.272 ','Flail joint, left ankle and foot','Y','0000-00-00 00:00:00'),(120802,10,'M25.269 ','Flail joint, unspecified knee','Y','0000-00-00 00:00:00'),(120800,10,'M25.261 ','Flail joint, right knee','Y','0000-00-00 00:00:00'),(120801,10,'M25.262 ','Flail joint, left knee','Y','0000-00-00 00:00:00'),(120799,10,'M25.259 ','Flail joint, unspecified hip','Y','0000-00-00 00:00:00'),(120797,10,'M25.251 ','Flail joint, right hip','Y','0000-00-00 00:00:00'),(120798,10,'M25.252 ','Flail joint, left hip','Y','0000-00-00 00:00:00'),(120796,10,'M25.249 ','Flail joint, unspecified hand','Y','0000-00-00 00:00:00'),(120795,10,'M25.242 ','Flail joint, left hand','Y','0000-00-00 00:00:00'),(120794,10,'M25.241 ','Flail joint, right hand','Y','0000-00-00 00:00:00'),(120792,10,'M25.232 ','Flail joint, left wrist','Y','0000-00-00 00:00:00'),(120793,10,'M25.239 ','Flail joint, unspecified wrist','Y','0000-00-00 00:00:00'),(120791,10,'M25.231 ','Flail joint, right wrist','Y','0000-00-00 00:00:00'),(120789,10,'M25.222 ','Flail joint, left elbow','Y','0000-00-00 00:00:00'),(120790,10,'M25.229 ','Flail joint, unspecified elbow','Y','0000-00-00 00:00:00'),(120788,10,'M25.221 ','Flail joint, right elbow','Y','0000-00-00 00:00:00'),(120786,10,'M25.212 ','Flail joint, left shoulder','Y','0000-00-00 00:00:00'),(120787,10,'M25.219 ','Flail joint, unspecified shoulder','Y','0000-00-00 00:00:00'),(120785,10,'M25.211 ','Flail joint, right shoulder','Y','0000-00-00 00:00:00'),(120784,10,'M25.20 ','Flail joint, unspecified joint','Y','0000-00-00 00:00:00'),(120783,10,'M25.18 ','Fistula, other specified site','Y','0000-00-00 00:00:00'),(120782,10,'M25.176 ','Fistula, unspecified foot','Y','0000-00-00 00:00:00'),(120781,10,'M25.175 ','Fistula, left foot','Y','0000-00-00 00:00:00'),(120779,10,'M25.173 ','Fistula, unspecified ankle','Y','0000-00-00 00:00:00'),(120780,10,'M25.174 ','Fistula, right foot','Y','0000-00-00 00:00:00'),(120778,10,'M25.172 ','Fistula, left ankle','Y','0000-00-00 00:00:00'),(120777,10,'M25.171 ','Fistula, right ankle','Y','0000-00-00 00:00:00'),(120776,10,'M25.169 ','Fistula, unspecified knee','Y','0000-00-00 00:00:00'),(120775,10,'M25.162 ','Fistula, left knee','Y','0000-00-00 00:00:00'),(120774,10,'M25.161 ','Fistula, right knee','Y','0000-00-00 00:00:00'),(120773,10,'M25.159 ','Fistula, unspecified hip','Y','0000-00-00 00:00:00'),(120772,10,'M25.152 ','Fistula, left hip','Y','0000-00-00 00:00:00'),(120770,10,'M25.149 ','Fistula, unspecified hand','Y','0000-00-00 00:00:00'),(120771,10,'M25.151 ','Fistula, right hip','Y','0000-00-00 00:00:00'),(120768,10,'M25.141 ','Fistula, right hand','Y','0000-00-00 00:00:00'),(120769,10,'M25.142 ','Fistula, left hand','Y','0000-00-00 00:00:00'),(120766,10,'M25.132 ','Fistula, left wrist','Y','0000-00-00 00:00:00'),(120767,10,'M25.139 ','Fistula, unspecified wrist','Y','0000-00-00 00:00:00'),(120764,10,'M25.129 ','Fistula, unspecified elbow','Y','0000-00-00 00:00:00'),(120765,10,'M25.131 ','Fistula, right wrist','Y','0000-00-00 00:00:00'),(120762,10,'M25.121 ','Fistula, right elbow','Y','0000-00-00 00:00:00'),(120763,10,'M25.122 ','Fistula, left elbow','Y','0000-00-00 00:00:00'),(120761,10,'M25.119 ','Fistula, unspecified shoulder','Y','0000-00-00 00:00:00'),(120759,10,'M25.111 ','Fistula, right shoulder','Y','0000-00-00 00:00:00'),(120760,10,'M25.112 ','Fistula, left shoulder','Y','0000-00-00 00:00:00'),(120758,10,'M25.10 ','Fistula, unspecified joint','Y','0000-00-00 00:00:00'),(120756,10,'M25.076 ','Hemarthrosis, unspecified foot','Y','0000-00-00 00:00:00'),(120757,10,'M25.08 ','Hemarthrosis, other specified site','Y','0000-00-00 00:00:00'),(120754,10,'M25.074 ','Hemarthrosis, right foot','Y','0000-00-00 00:00:00'),(120755,10,'M25.075 ','Hemarthrosis, left foot','Y','0000-00-00 00:00:00'),(120753,10,'M25.073 ','Hemarthrosis, unspecified ankle','Y','0000-00-00 00:00:00'),(120751,10,'M25.071 ','Hemarthrosis, right ankle','Y','0000-00-00 00:00:00'),(120752,10,'M25.072 ','Hemarthrosis, left ankle','Y','0000-00-00 00:00:00'),(120750,10,'M25.069 ','Hemarthrosis, unspecified knee','Y','0000-00-00 00:00:00'),(120748,10,'M25.061 ','Hemarthrosis, right knee','Y','0000-00-00 00:00:00'),(120749,10,'M25.062 ','Hemarthrosis, left knee','Y','0000-00-00 00:00:00'),(120747,10,'M25.059 ','Hemarthrosis, unspecified hip','Y','0000-00-00 00:00:00'),(120746,10,'M25.052 ','Hemarthrosis, left hip','Y','0000-00-00 00:00:00'),(120744,10,'M25.049 ','Hemarthrosis, unspecified hand','Y','0000-00-00 00:00:00'),(120745,10,'M25.051 ','Hemarthrosis, right hip','Y','0000-00-00 00:00:00'),(120743,10,'M25.042 ','Hemarthrosis, left hand','Y','0000-00-00 00:00:00'),(120741,10,'M25.039 ','Hemarthrosis, unspecified wrist','Y','0000-00-00 00:00:00'),(120742,10,'M25.041 ','Hemarthrosis, right hand','Y','0000-00-00 00:00:00'),(120740,10,'M25.032 ','Hemarthrosis, left wrist','Y','0000-00-00 00:00:00'),(120738,10,'M25.029 ','Hemarthrosis, unspecified elbow','Y','0000-00-00 00:00:00'),(120739,10,'M25.031 ','Hemarthrosis, right wrist','Y','0000-00-00 00:00:00'),(120737,10,'M25.022 ','Hemarthrosis, left elbow','Y','0000-00-00 00:00:00'),(120735,10,'M25.019 ','Hemarthrosis, unspecified shoulder','Y','0000-00-00 00:00:00'),(120736,10,'M25.021 ','Hemarthrosis, right elbow','Y','0000-00-00 00:00:00'),(120734,10,'M25.012 ','Hemarthrosis, left shoulder','Y','0000-00-00 00:00:00'),(120732,10,'M25.00 ','Hemarthrosis, unspecified joint','Y','0000-00-00 00:00:00'),(120733,10,'M25.011 ','Hemarthrosis, right shoulder','Y','0000-00-00 00:00:00'),(120731,10,'M24.9 ','Joint derangement, unspecified','Y','0000-00-00 00:00:00'),(120730,10,'M24.89 ','Other specific joint derangement of other specified joint, not elsewhere classified','Y','0000-00-00 00:00:00'),(120729,10,'M24.876 ','Other specific joint derangements of unspecified foot, not elsewhere classified','Y','0000-00-00 00:00:00'),(120728,10,'M24.875 ','Other specific joint derangements left foot, not elsewhere classified','Y','0000-00-00 00:00:00'),(120727,10,'M24.874 ','Other specific joint derangements of right foot, not elsewhere classified','Y','0000-00-00 00:00:00'),(120726,10,'M24.873 ','Other specific joint derangements of unspecified ankle, not elsewhere classified','Y','0000-00-00 00:00:00'),(120725,10,'M24.872 ','Other specific joint derangements of left ankle, not elsewhere classified','Y','0000-00-00 00:00:00'),(120724,10,'M24.871 ','Other specific joint derangements of right ankle, not elsewhere classified','Y','0000-00-00 00:00:00'),(120723,10,'M24.859 ','Other specific joint derangements of unspecified hip, not elsewhere classified','Y','0000-00-00 00:00:00'),(120722,10,'M24.852 ','Other specific joint derangements of left hip, not elsewhere classified','Y','0000-00-00 00:00:00'),(120721,10,'M24.851 ','Other specific joint derangements of right hip, not elsewhere classified','Y','0000-00-00 00:00:00'),(120720,10,'M24.849 ','Other specific joint derangements of unspecified hand, not elsewhere classified','Y','0000-00-00 00:00:00'),(120719,10,'M24.842 ','Other specific joint derangements of left hand, not elsewhere classified','Y','0000-00-00 00:00:00'),(120718,10,'M24.841 ','Other specific joint derangements of right hand, not elsewhere classified','Y','0000-00-00 00:00:00'),(120717,10,'M24.839 ','Other specific joint derangements of unspecified wrist, not elsewhere classified','Y','0000-00-00 00:00:00'),(120716,10,'M24.832 ','Other specific joint derangements of left wrist, not elsewhere classified','Y','0000-00-00 00:00:00'),(120715,10,'M24.831 ','Other specific joint derangements of right wrist, not elsewhere classified','Y','0000-00-00 00:00:00'),(120714,10,'M24.829 ','Other specific joint derangements of unspecified elbow, not elsewhere classified','Y','0000-00-00 00:00:00'),(120713,10,'M24.822 ','Other specific joint derangements of left elbow, not elsewhere classified','Y','0000-00-00 00:00:00'),(120712,10,'M24.821 ','Other specific joint derangements of right elbow, not elsewhere classified','Y','0000-00-00 00:00:00'),(120711,10,'M24.819 ','Other specific joint derangements of unspecified shoulder, not elsewhere classified','Y','0000-00-00 00:00:00'),(120710,10,'M24.812 ','Other specific joint derangements of left shoulder, not elsewhere classified','Y','0000-00-00 00:00:00'),(120709,10,'M24.811 ','Other specific joint derangements of right shoulder, not elsewhere classified','Y','0000-00-00 00:00:00'),(120707,10,'M24.7 ','Protrusio acetabuli','Y','0000-00-00 00:00:00'),(120708,10,'M24.80 ','Other specific joint derangements of unspecified joint, not elsewhere classified','Y','0000-00-00 00:00:00'),(120706,10,'M24.69 ','Ankylosis, other specified joint','Y','0000-00-00 00:00:00'),(120705,10,'M24.676 ','Ankylosis, unspecified foot','Y','0000-00-00 00:00:00'),(120703,10,'M24.674 ','Ankylosis, right foot','Y','0000-00-00 00:00:00'),(120704,10,'M24.675 ','Ankylosis, left foot','Y','0000-00-00 00:00:00'),(120701,10,'M24.672 ','Ankylosis, left ankle','Y','0000-00-00 00:00:00'),(120702,10,'M24.673 ','Ankylosis, unspecified ankle','Y','0000-00-00 00:00:00'),(120699,10,'M24.669 ','Ankylosis, unspecified knee','Y','0000-00-00 00:00:00'),(120700,10,'M24.671 ','Ankylosis, right ankle','Y','0000-00-00 00:00:00'),(120697,10,'M24.661 ','Ankylosis, right knee','Y','0000-00-00 00:00:00'),(120698,10,'M24.662 ','Ankylosis, left knee','Y','0000-00-00 00:00:00'),(120695,10,'M24.652 ','Ankylosis, left hip','Y','0000-00-00 00:00:00'),(120696,10,'M24.659 ','Ankylosis, unspecified hip','Y','0000-00-00 00:00:00'),(120693,10,'M24.649 ','Ankylosis, unspecified hand','Y','0000-00-00 00:00:00'),(120694,10,'M24.651 ','Ankylosis, right hip','Y','0000-00-00 00:00:00'),(120691,10,'M24.641 ','Ankylosis, right hand','Y','0000-00-00 00:00:00'),(120692,10,'M24.642 ','Ankylosis, left hand','Y','0000-00-00 00:00:00'),(120690,10,'M24.639 ','Ankylosis, unspecified wrist','Y','0000-00-00 00:00:00'),(120688,10,'M24.631 ','Ankylosis, right wrist','Y','0000-00-00 00:00:00'),(120689,10,'M24.632 ','Ankylosis, left wrist','Y','0000-00-00 00:00:00'),(120687,10,'M24.629 ','Ankylosis, unspecified elbow','Y','0000-00-00 00:00:00'),(120686,10,'M24.622 ','Ankylosis, left elbow','Y','0000-00-00 00:00:00'),(120684,10,'M24.619 ','Ankylosis, unspecified shoulder','Y','0000-00-00 00:00:00'),(120685,10,'M24.621 ','Ankylosis, right elbow','Y','0000-00-00 00:00:00'),(120683,10,'M24.612 ','Ankylosis, left shoulder','Y','0000-00-00 00:00:00'),(120681,10,'M24.60 ','Ankylosis, unspecified joint','Y','0000-00-00 00:00:00'),(120682,10,'M24.611 ','Ankylosis, right shoulder','Y','0000-00-00 00:00:00'),(120680,10,'M24.59 ','Contracture, other specified joint','Y','0000-00-00 00:00:00'),(120679,10,'M24.576 ','Contracture, unspecified foot','Y','0000-00-00 00:00:00'),(120678,10,'M24.575 ','Contracture, left foot','Y','0000-00-00 00:00:00'),(120676,10,'M24.573 ','Contracture, unspecified ankle','Y','0000-00-00 00:00:00'),(120677,10,'M24.574 ','Contracture, right foot','Y','0000-00-00 00:00:00'),(120675,10,'M24.572 ','Contracture, left ankle','Y','0000-00-00 00:00:00'),(120673,10,'M24.569 ','Contracture, unspecified knee','Y','0000-00-00 00:00:00'),(120674,10,'M24.571 ','Contracture, right ankle','Y','0000-00-00 00:00:00'),(120672,10,'M24.562 ','Contracture, left knee','Y','0000-00-00 00:00:00'),(120670,10,'M24.559 ','Contracture, unspecified hip','Y','0000-00-00 00:00:00'),(120671,10,'M24.561 ','Contracture, right knee','Y','0000-00-00 00:00:00'),(120669,10,'M24.552 ','Contracture, left hip','Y','0000-00-00 00:00:00'),(120667,10,'M24.549 ','Contracture, unspecified hand','Y','0000-00-00 00:00:00'),(120668,10,'M24.551 ','Contracture, right hip','Y','0000-00-00 00:00:00'),(120666,10,'M24.542 ','Contracture, left hand','Y','0000-00-00 00:00:00'),(120665,10,'M24.541 ','Contracture, right hand','Y','0000-00-00 00:00:00'),(120663,10,'M24.532 ','Contracture, left wrist','Y','0000-00-00 00:00:00'),(120664,10,'M24.539 ','Contracture, unspecified wrist','Y','0000-00-00 00:00:00'),(120662,10,'M24.531 ','Contracture, right wrist','Y','0000-00-00 00:00:00'),(120661,10,'M24.529 ','Contracture, unspecified elbow','Y','0000-00-00 00:00:00'),(120659,10,'M24.521 ','Contracture, right elbow','Y','0000-00-00 00:00:00'),(120660,10,'M24.522 ','Contracture, left elbow','Y','0000-00-00 00:00:00'),(120658,10,'M24.519 ','Contracture, unspecified shoulder','Y','0000-00-00 00:00:00'),(120657,10,'M24.512 ','Contracture, left shoulder','Y','0000-00-00 00:00:00'),(120656,10,'M24.511 ','Contracture, right shoulder','Y','0000-00-00 00:00:00'),(120655,10,'M24.50 ','Contracture, unspecified joint','Y','0000-00-00 00:00:00'),(120654,10,'M24.49 ','Recurrent dislocation, other specified joint','Y','0000-00-00 00:00:00'),(120653,10,'M24.479 ','Recurrent dislocation, unspecified toe(s)','Y','0000-00-00 00:00:00'),(120652,10,'M24.478 ','Recurrent dislocation, left toe(s)','Y','0000-00-00 00:00:00'),(120651,10,'M24.477 ','Recurrent dislocation, right toe(s)','Y','0000-00-00 00:00:00'),(120650,10,'M24.476 ','Recurrent dislocation, unspecified foot','Y','0000-00-00 00:00:00'),(120649,10,'M24.475 ','Recurrent dislocation, left foot','Y','0000-00-00 00:00:00'),(120648,10,'M24.474 ','Recurrent dislocation, right foot','Y','0000-00-00 00:00:00'),(120647,10,'M24.473 ','Recurrent dislocation, unspecified ankle','Y','0000-00-00 00:00:00'),(120646,10,'M24.472 ','Recurrent dislocation, left ankle','Y','0000-00-00 00:00:00'),(120645,10,'M24.471 ','Recurrent dislocation, right ankle','Y','0000-00-00 00:00:00'),(120644,10,'M24.469 ','Recurrent dislocation, unspecified knee','Y','0000-00-00 00:00:00'),(120643,10,'M24.462 ','Recurrent dislocation, left knee','Y','0000-00-00 00:00:00'),(120642,10,'M24.461 ','Recurrent dislocation, right knee','Y','0000-00-00 00:00:00'),(120641,10,'M24.459 ','Recurrent dislocation, unspecified hip','Y','0000-00-00 00:00:00'),(120640,10,'M24.452 ','Recurrent dislocation, left hip','Y','0000-00-00 00:00:00'),(120639,10,'M24.451 ','Recurrent dislocation, right hip','Y','0000-00-00 00:00:00'),(120638,10,'M24.446 ','Recurrent dislocation, unspecified finger','Y','0000-00-00 00:00:00'),(120637,10,'M24.445 ','Recurrent dislocation, left finger','Y','0000-00-00 00:00:00'),(120636,10,'M24.444 ','Recurrent dislocation, right finger','Y','0000-00-00 00:00:00'),(120635,10,'M24.443 ','Recurrent dislocation, unspecified hand','Y','0000-00-00 00:00:00'),(120634,10,'M24.442 ','Recurrent dislocation, left hand','Y','0000-00-00 00:00:00'),(120633,10,'M24.441 ','Recurrent dislocation, right hand','Y','0000-00-00 00:00:00'),(120632,10,'M24.439 ','Recurrent dislocation, unspecified wrist','Y','0000-00-00 00:00:00'),(120631,10,'M24.432 ','Recurrent dislocation, left wrist','Y','0000-00-00 00:00:00'),(120630,10,'M24.431 ','Recurrent dislocation, right wrist','Y','0000-00-00 00:00:00'),(120629,10,'M24.429 ','Recurrent dislocation, unspecified elbow','Y','0000-00-00 00:00:00'),(120628,10,'M24.422 ','Recurrent dislocation, left elbow','Y','0000-00-00 00:00:00'),(120627,10,'M24.421 ','Recurrent dislocation, right elbow','Y','0000-00-00 00:00:00'),(120626,10,'M24.419 ','Recurrent dislocation, unspecified shoulder','Y','0000-00-00 00:00:00'),(120625,10,'M24.412 ','Recurrent dislocation, left shoulder','Y','0000-00-00 00:00:00'),(120624,10,'M24.411 ','Recurrent dislocation, right shoulder','Y','0000-00-00 00:00:00'),(120623,10,'M24.40 ','Recurrent dislocation, unspecified joint','Y','0000-00-00 00:00:00'),(120622,10,'M24.39 ','Pathological dislocation of other specified joint, not elsewhere classified','Y','0000-00-00 00:00:00'),(120621,10,'M24.376 ','Pathological dislocation of unspecified foot, not elsewhere classified','Y','0000-00-00 00:00:00'),(120620,10,'M24.375 ','Pathological dislocation of left foot, not elsewhere classified','Y','0000-00-00 00:00:00'),(120619,10,'M24.374 ','Pathological dislocation of right foot, not elsewhere classified','Y','0000-00-00 00:00:00'),(120618,10,'M24.373 ','Pathological dislocation of unspecified ankle, not elsewhere classified','Y','0000-00-00 00:00:00'),(120617,10,'M24.372 ','Pathological dislocation of left ankle, not elsewhere classified','Y','0000-00-00 00:00:00'),(120616,10,'M24.371 ','Pathological dislocation of right ankle, not elsewhere classified','Y','0000-00-00 00:00:00'),(120615,10,'M24.369 ','Pathological dislocation of unspecified knee, not elsewhere classified','Y','0000-00-00 00:00:00'),(120614,10,'M24.362 ','Pathological dislocation of left knee, not elsewhere classified','Y','0000-00-00 00:00:00'),(120613,10,'M24.361 ','Pathological dislocation of right knee, not elsewhere classified','Y','0000-00-00 00:00:00'),(120612,10,'M24.359 ','Pathological dislocation of unspecified hip, not elsewhere classified','Y','0000-00-00 00:00:00'),(120611,10,'M24.352 ','Pathological dislocation of left hip, not elsewhere classified','Y','0000-00-00 00:00:00'),(120610,10,'M24.351 ','Pathological dislocation of right hip, not elsewhere classified','Y','0000-00-00 00:00:00'),(120609,10,'M24.349 ','Pathological dislocation of unspecified hand, not elsewhere classified','Y','0000-00-00 00:00:00'),(120608,10,'M24.342 ','Pathological dislocation of left hand, not elsewhere classified','Y','0000-00-00 00:00:00'),(120607,10,'M24.341 ','Pathological dislocation of right hand, not elsewhere classified','Y','0000-00-00 00:00:00'),(120606,10,'M24.339 ','Pathological dislocation of unspecified wrist, not elsewhere classified','Y','0000-00-00 00:00:00'),(120605,10,'M24.332 ','Pathological dislocation of left wrist, not elsewhere classified','Y','0000-00-00 00:00:00'),(120604,10,'M24.331 ','Pathological dislocation of right wrist, not elsewhere classified','Y','0000-00-00 00:00:00'),(120603,10,'M24.329 ','Pathological dislocation of unspecified elbow, not elsewhere classified','Y','0000-00-00 00:00:00'),(120602,10,'M24.322 ','Pathological dislocation of left elbow, not elsewhere classified','Y','0000-00-00 00:00:00'),(120601,10,'M24.321 ','Pathological dislocation of right elbow, not elsewhere classified','Y','0000-00-00 00:00:00'),(120600,10,'M24.319 ','Pathological dislocation of unspecified shoulder, not elsewhere classified','Y','0000-00-00 00:00:00'),(120599,10,'M24.312 ','Pathological dislocation of left shoulder, not elsewhere classified','Y','0000-00-00 00:00:00'),(120598,10,'M24.311 ','Pathological dislocation of right shoulder, not elsewhere classified','Y','0000-00-00 00:00:00'),(120597,10,'M24.30 ','Pathological dislocation of unspecified joint, not elsewhere classified','Y','0000-00-00 00:00:00'),(120595,10,'M24.28 ','Disorder of ligament, vertebrae','Y','0000-00-00 00:00:00'),(120596,10,'M24.29 ','Disorder of ligament, other specified site','Y','0000-00-00 00:00:00'),(120594,10,'M24.276 ','Disorder of ligament, unspecified foot','Y','0000-00-00 00:00:00'),(120593,10,'M24.275 ','Disorder of ligament, left foot','Y','0000-00-00 00:00:00'),(120592,10,'M24.274 ','Disorder of ligament, right foot','Y','0000-00-00 00:00:00'),(120591,10,'M24.273 ','Disorder of ligament, unspecified ankle','Y','0000-00-00 00:00:00'),(120590,10,'M24.272 ','Disorder of ligament, left ankle','Y','0000-00-00 00:00:00'),(120589,10,'M24.271 ','Disorder of ligament, right ankle','Y','0000-00-00 00:00:00'),(120588,10,'M24.259 ','Disorder of ligament, unspecified hip','Y','0000-00-00 00:00:00'),(120587,10,'M24.252 ','Disorder of ligament, left hip','Y','0000-00-00 00:00:00'),(120586,10,'M24.251 ','Disorder of ligament, right hip','Y','0000-00-00 00:00:00'),(120585,10,'M24.249 ','Disorder of ligament, unspecified hand','Y','0000-00-00 00:00:00'),(120584,10,'M24.242 ','Disorder of ligament, left hand','Y','0000-00-00 00:00:00'),(120583,10,'M24.241 ','Disorder of ligament, right hand','Y','0000-00-00 00:00:00'),(120581,10,'M24.232 ','Disorder of ligament, left wrist','Y','0000-00-00 00:00:00'),(120582,10,'M24.239 ','Disorder of ligament, unspecified wrist','Y','0000-00-00 00:00:00'),(120580,10,'M24.231 ','Disorder of ligament, right wrist','Y','0000-00-00 00:00:00'),(120579,10,'M24.229 ','Disorder of ligament, unspecified elbow','Y','0000-00-00 00:00:00'),(120577,10,'M24.221 ','Disorder of ligament, right elbow','Y','0000-00-00 00:00:00'),(120578,10,'M24.222 ','Disorder of ligament, left elbow','Y','0000-00-00 00:00:00'),(120576,10,'M24.219 ','Disorder of ligament, unspecified shoulder','Y','0000-00-00 00:00:00'),(120575,10,'M24.212 ','Disorder of ligament, left shoulder','Y','0000-00-00 00:00:00'),(120574,10,'M24.211 ','Disorder of ligament, right shoulder','Y','0000-00-00 00:00:00'),(120573,10,'M24.20 ','Disorder of ligament, unspecified site','Y','0000-00-00 00:00:00'),(120572,10,'M24.19 ','Other articular cartilage disorders, other specified site','Y','0000-00-00 00:00:00'),(120571,10,'M24.176 ','Other articular cartilage disorders, unspecified foot','Y','0000-00-00 00:00:00'),(120570,10,'M24.175 ','Other articular cartilage disorders, left foot','Y','0000-00-00 00:00:00'),(120569,10,'M24.174 ','Other articular cartilage disorders, right foot','Y','0000-00-00 00:00:00'),(120568,10,'M24.173 ','Other articular cartilage disorders, unspecified ankle','Y','0000-00-00 00:00:00'),(120567,10,'M24.172 ','Other articular cartilage disorders, left ankle','Y','0000-00-00 00:00:00'),(120566,10,'M24.171 ','Other articular cartilage disorders, right ankle','Y','0000-00-00 00:00:00'),(120565,10,'M24.159 ','Other articular cartilage disorders, unspecified hip','Y','0000-00-00 00:00:00'),(120564,10,'M24.152 ','Other articular cartilage disorders, left hip','Y','0000-00-00 00:00:00'),(120563,10,'M24.151 ','Other articular cartilage disorders, right hip','Y','0000-00-00 00:00:00'),(120561,10,'M24.142 ','Other articular cartilage disorders, left hand','Y','0000-00-00 00:00:00'),(120562,10,'M24.149 ','Other articular cartilage disorders, unspecified hand','Y','0000-00-00 00:00:00'),(120560,10,'M24.141 ','Other articular cartilage disorders, right hand','Y','0000-00-00 00:00:00'),(120559,10,'M24.139 ','Other articular cartilage disorders, unspecified wrist','Y','0000-00-00 00:00:00'),(120558,10,'M24.132 ','Other articular cartilage disorders, left wrist','Y','0000-00-00 00:00:00'),(120557,10,'M24.131 ','Other articular cartilage disorders, right wrist','Y','0000-00-00 00:00:00'),(120556,10,'M24.129 ','Other articular cartilage disorders, unspecified elbow','Y','0000-00-00 00:00:00'),(120555,10,'M24.122 ','Other articular cartilage disorders, left elbow','Y','0000-00-00 00:00:00'),(120554,10,'M24.121 ','Other articular cartilage disorders, right elbow','Y','0000-00-00 00:00:00'),(120553,10,'M24.119 ','Other articular cartilage disorders, unspecified shoulder','Y','0000-00-00 00:00:00'),(120552,10,'M24.112 ','Other articular cartilage disorders, left shoulder','Y','0000-00-00 00:00:00'),(120551,10,'M24.111 ','Other articular cartilage disorders, right shoulder','Y','0000-00-00 00:00:00'),(120549,10,'M24.08 ','Loose body, other site','Y','0000-00-00 00:00:00'),(120550,10,'M24.10 ','Other articular cartilage disorders, unspecified site','Y','0000-00-00 00:00:00'),(120548,10,'M24.076 ','Loose body in unspecified toe joints','Y','0000-00-00 00:00:00'),(120547,10,'M24.075 ','Loose body in left toe joint(s)','Y','0000-00-00 00:00:00'),(120546,10,'M24.074 ','Loose body in right toe joint(s)','Y','0000-00-00 00:00:00'),(120545,10,'M24.073 ','Loose body in unspecified ankle','Y','0000-00-00 00:00:00'),(120544,10,'M24.072 ','Loose body in left ankle','Y','0000-00-00 00:00:00'),(120542,10,'M24.059 ','Loose body in unspecified hip','Y','0000-00-00 00:00:00'),(120543,10,'M24.071 ','Loose body in right ankle','Y','0000-00-00 00:00:00'),(120541,10,'M24.052 ','Loose body in left hip','Y','0000-00-00 00:00:00'),(120540,10,'M24.051 ','Loose body in right hip','Y','0000-00-00 00:00:00'),(120538,10,'M24.042 ','Loose body in left finger joint(s)','Y','0000-00-00 00:00:00'),(120539,10,'M24.049 ','Loose body in unspecified finger joint(s)','Y','0000-00-00 00:00:00'),(120537,10,'M24.041 ','Loose body in right finger joint(s)','Y','0000-00-00 00:00:00'),(120536,10,'M24.039 ','Loose body in unspecified wrist','Y','0000-00-00 00:00:00'),(120535,10,'M24.032 ','Loose body in left wrist','Y','0000-00-00 00:00:00'),(120534,10,'M24.031 ','Loose body in right wrist','Y','0000-00-00 00:00:00'),(120533,10,'M24.029 ','Loose body in unspecified elbow','Y','0000-00-00 00:00:00'),(120531,10,'M24.021 ','Loose body in right elbow','Y','0000-00-00 00:00:00'),(120532,10,'M24.022 ','Loose body in left elbow','Y','0000-00-00 00:00:00'),(120530,10,'M24.019 ','Loose body in unspecified shoulder','Y','0000-00-00 00:00:00'),(120529,10,'M24.012 ','Loose body in left shoulder','Y','0000-00-00 00:00:00'),(120528,10,'M24.011 ','Loose body in right shoulder','Y','0000-00-00 00:00:00'),(120527,10,'M24.00 ','Loose body in unspecified joint','Y','0000-00-00 00:00:00'),(120526,10,'M23.92 ','Unspecified internal derangement of left knee','Y','0000-00-00 00:00:00'),(120525,10,'M23.91 ','Unspecified internal derangement of right knee','Y','0000-00-00 00:00:00'),(120523,10,'M23.8X9 ','Other internal derangements of unspecified knee','Y','0000-00-00 00:00:00'),(120524,10,'M23.90 ','Unspecified internal derangement of unspecified knee','Y','0000-00-00 00:00:00'),(120522,10,'M23.8X2 ','Other internal derangements of left knee','Y','0000-00-00 00:00:00'),(120521,10,'M23.8X1 ','Other internal derangements of right knee','Y','0000-00-00 00:00:00'),(120520,10,'M23.679 ','Other spontaneous disruption of capsular ligament of unspecified knee','Y','0000-00-00 00:00:00'),(120519,10,'M23.672 ','Other spontaneous disruption of capsular ligament of left knee','Y','0000-00-00 00:00:00'),(120518,10,'M23.671 ','Other spontaneous disruption of capsular ligament of right knee','Y','0000-00-00 00:00:00'),(120517,10,'M23.649 ','Other spontaneous disruption of lateral collateral ligament of unspecified knee','Y','0000-00-00 00:00:00'),(120516,10,'M23.642 ','Other spontaneous disruption of lateral collateral ligament of left knee','Y','0000-00-00 00:00:00'),(120515,10,'M23.641 ','Other spontaneous disruption of lateral collateral ligament of right knee','Y','0000-00-00 00:00:00'),(120514,10,'M23.639 ','Other spontaneous disruption of medial collateral ligament of unspecified knee','Y','0000-00-00 00:00:00'),(120513,10,'M23.632 ','Other spontaneous disruption of medial collateral ligament of left knee','Y','0000-00-00 00:00:00'),(120512,10,'M23.631 ','Other spontaneous disruption of medial collateral ligament of right knee','Y','0000-00-00 00:00:00'),(120511,10,'M23.629 ','Other spontaneous disruption of posterior cruciate ligament of unspecified knee','Y','0000-00-00 00:00:00'),(120510,10,'M23.622 ','Other spontaneous disruption of posterior cruciate ligament of left knee','Y','0000-00-00 00:00:00'),(120509,10,'M23.621 ','Other spontaneous disruption of posterior cruciate ligament of right knee','Y','0000-00-00 00:00:00'),(120508,10,'M23.619 ','Other spontaneous disruption of anterior cruciate ligament of unspecified knee','Y','0000-00-00 00:00:00'),(120507,10,'M23.612 ','Other spontaneous disruption of anterior cruciate ligament of left knee','Y','0000-00-00 00:00:00'),(120506,10,'M23.611 ','Other spontaneous disruption of anterior cruciate ligament of right knee','Y','0000-00-00 00:00:00'),(120505,10,'M23.609 ','Other spontaneous disruption of unspecified ligament of unspecified knee','Y','0000-00-00 00:00:00'),(120504,10,'M23.602 ','Other spontaneous disruption of unspecified ligament of left knee','Y','0000-00-00 00:00:00'),(120503,10,'M23.601 ','Other spontaneous disruption of unspecified ligament of right knee','Y','0000-00-00 00:00:00'),(120502,10,'M23.52 ','Chronic instability of knee, left knee','Y','0000-00-00 00:00:00'),(120501,10,'M23.51 ','Chronic instability of knee, right knee','Y','0000-00-00 00:00:00'),(120500,10,'M23.50 ','Chronic instability of knee, unspecified knee','Y','0000-00-00 00:00:00'),(120499,10,'M23.42 ','Loose body in knee, left knee','Y','0000-00-00 00:00:00'),(120498,10,'M23.41 ','Loose body in knee, right knee','Y','0000-00-00 00:00:00'),(120497,10,'M23.40 ','Loose body in knee, unspecified knee','Y','0000-00-00 00:00:00'),(120496,10,'M23.369 ','Other meniscus derangements, other lateral meniscus, unspecified knee','Y','0000-00-00 00:00:00'),(120495,10,'M23.362 ','Other meniscus derangements, other lateral meniscus, left knee','Y','0000-00-00 00:00:00'),(120494,10,'M23.361 ','Other meniscus derangements, other lateral meniscus, right knee','Y','0000-00-00 00:00:00'),(120493,10,'M23.359 ','Other meniscus derangements, posterior horn of lateral meniscus, unspecified knee','Y','0000-00-00 00:00:00'),(120492,10,'M23.352 ','Other meniscus derangements, posterior horn of lateral meniscus, left knee','Y','0000-00-00 00:00:00'),(120491,10,'M23.351 ','Other meniscus derangements, posterior horn of lateral meniscus, right knee','Y','0000-00-00 00:00:00'),(120490,10,'M23.349 ','Other meniscus derangements, anterior horn of lateral meniscus, unspecified knee','Y','0000-00-00 00:00:00'),(120489,10,'M23.342 ','Other meniscus derangements, anterior horn of lateral meniscus, left knee','Y','0000-00-00 00:00:00'),(120487,10,'M23.339 ','Other meniscus derangements, other medial meniscus, unspecified knee','Y','0000-00-00 00:00:00'),(120488,10,'M23.341 ','Other meniscus derangements, anterior horn of lateral meniscus, right knee','Y','0000-00-00 00:00:00'),(120486,10,'M23.332 ','Other meniscus derangements, other medial meniscus, left knee','Y','0000-00-00 00:00:00'),(120485,10,'M23.331 ','Other meniscus derangements, other medial meniscus, right knee','Y','0000-00-00 00:00:00'),(120484,10,'M23.329 ','Other meniscus derangements, posterior horn of medial meniscus, unspecified knee','Y','0000-00-00 00:00:00'),(120482,10,'M23.321 ','Other meniscus derangements, posterior horn of medial meniscus, right knee','Y','0000-00-00 00:00:00'),(120483,10,'M23.322 ','Other meniscus derangements, posterior horn of medial meniscus, left knee','Y','0000-00-00 00:00:00'),(120481,10,'M23.319 ','Other meniscus derangements, anterior horn of medial meniscus, unspecified knee','Y','0000-00-00 00:00:00'),(120480,10,'M23.312 ','Other meniscus derangements, anterior horn of medial meniscus, left knee','Y','0000-00-00 00:00:00'),(120479,10,'M23.311 ','Other meniscus derangements, anterior horn of medial meniscus, right knee','Y','0000-00-00 00:00:00'),(120477,10,'M23.307 ','Other meniscus derangements, unspecified meniscus, left knee','Y','0000-00-00 00:00:00'),(120478,10,'M23.309 ','Other meniscus derangements, unspecified meniscus, unspecified knee','Y','0000-00-00 00:00:00'),(120476,10,'M23.306 ','Other meniscus derangements, unspecified meniscus, right knee','Y','0000-00-00 00:00:00'),(120475,10,'M23.305 ','Other meniscus derangements, unspecified medial meniscus, unspecified knee','Y','0000-00-00 00:00:00'),(120474,10,'M23.304 ','Other meniscus derangements, unspecified medial meniscus, left knee','Y','0000-00-00 00:00:00'),(120473,10,'M23.303 ','Other meniscus derangements, unspecified medial meniscus, right knee','Y','0000-00-00 00:00:00'),(120472,10,'M23.302 ','Other meniscus derangements, unspecified lateral meniscus, unspecified knee','Y','0000-00-00 00:00:00'),(120470,10,'M23.300 ','Other meniscus derangements, unspecified lateral meniscus, right knee','Y','0000-00-00 00:00:00'),(120471,10,'M23.301 ','Other meniscus derangements, unspecified lateral meniscus, left knee','Y','0000-00-00 00:00:00'),(120469,10,'M23.269 ','Derangement of other lateral meniscus due to old tear or injury, unspecified knee','Y','0000-00-00 00:00:00'),(120468,10,'M23.262 ','Derangement of other lateral meniscus due to old tear or injury, left knee','Y','0000-00-00 00:00:00'),(120467,10,'M23.261 ','Derangement of other lateral meniscus due to old tear or injury, right knee','Y','0000-00-00 00:00:00'),(120466,10,'M23.259 ','Derangement of posterior horn of lateral meniscus due to old tear or injury, unspecified knee','Y','0000-00-00 00:00:00'),(120465,10,'M23.252 ','Derangement of posterior horn of lateral meniscus due to old tear or injury, left knee','Y','0000-00-00 00:00:00'),(120464,10,'M23.251 ','Derangement of posterior horn of lateral meniscus due to old tear or injury, right knee','Y','0000-00-00 00:00:00'),(120463,10,'M23.249 ','Derangement of anterior horn of lateral meniscus due to old tear or injury, unspecified knee','Y','0000-00-00 00:00:00'),(120462,10,'M23.242 ','Derangement of anterior horn of lateral meniscus due to old tear or injury, left knee','Y','0000-00-00 00:00:00'),(120461,10,'M23.241 ','Derangement of anterior horn of lateral meniscus due to old tear or injury, right knee','Y','0000-00-00 00:00:00'),(120460,10,'M23.239 ','Derangement of other medial meniscus due to old tear or injury, unspecified knee','Y','0000-00-00 00:00:00'),(120459,10,'M23.232 ','Derangement of other medial meniscus due to old tear or injury, left knee','Y','0000-00-00 00:00:00'),(120458,10,'M23.231 ','Derangement of other medial meniscus due to old tear or injury, right knee','Y','0000-00-00 00:00:00'),(120457,10,'M23.229 ','Derangement of posterior horn of medial meniscus due to old tear or injury, unspecified knee','Y','0000-00-00 00:00:00'),(120456,10,'M23.222 ','Derangement of posterior horn of medial meniscus due to old tear or injury, left knee','Y','0000-00-00 00:00:00'),(120455,10,'M23.221 ','Derangement of posterior horn of medial meniscus due to old tear or injury, right knee','Y','0000-00-00 00:00:00'),(120454,10,'M23.219 ','Derangement of anterior horn of medial meniscus due to old tear or injury, unspecified knee','Y','0000-00-00 00:00:00'),(120453,10,'M23.212 ','Derangement of anterior horn of medial meniscus due to old tear or injury, left knee','Y','0000-00-00 00:00:00'),(120452,10,'M23.211 ','Derangement of anterior horn of medial meniscus due to old tear or injury, right knee','Y','0000-00-00 00:00:00'),(120451,10,'M23.209 ','Derangement of unspecified meniscus due to old tear or injury, unspecified knee','Y','0000-00-00 00:00:00'),(120450,10,'M23.207 ','Derangement of unspecified meniscus due to old tear or injury, left knee','Y','0000-00-00 00:00:00'),(120449,10,'M23.206 ','Derangement of unspecified meniscus due to old tear or injury, right knee','Y','0000-00-00 00:00:00'),(120448,10,'M23.205 ','Derangement of unspecified medial meniscus due to old tear or injury, unspecified knee','Y','0000-00-00 00:00:00'),(120447,10,'M23.204 ','Derangement of unspecified medial meniscus due to old tear or injury, left knee','Y','0000-00-00 00:00:00'),(120446,10,'M23.203 ','Derangement of unspecified medial meniscus due to old tear or injury, right knee','Y','0000-00-00 00:00:00'),(120445,10,'M23.202 ','Derangement of unspecified lateral meniscus due to old tear or injury, unspecified knee','Y','0000-00-00 00:00:00'),(120444,10,'M23.201 ','Derangement of unspecified lateral meniscus due to old tear or injury, left knee','Y','0000-00-00 00:00:00'),(120443,10,'M23.200 ','Derangement of unspecified lateral meniscus due to old tear or injury, right knee','Y','0000-00-00 00:00:00'),(120442,10,'M23.069 ','Cystic meniscus, other lateral meniscus, unspecified knee','Y','0000-00-00 00:00:00'),(120441,10,'M23.062 ','Cystic meniscus, other lateral meniscus, left knee','Y','0000-00-00 00:00:00'),(120440,10,'M23.061 ','Cystic meniscus, other lateral meniscus, right knee','Y','0000-00-00 00:00:00'),(120439,10,'M23.059 ','Cystic meniscus, posterior horn of lateral meniscus, unspecified knee','Y','0000-00-00 00:00:00'),(120438,10,'M23.052 ','Cystic meniscus, posterior horn of lateral meniscus, left knee','Y','0000-00-00 00:00:00'),(120437,10,'M23.051 ','Cystic meniscus, posterior horn of lateral meniscus, right knee','Y','0000-00-00 00:00:00'),(120436,10,'M23.049 ','Cystic meniscus, anterior horn of lateral meniscus, unspecified knee','Y','0000-00-00 00:00:00'),(120435,10,'M23.042 ','Cystic meniscus, anterior horn of lateral meniscus, left knee','Y','0000-00-00 00:00:00'),(120434,10,'M23.041 ','Cystic meniscus, anterior horn of lateral meniscus, right knee','Y','0000-00-00 00:00:00'),(120433,10,'M23.039 ','Cystic meniscus, other medial meniscus, unspecified knee','Y','0000-00-00 00:00:00'),(120432,10,'M23.032 ','Cystic meniscus, other medial meniscus, left knee','Y','0000-00-00 00:00:00'),(120431,10,'M23.031 ','Cystic meniscus, other medial meniscus, right knee','Y','0000-00-00 00:00:00'),(120430,10,'M23.029 ','Cystic meniscus, posterior horn of medial meniscus, unspecified knee','Y','0000-00-00 00:00:00'),(120429,10,'M23.022 ','Cystic meniscus, posterior horn of medial meniscus, left knee','Y','0000-00-00 00:00:00'),(120428,10,'M23.021 ','Cystic meniscus, posterior horn of medial meniscus, right knee','Y','0000-00-00 00:00:00'),(120427,10,'M23.019 ','Cystic meniscus, anterior horn of medial meniscus, unspecified knee','Y','0000-00-00 00:00:00'),(120426,10,'M23.012 ','Cystic meniscus, anterior horn of medial meniscus, left knee','Y','0000-00-00 00:00:00'),(120425,10,'M23.011 ','Cystic meniscus, anterior horn of medial meniscus, right knee','Y','0000-00-00 00:00:00'),(120424,10,'M23.009 ','Cystic meniscus, unspecified meniscus, unspecified knee','Y','0000-00-00 00:00:00'),(120423,10,'M23.007 ','Cystic meniscus, unspecified meniscus, left knee','Y','0000-00-00 00:00:00'),(120422,10,'M23.006 ','Cystic meniscus, unspecified meniscus, right knee','Y','0000-00-00 00:00:00'),(120421,10,'M23.005 ','Cystic meniscus, unspecified medial meniscus, unspecified knee','Y','0000-00-00 00:00:00'),(120420,10,'M23.004 ','Cystic meniscus, unspecified medial meniscus, left knee','Y','0000-00-00 00:00:00'),(120419,10,'M23.003 ','Cystic meniscus, unspecified medial meniscus, right knee','Y','0000-00-00 00:00:00'),(120418,10,'M23.002 ','Cystic meniscus, unspecified lateral meniscus, unspecified knee','Y','0000-00-00 00:00:00'),(120417,10,'M23.001 ','Cystic meniscus, unspecified lateral meniscus, left knee','Y','0000-00-00 00:00:00'),(120416,10,'M23.000 ','Cystic meniscus, unspecified lateral meniscus, right knee','Y','0000-00-00 00:00:00'),(120415,10,'M22.92 ','Unspecified disorder of patella, left knee','Y','0000-00-00 00:00:00'),(120414,10,'M22.91 ','Unspecified disorder of patella, right knee','Y','0000-00-00 00:00:00'),(120413,10,'M22.90 ','Unspecified disorder of patella, unspecified knee','Y','0000-00-00 00:00:00'),(120412,10,'M22.8X9 ','Other disorders of patella, unspecified knee','Y','0000-00-00 00:00:00'),(120411,10,'M22.8X2 ','Other disorders of patella, left knee','Y','0000-00-00 00:00:00'),(120410,10,'M22.8X1 ','Other disorders of patella, right knee','Y','0000-00-00 00:00:00'),(120409,10,'M22.42 ','Chondromalacia patellae, left knee','Y','0000-00-00 00:00:00'),(120408,10,'M22.41 ','Chondromalacia patellae, right knee','Y','0000-00-00 00:00:00'),(120407,10,'M22.40 ','Chondromalacia patellae, unspecified knee','Y','0000-00-00 00:00:00'),(120406,10,'M22.3X9 ','Other derangements of patella, unspecified knee','Y','0000-00-00 00:00:00'),(120405,10,'M22.3X2 ','Other derangements of patella, left knee','Y','0000-00-00 00:00:00'),(120404,10,'M22.3X1 ','Other derangements of patella, right knee','Y','0000-00-00 00:00:00'),(120402,10,'M22.2X2 ','Patellofemoral disorders, left knee','Y','0000-00-00 00:00:00'),(120403,10,'M22.2X9 ','Patellofemoral disorders, unspecified knee','Y','0000-00-00 00:00:00'),(120400,10,'M22.12 ','Recurrent subluxation of patella, left knee','Y','0000-00-00 00:00:00'),(120401,10,'M22.2X1 ','Patellofemoral disorders, right knee','Y','0000-00-00 00:00:00'),(120399,10,'M22.11 ','Recurrent subluxation of patella, right knee','Y','0000-00-00 00:00:00'),(120397,10,'M22.02 ','Recurrent dislocation of patella, left knee','Y','0000-00-00 00:00:00'),(120398,10,'M22.10 ','Recurrent subluxation of patella, unspecified knee','Y','0000-00-00 00:00:00'),(120396,10,'M22.01 ','Recurrent dislocation of patella, right knee','Y','0000-00-00 00:00:00'),(120395,10,'M22.00 ','Recurrent dislocation of patella, unspecified knee','Y','0000-00-00 00:00:00'),(120393,10,'M21.962 ','Unspecified acquired deformity of left lower leg','Y','0000-00-00 00:00:00'),(120394,10,'M21.969 ','Unspecified acquired deformity of unspecified lower leg','Y','0000-00-00 00:00:00'),(120392,10,'M21.961 ','Unspecified acquired deformity of right lower leg','Y','0000-00-00 00:00:00'),(120391,10,'M21.959 ','Unspecified acquired deformity of unspecified thigh','Y','0000-00-00 00:00:00'),(120390,10,'M21.952 ','Unspecified acquired deformity of left thigh','Y','0000-00-00 00:00:00'),(120388,10,'M21.949 ','Unspecified acquired deformity of hand, unspecified hand','Y','0000-00-00 00:00:00'),(120389,10,'M21.951 ','Unspecified acquired deformity of right thigh','Y','0000-00-00 00:00:00'),(120387,10,'M21.942 ','Unspecified acquired deformity of hand, left hand','Y','0000-00-00 00:00:00'),(120386,10,'M21.941 ','Unspecified acquired deformity of hand, right hand','Y','0000-00-00 00:00:00'),(120385,10,'M21.939 ','Unspecified acquired deformity of unspecified forearm','Y','0000-00-00 00:00:00'),(120384,10,'M21.932 ','Unspecified acquired deformity of left forearm','Y','0000-00-00 00:00:00'),(120383,10,'M21.931 ','Unspecified acquired deformity of right forearm','Y','0000-00-00 00:00:00'),(120382,10,'M21.929 ','Unspecified acquired deformity of unspecified upper arm','Y','0000-00-00 00:00:00'),(120381,10,'M21.922 ','Unspecified acquired deformity of left upper arm','Y','0000-00-00 00:00:00'),(120379,10,'M21.90 ','Unspecified acquired deformity of unspecified limb','Y','0000-00-00 00:00:00'),(120380,10,'M21.921 ','Unspecified acquired deformity of right upper arm','Y','0000-00-00 00:00:00'),(120378,10,'M21.869 ','Other specified acquired deformities of unspecified lower leg','Y','0000-00-00 00:00:00'),(120377,10,'M21.862 ','Other specified acquired deformities of left lower leg','Y','0000-00-00 00:00:00'),(120375,10,'M21.859 ','Other specified acquired deformities of unspecified thigh','Y','0000-00-00 00:00:00'),(120376,10,'M21.861 ','Other specified acquired deformities of right lower leg','Y','0000-00-00 00:00:00'),(120374,10,'M21.852 ','Other specified acquired deformities of left thigh','Y','0000-00-00 00:00:00'),(120373,10,'M21.851 ','Other specified acquired deformities of right thigh','Y','0000-00-00 00:00:00'),(120371,10,'M21.832 ','Other specified acquired deformities of left forearm','Y','0000-00-00 00:00:00'),(120372,10,'M21.839 ','Other specified acquired deformities of unspecified forearm','Y','0000-00-00 00:00:00'),(120370,10,'M21.831 ','Other specified acquired deformities of right forearm','Y','0000-00-00 00:00:00'),(120369,10,'M21.829 ','Other specified acquired deformities of unspecified upper arm','Y','0000-00-00 00:00:00'),(120368,10,'M21.822 ','Other specified acquired deformities of left upper arm','Y','0000-00-00 00:00:00'),(120366,10,'M21.80 ','Other specified acquired deformities of unspecified limb','Y','0000-00-00 00:00:00'),(120367,10,'M21.821 ','Other specified acquired deformities of right upper arm','Y','0000-00-00 00:00:00'),(120365,10,'M21.769 ','Unequal limb length (acquired), unspecified tibia and fibula','Y','0000-00-00 00:00:00'),(120364,10,'M21.764 ','Unequal limb length (acquired), left fibula','Y','0000-00-00 00:00:00'),(120362,10,'M21.762 ','Unequal limb length (acquired), left tibia','Y','0000-00-00 00:00:00'),(120363,10,'M21.763 ','Unequal limb length (acquired), right fibula','Y','0000-00-00 00:00:00'),(120361,10,'M21.761 ','Unequal limb length (acquired), right tibia','Y','0000-00-00 00:00:00'),(120360,10,'M21.759 ','Unequal limb length (acquired), unspecified femur','Y','0000-00-00 00:00:00'),(120358,10,'M21.751 ','Unequal limb length (acquired), right femur','Y','0000-00-00 00:00:00'),(120359,10,'M21.752 ','Unequal limb length (acquired), left femur','Y','0000-00-00 00:00:00'),(120357,10,'M21.739 ','Unequal limb length (acquired), unspecified ulna and radius','Y','0000-00-00 00:00:00'),(120356,10,'M21.734 ','Unequal limb length (acquired), left radius','Y','0000-00-00 00:00:00'),(120354,10,'M21.732 ','Unequal limb length (acquired), left ulna','Y','0000-00-00 00:00:00'),(120355,10,'M21.733 ','Unequal limb length (acquired), right radius','Y','0000-00-00 00:00:00'),(120353,10,'M21.731 ','Unequal limb length (acquired), right ulna','Y','0000-00-00 00:00:00'),(120351,10,'M21.722 ','Unequal limb length (acquired), left humerus','Y','0000-00-00 00:00:00'),(120352,10,'M21.729 ','Unequal limb length (acquired), unspecified humerus','Y','0000-00-00 00:00:00'),(120350,10,'M21.721 ','Unequal limb length (acquired), right humerus','Y','0000-00-00 00:00:00'),(120349,10,'M21.70 ','Unequal limb length (acquired), unspecified site','Y','0000-00-00 00:00:00'),(120347,10,'M21.6X2 ','Other acquired deformities of left foot','Y','0000-00-00 00:00:00'),(120348,10,'M21.6X9 ','Other acquired deformities of unspecified foot','Y','0000-00-00 00:00:00'),(120346,10,'M21.6X1 ','Other acquired deformities of right foot','Y','0000-00-00 00:00:00'),(120344,10,'M21.622 ','Bunionette of left foot','Y','0000-00-00 00:00:00'),(120345,10,'M21.629 ','Bunionette of unspecified foot','Y','0000-00-00 00:00:00'),(120343,10,'M21.621 ','Bunionette of right foot','Y','0000-00-00 00:00:00'),(120341,10,'M21.612 ','Bunion of left foot','Y','0000-00-00 00:00:00'),(120342,10,'M21.619 ','Bunion of unspecified foot','Y','0000-00-00 00:00:00'),(120339,10,'M21.549 ','Acquired clubfoot, unspecified foot','Y','0000-00-00 00:00:00'),(120340,10,'M21.611 ','Bunion of right foot','Y','0000-00-00 00:00:00'),(120338,10,'M21.542 ','Acquired clubfoot, left foot','Y','0000-00-00 00:00:00'),(120336,10,'M21.539 ','Acquired clawfoot, unspecified foot','Y','0000-00-00 00:00:00'),(120337,10,'M21.541 ','Acquired clubfoot, right foot','Y','0000-00-00 00:00:00'),(120335,10,'M21.532 ','Acquired clawfoot, left foot','Y','0000-00-00 00:00:00'),(120333,10,'M21.529 ','Acquired clubhand, unspecified hand','Y','0000-00-00 00:00:00'),(120334,10,'M21.531 ','Acquired clawfoot, right foot','Y','0000-00-00 00:00:00'),(120332,10,'M21.522 ','Acquired clubhand, left hand','Y','0000-00-00 00:00:00'),(120330,10,'M21.519 ','Acquired clawhand, unspecified hand','Y','0000-00-00 00:00:00'),(120331,10,'M21.521 ','Acquired clubhand, right hand','Y','0000-00-00 00:00:00'),(120329,10,'M21.512 ','Acquired clawhand, left hand','Y','0000-00-00 00:00:00'),(120327,10,'M21.42 ','Flat foot [pes planus] (acquired), left foot','Y','0000-00-00 00:00:00'),(120328,10,'M21.511 ','Acquired clawhand, right hand','Y','0000-00-00 00:00:00'),(120326,10,'M21.41 ','Flat foot [pes planus] (acquired), right foot','Y','0000-00-00 00:00:00'),(120325,10,'M21.40 ','Flat foot [pes planus] (acquired), unspecified foot','Y','0000-00-00 00:00:00'),(120324,10,'M21.379 ','Foot drop, unspecified foot','Y','0000-00-00 00:00:00'),(120322,10,'M21.371 ','Foot drop, right foot','Y','0000-00-00 00:00:00'),(120323,10,'M21.372 ','Foot drop, left foot','Y','0000-00-00 00:00:00'),(120321,10,'M21.339 ','Wrist drop, unspecified wrist','Y','0000-00-00 00:00:00'),(120319,10,'M21.331 ','Wrist drop, right wrist','Y','0000-00-00 00:00:00'),(120320,10,'M21.332 ','Wrist drop, left wrist','Y','0000-00-00 00:00:00'),(120318,10,'M21.279 ','Flexion deformity, unspecified ankle and toes','Y','0000-00-00 00:00:00'),(120317,10,'M21.272 ','Flexion deformity, left ankle and toes','Y','0000-00-00 00:00:00'),(120316,10,'M21.271 ','Flexion deformity, right ankle and toes','Y','0000-00-00 00:00:00'),(120315,10,'M21.269 ','Flexion deformity, unspecified knee','Y','0000-00-00 00:00:00'),(120314,10,'M21.262 ','Flexion deformity, left knee','Y','0000-00-00 00:00:00'),(120313,10,'M21.261 ','Flexion deformity, right knee','Y','0000-00-00 00:00:00'),(120312,10,'M21.259 ','Flexion deformity, unspecified hip','Y','0000-00-00 00:00:00'),(120311,10,'M21.252 ','Flexion deformity, left hip','Y','0000-00-00 00:00:00'),(120310,10,'M21.251 ','Flexion deformity, right hip','Y','0000-00-00 00:00:00'),(120309,10,'M21.249 ','Flexion deformity, unspecified finger joints','Y','0000-00-00 00:00:00'),(120308,10,'M21.242 ','Flexion deformity, left finger joints','Y','0000-00-00 00:00:00'),(120306,10,'M21.239 ','Flexion deformity, unspecified wrist','Y','0000-00-00 00:00:00'),(120307,10,'M21.241 ','Flexion deformity, right finger joints','Y','0000-00-00 00:00:00'),(120305,10,'M21.232 ','Flexion deformity, left wrist','Y','0000-00-00 00:00:00'),(120303,10,'M21.229 ','Flexion deformity, unspecified elbow','Y','0000-00-00 00:00:00'),(120304,10,'M21.231 ','Flexion deformity, right wrist','Y','0000-00-00 00:00:00'),(120302,10,'M21.222 ','Flexion deformity, left elbow','Y','0000-00-00 00:00:00'),(120300,10,'M21.219 ','Flexion deformity, unspecified shoulder','Y','0000-00-00 00:00:00'),(120301,10,'M21.221 ','Flexion deformity, right elbow','Y','0000-00-00 00:00:00'),(120299,10,'M21.212 ','Flexion deformity, left shoulder','Y','0000-00-00 00:00:00'),(120297,10,'M21.20 ','Flexion deformity, unspecified site','Y','0000-00-00 00:00:00'),(120298,10,'M21.211 ','Flexion deformity, right shoulder','Y','0000-00-00 00:00:00'),(120296,10,'M21.179 ','Varus deformity, not elsewhere classified, unspecified ankle','Y','0000-00-00 00:00:00'),(120295,10,'M21.172 ','Varus deformity, not elsewhere classified, left ankle','Y','0000-00-00 00:00:00'),(120294,10,'M21.171 ','Varus deformity, not elsewhere classified, right ankle','Y','0000-00-00 00:00:00'),(120293,10,'M21.169 ','Varus deformity, not elsewhere classified, unspecified knee','Y','0000-00-00 00:00:00'),(120292,10,'M21.162 ','Varus deformity, not elsewhere classified, left knee','Y','0000-00-00 00:00:00'),(120291,10,'M21.161 ','Varus deformity, not elsewhere classified, right knee','Y','0000-00-00 00:00:00'),(120290,10,'M21.159 ','Varus deformity, not elsewhere classified, unspecified','Y','0000-00-00 00:00:00'),(120289,10,'M21.152 ','Varus deformity, not elsewhere classified, left hip','Y','0000-00-00 00:00:00'),(120288,10,'M21.151 ','Varus deformity, not elsewhere classified, right hip','Y','0000-00-00 00:00:00'),(120287,10,'M21.129 ','Varus deformity, not elsewhere classified, unspecified elbow','Y','0000-00-00 00:00:00'),(120286,10,'M21.122 ','Varus deformity, not elsewhere classified, left elbow','Y','0000-00-00 00:00:00'),(120285,10,'M21.121 ','Varus deformity, not elsewhere classified, right elbow','Y','0000-00-00 00:00:00'),(120284,10,'M21.10 ','Varus deformity, not elsewhere classified, unspecified site','Y','0000-00-00 00:00:00'),(120283,10,'M21.079 ','Valgus deformity, not elsewhere classified, unspecified ankle','Y','0000-00-00 00:00:00'),(120282,10,'M21.072 ','Valgus deformity, not elsewhere classified, left ankle','Y','0000-00-00 00:00:00'),(120281,10,'M21.071 ','Valgus deformity, not elsewhere classified, right ankle','Y','0000-00-00 00:00:00'),(120280,10,'M21.069 ','Valgus deformity, not elsewhere classified, unspecified knee','Y','0000-00-00 00:00:00'),(120279,10,'M21.062 ','Valgus deformity, not elsewhere classified, left knee','Y','0000-00-00 00:00:00'),(120278,10,'M21.061 ','Valgus deformity, not elsewhere classified, right knee','Y','0000-00-00 00:00:00'),(120277,10,'M21.059 ','Valgus deformity, not elsewhere classified, unspecified hip','Y','0000-00-00 00:00:00'),(120276,10,'M21.052 ','Valgus deformity, not elsewhere classified, left hip','Y','0000-00-00 00:00:00'),(120275,10,'M21.051 ','Valgus deformity, not elsewhere classified, right hip','Y','0000-00-00 00:00:00'),(120274,10,'M21.029 ','Valgus deformity, not elsewhere classified, unspecified elbow','Y','0000-00-00 00:00:00'),(120273,10,'M21.022 ','Valgus deformity, not elsewhere classified, left elbow','Y','0000-00-00 00:00:00'),(120272,10,'M21.021 ','Valgus deformity, not elsewhere classified, right elbow','Y','0000-00-00 00:00:00'),(120271,10,'M21.00 ','Valgus deformity, not elsewhere classified, unspecified site','Y','0000-00-00 00:00:00'),(120270,10,'M20.62 ','Acquired deformities of toe(s), unspecified, left foot','Y','0000-00-00 00:00:00'),(120269,10,'M20.61 ','Acquired deformities of toe(s), unspecified, right foot','Y','0000-00-00 00:00:00'),(120268,10,'M20.60 ','Acquired deformities of toe(s), unspecified, unspecified foot','Y','0000-00-00 00:00:00'),(120267,10,'M20.5X9 ','Other deformities of toe(s) (acquired), unspecified foot','Y','0000-00-00 00:00:00'),(120266,10,'M20.5X2 ','Other deformities of toe(s) (acquired), left foot','Y','0000-00-00 00:00:00'),(120265,10,'M20.5X1 ','Other deformities of toe(s) (acquired), right foot','Y','0000-00-00 00:00:00'),(120264,10,'M20.42 ','Other hammer toe(s) (acquired), left foot','Y','0000-00-00 00:00:00'),(120263,10,'M20.41 ','Other hammer toe(s) (acquired), right foot','Y','0000-00-00 00:00:00'),(120262,10,'M20.40 ','Other hammer toe(s) (acquired), unspecified foot','Y','0000-00-00 00:00:00'),(120261,10,'M20.32 ','Hallux varus (acquired), left foot','Y','0000-00-00 00:00:00'),(120260,10,'M20.31 ','Hallux varus (acquired), right foot','Y','0000-00-00 00:00:00'),(120259,10,'M20.30 ','Hallux varus (acquired), unspecified foot','Y','0000-00-00 00:00:00'),(120258,10,'M20.22 ','Hallux rigidus, left foot','Y','0000-00-00 00:00:00'),(120257,10,'M20.21 ','Hallux rigidus, right foot','Y','0000-00-00 00:00:00'),(120255,10,'M20.12 ','Hallux valgus (acquired), left foot','Y','0000-00-00 00:00:00'),(120256,10,'M20.20 ','Hallux rigidus, unspecified foot','Y','0000-00-00 00:00:00'),(120254,10,'M20.11 ','Hallux valgus (acquired), right foot','Y','0000-00-00 00:00:00'),(120253,10,'M20.10 ','Hallux valgus (acquired), unspecified foot','Y','0000-00-00 00:00:00'),(120252,10,'M20.099 ','Other deformity of finger(s), unspecified finger(s)','Y','0000-00-00 00:00:00'),(120251,10,'M20.092 ','Other deformity of left finger(s)','Y','0000-00-00 00:00:00'),(120250,10,'M20.091 ','Other deformity of right finger(s)','Y','0000-00-00 00:00:00'),(120249,10,'M20.039 ','Swan-neck deformity of unspecified finger(s)','Y','0000-00-00 00:00:00'),(120248,10,'M20.032 ','Swan-neck deformity of left finger(s)','Y','0000-00-00 00:00:00'),(120247,10,'M20.031 ','Swan-neck deformity of right finger(s)','Y','0000-00-00 00:00:00'),(120246,10,'M20.029 ','Boutonniere deformity of unspecified finger(s)','Y','0000-00-00 00:00:00'),(120245,10,'M20.022 ','Boutonniere deformity of left finger(s)','Y','0000-00-00 00:00:00'),(120244,10,'M20.021 ','Boutonniere deformity of right finger(s)','Y','0000-00-00 00:00:00'),(120243,10,'M20.019 ','Mallet finger of unspecified finger(s)','Y','0000-00-00 00:00:00'),(120242,10,'M20.012 ','Mallet finger of left finger(s)','Y','0000-00-00 00:00:00'),(120241,10,'M20.011 ','Mallet finger of right finger(s)','Y','0000-00-00 00:00:00'),(120240,10,'M20.009 ','Unspecified deformity of unspecified finger(s)','Y','0000-00-00 00:00:00'),(120239,10,'M20.002 ','Unspecified deformity of left finger(s)','Y','0000-00-00 00:00:00'),(120238,10,'M20.001 ','Unspecified deformity of right finger(s)','Y','0000-00-00 00:00:00'),(120237,10,'M19.93 ','Secondary osteoarthritis, unspecified site','Y','0000-00-00 00:00:00'),(120236,10,'M19.92 ','Post-traumatic osteoarthritis, unspecified site','Y','0000-00-00 00:00:00'),(120235,10,'M19.91 ','Primary osteoarthritis, unspecified site','Y','0000-00-00 00:00:00'),(120234,10,'M19.90 ','Unspecified osteoarthritis, unspecified site','Y','0000-00-00 00:00:00'),(120233,10,'M19.29 ','Secondary osteoarthritis, other specified site','Y','0000-00-00 00:00:00'),(120232,10,'M19.279 ','Secondary osteoarthritis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(120231,10,'M19.272 ','Secondary osteoarthritis, left ankle and foot','Y','0000-00-00 00:00:00'),(120230,10,'M19.271 ','Secondary osteoarthritis, right ankle and foot','Y','0000-00-00 00:00:00'),(120229,10,'M19.249 ','Secondary osteoarthritis, unspecified hand','Y','0000-00-00 00:00:00'),(120228,10,'M19.242 ','Secondary osteoarthritis, left hand','Y','0000-00-00 00:00:00'),(120227,10,'M19.241 ','Secondary osteoarthritis, right hand','Y','0000-00-00 00:00:00'),(120226,10,'M19.239 ','Secondary osteoarthritis, unspecified wrist','Y','0000-00-00 00:00:00'),(120225,10,'M19.232 ','Secondary osteoarthritis, left wrist','Y','0000-00-00 00:00:00'),(120224,10,'M19.231 ','Secondary osteoarthritis, right wrist','Y','0000-00-00 00:00:00'),(120223,10,'M19.229 ','Secondary osteoarthritis, unspecified elbow','Y','0000-00-00 00:00:00'),(120222,10,'M19.222 ','Secondary osteoarthritis, left elbow','Y','0000-00-00 00:00:00'),(120221,10,'M19.221 ','Secondary osteoarthritis, right elbow','Y','0000-00-00 00:00:00'),(120220,10,'M19.219 ','Secondary osteoarthritis, unspecified shoulder','Y','0000-00-00 00:00:00'),(120219,10,'M19.212 ','Secondary osteoarthritis, left shoulder','Y','0000-00-00 00:00:00'),(120218,10,'M19.211 ','Secondary osteoarthritis, right shoulder','Y','0000-00-00 00:00:00'),(120217,10,'M19.19 ','Post-traumatic osteoarthritis, other specified site','Y','0000-00-00 00:00:00'),(120216,10,'M19.179 ','Post-traumatic osteoarthritis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(120215,10,'M19.172 ','Post-traumatic osteoarthritis, left ankle and foot','Y','0000-00-00 00:00:00'),(120214,10,'M19.171 ','Post-traumatic osteoarthritis, right ankle and foot','Y','0000-00-00 00:00:00'),(120213,10,'M19.149 ','Post-traumatic osteoarthritis, unspecified hand','Y','0000-00-00 00:00:00'),(120212,10,'M19.142 ','Post-traumatic osteoarthritis, left hand','Y','0000-00-00 00:00:00'),(120211,10,'M19.141 ','Post-traumatic osteoarthritis, right hand','Y','0000-00-00 00:00:00'),(120210,10,'M19.139 ','Post-traumatic osteoarthritis, unspecified wrist','Y','0000-00-00 00:00:00'),(120209,10,'M19.132 ','Post-traumatic osteoarthritis, left wrist','Y','0000-00-00 00:00:00'),(120208,10,'M19.131 ','Post-traumatic osteoarthritis, right wrist','Y','0000-00-00 00:00:00'),(120207,10,'M19.129 ','Post-traumatic osteoarthritis, unspecified elbow','Y','0000-00-00 00:00:00'),(120206,10,'M19.122 ','Post-traumatic osteoarthritis, left elbow','Y','0000-00-00 00:00:00'),(120205,10,'M19.121 ','Post-traumatic osteoarthritis, right elbow','Y','0000-00-00 00:00:00'),(120203,10,'M19.112 ','Post-traumatic osteoarthritis, left shoulder','Y','0000-00-00 00:00:00'),(120204,10,'M19.119 ','Post-traumatic osteoarthritis, unspecified shoulder','Y','0000-00-00 00:00:00'),(120202,10,'M19.111 ','Post-traumatic osteoarthritis, right shoulder','Y','0000-00-00 00:00:00'),(120201,10,'M19.09 ','Primary osteoarthritis, other specified site','Y','0000-00-00 00:00:00'),(120199,10,'M19.072 ','Primary osteoarthritis, left ankle and foot','Y','0000-00-00 00:00:00'),(120200,10,'M19.079 ','Primary osteoarthritis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(120198,10,'M19.071 ','Primary osteoarthritis, right ankle and foot','Y','0000-00-00 00:00:00'),(120197,10,'M19.049 ','Primary osteoarthritis, unspecified hand','Y','0000-00-00 00:00:00'),(120195,10,'M19.041 ','Primary osteoarthritis, right hand','Y','0000-00-00 00:00:00'),(120196,10,'M19.042 ','Primary osteoarthritis, left hand','Y','0000-00-00 00:00:00'),(120194,10,'M19.039 ','Primary osteoarthritis, unspecified wrist','Y','0000-00-00 00:00:00'),(120193,10,'M19.032 ','Primary osteoarthritis, left wrist','Y','0000-00-00 00:00:00'),(120192,10,'M19.031 ','Primary osteoarthritis, right wrist','Y','0000-00-00 00:00:00'),(120190,10,'M19.022 ','Primary osteoarthritis, left elbow','Y','0000-00-00 00:00:00'),(120191,10,'M19.029 ','Primary osteoarthritis, unspecified elbow','Y','0000-00-00 00:00:00'),(120189,10,'M19.021 ','Primary osteoarthritis, right elbow','Y','0000-00-00 00:00:00'),(120188,10,'M19.019 ','Primary osteoarthritis, unspecified shoulder','Y','0000-00-00 00:00:00'),(120187,10,'M19.012 ','Primary osteoarthritis, left shoulder','Y','0000-00-00 00:00:00'),(120186,10,'M19.011 ','Primary osteoarthritis, right shoulder','Y','0000-00-00 00:00:00'),(120185,10,'M18.9 ','Osteoarthritis of first carpometacarpal joint, unspecified','Y','0000-00-00 00:00:00'),(120184,10,'M18.52 ','Other unilateral secondary osteoarthritis of first carpometacarpal joint, left hand','Y','0000-00-00 00:00:00'),(120183,10,'M18.51 ','Other unilateral secondary osteoarthritis of first carpometacarpal joint, right hand','Y','0000-00-00 00:00:00'),(120182,10,'M18.50 ','Other unilateral secondary osteoarthritis of first carpometacarpal joint, unspecified hand','Y','0000-00-00 00:00:00'),(120181,10,'M18.4 ','Other bilateral secondary osteoarthritis of first carpometacarpal joints','Y','0000-00-00 00:00:00'),(120180,10,'M18.32 ','Unilateral post-traumatic osteoarthritis of first carpometacarpal joint, left hand','Y','0000-00-00 00:00:00'),(120179,10,'M18.31 ','Unilateral post-traumatic osteoarthritis of first carpometacarpal joint, right hand','Y','0000-00-00 00:00:00'),(120178,10,'M18.30 ','Unilateral post-traumatic osteoarthritis of first carpometacarpal joint, unspecified hand','Y','0000-00-00 00:00:00'),(120177,10,'M18.2 ','Bilateral post-traumatic osteoarthritis of first carpometacarpal joints','Y','0000-00-00 00:00:00'),(120176,10,'M18.12 ','Unilateral primary osteoarthritis of first carpometacarpal joint, left hand','Y','0000-00-00 00:00:00'),(120175,10,'M18.11 ','Unilateral primary osteoarthritis of first carpometacarpal joint, right hand','Y','0000-00-00 00:00:00'),(120174,10,'M18.10 ','Unilateral primary osteoarthritis of first carpometacarpal joint, unspecified hand','Y','0000-00-00 00:00:00'),(120173,10,'M18.0 ','Bilateral primary osteoarthritis of first carpometacarpal joints','Y','0000-00-00 00:00:00'),(120172,10,'M17.9 ','Osteoarthritis of knee, unspecified','Y','0000-00-00 00:00:00'),(120171,10,'M17.5 ','Other unilateral secondary osteoarthritis of knee','Y','0000-00-00 00:00:00'),(120170,10,'M17.4 ','Other bilateral secondary osteoarthritis of knee','Y','0000-00-00 00:00:00'),(120169,10,'M17.32 ','Unilateral post-traumatic osteoarthritis, left knee','Y','0000-00-00 00:00:00'),(120168,10,'M17.31 ','Unilateral post-traumatic osteoarthritis, right knee','Y','0000-00-00 00:00:00'),(120167,10,'M17.30 ','Unilateral post-traumatic osteoarthritis, unspecified knee','Y','0000-00-00 00:00:00'),(120166,10,'M17.2 ','Bilateral post-traumatic osteoarthritis of knee','Y','0000-00-00 00:00:00'),(120165,10,'M17.12 ','Unilateral primary osteoarthritis, left knee','Y','0000-00-00 00:00:00'),(120164,10,'M17.11 ','Unilateral primary osteoarthritis, right knee','Y','0000-00-00 00:00:00'),(120163,10,'M17.10 ','Unilateral primary osteoarthritis, unspecified knee','Y','0000-00-00 00:00:00'),(120162,10,'M17.0 ','Bilateral primary osteoarthritis of knee','Y','0000-00-00 00:00:00'),(120161,10,'M16.9 ','Osteoarthritis of hip, unspecified','Y','0000-00-00 00:00:00'),(120160,10,'M16.7 ','Other unilateral secondary osteoarthritis of hip','Y','0000-00-00 00:00:00'),(120159,10,'M16.6 ','Other bilateral secondary osteoarthritis of hip','Y','0000-00-00 00:00:00'),(120158,10,'M16.52 ','Unilateral post-traumatic osteoarthritis, left hip','Y','0000-00-00 00:00:00'),(120157,10,'M16.51 ','Unilateral post-traumatic osteoarthritis, right hip','Y','0000-00-00 00:00:00'),(120156,10,'M16.50 ','Unilateral post-traumatic osteoarthritis, unspecified hip','Y','0000-00-00 00:00:00'),(120155,10,'M16.4 ','Bilateral post-traumatic osteoarthritis of hip','Y','0000-00-00 00:00:00'),(120154,10,'M16.32 ','Unilateral osteoarthritis resulting from hip dysplasia, left hip','Y','0000-00-00 00:00:00'),(120153,10,'M16.31 ','Unilateral osteoarthritis resulting from hip dysplasia, right hip','Y','0000-00-00 00:00:00'),(120152,10,'M16.30 ','Unilateral osteoarthritis resulting from hip dysplasia, unspecified hip','Y','0000-00-00 00:00:00'),(120151,10,'M16.2 ','Bilateral osteoarthritis resulting from hip dysplasia','Y','0000-00-00 00:00:00'),(120150,10,'M16.12 ','Unilateral primary osteoarthritis, left hip','Y','0000-00-00 00:00:00'),(120149,10,'M16.11 ','Unilateral primary osteoarthritis, right hip','Y','0000-00-00 00:00:00'),(120148,10,'M16.10 ','Unilateral primary osteoarthritis, unspecified hip','Y','0000-00-00 00:00:00'),(120146,10,'M15.9 ','Polyosteoarthritis, unspecified','Y','0000-00-00 00:00:00'),(120147,10,'M16.0 ','Bilateral primary osteoarthritis of hip','Y','0000-00-00 00:00:00'),(120145,10,'M15.8 ','Other polyosteoarthritis','Y','0000-00-00 00:00:00'),(120143,10,'M15.3 ','Secondary multiple arthritis','Y','0000-00-00 00:00:00'),(120144,10,'M15.4 ','Erosive (osteo)arthritis','Y','0000-00-00 00:00:00'),(120142,10,'M15.2 ','Bouchard\'s nodes (with arthropathy)','Y','0000-00-00 00:00:00'),(120141,10,'M15.1 ','Heberden\'s nodes (with arthropathy)','Y','0000-00-00 00:00:00'),(120140,10,'M15.0 ','Primary generalized (osteo)arthritis','Y','0000-00-00 00:00:00'),(120139,10,'M14.89 ','Arthropathies in other specified diseases classified elsewhere, multiple sites','Y','0000-00-00 00:00:00'),(120138,10,'M14.88 ','Arthropathies in other specified diseases classified elsewhere, vertebrae','Y','0000-00-00 00:00:00'),(120137,10,'M14.879 ','Arthropathies in other specified diseases classified elsewhere, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(120136,10,'M14.872 ','Arthropathies in other specified diseases classified elsewhere, left ankle and foot','Y','0000-00-00 00:00:00'),(120135,10,'M14.871 ','Arthropathies in other specified diseases classified elsewhere, right ankle and foot','Y','0000-00-00 00:00:00'),(120134,10,'M14.869 ','Arthropathies in other specified diseases classified elsewhere, unspecified knee','Y','0000-00-00 00:00:00'),(120133,10,'M14.862 ','Arthropathies in other specified diseases classified elsewhere, left knee','Y','0000-00-00 00:00:00'),(120132,10,'M14.861 ','Arthropathies in other specified diseases classified elsewhere, right knee','Y','0000-00-00 00:00:00'),(120131,10,'M14.859 ','Arthropathies in other specified diseases classified elsewhere, unspecified hip','Y','0000-00-00 00:00:00'),(120130,10,'M14.852 ','Arthropathies in other specified diseases classified elsewhere, left hip','Y','0000-00-00 00:00:00'),(120129,10,'M14.851 ','Arthropathies in other specified diseases classified elsewhere, right hip','Y','0000-00-00 00:00:00'),(120128,10,'M14.849 ','Arthropathies in other specified diseases classified elsewhere, unspecified hand','Y','0000-00-00 00:00:00'),(120127,10,'M14.842 ','Arthropathies in other specified diseases classified elsewhere, left hand','Y','0000-00-00 00:00:00'),(120126,10,'M14.841 ','Arthropathies in other specified diseases classified elsewhere, right hand','Y','0000-00-00 00:00:00'),(120125,10,'M14.839 ','Arthropathies in other specified diseases classified elsewhere, unspecified wrist','Y','0000-00-00 00:00:00'),(120124,10,'M14.832 ','Arthropathies in other specified diseases classified elsewhere, left wrist','Y','0000-00-00 00:00:00'),(120123,10,'M14.831 ','Arthropathies in other specified diseases classified elsewhere, right wrist','Y','0000-00-00 00:00:00'),(120122,10,'M14.829 ','Arthropathies in other specified diseases classified elsewhere, unspecified elbow','Y','0000-00-00 00:00:00'),(120121,10,'M14.822 ','Arthropathies in other specified diseases classified elsewhere, left elbow','Y','0000-00-00 00:00:00'),(120120,10,'M14.821 ','Arthropathies in other specified diseases classified elsewhere, right elbow','Y','0000-00-00 00:00:00'),(120119,10,'M14.819 ','Arthropathies in other specified diseases classified elsewhere, unspecified shoulder','Y','0000-00-00 00:00:00'),(120118,10,'M14.812 ','Arthropathies in other specified diseases classified elsewhere, left shoulder','Y','0000-00-00 00:00:00'),(120117,10,'M14.811 ','Arthropathies in other specified diseases classified elsewhere, right shoulder','Y','0000-00-00 00:00:00'),(120116,10,'M14.80 ','Arthropathies in other specified diseases classified elsewhere, unspecified site','Y','0000-00-00 00:00:00'),(120115,10,'M14.69 ','Charcot\'s joint, multiple sites','Y','0000-00-00 00:00:00'),(120113,10,'M14.679 ','Charcot\'s joint, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(120114,10,'M14.68 ','Charcot\'s joint, vertebrae','Y','0000-00-00 00:00:00'),(120112,10,'M14.672 ','Charcot\'s joint, left ankle and foot','Y','0000-00-00 00:00:00'),(120110,10,'M14.669 ','Charcot\'s joint, unspecified knee','Y','0000-00-00 00:00:00'),(120111,10,'M14.671 ','Charcot\'s joint, right ankle and foot','Y','0000-00-00 00:00:00'),(120109,10,'M14.662 ','Charcot\'s joint, left knee','Y','0000-00-00 00:00:00'),(120107,10,'M14.659 ','Charcot\'s joint, unspecified hip','Y','0000-00-00 00:00:00'),(120108,10,'M14.661 ','Charcot\'s joint, right knee','Y','0000-00-00 00:00:00'),(120105,10,'M14.651 ','Charcot\'s joint, right hip','Y','0000-00-00 00:00:00'),(120106,10,'M14.652 ','Charcot\'s joint, left hip','Y','0000-00-00 00:00:00'),(120104,10,'M14.649 ','Charcot\'s joint, unspecified hand','Y','0000-00-00 00:00:00'),(120102,10,'M14.641 ','Charcot\'s joint, right hand','Y','0000-00-00 00:00:00'),(120103,10,'M14.642 ','Charcot\'s joint, left hand','Y','0000-00-00 00:00:00'),(120101,10,'M14.639 ','Charcot\'s joint, unspecified wrist','Y','0000-00-00 00:00:00'),(120099,10,'M14.631 ','Charcot\'s joint, right wrist','Y','0000-00-00 00:00:00'),(120100,10,'M14.632 ','Charcot\'s joint, left wrist','Y','0000-00-00 00:00:00'),(120098,10,'M14.629 ','Charcot\'s joint, unspecified elbow','Y','0000-00-00 00:00:00'),(120097,10,'M14.622 ','Charcot\'s joint, left elbow','Y','0000-00-00 00:00:00'),(120095,10,'M14.619 ','Charcot\'s joint, unspecified shoulder','Y','0000-00-00 00:00:00'),(120096,10,'M14.621 ','Charcot\'s joint, right elbow','Y','0000-00-00 00:00:00'),(120094,10,'M14.612 ','Charcot\'s joint, left shoulder','Y','0000-00-00 00:00:00'),(120092,10,'M14.60 ','Charcot\'s joint, unspecified site','Y','0000-00-00 00:00:00'),(120093,10,'M14.611 ','Charcot\'s joint, right shoulder','Y','0000-00-00 00:00:00'),(120091,10,'M13.89 ','Other specified arthritis, multiple sites','Y','0000-00-00 00:00:00'),(120089,10,'M13.879 ','Other specified arthritis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(120090,10,'M13.88 ','Other specified arthritis, other site','Y','0000-00-00 00:00:00'),(120088,10,'M13.872 ','Other specified arthritis, left ankle and foot','Y','0000-00-00 00:00:00'),(120086,10,'M13.869 ','Other specified arthritis, unspecified knee','Y','0000-00-00 00:00:00'),(120087,10,'M13.871 ','Other specified arthritis, right ankle and foot','Y','0000-00-00 00:00:00'),(120085,10,'M13.862 ','Other specified arthritis, left knee','Y','0000-00-00 00:00:00'),(120083,10,'M13.859 ','Other specified arthritis, unspecified hip','Y','0000-00-00 00:00:00'),(120084,10,'M13.861 ','Other specified arthritis, right knee','Y','0000-00-00 00:00:00'),(120082,10,'M13.852 ','Other specified arthritis, left hip','Y','0000-00-00 00:00:00'),(120081,10,'M13.851 ','Other specified arthritis, right hip','Y','0000-00-00 00:00:00'),(120079,10,'M13.842 ','Other specified arthritis, left hand','Y','0000-00-00 00:00:00'),(120080,10,'M13.849 ','Other specified arthritis, unspecified hand','Y','0000-00-00 00:00:00'),(120078,10,'M13.841 ','Other specified arthritis, right hand','Y','0000-00-00 00:00:00'),(120077,10,'M13.839 ','Other specified arthritis, unspecified wrist','Y','0000-00-00 00:00:00'),(120075,10,'M13.831 ','Other specified arthritis, right wrist','Y','0000-00-00 00:00:00'),(120076,10,'M13.832 ','Other specified arthritis, left wrist','Y','0000-00-00 00:00:00'),(120074,10,'M13.829 ','Other specified arthritis, unspecified elbow','Y','0000-00-00 00:00:00'),(120073,10,'M13.822 ','Other specified arthritis, left elbow','Y','0000-00-00 00:00:00'),(120072,10,'M13.821 ','Other specified arthritis, right elbow','Y','0000-00-00 00:00:00'),(120070,10,'M13.812 ','Other specified arthritis, left shoulder','Y','0000-00-00 00:00:00'),(120071,10,'M13.819 ','Other specified arthritis, unspecified shoulder','Y','0000-00-00 00:00:00'),(120069,10,'M13.811 ','Other specified arthritis, right shoulder','Y','0000-00-00 00:00:00'),(120068,10,'M13.80 ','Other specified arthritis, unspecified site','Y','0000-00-00 00:00:00'),(120067,10,'M13.179 ','Monoarthritis, not elsewhere classified, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(120066,10,'M13.172 ','Monoarthritis, not elsewhere classified, left ankle and foot','Y','0000-00-00 00:00:00'),(120064,10,'M13.169 ','Monoarthritis, not elsewhere classified, unspecified knee','Y','0000-00-00 00:00:00'),(120065,10,'M13.171 ','Monoarthritis, not elsewhere classified, right ankle and foot','Y','0000-00-00 00:00:00'),(120063,10,'M13.162 ','Monoarthritis, not elsewhere classified, left knee','Y','0000-00-00 00:00:00'),(120062,10,'M13.161 ','Monoarthritis, not elsewhere classified, right knee','Y','0000-00-00 00:00:00'),(120060,10,'M13.152 ','Monoarthritis, not elsewhere classified, left hip','Y','0000-00-00 00:00:00'),(120061,10,'M13.159 ','Monoarthritis, not elsewhere classified, unspecified hip','Y','0000-00-00 00:00:00'),(120059,10,'M13.151 ','Monoarthritis, not elsewhere classified, right hip','Y','0000-00-00 00:00:00'),(120058,10,'M13.149 ','Monoarthritis, not elsewhere classified, unspecified hand','Y','0000-00-00 00:00:00'),(120057,10,'M13.142 ','Monoarthritis, not elsewhere classified, left hand','Y','0000-00-00 00:00:00'),(120055,10,'M13.139 ','Monoarthritis, not elsewhere classified, unspecified wrist','Y','0000-00-00 00:00:00'),(120056,10,'M13.141 ','Monoarthritis, not elsewhere classified, right hand','Y','0000-00-00 00:00:00'),(120054,10,'M13.132 ','Monoarthritis, not elsewhere classified, left wrist','Y','0000-00-00 00:00:00'),(120053,10,'M13.131 ','Monoarthritis, not elsewhere classified, right wrist','Y','0000-00-00 00:00:00'),(120052,10,'M13.129 ','Monoarthritis, not elsewhere classified, unspecified elbow','Y','0000-00-00 00:00:00'),(120051,10,'M13.122 ','Monoarthritis, not elsewhere classified, left elbow','Y','0000-00-00 00:00:00'),(120050,10,'M13.121 ','Monoarthritis, not elsewhere classified, right elbow','Y','0000-00-00 00:00:00'),(120049,10,'M13.119 ','Monoarthritis, not elsewhere classified, unspecified shoulder','Y','0000-00-00 00:00:00'),(120048,10,'M13.112 ','Monoarthritis, not elsewhere classified, left shoulder','Y','0000-00-00 00:00:00'),(120047,10,'M13.111 ','Monoarthritis, not elsewhere classified, right shoulder','Y','0000-00-00 00:00:00'),(120046,10,'M13.10 ','Monoarthritis, not elsewhere classified, unspecified site','Y','0000-00-00 00:00:00'),(120044,10,'M12.9 ','Arthropathy, unspecified','Y','0000-00-00 00:00:00'),(120045,10,'M13.0 ','Polyarthritis, unspecified','Y','0000-00-00 00:00:00'),(120043,10,'M12.89 ','Other specific arthropathies, not elsewhere classified, multiple sites','Y','0000-00-00 00:00:00'),(120042,10,'M12.88 ','Other specific arthropathies, not elsewhere classified, other specified site','Y','0000-00-00 00:00:00'),(120041,10,'M12.879 ','Other specific arthropathies, not elsewhere classified, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(120040,10,'M12.872 ','Other specific arthropathies, not elsewhere classified, left ankle and foot','Y','0000-00-00 00:00:00'),(120039,10,'M12.871 ','Other specific arthropathies, not elsewhere classified, right ankle and foot','Y','0000-00-00 00:00:00'),(120038,10,'M12.869 ','Other specific arthropathies, not elsewhere classified, unspecified knee','Y','0000-00-00 00:00:00'),(120037,10,'M12.862 ','Other specific arthropathies, not elsewhere classified, left knee','Y','0000-00-00 00:00:00'),(120036,10,'M12.861 ','Other specific arthropathies, not elsewhere classified, right knee','Y','0000-00-00 00:00:00'),(120035,10,'M12.859 ','Other specific arthropathies, not elsewhere classified, unspecified hip','Y','0000-00-00 00:00:00'),(120034,10,'M12.852 ','Other specific arthropathies, not elsewhere classified, left hip','Y','0000-00-00 00:00:00'),(120033,10,'M12.851 ','Other specific arthropathies, not elsewhere classified, right hip','Y','0000-00-00 00:00:00'),(120032,10,'M12.849 ','Other specific arthropathies, not elsewhere classified, unspecified hand','Y','0000-00-00 00:00:00'),(120031,10,'M12.842 ','Other specific arthropathies, not elsewhere classified, left hand','Y','0000-00-00 00:00:00'),(120030,10,'M12.841 ','Other specific arthropathies, not elsewhere classified, right hand','Y','0000-00-00 00:00:00'),(120029,10,'M12.839 ','Other specific arthropathies, not elsewhere classified, unspecified wrist','Y','0000-00-00 00:00:00'),(120028,10,'M12.832 ','Other specific arthropathies, not elsewhere classified, left wrist','Y','0000-00-00 00:00:00'),(120027,10,'M12.831 ','Other specific arthropathies, not elsewhere classified, right wrist','Y','0000-00-00 00:00:00'),(120026,10,'M12.829 ','Other specific arthropathies, not elsewhere classified, unspecified elbow','Y','0000-00-00 00:00:00'),(120025,10,'M12.822 ','Other specific arthropathies, not elsewhere classified, left elbow','Y','0000-00-00 00:00:00'),(120024,10,'M12.821 ','Other specific arthropathies, not elsewhere classified, right elbow','Y','0000-00-00 00:00:00'),(120023,10,'M12.819 ','Other specific arthropathies, not elsewhere classified, unspecified shoulder','Y','0000-00-00 00:00:00'),(120022,10,'M12.812 ','Other specific arthropathies, not elsewhere classified, left shoulder','Y','0000-00-00 00:00:00'),(120021,10,'M12.811 ','Other specific arthropathies, not elsewhere classified, right shoulder','Y','0000-00-00 00:00:00'),(120020,10,'M12.80 ','Other specific arthropathies, not elsewhere classified, unspecified site','Y','0000-00-00 00:00:00'),(120019,10,'M12.59 ','Traumatic arthropathy, multiple sites','Y','0000-00-00 00:00:00'),(120018,10,'M12.58 ','Traumatic arthropathy, other specified site','Y','0000-00-00 00:00:00'),(120017,10,'M12.579 ','Traumatic arthropathy, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(120016,10,'M12.572 ','Traumatic arthropathy, left ankle and foot','Y','0000-00-00 00:00:00'),(120015,10,'M12.571 ','Traumatic arthropathy, right ankle and foot','Y','0000-00-00 00:00:00'),(120013,10,'M12.562 ','Traumatic arthropathy, left knee','Y','0000-00-00 00:00:00'),(120014,10,'M12.569 ','Traumatic arthropathy, unspecified knee','Y','0000-00-00 00:00:00'),(120012,10,'M12.561 ','Traumatic arthropathy, right knee','Y','0000-00-00 00:00:00'),(120011,10,'M12.559 ','Traumatic arthropathy, unspecified hip','Y','0000-00-00 00:00:00'),(120010,10,'M12.552 ','Traumatic arthropathy, left hip','Y','0000-00-00 00:00:00'),(120009,10,'M12.551 ','Traumatic arthropathy, right hip','Y','0000-00-00 00:00:00'),(120008,10,'M12.549 ','Traumatic arthropathy, unspecified hand','Y','0000-00-00 00:00:00'),(120007,10,'M12.542 ','Traumatic arthropathy, left hand','Y','0000-00-00 00:00:00'),(120006,10,'M12.541 ','Traumatic arthropathy, right hand','Y','0000-00-00 00:00:00'),(120005,10,'M12.539 ','Traumatic arthropathy, unspecified wrist','Y','0000-00-00 00:00:00'),(120004,10,'M12.532 ','Traumatic arthropathy, left wrist','Y','0000-00-00 00:00:00'),(120003,10,'M12.531 ','Traumatic arthropathy, right wrist','Y','0000-00-00 00:00:00'),(120002,10,'M12.529 ','Traumatic arthropathy, unspecified elbow','Y','0000-00-00 00:00:00'),(120001,10,'M12.522 ','Traumatic arthropathy, left elbow','Y','0000-00-00 00:00:00'),(119999,10,'M12.519 ','Traumatic arthropathy, unspecified shoulder','Y','0000-00-00 00:00:00'),(120000,10,'M12.521 ','Traumatic arthropathy, right elbow','Y','0000-00-00 00:00:00'),(119998,10,'M12.512 ','Traumatic arthropathy, left shoulder','Y','0000-00-00 00:00:00'),(119997,10,'M12.511 ','Traumatic arthropathy, right shoulder','Y','0000-00-00 00:00:00'),(119995,10,'M12.49 ','Intermittent hydrarthrosis, multiple sites','Y','0000-00-00 00:00:00'),(119996,10,'M12.50 ','Traumatic arthropathy, unspecified site','Y','0000-00-00 00:00:00'),(119994,10,'M12.48 ','Intermittent hydrarthrosis, other site','Y','0000-00-00 00:00:00'),(119993,10,'M12.479 ','Intermittent hydrarthrosis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119992,10,'M12.472 ','Intermittent hydrarthrosis, left ankle and foot','Y','0000-00-00 00:00:00'),(119991,10,'M12.471 ','Intermittent hydrarthrosis, right ankle and foot','Y','0000-00-00 00:00:00'),(119990,10,'M12.469 ','Intermittent hydrarthrosis, unspecified knee','Y','0000-00-00 00:00:00'),(119988,10,'M12.461 ','Intermittent hydrarthrosis, right knee','Y','0000-00-00 00:00:00'),(119989,10,'M12.462 ','Intermittent hydrarthrosis, left knee','Y','0000-00-00 00:00:00'),(119987,10,'M12.459 ','Intermittent hydrarthrosis, unspecified hip','Y','0000-00-00 00:00:00'),(119986,10,'M12.452 ','Intermittent hydrarthrosis, left hip','Y','0000-00-00 00:00:00'),(119985,10,'M12.451 ','Intermittent hydrarthrosis, right hip','Y','0000-00-00 00:00:00'),(119984,10,'M12.449 ','Intermittent hydrarthrosis, unspecified hand','Y','0000-00-00 00:00:00'),(119983,10,'M12.442 ','Intermittent hydrarthrosis, left hand','Y','0000-00-00 00:00:00'),(119982,10,'M12.441 ','Intermittent hydrarthrosis, right hand','Y','0000-00-00 00:00:00'),(119981,10,'M12.439 ','Intermittent hydrarthrosis, unspecified wrist','Y','0000-00-00 00:00:00'),(119979,10,'M12.431 ','Intermittent hydrarthrosis, right wrist','Y','0000-00-00 00:00:00'),(119980,10,'M12.432 ','Intermittent hydrarthrosis, left wrist','Y','0000-00-00 00:00:00'),(119978,10,'M12.429 ','Intermittent hydrarthrosis, unspecified elbow','Y','0000-00-00 00:00:00'),(119977,10,'M12.422 ','Intermittent hydrarthrosis, left elbow','Y','0000-00-00 00:00:00'),(119976,10,'M12.421 ','Intermittent hydrarthrosis, right elbow','Y','0000-00-00 00:00:00'),(119974,10,'M12.412 ','Intermittent hydrarthrosis, left shoulder','Y','0000-00-00 00:00:00'),(119975,10,'M12.419 ','Intermittent hydrarthrosis, unspecified shoulder','Y','0000-00-00 00:00:00'),(119973,10,'M12.411 ','Intermittent hydrarthrosis, right shoulder','Y','0000-00-00 00:00:00'),(119972,10,'M12.40 ','Intermittent hydrarthrosis, unspecified site','Y','0000-00-00 00:00:00'),(119971,10,'M12.39 ','Palindromic rheumatism, multiple sites','Y','0000-00-00 00:00:00'),(119970,10,'M12.38 ','Palindromic rheumatism, other specified site','Y','0000-00-00 00:00:00'),(119969,10,'M12.379 ','Palindromic rheumatism, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119968,10,'M12.372 ','Palindromic rheumatism, left ankle and foot','Y','0000-00-00 00:00:00'),(119967,10,'M12.371 ','Palindromic rheumatism, right ankle and foot','Y','0000-00-00 00:00:00'),(119966,10,'M12.369 ','Palindromic rheumatism, unspecified knee','Y','0000-00-00 00:00:00'),(119965,10,'M12.362 ','Palindromic rheumatism, left knee','Y','0000-00-00 00:00:00'),(119964,10,'M12.361 ','Palindromic rheumatism, right knee','Y','0000-00-00 00:00:00'),(119963,10,'M12.359 ','Palindromic rheumatism, unspecified hip','Y','0000-00-00 00:00:00'),(119962,10,'M12.352 ','Palindromic rheumatism, left hip','Y','0000-00-00 00:00:00'),(119960,10,'M12.349 ','Palindromic rheumatism, unspecified hand','Y','0000-00-00 00:00:00'),(119961,10,'M12.351 ','Palindromic rheumatism, right hip','Y','0000-00-00 00:00:00'),(119959,10,'M12.342 ','Palindromic rheumatism, left hand','Y','0000-00-00 00:00:00'),(119957,10,'M12.339 ','Palindromic rheumatism, unspecified wrist','Y','0000-00-00 00:00:00'),(119958,10,'M12.341 ','Palindromic rheumatism, right hand','Y','0000-00-00 00:00:00'),(119956,10,'M12.332 ','Palindromic rheumatism, left wrist','Y','0000-00-00 00:00:00'),(119954,10,'M12.329 ','Palindromic rheumatism, unspecified elbow','Y','0000-00-00 00:00:00'),(119955,10,'M12.331 ','Palindromic rheumatism, right wrist','Y','0000-00-00 00:00:00'),(119953,10,'M12.322 ','Palindromic rheumatism, left elbow','Y','0000-00-00 00:00:00'),(119951,10,'M12.319 ','Palindromic rheumatism, unspecified shoulder','Y','0000-00-00 00:00:00'),(119952,10,'M12.321 ','Palindromic rheumatism, right elbow','Y','0000-00-00 00:00:00'),(119950,10,'M12.312 ','Palindromic rheumatism, left shoulder','Y','0000-00-00 00:00:00'),(119949,10,'M12.311 ','Palindromic rheumatism, right shoulder','Y','0000-00-00 00:00:00'),(119947,10,'M12.29 ','Villonodular synovitis (pigmented), multiple sites','Y','0000-00-00 00:00:00'),(119948,10,'M12.30 ','Palindromic rheumatism, unspecified site','Y','0000-00-00 00:00:00'),(119946,10,'M12.28 ','Villonodular synovitis (pigmented), other specified site','Y','0000-00-00 00:00:00'),(119945,10,'M12.279 ','Villonodular synovitis (pigmented), unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119944,10,'M12.272 ','Villonodular synovitis (pigmented), left ankle and foot','Y','0000-00-00 00:00:00'),(119943,10,'M12.271 ','Villonodular synovitis (pigmented), right ankle and foot','Y','0000-00-00 00:00:00'),(119942,10,'M12.269 ','Villonodular synovitis (pigmented), unspecified knee','Y','0000-00-00 00:00:00'),(119941,10,'M12.262 ','Villonodular synovitis (pigmented), left knee','Y','0000-00-00 00:00:00'),(119940,10,'M12.261 ','Villonodular synovitis (pigmented), right knee','Y','0000-00-00 00:00:00'),(119939,10,'M12.259 ','Villonodular synovitis (pigmented), unspecified hip','Y','0000-00-00 00:00:00'),(119938,10,'M12.252 ','Villonodular synovitis (pigmented), left hip','Y','0000-00-00 00:00:00'),(119937,10,'M12.251 ','Villonodular synovitis (pigmented), right hip','Y','0000-00-00 00:00:00'),(119936,10,'M12.249 ','Villonodular synovitis (pigmented), unspecified hand','Y','0000-00-00 00:00:00'),(119935,10,'M12.242 ','Villonodular synovitis (pigmented), left hand','Y','0000-00-00 00:00:00'),(119934,10,'M12.241 ','Villonodular synovitis (pigmented), right hand','Y','0000-00-00 00:00:00'),(119933,10,'M12.239 ','Villonodular synovitis (pigmented), unspecified wrist','Y','0000-00-00 00:00:00'),(119932,10,'M12.232 ','Villonodular synovitis (pigmented), left wrist','Y','0000-00-00 00:00:00'),(119931,10,'M12.231 ','Villonodular synovitis (pigmented), right wrist','Y','0000-00-00 00:00:00'),(119930,10,'M12.229 ','Villonodular synovitis (pigmented), unspecified elbow','Y','0000-00-00 00:00:00'),(119929,10,'M12.222 ','Villonodular synovitis (pigmented), left elbow','Y','0000-00-00 00:00:00'),(119928,10,'M12.221 ','Villonodular synovitis (pigmented), right elbow','Y','0000-00-00 00:00:00'),(119927,10,'M12.219 ','Villonodular synovitis (pigmented), unspecified shoulder','Y','0000-00-00 00:00:00'),(119926,10,'M12.212 ','Villonodular synovitis (pigmented), left shoulder','Y','0000-00-00 00:00:00'),(119925,10,'M12.211 ','Villonodular synovitis (pigmented), right shoulder','Y','0000-00-00 00:00:00'),(119924,10,'M12.20 ','Villonodular synovitis (pigmented), unspecified site','Y','0000-00-00 00:00:00'),(119923,10,'M12.19 ','Kaschin-Beck disease, multiple sites','Y','0000-00-00 00:00:00'),(119922,10,'M12.18 ','Kaschin-Beck disease, vertebrae','Y','0000-00-00 00:00:00'),(119921,10,'M12.179 ','Kaschin-Beck disease, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119920,10,'M12.172 ','Kaschin-Beck disease, left ankle and foot','Y','0000-00-00 00:00:00'),(119918,10,'M12.169 ','Kaschin-Beck disease, unspecified knee','Y','0000-00-00 00:00:00'),(119919,10,'M12.171 ','Kaschin-Beck disease, right ankle and foot','Y','0000-00-00 00:00:00'),(119917,10,'M12.162 ','Kaschin-Beck disease, left knee','Y','0000-00-00 00:00:00'),(119915,10,'M12.159 ','Kaschin-Beck disease, unspecified hip','Y','0000-00-00 00:00:00'),(119916,10,'M12.161 ','Kaschin-Beck disease, right knee','Y','0000-00-00 00:00:00'),(119914,10,'M12.152 ','Kaschin-Beck disease, left hip','Y','0000-00-00 00:00:00'),(119912,10,'M12.149 ','Kaschin-Beck disease, unspecified hand','Y','0000-00-00 00:00:00'),(119913,10,'M12.151 ','Kaschin-Beck disease, right hip','Y','0000-00-00 00:00:00'),(119911,10,'M12.142 ','Kaschin-Beck disease, left hand','Y','0000-00-00 00:00:00'),(119910,10,'M12.141 ','Kaschin-Beck disease, right hand','Y','0000-00-00 00:00:00'),(119908,10,'M12.132 ','Kaschin-Beck disease, left wrist','Y','0000-00-00 00:00:00'),(119909,10,'M12.139 ','Kaschin-Beck disease, unspecified wrist','Y','0000-00-00 00:00:00'),(119907,10,'M12.131 ','Kaschin-Beck disease, right wrist','Y','0000-00-00 00:00:00'),(119905,10,'M12.122 ','Kaschin-Beck disease, left elbow','Y','0000-00-00 00:00:00'),(119906,10,'M12.129 ','Kaschin-Beck disease, unspecified elbow','Y','0000-00-00 00:00:00'),(119904,10,'M12.121 ','Kaschin-Beck disease, right elbow','Y','0000-00-00 00:00:00'),(119903,10,'M12.119 ','Kaschin-Beck disease, unspecified shoulder','Y','0000-00-00 00:00:00'),(119901,10,'M12.111 ','Kaschin-Beck disease, right shoulder','Y','0000-00-00 00:00:00'),(119902,10,'M12.112 ','Kaschin-Beck disease, left shoulder','Y','0000-00-00 00:00:00'),(119900,10,'M12.10 ','Kaschin-Beck disease, unspecified site','Y','0000-00-00 00:00:00'),(119899,10,'M12.09 ','Chronic postrheumatic arthropathy [Jaccoud], multiple sites','Y','0000-00-00 00:00:00'),(119898,10,'M12.08 ','Chronic postrheumatic arthropathy [Jaccoud], other specified site','Y','0000-00-00 00:00:00'),(119897,10,'M12.079 ','Chronic postrheumatic arthropathy [Jaccoud], unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119896,10,'M12.072 ','Chronic postrheumatic arthropathy [Jaccoud], left ankle and foot','Y','0000-00-00 00:00:00'),(119895,10,'M12.071 ','Chronic postrheumatic arthropathy [Jaccoud], right ankle and foot','Y','0000-00-00 00:00:00'),(119893,10,'M12.062 ','Chronic postrheumatic arthropathy [Jaccoud], left knee','Y','0000-00-00 00:00:00'),(119894,10,'M12.069 ','Chronic postrheumatic arthropathy [Jaccoud], unspecified knee','Y','0000-00-00 00:00:00'),(119892,10,'M12.061 ','Chronic postrheumatic arthropathy [Jaccoud], right knee','Y','0000-00-00 00:00:00'),(119891,10,'M12.059 ','Chronic postrheumatic arthropathy [Jaccoud], unspecified hip','Y','0000-00-00 00:00:00'),(119889,10,'M12.051 ','Chronic postrheumatic arthropathy [Jaccoud], right hip','Y','0000-00-00 00:00:00'),(119890,10,'M12.052 ','Chronic postrheumatic arthropathy [Jaccoud], left hip','Y','0000-00-00 00:00:00'),(119888,10,'M12.049 ','Chronic postrheumatic arthropathy [Jaccoud], unspecified hand','Y','0000-00-00 00:00:00'),(119887,10,'M12.042 ','Chronic postrheumatic arthropathy [Jaccoud], left hand','Y','0000-00-00 00:00:00'),(119886,10,'M12.041 ','Chronic postrheumatic arthropathy [Jaccoud], right hand','Y','0000-00-00 00:00:00'),(119885,10,'M12.039 ','Chronic postrheumatic arthropathy [Jaccoud], unspecified wrist','Y','0000-00-00 00:00:00'),(119883,10,'M12.031 ','Chronic postrheumatic arthropathy [Jaccoud], right wrist','Y','0000-00-00 00:00:00'),(119884,10,'M12.032 ','Chronic postrheumatic arthropathy [Jaccoud], left wrist','Y','0000-00-00 00:00:00'),(119882,10,'M12.029 ','Chronic postrheumatic arthropathy [Jaccoud], unspecified elbow','Y','0000-00-00 00:00:00'),(119881,10,'M12.022 ','Chronic postrheumatic arthropathy [Jaccoud], left elbow','Y','0000-00-00 00:00:00'),(119880,10,'M12.021 ','Chronic postrheumatic arthropathy [Jaccoud], right elbow','Y','0000-00-00 00:00:00'),(119879,10,'M12.019 ','Chronic postrheumatic arthropathy [Jaccoud], unspecified shoulder','Y','0000-00-00 00:00:00'),(119878,10,'M12.012 ','Chronic postrheumatic arthropathy [Jaccoud], left shoulder','Y','0000-00-00 00:00:00'),(119877,10,'M12.011 ','Chronic postrheumatic arthropathy [Jaccoud], right shoulder','Y','0000-00-00 00:00:00'),(119875,10,'M11.9 ','Crystal arthropathy, unspecified','Y','0000-00-00 00:00:00'),(119876,10,'M12.00 ','Chronic postrheumatic arthropathy [Jaccoud], unspecified site','Y','0000-00-00 00:00:00'),(119874,10,'M11.89 ','Other specified crystal arthropathies, multiple sites','Y','0000-00-00 00:00:00'),(119872,10,'M11.879 ','Other specified crystal arthropathies, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119873,10,'M11.88 ','Other specified crystal arthropathies, vertebrae','Y','0000-00-00 00:00:00'),(119871,10,'M11.872 ','Other specified crystal arthropathies, left ankle and foot','Y','0000-00-00 00:00:00'),(119870,10,'M11.871 ','Other specified crystal arthropathies, right ankle and foot','Y','0000-00-00 00:00:00'),(119868,10,'M11.862 ','Other specified crystal arthropathies, left knee','Y','0000-00-00 00:00:00'),(119869,10,'M11.869 ','Other specified crystal arthropathies, unspecified knee','Y','0000-00-00 00:00:00'),(119867,10,'M11.861 ','Other specified crystal arthropathies, right knee','Y','0000-00-00 00:00:00'),(119866,10,'M11.859 ','Other specified crystal arthropathies, unspecified hip','Y','0000-00-00 00:00:00'),(119864,10,'M11.851 ','Other specified crystal arthropathies, right hip','Y','0000-00-00 00:00:00'),(119865,10,'M11.852 ','Other specified crystal arthropathies, left hip','Y','0000-00-00 00:00:00'),(119863,10,'M11.849 ','Other specified crystal arthropathies, unspecified hand','Y','0000-00-00 00:00:00'),(119862,10,'M11.842 ','Other specified crystal arthropathies, left hand','Y','0000-00-00 00:00:00'),(119861,10,'M11.841 ','Other specified crystal arthropathies, right hand','Y','0000-00-00 00:00:00'),(119860,10,'M11.839 ','Other specified crystal arthropathies, unspecified wrist','Y','0000-00-00 00:00:00'),(119858,10,'M11.831 ','Other specified crystal arthropathies, right wrist','Y','0000-00-00 00:00:00'),(119859,10,'M11.832 ','Other specified crystal arthropathies, left wrist','Y','0000-00-00 00:00:00'),(119857,10,'M11.829 ','Other specified crystal arthropathies, unspecified elbow','Y','0000-00-00 00:00:00'),(119856,10,'M11.822 ','Other specified crystal arthropathies, left elbow','Y','0000-00-00 00:00:00'),(119855,10,'M11.821 ','Other specified crystal arthropathies, right elbow','Y','0000-00-00 00:00:00'),(119854,10,'M11.819 ','Other specified crystal arthropathies, unspecified shoulder','Y','0000-00-00 00:00:00'),(119853,10,'M11.812 ','Other specified crystal arthropathies, left shoulder','Y','0000-00-00 00:00:00'),(119852,10,'M11.811 ','Other specified crystal arthropathies, right shoulder','Y','0000-00-00 00:00:00'),(119851,10,'M11.80 ','Other specified crystal arthropathies, unspecified site','Y','0000-00-00 00:00:00'),(119849,10,'M11.28 ','Other chondrocalcinosis, vertebrae','Y','0000-00-00 00:00:00'),(119850,10,'M11.29 ','Other chondrocalcinosis, multiple sites','Y','0000-00-00 00:00:00'),(119848,10,'M11.279 ','Other chondrocalcinosis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119847,10,'M11.272 ','Other chondrocalcinosis, left ankle and foot','Y','0000-00-00 00:00:00'),(119846,10,'M11.271 ','Other chondrocalcinosis, right ankle and foot','Y','0000-00-00 00:00:00'),(119845,10,'M11.269 ','Other chondrocalcinosis, unspecified knee','Y','0000-00-00 00:00:00'),(119844,10,'M11.262 ','Other chondrocalcinosis, left knee','Y','0000-00-00 00:00:00'),(119843,10,'M11.261 ','Other chondrocalcinosis, right knee','Y','0000-00-00 00:00:00'),(119842,10,'M11.259 ','Other chondrocalcinosis, unspecified hip','Y','0000-00-00 00:00:00'),(119840,10,'M11.251 ','Other chondrocalcinosis, right hip','Y','0000-00-00 00:00:00'),(119841,10,'M11.252 ','Other chondrocalcinosis, left hip','Y','0000-00-00 00:00:00'),(119839,10,'M11.249 ','Other chondrocalcinosis, unspecified hand','Y','0000-00-00 00:00:00'),(119838,10,'M11.242 ','Other chondrocalcinosis, left hand','Y','0000-00-00 00:00:00'),(119837,10,'M11.241 ','Other chondrocalcinosis, right hand','Y','0000-00-00 00:00:00'),(119836,10,'M11.239 ','Other chondrocalcinosis, unspecified wrist','Y','0000-00-00 00:00:00'),(119835,10,'M11.232 ','Other chondrocalcinosis, left wrist','Y','0000-00-00 00:00:00'),(119834,10,'M11.231 ','Other chondrocalcinosis, right wrist','Y','0000-00-00 00:00:00'),(119832,10,'M11.222 ','Other chondrocalcinosis, left elbow','Y','0000-00-00 00:00:00'),(119833,10,'M11.229 ','Other chondrocalcinosis, unspecified elbow','Y','0000-00-00 00:00:00'),(119831,10,'M11.221 ','Other chondrocalcinosis, right elbow','Y','0000-00-00 00:00:00'),(119829,10,'M11.212 ','Other chondrocalcinosis, left shoulder','Y','0000-00-00 00:00:00'),(119830,10,'M11.219 ','Other chondrocalcinosis, unspecified shoulder','Y','0000-00-00 00:00:00'),(119828,10,'M11.211 ','Other chondrocalcinosis, right shoulder','Y','0000-00-00 00:00:00'),(119826,10,'M11.19 ','Familial chondrocalcinosis, multiple sites','Y','0000-00-00 00:00:00'),(119827,10,'M11.20 ','Other chondrocalcinosis, unspecified site','Y','0000-00-00 00:00:00'),(119825,10,'M11.18 ','Familial chondrocalcinosis, vertebrae','Y','0000-00-00 00:00:00'),(119824,10,'M11.179 ','Familial chondrocalcinosis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119823,10,'M11.172 ','Familial chondrocalcinosis, left ankle and foot','Y','0000-00-00 00:00:00'),(119822,10,'M11.171 ','Familial chondrocalcinosis, right ankle and foot','Y','0000-00-00 00:00:00'),(119820,10,'M11.162 ','Familial chondrocalcinosis, left knee','Y','0000-00-00 00:00:00'),(119821,10,'M11.169 ','Familial chondrocalcinosis, unspecified knee','Y','0000-00-00 00:00:00'),(119819,10,'M11.161 ','Familial chondrocalcinosis, right knee','Y','0000-00-00 00:00:00'),(119818,10,'M11.159 ','Familial chondrocalcinosis, unspecified hip','Y','0000-00-00 00:00:00'),(119816,10,'M11.151 ','Familial chondrocalcinosis, right hip','Y','0000-00-00 00:00:00'),(119817,10,'M11.152 ','Familial chondrocalcinosis, left hip','Y','0000-00-00 00:00:00'),(119815,10,'M11.149 ','Familial chondrocalcinosis, unspecified hand','Y','0000-00-00 00:00:00'),(119814,10,'M11.142 ','Familial chondrocalcinosis, left hand','Y','0000-00-00 00:00:00'),(119813,10,'M11.141 ','Familial chondrocalcinosis, right hand','Y','0000-00-00 00:00:00'),(119812,10,'M11.139 ','Familial chondrocalcinosis, unspecified wrist','Y','0000-00-00 00:00:00'),(119811,10,'M11.132 ','Familial chondrocalcinosis, left wrist','Y','0000-00-00 00:00:00'),(119810,10,'M11.131 ','Familial chondrocalcinosis, right wrist','Y','0000-00-00 00:00:00'),(119809,10,'M11.129 ','Familial chondrocalcinosis, unspecified elbow','Y','0000-00-00 00:00:00'),(119808,10,'M11.122 ','Familial chondrocalcinosis, left elbow','Y','0000-00-00 00:00:00'),(119807,10,'M11.121 ','Familial chondrocalcinosis, right elbow','Y','0000-00-00 00:00:00'),(119806,10,'M11.119 ','Familial chondrocalcinosis, unspecified shoulder','Y','0000-00-00 00:00:00'),(119805,10,'M11.112 ','Familial chondrocalcinosis, left shoulder','Y','0000-00-00 00:00:00'),(119804,10,'M11.111 ','Familial chondrocalcinosis, right shoulder','Y','0000-00-00 00:00:00'),(119803,10,'M11.10 ','Familial chondrocalcinosis, unspecified site','Y','0000-00-00 00:00:00'),(119802,10,'M11.09 ','Hydroxyapatite deposition disease, multiple sites','Y','0000-00-00 00:00:00'),(119801,10,'M11.08 ','Hydroxyapatite deposition disease, vertebrae','Y','0000-00-00 00:00:00'),(119800,10,'M11.079 ','Hydroxyapatite deposition disease, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119799,10,'M11.072 ','Hydroxyapatite deposition disease, left ankle and foot','Y','0000-00-00 00:00:00'),(119798,10,'M11.071 ','Hydroxyapatite deposition disease, right ankle and foot','Y','0000-00-00 00:00:00'),(119797,10,'M11.069 ','Hydroxyapatite deposition disease, unspecified knee','Y','0000-00-00 00:00:00'),(119796,10,'M11.062 ','Hydroxyapatite deposition disease, left knee','Y','0000-00-00 00:00:00'),(119795,10,'M11.061 ','Hydroxyapatite deposition disease, right knee','Y','0000-00-00 00:00:00'),(119793,10,'M11.052 ','Hydroxyapatite deposition disease, left hip','Y','0000-00-00 00:00:00'),(119794,10,'M11.059 ','Hydroxyapatite deposition disease, unspecified hip','Y','0000-00-00 00:00:00'),(119792,10,'M11.051 ','Hydroxyapatite deposition disease, right hip','Y','0000-00-00 00:00:00'),(119791,10,'M11.049 ','Hydroxyapatite deposition disease, unspecified hand','Y','0000-00-00 00:00:00'),(119790,10,'M11.042 ','Hydroxyapatite deposition disease, left hand','Y','0000-00-00 00:00:00'),(119789,10,'M11.041 ','Hydroxyapatite deposition disease, right hand','Y','0000-00-00 00:00:00'),(119788,10,'M11.039 ','Hydroxyapatite deposition disease, unspecified wrist','Y','0000-00-00 00:00:00'),(119787,10,'M11.032 ','Hydroxyapatite deposition disease, left wrist','Y','0000-00-00 00:00:00'),(119786,10,'M11.031 ','Hydroxyapatite deposition disease, right wrist','Y','0000-00-00 00:00:00'),(119785,10,'M11.029 ','Hydroxyapatite deposition disease, unspecified elbow','Y','0000-00-00 00:00:00'),(119784,10,'M11.022 ','Hydroxyapatite deposition disease, left elbow','Y','0000-00-00 00:00:00'),(119783,10,'M11.021 ','Hydroxyapatite deposition disease, right elbow','Y','0000-00-00 00:00:00'),(119782,10,'M11.019 ','Hydroxyapatite deposition disease, unspecified shoulder','Y','0000-00-00 00:00:00'),(119781,10,'M11.012 ','Hydroxyapatite deposition disease, left shoulder','Y','0000-00-00 00:00:00'),(119780,10,'M11.011 ','Hydroxyapatite deposition disease, right shoulder','Y','0000-00-00 00:00:00'),(119778,10,'M10.9 ','Gout, unspecified','Y','0000-00-00 00:00:00'),(119779,10,'M11.00 ','Hydroxyapatite deposition disease, unspecified site','Y','0000-00-00 00:00:00'),(119776,10,'M10.48 ','Other secondary gout, vertebrae','Y','0000-00-00 00:00:00'),(119777,10,'M10.49 ','Other secondary gout, multiple sites','Y','0000-00-00 00:00:00'),(119775,10,'M10.479 ','Other secondary gout, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119774,10,'M10.472 ','Other secondary gout, left ankle and foot','Y','0000-00-00 00:00:00'),(119773,10,'M10.471 ','Other secondary gout, right ankle and foot','Y','0000-00-00 00:00:00'),(119772,10,'M10.469 ','Other secondary gout, unspecified knee','Y','0000-00-00 00:00:00'),(119771,10,'M10.462 ','Other secondary gout, left knee','Y','0000-00-00 00:00:00'),(119770,10,'M10.461 ','Other secondary gout, right knee','Y','0000-00-00 00:00:00'),(119769,10,'M10.459 ','Other secondary gout, unspecified hip','Y','0000-00-00 00:00:00'),(119768,10,'M10.452 ','Other secondary gout, left hip','Y','0000-00-00 00:00:00'),(119767,10,'M10.451 ','Other secondary gout, right hip','Y','0000-00-00 00:00:00'),(119766,10,'M10.449 ','Other secondary gout, unspecified hand','Y','0000-00-00 00:00:00'),(119765,10,'M10.442 ','Other secondary gout, left hand','Y','0000-00-00 00:00:00'),(119764,10,'M10.441 ','Other secondary gout, right hand','Y','0000-00-00 00:00:00'),(119763,10,'M10.439 ','Other secondary gout, unspecified wrist','Y','0000-00-00 00:00:00'),(119762,10,'M10.432 ','Other secondary gout, left wrist','Y','0000-00-00 00:00:00'),(119761,10,'M10.431 ','Other secondary gout, right wrist','Y','0000-00-00 00:00:00'),(119760,10,'M10.429 ','Other secondary gout, unspecified elbow','Y','0000-00-00 00:00:00'),(119759,10,'M10.422 ','Other secondary gout, left elbow','Y','0000-00-00 00:00:00'),(119758,10,'M10.421 ','Other secondary gout, right elbow','Y','0000-00-00 00:00:00'),(119757,10,'M10.419 ','Other secondary gout, unspecified shoulder','Y','0000-00-00 00:00:00'),(119756,10,'M10.412 ','Other secondary gout, left shoulder','Y','0000-00-00 00:00:00'),(119755,10,'M10.411 ','Other secondary gout, right shoulder','Y','0000-00-00 00:00:00'),(119754,10,'M10.40 ','Other secondary gout, unspecified site','Y','0000-00-00 00:00:00'),(119753,10,'M10.39 ','Gout due to renal impairment, multiple sites','Y','0000-00-00 00:00:00'),(119752,10,'M10.38 ','Gout due to renal impairment, vertebrae','Y','0000-00-00 00:00:00'),(119751,10,'M10.379 ','Gout due to renal impairment, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119750,10,'M10.372 ','Gout due to renal impairment, left ankle and foot','Y','0000-00-00 00:00:00'),(119749,10,'M10.371 ','Gout due to renal impairment, right ankle and foot','Y','0000-00-00 00:00:00'),(119748,10,'M10.369 ','Gout due to renal impairment, unspecified knee','Y','0000-00-00 00:00:00'),(119747,10,'M10.362 ','Gout due to renal impairment, left knee','Y','0000-00-00 00:00:00'),(119746,10,'M10.361 ','Gout due to renal impairment, right knee','Y','0000-00-00 00:00:00'),(119745,10,'M10.359 ','Gout due to renal impairment, unspecified hip','Y','0000-00-00 00:00:00'),(119744,10,'M10.352 ','Gout due to renal impairment, left hip','Y','0000-00-00 00:00:00'),(119743,10,'M10.351 ','Gout due to renal impairment, right hip','Y','0000-00-00 00:00:00'),(119742,10,'M10.349 ','Gout due to renal impairment, unspecified hand','Y','0000-00-00 00:00:00'),(119741,10,'M10.342 ','Gout due to renal impairment, left hand','Y','0000-00-00 00:00:00'),(119740,10,'M10.341 ','Gout due to renal impairment, right hand','Y','0000-00-00 00:00:00'),(119739,10,'M10.339 ','Gout due to renal impairment, unspecified wrist','Y','0000-00-00 00:00:00'),(119738,10,'M10.332 ','Gout due to renal impairment, left wrist','Y','0000-00-00 00:00:00'),(119737,10,'M10.331 ','Gout due to renal impairment, right wrist','Y','0000-00-00 00:00:00'),(119736,10,'M10.329 ','Gout due to renal impairment, unspecified elbow','Y','0000-00-00 00:00:00'),(119735,10,'M10.322 ','Gout due to renal impairment, left elbow','Y','0000-00-00 00:00:00'),(119734,10,'M10.321 ','Gout due to renal impairment, right elbow','Y','0000-00-00 00:00:00'),(119733,10,'M10.319 ','Gout due to renal impairment, unspecified shoulder','Y','0000-00-00 00:00:00'),(119732,10,'M10.312 ','Gout due to renal impairment, left shoulder','Y','0000-00-00 00:00:00'),(119731,10,'M10.311 ','Gout due to renal impairment, right shoulder','Y','0000-00-00 00:00:00'),(119730,10,'M10.30 ','Gout due to renal impairment, unspecified site','Y','0000-00-00 00:00:00'),(119729,10,'M10.29 ','Drug-induced gout, multiple sites','Y','0000-00-00 00:00:00'),(119728,10,'M10.28 ','Drug-induced gout, vertebrae','Y','0000-00-00 00:00:00'),(119727,10,'M10.279 ','Drug-induced gout, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119726,10,'M10.272 ','Drug-induced gout, left ankle and foot','Y','0000-00-00 00:00:00'),(119725,10,'M10.271 ','Drug-induced gout, right ankle and foot','Y','0000-00-00 00:00:00'),(119724,10,'M10.269 ','Drug-induced gout, unspecified knee','Y','0000-00-00 00:00:00'),(119723,10,'M10.262 ','Drug-induced gout, left knee','Y','0000-00-00 00:00:00'),(119722,10,'M10.261 ','Drug-induced gout, right knee','Y','0000-00-00 00:00:00'),(119721,10,'M10.259 ','Drug-induced gout, unspecified hip','Y','0000-00-00 00:00:00'),(119720,10,'M10.252 ','Drug-induced gout, left hip','Y','0000-00-00 00:00:00'),(119719,10,'M10.251 ','Drug-induced gout, right hip','Y','0000-00-00 00:00:00'),(119718,10,'M10.249 ','Drug-induced gout, unspecified hand','Y','0000-00-00 00:00:00'),(119717,10,'M10.242 ','Drug-induced gout, left hand','Y','0000-00-00 00:00:00'),(119716,10,'M10.241 ','Drug-induced gout, right hand','Y','0000-00-00 00:00:00'),(119715,10,'M10.239 ','Drug-induced gout, unspecified wrist','Y','0000-00-00 00:00:00'),(119714,10,'M10.232 ','Drug-induced gout, left wrist','Y','0000-00-00 00:00:00'),(119713,10,'M10.231 ','Drug-induced gout, right wrist','Y','0000-00-00 00:00:00'),(119712,10,'M10.229 ','Drug-induced gout, unspecified elbow','Y','0000-00-00 00:00:00'),(119711,10,'M10.222 ','Drug-induced gout, left elbow','Y','0000-00-00 00:00:00'),(119710,10,'M10.221 ','Drug-induced gout, right elbow','Y','0000-00-00 00:00:00'),(119709,10,'M10.219 ','Drug-induced gout, unspecified shoulder','Y','0000-00-00 00:00:00'),(119707,10,'M10.211 ','Drug-induced gout, right shoulder','Y','0000-00-00 00:00:00'),(119708,10,'M10.212 ','Drug-induced gout, left shoulder','Y','0000-00-00 00:00:00'),(119705,10,'M10.19 ','Lead-induced gout, multiple sites','Y','0000-00-00 00:00:00'),(119706,10,'M10.20 ','Drug-induced gout, unspecified site','Y','0000-00-00 00:00:00'),(119704,10,'M10.18 ','Lead-induced gout, vertebrae','Y','0000-00-00 00:00:00'),(119702,10,'M10.172 ','Lead-induced gout, left ankle and foot','Y','0000-00-00 00:00:00'),(119703,10,'M10.179 ','Lead-induced gout, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119701,10,'M10.171 ','Lead-induced gout, right ankle and foot','Y','0000-00-00 00:00:00'),(119699,10,'M10.162 ','Lead-induced gout, left knee','Y','0000-00-00 00:00:00'),(119700,10,'M10.169 ','Lead-induced gout, unspecified knee','Y','0000-00-00 00:00:00'),(119698,10,'M10.161 ','Lead-induced gout, right knee','Y','0000-00-00 00:00:00'),(119696,10,'M10.152 ','Lead-induced gout, left hip','Y','0000-00-00 00:00:00'),(119697,10,'M10.159 ','Lead-induced gout, unspecified hip','Y','0000-00-00 00:00:00'),(119695,10,'M10.151 ','Lead-induced gout, right hip','Y','0000-00-00 00:00:00'),(119693,10,'M10.142 ','Lead-induced gout, left hand','Y','0000-00-00 00:00:00'),(119694,10,'M10.149 ','Lead-induced gout, unspecified hand','Y','0000-00-00 00:00:00'),(119692,10,'M10.141 ','Lead-induced gout, right hand','Y','0000-00-00 00:00:00'),(119690,10,'M10.132 ','Lead-induced gout, left wrist','Y','0000-00-00 00:00:00'),(119691,10,'M10.139 ','Lead-induced gout, unspecified wrist','Y','0000-00-00 00:00:00'),(119689,10,'M10.131 ','Lead-induced gout, right wrist','Y','0000-00-00 00:00:00'),(119687,10,'M10.122 ','Lead-induced gout, left elbow','Y','0000-00-00 00:00:00'),(119688,10,'M10.129 ','Lead-induced gout, unspecified elbow','Y','0000-00-00 00:00:00'),(119686,10,'M10.121 ','Lead-induced gout, right elbow','Y','0000-00-00 00:00:00'),(119684,10,'M10.112 ','Lead-induced gout, left shoulder','Y','0000-00-00 00:00:00'),(119685,10,'M10.119 ','Lead-induced gout, unspecified shoulder','Y','0000-00-00 00:00:00'),(119683,10,'M10.111 ','Lead-induced gout, right shoulder','Y','0000-00-00 00:00:00'),(119681,10,'M10.09 ','Idiopathic gout, multiple sites','Y','0000-00-00 00:00:00'),(119682,10,'M10.10 ','Lead-induced gout, unspecified site','Y','0000-00-00 00:00:00'),(119679,10,'M10.079 ','Idiopathic gout, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119680,10,'M10.08 ','Idiopathic gout, vertebrae','Y','0000-00-00 00:00:00'),(119677,10,'M10.071 ','Idiopathic gout, right ankle and foot','Y','0000-00-00 00:00:00'),(119678,10,'M10.072 ','Idiopathic gout, left ankle and foot','Y','0000-00-00 00:00:00'),(119675,10,'M10.062 ','Idiopathic gout, left knee','Y','0000-00-00 00:00:00'),(119676,10,'M10.069 ','Idiopathic gout, unspecified knee','Y','0000-00-00 00:00:00'),(119673,10,'M10.059 ','Idiopathic gout, unspecified hip','Y','0000-00-00 00:00:00'),(119674,10,'M10.061 ','Idiopathic gout, right knee','Y','0000-00-00 00:00:00'),(119671,10,'M10.051 ','Idiopathic gout, right hip','Y','0000-00-00 00:00:00'),(119672,10,'M10.052 ','Idiopathic gout, left hip','Y','0000-00-00 00:00:00'),(119669,10,'M10.042 ','Idiopathic gout, left hand','Y','0000-00-00 00:00:00'),(119670,10,'M10.049 ','Idiopathic gout, unspecified hand','Y','0000-00-00 00:00:00'),(119668,10,'M10.041 ','Idiopathic gout, right hand','Y','0000-00-00 00:00:00'),(119666,10,'M10.032 ','Idiopathic gout, left wrist','Y','0000-00-00 00:00:00'),(119667,10,'M10.039 ','Idiopathic gout, unspecified wrist','Y','0000-00-00 00:00:00'),(119664,10,'M10.029 ','Idiopathic gout, unspecified elbow','Y','0000-00-00 00:00:00'),(119665,10,'M10.031 ','Idiopathic gout, right wrist','Y','0000-00-00 00:00:00'),(119663,10,'M10.022 ','Idiopathic gout, left elbow','Y','0000-00-00 00:00:00'),(119661,10,'M10.019 ','Idiopathic gout, unspecified shoulder','Y','0000-00-00 00:00:00'),(119662,10,'M10.021 ','Idiopathic gout, right elbow','Y','0000-00-00 00:00:00'),(119659,10,'M10.011 ','Idiopathic gout, right shoulder','Y','0000-00-00 00:00:00'),(119660,10,'M10.012 ','Idiopathic gout, left shoulder','Y','0000-00-00 00:00:00'),(119658,10,'M10.00 ','Idiopathic gout, unspecified site','Y','0000-00-00 00:00:00'),(119656,10,'M1A.9XX0 ','Chronic gout, unspecified, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119657,10,'M1A.9XX1 ','Chronic gout, unspecified, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119655,10,'M1A.49X1 ','Other secondary chronic gout, multiple sites, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119654,10,'M1A.49X0 ','Other secondary chronic gout, multiple sites, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119653,10,'M1A.48X1 ','Other secondary chronic gout, vertebrae, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119652,10,'M1A.48X0 ','Other secondary chronic gout, vertebrae, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119651,10,'M1A.4791 ','Other secondary chronic gout, unspecified ankle and foot, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119650,10,'M1A.4790 ','Other secondary chronic gout, unspecified ankle and foot, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119649,10,'M1A.4721 ','Other secondary chronic gout, left ankle and foot, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119648,10,'M1A.4720 ','Other secondary chronic gout, left ankle and foot, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119647,10,'M1A.4711 ','Other secondary chronic gout, right ankle and foot, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119646,10,'M1A.4710 ','Other secondary chronic gout, right ankle and foot, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119645,10,'M1A.4691 ','Other secondary chronic gout, unspecified knee, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119644,10,'M1A.4690 ','Other secondary chronic gout, unspecified knee, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119643,10,'M1A.4621 ','Other secondary chronic gout, left knee, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119642,10,'M1A.4620 ','Other secondary chronic gout, left knee, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119641,10,'M1A.4611 ','Other secondary chronic gout, right knee, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119639,10,'M1A.4591 ','Other secondary chronic gout, unspecified hip, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119640,10,'M1A.4610 ','Other secondary chronic gout, right knee, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119638,10,'M1A.4590 ','Other secondary chronic gout, unspecified hip, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119637,10,'M1A.4521 ','Other secondary chronic gout, left hip, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119636,10,'M1A.4520 ','Other secondary chronic gout, left hip, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119634,10,'M1A.4510 ','Other secondary chronic gout, right hip, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119635,10,'M1A.4511 ','Other secondary chronic gout, right hip, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119633,10,'M1A.4491 ','Other secondary chronic gout, unspecified hand, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119632,10,'M1A.4490 ','Other secondary chronic gout, unspecified hand, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119631,10,'M1A.4421 ','Other secondary chronic gout, left hand, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119630,10,'M1A.4420 ','Other secondary chronic gout, left hand, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119629,10,'M1A.4411 ','Other secondary chronic gout, right hand, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119628,10,'M1A.4410 ','Other secondary chronic gout, right hand, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119627,10,'M1A.4391 ','Other secondary chronic gout, unspecified wrist, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119626,10,'M1A.4390 ','Other secondary chronic gout, unspecified wrist, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119625,10,'M1A.4321 ','Other secondary chronic gout, left wrist, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119624,10,'M1A.4320 ','Other secondary chronic gout, left wrist, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119623,10,'M1A.4311 ','Other secondary chronic gout, right wrist, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119622,10,'M1A.4310 ','Other secondary chronic gout, right wrist, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119621,10,'M1A.4291 ','Other secondary chronic gout, unspecified elbow, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119620,10,'M1A.4290 ','Other secondary chronic gout, unspecified elbow, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119619,10,'M1A.4221 ','Other secondary chronic gout, left elbow, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119618,10,'M1A.4220 ','Other secondary chronic gout, left elbow, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119617,10,'M1A.4211 ','Other secondary chronic gout, right elbow, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119616,10,'M1A.4210 ','Other secondary chronic gout, right elbow, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119615,10,'M1A.4191 ','Other secondary chronic gout, unspecified shoulder, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119614,10,'M1A.4190 ','Other secondary chronic gout, unspecified shoulder, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119613,10,'M1A.4121 ','Other secondary chronic gout, left shoulder, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119612,10,'M1A.4120 ','Other secondary chronic gout, left shoulder, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119611,10,'M1A.4111 ','Other secondary chronic gout, right shoulder, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119610,10,'M1A.4110 ','Other secondary chronic gout, right shoulder, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119609,10,'M1A.40X1 ','Other secondary chronic gout, unspecified site, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119608,10,'M1A.40X0 ','Other secondary chronic gout, unspecified site, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119607,10,'M1A.39X1 ','Chronic gout due to renal impairment, multiple sites, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119606,10,'M1A.39X0 ','Chronic gout due to renal impairment, multiple sites, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119605,10,'M1A.38X1 ','Chronic gout due to renal impairment, vertebrae, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119604,10,'M1A.38X0 ','Chronic gout due to renal impairment, vertebrae, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119603,10,'M1A.3791 ','Chronic gout due to renal impairment, unspecified ankle and foot, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119602,10,'M1A.3790 ','Chronic gout due to renal impairment, unspecified ankle and foot, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119601,10,'M1A.3721 ','Chronic gout due to renal impairment, left ankle and foot, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119600,10,'M1A.3720 ','Chronic gout due to renal impairment, left ankle and foot, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119599,10,'M1A.3711 ','Chronic gout due to renal impairment, right ankle and foot, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119598,10,'M1A.3710 ','Chronic gout due to renal impairment, right ankle and foot, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119597,10,'M1A.3691 ','Chronic gout due to renal impairment, unspecified knee, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119596,10,'M1A.3690 ','Chronic gout due to renal impairment, unspecified knee, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119595,10,'M1A.3621 ','Chronic gout due to renal impairment, left knee, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119594,10,'M1A.3620 ','Chronic gout due to renal impairment, left knee, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119593,10,'M1A.3611 ','Chronic gout due to renal impairment, right knee, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119592,10,'M1A.3610 ','Chronic gout due to renal impairment, right knee, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119591,10,'M1A.3591 ','Chronic gout due to renal impairment, unspecified hip, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119590,10,'M1A.3590 ','Chronic gout due to renal impairment, unspecified hip, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119589,10,'M1A.3521 ','Chronic gout due to renal impairment, left hip, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119588,10,'M1A.3520 ','Chronic gout due to renal impairment, left hip, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119587,10,'M1A.3511 ','Chronic gout due to renal impairment, right hip, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119586,10,'M1A.3510 ','Chronic gout due to renal impairment, right hip, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119585,10,'M1A.3491 ','Chronic gout due to renal impairment, unspecified hand, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119584,10,'M1A.3490 ','Chronic gout due to renal impairment, unspecified hand, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119583,10,'M1A.3421 ','Chronic gout due to renal impairment, left hand, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119582,10,'M1A.3420 ','Chronic gout due to renal impairment, left hand, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119581,10,'M1A.3411 ','Chronic gout due to renal impairment, right hand, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119580,10,'M1A.3410 ','Chronic gout due to renal impairment, right hand, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119579,10,'M1A.3391 ','Chronic gout due to renal impairment, unspecified wrist, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119578,10,'M1A.3390 ','Chronic gout due to renal impairment, unspecified wrist, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119577,10,'M1A.3321 ','Chronic gout due to renal impairment, left wrist, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119576,10,'M1A.3320 ','Chronic gout due to renal impairment, left wrist, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119575,10,'M1A.3311 ','Chronic gout due to renal impairment, right wrist, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119574,10,'M1A.3310 ','Chronic gout due to renal impairment, right wrist, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119573,10,'M1A.3291 ','Chronic gout due to renal impairment, unspecified elbow, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119572,10,'M1A.3290 ','Chronic gout due to renal impairment, unspecified elbow, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119571,10,'M1A.3221 ','Chronic gout due to renal impairment, left elbow, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119570,10,'M1A.3220 ','Chronic gout due to renal impairment, left elbow, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119569,10,'M1A.3211 ','Chronic gout due to renal impairment, right elbow, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119568,10,'M1A.3210 ','Chronic gout due to renal impairment, right elbow, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119567,10,'M1A.3191 ','Chronic gout due to renal impairment, unspecified shoulder, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119566,10,'M1A.3190 ','Chronic gout due to renal impairment, unspecified shoulder, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119565,10,'M1A.3121 ','Chronic gout due to renal impairment, left shoulder, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119564,10,'M1A.3120 ','Chronic gout due to renal impairment, left shoulder, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119563,10,'M1A.3111 ','Chronic gout due to renal impairment, right shoulder, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119562,10,'M1A.3110 ','Chronic gout due to renal impairment, right shoulder, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119561,10,'M1A.30X1 ','Chronic gout due to renal impairment, unspecified site, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119560,10,'M1A.30X0 ','Chronic gout due to renal impairment, unspecified site, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119559,10,'M1A.29X1 ','Drug-induced chronic gout, multiple sites, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119558,10,'M1A.29X0 ','Drug-induced chronic gout, multiple sites, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119557,10,'M1A.28X1 ','Drug-induced chronic gout, vertebrae, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119556,10,'M1A.28X0 ','Drug-induced chronic gout, vertebrae, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119555,10,'M1A.2791 ','Drug-induced chronic gout, unspecified ankle and foot, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119554,10,'M1A.2790 ','Drug-induced chronic gout, unspecified ankle and foot, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119553,10,'M1A.2721 ','Drug-induced chronic gout, left ankle and foot, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119552,10,'M1A.2720 ','Drug-induced chronic gout, left ankle and foot, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119551,10,'M1A.2711 ','Drug-induced chronic gout, right ankle and foot, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119550,10,'M1A.2710 ','Drug-induced chronic gout, right ankle and foot, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119549,10,'M1A.2691 ','Drug-induced chronic gout, unspecified knee, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119548,10,'M1A.2690 ','Drug-induced chronic gout, unspecified knee, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119547,10,'M1A.2621 ','Drug-induced chronic gout, left knee, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119546,10,'M1A.2620 ','Drug-induced chronic gout, left knee, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119545,10,'M1A.2611 ','Drug-induced chronic gout, right knee, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119544,10,'M1A.2610 ','Drug-induced chronic gout, right knee, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119543,10,'M1A.2591 ','Drug-induced chronic gout, unspecified hip, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119542,10,'M1A.2590 ','Drug-induced chronic gout, unspecified hip, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119540,10,'M1A.2520 ','Drug-induced chronic gout, left hip, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119541,10,'M1A.2521 ','Drug-induced chronic gout, left hip, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119539,10,'M1A.2511 ','Drug-induced chronic gout, right hip, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119538,10,'M1A.2510 ','Drug-induced chronic gout, right hip, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119537,10,'M1A.2491 ','Drug-induced chronic gout, unspecified hand, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119535,10,'M1A.2421 ','Drug-induced chronic gout, left hand, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119536,10,'M1A.2490 ','Drug-induced chronic gout, unspecified hand, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119534,10,'M1A.2420 ','Drug-induced chronic gout, left hand, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119533,10,'M1A.2411 ','Drug-induced chronic gout, right hand, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119532,10,'M1A.2410 ','Drug-induced chronic gout, right hand, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119531,10,'M1A.2391 ','Drug-induced chronic gout, unspecified wrist, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119530,10,'M1A.2390 ','Drug-induced chronic gout, unspecified wrist, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119529,10,'M1A.2321 ','Drug-induced chronic gout, left wrist, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119528,10,'M1A.2320 ','Drug-induced chronic gout, left wrist, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119527,10,'M1A.2311 ','Drug-induced chronic gout, right wrist, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119526,10,'M1A.2310 ','Drug-induced chronic gout, right wrist, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119525,10,'M1A.2291 ','Drug-induced chronic gout, unspecified elbow, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119524,10,'M1A.2290 ','Drug-induced chronic gout, unspecified elbow, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119523,10,'M1A.2221 ','Drug-induced chronic gout, left elbow, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119522,10,'M1A.2220 ','Drug-induced chronic gout, left elbow, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119521,10,'M1A.2211 ','Drug-induced chronic gout, right elbow, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119520,10,'M1A.2210 ','Drug-induced chronic gout, right elbow, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119519,10,'M1A.2191 ','Drug-induced chronic gout, unspecified shoulder, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119517,10,'M1A.2121 ','Drug-induced chronic gout, left shoulder, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119518,10,'M1A.2190 ','Drug-induced chronic gout, unspecified shoulder, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119516,10,'M1A.2120 ','Drug-induced chronic gout, left shoulder, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119515,10,'M1A.2111 ','Drug-induced chronic gout, right shoulder, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119514,10,'M1A.2110 ','Drug-induced chronic gout, right shoulder, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119513,10,'M1A.20X1 ','Drug-induced chronic gout, unspecified site, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119512,10,'M1A.20X0 ','Drug-induced chronic gout, unspecified site, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119511,10,'M1A.19X1 ','Lead-induced chronic gout, multiple sites, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119510,10,'M1A.19X0 ','Lead-induced chronic gout, multiple sites, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119509,10,'M1A.18X1 ','Lead-induced chronic gout, vertebrae, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119508,10,'M1A.18X0 ','Lead-induced chronic gout, vertebrae, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119507,10,'M1A.1791 ','Lead-induced chronic gout, unspecified ankle and foot, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119506,10,'M1A.1790 ','Lead-induced chronic gout, unspecified ankle and foot, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119505,10,'M1A.1721 ','Lead-induced chronic gout, left ankle and foot, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119503,10,'M1A.1711 ','Lead-induced chronic gout, right ankle and foot, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119504,10,'M1A.1720 ','Lead-induced chronic gout, left ankle and foot, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119502,10,'M1A.1710 ','Lead-induced chronic gout, right ankle and foot, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119501,10,'M1A.1691 ','Lead-induced chronic gout, unspecified knee, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119500,10,'M1A.1690 ','Lead-induced chronic gout, unspecified knee, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119498,10,'M1A.1620 ','Lead-induced chronic gout, left knee, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119499,10,'M1A.1621 ','Lead-induced chronic gout, left knee, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119497,10,'M1A.1611 ','Lead-induced chronic gout, right knee, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119496,10,'M1A.1610 ','Lead-induced chronic gout, right knee, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119495,10,'M1A.1591 ','Lead-induced chronic gout, unspecified hip, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119494,10,'M1A.1590 ','Lead-induced chronic gout, unspecified hip, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119493,10,'M1A.1521 ','Lead-induced chronic gout, left hip, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119491,10,'M1A.1511 ','Lead-induced chronic gout, right hip, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119492,10,'M1A.1520 ','Lead-induced chronic gout, left hip, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119490,10,'M1A.1510 ','Lead-induced chronic gout, right hip, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119489,10,'M1A.1491 ','Lead-induced chronic gout, unspecified hand, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119488,10,'M1A.1490 ','Lead-induced chronic gout, unspecified hand, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119487,10,'M1A.1421 ','Lead-induced chronic gout, left hand, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119486,10,'M1A.1420 ','Lead-induced chronic gout, left hand, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119485,10,'M1A.1411 ','Lead-induced chronic gout, right hand, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119484,10,'M1A.1410 ','Lead-induced chronic gout, right hand, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119483,10,'M1A.1391 ','Lead-induced chronic gout, unspecified wrist, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119482,10,'M1A.1390 ','Lead-induced chronic gout, unspecified wrist, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119481,10,'M1A.1321 ','Lead-induced chronic gout, left wrist, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119480,10,'M1A.1320 ','Lead-induced chronic gout, left wrist, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119479,10,'M1A.1311 ','Lead-induced chronic gout, right wrist, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119478,10,'M1A.1310 ','Lead-induced chronic gout, right wrist, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119477,10,'M1A.1291 ','Lead-induced chronic gout, unspecified elbow, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119476,10,'M1A.1290 ','Lead-induced chronic gout, unspecified elbow, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119475,10,'M1A.1221 ','Lead-induced chronic gout, left elbow, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119474,10,'M1A.1220 ','Lead-induced chronic gout, left elbow, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119473,10,'M1A.1211 ','Lead-induced chronic gout, right elbow, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119472,10,'M1A.1210 ','Lead-induced chronic gout, right elbow, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119471,10,'M1A.1191 ','Lead-induced chronic gout, unspecified shoulder, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119470,10,'M1A.1190 ','Lead-induced chronic gout, unspecified shoulder, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119469,10,'M1A.1121 ','Lead-induced chronic gout, left shoulder, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119468,10,'M1A.1120 ','Lead-induced chronic gout, left shoulder, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119467,10,'M1A.1111 ','Lead-induced chronic gout, right shoulder, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119466,10,'M1A.1110 ','Lead-induced chronic gout, right shoulder, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119465,10,'M1A.10X1 ','Lead-induced chronic gout, unspecified site, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119464,10,'M1A.10X0 ','Lead-induced chronic gout, unspecified site, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119463,10,'M1A.09X1 ','Idiopathic chronic gout, multiple sites, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119462,10,'M1A.09X0 ','Idiopathic chronic gout, multiple sites, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119461,10,'M1A.08X1 ','Idiopathic chronic gout, vertebrae, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119460,10,'M1A.08X0 ','Idiopathic chronic gout, vertebrae, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119459,10,'M1A.0791 ','Idiopathic chronic gout, unspecified ankle and foot, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119458,10,'M1A.0790 ','Idiopathic chronic gout, unspecified ankle and foot, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119457,10,'M1A.0721 ','Idiopathic chronic gout, left ankle and foot, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119456,10,'M1A.0720 ','Idiopathic chronic gout, left ankle and foot, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119455,10,'M1A.0711 ','Idiopathic chronic gout, right ankle and foot, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119454,10,'M1A.0710 ','Idiopathic chronic gout, right ankle and foot, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119453,10,'M1A.0691 ','Idiopathic chronic gout, unspecified knee, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119452,10,'M1A.0690 ','Idiopathic chronic gout, unspecified knee, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119451,10,'M1A.0621 ','Idiopathic chronic gout, left knee, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119450,10,'M1A.0620 ','Idiopathic chronic gout, left knee, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119449,10,'M1A.0611 ','Idiopathic chronic gout, right knee, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119448,10,'M1A.0610 ','Idiopathic chronic gout, right knee, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119447,10,'M1A.0591 ','Idiopathic chronic gout, unspecified hip, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119446,10,'M1A.0590 ','Idiopathic chronic gout, unspecified hip, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119445,10,'M1A.0521 ','Idiopathic chronic gout, left hip, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119444,10,'M1A.0520 ','Idiopathic chronic gout, left hip, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119443,10,'M1A.0511 ','Idiopathic chronic gout, right hip, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119442,10,'M1A.0510 ','Idiopathic chronic gout, right hip, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119441,10,'M1A.0491 ','Idiopathic chronic gout, unspecified hand, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119440,10,'M1A.0490 ','Idiopathic chronic gout, unspecified hand, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119439,10,'M1A.0421 ','Idiopathic chronic gout, left hand, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119438,10,'M1A.0420 ','Idiopathic chronic gout, left hand, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119437,10,'M1A.0411 ','Idiopathic chronic gout, right hand, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119435,10,'M1A.0391 ','Idiopathic chronic gout, unspecified wrist, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119436,10,'M1A.0410 ','Idiopathic chronic gout, right hand, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119434,10,'M1A.0390 ','Idiopathic chronic gout, unspecified wrist, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119432,10,'M1A.0320 ','Idiopathic chronic gout, left wrist, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119433,10,'M1A.0321 ','Idiopathic chronic gout, left wrist, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119431,10,'M1A.0311 ','Idiopathic chronic gout, right wrist, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119430,10,'M1A.0310 ','Idiopathic chronic gout, right wrist, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119428,10,'M1A.0290 ','Idiopathic chronic gout, unspecified elbow, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119429,10,'M1A.0291 ','Idiopathic chronic gout, unspecified elbow, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119427,10,'M1A.0221 ','Idiopathic chronic gout, left elbow, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119426,10,'M1A.0220 ','Idiopathic chronic gout, left elbow, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119424,10,'M1A.0210 ','Idiopathic chronic gout, right elbow, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119425,10,'M1A.0211 ','Idiopathic chronic gout, right elbow, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119423,10,'M1A.0191 ','Idiopathic chronic gout, unspecified shoulder, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119422,10,'M1A.0190 ','Idiopathic chronic gout, unspecified shoulder, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119420,10,'M1A.0120 ','Idiopathic chronic gout, left shoulder, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119421,10,'M1A.0121 ','Idiopathic chronic gout, left shoulder, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119419,10,'M1A.0111 ','Idiopathic chronic gout, right shoulder, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119418,10,'M1A.0110 ','Idiopathic chronic gout, right shoulder, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119417,10,'M1A.00X1 ','Idiopathic chronic gout, unspecified site, with tophus (tophi)','Y','0000-00-00 00:00:00'),(119415,10,'M08.9A ','Juvenile arthritis, unspecified, other specified site','Y','0000-00-00 00:00:00'),(119416,10,'M1A.00X0 ','Idiopathic chronic gout, unspecified site, without tophus (tophi)','Y','0000-00-00 00:00:00'),(119414,10,'M08.99 ','Juvenile arthritis, unspecified, multiple sites','Y','0000-00-00 00:00:00'),(119413,10,'M08.98 ','Juvenile arthritis, unspecified, vertebrae','Y','0000-00-00 00:00:00'),(119411,10,'M08.972 ','Juvenile arthritis, unspecified, left ankle and foot','Y','0000-00-00 00:00:00'),(119412,10,'M08.979 ','Juvenile arthritis, unspecified, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119410,10,'M08.971 ','Juvenile arthritis, unspecified, right ankle and foot','Y','0000-00-00 00:00:00'),(119409,10,'M08.969 ','Juvenile arthritis, unspecified, unspecified knee','Y','0000-00-00 00:00:00'),(119408,10,'M08.962 ','Juvenile arthritis, unspecified, left knee','Y','0000-00-00 00:00:00'),(119406,10,'M08.959 ','Juvenile arthritis, unspecified, unspecified hip','Y','0000-00-00 00:00:00'),(119407,10,'M08.961 ','Juvenile arthritis, unspecified, right knee','Y','0000-00-00 00:00:00'),(119405,10,'M08.952 ','Juvenile arthritis, unspecified, left hip','Y','0000-00-00 00:00:00'),(119404,10,'M08.951 ','Juvenile arthritis, unspecified, right hip','Y','0000-00-00 00:00:00'),(119403,10,'M08.949 ','Juvenile arthritis, unspecified, unspecified hand','Y','0000-00-00 00:00:00'),(119402,10,'M08.942 ','Juvenile arthritis, unspecified, left hand','Y','0000-00-00 00:00:00'),(119401,10,'M08.941 ','Juvenile arthritis, unspecified, right hand','Y','0000-00-00 00:00:00'),(119400,10,'M08.939 ','Juvenile arthritis, unspecified, unspecified wrist','Y','0000-00-00 00:00:00'),(119399,10,'M08.932 ','Juvenile arthritis, unspecified, left wrist','Y','0000-00-00 00:00:00'),(119398,10,'M08.931 ','Juvenile arthritis, unspecified, right wrist','Y','0000-00-00 00:00:00'),(119397,10,'M08.929 ','Juvenile arthritis, unspecified, unspecified elbow','Y','0000-00-00 00:00:00'),(119396,10,'M08.922 ','Juvenile arthritis, unspecified, left elbow','Y','0000-00-00 00:00:00'),(119395,10,'M08.921 ','Juvenile arthritis, unspecified, right elbow','Y','0000-00-00 00:00:00'),(119394,10,'M08.919 ','Juvenile arthritis, unspecified, unspecified shoulder','Y','0000-00-00 00:00:00'),(119392,10,'M08.911 ','Juvenile arthritis, unspecified, right shoulder','Y','0000-00-00 00:00:00'),(119393,10,'M08.912 ','Juvenile arthritis, unspecified, left shoulder','Y','0000-00-00 00:00:00'),(119391,10,'M08.90 ','Juvenile arthritis, unspecified, unspecified site','Y','0000-00-00 00:00:00'),(119390,10,'M08.89 ','Other juvenile arthritis, multiple sites','Y','0000-00-00 00:00:00'),(119388,10,'M08.879 ','Other juvenile arthritis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119389,10,'M08.88 ','Other juvenile arthritis, other specified site','Y','0000-00-00 00:00:00'),(119387,10,'M08.872 ','Other juvenile arthritis, left ankle and foot','Y','0000-00-00 00:00:00'),(119386,10,'M08.871 ','Other juvenile arthritis, right ankle and foot','Y','0000-00-00 00:00:00'),(119384,10,'M08.862 ','Other juvenile arthritis, left knee','Y','0000-00-00 00:00:00'),(119385,10,'M08.869 ','Other juvenile arthritis, unspecified knee','Y','0000-00-00 00:00:00'),(119383,10,'M08.861 ','Other juvenile arthritis, right knee','Y','0000-00-00 00:00:00'),(119382,10,'M08.859 ','Other juvenile arthritis, unspecified hip','Y','0000-00-00 00:00:00'),(119380,10,'M08.851 ','Other juvenile arthritis, right hip','Y','0000-00-00 00:00:00'),(119381,10,'M08.852 ','Other juvenile arthritis, left hip','Y','0000-00-00 00:00:00'),(119379,10,'M08.849 ','Other juvenile arthritis, unspecified hand','Y','0000-00-00 00:00:00'),(119378,10,'M08.842 ','Other juvenile arthritis, left hand','Y','0000-00-00 00:00:00'),(119377,10,'M08.841 ','Other juvenile arthritis, right hand','Y','0000-00-00 00:00:00'),(119375,10,'M08.832 ','Other juvenile arthritis, left wrist','Y','0000-00-00 00:00:00'),(119376,10,'M08.839 ','Other juvenile arthritis, unspecified wrist','Y','0000-00-00 00:00:00'),(119374,10,'M08.831 ','Other juvenile arthritis, right wrist','Y','0000-00-00 00:00:00'),(119373,10,'M08.829 ','Other juvenile arthritis, unspecified elbow','Y','0000-00-00 00:00:00'),(119372,10,'M08.822 ','Other juvenile arthritis, left elbow','Y','0000-00-00 00:00:00'),(119371,10,'M08.821 ','Other juvenile arthritis, right elbow','Y','0000-00-00 00:00:00'),(119370,10,'M08.819 ','Other juvenile arthritis, unspecified shoulder','Y','0000-00-00 00:00:00'),(119368,10,'M08.811 ','Other juvenile arthritis, right shoulder','Y','0000-00-00 00:00:00'),(119369,10,'M08.812 ','Other juvenile arthritis, left shoulder','Y','0000-00-00 00:00:00'),(119367,10,'M08.80 ','Other juvenile arthritis, unspecified site','Y','0000-00-00 00:00:00'),(119366,10,'M08.4A ','Pauciarticular juvenile rheumatoid arthritis, other specified site','Y','0000-00-00 00:00:00'),(119365,10,'M08.48 ','Pauciarticular juvenile rheumatoid arthritis, vertebrae','Y','0000-00-00 00:00:00'),(119364,10,'M08.479 ','Pauciarticular juvenile rheumatoid arthritis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119363,10,'M08.472 ','Pauciarticular juvenile rheumatoid arthritis, left ankle and foot','Y','0000-00-00 00:00:00'),(119362,10,'M08.471 ','Pauciarticular juvenile rheumatoid arthritis, right ankle and foot','Y','0000-00-00 00:00:00'),(119361,10,'M08.469 ','Pauciarticular juvenile rheumatoid arthritis, unspecified knee','Y','0000-00-00 00:00:00'),(119360,10,'M08.462 ','Pauciarticular juvenile rheumatoid arthritis, left knee','Y','0000-00-00 00:00:00'),(119359,10,'M08.461 ','Pauciarticular juvenile rheumatoid arthritis, right knee','Y','0000-00-00 00:00:00'),(119358,10,'M08.459 ','Pauciarticular juvenile rheumatoid arthritis, unspecified hip','Y','0000-00-00 00:00:00'),(119357,10,'M08.452 ','Pauciarticular juvenile rheumatoid arthritis, left hip','Y','0000-00-00 00:00:00'),(119356,10,'M08.451 ','Pauciarticular juvenile rheumatoid arthritis, right hip','Y','0000-00-00 00:00:00'),(119355,10,'M08.449 ','Pauciarticular juvenile rheumatoid arthritis, unspecified hand','Y','0000-00-00 00:00:00'),(119354,10,'M08.442 ','Pauciarticular juvenile rheumatoid arthritis, left hand','Y','0000-00-00 00:00:00'),(119353,10,'M08.441 ','Pauciarticular juvenile rheumatoid arthritis, right hand','Y','0000-00-00 00:00:00'),(119352,10,'M08.439 ','Pauciarticular juvenile rheumatoid arthritis, unspecified wrist','Y','0000-00-00 00:00:00'),(119351,10,'M08.432 ','Pauciarticular juvenile rheumatoid arthritis, left wrist','Y','0000-00-00 00:00:00'),(119350,10,'M08.431 ','Pauciarticular juvenile rheumatoid arthritis, right wrist','Y','0000-00-00 00:00:00'),(119349,10,'M08.429 ','Pauciarticular juvenile rheumatoid arthritis, unspecified elbow','Y','0000-00-00 00:00:00'),(119348,10,'M08.422 ','Pauciarticular juvenile rheumatoid arthritis, left elbow','Y','0000-00-00 00:00:00'),(119347,10,'M08.421 ','Pauciarticular juvenile rheumatoid arthritis, right elbow','Y','0000-00-00 00:00:00'),(119346,10,'M08.419 ','Pauciarticular juvenile rheumatoid arthritis, unspecified shoulder','Y','0000-00-00 00:00:00'),(119345,10,'M08.412 ','Pauciarticular juvenile rheumatoid arthritis, left shoulder','Y','0000-00-00 00:00:00'),(119344,10,'M08.411 ','Pauciarticular juvenile rheumatoid arthritis, right shoulder','Y','0000-00-00 00:00:00'),(119343,10,'M08.40 ','Pauciarticular juvenile rheumatoid arthritis, unspecified site','Y','0000-00-00 00:00:00'),(119342,10,'M08.3 ','Juvenile rheumatoid polyarthritis (seronegative)','Y','0000-00-00 00:00:00'),(119341,10,'M08.2A ','Juvenile rheumatoid arthritis with systemic onset, other specified site','Y','0000-00-00 00:00:00'),(119340,10,'M08.29 ','Juvenile rheumatoid arthritis with systemic onset, multiple sites','Y','0000-00-00 00:00:00'),(119339,10,'M08.28 ','Juvenile rheumatoid arthritis with systemic onset, vertebrae','Y','0000-00-00 00:00:00'),(119338,10,'M08.279 ','Juvenile rheumatoid arthritis with systemic onset, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119337,10,'M08.272 ','Juvenile rheumatoid arthritis with systemic onset, left ankle and foot','Y','0000-00-00 00:00:00'),(119336,10,'M08.271 ','Juvenile rheumatoid arthritis with systemic onset, right ankle and foot','Y','0000-00-00 00:00:00'),(119335,10,'M08.269 ','Juvenile rheumatoid arthritis with systemic onset, unspecified knee','Y','0000-00-00 00:00:00'),(119334,10,'M08.262 ','Juvenile rheumatoid arthritis with systemic onset, left knee','Y','0000-00-00 00:00:00'),(119333,10,'M08.261 ','Juvenile rheumatoid arthritis with systemic onset, right knee','Y','0000-00-00 00:00:00'),(119332,10,'M08.259 ','Juvenile rheumatoid arthritis with systemic onset, unspecified hip','Y','0000-00-00 00:00:00'),(119331,10,'M08.252 ','Juvenile rheumatoid arthritis with systemic onset, left hip','Y','0000-00-00 00:00:00'),(119330,10,'M08.251 ','Juvenile rheumatoid arthritis with systemic onset, right hip','Y','0000-00-00 00:00:00'),(119329,10,'M08.249 ','Juvenile rheumatoid arthritis with systemic onset, unspecified hand','Y','0000-00-00 00:00:00'),(119328,10,'M08.242 ','Juvenile rheumatoid arthritis with systemic onset, left hand','Y','0000-00-00 00:00:00'),(119327,10,'M08.241 ','Juvenile rheumatoid arthritis with systemic onset, right hand','Y','0000-00-00 00:00:00'),(119326,10,'M08.239 ','Juvenile rheumatoid arthritis with systemic onset, unspecified wrist','Y','0000-00-00 00:00:00'),(119325,10,'M08.232 ','Juvenile rheumatoid arthritis with systemic onset, left wrist','Y','0000-00-00 00:00:00'),(119324,10,'M08.231 ','Juvenile rheumatoid arthritis with systemic onset, right wrist','Y','0000-00-00 00:00:00'),(119323,10,'M08.229 ','Juvenile rheumatoid arthritis with systemic onset, unspecified elbow','Y','0000-00-00 00:00:00'),(119322,10,'M08.222 ','Juvenile rheumatoid arthritis with systemic onset, left elbow','Y','0000-00-00 00:00:00'),(119321,10,'M08.221 ','Juvenile rheumatoid arthritis with systemic onset, right elbow','Y','0000-00-00 00:00:00'),(119320,10,'M08.219 ','Juvenile rheumatoid arthritis with systemic onset, unspecified shoulder','Y','0000-00-00 00:00:00'),(119319,10,'M08.212 ','Juvenile rheumatoid arthritis with systemic onset, left shoulder','Y','0000-00-00 00:00:00'),(119318,10,'M08.211 ','Juvenile rheumatoid arthritis with systemic onset, right shoulder','Y','0000-00-00 00:00:00'),(119316,10,'M08.1 ','Juvenile ankylosing spondylitis','Y','0000-00-00 00:00:00'),(119317,10,'M08.20 ','Juvenile rheumatoid arthritis with systemic onset, unspecified site','Y','0000-00-00 00:00:00'),(119315,10,'M08.0A ','Unspecified juvenile rheumatoid arthritis, other specified site','Y','0000-00-00 00:00:00'),(119314,10,'M08.09 ','Unspecified juvenile rheumatoid arthritis, multiple sites','Y','0000-00-00 00:00:00'),(119313,10,'M08.08 ','Unspecified juvenile rheumatoid arthritis, vertebrae','Y','0000-00-00 00:00:00'),(119312,10,'M08.079 ','Unspecified juvenile rheumatoid arthritis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119311,10,'M08.072 ','Unspecified juvenile rheumatoid arthritis, left ankle and foot','Y','0000-00-00 00:00:00'),(119310,10,'M08.071 ','Unspecified juvenile rheumatoid arthritis, right ankle and foot','Y','0000-00-00 00:00:00'),(119309,10,'M08.069 ','Unspecified juvenile rheumatoid arthritis, unspecified knee','Y','0000-00-00 00:00:00'),(119308,10,'M08.062 ','Unspecified juvenile rheumatoid arthritis, left knee','Y','0000-00-00 00:00:00'),(119307,10,'M08.061 ','Unspecified juvenile rheumatoid arthritis, right knee','Y','0000-00-00 00:00:00'),(119306,10,'M08.059 ','Unspecified juvenile rheumatoid arthritis, unspecified hip','Y','0000-00-00 00:00:00'),(119305,10,'M08.052 ','Unspecified juvenile rheumatoid arthritis, left hip','Y','0000-00-00 00:00:00'),(119304,10,'M08.051 ','Unspecified juvenile rheumatoid arthritis, right hip','Y','0000-00-00 00:00:00'),(119303,10,'M08.049 ','Unspecified juvenile rheumatoid arthritis, unspecified hand','Y','0000-00-00 00:00:00'),(119302,10,'M08.042 ','Unspecified juvenile rheumatoid arthritis, left hand','Y','0000-00-00 00:00:00'),(119301,10,'M08.041 ','Unspecified juvenile rheumatoid arthritis, right hand','Y','0000-00-00 00:00:00'),(119300,10,'M08.039 ','Unspecified juvenile rheumatoid arthritis, unspecified wrist','Y','0000-00-00 00:00:00'),(119299,10,'M08.032 ','Unspecified juvenile rheumatoid arthritis, left wrist','Y','0000-00-00 00:00:00'),(119298,10,'M08.031 ','Unspecified juvenile rheumatoid arthritis, right wrist','Y','0000-00-00 00:00:00'),(119297,10,'M08.029 ','Unspecified juvenile rheumatoid arthritis, unspecified elbow','Y','0000-00-00 00:00:00'),(119296,10,'M08.022 ','Unspecified juvenile rheumatoid arthritis, left elbow','Y','0000-00-00 00:00:00'),(119295,10,'M08.021 ','Unspecified juvenile rheumatoid arthritis, right elbow','Y','0000-00-00 00:00:00'),(119294,10,'M08.019 ','Unspecified juvenile rheumatoid arthritis, unspecified shoulder','Y','0000-00-00 00:00:00'),(119293,10,'M08.012 ','Unspecified juvenile rheumatoid arthritis, left shoulder','Y','0000-00-00 00:00:00'),(119292,10,'M08.011 ','Unspecified juvenile rheumatoid arthritis, right shoulder','Y','0000-00-00 00:00:00'),(119291,10,'M08.00 ','Unspecified juvenile rheumatoid arthritis of unspecified site','Y','0000-00-00 00:00:00'),(119290,10,'M07.69 ','Enteropathic arthropathies, multiple sites','Y','0000-00-00 00:00:00'),(119288,10,'M07.679 ','Enteropathic arthropathies, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119289,10,'M07.68 ','Enteropathic arthropathies, vertebrae','Y','0000-00-00 00:00:00'),(119287,10,'M07.672 ','Enteropathic arthropathies, left ankle and foot','Y','0000-00-00 00:00:00'),(119285,10,'M07.669 ','Enteropathic arthropathies, unspecified knee','Y','0000-00-00 00:00:00'),(119286,10,'M07.671 ','Enteropathic arthropathies, right ankle and foot','Y','0000-00-00 00:00:00'),(119283,10,'M07.661 ','Enteropathic arthropathies, right knee','Y','0000-00-00 00:00:00'),(119284,10,'M07.662 ','Enteropathic arthropathies, left knee','Y','0000-00-00 00:00:00'),(119281,10,'M07.652 ','Enteropathic arthropathies, left hip','Y','0000-00-00 00:00:00'),(119282,10,'M07.659 ','Enteropathic arthropathies, unspecified hip','Y','0000-00-00 00:00:00'),(119280,10,'M07.651 ','Enteropathic arthropathies, right hip','Y','0000-00-00 00:00:00'),(119278,10,'M07.642 ','Enteropathic arthropathies, left hand','Y','0000-00-00 00:00:00'),(119279,10,'M07.649 ','Enteropathic arthropathies, unspecified hand','Y','0000-00-00 00:00:00'),(119277,10,'M07.641 ','Enteropathic arthropathies, right hand','Y','0000-00-00 00:00:00'),(119275,10,'M07.632 ','Enteropathic arthropathies, left wrist','Y','0000-00-00 00:00:00'),(119276,10,'M07.639 ','Enteropathic arthropathies, unspecified wrist','Y','0000-00-00 00:00:00'),(119274,10,'M07.631 ','Enteropathic arthropathies, right wrist','Y','0000-00-00 00:00:00'),(119272,10,'M07.622 ','Enteropathic arthropathies, left elbow','Y','0000-00-00 00:00:00'),(119273,10,'M07.629 ','Enteropathic arthropathies, unspecified elbow','Y','0000-00-00 00:00:00'),(119271,10,'M07.621 ','Enteropathic arthropathies, right elbow','Y','0000-00-00 00:00:00'),(119269,10,'M07.612 ','Enteropathic arthropathies, left shoulder','Y','0000-00-00 00:00:00'),(119270,10,'M07.619 ','Enteropathic arthropathies, unspecified shoulder','Y','0000-00-00 00:00:00'),(119268,10,'M07.611 ','Enteropathic arthropathies, right shoulder','Y','0000-00-00 00:00:00'),(119266,10,'M06.9 ','Rheumatoid arthritis, unspecified','Y','0000-00-00 00:00:00'),(119267,10,'M07.60 ','Enteropathic arthropathies, unspecified site','Y','0000-00-00 00:00:00'),(119265,10,'M06.8A ','Other specified rheumatoid arthritis, other specified site','Y','0000-00-00 00:00:00'),(119264,10,'M06.89 ','Other specified rheumatoid arthritis, multiple sites','Y','0000-00-00 00:00:00'),(119263,10,'M06.88 ','Other specified rheumatoid arthritis, vertebrae','Y','0000-00-00 00:00:00'),(119261,10,'M06.872 ','Other specified rheumatoid arthritis, left ankle and foot','Y','0000-00-00 00:00:00'),(119262,10,'M06.879 ','Other specified rheumatoid arthritis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119260,10,'M06.871 ','Other specified rheumatoid arthritis, right ankle and foot','Y','0000-00-00 00:00:00'),(119259,10,'M06.869 ','Other specified rheumatoid arthritis, unspecified knee','Y','0000-00-00 00:00:00'),(119258,10,'M06.862 ','Other specified rheumatoid arthritis, left knee','Y','0000-00-00 00:00:00'),(119256,10,'M06.859 ','Other specified rheumatoid arthritis, unspecified hip','Y','0000-00-00 00:00:00'),(119257,10,'M06.861 ','Other specified rheumatoid arthritis, right knee','Y','0000-00-00 00:00:00'),(119255,10,'M06.852 ','Other specified rheumatoid arthritis, left hip','Y','0000-00-00 00:00:00'),(119254,10,'M06.851 ','Other specified rheumatoid arthritis, right hip','Y','0000-00-00 00:00:00'),(119253,10,'M06.849 ','Other specified rheumatoid arthritis, unspecified hand','Y','0000-00-00 00:00:00'),(119252,10,'M06.842 ','Other specified rheumatoid arthritis, left hand','Y','0000-00-00 00:00:00'),(119251,10,'M06.841 ','Other specified rheumatoid arthritis, right hand','Y','0000-00-00 00:00:00'),(119249,10,'M06.832 ','Other specified rheumatoid arthritis, left wrist','Y','0000-00-00 00:00:00'),(119250,10,'M06.839 ','Other specified rheumatoid arthritis, unspecified wrist','Y','0000-00-00 00:00:00'),(119248,10,'M06.831 ','Other specified rheumatoid arthritis, right wrist','Y','0000-00-00 00:00:00'),(119247,10,'M06.829 ','Other specified rheumatoid arthritis, unspecified elbow','Y','0000-00-00 00:00:00'),(119246,10,'M06.822 ','Other specified rheumatoid arthritis, left elbow','Y','0000-00-00 00:00:00'),(119245,10,'M06.821 ','Other specified rheumatoid arthritis, right elbow','Y','0000-00-00 00:00:00'),(119244,10,'M06.819 ','Other specified rheumatoid arthritis, unspecified shoulder','Y','0000-00-00 00:00:00'),(119243,10,'M06.812 ','Other specified rheumatoid arthritis, left shoulder','Y','0000-00-00 00:00:00'),(119242,10,'M06.811 ','Other specified rheumatoid arthritis, right shoulder','Y','0000-00-00 00:00:00'),(119241,10,'M06.80 ','Other specified rheumatoid arthritis, unspecified site','Y','0000-00-00 00:00:00'),(119239,10,'M06.39 ','Rheumatoid nodule, multiple sites','Y','0000-00-00 00:00:00'),(119240,10,'M06.4 ','Inflammatory polyarthropathy','Y','0000-00-00 00:00:00'),(119238,10,'M06.38 ','Rheumatoid nodule, vertebrae','Y','0000-00-00 00:00:00'),(119236,10,'M06.372 ','Rheumatoid nodule, left ankle and foot','Y','0000-00-00 00:00:00'),(119237,10,'M06.379 ','Rheumatoid nodule, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119235,10,'M06.371 ','Rheumatoid nodule, right ankle and foot','Y','0000-00-00 00:00:00'),(119234,10,'M06.369 ','Rheumatoid nodule, unspecified knee','Y','0000-00-00 00:00:00'),(119232,10,'M06.361 ','Rheumatoid nodule, right knee','Y','0000-00-00 00:00:00'),(119233,10,'M06.362 ','Rheumatoid nodule, left knee','Y','0000-00-00 00:00:00'),(119231,10,'M06.359 ','Rheumatoid nodule, unspecified hip','Y','0000-00-00 00:00:00'),(119230,10,'M06.352 ','Rheumatoid nodule, left hip','Y','0000-00-00 00:00:00'),(119228,10,'M06.349 ','Rheumatoid nodule, unspecified hand','Y','0000-00-00 00:00:00'),(119229,10,'M06.351 ','Rheumatoid nodule, right hip','Y','0000-00-00 00:00:00'),(119227,10,'M06.342 ','Rheumatoid nodule, left hand','Y','0000-00-00 00:00:00'),(119226,10,'M06.341 ','Rheumatoid nodule, right hand','Y','0000-00-00 00:00:00'),(119225,10,'M06.339 ','Rheumatoid nodule, unspecified wrist','Y','0000-00-00 00:00:00'),(119223,10,'M06.331 ','Rheumatoid nodule, right wrist','Y','0000-00-00 00:00:00'),(119224,10,'M06.332 ','Rheumatoid nodule, left wrist','Y','0000-00-00 00:00:00'),(119222,10,'M06.329 ','Rheumatoid nodule, unspecified elbow','Y','0000-00-00 00:00:00'),(119221,10,'M06.322 ','Rheumatoid nodule, left elbow','Y','0000-00-00 00:00:00'),(119220,10,'M06.321 ','Rheumatoid nodule, right elbow','Y','0000-00-00 00:00:00'),(119219,10,'M06.319 ','Rheumatoid nodule, unspecified shoulder','Y','0000-00-00 00:00:00'),(119218,10,'M06.312 ','Rheumatoid nodule, left shoulder','Y','0000-00-00 00:00:00'),(119217,10,'M06.311 ','Rheumatoid nodule, right shoulder','Y','0000-00-00 00:00:00'),(119216,10,'M06.30 ','Rheumatoid nodule, unspecified site','Y','0000-00-00 00:00:00'),(119214,10,'M06.28 ','Rheumatoid bursitis, vertebrae','Y','0000-00-00 00:00:00'),(119215,10,'M06.29 ','Rheumatoid bursitis, multiple sites','Y','0000-00-00 00:00:00'),(119213,10,'M06.279 ','Rheumatoid bursitis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119212,10,'M06.272 ','Rheumatoid bursitis, left ankle and foot','Y','0000-00-00 00:00:00'),(119211,10,'M06.271 ','Rheumatoid bursitis, right ankle and foot','Y','0000-00-00 00:00:00'),(119210,10,'M06.269 ','Rheumatoid bursitis, unspecified knee','Y','0000-00-00 00:00:00'),(119209,10,'M06.262 ','Rheumatoid bursitis, left knee','Y','0000-00-00 00:00:00'),(119208,10,'M06.261 ','Rheumatoid bursitis, right knee','Y','0000-00-00 00:00:00'),(119207,10,'M06.259 ','Rheumatoid bursitis, unspecified hip','Y','0000-00-00 00:00:00'),(119206,10,'M06.252 ','Rheumatoid bursitis, left hip','Y','0000-00-00 00:00:00'),(119205,10,'M06.251 ','Rheumatoid bursitis, right hip','Y','0000-00-00 00:00:00'),(119204,10,'M06.249 ','Rheumatoid bursitis, unspecified hand','Y','0000-00-00 00:00:00'),(119203,10,'M06.242 ','Rheumatoid bursitis, left hand','Y','0000-00-00 00:00:00'),(119202,10,'M06.241 ','Rheumatoid bursitis, right hand','Y','0000-00-00 00:00:00'),(119201,10,'M06.239 ','Rheumatoid bursitis, unspecified wrist','Y','0000-00-00 00:00:00'),(119200,10,'M06.232 ','Rheumatoid bursitis, left wrist','Y','0000-00-00 00:00:00'),(119199,10,'M06.231 ','Rheumatoid bursitis, right wrist','Y','0000-00-00 00:00:00'),(119197,10,'M06.222 ','Rheumatoid bursitis, left elbow','Y','0000-00-00 00:00:00'),(119198,10,'M06.229 ','Rheumatoid bursitis, unspecified elbow','Y','0000-00-00 00:00:00'),(119196,10,'M06.221 ','Rheumatoid bursitis, right elbow','Y','0000-00-00 00:00:00'),(119195,10,'M06.219 ','Rheumatoid bursitis, unspecified shoulder','Y','0000-00-00 00:00:00'),(119193,10,'M06.211 ','Rheumatoid bursitis, right shoulder','Y','0000-00-00 00:00:00'),(119194,10,'M06.212 ','Rheumatoid bursitis, left shoulder','Y','0000-00-00 00:00:00'),(119192,10,'M06.20 ','Rheumatoid bursitis, unspecified site','Y','0000-00-00 00:00:00'),(119191,10,'M06.1 ','Adult-onset Still\'s disease','Y','0000-00-00 00:00:00'),(119190,10,'M06.0A ','Rheumatoid arthritis without rheumatoid factor, other specified site','Y','0000-00-00 00:00:00'),(119189,10,'M06.09 ','Rheumatoid arthritis without rheumatoid factor, multiple sites','Y','0000-00-00 00:00:00'),(119188,10,'M06.08 ','Rheumatoid arthritis without rheumatoid factor, vertebrae','Y','0000-00-00 00:00:00'),(119187,10,'M06.079 ','Rheumatoid arthritis without rheumatoid factor, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119186,10,'M06.072 ','Rheumatoid arthritis without rheumatoid factor, left ankle and foot','Y','0000-00-00 00:00:00'),(119185,10,'M06.071 ','Rheumatoid arthritis without rheumatoid factor, right ankle and foot','Y','0000-00-00 00:00:00'),(119184,10,'M06.069 ','Rheumatoid arthritis without rheumatoid factor, unspecified knee','Y','0000-00-00 00:00:00'),(119183,10,'M06.062 ','Rheumatoid arthritis without rheumatoid factor, left knee','Y','0000-00-00 00:00:00'),(119182,10,'M06.061 ','Rheumatoid arthritis without rheumatoid factor, right knee','Y','0000-00-00 00:00:00'),(119181,10,'M06.059 ','Rheumatoid arthritis without rheumatoid factor, unspecified hip','Y','0000-00-00 00:00:00'),(119179,10,'M06.051 ','Rheumatoid arthritis without rheumatoid factor, right hip','Y','0000-00-00 00:00:00'),(119180,10,'M06.052 ','Rheumatoid arthritis without rheumatoid factor, left hip','Y','0000-00-00 00:00:00'),(119178,10,'M06.049 ','Rheumatoid arthritis without rheumatoid factor, unspecified hand','Y','0000-00-00 00:00:00'),(119177,10,'M06.042 ','Rheumatoid arthritis without rheumatoid factor, left hand','Y','0000-00-00 00:00:00'),(119176,10,'M06.041 ','Rheumatoid arthritis without rheumatoid factor, right hand','Y','0000-00-00 00:00:00'),(119175,10,'M06.039 ','Rheumatoid arthritis without rheumatoid factor, unspecified wrist','Y','0000-00-00 00:00:00'),(119174,10,'M06.032 ','Rheumatoid arthritis without rheumatoid factor, left wrist','Y','0000-00-00 00:00:00'),(119173,10,'M06.031 ','Rheumatoid arthritis without rheumatoid factor, right wrist','Y','0000-00-00 00:00:00'),(119172,10,'M06.029 ','Rheumatoid arthritis without rheumatoid factor, unspecified elbow','Y','0000-00-00 00:00:00'),(119171,10,'M06.022 ','Rheumatoid arthritis without rheumatoid factor, left elbow','Y','0000-00-00 00:00:00'),(119170,10,'M06.021 ','Rheumatoid arthritis without rheumatoid factor, right elbow','Y','0000-00-00 00:00:00'),(119169,10,'M06.019 ','Rheumatoid arthritis without rheumatoid factor, unspecified shoulder','Y','0000-00-00 00:00:00'),(119168,10,'M06.012 ','Rheumatoid arthritis without rheumatoid factor, left shoulder','Y','0000-00-00 00:00:00'),(119167,10,'M06.011 ','Rheumatoid arthritis without rheumatoid factor, right shoulder','Y','0000-00-00 00:00:00'),(119166,10,'M06.00 ','Rheumatoid arthritis without rheumatoid factor, unspecified site','Y','0000-00-00 00:00:00'),(119165,10,'M05.9 ','Rheumatoid arthritis with rheumatoid factor, unspecified','Y','0000-00-00 00:00:00'),(119164,10,'M05.8A ','Other rheumatoid arthritis with rheumatoid factor of other specified site','Y','0000-00-00 00:00:00'),(119163,10,'M05.89 ','Other rheumatoid arthritis with rheumatoid factor of multiple sites','Y','0000-00-00 00:00:00'),(119162,10,'M05.879 ','Other rheumatoid arthritis with rheumatoid factor of unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119161,10,'M05.872 ','Other rheumatoid arthritis with rheumatoid factor of left ankle and foot','Y','0000-00-00 00:00:00'),(119160,10,'M05.871 ','Other rheumatoid arthritis with rheumatoid factor of right ankle and foot','Y','0000-00-00 00:00:00'),(119159,10,'M05.869 ','Other rheumatoid arthritis with rheumatoid factor of unspecified knee','Y','0000-00-00 00:00:00'),(119158,10,'M05.862 ','Other rheumatoid arthritis with rheumatoid factor of left knee','Y','0000-00-00 00:00:00'),(119157,10,'M05.861 ','Other rheumatoid arthritis with rheumatoid factor of right knee','Y','0000-00-00 00:00:00'),(119156,10,'M05.859 ','Other rheumatoid arthritis with rheumatoid factor of unspecified hip','Y','0000-00-00 00:00:00'),(119155,10,'M05.852 ','Other rheumatoid arthritis with rheumatoid factor of left hip','Y','0000-00-00 00:00:00'),(119154,10,'M05.851 ','Other rheumatoid arthritis with rheumatoid factor of right hip','Y','0000-00-00 00:00:00'),(119153,10,'M05.849 ','Other rheumatoid arthritis with rheumatoid factor of unspecified hand','Y','0000-00-00 00:00:00'),(119152,10,'M05.842 ','Other rheumatoid arthritis with rheumatoid factor of left hand','Y','0000-00-00 00:00:00'),(119151,10,'M05.841 ','Other rheumatoid arthritis with rheumatoid factor of right hand','Y','0000-00-00 00:00:00'),(119150,10,'M05.839 ','Other rheumatoid arthritis with rheumatoid factor of unspecified wrist','Y','0000-00-00 00:00:00'),(119149,10,'M05.832 ','Other rheumatoid arthritis with rheumatoid factor of left wrist','Y','0000-00-00 00:00:00'),(119147,10,'M05.829 ','Other rheumatoid arthritis with rheumatoid factor of unspecified elbow','Y','0000-00-00 00:00:00'),(119148,10,'M05.831 ','Other rheumatoid arthritis with rheumatoid factor of right wrist','Y','0000-00-00 00:00:00'),(119146,10,'M05.822 ','Other rheumatoid arthritis with rheumatoid factor of left elbow','Y','0000-00-00 00:00:00'),(119145,10,'M05.821 ','Other rheumatoid arthritis with rheumatoid factor of right elbow','Y','0000-00-00 00:00:00'),(119143,10,'M05.812 ','Other rheumatoid arthritis with rheumatoid factor of left shoulder','Y','0000-00-00 00:00:00'),(119144,10,'M05.819 ','Other rheumatoid arthritis with rheumatoid factor of unspecified shoulder','Y','0000-00-00 00:00:00'),(119142,10,'M05.811 ','Other rheumatoid arthritis with rheumatoid factor of right shoulder','Y','0000-00-00 00:00:00'),(119141,10,'M05.80 ','Other rheumatoid arthritis with rheumatoid factor of unspecified site','Y','0000-00-00 00:00:00'),(119140,10,'M05.7A ','Rheumatoid arthritis with rheumatoid factor of other specified site without organ or systems involvement','Y','0000-00-00 00:00:00'),(119139,10,'M05.79 ','Rheumatoid arthritis with rheumatoid factor of multiple sites without organ or systems involvement','Y','0000-00-00 00:00:00'),(119138,10,'M05.779 ','Rheumatoid arthritis with rheumatoid factor of unspecified ankle and foot without organ or systems involvement','Y','0000-00-00 00:00:00'),(119137,10,'M05.772 ','Rheumatoid arthritis with rheumatoid factor of left ankle and foot without organ or systems involvement','Y','0000-00-00 00:00:00'),(119136,10,'M05.771 ','Rheumatoid arthritis with rheumatoid factor of right ankle and foot without organ or systems involvement','Y','0000-00-00 00:00:00'),(119135,10,'M05.769 ','Rheumatoid arthritis with rheumatoid factor of unspecified knee without organ or systems involvement','Y','0000-00-00 00:00:00'),(119134,10,'M05.762 ','Rheumatoid arthritis with rheumatoid factor of left knee without organ or systems involvement','Y','0000-00-00 00:00:00'),(119133,10,'M05.761 ','Rheumatoid arthritis with rheumatoid factor of right knee without organ or systems involvement','Y','0000-00-00 00:00:00'),(119132,10,'M05.759 ','Rheumatoid arthritis with rheumatoid factor of unspecified hip without organ or systems involvement','Y','0000-00-00 00:00:00'),(119131,10,'M05.752 ','Rheumatoid arthritis with rheumatoid factor of left hip without organ or systems involvement','Y','0000-00-00 00:00:00'),(119130,10,'M05.751 ','Rheumatoid arthritis with rheumatoid factor of right hip without organ or systems involvement','Y','0000-00-00 00:00:00'),(119129,10,'M05.749 ','Rheumatoid arthritis with rheumatoid factor of unspecified hand without organ or systems involvement','Y','0000-00-00 00:00:00'),(119128,10,'M05.742 ','Rheumatoid arthritis with rheumatoid factor of left hand without organ or systems involvement','Y','0000-00-00 00:00:00'),(119127,10,'M05.741 ','Rheumatoid arthritis with rheumatoid factor of right hand without organ or systems involvement','Y','0000-00-00 00:00:00'),(119126,10,'M05.739 ','Rheumatoid arthritis with rheumatoid factor of unspecified wrist without organ or systems involvement','Y','0000-00-00 00:00:00'),(119125,10,'M05.732 ','Rheumatoid arthritis with rheumatoid factor of left wrist without organ or systems involvement','Y','0000-00-00 00:00:00'),(119124,10,'M05.731 ','Rheumatoid arthritis with rheumatoid factor of right wrist without organ or systems involvement','Y','0000-00-00 00:00:00'),(119123,10,'M05.729 ','Rheumatoid arthritis with rheumatoid factor of unspecified elbow without organ or systems involvement','Y','0000-00-00 00:00:00'),(119122,10,'M05.722 ','Rheumatoid arthritis with rheumatoid factor of left elbow without organ or systems involvement','Y','0000-00-00 00:00:00'),(119121,10,'M05.721 ','Rheumatoid arthritis with rheumatoid factor of right elbow without organ or systems involvement','Y','0000-00-00 00:00:00'),(119120,10,'M05.719 ','Rheumatoid arthritis with rheumatoid factor of unspecified shoulder without organ or systems involvement','Y','0000-00-00 00:00:00'),(119119,10,'M05.712 ','Rheumatoid arthritis with rheumatoid factor of left shoulder without organ or systems involvement','Y','0000-00-00 00:00:00'),(119118,10,'M05.711 ','Rheumatoid arthritis with rheumatoid factor of right shoulder without organ or systems involvement','Y','0000-00-00 00:00:00'),(119117,10,'M05.70 ','Rheumatoid arthritis with rheumatoid factor of unspecified site without organ or systems involvement','Y','0000-00-00 00:00:00'),(119116,10,'M05.69 ','Rheumatoid arthritis of multiple sites with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119115,10,'M05.679 ','Rheumatoid arthritis of unspecified ankle and foot with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119114,10,'M05.672 ','Rheumatoid arthritis of left ankle and foot with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119113,10,'M05.671 ','Rheumatoid arthritis of right ankle and foot with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119112,10,'M05.669 ','Rheumatoid arthritis of unspecified knee with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119111,10,'M05.662 ','Rheumatoid arthritis of left knee with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119110,10,'M05.661 ','Rheumatoid arthritis of right knee with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119109,10,'M05.659 ','Rheumatoid arthritis of unspecified hip with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119108,10,'M05.652 ','Rheumatoid arthritis of left hip with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119107,10,'M05.651 ','Rheumatoid arthritis of right hip with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119106,10,'M05.649 ','Rheumatoid arthritis of unspecified hand with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119105,10,'M05.642 ','Rheumatoid arthritis of left hand with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119104,10,'M05.641 ','Rheumatoid arthritis of right hand with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119103,10,'M05.639 ','Rheumatoid arthritis of unspecified wrist with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119102,10,'M05.632 ','Rheumatoid arthritis of left wrist with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119101,10,'M05.631 ','Rheumatoid arthritis of right wrist with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119100,10,'M05.629 ','Rheumatoid arthritis of unspecified elbow with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119099,10,'M05.622 ','Rheumatoid arthritis of left elbow with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119098,10,'M05.621 ','Rheumatoid arthritis of right elbow with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119097,10,'M05.619 ','Rheumatoid arthritis of unspecified shoulder with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119096,10,'M05.612 ','Rheumatoid arthritis of left shoulder with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119095,10,'M05.611 ','Rheumatoid arthritis of right shoulder with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119094,10,'M05.60 ','Rheumatoid arthritis of unspecified site with involvement of other organs and systems','Y','0000-00-00 00:00:00'),(119093,10,'M05.59 ','Rheumatoid polyneuropathy with rheumatoid arthritis of multiple sites','Y','0000-00-00 00:00:00'),(119092,10,'M05.579 ','Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119091,10,'M05.572 ','Rheumatoid polyneuropathy with rheumatoid arthritis of left ankle and foot','Y','0000-00-00 00:00:00'),(119090,10,'M05.571 ','Rheumatoid polyneuropathy with rheumatoid arthritis of right ankle and foot','Y','0000-00-00 00:00:00'),(119089,10,'M05.569 ','Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified knee','Y','0000-00-00 00:00:00'),(119088,10,'M05.562 ','Rheumatoid polyneuropathy with rheumatoid arthritis of left knee','Y','0000-00-00 00:00:00'),(119087,10,'M05.561 ','Rheumatoid polyneuropathy with rheumatoid arthritis of right knee','Y','0000-00-00 00:00:00'),(119086,10,'M05.559 ','Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified hip','Y','0000-00-00 00:00:00'),(119085,10,'M05.552 ','Rheumatoid polyneuropathy with rheumatoid arthritis of left hip','Y','0000-00-00 00:00:00'),(119084,10,'M05.551 ','Rheumatoid polyneuropathy with rheumatoid arthritis of right hip','Y','0000-00-00 00:00:00'),(119083,10,'M05.549 ','Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified hand','Y','0000-00-00 00:00:00'),(119082,10,'M05.542 ','Rheumatoid polyneuropathy with rheumatoid arthritis of left hand','Y','0000-00-00 00:00:00'),(119081,10,'M05.541 ','Rheumatoid polyneuropathy with rheumatoid arthritis of right hand','Y','0000-00-00 00:00:00'),(119080,10,'M05.539 ','Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified wrist','Y','0000-00-00 00:00:00'),(119079,10,'M05.532 ','Rheumatoid polyneuropathy with rheumatoid arthritis of left wrist','Y','0000-00-00 00:00:00'),(119078,10,'M05.531 ','Rheumatoid polyneuropathy with rheumatoid arthritis of right wrist','Y','0000-00-00 00:00:00'),(119077,10,'M05.529 ','Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified elbow','Y','0000-00-00 00:00:00'),(119076,10,'M05.522 ','Rheumatoid polyneuropathy with rheumatoid arthritis of left elbow','Y','0000-00-00 00:00:00'),(119075,10,'M05.521 ','Rheumatoid polyneuropathy with rheumatoid arthritis of right elbow','Y','0000-00-00 00:00:00'),(119074,10,'M05.519 ','Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified shoulder','Y','0000-00-00 00:00:00'),(119073,10,'M05.512 ','Rheumatoid polyneuropathy with rheumatoid arthritis of left shoulder','Y','0000-00-00 00:00:00'),(119072,10,'M05.511 ','Rheumatoid polyneuropathy with rheumatoid arthritis of right shoulder','Y','0000-00-00 00:00:00'),(119071,10,'M05.50 ','Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified site','Y','0000-00-00 00:00:00'),(119070,10,'M05.49 ','Rheumatoid myopathy with rheumatoid arthritis of multiple sites','Y','0000-00-00 00:00:00'),(119069,10,'M05.479 ','Rheumatoid myopathy with rheumatoid arthritis of unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119068,10,'M05.472 ','Rheumatoid myopathy with rheumatoid arthritis of left ankle and foot','Y','0000-00-00 00:00:00'),(119067,10,'M05.471 ','Rheumatoid myopathy with rheumatoid arthritis of right ankle and foot','Y','0000-00-00 00:00:00'),(119066,10,'M05.469 ','Rheumatoid myopathy with rheumatoid arthritis of unspecified knee','Y','0000-00-00 00:00:00'),(119065,10,'M05.462 ','Rheumatoid myopathy with rheumatoid arthritis of left knee','Y','0000-00-00 00:00:00'),(119064,10,'M05.461 ','Rheumatoid myopathy with rheumatoid arthritis of right knee','Y','0000-00-00 00:00:00'),(119063,10,'M05.459 ','Rheumatoid myopathy with rheumatoid arthritis of unspecified hip','Y','0000-00-00 00:00:00'),(119062,10,'M05.452 ','Rheumatoid myopathy with rheumatoid arthritis of left hip','Y','0000-00-00 00:00:00'),(119061,10,'M05.451 ','Rheumatoid myopathy with rheumatoid arthritis of right hip','Y','0000-00-00 00:00:00'),(119060,10,'M05.449 ','Rheumatoid myopathy with rheumatoid arthritis of unspecified hand','Y','0000-00-00 00:00:00'),(119059,10,'M05.442 ','Rheumatoid myopathy with rheumatoid arthritis of left hand','Y','0000-00-00 00:00:00'),(119058,10,'M05.441 ','Rheumatoid myopathy with rheumatoid arthritis of right hand','Y','0000-00-00 00:00:00'),(119057,10,'M05.439 ','Rheumatoid myopathy with rheumatoid arthritis of unspecified wrist','Y','0000-00-00 00:00:00'),(119056,10,'M05.432 ','Rheumatoid myopathy with rheumatoid arthritis of left wrist','Y','0000-00-00 00:00:00'),(119055,10,'M05.431 ','Rheumatoid myopathy with rheumatoid arthritis of right wrist','Y','0000-00-00 00:00:00'),(119054,10,'M05.429 ','Rheumatoid myopathy with rheumatoid arthritis of unspecified elbow','Y','0000-00-00 00:00:00'),(119053,10,'M05.422 ','Rheumatoid myopathy with rheumatoid arthritis of left elbow','Y','0000-00-00 00:00:00'),(119052,10,'M05.421 ','Rheumatoid myopathy with rheumatoid arthritis of right elbow','Y','0000-00-00 00:00:00'),(119051,10,'M05.419 ','Rheumatoid myopathy with rheumatoid arthritis of unspecified shoulder','Y','0000-00-00 00:00:00'),(119050,10,'M05.412 ','Rheumatoid myopathy with rheumatoid arthritis of left shoulder','Y','0000-00-00 00:00:00'),(119048,10,'M05.40 ','Rheumatoid myopathy with rheumatoid arthritis of unspecified site','Y','0000-00-00 00:00:00'),(119049,10,'M05.411 ','Rheumatoid myopathy with rheumatoid arthritis of right shoulder','Y','0000-00-00 00:00:00'),(119047,10,'M05.39 ','Rheumatoid heart disease with rheumatoid arthritis of multiple sites','Y','0000-00-00 00:00:00'),(119046,10,'M05.379 ','Rheumatoid heart disease with rheumatoid arthritis of unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119045,10,'M05.372 ','Rheumatoid heart disease with rheumatoid arthritis of left ankle and foot','Y','0000-00-00 00:00:00'),(119044,10,'M05.371 ','Rheumatoid heart disease with rheumatoid arthritis of right ankle and foot','Y','0000-00-00 00:00:00'),(119043,10,'M05.369 ','Rheumatoid heart disease with rheumatoid arthritis of unspecified knee','Y','0000-00-00 00:00:00'),(119042,10,'M05.362 ','Rheumatoid heart disease with rheumatoid arthritis of left knee','Y','0000-00-00 00:00:00'),(119041,10,'M05.361 ','Rheumatoid heart disease with rheumatoid arthritis of right knee','Y','0000-00-00 00:00:00'),(119040,10,'M05.359 ','Rheumatoid heart disease with rheumatoid arthritis of unspecified hip','Y','0000-00-00 00:00:00'),(119039,10,'M05.352 ','Rheumatoid heart disease with rheumatoid arthritis of left hip','Y','0000-00-00 00:00:00'),(119038,10,'M05.351 ','Rheumatoid heart disease with rheumatoid arthritis of right hip','Y','0000-00-00 00:00:00'),(119037,10,'M05.349 ','Rheumatoid heart disease with rheumatoid arthritis of unspecified hand','Y','0000-00-00 00:00:00'),(119036,10,'M05.342 ','Rheumatoid heart disease with rheumatoid arthritis of left hand','Y','0000-00-00 00:00:00'),(119035,10,'M05.341 ','Rheumatoid heart disease with rheumatoid arthritis of right hand','Y','0000-00-00 00:00:00'),(119034,10,'M05.339 ','Rheumatoid heart disease with rheumatoid arthritis of unspecified wrist','Y','0000-00-00 00:00:00'),(119033,10,'M05.332 ','Rheumatoid heart disease with rheumatoid arthritis of left wrist','Y','0000-00-00 00:00:00'),(119032,10,'M05.331 ','Rheumatoid heart disease with rheumatoid arthritis of right wrist','Y','0000-00-00 00:00:00'),(119031,10,'M05.329 ','Rheumatoid heart disease with rheumatoid arthritis of unspecified elbow','Y','0000-00-00 00:00:00'),(119030,10,'M05.322 ','Rheumatoid heart disease with rheumatoid arthritis of left elbow','Y','0000-00-00 00:00:00'),(119029,10,'M05.321 ','Rheumatoid heart disease with rheumatoid arthritis of right elbow','Y','0000-00-00 00:00:00'),(119027,10,'M05.312 ','Rheumatoid heart disease with rheumatoid arthritis of left shoulder','Y','0000-00-00 00:00:00'),(119028,10,'M05.319 ','Rheumatoid heart disease with rheumatoid arthritis of unspecified shoulder','Y','0000-00-00 00:00:00'),(119026,10,'M05.311 ','Rheumatoid heart disease with rheumatoid arthritis of right shoulder','Y','0000-00-00 00:00:00'),(119025,10,'M05.30 ','Rheumatoid heart disease with rheumatoid arthritis of unspecified site','Y','0000-00-00 00:00:00'),(119024,10,'M05.29 ','Rheumatoid vasculitis with rheumatoid arthritis of multiple sites','Y','0000-00-00 00:00:00'),(119023,10,'M05.279 ','Rheumatoid vasculitis with rheumatoid arthritis of unspecified ankle and foot','Y','0000-00-00 00:00:00'),(119022,10,'M05.272 ','Rheumatoid vasculitis with rheumatoid arthritis of left ankle and foot','Y','0000-00-00 00:00:00'),(119021,10,'M05.271 ','Rheumatoid vasculitis with rheumatoid arthritis of right ankle and foot','Y','0000-00-00 00:00:00'),(119019,10,'M05.262 ','Rheumatoid vasculitis with rheumatoid arthritis of left knee','Y','0000-00-00 00:00:00'),(119020,10,'M05.269 ','Rheumatoid vasculitis with rheumatoid arthritis of unspecified knee','Y','0000-00-00 00:00:00'),(119018,10,'M05.261 ','Rheumatoid vasculitis with rheumatoid arthritis of right knee','Y','0000-00-00 00:00:00'),(119017,10,'M05.259 ','Rheumatoid vasculitis with rheumatoid arthritis of unspecified hip','Y','0000-00-00 00:00:00'),(119016,10,'M05.252 ','Rheumatoid vasculitis with rheumatoid arthritis of left hip','Y','0000-00-00 00:00:00'),(119015,10,'M05.251 ','Rheumatoid vasculitis with rheumatoid arthritis of right hip','Y','0000-00-00 00:00:00'),(119014,10,'M05.249 ','Rheumatoid vasculitis with rheumatoid arthritis of unspecified hand','Y','0000-00-00 00:00:00'),(119013,10,'M05.242 ','Rheumatoid vasculitis with rheumatoid arthritis of left hand','Y','0000-00-00 00:00:00'),(119012,10,'M05.241 ','Rheumatoid vasculitis with rheumatoid arthritis of right hand','Y','0000-00-00 00:00:00'),(119011,10,'M05.239 ','Rheumatoid vasculitis with rheumatoid arthritis of unspecified wrist','Y','0000-00-00 00:00:00'),(119010,10,'M05.232 ','Rheumatoid vasculitis with rheumatoid arthritis of left wrist','Y','0000-00-00 00:00:00'),(119009,10,'M05.231 ','Rheumatoid vasculitis with rheumatoid arthritis of right wrist','Y','0000-00-00 00:00:00'),(119008,10,'M05.229 ','Rheumatoid vasculitis with rheumatoid arthritis of unspecified elbow','Y','0000-00-00 00:00:00'),(119006,10,'M05.221 ','Rheumatoid vasculitis with rheumatoid arthritis of right elbow','Y','0000-00-00 00:00:00'),(119007,10,'M05.222 ','Rheumatoid vasculitis with rheumatoid arthritis of left elbow','Y','0000-00-00 00:00:00'),(119005,10,'M05.219 ','Rheumatoid vasculitis with rheumatoid arthritis of unspecified shoulder','Y','0000-00-00 00:00:00'),(119004,10,'M05.212 ','Rheumatoid vasculitis with rheumatoid arthritis of left shoulder','Y','0000-00-00 00:00:00'),(119003,10,'M05.211 ','Rheumatoid vasculitis with rheumatoid arthritis of right shoulder','Y','0000-00-00 00:00:00'),(119002,10,'M05.20 ','Rheumatoid vasculitis with rheumatoid arthritis of unspecified site','Y','0000-00-00 00:00:00'),(119001,10,'M05.19 ','Rheumatoid lung disease with rheumatoid arthritis of multiple sites','Y','0000-00-00 00:00:00'),(119000,10,'M05.179 ','Rheumatoid lung disease with rheumatoid arthritis of unspecified ankle and foot','Y','0000-00-00 00:00:00'),(118999,10,'M05.172 ','Rheumatoid lung disease with rheumatoid arthritis of left ankle and foot','Y','0000-00-00 00:00:00'),(118998,10,'M05.171 ','Rheumatoid lung disease with rheumatoid arthritis of right ankle and foot','Y','0000-00-00 00:00:00'),(118997,10,'M05.169 ','Rheumatoid lung disease with rheumatoid arthritis of unspecified knee','Y','0000-00-00 00:00:00'),(118996,10,'M05.162 ','Rheumatoid lung disease with rheumatoid arthritis of left knee','Y','0000-00-00 00:00:00'),(118995,10,'M05.161 ','Rheumatoid lung disease with rheumatoid arthritis of right knee','Y','0000-00-00 00:00:00'),(118994,10,'M05.159 ','Rheumatoid lung disease with rheumatoid arthritis of unspecified hip','Y','0000-00-00 00:00:00'),(118993,10,'M05.152 ','Rheumatoid lung disease with rheumatoid arthritis of left hip','Y','0000-00-00 00:00:00'),(118992,10,'M05.151 ','Rheumatoid lung disease with rheumatoid arthritis of right hip','Y','0000-00-00 00:00:00'),(118991,10,'M05.149 ','Rheumatoid lung disease with rheumatoid arthritis of unspecified hand','Y','0000-00-00 00:00:00'),(118990,10,'M05.142 ','Rheumatoid lung disease with rheumatoid arthritis of left hand','Y','0000-00-00 00:00:00'),(118989,10,'M05.141 ','Rheumatoid lung disease with rheumatoid arthritis of right hand','Y','0000-00-00 00:00:00'),(118988,10,'M05.139 ','Rheumatoid lung disease with rheumatoid arthritis of unspecified wrist','Y','0000-00-00 00:00:00'),(118987,10,'M05.132 ','Rheumatoid lung disease with rheumatoid arthritis of left wrist','Y','0000-00-00 00:00:00'),(118986,10,'M05.131 ','Rheumatoid lung disease with rheumatoid arthritis of right wrist','Y','0000-00-00 00:00:00'),(118985,10,'M05.129 ','Rheumatoid lung disease with rheumatoid arthritis of unspecified elbow','Y','0000-00-00 00:00:00'),(118984,10,'M05.122 ','Rheumatoid lung disease with rheumatoid arthritis of left elbow','Y','0000-00-00 00:00:00'),(118983,10,'M05.121 ','Rheumatoid lung disease with rheumatoid arthritis of right elbow','Y','0000-00-00 00:00:00'),(118982,10,'M05.119 ','Rheumatoid lung disease with rheumatoid arthritis of unspecified shoulder','Y','0000-00-00 00:00:00'),(118981,10,'M05.112 ','Rheumatoid lung disease with rheumatoid arthritis of left shoulder','Y','0000-00-00 00:00:00'),(118980,10,'M05.111 ','Rheumatoid lung disease with rheumatoid arthritis of right shoulder','Y','0000-00-00 00:00:00'),(118979,10,'M05.10 ','Rheumatoid lung disease with rheumatoid arthritis of unspecified site','Y','0000-00-00 00:00:00'),(118978,10,'M05.09 ','Felty\'s syndrome, multiple sites','Y','0000-00-00 00:00:00'),(118977,10,'M05.079 ','Felty\'s syndrome, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(118976,10,'M05.072 ','Felty\'s syndrome, left ankle and foot','Y','0000-00-00 00:00:00'),(118975,10,'M05.071 ','Felty\'s syndrome, right ankle and foot','Y','0000-00-00 00:00:00'),(118974,10,'M05.069 ','Felty\'s syndrome, unspecified knee','Y','0000-00-00 00:00:00'),(118972,10,'M05.061 ','Felty\'s syndrome, right knee','Y','0000-00-00 00:00:00'),(118973,10,'M05.062 ','Felty\'s syndrome, left knee','Y','0000-00-00 00:00:00'),(118971,10,'M05.059 ','Felty\'s syndrome, unspecified hip','Y','0000-00-00 00:00:00'),(118970,10,'M05.052 ','Felty\'s syndrome, left hip','Y','0000-00-00 00:00:00'),(118969,10,'M05.051 ','Felty\'s syndrome, right hip','Y','0000-00-00 00:00:00'),(118968,10,'M05.049 ','Felty\'s syndrome, unspecified hand','Y','0000-00-00 00:00:00'),(118967,10,'M05.042 ','Felty\'s syndrome, left hand','Y','0000-00-00 00:00:00'),(118966,10,'M05.041 ','Felty\'s syndrome, right hand','Y','0000-00-00 00:00:00'),(118965,10,'M05.039 ','Felty\'s syndrome, unspecified wrist','Y','0000-00-00 00:00:00'),(118964,10,'M05.032 ','Felty\'s syndrome, left wrist','Y','0000-00-00 00:00:00'),(118963,10,'M05.031 ','Felty\'s syndrome, right wrist','Y','0000-00-00 00:00:00'),(118962,10,'M05.029 ','Felty\'s syndrome, unspecified elbow','Y','0000-00-00 00:00:00'),(118960,10,'M05.021 ','Felty\'s syndrome, right elbow','Y','0000-00-00 00:00:00'),(118961,10,'M05.022 ','Felty\'s syndrome, left elbow','Y','0000-00-00 00:00:00'),(118959,10,'M05.019 ','Felty\'s syndrome, unspecified shoulder','Y','0000-00-00 00:00:00'),(118958,10,'M05.012 ','Felty\'s syndrome, left shoulder','Y','0000-00-00 00:00:00'),(118957,10,'M05.011 ','Felty\'s syndrome, right shoulder','Y','0000-00-00 00:00:00'),(118956,10,'M05.00 ','Felty\'s syndrome, unspecified site','Y','0000-00-00 00:00:00'),(118955,10,'M04.9 ','Autoinflammatory syndrome, unspecified','Y','0000-00-00 00:00:00'),(118954,10,'M04.8 ','Other autoinflammatory syndromes','Y','0000-00-00 00:00:00'),(118953,10,'M04.2 ','Cryopyrin-associated periodic syndromes','Y','0000-00-00 00:00:00'),(118952,10,'M04.1 ','Periodic fever syndromes','Y','0000-00-00 00:00:00'),(118951,10,'M02.9 ','Reactive arthropathy, unspecified','Y','0000-00-00 00:00:00'),(118950,10,'M02.89 ','Other reactive arthropathies, multiple sites','Y','0000-00-00 00:00:00'),(118949,10,'M02.88 ','Other reactive arthropathies, vertebrae','Y','0000-00-00 00:00:00'),(118948,10,'M02.879 ','Other reactive arthropathies, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(118947,10,'M02.872 ','Other reactive arthropathies, left ankle and foot','Y','0000-00-00 00:00:00'),(118946,10,'M02.871 ','Other reactive arthropathies, right ankle and foot','Y','0000-00-00 00:00:00'),(118945,10,'M02.869 ','Other reactive arthropathies, unspecified knee','Y','0000-00-00 00:00:00'),(118944,10,'M02.862 ','Other reactive arthropathies, left knee','Y','0000-00-00 00:00:00'),(118943,10,'M02.861 ','Other reactive arthropathies, right knee','Y','0000-00-00 00:00:00'),(118942,10,'M02.859 ','Other reactive arthropathies, unspecified hip','Y','0000-00-00 00:00:00'),(118941,10,'M02.852 ','Other reactive arthropathies, left hip','Y','0000-00-00 00:00:00'),(118940,10,'M02.851 ','Other reactive arthropathies, right hip','Y','0000-00-00 00:00:00'),(118939,10,'M02.849 ','Other reactive arthropathies, unspecified hand','Y','0000-00-00 00:00:00'),(118938,10,'M02.842 ','Other reactive arthropathies, left hand','Y','0000-00-00 00:00:00'),(118937,10,'M02.841 ','Other reactive arthropathies, right hand','Y','0000-00-00 00:00:00'),(118936,10,'M02.839 ','Other reactive arthropathies, unspecified wrist','Y','0000-00-00 00:00:00'),(118935,10,'M02.832 ','Other reactive arthropathies, left wrist','Y','0000-00-00 00:00:00'),(118934,10,'M02.831 ','Other reactive arthropathies, right wrist','Y','0000-00-00 00:00:00'),(118933,10,'M02.829 ','Other reactive arthropathies, unspecified elbow','Y','0000-00-00 00:00:00'),(118932,10,'M02.822 ','Other reactive arthropathies, left elbow','Y','0000-00-00 00:00:00'),(118931,10,'M02.821 ','Other reactive arthropathies, right elbow','Y','0000-00-00 00:00:00'),(118930,10,'M02.819 ','Other reactive arthropathies, unspecified shoulder','Y','0000-00-00 00:00:00'),(118929,10,'M02.812 ','Other reactive arthropathies, left shoulder','Y','0000-00-00 00:00:00'),(118928,10,'M02.811 ','Other reactive arthropathies, right shoulder','Y','0000-00-00 00:00:00'),(118927,10,'M02.80 ','Other reactive arthropathies, unspecified site','Y','0000-00-00 00:00:00'),(118925,10,'M02.38 ','Reiter\'s disease, vertebrae','Y','0000-00-00 00:00:00'),(118926,10,'M02.39 ','Reiter\'s disease, multiple sites','Y','0000-00-00 00:00:00'),(118924,10,'M02.379 ','Reiter\'s disease, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(118923,10,'M02.372 ','Reiter\'s disease, left ankle and foot','Y','0000-00-00 00:00:00'),(118922,10,'M02.371 ','Reiter\'s disease, right ankle and foot','Y','0000-00-00 00:00:00'),(118920,10,'M02.362 ','Reiter\'s disease, left knee','Y','0000-00-00 00:00:00'),(118921,10,'M02.369 ','Reiter\'s disease, unspecified knee','Y','0000-00-00 00:00:00'),(118919,10,'M02.361 ','Reiter\'s disease, right knee','Y','0000-00-00 00:00:00'),(118918,10,'M02.359 ','Reiter\'s disease, unspecified hip','Y','0000-00-00 00:00:00'),(118917,10,'M02.352 ','Reiter\'s disease, left hip','Y','0000-00-00 00:00:00'),(118916,10,'M02.351 ','Reiter\'s disease, right hip','Y','0000-00-00 00:00:00'),(118915,10,'M02.349 ','Reiter\'s disease, unspecified hand','Y','0000-00-00 00:00:00'),(118914,10,'M02.342 ','Reiter\'s disease, left hand','Y','0000-00-00 00:00:00'),(118913,10,'M02.341 ','Reiter\'s disease, right hand','Y','0000-00-00 00:00:00'),(118912,10,'M02.339 ','Reiter\'s disease, unspecified wrist','Y','0000-00-00 00:00:00'),(118911,10,'M02.332 ','Reiter\'s disease, left wrist','Y','0000-00-00 00:00:00'),(118910,10,'M02.331 ','Reiter\'s disease, right wrist','Y','0000-00-00 00:00:00'),(118909,10,'M02.329 ','Reiter\'s disease, unspecified elbow','Y','0000-00-00 00:00:00'),(118908,10,'M02.322 ','Reiter\'s disease, left elbow','Y','0000-00-00 00:00:00'),(118907,10,'M02.321 ','Reiter\'s disease, right elbow','Y','0000-00-00 00:00:00'),(118906,10,'M02.319 ','Reiter\'s disease, unspecified shoulder','Y','0000-00-00 00:00:00'),(118905,10,'M02.312 ','Reiter\'s disease, left shoulder','Y','0000-00-00 00:00:00'),(118904,10,'M02.311 ','Reiter\'s disease, right shoulder','Y','0000-00-00 00:00:00'),(118903,10,'M02.30 ','Reiter\'s disease, unspecified site','Y','0000-00-00 00:00:00'),(118902,10,'M02.29 ','Postimmunization arthropathy, multiple sites','Y','0000-00-00 00:00:00'),(118901,10,'M02.28 ','Postimmunization arthropathy, vertebrae','Y','0000-00-00 00:00:00'),(118900,10,'M02.279 ','Postimmunization arthropathy, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(118899,10,'M02.272 ','Postimmunization arthropathy, left ankle and foot','Y','0000-00-00 00:00:00'),(118898,10,'M02.271 ','Postimmunization arthropathy, right ankle and foot','Y','0000-00-00 00:00:00'),(118897,10,'M02.269 ','Postimmunization arthropathy, unspecified knee','Y','0000-00-00 00:00:00'),(118896,10,'M02.262 ','Postimmunization arthropathy, left knee','Y','0000-00-00 00:00:00'),(118895,10,'M02.261 ','Postimmunization arthropathy, right knee','Y','0000-00-00 00:00:00'),(118894,10,'M02.259 ','Postimmunization arthropathy, unspecified hip','Y','0000-00-00 00:00:00'),(118893,10,'M02.252 ','Postimmunization arthropathy, left hip','Y','0000-00-00 00:00:00'),(118892,10,'M02.251 ','Postimmunization arthropathy, right hip','Y','0000-00-00 00:00:00'),(118891,10,'M02.249 ','Postimmunization arthropathy, unspecified hand','Y','0000-00-00 00:00:00'),(118890,10,'M02.242 ','Postimmunization arthropathy, left hand','Y','0000-00-00 00:00:00'),(118889,10,'M02.241 ','Postimmunization arthropathy, right hand','Y','0000-00-00 00:00:00'),(118888,10,'M02.239 ','Postimmunization arthropathy, unspecified wrist','Y','0000-00-00 00:00:00'),(118887,10,'M02.232 ','Postimmunization arthropathy, left wrist','Y','0000-00-00 00:00:00'),(118886,10,'M02.231 ','Postimmunization arthropathy, right wrist','Y','0000-00-00 00:00:00'),(118885,10,'M02.229 ','Postimmunization arthropathy, unspecified elbow','Y','0000-00-00 00:00:00'),(118884,10,'M02.222 ','Postimmunization arthropathy, left elbow','Y','0000-00-00 00:00:00'),(118883,10,'M02.221 ','Postimmunization arthropathy, right elbow','Y','0000-00-00 00:00:00'),(118882,10,'M02.219 ','Postimmunization arthropathy, unspecified shoulder','Y','0000-00-00 00:00:00'),(118881,10,'M02.212 ','Postimmunization arthropathy, left shoulder','Y','0000-00-00 00:00:00'),(118880,10,'M02.211 ','Postimmunization arthropathy, right shoulder','Y','0000-00-00 00:00:00'),(118879,10,'M02.20 ','Postimmunization arthropathy, unspecified site','Y','0000-00-00 00:00:00'),(118878,10,'M02.19 ','Postdysenteric arthropathy, multiple sites','Y','0000-00-00 00:00:00'),(118877,10,'M02.18 ','Postdysenteric arthropathy, vertebrae','Y','0000-00-00 00:00:00'),(118876,10,'M02.179 ','Postdysenteric arthropathy, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(118875,10,'M02.172 ','Postdysenteric arthropathy, left ankle and foot','Y','0000-00-00 00:00:00'),(118874,10,'M02.171 ','Postdysenteric arthropathy, right ankle and foot','Y','0000-00-00 00:00:00'),(118873,10,'M02.169 ','Postdysenteric arthropathy, unspecified knee','Y','0000-00-00 00:00:00'),(118872,10,'M02.162 ','Postdysenteric arthropathy, left knee','Y','0000-00-00 00:00:00'),(118871,10,'M02.161 ','Postdysenteric arthropathy, right knee','Y','0000-00-00 00:00:00'),(118870,10,'M02.159 ','Postdysenteric arthropathy, unspecified hip','Y','0000-00-00 00:00:00'),(118869,10,'M02.152 ','Postdysenteric arthropathy, left hip','Y','0000-00-00 00:00:00'),(118868,10,'M02.151 ','Postdysenteric arthropathy, right hip','Y','0000-00-00 00:00:00'),(118867,10,'M02.149 ','Postdysenteric arthropathy, unspecified hand','Y','0000-00-00 00:00:00'),(118865,10,'M02.141 ','Postdysenteric arthropathy, right hand','Y','0000-00-00 00:00:00'),(118866,10,'M02.142 ','Postdysenteric arthropathy, left hand','Y','0000-00-00 00:00:00'),(118864,10,'M02.139 ','Postdysenteric arthropathy, unspecified wrist','Y','0000-00-00 00:00:00'),(118863,10,'M02.132 ','Postdysenteric arthropathy, left wrist','Y','0000-00-00 00:00:00'),(118862,10,'M02.131 ','Postdysenteric arthropathy, right wrist','Y','0000-00-00 00:00:00'),(118861,10,'M02.129 ','Postdysenteric arthropathy, unspecified elbow','Y','0000-00-00 00:00:00'),(118860,10,'M02.122 ','Postdysenteric arthropathy, left elbow','Y','0000-00-00 00:00:00'),(118859,10,'M02.121 ','Postdysenteric arthropathy, right elbow','Y','0000-00-00 00:00:00'),(118858,10,'M02.119 ','Postdysenteric arthropathy, unspecified shoulder','Y','0000-00-00 00:00:00'),(118857,10,'M02.112 ','Postdysenteric arthropathy, left shoulder','Y','0000-00-00 00:00:00'),(118856,10,'M02.111 ','Postdysenteric arthropathy, right shoulder','Y','0000-00-00 00:00:00'),(118855,10,'M02.10 ','Postdysenteric arthropathy, unspecified site','Y','0000-00-00 00:00:00'),(118854,10,'M02.09 ','Arthropathy following intestinal bypass, multiple sites','Y','0000-00-00 00:00:00'),(118853,10,'M02.08 ','Arthropathy following intestinal bypass, vertebrae','Y','0000-00-00 00:00:00'),(118852,10,'M02.079 ','Arthropathy following intestinal bypass, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(118851,10,'M02.072 ','Arthropathy following intestinal bypass, left ankle and foot','Y','0000-00-00 00:00:00'),(118850,10,'M02.071 ','Arthropathy following intestinal bypass, right ankle and foot','Y','0000-00-00 00:00:00'),(118849,10,'M02.069 ','Arthropathy following intestinal bypass, unspecified knee','Y','0000-00-00 00:00:00'),(118848,10,'M02.062 ','Arthropathy following intestinal bypass, left knee','Y','0000-00-00 00:00:00'),(118847,10,'M02.061 ','Arthropathy following intestinal bypass, right knee','Y','0000-00-00 00:00:00'),(118846,10,'M02.059 ','Arthropathy following intestinal bypass, unspecified hip','Y','0000-00-00 00:00:00'),(118845,10,'M02.052 ','Arthropathy following intestinal bypass, left hip','Y','0000-00-00 00:00:00'),(118844,10,'M02.051 ','Arthropathy following intestinal bypass, right hip','Y','0000-00-00 00:00:00'),(118843,10,'M02.049 ','Arthropathy following intestinal bypass, unspecified hand','Y','0000-00-00 00:00:00'),(118842,10,'M02.042 ','Arthropathy following intestinal bypass, left hand','Y','0000-00-00 00:00:00'),(118841,10,'M02.041 ','Arthropathy following intestinal bypass, right hand','Y','0000-00-00 00:00:00'),(118840,10,'M02.039 ','Arthropathy following intestinal bypass, unspecified wrist','Y','0000-00-00 00:00:00'),(118839,10,'M02.032 ','Arthropathy following intestinal bypass, left wrist','Y','0000-00-00 00:00:00'),(118838,10,'M02.031 ','Arthropathy following intestinal bypass, right wrist','Y','0000-00-00 00:00:00'),(118837,10,'M02.029 ','Arthropathy following intestinal bypass, unspecified elbow','Y','0000-00-00 00:00:00'),(118836,10,'M02.022 ','Arthropathy following intestinal bypass, left elbow','Y','0000-00-00 00:00:00'),(118835,10,'M02.021 ','Arthropathy following intestinal bypass, right elbow','Y','0000-00-00 00:00:00'),(118834,10,'M02.019 ','Arthropathy following intestinal bypass, unspecified shoulder','Y','0000-00-00 00:00:00'),(118833,10,'M02.012 ','Arthropathy following intestinal bypass, left shoulder','Y','0000-00-00 00:00:00'),(118832,10,'M02.011 ','Arthropathy following intestinal bypass, right shoulder','Y','0000-00-00 00:00:00'),(118831,10,'M02.00 ','Arthropathy following intestinal bypass, unspecified site','Y','0000-00-00 00:00:00'),(118830,10,'M01.X9 ','Direct infection of multiple joints in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118829,10,'M01.X8 ','Direct infection of vertebrae in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118828,10,'M01.X79 ','Direct infection of unspecified ankle and foot in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118827,10,'M01.X72 ','Direct infection of left ankle and foot in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118826,10,'M01.X71 ','Direct infection of right ankle and foot in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118825,10,'M01.X69 ','Direct infection of unspecified knee in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118824,10,'M01.X62 ','Direct infection of left knee in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118823,10,'M01.X61 ','Direct infection of right knee in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118822,10,'M01.X59 ','Direct infection of unspecified hip in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118821,10,'M01.X52 ','Direct infection of left hip in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118820,10,'M01.X51 ','Direct infection of right hip in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118819,10,'M01.X49 ','Direct infection of unspecified hand in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118818,10,'M01.X42 ','Direct infection of left hand in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118817,10,'M01.X41 ','Direct infection of right hand in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118816,10,'M01.X39 ','Direct infection of unspecified wrist in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118815,10,'M01.X32 ','Direct infection of left wrist in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118814,10,'M01.X31 ','Direct infection of right wrist in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118813,10,'M01.X29 ','Direct infection of unspecified elbow in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118812,10,'M01.X22 ','Direct infection of left elbow in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118811,10,'M01.X21 ','Direct infection of right elbow in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118810,10,'M01.X19 ','Direct infection of unspecified shoulder in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118809,10,'M01.X12 ','Direct infection of left shoulder in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118808,10,'M01.X11 ','Direct infection of right shoulder in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118806,10,'M00.9 ','Pyogenic arthritis, unspecified','Y','0000-00-00 00:00:00'),(118807,10,'M01.X0 ','Direct infection of unspecified joint in infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118805,10,'M00.89 ','Polyarthritis due to other bacteria','Y','0000-00-00 00:00:00'),(118804,10,'M00.88 ','Arthritis due to other bacteria, vertebrae','Y','0000-00-00 00:00:00'),(118803,10,'M00.879 ','Arthritis due to other bacteria, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(118802,10,'M00.872 ','Arthritis due to other bacteria, left ankle and foot','Y','0000-00-00 00:00:00'),(118801,10,'M00.871 ','Arthritis due to other bacteria, right ankle and foot','Y','0000-00-00 00:00:00'),(118800,10,'M00.869 ','Arthritis due to other bacteria, unspecified knee','Y','0000-00-00 00:00:00'),(118799,10,'M00.862 ','Arthritis due to other bacteria, left knee','Y','0000-00-00 00:00:00'),(118798,10,'M00.861 ','Arthritis due to other bacteria, right knee','Y','0000-00-00 00:00:00'),(118797,10,'M00.859 ','Arthritis due to other bacteria, unspecified hip','Y','0000-00-00 00:00:00'),(118796,10,'M00.852 ','Arthritis due to other bacteria, left hip','Y','0000-00-00 00:00:00'),(118795,10,'M00.851 ','Arthritis due to other bacteria, right hip','Y','0000-00-00 00:00:00'),(118794,10,'M00.849 ','Arthritis due to other bacteria, unspecified hand','Y','0000-00-00 00:00:00'),(118793,10,'M00.842 ','Arthritis due to other bacteria, left hand','Y','0000-00-00 00:00:00'),(118792,10,'M00.841 ','Arthritis due to other bacteria, right hand','Y','0000-00-00 00:00:00'),(118791,10,'M00.839 ','Arthritis due to other bacteria, unspecified wrist','Y','0000-00-00 00:00:00'),(118790,10,'M00.832 ','Arthritis due to other bacteria, left wrist','Y','0000-00-00 00:00:00'),(118789,10,'M00.831 ','Arthritis due to other bacteria, right wrist','Y','0000-00-00 00:00:00'),(118788,10,'M00.829 ','Arthritis due to other bacteria, unspecified elbow','Y','0000-00-00 00:00:00'),(118787,10,'M00.822 ','Arthritis due to other bacteria, left elbow','Y','0000-00-00 00:00:00'),(118786,10,'M00.821 ','Arthritis due to other bacteria, right elbow','Y','0000-00-00 00:00:00'),(118785,10,'M00.819 ','Arthritis due to other bacteria, unspecified shoulder','Y','0000-00-00 00:00:00'),(118783,10,'M00.811 ','Arthritis due to other bacteria, right shoulder','Y','0000-00-00 00:00:00'),(118784,10,'M00.812 ','Arthritis due to other bacteria, left shoulder','Y','0000-00-00 00:00:00'),(118782,10,'M00.80 ','Arthritis due to other bacteria, unspecified joint','Y','0000-00-00 00:00:00'),(118780,10,'M00.28 ','Other streptococcal arthritis, vertebrae','Y','0000-00-00 00:00:00'),(118781,10,'M00.29 ','Other streptococcal polyarthritis','Y','0000-00-00 00:00:00'),(118779,10,'M00.279 ','Other streptococcal arthritis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(118778,10,'M00.272 ','Other streptococcal arthritis, left ankle and foot','Y','0000-00-00 00:00:00'),(118776,10,'M00.269 ','Other streptococcal arthritis, unspecified knee','Y','0000-00-00 00:00:00'),(118777,10,'M00.271 ','Other streptococcal arthritis, right ankle and foot','Y','0000-00-00 00:00:00'),(118775,10,'M00.262 ','Other streptococcal arthritis, left knee','Y','0000-00-00 00:00:00'),(118773,10,'M00.259 ','Other streptococcal arthritis, unspecified hip','Y','0000-00-00 00:00:00'),(118774,10,'M00.261 ','Other streptococcal arthritis, right knee','Y','0000-00-00 00:00:00'),(118772,10,'M00.252 ','Other streptococcal arthritis, left hip','Y','0000-00-00 00:00:00'),(118771,10,'M00.251 ','Other streptococcal arthritis, right hip','Y','0000-00-00 00:00:00'),(118770,10,'M00.249 ','Other streptococcal arthritis, unspecified hand','Y','0000-00-00 00:00:00'),(118768,10,'M00.241 ','Other streptococcal arthritis, right hand','Y','0000-00-00 00:00:00'),(118769,10,'M00.242 ','Other streptococcal arthritis, left hand','Y','0000-00-00 00:00:00'),(118767,10,'M00.239 ','Other streptococcal arthritis, unspecified wrist','Y','0000-00-00 00:00:00'),(118765,10,'M00.231 ','Other streptococcal arthritis, right wrist','Y','0000-00-00 00:00:00'),(118766,10,'M00.232 ','Other streptococcal arthritis, left wrist','Y','0000-00-00 00:00:00'),(118764,10,'M00.229 ','Other streptococcal arthritis, unspecified elbow','Y','0000-00-00 00:00:00'),(118762,10,'M00.221 ','Other streptococcal arthritis, right elbow','Y','0000-00-00 00:00:00'),(118763,10,'M00.222 ','Other streptococcal arthritis, left elbow','Y','0000-00-00 00:00:00'),(118761,10,'M00.219 ','Other streptococcal arthritis, unspecified shoulder','Y','0000-00-00 00:00:00'),(118760,10,'M00.212 ','Other streptococcal arthritis, left shoulder','Y','0000-00-00 00:00:00'),(118758,10,'M00.20 ','Other streptococcal arthritis, unspecified joint','Y','0000-00-00 00:00:00'),(118759,10,'M00.211 ','Other streptococcal arthritis, right shoulder','Y','0000-00-00 00:00:00'),(118757,10,'M00.19 ','Pneumococcal polyarthritis','Y','0000-00-00 00:00:00'),(118756,10,'M00.18 ','Pneumococcal arthritis, vertebrae','Y','0000-00-00 00:00:00'),(118754,10,'M00.172 ','Pneumococcal arthritis, left ankle and foot','Y','0000-00-00 00:00:00'),(118755,10,'M00.179 ','Pneumococcal arthritis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(118753,10,'M00.171 ','Pneumococcal arthritis, right ankle and foot','Y','0000-00-00 00:00:00'),(118751,10,'M00.162 ','Pneumococcal arthritis, left knee','Y','0000-00-00 00:00:00'),(118752,10,'M00.169 ','Pneumococcal arthritis, unspecified knee','Y','0000-00-00 00:00:00'),(118749,10,'M00.159 ','Pneumococcal arthritis, unspecified hip','Y','0000-00-00 00:00:00'),(118750,10,'M00.161 ','Pneumococcal arthritis, right knee','Y','0000-00-00 00:00:00'),(118747,10,'M00.151 ','Pneumococcal arthritis, right hip','Y','0000-00-00 00:00:00'),(118748,10,'M00.152 ','Pneumococcal arthritis, left hip','Y','0000-00-00 00:00:00'),(118745,10,'M00.142 ','Pneumococcal arthritis, left hand','Y','0000-00-00 00:00:00'),(118746,10,'M00.149 ','Pneumococcal arthritis, unspecified hand','Y','0000-00-00 00:00:00'),(118743,10,'M00.139 ','Pneumococcal arthritis, unspecified wrist','Y','0000-00-00 00:00:00'),(118744,10,'M00.141 ','Pneumococcal arthritis, right hand','Y','0000-00-00 00:00:00'),(118741,10,'M00.131 ','Pneumococcal arthritis, right wrist','Y','0000-00-00 00:00:00'),(118742,10,'M00.132 ','Pneumococcal arthritis, left wrist','Y','0000-00-00 00:00:00'),(118739,10,'M00.122 ','Pneumococcal arthritis, left elbow','Y','0000-00-00 00:00:00'),(118740,10,'M00.129 ','Pneumococcal arthritis, unspecified elbow','Y','0000-00-00 00:00:00'),(118738,10,'M00.121 ','Pneumococcal arthritis, right elbow','Y','0000-00-00 00:00:00'),(118736,10,'M00.112 ','Pneumococcal arthritis, left shoulder','Y','0000-00-00 00:00:00'),(118737,10,'M00.119 ','Pneumococcal arthritis, unspecified shoulder','Y','0000-00-00 00:00:00'),(118735,10,'M00.111 ','Pneumococcal arthritis, right shoulder','Y','0000-00-00 00:00:00'),(118733,10,'M00.09 ','Staphylococcal polyarthritis','Y','0000-00-00 00:00:00'),(118734,10,'M00.10 ','Pneumococcal arthritis, unspecified joint','Y','0000-00-00 00:00:00'),(118731,10,'M00.079 ','Staphylococcal arthritis, unspecified ankle and foot','Y','0000-00-00 00:00:00'),(118732,10,'M00.08 ','Staphylococcal arthritis, vertebrae','Y','0000-00-00 00:00:00'),(118730,10,'M00.072 ','Staphylococcal arthritis, left ankle and foot','Y','0000-00-00 00:00:00'),(118729,10,'M00.071 ','Staphylococcal arthritis, right ankle and foot','Y','0000-00-00 00:00:00'),(118727,10,'M00.062 ','Staphylococcal arthritis, left knee','Y','0000-00-00 00:00:00'),(118728,10,'M00.069 ','Staphylococcal arthritis, unspecified knee','Y','0000-00-00 00:00:00'),(118726,10,'M00.061 ','Staphylococcal arthritis, right knee','Y','0000-00-00 00:00:00'),(118725,10,'M00.059 ','Staphylococcal arthritis, unspecified hip','Y','0000-00-00 00:00:00'),(118723,10,'M00.051 ','Staphylococcal arthritis, right hip','Y','0000-00-00 00:00:00'),(118724,10,'M00.052 ','Staphylococcal arthritis, left hip','Y','0000-00-00 00:00:00'),(118722,10,'M00.049 ','Staphylococcal arthritis, unspecified hand','Y','0000-00-00 00:00:00'),(118721,10,'M00.042 ','Staphylococcal arthritis, left hand','Y','0000-00-00 00:00:00'),(118720,10,'M00.041 ','Staphylococcal arthritis, right hand','Y','0000-00-00 00:00:00'),(118719,10,'M00.039 ','Staphylococcal arthritis, unspecified wrist','Y','0000-00-00 00:00:00'),(118718,10,'M00.032 ','Staphylococcal arthritis, left wrist','Y','0000-00-00 00:00:00'),(118717,10,'M00.031 ','Staphylococcal arthritis, right wrist','Y','0000-00-00 00:00:00'),(118716,10,'M00.029 ','Staphylococcal arthritis, unspecified elbow','Y','0000-00-00 00:00:00'),(118714,10,'M00.021 ','Staphylococcal arthritis, right elbow','Y','0000-00-00 00:00:00'),(118715,10,'M00.022 ','Staphylococcal arthritis, left elbow','Y','0000-00-00 00:00:00'),(118713,10,'M00.019 ','Staphylococcal arthritis, unspecified shoulder','Y','0000-00-00 00:00:00'),(118712,10,'M00.012 ','Staphylococcal arthritis, left shoulder','Y','0000-00-00 00:00:00'),(118710,10,'M00.00 ','Staphylococcal arthritis, unspecified joint','Y','0000-00-00 00:00:00'),(118711,10,'M00.011 ','Staphylococcal arthritis, right shoulder','Y','0000-00-00 00:00:00'),(118709,10,'L99','Other disorders of skin and subcutaneous tissue in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118708,10,'L98.9 ','Disorder of the skin and subcutaneous tissue, unspecified','Y','0000-00-00 00:00:00'),(118707,10,'L98.8 ','Other specified disorders of the skin and subcutaneous tissue','Y','0000-00-00 00:00:00'),(118706,10,'L98.7 ','Excessive and redundant skin and subcutaneous tissue','Y','0000-00-00 00:00:00'),(118704,10,'L98.5 ','Mucinosis of the skin','Y','0000-00-00 00:00:00'),(118705,10,'L98.6 ','Other infiltrative disorders of the skin and subcutaneous tissue','Y','0000-00-00 00:00:00'),(118703,10,'L98.499 ','Non-pressure chronic ulcer of skin of other sites with unspecified severity','Y','0000-00-00 00:00:00'),(118702,10,'L98.498 ','Non-pressure chronic ulcer of skin of other sites with other specified severity','Y','0000-00-00 00:00:00'),(118701,10,'L98.496 ','Non-pressure chronic ulcer of skin of other sites with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118700,10,'L98.495 ','Non-pressure chronic ulcer of skin of other sites with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118699,10,'L98.494 ','Non-pressure chronic ulcer of skin of other sites with necrosis of bone','Y','0000-00-00 00:00:00'),(118698,10,'L98.493 ','Non-pressure chronic ulcer of skin of other sites with necrosis of muscle','Y','0000-00-00 00:00:00'),(118697,10,'L98.492 ','Non-pressure chronic ulcer of skin of other sites with fat layer exposed','Y','0000-00-00 00:00:00'),(118696,10,'L98.491 ','Non-pressure chronic ulcer of skin of other sites limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118695,10,'L98.429 ','Non-pressure chronic ulcer of back with unspecified severity','Y','0000-00-00 00:00:00'),(118694,10,'L98.428 ','Non-pressure chronic ulcer of back with other specified severity','Y','0000-00-00 00:00:00'),(118693,10,'L98.426 ','Non-pressure chronic ulcer of back with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118692,10,'L98.425 ','Non-pressure chronic ulcer of back with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118690,10,'L98.423 ','Non-pressure chronic ulcer of back with necrosis of muscle','Y','0000-00-00 00:00:00'),(118691,10,'L98.424 ','Non-pressure chronic ulcer of back with necrosis of bone','Y','0000-00-00 00:00:00'),(118689,10,'L98.422 ','Non-pressure chronic ulcer of back with fat layer exposed','Y','0000-00-00 00:00:00'),(118688,10,'L98.421 ','Non-pressure chronic ulcer of back limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118687,10,'L98.419 ','Non-pressure chronic ulcer of buttock with unspecified severity','Y','0000-00-00 00:00:00'),(118686,10,'L98.418 ','Non-pressure chronic ulcer of buttock with other specified severity','Y','0000-00-00 00:00:00'),(118685,10,'L98.416 ','Non-pressure chronic ulcer of buttock with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118684,10,'L98.415 ','Non-pressure chronic ulcer of buttock with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118683,10,'L98.414 ','Non-pressure chronic ulcer of buttock with necrosis of bone','Y','0000-00-00 00:00:00'),(118682,10,'L98.413 ','Non-pressure chronic ulcer of buttock with necrosis of muscle','Y','0000-00-00 00:00:00'),(118681,10,'L98.412 ','Non-pressure chronic ulcer of buttock with fat layer exposed','Y','0000-00-00 00:00:00'),(118680,10,'L98.411 ','Non-pressure chronic ulcer of buttock limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118679,10,'L98.3 ','Eosinophilic cellulitis [Wells]','Y','0000-00-00 00:00:00'),(118677,10,'L98.1 ','Factitial dermatitis','Y','0000-00-00 00:00:00'),(118678,10,'L98.2 ','Febrile neutrophilic dermatosis [Sweet]','Y','0000-00-00 00:00:00'),(118676,10,'L98.0 ','Pyogenic granuloma','Y','0000-00-00 00:00:00'),(118675,10,'L97.929 ','Non-pressure chronic ulcer of unspecified part of left lower leg with unspecified severity','Y','0000-00-00 00:00:00'),(118674,10,'L97.928 ','Non-pressure chronic ulcer of unspecified part of left lower leg with other specified severity','Y','0000-00-00 00:00:00'),(118673,10,'L97.926 ','Non-pressure chronic ulcer of unspecified part of left lower leg with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118672,10,'L97.925 ','Non-pressure chronic ulcer of unspecified part of left lower leg with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118671,10,'L97.924 ','Non-pressure chronic ulcer of unspecified part of left lower leg with necrosis of bone','Y','0000-00-00 00:00:00'),(118670,10,'L97.923 ','Non-pressure chronic ulcer of unspecified part of left lower leg with necrosis of muscle','Y','0000-00-00 00:00:00'),(118669,10,'L97.922 ','Non-pressure chronic ulcer of unspecified part of left lower leg with fat layer exposed','Y','0000-00-00 00:00:00'),(118668,10,'L97.921 ','Non-pressure chronic ulcer of unspecified part of left lower leg limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118667,10,'L97.919 ','Non-pressure chronic ulcer of unspecified part of right lower leg with unspecified severity','Y','0000-00-00 00:00:00'),(118666,10,'L97.918 ','Non-pressure chronic ulcer of unspecified part of right lower leg with other specified severity','Y','0000-00-00 00:00:00'),(118665,10,'L97.916 ','Non-pressure chronic ulcer of unspecified part of right lower leg with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118664,10,'L97.915 ','Non-pressure chronic ulcer of unspecified part of right lower leg with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118663,10,'L97.914 ','Non-pressure chronic ulcer of unspecified part of right lower leg with necrosis of bone','Y','0000-00-00 00:00:00'),(118662,10,'L97.913 ','Non-pressure chronic ulcer of unspecified part of right lower leg with necrosis of muscle','Y','0000-00-00 00:00:00'),(118661,10,'L97.912 ','Non-pressure chronic ulcer of unspecified part of right lower leg with fat layer exposed','Y','0000-00-00 00:00:00'),(118660,10,'L97.911 ','Non-pressure chronic ulcer of unspecified part of right lower leg limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118659,10,'L97.909 ','Non-pressure chronic ulcer of unspecified part of unspecified lower leg with unspecified severity','Y','0000-00-00 00:00:00'),(118658,10,'L97.908 ','Non-pressure chronic ulcer of unspecified part of unspecified lower leg with other specified severity','Y','0000-00-00 00:00:00'),(118657,10,'L97.906 ','Non-pressure chronic ulcer of unspecified part of unspecified lower leg with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118656,10,'L97.905 ','Non-pressure chronic ulcer of unspecified part of unspecified lower leg with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118655,10,'L97.904 ','Non-pressure chronic ulcer of unspecified part of unspecified lower leg with necrosis of bone','Y','0000-00-00 00:00:00'),(118654,10,'L97.903 ','Non-pressure chronic ulcer of unspecified part of unspecified lower leg with necrosis of muscle','Y','0000-00-00 00:00:00'),(118653,10,'L97.902 ','Non-pressure chronic ulcer of unspecified part of unspecified lower leg with fat layer exposed','Y','0000-00-00 00:00:00'),(118652,10,'L97.901 ','Non-pressure chronic ulcer of unspecified part of unspecified lower leg limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118651,10,'L97.829 ','Non-pressure chronic ulcer of other part of left lower leg with unspecified severity','Y','0000-00-00 00:00:00'),(118650,10,'L97.828 ','Non-pressure chronic ulcer of other part of left lower leg with other specified severity','Y','0000-00-00 00:00:00'),(118649,10,'L97.826 ','Non-pressure chronic ulcer of other part of left lower leg with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118648,10,'L97.825 ','Non-pressure chronic ulcer of other part of left lower leg with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118647,10,'L97.824 ','Non-pressure chronic ulcer of other part of left lower leg with necrosis of bone','Y','0000-00-00 00:00:00'),(118646,10,'L97.823 ','Non-pressure chronic ulcer of other part of left lower leg with necrosis of muscle','Y','0000-00-00 00:00:00'),(118645,10,'L97.822 ','Non-pressure chronic ulcer of other part of left lower leg with fat layer exposed','Y','0000-00-00 00:00:00'),(118644,10,'L97.821 ','Non-pressure chronic ulcer of other part of left lower leg limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118643,10,'L97.819 ','Non-pressure chronic ulcer of other part of right lower leg with unspecified severity','Y','0000-00-00 00:00:00'),(118642,10,'L97.818 ','Non-pressure chronic ulcer of other part of right lower leg with other specified severity','Y','0000-00-00 00:00:00'),(118641,10,'L97.816 ','Non-pressure chronic ulcer of other part of right lower leg with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118640,10,'L97.815 ','Non-pressure chronic ulcer of other part of right lower leg with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118639,10,'L97.814 ','Non-pressure chronic ulcer of other part of right lower leg with necrosis of bone','Y','0000-00-00 00:00:00'),(118638,10,'L97.813 ','Non-pressure chronic ulcer of other part of right lower leg with necrosis of muscle','Y','0000-00-00 00:00:00'),(118637,10,'L97.812 ','Non-pressure chronic ulcer of other part of right lower leg with fat layer exposed','Y','0000-00-00 00:00:00'),(118636,10,'L97.811 ','Non-pressure chronic ulcer of other part of right lower leg limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118635,10,'L97.809 ','Non-pressure chronic ulcer of other part of unspecified lower leg with unspecified severity','Y','0000-00-00 00:00:00'),(118634,10,'L97.808 ','Non-pressure chronic ulcer of other part of unspecified lower leg with other specified severity','Y','0000-00-00 00:00:00'),(118633,10,'L97.806 ','Non-pressure chronic ulcer of other part of unspecified lower leg with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118632,10,'L97.805 ','Non-pressure chronic ulcer of other part of unspecified lower leg with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118631,10,'L97.804 ','Non-pressure chronic ulcer of other part of unspecified lower leg with necrosis of bone','Y','0000-00-00 00:00:00'),(118630,10,'L97.803 ','Non-pressure chronic ulcer of other part of unspecified lower leg with necrosis of muscle','Y','0000-00-00 00:00:00'),(118629,10,'L97.802 ','Non-pressure chronic ulcer of other part of unspecified lower leg with fat layer exposed','Y','0000-00-00 00:00:00'),(118628,10,'L97.801 ','Non-pressure chronic ulcer of other part of unspecified lower leg limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118627,10,'L97.529 ','Non-pressure chronic ulcer of other part of left foot with unspecified severity','Y','0000-00-00 00:00:00'),(118626,10,'L97.528 ','Non-pressure chronic ulcer of other part of left foot with other specified severity','Y','0000-00-00 00:00:00'),(118625,10,'L97.526 ','Non-pressure chronic ulcer of other part of left foot with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118624,10,'L97.525 ','Non-pressure chronic ulcer of other part of left foot with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118623,10,'L97.524 ','Non-pressure chronic ulcer of other part of left foot with necrosis of bone','Y','0000-00-00 00:00:00'),(118622,10,'L97.523 ','Non-pressure chronic ulcer of other part of left foot with necrosis of muscle','Y','0000-00-00 00:00:00'),(118621,10,'L97.522 ','Non-pressure chronic ulcer of other part of left foot with fat layer exposed','Y','0000-00-00 00:00:00'),(118620,10,'L97.521 ','Non-pressure chronic ulcer of other part of left foot limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118619,10,'L97.519 ','Non-pressure chronic ulcer of other part of right foot with unspecified severity','Y','0000-00-00 00:00:00'),(118618,10,'L97.518 ','Non-pressure chronic ulcer of other part of right foot with other specified severity','Y','0000-00-00 00:00:00'),(118617,10,'L97.516 ','Non-pressure chronic ulcer of other part of right foot with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118616,10,'L97.515 ','Non-pressure chronic ulcer of other part of right foot with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118615,10,'L97.514 ','Non-pressure chronic ulcer of other part of right foot with necrosis of bone','Y','0000-00-00 00:00:00'),(118614,10,'L97.513 ','Non-pressure chronic ulcer of other part of right foot with necrosis of muscle','Y','0000-00-00 00:00:00'),(118613,10,'L97.512 ','Non-pressure chronic ulcer of other part of right foot with fat layer exposed','Y','0000-00-00 00:00:00'),(118612,10,'L97.511 ','Non-pressure chronic ulcer of other part of right foot limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118611,10,'L97.509 ','Non-pressure chronic ulcer of other part of unspecified foot with unspecified severity','Y','0000-00-00 00:00:00'),(118610,10,'L97.508 ','Non-pressure chronic ulcer of other part of unspecified foot with other specified severity','Y','0000-00-00 00:00:00'),(118609,10,'L97.506 ','Non-pressure chronic ulcer of other part of unspecified foot with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118608,10,'L97.505 ','Non-pressure chronic ulcer of other part of unspecified foot with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118607,10,'L97.504 ','Non-pressure chronic ulcer of other part of unspecified foot with necrosis of bone','Y','0000-00-00 00:00:00'),(118606,10,'L97.503 ','Non-pressure chronic ulcer of other part of unspecified foot with necrosis of muscle','Y','0000-00-00 00:00:00'),(118605,10,'L97.502 ','Non-pressure chronic ulcer of other part of unspecified foot with fat layer exposed','Y','0000-00-00 00:00:00'),(118604,10,'L97.501 ','Non-pressure chronic ulcer of other part of unspecified foot limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118603,10,'L97.429 ','Non-pressure chronic ulcer of left heel and midfoot with unspecified severity','Y','0000-00-00 00:00:00'),(118602,10,'L97.428 ','Non-pressure chronic ulcer of left heel and midfoot with other specified severity','Y','0000-00-00 00:00:00'),(118601,10,'L97.426 ','Non-pressure chronic ulcer of left heel and midfoot with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118600,10,'L97.425 ','Non-pressure chronic ulcer of left heel and midfoot with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118599,10,'L97.424 ','Non-pressure chronic ulcer of left heel and midfoot with necrosis of bone','Y','0000-00-00 00:00:00'),(118598,10,'L97.423 ','Non-pressure chronic ulcer of left heel and midfoot with necrosis of muscle','Y','0000-00-00 00:00:00'),(118597,10,'L97.422 ','Non-pressure chronic ulcer of left heel and midfoot with fat layer exposed','Y','0000-00-00 00:00:00'),(118596,10,'L97.421 ','Non-pressure chronic ulcer of left heel and midfoot limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118595,10,'L97.419 ','Non-pressure chronic ulcer of right heel and midfoot with unspecified severity','Y','0000-00-00 00:00:00'),(118594,10,'L97.418 ','Non-pressure chronic ulcer of right heel and midfoot with other specified severity','Y','0000-00-00 00:00:00'),(118593,10,'L97.416 ','Non-pressure chronic ulcer of right heel and midfoot with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118592,10,'L97.415 ','Non-pressure chronic ulcer of right heel and midfoot with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118591,10,'L97.414 ','Non-pressure chronic ulcer of right heel and midfoot with necrosis of bone','Y','0000-00-00 00:00:00'),(118590,10,'L97.413 ','Non-pressure chronic ulcer of right heel and midfoot with necrosis of muscle','Y','0000-00-00 00:00:00'),(118589,10,'L97.412 ','Non-pressure chronic ulcer of right heel and midfoot with fat layer exposed','Y','0000-00-00 00:00:00'),(118588,10,'L97.411 ','Non-pressure chronic ulcer of right heel and midfoot limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118587,10,'L97.409 ','Non-pressure chronic ulcer of unspecified heel and midfoot with unspecified severity','Y','0000-00-00 00:00:00'),(118586,10,'L97.408 ','Non-pressure chronic ulcer of unspecified heel and midfoot with other specified severity','Y','0000-00-00 00:00:00'),(118585,10,'L97.406 ','Non-pressure chronic ulcer of unspecified heel and midfoot with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118584,10,'L97.405 ','Non-pressure chronic ulcer of unspecified heel and midfoot with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118583,10,'L97.404 ','Non-pressure chronic ulcer of unspecified heel and midfoot with necrosis of bone','Y','0000-00-00 00:00:00'),(118582,10,'L97.403 ','Non-pressure chronic ulcer of unspecified heel and midfoot with necrosis of muscle','Y','0000-00-00 00:00:00'),(118581,10,'L97.402 ','Non-pressure chronic ulcer of unspecified heel and midfoot with fat layer exposed','Y','0000-00-00 00:00:00'),(118580,10,'L97.401 ','Non-pressure chronic ulcer of unspecified heel and midfoot limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118579,10,'L97.329 ','Non-pressure chronic ulcer of left ankle with unspecified severity','Y','0000-00-00 00:00:00'),(118578,10,'L97.328 ','Non-pressure chronic ulcer of left ankle with other specified severity','Y','0000-00-00 00:00:00'),(118577,10,'L97.326 ','Non-pressure chronic ulcer of left ankle with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118576,10,'L97.325 ','Non-pressure chronic ulcer of left ankle with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118575,10,'L97.324 ','Non-pressure chronic ulcer of left ankle with necrosis of bone','Y','0000-00-00 00:00:00'),(118574,10,'L97.323 ','Non-pressure chronic ulcer of left ankle with necrosis of muscle','Y','0000-00-00 00:00:00'),(118573,10,'L97.322 ','Non-pressure chronic ulcer of left ankle with fat layer exposed','Y','0000-00-00 00:00:00'),(118572,10,'L97.321 ','Non-pressure chronic ulcer of left ankle limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118571,10,'L97.319 ','Non-pressure chronic ulcer of right ankle with unspecified severity','Y','0000-00-00 00:00:00'),(118570,10,'L97.318 ','Non-pressure chronic ulcer of right ankle with other specified severity','Y','0000-00-00 00:00:00'),(118569,10,'L97.316 ','Non-pressure chronic ulcer of right ankle with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118568,10,'L97.315 ','Non-pressure chronic ulcer of right ankle with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118567,10,'L97.314 ','Non-pressure chronic ulcer of right ankle with necrosis of bone','Y','0000-00-00 00:00:00'),(118566,10,'L97.313 ','Non-pressure chronic ulcer of right ankle with necrosis of muscle','Y','0000-00-00 00:00:00'),(118565,10,'L97.312 ','Non-pressure chronic ulcer of right ankle with fat layer exposed','Y','0000-00-00 00:00:00'),(118564,10,'L97.311 ','Non-pressure chronic ulcer of right ankle limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118563,10,'L97.309 ','Non-pressure chronic ulcer of unspecified ankle with unspecified severity','Y','0000-00-00 00:00:00'),(118562,10,'L97.308 ','Non-pressure chronic ulcer of unspecified ankle with other specified severity','Y','0000-00-00 00:00:00'),(118561,10,'L97.306 ','Non-pressure chronic ulcer of unspecified ankle with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118560,10,'L97.305 ','Non-pressure chronic ulcer of unspecified ankle with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118559,10,'L97.304 ','Non-pressure chronic ulcer of unspecified ankle with necrosis of bone','Y','0000-00-00 00:00:00'),(118558,10,'L97.303 ','Non-pressure chronic ulcer of unspecified ankle with necrosis of muscle','Y','0000-00-00 00:00:00'),(118557,10,'L97.302 ','Non-pressure chronic ulcer of unspecified ankle with fat layer exposed','Y','0000-00-00 00:00:00'),(118556,10,'L97.301 ','Non-pressure chronic ulcer of unspecified ankle limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118555,10,'L97.229 ','Non-pressure chronic ulcer of left calf with unspecified severity','Y','0000-00-00 00:00:00'),(118554,10,'L97.228 ','Non-pressure chronic ulcer of left calf with other specified severity','Y','0000-00-00 00:00:00'),(118553,10,'L97.226 ','Non-pressure chronic ulcer of left calf with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118552,10,'L97.225 ','Non-pressure chronic ulcer of left calf with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118551,10,'L97.224 ','Non-pressure chronic ulcer of left calf with necrosis of bone','Y','0000-00-00 00:00:00'),(118550,10,'L97.223 ','Non-pressure chronic ulcer of left calf with necrosis of muscle','Y','0000-00-00 00:00:00'),(118549,10,'L97.222 ','Non-pressure chronic ulcer of left calf with fat layer exposed','Y','0000-00-00 00:00:00'),(118548,10,'L97.221 ','Non-pressure chronic ulcer of left calf limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118547,10,'L97.219 ','Non-pressure chronic ulcer of right calf with unspecified severity','Y','0000-00-00 00:00:00'),(118546,10,'L97.218 ','Non-pressure chronic ulcer of right calf with other specified severity','Y','0000-00-00 00:00:00'),(118545,10,'L97.216 ','Non-pressure chronic ulcer of right calf with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118544,10,'L97.215 ','Non-pressure chronic ulcer of right calf with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118543,10,'L97.214 ','Non-pressure chronic ulcer of right calf with necrosis of bone','Y','0000-00-00 00:00:00'),(118542,10,'L97.213 ','Non-pressure chronic ulcer of right calf with necrosis of muscle','Y','0000-00-00 00:00:00'),(118541,10,'L97.212 ','Non-pressure chronic ulcer of right calf with fat layer exposed','Y','0000-00-00 00:00:00'),(118540,10,'L97.211 ','Non-pressure chronic ulcer of right calf limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118539,10,'L97.209 ','Non-pressure chronic ulcer of unspecified calf with unspecified severity','Y','0000-00-00 00:00:00'),(118538,10,'L97.208 ','Non-pressure chronic ulcer of unspecified calf with other specified severity','Y','0000-00-00 00:00:00'),(118537,10,'L97.206 ','Non-pressure chronic ulcer of unspecified calf with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118536,10,'L97.205 ','Non-pressure chronic ulcer of unspecified calf with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118535,10,'L97.204 ','Non-pressure chronic ulcer of unspecified calf with necrosis of bone','Y','0000-00-00 00:00:00'),(118534,10,'L97.203 ','Non-pressure chronic ulcer of unspecified calf with necrosis of muscle','Y','0000-00-00 00:00:00'),(118533,10,'L97.202 ','Non-pressure chronic ulcer of unspecified calf with fat layer exposed','Y','0000-00-00 00:00:00'),(118532,10,'L97.201 ','Non-pressure chronic ulcer of unspecified calf limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118531,10,'L97.129 ','Non-pressure chronic ulcer of left thigh with unspecified severity','Y','0000-00-00 00:00:00'),(118530,10,'L97.128 ','Non-pressure chronic ulcer of left thigh with other specified severity','Y','0000-00-00 00:00:00'),(118529,10,'L97.126 ','Non-pressure chronic ulcer of left thigh with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118528,10,'L97.125 ','Non-pressure chronic ulcer of left thigh with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118527,10,'L97.124 ','Non-pressure chronic ulcer of left thigh with necrosis of bone','Y','0000-00-00 00:00:00'),(118526,10,'L97.123 ','Non-pressure chronic ulcer of left thigh with necrosis of muscle','Y','0000-00-00 00:00:00'),(118525,10,'L97.122 ','Non-pressure chronic ulcer of left thigh with fat layer exposed','Y','0000-00-00 00:00:00'),(118524,10,'L97.121 ','Non-pressure chronic ulcer of left thigh limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118523,10,'L97.119 ','Non-pressure chronic ulcer of right thigh with unspecified severity','Y','0000-00-00 00:00:00'),(118522,10,'L97.118 ','Non-pressure chronic ulcer of right thigh with other specified severity','Y','0000-00-00 00:00:00'),(118521,10,'L97.116 ','Non-pressure chronic ulcer of right thigh with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118520,10,'L97.115 ','Non-pressure chronic ulcer of right thigh with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118519,10,'L97.114 ','Non-pressure chronic ulcer of right thigh with necrosis of bone','Y','0000-00-00 00:00:00'),(118518,10,'L97.113 ','Non-pressure chronic ulcer of right thigh with necrosis of muscle','Y','0000-00-00 00:00:00'),(118517,10,'L97.112 ','Non-pressure chronic ulcer of right thigh with fat layer exposed','Y','0000-00-00 00:00:00'),(118516,10,'L97.111 ','Non-pressure chronic ulcer of right thigh limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118515,10,'L97.109 ','Non-pressure chronic ulcer of unspecified thigh with unspecified severity','Y','0000-00-00 00:00:00'),(118514,10,'L97.108 ','Non-pressure chronic ulcer of unspecified thigh with other specified severity','Y','0000-00-00 00:00:00'),(118513,10,'L97.106 ','Non-pressure chronic ulcer of unspecified thigh with bone involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118512,10,'L97.105 ','Non-pressure chronic ulcer of unspecified thigh with muscle involvement without evidence of necrosis','Y','0000-00-00 00:00:00'),(118511,10,'L97.104 ','Non-pressure chronic ulcer of unspecified thigh with necrosis of bone','Y','0000-00-00 00:00:00'),(118510,10,'L97.103 ','Non-pressure chronic ulcer of unspecified thigh with necrosis of muscle','Y','0000-00-00 00:00:00'),(118509,10,'L97.102 ','Non-pressure chronic ulcer of unspecified thigh with fat layer exposed','Y','0000-00-00 00:00:00'),(118508,10,'L97.101 ','Non-pressure chronic ulcer of unspecified thigh limited to breakdown of skin','Y','0000-00-00 00:00:00'),(118506,10,'L95.8 ','Other vasculitis limited to the skin','Y','0000-00-00 00:00:00'),(118507,10,'L95.9 ','Vasculitis limited to the skin, unspecified','Y','0000-00-00 00:00:00'),(118505,10,'L95.1 ','Erythema elevatum diutinum','Y','0000-00-00 00:00:00'),(118504,10,'L95.0 ','Livedoid vasculitis','Y','0000-00-00 00:00:00'),(118502,10,'L94.8 ','Other specified localized connective tissue disorders','Y','0000-00-00 00:00:00'),(118503,10,'L94.9 ','Localized connective tissue disorder, unspecified','Y','0000-00-00 00:00:00'),(118500,10,'L94.5 ','Poikiloderma vasculare atrophicans','Y','0000-00-00 00:00:00'),(118501,10,'L94.6 ','Ainhum','Y','0000-00-00 00:00:00'),(118498,10,'L94.3 ','Sclerodactyly','Y','0000-00-00 00:00:00'),(118499,10,'L94.4 ','Gottron\'s papules','Y','0000-00-00 00:00:00'),(118496,10,'L94.1 ','Linear scleroderma','Y','0000-00-00 00:00:00'),(118497,10,'L94.2 ','Calcinosis cutis','Y','0000-00-00 00:00:00'),(118494,10,'L93.2 ','Other local lupus erythematosus','Y','0000-00-00 00:00:00'),(118495,10,'L94.0 ','Localized scleroderma [morphea]','Y','0000-00-00 00:00:00'),(118493,10,'L93.1 ','Subacute cutaneous lupus erythematosus','Y','0000-00-00 00:00:00'),(118492,10,'L93.0 ','Discoid lupus erythematosus','Y','0000-00-00 00:00:00'),(118491,10,'L92.9 ','Granulomatous disorder of the skin and subcutaneous tissue, unspecified','Y','0000-00-00 00:00:00'),(118490,10,'L92.8 ','Other granulomatous disorders of the skin and subcutaneous tissue','Y','0000-00-00 00:00:00'),(118489,10,'L92.3 ','Foreign body granuloma of the skin and subcutaneous tissue','Y','0000-00-00 00:00:00'),(118487,10,'L92.1 ','Necrobiosis lipoidica, not elsewhere classified','Y','0000-00-00 00:00:00'),(118488,10,'L92.2 ','Granuloma faciale [eosinophilic granuloma of skin]','Y','0000-00-00 00:00:00'),(118486,10,'L92.0 ','Granuloma annulare','Y','0000-00-00 00:00:00'),(118484,10,'L91.8 ','Other hypertrophic disorders of the skin','Y','0000-00-00 00:00:00'),(118485,10,'L91.9 ','Hypertrophic disorder of the skin, unspecified','Y','0000-00-00 00:00:00'),(118483,10,'L91.0 ','Hypertrophic scar','Y','0000-00-00 00:00:00'),(118481,10,'L90.8 ','Other atrophic disorders of skin','Y','0000-00-00 00:00:00'),(118482,10,'L90.9 ','Atrophic disorder of skin, unspecified','Y','0000-00-00 00:00:00'),(118480,10,'L90.6 ','Striae atrophicae','Y','0000-00-00 00:00:00'),(118478,10,'L90.4 ','Acrodermatitis chronica atrophicans','Y','0000-00-00 00:00:00'),(118479,10,'L90.5 ','Scar conditions and fibrosis of skin','Y','0000-00-00 00:00:00'),(118477,10,'L90.3 ','Atrophoderma of Pasini and Pierini','Y','0000-00-00 00:00:00'),(118476,10,'L90.2 ','Anetoderma of Jadassohn-Pellizzari','Y','0000-00-00 00:00:00'),(118474,10,'L90.0 ','Lichen sclerosus et atrophicus','Y','0000-00-00 00:00:00'),(118475,10,'L90.1 ','Anetoderma of Schweninger-Buzzi','Y','0000-00-00 00:00:00'),(118473,10,'L89.96 ','Pressure-induced deep tissue damage of unspecified site','Y','0000-00-00 00:00:00'),(118472,10,'L89.95 ','Pressure ulcer of unspecified site, unstageable','Y','0000-00-00 00:00:00'),(118471,10,'L89.94 ','Pressure ulcer of unspecified site, stage 4','Y','0000-00-00 00:00:00'),(118470,10,'L89.93 ','Pressure ulcer of unspecified site, stage 3','Y','0000-00-00 00:00:00'),(118468,10,'L89.91 ','Pressure ulcer of unspecified site, stage 1','Y','0000-00-00 00:00:00'),(118469,10,'L89.92 ','Pressure ulcer of unspecified site, stage 2','Y','0000-00-00 00:00:00'),(118467,10,'L89.90 ','Pressure ulcer of unspecified site, unspecified stage','Y','0000-00-00 00:00:00'),(118465,10,'L89.896 ','Pressure-induced deep tissue damage of other site','Y','0000-00-00 00:00:00'),(118466,10,'L89.899 ','Pressure ulcer of other site, unspecified stage','Y','0000-00-00 00:00:00'),(118463,10,'L89.893 ','Pressure ulcer of other site, stage 3','Y','0000-00-00 00:00:00'),(118464,10,'L89.894 ','Pressure ulcer of other site, stage 4','Y','0000-00-00 00:00:00'),(118461,10,'L89.891 ','Pressure ulcer of other site, stage 1','Y','0000-00-00 00:00:00'),(118462,10,'L89.892 ','Pressure ulcer of other site, stage 2','Y','0000-00-00 00:00:00'),(118460,10,'L89.890 ','Pressure ulcer of other site, unstageable','Y','0000-00-00 00:00:00'),(118458,10,'L89.816 ','Pressure-induced deep tissue damage of head','Y','0000-00-00 00:00:00'),(118459,10,'L89.819 ','Pressure ulcer of head, unspecified stage','Y','0000-00-00 00:00:00'),(118457,10,'L89.814 ','Pressure ulcer of head, stage 4','Y','0000-00-00 00:00:00'),(118455,10,'L89.812 ','Pressure ulcer of head, stage 2','Y','0000-00-00 00:00:00'),(118456,10,'L89.813 ','Pressure ulcer of head, stage 3','Y','0000-00-00 00:00:00'),(118453,10,'L89.810 ','Pressure ulcer of head, unstageable','Y','0000-00-00 00:00:00'),(118454,10,'L89.811 ','Pressure ulcer of head, stage 1','Y','0000-00-00 00:00:00'),(118452,10,'L89.629 ','Pressure ulcer of left heel, unspecified stage','Y','0000-00-00 00:00:00'),(118450,10,'L89.624 ','Pressure ulcer of left heel, stage 4','Y','0000-00-00 00:00:00'),(118451,10,'L89.626 ','Pressure-induced deep tissue damage of left heel','Y','0000-00-00 00:00:00'),(118449,10,'L89.623 ','Pressure ulcer of left heel, stage 3','Y','0000-00-00 00:00:00'),(118447,10,'L89.621 ','Pressure ulcer of left heel, stage 1','Y','0000-00-00 00:00:00'),(118448,10,'L89.622 ','Pressure ulcer of left heel, stage 2','Y','0000-00-00 00:00:00'),(118446,10,'L89.620 ','Pressure ulcer of left heel, unstageable','Y','0000-00-00 00:00:00'),(118445,10,'L89.619 ','Pressure ulcer of right heel, unspecified stage','Y','0000-00-00 00:00:00'),(118443,10,'L89.614 ','Pressure ulcer of right heel, stage 4','Y','0000-00-00 00:00:00'),(118444,10,'L89.616 ','Pressure-induced deep tissue damage of right heel','Y','0000-00-00 00:00:00'),(118442,10,'L89.613 ','Pressure ulcer of right heel, stage 3','Y','0000-00-00 00:00:00'),(118441,10,'L89.612 ','Pressure ulcer of right heel, stage 2','Y','0000-00-00 00:00:00'),(118440,10,'L89.611 ','Pressure ulcer of right heel, stage 1','Y','0000-00-00 00:00:00'),(118439,10,'L89.610 ','Pressure ulcer of right heel, unstageable','Y','0000-00-00 00:00:00'),(118438,10,'L89.609 ','Pressure ulcer of unspecified heel, unspecified stage','Y','0000-00-00 00:00:00'),(118437,10,'L89.606 ','Pressure-induced deep tissue damage of unspecified heel','Y','0000-00-00 00:00:00'),(118436,10,'L89.604 ','Pressure ulcer of unspecified heel, stage 4','Y','0000-00-00 00:00:00'),(118435,10,'L89.603 ','Pressure ulcer of unspecified heel, stage 3','Y','0000-00-00 00:00:00'),(118433,10,'L89.601 ','Pressure ulcer of unspecified heel, stage 1','Y','0000-00-00 00:00:00'),(118434,10,'L89.602 ','Pressure ulcer of unspecified heel, stage 2','Y','0000-00-00 00:00:00'),(118432,10,'L89.600 ','Pressure ulcer of unspecified heel, unstageable','Y','0000-00-00 00:00:00'),(118431,10,'L89.529 ','Pressure ulcer of left ankle, unspecified stage','Y','0000-00-00 00:00:00'),(118430,10,'L89.526 ','Pressure-induced deep tissue damage of left ankle','Y','0000-00-00 00:00:00'),(118428,10,'L89.523 ','Pressure ulcer of left ankle, stage 3','Y','0000-00-00 00:00:00'),(118429,10,'L89.524 ','Pressure ulcer of left ankle, stage 4','Y','0000-00-00 00:00:00'),(118427,10,'L89.522 ','Pressure ulcer of left ankle, stage 2','Y','0000-00-00 00:00:00'),(118426,10,'L89.521 ','Pressure ulcer of left ankle, stage 1','Y','0000-00-00 00:00:00'),(118425,10,'L89.520 ','Pressure ulcer of left ankle, unstageable','Y','0000-00-00 00:00:00'),(118424,10,'L89.519 ','Pressure ulcer of right ankle, unspecified stage','Y','0000-00-00 00:00:00'),(118422,10,'L89.514 ','Pressure ulcer of right ankle, stage 4','Y','0000-00-00 00:00:00'),(118423,10,'L89.516 ','Pressure-induced deep tissue damage of right ankle','Y','0000-00-00 00:00:00'),(118421,10,'L89.513 ','Pressure ulcer of right ankle, stage 3','Y','0000-00-00 00:00:00'),(118420,10,'L89.512 ','Pressure ulcer of right ankle, stage 2','Y','0000-00-00 00:00:00'),(118419,10,'L89.511 ','Pressure ulcer of right ankle, stage 1','Y','0000-00-00 00:00:00'),(118418,10,'L89.510 ','Pressure ulcer of right ankle, unstageable','Y','0000-00-00 00:00:00'),(118417,10,'L89.509 ','Pressure ulcer of unspecified ankle, unspecified stage','Y','0000-00-00 00:00:00'),(118416,10,'L89.506 ','Pressure-induced deep tissue damage of unspecified ankle','Y','0000-00-00 00:00:00'),(118415,10,'L89.504 ','Pressure ulcer of unspecified ankle, stage 4','Y','0000-00-00 00:00:00'),(118414,10,'L89.503 ','Pressure ulcer of unspecified ankle, stage 3','Y','0000-00-00 00:00:00'),(118413,10,'L89.502 ','Pressure ulcer of unspecified ankle, stage 2','Y','0000-00-00 00:00:00'),(118412,10,'L89.501 ','Pressure ulcer of unspecified ankle, stage 1','Y','0000-00-00 00:00:00'),(118411,10,'L89.500 ','Pressure ulcer of unspecified ankle, unstageable','Y','0000-00-00 00:00:00'),(118410,10,'L89.46 ','Pressure-induced deep tissue damage of contiguous site of back, buttock and hip','Y','0000-00-00 00:00:00'),(118409,10,'L89.45 ','Pressure ulcer of contiguous site of back, buttock and hip, unstageable','Y','0000-00-00 00:00:00'),(118408,10,'L89.44 ','Pressure ulcer of contiguous site of back, buttock and hip, stage 4','Y','0000-00-00 00:00:00'),(118407,10,'L89.43 ','Pressure ulcer of contiguous site of back, buttock and hip, stage 3','Y','0000-00-00 00:00:00'),(118406,10,'L89.42 ','Pressure ulcer of contiguous site of back, buttock and hip, stage 2','Y','0000-00-00 00:00:00'),(118405,10,'L89.41 ','Pressure ulcer of contiguous site of back, buttock and hip, stage 1','Y','0000-00-00 00:00:00'),(118404,10,'L89.40 ','Pressure ulcer of contiguous site of back, buttock and hip, unspecified stage','Y','0000-00-00 00:00:00'),(118403,10,'L89.329 ','Pressure ulcer of left buttock, unspecified stage','Y','0000-00-00 00:00:00'),(118402,10,'L89.326 ','Pressure-induced deep tissue damage of left buttock','Y','0000-00-00 00:00:00'),(118401,10,'L89.324 ','Pressure ulcer of left buttock, stage 4','Y','0000-00-00 00:00:00'),(118400,10,'L89.323 ','Pressure ulcer of left buttock, stage 3','Y','0000-00-00 00:00:00'),(118399,10,'L89.322 ','Pressure ulcer of left buttock, stage 2','Y','0000-00-00 00:00:00'),(118398,10,'L89.321 ','Pressure ulcer of left buttock, stage 1','Y','0000-00-00 00:00:00'),(118397,10,'L89.320 ','Pressure ulcer of left buttock, unstageable','Y','0000-00-00 00:00:00'),(118396,10,'L89.319 ','Pressure ulcer of right buttock, unspecified stage','Y','0000-00-00 00:00:00'),(118395,10,'L89.316 ','Pressure-induced deep tissue damage of right buttock','Y','0000-00-00 00:00:00'),(118394,10,'L89.314 ','Pressure ulcer of right buttock, stage 4','Y','0000-00-00 00:00:00'),(118393,10,'L89.313 ','Pressure ulcer of right buttock, stage 3','Y','0000-00-00 00:00:00'),(118392,10,'L89.312 ','Pressure ulcer of right buttock, stage 2','Y','0000-00-00 00:00:00'),(118391,10,'L89.311 ','Pressure ulcer of right buttock, stage 1','Y','0000-00-00 00:00:00'),(118390,10,'L89.310 ','Pressure ulcer of right buttock, unstageable','Y','0000-00-00 00:00:00'),(118389,10,'L89.309 ','Pressure ulcer of unspecified buttock, unspecified stage','Y','0000-00-00 00:00:00'),(118388,10,'L89.306 ','Pressure-induced deep tissue damage of unspecified buttock','Y','0000-00-00 00:00:00'),(118387,10,'L89.304 ','Pressure ulcer of unspecified buttock, stage 4','Y','0000-00-00 00:00:00'),(118386,10,'L89.303 ','Pressure ulcer of unspecified buttock, stage 3','Y','0000-00-00 00:00:00'),(118385,10,'L89.302 ','Pressure ulcer of unspecified buttock, stage 2','Y','0000-00-00 00:00:00'),(118384,10,'L89.301 ','Pressure ulcer of unspecified buttock, stage 1','Y','0000-00-00 00:00:00'),(118383,10,'L89.300 ','Pressure ulcer of unspecified buttock, unstageable','Y','0000-00-00 00:00:00'),(118382,10,'L89.229 ','Pressure ulcer of left hip, unspecified stage','Y','0000-00-00 00:00:00'),(118381,10,'L89.226 ','Pressure-induced deep tissue damage of left hip','Y','0000-00-00 00:00:00'),(118380,10,'L89.224 ','Pressure ulcer of left hip, stage 4','Y','0000-00-00 00:00:00'),(118379,10,'L89.223 ','Pressure ulcer of left hip, stage 3','Y','0000-00-00 00:00:00'),(118378,10,'L89.222 ','Pressure ulcer of left hip, stage 2','Y','0000-00-00 00:00:00'),(118377,10,'L89.221 ','Pressure ulcer of left hip, stage 1','Y','0000-00-00 00:00:00'),(118376,10,'L89.220 ','Pressure ulcer of left hip, unstageable','Y','0000-00-00 00:00:00'),(118375,10,'L89.219 ','Pressure ulcer of right hip, unspecified stage','Y','0000-00-00 00:00:00'),(118374,10,'L89.216 ','Pressure-induced deep tissue damage of right hip','Y','0000-00-00 00:00:00'),(118373,10,'L89.214 ','Pressure ulcer of right hip, stage 4','Y','0000-00-00 00:00:00'),(118372,10,'L89.213 ','Pressure ulcer of right hip, stage 3','Y','0000-00-00 00:00:00'),(118371,10,'L89.212 ','Pressure ulcer of right hip, stage 2','Y','0000-00-00 00:00:00'),(118370,10,'L89.211 ','Pressure ulcer of right hip, stage 1','Y','0000-00-00 00:00:00'),(118369,10,'L89.210 ','Pressure ulcer of right hip, unstageable','Y','0000-00-00 00:00:00'),(118368,10,'L89.209 ','Pressure ulcer of unspecified hip, unspecified stage','Y','0000-00-00 00:00:00'),(118367,10,'L89.206 ','Pressure-induced deep tissue damage of unspecified hip','Y','0000-00-00 00:00:00'),(118366,10,'L89.204 ','Pressure ulcer of unspecified hip, stage 4','Y','0000-00-00 00:00:00'),(118364,10,'L89.202 ','Pressure ulcer of unspecified hip, stage 2','Y','0000-00-00 00:00:00'),(118365,10,'L89.203 ','Pressure ulcer of unspecified hip, stage 3','Y','0000-00-00 00:00:00'),(118363,10,'L89.201 ','Pressure ulcer of unspecified hip, stage 1','Y','0000-00-00 00:00:00'),(118362,10,'L89.200 ','Pressure ulcer of unspecified hip, unstageable','Y','0000-00-00 00:00:00'),(118361,10,'L89.159 ','Pressure ulcer of sacral region, unspecified stage','Y','0000-00-00 00:00:00'),(118359,10,'L89.154 ','Pressure ulcer of sacral region, stage 4','Y','0000-00-00 00:00:00'),(118360,10,'L89.156 ','Pressure-induced deep tissue damage of sacral region','Y','0000-00-00 00:00:00'),(118358,10,'L89.153 ','Pressure ulcer of sacral region, stage 3','Y','0000-00-00 00:00:00'),(118357,10,'L89.152 ','Pressure ulcer of sacral region, stage 2','Y','0000-00-00 00:00:00'),(118356,10,'L89.151 ','Pressure ulcer of sacral region, stage 1','Y','0000-00-00 00:00:00'),(118355,10,'L89.150 ','Pressure ulcer of sacral region, unstageable','Y','0000-00-00 00:00:00'),(118354,10,'L89.149 ','Pressure ulcer of left lower back, unspecified stage','Y','0000-00-00 00:00:00'),(118353,10,'L89.146 ','Pressure-induced deep tissue damage of left lower back','Y','0000-00-00 00:00:00'),(118352,10,'L89.144 ','Pressure ulcer of left lower back, stage 4','Y','0000-00-00 00:00:00'),(118351,10,'L89.143 ','Pressure ulcer of left lower back, stage 3','Y','0000-00-00 00:00:00'),(118350,10,'L89.142 ','Pressure ulcer of left lower back, stage 2','Y','0000-00-00 00:00:00'),(118349,10,'L89.141 ','Pressure ulcer of left lower back, stage 1','Y','0000-00-00 00:00:00'),(118348,10,'L89.140 ','Pressure ulcer of left lower back, unstageable','Y','0000-00-00 00:00:00'),(118347,10,'L89.139 ','Pressure ulcer of right lower back, unspecified stage','Y','0000-00-00 00:00:00'),(118346,10,'L89.136 ','Pressure-induced deep tissue damage of right lower back','Y','0000-00-00 00:00:00'),(118345,10,'L89.134 ','Pressure ulcer of right lower back, stage 4','Y','0000-00-00 00:00:00'),(118344,10,'L89.133 ','Pressure ulcer of right lower back, stage 3','Y','0000-00-00 00:00:00'),(118343,10,'L89.132 ','Pressure ulcer of right lower back, stage 2','Y','0000-00-00 00:00:00'),(118342,10,'L89.131 ','Pressure ulcer of right lower back, stage 1','Y','0000-00-00 00:00:00'),(118341,10,'L89.130 ','Pressure ulcer of right lower back, unstageable','Y','0000-00-00 00:00:00'),(118340,10,'L89.129 ','Pressure ulcer of left upper back, unspecified stage','Y','0000-00-00 00:00:00'),(118339,10,'L89.126 ','Pressure-induced deep tissue damage of left upper back','Y','0000-00-00 00:00:00'),(118338,10,'L89.124 ','Pressure ulcer of left upper back, stage 4','Y','0000-00-00 00:00:00'),(118337,10,'L89.123 ','Pressure ulcer of left upper back, stage 3','Y','0000-00-00 00:00:00'),(118336,10,'L89.122 ','Pressure ulcer of left upper back, stage 2','Y','0000-00-00 00:00:00'),(118335,10,'L89.121 ','Pressure ulcer of left upper back, stage 1','Y','0000-00-00 00:00:00'),(118334,10,'L89.120 ','Pressure ulcer of left upper back, unstageable','Y','0000-00-00 00:00:00'),(118333,10,'L89.119 ','Pressure ulcer of right upper back, unspecified stage','Y','0000-00-00 00:00:00'),(118332,10,'L89.116 ','Pressure-induced deep tissue damage of right upper back','Y','0000-00-00 00:00:00'),(118331,10,'L89.114 ','Pressure ulcer of right upper back, stage 4','Y','0000-00-00 00:00:00'),(118330,10,'L89.113 ','Pressure ulcer of right upper back, stage 3','Y','0000-00-00 00:00:00'),(118329,10,'L89.112 ','Pressure ulcer of right upper back, stage 2','Y','0000-00-00 00:00:00'),(118328,10,'L89.111 ','Pressure ulcer of right upper back, stage 1','Y','0000-00-00 00:00:00'),(118327,10,'L89.110 ','Pressure ulcer of right upper back, unstageable','Y','0000-00-00 00:00:00'),(118326,10,'L89.109 ','Pressure ulcer of unspecified part of back, unspecified stage','Y','0000-00-00 00:00:00'),(118325,10,'L89.106 ','Pressure-induced deep tissue damage of unspecified part of back','Y','0000-00-00 00:00:00'),(118324,10,'L89.104 ','Pressure ulcer of unspecified part of back, stage 4','Y','0000-00-00 00:00:00'),(118323,10,'L89.103 ','Pressure ulcer of unspecified part of back, stage 3','Y','0000-00-00 00:00:00'),(118322,10,'L89.102 ','Pressure ulcer of unspecified part of back, stage 2','Y','0000-00-00 00:00:00'),(118321,10,'L89.101 ','Pressure ulcer of unspecified part of back, stage 1','Y','0000-00-00 00:00:00'),(118320,10,'L89.100 ','Pressure ulcer of unspecified part of back, unstageable','Y','0000-00-00 00:00:00'),(118319,10,'L89.029 ','Pressure ulcer of left elbow, unspecified stage','Y','0000-00-00 00:00:00'),(118318,10,'L89.026 ','Pressure-induced deep tissue damage of left elbow','Y','0000-00-00 00:00:00'),(118316,10,'L89.023 ','Pressure ulcer of left elbow, stage 3','Y','0000-00-00 00:00:00'),(118317,10,'L89.024 ','Pressure ulcer of left elbow, stage 4','Y','0000-00-00 00:00:00'),(118315,10,'L89.022 ','Pressure ulcer of left elbow, stage 2','Y','0000-00-00 00:00:00'),(118314,10,'L89.021 ','Pressure ulcer of left elbow, stage 1','Y','0000-00-00 00:00:00'),(118312,10,'L89.019 ','Pressure ulcer of right elbow, unspecified stage','Y','0000-00-00 00:00:00'),(118313,10,'L89.020 ','Pressure ulcer of left elbow, unstageable','Y','0000-00-00 00:00:00'),(118311,10,'L89.016 ','Pressure-induced deep tissue damage of right elbow','Y','0000-00-00 00:00:00'),(118310,10,'L89.014 ','Pressure ulcer of right elbow, stage 4','Y','0000-00-00 00:00:00'),(118309,10,'L89.013 ','Pressure ulcer of right elbow, stage 3','Y','0000-00-00 00:00:00'),(118308,10,'L89.012 ','Pressure ulcer of right elbow, stage 2','Y','0000-00-00 00:00:00'),(118306,10,'L89.010 ','Pressure ulcer of right elbow, unstageable','Y','0000-00-00 00:00:00'),(118307,10,'L89.011 ','Pressure ulcer of right elbow, stage 1','Y','0000-00-00 00:00:00'),(118305,10,'L89.009 ','Pressure ulcer of unspecified elbow, unspecified stage','Y','0000-00-00 00:00:00'),(118304,10,'L89.006 ','Pressure-induced deep tissue damage of unspecified elbow','Y','0000-00-00 00:00:00'),(118303,10,'L89.004 ','Pressure ulcer of unspecified elbow, stage 4','Y','0000-00-00 00:00:00'),(118301,10,'L89.002 ','Pressure ulcer of unspecified elbow, stage 2','Y','0000-00-00 00:00:00'),(118302,10,'L89.003 ','Pressure ulcer of unspecified elbow, stage 3','Y','0000-00-00 00:00:00'),(118300,10,'L89.001 ','Pressure ulcer of unspecified elbow, stage 1','Y','0000-00-00 00:00:00'),(118298,10,'L88','Pyoderma gangrenosum','Y','0000-00-00 00:00:00'),(118299,10,'L89.000 ','Pressure ulcer of unspecified elbow, unstageable','Y','0000-00-00 00:00:00'),(118297,10,'L87.9 ','Transepidermal elimination disorder, unspecified','Y','0000-00-00 00:00:00'),(118296,10,'L87.8 ','Other transepidermal elimination disorders','Y','0000-00-00 00:00:00'),(118294,10,'L87.1 ','Reactive perforating collagenosis','Y','0000-00-00 00:00:00'),(118295,10,'L87.2 ','Elastosis perforans serpiginosa','Y','0000-00-00 00:00:00'),(118293,10,'L87.0 ','Keratosis follicularis et parafollicularis in cutem penetrans','Y','0000-00-00 00:00:00'),(118292,10,'L86','Keratoderma in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118291,10,'L85.9 ','Epidermal thickening, unspecified','Y','0000-00-00 00:00:00'),(118289,10,'L85.3 ','Xerosis cutis','Y','0000-00-00 00:00:00'),(118290,10,'L85.8 ','Other specified epidermal thickening','Y','0000-00-00 00:00:00'),(118288,10,'L85.2 ','Keratosis punctata (palmaris et plantaris)','Y','0000-00-00 00:00:00'),(118286,10,'L85.0 ','Acquired ichthyosis','Y','0000-00-00 00:00:00'),(118287,10,'L85.1 ','Acquired keratosis [keratoderma] palmaris et plantaris','Y','0000-00-00 00:00:00'),(118284,10,'L83','Acanthosis nigricans','Y','0000-00-00 00:00:00'),(118285,10,'L84','Corns and callosities','Y','0000-00-00 00:00:00'),(118283,10,'L82.1 ','Other seborrheic keratosis','Y','0000-00-00 00:00:00'),(118281,10,'L81.9 ','Disorder of pigmentation, unspecified','Y','0000-00-00 00:00:00'),(118282,10,'L82.0 ','Inflamed seborrheic keratosis','Y','0000-00-00 00:00:00'),(118280,10,'L81.8 ','Other specified disorders of pigmentation','Y','0000-00-00 00:00:00'),(118278,10,'L81.6 ','Other disorders of diminished melanin formation','Y','0000-00-00 00:00:00'),(118279,10,'L81.7 ','Pigmented purpuric dermatosis','Y','0000-00-00 00:00:00'),(118277,10,'L81.5 ','Leukoderma, not elsewhere classified','Y','0000-00-00 00:00:00'),(118275,10,'L81.3 ','Cafe au lait spots','Y','0000-00-00 00:00:00'),(118276,10,'L81.4 ','Other melanin hyperpigmentation','Y','0000-00-00 00:00:00'),(118273,10,'L81.1 ','Chloasma','Y','0000-00-00 00:00:00'),(118274,10,'L81.2 ','Freckles','Y','0000-00-00 00:00:00'),(118271,10,'L80','Vitiligo','Y','0000-00-00 00:00:00'),(118272,10,'L81.0 ','Postinflammatory hyperpigmentation','Y','0000-00-00 00:00:00'),(118270,10,'L76.82 ','Other postprocedural complications of skin and subcutaneous tissue','Y','0000-00-00 00:00:00'),(118269,10,'L76.81 ','Other intraoperative complications of skin and subcutaneous tissue','Y','0000-00-00 00:00:00'),(118268,10,'L76.34 ','Postprocedural seroma of skin and subcutaneous tissue following other procedure','Y','0000-00-00 00:00:00'),(118267,10,'L76.33 ','Postprocedural seroma of skin and subcutaneous tissue following a dermatologic procedure','Y','0000-00-00 00:00:00'),(118266,10,'L76.32 ','Postprocedural hematoma of skin and subcutaneous tissue following other procedure','Y','0000-00-00 00:00:00'),(118265,10,'L76.31 ','Postprocedural hematoma of skin and subcutaneous tissue following a dermatologic procedure','Y','0000-00-00 00:00:00'),(118264,10,'L76.22 ','Postprocedural hemorrhage of skin and subcutaneous tissue following other procedure','Y','0000-00-00 00:00:00'),(118263,10,'L76.21 ','Postprocedural hemorrhage of skin and subcutaneous tissue following a dermatologic procedure','Y','0000-00-00 00:00:00'),(118262,10,'L76.12 ','Accidental puncture and laceration of skin and subcutaneous tissue during other procedure','Y','0000-00-00 00:00:00'),(118261,10,'L76.11 ','Accidental puncture and laceration of skin and subcutaneous tissue during a dermatologic procedure','Y','0000-00-00 00:00:00'),(118260,10,'L76.02 ','Intraoperative hemorrhage and hematoma of skin and subcutaneous tissue complicating other procedure','Y','0000-00-00 00:00:00'),(118259,10,'L76.01 ','Intraoperative hemorrhage and hematoma of skin and subcutaneous tissue complicating a dermatologic procedure','Y','0000-00-00 00:00:00'),(118258,10,'L75.9 ','Apocrine sweat disorder, unspecified','Y','0000-00-00 00:00:00'),(118256,10,'L75.2 ','Apocrine miliaria','Y','0000-00-00 00:00:00'),(118257,10,'L75.8 ','Other apocrine sweat disorders','Y','0000-00-00 00:00:00'),(118254,10,'L75.0 ','Bromhidrosis','Y','0000-00-00 00:00:00'),(118255,10,'L75.1 ','Chromhidrosis','Y','0000-00-00 00:00:00'),(118253,10,'L74.9 ','Eccrine sweat disorder, unspecified','Y','0000-00-00 00:00:00'),(118252,10,'L74.8 ','Other eccrine sweat disorders','Y','0000-00-00 00:00:00'),(118251,10,'L74.52 ','Secondary focal hyperhidrosis','Y','0000-00-00 00:00:00'),(118250,10,'L74.519 ','Primary focal hyperhidrosis, unspecified','Y','0000-00-00 00:00:00'),(118249,10,'L74.513 ','Primary focal hyperhidrosis, soles','Y','0000-00-00 00:00:00'),(118248,10,'L74.512 ','Primary focal hyperhidrosis, palms','Y','0000-00-00 00:00:00'),(118246,10,'L74.510 ','Primary focal hyperhidrosis, axilla','Y','0000-00-00 00:00:00'),(118247,10,'L74.511 ','Primary focal hyperhidrosis, face','Y','0000-00-00 00:00:00'),(118244,10,'L74.3 ','Miliaria, unspecified','Y','0000-00-00 00:00:00'),(118245,10,'L74.4 ','Anhidrosis','Y','0000-00-00 00:00:00'),(118242,10,'L74.1 ','Miliaria crystallina','Y','0000-00-00 00:00:00'),(118243,10,'L74.2 ','Miliaria profunda','Y','0000-00-00 00:00:00'),(118241,10,'L74.0 ','Miliaria rubra','Y','0000-00-00 00:00:00'),(118239,10,'L73.8 ','Other specified follicular disorders','Y','0000-00-00 00:00:00'),(118240,10,'L73.9 ','Follicular disorder, unspecified','Y','0000-00-00 00:00:00'),(118238,10,'L73.2 ','Hidradenitis suppurativa','Y','0000-00-00 00:00:00'),(118236,10,'L73.0 ','Acne keloid','Y','0000-00-00 00:00:00'),(118237,10,'L73.1 ','Pseudofolliculitis barbae','Y','0000-00-00 00:00:00'),(118235,10,'L72.9 ','Follicular cyst of the skin and subcutaneous tissue, unspecified','Y','0000-00-00 00:00:00'),(118234,10,'L72.8 ','Other follicular cysts of the skin and subcutaneous tissue','Y','0000-00-00 00:00:00'),(118232,10,'L72.2 ','Steatocystoma multiplex','Y','0000-00-00 00:00:00'),(118233,10,'L72.3 ','Sebaceous cyst','Y','0000-00-00 00:00:00'),(118231,10,'L72.12 ','Trichodermal cyst','Y','0000-00-00 00:00:00'),(118229,10,'L72.0 ','Epidermal cyst','Y','0000-00-00 00:00:00'),(118230,10,'L72.11 ','Pilar cyst','Y','0000-00-00 00:00:00'),(118227,10,'L71.8 ','Other rosacea','Y','0000-00-00 00:00:00'),(118228,10,'L71.9 ','Rosacea, unspecified','Y','0000-00-00 00:00:00'),(118226,10,'L71.1 ','Rhinophyma','Y','0000-00-00 00:00:00'),(118224,10,'L70.9 ','Acne, unspecified','Y','0000-00-00 00:00:00'),(118225,10,'L71.0 ','Perioral dermatitis','Y','0000-00-00 00:00:00'),(118222,10,'L70.5 ','Acne excoriee','Y','0000-00-00 00:00:00'),(118223,10,'L70.8 ','Other acne','Y','0000-00-00 00:00:00'),(118220,10,'L70.3 ','Acne tropica','Y','0000-00-00 00:00:00'),(118221,10,'L70.4 ','Infantile acne','Y','0000-00-00 00:00:00'),(118219,10,'L70.2 ','Acne varioliformis','Y','0000-00-00 00:00:00'),(118218,10,'L70.1 ','Acne conglobata','Y','0000-00-00 00:00:00'),(118217,10,'L70.0 ','Acne vulgaris','Y','0000-00-00 00:00:00'),(118216,10,'L68.9 ','Hypertrichosis, unspecified','Y','0000-00-00 00:00:00'),(118214,10,'L68.3 ','Polytrichia','Y','0000-00-00 00:00:00'),(118215,10,'L68.8 ','Other hypertrichosis','Y','0000-00-00 00:00:00'),(118213,10,'L68.2 ','Localized hypertrichosis','Y','0000-00-00 00:00:00'),(118212,10,'L68.1 ','Acquired hypertrichosis lanuginosa','Y','0000-00-00 00:00:00'),(118211,10,'L68.0 ','Hirsutism','Y','0000-00-00 00:00:00'),(118210,10,'L67.9 ','Hair color and hair shaft abnormality, unspecified','Y','0000-00-00 00:00:00'),(118209,10,'L67.8 ','Other hair color and hair shaft abnormalities','Y','0000-00-00 00:00:00'),(118207,10,'L67.0 ','Trichorrhexis nodosa','Y','0000-00-00 00:00:00'),(118208,10,'L67.1 ','Variations in hair color','Y','0000-00-00 00:00:00'),(118206,10,'L66.9 ','Cicatricial alopecia, unspecified','Y','0000-00-00 00:00:00'),(118205,10,'L66.8 ','Other cicatricial alopecia','Y','0000-00-00 00:00:00'),(118204,10,'L66.4 ','Folliculitis ulerythematosa reticulata','Y','0000-00-00 00:00:00'),(118203,10,'L66.3 ','Perifolliculitis capitis abscedens','Y','0000-00-00 00:00:00'),(118202,10,'L66.2 ','Folliculitis decalvans','Y','0000-00-00 00:00:00'),(118200,10,'L66.0 ','Pseudopelade','Y','0000-00-00 00:00:00'),(118201,10,'L66.1 ','Lichen planopilaris','Y','0000-00-00 00:00:00'),(118199,10,'L65.9 ','Nonscarring hair loss, unspecified','Y','0000-00-00 00:00:00'),(118198,10,'L65.8 ','Other specified nonscarring hair loss','Y','0000-00-00 00:00:00'),(118196,10,'L65.1 ','Anagen effluvium','Y','0000-00-00 00:00:00'),(118197,10,'L65.2 ','Alopecia mucinosa','Y','0000-00-00 00:00:00'),(118195,10,'L65.0 ','Telogen effluvium','Y','0000-00-00 00:00:00'),(118193,10,'L64.8 ','Other androgenic alopecia','Y','0000-00-00 00:00:00'),(118194,10,'L64.9 ','Androgenic alopecia, unspecified','Y','0000-00-00 00:00:00'),(118192,10,'L64.0 ','Drug-induced androgenic alopecia','Y','0000-00-00 00:00:00'),(118190,10,'L63.8 ','Other alopecia areata','Y','0000-00-00 00:00:00'),(118191,10,'L63.9 ','Alopecia areata, unspecified','Y','0000-00-00 00:00:00'),(118188,10,'L63.1 ','Alopecia universalis','Y','0000-00-00 00:00:00'),(118189,10,'L63.2 ','Ophiasis','Y','0000-00-00 00:00:00'),(118187,10,'L63.0 ','Alopecia (capitis) totalis','Y','0000-00-00 00:00:00'),(118186,10,'L62','Nail disorders in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118185,10,'L60.9 ','Nail disorder, unspecified','Y','0000-00-00 00:00:00'),(118183,10,'L60.5 ','Yellow nail syndrome','Y','0000-00-00 00:00:00'),(118184,10,'L60.8 ','Other nail disorders','Y','0000-00-00 00:00:00'),(118182,10,'L60.4 ','Beau\'s lines','Y','0000-00-00 00:00:00'),(118180,10,'L60.2 ','Onychogryphosis','Y','0000-00-00 00:00:00'),(118181,10,'L60.3 ','Nail dystrophy','Y','0000-00-00 00:00:00'),(118178,10,'L60.0 ','Ingrowing nail','Y','0000-00-00 00:00:00'),(118179,10,'L60.1 ','Onycholysis','Y','0000-00-00 00:00:00'),(118177,10,'L59.9 ','Disorder of the skin and subcutaneous tissue related to radiation, unspecified','Y','0000-00-00 00:00:00'),(118176,10,'L59.8 ','Other specified disorders of the skin and subcutaneous tissue related to radiation','Y','0000-00-00 00:00:00'),(118175,10,'L59.0 ','Erythema ab igne [dermatitis ab igne]','Y','0000-00-00 00:00:00'),(118174,10,'L58.9 ','Radiodermatitis, unspecified','Y','0000-00-00 00:00:00'),(118173,10,'L58.1 ','Chronic radiodermatitis','Y','0000-00-00 00:00:00'),(118172,10,'L58.0 ','Acute radiodermatitis','Y','0000-00-00 00:00:00'),(118171,10,'L57.9 ','Skin changes due to chronic exposure to nonionizing radiation, unspecified','Y','0000-00-00 00:00:00'),(118170,10,'L57.8 ','Other skin changes due to chronic exposure to nonionizing radiation','Y','0000-00-00 00:00:00'),(118169,10,'L57.5 ','Actinic granuloma','Y','0000-00-00 00:00:00'),(118168,10,'L57.4 ','Cutis laxa senilis','Y','0000-00-00 00:00:00'),(118166,10,'L57.2 ','Cutis rhomboidalis nuchae','Y','0000-00-00 00:00:00'),(118167,10,'L57.3 ','Poikiloderma of Civatte','Y','0000-00-00 00:00:00'),(118165,10,'L57.1 ','Actinic reticuloid','Y','0000-00-00 00:00:00'),(118164,10,'L57.0 ','Actinic keratosis','Y','0000-00-00 00:00:00'),(118163,10,'L56.9 ','Acute skin change due to ultraviolet radiation, unspecified','Y','0000-00-00 00:00:00'),(118162,10,'L56.8 ','Other specified acute skin changes due to ultraviolet radiation','Y','0000-00-00 00:00:00'),(118161,10,'L56.5 ','Disseminated superficial actinic porokeratosis (DSAP)','Y','0000-00-00 00:00:00'),(118160,10,'L56.4 ','Polymorphous light eruption','Y','0000-00-00 00:00:00'),(118159,10,'L56.3 ','Solar urticaria','Y','0000-00-00 00:00:00'),(118158,10,'L56.2 ','Photocontact dermatitis [berloque dermatitis]','Y','0000-00-00 00:00:00'),(118157,10,'L56.1 ','Drug photoallergic response','Y','0000-00-00 00:00:00'),(118156,10,'L56.0 ','Drug phototoxic response','Y','0000-00-00 00:00:00'),(118155,10,'L55.9 ','Sunburn, unspecified','Y','0000-00-00 00:00:00'),(118153,10,'L55.1 ','Sunburn of second degree','Y','0000-00-00 00:00:00'),(118154,10,'L55.2 ','Sunburn of third degree','Y','0000-00-00 00:00:00'),(118152,10,'L55.0 ','Sunburn of first degree','Y','0000-00-00 00:00:00'),(118151,10,'L54','Erythema in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118150,10,'L53.9 ','Erythematous condition, unspecified','Y','0000-00-00 00:00:00'),(118149,10,'L53.8 ','Other specified erythematous conditions','Y','0000-00-00 00:00:00'),(118148,10,'L53.3 ','Other chronic figurate erythema','Y','0000-00-00 00:00:00'),(118147,10,'L53.2 ','Erythema marginatum','Y','0000-00-00 00:00:00'),(118146,10,'L53.1 ','Erythema annulare centrifugum','Y','0000-00-00 00:00:00'),(118145,10,'L53.0 ','Toxic erythema','Y','0000-00-00 00:00:00'),(118144,10,'L52','Erythema nodosum','Y','0000-00-00 00:00:00'),(118142,10,'L51.8 ','Other erythema multiforme','Y','0000-00-00 00:00:00'),(118143,10,'L51.9 ','Erythema multiforme, unspecified','Y','0000-00-00 00:00:00'),(118141,10,'L51.3 ','Stevens-Johnson syndrome-toxic epidermal necrolysis overlap syndrome','Y','0000-00-00 00:00:00'),(118139,10,'L51.1 ','Stevens-Johnson syndrome','Y','0000-00-00 00:00:00'),(118140,10,'L51.2 ','Toxic epidermal necrolysis [Lyell]','Y','0000-00-00 00:00:00'),(118138,10,'L51.0 ','Nonbullous erythema multiforme','Y','0000-00-00 00:00:00'),(118137,10,'L50.9 ','Urticaria, unspecified','Y','0000-00-00 00:00:00'),(118136,10,'L50.8 ','Other urticaria','Y','0000-00-00 00:00:00'),(118135,10,'L50.6 ','Contact urticaria','Y','0000-00-00 00:00:00'),(118134,10,'L50.5 ','Cholinergic urticaria','Y','0000-00-00 00:00:00'),(118133,10,'L50.4 ','Vibratory urticaria','Y','0000-00-00 00:00:00'),(118132,10,'L50.3 ','Dermatographic urticaria','Y','0000-00-00 00:00:00'),(118131,10,'L50.2 ','Urticaria due to cold and heat','Y','0000-00-00 00:00:00'),(118129,10,'L50.0 ','Allergic urticaria','Y','0000-00-00 00:00:00'),(118130,10,'L50.1 ','Idiopathic urticaria','Y','0000-00-00 00:00:00'),(118128,10,'L49.9 ','Exfoliation due to erythematous condition involving 90 or more percent of body surface','Y','0000-00-00 00:00:00'),(118127,10,'L49.8 ','Exfoliation due to erythematous condition involving 80-89 percent of body surface','Y','0000-00-00 00:00:00'),(118126,10,'L49.7 ','Exfoliation due to erythematous condition involving 70-79 percent of body surface','Y','0000-00-00 00:00:00'),(118125,10,'L49.6 ','Exfoliation due to erythematous condition involving 60-69 percent of body surface','Y','0000-00-00 00:00:00'),(118124,10,'L49.5 ','Exfoliation due to erythematous condition involving 50-59 percent of body surface','Y','0000-00-00 00:00:00'),(118123,10,'L49.4 ','Exfoliation due to erythematous condition involving 40-49 percent of body surface','Y','0000-00-00 00:00:00'),(118122,10,'L49.3 ','Exfoliation due to erythematous condition involving 30-39 percent of body surface','Y','0000-00-00 00:00:00'),(118121,10,'L49.2 ','Exfoliation due to erythematous condition involving 20-29 percent of body surface','Y','0000-00-00 00:00:00'),(118120,10,'L49.1 ','Exfoliation due to erythematous condition involving 10-19 percent of body surface','Y','0000-00-00 00:00:00'),(118119,10,'L49.0 ','Exfoliation due to erythematous condition involving less than 10 percent of body surface','Y','0000-00-00 00:00:00'),(118118,10,'L45','Papulosquamous disorders in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118117,10,'L44.9 ','Papulosquamous disorder, unspecified','Y','0000-00-00 00:00:00'),(118116,10,'L44.8 ','Other specified papulosquamous disorders','Y','0000-00-00 00:00:00'),(118115,10,'L44.4 ','Infantile papular acrodermatitis [Gianotti-Crosti]','Y','0000-00-00 00:00:00'),(118114,10,'L44.3 ','Lichen ruber moniliformis','Y','0000-00-00 00:00:00'),(118113,10,'L44.2 ','Lichen striatus','Y','0000-00-00 00:00:00'),(118111,10,'L44.0 ','Pityriasis rubra pilaris','Y','0000-00-00 00:00:00'),(118112,10,'L44.1 ','Lichen nitidus','Y','0000-00-00 00:00:00'),(118110,10,'L43.9 ','Lichen planus, unspecified','Y','0000-00-00 00:00:00'),(118109,10,'L43.8 ','Other lichen planus','Y','0000-00-00 00:00:00'),(118107,10,'L43.2 ','Lichenoid drug reaction','Y','0000-00-00 00:00:00'),(118108,10,'L43.3 ','Subacute (active) lichen planus','Y','0000-00-00 00:00:00'),(118106,10,'L43.1 ','Bullous lichen planus','Y','0000-00-00 00:00:00'),(118104,10,'L42','Pityriasis rosea','Y','0000-00-00 00:00:00'),(118105,10,'L43.0 ','Hypertrophic lichen planus','Y','0000-00-00 00:00:00'),(118103,10,'L41.9 ','Parapsoriasis, unspecified','Y','0000-00-00 00:00:00'),(118101,10,'L41.5 ','Retiform parapsoriasis','Y','0000-00-00 00:00:00'),(118102,10,'L41.8 ','Other parapsoriasis','Y','0000-00-00 00:00:00'),(118100,10,'L41.4 ','Large plaque parapsoriasis','Y','0000-00-00 00:00:00'),(118099,10,'L41.3 ','Small plaque parapsoriasis','Y','0000-00-00 00:00:00'),(118098,10,'L41.1 ','Pityriasis lichenoides chronica','Y','0000-00-00 00:00:00'),(118097,10,'L41.0 ','Pityriasis lichenoides et varioliformis acuta','Y','0000-00-00 00:00:00'),(118095,10,'L40.8 ','Other psoriasis','Y','0000-00-00 00:00:00'),(118096,10,'L40.9 ','Psoriasis, unspecified','Y','0000-00-00 00:00:00'),(118094,10,'L40.59 ','Other psoriatic arthropathy','Y','0000-00-00 00:00:00'),(118093,10,'L40.54 ','Psoriatic juvenile arthropathy','Y','0000-00-00 00:00:00'),(118091,10,'L40.52 ','Psoriatic arthritis mutilans','Y','0000-00-00 00:00:00'),(118092,10,'L40.53 ','Psoriatic spondylitis','Y','0000-00-00 00:00:00'),(118090,10,'L40.51 ','Distal interphalangeal psoriatic arthropathy','Y','0000-00-00 00:00:00'),(118089,10,'L40.50 ','Arthropathic psoriasis, unspecified','Y','0000-00-00 00:00:00'),(118088,10,'L40.4 ','Guttate psoriasis','Y','0000-00-00 00:00:00'),(118087,10,'L40.3 ','Pustulosis palmaris et plantaris','Y','0000-00-00 00:00:00'),(118086,10,'L40.2 ','Acrodermatitis continua','Y','0000-00-00 00:00:00'),(118084,10,'L40.0 ','Psoriasis vulgaris','Y','0000-00-00 00:00:00'),(118085,10,'L40.1 ','Generalized pustular psoriasis','Y','0000-00-00 00:00:00'),(118083,10,'L30.9 ','Dermatitis, unspecified','Y','0000-00-00 00:00:00'),(118082,10,'L30.8 ','Other specified dermatitis','Y','0000-00-00 00:00:00'),(118080,10,'L30.4 ','Erythema intertrigo','Y','0000-00-00 00:00:00'),(118081,10,'L30.5 ','Pityriasis alba','Y','0000-00-00 00:00:00'),(118079,10,'L30.3 ','Infective dermatitis','Y','0000-00-00 00:00:00'),(118077,10,'L30.1 ','Dyshidrosis [pompholyx]','Y','0000-00-00 00:00:00'),(118078,10,'L30.2 ','Cutaneous autosensitization','Y','0000-00-00 00:00:00'),(118075,10,'L29.9 ','Pruritus, unspecified','Y','0000-00-00 00:00:00'),(118076,10,'L30.0 ','Nummular dermatitis','Y','0000-00-00 00:00:00'),(118073,10,'L29.3 ','Anogenital pruritus, unspecified','Y','0000-00-00 00:00:00'),(118074,10,'L29.8 ','Other pruritus','Y','0000-00-00 00:00:00'),(118071,10,'L29.1 ','Pruritus scroti','Y','0000-00-00 00:00:00'),(118072,10,'L29.2 ','Pruritus vulvae','Y','0000-00-00 00:00:00'),(118069,10,'L28.2 ','Other prurigo','Y','0000-00-00 00:00:00'),(118070,10,'L29.0 ','Pruritus ani','Y','0000-00-00 00:00:00'),(118067,10,'L28.0 ','Lichen simplex chronicus','Y','0000-00-00 00:00:00'),(118068,10,'L28.1 ','Prurigo nodularis','Y','0000-00-00 00:00:00'),(118066,10,'L27.9 ','Dermatitis due to unspecified substance taken internally','Y','0000-00-00 00:00:00'),(118065,10,'L27.8 ','Dermatitis due to other substances taken internally','Y','0000-00-00 00:00:00'),(118064,10,'L27.2 ','Dermatitis due to ingested food','Y','0000-00-00 00:00:00'),(118063,10,'L27.1 ','Localized skin eruption due to drugs and medicaments taken internally','Y','0000-00-00 00:00:00'),(118061,10,'L26','Exfoliative dermatitis','Y','0000-00-00 00:00:00'),(118062,10,'L27.0 ','Generalized skin eruption due to drugs and medicaments taken internally','Y','0000-00-00 00:00:00'),(118060,10,'L25.9 ','Unspecified contact dermatitis, unspecified cause','Y','0000-00-00 00:00:00'),(118058,10,'L25.5 ','Unspecified contact dermatitis due to plants, except food','Y','0000-00-00 00:00:00'),(118059,10,'L25.8 ','Unspecified contact dermatitis due to other agents','Y','0000-00-00 00:00:00'),(118057,10,'L25.4 ','Unspecified contact dermatitis due to food in contact with skin','Y','0000-00-00 00:00:00'),(118056,10,'L25.3 ','Unspecified contact dermatitis due to other chemical products','Y','0000-00-00 00:00:00'),(118055,10,'L25.2 ','Unspecified contact dermatitis due to dyes','Y','0000-00-00 00:00:00'),(118053,10,'L25.0 ','Unspecified contact dermatitis due to cosmetics','Y','0000-00-00 00:00:00'),(118054,10,'L25.1 ','Unspecified contact dermatitis due to drugs in contact with skin','Y','0000-00-00 00:00:00'),(118052,10,'L24.B3 ','Irritant contact dermatitis related to fecal or urinary stoma or fistula','Y','0000-00-00 00:00:00'),(118051,10,'L24.B2 ','Irritant contact dermatitis related to respiratory stoma or fistula','Y','0000-00-00 00:00:00'),(118050,10,'L24.B1 ','Irritant contact dermatitis related to digestive stoma or fistula','Y','0000-00-00 00:00:00'),(118049,10,'L24.B0 ','Irritant contact dermatitis related to unspecified stoma or fistula','Y','0000-00-00 00:00:00'),(118048,10,'L24.A9 ','Irritant contact dermatitis due friction or contact with other specified body fluids','Y','0000-00-00 00:00:00'),(118046,10,'L24.A1 ','Irritant contact dermatitis due to saliva','Y','0000-00-00 00:00:00'),(118047,10,'L24.A2 ','Irritant contact dermatitis due to fecal, urinary or dual incontinence','Y','0000-00-00 00:00:00'),(118045,10,'L24.A0 ','Irritant contact dermatitis due to friction or contact with body fluids, unspecified','Y','0000-00-00 00:00:00'),(118044,10,'L24.9 ','Irritant contact dermatitis, unspecified cause','Y','0000-00-00 00:00:00'),(118043,10,'L24.89 ','Irritant contact dermatitis due to other agents','Y','0000-00-00 00:00:00'),(118041,10,'L24.7 ','Irritant contact dermatitis due to plants, except food','Y','0000-00-00 00:00:00'),(118042,10,'L24.81 ','Irritant contact dermatitis due to metals','Y','0000-00-00 00:00:00'),(118040,10,'L24.6 ','Irritant contact dermatitis due to food in contact with skin','Y','0000-00-00 00:00:00'),(118039,10,'L24.5 ','Irritant contact dermatitis due to other chemical products','Y','0000-00-00 00:00:00'),(118038,10,'L24.4 ','Irritant contact dermatitis due to drugs in contact with skin','Y','0000-00-00 00:00:00'),(118037,10,'L24.3 ','Irritant contact dermatitis due to cosmetics','Y','0000-00-00 00:00:00'),(118036,10,'L24.2 ','Irritant contact dermatitis due to solvents','Y','0000-00-00 00:00:00'),(118034,10,'L24.0 ','Irritant contact dermatitis due to detergents','Y','0000-00-00 00:00:00'),(118035,10,'L24.1 ','Irritant contact dermatitis due to oils and greases','Y','0000-00-00 00:00:00'),(118033,10,'L23.9 ','Allergic contact dermatitis, unspecified cause','Y','0000-00-00 00:00:00'),(118032,10,'L23.89 ','Allergic contact dermatitis due to other agents','Y','0000-00-00 00:00:00'),(118031,10,'L23.81 ','Allergic contact dermatitis due to animal (cat) (dog) dander','Y','0000-00-00 00:00:00'),(118030,10,'L23.7 ','Allergic contact dermatitis due to plants, except food','Y','0000-00-00 00:00:00'),(118029,10,'L23.6 ','Allergic contact dermatitis due to food in contact with the skin','Y','0000-00-00 00:00:00'),(118028,10,'L23.5 ','Allergic contact dermatitis due to other chemical products','Y','0000-00-00 00:00:00'),(118027,10,'L23.4 ','Allergic contact dermatitis due to dyes','Y','0000-00-00 00:00:00'),(118026,10,'L23.3 ','Allergic contact dermatitis due to drugs in contact with skin','Y','0000-00-00 00:00:00'),(118025,10,'L23.2 ','Allergic contact dermatitis due to cosmetics','Y','0000-00-00 00:00:00'),(118024,10,'L23.1 ','Allergic contact dermatitis due to adhesives','Y','0000-00-00 00:00:00'),(118023,10,'L23.0 ','Allergic contact dermatitis due to metals','Y','0000-00-00 00:00:00'),(118022,10,'L22','Diaper dermatitis','Y','0000-00-00 00:00:00'),(118021,10,'L21.9 ','Seborrheic dermatitis, unspecified','Y','0000-00-00 00:00:00'),(118019,10,'L21.1 ','Seborrheic infantile dermatitis','Y','0000-00-00 00:00:00'),(118020,10,'L21.8 ','Other seborrheic dermatitis','Y','0000-00-00 00:00:00'),(118018,10,'L21.0 ','Seborrhea capitis','Y','0000-00-00 00:00:00'),(118016,10,'L20.89 ','Other atopic dermatitis','Y','0000-00-00 00:00:00'),(118017,10,'L20.9 ','Atopic dermatitis, unspecified','Y','0000-00-00 00:00:00'),(118015,10,'L20.84 ','Intrinsic (allergic) eczema','Y','0000-00-00 00:00:00'),(118013,10,'L20.82 ','Flexural eczema','Y','0000-00-00 00:00:00'),(118014,10,'L20.83 ','Infantile (acute) (chronic) eczema','Y','0000-00-00 00:00:00'),(118012,10,'L20.81 ','Atopic neurodermatitis','Y','0000-00-00 00:00:00'),(118011,10,'L20.0 ','Besnier\'s prurigo','Y','0000-00-00 00:00:00'),(118010,10,'L14','Bullous disorders in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(118009,10,'L13.9 ','Bullous disorder, unspecified','Y','0000-00-00 00:00:00'),(118008,10,'L13.8 ','Other specified bullous disorders','Y','0000-00-00 00:00:00'),(118006,10,'L13.0 ','Dermatitis herpetiformis','Y','0000-00-00 00:00:00'),(118007,10,'L13.1 ','Subcorneal pustular dermatitis','Y','0000-00-00 00:00:00'),(118005,10,'L12.9 ','Pemphigoid, unspecified','Y','0000-00-00 00:00:00'),(118004,10,'L12.8 ','Other pemphigoid','Y','0000-00-00 00:00:00'),(118002,10,'L12.31 ','Epidermolysis bullosa due to drug','Y','0000-00-00 00:00:00'),(118003,10,'L12.35 ','Other acquired epidermolysis bullosa','Y','0000-00-00 00:00:00'),(118001,10,'L12.30 ','Acquired epidermolysis bullosa, unspecified','Y','0000-00-00 00:00:00'),(118000,10,'L12.2 ','Chronic bullous disease of childhood','Y','0000-00-00 00:00:00'),(117998,10,'L12.0 ','Bullous pemphigoid','Y','0000-00-00 00:00:00'),(117999,10,'L12.1 ','Cicatricial pemphigoid','Y','0000-00-00 00:00:00'),(117997,10,'L11.9 ','Acantholytic disorder, unspecified','Y','0000-00-00 00:00:00'),(117996,10,'L11.8 ','Other specified acantholytic disorders','Y','0000-00-00 00:00:00'),(117995,10,'L11.1 ','Transient acantholytic dermatosis [Grover]','Y','0000-00-00 00:00:00'),(117993,10,'L10.9 ','Pemphigus, unspecified','Y','0000-00-00 00:00:00'),(117994,10,'L11.0 ','Acquired keratosis follicularis','Y','0000-00-00 00:00:00'),(117992,10,'L10.89 ','Other pemphigus','Y','0000-00-00 00:00:00'),(117991,10,'L10.81 ','Paraneoplastic pemphigus','Y','0000-00-00 00:00:00'),(117989,10,'L10.4 ','Pemphigus erythematosus','Y','0000-00-00 00:00:00'),(117990,10,'L10.5 ','Drug-induced pemphigus','Y','0000-00-00 00:00:00'),(117988,10,'L10.3 ','Brazilian pemphigus [fogo selvagem]','Y','0000-00-00 00:00:00'),(117986,10,'L10.1 ','Pemphigus vegetans','Y','0000-00-00 00:00:00'),(117987,10,'L10.2 ','Pemphigus foliaceous','Y','0000-00-00 00:00:00'),(117985,10,'L10.0 ','Pemphigus vulgaris','Y','0000-00-00 00:00:00'),(117984,10,'L08.9 ','Local infection of the skin and subcutaneous tissue, unspecified','Y','0000-00-00 00:00:00'),(117983,10,'L08.89 ','Other specified local infections of the skin and subcutaneous tissue','Y','0000-00-00 00:00:00'),(117982,10,'L08.82 ','Omphalitis not of newborn','Y','0000-00-00 00:00:00'),(117981,10,'L08.81 ','Pyoderma vegetans','Y','0000-00-00 00:00:00'),(117980,10,'L08.1 ','Erythrasma','Y','0000-00-00 00:00:00'),(117979,10,'L08.0 ','Pyoderma','Y','0000-00-00 00:00:00'),(117978,10,'L05.92 ','Pilonidal sinus without abscess','Y','0000-00-00 00:00:00'),(117977,10,'L05.91 ','Pilonidal cyst without abscess','Y','0000-00-00 00:00:00'),(117976,10,'L05.02 ','Pilonidal sinus with abscess','Y','0000-00-00 00:00:00'),(117974,10,'L04.9 ','Acute lymphadenitis, unspecified','Y','0000-00-00 00:00:00'),(117975,10,'L05.01 ','Pilonidal cyst with abscess','Y','0000-00-00 00:00:00'),(117973,10,'L04.8 ','Acute lymphadenitis of other sites','Y','0000-00-00 00:00:00'),(117972,10,'L04.3 ','Acute lymphadenitis of lower limb','Y','0000-00-00 00:00:00'),(117971,10,'L04.2 ','Acute lymphadenitis of upper limb','Y','0000-00-00 00:00:00'),(117970,10,'L04.1 ','Acute lymphadenitis of trunk','Y','0000-00-00 00:00:00'),(117969,10,'L04.0 ','Acute lymphadenitis of face, head and neck','Y','0000-00-00 00:00:00'),(117968,10,'L03.91 ','Acute lymphangitis, unspecified','Y','0000-00-00 00:00:00'),(117967,10,'L03.90 ','Cellulitis, unspecified','Y','0000-00-00 00:00:00'),(117966,10,'L03.898 ','Acute lymphangitis of other sites','Y','0000-00-00 00:00:00'),(117965,10,'L03.891 ','Acute lymphangitis of head [any part, except face]','Y','0000-00-00 00:00:00'),(117964,10,'L03.818 ','Cellulitis of other sites','Y','0000-00-00 00:00:00'),(117963,10,'L03.811 ','Cellulitis of head [any part, except face]','Y','0000-00-00 00:00:00'),(117961,10,'L03.327 ','Acute lymphangitis of buttock','Y','0000-00-00 00:00:00'),(117962,10,'L03.329 ','Acute lymphangitis of trunk, unspecified','Y','0000-00-00 00:00:00'),(117959,10,'L03.325 ','Acute lymphangitis of perineum','Y','0000-00-00 00:00:00'),(117960,10,'L03.326 ','Acute lymphangitis of umbilicus','Y','0000-00-00 00:00:00'),(117958,10,'L03.324 ','Acute lymphangitis of groin','Y','0000-00-00 00:00:00'),(117956,10,'L03.322 ','Acute lymphangitis of back [any part except buttock]','Y','0000-00-00 00:00:00'),(117957,10,'L03.323 ','Acute lymphangitis of chest wall','Y','0000-00-00 00:00:00'),(117955,10,'L03.321 ','Acute lymphangitis of abdominal wall','Y','0000-00-00 00:00:00'),(117953,10,'L03.317 ','Cellulitis of buttock','Y','0000-00-00 00:00:00'),(117954,10,'L03.319 ','Cellulitis of trunk, unspecified','Y','0000-00-00 00:00:00'),(117951,10,'L03.315 ','Cellulitis of perineum','Y','0000-00-00 00:00:00'),(117952,10,'L03.316 ','Cellulitis of umbilicus','Y','0000-00-00 00:00:00'),(117950,10,'L03.314 ','Cellulitis of groin','Y','0000-00-00 00:00:00'),(117948,10,'L03.312 ','Cellulitis of back [any part except buttock]','Y','0000-00-00 00:00:00'),(117949,10,'L03.313 ','Cellulitis of chest wall','Y','0000-00-00 00:00:00'),(117947,10,'L03.311 ','Cellulitis of abdominal wall','Y','0000-00-00 00:00:00'),(117945,10,'L03.221 ','Cellulitis of neck','Y','0000-00-00 00:00:00'),(117946,10,'L03.222 ','Acute lymphangitis of neck','Y','0000-00-00 00:00:00'),(117943,10,'L03.212 ','Acute lymphangitis of face','Y','0000-00-00 00:00:00'),(117944,10,'L03.213 ','Periorbital cellulitis','Y','0000-00-00 00:00:00'),(117942,10,'L03.211 ','Cellulitis of face','Y','0000-00-00 00:00:00'),(117940,10,'L03.126 ','Acute lymphangitis of left lower limb','Y','0000-00-00 00:00:00'),(117941,10,'L03.129 ','Acute lymphangitis of unspecified part of limb','Y','0000-00-00 00:00:00'),(117939,10,'L03.125 ','Acute lymphangitis of right lower limb','Y','0000-00-00 00:00:00'),(117938,10,'L03.124 ','Acute lymphangitis of left upper limb','Y','0000-00-00 00:00:00'),(117936,10,'L03.122 ','Acute lymphangitis of left axilla','Y','0000-00-00 00:00:00'),(117937,10,'L03.123 ','Acute lymphangitis of right upper limb','Y','0000-00-00 00:00:00'),(117935,10,'L03.121 ','Acute lymphangitis of right axilla','Y','0000-00-00 00:00:00'),(117934,10,'L03.119 ','Cellulitis of unspecified part of limb','Y','0000-00-00 00:00:00'),(117933,10,'L03.116 ','Cellulitis of left lower limb','Y','0000-00-00 00:00:00'),(117932,10,'L03.115 ','Cellulitis of right lower limb','Y','0000-00-00 00:00:00'),(117930,10,'L03.113 ','Cellulitis of right upper limb','Y','0000-00-00 00:00:00'),(117931,10,'L03.114 ','Cellulitis of left upper limb','Y','0000-00-00 00:00:00'),(117929,10,'L03.112 ','Cellulitis of left axilla','Y','0000-00-00 00:00:00'),(117927,10,'L03.049 ','Acute lymphangitis of unspecified toe','Y','0000-00-00 00:00:00'),(117928,10,'L03.111 ','Cellulitis of right axilla','Y','0000-00-00 00:00:00'),(117926,10,'L03.042 ','Acute lymphangitis of left toe','Y','0000-00-00 00:00:00'),(117924,10,'L03.039 ','Cellulitis of unspecified toe','Y','0000-00-00 00:00:00'),(117925,10,'L03.041 ','Acute lymphangitis of right toe','Y','0000-00-00 00:00:00'),(117922,10,'L03.031 ','Cellulitis of right toe','Y','0000-00-00 00:00:00'),(117923,10,'L03.032 ','Cellulitis of left toe','Y','0000-00-00 00:00:00'),(117921,10,'L03.029 ','Acute lymphangitis of unspecified finger','Y','0000-00-00 00:00:00'),(117919,10,'L03.021 ','Acute lymphangitis of right finger','Y','0000-00-00 00:00:00'),(117920,10,'L03.022 ','Acute lymphangitis of left finger','Y','0000-00-00 00:00:00'),(117918,10,'L03.019 ','Cellulitis of unspecified finger','Y','0000-00-00 00:00:00'),(117916,10,'L03.011 ','Cellulitis of right finger','Y','0000-00-00 00:00:00'),(117917,10,'L03.012 ','Cellulitis of left finger','Y','0000-00-00 00:00:00'),(117915,10,'L02.93 ','Carbuncle, unspecified','Y','0000-00-00 00:00:00'),(117913,10,'L02.91 ','Cutaneous abscess, unspecified','Y','0000-00-00 00:00:00'),(117914,10,'L02.92 ','Furuncle, unspecified','Y','0000-00-00 00:00:00'),(117912,10,'L02.838 ','Carbuncle of other sites','Y','0000-00-00 00:00:00'),(117910,10,'L02.828 ','Furuncle of other sites','Y','0000-00-00 00:00:00'),(117911,10,'L02.831 ','Carbuncle of head [any part, except face]','Y','0000-00-00 00:00:00'),(117909,10,'L02.821 ','Furuncle of head [any part, except face]','Y','0000-00-00 00:00:00'),(117908,10,'L02.818 ','Cutaneous abscess of other sites','Y','0000-00-00 00:00:00'),(117907,10,'L02.811 ','Cutaneous abscess of head [any part, except face]','Y','0000-00-00 00:00:00'),(117905,10,'L02.632 ','Carbuncle of left foot','Y','0000-00-00 00:00:00'),(117906,10,'L02.639 ','Carbuncle of unspecified foot','Y','0000-00-00 00:00:00'),(117904,10,'L02.631 ','Carbuncle of right foot','Y','0000-00-00 00:00:00'),(117902,10,'L02.622 ','Furuncle of left foot','Y','0000-00-00 00:00:00'),(117903,10,'L02.629 ','Furuncle of unspecified foot','Y','0000-00-00 00:00:00'),(117901,10,'L02.621 ','Furuncle of right foot','Y','0000-00-00 00:00:00'),(117900,10,'L02.619 ','Cutaneous abscess of unspecified foot','Y','0000-00-00 00:00:00'),(117899,10,'L02.612 ','Cutaneous abscess of left foot','Y','0000-00-00 00:00:00'),(117898,10,'L02.611 ','Cutaneous abscess of right foot','Y','0000-00-00 00:00:00'),(117897,10,'L02.539 ','Carbuncle of unspecified hand','Y','0000-00-00 00:00:00'),(117896,10,'L02.532 ','Carbuncle of left hand','Y','0000-00-00 00:00:00'),(117894,10,'L02.529 ','Furuncle unspecified hand','Y','0000-00-00 00:00:00'),(117895,10,'L02.531 ','Carbuncle of right hand','Y','0000-00-00 00:00:00'),(117892,10,'L02.521 ','Furuncle right hand','Y','0000-00-00 00:00:00'),(117893,10,'L02.522 ','Furuncle left hand','Y','0000-00-00 00:00:00'),(117891,10,'L02.519 ','Cutaneous abscess of unspecified hand','Y','0000-00-00 00:00:00'),(117890,10,'L02.512 ','Cutaneous abscess of left hand','Y','0000-00-00 00:00:00'),(117888,10,'L02.439 ','Carbuncle of limb, unspecified','Y','0000-00-00 00:00:00'),(117889,10,'L02.511 ','Cutaneous abscess of right hand','Y','0000-00-00 00:00:00'),(117887,10,'L02.436 ','Carbuncle of left lower limb','Y','0000-00-00 00:00:00'),(117886,10,'L02.435 ','Carbuncle of right lower limb','Y','0000-00-00 00:00:00'),(117885,10,'L02.434 ','Carbuncle of left upper limb','Y','0000-00-00 00:00:00'),(117884,10,'L02.433 ','Carbuncle of right upper limb','Y','0000-00-00 00:00:00'),(117882,10,'L02.431 ','Carbuncle of right axilla','Y','0000-00-00 00:00:00'),(117883,10,'L02.432 ','Carbuncle of left axilla','Y','0000-00-00 00:00:00'),(117881,10,'L02.429 ','Furuncle of limb, unspecified','Y','0000-00-00 00:00:00'),(117880,10,'L02.426 ','Furuncle of left lower limb','Y','0000-00-00 00:00:00'),(117878,10,'L02.424 ','Furuncle of left upper limb','Y','0000-00-00 00:00:00'),(117879,10,'L02.425 ','Furuncle of right lower limb','Y','0000-00-00 00:00:00'),(117876,10,'L02.422 ','Furuncle of left axilla','Y','0000-00-00 00:00:00'),(117877,10,'L02.423 ','Furuncle of right upper limb','Y','0000-00-00 00:00:00'),(117875,10,'L02.421 ','Furuncle of right axilla','Y','0000-00-00 00:00:00'),(117874,10,'L02.419 ','Cutaneous abscess of limb, unspecified','Y','0000-00-00 00:00:00'),(117872,10,'L02.415 ','Cutaneous abscess of right lower limb','Y','0000-00-00 00:00:00'),(117873,10,'L02.416 ','Cutaneous abscess of left lower limb','Y','0000-00-00 00:00:00'),(117871,10,'L02.414 ','Cutaneous abscess of left upper limb','Y','0000-00-00 00:00:00'),(117870,10,'L02.413 ','Cutaneous abscess of right upper limb','Y','0000-00-00 00:00:00'),(117869,10,'L02.412 ','Cutaneous abscess of left axilla','Y','0000-00-00 00:00:00'),(117868,10,'L02.411 ','Cutaneous abscess of right axilla','Y','0000-00-00 00:00:00'),(117867,10,'L02.33 ','Carbuncle of buttock','Y','0000-00-00 00:00:00'),(117865,10,'L02.31 ','Cutaneous abscess of buttock','Y','0000-00-00 00:00:00'),(117866,10,'L02.32 ','Furuncle of buttock','Y','0000-00-00 00:00:00'),(117864,10,'L02.239 ','Carbuncle of trunk, unspecified','Y','0000-00-00 00:00:00'),(117862,10,'L02.235 ','Carbuncle of perineum','Y','0000-00-00 00:00:00'),(117863,10,'L02.236 ','Carbuncle of umbilicus','Y','0000-00-00 00:00:00'),(117861,10,'L02.234 ','Carbuncle of groin','Y','0000-00-00 00:00:00'),(117860,10,'L02.233 ','Carbuncle of chest wall','Y','0000-00-00 00:00:00'),(117858,10,'L02.231 ','Carbuncle of abdominal wall','Y','0000-00-00 00:00:00'),(117859,10,'L02.232 ','Carbuncle of back [any part, except buttock]','Y','0000-00-00 00:00:00'),(117857,10,'L02.229 ','Furuncle of trunk, unspecified','Y','0000-00-00 00:00:00'),(117855,10,'L02.225 ','Furuncle of perineum','Y','0000-00-00 00:00:00'),(117856,10,'L02.226 ','Furuncle of umbilicus','Y','0000-00-00 00:00:00'),(117854,10,'L02.224 ','Furuncle of groin','Y','0000-00-00 00:00:00'),(117853,10,'L02.223 ','Furuncle of chest wall','Y','0000-00-00 00:00:00'),(117852,10,'L02.222 ','Furuncle of back [any part, except buttock]','Y','0000-00-00 00:00:00'),(117851,10,'L02.221 ','Furuncle of abdominal wall','Y','0000-00-00 00:00:00'),(117849,10,'L02.216 ','Cutaneous abscess of umbilicus','Y','0000-00-00 00:00:00'),(117850,10,'L02.219 ','Cutaneous abscess of trunk, unspecified','Y','0000-00-00 00:00:00'),(117848,10,'L02.215 ','Cutaneous abscess of perineum','Y','0000-00-00 00:00:00'),(117847,10,'L02.214 ','Cutaneous abscess of groin','Y','0000-00-00 00:00:00'),(117846,10,'L02.213 ','Cutaneous abscess of chest wall','Y','0000-00-00 00:00:00'),(117845,10,'L02.212 ','Cutaneous abscess of back [any part, except buttock]','Y','0000-00-00 00:00:00'),(117843,10,'L02.13 ','Carbuncle of neck','Y','0000-00-00 00:00:00'),(117844,10,'L02.211 ','Cutaneous abscess of abdominal wall','Y','0000-00-00 00:00:00'),(117842,10,'L02.12 ','Furuncle of neck','Y','0000-00-00 00:00:00'),(117840,10,'L02.03 ','Carbuncle of face','Y','0000-00-00 00:00:00'),(117841,10,'L02.11 ','Cutaneous abscess of neck','Y','0000-00-00 00:00:00'),(117839,10,'L02.02 ','Furuncle of face','Y','0000-00-00 00:00:00'),(117838,10,'L02.01 ','Cutaneous abscess of face','Y','0000-00-00 00:00:00'),(117837,10,'L01.1 ','Impetiginization of other dermatoses','Y','0000-00-00 00:00:00'),(117836,10,'L01.09 ','Other impetigo','Y','0000-00-00 00:00:00'),(117834,10,'L01.02 ','Bockhart\'s impetigo','Y','0000-00-00 00:00:00'),(117835,10,'L01.03 ','Bullous impetigo','Y','0000-00-00 00:00:00'),(117833,10,'L01.01 ','Non-bullous impetigo','Y','0000-00-00 00:00:00'),(117831,10,'L00','Staphylococcal scalded skin syndrome','Y','0000-00-00 00:00:00'),(117832,10,'L01.00 ','Impetigo, unspecified','Y','0000-00-00 00:00:00'),(117830,10,'K95.89 ','Other complications of other bariatric procedure','Y','0000-00-00 00:00:00'),(117829,10,'K95.81 ','Infection due to other bariatric procedure','Y','0000-00-00 00:00:00'),(117828,10,'K95.09 ','Other complications of gastric band procedure','Y','0000-00-00 00:00:00'),(117827,10,'K95.01 ','Infection due to gastric band procedure','Y','0000-00-00 00:00:00'),(117825,10,'K94.33 ','Esophagostomy malfunction','Y','0000-00-00 00:00:00'),(117826,10,'K94.39 ','Other complications of esophagostomy','Y','0000-00-00 00:00:00'),(117824,10,'K94.32 ','Esophagostomy infection','Y','0000-00-00 00:00:00'),(117823,10,'K94.31 ','Esophagostomy hemorrhage','Y','0000-00-00 00:00:00'),(117822,10,'K94.30 ','Esophagostomy complications, unspecified','Y','0000-00-00 00:00:00'),(117820,10,'K94.23 ','Gastrostomy malfunction','Y','0000-00-00 00:00:00'),(117821,10,'K94.29 ','Other complications of gastrostomy','Y','0000-00-00 00:00:00'),(117819,10,'K94.22 ','Gastrostomy infection','Y','0000-00-00 00:00:00'),(117818,10,'K94.21 ','Gastrostomy hemorrhage','Y','0000-00-00 00:00:00'),(117816,10,'K94.19 ','Other complications of enterostomy','Y','0000-00-00 00:00:00'),(117817,10,'K94.20 ','Gastrostomy complication, unspecified','Y','0000-00-00 00:00:00'),(117814,10,'K94.12 ','Enterostomy infection','Y','0000-00-00 00:00:00'),(117815,10,'K94.13 ','Enterostomy malfunction','Y','0000-00-00 00:00:00'),(117813,10,'K94.11 ','Enterostomy hemorrhage','Y','0000-00-00 00:00:00'),(117811,10,'K94.09 ','Other complications of colostomy','Y','0000-00-00 00:00:00'),(117812,10,'K94.10 ','Enterostomy complication, unspecified','Y','0000-00-00 00:00:00'),(117810,10,'K94.03 ','Colostomy malfunction','Y','0000-00-00 00:00:00'),(117808,10,'K94.01 ','Colostomy hemorrhage','Y','0000-00-00 00:00:00'),(117809,10,'K94.02 ','Colostomy infection','Y','0000-00-00 00:00:00'),(117807,10,'K94.00 ','Colostomy complication, unspecified','Y','0000-00-00 00:00:00'),(117806,10,'K92.9 ','Disease of digestive system, unspecified','Y','0000-00-00 00:00:00'),(117805,10,'K92.89 ','Other specified diseases of the digestive system','Y','0000-00-00 00:00:00'),(117804,10,'K92.81 ','Gastrointestinal mucositis (ulcerative)','Y','0000-00-00 00:00:00'),(117802,10,'K92.1 ','Melena','Y','0000-00-00 00:00:00'),(117803,10,'K92.2 ','Gastrointestinal hemorrhage, unspecified','Y','0000-00-00 00:00:00'),(117801,10,'K92.0 ','Hematemesis','Y','0000-00-00 00:00:00'),(117800,10,'K91.89 ','Other postprocedural complications and disorders of digestive system','Y','0000-00-00 00:00:00'),(117799,10,'K91.873 ','Postprocedural seroma of a digestive system organ or structure following other procedure','Y','0000-00-00 00:00:00'),(117798,10,'K91.872 ','Postprocedural seroma of a digestive system organ or structure following a digestive system procedure','Y','0000-00-00 00:00:00'),(117797,10,'K91.871 ','Postprocedural hematoma of a digestive system organ or structure following other procedure','Y','0000-00-00 00:00:00'),(117796,10,'K91.870 ','Postprocedural hematoma of a digestive system organ or structure following a digestive system procedure','Y','0000-00-00 00:00:00'),(117795,10,'K91.86 ','Retained cholelithiasis following cholecystectomy','Y','0000-00-00 00:00:00'),(117794,10,'K91.858 ','Other complications of intestinal pouch','Y','0000-00-00 00:00:00'),(117793,10,'K91.850 ','Pouchitis','Y','0000-00-00 00:00:00'),(117792,10,'K91.841 ','Postprocedural hemorrhage of a digestive system organ or structure following other procedure','Y','0000-00-00 00:00:00'),(117791,10,'K91.840 ','Postprocedural hemorrhage of a digestive system organ or structure following a digestive system procedure','Y','0000-00-00 00:00:00'),(117789,10,'K91.82 ','Postprocedural hepatic failure','Y','0000-00-00 00:00:00'),(117790,10,'K91.83 ','Postprocedural hepatorenal syndrome','Y','0000-00-00 00:00:00'),(117788,10,'K91.81 ','Other intraoperative complications of digestive system','Y','0000-00-00 00:00:00'),(117787,10,'K91.72 ','Accidental puncture and laceration of a digestive system organ or structure during other procedure','Y','0000-00-00 00:00:00'),(117786,10,'K91.71 ','Accidental puncture and laceration of a digestive system organ or structure during a digestive system procedure','Y','0000-00-00 00:00:00'),(117785,10,'K91.62 ','Intraoperative hemorrhage and hematoma of a digestive system organ or structure complicating other procedure','Y','0000-00-00 00:00:00'),(117783,10,'K91.5 ','Postcholecystectomy syndrome','Y','0000-00-00 00:00:00'),(117784,10,'K91.61 ','Intraoperative hemorrhage and hematoma of a digestive system organ or structure complicating a digestive system procedure','Y','0000-00-00 00:00:00'),(117782,10,'K91.32 ','Postprocedural complete intestinal obstruction','Y','0000-00-00 00:00:00'),(117781,10,'K91.31 ','Postprocedural partial intestinal obstruction','Y','0000-00-00 00:00:00'),(117780,10,'K91.30 ','Postprocedural intestinal obstruction, unspecified as to partial versus complete','Y','0000-00-00 00:00:00'),(117778,10,'K91.1 ','Postgastric surgery syndromes','Y','0000-00-00 00:00:00'),(117779,10,'K91.2 ','Postsurgical malabsorption, not elsewhere classified','Y','0000-00-00 00:00:00'),(117777,10,'K91.0 ','Vomiting following gastrointestinal surgery','Y','0000-00-00 00:00:00'),(117776,10,'K90.9 ','Intestinal malabsorption, unspecified','Y','0000-00-00 00:00:00'),(117774,10,'K90.83 ','Intestinal failure','Y','0000-00-00 00:00:00'),(117775,10,'K90.89 ','Other intestinal malabsorption','Y','0000-00-00 00:00:00'),(117773,10,'K90.829 ','Short bowel syndrome, unspecified','Y','0000-00-00 00:00:00'),(117772,10,'K90.822 ','Short bowel syndrome without colon in continuity','Y','0000-00-00 00:00:00'),(117770,10,'K90.81 ','Whipple\'s disease','Y','0000-00-00 00:00:00'),(117771,10,'K90.821 ','Short bowel syndrome with colon in continuity','Y','0000-00-00 00:00:00'),(117769,10,'K90.49 ','Malabsorption due to intolerance, not elsewhere classified','Y','0000-00-00 00:00:00'),(117768,10,'K90.41 ','Non-celiac gluten sensitivity','Y','0000-00-00 00:00:00'),(117766,10,'K90.2 ','Blind loop syndrome, not elsewhere classified','Y','0000-00-00 00:00:00'),(117767,10,'K90.3 ','Pancreatic steatorrhea','Y','0000-00-00 00:00:00'),(117764,10,'K90.0 ','Celiac disease','Y','0000-00-00 00:00:00'),(117765,10,'K90.1 ','Tropical sprue','Y','0000-00-00 00:00:00'),(117763,10,'K87','Disorders of gallbladder, biliary tract and pancreas in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(117762,10,'K86.9 ','Disease of pancreas, unspecified','Y','0000-00-00 00:00:00'),(117760,10,'K86.81 ','Exocrine pancreatic insufficiency','Y','0000-00-00 00:00:00'),(117761,10,'K86.89 ','Other specified diseases of pancreas','Y','0000-00-00 00:00:00'),(117758,10,'K86.2 ','Cyst of pancreas','Y','0000-00-00 00:00:00'),(117759,10,'K86.3 ','Pseudocyst of pancreas','Y','0000-00-00 00:00:00'),(117757,10,'K86.1 ','Other chronic pancreatitis','Y','0000-00-00 00:00:00'),(117756,10,'K86.0 ','Alcohol-induced chronic pancreatitis','Y','0000-00-00 00:00:00'),(117755,10,'K85.92 ','Acute pancreatitis with infected necrosis, unspecified','Y','0000-00-00 00:00:00'),(117754,10,'K85.91 ','Acute pancreatitis with uninfected necrosis, unspecified','Y','0000-00-00 00:00:00'),(117752,10,'K85.82 ','Other acute pancreatitis with infected necrosis','Y','0000-00-00 00:00:00'),(117753,10,'K85.90 ','Acute pancreatitis without necrosis or infection, unspecified','Y','0000-00-00 00:00:00'),(117751,10,'K85.81 ','Other acute pancreatitis with uninfected necrosis','Y','0000-00-00 00:00:00'),(117750,10,'K85.80 ','Other acute pancreatitis without necrosis or infection','Y','0000-00-00 00:00:00'),(117749,10,'K85.32 ','Drug induced acute pancreatitis with infected necrosis','Y','0000-00-00 00:00:00'),(117748,10,'K85.31 ','Drug induced acute pancreatitis with uninfected necrosis','Y','0000-00-00 00:00:00'),(117747,10,'K85.30 ','Drug induced acute pancreatitis without necrosis or infection','Y','0000-00-00 00:00:00'),(117746,10,'K85.22 ','Alcohol induced acute pancreatitis with infected necrosis','Y','0000-00-00 00:00:00'),(117745,10,'K85.21 ','Alcohol induced acute pancreatitis with uninfected necrosis','Y','0000-00-00 00:00:00'),(117744,10,'K85.20 ','Alcohol induced acute pancreatitis without necrosis or infection','Y','0000-00-00 00:00:00'),(117743,10,'K85.12 ','Biliary acute pancreatitis with infected necrosis','Y','0000-00-00 00:00:00'),(117742,10,'K85.11 ','Biliary acute pancreatitis with uninfected necrosis','Y','0000-00-00 00:00:00'),(117741,10,'K85.10 ','Biliary acute pancreatitis without necrosis or infection','Y','0000-00-00 00:00:00'),(117740,10,'K85.02 ','Idiopathic acute pancreatitis with infected necrosis','Y','0000-00-00 00:00:00'),(117739,10,'K85.01 ','Idiopathic acute pancreatitis with uninfected necrosis','Y','0000-00-00 00:00:00'),(117738,10,'K85.00 ','Idiopathic acute pancreatitis without necrosis or infection','Y','0000-00-00 00:00:00'),(117737,10,'K83.9 ','Disease of biliary tract, unspecified','Y','0000-00-00 00:00:00'),(117736,10,'K83.8 ','Other specified diseases of biliary tract','Y','0000-00-00 00:00:00'),(117734,10,'K83.4 ','Spasm of sphincter of Oddi','Y','0000-00-00 00:00:00'),(117735,10,'K83.5 ','Biliary cyst','Y','0000-00-00 00:00:00'),(117733,10,'K83.3 ','Fistula of bile duct','Y','0000-00-00 00:00:00'),(117732,10,'K83.2 ','Perforation of bile duct','Y','0000-00-00 00:00:00'),(117730,10,'K83.09 ','Other cholangitis','Y','0000-00-00 00:00:00'),(117731,10,'K83.1 ','Obstruction of bile duct','Y','0000-00-00 00:00:00'),(117729,10,'K83.01 ','Primary sclerosing cholangitis','Y','0000-00-00 00:00:00'),(117728,10,'K82.A2 ','Perforation of gallbladder in cholecystitis','Y','0000-00-00 00:00:00'),(117727,10,'K82.A1 ','Gangrene of gallbladder in cholecystitis','Y','0000-00-00 00:00:00'),(117726,10,'K82.9 ','Disease of gallbladder, unspecified','Y','0000-00-00 00:00:00'),(117725,10,'K82.8 ','Other specified diseases of gallbladder','Y','0000-00-00 00:00:00'),(117723,10,'K82.3 ','Fistula of gallbladder','Y','0000-00-00 00:00:00'),(117724,10,'K82.4 ','Cholesterolosis of gallbladder','Y','0000-00-00 00:00:00'),(117722,10,'K82.2 ','Perforation of gallbladder','Y','0000-00-00 00:00:00'),(117721,10,'K82.1 ','Hydrops of gallbladder','Y','0000-00-00 00:00:00'),(117719,10,'K81.9 ','Cholecystitis, unspecified','Y','0000-00-00 00:00:00'),(117720,10,'K82.0 ','Obstruction of gallbladder','Y','0000-00-00 00:00:00'),(117718,10,'K81.2 ','Acute cholecystitis with chronic cholecystitis','Y','0000-00-00 00:00:00'),(117717,10,'K81.1 ','Chronic cholecystitis','Y','0000-00-00 00:00:00'),(117716,10,'K81.0 ','Acute cholecystitis','Y','0000-00-00 00:00:00'),(117715,10,'K80.81 ','Other cholelithiasis with obstruction','Y','0000-00-00 00:00:00'),(117714,10,'K80.80 ','Other cholelithiasis without obstruction','Y','0000-00-00 00:00:00'),(117713,10,'K80.71 ','Calculus of gallbladder and bile duct without cholecystitis with obstruction','Y','0000-00-00 00:00:00'),(117712,10,'K80.70 ','Calculus of gallbladder and bile duct without cholecystitis without obstruction','Y','0000-00-00 00:00:00'),(117711,10,'K80.67 ','Calculus of gallbladder and bile duct with acute and chronic cholecystitis with obstruction','Y','0000-00-00 00:00:00'),(117710,10,'K80.66 ','Calculus of gallbladder and bile duct with acute and chronic cholecystitis without obstruction','Y','0000-00-00 00:00:00'),(117709,10,'K80.65 ','Calculus of gallbladder and bile duct with chronic cholecystitis with obstruction','Y','0000-00-00 00:00:00'),(117708,10,'K80.64 ','Calculus of gallbladder and bile duct with chronic cholecystitis without obstruction','Y','0000-00-00 00:00:00'),(117707,10,'K80.63 ','Calculus of gallbladder and bile duct with acute cholecystitis with obstruction','Y','0000-00-00 00:00:00'),(117706,10,'K80.62 ','Calculus of gallbladder and bile duct with acute cholecystitis without obstruction','Y','0000-00-00 00:00:00'),(117705,10,'K80.61 ','Calculus of gallbladder and bile duct with cholecystitis, unspecified, with obstruction','Y','0000-00-00 00:00:00'),(117704,10,'K80.60 ','Calculus of gallbladder and bile duct with cholecystitis, unspecified, without obstruction','Y','0000-00-00 00:00:00'),(117703,10,'K80.51 ','Calculus of bile duct without cholangitis or cholecystitis with obstruction','Y','0000-00-00 00:00:00'),(117702,10,'K80.50 ','Calculus of bile duct without cholangitis or cholecystitis without obstruction','Y','0000-00-00 00:00:00'),(117701,10,'K80.47 ','Calculus of bile duct with acute and chronic cholecystitis with obstruction','Y','0000-00-00 00:00:00'),(117700,10,'K80.46 ','Calculus of bile duct with acute and chronic cholecystitis without obstruction','Y','0000-00-00 00:00:00'),(117699,10,'K80.45 ','Calculus of bile duct with chronic cholecystitis with obstruction','Y','0000-00-00 00:00:00'),(117698,10,'K80.44 ','Calculus of bile duct with chronic cholecystitis without obstruction','Y','0000-00-00 00:00:00'),(117697,10,'K80.43 ','Calculus of bile duct with acute cholecystitis with obstruction','Y','0000-00-00 00:00:00'),(117696,10,'K80.42 ','Calculus of bile duct with acute cholecystitis without obstruction','Y','0000-00-00 00:00:00'),(117695,10,'K80.41 ','Calculus of bile duct with cholecystitis, unspecified, with obstruction','Y','0000-00-00 00:00:00'),(117694,10,'K80.40 ','Calculus of bile duct with cholecystitis, unspecified, without obstruction','Y','0000-00-00 00:00:00'),(117693,10,'K80.37 ','Calculus of bile duct with acute and chronic cholangitis with obstruction','Y','0000-00-00 00:00:00'),(117692,10,'K80.36 ','Calculus of bile duct with acute and chronic cholangitis without obstruction','Y','0000-00-00 00:00:00'),(117691,10,'K80.35 ','Calculus of bile duct with chronic cholangitis with obstruction','Y','0000-00-00 00:00:00'),(117690,10,'K80.34 ','Calculus of bile duct with chronic cholangitis without obstruction','Y','0000-00-00 00:00:00'),(117689,10,'K80.33 ','Calculus of bile duct with acute cholangitis with obstruction','Y','0000-00-00 00:00:00'),(117688,10,'K80.32 ','Calculus of bile duct with acute cholangitis without obstruction','Y','0000-00-00 00:00:00'),(117687,10,'K80.31 ','Calculus of bile duct with cholangitis, unspecified, with obstruction','Y','0000-00-00 00:00:00'),(117686,10,'K80.30 ','Calculus of bile duct with cholangitis, unspecified, without obstruction','Y','0000-00-00 00:00:00'),(117685,10,'K80.21 ','Calculus of gallbladder without cholecystitis with obstruction','Y','0000-00-00 00:00:00'),(117684,10,'K80.20 ','Calculus of gallbladder without cholecystitis without obstruction','Y','0000-00-00 00:00:00'),(117683,10,'K80.19 ','Calculus of gallbladder with other cholecystitis with obstruction','Y','0000-00-00 00:00:00'),(117682,10,'K80.18 ','Calculus of gallbladder with other cholecystitis without obstruction','Y','0000-00-00 00:00:00'),(117681,10,'K80.13 ','Calculus of gallbladder with acute and chronic cholecystitis with obstruction','Y','0000-00-00 00:00:00'),(117680,10,'K80.12 ','Calculus of gallbladder with acute and chronic cholecystitis without obstruction','Y','0000-00-00 00:00:00'),(117679,10,'K80.11 ','Calculus of gallbladder with chronic cholecystitis with obstruction','Y','0000-00-00 00:00:00'),(117678,10,'K80.10 ','Calculus of gallbladder with chronic cholecystitis without obstruction','Y','0000-00-00 00:00:00'),(117677,10,'K80.01 ','Calculus of gallbladder with acute cholecystitis with obstruction','Y','0000-00-00 00:00:00'),(117676,10,'K80.00 ','Calculus of gallbladder with acute cholecystitis without obstruction','Y','0000-00-00 00:00:00'),(117675,10,'K77','Liver disorders in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(117674,10,'K76.9 ','Liver disease, unspecified','Y','0000-00-00 00:00:00'),(117672,10,'K76.82 ','Hepatic encephalopathy','Y','0000-00-00 00:00:00'),(117673,10,'K76.89 ','Other specified diseases of liver','Y','0000-00-00 00:00:00'),(117670,10,'K76.7 ','Hepatorenal syndrome','Y','0000-00-00 00:00:00'),(117671,10,'K76.81 ','Hepatopulmonary syndrome','Y','0000-00-00 00:00:00'),(117669,10,'K76.6 ','Portal hypertension','Y','0000-00-00 00:00:00'),(117667,10,'K76.4 ','Peliosis hepatis','Y','0000-00-00 00:00:00'),(117668,10,'K76.5 ','Hepatic veno-occlusive disease','Y','0000-00-00 00:00:00'),(117665,10,'K76.2 ','Central hemorrhagic necrosis of liver','Y','0000-00-00 00:00:00'),(117666,10,'K76.3 ','Infarction of liver','Y','0000-00-00 00:00:00'),(117664,10,'K76.1 ','Chronic passive congestion of liver','Y','0000-00-00 00:00:00'),(117663,10,'K76.0 ','Fatty (change of) liver, not elsewhere classified','Y','0000-00-00 00:00:00'),(117662,10,'K75.9 ','Inflammatory liver disease, unspecified','Y','0000-00-00 00:00:00'),(117661,10,'K75.89 ','Other specified inflammatory liver diseases','Y','0000-00-00 00:00:00'),(117659,10,'K75.4 ','Autoimmune hepatitis','Y','0000-00-00 00:00:00'),(117660,10,'K75.81 ','Nonalcoholic steatohepatitis (NASH)','Y','0000-00-00 00:00:00'),(117658,10,'K75.3 ','Granulomatous hepatitis, not elsewhere classified','Y','0000-00-00 00:00:00'),(117657,10,'K75.2 ','Nonspecific reactive hepatitis','Y','0000-00-00 00:00:00'),(117655,10,'K75.0 ','Abscess of liver','Y','0000-00-00 00:00:00'),(117656,10,'K75.1 ','Phlebitis of portal vein','Y','0000-00-00 00:00:00'),(117654,10,'K74.69 ','Other cirrhosis of liver','Y','0000-00-00 00:00:00'),(117652,10,'K74.5 ','Biliary cirrhosis, unspecified','Y','0000-00-00 00:00:00'),(117653,10,'K74.60 ','Unspecified cirrhosis of liver','Y','0000-00-00 00:00:00'),(117651,10,'K74.4 ','Secondary biliary cirrhosis','Y','0000-00-00 00:00:00'),(117649,10,'K74.2 ','Hepatic fibrosis with hepatic sclerosis','Y','0000-00-00 00:00:00'),(117650,10,'K74.3 ','Primary biliary cirrhosis','Y','0000-00-00 00:00:00'),(117648,10,'K74.1 ','Hepatic sclerosis','Y','0000-00-00 00:00:00'),(117647,10,'K74.02 ','Hepatic fibrosis, advanced fibrosis','Y','0000-00-00 00:00:00'),(117645,10,'K74.00 ','Hepatic fibrosis, unspecified','Y','0000-00-00 00:00:00'),(117646,10,'K74.01 ','Hepatic fibrosis, early fibrosis','Y','0000-00-00 00:00:00'),(117644,10,'K73.9 ','Chronic hepatitis, unspecified','Y','0000-00-00 00:00:00'),(117643,10,'K73.8 ','Other chronic hepatitis, not elsewhere classified','Y','0000-00-00 00:00:00'),(117642,10,'K73.2 ','Chronic active hepatitis, not elsewhere classified','Y','0000-00-00 00:00:00'),(117641,10,'K73.1 ','Chronic lobular hepatitis, not elsewhere classified','Y','0000-00-00 00:00:00'),(117640,10,'K73.0 ','Chronic persistent hepatitis, not elsewhere classified','Y','0000-00-00 00:00:00'),(117639,10,'K72.91 ','Hepatic failure, unspecified with coma','Y','0000-00-00 00:00:00'),(117638,10,'K72.90 ','Hepatic failure, unspecified without coma','Y','0000-00-00 00:00:00'),(117636,10,'K72.10 ','Chronic hepatic failure without coma','Y','0000-00-00 00:00:00'),(117637,10,'K72.11 ','Chronic hepatic failure with coma','Y','0000-00-00 00:00:00'),(117635,10,'K72.01 ','Acute and subacute hepatic failure with coma','Y','0000-00-00 00:00:00'),(117634,10,'K72.00 ','Acute and subacute hepatic failure without coma','Y','0000-00-00 00:00:00'),(117633,10,'K71.9 ','Toxic liver disease, unspecified','Y','0000-00-00 00:00:00'),(117632,10,'K71.8 ','Toxic liver disease with other disorders of liver','Y','0000-00-00 00:00:00'),(117631,10,'K71.7 ','Toxic liver disease with fibrosis and cirrhosis of liver','Y','0000-00-00 00:00:00'),(117630,10,'K71.6 ','Toxic liver disease with hepatitis, not elsewhere classified','Y','0000-00-00 00:00:00'),(117629,10,'K71.51 ','Toxic liver disease with chronic active hepatitis with ascites','Y','0000-00-00 00:00:00'),(117628,10,'K71.50 ','Toxic liver disease with chronic active hepatitis without ascites','Y','0000-00-00 00:00:00'),(117627,10,'K71.4 ','Toxic liver disease with chronic lobular hepatitis','Y','0000-00-00 00:00:00'),(117626,10,'K71.3 ','Toxic liver disease with chronic persistent hepatitis','Y','0000-00-00 00:00:00'),(117625,10,'K71.2 ','Toxic liver disease with acute hepatitis','Y','0000-00-00 00:00:00'),(117624,10,'K71.11 ','Toxic liver disease with hepatic necrosis, with coma','Y','0000-00-00 00:00:00'),(117623,10,'K71.10 ','Toxic liver disease with hepatic necrosis, without coma','Y','0000-00-00 00:00:00'),(117622,10,'K71.0 ','Toxic liver disease with cholestasis','Y','0000-00-00 00:00:00'),(117621,10,'K70.9 ','Alcoholic liver disease, unspecified','Y','0000-00-00 00:00:00'),(117620,10,'K70.41 ','Alcoholic hepatic failure with coma','Y','0000-00-00 00:00:00'),(117619,10,'K70.40 ','Alcoholic hepatic failure without coma','Y','0000-00-00 00:00:00'),(117618,10,'K70.31 ','Alcoholic cirrhosis of liver with ascites','Y','0000-00-00 00:00:00'),(117617,10,'K70.30 ','Alcoholic cirrhosis of liver without ascites','Y','0000-00-00 00:00:00'),(117616,10,'K70.2 ','Alcoholic fibrosis and sclerosis of liver','Y','0000-00-00 00:00:00'),(117614,10,'K70.10 ','Alcoholic hepatitis without ascites','Y','0000-00-00 00:00:00'),(117615,10,'K70.11 ','Alcoholic hepatitis with ascites','Y','0000-00-00 00:00:00'),(117612,10,'K68.9 ','Other disorders of retroperitoneum','Y','0000-00-00 00:00:00'),(117613,10,'K70.0 ','Alcoholic fatty liver','Y','0000-00-00 00:00:00'),(117610,10,'K68.2 ','Retroperitoneal fibrosis','Y','0000-00-00 00:00:00'),(117611,10,'K68.3 ','Retroperitoneal hematoma','Y','0000-00-00 00:00:00'),(117608,10,'K68.12 ','Psoas muscle abscess','Y','0000-00-00 00:00:00'),(117609,10,'K68.19 ','Other retroperitoneal abscess','Y','0000-00-00 00:00:00'),(117607,10,'K68.11 ','Postprocedural retroperitoneal abscess','Y','0000-00-00 00:00:00'),(117606,10,'K67','Disorders of peritoneum in infectious diseases classified elsewhere','Y','0000-00-00 00:00:00'),(117604,10,'K66.8 ','Other specified disorders of peritoneum','Y','0000-00-00 00:00:00'),(117605,10,'K66.9 ','Disorder of peritoneum, unspecified','Y','0000-00-00 00:00:00'),(117603,10,'K66.1 ','Hemoperitoneum','Y','0000-00-00 00:00:00'),(117601,10,'K65.9 ','Peritonitis, unspecified','Y','0000-00-00 00:00:00'),(117602,10,'K66.0 ','Peritoneal adhesions (postprocedural) (postinfection)','Y','0000-00-00 00:00:00'),(117599,10,'K65.4 ','Sclerosing mesenteritis','Y','0000-00-00 00:00:00'),(117600,10,'K65.8 ','Other peritonitis','Y','0000-00-00 00:00:00'),(117598,10,'K65.3 ','Choleperitonitis','Y','0000-00-00 00:00:00'),(117596,10,'K65.1 ','Peritoneal abscess','Y','0000-00-00 00:00:00'),(117597,10,'K65.2 ','Spontaneous bacterial peritonitis','Y','0000-00-00 00:00:00'),(117595,10,'K65.0 ','Generalized (acute) peritonitis','Y','0000-00-00 00:00:00'),(117593,10,'K64.8 ','Other hemorrhoids','Y','0000-00-00 00:00:00'),(117594,10,'K64.9 ','Unspecified hemorrhoids','Y','0000-00-00 00:00:00'),(117591,10,'K64.4 ','Residual hemorrhoidal skin tags','Y','0000-00-00 00:00:00'),(117592,10,'K64.5 ','Perianal venous thrombosis','Y','0000-00-00 00:00:00'),(117589,10,'K64.2 ','Third degree hemorrhoids','Y','0000-00-00 00:00:00'),(117590,10,'K64.3 ','Fourth degree hemorrhoids','Y','0000-00-00 00:00:00'),(117587,10,'K64.0 ','First degree hemorrhoids','Y','0000-00-00 00:00:00'),(117588,10,'K64.1 ','Second degree hemorrhoids','Y','0000-00-00 00:00:00'),(117586,10,'K63.9 ','Disease of intestine, unspecified','Y','0000-00-00 00:00:00'),(117585,10,'K63.89 ','Other specified diseases of intestine','Y','0000-00-00 00:00:00'),(117583,10,'K63.822 ','Small intestinal fungal overgrowth','Y','0000-00-00 00:00:00'),(117584,10,'K63.829 ','Intestinal methanogen overgrowth, unspecified','Y','0000-00-00 00:00:00'),(117582,10,'K63.8219 ','Small intestinal bacterial overgrowth, unspecified','Y','0000-00-00 00:00:00'),(117581,10,'K63.8212 ','Small intestinal bacterial overgrowth, hydrogen sulfide-subtype','Y','0000-00-00 00:00:00'),(117580,10,'K63.8211 ','Small intestinal bacterial overgrowth, hydrogen-subtype','Y','0000-00-00 00:00:00'),(117579,10,'K63.81 ','Dieulafoy lesion of intestine','Y','0000-00-00 00:00:00'),(117577,10,'K63.4 ','Enteroptosis','Y','0000-00-00 00:00:00'),(117578,10,'K63.5 ','Polyp of colon','Y','0000-00-00 00:00:00'),(117575,10,'K63.2 ','Fistula of intestine','Y','0000-00-00 00:00:00'),(117576,10,'K63.3 ','Ulcer of intestine','Y','0000-00-00 00:00:00'),(117573,10,'K63.0 ','Abscess of intestine','Y','0000-00-00 00:00:00'),(117574,10,'K63.1 ','Perforation of intestine (nontraumatic)','Y','0000-00-00 00:00:00'),(117572,10,'K62.9 ','Disease of anus and rectum, unspecified','Y','0000-00-00 00:00:00'),(117570,10,'K62.82 ','Dysplasia of anus','Y','0000-00-00 00:00:00'),(117571,10,'K62.89 ','Other specified diseases of anus and rectum','Y','0000-00-00 00:00:00'),(117569,10,'K62.81 ','Anal sphincter tear (healed) (nontraumatic) (old)','Y','0000-00-00 00:00:00'),(117567,10,'K62.6 ','Ulcer of anus and rectum','Y','0000-00-00 00:00:00'),(117568,10,'K62.7 ','Radiation proctitis','Y','0000-00-00 00:00:00'),(117566,10,'K62.5 ','Hemorrhage of anus and rectum','Y','0000-00-00 00:00:00'),(117564,10,'K62.3 ','Rectal prolapse','Y','0000-00-00 00:00:00'),(117565,10,'K62.4 ','Stenosis of anus and rectum','Y','0000-00-00 00:00:00'),(117562,10,'K62.1 ','Rectal polyp','Y','0000-00-00 00:00:00'),(117563,10,'K62.2 ','Anal prolapse','Y','0000-00-00 00:00:00'),(117561,10,'K62.0 ','Anal polyp','Y','0000-00-00 00:00:00'),(117559,10,'K61.4 ','Intrasphincteric abscess','Y','0000-00-00 00:00:00'),(117560,10,'K61.5 ','Supralevator abscess','Y','0000-00-00 00:00:00'),(117557,10,'K61.31 ','Horseshoe abscess','Y','0000-00-00 00:00:00'),(117558,10,'K61.39 ','Other ischiorectal abscess','Y','0000-00-00 00:00:00'),(117555,10,'K61.1 ','Rectal abscess','Y','0000-00-00 00:00:00'),(117556,10,'K61.2 ','Anorectal abscess','Y','0000-00-00 00:00:00'),(117553,10,'K60.5 ','Anorectal fistula','Y','0000-00-00 00:00:00'),(117554,10,'K61.0 ','Anal abscess','Y','0000-00-00 00:00:00'),(117551,10,'K60.3 ','Anal fistula','Y','0000-00-00 00:00:00'),(117552,10,'K60.4 ','Rectal fistula','Y','0000-00-00 00:00:00'),(117549,10,'K60.1 ','Chronic anal fissure','Y','0000-00-00 00:00:00'),(117550,10,'K60.2 ','Anal fissure, unspecified','Y','0000-00-00 00:00:00'),(117548,10,'K60.0 ','Acute anal fissure','Y','0000-00-00 00:00:00'),(117547,10,'K59.9 ','Functional intestinal disorder, unspecified','Y','0000-00-00 00:00:00'),(117546,10,'K59.89 ','Other specified functional intestinal disorders','Y','0000-00-00 00:00:00'),(117544,10,'K59.4 ','Anal spasm','Y','0000-00-00 00:00:00'),(117545,10,'K59.81 ','Ogilvie syndrome','Y','0000-00-00 00:00:00'),(117542,10,'K59.31 ','Toxic megacolon','Y','0000-00-00 00:00:00'),(117543,10,'K59.39 ','Other megacolon','Y','0000-00-00 00:00:00'),(117541,10,'K59.2 ','Neurogenic bowel, not elsewhere classified','Y','0000-00-00 00:00:00'),(117540,10,'K59.1 ','Functional diarrhea','Y','0000-00-00 00:00:00'),(117538,10,'K59.04 ','Chronic idiopathic constipation','Y','0000-00-00 00:00:00'),(117539,10,'K59.09 ','Other constipation','Y','0000-00-00 00:00:00'),(117537,10,'K59.03 ','Drug induced constipation','Y','0000-00-00 00:00:00'),(117535,10,'K59.01 ','Slow transit constipation','Y','0000-00-00 00:00:00'),(117536,10,'K59.02 ','Outlet dysfunction constipation','Y','0000-00-00 00:00:00'),(117534,10,'K59.00 ','Constipation, unspecified','Y','0000-00-00 00:00:00'),(117532,10,'K58.8 ','Other irritable bowel syndrome','Y','0000-00-00 00:00:00'),(117533,10,'K58.9 ','Irritable bowel syndrome without diarrhea','Y','0000-00-00 00:00:00'),(117531,10,'K58.2 ','Mixed irritable bowel syndrome','Y','0000-00-00 00:00:00'),(117530,10,'K58.1 ','Irritable bowel syndrome with constipation','Y','0000-00-00 00:00:00'),(117529,10,'K58.0 ','Irritable bowel syndrome with diarrhea','Y','0000-00-00 00:00:00'),(117528,10,'K57.93 ','Diverticulitis of intestine, part unspecified, without perforation or abscess with bleeding','Y','0000-00-00 00:00:00'),(117527,10,'K57.92 ','Diverticulitis of intestine, part unspecified, without perforation or abscess without bleeding','Y','0000-00-00 00:00:00'),(117526,10,'K57.91 ','Diverticulosis of intestine, part unspecified, without perforation or abscess with bleeding','Y','0000-00-00 00:00:00'),(117525,10,'K57.90 ','Diverticulosis of intestine, part unspecified, without perforation or abscess without bleeding','Y','0000-00-00 00:00:00'),(117524,10,'K57.81 ','Diverticulitis of intestine, part unspecified, with perforation and abscess with bleeding','Y','0000-00-00 00:00:00'),(117523,10,'K57.80 ','Diverticulitis of intestine, part unspecified, with perforation and abscess without bleeding','Y','0000-00-00 00:00:00'),(117522,10,'K57.53 ','Diverticulitis of both small and large intestine without perforation or abscess with bleeding','Y','0000-00-00 00:00:00'),(117521,10,'K57.52 ','Diverticulitis of both small and large intestine without perforation or abscess without bleeding','Y','0000-00-00 00:00:00'),(117520,10,'K57.51 ','Diverticulosis of both small and large intestine without perforation or abscess with bleeding','Y','0000-00-00 00:00:00'),(117519,10,'K57.50 ','Diverticulosis of both small and large intestine without perforation or abscess without bleeding','Y','0000-00-00 00:00:00'),(117518,10,'K57.41 ','Diverticulitis of both small and large intestine with perforation and abscess with bleeding','Y','0000-00-00 00:00:00'),(117517,10,'K57.40 ','Diverticulitis of both small and large intestine with perforation and abscess without bleeding','Y','0000-00-00 00:00:00'),(117516,10,'K57.33 ','Diverticulitis of large intestine without perforation or abscess with bleeding','Y','0000-00-00 00:00:00'),(117515,10,'K57.32 ','Diverticulitis of large intestine without perforation or abscess without bleeding','Y','0000-00-00 00:00:00'),(117514,10,'K57.31 ','Diverticulosis of large intestine without perforation or abscess with bleeding','Y','0000-00-00 00:00:00'),(117513,10,'K57.30 ','Diverticulosis of large intestine without perforation or abscess without bleeding','Y','0000-00-00 00:00:00'),(117512,10,'K57.21 ','Diverticulitis of large intestine with perforation and abscess with bleeding','Y','0000-00-00 00:00:00'),(117511,10,'K57.20 ','Diverticulitis of large intestine with perforation and abscess without bleeding','Y','0000-00-00 00:00:00'),(117510,10,'K57.13 ','Diverticulitis of small intestine without perforation or abscess with bleeding','Y','0000-00-00 00:00:00'),(117509,10,'K57.12 ','Diverticulitis of small intestine without perforation or abscess without bleeding','Y','0000-00-00 00:00:00'),(117508,10,'K57.11 ','Diverticulosis of small intestine without perforation or abscess with bleeding','Y','0000-00-00 00:00:00'),(117507,10,'K57.10 ','Diverticulosis of small intestine without perforation or abscess without bleeding','Y','0000-00-00 00:00:00'),(117506,10,'K57.01 ','Diverticulitis of small intestine with perforation and abscess with bleeding','Y','0000-00-00 00:00:00'),(117505,10,'K57.00 ','Diverticulitis of small intestine with perforation and abscess without bleeding','Y','0000-00-00 00:00:00'),(117504,10,'K56.7 ','Ileus, unspecified','Y','0000-00-00 00:00:00'),(117503,10,'K56.699 ','Other intestinal obstruction unspecified as to partial versus complete obstruction','Y','0000-00-00 00:00:00'),(117501,10,'K56.690 ','Other partial intestinal obstruction','Y','0000-00-00 00:00:00'),(117502,10,'K56.691 ','Other complete intestinal obstruction','Y','0000-00-00 00:00:00'),(117500,10,'K56.609 ','Unspecified intestinal obstruction, unspecified as to partial versus complete obstruction','Y','0000-00-00 00:00:00'),(117499,10,'K56.601 ','Complete intestinal obstruction, unspecified as to cause','Y','0000-00-00 00:00:00'),(117498,10,'K56.600 ','Partial intestinal obstruction, unspecified as to cause','Y','0000-00-00 00:00:00'),(117497,10,'K56.52 ','Intestinal adhesions [bands] with complete obstruction','Y','0000-00-00 00:00:00'),(117496,10,'K56.51 ','Intestinal adhesions [bands], with partial obstruction','Y','0000-00-00 00:00:00'),(117495,10,'K56.50 ','Intestinal adhesions [bands], unspecified as to partial versus complete obstruction','Y','0000-00-00 00:00:00'),(117493,10,'K56.41 ','Fecal impaction','Y','0000-00-00 00:00:00'),(117494,10,'K56.49 ','Other impaction of intestine','Y','0000-00-00 00:00:00'),(117491,10,'K56.2 ','Volvulus','Y','0000-00-00 00:00:00'),(117492,10,'K56.3 ','Gallstone ileus','Y','0000-00-00 00:00:00'),(117489,10,'K56.0 ','Paralytic ileus','Y','0000-00-00 00:00:00'),(117490,10,'K56.1 ','Intussusception','Y','0000-00-00 00:00:00'),(117488,10,'K55.9 ','Vascular disorder of intestine, unspecified','Y','0000-00-00 00:00:00'),(117487,10,'K55.8 ','Other vascular disorders of intestine','Y','0000-00-00 00:00:00'),(117486,10,'K55.33 ','Stage 3 necrotizing enterocolitis','Y','0000-00-00 00:00:00'),(117485,10,'K55.32 ','Stage 2 necrotizing enterocolitis','Y','0000-00-00 00:00:00'),(117484,10,'K55.31 ','Stage 1 necrotizing enterocolitis','Y','0000-00-00 00:00:00'),(117483,10,'K55.30 ','Necrotizing enterocolitis, unspecified','Y','0000-00-00 00:00:00'),(117482,10,'K55.21 ','Angiodysplasia of colon with hemorrhage','Y','0000-00-00 00:00:00'),(117481,10,'K55.20 ','Angiodysplasia of colon without hemorrhage','Y','0000-00-00 00:00:00'),(117480,10,'K55.1 ','Chronic vascular disorders of intestine','Y','0000-00-00 00:00:00'),(117479,10,'K55.069 ','Acute infarction of intestine, part and extent unspecified','Y','0000-00-00 00:00:00'),(117478,10,'K55.062 ','Diffuse acute infarction of intestine, part unspecified','Y','0000-00-00 00:00:00'),(117477,10,'K55.061 ','Focal (segmental) acute infarction of intestine, part unspecified','Y','0000-00-00 00:00:00'),(117476,10,'K55.059 ','Acute (reversible) ischemia of intestine, part and extent unspecified','Y','0000-00-00 00:00:00'),(117475,10,'K55.052 ','Diffuse acute (reversible) ischemia of intestine, part unspecified','Y','0000-00-00 00:00:00'),(117474,10,'K55.051 ','Focal (segmental) acute (reversible) ischemia of intestine, part unspecified','Y','0000-00-00 00:00:00'),(117473,10,'K55.049 ','Acute infarction of large intestine, extent unspecified','Y','0000-00-00 00:00:00'),(117472,10,'K55.042 ','Diffuse acute infarction of large intestine','Y','0000-00-00 00:00:00'),(117471,10,'K55.041 ','Focal (segmental) acute infarction of large intestine','Y','0000-00-00 00:00:00'),(117470,10,'K55.039 ','Acute (reversible) ischemia of large intestine, extent unspecified','Y','0000-00-00 00:00:00'),(117469,10,'K55.032 ','Diffuse acute (reversible) ischemia of large intestine','Y','0000-00-00 00:00:00'),(117468,10,'K55.031 ','Focal (segmental) acute (reversible) ischemia of large intestine','Y','0000-00-00 00:00:00'),(117467,10,'K55.029 ','Acute infarction of small intestine, extent unspecified','Y','0000-00-00 00:00:00'),(117466,10,'K55.022 ','Diffuse acute infarction of small intestine','Y','0000-00-00 00:00:00'),(117465,10,'K55.021 ','Focal (segmental) acute infarction of small intestine','Y','0000-00-00 00:00:00'),(117464,10,'K55.019 ','Acute (reversible) ischemia of small intestine, extent unspecified','Y','0000-00-00 00:00:00'),(117463,10,'K55.012 ','Diffuse acute (reversible) ischemia of small intestine','Y','0000-00-00 00:00:00'),(117462,10,'K55.011 ','Focal (segmental) acute (reversible) ischemia of small intestine','Y','0000-00-00 00:00:00'),(117461,10,'K52.9 ','Noninfective gastroenteritis and colitis, unspecified','Y','0000-00-00 00:00:00'),(117460,10,'K52.89 ','Other specified noninfective gastroenteritis and colitis','Y','0000-00-00 00:00:00'),(117459,10,'K52.839 ','Microscopic colitis, unspecified','Y','0000-00-00 00:00:00'),(117458,10,'K52.838 ','Other microscopic colitis','Y','0000-00-00 00:00:00'),(117457,10,'K52.832 ','Lymphocytic colitis','Y','0000-00-00 00:00:00'),(117456,10,'K52.831 ','Collagenous colitis','Y','0000-00-00 00:00:00'),(117455,10,'K52.82 ','Eosinophilic colitis','Y','0000-00-00 00:00:00'),(117454,10,'K52.81 ','Eosinophilic gastritis or gastroenteritis','Y','0000-00-00 00:00:00'),(117453,10,'K52.3 ','Indeterminate colitis','Y','0000-00-00 00:00:00'),(117452,10,'K52.29 ','Other allergic and dietetic gastroenteritis and colitis','Y','0000-00-00 00:00:00'),(117451,10,'K52.22 ','Food protein-induced enteropathy','Y','0000-00-00 00:00:00'),(117449,10,'K52.1 ','Toxic gastroenteritis and colitis','Y','0000-00-00 00:00:00'),(117450,10,'K52.21 ','Food protein-induced enterocolitis syndrome','Y','0000-00-00 00:00:00'),(117448,10,'K52.0 ','Gastroenteritis and colitis due to radiation','Y','0000-00-00 00:00:00'),(117447,10,'K51.919 ','Ulcerative colitis, unspecified with unspecified complications','Y','0000-00-00 00:00:00'),(117446,10,'K51.918 ','Ulcerative colitis, unspecified with other complication','Y','0000-00-00 00:00:00'),(117445,10,'K51.914 ','Ulcerative colitis, unspecified with abscess','Y','0000-00-00 00:00:00'),(117444,10,'K51.913 ','Ulcerative colitis, unspecified with fistula','Y','0000-00-00 00:00:00'),(117443,10,'K51.912 ','Ulcerative colitis, unspecified with intestinal obstruction','Y','0000-00-00 00:00:00'),(117442,10,'K51.911 ','Ulcerative colitis, unspecified with rectal bleeding','Y','0000-00-00 00:00:00'),(117441,10,'K51.90 ','Ulcerative colitis, unspecified, without complications','Y','0000-00-00 00:00:00'),(117440,10,'K51.819 ','Other ulcerative colitis with unspecified complications','Y','0000-00-00 00:00:00'),(117439,10,'K51.818 ','Other ulcerative colitis with other complication','Y','0000-00-00 00:00:00'),(117438,10,'K51.814 ','Other ulcerative colitis with abscess','Y','0000-00-00 00:00:00'),(117437,10,'K51.813 ','Other ulcerative colitis with fistula','Y','0000-00-00 00:00:00'),(117436,10,'K51.812 ','Other ulcerative colitis with intestinal obstruction','Y','0000-00-00 00:00:00'),(117435,10,'K51.811 ','Other ulcerative colitis with rectal bleeding','Y','0000-00-00 00:00:00'),(117434,10,'K51.80 ','Other ulcerative colitis without complications','Y','0000-00-00 00:00:00'),(117433,10,'K51.519 ','Left sided colitis with unspecified complications','Y','0000-00-00 00:00:00'),(117432,10,'K51.518 ','Left sided colitis with other complication','Y','0000-00-00 00:00:00'),(117431,10,'K51.514 ','Left sided colitis with abscess','Y','0000-00-00 00:00:00'),(117430,10,'K51.513 ','Left sided colitis with fistula','Y','0000-00-00 00:00:00'),(117429,10,'K51.512 ','Left sided colitis with intestinal obstruction','Y','0000-00-00 00:00:00'),(117428,10,'K51.511 ','Left sided colitis with rectal bleeding','Y','0000-00-00 00:00:00'),(117427,10,'K51.50 ','Left sided colitis without complications','Y','0000-00-00 00:00:00'),(117426,10,'K51.419 ','Inflammatory polyps of colon with unspecified complications','Y','0000-00-00 00:00:00'),(117425,10,'K51.418 ','Inflammatory polyps of colon with other complication','Y','0000-00-00 00:00:00'),(117424,10,'K51.414 ','Inflammatory polyps of colon with abscess','Y','0000-00-00 00:00:00'),(117423,10,'K51.413 ','Inflammatory polyps of colon with fistula','Y','0000-00-00 00:00:00'),(117422,10,'K51.412 ','Inflammatory polyps of colon with intestinal obstruction','Y','0000-00-00 00:00:00'),(117421,10,'K51.411 ','Inflammatory polyps of colon with rectal bleeding','Y','0000-00-00 00:00:00'),(117420,10,'K51.40 ','Inflammatory polyps of colon without complications','Y','0000-00-00 00:00:00'),(117419,10,'K51.319 ','Ulcerative (chronic) rectosigmoiditis with unspecified complications','Y','0000-00-00 00:00:00'),(117418,10,'K51.318 ','Ulcerative (chronic) rectosigmoiditis with other complication','Y','0000-00-00 00:00:00'),(117417,10,'K51.314 ','Ulcerative (chronic) rectosigmoiditis with abscess','Y','0000-00-00 00:00:00'),(117416,10,'K51.313 ','Ulcerative (chronic) rectosigmoiditis with fistula','Y','0000-00-00 00:00:00'),(117415,10,'K51.312 ','Ulcerative (chronic) rectosigmoiditis with intestinal obstruction','Y','0000-00-00 00:00:00'),(117414,10,'K51.311 ','Ulcerative (chronic) rectosigmoiditis with rectal bleeding','Y','0000-00-00 00:00:00'),(117413,10,'K51.30 ','Ulcerative (chronic) rectosigmoiditis without complications','Y','0000-00-00 00:00:00'),(117412,10,'K51.219 ','Ulcerative (chronic) proctitis with unspecified complications','Y','0000-00-00 00:00:00'),(117411,10,'K51.218 ','Ulcerative (chronic) proctitis with other complication','Y','0000-00-00 00:00:00'),(117410,10,'K51.214 ','Ulcerative (chronic) proctitis with abscess','Y','0000-00-00 00:00:00'),(117409,10,'K51.213 ','Ulcerative (chronic) proctitis with fistula','Y','0000-00-00 00:00:00'),(117408,10,'K51.212 ','Ulcerative (chronic) proctitis with intestinal obstruction','Y','0000-00-00 00:00:00'),(117407,10,'K51.211 ','Ulcerative (chronic) proctitis with rectal bleeding','Y','0000-00-00 00:00:00'),(117406,10,'K51.20 ','Ulcerative (chronic) proctitis without complications','Y','0000-00-00 00:00:00'),(117405,10,'K51.019 ','Ulcerative (chronic) pancolitis with unspecified complications','Y','0000-00-00 00:00:00'),(117403,10,'K51.014 ','Ulcerative (chronic) pancolitis with abscess','Y','0000-00-00 00:00:00'),(117404,10,'K51.018 ','Ulcerative (chronic) pancolitis with other complication','Y','0000-00-00 00:00:00'),(117402,10,'K51.013 ','Ulcerative (chronic) pancolitis with fistula','Y','0000-00-00 00:00:00'),(117400,10,'K51.011 ','Ulcerative (chronic) pancolitis with rectal bleeding','Y','0000-00-00 00:00:00'),(117401,10,'K51.012 ','Ulcerative (chronic) pancolitis with intestinal obstruction','Y','0000-00-00 00:00:00'),(117399,10,'K51.00 ','Ulcerative (chronic) pancolitis without complications','Y','0000-00-00 00:00:00'),(117397,10,'K50.918 ','Crohn\'s disease, unspecified, with other complication','Y','0000-00-00 00:00:00'),(117398,10,'K50.919 ','Crohn\'s disease, unspecified, with unspecified complications','Y','0000-00-00 00:00:00'),(117396,10,'K50.914 ','Crohn\'s disease, unspecified, with abscess','Y','0000-00-00 00:00:00'),(117394,10,'K50.912 ','Crohn\'s disease, unspecified, with intestinal obstruction','Y','0000-00-00 00:00:00'),(117395,10,'K50.913 ','Crohn\'s disease, unspecified, with fistula','Y','0000-00-00 00:00:00'),(117393,10,'K50.911 ','Crohn\'s disease, unspecified, with rectal bleeding','Y','0000-00-00 00:00:00'),(117392,10,'K50.90 ','Crohn\'s disease, unspecified, without complications','Y','0000-00-00 00:00:00'),(117391,10,'K50.819 ','Crohn\'s disease of both small and large intestine with unspecified complications','Y','0000-00-00 00:00:00'),(117389,10,'K50.814 ','Crohn\'s disease of both small and large intestine with abscess','Y','0000-00-00 00:00:00'),(117390,10,'K50.818 ','Crohn\'s disease of both small and large intestine with other complication','Y','0000-00-00 00:00:00'),(117388,10,'K50.813 ','Crohn\'s disease of both small and large intestine with fistula','Y','0000-00-00 00:00:00'),(117387,10,'K50.812 ','Crohn\'s disease of both small and large intestine with intestinal obstruction','Y','0000-00-00 00:00:00'),(117386,10,'K50.811 ','Crohn\'s disease of both small and large intestine with rectal bleeding','Y','0000-00-00 00:00:00'),(117385,10,'K50.80 ','Crohn\'s disease of both small and large intestine without complications','Y','0000-00-00 00:00:00'),(117384,10,'K50.119 ','Crohn\'s disease of large intestine with unspecified complications','Y','0000-00-00 00:00:00'),(117383,10,'K50.118 ','Crohn\'s disease of large intestine with other complication','Y','0000-00-00 00:00:00'),(117382,10,'K50.114 ','Crohn\'s disease of large intestine with abscess','Y','0000-00-00 00:00:00'),(117381,10,'K50.113 ','Crohn\'s disease of large intestine with fistula','Y','0000-00-00 00:00:00'),(117380,10,'K50.112 ','Crohn\'s disease of large intestine with intestinal obstruction','Y','0000-00-00 00:00:00'),(117379,10,'K50.111 ','Crohn\'s disease of large intestine with rectal bleeding','Y','0000-00-00 00:00:00'),(117378,10,'K50.10 ','Crohn\'s disease of large intestine without complications','Y','0000-00-00 00:00:00'),(117377,10,'K50.019 ','Crohn\'s disease of small intestine with unspecified complications','Y','0000-00-00 00:00:00'),(117375,10,'K50.014 ','Crohn\'s disease of small intestine with abscess','Y','0000-00-00 00:00:00'),(117376,10,'K50.018 ','Crohn\'s disease of small intestine with other complication','Y','0000-00-00 00:00:00'),(117374,10,'K50.013 ','Crohn\'s disease of small intestine with fistula','Y','0000-00-00 00:00:00'),(117373,10,'K50.012 ','Crohn\'s disease of small intestine with intestinal obstruction','Y','0000-00-00 00:00:00'),(117372,10,'K50.011 ','Crohn\'s disease of small intestine with rectal bleeding','Y','0000-00-00 00:00:00'),(117371,10,'K50.00 ','Crohn\'s disease of small intestine without complications','Y','0000-00-00 00:00:00'),(117369,10,'K46.1 ','Unspecified abdominal hernia with gangrene','Y','0000-00-00 00:00:00'),(117370,10,'K46.9 ','Unspecified abdominal hernia without obstruction or gangrene','Y','0000-00-00 00:00:00'),(117368,10,'K46.0 ','Unspecified abdominal hernia with obstruction, without gangrene','Y','0000-00-00 00:00:00'),(117367,10,'K45.8 ','Other specified abdominal hernia without obstruction or gangrene','Y','0000-00-00 00:00:00'),(117366,10,'K45.1 ','Other specified abdominal hernia with gangrene','Y','0000-00-00 00:00:00'),(117365,10,'K45.0 ','Other specified abdominal hernia with obstruction, without gangrene','Y','0000-00-00 00:00:00'),(117363,10,'K44.1 ','Diaphragmatic hernia with gangrene','Y','0000-00-00 00:00:00'),(117364,10,'K44.9 ','Diaphragmatic hernia without obstruction or gangrene','Y','0000-00-00 00:00:00'),(117362,10,'K44.0 ','Diaphragmatic hernia with obstruction, without gangrene','Y','0000-00-00 00:00:00'),(117361,10,'K43.9 ','Ventral hernia without obstruction or gangrene','Y','0000-00-00 00:00:00'),(117360,10,'K43.7 ','Other and unspecified ventral hernia with gangrene','Y','0000-00-00 00:00:00'),(117358,10,'K43.5 ','Parastomal hernia without obstruction or gangrene','Y','0000-00-00 00:00:00'),(117359,10,'K43.6 ','Other and unspecified ventral hernia with obstruction, without gangrene','Y','0000-00-00 00:00:00'),(117357,10,'K43.4 ','Parastomal hernia with gangrene','Y','0000-00-00 00:00:00'),(117356,10,'K43.3 ','Parastomal hernia with obstruction, without gangrene','Y','0000-00-00 00:00:00'),(117354,10,'K43.1 ','Incisional hernia with gangrene','Y','0000-00-00 00:00:00'),(117355,10,'K43.2 ','Incisional hernia without obstruction or gangrene','Y','0000-00-00 00:00:00'),(117352,10,'K42.9 ','Umbilical hernia without obstruction or gangrene','Y','0000-00-00 00:00:00'),(117353,10,'K43.0 ','Incisional hernia with obstruction, without gangrene','Y','0000-00-00 00:00:00'),(117351,10,'K42.1 ','Umbilical hernia with gangrene','Y','0000-00-00 00:00:00'),(117350,10,'K42.0 ','Umbilical hernia with obstruction, without gangrene','Y','0000-00-00 00:00:00'),(117349,10,'K41.91 ','Unilateral femoral hernia, without obstruction or gangrene, recurrent','Y','0000-00-00 00:00:00'),(117348,10,'K41.90 ','Unilateral femoral hernia, without obstruction or gangrene, not specified as recurrent','Y','0000-00-00 00:00:00'),(117347,10,'K41.41 ','Unilateral femoral hernia, with gangrene, recurrent','Y','0000-00-00 00:00:00'),(117346,10,'K41.40 ','Unilateral femoral hernia, with gangrene, not specified as recurrent','Y','0000-00-00 00:00:00'),(117345,10,'K41.31 ','Unilateral femoral hernia, with obstruction, without gangrene, recurrent','Y','0000-00-00 00:00:00'),(117344,10,'K41.30 ','Unilateral femoral hernia, with obstruction, without gangrene, not specified as recurrent','Y','0000-00-00 00:00:00'),(117343,10,'K41.21 ','Bilateral femoral hernia, without obstruction or gangrene, recurrent','Y','0000-00-00 00:00:00'),(117342,10,'K41.20 ','Bilateral femoral hernia, without obstruction or gangrene, not specified as recurrent','Y','0000-00-00 00:00:00'),(117341,10,'K41.11 ','Bilateral femoral hernia, with gangrene, recurrent','Y','0000-00-00 00:00:00'),(117340,10,'K41.10 ','Bilateral femoral hernia, with gangrene, not specified as recurrent','Y','0000-00-00 00:00:00'),(117339,10,'K41.01 ','Bilateral femoral hernia, with obstruction, without gangrene, recurrent','Y','0000-00-00 00:00:00'),(117338,10,'K41.00 ','Bilateral femoral hernia, with obstruction, without gangrene, not specified as recurrent','Y','0000-00-00 00:00:00'),(117337,10,'K40.91 ','Unilateral inguinal hernia, without obstruction or gangrene, recurrent','Y','0000-00-00 00:00:00'),(117336,10,'K40.90 ','Unilateral inguinal hernia, without obstruction or gangrene, not specified as recurrent','Y','0000-00-00 00:00:00'),(117335,10,'K40.41 ','Unilateral inguinal hernia, with gangrene, recurrent','Y','0000-00-00 00:00:00'),(117334,10,'K40.40 ','Unilateral inguinal hernia, with gangrene, not specified as recurrent','Y','0000-00-00 00:00:00'),(117333,10,'K40.31 ','Unilateral inguinal hernia, with obstruction, without gangrene, recurrent','Y','0000-00-00 00:00:00'),(117332,10,'K40.30 ','Unilateral inguinal hernia, with obstruction, without gangrene, not specified as recurrent','Y','0000-00-00 00:00:00'),(117331,10,'K40.21 ','Bilateral inguinal hernia, without obstruction or gangrene, recurrent','Y','0000-00-00 00:00:00'),(117330,10,'K40.20 ','Bilateral inguinal hernia, without obstruction or gangrene, not specified as recurrent','Y','0000-00-00 00:00:00'),(117329,10,'K40.11 ','Bilateral inguinal hernia, with gangrene, recurrent','Y','0000-00-00 00:00:00'),(117328,10,'K40.10 ','Bilateral inguinal hernia, with gangrene, not specified as recurrent','Y','0000-00-00 00:00:00'),(117327,10,'K40.01 ','Bilateral inguinal hernia, with obstruction, without gangrene, recurrent','Y','0000-00-00 00:00:00'),(117326,10,'K40.00 ','Bilateral inguinal hernia, with obstruction, without gangrene, not specified as recurrent','Y','0000-00-00 00:00:00'),(117325,10,'K38.9 ','Disease of appendix, unspecified','Y','0000-00-00 00:00:00'),(117323,10,'K38.3 ','Fistula of appendix','Y','0000-00-00 00:00:00'),(117324,10,'K38.8 ','Other specified diseases of appendix','Y','0000-00-00 00:00:00'),(117322,10,'K38.2 ','Diverticulum of appendix','Y','0000-00-00 00:00:00'),(117320,10,'K38.0 ','Hyperplasia of appendix','Y','0000-00-00 00:00:00'),(117321,10,'K38.1 ','Appendicular concretions','Y','0000-00-00 00:00:00'),(117318,10,'K36','Other appendicitis','Y','0000-00-00 00:00:00'),(117319,10,'K37','Unspecified appendicitis','Y','0000-00-00 00:00:00'),(117317,10,'K35.891 ','Other acute appendicitis without perforation, with gangrene','Y','0000-00-00 00:00:00'),(117316,10,'K35.890 ','Other acute appendicitis without perforation or gangrene','Y','0000-00-00 00:00:00'),(117315,10,'K35.80 ','Unspecified acute appendicitis','Y','0000-00-00 00:00:00'),(117314,10,'K35.33 ','Acute appendicitis with perforation, localized peritonitis, and gangrene, with abscess','Y','0000-00-00 00:00:00'),(117313,10,'K35.32 ','Acute appendicitis with perforation, localized peritonitis, and gangrene, without abscess','Y','0000-00-00 00:00:00'),(117312,10,'K35.31 ','Acute appendicitis with localized peritonitis and gangrene, without perforation','Y','0000-00-00 00:00:00'),(117311,10,'K35.30 ','Acute appendicitis with localized peritonitis, without perforation or gangrene','Y','0000-00-00 00:00:00'),(117310,10,'K35.219 ','Acute appendicitis with generalized peritonitis, with abscess, unspecified as to perforation','Y','0000-00-00 00:00:00'),(117309,10,'K35.211 ','Acute appendicitis with generalized peritonitis, with perforation and abscess','Y','0000-00-00 00:00:00'),(117308,10,'K35.210 ','Acute appendicitis with generalized peritonitis, without perforation, with abscess','Y','0000-00-00 00:00:00'),(117307,10,'K35.209 ','Acute appendicitis with generalized peritonitis, without abscess, unspecified as to perforation','Y','0000-00-00 00:00:00'),(117306,10,'K35.201 ','Acute appendicitis with generalized peritonitis, with perforation, without abscess','Y','0000-00-00 00:00:00'),(117305,10,'K35.200 ','Acute appendicitis with generalized peritonitis, without perforation or abscess','Y','0000-00-00 00:00:00'),(117304,10,'K31.A29 ','Gastric intestinal metaplasia with dysplasia, unspecified','Y','0000-00-00 00:00:00'),(117303,10,'K31.A22 ','Gastric intestinal metaplasia with high grade dysplasia','Y','0000-00-00 00:00:00'),(117302,10,'K31.A21 ','Gastric intestinal metaplasia with low grade dysplasia','Y','0000-00-00 00:00:00'),(117301,10,'K31.A19 ','Gastric intestinal metaplasia without dysplasia, unspecified site','Y','0000-00-00 00:00:00'),(117300,10,'K31.A15 ','Gastric intestinal metaplasia without dysplasia, involving multiple sites','Y','0000-00-00 00:00:00'),(117299,10,'K31.A14 ','Gastric intestinal metaplasia without dysplasia, involving the cardia','Y','0000-00-00 00:00:00'),(117298,10,'K31.A13 ','Gastric intestinal metaplasia without dysplasia, involving the fundus','Y','0000-00-00 00:00:00'),(117297,10,'K31.A12 ','Gastric intestinal metaplasia without dysplasia, involving the body (corpus)','Y','0000-00-00 00:00:00'),(117296,10,'K31.A11 ','Gastric intestinal metaplasia without dysplasia, involving the antrum','Y','0000-00-00 00:00:00'),(117295,10,'K31.A0 ','Gastric intestinal metaplasia, unspecified','Y','0000-00-00 00:00:00'),(117294,10,'K31.9 ','Disease of stomach and duodenum, unspecified','Y','0000-00-00 00:00:00'),(117293,10,'K31.89 ','Other diseases of stomach and duodenum','Y','0000-00-00 00:00:00'),(117292,10,'K31.84 ','Gastroparesis','Y','0000-00-00 00:00:00'),(117291,10,'K31.83 ','Achlorhydria','Y','0000-00-00 00:00:00'),(117290,10,'K31.82 ','Dieulafoy lesion (hemorrhagic) of stomach and duodenum','Y','0000-00-00 00:00:00'),(117289,10,'K31.819 ','Angiodysplasia of stomach and duodenum without bleeding','Y','0000-00-00 00:00:00'),(117288,10,'K31.811 ','Angiodysplasia of stomach and duodenum with bleeding','Y','0000-00-00 00:00:00'),(117287,10,'K31.7 ','Polyp of stomach and duodenum','Y','0000-00-00 00:00:00'),(117286,10,'K31.6 ','Fistula of stomach and duodenum','Y','0000-00-00 00:00:00'),(117285,10,'K31.5 ','Obstruction of duodenum','Y','0000-00-00 00:00:00'),(117284,10,'K31.4 ','Gastric diverticulum','Y','0000-00-00 00:00:00'),(117283,10,'K31.3 ','Pylorospasm, not elsewhere classified','Y','0000-00-00 00:00:00'),(117282,10,'K31.2 ','Hourglass stricture and stenosis of stomach','Y','0000-00-00 00:00:00'),(117281,10,'K31.1 ','Adult hypertrophic pyloric stenosis','Y','0000-00-00 00:00:00'),(117280,10,'K31.0 ','Acute dilatation of stomach','Y','0000-00-00 00:00:00'),(117279,10,'K30','Functional dyspepsia','Y','0000-00-00 00:00:00'),(117278,10,'K29.91 ','Gastroduodenitis, unspecified, with bleeding','Y','0000-00-00 00:00:00'),(117277,10,'K29.90 ','Gastroduodenitis, unspecified, without bleeding','Y','0000-00-00 00:00:00'),(117276,10,'K29.81 ','Duodenitis with bleeding','Y','0000-00-00 00:00:00'),(117275,10,'K29.80 ','Duodenitis without bleeding','Y','0000-00-00 00:00:00'),(117274,10,'K29.71 ','Gastritis, unspecified, with bleeding','Y','0000-00-00 00:00:00'),(117273,10,'K29.70 ','Gastritis, unspecified, without bleeding','Y','0000-00-00 00:00:00'),(117272,10,'K29.61 ','Other gastritis with bleeding','Y','0000-00-00 00:00:00'),(117271,10,'K29.60 ','Other gastritis without bleeding','Y','0000-00-00 00:00:00'),(117270,10,'K29.51 ','Unspecified chronic gastritis with bleeding','Y','0000-00-00 00:00:00'),(117269,10,'K29.50 ','Unspecified chronic gastritis without bleeding','Y','0000-00-00 00:00:00'),(117268,10,'K29.41 ','Chronic atrophic gastritis with bleeding','Y','0000-00-00 00:00:00'),(117267,10,'K29.40 ','Chronic atrophic gastritis without bleeding','Y','0000-00-00 00:00:00'),(117266,10,'K29.31 ','Chronic superficial gastritis with bleeding','Y','0000-00-00 00:00:00'),(117265,10,'K29.30 ','Chronic superficial gastritis without bleeding','Y','0000-00-00 00:00:00'),(117264,10,'K29.21 ','Alcoholic gastritis with bleeding','Y','0000-00-00 00:00:00'),(117263,10,'K29.20 ','Alcoholic gastritis without bleeding','Y','0000-00-00 00:00:00'),(117262,10,'K29.01 ','Acute gastritis with bleeding','Y','0000-00-00 00:00:00'),(117261,10,'K29.00 ','Acute gastritis without bleeding','Y','0000-00-00 00:00:00'),(117260,10,'K28.9 ','Gastrojejunal ulcer, unspecified as acute or chronic, without hemorrhage or perforation','Y','0000-00-00 00:00:00'),(117259,10,'K28.7 ','Chronic gastrojejunal ulcer without hemorrhage or perforation','Y','0000-00-00 00:00:00'),(117258,10,'K28.6 ','Chronic or unspecified gastrojejunal ulcer with both hemorrhage and perforation','Y','0000-00-00 00:00:00'),(117257,10,'K28.5 ','Chronic or unspecified gastrojejunal ulcer with perforation','Y','0000-00-00 00:00:00'),(117256,10,'K28.4 ','Chronic or unspecified gastrojejunal ulcer with hemorrhage','Y','0000-00-00 00:00:00'),(117255,10,'K28.3 ','Acute gastrojejunal ulcer without hemorrhage or perforation','Y','0000-00-00 00:00:00'),(117254,10,'K28.2 ','Acute gastrojejunal ulcer with both hemorrhage and perforation','Y','0000-00-00 00:00:00'),(117253,10,'K28.1 ','Acute gastrojejunal ulcer with perforation','Y','0000-00-00 00:00:00'),(117252,10,'K28.0 ','Acute gastrojejunal ulcer with hemorrhage','Y','0000-00-00 00:00:00'),(117251,10,'K27.9 ','Peptic ulcer, site unspecified, unspecified as acute or chronic, without hemorrhage or perforation','Y','0000-00-00 00:00:00'),(117250,10,'K27.7 ','Chronic peptic ulcer, site unspecified, without hemorrhage or perforation','Y','0000-00-00 00:00:00'),(117249,10,'K27.6 ','Chronic or unspecified peptic ulcer, site unspecified, with both hemorrhage and perforation','Y','0000-00-00 00:00:00'),(117248,10,'K27.5 ','Chronic or unspecified peptic ulcer, site unspecified, with perforation','Y','0000-00-00 00:00:00'),(117247,10,'K27.4 ','Chronic or unspecified peptic ulcer, site unspecified, with hemorrhage','Y','0000-00-00 00:00:00'),(117246,10,'K27.3 ','Acute peptic ulcer, site unspecified, without hemorrhage or perforation','Y','0000-00-00 00:00:00'),(117245,10,'K27.2 ','Acute peptic ulcer, site unspecified, with both hemorrhage and perforation','Y','0000-00-00 00:00:00'),(117244,10,'K27.1 ','Acute peptic ulcer, site unspecified, with perforation','Y','0000-00-00 00:00:00'),(117243,10,'K27.0 ','Acute peptic ulcer, site unspecified, with hemorrhage','Y','0000-00-00 00:00:00'),(117242,10,'K26.9 ','Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation','Y','0000-00-00 00:00:00'),(117241,10,'K26.7 ','Chronic duodenal ulcer without hemorrhage or perforation','Y','0000-00-00 00:00:00'),(117240,10,'K26.6 ','Chronic or unspecified duodenal ulcer with both hemorrhage and perforation','Y','0000-00-00 00:00:00'),(117239,10,'K26.5 ','Chronic or unspecified duodenal ulcer with perforation','Y','0000-00-00 00:00:00'),(117238,10,'K26.4 ','Chronic or unspecified duodenal ulcer with hemorrhage','Y','0000-00-00 00:00:00'),(117237,10,'K26.3 ','Acute duodenal ulcer without hemorrhage or perforation','Y','0000-00-00 00:00:00'),(117236,10,'K26.2 ','Acute duodenal ulcer with both hemorrhage and perforation','Y','0000-00-00 00:00:00'),(117235,10,'K26.1 ','Acute duodenal ulcer with perforation','Y','0000-00-00 00:00:00'),(117234,10,'K26.0 ','Acute duodenal ulcer with hemorrhage','Y','0000-00-00 00:00:00'),(117233,10,'K25.9 ','Gastric ulcer, unspecified as acute or chronic, without hemorrhage or perforation','Y','0000-00-00 00:00:00'),(117232,10,'K25.7 ','Chronic gastric ulcer without hemorrhage or perforation','Y','0000-00-00 00:00:00'),(117231,10,'K25.6 ','Chronic or unspecified gastric ulcer with both hemorrhage and perforation','Y','0000-00-00 00:00:00'),(117230,10,'K25.5 ','Chronic or unspecified gastric ulcer with perforation','Y','0000-00-00 00:00:00'),(117229,10,'K25.4 ','Chronic or unspecified gastric ulcer with hemorrhage','Y','0000-00-00 00:00:00'),(117228,10,'K25.3 ','Acute gastric ulcer without hemorrhage or perforation','Y','0000-00-00 00:00:00'),(117227,10,'K25.2 ','Acute gastric ulcer with both hemorrhage and perforation','Y','0000-00-00 00:00:00'),(117226,10,'K25.1 ','Acute gastric ulcer with perforation','Y','0000-00-00 00:00:00'),(117225,10,'K25.0 ','Acute gastric ulcer with hemorrhage','Y','0000-00-00 00:00:00'),(117224,10,'K23','Disorders of esophagus in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(117223,10,'K22.9 ','Disease of esophagus, unspecified','Y','0000-00-00 00:00:00'),(117222,10,'K22.89 ','Other specified disease of esophagus','Y','0000-00-00 00:00:00'),(117220,10,'K22.81 ','Esophageal polyp','Y','0000-00-00 00:00:00'),(117221,10,'K22.82 ','Esophagogastric junction polyp','Y','0000-00-00 00:00:00'),(117219,10,'K22.719 ','Barrett\'s esophagus with dysplasia, unspecified','Y','0000-00-00 00:00:00'),(117218,10,'K22.711 ','Barrett\'s esophagus with high grade dysplasia','Y','0000-00-00 00:00:00'),(117217,10,'K22.710 ','Barrett\'s esophagus with low grade dysplasia','Y','0000-00-00 00:00:00'),(117216,10,'K22.70 ','Barrett\'s esophagus without dysplasia','Y','0000-00-00 00:00:00'),(117215,10,'K22.6 ','Gastro-esophageal laceration-hemorrhage syndrome','Y','0000-00-00 00:00:00'),(117214,10,'K22.5 ','Diverticulum of esophagus, acquired','Y','0000-00-00 00:00:00'),(117213,10,'K22.4 ','Dyskinesia of esophagus','Y','0000-00-00 00:00:00'),(117212,10,'K22.3 ','Perforation of esophagus','Y','0000-00-00 00:00:00'),(117211,10,'K22.2 ','Esophageal obstruction','Y','0000-00-00 00:00:00'),(117210,10,'K22.11 ','Ulcer of esophagus with bleeding','Y','0000-00-00 00:00:00'),(117209,10,'K22.10 ','Ulcer of esophagus without bleeding','Y','0000-00-00 00:00:00'),(117208,10,'K22.0 ','Achalasia of cardia','Y','0000-00-00 00:00:00'),(117207,10,'K21.9 ','Gastro-esophageal reflux disease without esophagitis','Y','0000-00-00 00:00:00'),(117206,10,'K21.01 ','Gastro-esophageal reflux disease with esophagitis, with bleeding','Y','0000-00-00 00:00:00'),(117205,10,'K21.00 ','Gastro-esophageal reflux disease with esophagitis, without bleeding','Y','0000-00-00 00:00:00'),(117203,10,'K20.90 ','Esophagitis, unspecified without bleeding','Y','0000-00-00 00:00:00'),(117204,10,'K20.91 ','Esophagitis, unspecified with bleeding','Y','0000-00-00 00:00:00'),(117202,10,'K20.81 ','Other esophagitis with bleeding','Y','0000-00-00 00:00:00'),(117201,10,'K20.80 ','Other esophagitis without bleeding','Y','0000-00-00 00:00:00'),(117199,10,'K14.9 ','Disease of tongue, unspecified','Y','0000-00-00 00:00:00'),(117200,10,'K20.0 ','Eosinophilic esophagitis','Y','0000-00-00 00:00:00'),(117198,10,'K14.8 ','Other diseases of tongue','Y','0000-00-00 00:00:00'),(117196,10,'K14.5 ','Plicated tongue','Y','0000-00-00 00:00:00'),(117197,10,'K14.6 ','Glossodynia','Y','0000-00-00 00:00:00'),(117195,10,'K14.4 ','Atrophy of tongue papillae','Y','0000-00-00 00:00:00'),(117193,10,'K14.2 ','Median rhomboid glossitis','Y','0000-00-00 00:00:00'),(117194,10,'K14.3 ','Hypertrophy of tongue papillae','Y','0000-00-00 00:00:00'),(117191,10,'K14.0 ','Glossitis','Y','0000-00-00 00:00:00'),(117192,10,'K14.1 ','Geographic tongue','Y','0000-00-00 00:00:00'),(117190,10,'K13.79 ','Other lesions of oral mucosa','Y','0000-00-00 00:00:00'),(117188,10,'K13.6 ','Irritative hyperplasia of oral mucosa','Y','0000-00-00 00:00:00'),(117189,10,'K13.70 ','Unspecified lesions of oral mucosa','Y','0000-00-00 00:00:00'),(117187,10,'K13.5 ','Oral submucous fibrosis','Y','0000-00-00 00:00:00'),(117185,10,'K13.3 ','Hairy leukoplakia','Y','0000-00-00 00:00:00'),(117186,10,'K13.4 ','Granuloma and granuloma-like lesions of oral mucosa','Y','0000-00-00 00:00:00'),(117184,10,'K13.29 ','Other disturbances of oral epithelium, including tongue','Y','0000-00-00 00:00:00'),(117183,10,'K13.24 ','Leukokeratosis nicotina palati','Y','0000-00-00 00:00:00'),(117182,10,'K13.23 ','Excessive keratinized residual ridge mucosa','Y','0000-00-00 00:00:00'),(117180,10,'K13.21 ','Leukoplakia of oral mucosa, including tongue','Y','0000-00-00 00:00:00'),(117181,10,'K13.22 ','Minimal keratinized residual ridge mucosa','Y','0000-00-00 00:00:00'),(117178,10,'K13.0 ','Diseases of lips','Y','0000-00-00 00:00:00'),(117179,10,'K13.1 ','Cheek and lip biting','Y','0000-00-00 00:00:00'),(117177,10,'K12.39 ','Other oral mucositis (ulcerative)','Y','0000-00-00 00:00:00'),(117176,10,'K12.33 ','Oral mucositis (ulcerative) due to radiation','Y','0000-00-00 00:00:00'),(117175,10,'K12.32 ','Oral mucositis (ulcerative) due to other drugs','Y','0000-00-00 00:00:00'),(117174,10,'K12.31 ','Oral mucositis (ulcerative) due to antineoplastic therapy','Y','0000-00-00 00:00:00'),(117173,10,'K12.30 ','Oral mucositis (ulcerative), unspecified','Y','0000-00-00 00:00:00'),(117172,10,'K12.2 ','Cellulitis and abscess of mouth','Y','0000-00-00 00:00:00'),(117170,10,'K12.0 ','Recurrent oral aphthae','Y','0000-00-00 00:00:00'),(117171,10,'K12.1 ','Other forms of stomatitis','Y','0000-00-00 00:00:00'),(117169,10,'K11.9 ','Disease of salivary gland, unspecified','Y','0000-00-00 00:00:00'),(117168,10,'K11.8 ','Other diseases of salivary glands','Y','0000-00-00 00:00:00'),(117167,10,'K11.7 ','Disturbances of salivary secretion','Y','0000-00-00 00:00:00'),(117165,10,'K11.5 ','Sialolithiasis','Y','0000-00-00 00:00:00'),(117166,10,'K11.6 ','Mucocele of salivary gland','Y','0000-00-00 00:00:00'),(117164,10,'K11.4 ','Fistula of salivary gland','Y','0000-00-00 00:00:00'),(117163,10,'K11.3 ','Abscess of salivary gland','Y','0000-00-00 00:00:00'),(117162,10,'K11.23 ','Chronic sialoadenitis','Y','0000-00-00 00:00:00'),(117161,10,'K11.22 ','Acute recurrent sialoadenitis','Y','0000-00-00 00:00:00'),(117159,10,'K11.20 ','Sialoadenitis, unspecified','Y','0000-00-00 00:00:00'),(117160,10,'K11.21 ','Acute sialoadenitis','Y','0000-00-00 00:00:00'),(117158,10,'K11.1 ','Hypertrophy of salivary gland','Y','0000-00-00 00:00:00'),(117157,10,'K11.0 ','Atrophy of salivary gland','Y','0000-00-00 00:00:00'),(117156,10,'K09.9 ','Cyst of oral region, unspecified','Y','0000-00-00 00:00:00'),(117155,10,'K09.8 ','Other cysts of oral region, not elsewhere classified','Y','0000-00-00 00:00:00'),(117154,10,'K09.1 ','Developmental (nonodontogenic) cysts of oral region','Y','0000-00-00 00:00:00'),(117153,10,'K09.0 ','Developmental odontogenic cysts','Y','0000-00-00 00:00:00'),(117152,10,'K08.9 ','Disorder of teeth and supporting structures, unspecified','Y','0000-00-00 00:00:00'),(117151,10,'K08.89 ','Other specified disorders of teeth and supporting structures','Y','0000-00-00 00:00:00'),(117150,10,'K08.82 ','Secondary occlusal trauma','Y','0000-00-00 00:00:00'),(117148,10,'K08.59 ','Other unsatisfactory restoration of tooth','Y','0000-00-00 00:00:00'),(117149,10,'K08.81 ','Primary occlusal trauma','Y','0000-00-00 00:00:00'),(117147,10,'K08.56 ','Poor aesthetic of existing restoration of tooth','Y','0000-00-00 00:00:00'),(117146,10,'K08.55 ','Allergy to existing dental restorative material','Y','0000-00-00 00:00:00'),(117144,10,'K08.539 ','Fractured dental restorative material, unspecified','Y','0000-00-00 00:00:00'),(117145,10,'K08.54 ','Contour of existing restoration of tooth biologically incompatible with oral health','Y','0000-00-00 00:00:00'),(117143,10,'K08.531 ','Fractured dental restorative material with loss of material','Y','0000-00-00 00:00:00'),(117142,10,'K08.530 ','Fractured dental restorative material without loss of material','Y','0000-00-00 00:00:00'),(117141,10,'K08.52 ','Unrepairable overhanging of dental restorative materials','Y','0000-00-00 00:00:00'),(117140,10,'K08.51 ','Open restoration margins of tooth','Y','0000-00-00 00:00:00'),(117139,10,'K08.50 ','Unsatisfactory restoration of tooth, unspecified','Y','0000-00-00 00:00:00'),(117138,10,'K08.499 ','Partial loss of teeth due to other specified cause, unspecified class','Y','0000-00-00 00:00:00'),(117136,10,'K08.493 ','Partial loss of teeth due to other specified cause, class III','Y','0000-00-00 00:00:00'),(117137,10,'K08.494 ','Partial loss of teeth due to other specified cause, class IV','Y','0000-00-00 00:00:00'),(117135,10,'K08.492 ','Partial loss of teeth due to other specified cause, class II','Y','0000-00-00 00:00:00'),(117133,10,'K08.439 ','Partial loss of teeth due to caries, unspecified class','Y','0000-00-00 00:00:00'),(117134,10,'K08.491 ','Partial loss of teeth due to other specified cause, class I','Y','0000-00-00 00:00:00'),(117132,10,'K08.434 ','Partial loss of teeth due to caries, class IV','Y','0000-00-00 00:00:00'),(117131,10,'K08.433 ','Partial loss of teeth due to caries, class III','Y','0000-00-00 00:00:00'),(117130,10,'K08.432 ','Partial loss of teeth due to caries, class II','Y','0000-00-00 00:00:00'),(117129,10,'K08.431 ','Partial loss of teeth due to caries, class I','Y','0000-00-00 00:00:00'),(117128,10,'K08.429 ','Partial loss of teeth due to periodontal diseases, unspecified class','Y','0000-00-00 00:00:00'),(117127,10,'K08.424 ','Partial loss of teeth due to periodontal diseases, class IV','Y','0000-00-00 00:00:00'),(117126,10,'K08.423 ','Partial loss of teeth due to periodontal diseases, class III','Y','0000-00-00 00:00:00'),(117125,10,'K08.422 ','Partial loss of teeth due to periodontal diseases, class II','Y','0000-00-00 00:00:00'),(117124,10,'K08.421 ','Partial loss of teeth due to periodontal diseases, class I','Y','0000-00-00 00:00:00'),(117123,10,'K08.419 ','Partial loss of teeth due to trauma, unspecified class','Y','0000-00-00 00:00:00'),(117122,10,'K08.414 ','Partial loss of teeth due to trauma, class IV','Y','0000-00-00 00:00:00'),(117121,10,'K08.413 ','Partial loss of teeth due to trauma, class III','Y','0000-00-00 00:00:00'),(117120,10,'K08.412 ','Partial loss of teeth due to trauma, class II','Y','0000-00-00 00:00:00'),(117119,10,'K08.411 ','Partial loss of teeth due to trauma, class I','Y','0000-00-00 00:00:00'),(117117,10,'K08.404 ','Partial loss of teeth, unspecified cause, class IV','Y','0000-00-00 00:00:00'),(117118,10,'K08.409 ','Partial loss of teeth, unspecified cause, unspecified class','Y','0000-00-00 00:00:00'),(117116,10,'K08.403 ','Partial loss of teeth, unspecified cause, class III','Y','0000-00-00 00:00:00'),(117115,10,'K08.402 ','Partial loss of teeth, unspecified cause, class II','Y','0000-00-00 00:00:00'),(117114,10,'K08.401 ','Partial loss of teeth, unspecified cause, class I','Y','0000-00-00 00:00:00'),(117112,10,'K08.26 ','Severe atrophy of the maxilla','Y','0000-00-00 00:00:00'),(117113,10,'K08.3 ','Retained dental root','Y','0000-00-00 00:00:00'),(117110,10,'K08.24 ','Minimal atrophy of maxilla','Y','0000-00-00 00:00:00'),(117111,10,'K08.25 ','Moderate atrophy of the maxilla','Y','0000-00-00 00:00:00'),(117109,10,'K08.23 ','Severe atrophy of the mandible','Y','0000-00-00 00:00:00'),(117107,10,'K08.21 ','Minimal atrophy of the mandible','Y','0000-00-00 00:00:00'),(117108,10,'K08.22 ','Moderate atrophy of the mandible','Y','0000-00-00 00:00:00'),(117106,10,'K08.20 ','Unspecified atrophy of edentulous alveolar ridge','Y','0000-00-00 00:00:00'),(117105,10,'K08.199 ','Complete loss of teeth due to other specified cause, unspecified class','Y','0000-00-00 00:00:00'),(117104,10,'K08.194 ','Complete loss of teeth due to other specified cause, class IV','Y','0000-00-00 00:00:00'),(117103,10,'K08.193 ','Complete loss of teeth due to other specified cause, class III','Y','0000-00-00 00:00:00'),(117102,10,'K08.192 ','Complete loss of teeth due to other specified cause, class II','Y','0000-00-00 00:00:00'),(117101,10,'K08.191 ','Complete loss of teeth due to other specified cause, class I','Y','0000-00-00 00:00:00'),(117100,10,'K08.139 ','Complete loss of teeth due to caries, unspecified class','Y','0000-00-00 00:00:00'),(117099,10,'K08.134 ','Complete loss of teeth due to caries, class IV','Y','0000-00-00 00:00:00'),(117098,10,'K08.133 ','Complete loss of teeth due to caries, class III','Y','0000-00-00 00:00:00'),(117097,10,'K08.132 ','Complete loss of teeth due to caries, class II','Y','0000-00-00 00:00:00'),(117096,10,'K08.131 ','Complete loss of teeth due to caries, class I','Y','0000-00-00 00:00:00'),(117095,10,'K08.129 ','Complete loss of teeth due to periodontal diseases, unspecified class','Y','0000-00-00 00:00:00'),(117094,10,'K08.124 ','Complete loss of teeth due to periodontal diseases, class IV','Y','0000-00-00 00:00:00'),(117093,10,'K08.123 ','Complete loss of teeth due to periodontal diseases, class III','Y','0000-00-00 00:00:00'),(117092,10,'K08.122 ','Complete loss of teeth due to periodontal diseases, class II','Y','0000-00-00 00:00:00'),(117091,10,'K08.121 ','Complete loss of teeth due to periodontal diseases, class I','Y','0000-00-00 00:00:00'),(117090,10,'K08.119 ','Complete loss of teeth due to trauma, unspecified class','Y','0000-00-00 00:00:00'),(117089,10,'K08.114 ','Complete loss of teeth due to trauma, class IV','Y','0000-00-00 00:00:00'),(117088,10,'K08.113 ','Complete loss of teeth due to trauma, class III','Y','0000-00-00 00:00:00'),(117087,10,'K08.112 ','Complete loss of teeth due to trauma, class II','Y','0000-00-00 00:00:00'),(117086,10,'K08.111 ','Complete loss of teeth due to trauma, class I','Y','0000-00-00 00:00:00'),(117085,10,'K08.109 ','Complete loss of teeth, unspecified cause, unspecified class','Y','0000-00-00 00:00:00'),(117084,10,'K08.104 ','Complete loss of teeth, unspecified cause, class IV','Y','0000-00-00 00:00:00'),(117083,10,'K08.103 ','Complete loss of teeth, unspecified cause, class III','Y','0000-00-00 00:00:00'),(117082,10,'K08.102 ','Complete loss of teeth, unspecified cause, class II','Y','0000-00-00 00:00:00'),(117081,10,'K08.101 ','Complete loss of teeth, unspecified cause, class I','Y','0000-00-00 00:00:00'),(117080,10,'K08.0 ','Exfoliation of teeth due to systemic causes','Y','0000-00-00 00:00:00'),(117079,10,'K06.9 ','Disorder of gingiva and edentulous alveolar ridge, unspecified','Y','0000-00-00 00:00:00'),(117078,10,'K06.8 ','Other specified disorders of gingiva and edentulous alveolar ridge','Y','0000-00-00 00:00:00'),(117077,10,'K06.3 ','Horizontal alveolar bone loss','Y','0000-00-00 00:00:00'),(117076,10,'K06.2 ','Gingival and edentulous alveolar ridge lesions associated with trauma','Y','0000-00-00 00:00:00'),(117075,10,'K06.1 ','Gingival enlargement','Y','0000-00-00 00:00:00'),(117074,10,'K06.023 ','Generalized gingival recession, severe','Y','0000-00-00 00:00:00'),(117073,10,'K06.022 ','Generalized gingival recession, moderate','Y','0000-00-00 00:00:00'),(117072,10,'K06.021 ','Generalized gingival recession, minimal','Y','0000-00-00 00:00:00'),(117071,10,'K06.020 ','Generalized gingival recession, unspecified','Y','0000-00-00 00:00:00'),(117070,10,'K06.013 ','Localized gingival recession, severe','Y','0000-00-00 00:00:00'),(117069,10,'K06.012 ','Localized gingival recession, moderate','Y','0000-00-00 00:00:00'),(117068,10,'K06.011 ','Localized gingival recession, minimal','Y','0000-00-00 00:00:00'),(117067,10,'K06.010 ','Localized gingival recession, unspecified','Y','0000-00-00 00:00:00'),(117066,10,'K05.6 ','Periodontal disease, unspecified','Y','0000-00-00 00:00:00'),(117065,10,'K05.5 ','Other periodontal diseases','Y','0000-00-00 00:00:00'),(117064,10,'K05.4 ','Periodontosis','Y','0000-00-00 00:00:00'),(117063,10,'K05.329 ','Chronic periodontitis, generalized, unspecified severity','Y','0000-00-00 00:00:00'),(117062,10,'K05.323 ','Chronic periodontitis, generalized, severe','Y','0000-00-00 00:00:00'),(117061,10,'K05.322 ','Chronic periodontitis, generalized, moderate','Y','0000-00-00 00:00:00'),(117060,10,'K05.321 ','Chronic periodontitis, generalized, slight','Y','0000-00-00 00:00:00'),(117059,10,'K05.319 ','Chronic periodontitis, localized, unspecified severity','Y','0000-00-00 00:00:00'),(117058,10,'K05.313 ','Chronic periodontitis, localized, severe','Y','0000-00-00 00:00:00'),(117057,10,'K05.312 ','Chronic periodontitis, localized, moderate','Y','0000-00-00 00:00:00'),(117056,10,'K05.311 ','Chronic periodontitis, localized, slight','Y','0000-00-00 00:00:00'),(117055,10,'K05.30 ','Chronic periodontitis, unspecified','Y','0000-00-00 00:00:00'),(117054,10,'K05.229 ','Aggressive periodontitis, generalized, unspecified severity','Y','0000-00-00 00:00:00'),(117053,10,'K05.223 ','Aggressive periodontitis, generalized, severe','Y','0000-00-00 00:00:00'),(117052,10,'K05.222 ','Aggressive periodontitis, generalized, moderate','Y','0000-00-00 00:00:00'),(117051,10,'K05.221 ','Aggressive periodontitis, generalized, slight','Y','0000-00-00 00:00:00'),(117050,10,'K05.219 ','Aggressive periodontitis, localized, unspecified severity','Y','0000-00-00 00:00:00'),(117049,10,'K05.213 ','Aggressive periodontitis, localized, severe','Y','0000-00-00 00:00:00'),(117048,10,'K05.212 ','Aggressive periodontitis, localized, moderate','Y','0000-00-00 00:00:00'),(117047,10,'K05.211 ','Aggressive periodontitis, localized, slight','Y','0000-00-00 00:00:00'),(117046,10,'K05.20 ','Aggressive periodontitis, unspecified','Y','0000-00-00 00:00:00'),(117045,10,'K05.11 ','Chronic gingivitis, non-plaque induced','Y','0000-00-00 00:00:00'),(117044,10,'K05.10 ','Chronic gingivitis, plaque induced','Y','0000-00-00 00:00:00'),(117043,10,'K05.01 ','Acute gingivitis, non-plaque induced','Y','0000-00-00 00:00:00'),(117042,10,'K05.00 ','Acute gingivitis, plaque induced','Y','0000-00-00 00:00:00'),(117041,10,'K04.99 ','Other diseases of pulp and periapical tissues','Y','0000-00-00 00:00:00'),(117040,10,'K04.90 ','Unspecified diseases of pulp and periapical tissues','Y','0000-00-00 00:00:00'),(117039,10,'K04.8 ','Radicular cyst','Y','0000-00-00 00:00:00'),(117037,10,'K04.6 ','Periapical abscess with sinus','Y','0000-00-00 00:00:00'),(117038,10,'K04.7 ','Periapical abscess without sinus','Y','0000-00-00 00:00:00'),(117036,10,'K04.5 ','Chronic apical periodontitis','Y','0000-00-00 00:00:00'),(117035,10,'K04.4 ','Acute apical periodontitis of pulpal origin','Y','0000-00-00 00:00:00'),(117034,10,'K04.3 ','Abnormal hard tissue formation in pulp','Y','0000-00-00 00:00:00'),(117033,10,'K04.2 ','Pulp degeneration','Y','0000-00-00 00:00:00'),(117032,10,'K04.1 ','Necrosis of pulp','Y','0000-00-00 00:00:00'),(117031,10,'K04.02 ','Irreversible pulpitis','Y','0000-00-00 00:00:00'),(117030,10,'K04.01 ','Reversible pulpitis','Y','0000-00-00 00:00:00'),(117029,10,'K03.9 ','Disease of hard tissues of teeth, unspecified','Y','0000-00-00 00:00:00'),(117028,10,'K03.89 ','Other specified diseases of hard tissues of teeth','Y','0000-00-00 00:00:00'),(117027,10,'K03.81 ','Cracked tooth','Y','0000-00-00 00:00:00'),(117026,10,'K03.7 ','Posteruptive color changes of dental hard tissues','Y','0000-00-00 00:00:00'),(117025,10,'K03.6 ','Deposits [accretions] on teeth','Y','0000-00-00 00:00:00'),(117024,10,'K03.5 ','Ankylosis of teeth','Y','0000-00-00 00:00:00'),(117023,10,'K03.4 ','Hypercementosis','Y','0000-00-00 00:00:00'),(117022,10,'K03.3 ','Pathological resorption of teeth','Y','0000-00-00 00:00:00'),(117021,10,'K03.2 ','Erosion of teeth','Y','0000-00-00 00:00:00'),(117020,10,'K03.1 ','Abrasion of teeth','Y','0000-00-00 00:00:00'),(117019,10,'K03.0 ','Excessive attrition of teeth','Y','0000-00-00 00:00:00'),(117018,10,'K02.9 ','Dental caries, unspecified','Y','0000-00-00 00:00:00'),(117017,10,'K02.7 ','Dental root caries','Y','0000-00-00 00:00:00'),(117016,10,'K02.63 ','Dental caries on smooth surface penetrating into pulp','Y','0000-00-00 00:00:00'),(117015,10,'K02.62 ','Dental caries on smooth surface penetrating into dentin','Y','0000-00-00 00:00:00'),(117014,10,'K02.61 ','Dental caries on smooth surface limited to enamel','Y','0000-00-00 00:00:00'),(117013,10,'K02.53 ','Dental caries on pit and fissure surface penetrating into pulp','Y','0000-00-00 00:00:00'),(117012,10,'K02.52 ','Dental caries on pit and fissure surface penetrating into dentin','Y','0000-00-00 00:00:00'),(117011,10,'K02.51 ','Dental caries on pit and fissure surface limited to enamel','Y','0000-00-00 00:00:00'),(117010,10,'K02.3 ','Arrested dental caries','Y','0000-00-00 00:00:00'),(117008,10,'K01.0 ','Embedded teeth','Y','0000-00-00 00:00:00'),(117009,10,'K01.1 ','Impacted teeth','Y','0000-00-00 00:00:00'),(117007,10,'K00.9 ','Disorder of tooth development, unspecified','Y','0000-00-00 00:00:00'),(117006,10,'K00.8 ','Other disorders of tooth development','Y','0000-00-00 00:00:00'),(117005,10,'K00.7 ','Teething syndrome','Y','0000-00-00 00:00:00'),(117004,10,'K00.6 ','Disturbances in tooth eruption','Y','0000-00-00 00:00:00'),(117003,10,'K00.5 ','Hereditary disturbances in tooth structure, not elsewhere classified','Y','0000-00-00 00:00:00'),(117002,10,'K00.4 ','Disturbances in tooth formation','Y','0000-00-00 00:00:00'),(117001,10,'K00.3 ','Mottled teeth','Y','0000-00-00 00:00:00'),(117000,10,'K00.2 ','Abnormalities of size and form of teeth','Y','0000-00-00 00:00:00'),(116999,10,'K00.1 ','Supernumerary teeth','Y','0000-00-00 00:00:00'),(116998,10,'K00.0 ','Anodontia','Y','0000-00-00 00:00:00'),(116997,10,'J99','Respiratory disorders in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(116996,10,'J98.9 ','Respiratory disorder, unspecified','Y','0000-00-00 00:00:00'),(116995,10,'J98.8 ','Other specified respiratory disorders','Y','0000-00-00 00:00:00'),(116994,10,'J98.6 ','Disorders of diaphragm','Y','0000-00-00 00:00:00'),(116993,10,'J98.59 ','Other diseases of mediastinum, not elsewhere classified','Y','0000-00-00 00:00:00'),(116992,10,'J98.51 ','Mediastinitis','Y','0000-00-00 00:00:00'),(116991,10,'J98.4 ','Other disorders of lung','Y','0000-00-00 00:00:00'),(116990,10,'J98.3 ','Compensatory emphysema','Y','0000-00-00 00:00:00'),(116989,10,'J98.2 ','Interstitial emphysema','Y','0000-00-00 00:00:00'),(116988,10,'J98.19 ','Other pulmonary collapse','Y','0000-00-00 00:00:00'),(116987,10,'J98.11 ','Atelectasis','Y','0000-00-00 00:00:00'),(116985,10,'J98.01 ','Acute bronchospasm','Y','0000-00-00 00:00:00'),(116986,10,'J98.09 ','Other diseases of bronchus, not elsewhere classified','Y','0000-00-00 00:00:00'),(116984,10,'J96.92 ','Respiratory failure, unspecified with hypercapnia','Y','0000-00-00 00:00:00'),(116983,10,'J96.91 ','Respiratory failure, unspecified with hypoxia','Y','0000-00-00 00:00:00'),(116982,10,'J96.90 ','Respiratory failure, unspecified, unspecified whether with hypoxia or hypercapnia','Y','0000-00-00 00:00:00'),(116981,10,'J96.22 ','Acute and chronic respiratory failure with hypercapnia','Y','0000-00-00 00:00:00'),(116980,10,'J96.21 ','Acute and chronic respiratory failure with hypoxia','Y','0000-00-00 00:00:00'),(116979,10,'J96.20 ','Acute and chronic respiratory failure, unspecified whether with hypoxia or hypercapnia','Y','0000-00-00 00:00:00'),(116978,10,'J96.12 ','Chronic respiratory failure with hypercapnia','Y','0000-00-00 00:00:00'),(116977,10,'J96.11 ','Chronic respiratory failure with hypoxia','Y','0000-00-00 00:00:00'),(116976,10,'J96.10 ','Chronic respiratory failure, unspecified whether with hypoxia or hypercapnia','Y','0000-00-00 00:00:00'),(116975,10,'J96.02 ','Acute respiratory failure with hypercapnia','Y','0000-00-00 00:00:00'),(116974,10,'J96.01 ','Acute respiratory failure with hypoxia','Y','0000-00-00 00:00:00'),(116973,10,'J96.00 ','Acute respiratory failure, unspecified whether with hypoxia or hypercapnia','Y','0000-00-00 00:00:00'),(116972,10,'J95.89 ','Other postprocedural complications and disorders of respiratory system, not elsewhere classified','Y','0000-00-00 00:00:00'),(116971,10,'J95.88 ','Other intraoperative complications of respiratory system, not elsewhere classified','Y','0000-00-00 00:00:00'),(116970,10,'J95.87 ','Transfusion-associated dyspnea (TAD)','Y','0000-00-00 00:00:00'),(116969,10,'J95.863 ','Postprocedural seroma of a respiratory system organ or structure following other procedure','Y','0000-00-00 00:00:00'),(116968,10,'J95.862 ','Postprocedural seroma of a respiratory system organ or structure following a respiratory system procedure','Y','0000-00-00 00:00:00'),(116967,10,'J95.861 ','Postprocedural hematoma of a respiratory system organ or structure following other procedure','Y','0000-00-00 00:00:00'),(116966,10,'J95.860 ','Postprocedural hematoma of a respiratory system organ or structure following a respiratory system procedure','Y','0000-00-00 00:00:00'),(116965,10,'J95.859 ','Other complication of respirator [ventilator]','Y','0000-00-00 00:00:00'),(116964,10,'J95.851 ','Ventilator associated pneumonia','Y','0000-00-00 00:00:00'),(116963,10,'J95.850 ','Mechanical complication of respirator','Y','0000-00-00 00:00:00'),(116962,10,'J95.84 ','Transfusion-related acute lung injury (TRALI)','Y','0000-00-00 00:00:00'),(116961,10,'J95.831 ','Postprocedural hemorrhage of a respiratory system organ or structure following other procedure','Y','0000-00-00 00:00:00'),(116960,10,'J95.830 ','Postprocedural hemorrhage of a respiratory system organ or structure following a respiratory system procedure','Y','0000-00-00 00:00:00'),(116959,10,'J95.822 ','Acute and chronic postprocedural respiratory failure','Y','0000-00-00 00:00:00'),(116958,10,'J95.821 ','Acute postprocedural respiratory failure','Y','0000-00-00 00:00:00'),(116956,10,'J95.811 ','Postprocedural pneumothorax','Y','0000-00-00 00:00:00'),(116957,10,'J95.812 ','Postprocedural air leak','Y','0000-00-00 00:00:00'),(116955,10,'J95.72 ','Accidental puncture and laceration of a respiratory system organ or structure during other procedure','Y','0000-00-00 00:00:00'),(116954,10,'J95.71 ','Accidental puncture and laceration of a respiratory system organ or structure during a respiratory system procedure','Y','0000-00-00 00:00:00'),(116953,10,'J95.62 ','Intraoperative hemorrhage and hematoma of a respiratory system organ or structure complicating other procedure','Y','0000-00-00 00:00:00'),(116952,10,'J95.61 ','Intraoperative hemorrhage and hematoma of a respiratory system organ or structure complicating a respiratory system procedure','Y','0000-00-00 00:00:00'),(116951,10,'J95.5 ','Postprocedural subglottic stenosis','Y','0000-00-00 00:00:00'),(116950,10,'J95.4 ','Chemical pneumonitis due to anesthesia','Y','0000-00-00 00:00:00'),(116949,10,'J95.3 ','Chronic pulmonary insufficiency following surgery','Y','0000-00-00 00:00:00'),(116948,10,'J95.2 ','Acute pulmonary insufficiency following nonthoracic surgery','Y','0000-00-00 00:00:00'),(116947,10,'J95.1 ','Acute pulmonary insufficiency following thoracic surgery','Y','0000-00-00 00:00:00'),(116946,10,'J95.09 ','Other tracheostomy complication','Y','0000-00-00 00:00:00'),(116945,10,'J95.04 ','Tracheo-esophageal fistula following tracheostomy','Y','0000-00-00 00:00:00'),(116944,10,'J95.03 ','Malfunction of tracheostomy stoma','Y','0000-00-00 00:00:00'),(116943,10,'J95.02 ','Infection of tracheostomy stoma','Y','0000-00-00 00:00:00'),(116942,10,'J95.01 ','Hemorrhage from tracheostomy stoma','Y','0000-00-00 00:00:00'),(116941,10,'J95.00 ','Unspecified tracheostomy complication','Y','0000-00-00 00:00:00'),(116940,10,'J94.9 ','Pleural condition, unspecified','Y','0000-00-00 00:00:00'),(116938,10,'J94.2 ','Hemothorax','Y','0000-00-00 00:00:00'),(116939,10,'J94.8 ','Other specified pleural conditions','Y','0000-00-00 00:00:00'),(116936,10,'J94.0 ','Chylous effusion','Y','0000-00-00 00:00:00'),(116937,10,'J94.1 ','Fibrothorax','Y','0000-00-00 00:00:00'),(116935,10,'J93.9 ','Pneumothorax, unspecified','Y','0000-00-00 00:00:00'),(116934,10,'J93.83 ','Other pneumothorax','Y','0000-00-00 00:00:00'),(116933,10,'J93.82 ','Other air leak','Y','0000-00-00 00:00:00'),(116932,10,'J93.81 ','Chronic pneumothorax','Y','0000-00-00 00:00:00'),(116931,10,'J93.12 ','Secondary spontaneous pneumothorax','Y','0000-00-00 00:00:00'),(116930,10,'J93.11 ','Primary spontaneous pneumothorax','Y','0000-00-00 00:00:00'),(116928,10,'J92.9 ','Pleural plaque without asbestos','Y','0000-00-00 00:00:00'),(116929,10,'J93.0 ','Spontaneous tension pneumothorax','Y','0000-00-00 00:00:00'),(116927,10,'J92.0 ','Pleural plaque with presence of asbestos','Y','0000-00-00 00:00:00'),(116926,10,'J91.8 ','Pleural effusion in other conditions classified elsewhere','Y','0000-00-00 00:00:00'),(116925,10,'J91.0 ','Malignant pleural effusion','Y','0000-00-00 00:00:00'),(116924,10,'J90','Pleural effusion, not elsewhere classified','Y','0000-00-00 00:00:00'),(116923,10,'J86.9 ','Pyothorax without fistula','Y','0000-00-00 00:00:00'),(116922,10,'J86.0 ','Pyothorax with fistula','Y','0000-00-00 00:00:00'),(116921,10,'J85.3 ','Abscess of mediastinum','Y','0000-00-00 00:00:00'),(116920,10,'J85.2 ','Abscess of lung without pneumonia','Y','0000-00-00 00:00:00'),(116919,10,'J85.1 ','Abscess of lung with pneumonia','Y','0000-00-00 00:00:00'),(116918,10,'J85.0 ','Gangrene and necrosis of lung','Y','0000-00-00 00:00:00'),(116917,10,'J84.9 ','Interstitial pulmonary disease, unspecified','Y','0000-00-00 00:00:00'),(116916,10,'J84.89 ','Other specified interstitial pulmonary diseases','Y','0000-00-00 00:00:00'),(116915,10,'J84.848 ','Other interstitial lung diseases of childhood','Y','0000-00-00 00:00:00'),(116914,10,'J84.843 ','Alveolar capillary dysplasia with vein misalignment','Y','0000-00-00 00:00:00'),(116913,10,'J84.842 ','Pulmonary interstitial glycogenosis','Y','0000-00-00 00:00:00'),(116912,10,'J84.841 ','Neuroendocrine cell hyperplasia of infancy','Y','0000-00-00 00:00:00'),(116911,10,'J84.83 ','Surfactant mutations of the lung','Y','0000-00-00 00:00:00'),(116910,10,'J84.82 ','Adult pulmonary Langerhans cell histiocytosis','Y','0000-00-00 00:00:00'),(116908,10,'J84.2 ','Lymphoid interstitial pneumonia','Y','0000-00-00 00:00:00'),(116909,10,'J84.81 ','Lymphangioleiomyomatosis','Y','0000-00-00 00:00:00'),(116907,10,'J84.178 ','Other interstitial pulmonary diseases with fibrosis in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(116906,10,'J84.170 ','Interstitial lung disease with progressive fibrotic phenotype in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(116905,10,'J84.117 ','Desquamative interstitial pneumonia','Y','0000-00-00 00:00:00'),(116904,10,'J84.116 ','Cryptogenic organizing pneumonia','Y','0000-00-00 00:00:00'),(116903,10,'J84.115 ','Respiratory bronchiolitis interstitial lung disease','Y','0000-00-00 00:00:00'),(116902,10,'J84.114 ','Acute interstitial pneumonitis','Y','0000-00-00 00:00:00'),(116901,10,'J84.113 ','Idiopathic non-specific interstitial pneumonitis','Y','0000-00-00 00:00:00'),(116900,10,'J84.112 ','Idiopathic pulmonary fibrosis','Y','0000-00-00 00:00:00'),(116899,10,'J84.111 ','Idiopathic interstitial pneumonia, not otherwise specified','Y','0000-00-00 00:00:00'),(116898,10,'J84.10 ','Pulmonary fibrosis, unspecified','Y','0000-00-00 00:00:00'),(116896,10,'J84.03 ','Idiopathic pulmonary hemosiderosis','Y','0000-00-00 00:00:00'),(116897,10,'J84.09 ','Other alveolar and parieto-alveolar conditions','Y','0000-00-00 00:00:00'),(116895,10,'J84.02 ','Pulmonary alveolar microlithiasis','Y','0000-00-00 00:00:00'),(116894,10,'J84.01 ','Alveolar proteinosis','Y','0000-00-00 00:00:00'),(116893,10,'J82.89 ','Other pulmonary eosinophilia, not elsewhere classified','Y','0000-00-00 00:00:00'),(116892,10,'J82.83 ','Eosinophilic asthma','Y','0000-00-00 00:00:00'),(116891,10,'J82.82 ','Acute eosinophilic pneumonia','Y','0000-00-00 00:00:00'),(116890,10,'J82.81 ','Chronic eosinophilic pneumonia','Y','0000-00-00 00:00:00'),(116889,10,'J81.1 ','Chronic pulmonary edema','Y','0000-00-00 00:00:00'),(116888,10,'J81.0 ','Acute pulmonary edema','Y','0000-00-00 00:00:00'),(116887,10,'J80','Acute respiratory distress syndrome','Y','0000-00-00 00:00:00'),(116886,10,'J70.9 ','Respiratory conditions due to unspecified external agent','Y','0000-00-00 00:00:00'),(116885,10,'J70.8 ','Respiratory conditions due to other specified external agents','Y','0000-00-00 00:00:00'),(116884,10,'J70.5 ','Respiratory conditions due to smoke inhalation','Y','0000-00-00 00:00:00'),(116883,10,'J70.4 ','Drug-induced interstitial lung disorders, unspecified','Y','0000-00-00 00:00:00'),(116882,10,'J70.3 ','Chronic drug-induced interstitial lung disorders','Y','0000-00-00 00:00:00'),(116881,10,'J70.2 ','Acute drug-induced interstitial lung disorders','Y','0000-00-00 00:00:00'),(116879,10,'J70.0 ','Acute pulmonary manifestations due to radiation','Y','0000-00-00 00:00:00'),(116880,10,'J70.1 ','Chronic and other pulmonary manifestations due to radiation','Y','0000-00-00 00:00:00'),(116878,10,'J69.8 ','Pneumonitis due to inhalation of other solids and liquids','Y','0000-00-00 00:00:00'),(116877,10,'J69.1 ','Pneumonitis due to inhalation of oils and essences','Y','0000-00-00 00:00:00'),(116876,10,'J69.0 ','Pneumonitis due to inhalation of food and vomit','Y','0000-00-00 00:00:00'),(116875,10,'J68.9 ','Unspecified respiratory condition due to chemicals, gases, fumes and vapors','Y','0000-00-00 00:00:00'),(116874,10,'J68.8 ','Other respiratory conditions due to chemicals, gases, fumes and vapors','Y','0000-00-00 00:00:00'),(116873,10,'J68.4 ','Chronic respiratory conditions due to chemicals, gases, fumes and vapors','Y','0000-00-00 00:00:00'),(116872,10,'J68.3 ','Other acute and subacute respiratory conditions due to chemicals, gases, fumes and vapors','Y','0000-00-00 00:00:00'),(116871,10,'J68.2 ','Upper respiratory inflammation due to chemicals, gases, fumes and vapors, not elsewhere classified','Y','0000-00-00 00:00:00'),(116870,10,'J68.1 ','Pulmonary edema due to chemicals, gases, fumes and vapors','Y','0000-00-00 00:00:00'),(116869,10,'J68.0 ','Bronchitis and pneumonitis due to chemicals, gases, fumes and vapors','Y','0000-00-00 00:00:00'),(116868,10,'J67.9 ','Hypersensitivity pneumonitis due to unspecified organic dust','Y','0000-00-00 00:00:00'),(116866,10,'J67.7 ','Air conditioner and humidifier lung','Y','0000-00-00 00:00:00'),(116867,10,'J67.8 ','Hypersensitivity pneumonitis due to other organic dusts','Y','0000-00-00 00:00:00'),(116864,10,'J67.5 ','Mushroom-worker\'s lung','Y','0000-00-00 00:00:00'),(116865,10,'J67.6 ','Maple-bark-stripper\'s lung','Y','0000-00-00 00:00:00'),(116862,10,'J67.3 ','Suberosis','Y','0000-00-00 00:00:00'),(116863,10,'J67.4 ','Maltworker\'s lung','Y','0000-00-00 00:00:00'),(116860,10,'J67.1 ','Bagassosis','Y','0000-00-00 00:00:00'),(116861,10,'J67.2 ','Bird fancier\'s lung','Y','0000-00-00 00:00:00'),(116859,10,'J67.0 ','Farmer\'s lung','Y','0000-00-00 00:00:00'),(116857,10,'J66.2 ','Cannabinosis','Y','0000-00-00 00:00:00'),(116858,10,'J66.8 ','Airway disease due to other specific organic dusts','Y','0000-00-00 00:00:00'),(116855,10,'J66.0 ','Byssinosis','Y','0000-00-00 00:00:00'),(116856,10,'J66.1 ','Flax-dressers\' disease','Y','0000-00-00 00:00:00'),(116853,10,'J64','Unspecified pneumoconiosis','Y','0000-00-00 00:00:00'),(116854,10,'J65','Pneumoconiosis associated with tuberculosis','Y','0000-00-00 00:00:00'),(116852,10,'J63.6 ','Pneumoconiosis due to other specified inorganic dusts','Y','0000-00-00 00:00:00'),(116850,10,'J63.4 ','Siderosis','Y','0000-00-00 00:00:00'),(116851,10,'J63.5 ','Stannosis','Y','0000-00-00 00:00:00'),(116849,10,'J63.3 ','Graphite fibrosis (of lung)','Y','0000-00-00 00:00:00'),(116847,10,'J63.1 ','Bauxite fibrosis (of lung)','Y','0000-00-00 00:00:00'),(116848,10,'J63.2 ','Berylliosis','Y','0000-00-00 00:00:00'),(116846,10,'J63.0 ','Aluminosis (of lung)','Y','0000-00-00 00:00:00'),(116844,10,'J62.0 ','Pneumoconiosis due to talc dust','Y','0000-00-00 00:00:00'),(116845,10,'J62.8 ','Pneumoconiosis due to other dust containing silica','Y','0000-00-00 00:00:00'),(116843,10,'J61','Pneumoconiosis due to asbestos and other mineral fibers','Y','0000-00-00 00:00:00'),(116842,10,'J60','Coalworker\'s pneumoconiosis','Y','0000-00-00 00:00:00'),(116840,10,'J47.1 ','Bronchiectasis with (acute) exacerbation','Y','0000-00-00 00:00:00'),(116841,10,'J47.9 ','Bronchiectasis, uncomplicated','Y','0000-00-00 00:00:00'),(116839,10,'J47.0 ','Bronchiectasis with acute lower respiratory infection','Y','0000-00-00 00:00:00'),(116838,10,'J45.998 ','Other asthma','Y','0000-00-00 00:00:00'),(116836,10,'J45.990 ','Exercise induced bronchospasm','Y','0000-00-00 00:00:00'),(116837,10,'J45.991 ','Cough variant asthma','Y','0000-00-00 00:00:00'),(116835,10,'J45.909 ','Unspecified asthma, uncomplicated','Y','0000-00-00 00:00:00'),(116833,10,'J45.901 ','Unspecified asthma with (acute) exacerbation','Y','0000-00-00 00:00:00'),(116834,10,'J45.902 ','Unspecified asthma with status asthmaticus','Y','0000-00-00 00:00:00'),(116832,10,'J45.52 ','Severe persistent asthma with status asthmaticus','Y','0000-00-00 00:00:00'),(116830,10,'J45.50 ','Severe persistent asthma, uncomplicated','Y','0000-00-00 00:00:00'),(116831,10,'J45.51 ','Severe persistent asthma with (acute) exacerbation','Y','0000-00-00 00:00:00'),(116829,10,'J45.42 ','Moderate persistent asthma with status asthmaticus','Y','0000-00-00 00:00:00'),(116828,10,'J45.41 ','Moderate persistent asthma with (acute) exacerbation','Y','0000-00-00 00:00:00'),(116827,10,'J45.40 ','Moderate persistent asthma, uncomplicated','Y','0000-00-00 00:00:00'),(116826,10,'J45.32 ','Mild persistent asthma with status asthmaticus','Y','0000-00-00 00:00:00'),(116825,10,'J45.31 ','Mild persistent asthma with (acute) exacerbation','Y','0000-00-00 00:00:00'),(116824,10,'J45.30 ','Mild persistent asthma, uncomplicated','Y','0000-00-00 00:00:00'),(116823,10,'J45.22 ','Mild intermittent asthma with status asthmaticus','Y','0000-00-00 00:00:00'),(116822,10,'J45.21 ','Mild intermittent asthma with (acute) exacerbation','Y','0000-00-00 00:00:00'),(116821,10,'J45.20 ','Mild intermittent asthma, uncomplicated','Y','0000-00-00 00:00:00'),(116820,10,'J4A.9 ','Chronic lung allograft dysfunction, unspecified','Y','0000-00-00 00:00:00'),(116818,10,'J4A.0 ','Restrictive allograft syndrome','Y','0000-00-00 00:00:00'),(116819,10,'J4A.8 ','Other chronic lung allograft dysfunction','Y','0000-00-00 00:00:00'),(116817,10,'J44.9 ','Chronic obstructive pulmonary disease, unspecified','Y','0000-00-00 00:00:00'),(116816,10,'J44.89 ','Other specified chronic obstructive pulmonary disease','Y','0000-00-00 00:00:00'),(116815,10,'J44.81 ','Bronchiolitis obliterans and bronchiolitis obliterans syndrome','Y','0000-00-00 00:00:00'),(116814,10,'J44.1 ','Chronic obstructive pulmonary disease with (acute) exacerbation','Y','0000-00-00 00:00:00'),(116812,10,'J43.9 ','Emphysema, unspecified','Y','0000-00-00 00:00:00'),(116813,10,'J44.0 ','Chronic obstructive pulmonary disease with (acute) lower respiratory infection','Y','0000-00-00 00:00:00'),(116811,10,'J43.8 ','Other emphysema','Y','0000-00-00 00:00:00'),(116809,10,'J43.1 ','Panlobular emphysema','Y','0000-00-00 00:00:00'),(116810,10,'J43.2 ','Centrilobular emphysema','Y','0000-00-00 00:00:00'),(116808,10,'J43.0 ','Unilateral pulmonary emphysema [MacLeod\'s syndrome]','Y','0000-00-00 00:00:00'),(116807,10,'J42','Unspecified chronic bronchitis','Y','0000-00-00 00:00:00'),(116805,10,'J41.1 ','Mucopurulent chronic bronchitis','Y','0000-00-00 00:00:00'),(116806,10,'J41.8 ','Mixed simple and mucopurulent chronic bronchitis','Y','0000-00-00 00:00:00'),(116804,10,'J41.0 ','Simple chronic bronchitis','Y','0000-00-00 00:00:00'),(116802,10,'J39.9 ','Disease of upper respiratory tract, unspecified','Y','0000-00-00 00:00:00'),(116803,10,'J40','Bronchitis, not specified as acute or chronic','Y','0000-00-00 00:00:00'),(116801,10,'J39.8 ','Other specified diseases of upper respiratory tract','Y','0000-00-00 00:00:00'),(116800,10,'J39.3 ','Upper respiratory tract hypersensitivity reaction, site unspecified','Y','0000-00-00 00:00:00'),(116799,10,'J39.2 ','Other diseases of pharynx','Y','0000-00-00 00:00:00'),(116797,10,'J39.0 ','Retropharyngeal and parapharyngeal abscess','Y','0000-00-00 00:00:00'),(116798,10,'J39.1 ','Other abscess of pharynx','Y','0000-00-00 00:00:00'),(116796,10,'J38.7 ','Other diseases of larynx','Y','0000-00-00 00:00:00'),(116794,10,'J38.5 ','Laryngeal spasm','Y','0000-00-00 00:00:00'),(116795,10,'J38.6 ','Stenosis of larynx','Y','0000-00-00 00:00:00'),(116792,10,'J38.3 ','Other diseases of vocal cords','Y','0000-00-00 00:00:00'),(116793,10,'J38.4 ','Edema of larynx','Y','0000-00-00 00:00:00'),(116791,10,'J38.2 ','Nodules of vocal cords','Y','0000-00-00 00:00:00'),(116790,10,'J38.1 ','Polyp of vocal cord and larynx','Y','0000-00-00 00:00:00'),(116789,10,'J38.02 ','Paralysis of vocal cords and larynx, bilateral','Y','0000-00-00 00:00:00'),(116788,10,'J38.01 ','Paralysis of vocal cords and larynx, unilateral','Y','0000-00-00 00:00:00'),(116787,10,'J38.00 ','Paralysis of vocal cords and larynx, unspecified','Y','0000-00-00 00:00:00'),(116786,10,'J37.1 ','Chronic laryngotracheitis','Y','0000-00-00 00:00:00'),(116784,10,'J36','Peritonsillar abscess','Y','0000-00-00 00:00:00'),(116785,10,'J37.0 ','Chronic laryngitis','Y','0000-00-00 00:00:00'),(116783,10,'J35.9 ','Chronic disease of tonsils and adenoids, unspecified','Y','0000-00-00 00:00:00'),(116782,10,'J35.8 ','Other chronic diseases of tonsils and adenoids','Y','0000-00-00 00:00:00'),(116781,10,'J35.3 ','Hypertrophy of tonsils with hypertrophy of adenoids','Y','0000-00-00 00:00:00'),(116780,10,'J35.2 ','Hypertrophy of adenoids','Y','0000-00-00 00:00:00'),(116779,10,'J35.1 ','Hypertrophy of tonsils','Y','0000-00-00 00:00:00'),(116778,10,'J35.03 ','Chronic tonsillitis and adenoiditis','Y','0000-00-00 00:00:00'),(116777,10,'J35.02 ','Chronic adenoiditis','Y','0000-00-00 00:00:00'),(116776,10,'J35.01 ','Chronic tonsillitis','Y','0000-00-00 00:00:00'),(116775,10,'J34.9 ','Unspecified disorder of nose and nasal sinuses','Y','0000-00-00 00:00:00'),(116774,10,'J34.89 ','Other specified disorders of nose and nasal sinuses','Y','0000-00-00 00:00:00'),(116773,10,'J34.81 ','Nasal mucositis (ulcerative)','Y','0000-00-00 00:00:00'),(116772,10,'J34.3 ','Hypertrophy of nasal turbinates','Y','0000-00-00 00:00:00'),(116771,10,'J34.2 ','Deviated nasal septum','Y','0000-00-00 00:00:00'),(116770,10,'J34.1 ','Cyst and mucocele of nose and nasal sinus','Y','0000-00-00 00:00:00'),(116768,10,'J33.9 ','Nasal polyp, unspecified','Y','0000-00-00 00:00:00'),(116769,10,'J34.0 ','Abscess, furuncle and carbuncle of nose','Y','0000-00-00 00:00:00'),(116766,10,'J33.1 ','Polypoid sinus degeneration','Y','0000-00-00 00:00:00'),(116767,10,'J33.8 ','Other polyp of sinus','Y','0000-00-00 00:00:00'),(116765,10,'J33.0 ','Polyp of nasal cavity','Y','0000-00-00 00:00:00'),(116763,10,'J32.8 ','Other chronic sinusitis','Y','0000-00-00 00:00:00'),(116764,10,'J32.9 ','Chronic sinusitis, unspecified','Y','0000-00-00 00:00:00'),(116761,10,'J32.3 ','Chronic sphenoidal sinusitis','Y','0000-00-00 00:00:00'),(116762,10,'J32.4 ','Chronic pansinusitis','Y','0000-00-00 00:00:00'),(116760,10,'J32.2 ','Chronic ethmoidal sinusitis','Y','0000-00-00 00:00:00'),(116758,10,'J32.0 ','Chronic maxillary sinusitis','Y','0000-00-00 00:00:00'),(116759,10,'J32.1 ','Chronic frontal sinusitis','Y','0000-00-00 00:00:00'),(116757,10,'J31.2 ','Chronic pharyngitis','Y','0000-00-00 00:00:00'),(116755,10,'J31.0 ','Chronic rhinitis','Y','0000-00-00 00:00:00'),(116756,10,'J31.1 ','Chronic nasopharyngitis','Y','0000-00-00 00:00:00'),(116754,10,'J30.9 ','Allergic rhinitis, unspecified','Y','0000-00-00 00:00:00'),(116753,10,'J30.89 ','Other allergic rhinitis','Y','0000-00-00 00:00:00'),(116751,10,'J30.5 ','Allergic rhinitis due to food','Y','0000-00-00 00:00:00'),(116752,10,'J30.81 ','Allergic rhinitis due to animal (cat) (dog) hair and dander','Y','0000-00-00 00:00:00'),(116750,10,'J30.2 ','Other seasonal allergic rhinitis','Y','0000-00-00 00:00:00'),(116748,10,'J30.0 ','Vasomotor rhinitis','Y','0000-00-00 00:00:00'),(116749,10,'J30.1 ','Allergic rhinitis due to pollen','Y','0000-00-00 00:00:00'),(116746,10,'J21.9 ','Acute bronchiolitis, unspecified','Y','0000-00-00 00:00:00'),(116747,10,'J22','Unspecified acute lower respiratory infection','Y','0000-00-00 00:00:00'),(116745,10,'J21.8 ','Acute bronchiolitis due to other specified organisms','Y','0000-00-00 00:00:00'),(116744,10,'J21.1 ','Acute bronchiolitis due to human metapneumovirus','Y','0000-00-00 00:00:00'),(116743,10,'J21.0 ','Acute bronchiolitis due to respiratory syncytial virus','Y','0000-00-00 00:00:00'),(116742,10,'J20.9 ','Acute bronchitis, unspecified','Y','0000-00-00 00:00:00'),(116741,10,'J20.8 ','Acute bronchitis due to other specified organisms','Y','0000-00-00 00:00:00'),(116740,10,'J20.7 ','Acute bronchitis due to echovirus','Y','0000-00-00 00:00:00'),(116739,10,'J20.6 ','Acute bronchitis due to rhinovirus','Y','0000-00-00 00:00:00'),(116738,10,'J20.5 ','Acute bronchitis due to respiratory syncytial virus','Y','0000-00-00 00:00:00'),(116737,10,'J20.4 ','Acute bronchitis due to parainfluenza virus','Y','0000-00-00 00:00:00'),(116736,10,'J20.3 ','Acute bronchitis due to coxsackievirus','Y','0000-00-00 00:00:00'),(116735,10,'J20.2 ','Acute bronchitis due to streptococcus','Y','0000-00-00 00:00:00'),(116734,10,'J20.1 ','Acute bronchitis due to Hemophilus influenzae','Y','0000-00-00 00:00:00'),(116733,10,'J20.0 ','Acute bronchitis due to Mycoplasma pneumoniae','Y','0000-00-00 00:00:00'),(116732,10,'J18.9 ','Pneumonia, unspecified organism','Y','0000-00-00 00:00:00'),(116730,10,'J18.2 ','Hypostatic pneumonia, unspecified organism','Y','0000-00-00 00:00:00'),(116731,10,'J18.8 ','Other pneumonia, unspecified organism','Y','0000-00-00 00:00:00'),(116729,10,'J18.1 ','Lobar pneumonia, unspecified organism','Y','0000-00-00 00:00:00'),(116727,10,'J17','Pneumonia in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(116728,10,'J18.0 ','Bronchopneumonia, unspecified organism','Y','0000-00-00 00:00:00'),(116726,10,'J16.8 ','Pneumonia due to other specified infectious organisms','Y','0000-00-00 00:00:00'),(116724,10,'J15.9 ','Unspecified bacterial pneumonia','Y','0000-00-00 00:00:00'),(116725,10,'J16.0 ','Chlamydial pneumonia','Y','0000-00-00 00:00:00'),(116723,10,'J15.8 ','Pneumonia due to other specified bacteria','Y','0000-00-00 00:00:00'),(116722,10,'J15.7 ','Pneumonia due to Mycoplasma pneumoniae','Y','0000-00-00 00:00:00'),(116721,10,'J15.69 ','Pneumonia due to other Gram-negative bacteria','Y','0000-00-00 00:00:00'),(116720,10,'J15.61 ','Pneumonia due to Acinetobacter baumannii','Y','0000-00-00 00:00:00'),(116719,10,'J15.5 ','Pneumonia due to Escherichia coli','Y','0000-00-00 00:00:00'),(116718,10,'J15.4 ','Pneumonia due to other streptococci','Y','0000-00-00 00:00:00'),(116717,10,'J15.3 ','Pneumonia due to streptococcus, group B','Y','0000-00-00 00:00:00'),(116716,10,'J15.29 ','Pneumonia due to other staphylococcus','Y','0000-00-00 00:00:00'),(116715,10,'J15.212 ','Pneumonia due to Methicillin resistant Staphylococcus aureus','Y','0000-00-00 00:00:00'),(116714,10,'J15.211 ','Pneumonia due to Methicillin susceptible Staphylococcus aureus','Y','0000-00-00 00:00:00'),(116713,10,'J15.20 ','Pneumonia due to staphylococcus, unspecified','Y','0000-00-00 00:00:00'),(116711,10,'J15.0 ','Pneumonia due to Klebsiella pneumoniae','Y','0000-00-00 00:00:00'),(116712,10,'J15.1 ','Pneumonia due to Pseudomonas','Y','0000-00-00 00:00:00'),(116710,10,'J14','Pneumonia due to Hemophilus influenzae','Y','0000-00-00 00:00:00'),(116709,10,'J13','Pneumonia due to Streptococcus pneumoniae','Y','0000-00-00 00:00:00'),(116707,10,'J12.89 ','Other viral pneumonia','Y','0000-00-00 00:00:00'),(116708,10,'J12.9 ','Viral pneumonia, unspecified','Y','0000-00-00 00:00:00'),(116706,10,'J12.82 ','Pneumonia due to coronavirus disease 2019','Y','0000-00-00 00:00:00'),(116705,10,'J12.81 ','Pneumonia due to SARS-associated coronavirus','Y','0000-00-00 00:00:00'),(116704,10,'J12.3 ','Human metapneumovirus pneumonia','Y','0000-00-00 00:00:00'),(116703,10,'J12.2 ','Parainfluenza virus pneumonia','Y','0000-00-00 00:00:00'),(116701,10,'J12.0 ','Adenoviral pneumonia','Y','0000-00-00 00:00:00'),(116702,10,'J12.1 ','Respiratory syncytial virus pneumonia','Y','0000-00-00 00:00:00'),(116700,10,'J11.89 ','Influenza due to unidentified influenza virus with other manifestations','Y','0000-00-00 00:00:00'),(116698,10,'J11.82 ','Influenza due to unidentified influenza virus with myocarditis','Y','0000-00-00 00:00:00'),(116699,10,'J11.83 ','Influenza due to unidentified influenza virus with otitis media','Y','0000-00-00 00:00:00'),(116697,10,'J11.81 ','Influenza due to unidentified influenza virus with encephalopathy','Y','0000-00-00 00:00:00'),(116696,10,'J11.2 ','Influenza due to unidentified influenza virus with gastrointestinal manifestations','Y','0000-00-00 00:00:00'),(116695,10,'J11.1 ','Influenza due to unidentified influenza virus with other respiratory manifestations','Y','0000-00-00 00:00:00'),(116694,10,'J11.08 ','Influenza due to unidentified influenza virus with specified pneumonia','Y','0000-00-00 00:00:00'),(116693,10,'J11.00 ','Influenza due to unidentified influenza virus with unspecified type of pneumonia','Y','0000-00-00 00:00:00'),(116692,10,'J10.89 ','Influenza due to other identified influenza virus with other manifestations','Y','0000-00-00 00:00:00'),(116691,10,'J10.83 ','Influenza due to other identified influenza virus with otitis media','Y','0000-00-00 00:00:00'),(116690,10,'J10.82 ','Influenza due to other identified influenza virus with myocarditis','Y','0000-00-00 00:00:00'),(116689,10,'J10.81 ','Influenza due to other identified influenza virus with encephalopathy','Y','0000-00-00 00:00:00'),(116688,10,'J10.2 ','Influenza due to other identified influenza virus with gastrointestinal manifestations','Y','0000-00-00 00:00:00'),(116687,10,'J10.1 ','Influenza due to other identified influenza virus with other respiratory manifestations','Y','0000-00-00 00:00:00'),(116686,10,'J10.08 ','Influenza due to other identified influenza virus with other specified pneumonia','Y','0000-00-00 00:00:00'),(116685,10,'J10.01 ','Influenza due to other identified influenza virus with the same other identified influenza virus pneumonia','Y','0000-00-00 00:00:00'),(116684,10,'J10.00 ','Influenza due to other identified influenza virus with unspecified type of pneumonia','Y','0000-00-00 00:00:00'),(116683,10,'J09.X9 ','Influenza due to identified novel influenza A virus with other manifestations','Y','0000-00-00 00:00:00'),(116682,10,'J09.X3 ','Influenza due to identified novel influenza A virus with gastrointestinal manifestations','Y','0000-00-00 00:00:00'),(116680,10,'J09.X1 ','Influenza due to identified novel influenza A virus with pneumonia','Y','0000-00-00 00:00:00'),(116681,10,'J09.X2 ','Influenza due to identified novel influenza A virus with other respiratory manifestations','Y','0000-00-00 00:00:00'),(116678,10,'J06.0 ','Acute laryngopharyngitis','Y','0000-00-00 00:00:00'),(116679,10,'J06.9 ','Acute upper respiratory infection, unspecified','Y','0000-00-00 00:00:00'),(116676,10,'J05.10 ','Acute epiglottitis without obstruction','Y','0000-00-00 00:00:00'),(116677,10,'J05.11 ','Acute epiglottitis with obstruction','Y','0000-00-00 00:00:00'),(116674,10,'J04.31 ','Supraglottitis, unspecified, with obstruction','Y','0000-00-00 00:00:00'),(116675,10,'J05.0 ','Acute obstructive laryngitis [croup]','Y','0000-00-00 00:00:00'),(116672,10,'J04.2 ','Acute laryngotracheitis','Y','0000-00-00 00:00:00'),(116673,10,'J04.30 ','Supraglottitis, unspecified, without obstruction','Y','0000-00-00 00:00:00'),(116670,10,'J04.10 ','Acute tracheitis without obstruction','Y','0000-00-00 00:00:00'),(116671,10,'J04.11 ','Acute tracheitis with obstruction','Y','0000-00-00 00:00:00'),(116669,10,'J04.0 ','Acute laryngitis','Y','0000-00-00 00:00:00'),(116667,10,'J03.90 ','Acute tonsillitis, unspecified','Y','0000-00-00 00:00:00'),(116668,10,'J03.91 ','Acute recurrent tonsillitis, unspecified','Y','0000-00-00 00:00:00'),(116666,10,'J03.81 ','Acute recurrent tonsillitis due to other specified organisms','Y','0000-00-00 00:00:00'),(116664,10,'J03.01 ','Acute recurrent streptococcal tonsillitis','Y','0000-00-00 00:00:00'),(116665,10,'J03.80 ','Acute tonsillitis due to other specified organisms','Y','0000-00-00 00:00:00'),(116663,10,'J03.00 ','Acute streptococcal tonsillitis, unspecified','Y','0000-00-00 00:00:00'),(116661,10,'J02.8 ','Acute pharyngitis due to other specified organisms','Y','0000-00-00 00:00:00'),(116662,10,'J02.9 ','Acute pharyngitis, unspecified','Y','0000-00-00 00:00:00'),(116660,10,'J02.0 ','Streptococcal pharyngitis','Y','0000-00-00 00:00:00'),(116658,10,'J01.90 ','Acute sinusitis, unspecified','Y','0000-00-00 00:00:00'),(116659,10,'J01.91 ','Acute recurrent sinusitis, unspecified','Y','0000-00-00 00:00:00'),(116656,10,'J01.80 ','Other acute sinusitis','Y','0000-00-00 00:00:00'),(116657,10,'J01.81 ','Other acute recurrent sinusitis','Y','0000-00-00 00:00:00'),(116654,10,'J01.40 ','Acute pansinusitis, unspecified','Y','0000-00-00 00:00:00'),(116655,10,'J01.41 ','Acute recurrent pansinusitis','Y','0000-00-00 00:00:00'),(116653,10,'J01.31 ','Acute recurrent sphenoidal sinusitis','Y','0000-00-00 00:00:00'),(116651,10,'J01.21 ','Acute recurrent ethmoidal sinusitis','Y','0000-00-00 00:00:00'),(116652,10,'J01.30 ','Acute sphenoidal sinusitis, unspecified','Y','0000-00-00 00:00:00'),(116650,10,'J01.20 ','Acute ethmoidal sinusitis, unspecified','Y','0000-00-00 00:00:00'),(116648,10,'J01.10 ','Acute frontal sinusitis, unspecified','Y','0000-00-00 00:00:00'),(116649,10,'J01.11 ','Acute recurrent frontal sinusitis','Y','0000-00-00 00:00:00'),(116647,10,'J01.01 ','Acute recurrent maxillary sinusitis','Y','0000-00-00 00:00:00'),(116645,10,'J00','Acute nasopharyngitis [common cold]','Y','0000-00-00 00:00:00'),(116646,10,'J01.00 ','Acute maxillary sinusitis, unspecified','Y','0000-00-00 00:00:00'),(116643,10,'I99.8 ','Other disorder of circulatory system','Y','0000-00-00 00:00:00'),(116644,10,'I99.9 ','Unspecified disorder of circulatory system','Y','0000-00-00 00:00:00'),(116642,10,'I97.89 ','Other postprocedural complications and disorders of the circulatory system, not elsewhere classified','Y','0000-00-00 00:00:00'),(116641,10,'I97.88 ','Other intraoperative complications of the circulatory system, not elsewhere classified','Y','0000-00-00 00:00:00'),(116640,10,'I97.821 ','Postprocedural cerebrovascular infarction following other surgery','Y','0000-00-00 00:00:00'),(116639,10,'I97.820 ','Postprocedural cerebrovascular infarction following cardiac surgery','Y','0000-00-00 00:00:00'),(116638,10,'I97.811 ','Intraoperative cerebrovascular infarction during other surgery','Y','0000-00-00 00:00:00'),(116637,10,'I97.810 ','Intraoperative cerebrovascular infarction during cardiac surgery','Y','0000-00-00 00:00:00'),(116636,10,'I97.791 ','Other intraoperative cardiac functional disturbances during other surgery','Y','0000-00-00 00:00:00'),(116634,10,'I97.711 ','Intraoperative cardiac arrest during other surgery','Y','0000-00-00 00:00:00'),(116635,10,'I97.790 ','Other intraoperative cardiac functional disturbances during cardiac surgery','Y','0000-00-00 00:00:00'),(116633,10,'I97.710 ','Intraoperative cardiac arrest during cardiac surgery','Y','0000-00-00 00:00:00'),(116632,10,'I97.648 ','Postprocedural seroma of a circulatory system organ or structure following other circulatory system procedure','Y','0000-00-00 00:00:00'),(116631,10,'I97.641 ','Postprocedural seroma of a circulatory system organ or structure following cardiac bypass','Y','0000-00-00 00:00:00'),(116630,10,'I97.640 ','Postprocedural seroma of a circulatory system organ or structure following a cardiac catheterization','Y','0000-00-00 00:00:00'),(116629,10,'I97.638 ','Postprocedural hematoma of a circulatory system organ or structure following other circulatory system procedure','Y','0000-00-00 00:00:00'),(116628,10,'I97.631 ','Postprocedural hematoma of a circulatory system organ or structure following cardiac bypass','Y','0000-00-00 00:00:00'),(116627,10,'I97.630 ','Postprocedural hematoma of a circulatory system organ or structure following a cardiac catheterization','Y','0000-00-00 00:00:00'),(116626,10,'I97.622 ','Postprocedural seroma of a circulatory system organ or structure following other procedure','Y','0000-00-00 00:00:00'),(116625,10,'I97.621 ','Postprocedural hematoma of a circulatory system organ or structure following other procedure','Y','0000-00-00 00:00:00'),(116624,10,'I97.620 ','Postprocedural hemorrhage of a circulatory system organ or structure following other procedure','Y','0000-00-00 00:00:00'),(116623,10,'I97.618 ','Postprocedural hemorrhage of a circulatory system organ or structure following other circulatory system procedure','Y','0000-00-00 00:00:00'),(116622,10,'I97.611 ','Postprocedural hemorrhage of a circulatory system organ or structure following cardiac bypass','Y','0000-00-00 00:00:00'),(116621,10,'I97.610 ','Postprocedural hemorrhage of a circulatory system organ or structure following a cardiac catheterization','Y','0000-00-00 00:00:00'),(116620,10,'I97.52 ','Accidental puncture and laceration of a circulatory system organ or structure during other procedure','Y','0000-00-00 00:00:00'),(116619,10,'I97.51 ','Accidental puncture and laceration of a circulatory system organ or structure during a circulatory system procedure','Y','0000-00-00 00:00:00'),(116618,10,'I97.42 ','Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating other procedure','Y','0000-00-00 00:00:00'),(116617,10,'I97.418 ','Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating other circulatory system procedure','Y','0000-00-00 00:00:00'),(116616,10,'I97.411 ','Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating a cardiac bypass','Y','0000-00-00 00:00:00'),(116614,10,'I97.3 ','Postprocedural hypertension','Y','0000-00-00 00:00:00'),(116615,10,'I97.410 ','Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating a cardiac catheterization','Y','0000-00-00 00:00:00'),(116613,10,'I97.2 ','Postmastectomy lymphedema syndrome','Y','0000-00-00 00:00:00'),(116612,10,'I97.191 ','Other postprocedural cardiac functional disturbances following other surgery','Y','0000-00-00 00:00:00'),(116611,10,'I97.190 ','Other postprocedural cardiac functional disturbances following cardiac surgery','Y','0000-00-00 00:00:00'),(116610,10,'I97.131 ','Postprocedural heart failure following other surgery','Y','0000-00-00 00:00:00'),(116608,10,'I97.121 ','Postprocedural cardiac arrest following other surgery','Y','0000-00-00 00:00:00'),(116609,10,'I97.130 ','Postprocedural heart failure following cardiac surgery','Y','0000-00-00 00:00:00'),(116607,10,'I97.120 ','Postprocedural cardiac arrest following cardiac surgery','Y','0000-00-00 00:00:00'),(116606,10,'I97.111 ','Postprocedural cardiac insufficiency following other surgery','Y','0000-00-00 00:00:00'),(116604,10,'I97.0 ','Postcardiotomy syndrome','Y','0000-00-00 00:00:00'),(116605,10,'I97.110 ','Postprocedural cardiac insufficiency following cardiac surgery','Y','0000-00-00 00:00:00'),(116601,10,'I95.89 ','Other hypotension','Y','0000-00-00 00:00:00'),(116602,10,'I95.9 ','Hypotension, unspecified','Y','0000-00-00 00:00:00'),(116603,10,'I96','Gangrene, not elsewhere classified','Y','0000-00-00 00:00:00'),(116599,10,'I95.3 ','Hypotension of hemodialysis','Y','0000-00-00 00:00:00'),(116600,10,'I95.81 ','Postprocedural hypotension','Y','0000-00-00 00:00:00'),(116597,10,'I95.1 ','Orthostatic hypotension','Y','0000-00-00 00:00:00'),(116598,10,'I95.2 ','Hypotension due to drugs','Y','0000-00-00 00:00:00'),(116596,10,'I95.0 ','Idiopathic hypotension','Y','0000-00-00 00:00:00'),(116595,10,'I89.9 ','Noninfective disorder of lymphatic vessels and lymph nodes, unspecified','Y','0000-00-00 00:00:00'),(116593,10,'I89.1 ','Lymphangitis','Y','0000-00-00 00:00:00'),(116594,10,'I89.8 ','Other specified noninfective disorders of lymphatic vessels and lymph nodes','Y','0000-00-00 00:00:00'),(116591,10,'I88.9 ','Nonspecific lymphadenitis, unspecified','Y','0000-00-00 00:00:00'),(116592,10,'I89.0 ','Lymphedema, not elsewhere classified','Y','0000-00-00 00:00:00'),(116590,10,'I88.8 ','Other nonspecific lymphadenitis','Y','0000-00-00 00:00:00'),(116588,10,'I88.0 ','Nonspecific mesenteric lymphadenitis','Y','0000-00-00 00:00:00'),(116589,10,'I88.1 ','Chronic lymphadenitis, except mesenteric','Y','0000-00-00 00:00:00'),(116586,10,'I87.8 ','Other specified disorders of veins','Y','0000-00-00 00:00:00'),(116587,10,'I87.9 ','Disorder of vein, unspecified','Y','0000-00-00 00:00:00'),(116585,10,'I87.399 ','Chronic venous hypertension (idiopathic) with other complications of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116584,10,'I87.393 ','Chronic venous hypertension (idiopathic) with other complications of bilateral lower extremity','Y','0000-00-00 00:00:00'),(116583,10,'I87.392 ','Chronic venous hypertension (idiopathic) with other complications of left lower extremity','Y','0000-00-00 00:00:00'),(116582,10,'I87.391 ','Chronic venous hypertension (idiopathic) with other complications of right lower extremity','Y','0000-00-00 00:00:00'),(116581,10,'I87.339 ','Chronic venous hypertension (idiopathic) with ulcer and inflammation of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116580,10,'I87.333 ','Chronic venous hypertension (idiopathic) with ulcer and inflammation of bilateral lower extremity','Y','0000-00-00 00:00:00'),(116579,10,'I87.332 ','Chronic venous hypertension (idiopathic) with ulcer and inflammation of left lower extremity','Y','0000-00-00 00:00:00'),(116578,10,'I87.331 ','Chronic venous hypertension (idiopathic) with ulcer and inflammation of right lower extremity','Y','0000-00-00 00:00:00'),(116577,10,'I87.329 ','Chronic venous hypertension (idiopathic) with inflammation of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116576,10,'I87.323 ','Chronic venous hypertension (idiopathic) with inflammation of bilateral lower extremity','Y','0000-00-00 00:00:00'),(116575,10,'I87.322 ','Chronic venous hypertension (idiopathic) with inflammation of left lower extremity','Y','0000-00-00 00:00:00'),(116574,10,'I87.321 ','Chronic venous hypertension (idiopathic) with inflammation of right lower extremity','Y','0000-00-00 00:00:00'),(116573,10,'I87.319 ','Chronic venous hypertension (idiopathic) with ulcer of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116572,10,'I87.313 ','Chronic venous hypertension (idiopathic) with ulcer of bilateral lower extremity','Y','0000-00-00 00:00:00'),(116571,10,'I87.312 ','Chronic venous hypertension (idiopathic) with ulcer of left lower extremity','Y','0000-00-00 00:00:00'),(116570,10,'I87.311 ','Chronic venous hypertension (idiopathic) with ulcer of right lower extremity','Y','0000-00-00 00:00:00'),(116569,10,'I87.309 ','Chronic venous hypertension (idiopathic) without complications of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116568,10,'I87.303 ','Chronic venous hypertension (idiopathic) without complications of bilateral lower extremity','Y','0000-00-00 00:00:00'),(116567,10,'I87.302 ','Chronic venous hypertension (idiopathic) without complications of left lower extremity','Y','0000-00-00 00:00:00'),(116565,10,'I87.2 ','Venous insufficiency (chronic) (peripheral)','Y','0000-00-00 00:00:00'),(116566,10,'I87.301 ','Chronic venous hypertension (idiopathic) without complications of right lower extremity','Y','0000-00-00 00:00:00'),(116564,10,'I87.1 ','Compression of vein','Y','0000-00-00 00:00:00'),(116563,10,'I87.099 ','Postthrombotic syndrome with other complications of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116561,10,'I87.092 ','Postthrombotic syndrome with other complications of left lower extremity','Y','0000-00-00 00:00:00'),(116562,10,'I87.093 ','Postthrombotic syndrome with other complications of bilateral lower extremity','Y','0000-00-00 00:00:00'),(116560,10,'I87.091 ','Postthrombotic syndrome with other complications of right lower extremity','Y','0000-00-00 00:00:00'),(116559,10,'I87.039 ','Postthrombotic syndrome with ulcer and inflammation of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116558,10,'I87.033 ','Postthrombotic syndrome with ulcer and inflammation of bilateral lower extremity','Y','0000-00-00 00:00:00'),(116557,10,'I87.032 ','Postthrombotic syndrome with ulcer and inflammation of left lower extremity','Y','0000-00-00 00:00:00'),(116556,10,'I87.031 ','Postthrombotic syndrome with ulcer and inflammation of right lower extremity','Y','0000-00-00 00:00:00'),(116555,10,'I87.029 ','Postthrombotic syndrome with inflammation of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116554,10,'I87.023 ','Postthrombotic syndrome with inflammation of bilateral lower extremity','Y','0000-00-00 00:00:00'),(116553,10,'I87.022 ','Postthrombotic syndrome with inflammation of left lower extremity','Y','0000-00-00 00:00:00'),(116552,10,'I87.021 ','Postthrombotic syndrome with inflammation of right lower extremity','Y','0000-00-00 00:00:00'),(116551,10,'I87.019 ','Postthrombotic syndrome with ulcer of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116550,10,'I87.013 ','Postthrombotic syndrome with ulcer of bilateral lower extremity','Y','0000-00-00 00:00:00'),(116548,10,'I87.011 ','Postthrombotic syndrome with ulcer of right lower extremity','Y','0000-00-00 00:00:00'),(116549,10,'I87.012 ','Postthrombotic syndrome with ulcer of left lower extremity','Y','0000-00-00 00:00:00'),(116547,10,'I87.009 ','Postthrombotic syndrome without complications of unspecified extremity','Y','0000-00-00 00:00:00'),(116546,10,'I87.003 ','Postthrombotic syndrome without complications of bilateral lower extremity','Y','0000-00-00 00:00:00'),(116545,10,'I87.002 ','Postthrombotic syndrome without complications of left lower extremity','Y','0000-00-00 00:00:00'),(116543,10,'I86.8 ','Varicose veins of other specified sites','Y','0000-00-00 00:00:00'),(116544,10,'I87.001 ','Postthrombotic syndrome without complications of right lower extremity','Y','0000-00-00 00:00:00'),(116540,10,'I86.2 ','Pelvic varices','Y','0000-00-00 00:00:00'),(116541,10,'I86.3 ','Vulval varices','Y','0000-00-00 00:00:00'),(116542,10,'I86.4 ','Gastric varices','Y','0000-00-00 00:00:00'),(116538,10,'I86.0 ','Sublingual varices','Y','0000-00-00 00:00:00'),(116539,10,'I86.1 ','Scrotal varices','Y','0000-00-00 00:00:00'),(116537,10,'I85.11 ','Secondary esophageal varices with bleeding','Y','0000-00-00 00:00:00'),(116535,10,'I85.01 ','Esophageal varices with bleeding','Y','0000-00-00 00:00:00'),(116536,10,'I85.10 ','Secondary esophageal varices without bleeding','Y','0000-00-00 00:00:00'),(116534,10,'I85.00 ','Esophageal varices without bleeding','Y','0000-00-00 00:00:00'),(116532,10,'I83.92 ','Asymptomatic varicose veins of left lower extremity','Y','0000-00-00 00:00:00'),(116533,10,'I83.93 ','Asymptomatic varicose veins of bilateral lower extremities','Y','0000-00-00 00:00:00'),(116531,10,'I83.91 ','Asymptomatic varicose veins of right lower extremity','Y','0000-00-00 00:00:00'),(116530,10,'I83.90 ','Asymptomatic varicose veins of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116528,10,'I83.893 ','Varicose veins of bilateral lower extremities with other complications','Y','0000-00-00 00:00:00'),(116529,10,'I83.899 ','Varicose veins of unspecified lower extremity with other complications','Y','0000-00-00 00:00:00'),(116527,10,'I83.892 ','Varicose veins of left lower extremity with other complications','Y','0000-00-00 00:00:00'),(116525,10,'I83.819 ','Varicose veins of unspecified lower extremity with pain','Y','0000-00-00 00:00:00'),(116526,10,'I83.891 ','Varicose veins of right lower extremity with other complications','Y','0000-00-00 00:00:00'),(116524,10,'I83.813 ','Varicose veins of bilateral lower extremities with pain','Y','0000-00-00 00:00:00'),(116522,10,'I83.811 ','Varicose veins of right lower extremity with pain','Y','0000-00-00 00:00:00'),(116523,10,'I83.812 ','Varicose veins of left lower extremity with pain','Y','0000-00-00 00:00:00'),(116521,10,'I83.229 ','Varicose veins of left lower extremity with both ulcer of unspecified site and inflammation','Y','0000-00-00 00:00:00'),(116520,10,'I83.228 ','Varicose veins of left lower extremity with both ulcer of other part of lower extremity and inflammation','Y','0000-00-00 00:00:00'),(116519,10,'I83.225 ','Varicose veins of left lower extremity with both ulcer other part of foot and inflammation','Y','0000-00-00 00:00:00'),(116518,10,'I83.224 ','Varicose veins of left lower extremity with both ulcer of heel and midfoot and inflammation','Y','0000-00-00 00:00:00'),(116517,10,'I83.223 ','Varicose veins of left lower extremity with both ulcer of ankle and inflammation','Y','0000-00-00 00:00:00'),(116516,10,'I83.222 ','Varicose veins of left lower extremity with both ulcer of calf and inflammation','Y','0000-00-00 00:00:00'),(116515,10,'I83.221 ','Varicose veins of left lower extremity with both ulcer of thigh and inflammation','Y','0000-00-00 00:00:00'),(116514,10,'I83.219 ','Varicose veins of right lower extremity with both ulcer of unspecified site and inflammation','Y','0000-00-00 00:00:00'),(116513,10,'I83.218 ','Varicose veins of right lower extremity with both ulcer of other part of lower extremity and inflammation','Y','0000-00-00 00:00:00'),(116512,10,'I83.215 ','Varicose veins of right lower extremity with both ulcer other part of foot and inflammation','Y','0000-00-00 00:00:00'),(116511,10,'I83.214 ','Varicose veins of right lower extremity with both ulcer of heel and midfoot and inflammation','Y','0000-00-00 00:00:00'),(116510,10,'I83.213 ','Varicose veins of right lower extremity with both ulcer of ankle and inflammation','Y','0000-00-00 00:00:00'),(116509,10,'I83.212 ','Varicose veins of right lower extremity with both ulcer of calf and inflammation','Y','0000-00-00 00:00:00'),(116508,10,'I83.211 ','Varicose veins of right lower extremity with both ulcer of thigh and inflammation','Y','0000-00-00 00:00:00'),(116507,10,'I83.209 ','Varicose veins of unspecified lower extremity with both ulcer of unspecified site and inflammation','Y','0000-00-00 00:00:00'),(116506,10,'I83.208 ','Varicose veins of unspecified lower extremity with both ulcer of other part of lower extremity and inflammation','Y','0000-00-00 00:00:00'),(116505,10,'I83.205 ','Varicose veins of unspecified lower extremity with both ulcer other part of foot and inflammation','Y','0000-00-00 00:00:00'),(116504,10,'I83.204 ','Varicose veins of unspecified lower extremity with both ulcer of heel and midfoot and inflammation','Y','0000-00-00 00:00:00'),(116503,10,'I83.203 ','Varicose veins of unspecified lower extremity with both ulcer of ankle and inflammation','Y','0000-00-00 00:00:00'),(116502,10,'I83.202 ','Varicose veins of unspecified lower extremity with both ulcer of calf and inflammation','Y','0000-00-00 00:00:00'),(116501,10,'I83.201 ','Varicose veins of unspecified lower extremity with both ulcer of thigh and inflammation','Y','0000-00-00 00:00:00'),(116500,10,'I83.12 ','Varicose veins of left lower extremity with inflammation','Y','0000-00-00 00:00:00'),(116499,10,'I83.11 ','Varicose veins of right lower extremity with inflammation','Y','0000-00-00 00:00:00'),(116498,10,'I83.10 ','Varicose veins of unspecified lower extremity with inflammation','Y','0000-00-00 00:00:00'),(116497,10,'I83.029 ','Varicose veins of left lower extremity with ulcer of unspecified site','Y','0000-00-00 00:00:00'),(116496,10,'I83.028 ','Varicose veins of left lower extremity with ulcer other part of lower leg','Y','0000-00-00 00:00:00'),(116495,10,'I83.025 ','Varicose veins of left lower extremity with ulcer other part of foot','Y','0000-00-00 00:00:00'),(116494,10,'I83.024 ','Varicose veins of left lower extremity with ulcer of heel and midfoot','Y','0000-00-00 00:00:00'),(116493,10,'I83.023 ','Varicose veins of left lower extremity with ulcer of ankle','Y','0000-00-00 00:00:00'),(116492,10,'I83.022 ','Varicose veins of left lower extremity with ulcer of calf','Y','0000-00-00 00:00:00'),(116491,10,'I83.021 ','Varicose veins of left lower extremity with ulcer of thigh','Y','0000-00-00 00:00:00'),(116490,10,'I83.019 ','Varicose veins of right lower extremity with ulcer of unspecified site','Y','0000-00-00 00:00:00'),(116489,10,'I83.018 ','Varicose veins of right lower extremity with ulcer other part of lower leg','Y','0000-00-00 00:00:00'),(116488,10,'I83.015 ','Varicose veins of right lower extremity with ulcer other part of foot','Y','0000-00-00 00:00:00'),(116487,10,'I83.014 ','Varicose veins of right lower extremity with ulcer of heel and midfoot','Y','0000-00-00 00:00:00'),(116486,10,'I83.013 ','Varicose veins of right lower extremity with ulcer of ankle','Y','0000-00-00 00:00:00'),(116485,10,'I83.012 ','Varicose veins of right lower extremity with ulcer of calf','Y','0000-00-00 00:00:00'),(116484,10,'I83.011 ','Varicose veins of right lower extremity with ulcer of thigh','Y','0000-00-00 00:00:00'),(116483,10,'I83.009 ','Varicose veins of unspecified lower extremity with ulcer of unspecified site','Y','0000-00-00 00:00:00'),(116482,10,'I83.008 ','Varicose veins of unspecified lower extremity with ulcer other part of lower leg','Y','0000-00-00 00:00:00'),(116481,10,'I83.005 ','Varicose veins of unspecified lower extremity with ulcer other part of foot','Y','0000-00-00 00:00:00'),(116480,10,'I83.004 ','Varicose veins of unspecified lower extremity with ulcer of heel and midfoot','Y','0000-00-00 00:00:00'),(116479,10,'I83.003 ','Varicose veins of unspecified lower extremity with ulcer of ankle','Y','0000-00-00 00:00:00'),(116478,10,'I83.002 ','Varicose veins of unspecified lower extremity with ulcer of calf','Y','0000-00-00 00:00:00'),(116477,10,'I83.001 ','Varicose veins of unspecified lower extremity with ulcer of thigh','Y','0000-00-00 00:00:00'),(116476,10,'I82.91 ','Chronic embolism and thrombosis of unspecified vein','Y','0000-00-00 00:00:00'),(116475,10,'I82.90 ','Acute embolism and thrombosis of unspecified vein','Y','0000-00-00 00:00:00'),(116474,10,'I82.891 ','Chronic embolism and thrombosis of other specified veins','Y','0000-00-00 00:00:00'),(116473,10,'I82.890 ','Acute embolism and thrombosis of other specified veins','Y','0000-00-00 00:00:00'),(116472,10,'I82.819 ','Embolism and thrombosis of superficial veins of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116471,10,'I82.813 ','Embolism and thrombosis of superficial veins of lower extremities, bilateral','Y','0000-00-00 00:00:00'),(116470,10,'I82.812 ','Embolism and thrombosis of superficial veins of left lower extremity','Y','0000-00-00 00:00:00'),(116469,10,'I82.811 ','Embolism and thrombosis of superficial veins of right lower extremity','Y','0000-00-00 00:00:00'),(116468,10,'I82.C29 ','Chronic embolism and thrombosis of unspecified internal jugular vein','Y','0000-00-00 00:00:00'),(116467,10,'I82.C23 ','Chronic embolism and thrombosis of internal jugular vein, bilateral','Y','0000-00-00 00:00:00'),(116466,10,'I82.C22 ','Chronic embolism and thrombosis of left internal jugular vein','Y','0000-00-00 00:00:00'),(116465,10,'I82.C21 ','Chronic embolism and thrombosis of right internal jugular vein','Y','0000-00-00 00:00:00'),(116464,10,'I82.C19 ','Acute embolism and thrombosis of unspecified internal jugular vein','Y','0000-00-00 00:00:00'),(116463,10,'I82.C13 ','Acute embolism and thrombosis of internal jugular vein, bilateral','Y','0000-00-00 00:00:00'),(116462,10,'I82.C12 ','Acute embolism and thrombosis of left internal jugular vein','Y','0000-00-00 00:00:00'),(116461,10,'I82.C11 ','Acute embolism and thrombosis of right internal jugular vein','Y','0000-00-00 00:00:00'),(116460,10,'I82.B29 ','Chronic embolism and thrombosis of unspecified subclavian vein','Y','0000-00-00 00:00:00'),(116459,10,'I82.B23 ','Chronic embolism and thrombosis of subclavian vein, bilateral','Y','0000-00-00 00:00:00'),(116458,10,'I82.B22 ','Chronic embolism and thrombosis of left subclavian vein','Y','0000-00-00 00:00:00'),(116457,10,'I82.B21 ','Chronic embolism and thrombosis of right subclavian vein','Y','0000-00-00 00:00:00'),(116456,10,'I82.B19 ','Acute embolism and thrombosis of unspecified subclavian vein','Y','0000-00-00 00:00:00'),(116455,10,'I82.B13 ','Acute embolism and thrombosis of subclavian vein, bilateral','Y','0000-00-00 00:00:00'),(116454,10,'I82.B12 ','Acute embolism and thrombosis of left subclavian vein','Y','0000-00-00 00:00:00'),(116453,10,'I82.B11 ','Acute embolism and thrombosis of right subclavian vein','Y','0000-00-00 00:00:00'),(116452,10,'I82.A29 ','Chronic embolism and thrombosis of unspecified axillary vein','Y','0000-00-00 00:00:00'),(116451,10,'I82.A23 ','Chronic embolism and thrombosis of axillary vein, bilateral','Y','0000-00-00 00:00:00'),(116450,10,'I82.A22 ','Chronic embolism and thrombosis of left axillary vein','Y','0000-00-00 00:00:00'),(116449,10,'I82.A21 ','Chronic embolism and thrombosis of right axillary vein','Y','0000-00-00 00:00:00'),(116448,10,'I82.A19 ','Acute embolism and thrombosis of unspecified axillary vein','Y','0000-00-00 00:00:00'),(116447,10,'I82.A13 ','Acute embolism and thrombosis of axillary vein, bilateral','Y','0000-00-00 00:00:00'),(116446,10,'I82.A12 ','Acute embolism and thrombosis of left axillary vein','Y','0000-00-00 00:00:00'),(116445,10,'I82.A11 ','Acute embolism and thrombosis of right axillary vein','Y','0000-00-00 00:00:00'),(116444,10,'I82.729 ','Chronic embolism and thrombosis of deep veins of unspecified upper extremity','Y','0000-00-00 00:00:00'),(116443,10,'I82.723 ','Chronic embolism and thrombosis of deep veins of upper extremity, bilateral','Y','0000-00-00 00:00:00'),(116442,10,'I82.722 ','Chronic embolism and thrombosis of deep veins of left upper extremity','Y','0000-00-00 00:00:00'),(116441,10,'I82.721 ','Chronic embolism and thrombosis of deep veins of right upper extremity','Y','0000-00-00 00:00:00'),(116440,10,'I82.719 ','Chronic embolism and thrombosis of superficial veins of unspecified upper extremity','Y','0000-00-00 00:00:00'),(116439,10,'I82.713 ','Chronic embolism and thrombosis of superficial veins of upper extremity, bilateral','Y','0000-00-00 00:00:00'),(116438,10,'I82.712 ','Chronic embolism and thrombosis of superficial veins of left upper extremity','Y','0000-00-00 00:00:00'),(116437,10,'I82.711 ','Chronic embolism and thrombosis of superficial veins of right upper extremity','Y','0000-00-00 00:00:00'),(116436,10,'I82.709 ','Chronic embolism and thrombosis of unspecified veins of unspecified upper extremity','Y','0000-00-00 00:00:00'),(116435,10,'I82.703 ','Chronic embolism and thrombosis of unspecified veins of upper extremity, bilateral','Y','0000-00-00 00:00:00'),(116434,10,'I82.702 ','Chronic embolism and thrombosis of unspecified veins of left upper extremity','Y','0000-00-00 00:00:00'),(116433,10,'I82.701 ','Chronic embolism and thrombosis of unspecified veins of right upper extremity','Y','0000-00-00 00:00:00'),(116432,10,'I82.629 ','Acute embolism and thrombosis of deep veins of unspecified upper extremity','Y','0000-00-00 00:00:00'),(116431,10,'I82.623 ','Acute embolism and thrombosis of deep veins of upper extremity, bilateral','Y','0000-00-00 00:00:00'),(116430,10,'I82.622 ','Acute embolism and thrombosis of deep veins of left upper extremity','Y','0000-00-00 00:00:00'),(116429,10,'I82.621 ','Acute embolism and thrombosis of deep veins of right upper extremity','Y','0000-00-00 00:00:00'),(116428,10,'I82.619 ','Acute embolism and thrombosis of superficial veins of unspecified upper extremity','Y','0000-00-00 00:00:00'),(116427,10,'I82.613 ','Acute embolism and thrombosis of superficial veins of upper extremity, bilateral','Y','0000-00-00 00:00:00'),(116426,10,'I82.612 ','Acute embolism and thrombosis of superficial veins of left upper extremity','Y','0000-00-00 00:00:00'),(116425,10,'I82.611 ','Acute embolism and thrombosis of superficial veins of right upper extremity','Y','0000-00-00 00:00:00'),(116424,10,'I82.609 ','Acute embolism and thrombosis of unspecified veins of unspecified upper extremity','Y','0000-00-00 00:00:00'),(116423,10,'I82.603 ','Acute embolism and thrombosis of unspecified veins of upper extremity, bilateral','Y','0000-00-00 00:00:00'),(116422,10,'I82.602 ','Acute embolism and thrombosis of unspecified veins of left upper extremity','Y','0000-00-00 00:00:00'),(116421,10,'I82.601 ','Acute embolism and thrombosis of unspecified veins of right upper extremity','Y','0000-00-00 00:00:00'),(116420,10,'I82.5Z9 ','Chronic embolism and thrombosis of unspecified deep veins of unspecified distal lower extremity','Y','0000-00-00 00:00:00'),(116419,10,'I82.5Z3 ','Chronic embolism and thrombosis of unspecified deep veins of distal lower extremity, bilateral','Y','0000-00-00 00:00:00'),(116418,10,'I82.5Z2 ','Chronic embolism and thrombosis of unspecified deep veins of left distal lower extremity','Y','0000-00-00 00:00:00'),(116417,10,'I82.5Z1 ','Chronic embolism and thrombosis of unspecified deep veins of right distal lower extremity','Y','0000-00-00 00:00:00'),(116416,10,'I82.5Y9 ','Chronic embolism and thrombosis of unspecified deep veins of unspecified proximal lower extremity','Y','0000-00-00 00:00:00'),(116415,10,'I82.5Y3 ','Chronic embolism and thrombosis of unspecified deep veins of proximal lower extremity, bilateral','Y','0000-00-00 00:00:00'),(116414,10,'I82.5Y2 ','Chronic embolism and thrombosis of unspecified deep veins of left proximal lower extremity','Y','0000-00-00 00:00:00'),(116413,10,'I82.5Y1 ','Chronic embolism and thrombosis of unspecified deep veins of right proximal lower extremity','Y','0000-00-00 00:00:00'),(116412,10,'I82.599 ','Chronic embolism and thrombosis of other specified deep vein of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116411,10,'I82.593 ','Chronic embolism and thrombosis of other specified deep vein of lower extremity, bilateral','Y','0000-00-00 00:00:00'),(116410,10,'I82.592 ','Chronic embolism and thrombosis of other specified deep vein of left lower extremity','Y','0000-00-00 00:00:00'),(116409,10,'I82.591 ','Chronic embolism and thrombosis of other specified deep vein of right lower extremity','Y','0000-00-00 00:00:00'),(116408,10,'I82.569 ','Chronic embolism and thrombosis of unspecified calf muscular vein','Y','0000-00-00 00:00:00'),(116407,10,'I82.563 ','Chronic embolism and thrombosis of calf muscular vein, bilateral','Y','0000-00-00 00:00:00'),(116406,10,'I82.562 ','Chronic embolism and thrombosis of left calf muscular vein','Y','0000-00-00 00:00:00'),(116405,10,'I82.561 ','Chronic embolism and thrombosis of right calf muscular vein','Y','0000-00-00 00:00:00'),(116404,10,'I82.559 ','Chronic embolism and thrombosis of unspecified peroneal vein','Y','0000-00-00 00:00:00'),(116403,10,'I82.553 ','Chronic embolism and thrombosis of peroneal vein, bilateral','Y','0000-00-00 00:00:00'),(116402,10,'I82.552 ','Chronic embolism and thrombosis of left peroneal vein','Y','0000-00-00 00:00:00'),(116401,10,'I82.551 ','Chronic embolism and thrombosis of right peroneal vein','Y','0000-00-00 00:00:00'),(116400,10,'I82.549 ','Chronic embolism and thrombosis of unspecified tibial vein','Y','0000-00-00 00:00:00'),(116399,10,'I82.543 ','Chronic embolism and thrombosis of tibial vein, bilateral','Y','0000-00-00 00:00:00'),(116398,10,'I82.542 ','Chronic embolism and thrombosis of left tibial vein','Y','0000-00-00 00:00:00'),(116397,10,'I82.541 ','Chronic embolism and thrombosis of right tibial vein','Y','0000-00-00 00:00:00'),(116396,10,'I82.539 ','Chronic embolism and thrombosis of unspecified popliteal vein','Y','0000-00-00 00:00:00'),(116395,10,'I82.533 ','Chronic embolism and thrombosis of popliteal vein, bilateral','Y','0000-00-00 00:00:00'),(116394,10,'I82.532 ','Chronic embolism and thrombosis of left popliteal vein','Y','0000-00-00 00:00:00'),(116393,10,'I82.531 ','Chronic embolism and thrombosis of right popliteal vein','Y','0000-00-00 00:00:00'),(116392,10,'I82.529 ','Chronic embolism and thrombosis of unspecified iliac vein','Y','0000-00-00 00:00:00'),(116391,10,'I82.523 ','Chronic embolism and thrombosis of iliac vein, bilateral','Y','0000-00-00 00:00:00'),(116390,10,'I82.522 ','Chronic embolism and thrombosis of left iliac vein','Y','0000-00-00 00:00:00'),(116389,10,'I82.521 ','Chronic embolism and thrombosis of right iliac vein','Y','0000-00-00 00:00:00'),(116388,10,'I82.519 ','Chronic embolism and thrombosis of unspecified femoral vein','Y','0000-00-00 00:00:00'),(116387,10,'I82.513 ','Chronic embolism and thrombosis of femoral vein, bilateral','Y','0000-00-00 00:00:00'),(116386,10,'I82.512 ','Chronic embolism and thrombosis of left femoral vein','Y','0000-00-00 00:00:00'),(116385,10,'I82.511 ','Chronic embolism and thrombosis of right femoral vein','Y','0000-00-00 00:00:00'),(116384,10,'I82.509 ','Chronic embolism and thrombosis of unspecified deep veins of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116383,10,'I82.503 ','Chronic embolism and thrombosis of unspecified deep veins of lower extremity, bilateral','Y','0000-00-00 00:00:00'),(116382,10,'I82.502 ','Chronic embolism and thrombosis of unspecified deep veins of left lower extremity','Y','0000-00-00 00:00:00'),(116381,10,'I82.501 ','Chronic embolism and thrombosis of unspecified deep veins of right lower extremity','Y','0000-00-00 00:00:00'),(116380,10,'I82.4Z9 ','Acute embolism and thrombosis of unspecified deep veins of unspecified distal lower extremity','Y','0000-00-00 00:00:00'),(116379,10,'I82.4Z3 ','Acute embolism and thrombosis of unspecified deep veins of distal lower extremity, bilateral','Y','0000-00-00 00:00:00'),(116378,10,'I82.4Z2 ','Acute embolism and thrombosis of unspecified deep veins of left distal lower extremity','Y','0000-00-00 00:00:00'),(116377,10,'I82.4Z1 ','Acute embolism and thrombosis of unspecified deep veins of right distal lower extremity','Y','0000-00-00 00:00:00'),(116376,10,'I82.4Y9 ','Acute embolism and thrombosis of unspecified deep veins of unspecified proximal lower extremity','Y','0000-00-00 00:00:00'),(116375,10,'I82.4Y3 ','Acute embolism and thrombosis of unspecified deep veins of proximal lower extremity, bilateral','Y','0000-00-00 00:00:00'),(116374,10,'I82.4Y2 ','Acute embolism and thrombosis of unspecified deep veins of left proximal lower extremity','Y','0000-00-00 00:00:00'),(116373,10,'I82.4Y1 ','Acute embolism and thrombosis of unspecified deep veins of right proximal lower extremity','Y','0000-00-00 00:00:00'),(116372,10,'I82.499 ','Acute embolism and thrombosis of other specified deep vein of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116371,10,'I82.493 ','Acute embolism and thrombosis of other specified deep vein of lower extremity, bilateral','Y','0000-00-00 00:00:00'),(116370,10,'I82.492 ','Acute embolism and thrombosis of other specified deep vein of left lower extremity','Y','0000-00-00 00:00:00'),(116369,10,'I82.491 ','Acute embolism and thrombosis of other specified deep vein of right lower extremity','Y','0000-00-00 00:00:00'),(116368,10,'I82.469 ','Acute embolism and thrombosis of unspecified calf muscular vein','Y','0000-00-00 00:00:00'),(116367,10,'I82.463 ','Acute embolism and thrombosis of calf muscular vein, bilateral','Y','0000-00-00 00:00:00'),(116366,10,'I82.462 ','Acute embolism and thrombosis of left calf muscular vein','Y','0000-00-00 00:00:00'),(116365,10,'I82.461 ','Acute embolism and thrombosis of right calf muscular vein','Y','0000-00-00 00:00:00'),(116364,10,'I82.459 ','Acute embolism and thrombosis of unspecified peroneal vein','Y','0000-00-00 00:00:00'),(116363,10,'I82.453 ','Acute embolism and thrombosis of peroneal vein, bilateral','Y','0000-00-00 00:00:00'),(116362,10,'I82.452 ','Acute embolism and thrombosis of left peroneal vein','Y','0000-00-00 00:00:00'),(116361,10,'I82.451 ','Acute embolism and thrombosis of right peroneal vein','Y','0000-00-00 00:00:00'),(116360,10,'I82.449 ','Acute embolism and thrombosis of unspecified tibial vein','Y','0000-00-00 00:00:00'),(116359,10,'I82.443 ','Acute embolism and thrombosis of tibial vein, bilateral','Y','0000-00-00 00:00:00'),(116358,10,'I82.442 ','Acute embolism and thrombosis of left tibial vein','Y','0000-00-00 00:00:00'),(116357,10,'I82.441 ','Acute embolism and thrombosis of right tibial vein','Y','0000-00-00 00:00:00'),(116356,10,'I82.439 ','Acute embolism and thrombosis of unspecified popliteal vein','Y','0000-00-00 00:00:00'),(116355,10,'I82.433 ','Acute embolism and thrombosis of popliteal vein, bilateral','Y','0000-00-00 00:00:00'),(116354,10,'I82.432 ','Acute embolism and thrombosis of left popliteal vein','Y','0000-00-00 00:00:00'),(116353,10,'I82.431 ','Acute embolism and thrombosis of right popliteal vein','Y','0000-00-00 00:00:00'),(116352,10,'I82.429 ','Acute embolism and thrombosis of unspecified iliac vein','Y','0000-00-00 00:00:00');
INSERT INTO `icd` VALUES (116351,10,'I82.423 ','Acute embolism and thrombosis of iliac vein, bilateral','Y','0000-00-00 00:00:00'),(116350,10,'I82.422 ','Acute embolism and thrombosis of left iliac vein','Y','0000-00-00 00:00:00'),(116349,10,'I82.421 ','Acute embolism and thrombosis of right iliac vein','Y','0000-00-00 00:00:00'),(116348,10,'I82.419 ','Acute embolism and thrombosis of unspecified femoral vein','Y','0000-00-00 00:00:00'),(116347,10,'I82.413 ','Acute embolism and thrombosis of femoral vein, bilateral','Y','0000-00-00 00:00:00'),(116346,10,'I82.412 ','Acute embolism and thrombosis of left femoral vein','Y','0000-00-00 00:00:00'),(116345,10,'I82.411 ','Acute embolism and thrombosis of right femoral vein','Y','0000-00-00 00:00:00'),(116344,10,'I82.409 ','Acute embolism and thrombosis of unspecified deep veins of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116343,10,'I82.403 ','Acute embolism and thrombosis of unspecified deep veins of lower extremity, bilateral','Y','0000-00-00 00:00:00'),(116342,10,'I82.402 ','Acute embolism and thrombosis of unspecified deep veins of left lower extremity','Y','0000-00-00 00:00:00'),(116341,10,'I82.401 ','Acute embolism and thrombosis of unspecified deep veins of right lower extremity','Y','0000-00-00 00:00:00'),(116340,10,'I82.3 ','Embolism and thrombosis of renal vein','Y','0000-00-00 00:00:00'),(116339,10,'I82.291 ','Chronic embolism and thrombosis of other thoracic veins','Y','0000-00-00 00:00:00'),(116338,10,'I82.290 ','Acute embolism and thrombosis of other thoracic veins','Y','0000-00-00 00:00:00'),(116337,10,'I82.221 ','Chronic embolism and thrombosis of inferior vena cava','Y','0000-00-00 00:00:00'),(116336,10,'I82.220 ','Acute embolism and thrombosis of inferior vena cava','Y','0000-00-00 00:00:00'),(116335,10,'I82.211 ','Chronic embolism and thrombosis of superior vena cava','Y','0000-00-00 00:00:00'),(116334,10,'I82.210 ','Acute embolism and thrombosis of superior vena cava','Y','0000-00-00 00:00:00'),(116333,10,'I82.1 ','Thrombophlebitis migrans','Y','0000-00-00 00:00:00'),(116332,10,'I82.0 ','Budd-Chiari syndrome','Y','0000-00-00 00:00:00'),(116331,10,'I81','Portal vein thrombosis','Y','0000-00-00 00:00:00'),(116330,10,'I80.9 ','Phlebitis and thrombophlebitis of unspecified site','Y','0000-00-00 00:00:00'),(116329,10,'I80.8 ','Phlebitis and thrombophlebitis of other sites','Y','0000-00-00 00:00:00'),(116328,10,'I80.3 ','Phlebitis and thrombophlebitis of lower extremities, unspecified','Y','0000-00-00 00:00:00'),(116327,10,'I80.299 ','Phlebitis and thrombophlebitis of other deep vessels of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116326,10,'I80.293 ','Phlebitis and thrombophlebitis of other deep vessels of lower extremity, bilateral','Y','0000-00-00 00:00:00'),(116325,10,'I80.292 ','Phlebitis and thrombophlebitis of other deep vessels of left lower extremity','Y','0000-00-00 00:00:00'),(116324,10,'I80.291 ','Phlebitis and thrombophlebitis of other deep vessels of right lower extremity','Y','0000-00-00 00:00:00'),(116323,10,'I80.259 ','Phlebitis and thrombophlebitis of unspecified calf muscular vein','Y','0000-00-00 00:00:00'),(116322,10,'I80.253 ','Phlebitis and thrombophlebitis of calf muscular vein, bilateral','Y','0000-00-00 00:00:00'),(116321,10,'I80.252 ','Phlebitis and thrombophlebitis of left calf muscular vein','Y','0000-00-00 00:00:00'),(116320,10,'I80.251 ','Phlebitis and thrombophlebitis of right calf muscular vein','Y','0000-00-00 00:00:00'),(116319,10,'I80.249 ','Phlebitis and thrombophlebitis of unspecified peroneal vein','Y','0000-00-00 00:00:00'),(116318,10,'I80.243 ','Phlebitis and thrombophlebitis of peroneal vein, bilateral','Y','0000-00-00 00:00:00'),(116317,10,'I80.242 ','Phlebitis and thrombophlebitis of left peroneal vein','Y','0000-00-00 00:00:00'),(116316,10,'I80.241 ','Phlebitis and thrombophlebitis of right peroneal vein','Y','0000-00-00 00:00:00'),(116315,10,'I80.239 ','Phlebitis and thrombophlebitis of unspecified tibial vein','Y','0000-00-00 00:00:00'),(116314,10,'I80.233 ','Phlebitis and thrombophlebitis of tibial vein, bilateral','Y','0000-00-00 00:00:00'),(116313,10,'I80.232 ','Phlebitis and thrombophlebitis of left tibial vein','Y','0000-00-00 00:00:00'),(116312,10,'I80.231 ','Phlebitis and thrombophlebitis of right tibial vein','Y','0000-00-00 00:00:00'),(116311,10,'I80.229 ','Phlebitis and thrombophlebitis of unspecified popliteal vein','Y','0000-00-00 00:00:00'),(116310,10,'I80.223 ','Phlebitis and thrombophlebitis of popliteal vein, bilateral','Y','0000-00-00 00:00:00'),(116309,10,'I80.222 ','Phlebitis and thrombophlebitis of left popliteal vein','Y','0000-00-00 00:00:00'),(116308,10,'I80.221 ','Phlebitis and thrombophlebitis of right popliteal vein','Y','0000-00-00 00:00:00'),(116307,10,'I80.219 ','Phlebitis and thrombophlebitis of unspecified iliac vein','Y','0000-00-00 00:00:00'),(116305,10,'I80.212 ','Phlebitis and thrombophlebitis of left iliac vein','Y','0000-00-00 00:00:00'),(116306,10,'I80.213 ','Phlebitis and thrombophlebitis of iliac vein, bilateral','Y','0000-00-00 00:00:00'),(116304,10,'I80.211 ','Phlebitis and thrombophlebitis of right iliac vein','Y','0000-00-00 00:00:00'),(116303,10,'I80.209 ','Phlebitis and thrombophlebitis of unspecified deep vessels of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116302,10,'I80.203 ','Phlebitis and thrombophlebitis of unspecified deep vessels of lower extremities, bilateral','Y','0000-00-00 00:00:00'),(116301,10,'I80.202 ','Phlebitis and thrombophlebitis of unspecified deep vessels of left lower extremity','Y','0000-00-00 00:00:00'),(116300,10,'I80.201 ','Phlebitis and thrombophlebitis of unspecified deep vessels of right lower extremity','Y','0000-00-00 00:00:00'),(116299,10,'I80.13 ','Phlebitis and thrombophlebitis of femoral vein, bilateral','Y','0000-00-00 00:00:00'),(116298,10,'I80.12 ','Phlebitis and thrombophlebitis of left femoral vein','Y','0000-00-00 00:00:00'),(116297,10,'I80.11 ','Phlebitis and thrombophlebitis of right femoral vein','Y','0000-00-00 00:00:00'),(116296,10,'I80.10 ','Phlebitis and thrombophlebitis of unspecified femoral vein','Y','0000-00-00 00:00:00'),(116295,10,'I80.03 ','Phlebitis and thrombophlebitis of superficial vessels of lower extremities, bilateral','Y','0000-00-00 00:00:00'),(116294,10,'I80.02 ','Phlebitis and thrombophlebitis of superficial vessels of left lower extremity','Y','0000-00-00 00:00:00'),(116293,10,'I80.01 ','Phlebitis and thrombophlebitis of superficial vessels of right lower extremity','Y','0000-00-00 00:00:00'),(116292,10,'I80.00 ','Phlebitis and thrombophlebitis of superficial vessels of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116290,10,'I79.1 ','Aortitis in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(116291,10,'I79.8 ','Other disorders of arteries, arterioles and capillaries in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(116289,10,'I79.0 ','Aneurysm of aorta in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(116287,10,'I78.8 ','Other diseases of capillaries','Y','0000-00-00 00:00:00'),(116288,10,'I78.9 ','Disease of capillaries, unspecified','Y','0000-00-00 00:00:00'),(116286,10,'I78.1 ','Nevus, non-neoplastic','Y','0000-00-00 00:00:00'),(116284,10,'I77.9 ','Disorder of arteries and arterioles, unspecified','Y','0000-00-00 00:00:00'),(116285,10,'I78.0 ','Hereditary hemorrhagic telangiectasia','Y','0000-00-00 00:00:00'),(116283,10,'I77.89 ','Other specified disorders of arteries and arterioles','Y','0000-00-00 00:00:00'),(116282,10,'I77.82 ','Antineutrophilic cytoplasmic antibody [ANCA] vasculitis','Y','0000-00-00 00:00:00'),(116281,10,'I77.819 ','Aortic ectasia, unspecified site','Y','0000-00-00 00:00:00'),(116279,10,'I77.811 ','Abdominal aortic ectasia','Y','0000-00-00 00:00:00'),(116280,10,'I77.812 ','Thoracoabdominal aortic ectasia','Y','0000-00-00 00:00:00'),(116277,10,'I77.79 ','Dissection of other specified artery','Y','0000-00-00 00:00:00'),(116278,10,'I77.810 ','Thoracic aortic ectasia','Y','0000-00-00 00:00:00'),(116276,10,'I77.77 ','Dissection of artery of lower extremity','Y','0000-00-00 00:00:00'),(116275,10,'I77.76 ','Dissection of artery of upper extremity','Y','0000-00-00 00:00:00'),(116273,10,'I77.74 ','Dissection of vertebral artery','Y','0000-00-00 00:00:00'),(116274,10,'I77.75 ','Dissection of other precerebral arteries','Y','0000-00-00 00:00:00'),(116272,10,'I77.73 ','Dissection of renal artery','Y','0000-00-00 00:00:00'),(116270,10,'I77.71 ','Dissection of carotid artery','Y','0000-00-00 00:00:00'),(116271,10,'I77.72 ','Dissection of iliac artery','Y','0000-00-00 00:00:00'),(116269,10,'I77.70 ','Dissection of unspecified artery','Y','0000-00-00 00:00:00'),(116267,10,'I77.5 ','Necrosis of artery','Y','0000-00-00 00:00:00'),(116268,10,'I77.6 ','Arteritis, unspecified','Y','0000-00-00 00:00:00'),(116266,10,'I77.4 ','Celiac artery compression syndrome','Y','0000-00-00 00:00:00'),(116264,10,'I77.2 ','Rupture of artery','Y','0000-00-00 00:00:00'),(116265,10,'I77.3 ','Arterial fibromuscular dysplasia','Y','0000-00-00 00:00:00'),(116263,10,'I77.1 ','Stricture of artery','Y','0000-00-00 00:00:00'),(116261,10,'I76','Septic arterial embolism','Y','0000-00-00 00:00:00'),(116262,10,'I77.0 ','Arteriovenous fistula, acquired','Y','0000-00-00 00:00:00'),(116260,10,'I75.89 ','Atheroembolism of other site','Y','0000-00-00 00:00:00'),(116259,10,'I75.81 ','Atheroembolism of kidney','Y','0000-00-00 00:00:00'),(116258,10,'I75.029 ','Atheroembolism of unspecified lower extremity','Y','0000-00-00 00:00:00'),(116256,10,'I75.022 ','Atheroembolism of left lower extremity','Y','0000-00-00 00:00:00'),(116257,10,'I75.023 ','Atheroembolism of bilateral lower extremities','Y','0000-00-00 00:00:00'),(116255,10,'I75.021 ','Atheroembolism of right lower extremity','Y','0000-00-00 00:00:00'),(116254,10,'I75.019 ','Atheroembolism of unspecified upper extremity','Y','0000-00-00 00:00:00'),(116253,10,'I75.013 ','Atheroembolism of bilateral upper extremities','Y','0000-00-00 00:00:00'),(116252,10,'I75.012 ','Atheroembolism of left upper extremity','Y','0000-00-00 00:00:00'),(116251,10,'I75.011 ','Atheroembolism of right upper extremity','Y','0000-00-00 00:00:00'),(116250,10,'I74.9 ','Embolism and thrombosis of unspecified artery','Y','0000-00-00 00:00:00'),(116249,10,'I74.8 ','Embolism and thrombosis of other arteries','Y','0000-00-00 00:00:00'),(116248,10,'I74.5 ','Embolism and thrombosis of iliac artery','Y','0000-00-00 00:00:00'),(116247,10,'I74.4 ','Embolism and thrombosis of arteries of extremities, unspecified','Y','0000-00-00 00:00:00'),(116246,10,'I74.3 ','Embolism and thrombosis of arteries of the lower extremities','Y','0000-00-00 00:00:00'),(116245,10,'I74.2 ','Embolism and thrombosis of arteries of the upper extremities','Y','0000-00-00 00:00:00'),(116244,10,'I74.19 ','Embolism and thrombosis of other parts of aorta','Y','0000-00-00 00:00:00'),(116243,10,'I74.11 ','Embolism and thrombosis of thoracic aorta','Y','0000-00-00 00:00:00'),(116242,10,'I74.10 ','Embolism and thrombosis of unspecified parts of aorta','Y','0000-00-00 00:00:00'),(116241,10,'I74.09 ','Other arterial embolism and thrombosis of abdominal aorta','Y','0000-00-00 00:00:00'),(116240,10,'I74.01 ','Saddle embolus of abdominal aorta','Y','0000-00-00 00:00:00'),(116239,10,'I73.9 ','Peripheral vascular disease, unspecified','Y','0000-00-00 00:00:00'),(116237,10,'I73.81 ','Erythromelalgia','Y','0000-00-00 00:00:00'),(116238,10,'I73.89 ','Other specified peripheral vascular diseases','Y','0000-00-00 00:00:00'),(116236,10,'I73.1 ','Thromboangiitis obliterans [Buerger\'s disease]','Y','0000-00-00 00:00:00'),(116235,10,'I73.01 ','Raynaud\'s syndrome with gangrene','Y','0000-00-00 00:00:00'),(116234,10,'I73.00 ','Raynaud\'s syndrome without gangrene','Y','0000-00-00 00:00:00'),(116232,10,'I72.8 ','Aneurysm of other specified arteries','Y','0000-00-00 00:00:00'),(116233,10,'I72.9 ','Aneurysm of unspecified site','Y','0000-00-00 00:00:00'),(116231,10,'I72.6 ','Aneurysm of vertebral artery','Y','0000-00-00 00:00:00'),(116230,10,'I72.5 ','Aneurysm of other precerebral arteries','Y','0000-00-00 00:00:00'),(116228,10,'I72.3 ','Aneurysm of iliac artery','Y','0000-00-00 00:00:00'),(116229,10,'I72.4 ','Aneurysm of artery of lower extremity','Y','0000-00-00 00:00:00'),(116227,10,'I72.2 ','Aneurysm of renal artery','Y','0000-00-00 00:00:00'),(116226,10,'I72.1 ','Aneurysm of artery of upper extremity','Y','0000-00-00 00:00:00'),(116224,10,'I71.9 ','Aortic aneurysm of unspecified site, without rupture','Y','0000-00-00 00:00:00'),(116225,10,'I72.0 ','Aneurysm of carotid artery','Y','0000-00-00 00:00:00'),(116223,10,'I71.8 ','Aortic aneurysm of unspecified site, ruptured','Y','0000-00-00 00:00:00'),(116222,10,'I71.62 ','Paravisceral aneurysm of the thoracoabdominal aorta, without rupture','Y','0000-00-00 00:00:00'),(116221,10,'I71.61 ','Supraceliac aneurysm of the thoracoabdominal aorta, without rupture','Y','0000-00-00 00:00:00'),(116220,10,'I71.60 ','Thoracoabdominal aortic aneurysm, without rupture, unspecified','Y','0000-00-00 00:00:00'),(116219,10,'I71.52 ','Paravisceral aneurysm of the thoracoabdominal aorta, ruptured','Y','0000-00-00 00:00:00'),(116218,10,'I71.51 ','Supraceliac aneurysm of the thoracoabdominal aorta, ruptured','Y','0000-00-00 00:00:00'),(116216,10,'I71.43 ','Infrarenal abdominal aortic aneurysm, without rupture','Y','0000-00-00 00:00:00'),(116217,10,'I71.50 ','Thoracoabdominal aortic aneurysm, ruptured, unspecified','Y','0000-00-00 00:00:00'),(116215,10,'I71.42 ','Juxtarenal abdominal aortic aneurysm, without rupture','Y','0000-00-00 00:00:00'),(116214,10,'I71.41 ','Pararenal abdominal aortic aneurysm, without rupture','Y','0000-00-00 00:00:00'),(116213,10,'I71.40 ','Abdominal aortic aneurysm, without rupture, unspecified','Y','0000-00-00 00:00:00'),(116212,10,'I71.33 ','Infrarenal abdominal aortic aneurysm, ruptured','Y','0000-00-00 00:00:00'),(116211,10,'I71.32 ','Juxtarenal abdominal aortic aneurysm, ruptured','Y','0000-00-00 00:00:00'),(116210,10,'I71.31 ','Pararenal abdominal aortic aneurysm, ruptured','Y','0000-00-00 00:00:00'),(116209,10,'I71.30 ','Abdominal aortic aneurysm, ruptured, unspecified','Y','0000-00-00 00:00:00'),(116208,10,'I71.23 ','Aneurysm of the descending thoracic aorta, without rupture','Y','0000-00-00 00:00:00'),(116207,10,'I71.22 ','Aneurysm of the aortic arch, without rupture','Y','0000-00-00 00:00:00'),(116206,10,'I71.21 ','Aneurysm of the ascending aorta, without rupture','Y','0000-00-00 00:00:00'),(116205,10,'I71.20 ','Thoracic aortic aneurysm, without rupture, unspecified','Y','0000-00-00 00:00:00'),(116204,10,'I71.13 ','Aneurysm of the descending thoracic aorta, ruptured','Y','0000-00-00 00:00:00'),(116203,10,'I71.12 ','Aneurysm of the aortic arch, ruptured','Y','0000-00-00 00:00:00'),(116202,10,'I71.11 ','Aneurysm of the ascending aorta, ruptured','Y','0000-00-00 00:00:00'),(116201,10,'I71.10 ','Thoracic aortic aneurysm, ruptured, unspecified','Y','0000-00-00 00:00:00'),(116200,10,'I71.03 ','Dissection of thoracoabdominal aorta','Y','0000-00-00 00:00:00'),(116199,10,'I71.02 ','Dissection of abdominal aorta','Y','0000-00-00 00:00:00'),(116198,10,'I71.019 ','Dissection of thoracic aorta, unspecified','Y','0000-00-00 00:00:00'),(116197,10,'I71.012 ','Dissection of descending thoracic aorta','Y','0000-00-00 00:00:00'),(116196,10,'I71.011 ','Dissection of aortic arch','Y','0000-00-00 00:00:00'),(116195,10,'I71.010 ','Dissection of ascending aorta','Y','0000-00-00 00:00:00'),(116194,10,'I71.00 ','Dissection of unspecified site of aorta','Y','0000-00-00 00:00:00'),(116193,10,'I70.92 ','Chronic total occlusion of artery of the extremities','Y','0000-00-00 00:00:00'),(116192,10,'I70.91 ','Generalized atherosclerosis','Y','0000-00-00 00:00:00'),(116191,10,'I70.90 ','Unspecified atherosclerosis','Y','0000-00-00 00:00:00'),(116190,10,'I70.8 ','Atherosclerosis of other arteries','Y','0000-00-00 00:00:00'),(116189,10,'I70.799 ','Other atherosclerosis of other type of bypass graft(s) of the extremities, unspecified extremity','Y','0000-00-00 00:00:00'),(116188,10,'I70.798 ','Other atherosclerosis of other type of bypass graft(s) of the extremities, other extremity','Y','0000-00-00 00:00:00'),(116187,10,'I70.793 ','Other atherosclerosis of other type of bypass graft(s) of the extremities, bilateral legs','Y','0000-00-00 00:00:00'),(116186,10,'I70.792 ','Other atherosclerosis of other type of bypass graft(s) of the extremities, left leg','Y','0000-00-00 00:00:00'),(116185,10,'I70.791 ','Other atherosclerosis of other type of bypass graft(s) of the extremities, right leg','Y','0000-00-00 00:00:00'),(116184,10,'I70.769 ','Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, unspecified extremity','Y','0000-00-00 00:00:00'),(116183,10,'I70.768 ','Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, other extremity','Y','0000-00-00 00:00:00'),(116182,10,'I70.763 ','Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, bilateral legs','Y','0000-00-00 00:00:00'),(116181,10,'I70.762 ','Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, left leg','Y','0000-00-00 00:00:00'),(116180,10,'I70.761 ','Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, right leg','Y','0000-00-00 00:00:00'),(116179,10,'I70.75 ','Atherosclerosis of other type of bypass graft(s) of other extremity with ulceration','Y','0000-00-00 00:00:00'),(116178,10,'I70.749 ','Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of unspecified site','Y','0000-00-00 00:00:00'),(116177,10,'I70.748 ','Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of other part of lower leg','Y','0000-00-00 00:00:00'),(116176,10,'I70.745 ','Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of other part of foot','Y','0000-00-00 00:00:00'),(116175,10,'I70.744 ','Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of heel and midfoot','Y','0000-00-00 00:00:00'),(116174,10,'I70.743 ','Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of ankle','Y','0000-00-00 00:00:00'),(116173,10,'I70.742 ','Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of calf','Y','0000-00-00 00:00:00'),(116172,10,'I70.741 ','Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of thigh','Y','0000-00-00 00:00:00'),(116171,10,'I70.739 ','Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of unspecified site','Y','0000-00-00 00:00:00'),(116170,10,'I70.738 ','Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of other part of lower leg','Y','0000-00-00 00:00:00'),(116169,10,'I70.735 ','Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of other part of foot','Y','0000-00-00 00:00:00'),(116168,10,'I70.734 ','Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of heel and midfoot','Y','0000-00-00 00:00:00'),(116167,10,'I70.733 ','Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of ankle','Y','0000-00-00 00:00:00'),(116166,10,'I70.732 ','Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of calf','Y','0000-00-00 00:00:00'),(116165,10,'I70.731 ','Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of thigh','Y','0000-00-00 00:00:00'),(116164,10,'I70.729 ','Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, unspecified extremity','Y','0000-00-00 00:00:00'),(116163,10,'I70.728 ','Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, other extremity','Y','0000-00-00 00:00:00'),(116162,10,'I70.723 ','Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, bilateral legs','Y','0000-00-00 00:00:00'),(116161,10,'I70.722 ','Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, left leg','Y','0000-00-00 00:00:00'),(116160,10,'I70.721 ','Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, right leg','Y','0000-00-00 00:00:00'),(116159,10,'I70.719 ','Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, unspecified extremity','Y','0000-00-00 00:00:00'),(116158,10,'I70.718 ','Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, other extremity','Y','0000-00-00 00:00:00'),(116157,10,'I70.713 ','Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, bilateral legs','Y','0000-00-00 00:00:00'),(116156,10,'I70.712 ','Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, left leg','Y','0000-00-00 00:00:00'),(116155,10,'I70.711 ','Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, right leg','Y','0000-00-00 00:00:00'),(116154,10,'I70.709 ','Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, unspecified extremity','Y','0000-00-00 00:00:00'),(116153,10,'I70.708 ','Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, other extremity','Y','0000-00-00 00:00:00'),(116152,10,'I70.703 ','Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, bilateral legs','Y','0000-00-00 00:00:00'),(116151,10,'I70.702 ','Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, left leg','Y','0000-00-00 00:00:00'),(116150,10,'I70.701 ','Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, right leg','Y','0000-00-00 00:00:00'),(116149,10,'I70.699 ','Other atherosclerosis of nonbiological bypass graft(s) of the extremities, unspecified extremity','Y','0000-00-00 00:00:00'),(116148,10,'I70.698 ','Other atherosclerosis of nonbiological bypass graft(s) of the extremities, other extremity','Y','0000-00-00 00:00:00'),(116147,10,'I70.693 ','Other atherosclerosis of nonbiological bypass graft(s) of the extremities, bilateral legs','Y','0000-00-00 00:00:00'),(116146,10,'I70.692 ','Other atherosclerosis of nonbiological bypass graft(s) of the extremities, left leg','Y','0000-00-00 00:00:00'),(116145,10,'I70.691 ','Other atherosclerosis of nonbiological bypass graft(s) of the extremities, right leg','Y','0000-00-00 00:00:00'),(116144,10,'I70.669 ','Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, unspecified extremity','Y','0000-00-00 00:00:00'),(116143,10,'I70.668 ','Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, other extremity','Y','0000-00-00 00:00:00'),(116142,10,'I70.663 ','Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, bilateral legs','Y','0000-00-00 00:00:00'),(116141,10,'I70.662 ','Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, left leg','Y','0000-00-00 00:00:00'),(116140,10,'I70.661 ','Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, right leg','Y','0000-00-00 00:00:00'),(116139,10,'I70.65 ','Atherosclerosis of nonbiological bypass graft(s) of other extremity with ulceration','Y','0000-00-00 00:00:00'),(116138,10,'I70.649 ','Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of unspecified site','Y','0000-00-00 00:00:00'),(116137,10,'I70.648 ','Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of other part of lower leg','Y','0000-00-00 00:00:00'),(116136,10,'I70.645 ','Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of other part of foot','Y','0000-00-00 00:00:00'),(116135,10,'I70.644 ','Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of heel and midfoot','Y','0000-00-00 00:00:00'),(116134,10,'I70.643 ','Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of ankle','Y','0000-00-00 00:00:00'),(116133,10,'I70.642 ','Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of calf','Y','0000-00-00 00:00:00'),(116132,10,'I70.641 ','Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of thigh','Y','0000-00-00 00:00:00'),(116131,10,'I70.639 ','Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of unspecified site','Y','0000-00-00 00:00:00'),(116130,10,'I70.638 ','Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of other part of lower leg','Y','0000-00-00 00:00:00'),(116129,10,'I70.635 ','Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of other part of foot','Y','0000-00-00 00:00:00'),(116128,10,'I70.634 ','Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of heel and midfoot','Y','0000-00-00 00:00:00'),(116127,10,'I70.633 ','Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of ankle','Y','0000-00-00 00:00:00'),(116126,10,'I70.632 ','Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of calf','Y','0000-00-00 00:00:00'),(116125,10,'I70.631 ','Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of thigh','Y','0000-00-00 00:00:00'),(116124,10,'I70.629 ','Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, unspecified extremity','Y','0000-00-00 00:00:00'),(116123,10,'I70.628 ','Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, other extremity','Y','0000-00-00 00:00:00'),(116122,10,'I70.623 ','Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, bilateral legs','Y','0000-00-00 00:00:00'),(116121,10,'I70.622 ','Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, left leg','Y','0000-00-00 00:00:00'),(116120,10,'I70.621 ','Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, right leg','Y','0000-00-00 00:00:00'),(116119,10,'I70.619 ','Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, unspecified extremity','Y','0000-00-00 00:00:00'),(116118,10,'I70.618 ','Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, other extremity','Y','0000-00-00 00:00:00'),(116117,10,'I70.613 ','Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, bilateral legs','Y','0000-00-00 00:00:00'),(116116,10,'I70.612 ','Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, left leg','Y','0000-00-00 00:00:00'),(116115,10,'I70.611 ','Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, right leg','Y','0000-00-00 00:00:00'),(116114,10,'I70.609 ','Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, unspecified extremity','Y','0000-00-00 00:00:00'),(116113,10,'I70.608 ','Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, other extremity','Y','0000-00-00 00:00:00'),(116112,10,'I70.603 ','Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, bilateral legs','Y','0000-00-00 00:00:00'),(116111,10,'I70.602 ','Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, left leg','Y','0000-00-00 00:00:00'),(116110,10,'I70.601 ','Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, right leg','Y','0000-00-00 00:00:00'),(116109,10,'I70.599 ','Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, unspecified extremity','Y','0000-00-00 00:00:00'),(116108,10,'I70.598 ','Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, other extremity','Y','0000-00-00 00:00:00'),(116107,10,'I70.593 ','Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, bilateral legs','Y','0000-00-00 00:00:00'),(116106,10,'I70.592 ','Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, left leg','Y','0000-00-00 00:00:00'),(116105,10,'I70.591 ','Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, right leg','Y','0000-00-00 00:00:00'),(116104,10,'I70.569 ','Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, unspecified extremity','Y','0000-00-00 00:00:00'),(116103,10,'I70.568 ','Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, other extremity','Y','0000-00-00 00:00:00'),(116102,10,'I70.563 ','Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, bilateral legs','Y','0000-00-00 00:00:00'),(116101,10,'I70.562 ','Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, left leg','Y','0000-00-00 00:00:00'),(116100,10,'I70.561 ','Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, right leg','Y','0000-00-00 00:00:00'),(116099,10,'I70.55 ','Atherosclerosis of nonautologous biological bypass graft(s) of other extremity with ulceration','Y','0000-00-00 00:00:00'),(116098,10,'I70.549 ','Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of unspecified site','Y','0000-00-00 00:00:00'),(116097,10,'I70.548 ','Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of other part of lower leg','Y','0000-00-00 00:00:00'),(116096,10,'I70.545 ','Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of other part of foot','Y','0000-00-00 00:00:00'),(116095,10,'I70.544 ','Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of heel and midfoot','Y','0000-00-00 00:00:00'),(116094,10,'I70.543 ','Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of ankle','Y','0000-00-00 00:00:00'),(116093,10,'I70.542 ','Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of calf','Y','0000-00-00 00:00:00'),(116092,10,'I70.541 ','Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of thigh','Y','0000-00-00 00:00:00'),(116091,10,'I70.539 ','Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of unspecified site','Y','0000-00-00 00:00:00'),(116090,10,'I70.538 ','Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of other part of lower leg','Y','0000-00-00 00:00:00'),(116089,10,'I70.535 ','Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of other part of foot','Y','0000-00-00 00:00:00'),(116088,10,'I70.534 ','Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of heel and midfoot','Y','0000-00-00 00:00:00'),(116087,10,'I70.533 ','Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of ankle','Y','0000-00-00 00:00:00'),(116086,10,'I70.532 ','Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of calf','Y','0000-00-00 00:00:00'),(116085,10,'I70.531 ','Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of thigh','Y','0000-00-00 00:00:00'),(116084,10,'I70.529 ','Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, unspecified extremity','Y','0000-00-00 00:00:00'),(116083,10,'I70.528 ','Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, other extremity','Y','0000-00-00 00:00:00'),(116082,10,'I70.523 ','Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, bilateral legs','Y','0000-00-00 00:00:00'),(116081,10,'I70.522 ','Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, left leg','Y','0000-00-00 00:00:00'),(116080,10,'I70.521 ','Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, right leg','Y','0000-00-00 00:00:00'),(116079,10,'I70.519 ','Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, unspecified extremity','Y','0000-00-00 00:00:00'),(116078,10,'I70.518 ','Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, other extremity','Y','0000-00-00 00:00:00'),(116077,10,'I70.513 ','Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, bilateral legs','Y','0000-00-00 00:00:00'),(116076,10,'I70.512 ','Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, left leg','Y','0000-00-00 00:00:00'),(116075,10,'I70.511 ','Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, right leg','Y','0000-00-00 00:00:00'),(116074,10,'I70.509 ','Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, unspecified extremity','Y','0000-00-00 00:00:00'),(116073,10,'I70.508 ','Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, other extremity','Y','0000-00-00 00:00:00'),(116072,10,'I70.503 ','Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, bilateral legs','Y','0000-00-00 00:00:00'),(116071,10,'I70.502 ','Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, left leg','Y','0000-00-00 00:00:00'),(116070,10,'I70.501 ','Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, right leg','Y','0000-00-00 00:00:00'),(116069,10,'I70.499 ','Other atherosclerosis of autologous vein bypass graft(s) of the extremities, unspecified extremity','Y','0000-00-00 00:00:00'),(116068,10,'I70.498 ','Other atherosclerosis of autologous vein bypass graft(s) of the extremities, other extremity','Y','0000-00-00 00:00:00'),(116067,10,'I70.493 ','Other atherosclerosis of autologous vein bypass graft(s) of the extremities, bilateral legs','Y','0000-00-00 00:00:00'),(116066,10,'I70.492 ','Other atherosclerosis of autologous vein bypass graft(s) of the extremities, left leg','Y','0000-00-00 00:00:00'),(116065,10,'I70.491 ','Other atherosclerosis of autologous vein bypass graft(s) of the extremities, right leg','Y','0000-00-00 00:00:00'),(116064,10,'I70.469 ','Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, unspecified extremity','Y','0000-00-00 00:00:00'),(116063,10,'I70.468 ','Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, other extremity','Y','0000-00-00 00:00:00'),(116062,10,'I70.463 ','Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, bilateral legs','Y','0000-00-00 00:00:00'),(116061,10,'I70.462 ','Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, left leg','Y','0000-00-00 00:00:00'),(116060,10,'I70.461 ','Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, right leg','Y','0000-00-00 00:00:00'),(116059,10,'I70.45 ','Atherosclerosis of autologous vein bypass graft(s) of other extremity with ulceration','Y','0000-00-00 00:00:00'),(116058,10,'I70.449 ','Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of unspecified site','Y','0000-00-00 00:00:00'),(116057,10,'I70.448 ','Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of other part of lower leg','Y','0000-00-00 00:00:00'),(116056,10,'I70.445 ','Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of other part of foot','Y','0000-00-00 00:00:00'),(116055,10,'I70.444 ','Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of heel and midfoot','Y','0000-00-00 00:00:00'),(116054,10,'I70.443 ','Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of ankle','Y','0000-00-00 00:00:00'),(116053,10,'I70.442 ','Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of calf','Y','0000-00-00 00:00:00'),(116052,10,'I70.441 ','Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of thigh','Y','0000-00-00 00:00:00'),(116051,10,'I70.439 ','Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of unspecified site','Y','0000-00-00 00:00:00'),(116050,10,'I70.438 ','Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of other part of lower leg','Y','0000-00-00 00:00:00'),(116049,10,'I70.435 ','Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of other part of foot','Y','0000-00-00 00:00:00'),(116048,10,'I70.434 ','Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of heel and midfoot','Y','0000-00-00 00:00:00'),(116047,10,'I70.433 ','Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of ankle','Y','0000-00-00 00:00:00'),(116046,10,'I70.432 ','Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of calf','Y','0000-00-00 00:00:00'),(116045,10,'I70.431 ','Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of thigh','Y','0000-00-00 00:00:00'),(116044,10,'I70.429 ','Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, unspecified extremity','Y','0000-00-00 00:00:00'),(116043,10,'I70.428 ','Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, other extremity','Y','0000-00-00 00:00:00'),(116042,10,'I70.423 ','Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, bilateral legs','Y','0000-00-00 00:00:00'),(116041,10,'I70.422 ','Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, left leg','Y','0000-00-00 00:00:00'),(116040,10,'I70.421 ','Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, right leg','Y','0000-00-00 00:00:00'),(116039,10,'I70.419 ','Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, unspecified extremity','Y','0000-00-00 00:00:00'),(116038,10,'I70.418 ','Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, other extremity','Y','0000-00-00 00:00:00'),(116037,10,'I70.413 ','Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, bilateral legs','Y','0000-00-00 00:00:00'),(116036,10,'I70.412 ','Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, left leg','Y','0000-00-00 00:00:00'),(116035,10,'I70.411 ','Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, right leg','Y','0000-00-00 00:00:00'),(116034,10,'I70.409 ','Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, unspecified extremity','Y','0000-00-00 00:00:00'),(116033,10,'I70.408 ','Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, other extremity','Y','0000-00-00 00:00:00'),(116032,10,'I70.403 ','Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, bilateral legs','Y','0000-00-00 00:00:00'),(116031,10,'I70.402 ','Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, left leg','Y','0000-00-00 00:00:00'),(116030,10,'I70.401 ','Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, right leg','Y','0000-00-00 00:00:00'),(116029,10,'I70.399 ','Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, unspecified extremity','Y','0000-00-00 00:00:00'),(116028,10,'I70.398 ','Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, other extremity','Y','0000-00-00 00:00:00'),(116027,10,'I70.393 ','Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, bilateral legs','Y','0000-00-00 00:00:00'),(116026,10,'I70.392 ','Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, left leg','Y','0000-00-00 00:00:00'),(116025,10,'I70.391 ','Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, right leg','Y','0000-00-00 00:00:00'),(116024,10,'I70.369 ','Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, unspecified extremity','Y','0000-00-00 00:00:00'),(116023,10,'I70.368 ','Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, other extremity','Y','0000-00-00 00:00:00'),(116022,10,'I70.363 ','Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, bilateral legs','Y','0000-00-00 00:00:00'),(116021,10,'I70.362 ','Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, left leg','Y','0000-00-00 00:00:00'),(116020,10,'I70.361 ','Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, right leg','Y','0000-00-00 00:00:00'),(116019,10,'I70.35 ','Atherosclerosis of unspecified type of bypass graft(s) of other extremity with ulceration','Y','0000-00-00 00:00:00'),(116018,10,'I70.349 ','Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of unspecified site','Y','0000-00-00 00:00:00'),(116017,10,'I70.348 ','Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of other part of lower leg','Y','0000-00-00 00:00:00'),(116016,10,'I70.345 ','Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of other part of foot','Y','0000-00-00 00:00:00'),(116015,10,'I70.344 ','Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of heel and midfoot','Y','0000-00-00 00:00:00'),(116014,10,'I70.343 ','Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of ankle','Y','0000-00-00 00:00:00'),(116013,10,'I70.342 ','Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of calf','Y','0000-00-00 00:00:00'),(116012,10,'I70.341 ','Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of thigh','Y','0000-00-00 00:00:00'),(116011,10,'I70.339 ','Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of unspecified site','Y','0000-00-00 00:00:00'),(116010,10,'I70.338 ','Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of other part of lower leg','Y','0000-00-00 00:00:00'),(116009,10,'I70.335 ','Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of other part of foot','Y','0000-00-00 00:00:00'),(116008,10,'I70.334 ','Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of heel and midfoot','Y','0000-00-00 00:00:00'),(116007,10,'I70.333 ','Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of ankle','Y','0000-00-00 00:00:00'),(116006,10,'I70.332 ','Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of calf','Y','0000-00-00 00:00:00'),(116005,10,'I70.331 ','Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of thigh','Y','0000-00-00 00:00:00'),(116004,10,'I70.329 ','Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, unspecified extremity','Y','0000-00-00 00:00:00'),(116003,10,'I70.328 ','Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, other extremity','Y','0000-00-00 00:00:00'),(116002,10,'I70.323 ','Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, bilateral legs','Y','0000-00-00 00:00:00'),(116001,10,'I70.322 ','Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, left leg','Y','0000-00-00 00:00:00'),(116000,10,'I70.321 ','Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, right leg','Y','0000-00-00 00:00:00'),(115999,10,'I70.319 ','Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, unspecified extremity','Y','0000-00-00 00:00:00'),(115998,10,'I70.318 ','Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, other extremity','Y','0000-00-00 00:00:00'),(115997,10,'I70.313 ','Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, bilateral legs','Y','0000-00-00 00:00:00'),(115996,10,'I70.312 ','Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, left leg','Y','0000-00-00 00:00:00'),(115995,10,'I70.311 ','Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, right leg','Y','0000-00-00 00:00:00'),(115994,10,'I70.309 ','Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, unspecified extremity','Y','0000-00-00 00:00:00'),(115993,10,'I70.308 ','Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, other extremity','Y','0000-00-00 00:00:00'),(115992,10,'I70.303 ','Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, bilateral legs','Y','0000-00-00 00:00:00'),(115991,10,'I70.302 ','Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, left leg','Y','0000-00-00 00:00:00'),(115990,10,'I70.301 ','Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, right leg','Y','0000-00-00 00:00:00'),(115989,10,'I70.299 ','Other atherosclerosis of native arteries of extremities, unspecified extremity','Y','0000-00-00 00:00:00'),(115988,10,'I70.298 ','Other atherosclerosis of native arteries of extremities, other extremity','Y','0000-00-00 00:00:00'),(115987,10,'I70.293 ','Other atherosclerosis of native arteries of extremities, bilateral legs','Y','0000-00-00 00:00:00'),(115986,10,'I70.292 ','Other atherosclerosis of native arteries of extremities, left leg','Y','0000-00-00 00:00:00'),(115985,10,'I70.291 ','Other atherosclerosis of native arteries of extremities, right leg','Y','0000-00-00 00:00:00'),(115984,10,'I70.269 ','Atherosclerosis of native arteries of extremities with gangrene, unspecified extremity','Y','0000-00-00 00:00:00'),(115983,10,'I70.268 ','Atherosclerosis of native arteries of extremities with gangrene, other extremity','Y','0000-00-00 00:00:00'),(115982,10,'I70.263 ','Atherosclerosis of native arteries of extremities with gangrene, bilateral legs','Y','0000-00-00 00:00:00'),(115981,10,'I70.262 ','Atherosclerosis of native arteries of extremities with gangrene, left leg','Y','0000-00-00 00:00:00'),(115980,10,'I70.261 ','Atherosclerosis of native arteries of extremities with gangrene, right leg','Y','0000-00-00 00:00:00'),(115979,10,'I70.25 ','Atherosclerosis of native arteries of other extremities with ulceration','Y','0000-00-00 00:00:00'),(115978,10,'I70.249 ','Atherosclerosis of native arteries of left leg with ulceration of unspecified site','Y','0000-00-00 00:00:00'),(115977,10,'I70.248 ','Atherosclerosis of native arteries of left leg with ulceration of other part of lower leg','Y','0000-00-00 00:00:00'),(115976,10,'I70.245 ','Atherosclerosis of native arteries of left leg with ulceration of other part of foot','Y','0000-00-00 00:00:00'),(115975,10,'I70.244 ','Atherosclerosis of native arteries of left leg with ulceration of heel and midfoot','Y','0000-00-00 00:00:00'),(115974,10,'I70.243 ','Atherosclerosis of native arteries of left leg with ulceration of ankle','Y','0000-00-00 00:00:00'),(115973,10,'I70.242 ','Atherosclerosis of native arteries of left leg with ulceration of calf','Y','0000-00-00 00:00:00'),(115972,10,'I70.241 ','Atherosclerosis of native arteries of left leg with ulceration of thigh','Y','0000-00-00 00:00:00'),(115971,10,'I70.239 ','Atherosclerosis of native arteries of right leg with ulceration of unspecified site','Y','0000-00-00 00:00:00'),(115970,10,'I70.238 ','Atherosclerosis of native arteries of right leg with ulceration of other part of lower leg','Y','0000-00-00 00:00:00'),(115969,10,'I70.235 ','Atherosclerosis of native arteries of right leg with ulceration of other part of foot','Y','0000-00-00 00:00:00'),(115968,10,'I70.234 ','Atherosclerosis of native arteries of right leg with ulceration of heel and midfoot','Y','0000-00-00 00:00:00'),(115967,10,'I70.233 ','Atherosclerosis of native arteries of right leg with ulceration of ankle','Y','0000-00-00 00:00:00'),(115966,10,'I70.232 ','Atherosclerosis of native arteries of right leg with ulceration of calf','Y','0000-00-00 00:00:00'),(115965,10,'I70.231 ','Atherosclerosis of native arteries of right leg with ulceration of thigh','Y','0000-00-00 00:00:00'),(115964,10,'I70.229 ','Atherosclerosis of native arteries of extremities with rest pain, unspecified extremity','Y','0000-00-00 00:00:00'),(115963,10,'I70.228 ','Atherosclerosis of native arteries of extremities with rest pain, other extremity','Y','0000-00-00 00:00:00'),(115962,10,'I70.223 ','Atherosclerosis of native arteries of extremities with rest pain, bilateral legs','Y','0000-00-00 00:00:00'),(115961,10,'I70.222 ','Atherosclerosis of native arteries of extremities with rest pain, left leg','Y','0000-00-00 00:00:00'),(115960,10,'I70.221 ','Atherosclerosis of native arteries of extremities with rest pain, right leg','Y','0000-00-00 00:00:00'),(115959,10,'I70.219 ','Atherosclerosis of native arteries of extremities with intermittent claudication, unspecified extremity','Y','0000-00-00 00:00:00'),(115958,10,'I70.218 ','Atherosclerosis of native arteries of extremities with intermittent claudication, other extremity','Y','0000-00-00 00:00:00'),(115957,10,'I70.213 ','Atherosclerosis of native arteries of extremities with intermittent claudication, bilateral legs','Y','0000-00-00 00:00:00'),(115956,10,'I70.212 ','Atherosclerosis of native arteries of extremities with intermittent claudication, left leg','Y','0000-00-00 00:00:00'),(115955,10,'I70.211 ','Atherosclerosis of native arteries of extremities with intermittent claudication, right leg','Y','0000-00-00 00:00:00'),(115954,10,'I70.209 ','Unspecified atherosclerosis of native arteries of extremities, unspecified extremity','Y','0000-00-00 00:00:00'),(115953,10,'I70.208 ','Unspecified atherosclerosis of native arteries of extremities, other extremity','Y','0000-00-00 00:00:00'),(115952,10,'I70.203 ','Unspecified atherosclerosis of native arteries of extremities, bilateral legs','Y','0000-00-00 00:00:00'),(115951,10,'I70.202 ','Unspecified atherosclerosis of native arteries of extremities, left leg','Y','0000-00-00 00:00:00'),(115950,10,'I70.201 ','Unspecified atherosclerosis of native arteries of extremities, right leg','Y','0000-00-00 00:00:00'),(115948,10,'I70.0 ','Atherosclerosis of aorta','Y','0000-00-00 00:00:00'),(115949,10,'I70.1 ','Atherosclerosis of renal artery','Y','0000-00-00 00:00:00'),(115947,10,'I69.998 ','Other sequelae following unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115946,10,'I69.993 ','Ataxia following unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115945,10,'I69.992 ','Facial weakness following unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115944,10,'I69.991 ','Dysphagia following unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115943,10,'I69.990 ','Apraxia following unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115942,10,'I69.969 ','Other paralytic syndrome following unspecified cerebrovascular disease affecting unspecified side','Y','0000-00-00 00:00:00'),(115941,10,'I69.965 ','Other paralytic syndrome following unspecified cerebrovascular disease, bilateral','Y','0000-00-00 00:00:00'),(115940,10,'I69.964 ','Other paralytic syndrome following unspecified cerebrovascular disease affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115939,10,'I69.963 ','Other paralytic syndrome following unspecified cerebrovascular disease affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115938,10,'I69.962 ','Other paralytic syndrome following unspecified cerebrovascular disease affecting left dominant side','Y','0000-00-00 00:00:00'),(115937,10,'I69.961 ','Other paralytic syndrome following unspecified cerebrovascular disease affecting right dominant side','Y','0000-00-00 00:00:00'),(115936,10,'I69.959 ','Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting unspecified side','Y','0000-00-00 00:00:00'),(115935,10,'I69.954 ','Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115934,10,'I69.953 ','Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115933,10,'I69.952 ','Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting left dominant side','Y','0000-00-00 00:00:00'),(115932,10,'I69.951 ','Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting right dominant side','Y','0000-00-00 00:00:00'),(115931,10,'I69.949 ','Monoplegia of lower limb following unspecified cerebrovascular disease affecting unspecified side','Y','0000-00-00 00:00:00'),(115930,10,'I69.944 ','Monoplegia of lower limb following unspecified cerebrovascular disease affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115929,10,'I69.943 ','Monoplegia of lower limb following unspecified cerebrovascular disease affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115928,10,'I69.942 ','Monoplegia of lower limb following unspecified cerebrovascular disease affecting left dominant side','Y','0000-00-00 00:00:00'),(115927,10,'I69.941 ','Monoplegia of lower limb following unspecified cerebrovascular disease affecting right dominant side','Y','0000-00-00 00:00:00'),(115926,10,'I69.939 ','Monoplegia of upper limb following unspecified cerebrovascular disease affecting unspecified side','Y','0000-00-00 00:00:00'),(115925,10,'I69.934 ','Monoplegia of upper limb following unspecified cerebrovascular disease affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115924,10,'I69.933 ','Monoplegia of upper limb following unspecified cerebrovascular disease affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115923,10,'I69.932 ','Monoplegia of upper limb following unspecified cerebrovascular disease affecting left dominant side','Y','0000-00-00 00:00:00'),(115922,10,'I69.931 ','Monoplegia of upper limb following unspecified cerebrovascular disease affecting right dominant side','Y','0000-00-00 00:00:00'),(115921,10,'I69.928 ','Other speech and language deficits following unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115920,10,'I69.923 ','Fluency disorder following unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115919,10,'I69.922 ','Dysarthria following unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115918,10,'I69.921 ','Dysphasia following unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115917,10,'I69.920 ','Aphasia following unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115916,10,'I69.919 ','Unspecified symptoms and signs involving cognitive functions following unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115915,10,'I69.918 ','Other symptoms and signs involving cognitive functions following unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115914,10,'I69.915 ','Cognitive social or emotional deficit following unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115913,10,'I69.914 ','Frontal lobe and executive function deficit following unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115912,10,'I69.913 ','Psychomotor deficit following unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115911,10,'I69.912 ','Visuospatial deficit and spatial neglect following unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115910,10,'I69.911 ','Memory deficit following unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115909,10,'I69.910 ','Attention and concentration deficit following unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115907,10,'I69.898 ','Other sequelae of other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115908,10,'I69.90 ','Unspecified sequelae of unspecified cerebrovascular disease','Y','0000-00-00 00:00:00'),(115906,10,'I69.893 ','Ataxia following other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115905,10,'I69.892 ','Facial weakness following other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115904,10,'I69.891 ','Dysphagia following other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115903,10,'I69.890 ','Apraxia following other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115902,10,'I69.869 ','Other paralytic syndrome following other cerebrovascular disease affecting unspecified side','Y','0000-00-00 00:00:00'),(115901,10,'I69.865 ','Other paralytic syndrome following other cerebrovascular disease, bilateral','Y','0000-00-00 00:00:00'),(115900,10,'I69.864 ','Other paralytic syndrome following other cerebrovascular disease affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115899,10,'I69.863 ','Other paralytic syndrome following other cerebrovascular disease affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115898,10,'I69.862 ','Other paralytic syndrome following other cerebrovascular disease affecting left dominant side','Y','0000-00-00 00:00:00'),(115897,10,'I69.861 ','Other paralytic syndrome following other cerebrovascular disease affecting right dominant side','Y','0000-00-00 00:00:00'),(115896,10,'I69.859 ','Hemiplegia and hemiparesis following other cerebrovascular disease affecting unspecified side','Y','0000-00-00 00:00:00'),(115895,10,'I69.854 ','Hemiplegia and hemiparesis following other cerebrovascular disease affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115894,10,'I69.853 ','Hemiplegia and hemiparesis following other cerebrovascular disease affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115893,10,'I69.852 ','Hemiplegia and hemiparesis following other cerebrovascular disease affecting left dominant side','Y','0000-00-00 00:00:00'),(115892,10,'I69.851 ','Hemiplegia and hemiparesis following other cerebrovascular disease affecting right dominant side','Y','0000-00-00 00:00:00'),(115891,10,'I69.849 ','Monoplegia of lower limb following other cerebrovascular disease affecting unspecified side','Y','0000-00-00 00:00:00'),(115890,10,'I69.844 ','Monoplegia of lower limb following other cerebrovascular disease affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115889,10,'I69.843 ','Monoplegia of lower limb following other cerebrovascular disease affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115888,10,'I69.842 ','Monoplegia of lower limb following other cerebrovascular disease affecting left dominant side','Y','0000-00-00 00:00:00'),(115887,10,'I69.841 ','Monoplegia of lower limb following other cerebrovascular disease affecting right dominant side','Y','0000-00-00 00:00:00'),(115886,10,'I69.839 ','Monoplegia of upper limb following other cerebrovascular disease affecting unspecified side','Y','0000-00-00 00:00:00'),(115885,10,'I69.834 ','Monoplegia of upper limb following other cerebrovascular disease affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115884,10,'I69.833 ','Monoplegia of upper limb following other cerebrovascular disease affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115883,10,'I69.832 ','Monoplegia of upper limb following other cerebrovascular disease affecting left dominant side','Y','0000-00-00 00:00:00'),(115882,10,'I69.831 ','Monoplegia of upper limb following other cerebrovascular disease affecting right dominant side','Y','0000-00-00 00:00:00'),(115881,10,'I69.828 ','Other speech and language deficits following other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115880,10,'I69.823 ','Fluency disorder following other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115879,10,'I69.822 ','Dysarthria following other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115878,10,'I69.821 ','Dysphasia following other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115877,10,'I69.820 ','Aphasia following other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115876,10,'I69.819 ','Unspecified symptoms and signs involving cognitive functions following other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115875,10,'I69.818 ','Other symptoms and signs involving cognitive functions following other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115874,10,'I69.815 ','Cognitive social or emotional deficit following other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115873,10,'I69.814 ','Frontal lobe and executive function deficit following other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115872,10,'I69.813 ','Psychomotor deficit following other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115871,10,'I69.812 ','Visuospatial deficit and spatial neglect following other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115870,10,'I69.811 ','Memory deficit following other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115869,10,'I69.810 ','Attention and concentration deficit following other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115868,10,'I69.80 ','Unspecified sequelae of other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115867,10,'I69.398 ','Other sequelae of cerebral infarction','Y','0000-00-00 00:00:00'),(115866,10,'I69.393 ','Ataxia following cerebral infarction','Y','0000-00-00 00:00:00'),(115864,10,'I69.391 ','Dysphagia following cerebral infarction','Y','0000-00-00 00:00:00'),(115865,10,'I69.392 ','Facial weakness following cerebral infarction','Y','0000-00-00 00:00:00'),(115863,10,'I69.390 ','Apraxia following cerebral infarction','Y','0000-00-00 00:00:00'),(115862,10,'I69.369 ','Other paralytic syndrome following cerebral infarction affecting unspecified side','Y','0000-00-00 00:00:00'),(115861,10,'I69.365 ','Other paralytic syndrome following cerebral infarction, bilateral','Y','0000-00-00 00:00:00'),(115860,10,'I69.364 ','Other paralytic syndrome following cerebral infarction affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115859,10,'I69.363 ','Other paralytic syndrome following cerebral infarction affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115858,10,'I69.362 ','Other paralytic syndrome following cerebral infarction affecting left dominant side','Y','0000-00-00 00:00:00'),(115857,10,'I69.361 ','Other paralytic syndrome following cerebral infarction affecting right dominant side','Y','0000-00-00 00:00:00'),(115856,10,'I69.359 ','Hemiplegia and hemiparesis following cerebral infarction affecting unspecified side','Y','0000-00-00 00:00:00'),(115855,10,'I69.354 ','Hemiplegia and hemiparesis following cerebral infarction affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115854,10,'I69.353 ','Hemiplegia and hemiparesis following cerebral infarction affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115853,10,'I69.352 ','Hemiplegia and hemiparesis following cerebral infarction affecting left dominant side','Y','0000-00-00 00:00:00'),(115852,10,'I69.351 ','Hemiplegia and hemiparesis following cerebral infarction affecting right dominant side','Y','0000-00-00 00:00:00'),(115851,10,'I69.349 ','Monoplegia of lower limb following cerebral infarction affecting unspecified side','Y','0000-00-00 00:00:00'),(115850,10,'I69.344 ','Monoplegia of lower limb following cerebral infarction affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115849,10,'I69.343 ','Monoplegia of lower limb following cerebral infarction affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115848,10,'I69.342 ','Monoplegia of lower limb following cerebral infarction affecting left dominant side','Y','0000-00-00 00:00:00'),(115847,10,'I69.341 ','Monoplegia of lower limb following cerebral infarction affecting right dominant side','Y','0000-00-00 00:00:00'),(115846,10,'I69.339 ','Monoplegia of upper limb following cerebral infarction affecting unspecified side','Y','0000-00-00 00:00:00'),(115845,10,'I69.334 ','Monoplegia of upper limb following cerebral infarction affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115844,10,'I69.333 ','Monoplegia of upper limb following cerebral infarction affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115843,10,'I69.332 ','Monoplegia of upper limb following cerebral infarction affecting left dominant side','Y','0000-00-00 00:00:00'),(115842,10,'I69.331 ','Monoplegia of upper limb following cerebral infarction affecting right dominant side','Y','0000-00-00 00:00:00'),(115841,10,'I69.328 ','Other speech and language deficits following cerebral infarction','Y','0000-00-00 00:00:00'),(115840,10,'I69.323 ','Fluency disorder following cerebral infarction','Y','0000-00-00 00:00:00'),(115838,10,'I69.321 ','Dysphasia following cerebral infarction','Y','0000-00-00 00:00:00'),(115839,10,'I69.322 ','Dysarthria following cerebral infarction','Y','0000-00-00 00:00:00'),(115837,10,'I69.320 ','Aphasia following cerebral infarction','Y','0000-00-00 00:00:00'),(115836,10,'I69.319 ','Unspecified symptoms and signs involving cognitive functions following cerebral infarction','Y','0000-00-00 00:00:00'),(115835,10,'I69.318 ','Other symptoms and signs involving cognitive functions following cerebral infarction','Y','0000-00-00 00:00:00'),(115834,10,'I69.315 ','Cognitive social or emotional deficit following cerebral infarction','Y','0000-00-00 00:00:00'),(115833,10,'I69.314 ','Frontal lobe and executive function deficit following cerebral infarction','Y','0000-00-00 00:00:00'),(115832,10,'I69.313 ','Psychomotor deficit following cerebral infarction','Y','0000-00-00 00:00:00'),(115831,10,'I69.312 ','Visuospatial deficit and spatial neglect following cerebral infarction','Y','0000-00-00 00:00:00'),(115830,10,'I69.311 ','Memory deficit following cerebral infarction','Y','0000-00-00 00:00:00'),(115829,10,'I69.310 ','Attention and concentration deficit following cerebral infarction','Y','0000-00-00 00:00:00'),(115828,10,'I69.30 ','Unspecified sequelae of cerebral infarction','Y','0000-00-00 00:00:00'),(115827,10,'I69.298 ','Other sequelae of other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115826,10,'I69.293 ','Ataxia following other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115824,10,'I69.291 ','Dysphagia following other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115825,10,'I69.292 ','Facial weakness following other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115823,10,'I69.290 ','Apraxia following other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115822,10,'I69.269 ','Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting unspecified side','Y','0000-00-00 00:00:00'),(115821,10,'I69.265 ','Other paralytic syndrome following other nontraumatic intracranial hemorrhage, bilateral','Y','0000-00-00 00:00:00'),(115820,10,'I69.264 ','Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115819,10,'I69.263 ','Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115818,10,'I69.262 ','Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting left dominant side','Y','0000-00-00 00:00:00'),(115817,10,'I69.261 ','Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting right dominant side','Y','0000-00-00 00:00:00'),(115816,10,'I69.259 ','Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting unspecified side','Y','0000-00-00 00:00:00'),(115815,10,'I69.254 ','Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115814,10,'I69.253 ','Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115813,10,'I69.252 ','Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting left dominant side','Y','0000-00-00 00:00:00'),(115812,10,'I69.251 ','Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting right dominant side','Y','0000-00-00 00:00:00'),(115811,10,'I69.249 ','Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting unspecified side','Y','0000-00-00 00:00:00'),(115810,10,'I69.244 ','Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115809,10,'I69.243 ','Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115808,10,'I69.242 ','Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting left dominant side','Y','0000-00-00 00:00:00'),(115807,10,'I69.241 ','Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting right dominant side','Y','0000-00-00 00:00:00'),(115806,10,'I69.239 ','Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting unspecified side','Y','0000-00-00 00:00:00'),(115805,10,'I69.234 ','Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115804,10,'I69.233 ','Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115803,10,'I69.232 ','Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting left dominant side','Y','0000-00-00 00:00:00'),(115802,10,'I69.231 ','Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting right dominant side','Y','0000-00-00 00:00:00'),(115801,10,'I69.228 ','Other speech and language deficits following other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115800,10,'I69.223 ','Fluency disorder following other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115799,10,'I69.222 ','Dysarthria following other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115798,10,'I69.221 ','Dysphasia following other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115797,10,'I69.220 ','Aphasia following other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115796,10,'I69.219 ','Unspecified symptoms and signs involving cognitive functions following other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115795,10,'I69.218 ','Other symptoms and signs involving cognitive functions following other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115794,10,'I69.215 ','Cognitive social or emotional deficit following other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115793,10,'I69.214 ','Frontal lobe and executive function deficit following other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115792,10,'I69.213 ','Psychomotor deficit following other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115791,10,'I69.212 ','Visuospatial deficit and spatial neglect following other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115790,10,'I69.211 ','Memory deficit following other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115789,10,'I69.210 ','Attention and concentration deficit following other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115788,10,'I69.20 ','Unspecified sequelae of other nontraumatic intracranial hemorrhage','Y','0000-00-00 00:00:00'),(115787,10,'I69.198 ','Other sequelae of nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115786,10,'I69.193 ','Ataxia following nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115785,10,'I69.192 ','Facial weakness following nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115783,10,'I69.190 ','Apraxia following nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115784,10,'I69.191 ','Dysphagia following nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115782,10,'I69.169 ','Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting unspecified side','Y','0000-00-00 00:00:00'),(115781,10,'I69.165 ','Other paralytic syndrome following nontraumatic intracerebral hemorrhage, bilateral','Y','0000-00-00 00:00:00'),(115780,10,'I69.164 ','Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115779,10,'I69.163 ','Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115778,10,'I69.162 ','Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting left dominant side','Y','0000-00-00 00:00:00'),(115777,10,'I69.161 ','Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting right dominant side','Y','0000-00-00 00:00:00'),(115776,10,'I69.159 ','Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting unspecified side','Y','0000-00-00 00:00:00'),(115775,10,'I69.154 ','Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115774,10,'I69.153 ','Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115773,10,'I69.152 ','Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting left dominant side','Y','0000-00-00 00:00:00'),(115772,10,'I69.151 ','Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting right dominant side','Y','0000-00-00 00:00:00'),(115771,10,'I69.149 ','Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting unspecified side','Y','0000-00-00 00:00:00'),(115770,10,'I69.144 ','Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115769,10,'I69.143 ','Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115768,10,'I69.142 ','Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting left dominant side','Y','0000-00-00 00:00:00'),(115767,10,'I69.141 ','Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting right dominant side','Y','0000-00-00 00:00:00'),(115766,10,'I69.139 ','Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting unspecified side','Y','0000-00-00 00:00:00'),(115765,10,'I69.134 ','Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115764,10,'I69.133 ','Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115763,10,'I69.132 ','Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting left dominant side','Y','0000-00-00 00:00:00'),(115762,10,'I69.131 ','Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting right dominant side','Y','0000-00-00 00:00:00'),(115761,10,'I69.128 ','Other speech and language deficits following nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115760,10,'I69.123 ','Fluency disorder following nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115759,10,'I69.122 ','Dysarthria following nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115758,10,'I69.121 ','Dysphasia following nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115757,10,'I69.120 ','Aphasia following nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115756,10,'I69.119 ','Unspecified symptoms and signs involving cognitive functions following nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115755,10,'I69.118 ','Other symptoms and signs involving cognitive functions following nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115754,10,'I69.115 ','Cognitive social or emotional deficit following nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115753,10,'I69.114 ','Frontal lobe and executive function deficit following nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115752,10,'I69.113 ','Psychomotor deficit following nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115751,10,'I69.112 ','Visuospatial deficit and spatial neglect following nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115750,10,'I69.111 ','Memory deficit following nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115749,10,'I69.110 ','Attention and concentration deficit following nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115748,10,'I69.10 ','Unspecified sequelae of nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115747,10,'I69.098 ','Other sequelae following nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115745,10,'I69.092 ','Facial weakness following nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115746,10,'I69.093 ','Ataxia following nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115744,10,'I69.091 ','Dysphagia following nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115743,10,'I69.090 ','Apraxia following nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115742,10,'I69.069 ','Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting unspecified side','Y','0000-00-00 00:00:00'),(115741,10,'I69.065 ','Other paralytic syndrome following nontraumatic subarachnoid hemorrhage, bilateral','Y','0000-00-00 00:00:00'),(115740,10,'I69.064 ','Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115739,10,'I69.063 ','Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115738,10,'I69.062 ','Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting left dominant side','Y','0000-00-00 00:00:00'),(115737,10,'I69.061 ','Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting right dominant side','Y','0000-00-00 00:00:00'),(115736,10,'I69.059 ','Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting unspecified side','Y','0000-00-00 00:00:00'),(115735,10,'I69.054 ','Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115734,10,'I69.053 ','Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115733,10,'I69.052 ','Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting left dominant side','Y','0000-00-00 00:00:00'),(115732,10,'I69.051 ','Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting right dominant side','Y','0000-00-00 00:00:00'),(115731,10,'I69.049 ','Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting unspecified side','Y','0000-00-00 00:00:00'),(115730,10,'I69.044 ','Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115729,10,'I69.043 ','Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115728,10,'I69.042 ','Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting left dominant side','Y','0000-00-00 00:00:00'),(115727,10,'I69.041 ','Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting right dominant side','Y','0000-00-00 00:00:00'),(115726,10,'I69.039 ','Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting unspecified side','Y','0000-00-00 00:00:00'),(115725,10,'I69.034 ','Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting left non-dominant side','Y','0000-00-00 00:00:00'),(115724,10,'I69.033 ','Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting right non-dominant side','Y','0000-00-00 00:00:00'),(115723,10,'I69.032 ','Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting left dominant side','Y','0000-00-00 00:00:00'),(115722,10,'I69.031 ','Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting right dominant side','Y','0000-00-00 00:00:00'),(115721,10,'I69.028 ','Other speech and language deficits following nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115720,10,'I69.023 ','Fluency disorder following nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115718,10,'I69.021 ','Dysphasia following nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115719,10,'I69.022 ','Dysarthria following nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115717,10,'I69.020 ','Aphasia following nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115716,10,'I69.019 ','Unspecified symptoms and signs involving cognitive functions following nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115715,10,'I69.018 ','Other symptoms and signs involving cognitive functions following nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115714,10,'I69.015 ','Cognitive social or emotional deficit following nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115712,10,'I69.013 ','Psychomotor deficit following nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115713,10,'I69.014 ','Frontal lobe and executive function deficit following nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115711,10,'I69.012 ','Visuospatial deficit and spatial neglect following nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115710,10,'I69.011 ','Memory deficit following nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115709,10,'I69.010 ','Attention and concentration deficit following nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115708,10,'I69.00 ','Unspecified sequelae of nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115707,10,'I68.8 ','Other cerebrovascular disorders in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(115705,10,'I68.0 ','Cerebral amyloid angiopathy','Y','0000-00-00 00:00:00'),(115706,10,'I68.2 ','Cerebral arteritis in other diseases classified elsewhere','Y','0000-00-00 00:00:00'),(115703,10,'I67.89 ','Other cerebrovascular disease','Y','0000-00-00 00:00:00'),(115704,10,'I67.9 ','Cerebrovascular disease, unspecified','Y','0000-00-00 00:00:00'),(115702,10,'I67.858 ','Other hereditary cerebrovascular disease','Y','0000-00-00 00:00:00'),(115701,10,'I67.850 ','Cerebral autosomal dominant arteriopathy with subcortical infarcts and leukoencephalopathy','Y','0000-00-00 00:00:00'),(115700,10,'I67.848 ','Other cerebrovascular vasospasm and vasoconstriction','Y','0000-00-00 00:00:00'),(115699,10,'I67.841 ','Reversible cerebrovascular vasoconstriction syndrome','Y','0000-00-00 00:00:00'),(115697,10,'I67.82 ','Cerebral ischemia','Y','0000-00-00 00:00:00'),(115698,10,'I67.83 ','Posterior reversible encephalopathy syndrome','Y','0000-00-00 00:00:00'),(115696,10,'I67.81 ','Acute cerebrovascular insufficiency','Y','0000-00-00 00:00:00'),(115695,10,'I67.7 ','Cerebral arteritis, not elsewhere classified','Y','0000-00-00 00:00:00'),(115693,10,'I67.5 ','Moyamoya disease','Y','0000-00-00 00:00:00'),(115694,10,'I67.6 ','Nonpyogenic thrombosis of intracranial venous system','Y','0000-00-00 00:00:00'),(115692,10,'I67.4 ','Hypertensive encephalopathy','Y','0000-00-00 00:00:00'),(115691,10,'I67.3 ','Progressive vascular leukoencephalopathy','Y','0000-00-00 00:00:00'),(115690,10,'I67.2 ','Cerebral atherosclerosis','Y','0000-00-00 00:00:00'),(115689,10,'I67.1 ','Cerebral aneurysm, nonruptured','Y','0000-00-00 00:00:00'),(115688,10,'I67.0 ','Dissection of cerebral arteries, nonruptured','Y','0000-00-00 00:00:00'),(115687,10,'I66.9 ','Occlusion and stenosis of unspecified cerebral artery','Y','0000-00-00 00:00:00'),(115686,10,'I66.8 ','Occlusion and stenosis of other cerebral arteries','Y','0000-00-00 00:00:00'),(115685,10,'I66.3 ','Occlusion and stenosis of cerebellar arteries','Y','0000-00-00 00:00:00'),(115684,10,'I66.29 ','Occlusion and stenosis of unspecified posterior cerebral artery','Y','0000-00-00 00:00:00'),(115683,10,'I66.23 ','Occlusion and stenosis of bilateral posterior cerebral arteries','Y','0000-00-00 00:00:00'),(115682,10,'I66.22 ','Occlusion and stenosis of left posterior cerebral artery','Y','0000-00-00 00:00:00'),(115681,10,'I66.21 ','Occlusion and stenosis of right posterior cerebral artery','Y','0000-00-00 00:00:00'),(115680,10,'I66.19 ','Occlusion and stenosis of unspecified anterior cerebral artery','Y','0000-00-00 00:00:00'),(115679,10,'I66.13 ','Occlusion and stenosis of bilateral anterior cerebral arteries','Y','0000-00-00 00:00:00'),(115677,10,'I66.11 ','Occlusion and stenosis of right anterior cerebral artery','Y','0000-00-00 00:00:00'),(115678,10,'I66.12 ','Occlusion and stenosis of left anterior cerebral artery','Y','0000-00-00 00:00:00'),(115676,10,'I66.09 ','Occlusion and stenosis of unspecified middle cerebral artery','Y','0000-00-00 00:00:00'),(115675,10,'I66.03 ','Occlusion and stenosis of bilateral middle cerebral arteries','Y','0000-00-00 00:00:00'),(115674,10,'I66.02 ','Occlusion and stenosis of left middle cerebral artery','Y','0000-00-00 00:00:00'),(115673,10,'I66.01 ','Occlusion and stenosis of right middle cerebral artery','Y','0000-00-00 00:00:00'),(115672,10,'I65.9 ','Occlusion and stenosis of unspecified precerebral artery','Y','0000-00-00 00:00:00'),(115671,10,'I65.8 ','Occlusion and stenosis of other precerebral arteries','Y','0000-00-00 00:00:00'),(115670,10,'I65.29 ','Occlusion and stenosis of unspecified carotid artery','Y','0000-00-00 00:00:00'),(115669,10,'I65.23 ','Occlusion and stenosis of bilateral carotid arteries','Y','0000-00-00 00:00:00'),(115668,10,'I65.22 ','Occlusion and stenosis of left carotid artery','Y','0000-00-00 00:00:00'),(115667,10,'I65.21 ','Occlusion and stenosis of right carotid artery','Y','0000-00-00 00:00:00'),(115666,10,'I65.1 ','Occlusion and stenosis of basilar artery','Y','0000-00-00 00:00:00'),(115665,10,'I65.09 ','Occlusion and stenosis of unspecified vertebral artery','Y','0000-00-00 00:00:00'),(115664,10,'I65.03 ','Occlusion and stenosis of bilateral vertebral arteries','Y','0000-00-00 00:00:00'),(115663,10,'I65.02 ','Occlusion and stenosis of left vertebral artery','Y','0000-00-00 00:00:00'),(115662,10,'I65.01 ','Occlusion and stenosis of right vertebral artery','Y','0000-00-00 00:00:00'),(115661,10,'I63.9 ','Cerebral infarction, unspecified','Y','0000-00-00 00:00:00'),(115660,10,'I63.89 ','Other cerebral infarction','Y','0000-00-00 00:00:00'),(115659,10,'I63.81 ','Other cerebral infarction due to occlusion or stenosis of small artery','Y','0000-00-00 00:00:00'),(115658,10,'I63.6 ','Cerebral infarction due to cerebral venous thrombosis, nonpyogenic','Y','0000-00-00 00:00:00'),(115657,10,'I63.59 ','Cerebral infarction due to unspecified occlusion or stenosis of other cerebral artery','Y','0000-00-00 00:00:00'),(115656,10,'I63.549 ','Cerebral infarction due to unspecified occlusion or stenosis of unspecified cerebellar artery','Y','0000-00-00 00:00:00'),(115655,10,'I63.543 ','Cerebral infarction due to unspecified occlusion or stenosis of bilateral cerebellar arteries','Y','0000-00-00 00:00:00'),(115654,10,'I63.542 ','Cerebral infarction due to unspecified occlusion or stenosis of left cerebellar artery','Y','0000-00-00 00:00:00'),(115653,10,'I63.541 ','Cerebral infarction due to unspecified occlusion or stenosis of right cerebellar artery','Y','0000-00-00 00:00:00'),(115652,10,'I63.539 ','Cerebral infarction due to unspecified occlusion or stenosis of unspecified posterior cerebral artery','Y','0000-00-00 00:00:00'),(115651,10,'I63.533 ','Cerebral infarction due to unspecified occlusion or stenosis of bilateral posterior cerebral arteries','Y','0000-00-00 00:00:00'),(115650,10,'I63.532 ','Cerebral infarction due to unspecified occlusion or stenosis of left posterior cerebral artery','Y','0000-00-00 00:00:00'),(115649,10,'I63.531 ','Cerebral infarction due to unspecified occlusion or stenosis of right posterior cerebral artery','Y','0000-00-00 00:00:00'),(115648,10,'I63.529 ','Cerebral infarction due to unspecified occlusion or stenosis of unspecified anterior cerebral artery','Y','0000-00-00 00:00:00'),(115647,10,'I63.523 ','Cerebral infarction due to unspecified occlusion or stenosis of bilateral anterior cerebral arteries','Y','0000-00-00 00:00:00'),(115646,10,'I63.522 ','Cerebral infarction due to unspecified occlusion or stenosis of left anterior cerebral artery','Y','0000-00-00 00:00:00'),(115645,10,'I63.521 ','Cerebral infarction due to unspecified occlusion or stenosis of right anterior cerebral artery','Y','0000-00-00 00:00:00'),(115644,10,'I63.519 ','Cerebral infarction due to unspecified occlusion or stenosis of unspecified middle cerebral artery','Y','0000-00-00 00:00:00'),(115643,10,'I63.513 ','Cerebral infarction due to unspecified occlusion or stenosis of bilateral middle cerebral arteries','Y','0000-00-00 00:00:00'),(115642,10,'I63.512 ','Cerebral infarction due to unspecified occlusion or stenosis of left middle cerebral artery','Y','0000-00-00 00:00:00'),(115641,10,'I63.511 ','Cerebral infarction due to unspecified occlusion or stenosis of right middle cerebral artery','Y','0000-00-00 00:00:00'),(115640,10,'I63.50 ','Cerebral infarction due to unspecified occlusion or stenosis of unspecified cerebral artery','Y','0000-00-00 00:00:00'),(115639,10,'I63.49 ','Cerebral infarction due to embolism of other cerebral artery','Y','0000-00-00 00:00:00'),(115638,10,'I63.449 ','Cerebral infarction due to embolism of unspecified cerebellar artery','Y','0000-00-00 00:00:00'),(115637,10,'I63.443 ','Cerebral infarction due to embolism of bilateral cerebellar arteries','Y','0000-00-00 00:00:00'),(115636,10,'I63.442 ','Cerebral infarction due to embolism of left cerebellar artery','Y','0000-00-00 00:00:00'),(115635,10,'I63.441 ','Cerebral infarction due to embolism of right cerebellar artery','Y','0000-00-00 00:00:00'),(115634,10,'I63.439 ','Cerebral infarction due to embolism of unspecified posterior cerebral artery','Y','0000-00-00 00:00:00'),(115633,10,'I63.433 ','Cerebral infarction due to embolism of bilateral posterior cerebral arteries','Y','0000-00-00 00:00:00'),(115632,10,'I63.432 ','Cerebral infarction due to embolism of left posterior cerebral artery','Y','0000-00-00 00:00:00'),(115631,10,'I63.431 ','Cerebral infarction due to embolism of right posterior cerebral artery','Y','0000-00-00 00:00:00'),(115630,10,'I63.429 ','Cerebral infarction due to embolism of unspecified anterior cerebral artery','Y','0000-00-00 00:00:00'),(115629,10,'I63.423 ','Cerebral infarction due to embolism of bilateral anterior cerebral arteries','Y','0000-00-00 00:00:00'),(115628,10,'I63.422 ','Cerebral infarction due to embolism of left anterior cerebral artery','Y','0000-00-00 00:00:00'),(115627,10,'I63.421 ','Cerebral infarction due to embolism of right anterior cerebral artery','Y','0000-00-00 00:00:00'),(115626,10,'I63.419 ','Cerebral infarction due to embolism of unspecified middle cerebral artery','Y','0000-00-00 00:00:00'),(115625,10,'I63.413 ','Cerebral infarction due to embolism of bilateral middle cerebral arteries','Y','0000-00-00 00:00:00'),(115624,10,'I63.412 ','Cerebral infarction due to embolism of left middle cerebral artery','Y','0000-00-00 00:00:00'),(115623,10,'I63.411 ','Cerebral infarction due to embolism of right middle cerebral artery','Y','0000-00-00 00:00:00'),(115622,10,'I63.40 ','Cerebral infarction due to embolism of unspecified cerebral artery','Y','0000-00-00 00:00:00'),(115621,10,'I63.39 ','Cerebral infarction due to thrombosis of other cerebral artery','Y','0000-00-00 00:00:00'),(115620,10,'I63.349 ','Cerebral infarction due to thrombosis of unspecified cerebellar artery','Y','0000-00-00 00:00:00'),(115619,10,'I63.343 ','Cerebral infarction due to thrombosis of bilateral cerebellar arteries','Y','0000-00-00 00:00:00'),(115618,10,'I63.342 ','Cerebral infarction due to thrombosis of left cerebellar artery','Y','0000-00-00 00:00:00'),(115617,10,'I63.341 ','Cerebral infarction due to thrombosis of right cerebellar artery','Y','0000-00-00 00:00:00'),(115616,10,'I63.339 ','Cerebral infarction due to thrombosis of unspecified posterior cerebral artery','Y','0000-00-00 00:00:00'),(115615,10,'I63.333 ','Cerebral infarction due to thrombosis of bilateral posterior cerebral arteries','Y','0000-00-00 00:00:00'),(115614,10,'I63.332 ','Cerebral infarction due to thrombosis of left posterior cerebral artery','Y','0000-00-00 00:00:00'),(115613,10,'I63.331 ','Cerebral infarction due to thrombosis of right posterior cerebral artery','Y','0000-00-00 00:00:00'),(115612,10,'I63.329 ','Cerebral infarction due to thrombosis of unspecified anterior cerebral artery','Y','0000-00-00 00:00:00'),(115611,10,'I63.323 ','Cerebral infarction due to thrombosis of bilateral anterior cerebral arteries','Y','0000-00-00 00:00:00'),(115610,10,'I63.322 ','Cerebral infarction due to thrombosis of left anterior cerebral artery','Y','0000-00-00 00:00:00'),(115609,10,'I63.321 ','Cerebral infarction due to thrombosis of right anterior cerebral artery','Y','0000-00-00 00:00:00'),(115608,10,'I63.319 ','Cerebral infarction due to thrombosis of unspecified middle cerebral artery','Y','0000-00-00 00:00:00'),(115607,10,'I63.313 ','Cerebral infarction due to thrombosis of bilateral middle cerebral arteries','Y','0000-00-00 00:00:00'),(115606,10,'I63.312 ','Cerebral infarction due to thrombosis of left middle cerebral artery','Y','0000-00-00 00:00:00'),(115605,10,'I63.311 ','Cerebral infarction due to thrombosis of right middle cerebral artery','Y','0000-00-00 00:00:00'),(115604,10,'I63.30 ','Cerebral infarction due to thrombosis of unspecified cerebral artery','Y','0000-00-00 00:00:00'),(115603,10,'I63.29 ','Cerebral infarction due to unspecified occlusion or stenosis of other precerebral arteries','Y','0000-00-00 00:00:00'),(115602,10,'I63.239 ','Cerebral infarction due to unspecified occlusion or stenosis of unspecified carotid artery','Y','0000-00-00 00:00:00'),(115601,10,'I63.233 ','Cerebral infarction due to unspecified occlusion or stenosis of bilateral carotid arteries','Y','0000-00-00 00:00:00'),(115600,10,'I63.232 ','Cerebral infarction due to unspecified occlusion or stenosis of left carotid arteries','Y','0000-00-00 00:00:00'),(115599,10,'I63.231 ','Cerebral infarction due to unspecified occlusion or stenosis of right carotid arteries','Y','0000-00-00 00:00:00'),(115598,10,'I63.22 ','Cerebral infarction due to unspecified occlusion or stenosis of basilar artery','Y','0000-00-00 00:00:00'),(115597,10,'I63.219 ','Cerebral infarction due to unspecified occlusion or stenosis of unspecified vertebral artery','Y','0000-00-00 00:00:00'),(115596,10,'I63.213 ','Cerebral infarction due to unspecified occlusion or stenosis of bilateral vertebral arteries','Y','0000-00-00 00:00:00'),(115595,10,'I63.212 ','Cerebral infarction due to unspecified occlusion or stenosis of left vertebral artery','Y','0000-00-00 00:00:00'),(115594,10,'I63.211 ','Cerebral infarction due to unspecified occlusion or stenosis of right vertebral artery','Y','0000-00-00 00:00:00'),(115593,10,'I63.20 ','Cerebral infarction due to unspecified occlusion or stenosis of unspecified precerebral arteries','Y','0000-00-00 00:00:00'),(115592,10,'I63.19 ','Cerebral infarction due to embolism of other precerebral artery','Y','0000-00-00 00:00:00'),(115591,10,'I63.139 ','Cerebral infarction due to embolism of unspecified carotid artery','Y','0000-00-00 00:00:00'),(115590,10,'I63.133 ','Cerebral infarction due to embolism of bilateral carotid arteries','Y','0000-00-00 00:00:00'),(115589,10,'I63.132 ','Cerebral infarction due to embolism of left carotid artery','Y','0000-00-00 00:00:00'),(115587,10,'I63.12 ','Cerebral infarction due to embolism of basilar artery','Y','0000-00-00 00:00:00'),(115588,10,'I63.131 ','Cerebral infarction due to embolism of right carotid artery','Y','0000-00-00 00:00:00'),(115586,10,'I63.119 ','Cerebral infarction due to embolism of unspecified vertebral artery','Y','0000-00-00 00:00:00'),(115585,10,'I63.113 ','Cerebral infarction due to embolism of bilateral vertebral arteries','Y','0000-00-00 00:00:00'),(115584,10,'I63.112 ','Cerebral infarction due to embolism of left vertebral artery','Y','0000-00-00 00:00:00'),(115583,10,'I63.111 ','Cerebral infarction due to embolism of right vertebral artery','Y','0000-00-00 00:00:00'),(115582,10,'I63.10 ','Cerebral infarction due to embolism of unspecified precerebral artery','Y','0000-00-00 00:00:00'),(115581,10,'I63.09 ','Cerebral infarction due to thrombosis of other precerebral artery','Y','0000-00-00 00:00:00'),(115580,10,'I63.039 ','Cerebral infarction due to thrombosis of unspecified carotid artery','Y','0000-00-00 00:00:00'),(115579,10,'I63.033 ','Cerebral infarction due to thrombosis of bilateral carotid arteries','Y','0000-00-00 00:00:00'),(115577,10,'I63.031 ','Cerebral infarction due to thrombosis of right carotid artery','Y','0000-00-00 00:00:00'),(115578,10,'I63.032 ','Cerebral infarction due to thrombosis of left carotid artery','Y','0000-00-00 00:00:00'),(115576,10,'I63.02 ','Cerebral infarction due to thrombosis of basilar artery','Y','0000-00-00 00:00:00'),(115575,10,'I63.019 ','Cerebral infarction due to thrombosis of unspecified vertebral artery','Y','0000-00-00 00:00:00'),(115574,10,'I63.013 ','Cerebral infarction due to thrombosis of bilateral vertebral arteries','Y','0000-00-00 00:00:00'),(115573,10,'I63.012 ','Cerebral infarction due to thrombosis of left vertebral artery','Y','0000-00-00 00:00:00'),(115572,10,'I63.011 ','Cerebral infarction due to thrombosis of right vertebral artery','Y','0000-00-00 00:00:00'),(115571,10,'I63.00 ','Cerebral infarction due to thrombosis of unspecified precerebral artery','Y','0000-00-00 00:00:00'),(115569,10,'I62.1 ','Nontraumatic extradural hemorrhage','Y','0000-00-00 00:00:00'),(115570,10,'I62.9 ','Nontraumatic intracranial hemorrhage, unspecified','Y','0000-00-00 00:00:00'),(115568,10,'I62.03 ','Nontraumatic chronic subdural hemorrhage','Y','0000-00-00 00:00:00'),(115566,10,'I62.01 ','Nontraumatic acute subdural hemorrhage','Y','0000-00-00 00:00:00'),(115567,10,'I62.02 ','Nontraumatic subacute subdural hemorrhage','Y','0000-00-00 00:00:00'),(115564,10,'I61.9 ','Nontraumatic intracerebral hemorrhage, unspecified','Y','0000-00-00 00:00:00'),(115565,10,'I62.00 ','Nontraumatic subdural hemorrhage, unspecified','Y','0000-00-00 00:00:00'),(115563,10,'I61.8 ','Other nontraumatic intracerebral hemorrhage','Y','0000-00-00 00:00:00'),(115561,10,'I61.5 ','Nontraumatic intracerebral hemorrhage, intraventricular','Y','0000-00-00 00:00:00'),(115562,10,'I61.6 ','Nontraumatic intracerebral hemorrhage, multiple localized','Y','0000-00-00 00:00:00'),(115560,10,'I61.4 ','Nontraumatic intracerebral hemorrhage in cerebellum','Y','0000-00-00 00:00:00'),(115558,10,'I61.2 ','Nontraumatic intracerebral hemorrhage in hemisphere, unspecified','Y','0000-00-00 00:00:00'),(115559,10,'I61.3 ','Nontraumatic intracerebral hemorrhage in brain stem','Y','0000-00-00 00:00:00'),(115557,10,'I61.1 ','Nontraumatic intracerebral hemorrhage in hemisphere, cortical','Y','0000-00-00 00:00:00'),(115555,10,'I60.9 ','Nontraumatic subarachnoid hemorrhage, unspecified','Y','0000-00-00 00:00:00'),(115556,10,'I61.0 ','Nontraumatic intracerebral hemorrhage in hemisphere, subcortical','Y','0000-00-00 00:00:00'),(115554,10,'I60.8 ','Other nontraumatic subarachnoid hemorrhage','Y','0000-00-00 00:00:00'),(115553,10,'I60.7 ','Nontraumatic subarachnoid hemorrhage from unspecified intracranial artery','Y','0000-00-00 00:00:00'),(115552,10,'I60.6 ','Nontraumatic subarachnoid hemorrhage from other intracranial arteries','Y','0000-00-00 00:00:00'),(115551,10,'I60.52 ','Nontraumatic subarachnoid hemorrhage from left vertebral artery','Y','0000-00-00 00:00:00'),(115550,10,'I60.51 ','Nontraumatic subarachnoid hemorrhage from right vertebral artery','Y','0000-00-00 00:00:00'),(115548,10,'I60.4 ','Nontraumatic subarachnoid hemorrhage from basilar artery','Y','0000-00-00 00:00:00'),(115549,10,'I60.50 ','Nontraumatic subarachnoid hemorrhage from unspecified vertebral artery','Y','0000-00-00 00:00:00'),(115547,10,'I60.32 ','Nontraumatic subarachnoid hemorrhage from left posterior communicating artery','Y','0000-00-00 00:00:00'),(115546,10,'I60.31 ','Nontraumatic subarachnoid hemorrhage from right posterior communicating artery','Y','0000-00-00 00:00:00'),(115545,10,'I60.30 ','Nontraumatic subarachnoid hemorrhage from unspecified posterior communicating artery','Y','0000-00-00 00:00:00'),(115544,10,'I60.2 ','Nontraumatic subarachnoid hemorrhage from anterior communicating artery','Y','0000-00-00 00:00:00'),(115543,10,'I60.12 ','Nontraumatic subarachnoid hemorrhage from left middle cerebral artery','Y','0000-00-00 00:00:00'),(115542,10,'I60.11 ','Nontraumatic subarachnoid hemorrhage from right middle cerebral artery','Y','0000-00-00 00:00:00'),(115541,10,'I60.10 ','Nontraumatic subarachnoid hemorrhage from unspecified middle cerebral artery','Y','0000-00-00 00:00:00'),(115540,10,'I60.02 ','Nontraumatic subarachnoid hemorrhage from left carotid siphon and bifurcation','Y','0000-00-00 00:00:00'),(115539,10,'I60.01 ','Nontraumatic subarachnoid hemorrhage from right carotid siphon and bifurcation','Y','0000-00-00 00:00:00'),(115538,10,'I60.00 ','Nontraumatic subarachnoid hemorrhage from unspecified carotid siphon and bifurcation','Y','0000-00-00 00:00:00'),(115537,10,'I5A','Non-ischemic myocardial injury (non-traumatic)','Y','0000-00-00 00:00:00'),(115536,10,'I52','Other heart disorders in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(115534,10,'I51.89 ','Other ill-defined heart diseases','Y','0000-00-00 00:00:00'),(115535,10,'I51.9 ','Heart disease, unspecified','Y','0000-00-00 00:00:00'),(115532,10,'I51.7 ','Cardiomegaly','Y','0000-00-00 00:00:00'),(115533,10,'I51.81 ','Takotsubo syndrome','Y','0000-00-00 00:00:00'),(115530,10,'I51.4 ','Myocarditis, unspecified','Y','0000-00-00 00:00:00'),(115531,10,'I51.5 ','Myocardial degeneration','Y','0000-00-00 00:00:00'),(115529,10,'I51.3 ','Intracardiac thrombosis, not elsewhere classified','Y','0000-00-00 00:00:00'),(115528,10,'I51.2 ','Rupture of papillary muscle, not elsewhere classified','Y','0000-00-00 00:00:00'),(115527,10,'I51.1 ','Rupture of chordae tendineae, not elsewhere classified','Y','0000-00-00 00:00:00'),(115525,10,'I50.9 ','Heart failure, unspecified','Y','0000-00-00 00:00:00'),(115526,10,'I51.0 ','Cardiac septal defect, acquired','Y','0000-00-00 00:00:00'),(115523,10,'I50.84 ','End stage heart failure','Y','0000-00-00 00:00:00'),(115524,10,'I50.89 ','Other heart failure','Y','0000-00-00 00:00:00'),(115522,10,'I50.83 ','High output heart failure','Y','0000-00-00 00:00:00'),(115521,10,'I50.82 ','Biventricular heart failure','Y','0000-00-00 00:00:00'),(115519,10,'I50.813 ','Acute on chronic right heart failure','Y','0000-00-00 00:00:00'),(115520,10,'I50.814 ','Right heart failure due to left heart failure','Y','0000-00-00 00:00:00'),(115517,10,'I50.811 ','Acute right heart failure','Y','0000-00-00 00:00:00'),(115518,10,'I50.812 ','Chronic right heart failure','Y','0000-00-00 00:00:00'),(115516,10,'I50.810 ','Right heart failure, unspecified','Y','0000-00-00 00:00:00'),(115515,10,'I50.43 ','Acute on chronic combined systolic (congestive) and diastolic (congestive) heart failure','Y','0000-00-00 00:00:00'),(115514,10,'I50.42 ','Chronic combined systolic (congestive) and diastolic (congestive) heart failure','Y','0000-00-00 00:00:00'),(115513,10,'I50.41 ','Acute combined systolic (congestive) and diastolic (congestive) heart failure','Y','0000-00-00 00:00:00'),(115512,10,'I50.40 ','Unspecified combined systolic (congestive) and diastolic (congestive) heart failure','Y','0000-00-00 00:00:00'),(115511,10,'I50.33 ','Acute on chronic diastolic (congestive) heart failure','Y','0000-00-00 00:00:00'),(115510,10,'I50.32 ','Chronic diastolic (congestive) heart failure','Y','0000-00-00 00:00:00'),(115509,10,'I50.31 ','Acute diastolic (congestive) heart failure','Y','0000-00-00 00:00:00'),(115508,10,'I50.30 ','Unspecified diastolic (congestive) heart failure','Y','0000-00-00 00:00:00'),(115506,10,'I50.22 ','Chronic systolic (congestive) heart failure','Y','0000-00-00 00:00:00'),(115507,10,'I50.23 ','Acute on chronic systolic (congestive) heart failure','Y','0000-00-00 00:00:00'),(115505,10,'I50.21 ','Acute systolic (congestive) heart failure','Y','0000-00-00 00:00:00'),(115504,10,'I50.20 ','Unspecified systolic (congestive) heart failure','Y','0000-00-00 00:00:00'),(115502,10,'I49.9 ','Cardiac arrhythmia, unspecified','Y','0000-00-00 00:00:00'),(115503,10,'I50.1 ','Left ventricular failure, unspecified','Y','0000-00-00 00:00:00'),(115500,10,'I49.5 ','Sick sinus syndrome','Y','0000-00-00 00:00:00'),(115501,10,'I49.8 ','Other specified cardiac arrhythmias','Y','0000-00-00 00:00:00'),(115499,10,'I49.49 ','Other premature depolarization','Y','0000-00-00 00:00:00'),(115497,10,'I49.3 ','Ventricular premature depolarization','Y','0000-00-00 00:00:00'),(115498,10,'I49.40 ','Unspecified premature depolarization','Y','0000-00-00 00:00:00'),(115496,10,'I49.2 ','Junctional premature depolarization','Y','0000-00-00 00:00:00'),(115494,10,'I49.02 ','Ventricular flutter','Y','0000-00-00 00:00:00'),(115495,10,'I49.1 ','Atrial premature depolarization','Y','0000-00-00 00:00:00'),(115492,10,'I48.92 ','Unspecified atrial flutter','Y','0000-00-00 00:00:00'),(115493,10,'I49.01 ','Ventricular fibrillation','Y','0000-00-00 00:00:00'),(115490,10,'I48.4 ','Atypical atrial flutter','Y','0000-00-00 00:00:00'),(115491,10,'I48.91 ','Unspecified atrial fibrillation','Y','0000-00-00 00:00:00'),(115488,10,'I48.21 ','Permanent atrial fibrillation','Y','0000-00-00 00:00:00'),(115489,10,'I48.3 ','Typical atrial flutter','Y','0000-00-00 00:00:00'),(115487,10,'I48.20 ','Chronic atrial fibrillation, unspecified','Y','0000-00-00 00:00:00'),(115485,10,'I48.11 ','Longstanding persistent atrial fibrillation','Y','0000-00-00 00:00:00'),(115486,10,'I48.19 ','Other persistent atrial fibrillation','Y','0000-00-00 00:00:00'),(115484,10,'I48.0 ','Paroxysmal atrial fibrillation','Y','0000-00-00 00:00:00'),(115482,10,'I47.29 ','Other ventricular tachycardia','Y','0000-00-00 00:00:00'),(115483,10,'I47.9 ','Paroxysmal tachycardia, unspecified','Y','0000-00-00 00:00:00'),(115481,10,'I47.21 ','Torsades de pointes','Y','0000-00-00 00:00:00'),(115479,10,'I47.19 ','Other supraventricular tachycardia','Y','0000-00-00 00:00:00'),(115480,10,'I47.20 ','Ventricular tachycardia, unspecified','Y','0000-00-00 00:00:00'),(115478,10,'I47.11 ','Inappropriate sinus tachycardia, so stated','Y','0000-00-00 00:00:00'),(115477,10,'I47.10 ','Supraventricular tachycardia, unspecified','Y','0000-00-00 00:00:00'),(115476,10,'I47.0 ','Re-entry ventricular arrhythmia','Y','0000-00-00 00:00:00'),(115475,10,'I46.9 ','Cardiac arrest, cause unspecified','Y','0000-00-00 00:00:00'),(115474,10,'I46.8 ','Cardiac arrest due to other underlying condition','Y','0000-00-00 00:00:00'),(115473,10,'I46.2 ','Cardiac arrest due to underlying cardiac condition','Y','0000-00-00 00:00:00'),(115472,10,'I45.9 ','Conduction disorder, unspecified','Y','0000-00-00 00:00:00'),(115471,10,'I45.89 ','Other specified conduction disorders','Y','0000-00-00 00:00:00'),(115470,10,'I45.81 ','Long QT syndrome','Y','0000-00-00 00:00:00'),(115469,10,'I45.6 ','Pre-excitation syndrome','Y','0000-00-00 00:00:00'),(115468,10,'I45.5 ','Other specified heart block','Y','0000-00-00 00:00:00'),(115467,10,'I45.4 ','Nonspecific intraventricular block','Y','0000-00-00 00:00:00'),(115466,10,'I45.3 ','Trifascicular block','Y','0000-00-00 00:00:00'),(115465,10,'I45.2 ','Bifascicular block','Y','0000-00-00 00:00:00'),(115464,10,'I45.19 ','Other right bundle-branch block','Y','0000-00-00 00:00:00'),(115463,10,'I45.10 ','Unspecified right bundle-branch block','Y','0000-00-00 00:00:00'),(115462,10,'I45.0 ','Right fascicular block','Y','0000-00-00 00:00:00'),(115461,10,'I44.7 ','Left bundle-branch block, unspecified','Y','0000-00-00 00:00:00'),(115460,10,'I44.69 ','Other fascicular block','Y','0000-00-00 00:00:00'),(115459,10,'I44.60 ','Unspecified fascicular block','Y','0000-00-00 00:00:00'),(115458,10,'I44.5 ','Left posterior fascicular block','Y','0000-00-00 00:00:00'),(115457,10,'I44.4 ','Left anterior fascicular block','Y','0000-00-00 00:00:00'),(115456,10,'I44.39 ','Other atrioventricular block','Y','0000-00-00 00:00:00'),(115455,10,'I44.30 ','Unspecified atrioventricular block','Y','0000-00-00 00:00:00'),(115454,10,'I44.2 ','Atrioventricular block, complete','Y','0000-00-00 00:00:00'),(115453,10,'I44.1 ','Atrioventricular block, second degree','Y','0000-00-00 00:00:00'),(115452,10,'I44.0 ','Atrioventricular block, first degree','Y','0000-00-00 00:00:00'),(115451,10,'I43','Cardiomyopathy in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(115450,10,'I42.9 ','Cardiomyopathy, unspecified','Y','0000-00-00 00:00:00'),(115449,10,'I42.8 ','Other cardiomyopathies','Y','0000-00-00 00:00:00'),(115448,10,'I42.7 ','Cardiomyopathy due to drug and external agent','Y','0000-00-00 00:00:00'),(115447,10,'I42.6 ','Alcoholic cardiomyopathy','Y','0000-00-00 00:00:00'),(115446,10,'I42.5 ','Other restrictive cardiomyopathy','Y','0000-00-00 00:00:00'),(115445,10,'I42.4 ','Endocardial fibroelastosis','Y','0000-00-00 00:00:00'),(115444,10,'I42.3 ','Endomyocardial (eosinophilic) disease','Y','0000-00-00 00:00:00'),(115443,10,'I42.2 ','Other hypertrophic cardiomyopathy','Y','0000-00-00 00:00:00'),(115442,10,'I42.1 ','Obstructive hypertrophic cardiomyopathy','Y','0000-00-00 00:00:00'),(115441,10,'I42.0 ','Dilated cardiomyopathy','Y','0000-00-00 00:00:00'),(115440,10,'I41','Myocarditis in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(115439,10,'I40.9 ','Acute myocarditis, unspecified','Y','0000-00-00 00:00:00'),(115438,10,'I40.8 ','Other acute myocarditis','Y','0000-00-00 00:00:00'),(115437,10,'I40.1 ','Isolated myocarditis','Y','0000-00-00 00:00:00'),(115436,10,'I40.0 ','Infective myocarditis','Y','0000-00-00 00:00:00'),(115435,10,'I39','Endocarditis and heart valve disorders in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(115434,10,'I38','Endocarditis, valve unspecified','Y','0000-00-00 00:00:00'),(115433,10,'I37.9 ','Nonrheumatic pulmonary valve disorder, unspecified','Y','0000-00-00 00:00:00'),(115432,10,'I37.8 ','Other nonrheumatic pulmonary valve disorders','Y','0000-00-00 00:00:00'),(115431,10,'I37.2 ','Nonrheumatic pulmonary valve stenosis with insufficiency','Y','0000-00-00 00:00:00'),(115430,10,'I37.1 ','Nonrheumatic pulmonary valve insufficiency','Y','0000-00-00 00:00:00'),(115429,10,'I37.0 ','Nonrheumatic pulmonary valve stenosis','Y','0000-00-00 00:00:00'),(115428,10,'I36.9 ','Nonrheumatic tricuspid valve disorder, unspecified','Y','0000-00-00 00:00:00'),(115427,10,'I36.8 ','Other nonrheumatic tricuspid valve disorders','Y','0000-00-00 00:00:00'),(115426,10,'I36.2 ','Nonrheumatic tricuspid (valve) stenosis with insufficiency','Y','0000-00-00 00:00:00'),(115425,10,'I36.1 ','Nonrheumatic tricuspid (valve) insufficiency','Y','0000-00-00 00:00:00'),(115424,10,'I36.0 ','Nonrheumatic tricuspid (valve) stenosis','Y','0000-00-00 00:00:00'),(115423,10,'I35.9 ','Nonrheumatic aortic valve disorder, unspecified','Y','0000-00-00 00:00:00'),(115422,10,'I35.8 ','Other nonrheumatic aortic valve disorders','Y','0000-00-00 00:00:00'),(115421,10,'I35.2 ','Nonrheumatic aortic (valve) stenosis with insufficiency','Y','0000-00-00 00:00:00'),(115420,10,'I35.1 ','Nonrheumatic aortic (valve) insufficiency','Y','0000-00-00 00:00:00'),(115419,10,'I35.0 ','Nonrheumatic aortic (valve) stenosis','Y','0000-00-00 00:00:00'),(115418,10,'I34.9 ','Nonrheumatic mitral valve disorder, unspecified','Y','0000-00-00 00:00:00'),(115417,10,'I34.89 ','Other nonrheumatic mitral valve disorders','Y','0000-00-00 00:00:00'),(115416,10,'I34.81 ','Nonrheumatic mitral (valve) annulus calcification','Y','0000-00-00 00:00:00'),(115415,10,'I34.2 ','Nonrheumatic mitral (valve) stenosis','Y','0000-00-00 00:00:00'),(115414,10,'I34.1 ','Nonrheumatic mitral (valve) prolapse','Y','0000-00-00 00:00:00'),(115413,10,'I34.0 ','Nonrheumatic mitral (valve) insufficiency','Y','0000-00-00 00:00:00'),(115412,10,'I33.9 ','Acute and subacute endocarditis, unspecified','Y','0000-00-00 00:00:00'),(115411,10,'I33.0 ','Acute and subacute infective endocarditis','Y','0000-00-00 00:00:00'),(115410,10,'I32','Pericarditis in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(115409,10,'I31.9 ','Disease of pericardium, unspecified','Y','0000-00-00 00:00:00'),(115408,10,'I31.8 ','Other specified diseases of pericardium','Y','0000-00-00 00:00:00'),(115407,10,'I31.4 ','Cardiac tamponade','Y','0000-00-00 00:00:00'),(115406,10,'I31.39 ','Other pericardial effusion (noninflammatory)','Y','0000-00-00 00:00:00'),(115405,10,'I31.31 ','Malignant pericardial effusion in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(115404,10,'I31.2 ','Hemopericardium, not elsewhere classified','Y','0000-00-00 00:00:00'),(115403,10,'I31.1 ','Chronic constrictive pericarditis','Y','0000-00-00 00:00:00'),(115402,10,'I31.0 ','Chronic adhesive pericarditis','Y','0000-00-00 00:00:00'),(115401,10,'I30.9 ','Acute pericarditis, unspecified','Y','0000-00-00 00:00:00'),(115400,10,'I30.8 ','Other forms of acute pericarditis','Y','0000-00-00 00:00:00'),(115399,10,'I30.1 ','Infective pericarditis','Y','0000-00-00 00:00:00'),(115398,10,'I30.0 ','Acute nonspecific idiopathic pericarditis','Y','0000-00-00 00:00:00'),(115397,10,'I28.9 ','Disease of pulmonary vessels, unspecified','Y','0000-00-00 00:00:00'),(115396,10,'I28.8 ','Other diseases of pulmonary vessels','Y','0000-00-00 00:00:00'),(115395,10,'I28.1 ','Aneurysm of pulmonary artery','Y','0000-00-00 00:00:00'),(115394,10,'I28.0 ','Arteriovenous fistula of pulmonary vessels','Y','0000-00-00 00:00:00'),(115393,10,'I27.9 ','Pulmonary heart disease, unspecified','Y','0000-00-00 00:00:00'),(115392,10,'I27.89 ','Other specified pulmonary heart diseases','Y','0000-00-00 00:00:00'),(115391,10,'I27.83 ','Eisenmenger\'s syndrome','Y','0000-00-00 00:00:00'),(115390,10,'I27.82 ','Chronic pulmonary embolism','Y','0000-00-00 00:00:00'),(115389,10,'I27.81 ','Cor pulmonale (chronic)','Y','0000-00-00 00:00:00'),(115388,10,'I27.29 ','Other secondary pulmonary hypertension','Y','0000-00-00 00:00:00'),(115387,10,'I27.24 ','Chronic thromboembolic pulmonary hypertension','Y','0000-00-00 00:00:00'),(115386,10,'I27.23 ','Pulmonary hypertension due to lung diseases and hypoxia','Y','0000-00-00 00:00:00'),(115385,10,'I27.22 ','Pulmonary hypertension due to left heart disease','Y','0000-00-00 00:00:00'),(115384,10,'I27.21 ','Secondary pulmonary arterial hypertension','Y','0000-00-00 00:00:00'),(115382,10,'I27.1 ','Kyphoscoliotic heart disease','Y','0000-00-00 00:00:00'),(115383,10,'I27.20 ','Pulmonary hypertension, unspecified','Y','0000-00-00 00:00:00'),(115380,10,'I26.99 ','Other pulmonary embolism without acute cor pulmonale','Y','0000-00-00 00:00:00'),(115381,10,'I27.0 ','Primary pulmonary hypertension','Y','0000-00-00 00:00:00'),(115379,10,'I26.94 ','Multiple subsegmental pulmonary emboli without acute cor pulmonale','Y','0000-00-00 00:00:00'),(115378,10,'I26.93 ','Single subsegmental pulmonary embolism without acute cor pulmonale','Y','0000-00-00 00:00:00'),(115377,10,'I26.92 ','Saddle embolus of pulmonary artery without acute cor pulmonale','Y','0000-00-00 00:00:00'),(115376,10,'I26.90 ','Septic pulmonary embolism without acute cor pulmonale','Y','0000-00-00 00:00:00'),(115374,10,'I26.02 ','Saddle embolus of pulmonary artery with acute cor pulmonale','Y','0000-00-00 00:00:00'),(115375,10,'I26.09 ','Other pulmonary embolism with acute cor pulmonale','Y','0000-00-00 00:00:00'),(115373,10,'I26.01 ','Septic pulmonary embolism with acute cor pulmonale','Y','0000-00-00 00:00:00'),(115372,10,'I25.9 ','Chronic ischemic heart disease, unspecified','Y','0000-00-00 00:00:00'),(115371,10,'I25.89 ','Other forms of chronic ischemic heart disease','Y','0000-00-00 00:00:00'),(115370,10,'I25.85 ','Chronic coronary microvascular dysfunction','Y','0000-00-00 00:00:00'),(115369,10,'I25.84 ','Coronary atherosclerosis due to calcified coronary lesion','Y','0000-00-00 00:00:00'),(115368,10,'I25.83 ','Coronary atherosclerosis due to lipid rich plaque','Y','0000-00-00 00:00:00'),(115367,10,'I25.82 ','Chronic total occlusion of coronary artery','Y','0000-00-00 00:00:00'),(115366,10,'I25.812 ','Atherosclerosis of bypass graft of coronary artery of transplanted heart without angina pectoris','Y','0000-00-00 00:00:00'),(115365,10,'I25.811 ','Atherosclerosis of native coronary artery of transplanted heart without angina pectoris','Y','0000-00-00 00:00:00'),(115364,10,'I25.810 ','Atherosclerosis of coronary artery bypass graft(s) without angina pectoris','Y','0000-00-00 00:00:00'),(115363,10,'I25.799 ','Atherosclerosis of other coronary artery bypass graft(s) with unspecified angina pectoris','Y','0000-00-00 00:00:00'),(115362,10,'I25.798 ','Atherosclerosis of other coronary artery bypass graft(s) with other forms of angina pectoris','Y','0000-00-00 00:00:00'),(115361,10,'I25.792 ','Atherosclerosis of other coronary artery bypass graft(s) with refractory angina pectoris','Y','0000-00-00 00:00:00'),(115360,10,'I25.791 ','Atherosclerosis of other coronary artery bypass graft(s) with angina pectoris with documented spasm','Y','0000-00-00 00:00:00'),(115359,10,'I25.790 ','Atherosclerosis of other coronary artery bypass graft(s) with unstable angina pectoris','Y','0000-00-00 00:00:00'),(115358,10,'I25.769 ','Atherosclerosis of bypass graft of coronary artery of transplanted heart with unspecified angina pectoris','Y','0000-00-00 00:00:00'),(115357,10,'I25.768 ','Atherosclerosis of bypass graft of coronary artery of transplanted heart with other forms of angina pectoris','Y','0000-00-00 00:00:00'),(115356,10,'I25.762 ','Atherosclerosis of bypass graft of coronary artery of transplanted heart with refractory angina pectoris','Y','0000-00-00 00:00:00'),(115355,10,'I25.761 ','Atherosclerosis of bypass graft of coronary artery of transplanted heart with angina pectoris with documented spasm','Y','0000-00-00 00:00:00'),(115354,10,'I25.760 ','Atherosclerosis of bypass graft of coronary artery of transplanted heart with unstable angina','Y','0000-00-00 00:00:00'),(115353,10,'I25.759 ','Atherosclerosis of native coronary artery of transplanted heart with unspecified angina pectoris','Y','0000-00-00 00:00:00'),(115352,10,'I25.758 ','Atherosclerosis of native coronary artery of transplanted heart with other forms of angina pectoris','Y','0000-00-00 00:00:00'),(115351,10,'I25.752 ','Atherosclerosis of native coronary artery of transplanted heart with refractory angina pectoris','Y','0000-00-00 00:00:00'),(115350,10,'I25.751 ','Atherosclerosis of native coronary artery of transplanted heart with angina pectoris with documented spasm','Y','0000-00-00 00:00:00'),(115349,10,'I25.750 ','Atherosclerosis of native coronary artery of transplanted heart with unstable angina','Y','0000-00-00 00:00:00'),(115348,10,'I25.739 ','Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with unspecified angina pectoris','Y','0000-00-00 00:00:00'),(115347,10,'I25.738 ','Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with other forms of angina pectoris','Y','0000-00-00 00:00:00'),(115346,10,'I25.732 ','Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with refractory angina pectoris','Y','0000-00-00 00:00:00'),(115345,10,'I25.731 ','Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with angina pectoris with documented spasm','Y','0000-00-00 00:00:00'),(115344,10,'I25.730 ','Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with unstable angina pectoris','Y','0000-00-00 00:00:00'),(115343,10,'I25.729 ','Atherosclerosis of autologous artery coronary artery bypass graft(s) with unspecified angina pectoris','Y','0000-00-00 00:00:00'),(115342,10,'I25.728 ','Atherosclerosis of autologous artery coronary artery bypass graft(s) with other forms of angina pectoris','Y','0000-00-00 00:00:00'),(115341,10,'I25.722 ','Atherosclerosis of autologous artery coronary artery bypass graft(s) with refractory angina pectoris','Y','0000-00-00 00:00:00'),(115340,10,'I25.721 ','Atherosclerosis of autologous artery coronary artery bypass graft(s) with angina pectoris with documented spasm','Y','0000-00-00 00:00:00'),(115339,10,'I25.720 ','Atherosclerosis of autologous artery coronary artery bypass graft(s) with unstable angina pectoris','Y','0000-00-00 00:00:00'),(115338,10,'I25.719 ','Atherosclerosis of autologous vein coronary artery bypass graft(s) with unspecified angina pectoris','Y','0000-00-00 00:00:00'),(115337,10,'I25.718 ','Atherosclerosis of autologous vein coronary artery bypass graft(s) with other forms of angina pectoris','Y','0000-00-00 00:00:00'),(115336,10,'I25.712 ','Atherosclerosis of autologous vein coronary artery bypass graft(s) with refractory angina pectoris','Y','0000-00-00 00:00:00'),(115335,10,'I25.711 ','Atherosclerosis of autologous vein coronary artery bypass graft(s) with angina pectoris with documented spasm','Y','0000-00-00 00:00:00'),(115334,10,'I25.710 ','Atherosclerosis of autologous vein coronary artery bypass graft(s) with unstable angina pectoris','Y','0000-00-00 00:00:00'),(115333,10,'I25.709 ','Atherosclerosis of coronary artery bypass graft(s), unspecified, with unspecified angina pectoris','Y','0000-00-00 00:00:00'),(115332,10,'I25.708 ','Atherosclerosis of coronary artery bypass graft(s), unspecified, with other forms of angina pectoris','Y','0000-00-00 00:00:00'),(115331,10,'I25.702 ','Atherosclerosis of coronary artery bypass graft(s), unspecified, with refractory angina pectoris','Y','0000-00-00 00:00:00'),(115330,10,'I25.701 ','Atherosclerosis of coronary artery bypass graft(s), unspecified, with angina pectoris with documented spasm','Y','0000-00-00 00:00:00'),(115329,10,'I25.700 ','Atherosclerosis of coronary artery bypass graft(s), unspecified, with unstable angina pectoris','Y','0000-00-00 00:00:00'),(115328,10,'I25.6 ','Silent myocardial ischemia','Y','0000-00-00 00:00:00'),(115327,10,'I25.5 ','Ischemic cardiomyopathy','Y','0000-00-00 00:00:00'),(115326,10,'I25.42 ','Coronary artery dissection','Y','0000-00-00 00:00:00'),(115325,10,'I25.41 ','Coronary artery aneurysm','Y','0000-00-00 00:00:00'),(115324,10,'I25.3 ','Aneurysm of heart','Y','0000-00-00 00:00:00'),(115323,10,'I25.2 ','Old myocardial infarction','Y','0000-00-00 00:00:00'),(115322,10,'I25.119 ','Atherosclerotic heart disease of native coronary artery with unspecified angina pectoris','Y','0000-00-00 00:00:00'),(115321,10,'I25.118 ','Atherosclerotic heart disease of native coronary artery with other forms of angina pectoris','Y','0000-00-00 00:00:00'),(115320,10,'I25.112 ','Atherosclerotic heart disease of native coronary artery with refractory angina pectoris','Y','0000-00-00 00:00:00'),(115319,10,'I25.111 ','Atherosclerotic heart disease of native coronary artery with angina pectoris with documented spasm','Y','0000-00-00 00:00:00'),(115318,10,'I25.110 ','Atherosclerotic heart disease of native coronary artery with unstable angina pectoris','Y','0000-00-00 00:00:00'),(115317,10,'I25.10 ','Atherosclerotic heart disease of native coronary artery without angina pectoris','Y','0000-00-00 00:00:00'),(115316,10,'I24.9 ','Acute ischemic heart disease, unspecified','Y','0000-00-00 00:00:00'),(115315,10,'I24.89 ','Other forms of acute ischemic heart disease','Y','0000-00-00 00:00:00'),(115314,10,'I24.81 ','Acute coronary microvascular dysfunction','Y','0000-00-00 00:00:00'),(115313,10,'I24.1 ','Dressler\'s syndrome','Y','0000-00-00 00:00:00'),(115312,10,'I24.0 ','Acute coronary thrombosis not resulting in myocardial infarction','Y','0000-00-00 00:00:00'),(115311,10,'I23.8 ','Other current complications following acute myocardial infarction','Y','0000-00-00 00:00:00'),(115310,10,'I23.7 ','Postinfarction angina','Y','0000-00-00 00:00:00'),(115309,10,'I23.6 ','Thrombosis of atrium, auricular appendage, and ventricle as current complications following acute myocardial infarction','Y','0000-00-00 00:00:00'),(115308,10,'I23.5 ','Rupture of papillary muscle as current complication following acute myocardial infarction','Y','0000-00-00 00:00:00'),(115307,10,'I23.4 ','Rupture of chordae tendineae as current complication following acute myocardial infarction','Y','0000-00-00 00:00:00'),(115306,10,'I23.3 ','Rupture of cardiac wall without hemopericardium as current complication following acute myocardial infarction','Y','0000-00-00 00:00:00'),(115305,10,'I23.2 ','Ventricular septal defect as current complication following acute myocardial infarction','Y','0000-00-00 00:00:00'),(115304,10,'I23.1 ','Atrial septal defect as current complication following acute myocardial infarction','Y','0000-00-00 00:00:00'),(115303,10,'I23.0 ','Hemopericardium as current complication following acute myocardial infarction','Y','0000-00-00 00:00:00'),(115302,10,'I22.9 ','Subsequent ST elevation (STEMI) myocardial infarction of unspecified site','Y','0000-00-00 00:00:00'),(115300,10,'I22.2 ','Subsequent non-ST elevation (NSTEMI) myocardial infarction','Y','0000-00-00 00:00:00'),(115301,10,'I22.8 ','Subsequent ST elevation (STEMI) myocardial infarction of other sites','Y','0000-00-00 00:00:00'),(115299,10,'I22.1 ','Subsequent ST elevation (STEMI) myocardial infarction of inferior wall','Y','0000-00-00 00:00:00'),(115298,10,'I22.0 ','Subsequent ST elevation (STEMI) myocardial infarction of anterior wall','Y','0000-00-00 00:00:00'),(115297,10,'I21.B ','Myocardial infarction with coronary microvascular dysfunction','Y','0000-00-00 00:00:00'),(115296,10,'I21.A9 ','Other myocardial infarction type','Y','0000-00-00 00:00:00'),(115295,10,'I21.A1 ','Myocardial infarction type 2','Y','0000-00-00 00:00:00'),(115294,10,'I21.9 ','Acute myocardial infarction, unspecified','Y','0000-00-00 00:00:00'),(115293,10,'I21.4 ','Non-ST elevation (NSTEMI) myocardial infarction','Y','0000-00-00 00:00:00'),(115292,10,'I21.3 ','ST elevation (STEMI) myocardial infarction of unspecified site','Y','0000-00-00 00:00:00'),(115291,10,'I21.29 ','ST elevation (STEMI) myocardial infarction involving other sites','Y','0000-00-00 00:00:00'),(115290,10,'I21.21 ','ST elevation (STEMI) myocardial infarction involving left circumflex coronary artery','Y','0000-00-00 00:00:00'),(115289,10,'I21.19 ','ST elevation (STEMI) myocardial infarction involving other coronary artery of inferior wall','Y','0000-00-00 00:00:00'),(115288,10,'I21.11 ','ST elevation (STEMI) myocardial infarction involving right coronary artery','Y','0000-00-00 00:00:00'),(115287,10,'I21.09 ','ST elevation (STEMI) myocardial infarction involving other coronary artery of anterior wall','Y','0000-00-00 00:00:00'),(115286,10,'I21.02 ','ST elevation (STEMI) myocardial infarction involving left anterior descending coronary artery','Y','0000-00-00 00:00:00'),(115285,10,'I21.01 ','ST elevation (STEMI) myocardial infarction involving left main coronary artery','Y','0000-00-00 00:00:00'),(115284,10,'I20.9 ','Angina pectoris, unspecified','Y','0000-00-00 00:00:00'),(115283,10,'I20.89 ','Other forms of angina pectoris','Y','0000-00-00 00:00:00'),(115282,10,'I20.81 ','Angina pectoris with coronary microvascular dysfunction','Y','0000-00-00 00:00:00'),(115281,10,'I20.2 ','Refractory angina pectoris','Y','0000-00-00 00:00:00'),(115280,10,'I20.1 ','Angina pectoris with documented spasm','Y','0000-00-00 00:00:00'),(115278,10,'I1A.0 ','Resistant hypertension','Y','0000-00-00 00:00:00'),(115279,10,'I20.0 ','Unstable angina','Y','0000-00-00 00:00:00'),(115277,10,'I16.9 ','Hypertensive crisis, unspecified','Y','0000-00-00 00:00:00'),(115275,10,'I16.0 ','Hypertensive urgency','Y','0000-00-00 00:00:00'),(115276,10,'I16.1 ','Hypertensive emergency','Y','0000-00-00 00:00:00'),(115274,10,'I15.9 ','Secondary hypertension, unspecified','Y','0000-00-00 00:00:00'),(115273,10,'I15.8 ','Other secondary hypertension','Y','0000-00-00 00:00:00'),(115272,10,'I15.2 ','Hypertension secondary to endocrine disorders','Y','0000-00-00 00:00:00'),(115271,10,'I15.1 ','Hypertension secondary to other renal disorders','Y','0000-00-00 00:00:00'),(115270,10,'I15.0 ','Renovascular hypertension','Y','0000-00-00 00:00:00'),(115269,10,'I13.2 ','Hypertensive heart and chronic kidney disease with heart failure and with stage 5 chronic kidney disease, or end stage renal disease','Y','0000-00-00 00:00:00'),(115268,10,'I13.11 ','Hypertensive heart and chronic kidney disease without heart failure, with stage 5 chronic kidney disease, or end stage renal disease','Y','0000-00-00 00:00:00'),(115267,10,'I13.10 ','Hypertensive heart and chronic kidney disease without heart failure, with stage 1 through stage 4 chronic kidney disease, or unspecified chronic kidney disease','Y','0000-00-00 00:00:00'),(115266,10,'I13.0 ','Hypertensive heart and chronic kidney disease with heart failure and stage 1 through stage 4 chronic kidney disease, or unspecified chronic kidney disease','Y','0000-00-00 00:00:00'),(115265,10,'I12.9 ','Hypertensive chronic kidney disease with stage 1 through stage 4 chronic kidney disease, or unspecified chronic kidney disease','Y','0000-00-00 00:00:00'),(115264,10,'I12.0 ','Hypertensive chronic kidney disease with stage 5 chronic kidney disease or end stage renal disease','Y','0000-00-00 00:00:00'),(115262,10,'I11.0 ','Hypertensive heart disease with heart failure','Y','0000-00-00 00:00:00'),(115263,10,'I11.9 ','Hypertensive heart disease without heart failure','Y','0000-00-00 00:00:00'),(115261,10,'I10','Essential (primary) hypertension','Y','0000-00-00 00:00:00'),(115259,10,'I09.89 ','Other specified rheumatic heart diseases','Y','0000-00-00 00:00:00'),(115260,10,'I09.9 ','Rheumatic heart disease, unspecified','Y','0000-00-00 00:00:00'),(115258,10,'I09.81 ','Rheumatic heart failure','Y','0000-00-00 00:00:00'),(115256,10,'I09.1 ','Rheumatic diseases of endocardium, valve unspecified','Y','0000-00-00 00:00:00'),(115257,10,'I09.2 ','Chronic rheumatic pericarditis','Y','0000-00-00 00:00:00'),(115254,10,'I08.9 ','Rheumatic multiple valve disease, unspecified','Y','0000-00-00 00:00:00'),(115255,10,'I09.0 ','Rheumatic myocarditis','Y','0000-00-00 00:00:00'),(115253,10,'I08.8 ','Other rheumatic multiple valve diseases','Y','0000-00-00 00:00:00'),(115252,10,'I08.3 ','Combined rheumatic disorders of mitral, aortic and tricuspid valves','Y','0000-00-00 00:00:00'),(115251,10,'I08.2 ','Rheumatic disorders of both aortic and tricuspid valves','Y','0000-00-00 00:00:00'),(115249,10,'I08.0 ','Rheumatic disorders of both mitral and aortic valves','Y','0000-00-00 00:00:00'),(115250,10,'I08.1 ','Rheumatic disorders of both mitral and tricuspid valves','Y','0000-00-00 00:00:00'),(115248,10,'I07.9 ','Rheumatic tricuspid valve disease, unspecified','Y','0000-00-00 00:00:00'),(115247,10,'I07.8 ','Other rheumatic tricuspid valve diseases','Y','0000-00-00 00:00:00'),(115245,10,'I07.1 ','Rheumatic tricuspid insufficiency','Y','0000-00-00 00:00:00'),(115246,10,'I07.2 ','Rheumatic tricuspid stenosis and insufficiency','Y','0000-00-00 00:00:00'),(115244,10,'I07.0 ','Rheumatic tricuspid stenosis','Y','0000-00-00 00:00:00'),(115242,10,'I06.8 ','Other rheumatic aortic valve diseases','Y','0000-00-00 00:00:00'),(115243,10,'I06.9 ','Rheumatic aortic valve disease, unspecified','Y','0000-00-00 00:00:00'),(115241,10,'I06.2 ','Rheumatic aortic stenosis with insufficiency','Y','0000-00-00 00:00:00'),(115239,10,'I06.0 ','Rheumatic aortic stenosis','Y','0000-00-00 00:00:00'),(115240,10,'I06.1 ','Rheumatic aortic insufficiency','Y','0000-00-00 00:00:00'),(115238,10,'I05.9 ','Rheumatic mitral valve disease, unspecified','Y','0000-00-00 00:00:00'),(115236,10,'I05.2 ','Rheumatic mitral stenosis with insufficiency','Y','0000-00-00 00:00:00'),(115237,10,'I05.8 ','Other rheumatic mitral valve diseases','Y','0000-00-00 00:00:00'),(115234,10,'I05.0 ','Rheumatic mitral stenosis','Y','0000-00-00 00:00:00'),(115235,10,'I05.1 ','Rheumatic mitral insufficiency','Y','0000-00-00 00:00:00'),(115232,10,'I02.0 ','Rheumatic chorea with heart involvement','Y','0000-00-00 00:00:00'),(115233,10,'I02.9 ','Rheumatic chorea without heart involvement','Y','0000-00-00 00:00:00'),(115230,10,'I01.8 ','Other acute rheumatic heart disease','Y','0000-00-00 00:00:00'),(115231,10,'I01.9 ','Acute rheumatic heart disease, unspecified','Y','0000-00-00 00:00:00'),(115228,10,'I01.1 ','Acute rheumatic endocarditis','Y','0000-00-00 00:00:00'),(115229,10,'I01.2 ','Acute rheumatic myocarditis','Y','0000-00-00 00:00:00'),(115226,10,'I00','Rheumatic fever without heart involvement','Y','0000-00-00 00:00:00'),(115227,10,'I01.0 ','Acute rheumatic pericarditis','Y','0000-00-00 00:00:00'),(115225,10,'H95.89 ','Other postprocedural complications and disorders of the ear and mastoid process, not elsewhere classified','Y','0000-00-00 00:00:00'),(115224,10,'H95.88 ','Other intraoperative complications and disorders of the ear and mastoid process, not elsewhere classified','Y','0000-00-00 00:00:00'),(115223,10,'H95.819 ','Postprocedural stenosis of unspecified external ear canal','Y','0000-00-00 00:00:00'),(115221,10,'H95.812 ','Postprocedural stenosis of left external ear canal','Y','0000-00-00 00:00:00'),(115222,10,'H95.813 ','Postprocedural stenosis of external ear canal, bilateral','Y','0000-00-00 00:00:00'),(115220,10,'H95.811 ','Postprocedural stenosis of right external ear canal','Y','0000-00-00 00:00:00'),(115219,10,'H95.54 ','Postprocedural seroma of ear and mastoid process following other procedure','Y','0000-00-00 00:00:00'),(115218,10,'H95.53 ','Postprocedural seroma of ear and mastoid process following a procedure on the ear and mastoid process','Y','0000-00-00 00:00:00'),(115217,10,'H95.52 ','Postprocedural hematoma of ear and mastoid process following other procedure','Y','0000-00-00 00:00:00'),(115215,10,'H95.42 ','Postprocedural hemorrhage of ear and mastoid process following other procedure','Y','0000-00-00 00:00:00'),(115216,10,'H95.51 ','Postprocedural hematoma of ear and mastoid process following a procedure on the ear and mastoid process','Y','0000-00-00 00:00:00'),(115214,10,'H95.41 ','Postprocedural hemorrhage of ear and mastoid process following a procedure on the ear and mastoid process','Y','0000-00-00 00:00:00'),(115213,10,'H95.32 ','Accidental puncture and laceration of the ear and mastoid process during other procedure','Y','0000-00-00 00:00:00'),(115212,10,'H95.31 ','Accidental puncture and laceration of the ear and mastoid process during a procedure on the ear and mastoid process','Y','0000-00-00 00:00:00'),(115211,10,'H95.22 ','Intraoperative hemorrhage and hematoma of ear and mastoid process complicating other procedure','Y','0000-00-00 00:00:00'),(115210,10,'H95.21 ','Intraoperative hemorrhage and hematoma of ear and mastoid process complicating a procedure on the ear and mastoid process','Y','0000-00-00 00:00:00'),(115209,10,'H95.199 ','Other disorders following mastoidectomy, unspecified ear','Y','0000-00-00 00:00:00'),(115207,10,'H95.192 ','Other disorders following mastoidectomy, left ear','Y','0000-00-00 00:00:00'),(115208,10,'H95.193 ','Other disorders following mastoidectomy, bilateral ears','Y','0000-00-00 00:00:00'),(115206,10,'H95.191 ','Other disorders following mastoidectomy, right ear','Y','0000-00-00 00:00:00'),(115204,10,'H95.133 ','Mucosal cyst of postmastoidectomy cavity, bilateral ears','Y','0000-00-00 00:00:00'),(115205,10,'H95.139 ','Mucosal cyst of postmastoidectomy cavity, unspecified ear','Y','0000-00-00 00:00:00'),(115203,10,'H95.132 ','Mucosal cyst of postmastoidectomy cavity, left ear','Y','0000-00-00 00:00:00'),(115201,10,'H95.129 ','Granulation of postmastoidectomy cavity, unspecified ear','Y','0000-00-00 00:00:00'),(115202,10,'H95.131 ','Mucosal cyst of postmastoidectomy cavity, right ear','Y','0000-00-00 00:00:00'),(115200,10,'H95.123 ','Granulation of postmastoidectomy cavity, bilateral ears','Y','0000-00-00 00:00:00'),(115198,10,'H95.121 ','Granulation of postmastoidectomy cavity, right ear','Y','0000-00-00 00:00:00'),(115199,10,'H95.122 ','Granulation of postmastoidectomy cavity, left ear','Y','0000-00-00 00:00:00'),(115197,10,'H95.119 ','Chronic inflammation of postmastoidectomy cavity, unspecified ear','Y','0000-00-00 00:00:00'),(115196,10,'H95.113 ','Chronic inflammation of postmastoidectomy cavity, bilateral ears','Y','0000-00-00 00:00:00'),(115194,10,'H95.111 ','Chronic inflammation of postmastoidectomy cavity, right ear','Y','0000-00-00 00:00:00'),(115195,10,'H95.112 ','Chronic inflammation of postmastoidectomy cavity, left ear','Y','0000-00-00 00:00:00'),(115193,10,'H95.03 ','Recurrent cholesteatoma of postmastoidectomy cavity, bilateral ears','Y','0000-00-00 00:00:00'),(115192,10,'H95.02 ','Recurrent cholesteatoma of postmastoidectomy cavity, left ear','Y','0000-00-00 00:00:00'),(115190,10,'H95.00 ','Recurrent cholesteatoma of postmastoidectomy cavity, unspecified ear','Y','0000-00-00 00:00:00'),(115191,10,'H95.01 ','Recurrent cholesteatoma of postmastoidectomy cavity, right ear','Y','0000-00-00 00:00:00'),(115189,10,'H94.83 ','Other specified disorders of ear in diseases classified elsewhere, bilateral','Y','0000-00-00 00:00:00'),(115188,10,'H94.82 ','Other specified disorders of left ear in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(115187,10,'H94.81 ','Other specified disorders of right ear in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(115186,10,'H94.80 ','Other specified disorders of ear in diseases classified elsewhere, unspecified ear','Y','0000-00-00 00:00:00'),(115184,10,'H94.02 ','Acoustic neuritis in infectious and parasitic diseases classified elsewhere, left ear','Y','0000-00-00 00:00:00'),(115185,10,'H94.03 ','Acoustic neuritis in infectious and parasitic diseases classified elsewhere, bilateral','Y','0000-00-00 00:00:00'),(115183,10,'H94.01 ','Acoustic neuritis in infectious and parasitic diseases classified elsewhere, right ear','Y','0000-00-00 00:00:00'),(115181,10,'H93.93 ','Unspecified disorder of ear, bilateral','Y','0000-00-00 00:00:00'),(115182,10,'H94.00 ','Acoustic neuritis in infectious and parasitic diseases classified elsewhere, unspecified ear','Y','0000-00-00 00:00:00'),(115179,10,'H93.91 ','Unspecified disorder of right ear','Y','0000-00-00 00:00:00'),(115180,10,'H93.92 ','Unspecified disorder of left ear','Y','0000-00-00 00:00:00'),(115177,10,'H93.8X9 ','Other specified disorders of ear, unspecified ear','Y','0000-00-00 00:00:00'),(115178,10,'H93.90 ','Unspecified disorder of ear, unspecified ear','Y','0000-00-00 00:00:00'),(115175,10,'H93.8X2 ','Other specified disorders of left ear','Y','0000-00-00 00:00:00'),(115176,10,'H93.8X3 ','Other specified disorders of ear, bilateral','Y','0000-00-00 00:00:00'),(115173,10,'H93.3X9 ','Disorders of unspecified acoustic nerve','Y','0000-00-00 00:00:00'),(115174,10,'H93.8X1 ','Other specified disorders of right ear','Y','0000-00-00 00:00:00'),(115171,10,'H93.3X2 ','Disorders of left acoustic nerve','Y','0000-00-00 00:00:00'),(115172,10,'H93.3X3 ','Disorders of bilateral acoustic nerves','Y','0000-00-00 00:00:00'),(115169,10,'H93.299 ','Other abnormal auditory perceptions, unspecified ear','Y','0000-00-00 00:00:00'),(115170,10,'H93.3X1 ','Disorders of right acoustic nerve','Y','0000-00-00 00:00:00'),(115167,10,'H93.292 ','Other abnormal auditory perceptions, left ear','Y','0000-00-00 00:00:00'),(115168,10,'H93.293 ','Other abnormal auditory perceptions, bilateral','Y','0000-00-00 00:00:00'),(115165,10,'H93.25 ','Central auditory processing disorder','Y','0000-00-00 00:00:00'),(115166,10,'H93.291 ','Other abnormal auditory perceptions, right ear','Y','0000-00-00 00:00:00'),(115163,10,'H93.243 ','Temporary auditory threshold shift, bilateral','Y','0000-00-00 00:00:00'),(115164,10,'H93.249 ','Temporary auditory threshold shift, unspecified ear','Y','0000-00-00 00:00:00'),(115161,10,'H93.241 ','Temporary auditory threshold shift, right ear','Y','0000-00-00 00:00:00'),(115162,10,'H93.242 ','Temporary auditory threshold shift, left ear','Y','0000-00-00 00:00:00'),(115159,10,'H93.233 ','Hyperacusis, bilateral','Y','0000-00-00 00:00:00'),(115160,10,'H93.239 ','Hyperacusis, unspecified ear','Y','0000-00-00 00:00:00'),(115157,10,'H93.231 ','Hyperacusis, right ear','Y','0000-00-00 00:00:00'),(115158,10,'H93.232 ','Hyperacusis, left ear','Y','0000-00-00 00:00:00'),(115155,10,'H93.223 ','Diplacusis, bilateral','Y','0000-00-00 00:00:00'),(115156,10,'H93.229 ','Diplacusis, unspecified ear','Y','0000-00-00 00:00:00'),(115153,10,'H93.221 ','Diplacusis, right ear','Y','0000-00-00 00:00:00'),(115154,10,'H93.222 ','Diplacusis, left ear','Y','0000-00-00 00:00:00'),(115151,10,'H93.213 ','Auditory recruitment, bilateral','Y','0000-00-00 00:00:00'),(115152,10,'H93.219 ','Auditory recruitment, unspecified ear','Y','0000-00-00 00:00:00'),(115149,10,'H93.211 ','Auditory recruitment, right ear','Y','0000-00-00 00:00:00'),(115150,10,'H93.212 ','Auditory recruitment, left ear','Y','0000-00-00 00:00:00'),(115147,10,'H93.A3 ','Pulsatile tinnitus, bilateral','Y','0000-00-00 00:00:00'),(115148,10,'H93.A9 ','Pulsatile tinnitus, unspecified ear','Y','0000-00-00 00:00:00'),(115146,10,'H93.A2 ','Pulsatile tinnitus, left ear','Y','0000-00-00 00:00:00'),(115144,10,'H93.19 ','Tinnitus, unspecified ear','Y','0000-00-00 00:00:00'),(115145,10,'H93.A1 ','Pulsatile tinnitus, right ear','Y','0000-00-00 00:00:00'),(115141,10,'H93.11 ','Tinnitus, right ear','Y','0000-00-00 00:00:00'),(115142,10,'H93.12 ','Tinnitus, left ear','Y','0000-00-00 00:00:00'),(115143,10,'H93.13 ','Tinnitus, bilateral','Y','0000-00-00 00:00:00'),(115140,10,'H93.099 ','Unspecified degenerative and vascular disorders of unspecified ear','Y','0000-00-00 00:00:00'),(115139,10,'H93.093 ','Unspecified degenerative and vascular disorders of ear, bilateral','Y','0000-00-00 00:00:00'),(115138,10,'H93.092 ','Unspecified degenerative and vascular disorders of left ear','Y','0000-00-00 00:00:00'),(115136,10,'H93.019 ','Transient ischemic deafness, unspecified ear','Y','0000-00-00 00:00:00'),(115137,10,'H93.091 ','Unspecified degenerative and vascular disorders of right ear','Y','0000-00-00 00:00:00'),(115134,10,'H93.012 ','Transient ischemic deafness, left ear','Y','0000-00-00 00:00:00'),(115135,10,'H93.013 ','Transient ischemic deafness, bilateral','Y','0000-00-00 00:00:00'),(115132,10,'H92.23 ','Otorrhagia, bilateral','Y','0000-00-00 00:00:00'),(115133,10,'H93.011 ','Transient ischemic deafness, right ear','Y','0000-00-00 00:00:00'),(115130,10,'H92.21 ','Otorrhagia, right ear','Y','0000-00-00 00:00:00'),(115131,10,'H92.22 ','Otorrhagia, left ear','Y','0000-00-00 00:00:00'),(115128,10,'H92.13 ','Otorrhea, bilateral','Y','0000-00-00 00:00:00'),(115129,10,'H92.20 ','Otorrhagia, unspecified ear','Y','0000-00-00 00:00:00'),(115126,10,'H92.11 ','Otorrhea, right ear','Y','0000-00-00 00:00:00'),(115127,10,'H92.12 ','Otorrhea, left ear','Y','0000-00-00 00:00:00'),(115125,10,'H92.10 ','Otorrhea, unspecified ear','Y','0000-00-00 00:00:00'),(115122,10,'H92.02 ','Otalgia, left ear','Y','0000-00-00 00:00:00'),(115123,10,'H92.03 ','Otalgia, bilateral','Y','0000-00-00 00:00:00'),(115124,10,'H92.09 ','Otalgia, unspecified ear','Y','0000-00-00 00:00:00'),(115120,10,'H91.93 ','Unspecified hearing loss, bilateral','Y','0000-00-00 00:00:00'),(115121,10,'H92.01 ','Otalgia, right ear','Y','0000-00-00 00:00:00'),(115118,10,'H91.91 ','Unspecified hearing loss, right ear','Y','0000-00-00 00:00:00'),(115119,10,'H91.92 ','Unspecified hearing loss, left ear','Y','0000-00-00 00:00:00'),(115116,10,'H91.8X9 ','Other specified hearing loss, unspecified ear','Y','0000-00-00 00:00:00'),(115117,10,'H91.90 ','Unspecified hearing loss, unspecified ear','Y','0000-00-00 00:00:00'),(115114,10,'H91.8X2 ','Other specified hearing loss, left ear','Y','0000-00-00 00:00:00'),(115115,10,'H91.8X3 ','Other specified hearing loss, bilateral','Y','0000-00-00 00:00:00'),(115113,10,'H91.8X1 ','Other specified hearing loss, right ear','Y','0000-00-00 00:00:00'),(115111,10,'H91.23 ','Sudden idiopathic hearing loss, bilateral','Y','0000-00-00 00:00:00'),(115112,10,'H91.3 ','Deaf nonspeaking, not elsewhere classified','Y','0000-00-00 00:00:00'),(115109,10,'H91.21 ','Sudden idiopathic hearing loss, right ear','Y','0000-00-00 00:00:00'),(115110,10,'H91.22 ','Sudden idiopathic hearing loss, left ear','Y','0000-00-00 00:00:00'),(115106,10,'H91.12 ','Presbycusis, left ear','Y','0000-00-00 00:00:00'),(115107,10,'H91.13 ','Presbycusis, bilateral','Y','0000-00-00 00:00:00'),(115108,10,'H91.20 ','Sudden idiopathic hearing loss, unspecified ear','Y','0000-00-00 00:00:00'),(115104,10,'H91.10 ','Presbycusis, unspecified ear','Y','0000-00-00 00:00:00'),(115105,10,'H91.11 ','Presbycusis, right ear','Y','0000-00-00 00:00:00'),(115102,10,'H91.03 ','Ototoxic hearing loss, bilateral','Y','0000-00-00 00:00:00'),(115103,10,'H91.09 ','Ototoxic hearing loss, unspecified ear','Y','0000-00-00 00:00:00'),(115100,10,'H91.01 ','Ototoxic hearing loss, right ear','Y','0000-00-00 00:00:00'),(115101,10,'H91.02 ','Ototoxic hearing loss, left ear','Y','0000-00-00 00:00:00'),(115099,10,'H90.A32 ','Mixed conductive and sensorineural hearing loss, unilateral, left ear with restricted hearing on the contralateral side','Y','0000-00-00 00:00:00'),(115098,10,'H90.A31 ','Mixed conductive and sensorineural hearing loss, unilateral, right ear with restricted hearing on the contralateral side','Y','0000-00-00 00:00:00'),(115097,10,'H90.A22 ','Sensorineural hearing loss, unilateral, left ear, with restricted hearing on the contralateral side','Y','0000-00-00 00:00:00'),(115096,10,'H90.A21 ','Sensorineural hearing loss, unilateral, right ear, with restricted hearing on the contralateral side','Y','0000-00-00 00:00:00'),(115095,10,'H90.A12 ','Conductive hearing loss, unilateral, left ear with restricted hearing on the contralateral side','Y','0000-00-00 00:00:00'),(115094,10,'H90.A11 ','Conductive hearing loss, unilateral, right ear with restricted hearing on the contralateral side','Y','0000-00-00 00:00:00'),(115093,10,'H90.8 ','Mixed conductive and sensorineural hearing loss, unspecified','Y','0000-00-00 00:00:00'),(115092,10,'H90.72 ','Mixed conductive and sensorineural hearing loss, unilateral, left ear, with unrestricted hearing on the contralateral side','Y','0000-00-00 00:00:00'),(115091,10,'H90.71 ','Mixed conductive and sensorineural hearing loss, unilateral, right ear, with unrestricted hearing on the contralateral side','Y','0000-00-00 00:00:00'),(115089,10,'H90.5 ','Unspecified sensorineural hearing loss','Y','0000-00-00 00:00:00'),(115090,10,'H90.6 ','Mixed conductive and sensorineural hearing loss, bilateral','Y','0000-00-00 00:00:00'),(115088,10,'H90.42 ','Sensorineural hearing loss, unilateral, left ear, with unrestricted hearing on the contralateral side','Y','0000-00-00 00:00:00'),(115087,10,'H90.41 ','Sensorineural hearing loss, unilateral, right ear, with unrestricted hearing on the contralateral side','Y','0000-00-00 00:00:00'),(115085,10,'H90.2 ','Conductive hearing loss, unspecified','Y','0000-00-00 00:00:00'),(115086,10,'H90.3 ','Sensorineural hearing loss, bilateral','Y','0000-00-00 00:00:00'),(115084,10,'H90.12 ','Conductive hearing loss, unilateral, left ear, with unrestricted hearing on the contralateral side','Y','0000-00-00 00:00:00'),(115082,10,'H90.0 ','Conductive hearing loss, bilateral','Y','0000-00-00 00:00:00'),(115083,10,'H90.11 ','Conductive hearing loss, unilateral, right ear, with unrestricted hearing on the contralateral side','Y','0000-00-00 00:00:00'),(115080,10,'H83.92 ','Unspecified disease of left inner ear','Y','0000-00-00 00:00:00'),(115081,10,'H83.93 ','Unspecified disease of inner ear, bilateral','Y','0000-00-00 00:00:00'),(115079,10,'H83.91 ','Unspecified disease of right inner ear','Y','0000-00-00 00:00:00'),(115077,10,'H83.8X9 ','Other specified diseases of inner ear, unspecified ear','Y','0000-00-00 00:00:00'),(115078,10,'H83.90 ','Unspecified disease of inner ear, unspecified ear','Y','0000-00-00 00:00:00'),(115076,10,'H83.8X3 ','Other specified diseases of inner ear, bilateral','Y','0000-00-00 00:00:00'),(115074,10,'H83.8X1 ','Other specified diseases of right inner ear','Y','0000-00-00 00:00:00'),(115075,10,'H83.8X2 ','Other specified diseases of left inner ear','Y','0000-00-00 00:00:00'),(115073,10,'H83.3X9 ','Noise effects on inner ear, unspecified ear','Y','0000-00-00 00:00:00'),(115071,10,'H83.3X2 ','Noise effects on left inner ear','Y','0000-00-00 00:00:00'),(115072,10,'H83.3X3 ','Noise effects on inner ear, bilateral','Y','0000-00-00 00:00:00'),(115069,10,'H83.2X9 ','Labyrinthine dysfunction, unspecified ear','Y','0000-00-00 00:00:00'),(115070,10,'H83.3X1 ','Noise effects on right inner ear','Y','0000-00-00 00:00:00'),(115067,10,'H83.2X2 ','Labyrinthine dysfunction, left ear','Y','0000-00-00 00:00:00'),(115068,10,'H83.2X3 ','Labyrinthine dysfunction, bilateral','Y','0000-00-00 00:00:00'),(115065,10,'H83.19 ','Labyrinthine fistula, unspecified ear','Y','0000-00-00 00:00:00'),(115066,10,'H83.2X1 ','Labyrinthine dysfunction, right ear','Y','0000-00-00 00:00:00'),(115063,10,'H83.12 ','Labyrinthine fistula, left ear','Y','0000-00-00 00:00:00'),(115064,10,'H83.13 ','Labyrinthine fistula, bilateral','Y','0000-00-00 00:00:00'),(115061,10,'H83.09 ','Labyrinthitis, unspecified ear','Y','0000-00-00 00:00:00'),(115062,10,'H83.11 ','Labyrinthine fistula, right ear','Y','0000-00-00 00:00:00'),(115058,10,'H83.01 ','Labyrinthitis, right ear','Y','0000-00-00 00:00:00'),(115059,10,'H83.02 ','Labyrinthitis, left ear','Y','0000-00-00 00:00:00'),(115060,10,'H83.03 ','Labyrinthitis, bilateral','Y','0000-00-00 00:00:00'),(115057,10,'H82.9 ','Vertiginous syndromes in diseases classified elsewhere, unspecified ear','Y','0000-00-00 00:00:00'),(115055,10,'H82.2 ','Vertiginous syndromes in diseases classified elsewhere, left ear','Y','0000-00-00 00:00:00'),(115056,10,'H82.3 ','Vertiginous syndromes in diseases classified elsewhere, bilateral','Y','0000-00-00 00:00:00'),(115054,10,'H82.1 ','Vertiginous syndromes in diseases classified elsewhere, right ear','Y','0000-00-00 00:00:00'),(115052,10,'H81.92 ','Unspecified disorder of vestibular function, left ear','Y','0000-00-00 00:00:00'),(115053,10,'H81.93 ','Unspecified disorder of vestibular function, bilateral','Y','0000-00-00 00:00:00'),(115050,10,'H81.90 ','Unspecified disorder of vestibular function, unspecified ear','Y','0000-00-00 00:00:00'),(115051,10,'H81.91 ','Unspecified disorder of vestibular function, right ear','Y','0000-00-00 00:00:00'),(115049,10,'H81.8X9 ','Other disorders of vestibular function, unspecified ear','Y','0000-00-00 00:00:00'),(115047,10,'H81.8X2 ','Other disorders of vestibular function, left ear','Y','0000-00-00 00:00:00'),(115048,10,'H81.8X3 ','Other disorders of vestibular function, bilateral','Y','0000-00-00 00:00:00'),(115045,10,'H81.4 ','Vertigo of central origin','Y','0000-00-00 00:00:00'),(115046,10,'H81.8X1 ','Other disorders of vestibular function, right ear','Y','0000-00-00 00:00:00'),(115042,10,'H81.392 ','Other peripheral vertigo, left ear','Y','0000-00-00 00:00:00'),(115043,10,'H81.393 ','Other peripheral vertigo, bilateral','Y','0000-00-00 00:00:00'),(115044,10,'H81.399 ','Other peripheral vertigo, unspecified ear','Y','0000-00-00 00:00:00'),(115040,10,'H81.319 ','Aural vertigo, unspecified ear','Y','0000-00-00 00:00:00'),(115041,10,'H81.391 ','Other peripheral vertigo, right ear','Y','0000-00-00 00:00:00'),(115038,10,'H81.312 ','Aural vertigo, left ear','Y','0000-00-00 00:00:00'),(115039,10,'H81.313 ','Aural vertigo, bilateral','Y','0000-00-00 00:00:00'),(115036,10,'H81.23 ','Vestibular neuronitis, bilateral','Y','0000-00-00 00:00:00'),(115037,10,'H81.311 ','Aural vertigo, right ear','Y','0000-00-00 00:00:00'),(115034,10,'H81.21 ','Vestibular neuronitis, right ear','Y','0000-00-00 00:00:00'),(115035,10,'H81.22 ','Vestibular neuronitis, left ear','Y','0000-00-00 00:00:00'),(115032,10,'H81.13 ','Benign paroxysmal vertigo, bilateral','Y','0000-00-00 00:00:00'),(115033,10,'H81.20 ','Vestibular neuronitis, unspecified ear','Y','0000-00-00 00:00:00'),(115030,10,'H81.11 ','Benign paroxysmal vertigo, right ear','Y','0000-00-00 00:00:00'),(115031,10,'H81.12 ','Benign paroxysmal vertigo, left ear','Y','0000-00-00 00:00:00'),(115028,10,'H81.09 ','Meniere\'s disease, unspecified ear','Y','0000-00-00 00:00:00'),(115029,10,'H81.10 ','Benign paroxysmal vertigo, unspecified ear','Y','0000-00-00 00:00:00'),(115026,10,'H81.02 ','Meniere\'s disease, left ear','Y','0000-00-00 00:00:00'),(115027,10,'H81.03 ','Meniere\'s disease, bilateral','Y','0000-00-00 00:00:00'),(115024,10,'H80.93 ','Unspecified otosclerosis, bilateral','Y','0000-00-00 00:00:00'),(115025,10,'H81.01 ','Meniere\'s disease, right ear','Y','0000-00-00 00:00:00'),(115022,10,'H80.91 ','Unspecified otosclerosis, right ear','Y','0000-00-00 00:00:00'),(115023,10,'H80.92 ','Unspecified otosclerosis, left ear','Y','0000-00-00 00:00:00'),(115020,10,'H80.83 ','Other otosclerosis, bilateral','Y','0000-00-00 00:00:00'),(115021,10,'H80.90 ','Unspecified otosclerosis, unspecified ear','Y','0000-00-00 00:00:00'),(115018,10,'H80.81 ','Other otosclerosis, right ear','Y','0000-00-00 00:00:00'),(115019,10,'H80.82 ','Other otosclerosis, left ear','Y','0000-00-00 00:00:00'),(115016,10,'H80.23 ','Cochlear otosclerosis, bilateral','Y','0000-00-00 00:00:00'),(115017,10,'H80.80 ','Other otosclerosis, unspecified ear','Y','0000-00-00 00:00:00'),(115014,10,'H80.21 ','Cochlear otosclerosis, right ear','Y','0000-00-00 00:00:00'),(115015,10,'H80.22 ','Cochlear otosclerosis, left ear','Y','0000-00-00 00:00:00'),(115013,10,'H80.20 ','Cochlear otosclerosis, unspecified ear','Y','0000-00-00 00:00:00'),(115011,10,'H80.12 ','Otosclerosis involving oval window, obliterative, left ear','Y','0000-00-00 00:00:00'),(115012,10,'H80.13 ','Otosclerosis involving oval window, obliterative, bilateral','Y','0000-00-00 00:00:00'),(115010,10,'H80.11 ','Otosclerosis involving oval window, obliterative, right ear','Y','0000-00-00 00:00:00'),(115009,10,'H80.10 ','Otosclerosis involving oval window, obliterative, unspecified ear','Y','0000-00-00 00:00:00'),(115007,10,'H80.02 ','Otosclerosis involving oval window, nonobliterative, left ear','Y','0000-00-00 00:00:00'),(115008,10,'H80.03 ','Otosclerosis involving oval window, nonobliterative, bilateral','Y','0000-00-00 00:00:00'),(115006,10,'H80.01 ','Otosclerosis involving oval window, nonobliterative, right ear','Y','0000-00-00 00:00:00'),(115005,10,'H80.00 ','Otosclerosis involving oval window, nonobliterative, unspecified ear','Y','0000-00-00 00:00:00'),(115004,10,'H75.83 ','Other specified disorders of middle ear and mastoid in diseases classified elsewhere, bilateral','Y','0000-00-00 00:00:00'),(115003,10,'H75.82 ','Other specified disorders of left middle ear and mastoid in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(115002,10,'H75.81 ','Other specified disorders of right middle ear and mastoid in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(115001,10,'H75.80 ','Other specified disorders of middle ear and mastoid in diseases classified elsewhere, unspecified ear','Y','0000-00-00 00:00:00'),(114999,10,'H75.02 ','Mastoiditis in infectious and parasitic diseases classified elsewhere, left ear','Y','0000-00-00 00:00:00'),(115000,10,'H75.03 ','Mastoiditis in infectious and parasitic diseases classified elsewhere, bilateral','Y','0000-00-00 00:00:00'),(114998,10,'H75.01 ','Mastoiditis in infectious and parasitic diseases classified elsewhere, right ear','Y','0000-00-00 00:00:00'),(114996,10,'H74.93 ','Unspecified disorder of middle ear and mastoid, bilateral','Y','0000-00-00 00:00:00'),(114997,10,'H75.00 ','Mastoiditis in infectious and parasitic diseases classified elsewhere, unspecified ear','Y','0000-00-00 00:00:00'),(114995,10,'H74.92 ','Unspecified disorder of left middle ear and mastoid','Y','0000-00-00 00:00:00'),(114993,10,'H74.90 ','Unspecified disorder of middle ear and mastoid, unspecified ear','Y','0000-00-00 00:00:00'),(114994,10,'H74.91 ','Unspecified disorder of right middle ear and mastoid','Y','0000-00-00 00:00:00'),(114991,10,'H74.8X3 ','Other specified disorders of middle ear and mastoid, bilateral','Y','0000-00-00 00:00:00'),(114992,10,'H74.8X9 ','Other specified disorders of middle ear and mastoid, unspecified ear','Y','0000-00-00 00:00:00'),(114990,10,'H74.8X2 ','Other specified disorders of left middle ear and mastoid','Y','0000-00-00 00:00:00'),(114987,10,'H74.42 ','Polyp of left middle ear','Y','0000-00-00 00:00:00'),(114988,10,'H74.43 ','Polyp of middle ear, bilateral','Y','0000-00-00 00:00:00'),(114989,10,'H74.8X1 ','Other specified disorders of right middle ear and mastoid','Y','0000-00-00 00:00:00'),(114985,10,'H74.40 ','Polyp of middle ear, unspecified ear','Y','0000-00-00 00:00:00'),(114986,10,'H74.41 ','Polyp of right middle ear','Y','0000-00-00 00:00:00'),(114984,10,'H74.399 ','Other acquired abnormalities of ear ossicles, unspecified ear','Y','0000-00-00 00:00:00'),(114982,10,'H74.392 ','Other acquired abnormalities of left ear ossicles','Y','0000-00-00 00:00:00'),(114983,10,'H74.393 ','Other acquired abnormalities of ear ossicles, bilateral','Y','0000-00-00 00:00:00'),(114980,10,'H74.329 ','Partial loss of ear ossicles, unspecified ear','Y','0000-00-00 00:00:00'),(114981,10,'H74.391 ','Other acquired abnormalities of right ear ossicles','Y','0000-00-00 00:00:00'),(114978,10,'H74.322 ','Partial loss of ear ossicles, left ear','Y','0000-00-00 00:00:00'),(114979,10,'H74.323 ','Partial loss of ear ossicles, bilateral','Y','0000-00-00 00:00:00'),(114977,10,'H74.321 ','Partial loss of ear ossicles, right ear','Y','0000-00-00 00:00:00'),(114975,10,'H74.313 ','Ankylosis of ear ossicles, bilateral','Y','0000-00-00 00:00:00'),(114976,10,'H74.319 ','Ankylosis of ear ossicles, unspecified ear','Y','0000-00-00 00:00:00'),(114973,10,'H74.311 ','Ankylosis of ear ossicles, right ear','Y','0000-00-00 00:00:00'),(114974,10,'H74.312 ','Ankylosis of ear ossicles, left ear','Y','0000-00-00 00:00:00'),(114972,10,'H74.23 ','Discontinuity and dislocation of ear ossicles, bilateral','Y','0000-00-00 00:00:00'),(114970,10,'H74.21 ','Discontinuity and dislocation of right ear ossicles','Y','0000-00-00 00:00:00'),(114971,10,'H74.22 ','Discontinuity and dislocation of left ear ossicles','Y','0000-00-00 00:00:00'),(114969,10,'H74.20 ','Discontinuity and dislocation of ear ossicles, unspecified ear','Y','0000-00-00 00:00:00'),(114967,10,'H74.13 ','Adhesive middle ear disease, bilateral','Y','0000-00-00 00:00:00'),(114968,10,'H74.19 ','Adhesive middle ear disease, unspecified ear','Y','0000-00-00 00:00:00'),(114966,10,'H74.12 ','Adhesive left middle ear disease','Y','0000-00-00 00:00:00'),(114964,10,'H74.09 ','Tympanosclerosis, unspecified ear','Y','0000-00-00 00:00:00'),(114965,10,'H74.11 ','Adhesive right middle ear disease','Y','0000-00-00 00:00:00'),(114962,10,'H74.02 ','Tympanosclerosis, left ear','Y','0000-00-00 00:00:00'),(114963,10,'H74.03 ','Tympanosclerosis, bilateral','Y','0000-00-00 00:00:00'),(114960,10,'H73.93 ','Unspecified disorder of tympanic membrane, bilateral','Y','0000-00-00 00:00:00'),(114961,10,'H74.01 ','Tympanosclerosis, right ear','Y','0000-00-00 00:00:00'),(114959,10,'H73.92 ','Unspecified disorder of tympanic membrane, left ear','Y','0000-00-00 00:00:00'),(114958,10,'H73.91 ','Unspecified disorder of tympanic membrane, right ear','Y','0000-00-00 00:00:00'),(114957,10,'H73.90 ','Unspecified disorder of tympanic membrane, unspecified ear','Y','0000-00-00 00:00:00'),(114955,10,'H73.893 ','Other specified disorders of tympanic membrane, bilateral','Y','0000-00-00 00:00:00'),(114956,10,'H73.899 ','Other specified disorders of tympanic membrane, unspecified ear','Y','0000-00-00 00:00:00'),(114954,10,'H73.892 ','Other specified disorders of tympanic membrane, left ear','Y','0000-00-00 00:00:00'),(114953,10,'H73.891 ','Other specified disorders of tympanic membrane, right ear','Y','0000-00-00 00:00:00'),(114951,10,'H73.823 ','Atrophic nonflaccid tympanic membrane, bilateral','Y','0000-00-00 00:00:00'),(114952,10,'H73.829 ','Atrophic nonflaccid tympanic membrane, unspecified ear','Y','0000-00-00 00:00:00'),(114950,10,'H73.822 ','Atrophic nonflaccid tympanic membrane, left ear','Y','0000-00-00 00:00:00'),(114948,10,'H73.819 ','Atrophic flaccid tympanic membrane, unspecified ear','Y','0000-00-00 00:00:00'),(114949,10,'H73.821 ','Atrophic nonflaccid tympanic membrane, right ear','Y','0000-00-00 00:00:00'),(114947,10,'H73.813 ','Atrophic flaccid tympanic membrane, bilateral','Y','0000-00-00 00:00:00'),(114945,10,'H73.811 ','Atrophic flaccid tympanic membrane, right ear','Y','0000-00-00 00:00:00'),(114946,10,'H73.812 ','Atrophic flaccid tympanic membrane, left ear','Y','0000-00-00 00:00:00'),(114943,10,'H73.22 ','Unspecified myringitis, left ear','Y','0000-00-00 00:00:00'),(114944,10,'H73.23 ','Unspecified myringitis, bilateral','Y','0000-00-00 00:00:00'),(114941,10,'H73.20 ','Unspecified myringitis, unspecified ear','Y','0000-00-00 00:00:00'),(114942,10,'H73.21 ','Unspecified myringitis, right ear','Y','0000-00-00 00:00:00'),(114939,10,'H73.12 ','Chronic myringitis, left ear','Y','0000-00-00 00:00:00'),(114940,10,'H73.13 ','Chronic myringitis, bilateral','Y','0000-00-00 00:00:00'),(114937,10,'H73.10 ','Chronic myringitis, unspecified ear','Y','0000-00-00 00:00:00'),(114938,10,'H73.11 ','Chronic myringitis, right ear','Y','0000-00-00 00:00:00'),(114935,10,'H73.093 ','Other acute myringitis, bilateral','Y','0000-00-00 00:00:00'),(114936,10,'H73.099 ','Other acute myringitis, unspecified ear','Y','0000-00-00 00:00:00'),(114933,10,'H73.091 ','Other acute myringitis, right ear','Y','0000-00-00 00:00:00'),(114934,10,'H73.092 ','Other acute myringitis, left ear','Y','0000-00-00 00:00:00'),(114931,10,'H73.013 ','Bullous myringitis, bilateral','Y','0000-00-00 00:00:00'),(114932,10,'H73.019 ','Bullous myringitis, unspecified ear','Y','0000-00-00 00:00:00'),(114929,10,'H73.011 ','Bullous myringitis, right ear','Y','0000-00-00 00:00:00'),(114930,10,'H73.012 ','Bullous myringitis, left ear','Y','0000-00-00 00:00:00'),(114927,10,'H73.003 ','Acute myringitis, bilateral','Y','0000-00-00 00:00:00'),(114928,10,'H73.009 ','Acute myringitis, unspecified ear','Y','0000-00-00 00:00:00'),(114925,10,'H73.001 ','Acute myringitis, right ear','Y','0000-00-00 00:00:00'),(114926,10,'H73.002 ','Acute myringitis, left ear','Y','0000-00-00 00:00:00'),(114923,10,'H72.92 ','Unspecified perforation of tympanic membrane, left ear','Y','0000-00-00 00:00:00'),(114924,10,'H72.93 ','Unspecified perforation of tympanic membrane, bilateral','Y','0000-00-00 00:00:00'),(114921,10,'H72.90 ','Unspecified perforation of tympanic membrane, unspecified ear','Y','0000-00-00 00:00:00'),(114922,10,'H72.91 ','Unspecified perforation of tympanic membrane, right ear','Y','0000-00-00 00:00:00'),(114920,10,'H72.829 ','Total perforations of tympanic membrane, unspecified ear','Y','0000-00-00 00:00:00'),(114919,10,'H72.823 ','Total perforations of tympanic membrane, bilateral','Y','0000-00-00 00:00:00'),(114917,10,'H72.821 ','Total perforations of tympanic membrane, right ear','Y','0000-00-00 00:00:00'),(114918,10,'H72.822 ','Total perforations of tympanic membrane, left ear','Y','0000-00-00 00:00:00'),(114916,10,'H72.819 ','Multiple perforations of tympanic membrane, unspecified ear','Y','0000-00-00 00:00:00'),(114915,10,'H72.813 ','Multiple perforations of tympanic membrane, bilateral','Y','0000-00-00 00:00:00'),(114914,10,'H72.812 ','Multiple perforations of tympanic membrane, left ear','Y','0000-00-00 00:00:00'),(114913,10,'H72.811 ','Multiple perforations of tympanic membrane, right ear','Y','0000-00-00 00:00:00'),(114912,10,'H72.2X9 ','Other marginal perforations of tympanic membrane, unspecified ear','Y','0000-00-00 00:00:00'),(114911,10,'H72.2X3 ','Other marginal perforations of tympanic membrane, bilateral','Y','0000-00-00 00:00:00'),(114910,10,'H72.2X2 ','Other marginal perforations of tympanic membrane, left ear','Y','0000-00-00 00:00:00'),(114909,10,'H72.2X1 ','Other marginal perforations of tympanic membrane, right ear','Y','0000-00-00 00:00:00'),(114908,10,'H72.13 ','Attic perforation of tympanic membrane, bilateral','Y','0000-00-00 00:00:00'),(114906,10,'H72.11 ','Attic perforation of tympanic membrane, right ear','Y','0000-00-00 00:00:00'),(114907,10,'H72.12 ','Attic perforation of tympanic membrane, left ear','Y','0000-00-00 00:00:00'),(114905,10,'H72.10 ','Attic perforation of tympanic membrane, unspecified ear','Y','0000-00-00 00:00:00'),(114904,10,'H72.03 ','Central perforation of tympanic membrane, bilateral','Y','0000-00-00 00:00:00'),(114903,10,'H72.02 ','Central perforation of tympanic membrane, left ear','Y','0000-00-00 00:00:00'),(114902,10,'H72.01 ','Central perforation of tympanic membrane, right ear','Y','0000-00-00 00:00:00'),(114901,10,'H72.00 ','Central perforation of tympanic membrane, unspecified ear','Y','0000-00-00 00:00:00'),(114900,10,'H71.93 ','Unspecified cholesteatoma, bilateral','Y','0000-00-00 00:00:00'),(114898,10,'H71.91 ','Unspecified cholesteatoma, right ear','Y','0000-00-00 00:00:00'),(114899,10,'H71.92 ','Unspecified cholesteatoma, left ear','Y','0000-00-00 00:00:00'),(114897,10,'H71.90 ','Unspecified cholesteatoma, unspecified ear','Y','0000-00-00 00:00:00'),(114896,10,'H71.33 ','Diffuse cholesteatosis, bilateral','Y','0000-00-00 00:00:00'),(114895,10,'H71.32 ','Diffuse cholesteatosis, left ear','Y','0000-00-00 00:00:00'),(114894,10,'H71.31 ','Diffuse cholesteatosis, right ear','Y','0000-00-00 00:00:00'),(114893,10,'H71.30 ','Diffuse cholesteatosis, unspecified ear','Y','0000-00-00 00:00:00'),(114892,10,'H71.23 ','Cholesteatoma of mastoid, bilateral','Y','0000-00-00 00:00:00'),(114891,10,'H71.22 ','Cholesteatoma of mastoid, left ear','Y','0000-00-00 00:00:00'),(114890,10,'H71.21 ','Cholesteatoma of mastoid, right ear','Y','0000-00-00 00:00:00'),(114888,10,'H71.13 ','Cholesteatoma of tympanum, bilateral','Y','0000-00-00 00:00:00'),(114889,10,'H71.20 ','Cholesteatoma of mastoid, unspecified ear','Y','0000-00-00 00:00:00'),(114887,10,'H71.12 ','Cholesteatoma of tympanum, left ear','Y','0000-00-00 00:00:00'),(114885,10,'H71.10 ','Cholesteatoma of tympanum, unspecified ear','Y','0000-00-00 00:00:00'),(114886,10,'H71.11 ','Cholesteatoma of tympanum, right ear','Y','0000-00-00 00:00:00'),(114884,10,'H71.03 ','Cholesteatoma of attic, bilateral','Y','0000-00-00 00:00:00'),(114882,10,'H71.01 ','Cholesteatoma of attic, right ear','Y','0000-00-00 00:00:00'),(114883,10,'H71.02 ','Cholesteatoma of attic, left ear','Y','0000-00-00 00:00:00'),(114880,10,'H70.93 ','Unspecified mastoiditis, bilateral','Y','0000-00-00 00:00:00'),(114881,10,'H71.00 ','Cholesteatoma of attic, unspecified ear','Y','0000-00-00 00:00:00'),(114878,10,'H70.91 ','Unspecified mastoiditis, right ear','Y','0000-00-00 00:00:00'),(114879,10,'H70.92 ','Unspecified mastoiditis, left ear','Y','0000-00-00 00:00:00'),(114877,10,'H70.90 ','Unspecified mastoiditis, unspecified ear','Y','0000-00-00 00:00:00'),(114876,10,'H70.899 ','Other mastoiditis and related conditions, unspecified ear','Y','0000-00-00 00:00:00'),(114874,10,'H70.892 ','Other mastoiditis and related conditions, left ear','Y','0000-00-00 00:00:00'),(114875,10,'H70.893 ','Other mastoiditis and related conditions, bilateral','Y','0000-00-00 00:00:00'),(114873,10,'H70.891 ','Other mastoiditis and related conditions, right ear','Y','0000-00-00 00:00:00'),(114871,10,'H70.813 ','Postauricular fistula, bilateral','Y','0000-00-00 00:00:00'),(114872,10,'H70.819 ','Postauricular fistula, unspecified ear','Y','0000-00-00 00:00:00'),(114870,10,'H70.812 ','Postauricular fistula, left ear','Y','0000-00-00 00:00:00'),(114868,10,'H70.229 ','Chronic petrositis, unspecified ear','Y','0000-00-00 00:00:00'),(114869,10,'H70.811 ','Postauricular fistula, right ear','Y','0000-00-00 00:00:00'),(114866,10,'H70.222 ','Chronic petrositis, left ear','Y','0000-00-00 00:00:00'),(114867,10,'H70.223 ','Chronic petrositis, bilateral','Y','0000-00-00 00:00:00'),(114864,10,'H70.219 ','Acute petrositis, unspecified ear','Y','0000-00-00 00:00:00'),(114865,10,'H70.221 ','Chronic petrositis, right ear','Y','0000-00-00 00:00:00'),(114862,10,'H70.212 ','Acute petrositis, left ear','Y','0000-00-00 00:00:00'),(114863,10,'H70.213 ','Acute petrositis, bilateral','Y','0000-00-00 00:00:00'),(114860,10,'H70.209 ','Unspecified petrositis, unspecified ear','Y','0000-00-00 00:00:00'),(114861,10,'H70.211 ','Acute petrositis, right ear','Y','0000-00-00 00:00:00'),(114858,10,'H70.202 ','Unspecified petrositis, left ear','Y','0000-00-00 00:00:00'),(114859,10,'H70.203 ','Unspecified petrositis, bilateral','Y','0000-00-00 00:00:00'),(114857,10,'H70.201 ','Unspecified petrositis, right ear','Y','0000-00-00 00:00:00'),(114855,10,'H70.12 ','Chronic mastoiditis, left ear','Y','0000-00-00 00:00:00'),(114856,10,'H70.13 ','Chronic mastoiditis, bilateral','Y','0000-00-00 00:00:00'),(114853,10,'H70.10 ','Chronic mastoiditis, unspecified ear','Y','0000-00-00 00:00:00'),(114854,10,'H70.11 ','Chronic mastoiditis, right ear','Y','0000-00-00 00:00:00'),(114852,10,'H70.099 ','Acute mastoiditis with other complications, unspecified ear','Y','0000-00-00 00:00:00'),(114851,10,'H70.093 ','Acute mastoiditis with other complications, bilateral','Y','0000-00-00 00:00:00'),(114849,10,'H70.091 ','Acute mastoiditis with other complications, right ear','Y','0000-00-00 00:00:00'),(114850,10,'H70.092 ','Acute mastoiditis with other complications, left ear','Y','0000-00-00 00:00:00'),(114848,10,'H70.019 ','Subperiosteal abscess of mastoid, unspecified ear','Y','0000-00-00 00:00:00'),(114846,10,'H70.012 ','Subperiosteal abscess of mastoid, left ear','Y','0000-00-00 00:00:00'),(114847,10,'H70.013 ','Subperiosteal abscess of mastoid, bilateral','Y','0000-00-00 00:00:00'),(114845,10,'H70.011 ','Subperiosteal abscess of mastoid, right ear','Y','0000-00-00 00:00:00'),(114844,10,'H70.009 ','Acute mastoiditis without complications, unspecified ear','Y','0000-00-00 00:00:00'),(114842,10,'H70.002 ','Acute mastoiditis without complications, left ear','Y','0000-00-00 00:00:00'),(114843,10,'H70.003 ','Acute mastoiditis without complications, bilateral','Y','0000-00-00 00:00:00'),(114841,10,'H70.001 ','Acute mastoiditis without complications, right ear','Y','0000-00-00 00:00:00'),(114840,10,'H69.93 ','Unspecified Eustachian tube disorder, bilateral','Y','0000-00-00 00:00:00'),(114838,10,'H69.91 ','Unspecified Eustachian tube disorder, right ear','Y','0000-00-00 00:00:00'),(114839,10,'H69.92 ','Unspecified Eustachian tube disorder, left ear','Y','0000-00-00 00:00:00'),(114837,10,'H69.90 ','Unspecified Eustachian tube disorder, unspecified ear','Y','0000-00-00 00:00:00'),(114836,10,'H69.83 ','Other specified disorders of Eustachian tube, bilateral','Y','0000-00-00 00:00:00'),(114835,10,'H69.82 ','Other specified disorders of Eustachian tube, left ear','Y','0000-00-00 00:00:00'),(114833,10,'H69.80 ','Other specified disorders of Eustachian tube, unspecified ear','Y','0000-00-00 00:00:00'),(114834,10,'H69.81 ','Other specified disorders of Eustachian tube, right ear','Y','0000-00-00 00:00:00'),(114832,10,'H69.03 ','Patulous Eustachian tube, bilateral','Y','0000-00-00 00:00:00'),(114830,10,'H69.01 ','Patulous Eustachian tube, right ear','Y','0000-00-00 00:00:00'),(114831,10,'H69.02 ','Patulous Eustachian tube, left ear','Y','0000-00-00 00:00:00'),(114829,10,'H69.00 ','Patulous Eustachian tube, unspecified ear','Y','0000-00-00 00:00:00'),(114828,10,'H68.139 ','Extrinsic cartilagenous obstruction of Eustachian tube, unspecified ear','Y','0000-00-00 00:00:00'),(114827,10,'H68.133 ','Extrinsic cartilagenous obstruction of Eustachian tube, bilateral','Y','0000-00-00 00:00:00'),(114825,10,'H68.131 ','Extrinsic cartilagenous obstruction of Eustachian tube, right ear','Y','0000-00-00 00:00:00'),(114826,10,'H68.132 ','Extrinsic cartilagenous obstruction of Eustachian tube, left ear','Y','0000-00-00 00:00:00'),(114824,10,'H68.129 ','Intrinsic cartilagenous obstruction of Eustachian tube, unspecified ear','Y','0000-00-00 00:00:00'),(114823,10,'H68.123 ','Intrinsic cartilagenous obstruction of Eustachian tube, bilateral','Y','0000-00-00 00:00:00'),(114821,10,'H68.121 ','Intrinsic cartilagenous obstruction of Eustachian tube, right ear','Y','0000-00-00 00:00:00'),(114822,10,'H68.122 ','Intrinsic cartilagenous obstruction of Eustachian tube, left ear','Y','0000-00-00 00:00:00'),(114820,10,'H68.119 ','Osseous obstruction of Eustachian tube, unspecified ear','Y','0000-00-00 00:00:00'),(114818,10,'H68.112 ','Osseous obstruction of Eustachian tube, left ear','Y','0000-00-00 00:00:00'),(114819,10,'H68.113 ','Osseous obstruction of Eustachian tube, bilateral','Y','0000-00-00 00:00:00'),(114817,10,'H68.111 ','Osseous obstruction of Eustachian tube, right ear','Y','0000-00-00 00:00:00'),(114815,10,'H68.103 ','Unspecified obstruction of Eustachian tube, bilateral','Y','0000-00-00 00:00:00'),(114816,10,'H68.109 ','Unspecified obstruction of Eustachian tube, unspecified ear','Y','0000-00-00 00:00:00'),(114814,10,'H68.102 ','Unspecified obstruction of Eustachian tube, left ear','Y','0000-00-00 00:00:00'),(114812,10,'H68.029 ','Chronic Eustachian salpingitis, unspecified ear','Y','0000-00-00 00:00:00'),(114813,10,'H68.101 ','Unspecified obstruction of Eustachian tube, right ear','Y','0000-00-00 00:00:00'),(114811,10,'H68.023 ','Chronic Eustachian salpingitis, bilateral','Y','0000-00-00 00:00:00'),(114809,10,'H68.021 ','Chronic Eustachian salpingitis, right ear','Y','0000-00-00 00:00:00'),(114810,10,'H68.022 ','Chronic Eustachian salpingitis, left ear','Y','0000-00-00 00:00:00'),(114808,10,'H68.019 ','Acute Eustachian salpingitis, unspecified ear','Y','0000-00-00 00:00:00'),(114806,10,'H68.012 ','Acute Eustachian salpingitis, left ear','Y','0000-00-00 00:00:00'),(114807,10,'H68.013 ','Acute Eustachian salpingitis, bilateral','Y','0000-00-00 00:00:00'),(114805,10,'H68.011 ','Acute Eustachian salpingitis, right ear','Y','0000-00-00 00:00:00'),(114803,10,'H68.003 ','Unspecified Eustachian salpingitis, bilateral','Y','0000-00-00 00:00:00'),(114804,10,'H68.009 ','Unspecified Eustachian salpingitis, unspecified ear','Y','0000-00-00 00:00:00'),(114802,10,'H68.002 ','Unspecified Eustachian salpingitis, left ear','Y','0000-00-00 00:00:00'),(114800,10,'H67.9 ','Otitis media in diseases classified elsewhere, unspecified ear','Y','0000-00-00 00:00:00'),(114801,10,'H68.001 ','Unspecified Eustachian salpingitis, right ear','Y','0000-00-00 00:00:00'),(114799,10,'H67.3 ','Otitis media in diseases classified elsewhere, bilateral','Y','0000-00-00 00:00:00'),(114797,10,'H67.1 ','Otitis media in diseases classified elsewhere, right ear','Y','0000-00-00 00:00:00'),(114798,10,'H67.2 ','Otitis media in diseases classified elsewhere, left ear','Y','0000-00-00 00:00:00'),(114795,10,'H66.92 ','Otitis media, unspecified, left ear','Y','0000-00-00 00:00:00'),(114796,10,'H66.93 ','Otitis media, unspecified, bilateral','Y','0000-00-00 00:00:00'),(114794,10,'H66.91 ','Otitis media, unspecified, right ear','Y','0000-00-00 00:00:00'),(114792,10,'H66.43 ','Suppurative otitis media, unspecified, bilateral','Y','0000-00-00 00:00:00'),(114793,10,'H66.90 ','Otitis media, unspecified, unspecified ear','Y','0000-00-00 00:00:00'),(114791,10,'H66.42 ','Suppurative otitis media, unspecified, left ear','Y','0000-00-00 00:00:00'),(114789,10,'H66.40 ','Suppurative otitis media, unspecified, unspecified ear','Y','0000-00-00 00:00:00'),(114790,10,'H66.41 ','Suppurative otitis media, unspecified, right ear','Y','0000-00-00 00:00:00'),(114788,10,'H66.3X9 ','Other chronic suppurative otitis media, unspecified ear','Y','0000-00-00 00:00:00'),(114786,10,'H66.3X2 ','Other chronic suppurative otitis media, left ear','Y','0000-00-00 00:00:00'),(114787,10,'H66.3X3 ','Other chronic suppurative otitis media, bilateral','Y','0000-00-00 00:00:00'),(114785,10,'H66.3X1 ','Other chronic suppurative otitis media, right ear','Y','0000-00-00 00:00:00'),(114783,10,'H66.22 ','Chronic atticoantral suppurative otitis media, left ear','Y','0000-00-00 00:00:00'),(114784,10,'H66.23 ','Chronic atticoantral suppurative otitis media, bilateral','Y','0000-00-00 00:00:00'),(114782,10,'H66.21 ','Chronic atticoantral suppurative otitis media, right ear','Y','0000-00-00 00:00:00'),(114781,10,'H66.20 ','Chronic atticoantral suppurative otitis media, unspecified ear','Y','0000-00-00 00:00:00'),(114779,10,'H66.12 ','Chronic tubotympanic suppurative otitis media, left ear','Y','0000-00-00 00:00:00'),(114780,10,'H66.13 ','Chronic tubotympanic suppurative otitis media, bilateral','Y','0000-00-00 00:00:00'),(114778,10,'H66.11 ','Chronic tubotympanic suppurative otitis media, right ear','Y','0000-00-00 00:00:00'),(114777,10,'H66.10 ','Chronic tubotympanic suppurative otitis media, unspecified','Y','0000-00-00 00:00:00'),(114776,10,'H66.019 ','Acute suppurative otitis media with spontaneous rupture of ear drum, unspecified ear','Y','0000-00-00 00:00:00'),(114775,10,'H66.017 ','Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, unspecified ear','Y','0000-00-00 00:00:00'),(114774,10,'H66.016 ','Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, bilateral','Y','0000-00-00 00:00:00'),(114773,10,'H66.015 ','Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, left ear','Y','0000-00-00 00:00:00'),(114772,10,'H66.014 ','Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, right ear','Y','0000-00-00 00:00:00'),(114771,10,'H66.013 ','Acute suppurative otitis media with spontaneous rupture of ear drum, bilateral','Y','0000-00-00 00:00:00'),(114770,10,'H66.012 ','Acute suppurative otitis media with spontaneous rupture of ear drum, left ear','Y','0000-00-00 00:00:00'),(114769,10,'H66.011 ','Acute suppurative otitis media with spontaneous rupture of ear drum, right ear','Y','0000-00-00 00:00:00'),(114768,10,'H66.009 ','Acute suppurative otitis media without spontaneous rupture of ear drum, unspecified ear','Y','0000-00-00 00:00:00'),(114767,10,'H66.007 ','Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, unspecified ear','Y','0000-00-00 00:00:00'),(114766,10,'H66.006 ','Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, bilateral','Y','0000-00-00 00:00:00'),(114765,10,'H66.005 ','Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, left ear','Y','0000-00-00 00:00:00'),(114764,10,'H66.004 ','Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, right ear','Y','0000-00-00 00:00:00'),(114763,10,'H66.003 ','Acute suppurative otitis media without spontaneous rupture of ear drum, bilateral','Y','0000-00-00 00:00:00'),(114762,10,'H66.002 ','Acute suppurative otitis media without spontaneous rupture of ear drum, left ear','Y','0000-00-00 00:00:00'),(114760,10,'H65.93 ','Unspecified nonsuppurative otitis media, bilateral','Y','0000-00-00 00:00:00'),(114761,10,'H66.001 ','Acute suppurative otitis media without spontaneous rupture of ear drum, right ear','Y','0000-00-00 00:00:00'),(114759,10,'H65.92 ','Unspecified nonsuppurative otitis media, left ear','Y','0000-00-00 00:00:00'),(114758,10,'H65.91 ','Unspecified nonsuppurative otitis media, right ear','Y','0000-00-00 00:00:00'),(114756,10,'H65.499 ','Other chronic nonsuppurative otitis media, unspecified ear','Y','0000-00-00 00:00:00'),(114757,10,'H65.90 ','Unspecified nonsuppurative otitis media, unspecified ear','Y','0000-00-00 00:00:00'),(114755,10,'H65.493 ','Other chronic nonsuppurative otitis media, bilateral','Y','0000-00-00 00:00:00'),(114753,10,'H65.491 ','Other chronic nonsuppurative otitis media, right ear','Y','0000-00-00 00:00:00'),(114754,10,'H65.492 ','Other chronic nonsuppurative otitis media, left ear','Y','0000-00-00 00:00:00'),(114752,10,'H65.419 ','Chronic allergic otitis media, unspecified ear','Y','0000-00-00 00:00:00'),(114750,10,'H65.412 ','Chronic allergic otitis media, left ear','Y','0000-00-00 00:00:00'),(114751,10,'H65.413 ','Chronic allergic otitis media, bilateral','Y','0000-00-00 00:00:00'),(114749,10,'H65.411 ','Chronic allergic otitis media, right ear','Y','0000-00-00 00:00:00'),(114747,10,'H65.32 ','Chronic mucoid otitis media, left ear','Y','0000-00-00 00:00:00'),(114748,10,'H65.33 ','Chronic mucoid otitis media, bilateral','Y','0000-00-00 00:00:00'),(114746,10,'H65.31 ','Chronic mucoid otitis media, right ear','Y','0000-00-00 00:00:00'),(114744,10,'H65.23 ','Chronic serous otitis media, bilateral','Y','0000-00-00 00:00:00'),(114745,10,'H65.30 ','Chronic mucoid otitis media, unspecified ear','Y','0000-00-00 00:00:00'),(114742,10,'H65.21 ','Chronic serous otitis media, right ear','Y','0000-00-00 00:00:00'),(114743,10,'H65.22 ','Chronic serous otitis media, left ear','Y','0000-00-00 00:00:00'),(114741,10,'H65.20 ','Chronic serous otitis media, unspecified ear','Y','0000-00-00 00:00:00'),(114740,10,'H65.199 ','Other acute nonsuppurative otitis media, unspecified ear','Y','0000-00-00 00:00:00'),(114738,10,'H65.196 ','Other acute nonsuppurative otitis media, recurrent, bilateral','Y','0000-00-00 00:00:00'),(114739,10,'H65.197 ','Other acute nonsuppurative otitis media recurrent, unspecified ear','Y','0000-00-00 00:00:00'),(114737,10,'H65.195 ','Other acute nonsuppurative otitis media, recurrent, left ear','Y','0000-00-00 00:00:00'),(114735,10,'H65.193 ','Other acute nonsuppurative otitis media, bilateral','Y','0000-00-00 00:00:00'),(114736,10,'H65.194 ','Other acute nonsuppurative otitis media, recurrent, right ear','Y','0000-00-00 00:00:00'),(114734,10,'H65.192 ','Other acute nonsuppurative otitis media, left ear','Y','0000-00-00 00:00:00'),(114733,10,'H65.191 ','Other acute nonsuppurative otitis media, right ear','Y','0000-00-00 00:00:00'),(114732,10,'H65.119 ','Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), unspecified ear','Y','0000-00-00 00:00:00'),(114731,10,'H65.117 ','Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, unspecified ear','Y','0000-00-00 00:00:00'),(114730,10,'H65.116 ','Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, bilateral','Y','0000-00-00 00:00:00'),(114729,10,'H65.115 ','Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, left ear','Y','0000-00-00 00:00:00'),(114728,10,'H65.114 ','Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, right ear','Y','0000-00-00 00:00:00'),(114727,10,'H65.113 ','Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), bilateral','Y','0000-00-00 00:00:00'),(114726,10,'H65.112 ','Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), left ear','Y','0000-00-00 00:00:00'),(114724,10,'H65.07 ','Acute serous otitis media, recurrent, unspecified ear','Y','0000-00-00 00:00:00'),(114725,10,'H65.111 ','Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), right ear','Y','0000-00-00 00:00:00'),(114723,10,'H65.06 ','Acute serous otitis media, recurrent, bilateral','Y','0000-00-00 00:00:00'),(114721,10,'H65.04 ','Acute serous otitis media, recurrent, right ear','Y','0000-00-00 00:00:00'),(114722,10,'H65.05 ','Acute serous otitis media, recurrent, left ear','Y','0000-00-00 00:00:00'),(114719,10,'H65.02 ','Acute serous otitis media, left ear','Y','0000-00-00 00:00:00'),(114720,10,'H65.03 ','Acute serous otitis media, bilateral','Y','0000-00-00 00:00:00'),(114718,10,'H65.01 ','Acute serous otitis media, right ear','Y','0000-00-00 00:00:00'),(114716,10,'H62.8X9 ','Other disorders of external ear in diseases classified elsewhere, unspecified ear','Y','0000-00-00 00:00:00'),(114717,10,'H65.00 ','Acute serous otitis media, unspecified ear','Y','0000-00-00 00:00:00'),(114715,10,'H62.8X3 ','Other disorders of external ear in diseases classified elsewhere, bilateral','Y','0000-00-00 00:00:00'),(114714,10,'H62.8X2 ','Other disorders of left external ear in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(114713,10,'H62.8X1 ','Other disorders of right external ear in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(114712,10,'H62.43 ','Otitis externa in other diseases classified elsewhere, bilateral','Y','0000-00-00 00:00:00'),(114711,10,'H62.42 ','Otitis externa in other diseases classified elsewhere, left ear','Y','0000-00-00 00:00:00'),(114710,10,'H62.41 ','Otitis externa in other diseases classified elsewhere, right ear','Y','0000-00-00 00:00:00'),(114708,10,'H61.93 ','Disorder of external ear, unspecified, bilateral','Y','0000-00-00 00:00:00'),(114709,10,'H62.40 ','Otitis externa in other diseases classified elsewhere, unspecified ear','Y','0000-00-00 00:00:00'),(114707,10,'H61.92 ','Disorder of left external ear, unspecified','Y','0000-00-00 00:00:00'),(114705,10,'H61.90 ','Disorder of external ear, unspecified, unspecified ear','Y','0000-00-00 00:00:00'),(114706,10,'H61.91 ','Disorder of right external ear, unspecified','Y','0000-00-00 00:00:00'),(114704,10,'H61.899 ','Other specified disorders of external ear, unspecified ear','Y','0000-00-00 00:00:00'),(114702,10,'H61.892 ','Other specified disorders of left external ear','Y','0000-00-00 00:00:00'),(114703,10,'H61.893 ','Other specified disorders of external ear, bilateral','Y','0000-00-00 00:00:00'),(114700,10,'H61.819 ','Exostosis of external canal, unspecified ear','Y','0000-00-00 00:00:00'),(114701,10,'H61.891 ','Other specified disorders of right external ear','Y','0000-00-00 00:00:00'),(114698,10,'H61.812 ','Exostosis of left external canal','Y','0000-00-00 00:00:00'),(114699,10,'H61.813 ','Exostosis of external canal, bilateral','Y','0000-00-00 00:00:00'),(114697,10,'H61.811 ','Exostosis of right external canal','Y','0000-00-00 00:00:00'),(114696,10,'H61.399 ','Other acquired stenosis of external ear canal, unspecified ear','Y','0000-00-00 00:00:00'),(114695,10,'H61.393 ','Other acquired stenosis of external ear canal, bilateral','Y','0000-00-00 00:00:00'),(114693,10,'H61.391 ','Other acquired stenosis of right external ear canal','Y','0000-00-00 00:00:00'),(114694,10,'H61.392 ','Other acquired stenosis of left external ear canal','Y','0000-00-00 00:00:00'),(114692,10,'H61.329 ','Acquired stenosis of external ear canal secondary to inflammation and infection, unspecified ear','Y','0000-00-00 00:00:00'),(114691,10,'H61.323 ','Acquired stenosis of external ear canal secondary to inflammation and infection, bilateral','Y','0000-00-00 00:00:00'),(114690,10,'H61.322 ','Acquired stenosis of left external ear canal secondary to inflammation and infection','Y','0000-00-00 00:00:00'),(114689,10,'H61.321 ','Acquired stenosis of right external ear canal secondary to inflammation and infection','Y','0000-00-00 00:00:00'),(114688,10,'H61.319 ','Acquired stenosis of external ear canal secondary to trauma, unspecified ear','Y','0000-00-00 00:00:00'),(114686,10,'H61.312 ','Acquired stenosis of left external ear canal secondary to trauma','Y','0000-00-00 00:00:00'),(114687,10,'H61.313 ','Acquired stenosis of external ear canal secondary to trauma, bilateral','Y','0000-00-00 00:00:00'),(114685,10,'H61.311 ','Acquired stenosis of right external ear canal secondary to trauma','Y','0000-00-00 00:00:00'),(114684,10,'H61.309 ','Acquired stenosis of external ear canal, unspecified, unspecified ear','Y','0000-00-00 00:00:00'),(114683,10,'H61.303 ','Acquired stenosis of external ear canal, unspecified, bilateral','Y','0000-00-00 00:00:00'),(114681,10,'H61.301 ','Acquired stenosis of right external ear canal, unspecified','Y','0000-00-00 00:00:00'),(114682,10,'H61.302 ','Acquired stenosis of left external ear canal, unspecified','Y','0000-00-00 00:00:00'),(114679,10,'H61.22 ','Impacted cerumen, left ear','Y','0000-00-00 00:00:00'),(114680,10,'H61.23 ','Impacted cerumen, bilateral','Y','0000-00-00 00:00:00'),(114677,10,'H61.20 ','Impacted cerumen, unspecified ear','Y','0000-00-00 00:00:00'),(114678,10,'H61.21 ','Impacted cerumen, right ear','Y','0000-00-00 00:00:00'),(114676,10,'H61.199 ','Noninfective disorders of pinna, unspecified ear','Y','0000-00-00 00:00:00'),(114674,10,'H61.192 ','Noninfective disorders of pinna, left ear','Y','0000-00-00 00:00:00'),(114675,10,'H61.193 ','Noninfective disorders of pinna, bilateral','Y','0000-00-00 00:00:00'),(114673,10,'H61.191 ','Noninfective disorders of pinna, right ear','Y','0000-00-00 00:00:00'),(114671,10,'H61.123 ','Hematoma of pinna, bilateral','Y','0000-00-00 00:00:00'),(114672,10,'H61.129 ','Hematoma of pinna, unspecified ear','Y','0000-00-00 00:00:00'),(114669,10,'H61.121 ','Hematoma of pinna, right ear','Y','0000-00-00 00:00:00'),(114670,10,'H61.122 ','Hematoma of pinna, left ear','Y','0000-00-00 00:00:00'),(114668,10,'H61.119 ','Acquired deformity of pinna, unspecified ear','Y','0000-00-00 00:00:00'),(114666,10,'H61.112 ','Acquired deformity of pinna, left ear','Y','0000-00-00 00:00:00'),(114667,10,'H61.113 ','Acquired deformity of pinna, bilateral','Y','0000-00-00 00:00:00'),(114665,10,'H61.111 ','Acquired deformity of pinna, right ear','Y','0000-00-00 00:00:00'),(114664,10,'H61.109 ','Unspecified noninfective disorders of pinna, unspecified ear','Y','0000-00-00 00:00:00'),(114662,10,'H61.102 ','Unspecified noninfective disorders of pinna, left ear','Y','0000-00-00 00:00:00'),(114663,10,'H61.103 ','Unspecified noninfective disorders of pinna, bilateral','Y','0000-00-00 00:00:00'),(114661,10,'H61.101 ','Unspecified noninfective disorders of pinna, right ear','Y','0000-00-00 00:00:00'),(114659,10,'H61.033 ','Chondritis of external ear, bilateral','Y','0000-00-00 00:00:00'),(114660,10,'H61.039 ','Chondritis of external ear, unspecified ear','Y','0000-00-00 00:00:00'),(114658,10,'H61.032 ','Chondritis of left external ear','Y','0000-00-00 00:00:00'),(114656,10,'H61.029 ','Chronic perichondritis of external ear, unspecified ear','Y','0000-00-00 00:00:00'),(114657,10,'H61.031 ','Chondritis of right external ear','Y','0000-00-00 00:00:00'),(114655,10,'H61.023 ','Chronic perichondritis of external ear, bilateral','Y','0000-00-00 00:00:00'),(114654,10,'H61.022 ','Chronic perichondritis of left external ear','Y','0000-00-00 00:00:00'),(114652,10,'H61.019 ','Acute perichondritis of external ear, unspecified ear','Y','0000-00-00 00:00:00'),(114653,10,'H61.021 ','Chronic perichondritis of right external ear','Y','0000-00-00 00:00:00'),(114651,10,'H61.013 ','Acute perichondritis of external ear, bilateral','Y','0000-00-00 00:00:00'),(114649,10,'H61.011 ','Acute perichondritis of right external ear','Y','0000-00-00 00:00:00'),(114650,10,'H61.012 ','Acute perichondritis of left external ear','Y','0000-00-00 00:00:00'),(114648,10,'H61.009 ','Unspecified perichondritis of external ear, unspecified ear','Y','0000-00-00 00:00:00'),(114647,10,'H61.003 ','Unspecified perichondritis of external ear, bilateral','Y','0000-00-00 00:00:00'),(114645,10,'H61.001 ','Unspecified perichondritis of right external ear','Y','0000-00-00 00:00:00'),(114646,10,'H61.002 ','Unspecified perichondritis of left external ear','Y','0000-00-00 00:00:00'),(114644,10,'H60.93 ','Unspecified otitis externa, bilateral','Y','0000-00-00 00:00:00'),(114642,10,'H60.91 ','Unspecified otitis externa, right ear','Y','0000-00-00 00:00:00'),(114643,10,'H60.92 ','Unspecified otitis externa, left ear','Y','0000-00-00 00:00:00'),(114641,10,'H60.90 ','Unspecified otitis externa, unspecified ear','Y','0000-00-00 00:00:00'),(114639,10,'H60.8X3 ','Other otitis externa, bilateral','Y','0000-00-00 00:00:00'),(114640,10,'H60.8X9 ','Other otitis externa, unspecified ear','Y','0000-00-00 00:00:00'),(114638,10,'H60.8X2 ','Other otitis externa, left ear','Y','0000-00-00 00:00:00'),(114636,10,'H60.63 ','Unspecified chronic otitis externa, bilateral','Y','0000-00-00 00:00:00'),(114637,10,'H60.8X1 ','Other otitis externa, right ear','Y','0000-00-00 00:00:00'),(114635,10,'H60.62 ','Unspecified chronic otitis externa, left ear','Y','0000-00-00 00:00:00'),(114633,10,'H60.60 ','Unspecified chronic otitis externa, unspecified ear','Y','0000-00-00 00:00:00'),(114634,10,'H60.61 ','Unspecified chronic otitis externa, right ear','Y','0000-00-00 00:00:00'),(114632,10,'H60.599 ','Other noninfective acute otitis externa, unspecified ear','Y','0000-00-00 00:00:00'),(114631,10,'H60.593 ','Other noninfective acute otitis externa, bilateral','Y','0000-00-00 00:00:00'),(114630,10,'H60.592 ','Other noninfective acute otitis externa, left ear','Y','0000-00-00 00:00:00'),(114628,10,'H60.559 ','Acute reactive otitis externa, unspecified ear','Y','0000-00-00 00:00:00'),(114629,10,'H60.591 ','Other noninfective acute otitis externa, right ear','Y','0000-00-00 00:00:00'),(114627,10,'H60.553 ','Acute reactive otitis externa, bilateral','Y','0000-00-00 00:00:00'),(114625,10,'H60.551 ','Acute reactive otitis externa, right ear','Y','0000-00-00 00:00:00'),(114626,10,'H60.552 ','Acute reactive otitis externa, left ear','Y','0000-00-00 00:00:00'),(114624,10,'H60.549 ','Acute eczematoid otitis externa, unspecified ear','Y','0000-00-00 00:00:00'),(114622,10,'H60.542 ','Acute eczematoid otitis externa, left ear','Y','0000-00-00 00:00:00'),(114623,10,'H60.543 ','Acute eczematoid otitis externa, bilateral','Y','0000-00-00 00:00:00'),(114621,10,'H60.541 ','Acute eczematoid otitis externa, right ear','Y','0000-00-00 00:00:00'),(114619,10,'H60.533 ','Acute contact otitis externa, bilateral','Y','0000-00-00 00:00:00'),(114620,10,'H60.539 ','Acute contact otitis externa, unspecified ear','Y','0000-00-00 00:00:00'),(114618,10,'H60.532 ','Acute contact otitis externa, left ear','Y','0000-00-00 00:00:00'),(114616,10,'H60.529 ','Acute chemical otitis externa, unspecified ear','Y','0000-00-00 00:00:00'),(114617,10,'H60.531 ','Acute contact otitis externa, right ear','Y','0000-00-00 00:00:00'),(114615,10,'H60.523 ','Acute chemical otitis externa, bilateral','Y','0000-00-00 00:00:00'),(114613,10,'H60.521 ','Acute chemical otitis externa, right ear','Y','0000-00-00 00:00:00'),(114614,10,'H60.522 ','Acute chemical otitis externa, left ear','Y','0000-00-00 00:00:00'),(114612,10,'H60.519 ','Acute actinic otitis externa, unspecified ear','Y','0000-00-00 00:00:00'),(114610,10,'H60.512 ','Acute actinic otitis externa, left ear','Y','0000-00-00 00:00:00'),(114611,10,'H60.513 ','Acute actinic otitis externa, bilateral','Y','0000-00-00 00:00:00'),(114609,10,'H60.511 ','Acute actinic otitis externa, right ear','Y','0000-00-00 00:00:00'),(114607,10,'H60.503 ','Unspecified acute noninfective otitis externa, bilateral','Y','0000-00-00 00:00:00'),(114608,10,'H60.509 ','Unspecified acute noninfective otitis externa, unspecified ear','Y','0000-00-00 00:00:00'),(114606,10,'H60.502 ','Unspecified acute noninfective otitis externa, left ear','Y','0000-00-00 00:00:00'),(114604,10,'H60.43 ','Cholesteatoma of external ear, bilateral','Y','0000-00-00 00:00:00'),(114605,10,'H60.501 ','Unspecified acute noninfective otitis externa, right ear','Y','0000-00-00 00:00:00'),(114603,10,'H60.42 ','Cholesteatoma of left external ear','Y','0000-00-00 00:00:00'),(114601,10,'H60.40 ','Cholesteatoma of external ear, unspecified ear','Y','0000-00-00 00:00:00'),(114602,10,'H60.41 ','Cholesteatoma of right external ear','Y','0000-00-00 00:00:00'),(114600,10,'H60.399 ','Other infective otitis externa, unspecified ear','Y','0000-00-00 00:00:00'),(114599,10,'H60.393 ','Other infective otitis externa, bilateral','Y','0000-00-00 00:00:00'),(114597,10,'H60.391 ','Other infective otitis externa, right ear','Y','0000-00-00 00:00:00'),(114598,10,'H60.392 ','Other infective otitis externa, left ear','Y','0000-00-00 00:00:00'),(114595,10,'H60.333 ','Swimmer\'s ear, bilateral','Y','0000-00-00 00:00:00'),(114596,10,'H60.339 ','Swimmer\'s ear, unspecified ear','Y','0000-00-00 00:00:00'),(114593,10,'H60.331 ','Swimmer\'s ear, right ear','Y','0000-00-00 00:00:00'),(114594,10,'H60.332 ','Swimmer\'s ear, left ear','Y','0000-00-00 00:00:00'),(114592,10,'H60.329 ','Hemorrhagic otitis externa, unspecified ear','Y','0000-00-00 00:00:00'),(114590,10,'H60.322 ','Hemorrhagic otitis externa, left ear','Y','0000-00-00 00:00:00'),(114591,10,'H60.323 ','Hemorrhagic otitis externa, bilateral','Y','0000-00-00 00:00:00'),(114589,10,'H60.321 ','Hemorrhagic otitis externa, right ear','Y','0000-00-00 00:00:00'),(114587,10,'H60.313 ','Diffuse otitis externa, bilateral','Y','0000-00-00 00:00:00'),(114588,10,'H60.319 ','Diffuse otitis externa, unspecified ear','Y','0000-00-00 00:00:00'),(114585,10,'H60.311 ','Diffuse otitis externa, right ear','Y','0000-00-00 00:00:00'),(114586,10,'H60.312 ','Diffuse otitis externa, left ear','Y','0000-00-00 00:00:00'),(114583,10,'H60.22 ','Malignant otitis externa, left ear','Y','0000-00-00 00:00:00'),(114584,10,'H60.23 ','Malignant otitis externa, bilateral','Y','0000-00-00 00:00:00'),(114582,10,'H60.21 ','Malignant otitis externa, right ear','Y','0000-00-00 00:00:00'),(114580,10,'H60.13 ','Cellulitis of external ear, bilateral','Y','0000-00-00 00:00:00'),(114581,10,'H60.20 ','Malignant otitis externa, unspecified ear','Y','0000-00-00 00:00:00'),(114579,10,'H60.12 ','Cellulitis of left external ear','Y','0000-00-00 00:00:00'),(114577,10,'H60.10 ','Cellulitis of external ear, unspecified ear','Y','0000-00-00 00:00:00'),(114578,10,'H60.11 ','Cellulitis of right external ear','Y','0000-00-00 00:00:00'),(114575,10,'H60.02 ','Abscess of left external ear','Y','0000-00-00 00:00:00'),(114576,10,'H60.03 ','Abscess of external ear, bilateral','Y','0000-00-00 00:00:00'),(114573,10,'H60.00 ','Abscess of external ear, unspecified ear','Y','0000-00-00 00:00:00'),(114574,10,'H60.01 ','Abscess of right external ear','Y','0000-00-00 00:00:00'),(114572,10,'H59.89 ','Other postprocedural complications and disorders of eye and adnexa, not elsewhere classified','Y','0000-00-00 00:00:00'),(114571,10,'H59.88 ','Other intraoperative complications of eye and adnexa, not elsewhere classified','Y','0000-00-00 00:00:00'),(114570,10,'H59.819 ','Chorioretinal scars after surgery for detachment, unspecified eye','Y','0000-00-00 00:00:00'),(114569,10,'H59.813 ','Chorioretinal scars after surgery for detachment, bilateral','Y','0000-00-00 00:00:00'),(114568,10,'H59.812 ','Chorioretinal scars after surgery for detachment, left eye','Y','0000-00-00 00:00:00'),(114566,10,'H59.43 ','Inflammation (infection) of postprocedural bleb, stage 3','Y','0000-00-00 00:00:00'),(114567,10,'H59.811 ','Chorioretinal scars after surgery for detachment, right eye','Y','0000-00-00 00:00:00'),(114565,10,'H59.42 ','Inflammation (infection) of postprocedural bleb, stage 2','Y','0000-00-00 00:00:00'),(114564,10,'H59.41 ','Inflammation (infection) of postprocedural bleb, stage 1','Y','0000-00-00 00:00:00'),(114563,10,'H59.40 ','Inflammation (infection) of postprocedural bleb, unspecified','Y','0000-00-00 00:00:00'),(114562,10,'H59.369 ','Postprocedural seroma of unspecified eye and adnexa following other procedure','Y','0000-00-00 00:00:00'),(114561,10,'H59.363 ','Postprocedural seroma of eye and adnexa following other procedure, bilateral','Y','0000-00-00 00:00:00'),(114560,10,'H59.362 ','Postprocedural seroma of left eye and adnexa following other procedure','Y','0000-00-00 00:00:00'),(114559,10,'H59.361 ','Postprocedural seroma of right eye and adnexa following other procedure','Y','0000-00-00 00:00:00'),(114558,10,'H59.359 ','Postprocedural seroma of unspecified eye and adnexa following an ophthalmic procedure','Y','0000-00-00 00:00:00'),(114557,10,'H59.353 ','Postprocedural seroma of eye and adnexa following an ophthalmic procedure, bilateral','Y','0000-00-00 00:00:00'),(114556,10,'H59.352 ','Postprocedural seroma of left eye and adnexa following an ophthalmic procedure','Y','0000-00-00 00:00:00'),(114555,10,'H59.351 ','Postprocedural seroma of right eye and adnexa following an ophthalmic procedure','Y','0000-00-00 00:00:00'),(114554,10,'H59.349 ','Postprocedural hematoma of unspecified eye and adnexa following other procedure','Y','0000-00-00 00:00:00'),(114553,10,'H59.343 ','Postprocedural hematoma of eye and adnexa following other procedure, bilateral','Y','0000-00-00 00:00:00'),(114551,10,'H59.341 ','Postprocedural hematoma of right eye and adnexa following other procedure','Y','0000-00-00 00:00:00'),(114552,10,'H59.342 ','Postprocedural hematoma of left eye and adnexa following other procedure','Y','0000-00-00 00:00:00'),(114550,10,'H59.339 ','Postprocedural hematoma of unspecified eye and adnexa following an ophthalmic procedure','Y','0000-00-00 00:00:00'),(114549,10,'H59.333 ','Postprocedural hematoma of eye and adnexa following an ophthalmic procedure, bilateral','Y','0000-00-00 00:00:00'),(114548,10,'H59.332 ','Postprocedural hematoma of left eye and adnexa following an ophthalmic procedure','Y','0000-00-00 00:00:00'),(114547,10,'H59.331 ','Postprocedural hematoma of right eye and adnexa following an ophthalmic procedure','Y','0000-00-00 00:00:00'),(114546,10,'H59.329 ','Postprocedural hemorrhage of unspecified eye and adnexa following other procedure','Y','0000-00-00 00:00:00'),(114545,10,'H59.323 ','Postprocedural hemorrhage of eye and adnexa following other procedure, bilateral','Y','0000-00-00 00:00:00'),(114544,10,'H59.322 ','Postprocedural hemorrhage of left eye and adnexa following other procedure','Y','0000-00-00 00:00:00'),(114543,10,'H59.321 ','Postprocedural hemorrhage of right eye and adnexa following other procedure','Y','0000-00-00 00:00:00'),(114542,10,'H59.319 ','Postprocedural hemorrhage of unspecified eye and adnexa following an ophthalmic procedure','Y','0000-00-00 00:00:00'),(114541,10,'H59.313 ','Postprocedural hemorrhage of eye and adnexa following an ophthalmic procedure, bilateral','Y','0000-00-00 00:00:00'),(114540,10,'H59.312 ','Postprocedural hemorrhage of left eye and adnexa following an ophthalmic procedure','Y','0000-00-00 00:00:00'),(114539,10,'H59.311 ','Postprocedural hemorrhage of right eye and adnexa following an ophthalmic procedure','Y','0000-00-00 00:00:00'),(114538,10,'H59.229 ','Accidental puncture and laceration of unspecified eye and adnexa during other procedure','Y','0000-00-00 00:00:00'),(114537,10,'H59.223 ','Accidental puncture and laceration of eye and adnexa during other procedure, bilateral','Y','0000-00-00 00:00:00'),(114536,10,'H59.222 ','Accidental puncture and laceration of left eye and adnexa during other procedure','Y','0000-00-00 00:00:00'),(114535,10,'H59.221 ','Accidental puncture and laceration of right eye and adnexa during other procedure','Y','0000-00-00 00:00:00'),(114534,10,'H59.219 ','Accidental puncture and laceration of unspecified eye and adnexa during an ophthalmic procedure','Y','0000-00-00 00:00:00'),(114533,10,'H59.213 ','Accidental puncture and laceration of eye and adnexa during an ophthalmic procedure, bilateral','Y','0000-00-00 00:00:00'),(114532,10,'H59.212 ','Accidental puncture and laceration of left eye and adnexa during an ophthalmic procedure','Y','0000-00-00 00:00:00'),(114531,10,'H59.211 ','Accidental puncture and laceration of right eye and adnexa during an ophthalmic procedure','Y','0000-00-00 00:00:00'),(114530,10,'H59.129 ','Intraoperative hemorrhage and hematoma of unspecified eye and adnexa complicating other procedure','Y','0000-00-00 00:00:00'),(114529,10,'H59.123 ','Intraoperative hemorrhage and hematoma of eye and adnexa complicating other procedure, bilateral','Y','0000-00-00 00:00:00'),(114528,10,'H59.122 ','Intraoperative hemorrhage and hematoma of left eye and adnexa complicating other procedure','Y','0000-00-00 00:00:00'),(114527,10,'H59.121 ','Intraoperative hemorrhage and hematoma of right eye and adnexa complicating other procedure','Y','0000-00-00 00:00:00'),(114526,10,'H59.119 ','Intraoperative hemorrhage and hematoma of unspecified eye and adnexa complicating an ophthalmic procedure','Y','0000-00-00 00:00:00'),(114525,10,'H59.113 ','Intraoperative hemorrhage and hematoma of eye and adnexa complicating an ophthalmic procedure, bilateral','Y','0000-00-00 00:00:00'),(114524,10,'H59.112 ','Intraoperative hemorrhage and hematoma of left eye and adnexa complicating an ophthalmic procedure','Y','0000-00-00 00:00:00'),(114523,10,'H59.111 ','Intraoperative hemorrhage and hematoma of right eye and adnexa complicating an ophthalmic procedure','Y','0000-00-00 00:00:00'),(114522,10,'H59.099 ','Other disorders of unspecified eye following cataract surgery','Y','0000-00-00 00:00:00'),(114521,10,'H59.093 ','Other disorders of the eye following cataract surgery, bilateral','Y','0000-00-00 00:00:00'),(114520,10,'H59.092 ','Other disorders of the left eye following cataract surgery','Y','0000-00-00 00:00:00'),(114519,10,'H59.091 ','Other disorders of the right eye following cataract surgery','Y','0000-00-00 00:00:00'),(114517,10,'H59.033 ','Cystoid macular edema following cataract surgery, bilateral','Y','0000-00-00 00:00:00'),(114518,10,'H59.039 ','Cystoid macular edema following cataract surgery, unspecified eye','Y','0000-00-00 00:00:00'),(114516,10,'H59.032 ','Cystoid macular edema following cataract surgery, left eye','Y','0000-00-00 00:00:00'),(114515,10,'H59.031 ','Cystoid macular edema following cataract surgery, right eye','Y','0000-00-00 00:00:00'),(114513,10,'H59.023 ','Cataract (lens) fragments in eye following cataract surgery, bilateral','Y','0000-00-00 00:00:00'),(114514,10,'H59.029 ','Cataract (lens) fragments in eye following cataract surgery, unspecified eye','Y','0000-00-00 00:00:00'),(114512,10,'H59.022 ','Cataract (lens) fragments in eye following cataract surgery, left eye','Y','0000-00-00 00:00:00'),(114511,10,'H59.021 ','Cataract (lens) fragments in eye following cataract surgery, right eye','Y','0000-00-00 00:00:00'),(114509,10,'H59.013 ','Keratopathy (bullous aphakic) following cataract surgery, bilateral','Y','0000-00-00 00:00:00'),(114510,10,'H59.019 ','Keratopathy (bullous aphakic) following cataract surgery, unspecified eye','Y','0000-00-00 00:00:00'),(114508,10,'H59.012 ','Keratopathy (bullous aphakic) following cataract surgery, left eye','Y','0000-00-00 00:00:00'),(114506,10,'H57.9 ','Unspecified disorder of eye and adnexa','Y','0000-00-00 00:00:00'),(114507,10,'H59.011 ','Keratopathy (bullous aphakic) following cataract surgery, right eye','Y','0000-00-00 00:00:00'),(114504,10,'H57.8A3 ','Foreign body sensation, bilateral eyes','Y','0000-00-00 00:00:00'),(114505,10,'H57.8A9 ','Foreign body sensation, unspecified eye','Y','0000-00-00 00:00:00'),(114502,10,'H57.8A1 ','Foreign body sensation, right eye','Y','0000-00-00 00:00:00'),(114503,10,'H57.8A2 ','Foreign body sensation, left eye','Y','0000-00-00 00:00:00'),(114500,10,'H57.819 ','Brow ptosis, unspecified','Y','0000-00-00 00:00:00'),(114501,10,'H57.89 ','Other specified disorders of eye and adnexa','Y','0000-00-00 00:00:00'),(114498,10,'H57.812 ','Brow ptosis, left','Y','0000-00-00 00:00:00'),(114499,10,'H57.813 ','Brow ptosis, bilateral','Y','0000-00-00 00:00:00'),(114496,10,'H57.13 ','Ocular pain, bilateral','Y','0000-00-00 00:00:00'),(114497,10,'H57.811 ','Brow ptosis, right','Y','0000-00-00 00:00:00'),(114494,10,'H57.11 ','Ocular pain, right eye','Y','0000-00-00 00:00:00'),(114495,10,'H57.12 ','Ocular pain, left eye','Y','0000-00-00 00:00:00'),(114492,10,'H57.09 ','Other anomalies of pupillary function','Y','0000-00-00 00:00:00'),(114493,10,'H57.10 ','Ocular pain, unspecified eye','Y','0000-00-00 00:00:00'),(114490,10,'H57.053 ','Tonic pupil, bilateral','Y','0000-00-00 00:00:00'),(114491,10,'H57.059 ','Tonic pupil, unspecified eye','Y','0000-00-00 00:00:00'),(114488,10,'H57.051 ','Tonic pupil, right eye','Y','0000-00-00 00:00:00'),(114489,10,'H57.052 ','Tonic pupil, left eye','Y','0000-00-00 00:00:00'),(114485,10,'H57.02 ','Anisocoria','Y','0000-00-00 00:00:00'),(114486,10,'H57.03 ','Miosis','Y','0000-00-00 00:00:00'),(114487,10,'H57.04 ','Mydriasis','Y','0000-00-00 00:00:00'),(114483,10,'H57.00 ','Unspecified anomaly of pupillary function','Y','0000-00-00 00:00:00'),(114484,10,'H57.01 ','Argyll Robertson pupil, atypical','Y','0000-00-00 00:00:00'),(114481,10,'H55.82 ','Deficient smooth pursuit eye movements','Y','0000-00-00 00:00:00'),(114482,10,'H55.89 ','Other irregular eye movements','Y','0000-00-00 00:00:00'),(114479,10,'H55.09 ','Other forms of nystagmus','Y','0000-00-00 00:00:00'),(114480,10,'H55.81 ','Deficient saccadic eye movements','Y','0000-00-00 00:00:00'),(114477,10,'H55.03 ','Visual deprivation nystagmus','Y','0000-00-00 00:00:00'),(114478,10,'H55.04 ','Dissociated nystagmus','Y','0000-00-00 00:00:00'),(114475,10,'H55.01 ','Congenital nystagmus','Y','0000-00-00 00:00:00'),(114476,10,'H55.02 ','Latent nystagmus','Y','0000-00-00 00:00:00'),(114473,10,'H54.8 ','Legal blindness, as defined in USA','Y','0000-00-00 00:00:00'),(114474,10,'H55.00 ','Unspecified nystagmus','Y','0000-00-00 00:00:00'),(114472,10,'H54.7 ','Unspecified visual loss','Y','0000-00-00 00:00:00'),(114470,10,'H54.61 ','Unqualified visual loss, right eye, normal vision left eye','Y','0000-00-00 00:00:00'),(114471,10,'H54.62 ','Unqualified visual loss, left eye, normal vision right eye','Y','0000-00-00 00:00:00'),(114469,10,'H54.60 ','Unqualified visual loss, one eye, unspecified','Y','0000-00-00 00:00:00'),(114468,10,'H54.52A2 ','Low vision left eye category 2, normal vision right eye','Y','0000-00-00 00:00:00'),(114466,10,'H54.512A ','Low vision right eye category 2, normal vision left eye','Y','0000-00-00 00:00:00'),(114467,10,'H54.52A1 ','Low vision left eye category 1, normal vision right eye','Y','0000-00-00 00:00:00'),(114465,10,'H54.511A ','Low vision right eye category 1, normal vision left eye','Y','0000-00-00 00:00:00'),(114464,10,'H54.50 ','Low vision, one eye, unspecified eye','Y','0000-00-00 00:00:00'),(114462,10,'H54.42A4 ','Blindness left eye category 4, normal vision right eye','Y','0000-00-00 00:00:00'),(114463,10,'H54.42A5 ','Blindness left eye category 5, normal vision right eye','Y','0000-00-00 00:00:00'),(114461,10,'H54.42A3 ','Blindness left eye category 3, normal vision right eye','Y','0000-00-00 00:00:00'),(114460,10,'H54.415A ','Blindness right eye category 5, normal vision left eye','Y','0000-00-00 00:00:00'),(114458,10,'H54.413A ','Blindness right eye category 3, normal vision left eye','Y','0000-00-00 00:00:00'),(114459,10,'H54.414A ','Blindness right eye category 4, normal vision left eye','Y','0000-00-00 00:00:00'),(114456,10,'H54.3 ','Unqualified visual loss, both eyes','Y','0000-00-00 00:00:00'),(114457,10,'H54.40 ','Blindness, one eye, unspecified eye','Y','0000-00-00 00:00:00'),(114455,10,'H54.2X22 ','Low vision right eye category 2, low vision left eye category 2','Y','0000-00-00 00:00:00'),(114454,10,'H54.2X21 ','Low vision right eye category 2, low vision left eye category 1','Y','0000-00-00 00:00:00'),(114453,10,'H54.2X12 ','Low vision right eye category 1, low vision left eye category 2','Y','0000-00-00 00:00:00'),(114452,10,'H54.2X11 ','Low vision right eye category 1, low vision left eye category 1','Y','0000-00-00 00:00:00'),(114450,10,'H54.1224 ','Low vision right eye category 2, blindness left eye category 4','Y','0000-00-00 00:00:00'),(114451,10,'H54.1225 ','Low vision right eye category 2, blindness left eye category 5','Y','0000-00-00 00:00:00'),(114449,10,'H54.1223 ','Low vision right eye category 2, blindness left eye category 3','Y','0000-00-00 00:00:00'),(114448,10,'H54.1215 ','Low vision right eye category 1, blindness left eye category 5','Y','0000-00-00 00:00:00'),(114447,10,'H54.1214 ','Low vision right eye category 1, blindness left eye category 4','Y','0000-00-00 00:00:00'),(114445,10,'H54.1152 ','Blindness right eye category 5, low vision left eye category 2','Y','0000-00-00 00:00:00'),(114446,10,'H54.1213 ','Low vision right eye category 1, blindness left eye category 3','Y','0000-00-00 00:00:00'),(114444,10,'H54.1151 ','Blindness right eye category 5, low vision left eye category 1','Y','0000-00-00 00:00:00'),(114443,10,'H54.1142 ','Blindness right eye category 4, low vision left eye category 2','Y','0000-00-00 00:00:00'),(114442,10,'H54.1141 ','Blindness right eye category 4, low vision left eye category 1','Y','0000-00-00 00:00:00'),(114440,10,'H54.1131 ','Blindness right eye category 3, low vision left eye category 1','Y','0000-00-00 00:00:00'),(114441,10,'H54.1132 ','Blindness right eye category 3, low vision left eye category 2','Y','0000-00-00 00:00:00'),(114439,10,'H54.10 ','Blindness, one eye, low vision other eye, unspecified eyes','Y','0000-00-00 00:00:00'),(114438,10,'H54.0X55 ','Blindness right eye category 5, blindness left eye category 5','Y','0000-00-00 00:00:00'),(114437,10,'H54.0X54 ','Blindness right eye category 5, blindness left eye category 4','Y','0000-00-00 00:00:00'),(114435,10,'H54.0X45 ','Blindness right eye category 4, blindness left eye category 5','Y','0000-00-00 00:00:00'),(114436,10,'H54.0X53 ','Blindness right eye category 5, blindness left eye category 3','Y','0000-00-00 00:00:00'),(114434,10,'H54.0X44 ','Blindness right eye category 4, blindness left eye category 4','Y','0000-00-00 00:00:00'),(114433,10,'H54.0X43 ','Blindness right eye category 4, blindness left eye category 3','Y','0000-00-00 00:00:00'),(114432,10,'H54.0X35 ','Blindness right eye category 3, blindness left eye category 5','Y','0000-00-00 00:00:00'),(114430,10,'H54.0X33 ','Blindness right eye category 3, blindness left eye category 3','Y','0000-00-00 00:00:00'),(114431,10,'H54.0X34 ','Blindness right eye category 3, blindness left eye category 4','Y','0000-00-00 00:00:00'),(114428,10,'H53.8 ','Other visual disturbances','Y','0000-00-00 00:00:00'),(114429,10,'H53.9 ','Unspecified visual disturbance','Y','0000-00-00 00:00:00'),(114426,10,'H53.71 ','Glare sensitivity','Y','0000-00-00 00:00:00'),(114427,10,'H53.72 ','Impaired contrast sensitivity','Y','0000-00-00 00:00:00'),(114424,10,'H53.63 ','Congenital night blindness','Y','0000-00-00 00:00:00'),(114425,10,'H53.69 ','Other night blindness','Y','0000-00-00 00:00:00'),(114422,10,'H53.61 ','Abnormal dark adaptation curve','Y','0000-00-00 00:00:00'),(114423,10,'H53.62 ','Acquired night blindness','Y','0000-00-00 00:00:00'),(114420,10,'H53.59 ','Other color vision deficiencies','Y','0000-00-00 00:00:00'),(114421,10,'H53.60 ','Unspecified night blindness','Y','0000-00-00 00:00:00'),(114417,10,'H53.53 ','Deuteranomaly','Y','0000-00-00 00:00:00'),(114418,10,'H53.54 ','Protanomaly','Y','0000-00-00 00:00:00'),(114419,10,'H53.55 ','Tritanomaly','Y','0000-00-00 00:00:00'),(114415,10,'H53.51 ','Achromatopsia','Y','0000-00-00 00:00:00'),(114416,10,'H53.52 ','Acquired color vision deficiency','Y','0000-00-00 00:00:00'),(114414,10,'H53.50 ','Unspecified color vision deficiencies','Y','0000-00-00 00:00:00'),(114412,10,'H53.483 ','Generalized contraction of visual field, bilateral','Y','0000-00-00 00:00:00'),(114413,10,'H53.489 ','Generalized contraction of visual field, unspecified eye','Y','0000-00-00 00:00:00'),(114411,10,'H53.482 ','Generalized contraction of visual field, left eye','Y','0000-00-00 00:00:00'),(114409,10,'H53.47 ','Heteronymous bilateral field defects','Y','0000-00-00 00:00:00'),(114410,10,'H53.481 ','Generalized contraction of visual field, right eye','Y','0000-00-00 00:00:00'),(114408,10,'H53.469 ','Homonymous bilateral field defects, unspecified side','Y','0000-00-00 00:00:00'),(114406,10,'H53.461 ','Homonymous bilateral field defects, right side','Y','0000-00-00 00:00:00'),(114407,10,'H53.462 ','Homonymous bilateral field defects, left side','Y','0000-00-00 00:00:00'),(114405,10,'H53.459 ','Other localized visual field defect, unspecified eye','Y','0000-00-00 00:00:00'),(114403,10,'H53.452 ','Other localized visual field defect, left eye','Y','0000-00-00 00:00:00'),(114404,10,'H53.453 ','Other localized visual field defect, bilateral','Y','0000-00-00 00:00:00'),(114402,10,'H53.451 ','Other localized visual field defect, right eye','Y','0000-00-00 00:00:00'),(114400,10,'H53.433 ','Sector or arcuate defects, bilateral','Y','0000-00-00 00:00:00'),(114401,10,'H53.439 ','Sector or arcuate defects, unspecified eye','Y','0000-00-00 00:00:00'),(114398,10,'H53.431 ','Sector or arcuate defects, right eye','Y','0000-00-00 00:00:00'),(114399,10,'H53.432 ','Sector or arcuate defects, left eye','Y','0000-00-00 00:00:00'),(114397,10,'H53.429 ','Scotoma of blind spot area, unspecified eye','Y','0000-00-00 00:00:00'),(114395,10,'H53.422 ','Scotoma of blind spot area, left eye','Y','0000-00-00 00:00:00'),(114396,10,'H53.423 ','Scotoma of blind spot area, bilateral','Y','0000-00-00 00:00:00'),(114393,10,'H53.419 ','Scotoma involving central area, unspecified eye','Y','0000-00-00 00:00:00'),(114394,10,'H53.421 ','Scotoma of blind spot area, right eye','Y','0000-00-00 00:00:00'),(114392,10,'H53.413 ','Scotoma involving central area, bilateral','Y','0000-00-00 00:00:00'),(114390,10,'H53.411 ','Scotoma involving central area, right eye','Y','0000-00-00 00:00:00'),(114391,10,'H53.412 ','Scotoma involving central area, left eye','Y','0000-00-00 00:00:00'),(114388,10,'H53.34 ','Suppression of binocular vision','Y','0000-00-00 00:00:00'),(114389,10,'H53.40 ','Unspecified visual field defects','Y','0000-00-00 00:00:00'),(114386,10,'H53.32 ','Fusion with defective stereopsis','Y','0000-00-00 00:00:00'),(114387,10,'H53.33 ','Simultaneous visual perception without fusion','Y','0000-00-00 00:00:00'),(114385,10,'H53.31 ','Abnormal retinal correspondence','Y','0000-00-00 00:00:00'),(114383,10,'H53.2 ','Diplopia','Y','0000-00-00 00:00:00'),(114384,10,'H53.30 ','Unspecified disorder of binocular vision','Y','0000-00-00 00:00:00'),(114381,10,'H53.16 ','Psychophysical visual disturbances','Y','0000-00-00 00:00:00'),(114382,10,'H53.19 ','Other subjective visual disturbances','Y','0000-00-00 00:00:00'),(114379,10,'H53.149 ','Visual discomfort, unspecified','Y','0000-00-00 00:00:00'),(114380,10,'H53.15 ','Visual distortions of shape and size','Y','0000-00-00 00:00:00'),(114377,10,'H53.142 ','Visual discomfort, left eye','Y','0000-00-00 00:00:00'),(114378,10,'H53.143 ','Visual discomfort, bilateral','Y','0000-00-00 00:00:00'),(114376,10,'H53.141 ','Visual discomfort, right eye','Y','0000-00-00 00:00:00'),(114374,10,'H53.133 ','Sudden visual loss, bilateral','Y','0000-00-00 00:00:00'),(114375,10,'H53.139 ','Sudden visual loss, unspecified eye','Y','0000-00-00 00:00:00'),(114372,10,'H53.131 ','Sudden visual loss, right eye','Y','0000-00-00 00:00:00'),(114373,10,'H53.132 ','Sudden visual loss, left eye','Y','0000-00-00 00:00:00'),(114370,10,'H53.123 ','Transient visual loss, bilateral','Y','0000-00-00 00:00:00'),(114371,10,'H53.129 ','Transient visual loss, unspecified eye','Y','0000-00-00 00:00:00'),(114369,10,'H53.122 ','Transient visual loss, left eye','Y','0000-00-00 00:00:00'),(114367,10,'H53.11 ','Day blindness','Y','0000-00-00 00:00:00'),(114368,10,'H53.121 ','Transient visual loss, right eye','Y','0000-00-00 00:00:00'),(114365,10,'H53.049 ','Amblyopia suspect, unspecified eye','Y','0000-00-00 00:00:00'),(114366,10,'H53.10 ','Unspecified subjective visual disturbances','Y','0000-00-00 00:00:00'),(114363,10,'H53.042 ','Amblyopia suspect, left eye','Y','0000-00-00 00:00:00'),(114364,10,'H53.043 ','Amblyopia suspect, bilateral','Y','0000-00-00 00:00:00'),(114362,10,'H53.041 ','Amblyopia suspect, right eye','Y','0000-00-00 00:00:00'),(114360,10,'H53.033 ','Strabismic amblyopia, bilateral','Y','0000-00-00 00:00:00'),(114361,10,'H53.039 ','Strabismic amblyopia, unspecified eye','Y','0000-00-00 00:00:00'),(114358,10,'H53.031 ','Strabismic amblyopia, right eye','Y','0000-00-00 00:00:00'),(114359,10,'H53.032 ','Strabismic amblyopia, left eye','Y','0000-00-00 00:00:00'),(114357,10,'H53.029 ','Refractive amblyopia, unspecified eye','Y','0000-00-00 00:00:00'),(114355,10,'H53.022 ','Refractive amblyopia, left eye','Y','0000-00-00 00:00:00'),(114356,10,'H53.023 ','Refractive amblyopia, bilateral','Y','0000-00-00 00:00:00'),(114353,10,'H53.019 ','Deprivation amblyopia, unspecified eye','Y','0000-00-00 00:00:00'),(114354,10,'H53.021 ','Refractive amblyopia, right eye','Y','0000-00-00 00:00:00'),(114351,10,'H53.012 ','Deprivation amblyopia, left eye','Y','0000-00-00 00:00:00'),(114352,10,'H53.013 ','Deprivation amblyopia, bilateral','Y','0000-00-00 00:00:00'),(114350,10,'H53.011 ','Deprivation amblyopia, right eye','Y','0000-00-00 00:00:00'),(114348,10,'H53.003 ','Unspecified amblyopia, bilateral','Y','0000-00-00 00:00:00'),(114349,10,'H53.009 ','Unspecified amblyopia, unspecified eye','Y','0000-00-00 00:00:00'),(114346,10,'H53.001 ','Unspecified amblyopia, right eye','Y','0000-00-00 00:00:00'),(114347,10,'H53.002 ','Unspecified amblyopia, left eye','Y','0000-00-00 00:00:00'),(114344,10,'H52.6 ','Other disorders of refraction','Y','0000-00-00 00:00:00'),(114345,10,'H52.7 ','Unspecified disorder of refraction','Y','0000-00-00 00:00:00'),(114343,10,'H52.539 ','Spasm of accommodation, unspecified eye','Y','0000-00-00 00:00:00'),(114341,10,'H52.532 ','Spasm of accommodation, left eye','Y','0000-00-00 00:00:00'),(114342,10,'H52.533 ','Spasm of accommodation, bilateral','Y','0000-00-00 00:00:00'),(114339,10,'H52.529 ','Paresis of accommodation, unspecified eye','Y','0000-00-00 00:00:00'),(114340,10,'H52.531 ','Spasm of accommodation, right eye','Y','0000-00-00 00:00:00'),(114338,10,'H52.523 ','Paresis of accommodation, bilateral','Y','0000-00-00 00:00:00'),(114336,10,'H52.521 ','Paresis of accommodation, right eye','Y','0000-00-00 00:00:00'),(114337,10,'H52.522 ','Paresis of accommodation, left eye','Y','0000-00-00 00:00:00'),(114335,10,'H52.519 ','Internal ophthalmoplegia (complete) (total), unspecified eye','Y','0000-00-00 00:00:00'),(114333,10,'H52.512 ','Internal ophthalmoplegia (complete) (total), left eye','Y','0000-00-00 00:00:00'),(114334,10,'H52.513 ','Internal ophthalmoplegia (complete) (total), bilateral','Y','0000-00-00 00:00:00'),(114331,10,'H52.4 ','Presbyopia','Y','0000-00-00 00:00:00'),(114332,10,'H52.511 ','Internal ophthalmoplegia (complete) (total), right eye','Y','0000-00-00 00:00:00'),(114329,10,'H52.31 ','Anisometropia','Y','0000-00-00 00:00:00'),(114330,10,'H52.32 ','Aniseikonia','Y','0000-00-00 00:00:00'),(114327,10,'H52.223 ','Regular astigmatism, bilateral','Y','0000-00-00 00:00:00'),(114328,10,'H52.229 ','Regular astigmatism, unspecified eye','Y','0000-00-00 00:00:00'),(114326,10,'H52.222 ','Regular astigmatism, left eye','Y','0000-00-00 00:00:00'),(114324,10,'H52.219 ','Irregular astigmatism, unspecified eye','Y','0000-00-00 00:00:00'),(114325,10,'H52.221 ','Regular astigmatism, right eye','Y','0000-00-00 00:00:00'),(114322,10,'H52.212 ','Irregular astigmatism, left eye','Y','0000-00-00 00:00:00'),(114323,10,'H52.213 ','Irregular astigmatism, bilateral','Y','0000-00-00 00:00:00'),(114321,10,'H52.211 ','Irregular astigmatism, right eye','Y','0000-00-00 00:00:00'),(114319,10,'H52.203 ','Unspecified astigmatism, bilateral','Y','0000-00-00 00:00:00'),(114320,10,'H52.209 ','Unspecified astigmatism, unspecified eye','Y','0000-00-00 00:00:00'),(114318,10,'H52.202 ','Unspecified astigmatism, left eye','Y','0000-00-00 00:00:00'),(114315,10,'H52.12 ','Myopia, left eye','Y','0000-00-00 00:00:00'),(114316,10,'H52.13 ','Myopia, bilateral','Y','0000-00-00 00:00:00'),(114317,10,'H52.201 ','Unspecified astigmatism, right eye','Y','0000-00-00 00:00:00'),(114313,10,'H52.10 ','Myopia, unspecified eye','Y','0000-00-00 00:00:00'),(114314,10,'H52.11 ','Myopia, right eye','Y','0000-00-00 00:00:00'),(114311,10,'H52.02 ','Hypermetropia, left eye','Y','0000-00-00 00:00:00'),(114312,10,'H52.03 ','Hypermetropia, bilateral','Y','0000-00-00 00:00:00'),(114309,10,'H52.00 ','Hypermetropia, unspecified eye','Y','0000-00-00 00:00:00'),(114310,10,'H52.01 ','Hypermetropia, right eye','Y','0000-00-00 00:00:00'),(114308,10,'H51.9 ','Unspecified disorder of binocular movement','Y','0000-00-00 00:00:00'),(114306,10,'H51.23 ','Internuclear ophthalmoplegia, bilateral','Y','0000-00-00 00:00:00'),(114307,10,'H51.8 ','Other specified disorders of binocular movement','Y','0000-00-00 00:00:00'),(114305,10,'H51.22 ','Internuclear ophthalmoplegia, left eye','Y','0000-00-00 00:00:00'),(114303,10,'H51.20 ','Internuclear ophthalmoplegia, unspecified eye','Y','0000-00-00 00:00:00'),(114304,10,'H51.21 ','Internuclear ophthalmoplegia, right eye','Y','0000-00-00 00:00:00'),(114301,10,'H51.11 ','Convergence insufficiency','Y','0000-00-00 00:00:00'),(114302,10,'H51.12 ','Convergence excess','Y','0000-00-00 00:00:00'),(114299,10,'H50.9 ','Unspecified strabismus','Y','0000-00-00 00:00:00'),(114300,10,'H51.0 ','Palsy (spasm) of conjugate gaze','Y','0000-00-00 00:00:00'),(114297,10,'H50.812 ','Duane\'s syndrome, left eye','Y','0000-00-00 00:00:00'),(114298,10,'H50.89 ','Other specified strabismus','Y','0000-00-00 00:00:00'),(114295,10,'H50.69 ','Other mechanical strabismus','Y','0000-00-00 00:00:00'),(114296,10,'H50.811 ','Duane\'s syndrome, right eye','Y','0000-00-00 00:00:00'),(114294,10,'H50.689 ','Extraocular muscle entrapment, unspecified, unspecified eye','Y','0000-00-00 00:00:00'),(114293,10,'H50.682 ','Extraocular muscle entrapment, unspecified, left eye','Y','0000-00-00 00:00:00'),(114292,10,'H50.681 ','Extraocular muscle entrapment, unspecified, right eye','Y','0000-00-00 00:00:00'),(114290,10,'H50.672 ','Superior rectus muscle entrapment, left eye','Y','0000-00-00 00:00:00'),(114291,10,'H50.679 ','Superior rectus muscle entrapment, unspecified eye','Y','0000-00-00 00:00:00'),(114289,10,'H50.671 ','Superior rectus muscle entrapment, right eye','Y','0000-00-00 00:00:00'),(114288,10,'H50.669 ','Superior oblique muscle entrapment, unspecified eye','Y','0000-00-00 00:00:00'),(114286,10,'H50.661 ','Superior oblique muscle entrapment, right eye','Y','0000-00-00 00:00:00'),(114287,10,'H50.662 ','Superior oblique muscle entrapment, left eye','Y','0000-00-00 00:00:00'),(114285,10,'H50.659 ','Medial rectus muscle entrapment, unspecified eye','Y','0000-00-00 00:00:00'),(114284,10,'H50.652 ','Medial rectus muscle entrapment, left eye','Y','0000-00-00 00:00:00'),(114282,10,'H50.649 ','Lateral rectus muscle entrapment, unspecified eye','Y','0000-00-00 00:00:00'),(114283,10,'H50.651 ','Medial rectus muscle entrapment, right eye','Y','0000-00-00 00:00:00'),(114281,10,'H50.642 ','Lateral rectus muscle entrapment, left eye','Y','0000-00-00 00:00:00'),(114279,10,'H50.639 ','Inferior rectus muscle entrapment, unspecified eye','Y','0000-00-00 00:00:00'),(114280,10,'H50.641 ','Lateral rectus muscle entrapment, right eye','Y','0000-00-00 00:00:00'),(114278,10,'H50.632 ','Inferior rectus muscle entrapment, left eye','Y','0000-00-00 00:00:00'),(114276,10,'H50.629 ','Inferior oblique muscle entrapment, unspecified eye','Y','0000-00-00 00:00:00'),(114277,10,'H50.631 ','Inferior rectus muscle entrapment, right eye','Y','0000-00-00 00:00:00'),(114275,10,'H50.622 ','Inferior oblique muscle entrapment, left eye','Y','0000-00-00 00:00:00'),(114273,10,'H50.612 ','Brown\'s sheath syndrome, left eye','Y','0000-00-00 00:00:00'),(114274,10,'H50.621 ','Inferior oblique muscle entrapment, right eye','Y','0000-00-00 00:00:00'),(114272,10,'H50.611 ','Brown\'s sheath syndrome, right eye','Y','0000-00-00 00:00:00'),(114270,10,'H50.55 ','Alternating heterophoria','Y','0000-00-00 00:00:00'),(114271,10,'H50.60 ','Mechanical strabismus, unspecified','Y','0000-00-00 00:00:00'),(114267,10,'H50.52 ','Exophoria','Y','0000-00-00 00:00:00'),(114268,10,'H50.53 ','Vertical heterophoria','Y','0000-00-00 00:00:00'),(114269,10,'H50.54 ','Cyclophoria','Y','0000-00-00 00:00:00'),(114265,10,'H50.50 ','Unspecified heterophoria','Y','0000-00-00 00:00:00'),(114266,10,'H50.51 ','Esophoria','Y','0000-00-00 00:00:00'),(114263,10,'H50.42 ','Monofixation syndrome','Y','0000-00-00 00:00:00'),(114264,10,'H50.43 ','Accommodative component in esotropia','Y','0000-00-00 00:00:00'),(114261,10,'H50.411 ','Cyclotropia, right eye','Y','0000-00-00 00:00:00'),(114262,10,'H50.412 ','Cyclotropia, left eye','Y','0000-00-00 00:00:00'),(114259,10,'H50.34 ','Intermittent alternating exotropia','Y','0000-00-00 00:00:00'),(114260,10,'H50.40 ','Unspecified heterotropia','Y','0000-00-00 00:00:00'),(114258,10,'H50.332 ','Intermittent monocular exotropia, left eye','Y','0000-00-00 00:00:00'),(114256,10,'H50.32 ','Intermittent alternating esotropia','Y','0000-00-00 00:00:00'),(114257,10,'H50.331 ','Intermittent monocular exotropia, right eye','Y','0000-00-00 00:00:00'),(114254,10,'H50.311 ','Intermittent monocular esotropia, right eye','Y','0000-00-00 00:00:00'),(114255,10,'H50.312 ','Intermittent monocular esotropia, left eye','Y','0000-00-00 00:00:00'),(114252,10,'H50.22 ','Vertical strabismus, left eye','Y','0000-00-00 00:00:00'),(114253,10,'H50.30 ','Unspecified intermittent heterotropia','Y','0000-00-00 00:00:00'),(114251,10,'H50.21 ','Vertical strabismus, right eye','Y','0000-00-00 00:00:00'),(114249,10,'H50.17 ','Alternating exotropia with V pattern','Y','0000-00-00 00:00:00'),(114250,10,'H50.18 ','Alternating exotropia with other noncomitancies','Y','0000-00-00 00:00:00'),(114247,10,'H50.15 ','Alternating exotropia','Y','0000-00-00 00:00:00'),(114248,10,'H50.16 ','Alternating exotropia with A pattern','Y','0000-00-00 00:00:00'),(114246,10,'H50.142 ','Monocular exotropia with other noncomitancies, left eye','Y','0000-00-00 00:00:00'),(114245,10,'H50.141 ','Monocular exotropia with other noncomitancies, right eye','Y','0000-00-00 00:00:00'),(114243,10,'H50.131 ','Monocular exotropia with V pattern, right eye','Y','0000-00-00 00:00:00'),(114244,10,'H50.132 ','Monocular exotropia with V pattern, left eye','Y','0000-00-00 00:00:00'),(114242,10,'H50.122 ','Monocular exotropia with A pattern, left eye','Y','0000-00-00 00:00:00'),(114240,10,'H50.112 ','Monocular exotropia, left eye','Y','0000-00-00 00:00:00'),(114241,10,'H50.121 ','Monocular exotropia with A pattern, right eye','Y','0000-00-00 00:00:00'),(114238,10,'H50.10 ','Unspecified exotropia','Y','0000-00-00 00:00:00'),(114239,10,'H50.111 ','Monocular exotropia, right eye','Y','0000-00-00 00:00:00'),(114237,10,'H50.08 ','Alternating esotropia with other noncomitancies','Y','0000-00-00 00:00:00'),(114235,10,'H50.06 ','Alternating esotropia with A pattern','Y','0000-00-00 00:00:00'),(114236,10,'H50.07 ','Alternating esotropia with V pattern','Y','0000-00-00 00:00:00'),(114234,10,'H50.05 ','Alternating esotropia','Y','0000-00-00 00:00:00'),(114232,10,'H50.041 ','Monocular esotropia with other noncomitancies, right eye','Y','0000-00-00 00:00:00'),(114233,10,'H50.042 ','Monocular esotropia with other noncomitancies, left eye','Y','0000-00-00 00:00:00'),(114231,10,'H50.032 ','Monocular esotropia with V pattern, left eye','Y','0000-00-00 00:00:00'),(114229,10,'H50.022 ','Monocular esotropia with A pattern, left eye','Y','0000-00-00 00:00:00'),(114230,10,'H50.031 ','Monocular esotropia with V pattern, right eye','Y','0000-00-00 00:00:00'),(114228,10,'H50.021 ','Monocular esotropia with A pattern, right eye','Y','0000-00-00 00:00:00'),(114226,10,'H50.011 ','Monocular esotropia, right eye','Y','0000-00-00 00:00:00'),(114227,10,'H50.012 ','Monocular esotropia, left eye','Y','0000-00-00 00:00:00'),(114224,10,'H49.9 ','Unspecified paralytic strabismus','Y','0000-00-00 00:00:00'),(114225,10,'H50.00 ','Unspecified esotropia','Y','0000-00-00 00:00:00'),(114223,10,'H49.889 ','Other paralytic strabismus, unspecified eye','Y','0000-00-00 00:00:00'),(114221,10,'H49.882 ','Other paralytic strabismus, left eye','Y','0000-00-00 00:00:00'),(114222,10,'H49.883 ','Other paralytic strabismus, bilateral','Y','0000-00-00 00:00:00'),(114219,10,'H49.819 ','Kearns-Sayre syndrome, unspecified eye','Y','0000-00-00 00:00:00'),(114220,10,'H49.881 ','Other paralytic strabismus, right eye','Y','0000-00-00 00:00:00'),(114217,10,'H49.812 ','Kearns-Sayre syndrome, left eye','Y','0000-00-00 00:00:00'),(114218,10,'H49.813 ','Kearns-Sayre syndrome, bilateral','Y','0000-00-00 00:00:00'),(114216,10,'H49.811 ','Kearns-Sayre syndrome, right eye','Y','0000-00-00 00:00:00'),(114214,10,'H49.42 ','Progressive external ophthalmoplegia, left eye','Y','0000-00-00 00:00:00'),(114215,10,'H49.43 ','Progressive external ophthalmoplegia, bilateral','Y','0000-00-00 00:00:00'),(114213,10,'H49.41 ','Progressive external ophthalmoplegia, right eye','Y','0000-00-00 00:00:00'),(114212,10,'H49.40 ','Progressive external ophthalmoplegia, unspecified eye','Y','0000-00-00 00:00:00'),(114210,10,'H49.32 ','Total (external) ophthalmoplegia, left eye','Y','0000-00-00 00:00:00'),(114211,10,'H49.33 ','Total (external) ophthalmoplegia, bilateral','Y','0000-00-00 00:00:00'),(114209,10,'H49.31 ','Total (external) ophthalmoplegia, right eye','Y','0000-00-00 00:00:00'),(114207,10,'H49.23 ','Sixth [abducent] nerve palsy, bilateral','Y','0000-00-00 00:00:00'),(114208,10,'H49.30 ','Total (external) ophthalmoplegia, unspecified eye','Y','0000-00-00 00:00:00'),(114206,10,'H49.22 ','Sixth [abducent] nerve palsy, left eye','Y','0000-00-00 00:00:00'),(114205,10,'H49.21 ','Sixth [abducent] nerve palsy, right eye','Y','0000-00-00 00:00:00'),(114203,10,'H49.13 ','Fourth [trochlear] nerve palsy, bilateral','Y','0000-00-00 00:00:00'),(114204,10,'H49.20 ','Sixth [abducent] nerve palsy, unspecified eye','Y','0000-00-00 00:00:00'),(114202,10,'H49.12 ','Fourth [trochlear] nerve palsy, left eye','Y','0000-00-00 00:00:00'),(114200,10,'H49.10 ','Fourth [trochlear] nerve palsy, unspecified eye','Y','0000-00-00 00:00:00'),(114201,10,'H49.11 ','Fourth [trochlear] nerve palsy, right eye','Y','0000-00-00 00:00:00'),(114198,10,'H49.02 ','Third [oculomotor] nerve palsy, left eye','Y','0000-00-00 00:00:00'),(114199,10,'H49.03 ','Third [oculomotor] nerve palsy, bilateral','Y','0000-00-00 00:00:00'),(114197,10,'H49.01 ','Third [oculomotor] nerve palsy, right eye','Y','0000-00-00 00:00:00'),(114195,10,'H47.9 ','Unspecified disorder of visual pathways','Y','0000-00-00 00:00:00'),(114196,10,'H49.00 ','Third [oculomotor] nerve palsy, unspecified eye','Y','0000-00-00 00:00:00'),(114194,10,'H47.649 ','Disorders of visual cortex in (due to) vascular disorders, unspecified side of brain','Y','0000-00-00 00:00:00'),(114193,10,'H47.642 ','Disorders of visual cortex in (due to) vascular disorders, left side of brain','Y','0000-00-00 00:00:00'),(114191,10,'H47.639 ','Disorders of visual cortex in (due to) neoplasm, unspecified side of brain','Y','0000-00-00 00:00:00'),(114192,10,'H47.641 ','Disorders of visual cortex in (due to) vascular disorders, right side of brain','Y','0000-00-00 00:00:00'),(114190,10,'H47.632 ','Disorders of visual cortex in (due to) neoplasm, left side of brain','Y','0000-00-00 00:00:00'),(114189,10,'H47.631 ','Disorders of visual cortex in (due to) neoplasm, right side of brain','Y','0000-00-00 00:00:00'),(114187,10,'H47.622 ','Disorders of visual cortex in (due to) inflammatory disorders, left side of brain','Y','0000-00-00 00:00:00'),(114188,10,'H47.629 ','Disorders of visual cortex in (due to) inflammatory disorders, unspecified side of brain','Y','0000-00-00 00:00:00'),(114186,10,'H47.621 ','Disorders of visual cortex in (due to) inflammatory disorders, right side of brain','Y','0000-00-00 00:00:00'),(114184,10,'H47.612 ','Cortical blindness, left side of brain','Y','0000-00-00 00:00:00'),(114185,10,'H47.619 ','Cortical blindness, unspecified side of brain','Y','0000-00-00 00:00:00'),(114183,10,'H47.611 ','Cortical blindness, right side of brain','Y','0000-00-00 00:00:00'),(114182,10,'H47.539 ','Disorders of visual pathways in (due to) vascular disorders, unspecified side','Y','0000-00-00 00:00:00'),(114180,10,'H47.531 ','Disorders of visual pathways in (due to) vascular disorders, right side','Y','0000-00-00 00:00:00'),(114181,10,'H47.532 ','Disorders of visual pathways in (due to) vascular disorders, left side','Y','0000-00-00 00:00:00'),(114179,10,'H47.529 ','Disorders of visual pathways in (due to) neoplasm, unspecified side','Y','0000-00-00 00:00:00'),(114178,10,'H47.522 ','Disorders of visual pathways in (due to) neoplasm, left side','Y','0000-00-00 00:00:00'),(114176,10,'H47.519 ','Disorders of visual pathways in (due to) inflammatory disorders, unspecified side','Y','0000-00-00 00:00:00'),(114177,10,'H47.521 ','Disorders of visual pathways in (due to) neoplasm, right side','Y','0000-00-00 00:00:00'),(114175,10,'H47.512 ','Disorders of visual pathways in (due to) inflammatory disorders, left side','Y','0000-00-00 00:00:00'),(114174,10,'H47.511 ','Disorders of visual pathways in (due to) inflammatory disorders, right side','Y','0000-00-00 00:00:00'),(114172,10,'H47.43 ','Disorders of optic chiasm in (due to) vascular disorders','Y','0000-00-00 00:00:00'),(114173,10,'H47.49 ','Disorders of optic chiasm in (due to) other disorders','Y','0000-00-00 00:00:00'),(114171,10,'H47.42 ','Disorders of optic chiasm in (due to) neoplasm','Y','0000-00-00 00:00:00'),(114169,10,'H47.399 ','Other disorders of optic disc, unspecified eye','Y','0000-00-00 00:00:00'),(114170,10,'H47.41 ','Disorders of optic chiasm in (due to) inflammatory disorders','Y','0000-00-00 00:00:00'),(114167,10,'H47.392 ','Other disorders of optic disc, left eye','Y','0000-00-00 00:00:00'),(114168,10,'H47.393 ','Other disorders of optic disc, bilateral','Y','0000-00-00 00:00:00'),(114166,10,'H47.391 ','Other disorders of optic disc, right eye','Y','0000-00-00 00:00:00'),(114164,10,'H47.333 ','Pseudopapilledema of optic disc, bilateral','Y','0000-00-00 00:00:00'),(114165,10,'H47.339 ','Pseudopapilledema of optic disc, unspecified eye','Y','0000-00-00 00:00:00'),(114162,10,'H47.331 ','Pseudopapilledema of optic disc, right eye','Y','0000-00-00 00:00:00'),(114163,10,'H47.332 ','Pseudopapilledema of optic disc, left eye','Y','0000-00-00 00:00:00'),(114160,10,'H47.323 ','Drusen of optic disc, bilateral','Y','0000-00-00 00:00:00'),(114161,10,'H47.329 ','Drusen of optic disc, unspecified eye','Y','0000-00-00 00:00:00'),(114158,10,'H47.321 ','Drusen of optic disc, right eye','Y','0000-00-00 00:00:00'),(114159,10,'H47.322 ','Drusen of optic disc, left eye','Y','0000-00-00 00:00:00'),(114157,10,'H47.319 ','Coloboma of optic disc, unspecified eye','Y','0000-00-00 00:00:00'),(114155,10,'H47.312 ','Coloboma of optic disc, left eye','Y','0000-00-00 00:00:00'),(114156,10,'H47.313 ','Coloboma of optic disc, bilateral','Y','0000-00-00 00:00:00'),(114153,10,'H47.299 ','Other optic atrophy, unspecified eye','Y','0000-00-00 00:00:00'),(114154,10,'H47.311 ','Coloboma of optic disc, right eye','Y','0000-00-00 00:00:00'),(114151,10,'H47.292 ','Other optic atrophy, left eye','Y','0000-00-00 00:00:00'),(114152,10,'H47.293 ','Other optic atrophy, bilateral','Y','0000-00-00 00:00:00'),(114149,10,'H47.239 ','Glaucomatous optic atrophy, unspecified eye','Y','0000-00-00 00:00:00'),(114150,10,'H47.291 ','Other optic atrophy, right eye','Y','0000-00-00 00:00:00'),(114147,10,'H47.232 ','Glaucomatous optic atrophy, left eye','Y','0000-00-00 00:00:00'),(114148,10,'H47.233 ','Glaucomatous optic atrophy, bilateral','Y','0000-00-00 00:00:00'),(114145,10,'H47.22 ','Hereditary optic atrophy','Y','0000-00-00 00:00:00'),(114146,10,'H47.231 ','Glaucomatous optic atrophy, right eye','Y','0000-00-00 00:00:00'),(114143,10,'H47.213 ','Primary optic atrophy, bilateral','Y','0000-00-00 00:00:00'),(114144,10,'H47.219 ','Primary optic atrophy, unspecified eye','Y','0000-00-00 00:00:00'),(114141,10,'H47.211 ','Primary optic atrophy, right eye','Y','0000-00-00 00:00:00'),(114142,10,'H47.212 ','Primary optic atrophy, left eye','Y','0000-00-00 00:00:00'),(114140,10,'H47.20 ','Unspecified optic atrophy','Y','0000-00-00 00:00:00'),(114138,10,'H47.143 ','Foster-Kennedy syndrome, bilateral','Y','0000-00-00 00:00:00'),(114139,10,'H47.149 ','Foster-Kennedy syndrome, unspecified eye','Y','0000-00-00 00:00:00'),(114136,10,'H47.141 ','Foster-Kennedy syndrome, right eye','Y','0000-00-00 00:00:00'),(114137,10,'H47.142 ','Foster-Kennedy syndrome, left eye','Y','0000-00-00 00:00:00'),(114135,10,'H47.13 ','Papilledema associated with retinal disorder','Y','0000-00-00 00:00:00'),(114133,10,'H47.11 ','Papilledema associated with increased intracranial pressure','Y','0000-00-00 00:00:00'),(114134,10,'H47.12 ','Papilledema associated with decreased ocular pressure','Y','0000-00-00 00:00:00'),(114132,10,'H47.10 ','Unspecified papilledema','Y','0000-00-00 00:00:00'),(114131,10,'H47.099 ','Other disorders of optic nerve, not elsewhere classified, unspecified eye','Y','0000-00-00 00:00:00'),(114129,10,'H47.092 ','Other disorders of optic nerve, not elsewhere classified, left eye','Y','0000-00-00 00:00:00'),(114130,10,'H47.093 ','Other disorders of optic nerve, not elsewhere classified, bilateral','Y','0000-00-00 00:00:00'),(114128,10,'H47.091 ','Other disorders of optic nerve, not elsewhere classified, right eye','Y','0000-00-00 00:00:00'),(114127,10,'H47.039 ','Optic nerve hypoplasia, unspecified eye','Y','0000-00-00 00:00:00'),(114125,10,'H47.032 ','Optic nerve hypoplasia, left eye','Y','0000-00-00 00:00:00'),(114126,10,'H47.033 ','Optic nerve hypoplasia, bilateral','Y','0000-00-00 00:00:00'),(114123,10,'H47.029 ','Hemorrhage in optic nerve sheath, unspecified eye','Y','0000-00-00 00:00:00'),(114124,10,'H47.031 ','Optic nerve hypoplasia, right eye','Y','0000-00-00 00:00:00'),(114121,10,'H47.022 ','Hemorrhage in optic nerve sheath, left eye','Y','0000-00-00 00:00:00'),(114122,10,'H47.023 ','Hemorrhage in optic nerve sheath, bilateral','Y','0000-00-00 00:00:00'),(114120,10,'H47.021 ','Hemorrhage in optic nerve sheath, right eye','Y','0000-00-00 00:00:00'),(114118,10,'H47.013 ','Ischemic optic neuropathy, bilateral','Y','0000-00-00 00:00:00'),(114119,10,'H47.019 ','Ischemic optic neuropathy, unspecified eye','Y','0000-00-00 00:00:00'),(114116,10,'H47.011 ','Ischemic optic neuropathy, right eye','Y','0000-00-00 00:00:00'),(114117,10,'H47.012 ','Ischemic optic neuropathy, left eye','Y','0000-00-00 00:00:00'),(114113,10,'H46.3 ','Toxic optic neuropathy','Y','0000-00-00 00:00:00'),(114114,10,'H46.8 ','Other optic neuritis','Y','0000-00-00 00:00:00'),(114115,10,'H46.9 ','Unspecified optic neuritis','Y','0000-00-00 00:00:00'),(114111,10,'H46.13 ','Retrobulbar neuritis, bilateral','Y','0000-00-00 00:00:00'),(114112,10,'H46.2 ','Nutritional optic neuropathy','Y','0000-00-00 00:00:00'),(114109,10,'H46.11 ','Retrobulbar neuritis, right eye','Y','0000-00-00 00:00:00'),(114110,10,'H46.12 ','Retrobulbar neuritis, left eye','Y','0000-00-00 00:00:00'),(114107,10,'H46.03 ','Optic papillitis, bilateral','Y','0000-00-00 00:00:00'),(114108,10,'H46.10 ','Retrobulbar neuritis, unspecified eye','Y','0000-00-00 00:00:00'),(114105,10,'H46.01 ','Optic papillitis, right eye','Y','0000-00-00 00:00:00'),(114106,10,'H46.02 ','Optic papillitis, left eye','Y','0000-00-00 00:00:00'),(114103,10,'H44.9 ','Unspecified disorder of globe','Y','0000-00-00 00:00:00'),(114104,10,'H46.00 ','Optic papillitis, unspecified eye','Y','0000-00-00 00:00:00'),(114100,10,'H44.823 ','Luxation of globe, bilateral','Y','0000-00-00 00:00:00'),(114101,10,'H44.829 ','Luxation of globe, unspecified eye','Y','0000-00-00 00:00:00'),(114102,10,'H44.89 ','Other disorders of globe','Y','0000-00-00 00:00:00'),(114098,10,'H44.821 ','Luxation of globe, right eye','Y','0000-00-00 00:00:00'),(114099,10,'H44.822 ','Luxation of globe, left eye','Y','0000-00-00 00:00:00'),(114095,10,'H44.812 ','Hemophthalmos, left eye','Y','0000-00-00 00:00:00'),(114096,10,'H44.813 ','Hemophthalmos, bilateral','Y','0000-00-00 00:00:00'),(114097,10,'H44.819 ','Hemophthalmos, unspecified eye','Y','0000-00-00 00:00:00'),(114094,10,'H44.811 ','Hemophthalmos, right eye','Y','0000-00-00 00:00:00'),(114093,10,'H44.799 ','Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, unspecified eye','Y','0000-00-00 00:00:00'),(114091,10,'H44.792 ','Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, left eye','Y','0000-00-00 00:00:00'),(114092,10,'H44.793 ','Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, bilateral','Y','0000-00-00 00:00:00'),(114090,10,'H44.791 ','Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, right eye','Y','0000-00-00 00:00:00'),(114089,10,'H44.759 ','Retained (nonmagnetic) (old) foreign body in vitreous body, unspecified eye','Y','0000-00-00 00:00:00'),(114087,10,'H44.752 ','Retained (nonmagnetic) (old) foreign body in vitreous body, left eye','Y','0000-00-00 00:00:00'),(114088,10,'H44.753 ','Retained (nonmagnetic) (old) foreign body in vitreous body, bilateral','Y','0000-00-00 00:00:00'),(114086,10,'H44.751 ','Retained (nonmagnetic) (old) foreign body in vitreous body, right eye','Y','0000-00-00 00:00:00'),(114085,10,'H44.749 ','Retained (nonmagnetic) (old) foreign body in posterior wall of globe, unspecified eye','Y','0000-00-00 00:00:00'),(114084,10,'H44.743 ','Retained (nonmagnetic) (old) foreign body in posterior wall of globe, bilateral','Y','0000-00-00 00:00:00'),(114082,10,'H44.741 ','Retained (nonmagnetic) (old) foreign body in posterior wall of globe, right eye','Y','0000-00-00 00:00:00'),(114083,10,'H44.742 ','Retained (nonmagnetic) (old) foreign body in posterior wall of globe, left eye','Y','0000-00-00 00:00:00'),(114081,10,'H44.739 ','Retained (nonmagnetic) (old) foreign body in lens, unspecified eye','Y','0000-00-00 00:00:00'),(114079,10,'H44.732 ','Retained (nonmagnetic) (old) foreign body in lens, left eye','Y','0000-00-00 00:00:00'),(114080,10,'H44.733 ','Retained (nonmagnetic) (old) foreign body in lens, bilateral','Y','0000-00-00 00:00:00'),(114078,10,'H44.731 ','Retained (nonmagnetic) (old) foreign body in lens, right eye','Y','0000-00-00 00:00:00'),(114076,10,'H44.723 ','Retained (nonmagnetic) (old) foreign body in iris or ciliary body, bilateral','Y','0000-00-00 00:00:00'),(114077,10,'H44.729 ','Retained (nonmagnetic) (old) foreign body in iris or ciliary body, unspecified eye','Y','0000-00-00 00:00:00'),(114075,10,'H44.722 ','Retained (nonmagnetic) (old) foreign body in iris or ciliary body, left eye','Y','0000-00-00 00:00:00'),(114073,10,'H44.719 ','Retained (nonmagnetic) (old) foreign body in anterior chamber, unspecified eye','Y','0000-00-00 00:00:00'),(114074,10,'H44.721 ','Retained (nonmagnetic) (old) foreign body in iris or ciliary body, right eye','Y','0000-00-00 00:00:00'),(114072,10,'H44.713 ','Retained (nonmagnetic) (old) foreign body in anterior chamber, bilateral','Y','0000-00-00 00:00:00'),(114071,10,'H44.712 ','Retained (nonmagnetic) (old) foreign body in anterior chamber, left eye','Y','0000-00-00 00:00:00'),(114069,10,'H44.709 ','Unspecified retained (old) intraocular foreign body, nonmagnetic, unspecified eye','Y','0000-00-00 00:00:00'),(114070,10,'H44.711 ','Retained (nonmagnetic) (old) foreign body in anterior chamber, right eye','Y','0000-00-00 00:00:00'),(114068,10,'H44.703 ','Unspecified retained (old) intraocular foreign body, nonmagnetic, bilateral','Y','0000-00-00 00:00:00'),(114067,10,'H44.702 ','Unspecified retained (old) intraocular foreign body, nonmagnetic, left eye','Y','0000-00-00 00:00:00'),(114066,10,'H44.701 ','Unspecified retained (old) intraocular foreign body, nonmagnetic, right eye','Y','0000-00-00 00:00:00'),(114065,10,'H44.699 ','Retained (old) intraocular foreign body, magnetic, in other or multiple sites, unspecified eye','Y','0000-00-00 00:00:00'),(114064,10,'H44.693 ','Retained (old) intraocular foreign body, magnetic, in other or multiple sites, bilateral','Y','0000-00-00 00:00:00'),(114062,10,'H44.691 ','Retained (old) intraocular foreign body, magnetic, in other or multiple sites, right eye','Y','0000-00-00 00:00:00'),(114063,10,'H44.692 ','Retained (old) intraocular foreign body, magnetic, in other or multiple sites, left eye','Y','0000-00-00 00:00:00'),(114061,10,'H44.659 ','Retained (old) magnetic foreign body in vitreous body, unspecified eye','Y','0000-00-00 00:00:00'),(114060,10,'H44.653 ','Retained (old) magnetic foreign body in vitreous body, bilateral','Y','0000-00-00 00:00:00'),(114058,10,'H44.651 ','Retained (old) magnetic foreign body in vitreous body, right eye','Y','0000-00-00 00:00:00'),(114059,10,'H44.652 ','Retained (old) magnetic foreign body in vitreous body, left eye','Y','0000-00-00 00:00:00'),(114057,10,'H44.649 ','Retained (old) magnetic foreign body in posterior wall of globe, unspecified eye','Y','0000-00-00 00:00:00'),(114056,10,'H44.643 ','Retained (old) magnetic foreign body in posterior wall of globe, bilateral','Y','0000-00-00 00:00:00'),(114054,10,'H44.641 ','Retained (old) magnetic foreign body in posterior wall of globe, right eye','Y','0000-00-00 00:00:00'),(114055,10,'H44.642 ','Retained (old) magnetic foreign body in posterior wall of globe, left eye','Y','0000-00-00 00:00:00'),(114053,10,'H44.639 ','Retained (old) magnetic foreign body in lens, unspecified eye','Y','0000-00-00 00:00:00'),(114051,10,'H44.632 ','Retained (old) magnetic foreign body in lens, left eye','Y','0000-00-00 00:00:00'),(114052,10,'H44.633 ','Retained (old) magnetic foreign body in lens, bilateral','Y','0000-00-00 00:00:00'),(114050,10,'H44.631 ','Retained (old) magnetic foreign body in lens, right eye','Y','0000-00-00 00:00:00'),(114049,10,'H44.629 ','Retained (old) magnetic foreign body in iris or ciliary body, unspecified eye','Y','0000-00-00 00:00:00'),(114047,10,'H44.622 ','Retained (old) magnetic foreign body in iris or ciliary body, left eye','Y','0000-00-00 00:00:00'),(114048,10,'H44.623 ','Retained (old) magnetic foreign body in iris or ciliary body, bilateral','Y','0000-00-00 00:00:00'),(114046,10,'H44.621 ','Retained (old) magnetic foreign body in iris or ciliary body, right eye','Y','0000-00-00 00:00:00'),(114045,10,'H44.619 ','Retained (old) magnetic foreign body in anterior chamber, unspecified eye','Y','0000-00-00 00:00:00'),(114043,10,'H44.612 ','Retained (old) magnetic foreign body in anterior chamber, left eye','Y','0000-00-00 00:00:00'),(114044,10,'H44.613 ','Retained (old) magnetic foreign body in anterior chamber, bilateral','Y','0000-00-00 00:00:00'),(114042,10,'H44.611 ','Retained (old) magnetic foreign body in anterior chamber, right eye','Y','0000-00-00 00:00:00'),(114041,10,'H44.609 ','Unspecified retained (old) intraocular foreign body, magnetic, unspecified eye','Y','0000-00-00 00:00:00'),(114039,10,'H44.602 ','Unspecified retained (old) intraocular foreign body, magnetic, left eye','Y','0000-00-00 00:00:00'),(114040,10,'H44.603 ','Unspecified retained (old) intraocular foreign body, magnetic, bilateral','Y','0000-00-00 00:00:00'),(114038,10,'H44.601 ','Unspecified retained (old) intraocular foreign body, magnetic, right eye','Y','0000-00-00 00:00:00'),(114035,10,'H44.532 ','Leucocoria, left eye','Y','0000-00-00 00:00:00'),(114036,10,'H44.533 ','Leucocoria, bilateral','Y','0000-00-00 00:00:00'),(114037,10,'H44.539 ','Leucocoria, unspecified eye','Y','0000-00-00 00:00:00'),(114033,10,'H44.529 ','Atrophy of globe, unspecified eye','Y','0000-00-00 00:00:00'),(114034,10,'H44.531 ','Leucocoria, right eye','Y','0000-00-00 00:00:00'),(114031,10,'H44.522 ','Atrophy of globe, left eye','Y','0000-00-00 00:00:00'),(114032,10,'H44.523 ','Atrophy of globe, bilateral','Y','0000-00-00 00:00:00'),(114029,10,'H44.519 ','Absolute glaucoma, unspecified eye','Y','0000-00-00 00:00:00'),(114030,10,'H44.521 ','Atrophy of globe, right eye','Y','0000-00-00 00:00:00'),(114027,10,'H44.512 ','Absolute glaucoma, left eye','Y','0000-00-00 00:00:00'),(114028,10,'H44.513 ','Absolute glaucoma, bilateral','Y','0000-00-00 00:00:00'),(114025,10,'H44.50 ','Unspecified degenerated conditions of globe','Y','0000-00-00 00:00:00'),(114026,10,'H44.511 ','Absolute glaucoma, right eye','Y','0000-00-00 00:00:00'),(114024,10,'H44.449 ','Primary hypotony of unspecified eye','Y','0000-00-00 00:00:00'),(114021,10,'H44.441 ','Primary hypotony of right eye','Y','0000-00-00 00:00:00'),(114022,10,'H44.442 ','Primary hypotony of left eye','Y','0000-00-00 00:00:00'),(114023,10,'H44.443 ','Primary hypotony of eye, bilateral','Y','0000-00-00 00:00:00'),(114020,10,'H44.439 ','Hypotony of eye due to other ocular disorders, unspecified eye','Y','0000-00-00 00:00:00'),(114018,10,'H44.432 ','Hypotony of eye due to other ocular disorders, left eye','Y','0000-00-00 00:00:00'),(114019,10,'H44.433 ','Hypotony of eye due to other ocular disorders, bilateral','Y','0000-00-00 00:00:00'),(114017,10,'H44.431 ','Hypotony of eye due to other ocular disorders, right eye','Y','0000-00-00 00:00:00'),(114015,10,'H44.423 ','Hypotony of eye due to ocular fistula, bilateral','Y','0000-00-00 00:00:00'),(114016,10,'H44.429 ','Hypotony of unspecified eye due to ocular fistula','Y','0000-00-00 00:00:00'),(114013,10,'H44.421 ','Hypotony of right eye due to ocular fistula','Y','0000-00-00 00:00:00'),(114014,10,'H44.422 ','Hypotony of left eye due to ocular fistula','Y','0000-00-00 00:00:00'),(114011,10,'H44.413 ','Flat anterior chamber hypotony of eye, bilateral','Y','0000-00-00 00:00:00'),(114012,10,'H44.419 ','Flat anterior chamber hypotony of unspecified eye','Y','0000-00-00 00:00:00'),(114010,10,'H44.412 ','Flat anterior chamber hypotony of left eye','Y','0000-00-00 00:00:00'),(114008,10,'H44.40 ','Unspecified hypotony of eye','Y','0000-00-00 00:00:00'),(114009,10,'H44.411 ','Flat anterior chamber hypotony of right eye','Y','0000-00-00 00:00:00'),(114006,10,'H44.393 ','Other degenerative disorders of globe, bilateral','Y','0000-00-00 00:00:00'),(114007,10,'H44.399 ','Other degenerative disorders of globe, unspecified eye','Y','0000-00-00 00:00:00'),(114005,10,'H44.392 ','Other degenerative disorders of globe, left eye','Y','0000-00-00 00:00:00'),(114003,10,'H44.329 ','Siderosis of eye, unspecified eye','Y','0000-00-00 00:00:00'),(114004,10,'H44.391 ','Other degenerative disorders of globe, right eye','Y','0000-00-00 00:00:00'),(114001,10,'H44.322 ','Siderosis of eye, left eye','Y','0000-00-00 00:00:00'),(114002,10,'H44.323 ','Siderosis of eye, bilateral','Y','0000-00-00 00:00:00'),(113998,10,'H44.313 ','Chalcosis, bilateral','Y','0000-00-00 00:00:00'),(113999,10,'H44.319 ','Chalcosis, unspecified eye','Y','0000-00-00 00:00:00'),(114000,10,'H44.321 ','Siderosis of eye, right eye','Y','0000-00-00 00:00:00'),(113996,10,'H44.311 ','Chalcosis, right eye','Y','0000-00-00 00:00:00'),(113997,10,'H44.312 ','Chalcosis, left eye','Y','0000-00-00 00:00:00'),(113994,10,'H44.2E9 ','Degenerative myopia with other maculopathy, unspecified eye','Y','0000-00-00 00:00:00'),(113995,10,'H44.30 ','Unspecified degenerative disorder of globe','Y','0000-00-00 00:00:00'),(113993,10,'H44.2E3 ','Degenerative myopia with other maculopathy, bilateral eye','Y','0000-00-00 00:00:00'),(113991,10,'H44.2E1 ','Degenerative myopia with other maculopathy, right eye','Y','0000-00-00 00:00:00'),(113992,10,'H44.2E2 ','Degenerative myopia with other maculopathy, left eye','Y','0000-00-00 00:00:00'),(113989,10,'H44.2D3 ','Degenerative myopia with foveoschisis, bilateral eye','Y','0000-00-00 00:00:00'),(113990,10,'H44.2D9 ','Degenerative myopia with foveoschisis, unspecified eye','Y','0000-00-00 00:00:00'),(113987,10,'H44.2D1 ','Degenerative myopia with foveoschisis, right eye','Y','0000-00-00 00:00:00'),(113988,10,'H44.2D2 ','Degenerative myopia with foveoschisis, left eye','Y','0000-00-00 00:00:00'),(113986,10,'H44.2C9 ','Degenerative myopia with retinal detachment, unspecified eye','Y','0000-00-00 00:00:00'),(113984,10,'H44.2C2 ','Degenerative myopia with retinal detachment, left eye','Y','0000-00-00 00:00:00'),(113985,10,'H44.2C3 ','Degenerative myopia with retinal detachment, bilateral eye','Y','0000-00-00 00:00:00'),(113983,10,'H44.2C1 ','Degenerative myopia with retinal detachment, right eye','Y','0000-00-00 00:00:00'),(113981,10,'H44.2B3 ','Degenerative myopia with macular hole, bilateral eye','Y','0000-00-00 00:00:00'),(113982,10,'H44.2B9 ','Degenerative myopia with macular hole, unspecified eye','Y','0000-00-00 00:00:00'),(113979,10,'H44.2B1 ','Degenerative myopia with macular hole, right eye','Y','0000-00-00 00:00:00'),(113980,10,'H44.2B2 ','Degenerative myopia with macular hole, left eye','Y','0000-00-00 00:00:00'),(113978,10,'H44.2A9 ','Degenerative myopia with choroidal neovascularization, unspecified eye','Y','0000-00-00 00:00:00'),(113976,10,'H44.2A2 ','Degenerative myopia with choroidal neovascularization, left eye','Y','0000-00-00 00:00:00'),(113977,10,'H44.2A3 ','Degenerative myopia with choroidal neovascularization, bilateral eye','Y','0000-00-00 00:00:00'),(113974,10,'H44.23 ','Degenerative myopia, bilateral','Y','0000-00-00 00:00:00'),(113975,10,'H44.2A1 ','Degenerative myopia with choroidal neovascularization, right eye','Y','0000-00-00 00:00:00'),(113972,10,'H44.21 ','Degenerative myopia, right eye','Y','0000-00-00 00:00:00'),(113973,10,'H44.22 ','Degenerative myopia, left eye','Y','0000-00-00 00:00:00'),(113970,10,'H44.19 ','Other endophthalmitis','Y','0000-00-00 00:00:00'),(113971,10,'H44.20 ','Degenerative myopia, unspecified eye','Y','0000-00-00 00:00:00'),(113967,10,'H44.132 ','Sympathetic uveitis, left eye','Y','0000-00-00 00:00:00'),(113968,10,'H44.133 ','Sympathetic uveitis, bilateral','Y','0000-00-00 00:00:00'),(113969,10,'H44.139 ','Sympathetic uveitis, unspecified eye','Y','0000-00-00 00:00:00'),(113965,10,'H44.129 ','Parasitic endophthalmitis, unspecified, unspecified eye','Y','0000-00-00 00:00:00'),(113966,10,'H44.131 ','Sympathetic uveitis, right eye','Y','0000-00-00 00:00:00'),(113963,10,'H44.122 ','Parasitic endophthalmitis, unspecified, left eye','Y','0000-00-00 00:00:00'),(113964,10,'H44.123 ','Parasitic endophthalmitis, unspecified, bilateral','Y','0000-00-00 00:00:00'),(113962,10,'H44.121 ','Parasitic endophthalmitis, unspecified, right eye','Y','0000-00-00 00:00:00'),(113959,10,'H44.112 ','Panuveitis, left eye','Y','0000-00-00 00:00:00'),(113960,10,'H44.113 ','Panuveitis, bilateral','Y','0000-00-00 00:00:00'),(113961,10,'H44.119 ','Panuveitis, unspecified eye','Y','0000-00-00 00:00:00'),(113957,10,'H44.029 ','Vitreous abscess (chronic), unspecified eye','Y','0000-00-00 00:00:00'),(113958,10,'H44.111 ','Panuveitis, right eye','Y','0000-00-00 00:00:00'),(113955,10,'H44.022 ','Vitreous abscess (chronic), left eye','Y','0000-00-00 00:00:00'),(113956,10,'H44.023 ','Vitreous abscess (chronic), bilateral','Y','0000-00-00 00:00:00'),(113953,10,'H44.019 ','Panophthalmitis (acute), unspecified eye','Y','0000-00-00 00:00:00'),(113954,10,'H44.021 ','Vitreous abscess (chronic), right eye','Y','0000-00-00 00:00:00'),(113951,10,'H44.012 ','Panophthalmitis (acute), left eye','Y','0000-00-00 00:00:00'),(113952,10,'H44.013 ','Panophthalmitis (acute), bilateral','Y','0000-00-00 00:00:00'),(113950,10,'H44.011 ','Panophthalmitis (acute), right eye','Y','0000-00-00 00:00:00'),(113948,10,'H44.003 ','Unspecified purulent endophthalmitis, bilateral','Y','0000-00-00 00:00:00'),(113949,10,'H44.009 ','Unspecified purulent endophthalmitis, unspecified eye','Y','0000-00-00 00:00:00'),(113946,10,'H44.001 ','Unspecified purulent endophthalmitis, right eye','Y','0000-00-00 00:00:00'),(113947,10,'H44.002 ','Unspecified purulent endophthalmitis, left eye','Y','0000-00-00 00:00:00'),(113944,10,'H43.89 ','Other disorders of vitreous body','Y','0000-00-00 00:00:00'),(113945,10,'H43.9 ','Unspecified disorder of vitreous body','Y','0000-00-00 00:00:00'),(113942,10,'H43.823 ','Vitreomacular adhesion, bilateral','Y','0000-00-00 00:00:00'),(113943,10,'H43.829 ','Vitreomacular adhesion, unspecified eye','Y','0000-00-00 00:00:00'),(113940,10,'H43.821 ','Vitreomacular adhesion, right eye','Y','0000-00-00 00:00:00'),(113941,10,'H43.822 ','Vitreomacular adhesion, left eye','Y','0000-00-00 00:00:00'),(113938,10,'H43.813 ','Vitreous degeneration, bilateral','Y','0000-00-00 00:00:00'),(113939,10,'H43.819 ','Vitreous degeneration, unspecified eye','Y','0000-00-00 00:00:00'),(113936,10,'H43.811 ','Vitreous degeneration, right eye','Y','0000-00-00 00:00:00'),(113937,10,'H43.812 ','Vitreous degeneration, left eye','Y','0000-00-00 00:00:00'),(113934,10,'H43.393 ','Other vitreous opacities, bilateral','Y','0000-00-00 00:00:00'),(113935,10,'H43.399 ','Other vitreous opacities, unspecified eye','Y','0000-00-00 00:00:00'),(113932,10,'H43.391 ','Other vitreous opacities, right eye','Y','0000-00-00 00:00:00'),(113933,10,'H43.392 ','Other vitreous opacities, left eye','Y','0000-00-00 00:00:00'),(113931,10,'H43.319 ','Vitreous membranes and strands, unspecified eye','Y','0000-00-00 00:00:00'),(113929,10,'H43.312 ','Vitreous membranes and strands, left eye','Y','0000-00-00 00:00:00'),(113930,10,'H43.313 ','Vitreous membranes and strands, bilateral','Y','0000-00-00 00:00:00'),(113927,10,'H43.23 ','Crystalline deposits in vitreous body, bilateral','Y','0000-00-00 00:00:00'),(113928,10,'H43.311 ','Vitreous membranes and strands, right eye','Y','0000-00-00 00:00:00'),(113926,10,'H43.22 ','Crystalline deposits in vitreous body, left eye','Y','0000-00-00 00:00:00'),(113924,10,'H43.20 ','Crystalline deposits in vitreous body, unspecified eye','Y','0000-00-00 00:00:00'),(113925,10,'H43.21 ','Crystalline deposits in vitreous body, right eye','Y','0000-00-00 00:00:00'),(113922,10,'H43.12 ','Vitreous hemorrhage, left eye','Y','0000-00-00 00:00:00'),(113923,10,'H43.13 ','Vitreous hemorrhage, bilateral','Y','0000-00-00 00:00:00'),(113920,10,'H43.10 ','Vitreous hemorrhage, unspecified eye','Y','0000-00-00 00:00:00'),(113921,10,'H43.11 ','Vitreous hemorrhage, right eye','Y','0000-00-00 00:00:00'),(113918,10,'H43.02 ','Vitreous prolapse, left eye','Y','0000-00-00 00:00:00'),(113919,10,'H43.03 ','Vitreous prolapse, bilateral','Y','0000-00-00 00:00:00'),(113916,10,'H43.00 ','Vitreous prolapse, unspecified eye','Y','0000-00-00 00:00:00'),(113917,10,'H43.01 ','Vitreous prolapse, right eye','Y','0000-00-00 00:00:00'),(113913,10,'H40.89 ','Other specified glaucoma','Y','0000-00-00 00:00:00'),(113914,10,'H40.9 ','Unspecified glaucoma','Y','0000-00-00 00:00:00'),(113915,10,'H42','Glaucoma in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(113911,10,'H40.833 ','Aqueous misdirection, bilateral','Y','0000-00-00 00:00:00'),(113912,10,'H40.839 ','Aqueous misdirection, unspecified eye','Y','0000-00-00 00:00:00'),(113909,10,'H40.831 ','Aqueous misdirection, right eye','Y','0000-00-00 00:00:00'),(113910,10,'H40.832 ','Aqueous misdirection, left eye','Y','0000-00-00 00:00:00'),(113907,10,'H40.823 ','Hypersecretion glaucoma, bilateral','Y','0000-00-00 00:00:00'),(113908,10,'H40.829 ','Hypersecretion glaucoma, unspecified eye','Y','0000-00-00 00:00:00'),(113905,10,'H40.821 ','Hypersecretion glaucoma, right eye','Y','0000-00-00 00:00:00'),(113906,10,'H40.822 ','Hypersecretion glaucoma, left eye','Y','0000-00-00 00:00:00'),(113904,10,'H40.819 ','Glaucoma with increased episcleral venous pressure, unspecified eye','Y','0000-00-00 00:00:00'),(113903,10,'H40.813 ','Glaucoma with increased episcleral venous pressure, bilateral','Y','0000-00-00 00:00:00'),(113901,10,'H40.811 ','Glaucoma with increased episcleral venous pressure, right eye','Y','0000-00-00 00:00:00'),(113902,10,'H40.812 ','Glaucoma with increased episcleral venous pressure, left eye','Y','0000-00-00 00:00:00'),(113900,10,'H40.63X4 ','Glaucoma secondary to drugs, bilateral, indeterminate stage','Y','0000-00-00 00:00:00'),(113898,10,'H40.63X2 ','Glaucoma secondary to drugs, bilateral, moderate stage','Y','0000-00-00 00:00:00'),(113899,10,'H40.63X3 ','Glaucoma secondary to drugs, bilateral, severe stage','Y','0000-00-00 00:00:00'),(113897,10,'H40.63X1 ','Glaucoma secondary to drugs, bilateral, mild stage','Y','0000-00-00 00:00:00'),(113895,10,'H40.62X4 ','Glaucoma secondary to drugs, left eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113896,10,'H40.63X0 ','Glaucoma secondary to drugs, bilateral, stage unspecified','Y','0000-00-00 00:00:00'),(113894,10,'H40.62X3 ','Glaucoma secondary to drugs, left eye, severe stage','Y','0000-00-00 00:00:00'),(113892,10,'H40.62X1 ','Glaucoma secondary to drugs, left eye, mild stage','Y','0000-00-00 00:00:00'),(113893,10,'H40.62X2 ','Glaucoma secondary to drugs, left eye, moderate stage','Y','0000-00-00 00:00:00'),(113891,10,'H40.62X0 ','Glaucoma secondary to drugs, left eye, stage unspecified','Y','0000-00-00 00:00:00'),(113889,10,'H40.61X3 ','Glaucoma secondary to drugs, right eye, severe stage','Y','0000-00-00 00:00:00'),(113890,10,'H40.61X4 ','Glaucoma secondary to drugs, right eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113888,10,'H40.61X2 ','Glaucoma secondary to drugs, right eye, moderate stage','Y','0000-00-00 00:00:00'),(113886,10,'H40.61X0 ','Glaucoma secondary to drugs, right eye, stage unspecified','Y','0000-00-00 00:00:00'),(113887,10,'H40.61X1 ','Glaucoma secondary to drugs, right eye, mild stage','Y','0000-00-00 00:00:00'),(113885,10,'H40.60X4 ','Glaucoma secondary to drugs, unspecified eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113883,10,'H40.60X2 ','Glaucoma secondary to drugs, unspecified eye, moderate stage','Y','0000-00-00 00:00:00'),(113884,10,'H40.60X3 ','Glaucoma secondary to drugs, unspecified eye, severe stage','Y','0000-00-00 00:00:00'),(113882,10,'H40.60X1 ','Glaucoma secondary to drugs, unspecified eye, mild stage','Y','0000-00-00 00:00:00'),(113880,10,'H40.53X4 ','Glaucoma secondary to other eye disorders, bilateral, indeterminate stage','Y','0000-00-00 00:00:00'),(113881,10,'H40.60X0 ','Glaucoma secondary to drugs, unspecified eye, stage unspecified','Y','0000-00-00 00:00:00'),(113879,10,'H40.53X3 ','Glaucoma secondary to other eye disorders, bilateral, severe stage','Y','0000-00-00 00:00:00'),(113878,10,'H40.53X2 ','Glaucoma secondary to other eye disorders, bilateral, moderate stage','Y','0000-00-00 00:00:00'),(113876,10,'H40.53X0 ','Glaucoma secondary to other eye disorders, bilateral, stage unspecified','Y','0000-00-00 00:00:00'),(113877,10,'H40.53X1 ','Glaucoma secondary to other eye disorders, bilateral, mild stage','Y','0000-00-00 00:00:00'),(113875,10,'H40.52X4 ','Glaucoma secondary to other eye disorders, left eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113873,10,'H40.52X2 ','Glaucoma secondary to other eye disorders, left eye, moderate stage','Y','0000-00-00 00:00:00'),(113874,10,'H40.52X3 ','Glaucoma secondary to other eye disorders, left eye, severe stage','Y','0000-00-00 00:00:00'),(113872,10,'H40.52X1 ','Glaucoma secondary to other eye disorders, left eye, mild stage','Y','0000-00-00 00:00:00'),(113870,10,'H40.51X4 ','Glaucoma secondary to other eye disorders, right eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113871,10,'H40.52X0 ','Glaucoma secondary to other eye disorders, left eye, stage unspecified','Y','0000-00-00 00:00:00'),(113869,10,'H40.51X3 ','Glaucoma secondary to other eye disorders, right eye, severe stage','Y','0000-00-00 00:00:00'),(113868,10,'H40.51X2 ','Glaucoma secondary to other eye disorders, right eye, moderate stage','Y','0000-00-00 00:00:00'),(113866,10,'H40.51X0 ','Glaucoma secondary to other eye disorders, right eye, stage unspecified','Y','0000-00-00 00:00:00'),(113867,10,'H40.51X1 ','Glaucoma secondary to other eye disorders, right eye, mild stage','Y','0000-00-00 00:00:00'),(113865,10,'H40.50X4 ','Glaucoma secondary to other eye disorders, unspecified eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113864,10,'H40.50X3 ','Glaucoma secondary to other eye disorders, unspecified eye, severe stage','Y','0000-00-00 00:00:00'),(113863,10,'H40.50X2 ','Glaucoma secondary to other eye disorders, unspecified eye, moderate stage','Y','0000-00-00 00:00:00'),(113861,10,'H40.50X0 ','Glaucoma secondary to other eye disorders, unspecified eye, stage unspecified','Y','0000-00-00 00:00:00'),(113862,10,'H40.50X1 ','Glaucoma secondary to other eye disorders, unspecified eye, mild stage','Y','0000-00-00 00:00:00'),(113860,10,'H40.43X4 ','Glaucoma secondary to eye inflammation, bilateral, indeterminate stage','Y','0000-00-00 00:00:00'),(113859,10,'H40.43X3 ','Glaucoma secondary to eye inflammation, bilateral, severe stage','Y','0000-00-00 00:00:00'),(113857,10,'H40.43X1 ','Glaucoma secondary to eye inflammation, bilateral, mild stage','Y','0000-00-00 00:00:00'),(113858,10,'H40.43X2 ','Glaucoma secondary to eye inflammation, bilateral, moderate stage','Y','0000-00-00 00:00:00'),(113856,10,'H40.43X0 ','Glaucoma secondary to eye inflammation, bilateral, stage unspecified','Y','0000-00-00 00:00:00'),(113854,10,'H40.42X3 ','Glaucoma secondary to eye inflammation, left eye, severe stage','Y','0000-00-00 00:00:00'),(113855,10,'H40.42X4 ','Glaucoma secondary to eye inflammation, left eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113853,10,'H40.42X2 ','Glaucoma secondary to eye inflammation, left eye, moderate stage','Y','0000-00-00 00:00:00'),(113851,10,'H40.42X0 ','Glaucoma secondary to eye inflammation, left eye, stage unspecified','Y','0000-00-00 00:00:00'),(113852,10,'H40.42X1 ','Glaucoma secondary to eye inflammation, left eye, mild stage','Y','0000-00-00 00:00:00'),(113850,10,'H40.41X4 ','Glaucoma secondary to eye inflammation, right eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113849,10,'H40.41X3 ','Glaucoma secondary to eye inflammation, right eye, severe stage','Y','0000-00-00 00:00:00'),(113847,10,'H40.41X1 ','Glaucoma secondary to eye inflammation, right eye, mild stage','Y','0000-00-00 00:00:00'),(113848,10,'H40.41X2 ','Glaucoma secondary to eye inflammation, right eye, moderate stage','Y','0000-00-00 00:00:00'),(113846,10,'H40.41X0 ','Glaucoma secondary to eye inflammation, right eye, stage unspecified','Y','0000-00-00 00:00:00'),(113845,10,'H40.40X4 ','Glaucoma secondary to eye inflammation, unspecified eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113844,10,'H40.40X3 ','Glaucoma secondary to eye inflammation, unspecified eye, severe stage','Y','0000-00-00 00:00:00'),(113843,10,'H40.40X2 ','Glaucoma secondary to eye inflammation, unspecified eye, moderate stage','Y','0000-00-00 00:00:00'),(113841,10,'H40.40X0 ','Glaucoma secondary to eye inflammation, unspecified eye, stage unspecified','Y','0000-00-00 00:00:00'),(113842,10,'H40.40X1 ','Glaucoma secondary to eye inflammation, unspecified eye, mild stage','Y','0000-00-00 00:00:00'),(113840,10,'H40.33X4 ','Glaucoma secondary to eye trauma, bilateral, indeterminate stage','Y','0000-00-00 00:00:00'),(113838,10,'H40.33X2 ','Glaucoma secondary to eye trauma, bilateral, moderate stage','Y','0000-00-00 00:00:00'),(113839,10,'H40.33X3 ','Glaucoma secondary to eye trauma, bilateral, severe stage','Y','0000-00-00 00:00:00'),(113837,10,'H40.33X1 ','Glaucoma secondary to eye trauma, bilateral, mild stage','Y','0000-00-00 00:00:00'),(113835,10,'H40.32X4 ','Glaucoma secondary to eye trauma, left eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113836,10,'H40.33X0 ','Glaucoma secondary to eye trauma, bilateral, stage unspecified','Y','0000-00-00 00:00:00'),(113834,10,'H40.32X3 ','Glaucoma secondary to eye trauma, left eye, severe stage','Y','0000-00-00 00:00:00'),(113833,10,'H40.32X2 ','Glaucoma secondary to eye trauma, left eye, moderate stage','Y','0000-00-00 00:00:00'),(113831,10,'H40.32X0 ','Glaucoma secondary to eye trauma, left eye, stage unspecified','Y','0000-00-00 00:00:00'),(113832,10,'H40.32X1 ','Glaucoma secondary to eye trauma, left eye, mild stage','Y','0000-00-00 00:00:00'),(113830,10,'H40.31X4 ','Glaucoma secondary to eye trauma, right eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113829,10,'H40.31X3 ','Glaucoma secondary to eye trauma, right eye, severe stage','Y','0000-00-00 00:00:00'),(113827,10,'H40.31X1 ','Glaucoma secondary to eye trauma, right eye, mild stage','Y','0000-00-00 00:00:00'),(113828,10,'H40.31X2 ','Glaucoma secondary to eye trauma, right eye, moderate stage','Y','0000-00-00 00:00:00'),(113826,10,'H40.31X0 ','Glaucoma secondary to eye trauma, right eye, stage unspecified','Y','0000-00-00 00:00:00'),(113825,10,'H40.30X4 ','Glaucoma secondary to eye trauma, unspecified eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113824,10,'H40.30X3 ','Glaucoma secondary to eye trauma, unspecified eye, severe stage','Y','0000-00-00 00:00:00'),(113822,10,'H40.30X1 ','Glaucoma secondary to eye trauma, unspecified eye, mild stage','Y','0000-00-00 00:00:00'),(113823,10,'H40.30X2 ','Glaucoma secondary to eye trauma, unspecified eye, moderate stage','Y','0000-00-00 00:00:00'),(113821,10,'H40.30X0 ','Glaucoma secondary to eye trauma, unspecified eye, stage unspecified','Y','0000-00-00 00:00:00'),(113819,10,'H40.243 ','Residual stage of angle-closure glaucoma, bilateral','Y','0000-00-00 00:00:00'),(113820,10,'H40.249 ','Residual stage of angle-closure glaucoma, unspecified eye','Y','0000-00-00 00:00:00'),(113818,10,'H40.242 ','Residual stage of angle-closure glaucoma, left eye','Y','0000-00-00 00:00:00'),(113816,10,'H40.239 ','Intermittent angle-closure glaucoma, unspecified eye','Y','0000-00-00 00:00:00'),(113817,10,'H40.241 ','Residual stage of angle-closure glaucoma, right eye','Y','0000-00-00 00:00:00'),(113815,10,'H40.233 ','Intermittent angle-closure glaucoma, bilateral','Y','0000-00-00 00:00:00'),(113813,10,'H40.231 ','Intermittent angle-closure glaucoma, right eye','Y','0000-00-00 00:00:00'),(113814,10,'H40.232 ','Intermittent angle-closure glaucoma, left eye','Y','0000-00-00 00:00:00'),(113812,10,'H40.2294 ','Chronic angle-closure glaucoma, unspecified eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113810,10,'H40.2292 ','Chronic angle-closure glaucoma, unspecified eye, moderate stage','Y','0000-00-00 00:00:00'),(113811,10,'H40.2293 ','Chronic angle-closure glaucoma, unspecified eye, severe stage','Y','0000-00-00 00:00:00'),(113809,10,'H40.2291 ','Chronic angle-closure glaucoma, unspecified eye, mild stage','Y','0000-00-00 00:00:00'),(113808,10,'H40.2290 ','Chronic angle-closure glaucoma, unspecified eye, stage unspecified','Y','0000-00-00 00:00:00'),(113806,10,'H40.2233 ','Chronic angle-closure glaucoma, bilateral, severe stage','Y','0000-00-00 00:00:00'),(113807,10,'H40.2234 ','Chronic angle-closure glaucoma, bilateral, indeterminate stage','Y','0000-00-00 00:00:00'),(113805,10,'H40.2232 ','Chronic angle-closure glaucoma, bilateral, moderate stage','Y','0000-00-00 00:00:00'),(113803,10,'H40.2230 ','Chronic angle-closure glaucoma, bilateral, stage unspecified','Y','0000-00-00 00:00:00'),(113804,10,'H40.2231 ','Chronic angle-closure glaucoma, bilateral, mild stage','Y','0000-00-00 00:00:00'),(113802,10,'H40.2224 ','Chronic angle-closure glaucoma, left eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113800,10,'H40.2222 ','Chronic angle-closure glaucoma, left eye, moderate stage','Y','0000-00-00 00:00:00'),(113801,10,'H40.2223 ','Chronic angle-closure glaucoma, left eye, severe stage','Y','0000-00-00 00:00:00'),(113799,10,'H40.2221 ','Chronic angle-closure glaucoma, left eye, mild stage','Y','0000-00-00 00:00:00'),(113797,10,'H40.2214 ','Chronic angle-closure glaucoma, right eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113798,10,'H40.2220 ','Chronic angle-closure glaucoma, left eye, stage unspecified','Y','0000-00-00 00:00:00'),(113796,10,'H40.2213 ','Chronic angle-closure glaucoma, right eye, severe stage','Y','0000-00-00 00:00:00'),(113794,10,'H40.2211 ','Chronic angle-closure glaucoma, right eye, mild stage','Y','0000-00-00 00:00:00'),(113795,10,'H40.2212 ','Chronic angle-closure glaucoma, right eye, moderate stage','Y','0000-00-00 00:00:00'),(113792,10,'H40.219 ','Acute angle-closure glaucoma, unspecified eye','Y','0000-00-00 00:00:00'),(113793,10,'H40.2210 ','Chronic angle-closure glaucoma, right eye, stage unspecified','Y','0000-00-00 00:00:00'),(113791,10,'H40.213 ','Acute angle-closure glaucoma, bilateral','Y','0000-00-00 00:00:00'),(113789,10,'H40.211 ','Acute angle-closure glaucoma, right eye','Y','0000-00-00 00:00:00'),(113790,10,'H40.212 ','Acute angle-closure glaucoma, left eye','Y','0000-00-00 00:00:00'),(113787,10,'H40.20X3 ','Unspecified primary angle-closure glaucoma, severe stage','Y','0000-00-00 00:00:00'),(113788,10,'H40.20X4 ','Unspecified primary angle-closure glaucoma, indeterminate stage','Y','0000-00-00 00:00:00'),(113786,10,'H40.20X2 ','Unspecified primary angle-closure glaucoma, moderate stage','Y','0000-00-00 00:00:00'),(113784,10,'H40.20X0 ','Unspecified primary angle-closure glaucoma, stage unspecified','Y','0000-00-00 00:00:00'),(113785,10,'H40.20X1 ','Unspecified primary angle-closure glaucoma, mild stage','Y','0000-00-00 00:00:00'),(113783,10,'H40.159 ','Residual stage of open-angle glaucoma, unspecified eye','Y','0000-00-00 00:00:00'),(113782,10,'H40.153 ','Residual stage of open-angle glaucoma, bilateral','Y','0000-00-00 00:00:00'),(113780,10,'H40.151 ','Residual stage of open-angle glaucoma, right eye','Y','0000-00-00 00:00:00'),(113781,10,'H40.152 ','Residual stage of open-angle glaucoma, left eye','Y','0000-00-00 00:00:00'),(113779,10,'H40.1494 ','Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113778,10,'H40.1493 ','Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, severe stage','Y','0000-00-00 00:00:00'),(113777,10,'H40.1492 ','Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, moderate stage','Y','0000-00-00 00:00:00'),(113776,10,'H40.1491 ','Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, mild stage','Y','0000-00-00 00:00:00'),(113775,10,'H40.1490 ','Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, stage unspecified','Y','0000-00-00 00:00:00'),(113773,10,'H40.1433 ','Capsular glaucoma with pseudoexfoliation of lens, bilateral, severe stage','Y','0000-00-00 00:00:00'),(113774,10,'H40.1434 ','Capsular glaucoma with pseudoexfoliation of lens, bilateral, indeterminate stage','Y','0000-00-00 00:00:00'),(113772,10,'H40.1432 ','Capsular glaucoma with pseudoexfoliation of lens, bilateral, moderate stage','Y','0000-00-00 00:00:00'),(113771,10,'H40.1431 ','Capsular glaucoma with pseudoexfoliation of lens, bilateral, mild stage','Y','0000-00-00 00:00:00'),(113770,10,'H40.1430 ','Capsular glaucoma with pseudoexfoliation of lens, bilateral, stage unspecified','Y','0000-00-00 00:00:00'),(113768,10,'H40.1423 ','Capsular glaucoma with pseudoexfoliation of lens, left eye, severe stage','Y','0000-00-00 00:00:00'),(113769,10,'H40.1424 ','Capsular glaucoma with pseudoexfoliation of lens, left eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113767,10,'H40.1422 ','Capsular glaucoma with pseudoexfoliation of lens, left eye, moderate stage','Y','0000-00-00 00:00:00'),(113766,10,'H40.1421 ','Capsular glaucoma with pseudoexfoliation of lens, left eye, mild stage','Y','0000-00-00 00:00:00'),(113765,10,'H40.1420 ','Capsular glaucoma with pseudoexfoliation of lens, left eye, stage unspecified','Y','0000-00-00 00:00:00'),(113763,10,'H40.1413 ','Capsular glaucoma with pseudoexfoliation of lens, right eye, severe stage','Y','0000-00-00 00:00:00'),(113764,10,'H40.1414 ','Capsular glaucoma with pseudoexfoliation of lens, right eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113762,10,'H40.1412 ','Capsular glaucoma with pseudoexfoliation of lens, right eye, moderate stage','Y','0000-00-00 00:00:00'),(113761,10,'H40.1411 ','Capsular glaucoma with pseudoexfoliation of lens, right eye, mild stage','Y','0000-00-00 00:00:00'),(113759,10,'H40.1394 ','Pigmentary glaucoma, unspecified eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113760,10,'H40.1410 ','Capsular glaucoma with pseudoexfoliation of lens, right eye, stage unspecified','Y','0000-00-00 00:00:00'),(113758,10,'H40.1393 ','Pigmentary glaucoma, unspecified eye, severe stage','Y','0000-00-00 00:00:00'),(113756,10,'H40.1391 ','Pigmentary glaucoma, unspecified eye, mild stage','Y','0000-00-00 00:00:00'),(113757,10,'H40.1392 ','Pigmentary glaucoma, unspecified eye, moderate stage','Y','0000-00-00 00:00:00'),(113755,10,'H40.1390 ','Pigmentary glaucoma, unspecified eye, stage unspecified','Y','0000-00-00 00:00:00'),(113753,10,'H40.1333 ','Pigmentary glaucoma, bilateral, severe stage','Y','0000-00-00 00:00:00'),(113754,10,'H40.1334 ','Pigmentary glaucoma, bilateral, indeterminate stage','Y','0000-00-00 00:00:00'),(113752,10,'H40.1332 ','Pigmentary glaucoma, bilateral, moderate stage','Y','0000-00-00 00:00:00'),(113750,10,'H40.1330 ','Pigmentary glaucoma, bilateral, stage unspecified','Y','0000-00-00 00:00:00'),(113751,10,'H40.1331 ','Pigmentary glaucoma, bilateral, mild stage','Y','0000-00-00 00:00:00'),(113749,10,'H40.1324 ','Pigmentary glaucoma, left eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113747,10,'H40.1322 ','Pigmentary glaucoma, left eye, moderate stage','Y','0000-00-00 00:00:00'),(113748,10,'H40.1323 ','Pigmentary glaucoma, left eye, severe stage','Y','0000-00-00 00:00:00'),(113746,10,'H40.1321 ','Pigmentary glaucoma, left eye, mild stage','Y','0000-00-00 00:00:00'),(113745,10,'H40.1320 ','Pigmentary glaucoma, left eye, stage unspecified','Y','0000-00-00 00:00:00'),(113743,10,'H40.1313 ','Pigmentary glaucoma, right eye, severe stage','Y','0000-00-00 00:00:00'),(113744,10,'H40.1314 ','Pigmentary glaucoma, right eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113742,10,'H40.1312 ','Pigmentary glaucoma, right eye, moderate stage','Y','0000-00-00 00:00:00'),(113741,10,'H40.1311 ','Pigmentary glaucoma, right eye, mild stage','Y','0000-00-00 00:00:00'),(113740,10,'H40.1310 ','Pigmentary glaucoma, right eye, stage unspecified','Y','0000-00-00 00:00:00'),(113739,10,'H40.1294 ','Low-tension glaucoma, unspecified eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113737,10,'H40.1292 ','Low-tension glaucoma, unspecified eye, moderate stage','Y','0000-00-00 00:00:00'),(113738,10,'H40.1293 ','Low-tension glaucoma, unspecified eye, severe stage','Y','0000-00-00 00:00:00'),(113736,10,'H40.1291 ','Low-tension glaucoma, unspecified eye, mild stage','Y','0000-00-00 00:00:00'),(113735,10,'H40.1290 ','Low-tension glaucoma, unspecified eye, stage unspecified','Y','0000-00-00 00:00:00'),(113733,10,'H40.1233 ','Low-tension glaucoma, bilateral, severe stage','Y','0000-00-00 00:00:00'),(113734,10,'H40.1234 ','Low-tension glaucoma, bilateral, indeterminate stage','Y','0000-00-00 00:00:00'),(113732,10,'H40.1232 ','Low-tension glaucoma, bilateral, moderate stage','Y','0000-00-00 00:00:00'),(113731,10,'H40.1231 ','Low-tension glaucoma, bilateral, mild stage','Y','0000-00-00 00:00:00'),(113729,10,'H40.1224 ','Low-tension glaucoma, left eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113730,10,'H40.1230 ','Low-tension glaucoma, bilateral, stage unspecified','Y','0000-00-00 00:00:00'),(113728,10,'H40.1223 ','Low-tension glaucoma, left eye, severe stage','Y','0000-00-00 00:00:00'),(113727,10,'H40.1222 ','Low-tension glaucoma, left eye, moderate stage','Y','0000-00-00 00:00:00'),(113726,10,'H40.1221 ','Low-tension glaucoma, left eye, mild stage','Y','0000-00-00 00:00:00'),(113724,10,'H40.1214 ','Low-tension glaucoma, right eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113725,10,'H40.1220 ','Low-tension glaucoma, left eye, stage unspecified','Y','0000-00-00 00:00:00'),(113723,10,'H40.1213 ','Low-tension glaucoma, right eye, severe stage','Y','0000-00-00 00:00:00'),(113722,10,'H40.1212 ','Low-tension glaucoma, right eye, moderate stage','Y','0000-00-00 00:00:00'),(113720,10,'H40.1210 ','Low-tension glaucoma, right eye, stage unspecified','Y','0000-00-00 00:00:00'),(113721,10,'H40.1211 ','Low-tension glaucoma, right eye, mild stage','Y','0000-00-00 00:00:00'),(113718,10,'H40.1193 ','Primary open-angle glaucoma, unspecified eye, severe stage','Y','0000-00-00 00:00:00'),(113719,10,'H40.1194 ','Primary open-angle glaucoma, unspecified eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113717,10,'H40.1192 ','Primary open-angle glaucoma, unspecified eye, moderate stage','Y','0000-00-00 00:00:00'),(113716,10,'H40.1191 ','Primary open-angle glaucoma, unspecified eye, mild stage','Y','0000-00-00 00:00:00'),(113715,10,'H40.1190 ','Primary open-angle glaucoma, unspecified eye, stage unspecified','Y','0000-00-00 00:00:00'),(113713,10,'H40.1133 ','Primary open-angle glaucoma, bilateral, severe stage','Y','0000-00-00 00:00:00'),(113714,10,'H40.1134 ','Primary open-angle glaucoma, bilateral, indeterminate stage','Y','0000-00-00 00:00:00'),(113712,10,'H40.1132 ','Primary open-angle glaucoma, bilateral, moderate stage','Y','0000-00-00 00:00:00'),(113711,10,'H40.1131 ','Primary open-angle glaucoma, bilateral, mild stage','Y','0000-00-00 00:00:00'),(113710,10,'H40.1130 ','Primary open-angle glaucoma, bilateral, stage unspecified','Y','0000-00-00 00:00:00'),(113709,10,'H40.1124 ','Primary open-angle glaucoma, left eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113708,10,'H40.1123 ','Primary open-angle glaucoma, left eye, severe stage','Y','0000-00-00 00:00:00'),(113707,10,'H40.1122 ','Primary open-angle glaucoma, left eye, moderate stage','Y','0000-00-00 00:00:00'),(113706,10,'H40.1121 ','Primary open-angle glaucoma, left eye, mild stage','Y','0000-00-00 00:00:00'),(113705,10,'H40.1120 ','Primary open-angle glaucoma, left eye, stage unspecified','Y','0000-00-00 00:00:00'),(113704,10,'H40.1114 ','Primary open-angle glaucoma, right eye, indeterminate stage','Y','0000-00-00 00:00:00'),(113703,10,'H40.1113 ','Primary open-angle glaucoma, right eye, severe stage','Y','0000-00-00 00:00:00'),(113701,10,'H40.1111 ','Primary open-angle glaucoma, right eye, mild stage','Y','0000-00-00 00:00:00'),(113702,10,'H40.1112 ','Primary open-angle glaucoma, right eye, moderate stage','Y','0000-00-00 00:00:00'),(113700,10,'H40.1110 ','Primary open-angle glaucoma, right eye, stage unspecified','Y','0000-00-00 00:00:00'),(113699,10,'H40.10X4 ','Unspecified open-angle glaucoma, indeterminate stage','Y','0000-00-00 00:00:00'),(113698,10,'H40.10X3 ','Unspecified open-angle glaucoma, severe stage','Y','0000-00-00 00:00:00'),(113696,10,'H40.10X1 ','Unspecified open-angle glaucoma, mild stage','Y','0000-00-00 00:00:00'),(113697,10,'H40.10X2 ','Unspecified open-angle glaucoma, moderate stage','Y','0000-00-00 00:00:00'),(113695,10,'H40.10X0 ','Unspecified open-angle glaucoma, stage unspecified','Y','0000-00-00 00:00:00'),(113694,10,'H40.069 ','Primary angle closure without glaucoma damage, unspecified eye','Y','0000-00-00 00:00:00'),(113693,10,'H40.063 ','Primary angle closure without glaucoma damage, bilateral','Y','0000-00-00 00:00:00'),(113692,10,'H40.062 ','Primary angle closure without glaucoma damage, left eye','Y','0000-00-00 00:00:00'),(113691,10,'H40.061 ','Primary angle closure without glaucoma damage, right eye','Y','0000-00-00 00:00:00'),(113690,10,'H40.059 ','Ocular hypertension, unspecified eye','Y','0000-00-00 00:00:00'),(113688,10,'H40.052 ','Ocular hypertension, left eye','Y','0000-00-00 00:00:00'),(113689,10,'H40.053 ','Ocular hypertension, bilateral','Y','0000-00-00 00:00:00'),(113687,10,'H40.051 ','Ocular hypertension, right eye','Y','0000-00-00 00:00:00'),(113685,10,'H40.043 ','Steroid responder, bilateral','Y','0000-00-00 00:00:00'),(113686,10,'H40.049 ','Steroid responder, unspecified eye','Y','0000-00-00 00:00:00'),(113684,10,'H40.042 ','Steroid responder, left eye','Y','0000-00-00 00:00:00'),(113682,10,'H40.039 ','Anatomical narrow angle, unspecified eye','Y','0000-00-00 00:00:00'),(113683,10,'H40.041 ','Steroid responder, right eye','Y','0000-00-00 00:00:00'),(113681,10,'H40.033 ','Anatomical narrow angle, bilateral','Y','0000-00-00 00:00:00'),(113679,10,'H40.031 ','Anatomical narrow angle, right eye','Y','0000-00-00 00:00:00'),(113680,10,'H40.032 ','Anatomical narrow angle, left eye','Y','0000-00-00 00:00:00'),(113678,10,'H40.029 ','Open angle with borderline findings, high risk, unspecified eye','Y','0000-00-00 00:00:00'),(113677,10,'H40.023 ','Open angle with borderline findings, high risk, bilateral','Y','0000-00-00 00:00:00'),(113675,10,'H40.021 ','Open angle with borderline findings, high risk, right eye','Y','0000-00-00 00:00:00'),(113676,10,'H40.022 ','Open angle with borderline findings, high risk, left eye','Y','0000-00-00 00:00:00'),(113674,10,'H40.019 ','Open angle with borderline findings, low risk, unspecified eye','Y','0000-00-00 00:00:00'),(113673,10,'H40.013 ','Open angle with borderline findings, low risk, bilateral','Y','0000-00-00 00:00:00'),(113671,10,'H40.011 ','Open angle with borderline findings, low risk, right eye','Y','0000-00-00 00:00:00'),(113672,10,'H40.012 ','Open angle with borderline findings, low risk, left eye','Y','0000-00-00 00:00:00'),(113669,10,'H40.003 ','Preglaucoma, unspecified, bilateral','Y','0000-00-00 00:00:00'),(113670,10,'H40.009 ','Preglaucoma, unspecified, unspecified eye','Y','0000-00-00 00:00:00'),(113667,10,'H40.001 ','Preglaucoma, unspecified, right eye','Y','0000-00-00 00:00:00'),(113668,10,'H40.002 ','Preglaucoma, unspecified, left eye','Y','0000-00-00 00:00:00'),(113666,10,'H36.89 ','Other retinal disorders in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(113664,10,'H36.823 ','Proliferative sickle-cell retinopathy, bilateral','Y','0000-00-00 00:00:00'),(113665,10,'H36.829 ','Proliferative sickle-cell retinopathy, unspecified eye','Y','0000-00-00 00:00:00'),(113663,10,'H36.822 ','Proliferative sickle-cell retinopathy, left eye','Y','0000-00-00 00:00:00'),(113661,10,'H36.819 ','Nonproliferative sickle-cell retinopathy, unspecified eye','Y','0000-00-00 00:00:00'),(113662,10,'H36.821 ','Proliferative sickle-cell retinopathy, right eye','Y','0000-00-00 00:00:00'),(113660,10,'H36.813 ','Nonproliferative sickle-cell retinopathy, bilateral','Y','0000-00-00 00:00:00'),(113658,10,'H36.811 ','Nonproliferative sickle-cell retinopathy, right eye','Y','0000-00-00 00:00:00'),(113659,10,'H36.812 ','Nonproliferative sickle-cell retinopathy, left eye','Y','0000-00-00 00:00:00'),(113656,10,'H35.89 ','Other specified retinal disorders','Y','0000-00-00 00:00:00'),(113657,10,'H35.9 ','Unspecified retinal disorder','Y','0000-00-00 00:00:00'),(113654,10,'H35.81 ','Retinal edema','Y','0000-00-00 00:00:00'),(113655,10,'H35.82 ','Retinal ischemia','Y','0000-00-00 00:00:00'),(113653,10,'H35.739 ','Hemorrhagic detachment of retinal pigment epithelium, unspecified eye','Y','0000-00-00 00:00:00'),(113652,10,'H35.733 ','Hemorrhagic detachment of retinal pigment epithelium, bilateral','Y','0000-00-00 00:00:00'),(113651,10,'H35.732 ','Hemorrhagic detachment of retinal pigment epithelium, left eye','Y','0000-00-00 00:00:00'),(113650,10,'H35.731 ','Hemorrhagic detachment of retinal pigment epithelium, right eye','Y','0000-00-00 00:00:00'),(113648,10,'H35.723 ','Serous detachment of retinal pigment epithelium, bilateral','Y','0000-00-00 00:00:00'),(113649,10,'H35.729 ','Serous detachment of retinal pigment epithelium, unspecified eye','Y','0000-00-00 00:00:00'),(113647,10,'H35.722 ','Serous detachment of retinal pigment epithelium, left eye','Y','0000-00-00 00:00:00'),(113645,10,'H35.719 ','Central serous chorioretinopathy, unspecified eye','Y','0000-00-00 00:00:00'),(113646,10,'H35.721 ','Serous detachment of retinal pigment epithelium, right eye','Y','0000-00-00 00:00:00'),(113644,10,'H35.713 ','Central serous chorioretinopathy, bilateral','Y','0000-00-00 00:00:00'),(113642,10,'H35.711 ','Central serous chorioretinopathy, right eye','Y','0000-00-00 00:00:00'),(113643,10,'H35.712 ','Central serous chorioretinopathy, left eye','Y','0000-00-00 00:00:00'),(113641,10,'H35.70 ','Unspecified separation of retinal layers','Y','0000-00-00 00:00:00'),(113639,10,'H35.62 ','Retinal hemorrhage, left eye','Y','0000-00-00 00:00:00'),(113640,10,'H35.63 ','Retinal hemorrhage, bilateral','Y','0000-00-00 00:00:00'),(113637,10,'H35.60 ','Retinal hemorrhage, unspecified eye','Y','0000-00-00 00:00:00'),(113638,10,'H35.61 ','Retinal hemorrhage, right eye','Y','0000-00-00 00:00:00'),(113636,10,'H35.54 ','Dystrophies primarily involving the retinal pigment epithelium','Y','0000-00-00 00:00:00'),(113635,10,'H35.53 ','Other dystrophies primarily involving the sensory retina','Y','0000-00-00 00:00:00'),(113633,10,'H35.51 ','Vitreoretinal dystrophy','Y','0000-00-00 00:00:00'),(113634,10,'H35.52 ','Pigmentary retinal dystrophy','Y','0000-00-00 00:00:00'),(113632,10,'H35.50 ','Unspecified hereditary retinal dystrophy','Y','0000-00-00 00:00:00'),(113631,10,'H35.469 ','Secondary vitreoretinal degeneration, unspecified eye','Y','0000-00-00 00:00:00'),(113630,10,'H35.463 ','Secondary vitreoretinal degeneration, bilateral','Y','0000-00-00 00:00:00'),(113628,10,'H35.461 ','Secondary vitreoretinal degeneration, right eye','Y','0000-00-00 00:00:00'),(113629,10,'H35.462 ','Secondary vitreoretinal degeneration, left eye','Y','0000-00-00 00:00:00'),(113627,10,'H35.459 ','Secondary pigmentary degeneration, unspecified eye','Y','0000-00-00 00:00:00'),(113626,10,'H35.453 ','Secondary pigmentary degeneration, bilateral','Y','0000-00-00 00:00:00'),(113625,10,'H35.452 ','Secondary pigmentary degeneration, left eye','Y','0000-00-00 00:00:00'),(113624,10,'H35.451 ','Secondary pigmentary degeneration, right eye','Y','0000-00-00 00:00:00'),(113623,10,'H35.449 ','Age-related reticular degeneration of retina, unspecified eye','Y','0000-00-00 00:00:00'),(113621,10,'H35.442 ','Age-related reticular degeneration of retina, left eye','Y','0000-00-00 00:00:00'),(113622,10,'H35.443 ','Age-related reticular degeneration of retina, bilateral','Y','0000-00-00 00:00:00'),(113620,10,'H35.441 ','Age-related reticular degeneration of retina, right eye','Y','0000-00-00 00:00:00'),(113619,10,'H35.439 ','Paving stone degeneration of retina, unspecified eye','Y','0000-00-00 00:00:00'),(113618,10,'H35.433 ','Paving stone degeneration of retina, bilateral','Y','0000-00-00 00:00:00'),(113617,10,'H35.432 ','Paving stone degeneration of retina, left eye','Y','0000-00-00 00:00:00'),(113616,10,'H35.431 ','Paving stone degeneration of retina, right eye','Y','0000-00-00 00:00:00'),(113614,10,'H35.423 ','Microcystoid degeneration of retina, bilateral','Y','0000-00-00 00:00:00'),(113615,10,'H35.429 ','Microcystoid degeneration of retina, unspecified eye','Y','0000-00-00 00:00:00'),(113613,10,'H35.422 ','Microcystoid degeneration of retina, left eye','Y','0000-00-00 00:00:00'),(113612,10,'H35.421 ','Microcystoid degeneration of retina, right eye','Y','0000-00-00 00:00:00'),(113611,10,'H35.419 ','Lattice degeneration of retina, unspecified eye','Y','0000-00-00 00:00:00'),(113610,10,'H35.413 ','Lattice degeneration of retina, bilateral','Y','0000-00-00 00:00:00'),(113608,10,'H35.411 ','Lattice degeneration of retina, right eye','Y','0000-00-00 00:00:00'),(113609,10,'H35.412 ','Lattice degeneration of retina, left eye','Y','0000-00-00 00:00:00'),(113607,10,'H35.40 ','Unspecified peripheral retinal degeneration','Y','0000-00-00 00:00:00'),(113605,10,'H35.383 ','Toxic maculopathy, bilateral','Y','0000-00-00 00:00:00'),(113606,10,'H35.389 ','Toxic maculopathy, unspecified eye','Y','0000-00-00 00:00:00'),(113603,10,'H35.381 ','Toxic maculopathy, right eye','Y','0000-00-00 00:00:00'),(113604,10,'H35.382 ','Toxic maculopathy, left eye','Y','0000-00-00 00:00:00'),(113601,10,'H35.373 ','Puckering of macula, bilateral','Y','0000-00-00 00:00:00'),(113602,10,'H35.379 ','Puckering of macula, unspecified eye','Y','0000-00-00 00:00:00'),(113600,10,'H35.372 ','Puckering of macula, left eye','Y','0000-00-00 00:00:00'),(113598,10,'H35.369 ','Drusen (degenerative) of macula, unspecified eye','Y','0000-00-00 00:00:00'),(113599,10,'H35.371 ','Puckering of macula, right eye','Y','0000-00-00 00:00:00'),(113597,10,'H35.363 ','Drusen (degenerative) of macula, bilateral','Y','0000-00-00 00:00:00'),(113595,10,'H35.361 ','Drusen (degenerative) of macula, right eye','Y','0000-00-00 00:00:00'),(113596,10,'H35.362 ','Drusen (degenerative) of macula, left eye','Y','0000-00-00 00:00:00'),(113594,10,'H35.359 ','Cystoid macular degeneration, unspecified eye','Y','0000-00-00 00:00:00'),(113593,10,'H35.353 ','Cystoid macular degeneration, bilateral','Y','0000-00-00 00:00:00'),(113591,10,'H35.351 ','Cystoid macular degeneration, right eye','Y','0000-00-00 00:00:00'),(113592,10,'H35.352 ','Cystoid macular degeneration, left eye','Y','0000-00-00 00:00:00'),(113590,10,'H35.349 ','Macular cyst, hole, or pseudohole, unspecified eye','Y','0000-00-00 00:00:00'),(113588,10,'H35.342 ','Macular cyst, hole, or pseudohole, left eye','Y','0000-00-00 00:00:00'),(113589,10,'H35.343 ','Macular cyst, hole, or pseudohole, bilateral','Y','0000-00-00 00:00:00'),(113587,10,'H35.341 ','Macular cyst, hole, or pseudohole, right eye','Y','0000-00-00 00:00:00'),(113586,10,'H35.33 ','Angioid streaks of macula','Y','0000-00-00 00:00:00'),(113585,10,'H35.3293 ','Exudative age-related macular degeneration, unspecified eye, with inactive scar','Y','0000-00-00 00:00:00'),(113584,10,'H35.3292 ','Exudative age-related macular degeneration, unspecified eye, with inactive choroidal neovascularization','Y','0000-00-00 00:00:00'),(113583,10,'H35.3291 ','Exudative age-related macular degeneration, unspecified eye, with active choroidal neovascularization','Y','0000-00-00 00:00:00'),(113582,10,'H35.3290 ','Exudative age-related macular degeneration, unspecified eye, stage unspecified','Y','0000-00-00 00:00:00'),(113581,10,'H35.3233 ','Exudative age-related macular degeneration, bilateral, with inactive scar','Y','0000-00-00 00:00:00'),(113580,10,'H35.3232 ','Exudative age-related macular degeneration, bilateral, with inactive choroidal neovascularization','Y','0000-00-00 00:00:00'),(113579,10,'H35.3231 ','Exudative age-related macular degeneration, bilateral, with active choroidal neovascularization','Y','0000-00-00 00:00:00'),(113578,10,'H35.3230 ','Exudative age-related macular degeneration, bilateral, stage unspecified','Y','0000-00-00 00:00:00'),(113577,10,'H35.3223 ','Exudative age-related macular degeneration, left eye, with inactive scar','Y','0000-00-00 00:00:00'),(113576,10,'H35.3222 ','Exudative age-related macular degeneration, left eye, with inactive choroidal neovascularization','Y','0000-00-00 00:00:00'),(113575,10,'H35.3221 ','Exudative age-related macular degeneration, left eye, with active choroidal neovascularization','Y','0000-00-00 00:00:00'),(113574,10,'H35.3220 ','Exudative age-related macular degeneration, left eye, stage unspecified','Y','0000-00-00 00:00:00'),(113573,10,'H35.3213 ','Exudative age-related macular degeneration, right eye, with inactive scar','Y','0000-00-00 00:00:00'),(113572,10,'H35.3212 ','Exudative age-related macular degeneration, right eye, with inactive choroidal neovascularization','Y','0000-00-00 00:00:00'),(113571,10,'H35.3211 ','Exudative age-related macular degeneration, right eye, with active choroidal neovascularization','Y','0000-00-00 00:00:00'),(113570,10,'H35.3210 ','Exudative age-related macular degeneration, right eye, stage unspecified','Y','0000-00-00 00:00:00'),(113569,10,'H35.3194 ','Nonexudative age-related macular degeneration, unspecified eye, advanced atrophic with subfoveal involvement','Y','0000-00-00 00:00:00'),(113568,10,'H35.3193 ','Nonexudative age-related macular degeneration, unspecified eye, advanced atrophic without subfoveal involvement','Y','0000-00-00 00:00:00'),(113567,10,'H35.3192 ','Nonexudative age-related macular degeneration, unspecified eye, intermediate dry stage','Y','0000-00-00 00:00:00'),(113566,10,'H35.3191 ','Nonexudative age-related macular degeneration, unspecified eye, early dry stage','Y','0000-00-00 00:00:00'),(113565,10,'H35.3190 ','Nonexudative age-related macular degeneration, unspecified eye, stage unspecified','Y','0000-00-00 00:00:00'),(113564,10,'H35.3134 ','Nonexudative age-related macular degeneration, bilateral, advanced atrophic with subfoveal involvement','Y','0000-00-00 00:00:00'),(113563,10,'H35.3133 ','Nonexudative age-related macular degeneration, bilateral, advanced atrophic without subfoveal involvement','Y','0000-00-00 00:00:00'),(113562,10,'H35.3132 ','Nonexudative age-related macular degeneration, bilateral, intermediate dry stage','Y','0000-00-00 00:00:00'),(113561,10,'H35.3131 ','Nonexudative age-related macular degeneration, bilateral, early dry stage','Y','0000-00-00 00:00:00'),(113560,10,'H35.3130 ','Nonexudative age-related macular degeneration, bilateral, stage unspecified','Y','0000-00-00 00:00:00'),(113559,10,'H35.3124 ','Nonexudative age-related macular degeneration, left eye, advanced atrophic with subfoveal involvement','Y','0000-00-00 00:00:00'),(113558,10,'H35.3123 ','Nonexudative age-related macular degeneration, left eye, advanced atrophic without subfoveal involvement','Y','0000-00-00 00:00:00'),(113557,10,'H35.3122 ','Nonexudative age-related macular degeneration, left eye, intermediate dry stage','Y','0000-00-00 00:00:00'),(113556,10,'H35.3121 ','Nonexudative age-related macular degeneration, left eye, early dry stage','Y','0000-00-00 00:00:00'),(113555,10,'H35.3120 ','Nonexudative age-related macular degeneration, left eye, stage unspecified','Y','0000-00-00 00:00:00'),(113554,10,'H35.3114 ','Nonexudative age-related macular degeneration, right eye, advanced atrophic with subfoveal involvement','Y','0000-00-00 00:00:00'),(113553,10,'H35.3113 ','Nonexudative age-related macular degeneration, right eye, advanced atrophic without subfoveal involvement','Y','0000-00-00 00:00:00'),(113552,10,'H35.3112 ','Nonexudative age-related macular degeneration, right eye, intermediate dry stage','Y','0000-00-00 00:00:00'),(113551,10,'H35.3111 ','Nonexudative age-related macular degeneration, right eye, early dry stage','Y','0000-00-00 00:00:00'),(113549,10,'H35.30 ','Unspecified macular degeneration','Y','0000-00-00 00:00:00'),(113550,10,'H35.3110 ','Nonexudative age-related macular degeneration, right eye, stage unspecified','Y','0000-00-00 00:00:00'),(113548,10,'H35.23 ','Other non-diabetic proliferative retinopathy, bilateral','Y','0000-00-00 00:00:00'),(113547,10,'H35.22 ','Other non-diabetic proliferative retinopathy, left eye','Y','0000-00-00 00:00:00'),(113546,10,'H35.21 ','Other non-diabetic proliferative retinopathy, right eye','Y','0000-00-00 00:00:00'),(113544,10,'H35.179 ','Retrolental fibroplasia, unspecified eye','Y','0000-00-00 00:00:00'),(113545,10,'H35.20 ','Other non-diabetic proliferative retinopathy, unspecified eye','Y','0000-00-00 00:00:00'),(113543,10,'H35.173 ','Retrolental fibroplasia, bilateral','Y','0000-00-00 00:00:00'),(113541,10,'H35.171 ','Retrolental fibroplasia, right eye','Y','0000-00-00 00:00:00'),(113542,10,'H35.172 ','Retrolental fibroplasia, left eye','Y','0000-00-00 00:00:00'),(113540,10,'H35.169 ','Retinopathy of prematurity, stage 5, unspecified eye','Y','0000-00-00 00:00:00'),(113539,10,'H35.163 ','Retinopathy of prematurity, stage 5, bilateral','Y','0000-00-00 00:00:00'),(113537,10,'H35.161 ','Retinopathy of prematurity, stage 5, right eye','Y','0000-00-00 00:00:00'),(113538,10,'H35.162 ','Retinopathy of prematurity, stage 5, left eye','Y','0000-00-00 00:00:00'),(113536,10,'H35.159 ','Retinopathy of prematurity, stage 4, unspecified eye','Y','0000-00-00 00:00:00'),(113535,10,'H35.153 ','Retinopathy of prematurity, stage 4, bilateral','Y','0000-00-00 00:00:00'),(113533,10,'H35.151 ','Retinopathy of prematurity, stage 4, right eye','Y','0000-00-00 00:00:00'),(113534,10,'H35.152 ','Retinopathy of prematurity, stage 4, left eye','Y','0000-00-00 00:00:00'),(113532,10,'H35.149 ','Retinopathy of prematurity, stage 3, unspecified eye','Y','0000-00-00 00:00:00'),(113531,10,'H35.143 ','Retinopathy of prematurity, stage 3, bilateral','Y','0000-00-00 00:00:00'),(113529,10,'H35.141 ','Retinopathy of prematurity, stage 3, right eye','Y','0000-00-00 00:00:00'),(113530,10,'H35.142 ','Retinopathy of prematurity, stage 3, left eye','Y','0000-00-00 00:00:00'),(113528,10,'H35.139 ','Retinopathy of prematurity, stage 2, unspecified eye','Y','0000-00-00 00:00:00'),(113526,10,'H35.132 ','Retinopathy of prematurity, stage 2, left eye','Y','0000-00-00 00:00:00'),(113527,10,'H35.133 ','Retinopathy of prematurity, stage 2, bilateral','Y','0000-00-00 00:00:00'),(113525,10,'H35.131 ','Retinopathy of prematurity, stage 2, right eye','Y','0000-00-00 00:00:00'),(113524,10,'H35.129 ','Retinopathy of prematurity, stage 1, unspecified eye','Y','0000-00-00 00:00:00'),(113522,10,'H35.122 ','Retinopathy of prematurity, stage 1, left eye','Y','0000-00-00 00:00:00'),(113523,10,'H35.123 ','Retinopathy of prematurity, stage 1, bilateral','Y','0000-00-00 00:00:00'),(113521,10,'H35.121 ','Retinopathy of prematurity, stage 1, right eye','Y','0000-00-00 00:00:00'),(113520,10,'H35.119 ','Retinopathy of prematurity, stage 0, unspecified eye','Y','0000-00-00 00:00:00'),(113518,10,'H35.112 ','Retinopathy of prematurity, stage 0, left eye','Y','0000-00-00 00:00:00'),(113519,10,'H35.113 ','Retinopathy of prematurity, stage 0, bilateral','Y','0000-00-00 00:00:00'),(113517,10,'H35.111 ','Retinopathy of prematurity, stage 0, right eye','Y','0000-00-00 00:00:00'),(113516,10,'H35.109 ','Retinopathy of prematurity, unspecified, unspecified eye','Y','0000-00-00 00:00:00'),(113515,10,'H35.103 ','Retinopathy of prematurity, unspecified, bilateral','Y','0000-00-00 00:00:00'),(113513,10,'H35.101 ','Retinopathy of prematurity, unspecified, right eye','Y','0000-00-00 00:00:00'),(113514,10,'H35.102 ','Retinopathy of prematurity, unspecified, left eye','Y','0000-00-00 00:00:00'),(113512,10,'H35.09 ','Other intraretinal microvascular abnormalities','Y','0000-00-00 00:00:00'),(113510,10,'H35.073 ','Retinal telangiectasis, bilateral','Y','0000-00-00 00:00:00'),(113511,10,'H35.079 ','Retinal telangiectasis, unspecified eye','Y','0000-00-00 00:00:00'),(113508,10,'H35.071 ','Retinal telangiectasis, right eye','Y','0000-00-00 00:00:00'),(113509,10,'H35.072 ','Retinal telangiectasis, left eye','Y','0000-00-00 00:00:00'),(113506,10,'H35.063 ','Retinal vasculitis, bilateral','Y','0000-00-00 00:00:00'),(113507,10,'H35.069 ','Retinal vasculitis, unspecified eye','Y','0000-00-00 00:00:00'),(113505,10,'H35.062 ','Retinal vasculitis, left eye','Y','0000-00-00 00:00:00'),(113503,10,'H35.059 ','Retinal neovascularization, unspecified, unspecified eye','Y','0000-00-00 00:00:00'),(113504,10,'H35.061 ','Retinal vasculitis, right eye','Y','0000-00-00 00:00:00'),(113502,10,'H35.053 ','Retinal neovascularization, unspecified, bilateral','Y','0000-00-00 00:00:00'),(113500,10,'H35.051 ','Retinal neovascularization, unspecified, right eye','Y','0000-00-00 00:00:00'),(113501,10,'H35.052 ','Retinal neovascularization, unspecified, left eye','Y','0000-00-00 00:00:00'),(113499,10,'H35.049 ','Retinal micro-aneurysms, unspecified, unspecified eye','Y','0000-00-00 00:00:00'),(113497,10,'H35.042 ','Retinal micro-aneurysms, unspecified, left eye','Y','0000-00-00 00:00:00'),(113498,10,'H35.043 ','Retinal micro-aneurysms, unspecified, bilateral','Y','0000-00-00 00:00:00'),(113496,10,'H35.041 ','Retinal micro-aneurysms, unspecified, right eye','Y','0000-00-00 00:00:00'),(113494,10,'H35.033 ','Hypertensive retinopathy, bilateral','Y','0000-00-00 00:00:00'),(113495,10,'H35.039 ','Hypertensive retinopathy, unspecified eye','Y','0000-00-00 00:00:00'),(113493,10,'H35.032 ','Hypertensive retinopathy, left eye','Y','0000-00-00 00:00:00'),(113491,10,'H35.029 ','Exudative retinopathy, unspecified eye','Y','0000-00-00 00:00:00'),(113492,10,'H35.031 ','Hypertensive retinopathy, right eye','Y','0000-00-00 00:00:00'),(113489,10,'H35.022 ','Exudative retinopathy, left eye','Y','0000-00-00 00:00:00'),(113490,10,'H35.023 ','Exudative retinopathy, bilateral','Y','0000-00-00 00:00:00'),(113488,10,'H35.021 ','Exudative retinopathy, right eye','Y','0000-00-00 00:00:00'),(113487,10,'H35.019 ','Changes in retinal vascular appearance, unspecified eye','Y','0000-00-00 00:00:00'),(113485,10,'H35.012 ','Changes in retinal vascular appearance, left eye','Y','0000-00-00 00:00:00'),(113486,10,'H35.013 ','Changes in retinal vascular appearance, bilateral','Y','0000-00-00 00:00:00'),(113484,10,'H35.011 ','Changes in retinal vascular appearance, right eye','Y','0000-00-00 00:00:00'),(113482,10,'H34.9 ','Unspecified retinal vascular occlusion','Y','0000-00-00 00:00:00'),(113483,10,'H35.00 ','Unspecified background retinopathy','Y','0000-00-00 00:00:00'),(113481,10,'H34.8392 ','Tributary (branch) retinal vein occlusion, unspecified eye, stable','Y','0000-00-00 00:00:00'),(113480,10,'H34.8391 ','Tributary (branch) retinal vein occlusion, unspecified eye, with retinal neovascularization','Y','0000-00-00 00:00:00'),(113479,10,'H34.8390 ','Tributary (branch) retinal vein occlusion, unspecified eye, with macular edema','Y','0000-00-00 00:00:00'),(113478,10,'H34.8332 ','Tributary (branch) retinal vein occlusion, bilateral, stable','Y','0000-00-00 00:00:00'),(113477,10,'H34.8331 ','Tributary (branch) retinal vein occlusion, bilateral, with retinal neovascularization','Y','0000-00-00 00:00:00'),(113475,10,'H34.8322 ','Tributary (branch) retinal vein occlusion, left eye, stable','Y','0000-00-00 00:00:00'),(113476,10,'H34.8330 ','Tributary (branch) retinal vein occlusion, bilateral, with macular edema','Y','0000-00-00 00:00:00'),(113474,10,'H34.8321 ','Tributary (branch) retinal vein occlusion, left eye, with retinal neovascularization','Y','0000-00-00 00:00:00'),(113473,10,'H34.8320 ','Tributary (branch) retinal vein occlusion, left eye, with macular edema','Y','0000-00-00 00:00:00'),(113472,10,'H34.8312 ','Tributary (branch) retinal vein occlusion, right eye, stable','Y','0000-00-00 00:00:00'),(113471,10,'H34.8311 ','Tributary (branch) retinal vein occlusion, right eye, with retinal neovascularization','Y','0000-00-00 00:00:00'),(113470,10,'H34.8310 ','Tributary (branch) retinal vein occlusion, right eye, with macular edema','Y','0000-00-00 00:00:00'),(113468,10,'H34.823 ','Venous engorgement, bilateral','Y','0000-00-00 00:00:00'),(113469,10,'H34.829 ','Venous engorgement, unspecified eye','Y','0000-00-00 00:00:00'),(113466,10,'H34.821 ','Venous engorgement, right eye','Y','0000-00-00 00:00:00'),(113467,10,'H34.822 ','Venous engorgement, left eye','Y','0000-00-00 00:00:00'),(113465,10,'H34.8192 ','Central retinal vein occlusion, unspecified eye, stable','Y','0000-00-00 00:00:00'),(113464,10,'H34.8191 ','Central retinal vein occlusion, unspecified eye, with retinal neovascularization','Y','0000-00-00 00:00:00'),(113462,10,'H34.8132 ','Central retinal vein occlusion, bilateral, stable','Y','0000-00-00 00:00:00'),(113463,10,'H34.8190 ','Central retinal vein occlusion, unspecified eye, with macular edema','Y','0000-00-00 00:00:00'),(113461,10,'H34.8131 ','Central retinal vein occlusion, bilateral, with retinal neovascularization','Y','0000-00-00 00:00:00'),(113460,10,'H34.8130 ','Central retinal vein occlusion, bilateral, with macular edema','Y','0000-00-00 00:00:00'),(113459,10,'H34.8122 ','Central retinal vein occlusion, left eye, stable','Y','0000-00-00 00:00:00'),(113457,10,'H34.8120 ','Central retinal vein occlusion, left eye, with macular edema','Y','0000-00-00 00:00:00'),(113458,10,'H34.8121 ','Central retinal vein occlusion, left eye, with retinal neovascularization','Y','0000-00-00 00:00:00'),(113456,10,'H34.8112 ','Central retinal vein occlusion, right eye, stable','Y','0000-00-00 00:00:00'),(113455,10,'H34.8111 ','Central retinal vein occlusion, right eye, with retinal neovascularization','Y','0000-00-00 00:00:00'),(113454,10,'H34.8110 ','Central retinal vein occlusion, right eye, with macular edema','Y','0000-00-00 00:00:00'),(113452,10,'H34.233 ','Retinal artery branch occlusion, bilateral','Y','0000-00-00 00:00:00'),(113453,10,'H34.239 ','Retinal artery branch occlusion, unspecified eye','Y','0000-00-00 00:00:00'),(113451,10,'H34.232 ','Retinal artery branch occlusion, left eye','Y','0000-00-00 00:00:00'),(113449,10,'H34.219 ','Partial retinal artery occlusion, unspecified eye','Y','0000-00-00 00:00:00'),(113450,10,'H34.231 ','Retinal artery branch occlusion, right eye','Y','0000-00-00 00:00:00'),(113448,10,'H34.213 ','Partial retinal artery occlusion, bilateral','Y','0000-00-00 00:00:00'),(113446,10,'H34.211 ','Partial retinal artery occlusion, right eye','Y','0000-00-00 00:00:00'),(113447,10,'H34.212 ','Partial retinal artery occlusion, left eye','Y','0000-00-00 00:00:00'),(113445,10,'H34.13 ','Central retinal artery occlusion, bilateral','Y','0000-00-00 00:00:00'),(113443,10,'H34.11 ','Central retinal artery occlusion, right eye','Y','0000-00-00 00:00:00'),(113444,10,'H34.12 ','Central retinal artery occlusion, left eye','Y','0000-00-00 00:00:00'),(113442,10,'H34.10 ','Central retinal artery occlusion, unspecified eye','Y','0000-00-00 00:00:00'),(113440,10,'H34.02 ','Transient retinal artery occlusion, left eye','Y','0000-00-00 00:00:00'),(113441,10,'H34.03 ','Transient retinal artery occlusion, bilateral','Y','0000-00-00 00:00:00'),(113439,10,'H34.01 ','Transient retinal artery occlusion, right eye','Y','0000-00-00 00:00:00'),(113437,10,'H33.8 ','Other retinal detachments','Y','0000-00-00 00:00:00'),(113438,10,'H34.00 ','Transient retinal artery occlusion, unspecified eye','Y','0000-00-00 00:00:00'),(113436,10,'H33.43 ','Traction detachment of retina, bilateral','Y','0000-00-00 00:00:00'),(113434,10,'H33.41 ','Traction detachment of retina, right eye','Y','0000-00-00 00:00:00'),(113435,10,'H33.42 ','Traction detachment of retina, left eye','Y','0000-00-00 00:00:00'),(113433,10,'H33.40 ','Traction detachment of retina, unspecified eye','Y','0000-00-00 00:00:00'),(113432,10,'H33.339 ','Multiple defects of retina without detachment, unspecified eye','Y','0000-00-00 00:00:00'),(113431,10,'H33.333 ','Multiple defects of retina without detachment, bilateral','Y','0000-00-00 00:00:00'),(113429,10,'H33.331 ','Multiple defects of retina without detachment, right eye','Y','0000-00-00 00:00:00'),(113430,10,'H33.332 ','Multiple defects of retina without detachment, left eye','Y','0000-00-00 00:00:00'),(113427,10,'H33.323 ','Round hole, bilateral','Y','0000-00-00 00:00:00'),(113428,10,'H33.329 ','Round hole, unspecified eye','Y','0000-00-00 00:00:00'),(113425,10,'H33.321 ','Round hole, right eye','Y','0000-00-00 00:00:00'),(113426,10,'H33.322 ','Round hole, left eye','Y','0000-00-00 00:00:00'),(113424,10,'H33.319 ','Horseshoe tear of retina without detachment, unspecified eye','Y','0000-00-00 00:00:00'),(113423,10,'H33.313 ','Horseshoe tear of retina without detachment, bilateral','Y','0000-00-00 00:00:00'),(113421,10,'H33.311 ','Horseshoe tear of retina without detachment, right eye','Y','0000-00-00 00:00:00'),(113422,10,'H33.312 ','Horseshoe tear of retina without detachment, left eye','Y','0000-00-00 00:00:00'),(113420,10,'H33.309 ','Unspecified retinal break, unspecified eye','Y','0000-00-00 00:00:00'),(113418,10,'H33.302 ','Unspecified retinal break, left eye','Y','0000-00-00 00:00:00'),(113419,10,'H33.303 ','Unspecified retinal break, bilateral','Y','0000-00-00 00:00:00'),(113417,10,'H33.301 ','Unspecified retinal break, right eye','Y','0000-00-00 00:00:00'),(113415,10,'H33.22 ','Serous retinal detachment, left eye','Y','0000-00-00 00:00:00'),(113416,10,'H33.23 ','Serous retinal detachment, bilateral','Y','0000-00-00 00:00:00'),(113414,10,'H33.21 ','Serous retinal detachment, right eye','Y','0000-00-00 00:00:00'),(113413,10,'H33.20 ','Serous retinal detachment, unspecified eye','Y','0000-00-00 00:00:00'),(113412,10,'H33.199 ','Other retinoschisis and retinal cysts, unspecified eye','Y','0000-00-00 00:00:00'),(113410,10,'H33.192 ','Other retinoschisis and retinal cysts, left eye','Y','0000-00-00 00:00:00'),(113411,10,'H33.193 ','Other retinoschisis and retinal cysts, bilateral','Y','0000-00-00 00:00:00'),(113409,10,'H33.191 ','Other retinoschisis and retinal cysts, right eye','Y','0000-00-00 00:00:00'),(113407,10,'H33.123 ','Parasitic cyst of retina, bilateral','Y','0000-00-00 00:00:00'),(113408,10,'H33.129 ','Parasitic cyst of retina, unspecified eye','Y','0000-00-00 00:00:00'),(113406,10,'H33.122 ','Parasitic cyst of retina, left eye','Y','0000-00-00 00:00:00'),(113404,10,'H33.119 ','Cyst of ora serrata, unspecified eye','Y','0000-00-00 00:00:00'),(113405,10,'H33.121 ','Parasitic cyst of retina, right eye','Y','0000-00-00 00:00:00'),(113402,10,'H33.112 ','Cyst of ora serrata, left eye','Y','0000-00-00 00:00:00'),(113403,10,'H33.113 ','Cyst of ora serrata, bilateral','Y','0000-00-00 00:00:00'),(113401,10,'H33.111 ','Cyst of ora serrata, right eye','Y','0000-00-00 00:00:00'),(113399,10,'H33.103 ','Unspecified retinoschisis, bilateral','Y','0000-00-00 00:00:00'),(113400,10,'H33.109 ','Unspecified retinoschisis, unspecified eye','Y','0000-00-00 00:00:00'),(113398,10,'H33.102 ','Unspecified retinoschisis, left eye','Y','0000-00-00 00:00:00'),(113396,10,'H33.059 ','Total retinal detachment, unspecified eye','Y','0000-00-00 00:00:00'),(113397,10,'H33.101 ','Unspecified retinoschisis, right eye','Y','0000-00-00 00:00:00'),(113395,10,'H33.053 ','Total retinal detachment, bilateral','Y','0000-00-00 00:00:00'),(113393,10,'H33.051 ','Total retinal detachment, right eye','Y','0000-00-00 00:00:00'),(113394,10,'H33.052 ','Total retinal detachment, left eye','Y','0000-00-00 00:00:00'),(113392,10,'H33.049 ','Retinal detachment with retinal dialysis, unspecified eye','Y','0000-00-00 00:00:00'),(113391,10,'H33.043 ','Retinal detachment with retinal dialysis, bilateral','Y','0000-00-00 00:00:00'),(113389,10,'H33.041 ','Retinal detachment with retinal dialysis, right eye','Y','0000-00-00 00:00:00'),(113390,10,'H33.042 ','Retinal detachment with retinal dialysis, left eye','Y','0000-00-00 00:00:00'),(113388,10,'H33.039 ','Retinal detachment with giant retinal tear, unspecified eye','Y','0000-00-00 00:00:00'),(113387,10,'H33.033 ','Retinal detachment with giant retinal tear, bilateral','Y','0000-00-00 00:00:00'),(113385,10,'H33.031 ','Retinal detachment with giant retinal tear, right eye','Y','0000-00-00 00:00:00'),(113386,10,'H33.032 ','Retinal detachment with giant retinal tear, left eye','Y','0000-00-00 00:00:00'),(113384,10,'H33.029 ','Retinal detachment with multiple breaks, unspecified eye','Y','0000-00-00 00:00:00'),(113383,10,'H33.023 ','Retinal detachment with multiple breaks, bilateral','Y','0000-00-00 00:00:00'),(113381,10,'H33.021 ','Retinal detachment with multiple breaks, right eye','Y','0000-00-00 00:00:00'),(113382,10,'H33.022 ','Retinal detachment with multiple breaks, left eye','Y','0000-00-00 00:00:00'),(113380,10,'H33.019 ','Retinal detachment with single break, unspecified eye','Y','0000-00-00 00:00:00'),(113379,10,'H33.013 ','Retinal detachment with single break, bilateral','Y','0000-00-00 00:00:00'),(113377,10,'H33.011 ','Retinal detachment with single break, right eye','Y','0000-00-00 00:00:00'),(113378,10,'H33.012 ','Retinal detachment with single break, left eye','Y','0000-00-00 00:00:00'),(113376,10,'H33.009 ','Unspecified retinal detachment with retinal break, unspecified eye','Y','0000-00-00 00:00:00'),(113375,10,'H33.003 ','Unspecified retinal detachment with retinal break, bilateral','Y','0000-00-00 00:00:00'),(113374,10,'H33.002 ','Unspecified retinal detachment with retinal break, left eye','Y','0000-00-00 00:00:00'),(113373,10,'H33.001 ','Unspecified retinal detachment with retinal break, right eye','Y','0000-00-00 00:00:00'),(113372,10,'H32','Chorioretinal disorders in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(113370,10,'H31.8 ','Other specified disorders of choroid','Y','0000-00-00 00:00:00'),(113371,10,'H31.9 ','Unspecified disorder of choroid','Y','0000-00-00 00:00:00'),(113368,10,'H31.423 ','Serous choroidal detachment, bilateral','Y','0000-00-00 00:00:00'),(113369,10,'H31.429 ','Serous choroidal detachment, unspecified eye','Y','0000-00-00 00:00:00'),(113367,10,'H31.422 ','Serous choroidal detachment, left eye','Y','0000-00-00 00:00:00'),(113365,10,'H31.419 ','Hemorrhagic choroidal detachment, unspecified eye','Y','0000-00-00 00:00:00'),(113366,10,'H31.421 ','Serous choroidal detachment, right eye','Y','0000-00-00 00:00:00'),(113364,10,'H31.413 ','Hemorrhagic choroidal detachment, bilateral','Y','0000-00-00 00:00:00'),(113363,10,'H31.412 ','Hemorrhagic choroidal detachment, left eye','Y','0000-00-00 00:00:00'),(113361,10,'H31.409 ','Unspecified choroidal detachment, unspecified eye','Y','0000-00-00 00:00:00'),(113362,10,'H31.411 ','Hemorrhagic choroidal detachment, right eye','Y','0000-00-00 00:00:00'),(113360,10,'H31.403 ','Unspecified choroidal detachment, bilateral','Y','0000-00-00 00:00:00'),(113359,10,'H31.402 ','Unspecified choroidal detachment, left eye','Y','0000-00-00 00:00:00'),(113357,10,'H31.329 ','Choroidal rupture, unspecified eye','Y','0000-00-00 00:00:00'),(113358,10,'H31.401 ','Unspecified choroidal detachment, right eye','Y','0000-00-00 00:00:00'),(113355,10,'H31.322 ','Choroidal rupture, left eye','Y','0000-00-00 00:00:00'),(113356,10,'H31.323 ','Choroidal rupture, bilateral','Y','0000-00-00 00:00:00'),(113354,10,'H31.321 ','Choroidal rupture, right eye','Y','0000-00-00 00:00:00'),(113352,10,'H31.313 ','Expulsive choroidal hemorrhage, bilateral','Y','0000-00-00 00:00:00'),(113353,10,'H31.319 ','Expulsive choroidal hemorrhage, unspecified eye','Y','0000-00-00 00:00:00'),(113351,10,'H31.312 ','Expulsive choroidal hemorrhage, left eye','Y','0000-00-00 00:00:00'),(113349,10,'H31.309 ','Unspecified choroidal hemorrhage, unspecified eye','Y','0000-00-00 00:00:00'),(113350,10,'H31.311 ','Expulsive choroidal hemorrhage, right eye','Y','0000-00-00 00:00:00'),(113348,10,'H31.303 ','Unspecified choroidal hemorrhage, bilateral','Y','0000-00-00 00:00:00'),(113346,10,'H31.301 ','Unspecified choroidal hemorrhage, right eye','Y','0000-00-00 00:00:00'),(113347,10,'H31.302 ','Unspecified choroidal hemorrhage, left eye','Y','0000-00-00 00:00:00'),(113345,10,'H31.29 ','Other hereditary choroidal dystrophy','Y','0000-00-00 00:00:00'),(113344,10,'H31.23 ','Gyrate atrophy, choroid','Y','0000-00-00 00:00:00'),(113342,10,'H31.21 ','Choroideremia','Y','0000-00-00 00:00:00'),(113343,10,'H31.22 ','Choroidal dystrophy (central areolar) (generalized) (peripapillary)','Y','0000-00-00 00:00:00'),(113341,10,'H31.20 ','Hereditary choroidal dystrophy, unspecified','Y','0000-00-00 00:00:00'),(113340,10,'H31.129 ','Diffuse secondary atrophy of choroid, unspecified eye','Y','0000-00-00 00:00:00'),(113338,10,'H31.122 ','Diffuse secondary atrophy of choroid, left eye','Y','0000-00-00 00:00:00'),(113339,10,'H31.123 ','Diffuse secondary atrophy of choroid, bilateral','Y','0000-00-00 00:00:00'),(113337,10,'H31.121 ','Diffuse secondary atrophy of choroid, right eye','Y','0000-00-00 00:00:00'),(113336,10,'H31.119 ','Age-related choroidal atrophy, unspecified eye','Y','0000-00-00 00:00:00'),(113334,10,'H31.112 ','Age-related choroidal atrophy, left eye','Y','0000-00-00 00:00:00'),(113335,10,'H31.113 ','Age-related choroidal atrophy, bilateral','Y','0000-00-00 00:00:00'),(113333,10,'H31.111 ','Age-related choroidal atrophy, right eye','Y','0000-00-00 00:00:00'),(113332,10,'H31.109 ','Choroidal degeneration, unspecified, unspecified eye','Y','0000-00-00 00:00:00'),(113331,10,'H31.103 ','Choroidal degeneration, unspecified, bilateral','Y','0000-00-00 00:00:00'),(113329,10,'H31.101 ','Choroidal degeneration, unspecified, right eye','Y','0000-00-00 00:00:00'),(113330,10,'H31.102 ','Choroidal degeneration, unspecified, left eye','Y','0000-00-00 00:00:00'),(113328,10,'H31.099 ','Other chorioretinal scars, unspecified eye','Y','0000-00-00 00:00:00'),(113326,10,'H31.092 ','Other chorioretinal scars, left eye','Y','0000-00-00 00:00:00'),(113327,10,'H31.093 ','Other chorioretinal scars, bilateral','Y','0000-00-00 00:00:00'),(113325,10,'H31.091 ','Other chorioretinal scars, right eye','Y','0000-00-00 00:00:00'),(113323,10,'H31.023 ','Solar retinopathy, bilateral','Y','0000-00-00 00:00:00'),(113324,10,'H31.029 ','Solar retinopathy, unspecified eye','Y','0000-00-00 00:00:00'),(113321,10,'H31.021 ','Solar retinopathy, right eye','Y','0000-00-00 00:00:00'),(113322,10,'H31.022 ','Solar retinopathy, left eye','Y','0000-00-00 00:00:00'),(113320,10,'H31.019 ','Macula scars of posterior pole (postinflammatory) (post-traumatic), unspecified eye','Y','0000-00-00 00:00:00'),(113319,10,'H31.013 ','Macula scars of posterior pole (postinflammatory) (post-traumatic), bilateral','Y','0000-00-00 00:00:00'),(113318,10,'H31.012 ','Macula scars of posterior pole (postinflammatory) (post-traumatic), left eye','Y','0000-00-00 00:00:00'),(113317,10,'H31.011 ','Macula scars of posterior pole (postinflammatory) (post-traumatic), right eye','Y','0000-00-00 00:00:00'),(113315,10,'H31.003 ','Unspecified chorioretinal scars, bilateral','Y','0000-00-00 00:00:00'),(113316,10,'H31.009 ','Unspecified chorioretinal scars, unspecified eye','Y','0000-00-00 00:00:00'),(113314,10,'H31.002 ','Unspecified chorioretinal scars, left eye','Y','0000-00-00 00:00:00'),(113313,10,'H31.001 ','Unspecified chorioretinal scars, right eye','Y','0000-00-00 00:00:00'),(113311,10,'H30.92 ','Unspecified chorioretinal inflammation, left eye','Y','0000-00-00 00:00:00'),(113312,10,'H30.93 ','Unspecified chorioretinal inflammation, bilateral','Y','0000-00-00 00:00:00'),(113310,10,'H30.91 ','Unspecified chorioretinal inflammation, right eye','Y','0000-00-00 00:00:00'),(113309,10,'H30.90 ','Unspecified chorioretinal inflammation, unspecified eye','Y','0000-00-00 00:00:00'),(113307,10,'H30.893 ','Other chorioretinal inflammations, bilateral','Y','0000-00-00 00:00:00'),(113308,10,'H30.899 ','Other chorioretinal inflammations, unspecified eye','Y','0000-00-00 00:00:00'),(113306,10,'H30.892 ','Other chorioretinal inflammations, left eye','Y','0000-00-00 00:00:00'),(113304,10,'H30.819 ','Harada\'s disease, unspecified eye','Y','0000-00-00 00:00:00'),(113305,10,'H30.891 ','Other chorioretinal inflammations, right eye','Y','0000-00-00 00:00:00'),(113302,10,'H30.812 ','Harada\'s disease, left eye','Y','0000-00-00 00:00:00'),(113303,10,'H30.813 ','Harada\'s disease, bilateral','Y','0000-00-00 00:00:00'),(113300,10,'H30.23 ','Posterior cyclitis, bilateral','Y','0000-00-00 00:00:00'),(113301,10,'H30.811 ','Harada\'s disease, right eye','Y','0000-00-00 00:00:00'),(113299,10,'H30.22 ','Posterior cyclitis, left eye','Y','0000-00-00 00:00:00'),(113297,10,'H30.20 ','Posterior cyclitis, unspecified eye','Y','0000-00-00 00:00:00'),(113298,10,'H30.21 ','Posterior cyclitis, right eye','Y','0000-00-00 00:00:00'),(113296,10,'H30.149 ','Acute posterior multifocal placoid pigment epitheliopathy, unspecified eye','Y','0000-00-00 00:00:00'),(113295,10,'H30.143 ','Acute posterior multifocal placoid pigment epitheliopathy, bilateral','Y','0000-00-00 00:00:00'),(113294,10,'H30.142 ','Acute posterior multifocal placoid pigment epitheliopathy, left eye','Y','0000-00-00 00:00:00'),(113293,10,'H30.141 ','Acute posterior multifocal placoid pigment epitheliopathy, right eye','Y','0000-00-00 00:00:00'),(113292,10,'H30.139 ','Disseminated chorioretinal inflammation, generalized, unspecified eye','Y','0000-00-00 00:00:00'),(113291,10,'H30.133 ','Disseminated chorioretinal inflammation, generalized, bilateral','Y','0000-00-00 00:00:00'),(113290,10,'H30.132 ','Disseminated chorioretinal inflammation, generalized, left eye','Y','0000-00-00 00:00:00'),(113289,10,'H30.131 ','Disseminated chorioretinal inflammation, generalized, right eye','Y','0000-00-00 00:00:00'),(113288,10,'H30.129 ','Disseminated chorioretinal inflammation, peripheral, unspecified eye','Y','0000-00-00 00:00:00'),(113287,10,'H30.123 ','Disseminated chorioretinal inflammation, peripheral, bilateral','Y','0000-00-00 00:00:00'),(113286,10,'H30.122 ','Disseminated chorioretinal inflammation, peripheral, left eye','Y','0000-00-00 00:00:00'),(113285,10,'H30.121 ','Disseminated chorioretinal inflammation, peripheral right eye','Y','0000-00-00 00:00:00'),(113284,10,'H30.119 ','Disseminated chorioretinal inflammation of posterior pole, unspecified eye','Y','0000-00-00 00:00:00'),(113283,10,'H30.113 ','Disseminated chorioretinal inflammation of posterior pole, bilateral','Y','0000-00-00 00:00:00'),(113282,10,'H30.112 ','Disseminated chorioretinal inflammation of posterior pole, left eye','Y','0000-00-00 00:00:00'),(113281,10,'H30.111 ','Disseminated chorioretinal inflammation of posterior pole, right eye','Y','0000-00-00 00:00:00'),(113280,10,'H30.109 ','Unspecified disseminated chorioretinal inflammation, unspecified eye','Y','0000-00-00 00:00:00'),(113278,10,'H30.102 ','Unspecified disseminated chorioretinal inflammation, left eye','Y','0000-00-00 00:00:00'),(113279,10,'H30.103 ','Unspecified disseminated chorioretinal inflammation, bilateral','Y','0000-00-00 00:00:00'),(113277,10,'H30.101 ','Unspecified disseminated chorioretinal inflammation, right eye','Y','0000-00-00 00:00:00'),(113276,10,'H30.049 ','Focal chorioretinal inflammation, macular or paramacular, unspecified eye','Y','0000-00-00 00:00:00'),(113275,10,'H30.043 ','Focal chorioretinal inflammation, macular or paramacular, bilateral','Y','0000-00-00 00:00:00'),(113274,10,'H30.042 ','Focal chorioretinal inflammation, macular or paramacular, left eye','Y','0000-00-00 00:00:00'),(113273,10,'H30.041 ','Focal chorioretinal inflammation, macular or paramacular, right eye','Y','0000-00-00 00:00:00'),(113272,10,'H30.039 ','Focal chorioretinal inflammation, peripheral, unspecified eye','Y','0000-00-00 00:00:00'),(113271,10,'H30.033 ','Focal chorioretinal inflammation, peripheral, bilateral','Y','0000-00-00 00:00:00'),(113270,10,'H30.032 ','Focal chorioretinal inflammation, peripheral, left eye','Y','0000-00-00 00:00:00'),(113269,10,'H30.031 ','Focal chorioretinal inflammation, peripheral, right eye','Y','0000-00-00 00:00:00'),(113268,10,'H30.029 ','Focal chorioretinal inflammation of posterior pole, unspecified eye','Y','0000-00-00 00:00:00'),(113267,10,'H30.023 ','Focal chorioretinal inflammation of posterior pole, bilateral','Y','0000-00-00 00:00:00'),(113265,10,'H30.021 ','Focal chorioretinal inflammation of posterior pole, right eye','Y','0000-00-00 00:00:00'),(113266,10,'H30.022 ','Focal chorioretinal inflammation of posterior pole, left eye','Y','0000-00-00 00:00:00'),(113264,10,'H30.019 ','Focal chorioretinal inflammation, juxtapapillary, unspecified eye','Y','0000-00-00 00:00:00'),(113263,10,'H30.013 ','Focal chorioretinal inflammation, juxtapapillary, bilateral','Y','0000-00-00 00:00:00'),(113262,10,'H30.012 ','Focal chorioretinal inflammation, juxtapapillary, left eye','Y','0000-00-00 00:00:00'),(113260,10,'H30.009 ','Unspecified focal chorioretinal inflammation, unspecified eye','Y','0000-00-00 00:00:00'),(113261,10,'H30.011 ','Focal chorioretinal inflammation, juxtapapillary, right eye','Y','0000-00-00 00:00:00'),(113259,10,'H30.003 ','Unspecified focal chorioretinal inflammation, bilateral','Y','0000-00-00 00:00:00'),(113257,10,'H30.001 ','Unspecified focal chorioretinal inflammation, right eye','Y','0000-00-00 00:00:00'),(113258,10,'H30.002 ','Unspecified focal chorioretinal inflammation, left eye','Y','0000-00-00 00:00:00'),(113255,10,'H27.9 ','Unspecified disorder of lens','Y','0000-00-00 00:00:00'),(113256,10,'H28','Cataract in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(113253,10,'H27.139 ','Posterior dislocation of lens, unspecified eye','Y','0000-00-00 00:00:00'),(113254,10,'H27.8 ','Other specified disorders of lens','Y','0000-00-00 00:00:00'),(113251,10,'H27.132 ','Posterior dislocation of lens, left eye','Y','0000-00-00 00:00:00'),(113252,10,'H27.133 ','Posterior dislocation of lens, bilateral','Y','0000-00-00 00:00:00'),(113250,10,'H27.131 ','Posterior dislocation of lens, right eye','Y','0000-00-00 00:00:00'),(113248,10,'H27.123 ','Anterior dislocation of lens, bilateral','Y','0000-00-00 00:00:00'),(113249,10,'H27.129 ','Anterior dislocation of lens, unspecified eye','Y','0000-00-00 00:00:00'),(113247,10,'H27.122 ','Anterior dislocation of lens, left eye','Y','0000-00-00 00:00:00'),(113245,10,'H27.119 ','Subluxation of lens, unspecified eye','Y','0000-00-00 00:00:00'),(113246,10,'H27.121 ','Anterior dislocation of lens, right eye','Y','0000-00-00 00:00:00'),(113243,10,'H27.112 ','Subluxation of lens, left eye','Y','0000-00-00 00:00:00'),(113244,10,'H27.113 ','Subluxation of lens, bilateral','Y','0000-00-00 00:00:00'),(113241,10,'H27.10 ','Unspecified dislocation of lens','Y','0000-00-00 00:00:00'),(113242,10,'H27.111 ','Subluxation of lens, right eye','Y','0000-00-00 00:00:00'),(113239,10,'H27.02 ','Aphakia, left eye','Y','0000-00-00 00:00:00'),(113240,10,'H27.03 ','Aphakia, bilateral','Y','0000-00-00 00:00:00'),(113237,10,'H27.00 ','Aphakia, unspecified eye','Y','0000-00-00 00:00:00'),(113238,10,'H27.01 ','Aphakia, right eye','Y','0000-00-00 00:00:00'),(113235,10,'H26.8 ','Other specified cataract','Y','0000-00-00 00:00:00'),(113236,10,'H26.9 ','Unspecified cataract','Y','0000-00-00 00:00:00'),(113233,10,'H26.493 ','Other secondary cataract, bilateral','Y','0000-00-00 00:00:00'),(113234,10,'H26.499 ','Other secondary cataract, unspecified eye','Y','0000-00-00 00:00:00'),(113231,10,'H26.491 ','Other secondary cataract, right eye','Y','0000-00-00 00:00:00'),(113232,10,'H26.492 ','Other secondary cataract, left eye','Y','0000-00-00 00:00:00'),(113229,10,'H26.413 ','Soemmering\'s ring, bilateral','Y','0000-00-00 00:00:00'),(113230,10,'H26.419 ','Soemmering\'s ring, unspecified eye','Y','0000-00-00 00:00:00'),(113227,10,'H26.411 ','Soemmering\'s ring, right eye','Y','0000-00-00 00:00:00'),(113228,10,'H26.412 ','Soemmering\'s ring, left eye','Y','0000-00-00 00:00:00'),(113225,10,'H26.33 ','Drug-induced cataract, bilateral','Y','0000-00-00 00:00:00'),(113226,10,'H26.40 ','Unspecified secondary cataract','Y','0000-00-00 00:00:00'),(113223,10,'H26.31 ','Drug-induced cataract, right eye','Y','0000-00-00 00:00:00'),(113224,10,'H26.32 ','Drug-induced cataract, left eye','Y','0000-00-00 00:00:00'),(113222,10,'H26.30 ','Drug-induced cataract, unspecified eye','Y','0000-00-00 00:00:00'),(113220,10,'H26.233 ','Glaucomatous flecks (subcapsular), bilateral','Y','0000-00-00 00:00:00'),(113221,10,'H26.239 ','Glaucomatous flecks (subcapsular), unspecified eye','Y','0000-00-00 00:00:00'),(113219,10,'H26.232 ','Glaucomatous flecks (subcapsular), left eye','Y','0000-00-00 00:00:00'),(113218,10,'H26.231 ','Glaucomatous flecks (subcapsular), right eye','Y','0000-00-00 00:00:00'),(113217,10,'H26.229 ','Cataract secondary to ocular disorders (degenerative) (inflammatory), unspecified eye','Y','0000-00-00 00:00:00'),(113216,10,'H26.223 ','Cataract secondary to ocular disorders (degenerative) (inflammatory), bilateral','Y','0000-00-00 00:00:00'),(113215,10,'H26.222 ','Cataract secondary to ocular disorders (degenerative) (inflammatory), left eye','Y','0000-00-00 00:00:00'),(113213,10,'H26.219 ','Cataract with neovascularization, unspecified eye','Y','0000-00-00 00:00:00'),(113214,10,'H26.221 ','Cataract secondary to ocular disorders (degenerative) (inflammatory), right eye','Y','0000-00-00 00:00:00'),(113212,10,'H26.213 ','Cataract with neovascularization, bilateral','Y','0000-00-00 00:00:00'),(113210,10,'H26.211 ','Cataract with neovascularization, right eye','Y','0000-00-00 00:00:00'),(113211,10,'H26.212 ','Cataract with neovascularization, left eye','Y','0000-00-00 00:00:00'),(113208,10,'H26.139 ','Total traumatic cataract, unspecified eye','Y','0000-00-00 00:00:00'),(113209,10,'H26.20 ','Unspecified complicated cataract','Y','0000-00-00 00:00:00'),(113206,10,'H26.132 ','Total traumatic cataract, left eye','Y','0000-00-00 00:00:00'),(113207,10,'H26.133 ','Total traumatic cataract, bilateral','Y','0000-00-00 00:00:00'),(113205,10,'H26.131 ','Total traumatic cataract, right eye','Y','0000-00-00 00:00:00'),(113203,10,'H26.123 ','Partially resolved traumatic cataract, bilateral','Y','0000-00-00 00:00:00'),(113204,10,'H26.129 ','Partially resolved traumatic cataract, unspecified eye','Y','0000-00-00 00:00:00'),(113202,10,'H26.122 ','Partially resolved traumatic cataract, left eye','Y','0000-00-00 00:00:00'),(113200,10,'H26.119 ','Localized traumatic opacities, unspecified eye','Y','0000-00-00 00:00:00'),(113201,10,'H26.121 ','Partially resolved traumatic cataract, right eye','Y','0000-00-00 00:00:00'),(113199,10,'H26.113 ','Localized traumatic opacities, bilateral','Y','0000-00-00 00:00:00'),(113197,10,'H26.111 ','Localized traumatic opacities, right eye','Y','0000-00-00 00:00:00'),(113198,10,'H26.112 ','Localized traumatic opacities, left eye','Y','0000-00-00 00:00:00'),(113196,10,'H26.109 ','Unspecified traumatic cataract, unspecified eye','Y','0000-00-00 00:00:00'),(113194,10,'H26.102 ','Unspecified traumatic cataract, left eye','Y','0000-00-00 00:00:00'),(113195,10,'H26.103 ','Unspecified traumatic cataract, bilateral','Y','0000-00-00 00:00:00'),(113193,10,'H26.101 ','Unspecified traumatic cataract, right eye','Y','0000-00-00 00:00:00'),(113192,10,'H26.09 ','Other infantile and juvenile cataract','Y','0000-00-00 00:00:00'),(113190,10,'H26.063 ','Combined forms of infantile and juvenile cataract, bilateral','Y','0000-00-00 00:00:00'),(113191,10,'H26.069 ','Combined forms of infantile and juvenile cataract, unspecified eye','Y','0000-00-00 00:00:00'),(113189,10,'H26.062 ','Combined forms of infantile and juvenile cataract, left eye','Y','0000-00-00 00:00:00'),(113188,10,'H26.061 ','Combined forms of infantile and juvenile cataract, right eye','Y','0000-00-00 00:00:00'),(113187,10,'H26.059 ','Posterior subcapsular polar infantile and juvenile cataract, unspecified eye','Y','0000-00-00 00:00:00'),(113185,10,'H26.052 ','Posterior subcapsular polar infantile and juvenile cataract, left eye','Y','0000-00-00 00:00:00'),(113186,10,'H26.053 ','Posterior subcapsular polar infantile and juvenile cataract, bilateral','Y','0000-00-00 00:00:00'),(113184,10,'H26.051 ','Posterior subcapsular polar infantile and juvenile cataract, right eye','Y','0000-00-00 00:00:00'),(113183,10,'H26.049 ','Anterior subcapsular polar infantile and juvenile cataract, unspecified eye','Y','0000-00-00 00:00:00'),(113181,10,'H26.042 ','Anterior subcapsular polar infantile and juvenile cataract, left eye','Y','0000-00-00 00:00:00'),(113182,10,'H26.043 ','Anterior subcapsular polar infantile and juvenile cataract, bilateral','Y','0000-00-00 00:00:00'),(113180,10,'H26.041 ','Anterior subcapsular polar infantile and juvenile cataract, right eye','Y','0000-00-00 00:00:00'),(113178,10,'H26.033 ','Infantile and juvenile nuclear cataract, bilateral','Y','0000-00-00 00:00:00'),(113179,10,'H26.039 ','Infantile and juvenile nuclear cataract, unspecified eye','Y','0000-00-00 00:00:00'),(113177,10,'H26.032 ','Infantile and juvenile nuclear cataract, left eye','Y','0000-00-00 00:00:00'),(113175,10,'H26.019 ','Infantile and juvenile cortical, lamellar, or zonular cataract, unspecified eye','Y','0000-00-00 00:00:00'),(113176,10,'H26.031 ','Infantile and juvenile nuclear cataract, right eye','Y','0000-00-00 00:00:00'),(113174,10,'H26.013 ','Infantile and juvenile cortical, lamellar, or zonular cataract, bilateral','Y','0000-00-00 00:00:00'),(113172,10,'H26.011 ','Infantile and juvenile cortical, lamellar, or zonular cataract, right eye','Y','0000-00-00 00:00:00'),(113173,10,'H26.012 ','Infantile and juvenile cortical, lamellar, or zonular cataract, left eye','Y','0000-00-00 00:00:00'),(113171,10,'H26.009 ','Unspecified infantile and juvenile cataract, unspecified eye','Y','0000-00-00 00:00:00'),(113169,10,'H26.002 ','Unspecified infantile and juvenile cataract, left eye','Y','0000-00-00 00:00:00'),(113170,10,'H26.003 ','Unspecified infantile and juvenile cataract, bilateral','Y','0000-00-00 00:00:00'),(113167,10,'H25.9 ','Unspecified age-related cataract','Y','0000-00-00 00:00:00'),(113168,10,'H26.001 ','Unspecified infantile and juvenile cataract, right eye','Y','0000-00-00 00:00:00'),(113166,10,'H25.89 ','Other age-related cataract','Y','0000-00-00 00:00:00'),(113164,10,'H25.813 ','Combined forms of age-related cataract, bilateral','Y','0000-00-00 00:00:00'),(113165,10,'H25.819 ','Combined forms of age-related cataract, unspecified eye','Y','0000-00-00 00:00:00'),(113162,10,'H25.811 ','Combined forms of age-related cataract, right eye','Y','0000-00-00 00:00:00'),(113163,10,'H25.812 ','Combined forms of age-related cataract, left eye','Y','0000-00-00 00:00:00'),(113161,10,'H25.23 ','Age-related cataract, morgagnian type, bilateral','Y','0000-00-00 00:00:00'),(113159,10,'H25.21 ','Age-related cataract, morgagnian type, right eye','Y','0000-00-00 00:00:00'),(113160,10,'H25.22 ','Age-related cataract, morgagnian type, left eye','Y','0000-00-00 00:00:00'),(113157,10,'H25.13 ','Age-related nuclear cataract, bilateral','Y','0000-00-00 00:00:00'),(113158,10,'H25.20 ','Age-related cataract, morgagnian type, unspecified eye','Y','0000-00-00 00:00:00'),(113156,10,'H25.12 ','Age-related nuclear cataract, left eye','Y','0000-00-00 00:00:00'),(113154,10,'H25.10 ','Age-related nuclear cataract, unspecified eye','Y','0000-00-00 00:00:00'),(113155,10,'H25.11 ','Age-related nuclear cataract, right eye','Y','0000-00-00 00:00:00'),(113152,10,'H25.093 ','Other age-related incipient cataract, bilateral','Y','0000-00-00 00:00:00'),(113153,10,'H25.099 ','Other age-related incipient cataract, unspecified eye','Y','0000-00-00 00:00:00'),(113151,10,'H25.092 ','Other age-related incipient cataract, left eye','Y','0000-00-00 00:00:00'),(113149,10,'H25.049 ','Posterior subcapsular polar age-related cataract, unspecified eye','Y','0000-00-00 00:00:00'),(113150,10,'H25.091 ','Other age-related incipient cataract, right eye','Y','0000-00-00 00:00:00'),(113148,10,'H25.043 ','Posterior subcapsular polar age-related cataract, bilateral','Y','0000-00-00 00:00:00'),(113146,10,'H25.041 ','Posterior subcapsular polar age-related cataract, right eye','Y','0000-00-00 00:00:00'),(113147,10,'H25.042 ','Posterior subcapsular polar age-related cataract, left eye','Y','0000-00-00 00:00:00'),(113145,10,'H25.039 ','Anterior subcapsular polar age-related cataract, unspecified eye','Y','0000-00-00 00:00:00'),(113143,10,'H25.032 ','Anterior subcapsular polar age-related cataract, left eye','Y','0000-00-00 00:00:00'),(113144,10,'H25.033 ','Anterior subcapsular polar age-related cataract, bilateral','Y','0000-00-00 00:00:00'),(113142,10,'H25.031 ','Anterior subcapsular polar age-related cataract, right eye','Y','0000-00-00 00:00:00'),(113140,10,'H25.013 ','Cortical age-related cataract, bilateral','Y','0000-00-00 00:00:00'),(113141,10,'H25.019 ','Cortical age-related cataract, unspecified eye','Y','0000-00-00 00:00:00'),(113139,10,'H25.012 ','Cortical age-related cataract, left eye','Y','0000-00-00 00:00:00'),(113137,10,'H22','Disorders of iris and ciliary body in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(113138,10,'H25.011 ','Cortical age-related cataract, right eye','Y','0000-00-00 00:00:00'),(113136,10,'H21.9 ','Unspecified disorder of iris and ciliary body','Y','0000-00-00 00:00:00'),(113134,10,'H21.82 ','Plateau iris syndrome (post-iridectomy) (postprocedural)','Y','0000-00-00 00:00:00'),(113135,10,'H21.89 ','Other specified disorders of iris and ciliary body','Y','0000-00-00 00:00:00'),(113132,10,'H21.569 ','Pupillary abnormality, unspecified eye','Y','0000-00-00 00:00:00'),(113133,10,'H21.81 ','Floppy iris syndrome','Y','0000-00-00 00:00:00'),(113130,10,'H21.562 ','Pupillary abnormality, left eye','Y','0000-00-00 00:00:00'),(113131,10,'H21.563 ','Pupillary abnormality, bilateral','Y','0000-00-00 00:00:00'),(113128,10,'H21.559 ','Recession of chamber angle, unspecified eye','Y','0000-00-00 00:00:00'),(113129,10,'H21.561 ','Pupillary abnormality, right eye','Y','0000-00-00 00:00:00'),(113126,10,'H21.552 ','Recession of chamber angle, left eye','Y','0000-00-00 00:00:00'),(113127,10,'H21.553 ','Recession of chamber angle, bilateral','Y','0000-00-00 00:00:00'),(113124,10,'H21.549 ','Posterior synechiae (iris), unspecified eye','Y','0000-00-00 00:00:00'),(113125,10,'H21.551 ','Recession of chamber angle, right eye','Y','0000-00-00 00:00:00'),(113122,10,'H21.542 ','Posterior synechiae (iris), left eye','Y','0000-00-00 00:00:00'),(113123,10,'H21.543 ','Posterior synechiae (iris), bilateral','Y','0000-00-00 00:00:00'),(113120,10,'H21.539 ','Iridodialysis, unspecified eye','Y','0000-00-00 00:00:00'),(113121,10,'H21.541 ','Posterior synechiae (iris), right eye','Y','0000-00-00 00:00:00'),(113118,10,'H21.532 ','Iridodialysis, left eye','Y','0000-00-00 00:00:00'),(113119,10,'H21.533 ','Iridodialysis, bilateral','Y','0000-00-00 00:00:00'),(113116,10,'H21.529 ','Goniosynechiae, unspecified eye','Y','0000-00-00 00:00:00'),(113117,10,'H21.531 ','Iridodialysis, right eye','Y','0000-00-00 00:00:00'),(113114,10,'H21.522 ','Goniosynechiae, left eye','Y','0000-00-00 00:00:00'),(113115,10,'H21.523 ','Goniosynechiae, bilateral','Y','0000-00-00 00:00:00'),(113112,10,'H21.519 ','Anterior synechiae (iris), unspecified eye','Y','0000-00-00 00:00:00'),(113113,10,'H21.521 ','Goniosynechiae, right eye','Y','0000-00-00 00:00:00'),(113110,10,'H21.512 ','Anterior synechiae (iris), left eye','Y','0000-00-00 00:00:00'),(113111,10,'H21.513 ','Anterior synechiae (iris), bilateral','Y','0000-00-00 00:00:00'),(113109,10,'H21.511 ','Anterior synechiae (iris), right eye','Y','0000-00-00 00:00:00'),(113107,10,'H21.503 ','Unspecified adhesions of iris, bilateral','Y','0000-00-00 00:00:00'),(113108,10,'H21.509 ','Unspecified adhesions of iris and ciliary body, unspecified eye','Y','0000-00-00 00:00:00'),(113105,10,'H21.501 ','Unspecified adhesions of iris, right eye','Y','0000-00-00 00:00:00'),(113106,10,'H21.502 ','Unspecified adhesions of iris, left eye','Y','0000-00-00 00:00:00'),(113103,10,'H21.42 ','Pupillary membranes, left eye','Y','0000-00-00 00:00:00'),(113104,10,'H21.43 ','Pupillary membranes, bilateral','Y','0000-00-00 00:00:00'),(113101,10,'H21.40 ','Pupillary membranes, unspecified eye','Y','0000-00-00 00:00:00'),(113102,10,'H21.41 ','Pupillary membranes, right eye','Y','0000-00-00 00:00:00'),(113099,10,'H21.353 ','Exudative cyst of pars plana, bilateral','Y','0000-00-00 00:00:00'),(113100,10,'H21.359 ','Exudative cyst of pars plana, unspecified eye','Y','0000-00-00 00:00:00'),(113097,10,'H21.351 ','Exudative cyst of pars plana, right eye','Y','0000-00-00 00:00:00'),(113098,10,'H21.352 ','Exudative cyst of pars plana, left eye','Y','0000-00-00 00:00:00'),(113095,10,'H21.343 ','Primary cyst of pars plana, bilateral','Y','0000-00-00 00:00:00'),(113096,10,'H21.349 ','Primary cyst of pars plana, unspecified eye','Y','0000-00-00 00:00:00'),(113093,10,'H21.341 ','Primary cyst of pars plana, right eye','Y','0000-00-00 00:00:00'),(113094,10,'H21.342 ','Primary cyst of pars plana, left eye','Y','0000-00-00 00:00:00'),(113092,10,'H21.339 ','Parasitic cyst of iris, ciliary body or anterior chamber, unspecified eye','Y','0000-00-00 00:00:00'),(113091,10,'H21.333 ','Parasitic cyst of iris, ciliary body or anterior chamber, bilateral','Y','0000-00-00 00:00:00'),(113089,10,'H21.331 ','Parasitic cyst of iris, ciliary body or anterior chamber, right eye','Y','0000-00-00 00:00:00'),(113090,10,'H21.332 ','Parasitic cyst of iris, ciliary body or anterior chamber, left eye','Y','0000-00-00 00:00:00'),(113088,10,'H21.329 ','Implantation cysts of iris, ciliary body or anterior chamber, unspecified eye','Y','0000-00-00 00:00:00'),(113087,10,'H21.323 ','Implantation cysts of iris, ciliary body or anterior chamber, bilateral','Y','0000-00-00 00:00:00'),(113086,10,'H21.322 ','Implantation cysts of iris, ciliary body or anterior chamber, left eye','Y','0000-00-00 00:00:00'),(113084,10,'H21.319 ','Exudative cysts of iris or anterior chamber, unspecified eye','Y','0000-00-00 00:00:00'),(113085,10,'H21.321 ','Implantation cysts of iris, ciliary body or anterior chamber, right eye','Y','0000-00-00 00:00:00'),(113083,10,'H21.313 ','Exudative cysts of iris or anterior chamber, bilateral','Y','0000-00-00 00:00:00'),(113081,10,'H21.311 ','Exudative cysts of iris or anterior chamber, right eye','Y','0000-00-00 00:00:00'),(113082,10,'H21.312 ','Exudative cysts of iris or anterior chamber, left eye','Y','0000-00-00 00:00:00'),(113080,10,'H21.309 ','Idiopathic cysts of iris, ciliary body or anterior chamber, unspecified eye','Y','0000-00-00 00:00:00'),(113078,10,'H21.302 ','Idiopathic cysts of iris, ciliary body or anterior chamber, left eye','Y','0000-00-00 00:00:00'),(113079,10,'H21.303 ','Idiopathic cysts of iris, ciliary body or anterior chamber, bilateral','Y','0000-00-00 00:00:00'),(113076,10,'H21.29 ','Other iris atrophy','Y','0000-00-00 00:00:00'),(113077,10,'H21.301 ','Idiopathic cysts of iris, ciliary body or anterior chamber, right eye','Y','0000-00-00 00:00:00'),(113074,10,'H21.273 ','Miotic pupillary cyst, bilateral','Y','0000-00-00 00:00:00'),(113075,10,'H21.279 ','Miotic pupillary cyst, unspecified eye','Y','0000-00-00 00:00:00'),(113072,10,'H21.271 ','Miotic pupillary cyst, right eye','Y','0000-00-00 00:00:00'),(113073,10,'H21.272 ','Miotic pupillary cyst, left eye','Y','0000-00-00 00:00:00'),(113071,10,'H21.269 ','Iris atrophy (essential) (progressive), unspecified eye','Y','0000-00-00 00:00:00'),(113069,10,'H21.262 ','Iris atrophy (essential) (progressive), left eye','Y','0000-00-00 00:00:00'),(113070,10,'H21.263 ','Iris atrophy (essential) (progressive), bilateral','Y','0000-00-00 00:00:00'),(113067,10,'H21.259 ','Iridoschisis, unspecified eye','Y','0000-00-00 00:00:00'),(113068,10,'H21.261 ','Iris atrophy (essential) (progressive), right eye','Y','0000-00-00 00:00:00'),(113065,10,'H21.252 ','Iridoschisis, left eye','Y','0000-00-00 00:00:00'),(113066,10,'H21.253 ','Iridoschisis, bilateral','Y','0000-00-00 00:00:00'),(113063,10,'H21.249 ','Degeneration of pupillary margin, unspecified eye','Y','0000-00-00 00:00:00'),(113064,10,'H21.251 ','Iridoschisis, right eye','Y','0000-00-00 00:00:00'),(113061,10,'H21.242 ','Degeneration of pupillary margin, left eye','Y','0000-00-00 00:00:00'),(113062,10,'H21.243 ','Degeneration of pupillary margin, bilateral','Y','0000-00-00 00:00:00'),(113060,10,'H21.241 ','Degeneration of pupillary margin, right eye','Y','0000-00-00 00:00:00'),(113058,10,'H21.233 ','Degeneration of iris (pigmentary), bilateral','Y','0000-00-00 00:00:00'),(113059,10,'H21.239 ','Degeneration of iris (pigmentary), unspecified eye','Y','0000-00-00 00:00:00'),(113056,10,'H21.231 ','Degeneration of iris (pigmentary), right eye','Y','0000-00-00 00:00:00'),(113057,10,'H21.232 ','Degeneration of iris (pigmentary), left eye','Y','0000-00-00 00:00:00'),(113054,10,'H21.223 ','Degeneration of ciliary body, bilateral','Y','0000-00-00 00:00:00'),(113055,10,'H21.229 ','Degeneration of ciliary body, unspecified eye','Y','0000-00-00 00:00:00'),(113052,10,'H21.221 ','Degeneration of ciliary body, right eye','Y','0000-00-00 00:00:00'),(113053,10,'H21.222 ','Degeneration of ciliary body, left eye','Y','0000-00-00 00:00:00'),(113050,10,'H21.213 ','Degeneration of chamber angle, bilateral','Y','0000-00-00 00:00:00'),(113051,10,'H21.219 ','Degeneration of chamber angle, unspecified eye','Y','0000-00-00 00:00:00'),(113048,10,'H21.211 ','Degeneration of chamber angle, right eye','Y','0000-00-00 00:00:00'),(113049,10,'H21.212 ','Degeneration of chamber angle, left eye','Y','0000-00-00 00:00:00'),(113047,10,'H21.1X9 ','Other vascular disorders of iris and ciliary body, unspecified eye','Y','0000-00-00 00:00:00'),(113045,10,'H21.1X2 ','Other vascular disorders of iris and ciliary body, left eye','Y','0000-00-00 00:00:00'),(113046,10,'H21.1X3 ','Other vascular disorders of iris and ciliary body, bilateral','Y','0000-00-00 00:00:00'),(113043,10,'H21.03 ','Hyphema, bilateral','Y','0000-00-00 00:00:00'),(113044,10,'H21.1X1 ','Other vascular disorders of iris and ciliary body, right eye','Y','0000-00-00 00:00:00'),(113041,10,'H21.01 ','Hyphema, right eye','Y','0000-00-00 00:00:00'),(113042,10,'H21.02 ','Hyphema, left eye','Y','0000-00-00 00:00:00'),(113039,10,'H20.9 ','Unspecified iridocyclitis','Y','0000-00-00 00:00:00'),(113040,10,'H21.00 ','Hyphema, unspecified eye','Y','0000-00-00 00:00:00'),(113037,10,'H20.823 ','Vogt-Koyanagi syndrome, bilateral','Y','0000-00-00 00:00:00'),(113038,10,'H20.829 ','Vogt-Koyanagi syndrome, unspecified eye','Y','0000-00-00 00:00:00'),(113035,10,'H20.821 ','Vogt-Koyanagi syndrome, right eye','Y','0000-00-00 00:00:00'),(113036,10,'H20.822 ','Vogt-Koyanagi syndrome, left eye','Y','0000-00-00 00:00:00'),(113033,10,'H20.813 ','Fuchs\' heterochromic cyclitis, bilateral','Y','0000-00-00 00:00:00'),(113034,10,'H20.819 ','Fuchs\' heterochromic cyclitis, unspecified eye','Y','0000-00-00 00:00:00'),(113032,10,'H20.812 ','Fuchs\' heterochromic cyclitis, left eye','Y','0000-00-00 00:00:00'),(113030,10,'H20.23 ','Lens-induced iridocyclitis, bilateral','Y','0000-00-00 00:00:00'),(113031,10,'H20.811 ','Fuchs\' heterochromic cyclitis, right eye','Y','0000-00-00 00:00:00'),(113028,10,'H20.21 ','Lens-induced iridocyclitis, right eye','Y','0000-00-00 00:00:00'),(113029,10,'H20.22 ','Lens-induced iridocyclitis, left eye','Y','0000-00-00 00:00:00'),(113026,10,'H20.13 ','Chronic iridocyclitis, bilateral','Y','0000-00-00 00:00:00'),(113027,10,'H20.20 ','Lens-induced iridocyclitis, unspecified eye','Y','0000-00-00 00:00:00'),(113024,10,'H20.11 ','Chronic iridocyclitis, right eye','Y','0000-00-00 00:00:00'),(113025,10,'H20.12 ','Chronic iridocyclitis, left eye','Y','0000-00-00 00:00:00'),(113022,10,'H20.059 ','Hypopyon, unspecified eye','Y','0000-00-00 00:00:00'),(113023,10,'H20.10 ','Chronic iridocyclitis, unspecified eye','Y','0000-00-00 00:00:00'),(113019,10,'H20.051 ','Hypopyon, right eye','Y','0000-00-00 00:00:00'),(113020,10,'H20.052 ','Hypopyon, left eye','Y','0000-00-00 00:00:00'),(113021,10,'H20.053 ','Hypopyon, bilateral','Y','0000-00-00 00:00:00'),(113018,10,'H20.049 ','Secondary noninfectious iridocyclitis, unspecified eye','Y','0000-00-00 00:00:00'),(113016,10,'H20.042 ','Secondary noninfectious iridocyclitis, left eye','Y','0000-00-00 00:00:00'),(113017,10,'H20.043 ','Secondary noninfectious iridocyclitis, bilateral','Y','0000-00-00 00:00:00'),(113015,10,'H20.041 ','Secondary noninfectious iridocyclitis, right eye','Y','0000-00-00 00:00:00'),(113013,10,'H20.033 ','Secondary infectious iridocyclitis, bilateral','Y','0000-00-00 00:00:00'),(113014,10,'H20.039 ','Secondary infectious iridocyclitis, unspecified eye','Y','0000-00-00 00:00:00'),(113012,10,'H20.032 ','Secondary infectious iridocyclitis, left eye','Y','0000-00-00 00:00:00'),(113010,10,'H20.029 ','Recurrent acute iridocyclitis, unspecified eye','Y','0000-00-00 00:00:00'),(113011,10,'H20.031 ','Secondary infectious iridocyclitis, right eye','Y','0000-00-00 00:00:00'),(113008,10,'H20.022 ','Recurrent acute iridocyclitis, left eye','Y','0000-00-00 00:00:00'),(113009,10,'H20.023 ','Recurrent acute iridocyclitis, bilateral','Y','0000-00-00 00:00:00'),(113006,10,'H20.019 ','Primary iridocyclitis, unspecified eye','Y','0000-00-00 00:00:00'),(113007,10,'H20.021 ','Recurrent acute iridocyclitis, right eye','Y','0000-00-00 00:00:00'),(113004,10,'H20.012 ','Primary iridocyclitis, left eye','Y','0000-00-00 00:00:00'),(113005,10,'H20.013 ','Primary iridocyclitis, bilateral','Y','0000-00-00 00:00:00'),(113002,10,'H20.00 ','Unspecified acute and subacute iridocyclitis','Y','0000-00-00 00:00:00'),(113003,10,'H20.011 ','Primary iridocyclitis, right eye','Y','0000-00-00 00:00:00'),(113000,10,'H18.899 ','Other specified disorders of cornea, unspecified eye','Y','0000-00-00 00:00:00'),(113001,10,'H18.9 ','Unspecified disorder of cornea','Y','0000-00-00 00:00:00'),(112999,10,'H18.893 ','Other specified disorders of cornea, bilateral','Y','0000-00-00 00:00:00'),(112997,10,'H18.891 ','Other specified disorders of cornea, right eye','Y','0000-00-00 00:00:00'),(112998,10,'H18.892 ','Other specified disorders of cornea, left eye','Y','0000-00-00 00:00:00'),(112995,10,'H18.833 ','Recurrent erosion of cornea, bilateral','Y','0000-00-00 00:00:00'),(112996,10,'H18.839 ','Recurrent erosion of cornea, unspecified eye','Y','0000-00-00 00:00:00'),(112994,10,'H18.832 ','Recurrent erosion of cornea, left eye','Y','0000-00-00 00:00:00'),(112992,10,'H18.829 ','Corneal disorder due to contact lens, unspecified eye','Y','0000-00-00 00:00:00'),(112993,10,'H18.831 ','Recurrent erosion of cornea, right eye','Y','0000-00-00 00:00:00'),(112991,10,'H18.823 ','Corneal disorder due to contact lens, bilateral','Y','0000-00-00 00:00:00'),(112989,10,'H18.821 ','Corneal disorder due to contact lens, right eye','Y','0000-00-00 00:00:00'),(112990,10,'H18.822 ','Corneal disorder due to contact lens, left eye','Y','0000-00-00 00:00:00'),(112988,10,'H18.819 ','Anesthesia and hypoesthesia of cornea, unspecified eye','Y','0000-00-00 00:00:00'),(112986,10,'H18.812 ','Anesthesia and hypoesthesia of cornea, left eye','Y','0000-00-00 00:00:00'),(112987,10,'H18.813 ','Anesthesia and hypoesthesia of cornea, bilateral','Y','0000-00-00 00:00:00'),(112984,10,'H18.799 ','Other corneal deformities, unspecified eye','Y','0000-00-00 00:00:00'),(112985,10,'H18.811 ','Anesthesia and hypoesthesia of cornea, right eye','Y','0000-00-00 00:00:00'),(112982,10,'H18.792 ','Other corneal deformities, left eye','Y','0000-00-00 00:00:00'),(112983,10,'H18.793 ','Other corneal deformities, bilateral','Y','0000-00-00 00:00:00'),(112981,10,'H18.791 ','Other corneal deformities, right eye','Y','0000-00-00 00:00:00'),(112978,10,'H18.732 ','Descemetocele, left eye','Y','0000-00-00 00:00:00'),(112979,10,'H18.733 ','Descemetocele, bilateral','Y','0000-00-00 00:00:00'),(112980,10,'H18.739 ','Descemetocele, unspecified eye','Y','0000-00-00 00:00:00'),(112976,10,'H18.729 ','Corneal staphyloma, unspecified eye','Y','0000-00-00 00:00:00'),(112977,10,'H18.731 ','Descemetocele, right eye','Y','0000-00-00 00:00:00'),(112974,10,'H18.722 ','Corneal staphyloma, left eye','Y','0000-00-00 00:00:00'),(112975,10,'H18.723 ','Corneal staphyloma, bilateral','Y','0000-00-00 00:00:00'),(112972,10,'H18.719 ','Corneal ectasia, unspecified eye','Y','0000-00-00 00:00:00'),(112973,10,'H18.721 ','Corneal staphyloma, right eye','Y','0000-00-00 00:00:00'),(112970,10,'H18.712 ','Corneal ectasia, left eye','Y','0000-00-00 00:00:00'),(112971,10,'H18.713 ','Corneal ectasia, bilateral','Y','0000-00-00 00:00:00'),(112968,10,'H18.70 ','Unspecified corneal deformity','Y','0000-00-00 00:00:00'),(112969,10,'H18.711 ','Corneal ectasia, right eye','Y','0000-00-00 00:00:00'),(112966,10,'H18.623 ','Keratoconus, unstable, bilateral','Y','0000-00-00 00:00:00'),(112967,10,'H18.629 ','Keratoconus, unstable, unspecified eye','Y','0000-00-00 00:00:00'),(112964,10,'H18.621 ','Keratoconus, unstable, right eye','Y','0000-00-00 00:00:00'),(112965,10,'H18.622 ','Keratoconus, unstable, left eye','Y','0000-00-00 00:00:00'),(112963,10,'H18.619 ','Keratoconus, stable, unspecified eye','Y','0000-00-00 00:00:00'),(112961,10,'H18.612 ','Keratoconus, stable, left eye','Y','0000-00-00 00:00:00'),(112962,10,'H18.613 ','Keratoconus, stable, bilateral','Y','0000-00-00 00:00:00'),(112959,10,'H18.609 ','Keratoconus, unspecified, unspecified eye','Y','0000-00-00 00:00:00'),(112960,10,'H18.611 ','Keratoconus, stable, right eye','Y','0000-00-00 00:00:00'),(112957,10,'H18.602 ','Keratoconus, unspecified, left eye','Y','0000-00-00 00:00:00'),(112958,10,'H18.603 ','Keratoconus, unspecified, bilateral','Y','0000-00-00 00:00:00'),(112955,10,'H18.599 ','Other hereditary corneal dystrophies, unspecified eye','Y','0000-00-00 00:00:00'),(112956,10,'H18.601 ','Keratoconus, unspecified, right eye','Y','0000-00-00 00:00:00'),(112954,10,'H18.593 ','Other hereditary corneal dystrophies, bilateral','Y','0000-00-00 00:00:00'),(112952,10,'H18.591 ','Other hereditary corneal dystrophies, right eye','Y','0000-00-00 00:00:00'),(112953,10,'H18.592 ','Other hereditary corneal dystrophies, left eye','Y','0000-00-00 00:00:00'),(112950,10,'H18.553 ','Macular corneal dystrophy, bilateral','Y','0000-00-00 00:00:00'),(112951,10,'H18.559 ','Macular corneal dystrophy, unspecified eye','Y','0000-00-00 00:00:00'),(112948,10,'H18.551 ','Macular corneal dystrophy, right eye','Y','0000-00-00 00:00:00'),(112949,10,'H18.552 ','Macular corneal dystrophy, left eye','Y','0000-00-00 00:00:00'),(112946,10,'H18.543 ','Lattice corneal dystrophy, bilateral','Y','0000-00-00 00:00:00'),(112947,10,'H18.549 ','Lattice corneal dystrophy, unspecified eye','Y','0000-00-00 00:00:00'),(112944,10,'H18.541 ','Lattice corneal dystrophy, right eye','Y','0000-00-00 00:00:00'),(112945,10,'H18.542 ','Lattice corneal dystrophy, left eye','Y','0000-00-00 00:00:00'),(112943,10,'H18.539 ','Granular corneal dystrophy, unspecified eye','Y','0000-00-00 00:00:00'),(112941,10,'H18.532 ','Granular corneal dystrophy, left eye','Y','0000-00-00 00:00:00'),(112942,10,'H18.533 ','Granular corneal dystrophy, bilateral','Y','0000-00-00 00:00:00'),(112939,10,'H18.529 ','Epithelial (juvenile) corneal dystrophy, unspecified eye','Y','0000-00-00 00:00:00'),(112940,10,'H18.531 ','Granular corneal dystrophy, right eye','Y','0000-00-00 00:00:00'),(112938,10,'H18.523 ','Epithelial (juvenile) corneal dystrophy, bilateral','Y','0000-00-00 00:00:00'),(112936,10,'H18.521 ','Epithelial (juvenile) corneal dystrophy, right eye','Y','0000-00-00 00:00:00'),(112937,10,'H18.522 ','Epithelial (juvenile) corneal dystrophy, left eye','Y','0000-00-00 00:00:00'),(112935,10,'H18.519 ','Endothelial corneal dystrophy, unspecified eye','Y','0000-00-00 00:00:00'),(112933,10,'H18.512 ','Endothelial corneal dystrophy, left eye','Y','0000-00-00 00:00:00'),(112934,10,'H18.513 ','Endothelial corneal dystrophy, bilateral','Y','0000-00-00 00:00:00'),(112931,10,'H18.509 ','Unspecified hereditary corneal dystrophies, unspecified eye','Y','0000-00-00 00:00:00'),(112932,10,'H18.511 ','Endothelial corneal dystrophy, right eye','Y','0000-00-00 00:00:00'),(112930,10,'H18.503 ','Unspecified hereditary corneal dystrophies, bilateral','Y','0000-00-00 00:00:00'),(112928,10,'H18.501 ','Unspecified hereditary corneal dystrophies, right eye','Y','0000-00-00 00:00:00'),(112929,10,'H18.502 ','Unspecified hereditary corneal dystrophies, left eye','Y','0000-00-00 00:00:00'),(112926,10,'H18.469 ','Peripheral corneal degeneration, unspecified eye','Y','0000-00-00 00:00:00'),(112927,10,'H18.49 ','Other corneal degeneration','Y','0000-00-00 00:00:00'),(112924,10,'H18.462 ','Peripheral corneal degeneration, left eye','Y','0000-00-00 00:00:00'),(112925,10,'H18.463 ','Peripheral corneal degeneration, bilateral','Y','0000-00-00 00:00:00'),(112923,10,'H18.461 ','Peripheral corneal degeneration, right eye','Y','0000-00-00 00:00:00'),(112921,10,'H18.453 ','Nodular corneal degeneration, bilateral','Y','0000-00-00 00:00:00'),(112922,10,'H18.459 ','Nodular corneal degeneration, unspecified eye','Y','0000-00-00 00:00:00'),(112919,10,'H18.451 ','Nodular corneal degeneration, right eye','Y','0000-00-00 00:00:00'),(112920,10,'H18.452 ','Nodular corneal degeneration, left eye','Y','0000-00-00 00:00:00'),(112917,10,'H18.443 ','Keratomalacia, bilateral','Y','0000-00-00 00:00:00'),(112918,10,'H18.449 ','Keratomalacia, unspecified eye','Y','0000-00-00 00:00:00'),(112915,10,'H18.441 ','Keratomalacia, right eye','Y','0000-00-00 00:00:00'),(112916,10,'H18.442 ','Keratomalacia, left eye','Y','0000-00-00 00:00:00'),(112913,10,'H18.429 ','Band keratopathy, unspecified eye','Y','0000-00-00 00:00:00'),(112914,10,'H18.43 ','Other calcerous corneal degeneration','Y','0000-00-00 00:00:00'),(112911,10,'H18.422 ','Band keratopathy, left eye','Y','0000-00-00 00:00:00'),(112912,10,'H18.423 ','Band keratopathy, bilateral','Y','0000-00-00 00:00:00'),(112909,10,'H18.419 ','Arcus senilis, unspecified eye','Y','0000-00-00 00:00:00'),(112910,10,'H18.421 ','Band keratopathy, right eye','Y','0000-00-00 00:00:00'),(112907,10,'H18.412 ','Arcus senilis, left eye','Y','0000-00-00 00:00:00'),(112908,10,'H18.413 ','Arcus senilis, bilateral','Y','0000-00-00 00:00:00'),(112905,10,'H18.40 ','Unspecified corneal degeneration','Y','0000-00-00 00:00:00'),(112906,10,'H18.411 ','Arcus senilis, right eye','Y','0000-00-00 00:00:00'),(112903,10,'H18.333 ','Rupture in Descemet\'s membrane, bilateral','Y','0000-00-00 00:00:00'),(112904,10,'H18.339 ','Rupture in Descemet\'s membrane, unspecified eye','Y','0000-00-00 00:00:00'),(112902,10,'H18.332 ','Rupture in Descemet\'s membrane, left eye','Y','0000-00-00 00:00:00'),(112900,10,'H18.329 ','Folds in Descemet\'s membrane, unspecified eye','Y','0000-00-00 00:00:00'),(112901,10,'H18.331 ','Rupture in Descemet\'s membrane, right eye','Y','0000-00-00 00:00:00'),(112898,10,'H18.322 ','Folds in Descemet\'s membrane, left eye','Y','0000-00-00 00:00:00'),(112899,10,'H18.323 ','Folds in Descemet\'s membrane, bilateral','Y','0000-00-00 00:00:00'),(112897,10,'H18.321 ','Folds in Descemet\'s membrane, right eye','Y','0000-00-00 00:00:00'),(112895,10,'H18.313 ','Folds and rupture in Bowman\'s membrane, bilateral','Y','0000-00-00 00:00:00'),(112896,10,'H18.319 ','Folds and rupture in Bowman\'s membrane, unspecified eye','Y','0000-00-00 00:00:00'),(112894,10,'H18.312 ','Folds and rupture in Bowman\'s membrane, left eye','Y','0000-00-00 00:00:00'),(112892,10,'H18.30 ','Unspecified corneal membrane change','Y','0000-00-00 00:00:00'),(112893,10,'H18.311 ','Folds and rupture in Bowman\'s membrane, right eye','Y','0000-00-00 00:00:00'),(112890,10,'H18.233 ','Secondary corneal edema, bilateral','Y','0000-00-00 00:00:00'),(112891,10,'H18.239 ','Secondary corneal edema, unspecified eye','Y','0000-00-00 00:00:00'),(112888,10,'H18.231 ','Secondary corneal edema, right eye','Y','0000-00-00 00:00:00'),(112889,10,'H18.232 ','Secondary corneal edema, left eye','Y','0000-00-00 00:00:00'),(112887,10,'H18.229 ','Idiopathic corneal edema, unspecified eye','Y','0000-00-00 00:00:00'),(112885,10,'H18.222 ','Idiopathic corneal edema, left eye','Y','0000-00-00 00:00:00'),(112886,10,'H18.223 ','Idiopathic corneal edema, bilateral','Y','0000-00-00 00:00:00'),(112883,10,'H18.219 ','Corneal edema secondary to contact lens, unspecified eye','Y','0000-00-00 00:00:00'),(112884,10,'H18.221 ','Idiopathic corneal edema, right eye','Y','0000-00-00 00:00:00'),(112882,10,'H18.213 ','Corneal edema secondary to contact lens, bilateral','Y','0000-00-00 00:00:00'),(112880,10,'H18.211 ','Corneal edema secondary to contact lens, right eye','Y','0000-00-00 00:00:00'),(112881,10,'H18.212 ','Corneal edema secondary to contact lens, left eye','Y','0000-00-00 00:00:00'),(112878,10,'H18.13 ','Bullous keratopathy, bilateral','Y','0000-00-00 00:00:00'),(112879,10,'H18.20 ','Unspecified corneal edema','Y','0000-00-00 00:00:00'),(112876,10,'H18.11 ','Bullous keratopathy, right eye','Y','0000-00-00 00:00:00'),(112877,10,'H18.12 ','Bullous keratopathy, left eye','Y','0000-00-00 00:00:00'),(112875,10,'H18.10 ','Bullous keratopathy, unspecified eye','Y','0000-00-00 00:00:00'),(112873,10,'H18.063 ','Stromal corneal pigmentations, bilateral','Y','0000-00-00 00:00:00'),(112874,10,'H18.069 ','Stromal corneal pigmentations, unspecified eye','Y','0000-00-00 00:00:00'),(112872,10,'H18.062 ','Stromal corneal pigmentations, left eye','Y','0000-00-00 00:00:00'),(112870,10,'H18.059 ','Posterior corneal pigmentations, unspecified eye','Y','0000-00-00 00:00:00'),(112871,10,'H18.061 ','Stromal corneal pigmentations, right eye','Y','0000-00-00 00:00:00'),(112869,10,'H18.053 ','Posterior corneal pigmentations, bilateral','Y','0000-00-00 00:00:00'),(112867,10,'H18.051 ','Posterior corneal pigmentations, right eye','Y','0000-00-00 00:00:00'),(112868,10,'H18.052 ','Posterior corneal pigmentations, left eye','Y','0000-00-00 00:00:00'),(112866,10,'H18.049 ','Kayser-Fleischer ring, unspecified eye','Y','0000-00-00 00:00:00'),(112864,10,'H18.042 ','Kayser-Fleischer ring, left eye','Y','0000-00-00 00:00:00'),(112865,10,'H18.043 ','Kayser-Fleischer ring, bilateral','Y','0000-00-00 00:00:00'),(112862,10,'H18.039 ','Corneal deposits in metabolic disorders, unspecified eye','Y','0000-00-00 00:00:00'),(112863,10,'H18.041 ','Kayser-Fleischer ring, right eye','Y','0000-00-00 00:00:00'),(112861,10,'H18.033 ','Corneal deposits in metabolic disorders, bilateral','Y','0000-00-00 00:00:00'),(112859,10,'H18.031 ','Corneal deposits in metabolic disorders, right eye','Y','0000-00-00 00:00:00'),(112860,10,'H18.032 ','Corneal deposits in metabolic disorders, left eye','Y','0000-00-00 00:00:00'),(112857,10,'H18.023 ','Argentous corneal deposits, bilateral','Y','0000-00-00 00:00:00'),(112858,10,'H18.029 ','Argentous corneal deposits, unspecified eye','Y','0000-00-00 00:00:00'),(112855,10,'H18.021 ','Argentous corneal deposits, right eye','Y','0000-00-00 00:00:00'),(112856,10,'H18.022 ','Argentous corneal deposits, left eye','Y','0000-00-00 00:00:00'),(112854,10,'H18.019 ','Anterior corneal pigmentations, unspecified eye','Y','0000-00-00 00:00:00'),(112852,10,'H18.012 ','Anterior corneal pigmentations, left eye','Y','0000-00-00 00:00:00'),(112853,10,'H18.013 ','Anterior corneal pigmentations, bilateral','Y','0000-00-00 00:00:00'),(112850,10,'H18.009 ','Unspecified corneal deposit, unspecified eye','Y','0000-00-00 00:00:00'),(112851,10,'H18.011 ','Anterior corneal pigmentations, right eye','Y','0000-00-00 00:00:00'),(112849,10,'H18.003 ','Unspecified corneal deposit, bilateral','Y','0000-00-00 00:00:00'),(112847,10,'H18.001 ','Unspecified corneal deposit, right eye','Y','0000-00-00 00:00:00'),(112848,10,'H18.002 ','Unspecified corneal deposit, left eye','Y','0000-00-00 00:00:00'),(112845,10,'H17.89 ','Other corneal scars and opacities','Y','0000-00-00 00:00:00'),(112846,10,'H17.9 ','Unspecified corneal scar and opacity','Y','0000-00-00 00:00:00'),(112844,10,'H17.829 ','Peripheral opacity of cornea, unspecified eye','Y','0000-00-00 00:00:00'),(112842,10,'H17.822 ','Peripheral opacity of cornea, left eye','Y','0000-00-00 00:00:00'),(112843,10,'H17.823 ','Peripheral opacity of cornea, bilateral','Y','0000-00-00 00:00:00'),(112840,10,'H17.819 ','Minor opacity of cornea, unspecified eye','Y','0000-00-00 00:00:00'),(112841,10,'H17.821 ','Peripheral opacity of cornea, right eye','Y','0000-00-00 00:00:00'),(112838,10,'H17.812 ','Minor opacity of cornea, left eye','Y','0000-00-00 00:00:00'),(112839,10,'H17.813 ','Minor opacity of cornea, bilateral','Y','0000-00-00 00:00:00'),(112836,10,'H17.13 ','Central corneal opacity, bilateral','Y','0000-00-00 00:00:00'),(112837,10,'H17.811 ','Minor opacity of cornea, right eye','Y','0000-00-00 00:00:00'),(112835,10,'H17.12 ','Central corneal opacity, left eye','Y','0000-00-00 00:00:00'),(112833,10,'H17.10 ','Central corneal opacity, unspecified eye','Y','0000-00-00 00:00:00'),(112834,10,'H17.11 ','Central corneal opacity, right eye','Y','0000-00-00 00:00:00'),(112830,10,'H17.01 ','Adherent leukoma, right eye','Y','0000-00-00 00:00:00'),(112831,10,'H17.02 ','Adherent leukoma, left eye','Y','0000-00-00 00:00:00'),(112832,10,'H17.03 ','Adherent leukoma, bilateral','Y','0000-00-00 00:00:00'),(112828,10,'H16.9 ','Unspecified keratitis','Y','0000-00-00 00:00:00'),(112829,10,'H17.00 ','Adherent leukoma, unspecified eye','Y','0000-00-00 00:00:00'),(112826,10,'H16.449 ','Deep vascularization of cornea, unspecified eye','Y','0000-00-00 00:00:00'),(112827,10,'H16.8 ','Other keratitis','Y','0000-00-00 00:00:00'),(112824,10,'H16.442 ','Deep vascularization of cornea, left eye','Y','0000-00-00 00:00:00'),(112825,10,'H16.443 ','Deep vascularization of cornea, bilateral','Y','0000-00-00 00:00:00'),(112823,10,'H16.441 ','Deep vascularization of cornea, right eye','Y','0000-00-00 00:00:00'),(112821,10,'H16.433 ','Localized vascularization of cornea, bilateral','Y','0000-00-00 00:00:00'),(112822,10,'H16.439 ','Localized vascularization of cornea, unspecified eye','Y','0000-00-00 00:00:00'),(112820,10,'H16.432 ','Localized vascularization of cornea, left eye','Y','0000-00-00 00:00:00'),(112818,10,'H16.429 ','Pannus (corneal), unspecified eye','Y','0000-00-00 00:00:00'),(112819,10,'H16.431 ','Localized vascularization of cornea, right eye','Y','0000-00-00 00:00:00'),(112816,10,'H16.422 ','Pannus (corneal), left eye','Y','0000-00-00 00:00:00'),(112817,10,'H16.423 ','Pannus (corneal), bilateral','Y','0000-00-00 00:00:00'),(112814,10,'H16.419 ','Ghost vessels (corneal), unspecified eye','Y','0000-00-00 00:00:00'),(112815,10,'H16.421 ','Pannus (corneal), right eye','Y','0000-00-00 00:00:00'),(112812,10,'H16.412 ','Ghost vessels (corneal), left eye','Y','0000-00-00 00:00:00'),(112813,10,'H16.413 ','Ghost vessels (corneal), bilateral','Y','0000-00-00 00:00:00'),(112811,10,'H16.411 ','Ghost vessels (corneal), right eye','Y','0000-00-00 00:00:00'),(112809,10,'H16.403 ','Unspecified corneal neovascularization, bilateral','Y','0000-00-00 00:00:00'),(112810,10,'H16.409 ','Unspecified corneal neovascularization, unspecified eye','Y','0000-00-00 00:00:00'),(112808,10,'H16.402 ','Unspecified corneal neovascularization, left eye','Y','0000-00-00 00:00:00'),(112806,10,'H16.399 ','Other interstitial and deep keratitis, unspecified eye','Y','0000-00-00 00:00:00'),(112807,10,'H16.401 ','Unspecified corneal neovascularization, right eye','Y','0000-00-00 00:00:00'),(112805,10,'H16.393 ','Other interstitial and deep keratitis, bilateral','Y','0000-00-00 00:00:00'),(112803,10,'H16.391 ','Other interstitial and deep keratitis, right eye','Y','0000-00-00 00:00:00'),(112804,10,'H16.392 ','Other interstitial and deep keratitis, left eye','Y','0000-00-00 00:00:00'),(112802,10,'H16.339 ','Sclerosing keratitis, unspecified eye','Y','0000-00-00 00:00:00'),(112800,10,'H16.332 ','Sclerosing keratitis, left eye','Y','0000-00-00 00:00:00'),(112801,10,'H16.333 ','Sclerosing keratitis, bilateral','Y','0000-00-00 00:00:00'),(112798,10,'H16.329 ','Diffuse interstitial keratitis, unspecified eye','Y','0000-00-00 00:00:00'),(112799,10,'H16.331 ','Sclerosing keratitis, right eye','Y','0000-00-00 00:00:00'),(112796,10,'H16.322 ','Diffuse interstitial keratitis, left eye','Y','0000-00-00 00:00:00'),(112797,10,'H16.323 ','Diffuse interstitial keratitis, bilateral','Y','0000-00-00 00:00:00'),(112794,10,'H16.319 ','Corneal abscess, unspecified eye','Y','0000-00-00 00:00:00'),(112795,10,'H16.321 ','Diffuse interstitial keratitis, right eye','Y','0000-00-00 00:00:00'),(112792,10,'H16.312 ','Corneal abscess, left eye','Y','0000-00-00 00:00:00'),(112793,10,'H16.313 ','Corneal abscess, bilateral','Y','0000-00-00 00:00:00'),(112791,10,'H16.311 ','Corneal abscess, right eye','Y','0000-00-00 00:00:00'),(112789,10,'H16.303 ','Unspecified interstitial keratitis, bilateral','Y','0000-00-00 00:00:00'),(112790,10,'H16.309 ','Unspecified interstitial keratitis, unspecified eye','Y','0000-00-00 00:00:00'),(112787,10,'H16.301 ','Unspecified interstitial keratitis, right eye','Y','0000-00-00 00:00:00'),(112788,10,'H16.302 ','Unspecified interstitial keratitis, left eye','Y','0000-00-00 00:00:00'),(112785,10,'H16.293 ','Other keratoconjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112786,10,'H16.299 ','Other keratoconjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112783,10,'H16.291 ','Other keratoconjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112784,10,'H16.292 ','Other keratoconjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112782,10,'H16.269 ','Vernal keratoconjunctivitis, with limbar and corneal involvement, unspecified eye','Y','0000-00-00 00:00:00'),(112781,10,'H16.263 ','Vernal keratoconjunctivitis, with limbar and corneal involvement, bilateral','Y','0000-00-00 00:00:00'),(112780,10,'H16.262 ','Vernal keratoconjunctivitis, with limbar and corneal involvement, left eye','Y','0000-00-00 00:00:00'),(112779,10,'H16.261 ','Vernal keratoconjunctivitis, with limbar and corneal involvement, right eye','Y','0000-00-00 00:00:00'),(112777,10,'H16.253 ','Phlyctenular keratoconjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112778,10,'H16.259 ','Phlyctenular keratoconjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112776,10,'H16.252 ','Phlyctenular keratoconjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112774,10,'H16.249 ','Ophthalmia nodosa, unspecified eye','Y','0000-00-00 00:00:00'),(112775,10,'H16.251 ','Phlyctenular keratoconjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112772,10,'H16.242 ','Ophthalmia nodosa, left eye','Y','0000-00-00 00:00:00'),(112773,10,'H16.243 ','Ophthalmia nodosa, bilateral','Y','0000-00-00 00:00:00'),(112771,10,'H16.241 ','Ophthalmia nodosa, right eye','Y','0000-00-00 00:00:00'),(112769,10,'H16.233 ','Neurotrophic keratoconjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112770,10,'H16.239 ','Neurotrophic keratoconjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112768,10,'H16.232 ','Neurotrophic keratoconjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112767,10,'H16.231 ','Neurotrophic keratoconjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112765,10,'H16.223 ','Keratoconjunctivitis sicca, not specified as Sjogren\'s, bilateral','Y','0000-00-00 00:00:00'),(112766,10,'H16.229 ','Keratoconjunctivitis sicca, not specified as Sjogren\'s, unspecified eye','Y','0000-00-00 00:00:00'),(112764,10,'H16.222 ','Keratoconjunctivitis sicca, not specified as Sjogren\'s, left eye','Y','0000-00-00 00:00:00'),(112762,10,'H16.219 ','Exposure keratoconjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112763,10,'H16.221 ','Keratoconjunctivitis sicca, not specified as Sjogren\'s, right eye','Y','0000-00-00 00:00:00'),(112760,10,'H16.212 ','Exposure keratoconjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112761,10,'H16.213 ','Exposure keratoconjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112758,10,'H16.209 ','Unspecified keratoconjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112759,10,'H16.211 ','Exposure keratoconjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112756,10,'H16.202 ','Unspecified keratoconjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112757,10,'H16.203 ','Unspecified keratoconjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112754,10,'H16.149 ','Punctate keratitis, unspecified eye','Y','0000-00-00 00:00:00'),(112755,10,'H16.201 ','Unspecified keratoconjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112752,10,'H16.142 ','Punctate keratitis, left eye','Y','0000-00-00 00:00:00'),(112753,10,'H16.143 ','Punctate keratitis, bilateral','Y','0000-00-00 00:00:00'),(112750,10,'H16.139 ','Photokeratitis, unspecified eye','Y','0000-00-00 00:00:00'),(112751,10,'H16.141 ','Punctate keratitis, right eye','Y','0000-00-00 00:00:00'),(112748,10,'H16.132 ','Photokeratitis, left eye','Y','0000-00-00 00:00:00'),(112749,10,'H16.133 ','Photokeratitis, bilateral','Y','0000-00-00 00:00:00'),(112746,10,'H16.129 ','Filamentary keratitis, unspecified eye','Y','0000-00-00 00:00:00'),(112747,10,'H16.131 ','Photokeratitis, right eye','Y','0000-00-00 00:00:00'),(112744,10,'H16.122 ','Filamentary keratitis, left eye','Y','0000-00-00 00:00:00'),(112745,10,'H16.123 ','Filamentary keratitis, bilateral','Y','0000-00-00 00:00:00'),(112742,10,'H16.119 ','Macular keratitis, unspecified eye','Y','0000-00-00 00:00:00'),(112743,10,'H16.121 ','Filamentary keratitis, right eye','Y','0000-00-00 00:00:00'),(112740,10,'H16.112 ','Macular keratitis, left eye','Y','0000-00-00 00:00:00'),(112741,10,'H16.113 ','Macular keratitis, bilateral','Y','0000-00-00 00:00:00'),(112739,10,'H16.111 ','Macular keratitis, right eye','Y','0000-00-00 00:00:00'),(112737,10,'H16.103 ','Unspecified superficial keratitis, bilateral','Y','0000-00-00 00:00:00'),(112738,10,'H16.109 ','Unspecified superficial keratitis, unspecified eye','Y','0000-00-00 00:00:00'),(112735,10,'H16.101 ','Unspecified superficial keratitis, right eye','Y','0000-00-00 00:00:00'),(112736,10,'H16.102 ','Unspecified superficial keratitis, left eye','Y','0000-00-00 00:00:00'),(112733,10,'H16.073 ','Perforated corneal ulcer, bilateral','Y','0000-00-00 00:00:00'),(112734,10,'H16.079 ','Perforated corneal ulcer, unspecified eye','Y','0000-00-00 00:00:00'),(112731,10,'H16.071 ','Perforated corneal ulcer, right eye','Y','0000-00-00 00:00:00'),(112732,10,'H16.072 ','Perforated corneal ulcer, left eye','Y','0000-00-00 00:00:00'),(112729,10,'H16.063 ','Mycotic corneal ulcer, bilateral','Y','0000-00-00 00:00:00'),(112730,10,'H16.069 ','Mycotic corneal ulcer, unspecified eye','Y','0000-00-00 00:00:00'),(112727,10,'H16.061 ','Mycotic corneal ulcer, right eye','Y','0000-00-00 00:00:00'),(112728,10,'H16.062 ','Mycotic corneal ulcer, left eye','Y','0000-00-00 00:00:00'),(112725,10,'H16.053 ','Mooren\'s corneal ulcer, bilateral','Y','0000-00-00 00:00:00'),(112726,10,'H16.059 ','Mooren\'s corneal ulcer, unspecified eye','Y','0000-00-00 00:00:00'),(112723,10,'H16.051 ','Mooren\'s corneal ulcer, right eye','Y','0000-00-00 00:00:00'),(112724,10,'H16.052 ','Mooren\'s corneal ulcer, left eye','Y','0000-00-00 00:00:00'),(112722,10,'H16.049 ','Marginal corneal ulcer, unspecified eye','Y','0000-00-00 00:00:00'),(112720,10,'H16.042 ','Marginal corneal ulcer, left eye','Y','0000-00-00 00:00:00'),(112721,10,'H16.043 ','Marginal corneal ulcer, bilateral','Y','0000-00-00 00:00:00'),(112719,10,'H16.041 ','Marginal corneal ulcer, right eye','Y','0000-00-00 00:00:00'),(112717,10,'H16.033 ','Corneal ulcer with hypopyon, bilateral','Y','0000-00-00 00:00:00'),(112718,10,'H16.039 ','Corneal ulcer with hypopyon, unspecified eye','Y','0000-00-00 00:00:00'),(112715,10,'H16.031 ','Corneal ulcer with hypopyon, right eye','Y','0000-00-00 00:00:00'),(112716,10,'H16.032 ','Corneal ulcer with hypopyon, left eye','Y','0000-00-00 00:00:00'),(112713,10,'H16.023 ','Ring corneal ulcer, bilateral','Y','0000-00-00 00:00:00'),(112714,10,'H16.029 ','Ring corneal ulcer, unspecified eye','Y','0000-00-00 00:00:00'),(112711,10,'H16.021 ','Ring corneal ulcer, right eye','Y','0000-00-00 00:00:00'),(112712,10,'H16.022 ','Ring corneal ulcer, left eye','Y','0000-00-00 00:00:00'),(112709,10,'H16.013 ','Central corneal ulcer, bilateral','Y','0000-00-00 00:00:00'),(112710,10,'H16.019 ','Central corneal ulcer, unspecified eye','Y','0000-00-00 00:00:00'),(112707,10,'H16.011 ','Central corneal ulcer, right eye','Y','0000-00-00 00:00:00'),(112708,10,'H16.012 ','Central corneal ulcer, left eye','Y','0000-00-00 00:00:00'),(112705,10,'H16.003 ','Unspecified corneal ulcer, bilateral','Y','0000-00-00 00:00:00'),(112706,10,'H16.009 ','Unspecified corneal ulcer, unspecified eye','Y','0000-00-00 00:00:00'),(112703,10,'H16.001 ','Unspecified corneal ulcer, right eye','Y','0000-00-00 00:00:00'),(112704,10,'H16.002 ','Unspecified corneal ulcer, left eye','Y','0000-00-00 00:00:00'),(112701,10,'H15.89 ','Other disorders of sclera','Y','0000-00-00 00:00:00'),(112702,10,'H15.9 ','Unspecified disorder of sclera','Y','0000-00-00 00:00:00'),(112699,10,'H15.853 ','Ring staphyloma, bilateral','Y','0000-00-00 00:00:00'),(112700,10,'H15.859 ','Ring staphyloma, unspecified eye','Y','0000-00-00 00:00:00'),(112697,10,'H15.851 ','Ring staphyloma, right eye','Y','0000-00-00 00:00:00'),(112698,10,'H15.852 ','Ring staphyloma, left eye','Y','0000-00-00 00:00:00'),(112695,10,'H15.843 ','Scleral ectasia, bilateral','Y','0000-00-00 00:00:00'),(112696,10,'H15.849 ','Scleral ectasia, unspecified eye','Y','0000-00-00 00:00:00'),(112693,10,'H15.841 ','Scleral ectasia, right eye','Y','0000-00-00 00:00:00'),(112694,10,'H15.842 ','Scleral ectasia, left eye','Y','0000-00-00 00:00:00'),(112692,10,'H15.839 ','Staphyloma posticum, unspecified eye','Y','0000-00-00 00:00:00'),(112690,10,'H15.832 ','Staphyloma posticum, left eye','Y','0000-00-00 00:00:00'),(112691,10,'H15.833 ','Staphyloma posticum, bilateral','Y','0000-00-00 00:00:00'),(112688,10,'H15.829 ','Localized anterior staphyloma, unspecified eye','Y','0000-00-00 00:00:00'),(112689,10,'H15.831 ','Staphyloma posticum, right eye','Y','0000-00-00 00:00:00'),(112687,10,'H15.823 ','Localized anterior staphyloma, bilateral','Y','0000-00-00 00:00:00'),(112685,10,'H15.821 ','Localized anterior staphyloma, right eye','Y','0000-00-00 00:00:00'),(112686,10,'H15.822 ','Localized anterior staphyloma, left eye','Y','0000-00-00 00:00:00'),(112683,10,'H15.813 ','Equatorial staphyloma, bilateral','Y','0000-00-00 00:00:00'),(112684,10,'H15.819 ','Equatorial staphyloma, unspecified eye','Y','0000-00-00 00:00:00'),(112682,10,'H15.812 ','Equatorial staphyloma, left eye','Y','0000-00-00 00:00:00'),(112680,10,'H15.129 ','Nodular episcleritis, unspecified eye','Y','0000-00-00 00:00:00'),(112681,10,'H15.811 ','Equatorial staphyloma, right eye','Y','0000-00-00 00:00:00'),(112678,10,'H15.122 ','Nodular episcleritis, left eye','Y','0000-00-00 00:00:00'),(112679,10,'H15.123 ','Nodular episcleritis, bilateral','Y','0000-00-00 00:00:00'),(112676,10,'H15.119 ','Episcleritis periodica fugax, unspecified eye','Y','0000-00-00 00:00:00'),(112677,10,'H15.121 ','Nodular episcleritis, right eye','Y','0000-00-00 00:00:00'),(112674,10,'H15.112 ','Episcleritis periodica fugax, left eye','Y','0000-00-00 00:00:00'),(112675,10,'H15.113 ','Episcleritis periodica fugax, bilateral','Y','0000-00-00 00:00:00'),(112672,10,'H15.109 ','Unspecified episcleritis, unspecified eye','Y','0000-00-00 00:00:00'),(112673,10,'H15.111 ','Episcleritis periodica fugax, right eye','Y','0000-00-00 00:00:00'),(112671,10,'H15.103 ','Unspecified episcleritis, bilateral','Y','0000-00-00 00:00:00'),(112669,10,'H15.101 ','Unspecified episcleritis, right eye','Y','0000-00-00 00:00:00'),(112670,10,'H15.102 ','Unspecified episcleritis, left eye','Y','0000-00-00 00:00:00'),(112666,10,'H15.092 ','Other scleritis, left eye','Y','0000-00-00 00:00:00'),(112667,10,'H15.093 ','Other scleritis, bilateral','Y','0000-00-00 00:00:00'),(112668,10,'H15.099 ','Other scleritis, unspecified eye','Y','0000-00-00 00:00:00'),(112664,10,'H15.059 ','Scleromalacia perforans, unspecified eye','Y','0000-00-00 00:00:00'),(112665,10,'H15.091 ','Other scleritis, right eye','Y','0000-00-00 00:00:00'),(112662,10,'H15.052 ','Scleromalacia perforans, left eye','Y','0000-00-00 00:00:00'),(112663,10,'H15.053 ','Scleromalacia perforans, bilateral','Y','0000-00-00 00:00:00'),(112660,10,'H15.049 ','Scleritis with corneal involvement, unspecified eye','Y','0000-00-00 00:00:00'),(112661,10,'H15.051 ','Scleromalacia perforans, right eye','Y','0000-00-00 00:00:00'),(112659,10,'H15.043 ','Scleritis with corneal involvement, bilateral','Y','0000-00-00 00:00:00'),(112657,10,'H15.041 ','Scleritis with corneal involvement, right eye','Y','0000-00-00 00:00:00'),(112658,10,'H15.042 ','Scleritis with corneal involvement, left eye','Y','0000-00-00 00:00:00'),(112654,10,'H15.032 ','Posterior scleritis, left eye','Y','0000-00-00 00:00:00'),(112655,10,'H15.033 ','Posterior scleritis, bilateral','Y','0000-00-00 00:00:00'),(112656,10,'H15.039 ','Posterior scleritis, unspecified eye','Y','0000-00-00 00:00:00'),(112652,10,'H15.029 ','Brawny scleritis, unspecified eye','Y','0000-00-00 00:00:00'),(112653,10,'H15.031 ','Posterior scleritis, right eye','Y','0000-00-00 00:00:00'),(112650,10,'H15.022 ','Brawny scleritis, left eye','Y','0000-00-00 00:00:00'),(112651,10,'H15.023 ','Brawny scleritis, bilateral','Y','0000-00-00 00:00:00'),(112648,10,'H15.019 ','Anterior scleritis, unspecified eye','Y','0000-00-00 00:00:00'),(112649,10,'H15.021 ','Brawny scleritis, right eye','Y','0000-00-00 00:00:00'),(112646,10,'H15.012 ','Anterior scleritis, left eye','Y','0000-00-00 00:00:00'),(112647,10,'H15.013 ','Anterior scleritis, bilateral','Y','0000-00-00 00:00:00'),(112644,10,'H15.009 ','Unspecified scleritis, unspecified eye','Y','0000-00-00 00:00:00'),(112645,10,'H15.011 ','Anterior scleritis, right eye','Y','0000-00-00 00:00:00'),(112642,10,'H15.002 ','Unspecified scleritis, left eye','Y','0000-00-00 00:00:00'),(112643,10,'H15.003 ','Unspecified scleritis, bilateral','Y','0000-00-00 00:00:00'),(112640,10,'H11.9 ','Unspecified disorder of conjunctiva','Y','0000-00-00 00:00:00'),(112641,10,'H15.001 ','Unspecified scleritis, right eye','Y','0000-00-00 00:00:00'),(112638,10,'H11.829 ','Conjunctivochalasis, unspecified eye','Y','0000-00-00 00:00:00'),(112639,10,'H11.89 ','Other specified disorders of conjunctiva','Y','0000-00-00 00:00:00'),(112636,10,'H11.822 ','Conjunctivochalasis, left eye','Y','0000-00-00 00:00:00'),(112637,10,'H11.823 ','Conjunctivochalasis, bilateral','Y','0000-00-00 00:00:00'),(112634,10,'H11.819 ','Pseudopterygium of conjunctiva, unspecified eye','Y','0000-00-00 00:00:00'),(112635,10,'H11.821 ','Conjunctivochalasis, right eye','Y','0000-00-00 00:00:00'),(112632,10,'H11.812 ','Pseudopterygium of conjunctiva, left eye','Y','0000-00-00 00:00:00'),(112633,10,'H11.813 ','Pseudopterygium of conjunctiva, bilateral','Y','0000-00-00 00:00:00'),(112630,10,'H11.449 ','Conjunctival cysts, unspecified eye','Y','0000-00-00 00:00:00'),(112631,10,'H11.811 ','Pseudopterygium of conjunctiva, right eye','Y','0000-00-00 00:00:00'),(112628,10,'H11.442 ','Conjunctival cysts, left eye','Y','0000-00-00 00:00:00'),(112629,10,'H11.443 ','Conjunctival cysts, bilateral','Y','0000-00-00 00:00:00'),(112626,10,'H11.439 ','Conjunctival hyperemia, unspecified eye','Y','0000-00-00 00:00:00'),(112627,10,'H11.441 ','Conjunctival cysts, right eye','Y','0000-00-00 00:00:00'),(112624,10,'H11.432 ','Conjunctival hyperemia, left eye','Y','0000-00-00 00:00:00'),(112625,10,'H11.433 ','Conjunctival hyperemia, bilateral','Y','0000-00-00 00:00:00'),(112622,10,'H11.429 ','Conjunctival edema, unspecified eye','Y','0000-00-00 00:00:00'),(112623,10,'H11.431 ','Conjunctival hyperemia, right eye','Y','0000-00-00 00:00:00'),(112620,10,'H11.422 ','Conjunctival edema, left eye','Y','0000-00-00 00:00:00'),(112621,10,'H11.423 ','Conjunctival edema, bilateral','Y','0000-00-00 00:00:00'),(112618,10,'H11.419 ','Vascular abnormalities of conjunctiva, unspecified eye','Y','0000-00-00 00:00:00'),(112619,10,'H11.421 ','Conjunctival edema, right eye','Y','0000-00-00 00:00:00'),(112617,10,'H11.413 ','Vascular abnormalities of conjunctiva, bilateral','Y','0000-00-00 00:00:00'),(112615,10,'H11.411 ','Vascular abnormalities of conjunctiva, right eye','Y','0000-00-00 00:00:00'),(112616,10,'H11.412 ','Vascular abnormalities of conjunctiva, left eye','Y','0000-00-00 00:00:00'),(112613,10,'H11.32 ','Conjunctival hemorrhage, left eye','Y','0000-00-00 00:00:00'),(112614,10,'H11.33 ','Conjunctival hemorrhage, bilateral','Y','0000-00-00 00:00:00'),(112612,10,'H11.31 ','Conjunctival hemorrhage, right eye','Y','0000-00-00 00:00:00'),(112610,10,'H11.249 ','Scarring of conjunctiva, unspecified eye','Y','0000-00-00 00:00:00'),(112611,10,'H11.30 ','Conjunctival hemorrhage, unspecified eye','Y','0000-00-00 00:00:00'),(112608,10,'H11.242 ','Scarring of conjunctiva, left eye','Y','0000-00-00 00:00:00'),(112609,10,'H11.243 ','Scarring of conjunctiva, bilateral','Y','0000-00-00 00:00:00'),(112606,10,'H11.239 ','Symblepharon, unspecified eye','Y','0000-00-00 00:00:00'),(112607,10,'H11.241 ','Scarring of conjunctiva, right eye','Y','0000-00-00 00:00:00'),(112603,10,'H11.231 ','Symblepharon, right eye','Y','0000-00-00 00:00:00'),(112604,10,'H11.232 ','Symblepharon, left eye','Y','0000-00-00 00:00:00'),(112605,10,'H11.233 ','Symblepharon, bilateral','Y','0000-00-00 00:00:00'),(112601,10,'H11.223 ','Conjunctival granuloma, bilateral','Y','0000-00-00 00:00:00'),(112602,10,'H11.229 ','Conjunctival granuloma, unspecified','Y','0000-00-00 00:00:00'),(112599,10,'H11.221 ','Conjunctival granuloma, right eye','Y','0000-00-00 00:00:00'),(112600,10,'H11.222 ','Conjunctival granuloma, left eye','Y','0000-00-00 00:00:00'),(112598,10,'H11.219 ','Conjunctival adhesions and strands (localized), unspecified eye','Y','0000-00-00 00:00:00'),(112596,10,'H11.212 ','Conjunctival adhesions and strands (localized), left eye','Y','0000-00-00 00:00:00'),(112597,10,'H11.213 ','Conjunctival adhesions and strands (localized), bilateral','Y','0000-00-00 00:00:00'),(112595,10,'H11.211 ','Conjunctival adhesions and strands (localized), right eye','Y','0000-00-00 00:00:00'),(112593,10,'H11.153 ','Pinguecula, bilateral','Y','0000-00-00 00:00:00'),(112594,10,'H11.159 ','Pinguecula, unspecified eye','Y','0000-00-00 00:00:00'),(112591,10,'H11.151 ','Pinguecula, right eye','Y','0000-00-00 00:00:00'),(112592,10,'H11.152 ','Pinguecula, left eye','Y','0000-00-00 00:00:00'),(112589,10,'H11.143 ','Conjunctival xerosis, unspecified, bilateral','Y','0000-00-00 00:00:00'),(112590,10,'H11.149 ','Conjunctival xerosis, unspecified, unspecified eye','Y','0000-00-00 00:00:00'),(112588,10,'H11.142 ','Conjunctival xerosis, unspecified, left eye','Y','0000-00-00 00:00:00'),(112586,10,'H11.139 ','Conjunctival pigmentations, unspecified eye','Y','0000-00-00 00:00:00'),(112587,10,'H11.141 ','Conjunctival xerosis, unspecified, right eye','Y','0000-00-00 00:00:00'),(112584,10,'H11.132 ','Conjunctival pigmentations, left eye','Y','0000-00-00 00:00:00'),(112585,10,'H11.133 ','Conjunctival pigmentations, bilateral','Y','0000-00-00 00:00:00'),(112582,10,'H11.129 ','Conjunctival concretions, unspecified eye','Y','0000-00-00 00:00:00'),(112583,10,'H11.131 ','Conjunctival pigmentations, right eye','Y','0000-00-00 00:00:00'),(112580,10,'H11.122 ','Conjunctival concretions, left eye','Y','0000-00-00 00:00:00'),(112581,10,'H11.123 ','Conjunctival concretions, bilateral','Y','0000-00-00 00:00:00'),(112578,10,'H11.119 ','Conjunctival deposits, unspecified eye','Y','0000-00-00 00:00:00'),(112579,10,'H11.121 ','Conjunctival concretions, right eye','Y','0000-00-00 00:00:00'),(112576,10,'H11.112 ','Conjunctival deposits, left eye','Y','0000-00-00 00:00:00'),(112577,10,'H11.113 ','Conjunctival deposits, bilateral','Y','0000-00-00 00:00:00'),(112574,10,'H11.10 ','Unspecified conjunctival degenerations','Y','0000-00-00 00:00:00'),(112575,10,'H11.111 ','Conjunctival deposits, right eye','Y','0000-00-00 00:00:00'),(112573,10,'H11.069 ','Recurrent pterygium of unspecified eye','Y','0000-00-00 00:00:00'),(112571,10,'H11.062 ','Recurrent pterygium of left eye','Y','0000-00-00 00:00:00'),(112572,10,'H11.063 ','Recurrent pterygium of eye, bilateral','Y','0000-00-00 00:00:00'),(112569,10,'H11.059 ','Peripheral pterygium, progressive, unspecified eye','Y','0000-00-00 00:00:00'),(112570,10,'H11.061 ','Recurrent pterygium of right eye','Y','0000-00-00 00:00:00'),(112567,10,'H11.052 ','Peripheral pterygium, progressive, left eye','Y','0000-00-00 00:00:00'),(112568,10,'H11.053 ','Peripheral pterygium, progressive, bilateral','Y','0000-00-00 00:00:00'),(112565,10,'H11.049 ','Peripheral pterygium, stationary, unspecified eye','Y','0000-00-00 00:00:00'),(112566,10,'H11.051 ','Peripheral pterygium, progressive, right eye','Y','0000-00-00 00:00:00'),(112563,10,'H11.042 ','Peripheral pterygium, stationary, left eye','Y','0000-00-00 00:00:00'),(112564,10,'H11.043 ','Peripheral pterygium, stationary, bilateral','Y','0000-00-00 00:00:00'),(112561,10,'H11.039 ','Double pterygium of unspecified eye','Y','0000-00-00 00:00:00'),(112562,10,'H11.041 ','Peripheral pterygium, stationary, right eye','Y','0000-00-00 00:00:00'),(112559,10,'H11.032 ','Double pterygium of left eye','Y','0000-00-00 00:00:00'),(112560,10,'H11.033 ','Double pterygium of eye, bilateral','Y','0000-00-00 00:00:00'),(112557,10,'H11.029 ','Central pterygium of unspecified eye','Y','0000-00-00 00:00:00'),(112558,10,'H11.031 ','Double pterygium of right eye','Y','0000-00-00 00:00:00'),(112555,10,'H11.022 ','Central pterygium of left eye','Y','0000-00-00 00:00:00'),(112556,10,'H11.023 ','Central pterygium of eye, bilateral','Y','0000-00-00 00:00:00'),(112553,10,'H11.019 ','Amyloid pterygium of unspecified eye','Y','0000-00-00 00:00:00'),(112554,10,'H11.021 ','Central pterygium of right eye','Y','0000-00-00 00:00:00'),(112551,10,'H11.012 ','Amyloid pterygium of left eye','Y','0000-00-00 00:00:00'),(112552,10,'H11.013 ','Amyloid pterygium of eye, bilateral','Y','0000-00-00 00:00:00'),(112549,10,'H11.009 ','Unspecified pterygium of unspecified eye','Y','0000-00-00 00:00:00'),(112550,10,'H11.011 ','Amyloid pterygium of right eye','Y','0000-00-00 00:00:00'),(112547,10,'H11.002 ','Unspecified pterygium of left eye','Y','0000-00-00 00:00:00'),(112548,10,'H11.003 ','Unspecified pterygium of eye, bilateral','Y','0000-00-00 00:00:00'),(112544,10,'H10.89 ','Other conjunctivitis','Y','0000-00-00 00:00:00'),(112545,10,'H10.9 ','Unspecified conjunctivitis','Y','0000-00-00 00:00:00'),(112546,10,'H11.001 ','Unspecified pterygium of right eye','Y','0000-00-00 00:00:00'),(112542,10,'H10.823 ','Rosacea conjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112543,10,'H10.829 ','Rosacea conjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112540,10,'H10.821 ','Rosacea conjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112541,10,'H10.822 ','Rosacea conjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112538,10,'H10.813 ','Pingueculitis, bilateral','Y','0000-00-00 00:00:00'),(112539,10,'H10.819 ','Pingueculitis, unspecified eye','Y','0000-00-00 00:00:00'),(112536,10,'H10.811 ','Pingueculitis, right eye','Y','0000-00-00 00:00:00'),(112537,10,'H10.812 ','Pingueculitis, left eye','Y','0000-00-00 00:00:00'),(112535,10,'H10.539 ','Contact blepharoconjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112533,10,'H10.532 ','Contact blepharoconjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112534,10,'H10.533 ','Contact blepharoconjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112531,10,'H10.529 ','Angular blepharoconjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112532,10,'H10.531 ','Contact blepharoconjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112529,10,'H10.522 ','Angular blepharoconjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112530,10,'H10.523 ','Angular blepharoconjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112527,10,'H10.519 ','Ligneous conjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112528,10,'H10.521 ','Angular blepharoconjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112525,10,'H10.512 ','Ligneous conjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112526,10,'H10.513 ','Ligneous conjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112523,10,'H10.509 ','Unspecified blepharoconjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112524,10,'H10.511 ','Ligneous conjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112521,10,'H10.502 ','Unspecified blepharoconjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112522,10,'H10.503 ','Unspecified blepharoconjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112520,10,'H10.501 ','Unspecified blepharoconjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112518,10,'H10.44 ','Vernal conjunctivitis','Y','0000-00-00 00:00:00'),(112519,10,'H10.45 ','Other chronic allergic conjunctivitis','Y','0000-00-00 00:00:00'),(112516,10,'H10.433 ','Chronic follicular conjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112517,10,'H10.439 ','Chronic follicular conjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112514,10,'H10.431 ','Chronic follicular conjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112515,10,'H10.432 ','Chronic follicular conjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112513,10,'H10.429 ','Simple chronic conjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112511,10,'H10.422 ','Simple chronic conjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112512,10,'H10.423 ','Simple chronic conjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112509,10,'H10.419 ','Chronic giant papillary conjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112510,10,'H10.421 ','Simple chronic conjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112508,10,'H10.413 ','Chronic giant papillary conjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112506,10,'H10.411 ','Chronic giant papillary conjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112507,10,'H10.412 ','Chronic giant papillary conjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112504,10,'H10.403 ','Unspecified chronic conjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112505,10,'H10.409 ','Unspecified chronic conjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112502,10,'H10.401 ','Unspecified chronic conjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112503,10,'H10.402 ','Unspecified chronic conjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112500,10,'H10.32 ','Unspecified acute conjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112501,10,'H10.33 ','Unspecified acute conjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112498,10,'H10.30 ','Unspecified acute conjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112499,10,'H10.31 ','Unspecified acute conjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112497,10,'H10.239 ','Serous conjunctivitis, except viral, unspecified eye','Y','0000-00-00 00:00:00'),(112495,10,'H10.232 ','Serous conjunctivitis, except viral, left eye','Y','0000-00-00 00:00:00'),(112496,10,'H10.233 ','Serous conjunctivitis, except viral, bilateral','Y','0000-00-00 00:00:00'),(112493,10,'H10.229 ','Pseudomembranous conjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112494,10,'H10.231 ','Serous conjunctivitis, except viral, right eye','Y','0000-00-00 00:00:00'),(112492,10,'H10.223 ','Pseudomembranous conjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112490,10,'H10.221 ','Pseudomembranous conjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112491,10,'H10.222 ','Pseudomembranous conjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112488,10,'H10.213 ','Acute toxic conjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112489,10,'H10.219 ','Acute toxic conjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112486,10,'H10.211 ','Acute toxic conjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112487,10,'H10.212 ','Acute toxic conjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112484,10,'H10.12 ','Acute atopic conjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112485,10,'H10.13 ','Acute atopic conjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112483,10,'H10.11 ','Acute atopic conjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112481,10,'H10.029 ','Other mucopurulent conjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112482,10,'H10.10 ','Acute atopic conjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112479,10,'H10.022 ','Other mucopurulent conjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112480,10,'H10.023 ','Other mucopurulent conjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112477,10,'H10.019 ','Acute follicular conjunctivitis, unspecified eye','Y','0000-00-00 00:00:00'),(112478,10,'H10.021 ','Other mucopurulent conjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112475,10,'H10.012 ','Acute follicular conjunctivitis, left eye','Y','0000-00-00 00:00:00'),(112476,10,'H10.013 ','Acute follicular conjunctivitis, bilateral','Y','0000-00-00 00:00:00'),(112473,10,'H05.9 ','Unspecified disorder of orbit','Y','0000-00-00 00:00:00'),(112474,10,'H10.011 ','Acute follicular conjunctivitis, right eye','Y','0000-00-00 00:00:00'),(112472,10,'H05.89 ','Other disorders of orbit','Y','0000-00-00 00:00:00'),(112470,10,'H05.823 ','Myopathy of extraocular muscles, bilateral','Y','0000-00-00 00:00:00'),(112471,10,'H05.829 ','Myopathy of extraocular muscles, unspecified orbit','Y','0000-00-00 00:00:00'),(112468,10,'H05.821 ','Myopathy of extraocular muscles, right orbit','Y','0000-00-00 00:00:00'),(112469,10,'H05.822 ','Myopathy of extraocular muscles, left orbit','Y','0000-00-00 00:00:00'),(112466,10,'H05.813 ','Cyst of bilateral orbits','Y','0000-00-00 00:00:00'),(112467,10,'H05.819 ','Cyst of unspecified orbit','Y','0000-00-00 00:00:00'),(112464,10,'H05.811 ','Cyst of right orbit','Y','0000-00-00 00:00:00'),(112465,10,'H05.812 ','Cyst of left orbit','Y','0000-00-00 00:00:00'),(112463,10,'H05.53 ','Retained (old) foreign body following penetrating wound of bilateral orbits','Y','0000-00-00 00:00:00'),(112462,10,'H05.52 ','Retained (old) foreign body following penetrating wound of left orbit','Y','0000-00-00 00:00:00'),(112460,10,'H05.50 ','Retained (old) foreign body following penetrating wound of unspecified orbit','Y','0000-00-00 00:00:00'),(112461,10,'H05.51 ','Retained (old) foreign body following penetrating wound of right orbit','Y','0000-00-00 00:00:00'),(112459,10,'H05.429 ','Enophthalmos due to trauma or surgery, unspecified eye','Y','0000-00-00 00:00:00'),(112457,10,'H05.422 ','Enophthalmos due to trauma or surgery, left eye','Y','0000-00-00 00:00:00'),(112458,10,'H05.423 ','Enophthalmos due to trauma or surgery, bilateral','Y','0000-00-00 00:00:00'),(112456,10,'H05.421 ','Enophthalmos due to trauma or surgery, right eye','Y','0000-00-00 00:00:00'),(112454,10,'H05.413 ','Enophthalmos due to atrophy of orbital tissue, bilateral','Y','0000-00-00 00:00:00'),(112455,10,'H05.419 ','Enophthalmos due to atrophy of orbital tissue, unspecified eye','Y','0000-00-00 00:00:00'),(112453,10,'H05.412 ','Enophthalmos due to atrophy of orbital tissue, left eye','Y','0000-00-00 00:00:00'),(112451,10,'H05.409 ','Unspecified enophthalmos, unspecified eye','Y','0000-00-00 00:00:00'),(112452,10,'H05.411 ','Enophthalmos due to atrophy of orbital tissue, right eye','Y','0000-00-00 00:00:00'),(112449,10,'H05.402 ','Unspecified enophthalmos, left eye','Y','0000-00-00 00:00:00'),(112450,10,'H05.403 ','Unspecified enophthalmos, bilateral','Y','0000-00-00 00:00:00'),(112447,10,'H05.359 ','Exostosis of unspecified orbit','Y','0000-00-00 00:00:00'),(112448,10,'H05.401 ','Unspecified enophthalmos, right eye','Y','0000-00-00 00:00:00'),(112445,10,'H05.352 ','Exostosis of left orbit','Y','0000-00-00 00:00:00'),(112446,10,'H05.353 ','Exostosis of bilateral orbits','Y','0000-00-00 00:00:00'),(112443,10,'H05.349 ','Enlargement of unspecified orbit','Y','0000-00-00 00:00:00'),(112444,10,'H05.351 ','Exostosis of right orbit','Y','0000-00-00 00:00:00'),(112442,10,'H05.343 ','Enlargement of bilateral orbits','Y','0000-00-00 00:00:00'),(112440,10,'H05.341 ','Enlargement of right orbit','Y','0000-00-00 00:00:00'),(112441,10,'H05.342 ','Enlargement of left orbit','Y','0000-00-00 00:00:00'),(112438,10,'H05.333 ','Deformity of bilateral orbits due to trauma or surgery','Y','0000-00-00 00:00:00'),(112439,10,'H05.339 ','Deformity of unspecified orbit due to trauma or surgery','Y','0000-00-00 00:00:00'),(112437,10,'H05.332 ','Deformity of left orbit due to trauma or surgery','Y','0000-00-00 00:00:00'),(112435,10,'H05.329 ','Deformity of unspecified orbit due to bone disease','Y','0000-00-00 00:00:00'),(112436,10,'H05.331 ','Deformity of right orbit due to trauma or surgery','Y','0000-00-00 00:00:00'),(112434,10,'H05.323 ','Deformity of bilateral orbits due to bone disease','Y','0000-00-00 00:00:00'),(112432,10,'H05.321 ','Deformity of right orbit due to bone disease','Y','0000-00-00 00:00:00'),(112433,10,'H05.322 ','Deformity of left orbit due to bone disease','Y','0000-00-00 00:00:00'),(112430,10,'H05.313 ','Atrophy of bilateral orbit','Y','0000-00-00 00:00:00'),(112431,10,'H05.319 ','Atrophy of unspecified orbit','Y','0000-00-00 00:00:00'),(112427,10,'H05.30 ','Unspecified deformity of orbit','Y','0000-00-00 00:00:00'),(112428,10,'H05.311 ','Atrophy of right orbit','Y','0000-00-00 00:00:00'),(112429,10,'H05.312 ','Atrophy of left orbit','Y','0000-00-00 00:00:00'),(112425,10,'H05.263 ','Pulsating exophthalmos, bilateral','Y','0000-00-00 00:00:00'),(112426,10,'H05.269 ','Pulsating exophthalmos, unspecified eye','Y','0000-00-00 00:00:00'),(112423,10,'H05.261 ','Pulsating exophthalmos, right eye','Y','0000-00-00 00:00:00'),(112424,10,'H05.262 ','Pulsating exophthalmos, left eye','Y','0000-00-00 00:00:00'),(112421,10,'H05.253 ','Intermittent exophthalmos, bilateral','Y','0000-00-00 00:00:00'),(112422,10,'H05.259 ','Intermittent exophthalmos, unspecified eye','Y','0000-00-00 00:00:00'),(112420,10,'H05.252 ','Intermittent exophthalmos, left eye','Y','0000-00-00 00:00:00'),(112418,10,'H05.249 ','Constant exophthalmos, unspecified eye','Y','0000-00-00 00:00:00'),(112419,10,'H05.251 ','Intermittent exophthalmos, right eye','Y','0000-00-00 00:00:00'),(112416,10,'H05.242 ','Constant exophthalmos, left eye','Y','0000-00-00 00:00:00'),(112417,10,'H05.243 ','Constant exophthalmos, bilateral','Y','0000-00-00 00:00:00'),(112414,10,'H05.239 ','Hemorrhage of unspecified orbit','Y','0000-00-00 00:00:00'),(112415,10,'H05.241 ','Constant exophthalmos, right eye','Y','0000-00-00 00:00:00'),(112412,10,'H05.232 ','Hemorrhage of left orbit','Y','0000-00-00 00:00:00'),(112413,10,'H05.233 ','Hemorrhage of bilateral orbit','Y','0000-00-00 00:00:00'),(112409,10,'H05.223 ','Edema of bilateral orbit','Y','0000-00-00 00:00:00'),(112410,10,'H05.229 ','Edema of unspecified orbit','Y','0000-00-00 00:00:00'),(112411,10,'H05.231 ','Hemorrhage of right orbit','Y','0000-00-00 00:00:00'),(112407,10,'H05.221 ','Edema of right orbit','Y','0000-00-00 00:00:00'),(112408,10,'H05.222 ','Edema of left orbit','Y','0000-00-00 00:00:00'),(112405,10,'H05.213 ','Displacement (lateral) of globe, bilateral','Y','0000-00-00 00:00:00'),(112406,10,'H05.219 ','Displacement (lateral) of globe, unspecified eye','Y','0000-00-00 00:00:00'),(112403,10,'H05.211 ','Displacement (lateral) of globe, right eye','Y','0000-00-00 00:00:00'),(112404,10,'H05.212 ','Displacement (lateral) of globe, left eye','Y','0000-00-00 00:00:00'),(112401,10,'H05.129 ','Orbital myositis, unspecified orbit','Y','0000-00-00 00:00:00'),(112402,10,'H05.20 ','Unspecified exophthalmos','Y','0000-00-00 00:00:00'),(112399,10,'H05.122 ','Orbital myositis, left orbit','Y','0000-00-00 00:00:00'),(112400,10,'H05.123 ','Orbital myositis, bilateral','Y','0000-00-00 00:00:00'),(112397,10,'H05.119 ','Granuloma of unspecified orbit','Y','0000-00-00 00:00:00'),(112398,10,'H05.121 ','Orbital myositis, right orbit','Y','0000-00-00 00:00:00'),(112395,10,'H05.112 ','Granuloma of left orbit','Y','0000-00-00 00:00:00'),(112396,10,'H05.113 ','Granuloma of bilateral orbits','Y','0000-00-00 00:00:00'),(112393,10,'H05.10 ','Unspecified chronic inflammatory disorders of orbit','Y','0000-00-00 00:00:00'),(112394,10,'H05.111 ','Granuloma of right orbit','Y','0000-00-00 00:00:00'),(112391,10,'H05.043 ','Tenonitis of bilateral orbits','Y','0000-00-00 00:00:00'),(112392,10,'H05.049 ','Tenonitis of unspecified orbit','Y','0000-00-00 00:00:00'),(112389,10,'H05.041 ','Tenonitis of right orbit','Y','0000-00-00 00:00:00'),(112390,10,'H05.042 ','Tenonitis of left orbit','Y','0000-00-00 00:00:00'),(112387,10,'H05.033 ','Periostitis of bilateral orbits','Y','0000-00-00 00:00:00'),(112388,10,'H05.039 ','Periostitis of unspecified orbit','Y','0000-00-00 00:00:00'),(112385,10,'H05.031 ','Periostitis of right orbit','Y','0000-00-00 00:00:00'),(112386,10,'H05.032 ','Periostitis of left orbit','Y','0000-00-00 00:00:00'),(112383,10,'H05.023 ','Osteomyelitis of bilateral orbits','Y','0000-00-00 00:00:00'),(112384,10,'H05.029 ','Osteomyelitis of unspecified orbit','Y','0000-00-00 00:00:00'),(112381,10,'H05.021 ','Osteomyelitis of right orbit','Y','0000-00-00 00:00:00'),(112382,10,'H05.022 ','Osteomyelitis of left orbit','Y','0000-00-00 00:00:00'),(112379,10,'H05.013 ','Cellulitis of bilateral orbits','Y','0000-00-00 00:00:00'),(112380,10,'H05.019 ','Cellulitis of unspecified orbit','Y','0000-00-00 00:00:00'),(112377,10,'H05.011 ','Cellulitis of right orbit','Y','0000-00-00 00:00:00'),(112378,10,'H05.012 ','Cellulitis of left orbit','Y','0000-00-00 00:00:00'),(112375,10,'H04.9 ','Disorder of lacrimal system, unspecified','Y','0000-00-00 00:00:00'),(112376,10,'H05.00 ','Unspecified acute inflammation of orbit','Y','0000-00-00 00:00:00'),(112373,10,'H04.819 ','Granuloma of unspecified lacrimal passage','Y','0000-00-00 00:00:00'),(112374,10,'H04.89 ','Other disorders of lacrimal system','Y','0000-00-00 00:00:00'),(112372,10,'H04.813 ','Granuloma of bilateral lacrimal passages','Y','0000-00-00 00:00:00'),(112370,10,'H04.811 ','Granuloma of right lacrimal passage','Y','0000-00-00 00:00:00'),(112371,10,'H04.812 ','Granuloma of left lacrimal passage','Y','0000-00-00 00:00:00'),(112368,10,'H04.619 ','Lacrimal fistula unspecified lacrimal passage','Y','0000-00-00 00:00:00'),(112369,10,'H04.69 ','Other changes of lacrimal passages','Y','0000-00-00 00:00:00'),(112367,10,'H04.613 ','Lacrimal fistula bilateral lacrimal passages','Y','0000-00-00 00:00:00'),(112365,10,'H04.611 ','Lacrimal fistula right lacrimal passage','Y','0000-00-00 00:00:00'),(112366,10,'H04.612 ','Lacrimal fistula left lacrimal passage','Y','0000-00-00 00:00:00'),(112363,10,'H04.573 ','Stenosis of bilateral lacrimal sac','Y','0000-00-00 00:00:00'),(112364,10,'H04.579 ','Stenosis of unspecified lacrimal sac','Y','0000-00-00 00:00:00'),(112361,10,'H04.571 ','Stenosis of right lacrimal sac','Y','0000-00-00 00:00:00'),(112362,10,'H04.572 ','Stenosis of left lacrimal sac','Y','0000-00-00 00:00:00'),(112360,10,'H04.569 ','Stenosis of unspecified lacrimal punctum','Y','0000-00-00 00:00:00'),(112358,10,'H04.562 ','Stenosis of left lacrimal punctum','Y','0000-00-00 00:00:00'),(112359,10,'H04.563 ','Stenosis of bilateral lacrimal punctum','Y','0000-00-00 00:00:00'),(112356,10,'H04.559 ','Acquired stenosis of unspecified nasolacrimal duct','Y','0000-00-00 00:00:00'),(112357,10,'H04.561 ','Stenosis of right lacrimal punctum','Y','0000-00-00 00:00:00'),(112355,10,'H04.553 ','Acquired stenosis of bilateral nasolacrimal duct','Y','0000-00-00 00:00:00'),(112353,10,'H04.551 ','Acquired stenosis of right nasolacrimal duct','Y','0000-00-00 00:00:00'),(112354,10,'H04.552 ','Acquired stenosis of left nasolacrimal duct','Y','0000-00-00 00:00:00'),(112351,10,'H04.543 ','Stenosis of bilateral lacrimal canaliculi','Y','0000-00-00 00:00:00'),(112352,10,'H04.549 ','Stenosis of unspecified lacrimal canaliculi','Y','0000-00-00 00:00:00'),(112350,10,'H04.542 ','Stenosis of left lacrimal canaliculi','Y','0000-00-00 00:00:00'),(112348,10,'H04.539 ','Neonatal obstruction of unspecified nasolacrimal duct','Y','0000-00-00 00:00:00'),(112349,10,'H04.541 ','Stenosis of right lacrimal canaliculi','Y','0000-00-00 00:00:00'),(112347,10,'H04.533 ','Neonatal obstruction of bilateral nasolacrimal duct','Y','0000-00-00 00:00:00'),(112345,10,'H04.531 ','Neonatal obstruction of right nasolacrimal duct','Y','0000-00-00 00:00:00'),(112346,10,'H04.532 ','Neonatal obstruction of left nasolacrimal duct','Y','0000-00-00 00:00:00'),(112343,10,'H04.523 ','Eversion of bilateral lacrimal punctum','Y','0000-00-00 00:00:00'),(112344,10,'H04.529 ','Eversion of unspecified lacrimal punctum','Y','0000-00-00 00:00:00'),(112342,10,'H04.522 ','Eversion of left lacrimal punctum','Y','0000-00-00 00:00:00'),(112340,10,'H04.519 ','Dacryolith of unspecified lacrimal passage','Y','0000-00-00 00:00:00'),(112341,10,'H04.521 ','Eversion of right lacrimal punctum','Y','0000-00-00 00:00:00'),(112338,10,'H04.512 ','Dacryolith of left lacrimal passage','Y','0000-00-00 00:00:00'),(112339,10,'H04.513 ','Dacryolith of bilateral lacrimal passages','Y','0000-00-00 00:00:00'),(112337,10,'H04.511 ','Dacryolith of right lacrimal passage','Y','0000-00-00 00:00:00'),(112336,10,'H04.439 ','Chronic lacrimal mucocele of unspecified lacrimal passage','Y','0000-00-00 00:00:00'),(112334,10,'H04.432 ','Chronic lacrimal mucocele of left lacrimal passage','Y','0000-00-00 00:00:00'),(112335,10,'H04.433 ','Chronic lacrimal mucocele of bilateral lacrimal passages','Y','0000-00-00 00:00:00'),(112333,10,'H04.431 ','Chronic lacrimal mucocele of right lacrimal passage','Y','0000-00-00 00:00:00'),(112331,10,'H04.423 ','Chronic lacrimal canaliculitis of bilateral lacrimal passages','Y','0000-00-00 00:00:00'),(112332,10,'H04.429 ','Chronic lacrimal canaliculitis of unspecified lacrimal passage','Y','0000-00-00 00:00:00'),(112330,10,'H04.422 ','Chronic lacrimal canaliculitis of left lacrimal passage','Y','0000-00-00 00:00:00'),(112328,10,'H04.419 ','Chronic dacryocystitis of unspecified lacrimal passage','Y','0000-00-00 00:00:00'),(112329,10,'H04.421 ','Chronic lacrimal canaliculitis of right lacrimal passage','Y','0000-00-00 00:00:00'),(112327,10,'H04.413 ','Chronic dacryocystitis of bilateral lacrimal passages','Y','0000-00-00 00:00:00'),(112325,10,'H04.411 ','Chronic dacryocystitis of right lacrimal passage','Y','0000-00-00 00:00:00'),(112326,10,'H04.412 ','Chronic dacryocystitis of left lacrimal passage','Y','0000-00-00 00:00:00'),(112324,10,'H04.339 ','Acute lacrimal canaliculitis of unspecified lacrimal passage','Y','0000-00-00 00:00:00'),(112322,10,'H04.332 ','Acute lacrimal canaliculitis of left lacrimal passage','Y','0000-00-00 00:00:00'),(112323,10,'H04.333 ','Acute lacrimal canaliculitis of bilateral lacrimal passages','Y','0000-00-00 00:00:00'),(112321,10,'H04.331 ','Acute lacrimal canaliculitis of right lacrimal passage','Y','0000-00-00 00:00:00'),(112320,10,'H04.329 ','Acute dacryocystitis of unspecified lacrimal passage','Y','0000-00-00 00:00:00'),(112318,10,'H04.322 ','Acute dacryocystitis of left lacrimal passage','Y','0000-00-00 00:00:00'),(112319,10,'H04.323 ','Acute dacryocystitis of bilateral lacrimal passages','Y','0000-00-00 00:00:00'),(112316,10,'H04.319 ','Phlegmonous dacryocystitis of unspecified lacrimal passage','Y','0000-00-00 00:00:00'),(112317,10,'H04.321 ','Acute dacryocystitis of right lacrimal passage','Y','0000-00-00 00:00:00'),(112315,10,'H04.313 ','Phlegmonous dacryocystitis of bilateral lacrimal passages','Y','0000-00-00 00:00:00'),(112313,10,'H04.311 ','Phlegmonous dacryocystitis of right lacrimal passage','Y','0000-00-00 00:00:00'),(112314,10,'H04.312 ','Phlegmonous dacryocystitis of left lacrimal passage','Y','0000-00-00 00:00:00'),(112312,10,'H04.309 ','Unspecified dacryocystitis of unspecified lacrimal passage','Y','0000-00-00 00:00:00'),(112311,10,'H04.303 ','Unspecified dacryocystitis of bilateral lacrimal passages','Y','0000-00-00 00:00:00'),(112309,10,'H04.301 ','Unspecified dacryocystitis of right lacrimal passage','Y','0000-00-00 00:00:00'),(112310,10,'H04.302 ','Unspecified dacryocystitis of left lacrimal passage','Y','0000-00-00 00:00:00'),(112307,10,'H04.223 ','Epiphora due to insufficient drainage, bilateral','Y','0000-00-00 00:00:00'),(112308,10,'H04.229 ','Epiphora due to insufficient drainage, unspecified side','Y','0000-00-00 00:00:00'),(112306,10,'H04.222 ','Epiphora due to insufficient drainage, left side','Y','0000-00-00 00:00:00'),(112304,10,'H04.219 ','Epiphora due to excess lacrimation, unspecified lacrimal gland','Y','0000-00-00 00:00:00'),(112305,10,'H04.221 ','Epiphora due to insufficient drainage, right side','Y','0000-00-00 00:00:00'),(112303,10,'H04.213 ','Epiphora due to excess lacrimation, bilateral lacrimal glands','Y','0000-00-00 00:00:00'),(112301,10,'H04.211 ','Epiphora due to excess lacrimation, right lacrimal gland','Y','0000-00-00 00:00:00'),(112302,10,'H04.212 ','Epiphora due to excess lacrimation, left lacrimal gland','Y','0000-00-00 00:00:00'),(112299,10,'H04.203 ','Unspecified epiphora, bilateral','Y','0000-00-00 00:00:00'),(112300,10,'H04.209 ','Unspecified epiphora, unspecified side','Y','0000-00-00 00:00:00'),(112297,10,'H04.201 ','Unspecified epiphora, right side','Y','0000-00-00 00:00:00'),(112298,10,'H04.202 ','Unspecified epiphora, left side','Y','0000-00-00 00:00:00'),(112296,10,'H04.19 ','Other specified disorders of lacrimal gland','Y','0000-00-00 00:00:00'),(112295,10,'H04.169 ','Lacrimal gland dislocation, unspecified lacrimal gland','Y','0000-00-00 00:00:00'),(112293,10,'H04.162 ','Lacrimal gland dislocation, left lacrimal gland','Y','0000-00-00 00:00:00'),(112294,10,'H04.163 ','Lacrimal gland dislocation, bilateral lacrimal glands','Y','0000-00-00 00:00:00'),(112292,10,'H04.161 ','Lacrimal gland dislocation, right lacrimal gland','Y','0000-00-00 00:00:00'),(112290,10,'H04.153 ','Secondary lacrimal gland atrophy, bilateral lacrimal glands','Y','0000-00-00 00:00:00'),(112291,10,'H04.159 ','Secondary lacrimal gland atrophy, unspecified lacrimal gland','Y','0000-00-00 00:00:00'),(112289,10,'H04.152 ','Secondary lacrimal gland atrophy, left lacrimal gland','Y','0000-00-00 00:00:00'),(112288,10,'H04.151 ','Secondary lacrimal gland atrophy, right lacrimal gland','Y','0000-00-00 00:00:00'),(112286,10,'H04.143 ','Primary lacrimal gland atrophy, bilateral lacrimal glands','Y','0000-00-00 00:00:00'),(112287,10,'H04.149 ','Primary lacrimal gland atrophy, unspecified lacrimal gland','Y','0000-00-00 00:00:00'),(112285,10,'H04.142 ','Primary lacrimal gland atrophy, left lacrimal gland','Y','0000-00-00 00:00:00'),(112283,10,'H04.139 ','Lacrimal cyst, unspecified lacrimal gland','Y','0000-00-00 00:00:00'),(112284,10,'H04.141 ','Primary lacrimal gland atrophy, right lacrimal gland','Y','0000-00-00 00:00:00'),(112281,10,'H04.132 ','Lacrimal cyst, left lacrimal gland','Y','0000-00-00 00:00:00'),(112282,10,'H04.133 ','Lacrimal cyst, bilateral lacrimal glands','Y','0000-00-00 00:00:00'),(112279,10,'H04.129 ','Dry eye syndrome of unspecified lacrimal gland','Y','0000-00-00 00:00:00'),(112280,10,'H04.131 ','Lacrimal cyst, right lacrimal gland','Y','0000-00-00 00:00:00'),(112278,10,'H04.123 ','Dry eye syndrome of bilateral lacrimal glands','Y','0000-00-00 00:00:00'),(112276,10,'H04.121 ','Dry eye syndrome of right lacrimal gland','Y','0000-00-00 00:00:00'),(112277,10,'H04.122 ','Dry eye syndrome of left lacrimal gland','Y','0000-00-00 00:00:00'),(112274,10,'H04.113 ','Dacryops of bilateral lacrimal glands','Y','0000-00-00 00:00:00'),(112275,10,'H04.119 ','Dacryops of unspecified lacrimal gland','Y','0000-00-00 00:00:00'),(112272,10,'H04.111 ','Dacryops of right lacrimal gland','Y','0000-00-00 00:00:00'),(112273,10,'H04.112 ','Dacryops of left lacrimal gland','Y','0000-00-00 00:00:00'),(112270,10,'H04.033 ','Chronic enlargement of bilateral lacrimal glands','Y','0000-00-00 00:00:00'),(112271,10,'H04.039 ','Chronic enlargement of unspecified lacrimal gland','Y','0000-00-00 00:00:00'),(112268,10,'H04.031 ','Chronic enlargement of right lacrimal gland','Y','0000-00-00 00:00:00'),(112269,10,'H04.032 ','Chronic enlargement of left lacrimal gland','Y','0000-00-00 00:00:00'),(112267,10,'H04.029 ','Chronic dacryoadenitis, unspecified lacrimal gland','Y','0000-00-00 00:00:00'),(112265,10,'H04.022 ','Chronic dacryoadenitis, left lacrimal gland','Y','0000-00-00 00:00:00'),(112266,10,'H04.023 ','Chronic dacryoadenitis, bilateral lacrimal gland','Y','0000-00-00 00:00:00'),(112264,10,'H04.021 ','Chronic dacryoadenitis, right lacrimal gland','Y','0000-00-00 00:00:00'),(112262,10,'H04.013 ','Acute dacryoadenitis, bilateral lacrimal glands','Y','0000-00-00 00:00:00'),(112263,10,'H04.019 ','Acute dacryoadenitis, unspecified lacrimal gland','Y','0000-00-00 00:00:00'),(112261,10,'H04.012 ','Acute dacryoadenitis, left lacrimal gland','Y','0000-00-00 00:00:00'),(112259,10,'H04.009 ','Unspecified dacryoadenitis, unspecified lacrimal gland','Y','0000-00-00 00:00:00'),(112260,10,'H04.011 ','Acute dacryoadenitis, right lacrimal gland','Y','0000-00-00 00:00:00'),(112258,10,'H04.003 ','Unspecified dacryoadenitis, bilateral lacrimal glands','Y','0000-00-00 00:00:00'),(112256,10,'H04.001 ','Unspecified dacryoadenitis, right lacrimal gland','Y','0000-00-00 00:00:00'),(112257,10,'H04.002 ','Unspecified dacryoadenitis, left lacrimal gland','Y','0000-00-00 00:00:00'),(112254,10,'H02.89 ','Other specified disorders of eyelid','Y','0000-00-00 00:00:00'),(112255,10,'H02.9 ','Unspecified disorder of eyelid','Y','0000-00-00 00:00:00'),(112253,10,'H02.88B ','Meibomian gland dysfunction left eye, upper and lower eyelids','Y','0000-00-00 00:00:00'),(112252,10,'H02.88A ','Meibomian gland dysfunction right eye, upper and lower eyelids','Y','0000-00-00 00:00:00'),(112251,10,'H02.889 ','Meibomian gland dysfunction of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112250,10,'H02.886 ','Meibomian gland dysfunction of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112249,10,'H02.885 ','Meibomian gland dysfunction left lower eyelid','Y','0000-00-00 00:00:00'),(112248,10,'H02.884 ','Meibomian gland dysfunction left upper eyelid','Y','0000-00-00 00:00:00'),(112246,10,'H02.882 ','Meibomian gland dysfunction right lower eyelid','Y','0000-00-00 00:00:00'),(112247,10,'H02.883 ','Meibomian gland dysfunction of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112245,10,'H02.881 ','Meibomian gland dysfunction right upper eyelid','Y','0000-00-00 00:00:00'),(112243,10,'H02.876 ','Vascular anomalies of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112244,10,'H02.879 ','Vascular anomalies of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112242,10,'H02.875 ','Vascular anomalies of left lower eyelid','Y','0000-00-00 00:00:00'),(112240,10,'H02.873 ','Vascular anomalies of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112241,10,'H02.874 ','Vascular anomalies of left upper eyelid','Y','0000-00-00 00:00:00'),(112239,10,'H02.872 ','Vascular anomalies of right lower eyelid','Y','0000-00-00 00:00:00'),(112237,10,'H02.869 ','Hypertrichosis of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112238,10,'H02.871 ','Vascular anomalies of right upper eyelid','Y','0000-00-00 00:00:00'),(112236,10,'H02.866 ','Hypertrichosis of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112234,10,'H02.864 ','Hypertrichosis of left upper eyelid','Y','0000-00-00 00:00:00'),(112235,10,'H02.865 ','Hypertrichosis of left lower eyelid','Y','0000-00-00 00:00:00'),(112233,10,'H02.863 ','Hypertrichosis of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112232,10,'H02.862 ','Hypertrichosis of right lower eyelid','Y','0000-00-00 00:00:00'),(112230,10,'H02.859 ','Elephantiasis of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112231,10,'H02.861 ','Hypertrichosis of right upper eyelid','Y','0000-00-00 00:00:00'),(112229,10,'H02.856 ','Elephantiasis of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112227,10,'H02.854 ','Elephantiasis of left upper eyelid','Y','0000-00-00 00:00:00'),(112228,10,'H02.855 ','Elephantiasis of left lower eyelid','Y','0000-00-00 00:00:00'),(112226,10,'H02.853 ','Elephantiasis of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112224,10,'H02.851 ','Elephantiasis of right upper eyelid','Y','0000-00-00 00:00:00'),(112225,10,'H02.852 ','Elephantiasis of right lower eyelid','Y','0000-00-00 00:00:00'),(112223,10,'H02.849 ','Edema of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112221,10,'H02.845 ','Edema of left lower eyelid','Y','0000-00-00 00:00:00'),(112222,10,'H02.846 ','Edema of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112219,10,'H02.843 ','Edema of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112220,10,'H02.844 ','Edema of left upper eyelid','Y','0000-00-00 00:00:00'),(112217,10,'H02.841 ','Edema of right upper eyelid','Y','0000-00-00 00:00:00'),(112218,10,'H02.842 ','Edema of right lower eyelid','Y','0000-00-00 00:00:00'),(112216,10,'H02.839 ','Dermatochalasis of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112214,10,'H02.835 ','Dermatochalasis of left lower eyelid','Y','0000-00-00 00:00:00'),(112215,10,'H02.836 ','Dermatochalasis of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112213,10,'H02.834 ','Dermatochalasis of left upper eyelid','Y','0000-00-00 00:00:00'),(112212,10,'H02.833 ','Dermatochalasis of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112210,10,'H02.831 ','Dermatochalasis of right upper eyelid','Y','0000-00-00 00:00:00'),(112211,10,'H02.832 ','Dermatochalasis of right lower eyelid','Y','0000-00-00 00:00:00'),(112209,10,'H02.829 ','Cysts of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112207,10,'H02.825 ','Cysts of left lower eyelid','Y','0000-00-00 00:00:00'),(112208,10,'H02.826 ','Cysts of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112206,10,'H02.824 ','Cysts of left upper eyelid','Y','0000-00-00 00:00:00'),(112204,10,'H02.822 ','Cysts of right lower eyelid','Y','0000-00-00 00:00:00'),(112205,10,'H02.823 ','Cysts of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112203,10,'H02.821 ','Cysts of right upper eyelid','Y','0000-00-00 00:00:00'),(112202,10,'H02.819 ','Retained foreign body in unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112200,10,'H02.815 ','Retained foreign body in left lower eyelid','Y','0000-00-00 00:00:00'),(112201,10,'H02.816 ','Retained foreign body in left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112199,10,'H02.814 ','Retained foreign body in left upper eyelid','Y','0000-00-00 00:00:00'),(112198,10,'H02.813 ','Retained foreign body in right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112196,10,'H02.811 ','Retained foreign body in right upper eyelid','Y','0000-00-00 00:00:00'),(112197,10,'H02.812 ','Retained foreign body in right lower eyelid','Y','0000-00-00 00:00:00'),(112195,10,'H02.79 ','Other degenerative disorders of eyelid and periocular area','Y','0000-00-00 00:00:00'),(112194,10,'H02.739 ','Vitiligo of unspecified eye, unspecified eyelid and periocular area','Y','0000-00-00 00:00:00'),(112193,10,'H02.736 ','Vitiligo of left eye, unspecified eyelid and periocular area','Y','0000-00-00 00:00:00'),(112192,10,'H02.735 ','Vitiligo of left lower eyelid and periocular area','Y','0000-00-00 00:00:00'),(112191,10,'H02.734 ','Vitiligo of left upper eyelid and periocular area','Y','0000-00-00 00:00:00'),(112190,10,'H02.733 ','Vitiligo of right eye, unspecified eyelid and periocular area','Y','0000-00-00 00:00:00'),(112189,10,'H02.732 ','Vitiligo of right lower eyelid and periocular area','Y','0000-00-00 00:00:00'),(112188,10,'H02.731 ','Vitiligo of right upper eyelid and periocular area','Y','0000-00-00 00:00:00'),(112187,10,'H02.729 ','Madarosis of unspecified eye, unspecified eyelid and periocular area','Y','0000-00-00 00:00:00'),(112185,10,'H02.725 ','Madarosis of left lower eyelid and periocular area','Y','0000-00-00 00:00:00'),(112186,10,'H02.726 ','Madarosis of left eye, unspecified eyelid and periocular area','Y','0000-00-00 00:00:00'),(112184,10,'H02.724 ','Madarosis of left upper eyelid and periocular area','Y','0000-00-00 00:00:00'),(112183,10,'H02.723 ','Madarosis of right eye, unspecified eyelid and periocular area','Y','0000-00-00 00:00:00'),(112182,10,'H02.722 ','Madarosis of right lower eyelid and periocular area','Y','0000-00-00 00:00:00'),(112181,10,'H02.721 ','Madarosis of right upper eyelid and periocular area','Y','0000-00-00 00:00:00'),(112179,10,'H02.716 ','Chloasma of left eye, unspecified eyelid and periocular area','Y','0000-00-00 00:00:00'),(112180,10,'H02.719 ','Chloasma of unspecified eye, unspecified eyelid and periocular area','Y','0000-00-00 00:00:00'),(112178,10,'H02.715 ','Chloasma of left lower eyelid and periocular area','Y','0000-00-00 00:00:00'),(112177,10,'H02.714 ','Chloasma of left upper eyelid and periocular area','Y','0000-00-00 00:00:00'),(112175,10,'H02.712 ','Chloasma of right lower eyelid and periocular area','Y','0000-00-00 00:00:00'),(112176,10,'H02.713 ','Chloasma of right eye, unspecified eyelid and periocular area','Y','0000-00-00 00:00:00'),(112174,10,'H02.711 ','Chloasma of right upper eyelid and periocular area','Y','0000-00-00 00:00:00'),(112172,10,'H02.66 ','Xanthelasma of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112173,10,'H02.70 ','Unspecified degenerative disorders of eyelid and periocular area','Y','0000-00-00 00:00:00'),(112170,10,'H02.64 ','Xanthelasma of left upper eyelid','Y','0000-00-00 00:00:00'),(112171,10,'H02.65 ','Xanthelasma of left lower eyelid','Y','0000-00-00 00:00:00'),(112168,10,'H02.62 ','Xanthelasma of right lower eyelid','Y','0000-00-00 00:00:00'),(112169,10,'H02.63 ','Xanthelasma of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112167,10,'H02.61 ','Xanthelasma of right upper eyelid','Y','0000-00-00 00:00:00'),(112165,10,'H02.59 ','Other disorders affecting eyelid function','Y','0000-00-00 00:00:00'),(112166,10,'H02.60 ','Xanthelasma of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112163,10,'H02.536 ','Eyelid retraction left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112164,10,'H02.539 ','Eyelid retraction unspecified eye, unspecified lid','Y','0000-00-00 00:00:00'),(112161,10,'H02.534 ','Eyelid retraction left upper eyelid','Y','0000-00-00 00:00:00'),(112162,10,'H02.535 ','Eyelid retraction left lower eyelid','Y','0000-00-00 00:00:00'),(112160,10,'H02.533 ','Eyelid retraction right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112158,10,'H02.531 ','Eyelid retraction right upper eyelid','Y','0000-00-00 00:00:00'),(112159,10,'H02.532 ','Eyelid retraction right lower eyelid','Y','0000-00-00 00:00:00'),(112157,10,'H02.529 ','Blepharophimosis unspecified eye, unspecified lid','Y','0000-00-00 00:00:00'),(112155,10,'H02.525 ','Blepharophimosis left lower eyelid','Y','0000-00-00 00:00:00'),(112156,10,'H02.526 ','Blepharophimosis left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112153,10,'H02.523 ','Blepharophimosis right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112154,10,'H02.524 ','Blepharophimosis left upper eyelid','Y','0000-00-00 00:00:00'),(112152,10,'H02.522 ','Blepharophimosis right lower eyelid','Y','0000-00-00 00:00:00'),(112150,10,'H02.519 ','Abnormal innervation syndrome unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112151,10,'H02.521 ','Blepharophimosis right upper eyelid','Y','0000-00-00 00:00:00'),(112149,10,'H02.516 ','Abnormal innervation syndrome left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112147,10,'H02.514 ','Abnormal innervation syndrome left upper eyelid','Y','0000-00-00 00:00:00'),(112148,10,'H02.515 ','Abnormal innervation syndrome left lower eyelid','Y','0000-00-00 00:00:00'),(112146,10,'H02.513 ','Abnormal innervation syndrome right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112144,10,'H02.511 ','Abnormal innervation syndrome right upper eyelid','Y','0000-00-00 00:00:00'),(112145,10,'H02.512 ','Abnormal innervation syndrome right lower eyelid','Y','0000-00-00 00:00:00'),(112142,10,'H02.433 ','Paralytic ptosis of bilateral eyelids','Y','0000-00-00 00:00:00'),(112143,10,'H02.439 ','Paralytic ptosis unspecified eyelid','Y','0000-00-00 00:00:00'),(112140,10,'H02.431 ','Paralytic ptosis of right eyelid','Y','0000-00-00 00:00:00'),(112141,10,'H02.432 ','Paralytic ptosis of left eyelid','Y','0000-00-00 00:00:00'),(112139,10,'H02.429 ','Myogenic ptosis of unspecified eyelid','Y','0000-00-00 00:00:00'),(112137,10,'H02.422 ','Myogenic ptosis of left eyelid','Y','0000-00-00 00:00:00'),(112138,10,'H02.423 ','Myogenic ptosis of bilateral eyelids','Y','0000-00-00 00:00:00'),(112135,10,'H02.419 ','Mechanical ptosis of unspecified eyelid','Y','0000-00-00 00:00:00'),(112136,10,'H02.421 ','Myogenic ptosis of right eyelid','Y','0000-00-00 00:00:00'),(112134,10,'H02.413 ','Mechanical ptosis of bilateral eyelids','Y','0000-00-00 00:00:00'),(112132,10,'H02.411 ','Mechanical ptosis of right eyelid','Y','0000-00-00 00:00:00'),(112133,10,'H02.412 ','Mechanical ptosis of left eyelid','Y','0000-00-00 00:00:00'),(112131,10,'H02.409 ','Unspecified ptosis of unspecified eyelid','Y','0000-00-00 00:00:00'),(112129,10,'H02.402 ','Unspecified ptosis of left eyelid','Y','0000-00-00 00:00:00'),(112130,10,'H02.403 ','Unspecified ptosis of bilateral eyelids','Y','0000-00-00 00:00:00'),(112128,10,'H02.401 ','Unspecified ptosis of right eyelid','Y','0000-00-00 00:00:00'),(112126,10,'H02.35 ','Blepharochalasis left lower eyelid','Y','0000-00-00 00:00:00'),(112127,10,'H02.36 ','Blepharochalasis left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112124,10,'H02.33 ','Blepharochalasis right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112125,10,'H02.34 ','Blepharochalasis left upper eyelid','Y','0000-00-00 00:00:00'),(112123,10,'H02.32 ','Blepharochalasis right lower eyelid','Y','0000-00-00 00:00:00'),(112121,10,'H02.30 ','Blepharochalasis unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112122,10,'H02.31 ','Blepharochalasis right upper eyelid','Y','0000-00-00 00:00:00'),(112120,10,'H02.23C ','Paralytic lagophthalmos, bilateral, upper and lower eyelids','Y','0000-00-00 00:00:00'),(112119,10,'H02.23B ','Paralytic lagophthalmos left eye, upper and lower eyelids','Y','0000-00-00 00:00:00'),(112117,10,'H02.239 ','Paralytic lagophthalmos unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112118,10,'H02.23A ','Paralytic lagophthalmos right eye, upper and lower eyelids','Y','0000-00-00 00:00:00'),(112116,10,'H02.236 ','Paralytic lagophthalmos left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112115,10,'H02.235 ','Paralytic lagophthalmos left lower eyelid','Y','0000-00-00 00:00:00'),(112113,10,'H02.233 ','Paralytic lagophthalmos right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112114,10,'H02.234 ','Paralytic lagophthalmos left upper eyelid','Y','0000-00-00 00:00:00'),(112112,10,'H02.232 ','Paralytic lagophthalmos right lower eyelid','Y','0000-00-00 00:00:00'),(112111,10,'H02.231 ','Paralytic lagophthalmos right upper eyelid','Y','0000-00-00 00:00:00'),(112109,10,'H02.22B ','Mechanical lagophthalmos left eye, upper and lower eyelids','Y','0000-00-00 00:00:00'),(112110,10,'H02.22C ','Mechanical lagophthalmos, bilateral, upper and lower eyelids','Y','0000-00-00 00:00:00'),(112108,10,'H02.22A ','Mechanical lagophthalmos right eye, upper and lower eyelids','Y','0000-00-00 00:00:00'),(112107,10,'H02.229 ','Mechanical lagophthalmos unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112105,10,'H02.225 ','Mechanical lagophthalmos left lower eyelid','Y','0000-00-00 00:00:00'),(112106,10,'H02.226 ','Mechanical lagophthalmos left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112104,10,'H02.224 ','Mechanical lagophthalmos left upper eyelid','Y','0000-00-00 00:00:00'),(112103,10,'H02.223 ','Mechanical lagophthalmos right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112101,10,'H02.221 ','Mechanical lagophthalmos right upper eyelid','Y','0000-00-00 00:00:00'),(112102,10,'H02.222 ','Mechanical lagophthalmos right lower eyelid','Y','0000-00-00 00:00:00'),(112100,10,'H02.21C ','Cicatricial lagophthalmos, bilateral, upper and lower eyelids','Y','0000-00-00 00:00:00'),(112099,10,'H02.21B ','Cicatricial lagophthalmos left eye, upper and lower eyelids','Y','0000-00-00 00:00:00'),(112097,10,'H02.219 ','Cicatricial lagophthalmos unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112098,10,'H02.21A ','Cicatricial lagophthalmos right eye, upper and lower eyelids','Y','0000-00-00 00:00:00'),(112096,10,'H02.216 ','Cicatricial lagophthalmos left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112094,10,'H02.214 ','Cicatricial lagophthalmos left upper eyelid','Y','0000-00-00 00:00:00'),(112095,10,'H02.215 ','Cicatricial lagophthalmos left lower eyelid','Y','0000-00-00 00:00:00'),(112093,10,'H02.213 ','Cicatricial lagophthalmos right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112091,10,'H02.211 ','Cicatricial lagophthalmos right upper eyelid','Y','0000-00-00 00:00:00'),(112092,10,'H02.212 ','Cicatricial lagophthalmos right lower eyelid','Y','0000-00-00 00:00:00'),(112090,10,'H02.20C ','Unspecified lagophthalmos, bilateral, upper and lower eyelids','Y','0000-00-00 00:00:00'),(112089,10,'H02.20B ','Unspecified lagophthalmos left eye, upper and lower eyelids','Y','0000-00-00 00:00:00'),(112088,10,'H02.20A ','Unspecified lagophthalmos right eye, upper and lower eyelids','Y','0000-00-00 00:00:00'),(112086,10,'H02.206 ','Unspecified lagophthalmos left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112087,10,'H02.209 ','Unspecified lagophthalmos unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112085,10,'H02.205 ','Unspecified lagophthalmos left lower eyelid','Y','0000-00-00 00:00:00'),(112083,10,'H02.203 ','Unspecified lagophthalmos right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112084,10,'H02.204 ','Unspecified lagophthalmos left upper eyelid','Y','0000-00-00 00:00:00'),(112082,10,'H02.202 ','Unspecified lagophthalmos right lower eyelid','Y','0000-00-00 00:00:00'),(112080,10,'H02.159 ','Paralytic ectropion of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112081,10,'H02.201 ','Unspecified lagophthalmos right upper eyelid','Y','0000-00-00 00:00:00'),(112079,10,'H02.156 ','Paralytic ectropion of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112077,10,'H02.154 ','Paralytic ectropion of left upper eyelid','Y','0000-00-00 00:00:00'),(112078,10,'H02.155 ','Paralytic ectropion of left lower eyelid','Y','0000-00-00 00:00:00'),(112076,10,'H02.153 ','Paralytic ectropion of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112074,10,'H02.151 ','Paralytic ectropion of right upper eyelid','Y','0000-00-00 00:00:00'),(112075,10,'H02.152 ','Paralytic ectropion of right lower eyelid','Y','0000-00-00 00:00:00'),(112073,10,'H02.149 ','Spastic ectropion of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112071,10,'H02.145 ','Spastic ectropion of left lower eyelid','Y','0000-00-00 00:00:00'),(112072,10,'H02.146 ','Spastic ectropion of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112070,10,'H02.144 ','Spastic ectropion of left upper eyelid','Y','0000-00-00 00:00:00'),(112068,10,'H02.142 ','Spastic ectropion of right lower eyelid','Y','0000-00-00 00:00:00'),(112069,10,'H02.143 ','Spastic ectropion of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112067,10,'H02.141 ','Spastic ectropion of right upper eyelid','Y','0000-00-00 00:00:00'),(112065,10,'H02.136 ','Senile ectropion of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112066,10,'H02.139 ','Senile ectropion of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112064,10,'H02.135 ','Senile ectropion of left lower eyelid','Y','0000-00-00 00:00:00'),(112062,10,'H02.133 ','Senile ectropion of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112063,10,'H02.134 ','Senile ectropion of left upper eyelid','Y','0000-00-00 00:00:00'),(112061,10,'H02.132 ','Senile ectropion of right lower eyelid','Y','0000-00-00 00:00:00'),(112059,10,'H02.129 ','Mechanical ectropion of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112060,10,'H02.131 ','Senile ectropion of right upper eyelid','Y','0000-00-00 00:00:00'),(112058,10,'H02.126 ','Mechanical ectropion of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112056,10,'H02.124 ','Mechanical ectropion of left upper eyelid','Y','0000-00-00 00:00:00'),(112057,10,'H02.125 ','Mechanical ectropion of left lower eyelid','Y','0000-00-00 00:00:00'),(112055,10,'H02.123 ','Mechanical ectropion of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112053,10,'H02.121 ','Mechanical ectropion of right upper eyelid','Y','0000-00-00 00:00:00'),(112054,10,'H02.122 ','Mechanical ectropion of right lower eyelid','Y','0000-00-00 00:00:00'),(112052,10,'H02.119 ','Cicatricial ectropion of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112050,10,'H02.115 ','Cicatricial ectropion of left lower eyelid','Y','0000-00-00 00:00:00'),(112051,10,'H02.116 ','Cicatricial ectropion of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112049,10,'H02.114 ','Cicatricial ectropion of left upper eyelid','Y','0000-00-00 00:00:00'),(112047,10,'H02.112 ','Cicatricial ectropion of right lower eyelid','Y','0000-00-00 00:00:00'),(112048,10,'H02.113 ','Cicatricial ectropion of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112046,10,'H02.111 ','Cicatricial ectropion of right upper eyelid','Y','0000-00-00 00:00:00'),(112044,10,'H02.106 ','Unspecified ectropion of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112045,10,'H02.109 ','Unspecified ectropion of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112043,10,'H02.105 ','Unspecified ectropion of left lower eyelid','Y','0000-00-00 00:00:00'),(112041,10,'H02.103 ','Unspecified ectropion of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112042,10,'H02.104 ','Unspecified ectropion of left upper eyelid','Y','0000-00-00 00:00:00'),(112040,10,'H02.102 ','Unspecified ectropion of right lower eyelid','Y','0000-00-00 00:00:00'),(112039,10,'H02.101 ','Unspecified ectropion of right upper eyelid','Y','0000-00-00 00:00:00'),(112037,10,'H02.056 ','Trichiasis without entropion left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112038,10,'H02.059 ','Trichiasis without entropion unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112036,10,'H02.055 ','Trichiasis without entropion left lower eyelid','Y','0000-00-00 00:00:00'),(112035,10,'H02.054 ','Trichiasis without entropion left upper eyelid','Y','0000-00-00 00:00:00'),(112033,10,'H02.052 ','Trichiasis without entropion right lower eyelid','Y','0000-00-00 00:00:00'),(112034,10,'H02.053 ','Trichiasis without entropion right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112032,10,'H02.051 ','Trichiasis without entropion right upper eyelid','Y','0000-00-00 00:00:00'),(112030,10,'H02.046 ','Spastic entropion of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112031,10,'H02.049 ','Spastic entropion of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112029,10,'H02.045 ','Spastic entropion of left lower eyelid','Y','0000-00-00 00:00:00'),(112027,10,'H02.043 ','Spastic entropion of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112028,10,'H02.044 ','Spastic entropion of left upper eyelid','Y','0000-00-00 00:00:00'),(112026,10,'H02.042 ','Spastic entropion of right lower eyelid','Y','0000-00-00 00:00:00'),(112024,10,'H02.039 ','Senile entropion of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112025,10,'H02.041 ','Spastic entropion of right upper eyelid','Y','0000-00-00 00:00:00'),(112023,10,'H02.036 ','Senile entropion of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112021,10,'H02.034 ','Senile entropion of left upper eyelid','Y','0000-00-00 00:00:00'),(112022,10,'H02.035 ','Senile entropion of left lower eyelid','Y','0000-00-00 00:00:00'),(112019,10,'H02.032 ','Senile entropion of right lower eyelid','Y','0000-00-00 00:00:00'),(112020,10,'H02.033 ','Senile entropion of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112018,10,'H02.031 ','Senile entropion of right upper eyelid','Y','0000-00-00 00:00:00'),(112017,10,'H02.029 ','Mechanical entropion of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112015,10,'H02.025 ','Mechanical entropion of left lower eyelid','Y','0000-00-00 00:00:00'),(112016,10,'H02.026 ','Mechanical entropion of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112014,10,'H02.024 ','Mechanical entropion of left upper eyelid','Y','0000-00-00 00:00:00'),(112013,10,'H02.023 ','Mechanical entropion of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112011,10,'H02.021 ','Mechanical entropion of right upper eyelid','Y','0000-00-00 00:00:00'),(112012,10,'H02.022 ','Mechanical entropion of right lower eyelid','Y','0000-00-00 00:00:00'),(112010,10,'H02.019 ','Cicatricial entropion of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112008,10,'H02.015 ','Cicatricial entropion of left lower eyelid','Y','0000-00-00 00:00:00'),(112009,10,'H02.016 ','Cicatricial entropion of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112007,10,'H02.014 ','Cicatricial entropion of left upper eyelid','Y','0000-00-00 00:00:00'),(112005,10,'H02.012 ','Cicatricial entropion of right lower eyelid','Y','0000-00-00 00:00:00'),(112006,10,'H02.013 ','Cicatricial entropion of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112004,10,'H02.011 ','Cicatricial entropion of right upper eyelid','Y','0000-00-00 00:00:00'),(112003,10,'H02.009 ','Unspecified entropion of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112001,10,'H02.005 ','Unspecified entropion of left lower eyelid','Y','0000-00-00 00:00:00'),(112002,10,'H02.006 ','Unspecified entropion of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(112000,10,'H02.004 ','Unspecified entropion of left upper eyelid','Y','0000-00-00 00:00:00'),(111999,10,'H02.003 ','Unspecified entropion of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111997,10,'H02.001 ','Unspecified entropion of right upper eyelid','Y','0000-00-00 00:00:00'),(111998,10,'H02.002 ','Unspecified entropion of right lower eyelid','Y','0000-00-00 00:00:00'),(111996,10,'H01.9 ','Unspecified inflammation of eyelid','Y','0000-00-00 00:00:00'),(111995,10,'H01.8 ','Other specified inflammations of eyelid','Y','0000-00-00 00:00:00'),(111993,10,'H01.146 ','Xeroderma of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111994,10,'H01.149 ','Xeroderma of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111992,10,'H01.145 ','Xeroderma of left lower eyelid','Y','0000-00-00 00:00:00'),(111990,10,'H01.143 ','Xeroderma of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111991,10,'H01.144 ','Xeroderma of left upper eyelid','Y','0000-00-00 00:00:00'),(111989,10,'H01.142 ','Xeroderma of right lower eyelid','Y','0000-00-00 00:00:00'),(111987,10,'H01.139 ','Eczematous dermatitis of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111988,10,'H01.141 ','Xeroderma of right upper eyelid','Y','0000-00-00 00:00:00'),(111986,10,'H01.136 ','Eczematous dermatitis of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111984,10,'H01.134 ','Eczematous dermatitis of left upper eyelid','Y','0000-00-00 00:00:00'),(111985,10,'H01.135 ','Eczematous dermatitis of left lower eyelid','Y','0000-00-00 00:00:00'),(111983,10,'H01.133 ','Eczematous dermatitis of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111981,10,'H01.131 ','Eczematous dermatitis of right upper eyelid','Y','0000-00-00 00:00:00'),(111982,10,'H01.132 ','Eczematous dermatitis of right lower eyelid','Y','0000-00-00 00:00:00'),(111980,10,'H01.129 ','Discoid lupus erythematosus of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111979,10,'H01.126 ','Discoid lupus erythematosus of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111978,10,'H01.125 ','Discoid lupus erythematosus of left lower eyelid','Y','0000-00-00 00:00:00'),(111976,10,'H01.123 ','Discoid lupus erythematosus of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111977,10,'H01.124 ','Discoid lupus erythematosus of left upper eyelid','Y','0000-00-00 00:00:00'),(111975,10,'H01.122 ','Discoid lupus erythematosus of right lower eyelid','Y','0000-00-00 00:00:00'),(111974,10,'H01.121 ','Discoid lupus erythematosus of right upper eyelid','Y','0000-00-00 00:00:00'),(111972,10,'H01.116 ','Allergic dermatitis of left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111973,10,'H01.119 ','Allergic dermatitis of unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111970,10,'H01.114 ','Allergic dermatitis of left upper eyelid','Y','0000-00-00 00:00:00'),(111971,10,'H01.115 ','Allergic dermatitis of left lower eyelid','Y','0000-00-00 00:00:00'),(111969,10,'H01.113 ','Allergic dermatitis of right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111967,10,'H01.111 ','Allergic dermatitis of right upper eyelid','Y','0000-00-00 00:00:00'),(111968,10,'H01.112 ','Allergic dermatitis of right lower eyelid','Y','0000-00-00 00:00:00'),(111966,10,'H01.02B ','Squamous blepharitis left eye, upper and lower eyelids','Y','0000-00-00 00:00:00'),(111965,10,'H01.02A ','Squamous blepharitis right eye, upper and lower eyelids','Y','0000-00-00 00:00:00'),(111963,10,'H01.026 ','Squamous blepharitis left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111964,10,'H01.029 ','Squamous blepharitis unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111962,10,'H01.025 ','Squamous blepharitis left lower eyelid','Y','0000-00-00 00:00:00'),(111960,10,'H01.023 ','Squamous blepharitis right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111961,10,'H01.024 ','Squamous blepharitis left upper eyelid','Y','0000-00-00 00:00:00'),(111959,10,'H01.022 ','Squamous blepharitis right lower eyelid','Y','0000-00-00 00:00:00'),(111957,10,'H01.01B ','Ulcerative blepharitis left eye, upper and lower eyelids','Y','0000-00-00 00:00:00'),(111958,10,'H01.021 ','Squamous blepharitis right upper eyelid','Y','0000-00-00 00:00:00'),(111956,10,'H01.01A ','Ulcerative blepharitis right eye, upper and lower eyelids','Y','0000-00-00 00:00:00'),(111955,10,'H01.019 ','Ulcerative blepharitis unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111953,10,'H01.015 ','Ulcerative blepharitis left lower eyelid','Y','0000-00-00 00:00:00'),(111954,10,'H01.016 ','Ulcerative blepharitis left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111952,10,'H01.014 ','Ulcerative blepharitis left upper eyelid','Y','0000-00-00 00:00:00'),(111950,10,'H01.012 ','Ulcerative blepharitis right lower eyelid','Y','0000-00-00 00:00:00'),(111951,10,'H01.013 ','Ulcerative blepharitis right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111949,10,'H01.011 ','Ulcerative blepharitis right upper eyelid','Y','0000-00-00 00:00:00'),(111947,10,'H01.00A ','Unspecified blepharitis right eye, upper and lower eyelids','Y','0000-00-00 00:00:00'),(111948,10,'H01.00B ','Unspecified blepharitis left eye, upper and lower eyelids','Y','0000-00-00 00:00:00'),(111946,10,'H01.009 ','Unspecified blepharitis unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111944,10,'H01.005 ','Unspecified blepharitis left lower eyelid','Y','0000-00-00 00:00:00'),(111945,10,'H01.006 ','Unspecified blepharitis left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111943,10,'H01.004 ','Unspecified blepharitis left upper eyelid','Y','0000-00-00 00:00:00'),(111942,10,'H01.003 ','Unspecified blepharitis right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111940,10,'H01.001 ','Unspecified blepharitis right upper eyelid','Y','0000-00-00 00:00:00'),(111941,10,'H01.002 ','Unspecified blepharitis right lower eyelid','Y','0000-00-00 00:00:00'),(111939,10,'H00.19 ','Chalazion unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111937,10,'H00.15 ','Chalazion left lower eyelid','Y','0000-00-00 00:00:00'),(111938,10,'H00.16 ','Chalazion left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111936,10,'H00.14 ','Chalazion left upper eyelid','Y','0000-00-00 00:00:00'),(111934,10,'H00.12 ','Chalazion right lower eyelid','Y','0000-00-00 00:00:00'),(111935,10,'H00.13 ','Chalazion right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111933,10,'H00.11 ','Chalazion right upper eyelid','Y','0000-00-00 00:00:00'),(111931,10,'H00.036 ','Abscess of eyelid left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111932,10,'H00.039 ','Abscess of eyelid unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111929,10,'H00.034 ','Abscess of left upper eyelid','Y','0000-00-00 00:00:00'),(111930,10,'H00.035 ','Abscess of left lower eyelid','Y','0000-00-00 00:00:00'),(111928,10,'H00.033 ','Abscess of eyelid right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111926,10,'H00.031 ','Abscess of right upper eyelid','Y','0000-00-00 00:00:00'),(111927,10,'H00.032 ','Abscess of right lower eyelid','Y','0000-00-00 00:00:00'),(111925,10,'H00.029 ','Hordeolum internum unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111923,10,'H00.025 ','Hordeolum internum left lower eyelid','Y','0000-00-00 00:00:00'),(111924,10,'H00.026 ','Hordeolum internum left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111922,10,'H00.024 ','Hordeolum internum left upper eyelid','Y','0000-00-00 00:00:00'),(111920,10,'H00.022 ','Hordeolum internum right lower eyelid','Y','0000-00-00 00:00:00'),(111921,10,'H00.023 ','Hordeolum internum right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111919,10,'H00.021 ','Hordeolum internum right upper eyelid','Y','0000-00-00 00:00:00'),(111918,10,'H00.019 ','Hordeolum externum unspecified eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111916,10,'H00.015 ','Hordeolum externum left lower eyelid','Y','0000-00-00 00:00:00'),(111917,10,'H00.016 ','Hordeolum externum left eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111915,10,'H00.014 ','Hordeolum externum left upper eyelid','Y','0000-00-00 00:00:00'),(111914,10,'H00.013 ','Hordeolum externum right eye, unspecified eyelid','Y','0000-00-00 00:00:00'),(111912,10,'H00.011 ','Hordeolum externum right upper eyelid','Y','0000-00-00 00:00:00'),(111913,10,'H00.012 ','Hordeolum externum right lower eyelid','Y','0000-00-00 00:00:00'),(111911,10,'G99.8 ','Other specified disorders of nervous system in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111910,10,'G99.2 ','Myelopathy in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111908,10,'G98.8 ','Other disorders of nervous system','Y','0000-00-00 00:00:00'),(111909,10,'G99.0 ','Autonomic neuropathy in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111907,10,'G98.0 ','Neurogenic arthritis, not elsewhere classified','Y','0000-00-00 00:00:00'),(111906,10,'G97.84 ','Intracranial hypotension following other procedure','Y','0000-00-00 00:00:00'),(111905,10,'G97.83 ','Intracranial hypotension following lumbar cerebrospinal fluid shunting','Y','0000-00-00 00:00:00'),(111903,10,'G97.81 ','Other intraoperative complications of nervous system','Y','0000-00-00 00:00:00'),(111904,10,'G97.82 ','Other postprocedural complications and disorders of nervous system','Y','0000-00-00 00:00:00'),(111902,10,'G97.64 ','Postprocedural seroma of a nervous system organ or structure following other procedure','Y','0000-00-00 00:00:00'),(111901,10,'G97.63 ','Postprocedural seroma of a nervous system organ or structure following a nervous system procedure','Y','0000-00-00 00:00:00'),(111900,10,'G97.62 ','Postprocedural hematoma of a nervous system organ or structure following other procedure','Y','0000-00-00 00:00:00'),(111899,10,'G97.61 ','Postprocedural hematoma of a nervous system organ or structure following a nervous system procedure','Y','0000-00-00 00:00:00'),(111898,10,'G97.52 ','Postprocedural hemorrhage of a nervous system organ or structure following other procedure','Y','0000-00-00 00:00:00'),(111897,10,'G97.51 ','Postprocedural hemorrhage of a nervous system organ or structure following a nervous system procedure','Y','0000-00-00 00:00:00'),(111896,10,'G97.49 ','Accidental puncture and laceration of other nervous system organ or structure during other procedure','Y','0000-00-00 00:00:00'),(111895,10,'G97.48 ','Accidental puncture and laceration of other nervous system organ or structure during a nervous system procedure','Y','0000-00-00 00:00:00'),(111894,10,'G97.41 ','Accidental puncture or laceration of dura during a procedure','Y','0000-00-00 00:00:00'),(111893,10,'G97.32 ','Intraoperative hemorrhage and hematoma of a nervous system organ or structure complicating other procedure','Y','0000-00-00 00:00:00'),(111892,10,'G97.31 ','Intraoperative hemorrhage and hematoma of a nervous system organ or structure complicating a nervous system procedure','Y','0000-00-00 00:00:00'),(111890,10,'G97.1 ','Other reaction to spinal and lumbar puncture','Y','0000-00-00 00:00:00'),(111891,10,'G97.2 ','Intracranial hypotension following ventricular shunting','Y','0000-00-00 00:00:00'),(111889,10,'G97.0 ','Cerebrospinal fluid leak from spinal puncture','Y','0000-00-00 00:00:00'),(111887,10,'G96.89 ','Other specified disorders of central nervous system','Y','0000-00-00 00:00:00'),(111888,10,'G96.9 ','Disorder of central nervous system, unspecified','Y','0000-00-00 00:00:00'),(111885,10,'G96.811 ','Intracranial hypotension, spontaneous','Y','0000-00-00 00:00:00'),(111886,10,'G96.819 ','Other intracranial hypotension','Y','0000-00-00 00:00:00'),(111884,10,'G96.810 ','Intracranial hypotension, unspecified','Y','0000-00-00 00:00:00'),(111882,10,'G96.191 ','Perineural cyst','Y','0000-00-00 00:00:00'),(111883,10,'G96.198 ','Other disorders of meninges, not elsewhere classified','Y','0000-00-00 00:00:00'),(111881,10,'G96.12 ','Meningeal adhesions (cerebral) (spinal)','Y','0000-00-00 00:00:00'),(111879,10,'G96.09 ','Other spinal cerebrospinal fluid leak','Y','0000-00-00 00:00:00'),(111880,10,'G96.11 ','Dural tear','Y','0000-00-00 00:00:00'),(111878,10,'G96.08 ','Other cranial cerebrospinal fluid leak','Y','0000-00-00 00:00:00'),(111876,10,'G96.01 ','Cranial cerebrospinal fluid leak, spontaneous','Y','0000-00-00 00:00:00'),(111877,10,'G96.02 ','Spinal cerebrospinal fluid leak, spontaneous','Y','0000-00-00 00:00:00'),(111875,10,'G96.00 ','Cerebrospinal fluid leak, unspecified','Y','0000-00-00 00:00:00'),(111873,10,'G95.89 ','Other specified diseases of spinal cord','Y','0000-00-00 00:00:00'),(111874,10,'G95.9 ','Disease of spinal cord, unspecified','Y','0000-00-00 00:00:00'),(111871,10,'G95.29 ','Other cord compression','Y','0000-00-00 00:00:00'),(111872,10,'G95.81 ','Conus medullaris syndrome','Y','0000-00-00 00:00:00'),(111870,10,'G95.20 ','Unspecified cord compression','Y','0000-00-00 00:00:00'),(111868,10,'G95.11 ','Acute infarction of spinal cord (embolic) (nonembolic)','Y','0000-00-00 00:00:00'),(111869,10,'G95.19 ','Other vascular myelopathies','Y','0000-00-00 00:00:00'),(111867,10,'G95.0 ','Syringomyelia and syringobulbia','Y','0000-00-00 00:00:00'),(111865,10,'G93.9 ','Disorder of brain, unspecified','Y','0000-00-00 00:00:00'),(111866,10,'G94','Other disorders of brain in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111863,10,'G93.82 ','Brain death','Y','0000-00-00 00:00:00'),(111864,10,'G93.89 ','Other specified disorders of brain','Y','0000-00-00 00:00:00'),(111861,10,'G93.7 ','Reye\'s syndrome','Y','0000-00-00 00:00:00'),(111862,10,'G93.81 ','Temporal sclerosis','Y','0000-00-00 00:00:00'),(111859,10,'G93.5 ','Compression of brain','Y','0000-00-00 00:00:00'),(111860,10,'G93.6 ','Cerebral edema','Y','0000-00-00 00:00:00'),(111857,10,'G93.44 ','Adult-onset leukodystrophy with axonal spheroids','Y','0000-00-00 00:00:00'),(111858,10,'G93.49 ','Other encephalopathy','Y','0000-00-00 00:00:00'),(111856,10,'G93.43 ','Leukoencephalopathy with calcifications and cysts','Y','0000-00-00 00:00:00'),(111854,10,'G93.41 ','Metabolic encephalopathy','Y','0000-00-00 00:00:00'),(111855,10,'G93.42 ','Megaloencephalic leukoencephalopathy with subcortical cysts','Y','0000-00-00 00:00:00'),(111853,10,'G93.40 ','Encephalopathy, unspecified','Y','0000-00-00 00:00:00'),(111851,10,'G93.32 ','Myalgic encephalomyelitis/chronic fatigue syndrome','Y','0000-00-00 00:00:00'),(111852,10,'G93.39 ','Other post infection and related fatigue syndromes','Y','0000-00-00 00:00:00'),(111849,10,'G93.2 ','Benign intracranial hypertension','Y','0000-00-00 00:00:00'),(111850,10,'G93.31 ','Postviral fatigue syndrome','Y','0000-00-00 00:00:00'),(111847,10,'G93.0 ','Cerebral cysts','Y','0000-00-00 00:00:00'),(111848,10,'G93.1 ','Anoxic brain damage, not elsewhere classified','Y','0000-00-00 00:00:00'),(111845,10,'G92.8 ','Other toxic encephalopathy','Y','0000-00-00 00:00:00'),(111846,10,'G92.9 ','Unspecified toxic encephalopathy','Y','0000-00-00 00:00:00'),(111844,10,'G92.05 ','Immune effector cell-associated neurotoxicity syndrome, grade 5','Y','0000-00-00 00:00:00'),(111843,10,'G92.04 ','Immune effector cell-associated neurotoxicity syndrome, grade 4','Y','0000-00-00 00:00:00'),(111842,10,'G92.03 ','Immune effector cell-associated neurotoxicity syndrome, grade 3','Y','0000-00-00 00:00:00'),(111841,10,'G92.02 ','Immune effector cell-associated neurotoxicity syndrome, grade 2','Y','0000-00-00 00:00:00'),(111840,10,'G92.01 ','Immune effector cell-associated neurotoxicity syndrome, grade 1','Y','0000-00-00 00:00:00'),(111839,10,'G92.00 ','Immune effector cell-associated neurotoxicity syndrome, grade unspecified','Y','0000-00-00 00:00:00'),(111837,10,'G91.8 ','Other hydrocephalus','Y','0000-00-00 00:00:00'),(111838,10,'G91.9 ','Hydrocephalus, unspecified','Y','0000-00-00 00:00:00'),(111836,10,'G91.4 ','Hydrocephalus in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111834,10,'G91.2 ','(Idiopathic) normal pressure hydrocephalus','Y','0000-00-00 00:00:00'),(111835,10,'G91.3 ','Post-traumatic hydrocephalus, unspecified','Y','0000-00-00 00:00:00'),(111832,10,'G91.0 ','Communicating hydrocephalus','Y','0000-00-00 00:00:00'),(111833,10,'G91.1 ','Obstructive hydrocephalus','Y','0000-00-00 00:00:00'),(111831,10,'G90.B ','LMNB1-related autosomal dominant leukodystrophy','Y','0000-00-00 00:00:00'),(111829,10,'G90.9 ','Disorder of the autonomic nervous system, unspecified','Y','0000-00-00 00:00:00'),(111830,10,'G90.A ','Postural orthostatic tachycardia syndrome [POTS]','Y','0000-00-00 00:00:00'),(111828,10,'G90.8 ','Other disorders of autonomic nervous system','Y','0000-00-00 00:00:00'),(111826,10,'G90.529 ','Complex regional pain syndrome I of unspecified lower limb','Y','0000-00-00 00:00:00'),(111827,10,'G90.59 ','Complex regional pain syndrome I of other specified site','Y','0000-00-00 00:00:00'),(111825,10,'G90.523 ','Complex regional pain syndrome I of lower limb, bilateral','Y','0000-00-00 00:00:00'),(111823,10,'G90.521 ','Complex regional pain syndrome I of right lower limb','Y','0000-00-00 00:00:00'),(111824,10,'G90.522 ','Complex regional pain syndrome I of left lower limb','Y','0000-00-00 00:00:00'),(111822,10,'G90.519 ','Complex regional pain syndrome I of unspecified upper limb','Y','0000-00-00 00:00:00'),(111821,10,'G90.513 ','Complex regional pain syndrome I of upper limb, bilateral','Y','0000-00-00 00:00:00'),(111819,10,'G90.511 ','Complex regional pain syndrome I of right upper limb','Y','0000-00-00 00:00:00'),(111820,10,'G90.512 ','Complex regional pain syndrome I of left upper limb','Y','0000-00-00 00:00:00'),(111818,10,'G90.50 ','Complex regional pain syndrome I, unspecified','Y','0000-00-00 00:00:00'),(111817,10,'G90.4 ','Autonomic dysreflexia','Y','0000-00-00 00:00:00'),(111815,10,'G90.2 ','Horner\'s syndrome','Y','0000-00-00 00:00:00'),(111816,10,'G90.3 ','Multi-system degeneration of the autonomic nervous system','Y','0000-00-00 00:00:00'),(111814,10,'G90.1 ','Familial dysautonomia [Riley-Day]','Y','0000-00-00 00:00:00'),(111813,10,'G90.09 ','Other idiopathic peripheral autonomic neuropathy','Y','0000-00-00 00:00:00'),(111812,10,'G90.01 ','Carotid sinus syncope','Y','0000-00-00 00:00:00'),(111810,10,'G89.3 ','Neoplasm related pain (acute) (chronic)','Y','0000-00-00 00:00:00'),(111811,10,'G89.4 ','Chronic pain syndrome','Y','0000-00-00 00:00:00'),(111809,10,'G89.29 ','Other chronic pain','Y','0000-00-00 00:00:00'),(111807,10,'G89.22 ','Chronic post-thoracotomy pain','Y','0000-00-00 00:00:00'),(111808,10,'G89.28 ','Other chronic postprocedural pain','Y','0000-00-00 00:00:00'),(111806,10,'G89.21 ','Chronic pain due to trauma','Y','0000-00-00 00:00:00'),(111804,10,'G89.12 ','Acute post-thoracotomy pain','Y','0000-00-00 00:00:00'),(111805,10,'G89.18 ','Other acute postprocedural pain','Y','0000-00-00 00:00:00'),(111802,10,'G89.0 ','Central pain syndrome','Y','0000-00-00 00:00:00'),(111803,10,'G89.11 ','Acute pain due to trauma','Y','0000-00-00 00:00:00'),(111800,10,'G83.89 ','Other specified paralytic syndromes','Y','0000-00-00 00:00:00'),(111801,10,'G83.9 ','Paralytic syndrome, unspecified','Y','0000-00-00 00:00:00'),(111799,10,'G83.84 ','Todd\'s paralysis (postepileptic)','Y','0000-00-00 00:00:00'),(111797,10,'G83.82 ','Anterior cord syndrome','Y','0000-00-00 00:00:00'),(111798,10,'G83.83 ','Posterior cord syndrome','Y','0000-00-00 00:00:00'),(111795,10,'G83.5 ','Locked-in state','Y','0000-00-00 00:00:00'),(111796,10,'G83.81 ','Brown-Sequard syndrome','Y','0000-00-00 00:00:00'),(111793,10,'G83.34 ','Monoplegia, unspecified affecting left nondominant side','Y','0000-00-00 00:00:00'),(111794,10,'G83.4 ','Cauda equina syndrome','Y','0000-00-00 00:00:00'),(111792,10,'G83.33 ','Monoplegia, unspecified affecting right nondominant side','Y','0000-00-00 00:00:00'),(111790,10,'G83.31 ','Monoplegia, unspecified affecting right dominant side','Y','0000-00-00 00:00:00'),(111791,10,'G83.32 ','Monoplegia, unspecified affecting left dominant side','Y','0000-00-00 00:00:00'),(111789,10,'G83.30 ','Monoplegia, unspecified affecting unspecified side','Y','0000-00-00 00:00:00'),(111788,10,'G83.24 ','Monoplegia of upper limb affecting left nondominant side','Y','0000-00-00 00:00:00'),(111787,10,'G83.23 ','Monoplegia of upper limb affecting right nondominant side','Y','0000-00-00 00:00:00'),(111786,10,'G83.22 ','Monoplegia of upper limb affecting left dominant side','Y','0000-00-00 00:00:00'),(111785,10,'G83.21 ','Monoplegia of upper limb affecting right dominant side','Y','0000-00-00 00:00:00'),(111783,10,'G83.14 ','Monoplegia of lower limb affecting left nondominant side','Y','0000-00-00 00:00:00'),(111784,10,'G83.20 ','Monoplegia of upper limb affecting unspecified side','Y','0000-00-00 00:00:00'),(111782,10,'G83.13 ','Monoplegia of lower limb affecting right nondominant side','Y','0000-00-00 00:00:00'),(111781,10,'G83.12 ','Monoplegia of lower limb affecting left dominant side','Y','0000-00-00 00:00:00'),(111780,10,'G83.11 ','Monoplegia of lower limb affecting right dominant side','Y','0000-00-00 00:00:00'),(111779,10,'G83.10 ','Monoplegia of lower limb affecting unspecified side','Y','0000-00-00 00:00:00'),(111777,10,'G82.54 ','Quadriplegia, C5-C7 incomplete','Y','0000-00-00 00:00:00'),(111778,10,'G83.0 ','Diplegia of upper limbs','Y','0000-00-00 00:00:00'),(111775,10,'G82.52 ','Quadriplegia, C1-C4 incomplete','Y','0000-00-00 00:00:00'),(111776,10,'G82.53 ','Quadriplegia, C5-C7 complete','Y','0000-00-00 00:00:00'),(111774,10,'G82.51 ','Quadriplegia, C1-C4 complete','Y','0000-00-00 00:00:00'),(111772,10,'G82.22 ','Paraplegia, incomplete','Y','0000-00-00 00:00:00'),(111773,10,'G82.50 ','Quadriplegia, unspecified','Y','0000-00-00 00:00:00'),(111771,10,'G82.21 ','Paraplegia, complete','Y','0000-00-00 00:00:00'),(111770,10,'G82.20 ','Paraplegia, unspecified','Y','0000-00-00 00:00:00'),(111769,10,'G81.94 ','Hemiplegia, unspecified affecting left nondominant side','Y','0000-00-00 00:00:00'),(111767,10,'G81.92 ','Hemiplegia, unspecified affecting left dominant side','Y','0000-00-00 00:00:00'),(111768,10,'G81.93 ','Hemiplegia, unspecified affecting right nondominant side','Y','0000-00-00 00:00:00'),(111766,10,'G81.91 ','Hemiplegia, unspecified affecting right dominant side','Y','0000-00-00 00:00:00'),(111765,10,'G81.90 ','Hemiplegia, unspecified affecting unspecified side','Y','0000-00-00 00:00:00'),(111764,10,'G81.14 ','Spastic hemiplegia affecting left nondominant side','Y','0000-00-00 00:00:00'),(111763,10,'G81.13 ','Spastic hemiplegia affecting right nondominant side','Y','0000-00-00 00:00:00'),(111762,10,'G81.12 ','Spastic hemiplegia affecting left dominant side','Y','0000-00-00 00:00:00'),(111761,10,'G81.11 ','Spastic hemiplegia affecting right dominant side','Y','0000-00-00 00:00:00'),(111759,10,'G81.04 ','Flaccid hemiplegia affecting left nondominant side','Y','0000-00-00 00:00:00'),(111760,10,'G81.10 ','Spastic hemiplegia affecting unspecified side','Y','0000-00-00 00:00:00'),(111758,10,'G81.03 ','Flaccid hemiplegia affecting right nondominant side','Y','0000-00-00 00:00:00'),(111757,10,'G81.02 ','Flaccid hemiplegia affecting left dominant side','Y','0000-00-00 00:00:00'),(111756,10,'G81.01 ','Flaccid hemiplegia affecting right dominant side','Y','0000-00-00 00:00:00'),(111755,10,'G81.00 ','Flaccid hemiplegia affecting unspecified side','Y','0000-00-00 00:00:00'),(111754,10,'G80.9 ','Cerebral palsy, unspecified','Y','0000-00-00 00:00:00'),(111752,10,'G80.4 ','Ataxic cerebral palsy','Y','0000-00-00 00:00:00'),(111753,10,'G80.8 ','Other cerebral palsy','Y','0000-00-00 00:00:00'),(111751,10,'G80.3 ','Athetoid cerebral palsy','Y','0000-00-00 00:00:00'),(111749,10,'G80.1 ','Spastic diplegic cerebral palsy','Y','0000-00-00 00:00:00'),(111750,10,'G80.2 ','Spastic hemiplegic cerebral palsy','Y','0000-00-00 00:00:00'),(111748,10,'G80.0 ','Spastic quadriplegic cerebral palsy','Y','0000-00-00 00:00:00'),(111747,10,'G73.7 ','Myopathy in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111745,10,'G73.1 ','Lambert-Eaton syndrome in neoplastic disease','Y','0000-00-00 00:00:00'),(111746,10,'G73.3 ','Myasthenic syndromes in other diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111743,10,'G72.89 ','Other specified myopathies','Y','0000-00-00 00:00:00'),(111744,10,'G72.9 ','Myopathy, unspecified','Y','0000-00-00 00:00:00'),(111742,10,'G72.81 ','Critical illness myopathy','Y','0000-00-00 00:00:00'),(111741,10,'G72.49 ','Other inflammatory and immune myopathies, not elsewhere classified','Y','0000-00-00 00:00:00'),(111739,10,'G72.3 ','Periodic paralysis','Y','0000-00-00 00:00:00'),(111740,10,'G72.41 ','Inclusion body myositis [IBM]','Y','0000-00-00 00:00:00'),(111737,10,'G72.1 ','Alcoholic myopathy','Y','0000-00-00 00:00:00'),(111738,10,'G72.2 ','Myopathy due to other toxic agents','Y','0000-00-00 00:00:00'),(111735,10,'G71.9 ','Primary disorder of muscle, unspecified','Y','0000-00-00 00:00:00'),(111736,10,'G72.0 ','Drug-induced myopathy','Y','0000-00-00 00:00:00'),(111734,10,'G71.8 ','Other primary disorders of muscles','Y','0000-00-00 00:00:00'),(111732,10,'G71.29 ','Other congenital myopathy','Y','0000-00-00 00:00:00'),(111733,10,'G71.3 ','Mitochondrial myopathy, not elsewhere classified','Y','0000-00-00 00:00:00'),(111731,10,'G71.228 ','Other centronuclear myopathy','Y','0000-00-00 00:00:00'),(111729,10,'G71.21 ','Nemaline myopathy','Y','0000-00-00 00:00:00'),(111730,10,'G71.220 ','X-linked myotubular myopathy','Y','0000-00-00 00:00:00'),(111728,10,'G71.20 ','Congenital myopathy, unspecified','Y','0000-00-00 00:00:00'),(111727,10,'G71.19 ','Other specified myotonic disorders','Y','0000-00-00 00:00:00'),(111726,10,'G71.14 ','Drug induced myotonia','Y','0000-00-00 00:00:00'),(111725,10,'G71.13 ','Myotonic chondrodystrophy','Y','0000-00-00 00:00:00'),(111723,10,'G71.11 ','Myotonic muscular dystrophy','Y','0000-00-00 00:00:00'),(111724,10,'G71.12 ','Myotonia congenita','Y','0000-00-00 00:00:00'),(111722,10,'G71.09 ','Other specified muscular dystrophies','Y','0000-00-00 00:00:00'),(111721,10,'G71.039 ','Limb girdle muscular dystrophy, unspecified','Y','0000-00-00 00:00:00'),(111720,10,'G71.038 ','Other limb girdle muscular dystrophy','Y','0000-00-00 00:00:00'),(111719,10,'G71.035 ','Limb girdle muscular dystrophy due to anoctamin-5 dysfunction','Y','0000-00-00 00:00:00'),(111718,10,'G71.0349 ','Limb girdle muscular dystrophy due to other sarcoglycan dysfunction','Y','0000-00-00 00:00:00'),(111717,10,'G71.0342 ','Limb girdle muscular dystrophy due to beta sarcoglycan dysfunction','Y','0000-00-00 00:00:00'),(111716,10,'G71.0341 ','Limb girdle muscular dystrophy due to alpha sarcoglycan dysfunction','Y','0000-00-00 00:00:00'),(111715,10,'G71.0340 ','Limb girdle muscular dystrophy due to sarcoglycan dysfunction, unspecified','Y','0000-00-00 00:00:00'),(111714,10,'G71.033 ','Limb girdle muscular dystrophy due to dysferlin dysfunction','Y','0000-00-00 00:00:00'),(111713,10,'G71.032 ','Autosomal recessive limb girdle muscular dystrophy due to calpain-3 dysfunction','Y','0000-00-00 00:00:00'),(111711,10,'G71.02 ','Facioscapulohumeral muscular dystrophy','Y','0000-00-00 00:00:00'),(111712,10,'G71.031 ','Autosomal dominant limb girdle muscular dystrophy','Y','0000-00-00 00:00:00'),(111710,10,'G71.01 ','Duchenne or Becker muscular dystrophy','Y','0000-00-00 00:00:00'),(111708,10,'G70.9 ','Myoneural disorder, unspecified','Y','0000-00-00 00:00:00'),(111709,10,'G71.00 ','Muscular dystrophy, unspecified','Y','0000-00-00 00:00:00'),(111706,10,'G70.81 ','Lambert-Eaton syndrome in disease classified elsewhere','Y','0000-00-00 00:00:00'),(111707,10,'G70.89 ','Other specified myoneural disorders','Y','0000-00-00 00:00:00'),(111704,10,'G70.2 ','Congenital and developmental myasthenia','Y','0000-00-00 00:00:00'),(111705,10,'G70.80 ','Lambert-Eaton syndrome, unspecified','Y','0000-00-00 00:00:00'),(111702,10,'G70.01 ','Myasthenia gravis with (acute) exacerbation','Y','0000-00-00 00:00:00'),(111703,10,'G70.1 ','Toxic myoneural disorders','Y','0000-00-00 00:00:00'),(111701,10,'G70.00 ','Myasthenia gravis without (acute) exacerbation','Y','0000-00-00 00:00:00'),(111699,10,'G65.1 ','Sequelae of other inflammatory polyneuropathy','Y','0000-00-00 00:00:00'),(111700,10,'G65.2 ','Sequelae of toxic polyneuropathy','Y','0000-00-00 00:00:00'),(111698,10,'G65.0 ','Sequelae of Guillain-Barre syndrome','Y','0000-00-00 00:00:00'),(111696,10,'G63','Polyneuropathy in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111697,10,'G64','Other disorders of peripheral nervous system','Y','0000-00-00 00:00:00'),(111694,10,'G62.89 ','Other specified polyneuropathies','Y','0000-00-00 00:00:00'),(111695,10,'G62.9 ','Polyneuropathy, unspecified','Y','0000-00-00 00:00:00'),(111693,10,'G62.82 ','Radiation-induced polyneuropathy','Y','0000-00-00 00:00:00'),(111691,10,'G62.2 ','Polyneuropathy due to other toxic agents','Y','0000-00-00 00:00:00'),(111692,10,'G62.81 ','Critical illness polyneuropathy','Y','0000-00-00 00:00:00'),(111690,10,'G62.1 ','Alcoholic polyneuropathy','Y','0000-00-00 00:00:00'),(111688,10,'G61.9 ','Inflammatory polyneuropathy, unspecified','Y','0000-00-00 00:00:00'),(111689,10,'G62.0 ','Drug-induced polyneuropathy','Y','0000-00-00 00:00:00'),(111686,10,'G61.82 ','Multifocal motor neuropathy','Y','0000-00-00 00:00:00'),(111687,10,'G61.89 ','Other inflammatory polyneuropathies','Y','0000-00-00 00:00:00'),(111684,10,'G61.1 ','Serum neuropathy','Y','0000-00-00 00:00:00'),(111685,10,'G61.81 ','Chronic inflammatory demyelinating polyneuritis','Y','0000-00-00 00:00:00'),(111683,10,'G61.0 ','Guillain-Barre syndrome','Y','0000-00-00 00:00:00'),(111681,10,'G60.8 ','Other hereditary and idiopathic neuropathies','Y','0000-00-00 00:00:00'),(111682,10,'G60.9 ','Hereditary and idiopathic neuropathy, unspecified','Y','0000-00-00 00:00:00'),(111679,10,'G60.2 ','Neuropathy in association with hereditary ataxia','Y','0000-00-00 00:00:00'),(111680,10,'G60.3 ','Idiopathic progressive neuropathy','Y','0000-00-00 00:00:00'),(111677,10,'G60.0 ','Hereditary motor and sensory neuropathy','Y','0000-00-00 00:00:00'),(111678,10,'G60.1 ','Refsum\'s disease','Y','0000-00-00 00:00:00'),(111675,10,'G58.9 ','Mononeuropathy, unspecified','Y','0000-00-00 00:00:00'),(111676,10,'G59','Mononeuropathy in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111673,10,'G58.7 ','Mononeuritis multiplex','Y','0000-00-00 00:00:00'),(111674,10,'G58.8 ','Other specified mononeuropathies','Y','0000-00-00 00:00:00'),(111672,10,'G58.0 ','Intercostal neuropathy','Y','0000-00-00 00:00:00'),(111670,10,'G57.92 ','Unspecified mononeuropathy of left lower limb','Y','0000-00-00 00:00:00'),(111671,10,'G57.93 ','Unspecified mononeuropathy of bilateral lower limbs','Y','0000-00-00 00:00:00'),(111669,10,'G57.91 ','Unspecified mononeuropathy of right lower limb','Y','0000-00-00 00:00:00'),(111668,10,'G57.90 ','Unspecified mononeuropathy of unspecified lower limb','Y','0000-00-00 00:00:00'),(111667,10,'G57.83 ','Other specified mononeuropathies of bilateral lower limbs','Y','0000-00-00 00:00:00'),(111665,10,'G57.81 ','Other specified mononeuropathies of right lower limb','Y','0000-00-00 00:00:00'),(111666,10,'G57.82 ','Other specified mononeuropathies of left lower limb','Y','0000-00-00 00:00:00'),(111664,10,'G57.80 ','Other specified mononeuropathies of unspecified lower limb','Y','0000-00-00 00:00:00'),(111662,10,'G57.72 ','Causalgia of left lower limb','Y','0000-00-00 00:00:00'),(111663,10,'G57.73 ','Causalgia of bilateral lower limbs','Y','0000-00-00 00:00:00'),(111661,10,'G57.71 ','Causalgia of right lower limb','Y','0000-00-00 00:00:00'),(111659,10,'G57.63 ','Lesion of plantar nerve, bilateral lower limbs','Y','0000-00-00 00:00:00'),(111660,10,'G57.70 ','Causalgia of unspecified lower limb','Y','0000-00-00 00:00:00'),(111658,10,'G57.62 ','Lesion of plantar nerve, left lower limb','Y','0000-00-00 00:00:00'),(111656,10,'G57.60 ','Lesion of plantar nerve, unspecified lower limb','Y','0000-00-00 00:00:00'),(111657,10,'G57.61 ','Lesion of plantar nerve, right lower limb','Y','0000-00-00 00:00:00'),(111655,10,'G57.53 ','Tarsal tunnel syndrome, bilateral lower limbs','Y','0000-00-00 00:00:00'),(111653,10,'G57.51 ','Tarsal tunnel syndrome, right lower limb','Y','0000-00-00 00:00:00'),(111654,10,'G57.52 ','Tarsal tunnel syndrome, left lower limb','Y','0000-00-00 00:00:00'),(111652,10,'G57.50 ','Tarsal tunnel syndrome, unspecified lower limb','Y','0000-00-00 00:00:00'),(111651,10,'G57.43 ','Lesion of medial popliteal nerve, bilateral lower limbs','Y','0000-00-00 00:00:00'),(111650,10,'G57.42 ','Lesion of medial popliteal nerve, left lower limb','Y','0000-00-00 00:00:00'),(111648,10,'G57.40 ','Lesion of medial popliteal nerve, unspecified lower limb','Y','0000-00-00 00:00:00'),(111649,10,'G57.41 ','Lesion of medial popliteal nerve, right lower limb','Y','0000-00-00 00:00:00'),(111647,10,'G57.33 ','Lesion of lateral popliteal nerve, bilateral lower limbs','Y','0000-00-00 00:00:00'),(111646,10,'G57.32 ','Lesion of lateral popliteal nerve, left lower limb','Y','0000-00-00 00:00:00'),(111645,10,'G57.31 ','Lesion of lateral popliteal nerve, right lower limb','Y','0000-00-00 00:00:00'),(111644,10,'G57.30 ','Lesion of lateral popliteal nerve, unspecified lower limb','Y','0000-00-00 00:00:00'),(111642,10,'G57.22 ','Lesion of femoral nerve, left lower limb','Y','0000-00-00 00:00:00'),(111643,10,'G57.23 ','Lesion of femoral nerve, bilateral lower limbs','Y','0000-00-00 00:00:00'),(111641,10,'G57.21 ','Lesion of femoral nerve, right lower limb','Y','0000-00-00 00:00:00'),(111640,10,'G57.20 ','Lesion of femoral nerve, unspecified lower limb','Y','0000-00-00 00:00:00'),(111639,10,'G57.13 ','Meralgia paresthetica, bilateral lower limbs','Y','0000-00-00 00:00:00'),(111637,10,'G57.11 ','Meralgia paresthetica, right lower limb','Y','0000-00-00 00:00:00'),(111638,10,'G57.12 ','Meralgia paresthetica, left lower limb','Y','0000-00-00 00:00:00'),(111636,10,'G57.10 ','Meralgia paresthetica, unspecified lower limb','Y','0000-00-00 00:00:00'),(111635,10,'G57.03 ','Lesion of sciatic nerve, bilateral lower limbs','Y','0000-00-00 00:00:00'),(111634,10,'G57.02 ','Lesion of sciatic nerve, left lower limb','Y','0000-00-00 00:00:00'),(111633,10,'G57.01 ','Lesion of sciatic nerve, right lower limb','Y','0000-00-00 00:00:00'),(111632,10,'G57.00 ','Lesion of sciatic nerve, unspecified lower limb','Y','0000-00-00 00:00:00'),(111631,10,'G56.93 ','Unspecified mononeuropathy of bilateral upper limbs','Y','0000-00-00 00:00:00'),(111630,10,'G56.92 ','Unspecified mononeuropathy of left upper limb','Y','0000-00-00 00:00:00'),(111629,10,'G56.91 ','Unspecified mononeuropathy of right upper limb','Y','0000-00-00 00:00:00'),(111628,10,'G56.90 ','Unspecified mononeuropathy of unspecified upper limb','Y','0000-00-00 00:00:00'),(111627,10,'G56.83 ','Other specified mononeuropathies of bilateral upper limbs','Y','0000-00-00 00:00:00'),(111626,10,'G56.82 ','Other specified mononeuropathies of left upper limb','Y','0000-00-00 00:00:00'),(111625,10,'G56.81 ','Other specified mononeuropathies of right upper limb','Y','0000-00-00 00:00:00'),(111624,10,'G56.80 ','Other specified mononeuropathies of unspecified upper limb','Y','0000-00-00 00:00:00'),(111623,10,'G56.43 ','Causalgia of bilateral upper limbs','Y','0000-00-00 00:00:00'),(111621,10,'G56.41 ','Causalgia of right upper limb','Y','0000-00-00 00:00:00'),(111622,10,'G56.42 ','Causalgia of left upper limb','Y','0000-00-00 00:00:00'),(111620,10,'G56.40 ','Causalgia of unspecified upper limb','Y','0000-00-00 00:00:00'),(111619,10,'G56.33 ','Lesion of radial nerve, bilateral upper limbs','Y','0000-00-00 00:00:00'),(111618,10,'G56.32 ','Lesion of radial nerve, left upper limb','Y','0000-00-00 00:00:00'),(111617,10,'G56.31 ','Lesion of radial nerve, right upper limb','Y','0000-00-00 00:00:00'),(111616,10,'G56.30 ','Lesion of radial nerve, unspecified upper limb','Y','0000-00-00 00:00:00'),(111614,10,'G56.22 ','Lesion of ulnar nerve, left upper limb','Y','0000-00-00 00:00:00'),(111615,10,'G56.23 ','Lesion of ulnar nerve, bilateral upper limbs','Y','0000-00-00 00:00:00'),(111613,10,'G56.21 ','Lesion of ulnar nerve, right upper limb','Y','0000-00-00 00:00:00'),(111612,10,'G56.20 ','Lesion of ulnar nerve, unspecified upper limb','Y','0000-00-00 00:00:00'),(111611,10,'G56.13 ','Other lesions of median nerve, bilateral upper limbs','Y','0000-00-00 00:00:00'),(111610,10,'G56.12 ','Other lesions of median nerve, left upper limb','Y','0000-00-00 00:00:00'),(111609,10,'G56.11 ','Other lesions of median nerve, right upper limb','Y','0000-00-00 00:00:00'),(111608,10,'G56.10 ','Other lesions of median nerve, unspecified upper limb','Y','0000-00-00 00:00:00'),(111606,10,'G56.02 ','Carpal tunnel syndrome, left upper limb','Y','0000-00-00 00:00:00'),(111607,10,'G56.03 ','Carpal tunnel syndrome, bilateral upper limbs','Y','0000-00-00 00:00:00'),(111605,10,'G56.01 ','Carpal tunnel syndrome, right upper limb','Y','0000-00-00 00:00:00'),(111604,10,'G56.00 ','Carpal tunnel syndrome, unspecified upper limb','Y','0000-00-00 00:00:00'),(111603,10,'G55','Nerve root and plexus compressions in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111601,10,'G54.8 ','Other nerve root and plexus disorders','Y','0000-00-00 00:00:00'),(111602,10,'G54.9 ','Nerve root and plexus disorder, unspecified','Y','0000-00-00 00:00:00'),(111600,10,'G54.7 ','Phantom limb syndrome without pain','Y','0000-00-00 00:00:00'),(111598,10,'G54.5 ','Neuralgic amyotrophy','Y','0000-00-00 00:00:00'),(111599,10,'G54.6 ','Phantom limb syndrome with pain','Y','0000-00-00 00:00:00'),(111597,10,'G54.4 ','Lumbosacral root disorders, not elsewhere classified','Y','0000-00-00 00:00:00'),(111596,10,'G54.3 ','Thoracic root disorders, not elsewhere classified','Y','0000-00-00 00:00:00'),(111595,10,'G54.2 ','Cervical root disorders, not elsewhere classified','Y','0000-00-00 00:00:00'),(111593,10,'G54.0 ','Brachial plexus disorders','Y','0000-00-00 00:00:00'),(111594,10,'G54.1 ','Lumbosacral plexus disorders','Y','0000-00-00 00:00:00'),(111592,10,'G53','Cranial nerve disorders in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111591,10,'G52.9 ','Cranial nerve disorder, unspecified','Y','0000-00-00 00:00:00'),(111589,10,'G52.7 ','Disorders of multiple cranial nerves','Y','0000-00-00 00:00:00'),(111590,10,'G52.8 ','Disorders of other specified cranial nerves','Y','0000-00-00 00:00:00'),(111588,10,'G52.3 ','Disorders of hypoglossal nerve','Y','0000-00-00 00:00:00'),(111586,10,'G52.1 ','Disorders of glossopharyngeal nerve','Y','0000-00-00 00:00:00'),(111587,10,'G52.2 ','Disorders of vagus nerve','Y','0000-00-00 00:00:00'),(111585,10,'G52.0 ','Disorders of olfactory nerve','Y','0000-00-00 00:00:00'),(111583,10,'G51.8 ','Other disorders of facial nerve','Y','0000-00-00 00:00:00'),(111584,10,'G51.9 ','Disorder of facial nerve, unspecified','Y','0000-00-00 00:00:00'),(111582,10,'G51.4 ','Facial myokymia','Y','0000-00-00 00:00:00'),(111580,10,'G51.33 ','Clonic hemifacial spasm, bilateral','Y','0000-00-00 00:00:00'),(111581,10,'G51.39 ','Clonic hemifacial spasm, unspecified','Y','0000-00-00 00:00:00'),(111579,10,'G51.32 ','Clonic hemifacial spasm, left','Y','0000-00-00 00:00:00'),(111577,10,'G51.2 ','Melkersson\'s syndrome','Y','0000-00-00 00:00:00'),(111578,10,'G51.31 ','Clonic hemifacial spasm, right','Y','0000-00-00 00:00:00'),(111575,10,'G51.0 ','Bell\'s palsy','Y','0000-00-00 00:00:00'),(111576,10,'G51.1 ','Geniculate ganglionitis','Y','0000-00-00 00:00:00'),(111574,10,'G50.9 ','Disorder of trigeminal nerve, unspecified','Y','0000-00-00 00:00:00'),(111572,10,'G50.1 ','Atypical facial pain','Y','0000-00-00 00:00:00'),(111573,10,'G50.8 ','Other disorders of trigeminal nerve','Y','0000-00-00 00:00:00'),(111570,10,'G47.9 ','Sleep disorder, unspecified','Y','0000-00-00 00:00:00'),(111571,10,'G50.0 ','Trigeminal neuralgia','Y','0000-00-00 00:00:00'),(111569,10,'G47.8 ','Other sleep disorders','Y','0000-00-00 00:00:00'),(111567,10,'G47.63 ','Sleep related bruxism','Y','0000-00-00 00:00:00'),(111568,10,'G47.69 ','Other sleep related movement disorders','Y','0000-00-00 00:00:00'),(111565,10,'G47.61 ','Periodic limb movement disorder','Y','0000-00-00 00:00:00'),(111566,10,'G47.62 ','Sleep related leg cramps','Y','0000-00-00 00:00:00'),(111564,10,'G47.59 ','Other parasomnia','Y','0000-00-00 00:00:00'),(111562,10,'G47.53 ','Recurrent isolated sleep paralysis','Y','0000-00-00 00:00:00'),(111563,10,'G47.54 ','Parasomnia in conditions classified elsewhere','Y','0000-00-00 00:00:00'),(111560,10,'G47.51 ','Confusional arousals','Y','0000-00-00 00:00:00'),(111561,10,'G47.52 ','REM sleep behavior disorder','Y','0000-00-00 00:00:00'),(111559,10,'G47.50 ','Parasomnia, unspecified','Y','0000-00-00 00:00:00'),(111558,10,'G47.429 ','Narcolepsy in conditions classified elsewhere without cataplexy','Y','0000-00-00 00:00:00'),(111557,10,'G47.421 ','Narcolepsy in conditions classified elsewhere with cataplexy','Y','0000-00-00 00:00:00'),(111555,10,'G47.411 ','Narcolepsy with cataplexy','Y','0000-00-00 00:00:00'),(111556,10,'G47.419 ','Narcolepsy without cataplexy','Y','0000-00-00 00:00:00'),(111554,10,'G47.39 ','Other sleep apnea','Y','0000-00-00 00:00:00'),(111553,10,'G47.37 ','Central sleep apnea in conditions classified elsewhere','Y','0000-00-00 00:00:00'),(111552,10,'G47.36 ','Sleep related hypoventilation in conditions classified elsewhere','Y','0000-00-00 00:00:00'),(111551,10,'G47.35 ','Congenital central alveolar hypoventilation syndrome','Y','0000-00-00 00:00:00'),(111549,10,'G47.33 ','Obstructive sleep apnea (adult) (pediatric)','Y','0000-00-00 00:00:00'),(111550,10,'G47.34 ','Idiopathic sleep related nonobstructive alveolar hypoventilation','Y','0000-00-00 00:00:00'),(111548,10,'G47.32 ','High altitude periodic breathing','Y','0000-00-00 00:00:00'),(111546,10,'G47.30 ','Sleep apnea, unspecified','Y','0000-00-00 00:00:00'),(111547,10,'G47.31 ','Primary central sleep apnea','Y','0000-00-00 00:00:00'),(111545,10,'G47.29 ','Other circadian rhythm sleep disorder','Y','0000-00-00 00:00:00'),(111544,10,'G47.27 ','Circadian rhythm sleep disorder in conditions classified elsewhere','Y','0000-00-00 00:00:00'),(111542,10,'G47.25 ','Circadian rhythm sleep disorder, jet lag type','Y','0000-00-00 00:00:00'),(111543,10,'G47.26 ','Circadian rhythm sleep disorder, shift work type','Y','0000-00-00 00:00:00'),(111541,10,'G47.24 ','Circadian rhythm sleep disorder, free running type','Y','0000-00-00 00:00:00'),(111540,10,'G47.23 ','Circadian rhythm sleep disorder, irregular sleep wake type','Y','0000-00-00 00:00:00'),(111539,10,'G47.22 ','Circadian rhythm sleep disorder, advanced sleep phase type','Y','0000-00-00 00:00:00'),(111538,10,'G47.21 ','Circadian rhythm sleep disorder, delayed sleep phase type','Y','0000-00-00 00:00:00'),(111537,10,'G47.20 ','Circadian rhythm sleep disorder, unspecified type','Y','0000-00-00 00:00:00'),(111536,10,'G47.19 ','Other hypersomnia','Y','0000-00-00 00:00:00'),(111534,10,'G47.13 ','Recurrent hypersomnia','Y','0000-00-00 00:00:00'),(111535,10,'G47.14 ','Hypersomnia due to medical condition','Y','0000-00-00 00:00:00'),(111533,10,'G47.12 ','Idiopathic hypersomnia without long sleep time','Y','0000-00-00 00:00:00'),(111531,10,'G47.10 ','Hypersomnia, unspecified','Y','0000-00-00 00:00:00'),(111532,10,'G47.11 ','Idiopathic hypersomnia with long sleep time','Y','0000-00-00 00:00:00'),(111529,10,'G47.01 ','Insomnia due to medical condition','Y','0000-00-00 00:00:00'),(111530,10,'G47.09 ','Other insomnia','Y','0000-00-00 00:00:00'),(111528,10,'G47.00 ','Insomnia, unspecified','Y','0000-00-00 00:00:00'),(111526,10,'G46.7 ','Other lacunar syndromes','Y','0000-00-00 00:00:00'),(111527,10,'G46.8 ','Other vascular syndromes of brain in cerebrovascular diseases','Y','0000-00-00 00:00:00'),(111524,10,'G46.5 ','Pure motor lacunar syndrome','Y','0000-00-00 00:00:00'),(111525,10,'G46.6 ','Pure sensory lacunar syndrome','Y','0000-00-00 00:00:00'),(111523,10,'G46.4 ','Cerebellar stroke syndrome','Y','0000-00-00 00:00:00'),(111521,10,'G46.2 ','Posterior cerebral artery syndrome','Y','0000-00-00 00:00:00'),(111522,10,'G46.3 ','Brain stem stroke syndrome','Y','0000-00-00 00:00:00'),(111520,10,'G46.1 ','Anterior cerebral artery syndrome','Y','0000-00-00 00:00:00'),(111518,10,'G45.9 ','Transient cerebral ischemic attack, unspecified','Y','0000-00-00 00:00:00'),(111519,10,'G46.0 ','Middle cerebral artery syndrome','Y','0000-00-00 00:00:00'),(111517,10,'G45.8 ','Other transient cerebral ischemic attacks and related syndromes','Y','0000-00-00 00:00:00'),(111516,10,'G45.4 ','Transient global amnesia','Y','0000-00-00 00:00:00'),(111514,10,'G45.2 ','Multiple and bilateral precerebral artery syndromes','Y','0000-00-00 00:00:00'),(111515,10,'G45.3 ','Amaurosis fugax','Y','0000-00-00 00:00:00'),(111513,10,'G45.1 ','Carotid artery syndrome (hemispheric)','Y','0000-00-00 00:00:00'),(111511,10,'G44.89 ','Other headache syndrome','Y','0000-00-00 00:00:00'),(111512,10,'G45.0 ','Vertebro-basilar artery syndrome','Y','0000-00-00 00:00:00'),(111509,10,'G44.85 ','Primary stabbing headache','Y','0000-00-00 00:00:00'),(111510,10,'G44.86 ','Cervicogenic headache','Y','0000-00-00 00:00:00'),(111508,10,'G44.84 ','Primary exertional headache','Y','0000-00-00 00:00:00'),(111506,10,'G44.82 ','Headache associated with sexual activity','Y','0000-00-00 00:00:00'),(111507,10,'G44.83 ','Primary cough headache','Y','0000-00-00 00:00:00'),(111504,10,'G44.59 ','Other complicated headache syndrome','Y','0000-00-00 00:00:00'),(111505,10,'G44.81 ','Hypnic headache','Y','0000-00-00 00:00:00'),(111503,10,'G44.53 ','Primary thunderclap headache','Y','0000-00-00 00:00:00'),(111501,10,'G44.51 ','Hemicrania continua','Y','0000-00-00 00:00:00'),(111502,10,'G44.52 ','New daily persistent headache (NDPH)','Y','0000-00-00 00:00:00'),(111500,10,'G44.41 ','Drug-induced headache, not elsewhere classified, intractable','Y','0000-00-00 00:00:00'),(111499,10,'G44.40 ','Drug-induced headache, not elsewhere classified, not intractable','Y','0000-00-00 00:00:00'),(111498,10,'G44.329 ','Chronic post-traumatic headache, not intractable','Y','0000-00-00 00:00:00'),(111497,10,'G44.321 ','Chronic post-traumatic headache, intractable','Y','0000-00-00 00:00:00'),(111496,10,'G44.319 ','Acute post-traumatic headache, not intractable','Y','0000-00-00 00:00:00'),(111495,10,'G44.311 ','Acute post-traumatic headache, intractable','Y','0000-00-00 00:00:00'),(111494,10,'G44.309 ','Post-traumatic headache, unspecified, not intractable','Y','0000-00-00 00:00:00'),(111493,10,'G44.301 ','Post-traumatic headache, unspecified, intractable','Y','0000-00-00 00:00:00'),(111492,10,'G44.229 ','Chronic tension-type headache, not intractable','Y','0000-00-00 00:00:00'),(111491,10,'G44.221 ','Chronic tension-type headache, intractable','Y','0000-00-00 00:00:00'),(111490,10,'G44.219 ','Episodic tension-type headache, not intractable','Y','0000-00-00 00:00:00'),(111489,10,'G44.211 ','Episodic tension-type headache, intractable','Y','0000-00-00 00:00:00'),(111488,10,'G44.209 ','Tension-type headache, unspecified, not intractable','Y','0000-00-00 00:00:00'),(111486,10,'G44.1 ','Vascular headache, not elsewhere classified','Y','0000-00-00 00:00:00'),(111487,10,'G44.201 ','Tension-type headache, unspecified, intractable','Y','0000-00-00 00:00:00'),(111485,10,'G44.099 ','Other trigeminal autonomic cephalgias (TAC), not intractable','Y','0000-00-00 00:00:00'),(111484,10,'G44.091 ','Other trigeminal autonomic cephalgias (TAC), intractable','Y','0000-00-00 00:00:00'),(111483,10,'G44.059 ','Short lasting unilateral neuralgiform headache with conjunctival injection and tearing (SUNCT), not intractable','Y','0000-00-00 00:00:00'),(111482,10,'G44.051 ','Short lasting unilateral neuralgiform headache with conjunctival injection and tearing (SUNCT), intractable','Y','0000-00-00 00:00:00'),(111480,10,'G44.041 ','Chronic paroxysmal hemicrania, intractable','Y','0000-00-00 00:00:00'),(111481,10,'G44.049 ','Chronic paroxysmal hemicrania, not intractable','Y','0000-00-00 00:00:00'),(111479,10,'G44.039 ','Episodic paroxysmal hemicrania, not intractable','Y','0000-00-00 00:00:00'),(111478,10,'G44.031 ','Episodic paroxysmal hemicrania, intractable','Y','0000-00-00 00:00:00'),(111477,10,'G44.029 ','Chronic cluster headache, not intractable','Y','0000-00-00 00:00:00'),(111476,10,'G44.021 ','Chronic cluster headache, intractable','Y','0000-00-00 00:00:00'),(111475,10,'G44.019 ','Episodic cluster headache, not intractable','Y','0000-00-00 00:00:00'),(111474,10,'G44.011 ','Episodic cluster headache, intractable','Y','0000-00-00 00:00:00'),(111473,10,'G44.009 ','Cluster headache syndrome, unspecified, not intractable','Y','0000-00-00 00:00:00'),(111472,10,'G44.001 ','Cluster headache syndrome, unspecified, intractable','Y','0000-00-00 00:00:00'),(111471,10,'G43.E19 ','Chronic migraine with aura, intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111470,10,'G43.E11 ','Chronic migraine with aura, intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111469,10,'G43.E09 ','Chronic migraine with aura, not intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111468,10,'G43.E01 ','Chronic migraine with aura, not intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111467,10,'G43.919 ','Migraine, unspecified, intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111466,10,'G43.911 ','Migraine, unspecified, intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111465,10,'G43.909 ','Migraine, unspecified, not intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111464,10,'G43.901 ','Migraine, unspecified, not intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111463,10,'G43.839 ','Menstrual migraine, intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111462,10,'G43.831 ','Menstrual migraine, intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111461,10,'G43.829 ','Menstrual migraine, not intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111459,10,'G43.819 ','Other migraine, intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111460,10,'G43.821 ','Menstrual migraine, not intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111458,10,'G43.811 ','Other migraine, intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111457,10,'G43.809 ','Other migraine, not intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111456,10,'G43.801 ','Other migraine, not intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111454,10,'G43.D0 ','Abdominal migraine, not intractable','Y','0000-00-00 00:00:00'),(111455,10,'G43.D1 ','Abdominal migraine, intractable','Y','0000-00-00 00:00:00'),(111453,10,'G43.C1 ','Periodic headache syndromes in child or adult, intractable','Y','0000-00-00 00:00:00'),(111452,10,'G43.C0 ','Periodic headache syndromes in child or adult, not intractable','Y','0000-00-00 00:00:00'),(111451,10,'G43.B1 ','Ophthalmoplegic migraine, intractable','Y','0000-00-00 00:00:00'),(111450,10,'G43.B0 ','Ophthalmoplegic migraine, not intractable','Y','0000-00-00 00:00:00'),(111449,10,'G43.A1 ','Cyclical vomiting, in migraine, intractable','Y','0000-00-00 00:00:00'),(111448,10,'G43.A0 ','Cyclical vomiting, in migraine, not intractable','Y','0000-00-00 00:00:00'),(111447,10,'G43.719 ','Chronic migraine without aura, intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111446,10,'G43.711 ','Chronic migraine without aura, intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111445,10,'G43.709 ','Chronic migraine without aura, not intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111444,10,'G43.701 ','Chronic migraine without aura, not intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111443,10,'G43.619 ','Persistent migraine aura with cerebral infarction, intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111442,10,'G43.611 ','Persistent migraine aura with cerebral infarction, intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111441,10,'G43.609 ','Persistent migraine aura with cerebral infarction, not intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111440,10,'G43.601 ','Persistent migraine aura with cerebral infarction, not intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111439,10,'G43.519 ','Persistent migraine aura without cerebral infarction, intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111438,10,'G43.511 ','Persistent migraine aura without cerebral infarction, intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111437,10,'G43.509 ','Persistent migraine aura without cerebral infarction, not intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111436,10,'G43.501 ','Persistent migraine aura without cerebral infarction, not intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111435,10,'G43.419 ','Hemiplegic migraine, intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111434,10,'G43.411 ','Hemiplegic migraine, intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111433,10,'G43.409 ','Hemiplegic migraine, not intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111432,10,'G43.401 ','Hemiplegic migraine, not intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111431,10,'G43.119 ','Migraine with aura, intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111430,10,'G43.111 ','Migraine with aura, intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111429,10,'G43.109 ','Migraine with aura, not intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111428,10,'G43.101 ','Migraine with aura, not intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111427,10,'G43.019 ','Migraine without aura, intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111426,10,'G43.011 ','Migraine without aura, intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111425,10,'G43.009 ','Migraine without aura, not intractable, without status migrainosus','Y','0000-00-00 00:00:00'),(111423,10,'G40.919 ','Epilepsy, unspecified, intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111424,10,'G43.001 ','Migraine without aura, not intractable, with status migrainosus','Y','0000-00-00 00:00:00'),(111422,10,'G40.911 ','Epilepsy, unspecified, intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111421,10,'G40.909 ','Epilepsy, unspecified, not intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111420,10,'G40.901 ','Epilepsy, unspecified, not intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111419,10,'G40.89 ','Other seizures','Y','0000-00-00 00:00:00'),(111417,10,'G40.833 ','Dravet syndrome, intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111418,10,'G40.834 ','Dravet syndrome, intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111416,10,'G40.824 ','Epileptic spasms, intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111414,10,'G40.822 ','Epileptic spasms, not intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111415,10,'G40.823 ','Epileptic spasms, intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111413,10,'G40.821 ','Epileptic spasms, not intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111412,10,'G40.814 ','Lennox-Gastaut syndrome, intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111411,10,'G40.813 ','Lennox-Gastaut syndrome, intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111410,10,'G40.812 ','Lennox-Gastaut syndrome, not intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111409,10,'G40.811 ','Lennox-Gastaut syndrome, not intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111408,10,'G40.804 ','Other epilepsy, intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111407,10,'G40.803 ','Other epilepsy, intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111406,10,'G40.802 ','Other epilepsy, not intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111405,10,'G40.801 ','Other epilepsy, not intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111404,10,'G40.509 ','Epileptic seizures related to external causes, not intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111402,10,'G40.42 ','Cyclin-Dependent Kinase-Like 5 Deficiency Disorder','Y','0000-00-00 00:00:00'),(111403,10,'G40.501 ','Epileptic seizures related to external causes, not intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111401,10,'G40.419 ','Other generalized epilepsy and epileptic syndromes, intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111400,10,'G40.411 ','Other generalized epilepsy and epileptic syndromes, intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111399,10,'G40.409 ','Other generalized epilepsy and epileptic syndromes, not intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111398,10,'G40.401 ','Other generalized epilepsy and epileptic syndromes, not intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111397,10,'G40.C19 ','Lafora progressive myoclonus epilepsy, intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111395,10,'G40.C09 ','Lafora progressive myoclonus epilepsy, not intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111396,10,'G40.C11 ','Lafora progressive myoclonus epilepsy, intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111394,10,'G40.C01 ','Lafora progressive myoclonus epilepsy, not intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111393,10,'G40.B19 ','Juvenile myoclonic epilepsy, intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111392,10,'G40.B11 ','Juvenile myoclonic epilepsy, intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111391,10,'G40.B09 ','Juvenile myoclonic epilepsy, not intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111390,10,'G40.B01 ','Juvenile myoclonic epilepsy, not intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111389,10,'G40.A19 ','Absence epileptic syndrome, intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111388,10,'G40.A11 ','Absence epileptic syndrome, intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111387,10,'G40.A09 ','Absence epileptic syndrome, not intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111386,10,'G40.A01 ','Absence epileptic syndrome, not intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111385,10,'G40.319 ','Generalized idiopathic epilepsy and epileptic syndromes, intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111384,10,'G40.311 ','Generalized idiopathic epilepsy and epileptic syndromes, intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111383,10,'G40.309 ','Generalized idiopathic epilepsy and epileptic syndromes, not intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111382,10,'G40.301 ','Generalized idiopathic epilepsy and epileptic syndromes, not intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111381,10,'G40.219 ','Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111380,10,'G40.211 ','Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111379,10,'G40.209 ','Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, not intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111378,10,'G40.201 ','Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, not intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111377,10,'G40.119 ','Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111376,10,'G40.111 ','Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111375,10,'G40.109 ','Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, not intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111374,10,'G40.101 ','Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, not intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111373,10,'G40.019 ','Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111372,10,'G40.011 ','Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111371,10,'G40.009 ','Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, not intractable, without status epilepticus','Y','0000-00-00 00:00:00'),(111370,10,'G40.001 ','Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, not intractable, with status epilepticus','Y','0000-00-00 00:00:00'),(111369,10,'G37.9 ','Demyelinating disease of central nervous system, unspecified','Y','0000-00-00 00:00:00'),(111368,10,'G37.89 ','Other specified demyelinating diseases of central nervous system','Y','0000-00-00 00:00:00'),(111366,10,'G37.5 ','Concentric sclerosis [Balo] of central nervous system','Y','0000-00-00 00:00:00'),(111367,10,'G37.81 ','Myelin oligodendrocyte glycoprotein antibody disease','Y','0000-00-00 00:00:00'),(111365,10,'G37.4 ','Subacute necrotizing myelitis of central nervous system','Y','0000-00-00 00:00:00'),(111363,10,'G37.2 ','Central pontine myelinolysis','Y','0000-00-00 00:00:00'),(111364,10,'G37.3 ','Acute transverse myelitis in demyelinating disease of central nervous system','Y','0000-00-00 00:00:00'),(111362,10,'G37.1 ','Central demyelination of corpus callosum','Y','0000-00-00 00:00:00'),(111360,10,'G36.9 ','Acute disseminated demyelination, unspecified','Y','0000-00-00 00:00:00'),(111361,10,'G37.0 ','Diffuse sclerosis of central nervous system','Y','0000-00-00 00:00:00'),(111359,10,'G36.8 ','Other specified acute disseminated demyelination','Y','0000-00-00 00:00:00'),(111358,10,'G36.1 ','Acute and subacute hemorrhagic leukoencephalitis [Hurst]','Y','0000-00-00 00:00:00'),(111356,10,'G35','Multiple sclerosis','Y','0000-00-00 00:00:00'),(111357,10,'G36.0 ','Neuromyelitis optica [Devic]','Y','0000-00-00 00:00:00'),(111355,10,'G32.89 ','Other specified degenerative disorders of nervous system in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111354,10,'G32.81 ','Cerebellar ataxia in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111353,10,'G32.0 ','Subacute combined degeneration of spinal cord in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111352,10,'G31.9 ','Degenerative disease of nervous system, unspecified','Y','0000-00-00 00:00:00'),(111350,10,'G31.86 ','Alexander disease','Y','0000-00-00 00:00:00'),(111351,10,'G31.89 ','Other specified degenerative diseases of nervous system','Y','0000-00-00 00:00:00'),(111349,10,'G31.85 ','Corticobasal degeneration','Y','0000-00-00 00:00:00'),(111348,10,'G31.84 ','Mild cognitive impairment of uncertain or unknown etiology','Y','0000-00-00 00:00:00'),(111345,10,'G31.81 ','Alpers disease','Y','0000-00-00 00:00:00'),(111346,10,'G31.82 ','Leigh\'s disease','Y','0000-00-00 00:00:00'),(111347,10,'G31.83 ','Neurocognitive disorder with Lewy bodies','Y','0000-00-00 00:00:00'),(111344,10,'G31.80 ','Leukodystrophy, unspecified','Y','0000-00-00 00:00:00'),(111343,10,'G31.2 ','Degeneration of nervous system due to alcohol','Y','0000-00-00 00:00:00'),(111341,10,'G31.09 ','Other frontotemporal neurocognitive disorder','Y','0000-00-00 00:00:00'),(111342,10,'G31.1 ','Senile degeneration of brain, not elsewhere classified','Y','0000-00-00 00:00:00'),(111340,10,'G31.01 ','Pick\'s disease','Y','0000-00-00 00:00:00'),(111338,10,'G30.8 ','Other Alzheimer\'s disease','Y','0000-00-00 00:00:00'),(111339,10,'G30.9 ','Alzheimer\'s disease, unspecified','Y','0000-00-00 00:00:00'),(111336,10,'G30.0 ','Alzheimer\'s disease with early onset','Y','0000-00-00 00:00:00'),(111337,10,'G30.1 ','Alzheimer\'s disease with late onset','Y','0000-00-00 00:00:00'),(111335,10,'G26','Extrapyramidal and movement disorders in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111333,10,'G25.89 ','Other specified extrapyramidal and movement disorders','Y','0000-00-00 00:00:00'),(111334,10,'G25.9 ','Extrapyramidal and movement disorder, unspecified','Y','0000-00-00 00:00:00'),(111331,10,'G25.82 ','Stiff-man syndrome','Y','0000-00-00 00:00:00'),(111332,10,'G25.83 ','Benign shuddering attacks','Y','0000-00-00 00:00:00'),(111330,10,'G25.81 ','Restless legs syndrome','Y','0000-00-00 00:00:00'),(111328,10,'G25.71 ','Drug induced akathisia','Y','0000-00-00 00:00:00'),(111329,10,'G25.79 ','Other drug induced movement disorders','Y','0000-00-00 00:00:00'),(111327,10,'G25.70 ','Drug induced movement disorder, unspecified','Y','0000-00-00 00:00:00'),(111325,10,'G25.61 ','Drug induced tics','Y','0000-00-00 00:00:00'),(111326,10,'G25.69 ','Other tics of organic origin','Y','0000-00-00 00:00:00'),(111323,10,'G25.4 ','Drug-induced chorea','Y','0000-00-00 00:00:00'),(111324,10,'G25.5 ','Other chorea','Y','0000-00-00 00:00:00'),(111321,10,'G25.2 ','Other specified forms of tremor','Y','0000-00-00 00:00:00'),(111322,10,'G25.3 ','Myoclonus','Y','0000-00-00 00:00:00'),(111319,10,'G25.0 ','Essential tremor','Y','0000-00-00 00:00:00'),(111320,10,'G25.1 ','Drug-induced tremor','Y','0000-00-00 00:00:00'),(111317,10,'G24.8 ','Other dystonia','Y','0000-00-00 00:00:00'),(111318,10,'G24.9 ','Dystonia, unspecified','Y','0000-00-00 00:00:00'),(111315,10,'G24.4 ','Idiopathic orofacial dystonia','Y','0000-00-00 00:00:00'),(111316,10,'G24.5 ','Blepharospasm','Y','0000-00-00 00:00:00'),(111314,10,'G24.3 ','Spasmodic torticollis','Y','0000-00-00 00:00:00'),(111312,10,'G24.1 ','Genetic torsion dystonia','Y','0000-00-00 00:00:00'),(111313,10,'G24.2 ','Idiopathic nonfamilial dystonia','Y','0000-00-00 00:00:00'),(111310,10,'G24.02 ','Drug induced acute dystonia','Y','0000-00-00 00:00:00'),(111311,10,'G24.09 ','Other drug induced dystonia','Y','0000-00-00 00:00:00'),(111308,10,'G23.9 ','Degenerative disease of basal ganglia, unspecified','Y','0000-00-00 00:00:00'),(111309,10,'G24.01 ','Drug induced subacute dyskinesia','Y','0000-00-00 00:00:00'),(111307,10,'G23.8 ','Other specified degenerative diseases of basal ganglia','Y','0000-00-00 00:00:00'),(111306,10,'G23.3 ','Hypomyelination with atrophy of the basal ganglia and cerebellum','Y','0000-00-00 00:00:00'),(111305,10,'G23.2 ','Striatonigral degeneration','Y','0000-00-00 00:00:00'),(111303,10,'G23.0 ','Hallervorden-Spatz disease','Y','0000-00-00 00:00:00'),(111304,10,'G23.1 ','Progressive supranuclear ophthalmoplegia [Steele-Richardson-Olszewski]','Y','0000-00-00 00:00:00'),(111300,10,'G21.4 ','Vascular parkinsonism','Y','0000-00-00 00:00:00'),(111301,10,'G21.8 ','Other secondary parkinsonism','Y','0000-00-00 00:00:00'),(111302,10,'G21.9 ','Secondary parkinsonism, unspecified','Y','0000-00-00 00:00:00'),(111299,10,'G21.3 ','Postencephalitic parkinsonism','Y','0000-00-00 00:00:00'),(111297,10,'G21.19 ','Other drug induced secondary parkinsonism','Y','0000-00-00 00:00:00'),(111298,10,'G21.2 ','Secondary parkinsonism due to other external agents','Y','0000-00-00 00:00:00'),(111295,10,'G21.0 ','Malignant neuroleptic syndrome','Y','0000-00-00 00:00:00'),(111296,10,'G21.11 ','Neuroleptic induced parkinsonism','Y','0000-00-00 00:00:00'),(111294,10,'G20.C ','Parkinsonism, unspecified','Y','0000-00-00 00:00:00'),(111292,10,'G20.B1 ','Parkinson\'s disease with dyskinesia, without mention of fluctuations','Y','0000-00-00 00:00:00'),(111293,10,'G20.B2 ','Parkinson\'s disease with dyskinesia, with fluctuations','Y','0000-00-00 00:00:00'),(111291,10,'G20.A2 ','Parkinson\'s disease without dyskinesia, with fluctuations','Y','0000-00-00 00:00:00'),(111289,10,'G14','Postpolio syndrome','Y','0000-00-00 00:00:00'),(111290,10,'G20.A1 ','Parkinson\'s disease without dyskinesia, without mention of fluctuations','Y','0000-00-00 00:00:00'),(111288,10,'G13.8 ','Systemic atrophy primarily affecting central nervous system in other diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111287,10,'G13.2 ','Systemic atrophy primarily affecting the central nervous system in myxedema','Y','0000-00-00 00:00:00'),(111286,10,'G13.1 ','Other systemic atrophy primarily affecting central nervous system in neoplastic disease','Y','0000-00-00 00:00:00'),(111285,10,'G13.0 ','Paraneoplastic neuromyopathy and neuropathy','Y','0000-00-00 00:00:00'),(111284,10,'G12.9 ','Spinal muscular atrophy, unspecified','Y','0000-00-00 00:00:00'),(111282,10,'G12.29 ','Other motor neuron disease','Y','0000-00-00 00:00:00'),(111283,10,'G12.8 ','Other spinal muscular atrophies and related syndromes','Y','0000-00-00 00:00:00'),(111281,10,'G12.25 ','Progressive spinal muscle atrophy','Y','0000-00-00 00:00:00'),(111279,10,'G12.23 ','Primary lateral sclerosis','Y','0000-00-00 00:00:00'),(111280,10,'G12.24 ','Familial motor neuron disease','Y','0000-00-00 00:00:00'),(111277,10,'G12.21 ','Amyotrophic lateral sclerosis','Y','0000-00-00 00:00:00'),(111278,10,'G12.22 ','Progressive bulbar palsy','Y','0000-00-00 00:00:00'),(111276,10,'G12.20 ','Motor neuron disease, unspecified','Y','0000-00-00 00:00:00'),(111275,10,'G12.1 ','Other inherited spinal muscular atrophy','Y','0000-00-00 00:00:00'),(111273,10,'G11.9 ','Hereditary ataxia, unspecified','Y','0000-00-00 00:00:00'),(111274,10,'G12.0 ','Infantile spinal muscular atrophy, type I [Werdnig-Hoffman]','Y','0000-00-00 00:00:00'),(111272,10,'G11.8 ','Other hereditary ataxias','Y','0000-00-00 00:00:00'),(111271,10,'G11.6 ','Leukodystrophy with vanishing white matter disease','Y','0000-00-00 00:00:00'),(111269,10,'G11.4 ','Hereditary spastic paraplegia','Y','0000-00-00 00:00:00'),(111270,10,'G11.5 ','Hypomyelination - hypogonadotropic hypogonadism - hypodontia','Y','0000-00-00 00:00:00'),(111268,10,'G11.3 ','Cerebellar ataxia with defective DNA repair','Y','0000-00-00 00:00:00'),(111266,10,'G11.19 ','Other early-onset cerebellar ataxia','Y','0000-00-00 00:00:00'),(111267,10,'G11.2 ','Late-onset cerebellar ataxia','Y','0000-00-00 00:00:00'),(111264,10,'G11.10 ','Early-onset cerebellar ataxia, unspecified','Y','0000-00-00 00:00:00'),(111265,10,'G11.11 ','Friedreich ataxia','Y','0000-00-00 00:00:00'),(111262,10,'G10','Huntington\'s disease','Y','0000-00-00 00:00:00'),(111263,10,'G11.0 ','Congenital nonprogressive ataxia','Y','0000-00-00 00:00:00'),(111261,10,'G09','Sequelae of inflammatory diseases of central nervous system','Y','0000-00-00 00:00:00'),(111260,10,'G08','Intracranial and intraspinal phlebitis and thrombophlebitis','Y','0000-00-00 00:00:00'),(111258,10,'G06.2 ','Extradural and subdural abscess, unspecified','Y','0000-00-00 00:00:00'),(111259,10,'G07','Intracranial and intraspinal abscess and granuloma in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111256,10,'G06.0 ','Intracranial abscess and granuloma','Y','0000-00-00 00:00:00'),(111257,10,'G06.1 ','Intraspinal abscess and granuloma','Y','0000-00-00 00:00:00'),(111255,10,'G05.4 ','Myelitis in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111253,10,'G04.91 ','Myelitis, unspecified','Y','0000-00-00 00:00:00'),(111254,10,'G05.3 ','Encephalitis and encephalomyelitis in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111251,10,'G04.89 ','Other myelitis','Y','0000-00-00 00:00:00'),(111252,10,'G04.90 ','Encephalitis and encephalomyelitis, unspecified','Y','0000-00-00 00:00:00'),(111249,10,'G04.81 ','Other encephalitis and encephalomyelitis','Y','0000-00-00 00:00:00'),(111250,10,'G04.82 ','Acute flaccid myelitis','Y','0000-00-00 00:00:00'),(111248,10,'G04.39 ','Other acute necrotizing hemorrhagic encephalopathy','Y','0000-00-00 00:00:00'),(111246,10,'G04.31 ','Postinfectious acute necrotizing hemorrhagic encephalopathy','Y','0000-00-00 00:00:00'),(111247,10,'G04.32 ','Postimmunization acute necrotizing hemorrhagic encephalopathy','Y','0000-00-00 00:00:00'),(111245,10,'G04.30 ','Acute necrotizing hemorrhagic encephalopathy, unspecified','Y','0000-00-00 00:00:00'),(111244,10,'G04.2 ','Bacterial meningoencephalitis and meningomyelitis, not elsewhere classified','Y','0000-00-00 00:00:00'),(111243,10,'G04.1 ','Tropical spastic paraplegia','Y','0000-00-00 00:00:00'),(111242,10,'G04.02 ','Postimmunization acute disseminated encephalitis, myelitis and encephalomyelitis','Y','0000-00-00 00:00:00'),(111241,10,'G04.01 ','Postinfectious acute disseminated encephalitis and encephalomyelitis (postinfectious ADEM)','Y','0000-00-00 00:00:00'),(111240,10,'G04.00 ','Acute disseminated encephalitis and encephalomyelitis, unspecified','Y','0000-00-00 00:00:00'),(111239,10,'G03.9 ','Meningitis, unspecified','Y','0000-00-00 00:00:00'),(111237,10,'G03.2 ','Benign recurrent meningitis [Mollaret]','Y','0000-00-00 00:00:00'),(111238,10,'G03.8 ','Meningitis due to other specified causes','Y','0000-00-00 00:00:00'),(111235,10,'G03.0 ','Nonpyogenic meningitis','Y','0000-00-00 00:00:00'),(111236,10,'G03.1 ','Chronic meningitis','Y','0000-00-00 00:00:00'),(111234,10,'G02','Meningitis in other infectious and parasitic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111233,10,'G01','Meningitis in bacterial diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111231,10,'G00.8 ','Other bacterial meningitis','Y','0000-00-00 00:00:00'),(111232,10,'G00.9 ','Bacterial meningitis, unspecified','Y','0000-00-00 00:00:00'),(111229,10,'G00.2 ','Streptococcal meningitis','Y','0000-00-00 00:00:00'),(111230,10,'G00.3 ','Staphylococcal meningitis','Y','0000-00-00 00:00:00'),(111227,10,'G00.0 ','Hemophilus meningitis','Y','0000-00-00 00:00:00'),(111228,10,'G00.1 ','Pneumococcal meningitis','Y','0000-00-00 00:00:00'),(111226,10,'F99','Mental disorder, not otherwise specified','Y','0000-00-00 00:00:00'),(111225,10,'F98.9 ','Unspecified behavioral and emotional disorders with onset usually occurring in childhood and adolescence','Y','0000-00-00 00:00:00'),(111223,10,'F98.5 ','Adult onset fluency disorder','Y','0000-00-00 00:00:00'),(111224,10,'F98.8 ','Other specified behavioral and emotional disorders with onset usually occurring in childhood and adolescence','Y','0000-00-00 00:00:00'),(111221,10,'F98.3 ','Pica of infancy and childhood','Y','0000-00-00 00:00:00'),(111222,10,'F98.4 ','Stereotyped movement disorders','Y','0000-00-00 00:00:00'),(111220,10,'F98.29 ','Other feeding disorders of infancy and early childhood','Y','0000-00-00 00:00:00'),(111218,10,'F98.1 ','Encopresis not due to a substance or known physiological condition','Y','0000-00-00 00:00:00'),(111219,10,'F98.21 ','Rumination disorder of infancy','Y','0000-00-00 00:00:00'),(111217,10,'F98.0 ','Enuresis not due to a substance or known physiological condition','Y','0000-00-00 00:00:00'),(111214,10,'F95.2 ','Tourette\'s disorder','Y','0000-00-00 00:00:00'),(111215,10,'F95.8 ','Other tic disorders','Y','0000-00-00 00:00:00'),(111216,10,'F95.9 ','Tic disorder, unspecified','Y','0000-00-00 00:00:00'),(111212,10,'F95.0 ','Transient tic disorder','Y','0000-00-00 00:00:00'),(111213,10,'F95.1 ','Chronic motor or vocal tic disorder','Y','0000-00-00 00:00:00'),(111211,10,'F94.9 ','Childhood disorder of social functioning, unspecified','Y','0000-00-00 00:00:00'),(111210,10,'F94.8 ','Other childhood disorders of social functioning','Y','0000-00-00 00:00:00'),(111209,10,'F94.2 ','Disinhibited attachment disorder of childhood','Y','0000-00-00 00:00:00'),(111208,10,'F94.1 ','Reactive attachment disorder of childhood','Y','0000-00-00 00:00:00'),(111206,10,'F93.9 ','Childhood emotional disorder, unspecified','Y','0000-00-00 00:00:00'),(111207,10,'F94.0 ','Selective mutism','Y','0000-00-00 00:00:00'),(111205,10,'F93.8 ','Other childhood emotional disorders','Y','0000-00-00 00:00:00'),(111204,10,'F93.0 ','Separation anxiety disorder of childhood','Y','0000-00-00 00:00:00'),(111202,10,'F91.8 ','Other conduct disorders','Y','0000-00-00 00:00:00'),(111203,10,'F91.9 ','Conduct disorder, unspecified','Y','0000-00-00 00:00:00'),(111201,10,'F91.3 ','Oppositional defiant disorder','Y','0000-00-00 00:00:00'),(111200,10,'F91.2 ','Conduct disorder, adolescent-onset type','Y','0000-00-00 00:00:00'),(111198,10,'F91.0 ','Conduct disorder confined to family context','Y','0000-00-00 00:00:00'),(111199,10,'F91.1 ','Conduct disorder, childhood-onset type','Y','0000-00-00 00:00:00'),(111197,10,'F90.9 ','Attention-deficit hyperactivity disorder, unspecified type','Y','0000-00-00 00:00:00'),(111196,10,'F90.8 ','Attention-deficit hyperactivity disorder, other type','Y','0000-00-00 00:00:00'),(111195,10,'F90.2 ','Attention-deficit hyperactivity disorder, combined type','Y','0000-00-00 00:00:00'),(111194,10,'F90.1 ','Attention-deficit hyperactivity disorder, predominantly hyperactive type','Y','0000-00-00 00:00:00'),(111193,10,'F90.0 ','Attention-deficit hyperactivity disorder, predominantly inattentive type','Y','0000-00-00 00:00:00'),(111192,10,'F89','Unspecified disorder of psychological development','Y','0000-00-00 00:00:00'),(111191,10,'F88','Other disorders of psychological development','Y','0000-00-00 00:00:00'),(111190,10,'F84.9 ','Pervasive developmental disorder, unspecified','Y','0000-00-00 00:00:00'),(111188,10,'F84.5 ','Asperger\'s syndrome','Y','0000-00-00 00:00:00'),(111189,10,'F84.8 ','Other pervasive developmental disorders','Y','0000-00-00 00:00:00'),(111187,10,'F84.3 ','Other childhood disintegrative disorder','Y','0000-00-00 00:00:00'),(111185,10,'F84.0 ','Autistic disorder','Y','0000-00-00 00:00:00'),(111186,10,'F84.2 ','Rett\'s syndrome','Y','0000-00-00 00:00:00'),(111184,10,'F82','Specific developmental disorder of motor function','Y','0000-00-00 00:00:00'),(111183,10,'F81.9 ','Developmental disorder of scholastic skills, unspecified','Y','0000-00-00 00:00:00'),(111182,10,'F81.89 ','Other developmental disorders of scholastic skills','Y','0000-00-00 00:00:00'),(111181,10,'F81.81 ','Disorder of written expression','Y','0000-00-00 00:00:00'),(111179,10,'F81.0 ','Specific reading disorder','Y','0000-00-00 00:00:00'),(111180,10,'F81.2 ','Mathematics disorder','Y','0000-00-00 00:00:00'),(111178,10,'F80.9 ','Developmental disorder of speech and language, unspecified','Y','0000-00-00 00:00:00'),(111177,10,'F80.89 ','Other developmental disorders of speech and language','Y','0000-00-00 00:00:00'),(111175,10,'F80.81 ','Childhood onset fluency disorder','Y','0000-00-00 00:00:00'),(111176,10,'F80.82 ','Social pragmatic communication disorder','Y','0000-00-00 00:00:00'),(111173,10,'F80.2 ','Mixed receptive-expressive language disorder','Y','0000-00-00 00:00:00'),(111174,10,'F80.4 ','Speech and language development delay due to hearing loss','Y','0000-00-00 00:00:00'),(111171,10,'F80.0 ','Phonological disorder','Y','0000-00-00 00:00:00'),(111172,10,'F80.1 ','Expressive language disorder','Y','0000-00-00 00:00:00'),(111170,10,'F79','Unspecified intellectual disabilities','Y','0000-00-00 00:00:00'),(111169,10,'F78.A9 ','Other genetic related intellectual disability','Y','0000-00-00 00:00:00'),(111167,10,'F73','Profound intellectual disabilities','Y','0000-00-00 00:00:00'),(111168,10,'F78.A1 ','SYNGAP1-related intellectual disability','Y','0000-00-00 00:00:00'),(111166,10,'F72','Severe intellectual disabilities','Y','0000-00-00 00:00:00'),(111164,10,'F70','Mild intellectual disabilities','Y','0000-00-00 00:00:00'),(111165,10,'F71','Moderate intellectual disabilities','Y','0000-00-00 00:00:00'),(111163,10,'F69','Unspecified disorder of adult personality and behavior','Y','0000-00-00 00:00:00'),(111162,10,'F68.8 ','Other specified disorders of adult personality and behavior','Y','0000-00-00 00:00:00'),(111161,10,'F68.A ','Factitious disorder imposed on another','Y','0000-00-00 00:00:00'),(111160,10,'F68.13 ','Factitious disorder imposed on self, with combined psychological and physical signs and symptoms','Y','0000-00-00 00:00:00'),(111159,10,'F68.12 ','Factitious disorder imposed on self, with predominantly physical signs and symptoms','Y','0000-00-00 00:00:00'),(111158,10,'F68.11 ','Factitious disorder imposed on self, with predominantly psychological signs and symptoms','Y','0000-00-00 00:00:00'),(111157,10,'F68.10 ','Factitious disorder imposed on self, unspecified','Y','0000-00-00 00:00:00'),(111155,10,'F65.9 ','Paraphilia, unspecified','Y','0000-00-00 00:00:00'),(111156,10,'F66','Other sexual disorders','Y','0000-00-00 00:00:00'),(111154,10,'F65.89 ','Other paraphilias','Y','0000-00-00 00:00:00'),(111152,10,'F65.52 ','Sexual sadism','Y','0000-00-00 00:00:00'),(111153,10,'F65.81 ','Frotteurism','Y','0000-00-00 00:00:00'),(111150,10,'F65.50 ','Sadomasochism, unspecified','Y','0000-00-00 00:00:00'),(111151,10,'F65.51 ','Sexual masochism','Y','0000-00-00 00:00:00'),(111148,10,'F65.3 ','Voyeurism','Y','0000-00-00 00:00:00'),(111149,10,'F65.4 ','Pedophilia','Y','0000-00-00 00:00:00'),(111147,10,'F65.2 ','Exhibitionism','Y','0000-00-00 00:00:00'),(111145,10,'F65.0 ','Fetishism','Y','0000-00-00 00:00:00'),(111146,10,'F65.1 ','Transvestic fetishism','Y','0000-00-00 00:00:00'),(111144,10,'F64.9 ','Gender identity disorder, unspecified','Y','0000-00-00 00:00:00'),(111143,10,'F64.8 ','Other gender identity disorders','Y','0000-00-00 00:00:00'),(111142,10,'F64.2 ','Gender identity disorder of childhood','Y','0000-00-00 00:00:00'),(111140,10,'F64.0 ','Transsexualism','Y','0000-00-00 00:00:00'),(111141,10,'F64.1 ','Dual role transvestism','Y','0000-00-00 00:00:00'),(111139,10,'F63.9 ','Impulse disorder, unspecified','Y','0000-00-00 00:00:00'),(111137,10,'F63.81 ','Intermittent explosive disorder','Y','0000-00-00 00:00:00'),(111138,10,'F63.89 ','Other impulse disorders','Y','0000-00-00 00:00:00'),(111135,10,'F63.2 ','Kleptomania','Y','0000-00-00 00:00:00'),(111136,10,'F63.3 ','Trichotillomania','Y','0000-00-00 00:00:00'),(111134,10,'F63.1 ','Pyromania','Y','0000-00-00 00:00:00'),(111132,10,'F60.9 ','Personality disorder, unspecified','Y','0000-00-00 00:00:00'),(111133,10,'F63.0 ','Pathological gambling','Y','0000-00-00 00:00:00'),(111131,10,'F60.89 ','Other specific personality disorders','Y','0000-00-00 00:00:00'),(111130,10,'F60.81 ','Narcissistic personality disorder','Y','0000-00-00 00:00:00'),(111128,10,'F60.6 ','Avoidant personality disorder','Y','0000-00-00 00:00:00'),(111129,10,'F60.7 ','Dependent personality disorder','Y','0000-00-00 00:00:00'),(111127,10,'F60.5 ','Obsessive-compulsive personality disorder','Y','0000-00-00 00:00:00'),(111125,10,'F60.3 ','Borderline personality disorder','Y','0000-00-00 00:00:00'),(111126,10,'F60.4 ','Histrionic personality disorder','Y','0000-00-00 00:00:00'),(111124,10,'F60.2 ','Antisocial personality disorder','Y','0000-00-00 00:00:00'),(111122,10,'F60.0 ','Paranoid personality disorder','Y','0000-00-00 00:00:00'),(111123,10,'F60.1 ','Schizoid personality disorder','Y','0000-00-00 00:00:00'),(111121,10,'F59','Unspecified behavioral syndromes associated with physiological disturbances and physical factors','Y','0000-00-00 00:00:00'),(111119,10,'F55.4 ','Abuse of vitamins','Y','0000-00-00 00:00:00'),(111120,10,'F55.8 ','Abuse of other non-psychoactive substances','Y','0000-00-00 00:00:00'),(111117,10,'F55.2 ','Abuse of laxatives','Y','0000-00-00 00:00:00'),(111118,10,'F55.3 ','Abuse of steroids or hormones','Y','0000-00-00 00:00:00'),(111115,10,'F55.0 ','Abuse of antacids','Y','0000-00-00 00:00:00'),(111116,10,'F55.1 ','Abuse of herbal or folk remedies','Y','0000-00-00 00:00:00'),(111113,10,'F53.1 ','Puerperal psychosis','Y','0000-00-00 00:00:00'),(111114,10,'F54','Psychological and behavioral factors associated with disorders or diseases classified elsewhere','Y','0000-00-00 00:00:00'),(111112,10,'F53.0 ','Postpartum depression','Y','0000-00-00 00:00:00'),(111111,10,'F52.9 ','Unspecified sexual dysfunction not due to a substance or known physiological condition','Y','0000-00-00 00:00:00'),(111110,10,'F52.8 ','Other sexual dysfunction not due to a substance or known physiological condition','Y','0000-00-00 00:00:00'),(111109,10,'F52.6 ','Dyspareunia not due to a substance or known physiological condition','Y','0000-00-00 00:00:00'),(111108,10,'F52.5 ','Vaginismus not due to a substance or known physiological condition','Y','0000-00-00 00:00:00'),(111106,10,'F52.32 ','Male orgasmic disorder','Y','0000-00-00 00:00:00'),(111107,10,'F52.4 ','Premature ejaculation','Y','0000-00-00 00:00:00'),(111104,10,'F52.22 ','Female sexual arousal disorder','Y','0000-00-00 00:00:00'),(111105,10,'F52.31 ','Female orgasmic disorder','Y','0000-00-00 00:00:00'),(111102,10,'F52.1 ','Sexual aversion disorder','Y','0000-00-00 00:00:00'),(111103,10,'F52.21 ','Male erectile disorder','Y','0000-00-00 00:00:00'),(111101,10,'F52.0 ','Hypoactive sexual desire disorder','Y','0000-00-00 00:00:00'),(111100,10,'F51.9 ','Sleep disorder not due to a substance or known physiological condition, unspecified','Y','0000-00-00 00:00:00'),(111098,10,'F51.5 ','Nightmare disorder','Y','0000-00-00 00:00:00'),(111099,10,'F51.8 ','Other sleep disorders not due to a substance or known physiological condition','Y','0000-00-00 00:00:00'),(111096,10,'F51.3 ','Sleepwalking [somnambulism]','Y','0000-00-00 00:00:00'),(111097,10,'F51.4 ','Sleep terrors [night terrors]','Y','0000-00-00 00:00:00'),(111095,10,'F51.19 ','Other hypersomnia not due to a substance or known physiological condition','Y','0000-00-00 00:00:00'),(111094,10,'F51.13 ','Hypersomnia due to other mental disorder','Y','0000-00-00 00:00:00'),(111092,10,'F51.11 ','Primary hypersomnia','Y','0000-00-00 00:00:00'),(111093,10,'F51.12 ','Insufficient sleep syndrome','Y','0000-00-00 00:00:00'),(111091,10,'F51.09 ','Other insomnia not due to a substance or known physiological condition','Y','0000-00-00 00:00:00'),(111089,10,'F51.04 ','Psychophysiologic insomnia','Y','0000-00-00 00:00:00'),(111090,10,'F51.05 ','Insomnia due to other mental disorder','Y','0000-00-00 00:00:00'),(111087,10,'F51.02 ','Adjustment insomnia','Y','0000-00-00 00:00:00'),(111088,10,'F51.03 ','Paradoxical insomnia','Y','0000-00-00 00:00:00'),(111085,10,'F50.9 ','Eating disorder, unspecified','Y','0000-00-00 00:00:00'),(111086,10,'F51.01 ','Primary insomnia','Y','0000-00-00 00:00:00'),(111084,10,'F50.89 ','Other specified eating disorder','Y','0000-00-00 00:00:00'),(111082,10,'F50.81 ','Binge eating disorder','Y','0000-00-00 00:00:00'),(111083,10,'F50.82 ','Avoidant/restrictive food intake disorder','Y','0000-00-00 00:00:00'),(111080,10,'F50.02 ','Anorexia nervosa, binge eating/purging type','Y','0000-00-00 00:00:00'),(111081,10,'F50.2 ','Bulimia nervosa','Y','0000-00-00 00:00:00'),(111079,10,'F50.01 ','Anorexia nervosa, restricting type','Y','0000-00-00 00:00:00'),(111078,10,'F50.00 ','Anorexia nervosa, unspecified','Y','0000-00-00 00:00:00'),(111076,10,'F48.8 ','Other specified nonpsychotic mental disorders','Y','0000-00-00 00:00:00'),(111077,10,'F48.9 ','Nonpsychotic mental disorder, unspecified','Y','0000-00-00 00:00:00'),(111074,10,'F48.1 ','Depersonalization-derealization syndrome','Y','0000-00-00 00:00:00'),(111075,10,'F48.2 ','Pseudobulbar affect','Y','0000-00-00 00:00:00'),(111073,10,'F45.9 ','Somatoform disorder, unspecified','Y','0000-00-00 00:00:00'),(111071,10,'F45.42 ','Pain disorder with related psychological factors','Y','0000-00-00 00:00:00'),(111072,10,'F45.8 ','Other somatoform disorders','Y','0000-00-00 00:00:00'),(111070,10,'F45.41 ','Pain disorder exclusively related to psychological factors','Y','0000-00-00 00:00:00'),(111069,10,'F45.29 ','Other hypochondriacal disorders','Y','0000-00-00 00:00:00'),(111067,10,'F45.21 ','Hypochondriasis','Y','0000-00-00 00:00:00'),(111068,10,'F45.22 ','Body dysmorphic disorder','Y','0000-00-00 00:00:00'),(111065,10,'F45.1 ','Undifferentiated somatoform disorder','Y','0000-00-00 00:00:00'),(111066,10,'F45.20 ','Hypochondriacal disorder, unspecified','Y','0000-00-00 00:00:00'),(111064,10,'F45.0 ','Somatization disorder','Y','0000-00-00 00:00:00'),(111062,10,'F44.89 ','Other dissociative and conversion disorders','Y','0000-00-00 00:00:00'),(111063,10,'F44.9 ','Dissociative and conversion disorder, unspecified','Y','0000-00-00 00:00:00'),(111061,10,'F44.81 ','Dissociative identity disorder','Y','0000-00-00 00:00:00'),(111060,10,'F44.7 ','Conversion disorder with mixed symptom presentation','Y','0000-00-00 00:00:00'),(111059,10,'F44.6 ','Conversion disorder with sensory symptom or deficit','Y','0000-00-00 00:00:00'),(111057,10,'F44.4 ','Conversion disorder with motor symptom or deficit','Y','0000-00-00 00:00:00'),(111058,10,'F44.5 ','Conversion disorder with seizures or convulsions','Y','0000-00-00 00:00:00'),(111055,10,'F44.1 ','Dissociative fugue','Y','0000-00-00 00:00:00'),(111056,10,'F44.2 ','Dissociative stupor','Y','0000-00-00 00:00:00'),(111054,10,'F44.0 ','Dissociative amnesia','Y','0000-00-00 00:00:00'),(111052,10,'F43.89 ','Other reactions to severe stress','Y','0000-00-00 00:00:00'),(111053,10,'F43.9 ','Reaction to severe stress, unspecified','Y','0000-00-00 00:00:00'),(111050,10,'F43.29 ','Adjustment disorder with other symptoms','Y','0000-00-00 00:00:00'),(111051,10,'F43.81 ','Prolonged grief disorder','Y','0000-00-00 00:00:00'),(111049,10,'F43.25 ','Adjustment disorder with mixed disturbance of emotions and conduct','Y','0000-00-00 00:00:00'),(111048,10,'F43.24 ','Adjustment disorder with disturbance of conduct','Y','0000-00-00 00:00:00'),(111047,10,'F43.23 ','Adjustment disorder with mixed anxiety and depressed mood','Y','0000-00-00 00:00:00'),(111045,10,'F43.21 ','Adjustment disorder with depressed mood','Y','0000-00-00 00:00:00'),(111046,10,'F43.22 ','Adjustment disorder with anxiety','Y','0000-00-00 00:00:00'),(111043,10,'F43.12 ','Post-traumatic stress disorder, chronic','Y','0000-00-00 00:00:00'),(111044,10,'F43.20 ','Adjustment disorder, unspecified','Y','0000-00-00 00:00:00'),(111042,10,'F43.11 ','Post-traumatic stress disorder, acute','Y','0000-00-00 00:00:00'),(111040,10,'F43.0 ','Acute stress reaction','Y','0000-00-00 00:00:00'),(111041,10,'F43.10 ','Post-traumatic stress disorder, unspecified','Y','0000-00-00 00:00:00'),(111039,10,'F42.9 ','Obsessive-compulsive disorder, unspecified','Y','0000-00-00 00:00:00'),(111037,10,'F42.4 ','Excoriation (skin-picking) disorder','Y','0000-00-00 00:00:00'),(111038,10,'F42.8 ','Other obsessive-compulsive disorder','Y','0000-00-00 00:00:00'),(111036,10,'F42.3 ','Hoarding disorder','Y','0000-00-00 00:00:00'),(111034,10,'F41.9 ','Anxiety disorder, unspecified','Y','0000-00-00 00:00:00'),(111035,10,'F42.2 ','Mixed obsessional thoughts and acts','Y','0000-00-00 00:00:00'),(111033,10,'F41.8 ','Other specified anxiety disorders','Y','0000-00-00 00:00:00'),(111031,10,'F41.1 ','Generalized anxiety disorder','Y','0000-00-00 00:00:00'),(111032,10,'F41.3 ','Other mixed anxiety disorders','Y','0000-00-00 00:00:00'),(111030,10,'F41.0 ','Panic disorder [episodic paroxysmal anxiety]','Y','0000-00-00 00:00:00'),(111029,10,'F40.9 ','Phobic anxiety disorder, unspecified','Y','0000-00-00 00:00:00'),(111027,10,'F40.298 ','Other specified phobia','Y','0000-00-00 00:00:00'),(111028,10,'F40.8 ','Other phobic anxiety disorders','Y','0000-00-00 00:00:00'),(111025,10,'F40.290 ','Androphobia','Y','0000-00-00 00:00:00'),(111026,10,'F40.291 ','Gynephobia','Y','0000-00-00 00:00:00'),(111024,10,'F40.248 ','Other situational type phobia','Y','0000-00-00 00:00:00'),(111022,10,'F40.242 ','Fear of bridges','Y','0000-00-00 00:00:00'),(111023,10,'F40.243 ','Fear of flying','Y','0000-00-00 00:00:00'),(111020,10,'F40.240 ','Claustrophobia','Y','0000-00-00 00:00:00'),(111021,10,'F40.241 ','Acrophobia','Y','0000-00-00 00:00:00'),(111018,10,'F40.232 ','Fear of other medical care','Y','0000-00-00 00:00:00'),(111019,10,'F40.233 ','Fear of injury','Y','0000-00-00 00:00:00'),(111017,10,'F40.231 ','Fear of injections and transfusions','Y','0000-00-00 00:00:00'),(111016,10,'F40.230 ','Fear of blood','Y','0000-00-00 00:00:00'),(111015,10,'F40.228 ','Other natural environment type phobia','Y','0000-00-00 00:00:00'),(111013,10,'F40.218 ','Other animal type phobia','Y','0000-00-00 00:00:00'),(111014,10,'F40.220 ','Fear of thunderstorms','Y','0000-00-00 00:00:00'),(111011,10,'F40.11 ','Social phobia, generalized','Y','0000-00-00 00:00:00'),(111012,10,'F40.210 ','Arachnophobia','Y','0000-00-00 00:00:00'),(111010,10,'F40.10 ','Social phobia, unspecified','Y','0000-00-00 00:00:00'),(111008,10,'F40.01 ','Agoraphobia with panic disorder','Y','0000-00-00 00:00:00'),(111009,10,'F40.02 ','Agoraphobia without panic disorder','Y','0000-00-00 00:00:00'),(111006,10,'F39','Unspecified mood [affective] disorder','Y','0000-00-00 00:00:00'),(111007,10,'F40.00 ','Agoraphobia, unspecified','Y','0000-00-00 00:00:00'),(111005,10,'F34.9 ','Persistent mood [affective] disorder, unspecified','Y','0000-00-00 00:00:00'),(111004,10,'F34.89 ','Other specified persistent mood disorders','Y','0000-00-00 00:00:00'),(111003,10,'F34.81 ','Disruptive mood dysregulation disorder','Y','0000-00-00 00:00:00'),(111002,10,'F34.1 ','Dysthymic disorder','Y','0000-00-00 00:00:00'),(111000,10,'F33.9 ','Major depressive disorder, recurrent, unspecified','Y','0000-00-00 00:00:00'),(111001,10,'F34.0 ','Cyclothymic disorder','Y','0000-00-00 00:00:00'),(110999,10,'F33.8 ','Other recurrent depressive disorders','Y','0000-00-00 00:00:00'),(110998,10,'F33.42 ','Major depressive disorder, recurrent, in full remission','Y','0000-00-00 00:00:00'),(110997,10,'F33.41 ','Major depressive disorder, recurrent, in partial remission','Y','0000-00-00 00:00:00'),(110996,10,'F33.40 ','Major depressive disorder, recurrent, in remission, unspecified','Y','0000-00-00 00:00:00'),(110995,10,'F33.3 ','Major depressive disorder, recurrent, severe with psychotic symptoms','Y','0000-00-00 00:00:00'),(110994,10,'F33.2 ','Major depressive disorder, recurrent severe without psychotic features','Y','0000-00-00 00:00:00'),(110993,10,'F33.1 ','Major depressive disorder, recurrent, moderate','Y','0000-00-00 00:00:00'),(110992,10,'F33.0 ','Major depressive disorder, recurrent, mild','Y','0000-00-00 00:00:00'),(110991,10,'F32.A ','Depression, unspecified','Y','0000-00-00 00:00:00'),(110990,10,'F32.9 ','Major depressive disorder, single episode, unspecified','Y','0000-00-00 00:00:00'),(110989,10,'F32.89 ','Other specified depressive episodes','Y','0000-00-00 00:00:00'),(110988,10,'F32.81 ','Premenstrual dysphoric disorder','Y','0000-00-00 00:00:00'),(110987,10,'F32.5 ','Major depressive disorder, single episode, in full remission','Y','0000-00-00 00:00:00'),(110986,10,'F32.4 ','Major depressive disorder, single episode, in partial remission','Y','0000-00-00 00:00:00'),(110985,10,'F32.3 ','Major depressive disorder, single episode, severe with psychotic features','Y','0000-00-00 00:00:00'),(110984,10,'F32.2 ','Major depressive disorder, single episode, severe without psychotic features','Y','0000-00-00 00:00:00'),(110983,10,'F32.1 ','Major depressive disorder, single episode, moderate','Y','0000-00-00 00:00:00'),(110982,10,'F32.0 ','Major depressive disorder, single episode, mild','Y','0000-00-00 00:00:00'),(110981,10,'F31.9 ','Bipolar disorder, unspecified','Y','0000-00-00 00:00:00'),(110979,10,'F31.81 ','Bipolar II disorder','Y','0000-00-00 00:00:00'),(110980,10,'F31.89 ','Other bipolar disorder','Y','0000-00-00 00:00:00'),(110978,10,'F31.78 ','Bipolar disorder, in full remission, most recent episode mixed','Y','0000-00-00 00:00:00'),(110977,10,'F31.77 ','Bipolar disorder, in partial remission, most recent episode mixed','Y','0000-00-00 00:00:00'),(110976,10,'F31.76 ','Bipolar disorder, in full remission, most recent episode depressed','Y','0000-00-00 00:00:00'),(110975,10,'F31.75 ','Bipolar disorder, in partial remission, most recent episode depressed','Y','0000-00-00 00:00:00'),(110974,10,'F31.74 ','Bipolar disorder, in full remission, most recent episode manic','Y','0000-00-00 00:00:00'),(110973,10,'F31.73 ','Bipolar disorder, in partial remission, most recent episode manic','Y','0000-00-00 00:00:00'),(110972,10,'F31.72 ','Bipolar disorder, in full remission, most recent episode hypomanic','Y','0000-00-00 00:00:00'),(110971,10,'F31.71 ','Bipolar disorder, in partial remission, most recent episode hypomanic','Y','0000-00-00 00:00:00'),(110970,10,'F31.70 ','Bipolar disorder, currently in remission, most recent episode unspecified','Y','0000-00-00 00:00:00'),(110969,10,'F31.64 ','Bipolar disorder, current episode mixed, severe, with psychotic features','Y','0000-00-00 00:00:00'),(110968,10,'F31.63 ','Bipolar disorder, current episode mixed, severe, without psychotic features','Y','0000-00-00 00:00:00'),(110966,10,'F31.61 ','Bipolar disorder, current episode mixed, mild','Y','0000-00-00 00:00:00'),(110967,10,'F31.62 ','Bipolar disorder, current episode mixed, moderate','Y','0000-00-00 00:00:00'),(110965,10,'F31.60 ','Bipolar disorder, current episode mixed, unspecified','Y','0000-00-00 00:00:00'),(110964,10,'F31.5 ','Bipolar disorder, current episode depressed, severe, with psychotic features','Y','0000-00-00 00:00:00'),(110963,10,'F31.4 ','Bipolar disorder, current episode depressed, severe, without psychotic features','Y','0000-00-00 00:00:00'),(110962,10,'F31.32 ','Bipolar disorder, current episode depressed, moderate','Y','0000-00-00 00:00:00'),(110961,10,'F31.31 ','Bipolar disorder, current episode depressed, mild','Y','0000-00-00 00:00:00'),(110960,10,'F31.30 ','Bipolar disorder, current episode depressed, mild or moderate severity, unspecified','Y','0000-00-00 00:00:00'),(110959,10,'F31.2 ','Bipolar disorder, current episode manic severe with psychotic features','Y','0000-00-00 00:00:00'),(110958,10,'F31.13 ','Bipolar disorder, current episode manic without psychotic features, severe','Y','0000-00-00 00:00:00'),(110957,10,'F31.12 ','Bipolar disorder, current episode manic without psychotic features, moderate','Y','0000-00-00 00:00:00'),(110956,10,'F31.11 ','Bipolar disorder, current episode manic without psychotic features, mild','Y','0000-00-00 00:00:00'),(110955,10,'F31.10 ','Bipolar disorder, current episode manic without psychotic features, unspecified','Y','0000-00-00 00:00:00'),(110953,10,'F30.9 ','Manic episode, unspecified','Y','0000-00-00 00:00:00'),(110954,10,'F31.0 ','Bipolar disorder, current episode hypomanic','Y','0000-00-00 00:00:00'),(110951,10,'F30.4 ','Manic episode in full remission','Y','0000-00-00 00:00:00'),(110952,10,'F30.8 ','Other manic episodes','Y','0000-00-00 00:00:00'),(110949,10,'F30.2 ','Manic episode, severe with psychotic symptoms','Y','0000-00-00 00:00:00'),(110950,10,'F30.3 ','Manic episode in partial remission','Y','0000-00-00 00:00:00'),(110948,10,'F30.13 ','Manic episode, severe, without psychotic symptoms','Y','0000-00-00 00:00:00'),(110946,10,'F30.11 ','Manic episode without psychotic symptoms, mild','Y','0000-00-00 00:00:00'),(110947,10,'F30.12 ','Manic episode without psychotic symptoms, moderate','Y','0000-00-00 00:00:00'),(110945,10,'F30.10 ','Manic episode without psychotic symptoms, unspecified','Y','0000-00-00 00:00:00'),(110944,10,'F29','Unspecified psychosis not due to a substance or known physiological condition','Y','0000-00-00 00:00:00'),(110943,10,'F28','Other psychotic disorder not due to a substance or known physiological condition','Y','0000-00-00 00:00:00'),(110941,10,'F25.8 ','Other schizoaffective disorders','Y','0000-00-00 00:00:00'),(110942,10,'F25.9 ','Schizoaffective disorder, unspecified','Y','0000-00-00 00:00:00'),(110939,10,'F25.0 ','Schizoaffective disorder, bipolar type','Y','0000-00-00 00:00:00'),(110940,10,'F25.1 ','Schizoaffective disorder, depressive type','Y','0000-00-00 00:00:00'),(110937,10,'F23','Brief psychotic disorder','Y','0000-00-00 00:00:00'),(110938,10,'F24','Shared psychotic disorder','Y','0000-00-00 00:00:00'),(110935,10,'F21','Schizotypal disorder','Y','0000-00-00 00:00:00'),(110936,10,'F22','Delusional disorders','Y','0000-00-00 00:00:00'),(110933,10,'F20.89 ','Other schizophrenia','Y','0000-00-00 00:00:00'),(110934,10,'F20.9 ','Schizophrenia, unspecified','Y','0000-00-00 00:00:00'),(110931,10,'F20.5 ','Residual schizophrenia','Y','0000-00-00 00:00:00'),(110932,10,'F20.81 ','Schizophreniform disorder','Y','0000-00-00 00:00:00'),(110929,10,'F20.2 ','Catatonic schizophrenia','Y','0000-00-00 00:00:00'),(110930,10,'F20.3 ','Undifferentiated schizophrenia','Y','0000-00-00 00:00:00'),(110928,10,'F20.1 ','Disorganized schizophrenia','Y','0000-00-00 00:00:00'),(110927,10,'F20.0 ','Paranoid schizophrenia','Y','0000-00-00 00:00:00'),(110926,10,'F19.99 ','Other psychoactive substance use, unspecified with unspecified psychoactive substance-induced disorder','Y','0000-00-00 00:00:00'),(110925,10,'F19.988 ','Other psychoactive substance use, unspecified with other psychoactive substance-induced disorder','Y','0000-00-00 00:00:00'),(110924,10,'F19.982 ','Other psychoactive substance use, unspecified with psychoactive substance-induced sleep disorder','Y','0000-00-00 00:00:00'),(110923,10,'F19.981 ','Other psychoactive substance use, unspecified with psychoactive substance-induced sexual dysfunction','Y','0000-00-00 00:00:00'),(110922,10,'F19.980 ','Other psychoactive substance use, unspecified with psychoactive substance-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110921,10,'F19.97 ','Other psychoactive substance use, unspecified with psychoactive substance-induced persisting dementia','Y','0000-00-00 00:00:00'),(110920,10,'F19.96 ','Other psychoactive substance use, unspecified with psychoactive substance-induced persisting amnestic disorder','Y','0000-00-00 00:00:00'),(110919,10,'F19.959 ','Other psychoactive substance use, unspecified with psychoactive substance-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110918,10,'F19.951 ','Other psychoactive substance use, unspecified with psychoactive substance-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110917,10,'F19.950 ','Other psychoactive substance use, unspecified with psychoactive substance-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110916,10,'F19.94 ','Other psychoactive substance use, unspecified with psychoactive substance-induced mood disorder','Y','0000-00-00 00:00:00'),(110915,10,'F19.939 ','Other psychoactive substance use, unspecified with withdrawal, unspecified','Y','0000-00-00 00:00:00'),(110914,10,'F19.932 ','Other psychoactive substance use, unspecified with withdrawal with perceptual disturbance','Y','0000-00-00 00:00:00'),(110913,10,'F19.931 ','Other psychoactive substance use, unspecified with withdrawal delirium','Y','0000-00-00 00:00:00'),(110912,10,'F19.930 ','Other psychoactive substance use, unspecified with withdrawal, uncomplicated','Y','0000-00-00 00:00:00'),(110911,10,'F19.929 ','Other psychoactive substance use, unspecified with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110910,10,'F19.922 ','Other psychoactive substance use, unspecified with intoxication with perceptual disturbance','Y','0000-00-00 00:00:00'),(110909,10,'F19.921 ','Other psychoactive substance use, unspecified with intoxication with delirium','Y','0000-00-00 00:00:00'),(110908,10,'F19.920 ','Other psychoactive substance use, unspecified with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110907,10,'F19.91 ','Other psychoactive substance use, unspecified, in remission','Y','0000-00-00 00:00:00'),(110906,10,'F19.90 ','Other psychoactive substance use, unspecified, uncomplicated','Y','0000-00-00 00:00:00'),(110905,10,'F19.29 ','Other psychoactive substance dependence with unspecified psychoactive substance-induced disorder','Y','0000-00-00 00:00:00'),(110904,10,'F19.288 ','Other psychoactive substance dependence with other psychoactive substance-induced disorder','Y','0000-00-00 00:00:00'),(110903,10,'F19.282 ','Other psychoactive substance dependence with psychoactive substance-induced sleep disorder','Y','0000-00-00 00:00:00'),(110902,10,'F19.281 ','Other psychoactive substance dependence with psychoactive substance-induced sexual dysfunction','Y','0000-00-00 00:00:00'),(110901,10,'F19.280 ','Other psychoactive substance dependence with psychoactive substance-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110900,10,'F19.27 ','Other psychoactive substance dependence with psychoactive substance-induced persisting dementia','Y','0000-00-00 00:00:00'),(110899,10,'F19.26 ','Other psychoactive substance dependence with psychoactive substance-induced persisting amnestic disorder','Y','0000-00-00 00:00:00'),(110898,10,'F19.259 ','Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110897,10,'F19.251 ','Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110896,10,'F19.250 ','Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110895,10,'F19.24 ','Other psychoactive substance dependence with psychoactive substance-induced mood disorder','Y','0000-00-00 00:00:00'),(110894,10,'F19.239 ','Other psychoactive substance dependence with withdrawal, unspecified','Y','0000-00-00 00:00:00'),(110893,10,'F19.232 ','Other psychoactive substance dependence with withdrawal with perceptual disturbance','Y','0000-00-00 00:00:00'),(110892,10,'F19.231 ','Other psychoactive substance dependence with withdrawal delirium','Y','0000-00-00 00:00:00'),(110891,10,'F19.230 ','Other psychoactive substance dependence with withdrawal, uncomplicated','Y','0000-00-00 00:00:00'),(110890,10,'F19.229 ','Other psychoactive substance dependence with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110889,10,'F19.222 ','Other psychoactive substance dependence with intoxication with perceptual disturbance','Y','0000-00-00 00:00:00'),(110888,10,'F19.221 ','Other psychoactive substance dependence with intoxication delirium','Y','0000-00-00 00:00:00'),(110887,10,'F19.220 ','Other psychoactive substance dependence with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110886,10,'F19.21 ','Other psychoactive substance dependence, in remission','Y','0000-00-00 00:00:00'),(110885,10,'F19.20 ','Other psychoactive substance dependence, uncomplicated','Y','0000-00-00 00:00:00'),(110884,10,'F19.19 ','Other psychoactive substance abuse with unspecified psychoactive substance-induced disorder','Y','0000-00-00 00:00:00'),(110883,10,'F19.188 ','Other psychoactive substance abuse with other psychoactive substance-induced disorder','Y','0000-00-00 00:00:00'),(110882,10,'F19.182 ','Other psychoactive substance abuse with psychoactive substance-induced sleep disorder','Y','0000-00-00 00:00:00'),(110881,10,'F19.181 ','Other psychoactive substance abuse with psychoactive substance-induced sexual dysfunction','Y','0000-00-00 00:00:00'),(110880,10,'F19.180 ','Other psychoactive substance abuse with psychoactive substance-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110879,10,'F19.17 ','Other psychoactive substance abuse with psychoactive substance-induced persisting dementia','Y','0000-00-00 00:00:00'),(110878,10,'F19.16 ','Other psychoactive substance abuse with psychoactive substance-induced persisting amnestic disorder','Y','0000-00-00 00:00:00'),(110877,10,'F19.159 ','Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110876,10,'F19.151 ','Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110875,10,'F19.150 ','Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110874,10,'F19.14 ','Other psychoactive substance abuse with psychoactive substance-induced mood disorder','Y','0000-00-00 00:00:00'),(110873,10,'F19.139 ','Other psychoactive substance abuse with withdrawal, unspecified','Y','0000-00-00 00:00:00'),(110872,10,'F19.132 ','Other psychoactive substance abuse with withdrawal with perceptual disturbance','Y','0000-00-00 00:00:00'),(110871,10,'F19.131 ','Other psychoactive substance abuse with withdrawal delirium','Y','0000-00-00 00:00:00'),(110870,10,'F19.130 ','Other psychoactive substance abuse with withdrawal, uncomplicated','Y','0000-00-00 00:00:00'),(110869,10,'F19.129 ','Other psychoactive substance abuse with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110868,10,'F19.122 ','Other psychoactive substance abuse with intoxication with perceptual disturbances','Y','0000-00-00 00:00:00'),(110867,10,'F19.121 ','Other psychoactive substance abuse with intoxication delirium','Y','0000-00-00 00:00:00'),(110866,10,'F19.120 ','Other psychoactive substance abuse with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110865,10,'F19.11 ','Other psychoactive substance abuse, in remission','Y','0000-00-00 00:00:00'),(110864,10,'F19.10 ','Other psychoactive substance abuse, uncomplicated','Y','0000-00-00 00:00:00'),(110863,10,'F18.99 ','Inhalant use, unspecified with unspecified inhalant-induced disorder','Y','0000-00-00 00:00:00'),(110862,10,'F18.988 ','Inhalant use, unspecified with other inhalant-induced disorder','Y','0000-00-00 00:00:00'),(110861,10,'F18.980 ','Inhalant use, unspecified with inhalant-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110860,10,'F18.97 ','Inhalant use, unspecified with inhalant-induced persisting dementia','Y','0000-00-00 00:00:00'),(110859,10,'F18.959 ','Inhalant use, unspecified with inhalant-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110858,10,'F18.951 ','Inhalant use, unspecified with inhalant-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110857,10,'F18.950 ','Inhalant use, unspecified with inhalant-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110856,10,'F18.94 ','Inhalant use, unspecified with inhalant-induced mood disorder','Y','0000-00-00 00:00:00'),(110855,10,'F18.929 ','Inhalant use, unspecified with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110854,10,'F18.921 ','Inhalant use, unspecified with intoxication with delirium','Y','0000-00-00 00:00:00'),(110853,10,'F18.920 ','Inhalant use, unspecified with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110852,10,'F18.91 ','Inhalant use, unspecified, in remission','Y','0000-00-00 00:00:00'),(110851,10,'F18.90 ','Inhalant use, unspecified, uncomplicated','Y','0000-00-00 00:00:00'),(110850,10,'F18.29 ','Inhalant dependence with unspecified inhalant-induced disorder','Y','0000-00-00 00:00:00'),(110849,10,'F18.288 ','Inhalant dependence with other inhalant-induced disorder','Y','0000-00-00 00:00:00'),(110848,10,'F18.280 ','Inhalant dependence with inhalant-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110847,10,'F18.27 ','Inhalant dependence with inhalant-induced dementia','Y','0000-00-00 00:00:00'),(110846,10,'F18.259 ','Inhalant dependence with inhalant-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110845,10,'F18.251 ','Inhalant dependence with inhalant-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110844,10,'F18.250 ','Inhalant dependence with inhalant-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110843,10,'F18.24 ','Inhalant dependence with inhalant-induced mood disorder','Y','0000-00-00 00:00:00'),(110842,10,'F18.229 ','Inhalant dependence with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110841,10,'F18.221 ','Inhalant dependence with intoxication delirium','Y','0000-00-00 00:00:00'),(110840,10,'F18.220 ','Inhalant dependence with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110839,10,'F18.21 ','Inhalant dependence, in remission','Y','0000-00-00 00:00:00'),(110838,10,'F18.20 ','Inhalant dependence, uncomplicated','Y','0000-00-00 00:00:00'),(110837,10,'F18.19 ','Inhalant abuse with unspecified inhalant-induced disorder','Y','0000-00-00 00:00:00'),(110836,10,'F18.188 ','Inhalant abuse with other inhalant-induced disorder','Y','0000-00-00 00:00:00'),(110834,10,'F18.17 ','Inhalant abuse with inhalant-induced dementia','Y','0000-00-00 00:00:00'),(110835,10,'F18.180 ','Inhalant abuse with inhalant-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110833,10,'F18.159 ','Inhalant abuse with inhalant-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110832,10,'F18.151 ','Inhalant abuse with inhalant-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110831,10,'F18.150 ','Inhalant abuse with inhalant-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110830,10,'F18.14 ','Inhalant abuse with inhalant-induced mood disorder','Y','0000-00-00 00:00:00'),(110829,10,'F18.129 ','Inhalant abuse with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110827,10,'F18.120 ','Inhalant abuse with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110828,10,'F18.121 ','Inhalant abuse with intoxication delirium','Y','0000-00-00 00:00:00'),(110825,10,'F18.10 ','Inhalant abuse, uncomplicated','Y','0000-00-00 00:00:00'),(110826,10,'F18.11 ','Inhalant abuse, in remission','Y','0000-00-00 00:00:00'),(110824,10,'F17.299 ','Nicotine dependence, other tobacco product, with unspecified nicotine-induced disorders','Y','0000-00-00 00:00:00'),(110823,10,'F17.298 ','Nicotine dependence, other tobacco product, with other nicotine-induced disorders','Y','0000-00-00 00:00:00'),(110822,10,'F17.293 ','Nicotine dependence, other tobacco product, with withdrawal','Y','0000-00-00 00:00:00'),(110821,10,'F17.291 ','Nicotine dependence, other tobacco product, in remission','Y','0000-00-00 00:00:00'),(110820,10,'F17.290 ','Nicotine dependence, other tobacco product, uncomplicated','Y','0000-00-00 00:00:00'),(110819,10,'F17.229 ','Nicotine dependence, chewing tobacco, with unspecified nicotine-induced disorders','Y','0000-00-00 00:00:00'),(110818,10,'F17.228 ','Nicotine dependence, chewing tobacco, with other nicotine-induced disorders','Y','0000-00-00 00:00:00'),(110817,10,'F17.223 ','Nicotine dependence, chewing tobacco, with withdrawal','Y','0000-00-00 00:00:00'),(110815,10,'F17.220 ','Nicotine dependence, chewing tobacco, uncomplicated','Y','0000-00-00 00:00:00'),(110816,10,'F17.221 ','Nicotine dependence, chewing tobacco, in remission','Y','0000-00-00 00:00:00'),(110814,10,'F17.219 ','Nicotine dependence, cigarettes, with unspecified nicotine-induced disorders','Y','0000-00-00 00:00:00'),(110813,10,'F17.218 ','Nicotine dependence, cigarettes, with other nicotine-induced disorders','Y','0000-00-00 00:00:00'),(110812,10,'F17.213 ','Nicotine dependence, cigarettes, with withdrawal','Y','0000-00-00 00:00:00'),(110811,10,'F17.211 ','Nicotine dependence, cigarettes, in remission','Y','0000-00-00 00:00:00'),(110810,10,'F17.210 ','Nicotine dependence, cigarettes, uncomplicated','Y','0000-00-00 00:00:00'),(110809,10,'F17.209 ','Nicotine dependence, unspecified, with unspecified nicotine-induced disorders','Y','0000-00-00 00:00:00'),(110808,10,'F17.208 ','Nicotine dependence, unspecified, with other nicotine-induced disorders','Y','0000-00-00 00:00:00'),(110807,10,'F17.203 ','Nicotine dependence unspecified, with withdrawal','Y','0000-00-00 00:00:00'),(110805,10,'F17.200 ','Nicotine dependence, unspecified, uncomplicated','Y','0000-00-00 00:00:00'),(110806,10,'F17.201 ','Nicotine dependence, unspecified, in remission','Y','0000-00-00 00:00:00'),(110804,10,'F16.99 ','Hallucinogen use, unspecified with unspecified hallucinogen-induced disorder','Y','0000-00-00 00:00:00'),(110803,10,'F16.988 ','Hallucinogen use, unspecified with other hallucinogen-induced disorder','Y','0000-00-00 00:00:00'),(110802,10,'F16.983 ','Hallucinogen use, unspecified with hallucinogen persisting perception disorder (flashbacks)','Y','0000-00-00 00:00:00'),(110801,10,'F16.980 ','Hallucinogen use, unspecified with hallucinogen-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110800,10,'F16.959 ','Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110799,10,'F16.951 ','Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110798,10,'F16.950 ','Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110797,10,'F16.94 ','Hallucinogen use, unspecified with hallucinogen-induced mood disorder','Y','0000-00-00 00:00:00'),(110796,10,'F16.929 ','Hallucinogen use, unspecified with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110795,10,'F16.921 ','Hallucinogen use, unspecified with intoxication with delirium','Y','0000-00-00 00:00:00'),(110794,10,'F16.920 ','Hallucinogen use, unspecified with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110793,10,'F16.91 ','Hallucinogen use, unspecified, in remission','Y','0000-00-00 00:00:00'),(110792,10,'F16.90 ','Hallucinogen use, unspecified, uncomplicated','Y','0000-00-00 00:00:00'),(110791,10,'F16.29 ','Hallucinogen dependence with unspecified hallucinogen-induced disorder','Y','0000-00-00 00:00:00'),(110790,10,'F16.288 ','Hallucinogen dependence with other hallucinogen-induced disorder','Y','0000-00-00 00:00:00'),(110789,10,'F16.283 ','Hallucinogen dependence with hallucinogen persisting perception disorder (flashbacks)','Y','0000-00-00 00:00:00'),(110788,10,'F16.280 ','Hallucinogen dependence with hallucinogen-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110787,10,'F16.259 ','Hallucinogen dependence with hallucinogen-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110786,10,'F16.251 ','Hallucinogen dependence with hallucinogen-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110784,10,'F16.24 ','Hallucinogen dependence with hallucinogen-induced mood disorder','Y','0000-00-00 00:00:00'),(110785,10,'F16.250 ','Hallucinogen dependence with hallucinogen-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110783,10,'F16.229 ','Hallucinogen dependence with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110782,10,'F16.221 ','Hallucinogen dependence with intoxication with delirium','Y','0000-00-00 00:00:00'),(110781,10,'F16.220 ','Hallucinogen dependence with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110779,10,'F16.20 ','Hallucinogen dependence, uncomplicated','Y','0000-00-00 00:00:00'),(110780,10,'F16.21 ','Hallucinogen dependence, in remission','Y','0000-00-00 00:00:00'),(110778,10,'F16.19 ','Hallucinogen abuse with unspecified hallucinogen-induced disorder','Y','0000-00-00 00:00:00'),(110777,10,'F16.188 ','Hallucinogen abuse with other hallucinogen-induced disorder','Y','0000-00-00 00:00:00'),(110776,10,'F16.183 ','Hallucinogen abuse with hallucinogen persisting perception disorder (flashbacks)','Y','0000-00-00 00:00:00'),(110775,10,'F16.180 ','Hallucinogen abuse with hallucinogen-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110774,10,'F16.159 ','Hallucinogen abuse with hallucinogen-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110773,10,'F16.151 ','Hallucinogen abuse with hallucinogen-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110772,10,'F16.150 ','Hallucinogen abuse with hallucinogen-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110771,10,'F16.14 ','Hallucinogen abuse with hallucinogen-induced mood disorder','Y','0000-00-00 00:00:00'),(110770,10,'F16.129 ','Hallucinogen abuse with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110769,10,'F16.122 ','Hallucinogen abuse with intoxication with perceptual disturbance','Y','0000-00-00 00:00:00'),(110768,10,'F16.121 ','Hallucinogen abuse with intoxication with delirium','Y','0000-00-00 00:00:00'),(110767,10,'F16.120 ','Hallucinogen abuse with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110766,10,'F16.11 ','Hallucinogen abuse, in remission','Y','0000-00-00 00:00:00'),(110765,10,'F16.10 ','Hallucinogen abuse, uncomplicated','Y','0000-00-00 00:00:00'),(110764,10,'F15.99 ','Other stimulant use, unspecified with unspecified stimulant-induced disorder','Y','0000-00-00 00:00:00'),(110763,10,'F15.988 ','Other stimulant use, unspecified with other stimulant-induced disorder','Y','0000-00-00 00:00:00'),(110762,10,'F15.982 ','Other stimulant use, unspecified with stimulant-induced sleep disorder','Y','0000-00-00 00:00:00'),(110761,10,'F15.981 ','Other stimulant use, unspecified with stimulant-induced sexual dysfunction','Y','0000-00-00 00:00:00'),(110760,10,'F15.980 ','Other stimulant use, unspecified with stimulant-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110759,10,'F15.959 ','Other stimulant use, unspecified with stimulant-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110758,10,'F15.951 ','Other stimulant use, unspecified with stimulant-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110757,10,'F15.950 ','Other stimulant use, unspecified with stimulant-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110756,10,'F15.94 ','Other stimulant use, unspecified with stimulant-induced mood disorder','Y','0000-00-00 00:00:00'),(110755,10,'F15.93 ','Other stimulant use, unspecified with withdrawal','Y','0000-00-00 00:00:00'),(110754,10,'F15.929 ','Other stimulant use, unspecified with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110753,10,'F15.922 ','Other stimulant use, unspecified with intoxication with perceptual disturbance','Y','0000-00-00 00:00:00'),(110752,10,'F15.921 ','Other stimulant use, unspecified with intoxication delirium','Y','0000-00-00 00:00:00'),(110751,10,'F15.920 ','Other stimulant use, unspecified with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110750,10,'F15.91 ','Other stimulant use, unspecified, in remission','Y','0000-00-00 00:00:00'),(110749,10,'F15.90 ','Other stimulant use, unspecified, uncomplicated','Y','0000-00-00 00:00:00'),(110748,10,'F15.29 ','Other stimulant dependence with unspecified stimulant-induced disorder','Y','0000-00-00 00:00:00'),(110747,10,'F15.288 ','Other stimulant dependence with other stimulant-induced disorder','Y','0000-00-00 00:00:00'),(110746,10,'F15.282 ','Other stimulant dependence with stimulant-induced sleep disorder','Y','0000-00-00 00:00:00'),(110745,10,'F15.281 ','Other stimulant dependence with stimulant-induced sexual dysfunction','Y','0000-00-00 00:00:00'),(110744,10,'F15.280 ','Other stimulant dependence with stimulant-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110743,10,'F15.259 ','Other stimulant dependence with stimulant-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110742,10,'F15.251 ','Other stimulant dependence with stimulant-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110741,10,'F15.250 ','Other stimulant dependence with stimulant-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110740,10,'F15.24 ','Other stimulant dependence with stimulant-induced mood disorder','Y','0000-00-00 00:00:00'),(110739,10,'F15.23 ','Other stimulant dependence with withdrawal','Y','0000-00-00 00:00:00'),(110738,10,'F15.229 ','Other stimulant dependence with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110737,10,'F15.222 ','Other stimulant dependence with intoxication with perceptual disturbance','Y','0000-00-00 00:00:00'),(110736,10,'F15.221 ','Other stimulant dependence with intoxication delirium','Y','0000-00-00 00:00:00'),(110735,10,'F15.220 ','Other stimulant dependence with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110734,10,'F15.21 ','Other stimulant dependence, in remission','Y','0000-00-00 00:00:00'),(110733,10,'F15.20 ','Other stimulant dependence, uncomplicated','Y','0000-00-00 00:00:00'),(110732,10,'F15.19 ','Other stimulant abuse with unspecified stimulant-induced disorder','Y','0000-00-00 00:00:00'),(110731,10,'F15.188 ','Other stimulant abuse with other stimulant-induced disorder','Y','0000-00-00 00:00:00'),(110730,10,'F15.182 ','Other stimulant abuse with stimulant-induced sleep disorder','Y','0000-00-00 00:00:00'),(110729,10,'F15.181 ','Other stimulant abuse with stimulant-induced sexual dysfunction','Y','0000-00-00 00:00:00'),(110728,10,'F15.180 ','Other stimulant abuse with stimulant-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110727,10,'F15.159 ','Other stimulant abuse with stimulant-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110726,10,'F15.151 ','Other stimulant abuse with stimulant-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110725,10,'F15.150 ','Other stimulant abuse with stimulant-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110724,10,'F15.14 ','Other stimulant abuse with stimulant-induced mood disorder','Y','0000-00-00 00:00:00'),(110723,10,'F15.13 ','Other stimulant abuse with withdrawal','Y','0000-00-00 00:00:00'),(110722,10,'F15.129 ','Other stimulant abuse with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110721,10,'F15.122 ','Other stimulant abuse with intoxication with perceptual disturbance','Y','0000-00-00 00:00:00'),(110720,10,'F15.121 ','Other stimulant abuse with intoxication delirium','Y','0000-00-00 00:00:00'),(110719,10,'F15.120 ','Other stimulant abuse with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110718,10,'F15.11 ','Other stimulant abuse, in remission','Y','0000-00-00 00:00:00'),(110717,10,'F15.10 ','Other stimulant abuse, uncomplicated','Y','0000-00-00 00:00:00'),(110716,10,'F14.99 ','Cocaine use, unspecified with unspecified cocaine-induced disorder','Y','0000-00-00 00:00:00'),(110715,10,'F14.988 ','Cocaine use, unspecified with other cocaine-induced disorder','Y','0000-00-00 00:00:00'),(110714,10,'F14.982 ','Cocaine use, unspecified with cocaine-induced sleep disorder','Y','0000-00-00 00:00:00'),(110713,10,'F14.981 ','Cocaine use, unspecified with cocaine-induced sexual dysfunction','Y','0000-00-00 00:00:00'),(110712,10,'F14.980 ','Cocaine use, unspecified with cocaine-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110711,10,'F14.959 ','Cocaine use, unspecified with cocaine-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110710,10,'F14.951 ','Cocaine use, unspecified with cocaine-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110709,10,'F14.950 ','Cocaine use, unspecified with cocaine-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110708,10,'F14.94 ','Cocaine use, unspecified with cocaine-induced mood disorder','Y','0000-00-00 00:00:00'),(110707,10,'F14.93 ','Cocaine use, unspecified with withdrawal','Y','0000-00-00 00:00:00'),(110706,10,'F14.929 ','Cocaine use, unspecified with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110705,10,'F14.922 ','Cocaine use, unspecified with intoxication with perceptual disturbance','Y','0000-00-00 00:00:00'),(110704,10,'F14.921 ','Cocaine use, unspecified with intoxication delirium','Y','0000-00-00 00:00:00'),(110703,10,'F14.920 ','Cocaine use, unspecified with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110702,10,'F14.91 ','Cocaine use, unspecified, in remission','Y','0000-00-00 00:00:00'),(110701,10,'F14.90 ','Cocaine use, unspecified, uncomplicated','Y','0000-00-00 00:00:00'),(110700,10,'F14.29 ','Cocaine dependence with unspecified cocaine-induced disorder','Y','0000-00-00 00:00:00'),(110699,10,'F14.288 ','Cocaine dependence with other cocaine-induced disorder','Y','0000-00-00 00:00:00'),(110698,10,'F14.282 ','Cocaine dependence with cocaine-induced sleep disorder','Y','0000-00-00 00:00:00'),(110697,10,'F14.281 ','Cocaine dependence with cocaine-induced sexual dysfunction','Y','0000-00-00 00:00:00'),(110696,10,'F14.280 ','Cocaine dependence with cocaine-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110695,10,'F14.259 ','Cocaine dependence with cocaine-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110694,10,'F14.251 ','Cocaine dependence with cocaine-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110693,10,'F14.250 ','Cocaine dependence with cocaine-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110692,10,'F14.24 ','Cocaine dependence with cocaine-induced mood disorder','Y','0000-00-00 00:00:00'),(110691,10,'F14.23 ','Cocaine dependence with withdrawal','Y','0000-00-00 00:00:00'),(110690,10,'F14.229 ','Cocaine dependence with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110689,10,'F14.222 ','Cocaine dependence with intoxication with perceptual disturbance','Y','0000-00-00 00:00:00'),(110688,10,'F14.221 ','Cocaine dependence with intoxication delirium','Y','0000-00-00 00:00:00'),(110687,10,'F14.220 ','Cocaine dependence with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110686,10,'F14.21 ','Cocaine dependence, in remission','Y','0000-00-00 00:00:00'),(110685,10,'F14.20 ','Cocaine dependence, uncomplicated','Y','0000-00-00 00:00:00'),(110684,10,'F14.19 ','Cocaine abuse with unspecified cocaine-induced disorder','Y','0000-00-00 00:00:00'),(110683,10,'F14.188 ','Cocaine abuse with other cocaine-induced disorder','Y','0000-00-00 00:00:00'),(110682,10,'F14.182 ','Cocaine abuse with cocaine-induced sleep disorder','Y','0000-00-00 00:00:00'),(110681,10,'F14.181 ','Cocaine abuse with cocaine-induced sexual dysfunction','Y','0000-00-00 00:00:00'),(110680,10,'F14.180 ','Cocaine abuse with cocaine-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110679,10,'F14.159 ','Cocaine abuse with cocaine-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110678,10,'F14.151 ','Cocaine abuse with cocaine-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110677,10,'F14.150 ','Cocaine abuse with cocaine-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110676,10,'F14.14 ','Cocaine abuse with cocaine-induced mood disorder','Y','0000-00-00 00:00:00'),(110675,10,'F14.13 ','Cocaine abuse, unspecified with withdrawal','Y','0000-00-00 00:00:00'),(110674,10,'F14.129 ','Cocaine abuse with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110673,10,'F14.122 ','Cocaine abuse with intoxication with perceptual disturbance','Y','0000-00-00 00:00:00'),(110672,10,'F14.121 ','Cocaine abuse with intoxication with delirium','Y','0000-00-00 00:00:00'),(110671,10,'F14.120 ','Cocaine abuse with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110669,10,'F14.10 ','Cocaine abuse, uncomplicated','Y','0000-00-00 00:00:00'),(110670,10,'F14.11 ','Cocaine abuse, in remission','Y','0000-00-00 00:00:00'),(110668,10,'F13.99 ','Sedative, hypnotic or anxiolytic use, unspecified with unspecified sedative, hypnotic or anxiolytic-induced disorder','Y','0000-00-00 00:00:00'),(110667,10,'F13.988 ','Sedative, hypnotic or anxiolytic use, unspecified with other sedative, hypnotic or anxiolytic-induced disorder','Y','0000-00-00 00:00:00'),(110666,10,'F13.982 ','Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced sleep disorder','Y','0000-00-00 00:00:00'),(110665,10,'F13.981 ','Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced sexual dysfunction','Y','0000-00-00 00:00:00'),(110664,10,'F13.980 ','Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110663,10,'F13.97 ','Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced persisting dementia','Y','0000-00-00 00:00:00'),(110662,10,'F13.96 ','Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced persisting amnestic disorder','Y','0000-00-00 00:00:00'),(110661,10,'F13.959 ','Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110660,10,'F13.951 ','Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110659,10,'F13.950 ','Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110658,10,'F13.94 ','Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced mood disorder','Y','0000-00-00 00:00:00'),(110657,10,'F13.939 ','Sedative, hypnotic or anxiolytic use, unspecified with withdrawal, unspecified','Y','0000-00-00 00:00:00'),(110656,10,'F13.932 ','Sedative, hypnotic or anxiolytic use, unspecified with withdrawal with perceptual disturbances','Y','0000-00-00 00:00:00'),(110655,10,'F13.931 ','Sedative, hypnotic or anxiolytic use, unspecified with withdrawal delirium','Y','0000-00-00 00:00:00'),(110654,10,'F13.930 ','Sedative, hypnotic or anxiolytic use, unspecified with withdrawal, uncomplicated','Y','0000-00-00 00:00:00'),(110653,10,'F13.929 ','Sedative, hypnotic or anxiolytic use, unspecified with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110652,10,'F13.921 ','Sedative, hypnotic or anxiolytic use, unspecified with intoxication delirium','Y','0000-00-00 00:00:00'),(110651,10,'F13.920 ','Sedative, hypnotic or anxiolytic use, unspecified with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110650,10,'F13.91 ','Sedative, hypnotic or anxiolytic use, unspecified, in remission','Y','0000-00-00 00:00:00'),(110649,10,'F13.90 ','Sedative, hypnotic, or anxiolytic use, unspecified, uncomplicated','Y','0000-00-00 00:00:00'),(110648,10,'F13.29 ','Sedative, hypnotic or anxiolytic dependence with unspecified sedative, hypnotic or anxiolytic-induced disorder','Y','0000-00-00 00:00:00'),(110647,10,'F13.288 ','Sedative, hypnotic or anxiolytic dependence with other sedative, hypnotic or anxiolytic-induced disorder','Y','0000-00-00 00:00:00'),(110646,10,'F13.282 ','Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced sleep disorder','Y','0000-00-00 00:00:00'),(110645,10,'F13.281 ','Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced sexual dysfunction','Y','0000-00-00 00:00:00'),(110644,10,'F13.280 ','Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110643,10,'F13.27 ','Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced persisting dementia','Y','0000-00-00 00:00:00'),(110642,10,'F13.26 ','Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced persisting amnestic disorder','Y','0000-00-00 00:00:00'),(110641,10,'F13.259 ','Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110640,10,'F13.251 ','Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110639,10,'F13.250 ','Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110638,10,'F13.24 ','Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced mood disorder','Y','0000-00-00 00:00:00'),(110637,10,'F13.239 ','Sedative, hypnotic or anxiolytic dependence with withdrawal, unspecified','Y','0000-00-00 00:00:00'),(110636,10,'F13.232 ','Sedative, hypnotic or anxiolytic dependence with withdrawal with perceptual disturbance','Y','0000-00-00 00:00:00'),(110635,10,'F13.231 ','Sedative, hypnotic or anxiolytic dependence with withdrawal delirium','Y','0000-00-00 00:00:00'),(110634,10,'F13.230 ','Sedative, hypnotic or anxiolytic dependence with withdrawal, uncomplicated','Y','0000-00-00 00:00:00'),(110633,10,'F13.229 ','Sedative, hypnotic or anxiolytic dependence with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110632,10,'F13.221 ','Sedative, hypnotic or anxiolytic dependence with intoxication delirium','Y','0000-00-00 00:00:00'),(110631,10,'F13.220 ','Sedative, hypnotic or anxiolytic dependence with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110630,10,'F13.21 ','Sedative, hypnotic or anxiolytic dependence, in remission','Y','0000-00-00 00:00:00'),(110629,10,'F13.20 ','Sedative, hypnotic or anxiolytic dependence, uncomplicated','Y','0000-00-00 00:00:00'),(110628,10,'F13.19 ','Sedative, hypnotic or anxiolytic abuse with unspecified sedative, hypnotic or anxiolytic-induced disorder','Y','0000-00-00 00:00:00'),(110627,10,'F13.188 ','Sedative, hypnotic or anxiolytic abuse with other sedative, hypnotic or anxiolytic-induced disorder','Y','0000-00-00 00:00:00'),(110626,10,'F13.182 ','Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced sleep disorder','Y','0000-00-00 00:00:00'),(110625,10,'F13.181 ','Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced sexual dysfunction','Y','0000-00-00 00:00:00'),(110624,10,'F13.180 ','Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110623,10,'F13.159 ','Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110622,10,'F13.151 ','Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110621,10,'F13.150 ','Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110620,10,'F13.14 ','Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced mood disorder','Y','0000-00-00 00:00:00'),(110619,10,'F13.139 ','Sedative, hypnotic or anxiolytic abuse with withdrawal, unspecified','Y','0000-00-00 00:00:00'),(110618,10,'F13.132 ','Sedative, hypnotic or anxiolytic abuse with withdrawal with perceptual disturbance','Y','0000-00-00 00:00:00'),(110617,10,'F13.131 ','Sedative, hypnotic or anxiolytic abuse with withdrawal delirium','Y','0000-00-00 00:00:00'),(110616,10,'F13.130 ','Sedative, hypnotic or anxiolytic abuse with withdrawal, uncomplicated','Y','0000-00-00 00:00:00'),(110615,10,'F13.129 ','Sedative, hypnotic or anxiolytic abuse with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110614,10,'F13.121 ','Sedative, hypnotic or anxiolytic abuse with intoxication delirium','Y','0000-00-00 00:00:00'),(110613,10,'F13.120 ','Sedative, hypnotic or anxiolytic abuse with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110612,10,'F13.11 ','Sedative, hypnotic or anxiolytic abuse, in remission','Y','0000-00-00 00:00:00'),(110611,10,'F13.10 ','Sedative, hypnotic or anxiolytic abuse, uncomplicated','Y','0000-00-00 00:00:00'),(110610,10,'F12.99 ','Cannabis use, unspecified with unspecified cannabis-induced disorder','Y','0000-00-00 00:00:00'),(110609,10,'F12.988 ','Cannabis use, unspecified with other cannabis-induced disorder','Y','0000-00-00 00:00:00'),(110608,10,'F12.980 ','Cannabis use, unspecified with anxiety disorder','Y','0000-00-00 00:00:00'),(110607,10,'F12.959 ','Cannabis use, unspecified with psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110606,10,'F12.951 ','Cannabis use, unspecified with psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110605,10,'F12.950 ','Cannabis use, unspecified with psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110604,10,'F12.93 ','Cannabis use, unspecified with withdrawal','Y','0000-00-00 00:00:00'),(110603,10,'F12.929 ','Cannabis use, unspecified with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110602,10,'F12.922 ','Cannabis use, unspecified with intoxication with perceptual disturbance','Y','0000-00-00 00:00:00'),(110601,10,'F12.921 ','Cannabis use, unspecified with intoxication delirium','Y','0000-00-00 00:00:00'),(110600,10,'F12.920 ','Cannabis use, unspecified with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110599,10,'F12.91 ','Cannabis use, unspecified, in remission','Y','0000-00-00 00:00:00'),(110598,10,'F12.90 ','Cannabis use, unspecified, uncomplicated','Y','0000-00-00 00:00:00'),(110597,10,'F12.29 ','Cannabis dependence with unspecified cannabis-induced disorder','Y','0000-00-00 00:00:00'),(110596,10,'F12.288 ','Cannabis dependence with other cannabis-induced disorder','Y','0000-00-00 00:00:00'),(110595,10,'F12.280 ','Cannabis dependence with cannabis-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110594,10,'F12.259 ','Cannabis dependence with psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110593,10,'F12.251 ','Cannabis dependence with psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110592,10,'F12.250 ','Cannabis dependence with psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110591,10,'F12.23 ','Cannabis dependence with withdrawal','Y','0000-00-00 00:00:00'),(110590,10,'F12.229 ','Cannabis dependence with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110589,10,'F12.222 ','Cannabis dependence with intoxication with perceptual disturbance','Y','0000-00-00 00:00:00'),(110588,10,'F12.221 ','Cannabis dependence with intoxication delirium','Y','0000-00-00 00:00:00'),(110587,10,'F12.220 ','Cannabis dependence with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110585,10,'F12.20 ','Cannabis dependence, uncomplicated','Y','0000-00-00 00:00:00'),(110586,10,'F12.21 ','Cannabis dependence, in remission','Y','0000-00-00 00:00:00'),(110584,10,'F12.19 ','Cannabis abuse with unspecified cannabis-induced disorder','Y','0000-00-00 00:00:00'),(110583,10,'F12.188 ','Cannabis abuse with other cannabis-induced disorder','Y','0000-00-00 00:00:00'),(110582,10,'F12.180 ','Cannabis abuse with cannabis-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110581,10,'F12.159 ','Cannabis abuse with psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110580,10,'F12.151 ','Cannabis abuse with psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110578,10,'F12.13 ','Cannabis abuse with withdrawal','Y','0000-00-00 00:00:00'),(110579,10,'F12.150 ','Cannabis abuse with psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110577,10,'F12.129 ','Cannabis abuse with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110576,10,'F12.122 ','Cannabis abuse with intoxication with perceptual disturbance','Y','0000-00-00 00:00:00'),(110575,10,'F12.121 ','Cannabis abuse with intoxication delirium','Y','0000-00-00 00:00:00'),(110574,10,'F12.120 ','Cannabis abuse with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110572,10,'F12.10 ','Cannabis abuse, uncomplicated','Y','0000-00-00 00:00:00'),(110573,10,'F12.11 ','Cannabis abuse, in remission','Y','0000-00-00 00:00:00'),(110571,10,'F11.99 ','Opioid use, unspecified with unspecified opioid-induced disorder','Y','0000-00-00 00:00:00'),(110570,10,'F11.988 ','Opioid use, unspecified with other opioid-induced disorder','Y','0000-00-00 00:00:00'),(110569,10,'F11.982 ','Opioid use, unspecified with opioid-induced sleep disorder','Y','0000-00-00 00:00:00'),(110568,10,'F11.981 ','Opioid use, unspecified with opioid-induced sexual dysfunction','Y','0000-00-00 00:00:00'),(110567,10,'F11.959 ','Opioid use, unspecified with opioid-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110566,10,'F11.951 ','Opioid use, unspecified with opioid-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110565,10,'F11.950 ','Opioid use, unspecified with opioid-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110564,10,'F11.94 ','Opioid use, unspecified with opioid-induced mood disorder','Y','0000-00-00 00:00:00'),(110563,10,'F11.93 ','Opioid use, unspecified with withdrawal','Y','0000-00-00 00:00:00'),(110562,10,'F11.929 ','Opioid use, unspecified with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110561,10,'F11.922 ','Opioid use, unspecified with intoxication with perceptual disturbance','Y','0000-00-00 00:00:00'),(110560,10,'F11.921 ','Opioid use, unspecified with intoxication delirium','Y','0000-00-00 00:00:00'),(110559,10,'F11.920 ','Opioid use, unspecified with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110558,10,'F11.91 ','Opioid use, unspecified, in remission','Y','0000-00-00 00:00:00'),(110557,10,'F11.90 ','Opioid use, unspecified, uncomplicated','Y','0000-00-00 00:00:00'),(110556,10,'F11.29 ','Opioid dependence with unspecified opioid-induced disorder','Y','0000-00-00 00:00:00'),(110555,10,'F11.288 ','Opioid dependence with other opioid-induced disorder','Y','0000-00-00 00:00:00'),(110554,10,'F11.282 ','Opioid dependence with opioid-induced sleep disorder','Y','0000-00-00 00:00:00'),(110553,10,'F11.281 ','Opioid dependence with opioid-induced sexual dysfunction','Y','0000-00-00 00:00:00'),(110552,10,'F11.259 ','Opioid dependence with opioid-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110551,10,'F11.251 ','Opioid dependence with opioid-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110550,10,'F11.250 ','Opioid dependence with opioid-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110549,10,'F11.24 ','Opioid dependence with opioid-induced mood disorder','Y','0000-00-00 00:00:00'),(110548,10,'F11.23 ','Opioid dependence with withdrawal','Y','0000-00-00 00:00:00'),(110547,10,'F11.229 ','Opioid dependence with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110546,10,'F11.222 ','Opioid dependence with intoxication with perceptual disturbance','Y','0000-00-00 00:00:00'),(110545,10,'F11.221 ','Opioid dependence with intoxication delirium','Y','0000-00-00 00:00:00'),(110544,10,'F11.220 ','Opioid dependence with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110543,10,'F11.21 ','Opioid dependence, in remission','Y','0000-00-00 00:00:00'),(110542,10,'F11.20 ','Opioid dependence, uncomplicated','Y','0000-00-00 00:00:00'),(110541,10,'F11.19 ','Opioid abuse with unspecified opioid-induced disorder','Y','0000-00-00 00:00:00'),(110540,10,'F11.188 ','Opioid abuse with other opioid-induced disorder','Y','0000-00-00 00:00:00'),(110539,10,'F11.182 ','Opioid abuse with opioid-induced sleep disorder','Y','0000-00-00 00:00:00'),(110538,10,'F11.181 ','Opioid abuse with opioid-induced sexual dysfunction','Y','0000-00-00 00:00:00'),(110537,10,'F11.159 ','Opioid abuse with opioid-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110536,10,'F11.151 ','Opioid abuse with opioid-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110535,10,'F11.150 ','Opioid abuse with opioid-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110534,10,'F11.14 ','Opioid abuse with opioid-induced mood disorder','Y','0000-00-00 00:00:00'),(110533,10,'F11.13 ','Opioid abuse with withdrawal','Y','0000-00-00 00:00:00'),(110532,10,'F11.129 ','Opioid abuse with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110531,10,'F11.122 ','Opioid abuse with intoxication with perceptual disturbance','Y','0000-00-00 00:00:00'),(110530,10,'F11.121 ','Opioid abuse with intoxication delirium','Y','0000-00-00 00:00:00'),(110529,10,'F11.120 ','Opioid abuse with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110528,10,'F11.11 ','Opioid abuse, in remission','Y','0000-00-00 00:00:00'),(110527,10,'F11.10 ','Opioid abuse, uncomplicated','Y','0000-00-00 00:00:00'),(110526,10,'F10.99 ','Alcohol use, unspecified with unspecified alcohol-induced disorder','Y','0000-00-00 00:00:00'),(110525,10,'F10.988 ','Alcohol use, unspecified with other alcohol-induced disorder','Y','0000-00-00 00:00:00'),(110524,10,'F10.982 ','Alcohol use, unspecified with alcohol-induced sleep disorder','Y','0000-00-00 00:00:00'),(110523,10,'F10.981 ','Alcohol use, unspecified with alcohol-induced sexual dysfunction','Y','0000-00-00 00:00:00'),(110522,10,'F10.980 ','Alcohol use, unspecified with alcohol-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110521,10,'F10.97 ','Alcohol use, unspecified with alcohol-induced persisting dementia','Y','0000-00-00 00:00:00'),(110520,10,'F10.96 ','Alcohol use, unspecified with alcohol-induced persisting amnestic disorder','Y','0000-00-00 00:00:00'),(110519,10,'F10.959 ','Alcohol use, unspecified with alcohol-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110518,10,'F10.951 ','Alcohol use, unspecified with alcohol-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110517,10,'F10.950 ','Alcohol use, unspecified with alcohol-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110516,10,'F10.94 ','Alcohol use, unspecified with alcohol-induced mood disorder','Y','0000-00-00 00:00:00'),(110515,10,'F10.939 ','Alcohol use, unspecified with withdrawal, unspecified','Y','0000-00-00 00:00:00'),(110514,10,'F10.932 ','Alcohol use, unspecified with withdrawal with perceptual disturbance','Y','0000-00-00 00:00:00'),(110513,10,'F10.931 ','Alcohol use, unspecified with withdrawal delirium','Y','0000-00-00 00:00:00'),(110512,10,'F10.930 ','Alcohol use, unspecified with withdrawal, uncomplicated','Y','0000-00-00 00:00:00'),(110511,10,'F10.929 ','Alcohol use, unspecified with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110510,10,'F10.921 ','Alcohol use, unspecified with intoxication delirium','Y','0000-00-00 00:00:00'),(110509,10,'F10.920 ','Alcohol use, unspecified with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110508,10,'F10.91 ','Alcohol use, unspecified, in remission','Y','0000-00-00 00:00:00'),(110507,10,'F10.90 ','Alcohol use, unspecified, uncomplicated','Y','0000-00-00 00:00:00'),(110506,10,'F10.29 ','Alcohol dependence with unspecified alcohol-induced disorder','Y','0000-00-00 00:00:00'),(110505,10,'F10.288 ','Alcohol dependence with other alcohol-induced disorder','Y','0000-00-00 00:00:00'),(110504,10,'F10.282 ','Alcohol dependence with alcohol-induced sleep disorder','Y','0000-00-00 00:00:00'),(110503,10,'F10.281 ','Alcohol dependence with alcohol-induced sexual dysfunction','Y','0000-00-00 00:00:00'),(110502,10,'F10.280 ','Alcohol dependence with alcohol-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110501,10,'F10.27 ','Alcohol dependence with alcohol-induced persisting dementia','Y','0000-00-00 00:00:00'),(110500,10,'F10.26 ','Alcohol dependence with alcohol-induced persisting amnestic disorder','Y','0000-00-00 00:00:00'),(110499,10,'F10.259 ','Alcohol dependence with alcohol-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110498,10,'F10.251 ','Alcohol dependence with alcohol-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110497,10,'F10.250 ','Alcohol dependence with alcohol-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110496,10,'F10.24 ','Alcohol dependence with alcohol-induced mood disorder','Y','0000-00-00 00:00:00'),(110495,10,'F10.239 ','Alcohol dependence with withdrawal, unspecified','Y','0000-00-00 00:00:00'),(110494,10,'F10.232 ','Alcohol dependence with withdrawal with perceptual disturbance','Y','0000-00-00 00:00:00'),(110493,10,'F10.231 ','Alcohol dependence with withdrawal delirium','Y','0000-00-00 00:00:00'),(110492,10,'F10.230 ','Alcohol dependence with withdrawal, uncomplicated','Y','0000-00-00 00:00:00'),(110491,10,'F10.229 ','Alcohol dependence with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110490,10,'F10.221 ','Alcohol dependence with intoxication delirium','Y','0000-00-00 00:00:00'),(110489,10,'F10.220 ','Alcohol dependence with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110488,10,'F10.21 ','Alcohol dependence, in remission','Y','0000-00-00 00:00:00'),(110487,10,'F10.20 ','Alcohol dependence, uncomplicated','Y','0000-00-00 00:00:00'),(110486,10,'F10.19 ','Alcohol abuse with unspecified alcohol-induced disorder','Y','0000-00-00 00:00:00'),(110485,10,'F10.188 ','Alcohol abuse with other alcohol-induced disorder','Y','0000-00-00 00:00:00'),(110484,10,'F10.182 ','Alcohol abuse with alcohol-induced sleep disorder','Y','0000-00-00 00:00:00'),(110483,10,'F10.181 ','Alcohol abuse with alcohol-induced sexual dysfunction','Y','0000-00-00 00:00:00'),(110482,10,'F10.180 ','Alcohol abuse with alcohol-induced anxiety disorder','Y','0000-00-00 00:00:00'),(110481,10,'F10.159 ','Alcohol abuse with alcohol-induced psychotic disorder, unspecified','Y','0000-00-00 00:00:00'),(110480,10,'F10.151 ','Alcohol abuse with alcohol-induced psychotic disorder with hallucinations','Y','0000-00-00 00:00:00'),(110479,10,'F10.150 ','Alcohol abuse with alcohol-induced psychotic disorder with delusions','Y','0000-00-00 00:00:00'),(110478,10,'F10.14 ','Alcohol abuse with alcohol-induced mood disorder','Y','0000-00-00 00:00:00'),(110477,10,'F10.139 ','Alcohol abuse with withdrawal, unspecified','Y','0000-00-00 00:00:00'),(110476,10,'F10.132 ','Alcohol abuse with withdrawal with perceptual disturbance','Y','0000-00-00 00:00:00'),(110475,10,'F10.131 ','Alcohol abuse with withdrawal delirium','Y','0000-00-00 00:00:00'),(110473,10,'F10.129 ','Alcohol abuse with intoxication, unspecified','Y','0000-00-00 00:00:00'),(110474,10,'F10.130 ','Alcohol abuse with withdrawal, uncomplicated','Y','0000-00-00 00:00:00'),(110472,10,'F10.121 ','Alcohol abuse with intoxication delirium','Y','0000-00-00 00:00:00'),(110471,10,'F10.120 ','Alcohol abuse with intoxication, uncomplicated','Y','0000-00-00 00:00:00'),(110469,10,'F10.10 ','Alcohol abuse, uncomplicated','Y','0000-00-00 00:00:00'),(110470,10,'F10.11 ','Alcohol abuse, in remission','Y','0000-00-00 00:00:00'),(110468,10,'F09','Unspecified mental disorder due to known physiological condition','Y','0000-00-00 00:00:00'),(110467,10,'F07.9 ','Unspecified personality and behavioral disorder due to known physiological condition','Y','0000-00-00 00:00:00'),(110466,10,'F07.89 ','Other personality and behavioral disorders due to known physiological condition','Y','0000-00-00 00:00:00'),(110465,10,'F07.81 ','Postconcussional syndrome','Y','0000-00-00 00:00:00'),(110464,10,'F07.0 ','Personality change due to known physiological condition','Y','0000-00-00 00:00:00'),(110463,10,'F06.8 ','Other specified mental disorders due to known physiological condition','Y','0000-00-00 00:00:00'),(110462,10,'F06.71 ','Mild neurocognitive disorder due to known physiological condition with behavioral disturbance','Y','0000-00-00 00:00:00'),(110461,10,'F06.70 ','Mild neurocognitive disorder due to known physiological condition without behavioral disturbance','Y','0000-00-00 00:00:00'),(110460,10,'F06.4 ','Anxiety disorder due to known physiological condition','Y','0000-00-00 00:00:00'),(110459,10,'F06.34 ','Mood disorder due to known physiological condition with mixed features','Y','0000-00-00 00:00:00'),(110458,10,'F06.33 ','Mood disorder due to known physiological condition with manic features','Y','0000-00-00 00:00:00'),(110457,10,'F06.32 ','Mood disorder due to known physiological condition with major depressive-like episode','Y','0000-00-00 00:00:00'),(110456,10,'F06.31 ','Mood disorder due to known physiological condition with depressive features','Y','0000-00-00 00:00:00'),(110455,10,'F06.30 ','Mood disorder due to known physiological condition, unspecified','Y','0000-00-00 00:00:00'),(110454,10,'F06.2 ','Psychotic disorder with delusions due to known physiological condition','Y','0000-00-00 00:00:00'),(110453,10,'F06.1 ','Catatonic disorder due to known physiological condition','Y','0000-00-00 00:00:00'),(110452,10,'F06.0 ','Psychotic disorder with hallucinations due to known physiological condition','Y','0000-00-00 00:00:00'),(110451,10,'F05','Delirium due to known physiological condition','Y','0000-00-00 00:00:00'),(110450,10,'F04','Amnestic disorder due to known physiological condition','Y','0000-00-00 00:00:00'),(110449,10,'F03.C4 ','Unspecified dementia, severe, with anxiety','Y','0000-00-00 00:00:00'),(110448,10,'F03.C3 ','Unspecified dementia, severe, with mood disturbance','Y','0000-00-00 00:00:00'),(110447,10,'F03.C2 ','Unspecified dementia, severe, with psychotic disturbance','Y','0000-00-00 00:00:00'),(110446,10,'F03.C18 ','Unspecified dementia, severe, with other behavioral disturbance','Y','0000-00-00 00:00:00'),(110445,10,'F03.C11 ','Unspecified dementia, severe, with agitation','Y','0000-00-00 00:00:00'),(110444,10,'F03.C0 ','Unspecified dementia, severe, without behavioral disturbance, psychotic disturbance, mood disturbance, and anxiety','Y','0000-00-00 00:00:00'),(110443,10,'F03.B4 ','Unspecified dementia, moderate, with anxiety','Y','0000-00-00 00:00:00'),(110442,10,'F03.B3 ','Unspecified dementia, moderate, with mood disturbance','Y','0000-00-00 00:00:00'),(110441,10,'F03.B2 ','Unspecified dementia, moderate, with psychotic disturbance','Y','0000-00-00 00:00:00'),(110440,10,'F03.B18 ','Unspecified dementia, moderate, with other behavioral disturbance','Y','0000-00-00 00:00:00'),(110439,10,'F03.B11 ','Unspecified dementia, moderate, with agitation','Y','0000-00-00 00:00:00'),(110438,10,'F03.B0 ','Unspecified dementia, moderate, without behavioral disturbance, psychotic disturbance, mood disturbance, and anxiety','Y','0000-00-00 00:00:00'),(110437,10,'F03.A4 ','Unspecified dementia, mild, with anxiety','Y','0000-00-00 00:00:00'),(110436,10,'F03.A3 ','Unspecified dementia, mild, with mood disturbance','Y','0000-00-00 00:00:00'),(110435,10,'F03.A2 ','Unspecified dementia, mild, with psychotic disturbance','Y','0000-00-00 00:00:00'),(110434,10,'F03.A18 ','Unspecified dementia, mild, with other behavioral disturbance','Y','0000-00-00 00:00:00'),(110433,10,'F03.A11 ','Unspecified dementia, mild, with agitation','Y','0000-00-00 00:00:00'),(110432,10,'F03.A0 ','Unspecified dementia, mild, without behavioral disturbance, psychotic disturbance, mood disturbance, and anxiety','Y','0000-00-00 00:00:00'),(110431,10,'F03.94 ','Unspecified dementia, unspecified severity, with anxiety','Y','0000-00-00 00:00:00'),(110430,10,'F03.93 ','Unspecified dementia, unspecified severity, with mood disturbance','Y','0000-00-00 00:00:00'),(110429,10,'F03.92 ','Unspecified dementia, unspecified severity, with psychotic disturbance','Y','0000-00-00 00:00:00'),(110428,10,'F03.918 ','Unspecified dementia, unspecified severity, with other behavioral disturbance','Y','0000-00-00 00:00:00'),(110427,10,'F03.911 ','Unspecified dementia, unspecified severity, with agitation','Y','0000-00-00 00:00:00'),(110426,10,'F03.90 ','Unspecified dementia, unspecified severity, without behavioral disturbance, psychotic disturbance, mood disturbance, and anxiety','Y','0000-00-00 00:00:00'),(110425,10,'F02.C4 ','Dementia in other diseases classified elsewhere, severe, with anxiety','Y','0000-00-00 00:00:00'),(110424,10,'F02.C3 ','Dementia in other diseases classified elsewhere, severe, with mood disturbance','Y','0000-00-00 00:00:00'),(110423,10,'F02.C2 ','Dementia in other diseases classified elsewhere, severe, with psychotic disturbance','Y','0000-00-00 00:00:00'),(110422,10,'F02.C18 ','Dementia in other diseases classified elsewhere, severe, with other behavioral disturbance','Y','0000-00-00 00:00:00'),(110421,10,'F02.C11 ','Dementia in other diseases classified elsewhere, severe, with agitation','Y','0000-00-00 00:00:00'),(110420,10,'F02.C0 ','Dementia in other diseases classified elsewhere, severe, without behavioral disturbance, psychotic disturbance, mood disturbance, and anxiety','Y','0000-00-00 00:00:00'),(110419,10,'F02.B4 ','Dementia in other diseases classified elsewhere, moderate, with anxiety','Y','0000-00-00 00:00:00'),(110418,10,'F02.B3 ','Dementia in other diseases classified elsewhere, moderate, with mood disturbance','Y','0000-00-00 00:00:00'),(110417,10,'F02.B2 ','Dementia in other diseases classified elsewhere, moderate, with psychotic disturbance','Y','0000-00-00 00:00:00'),(110416,10,'F02.B18 ','Dementia in other diseases classified elsewhere, moderate, with other behavioral disturbance','Y','0000-00-00 00:00:00'),(110415,10,'F02.B11 ','Dementia in other diseases classified elsewhere, moderate, with agitation','Y','0000-00-00 00:00:00'),(110414,10,'F02.B0 ','Dementia in other diseases classified elsewhere, moderate, without behavioral disturbance, psychotic disturbance, mood disturbance, and anxiety','Y','0000-00-00 00:00:00'),(110413,10,'F02.A4 ','Dementia in other diseases classified elsewhere, mild, with anxiety','Y','0000-00-00 00:00:00'),(110411,10,'F02.A2 ','Dementia in other diseases classified elsewhere, mild, with psychotic disturbance','Y','0000-00-00 00:00:00'),(110412,10,'F02.A3 ','Dementia in other diseases classified elsewhere, mild, with mood disturbance','Y','0000-00-00 00:00:00'),(110410,10,'F02.A18 ','Dementia in other diseases classified elsewhere, mild, with other behavioral disturbance','Y','0000-00-00 00:00:00'),(110409,10,'F02.A11 ','Dementia in other diseases classified elsewhere, mild, with agitation','Y','0000-00-00 00:00:00'),(110408,10,'F02.A0 ','Dementia in other diseases classified elsewhere, mild, without behavioral disturbance, psychotic disturbance, mood disturbance, and anxiety','Y','0000-00-00 00:00:00'),(110407,10,'F02.84 ','Dementia in other diseases classified elsewhere, unspecified severity, with anxiety','Y','0000-00-00 00:00:00'),(110406,10,'F02.83 ','Dementia in other diseases classified elsewhere, unspecified severity, with mood disturbance','Y','0000-00-00 00:00:00'),(110405,10,'F02.82 ','Dementia in other diseases classified elsewhere, unspecified severity, with psychotic disturbance','Y','0000-00-00 00:00:00'),(110404,10,'F02.818 ','Dementia in other diseases classified elsewhere, unspecified severity, with other behavioral disturbance','Y','0000-00-00 00:00:00'),(110403,10,'F02.811 ','Dementia in other diseases classified elsewhere, unspecified severity, with agitation','Y','0000-00-00 00:00:00'),(110401,10,'F01.C4 ','Vascular dementia, severe, with anxiety','Y','0000-00-00 00:00:00'),(110402,10,'F02.80 ','Dementia in other diseases classified elsewhere, unspecified severity, without behavioral disturbance, psychotic disturbance, mood disturbance, and anxiety','Y','0000-00-00 00:00:00'),(110400,10,'F01.C3 ','Vascular dementia, severe, with mood disturbance','Y','0000-00-00 00:00:00'),(110398,10,'F01.C18 ','Vascular dementia, severe, with other behavioral disturbance','Y','0000-00-00 00:00:00'),(110399,10,'F01.C2 ','Vascular dementia, severe, with psychotic disturbance','Y','0000-00-00 00:00:00'),(110397,10,'F01.C11 ','Vascular dementia, severe, with agitation','Y','0000-00-00 00:00:00'),(110396,10,'F01.C0 ','Vascular dementia, severe, without behavioral disturbance, psychotic disturbance, mood disturbance, and anxiety','Y','0000-00-00 00:00:00'),(110395,10,'F01.B4 ','Vascular dementia, moderate, with anxiety','Y','0000-00-00 00:00:00'),(110394,10,'F01.B3 ','Vascular dementia, moderate, with mood disturbance','Y','0000-00-00 00:00:00'),(110393,10,'F01.B2 ','Vascular dementia, moderate, with psychotic disturbance','Y','0000-00-00 00:00:00'),(110392,10,'F01.B18 ','Vascular dementia, moderate, with other behavioral disturbance','Y','0000-00-00 00:00:00'),(110391,10,'F01.B11 ','Vascular dementia, moderate, with agitation','Y','0000-00-00 00:00:00'),(110390,10,'F01.B0 ','Vascular dementia, moderate, without behavioral disturbance, psychotic disturbance, mood disturbance, and anxiety','Y','0000-00-00 00:00:00'),(110389,10,'F01.A4 ','Vascular dementia, mild, with anxiety','Y','0000-00-00 00:00:00'),(110388,10,'F01.A3 ','Vascular dementia, mild, with mood disturbance','Y','0000-00-00 00:00:00'),(110387,10,'F01.A2 ','Vascular dementia, mild, with psychotic disturbance','Y','0000-00-00 00:00:00'),(110386,10,'F01.A18 ','Vascular dementia, mild, with other behavioral disturbance','Y','0000-00-00 00:00:00'),(110385,10,'F01.A11 ','Vascular dementia, mild, with agitation','Y','0000-00-00 00:00:00'),(110384,10,'F01.A0 ','Vascular dementia, mild, without behavioral disturbance, psychotic disturbance, mood disturbance, and anxiety','Y','0000-00-00 00:00:00'),(110383,10,'F01.54 ','Vascular dementia, unspecified severity, with anxiety','Y','0000-00-00 00:00:00'),(110382,10,'F01.53 ','Vascular dementia, unspecified severity, with mood disturbance','Y','0000-00-00 00:00:00'),(110381,10,'F01.52 ','Vascular dementia, unspecified severity, with psychotic disturbance','Y','0000-00-00 00:00:00'),(110380,10,'F01.518 ','Vascular dementia, unspecified severity, with other behavioral disturbance','Y','0000-00-00 00:00:00'),(110379,10,'F01.511 ','Vascular dementia, unspecified severity, with agitation','Y','0000-00-00 00:00:00'),(110378,10,'F01.50 ','Vascular dementia, unspecified severity, without behavioral disturbance, psychotic disturbance, mood disturbance, and anxiety','Y','0000-00-00 00:00:00'),(110377,10,'E89.89 ','Other postprocedural endocrine and metabolic complications and disorders','Y','0000-00-00 00:00:00'),(110376,10,'E89.823 ','Postprocedural seroma of an endocrine system organ or structure following other procedure','Y','0000-00-00 00:00:00'),(110375,10,'E89.822 ','Postprocedural seroma of an endocrine system organ or structure following an endocrine system procedure','Y','0000-00-00 00:00:00'),(110374,10,'E89.821 ','Postprocedural hematoma of an endocrine system organ or structure following other procedure','Y','0000-00-00 00:00:00'),(110373,10,'E89.820 ','Postprocedural hematoma of an endocrine system organ or structure following an endocrine system procedure','Y','0000-00-00 00:00:00'),(110372,10,'E89.811 ','Postprocedural hemorrhage of an endocrine system organ or structure following other procedure','Y','0000-00-00 00:00:00'),(110371,10,'E89.810 ','Postprocedural hemorrhage of an endocrine system organ or structure following an endocrine system procedure','Y','0000-00-00 00:00:00'),(110370,10,'E89.6 ','Postprocedural adrenocortical (-medullary) hypofunction','Y','0000-00-00 00:00:00'),(110369,10,'E89.5 ','Postprocedural testicular hypofunction','Y','0000-00-00 00:00:00'),(110368,10,'E89.41 ','Symptomatic postprocedural ovarian failure','Y','0000-00-00 00:00:00'),(110367,10,'E89.40 ','Asymptomatic postprocedural ovarian failure','Y','0000-00-00 00:00:00'),(110366,10,'E89.3 ','Postprocedural hypopituitarism','Y','0000-00-00 00:00:00'),(110365,10,'E89.2 ','Postprocedural hypoparathyroidism','Y','0000-00-00 00:00:00'),(110364,10,'E89.1 ','Postprocedural hypoinsulinemia','Y','0000-00-00 00:00:00'),(110363,10,'E89.0 ','Postprocedural hypothyroidism','Y','0000-00-00 00:00:00'),(110362,10,'E88.A ','Wasting disease (syndrome) due to underlying condition','Y','0000-00-00 00:00:00'),(110361,10,'E88.9 ','Metabolic disorder, unspecified','Y','0000-00-00 00:00:00'),(110360,10,'E88.89 ','Other specified metabolic disorders','Y','0000-00-00 00:00:00'),(110359,10,'E88.819 ','Insulin resistance, unspecified','Y','0000-00-00 00:00:00'),(110358,10,'E88.818 ','Other insulin resistance','Y','0000-00-00 00:00:00'),(110357,10,'E88.811 ','Insulin resistance syndrome, Type A','Y','0000-00-00 00:00:00'),(110356,10,'E88.810 ','Metabolic syndrome','Y','0000-00-00 00:00:00'),(110355,10,'E88.49 ','Other mitochondrial metabolism disorders','Y','0000-00-00 00:00:00'),(110354,10,'E88.43 ','Disorders of mitochondrial tRNA synthetases','Y','0000-00-00 00:00:00'),(110353,10,'E88.42 ','MERRF syndrome','Y','0000-00-00 00:00:00'),(110352,10,'E88.41 ','MELAS syndrome','Y','0000-00-00 00:00:00'),(110351,10,'E88.40 ','Mitochondrial metabolism disorder, unspecified','Y','0000-00-00 00:00:00'),(110350,10,'E88.3 ','Tumor lysis syndrome','Y','0000-00-00 00:00:00'),(110349,10,'E88.2 ','Lipomatosis, not elsewhere classified','Y','0000-00-00 00:00:00'),(110348,10,'E88.1 ','Lipodystrophy, not elsewhere classified','Y','0000-00-00 00:00:00'),(110347,10,'E88.09 ','Other disorders of plasma-protein metabolism, not elsewhere classified','Y','0000-00-00 00:00:00'),(110345,10,'E88.01 ','Alpha-1-antitrypsin deficiency','Y','0000-00-00 00:00:00'),(110346,10,'E88.02 ','Plasminogen deficiency','Y','0000-00-00 00:00:00'),(110344,10,'E87.8 ','Other disorders of electrolyte and fluid balance, not elsewhere classified','Y','0000-00-00 00:00:00'),(110343,10,'E87.79 ','Other fluid overload','Y','0000-00-00 00:00:00'),(110342,10,'E87.71 ','Transfusion associated circulatory overload','Y','0000-00-00 00:00:00'),(110340,10,'E87.6 ','Hypokalemia','Y','0000-00-00 00:00:00'),(110341,10,'E87.70 ','Fluid overload, unspecified','Y','0000-00-00 00:00:00'),(110339,10,'E87.5 ','Hyperkalemia','Y','0000-00-00 00:00:00'),(110338,10,'E87.4 ','Mixed disorder of acid-base balance','Y','0000-00-00 00:00:00'),(110337,10,'E87.3 ','Alkalosis','Y','0000-00-00 00:00:00'),(110336,10,'E87.29 ','Other acidosis','Y','0000-00-00 00:00:00'),(110335,10,'E87.22 ','Chronic metabolic acidosis','Y','0000-00-00 00:00:00'),(110334,10,'E87.21 ','Acute metabolic acidosis','Y','0000-00-00 00:00:00'),(110333,10,'E87.20 ','Acidosis, unspecified','Y','0000-00-00 00:00:00'),(110332,10,'E87.1 ','Hypo-osmolality and hyponatremia','Y','0000-00-00 00:00:00'),(110330,10,'E86.9 ','Volume depletion, unspecified','Y','0000-00-00 00:00:00'),(110331,10,'E87.0 ','Hyperosmolality and hypernatremia','Y','0000-00-00 00:00:00'),(110328,10,'E86.0 ','Dehydration','Y','0000-00-00 00:00:00'),(110329,10,'E86.1 ','Hypovolemia','Y','0000-00-00 00:00:00'),(110326,10,'E85.89 ','Other amyloidosis','Y','0000-00-00 00:00:00'),(110327,10,'E85.9 ','Amyloidosis, unspecified','Y','0000-00-00 00:00:00'),(110325,10,'E85.82 ','Wild-type transthyretin-related (ATTR) amyloidosis','Y','0000-00-00 00:00:00'),(110324,10,'E85.81 ','Light chain (AL) amyloidosis','Y','0000-00-00 00:00:00'),(110322,10,'E85.3 ','Secondary systemic amyloidosis','Y','0000-00-00 00:00:00'),(110323,10,'E85.4 ','Organ-limited amyloidosis','Y','0000-00-00 00:00:00'),(110321,10,'E85.2 ','Heredofamilial amyloidosis, unspecified','Y','0000-00-00 00:00:00'),(110320,10,'E85.1 ','Neuropathic heredofamilial amyloidosis','Y','0000-00-00 00:00:00'),(110318,10,'E84.9 ','Cystic fibrosis, unspecified','Y','0000-00-00 00:00:00'),(110319,10,'E85.0 ','Non-neuropathic heredofamilial amyloidosis','Y','0000-00-00 00:00:00'),(110317,10,'E84.8 ','Cystic fibrosis with other manifestations','Y','0000-00-00 00:00:00'),(110315,10,'E84.11 ','Meconium ileus in cystic fibrosis','Y','0000-00-00 00:00:00'),(110316,10,'E84.19 ','Cystic fibrosis with other intestinal manifestations','Y','0000-00-00 00:00:00'),(110314,10,'E84.0 ','Cystic fibrosis with pulmonary manifestations','Y','0000-00-00 00:00:00'),(110313,10,'E83.9 ','Disorder of mineral metabolism, unspecified','Y','0000-00-00 00:00:00'),(110311,10,'E83.81 ','Hungry bone syndrome','Y','0000-00-00 00:00:00'),(110312,10,'E83.89 ','Other disorders of mineral metabolism','Y','0000-00-00 00:00:00'),(110310,10,'E83.59 ','Other disorders of calcium metabolism','Y','0000-00-00 00:00:00'),(110308,10,'E83.51 ','Hypocalcemia','Y','0000-00-00 00:00:00'),(110309,10,'E83.52 ','Hypercalcemia','Y','0000-00-00 00:00:00'),(110307,10,'E83.50 ','Unspecified disorder of calcium metabolism','Y','0000-00-00 00:00:00'),(110305,10,'E83.42 ','Hypomagnesemia','Y','0000-00-00 00:00:00'),(110306,10,'E83.49 ','Other disorders of magnesium metabolism','Y','0000-00-00 00:00:00'),(110303,10,'E83.40 ','Disorders of magnesium metabolism, unspecified','Y','0000-00-00 00:00:00'),(110304,10,'E83.41 ','Hypermagnesemia','Y','0000-00-00 00:00:00'),(110302,10,'E83.39 ','Other disorders of phosphorus metabolism','Y','0000-00-00 00:00:00'),(110300,10,'E83.31 ','Familial hypophosphatemia','Y','0000-00-00 00:00:00'),(110301,10,'E83.32 ','Hereditary vitamin D-dependent rickets (type 1) (type 2)','Y','0000-00-00 00:00:00'),(110299,10,'E83.30 ','Disorder of phosphorus metabolism, unspecified','Y','0000-00-00 00:00:00'),(110297,10,'E83.19 ','Other disorders of iron metabolism','Y','0000-00-00 00:00:00'),(110298,10,'E83.2 ','Disorders of zinc metabolism','Y','0000-00-00 00:00:00'),(110296,10,'E83.119 ','Hemochromatosis, unspecified','Y','0000-00-00 00:00:00'),(110295,10,'E83.118 ','Other hemochromatosis','Y','0000-00-00 00:00:00'),(110293,10,'E83.110 ','Hereditary hemochromatosis','Y','0000-00-00 00:00:00'),(110294,10,'E83.111 ','Hemochromatosis due to repeated red blood cell transfusions','Y','0000-00-00 00:00:00'),(110292,10,'E83.10 ','Disorder of iron metabolism, unspecified','Y','0000-00-00 00:00:00'),(110290,10,'E83.01 ','Wilson\'s disease','Y','0000-00-00 00:00:00'),(110291,10,'E83.09 ','Other disorders of copper metabolism','Y','0000-00-00 00:00:00'),(110289,10,'E83.00 ','Disorder of copper metabolism, unspecified','Y','0000-00-00 00:00:00'),(110287,10,'E80.6 ','Other disorders of bilirubin metabolism','Y','0000-00-00 00:00:00'),(110288,10,'E80.7 ','Disorder of bilirubin metabolism, unspecified','Y','0000-00-00 00:00:00'),(110285,10,'E80.4 ','Gilbert syndrome','Y','0000-00-00 00:00:00'),(110286,10,'E80.5 ','Crigler-Najjar syndrome','Y','0000-00-00 00:00:00'),(110284,10,'E80.3 ','Defects of catalase and peroxidase','Y','0000-00-00 00:00:00'),(110282,10,'E80.21 ','Acute intermittent (hepatic) porphyria','Y','0000-00-00 00:00:00'),(110283,10,'E80.29 ','Other porphyria','Y','0000-00-00 00:00:00'),(110281,10,'E80.20 ','Unspecified porphyria','Y','0000-00-00 00:00:00'),(110279,10,'E80.0 ','Hereditary erythropoietic porphyria','Y','0000-00-00 00:00:00'),(110280,10,'E80.1 ','Porphyria cutanea tarda','Y','0000-00-00 00:00:00'),(110278,10,'E79.9 ','Disorder of purine and pyrimidine metabolism, unspecified','Y','0000-00-00 00:00:00'),(110276,10,'E79.82 ','Hereditary xanthinuria','Y','0000-00-00 00:00:00'),(110277,10,'E79.89 ','Other specified disorders of purine and pyrimidine metabolism','Y','0000-00-00 00:00:00'),(110275,10,'E79.81 ','Aicardi-Goutieres syndrome','Y','0000-00-00 00:00:00'),(110274,10,'E79.2 ','Myoadenylate deaminase deficiency','Y','0000-00-00 00:00:00'),(110273,10,'E79.1 ','Lesch-Nyhan syndrome','Y','0000-00-00 00:00:00'),(110272,10,'E79.0 ','Hyperuricemia without signs of inflammatory arthritis and tophaceous disease','Y','0000-00-00 00:00:00'),(110271,10,'E78.9 ','Disorder of lipoprotein metabolism, unspecified','Y','0000-00-00 00:00:00'),(110269,10,'E78.81 ','Lipoid dermatoarthritis','Y','0000-00-00 00:00:00'),(110270,10,'E78.89 ','Other lipoprotein metabolism disorders','Y','0000-00-00 00:00:00'),(110268,10,'E78.79 ','Other disorders of bile acid and cholesterol metabolism','Y','0000-00-00 00:00:00'),(110267,10,'E78.72 ','Smith-Lemli-Opitz syndrome','Y','0000-00-00 00:00:00'),(110266,10,'E78.71 ','Barth syndrome','Y','0000-00-00 00:00:00'),(110264,10,'E78.6 ','Lipoprotein deficiency','Y','0000-00-00 00:00:00'),(110265,10,'E78.70 ','Disorder of bile acid and cholesterol metabolism, unspecified','Y','0000-00-00 00:00:00'),(110262,10,'E78.49 ','Other hyperlipidemia','Y','0000-00-00 00:00:00'),(110263,10,'E78.5 ','Hyperlipidemia, unspecified','Y','0000-00-00 00:00:00'),(110260,10,'E78.3 ','Hyperchylomicronemia','Y','0000-00-00 00:00:00'),(110261,10,'E78.41 ','Elevated Lipoprotein(a)','Y','0000-00-00 00:00:00'),(110259,10,'E78.2 ','Mixed hyperlipidemia','Y','0000-00-00 00:00:00'),(110257,10,'E78.01 ','Familial hypercholesterolemia','Y','0000-00-00 00:00:00'),(110258,10,'E78.1 ','Pure hyperglyceridemia','Y','0000-00-00 00:00:00'),(110256,10,'E78.00 ','Pure hypercholesterolemia, unspecified','Y','0000-00-00 00:00:00'),(110255,10,'E77.9 ','Disorder of glycoprotein metabolism, unspecified','Y','0000-00-00 00:00:00'),(110253,10,'E77.1 ','Defects in glycoprotein degradation','Y','0000-00-00 00:00:00'),(110254,10,'E77.8 ','Other disorders of glycoprotein metabolism','Y','0000-00-00 00:00:00'),(110252,10,'E77.0 ','Defects in post-translational modification of lysosomal enzymes','Y','0000-00-00 00:00:00'),(110251,10,'E76.9 ','Glucosaminoglycan metabolism disorder, unspecified','Y','0000-00-00 00:00:00'),(110250,10,'E76.8 ','Other disorders of glucosaminoglycan metabolism','Y','0000-00-00 00:00:00'),(110249,10,'E76.3 ','Mucopolysaccharidosis, unspecified','Y','0000-00-00 00:00:00'),(110247,10,'E76.22 ','Sanfilippo mucopolysaccharidoses','Y','0000-00-00 00:00:00'),(110248,10,'E76.29 ','Other mucopolysaccharidoses','Y','0000-00-00 00:00:00'),(110246,10,'E76.219 ','Morquio mucopolysaccharidoses, unspecified','Y','0000-00-00 00:00:00'),(110245,10,'E76.211 ','Morquio B mucopolysaccharidoses','Y','0000-00-00 00:00:00'),(110244,10,'E76.210 ','Morquio A mucopolysaccharidoses','Y','0000-00-00 00:00:00'),(110242,10,'E76.03 ','Scheie\'s syndrome','Y','0000-00-00 00:00:00'),(110243,10,'E76.1 ','Mucopolysaccharidosis, type II','Y','0000-00-00 00:00:00'),(110241,10,'E76.02 ','Hurler-Scheie syndrome','Y','0000-00-00 00:00:00'),(110239,10,'E75.6 ','Lipid storage disorder, unspecified','Y','0000-00-00 00:00:00'),(110240,10,'E76.01 ','Hurler\'s syndrome','Y','0000-00-00 00:00:00'),(110238,10,'E75.5 ','Other lipid storage disorders','Y','0000-00-00 00:00:00'),(110237,10,'E75.4 ','Neuronal ceroid lipofuscinosis','Y','0000-00-00 00:00:00'),(110235,10,'E75.29 ','Other sphingolipidosis','Y','0000-00-00 00:00:00'),(110236,10,'E75.3 ','Sphingolipidosis, unspecified','Y','0000-00-00 00:00:00'),(110234,10,'E75.28 ','Canavan disease','Y','0000-00-00 00:00:00'),(110232,10,'E75.26 ','Sulfatase deficiency','Y','0000-00-00 00:00:00'),(110233,10,'E75.27 ','Pelizaeus-Merzbacher disease','Y','0000-00-00 00:00:00'),(110230,10,'E75.249 ','Niemann-Pick disease, unspecified','Y','0000-00-00 00:00:00'),(110231,10,'E75.25 ','Metachromatic leukodystrophy','Y','0000-00-00 00:00:00'),(110228,10,'E75.244 ','Niemann-Pick disease type A/B','Y','0000-00-00 00:00:00'),(110229,10,'E75.248 ','Other Niemann-Pick disease','Y','0000-00-00 00:00:00'),(110226,10,'E75.242 ','Niemann-Pick disease type C','Y','0000-00-00 00:00:00'),(110227,10,'E75.243 ','Niemann-Pick disease type D','Y','0000-00-00 00:00:00'),(110224,10,'E75.240 ','Niemann-Pick disease type A','Y','0000-00-00 00:00:00'),(110225,10,'E75.241 ','Niemann-Pick disease type B','Y','0000-00-00 00:00:00'),(110222,10,'E75.22 ','Gaucher disease','Y','0000-00-00 00:00:00'),(110223,10,'E75.23 ','Krabbe disease','Y','0000-00-00 00:00:00'),(110220,10,'E75.19 ','Other gangliosidosis','Y','0000-00-00 00:00:00'),(110221,10,'E75.21 ','Fabry (-Anderson) disease','Y','0000-00-00 00:00:00'),(110218,10,'E75.10 ','Unspecified gangliosidosis','Y','0000-00-00 00:00:00'),(110219,10,'E75.11 ','Mucolipidosis IV','Y','0000-00-00 00:00:00'),(110216,10,'E75.02 ','Tay-Sachs disease','Y','0000-00-00 00:00:00'),(110217,10,'E75.09 ','Other GM2 gangliosidosis','Y','0000-00-00 00:00:00'),(110215,10,'E75.01 ','Sandhoff disease','Y','0000-00-00 00:00:00'),(110213,10,'E74.9 ','Disorder of carbohydrate metabolism, unspecified','Y','0000-00-00 00:00:00'),(110214,10,'E75.00 ','GM2 gangliosidosis, unspecified','Y','0000-00-00 00:00:00'),(110212,10,'E74.89 ','Other specified disorders of carbohydrate metabolism','Y','0000-00-00 00:00:00'),(110211,10,'E74.819 ','Disorders of glucose transport, unspecified','Y','0000-00-00 00:00:00'),(110209,10,'E74.810 ','Glucose transporter protein type 1 deficiency','Y','0000-00-00 00:00:00'),(110210,10,'E74.818 ','Other disorders of glucose transport','Y','0000-00-00 00:00:00'),(110208,10,'E74.4 ','Disorders of pyruvate metabolism and gluconeogenesis','Y','0000-00-00 00:00:00'),(110207,10,'E74.39 ','Other disorders of intestinal carbohydrate absorption','Y','0000-00-00 00:00:00'),(110205,10,'E74.29 ','Other disorders of galactose metabolism','Y','0000-00-00 00:00:00'),(110206,10,'E74.31 ','Sucrase-isomaltase deficiency','Y','0000-00-00 00:00:00'),(110204,10,'E74.21 ','Galactosemia','Y','0000-00-00 00:00:00'),(110202,10,'E74.19 ','Other disorders of fructose metabolism','Y','0000-00-00 00:00:00'),(110203,10,'E74.20 ','Disorders of galactose metabolism, unspecified','Y','0000-00-00 00:00:00'),(110200,10,'E74.11 ','Essential fructosuria','Y','0000-00-00 00:00:00'),(110201,10,'E74.12 ','Hereditary fructose intolerance','Y','0000-00-00 00:00:00'),(110199,10,'E74.10 ','Disorder of fructose metabolism, unspecified','Y','0000-00-00 00:00:00'),(110197,10,'E74.05 ','Lysosome-associated membrane protein 2 [LAMP2] deficiency','Y','0000-00-00 00:00:00'),(110198,10,'E74.09 ','Other glycogen storage disease','Y','0000-00-00 00:00:00'),(110195,10,'E74.03 ','Cori disease','Y','0000-00-00 00:00:00'),(110196,10,'E74.04 ','McArdle disease','Y','0000-00-00 00:00:00'),(110193,10,'E74.01 ','von Gierke disease','Y','0000-00-00 00:00:00'),(110194,10,'E74.02 ','Pompe disease','Y','0000-00-00 00:00:00'),(110191,10,'E73.9 ','Lactose intolerance, unspecified','Y','0000-00-00 00:00:00'),(110192,10,'E74.00 ','Glycogen storage disease, unspecified','Y','0000-00-00 00:00:00'),(110189,10,'E73.1 ','Secondary lactase deficiency','Y','0000-00-00 00:00:00'),(110190,10,'E73.8 ','Other lactose intolerance','Y','0000-00-00 00:00:00'),(110188,10,'E73.0 ','Congenital lactase deficiency','Y','0000-00-00 00:00:00'),(110186,10,'E72.89 ','Other specified disorders of amino-acid metabolism','Y','0000-00-00 00:00:00'),(110187,10,'E72.9 ','Disorder of amino-acid metabolism, unspecified','Y','0000-00-00 00:00:00'),(110185,10,'E72.81 ','Disorders of gamma aminobutyric acid metabolism','Y','0000-00-00 00:00:00'),(110183,10,'E72.53 ','Primary hyperoxaluria','Y','0000-00-00 00:00:00'),(110184,10,'E72.59 ','Other disorders of glycine metabolism','Y','0000-00-00 00:00:00'),(110181,10,'E72.51 ','Non-ketotic hyperglycinemia','Y','0000-00-00 00:00:00'),(110182,10,'E72.52 ','Trimethylaminuria','Y','0000-00-00 00:00:00'),(110180,10,'E72.50 ','Disorder of glycine metabolism, unspecified','Y','0000-00-00 00:00:00'),(110179,10,'E72.4 ','Disorders of ornithine metabolism','Y','0000-00-00 00:00:00'),(110177,10,'E72.29 ','Other disorders of urea cycle metabolism','Y','0000-00-00 00:00:00'),(110178,10,'E72.3 ','Disorders of lysine and hydroxylysine metabolism','Y','0000-00-00 00:00:00'),(110175,10,'E72.22 ','Arginosuccinic aciduria','Y','0000-00-00 00:00:00'),(110176,10,'E72.23 ','Citrullinemia','Y','0000-00-00 00:00:00'),(110174,10,'E72.21 ','Argininemia','Y','0000-00-00 00:00:00'),(110173,10,'E72.20 ','Disorder of urea cycle metabolism, unspecified','Y','0000-00-00 00:00:00'),(110171,10,'E72.12 ','Methylenetetrahydrofolate reductase deficiency','Y','0000-00-00 00:00:00'),(110172,10,'E72.19 ','Other disorders of sulfur-bearing amino-acid metabolism','Y','0000-00-00 00:00:00'),(110170,10,'E72.11 ','Homocystinuria','Y','0000-00-00 00:00:00'),(110169,10,'E72.10 ','Disorders of sulfur-bearing amino-acid metabolism, unspecified','Y','0000-00-00 00:00:00'),(110167,10,'E72.04 ','Cystinosis','Y','0000-00-00 00:00:00'),(110168,10,'E72.09 ','Other disorders of amino-acid transport','Y','0000-00-00 00:00:00'),(110165,10,'E72.02 ','Hartnup\'s disease','Y','0000-00-00 00:00:00'),(110166,10,'E72.03 ','Lowe\'s syndrome','Y','0000-00-00 00:00:00'),(110163,10,'E72.00 ','Disorders of amino-acid transport, unspecified','Y','0000-00-00 00:00:00'),(110164,10,'E72.01 ','Cystinuria','Y','0000-00-00 00:00:00'),(110161,10,'E71.542 ','Other group 3 peroxisomal disorders','Y','0000-00-00 00:00:00'),(110162,10,'E71.548 ','Other peroxisomal disorders','Y','0000-00-00 00:00:00'),(110160,10,'E71.541 ','Zellweger-like syndrome','Y','0000-00-00 00:00:00'),(110158,10,'E71.53 ','Other group 2 peroxisomal disorders','Y','0000-00-00 00:00:00'),(110159,10,'E71.540 ','Rhizomelic chondrodysplasia punctata','Y','0000-00-00 00:00:00'),(110157,10,'E71.529 ','X-linked adrenoleukodystrophy, unspecified type','Y','0000-00-00 00:00:00'),(110155,10,'E71.522 ','Adrenomyeloneuropathy','Y','0000-00-00 00:00:00'),(110156,10,'E71.528 ','Other X-linked adrenoleukodystrophy','Y','0000-00-00 00:00:00'),(110154,10,'E71.521 ','Adolescent X-linked adrenoleukodystrophy','Y','0000-00-00 00:00:00'),(110152,10,'E71.518 ','Other disorders of peroxisome biogenesis','Y','0000-00-00 00:00:00'),(110153,10,'E71.520 ','Childhood cerebral X-linked adrenoleukodystrophy','Y','0000-00-00 00:00:00'),(110151,10,'E71.511 ','Neonatal adrenoleukodystrophy','Y','0000-00-00 00:00:00'),(110149,10,'E71.50 ','Peroxisomal disorder, unspecified','Y','0000-00-00 00:00:00'),(110150,10,'E71.510 ','Zellweger syndrome','Y','0000-00-00 00:00:00'),(110148,10,'E71.448 ','Other secondary carnitine deficiency','Y','0000-00-00 00:00:00'),(110147,10,'E71.440 ','Ruvalcaba-Myhre-Smith syndrome','Y','0000-00-00 00:00:00'),(110145,10,'E71.42 ','Carnitine deficiency due to inborn errors of metabolism','Y','0000-00-00 00:00:00'),(110146,10,'E71.43 ','Iatrogenic carnitine deficiency','Y','0000-00-00 00:00:00'),(110144,10,'E71.41 ','Primary carnitine deficiency','Y','0000-00-00 00:00:00'),(110142,10,'E71.39 ','Other disorders of fatty-acid metabolism','Y','0000-00-00 00:00:00'),(110143,10,'E71.40 ','Disorder of carnitine metabolism, unspecified','Y','0000-00-00 00:00:00'),(110141,10,'E71.32 ','Disorders of ketone metabolism','Y','0000-00-00 00:00:00'),(110140,10,'E71.318 ','Other disorders of fatty-acid oxidation','Y','0000-00-00 00:00:00'),(110138,10,'E71.313 ','Glutaric aciduria type II','Y','0000-00-00 00:00:00'),(110139,10,'E71.314 ','Muscle carnitine palmitoyltransferase deficiency','Y','0000-00-00 00:00:00'),(110137,10,'E71.312 ','Short chain acyl CoA dehydrogenase deficiency','Y','0000-00-00 00:00:00'),(110136,10,'E71.311 ','Medium chain acyl CoA dehydrogenase deficiency','Y','0000-00-00 00:00:00'),(110135,10,'E71.310 ','Long chain/very long chain acyl CoA dehydrogenase deficiency','Y','0000-00-00 00:00:00'),(110134,10,'E71.30 ','Disorder of fatty-acid metabolism, unspecified','Y','0000-00-00 00:00:00'),(110133,10,'E71.2 ','Disorder of branched-chain amino-acid metabolism, unspecified','Y','0000-00-00 00:00:00'),(110132,10,'E71.19 ','Other disorders of branched-chain amino-acid metabolism','Y','0000-00-00 00:00:00'),(110131,10,'E71.128 ','Other disorders of propionate metabolism','Y','0000-00-00 00:00:00'),(110130,10,'E71.121 ','Propionic acidemia','Y','0000-00-00 00:00:00'),(110129,10,'E71.120 ','Methylmalonic acidemia','Y','0000-00-00 00:00:00'),(110128,10,'E71.118 ','Other branched-chain organic acidurias','Y','0000-00-00 00:00:00'),(110127,10,'E71.111 ','3-methylglutaconic aciduria','Y','0000-00-00 00:00:00'),(110126,10,'E71.110 ','Isovaleric acidemia','Y','0000-00-00 00:00:00'),(110125,10,'E71.0 ','Maple-syrup-urine disease','Y','0000-00-00 00:00:00'),(110124,10,'E70.9 ','Disorder of aromatic amino-acid metabolism, unspecified','Y','0000-00-00 00:00:00'),(110123,10,'E70.89 ','Other disorders of aromatic amino-acid metabolism','Y','0000-00-00 00:00:00'),(110122,10,'E70.81 ','Aromatic L-amino acid decarboxylase deficiency','Y','0000-00-00 00:00:00'),(110121,10,'E70.5 ','Disorders of tryptophan metabolism','Y','0000-00-00 00:00:00'),(110120,10,'E70.49 ','Other disorders of histidine metabolism','Y','0000-00-00 00:00:00'),(110119,10,'E70.41 ','Histidinemia','Y','0000-00-00 00:00:00'),(110118,10,'E70.40 ','Disorders of histidine metabolism, unspecified','Y','0000-00-00 00:00:00'),(110117,10,'E70.39 ','Other specified albinism','Y','0000-00-00 00:00:00'),(110116,10,'E70.339 ','Albinism with hematologic abnormality, unspecified','Y','0000-00-00 00:00:00'),(110115,10,'E70.338 ','Other albinism with hematologic abnormality','Y','0000-00-00 00:00:00'),(110114,10,'E70.331 ','Hermansky-Pudlak syndrome','Y','0000-00-00 00:00:00'),(110113,10,'E70.330 ','Chediak-Higashi syndrome','Y','0000-00-00 00:00:00'),(110112,10,'E70.329 ','Oculocutaneous albinism, unspecified','Y','0000-00-00 00:00:00'),(110111,10,'E70.328 ','Other oculocutaneous albinism','Y','0000-00-00 00:00:00'),(110110,10,'E70.321 ','Tyrosinase positive oculocutaneous albinism','Y','0000-00-00 00:00:00'),(110109,10,'E70.320 ','Tyrosinase negative oculocutaneous albinism','Y','0000-00-00 00:00:00'),(110108,10,'E70.319 ','Ocular albinism, unspecified','Y','0000-00-00 00:00:00'),(110107,10,'E70.318 ','Other ocular albinism','Y','0000-00-00 00:00:00'),(110105,10,'E70.310 ','X-linked ocular albinism','Y','0000-00-00 00:00:00'),(110106,10,'E70.311 ','Autosomal recessive ocular albinism','Y','0000-00-00 00:00:00'),(110104,10,'E70.30 ','Albinism, unspecified','Y','0000-00-00 00:00:00'),(110103,10,'E70.29 ','Other disorders of tyrosine metabolism','Y','0000-00-00 00:00:00'),(110102,10,'E70.21 ','Tyrosinemia','Y','0000-00-00 00:00:00'),(110101,10,'E70.20 ','Disorder of tyrosine metabolism, unspecified','Y','0000-00-00 00:00:00'),(110100,10,'E70.1 ','Other hyperphenylalaninemias','Y','0000-00-00 00:00:00'),(110098,10,'E68','Sequelae of hyperalimentation','Y','0000-00-00 00:00:00'),(110099,10,'E70.0 ','Classical phenylketonuria','Y','0000-00-00 00:00:00'),(110097,10,'E67.8 ','Other specified hyperalimentation','Y','0000-00-00 00:00:00'),(110095,10,'E67.2 ','Megavitamin-B6 syndrome','Y','0000-00-00 00:00:00'),(110096,10,'E67.3 ','Hypervitaminosis D','Y','0000-00-00 00:00:00'),(110093,10,'E67.0 ','Hypervitaminosis A','Y','0000-00-00 00:00:00'),(110094,10,'E67.1 ','Hypercarotenemia','Y','0000-00-00 00:00:00'),(110091,10,'E66.8 ','Other obesity','Y','0000-00-00 00:00:00'),(110092,10,'E66.9 ','Obesity, unspecified','Y','0000-00-00 00:00:00'),(110090,10,'E66.3 ','Overweight','Y','0000-00-00 00:00:00'),(110088,10,'E66.1 ','Drug-induced obesity','Y','0000-00-00 00:00:00'),(110089,10,'E66.2 ','Morbid (severe) obesity with alveolar hypoventilation','Y','0000-00-00 00:00:00'),(110087,10,'E66.09 ','Other obesity due to excess calories','Y','0000-00-00 00:00:00'),(110085,10,'E65','Localized adiposity','Y','0000-00-00 00:00:00'),(110086,10,'E66.01 ','Morbid (severe) obesity due to excess calories','Y','0000-00-00 00:00:00'),(110084,10,'E64.9 ','Sequelae of unspecified nutritional deficiency','Y','0000-00-00 00:00:00'),(110083,10,'E64.8 ','Sequelae of other nutritional deficiencies','Y','0000-00-00 00:00:00'),(110082,10,'E64.3 ','Sequelae of rickets','Y','0000-00-00 00:00:00'),(110081,10,'E64.2 ','Sequelae of vitamin C deficiency','Y','0000-00-00 00:00:00'),(110080,10,'E64.1 ','Sequelae of vitamin A deficiency','Y','0000-00-00 00:00:00'),(110079,10,'E64.0 ','Sequelae of protein-calorie malnutrition','Y','0000-00-00 00:00:00'),(110078,10,'E63.9 ','Nutritional deficiency, unspecified','Y','0000-00-00 00:00:00'),(110077,10,'E63.8 ','Other specified nutritional deficiencies','Y','0000-00-00 00:00:00'),(110076,10,'E63.1 ','Imbalance of constituents of food intake','Y','0000-00-00 00:00:00'),(110075,10,'E63.0 ','Essential fatty acid [EFA] deficiency','Y','0000-00-00 00:00:00'),(110074,10,'E61.9 ','Deficiency of nutrient element, unspecified','Y','0000-00-00 00:00:00'),(110073,10,'E61.8 ','Deficiency of other specified nutrient elements','Y','0000-00-00 00:00:00'),(110071,10,'E61.6 ','Vanadium deficiency','Y','0000-00-00 00:00:00'),(110072,10,'E61.7 ','Deficiency of multiple nutrient elements','Y','0000-00-00 00:00:00'),(110069,10,'E61.4 ','Chromium deficiency','Y','0000-00-00 00:00:00'),(110070,10,'E61.5 ','Molybdenum deficiency','Y','0000-00-00 00:00:00'),(110067,10,'E61.2 ','Magnesium deficiency','Y','0000-00-00 00:00:00'),(110068,10,'E61.3 ','Manganese deficiency','Y','0000-00-00 00:00:00'),(110065,10,'E61.0 ','Copper deficiency','Y','0000-00-00 00:00:00'),(110066,10,'E61.1 ','Iron deficiency','Y','0000-00-00 00:00:00'),(110063,10,'E59','Dietary selenium deficiency','Y','0000-00-00 00:00:00'),(110064,10,'E60','Dietary zinc deficiency','Y','0000-00-00 00:00:00'),(110061,10,'E56.9 ','Vitamin deficiency, unspecified','Y','0000-00-00 00:00:00'),(110062,10,'E58','Dietary calcium deficiency','Y','0000-00-00 00:00:00'),(110059,10,'E56.1 ','Deficiency of vitamin K','Y','0000-00-00 00:00:00'),(110060,10,'E56.8 ','Deficiency of other vitamins','Y','0000-00-00 00:00:00'),(110057,10,'E55.9 ','Vitamin D deficiency, unspecified','Y','0000-00-00 00:00:00'),(110058,10,'E56.0 ','Deficiency of vitamin E','Y','0000-00-00 00:00:00'),(110055,10,'E54','Ascorbic acid deficiency','Y','0000-00-00 00:00:00'),(110056,10,'E55.0 ','Rickets, active','Y','0000-00-00 00:00:00'),(110054,10,'E53.9 ','Vitamin B deficiency, unspecified','Y','0000-00-00 00:00:00'),(110053,10,'E53.8 ','Deficiency of other specified B group vitamins','Y','0000-00-00 00:00:00'),(110052,10,'E53.1 ','Pyridoxine deficiency','Y','0000-00-00 00:00:00'),(110051,10,'E53.0 ','Riboflavin deficiency','Y','0000-00-00 00:00:00'),(110050,10,'E52','Niacin deficiency [pellagra]','Y','0000-00-00 00:00:00'),(110049,10,'E51.9 ','Thiamine deficiency, unspecified','Y','0000-00-00 00:00:00'),(110048,10,'E51.8 ','Other manifestations of thiamine deficiency','Y','0000-00-00 00:00:00'),(110047,10,'E51.2 ','Wernicke\'s encephalopathy','Y','0000-00-00 00:00:00'),(110045,10,'E51.11 ','Dry beriberi','Y','0000-00-00 00:00:00'),(110046,10,'E51.12 ','Wet beriberi','Y','0000-00-00 00:00:00'),(110044,10,'E50.9 ','Vitamin A deficiency, unspecified','Y','0000-00-00 00:00:00'),(110043,10,'E50.8 ','Other manifestations of vitamin A deficiency','Y','0000-00-00 00:00:00'),(110042,10,'E50.7 ','Other ocular manifestations of vitamin A deficiency','Y','0000-00-00 00:00:00'),(110041,10,'E50.6 ','Vitamin A deficiency with xerophthalmic scars of cornea','Y','0000-00-00 00:00:00'),(110040,10,'E50.5 ','Vitamin A deficiency with night blindness','Y','0000-00-00 00:00:00'),(110039,10,'E50.4 ','Vitamin A deficiency with keratomalacia','Y','0000-00-00 00:00:00'),(110038,10,'E50.3 ','Vitamin A deficiency with corneal ulceration and xerosis','Y','0000-00-00 00:00:00'),(110037,10,'E50.2 ','Vitamin A deficiency with corneal xerosis','Y','0000-00-00 00:00:00'),(110036,10,'E50.1 ','Vitamin A deficiency with Bitot\'s spot and conjunctival xerosis','Y','0000-00-00 00:00:00'),(110035,10,'E50.0 ','Vitamin A deficiency with conjunctival xerosis','Y','0000-00-00 00:00:00'),(110034,10,'E46','Unspecified protein-calorie malnutrition','Y','0000-00-00 00:00:00'),(110033,10,'E45','Retarded development following protein-calorie malnutrition','Y','0000-00-00 00:00:00'),(110032,10,'E44.1 ','Mild protein-calorie malnutrition','Y','0000-00-00 00:00:00'),(110031,10,'E44.0 ','Moderate protein-calorie malnutrition','Y','0000-00-00 00:00:00'),(110030,10,'E43','Unspecified severe protein-calorie malnutrition','Y','0000-00-00 00:00:00'),(110029,10,'E42','Marasmic kwashiorkor','Y','0000-00-00 00:00:00'),(110028,10,'E41','Nutritional marasmus','Y','0000-00-00 00:00:00'),(110027,10,'E40','Kwashiorkor','Y','0000-00-00 00:00:00'),(110026,10,'E36.8 ','Other intraoperative complications of endocrine system','Y','0000-00-00 00:00:00'),(110025,10,'E36.12 ','Accidental puncture and laceration of an endocrine system organ or structure during other procedure','Y','0000-00-00 00:00:00'),(110024,10,'E36.11 ','Accidental puncture and laceration of an endocrine system organ or structure during an endocrine system procedure','Y','0000-00-00 00:00:00'),(110023,10,'E36.02 ','Intraoperative hemorrhage and hematoma of an endocrine system organ or structure complicating other procedure','Y','0000-00-00 00:00:00'),(110022,10,'E36.01 ','Intraoperative hemorrhage and hematoma of an endocrine system organ or structure complicating an endocrine system procedure','Y','0000-00-00 00:00:00'),(110021,10,'E35','Disorders of endocrine glands in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(110020,10,'E34.9 ','Endocrine disorder, unspecified','Y','0000-00-00 00:00:00'),(110019,10,'E34.8 ','Other specified endocrine disorders','Y','0000-00-00 00:00:00'),(110018,10,'E34.52 ','Partial androgen insensitivity syndrome','Y','0000-00-00 00:00:00'),(110017,10,'E34.51 ','Complete androgen insensitivity syndrome','Y','0000-00-00 00:00:00'),(110016,10,'E34.50 ','Androgen insensitivity syndrome, unspecified','Y','0000-00-00 00:00:00'),(110015,10,'E34.4 ','Constitutional tall stature','Y','0000-00-00 00:00:00'),(110014,10,'E34.39 ','Other short stature due to endocrine disorder','Y','0000-00-00 00:00:00'),(110013,10,'E34.329 ','Unspecified genetic causes of short stature','Y','0000-00-00 00:00:00'),(110012,10,'E34.328 ','Other genetic causes of short stature','Y','0000-00-00 00:00:00'),(110011,10,'E34.322 ','Insulin-like growth factor-1 (IGF-1) resistance','Y','0000-00-00 00:00:00'),(110010,10,'E34.321 ','Primary insulin-like growth factor-1 (IGF-1) deficiency','Y','0000-00-00 00:00:00'),(110009,10,'E34.31 ','Constitutional short stature','Y','0000-00-00 00:00:00'),(110008,10,'E34.30 ','Short stature due to endocrine disorder, unspecified','Y','0000-00-00 00:00:00'),(110007,10,'E34.2 ','Ectopic hormone secretion, not elsewhere classified','Y','0000-00-00 00:00:00'),(110006,10,'E34.1 ','Other hypersecretion of intestinal hormones','Y','0000-00-00 00:00:00'),(110005,10,'E34.0 ','Carcinoid syndrome','Y','0000-00-00 00:00:00'),(110004,10,'E32.9 ','Disease of thymus, unspecified','Y','0000-00-00 00:00:00'),(110003,10,'E32.8 ','Other diseases of thymus','Y','0000-00-00 00:00:00'),(110002,10,'E32.1 ','Abscess of thymus','Y','0000-00-00 00:00:00'),(110001,10,'E32.0 ','Persistent hyperplasia of thymus','Y','0000-00-00 00:00:00'),(110000,10,'E31.9 ','Polyglandular dysfunction, unspecified','Y','0000-00-00 00:00:00'),(109999,10,'E31.8 ','Other polyglandular dysfunction','Y','0000-00-00 00:00:00'),(109998,10,'E31.23 ','Multiple endocrine neoplasia [MEN] type IIB','Y','0000-00-00 00:00:00'),(109997,10,'E31.22 ','Multiple endocrine neoplasia [MEN] type IIA','Y','0000-00-00 00:00:00'),(109996,10,'E31.21 ','Multiple endocrine neoplasia [MEN] type I','Y','0000-00-00 00:00:00'),(109995,10,'E31.20 ','Multiple endocrine neoplasia [MEN] syndrome, unspecified','Y','0000-00-00 00:00:00'),(109994,10,'E31.1 ','Polyglandular hyperfunction','Y','0000-00-00 00:00:00'),(109993,10,'E31.0 ','Autoimmune polyglandular failure','Y','0000-00-00 00:00:00'),(109991,10,'E30.8 ','Other disorders of puberty','Y','0000-00-00 00:00:00'),(109992,10,'E30.9 ','Disorder of puberty, unspecified','Y','0000-00-00 00:00:00'),(109989,10,'E30.0 ','Delayed puberty','Y','0000-00-00 00:00:00'),(109990,10,'E30.1 ','Precocious puberty','Y','0000-00-00 00:00:00'),(109988,10,'E29.9 ','Testicular dysfunction, unspecified','Y','0000-00-00 00:00:00'),(109987,10,'E29.8 ','Other testicular dysfunction','Y','0000-00-00 00:00:00'),(109985,10,'E29.0 ','Testicular hyperfunction','Y','0000-00-00 00:00:00'),(109986,10,'E29.1 ','Testicular hypofunction','Y','0000-00-00 00:00:00'),(109984,10,'E28.9 ','Ovarian dysfunction, unspecified','Y','0000-00-00 00:00:00'),(109983,10,'E28.8 ','Other ovarian dysfunction','Y','0000-00-00 00:00:00'),(109982,10,'E28.39 ','Other primary ovarian failure','Y','0000-00-00 00:00:00'),(109981,10,'E28.319 ','Asymptomatic premature menopause','Y','0000-00-00 00:00:00'),(109980,10,'E28.310 ','Symptomatic premature menopause','Y','0000-00-00 00:00:00'),(109979,10,'E28.2 ','Polycystic ovarian syndrome','Y','0000-00-00 00:00:00'),(109978,10,'E28.1 ','Androgen excess','Y','0000-00-00 00:00:00'),(109977,10,'E28.0 ','Estrogen excess','Y','0000-00-00 00:00:00'),(109976,10,'E27.9 ','Disorder of adrenal gland, unspecified','Y','0000-00-00 00:00:00'),(109974,10,'E27.5 ','Adrenomedullary hyperfunction','Y','0000-00-00 00:00:00'),(109975,10,'E27.8 ','Other specified disorders of adrenal gland','Y','0000-00-00 00:00:00'),(109973,10,'E27.49 ','Other adrenocortical insufficiency','Y','0000-00-00 00:00:00'),(109972,10,'E27.40 ','Unspecified adrenocortical insufficiency','Y','0000-00-00 00:00:00'),(109970,10,'E27.2 ','Addisonian crisis','Y','0000-00-00 00:00:00'),(109971,10,'E27.3 ','Drug-induced adrenocortical insufficiency','Y','0000-00-00 00:00:00'),(109969,10,'E27.1 ','Primary adrenocortical insufficiency','Y','0000-00-00 00:00:00'),(109968,10,'E27.0 ','Other adrenocortical overactivity','Y','0000-00-00 00:00:00'),(109967,10,'E26.9 ','Hyperaldosteronism, unspecified','Y','0000-00-00 00:00:00'),(109966,10,'E26.89 ','Other hyperaldosteronism','Y','0000-00-00 00:00:00'),(109965,10,'E26.81 ','Bartter\'s syndrome','Y','0000-00-00 00:00:00'),(109963,10,'E26.09 ','Other primary hyperaldosteronism','Y','0000-00-00 00:00:00'),(109964,10,'E26.1 ','Secondary hyperaldosteronism','Y','0000-00-00 00:00:00'),(109962,10,'E26.02 ','Glucocorticoid-remediable aldosteronism','Y','0000-00-00 00:00:00'),(109961,10,'E26.01 ','Conn\'s syndrome','Y','0000-00-00 00:00:00'),(109959,10,'E25.8 ','Other adrenogenital disorders','Y','0000-00-00 00:00:00'),(109960,10,'E25.9 ','Adrenogenital disorder, unspecified','Y','0000-00-00 00:00:00'),(109957,10,'E24.9 ','Cushing\'s syndrome, unspecified','Y','0000-00-00 00:00:00'),(109958,10,'E25.0 ','Congenital adrenogenital disorders associated with enzyme deficiency','Y','0000-00-00 00:00:00'),(109956,10,'E24.8 ','Other Cushing\'s syndrome','Y','0000-00-00 00:00:00'),(109954,10,'E24.3 ','Ectopic ACTH syndrome','Y','0000-00-00 00:00:00'),(109955,10,'E24.4 ','Alcohol-induced pseudo-Cushing\'s syndrome','Y','0000-00-00 00:00:00'),(109953,10,'E24.2 ','Drug-induced Cushing\'s syndrome','Y','0000-00-00 00:00:00'),(109952,10,'E24.1 ','Nelson\'s syndrome','Y','0000-00-00 00:00:00'),(109951,10,'E24.0 ','Pituitary-dependent Cushing\'s disease','Y','0000-00-00 00:00:00'),(109950,10,'E23.7 ','Disorder of pituitary gland, unspecified','Y','0000-00-00 00:00:00'),(109949,10,'E23.6 ','Other disorders of pituitary gland','Y','0000-00-00 00:00:00'),(109948,10,'E23.3 ','Hypothalamic dysfunction, not elsewhere classified','Y','0000-00-00 00:00:00'),(109946,10,'E23.1 ','Drug-induced hypopituitarism','Y','0000-00-00 00:00:00'),(109947,10,'E23.2 ','Diabetes insipidus','Y','0000-00-00 00:00:00'),(109945,10,'E23.0 ','Hypopituitarism','Y','0000-00-00 00:00:00'),(109944,10,'E22.9 ','Hyperfunction of pituitary gland, unspecified','Y','0000-00-00 00:00:00'),(109943,10,'E22.8 ','Other hyperfunction of pituitary gland','Y','0000-00-00 00:00:00'),(109941,10,'E22.1 ','Hyperprolactinemia','Y','0000-00-00 00:00:00'),(109942,10,'E22.2 ','Syndrome of inappropriate secretion of antidiuretic hormone','Y','0000-00-00 00:00:00'),(109940,10,'E22.0 ','Acromegaly and pituitary gigantism','Y','0000-00-00 00:00:00'),(109939,10,'E21.5 ','Disorder of parathyroid gland, unspecified','Y','0000-00-00 00:00:00'),(109938,10,'E21.4 ','Other specified disorders of parathyroid gland','Y','0000-00-00 00:00:00'),(109937,10,'E21.3 ','Hyperparathyroidism, unspecified','Y','0000-00-00 00:00:00'),(109936,10,'E21.2 ','Other hyperparathyroidism','Y','0000-00-00 00:00:00'),(109934,10,'E21.0 ','Primary hyperparathyroidism','Y','0000-00-00 00:00:00'),(109935,10,'E21.1 ','Secondary hyperparathyroidism, not elsewhere classified','Y','0000-00-00 00:00:00'),(109933,10,'E20.9 ','Hypoparathyroidism, unspecified','Y','0000-00-00 00:00:00'),(109932,10,'E20.89 ','Other specified hypoparathyroidism','Y','0000-00-00 00:00:00'),(109931,10,'E20.819 ','Hypoparathyroidism due to impaired parathyroid hormone secretion, unspecified','Y','0000-00-00 00:00:00'),(109930,10,'E20.818 ','Other specified hypoparathyroidism due to impaired parathyroid hormone secretion','Y','0000-00-00 00:00:00'),(109929,10,'E20.812 ','Autoimmune hypoparathyroidism','Y','0000-00-00 00:00:00'),(109928,10,'E20.811 ','Secondary hypoparathyroidism in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(109927,10,'E20.810 ','Autosomal dominant hypocalcemia','Y','0000-00-00 00:00:00'),(109926,10,'E20.1 ','Pseudohypoparathyroidism','Y','0000-00-00 00:00:00'),(109925,10,'E20.0 ','Idiopathic hypoparathyroidism','Y','0000-00-00 00:00:00'),(109924,10,'E16.9 ','Disorder of pancreatic internal secretion, unspecified','Y','0000-00-00 00:00:00'),(109922,10,'E16.4 ','Increased secretion of gastrin','Y','0000-00-00 00:00:00'),(109923,10,'E16.8 ','Other specified disorders of pancreatic internal secretion','Y','0000-00-00 00:00:00'),(109921,10,'E16.3 ','Increased secretion of glucagon','Y','0000-00-00 00:00:00'),(109920,10,'E16.2 ','Hypoglycemia, unspecified','Y','0000-00-00 00:00:00'),(109919,10,'E16.1 ','Other hypoglycemia','Y','0000-00-00 00:00:00'),(109918,10,'E16.0 ','Drug-induced hypoglycemia without coma','Y','0000-00-00 00:00:00'),(109917,10,'E15','Nondiabetic hypoglycemic coma','Y','0000-00-00 00:00:00'),(109916,10,'E13.9 ','Other specified diabetes mellitus without complications','Y','0000-00-00 00:00:00'),(109915,10,'E13.8 ','Other specified diabetes mellitus with unspecified complications','Y','0000-00-00 00:00:00'),(109914,10,'E13.69 ','Other specified diabetes mellitus with other specified complication','Y','0000-00-00 00:00:00'),(109913,10,'E13.65 ','Other specified diabetes mellitus with hyperglycemia','Y','0000-00-00 00:00:00'),(109912,10,'E13.649 ','Other specified diabetes mellitus with hypoglycemia without coma','Y','0000-00-00 00:00:00'),(109911,10,'E13.641 ','Other specified diabetes mellitus with hypoglycemia with coma','Y','0000-00-00 00:00:00'),(109910,10,'E13.638 ','Other specified diabetes mellitus with other oral complications','Y','0000-00-00 00:00:00'),(109909,10,'E13.630 ','Other specified diabetes mellitus with periodontal disease','Y','0000-00-00 00:00:00'),(109908,10,'E13.628 ','Other specified diabetes mellitus with other skin complications','Y','0000-00-00 00:00:00'),(109907,10,'E13.622 ','Other specified diabetes mellitus with other skin ulcer','Y','0000-00-00 00:00:00'),(109906,10,'E13.621 ','Other specified diabetes mellitus with foot ulcer','Y','0000-00-00 00:00:00'),(109905,10,'E13.620 ','Other specified diabetes mellitus with diabetic dermatitis','Y','0000-00-00 00:00:00'),(109904,10,'E13.618 ','Other specified diabetes mellitus with other diabetic arthropathy','Y','0000-00-00 00:00:00'),(109903,10,'E13.610 ','Other specified diabetes mellitus with diabetic neuropathic arthropathy','Y','0000-00-00 00:00:00'),(109902,10,'E13.59 ','Other specified diabetes mellitus with other circulatory complications','Y','0000-00-00 00:00:00'),(109901,10,'E13.52 ','Other specified diabetes mellitus with diabetic peripheral angiopathy with gangrene','Y','0000-00-00 00:00:00'),(109900,10,'E13.51 ','Other specified diabetes mellitus with diabetic peripheral angiopathy without gangrene','Y','0000-00-00 00:00:00'),(109899,10,'E13.49 ','Other specified diabetes mellitus with other diabetic neurological complication','Y','0000-00-00 00:00:00'),(109898,10,'E13.44 ','Other specified diabetes mellitus with diabetic amyotrophy','Y','0000-00-00 00:00:00'),(109897,10,'E13.43 ','Other specified diabetes mellitus with diabetic autonomic (poly)neuropathy','Y','0000-00-00 00:00:00'),(109896,10,'E13.42 ','Other specified diabetes mellitus with diabetic polyneuropathy','Y','0000-00-00 00:00:00'),(109895,10,'E13.41 ','Other specified diabetes mellitus with diabetic mononeuropathy','Y','0000-00-00 00:00:00'),(109894,10,'E13.40 ','Other specified diabetes mellitus with diabetic neuropathy, unspecified','Y','0000-00-00 00:00:00'),(109893,10,'E13.39 ','Other specified diabetes mellitus with other diabetic ophthalmic complication','Y','0000-00-00 00:00:00'),(109892,10,'E13.37X9 ','Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye','Y','0000-00-00 00:00:00'),(109891,10,'E13.37X3 ','Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral','Y','0000-00-00 00:00:00'),(109890,10,'E13.37X2 ','Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, left eye','Y','0000-00-00 00:00:00'),(109889,10,'E13.37X1 ','Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, right eye','Y','0000-00-00 00:00:00'),(109888,10,'E13.36 ','Other specified diabetes mellitus with diabetic cataract','Y','0000-00-00 00:00:00'),(109887,10,'E13.3599 ','Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109886,10,'E13.3593 ','Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109885,10,'E13.3592 ','Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109884,10,'E13.3591 ','Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109883,10,'E13.3559 ','Other specified diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye','Y','0000-00-00 00:00:00'),(109882,10,'E13.3553 ','Other specified diabetes mellitus with stable proliferative diabetic retinopathy, bilateral','Y','0000-00-00 00:00:00'),(109881,10,'E13.3552 ','Other specified diabetes mellitus with stable proliferative diabetic retinopathy, left eye','Y','0000-00-00 00:00:00'),(109880,10,'E13.3551 ','Other specified diabetes mellitus with stable proliferative diabetic retinopathy, right eye','Y','0000-00-00 00:00:00'),(109879,10,'E13.3549 ','Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye','Y','0000-00-00 00:00:00'),(109878,10,'E13.3543 ','Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral','Y','0000-00-00 00:00:00'),(109877,10,'E13.3542 ','Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye','Y','0000-00-00 00:00:00'),(109876,10,'E13.3541 ','Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye','Y','0000-00-00 00:00:00'),(109875,10,'E13.3539 ','Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye','Y','0000-00-00 00:00:00'),(109874,10,'E13.3533 ','Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral','Y','0000-00-00 00:00:00'),(109873,10,'E13.3532 ','Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye','Y','0000-00-00 00:00:00'),(109872,10,'E13.3531 ','Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye','Y','0000-00-00 00:00:00'),(109871,10,'E13.3529 ','Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye','Y','0000-00-00 00:00:00'),(109870,10,'E13.3523 ','Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral','Y','0000-00-00 00:00:00'),(109869,10,'E13.3522 ','Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye','Y','0000-00-00 00:00:00'),(109868,10,'E13.3521 ','Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye','Y','0000-00-00 00:00:00'),(109867,10,'E13.3519 ','Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109866,10,'E13.3513 ','Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109865,10,'E13.3512 ','Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109864,10,'E13.3511 ','Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109863,10,'E13.3499 ','Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109862,10,'E13.3493 ','Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109861,10,'E13.3492 ','Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109860,10,'E13.3491 ','Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109859,10,'E13.3419 ','Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109858,10,'E13.3413 ','Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109857,10,'E13.3412 ','Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109856,10,'E13.3411 ','Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109855,10,'E13.3399 ','Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109854,10,'E13.3393 ','Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109853,10,'E13.3392 ','Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109852,10,'E13.3391 ','Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109851,10,'E13.3319 ','Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109850,10,'E13.3313 ','Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109849,10,'E13.3312 ','Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109848,10,'E13.3311 ','Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109847,10,'E13.3299 ','Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109846,10,'E13.3293 ','Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109845,10,'E13.3292 ','Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109844,10,'E13.3291 ','Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109843,10,'E13.3219 ','Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109842,10,'E13.3213 ','Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109841,10,'E13.3212 ','Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109840,10,'E13.3211 ','Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109839,10,'E13.319 ','Other specified diabetes mellitus with unspecified diabetic retinopathy without macular edema','Y','0000-00-00 00:00:00'),(109838,10,'E13.311 ','Other specified diabetes mellitus with unspecified diabetic retinopathy with macular edema','Y','0000-00-00 00:00:00'),(109837,10,'E13.29 ','Other specified diabetes mellitus with other diabetic kidney complication','Y','0000-00-00 00:00:00'),(109836,10,'E13.22 ','Other specified diabetes mellitus with diabetic chronic kidney disease','Y','0000-00-00 00:00:00'),(109835,10,'E13.21 ','Other specified diabetes mellitus with diabetic nephropathy','Y','0000-00-00 00:00:00'),(109834,10,'E13.11 ','Other specified diabetes mellitus with ketoacidosis with coma','Y','0000-00-00 00:00:00'),(109833,10,'E13.10 ','Other specified diabetes mellitus with ketoacidosis without coma','Y','0000-00-00 00:00:00'),(109832,10,'E13.01 ','Other specified diabetes mellitus with hyperosmolarity with coma','Y','0000-00-00 00:00:00'),(109831,10,'E13.00 ','Other specified diabetes mellitus with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC)','Y','0000-00-00 00:00:00'),(109830,10,'E11.9 ','Type 2 diabetes mellitus without complications','Y','0000-00-00 00:00:00'),(109829,10,'E11.8 ','Type 2 diabetes mellitus with unspecified complications','Y','0000-00-00 00:00:00'),(109828,10,'E11.69 ','Type 2 diabetes mellitus with other specified complication','Y','0000-00-00 00:00:00'),(109827,10,'E11.65 ','Type 2 diabetes mellitus with hyperglycemia','Y','0000-00-00 00:00:00'),(109826,10,'E11.649 ','Type 2 diabetes mellitus with hypoglycemia without coma','Y','0000-00-00 00:00:00'),(109825,10,'E11.641 ','Type 2 diabetes mellitus with hypoglycemia with coma','Y','0000-00-00 00:00:00'),(109824,10,'E11.638 ','Type 2 diabetes mellitus with other oral complications','Y','0000-00-00 00:00:00'),(109823,10,'E11.630 ','Type 2 diabetes mellitus with periodontal disease','Y','0000-00-00 00:00:00'),(109822,10,'E11.628 ','Type 2 diabetes mellitus with other skin complications','Y','0000-00-00 00:00:00'),(109821,10,'E11.622 ','Type 2 diabetes mellitus with other skin ulcer','Y','0000-00-00 00:00:00'),(109820,10,'E11.621 ','Type 2 diabetes mellitus with foot ulcer','Y','0000-00-00 00:00:00'),(109819,10,'E11.620 ','Type 2 diabetes mellitus with diabetic dermatitis','Y','0000-00-00 00:00:00'),(109818,10,'E11.618 ','Type 2 diabetes mellitus with other diabetic arthropathy','Y','0000-00-00 00:00:00'),(109817,10,'E11.610 ','Type 2 diabetes mellitus with diabetic neuropathic arthropathy','Y','0000-00-00 00:00:00'),(109816,10,'E11.59 ','Type 2 diabetes mellitus with other circulatory complications','Y','0000-00-00 00:00:00'),(109815,10,'E11.52 ','Type 2 diabetes mellitus with diabetic peripheral angiopathy with gangrene','Y','0000-00-00 00:00:00'),(109814,10,'E11.51 ','Type 2 diabetes mellitus with diabetic peripheral angiopathy without gangrene','Y','0000-00-00 00:00:00'),(109813,10,'E11.49 ','Type 2 diabetes mellitus with other diabetic neurological complication','Y','0000-00-00 00:00:00'),(109812,10,'E11.44 ','Type 2 diabetes mellitus with diabetic amyotrophy','Y','0000-00-00 00:00:00'),(109811,10,'E11.43 ','Type 2 diabetes mellitus with diabetic autonomic (poly)neuropathy','Y','0000-00-00 00:00:00'),(109810,10,'E11.42 ','Type 2 diabetes mellitus with diabetic polyneuropathy','Y','0000-00-00 00:00:00'),(109809,10,'E11.41 ','Type 2 diabetes mellitus with diabetic mononeuropathy','Y','0000-00-00 00:00:00'),(109808,10,'E11.40 ','Type 2 diabetes mellitus with diabetic neuropathy, unspecified','Y','0000-00-00 00:00:00'),(109807,10,'E11.39 ','Type 2 diabetes mellitus with other diabetic ophthalmic complication','Y','0000-00-00 00:00:00'),(109806,10,'E11.37X9 ','Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye','Y','0000-00-00 00:00:00'),(109805,10,'E11.37X3 ','Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral','Y','0000-00-00 00:00:00'),(109804,10,'E11.37X2 ','Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, left eye','Y','0000-00-00 00:00:00'),(109803,10,'E11.37X1 ','Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, right eye','Y','0000-00-00 00:00:00'),(109802,10,'E11.36 ','Type 2 diabetes mellitus with diabetic cataract','Y','0000-00-00 00:00:00'),(109801,10,'E11.3599 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109800,10,'E11.3593 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109799,10,'E11.3592 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109798,10,'E11.3591 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109797,10,'E11.3559 ','Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye','Y','0000-00-00 00:00:00'),(109796,10,'E11.3553 ','Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, bilateral','Y','0000-00-00 00:00:00'),(109795,10,'E11.3552 ','Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, left eye','Y','0000-00-00 00:00:00'),(109794,10,'E11.3551 ','Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, right eye','Y','0000-00-00 00:00:00'),(109793,10,'E11.3549 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye','Y','0000-00-00 00:00:00'),(109792,10,'E11.3543 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral','Y','0000-00-00 00:00:00'),(109791,10,'E11.3542 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye','Y','0000-00-00 00:00:00'),(109790,10,'E11.3541 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye','Y','0000-00-00 00:00:00'),(109789,10,'E11.3539 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye','Y','0000-00-00 00:00:00'),(109788,10,'E11.3533 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral','Y','0000-00-00 00:00:00'),(109787,10,'E11.3532 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye','Y','0000-00-00 00:00:00'),(109786,10,'E11.3531 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye','Y','0000-00-00 00:00:00'),(109785,10,'E11.3529 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye','Y','0000-00-00 00:00:00'),(109784,10,'E11.3523 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral','Y','0000-00-00 00:00:00'),(109783,10,'E11.3522 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye','Y','0000-00-00 00:00:00'),(109782,10,'E11.3521 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye','Y','0000-00-00 00:00:00'),(109781,10,'E11.3519 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109780,10,'E11.3513 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109779,10,'E11.3512 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109778,10,'E11.3511 ','Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109777,10,'E11.3499 ','Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109776,10,'E11.3493 ','Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109775,10,'E11.3492 ','Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109774,10,'E11.3491 ','Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109773,10,'E11.3419 ','Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109772,10,'E11.3413 ','Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109771,10,'E11.3412 ','Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109770,10,'E11.3411 ','Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109769,10,'E11.3399 ','Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109768,10,'E11.3393 ','Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109767,10,'E11.3392 ','Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109766,10,'E11.3391 ','Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109765,10,'E11.3319 ','Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109764,10,'E11.3313 ','Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109763,10,'E11.3312 ','Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109762,10,'E11.3311 ','Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109761,10,'E11.3299 ','Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109760,10,'E11.3293 ','Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109759,10,'E11.3292 ','Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109758,10,'E11.3291 ','Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109757,10,'E11.3219 ','Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109756,10,'E11.3213 ','Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109755,10,'E11.3212 ','Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109754,10,'E11.3211 ','Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109753,10,'E11.319 ','Type 2 diabetes mellitus with unspecified diabetic retinopathy without macular edema','Y','0000-00-00 00:00:00'),(109752,10,'E11.311 ','Type 2 diabetes mellitus with unspecified diabetic retinopathy with macular edema','Y','0000-00-00 00:00:00'),(109751,10,'E11.29 ','Type 2 diabetes mellitus with other diabetic kidney complication','Y','0000-00-00 00:00:00'),(109750,10,'E11.22 ','Type 2 diabetes mellitus with diabetic chronic kidney disease','Y','0000-00-00 00:00:00'),(109749,10,'E11.21 ','Type 2 diabetes mellitus with diabetic nephropathy','Y','0000-00-00 00:00:00'),(109748,10,'E11.11 ','Type 2 diabetes mellitus with ketoacidosis with coma','Y','0000-00-00 00:00:00'),(109747,10,'E11.10 ','Type 2 diabetes mellitus with ketoacidosis without coma','Y','0000-00-00 00:00:00'),(109746,10,'E11.01 ','Type 2 diabetes mellitus with hyperosmolarity with coma','Y','0000-00-00 00:00:00'),(109745,10,'E11.00 ','Type 2 diabetes mellitus with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC)','Y','0000-00-00 00:00:00'),(109744,10,'E10.9 ','Type 1 diabetes mellitus without complications','Y','0000-00-00 00:00:00'),(109743,10,'E10.8 ','Type 1 diabetes mellitus with unspecified complications','Y','0000-00-00 00:00:00'),(109742,10,'E10.69 ','Type 1 diabetes mellitus with other specified complication','Y','0000-00-00 00:00:00'),(109741,10,'E10.65 ','Type 1 diabetes mellitus with hyperglycemia','Y','0000-00-00 00:00:00'),(109740,10,'E10.649 ','Type 1 diabetes mellitus with hypoglycemia without coma','Y','0000-00-00 00:00:00'),(109739,10,'E10.641 ','Type 1 diabetes mellitus with hypoglycemia with coma','Y','0000-00-00 00:00:00'),(109738,10,'E10.638 ','Type 1 diabetes mellitus with other oral complications','Y','0000-00-00 00:00:00'),(109737,10,'E10.630 ','Type 1 diabetes mellitus with periodontal disease','Y','0000-00-00 00:00:00'),(109736,10,'E10.628 ','Type 1 diabetes mellitus with other skin complications','Y','0000-00-00 00:00:00'),(109735,10,'E10.622 ','Type 1 diabetes mellitus with other skin ulcer','Y','0000-00-00 00:00:00'),(109734,10,'E10.621 ','Type 1 diabetes mellitus with foot ulcer','Y','0000-00-00 00:00:00'),(109733,10,'E10.620 ','Type 1 diabetes mellitus with diabetic dermatitis','Y','0000-00-00 00:00:00'),(109732,10,'E10.618 ','Type 1 diabetes mellitus with other diabetic arthropathy','Y','0000-00-00 00:00:00'),(109731,10,'E10.610 ','Type 1 diabetes mellitus with diabetic neuropathic arthropathy','Y','0000-00-00 00:00:00'),(109730,10,'E10.59 ','Type 1 diabetes mellitus with other circulatory complications','Y','0000-00-00 00:00:00'),(109729,10,'E10.52 ','Type 1 diabetes mellitus with diabetic peripheral angiopathy with gangrene','Y','0000-00-00 00:00:00'),(109728,10,'E10.51 ','Type 1 diabetes mellitus with diabetic peripheral angiopathy without gangrene','Y','0000-00-00 00:00:00'),(109727,10,'E10.49 ','Type 1 diabetes mellitus with other diabetic neurological complication','Y','0000-00-00 00:00:00'),(109726,10,'E10.44 ','Type 1 diabetes mellitus with diabetic amyotrophy','Y','0000-00-00 00:00:00'),(109725,10,'E10.43 ','Type 1 diabetes mellitus with diabetic autonomic (poly)neuropathy','Y','0000-00-00 00:00:00'),(109724,10,'E10.42 ','Type 1 diabetes mellitus with diabetic polyneuropathy','Y','0000-00-00 00:00:00'),(109723,10,'E10.41 ','Type 1 diabetes mellitus with diabetic mononeuropathy','Y','0000-00-00 00:00:00'),(109722,10,'E10.40 ','Type 1 diabetes mellitus with diabetic neuropathy, unspecified','Y','0000-00-00 00:00:00'),(109721,10,'E10.39 ','Type 1 diabetes mellitus with other diabetic ophthalmic complication','Y','0000-00-00 00:00:00'),(109720,10,'E10.37X9 ','Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye','Y','0000-00-00 00:00:00'),(109719,10,'E10.37X3 ','Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral','Y','0000-00-00 00:00:00'),(109718,10,'E10.37X2 ','Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, left eye','Y','0000-00-00 00:00:00'),(109717,10,'E10.37X1 ','Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, right eye','Y','0000-00-00 00:00:00'),(109716,10,'E10.36 ','Type 1 diabetes mellitus with diabetic cataract','Y','0000-00-00 00:00:00'),(109715,10,'E10.3599 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109714,10,'E10.3593 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109713,10,'E10.3592 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109712,10,'E10.3591 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109711,10,'E10.3559 ','Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye','Y','0000-00-00 00:00:00'),(109710,10,'E10.3553 ','Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, bilateral','Y','0000-00-00 00:00:00'),(109709,10,'E10.3552 ','Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, left eye','Y','0000-00-00 00:00:00'),(109708,10,'E10.3551 ','Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, right eye','Y','0000-00-00 00:00:00'),(109707,10,'E10.3549 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye','Y','0000-00-00 00:00:00'),(109706,10,'E10.3543 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral','Y','0000-00-00 00:00:00'),(109705,10,'E10.3542 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye','Y','0000-00-00 00:00:00'),(109704,10,'E10.3541 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye','Y','0000-00-00 00:00:00'),(109703,10,'E10.3539 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye','Y','0000-00-00 00:00:00'),(109702,10,'E10.3533 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral','Y','0000-00-00 00:00:00'),(109701,10,'E10.3532 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye','Y','0000-00-00 00:00:00'),(109700,10,'E10.3531 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye','Y','0000-00-00 00:00:00'),(109699,10,'E10.3529 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye','Y','0000-00-00 00:00:00'),(109698,10,'E10.3523 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral','Y','0000-00-00 00:00:00'),(109697,10,'E10.3522 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye','Y','0000-00-00 00:00:00'),(109696,10,'E10.3521 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye','Y','0000-00-00 00:00:00'),(109695,10,'E10.3519 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109694,10,'E10.3513 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109693,10,'E10.3512 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109692,10,'E10.3511 ','Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109691,10,'E10.3499 ','Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109690,10,'E10.3493 ','Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109689,10,'E10.3492 ','Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109688,10,'E10.3491 ','Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109687,10,'E10.3419 ','Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109686,10,'E10.3413 ','Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109685,10,'E10.3412 ','Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109684,10,'E10.3411 ','Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109683,10,'E10.3399 ','Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109682,10,'E10.3393 ','Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109681,10,'E10.3392 ','Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109680,10,'E10.3391 ','Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109679,10,'E10.3319 ','Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109678,10,'E10.3313 ','Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109677,10,'E10.3312 ','Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109676,10,'E10.3311 ','Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109675,10,'E10.3299 ','Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109674,10,'E10.3293 ','Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109673,10,'E10.3292 ','Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109672,10,'E10.3291 ','Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109671,10,'E10.3219 ','Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109670,10,'E10.3213 ','Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109669,10,'E10.3212 ','Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109668,10,'E10.3211 ','Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109667,10,'E10.319 ','Type 1 diabetes mellitus with unspecified diabetic retinopathy without macular edema','Y','0000-00-00 00:00:00'),(109666,10,'E10.311 ','Type 1 diabetes mellitus with unspecified diabetic retinopathy with macular edema','Y','0000-00-00 00:00:00'),(109665,10,'E10.29 ','Type 1 diabetes mellitus with other diabetic kidney complication','Y','0000-00-00 00:00:00'),(109664,10,'E10.22 ','Type 1 diabetes mellitus with diabetic chronic kidney disease','Y','0000-00-00 00:00:00'),(109663,10,'E10.21 ','Type 1 diabetes mellitus with diabetic nephropathy','Y','0000-00-00 00:00:00'),(109662,10,'E10.11 ','Type 1 diabetes mellitus with ketoacidosis with coma','Y','0000-00-00 00:00:00'),(109661,10,'E10.10 ','Type 1 diabetes mellitus with ketoacidosis without coma','Y','0000-00-00 00:00:00'),(109660,10,'E09.9 ','Drug or chemical induced diabetes mellitus without complications','Y','0000-00-00 00:00:00'),(109659,10,'E09.8 ','Drug or chemical induced diabetes mellitus with unspecified complications','Y','0000-00-00 00:00:00'),(109658,10,'E09.69 ','Drug or chemical induced diabetes mellitus with other specified complication','Y','0000-00-00 00:00:00'),(109657,10,'E09.65 ','Drug or chemical induced diabetes mellitus with hyperglycemia','Y','0000-00-00 00:00:00'),(109656,10,'E09.649 ','Drug or chemical induced diabetes mellitus with hypoglycemia without coma','Y','0000-00-00 00:00:00'),(109655,10,'E09.641 ','Drug or chemical induced diabetes mellitus with hypoglycemia with coma','Y','0000-00-00 00:00:00'),(109654,10,'E09.638 ','Drug or chemical induced diabetes mellitus with other oral complications','Y','0000-00-00 00:00:00'),(109653,10,'E09.630 ','Drug or chemical induced diabetes mellitus with periodontal disease','Y','0000-00-00 00:00:00'),(109652,10,'E09.628 ','Drug or chemical induced diabetes mellitus with other skin complications','Y','0000-00-00 00:00:00'),(109651,10,'E09.622 ','Drug or chemical induced diabetes mellitus with other skin ulcer','Y','0000-00-00 00:00:00'),(109650,10,'E09.621 ','Drug or chemical induced diabetes mellitus with foot ulcer','Y','0000-00-00 00:00:00'),(109649,10,'E09.620 ','Drug or chemical induced diabetes mellitus with diabetic dermatitis','Y','0000-00-00 00:00:00'),(109648,10,'E09.618 ','Drug or chemical induced diabetes mellitus with other diabetic arthropathy','Y','0000-00-00 00:00:00'),(109647,10,'E09.610 ','Drug or chemical induced diabetes mellitus with diabetic neuropathic arthropathy','Y','0000-00-00 00:00:00'),(109646,10,'E09.59 ','Drug or chemical induced diabetes mellitus with other circulatory complications','Y','0000-00-00 00:00:00'),(109645,10,'E09.52 ','Drug or chemical induced diabetes mellitus with diabetic peripheral angiopathy with gangrene','Y','0000-00-00 00:00:00'),(109644,10,'E09.51 ','Drug or chemical induced diabetes mellitus with diabetic peripheral angiopathy without gangrene','Y','0000-00-00 00:00:00'),(109643,10,'E09.49 ','Drug or chemical induced diabetes mellitus with neurological complications with other diabetic neurological complication','Y','0000-00-00 00:00:00'),(109642,10,'E09.44 ','Drug or chemical induced diabetes mellitus with neurological complications with diabetic amyotrophy','Y','0000-00-00 00:00:00'),(109641,10,'E09.43 ','Drug or chemical induced diabetes mellitus with neurological complications with diabetic autonomic (poly)neuropathy','Y','0000-00-00 00:00:00'),(109640,10,'E09.42 ','Drug or chemical induced diabetes mellitus with neurological complications with diabetic polyneuropathy','Y','0000-00-00 00:00:00'),(109639,10,'E09.41 ','Drug or chemical induced diabetes mellitus with neurological complications with diabetic mononeuropathy','Y','0000-00-00 00:00:00'),(109638,10,'E09.40 ','Drug or chemical induced diabetes mellitus with neurological complications with diabetic neuropathy, unspecified','Y','0000-00-00 00:00:00'),(109637,10,'E09.39 ','Drug or chemical induced diabetes mellitus with other diabetic ophthalmic complication','Y','0000-00-00 00:00:00'),(109636,10,'E09.37X9 ','Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye','Y','0000-00-00 00:00:00'),(109635,10,'E09.37X3 ','Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral','Y','0000-00-00 00:00:00'),(109634,10,'E09.37X2 ','Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment, left eye','Y','0000-00-00 00:00:00'),(109633,10,'E09.37X1 ','Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment, right eye','Y','0000-00-00 00:00:00'),(109632,10,'E09.36 ','Drug or chemical induced diabetes mellitus with diabetic cataract','Y','0000-00-00 00:00:00'),(109631,10,'E09.3599 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109630,10,'E09.3593 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109629,10,'E09.3592 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109628,10,'E09.3591 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109627,10,'E09.3559 ','Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye','Y','0000-00-00 00:00:00'),(109626,10,'E09.3553 ','Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy, bilateral','Y','0000-00-00 00:00:00'),(109625,10,'E09.3552 ','Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy, left eye','Y','0000-00-00 00:00:00'),(109624,10,'E09.3551 ','Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy, right eye','Y','0000-00-00 00:00:00'),(109623,10,'E09.3549 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye','Y','0000-00-00 00:00:00'),(109622,10,'E09.3543 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral','Y','0000-00-00 00:00:00'),(109621,10,'E09.3542 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye','Y','0000-00-00 00:00:00'),(109620,10,'E09.3541 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye','Y','0000-00-00 00:00:00'),(109619,10,'E09.3539 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye','Y','0000-00-00 00:00:00'),(109618,10,'E09.3533 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral','Y','0000-00-00 00:00:00'),(109617,10,'E09.3532 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye','Y','0000-00-00 00:00:00'),(109616,10,'E09.3531 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye','Y','0000-00-00 00:00:00'),(109615,10,'E09.3529 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye','Y','0000-00-00 00:00:00'),(109614,10,'E09.3523 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral','Y','0000-00-00 00:00:00'),(109613,10,'E09.3522 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye','Y','0000-00-00 00:00:00'),(109612,10,'E09.3521 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye','Y','0000-00-00 00:00:00'),(109611,10,'E09.3519 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109610,10,'E09.3513 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109609,10,'E09.3512 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109608,10,'E09.3511 ','Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109607,10,'E09.3499 ','Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109606,10,'E09.3493 ','Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109605,10,'E09.3492 ','Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109604,10,'E09.3491 ','Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109603,10,'E09.3419 ','Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109602,10,'E09.3413 ','Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109601,10,'E09.3412 ','Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109600,10,'E09.3411 ','Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109599,10,'E09.3399 ','Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109598,10,'E09.3393 ','Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109597,10,'E09.3392 ','Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109596,10,'E09.3391 ','Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109595,10,'E09.3319 ','Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109594,10,'E09.3313 ','Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109593,10,'E09.3312 ','Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109592,10,'E09.3311 ','Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109591,10,'E09.3299 ','Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109590,10,'E09.3293 ','Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109589,10,'E09.3292 ','Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109588,10,'E09.3291 ','Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109587,10,'E09.3219 ','Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109586,10,'E09.3213 ','Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109585,10,'E09.3212 ','Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109584,10,'E09.3211 ','Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109583,10,'E09.319 ','Drug or chemical induced diabetes mellitus with unspecified diabetic retinopathy without macular edema','Y','0000-00-00 00:00:00'),(109582,10,'E09.311 ','Drug or chemical induced diabetes mellitus with unspecified diabetic retinopathy with macular edema','Y','0000-00-00 00:00:00'),(109581,10,'E09.29 ','Drug or chemical induced diabetes mellitus with other diabetic kidney complication','Y','0000-00-00 00:00:00'),(109580,10,'E09.22 ','Drug or chemical induced diabetes mellitus with diabetic chronic kidney disease','Y','0000-00-00 00:00:00'),(109579,10,'E09.21 ','Drug or chemical induced diabetes mellitus with diabetic nephropathy','Y','0000-00-00 00:00:00'),(109578,10,'E09.11 ','Drug or chemical induced diabetes mellitus with ketoacidosis with coma','Y','0000-00-00 00:00:00'),(109577,10,'E09.10 ','Drug or chemical induced diabetes mellitus with ketoacidosis without coma','Y','0000-00-00 00:00:00'),(109576,10,'E09.01 ','Drug or chemical induced diabetes mellitus with hyperosmolarity with coma','Y','0000-00-00 00:00:00'),(109575,10,'E09.00 ','Drug or chemical induced diabetes mellitus with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC)','Y','0000-00-00 00:00:00'),(109574,10,'E08.9 ','Diabetes mellitus due to underlying condition without complications','Y','0000-00-00 00:00:00'),(109573,10,'E08.8 ','Diabetes mellitus due to underlying condition with unspecified complications','Y','0000-00-00 00:00:00'),(109572,10,'E08.69 ','Diabetes mellitus due to underlying condition with other specified complication','Y','0000-00-00 00:00:00'),(109571,10,'E08.65 ','Diabetes mellitus due to underlying condition with hyperglycemia','Y','0000-00-00 00:00:00'),(109570,10,'E08.649 ','Diabetes mellitus due to underlying condition with hypoglycemia without coma','Y','0000-00-00 00:00:00'),(109569,10,'E08.641 ','Diabetes mellitus due to underlying condition with hypoglycemia with coma','Y','0000-00-00 00:00:00'),(109568,10,'E08.638 ','Diabetes mellitus due to underlying condition with other oral complications','Y','0000-00-00 00:00:00'),(109567,10,'E08.630 ','Diabetes mellitus due to underlying condition with periodontal disease','Y','0000-00-00 00:00:00'),(109566,10,'E08.628 ','Diabetes mellitus due to underlying condition with other skin complications','Y','0000-00-00 00:00:00'),(109565,10,'E08.622 ','Diabetes mellitus due to underlying condition with other skin ulcer','Y','0000-00-00 00:00:00'),(109564,10,'E08.621 ','Diabetes mellitus due to underlying condition with foot ulcer','Y','0000-00-00 00:00:00'),(109563,10,'E08.620 ','Diabetes mellitus due to underlying condition with diabetic dermatitis','Y','0000-00-00 00:00:00'),(109562,10,'E08.618 ','Diabetes mellitus due to underlying condition with other diabetic arthropathy','Y','0000-00-00 00:00:00'),(109561,10,'E08.610 ','Diabetes mellitus due to underlying condition with diabetic neuropathic arthropathy','Y','0000-00-00 00:00:00'),(109560,10,'E08.59 ','Diabetes mellitus due to underlying condition with other circulatory complications','Y','0000-00-00 00:00:00'),(109559,10,'E08.52 ','Diabetes mellitus due to underlying condition with diabetic peripheral angiopathy with gangrene','Y','0000-00-00 00:00:00'),(109558,10,'E08.51 ','Diabetes mellitus due to underlying condition with diabetic peripheral angiopathy without gangrene','Y','0000-00-00 00:00:00'),(109557,10,'E08.49 ','Diabetes mellitus due to underlying condition with other diabetic neurological complication','Y','0000-00-00 00:00:00'),(109556,10,'E08.44 ','Diabetes mellitus due to underlying condition with diabetic amyotrophy','Y','0000-00-00 00:00:00'),(109555,10,'E08.43 ','Diabetes mellitus due to underlying condition with diabetic autonomic (poly)neuropathy','Y','0000-00-00 00:00:00'),(109554,10,'E08.42 ','Diabetes mellitus due to underlying condition with diabetic polyneuropathy','Y','0000-00-00 00:00:00'),(109553,10,'E08.41 ','Diabetes mellitus due to underlying condition with diabetic mononeuropathy','Y','0000-00-00 00:00:00'),(109552,10,'E08.40 ','Diabetes mellitus due to underlying condition with diabetic neuropathy, unspecified','Y','0000-00-00 00:00:00'),(109551,10,'E08.39 ','Diabetes mellitus due to underlying condition with other diabetic ophthalmic complication','Y','0000-00-00 00:00:00'),(109550,10,'E08.37X9 ','Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment, unspecified eye','Y','0000-00-00 00:00:00'),(109549,10,'E08.37X3 ','Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment, bilateral','Y','0000-00-00 00:00:00'),(109548,10,'E08.37X2 ','Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment, left eye','Y','0000-00-00 00:00:00'),(109547,10,'E08.37X1 ','Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment, right eye','Y','0000-00-00 00:00:00'),(109546,10,'E08.36 ','Diabetes mellitus due to underlying condition with diabetic cataract','Y','0000-00-00 00:00:00'),(109545,10,'E08.3599 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109544,10,'E08.3593 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109543,10,'E08.3592 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109542,10,'E08.3591 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109541,10,'E08.3559 ','Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy, unspecified eye','Y','0000-00-00 00:00:00'),(109540,10,'E08.3553 ','Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy, bilateral','Y','0000-00-00 00:00:00'),(109539,10,'E08.3552 ','Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy, left eye','Y','0000-00-00 00:00:00'),(109538,10,'E08.3551 ','Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy, right eye','Y','0000-00-00 00:00:00'),(109537,10,'E08.3549 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye','Y','0000-00-00 00:00:00'),(109536,10,'E08.3543 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral','Y','0000-00-00 00:00:00'),(109535,10,'E08.3542 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye','Y','0000-00-00 00:00:00'),(109534,10,'E08.3541 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye','Y','0000-00-00 00:00:00'),(109533,10,'E08.3539 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye','Y','0000-00-00 00:00:00'),(109532,10,'E08.3533 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral','Y','0000-00-00 00:00:00'),(109531,10,'E08.3532 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye','Y','0000-00-00 00:00:00'),(109530,10,'E08.3531 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye','Y','0000-00-00 00:00:00'),(109529,10,'E08.3529 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye','Y','0000-00-00 00:00:00'),(109528,10,'E08.3523 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral','Y','0000-00-00 00:00:00'),(109527,10,'E08.3522 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye','Y','0000-00-00 00:00:00'),(109526,10,'E08.3521 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye','Y','0000-00-00 00:00:00'),(109525,10,'E08.3519 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109524,10,'E08.3513 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109523,10,'E08.3512 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109522,10,'E08.3511 ','Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109521,10,'E08.3499 ','Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109520,10,'E08.3493 ','Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109519,10,'E08.3492 ','Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109518,10,'E08.3491 ','Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109517,10,'E08.3419 ','Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109516,10,'E08.3413 ','Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109515,10,'E08.3412 ','Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109514,10,'E08.3411 ','Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109513,10,'E08.3399 ','Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109512,10,'E08.3393 ','Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109511,10,'E08.3392 ','Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109510,10,'E08.3391 ','Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109509,10,'E08.3319 ','Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109508,10,'E08.3313 ','Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109507,10,'E08.3312 ','Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109506,10,'E08.3311 ','Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109505,10,'E08.3299 ','Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109504,10,'E08.3293 ','Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema, bilateral','Y','0000-00-00 00:00:00'),(109503,10,'E08.3292 ','Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema, left eye','Y','0000-00-00 00:00:00'),(109502,10,'E08.3291 ','Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema, right eye','Y','0000-00-00 00:00:00'),(109501,10,'E08.3219 ','Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye','Y','0000-00-00 00:00:00'),(109500,10,'E08.3213 ','Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema, bilateral','Y','0000-00-00 00:00:00'),(109499,10,'E08.3212 ','Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema, left eye','Y','0000-00-00 00:00:00'),(109498,10,'E08.3211 ','Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema, right eye','Y','0000-00-00 00:00:00'),(109497,10,'E08.319 ','Diabetes mellitus due to underlying condition with unspecified diabetic retinopathy without macular edema','Y','0000-00-00 00:00:00'),(109496,10,'E08.311 ','Diabetes mellitus due to underlying condition with unspecified diabetic retinopathy with macular edema','Y','0000-00-00 00:00:00'),(109495,10,'E08.29 ','Diabetes mellitus due to underlying condition with other diabetic kidney complication','Y','0000-00-00 00:00:00'),(109494,10,'E08.22 ','Diabetes mellitus due to underlying condition with diabetic chronic kidney disease','Y','0000-00-00 00:00:00'),(109493,10,'E08.21 ','Diabetes mellitus due to underlying condition with diabetic nephropathy','Y','0000-00-00 00:00:00'),(109492,10,'E08.11 ','Diabetes mellitus due to underlying condition with ketoacidosis with coma','Y','0000-00-00 00:00:00'),(109491,10,'E08.10 ','Diabetes mellitus due to underlying condition with ketoacidosis without coma','Y','0000-00-00 00:00:00'),(109490,10,'E08.01 ','Diabetes mellitus due to underlying condition with hyperosmolarity with coma','Y','0000-00-00 00:00:00'),(109489,10,'E08.00 ','Diabetes mellitus due to underlying condition with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC)','Y','0000-00-00 00:00:00'),(109488,10,'E07.9 ','Disorder of thyroid, unspecified','Y','0000-00-00 00:00:00'),(109487,10,'E07.89 ','Other specified disorders of thyroid','Y','0000-00-00 00:00:00'),(109486,10,'E07.81 ','Sick-euthyroid syndrome','Y','0000-00-00 00:00:00'),(109485,10,'E07.1 ','Dyshormogenetic goiter','Y','0000-00-00 00:00:00'),(109484,10,'E07.0 ','Hypersecretion of calcitonin','Y','0000-00-00 00:00:00'),(109483,10,'E06.9 ','Thyroiditis, unspecified','Y','0000-00-00 00:00:00'),(109482,10,'E06.5 ','Other chronic thyroiditis','Y','0000-00-00 00:00:00'),(109481,10,'E06.4 ','Drug-induced thyroiditis','Y','0000-00-00 00:00:00'),(109480,10,'E06.3 ','Autoimmune thyroiditis','Y','0000-00-00 00:00:00'),(109479,10,'E06.2 ','Chronic thyroiditis with transient thyrotoxicosis','Y','0000-00-00 00:00:00'),(109478,10,'E06.1 ','Subacute thyroiditis','Y','0000-00-00 00:00:00'),(109477,10,'E06.0 ','Acute thyroiditis','Y','0000-00-00 00:00:00'),(109476,10,'E05.91 ','Thyrotoxicosis, unspecified with thyrotoxic crisis or storm','Y','0000-00-00 00:00:00'),(109475,10,'E05.90 ','Thyrotoxicosis, unspecified without thyrotoxic crisis or storm','Y','0000-00-00 00:00:00'),(109474,10,'E05.81 ','Other thyrotoxicosis with thyrotoxic crisis or storm','Y','0000-00-00 00:00:00'),(109473,10,'E05.80 ','Other thyrotoxicosis without thyrotoxic crisis or storm','Y','0000-00-00 00:00:00'),(109472,10,'E05.41 ','Thyrotoxicosis factitia with thyrotoxic crisis or storm','Y','0000-00-00 00:00:00'),(109471,10,'E05.40 ','Thyrotoxicosis factitia without thyrotoxic crisis or storm','Y','0000-00-00 00:00:00'),(109470,10,'E05.31 ','Thyrotoxicosis from ectopic thyroid tissue with thyrotoxic crisis or storm','Y','0000-00-00 00:00:00'),(109469,10,'E05.30 ','Thyrotoxicosis from ectopic thyroid tissue without thyrotoxic crisis or storm','Y','0000-00-00 00:00:00'),(109468,10,'E05.21 ','Thyrotoxicosis with toxic multinodular goiter with thyrotoxic crisis or storm','Y','0000-00-00 00:00:00'),(109467,10,'E05.20 ','Thyrotoxicosis with toxic multinodular goiter without thyrotoxic crisis or storm','Y','0000-00-00 00:00:00'),(109466,10,'E05.11 ','Thyrotoxicosis with toxic single thyroid nodule with thyrotoxic crisis or storm','Y','0000-00-00 00:00:00'),(109465,10,'E05.10 ','Thyrotoxicosis with toxic single thyroid nodule without thyrotoxic crisis or storm','Y','0000-00-00 00:00:00'),(109464,10,'E05.01 ','Thyrotoxicosis with diffuse goiter with thyrotoxic crisis or storm','Y','0000-00-00 00:00:00'),(109463,10,'E05.00 ','Thyrotoxicosis with diffuse goiter without thyrotoxic crisis or storm','Y','0000-00-00 00:00:00'),(109462,10,'E04.9 ','Nontoxic goiter, unspecified','Y','0000-00-00 00:00:00'),(109461,10,'E04.8 ','Other specified nontoxic goiter','Y','0000-00-00 00:00:00'),(109460,10,'E04.2 ','Nontoxic multinodular goiter','Y','0000-00-00 00:00:00'),(109459,10,'E04.1 ','Nontoxic single thyroid nodule','Y','0000-00-00 00:00:00'),(109458,10,'E04.0 ','Nontoxic diffuse goiter','Y','0000-00-00 00:00:00'),(109457,10,'E03.9 ','Hypothyroidism, unspecified','Y','0000-00-00 00:00:00'),(109456,10,'E03.8 ','Other specified hypothyroidism','Y','0000-00-00 00:00:00'),(109455,10,'E03.5 ','Myxedema coma','Y','0000-00-00 00:00:00'),(109454,10,'E03.4 ','Atrophy of thyroid (acquired)','Y','0000-00-00 00:00:00'),(109453,10,'E03.3 ','Postinfectious hypothyroidism','Y','0000-00-00 00:00:00'),(109452,10,'E03.2 ','Hypothyroidism due to medicaments and other exogenous substances','Y','0000-00-00 00:00:00'),(109451,10,'E03.1 ','Congenital hypothyroidism without goiter','Y','0000-00-00 00:00:00'),(109450,10,'E03.0 ','Congenital hypothyroidism with diffuse goiter','Y','0000-00-00 00:00:00'),(109449,10,'E02','Subclinical iodine-deficiency hypothyroidism','Y','0000-00-00 00:00:00'),(109448,10,'E01.8 ','Other iodine-deficiency related thyroid disorders and allied conditions','Y','0000-00-00 00:00:00'),(109447,10,'E01.2 ','Iodine-deficiency related (endemic) goiter, unspecified','Y','0000-00-00 00:00:00'),(109446,10,'E01.1 ','Iodine-deficiency related multinodular (endemic) goiter','Y','0000-00-00 00:00:00'),(109445,10,'E01.0 ','Iodine-deficiency related diffuse (endemic) goiter','Y','0000-00-00 00:00:00'),(109444,10,'E00.9 ','Congenital iodine-deficiency syndrome, unspecified','Y','0000-00-00 00:00:00'),(109443,10,'E00.2 ','Congenital iodine-deficiency syndrome, mixed type','Y','0000-00-00 00:00:00'),(109442,10,'E00.1 ','Congenital iodine-deficiency syndrome, myxedematous type','Y','0000-00-00 00:00:00'),(109441,10,'E00.0 ','Congenital iodine-deficiency syndrome, neurological type','Y','0000-00-00 00:00:00'),(109440,10,'D89.9 ','Disorder involving the immune mechanism, unspecified','Y','0000-00-00 00:00:00'),(109439,10,'D89.89 ','Other specified disorders involving the immune mechanism, not elsewhere classified','Y','0000-00-00 00:00:00'),(109438,10,'D89.84 ','IgG4-related disease','Y','0000-00-00 00:00:00'),(109437,10,'D89.839 ','Cytokine release syndrome, grade unspecified','Y','0000-00-00 00:00:00'),(109436,10,'D89.835 ','Cytokine release syndrome, grade 5','Y','0000-00-00 00:00:00'),(109435,10,'D89.834 ','Cytokine release syndrome, grade 4','Y','0000-00-00 00:00:00'),(109434,10,'D89.833 ','Cytokine release syndrome, grade 3','Y','0000-00-00 00:00:00'),(109432,10,'D89.831 ','Cytokine release syndrome, grade 1','Y','0000-00-00 00:00:00'),(109433,10,'D89.832 ','Cytokine release syndrome, grade 2','Y','0000-00-00 00:00:00'),(109431,10,'D89.82 ','Autoimmune lymphoproliferative syndrome [ALPS]','Y','0000-00-00 00:00:00'),(109430,10,'D89.813 ','Graft-versus-host disease, unspecified','Y','0000-00-00 00:00:00'),(109429,10,'D89.812 ','Acute on chronic graft-versus-host disease','Y','0000-00-00 00:00:00'),(109428,10,'D89.811 ','Chronic graft-versus-host disease','Y','0000-00-00 00:00:00'),(109427,10,'D89.810 ','Acute graft-versus-host disease','Y','0000-00-00 00:00:00'),(109426,10,'D89.49 ','Other mast cell activation disorder','Y','0000-00-00 00:00:00'),(109424,10,'D89.43 ','Secondary mast cell activation','Y','0000-00-00 00:00:00'),(109425,10,'D89.44 ','Hereditary alpha tryptasemia','Y','0000-00-00 00:00:00'),(109423,10,'D89.42 ','Idiopathic mast cell activation syndrome','Y','0000-00-00 00:00:00'),(109422,10,'D89.41 ','Monoclonal mast cell activation syndrome','Y','0000-00-00 00:00:00'),(109420,10,'D89.3 ','Immune reconstitution syndrome','Y','0000-00-00 00:00:00'),(109421,10,'D89.40 ','Mast cell activation, unspecified','Y','0000-00-00 00:00:00'),(109419,10,'D89.2 ','Hypergammaglobulinemia, unspecified','Y','0000-00-00 00:00:00'),(109417,10,'D89.0 ','Polyclonal hypergammaglobulinemia','Y','0000-00-00 00:00:00'),(109418,10,'D89.1 ','Cryoglobulinemia','Y','0000-00-00 00:00:00'),(109415,10,'D86.89 ','Sarcoidosis of other sites','Y','0000-00-00 00:00:00'),(109416,10,'D86.9 ','Sarcoidosis, unspecified','Y','0000-00-00 00:00:00'),(109413,10,'D86.86 ','Sarcoid arthropathy','Y','0000-00-00 00:00:00'),(109414,10,'D86.87 ','Sarcoid myositis','Y','0000-00-00 00:00:00'),(109411,10,'D86.84 ','Sarcoid pyelonephritis','Y','0000-00-00 00:00:00'),(109412,10,'D86.85 ','Sarcoid myocarditis','Y','0000-00-00 00:00:00'),(109410,10,'D86.83 ','Sarcoid iridocyclitis','Y','0000-00-00 00:00:00'),(109408,10,'D86.81 ','Sarcoid meningitis','Y','0000-00-00 00:00:00'),(109409,10,'D86.82 ','Multiple cranial nerve palsies in sarcoidosis','Y','0000-00-00 00:00:00'),(109407,10,'D86.3 ','Sarcoidosis of skin','Y','0000-00-00 00:00:00'),(109406,10,'D86.2 ','Sarcoidosis of lung with sarcoidosis of lymph nodes','Y','0000-00-00 00:00:00'),(109404,10,'D86.0 ','Sarcoidosis of lung','Y','0000-00-00 00:00:00'),(109405,10,'D86.1 ','Sarcoidosis of lymph nodes','Y','0000-00-00 00:00:00'),(109403,10,'D84.9 ','Immunodeficiency, unspecified','Y','0000-00-00 00:00:00'),(109402,10,'D84.89 ','Other immunodeficiencies','Y','0000-00-00 00:00:00'),(109400,10,'D84.821 ','Immunodeficiency due to drugs','Y','0000-00-00 00:00:00'),(109401,10,'D84.822 ','Immunodeficiency due to external causes','Y','0000-00-00 00:00:00'),(109399,10,'D84.81 ','Immunodeficiency due to conditions classified elsewhere','Y','0000-00-00 00:00:00'),(109398,10,'D84.1 ','Defects in the complement system','Y','0000-00-00 00:00:00'),(109397,10,'D84.0 ','Lymphocyte function antigen-1 [LFA-1] defect','Y','0000-00-00 00:00:00'),(109396,10,'D83.9 ','Common variable immunodeficiency, unspecified','Y','0000-00-00 00:00:00'),(109395,10,'D83.8 ','Other common variable immunodeficiencies','Y','0000-00-00 00:00:00'),(109394,10,'D83.2 ','Common variable immunodeficiency with autoantibodies to B- or T-cells','Y','0000-00-00 00:00:00'),(109393,10,'D83.1 ','Common variable immunodeficiency with predominant immunoregulatory T-cell disorders','Y','0000-00-00 00:00:00'),(109392,10,'D83.0 ','Common variable immunodeficiency with predominant abnormalities of B-cell numbers and function','Y','0000-00-00 00:00:00'),(109391,10,'D82.9 ','Immunodeficiency associated with major defect, unspecified','Y','0000-00-00 00:00:00'),(109390,10,'D82.8 ','Immunodeficiency associated with other specified major defects','Y','0000-00-00 00:00:00'),(109389,10,'D82.4 ','Hyperimmunoglobulin E [IgE] syndrome','Y','0000-00-00 00:00:00'),(109388,10,'D82.3 ','Immunodeficiency following hereditary defective response to Epstein-Barr virus','Y','0000-00-00 00:00:00'),(109386,10,'D82.1 ','Di George\'s syndrome','Y','0000-00-00 00:00:00'),(109387,10,'D82.2 ','Immunodeficiency with short-limbed stature','Y','0000-00-00 00:00:00'),(109385,10,'D82.0 ','Wiskott-Aldrich syndrome','Y','0000-00-00 00:00:00'),(109383,10,'D81.89 ','Other combined immunodeficiencies','Y','0000-00-00 00:00:00'),(109384,10,'D81.9 ','Combined immunodeficiency, unspecified','Y','0000-00-00 00:00:00'),(109382,10,'D81.82 ','Activated Phosphoinositide 3-kinase Delta Syndrome [APDS]','Y','0000-00-00 00:00:00'),(109381,10,'D81.819 ','Biotin-dependent carboxylase deficiency, unspecified','Y','0000-00-00 00:00:00'),(109380,10,'D81.818 ','Other biotin-dependent carboxylase deficiency','Y','0000-00-00 00:00:00'),(109379,10,'D81.810 ','Biotinidase deficiency','Y','0000-00-00 00:00:00'),(109378,10,'D81.7 ','Major histocompatibility complex class II deficiency','Y','0000-00-00 00:00:00'),(109377,10,'D81.6 ','Major histocompatibility complex class I deficiency','Y','0000-00-00 00:00:00'),(109375,10,'D81.4 ','Nezelof\'s syndrome','Y','0000-00-00 00:00:00'),(109376,10,'D81.5 ','Purine nucleoside phosphorylase [PNP] deficiency','Y','0000-00-00 00:00:00'),(109374,10,'D81.39 ','Other adenosine deaminase deficiency','Y','0000-00-00 00:00:00'),(109373,10,'D81.32 ','Adenosine deaminase 2 deficiency','Y','0000-00-00 00:00:00'),(109372,10,'D81.31 ','Severe combined immunodeficiency due to adenosine deaminase deficiency','Y','0000-00-00 00:00:00'),(109371,10,'D81.30 ','Adenosine deaminase deficiency, unspecified','Y','0000-00-00 00:00:00'),(109370,10,'D81.2 ','Severe combined immunodeficiency [SCID] with low or normal B-cell numbers','Y','0000-00-00 00:00:00'),(109369,10,'D81.1 ','Severe combined immunodeficiency [SCID] with low T- and B-cell numbers','Y','0000-00-00 00:00:00'),(109368,10,'D81.0 ','Severe combined immunodeficiency [SCID] with reticular dysgenesis','Y','0000-00-00 00:00:00'),(109367,10,'D80.9 ','Immunodeficiency with predominantly antibody defects, unspecified','Y','0000-00-00 00:00:00'),(109366,10,'D80.8 ','Other immunodeficiencies with predominantly antibody defects','Y','0000-00-00 00:00:00'),(109365,10,'D80.7 ','Transient hypogammaglobulinemia of infancy','Y','0000-00-00 00:00:00'),(109364,10,'D80.6 ','Antibody deficiency with near-normal immunoglobulins or with hyperimmunoglobulinemia','Y','0000-00-00 00:00:00'),(109363,10,'D80.5 ','Immunodeficiency with increased immunoglobulin M [IgM]','Y','0000-00-00 00:00:00'),(109362,10,'D80.4 ','Selective deficiency of immunoglobulin M [IgM]','Y','0000-00-00 00:00:00'),(109361,10,'D80.3 ','Selective deficiency of immunoglobulin G [IgG] subclasses','Y','0000-00-00 00:00:00'),(109360,10,'D80.2 ','Selective deficiency of immunoglobulin A [IgA]','Y','0000-00-00 00:00:00'),(109359,10,'D80.1 ','Nonfamilial hypogammaglobulinemia','Y','0000-00-00 00:00:00'),(109358,10,'D80.0 ','Hereditary hypogammaglobulinemia','Y','0000-00-00 00:00:00'),(109357,10,'D78.89 ','Other postprocedural complications of the spleen','Y','0000-00-00 00:00:00'),(109356,10,'D78.81 ','Other intraoperative complications of the spleen','Y','0000-00-00 00:00:00'),(109355,10,'D78.34 ','Postprocedural seroma of the spleen following other procedure','Y','0000-00-00 00:00:00'),(109354,10,'D78.33 ','Postprocedural seroma of the spleen following a procedure on the spleen','Y','0000-00-00 00:00:00'),(109353,10,'D78.32 ','Postprocedural hematoma of the spleen following other procedure','Y','0000-00-00 00:00:00'),(109352,10,'D78.31 ','Postprocedural hematoma of the spleen following a procedure on the spleen','Y','0000-00-00 00:00:00'),(109351,10,'D78.22 ','Postprocedural hemorrhage of the spleen following other procedure','Y','0000-00-00 00:00:00'),(109350,10,'D78.21 ','Postprocedural hemorrhage of the spleen following a procedure on the spleen','Y','0000-00-00 00:00:00'),(109349,10,'D78.12 ','Accidental puncture and laceration of the spleen during other procedure','Y','0000-00-00 00:00:00'),(109348,10,'D78.11 ','Accidental puncture and laceration of the spleen during a procedure on the spleen','Y','0000-00-00 00:00:00'),(109347,10,'D78.02 ','Intraoperative hemorrhage and hematoma of the spleen complicating other procedure','Y','0000-00-00 00:00:00'),(109346,10,'D78.01 ','Intraoperative hemorrhage and hematoma of the spleen complicating a procedure on the spleen','Y','0000-00-00 00:00:00'),(109345,10,'D77','Other disorders of blood and blood-forming organs in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(109344,10,'D76.3 ','Other histiocytosis syndromes','Y','0000-00-00 00:00:00'),(109343,10,'D76.2 ','Hemophagocytic syndrome, infection-associated','Y','0000-00-00 00:00:00'),(109342,10,'D76.1 ','Hemophagocytic lymphohistiocytosis','Y','0000-00-00 00:00:00'),(109341,10,'D75.A ','Glucose-6-phosphate dehydrogenase (G6PD) deficiency without anemia','Y','0000-00-00 00:00:00'),(109340,10,'D75.9 ','Disease of blood and blood-forming organs, unspecified','Y','0000-00-00 00:00:00'),(109339,10,'D75.89 ','Other specified diseases of blood and blood-forming organs','Y','0000-00-00 00:00:00'),(109338,10,'D75.84 ','Other platelet-activating anti-PF4 disorders','Y','0000-00-00 00:00:00'),(109337,10,'D75.839 ','Thrombocytosis, unspecified','Y','0000-00-00 00:00:00'),(109336,10,'D75.838 ','Other thrombocytosis','Y','0000-00-00 00:00:00'),(109335,10,'D75.829 ','Heparin-induced thrombocytopenia, unspecified','Y','0000-00-00 00:00:00'),(109334,10,'D75.828 ','Other heparin-induced thrombocytopenia syndrome','Y','0000-00-00 00:00:00'),(109333,10,'D75.822 ','Immune-mediated heparin-induced thrombocytopenia','Y','0000-00-00 00:00:00'),(109331,10,'D75.81 ','Myelofibrosis','Y','0000-00-00 00:00:00'),(109332,10,'D75.821 ','Non-immune heparin-induced thrombocytopenia','Y','0000-00-00 00:00:00'),(109329,10,'D75.0 ','Familial erythrocytosis','Y','0000-00-00 00:00:00'),(109330,10,'D75.1 ','Secondary polycythemia','Y','0000-00-00 00:00:00'),(109328,10,'D74.9 ','Methemoglobinemia, unspecified','Y','0000-00-00 00:00:00'),(109326,10,'D74.0 ','Congenital methemoglobinemia','Y','0000-00-00 00:00:00'),(109327,10,'D74.8 ','Other methemoglobinemias','Y','0000-00-00 00:00:00'),(109325,10,'D73.9 ','Disease of spleen, unspecified','Y','0000-00-00 00:00:00'),(109323,10,'D73.81 ','Neutropenic splenomegaly','Y','0000-00-00 00:00:00'),(109324,10,'D73.89 ','Other diseases of spleen','Y','0000-00-00 00:00:00'),(109321,10,'D73.4 ','Cyst of spleen','Y','0000-00-00 00:00:00'),(109322,10,'D73.5 ','Infarction of spleen','Y','0000-00-00 00:00:00'),(109319,10,'D73.2 ','Chronic congestive splenomegaly','Y','0000-00-00 00:00:00'),(109320,10,'D73.3 ','Abscess of spleen','Y','0000-00-00 00:00:00'),(109317,10,'D73.0 ','Hyposplenism','Y','0000-00-00 00:00:00'),(109318,10,'D73.1 ','Hypersplenism','Y','0000-00-00 00:00:00'),(109316,10,'D72.9 ','Disorder of white blood cells, unspecified','Y','0000-00-00 00:00:00'),(109315,10,'D72.89 ','Other specified disorders of white blood cells','Y','0000-00-00 00:00:00'),(109314,10,'D72.829 ','Elevated white blood cell count, unspecified','Y','0000-00-00 00:00:00'),(109312,10,'D72.825 ','Bandemia','Y','0000-00-00 00:00:00'),(109313,10,'D72.828 ','Other elevated white blood cell count','Y','0000-00-00 00:00:00'),(109311,10,'D72.824 ','Basophilia','Y','0000-00-00 00:00:00'),(109309,10,'D72.822 ','Plasmacytosis','Y','0000-00-00 00:00:00'),(109310,10,'D72.823 ','Leukemoid reaction','Y','0000-00-00 00:00:00'),(109308,10,'D72.821 ','Monocytosis (symptomatic)','Y','0000-00-00 00:00:00'),(109307,10,'D72.820 ','Lymphocytosis (symptomatic)','Y','0000-00-00 00:00:00'),(109306,10,'D72.819 ','Decreased white blood cell count, unspecified','Y','0000-00-00 00:00:00'),(109305,10,'D72.818 ','Other decreased white blood cell count','Y','0000-00-00 00:00:00'),(109303,10,'D72.19 ','Other eosinophilia','Y','0000-00-00 00:00:00'),(109304,10,'D72.810 ','Lymphocytopenia','Y','0000-00-00 00:00:00'),(109302,10,'D72.18 ','Eosinophilia in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(109301,10,'D72.12 ','Drug rash with eosinophilia and systemic symptoms syndrome','Y','0000-00-00 00:00:00'),(109300,10,'D72.119 ','Hypereosinophilic syndrome [HES], unspecified','Y','0000-00-00 00:00:00'),(109299,10,'D72.118 ','Other hypereosinophilic syndrome','Y','0000-00-00 00:00:00'),(109298,10,'D72.111 ','Lymphocytic Variant Hypereosinophilic Syndrome [LHES]','Y','0000-00-00 00:00:00'),(109297,10,'D72.110 ','Idiopathic hypereosinophilic syndrome [IHES]','Y','0000-00-00 00:00:00'),(109296,10,'D72.10 ','Eosinophilia, unspecified','Y','0000-00-00 00:00:00'),(109295,10,'D72.0 ','Genetic anomalies of leukocytes','Y','0000-00-00 00:00:00'),(109294,10,'D71','Functional disorders of polymorphonuclear neutrophils','Y','0000-00-00 00:00:00'),(109293,10,'D70.9 ','Neutropenia, unspecified','Y','0000-00-00 00:00:00'),(109291,10,'D70.4 ','Cyclic neutropenia','Y','0000-00-00 00:00:00'),(109292,10,'D70.8 ','Other neutropenia','Y','0000-00-00 00:00:00'),(109290,10,'D70.3 ','Neutropenia due to infection','Y','0000-00-00 00:00:00'),(109289,10,'D70.2 ','Other drug-induced agranulocytosis','Y','0000-00-00 00:00:00'),(109287,10,'D70.0 ','Congenital agranulocytosis','Y','0000-00-00 00:00:00'),(109288,10,'D70.1 ','Agranulocytosis secondary to cancer chemotherapy','Y','0000-00-00 00:00:00'),(109286,10,'D69.9 ','Hemorrhagic condition, unspecified','Y','0000-00-00 00:00:00'),(109285,10,'D69.8 ','Other specified hemorrhagic conditions','Y','0000-00-00 00:00:00'),(109284,10,'D69.6 ','Thrombocytopenia, unspecified','Y','0000-00-00 00:00:00'),(109282,10,'D69.51 ','Posttransfusion purpura','Y','0000-00-00 00:00:00'),(109283,10,'D69.59 ','Other secondary thrombocytopenia','Y','0000-00-00 00:00:00'),(109281,10,'D69.49 ','Other primary thrombocytopenia','Y','0000-00-00 00:00:00'),(109279,10,'D69.41 ','Evans syndrome','Y','0000-00-00 00:00:00'),(109280,10,'D69.42 ','Congenital and hereditary thrombocytopenia purpura','Y','0000-00-00 00:00:00'),(109278,10,'D69.3 ','Immune thrombocytopenic purpura','Y','0000-00-00 00:00:00'),(109277,10,'D69.2 ','Other nonthrombocytopenic purpura','Y','0000-00-00 00:00:00'),(109276,10,'D69.1 ','Qualitative platelet defects','Y','0000-00-00 00:00:00'),(109275,10,'D69.0 ','Allergic purpura','Y','0000-00-00 00:00:00'),(109274,10,'D68.9 ','Coagulation defect, unspecified','Y','0000-00-00 00:00:00'),(109272,10,'D68.69 ','Other thrombophilia','Y','0000-00-00 00:00:00'),(109273,10,'D68.8 ','Other specified coagulation defects','Y','0000-00-00 00:00:00'),(109271,10,'D68.62 ','Lupus anticoagulant syndrome','Y','0000-00-00 00:00:00'),(109270,10,'D68.61 ','Antiphospholipid syndrome','Y','0000-00-00 00:00:00'),(109269,10,'D68.59 ','Other primary thrombophilia','Y','0000-00-00 00:00:00'),(109268,10,'D68.52 ','Prothrombin gene mutation','Y','0000-00-00 00:00:00'),(109267,10,'D68.51 ','Activated protein C resistance','Y','0000-00-00 00:00:00'),(109266,10,'D68.4 ','Acquired coagulation factor deficiency','Y','0000-00-00 00:00:00'),(109265,10,'D68.32 ','Hemorrhagic disorder due to extrinsic circulating anticoagulants','Y','0000-00-00 00:00:00'),(109264,10,'D68.318 ','Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors','Y','0000-00-00 00:00:00'),(109263,10,'D68.312 ','Antiphospholipid antibody with hemorrhagic disorder','Y','0000-00-00 00:00:00'),(109262,10,'D68.311 ','Acquired hemophilia','Y','0000-00-00 00:00:00'),(109261,10,'D68.2 ','Hereditary deficiency of other clotting factors','Y','0000-00-00 00:00:00'),(109260,10,'D68.1 ','Hereditary factor XI deficiency','Y','0000-00-00 00:00:00'),(109259,10,'D68.09 ','Other von Willebrand disease','Y','0000-00-00 00:00:00'),(109258,10,'D68.04 ','Acquired von Willebrand disease','Y','0000-00-00 00:00:00'),(109257,10,'D68.03 ','Von Willebrand disease, type 3','Y','0000-00-00 00:00:00'),(109256,10,'D68.029 ','Von Willebrand disease, type 2, unspecified','Y','0000-00-00 00:00:00'),(109255,10,'D68.023 ','Von Willebrand disease, type 2N','Y','0000-00-00 00:00:00'),(109254,10,'D68.022 ','Von Willebrand disease, type 2M','Y','0000-00-00 00:00:00'),(109253,10,'D68.021 ','Von Willebrand disease, type 2B','Y','0000-00-00 00:00:00'),(109252,10,'D68.020 ','Von Willebrand disease, type 2A','Y','0000-00-00 00:00:00'),(109251,10,'D68.01 ','Von Willebrand disease, type 1','Y','0000-00-00 00:00:00'),(109250,10,'D68.00 ','Von Willebrand disease, unspecified','Y','0000-00-00 00:00:00'),(109249,10,'D67','Hereditary factor IX deficiency','Y','0000-00-00 00:00:00'),(109248,10,'D66','Hereditary factor VIII deficiency','Y','0000-00-00 00:00:00'),(109247,10,'D65','Disseminated intravascular coagulation [defibrination syndrome]','Y','0000-00-00 00:00:00'),(109246,10,'D64.9 ','Anemia, unspecified','Y','0000-00-00 00:00:00'),(109245,10,'D64.89 ','Other specified anemias','Y','0000-00-00 00:00:00'),(109244,10,'D64.81 ','Anemia due to antineoplastic chemotherapy','Y','0000-00-00 00:00:00'),(109243,10,'D64.4 ','Congenital dyserythropoietic anemia','Y','0000-00-00 00:00:00'),(109242,10,'D64.3 ','Other sideroblastic anemias','Y','0000-00-00 00:00:00'),(109241,10,'D64.2 ','Secondary sideroblastic anemia due to drugs and toxins','Y','0000-00-00 00:00:00'),(109240,10,'D64.1 ','Secondary sideroblastic anemia due to disease','Y','0000-00-00 00:00:00'),(109239,10,'D64.0 ','Hereditary sideroblastic anemia','Y','0000-00-00 00:00:00'),(109238,10,'D63.8 ','Anemia in other chronic diseases classified elsewhere','Y','0000-00-00 00:00:00'),(109237,10,'D63.1 ','Anemia in chronic kidney disease','Y','0000-00-00 00:00:00'),(109236,10,'D63.0 ','Anemia in neoplastic disease','Y','0000-00-00 00:00:00'),(109235,10,'D62','Acute posthemorrhagic anemia','Y','0000-00-00 00:00:00'),(109234,10,'D61.9 ','Aplastic anemia, unspecified','Y','0000-00-00 00:00:00'),(109233,10,'D61.89 ','Other specified aplastic anemias and other bone marrow failure syndromes','Y','0000-00-00 00:00:00'),(109232,10,'D61.82 ','Myelophthisis','Y','0000-00-00 00:00:00'),(109231,10,'D61.818 ','Other pancytopenia','Y','0000-00-00 00:00:00'),(109230,10,'D61.811 ','Other drug-induced pancytopenia','Y','0000-00-00 00:00:00'),(109229,10,'D61.810 ','Antineoplastic chemotherapy induced pancytopenia','Y','0000-00-00 00:00:00'),(109228,10,'D61.3 ','Idiopathic aplastic anemia','Y','0000-00-00 00:00:00'),(109227,10,'D61.2 ','Aplastic anemia due to other external agents','Y','0000-00-00 00:00:00'),(109226,10,'D61.1 ','Drug-induced aplastic anemia','Y','0000-00-00 00:00:00'),(109225,10,'D61.09 ','Other constitutional aplastic anemia','Y','0000-00-00 00:00:00'),(109224,10,'D61.02 ','Shwachman-Diamond syndrome','Y','0000-00-00 00:00:00'),(109223,10,'D61.01 ','Constitutional (pure) red blood cell aplasia','Y','0000-00-00 00:00:00'),(109222,10,'D60.9 ','Acquired pure red cell aplasia, unspecified','Y','0000-00-00 00:00:00'),(109221,10,'D60.8 ','Other acquired pure red cell aplasias','Y','0000-00-00 00:00:00'),(109220,10,'D60.1 ','Transient acquired pure red cell aplasia','Y','0000-00-00 00:00:00'),(109219,10,'D60.0 ','Chronic acquired pure red cell aplasia','Y','0000-00-00 00:00:00'),(109218,10,'D59.9 ','Acquired hemolytic anemia, unspecified','Y','0000-00-00 00:00:00'),(109217,10,'D59.8 ','Other acquired hemolytic anemias','Y','0000-00-00 00:00:00'),(109216,10,'D59.6 ','Hemoglobinuria due to hemolysis from other external causes','Y','0000-00-00 00:00:00'),(109215,10,'D59.5 ','Paroxysmal nocturnal hemoglobinuria [Marchiafava-Micheli]','Y','0000-00-00 00:00:00'),(109214,10,'D59.4 ','Other nonautoimmune hemolytic anemias','Y','0000-00-00 00:00:00'),(109213,10,'D59.39 ','Other hemolytic-uremic syndrome','Y','0000-00-00 00:00:00'),(109212,10,'D59.32 ','Hereditary hemolytic-uremic syndrome','Y','0000-00-00 00:00:00'),(109211,10,'D59.31 ','Infection-associated hemolytic-uremic syndrome','Y','0000-00-00 00:00:00'),(109210,10,'D59.30 ','Hemolytic-uremic syndrome, unspecified','Y','0000-00-00 00:00:00'),(109209,10,'D59.2 ','Drug-induced nonautoimmune hemolytic anemia','Y','0000-00-00 00:00:00'),(109208,10,'D59.19 ','Other autoimmune hemolytic anemia','Y','0000-00-00 00:00:00'),(109207,10,'D59.13 ','Mixed type autoimmune hemolytic anemia','Y','0000-00-00 00:00:00'),(109206,10,'D59.12 ','Cold autoimmune hemolytic anemia','Y','0000-00-00 00:00:00'),(109205,10,'D59.11 ','Warm autoimmune hemolytic anemia','Y','0000-00-00 00:00:00'),(109204,10,'D59.10 ','Autoimmune hemolytic anemia, unspecified','Y','0000-00-00 00:00:00'),(109203,10,'D59.0 ','Drug-induced autoimmune hemolytic anemia','Y','0000-00-00 00:00:00'),(109202,10,'D58.9 ','Hereditary hemolytic anemia, unspecified','Y','0000-00-00 00:00:00'),(109201,10,'D58.8 ','Other specified hereditary hemolytic anemias','Y','0000-00-00 00:00:00'),(109200,10,'D58.2 ','Other hemoglobinopathies','Y','0000-00-00 00:00:00'),(109199,10,'D58.1 ','Hereditary elliptocytosis','Y','0000-00-00 00:00:00'),(109198,10,'D58.0 ','Hereditary spherocytosis','Y','0000-00-00 00:00:00'),(109197,10,'D57.819 ','Other sickle-cell disorders with crisis, unspecified','Y','0000-00-00 00:00:00'),(109196,10,'D57.818 ','Other sickle-cell disorders with crisis with other specified complication','Y','0000-00-00 00:00:00'),(109195,10,'D57.814 ','Other sickle-cell disorders with dactylitis','Y','0000-00-00 00:00:00'),(109194,10,'D57.813 ','Other sickle-cell disorders with cerebral vascular involvement','Y','0000-00-00 00:00:00'),(109193,10,'D57.812 ','Other sickle-cell disorders with splenic sequestration','Y','0000-00-00 00:00:00'),(109192,10,'D57.811 ','Other sickle-cell disorders with acute chest syndrome','Y','0000-00-00 00:00:00'),(109191,10,'D57.80 ','Other sickle-cell disorders without crisis','Y','0000-00-00 00:00:00'),(109190,10,'D57.459 ','Sickle-cell thalassemia beta plus with crisis, unspecified','Y','0000-00-00 00:00:00'),(109189,10,'D57.458 ','Sickle-cell thalassemia beta plus with crisis with other specified complication','Y','0000-00-00 00:00:00'),(109188,10,'D57.454 ','Sickle-cell thalassemia beta plus with dactylitis','Y','0000-00-00 00:00:00'),(109187,10,'D57.453 ','Sickle-cell thalassemia beta plus with cerebral vascular involvement','Y','0000-00-00 00:00:00'),(109186,10,'D57.452 ','Sickle-cell thalassemia beta plus with splenic sequestration','Y','0000-00-00 00:00:00'),(109185,10,'D57.451 ','Sickle-cell thalassemia beta plus with acute chest syndrome','Y','0000-00-00 00:00:00'),(109184,10,'D57.44 ','Sickle-cell thalassemia beta plus without crisis','Y','0000-00-00 00:00:00'),(109183,10,'D57.439 ','Sickle-cell thalassemia beta zero with crisis, unspecified','Y','0000-00-00 00:00:00'),(109182,10,'D57.438 ','Sickle-cell thalassemia beta zero with crisis with other specified complication','Y','0000-00-00 00:00:00'),(109181,10,'D57.434 ','Sickle-cell thalassemia beta zero with dactylitis','Y','0000-00-00 00:00:00'),(109180,10,'D57.433 ','Sickle-cell thalassemia beta zero with cerebral vascular involvement','Y','0000-00-00 00:00:00'),(109179,10,'D57.432 ','Sickle-cell thalassemia beta zero with splenic sequestration','Y','0000-00-00 00:00:00'),(109178,10,'D57.431 ','Sickle-cell thalassemia beta zero with acute chest syndrome','Y','0000-00-00 00:00:00'),(109177,10,'D57.42 ','Sickle-cell thalassemia beta zero without crisis','Y','0000-00-00 00:00:00'),(109176,10,'D57.419 ','Sickle-cell thalassemia, unspecified, with crisis','Y','0000-00-00 00:00:00'),(109175,10,'D57.418 ','Sickle-cell thalassemia, unspecified, with crisis with other specified complication','Y','0000-00-00 00:00:00'),(109174,10,'D57.414 ','Sickle-cell thalassemia, unspecified, with dactylitis','Y','0000-00-00 00:00:00'),(109173,10,'D57.413 ','Sickle-cell thalassemia, unspecified, with cerebral vascular involvement','Y','0000-00-00 00:00:00'),(109172,10,'D57.412 ','Sickle-cell thalassemia, unspecified, with splenic sequestration','Y','0000-00-00 00:00:00'),(109171,10,'D57.411 ','Sickle-cell thalassemia, unspecified, with acute chest syndrome','Y','0000-00-00 00:00:00'),(109170,10,'D57.40 ','Sickle-cell thalassemia without crisis','Y','0000-00-00 00:00:00'),(109169,10,'D57.3 ','Sickle-cell trait','Y','0000-00-00 00:00:00'),(109168,10,'D57.219 ','Sickle-cell/Hb-C disease with crisis, unspecified','Y','0000-00-00 00:00:00'),(109167,10,'D57.218 ','Sickle-cell/Hb-C disease with crisis with other specified complication','Y','0000-00-00 00:00:00'),(109166,10,'D57.214 ','Sickle-cell/Hb-C disease with dactylitis','Y','0000-00-00 00:00:00'),(109165,10,'D57.213 ','Sickle-cell/Hb-C disease with cerebral vascular involvement','Y','0000-00-00 00:00:00'),(109164,10,'D57.212 ','Sickle-cell/Hb-C disease with splenic sequestration','Y','0000-00-00 00:00:00'),(109163,10,'D57.211 ','Sickle-cell/Hb-C disease with acute chest syndrome','Y','0000-00-00 00:00:00'),(109162,10,'D57.20 ','Sickle-cell/Hb-C disease without crisis','Y','0000-00-00 00:00:00'),(109161,10,'D57.1 ','Sickle-cell disease without crisis','Y','0000-00-00 00:00:00'),(109160,10,'D57.09 ','Hb-SS disease with crisis with other specified complication','Y','0000-00-00 00:00:00'),(109159,10,'D57.04 ','Hb-SS disease with dactylitis','Y','0000-00-00 00:00:00'),(109158,10,'D57.03 ','Hb-SS disease with cerebral vascular involvement','Y','0000-00-00 00:00:00'),(109157,10,'D57.02 ','Hb-SS disease with splenic sequestration','Y','0000-00-00 00:00:00'),(109155,10,'D57.00 ','Hb-SS disease with crisis, unspecified','Y','0000-00-00 00:00:00'),(109156,10,'D57.01 ','Hb-SS disease with acute chest syndrome','Y','0000-00-00 00:00:00'),(109154,10,'D56.9 ','Thalassemia, unspecified','Y','0000-00-00 00:00:00'),(109152,10,'D56.5 ','Hemoglobin E-beta thalassemia','Y','0000-00-00 00:00:00'),(109153,10,'D56.8 ','Other thalassemias','Y','0000-00-00 00:00:00'),(109151,10,'D56.4 ','Hereditary persistence of fetal hemoglobin [HPFH]','Y','0000-00-00 00:00:00'),(109150,10,'D56.3 ','Thalassemia minor','Y','0000-00-00 00:00:00'),(109149,10,'D56.2 ','Delta-beta thalassemia','Y','0000-00-00 00:00:00'),(109148,10,'D56.1 ','Beta thalassemia','Y','0000-00-00 00:00:00'),(109147,10,'D56.0 ','Alpha thalassemia','Y','0000-00-00 00:00:00'),(109146,10,'D55.9 ','Anemia due to enzyme disorder, unspecified','Y','0000-00-00 00:00:00'),(109145,10,'D55.8 ','Other anemias due to enzyme disorders','Y','0000-00-00 00:00:00'),(109144,10,'D55.3 ','Anemia due to disorders of nucleotide metabolism','Y','0000-00-00 00:00:00'),(109143,10,'D55.29 ','Anemia due to other disorders of glycolytic enzymes','Y','0000-00-00 00:00:00'),(109142,10,'D55.21 ','Anemia due to pyruvate kinase deficiency','Y','0000-00-00 00:00:00'),(109141,10,'D55.1 ','Anemia due to other disorders of glutathione metabolism','Y','0000-00-00 00:00:00'),(109140,10,'D55.0 ','Anemia due to glucose-6-phosphate dehydrogenase [G6PD] deficiency','Y','0000-00-00 00:00:00'),(109139,10,'D53.9 ','Nutritional anemia, unspecified','Y','0000-00-00 00:00:00'),(109137,10,'D53.2 ','Scorbutic anemia','Y','0000-00-00 00:00:00'),(109138,10,'D53.8 ','Other specified nutritional anemias','Y','0000-00-00 00:00:00'),(109136,10,'D53.1 ','Other megaloblastic anemias, not elsewhere classified','Y','0000-00-00 00:00:00'),(109135,10,'D53.0 ','Protein deficiency anemia','Y','0000-00-00 00:00:00'),(109134,10,'D52.9 ','Folate deficiency anemia, unspecified','Y','0000-00-00 00:00:00'),(109133,10,'D52.8 ','Other folate deficiency anemias','Y','0000-00-00 00:00:00'),(109132,10,'D52.1 ','Drug-induced folate deficiency anemia','Y','0000-00-00 00:00:00'),(109131,10,'D52.0 ','Dietary folate deficiency anemia','Y','0000-00-00 00:00:00'),(109130,10,'D51.9 ','Vitamin B12 deficiency anemia, unspecified','Y','0000-00-00 00:00:00'),(109129,10,'D51.8 ','Other vitamin B12 deficiency anemias','Y','0000-00-00 00:00:00'),(109128,10,'D51.3 ','Other dietary vitamin B12 deficiency anemia','Y','0000-00-00 00:00:00'),(109127,10,'D51.2 ','Transcobalamin II deficiency','Y','0000-00-00 00:00:00'),(109126,10,'D51.1 ','Vitamin B12 deficiency anemia due to selective vitamin B12 malabsorption with proteinuria','Y','0000-00-00 00:00:00'),(109125,10,'D51.0 ','Vitamin B12 deficiency anemia due to intrinsic factor deficiency','Y','0000-00-00 00:00:00'),(109124,10,'D50.9 ','Iron deficiency anemia, unspecified','Y','0000-00-00 00:00:00'),(109123,10,'D50.8 ','Other iron deficiency anemias','Y','0000-00-00 00:00:00'),(109122,10,'D50.1 ','Sideropenic dysphagia','Y','0000-00-00 00:00:00'),(109121,10,'D50.0 ','Iron deficiency anemia secondary to blood loss (chronic)','Y','0000-00-00 00:00:00'),(109120,10,'D49.9 ','Neoplasm of unspecified behavior of unspecified site','Y','0000-00-00 00:00:00'),(109119,10,'D49.89 ','Neoplasm of unspecified behavior of other specified sites','Y','0000-00-00 00:00:00'),(109118,10,'D49.81 ','Neoplasm of unspecified behavior of retina and choroid','Y','0000-00-00 00:00:00'),(109117,10,'D49.7 ','Neoplasm of unspecified behavior of endocrine glands and other parts of nervous system','Y','0000-00-00 00:00:00'),(109116,10,'D49.6 ','Neoplasm of unspecified behavior of brain','Y','0000-00-00 00:00:00'),(109115,10,'D49.59 ','Neoplasm of unspecified behavior of other genitourinary organ','Y','0000-00-00 00:00:00'),(109114,10,'D49.519 ','Neoplasm of unspecified behavior of unspecified kidney','Y','0000-00-00 00:00:00'),(109113,10,'D49.512 ','Neoplasm of unspecified behavior of left kidney','Y','0000-00-00 00:00:00'),(109111,10,'D49.4 ','Neoplasm of unspecified behavior of bladder','Y','0000-00-00 00:00:00'),(109112,10,'D49.511 ','Neoplasm of unspecified behavior of right kidney','Y','0000-00-00 00:00:00'),(109110,10,'D49.3 ','Neoplasm of unspecified behavior of breast','Y','0000-00-00 00:00:00'),(109109,10,'D49.2 ','Neoplasm of unspecified behavior of bone, soft tissue, and skin','Y','0000-00-00 00:00:00'),(109108,10,'D49.1 ','Neoplasm of unspecified behavior of respiratory system','Y','0000-00-00 00:00:00'),(109107,10,'D49.0 ','Neoplasm of unspecified behavior of digestive system','Y','0000-00-00 00:00:00'),(109106,10,'D48.9 ','Neoplasm of uncertain behavior, unspecified','Y','0000-00-00 00:00:00'),(109105,10,'D48.7 ','Neoplasm of uncertain behavior of other specified sites','Y','0000-00-00 00:00:00'),(109104,10,'D48.62 ','Neoplasm of uncertain behavior of left breast','Y','0000-00-00 00:00:00'),(109103,10,'D48.61 ','Neoplasm of uncertain behavior of right breast','Y','0000-00-00 00:00:00'),(109102,10,'D48.60 ','Neoplasm of uncertain behavior of unspecified breast','Y','0000-00-00 00:00:00'),(109101,10,'D48.5 ','Neoplasm of uncertain behavior of skin','Y','0000-00-00 00:00:00'),(109100,10,'D48.4 ','Neoplasm of uncertain behavior of peritoneum','Y','0000-00-00 00:00:00'),(109099,10,'D48.3 ','Neoplasm of uncertain behavior of retroperitoneum','Y','0000-00-00 00:00:00'),(109098,10,'D48.2 ','Neoplasm of uncertain behavior of peripheral nerves and autonomic nervous system','Y','0000-00-00 00:00:00'),(109097,10,'D48.19 ','Other specified neoplasm of uncertain behavior of connective and other soft tissue','Y','0000-00-00 00:00:00'),(109096,10,'D48.119 ','Desmoid tumor of unspecified site','Y','0000-00-00 00:00:00'),(109095,10,'D48.118 ','Desmoid tumor of other site','Y','0000-00-00 00:00:00'),(109094,10,'D48.117 ','Desmoid tumor of back','Y','0000-00-00 00:00:00'),(109093,10,'D48.116 ','Desmoid tumor of lower extremity and pelvic girdle','Y','0000-00-00 00:00:00'),(109092,10,'D48.115 ','Desmoid tumor of upper extremity and shoulder girdle','Y','0000-00-00 00:00:00'),(109091,10,'D48.114 ','Desmoid tumor, intraabdominal','Y','0000-00-00 00:00:00'),(109090,10,'D48.113 ','Desmoid tumor of abdominal wall','Y','0000-00-00 00:00:00'),(109089,10,'D48.112 ','Desmoid tumor, intrathoracic','Y','0000-00-00 00:00:00'),(109088,10,'D48.111 ','Desmoid tumor of chest wall','Y','0000-00-00 00:00:00'),(109087,10,'D48.110 ','Desmoid tumor of head and neck','Y','0000-00-00 00:00:00'),(109086,10,'D48.0 ','Neoplasm of uncertain behavior of bone and articular cartilage','Y','0000-00-00 00:00:00'),(109085,10,'D47.9 ','Neoplasm of uncertain behavior of lymphoid, hematopoietic and related tissue, unspecified','Y','0000-00-00 00:00:00'),(109083,10,'D47.Z2 ','Castleman disease','Y','0000-00-00 00:00:00'),(109084,10,'D47.Z9 ','Other specified neoplasms of uncertain behavior of lymphoid, hematopoietic and related tissue','Y','0000-00-00 00:00:00'),(109082,10,'D47.Z1 ','Post-transplant lymphoproliferative disorder (PTLD)','Y','0000-00-00 00:00:00'),(109081,10,'D47.4 ','Osteomyelofibrosis','Y','0000-00-00 00:00:00'),(109079,10,'D47.2 ','Monoclonal gammopathy','Y','0000-00-00 00:00:00'),(109080,10,'D47.3 ','Essential (hemorrhagic) thrombocythemia','Y','0000-00-00 00:00:00'),(109078,10,'D47.1 ','Chronic myeloproliferative disease','Y','0000-00-00 00:00:00'),(109077,10,'D47.09 ','Other mast cell neoplasms of uncertain behavior','Y','0000-00-00 00:00:00'),(109076,10,'D47.02 ','Systemic mastocytosis','Y','0000-00-00 00:00:00'),(109075,10,'D47.01 ','Cutaneous mastocytosis','Y','0000-00-00 00:00:00'),(109074,10,'D46.9 ','Myelodysplastic syndrome, unspecified','Y','0000-00-00 00:00:00'),(109073,10,'D46.Z ','Other myelodysplastic syndromes','Y','0000-00-00 00:00:00'),(109072,10,'D46.4 ','Refractory anemia, unspecified','Y','0000-00-00 00:00:00'),(109071,10,'D46.C ','Myelodysplastic syndrome with isolated del(5q) chromosomal abnormality','Y','0000-00-00 00:00:00'),(109070,10,'D46.B ','Refractory cytopenia with multilineage dysplasia and ring sideroblasts','Y','0000-00-00 00:00:00'),(109069,10,'D46.A ','Refractory cytopenia with multilineage dysplasia','Y','0000-00-00 00:00:00'),(109068,10,'D46.22 ','Refractory anemia with excess of blasts 2','Y','0000-00-00 00:00:00'),(109067,10,'D46.21 ','Refractory anemia with excess of blasts 1','Y','0000-00-00 00:00:00'),(109066,10,'D46.20 ','Refractory anemia with excess of blasts, unspecified','Y','0000-00-00 00:00:00'),(109065,10,'D46.1 ','Refractory anemia with ring sideroblasts','Y','0000-00-00 00:00:00'),(109063,10,'D45','Polycythemia vera','Y','0000-00-00 00:00:00'),(109064,10,'D46.0 ','Refractory anemia without ring sideroblasts, so stated','Y','0000-00-00 00:00:00'),(109062,10,'D44.9 ','Neoplasm of uncertain behavior of unspecified endocrine gland','Y','0000-00-00 00:00:00'),(109061,10,'D44.7 ','Neoplasm of uncertain behavior of aortic body and other paraganglia','Y','0000-00-00 00:00:00'),(109060,10,'D44.6 ','Neoplasm of uncertain behavior of carotid body','Y','0000-00-00 00:00:00'),(109059,10,'D44.5 ','Neoplasm of uncertain behavior of pineal gland','Y','0000-00-00 00:00:00'),(109058,10,'D44.4 ','Neoplasm of uncertain behavior of craniopharyngeal duct','Y','0000-00-00 00:00:00'),(109057,10,'D44.3 ','Neoplasm of uncertain behavior of pituitary gland','Y','0000-00-00 00:00:00'),(109056,10,'D44.2 ','Neoplasm of uncertain behavior of parathyroid gland','Y','0000-00-00 00:00:00'),(109055,10,'D44.12 ','Neoplasm of uncertain behavior of left adrenal gland','Y','0000-00-00 00:00:00'),(109054,10,'D44.11 ','Neoplasm of uncertain behavior of right adrenal gland','Y','0000-00-00 00:00:00'),(109053,10,'D44.10 ','Neoplasm of uncertain behavior of unspecified adrenal gland','Y','0000-00-00 00:00:00'),(109052,10,'D44.0 ','Neoplasm of uncertain behavior of thyroid gland','Y','0000-00-00 00:00:00'),(109051,10,'D43.9 ','Neoplasm of uncertain behavior of central nervous system, unspecified','Y','0000-00-00 00:00:00'),(109050,10,'D43.8 ','Neoplasm of uncertain behavior of other specified parts of central nervous system','Y','0000-00-00 00:00:00'),(109049,10,'D43.4 ','Neoplasm of uncertain behavior of spinal cord','Y','0000-00-00 00:00:00'),(109048,10,'D43.3 ','Neoplasm of uncertain behavior of cranial nerves','Y','0000-00-00 00:00:00'),(109047,10,'D43.2 ','Neoplasm of uncertain behavior of brain, unspecified','Y','0000-00-00 00:00:00'),(109046,10,'D43.1 ','Neoplasm of uncertain behavior of brain, infratentorial','Y','0000-00-00 00:00:00'),(109045,10,'D43.0 ','Neoplasm of uncertain behavior of brain, supratentorial','Y','0000-00-00 00:00:00'),(109044,10,'D42.9 ','Neoplasm of uncertain behavior of meninges, unspecified','Y','0000-00-00 00:00:00'),(109043,10,'D42.1 ','Neoplasm of uncertain behavior of spinal meninges','Y','0000-00-00 00:00:00'),(109042,10,'D42.0 ','Neoplasm of uncertain behavior of cerebral meninges','Y','0000-00-00 00:00:00'),(109041,10,'D41.9 ','Neoplasm of uncertain behavior of unspecified urinary organ','Y','0000-00-00 00:00:00'),(109040,10,'D41.8 ','Neoplasm of uncertain behavior of other specified urinary organs','Y','0000-00-00 00:00:00'),(109039,10,'D41.4 ','Neoplasm of uncertain behavior of bladder','Y','0000-00-00 00:00:00'),(109038,10,'D41.3 ','Neoplasm of uncertain behavior of urethra','Y','0000-00-00 00:00:00'),(109037,10,'D41.22 ','Neoplasm of uncertain behavior of left ureter','Y','0000-00-00 00:00:00'),(109036,10,'D41.21 ','Neoplasm of uncertain behavior of right ureter','Y','0000-00-00 00:00:00'),(109035,10,'D41.20 ','Neoplasm of uncertain behavior of unspecified ureter','Y','0000-00-00 00:00:00'),(109034,10,'D41.12 ','Neoplasm of uncertain behavior of left renal pelvis','Y','0000-00-00 00:00:00'),(109033,10,'D41.11 ','Neoplasm of uncertain behavior of right renal pelvis','Y','0000-00-00 00:00:00'),(109032,10,'D41.10 ','Neoplasm of uncertain behavior of unspecified renal pelvis','Y','0000-00-00 00:00:00'),(109031,10,'D41.02 ','Neoplasm of uncertain behavior of left kidney','Y','0000-00-00 00:00:00'),(109030,10,'D41.01 ','Neoplasm of uncertain behavior of right kidney','Y','0000-00-00 00:00:00'),(109029,10,'D41.00 ','Neoplasm of uncertain behavior of unspecified kidney','Y','0000-00-00 00:00:00'),(109028,10,'D40.9 ','Neoplasm of uncertain behavior of male genital organ, unspecified','Y','0000-00-00 00:00:00'),(109027,10,'D40.8 ','Neoplasm of uncertain behavior of other specified male genital organs','Y','0000-00-00 00:00:00'),(109025,10,'D40.11 ','Neoplasm of uncertain behavior of right testis','Y','0000-00-00 00:00:00'),(109026,10,'D40.12 ','Neoplasm of uncertain behavior of left testis','Y','0000-00-00 00:00:00'),(109024,10,'D40.10 ','Neoplasm of uncertain behavior of unspecified testis','Y','0000-00-00 00:00:00'),(109023,10,'D40.0 ','Neoplasm of uncertain behavior of prostate','Y','0000-00-00 00:00:00'),(109022,10,'D39.9 ','Neoplasm of uncertain behavior of female genital organ, unspecified','Y','0000-00-00 00:00:00'),(109021,10,'D39.8 ','Neoplasm of uncertain behavior of other specified female genital organs','Y','0000-00-00 00:00:00'),(109020,10,'D39.2 ','Neoplasm of uncertain behavior of placenta','Y','0000-00-00 00:00:00'),(109019,10,'D39.12 ','Neoplasm of uncertain behavior of left ovary','Y','0000-00-00 00:00:00'),(109017,10,'D39.10 ','Neoplasm of uncertain behavior of unspecified ovary','Y','0000-00-00 00:00:00'),(109018,10,'D39.11 ','Neoplasm of uncertain behavior of right ovary','Y','0000-00-00 00:00:00'),(109016,10,'D39.0 ','Neoplasm of uncertain behavior of uterus','Y','0000-00-00 00:00:00'),(109015,10,'D38.6 ','Neoplasm of uncertain behavior of respiratory organ, unspecified','Y','0000-00-00 00:00:00'),(109013,10,'D38.4 ','Neoplasm of uncertain behavior of thymus','Y','0000-00-00 00:00:00'),(109014,10,'D38.5 ','Neoplasm of uncertain behavior of other respiratory organs','Y','0000-00-00 00:00:00'),(109012,10,'D38.3 ','Neoplasm of uncertain behavior of mediastinum','Y','0000-00-00 00:00:00'),(109011,10,'D38.2 ','Neoplasm of uncertain behavior of pleura','Y','0000-00-00 00:00:00'),(109009,10,'D38.0 ','Neoplasm of uncertain behavior of larynx','Y','0000-00-00 00:00:00'),(109010,10,'D38.1 ','Neoplasm of uncertain behavior of trachea, bronchus and lung','Y','0000-00-00 00:00:00'),(109008,10,'D37.9 ','Neoplasm of uncertain behavior of digestive organ, unspecified','Y','0000-00-00 00:00:00'),(109007,10,'D37.8 ','Neoplasm of uncertain behavior of other specified digestive organs','Y','0000-00-00 00:00:00'),(109006,10,'D37.6 ','Neoplasm of uncertain behavior of liver, gallbladder and bile ducts','Y','0000-00-00 00:00:00'),(109005,10,'D37.5 ','Neoplasm of uncertain behavior of rectum','Y','0000-00-00 00:00:00'),(109003,10,'D37.3 ','Neoplasm of uncertain behavior of appendix','Y','0000-00-00 00:00:00'),(109004,10,'D37.4 ','Neoplasm of uncertain behavior of colon','Y','0000-00-00 00:00:00'),(109002,10,'D37.2 ','Neoplasm of uncertain behavior of small intestine','Y','0000-00-00 00:00:00'),(109001,10,'D37.1 ','Neoplasm of uncertain behavior of stomach','Y','0000-00-00 00:00:00'),(108999,10,'D37.05 ','Neoplasm of uncertain behavior of pharynx','Y','0000-00-00 00:00:00'),(109000,10,'D37.09 ','Neoplasm of uncertain behavior of other specified sites of the oral cavity','Y','0000-00-00 00:00:00'),(108998,10,'D37.04 ','Neoplasm of uncertain behavior of the minor salivary glands','Y','0000-00-00 00:00:00'),(108997,10,'D37.039 ','Neoplasm of uncertain behavior of the major salivary glands, unspecified','Y','0000-00-00 00:00:00'),(108996,10,'D37.032 ','Neoplasm of uncertain behavior of the submandibular salivary glands','Y','0000-00-00 00:00:00'),(108995,10,'D37.031 ','Neoplasm of uncertain behavior of the sublingual salivary glands','Y','0000-00-00 00:00:00'),(108994,10,'D37.030 ','Neoplasm of uncertain behavior of the parotid salivary glands','Y','0000-00-00 00:00:00'),(108992,10,'D37.01 ','Neoplasm of uncertain behavior of lip','Y','0000-00-00 00:00:00'),(108993,10,'D37.02 ','Neoplasm of uncertain behavior of tongue','Y','0000-00-00 00:00:00'),(108991,10,'D3A.8 ','Other benign neuroendocrine tumors','Y','0000-00-00 00:00:00'),(108990,10,'D3A.098 ','Benign carcinoid tumors of other sites','Y','0000-00-00 00:00:00'),(108988,10,'D3A.095 ','Benign carcinoid tumor of the midgut, unspecified','Y','0000-00-00 00:00:00'),(108989,10,'D3A.096 ','Benign carcinoid tumor of the hindgut, unspecified','Y','0000-00-00 00:00:00'),(108987,10,'D3A.094 ','Benign carcinoid tumor of the foregut, unspecified','Y','0000-00-00 00:00:00'),(108986,10,'D3A.093 ','Benign carcinoid tumor of the kidney','Y','0000-00-00 00:00:00'),(108984,10,'D3A.091 ','Benign carcinoid tumor of the thymus','Y','0000-00-00 00:00:00'),(108985,10,'D3A.092 ','Benign carcinoid tumor of the stomach','Y','0000-00-00 00:00:00'),(108983,10,'D3A.090 ','Benign carcinoid tumor of the bronchus and lung','Y','0000-00-00 00:00:00'),(108981,10,'D3A.026 ','Benign carcinoid tumor of the rectum','Y','0000-00-00 00:00:00'),(108982,10,'D3A.029 ','Benign carcinoid tumor of the large intestine, unspecified portion','Y','0000-00-00 00:00:00'),(108980,10,'D3A.025 ','Benign carcinoid tumor of the sigmoid colon','Y','0000-00-00 00:00:00'),(108979,10,'D3A.024 ','Benign carcinoid tumor of the descending colon','Y','0000-00-00 00:00:00'),(108978,10,'D3A.023 ','Benign carcinoid tumor of the transverse colon','Y','0000-00-00 00:00:00'),(108977,10,'D3A.022 ','Benign carcinoid tumor of the ascending colon','Y','0000-00-00 00:00:00'),(108975,10,'D3A.020 ','Benign carcinoid tumor of the appendix','Y','0000-00-00 00:00:00'),(108976,10,'D3A.021 ','Benign carcinoid tumor of the cecum','Y','0000-00-00 00:00:00'),(108974,10,'D3A.019 ','Benign carcinoid tumor of the small intestine, unspecified portion','Y','0000-00-00 00:00:00'),(108972,10,'D3A.011 ','Benign carcinoid tumor of the jejunum','Y','0000-00-00 00:00:00'),(108973,10,'D3A.012 ','Benign carcinoid tumor of the ileum','Y','0000-00-00 00:00:00'),(108971,10,'D3A.010 ','Benign carcinoid tumor of the duodenum','Y','0000-00-00 00:00:00'),(108969,10,'D36.9 ','Benign neoplasm, unspecified site','Y','0000-00-00 00:00:00'),(108970,10,'D3A.00 ','Benign carcinoid tumor of unspecified site','Y','0000-00-00 00:00:00'),(108968,10,'D36.7 ','Benign neoplasm of other specified sites','Y','0000-00-00 00:00:00'),(108967,10,'D36.17 ','Benign neoplasm of peripheral nerves and autonomic nervous system of trunk, unspecified','Y','0000-00-00 00:00:00'),(108966,10,'D36.16 ','Benign neoplasm of peripheral nerves and autonomic nervous system of pelvis','Y','0000-00-00 00:00:00'),(108965,10,'D36.15 ','Benign neoplasm of peripheral nerves and autonomic nervous system of abdomen','Y','0000-00-00 00:00:00'),(108964,10,'D36.14 ','Benign neoplasm of peripheral nerves and autonomic nervous system of thorax','Y','0000-00-00 00:00:00'),(108963,10,'D36.13 ','Benign neoplasm of peripheral nerves and autonomic nervous system of lower limb, including hip','Y','0000-00-00 00:00:00'),(108962,10,'D36.12 ','Benign neoplasm of peripheral nerves and autonomic nervous system, upper limb, including shoulder','Y','0000-00-00 00:00:00'),(108961,10,'D36.11 ','Benign neoplasm of peripheral nerves and autonomic nervous system of face, head, and neck','Y','0000-00-00 00:00:00'),(108960,10,'D36.10 ','Benign neoplasm of peripheral nerves and autonomic nervous system, unspecified','Y','0000-00-00 00:00:00'),(108959,10,'D36.0 ','Benign neoplasm of lymph nodes','Y','0000-00-00 00:00:00'),(108957,10,'D35.7 ','Benign neoplasm of other specified endocrine glands','Y','0000-00-00 00:00:00'),(108958,10,'D35.9 ','Benign neoplasm of endocrine gland, unspecified','Y','0000-00-00 00:00:00'),(108956,10,'D35.6 ','Benign neoplasm of aortic body and other paraganglia','Y','0000-00-00 00:00:00'),(108954,10,'D35.4 ','Benign neoplasm of pineal gland','Y','0000-00-00 00:00:00'),(108955,10,'D35.5 ','Benign neoplasm of carotid body','Y','0000-00-00 00:00:00'),(108953,10,'D35.3 ','Benign neoplasm of craniopharyngeal duct','Y','0000-00-00 00:00:00'),(108952,10,'D35.2 ','Benign neoplasm of pituitary gland','Y','0000-00-00 00:00:00'),(108950,10,'D35.02 ','Benign neoplasm of left adrenal gland','Y','0000-00-00 00:00:00'),(108951,10,'D35.1 ','Benign neoplasm of parathyroid gland','Y','0000-00-00 00:00:00'),(108949,10,'D35.01 ','Benign neoplasm of right adrenal gland','Y','0000-00-00 00:00:00'),(108948,10,'D35.00 ','Benign neoplasm of unspecified adrenal gland','Y','0000-00-00 00:00:00'),(108946,10,'D33.9 ','Benign neoplasm of central nervous system, unspecified','Y','0000-00-00 00:00:00'),(108947,10,'D34','Benign neoplasm of thyroid gland','Y','0000-00-00 00:00:00'),(108945,10,'D33.7 ','Benign neoplasm of other specified parts of central nervous system','Y','0000-00-00 00:00:00'),(108943,10,'D33.3 ','Benign neoplasm of cranial nerves','Y','0000-00-00 00:00:00'),(108944,10,'D33.4 ','Benign neoplasm of spinal cord','Y','0000-00-00 00:00:00'),(108942,10,'D33.2 ','Benign neoplasm of brain, unspecified','Y','0000-00-00 00:00:00'),(108940,10,'D33.0 ','Benign neoplasm of brain, supratentorial','Y','0000-00-00 00:00:00'),(108941,10,'D33.1 ','Benign neoplasm of brain, infratentorial','Y','0000-00-00 00:00:00'),(108939,10,'D32.9 ','Benign neoplasm of meninges, unspecified','Y','0000-00-00 00:00:00'),(108937,10,'D32.0 ','Benign neoplasm of cerebral meninges','Y','0000-00-00 00:00:00'),(108938,10,'D32.1 ','Benign neoplasm of spinal meninges','Y','0000-00-00 00:00:00'),(108936,10,'D31.92 ','Benign neoplasm of unspecified part of left eye','Y','0000-00-00 00:00:00'),(108935,10,'D31.91 ','Benign neoplasm of unspecified part of right eye','Y','0000-00-00 00:00:00'),(108934,10,'D31.90 ','Benign neoplasm of unspecified part of unspecified eye','Y','0000-00-00 00:00:00'),(108933,10,'D31.62 ','Benign neoplasm of unspecified site of left orbit','Y','0000-00-00 00:00:00'),(108932,10,'D31.61 ','Benign neoplasm of unspecified site of right orbit','Y','0000-00-00 00:00:00'),(108930,10,'D31.52 ','Benign neoplasm of left lacrimal gland and duct','Y','0000-00-00 00:00:00'),(108931,10,'D31.60 ','Benign neoplasm of unspecified site of unspecified orbit','Y','0000-00-00 00:00:00'),(108929,10,'D31.51 ','Benign neoplasm of right lacrimal gland and duct','Y','0000-00-00 00:00:00'),(108928,10,'D31.50 ','Benign neoplasm of unspecified lacrimal gland and duct','Y','0000-00-00 00:00:00'),(108926,10,'D31.41 ','Benign neoplasm of right ciliary body','Y','0000-00-00 00:00:00'),(108927,10,'D31.42 ','Benign neoplasm of left ciliary body','Y','0000-00-00 00:00:00'),(108925,10,'D31.40 ','Benign neoplasm of unspecified ciliary body','Y','0000-00-00 00:00:00'),(108923,10,'D31.31 ','Benign neoplasm of right choroid','Y','0000-00-00 00:00:00'),(108924,10,'D31.32 ','Benign neoplasm of left choroid','Y','0000-00-00 00:00:00'),(108922,10,'D31.30 ','Benign neoplasm of unspecified choroid','Y','0000-00-00 00:00:00'),(108920,10,'D31.21 ','Benign neoplasm of right retina','Y','0000-00-00 00:00:00'),(108921,10,'D31.22 ','Benign neoplasm of left retina','Y','0000-00-00 00:00:00'),(108919,10,'D31.20 ','Benign neoplasm of unspecified retina','Y','0000-00-00 00:00:00'),(108917,10,'D31.11 ','Benign neoplasm of right cornea','Y','0000-00-00 00:00:00'),(108918,10,'D31.12 ','Benign neoplasm of left cornea','Y','0000-00-00 00:00:00'),(108916,10,'D31.10 ','Benign neoplasm of unspecified cornea','Y','0000-00-00 00:00:00'),(108915,10,'D31.02 ','Benign neoplasm of left conjunctiva','Y','0000-00-00 00:00:00'),(108913,10,'D31.00 ','Benign neoplasm of unspecified conjunctiva','Y','0000-00-00 00:00:00'),(108914,10,'D31.01 ','Benign neoplasm of right conjunctiva','Y','0000-00-00 00:00:00'),(108912,10,'D30.9 ','Benign neoplasm of urinary organ, unspecified','Y','0000-00-00 00:00:00'),(108910,10,'D30.4 ','Benign neoplasm of urethra','Y','0000-00-00 00:00:00'),(108911,10,'D30.8 ','Benign neoplasm of other specified urinary organs','Y','0000-00-00 00:00:00'),(108908,10,'D30.22 ','Benign neoplasm of left ureter','Y','0000-00-00 00:00:00'),(108909,10,'D30.3 ','Benign neoplasm of bladder','Y','0000-00-00 00:00:00'),(108907,10,'D30.21 ','Benign neoplasm of right ureter','Y','0000-00-00 00:00:00'),(108906,10,'D30.20 ','Benign neoplasm of unspecified ureter','Y','0000-00-00 00:00:00'),(108904,10,'D30.11 ','Benign neoplasm of right renal pelvis','Y','0000-00-00 00:00:00'),(108905,10,'D30.12 ','Benign neoplasm of left renal pelvis','Y','0000-00-00 00:00:00'),(108903,10,'D30.10 ','Benign neoplasm of unspecified renal pelvis','Y','0000-00-00 00:00:00'),(108902,10,'D30.02 ','Benign neoplasm of left kidney','Y','0000-00-00 00:00:00'),(108900,10,'D30.00 ','Benign neoplasm of unspecified kidney','Y','0000-00-00 00:00:00'),(108901,10,'D30.01 ','Benign neoplasm of right kidney','Y','0000-00-00 00:00:00'),(108899,10,'D29.9 ','Benign neoplasm of male genital organ, unspecified','Y','0000-00-00 00:00:00'),(108898,10,'D29.8 ','Benign neoplasm of other specified male genital organs','Y','0000-00-00 00:00:00'),(108897,10,'D29.4 ','Benign neoplasm of scrotum','Y','0000-00-00 00:00:00'),(108895,10,'D29.31 ','Benign neoplasm of right epididymis','Y','0000-00-00 00:00:00'),(108896,10,'D29.32 ','Benign neoplasm of left epididymis','Y','0000-00-00 00:00:00'),(108894,10,'D29.30 ','Benign neoplasm of unspecified epididymis','Y','0000-00-00 00:00:00'),(108892,10,'D29.21 ','Benign neoplasm of right testis','Y','0000-00-00 00:00:00'),(108893,10,'D29.22 ','Benign neoplasm of left testis','Y','0000-00-00 00:00:00'),(108890,10,'D29.1 ','Benign neoplasm of prostate','Y','0000-00-00 00:00:00'),(108891,10,'D29.20 ','Benign neoplasm of unspecified testis','Y','0000-00-00 00:00:00'),(108889,10,'D29.0 ','Benign neoplasm of penis','Y','0000-00-00 00:00:00'),(108888,10,'D28.9 ','Benign neoplasm of female genital organ, unspecified','Y','0000-00-00 00:00:00'),(108887,10,'D28.7 ','Benign neoplasm of other specified female genital organs','Y','0000-00-00 00:00:00'),(108885,10,'D28.1 ','Benign neoplasm of vagina','Y','0000-00-00 00:00:00'),(108886,10,'D28.2 ','Benign neoplasm of uterine tubes and ligaments','Y','0000-00-00 00:00:00'),(108884,10,'D28.0 ','Benign neoplasm of vulva','Y','0000-00-00 00:00:00'),(108882,10,'D27.1 ','Benign neoplasm of left ovary','Y','0000-00-00 00:00:00'),(108883,10,'D27.9 ','Benign neoplasm of unspecified ovary','Y','0000-00-00 00:00:00'),(108881,10,'D27.0 ','Benign neoplasm of right ovary','Y','0000-00-00 00:00:00'),(108879,10,'D26.7 ','Other benign neoplasm of other parts of uterus','Y','0000-00-00 00:00:00'),(108880,10,'D26.9 ','Other benign neoplasm of uterus, unspecified','Y','0000-00-00 00:00:00'),(108878,10,'D26.1 ','Other benign neoplasm of corpus uteri','Y','0000-00-00 00:00:00'),(108876,10,'D25.9 ','Leiomyoma of uterus, unspecified','Y','0000-00-00 00:00:00'),(108877,10,'D26.0 ','Other benign neoplasm of cervix uteri','Y','0000-00-00 00:00:00'),(108875,10,'D25.2 ','Subserosal leiomyoma of uterus','Y','0000-00-00 00:00:00'),(108873,10,'D25.0 ','Submucous leiomyoma of uterus','Y','0000-00-00 00:00:00'),(108874,10,'D25.1 ','Intramural leiomyoma of uterus','Y','0000-00-00 00:00:00'),(108872,10,'D24.9 ','Benign neoplasm of unspecified breast','Y','0000-00-00 00:00:00'),(108870,10,'D24.1 ','Benign neoplasm of right breast','Y','0000-00-00 00:00:00'),(108871,10,'D24.2 ','Benign neoplasm of left breast','Y','0000-00-00 00:00:00'),(108869,10,'D23.9 ','Other benign neoplasm of skin, unspecified','Y','0000-00-00 00:00:00'),(108868,10,'D23.72 ','Other benign neoplasm of skin of left lower limb, including hip','Y','0000-00-00 00:00:00'),(108867,10,'D23.71 ','Other benign neoplasm of skin of right lower limb, including hip','Y','0000-00-00 00:00:00'),(108866,10,'D23.70 ','Other benign neoplasm of skin of unspecified lower limb, including hip','Y','0000-00-00 00:00:00'),(108865,10,'D23.62 ','Other benign neoplasm of skin of left upper limb, including shoulder','Y','0000-00-00 00:00:00'),(108864,10,'D23.61 ','Other benign neoplasm of skin of right upper limb, including shoulder','Y','0000-00-00 00:00:00'),(108863,10,'D23.60 ','Other benign neoplasm of skin of unspecified upper limb, including shoulder','Y','0000-00-00 00:00:00'),(108861,10,'D23.4 ','Other benign neoplasm of skin of scalp and neck','Y','0000-00-00 00:00:00'),(108862,10,'D23.5 ','Other benign neoplasm of skin of trunk','Y','0000-00-00 00:00:00'),(108860,10,'D23.39 ','Other benign neoplasm of skin of other parts of face','Y','0000-00-00 00:00:00'),(108859,10,'D23.30 ','Other benign neoplasm of skin of unspecified part of face','Y','0000-00-00 00:00:00'),(108858,10,'D23.22 ','Other benign neoplasm of skin of left ear and external auricular canal','Y','0000-00-00 00:00:00'),(108857,10,'D23.21 ','Other benign neoplasm of skin of right ear and external auricular canal','Y','0000-00-00 00:00:00'),(108856,10,'D23.20 ','Other benign neoplasm of skin of unspecified ear and external auricular canal','Y','0000-00-00 00:00:00'),(108855,10,'D23.122 ','Other benign neoplasm of skin of left lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(108854,10,'D23.121 ','Other benign neoplasm of skin of left upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(108853,10,'D23.112 ','Other benign neoplasm of skin of right lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(108852,10,'D23.111 ','Other benign neoplasm of skin of right upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(108851,10,'D23.10 ','Other benign neoplasm of skin of unspecified eyelid, including canthus','Y','0000-00-00 00:00:00'),(108850,10,'D23.0 ','Other benign neoplasm of skin of lip','Y','0000-00-00 00:00:00'),(108848,10,'D22.72 ','Melanocytic nevi of left lower limb, including hip','Y','0000-00-00 00:00:00'),(108849,10,'D22.9 ','Melanocytic nevi, unspecified','Y','0000-00-00 00:00:00'),(108847,10,'D22.71 ','Melanocytic nevi of right lower limb, including hip','Y','0000-00-00 00:00:00'),(108846,10,'D22.70 ','Melanocytic nevi of unspecified lower limb, including hip','Y','0000-00-00 00:00:00'),(108845,10,'D22.62 ','Melanocytic nevi of left upper limb, including shoulder','Y','0000-00-00 00:00:00'),(108844,10,'D22.61 ','Melanocytic nevi of right upper limb, including shoulder','Y','0000-00-00 00:00:00'),(108843,10,'D22.60 ','Melanocytic nevi of unspecified upper limb, including shoulder','Y','0000-00-00 00:00:00'),(108842,10,'D22.5 ','Melanocytic nevi of trunk','Y','0000-00-00 00:00:00'),(108841,10,'D22.4 ','Melanocytic nevi of scalp and neck','Y','0000-00-00 00:00:00'),(108839,10,'D22.30 ','Melanocytic nevi of unspecified part of face','Y','0000-00-00 00:00:00'),(108840,10,'D22.39 ','Melanocytic nevi of other parts of face','Y','0000-00-00 00:00:00'),(108838,10,'D22.22 ','Melanocytic nevi of left ear and external auricular canal','Y','0000-00-00 00:00:00'),(108837,10,'D22.21 ','Melanocytic nevi of right ear and external auricular canal','Y','0000-00-00 00:00:00'),(108836,10,'D22.20 ','Melanocytic nevi of unspecified ear and external auricular canal','Y','0000-00-00 00:00:00'),(108835,10,'D22.122 ','Melanocytic nevi of left lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(108834,10,'D22.121 ','Melanocytic nevi of left upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(108833,10,'D22.112 ','Melanocytic nevi of right lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(108832,10,'D22.111 ','Melanocytic nevi of right upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(108831,10,'D22.10 ','Melanocytic nevi of unspecified eyelid, including canthus','Y','0000-00-00 00:00:00'),(108830,10,'D22.0 ','Melanocytic nevi of lip','Y','0000-00-00 00:00:00'),(108829,10,'D21.9 ','Benign neoplasm of connective and other soft tissue, unspecified','Y','0000-00-00 00:00:00'),(108828,10,'D21.6 ','Benign neoplasm of connective and other soft tissue of trunk, unspecified','Y','0000-00-00 00:00:00'),(108827,10,'D21.5 ','Benign neoplasm of connective and other soft tissue of pelvis','Y','0000-00-00 00:00:00'),(108826,10,'D21.4 ','Benign neoplasm of connective and other soft tissue of abdomen','Y','0000-00-00 00:00:00'),(108825,10,'D21.3 ','Benign neoplasm of connective and other soft tissue of thorax','Y','0000-00-00 00:00:00'),(108824,10,'D21.22 ','Benign neoplasm of connective and other soft tissue of left lower limb, including hip','Y','0000-00-00 00:00:00'),(108823,10,'D21.21 ','Benign neoplasm of connective and other soft tissue of right lower limb, including hip','Y','0000-00-00 00:00:00'),(108822,10,'D21.20 ','Benign neoplasm of connective and other soft tissue of unspecified lower limb, including hip','Y','0000-00-00 00:00:00'),(108821,10,'D21.12 ','Benign neoplasm of connective and other soft tissue of left upper limb, including shoulder','Y','0000-00-00 00:00:00'),(108820,10,'D21.11 ','Benign neoplasm of connective and other soft tissue of right upper limb, including shoulder','Y','0000-00-00 00:00:00'),(108819,10,'D21.10 ','Benign neoplasm of connective and other soft tissue of unspecified upper limb, including shoulder','Y','0000-00-00 00:00:00'),(108818,10,'D21.0 ','Benign neoplasm of connective and other soft tissue of head, face and neck','Y','0000-00-00 00:00:00'),(108817,10,'D20.1 ','Benign neoplasm of soft tissue of peritoneum','Y','0000-00-00 00:00:00'),(108816,10,'D20.0 ','Benign neoplasm of soft tissue of retroperitoneum','Y','0000-00-00 00:00:00'),(108814,10,'D19.7 ','Benign neoplasm of mesothelial tissue of other sites','Y','0000-00-00 00:00:00'),(108815,10,'D19.9 ','Benign neoplasm of mesothelial tissue, unspecified','Y','0000-00-00 00:00:00'),(108813,10,'D19.1 ','Benign neoplasm of mesothelial tissue of peritoneum','Y','0000-00-00 00:00:00'),(108812,10,'D19.0 ','Benign neoplasm of mesothelial tissue of pleura','Y','0000-00-00 00:00:00'),(108810,10,'D18.09 ','Hemangioma of other sites','Y','0000-00-00 00:00:00'),(108811,10,'D18.1 ','Lymphangioma, any site','Y','0000-00-00 00:00:00'),(108809,10,'D18.03 ','Hemangioma of intra-abdominal structures','Y','0000-00-00 00:00:00'),(108808,10,'D18.02 ','Hemangioma of intracranial structures','Y','0000-00-00 00:00:00'),(108807,10,'D18.01 ','Hemangioma of skin and subcutaneous tissue','Y','0000-00-00 00:00:00'),(108806,10,'D18.00 ','Hemangioma unspecified site','Y','0000-00-00 00:00:00'),(108805,10,'D17.9 ','Benign lipomatous neoplasm, unspecified','Y','0000-00-00 00:00:00'),(108804,10,'D17.79 ','Benign lipomatous neoplasm of other sites','Y','0000-00-00 00:00:00'),(108803,10,'D17.72 ','Benign lipomatous neoplasm of other genitourinary organ','Y','0000-00-00 00:00:00'),(108802,10,'D17.71 ','Benign lipomatous neoplasm of kidney','Y','0000-00-00 00:00:00'),(108801,10,'D17.6 ','Benign lipomatous neoplasm of spermatic cord','Y','0000-00-00 00:00:00'),(108799,10,'D17.4 ','Benign lipomatous neoplasm of intrathoracic organs','Y','0000-00-00 00:00:00'),(108800,10,'D17.5 ','Benign lipomatous neoplasm of intra-abdominal organs','Y','0000-00-00 00:00:00'),(108798,10,'D17.39 ','Benign lipomatous neoplasm of skin and subcutaneous tissue of other sites','Y','0000-00-00 00:00:00'),(108797,10,'D17.30 ','Benign lipomatous neoplasm of skin and subcutaneous tissue of unspecified sites','Y','0000-00-00 00:00:00'),(108796,10,'D17.24 ','Benign lipomatous neoplasm of skin and subcutaneous tissue of left leg','Y','0000-00-00 00:00:00'),(108795,10,'D17.23 ','Benign lipomatous neoplasm of skin and subcutaneous tissue of right leg','Y','0000-00-00 00:00:00'),(108794,10,'D17.22 ','Benign lipomatous neoplasm of skin and subcutaneous tissue of left arm','Y','0000-00-00 00:00:00'),(108793,10,'D17.21 ','Benign lipomatous neoplasm of skin and subcutaneous tissue of right arm','Y','0000-00-00 00:00:00'),(108792,10,'D17.20 ','Benign lipomatous neoplasm of skin and subcutaneous tissue of unspecified limb','Y','0000-00-00 00:00:00'),(108791,10,'D17.1 ','Benign lipomatous neoplasm of skin and subcutaneous tissue of trunk','Y','0000-00-00 00:00:00'),(108790,10,'D17.0 ','Benign lipomatous neoplasm of skin and subcutaneous tissue of head, face and neck','Y','0000-00-00 00:00:00'),(108789,10,'D16.9 ','Benign neoplasm of bone and articular cartilage, unspecified','Y','0000-00-00 00:00:00'),(108787,10,'D16.7 ','Benign neoplasm of ribs, sternum and clavicle','Y','0000-00-00 00:00:00'),(108788,10,'D16.8 ','Benign neoplasm of pelvic bones, sacrum and coccyx','Y','0000-00-00 00:00:00'),(108786,10,'D16.6 ','Benign neoplasm of vertebral column','Y','0000-00-00 00:00:00'),(108784,10,'D16.4 ','Benign neoplasm of bones of skull and face','Y','0000-00-00 00:00:00'),(108785,10,'D16.5 ','Benign neoplasm of lower jaw bone','Y','0000-00-00 00:00:00'),(108783,10,'D16.32 ','Benign neoplasm of short bones of left lower limb','Y','0000-00-00 00:00:00'),(108782,10,'D16.31 ','Benign neoplasm of short bones of right lower limb','Y','0000-00-00 00:00:00'),(108781,10,'D16.30 ','Benign neoplasm of short bones of unspecified lower limb','Y','0000-00-00 00:00:00'),(108780,10,'D16.22 ','Benign neoplasm of long bones of left lower limb','Y','0000-00-00 00:00:00'),(108779,10,'D16.21 ','Benign neoplasm of long bones of right lower limb','Y','0000-00-00 00:00:00'),(108778,10,'D16.20 ','Benign neoplasm of long bones of unspecified lower limb','Y','0000-00-00 00:00:00'),(108776,10,'D16.11 ','Benign neoplasm of short bones of right upper limb','Y','0000-00-00 00:00:00'),(108777,10,'D16.12 ','Benign neoplasm of short bones of left upper limb','Y','0000-00-00 00:00:00'),(108775,10,'D16.10 ','Benign neoplasm of short bones of unspecified upper limb','Y','0000-00-00 00:00:00'),(108774,10,'D16.02 ','Benign neoplasm of scapula and long bones of left upper limb','Y','0000-00-00 00:00:00'),(108773,10,'D16.01 ','Benign neoplasm of scapula and long bones of right upper limb','Y','0000-00-00 00:00:00'),(108772,10,'D16.00 ','Benign neoplasm of scapula and long bones of unspecified upper limb','Y','0000-00-00 00:00:00'),(108771,10,'D15.9 ','Benign neoplasm of intrathoracic organ, unspecified','Y','0000-00-00 00:00:00'),(108770,10,'D15.7 ','Benign neoplasm of other specified intrathoracic organs','Y','0000-00-00 00:00:00'),(108768,10,'D15.1 ','Benign neoplasm of heart','Y','0000-00-00 00:00:00'),(108769,10,'D15.2 ','Benign neoplasm of mediastinum','Y','0000-00-00 00:00:00'),(108767,10,'D15.0 ','Benign neoplasm of thymus','Y','0000-00-00 00:00:00'),(108766,10,'D14.4 ','Benign neoplasm of respiratory system, unspecified','Y','0000-00-00 00:00:00'),(108765,10,'D14.32 ','Benign neoplasm of left bronchus and lung','Y','0000-00-00 00:00:00'),(108764,10,'D14.31 ','Benign neoplasm of right bronchus and lung','Y','0000-00-00 00:00:00'),(108763,10,'D14.30 ','Benign neoplasm of unspecified bronchus and lung','Y','0000-00-00 00:00:00'),(108761,10,'D14.1 ','Benign neoplasm of larynx','Y','0000-00-00 00:00:00'),(108762,10,'D14.2 ','Benign neoplasm of trachea','Y','0000-00-00 00:00:00'),(108760,10,'D14.0 ','Benign neoplasm of middle ear, nasal cavity and accessory sinuses','Y','0000-00-00 00:00:00'),(108759,10,'D13.99 ','Benign neoplasm of ill-defined sites within the digestive system','Y','0000-00-00 00:00:00'),(108757,10,'D13.7 ','Benign neoplasm of endocrine pancreas','Y','0000-00-00 00:00:00'),(108758,10,'D13.91 ','Familial adenomatous polyposis','Y','0000-00-00 00:00:00'),(108756,10,'D13.6 ','Benign neoplasm of pancreas','Y','0000-00-00 00:00:00'),(108754,10,'D13.4 ','Benign neoplasm of liver','Y','0000-00-00 00:00:00'),(108755,10,'D13.5 ','Benign neoplasm of extrahepatic bile ducts','Y','0000-00-00 00:00:00'),(108753,10,'D13.39 ','Benign neoplasm of other parts of small intestine','Y','0000-00-00 00:00:00'),(108752,10,'D13.30 ','Benign neoplasm of unspecified part of small intestine','Y','0000-00-00 00:00:00'),(108751,10,'D13.2 ','Benign neoplasm of duodenum','Y','0000-00-00 00:00:00'),(108749,10,'D13.0 ','Benign neoplasm of esophagus','Y','0000-00-00 00:00:00'),(108750,10,'D13.1 ','Benign neoplasm of stomach','Y','0000-00-00 00:00:00'),(108748,10,'D12.9 ','Benign neoplasm of anus and anal canal','Y','0000-00-00 00:00:00'),(108747,10,'D12.8 ','Benign neoplasm of rectum','Y','0000-00-00 00:00:00'),(108745,10,'D12.6 ','Benign neoplasm of colon, unspecified','Y','0000-00-00 00:00:00'),(108746,10,'D12.7 ','Benign neoplasm of rectosigmoid junction','Y','0000-00-00 00:00:00'),(108744,10,'D12.5 ','Benign neoplasm of sigmoid colon','Y','0000-00-00 00:00:00'),(108742,10,'D12.3 ','Benign neoplasm of transverse colon','Y','0000-00-00 00:00:00'),(108743,10,'D12.4 ','Benign neoplasm of descending colon','Y','0000-00-00 00:00:00'),(108741,10,'D12.2 ','Benign neoplasm of ascending colon','Y','0000-00-00 00:00:00'),(108739,10,'D12.0 ','Benign neoplasm of cecum','Y','0000-00-00 00:00:00'),(108740,10,'D12.1 ','Benign neoplasm of appendix','Y','0000-00-00 00:00:00'),(108738,10,'D11.9 ','Benign neoplasm of major salivary gland, unspecified','Y','0000-00-00 00:00:00'),(108737,10,'D11.7 ','Benign neoplasm of other major salivary glands','Y','0000-00-00 00:00:00'),(108736,10,'D11.0 ','Benign neoplasm of parotid gland','Y','0000-00-00 00:00:00'),(108735,10,'D10.9 ','Benign neoplasm of pharynx, unspecified','Y','0000-00-00 00:00:00'),(108733,10,'D10.6 ','Benign neoplasm of nasopharynx','Y','0000-00-00 00:00:00'),(108734,10,'D10.7 ','Benign neoplasm of hypopharynx','Y','0000-00-00 00:00:00'),(108732,10,'D10.5 ','Benign neoplasm of other parts of oropharynx','Y','0000-00-00 00:00:00'),(108731,10,'D10.4 ','Benign neoplasm of tonsil','Y','0000-00-00 00:00:00'),(108729,10,'D10.30 ','Benign neoplasm of unspecified part of mouth','Y','0000-00-00 00:00:00'),(108730,10,'D10.39 ','Benign neoplasm of other parts of mouth','Y','0000-00-00 00:00:00'),(108728,10,'D10.2 ','Benign neoplasm of floor of mouth','Y','0000-00-00 00:00:00'),(108727,10,'D10.1 ','Benign neoplasm of tongue','Y','0000-00-00 00:00:00'),(108725,10,'D09.9 ','Carcinoma in situ, unspecified','Y','0000-00-00 00:00:00'),(108726,10,'D10.0 ','Benign neoplasm of lip','Y','0000-00-00 00:00:00'),(108724,10,'D09.8 ','Carcinoma in situ of other specified sites','Y','0000-00-00 00:00:00'),(108722,10,'D09.22 ','Carcinoma in situ of left eye','Y','0000-00-00 00:00:00'),(108723,10,'D09.3 ','Carcinoma in situ of thyroid and other endocrine glands','Y','0000-00-00 00:00:00'),(108721,10,'D09.21 ','Carcinoma in situ of right eye','Y','0000-00-00 00:00:00'),(108720,10,'D09.20 ','Carcinoma in situ of unspecified eye','Y','0000-00-00 00:00:00'),(108718,10,'D09.10 ','Carcinoma in situ of unspecified urinary organ','Y','0000-00-00 00:00:00'),(108719,10,'D09.19 ','Carcinoma in situ of other urinary organs','Y','0000-00-00 00:00:00'),(108717,10,'D09.0 ','Carcinoma in situ of bladder','Y','0000-00-00 00:00:00'),(108716,10,'D07.69 ','Carcinoma in situ of other male genital organs','Y','0000-00-00 00:00:00'),(108714,10,'D07.60 ','Carcinoma in situ of unspecified male genital organs','Y','0000-00-00 00:00:00'),(108715,10,'D07.61 ','Carcinoma in situ of scrotum','Y','0000-00-00 00:00:00'),(108712,10,'D07.4 ','Carcinoma in situ of penis','Y','0000-00-00 00:00:00'),(108713,10,'D07.5 ','Carcinoma in situ of prostate','Y','0000-00-00 00:00:00'),(108711,10,'D07.39 ','Carcinoma in situ of other female genital organs','Y','0000-00-00 00:00:00'),(108709,10,'D07.2 ','Carcinoma in situ of vagina','Y','0000-00-00 00:00:00'),(108710,10,'D07.30 ','Carcinoma in situ of unspecified female genital organs','Y','0000-00-00 00:00:00'),(108708,10,'D07.1 ','Carcinoma in situ of vulva','Y','0000-00-00 00:00:00'),(108706,10,'D06.9 ','Carcinoma in situ of cervix, unspecified','Y','0000-00-00 00:00:00'),(108707,10,'D07.0 ','Carcinoma in situ of endometrium','Y','0000-00-00 00:00:00'),(108705,10,'D06.7 ','Carcinoma in situ of other parts of cervix','Y','0000-00-00 00:00:00'),(108703,10,'D06.0 ','Carcinoma in situ of endocervix','Y','0000-00-00 00:00:00'),(108704,10,'D06.1 ','Carcinoma in situ of exocervix','Y','0000-00-00 00:00:00'),(108702,10,'D05.92 ','Unspecified type of carcinoma in situ of left breast','Y','0000-00-00 00:00:00'),(108701,10,'D05.91 ','Unspecified type of carcinoma in situ of right breast','Y','0000-00-00 00:00:00'),(108700,10,'D05.90 ','Unspecified type of carcinoma in situ of unspecified breast','Y','0000-00-00 00:00:00'),(108699,10,'D05.82 ','Other specified type of carcinoma in situ of left breast','Y','0000-00-00 00:00:00'),(108698,10,'D05.81 ','Other specified type of carcinoma in situ of right breast','Y','0000-00-00 00:00:00'),(108697,10,'D05.80 ','Other specified type of carcinoma in situ of unspecified breast','Y','0000-00-00 00:00:00'),(108696,10,'D05.12 ','Intraductal carcinoma in situ of left breast','Y','0000-00-00 00:00:00'),(108695,10,'D05.11 ','Intraductal carcinoma in situ of right breast','Y','0000-00-00 00:00:00'),(108694,10,'D05.10 ','Intraductal carcinoma in situ of unspecified breast','Y','0000-00-00 00:00:00'),(108693,10,'D05.02 ','Lobular carcinoma in situ of left breast','Y','0000-00-00 00:00:00'),(108692,10,'D05.01 ','Lobular carcinoma in situ of right breast','Y','0000-00-00 00:00:00'),(108691,10,'D05.00 ','Lobular carcinoma in situ of unspecified breast','Y','0000-00-00 00:00:00'),(108690,10,'D04.9 ','Carcinoma in situ of skin, unspecified','Y','0000-00-00 00:00:00'),(108689,10,'D04.8 ','Carcinoma in situ of skin of other sites','Y','0000-00-00 00:00:00'),(108688,10,'D04.72 ','Carcinoma in situ of skin of left lower limb, including hip','Y','0000-00-00 00:00:00'),(108687,10,'D04.71 ','Carcinoma in situ of skin of right lower limb, including hip','Y','0000-00-00 00:00:00'),(108686,10,'D04.70 ','Carcinoma in situ of skin of unspecified lower limb, including hip','Y','0000-00-00 00:00:00'),(108685,10,'D04.62 ','Carcinoma in situ of skin of left upper limb, including shoulder','Y','0000-00-00 00:00:00'),(108684,10,'D04.61 ','Carcinoma in situ of skin of right upper limb, including shoulder','Y','0000-00-00 00:00:00'),(108683,10,'D04.60 ','Carcinoma in situ of skin of unspecified upper limb, including shoulder','Y','0000-00-00 00:00:00'),(108681,10,'D04.4 ','Carcinoma in situ of skin of scalp and neck','Y','0000-00-00 00:00:00'),(108682,10,'D04.5 ','Carcinoma in situ of skin of trunk','Y','0000-00-00 00:00:00'),(108680,10,'D04.39 ','Carcinoma in situ of skin of other parts of face','Y','0000-00-00 00:00:00'),(108679,10,'D04.30 ','Carcinoma in situ of skin of unspecified part of face','Y','0000-00-00 00:00:00'),(108678,10,'D04.22 ','Carcinoma in situ of skin of left ear and external auricular canal','Y','0000-00-00 00:00:00'),(108677,10,'D04.21 ','Carcinoma in situ of skin of right ear and external auricular canal','Y','0000-00-00 00:00:00'),(108676,10,'D04.20 ','Carcinoma in situ of skin of unspecified ear and external auricular canal','Y','0000-00-00 00:00:00'),(108675,10,'D04.122 ','Carcinoma in situ of skin of left lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(108674,10,'D04.121 ','Carcinoma in situ of skin of left upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(108673,10,'D04.112 ','Carcinoma in situ of skin of right lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(108672,10,'D04.111 ','Carcinoma in situ of skin of right upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(108671,10,'D04.10 ','Carcinoma in situ of skin of unspecified eyelid, including canthus','Y','0000-00-00 00:00:00'),(108670,10,'D04.0 ','Carcinoma in situ of skin of lip','Y','0000-00-00 00:00:00'),(108668,10,'D03.8 ','Melanoma in situ of other sites','Y','0000-00-00 00:00:00'),(108669,10,'D03.9 ','Melanoma in situ, unspecified','Y','0000-00-00 00:00:00'),(108667,10,'D03.72 ','Melanoma in situ of left lower limb, including hip','Y','0000-00-00 00:00:00'),(108666,10,'D03.71 ','Melanoma in situ of right lower limb, including hip','Y','0000-00-00 00:00:00'),(108665,10,'D03.70 ','Melanoma in situ of unspecified lower limb, including hip','Y','0000-00-00 00:00:00'),(108664,10,'D03.62 ','Melanoma in situ of left upper limb, including shoulder','Y','0000-00-00 00:00:00'),(108663,10,'D03.61 ','Melanoma in situ of right upper limb, including shoulder','Y','0000-00-00 00:00:00'),(108661,10,'D03.59 ','Melanoma in situ of other part of trunk','Y','0000-00-00 00:00:00'),(108662,10,'D03.60 ','Melanoma in situ of unspecified upper limb, including shoulder','Y','0000-00-00 00:00:00'),(108660,10,'D03.52 ','Melanoma in situ of breast (skin) (soft tissue)','Y','0000-00-00 00:00:00'),(108659,10,'D03.51 ','Melanoma in situ of anal skin','Y','0000-00-00 00:00:00'),(108657,10,'D03.39 ','Melanoma in situ of other parts of face','Y','0000-00-00 00:00:00'),(108658,10,'D03.4 ','Melanoma in situ of scalp and neck','Y','0000-00-00 00:00:00'),(108656,10,'D03.30 ','Melanoma in situ of unspecified part of face','Y','0000-00-00 00:00:00'),(108655,10,'D03.22 ','Melanoma in situ of left ear and external auricular canal','Y','0000-00-00 00:00:00'),(108654,10,'D03.21 ','Melanoma in situ of right ear and external auricular canal','Y','0000-00-00 00:00:00'),(108652,10,'D03.122 ','Melanoma in situ of left lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(108653,10,'D03.20 ','Melanoma in situ of unspecified ear and external auricular canal','Y','0000-00-00 00:00:00'),(108651,10,'D03.121 ','Melanoma in situ of left upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(108650,10,'D03.112 ','Melanoma in situ of right lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(108649,10,'D03.111 ','Melanoma in situ of right upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(108647,10,'D03.0 ','Melanoma in situ of lip','Y','0000-00-00 00:00:00'),(108648,10,'D03.10 ','Melanoma in situ of unspecified eyelid, including canthus','Y','0000-00-00 00:00:00'),(108646,10,'D02.4 ','Carcinoma in situ of respiratory system, unspecified','Y','0000-00-00 00:00:00'),(108645,10,'D02.3 ','Carcinoma in situ of other parts of respiratory system','Y','0000-00-00 00:00:00'),(108643,10,'D02.21 ','Carcinoma in situ of right bronchus and lung','Y','0000-00-00 00:00:00'),(108644,10,'D02.22 ','Carcinoma in situ of left bronchus and lung','Y','0000-00-00 00:00:00'),(108642,10,'D02.20 ','Carcinoma in situ of unspecified bronchus and lung','Y','0000-00-00 00:00:00'),(108640,10,'D02.0 ','Carcinoma in situ of larynx','Y','0000-00-00 00:00:00'),(108641,10,'D02.1 ','Carcinoma in situ of trachea','Y','0000-00-00 00:00:00'),(108639,10,'D01.9 ','Carcinoma in situ of digestive organ, unspecified','Y','0000-00-00 00:00:00'),(108637,10,'D01.5 ','Carcinoma in situ of liver, gallbladder and bile ducts','Y','0000-00-00 00:00:00'),(108638,10,'D01.7 ','Carcinoma in situ of other specified digestive organs','Y','0000-00-00 00:00:00'),(108636,10,'D01.49 ','Carcinoma in situ of other parts of intestine','Y','0000-00-00 00:00:00'),(108635,10,'D01.40 ','Carcinoma in situ of unspecified part of intestine','Y','0000-00-00 00:00:00'),(108633,10,'D01.2 ','Carcinoma in situ of rectum','Y','0000-00-00 00:00:00'),(108634,10,'D01.3 ','Carcinoma in situ of anus and anal canal','Y','0000-00-00 00:00:00'),(108632,10,'D01.1 ','Carcinoma in situ of rectosigmoid junction','Y','0000-00-00 00:00:00'),(108630,10,'D00.2 ','Carcinoma in situ of stomach','Y','0000-00-00 00:00:00'),(108631,10,'D01.0 ','Carcinoma in situ of colon','Y','0000-00-00 00:00:00'),(108628,10,'D00.08 ','Carcinoma in situ of pharynx','Y','0000-00-00 00:00:00'),(108629,10,'D00.1 ','Carcinoma in situ of esophagus','Y','0000-00-00 00:00:00'),(108626,10,'D00.06 ','Carcinoma in situ of floor of mouth','Y','0000-00-00 00:00:00'),(108627,10,'D00.07 ','Carcinoma in situ of tongue','Y','0000-00-00 00:00:00'),(108625,10,'D00.05 ','Carcinoma in situ of hard palate','Y','0000-00-00 00:00:00'),(108623,10,'D00.03 ','Carcinoma in situ of gingiva and edentulous alveolar ridge','Y','0000-00-00 00:00:00'),(108624,10,'D00.04 ','Carcinoma in situ of soft palate','Y','0000-00-00 00:00:00'),(108622,10,'D00.02 ','Carcinoma in situ of buccal mucosa','Y','0000-00-00 00:00:00'),(108621,10,'D00.01 ','Carcinoma in situ of labial mucosa and vermilion border','Y','0000-00-00 00:00:00'),(108620,10,'D00.00 ','Carcinoma in situ of oral cavity, unspecified site','Y','0000-00-00 00:00:00'),(108618,10,'C96.Z ','Other specified malignant neoplasms of lymphoid, hematopoietic and related tissue','Y','0000-00-00 00:00:00'),(108619,10,'C96.9 ','Malignant neoplasm of lymphoid, hematopoietic and related tissue, unspecified','Y','0000-00-00 00:00:00'),(108616,10,'C96.6 ','Unifocal Langerhans-cell histiocytosis','Y','0000-00-00 00:00:00'),(108617,10,'C96.A ','Histiocytic sarcoma','Y','0000-00-00 00:00:00'),(108615,10,'C96.5 ','Multifocal and unisystemic Langerhans-cell histiocytosis','Y','0000-00-00 00:00:00'),(108613,10,'C96.29 ','Other malignant mast cell neoplasm','Y','0000-00-00 00:00:00'),(108614,10,'C96.4 ','Sarcoma of dendritic cells (accessory cells)','Y','0000-00-00 00:00:00'),(108611,10,'C96.21 ','Aggressive systemic mastocytosis','Y','0000-00-00 00:00:00'),(108612,10,'C96.22 ','Mast cell sarcoma','Y','0000-00-00 00:00:00'),(108610,10,'C96.20 ','Malignant mast cell neoplasm, unspecified','Y','0000-00-00 00:00:00'),(108608,10,'C95.92 ','Leukemia, unspecified, in relapse','Y','0000-00-00 00:00:00'),(108609,10,'C96.0 ','Multifocal and multisystemic (disseminated) Langerhans-cell histiocytosis','Y','0000-00-00 00:00:00'),(108607,10,'C95.91 ','Leukemia, unspecified, in remission','Y','0000-00-00 00:00:00'),(108606,10,'C95.90 ','Leukemia, unspecified not having achieved remission','Y','0000-00-00 00:00:00'),(108604,10,'C95.11 ','Chronic leukemia of unspecified cell type, in remission','Y','0000-00-00 00:00:00'),(108605,10,'C95.12 ','Chronic leukemia of unspecified cell type, in relapse','Y','0000-00-00 00:00:00'),(108603,10,'C95.10 ','Chronic leukemia of unspecified cell type not having achieved remission','Y','0000-00-00 00:00:00'),(108602,10,'C95.02 ','Acute leukemia of unspecified cell type, in relapse','Y','0000-00-00 00:00:00'),(108600,10,'C95.00 ','Acute leukemia of unspecified cell type not having achieved remission','Y','0000-00-00 00:00:00'),(108601,10,'C95.01 ','Acute leukemia of unspecified cell type, in remission','Y','0000-00-00 00:00:00'),(108598,10,'C94.81 ','Other specified leukemias, in remission','Y','0000-00-00 00:00:00'),(108599,10,'C94.82 ','Other specified leukemias, in relapse','Y','0000-00-00 00:00:00'),(108596,10,'C94.6 ','Myelodysplastic disease, not elsewhere classified','Y','0000-00-00 00:00:00'),(108597,10,'C94.80 ','Other specified leukemias not having achieved remission','Y','0000-00-00 00:00:00'),(108595,10,'C94.42 ','Acute panmyelosis with myelofibrosis, in relapse','Y','0000-00-00 00:00:00'),(108593,10,'C94.40 ','Acute panmyelosis with myelofibrosis not having achieved remission','Y','0000-00-00 00:00:00'),(108594,10,'C94.41 ','Acute panmyelosis with myelofibrosis, in remission','Y','0000-00-00 00:00:00'),(108592,10,'C94.32 ','Mast cell leukemia, in relapse','Y','0000-00-00 00:00:00'),(108590,10,'C94.30 ','Mast cell leukemia not having achieved remission','Y','0000-00-00 00:00:00'),(108591,10,'C94.31 ','Mast cell leukemia, in remission','Y','0000-00-00 00:00:00'),(108589,10,'C94.22 ','Acute megakaryoblastic leukemia, in relapse','Y','0000-00-00 00:00:00'),(108588,10,'C94.21 ','Acute megakaryoblastic leukemia, in remission','Y','0000-00-00 00:00:00'),(108587,10,'C94.20 ','Acute megakaryoblastic leukemia not having achieved remission','Y','0000-00-00 00:00:00'),(108586,10,'C94.02 ','Acute erythroid leukemia, in relapse','Y','0000-00-00 00:00:00'),(108585,10,'C94.01 ','Acute erythroid leukemia, in remission','Y','0000-00-00 00:00:00'),(108583,10,'C93.92 ','Monocytic leukemia, unspecified in relapse','Y','0000-00-00 00:00:00'),(108584,10,'C94.00 ','Acute erythroid leukemia, not having achieved remission','Y','0000-00-00 00:00:00'),(108582,10,'C93.91 ','Monocytic leukemia, unspecified in remission','Y','0000-00-00 00:00:00'),(108581,10,'C93.90 ','Monocytic leukemia, unspecified, not having achieved remission','Y','0000-00-00 00:00:00'),(108580,10,'C93.Z2 ','Other monocytic leukemia, in relapse','Y','0000-00-00 00:00:00'),(108579,10,'C93.Z1 ','Other monocytic leukemia, in remission','Y','0000-00-00 00:00:00'),(108578,10,'C93.Z0 ','Other monocytic leukemia, not having achieved remission','Y','0000-00-00 00:00:00'),(108576,10,'C93.31 ','Juvenile myelomonocytic leukemia, in remission','Y','0000-00-00 00:00:00'),(108577,10,'C93.32 ','Juvenile myelomonocytic leukemia, in relapse','Y','0000-00-00 00:00:00'),(108575,10,'C93.30 ','Juvenile myelomonocytic leukemia, not having achieved remission','Y','0000-00-00 00:00:00'),(108574,10,'C93.12 ','Chronic myelomonocytic leukemia, in relapse','Y','0000-00-00 00:00:00'),(108573,10,'C93.11 ','Chronic myelomonocytic leukemia, in remission','Y','0000-00-00 00:00:00'),(108572,10,'C93.10 ','Chronic myelomonocytic leukemia not having achieved remission','Y','0000-00-00 00:00:00'),(108570,10,'C93.01 ','Acute monoblastic/monocytic leukemia, in remission','Y','0000-00-00 00:00:00'),(108571,10,'C93.02 ','Acute monoblastic/monocytic leukemia, in relapse','Y','0000-00-00 00:00:00'),(108569,10,'C93.00 ','Acute monoblastic/monocytic leukemia, not having achieved remission','Y','0000-00-00 00:00:00'),(108568,10,'C92.92 ','Myeloid leukemia, unspecified in relapse','Y','0000-00-00 00:00:00'),(108567,10,'C92.91 ','Myeloid leukemia, unspecified in remission','Y','0000-00-00 00:00:00'),(108566,10,'C92.90 ','Myeloid leukemia, unspecified, not having achieved remission','Y','0000-00-00 00:00:00'),(108565,10,'C92.Z2 ','Other myeloid leukemia, in relapse','Y','0000-00-00 00:00:00'),(108563,10,'C92.Z0 ','Other myeloid leukemia not having achieved remission','Y','0000-00-00 00:00:00'),(108564,10,'C92.Z1 ','Other myeloid leukemia, in remission','Y','0000-00-00 00:00:00'),(108562,10,'C92.A2 ','Acute myeloid leukemia with multilineage dysplasia, in relapse','Y','0000-00-00 00:00:00'),(108561,10,'C92.A1 ','Acute myeloid leukemia with multilineage dysplasia, in remission','Y','0000-00-00 00:00:00'),(108560,10,'C92.A0 ','Acute myeloid leukemia with multilineage dysplasia, not having achieved remission','Y','0000-00-00 00:00:00'),(108559,10,'C92.62 ','Acute myeloid leukemia with 11q23-abnormality in relapse','Y','0000-00-00 00:00:00'),(108557,10,'C92.60 ','Acute myeloid leukemia with 11q23-abnormality not having achieved remission','Y','0000-00-00 00:00:00'),(108558,10,'C92.61 ','Acute myeloid leukemia with 11q23-abnormality in remission','Y','0000-00-00 00:00:00'),(108555,10,'C92.51 ','Acute myelomonocytic leukemia, in remission','Y','0000-00-00 00:00:00'),(108556,10,'C92.52 ','Acute myelomonocytic leukemia, in relapse','Y','0000-00-00 00:00:00'),(108553,10,'C92.42 ','Acute promyelocytic leukemia, in relapse','Y','0000-00-00 00:00:00'),(108554,10,'C92.50 ','Acute myelomonocytic leukemia, not having achieved remission','Y','0000-00-00 00:00:00'),(108551,10,'C92.40 ','Acute promyelocytic leukemia, not having achieved remission','Y','0000-00-00 00:00:00'),(108552,10,'C92.41 ','Acute promyelocytic leukemia, in remission','Y','0000-00-00 00:00:00'),(108549,10,'C92.31 ','Myeloid sarcoma, in remission','Y','0000-00-00 00:00:00'),(108550,10,'C92.32 ','Myeloid sarcoma, in relapse','Y','0000-00-00 00:00:00'),(108547,10,'C92.22 ','Atypical chronic myeloid leukemia, BCR/ABL-negative, in relapse','Y','0000-00-00 00:00:00'),(108548,10,'C92.30 ','Myeloid sarcoma, not having achieved remission','Y','0000-00-00 00:00:00'),(108546,10,'C92.21 ','Atypical chronic myeloid leukemia, BCR/ABL-negative, in remission','Y','0000-00-00 00:00:00'),(108545,10,'C92.20 ','Atypical chronic myeloid leukemia, BCR/ABL-negative, not having achieved remission','Y','0000-00-00 00:00:00'),(108544,10,'C92.12 ','Chronic myeloid leukemia, BCR/ABL-positive, in relapse','Y','0000-00-00 00:00:00'),(108543,10,'C92.11 ','Chronic myeloid leukemia, BCR/ABL-positive, in remission','Y','0000-00-00 00:00:00'),(108542,10,'C92.10 ','Chronic myeloid leukemia, BCR/ABL-positive, not having achieved remission','Y','0000-00-00 00:00:00'),(108541,10,'C92.02 ','Acute myeloblastic leukemia, in relapse','Y','0000-00-00 00:00:00'),(108540,10,'C92.01 ','Acute myeloblastic leukemia, in remission','Y','0000-00-00 00:00:00'),(108539,10,'C92.00 ','Acute myeloblastic leukemia, not having achieved remission','Y','0000-00-00 00:00:00'),(108537,10,'C91.91 ','Lymphoid leukemia, unspecified, in remission','Y','0000-00-00 00:00:00'),(108538,10,'C91.92 ','Lymphoid leukemia, unspecified, in relapse','Y','0000-00-00 00:00:00'),(108536,10,'C91.90 ','Lymphoid leukemia, unspecified not having achieved remission','Y','0000-00-00 00:00:00'),(108534,10,'C91.Z1 ','Other lymphoid leukemia, in remission','Y','0000-00-00 00:00:00'),(108535,10,'C91.Z2 ','Other lymphoid leukemia, in relapse','Y','0000-00-00 00:00:00'),(108533,10,'C91.Z0 ','Other lymphoid leukemia not having achieved remission','Y','0000-00-00 00:00:00'),(108532,10,'C91.A2 ','Mature B-cell leukemia Burkitt-type, in relapse','Y','0000-00-00 00:00:00'),(108531,10,'C91.A1 ','Mature B-cell leukemia Burkitt-type, in remission','Y','0000-00-00 00:00:00'),(108530,10,'C91.A0 ','Mature B-cell leukemia Burkitt-type not having achieved remission','Y','0000-00-00 00:00:00'),(108529,10,'C91.62 ','Prolymphocytic leukemia of T-cell type, in relapse','Y','0000-00-00 00:00:00'),(108528,10,'C91.61 ','Prolymphocytic leukemia of T-cell type, in remission','Y','0000-00-00 00:00:00'),(108527,10,'C91.60 ','Prolymphocytic leukemia of T-cell type not having achieved remission','Y','0000-00-00 00:00:00'),(108526,10,'C91.52 ','Adult T-cell lymphoma/leukemia (HTLV-1-associated), in relapse','Y','0000-00-00 00:00:00'),(108525,10,'C91.51 ','Adult T-cell lymphoma/leukemia (HTLV-1-associated), in remission','Y','0000-00-00 00:00:00'),(108523,10,'C91.42 ','Hairy cell leukemia, in relapse','Y','0000-00-00 00:00:00'),(108524,10,'C91.50 ','Adult T-cell lymphoma/leukemia (HTLV-1-associated) not having achieved remission','Y','0000-00-00 00:00:00'),(108522,10,'C91.41 ','Hairy cell leukemia, in remission','Y','0000-00-00 00:00:00'),(108521,10,'C91.40 ','Hairy cell leukemia not having achieved remission','Y','0000-00-00 00:00:00'),(108520,10,'C91.32 ','Prolymphocytic leukemia of B-cell type, in relapse','Y','0000-00-00 00:00:00'),(108518,10,'C91.30 ','Prolymphocytic leukemia of B-cell type not having achieved remission','Y','0000-00-00 00:00:00'),(108519,10,'C91.31 ','Prolymphocytic leukemia of B-cell type, in remission','Y','0000-00-00 00:00:00'),(108517,10,'C91.12 ','Chronic lymphocytic leukemia of B-cell type in relapse','Y','0000-00-00 00:00:00'),(108516,10,'C91.11 ','Chronic lymphocytic leukemia of B-cell type in remission','Y','0000-00-00 00:00:00'),(108515,10,'C91.10 ','Chronic lymphocytic leukemia of B-cell type not having achieved remission','Y','0000-00-00 00:00:00'),(108513,10,'C91.01 ','Acute lymphoblastic leukemia, in remission','Y','0000-00-00 00:00:00'),(108514,10,'C91.02 ','Acute lymphoblastic leukemia, in relapse','Y','0000-00-00 00:00:00'),(108511,10,'C90.32 ','Solitary plasmacytoma in relapse','Y','0000-00-00 00:00:00'),(108512,10,'C91.00 ','Acute lymphoblastic leukemia not having achieved remission','Y','0000-00-00 00:00:00'),(108510,10,'C90.31 ','Solitary plasmacytoma in remission','Y','0000-00-00 00:00:00'),(108509,10,'C90.30 ','Solitary plasmacytoma not having achieved remission','Y','0000-00-00 00:00:00'),(108508,10,'C90.22 ','Extramedullary plasmacytoma in relapse','Y','0000-00-00 00:00:00'),(108507,10,'C90.21 ','Extramedullary plasmacytoma in remission','Y','0000-00-00 00:00:00'),(108506,10,'C90.20 ','Extramedullary plasmacytoma not having achieved remission','Y','0000-00-00 00:00:00'),(108505,10,'C90.12 ','Plasma cell leukemia in relapse','Y','0000-00-00 00:00:00'),(108504,10,'C90.11 ','Plasma cell leukemia in remission','Y','0000-00-00 00:00:00'),(108503,10,'C90.10 ','Plasma cell leukemia not having achieved remission','Y','0000-00-00 00:00:00'),(108501,10,'C90.01 ','Multiple myeloma in remission','Y','0000-00-00 00:00:00'),(108502,10,'C90.02 ','Multiple myeloma in relapse','Y','0000-00-00 00:00:00'),(108500,10,'C90.00 ','Multiple myeloma not having achieved remission','Y','0000-00-00 00:00:00'),(108499,10,'C88.9 ','Malignant immunoproliferative disease, unspecified','Y','0000-00-00 00:00:00'),(108498,10,'C88.8 ','Other malignant immunoproliferative diseases','Y','0000-00-00 00:00:00'),(108497,10,'C88.4 ','Extranodal marginal zone B-cell lymphoma of mucosa-associated lymphoid tissue [MALT-lymphoma]','Y','0000-00-00 00:00:00'),(108496,10,'C88.3 ','Immunoproliferative small intestinal disease','Y','0000-00-00 00:00:00'),(108495,10,'C88.2 ','Heavy chain disease','Y','0000-00-00 00:00:00'),(108493,10,'C86.6 ','Primary cutaneous CD30-positive T-cell proliferations','Y','0000-00-00 00:00:00'),(108494,10,'C88.0 ','Waldenstrom macroglobulinemia','Y','0000-00-00 00:00:00'),(108491,10,'C86.4 ','Blastic NK-cell lymphoma','Y','0000-00-00 00:00:00'),(108492,10,'C86.5 ','Angioimmunoblastic T-cell lymphoma','Y','0000-00-00 00:00:00'),(108490,10,'C86.3 ','Subcutaneous panniculitis-like T-cell lymphoma','Y','0000-00-00 00:00:00'),(108488,10,'C86.1 ','Hepatosplenic T-cell lymphoma','Y','0000-00-00 00:00:00'),(108489,10,'C86.2 ','Enteropathy-type (intestinal) T-cell lymphoma','Y','0000-00-00 00:00:00'),(108487,10,'C86.0 ','Extranodal NK/T-cell lymphoma, nasal type','Y','0000-00-00 00:00:00'),(108486,10,'C85.99 ','Non-Hodgkin lymphoma, unspecified, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108485,10,'C85.98 ','Non-Hodgkin lymphoma, unspecified, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108484,10,'C85.97 ','Non-Hodgkin lymphoma, unspecified, spleen','Y','0000-00-00 00:00:00'),(108483,10,'C85.96 ','Non-Hodgkin lymphoma, unspecified, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108482,10,'C85.95 ','Non-Hodgkin lymphoma, unspecified, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108481,10,'C85.94 ','Non-Hodgkin lymphoma, unspecified, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108480,10,'C85.93 ','Non-Hodgkin lymphoma, unspecified, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108479,10,'C85.92 ','Non-Hodgkin lymphoma, unspecified, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108478,10,'C85.91 ','Non-Hodgkin lymphoma, unspecified, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108477,10,'C85.90 ','Non-Hodgkin lymphoma, unspecified, unspecified site','Y','0000-00-00 00:00:00'),(108476,10,'C85.89 ','Other specified types of non-Hodgkin lymphoma, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108475,10,'C85.88 ','Other specified types of non-Hodgkin lymphoma, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108474,10,'C85.87 ','Other specified types of non-Hodgkin lymphoma, spleen','Y','0000-00-00 00:00:00'),(108473,10,'C85.86 ','Other specified types of non-Hodgkin lymphoma, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108472,10,'C85.85 ','Other specified types of non-Hodgkin lymphoma, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108471,10,'C85.84 ','Other specified types of non-Hodgkin lymphoma, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108470,10,'C85.83 ','Other specified types of non-Hodgkin lymphoma, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108469,10,'C85.82 ','Other specified types of non-Hodgkin lymphoma, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108468,10,'C85.81 ','Other specified types of non-Hodgkin lymphoma, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108467,10,'C85.80 ','Other specified types of non-Hodgkin lymphoma, unspecified site','Y','0000-00-00 00:00:00'),(108466,10,'C85.29 ','Mediastinal (thymic) large B-cell lymphoma, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108464,10,'C85.27 ','Mediastinal (thymic) large B-cell lymphoma, spleen','Y','0000-00-00 00:00:00'),(108465,10,'C85.28 ','Mediastinal (thymic) large B-cell lymphoma, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108463,10,'C85.26 ','Mediastinal (thymic) large B-cell lymphoma, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108462,10,'C85.25 ','Mediastinal (thymic) large B-cell lymphoma, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108461,10,'C85.24 ','Mediastinal (thymic) large B-cell lymphoma, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108460,10,'C85.23 ','Mediastinal (thymic) large B-cell lymphoma, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108459,10,'C85.22 ','Mediastinal (thymic) large B-cell lymphoma, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108458,10,'C85.21 ','Mediastinal (thymic) large B-cell lymphoma, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108457,10,'C85.20 ','Mediastinal (thymic) large B-cell lymphoma, unspecified site','Y','0000-00-00 00:00:00'),(108456,10,'C85.19 ','Unspecified B-cell lymphoma, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108455,10,'C85.18 ','Unspecified B-cell lymphoma, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108453,10,'C85.16 ','Unspecified B-cell lymphoma, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108454,10,'C85.17 ','Unspecified B-cell lymphoma, spleen','Y','0000-00-00 00:00:00'),(108452,10,'C85.15 ','Unspecified B-cell lymphoma, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108451,10,'C85.14 ','Unspecified B-cell lymphoma, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108450,10,'C85.13 ','Unspecified B-cell lymphoma, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108449,10,'C85.12 ','Unspecified B-cell lymphoma, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108448,10,'C85.11 ','Unspecified B-cell lymphoma, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108447,10,'C85.10 ','Unspecified B-cell lymphoma, unspecified site','Y','0000-00-00 00:00:00'),(108446,10,'C84.99 ','Mature T/NK-cell lymphomas, unspecified, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108444,10,'C84.97 ','Mature T/NK-cell lymphomas, unspecified, spleen','Y','0000-00-00 00:00:00'),(108445,10,'C84.98 ','Mature T/NK-cell lymphomas, unspecified, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108443,10,'C84.96 ','Mature T/NK-cell lymphomas, unspecified, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108442,10,'C84.95 ','Mature T/NK-cell lymphomas, unspecified, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108441,10,'C84.94 ','Mature T/NK-cell lymphomas, unspecified, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108440,10,'C84.93 ','Mature T/NK-cell lymphomas, unspecified, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108439,10,'C84.92 ','Mature T/NK-cell lymphomas, unspecified, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108438,10,'C84.91 ','Mature T/NK-cell lymphomas, unspecified, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108437,10,'C84.90 ','Mature T/NK-cell lymphomas, unspecified, unspecified site','Y','0000-00-00 00:00:00'),(108436,10,'C84.Z9 ','Other mature T/NK-cell lymphomas, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108435,10,'C84.Z8 ','Other mature T/NK-cell lymphomas, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108434,10,'C84.Z7 ','Other mature T/NK-cell lymphomas, spleen','Y','0000-00-00 00:00:00'),(108433,10,'C84.Z6 ','Other mature T/NK-cell lymphomas, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108432,10,'C84.Z5 ','Other mature T/NK-cell lymphomas, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108431,10,'C84.Z4 ','Other mature T/NK-cell lymphomas, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108430,10,'C84.Z3 ','Other mature T/NK-cell lymphomas, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108429,10,'C84.Z2 ','Other mature T/NK-cell lymphomas, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108428,10,'C84.Z1 ','Other mature T/NK-cell lymphomas, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108427,10,'C84.Z0 ','Other mature T/NK-cell lymphomas, unspecified site','Y','0000-00-00 00:00:00'),(108426,10,'C84.A9 ','Cutaneous T-cell lymphoma, unspecified, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108424,10,'C84.A7 ','Cutaneous T-cell lymphoma, unspecified, spleen','Y','0000-00-00 00:00:00'),(108425,10,'C84.A8 ','Cutaneous T-cell lymphoma, unspecified, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108423,10,'C84.A6 ','Cutaneous T-cell lymphoma, unspecified, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108422,10,'C84.A5 ','Cutaneous T-cell lymphoma, unspecified, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108421,10,'C84.A4 ','Cutaneous T-cell lymphoma, unspecified, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108420,10,'C84.A3 ','Cutaneous T-cell lymphoma, unspecified, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108419,10,'C84.A2 ','Cutaneous T-cell lymphoma, unspecified, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108418,10,'C84.A1 ','Cutaneous T-cell lymphoma, unspecified lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108417,10,'C84.A0 ','Cutaneous T-cell lymphoma, unspecified, unspecified site','Y','0000-00-00 00:00:00'),(108416,10,'C84.7A ','Anaplastic large cell lymphoma, ALK-negative, breast','Y','0000-00-00 00:00:00'),(108415,10,'C84.79 ','Anaplastic large cell lymphoma, ALK-negative, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108413,10,'C84.77 ','Anaplastic large cell lymphoma, ALK-negative, spleen','Y','0000-00-00 00:00:00'),(108414,10,'C84.78 ','Anaplastic large cell lymphoma, ALK-negative, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108412,10,'C84.76 ','Anaplastic large cell lymphoma, ALK-negative, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108411,10,'C84.75 ','Anaplastic large cell lymphoma, ALK-negative, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108410,10,'C84.74 ','Anaplastic large cell lymphoma, ALK-negative, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108409,10,'C84.73 ','Anaplastic large cell lymphoma, ALK-negative, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108408,10,'C84.72 ','Anaplastic large cell lymphoma, ALK-negative, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108407,10,'C84.71 ','Anaplastic large cell lymphoma, ALK-negative, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108406,10,'C84.70 ','Anaplastic large cell lymphoma, ALK-negative, unspecified site','Y','0000-00-00 00:00:00'),(108405,10,'C84.69 ','Anaplastic large cell lymphoma, ALK-positive, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108404,10,'C84.68 ','Anaplastic large cell lymphoma, ALK-positive, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108403,10,'C84.67 ','Anaplastic large cell lymphoma, ALK-positive, spleen','Y','0000-00-00 00:00:00'),(108402,10,'C84.66 ','Anaplastic large cell lymphoma, ALK-positive, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108401,10,'C84.65 ','Anaplastic large cell lymphoma, ALK-positive, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108400,10,'C84.64 ','Anaplastic large cell lymphoma, ALK-positive, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108399,10,'C84.63 ','Anaplastic large cell lymphoma, ALK-positive, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108398,10,'C84.62 ','Anaplastic large cell lymphoma, ALK-positive, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108397,10,'C84.61 ','Anaplastic large cell lymphoma, ALK-positive, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108396,10,'C84.60 ','Anaplastic large cell lymphoma, ALK-positive, unspecified site','Y','0000-00-00 00:00:00'),(108395,10,'C84.49 ','Peripheral T-cell lymphoma, not elsewhere classified, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108394,10,'C84.48 ','Peripheral T-cell lymphoma, not elsewhere classified, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108393,10,'C84.47 ','Peripheral T-cell lymphoma, not elsewhere classified, spleen','Y','0000-00-00 00:00:00'),(108392,10,'C84.46 ','Peripheral T-cell lymphoma, not elsewhere classified, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108391,10,'C84.45 ','Peripheral T-cell lymphoma, not elsewhere classified, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108390,10,'C84.44 ','Peripheral T-cell lymphoma, not elsewhere classified, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108389,10,'C84.43 ','Peripheral T-cell lymphoma, not elsewhere classified, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108388,10,'C84.42 ','Peripheral T-cell lymphoma, not elsewhere classified, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108386,10,'C84.40 ','Peripheral T-cell lymphoma, not elsewhere classified, unspecified site','Y','0000-00-00 00:00:00'),(108387,10,'C84.41 ','Peripheral T-cell lymphoma, not elsewhere classified, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108385,10,'C84.19 ','Sezary disease, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108383,10,'C84.17 ','Sezary disease, spleen','Y','0000-00-00 00:00:00'),(108384,10,'C84.18 ','Sezary disease, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108381,10,'C84.15 ','Sezary disease, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108382,10,'C84.16 ','Sezary disease, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108380,10,'C84.14 ','Sezary disease, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108378,10,'C84.12 ','Sezary disease, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108379,10,'C84.13 ','Sezary disease, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108377,10,'C84.11 ','Sezary disease, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108375,10,'C84.09 ','Mycosis fungoides, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108376,10,'C84.10 ','Sezary disease, unspecified site','Y','0000-00-00 00:00:00'),(108374,10,'C84.08 ','Mycosis fungoides, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108372,10,'C84.06 ','Mycosis fungoides, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108373,10,'C84.07 ','Mycosis fungoides, spleen','Y','0000-00-00 00:00:00'),(108371,10,'C84.05 ','Mycosis fungoides, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108370,10,'C84.04 ','Mycosis fungoides, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108369,10,'C84.03 ','Mycosis fungoides, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108368,10,'C84.02 ','Mycosis fungoides, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108366,10,'C84.00 ','Mycosis fungoides, unspecified site','Y','0000-00-00 00:00:00'),(108367,10,'C84.01 ','Mycosis fungoides, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108365,10,'C83.99 ','Non-follicular (diffuse) lymphoma, unspecified, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108364,10,'C83.98 ','Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108363,10,'C83.97 ','Non-follicular (diffuse) lymphoma, unspecified, spleen','Y','0000-00-00 00:00:00'),(108362,10,'C83.96 ','Non-follicular (diffuse) lymphoma, unspecified, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108361,10,'C83.95 ','Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108360,10,'C83.94 ','Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108359,10,'C83.93 ','Non-follicular (diffuse) lymphoma, unspecified, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108358,10,'C83.92 ','Non-follicular (diffuse) lymphoma, unspecified, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108357,10,'C83.91 ','Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108356,10,'C83.90 ','Non-follicular (diffuse) lymphoma, unspecified, unspecified site','Y','0000-00-00 00:00:00'),(108355,10,'C83.89 ','Other non-follicular lymphoma, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108354,10,'C83.88 ','Other non-follicular lymphoma, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108352,10,'C83.86 ','Other non-follicular lymphoma, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108353,10,'C83.87 ','Other non-follicular lymphoma, spleen','Y','0000-00-00 00:00:00'),(108351,10,'C83.85 ','Other non-follicular lymphoma, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108350,10,'C83.84 ','Other non-follicular lymphoma, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108349,10,'C83.83 ','Other non-follicular lymphoma, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108348,10,'C83.82 ','Other non-follicular lymphoma, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108347,10,'C83.81 ','Other non-follicular lymphoma, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108346,10,'C83.80 ','Other non-follicular lymphoma, unspecified site','Y','0000-00-00 00:00:00'),(108345,10,'C83.79 ','Burkitt lymphoma, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108344,10,'C83.78 ','Burkitt lymphoma, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108342,10,'C83.76 ','Burkitt lymphoma, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108343,10,'C83.77 ','Burkitt lymphoma, spleen','Y','0000-00-00 00:00:00'),(108341,10,'C83.75 ','Burkitt lymphoma, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108340,10,'C83.74 ','Burkitt lymphoma, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108339,10,'C83.73 ','Burkitt lymphoma, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108338,10,'C83.72 ','Burkitt lymphoma, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108336,10,'C83.70 ','Burkitt lymphoma, unspecified site','Y','0000-00-00 00:00:00'),(108337,10,'C83.71 ','Burkitt lymphoma, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108335,10,'C83.59 ','Lymphoblastic (diffuse) lymphoma, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108334,10,'C83.58 ','Lymphoblastic (diffuse) lymphoma, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108333,10,'C83.57 ','Lymphoblastic (diffuse) lymphoma, spleen','Y','0000-00-00 00:00:00'),(108332,10,'C83.56 ','Lymphoblastic (diffuse) lymphoma, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108331,10,'C83.55 ','Lymphoblastic (diffuse) lymphoma, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108330,10,'C83.54 ','Lymphoblastic (diffuse) lymphoma, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108329,10,'C83.53 ','Lymphoblastic (diffuse) lymphoma, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108328,10,'C83.52 ','Lymphoblastic (diffuse) lymphoma, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108327,10,'C83.51 ','Lymphoblastic (diffuse) lymphoma, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108326,10,'C83.50 ','Lymphoblastic (diffuse) lymphoma, unspecified site','Y','0000-00-00 00:00:00'),(108325,10,'C83.39 ','Diffuse large B-cell lymphoma, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108324,10,'C83.38 ','Diffuse large B-cell lymphoma, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108323,10,'C83.37 ','Diffuse large B-cell lymphoma, spleen','Y','0000-00-00 00:00:00'),(108322,10,'C83.36 ','Diffuse large B-cell lymphoma, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108321,10,'C83.35 ','Diffuse large B-cell lymphoma, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108319,10,'C83.33 ','Diffuse large B-cell lymphoma, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108320,10,'C83.34 ','Diffuse large B-cell lymphoma, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108318,10,'C83.32 ','Diffuse large B-cell lymphoma, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108317,10,'C83.31 ','Diffuse large B-cell lymphoma, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108315,10,'C83.19 ','Mantle cell lymphoma, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108316,10,'C83.30 ','Diffuse large B-cell lymphoma, unspecified site','Y','0000-00-00 00:00:00'),(108314,10,'C83.18 ','Mantle cell lymphoma, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108312,10,'C83.16 ','Mantle cell lymphoma, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108313,10,'C83.17 ','Mantle cell lymphoma, spleen','Y','0000-00-00 00:00:00'),(108311,10,'C83.15 ','Mantle cell lymphoma, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108310,10,'C83.14 ','Mantle cell lymphoma, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108309,10,'C83.13 ','Mantle cell lymphoma, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108308,10,'C83.12 ','Mantle cell lymphoma, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108307,10,'C83.11 ','Mantle cell lymphoma, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108306,10,'C83.10 ','Mantle cell lymphoma, unspecified site','Y','0000-00-00 00:00:00'),(108304,10,'C83.08 ','Small cell B-cell lymphoma, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108305,10,'C83.09 ','Small cell B-cell lymphoma, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108303,10,'C83.07 ','Small cell B-cell lymphoma, spleen','Y','0000-00-00 00:00:00'),(108302,10,'C83.06 ','Small cell B-cell lymphoma, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108301,10,'C83.05 ','Small cell B-cell lymphoma, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108300,10,'C83.04 ','Small cell B-cell lymphoma, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108298,10,'C83.02 ','Small cell B-cell lymphoma, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108299,10,'C83.03 ','Small cell B-cell lymphoma, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108297,10,'C83.01 ','Small cell B-cell lymphoma, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108296,10,'C83.00 ','Small cell B-cell lymphoma, unspecified site','Y','0000-00-00 00:00:00'),(108294,10,'C82.98 ','Follicular lymphoma, unspecified, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108295,10,'C82.99 ','Follicular lymphoma, unspecified, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108293,10,'C82.97 ','Follicular lymphoma, unspecified, spleen','Y','0000-00-00 00:00:00'),(108292,10,'C82.96 ','Follicular lymphoma, unspecified, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108290,10,'C82.94 ','Follicular lymphoma, unspecified, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108291,10,'C82.95 ','Follicular lymphoma, unspecified, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108289,10,'C82.93 ','Follicular lymphoma, unspecified, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108288,10,'C82.92 ','Follicular lymphoma, unspecified, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108286,10,'C82.90 ','Follicular lymphoma, unspecified, unspecified site','Y','0000-00-00 00:00:00'),(108287,10,'C82.91 ','Follicular lymphoma, unspecified, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108285,10,'C82.89 ','Other types of follicular lymphoma, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108284,10,'C82.88 ','Other types of follicular lymphoma, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108282,10,'C82.86 ','Other types of follicular lymphoma, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108283,10,'C82.87 ','Other types of follicular lymphoma, spleen','Y','0000-00-00 00:00:00'),(108281,10,'C82.85 ','Other types of follicular lymphoma, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108280,10,'C82.84 ','Other types of follicular lymphoma, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108279,10,'C82.83 ','Other types of follicular lymphoma, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108278,10,'C82.82 ','Other types of follicular lymphoma, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108277,10,'C82.81 ','Other types of follicular lymphoma, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108275,10,'C82.69 ','Cutaneous follicle center lymphoma, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108276,10,'C82.80 ','Other types of follicular lymphoma, unspecified site','Y','0000-00-00 00:00:00'),(108273,10,'C82.67 ','Cutaneous follicle center lymphoma, spleen','Y','0000-00-00 00:00:00'),(108274,10,'C82.68 ','Cutaneous follicle center lymphoma, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108272,10,'C82.66 ','Cutaneous follicle center lymphoma, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108270,10,'C82.64 ','Cutaneous follicle center lymphoma, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108271,10,'C82.65 ','Cutaneous follicle center lymphoma, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108269,10,'C82.63 ','Cutaneous follicle center lymphoma, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108268,10,'C82.62 ','Cutaneous follicle center lymphoma, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108266,10,'C82.60 ','Cutaneous follicle center lymphoma, unspecified site','Y','0000-00-00 00:00:00'),(108267,10,'C82.61 ','Cutaneous follicle center lymphoma, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108265,10,'C82.59 ','Diffuse follicle center lymphoma, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108264,10,'C82.58 ','Diffuse follicle center lymphoma, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108263,10,'C82.57 ','Diffuse follicle center lymphoma, spleen','Y','0000-00-00 00:00:00'),(108262,10,'C82.56 ','Diffuse follicle center lymphoma, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108261,10,'C82.55 ','Diffuse follicle center lymphoma, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108260,10,'C82.54 ','Diffuse follicle center lymphoma, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108259,10,'C82.53 ','Diffuse follicle center lymphoma, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108258,10,'C82.52 ','Diffuse follicle center lymphoma, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108257,10,'C82.51 ','Diffuse follicle center lymphoma, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108256,10,'C82.50 ','Diffuse follicle center lymphoma, unspecified site','Y','0000-00-00 00:00:00'),(108255,10,'C82.49 ','Follicular lymphoma grade IIIb, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108253,10,'C82.47 ','Follicular lymphoma grade IIIb, spleen','Y','0000-00-00 00:00:00'),(108254,10,'C82.48 ','Follicular lymphoma grade IIIb, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108252,10,'C82.46 ','Follicular lymphoma grade IIIb, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108251,10,'C82.45 ','Follicular lymphoma grade IIIb, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108250,10,'C82.44 ','Follicular lymphoma grade IIIb, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108249,10,'C82.43 ','Follicular lymphoma grade IIIb, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108248,10,'C82.42 ','Follicular lymphoma grade IIIb, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108247,10,'C82.41 ','Follicular lymphoma grade IIIb, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108246,10,'C82.40 ','Follicular lymphoma grade IIIb, unspecified site','Y','0000-00-00 00:00:00'),(108245,10,'C82.39 ','Follicular lymphoma grade IIIa, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108243,10,'C82.37 ','Follicular lymphoma grade IIIa, spleen','Y','0000-00-00 00:00:00'),(108244,10,'C82.38 ','Follicular lymphoma grade IIIa, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108242,10,'C82.36 ','Follicular lymphoma grade IIIa, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108241,10,'C82.35 ','Follicular lymphoma grade IIIa, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108240,10,'C82.34 ','Follicular lymphoma grade IIIa, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108239,10,'C82.33 ','Follicular lymphoma grade IIIa, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108238,10,'C82.32 ','Follicular lymphoma grade IIIa, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108236,10,'C82.30 ','Follicular lymphoma grade IIIa, unspecified site','Y','0000-00-00 00:00:00'),(108237,10,'C82.31 ','Follicular lymphoma grade IIIa, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108235,10,'C82.29 ','Follicular lymphoma grade III, unspecified, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108233,10,'C82.27 ','Follicular lymphoma grade III, unspecified, spleen','Y','0000-00-00 00:00:00'),(108234,10,'C82.28 ','Follicular lymphoma grade III, unspecified, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108232,10,'C82.26 ','Follicular lymphoma grade III, unspecified, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108230,10,'C82.24 ','Follicular lymphoma grade III, unspecified, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108231,10,'C82.25 ','Follicular lymphoma grade III, unspecified, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108229,10,'C82.23 ','Follicular lymphoma grade III, unspecified, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108227,10,'C82.21 ','Follicular lymphoma grade III, unspecified, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108228,10,'C82.22 ','Follicular lymphoma grade III, unspecified, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108226,10,'C82.20 ','Follicular lymphoma grade III, unspecified, unspecified site','Y','0000-00-00 00:00:00'),(108225,10,'C82.19 ','Follicular lymphoma grade II, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108223,10,'C82.17 ','Follicular lymphoma grade II, spleen','Y','0000-00-00 00:00:00'),(108224,10,'C82.18 ','Follicular lymphoma grade II, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108222,10,'C82.16 ','Follicular lymphoma grade II, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108221,10,'C82.15 ','Follicular lymphoma grade II, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108220,10,'C82.14 ','Follicular lymphoma grade II, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108218,10,'C82.12 ','Follicular lymphoma grade II, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108219,10,'C82.13 ','Follicular lymphoma grade II, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108217,10,'C82.11 ','Follicular lymphoma grade II, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108216,10,'C82.10 ','Follicular lymphoma grade II, unspecified site','Y','0000-00-00 00:00:00'),(108214,10,'C82.08 ','Follicular lymphoma grade I, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108215,10,'C82.09 ','Follicular lymphoma grade I, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108213,10,'C82.07 ','Follicular lymphoma grade I, spleen','Y','0000-00-00 00:00:00'),(108212,10,'C82.06 ','Follicular lymphoma grade I, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108211,10,'C82.05 ','Follicular lymphoma grade I, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108210,10,'C82.04 ','Follicular lymphoma grade I, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108209,10,'C82.03 ','Follicular lymphoma grade I, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108208,10,'C82.02 ','Follicular lymphoma grade I, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108207,10,'C82.01 ','Follicular lymphoma grade I, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108206,10,'C82.00 ','Follicular lymphoma grade I, unspecified site','Y','0000-00-00 00:00:00'),(108205,10,'C81.99 ','Hodgkin lymphoma, unspecified, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108203,10,'C81.97 ','Hodgkin lymphoma, unspecified, spleen','Y','0000-00-00 00:00:00'),(108204,10,'C81.98 ','Hodgkin lymphoma, unspecified, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108202,10,'C81.96 ','Hodgkin lymphoma, unspecified, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108201,10,'C81.95 ','Hodgkin lymphoma, unspecified, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108200,10,'C81.94 ','Hodgkin lymphoma, unspecified, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108199,10,'C81.93 ','Hodgkin lymphoma, unspecified, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108198,10,'C81.92 ','Hodgkin lymphoma, unspecified, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108197,10,'C81.91 ','Hodgkin lymphoma, unspecified, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108195,10,'C81.79 ','Other Hodgkin lymphoma, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108196,10,'C81.90 ','Hodgkin lymphoma, unspecified, unspecified site','Y','0000-00-00 00:00:00'),(108194,10,'C81.78 ','Other Hodgkin lymphoma, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108192,10,'C81.76 ','Other Hodgkin lymphoma, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108193,10,'C81.77 ','Other Hodgkin lymphoma, spleen','Y','0000-00-00 00:00:00'),(108191,10,'C81.75 ','Other Hodgkin lymphoma, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108190,10,'C81.74 ','Other Hodgkin lymphoma, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108189,10,'C81.73 ','Other Hodgkin lymphoma, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108188,10,'C81.72 ','Other Hodgkin lymphoma, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108187,10,'C81.71 ','Other Hodgkin lymphoma, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108186,10,'C81.70 ','Other Hodgkin lymphoma, unspecified site','Y','0000-00-00 00:00:00'),(108185,10,'C81.49 ','Lymphocyte-rich Hodgkin lymphoma, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108184,10,'C81.48 ','Lymphocyte-rich Hodgkin lymphoma, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108183,10,'C81.47 ','Lymphocyte-rich Hodgkin lymphoma, spleen','Y','0000-00-00 00:00:00'),(108182,10,'C81.46 ','Lymphocyte-rich Hodgkin lymphoma, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108181,10,'C81.45 ','Lymphocyte-rich Hodgkin lymphoma, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108180,10,'C81.44 ','Lymphocyte-rich Hodgkin lymphoma, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108179,10,'C81.43 ','Lymphocyte-rich Hodgkin lymphoma, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108178,10,'C81.42 ','Lymphocyte-rich Hodgkin lymphoma, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108177,10,'C81.41 ','Lymphocyte-rich Hodgkin lymphoma, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108176,10,'C81.40 ','Lymphocyte-rich Hodgkin lymphoma, unspecified site','Y','0000-00-00 00:00:00'),(108175,10,'C81.39 ','Lymphocyte depleted Hodgkin lymphoma, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108174,10,'C81.38 ','Lymphocyte depleted Hodgkin lymphoma, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108172,10,'C81.36 ','Lymphocyte depleted Hodgkin lymphoma, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108173,10,'C81.37 ','Lymphocyte depleted Hodgkin lymphoma, spleen','Y','0000-00-00 00:00:00'),(108171,10,'C81.35 ','Lymphocyte depleted Hodgkin lymphoma, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108170,10,'C81.34 ','Lymphocyte depleted Hodgkin lymphoma, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108169,10,'C81.33 ','Lymphocyte depleted Hodgkin lymphoma, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108168,10,'C81.32 ','Lymphocyte depleted Hodgkin lymphoma, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108167,10,'C81.31 ','Lymphocyte depleted Hodgkin lymphoma, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108166,10,'C81.30 ','Lymphocyte depleted Hodgkin lymphoma, unspecified site','Y','0000-00-00 00:00:00'),(108165,10,'C81.29 ','Mixed cellularity Hodgkin lymphoma, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108164,10,'C81.28 ','Mixed cellularity Hodgkin lymphoma, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108163,10,'C81.27 ','Mixed cellularity Hodgkin lymphoma, spleen','Y','0000-00-00 00:00:00'),(108162,10,'C81.26 ','Mixed cellularity Hodgkin lymphoma, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108161,10,'C81.25 ','Mixed cellularity Hodgkin lymphoma, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108160,10,'C81.24 ','Mixed cellularity Hodgkin lymphoma, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108159,10,'C81.23 ','Mixed cellularity Hodgkin lymphoma, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108158,10,'C81.22 ','Mixed cellularity Hodgkin lymphoma, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108157,10,'C81.21 ','Mixed cellularity Hodgkin lymphoma, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108156,10,'C81.20 ','Mixed cellularity Hodgkin lymphoma, unspecified site','Y','0000-00-00 00:00:00'),(108155,10,'C81.19 ','Nodular sclerosis Hodgkin lymphoma, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108154,10,'C81.18 ','Nodular sclerosis Hodgkin lymphoma, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108153,10,'C81.17 ','Nodular sclerosis Hodgkin lymphoma, spleen','Y','0000-00-00 00:00:00'),(108152,10,'C81.16 ','Nodular sclerosis Hodgkin lymphoma, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108151,10,'C81.15 ','Nodular sclerosis Hodgkin lymphoma, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108150,10,'C81.14 ','Nodular sclerosis Hodgkin lymphoma, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108149,10,'C81.13 ','Nodular sclerosis Hodgkin lymphoma, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108148,10,'C81.12 ','Nodular sclerosis Hodgkin lymphoma, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108147,10,'C81.11 ','Nodular sclerosis Hodgkin lymphoma, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108146,10,'C81.10 ','Nodular sclerosis Hodgkin lymphoma, unspecified site','Y','0000-00-00 00:00:00'),(108145,10,'C81.09 ','Nodular lymphocyte predominant Hodgkin lymphoma, extranodal and solid organ sites','Y','0000-00-00 00:00:00'),(108143,10,'C81.07 ','Nodular lymphocyte predominant Hodgkin lymphoma, spleen','Y','0000-00-00 00:00:00'),(108144,10,'C81.08 ','Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of multiple sites','Y','0000-00-00 00:00:00'),(108142,10,'C81.06 ','Nodular lymphocyte predominant Hodgkin lymphoma, intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108141,10,'C81.05 ','Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of inguinal region and lower limb','Y','0000-00-00 00:00:00'),(108140,10,'C81.04 ','Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of axilla and upper limb','Y','0000-00-00 00:00:00'),(108139,10,'C81.03 ','Nodular lymphocyte predominant Hodgkin lymphoma, intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108138,10,'C81.02 ','Nodular lymphocyte predominant Hodgkin lymphoma, intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108137,10,'C81.01 ','Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of head, face, and neck','Y','0000-00-00 00:00:00'),(108135,10,'C80.2 ','Malignant neoplasm associated with transplanted organ','Y','0000-00-00 00:00:00'),(108136,10,'C81.00 ','Nodular lymphocyte predominant Hodgkin lymphoma, unspecified site','Y','0000-00-00 00:00:00'),(108134,10,'C80.1 ','Malignant (primary) neoplasm, unspecified','Y','0000-00-00 00:00:00'),(108132,10,'C79.9 ','Secondary malignant neoplasm of unspecified site','Y','0000-00-00 00:00:00'),(108133,10,'C80.0 ','Disseminated malignant neoplasm, unspecified','Y','0000-00-00 00:00:00'),(108131,10,'C79.89 ','Secondary malignant neoplasm of other specified sites','Y','0000-00-00 00:00:00'),(108129,10,'C79.81 ','Secondary malignant neoplasm of breast','Y','0000-00-00 00:00:00'),(108130,10,'C79.82 ','Secondary malignant neoplasm of genital organs','Y','0000-00-00 00:00:00'),(108128,10,'C79.72 ','Secondary malignant neoplasm of left adrenal gland','Y','0000-00-00 00:00:00'),(108127,10,'C79.71 ','Secondary malignant neoplasm of right adrenal gland','Y','0000-00-00 00:00:00'),(108125,10,'C79.63 ','Secondary malignant neoplasm of bilateral ovaries','Y','0000-00-00 00:00:00'),(108126,10,'C79.70 ','Secondary malignant neoplasm of unspecified adrenal gland','Y','0000-00-00 00:00:00'),(108124,10,'C79.62 ','Secondary malignant neoplasm of left ovary','Y','0000-00-00 00:00:00'),(108123,10,'C79.61 ','Secondary malignant neoplasm of right ovary','Y','0000-00-00 00:00:00'),(108121,10,'C79.52 ','Secondary malignant neoplasm of bone marrow','Y','0000-00-00 00:00:00'),(108122,10,'C79.60 ','Secondary malignant neoplasm of unspecified ovary','Y','0000-00-00 00:00:00'),(108120,10,'C79.51 ','Secondary malignant neoplasm of bone','Y','0000-00-00 00:00:00'),(108119,10,'C79.49 ','Secondary malignant neoplasm of other parts of nervous system','Y','0000-00-00 00:00:00'),(108118,10,'C79.40 ','Secondary malignant neoplasm of unspecified part of nervous system','Y','0000-00-00 00:00:00'),(108116,10,'C79.31 ','Secondary malignant neoplasm of brain','Y','0000-00-00 00:00:00'),(108117,10,'C79.32 ','Secondary malignant neoplasm of cerebral meninges','Y','0000-00-00 00:00:00'),(108115,10,'C79.2 ','Secondary malignant neoplasm of skin','Y','0000-00-00 00:00:00'),(108114,10,'C79.19 ','Secondary malignant neoplasm of other urinary organs','Y','0000-00-00 00:00:00'),(108112,10,'C79.10 ','Secondary malignant neoplasm of unspecified urinary organs','Y','0000-00-00 00:00:00'),(108113,10,'C79.11 ','Secondary malignant neoplasm of bladder','Y','0000-00-00 00:00:00'),(108111,10,'C79.02 ','Secondary malignant neoplasm of left kidney and renal pelvis','Y','0000-00-00 00:00:00'),(108110,10,'C79.01 ','Secondary malignant neoplasm of right kidney and renal pelvis','Y','0000-00-00 00:00:00'),(108109,10,'C79.00 ','Secondary malignant neoplasm of unspecified kidney and renal pelvis','Y','0000-00-00 00:00:00'),(108108,10,'C78.89 ','Secondary malignant neoplasm of other digestive organs','Y','0000-00-00 00:00:00'),(108107,10,'C78.80 ','Secondary malignant neoplasm of unspecified digestive organ','Y','0000-00-00 00:00:00'),(108106,10,'C78.7 ','Secondary malignant neoplasm of liver and intrahepatic bile duct','Y','0000-00-00 00:00:00'),(108105,10,'C78.6 ','Secondary malignant neoplasm of retroperitoneum and peritoneum','Y','0000-00-00 00:00:00'),(108103,10,'C78.4 ','Secondary malignant neoplasm of small intestine','Y','0000-00-00 00:00:00'),(108104,10,'C78.5 ','Secondary malignant neoplasm of large intestine and rectum','Y','0000-00-00 00:00:00'),(108102,10,'C78.39 ','Secondary malignant neoplasm of other respiratory organs','Y','0000-00-00 00:00:00'),(108101,10,'C78.30 ','Secondary malignant neoplasm of unspecified respiratory organ','Y','0000-00-00 00:00:00'),(108099,10,'C78.1 ','Secondary malignant neoplasm of mediastinum','Y','0000-00-00 00:00:00'),(108100,10,'C78.2 ','Secondary malignant neoplasm of pleura','Y','0000-00-00 00:00:00'),(108098,10,'C78.02 ','Secondary malignant neoplasm of left lung','Y','0000-00-00 00:00:00'),(108096,10,'C78.00 ','Secondary malignant neoplasm of unspecified lung','Y','0000-00-00 00:00:00'),(108097,10,'C78.01 ','Secondary malignant neoplasm of right lung','Y','0000-00-00 00:00:00'),(108095,10,'C77.9 ','Secondary and unspecified malignant neoplasm of lymph node, unspecified','Y','0000-00-00 00:00:00'),(108094,10,'C77.8 ','Secondary and unspecified malignant neoplasm of lymph nodes of multiple regions','Y','0000-00-00 00:00:00'),(108093,10,'C77.5 ','Secondary and unspecified malignant neoplasm of intrapelvic lymph nodes','Y','0000-00-00 00:00:00'),(108092,10,'C77.4 ','Secondary and unspecified malignant neoplasm of inguinal and lower limb lymph nodes','Y','0000-00-00 00:00:00'),(108091,10,'C77.3 ','Secondary and unspecified malignant neoplasm of axilla and upper limb lymph nodes','Y','0000-00-00 00:00:00'),(108090,10,'C77.2 ','Secondary and unspecified malignant neoplasm of intra-abdominal lymph nodes','Y','0000-00-00 00:00:00'),(108089,10,'C77.1 ','Secondary and unspecified malignant neoplasm of intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(108088,10,'C77.0 ','Secondary and unspecified malignant neoplasm of lymph nodes of head, face and neck','Y','0000-00-00 00:00:00'),(108087,10,'C76.8 ','Malignant neoplasm of other specified ill-defined sites','Y','0000-00-00 00:00:00'),(108086,10,'C76.52 ','Malignant neoplasm of left lower limb','Y','0000-00-00 00:00:00'),(108084,10,'C76.50 ','Malignant neoplasm of unspecified lower limb','Y','0000-00-00 00:00:00'),(108085,10,'C76.51 ','Malignant neoplasm of right lower limb','Y','0000-00-00 00:00:00'),(108083,10,'C76.42 ','Malignant neoplasm of left upper limb','Y','0000-00-00 00:00:00'),(108081,10,'C76.40 ','Malignant neoplasm of unspecified upper limb','Y','0000-00-00 00:00:00'),(108082,10,'C76.41 ','Malignant neoplasm of right upper limb','Y','0000-00-00 00:00:00'),(108079,10,'C76.2 ','Malignant neoplasm of abdomen','Y','0000-00-00 00:00:00'),(108080,10,'C76.3 ','Malignant neoplasm of pelvis','Y','0000-00-00 00:00:00'),(108078,10,'C76.1 ','Malignant neoplasm of thorax','Y','0000-00-00 00:00:00'),(108076,10,'C7B.8 ','Other secondary neuroendocrine tumors','Y','0000-00-00 00:00:00'),(108077,10,'C76.0 ','Malignant neoplasm of head, face and neck','Y','0000-00-00 00:00:00'),(108075,10,'C7B.1 ','Secondary Merkel cell carcinoma','Y','0000-00-00 00:00:00'),(108073,10,'C7B.04 ','Secondary carcinoid tumors of peritoneum','Y','0000-00-00 00:00:00'),(108074,10,'C7B.09 ','Secondary carcinoid tumors of other sites','Y','0000-00-00 00:00:00'),(108072,10,'C7B.03 ','Secondary carcinoid tumors of bone','Y','0000-00-00 00:00:00'),(108071,10,'C7B.02 ','Secondary carcinoid tumors of liver','Y','0000-00-00 00:00:00'),(108070,10,'C7B.01 ','Secondary carcinoid tumors of distant lymph nodes','Y','0000-00-00 00:00:00'),(108068,10,'C7A.8 ','Other malignant neuroendocrine tumors','Y','0000-00-00 00:00:00'),(108069,10,'C7B.00 ','Secondary carcinoid tumors, unspecified site','Y','0000-00-00 00:00:00'),(108067,10,'C7A.1 ','Malignant poorly differentiated neuroendocrine tumors','Y','0000-00-00 00:00:00'),(108066,10,'C7A.098 ','Malignant carcinoid tumors of other sites','Y','0000-00-00 00:00:00'),(108065,10,'C7A.096 ','Malignant carcinoid tumor of the hindgut, unspecified','Y','0000-00-00 00:00:00'),(108064,10,'C7A.095 ','Malignant carcinoid tumor of the midgut, unspecified','Y','0000-00-00 00:00:00'),(108063,10,'C7A.094 ','Malignant carcinoid tumor of the foregut, unspecified','Y','0000-00-00 00:00:00'),(108061,10,'C7A.092 ','Malignant carcinoid tumor of the stomach','Y','0000-00-00 00:00:00'),(108062,10,'C7A.093 ','Malignant carcinoid tumor of the kidney','Y','0000-00-00 00:00:00'),(108059,10,'C7A.090 ','Malignant carcinoid tumor of the bronchus and lung','Y','0000-00-00 00:00:00'),(108060,10,'C7A.091 ','Malignant carcinoid tumor of the thymus','Y','0000-00-00 00:00:00'),(108058,10,'C7A.029 ','Malignant carcinoid tumor of the large intestine, unspecified portion','Y','0000-00-00 00:00:00'),(108056,10,'C7A.025 ','Malignant carcinoid tumor of the sigmoid colon','Y','0000-00-00 00:00:00'),(108057,10,'C7A.026 ','Malignant carcinoid tumor of the rectum','Y','0000-00-00 00:00:00'),(108055,10,'C7A.024 ','Malignant carcinoid tumor of the descending colon','Y','0000-00-00 00:00:00'),(108053,10,'C7A.022 ','Malignant carcinoid tumor of the ascending colon','Y','0000-00-00 00:00:00'),(108054,10,'C7A.023 ','Malignant carcinoid tumor of the transverse colon','Y','0000-00-00 00:00:00'),(108052,10,'C7A.021 ','Malignant carcinoid tumor of the cecum','Y','0000-00-00 00:00:00'),(108051,10,'C7A.020 ','Malignant carcinoid tumor of the appendix','Y','0000-00-00 00:00:00'),(108050,10,'C7A.019 ','Malignant carcinoid tumor of the small intestine, unspecified portion','Y','0000-00-00 00:00:00'),(108048,10,'C7A.011 ','Malignant carcinoid tumor of the jejunum','Y','0000-00-00 00:00:00'),(108049,10,'C7A.012 ','Malignant carcinoid tumor of the ileum','Y','0000-00-00 00:00:00'),(108047,10,'C7A.010 ','Malignant carcinoid tumor of the duodenum','Y','0000-00-00 00:00:00'),(108046,10,'C7A.00 ','Malignant carcinoid tumor of unspecified site','Y','0000-00-00 00:00:00'),(108045,10,'C75.9 ','Malignant neoplasm of endocrine gland, unspecified','Y','0000-00-00 00:00:00'),(108044,10,'C75.8 ','Malignant neoplasm with pluriglandular involvement, unspecified','Y','0000-00-00 00:00:00'),(108042,10,'C75.4 ','Malignant neoplasm of carotid body','Y','0000-00-00 00:00:00'),(108043,10,'C75.5 ','Malignant neoplasm of aortic body and other paraganglia','Y','0000-00-00 00:00:00'),(108041,10,'C75.3 ','Malignant neoplasm of pineal gland','Y','0000-00-00 00:00:00'),(108040,10,'C75.2 ','Malignant neoplasm of craniopharyngeal duct','Y','0000-00-00 00:00:00'),(108038,10,'C75.0 ','Malignant neoplasm of parathyroid gland','Y','0000-00-00 00:00:00'),(108039,10,'C75.1 ','Malignant neoplasm of pituitary gland','Y','0000-00-00 00:00:00'),(108037,10,'C74.92 ','Malignant neoplasm of unspecified part of left adrenal gland','Y','0000-00-00 00:00:00'),(108036,10,'C74.91 ','Malignant neoplasm of unspecified part of right adrenal gland','Y','0000-00-00 00:00:00'),(108035,10,'C74.90 ','Malignant neoplasm of unspecified part of unspecified adrenal gland','Y','0000-00-00 00:00:00'),(108034,10,'C74.12 ','Malignant neoplasm of medulla of left adrenal gland','Y','0000-00-00 00:00:00'),(108033,10,'C74.11 ','Malignant neoplasm of medulla of right adrenal gland','Y','0000-00-00 00:00:00'),(108032,10,'C74.10 ','Malignant neoplasm of medulla of unspecified adrenal gland','Y','0000-00-00 00:00:00'),(108031,10,'C74.02 ','Malignant neoplasm of cortex of left adrenal gland','Y','0000-00-00 00:00:00'),(108030,10,'C74.01 ','Malignant neoplasm of cortex of right adrenal gland','Y','0000-00-00 00:00:00'),(108029,10,'C74.00 ','Malignant neoplasm of cortex of unspecified adrenal gland','Y','0000-00-00 00:00:00'),(108028,10,'C73','Malignant neoplasm of thyroid gland','Y','0000-00-00 00:00:00'),(108027,10,'C72.9 ','Malignant neoplasm of central nervous system, unspecified','Y','0000-00-00 00:00:00'),(108026,10,'C72.59 ','Malignant neoplasm of other cranial nerves','Y','0000-00-00 00:00:00'),(108025,10,'C72.50 ','Malignant neoplasm of unspecified cranial nerve','Y','0000-00-00 00:00:00'),(108024,10,'C72.42 ','Malignant neoplasm of left acoustic nerve','Y','0000-00-00 00:00:00'),(108022,10,'C72.40 ','Malignant neoplasm of unspecified acoustic nerve','Y','0000-00-00 00:00:00'),(108023,10,'C72.41 ','Malignant neoplasm of right acoustic nerve','Y','0000-00-00 00:00:00'),(108021,10,'C72.32 ','Malignant neoplasm of left optic nerve','Y','0000-00-00 00:00:00'),(108020,10,'C72.31 ','Malignant neoplasm of right optic nerve','Y','0000-00-00 00:00:00'),(108018,10,'C72.22 ','Malignant neoplasm of left olfactory nerve','Y','0000-00-00 00:00:00'),(108019,10,'C72.30 ','Malignant neoplasm of unspecified optic nerve','Y','0000-00-00 00:00:00'),(108017,10,'C72.21 ','Malignant neoplasm of right olfactory nerve','Y','0000-00-00 00:00:00'),(108016,10,'C72.20 ','Malignant neoplasm of unspecified olfactory nerve','Y','0000-00-00 00:00:00'),(108014,10,'C72.0 ','Malignant neoplasm of spinal cord','Y','0000-00-00 00:00:00'),(108015,10,'C72.1 ','Malignant neoplasm of cauda equina','Y','0000-00-00 00:00:00'),(108013,10,'C71.9 ','Malignant neoplasm of brain, unspecified','Y','0000-00-00 00:00:00'),(108011,10,'C71.7 ','Malignant neoplasm of brain stem','Y','0000-00-00 00:00:00'),(108012,10,'C71.8 ','Malignant neoplasm of overlapping sites of brain','Y','0000-00-00 00:00:00'),(108010,10,'C71.6 ','Malignant neoplasm of cerebellum','Y','0000-00-00 00:00:00'),(108008,10,'C71.4 ','Malignant neoplasm of occipital lobe','Y','0000-00-00 00:00:00'),(108009,10,'C71.5 ','Malignant neoplasm of cerebral ventricle','Y','0000-00-00 00:00:00'),(108007,10,'C71.3 ','Malignant neoplasm of parietal lobe','Y','0000-00-00 00:00:00'),(108005,10,'C71.1 ','Malignant neoplasm of frontal lobe','Y','0000-00-00 00:00:00'),(108006,10,'C71.2 ','Malignant neoplasm of temporal lobe','Y','0000-00-00 00:00:00'),(108004,10,'C71.0 ','Malignant neoplasm of cerebrum, except lobes and ventricles','Y','0000-00-00 00:00:00'),(108003,10,'C70.9 ','Malignant neoplasm of meninges, unspecified','Y','0000-00-00 00:00:00'),(108001,10,'C70.0 ','Malignant neoplasm of cerebral meninges','Y','0000-00-00 00:00:00'),(108002,10,'C70.1 ','Malignant neoplasm of spinal meninges','Y','0000-00-00 00:00:00'),(108000,10,'C69.92 ','Malignant neoplasm of unspecified site of left eye','Y','0000-00-00 00:00:00'),(107999,10,'C69.91 ','Malignant neoplasm of unspecified site of right eye','Y','0000-00-00 00:00:00'),(107998,10,'C69.90 ','Malignant neoplasm of unspecified site of unspecified eye','Y','0000-00-00 00:00:00'),(107997,10,'C69.82 ','Malignant neoplasm of overlapping sites of left eye and adnexa','Y','0000-00-00 00:00:00'),(107996,10,'C69.81 ','Malignant neoplasm of overlapping sites of right eye and adnexa','Y','0000-00-00 00:00:00'),(107995,10,'C69.80 ','Malignant neoplasm of overlapping sites of unspecified eye and adnexa','Y','0000-00-00 00:00:00'),(107994,10,'C69.62 ','Malignant neoplasm of left orbit','Y','0000-00-00 00:00:00'),(107993,10,'C69.61 ','Malignant neoplasm of right orbit','Y','0000-00-00 00:00:00'),(107992,10,'C69.60 ','Malignant neoplasm of unspecified orbit','Y','0000-00-00 00:00:00'),(107991,10,'C69.52 ','Malignant neoplasm of left lacrimal gland and duct','Y','0000-00-00 00:00:00'),(107990,10,'C69.51 ','Malignant neoplasm of right lacrimal gland and duct','Y','0000-00-00 00:00:00'),(107989,10,'C69.50 ','Malignant neoplasm of unspecified lacrimal gland and duct','Y','0000-00-00 00:00:00'),(107988,10,'C69.42 ','Malignant neoplasm of left ciliary body','Y','0000-00-00 00:00:00'),(107987,10,'C69.41 ','Malignant neoplasm of right ciliary body','Y','0000-00-00 00:00:00'),(107986,10,'C69.40 ','Malignant neoplasm of unspecified ciliary body','Y','0000-00-00 00:00:00'),(107985,10,'C69.32 ','Malignant neoplasm of left choroid','Y','0000-00-00 00:00:00'),(107984,10,'C69.31 ','Malignant neoplasm of right choroid','Y','0000-00-00 00:00:00'),(107983,10,'C69.30 ','Malignant neoplasm of unspecified choroid','Y','0000-00-00 00:00:00'),(107982,10,'C69.22 ','Malignant neoplasm of left retina','Y','0000-00-00 00:00:00'),(107981,10,'C69.21 ','Malignant neoplasm of right retina','Y','0000-00-00 00:00:00'),(107980,10,'C69.20 ','Malignant neoplasm of unspecified retina','Y','0000-00-00 00:00:00'),(107978,10,'C69.11 ','Malignant neoplasm of right cornea','Y','0000-00-00 00:00:00'),(107979,10,'C69.12 ','Malignant neoplasm of left cornea','Y','0000-00-00 00:00:00'),(107977,10,'C69.10 ','Malignant neoplasm of unspecified cornea','Y','0000-00-00 00:00:00'),(107976,10,'C69.02 ','Malignant neoplasm of left conjunctiva','Y','0000-00-00 00:00:00'),(107975,10,'C69.01 ','Malignant neoplasm of right conjunctiva','Y','0000-00-00 00:00:00'),(107974,10,'C69.00 ','Malignant neoplasm of unspecified conjunctiva','Y','0000-00-00 00:00:00'),(107973,10,'C68.9 ','Malignant neoplasm of urinary organ, unspecified','Y','0000-00-00 00:00:00'),(107972,10,'C68.8 ','Malignant neoplasm of overlapping sites of urinary organs','Y','0000-00-00 00:00:00'),(107971,10,'C68.1 ','Malignant neoplasm of paraurethral glands','Y','0000-00-00 00:00:00'),(107969,10,'C67.9 ','Malignant neoplasm of bladder, unspecified','Y','0000-00-00 00:00:00'),(107970,10,'C68.0 ','Malignant neoplasm of urethra','Y','0000-00-00 00:00:00'),(107968,10,'C67.8 ','Malignant neoplasm of overlapping sites of bladder','Y','0000-00-00 00:00:00'),(107967,10,'C67.7 ','Malignant neoplasm of urachus','Y','0000-00-00 00:00:00'),(107966,10,'C67.6 ','Malignant neoplasm of ureteric orifice','Y','0000-00-00 00:00:00'),(107965,10,'C67.5 ','Malignant neoplasm of bladder neck','Y','0000-00-00 00:00:00'),(107964,10,'C67.4 ','Malignant neoplasm of posterior wall of bladder','Y','0000-00-00 00:00:00'),(107963,10,'C67.3 ','Malignant neoplasm of anterior wall of bladder','Y','0000-00-00 00:00:00'),(107962,10,'C67.2 ','Malignant neoplasm of lateral wall of bladder','Y','0000-00-00 00:00:00'),(107961,10,'C67.1 ','Malignant neoplasm of dome of bladder','Y','0000-00-00 00:00:00'),(107960,10,'C67.0 ','Malignant neoplasm of trigone of bladder','Y','0000-00-00 00:00:00'),(107959,10,'C66.9 ','Malignant neoplasm of unspecified ureter','Y','0000-00-00 00:00:00'),(107957,10,'C66.1 ','Malignant neoplasm of right ureter','Y','0000-00-00 00:00:00'),(107958,10,'C66.2 ','Malignant neoplasm of left ureter','Y','0000-00-00 00:00:00'),(107956,10,'C65.9 ','Malignant neoplasm of unspecified renal pelvis','Y','0000-00-00 00:00:00'),(107955,10,'C65.2 ','Malignant neoplasm of left renal pelvis','Y','0000-00-00 00:00:00'),(107954,10,'C65.1 ','Malignant neoplasm of right renal pelvis','Y','0000-00-00 00:00:00'),(107953,10,'C64.9 ','Malignant neoplasm of unspecified kidney, except renal pelvis','Y','0000-00-00 00:00:00'),(107952,10,'C64.2 ','Malignant neoplasm of left kidney, except renal pelvis','Y','0000-00-00 00:00:00'),(107951,10,'C64.1 ','Malignant neoplasm of right kidney, except renal pelvis','Y','0000-00-00 00:00:00'),(107950,10,'C63.9 ','Malignant neoplasm of male genital organ, unspecified','Y','0000-00-00 00:00:00'),(107949,10,'C63.8 ','Malignant neoplasm of overlapping sites of male genital organs','Y','0000-00-00 00:00:00'),(107948,10,'C63.7 ','Malignant neoplasm of other specified male genital organs','Y','0000-00-00 00:00:00'),(107947,10,'C63.2 ','Malignant neoplasm of scrotum','Y','0000-00-00 00:00:00'),(107946,10,'C63.12 ','Malignant neoplasm of left spermatic cord','Y','0000-00-00 00:00:00'),(107945,10,'C63.11 ','Malignant neoplasm of right spermatic cord','Y','0000-00-00 00:00:00'),(107944,10,'C63.10 ','Malignant neoplasm of unspecified spermatic cord','Y','0000-00-00 00:00:00'),(107942,10,'C63.01 ','Malignant neoplasm of right epididymis','Y','0000-00-00 00:00:00'),(107943,10,'C63.02 ','Malignant neoplasm of left epididymis','Y','0000-00-00 00:00:00'),(107941,10,'C63.00 ','Malignant neoplasm of unspecified epididymis','Y','0000-00-00 00:00:00'),(107940,10,'C62.92 ','Malignant neoplasm of left testis, unspecified whether descended or undescended','Y','0000-00-00 00:00:00'),(107939,10,'C62.91 ','Malignant neoplasm of right testis, unspecified whether descended or undescended','Y','0000-00-00 00:00:00'),(107938,10,'C62.90 ','Malignant neoplasm of unspecified testis, unspecified whether descended or undescended','Y','0000-00-00 00:00:00'),(107937,10,'C62.12 ','Malignant neoplasm of descended left testis','Y','0000-00-00 00:00:00'),(107936,10,'C62.11 ','Malignant neoplasm of descended right testis','Y','0000-00-00 00:00:00'),(107935,10,'C62.10 ','Malignant neoplasm of unspecified descended testis','Y','0000-00-00 00:00:00'),(107934,10,'C62.02 ','Malignant neoplasm of undescended left testis','Y','0000-00-00 00:00:00'),(107933,10,'C62.01 ','Malignant neoplasm of undescended right testis','Y','0000-00-00 00:00:00'),(107932,10,'C62.00 ','Malignant neoplasm of unspecified undescended testis','Y','0000-00-00 00:00:00'),(107931,10,'C61','Malignant neoplasm of prostate','Y','0000-00-00 00:00:00'),(107930,10,'C60.9 ','Malignant neoplasm of penis, unspecified','Y','0000-00-00 00:00:00'),(107929,10,'C60.8 ','Malignant neoplasm of overlapping sites of penis','Y','0000-00-00 00:00:00'),(107928,10,'C60.2 ','Malignant neoplasm of body of penis','Y','0000-00-00 00:00:00'),(107927,10,'C60.1 ','Malignant neoplasm of glans penis','Y','0000-00-00 00:00:00'),(107926,10,'C60.0 ','Malignant neoplasm of prepuce','Y','0000-00-00 00:00:00'),(107925,10,'C58','Malignant neoplasm of placenta','Y','0000-00-00 00:00:00'),(107924,10,'C57.9 ','Malignant neoplasm of female genital organ, unspecified','Y','0000-00-00 00:00:00'),(107923,10,'C57.8 ','Malignant neoplasm of overlapping sites of female genital organs','Y','0000-00-00 00:00:00'),(107922,10,'C57.7 ','Malignant neoplasm of other specified female genital organs','Y','0000-00-00 00:00:00'),(107921,10,'C57.4 ','Malignant neoplasm of uterine adnexa, unspecified','Y','0000-00-00 00:00:00'),(107920,10,'C57.3 ','Malignant neoplasm of parametrium','Y','0000-00-00 00:00:00'),(107919,10,'C57.22 ','Malignant neoplasm of left round ligament','Y','0000-00-00 00:00:00'),(107918,10,'C57.21 ','Malignant neoplasm of right round ligament','Y','0000-00-00 00:00:00'),(107917,10,'C57.20 ','Malignant neoplasm of unspecified round ligament','Y','0000-00-00 00:00:00'),(107916,10,'C57.12 ','Malignant neoplasm of left broad ligament','Y','0000-00-00 00:00:00'),(107915,10,'C57.11 ','Malignant neoplasm of right broad ligament','Y','0000-00-00 00:00:00'),(107914,10,'C57.10 ','Malignant neoplasm of unspecified broad ligament','Y','0000-00-00 00:00:00'),(107913,10,'C57.02 ','Malignant neoplasm of left fallopian tube','Y','0000-00-00 00:00:00'),(107912,10,'C57.01 ','Malignant neoplasm of right fallopian tube','Y','0000-00-00 00:00:00'),(107911,10,'C57.00 ','Malignant neoplasm of unspecified fallopian tube','Y','0000-00-00 00:00:00'),(107910,10,'C56.9 ','Malignant neoplasm of unspecified ovary','Y','0000-00-00 00:00:00'),(107909,10,'C56.3 ','Malignant neoplasm of bilateral ovaries','Y','0000-00-00 00:00:00'),(107907,10,'C56.1 ','Malignant neoplasm of right ovary','Y','0000-00-00 00:00:00'),(107908,10,'C56.2 ','Malignant neoplasm of left ovary','Y','0000-00-00 00:00:00'),(107906,10,'C55','Malignant neoplasm of uterus, part unspecified','Y','0000-00-00 00:00:00'),(107904,10,'C54.8 ','Malignant neoplasm of overlapping sites of corpus uteri','Y','0000-00-00 00:00:00'),(107905,10,'C54.9 ','Malignant neoplasm of corpus uteri, unspecified','Y','0000-00-00 00:00:00'),(107903,10,'C54.3 ','Malignant neoplasm of fundus uteri','Y','0000-00-00 00:00:00'),(107901,10,'C54.1 ','Malignant neoplasm of endometrium','Y','0000-00-00 00:00:00'),(107902,10,'C54.2 ','Malignant neoplasm of myometrium','Y','0000-00-00 00:00:00'),(107900,10,'C54.0 ','Malignant neoplasm of isthmus uteri','Y','0000-00-00 00:00:00'),(107898,10,'C53.8 ','Malignant neoplasm of overlapping sites of cervix uteri','Y','0000-00-00 00:00:00'),(107899,10,'C53.9 ','Malignant neoplasm of cervix uteri, unspecified','Y','0000-00-00 00:00:00'),(107897,10,'C53.1 ','Malignant neoplasm of exocervix','Y','0000-00-00 00:00:00'),(107895,10,'C52','Malignant neoplasm of vagina','Y','0000-00-00 00:00:00'),(107896,10,'C53.0 ','Malignant neoplasm of endocervix','Y','0000-00-00 00:00:00'),(107894,10,'C51.9 ','Malignant neoplasm of vulva, unspecified','Y','0000-00-00 00:00:00'),(107892,10,'C51.2 ','Malignant neoplasm of clitoris','Y','0000-00-00 00:00:00'),(107893,10,'C51.8 ','Malignant neoplasm of overlapping sites of vulva','Y','0000-00-00 00:00:00'),(107890,10,'C51.0 ','Malignant neoplasm of labium majus','Y','0000-00-00 00:00:00'),(107891,10,'C51.1 ','Malignant neoplasm of labium minus','Y','0000-00-00 00:00:00'),(107889,10,'C50.929 ','Malignant neoplasm of unspecified site of unspecified male breast','Y','0000-00-00 00:00:00'),(107888,10,'C50.922 ','Malignant neoplasm of unspecified site of left male breast','Y','0000-00-00 00:00:00'),(107887,10,'C50.921 ','Malignant neoplasm of unspecified site of right male breast','Y','0000-00-00 00:00:00'),(107886,10,'C50.919 ','Malignant neoplasm of unspecified site of unspecified female breast','Y','0000-00-00 00:00:00'),(107884,10,'C50.911 ','Malignant neoplasm of unspecified site of right female breast','Y','0000-00-00 00:00:00'),(107885,10,'C50.912 ','Malignant neoplasm of unspecified site of left female breast','Y','0000-00-00 00:00:00'),(107883,10,'C50.829 ','Malignant neoplasm of overlapping sites of unspecified male breast','Y','0000-00-00 00:00:00'),(107882,10,'C50.822 ','Malignant neoplasm of overlapping sites of left male breast','Y','0000-00-00 00:00:00'),(107881,10,'C50.821 ','Malignant neoplasm of overlapping sites of right male breast','Y','0000-00-00 00:00:00'),(107879,10,'C50.812 ','Malignant neoplasm of overlapping sites of left female breast','Y','0000-00-00 00:00:00'),(107880,10,'C50.819 ','Malignant neoplasm of overlapping sites of unspecified female breast','Y','0000-00-00 00:00:00'),(107878,10,'C50.811 ','Malignant neoplasm of overlapping sites of right female breast','Y','0000-00-00 00:00:00'),(107876,10,'C50.622 ','Malignant neoplasm of axillary tail of left male breast','Y','0000-00-00 00:00:00'),(107877,10,'C50.629 ','Malignant neoplasm of axillary tail of unspecified male breast','Y','0000-00-00 00:00:00'),(107875,10,'C50.621 ','Malignant neoplasm of axillary tail of right male breast','Y','0000-00-00 00:00:00'),(107874,10,'C50.619 ','Malignant neoplasm of axillary tail of unspecified female breast','Y','0000-00-00 00:00:00'),(107873,10,'C50.612 ','Malignant neoplasm of axillary tail of left female breast','Y','0000-00-00 00:00:00'),(107872,10,'C50.611 ','Malignant neoplasm of axillary tail of right female breast','Y','0000-00-00 00:00:00'),(107871,10,'C50.529 ','Malignant neoplasm of lower-outer quadrant of unspecified male breast','Y','0000-00-00 00:00:00'),(107870,10,'C50.522 ','Malignant neoplasm of lower-outer quadrant of left male breast','Y','0000-00-00 00:00:00'),(107869,10,'C50.521 ','Malignant neoplasm of lower-outer quadrant of right male breast','Y','0000-00-00 00:00:00'),(107868,10,'C50.519 ','Malignant neoplasm of lower-outer quadrant of unspecified female breast','Y','0000-00-00 00:00:00'),(107866,10,'C50.511 ','Malignant neoplasm of lower-outer quadrant of right female breast','Y','0000-00-00 00:00:00'),(107867,10,'C50.512 ','Malignant neoplasm of lower-outer quadrant of left female breast','Y','0000-00-00 00:00:00'),(107865,10,'C50.429 ','Malignant neoplasm of upper-outer quadrant of unspecified male breast','Y','0000-00-00 00:00:00'),(107864,10,'C50.422 ','Malignant neoplasm of upper-outer quadrant of left male breast','Y','0000-00-00 00:00:00'),(107863,10,'C50.421 ','Malignant neoplasm of upper-outer quadrant of right male breast','Y','0000-00-00 00:00:00'),(107862,10,'C50.419 ','Malignant neoplasm of upper-outer quadrant of unspecified female breast','Y','0000-00-00 00:00:00'),(107861,10,'C50.412 ','Malignant neoplasm of upper-outer quadrant of left female breast','Y','0000-00-00 00:00:00'),(107860,10,'C50.411 ','Malignant neoplasm of upper-outer quadrant of right female breast','Y','0000-00-00 00:00:00'),(107859,10,'C50.329 ','Malignant neoplasm of lower-inner quadrant of unspecified male breast','Y','0000-00-00 00:00:00'),(107858,10,'C50.322 ','Malignant neoplasm of lower-inner quadrant of left male breast','Y','0000-00-00 00:00:00'),(107857,10,'C50.321 ','Malignant neoplasm of lower-inner quadrant of right male breast','Y','0000-00-00 00:00:00'),(107856,10,'C50.319 ','Malignant neoplasm of lower-inner quadrant of unspecified female breast','Y','0000-00-00 00:00:00'),(107855,10,'C50.312 ','Malignant neoplasm of lower-inner quadrant of left female breast','Y','0000-00-00 00:00:00'),(107854,10,'C50.311 ','Malignant neoplasm of lower-inner quadrant of right female breast','Y','0000-00-00 00:00:00'),(107853,10,'C50.229 ','Malignant neoplasm of upper-inner quadrant of unspecified male breast','Y','0000-00-00 00:00:00'),(107852,10,'C50.222 ','Malignant neoplasm of upper-inner quadrant of left male breast','Y','0000-00-00 00:00:00'),(107851,10,'C50.221 ','Malignant neoplasm of upper-inner quadrant of right male breast','Y','0000-00-00 00:00:00'),(107850,10,'C50.219 ','Malignant neoplasm of upper-inner quadrant of unspecified female breast','Y','0000-00-00 00:00:00'),(107849,10,'C50.212 ','Malignant neoplasm of upper-inner quadrant of left female breast','Y','0000-00-00 00:00:00'),(107848,10,'C50.211 ','Malignant neoplasm of upper-inner quadrant of right female breast','Y','0000-00-00 00:00:00'),(107847,10,'C50.129 ','Malignant neoplasm of central portion of unspecified male breast','Y','0000-00-00 00:00:00'),(107846,10,'C50.122 ','Malignant neoplasm of central portion of left male breast','Y','0000-00-00 00:00:00'),(107844,10,'C50.119 ','Malignant neoplasm of central portion of unspecified female breast','Y','0000-00-00 00:00:00'),(107845,10,'C50.121 ','Malignant neoplasm of central portion of right male breast','Y','0000-00-00 00:00:00'),(107843,10,'C50.112 ','Malignant neoplasm of central portion of left female breast','Y','0000-00-00 00:00:00'),(107842,10,'C50.111 ','Malignant neoplasm of central portion of right female breast','Y','0000-00-00 00:00:00'),(107841,10,'C50.029 ','Malignant neoplasm of nipple and areola, unspecified male breast','Y','0000-00-00 00:00:00'),(107840,10,'C50.022 ','Malignant neoplasm of nipple and areola, left male breast','Y','0000-00-00 00:00:00'),(107838,10,'C50.019 ','Malignant neoplasm of nipple and areola, unspecified female breast','Y','0000-00-00 00:00:00'),(107839,10,'C50.021 ','Malignant neoplasm of nipple and areola, right male breast','Y','0000-00-00 00:00:00'),(107837,10,'C50.012 ','Malignant neoplasm of nipple and areola, left female breast','Y','0000-00-00 00:00:00'),(107836,10,'C50.011 ','Malignant neoplasm of nipple and areola, right female breast','Y','0000-00-00 00:00:00'),(107835,10,'C49.A9 ','Gastrointestinal stromal tumor of other sites','Y','0000-00-00 00:00:00'),(107833,10,'C49.A4 ','Gastrointestinal stromal tumor of large intestine','Y','0000-00-00 00:00:00'),(107834,10,'C49.A5 ','Gastrointestinal stromal tumor of rectum','Y','0000-00-00 00:00:00'),(107830,10,'C49.A1 ','Gastrointestinal stromal tumor of esophagus','Y','0000-00-00 00:00:00'),(107831,10,'C49.A2 ','Gastrointestinal stromal tumor of stomach','Y','0000-00-00 00:00:00'),(107832,10,'C49.A3 ','Gastrointestinal stromal tumor of small intestine','Y','0000-00-00 00:00:00'),(107828,10,'C49.9 ','Malignant neoplasm of connective and soft tissue, unspecified','Y','0000-00-00 00:00:00'),(107829,10,'C49.A0 ','Gastrointestinal stromal tumor, unspecified site','Y','0000-00-00 00:00:00'),(107826,10,'C49.6 ','Malignant neoplasm of connective and soft tissue of trunk, unspecified','Y','0000-00-00 00:00:00'),(107827,10,'C49.8 ','Malignant neoplasm of overlapping sites of connective and soft tissue','Y','0000-00-00 00:00:00'),(107824,10,'C49.4 ','Malignant neoplasm of connective and soft tissue of abdomen','Y','0000-00-00 00:00:00'),(107825,10,'C49.5 ','Malignant neoplasm of connective and soft tissue of pelvis','Y','0000-00-00 00:00:00'),(107823,10,'C49.3 ','Malignant neoplasm of connective and soft tissue of thorax','Y','0000-00-00 00:00:00'),(107821,10,'C49.21 ','Malignant neoplasm of connective and soft tissue of right lower limb, including hip','Y','0000-00-00 00:00:00'),(107822,10,'C49.22 ','Malignant neoplasm of connective and soft tissue of left lower limb, including hip','Y','0000-00-00 00:00:00'),(107820,10,'C49.20 ','Malignant neoplasm of connective and soft tissue of unspecified lower limb, including hip','Y','0000-00-00 00:00:00'),(107818,10,'C49.11 ','Malignant neoplasm of connective and soft tissue of right upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107819,10,'C49.12 ','Malignant neoplasm of connective and soft tissue of left upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107817,10,'C49.10 ','Malignant neoplasm of connective and soft tissue of unspecified upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107816,10,'C49.0 ','Malignant neoplasm of connective and soft tissue of head, face and neck','Y','0000-00-00 00:00:00'),(107814,10,'C48.2 ','Malignant neoplasm of peritoneum, unspecified','Y','0000-00-00 00:00:00'),(107815,10,'C48.8 ','Malignant neoplasm of overlapping sites of retroperitoneum and peritoneum','Y','0000-00-00 00:00:00'),(107812,10,'C48.0 ','Malignant neoplasm of retroperitoneum','Y','0000-00-00 00:00:00'),(107813,10,'C48.1 ','Malignant neoplasm of specified parts of peritoneum','Y','0000-00-00 00:00:00'),(107811,10,'C47.9 ','Malignant neoplasm of peripheral nerves and autonomic nervous system, unspecified','Y','0000-00-00 00:00:00'),(107809,10,'C47.6 ','Malignant neoplasm of peripheral nerves of trunk, unspecified','Y','0000-00-00 00:00:00'),(107810,10,'C47.8 ','Malignant neoplasm of overlapping sites of peripheral nerves and autonomic nervous system','Y','0000-00-00 00:00:00'),(107807,10,'C47.4 ','Malignant neoplasm of peripheral nerves of abdomen','Y','0000-00-00 00:00:00'),(107808,10,'C47.5 ','Malignant neoplasm of peripheral nerves of pelvis','Y','0000-00-00 00:00:00'),(107805,10,'C47.22 ','Malignant neoplasm of peripheral nerves of left lower limb, including hip','Y','0000-00-00 00:00:00'),(107806,10,'C47.3 ','Malignant neoplasm of peripheral nerves of thorax','Y','0000-00-00 00:00:00'),(107804,10,'C47.21 ','Malignant neoplasm of peripheral nerves of right lower limb, including hip','Y','0000-00-00 00:00:00'),(107802,10,'C47.12 ','Malignant neoplasm of peripheral nerves of left upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107803,10,'C47.20 ','Malignant neoplasm of peripheral nerves of unspecified lower limb, including hip','Y','0000-00-00 00:00:00'),(107801,10,'C47.11 ','Malignant neoplasm of peripheral nerves of right upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107800,10,'C47.10 ','Malignant neoplasm of peripheral nerves of unspecified upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107799,10,'C47.0 ','Malignant neoplasm of peripheral nerves of head, face and neck','Y','0000-00-00 00:00:00'),(107798,10,'C46.9 ','Kaposi\'s sarcoma, unspecified','Y','0000-00-00 00:00:00'),(107797,10,'C46.7 ','Kaposi\'s sarcoma of other sites','Y','0000-00-00 00:00:00'),(107796,10,'C46.52 ','Kaposi\'s sarcoma of left lung','Y','0000-00-00 00:00:00'),(107794,10,'C46.50 ','Kaposi\'s sarcoma of unspecified lung','Y','0000-00-00 00:00:00'),(107795,10,'C46.51 ','Kaposi\'s sarcoma of right lung','Y','0000-00-00 00:00:00'),(107792,10,'C46.3 ','Kaposi\'s sarcoma of lymph nodes','Y','0000-00-00 00:00:00'),(107793,10,'C46.4 ','Kaposi\'s sarcoma of gastrointestinal sites','Y','0000-00-00 00:00:00'),(107790,10,'C46.1 ','Kaposi\'s sarcoma of soft tissue','Y','0000-00-00 00:00:00'),(107791,10,'C46.2 ','Kaposi\'s sarcoma of palate','Y','0000-00-00 00:00:00'),(107788,10,'C45.9 ','Mesothelioma, unspecified','Y','0000-00-00 00:00:00'),(107789,10,'C46.0 ','Kaposi\'s sarcoma of skin','Y','0000-00-00 00:00:00'),(107786,10,'C45.2 ','Mesothelioma of pericardium','Y','0000-00-00 00:00:00'),(107787,10,'C45.7 ','Mesothelioma of other sites','Y','0000-00-00 00:00:00'),(107784,10,'C45.0 ','Mesothelioma of pleura','Y','0000-00-00 00:00:00'),(107785,10,'C45.1 ','Mesothelioma of peritoneum','Y','0000-00-00 00:00:00'),(107783,10,'C44.99 ','Other specified malignant neoplasm of skin, unspecified','Y','0000-00-00 00:00:00'),(107782,10,'C44.92 ','Squamous cell carcinoma of skin, unspecified','Y','0000-00-00 00:00:00'),(107781,10,'C44.91 ','Basal cell carcinoma of skin, unspecified','Y','0000-00-00 00:00:00'),(107780,10,'C44.90 ','Unspecified malignant neoplasm of skin, unspecified','Y','0000-00-00 00:00:00'),(107779,10,'C44.89 ','Other specified malignant neoplasm of overlapping sites of skin','Y','0000-00-00 00:00:00'),(107777,10,'C44.81 ','Basal cell carcinoma of overlapping sites of skin','Y','0000-00-00 00:00:00'),(107778,10,'C44.82 ','Squamous cell carcinoma of overlapping sites of skin','Y','0000-00-00 00:00:00'),(107776,10,'C44.80 ','Unspecified malignant neoplasm of overlapping sites of skin','Y','0000-00-00 00:00:00'),(107775,10,'C44.799 ','Other specified malignant neoplasm of skin of left lower limb, including hip','Y','0000-00-00 00:00:00'),(107774,10,'C44.792 ','Other specified malignant neoplasm of skin of right lower limb, including hip','Y','0000-00-00 00:00:00'),(107773,10,'C44.791 ','Other specified malignant neoplasm of skin of unspecified lower limb, including hip','Y','0000-00-00 00:00:00'),(107772,10,'C44.729 ','Squamous cell carcinoma of skin of left lower limb, including hip','Y','0000-00-00 00:00:00'),(107771,10,'C44.722 ','Squamous cell carcinoma of skin of right lower limb, including hip','Y','0000-00-00 00:00:00'),(107770,10,'C44.721 ','Squamous cell carcinoma of skin of unspecified lower limb, including hip','Y','0000-00-00 00:00:00'),(107769,10,'C44.719 ','Basal cell carcinoma of skin of left lower limb, including hip','Y','0000-00-00 00:00:00'),(107768,10,'C44.712 ','Basal cell carcinoma of skin of right lower limb, including hip','Y','0000-00-00 00:00:00'),(107767,10,'C44.711 ','Basal cell carcinoma of skin of unspecified lower limb, including hip','Y','0000-00-00 00:00:00'),(107766,10,'C44.709 ','Unspecified malignant neoplasm of skin of left lower limb, including hip','Y','0000-00-00 00:00:00'),(107765,10,'C44.702 ','Unspecified malignant neoplasm of skin of right lower limb, including hip','Y','0000-00-00 00:00:00'),(107764,10,'C44.701 ','Unspecified malignant neoplasm of skin of unspecified lower limb, including hip','Y','0000-00-00 00:00:00'),(107763,10,'C44.699 ','Other specified malignant neoplasm of skin of left upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107762,10,'C44.692 ','Other specified malignant neoplasm of skin of right upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107761,10,'C44.691 ','Other specified malignant neoplasm of skin of unspecified upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107760,10,'C44.629 ','Squamous cell carcinoma of skin of left upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107759,10,'C44.622 ','Squamous cell carcinoma of skin of right upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107758,10,'C44.621 ','Squamous cell carcinoma of skin of unspecified upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107757,10,'C44.619 ','Basal cell carcinoma of skin of left upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107756,10,'C44.612 ','Basal cell carcinoma of skin of right upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107755,10,'C44.611 ','Basal cell carcinoma of skin of unspecified upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107754,10,'C44.609 ','Unspecified malignant neoplasm of skin of left upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107753,10,'C44.602 ','Unspecified malignant neoplasm of skin of right upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107752,10,'C44.601 ','Unspecified malignant neoplasm of skin of unspecified upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107751,10,'C44.599 ','Other specified malignant neoplasm of skin of other part of trunk','Y','0000-00-00 00:00:00'),(107750,10,'C44.591 ','Other specified malignant neoplasm of skin of breast','Y','0000-00-00 00:00:00'),(107749,10,'C44.590 ','Other specified malignant neoplasm of anal skin','Y','0000-00-00 00:00:00'),(107748,10,'C44.529 ','Squamous cell carcinoma of skin of other part of trunk','Y','0000-00-00 00:00:00'),(107746,10,'C44.520 ','Squamous cell carcinoma of anal skin','Y','0000-00-00 00:00:00'),(107747,10,'C44.521 ','Squamous cell carcinoma of skin of breast','Y','0000-00-00 00:00:00'),(107745,10,'C44.519 ','Basal cell carcinoma of skin of other part of trunk','Y','0000-00-00 00:00:00'),(107743,10,'C44.510 ','Basal cell carcinoma of anal skin','Y','0000-00-00 00:00:00'),(107744,10,'C44.511 ','Basal cell carcinoma of skin of breast','Y','0000-00-00 00:00:00'),(107742,10,'C44.509 ','Unspecified malignant neoplasm of skin of other part of trunk','Y','0000-00-00 00:00:00'),(107741,10,'C44.501 ','Unspecified malignant neoplasm of skin of breast','Y','0000-00-00 00:00:00'),(107740,10,'C44.500 ','Unspecified malignant neoplasm of anal skin','Y','0000-00-00 00:00:00'),(107739,10,'C44.49 ','Other specified malignant neoplasm of skin of scalp and neck','Y','0000-00-00 00:00:00'),(107738,10,'C44.42 ','Squamous cell carcinoma of skin of scalp and neck','Y','0000-00-00 00:00:00'),(107737,10,'C44.41 ','Basal cell carcinoma of skin of scalp and neck','Y','0000-00-00 00:00:00'),(107736,10,'C44.40 ','Unspecified malignant neoplasm of skin of scalp and neck','Y','0000-00-00 00:00:00'),(107735,10,'C44.399 ','Other specified malignant neoplasm of skin of other parts of face','Y','0000-00-00 00:00:00'),(107734,10,'C44.391 ','Other specified malignant neoplasm of skin of nose','Y','0000-00-00 00:00:00'),(107733,10,'C44.390 ','Other specified malignant neoplasm of skin of unspecified parts of face','Y','0000-00-00 00:00:00'),(107731,10,'C44.321 ','Squamous cell carcinoma of skin of nose','Y','0000-00-00 00:00:00'),(107732,10,'C44.329 ','Squamous cell carcinoma of skin of other parts of face','Y','0000-00-00 00:00:00'),(107730,10,'C44.320 ','Squamous cell carcinoma of skin of unspecified parts of face','Y','0000-00-00 00:00:00'),(107729,10,'C44.319 ','Basal cell carcinoma of skin of other parts of face','Y','0000-00-00 00:00:00'),(107728,10,'C44.311 ','Basal cell carcinoma of skin of nose','Y','0000-00-00 00:00:00'),(107727,10,'C44.310 ','Basal cell carcinoma of skin of unspecified parts of face','Y','0000-00-00 00:00:00'),(107726,10,'C44.309 ','Unspecified malignant neoplasm of skin of other parts of face','Y','0000-00-00 00:00:00'),(107725,10,'C44.301 ','Unspecified malignant neoplasm of skin of nose','Y','0000-00-00 00:00:00'),(107724,10,'C44.300 ','Unspecified malignant neoplasm of skin of unspecified part of face','Y','0000-00-00 00:00:00'),(107723,10,'C44.299 ','Other specified malignant neoplasm of skin of left ear and external auricular canal','Y','0000-00-00 00:00:00'),(107722,10,'C44.292 ','Other specified malignant neoplasm of skin of right ear and external auricular canal','Y','0000-00-00 00:00:00'),(107721,10,'C44.291 ','Other specified malignant neoplasm of skin of unspecified ear and external auricular canal','Y','0000-00-00 00:00:00'),(107720,10,'C44.229 ','Squamous cell carcinoma of skin of left ear and external auricular canal','Y','0000-00-00 00:00:00'),(107719,10,'C44.222 ','Squamous cell carcinoma of skin of right ear and external auricular canal','Y','0000-00-00 00:00:00'),(107718,10,'C44.221 ','Squamous cell carcinoma of skin of unspecified ear and external auricular canal','Y','0000-00-00 00:00:00'),(107717,10,'C44.219 ','Basal cell carcinoma of skin of left ear and external auricular canal','Y','0000-00-00 00:00:00'),(107716,10,'C44.212 ','Basal cell carcinoma of skin of right ear and external auricular canal','Y','0000-00-00 00:00:00'),(107715,10,'C44.211 ','Basal cell carcinoma of skin of unspecified ear and external auricular canal','Y','0000-00-00 00:00:00'),(107714,10,'C44.209 ','Unspecified malignant neoplasm of skin of left ear and external auricular canal','Y','0000-00-00 00:00:00'),(107713,10,'C44.202 ','Unspecified malignant neoplasm of skin of right ear and external auricular canal','Y','0000-00-00 00:00:00'),(107712,10,'C44.201 ','Unspecified malignant neoplasm of skin of unspecified ear and external auricular canal','Y','0000-00-00 00:00:00'),(107711,10,'C44.1992 ','Other specified malignant neoplasm of skin of left lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(107710,10,'C44.1991 ','Other specified malignant neoplasm of skin of left upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(107709,10,'C44.1922 ','Other specified malignant neoplasm of skin of right lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(107708,10,'C44.1921 ','Other specified malignant neoplasm of skin of right upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(107707,10,'C44.191 ','Other specified malignant neoplasm of skin of unspecified eyelid, including canthus','Y','0000-00-00 00:00:00'),(107706,10,'C44.1392 ','Sebaceous cell carcinoma of skin of left lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(107705,10,'C44.1391 ','Sebaceous cell carcinoma of skin of left upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(107704,10,'C44.1322 ','Sebaceous cell carcinoma of skin of right lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(107703,10,'C44.1321 ','Sebaceous cell carcinoma of skin of right upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(107702,10,'C44.131 ','Sebaceous cell carcinoma of skin of unspecified eyelid, including canthus','Y','0000-00-00 00:00:00'),(107701,10,'C44.1292 ','Squamous cell carcinoma of skin of left lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(107700,10,'C44.1291 ','Squamous cell carcinoma of skin of left upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(107699,10,'C44.1222 ','Squamous cell carcinoma of skin of right lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(107698,10,'C44.1221 ','Squamous cell carcinoma of skin of right upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(107697,10,'C44.121 ','Squamous cell carcinoma of skin of unspecified eyelid, including canthus','Y','0000-00-00 00:00:00'),(107696,10,'C44.1192 ','Basal cell carcinoma of skin of left lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(107695,10,'C44.1191 ','Basal cell carcinoma of skin of left upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(107694,10,'C44.1122 ','Basal cell carcinoma of skin of right lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(107693,10,'C44.1121 ','Basal cell carcinoma of skin of right upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(107692,10,'C44.111 ','Basal cell carcinoma of skin of unspecified eyelid, including canthus','Y','0000-00-00 00:00:00'),(107691,10,'C44.1092 ','Unspecified malignant neoplasm of skin of left lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(107690,10,'C44.1091 ','Unspecified malignant neoplasm of skin of left upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(107689,10,'C44.1022 ','Unspecified malignant neoplasm of skin of right lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(107688,10,'C44.1021 ','Unspecified malignant neoplasm of skin of right upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(107687,10,'C44.101 ','Unspecified malignant neoplasm of skin of unspecified eyelid, including canthus','Y','0000-00-00 00:00:00'),(107686,10,'C44.09 ','Other specified malignant neoplasm of skin of lip','Y','0000-00-00 00:00:00'),(107685,10,'C44.02 ','Squamous cell carcinoma of skin of lip','Y','0000-00-00 00:00:00'),(107684,10,'C44.01 ','Basal cell carcinoma of skin of lip','Y','0000-00-00 00:00:00'),(107683,10,'C44.00 ','Unspecified malignant neoplasm of skin of lip','Y','0000-00-00 00:00:00'),(107682,10,'C4A.9 ','Merkel cell carcinoma, unspecified','Y','0000-00-00 00:00:00'),(107681,10,'C4A.8 ','Merkel cell carcinoma of overlapping sites','Y','0000-00-00 00:00:00'),(107680,10,'C4A.72 ','Merkel cell carcinoma of left lower limb, including hip','Y','0000-00-00 00:00:00'),(107679,10,'C4A.71 ','Merkel cell carcinoma of right lower limb, including hip','Y','0000-00-00 00:00:00'),(107678,10,'C4A.70 ','Merkel cell carcinoma of unspecified lower limb, including hip','Y','0000-00-00 00:00:00'),(107677,10,'C4A.62 ','Merkel cell carcinoma of left upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107676,10,'C4A.61 ','Merkel cell carcinoma of right upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107675,10,'C4A.60 ','Merkel cell carcinoma of unspecified upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107674,10,'C4A.59 ','Merkel cell carcinoma of other part of trunk','Y','0000-00-00 00:00:00'),(107673,10,'C4A.52 ','Merkel cell carcinoma of skin of breast','Y','0000-00-00 00:00:00'),(107672,10,'C4A.51 ','Merkel cell carcinoma of anal skin','Y','0000-00-00 00:00:00'),(107671,10,'C4A.4 ','Merkel cell carcinoma of scalp and neck','Y','0000-00-00 00:00:00'),(107670,10,'C4A.39 ','Merkel cell carcinoma of other parts of face','Y','0000-00-00 00:00:00'),(107669,10,'C4A.31 ','Merkel cell carcinoma of nose','Y','0000-00-00 00:00:00'),(107668,10,'C4A.30 ','Merkel cell carcinoma of unspecified part of face','Y','0000-00-00 00:00:00'),(107667,10,'C4A.22 ','Merkel cell carcinoma of left ear and external auricular canal','Y','0000-00-00 00:00:00'),(107666,10,'C4A.21 ','Merkel cell carcinoma of right ear and external auricular canal','Y','0000-00-00 00:00:00'),(107665,10,'C4A.20 ','Merkel cell carcinoma of unspecified ear and external auricular canal','Y','0000-00-00 00:00:00'),(107664,10,'C4A.122 ','Merkel cell carcinoma of left lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(107663,10,'C4A.121 ','Merkel cell carcinoma of left upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(107662,10,'C4A.112 ','Merkel cell carcinoma of right lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(107661,10,'C4A.111 ','Merkel cell carcinoma of right upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(107660,10,'C4A.10 ','Merkel cell carcinoma of unspecified eyelid, including canthus','Y','0000-00-00 00:00:00'),(107659,10,'C4A.0 ','Merkel cell carcinoma of lip','Y','0000-00-00 00:00:00'),(107658,10,'C43.9 ','Malignant melanoma of skin, unspecified','Y','0000-00-00 00:00:00'),(107657,10,'C43.8 ','Malignant melanoma of overlapping sites of skin','Y','0000-00-00 00:00:00'),(107656,10,'C43.72 ','Malignant melanoma of left lower limb, including hip','Y','0000-00-00 00:00:00'),(107655,10,'C43.71 ','Malignant melanoma of right lower limb, including hip','Y','0000-00-00 00:00:00'),(107654,10,'C43.70 ','Malignant melanoma of unspecified lower limb, including hip','Y','0000-00-00 00:00:00'),(107653,10,'C43.62 ','Malignant melanoma of left upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107652,10,'C43.61 ','Malignant melanoma of right upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107650,10,'C43.59 ','Malignant melanoma of other part of trunk','Y','0000-00-00 00:00:00'),(107651,10,'C43.60 ','Malignant melanoma of unspecified upper limb, including shoulder','Y','0000-00-00 00:00:00'),(107649,10,'C43.52 ','Malignant melanoma of skin of breast','Y','0000-00-00 00:00:00'),(107648,10,'C43.51 ','Malignant melanoma of anal skin','Y','0000-00-00 00:00:00'),(107647,10,'C43.4 ','Malignant melanoma of scalp and neck','Y','0000-00-00 00:00:00'),(107645,10,'C43.31 ','Malignant melanoma of nose','Y','0000-00-00 00:00:00'),(107646,10,'C43.39 ','Malignant melanoma of other parts of face','Y','0000-00-00 00:00:00'),(107644,10,'C43.30 ','Malignant melanoma of unspecified part of face','Y','0000-00-00 00:00:00'),(107643,10,'C43.22 ','Malignant melanoma of left ear and external auricular canal','Y','0000-00-00 00:00:00'),(107642,10,'C43.21 ','Malignant melanoma of right ear and external auricular canal','Y','0000-00-00 00:00:00'),(107641,10,'C43.20 ','Malignant melanoma of unspecified ear and external auricular canal','Y','0000-00-00 00:00:00'),(107640,10,'C43.122 ','Malignant melanoma of left lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(107639,10,'C43.121 ','Malignant melanoma of left upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(107638,10,'C43.112 ','Malignant melanoma of right lower eyelid, including canthus','Y','0000-00-00 00:00:00'),(107637,10,'C43.111 ','Malignant melanoma of right upper eyelid, including canthus','Y','0000-00-00 00:00:00'),(107636,10,'C43.10 ','Malignant melanoma of unspecified eyelid, including canthus','Y','0000-00-00 00:00:00'),(107635,10,'C43.0 ','Malignant melanoma of lip','Y','0000-00-00 00:00:00'),(107634,10,'C41.9 ','Malignant neoplasm of bone and articular cartilage, unspecified','Y','0000-00-00 00:00:00'),(107633,10,'C41.4 ','Malignant neoplasm of pelvic bones, sacrum and coccyx','Y','0000-00-00 00:00:00'),(107632,10,'C41.3 ','Malignant neoplasm of ribs, sternum and clavicle','Y','0000-00-00 00:00:00'),(107631,10,'C41.2 ','Malignant neoplasm of vertebral column','Y','0000-00-00 00:00:00'),(107629,10,'C41.0 ','Malignant neoplasm of bones of skull and face','Y','0000-00-00 00:00:00'),(107630,10,'C41.1 ','Malignant neoplasm of mandible','Y','0000-00-00 00:00:00'),(107628,10,'C40.92 ','Malignant neoplasm of unspecified bones and articular cartilage of left limb','Y','0000-00-00 00:00:00'),(107627,10,'C40.91 ','Malignant neoplasm of unspecified bones and articular cartilage of right limb','Y','0000-00-00 00:00:00'),(107626,10,'C40.90 ','Malignant neoplasm of unspecified bones and articular cartilage of unspecified limb','Y','0000-00-00 00:00:00'),(107625,10,'C40.82 ','Malignant neoplasm of overlapping sites of bone and articular cartilage of left limb','Y','0000-00-00 00:00:00'),(107624,10,'C40.81 ','Malignant neoplasm of overlapping sites of bone and articular cartilage of right limb','Y','0000-00-00 00:00:00'),(107623,10,'C40.80 ','Malignant neoplasm of overlapping sites of bone and articular cartilage of unspecified limb','Y','0000-00-00 00:00:00'),(107622,10,'C40.32 ','Malignant neoplasm of short bones of left lower limb','Y','0000-00-00 00:00:00'),(107621,10,'C40.31 ','Malignant neoplasm of short bones of right lower limb','Y','0000-00-00 00:00:00'),(107620,10,'C40.30 ','Malignant neoplasm of short bones of unspecified lower limb','Y','0000-00-00 00:00:00'),(107619,10,'C40.22 ','Malignant neoplasm of long bones of left lower limb','Y','0000-00-00 00:00:00'),(107618,10,'C40.21 ','Malignant neoplasm of long bones of right lower limb','Y','0000-00-00 00:00:00'),(107617,10,'C40.20 ','Malignant neoplasm of long bones of unspecified lower limb','Y','0000-00-00 00:00:00'),(107616,10,'C40.12 ','Malignant neoplasm of short bones of left upper limb','Y','0000-00-00 00:00:00'),(107615,10,'C40.11 ','Malignant neoplasm of short bones of right upper limb','Y','0000-00-00 00:00:00'),(107614,10,'C40.10 ','Malignant neoplasm of short bones of unspecified upper limb','Y','0000-00-00 00:00:00'),(107613,10,'C40.02 ','Malignant neoplasm of scapula and long bones of left upper limb','Y','0000-00-00 00:00:00'),(107612,10,'C40.01 ','Malignant neoplasm of scapula and long bones of right upper limb','Y','0000-00-00 00:00:00'),(107611,10,'C40.00 ','Malignant neoplasm of scapula and long bones of unspecified upper limb','Y','0000-00-00 00:00:00'),(107610,10,'C39.9 ','Malignant neoplasm of lower respiratory tract, part unspecified','Y','0000-00-00 00:00:00'),(107609,10,'C39.0 ','Malignant neoplasm of upper respiratory tract, part unspecified','Y','0000-00-00 00:00:00'),(107608,10,'C38.8 ','Malignant neoplasm of overlapping sites of heart, mediastinum and pleura','Y','0000-00-00 00:00:00'),(107607,10,'C38.4 ','Malignant neoplasm of pleura','Y','0000-00-00 00:00:00'),(107606,10,'C38.3 ','Malignant neoplasm of mediastinum, part unspecified','Y','0000-00-00 00:00:00'),(107605,10,'C38.2 ','Malignant neoplasm of posterior mediastinum','Y','0000-00-00 00:00:00'),(107604,10,'C38.1 ','Malignant neoplasm of anterior mediastinum','Y','0000-00-00 00:00:00'),(107603,10,'C38.0 ','Malignant neoplasm of heart','Y','0000-00-00 00:00:00'),(107602,10,'C37','Malignant neoplasm of thymus','Y','0000-00-00 00:00:00'),(107601,10,'C34.92 ','Malignant neoplasm of unspecified part of left bronchus or lung','Y','0000-00-00 00:00:00'),(107600,10,'C34.91 ','Malignant neoplasm of unspecified part of right bronchus or lung','Y','0000-00-00 00:00:00'),(107599,10,'C34.90 ','Malignant neoplasm of unspecified part of unspecified bronchus or lung','Y','0000-00-00 00:00:00'),(107598,10,'C34.82 ','Malignant neoplasm of overlapping sites of left bronchus and lung','Y','0000-00-00 00:00:00'),(107597,10,'C34.81 ','Malignant neoplasm of overlapping sites of right bronchus and lung','Y','0000-00-00 00:00:00'),(107596,10,'C34.80 ','Malignant neoplasm of overlapping sites of unspecified bronchus and lung','Y','0000-00-00 00:00:00'),(107595,10,'C34.32 ','Malignant neoplasm of lower lobe, left bronchus or lung','Y','0000-00-00 00:00:00'),(107594,10,'C34.31 ','Malignant neoplasm of lower lobe, right bronchus or lung','Y','0000-00-00 00:00:00'),(107593,10,'C34.30 ','Malignant neoplasm of lower lobe, unspecified bronchus or lung','Y','0000-00-00 00:00:00'),(107592,10,'C34.2 ','Malignant neoplasm of middle lobe, bronchus or lung','Y','0000-00-00 00:00:00'),(107591,10,'C34.12 ','Malignant neoplasm of upper lobe, left bronchus or lung','Y','0000-00-00 00:00:00'),(107590,10,'C34.11 ','Malignant neoplasm of upper lobe, right bronchus or lung','Y','0000-00-00 00:00:00'),(107589,10,'C34.10 ','Malignant neoplasm of upper lobe, unspecified bronchus or lung','Y','0000-00-00 00:00:00'),(107588,10,'C34.02 ','Malignant neoplasm of left main bronchus','Y','0000-00-00 00:00:00'),(107587,10,'C34.01 ','Malignant neoplasm of right main bronchus','Y','0000-00-00 00:00:00'),(107586,10,'C34.00 ','Malignant neoplasm of unspecified main bronchus','Y','0000-00-00 00:00:00'),(107585,10,'C33','Malignant neoplasm of trachea','Y','0000-00-00 00:00:00'),(107584,10,'C32.9 ','Malignant neoplasm of larynx, unspecified','Y','0000-00-00 00:00:00'),(107583,10,'C32.8 ','Malignant neoplasm of overlapping sites of larynx','Y','0000-00-00 00:00:00'),(107582,10,'C32.3 ','Malignant neoplasm of laryngeal cartilage','Y','0000-00-00 00:00:00'),(107581,10,'C32.2 ','Malignant neoplasm of subglottis','Y','0000-00-00 00:00:00'),(107580,10,'C32.1 ','Malignant neoplasm of supraglottis','Y','0000-00-00 00:00:00'),(107579,10,'C32.0 ','Malignant neoplasm of glottis','Y','0000-00-00 00:00:00'),(107578,10,'C31.9 ','Malignant neoplasm of accessory sinus, unspecified','Y','0000-00-00 00:00:00'),(107577,10,'C31.8 ','Malignant neoplasm of overlapping sites of accessory sinuses','Y','0000-00-00 00:00:00'),(107576,10,'C31.3 ','Malignant neoplasm of sphenoid sinus','Y','0000-00-00 00:00:00'),(107575,10,'C31.2 ','Malignant neoplasm of frontal sinus','Y','0000-00-00 00:00:00'),(107574,10,'C31.1 ','Malignant neoplasm of ethmoidal sinus','Y','0000-00-00 00:00:00'),(107573,10,'C31.0 ','Malignant neoplasm of maxillary sinus','Y','0000-00-00 00:00:00'),(107572,10,'C30.1 ','Malignant neoplasm of middle ear','Y','0000-00-00 00:00:00'),(107571,10,'C30.0 ','Malignant neoplasm of nasal cavity','Y','0000-00-00 00:00:00'),(107570,10,'C26.9 ','Malignant neoplasm of ill-defined sites within the digestive system','Y','0000-00-00 00:00:00'),(107569,10,'C26.1 ','Malignant neoplasm of spleen','Y','0000-00-00 00:00:00'),(107568,10,'C26.0 ','Malignant neoplasm of intestinal tract, part unspecified','Y','0000-00-00 00:00:00'),(107567,10,'C25.9 ','Malignant neoplasm of pancreas, unspecified','Y','0000-00-00 00:00:00'),(107566,10,'C25.8 ','Malignant neoplasm of overlapping sites of pancreas','Y','0000-00-00 00:00:00'),(107565,10,'C25.7 ','Malignant neoplasm of other parts of pancreas','Y','0000-00-00 00:00:00'),(107564,10,'C25.4 ','Malignant neoplasm of endocrine pancreas','Y','0000-00-00 00:00:00'),(107563,10,'C25.3 ','Malignant neoplasm of pancreatic duct','Y','0000-00-00 00:00:00'),(107562,10,'C25.2 ','Malignant neoplasm of tail of pancreas','Y','0000-00-00 00:00:00'),(107561,10,'C25.1 ','Malignant neoplasm of body of pancreas','Y','0000-00-00 00:00:00'),(107560,10,'C25.0 ','Malignant neoplasm of head of pancreas','Y','0000-00-00 00:00:00'),(107559,10,'C24.9 ','Malignant neoplasm of biliary tract, unspecified','Y','0000-00-00 00:00:00'),(107558,10,'C24.8 ','Malignant neoplasm of overlapping sites of biliary tract','Y','0000-00-00 00:00:00'),(107557,10,'C24.1 ','Malignant neoplasm of ampulla of Vater','Y','0000-00-00 00:00:00'),(107556,10,'C24.0 ','Malignant neoplasm of extrahepatic bile duct','Y','0000-00-00 00:00:00'),(107555,10,'C23','Malignant neoplasm of gallbladder','Y','0000-00-00 00:00:00'),(107554,10,'C22.9 ','Malignant neoplasm of liver, not specified as primary or secondary','Y','0000-00-00 00:00:00'),(107553,10,'C22.8 ','Malignant neoplasm of liver, primary, unspecified as to type','Y','0000-00-00 00:00:00'),(107552,10,'C22.7 ','Other specified carcinomas of liver','Y','0000-00-00 00:00:00'),(107551,10,'C22.4 ','Other sarcomas of liver','Y','0000-00-00 00:00:00'),(107550,10,'C22.3 ','Angiosarcoma of liver','Y','0000-00-00 00:00:00'),(107549,10,'C22.2 ','Hepatoblastoma','Y','0000-00-00 00:00:00'),(107548,10,'C22.1 ','Intrahepatic bile duct carcinoma','Y','0000-00-00 00:00:00'),(107547,10,'C22.0 ','Liver cell carcinoma','Y','0000-00-00 00:00:00'),(107546,10,'C21.8 ','Malignant neoplasm of overlapping sites of rectum, anus and anal canal','Y','0000-00-00 00:00:00'),(107545,10,'C21.2 ','Malignant neoplasm of cloacogenic zone','Y','0000-00-00 00:00:00'),(107544,10,'C21.1 ','Malignant neoplasm of anal canal','Y','0000-00-00 00:00:00'),(107543,10,'C21.0 ','Malignant neoplasm of anus, unspecified','Y','0000-00-00 00:00:00'),(107542,10,'C20','Malignant neoplasm of rectum','Y','0000-00-00 00:00:00'),(107541,10,'C19','Malignant neoplasm of rectosigmoid junction','Y','0000-00-00 00:00:00'),(107540,10,'C18.9 ','Malignant neoplasm of colon, unspecified','Y','0000-00-00 00:00:00'),(107539,10,'C18.8 ','Malignant neoplasm of overlapping sites of colon','Y','0000-00-00 00:00:00'),(107538,10,'C18.7 ','Malignant neoplasm of sigmoid colon','Y','0000-00-00 00:00:00'),(107537,10,'C18.6 ','Malignant neoplasm of descending colon','Y','0000-00-00 00:00:00'),(107536,10,'C18.5 ','Malignant neoplasm of splenic flexure','Y','0000-00-00 00:00:00'),(107535,10,'C18.4 ','Malignant neoplasm of transverse colon','Y','0000-00-00 00:00:00'),(107534,10,'C18.3 ','Malignant neoplasm of hepatic flexure','Y','0000-00-00 00:00:00'),(107533,10,'C18.2 ','Malignant neoplasm of ascending colon','Y','0000-00-00 00:00:00'),(107532,10,'C18.1 ','Malignant neoplasm of appendix','Y','0000-00-00 00:00:00'),(107531,10,'C18.0 ','Malignant neoplasm of cecum','Y','0000-00-00 00:00:00'),(107530,10,'C17.9 ','Malignant neoplasm of small intestine, unspecified','Y','0000-00-00 00:00:00'),(107529,10,'C17.8 ','Malignant neoplasm of overlapping sites of small intestine','Y','0000-00-00 00:00:00'),(107528,10,'C17.3 ','Meckel\'s diverticulum, malignant','Y','0000-00-00 00:00:00'),(107527,10,'C17.2 ','Malignant neoplasm of ileum','Y','0000-00-00 00:00:00'),(107526,10,'C17.1 ','Malignant neoplasm of jejunum','Y','0000-00-00 00:00:00'),(107525,10,'C17.0 ','Malignant neoplasm of duodenum','Y','0000-00-00 00:00:00'),(107524,10,'C16.9 ','Malignant neoplasm of stomach, unspecified','Y','0000-00-00 00:00:00'),(107523,10,'C16.8 ','Malignant neoplasm of overlapping sites of stomach','Y','0000-00-00 00:00:00'),(107522,10,'C16.6 ','Malignant neoplasm of greater curvature of stomach, unspecified','Y','0000-00-00 00:00:00'),(107520,10,'C16.4 ','Malignant neoplasm of pylorus','Y','0000-00-00 00:00:00'),(107521,10,'C16.5 ','Malignant neoplasm of lesser curvature of stomach, unspecified','Y','0000-00-00 00:00:00'),(107519,10,'C16.3 ','Malignant neoplasm of pyloric antrum','Y','0000-00-00 00:00:00'),(107518,10,'C16.2 ','Malignant neoplasm of body of stomach','Y','0000-00-00 00:00:00'),(107517,10,'C16.1 ','Malignant neoplasm of fundus of stomach','Y','0000-00-00 00:00:00'),(107516,10,'C16.0 ','Malignant neoplasm of cardia','Y','0000-00-00 00:00:00'),(107515,10,'C15.9 ','Malignant neoplasm of esophagus, unspecified','Y','0000-00-00 00:00:00'),(107514,10,'C15.8 ','Malignant neoplasm of overlapping sites of esophagus','Y','0000-00-00 00:00:00'),(107513,10,'C15.5 ','Malignant neoplasm of lower third of esophagus','Y','0000-00-00 00:00:00'),(107512,10,'C15.4 ','Malignant neoplasm of middle third of esophagus','Y','0000-00-00 00:00:00'),(107511,10,'C15.3 ','Malignant neoplasm of upper third of esophagus','Y','0000-00-00 00:00:00'),(107510,10,'C14.8 ','Malignant neoplasm of overlapping sites of lip, oral cavity and pharynx','Y','0000-00-00 00:00:00'),(107509,10,'C14.2 ','Malignant neoplasm of Waldeyer\'s ring','Y','0000-00-00 00:00:00'),(107508,10,'C14.0 ','Malignant neoplasm of pharynx, unspecified','Y','0000-00-00 00:00:00'),(107507,10,'C13.9 ','Malignant neoplasm of hypopharynx, unspecified','Y','0000-00-00 00:00:00'),(107506,10,'C13.8 ','Malignant neoplasm of overlapping sites of hypopharynx','Y','0000-00-00 00:00:00'),(107505,10,'C13.2 ','Malignant neoplasm of posterior wall of hypopharynx','Y','0000-00-00 00:00:00'),(107504,10,'C13.1 ','Malignant neoplasm of aryepiglottic fold, hypopharyngeal aspect','Y','0000-00-00 00:00:00'),(107503,10,'C13.0 ','Malignant neoplasm of postcricoid region','Y','0000-00-00 00:00:00'),(107502,10,'C12','Malignant neoplasm of pyriform sinus','Y','0000-00-00 00:00:00'),(107501,10,'C11.9 ','Malignant neoplasm of nasopharynx, unspecified','Y','0000-00-00 00:00:00'),(107500,10,'C11.8 ','Malignant neoplasm of overlapping sites of nasopharynx','Y','0000-00-00 00:00:00'),(107499,10,'C11.3 ','Malignant neoplasm of anterior wall of nasopharynx','Y','0000-00-00 00:00:00'),(107498,10,'C11.2 ','Malignant neoplasm of lateral wall of nasopharynx','Y','0000-00-00 00:00:00'),(107497,10,'C11.1 ','Malignant neoplasm of posterior wall of nasopharynx','Y','0000-00-00 00:00:00'),(107496,10,'C11.0 ','Malignant neoplasm of superior wall of nasopharynx','Y','0000-00-00 00:00:00'),(107495,10,'C10.9 ','Malignant neoplasm of oropharynx, unspecified','Y','0000-00-00 00:00:00'),(107494,10,'C10.8 ','Malignant neoplasm of overlapping sites of oropharynx','Y','0000-00-00 00:00:00'),(107493,10,'C10.4 ','Malignant neoplasm of branchial cleft','Y','0000-00-00 00:00:00'),(107492,10,'C10.3 ','Malignant neoplasm of posterior wall of oropharynx','Y','0000-00-00 00:00:00'),(107491,10,'C10.2 ','Malignant neoplasm of lateral wall of oropharynx','Y','0000-00-00 00:00:00'),(107490,10,'C10.1 ','Malignant neoplasm of anterior surface of epiglottis','Y','0000-00-00 00:00:00'),(107489,10,'C10.0 ','Malignant neoplasm of vallecula','Y','0000-00-00 00:00:00'),(107488,10,'C09.9 ','Malignant neoplasm of tonsil, unspecified','Y','0000-00-00 00:00:00'),(107487,10,'C09.8 ','Malignant neoplasm of overlapping sites of tonsil','Y','0000-00-00 00:00:00'),(107486,10,'C09.1 ','Malignant neoplasm of tonsillar pillar (anterior) (posterior)','Y','0000-00-00 00:00:00'),(107485,10,'C09.0 ','Malignant neoplasm of tonsillar fossa','Y','0000-00-00 00:00:00'),(107484,10,'C08.9 ','Malignant neoplasm of major salivary gland, unspecified','Y','0000-00-00 00:00:00'),(107483,10,'C08.1 ','Malignant neoplasm of sublingual gland','Y','0000-00-00 00:00:00'),(107482,10,'C08.0 ','Malignant neoplasm of submandibular gland','Y','0000-00-00 00:00:00'),(107481,10,'C07','Malignant neoplasm of parotid gland','Y','0000-00-00 00:00:00'),(107480,10,'C06.9 ','Malignant neoplasm of mouth, unspecified','Y','0000-00-00 00:00:00'),(107479,10,'C06.89 ','Malignant neoplasm of overlapping sites of other parts of mouth','Y','0000-00-00 00:00:00'),(107478,10,'C06.80 ','Malignant neoplasm of overlapping sites of unspecified parts of mouth','Y','0000-00-00 00:00:00'),(107477,10,'C06.2 ','Malignant neoplasm of retromolar area','Y','0000-00-00 00:00:00'),(107476,10,'C06.1 ','Malignant neoplasm of vestibule of mouth','Y','0000-00-00 00:00:00'),(107475,10,'C06.0 ','Malignant neoplasm of cheek mucosa','Y','0000-00-00 00:00:00'),(107474,10,'C05.9 ','Malignant neoplasm of palate, unspecified','Y','0000-00-00 00:00:00'),(107473,10,'C05.8 ','Malignant neoplasm of overlapping sites of palate','Y','0000-00-00 00:00:00'),(107471,10,'C05.1 ','Malignant neoplasm of soft palate','Y','0000-00-00 00:00:00'),(107472,10,'C05.2 ','Malignant neoplasm of uvula','Y','0000-00-00 00:00:00'),(107470,10,'C05.0 ','Malignant neoplasm of hard palate','Y','0000-00-00 00:00:00'),(107469,10,'C04.9 ','Malignant neoplasm of floor of mouth, unspecified','Y','0000-00-00 00:00:00'),(107468,10,'C04.8 ','Malignant neoplasm of overlapping sites of floor of mouth','Y','0000-00-00 00:00:00'),(107467,10,'C04.1 ','Malignant neoplasm of lateral floor of mouth','Y','0000-00-00 00:00:00'),(107466,10,'C04.0 ','Malignant neoplasm of anterior floor of mouth','Y','0000-00-00 00:00:00'),(107465,10,'C03.9 ','Malignant neoplasm of gum, unspecified','Y','0000-00-00 00:00:00'),(107463,10,'C03.0 ','Malignant neoplasm of upper gum','Y','0000-00-00 00:00:00'),(107464,10,'C03.1 ','Malignant neoplasm of lower gum','Y','0000-00-00 00:00:00'),(107462,10,'C02.9 ','Malignant neoplasm of tongue, unspecified','Y','0000-00-00 00:00:00'),(107461,10,'C02.8 ','Malignant neoplasm of overlapping sites of tongue','Y','0000-00-00 00:00:00'),(107460,10,'C02.4 ','Malignant neoplasm of lingual tonsil','Y','0000-00-00 00:00:00'),(107459,10,'C02.3 ','Malignant neoplasm of anterior two-thirds of tongue, part unspecified','Y','0000-00-00 00:00:00'),(107457,10,'C02.1 ','Malignant neoplasm of border of tongue','Y','0000-00-00 00:00:00'),(107458,10,'C02.2 ','Malignant neoplasm of ventral surface of tongue','Y','0000-00-00 00:00:00'),(107456,10,'C02.0 ','Malignant neoplasm of dorsal surface of tongue','Y','0000-00-00 00:00:00'),(107454,10,'C00.9 ','Malignant neoplasm of lip, unspecified','Y','0000-00-00 00:00:00'),(107455,10,'C01','Malignant neoplasm of base of tongue','Y','0000-00-00 00:00:00'),(107453,10,'C00.8 ','Malignant neoplasm of overlapping sites of lip','Y','0000-00-00 00:00:00'),(107452,10,'C00.6 ','Malignant neoplasm of commissure of lip, unspecified','Y','0000-00-00 00:00:00'),(107451,10,'C00.5 ','Malignant neoplasm of lip, unspecified, inner aspect','Y','0000-00-00 00:00:00'),(107450,10,'C00.4 ','Malignant neoplasm of lower lip, inner aspect','Y','0000-00-00 00:00:00'),(107449,10,'C00.3 ','Malignant neoplasm of upper lip, inner aspect','Y','0000-00-00 00:00:00'),(107447,10,'C00.1 ','Malignant neoplasm of external lower lip','Y','0000-00-00 00:00:00'),(107448,10,'C00.2 ','Malignant neoplasm of external lip, unspecified','Y','0000-00-00 00:00:00'),(107446,10,'C00.0 ','Malignant neoplasm of external upper lip','Y','0000-00-00 00:00:00'),(107445,10,'B99.9 ','Unspecified infectious disease','Y','0000-00-00 00:00:00'),(107444,10,'B99.8 ','Other infectious disease','Y','0000-00-00 00:00:00'),(107443,10,'B97.89 ','Other viral agents as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107442,10,'B97.81 ','Human metapneumovirus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107441,10,'B97.7 ','Papillomavirus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107440,10,'B97.6 ','Parvovirus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107439,10,'B97.5 ','Reovirus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107438,10,'B97.4 ','Respiratory syncytial virus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107437,10,'B97.39 ','Other retrovirus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107436,10,'B97.35 ','Human immunodeficiency virus, type 2 [HIV 2] as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107435,10,'B97.34 ','Human T-cell lymphotrophic virus, type II [HTLV-II] as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107434,10,'B97.33 ','Human T-cell lymphotrophic virus, type I [HTLV-I] as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107433,10,'B97.32 ','Oncovirus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107432,10,'B97.31 ','Lentivirus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107431,10,'B97.30 ','Unspecified retrovirus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107430,10,'B97.29 ','Other coronavirus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107429,10,'B97.21 ','SARS-associated coronavirus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107428,10,'B97.19 ','Other enterovirus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107427,10,'B97.12 ','Echovirus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107426,10,'B97.11 ','Coxsackievirus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107425,10,'B97.10 ','Unspecified enterovirus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107424,10,'B97.0 ','Adenovirus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107422,10,'B96.83 ','Acinetobacter baumannii as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107423,10,'B96.89 ','Other specified bacterial agents as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107421,10,'B96.82 ','Vibrio vulnificus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107420,10,'B96.81 ','Helicobacter pylori [H. pylori] as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107419,10,'B96.7 ','Clostridium perfringens [C. perfringens] as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107418,10,'B96.6 ','Bacteroides fragilis [B. fragilis] as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107417,10,'B96.5 ','Pseudomonas (aeruginosa) (mallei) (pseudomallei) as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107416,10,'B96.4 ','Proteus (mirabilis) (morganii) as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107415,10,'B96.3 ','Hemophilus influenzae [H. influenzae] as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107414,10,'B96.29 ','Other Escherichia coli [E. coli] as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107413,10,'B96.23 ','Unspecified Shiga toxin-producing Escherichia coli [E. coli] [STEC] as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107412,10,'B96.22 ','Other specified Shiga toxin-producing Escherichia coli [E. coli] [STEC] as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107411,10,'B96.21 ','Shiga toxin-producing Escherichia coli [E. coli] [STEC] O157 as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107410,10,'B96.20 ','Unspecified Escherichia coli [E. coli] as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107409,10,'B96.1 ','Klebsiella pneumoniae [K. pneumoniae] as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107408,10,'B96.0 ','Mycoplasma pneumoniae [M. pneumoniae] as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107407,10,'B95.8 ','Unspecified staphylococcus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107406,10,'B95.7 ','Other staphylococcus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107405,10,'B95.62 ','Methicillin resistant Staphylococcus aureus infection as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107404,10,'B95.61 ','Methicillin susceptible Staphylococcus aureus infection as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107403,10,'B95.5 ','Unspecified streptococcus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107402,10,'B95.4 ','Other streptococcus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107401,10,'B95.3 ','Streptococcus pneumoniae as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107400,10,'B95.2 ','Enterococcus as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107399,10,'B95.1 ','Streptococcus, group B, as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107398,10,'B95.0 ','Streptococcus, group A, as the cause of diseases classified elsewhere','Y','0000-00-00 00:00:00'),(107397,10,'B94.9 ','Sequelae of unspecified infectious and parasitic disease','Y','0000-00-00 00:00:00'),(107396,10,'B94.8 ','Sequelae of other specified infectious and parasitic diseases','Y','0000-00-00 00:00:00'),(107395,10,'B94.2 ','Sequelae of viral hepatitis','Y','0000-00-00 00:00:00'),(107394,10,'B94.1 ','Sequelae of viral encephalitis','Y','0000-00-00 00:00:00'),(107393,10,'B94.0 ','Sequelae of trachoma','Y','0000-00-00 00:00:00'),(107392,10,'B92','Sequelae of leprosy','Y','0000-00-00 00:00:00'),(107391,10,'B91','Sequelae of poliomyelitis','Y','0000-00-00 00:00:00'),(107390,10,'B90.9 ','Sequelae of respiratory and unspecified tuberculosis','Y','0000-00-00 00:00:00'),(107389,10,'B90.8 ','Sequelae of tuberculosis of other organs','Y','0000-00-00 00:00:00'),(107388,10,'B90.2 ','Sequelae of tuberculosis of bones and joints','Y','0000-00-00 00:00:00'),(107387,10,'B90.1 ','Sequelae of genitourinary tuberculosis','Y','0000-00-00 00:00:00'),(107386,10,'B90.0 ','Sequelae of central nervous system tuberculosis','Y','0000-00-00 00:00:00'),(107385,10,'B89','Unspecified parasitic disease','Y','0000-00-00 00:00:00'),(107384,10,'B88.9 ','Infestation, unspecified','Y','0000-00-00 00:00:00'),(107383,10,'B88.8 ','Other specified infestations','Y','0000-00-00 00:00:00'),(107382,10,'B88.3 ','External hirudiniasis','Y','0000-00-00 00:00:00'),(107381,10,'B88.2 ','Other arthropod infestations','Y','0000-00-00 00:00:00'),(107380,10,'B88.1 ','Tungiasis [sandflea infestation]','Y','0000-00-00 00:00:00'),(107379,10,'B88.0 ','Other acariasis','Y','0000-00-00 00:00:00'),(107378,10,'B87.9 ','Myiasis, unspecified','Y','0000-00-00 00:00:00'),(107377,10,'B87.89 ','Myiasis of other sites','Y','0000-00-00 00:00:00'),(107376,10,'B87.82 ','Intestinal myiasis','Y','0000-00-00 00:00:00'),(107375,10,'B87.81 ','Genitourinary myiasis','Y','0000-00-00 00:00:00'),(107374,10,'B87.4 ','Aural myiasis','Y','0000-00-00 00:00:00'),(107373,10,'B87.3 ','Nasopharyngeal myiasis','Y','0000-00-00 00:00:00'),(107371,10,'B87.1 ','Wound myiasis','Y','0000-00-00 00:00:00'),(107372,10,'B87.2 ','Ocular myiasis','Y','0000-00-00 00:00:00'),(107369,10,'B86','Scabies','Y','0000-00-00 00:00:00'),(107370,10,'B87.0 ','Cutaneous myiasis','Y','0000-00-00 00:00:00'),(107368,10,'B85.4 ','Mixed pediculosis and phthiriasis','Y','0000-00-00 00:00:00'),(107366,10,'B85.2 ','Pediculosis, unspecified','Y','0000-00-00 00:00:00'),(107367,10,'B85.3 ','Phthiriasis','Y','0000-00-00 00:00:00'),(107365,10,'B85.1 ','Pediculosis due to Pediculus humanus corporis','Y','0000-00-00 00:00:00'),(107364,10,'B85.0 ','Pediculosis due to Pediculus humanus capitis','Y','0000-00-00 00:00:00'),(107363,10,'B83.9 ','Helminthiasis, unspecified','Y','0000-00-00 00:00:00'),(107362,10,'B83.8 ','Other specified helminthiases','Y','0000-00-00 00:00:00'),(107360,10,'B83.3 ','Syngamiasis','Y','0000-00-00 00:00:00'),(107361,10,'B83.4 ','Internal hirudiniasis','Y','0000-00-00 00:00:00'),(107359,10,'B83.2 ','Angiostrongyliasis due to Parastrongylus cantonensis','Y','0000-00-00 00:00:00'),(107357,10,'B83.0 ','Visceral larva migrans','Y','0000-00-00 00:00:00'),(107358,10,'B83.1 ','Gnathostomiasis','Y','0000-00-00 00:00:00'),(107356,10,'B82.9 ','Intestinal parasitism, unspecified','Y','0000-00-00 00:00:00'),(107355,10,'B82.0 ','Intestinal helminthiasis, unspecified','Y','0000-00-00 00:00:00'),(107354,10,'B81.8 ','Other specified intestinal helminthiases','Y','0000-00-00 00:00:00'),(107353,10,'B81.4 ','Mixed intestinal helminthiases','Y','0000-00-00 00:00:00'),(107352,10,'B81.3 ','Intestinal angiostrongyliasis','Y','0000-00-00 00:00:00'),(107351,10,'B81.2 ','Trichostrongyliasis','Y','0000-00-00 00:00:00'),(107350,10,'B81.1 ','Intestinal capillariasis','Y','0000-00-00 00:00:00'),(107349,10,'B81.0 ','Anisakiasis','Y','0000-00-00 00:00:00'),(107348,10,'B80','Enterobiasis','Y','0000-00-00 00:00:00'),(107347,10,'B79','Trichuriasis','Y','0000-00-00 00:00:00'),(107346,10,'B78.9 ','Strongyloidiasis, unspecified','Y','0000-00-00 00:00:00'),(107344,10,'B78.1 ','Cutaneous strongyloidiasis','Y','0000-00-00 00:00:00'),(107345,10,'B78.7 ','Disseminated strongyloidiasis','Y','0000-00-00 00:00:00'),(107343,10,'B78.0 ','Intestinal strongyloidiasis','Y','0000-00-00 00:00:00'),(107342,10,'B77.9 ','Ascariasis, unspecified','Y','0000-00-00 00:00:00'),(107341,10,'B77.89 ','Ascariasis with other complications','Y','0000-00-00 00:00:00'),(107340,10,'B77.81 ','Ascariasis pneumonia','Y','0000-00-00 00:00:00'),(107339,10,'B77.0 ','Ascariasis with intestinal complications','Y','0000-00-00 00:00:00'),(107338,10,'B76.9 ','Hookworm disease, unspecified','Y','0000-00-00 00:00:00'),(107337,10,'B76.8 ','Other hookworm diseases','Y','0000-00-00 00:00:00'),(107335,10,'B76.0 ','Ancylostomiasis','Y','0000-00-00 00:00:00'),(107336,10,'B76.1 ','Necatoriasis','Y','0000-00-00 00:00:00'),(107333,10,'B74.9 ','Filariasis, unspecified','Y','0000-00-00 00:00:00'),(107334,10,'B75','Trichinellosis','Y','0000-00-00 00:00:00'),(107331,10,'B74.4 ','Mansonelliasis','Y','0000-00-00 00:00:00'),(107332,10,'B74.8 ','Other filariases','Y','0000-00-00 00:00:00'),(107330,10,'B74.3 ','Loiasis','Y','0000-00-00 00:00:00'),(107329,10,'B74.2 ','Filariasis due to Brugia timori','Y','0000-00-00 00:00:00'),(107327,10,'B74.0 ','Filariasis due to Wuchereria bancrofti','Y','0000-00-00 00:00:00'),(107328,10,'B74.1 ','Filariasis due to Brugia malayi','Y','0000-00-00 00:00:00'),(107326,10,'B73.1 ','Onchocerciasis without eye disease','Y','0000-00-00 00:00:00'),(107325,10,'B73.09 ','Onchocerciasis with other eye involvement','Y','0000-00-00 00:00:00'),(107324,10,'B73.02 ','Onchocerciasis with glaucoma','Y','0000-00-00 00:00:00'),(107323,10,'B73.01 ','Onchocerciasis with endophthalmitis','Y','0000-00-00 00:00:00'),(107321,10,'B72','Dracunculiasis','Y','0000-00-00 00:00:00'),(107322,10,'B73.00 ','Onchocerciasis with eye involvement, unspecified','Y','0000-00-00 00:00:00'),(107320,10,'B71.9 ','Cestode infection, unspecified','Y','0000-00-00 00:00:00'),(107319,10,'B71.8 ','Other specified cestode infections','Y','0000-00-00 00:00:00'),(107318,10,'B71.1 ','Dipylidiasis','Y','0000-00-00 00:00:00'),(107316,10,'B70.1 ','Sparganosis','Y','0000-00-00 00:00:00'),(107317,10,'B71.0 ','Hymenolepiasis','Y','0000-00-00 00:00:00'),(107315,10,'B70.0 ','Diphyllobothriasis','Y','0000-00-00 00:00:00'),(107314,10,'B69.9 ','Cysticercosis, unspecified','Y','0000-00-00 00:00:00'),(107313,10,'B69.89 ','Cysticercosis of other sites','Y','0000-00-00 00:00:00'),(107312,10,'B69.81 ','Myositis in cysticercosis','Y','0000-00-00 00:00:00'),(107311,10,'B69.1 ','Cysticercosis of eye','Y','0000-00-00 00:00:00'),(107310,10,'B69.0 ','Cysticercosis of central nervous system','Y','0000-00-00 00:00:00'),(107309,10,'B68.9 ','Taeniasis, unspecified','Y','0000-00-00 00:00:00'),(107308,10,'B68.1 ','Taenia saginata taeniasis','Y','0000-00-00 00:00:00'),(107307,10,'B68.0 ','Taenia solium taeniasis','Y','0000-00-00 00:00:00'),(107305,10,'B67.90 ','Echinococcosis, unspecified','Y','0000-00-00 00:00:00'),(107306,10,'B67.99 ','Other echinococcosis','Y','0000-00-00 00:00:00'),(107304,10,'B67.8 ','Echinococcosis, unspecified, of liver','Y','0000-00-00 00:00:00'),(107303,10,'B67.7 ','Echinococcus multilocularis infection, unspecified','Y','0000-00-00 00:00:00'),(107302,10,'B67.69 ','Echinococcus multilocularis infection, other sites','Y','0000-00-00 00:00:00'),(107301,10,'B67.61 ','Echinococcus multilocularis infection, multiple sites','Y','0000-00-00 00:00:00'),(107300,10,'B67.5 ','Echinococcus multilocularis infection of liver','Y','0000-00-00 00:00:00'),(107299,10,'B67.4 ','Echinococcus granulosus infection, unspecified','Y','0000-00-00 00:00:00'),(107298,10,'B67.39 ','Echinococcus granulosus infection, other sites','Y','0000-00-00 00:00:00'),(107297,10,'B67.32 ','Echinococcus granulosus infection, multiple sites','Y','0000-00-00 00:00:00'),(107296,10,'B67.31 ','Echinococcus granulosus infection, thyroid gland','Y','0000-00-00 00:00:00'),(107295,10,'B67.2 ','Echinococcus granulosus infection of bone','Y','0000-00-00 00:00:00'),(107294,10,'B67.1 ','Echinococcus granulosus infection of lung','Y','0000-00-00 00:00:00'),(107293,10,'B67.0 ','Echinococcus granulosus infection of liver','Y','0000-00-00 00:00:00'),(107292,10,'B66.9 ','Fluke infection, unspecified','Y','0000-00-00 00:00:00'),(107291,10,'B66.8 ','Other specified fluke infections','Y','0000-00-00 00:00:00'),(107289,10,'B66.4 ','Paragonimiasis','Y','0000-00-00 00:00:00'),(107290,10,'B66.5 ','Fasciolopsiasis','Y','0000-00-00 00:00:00'),(107288,10,'B66.3 ','Fascioliasis','Y','0000-00-00 00:00:00'),(107286,10,'B66.1 ','Clonorchiasis','Y','0000-00-00 00:00:00'),(107287,10,'B66.2 ','Dicroceliasis','Y','0000-00-00 00:00:00'),(107285,10,'B66.0 ','Opisthorchiasis','Y','0000-00-00 00:00:00'),(107284,10,'B65.9 ','Schistosomiasis, unspecified','Y','0000-00-00 00:00:00'),(107283,10,'B65.8 ','Other schistosomiasis','Y','0000-00-00 00:00:00'),(107282,10,'B65.3 ','Cercarial dermatitis','Y','0000-00-00 00:00:00'),(107281,10,'B65.2 ','Schistosomiasis due to Schistosoma japonicum','Y','0000-00-00 00:00:00'),(107280,10,'B65.1 ','Schistosomiasis due to Schistosoma mansoni [intestinal schistosomiasis]','Y','0000-00-00 00:00:00'),(107279,10,'B65.0 ','Schistosomiasis due to Schistosoma haematobium [urinary schistosomiasis]','Y','0000-00-00 00:00:00'),(107278,10,'B64','Unspecified protozoal disease','Y','0000-00-00 00:00:00'),(107276,10,'B60.2 ','Naegleriasis','Y','0000-00-00 00:00:00'),(107277,10,'B60.8 ','Other specified protozoal diseases','Y','0000-00-00 00:00:00'),(107275,10,'B60.19 ','Other acanthamebic disease','Y','0000-00-00 00:00:00'),(107274,10,'B60.13 ','Keratoconjunctivitis due to Acanthamoeba','Y','0000-00-00 00:00:00'),(107273,10,'B60.12 ','Conjunctivitis due to Acanthamoeba','Y','0000-00-00 00:00:00'),(107272,10,'B60.11 ','Meningoencephalitis due to Acanthamoeba (culbertsoni)','Y','0000-00-00 00:00:00'),(107270,10,'B60.09 ','Other babesiosis','Y','0000-00-00 00:00:00'),(107271,10,'B60.10 ','Acanthamebiasis, unspecified','Y','0000-00-00 00:00:00'),(107269,10,'B60.03 ','Babesiosis due to Babesia divergens','Y','0000-00-00 00:00:00'),(107268,10,'B60.02 ','Babesiosis due to Babesia duncani','Y','0000-00-00 00:00:00'),(107267,10,'B60.01 ','Babesiosis due to Babesia microti','Y','0000-00-00 00:00:00'),(107266,10,'B60.00 ','Babesiosis, unspecified','Y','0000-00-00 00:00:00'),(107265,10,'B59','Pneumocystosis','Y','0000-00-00 00:00:00'),(107264,10,'B58.9 ','Toxoplasmosis, unspecified','Y','0000-00-00 00:00:00'),(107263,10,'B58.89 ','Toxoplasmosis with other organ involvement','Y','0000-00-00 00:00:00'),(107262,10,'B58.83 ','Toxoplasma tubulo-interstitial nephropathy','Y','0000-00-00 00:00:00'),(107261,10,'B58.82 ','Toxoplasma myositis','Y','0000-00-00 00:00:00'),(107260,10,'B58.81 ','Toxoplasma myocarditis','Y','0000-00-00 00:00:00'),(107259,10,'B58.3 ','Pulmonary toxoplasmosis','Y','0000-00-00 00:00:00'),(107258,10,'B58.2 ','Toxoplasma meningoencephalitis','Y','0000-00-00 00:00:00'),(107257,10,'B58.1 ','Toxoplasma hepatitis','Y','0000-00-00 00:00:00'),(107255,10,'B58.01 ','Toxoplasma chorioretinitis','Y','0000-00-00 00:00:00'),(107256,10,'B58.09 ','Other toxoplasma oculopathy','Y','0000-00-00 00:00:00'),(107254,10,'B58.00 ','Toxoplasma oculopathy, unspecified','Y','0000-00-00 00:00:00'),(107253,10,'B57.5 ','Chagas\' disease (chronic) with other organ involvement','Y','0000-00-00 00:00:00'),(107252,10,'B57.49 ','Other nervous system involvement in Chagas\' disease','Y','0000-00-00 00:00:00'),(107251,10,'B57.42 ','Meningoencephalitis in Chagas\' disease','Y','0000-00-00 00:00:00'),(107250,10,'B57.41 ','Meningitis in Chagas\' disease','Y','0000-00-00 00:00:00'),(107249,10,'B57.40 ','Chagas\' disease with nervous system involvement, unspecified','Y','0000-00-00 00:00:00'),(107247,10,'B57.32 ','Megacolon in Chagas\' disease','Y','0000-00-00 00:00:00'),(107248,10,'B57.39 ','Other digestive system involvement in Chagas\' disease','Y','0000-00-00 00:00:00'),(107246,10,'B57.31 ','Megaesophagus in Chagas\' disease','Y','0000-00-00 00:00:00'),(107245,10,'B57.30 ','Chagas\' disease with digestive system involvement, unspecified','Y','0000-00-00 00:00:00'),(107244,10,'B57.2 ','Chagas\' disease (chronic) with heart involvement','Y','0000-00-00 00:00:00'),(107243,10,'B57.1 ','Acute Chagas\' disease without heart involvement','Y','0000-00-00 00:00:00'),(107242,10,'B57.0 ','Acute Chagas\' disease with heart involvement','Y','0000-00-00 00:00:00'),(107241,10,'B56.9 ','African trypanosomiasis, unspecified','Y','0000-00-00 00:00:00'),(107240,10,'B56.1 ','Rhodesiense trypanosomiasis','Y','0000-00-00 00:00:00'),(107239,10,'B56.0 ','Gambiense trypanosomiasis','Y','0000-00-00 00:00:00'),(107238,10,'B55.9 ','Leishmaniasis, unspecified','Y','0000-00-00 00:00:00'),(107237,10,'B55.2 ','Mucocutaneous leishmaniasis','Y','0000-00-00 00:00:00'),(107236,10,'B55.1 ','Cutaneous leishmaniasis','Y','0000-00-00 00:00:00'),(107234,10,'B54','Unspecified malaria','Y','0000-00-00 00:00:00'),(107235,10,'B55.0 ','Visceral leishmaniasis','Y','0000-00-00 00:00:00'),(107233,10,'B53.8 ','Other malaria, not elsewhere classified','Y','0000-00-00 00:00:00'),(107232,10,'B53.1 ','Malaria due to simian plasmodia','Y','0000-00-00 00:00:00'),(107231,10,'B53.0 ','Plasmodium ovale malaria','Y','0000-00-00 00:00:00'),(107230,10,'B52.9 ','Plasmodium malariae malaria without complication','Y','0000-00-00 00:00:00'),(107229,10,'B52.8 ','Plasmodium malariae malaria with other complications','Y','0000-00-00 00:00:00'),(107228,10,'B52.0 ','Plasmodium malariae malaria with nephropathy','Y','0000-00-00 00:00:00'),(107227,10,'B51.9 ','Plasmodium vivax malaria without complication','Y','0000-00-00 00:00:00'),(107226,10,'B51.8 ','Plasmodium vivax malaria with other complications','Y','0000-00-00 00:00:00'),(107225,10,'B51.0 ','Plasmodium vivax malaria with rupture of spleen','Y','0000-00-00 00:00:00'),(107224,10,'B50.9 ','Plasmodium falciparum malaria, unspecified','Y','0000-00-00 00:00:00'),(107223,10,'B50.8 ','Other severe and complicated Plasmodium falciparum malaria','Y','0000-00-00 00:00:00'),(107222,10,'B50.0 ','Plasmodium falciparum malaria with cerebral complications','Y','0000-00-00 00:00:00'),(107221,10,'B49','Unspecified mycosis','Y','0000-00-00 00:00:00'),(107220,10,'B48.8 ','Other specified mycoses','Y','0000-00-00 00:00:00'),(107219,10,'B48.4 ','Penicillosis','Y','0000-00-00 00:00:00'),(107218,10,'B48.3 ','Geotrichosis','Y','0000-00-00 00:00:00'),(107217,10,'B48.2 ','Allescheriasis','Y','0000-00-00 00:00:00'),(107216,10,'B48.1 ','Rhinosporidiosis','Y','0000-00-00 00:00:00'),(107215,10,'B48.0 ','Lobomycosis','Y','0000-00-00 00:00:00'),(107214,10,'B47.9 ','Mycetoma, unspecified','Y','0000-00-00 00:00:00'),(107213,10,'B47.1 ','Actinomycetoma','Y','0000-00-00 00:00:00'),(107212,10,'B47.0 ','Eumycetoma','Y','0000-00-00 00:00:00'),(107211,10,'B46.9 ','Zygomycosis, unspecified','Y','0000-00-00 00:00:00'),(107210,10,'B46.8 ','Other zygomycoses','Y','0000-00-00 00:00:00'),(107209,10,'B46.5 ','Mucormycosis, unspecified','Y','0000-00-00 00:00:00'),(107208,10,'B46.4 ','Disseminated mucormycosis','Y','0000-00-00 00:00:00'),(107207,10,'B46.3 ','Cutaneous mucormycosis','Y','0000-00-00 00:00:00'),(107206,10,'B46.2 ','Gastrointestinal mucormycosis','Y','0000-00-00 00:00:00'),(107205,10,'B46.1 ','Rhinocerebral mucormycosis','Y','0000-00-00 00:00:00'),(107204,10,'B46.0 ','Pulmonary mucormycosis','Y','0000-00-00 00:00:00'),(107203,10,'B45.9 ','Cryptococcosis, unspecified','Y','0000-00-00 00:00:00'),(107202,10,'B45.8 ','Other forms of cryptococcosis','Y','0000-00-00 00:00:00'),(107201,10,'B45.7 ','Disseminated cryptococcosis','Y','0000-00-00 00:00:00'),(107200,10,'B45.3 ','Osseous cryptococcosis','Y','0000-00-00 00:00:00'),(107199,10,'B45.2 ','Cutaneous cryptococcosis','Y','0000-00-00 00:00:00'),(107198,10,'B45.1 ','Cerebral cryptococcosis','Y','0000-00-00 00:00:00'),(107197,10,'B45.0 ','Pulmonary cryptococcosis','Y','0000-00-00 00:00:00'),(107196,10,'B44.9 ','Aspergillosis, unspecified','Y','0000-00-00 00:00:00'),(107195,10,'B44.89 ','Other forms of aspergillosis','Y','0000-00-00 00:00:00'),(107194,10,'B44.81 ','Allergic bronchopulmonary aspergillosis','Y','0000-00-00 00:00:00'),(107193,10,'B44.7 ','Disseminated aspergillosis','Y','0000-00-00 00:00:00'),(107192,10,'B44.2 ','Tonsillar aspergillosis','Y','0000-00-00 00:00:00'),(107191,10,'B44.1 ','Other pulmonary aspergillosis','Y','0000-00-00 00:00:00'),(107190,10,'B44.0 ','Invasive pulmonary aspergillosis','Y','0000-00-00 00:00:00'),(107189,10,'B43.9 ','Chromomycosis, unspecified','Y','0000-00-00 00:00:00'),(107188,10,'B43.8 ','Other forms of chromomycosis','Y','0000-00-00 00:00:00'),(107187,10,'B43.2 ','Subcutaneous pheomycotic abscess and cyst','Y','0000-00-00 00:00:00'),(107186,10,'B43.1 ','Pheomycotic brain abscess','Y','0000-00-00 00:00:00'),(107185,10,'B43.0 ','Cutaneous chromomycosis','Y','0000-00-00 00:00:00'),(107184,10,'B42.9 ','Sporotrichosis, unspecified','Y','0000-00-00 00:00:00'),(107183,10,'B42.89 ','Other forms of sporotrichosis','Y','0000-00-00 00:00:00'),(107182,10,'B42.82 ','Sporotrichosis arthritis','Y','0000-00-00 00:00:00'),(107181,10,'B42.81 ','Cerebral sporotrichosis','Y','0000-00-00 00:00:00'),(107180,10,'B42.7 ','Disseminated sporotrichosis','Y','0000-00-00 00:00:00'),(107179,10,'B42.1 ','Lymphocutaneous sporotrichosis','Y','0000-00-00 00:00:00'),(107178,10,'B42.0 ','Pulmonary sporotrichosis','Y','0000-00-00 00:00:00'),(107177,10,'B41.9 ','Paracoccidioidomycosis, unspecified','Y','0000-00-00 00:00:00'),(107176,10,'B41.8 ','Other forms of paracoccidioidomycosis','Y','0000-00-00 00:00:00'),(107175,10,'B41.7 ','Disseminated paracoccidioidomycosis','Y','0000-00-00 00:00:00'),(107174,10,'B41.0 ','Pulmonary paracoccidioidomycosis','Y','0000-00-00 00:00:00'),(107173,10,'B40.9 ','Blastomycosis, unspecified','Y','0000-00-00 00:00:00'),(107172,10,'B40.89 ','Other forms of blastomycosis','Y','0000-00-00 00:00:00'),(107171,10,'B40.81 ','Blastomycotic meningoencephalitis','Y','0000-00-00 00:00:00'),(107170,10,'B40.7 ','Disseminated blastomycosis','Y','0000-00-00 00:00:00'),(107169,10,'B40.3 ','Cutaneous blastomycosis','Y','0000-00-00 00:00:00'),(107168,10,'B40.2 ','Pulmonary blastomycosis, unspecified','Y','0000-00-00 00:00:00'),(107167,10,'B40.1 ','Chronic pulmonary blastomycosis','Y','0000-00-00 00:00:00'),(107166,10,'B40.0 ','Acute pulmonary blastomycosis','Y','0000-00-00 00:00:00'),(107165,10,'B39.9 ','Histoplasmosis, unspecified','Y','0000-00-00 00:00:00'),(107164,10,'B39.5 ','Histoplasmosis duboisii','Y','0000-00-00 00:00:00'),(107163,10,'B39.4 ','Histoplasmosis capsulati, unspecified','Y','0000-00-00 00:00:00'),(107162,10,'B39.3 ','Disseminated histoplasmosis capsulati','Y','0000-00-00 00:00:00'),(107161,10,'B39.2 ','Pulmonary histoplasmosis capsulati, unspecified','Y','0000-00-00 00:00:00'),(107160,10,'B39.1 ','Chronic pulmonary histoplasmosis capsulati','Y','0000-00-00 00:00:00'),(107159,10,'B39.0 ','Acute pulmonary histoplasmosis capsulati','Y','0000-00-00 00:00:00'),(107158,10,'B38.9 ','Coccidioidomycosis, unspecified','Y','0000-00-00 00:00:00'),(107157,10,'B38.89 ','Other forms of coccidioidomycosis','Y','0000-00-00 00:00:00'),(107156,10,'B38.81 ','Prostatic coccidioidomycosis','Y','0000-00-00 00:00:00'),(107155,10,'B38.7 ','Disseminated coccidioidomycosis','Y','0000-00-00 00:00:00'),(107154,10,'B38.4 ','Coccidioidomycosis meningitis','Y','0000-00-00 00:00:00'),(107153,10,'B38.3 ','Cutaneous coccidioidomycosis','Y','0000-00-00 00:00:00'),(107152,10,'B38.2 ','Pulmonary coccidioidomycosis, unspecified','Y','0000-00-00 00:00:00'),(107151,10,'B38.1 ','Chronic pulmonary coccidioidomycosis','Y','0000-00-00 00:00:00'),(107149,10,'B37.9 ','Candidiasis, unspecified','Y','0000-00-00 00:00:00'),(107150,10,'B38.0 ','Acute pulmonary coccidioidomycosis','Y','0000-00-00 00:00:00'),(107148,10,'B37.89 ','Other sites of candidiasis','Y','0000-00-00 00:00:00'),(107146,10,'B37.83 ','Candidal cheilitis','Y','0000-00-00 00:00:00'),(107147,10,'B37.84 ','Candidal otitis externa','Y','0000-00-00 00:00:00'),(107145,10,'B37.82 ','Candidal enteritis','Y','0000-00-00 00:00:00'),(107144,10,'B37.81 ','Candidal esophagitis','Y','0000-00-00 00:00:00'),(107143,10,'B37.7 ','Candidal sepsis','Y','0000-00-00 00:00:00'),(107141,10,'B37.5 ','Candidal meningitis','Y','0000-00-00 00:00:00'),(107142,10,'B37.6 ','Candidal endocarditis','Y','0000-00-00 00:00:00'),(107139,10,'B37.42 ','Candidal balanitis','Y','0000-00-00 00:00:00'),(107140,10,'B37.49 ','Other urogenital candidiasis','Y','0000-00-00 00:00:00'),(107138,10,'B37.41 ','Candidal cystitis and urethritis','Y','0000-00-00 00:00:00'),(107137,10,'B37.32 ','Chronic candidiasis of vulva and vagina','Y','0000-00-00 00:00:00'),(107135,10,'B37.2 ','Candidiasis of skin and nail','Y','0000-00-00 00:00:00'),(107136,10,'B37.31 ','Acute candidiasis of vulva and vagina','Y','0000-00-00 00:00:00'),(107134,10,'B37.1 ','Pulmonary candidiasis','Y','0000-00-00 00:00:00'),(107132,10,'B36.9 ','Superficial mycosis, unspecified','Y','0000-00-00 00:00:00'),(107133,10,'B37.0 ','Candidal stomatitis','Y','0000-00-00 00:00:00'),(107131,10,'B36.8 ','Other specified superficial mycoses','Y','0000-00-00 00:00:00'),(107129,10,'B36.2 ','White piedra','Y','0000-00-00 00:00:00'),(107130,10,'B36.3 ','Black piedra','Y','0000-00-00 00:00:00'),(107127,10,'B36.0 ','Pityriasis versicolor','Y','0000-00-00 00:00:00'),(107128,10,'B36.1 ','Tinea nigra','Y','0000-00-00 00:00:00'),(107126,10,'B35.9 ','Dermatophytosis, unspecified','Y','0000-00-00 00:00:00'),(107124,10,'B35.6 ','Tinea cruris','Y','0000-00-00 00:00:00'),(107125,10,'B35.8 ','Other dermatophytoses','Y','0000-00-00 00:00:00'),(107122,10,'B35.4 ','Tinea corporis','Y','0000-00-00 00:00:00'),(107123,10,'B35.5 ','Tinea imbricata','Y','0000-00-00 00:00:00'),(107120,10,'B35.2 ','Tinea manuum','Y','0000-00-00 00:00:00'),(107121,10,'B35.3 ','Tinea pedis','Y','0000-00-00 00:00:00'),(107119,10,'B35.1 ','Tinea unguium','Y','0000-00-00 00:00:00'),(107117,10,'B34.9 ','Viral infection, unspecified','Y','0000-00-00 00:00:00'),(107118,10,'B35.0 ','Tinea barbae and tinea capitis','Y','0000-00-00 00:00:00'),(107116,10,'B34.8 ','Other viral infections of unspecified site','Y','0000-00-00 00:00:00'),(107115,10,'B34.4 ','Papovavirus infection, unspecified','Y','0000-00-00 00:00:00'),(107114,10,'B34.3 ','Parvovirus infection, unspecified','Y','0000-00-00 00:00:00'),(107113,10,'B34.2 ','Coronavirus infection, unspecified','Y','0000-00-00 00:00:00'),(107112,10,'B34.1 ','Enterovirus infection, unspecified','Y','0000-00-00 00:00:00'),(107110,10,'B33.8 ','Other specified viral diseases','Y','0000-00-00 00:00:00'),(107111,10,'B34.0 ','Adenovirus infection, unspecified','Y','0000-00-00 00:00:00'),(107109,10,'B33.4 ','Hantavirus (cardio)-pulmonary syndrome [HPS] [HCPS]','Y','0000-00-00 00:00:00'),(107108,10,'B33.3 ','Retrovirus infections, not elsewhere classified','Y','0000-00-00 00:00:00'),(107107,10,'B33.24 ','Viral cardiomyopathy','Y','0000-00-00 00:00:00'),(107105,10,'B33.22 ','Viral myocarditis','Y','0000-00-00 00:00:00'),(107106,10,'B33.23 ','Viral pericarditis','Y','0000-00-00 00:00:00'),(107104,10,'B33.21 ','Viral endocarditis','Y','0000-00-00 00:00:00'),(107102,10,'B33.1 ','Ross River disease','Y','0000-00-00 00:00:00'),(107103,10,'B33.20 ','Viral carditis, unspecified','Y','0000-00-00 00:00:00'),(107101,10,'B33.0 ','Epidemic myalgia','Y','0000-00-00 00:00:00'),(107100,10,'B30.9 ','Viral conjunctivitis, unspecified','Y','0000-00-00 00:00:00'),(107099,10,'B30.8 ','Other viral conjunctivitis','Y','0000-00-00 00:00:00'),(107097,10,'B30.2 ','Viral pharyngoconjunctivitis','Y','0000-00-00 00:00:00'),(107098,10,'B30.3 ','Acute epidemic hemorrhagic conjunctivitis (enteroviral)','Y','0000-00-00 00:00:00'),(107096,10,'B30.1 ','Conjunctivitis due to adenovirus','Y','0000-00-00 00:00:00'),(107095,10,'B30.0 ','Keratoconjunctivitis due to adenovirus','Y','0000-00-00 00:00:00'),(107094,10,'B27.99 ','Infectious mononucleosis, unspecified with other complication','Y','0000-00-00 00:00:00'),(107093,10,'B27.92 ','Infectious mononucleosis, unspecified with meningitis','Y','0000-00-00 00:00:00'),(107092,10,'B27.91 ','Infectious mononucleosis, unspecified with polyneuropathy','Y','0000-00-00 00:00:00'),(107091,10,'B27.90 ','Infectious mononucleosis, unspecified without complication','Y','0000-00-00 00:00:00'),(107090,10,'B27.89 ','Other infectious mononucleosis with other complication','Y','0000-00-00 00:00:00'),(107089,10,'B27.82 ','Other infectious mononucleosis with meningitis','Y','0000-00-00 00:00:00'),(107088,10,'B27.81 ','Other infectious mononucleosis with polyneuropathy','Y','0000-00-00 00:00:00'),(107087,10,'B27.80 ','Other infectious mononucleosis without complication','Y','0000-00-00 00:00:00'),(107086,10,'B27.19 ','Cytomegaloviral mononucleosis with other complication','Y','0000-00-00 00:00:00'),(107085,10,'B27.12 ','Cytomegaloviral mononucleosis with meningitis','Y','0000-00-00 00:00:00'),(107084,10,'B27.11 ','Cytomegaloviral mononucleosis with polyneuropathy','Y','0000-00-00 00:00:00'),(107083,10,'B27.10 ','Cytomegaloviral mononucleosis without complications','Y','0000-00-00 00:00:00'),(107082,10,'B27.09 ','Gammaherpesviral mononucleosis with other complications','Y','0000-00-00 00:00:00'),(107081,10,'B27.02 ','Gammaherpesviral mononucleosis with meningitis','Y','0000-00-00 00:00:00'),(107080,10,'B27.01 ','Gammaherpesviral mononucleosis with polyneuropathy','Y','0000-00-00 00:00:00'),(107079,10,'B27.00 ','Gammaherpesviral mononucleosis without complication','Y','0000-00-00 00:00:00'),(107078,10,'B26.9 ','Mumps without complication','Y','0000-00-00 00:00:00'),(107076,10,'B26.85 ','Mumps arthritis','Y','0000-00-00 00:00:00'),(107077,10,'B26.89 ','Other mumps complications','Y','0000-00-00 00:00:00'),(107075,10,'B26.84 ','Mumps polyneuropathy','Y','0000-00-00 00:00:00'),(107074,10,'B26.83 ','Mumps nephritis','Y','0000-00-00 00:00:00'),(107072,10,'B26.81 ','Mumps hepatitis','Y','0000-00-00 00:00:00'),(107073,10,'B26.82 ','Mumps myocarditis','Y','0000-00-00 00:00:00'),(107071,10,'B26.3 ','Mumps pancreatitis','Y','0000-00-00 00:00:00'),(107070,10,'B26.2 ','Mumps encephalitis','Y','0000-00-00 00:00:00'),(107068,10,'B26.0 ','Mumps orchitis','Y','0000-00-00 00:00:00'),(107069,10,'B26.1 ','Mumps meningitis','Y','0000-00-00 00:00:00'),(107067,10,'B25.9 ','Cytomegaloviral disease, unspecified','Y','0000-00-00 00:00:00'),(107066,10,'B25.8 ','Other cytomegaloviral diseases','Y','0000-00-00 00:00:00'),(107065,10,'B25.2 ','Cytomegaloviral pancreatitis','Y','0000-00-00 00:00:00'),(107064,10,'B25.1 ','Cytomegaloviral hepatitis','Y','0000-00-00 00:00:00'),(107063,10,'B25.0 ','Cytomegaloviral pneumonitis','Y','0000-00-00 00:00:00'),(107062,10,'B20','Human immunodeficiency virus [HIV] disease','Y','0000-00-00 00:00:00'),(107061,10,'B19.9 ','Unspecified viral hepatitis without hepatic coma','Y','0000-00-00 00:00:00'),(107060,10,'B19.21 ','Unspecified viral hepatitis C with hepatic coma','Y','0000-00-00 00:00:00'),(107059,10,'B19.20 ','Unspecified viral hepatitis C without hepatic coma','Y','0000-00-00 00:00:00'),(107058,10,'B19.11 ','Unspecified viral hepatitis B with hepatic coma','Y','0000-00-00 00:00:00'),(107057,10,'B19.10 ','Unspecified viral hepatitis B without hepatic coma','Y','0000-00-00 00:00:00'),(107056,10,'B19.0 ','Unspecified viral hepatitis with hepatic coma','Y','0000-00-00 00:00:00'),(107055,10,'B18.9 ','Chronic viral hepatitis, unspecified','Y','0000-00-00 00:00:00'),(107054,10,'B18.8 ','Other chronic viral hepatitis','Y','0000-00-00 00:00:00'),(107053,10,'B18.2 ','Chronic viral hepatitis C','Y','0000-00-00 00:00:00'),(107052,10,'B18.1 ','Chronic viral hepatitis B without delta-agent','Y','0000-00-00 00:00:00'),(107051,10,'B18.0 ','Chronic viral hepatitis B with delta-agent','Y','0000-00-00 00:00:00'),(107050,10,'B17.9 ','Acute viral hepatitis, unspecified','Y','0000-00-00 00:00:00'),(107049,10,'B17.8 ','Other specified acute viral hepatitis','Y','0000-00-00 00:00:00'),(107048,10,'B17.2 ','Acute hepatitis E','Y','0000-00-00 00:00:00'),(107047,10,'B17.11 ','Acute hepatitis C with hepatic coma','Y','0000-00-00 00:00:00'),(107046,10,'B17.10 ','Acute hepatitis C without hepatic coma','Y','0000-00-00 00:00:00'),(107045,10,'B17.0 ','Acute delta-(super) infection of hepatitis B carrier','Y','0000-00-00 00:00:00'),(107044,10,'B16.9 ','Acute hepatitis B without delta-agent and without hepatic coma','Y','0000-00-00 00:00:00'),(107043,10,'B16.2 ','Acute hepatitis B without delta-agent with hepatic coma','Y','0000-00-00 00:00:00'),(107042,10,'B16.1 ','Acute hepatitis B with delta-agent without hepatic coma','Y','0000-00-00 00:00:00'),(107041,10,'B16.0 ','Acute hepatitis B with delta-agent with hepatic coma','Y','0000-00-00 00:00:00'),(107040,10,'B15.9 ','Hepatitis A without hepatic coma','Y','0000-00-00 00:00:00'),(107038,10,'B10.89 ','Other human herpesvirus infection','Y','0000-00-00 00:00:00'),(107039,10,'B15.0 ','Hepatitis A with hepatic coma','Y','0000-00-00 00:00:00'),(107037,10,'B10.82 ','Human herpesvirus 7 infection','Y','0000-00-00 00:00:00'),(107036,10,'B10.81 ','Human herpesvirus 6 infection','Y','0000-00-00 00:00:00'),(107035,10,'B10.09 ','Other human herpesvirus encephalitis','Y','0000-00-00 00:00:00'),(107034,10,'B10.01 ','Human herpesvirus 6 encephalitis','Y','0000-00-00 00:00:00'),(107033,10,'B09','Unspecified viral infection characterized by skin and mucous membrane lesions','Y','0000-00-00 00:00:00'),(107032,10,'B08.8 ','Other specified viral infections characterized by skin and mucous membrane lesions','Y','0000-00-00 00:00:00'),(107031,10,'B08.79 ','Other yatapoxvirus infections','Y','0000-00-00 00:00:00'),(107030,10,'B08.72 ','Yaba pox virus disease','Y','0000-00-00 00:00:00'),(107029,10,'B08.71 ','Tanapox virus disease','Y','0000-00-00 00:00:00'),(107028,10,'B08.70 ','Yatapoxvirus infection, unspecified','Y','0000-00-00 00:00:00'),(107027,10,'B08.69 ','Other parapoxvirus infections','Y','0000-00-00 00:00:00'),(107026,10,'B08.62 ','Sealpox','Y','0000-00-00 00:00:00'),(107025,10,'B08.61 ','Bovine stomatitis','Y','0000-00-00 00:00:00'),(107024,10,'B08.60 ','Parapoxvirus infection, unspecified','Y','0000-00-00 00:00:00'),(107023,10,'B08.5 ','Enteroviral vesicular pharyngitis','Y','0000-00-00 00:00:00'),(107022,10,'B08.4 ','Enteroviral vesicular stomatitis with exanthem','Y','0000-00-00 00:00:00'),(107021,10,'B08.3 ','Erythema infectiosum [fifth disease]','Y','0000-00-00 00:00:00'),(107020,10,'B08.22 ','Exanthema subitum [sixth disease] due to human herpesvirus 7','Y','0000-00-00 00:00:00'),(107019,10,'B08.21 ','Exanthema subitum [sixth disease] due to human herpesvirus 6','Y','0000-00-00 00:00:00'),(107018,10,'B08.20 ','Exanthema subitum [sixth disease], unspecified','Y','0000-00-00 00:00:00'),(107017,10,'B08.1 ','Molluscum contagiosum','Y','0000-00-00 00:00:00'),(107016,10,'B08.09 ','Other orthopoxvirus infections','Y','0000-00-00 00:00:00'),(107015,10,'B08.04 ','Paravaccinia, unspecified','Y','0000-00-00 00:00:00'),(107014,10,'B08.03 ','Pseudocowpox [milker\'s node]','Y','0000-00-00 00:00:00'),(107013,10,'B08.02 ','Orf virus disease','Y','0000-00-00 00:00:00'),(107012,10,'B08.011 ','Vaccinia not from vaccine','Y','0000-00-00 00:00:00'),(107011,10,'B08.010 ','Cowpox','Y','0000-00-00 00:00:00'),(107009,10,'B07.8 ','Other viral warts','Y','0000-00-00 00:00:00'),(107010,10,'B07.9 ','Viral wart, unspecified','Y','0000-00-00 00:00:00'),(107007,10,'B06.9 ','Rubella without complication','Y','0000-00-00 00:00:00'),(107008,10,'B07.0 ','Plantar wart','Y','0000-00-00 00:00:00'),(107005,10,'B06.82 ','Rubella arthritis','Y','0000-00-00 00:00:00'),(107006,10,'B06.89 ','Other rubella complications','Y','0000-00-00 00:00:00'),(107003,10,'B06.09 ','Other neurological complications of rubella','Y','0000-00-00 00:00:00'),(107004,10,'B06.81 ','Rubella pneumonia','Y','0000-00-00 00:00:00'),(107001,10,'B06.01 ','Rubella encephalitis','Y','0000-00-00 00:00:00'),(107002,10,'B06.02 ','Rubella meningitis','Y','0000-00-00 00:00:00'),(107000,10,'B06.00 ','Rubella with neurological complication, unspecified','Y','0000-00-00 00:00:00'),(106999,10,'B05.9 ','Measles without complication','Y','0000-00-00 00:00:00'),(106998,10,'B05.89 ','Other measles complications','Y','0000-00-00 00:00:00'),(106997,10,'B05.81 ','Measles keratitis and keratoconjunctivitis','Y','0000-00-00 00:00:00'),(106996,10,'B05.4 ','Measles with intestinal complications','Y','0000-00-00 00:00:00'),(106995,10,'B05.3 ','Measles complicated by otitis media','Y','0000-00-00 00:00:00'),(106994,10,'B05.2 ','Measles complicated by pneumonia','Y','0000-00-00 00:00:00'),(106993,10,'B05.1 ','Measles complicated by meningitis','Y','0000-00-00 00:00:00'),(106992,10,'B05.0 ','Measles complicated by encephalitis','Y','0000-00-00 00:00:00'),(106991,10,'B04','Monkeypox','Y','0000-00-00 00:00:00'),(106990,10,'B03','Smallpox','Y','0000-00-00 00:00:00'),(106989,10,'B02.9 ','Zoster without complications','Y','0000-00-00 00:00:00'),(106988,10,'B02.8 ','Zoster with other complications','Y','0000-00-00 00:00:00'),(106987,10,'B02.7 ','Disseminated zoster','Y','0000-00-00 00:00:00'),(106986,10,'B02.39 ','Other herpes zoster eye disease','Y','0000-00-00 00:00:00'),(106985,10,'B02.34 ','Zoster scleritis','Y','0000-00-00 00:00:00'),(106984,10,'B02.33 ','Zoster keratitis','Y','0000-00-00 00:00:00'),(106983,10,'B02.32 ','Zoster iridocyclitis','Y','0000-00-00 00:00:00'),(106982,10,'B02.31 ','Zoster conjunctivitis','Y','0000-00-00 00:00:00'),(106981,10,'B02.30 ','Zoster ocular disease, unspecified','Y','0000-00-00 00:00:00'),(106980,10,'B02.29 ','Other postherpetic nervous system involvement','Y','0000-00-00 00:00:00'),(106979,10,'B02.24 ','Postherpetic myelitis','Y','0000-00-00 00:00:00'),(106978,10,'B02.23 ','Postherpetic polyneuropathy','Y','0000-00-00 00:00:00'),(106977,10,'B02.22 ','Postherpetic trigeminal neuralgia','Y','0000-00-00 00:00:00'),(106976,10,'B02.21 ','Postherpetic geniculate ganglionitis','Y','0000-00-00 00:00:00'),(106975,10,'B02.1 ','Zoster meningitis','Y','0000-00-00 00:00:00'),(106974,10,'B02.0 ','Zoster encephalitis','Y','0000-00-00 00:00:00'),(106973,10,'B01.9 ','Varicella without complication','Y','0000-00-00 00:00:00'),(106972,10,'B01.89 ','Other varicella complications','Y','0000-00-00 00:00:00'),(106971,10,'B01.81 ','Varicella keratitis','Y','0000-00-00 00:00:00'),(106970,10,'B01.2 ','Varicella pneumonia','Y','0000-00-00 00:00:00'),(106969,10,'B01.12 ','Varicella myelitis','Y','0000-00-00 00:00:00'),(106968,10,'B01.11 ','Varicella encephalitis and encephalomyelitis','Y','0000-00-00 00:00:00'),(106967,10,'B01.0 ','Varicella meningitis','Y','0000-00-00 00:00:00'),(106966,10,'B00.9 ','Herpesviral infection, unspecified','Y','0000-00-00 00:00:00'),(106965,10,'B00.89 ','Other herpesviral infection','Y','0000-00-00 00:00:00'),(106964,10,'B00.82 ','Herpes simplex myelitis','Y','0000-00-00 00:00:00'),(106963,10,'B00.81 ','Herpesviral hepatitis','Y','0000-00-00 00:00:00'),(106962,10,'B00.7 ','Disseminated herpesviral disease','Y','0000-00-00 00:00:00'),(106961,10,'B00.59 ','Other herpesviral disease of eye','Y','0000-00-00 00:00:00'),(106960,10,'B00.53 ','Herpesviral conjunctivitis','Y','0000-00-00 00:00:00'),(106959,10,'B00.52 ','Herpesviral keratitis','Y','0000-00-00 00:00:00'),(106958,10,'B00.51 ','Herpesviral iridocyclitis','Y','0000-00-00 00:00:00'),(106957,10,'B00.50 ','Herpesviral ocular disease, unspecified','Y','0000-00-00 00:00:00'),(106956,10,'B00.4 ','Herpesviral encephalitis','Y','0000-00-00 00:00:00'),(106955,10,'B00.3 ','Herpesviral meningitis','Y','0000-00-00 00:00:00'),(106954,10,'B00.2 ','Herpesviral gingivostomatitis and pharyngotonsillitis','Y','0000-00-00 00:00:00'),(106953,10,'B00.1 ','Herpesviral vesicular dermatitis','Y','0000-00-00 00:00:00'),(106952,10,'B00.0 ','Eczema herpeticum','Y','0000-00-00 00:00:00'),(106951,10,'A99','Unspecified viral hemorrhagic fever','Y','0000-00-00 00:00:00'),(106950,10,'A98.8 ','Other specified viral hemorrhagic fevers','Y','0000-00-00 00:00:00'),(106949,10,'A98.5 ','Hemorrhagic fever with renal syndrome','Y','0000-00-00 00:00:00'),(106948,10,'A98.4 ','Ebola virus disease','Y','0000-00-00 00:00:00'),(106947,10,'A98.3 ','Marburg virus disease','Y','0000-00-00 00:00:00'),(106946,10,'A98.2 ','Kyasanur Forest disease','Y','0000-00-00 00:00:00'),(106945,10,'A98.1 ','Omsk hemorrhagic fever','Y','0000-00-00 00:00:00'),(106944,10,'A98.0 ','Crimean-Congo hemorrhagic fever','Y','0000-00-00 00:00:00'),(106943,10,'A96.9 ','Arenaviral hemorrhagic fever, unspecified','Y','0000-00-00 00:00:00'),(106942,10,'A96.8 ','Other arenaviral hemorrhagic fevers','Y','0000-00-00 00:00:00'),(106941,10,'A96.2 ','Lassa fever','Y','0000-00-00 00:00:00'),(106940,10,'A96.1 ','Machupo hemorrhagic fever','Y','0000-00-00 00:00:00'),(106939,10,'A96.0 ','Junin hemorrhagic fever','Y','0000-00-00 00:00:00'),(106937,10,'A95.1 ','Urban yellow fever','Y','0000-00-00 00:00:00'),(106938,10,'A95.9 ','Yellow fever, unspecified','Y','0000-00-00 00:00:00'),(106936,10,'A95.0 ','Sylvatic yellow fever','Y','0000-00-00 00:00:00'),(106935,10,'A94','Unspecified arthropod-borne viral fever','Y','0000-00-00 00:00:00'),(106934,10,'A93.8 ','Other specified arthropod-borne viral fevers','Y','0000-00-00 00:00:00'),(106933,10,'A93.2 ','Colorado tick fever','Y','0000-00-00 00:00:00'),(106932,10,'A93.1 ','Sandfly fever','Y','0000-00-00 00:00:00'),(106931,10,'A93.0 ','Oropouche virus disease','Y','0000-00-00 00:00:00'),(106930,10,'A92.9 ','Mosquito-borne viral fever, unspecified','Y','0000-00-00 00:00:00'),(106929,10,'A92.8 ','Other specified mosquito-borne viral fevers','Y','0000-00-00 00:00:00'),(106928,10,'A92.5 ','Zika virus disease','Y','0000-00-00 00:00:00'),(106927,10,'A92.4 ','Rift Valley fever','Y','0000-00-00 00:00:00'),(106926,10,'A92.39 ','West Nile virus infection with other complications','Y','0000-00-00 00:00:00'),(106925,10,'A92.32 ','West Nile virus infection with other neurologic manifestation','Y','0000-00-00 00:00:00'),(106924,10,'A92.31 ','West Nile virus infection with encephalitis','Y','0000-00-00 00:00:00'),(106923,10,'A92.30 ','West Nile virus infection, unspecified','Y','0000-00-00 00:00:00'),(106922,10,'A92.2 ','Venezuelan equine fever','Y','0000-00-00 00:00:00'),(106921,10,'A92.1 ','O\'nyong-nyong fever','Y','0000-00-00 00:00:00'),(106920,10,'A92.0 ','Chikungunya virus disease','Y','0000-00-00 00:00:00'),(106919,10,'A91','Dengue hemorrhagic fever','Y','0000-00-00 00:00:00'),(106918,10,'A90','Dengue fever [classical dengue]','Y','0000-00-00 00:00:00'),(106917,10,'A89','Unspecified viral infection of central nervous system','Y','0000-00-00 00:00:00'),(106916,10,'A88.8 ','Other specified viral infections of central nervous system','Y','0000-00-00 00:00:00'),(106915,10,'A88.1 ','Epidemic vertigo','Y','0000-00-00 00:00:00'),(106914,10,'A88.0 ','Enteroviral exanthematous fever [Boston exanthem]','Y','0000-00-00 00:00:00'),(106913,10,'A87.9 ','Viral meningitis, unspecified','Y','0000-00-00 00:00:00'),(106912,10,'A87.8 ','Other viral meningitis','Y','0000-00-00 00:00:00'),(106911,10,'A87.2 ','Lymphocytic choriomeningitis','Y','0000-00-00 00:00:00'),(106910,10,'A87.1 ','Adenoviral meningitis','Y','0000-00-00 00:00:00'),(106909,10,'A87.0 ','Enteroviral meningitis','Y','0000-00-00 00:00:00'),(106908,10,'A86','Unspecified viral encephalitis','Y','0000-00-00 00:00:00'),(106907,10,'A85.8 ','Other specified viral encephalitis','Y','0000-00-00 00:00:00'),(106906,10,'A85.2 ','Arthropod-borne viral encephalitis, unspecified','Y','0000-00-00 00:00:00'),(106905,10,'A85.1 ','Adenoviral encephalitis','Y','0000-00-00 00:00:00'),(106904,10,'A85.0 ','Enteroviral encephalitis','Y','0000-00-00 00:00:00'),(106903,10,'A84.9 ','Tick-borne viral encephalitis, unspecified','Y','0000-00-00 00:00:00'),(106902,10,'A84.89 ','Other tick-borne viral encephalitis','Y','0000-00-00 00:00:00'),(106901,10,'A84.81 ','Powassan virus disease','Y','0000-00-00 00:00:00'),(106900,10,'A84.1 ','Central European tick-borne encephalitis','Y','0000-00-00 00:00:00'),(106899,10,'A84.0 ','Far Eastern tick-borne encephalitis [Russian spring-summer encephalitis]','Y','0000-00-00 00:00:00'),(106898,10,'A83.9 ','Mosquito-borne viral encephalitis, unspecified','Y','0000-00-00 00:00:00'),(106897,10,'A83.8 ','Other mosquito-borne viral encephalitis','Y','0000-00-00 00:00:00'),(106895,10,'A83.5 ','California encephalitis','Y','0000-00-00 00:00:00'),(106896,10,'A83.6 ','Rocio virus disease','Y','0000-00-00 00:00:00'),(106894,10,'A83.4 ','Australian encephalitis','Y','0000-00-00 00:00:00'),(106892,10,'A83.2 ','Eastern equine encephalitis','Y','0000-00-00 00:00:00'),(106893,10,'A83.3 ','St Louis encephalitis','Y','0000-00-00 00:00:00'),(106891,10,'A83.1 ','Western equine encephalitis','Y','0000-00-00 00:00:00'),(106889,10,'A82.9 ','Rabies, unspecified','Y','0000-00-00 00:00:00'),(106890,10,'A83.0 ','Japanese encephalitis','Y','0000-00-00 00:00:00'),(106887,10,'A82.0 ','Sylvatic rabies','Y','0000-00-00 00:00:00'),(106888,10,'A82.1 ','Urban rabies','Y','0000-00-00 00:00:00'),(106886,10,'A81.9 ','Atypical virus infection of central nervous system, unspecified','Y','0000-00-00 00:00:00'),(106885,10,'A81.89 ','Other atypical virus infections of central nervous system','Y','0000-00-00 00:00:00'),(106884,10,'A81.83 ','Fatal familial insomnia','Y','0000-00-00 00:00:00'),(106882,10,'A81.81 ','Kuru','Y','0000-00-00 00:00:00'),(106883,10,'A81.82 ','Gerstmann-Straussler-Scheinker syndrome','Y','0000-00-00 00:00:00'),(106881,10,'A81.2 ','Progressive multifocal leukoencephalopathy','Y','0000-00-00 00:00:00'),(106880,10,'A81.1 ','Subacute sclerosing panencephalitis','Y','0000-00-00 00:00:00'),(106879,10,'A81.09 ','Other Creutzfeldt-Jakob disease','Y','0000-00-00 00:00:00'),(106877,10,'A81.00 ','Creutzfeldt-Jakob disease, unspecified','Y','0000-00-00 00:00:00'),(106878,10,'A81.01 ','Variant Creutzfeldt-Jakob disease','Y','0000-00-00 00:00:00'),(106876,10,'A80.9 ','Acute poliomyelitis, unspecified','Y','0000-00-00 00:00:00'),(106875,10,'A80.4 ','Acute nonparalytic poliomyelitis','Y','0000-00-00 00:00:00'),(106874,10,'A80.39 ','Other acute paralytic poliomyelitis','Y','0000-00-00 00:00:00'),(106873,10,'A80.30 ','Acute paralytic poliomyelitis, unspecified','Y','0000-00-00 00:00:00'),(106872,10,'A80.2 ','Acute paralytic poliomyelitis, wild virus, indigenous','Y','0000-00-00 00:00:00'),(106871,10,'A80.1 ','Acute paralytic poliomyelitis, wild virus, imported','Y','0000-00-00 00:00:00'),(106870,10,'A80.0 ','Acute paralytic poliomyelitis, vaccine-associated','Y','0000-00-00 00:00:00'),(106869,10,'A79.9 ','Rickettsiosis, unspecified','Y','0000-00-00 00:00:00'),(106868,10,'A79.89 ','Other specified rickettsioses','Y','0000-00-00 00:00:00'),(106867,10,'A79.82 ','Anaplasmosis [A. phagocytophilum]','Y','0000-00-00 00:00:00'),(106866,10,'A79.81 ','Rickettsiosis due to Ehrlichia sennetsu','Y','0000-00-00 00:00:00'),(106865,10,'A79.1 ','Rickettsialpox due to Rickettsia akari','Y','0000-00-00 00:00:00'),(106864,10,'A79.0 ','Trench fever','Y','0000-00-00 00:00:00'),(106863,10,'A78','Q fever','Y','0000-00-00 00:00:00'),(106862,10,'A77.9 ','Spotted fever, unspecified','Y','0000-00-00 00:00:00'),(106861,10,'A77.8 ','Other spotted fevers','Y','0000-00-00 00:00:00'),(106860,10,'A77.49 ','Other ehrlichiosis','Y','0000-00-00 00:00:00'),(106859,10,'A77.41 ','Ehrlichiosis chafeensis [E. chafeensis]','Y','0000-00-00 00:00:00'),(106858,10,'A77.40 ','Ehrlichiosis, unspecified','Y','0000-00-00 00:00:00'),(106857,10,'A77.3 ','Spotted fever due to Rickettsia australis','Y','0000-00-00 00:00:00'),(106856,10,'A77.2 ','Spotted fever due to Rickettsia siberica','Y','0000-00-00 00:00:00'),(106855,10,'A77.1 ','Spotted fever due to Rickettsia conorii','Y','0000-00-00 00:00:00'),(106854,10,'A77.0 ','Spotted fever due to Rickettsia rickettsii','Y','0000-00-00 00:00:00'),(106853,10,'A75.9 ','Typhus fever, unspecified','Y','0000-00-00 00:00:00'),(106852,10,'A75.3 ','Typhus fever due to Rickettsia tsutsugamushi','Y','0000-00-00 00:00:00'),(106851,10,'A75.2 ','Typhus fever due to Rickettsia typhi','Y','0000-00-00 00:00:00'),(106850,10,'A75.1 ','Recrudescent typhus [Brill\'s disease]','Y','0000-00-00 00:00:00'),(106849,10,'A75.0 ','Epidemic louse-borne typhus fever due to Rickettsia prowazekii','Y','0000-00-00 00:00:00'),(106848,10,'A74.9 ','Chlamydial infection, unspecified','Y','0000-00-00 00:00:00'),(106847,10,'A74.89 ','Other chlamydial diseases','Y','0000-00-00 00:00:00'),(106846,10,'A74.81 ','Chlamydial peritonitis','Y','0000-00-00 00:00:00'),(106845,10,'A74.0 ','Chlamydial conjunctivitis','Y','0000-00-00 00:00:00'),(106844,10,'A71.9 ','Trachoma, unspecified','Y','0000-00-00 00:00:00'),(106843,10,'A71.1 ','Active stage of trachoma','Y','0000-00-00 00:00:00'),(106842,10,'A71.0 ','Initial stage of trachoma','Y','0000-00-00 00:00:00'),(106841,10,'A70','Chlamydia psittaci infections','Y','0000-00-00 00:00:00'),(106840,10,'A69.9 ','Spirochetal infection, unspecified','Y','0000-00-00 00:00:00'),(106839,10,'A69.8 ','Other specified spirochetal infections','Y','0000-00-00 00:00:00'),(106838,10,'A69.29 ','Other conditions associated with Lyme disease','Y','0000-00-00 00:00:00'),(106837,10,'A69.23 ','Arthritis due to Lyme disease','Y','0000-00-00 00:00:00'),(106836,10,'A69.22 ','Other neurologic disorders in Lyme disease','Y','0000-00-00 00:00:00'),(106835,10,'A69.21 ','Meningitis due to Lyme disease','Y','0000-00-00 00:00:00'),(106834,10,'A69.20 ','Lyme disease, unspecified','Y','0000-00-00 00:00:00'),(106833,10,'A69.1 ','Other Vincent\'s infections','Y','0000-00-00 00:00:00'),(106832,10,'A69.0 ','Necrotizing ulcerative stomatitis','Y','0000-00-00 00:00:00'),(106831,10,'A68.9 ','Relapsing fever, unspecified','Y','0000-00-00 00:00:00'),(106829,10,'A68.0 ','Louse-borne relapsing fever','Y','0000-00-00 00:00:00'),(106830,10,'A68.1 ','Tick-borne relapsing fever','Y','0000-00-00 00:00:00'),(106828,10,'A67.9 ','Pinta, unspecified','Y','0000-00-00 00:00:00'),(106827,10,'A67.3 ','Mixed lesions of pinta','Y','0000-00-00 00:00:00'),(106826,10,'A67.2 ','Late lesions of pinta','Y','0000-00-00 00:00:00'),(106825,10,'A67.1 ','Intermediate lesions of pinta','Y','0000-00-00 00:00:00'),(106824,10,'A67.0 ','Primary lesions of pinta','Y','0000-00-00 00:00:00'),(106822,10,'A66.8 ','Latent yaws','Y','0000-00-00 00:00:00'),(106823,10,'A66.9 ','Yaws, unspecified','Y','0000-00-00 00:00:00'),(106821,10,'A66.7 ','Other manifestations of yaws','Y','0000-00-00 00:00:00'),(106820,10,'A66.6 ','Bone and joint lesions of yaws','Y','0000-00-00 00:00:00'),(106819,10,'A66.5 ','Gangosa','Y','0000-00-00 00:00:00'),(106818,10,'A66.4 ','Gummata and ulcers of yaws','Y','0000-00-00 00:00:00'),(106817,10,'A66.3 ','Hyperkeratosis of yaws','Y','0000-00-00 00:00:00'),(106816,10,'A66.2 ','Other early skin lesions of yaws','Y','0000-00-00 00:00:00'),(106815,10,'A66.1 ','Multiple papillomata and wet crab yaws','Y','0000-00-00 00:00:00'),(106814,10,'A66.0 ','Initial lesions of yaws','Y','0000-00-00 00:00:00'),(106813,10,'A65','Nonvenereal syphilis','Y','0000-00-00 00:00:00'),(106812,10,'A64','Unspecified sexually transmitted disease','Y','0000-00-00 00:00:00'),(106811,10,'A63.8 ','Other specified predominantly sexually transmitted diseases','Y','0000-00-00 00:00:00'),(106810,10,'A63.0 ','Anogenital (venereal) warts','Y','0000-00-00 00:00:00'),(106809,10,'A60.9 ','Anogenital herpesviral infection, unspecified','Y','0000-00-00 00:00:00'),(106808,10,'A60.1 ','Herpesviral infection of perianal skin and rectum','Y','0000-00-00 00:00:00'),(106807,10,'A60.09 ','Herpesviral infection of other urogenital tract','Y','0000-00-00 00:00:00'),(106806,10,'A60.04 ','Herpesviral vulvovaginitis','Y','0000-00-00 00:00:00'),(106805,10,'A60.03 ','Herpesviral cervicitis','Y','0000-00-00 00:00:00'),(106804,10,'A60.02 ','Herpesviral infection of other male genital organs','Y','0000-00-00 00:00:00'),(106803,10,'A60.01 ','Herpesviral infection of penis','Y','0000-00-00 00:00:00'),(106801,10,'A59.9 ','Trichomoniasis, unspecified','Y','0000-00-00 00:00:00'),(106802,10,'A60.00 ','Herpesviral infection of urogenital system, unspecified','Y','0000-00-00 00:00:00'),(106800,10,'A59.8 ','Trichomoniasis of other sites','Y','0000-00-00 00:00:00'),(106799,10,'A59.09 ','Other urogenital trichomoniasis','Y','0000-00-00 00:00:00'),(106798,10,'A59.03 ','Trichomonal cystitis and urethritis','Y','0000-00-00 00:00:00'),(106797,10,'A59.02 ','Trichomonal prostatitis','Y','0000-00-00 00:00:00'),(106796,10,'A59.01 ','Trichomonal vulvovaginitis','Y','0000-00-00 00:00:00'),(106795,10,'A59.00 ','Urogenital trichomoniasis, unspecified','Y','0000-00-00 00:00:00'),(106793,10,'A57','Chancroid','Y','0000-00-00 00:00:00'),(106794,10,'A58','Granuloma inguinale','Y','0000-00-00 00:00:00'),(106792,10,'A56.8 ','Sexually transmitted chlamydial infection of other sites','Y','0000-00-00 00:00:00'),(106791,10,'A56.4 ','Chlamydial infection of pharynx','Y','0000-00-00 00:00:00'),(106790,10,'A56.3 ','Chlamydial infection of anus and rectum','Y','0000-00-00 00:00:00'),(106789,10,'A56.2 ','Chlamydial infection of genitourinary tract, unspecified','Y','0000-00-00 00:00:00'),(106788,10,'A56.19 ','Other chlamydial genitourinary infection','Y','0000-00-00 00:00:00'),(106787,10,'A56.11 ','Chlamydial female pelvic inflammatory disease','Y','0000-00-00 00:00:00'),(106786,10,'A56.09 ','Other chlamydial infection of lower genitourinary tract','Y','0000-00-00 00:00:00'),(106785,10,'A56.02 ','Chlamydial vulvovaginitis','Y','0000-00-00 00:00:00'),(106784,10,'A56.01 ','Chlamydial cystitis and urethritis','Y','0000-00-00 00:00:00'),(106783,10,'A56.00 ','Chlamydial infection of lower genitourinary tract, unspecified','Y','0000-00-00 00:00:00'),(106782,10,'A55','Chlamydial lymphogranuloma (venereum)','Y','0000-00-00 00:00:00'),(106781,10,'A54.9 ','Gonococcal infection, unspecified','Y','0000-00-00 00:00:00'),(106779,10,'A54.86 ','Gonococcal sepsis','Y','0000-00-00 00:00:00'),(106780,10,'A54.89 ','Other gonococcal infections','Y','0000-00-00 00:00:00'),(106778,10,'A54.85 ','Gonococcal peritonitis','Y','0000-00-00 00:00:00'),(106777,10,'A54.84 ','Gonococcal pneumonia','Y','0000-00-00 00:00:00'),(106776,10,'A54.83 ','Gonococcal heart infection','Y','0000-00-00 00:00:00'),(106775,10,'A54.82 ','Gonococcal brain abscess','Y','0000-00-00 00:00:00'),(106774,10,'A54.81 ','Gonococcal meningitis','Y','0000-00-00 00:00:00'),(106773,10,'A54.6 ','Gonococcal infection of anus and rectum','Y','0000-00-00 00:00:00'),(106772,10,'A54.5 ','Gonococcal pharyngitis','Y','0000-00-00 00:00:00'),(106771,10,'A54.49 ','Gonococcal infection of other musculoskeletal tissue','Y','0000-00-00 00:00:00'),(106770,10,'A54.43 ','Gonococcal osteomyelitis','Y','0000-00-00 00:00:00'),(106768,10,'A54.41 ','Gonococcal spondylopathy','Y','0000-00-00 00:00:00'),(106769,10,'A54.42 ','Gonococcal arthritis','Y','0000-00-00 00:00:00'),(106767,10,'A54.40 ','Gonococcal infection of musculoskeletal system, unspecified','Y','0000-00-00 00:00:00'),(106766,10,'A54.39 ','Other gonococcal eye infection','Y','0000-00-00 00:00:00'),(106765,10,'A54.33 ','Gonococcal keratitis','Y','0000-00-00 00:00:00'),(106764,10,'A54.32 ','Gonococcal iridocyclitis','Y','0000-00-00 00:00:00'),(106763,10,'A54.31 ','Gonococcal conjunctivitis','Y','0000-00-00 00:00:00'),(106762,10,'A54.30 ','Gonococcal infection of eye, unspecified','Y','0000-00-00 00:00:00'),(106761,10,'A54.29 ','Other gonococcal genitourinary infections','Y','0000-00-00 00:00:00'),(106760,10,'A54.24 ','Gonococcal female pelvic inflammatory disease','Y','0000-00-00 00:00:00'),(106759,10,'A54.23 ','Gonococcal infection of other male genital organs','Y','0000-00-00 00:00:00'),(106758,10,'A54.22 ','Gonococcal prostatitis','Y','0000-00-00 00:00:00'),(106757,10,'A54.21 ','Gonococcal infection of kidney and ureter','Y','0000-00-00 00:00:00'),(106756,10,'A54.1 ','Gonococcal infection of lower genitourinary tract with periurethral and accessory gland abscess','Y','0000-00-00 00:00:00'),(106755,10,'A54.09 ','Other gonococcal infection of lower genitourinary tract','Y','0000-00-00 00:00:00'),(106754,10,'A54.03 ','Gonococcal cervicitis, unspecified','Y','0000-00-00 00:00:00'),(106753,10,'A54.02 ','Gonococcal vulvovaginitis, unspecified','Y','0000-00-00 00:00:00'),(106752,10,'A54.01 ','Gonococcal cystitis and urethritis, unspecified','Y','0000-00-00 00:00:00'),(106751,10,'A54.00 ','Gonococcal infection of lower genitourinary tract, unspecified','Y','0000-00-00 00:00:00'),(106749,10,'A53.0 ','Latent syphilis, unspecified as early or late','Y','0000-00-00 00:00:00'),(106750,10,'A53.9 ','Syphilis, unspecified','Y','0000-00-00 00:00:00'),(106748,10,'A52.9 ','Late syphilis, unspecified','Y','0000-00-00 00:00:00'),(106747,10,'A52.8 ','Late syphilis, latent','Y','0000-00-00 00:00:00'),(106745,10,'A52.78 ','Syphilis of other musculoskeletal tissue','Y','0000-00-00 00:00:00'),(106746,10,'A52.79 ','Other symptomatic late syphilis','Y','0000-00-00 00:00:00'),(106744,10,'A52.77 ','Syphilis of bone and joint','Y','0000-00-00 00:00:00'),(106743,10,'A52.76 ','Other genitourinary symptomatic late syphilis','Y','0000-00-00 00:00:00'),(106742,10,'A52.75 ','Syphilis of kidney and ureter','Y','0000-00-00 00:00:00'),(106741,10,'A52.74 ','Syphilis of liver and other viscera','Y','0000-00-00 00:00:00'),(106740,10,'A52.73 ','Symptomatic late syphilis of other respiratory organs','Y','0000-00-00 00:00:00'),(106739,10,'A52.72 ','Syphilis of lung and bronchus','Y','0000-00-00 00:00:00'),(106738,10,'A52.71 ','Late syphilitic oculopathy','Y','0000-00-00 00:00:00'),(106737,10,'A52.3 ','Neurosyphilis, unspecified','Y','0000-00-00 00:00:00'),(106736,10,'A52.2 ','Asymptomatic neurosyphilis','Y','0000-00-00 00:00:00'),(106735,10,'A52.19 ','Other symptomatic neurosyphilis','Y','0000-00-00 00:00:00'),(106734,10,'A52.17 ','General paresis','Y','0000-00-00 00:00:00'),(106733,10,'A52.16 ','Charcot\'s arthropathy (tabetic)','Y','0000-00-00 00:00:00'),(106732,10,'A52.15 ','Late syphilitic neuropathy','Y','0000-00-00 00:00:00'),(106731,10,'A52.14 ','Late syphilitic encephalitis','Y','0000-00-00 00:00:00'),(106730,10,'A52.13 ','Late syphilitic meningitis','Y','0000-00-00 00:00:00'),(106729,10,'A52.12 ','Other cerebrospinal syphilis','Y','0000-00-00 00:00:00'),(106728,10,'A52.11 ','Tabes dorsalis','Y','0000-00-00 00:00:00'),(106727,10,'A52.10 ','Symptomatic neurosyphilis, unspecified','Y','0000-00-00 00:00:00'),(106726,10,'A52.09 ','Other cardiovascular syphilis','Y','0000-00-00 00:00:00'),(106725,10,'A52.06 ','Other syphilitic heart involvement','Y','0000-00-00 00:00:00'),(106724,10,'A52.05 ','Other cerebrovascular syphilis','Y','0000-00-00 00:00:00'),(106723,10,'A52.04 ','Syphilitic cerebral arteritis','Y','0000-00-00 00:00:00'),(106722,10,'A52.03 ','Syphilitic endocarditis','Y','0000-00-00 00:00:00'),(106721,10,'A52.02 ','Syphilitic aortitis','Y','0000-00-00 00:00:00'),(106720,10,'A52.01 ','Syphilitic aneurysm of aorta','Y','0000-00-00 00:00:00'),(106718,10,'A51.9 ','Early syphilis, unspecified','Y','0000-00-00 00:00:00'),(106719,10,'A52.00 ','Cardiovascular syphilis, unspecified','Y','0000-00-00 00:00:00'),(106717,10,'A51.5 ','Early syphilis, latent','Y','0000-00-00 00:00:00'),(106716,10,'A51.49 ','Other secondary syphilitic conditions','Y','0000-00-00 00:00:00'),(106715,10,'A51.46 ','Secondary syphilitic osteopathy','Y','0000-00-00 00:00:00'),(106714,10,'A51.45 ','Secondary syphilitic hepatitis','Y','0000-00-00 00:00:00'),(106713,10,'A51.44 ','Secondary syphilitic nephritis','Y','0000-00-00 00:00:00'),(106712,10,'A51.43 ','Secondary syphilitic oculopathy','Y','0000-00-00 00:00:00'),(106711,10,'A51.42 ','Secondary syphilitic female pelvic disease','Y','0000-00-00 00:00:00'),(106710,10,'A51.41 ','Secondary syphilitic meningitis','Y','0000-00-00 00:00:00'),(106709,10,'A51.39 ','Other secondary syphilis of skin','Y','0000-00-00 00:00:00'),(106708,10,'A51.32 ','Syphilitic alopecia','Y','0000-00-00 00:00:00'),(106707,10,'A51.31 ','Condyloma latum','Y','0000-00-00 00:00:00'),(106706,10,'A51.2 ','Primary syphilis of other sites','Y','0000-00-00 00:00:00'),(106705,10,'A51.1 ','Primary anal syphilis','Y','0000-00-00 00:00:00'),(106703,10,'A50.9 ','Congenital syphilis, unspecified','Y','0000-00-00 00:00:00'),(106704,10,'A51.0 ','Primary genital syphilis','Y','0000-00-00 00:00:00'),(106702,10,'A50.7 ','Late congenital syphilis, unspecified','Y','0000-00-00 00:00:00'),(106701,10,'A50.6 ','Late congenital syphilis, latent','Y','0000-00-00 00:00:00'),(106700,10,'A50.59 ','Other late congenital syphilis, symptomatic','Y','0000-00-00 00:00:00'),(106699,10,'A50.57 ','Syphilitic saddle nose','Y','0000-00-00 00:00:00'),(106698,10,'A50.56 ','Late congenital syphilitic osteochondropathy','Y','0000-00-00 00:00:00'),(106697,10,'A50.55 ','Late congenital syphilitic arthropathy','Y','0000-00-00 00:00:00'),(106696,10,'A50.54 ','Late congenital cardiovascular syphilis','Y','0000-00-00 00:00:00'),(106695,10,'A50.53 ','Hutchinson\'s triad','Y','0000-00-00 00:00:00'),(106694,10,'A50.52 ','Hutchinson\'s teeth','Y','0000-00-00 00:00:00'),(106693,10,'A50.51 ','Clutton\'s joints','Y','0000-00-00 00:00:00'),(106691,10,'A50.45 ','Juvenile general paresis','Y','0000-00-00 00:00:00'),(106692,10,'A50.49 ','Other late congenital neurosyphilis','Y','0000-00-00 00:00:00'),(106690,10,'A50.44 ','Late congenital syphilitic optic nerve atrophy','Y','0000-00-00 00:00:00'),(106689,10,'A50.43 ','Late congenital syphilitic polyneuropathy','Y','0000-00-00 00:00:00'),(106688,10,'A50.42 ','Late congenital syphilitic encephalitis','Y','0000-00-00 00:00:00'),(106687,10,'A50.41 ','Late congenital syphilitic meningitis','Y','0000-00-00 00:00:00'),(106686,10,'A50.40 ','Late congenital neurosyphilis, unspecified','Y','0000-00-00 00:00:00'),(106685,10,'A50.39 ','Other late congenital syphilitic oculopathy','Y','0000-00-00 00:00:00'),(106684,10,'A50.32 ','Late congenital syphilitic chorioretinitis','Y','0000-00-00 00:00:00'),(106683,10,'A50.31 ','Late congenital syphilitic interstitial keratitis','Y','0000-00-00 00:00:00'),(106682,10,'A50.30 ','Late congenital syphilitic oculopathy, unspecified','Y','0000-00-00 00:00:00'),(106681,10,'A50.2 ','Early congenital syphilis, unspecified','Y','0000-00-00 00:00:00'),(106679,10,'A50.09 ','Other early congenital syphilis, symptomatic','Y','0000-00-00 00:00:00'),(106680,10,'A50.1 ','Early congenital syphilis, latent','Y','0000-00-00 00:00:00'),(106678,10,'A50.08 ','Early visceral congenital syphilis','Y','0000-00-00 00:00:00'),(106677,10,'A50.07 ','Early mucocutaneous congenital syphilis','Y','0000-00-00 00:00:00'),(106676,10,'A50.06 ','Early cutaneous congenital syphilis','Y','0000-00-00 00:00:00'),(106675,10,'A50.05 ','Early congenital syphilitic rhinitis','Y','0000-00-00 00:00:00'),(106674,10,'A50.04 ','Early congenital syphilitic pneumonia','Y','0000-00-00 00:00:00'),(106673,10,'A50.03 ','Early congenital syphilitic pharyngitis','Y','0000-00-00 00:00:00'),(106672,10,'A50.02 ','Early congenital syphilitic osteochondropathy','Y','0000-00-00 00:00:00'),(106671,10,'A50.01 ','Early congenital syphilitic oculopathy','Y','0000-00-00 00:00:00'),(106670,10,'A49.9 ','Bacterial infection, unspecified','Y','0000-00-00 00:00:00'),(106669,10,'A49.8 ','Other bacterial infections of unspecified site','Y','0000-00-00 00:00:00'),(106668,10,'A49.3 ','Mycoplasma infection, unspecified site','Y','0000-00-00 00:00:00'),(106667,10,'A49.2 ','Hemophilus influenzae infection, unspecified site','Y','0000-00-00 00:00:00'),(106666,10,'A49.1 ','Streptococcal infection, unspecified site','Y','0000-00-00 00:00:00'),(106665,10,'A49.02 ','Methicillin resistant Staphylococcus aureus infection, unspecified site','Y','0000-00-00 00:00:00'),(106664,10,'A49.01 ','Methicillin susceptible Staphylococcus aureus infection, unspecified site','Y','0000-00-00 00:00:00'),(106663,10,'A48.8 ','Other specified bacterial diseases','Y','0000-00-00 00:00:00'),(106661,10,'A48.51 ','Infant botulism','Y','0000-00-00 00:00:00'),(106662,10,'A48.52 ','Wound botulism','Y','0000-00-00 00:00:00'),(106660,10,'A48.4 ','Brazilian purpuric fever','Y','0000-00-00 00:00:00'),(106659,10,'A48.3 ','Toxic shock syndrome','Y','0000-00-00 00:00:00'),(106658,10,'A48.2 ','Nonpneumonic Legionnaires\' disease [Pontiac fever]','Y','0000-00-00 00:00:00'),(106657,10,'A48.1 ','Legionnaires\' disease','Y','0000-00-00 00:00:00'),(106656,10,'A48.0 ','Gas gangrene','Y','0000-00-00 00:00:00'),(106655,10,'A46','Erysipelas','Y','0000-00-00 00:00:00'),(106654,10,'A44.9 ','Bartonellosis, unspecified','Y','0000-00-00 00:00:00'),(106653,10,'A44.8 ','Other forms of bartonellosis','Y','0000-00-00 00:00:00'),(106652,10,'A44.1 ','Cutaneous and mucocutaneous bartonellosis','Y','0000-00-00 00:00:00'),(106650,10,'A43.9 ','Nocardiosis, unspecified','Y','0000-00-00 00:00:00'),(106651,10,'A44.0 ','Systemic bartonellosis','Y','0000-00-00 00:00:00'),(106649,10,'A43.8 ','Other forms of nocardiosis','Y','0000-00-00 00:00:00'),(106648,10,'A43.1 ','Cutaneous nocardiosis','Y','0000-00-00 00:00:00'),(106646,10,'A42.9 ','Actinomycosis, unspecified','Y','0000-00-00 00:00:00'),(106647,10,'A43.0 ','Pulmonary nocardiosis','Y','0000-00-00 00:00:00'),(106645,10,'A42.89 ','Other forms of actinomycosis','Y','0000-00-00 00:00:00'),(106644,10,'A42.82 ','Actinomycotic encephalitis','Y','0000-00-00 00:00:00'),(106643,10,'A42.81 ','Actinomycotic meningitis','Y','0000-00-00 00:00:00'),(106642,10,'A42.7 ','Actinomycotic sepsis','Y','0000-00-00 00:00:00'),(106641,10,'A42.2 ','Cervicofacial actinomycosis','Y','0000-00-00 00:00:00'),(106640,10,'A42.1 ','Abdominal actinomycosis','Y','0000-00-00 00:00:00'),(106638,10,'A41.9 ','Sepsis, unspecified organism','Y','0000-00-00 00:00:00'),(106639,10,'A42.0 ','Pulmonary actinomycosis','Y','0000-00-00 00:00:00'),(106637,10,'A41.89 ','Other specified sepsis','Y','0000-00-00 00:00:00'),(106636,10,'A41.81 ','Sepsis due to Enterococcus','Y','0000-00-00 00:00:00'),(106634,10,'A41.54 ','Sepsis due to Acinetobacter baumannii','Y','0000-00-00 00:00:00'),(106635,10,'A41.59 ','Other Gram-negative sepsis','Y','0000-00-00 00:00:00'),(106633,10,'A41.53 ','Sepsis due to Serratia','Y','0000-00-00 00:00:00'),(106632,10,'A41.52 ','Sepsis due to Pseudomonas','Y','0000-00-00 00:00:00'),(106631,10,'A41.51 ','Sepsis due to Escherichia coli [E. coli]','Y','0000-00-00 00:00:00'),(106630,10,'A41.50 ','Gram-negative sepsis, unspecified','Y','0000-00-00 00:00:00'),(106629,10,'A41.4 ','Sepsis due to anaerobes','Y','0000-00-00 00:00:00'),(106628,10,'A41.3 ','Sepsis due to Hemophilus influenzae','Y','0000-00-00 00:00:00'),(106627,10,'A41.2 ','Sepsis due to unspecified staphylococcus','Y','0000-00-00 00:00:00'),(106626,10,'A41.1 ','Sepsis due to other specified staphylococcus','Y','0000-00-00 00:00:00'),(106625,10,'A41.02 ','Sepsis due to Methicillin resistant Staphylococcus aureus','Y','0000-00-00 00:00:00'),(106623,10,'A40.9 ','Streptococcal sepsis, unspecified','Y','0000-00-00 00:00:00'),(106624,10,'A41.01 ','Sepsis due to Methicillin susceptible Staphylococcus aureus','Y','0000-00-00 00:00:00'),(106622,10,'A40.8 ','Other streptococcal sepsis','Y','0000-00-00 00:00:00'),(106621,10,'A40.3 ','Sepsis due to Streptococcus pneumoniae','Y','0000-00-00 00:00:00'),(106620,10,'A40.1 ','Sepsis due to streptococcus, group B','Y','0000-00-00 00:00:00'),(106619,10,'A40.0 ','Sepsis due to streptococcus, group A','Y','0000-00-00 00:00:00'),(106618,10,'A39.9 ','Meningococcal infection, unspecified','Y','0000-00-00 00:00:00'),(106617,10,'A39.89 ','Other meningococcal infections','Y','0000-00-00 00:00:00'),(106616,10,'A39.84 ','Postmeningococcal arthritis','Y','0000-00-00 00:00:00'),(106615,10,'A39.83 ','Meningococcal arthritis','Y','0000-00-00 00:00:00'),(106614,10,'A39.82 ','Meningococcal retrobulbar neuritis','Y','0000-00-00 00:00:00'),(106613,10,'A39.81 ','Meningococcal encephalitis','Y','0000-00-00 00:00:00'),(106612,10,'A39.53 ','Meningococcal pericarditis','Y','0000-00-00 00:00:00'),(106611,10,'A39.52 ','Meningococcal myocarditis','Y','0000-00-00 00:00:00'),(106610,10,'A39.51 ','Meningococcal endocarditis','Y','0000-00-00 00:00:00'),(106608,10,'A39.4 ','Meningococcemia, unspecified','Y','0000-00-00 00:00:00'),(106609,10,'A39.50 ','Meningococcal carditis, unspecified','Y','0000-00-00 00:00:00'),(106607,10,'A39.3 ','Chronic meningococcemia','Y','0000-00-00 00:00:00'),(106606,10,'A39.2 ','Acute meningococcemia','Y','0000-00-00 00:00:00'),(106605,10,'A39.1 ','Waterhouse-Friderichsen syndrome','Y','0000-00-00 00:00:00'),(106604,10,'A39.0 ','Meningococcal meningitis','Y','0000-00-00 00:00:00'),(106602,10,'A38.8 ','Scarlet fever with other complications','Y','0000-00-00 00:00:00'),(106603,10,'A38.9 ','Scarlet fever, uncomplicated','Y','0000-00-00 00:00:00'),(106601,10,'A38.1 ','Scarlet fever with myocarditis','Y','0000-00-00 00:00:00'),(106600,10,'A38.0 ','Scarlet fever with otitis media','Y','0000-00-00 00:00:00'),(106598,10,'A37.90 ','Whooping cough, unspecified species without pneumonia','Y','0000-00-00 00:00:00'),(106599,10,'A37.91 ','Whooping cough, unspecified species with pneumonia','Y','0000-00-00 00:00:00'),(106597,10,'A37.81 ','Whooping cough due to other Bordetella species with pneumonia','Y','0000-00-00 00:00:00'),(106596,10,'A37.80 ','Whooping cough due to other Bordetella species without pneumonia','Y','0000-00-00 00:00:00'),(106595,10,'A37.11 ','Whooping cough due to Bordetella parapertussis with pneumonia','Y','0000-00-00 00:00:00'),(106594,10,'A37.10 ','Whooping cough due to Bordetella parapertussis without pneumonia','Y','0000-00-00 00:00:00'),(106593,10,'A37.01 ','Whooping cough due to Bordetella pertussis with pneumonia','Y','0000-00-00 00:00:00'),(106592,10,'A37.00 ','Whooping cough due to Bordetella pertussis without pneumonia','Y','0000-00-00 00:00:00'),(106591,10,'A36.9 ','Diphtheria, unspecified','Y','0000-00-00 00:00:00'),(106590,10,'A36.89 ','Other diphtheritic complications','Y','0000-00-00 00:00:00'),(106589,10,'A36.86 ','Diphtheritic conjunctivitis','Y','0000-00-00 00:00:00'),(106588,10,'A36.85 ','Diphtheritic cystitis','Y','0000-00-00 00:00:00'),(106587,10,'A36.84 ','Diphtheritic tubulo-interstitial nephropathy','Y','0000-00-00 00:00:00'),(106586,10,'A36.83 ','Diphtheritic polyneuritis','Y','0000-00-00 00:00:00'),(106584,10,'A36.81 ','Diphtheritic cardiomyopathy','Y','0000-00-00 00:00:00'),(106585,10,'A36.82 ','Diphtheritic radiculomyelitis','Y','0000-00-00 00:00:00'),(106582,10,'A36.2 ','Laryngeal diphtheria','Y','0000-00-00 00:00:00'),(106583,10,'A36.3 ','Cutaneous diphtheria','Y','0000-00-00 00:00:00'),(106581,10,'A36.1 ','Nasopharyngeal diphtheria','Y','0000-00-00 00:00:00'),(106580,10,'A36.0 ','Pharyngeal diphtheria','Y','0000-00-00 00:00:00'),(106579,10,'A35','Other tetanus','Y','0000-00-00 00:00:00'),(106578,10,'A34','Obstetrical tetanus','Y','0000-00-00 00:00:00'),(106577,10,'A33','Tetanus neonatorum','Y','0000-00-00 00:00:00'),(106576,10,'A32.9 ','Listeriosis, unspecified','Y','0000-00-00 00:00:00'),(106575,10,'A32.89 ','Other forms of listeriosis','Y','0000-00-00 00:00:00'),(106574,10,'A32.82 ','Listerial endocarditis','Y','0000-00-00 00:00:00'),(106573,10,'A32.81 ','Oculoglandular listeriosis','Y','0000-00-00 00:00:00'),(106572,10,'A32.7 ','Listerial sepsis','Y','0000-00-00 00:00:00'),(106571,10,'A32.12 ','Listerial meningoencephalitis','Y','0000-00-00 00:00:00'),(106570,10,'A32.11 ','Listerial meningitis','Y','0000-00-00 00:00:00'),(106569,10,'A32.0 ','Cutaneous listeriosis','Y','0000-00-00 00:00:00'),(106568,10,'A31.9 ','Mycobacterial infection, unspecified','Y','0000-00-00 00:00:00'),(106567,10,'A31.8 ','Other mycobacterial infections','Y','0000-00-00 00:00:00'),(106566,10,'A31.2 ','Disseminated mycobacterium avium-intracellulare complex (DMAC)','Y','0000-00-00 00:00:00'),(106565,10,'A31.1 ','Cutaneous mycobacterial infection','Y','0000-00-00 00:00:00'),(106564,10,'A31.0 ','Pulmonary mycobacterial infection','Y','0000-00-00 00:00:00'),(106563,10,'A30.9 ','Leprosy, unspecified','Y','0000-00-00 00:00:00'),(106562,10,'A30.8 ','Other forms of leprosy','Y','0000-00-00 00:00:00'),(106561,10,'A30.5 ','Lepromatous leprosy','Y','0000-00-00 00:00:00'),(106560,10,'A30.4 ','Borderline lepromatous leprosy','Y','0000-00-00 00:00:00'),(106559,10,'A30.3 ','Borderline leprosy','Y','0000-00-00 00:00:00'),(106558,10,'A30.2 ','Borderline tuberculoid leprosy','Y','0000-00-00 00:00:00'),(106557,10,'A30.1 ','Tuberculoid leprosy','Y','0000-00-00 00:00:00'),(106556,10,'A30.0 ','Indeterminate leprosy','Y','0000-00-00 00:00:00'),(106555,10,'A28.9 ','Zoonotic bacterial disease, unspecified','Y','0000-00-00 00:00:00'),(106554,10,'A28.8 ','Other specified zoonotic bacterial diseases, not elsewhere classified','Y','0000-00-00 00:00:00'),(106553,10,'A28.2 ','Extraintestinal yersiniosis','Y','0000-00-00 00:00:00'),(106552,10,'A28.1 ','Cat-scratch disease','Y','0000-00-00 00:00:00'),(106551,10,'A28.0 ','Pasteurellosis','Y','0000-00-00 00:00:00'),(106550,10,'A27.9 ','Leptospirosis, unspecified','Y','0000-00-00 00:00:00'),(106549,10,'A27.89 ','Other forms of leptospirosis','Y','0000-00-00 00:00:00'),(106548,10,'A27.81 ','Aseptic meningitis in leptospirosis','Y','0000-00-00 00:00:00'),(106547,10,'A27.0 ','Leptospirosis icterohemorrhagica','Y','0000-00-00 00:00:00'),(106546,10,'A26.9 ','Erysipeloid, unspecified','Y','0000-00-00 00:00:00'),(106545,10,'A26.8 ','Other forms of erysipeloid','Y','0000-00-00 00:00:00'),(106544,10,'A26.7 ','Erysipelothrix sepsis','Y','0000-00-00 00:00:00'),(106543,10,'A26.0 ','Cutaneous erysipeloid','Y','0000-00-00 00:00:00'),(106542,10,'A25.9 ','Rat-bite fever, unspecified','Y','0000-00-00 00:00:00'),(106541,10,'A25.1 ','Streptobacillosis','Y','0000-00-00 00:00:00'),(106540,10,'A25.0 ','Spirillosis','Y','0000-00-00 00:00:00'),(106539,10,'A24.9 ','Melioidosis, unspecified','Y','0000-00-00 00:00:00'),(106538,10,'A24.3 ','Other melioidosis','Y','0000-00-00 00:00:00'),(106537,10,'A24.2 ','Subacute and chronic melioidosis','Y','0000-00-00 00:00:00'),(106536,10,'A24.1 ','Acute and fulminating melioidosis','Y','0000-00-00 00:00:00'),(106535,10,'A24.0 ','Glanders','Y','0000-00-00 00:00:00'),(106534,10,'A23.9 ','Brucellosis, unspecified','Y','0000-00-00 00:00:00'),(106533,10,'A23.8 ','Other brucellosis','Y','0000-00-00 00:00:00'),(106532,10,'A23.3 ','Brucellosis due to Brucella canis','Y','0000-00-00 00:00:00'),(106531,10,'A23.2 ','Brucellosis due to Brucella suis','Y','0000-00-00 00:00:00'),(106530,10,'A23.1 ','Brucellosis due to Brucella abortus','Y','0000-00-00 00:00:00'),(106529,10,'A23.0 ','Brucellosis due to Brucella melitensis','Y','0000-00-00 00:00:00'),(106528,10,'A22.9 ','Anthrax, unspecified','Y','0000-00-00 00:00:00'),(106526,10,'A22.7 ','Anthrax sepsis','Y','0000-00-00 00:00:00'),(106527,10,'A22.8 ','Other forms of anthrax','Y','0000-00-00 00:00:00'),(106525,10,'A22.2 ','Gastrointestinal anthrax','Y','0000-00-00 00:00:00'),(106524,10,'A22.1 ','Pulmonary anthrax','Y','0000-00-00 00:00:00'),(106523,10,'A22.0 ','Cutaneous anthrax','Y','0000-00-00 00:00:00'),(106522,10,'A21.9 ','Tularemia, unspecified','Y','0000-00-00 00:00:00'),(106521,10,'A21.8 ','Other forms of tularemia','Y','0000-00-00 00:00:00'),(106520,10,'A21.7 ','Generalized tularemia','Y','0000-00-00 00:00:00'),(106519,10,'A21.3 ','Gastrointestinal tularemia','Y','0000-00-00 00:00:00'),(106518,10,'A21.2 ','Pulmonary tularemia','Y','0000-00-00 00:00:00'),(106517,10,'A21.1 ','Oculoglandular tularemia','Y','0000-00-00 00:00:00'),(106516,10,'A21.0 ','Ulceroglandular tularemia','Y','0000-00-00 00:00:00'),(106515,10,'A20.9 ','Plague, unspecified','Y','0000-00-00 00:00:00'),(106514,10,'A20.8 ','Other forms of plague','Y','0000-00-00 00:00:00'),(106513,10,'A20.7 ','Septicemic plague','Y','0000-00-00 00:00:00'),(106512,10,'A20.3 ','Plague meningitis','Y','0000-00-00 00:00:00'),(106511,10,'A20.2 ','Pneumonic plague','Y','0000-00-00 00:00:00'),(106510,10,'A20.1 ','Cellulocutaneous plague','Y','0000-00-00 00:00:00'),(106509,10,'A20.0 ','Bubonic plague','Y','0000-00-00 00:00:00'),(106508,10,'A19.9 ','Miliary tuberculosis, unspecified','Y','0000-00-00 00:00:00'),(106507,10,'A19.8 ','Other miliary tuberculosis','Y','0000-00-00 00:00:00'),(106506,10,'A19.2 ','Acute miliary tuberculosis, unspecified','Y','0000-00-00 00:00:00'),(106505,10,'A19.1 ','Acute miliary tuberculosis of multiple sites','Y','0000-00-00 00:00:00'),(106504,10,'A19.0 ','Acute miliary tuberculosis of a single specified site','Y','0000-00-00 00:00:00'),(106502,10,'A18.85 ','Tuberculosis of spleen','Y','0000-00-00 00:00:00'),(106503,10,'A18.89 ','Tuberculosis of other sites','Y','0000-00-00 00:00:00'),(106501,10,'A18.84 ','Tuberculosis of heart','Y','0000-00-00 00:00:00'),(106500,10,'A18.83 ','Tuberculosis of digestive tract organs, not elsewhere classified','Y','0000-00-00 00:00:00'),(106499,10,'A18.82 ','Tuberculosis of other endocrine glands','Y','0000-00-00 00:00:00'),(106498,10,'A18.81 ','Tuberculosis of thyroid gland','Y','0000-00-00 00:00:00'),(106497,10,'A18.7 ','Tuberculosis of adrenal glands','Y','0000-00-00 00:00:00'),(106496,10,'A18.6 ','Tuberculosis of (inner) (middle) ear','Y','0000-00-00 00:00:00'),(106495,10,'A18.59 ','Other tuberculosis of eye','Y','0000-00-00 00:00:00'),(106493,10,'A18.53 ','Tuberculous chorioretinitis','Y','0000-00-00 00:00:00'),(106494,10,'A18.54 ','Tuberculous iridocyclitis','Y','0000-00-00 00:00:00'),(106492,10,'A18.52 ','Tuberculous keratitis','Y','0000-00-00 00:00:00'),(106491,10,'A18.51 ','Tuberculous episcleritis','Y','0000-00-00 00:00:00'),(106490,10,'A18.50 ','Tuberculosis of eye, unspecified','Y','0000-00-00 00:00:00'),(106489,10,'A18.4 ','Tuberculosis of skin and subcutaneous tissue','Y','0000-00-00 00:00:00'),(106488,10,'A18.39 ','Retroperitoneal tuberculosis','Y','0000-00-00 00:00:00'),(106487,10,'A18.32 ','Tuberculous enteritis','Y','0000-00-00 00:00:00'),(106486,10,'A18.31 ','Tuberculous peritonitis','Y','0000-00-00 00:00:00'),(106485,10,'A18.2 ','Tuberculous peripheral lymphadenopathy','Y','0000-00-00 00:00:00'),(106484,10,'A18.18 ','Tuberculosis of other female genital organs','Y','0000-00-00 00:00:00'),(106483,10,'A18.17 ','Tuberculous female pelvic inflammatory disease','Y','0000-00-00 00:00:00'),(106482,10,'A18.16 ','Tuberculosis of cervix','Y','0000-00-00 00:00:00'),(106481,10,'A18.15 ','Tuberculosis of other male genital organs','Y','0000-00-00 00:00:00'),(106480,10,'A18.14 ','Tuberculosis of prostate','Y','0000-00-00 00:00:00'),(106479,10,'A18.13 ','Tuberculosis of other urinary organs','Y','0000-00-00 00:00:00'),(106477,10,'A18.11 ','Tuberculosis of kidney and ureter','Y','0000-00-00 00:00:00'),(106478,10,'A18.12 ','Tuberculosis of bladder','Y','0000-00-00 00:00:00'),(106476,10,'A18.10 ','Tuberculosis of genitourinary system, unspecified','Y','0000-00-00 00:00:00'),(106475,10,'A18.09 ','Other musculoskeletal tuberculosis','Y','0000-00-00 00:00:00'),(106474,10,'A18.03 ','Tuberculosis of other bones','Y','0000-00-00 00:00:00'),(106473,10,'A18.02 ','Tuberculous arthritis of other joints','Y','0000-00-00 00:00:00'),(106472,10,'A18.01 ','Tuberculosis of spine','Y','0000-00-00 00:00:00'),(106471,10,'A17.9 ','Tuberculosis of nervous system, unspecified','Y','0000-00-00 00:00:00'),(106470,10,'A17.89 ','Other tuberculosis of nervous system','Y','0000-00-00 00:00:00'),(106469,10,'A17.83 ','Tuberculous neuritis','Y','0000-00-00 00:00:00'),(106468,10,'A17.82 ','Tuberculous meningoencephalitis','Y','0000-00-00 00:00:00'),(106467,10,'A17.81 ','Tuberculoma of brain and spinal cord','Y','0000-00-00 00:00:00'),(106466,10,'A17.1 ','Meningeal tuberculoma','Y','0000-00-00 00:00:00'),(106465,10,'A17.0 ','Tuberculous meningitis','Y','0000-00-00 00:00:00'),(106464,10,'A15.9 ','Respiratory tuberculosis unspecified','Y','0000-00-00 00:00:00'),(106463,10,'A15.8 ','Other respiratory tuberculosis','Y','0000-00-00 00:00:00'),(106462,10,'A15.7 ','Primary respiratory tuberculosis','Y','0000-00-00 00:00:00'),(106461,10,'A15.6 ','Tuberculous pleurisy','Y','0000-00-00 00:00:00'),(106460,10,'A15.5 ','Tuberculosis of larynx, trachea and bronchus','Y','0000-00-00 00:00:00'),(106459,10,'A15.4 ','Tuberculosis of intrathoracic lymph nodes','Y','0000-00-00 00:00:00'),(106458,10,'A15.0 ','Tuberculosis of lung','Y','0000-00-00 00:00:00'),(106457,10,'A09','Infectious gastroenteritis and colitis, unspecified','Y','0000-00-00 00:00:00'),(106456,10,'A08.8 ','Other specified intestinal infections','Y','0000-00-00 00:00:00'),(106455,10,'A08.4 ','Viral intestinal infection, unspecified','Y','0000-00-00 00:00:00'),(106454,10,'A08.39 ','Other viral enteritis','Y','0000-00-00 00:00:00'),(106453,10,'A08.32 ','Astrovirus enteritis','Y','0000-00-00 00:00:00'),(106452,10,'A08.31 ','Calicivirus enteritis','Y','0000-00-00 00:00:00'),(106451,10,'A08.2 ','Adenoviral enteritis','Y','0000-00-00 00:00:00'),(106450,10,'A08.19 ','Acute gastroenteropathy due to other small round viruses','Y','0000-00-00 00:00:00'),(106448,10,'A08.0 ','Rotaviral enteritis','Y','0000-00-00 00:00:00'),(106449,10,'A08.11 ','Acute gastroenteropathy due to Norwalk agent','Y','0000-00-00 00:00:00'),(106447,10,'A07.9 ','Protozoal intestinal disease, unspecified','Y','0000-00-00 00:00:00'),(106446,10,'A07.8 ','Other specified protozoal intestinal diseases','Y','0000-00-00 00:00:00'),(106445,10,'A07.4 ','Cyclosporiasis','Y','0000-00-00 00:00:00'),(106444,10,'A07.3 ','Isosporiasis','Y','0000-00-00 00:00:00'),(106443,10,'A07.2 ','Cryptosporidiosis','Y','0000-00-00 00:00:00'),(106442,10,'A07.1 ','Giardiasis [lambliasis]','Y','0000-00-00 00:00:00'),(106441,10,'A07.0 ','Balantidiasis','Y','0000-00-00 00:00:00'),(106440,10,'A06.9 ','Amebiasis, unspecified','Y','0000-00-00 00:00:00'),(106439,10,'A06.89 ','Other amebic infections','Y','0000-00-00 00:00:00'),(106438,10,'A06.82 ','Other amebic genitourinary infections','Y','0000-00-00 00:00:00'),(106437,10,'A06.81 ','Amebic cystitis','Y','0000-00-00 00:00:00'),(106436,10,'A06.7 ','Cutaneous amebiasis','Y','0000-00-00 00:00:00'),(106435,10,'A06.6 ','Amebic brain abscess','Y','0000-00-00 00:00:00'),(106434,10,'A06.5 ','Amebic lung abscess','Y','0000-00-00 00:00:00'),(106433,10,'A06.4 ','Amebic liver abscess','Y','0000-00-00 00:00:00'),(106432,10,'A06.3 ','Ameboma of intestine','Y','0000-00-00 00:00:00'),(106431,10,'A06.2 ','Amebic nondysenteric colitis','Y','0000-00-00 00:00:00'),(106430,10,'A06.1 ','Chronic intestinal amebiasis','Y','0000-00-00 00:00:00'),(106429,10,'A06.0 ','Acute amebic dysentery','Y','0000-00-00 00:00:00'),(106428,10,'A05.9 ','Bacterial foodborne intoxication, unspecified','Y','0000-00-00 00:00:00'),(106427,10,'A05.8 ','Other specified bacterial foodborne intoxications','Y','0000-00-00 00:00:00'),(106426,10,'A05.5 ','Foodborne Vibrio vulnificus intoxication','Y','0000-00-00 00:00:00'),(106425,10,'A05.4 ','Foodborne Bacillus cereus intoxication','Y','0000-00-00 00:00:00'),(106424,10,'A05.3 ','Foodborne Vibrio parahaemolyticus intoxication','Y','0000-00-00 00:00:00'),(106423,10,'A05.2 ','Foodborne Clostridium perfringens [Clostridium welchii] intoxication','Y','0000-00-00 00:00:00'),(106422,10,'A05.1 ','Botulism food poisoning','Y','0000-00-00 00:00:00'),(106421,10,'A05.0 ','Foodborne staphylococcal intoxication','Y','0000-00-00 00:00:00'),(106420,10,'A04.9 ','Bacterial intestinal infection, unspecified','Y','0000-00-00 00:00:00'),(106419,10,'A04.8 ','Other specified bacterial intestinal infections','Y','0000-00-00 00:00:00'),(106418,10,'A04.72 ','Enterocolitis due to Clostridium difficile, not specified as recurrent','Y','0000-00-00 00:00:00'),(106417,10,'A04.71 ','Enterocolitis due to Clostridium difficile, recurrent','Y','0000-00-00 00:00:00'),(106416,10,'A04.6 ','Enteritis due to Yersinia enterocolitica','Y','0000-00-00 00:00:00'),(106415,10,'A04.5 ','Campylobacter enteritis','Y','0000-00-00 00:00:00'),(106414,10,'A04.4 ','Other intestinal Escherichia coli infections','Y','0000-00-00 00:00:00'),(106413,10,'A04.3 ','Enterohemorrhagic Escherichia coli infection','Y','0000-00-00 00:00:00'),(106412,10,'A04.2 ','Enteroinvasive Escherichia coli infection','Y','0000-00-00 00:00:00'),(106411,10,'A04.1 ','Enterotoxigenic Escherichia coli infection','Y','0000-00-00 00:00:00'),(106410,10,'A04.0 ','Enteropathogenic Escherichia coli infection','Y','0000-00-00 00:00:00'),(106409,10,'A03.9 ','Shigellosis, unspecified','Y','0000-00-00 00:00:00'),(106408,10,'A03.8 ','Other shigellosis','Y','0000-00-00 00:00:00'),(106407,10,'A03.3 ','Shigellosis due to Shigella sonnei','Y','0000-00-00 00:00:00'),(106406,10,'A03.2 ','Shigellosis due to Shigella boydii','Y','0000-00-00 00:00:00'),(106405,10,'A03.1 ','Shigellosis due to Shigella flexneri','Y','0000-00-00 00:00:00'),(106404,10,'A03.0 ','Shigellosis due to Shigella dysenteriae','Y','0000-00-00 00:00:00'),(106403,10,'A02.9 ','Salmonella infection, unspecified','Y','0000-00-00 00:00:00'),(106402,10,'A02.8 ','Other specified salmonella infections','Y','0000-00-00 00:00:00'),(106401,10,'A02.29 ','Salmonella with other localized infection','Y','0000-00-00 00:00:00'),(106400,10,'A02.25 ','Salmonella pyelonephritis','Y','0000-00-00 00:00:00'),(106399,10,'A02.24 ','Salmonella osteomyelitis','Y','0000-00-00 00:00:00'),(106398,10,'A02.23 ','Salmonella arthritis','Y','0000-00-00 00:00:00'),(106397,10,'A02.22 ','Salmonella pneumonia','Y','0000-00-00 00:00:00'),(106396,10,'A02.21 ','Salmonella meningitis','Y','0000-00-00 00:00:00'),(106395,10,'A02.20 ','Localized salmonella infection, unspecified','Y','0000-00-00 00:00:00'),(106394,10,'A02.1 ','Salmonella sepsis','Y','0000-00-00 00:00:00'),(106393,10,'A02.0 ','Salmonella enteritis','Y','0000-00-00 00:00:00'),(106392,10,'A01.4 ','Paratyphoid fever, unspecified','Y','0000-00-00 00:00:00'),(106391,10,'A01.3 ','Paratyphoid fever C','Y','0000-00-00 00:00:00'),(106390,10,'A01.2 ','Paratyphoid fever B','Y','0000-00-00 00:00:00'),(106389,10,'A01.1 ','Paratyphoid fever A','Y','0000-00-00 00:00:00'),(106388,10,'A01.09 ','Typhoid fever with other complications','Y','0000-00-00 00:00:00'),(106387,10,'A01.05 ','Typhoid osteomyelitis','Y','0000-00-00 00:00:00'),(106386,10,'A01.04 ','Typhoid arthritis','Y','0000-00-00 00:00:00'),(106385,10,'A01.03 ','Typhoid pneumonia','Y','0000-00-00 00:00:00'),(106384,10,'A01.02 ','Typhoid fever with heart involvement','Y','0000-00-00 00:00:00'),(106383,10,'A01.01 ','Typhoid meningitis','Y','0000-00-00 00:00:00'),(106382,10,'A01.00 ','Typhoid fever, unspecified','Y','0000-00-00 00:00:00'),(106381,10,'A00.9 ','Cholera, unspecified','Y','0000-00-00 00:00:00'),(106380,10,'A00.1 ','Cholera due to Vibrio cholerae 01, biovar eltor','Y','0000-00-00 00:00:00'),(106379,10,'A00.0 ','Cholera due to Vibrio cholerae 01, biovar cholerae','Y','0000-00-00 00:00:00'),(91075,11,'XM6Q83','Mefenamic acid','Y','2025-10-23 00:00:00'),(91074,11,'XH8R14','Medullomyoblastoma','Y','2025-10-23 00:00:00'),(91073,11,'XH2WK5','Medulloepithelioma, NOS','Y','2025-10-23 00:00:00'),(91072,11,'XH28W9','Medulloepithelioma, benign','Y','2025-10-23 00:00:00'),(91071,11,'XH0ZP6','Medulloblastoma, WNT-activated, NOS','Y','2025-10-23 00:00:00'),(91070,11,'XH5163','Medulloblastoma, WNT-activated, Large cell type','Y','2025-10-23 00:00:00'),(91069,11,'XH3EX1','Medulloblastoma, WNT-activated, classic','Y','2025-10-23 00:00:00'),(91068,11,'XH2FW8','Medulloblastoma, WNT-activated, Anaplastic type','Y','2025-10-23 00:00:00'),(91067,11,'XH9M38','Medulloblastoma, SHH-activated and TP53-wild type','Y','2025-10-23 00:00:00'),(91066,11,'XH1SH4','Medulloblastoma, SHH-activated and TP53-mutant','Y','2025-10-23 00:00:00'),(91065,11,'XH85M7','Medulloblastoma, SHH activated, NOS','Y','2025-10-23 00:00:00'),(91064,11,'XH8P29','Medulloblastoma, NOS','Y','2025-10-23 00:00:00'),(91063,11,'XH87Q5','Medulloblastoma, non-WNT/non-SHH','Y','2025-10-23 00:00:00'),(91062,11,'XH25R4','Medulloblastoma, group 4','Y','2025-10-23 00:00:00'),(91061,11,'XH5XD3','Medulloblastoma, group 3','Y','2025-10-23 00:00:00'),(91059,11,'2A00.10','Medulloblastoma of brain','Y','2025-10-23 00:00:00'),(91060,11,'XH6JN6','Medulloblastoma with extensive nodularity','Y','2025-10-23 00:00:00'),(91058,11,'XH9B99','Medullary-like carcinoma','Y','2025-10-23 00:00:00'),(91057,11,'XH60V1','Medullary thyroid carcinoma','Y','2025-10-23 00:00:00'),(91055,11,'XA5QM0','Medullary cavity','Y','2025-10-23 00:00:00'),(91056,11,'LB30.8','Medullary sponge kidney','Y','2025-10-23 00:00:00'),(91054,11,'XH2YP5','Medullary carcinoma, NOS','Y','2025-10-23 00:00:00'),(91053,11,'XH55H7','Medullary carcinoma with lymphoid stroma','Y','2025-10-23 00:00:00'),(91052,11,'XH2MW1','Medullary carcinoma with amyloid stroma','Y','2025-10-23 00:00:00'),(91051,11,'2D10.4','Medullary carcinoma of thyroid gland','Y','2025-10-23 00:00:00'),(91050,11,'XH9620','Medullary adenocarcinoma','Y','2025-10-23 00:00:00'),(91049,11,'XA44X6','Medulla of ovary','Y','2025-10-23 00:00:00'),(91048,11,'XA17J6','Medulla','Y','2025-10-23 00:00:00'),(91047,11,'XM6L15','Medrysone','Y','2025-10-23 00:00:00'),(91046,11,'XM6EU8','Medroxyprogesterone and ethinyloestradiol','Y','2025-10-23 00:00:00'),(91045,11,'XM2HB5','Medroxyprogesterone acetate (depot)','Y','2025-10-23 00:00:00'),(91044,11,'XM0TY3','Medroxalol','Y','2025-10-23 00:00:00'),(91043,11,'XM4HQ9','Medrogestone','Y','2025-10-23 00:00:00'),(91042,11,'SE79','Medium (Excess/Deficiency) pattern (TM1)','Y','2025-10-23 00:00:00'),(91041,11,'XM80H8','Medifoxamine','Y','2025-10-23 00:00:00'),(91040,11,'PL13.7','Medication or substance that is known to be contraindicated for the patient, as mode of injury or harm','Y','2025-10-23 00:00:00'),(91039,11,'QA77','Medication or substance that is known to be contraindicated for the patient without injury or harm','Y','2025-10-23 00:00:00'),(91038,11,'PL13.6','Medication or substance that is known to be an allergen, as mode of injury or harm','Y','2025-10-23 00:00:00'),(91037,11,'QA76','Medication or substance that is known to be an allergen without injury or harm','Y','2025-10-23 00:00:00'),(91036,11,'XD80Z7','Medical/medicinal gas systems and relative accessories','Y','2025-10-23 00:00:00'),(91035,11,'QB10','Medical services not available in home','Y','2025-10-23 00:00:00'),(91034,11,'QB15','Medical services not available in current medical facility','Y','2025-10-23 00:00:00'),(91033,11,'XE9VC','Medical service area','Y','2025-10-23 00:00:00'),(91032,11,'PK80','Medical or surgical procedure associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(91031,11,'XE6QS','Medical or surgical device not in therapeutic use','Y','2025-10-23 00:00:00'),(91030,11,'QA02','Medical observation or evaluation for suspected diseases or conditions, ruled out','Y','2025-10-23 00:00:00'),(91029,11,'QA02.Y','Medical observation or evaluation for other suspected diseases or conditions, ruled out','Y','2025-10-23 00:00:00'),(91028,11,'XE6V9','Medical gas supply problem','Y','2025-10-23 00:00:00'),(91027,11,'XM7EZ9','Medical air','Y','2025-10-23 00:00:00'),(91025,11,'XA6JE5','Mediastinal vein','Y','2025-10-23 00:00:00'),(91026,11,'XA7WA2','Mediastinum','Y','2025-10-23 00:00:00'),(91024,11,'XA61B8','Mediastinal lymph node','Y','2025-10-23 00:00:00'),(91023,11,'XH8U09','Mediastinal large B-cell lymphoma','Y','2025-10-23 00:00:00'),(91021,11,'XA82V4','Median sacral artery','Y','2025-10-23 00:00:00'),(91022,11,'XA86R4','Median sacral lymph node','Y','2025-10-23 00:00:00'),(91020,11,'DA03.3','Median rhomboid glossitis','Y','2025-10-23 00:00:00'),(91018,11,'XA7FS7','Median lymphatic vessel','Y','2025-10-23 00:00:00'),(91019,11,'XA0GB0','Median nerve','Y','2025-10-23 00:00:00'),(91017,11,'XA1YZ7','Median basilic vein','Y','2025-10-23 00:00:00'),(91016,11,'XA3TW9','Median antebrachial vein','Y','2025-10-23 00:00:00'),(91015,11,'XA09E2','Medial talocalcaneal ligament','Y','2025-10-23 00:00:00'),(91013,11,'XA1YQ6','Medial surface of thigh','Y','2025-10-23 00:00:00'),(91014,11,'XA3J41','Medial surface of upper arm','Y','2025-10-23 00:00:00'),(91012,11,'XA15P0','Medial surface of lower leg','Y','2025-10-23 00:00:00'),(91010,11,'XA1QH8','Medial surface of heel','Y','2025-10-23 00:00:00'),(91011,11,'XA9S09','Medial surface of knee','Y','2025-10-23 00:00:00'),(91009,11,'XA2Q46','Medial surface of forearm','Y','2025-10-23 00:00:00'),(91008,11,'XA7P78','Medial surface of ankle','Y','2025-10-23 00:00:00'),(91006,11,'XA1SM7','Medial retromalleolar region','Y','2025-10-23 00:00:00'),(91007,11,'XA87M9','Medial supramalleolar region','Y','2025-10-23 00:00:00'),(91005,11,'XA6SG3','Medial rectus tendon','Y','2025-10-23 00:00:00'),(91004,11,'XA95N1','Medial rectus muscle','Y','2025-10-23 00:00:00'),(91002,11,'XA1RH8','Medial pterygoid nerve','Y','2025-10-23 00:00:00'),(91003,11,'XA8F95','Medial pterygoid tendon','Y','2025-10-23 00:00:00'),(91001,11,'XA2DX4','Medial pterygoid muscle','Y','2025-10-23 00:00:00'),(91000,11,'XA85B7','Medial plantar vein','Y','2025-10-23 00:00:00'),(90999,11,'XA9AF5','Medial plantar nerve','Y','2025-10-23 00:00:00'),(90998,11,'XA7PN1','Medial plantar artery','Y','2025-10-23 00:00:00'),(90997,11,'XA49V5','Medial pectoral nerve','Y','2025-10-23 00:00:00'),(90996,11,'XA8VA1','Medial palpebral artery','Y','2025-10-23 00:00:00'),(90995,11,'XA7LB6','Medial meniscus of knee joint','Y','2025-10-23 00:00:00'),(90993,11,'XA1HS9','Medial malleolus','Y','2025-10-23 00:00:00'),(90994,11,'XA1XM3','Medial marginal vein','Y','2025-10-23 00:00:00'),(90992,11,'XA1QB3','Medial inferior genicular artery','Y','2025-10-23 00:00:00'),(90991,11,'XA3JH6','Medial half of breast','Y','2025-10-23 00:00:00'),(90990,11,'XA8PZ9','Medial femoral circumflex vein','Y','2025-10-23 00:00:00'),(90989,11,'XA6920','Medial femoral circumflex artery','Y','2025-10-23 00:00:00'),(90988,11,'FB55.0','Medial epicondylitis of elbow','Y','2025-10-23 00:00:00'),(90987,11,'XA4097','Medial epicondyle of the humerus','Y','2025-10-23 00:00:00'),(90986,11,'NC93.22','Medial dislocation of proximal end of tibia','Y','2025-10-23 00:00:00'),(90984,11,'XA7K97','Medial cutaneous nerve of arm','Y','2025-10-23 00:00:00'),(90985,11,'XA26F7','Medial cutaneous nerve of forearm','Y','2025-10-23 00:00:00'),(90983,11,'XA9HJ5','Medial cutaneous nerve','Y','2025-10-23 00:00:00'),(90982,11,'XA4J74','Medial cuneiform bone','Y','2025-10-23 00:00:00'),(90980,11,'XA7Y69','Medial condyle of tibia','Y','2025-10-23 00:00:00'),(90981,11,'XA7UA9','Medial cord of brachial plexus','Y','2025-10-23 00:00:00'),(90979,11,'XA4983','Medial condylar surface of elbow','Y','2025-10-23 00:00:00'),(90977,11,'XA2GQ3','Medial canthus','Y','2025-10-23 00:00:00'),(90978,11,'XA2722','Medial collateral artery','Y','2025-10-23 00:00:00'),(90975,11,'XK9H','Medial','Y','2025-10-23 00:00:00'),(90976,11,'XA3WM8','Medial border of foot','Y','2025-10-23 00:00:00'),(90974,11,'XM9KN4','Medazepam','Y','2025-10-23 00:00:00'),(90973,11,'XM6MB5','Mecysteine','Y','2025-10-23 00:00:00'),(90972,11,'XM7TK2','Mecrilate','Y','2025-10-23 00:00:00'),(90970,11,'XM0CJ6','Mecoprop','Y','2025-10-23 00:00:00'),(90971,11,'XM0QY2','Mecoprop-P','Y','2025-10-23 00:00:00'),(90969,11,'KD38','Meconium staining','Y','2025-10-23 00:00:00'),(90968,11,'KB87.1','Meconium plug without ileus','Y','2025-10-23 00:00:00'),(90966,11,'KB87.2','Meconium ileus without perforation','Y','2025-10-23 00:00:00'),(90967,11,'KA05.8','Meconium passage during delivery','Y','2025-10-23 00:00:00'),(90965,11,'KB87.4','Meconium ileus with perforation','Y','2025-10-23 00:00:00'),(90962,11,'XM1SE2','Meclofenoxate','Y','2025-10-23 00:00:00'),(90963,11,'XM1A78','Meclozine','Y','2025-10-23 00:00:00'),(90964,11,'XM2AT9','Mecobalamin','Y','2025-10-23 00:00:00'),(90960,11,'XM9KD5','Meclocycline','Y','2025-10-23 00:00:00'),(90961,11,'XM3W40','Meclofenamic acid','Y','2025-10-23 00:00:00'),(90958,11,'LB15.0','Meckel diverticulum','Y','2025-10-23 00:00:00'),(90959,11,'LD2F.13','Meckel-Gruber syndrome','Y','2025-10-23 00:00:00'),(90957,11,'XM5562','Mecillinam','Y','2025-10-23 00:00:00'),(90955,11,'9C80.5','Mechanical strabismus','Y','2025-10-23 00:00:00'),(90956,11,'XE279','Mechanics altered','Y','2025-10-23 00:00:00'),(90954,11,'XE1UJ','Mechanical shock problem with device identified','Y','2025-10-23 00:00:00'),(90953,11,'9A03.01','Mechanical ptosis of eyelid','Y','2025-10-23 00:00:00'),(90952,11,'XE640','Mechanical problem with device identified','Y','2025-10-23 00:00:00'),(90951,11,'XE2GF','Mechanical problem','Y','2025-10-23 00:00:00'),(90950,11,'XE505','Mechanical power transmission device','Y','2025-10-23 00:00:00'),(90949,11,'XE74K','Mechanical mixer component of medical device','Y','2025-10-23 00:00:00'),(90947,11,'XE88N','Mechanical jam','Y','2025-10-23 00:00:00'),(90948,11,'9A03.41','Mechanical lagophthalmos','Y','2025-10-23 00:00:00'),(90946,11,'9A03.11','Mechanical entropion of eyelid','Y','2025-10-23 00:00:00'),(90945,11,'9A03.21','Mechanical ectropion of eyelid','Y','2025-10-23 00:00:00'),(90944,11,'PK9C.31','Mechanical complication of permanent sutures','Y','2025-10-23 00:00:00'),(90941,11,'XM3038','Mecasermin','Y','2025-10-23 00:00:00'),(90942,11,'XM9BW0','Mecasermin rinfabate','Y','2025-10-23 00:00:00'),(90943,11,'PK9C.30','Mechanical complication of nonabsorbable surgical material, not otherwise specified','Y','2025-10-23 00:00:00'),(90939,11,'XM13Z0','Mecamylamine','Y','2025-10-23 00:00:00'),(90940,11,'XM5406','Mecarbam','Y','2025-10-23 00:00:00'),(90936,11,'XM94C0','Mebicar','Y','2025-10-23 00:00:00'),(90937,11,'XM7EB1','Mebutamate','Y','2025-10-23 00:00:00'),(90938,11,'XM3EW9','Mebutizide','Y','2025-10-23 00:00:00'),(90934,11,'XM90R8','Mebeverine','Y','2025-10-23 00:00:00'),(90935,11,'XM4280','Mebhydrolin','Y','2025-10-23 00:00:00'),(90932,11,'XM2K50','Mebanazine','Y','2025-10-23 00:00:00'),(90933,11,'XM3GX0','Mebendazole','Y','2025-10-23 00:00:00'),(90931,11,'XE0HJ','Measurement system incompatibility','Y','2025-10-23 00:00:00'),(90929,11,'XM21H2','Measles, combinations with rubella, live attenuated','Y','2025-10-23 00:00:00'),(90930,11,'XM8L15','Measles, live attenuated','Y','2025-10-23 00:00:00'),(90928,11,'XM4AJ8','Measles, combinations with mumps, rubella and varicella, live attenuated','Y','2025-10-23 00:00:00'),(90927,11,'XM9439','Measles, combinations with mumps, live attenuated','Y','2025-10-23 00:00:00'),(90926,11,'XM8TF3','Measles, combinations with mumps and rubella, live attenuated','Y','2025-10-23 00:00:00'),(90924,11,'1F03.Y','Measles with other complications','Y','2025-10-23 00:00:00'),(90925,11,'1F03.0','Measles without complication','Y','2025-10-23 00:00:00'),(90923,11,'XN186','Measles virus','Y','2025-10-23 00:00:00'),(90921,11,'XM1GU6','Measles immunoglobulin','Y','2025-10-23 00:00:00'),(90922,11,'XM28X5','Measles vaccines','Y','2025-10-23 00:00:00'),(90920,11,'1F03.2','Measles complicated by meningitis','Y','2025-10-23 00:00:00'),(90918,11,'1F03','Measles','Y','2025-10-23 00:00:00'),(90919,11,'1F03.1','Measles complicated by encephalitis','Y','2025-10-23 00:00:00'),(90917,11,'6C4C.6','MDMA or related drug-induced psychotic disorder, including MDA','Y','2025-10-23 00:00:00'),(90916,11,'6C4C.70','MDMA or related drug-induced mood disorder, including MDA','Y','2025-10-23 00:00:00'),(90915,11,'6C4C.5','MDMA or related drug-induced delirium, including MDA','Y','2025-10-23 00:00:00'),(90914,11,'6C4C.71','MDMA or related drug-induced anxiety disorder','Y','2025-10-23 00:00:00'),(90913,11,'6C4C.4','MDMA or related drug withdrawal, including MDA','Y','2025-10-23 00:00:00'),(90912,11,'6C4C.3','MDMA or related drug intoxication, including MDA','Y','2025-10-23 00:00:00'),(90911,11,'6C4C.2Z','MDMA or related drug dependence, including MDA, unspecified','Y','2025-10-23 00:00:00'),(90910,11,'6C4C.22','MDMA or related drug dependence, including MDA, sustained partial remission','Y','2025-10-23 00:00:00'),(90909,11,'6C4C.23','MDMA or related drug dependence, including MDA, sustained full remission','Y','2025-10-23 00:00:00'),(90908,11,'6C4C.21','MDMA or related drug dependence, including MDA, early full remission','Y','2025-10-23 00:00:00'),(90907,11,'6C4C.20','MDMA or related drug dependence, including MDA, current use','Y','2025-10-23 00:00:00'),(90906,11,'6C4C.2','MDMA or related drug dependence, including MDA','Y','2025-10-23 00:00:00'),(90905,11,'XM6T93','MCPA-thioethyl','Y','2025-10-23 00:00:00'),(90903,11,'XM25W6','Mazindol','Y','2025-10-23 00:00:00'),(90904,11,'XM88B4','MCPA','Y','2025-10-23 00:00:00'),(90901,11,'XN5ZC','Mayaro virus','Y','2025-10-23 00:00:00'),(90902,11,'XM3FW6','Mazaticol','Y','2025-10-23 00:00:00'),(90900,11,'XA4ZZ3','Maxillary vein','Y','2025-10-23 00:00:00'),(90899,11,'XA1R64','Maxillary sinus','Y','2025-10-23 00:00:00'),(90898,11,'XA18M5','Maxillary artery','Y','2025-10-23 00:00:00'),(90897,11,'XA7VK5','Maxilla','Y','2025-10-23 00:00:00'),(90896,11,'2B2Z','Mature T-cell or NK-cell neoplasms, unspecified','Y','2025-10-23 00:00:00'),(90895,11,'2A90','Mature T-cell lymphoma, specified types, nodal or systemic','Y','2025-10-23 00:00:00'),(90894,11,'XH3HJ2','Mature T-cell lymphoma, NOS','Y','2025-10-23 00:00:00'),(90893,11,'XH3400','Mature Tand NK-cell lymphomas','Y','2025-10-23 00:00:00'),(90892,11,'2A8Z','Mature B-cell neoplasms, unspecified','Y','2025-10-23 00:00:00'),(90891,11,'2A82.Z','Mature B-cell neoplasm with leukaemic behaviour, unspecified','Y','2025-10-23 00:00:00'),(90890,11,'2A82','Mature B-cell neoplasm with leukaemic behaviour','Y','2025-10-23 00:00:00'),(90889,11,'XH3FE9','Mature B-cell lymphomas','Y','2025-10-23 00:00:00'),(90888,11,'9B10.02','Mature age-related cataract','Y','2025-10-23 00:00:00'),(90887,11,'XM33V8','Matulane','Y','2025-10-23 00:00:00'),(90886,11,'XE0TM','Mattress, sleeping mat','Y','2025-10-23 00:00:00'),(90885,11,'JB63.Z','Maternal infectious diseases classifiable elsewhere but complicating pregnancy, childbirth or the puerperium, unspecified','Y','2025-10-23 00:00:00'),(90884,11,'JB63','Maternal infectious diseases classifiable elsewhere but complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(90883,11,'LD46.0','Maternal imprinting error','Y','2025-10-23 00:00:00'),(90882,11,'JA65.6','Maternal hypotension syndrome','Y','2025-10-23 00:00:00'),(90881,11,'JB0D.0','Maternal distress during labour or delivery','Y','2025-10-23 00:00:00'),(90880,11,'JA6Z','Maternal disorders predominantly related to pregnancy, unspecified','Y','2025-10-23 00:00:00'),(90879,11,'JB64.Z','Maternal diseases classifiable elsewhere but complicating pregnancy, childbirth or the puerperium, unspecified','Y','2025-10-23 00:00:00'),(90878,11,'JA80.Z','Maternal care related to unspecified multiple gestation','Y','2025-10-23 00:00:00'),(90877,11,'JA8Z','Maternal care related to unspecified fetus, amniotic cavity or possible delivery problems','Y','2025-10-23 00:00:00'),(90876,11,'JA8E','Maternal care related to prolonged pregnancy','Y','2025-10-23 00:00:00'),(90875,11,'JA8C.Z','Maternal care related to premature separation of placenta, unspecified','Y','2025-10-23 00:00:00'),(90874,11,'JA8C','Maternal care related to premature separation of placenta','Y','2025-10-23 00:00:00'),(90873,11,'JA89.Z','Maternal care related to premature rupture of membranes, unspecified','Y','2025-10-23 00:00:00'),(90872,11,'JA89','Maternal care related to premature rupture of membranes','Y','2025-10-23 00:00:00'),(90871,11,'JA87','Maternal care related to polyhydramnios','Y','2025-10-23 00:00:00'),(90870,11,'JA8A.Z','Maternal care related to placental disorders, unspecified','Y','2025-10-23 00:00:00'),(90869,11,'JA8A','Maternal care related to placental disorders','Y','2025-10-23 00:00:00'),(90868,11,'JA8B.Z','Maternal care related to placenta praevia or low lying placenta, unspecified','Y','2025-10-23 00:00:00'),(90867,11,'JA8B','Maternal care related to placenta praevia or low lying placenta','Y','2025-10-23 00:00:00'),(90866,11,'JA80.Y','Maternal care related to other specified multiple gestation','Y','2025-10-23 00:00:00'),(90865,11,'JA8Y','Maternal care related to other specified fetus, amniotic cavity or possible delivery problems','Y','2025-10-23 00:00:00'),(90864,11,'JA80','Maternal care related to multiple gestation','Y','2025-10-23 00:00:00'),(90863,11,'JA8D.Z','Maternal care related to false labour, unspecified','Y','2025-10-23 00:00:00'),(90862,11,'JA8D','Maternal care related to false labour','Y','2025-10-23 00:00:00'),(90861,11,'JA81.Z','Maternal care related to complications specific to multiple gestation, unspecified','Y','2025-10-23 00:00:00'),(90860,11,'JA81','Maternal care related to complications specific to multiple gestation','Y','2025-10-23 00:00:00'),(90859,11,'JA88','Maternal care related to certain specified disorders of amniotic fluid or membranes','Y','2025-10-23 00:00:00'),(90858,11,'JA86.6','Maternal care for viable fetus in abdominal pregnancy','Y','2025-10-23 00:00:00'),(90857,11,'JA82.0','Maternal care for unstable lie','Y','2025-10-23 00:00:00'),(90856,11,'JA65.Z','Maternal care for unspecified conditions predominantly related to pregnancy','Y','2025-10-23 00:00:00'),(90855,11,'JA84.1','Maternal care for tumour of corpus uteri','Y','2025-10-23 00:00:00'),(90854,11,'JA82.2','Maternal care for transverse or oblique lie','Y','2025-10-23 00:00:00'),(90853,11,'JA86.5','Maternal care for suspected macrosomia','Y','2025-10-23 00:00:00'),(90852,11,'JA86.2','Maternal care for signs of fetal hypoxia','Y','2025-10-23 00:00:00'),(90851,11,'JA86.0','Maternal care for red cell antibodies','Y','2025-10-23 00:00:00'),(90850,11,'JA86.Y','Maternal care for other specified fetal problems','Y','2025-10-23 00:00:00'),(90849,11,'JA65.Y','Maternal care for other specified conditions predominantly related to pregnancy','Y','2025-10-23 00:00:00'),(90848,11,'JA86.Z','Maternal care for other known or suspected fetal problems, unspecified','Y','2025-10-23 00:00:00'),(90847,11,'JA86','Maternal care for other known or suspected fetal problems','Y','2025-10-23 00:00:00'),(90846,11,'JA65','Maternal care for other conditions predominantly related to pregnancy','Y','2025-10-23 00:00:00'),(90845,11,'JA82.5','Maternal care for multiple gestation with malpresentation of one fetus or more','Y','2025-10-23 00:00:00'),(90844,11,'JA82.Y','Maternal care for known or suspected other specified malpresentation of fetus','Y','2025-10-23 00:00:00'),(90843,11,'JA85.Y','Maternal care for known or suspected other specified fetal abnormality or damage','Y','2025-10-23 00:00:00');
INSERT INTO `icd` VALUES (90842,11,'JA83.Y','Maternal care for known or suspected other specified disproportion','Y','2025-10-23 00:00:00'),(90841,11,'JA84.Y','Maternal care for known or suspected other specified abnormality of pelvic organs','Y','2025-10-23 00:00:00'),(90840,11,'JA82.Z','Maternal care for known or suspected malpresentation of fetus, unspecified','Y','2025-10-23 00:00:00'),(90839,11,'JA82','Maternal care for known or suspected malpresentation of fetus','Y','2025-10-23 00:00:00'),(90838,11,'JA85.2','Maternal care for known or suspected hereditary disease in fetus','Y','2025-10-23 00:00:00'),(90837,11,'JA85.Z','Maternal care for known or suspected fetal abnormality or damage, unspecified','Y','2025-10-23 00:00:00'),(90836,11,'JA85','Maternal care for known or suspected fetal abnormality or damage','Y','2025-10-23 00:00:00'),(90835,11,'JA83.Z','Maternal care for known or suspected disproportion, unspecified','Y','2025-10-23 00:00:00'),(90834,11,'JA83','Maternal care for known or suspected disproportion','Y','2025-10-23 00:00:00'),(90833,11,'JA85.3','Maternal care for known or suspected damage to fetus from viral disease in mother','Y','2025-10-23 00:00:00'),(90832,11,'JA85.1','Maternal care for known or suspected chromosomal abnormality in fetus','Y','2025-10-23 00:00:00'),(90831,11,'JA85.0','Maternal care for known or suspected central nervous system malformation in fetus','Y','2025-10-23 00:00:00'),(90830,11,'JA84.Z','Maternal care for known or suspected abnormality of pelvic organs, unspecified','Y','2025-10-23 00:00:00'),(90829,11,'JA84','Maternal care for known or suspected abnormality of pelvic organs','Y','2025-10-23 00:00:00'),(90828,11,'JA86.3','Maternal care for intrauterine death','Y','2025-10-23 00:00:00'),(90827,11,'JA86.1','Maternal care for hydrops fetalis','Y','2025-10-23 00:00:00'),(90826,11,'JA82.4','Maternal care for high head at term','Y','2025-10-23 00:00:00'),(90825,11,'JA86.4','Maternal care for fetal growth restriction','Y','2025-10-23 00:00:00'),(90824,11,'JA82.3','Maternal care for face, brow or chin presentation','Y','2025-10-23 00:00:00'),(90823,11,'JA83.4','Maternal care for disproportion of mixed maternal and fetal origin','Y','2025-10-23 00:00:00'),(90822,11,'JA83.5','Maternal care for disproportion due to unusually large fetus','Y','2025-10-23 00:00:00'),(90821,11,'JA83.3','Maternal care for disproportion due to outlet contraction of pelvis','Y','2025-10-23 00:00:00'),(90820,11,'JA83.2','Maternal care for disproportion due to inlet contraction of pelvis','Y','2025-10-23 00:00:00'),(90819,11,'JA83.6','Maternal care for disproportion due to hydrocephalic fetus','Y','2025-10-23 00:00:00'),(90818,11,'JA83.1','Maternal care for disproportion due to generally contracted pelvis','Y','2025-10-23 00:00:00'),(90817,11,'JA83.0','Maternal care for disproportion due to deformity of maternal pelvic bones','Y','2025-10-23 00:00:00'),(90816,11,'JA84.0','Maternal care for congenital malformation of uterus','Y','2025-10-23 00:00:00'),(90815,11,'JA82.6','Maternal care for compound presentation','Y','2025-10-23 00:00:00'),(90814,11,'JA84.3','Maternal care for cervical incompetence','Y','2025-10-23 00:00:00'),(90813,11,'JA82.1','Maternal care for breech presentation','Y','2025-10-23 00:00:00'),(90812,11,'JA84.5','Maternal care for abnormality of vulva or perineum','Y','2025-10-23 00:00:00'),(90811,11,'JA84.4','Maternal care for abnormality of vagina','Y','2025-10-23 00:00:00'),(90810,11,'JA84.2','Maternal care due to uterine scar from previous surgery','Y','2025-10-23 00:00:00'),(90809,11,'XM9F18','Maternal antibodies','Y','2025-10-23 00:00:00'),(90808,11,'XE47S','Material twisted or bent','Y','2025-10-23 00:00:00'),(90807,11,'XE9WH','Material too soft or flexible','Y','2025-10-23 00:00:00'),(90806,11,'XE4Z7','Material too rigid or stiff','Y','2025-10-23 00:00:00'),(90805,11,'XE4FP','Material split, cut or torn','Y','2025-10-23 00:00:00'),(90804,11,'XE6K7','Material separation','Y','2025-10-23 00:00:00'),(90803,11,'XE6G0','Material rupture','Y','2025-10-23 00:00:00'),(90802,11,'XE0X4','Material puncture or hole','Y','2025-10-23 00:00:00'),(90801,11,'XE72S','Material protrusion or extrusion','Y','2025-10-23 00:00:00'),(90800,11,'XE9AR','Material perforation','Y','2025-10-23 00:00:00'),(90799,11,'XE7B7','Material or material leachate pyrogenic problem with device identified','Y','2025-10-23 00:00:00'),(90798,11,'XE3RW','Material or chemical problem with device identified','Y','2025-10-23 00:00:00'),(90797,11,'XE585','Material opacification','Y','2025-10-23 00:00:00'),(90796,11,'XE16B','Material not mentioned elsewhere','Y','2025-10-23 00:00:00'),(90795,11,'XE8PS','Material invagination','Y','2025-10-23 00:00:00'),(90793,11,'XE37M','Material frayed','Y','2025-10-23 00:00:00'),(90794,11,'XE4LP','Material integrity problem','Y','2025-10-23 00:00:00'),(90792,11,'XE2ET','Material fragmentation','Y','2025-10-23 00:00:00'),(90791,11,'XE1WE','Material erosion','Y','2025-10-23 00:00:00'),(90790,11,'XE0RF','Material disintegration','Y','2025-10-23 00:00:00'),(90789,11,'XE2G9','Material discoloured','Y','2025-10-23 00:00:00'),(90788,11,'XE1LJ','Material deformation','Y','2025-10-23 00:00:00'),(90787,11,'AB11.3','Mastoiditis, not elsewhere classified','Y','2025-10-23 00:00:00'),(90786,11,'AB11','Mastoiditis or related conditions','Y','2025-10-23 00:00:00'),(90785,11,'XA8C81','Mastoid emissary vein','Y','2025-10-23 00:00:00'),(90784,11,'XA9RH9','Mastoid antrum','Y','2025-10-23 00:00:00'),(90783,11,'XA68N3','Mastoid','Y','2025-10-23 00:00:00'),(90782,11,'GB23.5','Mastodynia','Y','2025-10-23 00:00:00'),(90780,11,'2A21','Mastocytosis','Y','2025-10-23 00:00:00'),(90781,11,'2A21.Z','Mastocytosis, unspecified','Y','2025-10-23 00:00:00'),(90779,11,'XH1J17','Mastocytoma, NOS','Y','2025-10-23 00:00:00'),(90778,11,'XN93P','Mastadenovirus','Y','2025-10-23 00:00:00'),(90777,11,'XH6A72','Mast cell sarcoma','Y','2025-10-23 00:00:00'),(90776,11,'2A21.2','Mast cell sarcoma','Y','2025-10-23 00:00:00'),(90775,11,'XH5ER6','Mast cell leukaemia','Y','2025-10-23 00:00:00'),(90773,11,'XA8Z61','Masseteric vein','Y','2025-10-23 00:00:00'),(90774,11,'2A21.00','Mast cell leukaemia','Y','2025-10-23 00:00:00'),(90772,11,'XA5NQ5','Masseteric nerve','Y','2025-10-23 00:00:00'),(90771,11,'XA49F4','Masseteric artery','Y','2025-10-23 00:00:00'),(90770,11,'XA1FB3','Masseter tendon','Y','2025-10-23 00:00:00'),(90769,11,'XA2VD8','Masseter muscle','Y','2025-10-23 00:00:00'),(90768,11,'XM4KU8','Masoprocol','Y','2025-10-23 00:00:00'),(90767,11,'XE26U','Mask component of medical device','Y','2025-10-23 00:00:00'),(90766,11,'XM0JZ7','Masitinib','Y','2025-10-23 00:00:00'),(90764,11,'XE4TZ','Marsupials','Y','2025-10-23 00:00:00'),(90765,11,'XH1PE9','Masculinovoblastoma','Y','2025-10-23 00:00:00'),(90763,11,'XE5TX','Marsh or swamp','Y','2025-10-23 00:00:00'),(90762,11,'XE8RD','Marker component of medical device','Y','2025-10-23 00:00:00'),(90760,11,'XM54D9','Marine toad toxin','Y','2025-10-23 00:00:00'),(90761,11,'QA17','Marital or couples counselling','Y','2025-10-23 00:00:00'),(90759,11,'XE3UQ','Marine mammal','Y','2025-10-23 00:00:00'),(90758,11,'XE2AH','Marine animal','Y','2025-10-23 00:00:00'),(90757,11,'XM99J1','Marine and freshwater animal venom','Y','2025-10-23 00:00:00'),(90756,11,'XM2P96','Marine and freshwater animal toxins','Y','2025-10-23 00:00:00'),(90755,11,'XM8PV1','Marijuana','Y','2025-10-23 00:00:00'),(90754,11,'XM7HJ6','Maribavir','Y','2025-10-23 00:00:00'),(90753,11,'XH1X21','Marginal zone B-cell lymphoma, NOS','Y','2025-10-23 00:00:00'),(90752,11,'XA1TY5','Marginal mandibular branch of the facial nerve','Y','2025-10-23 00:00:00'),(90751,11,'LD28.0Z','Marfan syndrome or Marfan-related disorders, unspecified','Y','2025-10-23 00:00:00'),(90749,11,'LD28.01','Marfan syndrome','Y','2025-10-23 00:00:00'),(90750,11,'LD28.0','Marfan syndrome or Marfan-related disorders','Y','2025-10-23 00:00:00'),(90748,11,'XN42C','Mardivirus','Y','2025-10-23 00:00:00'),(90747,11,'9A03.00','Marcus-Gunn syndrome','Y','2025-10-23 00:00:00'),(90745,11,'XN3F2','Marburg virus','Y','2025-10-23 00:00:00'),(90746,11,'1D60.10','Marburg virus disease','Y','2025-10-23 00:00:00'),(90743,11,'1D60.1','Marburg disease','Y','2025-10-23 00:00:00'),(90744,11,'1D60.1Z','Marburg disease, virus unspecified','Y','2025-10-23 00:00:00'),(90742,11,'XM3FG0','Maraviroc','Y','2025-10-23 00:00:00'),(90741,11,'XM3VV1','Maralixibat chloride','Y','2025-10-23 00:00:00'),(90740,11,'XM41L8','Maprotiline','Y','2025-10-23 00:00:00'),(90739,11,'5C50.D0','Maple-syrup-urine disease','Y','2025-10-23 00:00:00'),(90738,11,'CA70.6','Maple bark stripper lung','Y','2025-10-23 00:00:00'),(90737,11,'XM0FS9','Mapharsen','Y','2025-10-23 00:00:00'),(90736,11,'XE7Q8','Manufacturing, packaging or shipping problem','Y','2025-10-23 00:00:00'),(90735,11,'XE205','Manufacturing process problem with device identified','Y','2025-10-23 00:00:00'),(90734,11,'XE4Y6','Manufactured or industrial material','Y','2025-10-23 00:00:00'),(90733,11,'XA0K13','Manubrium','Y','2025-10-23 00:00:00'),(90732,11,'2A85.5','Mantle cell lymphoma','Y','2025-10-23 00:00:00'),(90731,11,'XH1VV1','Mantle cell lymphoma','Y','2025-10-23 00:00:00'),(90730,11,'1F66.1','Mansonelliasis','Y','2025-10-23 00:00:00'),(90728,11,'XN8AX','Mansonella perstans','Y','2025-10-23 00:00:00'),(90729,11,'XN0JQ','Mansonella streptocerca','Y','2025-10-23 00:00:00'),(90726,11,'XN5Z0','Mansonella','Y','2025-10-23 00:00:00'),(90727,11,'XN6PZ','Mansonella ozzardi','Y','2025-10-23 00:00:00'),(90725,11,'XE6V2','Manometer component of medical device','Y','2025-10-23 00:00:00'),(90724,11,'XM4TU0','Mannosulfan','Y','2025-10-23 00:00:00'),(90723,11,'XM8XQ7','Mannomustine','Y','2025-10-23 00:00:00'),(90722,11,'XM30P9','Mannitol hexanitrate','Y','2025-10-23 00:00:00'),(90721,11,'XM5BJ8','Mannitol','Y','2025-10-23 00:00:00'),(90720,11,'PK81.B','Manipulative therapies associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(90719,11,'XM6LL4','Manihot esculenta plant','Y','2025-10-23 00:00:00'),(90717,11,'XM3GA2','Manidipine','Y','2025-10-23 00:00:00'),(90718,11,'XE87E','Manifold component of medical device','Y','2025-10-23 00:00:00'),(90716,11,'6A25.3','Manic mood symptoms in primary psychotic disorders','Y','2025-10-23 00:00:00'),(90715,11,'SD81','Manic disorder (TM1)','Y','2025-10-23 00:00:00'),(90714,11,'5B91.5','Manganese excess','Y','2025-10-23 00:00:00'),(90713,11,'XM9ZR0','Manganese dioxide','Y','2025-10-23 00:00:00'),(90712,11,'5B5K.9','Manganese deficiency','Y','2025-10-23 00:00:00'),(90711,11,'XM3FY4','Manganese','Y','2025-10-23 00:00:00'),(90710,11,'XM73Z5','Mangafodipir','Y','2025-10-23 00:00:00'),(90709,11,'XA8KA2','Mandibular region','Y','2025-10-23 00:00:00'),(90708,11,'XA8DW7','Mandibular lymph node','Y','2025-10-23 00:00:00'),(90707,11,'KA45.20','Mandibular bone fracture due to birth injury','Y','2025-10-23 00:00:00'),(90706,11,'XA51B7','Mandible','Y','2025-10-23 00:00:00'),(90705,11,'XM3HJ6','Mandelic acid','Y','2025-10-23 00:00:00'),(90704,11,'GB23.0','Mammary duct ectasia','Y','2025-10-23 00:00:00'),(90703,11,'XM35H6','Mammal toxin','Y','2025-10-23 00:00:00'),(90702,11,'XM9JL4','Mamba snake venom','Y','2025-10-23 00:00:00'),(90701,11,'FB80.7','Malunion of fracture','Y','2025-10-23 00:00:00'),(90700,11,'PJ2Z','Maltreatment, unspecified','Y','2025-10-23 00:00:00'),(90699,11,'5C61.1','Maltase-glucoamylase deficiency','Y','2025-10-23 00:00:00'),(90698,11,'CA70.4','Malt worker lung','Y','2025-10-23 00:00:00'),(90697,11,'GA16.1','Malposition of uterus','Y','2025-10-23 00:00:00'),(90696,11,'LB31.B','Malposition of ureter','Y','2025-10-23 00:00:00'),(90695,11,'XE8P2','Malposition of device','Y','2025-10-23 00:00:00'),(90694,11,'DA0E.5Z','Malocclusion, unspecified','Y','2025-10-23 00:00:00'),(90693,11,'DA0E.5','Malocclusion','Y','2025-10-23 00:00:00'),(90692,11,'5A12','Malnutrition-related diabetes mellitus','Y','2025-10-23 00:00:00'),(90691,11,'JA64','Malnutrition in pregnancy','Y','2025-10-23 00:00:00'),(90690,11,'XA5DS8','Malleus','Y','2025-10-23 00:00:00'),(90689,11,'QC30','Malingering','Y','2025-10-23 00:00:00'),(90688,11,'2C75.0','Malignant trophoblastic neoplasms of placenta','Y','2025-10-23 00:00:00'),(90687,11,'2C27.2','Malignant thymoma','Y','2025-10-23 00:00:00'),(90686,11,'XH2PP9','Malignant teratoma, undifferentiated','Y','2025-10-23 00:00:00'),(90685,11,'XH0774','Malignant teratoma, trophoblastic','Y','2025-10-23 00:00:00'),(90684,11,'XH43T4','Malignant teratoma, intermediate','Y','2025-10-23 00:00:00'),(90683,11,'2C73.3','Malignant teratoma of ovary','Y','2025-10-23 00:00:00'),(90682,11,'XH5AQ9','Malignant tenosynovial giant cell tumour','Y','2025-10-23 00:00:00'),(90681,11,'XH8DS3','Malignant Spitz tumour','Y','2025-10-23 00:00:00'),(90680,11,'2C63','Malignant phyllodes tumour of breast','Y','2025-10-23 00:00:00'),(90679,11,'2D11.1','Malignant phaeochromocytoma of adrenal gland','Y','2025-10-23 00:00:00'),(90678,11,'XH4V81','Malignant peripheral nerve sheath tumour, epithelioid','Y','2025-10-23 00:00:00'),(90677,11,'XH2VV8','Malignant peripheral nerve sheath tumour with rhabdomyoblastic differentiation','Y','2025-10-23 00:00:00'),(90676,11,'2A02.10','Malignant peripheral nerve sheath tumour of cranial or paraspinal nerves','Y','2025-10-23 00:00:00'),(90675,11,'XH2XP8','Malignant peripheral nerve sheath tumour','Y','2025-10-23 00:00:00'),(90674,11,'2C41','Malignant perineurioma','Y','2025-10-23 00:00:00'),(90673,11,'AA02','Malignant otitis externa','Y','2025-10-23 00:00:00'),(90672,11,'2C40','Malignant neuroepitheliomatous neoplasms of peripheral nerves or autonomic nervous system','Y','2025-10-23 00:00:00'),(90671,11,'2C20.1','Malignant neuroepitheliomatous neoplasm of nasal cavity','Y','2025-10-23 00:00:00'),(90670,11,'2D02.1','Malignant neuroepithelial tumours of retina','Y','2025-10-23 00:00:00'),(90669,11,'2D07.1','Malignant neuroepithelial tumours of iris','Y','2025-10-23 00:00:00'),(90668,11,'2D06.3','Malignant neuroepithelial tumours of ciliary body','Y','2025-10-23 00:00:00'),(90667,11,'2B72.1','Malignant neuroendocrine neoplasm of stomach','Y','2025-10-23 00:00:00'),(90666,11,'2B5E','Malignant nerve sheath tumour of peripheral nerves or autonomic nervous system, primary site','Y','2025-10-23 00:00:00'),(90665,11,'2D3Z','Malignant neoplasms, stated or presumed to be primary, of specified sites, except of lymphoid, haematopoietic, central nervous system or related tissues, unspecified','Y','2025-10-23 00:00:00'),(90664,11,'2C70.Z','Malignant neoplasms of vulva, unspecified','Y','2025-10-23 00:00:00'),(90663,11,'2C70','Malignant neoplasms of vulva','Y','2025-10-23 00:00:00'),(90662,11,'2C71.Z','Malignant neoplasms of vagina, unspecified','Y','2025-10-23 00:00:00'),(90661,11,'2C71','Malignant neoplasms of vagina','Y','2025-10-23 00:00:00'),(90660,11,'2C78','Malignant neoplasms of uterus, part not specified','Y','2025-10-23 00:00:00'),(90659,11,'2C72.Z','Malignant neoplasms of uterine ligament, parametrium, or uterine adnexa, unspecified','Y','2025-10-23 00:00:00'),(90658,11,'2C72','Malignant neoplasms of uterine ligament, parametrium, or uterine adnexa','Y','2025-10-23 00:00:00'),(90657,11,'2C9Z','Malignant neoplasms of urinary tract, unspecified','Y','2025-10-23 00:00:00'),(90656,11,'2C93.Z','Malignant neoplasms of urethra or paraurethral gland, unspecified','Y','2025-10-23 00:00:00'),(90655,11,'2C93','Malignant neoplasms of urethra or paraurethral gland','Y','2025-10-23 00:00:00'),(90654,11,'2C92.Z','Malignant neoplasms of ureter, unspecified','Y','2025-10-23 00:00:00'),(90653,11,'2C92','Malignant neoplasms of ureter','Y','2025-10-23 00:00:00'),(90652,11,'2C24.Z','Malignant neoplasms of trachea, unspecified','Y','2025-10-23 00:00:00'),(90651,11,'2C24','Malignant neoplasms of trachea','Y','2025-10-23 00:00:00'),(90650,11,'2B69.Z','Malignant neoplasms of tonsil, unspecified','Y','2025-10-23 00:00:00'),(90649,11,'2B69','Malignant neoplasms of tonsil','Y','2025-10-23 00:00:00'),(90648,11,'2D10.Z','Malignant neoplasms of thyroid gland, unspecified','Y','2025-10-23 00:00:00'),(90647,11,'2D10','Malignant neoplasms of thyroid gland','Y','2025-10-23 00:00:00'),(90646,11,'2C27.Z','Malignant neoplasms of thymus, unspecified','Y','2025-10-23 00:00:00'),(90645,11,'2C27','Malignant neoplasms of thymus','Y','2025-10-23 00:00:00'),(90644,11,'2C26.Z','Malignant neoplasms of the pleura, unspecified','Y','2025-10-23 00:00:00'),(90643,11,'2C26','Malignant neoplasms of the pleura','Y','2025-10-23 00:00:00'),(90642,11,'2C80.Z','Malignant neoplasms of testis, unspecified','Y','2025-10-23 00:00:00'),(90641,11,'2C80','Malignant neoplasms of testis','Y','2025-10-23 00:00:00'),(90640,11,'2C23.2','Malignant neoplasms of supraglottis of larynx','Y','2025-10-23 00:00:00'),(90639,11,'2B68.Z','Malignant neoplasms of submandibular or sublingual glands, unspecified','Y','2025-10-23 00:00:00'),(90638,11,'2B68','Malignant neoplasms of submandibular or sublingual glands','Y','2025-10-23 00:00:00'),(90637,11,'2C23.3','Malignant neoplasms of subglottis of larynx','Y','2025-10-23 00:00:00'),(90636,11,'2B72.Z','Malignant neoplasms of stomach, unspecified','Y','2025-10-23 00:00:00'),(90635,11,'2B72','Malignant neoplasms of stomach','Y','2025-10-23 00:00:00'),(90634,11,'2B80.Z','Malignant neoplasms of small intestine, unspecified','Y','2025-10-23 00:00:00'),(90633,11,'2B80.2','Malignant neoplasms of small intestine, site unspecified','Y','2025-10-23 00:00:00'),(90632,11,'2B80','Malignant neoplasms of small intestine','Y','2025-10-23 00:00:00'),(90631,11,'2C83.Z','Malignant neoplasms of scrotum, unspecified','Y','2025-10-23 00:00:00'),(90630,11,'2C83','Malignant neoplasms of scrotum','Y','2025-10-23 00:00:00'),(90629,11,'2C50.Z','Malignant neoplasms of retroperitoneum, unspecified','Y','2025-10-23 00:00:00'),(90628,11,'2C5Z','Malignant neoplasms of retroperitoneum, peritoneum or omentum, unspecified','Y','2025-10-23 00:00:00'),(90627,11,'2C50','Malignant neoplasms of retroperitoneum','Y','2025-10-23 00:00:00'),(90626,11,'2C91.Z','Malignant neoplasms of renal pelvis, unspecified','Y','2025-10-23 00:00:00'),(90625,11,'2C91','Malignant neoplasms of renal pelvis','Y','2025-10-23 00:00:00'),(90624,11,'2B92.Z','Malignant neoplasms of rectum, unspecified','Y','2025-10-23 00:00:00'),(90623,11,'2B92','Malignant neoplasms of rectum','Y','2025-10-23 00:00:00'),(90622,11,'2B91.Z','Malignant neoplasms of rectosigmoid junction, unspecified','Y','2025-10-23 00:00:00'),(90621,11,'2B91','Malignant neoplasms of rectosigmoid junction','Y','2025-10-23 00:00:00'),(90620,11,'2C14.Z','Malignant neoplasms of proximal biliary tract, cystic duct, unspecified','Y','2025-10-23 00:00:00'),(90619,11,'2C14','Malignant neoplasms of proximal biliary tract, cystic duct','Y','2025-10-23 00:00:00'),(90618,11,'2C82.Z','Malignant neoplasms of prostate, unspecified','Y','2025-10-23 00:00:00'),(90617,11,'2C82','Malignant neoplasms of prostate','Y','2025-10-23 00:00:00'),(90615,11,'2C75','Malignant neoplasms of placenta','Y','2025-10-23 00:00:00'),(90616,11,'2C75.Z','Malignant neoplasms of placenta, unspecified','Y','2025-10-23 00:00:00'),(90614,11,'2B6C.Z','Malignant neoplasms of piriform sinus, unspecified','Y','2025-10-23 00:00:00'),(90613,11,'2B6C','Malignant neoplasms of piriform sinus','Y','2025-10-23 00:00:00'),(90612,11,'2B6B.2','Malignant neoplasms of pharyngeal tonsil','Y','2025-10-23 00:00:00'),(90611,11,'2C51.Z','Malignant neoplasms of peritoneum, unspecified','Y','2025-10-23 00:00:00'),(90610,11,'2C51','Malignant neoplasms of peritoneum','Y','2025-10-23 00:00:00'),(90609,11,'2C4Z','Malignant neoplasms of peripheral nerves or autonomic nervous system, unspecified','Y','2025-10-23 00:00:00'),(90608,11,'2C18.Z','Malignant neoplasms of perihilar bile duct, unspecified','Y','2025-10-23 00:00:00'),(90607,11,'2C18','Malignant neoplasms of perihilar bile duct','Y','2025-10-23 00:00:00'),(90606,11,'2C81.Z','Malignant neoplasms of penis, unspecified','Y','2025-10-23 00:00:00'),(90605,11,'2C81','Malignant neoplasms of penis','Y','2025-10-23 00:00:00'),(90604,11,'2B67.Z','Malignant neoplasms of parotid gland, unspecified','Y','2025-10-23 00:00:00'),(90603,11,'2B67','Malignant neoplasms of parotid gland','Y','2025-10-23 00:00:00'),(90601,11,'2B65','Malignant neoplasms of palate','Y','2025-10-23 00:00:00'),(90602,11,'2B65.Z','Malignant neoplasms of palate, unspecified','Y','2025-10-23 00:00:00'),(90600,11,'2C73.Z','Malignant neoplasms of ovary, unspecified','Y','2025-10-23 00:00:00'),(90599,11,'2C73','Malignant neoplasms of ovary','Y','2025-10-23 00:00:00'),(90598,11,'2C84','Malignant neoplasms of other specified male genital organs','Y','2025-10-23 00:00:00'),(90597,11,'2B62.Z','Malignant neoplasms of other or unspecified parts of tongue, unspecified','Y','2025-10-23 00:00:00'),(90596,11,'2B62','Malignant neoplasms of other or unspecified parts of tongue','Y','2025-10-23 00:00:00'),(90595,11,'2B66.Z','Malignant neoplasms of other or unspecified parts of mouth, unspecified','Y','2025-10-23 00:00:00'),(90594,11,'2B66','Malignant neoplasms of other or unspecified parts of mouth','Y','2025-10-23 00:00:00'),(90593,11,'2C17.Z','Malignant neoplasms of other or unspecified parts of biliary tract, unspecified','Y','2025-10-23 00:00:00'),(90592,11,'2C17','Malignant neoplasms of other or unspecified parts of biliary tract','Y','2025-10-23 00:00:00'),(90591,11,'2C29.Z','Malignant neoplasms of other or ill-defined sites in the respiratory system or intrathoracic organs, unspecified','Y','2025-10-23 00:00:00'),(90590,11,'2C29','Malignant neoplasms of other or ill-defined sites in the respiratory system or intrathoracic organs','Y','2025-10-23 00:00:00'),(90589,11,'2B6E.Z','Malignant neoplasms of other or ill-defined sites in the lip, oral cavity or pharynx, unspecified','Y','2025-10-23 00:00:00'),(90588,11,'2B6E','Malignant neoplasms of other or ill-defined sites in the lip, oral cavity or pharynx','Y','2025-10-23 00:00:00'),(90587,11,'2C11.Z','Malignant neoplasms of other or ill-defined digestive organs, unspecified','Y','2025-10-23 00:00:00'),(90586,11,'2C11','Malignant neoplasms of other or ill-defined digestive organs','Y','2025-10-23 00:00:00'),(90585,11,'2D12.Z','Malignant neoplasms of other endocrine glands or related structures, unspecified','Y','2025-10-23 00:00:00'),(90584,11,'2D12','Malignant neoplasms of other endocrine glands or related structures','Y','2025-10-23 00:00:00'),(90583,11,'2B6A.Z','Malignant neoplasms of oropharynx, unspecified','Y','2025-10-23 00:00:00'),(90582,11,'2B6A','Malignant neoplasms of oropharynx','Y','2025-10-23 00:00:00'),(90581,11,'2C52.Z','Malignant neoplasms of omentum, unspecified','Y','2025-10-23 00:00:00'),(90580,11,'2C52','Malignant neoplasms of omentum','Y','2025-10-23 00:00:00'),(90579,11,'2B70.Z','Malignant neoplasms of oesophagus, unspecified','Y','2025-10-23 00:00:00'),(90578,11,'2B70','Malignant neoplasms of oesophagus','Y','2025-10-23 00:00:00'),(90577,11,'2B71.Z','Malignant neoplasms of oesophagogastric junction, unspecified','Y','2025-10-23 00:00:00'),(90576,11,'2B71','Malignant neoplasms of oesophagogastric junction','Y','2025-10-23 00:00:00'),(90575,11,'2B6B.Z','Malignant neoplasms of nasopharynx, unspecified','Y','2025-10-23 00:00:00'),(90574,11,'2B6B','Malignant neoplasms of nasopharynx','Y','2025-10-23 00:00:00'),(90573,11,'2C20.Z','Malignant neoplasms of nasal cavity, unspecified','Y','2025-10-23 00:00:00'),(90572,11,'2C20','Malignant neoplasms of nasal cavity','Y','2025-10-23 00:00:00'),(90571,11,'2C21.Z','Malignant neoplasms of middle ear, unspecified','Y','2025-10-23 00:00:00'),(90570,11,'2C2Z','Malignant neoplasms of middle ear, respiratory or intrathoracic organs, unspecified','Y','2025-10-23 00:00:00'),(90569,11,'2C21','Malignant neoplasms of middle ear','Y','2025-10-23 00:00:00'),(90568,11,'2C8Z','Malignant neoplasms of male genital organs, unspecified','Y','2025-10-23 00:00:00'),(90567,11,'2C12.Z','Malignant neoplasms of liver or intrahepatic bile ducts, unspecified','Y','2025-10-23 00:00:00'),(90566,11,'2C12','Malignant neoplasms of liver or intrahepatic bile ducts','Y','2025-10-23 00:00:00'),(90565,11,'2B60.Z','Malignant neoplasms of lip, unspecified','Y','2025-10-23 00:00:00'),(90564,11,'2B6Z','Malignant neoplasms of lip, oral cavity or pharynx, unspecified','Y','2025-10-23 00:00:00'),(90563,11,'2B60','Malignant neoplasms of lip','Y','2025-10-23 00:00:00'),(90562,11,'2B62.1','Malignant neoplasms of lingual tonsil','Y','2025-10-23 00:00:00'),(90561,11,'2C23.Z','Malignant neoplasms of larynx, unspecified','Y','2025-10-23 00:00:00'),(90560,11,'2C23','Malignant neoplasms of larynx','Y','2025-10-23 00:00:00'),(90559,11,'2B93','Malignant neoplasms of large intestine, site unspecified','Y','2025-10-23 00:00:00'),(90558,11,'2B93.Z','Malignant neoplasms of large intestine, site and type unspecified','Y','2025-10-23 00:00:00'),(90557,11,'2C90.Z','Malignant neoplasms of kidney, except renal pelvis, unspecified','Y','2025-10-23 00:00:00'),(90556,11,'2C90','Malignant neoplasms of kidney, except renal pelvis','Y','2025-10-23 00:00:00'),(90555,11,'2B80.1Z','Malignant neoplasms of jejunum or ileum, unspecified','Y','2025-10-23 00:00:00'),(90554,11,'2B80.1','Malignant neoplasms of jejunum or ileum','Y','2025-10-23 00:00:00'),(90553,11,'2C0Z','Malignant neoplasms of intestine, unspecified','Y','2025-10-23 00:00:00'),(90552,11,'2D43','Malignant neoplasms of independent, multiple primary sites','Y','2025-10-23 00:00:00'),(90551,11,'2D42','Malignant neoplasms of ill-defined sites','Y','2025-10-23 00:00:00'),(90550,11,'2B6D.Z','Malignant neoplasms of hypopharynx, unspecified','Y','2025-10-23 00:00:00'),(90549,11,'2B6D','Malignant neoplasms of hypopharynx','Y','2025-10-23 00:00:00'),(90548,11,'2C28.Z','Malignant neoplasms of heart, mediastinum or non-mesothelioma of pleura, unspecified','Y','2025-10-23 00:00:00'),(90547,11,'2C28','Malignant neoplasms of heart, mediastinum or non-mesothelioma of pleura','Y','2025-10-23 00:00:00'),(90546,11,'2B63.Z','Malignant neoplasms of gum, unspecified','Y','2025-10-23 00:00:00'),(90545,11,'2B63','Malignant neoplasms of gum','Y','2025-10-23 00:00:00'),(90544,11,'2C23.1','Malignant neoplasms of glottis of larynx','Y','2025-10-23 00:00:00'),(90543,11,'2C13.Z','Malignant neoplasms of gallbladder, unspecified','Y','2025-10-23 00:00:00'),(90542,11,'2C13','Malignant neoplasms of gallbladder','Y','2025-10-23 00:00:00'),(90541,11,'2B64.Z','Malignant neoplasms of floor of mouth, unspecified','Y','2025-10-23 00:00:00'),(90540,11,'2B64','Malignant neoplasms of floor of mouth','Y','2025-10-23 00:00:00'),(90539,11,'2C7Z','Malignant neoplasms of female genital organs, unspecified','Y','2025-10-23 00:00:00'),(90538,11,'2C74.Z','Malignant neoplasms of fallopian tube, unspecified','Y','2025-10-23 00:00:00'),(90537,11,'2C74','Malignant neoplasms of fallopian tube','Y','2025-10-23 00:00:00'),(90536,11,'2D0Z','Malignant neoplasms of eye or ocular adnexa, unspecified','Y','2025-10-23 00:00:00'),(90535,11,'2D1Z','Malignant neoplasms of endocrine glands, unspecified','Y','2025-10-23 00:00:00'),(90534,11,'2B80.0Z','Malignant neoplasms of duodenum, unspecified','Y','2025-10-23 00:00:00'),(90533,11,'2B80.0','Malignant neoplasms of duodenum','Y','2025-10-23 00:00:00'),(90532,11,'2C1Z','Malignant neoplasms of digestive organs, unspecified','Y','2025-10-23 00:00:00'),(90531,11,'2C76.Z','Malignant neoplasms of corpus uteri, unspecified','Y','2025-10-23 00:00:00'),(90530,11,'2C76','Malignant neoplasms of corpus uteri','Y','2025-10-23 00:00:00'),(90529,11,'2B90.Z','Malignant neoplasms of colon, unspecified','Y','2025-10-23 00:00:00'),(90528,11,'2B90','Malignant neoplasms of colon','Y','2025-10-23 00:00:00'),(90527,11,'2C77.Z','Malignant neoplasms of cervix uteri, unspecified','Y','2025-10-23 00:00:00'),(90526,11,'2C77','Malignant neoplasms of cervix uteri','Y','2025-10-23 00:00:00'),(90525,11,'2C25.Z','Malignant neoplasms of bronchus or lung, unspecified','Y','2025-10-23 00:00:00'),(90524,11,'2C25','Malignant neoplasms of bronchus or lung','Y','2025-10-23 00:00:00'),(90523,11,'2C6Z','Malignant neoplasms of breast, unspecified','Y','2025-10-23 00:00:00'),(90521,11,'2C94','Malignant neoplasms of bladder','Y','2025-10-23 00:00:00'),(90522,11,'2C94.Z','Malignant neoplasms of bladder, unspecified','Y','2025-10-23 00:00:00'),(90520,11,'2C15.Z','Malignant neoplasms of biliary tract, distal bile duct, unspecified','Y','2025-10-23 00:00:00'),(90519,11,'2C15','Malignant neoplasms of biliary tract, distal bile duct','Y','2025-10-23 00:00:00'),(90518,11,'2B61.Z','Malignant neoplasms of base of tongue, unspecified','Y','2025-10-23 00:00:00'),(90517,11,'2B61','Malignant neoplasms of base of tongue','Y','2025-10-23 00:00:00'),(90516,11,'2B81.Z','Malignant neoplasms of appendix, unspecified','Y','2025-10-23 00:00:00'),(90515,11,'2B81','Malignant neoplasms of appendix','Y','2025-10-23 00:00:00'),(90514,11,'2C00.Z','Malignant neoplasms of anus or anal canal, unspecified','Y','2025-10-23 00:00:00'),(90513,11,'2C00','Malignant neoplasms of anus or anal canal','Y','2025-10-23 00:00:00'),(90512,11,'2C16.Z','Malignant neoplasms of ampulla of Vater, unspecified','Y','2025-10-23 00:00:00'),(90511,11,'2C16','Malignant neoplasms of ampulla of Vater','Y','2025-10-23 00:00:00'),(90510,11,'2D11.Z','Malignant neoplasms of adrenal gland, unspecified','Y','2025-10-23 00:00:00'),(90509,11,'2D11','Malignant neoplasms of adrenal gland','Y','2025-10-23 00:00:00'),(90508,11,'2C22.Z','Malignant neoplasms of accessory sinuses, unspecified','Y','2025-10-23 00:00:00'),(90507,11,'2C22','Malignant neoplasms of accessory sinuses','Y','2025-10-23 00:00:00'),(90506,11,'2B90.2Z','Malignant neoplasm of transverse colon, unspecified','Y','2025-10-23 00:00:00'),(90505,11,'2B90.2','Malignant neoplasm of transverse colon','Y','2025-10-23 00:00:00'),(90504,11,'2A02.12','Malignant neoplasm of the optic nerve','Y','2025-10-23 00:00:00'),(90503,11,'2C3Z','Malignant neoplasm of skin of unknown or unspecified type','Y','2025-10-23 00:00:00'),(90502,11,'2B90.3Z','Malignant neoplasm of sigmoid colon, unspecified','Y','2025-10-23 00:00:00'),(90501,11,'2B90.3','Malignant neoplasm of sigmoid colon','Y','2025-10-23 00:00:00'),(90500,11,'2D02.Z','Malignant neoplasm of retina, unspecified','Y','2025-10-23 00:00:00'),(90499,11,'2D02','Malignant neoplasm of retina','Y','2025-10-23 00:00:00'),(90498,11,'2B6B.2Z','Malignant neoplasm of pharyngeal tonsil without mention of type','Y','2025-10-23 00:00:00'),(90497,11,'2C10.Z','Malignant neoplasm of pancreas, unspecified','Y','2025-10-23 00:00:00'),(90496,11,'2C10','Malignant neoplasm of pancreas','Y','2025-10-23 00:00:00'),(90495,11,'2C23.5','Malignant neoplasm of overlapping lesion of larynx','Y','2025-10-23 00:00:00'),(90494,11,'2D04','Malignant neoplasm of orbit','Y','2025-10-23 00:00:00'),(90493,11,'2C12.0','Malignant neoplasm of liver','Y','2025-10-23 00:00:00'),(90492,11,'2C23.4','Malignant neoplasm of laryngeal cartilage','Y','2025-10-23 00:00:00'),(90491,11,'2D03.Z','Malignant neoplasm of lacrimal apparatus, unspecified','Y','2025-10-23 00:00:00'),(90490,11,'2D03','Malignant neoplasm of lacrimal apparatus','Y','2025-10-23 00:00:00'),(90489,11,'2D07.Z','Malignant neoplasm of iris, unspecified','Y','2025-10-23 00:00:00'),(90488,11,'2D07','Malignant neoplasm of iris','Y','2025-10-23 00:00:00'),(90487,11,'2C12.1','Malignant neoplasm of intrahepatic bile ducts','Y','2025-10-23 00:00:00'),(90486,11,'2B90.1Z','Malignant neoplasm of descending colon and splenic flexure of colon, unspecified','Y','2025-10-23 00:00:00'),(90485,11,'2B90.1','Malignant neoplasm of descending colon and splenic flexure of colon','Y','2025-10-23 00:00:00'),(90484,11,'2D01.Z','Malignant neoplasm of cornea, unspecified','Y','2025-10-23 00:00:00'),(90483,11,'2D01','Malignant neoplasm of cornea','Y','2025-10-23 00:00:00'),(90482,11,'2D00.Z','Malignant neoplasm of conjunctiva, unspecified','Y','2025-10-23 00:00:00'),(90481,11,'2D00','Malignant neoplasm of conjunctiva','Y','2025-10-23 00:00:00'),(90480,11,'2D06.Z','Malignant neoplasm of ciliary body, unspecified','Y','2025-10-23 00:00:00'),(90479,11,'2D06','Malignant neoplasm of ciliary body','Y','2025-10-23 00:00:00'),(90477,11,'2D05','Malignant neoplasm of choroid','Y','2025-10-23 00:00:00'),(90478,11,'2D05.Z','Malignant neoplasm of choroid, unspecified','Y','2025-10-23 00:00:00'),(90476,11,'2D00.1','Malignant neoplasm of caruncle','Y','2025-10-23 00:00:00'),(90475,11,'2B90.0Z','Malignant neoplasm of ascending colon and right flexure of colon, unspecified','Y','2025-10-23 00:00:00'),(90474,11,'2B90.0','Malignant neoplasm of ascending colon and right flexure of colon','Y','2025-10-23 00:00:00'),(90473,11,'2E2Z','Malignant neoplasm metastasis, unspecified','Y','2025-10-23 00:00:00'),(90472,11,'2D73','Malignant neoplasm metastasis in upper respiratory tract organs','Y','2025-10-23 00:00:00'),(90471,11,'2D8Z','Malignant neoplasm metastasis in unspecified digestive system organ','Y','2025-10-23 00:00:00'),(90470,11,'2D7Z','Malignant neoplasm metastasis in thoracic or respiratory organs, unspecified','Y','2025-10-23 00:00:00'),(90469,11,'2D84','Malignant neoplasm metastasis in the small intestine','Y','2025-10-23 00:00:00'),(90468,11,'2D52','Malignant neoplasm metastasis in spinal cord, cranial nerves or remaining parts of central nervous system','Y','2025-10-23 00:00:00'),(90467,11,'2E04','Malignant neoplasm metastasis in soft tissue','Y','2025-10-23 00:00:00'),(90466,11,'2D90','Malignant neoplasm metastasis in retroperitoneum','Y','2025-10-23 00:00:00'),(90465,11,'2D72','Malignant neoplasm metastasis in pleura','Y','2025-10-23 00:00:00'),(90464,11,'2D91','Malignant neoplasm metastasis in peritoneum','Y','2025-10-23 00:00:00'),(90463,11,'2E09','Malignant neoplasm metastasis in peripheral nervous system','Y','2025-10-23 00:00:00'),(90462,11,'2D81','Malignant neoplasm metastasis in pancreas','Y','2025-10-23 00:00:00'),(90461,11,'2E05.0','Malignant neoplasm metastasis in ovary','Y','2025-10-23 00:00:00'),(90460,11,'2D7Y','Malignant neoplasm metastasis in other specified thoracic organs','Y','2025-10-23 00:00:00'),(90459,11,'2E0Y','Malignant neoplasm metastasis in other specified sites','Y','2025-10-23 00:00:00'),(90458,11,'2D8Y','Malignant neoplasm metastasis in other specified digestive system organ','Y','2025-10-23 00:00:00'),(90457,11,'2E02','Malignant neoplasm metastasis in other or unspecified urinary system organs','Y','2025-10-23 00:00:00'),(90456,11,'2E05.Y','Malignant neoplasm metastasis in other female reproductive system organs','Y','2025-10-23 00:00:00'),(90455,11,'2D51','Malignant neoplasm metastasis in meninges','Y','2025-10-23 00:00:00'),(90454,11,'2D71','Malignant neoplasm metastasis in mediastinum','Y','2025-10-23 00:00:00'),(90453,11,'2E06','Malignant neoplasm metastasis in male genital organs','Y','2025-10-23 00:00:00'),(90452,11,'2D60.0','Malignant neoplasm metastasis in lymph nodes of head, face or neck','Y','2025-10-23 00:00:00'),(90451,11,'2D60.Z','Malignant neoplasm metastasis in lymph node of a single region, unspecified','Y','2025-10-23 00:00:00'),(90449,11,'2D70','Malignant neoplasm metastasis in lung','Y','2025-10-23 00:00:00'),(90450,11,'2D60','Malignant neoplasm metastasis in lymph node of a single region','Y','2025-10-23 00:00:00'),(90448,11,'2D80','Malignant neoplasm metastasis in liver or intrahepatic bile duct','Y','2025-10-23 00:00:00'),(90447,11,'2D80.0','Malignant neoplasm metastasis in liver','Y','2025-10-23 00:00:00'),(90446,11,'2D85','Malignant neoplasm metastasis in large intestine','Y','2025-10-23 00:00:00'),(90445,11,'2E00','Malignant neoplasm metastasis in kidney or renal pelvis','Y','2025-10-23 00:00:00'),(90444,11,'2D60.1','Malignant neoplasm metastasis in intrathoracic lymph nodes','Y','2025-10-23 00:00:00'),(90443,11,'2D60.5','Malignant neoplasm metastasis in intrapelvic lymph nodes','Y','2025-10-23 00:00:00'),(90442,11,'2D80.1','Malignant neoplasm metastasis in intrahepatic bile duct','Y','2025-10-23 00:00:00'),(90441,11,'2D60.2','Malignant neoplasm metastasis in intra-abdominal lymph nodes','Y','2025-10-23 00:00:00'),(90440,11,'2D60.4','Malignant neoplasm metastasis in inguinal lymph nodes','Y','2025-10-23 00:00:00'),(90439,11,'2E05.Z','Malignant neoplasm metastasis in female reproductive system, unspecified','Y','2025-10-23 00:00:00'),(90438,11,'2E05','Malignant neoplasm metastasis in female reproductive system','Y','2025-10-23 00:00:00'),(90437,11,'2D82','Malignant neoplasm metastasis in extrahepatic bile ducts','Y','2025-10-23 00:00:00'),(90436,11,'2D50','Malignant neoplasm metastasis in brain','Y','2025-10-23 00:00:00'),(90435,11,'2E03','Malignant neoplasm metastasis in bone or bone marrow','Y','2025-10-23 00:00:00'),(90434,11,'2E01','Malignant neoplasm metastasis in bladder','Y','2025-10-23 00:00:00'),(90433,11,'2D60.3','Malignant neoplasm metastasis in axillary lymph nodes','Y','2025-10-23 00:00:00'),(90432,11,'2D86','Malignant neoplasm metastasis in anus','Y','2025-10-23 00:00:00'),(90431,11,'2D83','Malignant neoplasm metastasis in ampulla of Vater','Y','2025-10-23 00:00:00'),(90430,11,'2E07','Malignant neoplasm metastasis in adrenal gland','Y','2025-10-23 00:00:00'),(90429,11,'2D61','Malignant neoplasm metastases in lymph nodes of multiple regions','Y','2025-10-23 00:00:00'),(90428,11,'2C95.Z','Malignant neoplasm involving overlapping sites of urinary organs, unspecified','Y','2025-10-23 00:00:00'),(90427,11,'2C95','Malignant neoplasm involving overlapping sites of urinary organs','Y','2025-10-23 00:00:00'),(90426,11,'2C53.Z','Malignant neoplasm involving overlapping sites of retroperitoneum, peritoneum or omentum, unspecified','Y','2025-10-23 00:00:00'),(90425,11,'2C53','Malignant neoplasm involving overlapping sites of retroperitoneum, peritoneum or omentum','Y','2025-10-23 00:00:00'),(90424,11,'2C79','Malignant neoplasm involving overlapping sites of female genital organs','Y','2025-10-23 00:00:00'),(90423,11,'XH9C82','Malignant neoplasm arising from pre-existing spiradenoma','Y','2025-10-23 00:00:00'),(90422,11,'XH9NW9','Malignant neoplasm arising from pre-existing spiradenocylindroma','Y','2025-10-23 00:00:00'),(90421,11,'XH2ZK9','Malignant neoplasm arising from pre-existing cylindroma','Y','2025-10-23 00:00:00'),(90420,11,'2B5D.Z','Malignant mixed epithelial mesenchymal tumour, unspecified primary site','Y','2025-10-23 00:00:00'),(90419,11,'2B5D','Malignant mixed epithelial mesenchymal tumour, primary site','Y','2025-10-23 00:00:00'),(90418,11,'2B5D.Y','Malignant mixed epithelial mesenchymal tumour, other specified primary site','Y','2025-10-23 00:00:00'),(90417,11,'2B5D.0','Malignant mixed epithelial mesenchymal tumour of ovary','Y','2025-10-23 00:00:00'),(90416,11,'2B5D.1','Malignant mixed epithelial and mesenchymal tumour of corpus uteri','Y','2025-10-23 00:00:00'),(90415,11,'2B5J','Malignant miscellaneous tumours of bone or articular cartilage of other or unspecified sites','Y','2025-10-23 00:00:00'),(90414,11,'2B5Z','Malignant mesenchymal neoplasm of unspecified type','Y','2025-10-23 00:00:00'),(90413,11,'XH6XP3','Malignant melanoma, regressing','Y','2025-10-23 00:00:00'),(90412,11,'XH4846','Malignant melanoma, NOS','Y','2025-10-23 00:00:00'),(90411,11,'XH5854','Malignant melanoma of soft parts','Y','2025-10-23 00:00:00'),(90410,11,'XH7L76','Malignant melanoma in precancerous melanosis','Y','2025-10-23 00:00:00'),(90409,11,'XH23B1','Malignant melanoma in junctional naevus','Y','2025-10-23 00:00:00'),(90408,11,'XH5L25','Malignant melanoma arising in giant congenital naevus','Y','2025-10-23 00:00:00'),(90407,11,'2D06.1','Malignant medulloepithelioma of ciliary body','Y','2025-10-23 00:00:00'),(90406,11,'XH2992','Malignant mastocytosis','Y','2025-10-23 00:00:00'),(90405,11,'XH2TN1','Malignant lymphoma, small cleaved cell, diffuse','Y','2025-10-23 00:00:00'),(90404,11,'XH9PT6','Malignant lymphoma, small cell, noncleaved, diffuse','Y','2025-10-23 00:00:00'),(90403,11,'XH9TT4','Malignant lymphoma, plasmacytoid','Y','2025-10-23 00:00:00'),(90402,11,'2B33.5','Malignant lymphoma, not elsewhere classified','Y','2025-10-23 00:00:00'),(90401,11,'XH5FJ5','Malignant lymphoma, NOS','Y','2025-10-23 00:00:00'),(90400,11,'XH50P3','Malignant lymphoma, non-Hodgkin, NOS','Y','2025-10-23 00:00:00'),(90399,11,'XH5WX8','Malignant lymphoma, non-cleaved cell, NOS','Y','2025-10-23 00:00:00'),(90398,11,'XH1J80','Malignant lymphoma, mixed small and large cell, diffuse','Y','2025-10-23 00:00:00'),(90397,11,'XH06Q4','Malignant lymphoma, lymphocytic, poorly differentiated, diffuse','Y','2025-10-23 00:00:00'),(90396,11,'XH1SK1','Malignant lymphoma, lymphocytic, intermediate differentiation, nodular','Y','2025-10-23 00:00:00'),(90395,11,'XH7Z25','Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS','Y','2025-10-23 00:00:00'),(90394,11,'XH8226','Malignant lymphoma, diffuse, NOS','Y','2025-10-23 00:00:00'),(90393,11,'XH1VQ1','Malignant lymphoma, centroblastic, NOS','Y','2025-10-23 00:00:00'),(90392,11,'XH9JY8','Malignant lymphoma, centroblastic, diffuse','Y','2025-10-23 00:00:00'),(90391,11,'2A86.0','Malignant lymphoma of B cell type, not elsewhere classified','Y','2025-10-23 00:00:00'),(90390,11,'8C78','Malignant hyperthermia or hyperpyrexia','Y','2025-10-23 00:00:00'),(90389,11,'NE86','Malignant hyperthermia due to anaesthesia','Y','2025-10-23 00:00:00'),(90388,11,'XH2WJ3','Malignant histiocytosis','Y','2025-10-23 00:00:00'),(90387,11,'2B33','Malignant haematopoietic neoplasms without further specification','Y','2025-10-23 00:00:00'),(90386,11,'XH84X1','Malignant giant cell tumour of soft parts','Y','2025-10-23 00:00:00'),(90385,11,'2C28.0','Malignant germ cell neoplasms of heart, mediastinum or non-mesothelioma of pleura','Y','2025-10-23 00:00:00'),(90384,11,'XH0947','Malignant fibrous histiocytoma','Y','2025-10-23 00:00:00'),(90383,11,'2C24.2','Malignant epithelial neoplasms of trachea, unspecified type','Y','2025-10-23 00:00:00'),(90382,11,'2D12.0','Malignant epithelial neoplasms of other endocrine glands or related structures, unspecified type','Y','2025-10-23 00:00:00'),(90381,11,'2B6B.1','Malignant epithelial neoplasms of nasopharynx, unspecified type','Y','2025-10-23 00:00:00'),(90380,11,'2C22.2','Malignant epithelial neoplasms of accessory sinuses, unspecified type','Y','2025-10-23 00:00:00'),(90379,11,'XH58E1','Malignant eccrine spiradenoma','Y','2025-10-23 00:00:00'),(90378,11,'XH9M31','Malignant cystic nephroma','Y','2025-10-23 00:00:00'),(90377,11,'XH64D5','Malignant chondroid syringoma','Y','2025-10-23 00:00:00'),(90376,11,'MG20.0','Malignant cachexia','Y','2025-10-23 00:00:00'),(90375,11,'GC74','Malfunction or complication of external stoma of urinary tract','Y','2025-10-23 00:00:00'),(90374,11,'DE12','Malfunction or complication of external stoma of digestive organs','Y','2025-10-23 00:00:00'),(90373,11,'GC76','Malfunction of the efferent segment of a continent urinary pouch','Y','2025-10-23 00:00:00'),(90372,11,'GC75','Malfunction of the afferent segment of a continent urinary pouch','Y','2025-10-23 00:00:00'),(90371,11,'LD2A.Z','Malformative disorders of sex development, unspecified','Y','2025-10-23 00:00:00'),(90369,11,'JA8A.1','Malformation of placenta','Y','2025-10-23 00:00:00'),(90370,11,'LD2A','Malformative disorders of sex development','Y','2025-10-23 00:00:00'),(90368,11,'LD54','Male with sex chromosome mosaicism','Y','2025-10-23 00:00:00'),(90367,11,'LD52.1','Male with double or multiple Y','Y','2025-10-23 00:00:00'),(90366,11,'LD52.0','Male with 46,XX karyotype','Y','2025-10-23 00:00:00'),(90365,11,'ED70.0','Male pattern hair loss','Y','2025-10-23 00:00:00'),(90364,11,'GB04.Z','Male infertility, unspecified','Y','2025-10-23 00:00:00'),(90362,11,'GB04','Male infertility','Y','2025-10-23 00:00:00'),(90363,11,'SB0C','Male Infertility disorder (TM1)','Y','2025-10-23 00:00:00'),(90361,11,'XA75A2','Male genital organs','Y','2025-10-23 00:00:00'),(90360,11,'XA2470','Male gamete','Y','2025-10-23 00:00:00'),(90359,11,'XM4SZ4','Male fern extract','Y','2025-10-23 00:00:00'),(90358,11,'XA1AK8','Male external genitalia','Y','2025-10-23 00:00:00'),(90357,11,'HA01.1Z','Male erectile dysfunction, unspecified','Y','2025-10-23 00:00:00'),(90356,11,'HA01.11','Male erectile dysfunction, lifelong, situational','Y','2025-10-23 00:00:00'),(90355,11,'HA01.10','Male erectile dysfunction, lifelong, generalised','Y','2025-10-23 00:00:00'),(90354,11,'HA01.13','Male erectile dysfunction, acquired, situational','Y','2025-10-23 00:00:00'),(90353,11,'HA01.12','Male erectile dysfunction, acquired, generalised','Y','2025-10-23 00:00:00'),(90352,11,'HA01.1','Male erectile dysfunction','Y','2025-10-23 00:00:00'),(90351,11,'HA03.0Z','Male early ejaculation, unspecified','Y','2025-10-23 00:00:00'),(90350,11,'HA03.01','Male early ejaculation, lifelong, situational','Y','2025-10-23 00:00:00'),(90349,11,'HA03.00','Male early ejaculation, lifelong, generalised','Y','2025-10-23 00:00:00'),(90348,11,'HA03.03','Male early ejaculation, acquired, situational','Y','2025-10-23 00:00:00'),(90347,11,'HA03.02','Male early ejaculation, acquired, generalised','Y','2025-10-23 00:00:00'),(90346,11,'HA03.0','Male early ejaculation','Y','2025-10-23 00:00:00'),(90345,11,'HA03.1Z','Male delayed ejaculation, unspecified','Y','2025-10-23 00:00:00'),(90344,11,'HA03.11','Male delayed ejaculation, lifelong, situational','Y','2025-10-23 00:00:00'),(90343,11,'HA03.10','Male delayed ejaculation, lifelong, generalised','Y','2025-10-23 00:00:00'),(90342,11,'HA03.13','Male delayed ejaculation, acquired, situational','Y','2025-10-23 00:00:00'),(90341,11,'HA03.12','Male delayed ejaculation, acquired, generalised','Y','2025-10-23 00:00:00'),(90340,11,'HA03.1','Male delayed ejaculation','Y','2025-10-23 00:00:00'),(90339,11,'XX2UQ8','Male','Y','2025-10-23 00:00:00'),(90338,11,'XM78S0','Malayan krait snake venom','Y','2025-10-23 00:00:00'),(90337,11,'XM0G23','Malathion insecticide','Y','2025-10-23 00:00:00'),(90336,11,'XM6QD7','Malathion (medicinal)','Y','2025-10-23 00:00:00'),(90335,11,'KA63.0','Malassezia infection in newborn','Y','2025-10-23 00:00:00'),(90334,11,'XN0TE','Malassezia globosa fungus','Y','2025-10-23 00:00:00'),(90333,11,'XN25C','Malassezia furfur','Y','2025-10-23 00:00:00'),(90332,11,'1F2D.1','Malassezia folliculitis','Y','2025-10-23 00:00:00'),(90331,11,'XN43L','Malassezia','Y','2025-10-23 00:00:00'),(90330,11,'1F4Z','Malaria, unspecified','Y','2025-10-23 00:00:00'),(90329,11,'1F45','Malaria without parasitological confirmation','Y','2025-10-23 00:00:00'),(90328,11,'1F41.Y','Malaria due to Plasmodium vivax with other complications','Y','2025-10-23 00:00:00'),(90327,11,'1F41','Malaria due to Plasmodium vivax','Y','2025-10-23 00:00:00'),(90326,11,'1F43','Malaria due to Plasmodium ovale','Y','2025-10-23 00:00:00'),(90325,11,'1F42.Y','Malaria due to Plasmodium malariae with other complications','Y','2025-10-23 00:00:00'),(90324,11,'1F42','Malaria due to Plasmodium malariae','Y','2025-10-23 00:00:00'),(90323,11,'1F40.Z','Malaria due to Plasmodium falciparum, unspecified','Y','2025-10-23 00:00:00'),(90322,11,'1F40','Malaria due to Plasmodium falciparum','Y','2025-10-23 00:00:00'),(90321,11,'JB63.60','Malaria complicating pregnancy, childbirth, or the puerperium','Y','2025-10-23 00:00:00'),(90320,11,'XA0M67','Malar region','Y','2025-10-23 00:00:00'),(90319,11,'XA57N0','Malar eminence','Y','2025-10-23 00:00:00'),(90318,11,'6E40.3','Maladaptive health behaviours affecting disorders or diseases classified elsewhere','Y','2025-10-23 00:00:00'),(90317,11,'DA96.02','Malabsorption or intolerance of specific nutrients','Y','2025-10-23 00:00:00'),(90315,11,'NB32.53','Major laceration of thoracic trachea','Y','2025-10-23 00:00:00'),(90316,11,'VW5Z','Major life areas, unspecified','Y','2025-10-23 00:00:00'),(90314,11,'NB30.01','Major laceration of thoracic aorta','Y','2025-10-23 00:00:00'),(90313,11,'NB30.21','Major laceration of superior vena cava','Y','2025-10-23 00:00:00'),(90312,11,'NB90.51','Major laceration of renal blood vessels','Y','2025-10-23 00:00:00'),(90311,11,'NB30.41','Major laceration of pulmonary blood vessels','Y','2025-10-23 00:00:00'),(90309,11,'NB90.31','Major laceration of mesenteric artery','Y','2025-10-23 00:00:00'),(90310,11,'NB90.41','Major laceration of portal or splenic vein','Y','2025-10-23 00:00:00'),(90308,11,'NB30.31','Major laceration of innominate or subclavian vein','Y','2025-10-23 00:00:00'),(90307,11,'NB30.11','Major laceration of innominate or subclavian artery','Y','2025-10-23 00:00:00'),(90306,11,'NB90.11','Major laceration of inferior vena cava','Y','2025-10-23 00:00:00'),(90305,11,'NB90.61','Major laceration of iliac blood vessels','Y','2025-10-23 00:00:00'),(90304,11,'NB31.03','Major laceration of heart with haemopericardium','Y','2025-10-23 00:00:00'),(90303,11,'NB90.21','Major laceration of coeliac artery','Y','2025-10-23 00:00:00'),(90302,11,'NB32.43','Major laceration of bronchus','Y','2025-10-23 00:00:00'),(90301,11,'NB90.01','Major laceration of abdominal aorta','Y','2025-10-23 00:00:00'),(90300,11,'4A01.12','Major histocompatibility complex class II deficiency','Y','2025-10-23 00:00:00'),(90299,11,'4A01.11','Major histocompatibility complex class I deficiency','Y','2025-10-23 00:00:00'),(90298,11,'DA0E.0Z','Major anomalies of jaw size, unspecified','Y','2025-10-23 00:00:00'),(90297,11,'DA0E.0','Major anomalies of jaw size','Y','2025-10-23 00:00:00'),(90296,11,'XE6LZ','Maintenance problem with device identified','Y','2025-10-23 00:00:00'),(90295,11,'XE843','Maintenance of manufacturing machinery problem with device identified','Y','2025-10-23 00:00:00'),(90294,11,'VD10','Maintaining a standing position [WHODAS]','Y','2025-10-23 00:00:00'),(90293,11,'VW10','Maintaining a standing position','Y','2025-10-23 00:00:00'),(90292,11,'XE99N','Mains gas, water, sewerage, steam, hot water, electricity','Y','2025-10-23 00:00:00'),(90291,11,'XY7B','Main resource condition','Y','2025-10-23 00:00:00'),(90290,11,'SG2Z','Main Meridian Patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(90289,11,'XY0Y','Main condition','Y','2025-10-23 00:00:00'),(90287,11,'XH1BE4','Magnocellular naevus','Y','2025-10-23 00:00:00'),(90288,11,'XA9TC5','Main bronchus','Y','2025-10-23 00:00:00'),(90286,11,'XE6YW','Magnetically-induced movement of device identified','Y','2025-10-23 00:00:00'),(90285,11,'XM05Z9','Magnetic resonance imaging contrast media','Y','2025-10-23 00:00:00'),(90284,11,'XE4BN','Magnet component of medical device','Y','2025-10-23 00:00:00'),(90283,11,'XM8L43','Magnesium trisilicate','Y','2025-10-23 00:00:00'),(90282,11,'XM7046','Magnesium thiosulfate','Y','2025-10-23 00:00:00'),(90281,11,'XM6EC7','Magnesium sulfate','Y','2025-10-23 00:00:00'),(90280,11,'XM5VT1','Magnesium silicofluoride','Y','2025-10-23 00:00:00'),(90279,11,'XM6M40','Magnesium salicylate','Y','2025-10-23 00:00:00'),(90278,11,'XM10P8','Magnesium pyridoxal 5-phosphate glutamate','Y','2025-10-23 00:00:00'),(90277,11,'XM9GU6','Magnesium pidolate','Y','2025-10-23 00:00:00'),(90276,11,'XM6NV5','Magnesium phosphate','Y','2025-10-23 00:00:00'),(90275,11,'XM3CD3','Magnesium peroxide','Y','2025-10-23 00:00:00'),(90274,11,'XM7G33','Magnesium oxide','Y','2025-10-23 00:00:00'),(90273,11,'XM8P82','Magnesium orotate','Y','2025-10-23 00:00:00'),(90272,11,'XM8W21','Magnesium levulinate','Y','2025-10-23 00:00:00'),(90271,11,'XM3U21','Magnesium lactate','Y','2025-10-23 00:00:00'),(90269,11,'XM1AU1','Magnesium gluconate','Y','2025-10-23 00:00:00'),(90270,11,'XM39M3','Magnesium hydroxide','Y','2025-10-23 00:00:00'),(90268,11,'XM7GM7','Magnesium compounds','Y','2025-10-23 00:00:00'),(90267,11,'XM7KF0','Magnesium citrate','Y','2025-10-23 00:00:00'),(90266,11,'XM03Q8','Magnesium chloride','Y','2025-10-23 00:00:00'),(90264,11,'XM2U66','Magnesium aspartate','Y','2025-10-23 00:00:00'),(90265,11,'XM7V20','Magnesium carbonate','Y','2025-10-23 00:00:00'),(90263,11,'XM5TD2','Magnesium','Y','2025-10-23 00:00:00'),(90262,11,'XM6YR9','Magnesia magma','Y','2025-10-23 00:00:00'),(90261,11,'XM79N5','Magic mushroom','Y','2025-10-23 00:00:00'),(90259,11,'XM5R16','Magaldrate','Y','2025-10-23 00:00:00'),(90260,11,'XE17E','Magazine or cassette component of medical device','Y','2025-10-23 00:00:00'),(90257,11,'8B60.7','Madras type motor neuron disease','Y','2025-10-23 00:00:00'),(90258,11,'XM5MZ8','Mafenide','Y','2025-10-23 00:00:00'),(90255,11,'9A04.1','Madarosis of eyelid or periocular area','Y','2025-10-23 00:00:00'),(90256,11,'LB90.4','Madelung deformity','Y','2025-10-23 00:00:00'),(90254,11,'9B75.3','Macular telangiectasia','Y','2025-10-23 00:00:00'),(90253,11,'9B75.Z','Macular disorders, unspecified','Y','2025-10-23 00:00:00'),(90252,11,'9B75','Macular disorders','Y','2025-10-23 00:00:00'),(90250,11,'LA21.0','Macrotia','Y','2025-10-23 00:00:00'),(90251,11,'XA9V06','Macula lutea','Y','2025-10-23 00:00:00'),(90249,11,'LA31.3','Macrostomia','Y','2025-10-23 00:00:00'),(90248,11,'MF50.40','Macroscopic haematuria','Y','2025-10-23 00:00:00'),(90247,11,'MF54.Z','Macroscopic changes of size of the kidney, unspecified','Y','2025-10-23 00:00:00'),(90245,11,'XA9DP6','Macrophages','Y','2025-10-23 00:00:00'),(90246,11,'MF54','Macroscopic changes of size of the kidney','Y','2025-10-23 00:00:00'),(90244,11,'MG50.A3','Macrolides resistant Shigella','Y','2025-10-23 00:00:00'),(90243,11,'MG50.61','Macrolide resistant Neisseria gonorrhoeae','Y','2025-10-23 00:00:00'),(90242,11,'XM6R95','Macrolide anabolic drug','Y','2025-10-23 00:00:00'),(90241,11,'XM6FQ8','Macrogol','Y','2025-10-23 00:00:00'),(90240,11,'DA03.5','Macroglossia','Y','2025-10-23 00:00:00'),(90239,11,'XH19E3','Macrofollicular adenoma','Y','2025-10-23 00:00:00'),(90238,11,'LB97.1','Macrodactyly of toes','Y','2025-10-23 00:00:00'),(90237,11,'LB97.0','Macrodactyly of fingers','Y','2025-10-23 00:00:00'),(90236,11,'LA90.10','Macrocystic lymphatic malformation','Y','2025-10-23 00:00:00'),(90235,11,'LA53','Macrocheilia','Y','2025-10-23 00:00:00'),(90234,11,'LB70.3','Macrocephaly','Y','2025-10-23 00:00:00'),(90233,11,'BC81.2Z','Macro reentrant atrial tachycardia, unspecified','Y','2025-10-23 00:00:00'),(90232,11,'BC81.2','Macro reentrant atrial tachycardia','Y','2025-10-23 00:00:00'),(90231,11,'CA21.0','MacLeod syndrome','Y','2025-10-23 00:00:00'),(90230,11,'XM21T1','Macitentan','Y','2025-10-23 00:00:00'),(90228,11,'XN2BW','Maciel virus','Y','2025-10-23 00:00:00'),(90229,11,'XM5AM6','Macimorelin','Y','2025-10-23 00:00:00'),(90227,11,'XN45B','Machupo virus','Y','2025-10-23 00:00:00'),(90226,11,'XE6TZ','Machinery or fixed plant','Y','2025-10-23 00:00:00'),(90225,11,'XM3RL0','Mace lacrimogenic gas','Y','2025-10-23 00:00:00'),(90224,11,'XM2D09','Lytta (vitatta)','Y','2025-10-23 00:00:00'),(90223,11,'XN33B','Lyssavirus','Y','2025-10-23 00:00:00'),(90222,11,'XM60K5','Lysozyme','Y','2025-10-23 00:00:00'),(90221,11,'5C56.Z','Lysosomal diseases, unspecified','Y','2025-10-23 00:00:00'),(90220,11,'5C56','Lysosomal diseases','Y','2025-10-23 00:00:00'),(90219,11,'XM44Y2','Lysine','Y','2025-10-23 00:00:00'),(90218,11,'XM9CL3','Lysergic acid amide','Y','2025-10-23 00:00:00'),(90217,11,'XM3GU1','Lypressin','Y','2025-10-23 00:00:00'),(90216,11,'XM2C78','Lyovac Sodium Edecrin','Y','2025-10-23 00:00:00'),(90215,11,'XM9ZQ5','Lynestrenol and ethinylestradiol','Y','2025-10-23 00:00:00'),(90214,11,'XM8Y77','Lynestrenol','Y','2025-10-23 00:00:00'),(90213,11,'XH9MU1','Lymphosarcoma, NOS','Y','2025-10-23 00:00:00'),(90212,11,'XH5BA6','Lymphosarcoma cell leukaemia','Y','2025-10-23 00:00:00'),(90211,11,'XH2LK2','Lymphoproliferative disorder, NOS','Y','2025-10-23 00:00:00'),(90210,11,'2A85.4','Lymphoplasmacytic lymphoma','Y','2025-10-23 00:00:00'),(90209,11,'XH0QZ9','Lymphoplasmacytic lymphoma','Y','2025-10-23 00:00:00'),(90207,11,'2B03.1','Lymphomatoid papulosis','Y','2025-10-23 00:00:00'),(90208,11,'XH0R11','Lymphoplasmacyte-rich meningioma','Y','2025-10-23 00:00:00'),(90205,11,'XH7BG6','Lymphomatoid granulomatosis, grade 2','Y','2025-10-23 00:00:00'),(90206,11,'XH71D5','Lymphomatoid granulomatosis, grade 3','Y','2025-10-23 00:00:00'),(90204,11,'XH4F97','Lymphomatoid granulomatosis, grade 1','Y','2025-10-23 00:00:00'),(90203,11,'XH4P09','Lymphomatoid granulomatosis','Y','2025-10-23 00:00:00'),(90202,11,'2A81.3','Lymphomatoid granulomatosis','Y','2025-10-23 00:00:00'),(90201,11,'DB71.1','Lymphoid polyp','Y','2025-10-23 00:00:00'),(90200,11,'2B33.3','Lymphoid leukaemia, not elsewhere classified','Y','2025-10-23 00:00:00'),(90199,11,'XH7Q12','Lymphoid leukaemia, NOS','Y','2025-10-23 00:00:00'),(90198,11,'CB03.5','Lymphoid interstitial pneumonia','Y','2025-10-23 00:00:00'),(90197,11,'DA98.3','Lymphoid hyperplasia of small intestine','Y','2025-10-23 00:00:00'),(90196,11,'XM3WZ1','Lymphogranuloma venereum antigen','Y','2025-10-23 00:00:00'),(90195,11,'XH92G2','Lymphoepithelioid lymphoma','Y','2025-10-23 00:00:00'),(90194,11,'XH1E40','Lymphoepithelial carcinoma','Y','2025-10-23 00:00:00'),(90193,11,'BD93.Z','Lymphoedema, unspecified','Y','2025-10-23 00:00:00'),(90192,11,'BD93.1Y','Lymphoedema secondary to other specified cause','Y','2025-10-23 00:00:00'),(90191,11,'BD93.10','Lymphoedema due to venous insufficiency','Y','2025-10-23 00:00:00'),(90190,11,'BE1B','Lymphoedema due to surgery or radiotherapy','Y','2025-10-23 00:00:00'),(90189,11,'BD93.14','Lymphoedema due to podoconiosis','Y','2025-10-23 00:00:00'),(90188,11,'BE1B.1','Lymphoedema due to other medical or surgical procedures','Y','2025-10-23 00:00:00'),(90187,11,'BD93.12','Lymphoedema due to obesity','Y','2025-10-23 00:00:00'),(90186,11,'BD93.15','Lymphoedema due to malignant infiltration','Y','2025-10-23 00:00:00'),(90185,11,'BD93.13','Lymphoedema due to lymphatic filariasis','Y','2025-10-23 00:00:00'),(90184,11,'BD93.11','Lymphoedema due to dependency and immobility','Y','2025-10-23 00:00:00'),(90183,11,'BD93','Lymphoedema','Y','2025-10-23 00:00:00'),(90182,11,'EE91','Lymphocytoma cutis','Y','2025-10-23 00:00:00'),(90181,11,'XH7PW5','Lymphocytic leukaemia, NOS','Y','2025-10-23 00:00:00'),(90180,11,'DA42.3','Lymphocytic gastritis','Y','2025-10-23 00:00:00'),(90179,11,'DA60.5','Lymphocytic gastric ulcer','Y','2025-10-23 00:00:00'),(90178,11,'DA51.2','Lymphocytic duodenitis','Y','2025-10-23 00:00:00'),(90177,11,'DB33.11','Lymphocytic colitis','Y','2025-10-23 00:00:00'),(90176,11,'XN4ZL','Lymphocytic choriomeningitis virus','Y','2025-10-23 00:00:00'),(90175,11,'1C8F','Lymphocytic choriomeningitis','Y','2025-10-23 00:00:00'),(90174,11,'XA8YQ2','Lymphocytes','Y','2025-10-23 00:00:00'),(90173,11,'2B30.11','Lymphocyte-rich classical Hodgkin lymphoma','Y','2025-10-23 00:00:00'),(90172,11,'2B30.13','Lymphocyte depleted classical Hodgkin lymphoma','Y','2025-10-23 00:00:00'),(90171,11,'1F2J.0','Lymphocutaneous sporotrichosis','Y','2025-10-23 00:00:00'),(90170,11,'XA0TJ1','Lymphoblast','Y','2025-10-23 00:00:00'),(90169,11,'XA1G40','Lymphatic vessels of the skin and muscles of the neck','Y','2025-10-23 00:00:00'),(90168,11,'XA29U5','Lymphatic vessel of the vermiform process','Y','2025-10-23 00:00:00'),(90167,11,'XA1ZK1','Lymphatic vessel of the vagina','Y','2025-10-23 00:00:00'),(90166,11,'XA9PA3','Lymphatic vessel of the uterus','Y','2025-10-23 00:00:00'),(90165,11,'XA5755','Lymphatic vessel of the uterine tube','Y','2025-10-23 00:00:00'),(90164,11,'XA7JY4','Lymphatic vessel of the urinary organ','Y','2025-10-23 00:00:00'),(90163,11,'XA6HM6','Lymphatic vessel of the urethra','Y','2025-10-23 00:00:00'),(90162,11,'XA6324','Lymphatic vessel of the ureter','Y','2025-10-23 00:00:00'),(90161,11,'XA9FT5','Lymphatic vessel of the tongue','Y','2025-10-23 00:00:00'),(90160,11,'XA3JF4','Lymphatic vessel of the thymus','Y','2025-10-23 00:00:00'),(90159,11,'XA3SY2','Lymphatic vessel of the thoracic viscera','Y','2025-10-23 00:00:00'),(90158,11,'XA1UA0','Lymphatic vessel of the testes','Y','2025-10-23 00:00:00'),(90157,11,'XA21T8','Lymphatic vessel of the suprarenal lymph node','Y','2025-10-23 00:00:00'),(90156,11,'XA3RD0','Lymphatic vessel of the subdiaphragmatic portion of the digestive tube','Y','2025-10-23 00:00:00'),(90155,11,'XA1599','Lymphatic vessel of the stomach','Y','2025-10-23 00:00:00'),(90154,11,'XA5LE6','Lymphatic vessel of the spleen','Y','2025-10-23 00:00:00'),(90153,11,'XA0GB7','Lymphatic vessel of the seminal vesicles','Y','2025-10-23 00:00:00'),(90152,11,'XA4QZ6','Lymphatic vessel of the scalp','Y','2025-10-23 00:00:00'),(90151,11,'XA2XZ6','Lymphatic vessel of the reproductive organs','Y','2025-10-23 00:00:00'),(90150,11,'XA6DH7','Lymphatic vessel of the rectum','Y','2025-10-23 00:00:00'),(90148,11,'XA4QL2','Lymphatic vessel of the pleura','Y','2025-10-23 00:00:00'),(90149,11,'XA1SS8','Lymphatic vessel of the prostate','Y','2025-10-23 00:00:00'),(90147,11,'XA6TY4','Lymphatic vessel of the pinna','Y','2025-10-23 00:00:00'),(90146,11,'XA6J62','Lymphatic vessel of the pericardium','Y','2025-10-23 00:00:00'),(90145,11,'XA9YZ4','Lymphatic vessel of the pancreas','Y','2025-10-23 00:00:00'),(90144,11,'XA0167','Lymphatic vessel of the palatine tonsil','Y','2025-10-23 00:00:00'),(90143,11,'XA4229','Lymphatic vessel of the ovary','Y','2025-10-23 00:00:00'),(90141,11,'XA3EB8','Lymphatic vessel of the lungs','Y','2025-10-23 00:00:00'),(90142,11,'XA8QZ0','Lymphatic vessel of the oesophagus','Y','2025-10-23 00:00:00'),(90140,11,'XA0WY9','Lymphatic vessel of the liver','Y','2025-10-23 00:00:00'),(90139,11,'XA3610','Lymphatic vessel of the kidney','Y','2025-10-23 00:00:00'),(90138,11,'XA4CQ1','Lymphatic vessel of the jejunum','Y','2025-10-23 00:00:00'),(90137,11,'XA55Y5','Lymphatic vessel of the ileum','Y','2025-10-23 00:00:00'),(90136,11,'XA55B8','Lymphatic vessel of the heart','Y','2025-10-23 00:00:00'),(90135,11,'XA6VD0','Lymphatic vessel of the gallbladder','Y','2025-10-23 00:00:00'),(90134,11,'XA1EC8','Lymphatic vessel of the face','Y','2025-10-23 00:00:00'),(90133,11,'XA02Y8','Lymphatic vessel of the external acoustic meatus','Y','2025-10-23 00:00:00'),(90132,11,'XA92E5','Lymphatic vessel of the duodenum','Y','2025-10-23 00:00:00'),(90131,11,'XA16J8','Lymphatic vessel of the ductus deferens','Y','2025-10-23 00:00:00'),(90130,11,'XA8YM1','Lymphatic vessel of the diaphragm','Y','2025-10-23 00:00:00'),(90129,11,'XA1BU5','Lymphatic vessel of the colon','Y','2025-10-23 00:00:00'),(90128,11,'XA9XL5','Lymphatic vessel of the caecum','Y','2025-10-23 00:00:00'),(90127,11,'XA4RC7','Lymphatic vessel of the breast','Y','2025-10-23 00:00:00'),(90126,11,'XA1UK6','Lymphatic vessel of the bladder','Y','2025-10-23 00:00:00'),(90125,11,'XA5C29','Lymphatic vessel of the anus','Y','2025-10-23 00:00:00'),(90123,11,'XA8SZ4','Lymphatic tissue','Y','2025-10-23 00:00:00'),(90124,11,'XA4LM3','Lymphatic vessel of the anal canal','Y','2025-10-23 00:00:00'),(90122,11,'XA23Z9','Lymphatic system of the upper extremity','Y','2025-10-23 00:00:00'),(90121,11,'XA52C3','Lymphatic system of the thorax','Y','2025-10-23 00:00:00'),(90120,11,'XA6709','Lymphatic system of the pelvis and perineum','Y','2025-10-23 00:00:00'),(90118,11,'XA10P2','Lymphatic system of the head and neck','Y','2025-10-23 00:00:00'),(90119,11,'XA0Z86','Lymphatic system of the lower extremity','Y','2025-10-23 00:00:00'),(90117,11,'XA81G2','Lymphatic system of the abdomen','Y','2025-10-23 00:00:00'),(90116,11,'LA90.1Z','Lymphatic malformations, unspecified','Y','2025-10-23 00:00:00'),(90115,11,'LA90.12','Lymphatic malformations of certain specified sites','Y','2025-10-23 00:00:00'),(90114,11,'LA90.1','Lymphatic malformations','Y','2025-10-23 00:00:00'),(90113,11,'XH1GQ1','Lymphatic leukaemia, NOS','Y','2025-10-23 00:00:00'),(90112,11,'1F66.3Z','Lymphatic filariasis, unspecified','Y','2025-10-23 00:00:00'),(90111,11,'1F66.3','Lymphatic filariasis','Y','2025-10-23 00:00:00'),(90110,11,'BD91','Lymphangitis','Y','2025-10-23 00:00:00'),(90109,11,'XH10U6','Lymphangiosarcoma','Y','2025-10-23 00:00:00'),(90108,11,'XH10K6','Lymphangiomyomatosis','Y','2025-10-23 00:00:00'),(90107,11,'XH2DS9','Lymphangiomyoma','Y','2025-10-23 00:00:00'),(90106,11,'XH9MR8','Lymphangioma, NOS','Y','2025-10-23 00:00:00'),(90105,11,'CB07.Z','Lymphangioleiomyomatosis, unspecified','Y','2025-10-23 00:00:00'),(90104,11,'CB07.0','Lymphangioleiomyomatosis associated with tuberous sclerosis complex','Y','2025-10-23 00:00:00'),(90103,11,'CB07','Lymphangioleiomyomatosis','Y','2025-10-23 00:00:00'),(90102,11,'BD92','Lymphangiectasia','Y','2025-10-23 00:00:00'),(90101,11,'XH7J33','Lymphadenoma','Y','2025-10-23 00:00:00'),(90100,11,'BD90.Z','Lymphadenitis, unspecified','Y','2025-10-23 00:00:00'),(90099,11,'BD90','Lymphadenitis','Y','2025-10-23 00:00:00'),(90098,11,'XA1SQ2','Lymph Sac','Y','2025-10-23 00:00:00'),(90097,11,'XA7TQ3','Lymph nodes of upper extremity','Y','2025-10-23 00:00:00'),(90096,11,'XA4T07','Lymph nodes of multiple regions','Y','2025-10-23 00:00:00'),(90095,11,'XA86X1','Lymph nodes of lower extremity','Y','2025-10-23 00:00:00'),(90094,11,'XA9U65','Lymph nodes of head, face and neck','Y','2025-10-23 00:00:00'),(90093,11,'XA33X2','Lymph nodes','Y','2025-10-23 00:00:00'),(90092,11,'XA4AU1','Lymph node of Cloquet','Y','2025-10-23 00:00:00'),(90091,11,'XM47D7','Lymecycline','Y','2025-10-23 00:00:00'),(90090,11,'1C1G.10','Lyme neuroborreliosis','Y','2025-10-23 00:00:00'),(90089,11,'1C1G.11','Lyme carditis','Y','2025-10-23 00:00:00'),(90088,11,'1C1G','Lyme borreliosis','Y','2025-10-23 00:00:00'),(90087,11,'1C1G.13','Lyme arthritis','Y','2025-10-23 00:00:00'),(90086,11,'XM7C89','Lututrin','Y','2025-10-23 00:00:00'),(90085,11,'XM8TP5','Lutropin alfa','Y','2025-10-23 00:00:00'),(90084,11,'XH40J2','Luteoma, NOS','Y','2025-10-23 00:00:00'),(90083,11,'XM86N5','Luteinizing hormone','Y','2025-10-23 00:00:00'),(90082,11,'XM9EW5','Lurasidone','Y','2025-10-23 00:00:00'),(90081,11,'4A40.Z','Lupus erythematosus, unspecified','Y','2025-10-23 00:00:00'),(90080,11,'4A40','Lupus erythematosus','Y','2025-10-23 00:00:00'),(90079,11,'4A45.3','Lupus anticoagulant-hypoprothrombinaemia syndrome','Y','2025-10-23 00:00:00'),(90078,11,'XA6DM1','Lunula of thumb','Y','2025-10-23 00:00:00'),(90077,11,'XA9UL1','Lunula of third toe','Y','2025-10-23 00:00:00'),(90076,11,'XA9439','Lunula of second toe','Y','2025-10-23 00:00:00'),(90075,11,'XA4P58','Lunula of ring finger','Y','2025-10-23 00:00:00'),(90074,11,'XA8VS0','Lunula of middle finger','Y','2025-10-23 00:00:00'),(90073,11,'XA3R66','Lunula of little finger','Y','2025-10-23 00:00:00'),(90072,11,'XA1GS3','Lunula of index finger','Y','2025-10-23 00:00:00'),(90071,11,'XA64R9','Lunula of great toe','Y','2025-10-23 00:00:00'),(90070,11,'XA2PD3','Lunula of fourth toe','Y','2025-10-23 00:00:00'),(90069,11,'XA1PK7','Lunula of fifth toe','Y','2025-10-23 00:00:00'),(90068,11,'SF81','Lung yin deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(90067,11,'SF84','Lung yang deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(90066,11,'SA85','Lung withering disorder (TM1)','Y','2025-10-23 00:00:00'),(90065,11,'SF8Z','Lung system patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(90064,11,'SA8Z','Lung system disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(90063,11,'SF80','Lung qi deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(90062,11,'SF83','Lung qi and yin deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(90061,11,'XA8Z62','Lung parenchyma','Y','2025-10-23 00:00:00'),(90060,11,'SG20','Lung meridian pattern (TM1)','Y','2025-10-23 00:00:00'),(90059,11,'CA4Z','Lung infections, unspecified','Y','2025-10-23 00:00:00'),(90058,11,'SF8B','Lung heat transmitting into the intestine pattern (TM1)','Y','2025-10-23 00:00:00'),(90057,11,'SA84','Lung heat disorder (TM1)','Y','2025-10-23 00:00:00'),(90056,11,'SF8E','Lung dryness with intestinal obstruction pattern (TM1)','Y','2025-10-23 00:00:00'),(90055,11,'SA82','Lung distension disorder (TM1)','Y','2025-10-23 00:00:00'),(90054,11,'CA8Z','Lung diseases due to external agents, unspecified','Y','2025-10-23 00:00:00'),(90053,11,'SF7L','Lung and spleen deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(90051,11,'XA57M6','Lung','Y','2025-10-23 00:00:00'),(90052,11,'SF82','Lung and kidney yin deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(90050,11,'XA30C8','Lunate bone','Y','2025-10-23 00:00:00'),(90049,11,'XM0BC7','Lumiracoxib','Y','2025-10-23 00:00:00'),(90048,11,'XA9B77','Lumbricals of hand muscle','Y','2025-10-23 00:00:00'),(90047,11,'XA7PN0','Lumbricals of foot muscle','Y','2025-10-23 00:00:00'),(90046,11,'XA8TQ1','Lumbrical tendon','Y','2025-10-23 00:00:00'),(90045,11,'XA5DE3','Lumbrical of foot tendon','Y','2025-10-23 00:00:00'),(90044,11,'XA76D3','Lumbosacral trunk','Y','2025-10-23 00:00:00'),(90043,11,'XA25R8','Lumbosacral region','Y','2025-10-23 00:00:00'),(90042,11,'8B92.3','Lumbosacral radiculoplexopathy','Y','2025-10-23 00:00:00'),(90041,11,'8B92.Z','Lumbosacral plexus disorders, unspecified','Y','2025-10-23 00:00:00'),(90040,11,'8B92','Lumbosacral plexus disorders','Y','2025-10-23 00:00:00'),(90039,11,'XA8YS2','Lumbosacral plexus','Y','2025-10-23 00:00:00'),(90038,11,'XA5A04','Lumbosacral joint','Y','2025-10-23 00:00:00'),(90037,11,'XA54R2','Lumbosacral intervertebral disc or space L5-S1','Y','2025-10-23 00:00:00'),(90036,11,'XA8307','Lumboinguinal nerve','Y','2025-10-23 00:00:00'),(90035,11,'XA8B33','Lumbocostal ligament','Y','2025-10-23 00:00:00'),(90034,11,'LB73.27','Lumbarisation of the first sacral vertebra','Y','2025-10-23 00:00:00'),(90032,11,'XA52L9','Lumbar vein','Y','2025-10-23 00:00:00'),(90033,11,'XA0D60','Lumbar vertebra','Y','2025-10-23 00:00:00'),(90031,11,'XA8U35','Lumbar splanchnic nerve','Y','2025-10-23 00:00:00'),(90030,11,'XA44R0','Lumbar spinal nerve','Y','2025-10-23 00:00:00'),(90029,11,'XA8PP5','Lumbar spinal cord','Y','2025-10-23 00:00:00'),(90028,11,'PK81.A','Lumbar puncture associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(90027,11,'XA1E79','Lumbar plexus','Y','2025-10-23 00:00:00'),(90026,11,'XA7ZW8','Lumbar paraspinal region','Y','2025-10-23 00:00:00'),(90025,11,'XA4T95','Lumbar nerve root','Y','2025-10-23 00:00:00'),(90024,11,'XA5UE9','Lumbar nerve','Y','2025-10-23 00:00:00'),(90023,11,'XA6R71','Lumbar lymphatic trunk','Y','2025-10-23 00:00:00'),(90022,11,'XA59Q1','Lumbar lymph node','Y','2025-10-23 00:00:00'),(90021,11,'XA2N96','Lumbar intervertebral disc or space L4-L5','Y','2025-10-23 00:00:00'),(90020,11,'XA1F44','Lumbar intervertebral disc or space L3-L4','Y','2025-10-23 00:00:00'),(90019,11,'XA8DG2','Lumbar intervertebral disc or space L2-L3','Y','2025-10-23 00:00:00'),(90018,11,'XA7RD5','Lumbar intervertebral disc or space L1-L2','Y','2025-10-23 00:00:00'),(90017,11,'XA54S5','Lumbar discs or space','Y','2025-10-23 00:00:00'),(90016,11,'XA4UK9','Lumbar artery','Y','2025-10-23 00:00:00'),(90015,11,'ME84.20','Lumbago with sciatica','Y','2025-10-23 00:00:00'),(90014,11,'SC61','Lumbago disorder (TM1)','Y','2025-10-23 00:00:00'),(90013,11,'XM9NX2','Lumateperone','Y','2025-10-23 00:00:00'),(90012,11,'XM6H72','Luliconazole','Y','2025-10-23 00:00:00'),(90011,11,'XN77P','Lujo virus','Y','2025-10-23 00:00:00'),(90010,11,'XE229','Luer valve component of medical device','Y','2025-10-23 00:00:00'),(90009,11,'XM9Z70','Lucanthone','Y','2025-10-23 00:00:00'),(90008,11,'XE6UT','Lubrication problem identified with device','Y','2025-10-23 00:00:00'),(90007,11,'XM4NT9','Lubricating oil','Y','2025-10-23 00:00:00'),(90006,11,'XM4U05','Lubiprostone','Y','2025-10-23 00:00:00'),(90005,11,'XM1HU5','Loxoprofen','Y','2025-10-23 00:00:00'),(90004,11,'XM8FG8','Loxapine','Y','2025-10-23 00:00:00'),(90003,11,'LA21.2','Low-set ear','Y','2025-10-23 00:00:00'),(90002,11,'XE5WB','Low-powered passenger vehicle as mode of transport of person injured in transport event','Y','2025-10-23 00:00:00'),(90001,11,'XM9RY1','Lowila','Y','2025-10-23 00:00:00'),(90000,11,'XA34X0','Lower urinary tract','Y','2025-10-23 00:00:00'),(89999,11,'XA6CY1','Lower trunk','Y','2025-10-23 00:00:00'),(89998,11,'XA6RF2','Lower thoracic paraspinal region','Y','2025-10-23 00:00:00'),(89997,11,'XA9CB6','Lower third of oesophagus','Y','2025-10-23 00:00:00'),(89996,11,'XA3ET7','Lower superior gastric lymph node','Y','2025-10-23 00:00:00'),(89995,11,'XA9XA5','Lower subscapular nerve','Y','2025-10-23 00:00:00'),(89994,11,'XA6TB6','Lower right central incisor, deciduous','Y','2025-10-23 00:00:00'),(89993,11,'XA5NT8','Lower right central incisor','Y','2025-10-23 00:00:00'),(89992,11,'XA8KQ7','Lower right canine, deciduous','Y','2025-10-23 00:00:00'),(89991,11,'XA95A1','Lower right canine','Y','2025-10-23 00:00:00'),(89990,11,'XA8YF6','Lower right 3rd molar','Y','2025-10-23 00:00:00'),(89989,11,'XA6F50','Lower right 2nd molar, deciduous','Y','2025-10-23 00:00:00'),(89988,11,'XA5CA4','Lower right 2nd molar','Y','2025-10-23 00:00:00'),(89987,11,'XA26X2','Lower right 2nd bicuspid','Y','2025-10-23 00:00:00'),(89986,11,'XA36B2','Lower right 1st molar, deciduous','Y','2025-10-23 00:00:00'),(89985,11,'XA5M57','Lower right 1st molar','Y','2025-10-23 00:00:00'),(89984,11,'XA47C4','Lower right 1st bicuspid','Y','2025-10-23 00:00:00'),(89983,11,'XA1W31','Lower right ','Y','2025-10-23 00:00:00'),(89982,11,'XA8660','Lower right ','Y','2025-10-23 00:00:00'),(89981,11,'CA2Z','Lower respiratory tract disease, unspecified','Y','2025-10-23 00:00:00'),(89980,11,'XA07R2','Lower respiratory tract','Y','2025-10-23 00:00:00'),(89979,11,'XA94U2','Lower outer quadrant of breast','Y','2025-10-23 00:00:00'),(89978,11,'XA8JM5','Lower lobe, bronchus','Y','2025-10-23 00:00:00'),(89977,11,'XA7L34','Lower lobe of lung','Y','2025-10-23 00:00:00'),(89976,11,'XA15W6','Lower lip','Y','2025-10-23 00:00:00'),(89975,11,'EF20.2','Lower limb venous telangiectases','Y','2025-10-23 00:00:00'),(89974,11,'EF70','Lower limb venous eczema','Y','2025-10-23 00:00:00'),(89973,11,'BD74.1Z','Lower limb varicose veins, not further specified','Y','2025-10-23 00:00:00'),(89972,11,'BD74.1','Lower limb varicose veins','Y','2025-10-23 00:00:00'),(89971,11,'LB97.3','Lower limb hypertrophy','Y','2025-10-23 00:00:00'),(89970,11,'BD71.4','Lower limb deep vein thrombosis','Y','2025-10-23 00:00:00'),(89969,11,'BD40.0','Lower limb atherosclerosis','Y','2025-10-23 00:00:00'),(89968,11,'XA3YG1','Lower leg','Y','2025-10-23 00:00:00'),(89967,11,'XA2RW5','Lower left central incisor, deciduous','Y','2025-10-23 00:00:00'),(89966,11,'XA7B54','Lower left central incisor','Y','2025-10-23 00:00:00'),(89965,11,'XA8QV7','Lower left canine, deciduous','Y','2025-10-23 00:00:00'),(89964,11,'XA8P88','Lower left canine','Y','2025-10-23 00:00:00'),(89963,11,'XA0XB1','Lower left 3rd molar','Y','2025-10-23 00:00:00'),(89962,11,'XA8NE2','Lower left 2nd molar, deciduous','Y','2025-10-23 00:00:00'),(89961,11,'XA8YV5','Lower left 2nd molar','Y','2025-10-23 00:00:00'),(89960,11,'XA80S2','Lower left 2nd bicuspid','Y','2025-10-23 00:00:00'),(89959,11,'XA55D8','Lower left 1st molar, deciduous','Y','2025-10-23 00:00:00'),(89958,11,'XA6R23','Lower left 1st molar','Y','2025-10-23 00:00:00'),(89957,11,'XA1SQ7','Lower left 1st bicuspid','Y','2025-10-23 00:00:00'),(89956,11,'XA8MH6','Lower left ','Y','2025-10-23 00:00:00'),(89954,11,'XA9MN4','Lower lateral thoracic region','Y','2025-10-23 00:00:00'),(89955,11,'XA4B13','Lower left ','Y','2025-10-23 00:00:00'),(89953,11,'XA0VX8','Lower inner quadrant of breast','Y','2025-10-23 00:00:00'),(89952,11,'XA3UY3','Lower half of breast','Y','2025-10-23 00:00:00'),(89950,11,'XA4AX5','Lower eyelid margin','Y','2025-10-23 00:00:00'),(89951,11,'XA9303','Lower gingiva','Y','2025-10-23 00:00:00'),(89949,11,'XA0JV9','Lower eyelid','Y','2025-10-23 00:00:00'),(89948,11,'XA45A6','Lower extremity','Y','2025-10-23 00:00:00'),(89947,11,'SG72','Lower energizer stage patterns (TM1)','Y','2025-10-23 00:00:00'),(89946,11,'XA0725','Lower end of ulna not otherwise specified','Y','2025-10-23 00:00:00'),(89945,11,'XA4X32','Lower end of radius not otherwise specified','Y','2025-10-23 00:00:00'),(89944,11,'XA7207','Lower cheek','Y','2025-10-23 00:00:00'),(89943,11,'XA0QG6','Lower branches of the space anastomoses of the six','Y','2025-10-23 00:00:00'),(89942,11,'XA9ET2','Lower back','Y','2025-10-23 00:00:00'),(89941,11,'XA7GU3','Lower anterior thoracic region','Y','2025-10-23 00:00:00'),(89940,11,'XA8C21','Lower alveolar ridge mucosa','Y','2025-10-23 00:00:00'),(89939,11,'XA96F2','Lower alveolar mucosa','Y','2025-10-23 00:00:00'),(89938,11,'SB07','Lower abdominal colic disorder (TM1)','Y','2025-10-23 00:00:00'),(89937,11,'XA4TC0','Lower abdomen','Y','2025-10-23 00:00:00'),(89936,11,'XA1EE3','Lower (3rd to 11th)','Y','2025-10-23 00:00:00'),(89935,11,'XM3K70','Low-ceiling diuretics','Y','2025-10-23 00:00:00'),(89934,11,'XM6U69','Low-ceiling diuretic sulfonamides','Y','2025-10-23 00:00:00'),(89933,11,'MA16.12','Low white blood cell count','Y','2025-10-23 00:00:00'),(89932,11,'JA65.3','Low weight gain in pregnancy','Y','2025-10-23 00:00:00'),(89931,11,'XE8EM','Low test results','Y','2025-10-23 00:00:00'),(89930,11,'XE2P7','Low sensing threshold','Y','2025-10-23 00:00:00'),(89929,11,'MB28.9','Low self-esteem','Y','2025-10-23 00:00:00'),(89928,11,'XE5KE','Low readings','Y','2025-10-23 00:00:00'),(89927,11,'XE90S','Low powered passenger vehicle as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(89926,11,'XE657','Low pH','Y','2025-10-23 00:00:00'),(89925,11,'QD51','Low income','Y','2025-10-23 00:00:00'),(89924,11,'MA18.4','Low haemoglobin','Y','2025-10-23 00:00:00'),(89923,11,'GA13.1','Low grade squamous intraepithelial lesion of vulva','Y','2025-10-23 00:00:00'),(89922,11,'GA14.6','Low grade squamous intraepithelial lesion of vagina','Y','2025-10-23 00:00:00'),(89921,11,'GA15.7','Low grade squamous intraepithelial lesion of cervix uteri','Y','2025-10-23 00:00:00'),(89920,11,'XH12V5','Low grade serous carcinoma','Y','2025-10-23 00:00:00'),(89919,11,'2C73.02','Low grade serous adenocarcinoma of ovary','Y','2025-10-23 00:00:00'),(89918,11,'GA91.6','Low grade intraepithelial lesion of prostate','Y','2025-10-23 00:00:00'),(89917,11,'XH4V76','Low grade fibromyxoid sarcoma','Y','2025-10-23 00:00:00'),(89916,11,'XH7N84','Low grade central osteosarcoma','Y','2025-10-23 00:00:00'),(89915,11,'XH7BB4','Low grade appendiceal mucinous neoplasm','Y','2025-10-23 00:00:00'),(89914,11,'MB28.8','Low frustration tolerance','Y','2025-10-23 00:00:00'),(89913,11,'XH7JW1','Low cumulative sun damage melanoma','Y','2025-10-23 00:00:00'),(89912,11,'FB83','Low bone mass disorders','Y','2025-10-23 00:00:00'),(89911,11,'KA21.2Z','Low birth weight of newborn, unspecified','Y','2025-10-23 00:00:00'),(89910,11,'KA21.21','Low birth weight of newborn, 2000-2499g','Y','2025-10-23 00:00:00'),(89909,11,'KA21.20','Low birth weight of newborn, 1500-1999g','Y','2025-10-23 00:00:00'),(89908,11,'KA21.2','Low birth weight of newborn','Y','2025-10-23 00:00:00'),(89907,11,'ME84.2Z','Low back pain, unspecified','Y','2025-10-23 00:00:00'),(89906,11,'ME84.2','Low back pain','Y','2025-10-23 00:00:00'),(89905,11,'XE2RK','Low audible alarm','Y','2025-10-23 00:00:00'),(89904,11,'3A51.8','Low affinity haemoglobin','Y','2025-10-23 00:00:00'),(89903,11,'XM72M6','Lovastatin','Y','2025-10-23 00:00:00'),(89902,11,'1C1J.1','Louse-borne relapsing fever','Y','2025-10-23 00:00:00'),(89901,11,'XM9KL6','Loteprednol','Y','2025-10-23 00:00:00'),(89900,11,'QE61.0','Loss or death of child','Y','2025-10-23 00:00:00'),(89899,11,'XE9TK','Loss of threshold','Y','2025-10-23 00:00:00'),(89898,11,'DA0A.1','Loss of teeth due to accident, extraction or local periodontal disease','Y','2025-10-23 00:00:00'),(89896,11,'XE2WJ','Loss of power to device','Y','2025-10-23 00:00:00'),(89897,11,'JA81.3','Loss of pregnancy after abortion or intrauterine death of one fetus or more','Y','2025-10-23 00:00:00'),(89894,11,'XE9DU','Loss of or failure to bond','Y','2025-10-23 00:00:00'),(89895,11,'XE0Z9','Loss of osseointegration','Y','2025-10-23 00:00:00'),(89892,11,'XE992','Loss of data','Y','2025-10-23 00:00:00'),(89893,11,'QE52.1','Loss of love relationship in childhood','Y','2025-10-23 00:00:00'),(89891,11,'NA07.04','Loss of consciousness, short duration of one hour to less than 6 hours','Y','2025-10-23 00:00:00'),(89890,11,'NA07.02','Loss of consciousness, short duration of less than 30 minutes','Y','2025-10-23 00:00:00'),(89889,11,'NA07.03','Loss of consciousness, short duration of 30 minutes to less than one hour','Y','2025-10-23 00:00:00'),(89888,11,'NA07.07','Loss of consciousness, persisting until death','Y','2025-10-23 00:00:00'),(89887,11,'NA07.06','Loss of consciousness, persisting longer than 24 hours or until discharge or latest assessment','Y','2025-10-23 00:00:00'),(89886,11,'NA07.05','Loss of consciousness, intermediate duration of 6 hours to less than 24 hours','Y','2025-10-23 00:00:00'),(89885,11,'NA07.09','Loss of consciousness, duration unspecified or unknown due to lack of information','Y','2025-10-23 00:00:00'),(89884,11,'NA07.08','Loss of consciousness, duration unspecified or unknown due to effects of therapy','Y','2025-10-23 00:00:00'),(89883,11,'XM7DY0','Losartan','Y','2025-10-23 00:00:00'),(89882,11,'XM3X14','Lornoxicam','Y','2025-10-23 00:00:00'),(89881,11,'XM1EE3','Lormetazepam','Y','2025-10-23 00:00:00'),(89880,11,'XM59V9','Lorlatinib','Y','2025-10-23 00:00:00'),(89879,11,'FA70.2','Lordosis','Y','2025-10-23 00:00:00'),(89878,11,'XM4NN9','Lorcaserin','Y','2025-10-23 00:00:00'),(89877,11,'XM04P2','Lorcainide','Y','2025-10-23 00:00:00'),(89876,11,'XM85H7','Lorazepam','Y','2025-10-23 00:00:00'),(89875,11,'XM4PE5','Loratadine','Y','2025-10-23 00:00:00'),(89874,11,'XM18V8','Lorajmine','Y','2025-10-23 00:00:00'),(89873,11,'XM6KH0','Loracarbef','Y','2025-10-23 00:00:00'),(89872,11,'XM6KW2','Loprazolam','Y','2025-10-23 00:00:00'),(89871,11,'XM3EH7','Lopinavir','Y','2025-10-23 00:00:00'),(89870,11,'XM7VK6','Loperamide oxide','Y','2025-10-23 00:00:00'),(89869,11,'XM86N4','Loperamide','Y','2025-10-23 00:00:00'),(89868,11,'XE2K9','Loosening of implant not related to bone-ingrowth','Y','2025-10-23 00:00:00'),(89867,11,'XE3G6','Loose or intermittent connection','Y','2025-10-23 00:00:00'),(89866,11,'XA51U1','Loose connective tissue','Y','2025-10-23 00:00:00'),(89865,11,'FA33.3','Loose body in knee','Y','2025-10-23 00:00:00'),(89864,11,'FA34.0','Loose body in joint','Y','2025-10-23 00:00:00'),(89863,11,'XM2W24','Loop [high-ceiling] diuretic sulfonamides','Y','2025-10-23 00:00:00'),(89862,11,'VW25','Looking after one\'s health','Y','2025-10-23 00:00:00'),(89861,11,'XM3R45','Lonidamine','Y','2025-10-23 00:00:00'),(89860,11,'XA0UD3','Longus colli tendon','Y','2025-10-23 00:00:00'),(89859,11,'XA8EM8','Longus colli muscle','Y','2025-10-23 00:00:00'),(89858,11,'XA1FR7','Longus capitis tendon','Y','2025-10-23 00:00:00'),(89857,11,'XA6YE6','Longus capitis muscle','Y','2025-10-23 00:00:00'),(89856,11,'XJ6RL','Longitudinal fracture','Y','2025-10-23 00:00:00'),(89855,11,'XA3TD7','Longissimus tendon','Y','2025-10-23 00:00:00'),(89854,11,'XA6MB7','Longissimus muscle','Y','2025-10-23 00:00:00'),(89853,11,'XM4J39','Long-acting sulfonamides','Y','2025-10-23 00:00:00'),(89852,11,'XA0A05','Long thoracic nerve','Y','2025-10-23 00:00:00'),(89851,11,'XA1Z01','Long root of the ciliary ganglion','Y','2025-10-23 00:00:00'),(89850,11,'BC65.0','Long QT syndrome','Y','2025-10-23 00:00:00'),(89849,11,'XA69U0','Long posterior sacroiliac ligament','Y','2025-10-23 00:00:00'),(89848,11,'XA9RA2','Long posterior ciliary artery','Y','2025-10-23 00:00:00'),(89847,11,'XA6NS2','Long plantar ligament','Y','2025-10-23 00:00:00'),(89846,11,'JB03.Z','Long labour, unspecified','Y','2025-10-23 00:00:00'),(89845,11,'JB03','Long labour','Y','2025-10-23 00:00:00'),(89844,11,'XA0481','Long head of the biceps brachii muscle','Y','2025-10-23 00:00:00'),(89843,11,'XA2UD9','Long head of biceps brachii tendon','Y','2025-10-23 00:00:00'),(89842,11,'XA3VY1','Long ciliary nerves','Y','2025-10-23 00:00:00'),(89841,11,'XM5RS1','Lone star tick venom','Y','2025-10-23 00:00:00'),(89840,11,'XM12Q6','Lonazolac','Y','2025-10-23 00:00:00'),(89839,11,'XM4L78','Lonafarnib','Y','2025-10-23 00:00:00'),(89838,11,'XM2G49','Lomustine','Y','2025-10-23 00:00:00'),(89837,11,'XM8683','Lomotil','Y','2025-10-23 00:00:00'),(89836,11,'XM3RL5','Lomitapide','Y','2025-10-23 00:00:00'),(89835,11,'XM1P27','Lomefloxacin topical','Y','2025-10-23 00:00:00'),(89834,11,'XM3JX8','Lomefloxacin','Y','2025-10-23 00:00:00'),(89833,11,'XM76G6','Lolium temulentum plant','Y','2025-10-23 00:00:00'),(89832,11,'1F66.0','Loiasis','Y','2025-10-23 00:00:00'),(89831,11,'XE13Q','Logging car','Y','2025-10-23 00:00:00'),(89830,11,'XM7T42','Lofepramine','Y','2025-10-23 00:00:00'),(89829,11,'XM9L65','Lodoxamide','Y','2025-10-23 00:00:00'),(89828,11,'XM7CM3','Locorten','Y','2025-10-23 00:00:00'),(89827,11,'XE51V','Locking mechanism component of medical device','Y','2025-10-23 00:00:00'),(89826,11,'8E45','Locked-in syndrome','Y','2025-10-23 00:00:00'),(89825,11,'XS67','Locally advanced','Y','2025-10-23 00:00:00'),(89824,11,'XC6J','Localizes response to painful or noxious stimulation','Y','2025-10-23 00:00:00'),(89823,11,'8B61.4','Localised spinal muscular atrophy','Y','2025-10-23 00:00:00'),(89822,11,'MG29.0','Localised oedema','Y','2025-10-23 00:00:00'),(89821,11,'MA01.0','Localised lymph node enlargement','Y','2025-10-23 00:00:00'),(89820,11,'EF01.1','Localised lipoatrophy and lipodystrophy','Y','2025-10-23 00:00:00'),(89819,11,'EE00.0Z','Localised hyperhidrosis, unspecified','Y','2025-10-23 00:00:00'),(89818,11,'EE00.0','Localised hyperhidrosis','Y','2025-10-23 00:00:00'),(89817,11,'XK9A','Localised distribution','Y','2025-10-23 00:00:00'),(89816,11,'EF40.2','Localised cutaneous vasculitis','Y','2025-10-23 00:00:00'),(89815,11,'FA85.10','Localised central endplate defect','Y','2025-10-23 00:00:00'),(89814,11,'EH77','Localised adverse cutaneous reactions to administration of drug','Y','2025-10-23 00:00:00'),(89813,11,'5B80.1','Localised adiposity','Y','2025-10-23 00:00:00'),(89812,11,'MD81.1Z','Localised abdominal pain, unspecified','Y','2025-10-23 00:00:00'),(89811,11,'MD81.1','Localised abdominal pain','Y','2025-10-23 00:00:00'),(89810,11,'XS0E','Local limited','Y','2025-10-23 00:00:00'),(89809,11,'XM7Y85','Local anaesthetics','Y','2025-10-23 00:00:00'),(89808,11,'LB30.60','Lobulated kidney','Y','2025-10-23 00:00:00'),(89807,11,'XH9HB7','Lobular carcinoma, pleomorphic','Y','2025-10-23 00:00:00'),(89806,11,'XH2XR3','Lobular carcinoma, NOS','Y','2025-10-23 00:00:00'),(89805,11,'XH2HB2','Lobular carcinoma in situ, pleomorphic','Y','2025-10-23 00:00:00'),(89804,11,'XH6EH0','Lobular carcinoma in situ, NOS','Y','2025-10-23 00:00:00'),(89803,11,'2E65.1','Lobular carcinoma in situ of breast, pleomorphic subtype','Y','2025-10-23 00:00:00'),(89802,11,'2E65.0','Lobular carcinoma in situ of breast','Y','2025-10-23 00:00:00'),(89801,11,'XH4LY5','Lobular capillary hemangioma','Y','2025-10-23 00:00:00'),(89799,11,'1F2B','Lobomycosis','Y','2025-10-23 00:00:00'),(89800,11,'2F26','Lobular capillary haemangioma','Y','2025-10-23 00:00:00'),(89798,11,'XN9ZX','Loboa','Y','2025-10-23 00:00:00'),(89797,11,'XM4CU0','Lobeline','Y','2025-10-23 00:00:00'),(89796,11,'XM2BQ5','Lobelia plant','Y','2025-10-23 00:00:00'),(89795,11,'XA90M2','Lobe of lung','Y','2025-10-23 00:00:00'),(89794,11,'8B00.1','Lobar haemorrhage','Y','2025-10-23 00:00:00'),(89793,11,'XN1QQ','Loa Loa','Y','2025-10-23 00:00:00'),(89792,11,'XN8ZQ','Loa','Y','2025-10-23 00:00:00'),(89791,11,'XE6A7','Lizard, gecko, goanna','Y','2025-10-23 00:00:00'),(89790,11,'XM4RP9','Lizard venom','Y','2025-10-23 00:00:00'),(89789,11,'XM3U71','Lixisenatide','Y','2025-10-23 00:00:00'),(89788,11,'SF5A','Liver-gallbladder dampness-heat pattern (TM1)','Y','2025-10-23 00:00:00'),(89787,11,'SF50','Liver yin deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(89786,11,'SF51','Liver yang deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(89785,11,'SF52','Liver yang ascendant hyperactivity pattern (TM1)','Y','2025-10-23 00:00:00'),(89784,11,'SF56','Liver wind stirring the interior pattern (TM1)','Y','2025-10-23 00:00:00'),(89783,11,'SF5Z','Liver system patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(89782,11,'SA0Z','Liver system disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(89781,11,'SF57','Liver qi stagnation pattern (TM1)','Y','2025-10-23 00:00:00'),(89780,11,'SF53','Liver qi deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(89779,11,'SG2B','Liver meridian pattern (TM1)','Y','2025-10-23 00:00:00'),(89778,11,'SF5B','Liver meridian dampness-heat pattern (TM1)','Y','2025-10-23 00:00:00'),(89777,11,'SF5C','Liver meridian cold stagnation pattern (TM1)','Y','2025-10-23 00:00:00'),(89776,11,'XM25P4','Liver hydrolysate','Y','2025-10-23 00:00:00'),(89775,11,'SF59','Liver heat stirring wind pattern (TM1)','Y','2025-10-23 00:00:00'),(89774,11,'XM9GC7','Liver fraction 1','Y','2025-10-23 00:00:00'),(89773,11,'SF5L','Liver fire invading the stomach system pattern (TM1)','Y','2025-10-23 00:00:00'),(89772,11,'SF5M','Liver fire invading the lung system pattern (TM1)','Y','2025-10-23 00:00:00'),(89771,11,'SF58','Liver fire flaming upward pattern (TM1)','Y','2025-10-23 00:00:00'),(89770,11,'XM7113','Liver extract','Y','2025-10-23 00:00:00'),(89769,11,'QB24','Liver donor','Y','2025-10-23 00:00:00'),(89768,11,'SA02','Liver distension disorder (TM1)','Y','2025-10-23 00:00:00'),(89767,11,'JA65.0','Liver disorders in pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(89766,11,'5C90.0','Liver diseases due to urea cycle defects','Y','2025-10-23 00:00:00'),(89765,11,'5C90.4','Liver diseases due to mitochondrial disorders','Y','2025-10-23 00:00:00'),(89764,11,'5C90.1','Liver diseases due to disorders of porphyrin or bilirubin metabolism or transport','Y','2025-10-23 00:00:00'),(89763,11,'5C90.5','Liver diseases due to disorders of mineral metabolism','Y','2025-10-23 00:00:00'),(89762,11,'5C90.2','Liver diseases due to disorders of amino acid metabolism','Y','2025-10-23 00:00:00'),(89761,11,'5C90.3','Liver disease due to disorders of lysosomal storage','Y','2025-10-23 00:00:00'),(89760,11,'SF55','Liver depression and blood stasis pattern (TM1)','Y','2025-10-23 00:00:00'),(89759,11,'XH68V1','Liver cell adenoma','Y','2025-10-23 00:00:00'),(89758,11,'SF54','Liver blood deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(89757,11,'SF5H','Liver and kidney yin deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(89756,11,'SA04','Liver abscess disorder (TM1)','Y','2025-10-23 00:00:00'),(89755,11,'XA5DY0','Liver','Y','2025-10-23 00:00:00'),(89754,11,'EF50','Livedoid vasculopathy','Y','2025-10-23 00:00:00'),(89753,11,'QA47.Z','Liveborn infants according to place of birth, unspecified','Y','2025-10-23 00:00:00'),(89752,11,'QA47','Liveborn infants according to place of birth','Y','2025-10-23 00:00:00'),(89751,11,'XA29K9','Little fingernail','Y','2025-10-23 00:00:00'),(89750,11,'XA5EN3','Little finger','Y','2025-10-23 00:00:00'),(89749,11,'XM9MC0','Lithium succinate','Y','2025-10-23 00:00:00'),(89747,11,'XM0W09','Lithium gluconate','Y','2025-10-23 00:00:00'),(89748,11,'XM5C35','Lithium salts (carbonate)','Y','2025-10-23 00:00:00'),(89746,11,'XM4AM4','Lithium','Y','2025-10-23 00:00:00'),(89745,11,'XM4E49','Lisuride','Y','2025-10-23 00:00:00'),(89744,11,'1C1A.Z','Listeriosis, unspecified','Y','2025-10-23 00:00:00'),(89743,11,'1C1A','Listeriosis','Y','2025-10-23 00:00:00'),(89742,11,'1C1A.1','Listerial meningitis or meningoencephalitis','Y','2025-10-23 00:00:00'),(89741,11,'XN602','Listeria monocytogenes','Y','2025-10-23 00:00:00'),(89740,11,'XN39H','Listeria ivanovii','Y','2025-10-23 00:00:00'),(89738,11,'XM7TF8','Lisinopril','Y','2025-10-23 00:00:00'),(89739,11,'XN4D1','Listeria','Y','2025-10-23 00:00:00'),(89737,11,'XM4SD7','Lisdexamfetamine','Y','2025-10-23 00:00:00'),(89736,11,'XM0EQ7','Liraglutide','Y','2025-10-23 00:00:00'),(89735,11,'XM0UP4','Liquorice extract','Y','2025-10-23 00:00:00'),(89734,11,'XM9Q09','Liquorice','Y','2025-10-23 00:00:00'),(89733,11,'XM9814','Liquor cresolis compositus','Y','2025-10-23 00:00:00'),(89732,11,'XM8UE2','Liquid paraffin','Y','2025-10-23 00:00:00'),(89731,11,'XM53K7','Liquefied petroleum gas','Y','2025-10-23 00:00:00'),(89730,11,'XH7Y61','Liposarcoma, well differentiated','Y','2025-10-23 00:00:00'),(89729,11,'2B59.Z','Liposarcoma, unspecified primary site','Y','2025-10-23 00:00:00'),(89728,11,'2B59','Liposarcoma, primary site','Y','2025-10-23 00:00:00'),(89727,11,'2B59.Y','Liposarcoma, other specified primary site','Y','2025-10-23 00:00:00'),(89726,11,'XH2J05','Liposarcoma, NOS','Y','2025-10-23 00:00:00'),(89725,11,'2B59.0','Liposarcoma of soft tissue of limb','Y','2025-10-23 00:00:00'),(89724,11,'2B59.1','Liposarcoma of retroperitoneum or peritoneum','Y','2025-10-23 00:00:00'),(89723,11,'2B59.2','Liposarcoma of male genital organs','Y','2025-10-23 00:00:00'),(89722,11,'MF82','Lipoprotein glomerulopathy','Y','2025-10-23 00:00:00'),(89721,11,'XN0ZB','Liponyssoides','Y','2025-10-23 00:00:00'),(89720,11,'2E80.0Z','Lipoma, unspecified site','Y','2025-10-23 00:00:00'),(89719,11,'2E80.0Y','Lipoma, other specified site','Y','2025-10-23 00:00:00'),(89718,11,'XH1PL8','Lipoma, NOS','Y','2025-10-23 00:00:00'),(89716,11,'XH4FS5','Lipoleiomyoma','Y','2025-10-23 00:00:00'),(89717,11,'2E80.0','Lipoma','Y','2025-10-23 00:00:00'),(89714,11,'XH4QB6','Lipofibromatosis','Y','2025-10-23 00:00:00'),(89715,11,'CA71.3','Lipoid pneumonitis','Y','2025-10-23 00:00:00'),(89713,11,'XH5853','Lipofibroadenoma','Y','2025-10-23 00:00:00'),(89712,11,'EF02.2','Lipoedema','Y','2025-10-23 00:00:00'),(89710,11,'BD74.2','Lipodermatosclerosis','Y','2025-10-23 00:00:00'),(89711,11,'EF01.Z','Lipodystrophy of unspecified type','Y','2025-10-23 00:00:00'),(89708,11,'2E80.1','Lipoblastoma','Y','2025-10-23 00:00:00'),(89709,11,'XH8L55','Lipoblastomatosis','Y','2025-10-23 00:00:00'),(89707,11,'EF01','Lipoatrophy or lipodystrophy','Y','2025-10-23 00:00:00'),(89706,11,'XM6F75','Lipo-alprostadil','Y','2025-10-23 00:00:00'),(89705,11,'XH8P28','Lipoadenoma','Y','2025-10-23 00:00:00'),(89704,11,'XH6TK0','Lipid-rich carcinoma','Y','2025-10-23 00:00:00'),(89703,11,'XH9XY1','Lipid cell tumour of ovary','Y','2025-10-23 00:00:00'),(89702,11,'XM1G49','Lipegfilgrastim','Y','2025-10-23 00:00:00'),(89701,11,'DA00.3','Lip fissure','Y','2025-10-23 00:00:00'),(89700,11,'XA8JD4','Lip','Y','2025-10-23 00:00:00'),(89699,11,'XM0P56','Liotrix','Y','2025-10-23 00:00:00'),(89698,11,'XM47Z3','Liothyronine sodium','Y','2025-10-23 00:00:00'),(89697,11,'XM2XB6','Liothyronine','Y','2025-10-23 00:00:00'),(89696,11,'XM6PY9','Lion\'s mane jellyfish venom','Y','2025-10-23 00:00:00'),(89695,11,'XM4CL4','Lionfish venom','Y','2025-10-23 00:00:00'),(89694,11,'XE82S','Lion, puma, panther, cougar, mountain lion, tiger','Y','2025-10-23 00:00:00'),(89693,11,'XM3NR0','Linzagolix','Y','2025-10-23 00:00:00'),(89692,11,'XM5AY1','Linsidomine','Y','2025-10-23 00:00:00'),(89691,11,'XM3VP9','Linseed','Y','2025-10-23 00:00:00'),(89690,11,'XM1MZ1','Linopirdine','Y','2025-10-23 00:00:00'),(89689,11,'XM5VN6','Linolenic acid','Y','2025-10-23 00:00:00'),(89688,11,'XM0H99','Linoleic acid','Y','2025-10-23 00:00:00'),(89687,11,'XH8WM4','Linitis plastica','Y','2025-10-23 00:00:00'),(89685,11,'XA8NY9','Lingual vein','Y','2025-10-23 00:00:00'),(89686,11,'XN9MA','Linguatula serrata','Y','2025-10-23 00:00:00'),(89684,11,'XA1EM4','Lingual tonsil','Y','2025-10-23 00:00:00'),(89683,11,'XA8M68','Lingual surface of tooth','Y','2025-10-23 00:00:00'),(89682,11,'XA5CT7','Lingual nerve','Y','2025-10-23 00:00:00'),(89681,11,'XA1DV2','Lingual lymph node','Y','2025-10-23 00:00:00'),(89680,11,'XA9YA2','Lingual frenulum','Y','2025-10-23 00:00:00'),(89679,11,'XA5TR9','Lingual branch of the inferior alveolar artery','Y','2025-10-23 00:00:00'),(89678,11,'XA2WS5','Lingual artery','Y','2025-10-23 00:00:00'),(89677,11,'XM9WV9','Linezolid','Y','2025-10-23 00:00:00'),(89676,11,'XE80W','Liner component of medical device','Y','2025-10-23 00:00:00'),(89675,11,'KA45.00','Linear skull fracture due to birth injury','Y','2025-10-23 00:00:00'),(89674,11,'EB61.1','Linear morphoea','Y','2025-10-23 00:00:00'),(89673,11,'EB42','Linear IgA bullous dermatosis','Y','2025-10-23 00:00:00'),(89672,11,'DA0C.5','Linear gingival erythema','Y','2025-10-23 00:00:00'),(89671,11,'XJ392','Linear fracture','Y','2025-10-23 00:00:00'),(89670,11,'XK5F','Linear distribution','Y','2025-10-23 00:00:00'),(89669,11,'XM07J5','Lindane vapor','Y','2025-10-23 00:00:00'),(89668,11,'XM8E58','Lindane medicinal','Y','2025-10-23 00:00:00'),(89667,11,'XM16G7','Lindane','Y','2025-10-23 00:00:00'),(89666,11,'XM7E36','Lincosamides','Y','2025-10-23 00:00:00'),(89665,11,'XM53Q9','Lincomycin','Y','2025-10-23 00:00:00'),(89664,11,'XM9X94','Linagliptin','Y','2025-10-23 00:00:00'),(89663,11,'XM3086','Linaclotide','Y','2025-10-23 00:00:00'),(89662,11,'4A42.2','Limited systemic sclerosis','Y','2025-10-23 00:00:00'),(89661,11,'QF10','Limited function or disability of body organ or system','Y','2025-10-23 00:00:00'),(89660,11,'XA1DA5','Limbus of cornea','Y','2025-10-23 00:00:00'),(89659,11,'XA8733','Limbic system','Y','2025-10-23 00:00:00'),(89658,11,'8C70.4Z','Limb-girdle muscular dystrophy, unspecified','Y','2025-10-23 00:00:00'),(89657,11,'8C70.4','Limb-girdle muscular dystrophy','Y','2025-10-23 00:00:00'),(89656,11,'LB97.Z','Limb overgrowth, unspecified','Y','2025-10-23 00:00:00'),(89655,11,'LB97','Limb overgrowth','Y','2025-10-23 00:00:00'),(89654,11,'SD80','Lily disorder (TM1)','Y','2025-10-23 00:00:00'),(89653,11,'XM23X8','Ligustrum vulgare plant','Y','2025-10-23 00:00:00'),(89652,11,'XM4CK0','Ligustrum sinense plant','Y','2025-10-23 00:00:00'),(89651,11,'XM5F38','Ligustrum plant','Y','2025-10-23 00:00:00'),(89650,11,'XM1WT1','Ligustrum lucidum plant','Y','2025-10-23 00:00:00'),(89649,11,'XM48X2','Lignin hemicellulose','Y','2025-10-23 00:00:00'),(89648,11,'9A02.2','Ligneous conjunctivitis','Y','2025-10-23 00:00:00'),(89647,11,'9B02.Z','Light-near dissociations, unspecified','Y','2025-10-23 00:00:00'),(89646,11,'9B02','Light-near dissociations','Y','2025-10-23 00:00:00'),(89645,11,'XE4KD','Lighting appliance','Y','2025-10-23 00:00:00'),(89644,11,'MB48.3','Light-headedness','Y','2025-10-23 00:00:00'),(89643,11,'XE4U8','Lighter, match','Y','2025-10-23 00:00:00'),(89642,11,'XM0R56','Lighter fluid','Y','2025-10-23 00:00:00'),(89641,11,'XE4BF','Light truck, Sports Utility Vehicle (SUV), utility van, 4x4 vehicle, jeep, pick-up truck','Y','2025-10-23 00:00:00'),(89640,11,'XE2TP','Light transport vehicle with four or more wheels used in sport and leisure activities as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(89639,11,'XE0MB','Light transport vehicle with four or more wheels used in sport and leisure activities as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(89638,11,'XE3GH','Light transport vehicle with four or more wheels','Y','2025-10-23 00:00:00'),(89637,11,'XE8XT','Light source problem identified with device','Y','2025-10-23 00:00:00'),(89636,11,'XE5LN','Light source component of medical device','Y','2025-10-23 00:00:00'),(89635,11,'GA20.51','Light menstrual bleeding','Y','2025-10-23 00:00:00'),(89634,11,'XE9JB','Light goods vehicle as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(89633,11,'XE6UN','Light goods vehicle as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(89632,11,'XE6QH','Light emitting diode component of medical device','Y','2025-10-23 00:00:00'),(89631,11,'2A83.52','Light chain deposition disease','Y','2025-10-23 00:00:00'),(89630,11,'2A83.51','Light and heavy chain deposition disease','Y','2025-10-23 00:00:00'),(89629,11,'XA1NT7','Ligamentum teres of the Liver','Y','2025-10-23 00:00:00'),(89628,11,'XA13S4','Ligamentum teres femoris','Y','2025-10-23 00:00:00'),(89627,11,'XA6RG7','Ligamentum nuchae','Y','2025-10-23 00:00:00'),(89626,11,'XA4BC2','Ligaments of the upper extremity','Y','2025-10-23 00:00:00'),(89625,11,'XA2UN9','Ligaments of the thorax','Y','2025-10-23 00:00:00'),(89624,11,'XA9TF3','Ligaments of the pelvis and perineum','Y','2025-10-23 00:00:00'),(89623,11,'XA7U26','Ligaments of the lower extremity','Y','2025-10-23 00:00:00'),(89622,11,'XA1LE7','Ligaments of the head and neck','Y','2025-10-23 00:00:00'),(89621,11,'XA2P74','Ligaments and joints of multiple sites','Y','2025-10-23 00:00:00'),(89620,11,'XA72L3','Ligamenta flava','Y','2025-10-23 00:00:00'),(89619,11,'XA9Y28','Ligament of the wrist and hand','Y','2025-10-23 00:00:00'),(89618,11,'XA81P3','Ligament of the tubercle of the rib','Y','2025-10-23 00:00:00'),(89617,11,'XA93X9','Ligament of the shoulder','Y','2025-10-23 00:00:00'),(89616,11,'XA6ZD7','Ligament of the neck of the rib','Y','2025-10-23 00:00:00'),(89615,11,'XA8P38','Ligament of the knee','Y','2025-10-23 00:00:00'),(89614,11,'XA1A66','Ligament of the hip','Y','2025-10-23 00:00:00'),(89613,11,'XA5Y12','Ligament of the elbow','Y','2025-10-23 00:00:00'),(89612,11,'XA2F70','Ligament of the ankle or foot','Y','2025-10-23 00:00:00'),(89611,11,'XA4S76','Ligament of Struthers','Y','2025-10-23 00:00:00'),(89610,11,'XE3KL','Lifting tool','Y','2025-10-23 00:00:00'),(89609,11,'XE14G','Lifting machinery','Y','2025-10-23 00:00:00'),(89608,11,'XE8PC','Lift, elevator','Y','2025-10-23 00:00:00'),(89607,11,'XM67C4','Lifitegrast','Y','2025-10-23 00:00:00'),(89606,11,'XB5W','Life-style','Y','2025-10-23 00:00:00'),(89605,11,'XM3NU8','Lidoflazine','Y','2025-10-23 00:00:00'),(89604,11,'XM3114','Lidofenin','Y','2025-10-23 00:00:00'),(89603,11,'XM4RU4','Lidocaine spinal','Y','2025-10-23 00:00:00'),(89602,11,'XM93V0','Lidocaine regional','Y','2025-10-23 00:00:00'),(89601,11,'XM2BR1','Lidocaine','Y','2025-10-23 00:00:00'),(89600,11,'XM8C45','Lidex','Y','2025-10-23 00:00:00'),(89599,11,'EA91.43','Lichenoid mucositis','Y','2025-10-23 00:00:00'),(89598,11,'EH62','Lichenoid drug eruption','Y','2025-10-23 00:00:00'),(89597,11,'EA92','Lichenoid dermatoses','Y','2025-10-23 00:00:00'),(89596,11,'EA83','Lichen simplex or lichenification','Y','2025-10-23 00:00:00'),(89595,11,'EA83.00','Lichen simplex of vulva','Y','2025-10-23 00:00:00'),(89594,11,'EA83.0Z','Lichen simplex of unspecified site','Y','2025-10-23 00:00:00'),(89593,11,'EA83.0Y','Lichen simplex of other specified site','Y','2025-10-23 00:00:00'),(89592,11,'EA83.01','Lichen simplex of male genitalia','Y','2025-10-23 00:00:00'),(89591,11,'EA83.0','Lichen simplex','Y','2025-10-23 00:00:00'),(89590,11,'EB60.0','Lichen sclerosus of vulva','Y','2025-10-23 00:00:00'),(89589,11,'EB60.1','Lichen sclerosus of penis','Y','2025-10-23 00:00:00'),(89588,11,'EB60.Y','Lichen sclerosus of other specified sites','Y','2025-10-23 00:00:00'),(89587,11,'EB60','Lichen sclerosus','Y','2025-10-23 00:00:00'),(89586,11,'XH63L8','Lichen planus-like keratosis','Y','2025-10-23 00:00:00'),(89585,11,'EA91.Z','Lichen planus of unspecified type','Y','2025-10-23 00:00:00'),(89584,11,'EA91.5','Lichen planus of the nails','Y','2025-10-23 00:00:00'),(89583,11,'EA91.3','Lichen planus of genital skin and mucous membranes','Y','2025-10-23 00:00:00'),(89582,11,'EA91.4','Lichen planus and lichenoid reactions of oral mucosa','Y','2025-10-23 00:00:00'),(89581,11,'EA91','Lichen planus','Y','2025-10-23 00:00:00'),(89580,11,'EB90.11','Lichen myxoedematosus','Y','2025-10-23 00:00:00'),(89579,11,'XH9G68','Leydig cell tumour, malignant','Y','2025-10-23 00:00:00'),(89578,11,'XH51L7','Leydig cell tumour of the testis, NOS','Y','2025-10-23 00:00:00'),(89577,11,'XH5XQ2','Leydig cell tumour of the ovary, NOS','Y','2025-10-23 00:00:00'),(89576,11,'8A22','Lewy body disease','Y','2025-10-23 00:00:00'),(89575,11,'XM9XU2','Levulose','Y','2025-10-23 00:00:00'),(89573,11,'XM5QU8','Levoverbenone','Y','2025-10-23 00:00:00'),(89574,11,'XM5ED5','Levsin','Y','2025-10-23 00:00:00'),(89572,11,'XM2WC1','Levothyroxine sodium','Y','2025-10-23 00:00:00'),(89571,11,'XM5G81','Levothyroxine','Y','2025-10-23 00:00:00'),(89570,11,'XM0624','Levosulpiride','Y','2025-10-23 00:00:00'),(89569,11,'XM88B5','Levosimendan','Y','2025-10-23 00:00:00'),(89568,11,'XM1R71','Levorphanol','Y','2025-10-23 00:00:00'),(89567,11,'XM3ZP6','Levoproxyphylline','Y','2025-10-23 00:00:00'),(89566,11,'XM3K58','Levopropylhexedrine','Y','2025-10-23 00:00:00'),(89565,11,'XM4P40','Levopropoxyphene','Y','2025-10-23 00:00:00'),(89564,11,'XM9S20','Levoprome','Y','2025-10-23 00:00:00'),(89563,11,'XM65V3','Levonorgestrel with ethinylestradiol','Y','2025-10-23 00:00:00'),(89562,11,'XM6U53','Levonorgestrel','Y','2025-10-23 00:00:00'),(89561,11,'XM4UQ0','Levonordefrin','Y','2025-10-23 00:00:00'),(89560,11,'XM17Z4','Levomilnacipran','Y','2025-10-23 00:00:00'),(89559,11,'XM61Z1','Levomepromazine','Y','2025-10-23 00:00:00'),(89557,11,'XM10Z7','Levoid','Y','2025-10-23 00:00:00'),(89558,11,'XM9RG7','Levo-iso-methadone','Y','2025-10-23 00:00:00'),(89556,11,'XM3CL3','Levofloxacin topical','Y','2025-10-23 00:00:00'),(89555,11,'XM8TH8','Levofloxacin and ornidazole','Y','2025-10-23 00:00:00'),(89554,11,'XM7KX7','Levofloxacin','Y','2025-10-23 00:00:00'),(89553,11,'XM97D0','Levodropropizine','Y','2025-10-23 00:00:00'),(89552,11,'XM5F21','Levo-dromoran','Y','2025-10-23 00:00:00'),(89551,11,'XM3PK3','Levodopa, Decarboxylase inhibitor and COMT inhibitor','Y','2025-10-23 00:00:00'),(89550,11,'XM3MW1','Levodopa with carbidopa','Y','2025-10-23 00:00:00'),(89549,11,'XM7ZB9','Levodopa and decarboxylase inhibitor','Y','2025-10-23 00:00:00'),(89548,11,'XM2WU7','Levodopa','Y','2025-10-23 00:00:00'),(89547,11,'XM5AC9','Levocetirizine','Y','2025-10-23 00:00:00'),(89546,11,'XM4TB9','Levocabastine (hydrochloride)','Y','2025-10-23 00:00:00'),(89545,11,'XM32J7','Levocabastine','Y','2025-10-23 00:00:00'),(89544,11,'XM8098','Levobunolol','Y','2025-10-23 00:00:00'),(89543,11,'XM9326','Levetiracetam','Y','2025-10-23 00:00:00'),(89542,11,'XE5XR','Lever component of medical device','Y','2025-10-23 00:00:00'),(89541,11,'XA5R18','Levatores costarum tendon','Y','2025-10-23 00:00:00'),(89540,11,'XA7VD7','Levator veli palatini tendon','Y','2025-10-23 00:00:00'),(89539,11,'XA5LP4','Levator veli palatini muscle','Y','2025-10-23 00:00:00'),(89538,11,'XA1X89','Levator scapulae tendon','Y','2025-10-23 00:00:00'),(89537,11,'XA00C1','Levator scapulae muscle','Y','2025-10-23 00:00:00'),(89536,11,'XA61C9','Levator palpebrae superioris tendon','Y','2025-10-23 00:00:00'),(89535,11,'XA2R46','Levator palpebrae superioris muscle','Y','2025-10-23 00:00:00'),(89534,11,'XA0YK7','Levator labii superioris tendon','Y','2025-10-23 00:00:00'),(89533,11,'XA1490','Levator labii superioris muscle','Y','2025-10-23 00:00:00'),(89532,11,'XA7NL0','Levator costarum muscle','Y','2025-10-23 00:00:00'),(89531,11,'GC40.40','Levator avulsion from symphysis pubis','Y','2025-10-23 00:00:00'),(89530,11,'XA9T66','Levator ani-coccygeus muscle','Y','2025-10-23 00:00:00'),(89529,11,'XA7653','Levator anguli oris tendon','Y','2025-10-23 00:00:00'),(89528,11,'XA75X0','Levator anguli oris muscle','Y','2025-10-23 00:00:00'),(89527,11,'XM40A2','Levant viper snake venom','Y','2025-10-23 00:00:00'),(89526,11,'XM1SJ9','Levanil','Y','2025-10-23 00:00:00'),(89525,11,'XM91L4','Levamlodipine','Y','2025-10-23 00:00:00'),(89524,11,'XM5W42','Levamisole','Y','2025-10-23 00:00:00'),(89523,11,'XM65J2','Levallorphan','Y','2025-10-23 00:00:00'),(89522,11,'XM6EU7','Levalbuterol','Y','2025-10-23 00:00:00'),(89521,11,'XM3S25','Leuprorelin','Y','2025-10-23 00:00:00'),(89520,11,'XM3GP5','Leuprolide','Y','2025-10-23 00:00:00'),(89519,11,'SC20','Leukorrhea disorder (TM1)','Y','2025-10-23 00:00:00'),(89518,11,'GA14.5','Leukoplakia of vagina','Y','2025-10-23 00:00:00'),(89517,11,'DA01.00','Leukoplakia','Y','2025-10-23 00:00:00'),(89516,11,'8A44.Z','Leukodystrophies, unspecified','Y','2025-10-23 00:00:00'),(89515,11,'8A44','Leukodystrophies','Y','2025-10-23 00:00:00'),(89514,11,'4A44.BZ','Leukocytoclastic vasculitis, unspecified','Y','2025-10-23 00:00:00'),(89513,11,'4A44.B','Leukocytoclastic vasculitis','Y','2025-10-23 00:00:00'),(89512,11,'2B33.4','Leukaemia, unspecified','Y','2025-10-23 00:00:00'),(89511,11,'XH4S92','Leukaemia, NOS','Y','2025-10-23 00:00:00'),(89510,11,'XM16W1','Leucovorin (factor)','Y','2025-10-23 00:00:00'),(89509,11,'XA32R4','Leucocytes','Y','2025-10-23 00:00:00'),(89508,11,'XM63M1','Leucocianidol','Y','2025-10-23 00:00:00'),(89507,11,'XM5863','Leucinocaine','Y','2025-10-23 00:00:00'),(89506,11,'XM4H38','Leucine','Y','2025-10-23 00:00:00'),(89505,11,'XM2447','Lettuce opium','Y','2025-10-23 00:00:00'),(89504,11,'XH60Q1','Letterer-Siwe disease','Y','2025-10-23 00:00:00'),(89503,11,'XM2J37','Letrozole','Y','2025-10-23 00:00:00'),(89502,11,'XM2K57','Letosteine','Y','2025-10-23 00:00:00'),(89501,11,'XM01X3','Letermovir','Y','2025-10-23 00:00:00'),(89499,11,'XA9TD9','Lesser trochanter of femur','Y','2025-10-23 00:00:00'),(89500,11,'XA72X2','Lesser tuberosity of the humerus','Y','2025-10-23 00:00:00'),(89498,11,'XA5Z38','Lesser palatine artery','Y','2025-10-23 00:00:00'),(89497,11,'XA3ND8','Lesser occipital nerve','Y','2025-10-23 00:00:00'),(89496,11,'XA4ML9','Lesser curvature of stomach','Y','2025-10-23 00:00:00'),(89495,11,'XM11L8','Lesser Asian scorpion venom','Y','2025-10-23 00:00:00'),(89494,11,'8C10.1','Lesion of ulnar nerve','Y','2025-10-23 00:00:00'),(89493,11,'8C11.4','Lesion of tibial nerve','Y','2025-10-23 00:00:00'),(89492,11,'8C12.2','Lesion of suprascapular nerve','Y','2025-10-23 00:00:00'),(89491,11,'8C11.0Z','Lesion of sciatic nerve, unspecified','Y','2025-10-23 00:00:00'),(89490,11,'8C11.0','Lesion of sciatic nerve','Y','2025-10-23 00:00:00'),(89489,11,'8C10.2','Lesion of radial nerve','Y','2025-10-23 00:00:00'),(89488,11,'8C11.6','Lesion of plantar nerve','Y','2025-10-23 00:00:00'),(89487,11,'8C12.4','Lesion of long thoracic nerve','Y','2025-10-23 00:00:00'),(89486,11,'8C11.2','Lesion of femoral nerve','Y','2025-10-23 00:00:00'),(89485,11,'8C11.3','Lesion of common peroneal nerve','Y','2025-10-23 00:00:00'),(89484,11,'8C12.3','Lesion of axillary nerve','Y','2025-10-23 00:00:00'),(89483,11,'XM95H8','Lesinurad','Y','2025-10-23 00:00:00'),(89482,11,'5C55.01','Lesch-Nyhan syndrome','Y','2025-10-23 00:00:00'),(89481,11,'XM3MV9','Lercanidipine','Y','2025-10-23 00:00:00'),(89480,11,'XN5SN','Leptotrichia wadei','Y','2025-10-23 00:00:00'),(89479,11,'XN6QY','Leptotrichia trevisanii','Y','2025-10-23 00:00:00'),(89478,11,'XN7NF','Leptotrichia shahii','Y','2025-10-23 00:00:00'),(89477,11,'XN4SA','Leptotrichia hongkongensis','Y','2025-10-23 00:00:00'),(89476,11,'XN0SF','Leptotrichia hofstadii','Y','2025-10-23 00:00:00'),(89475,11,'XN4GY','Leptotrichia goodfellowii','Y','2025-10-23 00:00:00'),(89474,11,'XN734','Leptotrichia buccalis','Y','2025-10-23 00:00:00'),(89473,11,'XN2JD','Leptotrichia','Y','2025-10-23 00:00:00'),(89472,11,'1B91','Leptospirosis','Y','2025-10-23 00:00:00'),(89471,11,'XN5UB','Leptospira','Y','2025-10-23 00:00:00'),(89470,11,'XN77E','Leptospira wolffii','Y','2025-10-23 00:00:00'),(89468,11,'XN4FL','Leptospira species','Y','2025-10-23 00:00:00'),(89469,11,'XN4E7','Leptospira weilii','Y','2025-10-23 00:00:00'),(89466,11,'XN4KP','Leptospira noguchii','Y','2025-10-23 00:00:00'),(89467,11,'XN01X','Leptospira santarosai','Y','2025-10-23 00:00:00'),(89465,11,'XN6NU','Leptospira licerasiae','Y','2025-10-23 00:00:00'),(89464,11,'XN481','Leptospira kmetyi','Y','2025-10-23 00:00:00'),(89463,11,'XN110','Leptospira kirschneri','Y','2025-10-23 00:00:00'),(89462,11,'XN78P','Leptospira interrogans','Y','2025-10-23 00:00:00'),(89461,11,'XN20F','Leptospira inadai','Y','2025-10-23 00:00:00'),(89460,11,'XN5HC','Leptospira fainei','Y','2025-10-23 00:00:00'),(89458,11,'XN7D2','Leptospira borgpetersenii','Y','2025-10-23 00:00:00'),(89459,11,'XN9K9','Leptospira broomii','Y','2025-10-23 00:00:00'),(89456,11,'XN9RA','Leptospira','Y','2025-10-23 00:00:00'),(89457,11,'XN1R8','Leptospira alexanderi','Y','2025-10-23 00:00:00'),(89455,11,'XM6A89','Leptophos','Y','2025-10-23 00:00:00'),(89454,11,'XM6YR1','Leptazol','Y','2025-10-23 00:00:00'),(89453,11,'1B20.Z','Leprosy, unspecified','Y','2025-10-23 00:00:00'),(89452,11,'1B20.2','Leprosy reactions','Y','2025-10-23 00:00:00'),(89451,11,'1B20','Leprosy','Y','2025-10-23 00:00:00'),(89450,11,'XM2HU1','Lepirudin','Y','2025-10-23 00:00:00'),(89449,11,'XM2BC2','Lepiota mushroom','Y','2025-10-23 00:00:00'),(89448,11,'XM8R10','Lepiota josserandii mushroom','Y','2025-10-23 00:00:00'),(89447,11,'XM1UJ5','Lepiota helveola mushroom','Y','2025-10-23 00:00:00'),(89446,11,'XM6882','Lepiota fulvella mushroom','Y','2025-10-23 00:00:00'),(89445,11,'XM0FJ0','Lepiota chlorophyllum mushroom','Y','2025-10-23 00:00:00'),(89444,11,'XM4L76','Lepiota brunneolilacea mushroom','Y','2025-10-23 00:00:00'),(89443,11,'XM7K06','Lepiota brunneoincarnata mushroom','Y','2025-10-23 00:00:00'),(89442,11,'XH24W2','Lepidic adenocarcinoma','Y','2025-10-23 00:00:00'),(89441,11,'XM7ZH9','Lenvatinib','Y','2025-10-23 00:00:00'),(89440,11,'XN5R7','Lentivirus','Y','2025-10-23 00:00:00'),(89439,11,'XM6GW5','Lentinan','Y','2025-10-23 00:00:00'),(89438,11,'2C30.2','Lentigo maligna melanoma, primary','Y','2025-10-23 00:00:00'),(89437,11,'XH9NL4','Lentigo maligna melanoma','Y','2025-10-23 00:00:00'),(89436,11,'XH9KY6','Lentigo maligna','Y','2025-10-23 00:00:00'),(89435,11,'2E63.00','Lentigo maligna','Y','2025-10-23 00:00:00'),(89434,11,'XH9QC8','Lentiginous melanocytic naevus','Y','2025-10-23 00:00:00'),(89433,11,'XA8W72','Lentiform nucleus','Y','2025-10-23 00:00:00'),(89432,11,'XM9AZ3','Lente iletin (insulin)','Y','2025-10-23 00:00:00'),(89431,11,'9C61.22','Lens-induced secondary open-angle glaucoma','Y','2025-10-23 00:00:00'),(89430,11,'XE616','Lenses component of medical device','Y','2025-10-23 00:00:00'),(89429,11,'XM6E81','Lenperone','Y','2025-10-23 00:00:00'),(89428,11,'XM7UB4','Lenograstim','Y','2025-10-23 00:00:00'),(89427,11,'8A62.1','Lennox-Gastaut syndrome','Y','2025-10-23 00:00:00'),(89426,11,'XM5Q10','Lenalidomide','Y','2025-10-23 00:00:00'),(89425,11,'XM85A9','Lenacapavir','Y','2025-10-23 00:00:00'),(89424,11,'XM9235','Lemborexant','Y','2025-10-23 00:00:00'),(89423,11,'XE617','Leisure or play','Y','2025-10-23 00:00:00'),(89422,11,'1F54.Z','Leishmaniasis, unspecified','Y','2025-10-23 00:00:00'),(89421,11,'1F54','Leishmaniasis','Y','2025-10-23 00:00:00'),(89420,11,'XN95N','Leishmania tropica','Y','2025-10-23 00:00:00'),(89419,11,'XN1EE','Leishmania mexicana','Y','2025-10-23 00:00:00'),(89418,11,'XN7EU','Leishmania major','Y','2025-10-23 00:00:00'),(89417,11,'XN1M5','Leishmania donovani infantum','Y','2025-10-23 00:00:00'),(89416,11,'XN3HN','Leishmania chagasii','Y','2025-10-23 00:00:00'),(89415,11,'XN6DJ','Leishmania brasiliensis','Y','2025-10-23 00:00:00'),(89414,11,'XN87Z','Leishmania aethiopica','Y','2025-10-23 00:00:00'),(89413,11,'XN8JE','Leishmania','Y','2025-10-23 00:00:00'),(89412,11,'2B58.Z','Leiomyosarcoma, unspecified primary site','Y','2025-10-23 00:00:00'),(89411,11,'2B58','Leiomyosarcoma, primary site','Y','2025-10-23 00:00:00'),(89410,11,'2B58.Y','Leiomyosarcoma, other specified primary site','Y','2025-10-23 00:00:00'),(89409,11,'XH7ED4','Leiomyosarcoma, NOS','Y','2025-10-23 00:00:00'),(89408,11,'XH22N2','Leiomyosarcoma, cutaneous','Y','2025-10-23 00:00:00'),(89407,11,'2B58.1','Leiomyosarcoma of uterus','Y','2025-10-23 00:00:00'),(89406,11,'2B58.2','Leiomyosarcoma of stomach','Y','2025-10-23 00:00:00'),(89405,11,'2B58.0','Leiomyosarcoma of retroperitoneum or peritoneum','Y','2025-10-23 00:00:00'),(89404,11,'XH8MR2','Leiomyomatosis, peritonealis disseminata','Y','2025-10-23 00:00:00'),(89403,11,'XH2L80','Leiomyomatosis, NOS','Y','2025-10-23 00:00:00'),(89402,11,'XH4CY6','Leiomyoma, NOS','Y','2025-10-23 00:00:00'),(89401,11,'XH5Z76','Leiomyoma, hydropic','Y','2025-10-23 00:00:00'),(89400,11,'XH8B88','Leiomyoma, apoplectic','Y','2025-10-23 00:00:00'),(89399,11,'2E86.0','Leiomyoma of uterus','Y','2025-10-23 00:00:00'),(89398,11,'2E86.1','Leiomyoma of other or unspecified sites','Y','2025-10-23 00:00:00'),(89397,11,'5C53.24','Leigh syndrome','Y','2025-10-23 00:00:00'),(89396,11,'1C19.1','Legionnaires disease','Y','2025-10-23 00:00:00'),(89395,11,'1C19','Legionellosis','Y','2025-10-23 00:00:00'),(89394,11,'XN9YS','Legionella pneumophila','Y','2025-10-23 00:00:00'),(89393,11,'XN14Z','Legionella longbeachae','Y','2025-10-23 00:00:00'),(89392,11,'XN3SZ','Legionella','Y','2025-10-23 00:00:00'),(89391,11,'PJ4Z','Legal intervention involving unspecified means','Y','2025-10-23 00:00:00'),(89390,11,'PJ43','Legal intervention involving sharp object','Y','2025-10-23 00:00:00'),(89389,11,'PJ40','Legal intervention involving projectile from firearm','Y','2025-10-23 00:00:00'),(89388,11,'PJ41','Legal intervention involving other projectile','Y','2025-10-23 00:00:00'),(89387,11,'PJ4Y','Legal intervention involving other means','Y','2025-10-23 00:00:00'),(89386,11,'PJ46','Legal intervention involving gas','Y','2025-10-23 00:00:00'),(89385,11,'PJ45','Legal intervention involving explosive','Y','2025-10-23 00:00:00'),(89384,11,'PJ44','Legal intervention involving electric weapon','Y','2025-10-23 00:00:00'),(89383,11,'PJ42','Legal intervention involving blunt object','Y','2025-10-23 00:00:00'),(89382,11,'PJ47','Legal intervention involving application of physical force','Y','2025-10-23 00:00:00'),(89381,11,'XA7S34','Left ventricular papillary muscles','Y','2025-10-23 00:00:00'),(89380,11,'BD11.Z','Left ventricular failure, unspecified','Y','2025-10-23 00:00:00'),(89379,11,'BD11.2','Left ventricular failure with reduced ejection fraction','Y','2025-10-23 00:00:00'),(89378,11,'BD11.0','Left ventricular failure with preserved ejection fraction','Y','2025-10-23 00:00:00'),(89377,11,'BD11.1','Left ventricular failure with mid range ejection fraction','Y','2025-10-23 00:00:00'),(89376,11,'BD11','Left ventricular failure','Y','2025-10-23 00:00:00'),(89375,11,'XA8FJ7','Left ventricle','Y','2025-10-23 00:00:00'),(89374,11,'LA86.0','Left superior caval vein','Y','2025-10-23 00:00:00'),(89373,11,'XA0CS1','Left submandibular gland','Y','2025-10-23 00:00:00'),(89372,11,'DD71.1','Left sided ulcerative colitis','Y','2025-10-23 00:00:00'),(89371,11,'XA3524','Left recurrent laryngeal nerve','Y','2025-10-23 00:00:00'),(89370,11,'XA1WN5','Left pulmonary vein','Y','2025-10-23 00:00:00'),(89369,11,'BC63.41','Left posterior fascicular block','Y','2025-10-23 00:00:00'),(89368,11,'XA1SH6','Left obtuse marginal artery','Y','2025-10-23 00:00:00'),(89367,11,'XA0HP7','Left marginal vein of heart','Y','2025-10-23 00:00:00'),(89366,11,'XA0F62','Left main coronary artery','Y','2025-10-23 00:00:00'),(89365,11,'XA5FV2','Left main bronchus','Y','2025-10-23 00:00:00'),(89364,11,'XA2UD3','Left lung','Y','2025-10-23 00:00:00'),(89363,11,'XA8LV3','Left lobe of thyroid gland','Y','2025-10-23 00:00:00'),(89362,11,'XA5766','Left lobe of liver','Y','2025-10-23 00:00:00'),(89361,11,'LA84','Left isomerism','Y','2025-10-23 00:00:00'),(89360,11,'XA89K4','Left hepatic duct','Y','2025-10-23 00:00:00'),(89359,11,'9D42.61','Left hemi-field homonymous hemianopia or quadrant anopia','Y','2025-10-23 00:00:00'),(89358,11,'XA9AQ6','Left gastro-omental artery','Y','2025-10-23 00:00:00'),(89357,11,'XA73S8','Left gastric vein','Y','2025-10-23 00:00:00'),(89356,11,'XA0LL0','Left gastric artery','Y','2025-10-23 00:00:00'),(89355,11,'XA2WF1','Left colic vein','Y','2025-10-23 00:00:00'),(89354,11,'XA6WR7','Left colic artery','Y','2025-10-23 00:00:00'),(89353,11,'XA9FX9','Left circumflex artery','Y','2025-10-23 00:00:00'),(89352,11,'BC63.4Z','Left bundle branch block, fascicle unspecified','Y','2025-10-23 00:00:00'),(89351,11,'BC63.4','Left bundle branch block','Y','2025-10-23 00:00:00'),(89350,11,'XA6548','Left atrium','Y','2025-10-23 00:00:00'),(89349,11,'BE1F.1','Left atrial erosion due to implanted device','Y','2025-10-23 00:00:00'),(89348,11,'BC63.40','Left anterior fascicular block','Y','2025-10-23 00:00:00'),(89347,11,'XA7NQ7','Left anterior descending coronary artery','Y','2025-10-23 00:00:00'),(89346,11,'XK8G','Left','Y','2025-10-23 00:00:00'),(89345,11,'XM5M04','Leflunomide','Y','2025-10-23 00:00:00'),(89344,11,'XM6233','Lefetamine','Y','2025-10-23 00:00:00'),(89343,11,'XM9QK9','Lefamulin','Y','2025-10-23 00:00:00'),(89342,11,'XN2K0','Leech','Y','2025-10-23 00:00:00'),(89341,11,'XN2CJ','Lechiguanas virus','Y','2025-10-23 00:00:00'),(89340,11,'XM3R78','Lebanese red','Y','2025-10-23 00:00:00'),(89339,11,'XE2ZX','Leaves, flowers','Y','2025-10-23 00:00:00'),(89338,11,'VV8Z','Learning and applying knowledge, unspecified','Y','2025-10-23 00:00:00'),(89337,11,'XE1P8','Leakage or seal problem identified with device','Y','2025-10-23 00:00:00'),(89336,11,'XE944','Leak or splash','Y','2025-10-23 00:00:00'),(89335,11,'XE1VQ','Leaflet component of medical device','Y','2025-10-23 00:00:00'),(89334,11,'FA25.10','Lead-induced gout','Y','2025-10-23 00:00:00'),(89333,11,'MB24.D','Leaden paralysis','Y','2025-10-23 00:00:00'),(89332,11,'XM3ZU1','Lead sulfide','Y','2025-10-23 00:00:00'),(89331,11,'XM0891','Lead paint, not elsewhere classified','Y','2025-10-23 00:00:00'),(89330,11,'XM2R16','Lead oxide','Y','2025-10-23 00:00:00'),(89329,11,'XM7LD9','Lead monoxide','Y','2025-10-23 00:00:00'),(89328,11,'XM4EW1','Lead iodide','Y','2025-10-23 00:00:00'),(89327,11,'XM59W8','Lead dioxide','Y','2025-10-23 00:00:00'),(89326,11,'XE7F1','Lead conductor component of medical device','Y','2025-10-23 00:00:00'),(89325,11,'XM91V9','Lead chromate','Y','2025-10-23 00:00:00'),(89324,11,'XM3Y96','Lead carbonate','Y','2025-10-23 00:00:00'),(89323,11,'XM9WK6','Lead azide','Y','2025-10-23 00:00:00'),(89322,11,'XM3M96','Lead arsenite','Y','2025-10-23 00:00:00'),(89321,11,'XM8LC6','Lead arsenate','Y','2025-10-23 00:00:00'),(89320,11,'XM2PV9','Lead antimonate','Y','2025-10-23 00:00:00'),(89319,11,'XM7T64','Lead anti-infectives','Y','2025-10-23 00:00:00'),(89318,11,'XM17Q5','Lead alkyl','Y','2025-10-23 00:00:00'),(89317,11,'XM5071','Lead acetate nonmedicinal','Y','2025-10-23 00:00:00'),(89316,11,'XM8P35','Lead acetate','Y','2025-10-23 00:00:00'),(89315,11,'XM0ZH6','Lead','Y','2025-10-23 00:00:00'),(89314,11,'NA02.42','Le Fort fracture type III','Y','2025-10-23 00:00:00'),(89313,11,'NA02.41','Le Fort fracture type II','Y','2025-10-23 00:00:00'),(89312,11,'NA02.40','Le Fort fracture type I','Y','2025-10-23 00:00:00'),(89311,11,'XH7LW9','L-cell tumour','Y','2025-10-23 00:00:00'),(89310,11,'XM5NK8','Laxative saline','Y','2025-10-23 00:00:00'),(89309,11,'XM4WX6','Laxative osmotic','Y','2025-10-23 00:00:00'),(89308,11,'XE4QT','Law enforcement equipment','Y','2025-10-23 00:00:00'),(89307,11,'XM4DF5','Lavandulae aetheroleum','Y','2025-10-23 00:00:00'),(89306,11,'XM2273','Lauryl sulfoacetate','Y','2025-10-23 00:00:00'),(89304,11,'XM3676','Laudexium','Y','2025-10-23 00:00:00'),(89305,11,'XM3U48','Laurolinium','Y','2025-10-23 00:00:00'),(89303,11,'XM1EE2','Laudanum','Y','2025-10-23 00:00:00'),(89302,11,'XA8467','Latissimus dorsi tendon','Y','2025-10-23 00:00:00'),(89301,11,'XA9AG9','Latissimus dorsi muscle','Y','2025-10-23 00:00:00'),(89300,11,'XM5EH9','Lathyrus sativus plant','Y','2025-10-23 00:00:00'),(89299,11,'XM7762','Latex','Y','2025-10-23 00:00:00'),(89298,11,'XA8RX5','Lateral wall of oropharynx','Y','2025-10-23 00:00:00'),(89297,11,'XA7PX5','Lateral wall of nasopharynx','Y','2025-10-23 00:00:00'),(89296,11,'XA3XS7','Lateral wall of heart','Y','2025-10-23 00:00:00'),(89295,11,'XA3JA5','Lateral wall of bladder','Y','2025-10-23 00:00:00'),(89294,11,'XA28F6','Lateral vesical lymphatic vessel of the bladder','Y','2025-10-23 00:00:00'),(89293,11,'XA45Y8','Lateral ventricle of the brain','Y','2025-10-23 00:00:00'),(89292,11,'XA4A41','Lateral thoracic vein','Y','2025-10-23 00:00:00'),(89291,11,'XA7884','Lateral thoracic region','Y','2025-10-23 00:00:00'),(89290,11,'XA3DE1','Lateral thoracic artery','Y','2025-10-23 00:00:00'),(89289,11,'XA4VX8','Lateral talocalcaneal ligament','Y','2025-10-23 00:00:00'),(89288,11,'XA2W33','Lateral surface of upper arm','Y','2025-10-23 00:00:00'),(89286,11,'XA4RR4','Lateral surface of lower leg','Y','2025-10-23 00:00:00'),(89287,11,'XA8RH9','Lateral surface of thigh','Y','2025-10-23 00:00:00'),(89285,11,'XA77E9','Lateral surface of knee','Y','2025-10-23 00:00:00'),(89284,11,'XA3R99','Lateral surface of heel','Y','2025-10-23 00:00:00'),(89283,11,'XA1VA2','Lateral surface of forearm','Y','2025-10-23 00:00:00'),(89282,11,'XA7AM4','Lateral surface of ankle','Y','2025-10-23 00:00:00'),(89281,11,'XA1D83','Lateral supramalleolar region','Y','2025-10-23 00:00:00'),(89280,11,'XA9JN5','Lateral side wall of nose','Y','2025-10-23 00:00:00'),(89279,11,'XA4B16','Lateral sacrococcygeal ligament','Y','2025-10-23 00:00:00'),(89278,11,'XA4PJ8','Lateral sacral vein','Y','2025-10-23 00:00:00'),(89277,11,'XA1EN9','Lateral sacral lymph node','Y','2025-10-23 00:00:00'),(89276,11,'XA5Y50','Lateral sacral artery','Y','2025-10-23 00:00:00'),(89275,11,'XA41K4','Lateral retromalleolar region','Y','2025-10-23 00:00:00'),(89274,11,'XA3LT8','Lateral rectus tendon','Y','2025-10-23 00:00:00'),(89273,11,'XA3282','Lateral rectus muscle','Y','2025-10-23 00:00:00'),(89272,11,'XA6PK4','Lateral pterygoid tendon','Y','2025-10-23 00:00:00'),(89271,11,'XA3114','Lateral pterygoid nerve','Y','2025-10-23 00:00:00'),(89270,11,'XA8ZB7','Lateral pterygoid muscle','Y','2025-10-23 00:00:00'),(89269,11,'XA0L88','Lateral plantar vein','Y','2025-10-23 00:00:00'),(89268,11,'XA9958','Lateral plantar nerve','Y','2025-10-23 00:00:00'),(89267,11,'XA6QR6','Lateral plantar artery','Y','2025-10-23 00:00:00'),(89266,11,'XA5A06','Lateral pectoral nerve','Y','2025-10-23 00:00:00'),(89265,11,'XA0Z20','Lateral palpebral vein','Y','2025-10-23 00:00:00'),(89264,11,'XA00Q9','Lateral palpebral artery','Y','2025-10-23 00:00:00'),(89263,11,'XA3N26','Lateral nasal branch of the facial artery','Y','2025-10-23 00:00:00'),(89262,11,'XA4GD7','Lateral nailfold of thumb','Y','2025-10-23 00:00:00'),(89261,11,'XA1MM3','Lateral nail fold of third toe','Y','2025-10-23 00:00:00'),(89260,11,'XA7003','Lateral nail fold of second toe','Y','2025-10-23 00:00:00'),(89259,11,'XA3HG9','Lateral nail fold of ring finger','Y','2025-10-23 00:00:00'),(89258,11,'XA2N38','Lateral nail fold of middle finger','Y','2025-10-23 00:00:00'),(89256,11,'XA7GD8','Lateral nail fold of great toe','Y','2025-10-23 00:00:00'),(89257,11,'XA3LC5','Lateral nail fold of little finger','Y','2025-10-23 00:00:00'),(89255,11,'XA0PV4','Lateral nail fold of fourth toe','Y','2025-10-23 00:00:00'),(89254,11,'XA38J0','Lateral nail fold of fifth toe','Y','2025-10-23 00:00:00'),(89252,11,'XA1304','Lateral mass of first cervical vertebra','Y','2025-10-23 00:00:00'),(89253,11,'XA6HQ4','Lateral meniscus of knee joint','Y','2025-10-23 00:00:00'),(89250,11,'XA49C6','Lateral margin of tongue','Y','2025-10-23 00:00:00'),(89251,11,'XA4L08','Lateral marginal vein','Y','2025-10-23 00:00:00'),(89248,11,'NA0D.13','Lateral luxation of tooth','Y','2025-10-23 00:00:00'),(89249,11,'XA4UL1','Lateral malleolus','Y','2025-10-23 00:00:00'),(89247,11,'XA1DN2','Lateral lumbar region','Y','2025-10-23 00:00:00'),(89246,11,'XA4B67','Lateral inferior genicular artery','Y','2025-10-23 00:00:00'),(89245,11,'XA9CM2','Lateral half of breast','Y','2025-10-23 00:00:00'),(89244,11,'XA1Z38','Lateral forehead','Y','2025-10-23 00:00:00'),(89243,11,'XA4834','Lateral femoral cutaneous nerve','Y','2025-10-23 00:00:00'),(89242,11,'XA74K2','Lateral femoral circumflex vein','Y','2025-10-23 00:00:00'),(89241,11,'XA9EP9','Lateral femoral circumflex artery','Y','2025-10-23 00:00:00'),(89240,11,'FB55.1','Lateral epicondylitis of elbow','Y','2025-10-23 00:00:00'),(89239,11,'XA6EF8','Lateral epicondyle of the humerus','Y','2025-10-23 00:00:00'),(89238,11,'NC93.23','Lateral dislocation of proximal end of tibia','Y','2025-10-23 00:00:00'),(89237,11,'NC93.10','Lateral dislocation of patella','Y','2025-10-23 00:00:00'),(89236,11,'XA1XQ2','Lateral cutaneous nerve of thigh','Y','2025-10-23 00:00:00'),(89235,11,'XA6166','Lateral cutaneous nerve of forearm','Y','2025-10-23 00:00:00'),(89234,11,'XA8462','Lateral cuneiform bone','Y','2025-10-23 00:00:00'),(89233,11,'XA1394','Lateral cricoarytenoid tendon','Y','2025-10-23 00:00:00'),(89232,11,'XA5WQ9','Lateral cricoarytenoid muscle','Y','2025-10-23 00:00:00'),(89231,11,'XA9PG2','Lateral cord of brachial plexus','Y','2025-10-23 00:00:00'),(89230,11,'XA87A0','Lateral condyle of tibia','Y','2025-10-23 00:00:00'),(89229,11,'XA6599','Lateral condylar surface of elbow','Y','2025-10-23 00:00:00'),(89227,11,'XA0403','Lateral canthus','Y','2025-10-23 00:00:00'),(89228,11,'XA1W79','Lateral cervical lymph node','Y','2025-10-23 00:00:00'),(89226,11,'XA16L7','Lateral branch of the posterior inferior cerebellar artery','Y','2025-10-23 00:00:00'),(89225,11,'XA9Y82','Lateral border of foot','Y','2025-10-23 00:00:00'),(89224,11,'XA6NK2','Lateral axillary lymph node','Y','2025-10-23 00:00:00'),(89223,11,'XA97L7','Lateral atlantooccipital ligament','Y','2025-10-23 00:00:00'),(89221,11,'XK09','Lateral','Y','2025-10-23 00:00:00'),(89222,11,'XA6KK3','Lateral aortic lymph node','Y','2025-10-23 00:00:00'),(89220,11,'1C1D.3','Latent yaws','Y','2025-10-23 00:00:00'),(89219,11,'1B14','Latent tuberculosis','Y','2025-10-23 00:00:00'),(89218,11,'1A63','Latent syphilis, unspecified as early or late','Y','2025-10-23 00:00:00'),(89217,11,'1A61.5','Latent early syphilis','Y','2025-10-23 00:00:00'),(89216,11,'SG65','Late Yin stage Patterns (TM1)','Y','2025-10-23 00:00:00'),(89214,11,'JA60.2','Late vomiting of pregnancy','Y','2025-10-23 00:00:00'),(89215,11,'SG62','Late yang stage pattern (TM1)','Y','2025-10-23 00:00:00'),(89213,11,'1A62.Z','Late syphilis, unspecified','Y','2025-10-23 00:00:00'),(89212,11,'1A62.22','Late syphilis of skin or mucous membranes','Y','2025-10-23 00:00:00'),(89210,11,'1A62','Late syphilis','Y','2025-10-23 00:00:00'),(89211,11,'1A62.21','Late syphilis involving the musculoskeletal system','Y','2025-10-23 00:00:00'),(89208,11,'XT3R','Late onset','Y','2025-10-23 00:00:00'),(89209,11,'8A03.20','Late onset cerebellar cortical atrophy','Y','2025-10-23 00:00:00'),(89207,11,'XT30','Late Neonatal','Y','2025-10-23 00:00:00'),(89205,11,'1C1E.2','Late lesions of pinta','Y','2025-10-23 00:00:00'),(89206,11,'KB63.0','Late metabolic acidosis of newborn','Y','2025-10-23 00:00:00'),(89204,11,'8B61.1','Late infantile spinal muscular atrophy, Type II','Y','2025-10-23 00:00:00'),(89203,11,'XT13','Late Geriatric','Y','2025-10-23 00:00:00'),(89201,11,'8B25.2','Late effects of subarachnoid haemorrhage','Y','2025-10-23 00:00:00'),(89202,11,'LA30.51','Late exfoliation of teeth','Y','2025-10-23 00:00:00'),(89200,11,'8B25.4','Late effects of stroke not known if ischaemic or haemorrhagic','Y','2025-10-23 00:00:00'),(89199,11,'8B25.Y','Late effects of other specified cerebrovascular disease','Y','2025-10-23 00:00:00'),(89198,11,'8B25.3','Late effects of other nontraumatic intracranial haemorrhage','Y','2025-10-23 00:00:00'),(89197,11,'8B25.1','Late effects of intracerebral haemorrhage','Y','2025-10-23 00:00:00'),(89195,11,'8B25','Late effects of cerebrovascular disease','Y','2025-10-23 00:00:00'),(89196,11,'8B25.Z','Late effects of cerebrovascular disease, unspecified','Y','2025-10-23 00:00:00'),(89194,11,'8B25.0','Late effects of cerebral ischemic stroke','Y','2025-10-23 00:00:00'),(89193,11,'QC50','Late effect of prior health problem, not elsewhere classified','Y','2025-10-23 00:00:00'),(89192,11,'1C1G.14','Late cutaneous Lyme borreliosis','Y','2025-10-23 00:00:00'),(89191,11,'1A60.2','Late congenital syphilitic oculopathy','Y','2025-10-23 00:00:00'),(89190,11,'1A60.5','Late congenital syphilis, latent','Y','2025-10-23 00:00:00'),(89189,11,'1A60.3','Late congenital neurosyphilis','Y','2025-10-23 00:00:00'),(89188,11,'XT9X','Late Adolescence','Y','2025-10-23 00:00:00'),(89187,11,'XE6R2','Latch fastner component of medical device','Y','2025-10-23 00:00:00'),(89186,11,'XM5130','Latanoprost','Y','2025-10-23 00:00:00'),(89185,11,'XM0B94','Latamoxef','Y','2025-10-23 00:00:00'),(89183,11,'XN0CU','Lassa virus','Y','2025-10-23 00:00:00'),(89184,11,'XM76E0','Lassar\'s paste','Y','2025-10-23 00:00:00'),(89182,11,'1D61.2','Lassa fever','Y','2025-10-23 00:00:00'),(89180,11,'XM7P17','Lasmiditan','Y','2025-10-23 00:00:00'),(89181,11,'XM4JW0','Lasofoxifene','Y','2025-10-23 00:00:00'),(89179,11,'XM06E2','Lasix','Y','2025-10-23 00:00:00'),(89178,11,'XE9AP','Laser pointer','Y','2025-10-23 00:00:00'),(89177,11,'XE5DQ','Laser light and equipment','Y','2025-10-23 00:00:00'),(89175,11,'XA2RH5','Larynx','Y','2025-10-23 00:00:00'),(89176,11,'XE6GJ','Laser component of medical device','Y','2025-10-23 00:00:00'),(89174,11,'LA72','Laryngotracheooesophageal cleft','Y','2025-10-23 00:00:00'),(89173,11,'XD0U91','Laryngoscopes','Y','2025-10-23 00:00:00'),(89172,11,'LA71.1','Laryngocele','Y','2025-10-23 00:00:00'),(89171,11,'XA23C4','Laryngeal vein','Y','2025-10-23 00:00:00'),(89170,11,'CA0H.4','Laryngeal spasm','Y','2025-10-23 00:00:00'),(89169,11,'XH5521','Laryngeal paraganglioma','Y','2025-10-23 00:00:00'),(89168,11,'1G01.2','Laryngeal myiasis','Y','2025-10-23 00:00:00'),(89167,11,'XD78N3','Laryngeal masks','Y','2025-10-23 00:00:00'),(89165,11,'2F00.2','Laryngeal endocrine tumour','Y','2025-10-23 00:00:00'),(89166,11,'LA71.2','Laryngeal hypoplasia','Y','2025-10-23 00:00:00'),(89163,11,'XA0NK8','Laryngeal cartilage','Y','2025-10-23 00:00:00'),(89164,11,'1C17.2','Laryngeal diphtheria','Y','2025-10-23 00:00:00'),(89162,11,'XA8N50','Laryngeal aspect of aryepiglottic fold','Y','2025-10-23 00:00:00'),(89160,11,'XM4PC4','Laronidase','Y','2025-10-23 00:00:00'),(89161,11,'XM2LF4','Larotrectinib','Y','2025-10-23 00:00:00'),(89159,11,'SH60','Large yin type supraspinal exterior pattern (TM1)','Y','2025-10-23 00:00:00'),(89158,11,'SH6Z','Large yin type patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(89157,11,'SH62','Large yin type liver heat pattern (TM1)','Y','2025-10-23 00:00:00'),(89156,11,'SH64','Large yin type exterior Interior combined pattern (TM1)','Y','2025-10-23 00:00:00'),(89155,11,'SH61','Large yin type esophagus cold pattern (TM1)','Y','2025-10-23 00:00:00'),(89154,11,'SH63','Large yin type dryness heat pattern (TM1)','Y','2025-10-23 00:00:00'),(89153,11,'SH4Z','Large yang type patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(89152,11,'SH41','Large yang type interior origin small intestine pattern (TM1)','Y','2025-10-23 00:00:00'),(89150,11,'SH42','Large yang type exterior interior combined pattern (TM1)','Y','2025-10-23 00:00:00'),(89151,11,'SH40','Large yang type exterior origin lower back pattern (TM1)','Y','2025-10-23 00:00:00'),(89149,11,'EK91.0','Large plaque parapsoriasis','Y','2025-10-23 00:00:00'),(89147,11,'KA22.1','Large newborn for gestational age','Y','2025-10-23 00:00:00'),(89148,11,'XE43C','Large or heavy fixed object as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(89146,11,'XA5X22','Large joints only with cervical spine or temporomandibular involvement','Y','2025-10-23 00:00:00'),(89144,11,'SF8H','Large intestine fluid deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(89145,11,'SG21','Large intestine meridian pattern (TM1)','Y','2025-10-23 00:00:00'),(89143,11,'SF8F','Large intestine excess heat pattern (TM1)','Y','2025-10-23 00:00:00'),(89141,11,'SF8G','Large intestine dampness heat pattern (TM1)','Y','2025-10-23 00:00:00'),(89142,11,'SF8J','Large intestine deficiency cold pattern (TM1)','Y','2025-10-23 00:00:00'),(89140,11,'XA1B13','Large intestine','Y','2025-10-23 00:00:00'),(89139,11,'XH0NL5','Large cell neuroendocrine carcinoma','Y','2025-10-23 00:00:00'),(89138,11,'XH5PR7','Large cell medulloblastoma','Y','2025-10-23 00:00:00'),(89137,11,'XH45J4','Large cell carcinoma, NOS','Y','2025-10-23 00:00:00'),(89136,11,'XH4QU2','Large cell carcinoma with rhabdoid phenotype','Y','2025-10-23 00:00:00'),(89135,11,'2C25.3','Large cell carcinoma of bronchus or lung','Y','2025-10-23 00:00:00'),(89134,11,'XH9E02','Large cell calcifying Sertoli cell tumour','Y','2025-10-23 00:00:00'),(89133,11,'XH7AQ2','Large cell acanthoma','Y','2025-10-23 00:00:00'),(89132,11,'XH6SU8','Large B-cell lymphoma with IRF4 rearrangement','Y','2025-10-23 00:00:00'),(89131,11,'XH5HJ5','Large B-cell lymphoma arising in HHV8-associated multicentric Castleman disease','Y','2025-10-23 00:00:00'),(89130,11,'XE93X','Large area of water','Y','2025-10-23 00:00:00'),(89128,11,'XM1FM4','Lapatinib','Y','2025-10-23 00:00:00'),(89129,11,'XM1LU9','Laquinimod','Y','2025-10-23 00:00:00'),(89127,11,'XM22K8','Lanthanum carbonate','Y','2025-10-23 00:00:00'),(89126,11,'XM39X4','Lansoprazole','Y','2025-10-23 00:00:00'),(89125,11,'XM7GZ3','Lanreotide','Y','2025-10-23 00:00:00'),(89123,11,'XM8WH4','Lanolin','Y','2025-10-23 00:00:00'),(89124,11,'XM4HE0','Lanolin alcohol','Y','2025-10-23 00:00:00'),(89122,11,'XM6M67','Laninamivir','Y','2025-10-23 00:00:00'),(89121,11,'XC4A','Language utterances','Y','2025-10-23 00:00:00'),(89120,11,'2B31.3','Langerhans cell sarcoma','Y','2025-10-23 00:00:00'),(89119,11,'XH8J76','Langerhans cell sarcoma','Y','2025-10-23 00:00:00'),(89118,11,'XH2PY9','Langerhans cell histiocytosis, polyostotic','Y','2025-10-23 00:00:00'),(89117,11,'XH0RF4','Langerhans cell histiocytosis, monostotic','Y','2025-10-23 00:00:00'),(89116,11,'XH40U7','Langerhans cell histiocytosis, disseminated','Y','2025-10-23 00:00:00'),(89115,11,'2B31.20','Langerhans cell histiocytosis involving the skin','Y','2025-10-23 00:00:00'),(89114,11,'2B31.2','Langerhans cell histiocytosis','Y','2025-10-23 00:00:00'),(89113,11,'XH1J18','Langerhans cell histiocytosis','Y','2025-10-23 00:00:00'),(89112,11,'LD24.80','Langer-Giedion syndrome','Y','2025-10-23 00:00:00'),(89111,11,'XM44F9','Landiolol','Y','2025-10-23 00:00:00'),(89110,11,'PF41','Land transport traffic injury event of undetermined intent injuring the user of a pedestrian conveyance','Y','2025-10-23 00:00:00'),(89109,11,'PF46','Land transport traffic injury event of undetermined intent injuring an occupant of light goods vehicle','Y','2025-10-23 00:00:00'),(89108,11,'PF47','Land transport traffic injury event of undetermined intent injuring an occupant of heavy goods vehicle','Y','2025-10-23 00:00:00'),(89107,11,'PF4F','Land transport traffic injury event of undetermined intent injuring an occupant of an animal-drawn vehicle','Y','2025-10-23 00:00:00'),(89106,11,'PF48','Land transport traffic injury event of undetermined intent injuring an occupant of a streetcar or tram','Y','2025-10-23 00:00:00'),(89105,11,'PF49','Land transport traffic injury event of undetermined intent injuring an occupant of a low powered passenger vehicle','Y','2025-10-23 00:00:00'),(89104,11,'PF4Z','Land transport traffic injury event of undetermined intent injuring a user of unknown or unspecified land transport','Y','2025-10-23 00:00:00'),(89103,11,'PF4Y','Land transport traffic injury event of undetermined intent injuring a user of other specified land transport','Y','2025-10-23 00:00:00'),(89102,11,'PF4D','Land transport traffic injury event of undetermined intent injuring a user of an all-terrain vehicle','Y','2025-10-23 00:00:00'),(89101,11,'PF4B','Land transport traffic injury event of undetermined intent injuring a user of a special vehicle mainly used on industrial premises','Y','2025-10-23 00:00:00'),(89100,11,'PF4A','Land transport traffic injury event of undetermined intent injuring a user of a special vehicle mainly used in agriculture','Y','2025-10-23 00:00:00'),(89099,11,'PF4C','Land transport traffic injury event of undetermined intent injuring a user of a special construction vehicle','Y','2025-10-23 00:00:00'),(89098,11,'PF4E','Land transport traffic injury event of undetermined intent injuring a rider of an animal','Y','2025-10-23 00:00:00'),(89097,11,'PF40','Land transport traffic injury event of undetermined intent injuring a pedestrian','Y','2025-10-23 00:00:00'),(89096,11,'PF42','Land transport traffic injury event of undetermined intent injuring a pedal cyclist','Y','2025-10-23 00:00:00'),(89095,11,'PF43','Land transport traffic injury event of undetermined intent injuring a motor cyclist','Y','2025-10-23 00:00:00'),(89094,11,'PF44','Land transport traffic injury event of undetermined intent injuring a car occupant','Y','2025-10-23 00:00:00'),(89093,11,'PF45','Land transport traffic injury event of undetermined intent injuring a bus or coach occupant','Y','2025-10-23 00:00:00'),(89092,11,'PF51','Land transport nontraffic injury event of undetermined intent injuring the user of a pedestrian conveyance','Y','2025-10-23 00:00:00'),(89091,11,'PF56','Land transport nontraffic injury event of undetermined intent injuring an occupant of light goods vehicle','Y','2025-10-23 00:00:00'),(89090,11,'PF57','Land transport nontraffic injury event of undetermined intent injuring an occupant of heavy goods vehicle','Y','2025-10-23 00:00:00'),(89089,11,'PF5F','Land transport nontraffic injury event of undetermined intent injuring an occupant of an animal-drawn vehicle','Y','2025-10-23 00:00:00'),(89088,11,'PF58','Land transport nontraffic injury event of undetermined intent injuring an occupant of a streetcar or tram','Y','2025-10-23 00:00:00'),(89087,11,'PF59','Land transport nontraffic injury event of undetermined intent injuring an occupant of a low powered passenger vehicle','Y','2025-10-23 00:00:00'),(89086,11,'PF5Z','Land transport nontraffic injury event of undetermined intent injuring a user of unknown or unspecified land transport','Y','2025-10-23 00:00:00'),(89085,11,'PF5Y','Land transport nontraffic injury event of undetermined intent injuring a user of other specified land transport','Y','2025-10-23 00:00:00'),(89084,11,'PF5D','Land transport nontraffic injury event of undetermined intent injuring a user of an all-terrain vehicle','Y','2025-10-23 00:00:00'),(89083,11,'PF5B','Land transport nontraffic injury event of undetermined intent injuring a user of a special vehicle mainly used on industrial premises','Y','2025-10-23 00:00:00'),(89082,11,'PF5A','Land transport nontraffic injury event of undetermined intent injuring a user of a special vehicle mainly used in agriculture','Y','2025-10-23 00:00:00'),(89081,11,'PF5C','Land transport nontraffic injury event of undetermined intent injuring a user of a special construction vehicle','Y','2025-10-23 00:00:00'),(89080,11,'PF5E','Land transport nontraffic injury event of undetermined intent injuring a rider of an animal','Y','2025-10-23 00:00:00'),(89079,11,'PF50','Land transport nontraffic injury event of undetermined intent injuring a pedestrian','Y','2025-10-23 00:00:00'),(89078,11,'PF52','Land transport nontraffic injury event of undetermined intent injuring a pedal cyclist','Y','2025-10-23 00:00:00'),(89077,11,'PF53','Land transport nontraffic injury event of undetermined intent injuring a motor cyclist','Y','2025-10-23 00:00:00'),(89076,11,'PF54','Land transport nontraffic injury event of undetermined intent injuring a car occupant','Y','2025-10-23 00:00:00'),(89075,11,'PF55','Land transport nontraffic injury event of undetermined intent injuring a bus or coach occupant','Y','2025-10-23 00:00:00'),(89074,11,'PF61','Land transport injury event of undetermined intent, unknown whether road traffic or off-road nontraffic injuring the user of a pedestrian conveyance','Y','2025-10-23 00:00:00'),(89073,11,'PF66','Land transport injury event of undetermined intent, unknown whether road traffic or off-road nontraffic injuring an occupant of light goods vehicle','Y','2025-10-23 00:00:00'),(89072,11,'PF67','Land transport injury event of undetermined intent, unknown whether road traffic or off-road nontraffic injuring an occupant of heavy goods vehicle','Y','2025-10-23 00:00:00'),(89071,11,'PF6F','Land transport injury event of undetermined intent, unknown whether road traffic or off-road nontraffic injuring an occupant of an animal-drawn vehicle','Y','2025-10-23 00:00:00'),(89070,11,'PF68','Land transport injury event of undetermined intent, unknown whether road traffic or off-road nontraffic injuring an occupant of a streetcar or tram','Y','2025-10-23 00:00:00'),(89069,11,'PF69','Land transport injury event of undetermined intent, unknown whether road traffic or off-road nontraffic injuring an occupant of a low powered passenger vehicle','Y','2025-10-23 00:00:00'),(89068,11,'PF6Z','Land transport injury event of undetermined intent, unknown whether road traffic or off-road nontraffic injuring a user of an unknown or unspecified vehicle','Y','2025-10-23 00:00:00'),(89067,11,'PF6Y','Land transport injury event of undetermined intent, unknown whether road traffic or off-road nontraffic injuring a user of an other specified vehicle','Y','2025-10-23 00:00:00'),(89066,11,'PF6D','Land transport injury event of undetermined intent, unknown whether road traffic or off-road nontraffic injuring a user of an all-terrain vehicle','Y','2025-10-23 00:00:00'),(89065,11,'PF6B','Land transport injury event of undetermined intent, unknown whether road traffic or off-road nontraffic injuring a user of a special vehicle mainly used on industrial premises','Y','2025-10-23 00:00:00'),(89064,11,'PF6A','Land transport injury event of undetermined intent, unknown whether road traffic or off-road nontraffic injuring a user of a special vehicle mainly used in agriculture','Y','2025-10-23 00:00:00'),(89063,11,'PF6C','Land transport injury event of undetermined intent, unknown whether road traffic or off-road nontraffic injuring a user of a special construction vehicle','Y','2025-10-23 00:00:00'),(89062,11,'PF6E','Land transport injury event of undetermined intent, unknown whether road traffic or off-road nontraffic injuring a rider of an animal','Y','2025-10-23 00:00:00'),(89061,11,'PF60','Land transport injury event of undetermined intent, unknown whether road traffic or off-road nontraffic injuring a pedestrian','Y','2025-10-23 00:00:00'),(89060,11,'PF62','Land transport injury event of undetermined intent, unknown whether road traffic or off-road nontraffic injuring a pedal cyclist','Y','2025-10-23 00:00:00'),(89059,11,'PF63','Land transport injury event of undetermined intent, unknown whether road traffic or off-road nontraffic injuring a motor cyclist','Y','2025-10-23 00:00:00'),(89058,11,'PF64','Land transport injury event of undetermined intent, unknown whether road traffic or off-road nontraffic injuring a car occupant','Y','2025-10-23 00:00:00'),(89056,11,'XE813','Land mammal','Y','2025-10-23 00:00:00'),(89057,11,'PF65','Land transport injury event of undetermined intent, unknown whether road traffic or off-road nontraffic injuring a bus or coach occupant','Y','2025-10-23 00:00:00'),(89055,11,'XM7JF1','Lancehead snake venom','Y','2025-10-23 00:00:00'),(89053,11,'XM8036','Lanatoside C','Y','2025-10-23 00:00:00'),(89054,11,'XM7KP5','Lanatosides','Y','2025-10-23 00:00:00'),(89052,11,'XM6FN4','Lamotrigine','Y','2025-10-23 00:00:00'),(89051,11,'XM9NL2','Lamivudine, Tenofovir disoproxil and Efavirenz','Y','2025-10-23 00:00:00'),(89050,11,'XM5FB9','Lamivudine, Tenofovir disoproxil and Doravirine','Y','2025-10-23 00:00:00'),(89049,11,'XM8QY9','Lamivudine, Tenofovir disoproxil and Dolutegravir','Y','2025-10-23 00:00:00'),(89048,11,'XM2UU9','Lamivudine, Abacavir and Dolutegravir','Y','2025-10-23 00:00:00'),(89047,11,'XM50Z0','Lamivudine and Tenofovir disoproxil','Y','2025-10-23 00:00:00'),(89046,11,'XM0229','Lamivudine and Raltegravir','Y','2025-10-23 00:00:00'),(89045,11,'XM9CE4','Lamivudine and Dolutegravir','Y','2025-10-23 00:00:00'),(89044,11,'XM41D4','Lamivudine and Abacavir','Y','2025-10-23 00:00:00'),(89043,11,'XM5471','Lamivudine','Y','2025-10-23 00:00:00'),(89042,11,'8C62','Lambert-Eaton syndrome','Y','2025-10-23 00:00:00'),(89041,11,'XN6P0','Laguna Negra virus','Y','2025-10-23 00:00:00'),(89040,11,'XN4EB','Lagovirus','Y','2025-10-23 00:00:00'),(89039,11,'9A03.4Z','Lagophthalmos, unspecified','Y','2025-10-23 00:00:00'),(89038,11,'9A03.4','Lagophthalmos','Y','2025-10-23 00:00:00'),(89036,11,'LA80.0','Laevocardia','Y','2025-10-23 00:00:00'),(89037,11,'XM0Q37','Lafutidine','Y','2025-10-23 00:00:00'),(89035,11,'XE9P7','Ladder, movable step','Y','2025-10-23 00:00:00'),(89034,11,'8B26.5Z','Lacunar syndromes, unspecified','Y','2025-10-23 00:00:00'),(89033,11,'8B26.5','Lacunar syndromes','Y','2025-10-23 00:00:00'),(89032,11,'XM7W31','Lactulose','Y','2025-10-23 00:00:00'),(89031,11,'XM7EA2','Lactucarium','Y','2025-10-23 00:00:00'),(89030,11,'XM1H40','Lactuca (virosa) (extract)','Y','2025-10-23 00:00:00'),(89029,11,'XH1QS0','Lactotroph adenoma','Y','2025-10-23 00:00:00'),(89028,11,'5C61.6Z','Lactose intolerance, unspecified','Y','2025-10-23 00:00:00'),(89027,11,'5C61.6','Lactose intolerance','Y','2025-10-23 00:00:00'),(89026,11,'XM1X04','Lactose (as excipient)','Y','2025-10-23 00:00:00'),(89025,11,'XM4KH7','Lactobacillus sporogenes','Y','2025-10-23 00:00:00'),(89024,11,'XM1TF2','Lactobacillus bulgaricus','Y','2025-10-23 00:00:00'),(89023,11,'XM0QG1','Lactobacillus bifidus, lyophilized','Y','2025-10-23 00:00:00'),(89022,11,'XM1N12','Lactobacillus acidophilus compound','Y','2025-10-23 00:00:00'),(89021,11,'XM0EB5','Lactobacillus acidophilus','Y','2025-10-23 00:00:00'),(89020,11,'XM4RE1','Lactitol','Y','2025-10-23 00:00:00'),(89019,11,'XA85A1','Lactiferous ducts','Y','2025-10-23 00:00:00'),(89018,11,'XM6P44','Lactic acid','Y','2025-10-23 00:00:00'),(89017,11,'GA20.02','Lactational amenorrhoea','Y','2025-10-23 00:00:00'),(89016,11,'2F30.1','Lactating adenoma of breast','Y','2025-10-23 00:00:00'),(89015,11,'XH0W31','Lactating adenoma','Y','2025-10-23 00:00:00'),(89014,11,'XM8UU5','Lactated potassic saline','Y','2025-10-23 00:00:00'),(89013,11,'5C53.01','Lactate dehydrogenase deficiency','Y','2025-10-23 00:00:00'),(89012,11,'XM2JX3','Lacrimogenic gas','Y','2025-10-23 00:00:00'),(89011,11,'XA75Y9','Lacrimal','Y','2025-10-23 00:00:00'),(89010,11,'XA8EM9','Lacrimal puncta','Y','2025-10-23 00:00:00'),(89009,11,'XA16M4','Lacrimal nerve','Y','2025-10-23 00:00:00'),(89008,11,'XA2PA4','Lacrimal gland ducts','Y','2025-10-23 00:00:00'),(89006,11,'XA9GZ6','Lacrimal bone','Y','2025-10-23 00:00:00'),(89007,11,'XA6C35','Lacrimal canaliculi','Y','2025-10-23 00:00:00'),(89005,11,'XA5P69','Lacrimal artery','Y','2025-10-23 00:00:00'),(89004,11,'XA0096','Lacrimal apparatus','Y','2025-10-23 00:00:00'),(89003,11,'XM5C83','Lacquer','Y','2025-10-23 00:00:00'),(89002,11,'XM30R8','Lacosamide','Y','2025-10-23 00:00:00'),(89001,11,'PH78','Lack of water with undetermined intent','Y','2025-10-23 00:00:00'),(89000,11,'XE3WS','Lack of water','Y','2025-10-23 00:00:00'),(88999,11,'QE20','Lack of physical exercise','Y','2025-10-23 00:00:00'),(88998,11,'XE25T','Lack of maintenance documentation or guidelines','Y','2025-10-23 00:00:00'),(88997,11,'PH77','Lack of food with undetermined intent','Y','2025-10-23 00:00:00'),(88996,11,'XE7SS','Lack of food','Y','2025-10-23 00:00:00'),(88995,11,'MG44.1Z','Lack of expected normal physiological development, unspecified','Y','2025-10-23 00:00:00'),(88994,11,'MG44.1','Lack of expected normal physiological development','Y','2025-10-23 00:00:00'),(88993,11,'MB45.Z','Lack of coordination, unspecified','Y','2025-10-23 00:00:00'),(88992,11,'MB45','Lack of coordination','Y','2025-10-23 00:00:00'),(88991,11,'XM2QH8','Lacidipine','Y','2025-10-23 00:00:00'),(88990,11,'XM0PE3','Lachesine','Y','2025-10-23 00:00:00'),(88989,11,'ND12.60','Laceration without foreign body of toe','Y','2025-10-23 00:00:00'),(88988,11,'NA81.0','Laceration without foreign body of thorax','Y','2025-10-23 00:00:00'),(88987,11,'NC11.0','Laceration without foreign body of shoulder or upper arm','Y','2025-10-23 00:00:00'),(88986,11,'NC52.10','Laceration without foreign body of other parts of wrist or hand','Y','2025-10-23 00:00:00'),(88985,11,'NA21.0','Laceration without foreign body of neck','Y','2025-10-23 00:00:00'),(88984,11,'NC91.0','Laceration without foreign body of lower leg','Y','2025-10-23 00:00:00'),(88983,11,'NC71.0','Laceration without foreign body of hip or thigh','Y','2025-10-23 00:00:00'),(88982,11,'NA01.2','Laceration without foreign body of head','Y','2025-10-23 00:00:00'),(88981,11,'NC31.0','Laceration without foreign body of forearm','Y','2025-10-23 00:00:00'),(88980,11,'NC52.00','Laceration without foreign body of finger or thumb','Y','2025-10-23 00:00:00'),(88979,11,'ND12.0','Laceration without foreign body of ankle or foot','Y','2025-10-23 00:00:00'),(88977,11,'ND12.61','Laceration with foreign body of toe','Y','2025-10-23 00:00:00'),(88978,11,'NB51.0','Laceration without foreign body of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(88976,11,'NA81.1','Laceration with foreign body of thorax','Y','2025-10-23 00:00:00'),(88975,11,'NC11.1','Laceration with foreign body of shoulder or upper arm','Y','2025-10-23 00:00:00'),(88974,11,'NC52.11','Laceration with foreign body of other parts of wrist or hand','Y','2025-10-23 00:00:00'),(88973,11,'NA21.1','Laceration with foreign body of neck','Y','2025-10-23 00:00:00'),(88972,11,'NC91.1','Laceration with foreign body of lower leg','Y','2025-10-23 00:00:00'),(88971,11,'NC71.1','Laceration with foreign body of hip or thigh','Y','2025-10-23 00:00:00'),(88970,11,'NA01.3','Laceration with foreign body of head','Y','2025-10-23 00:00:00'),(88969,11,'NC31.1','Laceration with foreign body of forearm','Y','2025-10-23 00:00:00'),(88968,11,'NC52.01','Laceration with foreign body of finger or thumb','Y','2025-10-23 00:00:00'),(88967,11,'ND12.1','Laceration with foreign body of ankle or foot','Y','2025-10-23 00:00:00'),(88966,11,'NB51.1','Laceration with foreign body of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(88965,11,'NA60.10','Laceration of vertebral artery, minor','Y','2025-10-23 00:00:00'),(88964,11,'NA60.11','Laceration of vertebral artery, major','Y','2025-10-23 00:00:00'),(88963,11,'NC35.20','Laceration of vein at forearm level','Y','2025-10-23 00:00:00'),(88962,11,'NB92.31','Laceration of urethra','Y','2025-10-23 00:00:00'),(88961,11,'NB92.11','Laceration of ureter','Y','2025-10-23 00:00:00'),(88960,11,'NC56.00','Laceration of ulnar artery at wrist or hand level','Y','2025-10-23 00:00:00'),(88959,11,'NC35.00','Laceration of ulnar artery at forearm level','Y','2025-10-23 00:00:00'),(88958,11,'NC15.30','Laceration of superficial vein at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(88957,11,'NC56.20','Laceration of superficial palmar arch','Y','2025-10-23 00:00:00'),(88956,11,'NB91.51','Laceration of stomach without perforation','Y','2025-10-23 00:00:00'),(88955,11,'NB91.52','Laceration of stomach with perforation, avulsion or massive damage','Y','2025-10-23 00:00:00'),(88954,11,'NB91.03','Laceration of spleen, moderate','Y','2025-10-23 00:00:00'),(88953,11,'NB91.02','Laceration of spleen, minor','Y','2025-10-23 00:00:00'),(88952,11,'NB91.04','Laceration of spleen, major','Y','2025-10-23 00:00:00'),(88951,11,'NB91.71','Laceration of small intestine','Y','2025-10-23 00:00:00'),(88950,11,'NB91.91','Laceration of rectum','Y','2025-10-23 00:00:00'),(88949,11,'NC56.10','Laceration of radial artery at wrist or hand level','Y','2025-10-23 00:00:00'),(88948,11,'NC35.10','Laceration of radial artery at forearm level','Y','2025-10-23 00:00:00'),(88947,11,'NC76.11','Laceration of quadriceps muscle or tendon','Y','2025-10-23 00:00:00'),(88946,11,'NC95.20','Laceration of posterior tibial artery','Y','2025-10-23 00:00:00'),(88945,11,'NC95.60','Laceration of popliteal vein','Y','2025-10-23 00:00:00'),(88944,11,'NC95.00','Laceration of popliteal artery','Y','2025-10-23 00:00:00'),(88943,11,'NB32.60','Laceration of pleura','Y','2025-10-23 00:00:00'),(88942,11,'ND16.10','Laceration of plantar artery of foot','Y','2025-10-23 00:00:00'),(88941,11,'NC95.30','Laceration of peroneal artery','Y','2025-10-23 00:00:00'),(88940,11,'NB91.42','Laceration of pancreas, moderate','Y','2025-10-23 00:00:00'),(88939,11,'NB91.41','Laceration of pancreas, minor','Y','2025-10-23 00:00:00'),(88938,11,'NB91.43','Laceration of pancreas, major','Y','2025-10-23 00:00:00'),(88937,11,'NB92.41','Laceration of ovary','Y','2025-10-23 00:00:00'),(88936,11,'NC96.11','Laceration of other muscle, fascia or tendon of posterior muscle group at lower leg level','Y','2025-10-23 00:00:00'),(88935,11,'NC36.21','Laceration of other flexor muscle, fascia or tendon at forearm level','Y','2025-10-23 00:00:00'),(88934,11,'NC36.51','Laceration of other extensor muscle, fascia or tendon at forearm level','Y','2025-10-23 00:00:00'),(88933,11,'NC16.31','Laceration of muscle, fascia or tendon of triceps','Y','2025-10-23 00:00:00'),(88932,11,'NC76.31','Laceration of muscle, fascia or tendon of the posterior muscle group at thigh level','Y','2025-10-23 00:00:00'),(88931,11,'NC96.31','Laceration of muscle, fascia or tendon of peroneal muscle group at lower leg level','Y','2025-10-23 00:00:00'),(88930,11,'NB94.5','Laceration of muscle, fascia or tendon of pelvis','Y','2025-10-23 00:00:00'),(88929,11,'NC16.21','Laceration of muscle, fascia or tendon of other parts of biceps','Y','2025-10-23 00:00:00'),(88928,11,'NB94.4','Laceration of muscle, fascia or tendon of lower back','Y','2025-10-23 00:00:00'),(88927,11,'NC16.11','Laceration of muscle, fascia or tendon of long head of biceps','Y','2025-10-23 00:00:00'),(88926,11,'ND17.01','Laceration of muscle, fascia or tendon of long flexor muscle of toe at ankle or foot level','Y','2025-10-23 00:00:00'),(88925,11,'ND17.11','Laceration of muscle, fascia or tendon of long extensor muscle of toe at ankle or foot level','Y','2025-10-23 00:00:00'),(88924,11,'NC76.01','Laceration of muscle, fascia or tendon of hip','Y','2025-10-23 00:00:00'),(88923,11,'NA0A.11','Laceration of muscle, fascia or tendon of head','Y','2025-10-23 00:00:00'),(88922,11,'NC96.21','Laceration of muscle, fascia or tendon of anterior muscle group at lower leg level','Y','2025-10-23 00:00:00'),(88921,11,'NB94.3','Laceration of muscle, fascia or tendon of abdomen','Y','2025-10-23 00:00:00'),(88920,11,'NB34.1','Laceration of muscle, fascia or tendon at thorax level','Y','2025-10-23 00:00:00'),(88919,11,'NA61.1','Laceration of muscle, fascia or tendon at neck level','Y','2025-10-23 00:00:00'),(88918,11,'NC16.01','Laceration of muscle or tendon of the rotator cuff of shoulder','Y','2025-10-23 00:00:00'),(88917,11,'NC16.41','Laceration of multiple muscles or tendons at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(88916,11,'NC56.60','Laceration of multiple blood vessels at wrist or hand level','Y','2025-10-23 00:00:00'),(88915,11,'NB32.31','Laceration of lung','Y','2025-10-23 00:00:00'),(88914,11,'NC57.01','Laceration of long flexor muscle, fascia or tendon of thumb at wrist or hand level','Y','2025-10-23 00:00:00'),(88913,11,'NC36.11','Laceration of long flexor muscle, fascia or tendon of other finger at forearm level','Y','2025-10-23 00:00:00'),(88912,11,'NB91.12','Laceration of liver, moderate','Y','2025-10-23 00:00:00'),(88911,11,'NB91.11','Laceration of liver, minor','Y','2025-10-23 00:00:00'),(88910,11,'NB91.13','Laceration of liver, major','Y','2025-10-23 00:00:00'),(88909,11,'NC95.50','Laceration of lesser saphenous vein at lower leg level','Y','2025-10-23 00:00:00'),(88908,11,'NB92.03','Laceration of kidney, moderate','Y','2025-10-23 00:00:00'),(88907,11,'NB92.02','Laceration of kidney, minor','Y','2025-10-23 00:00:00'),(88906,11,'NB92.04','Laceration of kidney, major','Y','2025-10-23 00:00:00'),(88905,11,'NC57.41','Laceration of intrinsic muscle, fascia or tendon of thumb at wrist or hand level','Y','2025-10-23 00:00:00'),(88904,11,'NC57.51','Laceration of intrinsic muscle, fascia or tendon of other finger at wrist or hand level','Y','2025-10-23 00:00:00'),(88903,11,'ND17.21','Laceration of intrinsic muscle, fascia or tendon at ankle or foot level','Y','2025-10-23 00:00:00'),(88902,11,'NA60.30','Laceration of internal jugular vein, minor','Y','2025-10-23 00:00:00'),(88901,11,'NA60.31','Laceration of internal jugular vein, major','Y','2025-10-23 00:00:00'),(88900,11,'NB30.50','Laceration of intercostal blood vessels','Y','2025-10-23 00:00:00'),(88899,11,'NB31.11','Laceration of heart without haemopericardium','Y','2025-10-23 00:00:00'),(88898,11,'NC95.40','Laceration of greater saphenous vein at lower leg level','Y','2025-10-23 00:00:00'),(88897,11,'NC75.20','Laceration of greater saphenous vein at hip or thigh level, minor','Y','2025-10-23 00:00:00'),(88896,11,'NC75.21','Laceration of greater saphenous vein at hip or thigh level, major','Y','2025-10-23 00:00:00'),(88895,11,'NC36.01','Laceration of flexor muscle, fascia or tendon of thumb at forearm level','Y','2025-10-23 00:00:00'),(88894,11,'NC57.11','Laceration of flexor muscle, fascia or tendon of other finger at wrist or hand level','Y','2025-10-23 00:00:00'),(88893,11,'NC75.10','Laceration of femoral vein at hip or thigh level, minor','Y','2025-10-23 00:00:00'),(88892,11,'NC75.11','Laceration of femoral vein at hip or thigh level, major','Y','2025-10-23 00:00:00'),(88891,11,'NC75.00','Laceration of femoral artery, minor','Y','2025-10-23 00:00:00'),(88890,11,'NC75.01','Laceration of femoral artery, major','Y','2025-10-23 00:00:00'),(88889,11,'NA60.20','Laceration of external jugular vein, minor','Y','2025-10-23 00:00:00'),(88888,11,'NA60.21','Laceration of external jugular vein, major','Y','2025-10-23 00:00:00'),(88887,11,'NC36.31','Laceration of extensor or abductor muscles or tendons of thumb at forearm level','Y','2025-10-23 00:00:00'),(88886,11,'NC57.21','Laceration of extensor muscle, fascia or tendon of thumb at wrist or hand level','Y','2025-10-23 00:00:00'),(88885,11,'NC57.31','Laceration of extensor muscle, fascia or tendon of other finger at wrist or hand level','Y','2025-10-23 00:00:00'),(88884,11,'NC36.41','Laceration of extensor muscle, fascia or tendon of other finger at forearm level','Y','2025-10-23 00:00:00'),(88883,11,'NB91.61','Laceration of duodenum','Y','2025-10-23 00:00:00'),(88882,11,'ND16.20','Laceration of dorsal vein of foot','Y','2025-10-23 00:00:00'),(88881,11,'ND16.00','Laceration of dorsal artery of foot','Y','2025-10-23 00:00:00'),(88879,11,'NB91.81','Laceration of colon','Y','2025-10-23 00:00:00'),(88880,11,'NC56.30','Laceration of deep palmar arch','Y','2025-10-23 00:00:00'),(88877,11,'NA60.01','Laceration of carotid artery, major','Y','2025-10-23 00:00:00'),(88878,11,'NA60.00','Laceration of carotid artery, minor','Y','2025-10-23 00:00:00'),(88876,11,'NC15.10','Laceration of brachial artery','Y','2025-10-23 00:00:00'),(88875,11,'NC56.40','Laceration of blood vessel of thumb','Y','2025-10-23 00:00:00'),(88873,11,'NB92.21','Laceration of bladder','Y','2025-10-23 00:00:00'),(88874,11,'NC56.50','Laceration of blood vessel of other finger','Y','2025-10-23 00:00:00'),(88871,11,'NC15.00','Laceration of axillary artery','Y','2025-10-23 00:00:00'),(88872,11,'NC15.20','Laceration of axillary or brachial vein','Y','2025-10-23 00:00:00'),(88870,11,'NC95.10','Laceration of anterior tibial artery','Y','2025-10-23 00:00:00'),(88869,11,'NC76.21','Laceration of adductor muscle, fascia or tendon of thigh','Y','2025-10-23 00:00:00'),(88868,11,'NC96.01','Laceration of Achilles tendon','Y','2025-10-23 00:00:00'),(88867,11,'XN3NU','Lacazia loboi','Y','2025-10-23 00:00:00'),(88866,11,'XN3CM','Lacazia','Y','2025-10-23 00:00:00'),(88865,11,'AB30.1','Labyrinthitis','Y','2025-10-23 00:00:00'),(88864,11,'AB35','Labyrinthine fistula','Y','2025-10-23 00:00:00'),(88863,11,'AB36','Labyrinthine dysfunction','Y','2025-10-23 00:00:00'),(88862,11,'XA0L54','Labyrinth','Y','2025-10-23 00:00:00'),(88861,11,'JB08.4','Labour or delivery complicated by vascular lesion of cord','Y','2025-10-23 00:00:00'),(88860,11,'JB08.3','Labour or delivery complicated by vasa praevia','Y','2025-10-23 00:00:00'),(88859,11,'JB08.Z','Labour or delivery complicated by umbilical cord complications, unspecified','Y','2025-10-23 00:00:00'),(88858,11,'JB08','Labour or delivery complicated by umbilical cord complications','Y','2025-10-23 00:00:00'),(88856,11,'JB08.0','Labour or delivery complicated by prolapse of cord','Y','2025-10-23 00:00:00'),(88857,11,'JB08.2','Labour or delivery complicated by short cord','Y','2025-10-23 00:00:00'),(88855,11,'JB08.5','Labour or delivery complicated by other cord entanglement, with compression','Y','2025-10-23 00:00:00'),(88854,11,'JB07.1','Labour or delivery complicated by meconium in amniotic fluid','Y','2025-10-23 00:00:00'),(88853,11,'JB07.0','Labour or delivery complicated by fetal heart rate anomaly','Y','2025-10-23 00:00:00'),(88852,11,'JB07.Z','Labour or delivery complicated by fetal distress, unspecified','Y','2025-10-23 00:00:00'),(88851,11,'JB07','Labour or delivery complicated by fetal distress','Y','2025-10-23 00:00:00'),(88850,11,'JB08.1','Labour or delivery complicated by cord around neck, with compression','Y','2025-10-23 00:00:00'),(88849,11,'JB07.2','Labour or delivery complicated by biochemical evidence of fetal stress','Y','2025-10-23 00:00:00'),(88848,11,'JB08.Y','Labour and delivery complicated by other specified umbilical cord complications','Y','2025-10-23 00:00:00'),(88847,11,'QA00.C','Laboratory examination','Y','2025-10-23 00:00:00'),(88846,11,'MA14.0','Laboratory evidence of human immunodeficiency virus','Y','2025-10-23 00:00:00'),(88845,11,'XA0MU9','Labium minus','Y','2025-10-23 00:00:00'),(88844,11,'XA59G9','Labium majus','Y','2025-10-23 00:00:00'),(88843,11,'MB24.63','Labile affect','Y','2025-10-23 00:00:00'),(88842,11,'XA52V8','Labial vein','Y','2025-10-23 00:00:00'),(88841,11,'XA4UP2','Labial surface of tooth','Y','2025-10-23 00:00:00'),(88840,11,'XA44M8','Labial sulcus','Y','2025-10-23 00:00:00'),(88839,11,'XA9072','Labial mucosa of upper lip','Y','2025-10-23 00:00:00'),(88838,11,'XA72W2','Labial mucosa of lower lip','Y','2025-10-23 00:00:00'),(88837,11,'XA1EF8','Labial commissure','Y','2025-10-23 00:00:00'),(88836,11,'GA13.4','Labial agglutination','Y','2025-10-23 00:00:00'),(88835,11,'XA11L9','Labia of vulva','Y','2025-10-23 00:00:00'),(88834,11,'XM8ER3','Labetalol','Y','2025-10-23 00:00:00'),(88833,11,'XE3J4','Labelling, instructions for use or training problem','Y','2025-10-23 00:00:00'),(88832,11,'XE1YT','Labeling and instructions for use or maintenance of device problem identified','Y','2025-10-23 00:00:00'),(88831,11,'XE6R7','Label component of medical device','Y','2025-10-23 00:00:00'),(88830,11,'XN5VQ','La Crosse virus','Y','2025-10-23 00:00:00'),(88828,11,'XA86M5','L5 level','Y','2025-10-23 00:00:00'),(88829,11,'1C8D','La Crosse encephalitis','Y','2025-10-23 00:00:00'),(88827,11,'XA1ZV5','L4 level','Y','2025-10-23 00:00:00'),(88826,11,'XA57M0','L3 level','Y','2025-10-23 00:00:00'),(88825,11,'XA8X63','L2 level','Y','2025-10-23 00:00:00'),(88824,11,'XA6TL5','L1 level','Y','2025-10-23 00:00:00'),(88823,11,'XN87D','Kyzylagach virus','Y','2025-10-23 00:00:00'),(88822,11,'FA70.0','Kyphosis','Y','2025-10-23 00:00:00'),(88821,11,'1D4B','Kyasanur Forest disease','Y','2025-10-23 00:00:00'),(88820,11,'XM07S0','Kwell anti-infective (topical)','Y','2025-10-23 00:00:00'),(88818,11,'XN8UR','Kurkino virus','Y','2025-10-23 00:00:00'),(88819,11,'8E01.1','Kuru','Y','2025-10-23 00:00:00'),(88817,11,'XH6FJ5','Kupffer cell sarcoma','Y','2025-10-23 00:00:00'),(88816,11,'XH3RD4','Krukenberg tumour','Y','2025-10-23 00:00:00'),(88814,11,'XE2UZ','Krait','Y','2025-10-23 00:00:00'),(88815,11,'XM7TD0','Krait snake venom','Y','2025-10-23 00:00:00'),(88813,11,'8A44.4','Krabbe disease','Y','2025-10-23 00:00:00'),(88812,11,'5B5A.11','Korsakoff syndrome','Y','2025-10-23 00:00:00'),(88811,11,'XM5CR2','Konsyl','Y','2025-10-23 00:00:00'),(88810,11,'XM9TX1','Kokoe poison frog poison','Y','2025-10-23 00:00:00'),(88809,11,'XA3T43','Knuckles','Y','2025-10-23 00:00:00'),(88808,11,'FB51.1','Knuckle pads','Y','2025-10-23 00:00:00'),(88807,11,'XE9C0','Known interferent problem with device identified','Y','2025-10-23 00:00:00'),(88806,11,'XE0QB','Known inherent risk of device','Y','2025-10-23 00:00:00'),(88805,11,'XE3AW','Knob component of medical device','Y','2025-10-23 00:00:00'),(88804,11,'XE8WH','Knife, not elsewhere classified','Y','2025-10-23 00:00:00'),(88803,11,'XE174','Knife designed as weapon','Y','2025-10-23 00:00:00'),(88802,11,'XA8RL1','Knee joint','Y','2025-10-23 00:00:00'),(88801,11,'XA8KL5','Knee','Y','2025-10-23 00:00:00'),(88800,11,'KA44.11','Klumpke paralysis','Y','2025-10-23 00:00:00'),(88799,11,'LB73.20','Klippel-Feil anomaly','Y','2025-10-23 00:00:00'),(88798,11,'LD50.31','Klinefelter syndrome, male with more than two X chromosomes','Y','2025-10-23 00:00:00'),(88797,11,'LD50.30','Klinefelter syndrome with karyotype 47,XXY, regular','Y','2025-10-23 00:00:00'),(88796,11,'LD50.3','Klinefelter syndrome','Y','2025-10-23 00:00:00'),(88795,11,'6C71','Kleptomania','Y','2025-10-23 00:00:00'),(88794,11,'7A22','Kleine-Levin syndrome','Y','2025-10-23 00:00:00'),(88793,11,'MG50.5Z','Klebsiella pneumoniae resistant to unspecified antibiotic','Y','2025-10-23 00:00:00'),(88792,11,'MG50.5Y','Klebsiella pneumoniae resistant to other antibiotic','Y','2025-10-23 00:00:00'),(88791,11,'XN741','Klebsiella pneumoniae','Y','2025-10-23 00:00:00'),(88790,11,'XN7WL','Klebsiella oxytoca','Y','2025-10-23 00:00:00'),(88789,11,'XN027','Klebsiella granulomatis','Y','2025-10-23 00:00:00'),(88788,11,'XN620','Klebsiella','Y','2025-10-23 00:00:00'),(88787,11,'XM06K0','Kitasamycin','Y','2025-10-23 00:00:00'),(88786,11,'FA72.1','Kissing spine','Y','2025-10-23 00:00:00'),(88785,11,'XN7EJ','Kingella kingae','Y','2025-10-23 00:00:00'),(88784,11,'XM0W24','King cobra snake venom','Y','2025-10-23 00:00:00'),(88783,11,'SF93','Kidney yin deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(88782,11,'SF94','Kidney yin and yang deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(88781,11,'SF97','Kidney yang deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(88780,11,'SF9Z','Kidney system patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(88779,11,'SB0Z','Kidney system disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(88778,11,'SB00','Kidney stagnation disorder (TM1)','Y','2025-10-23 00:00:00'),(88777,11,'SF92','Kidney qi deficiency with water retention pattern (TM1)','Y','2025-10-23 00:00:00'),(88776,11,'SF90','Kidney qi deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(88775,11,'SG27','Kidney meridian pattern (TM1)','Y','2025-10-23 00:00:00'),(88774,11,'GB6Z','Kidney failure, unspecified','Y','2025-10-23 00:00:00'),(88773,11,'SF91','Kidney failing to receive qi pattern (TM1)','Y','2025-10-23 00:00:00'),(88772,11,'SF96','Kidney essence deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(88771,11,'SB06.0','Kidney edema disorder (TM1)','Y','2025-10-23 00:00:00'),(88770,11,'QB22','Kidney donor','Y','2025-10-23 00:00:00'),(88768,11,'XA6KU8','Kidney','Y','2025-10-23 00:00:00'),(88769,11,'SF95','Kidney deficiency with marrow depletion pattern (TM1)','Y','2025-10-23 00:00:00'),(88766,11,'XM9PV4','Khellin','Y','2025-10-23 00:00:00'),(88767,11,'XM39T6','Khelloside','Y','2025-10-23 00:00:00'),(88765,11,'XM0238','Khat','Y','2025-10-23 00:00:00'),(88764,11,'XE6CN','Keyboard or keypad component of medical device','Y','2025-10-23 00:00:00'),(88763,11,'XM4F63','Ketotifen','Y','2025-10-23 00:00:00'),(88762,11,'XM8M52','Ketorolac','Y','2025-10-23 00:00:00'),(88761,11,'XM63J5','Ketoprofen','Y','2025-10-23 00:00:00'),(88760,11,'XM9UX0','Ketones','Y','2025-10-23 00:00:00'),(88759,11,'XM9795','Ketoconazole','Y','2025-10-23 00:00:00'),(88758,11,'XM9HP7','Ketobemidone','Y','2025-10-23 00:00:00'),(88757,11,'XM5WE7','Ketazolam','Y','2025-10-23 00:00:00'),(88756,11,'XM0YY0','Ketanserin','Y','2025-10-23 00:00:00'),(88755,11,'XM7C11','Ketamine','Y','2025-10-23 00:00:00'),(88754,11,'XM3QU8','Kerosine vapor','Y','2025-10-23 00:00:00'),(88753,11,'XE0KQ','Kerosene heater','Y','2025-10-23 00:00:00'),(88752,11,'XM2Q78','Kerosene','Y','2025-10-23 00:00:00'),(88750,11,'ED56','Keratosis pilaris','Y','2025-10-23 00:00:00'),(88751,11,'1F28.4','Kerion','Y','2025-10-23 00:00:00'),(88748,11,'XM4KL1','Keratoplastic','Y','2025-10-23 00:00:00'),(88749,11,'ME60.3','Keratosis of skin of uncertain or unspecified nature','Y','2025-10-23 00:00:00'),(88747,11,'XM6ES1','Keratolytic drug anthracene','Y','2025-10-23 00:00:00'),(88745,11,'9A78.50','Keratoconus','Y','2025-10-23 00:00:00'),(88746,11,'XM23V5','Keratolytic drug','Y','2025-10-23 00:00:00'),(88744,11,'9A79','Keratoconjunctivitis sicca','Y','2025-10-23 00:00:00'),(88743,11,'XH9XR8','Keratoacanthoma','Y','2025-10-23 00:00:00'),(88742,11,'2C31.1','Keratoacanthoma','Y','2025-10-23 00:00:00'),(88741,11,'EC20.03','Keratinopathic ichthyoses','Y','2025-10-23 00:00:00'),(88740,11,'LC00','Keratinocytic epidermal hamartoma','Y','2025-10-23 00:00:00'),(88739,11,'XM2UL5','Kenacort','Y','2025-10-23 00:00:00'),(88738,11,'EL50.0','Keloidal surgical scar','Y','2025-10-23 00:00:00'),(88737,11,'EE60.0Z','Keloid, unspecified','Y','2025-10-23 00:00:00'),(88736,11,'EE60','Keloid or hypertrophic scars','Y','2025-10-23 00:00:00'),(88734,11,'XM4H89','Kelevan','Y','2025-10-23 00:00:00'),(88735,11,'EE60.0','Keloid','Y','2025-10-23 00:00:00'),(88732,11,'XM9TQ1','KCONVAC','Y','2025-10-23 00:00:00'),(88733,11,'XM4H41','Kebuzone','Y','2025-10-23 00:00:00'),(88731,11,'FA27.0','Kashin-Beck disease','Y','2025-10-23 00:00:00'),(88730,11,'LD50.1','Karyotype 47,XXX','Y','2025-10-23 00:00:00'),(88728,11,'LD50.01','Karyotype 46, X iso Xq','Y','2025-10-23 00:00:00'),(88729,11,'LD50.02','Karyotype 46, X with abnormal sex chromosome, except iso Xq','Y','2025-10-23 00:00:00'),(88726,11,'XM1J98','Karaya (gum)','Y','2025-10-23 00:00:00'),(88727,11,'LD50.00','Karyotype 45, X','Y','2025-10-23 00:00:00'),(88725,11,'XH6PA4','Kaposiform haemangioendothelioma','Y','2025-10-23 00:00:00'),(88724,11,'2B57','Kaposi sarcoma, primary site','Y','2025-10-23 00:00:00'),(88723,11,'2B57.Z','Kaposi sarcoma of unspecified primary site','Y','2025-10-23 00:00:00'),(88722,11,'2B57.1','Kaposi sarcoma of skin','Y','2025-10-23 00:00:00'),(88721,11,'2B57.Y','Kaposi sarcoma of other specified primary sites','Y','2025-10-23 00:00:00'),(88720,11,'2B57.0','Kaposi sarcoma of lung','Y','2025-10-23 00:00:00'),(88719,11,'2B57.2','Kaposi sarcoma of gastrointestinal sites','Y','2025-10-23 00:00:00'),(88718,11,'1C60.30','Kaposi sarcoma associated with human immunodeficiency virus disease associated with tuberculosis','Y','2025-10-23 00:00:00'),(88717,11,'1C61.30','Kaposi sarcoma associated with human immunodeficiency virus disease associated with malaria','Y','2025-10-23 00:00:00'),(88716,11,'XH36A5','Kaposi sarcoma','Y','2025-10-23 00:00:00'),(88715,11,'XM2GB1','Kaolin light','Y','2025-10-23 00:00:00'),(88714,11,'XM7CN8','Kaolin','Y','2025-10-23 00:00:00'),(88713,11,'XM0C03','Kanamycin','Y','2025-10-23 00:00:00'),(88712,11,'XM5TC7','Kallikrein','Y','2025-10-23 00:00:00'),(88711,11,'XM8MZ0','Kallidinogenase','Y','2025-10-23 00:00:00'),(88710,11,'XH6M13','Juxtaglomerular tumour','Y','2025-10-23 00:00:00'),(88709,11,'XH5FH4','Juxtacortical chondrosarcoma','Y','2025-10-23 00:00:00'),(88708,11,'XH49G1','Juxtacortical chondroma','Y','2025-10-23 00:00:00'),(88707,11,'2B31.0','Juvenile xanthogranuloma','Y','2025-10-23 00:00:00'),(88706,11,'FA24.4','Juvenile systemic arthritis','Y','2025-10-23 00:00:00'),(88705,11,'9B73.11','Juvenile retinoschisis','Y','2025-10-23 00:00:00'),(88704,11,'FA24.2','Juvenile psoriatic arthritis','Y','2025-10-23 00:00:00'),(88703,11,'4A41.10','Juvenile polymyositis','Y','2025-10-23 00:00:00'),(88702,11,'FB85.0','Juvenile Paget disease','Y','2025-10-23 00:00:00'),(88701,11,'8A61.30','Juvenile myoclonic epilepsy','Y','2025-10-23 00:00:00'),(88700,11,'2A42.Z','Juvenile myelomonocytic leukaemia, unspecified','Y','2025-10-23 00:00:00'),(88699,11,'2A42.0','Juvenile myelomonocytic leukaemia in complete remission','Y','2025-10-23 00:00:00'),(88698,11,'2A42','Juvenile myelomonocytic leukaemia','Y','2025-10-23 00:00:00'),(88697,11,'XH4QZ1','Juvenile myelomonocytic leukaemia','Y','2025-10-23 00:00:00'),(88696,11,'FA24.1','Juvenile idiopathic polyarthritis','Y','2025-10-23 00:00:00'),(88695,11,'FA24.0Z','Juvenile idiopathic oligoarthritis, onset unspecified','Y','2025-10-23 00:00:00'),(88694,11,'FA24.00','Juvenile idiopathic oligoarthritis, onset persistent','Y','2025-10-23 00:00:00'),(88693,11,'FA24.01','Juvenile idiopathic oligoarthritis, onset extended','Y','2025-10-23 00:00:00'),(88692,11,'FA24.0','Juvenile idiopathic oligoarthritis','Y','2025-10-23 00:00:00'),(88691,11,'FA24.Z','Juvenile idiopathic arthritis, unspecified','Y','2025-10-23 00:00:00'),(88690,11,'FA24','Juvenile idiopathic arthritis','Y','2025-10-23 00:00:00'),(88689,11,'XH9VG1','Juvenile histiocytoma','Y','2025-10-23 00:00:00'),(88688,11,'8B61.2','Juvenile form spinal muscular dystrophy, Type III','Y','2025-10-23 00:00:00'),(88687,11,'XH70H4','Juvenile fibroadenoma','Y','2025-10-23 00:00:00'),(88686,11,'FA24.3','Juvenile enthesitis related arthritis','Y','2025-10-23 00:00:00'),(88685,11,'4A41.01','Juvenile dermatomyositis','Y','2025-10-23 00:00:00'),(88684,11,'XH1146','Juvenile carcinoma of breast','Y','2025-10-23 00:00:00'),(88683,11,'8A61.31','Juvenile absence epilepsy','Y','2025-10-23 00:00:00'),(88682,11,'XN8G9','Juquitiba virus','Y','2025-10-23 00:00:00'),(88681,11,'XM6PP6','Juniper tar','Y','2025-10-23 00:00:00'),(88680,11,'XN2ZL','Jun','Y','2025-10-23 00:00:00'),(88679,11,'XA8SX3','Junctional zone of tongue','Y','2025-10-23 00:00:00'),(88678,11,'BC61','Junctional premature depolarization','Y','2025-10-23 00:00:00'),(88677,11,'XH1M79','Junctional naevus, NOS','Y','2025-10-23 00:00:00'),(88676,11,'EC31','Junctional epidermolysis bullosa','Y','2025-10-23 00:00:00'),(88675,11,'BC81.1','Junctional ectopic tachycardia','Y','2025-10-23 00:00:00'),(88674,11,'XM0C68','Jumping spider venom','Y','2025-10-23 00:00:00'),(88673,11,'XA5A75','Jugulo-omohyoid lymph node','Y','2025-10-23 00:00:00'),(88672,11,'XA6HG6','Jugulodigastric lymph node','Y','2025-10-23 00:00:00'),(88671,11,'XA4582','Jugular vein','Y','2025-10-23 00:00:00'),(88670,11,'XA0LH6','Jugular lymphatic trunk','Y','2025-10-23 00:00:00'),(88669,11,'XA8JF4','Jugular lymph sac','Y','2025-10-23 00:00:00'),(88668,11,'XA60D1','Jugular lymph node','Y','2025-10-23 00:00:00'),(88667,11,'XA8AU6','Jugular ganglion','Y','2025-10-23 00:00:00'),(88666,11,'LB70.2','J-shaped sella turcica','Y','2025-10-23 00:00:00'),(88665,11,'XE9TZ','Joystick component of medical device','Y','2025-10-23 00:00:00'),(88664,11,'LD20.00','Joubert syndrome','Y','2025-10-23 00:00:00'),(88663,11,'XM2YT6','Josamycin','Y','2025-10-23 00:00:00'),(88662,11,'XA4U90','Joints of the upper extremity','Y','2025-10-23 00:00:00'),(88661,11,'XA2NG8','Joints of the thorax','Y','2025-10-23 00:00:00'),(88660,11,'XA1TL5','Joints of the pelvis','Y','2025-10-23 00:00:00'),(88659,11,'XA6UT2','Joints of the head','Y','2025-10-23 00:00:00'),(88658,11,'XA62V5','Joints of the hand','Y','2025-10-23 00:00:00'),(88657,11,'XA7L41','Joints of lower extremity','Y','2025-10-23 00:00:00'),(88656,11,'XA4XC0','Joints and ligaments of the upper extremity','Y','2025-10-23 00:00:00'),(88655,11,'XA2EL4','Joints and ligaments of the thorax','Y','2025-10-23 00:00:00'),(88654,11,'XA6KC7','Joints and ligaments of the pelvis and perineum','Y','2025-10-23 00:00:00'),(88653,11,'XA5ST4','Joints and ligaments of the lower extremity','Y','2025-10-23 00:00:00'),(88652,11,'XA7948','Joints and ligaments of the head and neck','Y','2025-10-23 00:00:00'),(88651,11,'XA22T0','Joint of the foot','Y','2025-10-23 00:00:00'),(88650,11,'SC5Z','Joint impediment disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(88649,11,'LB90.Z','Joint formation defects, unspecified','Y','2025-10-23 00:00:00'),(88648,11,'LB90','Joint formation defects','Y','2025-10-23 00:00:00'),(88647,11,'XE7GQ','Joint component of medical device','Y','2025-10-23 00:00:00'),(88646,11,'PK81.9','Joint aspiration associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(88645,11,'XN7UP','John Cunningham virus','Y','2025-10-23 00:00:00'),(88644,11,'KD33','Jittery baby, not elsewhere classified','Y','2025-10-23 00:00:00'),(88643,11,'XM9YA3','Jellyfish venom','Y','2025-10-23 00:00:00'),(88642,11,'XE8BW','Jellyfish','Y','2025-10-23 00:00:00'),(88641,11,'XA8UM1','Jejunum','Y','2025-10-23 00:00:00'),(88640,11,'XE1CK','Jeep as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(88639,11,'XE3BW','Jeep as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(88638,11,'XM77C5','Jectofer','Y','2025-10-23 00:00:00'),(88637,11,'MB26.06','Jealous delusion','Y','2025-10-23 00:00:00'),(88636,11,'XA88P5','Jaw, unspecified','Y','2025-10-23 00:00:00'),(88635,11,'XE7N3','Jaw component of medical device','Y','2025-10-23 00:00:00'),(88634,11,'XM69M0','Javan spitting cobra snake venom','Y','2025-10-23 00:00:00'),(88633,11,'SA01','Jaundice disorder (TM1)','Y','2025-10-23 00:00:00'),(88632,11,'XM04B0','Jatropha podagrica plant','Y','2025-10-23 00:00:00'),(88631,11,'XM7ED8','Jatropha plant','Y','2025-10-23 00:00:00'),(88630,11,'XM84E3','Jatropha multifida plant','Y','2025-10-23 00:00:00'),(88629,11,'XM4R06','Jatropha macrorhiza plant','Y','2025-10-23 00:00:00'),(88628,11,'XM2C70','Jatropha hastata plant','Y','2025-10-23 00:00:00'),(88627,11,'XM7CZ8','Jatropha gossypiifolia plant','Y','2025-10-23 00:00:00'),(88626,11,'XM8QC3','Jatropha curcas plant','Y','2025-10-23 00:00:00'),(88625,11,'XN9ZK','Japanese encephalitis virus','Y','2025-10-23 00:00:00'),(88624,11,'1C85','Japanese encephalitis','Y','2025-10-23 00:00:00'),(88623,11,'XM8E53','Jameson\'s mamba snake venom','Y','2025-10-23 00:00:00'),(88622,11,'XM80Q0','Jamaica ginger','Y','2025-10-23 00:00:00'),(88621,11,'XM7983','Jamaica dogwood (bark)','Y','2025-10-23 00:00:00'),(88620,11,'XM6XG3','Jalap','Y','2025-10-23 00:00:00'),(88619,11,'XM5ZS2','Jack jumper ant venom','Y','2025-10-23 00:00:00'),(88618,11,'XM7AB4','Ixekizumab','Y','2025-10-23 00:00:00'),(88617,11,'XM3753','Ixazomib','Y','2025-10-23 00:00:00'),(88616,11,'XM65P2','Ixabepilone','Y','2025-10-23 00:00:00'),(88615,11,'XM56L5','Ivosidenib','Y','2025-10-23 00:00:00'),(88614,11,'XM05F2','Ivermectin','Y','2025-10-23 00:00:00'),(88613,11,'XM2QZ5','Ivacaftor and tezacaftor','Y','2025-10-23 00:00:00'),(88611,11,'XM3CW0','Ivacaftor','Y','2025-10-23 00:00:00'),(88612,11,'XM15G5','Ivacaftor and lumacaftor','Y','2025-10-23 00:00:00'),(88610,11,'XM09Q3','Ivabradine','Y','2025-10-23 00:00:00'),(88609,11,'XM5BS6','Itramin tosilate','Y','2025-10-23 00:00:00'),(88608,11,'XM5XD2','Itraconazole','Y','2025-10-23 00:00:00'),(88607,11,'XM2KJ6','Itopride','Y','2025-10-23 00:00:00'),(88606,11,'ME65.1','Itching of skin','Y','2025-10-23 00:00:00'),(88605,11,'XA7F09','Isthmus uteri','Y','2025-10-23 00:00:00'),(88604,11,'XA4NE5','Isthmus of thyroid gland','Y','2025-10-23 00:00:00'),(88603,11,'QA01.7','Issue of medical certificate','Y','2025-10-23 00:00:00'),(88601,11,'XM4A22','Ispagula husk','Y','2025-10-23 00:00:00'),(88602,11,'XM1SC0','Isradipine','Y','2025-10-23 00:00:00'),(88599,11,'XM5RH0','Isoxsuprine','Y','2025-10-23 00:00:00'),(88600,11,'XM3JB5','Ispaghula','Y','2025-10-23 00:00:00'),(88597,11,'XM0V84','Isoxazolyl penicillin','Y','2025-10-23 00:00:00'),(88598,11,'XM83U4','Isoxicam','Y','2025-10-23 00:00:00'),(88595,11,'XM2PQ2','Isotretinoin topical','Y','2025-10-23 00:00:00'),(88596,11,'XM5JS5','Isoxathion','Y','2025-10-23 00:00:00'),(88593,11,'XM4Z91','Isothipendyl','Y','2025-10-23 00:00:00'),(88594,11,'XM98J9','Isotretinoin','Y','2025-10-23 00:00:00'),(88592,11,'XN9ZT','Isospora belli','Y','2025-10-23 00:00:00'),(88590,11,'XM3077','Isosorbide dinitrate','Y','2025-10-23 00:00:00'),(88591,11,'XN4Y2','Isospora','Y','2025-10-23 00:00:00'),(88588,11,'XM2FJ5','Isopropylaminophenazone','Y','2025-10-23 00:00:00'),(88589,11,'XM01Q8','Isosorbide','Y','2025-10-23 00:00:00'),(88587,11,'XM8YA1','Isopropyl rubbing alcohol','Y','2025-10-23 00:00:00'),(88585,11,'XM7KM8','Isopropyl alcohol medicinal','Y','2025-10-23 00:00:00'),(88586,11,'XM38W0','Isopropyl ether','Y','2025-10-23 00:00:00'),(88584,11,'XM5531','Isopropyl alcohol','Y','2025-10-23 00:00:00'),(88582,11,'XM5DR7','Isopropanol','Y','2025-10-23 00:00:00'),(88583,11,'XM1EQ5','Isopropyl acetate','Y','2025-10-23 00:00:00'),(88580,11,'XM6XN4','Isopropamide','Y','2025-10-23 00:00:00'),(88581,11,'XM4QH8','Isopropamide iodide','Y','2025-10-23 00:00:00'),(88578,11,'XM6KG3','Isoprenaline','Y','2025-10-23 00:00:00'),(88579,11,'XM9C32','Isopromethazine','Y','2025-10-23 00:00:00'),(88576,11,'XM58V1','Isophoronediamine','Y','2025-10-23 00:00:00'),(88577,11,'XM4XC6','Isophoronediisocyanate','Y','2025-10-23 00:00:00'),(88575,11,'XM2D79','Isophorone','Y','2025-10-23 00:00:00'),(88574,11,'XM73L8','Isophane insulin','Y','2025-10-23 00:00:00'),(88573,11,'XM17W0','Isopentaquine','Y','2025-10-23 00:00:00'),(88571,11,'XM5FH2','Isoniazid','Y','2025-10-23 00:00:00'),(88572,11,'XM2ZK2','Isonicotinic acid hydrazide','Y','2025-10-23 00:00:00'),(88570,11,'XM27M9','Isometheptene','Y','2025-10-23 00:00:00'),(88568,11,'XE7JF','Isolator component of medical device','Y','2025-10-23 00:00:00'),(88569,11,'XM8KK0','Isomaltose, ferric complex','Y','2025-10-23 00:00:00'),(88567,11,'QC05.0','Isolation','Y','2025-10-23 00:00:00'),(88566,11,'3B62.2','Isolated thrombocytopenia','Y','2025-10-23 00:00:00'),(88565,11,'BA04.2','Isolated systolic secondary hypertension','Y','2025-10-23 00:00:00'),(88564,11,'BA00.2','Isolated systolic hypertension','Y','2025-10-23 00:00:00'),(88562,11,'LA13.70','Isolated optic nerve hypoplasia','Y','2025-10-23 00:00:00'),(88563,11,'9D42.24','Isolated peripheral scotoma','Y','2025-10-23 00:00:00'),(88561,11,'BA04.1','Isolated diastolic secondary hypertension','Y','2025-10-23 00:00:00'),(88560,11,'BA00.1','Isolated diastolic hypertension','Y','2025-10-23 00:00:00'),(88559,11,'8A41.Z','Isolated demyelinating syndromes of the central nervous system, unspecified','Y','2025-10-23 00:00:00'),(88558,11,'8A41','Isolated demyelinating syndromes of the central nervous system','Y','2025-10-23 00:00:00'),(88557,11,'8B22.3','Isolated cerebral amyloid angiopathy','Y','2025-10-23 00:00:00'),(88556,11,'5C53.25','Isolated ATP synthase deficiency','Y','2025-10-23 00:00:00'),(88554,11,'XM1NE7','Isoflurophate','Y','2025-10-23 00:00:00'),(88555,11,'KA84.1','Isoimmunization due to other red cell factors','Y','2025-10-23 00:00:00'),(88553,11,'XM9HY9','Isoflurane','Y','2025-10-23 00:00:00'),(88552,11,'XM5AM5','Isoeugenol','Y','2025-10-23 00:00:00'),(88551,11,'XM8ZC3','Isoetarine','Y','2025-10-23 00:00:00'),(88550,11,'XM0YF6','Isocyanate','Y','2025-10-23 00:00:00'),(88549,11,'XM6BF8','Isoconazole','Y','2025-10-23 00:00:00'),(88548,11,'XM4T23','Isocarboxazid','Y','2025-10-23 00:00:00'),(88547,11,'XM3MD8','Isobutyl acetate','Y','2025-10-23 00:00:00'),(88546,11,'XM3WF1','Isobromindione','Y','2025-10-23 00:00:00'),(88545,11,'XM5642','Isobenzan','Y','2025-10-23 00:00:00'),(88544,11,'XM5B68','Isoamyl nitrite','Y','2025-10-23 00:00:00'),(88543,11,'XM5SH0','Isoamyl alcohol','Y','2025-10-23 00:00:00'),(88542,11,'XM01S1','Isoaminile (citrate)','Y','2025-10-23 00:00:00'),(88541,11,'XM8300','Isoaminile','Y','2025-10-23 00:00:00'),(88540,11,'XH2ST7','Islet cell tumor, NOS','Y','2025-10-23 00:00:00'),(88539,11,'XH5XB7','Islet cell carcinoma','Y','2025-10-23 00:00:00'),(88538,11,'XH8SF8','Islet cell adenomatosis','Y','2025-10-23 00:00:00'),(88537,11,'XH4BY1','Islet cell adenoma','Y','2025-10-23 00:00:00'),(88536,11,'XH3614','Islet cell adenocarcinoma','Y','2025-10-23 00:00:00'),(88535,11,'XM6YS3','Isepamicin','Y','2025-10-23 00:00:00'),(88534,11,'XA5L47','Ischium','Y','2025-10-23 00:00:00'),(88533,11,'XA9CK0','Ischiorectal fossa','Y','2025-10-23 00:00:00'),(88532,11,'DB36.11','Ischiorectal abscess','Y','2025-10-23 00:00:00'),(88531,11,'XA7YP5','Ischiocavernosus tendon','Y','2025-10-23 00:00:00'),(88530,11,'XA73H8','Ischiocavernosus muscle','Y','2025-10-23 00:00:00'),(88529,11,'NC73.11','Ischiocapsular ligament strain or sprain of hip','Y','2025-10-23 00:00:00'),(88528,11,'XA5HX9','Ischiocapsular ligament','Y','2025-10-23 00:00:00'),(88527,11,'DD3Z','Ischaemic vascular disorders of intestine, unspecified','Y','2025-10-23 00:00:00'),(88526,11,'EF60','Ischaemic ulceration of skin','Y','2025-10-23 00:00:00'),(88525,11,'9C40.4Z','Ischaemic optic neuropathy, unspecified','Y','2025-10-23 00:00:00'),(88524,11,'9C40.4','Ischaemic optic neuropathy','Y','2025-10-23 00:00:00'),(88523,11,'FB32.2Z','Ischaemic infarction of muscle, unspecified','Y','2025-10-23 00:00:00'),(88522,11,'FB32.2','Ischaemic infarction of muscle','Y','2025-10-23 00:00:00'),(88521,11,'BA6Z','Ischaemic heart diseases, unspecified','Y','2025-10-23 00:00:00'),(88520,11,'DD31.00','Ischaemic colitis','Y','2025-10-23 00:00:00'),(88519,11,'BA51.Z','Ischaemic cardiomyopathy, unspecified','Y','2025-10-23 00:00:00'),(88518,11,'BA51','Ischaemic cardiomyopathy','Y','2025-10-23 00:00:00'),(88517,11,'DB98.B','Ischaemia reperfusion injury of liver','Y','2025-10-23 00:00:00'),(88516,11,'GB90.3','Ischaemia or infarction of kidney','Y','2025-10-23 00:00:00'),(88515,11,'XM0ZB2','Irukandji jellyfish venom','Y','2025-10-23 00:00:00'),(88514,11,'DA01.4Z','Irritative hyperplasia of oral mucosa, unspecified','Y','2025-10-23 00:00:00'),(88513,11,'DA01.4','Irritative hyperplasia of oral mucosa','Y','2025-10-23 00:00:00'),(88512,11,'DA02.31','Irritant contact gingivostomatitis','Y','2025-10-23 00:00:00'),(88511,11,'EK02.Z','Irritant contact dermatitis, unspecified','Y','2025-10-23 00:00:00'),(88510,11,'EK02.23','Irritant contact dermatitis related to stoma or fistula','Y','2025-10-23 00:00:00'),(88509,11,'EK02.24','Irritant contact dermatitis related to skin contact with prostheses or surgical appliances','Y','2025-10-23 00:00:00'),(88508,11,'EK02.13','Irritant contact dermatitis of vulva','Y','2025-10-23 00:00:00'),(88507,11,'EK02.1','Irritant contact dermatitis of specified site','Y','2025-10-23 00:00:00'),(88506,11,'EK02.1Y','Irritant contact dermatitis of other specified site','Y','2025-10-23 00:00:00'),(88505,11,'EK02.12','Irritant contact dermatitis of hands','Y','2025-10-23 00:00:00'),(88504,11,'EK02.10','Irritant contact dermatitis of external ear','Y','2025-10-23 00:00:00'),(88503,11,'EK02.0','Irritant contact dermatitis from specified external agents','Y','2025-10-23 00:00:00'),(88502,11,'EK02.00','Irritant contact dermatitis due to wet work','Y','2025-10-23 00:00:00'),(88501,11,'EK02.04','Irritant contact dermatitis due to topical medicaments or antimicrobials','Y','2025-10-23 00:00:00'),(88500,11,'EK02.01','Irritant contact dermatitis due to solvents','Y','2025-10-23 00:00:00'),(88499,11,'EK02.21','Irritant contact dermatitis due to saliva','Y','2025-10-23 00:00:00'),(88498,11,'EK02.05','Irritant contact dermatitis due to plants or other vegetable matter','Y','2025-10-23 00:00:00'),(88497,11,'EK02.Y','Irritant contact dermatitis due to other specified cause','Y','2025-10-23 00:00:00'),(88496,11,'EK02.22','Irritant contact dermatitis due to incontinence','Y','2025-10-23 00:00:00'),(88495,11,'EK02.2','Irritant contact dermatitis due to friction, sweating or contact with body fluids','Y','2025-10-23 00:00:00'),(88494,11,'EK02.06','Irritant contact dermatitis due to foods','Y','2025-10-23 00:00:00'),(88493,11,'EK02.02','Irritant contact dermatitis due to exposure to acids, alkalis or other specified chemical irritants','Y','2025-10-23 00:00:00'),(88492,11,'EK02.03','Irritant contact dermatitis due to cosmetics or emollients','Y','2025-10-23 00:00:00'),(88491,11,'EK02','Irritant contact dermatitis','Y','2025-10-23 00:00:00'),(88490,11,'EK02.11','Irritant contact blepharoconjunctivitis','Y','2025-10-23 00:00:00'),(88489,11,'GB06.01','Irritant balanoposthitis','Y','2025-10-23 00:00:00'),(88488,11,'DD91.03','Irritable bowel syndrome, unsubtyped','Y','2025-10-23 00:00:00'),(88487,11,'DD91.0Z','Irritable bowel syndrome, type unspecified','Y','2025-10-23 00:00:00'),(88486,11,'DD91.02','Irritable bowel syndrome, mixed type','Y','2025-10-23 00:00:00'),(88485,11,'DD91.01','Irritable bowel syndrome, diarrhoea predominant','Y','2025-10-23 00:00:00'),(88484,11,'DD91.00','Irritable bowel syndrome, constipation predominant','Y','2025-10-23 00:00:00'),(88483,11,'DD91.Z','Irritable bowel syndrome or functional bowel disorders, unspecified','Y','2025-10-23 00:00:00'),(88482,11,'DD91','Irritable bowel syndrome or certain specified functional bowel disorders','Y','2025-10-23 00:00:00'),(88481,11,'DD91.0','Irritable bowel syndrome','Y','2025-10-23 00:00:00'),(88480,11,'MB24.C','Irritability','Y','2025-10-23 00:00:00'),(88479,11,'MB28.7','Irresponsibility','Y','2025-10-23 00:00:00'),(88478,11,'MF54.1','Irregularly contracted kidney','Y','2025-10-23 00:00:00'),(88477,11,'7A62','Irregular sleep-wake rhythm disorder','Y','2025-10-23 00:00:00'),(88476,11,'LA11.60','Irregular pupil of the eye','Y','2025-10-23 00:00:00'),(88475,11,'SB82','Irregular menstruation disorders (TM1)','Y','2025-10-23 00:00:00'),(88474,11,'9C85.Z','Irregular eye movements, unspecified','Y','2025-10-23 00:00:00'),(88473,11,'XM3EH2','Iron sorbitol citric acid complex','Y','2025-10-23 00:00:00'),(88472,11,'XM54R9','Iron salts','Y','2025-10-23 00:00:00'),(88471,11,'XM2945','iron oxide, nanoparticles','Y','2025-10-23 00:00:00'),(88469,11,'XM8U54','Iron nonmedicinal','Y','2025-10-23 00:00:00'),(88470,11,'5C64.10','Iron overload diseases','Y','2025-10-23 00:00:00'),(88468,11,'XM7PP8','Iron dextran injection','Y','2025-10-23 00:00:00'),(88467,11,'3A00.Z','Iron deficiency anaemia, unspecified','Y','2025-10-23 00:00:00'),(88466,11,'3A00','Iron deficiency anaemia','Y','2025-10-23 00:00:00'),(88465,11,'5B5K.0','Iron deficiency','Y','2025-10-23 00:00:00'),(88464,11,'XM6FS8','Iron ammonium','Y','2025-10-23 00:00:00'),(88463,11,'XM8Z42','Iron (compounds) (medicinal)','Y','2025-10-23 00:00:00'),(88462,11,'9B01.3','Iris sphincter disorders','Y','2025-10-23 00:00:00'),(88461,11,'9A90.2','Iris atrophy','Y','2025-10-23 00:00:00'),(88460,11,'XA3GW7','Iris','Y','2025-10-23 00:00:00'),(88459,11,'XM0992','Irinotecan','Y','2025-10-23 00:00:00'),(88458,11,'LA11.61','Iridoschisis','Y','2025-10-23 00:00:00'),(88457,11,'XM1935','Irbesartan','Y','2025-10-23 00:00:00'),(88456,11,'XK3Z','Ipsilateral','Y','2025-10-23 00:00:00'),(88455,11,'XM5DL7','Iproplatin','Y','2025-10-23 00:00:00'),(88454,11,'XM6DW5','Iproniazid','Y','2025-10-23 00:00:00'),(88453,11,'XM1DT0','Iproheptine','Y','2025-10-23 00:00:00'),(88452,11,'XM90L9','Iprofenin','Y','2025-10-23 00:00:00'),(88451,11,'XM2WY9','Iproclozide','Y','2025-10-23 00:00:00'),(88450,11,'XM24M7','Iprindole','Y','2025-10-23 00:00:00'),(88449,11,'XM4GT8','Ipriflavone','Y','2025-10-23 00:00:00'),(88448,11,'XM2G27','Iprazochrome','Y','2025-10-23 00:00:00'),(88447,11,'XM54K2','Ipratropium bromide','Y','2025-10-23 00:00:00'),(88446,11,'XM8Y84','Ipragliflozin','Y','2025-10-23 00:00:00'),(88445,11,'XM5JH7','Ipilimumab','Y','2025-10-23 00:00:00'),(88444,11,'XM3B88','Ipidacrine','Y','2025-10-23 00:00:00'),(88443,11,'XM8BL3','Ipecacuanha','Y','2025-10-23 00:00:00'),(88442,11,'XM34M9','Ioxitalamic acid','Y','2025-10-23 00:00:00'),(88441,11,'XM6VV1','Ioxilan','Y','2025-10-23 00:00:00'),(88440,11,'XM5EP5','Ioxaglic acid','Y','2025-10-23 00:00:00'),(88439,11,'XM44B9','Ioxaglate','Y','2025-10-23 00:00:00'),(88438,11,'XM5LW4','Iotroxic acid','Y','2025-10-23 00:00:00'),(88437,11,'XM4R74','Iotroxate','Y','2025-10-23 00:00:00'),(88436,11,'XM8VT7','Iotrolan','Y','2025-10-23 00:00:00'),(88435,11,'XM7TM9','Iothiouracil','Y','2025-10-23 00:00:00'),(88434,11,'XM8XV8','Iotalamic acid','Y','2025-10-23 00:00:00'),(88433,11,'XM1AX3','Iopydol','Y','2025-10-23 00:00:00'),(88432,11,'XM4UK7','Iopromide','Y','2025-10-23 00:00:00'),(88431,11,'XM7S30','Iopodic acid','Y','2025-10-23 00:00:00'),(88430,11,'XM9402','Iophenoic acid','Y','2025-10-23 00:00:00'),(88429,11,'XM6227','Iopentol','Y','2025-10-23 00:00:00'),(88428,11,'XM2NU7','Iopanoic acid','Y','2025-10-23 00:00:00'),(88427,11,'XM8C50','Iopamidol','Y','2025-10-23 00:00:00'),(88426,11,'XM1AX0','Ion exchange resin intestinal','Y','2025-10-23 00:00:00'),(88425,11,'XM2WA3','Ion exchange resin cholestyramine','Y','2025-10-23 00:00:00'),(88424,11,'XM9S11','Ion exchange resin anion','Y','2025-10-23 00:00:00'),(88423,11,'XM75B4','Iomeprol','Y','2025-10-23 00:00:00'),(88422,11,'XM3R65','Iohexol','Y','2025-10-23 00:00:00'),(88421,11,'XM8411','Ioglycamic acid','Y','2025-10-23 00:00:00'),(88420,11,'XM50U3','Ioglicic acid','Y','2025-10-23 00:00:00'),(88418,11,'XM2VE6','Iodoxamic acid','Y','2025-10-23 00:00:00'),(88419,11,'XM1R87','Iofendylate','Y','2025-10-23 00:00:00'),(88417,11,'XM80M5','Iodoquinol','Y','2025-10-23 00:00:00'),(88416,11,'XM8QZ2','Iodophthalein sodium','Y','2025-10-23 00:00:00'),(88415,11,'XM4E01','Iodohippuric acid','Y','2025-10-23 00:00:00'),(88414,11,'XM42E0','Iodoheparinate','Y','2025-10-23 00:00:00'),(88413,11,'XM3X72','Iodoform','Y','2025-10-23 00:00:00'),(88412,11,'XM4ML0','Iodocholesterol (131I)','Y','2025-10-23 00:00:00'),(88411,11,'XM6TG8','Iodochlorhydroxyquin topical','Y','2025-10-23 00:00:00'),(88409,11,'XM8NA7','Iodixanol','Y','2025-10-23 00:00:00'),(88410,11,'XM74Y8','Iodobismitol','Y','2025-10-23 00:00:00'),(88408,11,'XM5NA9','Iodipamide','Y','2025-10-23 00:00:00'),(88407,11,'5A00.1Z','Iodine-deficiency-related thyroid disorders or allied conditions, unspecified','Y','2025-10-23 00:00:00'),(88406,11,'5A00.1','Iodine-deficiency-related thyroid disorders or allied conditions','Y','2025-10-23 00:00:00'),(88405,11,'5A00.11','Iodine-deficiency-related multinodular goitre','Y','2025-10-23 00:00:00'),(88403,11,'XM74J0','Iodine vapor','Y','2025-10-23 00:00:00'),(88404,11,'5A00.10','Iodine-deficiency-related diffuse goitre','Y','2025-10-23 00:00:00'),(88402,11,'XM6VL9','Iodine for thyroid conditions (antithyroid)','Y','2025-10-23 00:00:00'),(88401,11,'5B5K.3','Iodine deficiency','Y','2025-10-23 00:00:00'),(88399,11,'XM8YZ7','Iodine 131','Y','2025-10-23 00:00:00'),(88400,11,'XM8492','Iodine 131 therapeutic','Y','2025-10-23 00:00:00'),(88398,11,'XM2YP2','Iodine 125','Y','2025-10-23 00:00:00'),(88397,11,'XM7MV3','Iodine (131I) omburtamab','Y','2025-10-23 00:00:00'),(88396,11,'XM9YB1','Iodine (123I) compounds','Y','2025-10-23 00:00:00'),(88395,11,'XM60L0','Iodinated glycerol','Y','2025-10-23 00:00:00'),(88394,11,'XM2MJ2','Iodinated (131i) human serum albumin','Y','2025-10-23 00:00:00'),(88393,11,'XM3E62','Iodide potassium (expectorant)','Y','2025-10-23 00:00:00'),(88392,11,'XM3Q63','Iodide methylate','Y','2025-10-23 00:00:00'),(88391,11,'XM8C24','Iodide mercury (ointment)','Y','2025-10-23 00:00:00'),(88390,11,'XM0809','Iodide','Y','2025-10-23 00:00:00'),(88389,11,'XM6583','Iodamide','Y','2025-10-23 00:00:00'),(88388,11,'XM8PW2','Iocetamic acid','Y','2025-10-23 00:00:00'),(88387,11,'XM7ZV2','Iocarmic acid','Y','2025-10-23 00:00:00'),(88386,11,'XM79B6','Iobitridol','Y','2025-10-23 00:00:00'),(88385,11,'XM1QH8','Iobenzamic acid','Y','2025-10-23 00:00:00'),(88384,11,'XM60X3','Iobenguane (131I)','Y','2025-10-23 00:00:00'),(88383,11,'XM1QL4','Iobenguane (123I)','Y','2025-10-23 00:00:00'),(88382,11,'9A20.01','Inward displacement of eyeball','Y','2025-10-23 00:00:00'),(88381,11,'9A06.0','Involvement of eyelid by dermatosis classified elsewhere','Y','2025-10-23 00:00:00'),(88380,11,'SB09','Involuntary ejaculation disorder (TM1)','Y','2025-10-23 00:00:00'),(88379,11,'XE8JV','Inverter component of medical device','Y','2025-10-23 00:00:00'),(88378,11,'XM0KH7','Invert sugar','Y','2025-10-23 00:00:00'),(88377,11,'2C61.2','Invasive pleomorphic lobular carcinoma of breast','Y','2025-10-23 00:00:00'),(88376,11,'XH9C56','Invasive micropapillary carcinoma of breast','Y','2025-10-23 00:00:00'),(88375,11,'2C61.1','Invasive lobular carcinoma of breast','Y','2025-10-23 00:00:00'),(88374,11,'XH46G2','Invasive hydatidiform mole','Y','2025-10-23 00:00:00'),(88373,11,'2C61.0','Invasive ductal carcinoma of breast','Y','2025-10-23 00:00:00'),(88372,11,'1F20.01','Invasive cerebral aspergillosis','Y','2025-10-23 00:00:00'),(88371,11,'2C61.4','Invasive carcinoma of breast, unidentifiable type','Y','2025-10-23 00:00:00'),(88370,11,'2C61.3','Invasive carcinoma of breast with mixed ductal and lobular features','Y','2025-10-23 00:00:00'),(88369,11,'2C61','Invasive carcinoma of breast','Y','2025-10-23 00:00:00'),(88368,11,'1F20.00','Invasive aspergillosis of the digestive tract','Y','2025-10-23 00:00:00'),(88367,11,'1F20.0Y','Invasive aspergillosis of other specified site','Y','2025-10-23 00:00:00'),(88366,11,'1F20.0','Invasive aspergillosis','Y','2025-10-23 00:00:00'),(88365,11,'XM2JZ2','Inulin and other polyfructosans','Y','2025-10-23 00:00:00'),(88364,11,'DB30.0','Intussusception of the large intestine','Y','2025-10-23 00:00:00'),(88363,11,'DA91.0','Intussusception of small intestine','Y','2025-10-23 00:00:00'),(88362,11,'DB11.5','Intussusception of appendix','Y','2025-10-23 00:00:00'),(88361,11,'NA0D.14','Intrusive luxation of tooth','Y','2025-10-23 00:00:00'),(88360,11,'XA31C3','Intrinsic muscles of tongue','Y','2025-10-23 00:00:00'),(88359,11,'KA82.3','Intraventricular nontraumatic haemorrhage, grade 4, of fetus or newborn','Y','2025-10-23 00:00:00'),(88358,11,'KA82.2','Intraventricular nontraumatic haemorrhage, grade 3, of fetus or newborn','Y','2025-10-23 00:00:00'),(88357,11,'KA82.1','Intraventricular nontraumatic haemorrhage, grade 2, of fetus or newborn','Y','2025-10-23 00:00:00'),(88356,11,'KA82.0','Intraventricular nontraumatic haemorrhage, grade 1, of fetus or newborn','Y','2025-10-23 00:00:00'),(88355,11,'8B00.4','Intraventricular haemorrhage without parenchymal haemorrhage','Y','2025-10-23 00:00:00'),(88354,11,'KA40.03','Intraventricular haemorrhage due to birth injury','Y','2025-10-23 00:00:00'),(88353,11,'XM7D47','Intravenous anaesthetics','Y','2025-10-23 00:00:00'),(88352,11,'XH60C2','Intravascular leiomyomatosis','Y','2025-10-23 00:00:00'),(88351,11,'2A81.1','Intravascular large B-cell lymphoma','Y','2025-10-23 00:00:00'),(88350,11,'XH50S7','Intravascular large B-cell lymphoma','Y','2025-10-23 00:00:00'),(88349,11,'XH3C78','Intravascular bronchial alveolar tumour','Y','2025-10-23 00:00:00'),(88348,11,'GA16.2','Intrauterine synechiae','Y','2025-10-23 00:00:00'),(88347,11,'KB20.Z','Intrauterine hypoxia, unspecified','Y','2025-10-23 00:00:00'),(88346,11,'KB20.1','Intrauterine hypoxia first noted during labour or delivery','Y','2025-10-23 00:00:00'),(88344,11,'KB20','Intrauterine hypoxia','Y','2025-10-23 00:00:00'),(88345,11,'KB20.0','Intrauterine hypoxia first noted before onset of labour','Y','2025-10-23 00:00:00'),(88343,11,'KA20.1Z','Intrauterine growth restriction, unspecified','Y','2025-10-23 00:00:00'),(88342,11,'KA20.12','Intrauterine growth restriction associated with small for gestational age','Y','2025-10-23 00:00:00'),(88341,11,'KA20.1','Intrauterine growth restriction','Y','2025-10-23 00:00:00'),(88340,11,'XH8AD3','Intratubular malignant germ cells','Y','2025-10-23 00:00:00'),(88339,11,'XH7RD2','Intratubular large cell hyalinizing Sertoli cell neoplasia','Y','2025-10-23 00:00:00'),(88338,11,'XH33N4','Intrathyroid thymic carcinoma','Y','2025-10-23 00:00:00'),(88337,11,'XA9WH0','Intrathoracic lymph nodes','Y','2025-10-23 00:00:00'),(88336,11,'1D04.3','Intraspinal subdural granuloma','Y','2025-10-23 00:00:00'),(88335,11,'1D03.1','Intraspinal subdural abscess','Y','2025-10-23 00:00:00'),(88334,11,'1D04.2','Intraspinal intramedullary granuloma','Y','2025-10-23 00:00:00'),(88333,11,'1D03.0','Intraspinal intramedullary abscess','Y','2025-10-23 00:00:00'),(88332,11,'1D04.4','Intraspinal extradural granuloma','Y','2025-10-23 00:00:00'),(88331,11,'1D03.2','Intraspinal extradural abscess','Y','2025-10-23 00:00:00'),(88330,11,'1D04.5','Intraspinal epidural granuloma','Y','2025-10-23 00:00:00'),(88329,11,'1D03.4','Intraspinal epidural abscess','Y','2025-10-23 00:00:00'),(88328,11,'DB70.02','Intrasphincteric abscess','Y','2025-10-23 00:00:00'),(88327,11,'XH1GA4','Intrapulmonary thymoma','Y','2025-10-23 00:00:00'),(88326,11,'JA42.Z','Intrapartum haemorrhage, unspecified','Y','2025-10-23 00:00:00'),(88325,11,'JA42.0','Intrapartum haemorrhage with coagulation defect','Y','2025-10-23 00:00:00'),(88324,11,'JA42.2','Intrapartum haemorrhage resulting from obstructed labour without mention of uterine rupture','Y','2025-10-23 00:00:00'),(88323,11,'JA42.1','Intrapartum haemorrhage resulting from obstructed labour with uterine rupture','Y','2025-10-23 00:00:00'),(88322,11,'JA42','Intrapartum haemorrhage','Y','2025-10-23 00:00:00'),(88321,11,'KD3B.1','Intrapartum fetal death','Y','2025-10-23 00:00:00'),(88320,11,'XH9119','Intraosseous well differentiated osteosarcoma','Y','2025-10-23 00:00:00'),(88319,11,'XY9N','Intraoperative','Y','2025-10-23 00:00:00'),(88318,11,'XH4BQ8','Intraneural perineurioma','Y','2025-10-23 00:00:00'),(88317,11,'XH3TE0','Intramuscular lipoma','Y','2025-10-23 00:00:00'),(88316,11,'XH0553','Intramuscular haemangioma','Y','2025-10-23 00:00:00'),(88315,11,'DA26.2','Intramural haemorrhage of oesophagus','Y','2025-10-23 00:00:00'),(88314,11,'XA4LQ4','Intramedullary space','Y','2025-10-23 00:00:00'),(88313,11,'DB99.6Z','Intrahepatic cholestasis, not elsewhere classified, unspecified','Y','2025-10-23 00:00:00'),(88312,11,'DB99.6','Intrahepatic cholestasis, not elsewhere classified','Y','2025-10-23 00:00:00'),(88311,11,'DC11.7','Intrahepatic cholelithiasis','Y','2025-10-23 00:00:00'),(88310,11,'2C12.10','Intrahepatic cholangiocarcinoma','Y','2025-10-23 00:00:00'),(88309,11,'2E64.0Z','Intraepidermal squamous cell carcinoma, unspecified','Y','2025-10-23 00:00:00'),(88308,11,'2E64.0','Intraepidermal squamous cell carcinoma','Y','2025-10-23 00:00:00'),(88307,11,'XH1PG0','Intraepidermal epithelioma of Jadassohn','Y','2025-10-23 00:00:00'),(88306,11,'XH3PE9','Intraductal tubulopapillary neoplasm','Y','2025-10-23 00:00:00'),(88305,11,'XH7QS7','Intraductal tubular-papillary neoplasm, low grade','Y','2025-10-23 00:00:00'),(88304,11,'XH64S7','Intraductal tubular-papillary neoplasm, high grade','Y','2025-10-23 00:00:00'),(88303,11,'XH4JD3','Intraductal papillomatosis, NOS','Y','2025-10-23 00:00:00'),(88302,11,'XH4US4','Intraductal papilloma with lobular carcinoma in situ','Y','2025-10-23 00:00:00'),(88301,11,'XH11S9','Intraductal papilloma with DCIS','Y','2025-10-23 00:00:00'),(88300,11,'XH60S7','Intraductal papilloma with atypical ductal hyperplasia','Y','2025-10-23 00:00:00'),(88299,11,'2F30.2','Intraductal papilloma of breast','Y','2025-10-23 00:00:00'),(88298,11,'XH4LZ4','Intraductal papilloma','Y','2025-10-23 00:00:00'),(88297,11,'XH8ML6','Intraductal papillary-mucinous tumour with moderate dysplasia','Y','2025-10-23 00:00:00'),(88296,11,'XH8MD2','Intraductal papillary-mucinous tumour with low grade dysplasia','Y','2025-10-23 00:00:00'),(88295,11,'XH4070','Intraductal papillary-mucinous tumour with intermediate dysplasia','Y','2025-10-23 00:00:00'),(88294,11,'XH5E08','Intraductal papillary-mucinous carcinoma, non-invasive','Y','2025-10-23 00:00:00'),(88293,11,'XH5WU3','Intraductal papillary-mucinous carcinoma, invasive','Y','2025-10-23 00:00:00'),(88292,11,'XH5232','Intraductal papillary-mucinous adenoma','Y','2025-10-23 00:00:00'),(88291,11,'XH6HK2','Intraductal papillary neoplasm, NOS','Y','2025-10-23 00:00:00'),(88290,11,'XH5ZH7','Intraductal papillary neoplasm with low grade intraepithelial neoplasia','Y','2025-10-23 00:00:00'),(88289,11,'XH6AH7','Intraductal papillary neoplasm with high grade intraepithelial neoplasia','Y','2025-10-23 00:00:00'),(88288,11,'XH90W1','Intraductal papillary neoplasm with associated invasive carcinoma','Y','2025-10-23 00:00:00'),(88287,11,'XH3MB3','Intraductal papillary mucinous neoplasm with high grade dysplasia','Y','2025-10-23 00:00:00'),(88286,11,'XH2SE1','Intraductal papillary mucinous neoplasm with an associated invasive carcinoma','Y','2025-10-23 00:00:00'),(88285,11,'XH8MA7','Intraductal papillary adenocarcinoma with invasion','Y','2025-10-23 00:00:00'),(88284,11,'XH0GQ3','Intraductal micropapillary carcinoma','Y','2025-10-23 00:00:00'),(88283,11,'XH1H31','Intraductal carcinoma, noninfiltrating, NOS','Y','2025-10-23 00:00:00'),(88282,11,'XH39X8','Intraductal carcinoma, clinging, high grade','Y','2025-10-23 00:00:00'),(88281,11,'XH7XE0','Intraductal carcinoma and lobular carcinoma in situ','Y','2025-10-23 00:00:00'),(88280,11,'XH9Z29','Intraductal and lobular carcinoma','Y','2025-10-23 00:00:00'),(88279,11,'XH6RX1','Intracystic papillary neoplasm with low grade intraepithelial neoplasia','Y','2025-10-23 00:00:00'),(88278,11,'XH9F80','Intracystic papillary adenoma','Y','2025-10-23 00:00:00'),(88277,11,'8B22.4Z','Intracranial vascular malformation, unspecified','Y','2025-10-23 00:00:00'),(88276,11,'8B22.4','Intracranial vascular malformation','Y','2025-10-23 00:00:00'),(88275,11,'MB71.0','Intracranial space-occupying lesion','Y','2025-10-23 00:00:00'),(88274,11,'XA08F7','Intracranial site, not elsewhere classified','Y','2025-10-23 00:00:00'),(88273,11,'KA82.Z','Intracranial nontraumatic haemorrhage of fetus or newborn, unspecified','Y','2025-10-23 00:00:00'),(88272,11,'KA82','Intracranial nontraumatic haemorrhage of fetus or newborn','Y','2025-10-23 00:00:00'),(88271,11,'KA40.0Z','Intracranial laceration or haemorrhage due to birth injury, unspecified','Y','2025-10-23 00:00:00'),(88270,11,'KA40.0','Intracranial laceration or haemorrhage due to birth injury','Y','2025-10-23 00:00:00'),(88269,11,'NA07.Z','Intracranial injury, unspecified','Y','2025-10-23 00:00:00'),(88268,11,'NA07','Intracranial injury','Y','2025-10-23 00:00:00'),(88267,11,'8D61.Z','Intracranial hypotension, unspecified','Y','2025-10-23 00:00:00'),(88266,11,'8E66','Intracranial hypotension due to lumbar puncture','Y','2025-10-23 00:00:00'),(88265,11,'8D61','Intracranial hypotension','Y','2025-10-23 00:00:00'),(88264,11,'8B0Z','Intracranial haemorrhage, unspecified','Y','2025-10-23 00:00:00'),(88263,11,'1D04.1Z','Intracranial granuloma, unspecified','Y','2025-10-23 00:00:00'),(88262,11,'1D04.1','Intracranial granuloma','Y','2025-10-23 00:00:00'),(88261,11,'XA4H19','Intracranial blood vessels, not elsewhere classified','Y','2025-10-23 00:00:00'),(88260,11,'XA85W7','Intracranial artery','Y','2025-10-23 00:00:00'),(88259,11,'8D67','Intracranial arachnoid cyst','Y','2025-10-23 00:00:00'),(88258,11,'1D03.3Z','Intracranial abscess, unspecified','Y','2025-10-23 00:00:00'),(88257,11,'1D03.3','Intracranial abscess','Y','2025-10-23 00:00:00'),(88256,11,'XH9LS2','Intracortical osteosarcoma','Y','2025-10-23 00:00:00'),(88255,11,'XA6AV3','Intracerebrum','Y','2025-10-23 00:00:00'),(88254,11,'KA82.4','Intracerebral nontraumatic haemorrhage of fetus or newborn','Y','2025-10-23 00:00:00'),(88253,11,'8B00.Z','Intracerebral haemorrhage, site unspecified','Y','2025-10-23 00:00:00'),(88252,11,'8B00','Intracerebral haemorrhage','Y','2025-10-23 00:00:00'),(88251,11,'BC46','Intracardiac thrombosis','Y','2025-10-23 00:00:00'),(88250,11,'NC72.23','Intracapsular fracture of femur','Y','2025-10-23 00:00:00'),(88249,11,'XH4MA6','Intracanalicular fibroadenoma','Y','2025-10-23 00:00:00'),(88248,11,'MD82','Intra-abdominal or pelvic swelling, mass or lump','Y','2025-10-23 00:00:00'),(88247,11,'XA05C1','Intra-abdominal lymph nodes','Y','2025-10-23 00:00:00'),(88246,11,'DD50.2Z','Intra-abdominal hernia, unspecified','Y','2025-10-23 00:00:00'),(88245,11,'DD50.2','Intra-abdominal hernia','Y','2025-10-23 00:00:00'),(88244,11,'6C4G.3','Intoxication due to unknown or unspecified psychoactive substance','Y','2025-10-23 00:00:00'),(88243,11,'6C4F.3','Intoxication due to multiple specified psychoactive substances','Y','2025-10-23 00:00:00'),(88242,11,'VD34','Intimate relationships [WHODAS]','Y','2025-10-23 00:00:00'),(88241,11,'VW42','Intimate relationships','Y','2025-10-23 00:00:00'),(88240,11,'XH36H7','Intimal sarcoma','Y','2025-10-23 00:00:00'),(88239,11,'SF7J','Intestine cold stagnation pattern (TM1)','Y','2025-10-23 00:00:00'),(88238,11,'XA3JR1','Intestinal Wall','Y','2025-10-23 00:00:00'),(88237,11,'XA55H2','Intestinal vein','Y','2025-10-23 00:00:00'),(88236,11,'XH9FT0','Intestinal T-cell lymphoma','Y','2025-10-23 00:00:00'),(88235,11,'1F90.1','Intestinal parasitic infestation not otherwise specified','Y','2025-10-23 00:00:00'),(88234,11,'KB87.Z','Intestinal obstruction of newborn, unspecified','Y','2025-10-23 00:00:00'),(88233,11,'KB87','Intestinal obstruction of newborn','Y','2025-10-23 00:00:00'),(88232,11,'KB87.0','Intestinal obstruction due to inspissated milk','Y','2025-10-23 00:00:00'),(88231,11,'XM7EV4','Intestinal motility control drug biological','Y','2025-10-23 00:00:00'),(88230,11,'XM3ZU0','Intestinal motility control drug','Y','2025-10-23 00:00:00'),(88229,11,'DA96.0Z','Intestinal malabsorption, unspecified','Y','2025-10-23 00:00:00'),(88228,11,'DA96.Z','Intestinal malabsorption or protein-losing enteropathy, unspecified','Y','2025-10-23 00:00:00'),(88227,11,'DA96','Intestinal malabsorption or protein-losing enteropathy','Y','2025-10-23 00:00:00'),(88226,11,'DA96.0','Intestinal malabsorption','Y','2025-10-23 00:00:00'),(88225,11,'XA9D98','Intestinal lymphatic trunk','Y','2025-10-23 00:00:00'),(88224,11,'BD92.0','Intestinal lymphangiectasia','Y','2025-10-23 00:00:00'),(88222,11,'XA07V7','Intestinal lumbar trunk','Y','2025-10-23 00:00:00'),(88223,11,'XA3TG4','Intestinal lymph node','Y','2025-10-23 00:00:00'),(88221,11,'1A05','Intestinal infections due to Yersinia enterocolitica','Y','2025-10-23 00:00:00'),(88220,11,'1A02','Intestinal infections due to Shigella','Y','2025-10-23 00:00:00'),(88219,11,'1A03.Y','Intestinal infections due to other specified Escherichia coli','Y','2025-10-23 00:00:00'),(88218,11,'1A03.Z','Intestinal infections due to Escherichia coli, unspecified','Y','2025-10-23 00:00:00'),(88217,11,'1A03','Intestinal infections due to Escherichia coli','Y','2025-10-23 00:00:00'),(88216,11,'1A36.0Z','Intestinal infections due to Entamoeba, unspecified','Y','2025-10-23 00:00:00'),(88215,11,'1A36.0','Intestinal infections due to Entamoeba','Y','2025-10-23 00:00:00'),(88214,11,'1A24','Intestinal infections due to Cytomegalovirus','Y','2025-10-23 00:00:00'),(88213,11,'1A04','Intestinal infections due to Clostridioides difficile','Y','2025-10-23 00:00:00'),(88212,11,'1A01','Intestinal infection due to other Vibrio','Y','2025-10-23 00:00:00'),(88211,11,'1F90.2','Intestinal helminthiasis, unspecified','Y','2025-10-23 00:00:00'),(88209,11,'XA68L7','Intestinal artery','Y','2025-10-23 00:00:00'),(88210,11,'DA96.05','Intestinal failure','Y','2025-10-23 00:00:00'),(88208,11,'1F60.1','Intestinal angiostrongyliasis','Y','2025-10-23 00:00:00'),(88207,11,'DA91.2','Intestinal adhesions or bands of small intestine with obstruction','Y','2025-10-23 00:00:00'),(88206,11,'SA59','Intestinal abscess disorder (TM1)','Y','2025-10-23 00:00:00'),(88205,11,'XA5180','Intervertebral fibrocartilage ligament','Y','2025-10-23 00:00:00'),(88204,11,'ME93.47','Intervertebral disc stenosis of neural canal, upper extremity','Y','2025-10-23 00:00:00'),(88203,11,'ME93.4Z','Intervertebral disc stenosis of neural canal, unspecified','Y','2025-10-23 00:00:00'),(88202,11,'ME93.42','Intervertebral disc stenosis of neural canal, thoracic region','Y','2025-10-23 00:00:00'),(88201,11,'ME93.44','Intervertebral disc stenosis of neural canal, sacral region','Y','2025-10-23 00:00:00'),(88200,11,'ME93.48','Intervertebral disc stenosis of neural canal, rib cage','Y','2025-10-23 00:00:00'),(88199,11,'ME93.45','Intervertebral disc stenosis of neural canal, pelvic region','Y','2025-10-23 00:00:00'),(88198,11,'ME93.43','Intervertebral disc stenosis of neural canal, lumbar region','Y','2025-10-23 00:00:00'),(88197,11,'ME93.46','Intervertebral disc stenosis of neural canal, lower extremity','Y','2025-10-23 00:00:00'),(88196,11,'ME93.40','Intervertebral disc stenosis of neural canal, head region','Y','2025-10-23 00:00:00'),(88195,11,'ME93.41','Intervertebral disc stenosis of neural canal, cervical region','Y','2025-10-23 00:00:00'),(88194,11,'ME93.4','Intervertebral disc stenosis of neural canal','Y','2025-10-23 00:00:00'),(88193,11,'XA02R1','Intervertebral disc or space','Y','2025-10-23 00:00:00'),(88192,11,'FA80.Z','Intervertebral disc degeneration, unspecified','Y','2025-10-23 00:00:00'),(88191,11,'FA80.4','Intervertebral disc degeneration of thoracic spine without prolapsed disc','Y','2025-10-23 00:00:00'),(88190,11,'FA80.5','Intervertebral disc degeneration of thoracic spine with prolapsed disc','Y','2025-10-23 00:00:00'),(88189,11,'FA80.7','Intervertebral disc degeneration of thoracic spine with nervous system involvement','Y','2025-10-23 00:00:00'),(88188,11,'FA80.6','Intervertebral disc degeneration of thoracic spine with bony spur at the vertebra','Y','2025-10-23 00:00:00'),(88187,11,'FA80.8','Intervertebral disc degeneration of lumbar spine without prolapsed disc','Y','2025-10-23 00:00:00'),(88186,11,'FA80.9','Intervertebral disc degeneration of lumbar spine with prolapsed disc','Y','2025-10-23 00:00:00'),(88185,11,'FA80.B','Intervertebral disc degeneration of lumbar spine with nervous system involvement','Y','2025-10-23 00:00:00'),(88184,11,'FA80.A','Intervertebral disc degeneration of lumbar spine with bony spur at the vertebra','Y','2025-10-23 00:00:00'),(88183,11,'FA80.0','Intervertebral disc degeneration of cervical spine without prolapsed disc','Y','2025-10-23 00:00:00'),(88182,11,'FA80.1','Intervertebral disc degeneration of cervical spine with prolapsed disc','Y','2025-10-23 00:00:00'),(88181,11,'FA80.3','Intervertebral disc degeneration of cervical spine with nervous system involvement','Y','2025-10-23 00:00:00'),(88180,11,'FA80.2','Intervertebral disc degeneration of cervical spine with bony spur at the vertebra','Y','2025-10-23 00:00:00'),(88179,11,'FA80','Intervertebral disc degeneration','Y','2025-10-23 00:00:00'),(88178,11,'XA2Y58','Intervertebral disc','Y','2025-10-23 00:00:00'),(88177,11,'XA5651','Interventricular septum','Y','2025-10-23 00:00:00'),(88176,11,'QC1Z','Intervention not carried out, unspecified reason','Y','2025-10-23 00:00:00'),(88175,11,'QC1Y','Intervention not carried out for other reasons','Y','2025-10-23 00:00:00'),(88174,11,'NC72.30','Intertrochanteric fracture of femur','Y','2025-10-23 00:00:00'),(88173,11,'XA9JB2','Intertrochanteric crest of femur','Y','2025-10-23 00:00:00'),(88172,11,'XK0V','Intertriginous distribution','Y','2025-10-23 00:00:00'),(88171,11,'EK02.20','Intertriginous dermatitis due to friction, sweating or contact with body fluids','Y','2025-10-23 00:00:00'),(88170,11,'XA9NZ1','Intertransverse ligament','Y','2025-10-23 00:00:00'),(88169,11,'XA8UU5','Intertransversarii tendon','Y','2025-10-23 00:00:00'),(88168,11,'XA02Z7','Intertransversarii muscle','Y','2025-10-23 00:00:00'),(88167,11,'XA5VK5','Intertragic notch of pinna','Y','2025-10-23 00:00:00'),(88166,11,'XA2YS1','Intertarsal joint','Y','2025-10-23 00:00:00'),(88165,11,'CB05.4Z','Interstitial lung diseases associated with systemic vasculitides, unspecified','Y','2025-10-23 00:00:00'),(88164,11,'CB05.4','Interstitial lung diseases associated with systemic vasculitides','Y','2025-10-23 00:00:00'),(88163,11,'CB05.Z','Interstitial lung diseases associated with systemic diseases, unspecified','Y','2025-10-23 00:00:00'),(88162,11,'CB05','Interstitial lung diseases associated with systemic diseases','Y','2025-10-23 00:00:00'),(88161,11,'CB05.3','Interstitial lung diseases associated with metabolic diseases','Y','2025-10-23 00:00:00'),(88160,11,'CB05.2','Interstitial lung diseases associated with granulomatous diseases','Y','2025-10-23 00:00:00'),(88159,11,'CB05.1','Interstitial lung diseases associated with connective tissue diseases','Y','2025-10-23 00:00:00'),(88158,11,'XA08M4','Interstitial fluid','Y','2025-10-23 00:00:00'),(88157,11,'KB27.0','Interstitial emphysema originating in the perinatal period','Y','2025-10-23 00:00:00'),(88156,11,'CB40.3','Interstitial emphysema','Y','2025-10-23 00:00:00'),(88155,11,'GC00.3','Interstitial cystitis','Y','2025-10-23 00:00:00'),(88154,11,'XA2E69','Interspinales tendon','Y','2025-10-23 00:00:00'),(88153,11,'XA8YU1','Interspinales muscle','Y','2025-10-23 00:00:00'),(88152,11,'XA9M15','Interspinal ligament','Y','2025-10-23 00:00:00'),(88151,11,'XX45B7','Intersex','Y','2025-10-23 00:00:00'),(88150,11,'XA9LN5','Interscapular region','Y','2025-10-23 00:00:00'),(88149,11,'LA8B.22','Interrupted aortic arch','Y','2025-10-23 00:00:00'),(88148,11,'XE8S0','Interrogation problem','Y','2025-10-23 00:00:00'),(88147,11,'XA6L43','Interphalangeal joint of the thumb','Y','2025-10-23 00:00:00'),(88146,11,'XA9291','Interphalangeal joint of the hand','Y','2025-10-23 00:00:00'),(88145,11,'XA04T7','Interphalangeal joint of the foot','Y','2025-10-23 00:00:00'),(88144,11,'XA87P9','Interphalangeal joint of great toe','Y','2025-10-23 00:00:00'),(88143,11,'VW4Z','Interpersonal interactions and relationships, unspecified','Y','2025-10-23 00:00:00'),(88142,11,'XA4XJ2','Interosseous talocalcaneal ligament','Y','2025-10-23 00:00:00'),(88141,11,'XA02T6','Interosseous sacroiliac ligament','Y','2025-10-23 00:00:00'),(88140,11,'XA9179','Interosseous recurrent artery','Y','2025-10-23 00:00:00'),(88139,11,'XA6SA0','Interosseous membrane of forearm','Y','2025-10-23 00:00:00'),(88138,11,'XA52E8','Interosseous ligament','Y','2025-10-23 00:00:00'),(88137,11,'XA4M25','Interossei tendon','Y','2025-10-23 00:00:00'),(88136,11,'XA8TS8','Interossei plantar of foot muscle','Y','2025-10-23 00:00:00'),(88135,11,'XA6463','Interossei of the hand muscle','Y','2025-10-23 00:00:00'),(88134,11,'XA15P6','Interossei dorsal of foot muscle','Y','2025-10-23 00:00:00'),(88133,11,'XE02N','Interoperability problem with device identified','Y','2025-10-23 00:00:00'),(88132,11,'9C83.5','Internuclear ophthalmoplegia','Y','2025-10-23 00:00:00'),(88131,11,'XA5BW5','Interneuron','Y','2025-10-23 00:00:00'),(88130,11,'RA09','International emergency code 10','Y','2025-10-23 00:00:00'),(88129,11,'RA08','International emergency code 09','Y','2025-10-23 00:00:00'),(88128,11,'RA07','International emergency code 08','Y','2025-10-23 00:00:00'),(88127,11,'RA06','International emergency code 07','Y','2025-10-23 00:00:00'),(88126,11,'RA05','International emergency code 06','Y','2025-10-23 00:00:00'),(88125,11,'RA04','International emergency code 05','Y','2025-10-23 00:00:00'),(88124,11,'XA33M0','Internal urethral sphincter','Y','2025-10-23 00:00:00'),(88123,11,'XA8KN5','Internal urethral orifice','Y','2025-10-23 00:00:00'),(88122,11,'XA9S49','Internal thoracic artery','Y','2025-10-23 00:00:00'),(88120,11,'XA7XD2','Internal pudendal vein','Y','2025-10-23 00:00:00'),(88121,11,'XA5VX8','Internal striate of the anterolateral central artery','Y','2025-10-23 00:00:00'),(88118,11,'XA3Z33','Internal os','Y','2025-10-23 00:00:00'),(88119,11,'XA7FK7','Internal pudendal artery','Y','2025-10-23 00:00:00'),(88117,11,'9D01.0','Internal ophthalmoplegia','Y','2025-10-23 00:00:00'),(88116,11,'XA45G1','Internal oblique abdominis tendon','Y','2025-10-23 00:00:00'),(88115,11,'XA9B36','Internal oblique abdominis muscle','Y','2025-10-23 00:00:00'),(88114,11,'XA3V69','Internal mammary vein','Y','2025-10-23 00:00:00'),(88113,11,'XA6UK8','Internal laryngeal nerve','Y','2025-10-23 00:00:00'),(88112,11,'XA46B9','Internal jugular vein','Y','2025-10-23 00:00:00'),(88111,11,'XA1256','Internal intercostal muscle','Y','2025-10-23 00:00:00'),(88110,11,'XA3EG0','Internal iliac vein','Y','2025-10-23 00:00:00'),(88109,11,'XA0TJ6','Internal iliac lymph node','Y','2025-10-23 00:00:00'),(88108,11,'XA4HL2','Internal iliac artery','Y','2025-10-23 00:00:00'),(88107,11,'FA33.Z','Internal derangement of knee, unspecified','Y','2025-10-23 00:00:00'),(88106,11,'FA33','Internal derangement of knee','Y','2025-10-23 00:00:00'),(88105,11,'XA6DC3','Internal cerebral vein','Y','2025-10-23 00:00:00'),(88104,11,'XA5JN1','Internal carotid plexus','Y','2025-10-23 00:00:00'),(88103,11,'XA78C0','Internal carotid artery','Y','2025-10-23 00:00:00'),(88102,11,'XA5JN6','Internal capsule','Y','2025-10-23 00:00:00'),(88101,11,'XA5YM5','Internal auditory vein','Y','2025-10-23 00:00:00'),(88100,11,'XA6ZY7','Internal Acoustic Meatus','Y','2025-10-23 00:00:00'),(88099,11,'XK49','Internal','Y','2025-10-23 00:00:00'),(88098,11,'9C80.3Z','Intermittent strabismus, unspecified','Y','2025-10-23 00:00:00'),(88097,11,'9C80.3','Intermittent strabismus','Y','2025-10-23 00:00:00'),(88096,11,'XE8BU','Intermittent shock','Y','2025-10-23 00:00:00'),(88095,11,'XE1WW','Intermittent program or algorithm execution','Y','2025-10-23 00:00:00'),(88094,11,'XE2A6','Intermittent loss of power','Y','2025-10-23 00:00:00'),(88093,11,'XE2DM','Intermittent infusion','Y','2025-10-23 00:00:00'),(88092,11,'FA27.4','Intermittent hydrarthrosis','Y','2025-10-23 00:00:00'),(88091,11,'6C73','Intermittent explosive disorder','Y','2025-10-23 00:00:00'),(88090,11,'XE538','Intermittent energy output','Y','2025-10-23 00:00:00'),(88089,11,'9C80.30','Intermittent divergent exotropia','Y','2025-10-23 00:00:00'),(88088,11,'9C80.31','Intermittent convergent esotropia','Y','2025-10-23 00:00:00'),(88087,11,'XE4JX','Intermittent communication failure','Y','2025-10-23 00:00:00'),(88086,11,'XE1T0','Intermittent capture','Y','2025-10-23 00:00:00'),(88085,11,'9C61.15','Intermittent angle-closure','Y','2025-10-23 00:00:00'),(88084,11,'XT5G','Intermittent','Y','2025-10-23 00:00:00'),(88083,11,'XA6FF3','Intermetatarsal joint','Y','2025-10-23 00:00:00'),(88082,11,'XA9DN6','Intermetacarpal joint','Y','2025-10-23 00:00:00'),(88081,11,'GA20.20','Intermenstrual bleeding','Y','2025-10-23 00:00:00'),(88080,11,'XM06K1','Intermediate-acting sulfonamides','Y','2025-10-23 00:00:00'),(88079,11,'XA2UJ4','Intermediate lymph node','Y','2025-10-23 00:00:00'),(88078,11,'1C1E.1','Intermediate lesions of pinta','Y','2025-10-23 00:00:00'),(88077,11,'5A40.Z','Intermediate hyperglycaemia, unspecified','Y','2025-10-23 00:00:00'),(88076,11,'5A40','Intermediate hyperglycaemia','Y','2025-10-23 00:00:00'),(88075,11,'XA6B81','Intermediate cutaneous nerve','Y','2025-10-23 00:00:00'),(88074,11,'XA4046','Intermediate cuneiform bone','Y','2025-10-23 00:00:00'),(88073,11,'XA7PM1','Intermediate colic lymph node','Y','2025-10-23 00:00:00'),(88072,11,'9B66.Z','Intermediate choroiditis, unspecified','Y','2025-10-23 00:00:00'),(88071,11,'9B66','Intermediate choroiditis','Y','2025-10-23 00:00:00'),(88070,11,'8C20.2','Intermediate Charcot-Marie-Tooth disease','Y','2025-10-23 00:00:00'),(88069,11,'XH1XJ3','Intermediate and giant congenital naevus','Y','2025-10-23 00:00:00'),(88068,11,'9B75.01','Intermediate age-related macular degeneration','Y','2025-10-23 00:00:00'),(88067,11,'XA2S57','Interlobular artery','Y','2025-10-23 00:00:00'),(88066,11,'XA6WT9','Interlobar artery','Y','2025-10-23 00:00:00'),(88065,11,'XM2Q27','Interleukins','Y','2025-10-23 00:00:00'),(88064,11,'XM5ZL1','Interleukin inhibitors','Y','2025-10-23 00:00:00'),(88063,11,'SE77','Interior pattern (TM1)','Y','2025-10-23 00:00:00'),(88062,11,'XE1LF','Interior of vehicle','Y','2025-10-23 00:00:00'),(88061,11,'SB7B','Interior haemorroid disorder (TM1)','Y','2025-10-23 00:00:00'),(88060,11,'XA2F27','Intergluteal cleft','Y','2025-10-23 00:00:00'),(88059,11,'XM58E0','Interferons','Y','2025-10-23 00:00:00'),(88057,11,'XM3KQ4','Interferon gamma','Y','2025-10-23 00:00:00'),(88058,11,'XM4F24','Interferon ophthalmic preparation','Y','2025-10-23 00:00:00'),(88055,11,'XM6D22','Interferon beta-1a','Y','2025-10-23 00:00:00'),(88056,11,'XM0CS1','Interferon beta-1b','Y','2025-10-23 00:00:00'),(88054,11,'XM3CU5','Interferon beta','Y','2025-10-23 00:00:00'),(88053,11,'XM4MJ0','Interferon alfa-n1','Y','2025-10-23 00:00:00'),(88052,11,'XM0C05','Interferon alfacon-1','Y','2025-10-23 00:00:00'),(88051,11,'XM6QT3','Interferon alfa-2b','Y','2025-10-23 00:00:00'),(88050,11,'XM1KX1','Interferon alfa-2a','Y','2025-10-23 00:00:00'),(88049,11,'XM1GZ3','Interferon alfa','Y','2025-10-23 00:00:00'),(88048,11,'XE2FL','Interface design error of device identified','Y','2025-10-23 00:00:00'),(88047,11,'2B31.4','Interdigitating dendritic cell sarcoma','Y','2025-10-23 00:00:00'),(88046,11,'XH7UM7','Interdigitating dendritic cell sarcoma','Y','2025-10-23 00:00:00'),(88045,11,'XA65Z3','Interdigital web space of hand','Y','2025-10-23 00:00:00'),(88044,11,'XA1FL5','Interdigital web space of foot','Y','2025-10-23 00:00:00'),(88043,11,'XA16V1','Intercuneiform ligament','Y','2025-10-23 00:00:00'),(88042,11,'XA9SD1','Intercuneiform joint','Y','2025-10-23 00:00:00'),(88041,11,'XA2F71','Intercostobrachial nerve','Y','2025-10-23 00:00:00'),(88040,11,'XA92E2','Intercostals internal tendon','Y','2025-10-23 00:00:00'),(88039,11,'XA8FV0','Intercostals innermost tendon','Y','2025-10-23 00:00:00'),(88038,11,'XA5WL5','Intercostals external tendon','Y','2025-10-23 00:00:00'),(88037,11,'XA9HG3','Intercostal vein','Y','2025-10-23 00:00:00'),(88036,11,'ME81.0','Intercostal pain','Y','2025-10-23 00:00:00'),(88035,11,'8C12.0','Intercostal neuropathy','Y','2025-10-23 00:00:00'),(88034,11,'XA5HJ3','Intercostal nerve','Y','2025-10-23 00:00:00'),(88033,11,'XA8E34','Intercostal lymph node','Y','2025-10-23 00:00:00'),(88032,11,'XA0T62','Intercostal branches of the musculophrenic artery','Y','2025-10-23 00:00:00'),(88031,11,'XA7KK5','Intercostal artery','Y','2025-10-23 00:00:00'),(88030,11,'XA84L3','Interclavicular ligament','Y','2025-10-23 00:00:00'),(88029,11,'XA8D15','Interchondral ligament','Y','2025-10-23 00:00:00'),(88028,11,'XA3U52','Intercavernous sinus','Y','2025-10-23 00:00:00'),(88027,11,'XA0E90','Intercarpal joint','Y','2025-10-23 00:00:00'),(88026,11,'XA78X5','Interatrial septum','Y','2025-10-23 00:00:00'),(88025,11,'LA8E.3','Interatrial communication through coronary sinus orifice','Y','2025-10-23 00:00:00'),(88024,11,'XA70A1','Interarticular sternocostal ligament','Y','2025-10-23 00:00:00'),(88023,11,'XA46Z2','Interarticular ligament of the pelvis','Y','2025-10-23 00:00:00'),(88022,11,'XA3ZW3','Interarticular ligament','Y','2025-10-23 00:00:00'),(88021,11,'PD3Z','Intentional self-harm, unspecified','Y','2025-10-23 00:00:00'),(88020,11,'XE97V','Intentional self-harm, person intended to die','Y','2025-10-23 00:00:00'),(88019,11,'XE5D6','Intentional self-harm, person did not intend to die','Y','2025-10-23 00:00:00'),(88018,11,'XE2SF','Intentional self-harm, not known or not determined if person intended to die','Y','2025-10-23 00:00:00'),(88017,11,'PB91.Z','Intentional self-harm by water transport injury event with water vessel not damaged, disabled or destroyed, unspecified','Y','2025-10-23 00:00:00'),(88016,11,'PB91.0','Intentional self-harm by water transport injury event with water vessel not damaged, disabled or destroyed causing submersion or drowning','Y','2025-10-23 00:00:00'),(88015,11,'PB91.1','Intentional self-harm by water transport injury event with water vessel not damaged, disabled or destroyed causing other injury','Y','2025-10-23 00:00:00'),(88014,11,'PB91','Intentional self-harm by water transport injury event with water vessel not damaged, disabled or destroyed','Y','2025-10-23 00:00:00'),(88013,11,'PB90','Intentional self-harm by water transport injury event with water vessel damaged, disabled or destroyed','Y','2025-10-23 00:00:00'),(88012,11,'PB9Z','Intentional self-harm by water transport injury event with damage to water vessel unspecified','Y','2025-10-23 00:00:00'),(88011,11,'PC2Z','Intentional self-harm by transport injury event, unspecified','Y','2025-10-23 00:00:00'),(88010,11,'PC7Z','Intentional self-harm by threat to breathing, unspecified','Y','2025-10-23 00:00:00'),(88009,11,'PC78','Intentional self-harm by threat to breathing from low oxygen environment','Y','2025-10-23 00:00:00'),(88008,11,'PC70','Intentional self-harm by threat to breathing by suffocation from object covering mouth or nose','Y','2025-10-23 00:00:00'),(88007,11,'PC72','Intentional self-harm by threat to breathing by strangulation','Y','2025-10-23 00:00:00'),(88006,11,'PC77','Intentional self-harm by threat to breathing by inhalation or ingestion of other objects or materials','Y','2025-10-23 00:00:00'),(88005,11,'PC75','Intentional self-harm by threat to breathing by inhalation or ingestion of liquids','Y','2025-10-23 00:00:00'),(88004,11,'PC76','Intentional self-harm by threat to breathing by inhalation or ingestion of food','Y','2025-10-23 00:00:00'),(88003,11,'PC71','Intentional self-harm by threat to breathing by hanging','Y','2025-10-23 00:00:00'),(88001,11,'PC52','Intentional self-harm by striking against stationary object','Y','2025-10-23 00:00:00'),(88002,11,'PC73','Intentional self-harm by threat to breathing by external compression of airways or chest','Y','2025-10-23 00:00:00'),(88000,11,'PB83','Intentional self-harm by railway transport injury event','Y','2025-10-23 00:00:00'),(87999,11,'PC50.1','Intentional self-harm by projectile from rifle, shotgun or larger firearm','Y','2025-10-23 00:00:00'),(87998,11,'PC50.0','Intentional self-harm by projectile from handgun','Y','2025-10-23 00:00:00'),(87997,11,'PD26','Intentional self-harm by physical overexertion','Y','2025-10-23 00:00:00'),(87996,11,'PC2Y','Intentional self-harm by other specified transport injury event','Y','2025-10-23 00:00:00'),(87995,11,'PD29','Intentional self-harm by other specified privation','Y','2025-10-23 00:00:00'),(87994,11,'PB80','Intentional self-harm by land transport road traffic injury event','Y','2025-10-23 00:00:00'),(87993,11,'PB81','Intentional self-harm by land transport off-road nontraffic injury event','Y','2025-10-23 00:00:00'),(87992,11,'PB82','Intentional self-harm by land transport injury event unknown whether traffic or nontraffic','Y','2025-10-23 00:00:00'),(87991,11,'PD28','Intentional self-harm by lack of water','Y','2025-10-23 00:00:00'),(87990,11,'PD27','Intentional self-harm by lack of food','Y','2025-10-23 00:00:00'),(87989,11,'PC62','Intentional self-harm by injury other than drowning while in body of water','Y','2025-10-23 00:00:00'),(87988,11,'PC63','Intentional self-harm by injury other than drowning following fall into body of water','Y','2025-10-23 00:00:00'),(87987,11,'PC74','Intentional self-harm by inhalation or ingestion of gastric contents','Y','2025-10-23 00:00:00'),(87986,11,'PC6Z','Intentional self-harm by immersion, submersion or falling into water, unspecified','Y','2025-10-23 00:00:00'),(87985,11,'PD20','Intentional self-harm by foreign body in orifice','Y','2025-10-23 00:00:00'),(87984,11,'PC3Z','Intentional self-harm by fall or jump, unspecified','Y','2025-10-23 00:00:00'),(87983,11,'PC30','Intentional self-harm by fall or jump on same level or from less than 1 metre','Y','2025-10-23 00:00:00'),(87982,11,'PC31','Intentional self-harm by fall or jump from a height of 1 metre or more','Y','2025-10-23 00:00:00'),(87981,11,'PC8Z','Intentional self-harm by exposure to unspecified thermal mechanism','Y','2025-10-23 00:00:00'),(87980,11,'PC81','Intentional self-harm by exposure to uncontrolled fire','Y','2025-10-23 00:00:00'),(87979,11,'PD22','Intentional self-harm by exposure to sunlight','Y','2025-10-23 00:00:00'),(87978,11,'PC84','Intentional self-harm by exposure to steam, hot vapour, air or gases','Y','2025-10-23 00:00:00'),(87977,11,'PD23','Intentional self-harm by exposure to radiation','Y','2025-10-23 00:00:00'),(87976,11,'PC8Y','Intentional self-harm by exposure to other specified thermal mechanism','Y','2025-10-23 00:00:00'),(87975,11,'PC98','Intentional self-harm by exposure to other and unspecified drug, medicament and biological substance','Y','2025-10-23 00:00:00'),(87974,11,'PC91','Intentional self-harm by exposure to or harmful effects of sedative hypnotic drugs or other CNS depressants','Y','2025-10-23 00:00:00'),(87973,11,'PC92','Intentional self-harm by exposure to or harmful effects of psychostimulants','Y','2025-10-23 00:00:00'),(87972,11,'PD03','Intentional self-harm by exposure to or harmful effects of pesticides','Y','2025-10-23 00:00:00'),(87971,11,'PD05','Intentional self-harm by exposure to or harmful effects of other or unspecified substances chiefly nonmedicinal as to source','Y','2025-10-23 00:00:00'),(87970,11,'PD01','Intentional self-harm by exposure to or harmful effects of organic solvents','Y','2025-10-23 00:00:00'),(87969,11,'PC90','Intentional self-harm by exposure to or harmful effects of opioids or related analgesics','Y','2025-10-23 00:00:00'),(87968,11,'PC99','Intentional self-harm by exposure to or harmful effects of multiple drugs, medicaments or biological substances','Y','2025-10-23 00:00:00'),(87967,11,'PD04','Intentional self-harm by exposure to or harmful effects of corrosive substances','Y','2025-10-23 00:00:00'),(87966,11,'PD02','Intentional self-harm by exposure to or harmful effects of carbon monoxide','Y','2025-10-23 00:00:00'),(87965,11,'PC93','Intentional self-harm by exposure to or harmful effects of cannabinoids or hallucinogens','Y','2025-10-23 00:00:00'),(87964,11,'PC96','Intentional self-harm by exposure to or harmful effects of antipsychotics','Y','2025-10-23 00:00:00'),(87963,11,'PC97','Intentional self-harm by exposure to or harmful effects of antiepileptics or antiparkinsonism drugs','Y','2025-10-23 00:00:00'),(87962,11,'PC95','Intentional self-harm by exposure to or harmful effects of antidepressants','Y','2025-10-23 00:00:00'),(87961,11,'PC94','Intentional self-harm by exposure to or harmful effects of analgesics, antipyretics or nonsteroidal anti-inflammatory drugs','Y','2025-10-23 00:00:00'),(87960,11,'PD00','Intentional self-harm by exposure to or harmful effects of alcohols','Y','2025-10-23 00:00:00'),(87959,11,'PC82','Intentional self-harm by exposure to ignition or melting of material','Y','2025-10-23 00:00:00'),(87958,11,'PD24','Intentional self-harm by exposure to high or low air pressure or changes in air pressure','Y','2025-10-23 00:00:00'),(87957,11,'PC85','Intentional self-harm by exposure to excessive heat','Y','2025-10-23 00:00:00'),(87956,11,'PC86','Intentional self-harm by exposure to excessive cold','Y','2025-10-23 00:00:00'),(87955,11,'PD21','Intentional self-harm by exposure to electric current','Y','2025-10-23 00:00:00'),(87954,11,'PC80','Intentional self-harm by exposure to controlled fire','Y','2025-10-23 00:00:00'),(87953,11,'PD25','Intentional self-harm by explosion or rupture of pressurised materials or object','Y','2025-10-23 00:00:00'),(87952,11,'PC60','Intentional self-harm by drowning or submersion while in body of water','Y','2025-10-23 00:00:00'),(87951,11,'PC61','Intentional self-harm by drowning or submersion following fall into body of water','Y','2025-10-23 00:00:00'),(87950,11,'PC48','Intentional self-harm by contact with plant','Y','2025-10-23 00:00:00'),(87949,11,'PC4Z','Intentional self-harm by contact with person, animal or plant, type unspecified','Y','2025-10-23 00:00:00'),(87948,11,'PC83','Intentional self-harm by contact with hot object or liquid','Y','2025-10-23 00:00:00'),(87947,11,'PC47','Intentional self-harm by being stung or envenomated by animal','Y','2025-10-23 00:00:00'),(87946,11,'PC40','Intentional self-harm by being struck, kicked, or bumped by person','Y','2025-10-23 00:00:00'),(87945,11,'PC41','Intentional self-harm by being struck, kicked, or bumped by animal','Y','2025-10-23 00:00:00'),(87944,11,'PC50.Z','Intentional self-harm by being struck by projectile from firearm, unspecified','Y','2025-10-23 00:00:00'),(87943,11,'PC50','Intentional self-harm by being struck by projectile from firearm','Y','2025-10-23 00:00:00'),(87942,11,'PC51','Intentional self-harm by being struck by moving object, not elsewhere classified','Y','2025-10-23 00:00:00'),(87941,11,'PC54','Intentional self-harm by being struck by blunt object','Y','2025-10-23 00:00:00'),(87940,11,'PC42','Intentional self-harm by being stepped on or crushed by person','Y','2025-10-23 00:00:00'),(87939,11,'PC43','Intentional self-harm by being stepped on or crushed by animal','Y','2025-10-23 00:00:00'),(87938,11,'PC45','Intentional self-harm by being scratched or clawed by person','Y','2025-10-23 00:00:00'),(87937,11,'PC46','Intentional self-harm by being scratched or clawed by animal','Y','2025-10-23 00:00:00'),(87936,11,'PC53.Z','Intentional self-harm by being cut or pierced by sharp object, unspecified','Y','2025-10-23 00:00:00'),(87935,11,'PC53','Intentional self-harm by being cut or pierced by sharp object','Y','2025-10-23 00:00:00'),(87934,11,'PC53.1','Intentional self-harm by being cut or pierced by sharp glass','Y','2025-10-23 00:00:00'),(87933,11,'PC53.0','Intentional self-harm by being cut or pierced by knife, sword or dagger','Y','2025-10-23 00:00:00'),(87932,11,'PC55','Intentional self-harm by being caught, crushed, jammed or pinched between objects','Y','2025-10-23 00:00:00'),(87931,11,'PC44','Intentional self-harm by being bitten by animal','Y','2025-10-23 00:00:00'),(87930,11,'PC0Z','Intentional self-harm by air or space transport injury event with damage to aircraft or spacecraft unspecified','Y','2025-10-23 00:00:00'),(87929,11,'PC01','Intentional self-harm by air or space transport injury event with aircraft or spacecraft not damaged, disabled or destroyed','Y','2025-10-23 00:00:00'),(87928,11,'PC00','Intentional self-harm by air or space transport injury event with aircraft or spacecraft damaged, disabled or destroyed','Y','2025-10-23 00:00:00'),(87927,11,'PC5Z','Intentional self harm by contact with weapon, type unspecified','Y','2025-10-23 00:00:00'),(87925,11,'MB45.4','Intention tremor','Y','2025-10-23 00:00:00'),(87926,11,'PC5Y','Intentional self harm by contact with other specified type of weapon','Y','2025-10-23 00:00:00'),(87923,11,'SF88','Intense congestion of lung heat pattern (TM1)','Y','2025-10-23 00:00:00'),(87924,11,'XD3SM4','Intensive care ventilators','Y','2025-10-23 00:00:00'),(87922,11,'8D40.3','Intellectual developmental disorder due to nutritional deficiency','Y','2025-10-23 00:00:00'),(87921,11,'XE9ZW','Integrated circuit chip component of medical device','Y','2025-10-23 00:00:00'),(87920,11,'XM99F8','Insulins and analogues','Y','2025-10-23 00:00:00'),(87919,11,'5A44','Insulin-resistance syndromes','Y','2025-10-23 00:00:00'),(87918,11,'XH4SH8','Insulinoma, NOS','Y','2025-10-23 00:00:00'),(87917,11,'XM0US2','Insulin zinc suspension (amorphous) (crystalline)','Y','2025-10-23 00:00:00'),(87916,11,'XM0KT2','Insulin slow acting','Y','2025-10-23 00:00:00'),(87915,11,'XM54Q2','Insulin protamine zinc','Y','2025-10-23 00:00:00'),(87914,11,'XM6NY5','Insulin lispro','Y','2025-10-23 00:00:00'),(87913,11,'XM9728','Insulin intermediate acting','Y','2025-10-23 00:00:00'),(87911,11,'XM21C9','Insulin human','Y','2025-10-23 00:00:00'),(87912,11,'XM1DZ9','Insulin injection, soluble','Y','2025-10-23 00:00:00'),(87910,11,'XM7WH3','Insulin glulisine','Y','2025-10-23 00:00:00'),(87909,11,'XM96W1','Insulin detemir','Y','2025-10-23 00:00:00'),(87908,11,'XM6R62','Insulin degludec','Y','2025-10-23 00:00:00'),(87907,11,'XM3RW5','Insulin defalan','Y','2025-10-23 00:00:00'),(87906,11,'XM0HQ0','Insulin aspart','Y','2025-10-23 00:00:00'),(87905,11,'XM8YE2','Insulin (pork)','Y','2025-10-23 00:00:00'),(87904,11,'XM29C4','Insulin (beef)','Y','2025-10-23 00:00:00'),(87903,11,'XM2JC7','Insulin (amorphous) (globin) (isophane) (Lente) (NPH) (Semilente) (Ultralente)','Y','2025-10-23 00:00:00'),(87901,11,'XE1Y2','Insulation component of medical device','Y','2025-10-23 00:00:00'),(87902,11,'XE1TX','Insulation problem with device identified','Y','2025-10-23 00:00:00'),(87900,11,'XM4C63','Insular tissue extract','Y','2025-10-23 00:00:00'),(87899,11,'XA0XP7','Insula','Y','2025-10-23 00:00:00'),(87898,11,'QE31.2','Insufficient social welfare support, protection against homelessness','Y','2025-10-23 00:00:00'),(87897,11,'QE31.1','Insufficient social welfare support, protection against domestic violence','Y','2025-10-23 00:00:00'),(87896,11,'QE31.3','Insufficient social welfare support, post prison services','Y','2025-10-23 00:00:00'),(87895,11,'QE31.0','Insufficient social welfare support, child protection','Y','2025-10-23 00:00:00'),(87894,11,'QE31','Insufficient social welfare support','Y','2025-10-23 00:00:00'),(87893,11,'QE30.2','Insufficient social insurance support, unemployment','Y','2025-10-23 00:00:00'),(87891,11,'QE30.1','Insufficient social insurance support, disability','Y','2025-10-23 00:00:00'),(87892,11,'QE30.3','Insufficient social insurance support, family support','Y','2025-10-23 00:00:00'),(87889,11,'QE30','Insufficient social insurance support','Y','2025-10-23 00:00:00'),(87890,11,'QE30.0','Insufficient social insurance support, aged','Y','2025-10-23 00:00:00'),(87888,11,'7A26','Insufficient sleep syndrome','Y','2025-10-23 00:00:00'),(87887,11,'MG43.4Z','Insufficient intake of food and water due to self neglect, unspecified','Y','2025-10-23 00:00:00'),(87886,11,'MG43.4','Insufficient intake of food and water due to self neglect','Y','2025-10-23 00:00:00'),(87884,11,'XE2A4','Insufficient heating','Y','2025-10-23 00:00:00'),(87885,11,'XE3TW','Insufficient information available','Y','2025-10-23 00:00:00'),(87882,11,'XE200','Insufficient cooling','Y','2025-10-23 00:00:00'),(87883,11,'XE1S7','Insufficient flow or under infusion','Y','2025-10-23 00:00:00'),(87881,11,'BC02.31','Insufficiency of the neoaortic valve of pulmonary origin','Y','2025-10-23 00:00:00'),(87879,11,'MH12.0','Instantaneous death','Y','2025-10-23 00:00:00'),(87880,11,'QE94','Institutional upbringing','Y','2025-10-23 00:00:00'),(87878,11,'XE2H3','Installation related problem','Y','2025-10-23 00:00:00'),(87877,11,'XE1PG','Installation problem with device identified','Y','2025-10-23 00:00:00'),(87876,11,'7A0Z','Insomnia disorders, unspecified','Y','2025-10-23 00:00:00'),(87875,11,'SD84','Insomnia disorder (TM1)','Y','2025-10-23 00:00:00'),(87874,11,'PK81.8','Insertion of tube associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(87873,11,'XE3WA','Inserter component of medical device','Y','2025-10-23 00:00:00'),(87872,11,'XM3K66','Insecticide','Y','2025-10-23 00:00:00'),(87871,11,'XE6UV','Insect, invertebrate','Y','2025-10-23 00:00:00'),(87869,11,'XN00Z','Insect larva','Y','2025-10-23 00:00:00'),(87870,11,'XM50Y9','Insect venom','Y','2025-10-23 00:00:00'),(87868,11,'XJ69A','Insect bite, nonvenomous','Y','2025-10-23 00:00:00'),(87867,11,'XM2D46','Inproquone','Y','2025-10-23 00:00:00'),(87866,11,'XM8648','Inotuzumab ozogamicin','Y','2025-10-23 00:00:00'),(87865,11,'XM7DT3','Inotersen','Y','2025-10-23 00:00:00'),(87864,11,'XM5QD1','Inositol nicotinate','Y','2025-10-23 00:00:00'),(87863,11,'XM7291','Inositol','Y','2025-10-23 00:00:00'),(87862,11,'XM8AQ1','Inosine pranobex','Y','2025-10-23 00:00:00'),(87861,11,'XM8BH0','Inosine','Y','2025-10-23 00:00:00'),(87860,11,'XM9B73','Inocybe mushroom','Y','2025-10-23 00:00:00'),(87859,11,'XA27D1','Innominate vein','Y','2025-10-23 00:00:00'),(87858,11,'XA4P97','Innominate lymph node','Y','2025-10-23 00:00:00'),(87857,11,'XA3P12','Innermost intercostal muscle','Y','2025-10-23 00:00:00'),(87856,11,'XA57R3','Inner Ear','Y','2025-10-23 00:00:00'),(87855,11,'XA1BP2','Inner aspect of lip','Y','2025-10-23 00:00:00'),(87854,11,'XM7NG4','Inland taipan snake venom','Y','2025-10-23 00:00:00'),(87853,11,'XM6HZ8','Ink, not elsewhere classified','Y','2025-10-23 00:00:00'),(87852,11,'ND10','Injury to toenail','Y','2025-10-23 00:00:00'),(87851,11,'NC93.8','Injury to multiple structures of knee','Y','2025-10-23 00:00:00'),(87850,11,'NB31.40','Injury to mitral valve','Y','2025-10-23 00:00:00'),(87849,11,'NB99','Injury to male genital organ without further specification','Y','2025-10-23 00:00:00'),(87848,11,'NC50','Injury to fingernail','Y','2025-10-23 00:00:00'),(87847,11,'NB98','Injury to female genital organ without further specification','Y','2025-10-23 00:00:00'),(87846,11,'NA42.1','Injury to anterior cutaneous nerve of neck','Y','2025-10-23 00:00:00'),(87845,11,'PH12','Injury other than drowning while in body of water with undetermined intent','Y','2025-10-23 00:00:00'),(87844,11,'PH13','Injury other than drowning following fall into body of water with undetermined intent','Y','2025-10-23 00:00:00'),(87843,11,'NE8Z','Injury or harm arising from surgical or medical care, not elsewhere classified, unspecified','Y','2025-10-23 00:00:00'),(87842,11,'NE83','Injury or harm arising from other device, implant or graft, not elsewhere classified','Y','2025-10-23 00:00:00'),(87841,11,'NE81.Z','Injury or harm arising from a procedure, not elsewhere classified, unspecified','Y','2025-10-23 00:00:00'),(87840,11,'NE81','Injury or harm arising from a procedure, not elsewhere classified','Y','2025-10-23 00:00:00'),(87839,11,'NE80.Z','Injury or harm arising following infusion, transfusion or therapeutic injection, not elsewhere classified, unspecified','Y','2025-10-23 00:00:00'),(87838,11,'NE80','Injury or harm arising following infusion, transfusion or therapeutic injection, not elsewhere classified','Y','2025-10-23 00:00:00'),(87837,11,'NA04.15','Injury of visual cortex, unilateral','Y','2025-10-23 00:00:00'),(87836,11,'NA04.16','Injury of visual cortex, bilateral','Y','2025-10-23 00:00:00'),(87835,11,'NA60.1Z','Injury of vertebral artery, unspecified','Y','2025-10-23 00:00:00'),(87834,11,'NA60.1','Injury of vertebral artery','Y','2025-10-23 00:00:00'),(87833,11,'NC35.2Z','Injury of vein at forearm level, unspecified','Y','2025-10-23 00:00:00'),(87832,11,'NC35.2','Injury of vein at forearm level','Y','2025-10-23 00:00:00'),(87831,11,'NA04.9','Injury of vagus nerve','Y','2025-10-23 00:00:00'),(87830,11,'NB92.6','Injury of uterus','Y','2025-10-23 00:00:00'),(87829,11,'NB92.7','Injury of urinary tract','Y','2025-10-23 00:00:00'),(87828,11,'NB92.Z','Injury of urinary or pelvic organs, unspecified','Y','2025-10-23 00:00:00'),(87827,11,'NB92','Injury of urinary or pelvic organs','Y','2025-10-23 00:00:00'),(87826,11,'NB92.3Z','Injury of urethra, unspecified','Y','2025-10-23 00:00:00'),(87825,11,'NB92.3','Injury of urethra','Y','2025-10-23 00:00:00'),(87824,11,'NB92.1Z','Injury of ureter, unspecified','Y','2025-10-23 00:00:00'),(87823,11,'NB92.1','Injury of ureter','Y','2025-10-23 00:00:00'),(87822,11,'ND51.1','Injury of unspecified nerve, spinal nerve root or plexus of trunk','Y','2025-10-23 00:00:00'),(87821,11,'NC55.Z','Injury of unspecified nerve at wrist or hand level','Y','2025-10-23 00:00:00'),(87820,11,'NC14.Z','Injury of unspecified nerve at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(87819,11,'NC94.Z','Injury of unspecified nerve at lower leg level','Y','2025-10-23 00:00:00'),(87818,11,'NC74.Z','Injury of unspecified nerve at hip or thigh level','Y','2025-10-23 00:00:00'),(87817,11,'NC34.Z','Injury of unspecified nerve at forearm level','Y','2025-10-23 00:00:00'),(87816,11,'ND15.Z','Injury of unspecified nerve at ankle or foot level','Y','2025-10-23 00:00:00'),(87815,11,'NC96.Z','Injury of unspecified muscle, fascia, tendon or bursa at lower leg level','Y','2025-10-23 00:00:00'),(87814,11,'NC76.Z','Injury of unspecified muscle, fascia, tendon or bursa at hip or thigh level','Y','2025-10-23 00:00:00'),(87813,11,'NC36.Z','Injury of unspecified muscle, fascia, tendon or bursa at forearm level','Y','2025-10-23 00:00:00'),(87812,11,'ND51.3','Injury of unspecified muscle, fascia or tendon of trunk','Y','2025-10-23 00:00:00'),(87811,11,'NC57.Z','Injury of unspecified muscle, fascia or tendon at wrist or hand level','Y','2025-10-23 00:00:00'),(87810,11,'NC16.Z','Injury of unspecified muscle, fascia or tendon at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(87809,11,'ND17.Z','Injury of unspecified muscle, fascia or tendon at ankle or foot level','Y','2025-10-23 00:00:00'),(87808,11,'ND56','Injury of unspecified body region','Y','2025-10-23 00:00:00'),(87807,11,'NB30.Z','Injury of unspecified blood vessels of thorax','Y','2025-10-23 00:00:00'),(87806,11,'NC56.Z','Injury of unspecified blood vessel at wrist or hand level','Y','2025-10-23 00:00:00'),(87805,11,'NC15.Z','Injury of unspecified blood vessel at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(87804,11,'NC95.Z','Injury of unspecified blood vessel at lower leg level','Y','2025-10-23 00:00:00'),(87803,11,'NC75.Z','Injury of unspecified blood vessel at hip or thigh level','Y','2025-10-23 00:00:00'),(87802,11,'NC35.Z','Injury of unspecified blood vessel at forearm level','Y','2025-10-23 00:00:00'),(87801,11,'ND16.Z','Injury of unspecified blood vessel at ankle or foot level','Y','2025-10-23 00:00:00'),(87800,11,'NB90.Z','Injury of unspecified blood vessel at abdomen, lower back or pelvis level','Y','2025-10-23 00:00:00'),(87799,11,'NC55.0','Injury of ulnar nerve at wrist or hand level','Y','2025-10-23 00:00:00'),(87798,11,'NC14.0','Injury of ulnar nerve at upper arm level','Y','2025-10-23 00:00:00'),(87797,11,'NC34.0','Injury of ulnar nerve at forearm level','Y','2025-10-23 00:00:00'),(87796,11,'NC56.0Z','Injury of ulnar artery at wrist or hand level, unspecified','Y','2025-10-23 00:00:00'),(87795,11,'NC56.0','Injury of ulnar artery at wrist or hand level','Y','2025-10-23 00:00:00'),(87794,11,'NC35.0Z','Injury of ulnar artery at forearm level, unspecified','Y','2025-10-23 00:00:00'),(87793,11,'NC35.0','Injury of ulnar artery at forearm level','Y','2025-10-23 00:00:00'),(87792,11,'NA04.3','Injury of trochlear nerve','Y','2025-10-23 00:00:00'),(87791,11,'NA04.4','Injury of trigeminal nerve','Y','2025-10-23 00:00:00'),(87790,11,'NC94.0','Injury of tibial nerve at lower leg level','Y','2025-10-23 00:00:00'),(87789,11,'NB32.5Z','Injury of thoracic trachea, unspecified','Y','2025-10-23 00:00:00'),(87788,11,'NB32.5','Injury of thoracic trachea','Y','2025-10-23 00:00:00'),(87787,11,'NB02','Injury of thoracic sympathetic nerves','Y','2025-10-23 00:00:00'),(87786,11,'NA9Z','Injury of thoracic spinal cord, unspecified','Y','2025-10-23 00:00:00'),(87785,11,'NB30.0Z','Injury of thoracic aorta, unspecified','Y','2025-10-23 00:00:00'),(87784,11,'NB30.0','Injury of thoracic aorta','Y','2025-10-23 00:00:00'),(87783,11,'NA0B','Injury of the auricle','Y','2025-10-23 00:00:00'),(87782,11,'NA0D.Z','Injury of teeth or supporting structures, unspecified','Y','2025-10-23 00:00:00'),(87781,11,'NA0D','Injury of teeth or supporting structures','Y','2025-10-23 00:00:00'),(87780,11,'NA42.0','Injury of supraclavicular nerve','Y','2025-10-23 00:00:00'),(87779,11,'NB30.2Z','Injury of superior vena cava, unspecified','Y','2025-10-23 00:00:00'),(87778,11,'NB30.2','Injury of superior vena cava','Y','2025-10-23 00:00:00'),(87777,11,'NC15.3Z','Injury of superficial vein at shoulder or upper arm level, unspecified','Y','2025-10-23 00:00:00'),(87776,11,'NC15.3','Injury of superficial vein at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(87775,11,'NC56.2Z','Injury of superficial palmar arch, unspecified','Y','2025-10-23 00:00:00'),(87774,11,'NC56.2','Injury of superficial palmar arch','Y','2025-10-23 00:00:00'),(87773,11,'NB91.5Z','Injury of stomach, unspecified','Y','2025-10-23 00:00:00'),(87772,11,'NB91.5','Injury of stomach','Y','2025-10-23 00:00:00'),(87771,11,'NB91.0Z','Injury of spleen, unspecified','Y','2025-10-23 00:00:00'),(87770,11,'NB91.0','Injury of spleen','Y','2025-10-23 00:00:00'),(87769,11,'ND51.2','Injury of spinal cord, level unspecified','Y','2025-10-23 00:00:00'),(87768,11,'NB6Z','Injury of spinal cord at abdomen, lower back or pelvis level, unspecified','Y','2025-10-23 00:00:00'),(87767,11,'NB91.7Z','Injury of small intestine, unspecified','Y','2025-10-23 00:00:00'),(87766,11,'NB91.7','Injury of small intestine','Y','2025-10-23 00:00:00'),(87765,11,'NC74.0','Injury of sciatic nerve at hip or thigh level','Y','2025-10-23 00:00:00'),(87764,11,'NB63.Z','Injury of sacral spinal cord, unspecified','Y','2025-10-23 00:00:00'),(87763,11,'NB90.5Z','Injury of renal blood vessels, unspecified','Y','2025-10-23 00:00:00'),(87762,11,'NB90.5','Injury of renal blood vessels','Y','2025-10-23 00:00:00'),(87761,11,'NB91.9Z','Injury of rectum, unspecified','Y','2025-10-23 00:00:00'),(87760,11,'NB91.9','Injury of rectum','Y','2025-10-23 00:00:00'),(87759,11,'NC55.2','Injury of radial nerve at wrist or hand level','Y','2025-10-23 00:00:00'),(87758,11,'NC14.2','Injury of radial nerve at upper arm level','Y','2025-10-23 00:00:00'),(87757,11,'NC34.2','Injury of radial nerve at forearm level','Y','2025-10-23 00:00:00'),(87756,11,'NC56.1Z','Injury of radial artery at wrist or hand level, unspecified','Y','2025-10-23 00:00:00'),(87755,11,'NC56.1','Injury of radial artery at wrist or hand level','Y','2025-10-23 00:00:00'),(87754,11,'NC35.1Z','Injury of radial artery at forearm level, unspecified','Y','2025-10-23 00:00:00'),(87753,11,'NC35.1','Injury of radial artery at forearm level','Y','2025-10-23 00:00:00'),(87752,11,'NC76.1Z','Injury of quadriceps muscle or tendon, unspecified','Y','2025-10-23 00:00:00'),(87751,11,'NC76.1','Injury of quadriceps muscle or tendon','Y','2025-10-23 00:00:00'),(87750,11,'NB30.4Z','Injury of pulmonary blood vessels, unspecified','Y','2025-10-23 00:00:00'),(87749,11,'NB30.4','Injury of pulmonary blood vessels','Y','2025-10-23 00:00:00'),(87748,11,'NC95.2Z','Injury of posterior tibial artery, unspecified','Y','2025-10-23 00:00:00'),(87747,11,'NC95.2','Injury of posterior tibial artery','Y','2025-10-23 00:00:00'),(87745,11,'NB90.4','Injury of portal or splenic vein','Y','2025-10-23 00:00:00'),(87746,11,'NB90.4Z','Injury of portal or splenic vein, unspecified','Y','2025-10-23 00:00:00'),(87744,11,'NC95.6Z','Injury of popliteal vein, unspecified','Y','2025-10-23 00:00:00'),(87743,11,'NC95.6','Injury of popliteal vein','Y','2025-10-23 00:00:00'),(87742,11,'NC95.0Z','Injury of popliteal artery, unspecified','Y','2025-10-23 00:00:00'),(87741,11,'NC95.0','Injury of popliteal artery','Y','2025-10-23 00:00:00'),(87740,11,'NB32.6Z','Injury of pleura, unspecified','Y','2025-10-23 00:00:00'),(87739,11,'NB32.6','Injury of pleura','Y','2025-10-23 00:00:00'),(87738,11,'ND16.1Z','Injury of plantar artery of foot, unspecified','Y','2025-10-23 00:00:00'),(87737,11,'ND16.1','Injury of plantar artery of foot','Y','2025-10-23 00:00:00'),(87736,11,'NA44','Injury of phrenic nerve','Y','2025-10-23 00:00:00'),(87735,11,'NC94.1','Injury of peroneal nerve at lower leg level','Y','2025-10-23 00:00:00'),(87734,11,'NC95.3Z','Injury of peroneal artery, unspecified','Y','2025-10-23 00:00:00'),(87733,11,'NC95.3','Injury of peroneal artery','Y','2025-10-23 00:00:00'),(87732,11,'NB01','Injury of peripheral nerves of thorax','Y','2025-10-23 00:00:00'),(87731,11,'NA42.Z','Injury of peripheral nerves of neck, unspecified','Y','2025-10-23 00:00:00'),(87730,11,'NA42','Injury of peripheral nerves of neck','Y','2025-10-23 00:00:00'),(87729,11,'NB75','Injury of peripheral nerve of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(87728,11,'NA0D.1Z','Injury of periodontal tissues, unspecified','Y','2025-10-23 00:00:00'),(87727,11,'NA0D.1','Injury of periodontal tissues','Y','2025-10-23 00:00:00'),(87726,11,'NB91.4Z','Injury of pancreas, unspecified','Y','2025-10-23 00:00:00'),(87724,11,'NB92.4Z','Injury of ovary, unspecified','Y','2025-10-23 00:00:00'),(87725,11,'NB91.4','Injury of pancreas','Y','2025-10-23 00:00:00'),(87723,11,'NB92.4','Injury of ovary','Y','2025-10-23 00:00:00'),(87722,11,'NA42.Y','Injury of other specified peripheral nerves of neck','Y','2025-10-23 00:00:00'),(87721,11,'NB92.Y','Injury of other specified pelvic organs','Y','2025-10-23 00:00:00'),(87720,11,'NC55.Y','Injury of other specified nerves at wrist or hand level','Y','2025-10-23 00:00:00'),(87719,11,'NB0Y','Injury of other specified nerves at thorax level','Y','2025-10-23 00:00:00'),(87718,11,'NC14.Y','Injury of other specified nerves at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(87717,11,'NA4Y','Injury of other specified nerves at neck level','Y','2025-10-23 00:00:00'),(87716,11,'NC94.Y','Injury of other specified nerves at lower leg level','Y','2025-10-23 00:00:00'),(87715,11,'NC74.Y','Injury of other specified nerves at hip or thigh level','Y','2025-10-23 00:00:00'),(87714,11,'NC34.Y','Injury of other specified nerves at forearm level','Y','2025-10-23 00:00:00'),(87713,11,'ND15.Y','Injury of other specified nerves at ankle and foot level','Y','2025-10-23 00:00:00'),(87712,11,'NC16.Y','Injury of other specified muscle, fascia, tendon or bursa at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(87711,11,'NC96.Y','Injury of other specified muscle, fascia, tendon or bursa at lower leg level','Y','2025-10-23 00:00:00'),(87710,11,'NC76.Y','Injury of other specified muscle, fascia, tendon or bursa at hip or thigh level','Y','2025-10-23 00:00:00'),(87709,11,'NC36.Y','Injury of other specified muscle, fascia, tendon or bursa at forearm level','Y','2025-10-23 00:00:00'),(87708,11,'NC57.Y','Injury of other specified muscle, fascia or tendon at wrist or hand level','Y','2025-10-23 00:00:00'),(87707,11,'ND17.Y','Injury of other specified muscle, fascia or tendon at ankle or foot level','Y','2025-10-23 00:00:00'),(87706,11,'NB32.8','Injury of other specified intrathoracic organs','Y','2025-10-23 00:00:00'),(87705,11,'NB91.Y','Injury of other specified intra-abdominal organs','Y','2025-10-23 00:00:00'),(87704,11,'NB31.4Y','Injury of other specified heart valve','Y','2025-10-23 00:00:00'),(87703,11,'NB30.Y','Injury of other specified blood vessels of thorax','Y','2025-10-23 00:00:00'),(87702,11,'NC56.Y','Injury of other specified blood vessels at wrist and hand level','Y','2025-10-23 00:00:00'),(87701,11,'NC15.Y','Injury of other specified blood vessels at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(87700,11,'NA60.Y','Injury of other specified blood vessels at neck level','Y','2025-10-23 00:00:00'),(87699,11,'NC95.Y','Injury of other specified blood vessels at lower leg level','Y','2025-10-23 00:00:00'),(87698,11,'NC75.Y','Injury of other specified blood vessels at hip and thigh level','Y','2025-10-23 00:00:00'),(87697,11,'NC35.Y','Injury of other specified blood vessels at forearm level','Y','2025-10-23 00:00:00'),(87696,11,'ND16.Y','Injury of other specified blood vessels at ankle and foot level','Y','2025-10-23 00:00:00'),(87695,11,'NB90.Y','Injury of other specified blood vessels at abdomen, lower back or pelvis level','Y','2025-10-23 00:00:00'),(87694,11,'NB32.Z','Injury of other or unspecified intrathoracic organs, unspecified','Y','2025-10-23 00:00:00'),(87693,11,'NB32','Injury of other or unspecified intrathoracic organs','Y','2025-10-23 00:00:00'),(87692,11,'NC96.1Z','Injury of other muscle, fascia or tendon of posterior muscle group at lower leg level, unspecified','Y','2025-10-23 00:00:00'),(87691,11,'NC96.1','Injury of other muscle, fascia or tendon of posterior muscle group at lower leg level','Y','2025-10-23 00:00:00'),(87690,11,'NC36.2Z','Injury of other flexor muscle, fascia or tendon at forearm level, unspecified','Y','2025-10-23 00:00:00'),(87689,11,'NC36.2','Injury of other flexor muscle, fascia or tendon at forearm level','Y','2025-10-23 00:00:00'),(87688,11,'NC36.5Z','Injury of other extensor muscle, fascia or tendon at forearm level, unspecified','Y','2025-10-23 00:00:00'),(87687,11,'NC36.5','Injury of other extensor muscle, fascia or tendon at forearm level','Y','2025-10-23 00:00:00'),(87686,11,'NA04.13','Injury of optic tract or pathways, unilateral','Y','2025-10-23 00:00:00'),(87685,11,'NA04.14','Injury of optic tract or pathways, bilateral','Y','2025-10-23 00:00:00'),(87684,11,'NA04.10','Injury of optic nerve, unilateral','Y','2025-10-23 00:00:00'),(87683,11,'NA04.11','Injury of optic nerve, bilateral','Y','2025-10-23 00:00:00'),(87682,11,'NA04.1Z','Injury of optic nerve or pathways, unspecified','Y','2025-10-23 00:00:00'),(87681,11,'NA04.1','Injury of optic nerve or pathways','Y','2025-10-23 00:00:00'),(87680,11,'NA04.12','Injury of optic chiasm','Y','2025-10-23 00:00:00'),(87678,11,'NA04.2','Injury of oculomotor nerve','Y','2025-10-23 00:00:00'),(87679,11,'NA04.0','Injury of olfactory nerve','Y','2025-10-23 00:00:00'),(87677,11,'NB2Z','Injury of nerves or spinal cord at thorax level, unspecified','Y','2025-10-23 00:00:00'),(87676,11,'NC55','Injury of nerves at wrist or hand level','Y','2025-10-23 00:00:00'),(87675,11,'NC14','Injury of nerves at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(87674,11,'NA4Z','Injury of nerves at neck level, unspecified','Y','2025-10-23 00:00:00'),(87673,11,'NC94','Injury of nerves at lower leg level','Y','2025-10-23 00:00:00'),(87672,11,'NC74','Injury of nerves at hip or thigh level','Y','2025-10-23 00:00:00'),(87670,11,'ND15','Injury of nerves at ankle or foot level','Y','2025-10-23 00:00:00'),(87671,11,'NC34','Injury of nerves at forearm level','Y','2025-10-23 00:00:00'),(87668,11,'NB00','Injury of nerve root of thoracic spine','Y','2025-10-23 00:00:00'),(87669,11,'NB7Z','Injury of nerves at abdomen, lower back or pelvis level, unspecified','Y','2025-10-23 00:00:00'),(87667,11,'NB71','Injury of nerve root of sacral spine','Y','2025-10-23 00:00:00'),(87666,11,'NB70','Injury of nerve root of lumbar spine','Y','2025-10-23 00:00:00'),(87665,11,'NA40','Injury of nerve root of cervical spine','Y','2025-10-23 00:00:00'),(87664,11,'ND56.4','Injury of nerve of unspecified body region','Y','2025-10-23 00:00:00'),(87663,11,'NC14.4','Injury of musculocutaneous nerve','Y','2025-10-23 00:00:00'),(87662,11,'ND56.6','Injury of muscles or tendons of unspecified body region','Y','2025-10-23 00:00:00'),(87661,11,'NC16','Injury of muscle, fascia, tendon or bursa at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(87660,11,'NC96','Injury of muscle, fascia, tendon or bursa at lower leg level','Y','2025-10-23 00:00:00'),(87659,11,'NC76','Injury of muscle, fascia, tendon or bursa at hip or thigh level','Y','2025-10-23 00:00:00'),(87658,11,'NC36','Injury of muscle, fascia, tendon or bursa at forearm level','Y','2025-10-23 00:00:00'),(87657,11,'NC16.3Z','Injury of muscle, fascia or tendon of triceps, unspecified','Y','2025-10-23 00:00:00'),(87656,11,'NC16.3','Injury of muscle, fascia or tendon of triceps','Y','2025-10-23 00:00:00'),(87655,11,'NC76.3Z','Injury of muscle, fascia or tendon of the posterior muscle group at thigh level, unspecified','Y','2025-10-23 00:00:00'),(87654,11,'NC76.3','Injury of muscle, fascia or tendon of the posterior muscle group at thigh level','Y','2025-10-23 00:00:00'),(87653,11,'NC96.3Z','Injury of muscle, fascia or tendon of peroneal muscle group at lower leg level, unspecified','Y','2025-10-23 00:00:00'),(87652,11,'NC96.3','Injury of muscle, fascia or tendon of peroneal muscle group at lower leg level','Y','2025-10-23 00:00:00'),(87651,11,'NC16.2Z','Injury of muscle, fascia or tendon of other parts of biceps, unspecified','Y','2025-10-23 00:00:00'),(87650,11,'NC16.2','Injury of muscle, fascia or tendon of other parts of biceps','Y','2025-10-23 00:00:00'),(87649,11,'NC16.1Z','Injury of muscle, fascia or tendon of long head of biceps, unspecified','Y','2025-10-23 00:00:00'),(87648,11,'NC16.1','Injury of muscle, fascia or tendon of long head of biceps','Y','2025-10-23 00:00:00'),(87647,11,'ND17.0Z','Injury of muscle, fascia or tendon of long flexor muscle of toe at ankle or foot level, unspecified','Y','2025-10-23 00:00:00'),(87646,11,'ND17.0','Injury of muscle, fascia or tendon of long flexor muscle of toe at ankle or foot level','Y','2025-10-23 00:00:00'),(87645,11,'ND17.1Z','Injury of muscle, fascia or tendon of long extensor muscle of toe at ankle or foot level, unspecified','Y','2025-10-23 00:00:00'),(87644,11,'ND17.1','Injury of muscle, fascia or tendon of long extensor muscle of toe at ankle or foot level','Y','2025-10-23 00:00:00'),(87643,11,'NC76.0Z','Injury of muscle, fascia or tendon of hip, unspecified','Y','2025-10-23 00:00:00'),(87642,11,'NC76.0','Injury of muscle, fascia or tendon of hip','Y','2025-10-23 00:00:00'),(87641,11,'NA0A.1Z','Injury of muscle, fascia or tendon of head, unspecified','Y','2025-10-23 00:00:00'),(87640,11,'NA0A.1','Injury of muscle, fascia or tendon of head','Y','2025-10-23 00:00:00'),(87639,11,'NC96.2Z','Injury of muscle, fascia or tendon of anterior muscle group at lower leg level, unspecified','Y','2025-10-23 00:00:00'),(87638,11,'NC96.2','Injury of muscle, fascia or tendon of anterior muscle group at lower leg level','Y','2025-10-23 00:00:00'),(87636,11,'NB94','Injury of muscle, fascia or tendon of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(87637,11,'NB94.Z','Injury of muscle, fascia or tendon of abdomen, lower back or pelvis, unspecified','Y','2025-10-23 00:00:00'),(87635,11,'NC57','Injury of muscle, fascia or tendon at wrist or hand level','Y','2025-10-23 00:00:00'),(87634,11,'NB34.Z','Injury of muscle, fascia or tendon at thorax level, unspecified','Y','2025-10-23 00:00:00'),(87633,11,'NB34','Injury of muscle, fascia or tendon at thorax level','Y','2025-10-23 00:00:00'),(87632,11,'NA61.Z','Injury of muscle, fascia or tendon at neck level, unspecified','Y','2025-10-23 00:00:00'),(87631,11,'NA61','Injury of muscle, fascia or tendon at neck level','Y','2025-10-23 00:00:00'),(87630,11,'ND17','Injury of muscle, fascia or tendon at ankle or foot level','Y','2025-10-23 00:00:00'),(87629,11,'NC16.0Z','Injury of muscle or tendon of the rotator cuff of shoulder, unspecified','Y','2025-10-23 00:00:00'),(87628,11,'NC16.0','Injury of muscle or tendon of the rotator cuff of shoulder','Y','2025-10-23 00:00:00'),(87627,11,'NC5A.1','Injury of multiple sites of wrist','Y','2025-10-23 00:00:00'),(87626,11,'NC5A.0','Injury of multiple sites of hand','Y','2025-10-23 00:00:00'),(87625,11,'NB92.8','Injury of multiple pelvic organs','Y','2025-10-23 00:00:00'),(87624,11,'NC55.3','Injury of multiple nerves at wrist or hand level','Y','2025-10-23 00:00:00'),(87623,11,'NC14.6','Injury of multiple nerves at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(87622,11,'NC94.3','Injury of multiple nerves at lower leg level','Y','2025-10-23 00:00:00'),(87621,11,'NC74.3','Injury of multiple nerves at hip or thigh level','Y','2025-10-23 00:00:00'),(87620,11,'NC34.4','Injury of multiple nerves at forearm level','Y','2025-10-23 00:00:00'),(87619,11,'ND15.4','Injury of multiple nerves at ankle or foot level','Y','2025-10-23 00:00:00'),(87618,11,'NC96.4','Injury of multiple muscles, fasciae or tendons at lower leg level','Y','2025-10-23 00:00:00'),(87617,11,'NC16.4Z','Injury of multiple muscles or tendons at shoulder or upper arm level, unspecified','Y','2025-10-23 00:00:00'),(87616,11,'NC16.4','Injury of multiple muscles or tendons at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(87615,11,'NC76.4Z','Injury of multiple muscles or tendons at hip or thigh level, unspecified','Y','2025-10-23 00:00:00'),(87614,11,'NC76.4','Injury of multiple muscles or tendons at hip or thigh level','Y','2025-10-23 00:00:00'),(87613,11,'NC36.6','Injury of multiple muscles or tendons at forearm level','Y','2025-10-23 00:00:00'),(87612,11,'ND17.3','Injury of multiple muscles or tendons at ankle or foot level','Y','2025-10-23 00:00:00'),(87611,11,'NB91.B','Injury of multiple intra-abdominal organs','Y','2025-10-23 00:00:00'),(87610,11,'NC57.6','Injury of multiple flexor muscles or tendons at wrist or hand level','Y','2025-10-23 00:00:00'),(87608,11,'NB30.6','Injury of multiple blood vessels of thorax','Y','2025-10-23 00:00:00'),(87609,11,'NC57.7','Injury of multiple extensor muscles or tendons at wrist or hand level','Y','2025-10-23 00:00:00'),(87607,11,'NC56.6Z','Injury of multiple blood vessels at wrist or hand level, unspecified','Y','2025-10-23 00:00:00'),(87606,11,'NC56.6','Injury of multiple blood vessels at wrist or hand level','Y','2025-10-23 00:00:00'),(87605,11,'NC15.4','Injury of multiple blood vessels at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(87604,11,'NA60.4','Injury of multiple blood vessels at neck level','Y','2025-10-23 00:00:00'),(87603,11,'NC95.7','Injury of multiple blood vessels at lower leg level','Y','2025-10-23 00:00:00'),(87602,11,'NC75.3','Injury of multiple blood vessels at hip or thigh level','Y','2025-10-23 00:00:00'),(87601,11,'NC35.3','Injury of multiple blood vessels at forearm level','Y','2025-10-23 00:00:00'),(87600,11,'ND16.3','Injury of multiple blood vessels at ankle or foot level','Y','2025-10-23 00:00:00'),(87599,11,'NB90.7','Injury of multiple blood vessels at abdomen, lower back or pelvis level','Y','2025-10-23 00:00:00'),(87598,11,'NA0C','Injury of middle or inner ear','Y','2025-10-23 00:00:00'),(87597,11,'NB91.A','Injury of mesentery','Y','2025-10-23 00:00:00'),(87596,11,'NB90.3Z','Injury of mesenteric artery, unspecified','Y','2025-10-23 00:00:00'),(87595,11,'NB90.3','Injury of mesenteric artery','Y','2025-10-23 00:00:00'),(87594,11,'NC55.1','Injury of median nerve at wrist or hand level','Y','2025-10-23 00:00:00'),(87593,11,'NC14.1','Injury of median nerve at upper arm level','Y','2025-10-23 00:00:00'),(87592,11,'NC34.1','Injury of median nerve at forearm level','Y','2025-10-23 00:00:00'),(87591,11,'ND15.1','Injury of medial plantar nerve','Y','2025-10-23 00:00:00'),(87590,11,'NB32.3Z','Injury of lung, unspecified','Y','2025-10-23 00:00:00'),(87589,11,'NB73','Injury of lumbosacral plexus','Y','2025-10-23 00:00:00'),(87588,11,'NB74','Injury of lumbar, sacral or pelvic sympathetic nerves','Y','2025-10-23 00:00:00'),(87587,11,'NC57.0Z','Injury of long flexor muscle, fascia or tendon of thumb at wrist or hand level, unspecified','Y','2025-10-23 00:00:00'),(87586,11,'NC57.0','Injury of long flexor muscle, fascia or tendon of thumb at wrist or hand level','Y','2025-10-23 00:00:00'),(87585,11,'NC36.1Z','Injury of long flexor muscle, fascia or tendon of other finger at forearm level, unspecified','Y','2025-10-23 00:00:00'),(87584,11,'NC36.1','Injury of long flexor muscle, fascia or tendon of other finger at forearm level','Y','2025-10-23 00:00:00'),(87583,11,'NC36.02','Injury of long flexor muscle of thumb, forearm level','Y','2025-10-23 00:00:00'),(87582,11,'NB91.1Z','Injury of liver, unspecified','Y','2025-10-23 00:00:00'),(87581,11,'NB91.1','Injury of liver','Y','2025-10-23 00:00:00'),(87580,11,'NC95.5Z','Injury of lesser saphenous vein at lower leg level, unspecified','Y','2025-10-23 00:00:00'),(87579,11,'NC95.5','Injury of lesser saphenous vein at lower leg level','Y','2025-10-23 00:00:00'),(87578,11,'NA06.A','Injury of lens','Y','2025-10-23 00:00:00'),(87577,11,'ND15.0','Injury of lateral plantar nerve','Y','2025-10-23 00:00:00'),(87576,11,'NB92.0Z','Injury of kidney, unspecified','Y','2025-10-23 00:00:00'),(87575,11,'NB92.0','Injury of kidney','Y','2025-10-23 00:00:00'),(87574,11,'NC57.4Z','Injury of intrinsic muscle, fascia or tendon of thumb at wrist or hand level, unspecified','Y','2025-10-23 00:00:00'),(87573,11,'NC57.4','Injury of intrinsic muscle, fascia or tendon of thumb at wrist or hand level','Y','2025-10-23 00:00:00'),(87572,11,'NC57.5Z','Injury of intrinsic muscle, fascia or tendon of other finger at wrist or hand level, unspecified','Y','2025-10-23 00:00:00'),(87571,11,'NC57.5','Injury of intrinsic muscle, fascia or tendon of other finger at wrist or hand level','Y','2025-10-23 00:00:00'),(87570,11,'ND17.2Z','Injury of intrinsic muscle, fascia or tendon at ankle or foot level, unspecified','Y','2025-10-23 00:00:00'),(87569,11,'ND17.2','Injury of intrinsic muscle, fascia or tendon at ankle or foot level','Y','2025-10-23 00:00:00'),(87568,11,'NA05.0','Injury of intracranial vessels of head','Y','2025-10-23 00:00:00'),(87567,11,'NB91.Z','Injury of intra-abdominal organs, unspecified','Y','2025-10-23 00:00:00'),(87566,11,'NB91','Injury of intra-abdominal organs','Y','2025-10-23 00:00:00'),(87565,11,'NB95','Injury of intra-abdominal organ with pelvic organ','Y','2025-10-23 00:00:00'),(87564,11,'NA60.3Z','Injury of internal jugular vein, unspecified','Y','2025-10-23 00:00:00'),(87563,11,'NA60.3','Injury of internal jugular vein','Y','2025-10-23 00:00:00'),(87562,11,'NB30.5Z','Injury of intercostal blood vessels, unspecified','Y','2025-10-23 00:00:00'),(87561,11,'NB30.5','Injury of intercostal blood vessels','Y','2025-10-23 00:00:00'),(87560,11,'NB30.3Z','Injury of innominate or subclavian vein, unspecified','Y','2025-10-23 00:00:00'),(87559,11,'NB30.3','Injury of innominate or subclavian vein','Y','2025-10-23 00:00:00'),(87558,11,'NB30.1Z','Injury of innominate or subclavian artery, unspecified','Y','2025-10-23 00:00:00'),(87557,11,'NB30.1','Injury of innominate or subclavian artery','Y','2025-10-23 00:00:00'),(87556,11,'NB90.1Z','Injury of inferior vena cava, unspecified','Y','2025-10-23 00:00:00'),(87555,11,'NB90.1','Injury of inferior vena cava','Y','2025-10-23 00:00:00'),(87554,11,'NB90.6Z','Injury of iliac blood vessels, unspecified','Y','2025-10-23 00:00:00'),(87553,11,'NB90.6','Injury of iliac blood vessels','Y','2025-10-23 00:00:00'),(87552,11,'NA04.B','Injury of hypoglossal nerve','Y','2025-10-23 00:00:00'),(87551,11,'NB91.14','Injury of hepatic duct','Y','2025-10-23 00:00:00'),(87550,11,'NB31.2','Injury of heart, unspecified without open wound into thoracic cavity','Y','2025-10-23 00:00:00'),(87549,11,'NB31.3','Injury of heart, unspecified with open wound into thoracic cavity','Y','2025-10-23 00:00:00'),(87548,11,'NB31.Z','Injury of heart, unspecified','Y','2025-10-23 00:00:00'),(87547,11,'NB31.1Z','Injury of heart without haemopericardium, unspecified','Y','2025-10-23 00:00:00'),(87546,11,'NB31.1','Injury of heart without haemopericardium','Y','2025-10-23 00:00:00'),(87545,11,'NB31.0Z','Injury of heart with haemopericardium, unspecified','Y','2025-10-23 00:00:00'),(87544,11,'NB31.0','Injury of heart with haemopericardium','Y','2025-10-23 00:00:00'),(87543,11,'NB31.4Z','Injury of heart valve, unspecified','Y','2025-10-23 00:00:00'),(87542,11,'NB31.4','Injury of heart valve','Y','2025-10-23 00:00:00'),(87541,11,'NB31','Injury of heart','Y','2025-10-23 00:00:00'),(87540,11,'NA0D.0Z','Injury of hard dental tissues and pulp, unspecified','Y','2025-10-23 00:00:00'),(87539,11,'NA0D.0','Injury of hard dental tissues and pulp','Y','2025-10-23 00:00:00'),(87538,11,'NC95.4Z','Injury of greater saphenous vein at lower leg level, unspecified','Y','2025-10-23 00:00:00'),(87537,11,'NC95.4','Injury of greater saphenous vein at lower leg level','Y','2025-10-23 00:00:00'),(87536,11,'NC75.2Z','Injury of greater saphenous vein at hip or thigh level, unspecified','Y','2025-10-23 00:00:00'),(87535,11,'NC75.2','Injury of greater saphenous vein at hip or thigh level','Y','2025-10-23 00:00:00'),(87534,11,'NA04.8','Injury of glossopharyngeal nerve','Y','2025-10-23 00:00:00'),(87533,11,'NB91.2','Injury of gallbladder','Y','2025-10-23 00:00:00'),(87532,11,'NC36.0Z','Injury of flexor muscle, fascia or tendon of thumb at forearm level, unspecified','Y','2025-10-23 00:00:00'),(87531,11,'NC36.0','Injury of flexor muscle, fascia or tendon of thumb at forearm level','Y','2025-10-23 00:00:00'),(87530,11,'NC57.1Z','Injury of flexor muscle, fascia or tendon of other finger at wrist or hand level, unspecified','Y','2025-10-23 00:00:00'),(87529,11,'NC57.1','Injury of flexor muscle, fascia or tendon of other finger at wrist or hand level','Y','2025-10-23 00:00:00'),(87528,11,'NC75.1Z','Injury of femoral vein at hip or thigh level, unspecified','Y','2025-10-23 00:00:00'),(87527,11,'NC75.1','Injury of femoral vein at hip or thigh level','Y','2025-10-23 00:00:00'),(87526,11,'NC74.1','Injury of femoral nerve at hip or thigh level','Y','2025-10-23 00:00:00'),(87525,11,'NC75.0Z','Injury of femoral artery, unspecified','Y','2025-10-23 00:00:00'),(87524,11,'NC75.0','Injury of femoral artery','Y','2025-10-23 00:00:00'),(87523,11,'NB92.5','Injury of fallopian tube','Y','2025-10-23 00:00:00'),(87522,11,'NA04.6','Injury of facial nerve','Y','2025-10-23 00:00:00'),(87521,11,'NA06.Z','Injury of eye or orbit, unspecified','Y','2025-10-23 00:00:00'),(87520,11,'NA06','Injury of eye or orbit','Y','2025-10-23 00:00:00'),(87519,11,'NA05.1','Injury of extracranial vessels of head','Y','2025-10-23 00:00:00'),(87518,11,'NA60.2Z','Injury of external jugular vein, unspecified','Y','2025-10-23 00:00:00'),(87517,11,'NA60.2','Injury of external jugular vein','Y','2025-10-23 00:00:00'),(87516,11,'NC36.3Z','Injury of extensor or abductor muscles or tendons of thumb at forearm level, unspecified','Y','2025-10-23 00:00:00'),(87515,11,'NC36.3','Injury of extensor or abductor muscles or tendons of thumb at forearm level','Y','2025-10-23 00:00:00'),(87514,11,'NC57.2Z','Injury of extensor muscle, fascia or tendon of thumb at wrist or hand level, unspecified','Y','2025-10-23 00:00:00'),(87513,11,'NC57.2','Injury of extensor muscle, fascia or tendon of thumb at wrist or hand level','Y','2025-10-23 00:00:00'),(87512,11,'NC57.3Z','Injury of extensor muscle, fascia or tendon of other finger at wrist or hand level, unspecified','Y','2025-10-23 00:00:00'),(87511,11,'NC57.3','Injury of extensor muscle, fascia or tendon of other finger at wrist or hand level','Y','2025-10-23 00:00:00'),(87510,11,'NC36.4Z','Injury of extensor muscle, fascia or tendon of other finger at forearm level, unspecified','Y','2025-10-23 00:00:00'),(87509,11,'NC36.4','Injury of extensor muscle, fascia or tendon of other finger at forearm level','Y','2025-10-23 00:00:00'),(87508,11,'NB91.6Z','Injury of duodenum, unspecified','Y','2025-10-23 00:00:00'),(87507,11,'NB91.6','Injury of duodenum','Y','2025-10-23 00:00:00'),(87506,11,'ND16.2Z','Injury of dorsal vein of foot, unspecified','Y','2025-10-23 00:00:00'),(87505,11,'ND16.2','Injury of dorsal vein of foot','Y','2025-10-23 00:00:00'),(87504,11,'ND16.0Z','Injury of dorsal artery of foot, unspecified','Y','2025-10-23 00:00:00'),(87503,11,'ND16.0','Injury of dorsal artery of foot','Y','2025-10-23 00:00:00'),(87502,11,'ND15.2','Injury of deep peroneal nerve at ankle or foot level','Y','2025-10-23 00:00:00'),(87501,11,'NC56.3Z','Injury of deep palmar arch, unspecified','Y','2025-10-23 00:00:00'),(87500,11,'NC56.3','Injury of deep palmar arch','Y','2025-10-23 00:00:00'),(87499,11,'NC14.5','Injury of cutaneous sensory nerve at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(87498,11,'NC94.2','Injury of cutaneous sensory nerve at lower leg level','Y','2025-10-23 00:00:00'),(87497,11,'NC74.2','Injury of cutaneous sensory nerve at hip or thigh level','Y','2025-10-23 00:00:00'),(87496,11,'NC34.3','Injury of cutaneous sensory nerve at forearm level','Y','2025-10-23 00:00:00'),(87495,11,'ND15.3','Injury of cutaneous sensory nerve at ankle or foot level','Y','2025-10-23 00:00:00'),(87494,11,'NA04.Z','Injury of cranial nerves, unspecified','Y','2025-10-23 00:00:00'),(87493,11,'NA04','Injury of cranial nerves','Y','2025-10-23 00:00:00'),(87492,11,'NA06.4','Injury of conjunctiva or corneal abrasion without mention of foreign body','Y','2025-10-23 00:00:00'),(87491,11,'NB91.8Z','Injury of colon, unspecified','Y','2025-10-23 00:00:00'),(87490,11,'NB91.8','Injury of colon','Y','2025-10-23 00:00:00'),(87489,11,'NB90.2Z','Injury of coeliac artery, unspecified','Y','2025-10-23 00:00:00'),(87488,11,'NB90.2','Injury of coeliac artery','Y','2025-10-23 00:00:00'),(87487,11,'NA43','Injury of cervical sympathetic nerves','Y','2025-10-23 00:00:00'),(87486,11,'NA3Z','Injury of cervical spinal cord, unspecified','Y','2025-10-23 00:00:00'),(87485,11,'NB72','Injury of cauda equina','Y','2025-10-23 00:00:00'),(87484,11,'NA60.0Z','Injury of carotid artery, unspecified','Y','2025-10-23 00:00:00'),(87483,11,'NA60.0','Injury of carotid artery','Y','2025-10-23 00:00:00'),(87482,11,'NC16.5','Injury of bursa of shoulder','Y','2025-10-23 00:00:00'),(87481,11,'NC96.5','Injury of bursa of knee','Y','2025-10-23 00:00:00'),(87480,11,'NC76.40','Injury of bursa of hip','Y','2025-10-23 00:00:00'),(87479,11,'NC36.7','Injury of bursa of elbow','Y','2025-10-23 00:00:00'),(87478,11,'NB32.4Z','Injury of bronchus, unspecified','Y','2025-10-23 00:00:00'),(87477,11,'NB32.4','Injury of bronchus','Y','2025-10-23 00:00:00'),(87476,11,'NA41.Z','Injury of brachial plexus, unspecified','Y','2025-10-23 00:00:00'),(87475,11,'NA41.2','Injury of brachial plexus trunk','Y','2025-10-23 00:00:00'),(87474,11,'NA41.1','Injury of brachial plexus division','Y','2025-10-23 00:00:00'),(87473,11,'NA41.0','Injury of brachial plexus cord','Y','2025-10-23 00:00:00'),(87472,11,'NA41','Injury of brachial plexus','Y','2025-10-23 00:00:00'),(87471,11,'NC15.1Z','Injury of brachial artery, unspecified','Y','2025-10-23 00:00:00'),(87470,11,'NC15.1','Injury of brachial artery','Y','2025-10-23 00:00:00'),(87469,11,'NB30','Injury of blood vessels of thorax','Y','2025-10-23 00:00:00'),(87468,11,'NA05.Z','Injury of blood vessels of head, unspecified','Y','2025-10-23 00:00:00'),(87467,11,'NA05','Injury of blood vessels of head','Y','2025-10-23 00:00:00'),(87466,11,'NC56','Injury of blood vessels at wrist or hand level','Y','2025-10-23 00:00:00'),(87465,11,'NC15','Injury of blood vessels at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(87464,11,'NA60.Z','Injury of blood vessels at neck level, unspecified','Y','2025-10-23 00:00:00'),(87463,11,'NA60','Injury of blood vessels at neck level','Y','2025-10-23 00:00:00'),(87462,11,'NC95','Injury of blood vessels at lower leg level','Y','2025-10-23 00:00:00'),(87461,11,'NC75','Injury of blood vessels at hip or thigh level','Y','2025-10-23 00:00:00'),(87460,11,'NC35','Injury of blood vessels at forearm level','Y','2025-10-23 00:00:00'),(87459,11,'ND16','Injury of blood vessels at ankle or foot level','Y','2025-10-23 00:00:00'),(87458,11,'NB90','Injury of blood vessels at abdomen, lower back or pelvis level','Y','2025-10-23 00:00:00'),(87457,11,'ND56.5','Injury of blood vessel of unspecified body region','Y','2025-10-23 00:00:00'),(87456,11,'NC56.4Z','Injury of blood vessel of thumb, unspecified','Y','2025-10-23 00:00:00'),(87455,11,'NC56.4','Injury of blood vessel of thumb','Y','2025-10-23 00:00:00'),(87454,11,'NC56.5Z','Injury of blood vessel of other finger, unspecified','Y','2025-10-23 00:00:00'),(87453,11,'NC56.5','Injury of blood vessel of other finger','Y','2025-10-23 00:00:00'),(87452,11,'NB92.2Z','Injury of bladder, unspecified','Y','2025-10-23 00:00:00'),(87451,11,'NB92.2','Injury of bladder','Y','2025-10-23 00:00:00'),(87450,11,'NB91.3','Injury of bile duct','Y','2025-10-23 00:00:00'),(87449,11,'NC15.2Z','Injury of axillary or brachial vein, unspecified','Y','2025-10-23 00:00:00'),(87448,11,'NC15.2','Injury of axillary or brachial vein','Y','2025-10-23 00:00:00'),(87447,11,'NC14.3','Injury of axillary nerve','Y','2025-10-23 00:00:00'),(87446,11,'NC15.0Z','Injury of axillary artery, unspecified','Y','2025-10-23 00:00:00'),(87445,11,'NC15.0','Injury of axillary artery','Y','2025-10-23 00:00:00'),(87444,11,'NC95.1Z','Injury of anterior tibial artery, unspecified','Y','2025-10-23 00:00:00'),(87443,11,'NC95.1','Injury of anterior tibial artery','Y','2025-10-23 00:00:00'),(87442,11,'NC76.2Z','Injury of adductor muscle, fascia or tendon of thigh, unspecified','Y','2025-10-23 00:00:00'),(87441,11,'NC76.2','Injury of adductor muscle, fascia or tendon of thigh','Y','2025-10-23 00:00:00'),(87440,11,'NA04.7','Injury of acoustic nerve','Y','2025-10-23 00:00:00'),(87439,11,'NC96.0Z','Injury of Achilles tendon, unspecified','Y','2025-10-23 00:00:00'),(87438,11,'NC96.0','Injury of Achilles tendon','Y','2025-10-23 00:00:00'),(87437,11,'NA04.A','Injury of accessory nerve','Y','2025-10-23 00:00:00'),(87436,11,'NA04.5','Injury of abducent nerve','Y','2025-10-23 00:00:00'),(87435,11,'NB90.0Z','Injury of abdominal aorta, unspecified','Y','2025-10-23 00:00:00'),(87434,11,'NB90.0','Injury of abdominal aorta','Y','2025-10-23 00:00:00'),(87433,11,'ND56.9','Injury complicating pregnancy','Y','2025-10-23 00:00:00'),(87432,11,'ND5Z','Injuries to unspecified part of trunk, limb or body region, unspecified','Y','2025-10-23 00:00:00'),(87431,11,'NC5Z','Injuries to the wrist or hand, unspecified','Y','2025-10-23 00:00:00'),(87430,11,'NB3Z','Injuries to the thorax, unspecified','Y','2025-10-23 00:00:00'),(87429,11,'NC1Z','Injuries to the shoulder or upper arm, unspecified','Y','2025-10-23 00:00:00'),(87428,11,'NA6Z','Injuries to the neck, unspecified','Y','2025-10-23 00:00:00'),(87427,11,'NC9Z','Injuries to the knee or lower leg, unspecified','Y','2025-10-23 00:00:00'),(87426,11,'NC7Z','Injuries to the hip or thigh, unspecified','Y','2025-10-23 00:00:00'),(87425,11,'NA0Z','Injuries to the head, unspecified','Y','2025-10-23 00:00:00'),(87424,11,'NC3Z','Injuries to the elbow or forearm, unspecified','Y','2025-10-23 00:00:00'),(87423,11,'ND1Z','Injuries to the ankle or foot, unspecified','Y','2025-10-23 00:00:00'),(87422,11,'NB9Z','Injuries to the abdomen, lower back, lumbar spine or pelvis, unspecified','Y','2025-10-23 00:00:00'),(87421,11,'PK81.7','Injection or infusion for therapeutic or diagnostic purposes associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(87420,11,'1C23.0','Initial stage of trachoma','Y','2025-10-23 00:00:00'),(87419,11,'XY6E','Initial reason for encounter or admission','Y','2025-10-23 00:00:00'),(87418,11,'XY18','Initial encounter','Y','2025-10-23 00:00:00'),(87417,11,'LA00.1','Iniencephaly','Y','2025-10-23 00:00:00'),(87416,11,'XE36S','In-hospital','Y','2025-10-23 00:00:00'),(87415,11,'9B80','Inherited vitreoretinal disorders','Y','2025-10-23 00:00:00'),(87414,11,'9B70','Inherited retinal dystrophies','Y','2025-10-23 00:00:00'),(87413,11,'3B62.0Z','Inherited qualitative platelet defects, unspecified','Y','2025-10-23 00:00:00'),(87412,11,'3B62.0','Inherited qualitative platelet defects','Y','2025-10-23 00:00:00'),(87411,11,'3B62.01','Inherited giant platelet disorder','Y','2025-10-23 00:00:00'),(87410,11,'3B50.Z','Inherited fibrinolytic defects, unspecified','Y','2025-10-23 00:00:00'),(87409,11,'3B50','Inherited fibrinolytic defects','Y','2025-10-23 00:00:00'),(87408,11,'EC22.0','Inherited deformities of nails','Y','2025-10-23 00:00:00'),(87407,11,'3B15','Inherited coagulation factor deficiency without bleeding tendency','Y','2025-10-23 00:00:00'),(87406,11,'8D81','Inherited autonomic nervous system disorders','Y','2025-10-23 00:00:00'),(87405,11,'XM8T75','Inhaled anaesthetics','Y','2025-10-23 00:00:00'),(87404,11,'NB32.32','Inhalation injury of lung','Y','2025-10-23 00:00:00'),(87403,11,'XA2XG2','Inguinocrural fold','Y','2025-10-23 00:00:00'),(87402,11,'XA0GN7','Inguinal region','Y','2025-10-23 00:00:00'),(87401,11,'XA7N26','Inguinal lymph node','Y','2025-10-23 00:00:00'),(87400,11,'DD51','Inguinal hernia','Y','2025-10-23 00:00:00'),(87399,11,'XA00B4','Inguinal canal','Y','2025-10-23 00:00:00'),(87398,11,'EE13.10','Ingrowing toenail','Y','2025-10-23 00:00:00'),(87397,11,'EE13.1','Ingrowing nail','Y','2025-10-23 00:00:00'),(87396,11,'XE39L','In-ground swimming pool','Y','2025-10-23 00:00:00'),(87395,11,'NB91.53','Ingestion injury of stomach without perforation','Y','2025-10-23 00:00:00'),(87393,11,'XM1NP5','Ingenol mebutate','Y','2025-10-23 00:00:00'),(87394,11,'NB91.54','Ingestion injury of stomach with perforation','Y','2025-10-23 00:00:00'),(87392,11,'XD52M6','Infusion Pumps, Volumetric, Nuclear Magnetic Resonance','Y','2025-10-23 00:00:00'),(87390,11,'XD1N14','Infusion Pumps, Syringe, Nuclear Magnetic Resonance','Y','2025-10-23 00:00:00'),(87391,11,'XD4CT3','Infusion Pumps, Volumetric','Y','2025-10-23 00:00:00'),(87389,11,'XD36Q1','Infusion Pumps, Syringe','Y','2025-10-23 00:00:00'),(87388,11,'XD8DH3','Infusion Pumps, Enteral nutrition','Y','2025-10-23 00:00:00'),(87386,11,'XE7NV','Infusion or flow problem','Y','2025-10-23 00:00:00'),(87387,11,'XD8QY1','Infusion Pumps','Y','2025-10-23 00:00:00'),(87385,11,'GA20.11','Infrequent menstrual bleeding','Y','2025-10-23 00:00:00'),(87384,11,'8A81.0','Infrequent episodic tension-type headache','Y','2025-10-23 00:00:00'),(87383,11,'XA3ZG3','Infratip lobule of nose','Y','2025-10-23 00:00:00'),(87382,11,'XA1GA1','Infratentorial region of brain','Y','2025-10-23 00:00:00'),(87381,11,'XK0P','Infratentorial','Y','2025-10-23 00:00:00'),(87380,11,'XA2MX3','Infraspinatus tendon','Y','2025-10-23 00:00:00'),(87379,11,'XA7E49','Infraspinatus muscle','Y','2025-10-23 00:00:00'),(87378,11,'XA8NK1','Infrascapular region','Y','2025-10-23 00:00:00'),(87377,11,'XA2LN9','Infrarenal abdominal aorta','Y','2025-10-23 00:00:00'),(87376,11,'XA6TV2','Infraorbital region','Y','2025-10-23 00:00:00'),(87375,11,'XA2B55','Infraorbital plexus','Y','2025-10-23 00:00:00'),(87374,11,'XA3G43','Infraorbital nerve','Y','2025-10-23 00:00:00'),(87372,11,'XA0T50','Inframammary flexure','Y','2025-10-23 00:00:00'),(87373,11,'XA5C33','Infraorbital artery','Y','2025-10-23 00:00:00'),(87371,11,'XA6M63','Infraclavicular region','Y','2025-10-23 00:00:00'),(87370,11,'XA0MR2','Infraclavicular lymph node','Y','2025-10-23 00:00:00'),(87369,11,'VD33','Informal relationship with friends making new friends [WHODAS]','Y','2025-10-23 00:00:00'),(87368,11,'VD31','Informal relationship with friends maintaining [WHODAS]','Y','2025-10-23 00:00:00'),(87367,11,'1E32','Influenza, virus not identified','Y','2025-10-23 00:00:00'),(87366,11,'XM33X8','Influenza, purified antigen','Y','2025-10-23 00:00:00'),(87365,11,'XN5SG','Influenza virus','Y','2025-10-23 00:00:00'),(87364,11,'XM9E16','Influenza vaccines, virus like particle','Y','2025-10-23 00:00:00'),(87363,11,'XM5V64','Influenza vaccines, live attenuated','Y','2025-10-23 00:00:00'),(87362,11,'XM8857','Influenza vaccines, inactivated, whole virus','Y','2025-10-23 00:00:00'),(87361,11,'XM8MP2','Influenza vaccines, inactivated, split virus or surface antigen','Y','2025-10-23 00:00:00'),(87360,11,'XM1LR5','Influenza vaccines','Y','2025-10-23 00:00:00'),(87359,11,'1E31','Influenza due to identified zoonotic or pandemic influenza virus','Y','2025-10-23 00:00:00'),(87358,11,'1E30','Influenza due to identified seasonal influenza virus','Y','2025-10-23 00:00:00'),(87357,11,'XN67Q','Influenza D virus','Y','2025-10-23 00:00:00'),(87356,11,'XN8U3','Influenza C virus','Y','2025-10-23 00:00:00'),(87355,11,'XN8SG','Influenza B virus','Y','2025-10-23 00:00:00'),(87354,11,'XN8WJ','Influenza A virus','Y','2025-10-23 00:00:00'),(87353,11,'XN412','Influenza A H9N2 virus','Y','2025-10-23 00:00:00'),(87352,11,'XN71C','Influenza A H9 virus','Y','2025-10-23 00:00:00'),(87351,11,'XN35G','Influenza A H7N9 virus','Y','2025-10-23 00:00:00'),(87350,11,'XN8YT','Influenza A H7N7 virus','Y','2025-10-23 00:00:00'),(87349,11,'XN5WA','Influenza A H7N4 virus','Y','2025-10-23 00:00:00'),(87348,11,'XN8Q3','Influenza A H7N3 virus','Y','2025-10-23 00:00:00'),(87347,11,'XN9GE','Influenza A H7N2 virus','Y','2025-10-23 00:00:00'),(87345,11,'XN0AS','Influenza A H6N1 virus','Y','2025-10-23 00:00:00'),(87346,11,'XN2SA','Influenza A H7N2 variant','Y','2025-10-23 00:00:00'),(87344,11,'XN6MY','Influenza A H5N8 virus','Y','2025-10-23 00:00:00'),(87343,11,'XN7JR','Influenza A H5N6 virus','Y','2025-10-23 00:00:00'),(87342,11,'XN5DQ','Influenza A H5N2 virus','Y','2025-10-23 00:00:00'),(87341,11,'XN4TT','Influenza A H5N1 virus','Y','2025-10-23 00:00:00'),(87340,11,'XN6MR','Influenza A H5 virus','Y','2025-10-23 00:00:00'),(87339,11,'XN9FE','Influenza A H3N2v virus','Y','2025-10-23 00:00:00'),(87338,11,'XN6WE','Influenza A H3N2 virus','Y','2025-10-23 00:00:00'),(87337,11,'XN3UU','Influenza A H3N2 Panama/2007/99 virus','Y','2025-10-23 00:00:00'),(87336,11,'XN9HE','Influenza A H3N2 Moscow/10/99 virus','Y','2025-10-23 00:00:00'),(87335,11,'XN8WA','Influenza A H3 virus','Y','2025-10-23 00:00:00'),(87334,11,'XN79W','Influenza A H2N2 virus','Y','2025-10-23 00:00:00'),(87333,11,'XN3UJ','Influenza A H1pdm09N2 2:6 reassortant influenza virus','Y','2025-10-23 00:00:00'),(87332,11,'XN3VG','Influenza A H1N2v virus','Y','2025-10-23 00:00:00'),(87331,11,'XN16M','Influenza A H1N2 variant','Y','2025-10-23 00:00:00'),(87329,11,'XN297','Influenza A H1N1 virus','Y','2025-10-23 00:00:00'),(87330,11,'XN9Z9','Influenza A H1N1v virus','Y','2025-10-23 00:00:00'),(87328,11,'XN9SG','Influenza A H1N1 pdm2009 virus','Y','2025-10-23 00:00:00'),(87327,11,'XN0MW','Influenza A H10N8 virus','Y','2025-10-23 00:00:00'),(87326,11,'XN66Y','Influenza A H10N7 virus','Y','2025-10-23 00:00:00'),(87325,11,'XN5SY','Influenza A H10N3 virus','Y','2025-10-23 00:00:00'),(87324,11,'XN2J2','Influenza A H1 virus','Y','2025-10-23 00:00:00'),(87323,11,'XM3MX3','Infliximab','Y','2025-10-23 00:00:00'),(87322,11,'XE5GY','Inflation problem','Y','2025-10-23 00:00:00'),(87321,11,'GA02.1','Inflammatory vaginitis','Y','2025-10-23 00:00:00'),(87320,11,'FA92.Z','Inflammatory spondyloarthritis, unspecified','Y','2025-10-23 00:00:00'),(87319,11,'FA92','Inflammatory spondyloarthritis','Y','2025-10-23 00:00:00'),(87318,11,'DB35.1','Inflammatory polyp of large intestine','Y','2025-10-23 00:00:00'),(87317,11,'8C01.Z','Inflammatory polyneuropathy, unspecified','Y','2025-10-23 00:00:00'),(87316,11,'8C01','Inflammatory polyneuropathy','Y','2025-10-23 00:00:00'),(87315,11,'8E40.2','Inflammatory meningitis','Y','2025-10-23 00:00:00'),(87314,11,'DB97.Z','Inflammatory liver disease, unspecified','Y','2025-10-23 00:00:00'),(87313,11,'XH7PE7','Inflammatory liposarcoma','Y','2025-10-23 00:00:00'),(87312,11,'4A41.20','Inflammatory inclusion body myositis','Y','2025-10-23 00:00:00'),(87311,11,'DA98.2','Inflammatory fibroid polyp of small intestine','Y','2025-10-23 00:00:00'),(87310,11,'DB35.4','Inflammatory fibroid polyp of large intestine','Y','2025-10-23 00:00:00'),(87309,11,'SC72','Inflammatory eyelid disorder (TM1)','Y','2025-10-23 00:00:00'),(87308,11,'GA01.Z','Inflammatory disorders of the uterus, except cervix, unspecified','Y','2025-10-23 00:00:00'),(87307,11,'GA01','Inflammatory disorders of the uterus, except cervix','Y','2025-10-23 00:00:00'),(87306,11,'GA0Z','Inflammatory disorders of the female genital tract, unspecified','Y','2025-10-23 00:00:00'),(87305,11,'GB07.1','Inflammatory disorders of spermatic cord, tunica vaginalis or vas deferens','Y','2025-10-23 00:00:00'),(87304,11,'GB07.0','Inflammatory disorders of seminal vesicle','Y','2025-10-23 00:00:00'),(87303,11,'GB07.2','Inflammatory disorders of scrotum','Y','2025-10-23 00:00:00'),(87302,11,'GB07','Inflammatory disorders of male genital organs, not elsewhere classified','Y','2025-10-23 00:00:00'),(87301,11,'9A02','Inflammatory disorders of eyelid','Y','2025-10-23 00:00:00'),(87300,11,'GB21.Z','Inflammatory disorders of breast, unspecified','Y','2025-10-23 00:00:00'),(87299,11,'GB21','Inflammatory disorders of breast','Y','2025-10-23 00:00:00'),(87298,11,'EG4Z','Inflammatory disorder of external ear, unspecified','Y','2025-10-23 00:00:00'),(87297,11,'9B72.Z','Inflammatory diseases of the retina, unspecified','Y','2025-10-23 00:00:00'),(87296,11,'9B72','Inflammatory diseases of the retina','Y','2025-10-23 00:00:00'),(87295,11,'GA40','Inflammatory dermatoses of the vulva','Y','2025-10-23 00:00:00'),(87294,11,'EG62','Inflammatory dermatoses of the perianal area','Y','2025-10-23 00:00:00'),(87293,11,'KC21','Inflammatory dermatoses of the newborn','Y','2025-10-23 00:00:00'),(87292,11,'DA06.0','Inflammatory conditions of jaws','Y','2025-10-23 00:00:00'),(87291,11,'2C62','Inflammatory carcinoma of breast','Y','2025-10-23 00:00:00'),(87290,11,'XH9G73','Inflammatory carcinoma','Y','2025-10-23 00:00:00'),(87289,11,'DD7Z','Inflammatory bowel diseases, unspecified','Y','2025-10-23 00:00:00'),(87288,11,'FA2Z','Inflammatory arthropathies, unspecified','Y','2025-10-23 00:00:00'),(87287,11,'GA91.Z','Inflammatory and other diseases of prostate, unspecified','Y','2025-10-23 00:00:00'),(87286,11,'GA91','Inflammatory and other diseases of prostate','Y','2025-10-23 00:00:00'),(87285,11,'DB71.0','Inflammatory anal polyp','Y','2025-10-23 00:00:00'),(87284,11,'FA9Z','Inflammation of spine, unspecified','Y','2025-10-23 00:00:00'),(87283,11,'XH8WP0','Inflamed juvenile conjunctival naevus','Y','2025-10-23 00:00:00'),(87282,11,'9C40.6','Infiltrative optic neuropathy','Y','2025-10-23 00:00:00'),(87281,11,'XH3CB4','Infiltrating lobular mixed with other types of carcinoma','Y','2025-10-23 00:00:00'),(87280,11,'XH9551','Infiltrating lobular carcinoma and ductal carcinoma in situ','Y','2025-10-23 00:00:00'),(87279,11,'XH5GN5','Infiltrating lipoma','Y','2025-10-23 00:00:00'),(87278,11,'XH0408','Infiltrating ductular carcinoma','Y','2025-10-23 00:00:00'),(87277,11,'XH8CS0','Infiltrating duct mixed with other types of carcinoma','Y','2025-10-23 00:00:00'),(87276,11,'XH7KH3','Infiltrating duct carcinoma, NOS','Y','2025-10-23 00:00:00'),(87275,11,'XH1ND7','Infiltrating duct and tubular carcinoma','Y','2025-10-23 00:00:00'),(87274,11,'XH3969','Infiltrating duct and mucinous carcinoma','Y','2025-10-23 00:00:00'),(87273,11,'XH6MH3','Infiltrating duct and lobular carcinoma in situ','Y','2025-10-23 00:00:00'),(87272,11,'XH8RN5','Infiltrating duct and lobular carcinoma','Y','2025-10-23 00:00:00'),(87271,11,'XH2ST9','Infiltrating duct and cribriform carcinoma','Y','2025-10-23 00:00:00'),(87270,11,'XH9GX4','Infiltrating duct and colloid carcinoma','Y','2025-10-23 00:00:00'),(87269,11,'XH67Y4','Infiltrating basal cell carcinoma, sclerosing','Y','2025-10-23 00:00:00'),(87268,11,'XH5VK4','Infiltrating basal cell carcinoma, NOS','Y','2025-10-23 00:00:00'),(87267,11,'XH0T12','Infiltrating basal cell carcinoma, non-sclerosing','Y','2025-10-23 00:00:00'),(87266,11,'XH7TB0','Infiltrating angiolipoma','Y','2025-10-23 00:00:00'),(87265,11,'XM9U75','Infigratinib','Y','2025-10-23 00:00:00'),(87264,11,'1G07.Y','Infestation of the skin by other specified parasitic mites','Y','2025-10-23 00:00:00'),(87263,11,'9A01.4','Infestation of eyelid','Y','2025-10-23 00:00:00'),(87262,11,'1G0Z','Infestation by unknown or unspecified ectoparasite','Y','2025-10-23 00:00:00'),(87261,11,'1G0Y','Infestation by other specified ectoparasite','Y','2025-10-23 00:00:00'),(87260,11,'1G07','Infestation by mites','Y','2025-10-23 00:00:00'),(87259,11,'1G07.0','Infestation by Demodex','Y','2025-10-23 00:00:00'),(87258,11,'XN857','Infestation by beetle','Y','2025-10-23 00:00:00'),(87257,11,'SC22','Infertility disorder (TM1)','Y','2025-10-23 00:00:00'),(87256,11,'XA2H88','Inferoposterior wall of heart','Y','2025-10-23 00:00:00'),(87255,11,'XA61Y9','Inferolateral wall of heart','Y','2025-10-23 00:00:00'),(87254,11,'XA5MG3','Inferolateral buccal sulcus','Y','2025-10-23 00:00:00'),(87253,11,'XA3RM8','Inferior wall of heart','Y','2025-10-23 00:00:00'),(87252,11,'XA2QX3','Inferior vesical artery','Y','2025-10-23 00:00:00'),(87251,11,'XA70Y8','Inferior vermis','Y','2025-10-23 00:00:00'),(87250,11,'XA7UV5','Inferior vena cava','Y','2025-10-23 00:00:00'),(87249,11,'XA9F90','Inferior ulnar collateral artery','Y','2025-10-23 00:00:00'),(87248,11,'XA2FV7','Inferior transverse ligament of ankle','Y','2025-10-23 00:00:00'),(87247,11,'XA1PA1','Inferior tracheobronchial lymph node','Y','2025-10-23 00:00:00'),(87246,11,'XA2KJ8','Inferior thyroid vein','Y','2025-10-23 00:00:00'),(87245,11,'XA2V10','Inferior thyroid artery','Y','2025-10-23 00:00:00'),(87244,11,'XA9GT2','Inferior striate vein','Y','2025-10-23 00:00:00'),(87243,11,'XA9ED6','Inferior sagittal sinus','Y','2025-10-23 00:00:00'),(87242,11,'XA7HT8','Inferior rectus tendon','Y','2025-10-23 00:00:00'),(87241,11,'XA1X67','Inferior rectus muscle','Y','2025-10-23 00:00:00'),(87240,11,'XA80L8','Inferior rectal vein','Y','2025-10-23 00:00:00'),(87239,11,'XA2ZV2','Inferior pulmonary vein','Y','2025-10-23 00:00:00'),(87238,11,'XA4VB9','Inferior pubic ramus','Y','2025-10-23 00:00:00'),(87237,11,'XA0EZ6','Inferior phrenic vein','Y','2025-10-23 00:00:00'),(87236,11,'XA2LL9','Inferior phrenic','Y','2025-10-23 00:00:00'),(87235,11,'XA6ZV2','Inferior petrosal Sinus','Y','2025-10-23 00:00:00'),(87234,11,'XA6358','Inferior pancreaticoduodenal artery','Y','2025-10-23 00:00:00'),(87233,11,'XA9K84','Inferior palpebral vein','Y','2025-10-23 00:00:00'),(87232,11,'XA4E11','Inferior palpebral nerve','Y','2025-10-23 00:00:00'),(87231,11,'XA4VH9','Inferior palpebral arch artery','Y','2025-10-23 00:00:00'),(87230,11,'XA8M04','Inferior ophthalmic vein','Y','2025-10-23 00:00:00'),(87229,11,'XA3ZA2','Inferior oblique tendon','Y','2025-10-23 00:00:00'),(87228,11,'XA4N79','Inferior oblique muscle','Y','2025-10-23 00:00:00'),(87227,11,'XA6UV6','Inferior nasal conchae','Y','2025-10-23 00:00:00'),(87226,11,'XA4EK2','Inferior mesenteric vein','Y','2025-10-23 00:00:00'),(87225,11,'XA8QG3','Inferior mesenteric plexus','Y','2025-10-23 00:00:00'),(87224,11,'XA8Y29','Inferior mesenteric lymph node','Y','2025-10-23 00:00:00'),(87223,11,'XA2N15','Inferior mesenteric artery','Y','2025-10-23 00:00:00'),(87222,11,'XA0NC8','Inferior maxilla','Y','2025-10-23 00:00:00'),(87221,11,'XA2JH6','Inferior laryngeal vein','Y','2025-10-23 00:00:00'),(87220,11,'XA99D0','Inferior lacrimal punctum','Y','2025-10-23 00:00:00'),(87219,11,'XA5DP6','Inferior labial vein','Y','2025-10-23 00:00:00'),(87218,11,'XA52Q7','Inferior labial sulcus','Y','2025-10-23 00:00:00'),(87217,11,'XA2ZM0','Inferior labial artery','Y','2025-10-23 00:00:00'),(87216,11,'XA05T1','Inferior hypogastric plexus','Y','2025-10-23 00:00:00'),(87215,11,'XA3HW8','Inferior gluteal vein','Y','2025-10-23 00:00:00'),(87214,11,'XA1GU3','Inferior gluteal nerve','Y','2025-10-23 00:00:00'),(87213,11,'XA0G82','Inferior gluteal artery','Y','2025-10-23 00:00:00'),(87212,11,'XA1FW5','Inferior gastric lymph node','Y','2025-10-23 00:00:00'),(87210,11,'XA5VA3','Inferior epigastric lymph node','Y','2025-10-23 00:00:00'),(87211,11,'XA30F2','Inferior epigastric vein','Y','2025-10-23 00:00:00'),(87208,11,'XA3S48','Inferior deep cervical lymph node','Y','2025-10-23 00:00:00'),(87209,11,'XA3F13','Inferior epigastric artery','Y','2025-10-23 00:00:00'),(87206,11,'XA4R20','Inferior cervical lymph node','Y','2025-10-23 00:00:00'),(87207,11,'XA3KE6','Inferior conjunctival fornix','Y','2025-10-23 00:00:00'),(87204,11,'XA0U80','Inferior cerebral Vein','Y','2025-10-23 00:00:00'),(87205,11,'XA20S2','Inferior cervical ganglion','Y','2025-10-23 00:00:00'),(87203,11,'XA93W0','Inferior cerebellar vein','Y','2025-10-23 00:00:00'),(87202,11,'BE1C','Inferior caval vein obstruction due to foreign body','Y','2025-10-23 00:00:00'),(87201,11,'XA9TB4','Inferior cardiac nerve','Y','2025-10-23 00:00:00'),(87200,11,'XA3XS2','Inferior branch of the lateral sacral artery','Y','2025-10-23 00:00:00'),(87199,11,'XA8CZ0','Inferior anal nerves','Y','2025-10-23 00:00:00'),(87198,11,'XA3VT0','Inferior alveolar nerve','Y','2025-10-23 00:00:00'),(87197,11,'XA7SV5','Inferior alveolar artery','Y','2025-10-23 00:00:00'),(87196,11,'XA9QC3','Inferior adrenal artery','Y','2025-10-23 00:00:00'),(87195,11,'XA49Z7','Inferior acromioclavicular ligament','Y','2025-10-23 00:00:00'),(87194,11,'XK4H','Inferior','Y','2025-10-23 00:00:00'),(87193,11,'FB40.0','Infectious tenosynovitis','Y','2025-10-23 00:00:00'),(87192,11,'FA13','Infectious spondyloarthritis','Y','2025-10-23 00:00:00'),(87191,11,'DA60.7','Infectious secondary gastric ulcer','Y','2025-10-23 00:00:00'),(87190,11,'9B65.1','Infectious posterior choroiditis','Y','2025-10-23 00:00:00'),(87189,11,'BB20.0','Infectious pericarditis','Y','2025-10-23 00:00:00'),(87188,11,'9C20.1','Infectious panuveitis','Y','2025-10-23 00:00:00'),(87187,11,'8A05.10','Infectious or postinfectious tics','Y','2025-10-23 00:00:00'),(87186,11,'8A00.22','Infectious or postinfectious parkinsonism','Y','2025-10-23 00:00:00'),(87185,11,'9C40.0','Infectious optic neuropathy','Y','2025-10-23 00:00:00'),(87184,11,'DA24.0Z','Infectious oesophagitis, unspecified','Y','2025-10-23 00:00:00'),(87183,11,'DA24.0','Infectious oesophagitis','Y','2025-10-23 00:00:00'),(87182,11,'DA25.1Z','Infectious oesophageal ulcer, unspecified','Y','2025-10-23 00:00:00'),(87181,11,'DA25.1','Infectious oesophageal ulcer','Y','2025-10-23 00:00:00'),(87180,11,'MG29.2','Infectious oedema','Y','2025-10-23 00:00:00'),(87179,11,'FB30','Infectious myositis','Y','2025-10-23 00:00:00'),(87178,11,'BC42.1','Infectious myocarditis','Y','2025-10-23 00:00:00'),(87177,11,'1D02.Z','Infectious myelitis not elsewhere classified, unspecified','Y','2025-10-23 00:00:00'),(87176,11,'1D02','Infectious myelitis not elsewhere classified','Y','2025-10-23 00:00:00'),(87175,11,'1D81.Z','Infectious mononucleosis, unspecified','Y','2025-10-23 00:00:00'),(87174,11,'1D81','Infectious mononucleosis','Y','2025-10-23 00:00:00'),(87173,11,'1D01.Z','Infectious meningitis not elsewhere classified, unspecified','Y','2025-10-23 00:00:00'),(87172,11,'1D01','Infectious meningitis not elsewhere classified','Y','2025-10-23 00:00:00'),(87171,11,'DB90.Z','Infectious liver disease, unspecified','Y','2025-10-23 00:00:00'),(87170,11,'DB90','Infectious liver disease','Y','2025-10-23 00:00:00'),(87169,11,'9A71','Infectious keratitis','Y','2025-10-23 00:00:00'),(87168,11,'9B66.1','Infectious intermediate choroiditis','Y','2025-10-23 00:00:00'),(87167,11,'1D04.Z','Infectious granulomas of the central nervous system, site unspecified','Y','2025-10-23 00:00:00'),(87166,11,'1D04','Infectious granulomas of the central nervous system','Y','2025-10-23 00:00:00'),(87165,11,'1A40.Z','Infectious gastroenteritis or colitis without specification of infectious agent','Y','2025-10-23 00:00:00'),(87164,11,'1D00.Z','Infectious encephalitis not elsewhere classified, unspecified','Y','2025-10-23 00:00:00'),(87163,11,'1D00','Infectious encephalitis not elsewhere classified','Y','2025-10-23 00:00:00'),(87162,11,'DA51.6Z','Infectious duodenitis, unspecified','Y','2025-10-23 00:00:00'),(87161,11,'DA51.6','Infectious duodenitis','Y','2025-10-23 00:00:00'),(87160,11,'DA63.6Z','Infectious duodenal ulcer, unspecified','Y','2025-10-23 00:00:00'),(87159,11,'DA63.6','Infectious duodenal ulcer','Y','2025-10-23 00:00:00'),(87158,11,'9A01','Infectious disorders of eyelid','Y','2025-10-23 00:00:00'),(87157,11,'AA0Z','Infectious diseases of external ear, unspecified','Y','2025-10-23 00:00:00'),(87156,11,'EA88.0Z','Infectious dermatitis, unspecified','Y','2025-10-23 00:00:00'),(87155,11,'EA88.0','Infectious dermatitis','Y','2025-10-23 00:00:00'),(87154,11,'1D05.Z','Infectious cysts of the central nervous system, unspecified','Y','2025-10-23 00:00:00'),(87153,11,'1D05','Infectious cysts of the central nervous system','Y','2025-10-23 00:00:00'),(87151,11,'FB50.0','Infectious bursitis','Y','2025-10-23 00:00:00'),(87152,11,'GC00.1','Infectious cystitis','Y','2025-10-23 00:00:00'),(87150,11,'9A01.3','Infectious blepharitis','Y','2025-10-23 00:00:00'),(87149,11,'1D03.Z','Infectious abscess of the central nervous system, site unspecified','Y','2025-10-23 00:00:00'),(87148,11,'1D03','Infectious abscess of the central nervous system','Y','2025-10-23 00:00:00'),(87147,11,'JA62.2','Infections of urethra in pregnancy','Y','2025-10-23 00:00:00'),(87145,11,'9A10.0','Infections of the lacrimal gland','Y','2025-10-23 00:00:00'),(87146,11,'EE12','Infections of the nail or perionychium','Y','2025-10-23 00:00:00'),(87144,11,'JA62.4','Infections of the genital tract in pregnancy','Y','2025-10-23 00:00:00'),(87143,11,'KA6Z','Infections of the fetus or newborn, unspecified','Y','2025-10-23 00:00:00'),(87142,11,'EG61','Infections of the anus or perianal skin','Y','2025-10-23 00:00:00'),(87141,11,'DB70.Z','Infections of the anal region, unspecified','Y','2025-10-23 00:00:00'),(87140,11,'DB70','Infections of the anal region','Y','2025-10-23 00:00:00'),(87139,11,'JA62.3','Infections of other parts of urinary tract in pregnancy','Y','2025-10-23 00:00:00'),(87138,11,'DA01.3','Infections of lips or oral mucosa','Y','2025-10-23 00:00:00'),(87137,11,'JA62.0','Infections of kidney in pregnancy','Y','2025-10-23 00:00:00'),(87136,11,'JA62.Y','Infections of genitourinary tract in pregnancy, other specified site','Y','2025-10-23 00:00:00'),(87135,11,'JA62','Infections of genitourinary tract in pregnancy','Y','2025-10-23 00:00:00'),(87134,11,'JB45.Z','Infections of breast associated with childbirth, unspecified','Y','2025-10-23 00:00:00'),(87133,11,'JB45','Infections of breast associated with childbirth','Y','2025-10-23 00:00:00'),(87132,11,'JA62.1','Infections of bladder in pregnancy','Y','2025-10-23 00:00:00'),(87131,11,'JB40.Z','Infections in the puerperium, unspecified','Y','2025-10-23 00:00:00'),(87130,11,'JB40','Infections in the puerperium','Y','2025-10-23 00:00:00'),(87129,11,'1E7Z','Infections due to poxvirus, unspecified','Y','2025-10-23 00:00:00'),(87128,11,'1A09.Y','Infections due to other Salmonella in other organs','Y','2025-10-23 00:00:00'),(87127,11,'1A09','Infections due to other Salmonella','Y','2025-10-23 00:00:00'),(87126,11,'1B21','Infections due to non-tuberculous mycobacteria','Y','2025-10-23 00:00:00'),(87125,11,'1C22','Infections due to Chlamydia psittaci','Y','2025-10-23 00:00:00'),(87124,11,'1A30','Infections due to Balantidium coli','Y','2025-10-23 00:00:00'),(87123,11,'9A96.2','Infection-associated anterior uveitis','Y','2025-10-23 00:00:00'),(87122,11,'1H0Z','Infection, unspecified','Y','2025-10-23 00:00:00'),(87121,11,'FA1Z','Infection related arthropathies, unspecified','Y','2025-10-23 00:00:00'),(87120,11,'FA90.Z','Infection of vertebra, unspecified','Y','2025-10-23 00:00:00'),(87119,11,'FA90.0','Infection of vertebra with no determinant','Y','2025-10-23 00:00:00'),(87118,11,'FA90.1','Infection of vertebra with determinants','Y','2025-10-23 00:00:00'),(87117,11,'FA90','Infection of vertebra','Y','2025-10-23 00:00:00'),(87116,11,'3B81.7Z','Infection of spleen, unspecified','Y','2025-10-23 00:00:00'),(87115,11,'3B81.7','Infection of spleen','Y','2025-10-23 00:00:00'),(87114,11,'JB40.1','Infection of obstetric surgical wound','Y','2025-10-23 00:00:00'),(87113,11,'FA91','Infection of intervertebral disc','Y','2025-10-23 00:00:00'),(87112,11,'JA62.Z','Infection of genitourinary tract in pregnancy, site unspecified','Y','2025-10-23 00:00:00'),(87111,11,'NE85.4','Infection of amputation stump','Y','2025-10-23 00:00:00'),(87110,11,'JA88.1','Infection of amniotic sac or membranes','Y','2025-10-23 00:00:00'),(87109,11,'GA32.2','Infection associated with medically assisted reproduction','Y','2025-10-23 00:00:00'),(87108,11,'NE83.1','Infection arising from device, implant or graft, not elsewhere classified','Y','2025-10-23 00:00:00'),(87107,11,'EE13.11','Infected ingrowing toenail','Y','2025-10-23 00:00:00'),(87106,11,'GB00.1','Infected hydrocele','Y','2025-10-23 00:00:00'),(87105,11,'XJ4PE','Infected fracture','Y','2025-10-23 00:00:00'),(87104,11,'EK70.00','Infected epidermoid cyst','Y','2025-10-23 00:00:00'),(87103,11,'3B81.6','Infarction of spleen','Y','2025-10-23 00:00:00'),(87102,11,'DB98.0','Infarction of liver','Y','2025-10-23 00:00:00'),(87101,11,'XH4ZM8','Infant-type hemispheric glioma','Y','2025-10-23 00:00:00'),(87100,11,'8B61.0','Infantile spinal muscular atrophy, Type I','Y','2025-10-23 00:00:00'),(87099,11,'8A62.0','Infantile spasms','Y','2025-10-23 00:00:00'),(87098,11,'EH40.0','Infantile seborrhoeic dermatitis','Y','2025-10-23 00:00:00'),(87097,11,'EA12','Infantile papular acrodermatitis','Y','2025-10-23 00:00:00'),(87096,11,'9B10.1Z','Infantile or juvenile cataract, unspecified','Y','2025-10-23 00:00:00'),(87095,11,'9B10.1','Infantile or juvenile cataract','Y','2025-10-23 00:00:00'),(87094,11,'EH40.1','Infantile napkin dermatoses','Y','2025-10-23 00:00:00'),(87093,11,'SE37','Infantile malnutrition disorder (TM1)','Y','2025-10-23 00:00:00'),(87092,11,'XH7BC6','Infantile fibrosarcoma','Y','2025-10-23 00:00:00'),(87091,11,'DD93.1','Infantile colic','Y','2025-10-23 00:00:00'),(87090,11,'EA80.0','Infantile atopic eczema','Y','2025-10-23 00:00:00'),(87089,11,'ED80.6','Infantile acne','Y','2025-10-23 00:00:00'),(87088,11,'SE3A','Infant stiffness disorder (TM1)','Y','2025-10-23 00:00:00'),(87087,11,'DD93.0','Infant regurgitation','Y','2025-10-23 00:00:00'),(87086,11,'XE7UT','Infant or child product, toy box or chest','Y','2025-10-23 00:00:00'),(87085,11,'XE5E1','Infant or child product, toy balloon','Y','2025-10-23 00:00:00'),(87084,11,'XE1X0','Infant or child product, play tent, tunnel, or other enclosure','Y','2025-10-23 00:00:00'),(87083,11,'XE2KV','Infant or child product, marble, bead','Y','2025-10-23 00:00:00'),(87081,11,'XE5FF','Infant or child product, flying toy','Y','2025-10-23 00:00:00'),(87082,11,'XE4HX','Infant or child product, inflatable toy','Y','2025-10-23 00:00:00'),(87080,11,'XE30M','Infant or child product, doll, doll accessory or part, stuffed toy','Y','2025-10-23 00:00:00'),(87079,11,'XE8RW','Infant or child product','Y','2025-10-23 00:00:00'),(87078,11,'SE3B','Infant limpness disorder (TM1)','Y','2025-10-23 00:00:00'),(87077,11,'DD93.2','Infant dyschezia','Y','2025-10-23 00:00:00'),(87076,11,'XT2C','Infancy','Y','2025-10-23 00:00:00'),(87075,11,'XE0N1','Industrial vacuum cleaner','Y','2025-10-23 00:00:00'),(87074,11,'XE7T4','Industrial or construction area','Y','2025-10-23 00:00:00'),(87073,11,'EB01','Inducible urticaria and angioedema','Y','2025-10-23 00:00:00'),(87072,11,'SA10','Inducible palpitation disorder (TM1)','Y','2025-10-23 00:00:00'),(87071,11,'JA00.14','Induced abortion, incomplete, without complication','Y','2025-10-23 00:00:00'),(87070,11,'JA00.13','Induced abortion, incomplete, with other or unspecified complications','Y','2025-10-23 00:00:00'),(87069,11,'JA00.10','Induced abortion, incomplete, complicated by genital tract or pelvic infection','Y','2025-10-23 00:00:00'),(87068,11,'JA00.12','Induced abortion, incomplete, complicated by embolism','Y','2025-10-23 00:00:00'),(87067,11,'JA00.11','Induced abortion, incomplete, complicated by delayed or excessive haemorrhage','Y','2025-10-23 00:00:00'),(87066,11,'JA00.19','Induced abortion, complete or unspecified, without complication','Y','2025-10-23 00:00:00'),(87065,11,'JA00.18','Induced abortion, complete or unspecified, with other complication','Y','2025-10-23 00:00:00'),(87064,11,'JA00.15','Induced abortion, complete or unspecified, complicated by genital tract or pelvic infection','Y','2025-10-23 00:00:00'),(87063,11,'JA00.17','Induced abortion, complete or unspecified, complicated by embolism','Y','2025-10-23 00:00:00'),(87062,11,'JA00.16','Induced abortion, complete or unspecified, complicated by delayed or excessive haemorrhage','Y','2025-10-23 00:00:00'),(87061,11,'JA00.1','Induced abortion','Y','2025-10-23 00:00:00'),(87060,11,'XM3L37','Indoramin','Y','2025-10-23 00:00:00'),(87059,11,'XM3G14','Indoprofen','Y','2025-10-23 00:00:00'),(87058,11,'XE1CY','Indoor sporting hall','Y','2025-10-23 00:00:00'),(87057,11,'XM7497','Indometacin','Y','2025-10-23 00:00:00'),(87056,11,'XH0B02','Indolent T-cell lymphoproliferative disorder of gastrointestinal tract','Y','2025-10-23 00:00:00'),(87055,11,'XH2Y59','Indolent systemic mastocytosis','Y','2025-10-23 00:00:00'),(87053,11,'XM2818','Indocyanine green','Y','2025-10-23 00:00:00'),(87054,11,'XM1QY7','Indole derivatives','Y','2025-10-23 00:00:00'),(87052,11,'XM5G01','Indobufen','Y','2025-10-23 00:00:00'),(87051,11,'XE6W9','Individual water sports','Y','2025-10-23 00:00:00'),(87050,11,'QA16','Individual psychological or behavioural counselling','Y','2025-10-23 00:00:00'),(87049,11,'XE3L1','Individual athletic activities','Y','2025-10-23 00:00:00'),(87048,11,'XM1VT6','Indinavir','Y','2025-10-23 00:00:00'),(87047,11,'XM9RK1','Indigo carmine','Y','2025-10-23 00:00:00'),(87046,11,'XM67X5','Indian red scorpion venom','Y','2025-10-23 00:00:00'),(87045,11,'XM5J22','Indian krait snake venom','Y','2025-10-23 00:00:00'),(87044,11,'XM5WR8','Indian hemp','Y','2025-10-23 00:00:00'),(87043,11,'XM6052','Indian cobra snake venom','Y','2025-10-23 00:00:00'),(87042,11,'XA40D9','Index fingernail','Y','2025-10-23 00:00:00'),(87041,11,'XA6NZ0','Index finger','Y','2025-10-23 00:00:00'),(87040,11,'XH3ZM0','Indeterminate dendritic cell tumour','Y','2025-10-23 00:00:00'),(87039,11,'DD72','Indeterminate colitis','Y','2025-10-23 00:00:00'),(87038,11,'2B31.6','Indeterminate cell histiocytosis','Y','2025-10-23 00:00:00'),(87037,11,'XM7V19','Indenolol','Y','2025-10-23 00:00:00'),(87036,11,'XM4Z97','Indendione (derivatives)','Y','2025-10-23 00:00:00'),(87035,11,'MB28.6','Indecisiveness','Y','2025-10-23 00:00:00'),(87034,11,'XM49L3','Indapamide','Y','2025-10-23 00:00:00'),(87033,11,'XM38V8','Indandione (derivatives)','Y','2025-10-23 00:00:00'),(87032,11,'XM0H59','Indanazoline','Y','2025-10-23 00:00:00'),(87031,11,'XM5R26','Indalpine','Y','2025-10-23 00:00:00'),(87030,11,'XE35S','Indadequate user interface','Y','2025-10-23 00:00:00'),(87029,11,'XM51C1','Indacaterol','Y','2025-10-23 00:00:00'),(87028,11,'XA4D04','Incus','Y','2025-10-23 00:00:00'),(87027,11,'MB23.C','Increased sociability','Y','2025-10-23 00:00:00'),(87026,11,'XE7QR','Increased sensitivity','Y','2025-10-23 00:00:00'),(87025,11,'5A42','Increased secretion of glucagon','Y','2025-10-23 00:00:00'),(87024,11,'XE7BN','Increased pump speed','Y','2025-10-23 00:00:00'),(87023,11,'MB22.6','Increased libido','Y','2025-10-23 00:00:00'),(87022,11,'8D60.Z','Increased intracranial pressure, unspecified','Y','2025-10-23 00:00:00'),(87021,11,'8D60','Increased intracranial pressure','Y','2025-10-23 00:00:00'),(87020,11,'MB22.5','Increased goal-directed activity','Y','2025-10-23 00:00:00'),(87019,11,'MB22.4','Increased energy','Y','2025-10-23 00:00:00'),(87018,11,'8D64.00','Increased cerebrospinal fluid production','Y','2025-10-23 00:00:00'),(87017,11,'MG43.9','Increased appetite','Y','2025-10-23 00:00:00'),(87016,11,'XE35T','Increase in suction','Y','2025-10-23 00:00:00'),(87015,11,'XE6S6','Increase in pressure of device','Y','2025-10-23 00:00:00'),(87014,11,'XE4BB','Incorrect, inadequate or imprecise result or readings','Y','2025-10-23 00:00:00'),(87013,11,'PL13.52','Incorrect timing of drug or medicament, as mode of injury','Y','2025-10-23 00:00:00'),(87012,11,'PL13.3','Incorrect substance, as mode of injury or harm','Y','2025-10-23 00:00:00'),(87011,11,'QA72','Incorrect substance without injury or harm','Y','2025-10-23 00:00:00'),(87010,11,'PL13.50','Incorrect route of drug or medicament, as mode of injury','Y','2025-10-23 00:00:00'),(87009,11,'QA73','Incorrect route of administration without injury or harm','Y','2025-10-23 00:00:00'),(87008,11,'PL13.51','Incorrect rate of drug or medicament, as mode of injury','Y','2025-10-23 00:00:00'),(87007,11,'XE3XG','Incorrect measurement','Y','2025-10-23 00:00:00'),(87006,11,'XE4MR','Incorrect labelling or instructions for use of device identified','Y','2025-10-23 00:00:00'),(87005,11,'XE28F','Incorrect interpretation of signal','Y','2025-10-23 00:00:00'),(87004,11,'XE2QD','Incorrect interpretation of results or data problem identified','Y','2025-10-23 00:00:00'),(87003,11,'PL13.53','Incorrect duration of drug or medicament, as mode of injury','Y','2025-10-23 00:00:00'),(87002,11,'QA75','Incorrect duration of administration or course of therapy without injury or harm','Y','2025-10-23 00:00:00'),(87001,11,'XE1EJ','Incorrect dimension of device identified','Y','2025-10-23 00:00:00'),(87000,11,'QA89','Incorrect diagnosis without injury or harm','Y','2025-10-23 00:00:00'),(86999,11,'PL14.9','Incorrect diagnosis','Y','2025-10-23 00:00:00'),(86998,11,'XE1X4','Incorrect data definition in device identified','Y','2025-10-23 00:00:00'),(86997,11,'XE62E','Incorrect algorithm in device identified','Y','2025-10-23 00:00:00'),(86996,11,'PL13.5Z','Incorrect administration of drug or medicament, as mode of injury, unspecified','Y','2025-10-23 00:00:00'),(86994,11,'LD27.00','Incontinentia pigmenti','Y','2025-10-23 00:00:00'),(86995,11,'PL13.5','Incorrect administration of drug or medicament, as mode of injury','Y','2025-10-23 00:00:00'),(86993,11,'XS1H','Incomplete vocal cord paralysis','Y','2025-10-23 00:00:00'),(86992,11,'GC40.30','Incomplete uterovaginal prolapse','Y','2025-10-23 00:00:00'),(86991,11,'GC40.32','Incomplete uterine prolapse with posterior vaginal wall prolapse','Y','2025-10-23 00:00:00'),(86990,11,'GC40.31','Incomplete uterine prolapse with anterior vaginal wall prolapse','Y','2025-10-23 00:00:00'),(86989,11,'GC40.33','Incomplete uterine prolapse with anterior and posterior vaginal wall prolapse','Y','2025-10-23 00:00:00'),(86988,11,'GC40.10','Incomplete posterior vaginal wall prolapse','Y','2025-10-23 00:00:00'),(86987,11,'JA02.1','Incomplete or partial hydatidiform mole','Y','2025-10-23 00:00:00'),(86986,11,'XE5YH','Incomplete or missing packaging','Y','2025-10-23 00:00:00'),(86985,11,'XE63F','Incomplete or inadequate priming','Y','2025-10-23 00:00:00'),(86984,11,'XE4C0','Incomplete or inadequate connecction','Y','2025-10-23 00:00:00'),(86983,11,'NA07.01','Incomplete loss of consciousness without amnesia','Y','2025-10-23 00:00:00'),(86982,11,'NA07.00','Incomplete loss of consciousness with amnesia','Y','2025-10-23 00:00:00'),(86981,11,'NB63.1','Incomplete injury of sacral spinal cord','Y','2025-10-23 00:00:00'),(86980,11,'XK06','Incomplete distribution','Y','2025-10-23 00:00:00'),(86979,11,'XE5AN','Incomplete device returned','Y','2025-10-23 00:00:00'),(86978,11,'ME07.1','Incomplete defaecation','Y','2025-10-23 00:00:00'),(86977,11,'XE3UJ','Incomplete coaptation','Y','2025-10-23 00:00:00'),(86976,11,'GC40.20','Incomplete apical vaginal wall prolapse','Y','2025-10-23 00:00:00'),(86975,11,'GC40.00','Incomplete anterior vaginal wall prolapse','Y','2025-10-23 00:00:00'),(86974,11,'GA15.6','Incompetence of cervix uteri','Y','2025-10-23 00:00:00'),(86973,11,'XE4EB','Incompatible material identified in device','Y','2025-10-23 00:00:00'),(86972,11,'XE1SP','Incompatible component or accessory of device identified','Y','2025-10-23 00:00:00'),(86971,11,'XE3U9','Income-related or financial problem','Y','2025-10-23 00:00:00'),(86970,11,'MB25.03','Incoherence','Y','2025-10-23 00:00:00'),(86969,11,'4A41.2Z','Inclusion body myopathy, unspecified','Y','2025-10-23 00:00:00'),(86968,11,'4A41.2','Inclusion body myopathy','Y','2025-10-23 00:00:00'),(86967,11,'XA3W87','Incisor branch of the Inferior alveolar artery','Y','2025-10-23 00:00:00'),(86966,11,'DD56','Incisional hernia','Y','2025-10-23 00:00:00'),(86965,11,'XA3W20','Incisal surface of tooth','Y','2025-10-23 00:00:00'),(86964,11,'5C52.1Z','Inborn errors of sterol metabolism, unspecified','Y','2025-10-23 00:00:00'),(86963,11,'5C52.1','Inborn errors of sterol metabolism','Y','2025-10-23 00:00:00'),(86962,11,'5C55.Z','Inborn errors of purine, pyrimidine or nucleotide metabolism, unspecified','Y','2025-10-23 00:00:00'),(86961,11,'5C55','Inborn errors of purine, pyrimidine or nucleotide metabolism','Y','2025-10-23 00:00:00'),(86960,11,'5C58.Z','Inborn errors of porphyrin or heme metabolism, unspecified','Y','2025-10-23 00:00:00'),(86959,11,'5C58','Inborn errors of porphyrin or heme metabolism','Y','2025-10-23 00:00:00'),(86958,11,'5C59.Z','Inborn errors of neurotransmitter metabolism, unspecified','Y','2025-10-23 00:00:00'),(86957,11,'5C59','Inborn errors of neurotransmitter metabolism','Y','2025-10-23 00:00:00'),(86956,11,'5C5Z','Inborn errors of metabolism, unspecified','Y','2025-10-23 00:00:00'),(86955,11,'5C52.Z','Inborn errors of lipid metabolism, unspecified','Y','2025-10-23 00:00:00'),(86954,11,'5C52','Inborn errors of lipid metabolism','Y','2025-10-23 00:00:00'),(86953,11,'5C54','Inborn errors of glycosylation or other specified protein modification','Y','2025-10-23 00:00:00'),(86952,11,'5C52.0Z','Inborn errors of fatty acid oxidation or ketone body metabolism, unspecified','Y','2025-10-23 00:00:00'),(86951,11,'5C52.0','Inborn errors of fatty acid oxidation or ketone body metabolism','Y','2025-10-23 00:00:00'),(86950,11,'5C53.Z','Inborn errors of energy metabolism, unspecified','Y','2025-10-23 00:00:00'),(86949,11,'5C53','Inborn errors of energy metabolism','Y','2025-10-23 00:00:00'),(86948,11,'5C51.Z','Inborn errors of carbohydrate metabolism, unspecified','Y','2025-10-23 00:00:00'),(86947,11,'5C51','Inborn errors of carbohydrate metabolism','Y','2025-10-23 00:00:00'),(86946,11,'5C50.Z','Inborn errors of amino acid or other organic acid metabolism, unspecified','Y','2025-10-23 00:00:00'),(86945,11,'5C50','Inborn errors of amino acid or other organic acid metabolism','Y','2025-10-23 00:00:00'),(86944,11,'XE487','Inaudible or unclear audible prompt or feedback','Y','2025-10-23 00:00:00'),(86943,11,'XE2LL','Inappropriate waveform','Y','2025-10-23 00:00:00'),(86942,11,'XE6CE','Inappropriate tactile prompt or feedback','Y','2025-10-23 00:00:00'),(86941,11,'PL13.A','Inappropriate stoppage or discontinuation of drug, as mode of injury or harm','Y','2025-10-23 00:00:00'),(86940,11,'QA7A','Inappropriate stoppage or discontinuation of drug without injury or harm','Y','2025-10-23 00:00:00'),(86939,11,'BC81.6','Inappropriate sinus tachycardia','Y','2025-10-23 00:00:00'),(86937,11,'9C85.02','Inappropriate saccades','Y','2025-10-23 00:00:00'),(86938,11,'XE6T0','Inappropriate shock','Y','2025-10-23 00:00:00'),(86936,11,'QE95','Inappropriate parental pressure or other abnormal qualities of upbringing','Y','2025-10-23 00:00:00'),(86934,11,'XE2WT','Inappropriate material identified in device','Y','2025-10-23 00:00:00'),(86935,11,'XE2T4','Inappropriate or unexpected reset','Y','2025-10-23 00:00:00'),(86932,11,'XE0WU','Inappropriate audible prompt or feedback','Y','2025-10-23 00:00:00'),(86933,11,'NE82.10','Inappropriate implantable cardioverter defibrillator shock','Y','2025-10-23 00:00:00'),(86930,11,'XE4UN','Inadequate ultra filtration','Y','2025-10-23 00:00:00'),(86931,11,'MB24.64','Inappropriate affect','Y','2025-10-23 00:00:00'),(86929,11,'QE50.6','Inadequate social skills','Y','2025-10-23 00:00:00'),(86928,11,'XE60T','Inadequate physicochemical properties identified in device','Y','2025-10-23 00:00:00'),(86927,11,'QE90','Inadequate parental supervision or control','Y','2025-10-23 00:00:00'),(86926,11,'XE22G','Inadequate or insufficient training','Y','2025-10-23 00:00:00'),(86925,11,'XE7Y7','Inadequate or incorrect instructions for maintenance of device identified','Y','2025-10-23 00:00:00'),(86924,11,'XE3PV','Inadequate labelling or instructions for use of device identified','Y','2025-10-23 00:00:00'),(86923,11,'XE17P','Inadequate instructions for non-healthcare professional','Y','2025-10-23 00:00:00'),(86922,11,'XE13S','Inadequate instructions for healthcare professional','Y','2025-10-23 00:00:00'),(86921,11,'XE2ME','Inadequate immunity of device','Y','2025-10-23 00:00:00'),(86920,11,'QD71.1','Inadequate housing','Y','2025-10-23 00:00:00'),(86919,11,'QD61','Inadequate food','Y','2025-10-23 00:00:00'),(86918,11,'XE3VH','Inadequate filtration process','Y','2025-10-23 00:00:00'),(86917,11,'QE70.0','Inadequate family support','Y','2025-10-23 00:00:00'),(86916,11,'XE7A1','Inadequate cooling of device problem identified','Y','2025-10-23 00:00:00'),(86915,11,'XE584','Inadequacy of device shape or size','Y','2025-10-23 00:00:00'),(86913,11,'XE44F','Inaccurate flow rate','Y','2025-10-23 00:00:00'),(86914,11,'XE47M','Inaccurate synchronization','Y','2025-10-23 00:00:00'),(86912,11,'XE667','Inaccurate delivery','Y','2025-10-23 00:00:00'),(86911,11,'XE8L2','Inability to irrigate','Y','2025-10-23 00:00:00'),(86910,11,'XE3T4','Inability to auto-fill','Y','2025-10-23 00:00:00'),(86909,11,'XH8EM2','In situ mantle cell neoplasia','Y','2025-10-23 00:00:00'),(86908,11,'XH4L38','In situ follicular neoplasia','Y','2025-10-23 00:00:00'),(86907,11,'MB28.5','Impulsivity','Y','2025-10-23 00:00:00'),(86906,11,'6C4F.73','Impulse control syndrome induced by multiple specified psychoactive substances','Y','2025-10-23 00:00:00'),(86905,11,'6C7Z','Impulse control disorders, unspecified','Y','2025-10-23 00:00:00'),(86904,11,'6C4G.73','Impulse control disorder induced by unknown or unspecified psychoactive substance','Y','2025-10-23 00:00:00'),(86903,11,'6C4E.73','Impulse control disorder induced by other specified psychoactive substance','Y','2025-10-23 00:00:00'),(86902,11,'XE2XZ','Improper or incorrect procedure or method','Y','2025-10-23 00:00:00'),(86901,11,'XE1H4','Improper flow or infusion','Y','2025-10-23 00:00:00'),(86900,11,'XE6E7','Improper chemical reaction','Y','2025-10-23 00:00:00'),(86898,11,'LD46','Imprinting errors','Y','2025-10-23 00:00:00'),(86899,11,'LD46.Z','Imprinting errors, unspecified','Y','2025-10-23 00:00:00'),(86897,11,'XE7H5','Imprecision','Y','2025-10-23 00:00:00'),(86896,11,'SB0B','Impotence disorder (TM1)','Y','2025-10-23 00:00:00'),(86895,11,'FB53.2','Impingement syndrome of shoulder','Y','2025-10-23 00:00:00'),(86893,11,'1B72.Z','Impetigo, unspecified','Y','2025-10-23 00:00:00'),(86894,11,'FA34.5','Impingement syndrome of hip','Y','2025-10-23 00:00:00'),(86892,11,'SB31','Impetigo disorder (TM1)','Y','2025-10-23 00:00:00'),(86890,11,'LB42.4','Imperforate hymen','Y','2025-10-23 00:00:00'),(86891,11,'1B72','Impetigo','Y','2025-10-23 00:00:00'),(86889,11,'XE4NN','Impeller component of medical device','Y','2025-10-23 00:00:00'),(86888,11,'XE546','Impedance problem with device identified','Y','2025-10-23 00:00:00'),(86887,11,'XE6ZB','Impedance problem','Y','2025-10-23 00:00:00'),(86886,11,'9D7Z','Impairment of visual functions, unspecified','Y','2025-10-23 00:00:00'),(86885,11,'9D41','Impairment of visual field','Y','2025-10-23 00:00:00'),(86884,11,'9D96','Impairment of uncorrected visual acuity','Y','2025-10-23 00:00:00'),(86883,11,'9D94','Impairment of presenting visual acuity','Y','2025-10-23 00:00:00'),(86882,11,'9D45','Impairment of light sensitivity','Y','2025-10-23 00:00:00'),(86881,11,'MC21.Z','Impairment of electrophysiological functions, unspecified','Y','2025-10-23 00:00:00'),(86880,11,'MC21','Impairment of electrophysiological functions','Y','2025-10-23 00:00:00'),(86879,11,'9D43','Impairment of contrast vision','Y','2025-10-23 00:00:00'),(86878,11,'9D44','Impairment of colour vision','Y','2025-10-23 00:00:00'),(86877,11,'9D46','Impairment of binocular functions','Y','2025-10-23 00:00:00'),(86876,11,'9D95','Impairment of best corrected visual acuity','Y','2025-10-23 00:00:00'),(86875,11,'MB21.8','Impaired judgment','Y','2025-10-23 00:00:00'),(86874,11,'5A40.1','Impaired glucose tolerance','Y','2025-10-23 00:00:00'),(86873,11,'5A40.0','Impaired fasting glucose','Y','2025-10-23 00:00:00'),(86872,11,'MB21.7','Impaired executive functioning','Y','2025-10-23 00:00:00'),(86871,11,'MB21.6','Impaired abstract thinking','Y','2025-10-23 00:00:00'),(86870,11,'DB30.3','Impaction of large intestine','Y','2025-10-23 00:00:00'),(86869,11,'DA07.8','Impacted teeth','Y','2025-10-23 00:00:00'),(86868,11,'XJ7AT','Impacted fracture','Y','2025-10-23 00:00:00'),(86867,11,'AA42','Impacted cerumen','Y','2025-10-23 00:00:00'),(86866,11,'XM6V17','Imolamine','Y','2025-10-23 00:00:00'),(86865,11,'XM1079','Immunosuppressive drug','Y','2025-10-23 00:00:00'),(86864,11,'XH3SS7','Immunoproliferative small intestinal disease','Y','2025-10-23 00:00:00'),(86863,11,'XH4KF3','Immunoproliferative disease, NOS','Y','2025-10-23 00:00:00'),(86862,11,'4A01.32','Immuno-osseous dysplasia','Y','2025-10-23 00:00:00'),(86861,11,'MA14','Immunological findings in blood, blood-forming organs, or the immune system','Y','2025-10-23 00:00:00'),(86860,11,'XM26U5','Immunoglobulins, normal human, intravenous','Y','2025-10-23 00:00:00'),(86859,11,'XM3H32','Immunoglobulins, normal human, extravascular','Y','2025-10-23 00:00:00'),(86858,11,'XM0AQ7','Immunoglobulins, normal human','Y','2025-10-23 00:00:00'),(86857,11,'XM1RS8','Immunoglobulins','Y','2025-10-23 00:00:00'),(86856,11,'XM1BS2','Immunoglobulin not elsewhere classified','Y','2025-10-23 00:00:00'),(86855,11,'XH2WA6','Immunoglobulin deposition disease','Y','2025-10-23 00:00:00'),(86854,11,'2B32.Z','Immunodeficiency-associated lymphoproliferative disorders, unspecified','Y','2025-10-23 00:00:00'),(86853,11,'2B32','Immunodeficiency-associated lymphoproliferative disorders','Y','2025-10-23 00:00:00'),(86852,11,'4A00.3','Immunodeficiency with natural-killer cell deficiency','Y','2025-10-23 00:00:00'),(86851,11,'4A00.13','Immunodeficiency with factor D anomaly','Y','2025-10-23 00:00:00'),(86850,11,'4A00.12','Immunodeficiency with factor B deficiency','Y','2025-10-23 00:00:00'),(86849,11,'4A00.10','Immunodeficiency with an early component of complement deficiency','Y','2025-10-23 00:00:00'),(86848,11,'4A00.11','Immunodeficiency with a late component of complement deficiency','Y','2025-10-23 00:00:00'),(86847,11,'4A01.30','Immunodeficiency due to defects of the thymus','Y','2025-10-23 00:00:00'),(86846,11,'4A01.05','Immunodeficiencies with severe reduction in serum IgG or IgA with normal or elevated IgM and normal numbers of B-cells','Y','2025-10-23 00:00:00'),(86845,11,'4A01.01','Immunodeficiencies with severe reduction in at least two serum immunoglobulin isotypes with normal or low numbers of B cells','Y','2025-10-23 00:00:00'),(86844,11,'4A01.0Z','Immunodeficiencies with predominantly antibody defects, unspecified','Y','2025-10-23 00:00:00'),(86843,11,'4A01.0','Immunodeficiencies with predominantly antibody defects','Y','2025-10-23 00:00:00'),(86842,11,'4A01.04','Immunodeficiencies with isotype or light chain deficiencies with normal number of B cells','Y','2025-10-23 00:00:00'),(86841,11,'XH43K4','Immunocytoma','Y','2025-10-23 00:00:00'),(86839,11,'XD8NE7','Immunoabsorption filters and columns','Y','2025-10-23 00:00:00'),(86840,11,'XM9D43','Immunocyanin','Y','2025-10-23 00:00:00'),(86837,11,'XD6RX5','Immunoabsorption columns','Y','2025-10-23 00:00:00'),(86838,11,'XD0TG6','Immunoabsorption filters','Y','2025-10-23 00:00:00'),(86836,11,'QC04.Z','Immunization not carried out for unspecified reason','Y','2025-10-23 00:00:00'),(86835,11,'QC04.Y','Immunization not carried out for other reasons','Y','2025-10-23 00:00:00'),(86834,11,'QC04.0','Immunization not carried out due to patient having had the disease','Y','2025-10-23 00:00:00'),(86833,11,'QC04.7','Immunization not carried out due to lack of availability','Y','2025-10-23 00:00:00'),(86832,11,'QC04.5','Immunization not carried out because of patient refusal','Y','2025-10-23 00:00:00'),(86831,11,'QC04.4','Immunization not carried out because of patient allergy to vaccine or component','Y','2025-10-23 00:00:00'),(86830,11,'QC04.3','Immunization not carried out because of immune-compromised state of patient','Y','2025-10-23 00:00:00'),(86829,11,'QC04.2','Immunization not carried out because of chronic illness or condition of patient','Y','2025-10-23 00:00:00'),(86828,11,'QC04.6','Immunization not carried out because of caregiver refusal','Y','2025-10-23 00:00:00'),(86827,11,'QC04.1','Immunization not carried out because of acute illness','Y','2025-10-23 00:00:00'),(86826,11,'QC04','Immunization not carried out','Y','2025-10-23 00:00:00'),(86825,11,'3B64.10','Immune thrombocytopenic purpura','Y','2025-10-23 00:00:00'),(86823,11,'XM6VF9','Immune sera','Y','2025-10-23 00:00:00'),(86824,11,'4B0Z','Immune system disorders involving white cell lineages, unspecified','Y','2025-10-23 00:00:00'),(86822,11,'4B23','Immune reconstitution inflammatory syndrome','Y','2025-10-23 00:00:00'),(86821,11,'8D88.2','Immune mediated autonomic neuropathy','Y','2025-10-23 00:00:00'),(86820,11,'4A01.20','Immune dysregulation syndromes with hypopigmentation','Y','2025-10-23 00:00:00'),(86819,11,'4A01.22','Immune dysregulation syndromes presenting primarily with lymphoproliferation','Y','2025-10-23 00:00:00'),(86818,11,'4A01.21','Immune dysregulation syndromes presenting primarily with autoimmunity','Y','2025-10-23 00:00:00'),(86817,11,'4A44.9Z','Immune complex small vessel vasculitis, unspecified','Y','2025-10-23 00:00:00'),(86816,11,'4A44.9','Immune complex small vessel vasculitis','Y','2025-10-23 00:00:00'),(86815,11,'FB32.3','Immobility syndrome','Y','2025-10-23 00:00:00'),(86814,11,'MB44.3','Immobility','Y','2025-10-23 00:00:00'),(86813,11,'PH1Z','Immersion, submersion or falling into water with undetermined intent, unspecified','Y','2025-10-23 00:00:00'),(86812,11,'NF03.1','Immersion hand or foot','Y','2025-10-23 00:00:00'),(86811,11,'XT46','Immediate onset','Y','2025-10-23 00:00:00'),(86810,11,'XH0N49','Immature teratoma, malignant','Y','2025-10-23 00:00:00'),(86809,11,'XH5PC3','Immature teratoma of thyroid','Y','2025-10-23 00:00:00'),(86808,11,'XH2KP9','Immature teratoma of the thymus','Y','2025-10-23 00:00:00'),(86807,11,'XH5MG2','Immature teratoma of the lung','Y','2025-10-23 00:00:00'),(86806,11,'LB16.2','Immature ganglionosis of large intestine','Y','2025-10-23 00:00:00'),(86804,11,'XM0CH6','Imiquimod','Y','2025-10-23 00:00:00'),(86805,11,'XM09N4','Imlifidase','Y','2025-10-23 00:00:00'),(86802,11,'XM6PZ9','Imipramine','Y','2025-10-23 00:00:00'),(86803,11,'XM4SZ9','Imipramine oxide','Y','2025-10-23 00:00:00'),(86800,11,'XM7LA4','Imipenem','Y','2025-10-23 00:00:00'),(86801,11,'XM12K6','Imipenem and cilastatin','Y','2025-10-23 00:00:00'),(86798,11,'XM7EN2','Imiglucerase','Y','2025-10-23 00:00:00'),(86799,11,'XM6DJ2','Iminostilbene','Y','2025-10-23 00:00:00'),(86797,11,'XM2298','Imidazoline receptor agonists','Y','2025-10-23 00:00:00'),(86795,11,'XM5TQ9','Imidazolidinyl urea','Y','2025-10-23 00:00:00'),(86796,11,'XM0B82','Imidazoline derivatives','Y','2025-10-23 00:00:00'),(86794,11,'XM5UH8','Imidazole-4-carboxamide','Y','2025-10-23 00:00:00'),(86793,11,'XM5UF9','Imidazole salicylate','Y','2025-10-23 00:00:00'),(86792,11,'XM2SD6','Imidazole derivatives','Y','2025-10-23 00:00:00'),(86791,11,'XM4MG6','Imidapril','Y','2025-10-23 00:00:00'),(86790,11,'XM93G5','Imeglimin','Y','2025-10-23 00:00:00'),(86789,11,'XM5W30','Imatinib','Y','2025-10-23 00:00:00'),(86788,11,'XE7NH','Imager component of medical device','Y','2025-10-23 00:00:00'),(86787,11,'XE2V3','Image orientation incorrect','Y','2025-10-23 00:00:00'),(86786,11,'XE7T8','Image display error or artifact','Y','2025-10-23 00:00:00'),(86785,11,'XE1HK','Image artifact identified in device','Y','2025-10-23 00:00:00'),(86783,11,'XM00R9','Iloprost','Y','2025-10-23 00:00:00'),(86784,11,'XN4P4','Iltovirus','Y','2025-10-23 00:00:00'),(86781,11,'MB27.4','Illusions','Y','2025-10-23 00:00:00'),(86782,11,'XM0FR9','Iloperidone','Y','2025-10-23 00:00:00'),(86780,11,'QC20.1','Illness problem with child','Y','2025-10-23 00:00:00'),(86778,11,'XA5FT5','Ilium','Y','2025-10-23 00:00:00'),(86779,11,'XE91G','Illegal acquisition or attempted illegal acquisition of money or property','Y','2025-10-23 00:00:00'),(86777,11,'XA6TZ6','Iliotrochanteric ligament','Y','2025-10-23 00:00:00'),(86776,11,'XA6KC6','Iliotibial ligament','Y','2025-10-23 00:00:00'),(86775,11,'FB54.1','Iliotibial band syndrome','Y','2025-10-23 00:00:00'),(86774,11,'XA9X28','Iliolumbar vein','Y','2025-10-23 00:00:00'),(86773,11,'XA4356','Iliolumbar ligament','Y','2025-10-23 00:00:00'),(86772,11,'XA7D46','Iliolumbar artery','Y','2025-10-23 00:00:00'),(86771,11,'XA5Q50','Ilioinguinal nerve','Y','2025-10-23 00:00:00'),(86770,11,'XA8T30','Iliohypogastric nerve','Y','2025-10-23 00:00:00'),(86769,11,'NC73.10','Iliofemoral ligament strain or sprain of hip','Y','2025-10-23 00:00:00'),(86768,11,'XA1F23','Iliofemoral ligament','Y','2025-10-23 00:00:00'),(86767,11,'XA48X7','Iliocostalis tendon','Y','2025-10-23 00:00:00'),(86766,11,'XA19S9','Iliocostalis muscle','Y','2025-10-23 00:00:00'),(86765,11,'XA6QW7','Iliococcygeus tendon','Y','2025-10-23 00:00:00'),(86764,11,'XA3YC6','Iliococcygeus muscle','Y','2025-10-23 00:00:00'),(86763,11,'XA8FT1','Iliacus tendon','Y','2025-10-23 00:00:00'),(86762,11,'XA0200','Iliacus muscle','Y','2025-10-23 00:00:00'),(86761,11,'BD71.3','Iliac vein thrombosis','Y','2025-10-23 00:00:00'),(86760,11,'XA03Q4','Iliac vein','Y','2025-10-23 00:00:00'),(86759,11,'XA0NH8','Iliac region','Y','2025-10-23 00:00:00'),(86758,11,'XA50T5','Iliac lymph node','Y','2025-10-23 00:00:00'),(86757,11,'FB54.0','Iliac crest spur','Y','2025-10-23 00:00:00'),(86756,11,'XA4743','Iliac crest','Y','2025-10-23 00:00:00'),(86755,11,'XA53K4','Iliac circumflex lymph node','Y','2025-10-23 00:00:00'),(86754,11,'XA5GV0','Iliac branch of the iliolumbar artery','Y','2025-10-23 00:00:00'),(86753,11,'BD53.2','Iliac artery arteriopathy','Y','2025-10-23 00:00:00'),(86752,11,'XA83D6','Iliac artery','Y','2025-10-23 00:00:00'),(86751,11,'XM3EA9','Ilex plant','Y','2025-10-23 00:00:00'),(86750,11,'XA0QT6','Ileum','Y','2025-10-23 00:00:00'),(86749,11,'XM5MV9','Iletin','Y','2025-10-23 00:00:00'),(86748,11,'XA95M2','Ileocolic vein','Y','2025-10-23 00:00:00'),(86747,11,'XA69J6','Ileocolic lymph node','Y','2025-10-23 00:00:00'),(86746,11,'XA2Z43','Ileocolic artery','Y','2025-10-23 00:00:00'),(86745,11,'XA66B8','Ileal ileocolic lymph node','Y','2025-10-23 00:00:00'),(86744,11,'XH16T1','IgM monoclonal gammopathy of undetermined significance','Y','2025-10-23 00:00:00'),(86743,11,'4A43.0','IgG4 related disease','Y','2025-10-23 00:00:00'),(86742,11,'DA94.20','IgE mediated allergic enteritis of small intestine','Y','2025-10-23 00:00:00'),(86741,11,'4A44.92','IgA vasculitis','Y','2025-10-23 00:00:00'),(86740,11,'XM5V29','Ifrita bird toxin','Y','2025-10-23 00:00:00'),(86739,11,'XM7FY4','Ifosfamide','Y','2025-10-23 00:00:00'),(86738,11,'XM86J1','Ifenprodil','Y','2025-10-23 00:00:00'),(86736,11,'XM3Z98','Idursulfase','Y','2025-10-23 00:00:00'),(86737,11,'XM98F5','Idursulfase beta','Y','2025-10-23 00:00:00'),(86735,11,'XM2NU3','Idrocilamide','Y','2025-10-23 00:00:00'),(86734,11,'XM0K16','Idoxuridine topical','Y','2025-10-23 00:00:00'),(86733,11,'XM2GP5','Idoxuridine','Y','2025-10-23 00:00:00'),(86732,11,'BC65.4','Idiopathic ventricular fibrillation','Y','2025-10-23 00:00:00'),(86731,11,'8D66.0','Idiopathic syringomyelia','Y','2025-10-23 00:00:00'),(86730,11,'FB32.20','Idiopathic rhabdomyolysis','Y','2025-10-23 00:00:00'),(86729,11,'CB04.30','Idiopathic pulmonary haemosiderosis','Y','2025-10-23 00:00:00'),(86728,11,'CB03.4','Idiopathic pulmonary fibrosis','Y','2025-10-23 00:00:00'),(86727,11,'8C00','Idiopathic progressive neuropathy','Y','2025-10-23 00:00:00'),(86726,11,'DB98.70','Idiopathic portal hypertension','Y','2025-10-23 00:00:00'),(86724,11,'CB03','Idiopathic interstitial pneumonitis','Y','2025-10-23 00:00:00'),(86725,11,'CB03.Z','Idiopathic interstitial pneumonitis, unspecified','Y','2025-10-23 00:00:00'),(86723,11,'4A41.Z','Idiopathic inflammatory myopathy, unspecified','Y','2025-10-23 00:00:00'),(86722,11,'4A41','Idiopathic inflammatory myopathy','Y','2025-10-23 00:00:00'),(86721,11,'BA20','Idiopathic hypotension','Y','2025-10-23 00:00:00'),(86720,11,'5A50.00','Idiopathic hypoparathyroidism','Y','2025-10-23 00:00:00'),(86719,11,'8E41.1','Idiopathic hypertrophic pachymeningitis','Y','2025-10-23 00:00:00'),(86718,11,'7A21','Idiopathic hypersomnia','Y','2025-10-23 00:00:00'),(86717,11,'DB97.0','Idiopathic granulomatous hepatitis','Y','2025-10-23 00:00:00'),(86716,11,'CB02.1Z','Idiopathic eosinophilic pneumonitis, unspecified','Y','2025-10-23 00:00:00'),(86715,11,'CB02.1','Idiopathic eosinophilic pneumonitis','Y','2025-10-23 00:00:00'),(86714,11,'DB93.21','Idiopathic copper-associated cirrhosis','Y','2025-10-23 00:00:00'),(86713,11,'CB02.11','Idiopathic chronic eosinophilic pneumonitis','Y','2025-10-23 00:00:00'),(86712,11,'7A42.3','Idiopathic central alveolar hypoventilation','Y','2025-10-23 00:00:00'),(86711,11,'AB34.0','Idiopathic bilateral vestibulopathy','Y','2025-10-23 00:00:00'),(86710,11,'FB81.0','Idiopathic aseptic osteonecrosis','Y','2025-10-23 00:00:00'),(86709,11,'3A70.12','Idiopathic aplastic anaemia','Y','2025-10-23 00:00:00'),(86708,11,'EB04','Idiopathic angioedema','Y','2025-10-23 00:00:00'),(86707,11,'CB02.10','Idiopathic acute eosinophilic pneumonitis','Y','2025-10-23 00:00:00'),(86706,11,'XB5F','Idiopathic','Y','2025-10-23 00:00:00'),(86705,11,'MB26.4','Identity disturbance','Y','2025-10-23 00:00:00'),(86704,11,'XM8F40','Idelalisib','Y','2025-10-23 00:00:00'),(86703,11,'XM5CY6','Idebenone','Y','2025-10-23 00:00:00'),(86702,11,'XM0666','Idarucizumab','Y','2025-10-23 00:00:00'),(86701,11,'XM3PF9','Idarubicin','Y','2025-10-23 00:00:00'),(86700,11,'XM7F16','Idanpramine','Y','2025-10-23 00:00:00'),(86699,11,'MC17','Icteric sclera','Y','2025-10-23 00:00:00'),(86698,11,'XN6DH','Ictalurvirus','Y','2025-10-23 00:00:00'),(86697,11,'XM9L11','Icotinib','Y','2025-10-23 00:00:00'),(86696,11,'XM98X3','Iclaprim','Y','2025-10-23 00:00:00'),(86695,11,'EC20.00','Ichthyosis vulgaris','Y','2025-10-23 00:00:00'),(86694,11,'ED50.Z','Ichthyosis of unspecified type','Y','2025-10-23 00:00:00'),(86693,11,'ED50','Ichthyoses','Y','2025-10-23 00:00:00'),(86692,11,'XM3PT9','Ichthammol','Y','2025-10-23 00:00:00'),(86691,11,'XM9FP6','Ichtasol','Y','2025-10-23 00:00:00'),(86690,11,'XN728','Ichtadenovirus','Y','2025-10-23 00:00:00'),(86689,11,'XE08H','Ice skates as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(86687,11,'XE2AY','Ice skate','Y','2025-10-23 00:00:00'),(86688,11,'XE1TJ','Ice skates as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(86686,11,'XE1HX','Ice pick','Y','2025-10-23 00:00:00'),(86685,11,'XE9DF','Ice or snow sports','Y','2025-10-23 00:00:00'),(86684,11,'XM7TQ2','Icatibant','Y','2025-10-23 00:00:00'),(86683,11,'XM8AA1','Ibutilide','Y','2025-10-23 00:00:00'),(86682,11,'XM55D7','Ibuterol','Y','2025-10-23 00:00:00'),(86681,11,'XM1918','Ibuproxam','Y','2025-10-23 00:00:00'),(86680,11,'XM2RR6','Ibuprofen','Y','2025-10-23 00:00:00'),(86679,11,'XM8G95','Ibufenac','Y','2025-10-23 00:00:00'),(86677,11,'XM0C70','Ibrutinib','Y','2025-10-23 00:00:00'),(86678,11,'XM12R0','Ibudilast','Y','2025-10-23 00:00:00'),(86676,11,'XM1PJ8','Ibotenic acid','Y','2025-10-23 00:00:00'),(86675,11,'XM1641','Ibopamine','Y','2025-10-23 00:00:00'),(86674,11,'XM93D5','Ibandronic acid','Y','2025-10-23 00:00:00'),(86673,11,'XM2KW1','Ibalizumab','Y','2025-10-23 00:00:00'),(86672,11,'XM1R42','Ibacitabine','Y','2025-10-23 00:00:00'),(86670,11,'XB8D','Iatrogenic','Y','2025-10-23 00:00:00'),(86671,11,'8E01.0','Iatrogenically acquired Creutzfeldt-Jakob Disease','Y','2025-10-23 00:00:00'),(86669,11,'XM9E72','Hypromellose','Y','2025-10-23 00:00:00'),(86668,11,'8B24.Z','Hypoxic-ischaemic encephalopathy, unspecified','Y','2025-10-23 00:00:00'),(86667,11,'8B24','Hypoxic-ischaemic encephalopathy','Y','2025-10-23 00:00:00'),(86666,11,'KB04','Hypoxic ischaemic encephalopathy of newborn','Y','2025-10-23 00:00:00'),(86665,11,'MG40.1','Hypovolaemic shock','Y','2025-10-23 00:00:00'),(86664,11,'5C70.1','Hypovolaemia','Y','2025-10-23 00:00:00'),(86663,11,'GB90.40','Hypotonia-cystinuria type 1','Y','2025-10-23 00:00:00'),(86662,11,'KB2J.0','Hypotonia of hypopharynx in neonate','Y','2025-10-23 00:00:00'),(86661,11,'5A00.Z','Hypothyroidism, unspecified','Y','2025-10-23 00:00:00'),(86660,11,'5D40.00','Hypothyroidism postradioactive iodine ablation','Y','2025-10-23 00:00:00'),(86659,11,'5A00.20','Hypothyroidism due to medicaments or other exogenous substances','Y','2025-10-23 00:00:00'),(86658,11,'5A00','Hypothyroidism','Y','2025-10-23 00:00:00'),(86657,11,'MG28','Hypothermia, not associated with low environmental temperature','Y','2025-10-23 00:00:00'),(86656,11,'KD12.Z','Hypothermia of newborn, unspecified','Y','2025-10-23 00:00:00'),(86655,11,'KD12','Hypothermia of newborn','Y','2025-10-23 00:00:00'),(86654,11,'NF02','Hypothermia','Y','2025-10-23 00:00:00'),(86653,11,'BD53.1','Hypothenar hammer syndrome','Y','2025-10-23 00:00:00'),(86652,11,'XA5TQ4','Hypothenar eminence','Y','2025-10-23 00:00:00'),(86651,11,'XA1CN1','Hypothalamus','Y','2025-10-23 00:00:00'),(86650,11,'DA21.21','Hypotensive peristalsis','Y','2025-10-23 00:00:00'),(86649,11,'XM4EP4','Hypotensive drug','Y','2025-10-23 00:00:00'),(86648,11,'BA2Z','Hypotension, unspecified','Y','2025-10-23 00:00:00'),(86647,11,'LB71.0','Hypotelorism','Y','2025-10-23 00:00:00'),(86646,11,'LB53.Z','Hypospadias, unspecified','Y','2025-10-23 00:00:00'),(86645,11,'LB53.3','Hypospadias, scrotal','Y','2025-10-23 00:00:00'),(86644,11,'LB53.4','Hypospadias, perineal','Y','2025-10-23 00:00:00'),(86643,11,'LB53.2','Hypospadias, penoscrotal','Y','2025-10-23 00:00:00'),(86642,11,'LB53.1','Hypospadias, penile','Y','2025-10-23 00:00:00'),(86641,11,'LB53.01','Hypospadias, glandular','Y','2025-10-23 00:00:00'),(86640,11,'LB53.00','Hypospadias, coronal','Y','2025-10-23 00:00:00'),(86639,11,'LB53.0Z','Hypospadias, balanic, unspecified','Y','2025-10-23 00:00:00'),(86638,11,'LB53.0','Hypospadias, balanic','Y','2025-10-23 00:00:00'),(86637,11,'LB53','Hypospadias','Y','2025-10-23 00:00:00'),(86636,11,'MB41.3','Hyposmia','Y','2025-10-23 00:00:00'),(86635,11,'MC20.2','Hypopyon','Y','2025-10-23 00:00:00'),(86634,11,'LA89.3','Hypoplastic left heart syndrome','Y','2025-10-23 00:00:00'),(86633,11,'DA0D.3','Hypoplasminogenaemia','Y','2025-10-23 00:00:00'),(86632,11,'LA06.1','Hypoplasia or agenesis of cerebellar hemispheres','Y','2025-10-23 00:00:00'),(86631,11,'LB44.1','Hypoplasia of uterus','Y','2025-10-23 00:00:00'),(86630,11,'LB59','Hypoplasia of testis or scrotum','Y','2025-10-23 00:00:00'),(86629,11,'LB21.5','Hypoplasia of pancreas','Y','2025-10-23 00:00:00'),(86628,11,'5A61.0','Hypopituitarism','Y','2025-10-23 00:00:00'),(86627,11,'MF98.6','Hypophosphaturia','Y','2025-10-23 00:00:00'),(86626,11,'5C63.22','Hypophosphataemic rickets','Y','2025-10-23 00:00:00'),(86625,11,'XA2J67','Hypopharynx','Y','2025-10-23 00:00:00'),(86624,11,'XA0XK1','Hypopharyngeal wall','Y','2025-10-23 00:00:00'),(86623,11,'KB2J.1','Hypopharyngeal mass in neonate','Y','2025-10-23 00:00:00'),(86622,11,'5A50.Z','Hypoparathyroidism, unspecified','Y','2025-10-23 00:00:00'),(86621,11,'5A50.0Z','Hypoparathyroidism due to impaired parathyroid hormone secretion, unspecified','Y','2025-10-23 00:00:00'),(86620,11,'5A50.0','Hypoparathyroidism due to impaired parathyroid hormone secretion','Y','2025-10-23 00:00:00'),(86619,11,'5A50.02','Hypoparathyroidism due to destruction of the parathyroid glands','Y','2025-10-23 00:00:00'),(86618,11,'5A50','Hypoparathyroidism','Y','2025-10-23 00:00:00'),(86617,11,'5C72','Hypo-osmolality or hyponatraemia','Y','2025-10-23 00:00:00'),(86616,11,'XA63L0','Hyponychium of thumb','Y','2025-10-23 00:00:00'),(86615,11,'XA2H72','Hyponychium of third toe','Y','2025-10-23 00:00:00'),(86614,11,'XA2ZJ7','Hyponychium of second toe','Y','2025-10-23 00:00:00'),(86613,11,'XA1W89','Hyponychium of ring finger','Y','2025-10-23 00:00:00'),(86612,11,'XA8KX8','Hyponychium of middle finger','Y','2025-10-23 00:00:00'),(86611,11,'XA1C10','Hyponychium of little finger','Y','2025-10-23 00:00:00'),(86610,11,'XA2UG0','Hyponychium of index finger','Y','2025-10-23 00:00:00'),(86609,11,'XA2F64','Hyponychium of great toe','Y','2025-10-23 00:00:00'),(86608,11,'XA4ZB3','Hyponychium of fourth toe','Y','2025-10-23 00:00:00'),(86607,11,'XA0DD8','Hyponychium of fifth toe','Y','2025-10-23 00:00:00'),(86606,11,'XA0NS1','Hyponychium','Y','2025-10-23 00:00:00'),(86605,11,'KB63.20','Hyponatremia of newborn','Y','2025-10-23 00:00:00'),(86604,11,'EL73.4','Hypomelanosis resulting from cosmetic procedure','Y','2025-10-23 00:00:00'),(86603,11,'ED63.1','Hypomelanosis due to exposure to chemicals','Y','2025-10-23 00:00:00'),(86602,11,'MF98.5','Hypomagnesuria','Y','2025-10-23 00:00:00'),(86601,11,'5C64.41','Hypomagnesaemia','Y','2025-10-23 00:00:00'),(86600,11,'5C81.Z','Hypolipoproteinaemia, unspecified','Y','2025-10-23 00:00:00'),(86599,11,'5C81','Hypolipoproteinaemia','Y','2025-10-23 00:00:00'),(86598,11,'MF98.4','Hypokaluria','Y','2025-10-23 00:00:00'),(86597,11,'8C74.10','Hypokalaemic periodic paralysis','Y','2025-10-23 00:00:00'),(86596,11,'KB63.30','Hypokalaemia of newborn','Y','2025-10-23 00:00:00'),(86595,11,'5C77','Hypokalaemia','Y','2025-10-23 00:00:00'),(86594,11,'LD27.02','Hypohidrotic ectodermal dysplasia','Y','2025-10-23 00:00:00'),(86593,11,'EE01.Z','Hypohidrosis, unspecified','Y','2025-10-23 00:00:00'),(86592,11,'EE01.2','Hypohidrosis of undetermined aetiology','Y','2025-10-23 00:00:00'),(86591,11,'EE01.1','Hypohidrosis due to genetic abnormalities of eccrine gland structure or function','Y','2025-10-23 00:00:00'),(86590,11,'EE01.0','Hypohidrosis attributable to defective sudomotor innervation or function','Y','2025-10-23 00:00:00'),(86589,11,'EE01','Hypohidrosis','Y','2025-10-23 00:00:00'),(86588,11,'5A41','Hypoglycaemia without associated diabetes','Y','2025-10-23 00:00:00'),(86587,11,'8D8D','Hypoglycaemia unawareness','Y','2025-10-23 00:00:00'),(86586,11,'5A21.Z','Hypoglycaemia in the context of diabetes, unspecified','Y','2025-10-23 00:00:00'),(86585,11,'5A21.0','Hypoglycaemia in the context of diabetes mellitus without coma','Y','2025-10-23 00:00:00'),(86584,11,'5A21.1','Hypoglycaemia in the context of diabetes mellitus with coma','Y','2025-10-23 00:00:00'),(86583,11,'5A21','Hypoglycaemia in the context of diabetes mellitus','Y','2025-10-23 00:00:00'),(86582,11,'LA31.1','Hypoglossia or aglossia','Y','2025-10-23 00:00:00'),(86581,11,'XA3YX3','Hypoglossal nerve','Y','2025-10-23 00:00:00'),(86580,11,'XA6N20','Hypogastrium','Y','2025-10-23 00:00:00'),(86578,11,'JB46.4','Hypogalactia','Y','2025-10-23 00:00:00'),(86579,11,'SC12','Hypogalactia disorder (TM1)','Y','2025-10-23 00:00:00'),(86577,11,'5A61','Hypofunction or certain other specified disorders of pituitary gland','Y','2025-10-23 00:00:00'),(86576,11,'9A78.7','Hypoesthesia of cornea','Y','2025-10-23 00:00:00'),(86575,11,'LA30.1','Hypodontia','Y','2025-10-23 00:00:00'),(86574,11,'XA2013','Hypodermis','Y','2025-10-23 00:00:00'),(86573,11,'4A44.91','Hypocomplementaemic urticarial vasculitis','Y','2025-10-23 00:00:00'),(86572,11,'LD24.01','Hypochondroplasia','Y','2025-10-23 00:00:00'),(86571,11,'LD24.51','Hypochondrogenesis','Y','2025-10-23 00:00:00'),(86569,11,'XA3TD4','Hypochondrium','Y','2025-10-23 00:00:00'),(86570,11,'SA00','Hypochondrium pain disorder (TM1)','Y','2025-10-23 00:00:00'),(86568,11,'6B23.Z','Hypochondriasis, unspecified','Y','2025-10-23 00:00:00'),(86567,11,'6B23.1','Hypochondriasis with poor to absent insight','Y','2025-10-23 00:00:00'),(86566,11,'6B23.0','Hypochondriasis with fair to good insight','Y','2025-10-23 00:00:00'),(86565,11,'6B23','Hypochondriasis','Y','2025-10-23 00:00:00'),(86564,11,'XM02H1','Hypochlorite','Y','2025-10-23 00:00:00'),(86563,11,'MF98.3','Hypocalciuria','Y','2025-10-23 00:00:00'),(86562,11,'5C63.21','Hypocalcaemic vitamin D resistant rickets','Y','2025-10-23 00:00:00'),(86561,11,'5C63.20','Hypocalcaemic vitamin D dependent rickets','Y','2025-10-23 00:00:00'),(86560,11,'5C81.1','Hypobetalipoproteinaemia','Y','2025-10-23 00:00:00'),(86559,11,'5C81.0','Hypoalphalipoproteinaemia','Y','2025-10-23 00:00:00'),(86558,11,'5A73','Hypoaldosteronism','Y','2025-10-23 00:00:00'),(86557,11,'HA00.Z','Hypoactive sexual desire dysfunction, unspecified','Y','2025-10-23 00:00:00'),(86556,11,'HA00.1','Hypoactive sexual desire dysfunction, lifelong, situational','Y','2025-10-23 00:00:00'),(86555,11,'HA00.0','Hypoactive sexual desire dysfunction, lifelong, generalised','Y','2025-10-23 00:00:00'),(86554,11,'HA00.3','Hypoactive sexual desire dysfunction, acquired, situational','Y','2025-10-23 00:00:00'),(86553,11,'HA00.2','Hypoactive sexual desire dysfunction, acquired, generalised','Y','2025-10-23 00:00:00'),(86552,11,'HA00','Hypoactive sexual desire dysfunction','Y','2025-10-23 00:00:00'),(86551,11,'XM3GR8','Hypnotic drug specified','Y','2025-10-23 00:00:00'),(86550,11,'MB27.22','Hypnopompic hallucinations','Y','2025-10-23 00:00:00'),(86549,11,'MB27.23','Hypnagogic hallucinations','Y','2025-10-23 00:00:00'),(86547,11,'9A80','Hyphaema','Y','2025-10-23 00:00:00'),(86548,11,'7B02.0','Hypnagogic exploding head syndrome','Y','2025-10-23 00:00:00'),(86545,11,'5B90.0','Hypervitaminosis A','Y','2025-10-23 00:00:00'),(86546,11,'5B90.2','Hypervitaminosis D','Y','2025-10-23 00:00:00'),(86544,11,'MD11.7','Hyperventilation','Y','2025-10-23 00:00:00'),(86542,11,'GA13.2','Hypertrophy of vulva','Y','2025-10-23 00:00:00'),(86543,11,'XM42S1','Hypertussis','Y','2025-10-23 00:00:00'),(86541,11,'CA0F.3','Hypertrophy of tonsils with hypertrophy of adenoids','Y','2025-10-23 00:00:00'),(86540,11,'CA0F.0','Hypertrophy of tonsils','Y','2025-10-23 00:00:00'),(86539,11,'DA03.4','Hypertrophy of tongue papillae','Y','2025-10-23 00:00:00'),(86538,11,'DA04.1','Hypertrophy of salivary gland','Y','2025-10-23 00:00:00'),(86536,11,'FB56.3','Hypertrophy of infrapatellar fat pad','Y','2025-10-23 00:00:00'),(86537,11,'CA0E','Hypertrophy of nasal turbinates','Y','2025-10-23 00:00:00'),(86535,11,'GB22','Hypertrophy of breast','Y','2025-10-23 00:00:00'),(86533,11,'CA0F.1','Hypertrophy of adenoids','Y','2025-10-23 00:00:00'),(86534,11,'FB86.11','Hypertrophy of bone','Y','2025-10-23 00:00:00'),(86532,11,'DB71.2','Hypertrophied anal papillae','Y','2025-10-23 00:00:00'),(86530,11,'EE60.1','Hypertrophic scar','Y','2025-10-23 00:00:00'),(86531,11,'EL50.1','Hypertrophic surgical scar','Y','2025-10-23 00:00:00'),(86529,11,'FB86.10','Hypertrophic osteoarthropathy','Y','2025-10-23 00:00:00'),(86528,11,'EA91.1','Hypertrophic lichen planus','Y','2025-10-23 00:00:00'),(86527,11,'DA42.76','Hypertrophic gastritis of unknown aetiology','Y','2025-10-23 00:00:00'),(86526,11,'GA15.5','Hypertrophic elongation of cervix uteri','Y','2025-10-23 00:00:00'),(86524,11,'BC43.1','Hypertrophic cardiomyopathy','Y','2025-10-23 00:00:00'),(86525,11,'BC43.1Z','Hypertrophic cardiomyopathy, unspecified','Y','2025-10-23 00:00:00'),(86523,11,'5C80.1','Hypertriglyceridaemia','Y','2025-10-23 00:00:00'),(86522,11,'ED71','Hypertrichosis','Y','2025-10-23 00:00:00'),(86521,11,'JB02.4','Hypertonic, incoordinate, or prolonged uterine contractions','Y','2025-10-23 00:00:00'),(86519,11,'BA02','Hypertensive renal disease','Y','2025-10-23 00:00:00'),(86520,11,'9B71.1','Hypertensive retinopathy','Y','2025-10-23 00:00:00'),(86518,11,'DA21.20','Hypertensive peristalsis','Y','2025-10-23 00:00:00'),(86516,11,'8B22.8','Hypertensive encephalopathy','Y','2025-10-23 00:00:00'),(86517,11,'BA01','Hypertensive heart disease','Y','2025-10-23 00:00:00'),(86514,11,'LB71.1','Hypertelorism','Y','2025-10-23 00:00:00'),(86515,11,'BA03','Hypertensive crisis','Y','2025-10-23 00:00:00'),(86513,11,'3B81.B','Hypersplenism','Y','2025-10-23 00:00:00'),(86512,11,'7A2Z','Hypersomnolence disorders, unspecified','Y','2025-10-23 00:00:00'),(86511,11,'7A24','Hypersomnia due to a medication or substance','Y','2025-10-23 00:00:00'),(86510,11,'7A23','Hypersomnia due to a medical condition','Y','2025-10-23 00:00:00'),(86509,11,'7A25','Hypersomnia associated with a mental disorder','Y','2025-10-23 00:00:00'),(86507,11,'CA70.Z','Hypersensitivity pneumonitis due to organic dust, unspecified','Y','2025-10-23 00:00:00'),(86508,11,'4A85.1','Hypersensitivity to herbal and alternative medical therapies','Y','2025-10-23 00:00:00'),(86506,11,'CA70','Hypersensitivity pneumonitis due to organic dust','Y','2025-10-23 00:00:00'),(86505,11,'BC42.2','Hypersensitivity myocarditis','Y','2025-10-23 00:00:00'),(86504,11,'5A04','Hypersecretion of calcitonin','Y','2025-10-23 00:00:00'),(86503,11,'5A60.1','Hyperprolactinaemia','Y','2025-10-23 00:00:00'),(86502,11,'DA44.0','Hyperplastic polyp of stomach','Y','2025-10-23 00:00:00'),(86500,11,'DB35.0','Hyperplastic polyp of large intestine','Y','2025-10-23 00:00:00'),(86501,11,'DA98.1','Hyperplastic polyp of small intestine','Y','2025-10-23 00:00:00'),(86499,11,'DA53.0','Hyperplastic duodenal polyp','Y','2025-10-23 00:00:00'),(86497,11,'DB11.1','Hyperplasia of appendix','Y','2025-10-23 00:00:00'),(86498,11,'GA90','Hyperplasia of prostate','Y','2025-10-23 00:00:00'),(86496,11,'LB77','Hyperphalangy','Y','2025-10-23 00:00:00'),(86494,11,'5A51','Hyperparathyroidism','Y','2025-10-23 00:00:00'),(86495,11,'5A51.Z','Hyperparathyroidism, unspecified','Y','2025-10-23 00:00:00'),(86493,11,'FB80.3','Hyperostosis of skull','Y','2025-10-23 00:00:00'),(86492,11,'5A20.0','Hyperosmolar hyperglycaemic state without coma','Y','2025-10-23 00:00:00'),(86490,11,'5C71','Hyperosmolality or hypernatraemia','Y','2025-10-23 00:00:00'),(86491,11,'5A20.1','Hyperosmolar hyperglycaemic state with coma','Y','2025-10-23 00:00:00'),(86489,11,'XH54H3','Hypernephroid tumour','Y','2025-10-23 00:00:00'),(86487,11,'9D00.1','Hypermetropia','Y','2025-10-23 00:00:00'),(86488,11,'KB63.21','Hypernatremia of newborn','Y','2025-10-23 00:00:00'),(86486,11,'ED60.Z','Hypermelanosis of unspecified aetiology','Y','2025-10-23 00:00:00'),(86484,11,'MF98.2','Hypermagnesuria','Y','2025-10-23 00:00:00'),(86485,11,'ED60.Y','Hypermelanosis of other specified aetiology','Y','2025-10-23 00:00:00'),(86483,11,'5C64.40','Hypermagnesaemia','Y','2025-10-23 00:00:00'),(86482,11,'5C80.Z','Hyperlipoproteinaemia, unspecified','Y','2025-10-23 00:00:00'),(86481,11,'5C80','Hyperlipoproteinaemia','Y','2025-10-23 00:00:00'),(86480,11,'9A10.3','Hyperlacrimation','Y','2025-10-23 00:00:00'),(86478,11,'MF98.1','Hyperkaluria','Y','2025-10-23 00:00:00'),(86479,11,'EA85.1','Hyperkeratotic dermatitis of hands and feet','Y','2025-10-23 00:00:00'),(86476,11,'KB63.31','Hyperkalaemia of newborn','Y','2025-10-23 00:00:00'),(86477,11,'8C74.11','Hyperkalaemic periodic paralysis','Y','2025-10-23 00:00:00'),(86475,11,'5C76','Hyperkalaemia','Y','2025-10-23 00:00:00'),(86473,11,'XM4230','Hyperici herba','Y','2025-10-23 00:00:00'),(86474,11,'4A01.34','Hyperimmunoglobulin E syndromes','Y','2025-10-23 00:00:00'),(86472,11,'3B61.00','Hyperhomocysteinaemia','Y','2025-10-23 00:00:00'),(86471,11,'EE00.Z','Hyperhidrosis, unspecified','Y','2025-10-23 00:00:00'),(86470,11,'EE00','Hyperhidrosis','Y','2025-10-23 00:00:00'),(86468,11,'5A60','Hyperfunction of pituitary gland','Y','2025-10-23 00:00:00'),(86469,11,'5A60.Z','Hyperfunction of pituitary gland, unspecified','Y','2025-10-23 00:00:00'),(86466,11,'LA30.3','Hyperdontia','Y','2025-10-23 00:00:00'),(86467,11,'JA60.1','Hyperemesis gravidarum with metabolic disturbance','Y','2025-10-23 00:00:00'),(86465,11,'5C80.0Z','Hypercholesterolaemia, unspecified','Y','2025-10-23 00:00:00'),(86464,11,'5C80.0','Hypercholesterolaemia','Y','2025-10-23 00:00:00'),(86463,11,'5B90.1','Hypercarotenaemia','Y','2025-10-23 00:00:00'),(86462,11,'MF98.0','Hypercalciuria','Y','2025-10-23 00:00:00'),(86461,11,'5B91.0','Hypercalcaemia','Y','2025-10-23 00:00:00'),(86460,11,'5C80.3','Hyperalphalipoproteinaemia','Y','2025-10-23 00:00:00'),(86459,11,'5A72.Z','Hyperaldosteronism, unspecified','Y','2025-10-23 00:00:00'),(86457,11,'MB40.5','Hyperaesthesia','Y','2025-10-23 00:00:00'),(86458,11,'5A72','Hyperaldosteronism','Y','2025-10-23 00:00:00'),(86456,11,'ME03.0','Hyperactive bowel sounds','Y','2025-10-23 00:00:00'),(86455,11,'XM4UC8','Hyoscyamus niger plant','Y','2025-10-23 00:00:00'),(86454,11,'XM4FB2','Hyoscyamus dry extract','Y','2025-10-23 00:00:00'),(86453,11,'XM1EF8','Hyoscyamus','Y','2025-10-23 00:00:00'),(86451,11,'XA7EE6','Hyoid tendon','Y','2025-10-23 00:00:00'),(86452,11,'XM11J9','Hyoscyamine','Y','2025-10-23 00:00:00'),(86450,11,'XA3PY5','Hyoid muscle','Y','2025-10-23 00:00:00'),(86448,11,'XA4H29','Hyoid artery','Y','2025-10-23 00:00:00'),(86449,11,'XA5CQ0','Hyoid bone','Y','2025-10-23 00:00:00'),(86447,11,'XA8N10','Hyoglossus tendon','Y','2025-10-23 00:00:00'),(86446,11,'XA5DX5','Hyoglossus muscle','Y','2025-10-23 00:00:00'),(86443,11,'1F74','Hymenolepiasis','Y','2025-10-23 00:00:00'),(86444,11,'XN629','Hymenolepis','Y','2025-10-23 00:00:00'),(86445,11,'XN9S5','Hymenolepis nana','Y','2025-10-23 00:00:00'),(86441,11,'XM0HT0','Hymecromone','Y','2025-10-23 00:00:00'),(86442,11,'XA3A69','Hymen','Y','2025-10-23 00:00:00'),(86439,11,'XM6E35','Hydroxytoluene medicinal','Y','2025-10-23 00:00:00'),(86440,11,'XM8CV8','Hydroxyzine','Y','2025-10-23 00:00:00'),(86437,11,'XM21E9','Hydroxyquinoline derivatives','Y','2025-10-23 00:00:00'),(86438,11,'XM1LB9','Hydroxystilbamidine','Y','2025-10-23 00:00:00'),(86436,11,'XM5A00','Hydroxyprogesterone caproate','Y','2025-10-23 00:00:00'),(86434,11,'XM9097','Hydroxyphenamate','Y','2025-10-23 00:00:00'),(86435,11,'XM0R79','Hydroxyprogesterone','Y','2025-10-23 00:00:00'),(86433,11,'XM5E65','Hydroxymethylpentanone','Y','2025-10-23 00:00:00'),(86432,11,'XM7N15','Hydroxyisohexyl 3-cyclohexene carboxaldehyde','Y','2025-10-23 00:00:00'),(86431,11,'XM8H48','Hydroxyethylstarch','Y','2025-10-23 00:00:00'),(86430,11,'XM5QG6','Hydroxyethylpromethazine','Y','2025-10-23 00:00:00'),(86429,11,'XM4NZ9','Hydroxyestrone','Y','2025-10-23 00:00:00'),(86428,11,'XM0YG5','Hydroxydihydrocodeinone','Y','2025-10-23 00:00:00'),(86427,11,'XM7UN9','Hydroxycitronellal','Y','2025-10-23 00:00:00'),(86426,11,'XM9YB2','Hydroxychloroquine','Y','2025-10-23 00:00:00'),(86425,11,'XM7SD2','Hydroxycarbamide','Y','2025-10-23 00:00:00'),(86424,11,'FA26.1','Hydroxyapatite deposition disease','Y','2025-10-23 00:00:00'),(86423,11,'XM9EN3','Hydroxyamphetamine','Y','2025-10-23 00:00:00'),(86422,11,'XM7CP9','Hydroxocobalamin','Y','2025-10-23 00:00:00'),(86421,11,'GB90.1','Hydroureter','Y','2025-10-23 00:00:00'),(86420,11,'XM3EB6','Hydrotalcite','Y','2025-10-23 00:00:00'),(86419,11,'GA17.2','Hydrosalpinx','Y','2025-10-23 00:00:00'),(86418,11,'XM1N69','Hydroquinone vapor','Y','2025-10-23 00:00:00'),(86417,11,'XM50B6','Hydroquinone','Y','2025-10-23 00:00:00'),(86415,11,'XM0D87','Hydroquinidine','Y','2025-10-23 00:00:00'),(86416,11,'XM6TG6','Hydroquinine','Y','2025-10-23 00:00:00'),(86414,11,'DC10.1','Hydrops of gallbladder','Y','2025-10-23 00:00:00'),(86413,11,'KC41.1','Hydrops fetalis not due to haemolytic disease','Y','2025-10-23 00:00:00'),(86412,11,'KA85.0','Hydrops fetalis due to isoimmunization','Y','2025-10-23 00:00:00'),(86411,11,'KA85.Z','Hydrops fetalis due to haemolytic disease, unspecified','Y','2025-10-23 00:00:00'),(86410,11,'KA85','Hydrops fetalis due to haemolytic disease','Y','2025-10-23 00:00:00'),(86409,11,'XM8M74','Hydrophilic lotion','Y','2025-10-23 00:00:00'),(86408,11,'GB56.0','Hydronephrosis with ureteropelvic junction obstruction','Y','2025-10-23 00:00:00'),(86407,11,'GB56.2','Hydronephrosis with ureteral orifice obstruction','Y','2025-10-23 00:00:00'),(86406,11,'GB56.1','Hydronephrosis with ureteral obstruction','Y','2025-10-23 00:00:00'),(86405,11,'GB56.3','Hydronephrosis due to bladder obstruction','Y','2025-10-23 00:00:00'),(86404,11,'GB56.5','Hydronephrosis and reflux nephropathy with vesicoureteral or vesico-uretero-renal reflux','Y','2025-10-23 00:00:00'),(86403,11,'XM8T28','Hydromox','Y','2025-10-23 00:00:00'),(86402,11,'XM8SD7','Hydromorphone','Y','2025-10-23 00:00:00'),(86401,11,'XM3473','Hydromorphinol','Y','2025-10-23 00:00:00'),(86400,11,'XM2LT4','Hydromethylpyridine','Y','2025-10-23 00:00:00'),(86399,11,'XM7FL0','Hydrogen sulfide','Y','2025-10-23 00:00:00'),(86398,11,'XM4AG2','Hydrogen peroxide','Y','2025-10-23 00:00:00'),(86397,11,'XM34T7','Hydrogen fluoride vapor','Y','2025-10-23 00:00:00'),(86396,11,'XM0VA0','Hydrogen fluoride','Y','2025-10-23 00:00:00'),(86395,11,'XM8WA4','Hydrogen cyanide','Y','2025-10-23 00:00:00'),(86394,11,'XM97M0','Hydrogen chloride','Y','2025-10-23 00:00:00'),(86393,11,'XM8ZY7','Hydrogen','Y','2025-10-23 00:00:00'),(86392,11,'XM2671','Hydroflumethiazide','Y','2025-10-23 00:00:00'),(86391,11,'XM6JE7','Hydrocortisone topical','Y','2025-10-23 00:00:00'),(86390,11,'XM4Y24','Hydrocortisone butyrate','Y','2025-10-23 00:00:00'),(86389,11,'XM8KB5','Hydrocortisone aceponate','Y','2025-10-23 00:00:00'),(86388,11,'XM21H0','Hydrocortisone','Y','2025-10-23 00:00:00'),(86387,11,'XM8E09','Hydrocodone','Y','2025-10-23 00:00:00'),(86386,11,'XM6910','Hydrochlorothiazide','Y','2025-10-23 00:00:00'),(86385,11,'XM6QZ3','Hydrochloric acid vapor','Y','2025-10-23 00:00:00'),(86384,11,'XM15D5','Hydrochloric acid medicinal (digestant)','Y','2025-10-23 00:00:00'),(86383,11,'XM6F61','Hydrochloric acid','Y','2025-10-23 00:00:00'),(86382,11,'8D64.Z','Hydrocephalus, unspecified','Y','2025-10-23 00:00:00'),(86381,11,'LA04.0','Hydrocephalus with stenosis of the aqueduct of Sylvius','Y','2025-10-23 00:00:00'),(86380,11,'8D64.10','Hydrocephalus due to structural malformations','Y','2025-10-23 00:00:00'),(86379,11,'8D64','Hydrocephalus','Y','2025-10-23 00:00:00'),(86378,11,'GB00.Z','Hydrocele or spermatocele, unspecified','Y','2025-10-23 00:00:00'),(86376,11,'XM5LN6','Hydrocarbon gas','Y','2025-10-23 00:00:00'),(86377,11,'GB00','Hydrocele or spermatocele','Y','2025-10-23 00:00:00'),(86375,11,'XM4BN8','Hydroabietyl alcohol','Y','2025-10-23 00:00:00'),(86374,11,'XH0AK5','Hydroa vacciniforme-like lymphoproliferative disorder','Y','2025-10-23 00:00:00'),(86373,11,'XM31Y1','Hydriodic acid','Y','2025-10-23 00:00:00'),(86372,11,'XM3C02','Hydrazoic acid','Y','2025-10-23 00:00:00'),(86371,11,'XM9021','Hydrazinophthalazine derivatives','Y','2025-10-23 00:00:00'),(86370,11,'XM8LE5','Hydrazine','Y','2025-10-23 00:00:00'),(86369,11,'XE1TK','Hydraulic system component of medical device','Y','2025-10-23 00:00:00'),(86368,11,'XM7E87','Hydrastine','Y','2025-10-23 00:00:00'),(86367,11,'XM0JC1','Hydrargyri amino-chloridum','Y','2025-10-23 00:00:00'),(86366,11,'XM19W1','Hydrargaphen','Y','2025-10-23 00:00:00'),(86365,11,'LA05.62','Hydranencephaly','Y','2025-10-23 00:00:00'),(86364,11,'XM8D89','Hydralazine','Y','2025-10-23 00:00:00'),(86363,11,'XM9VG2','Hydrabamine penicillin','Y','2025-10-23 00:00:00'),(86362,11,'XM3Y81','Hydergine','Y','2025-10-23 00:00:00'),(86361,11,'XH8CX2','Hydatidiform mole, NOS','Y','2025-10-23 00:00:00'),(86360,11,'XM9UN6','Hycodan','Y','2025-10-23 00:00:00'),(86359,11,'XH1VB1','Hybrid oncocytic chromophobe tumour','Y','2025-10-23 00:00:00'),(86358,11,'XH01G0','Hybrid nerve sheath tumour','Y','2025-10-23 00:00:00'),(86357,11,'XM0543','Hyaluronidase','Y','2025-10-23 00:00:00'),(86356,11,'XM2F87','Hyaluronic acid topical','Y','2025-10-23 00:00:00'),(86355,11,'XM6EQ0','Hyaluronic acid','Y','2025-10-23 00:00:00'),(86354,11,'XH1Y66','Hyalinizing trabecular tumour','Y','2025-10-23 00:00:00'),(86353,11,'XA2686','Hyaline cartilage','Y','2025-10-23 00:00:00'),(86352,11,'XE3ZC','Hut','Y','2025-10-23 00:00:00'),(86351,11,'XH5X53','Hurthle cell tumour','Y','2025-10-23 00:00:00'),(86350,11,'XH8MQ3','Hurthle cell carcinoma','Y','2025-10-23 00:00:00'),(86349,11,'XH6PG8','Hurthle cell adenoma','Y','2025-10-23 00:00:00'),(86348,11,'XH6YH5','Hurthle cell adenocarcinoma','Y','2025-10-23 00:00:00'),(86347,11,'8A01.10','Huntington disease','Y','2025-10-23 00:00:00'),(86346,11,'XM7WL0','Hump nosed pit viper snake venom','Y','2025-10-23 00:00:00'),(86345,11,'XD76M0','Humidifying systems, oxygen administration','Y','2025-10-23 00:00:00'),(86344,11,'XE0YE','Humidifier component of medical device','Y','2025-10-23 00:00:00'),(86343,11,'XA2XL4','Humerus','Y','2025-10-23 00:00:00'),(86342,11,'LB90.2','Humero-ulnar synostosis','Y','2025-10-23 00:00:00'),(86341,11,'XA46J3','Humeroulnar joint','Y','2025-10-23 00:00:00'),(86340,11,'LB90.0','Humero-radio-ulnar synostosis','Y','2025-10-23 00:00:00'),(86339,11,'LB90.1','Humero-radial synostosis','Y','2025-10-23 00:00:00'),(86338,11,'XA53P1','Humeroradial joint','Y','2025-10-23 00:00:00'),(86337,11,'LB99.1','Humeral agenesis or hypoplasia','Y','2025-10-23 00:00:00'),(86336,11,'XE5DG','Human-device interface problem','Y','2025-10-23 00:00:00'),(86335,11,'8A45.00','Human T-cell lymphotropic virus-associated myelopathy','Y','2025-10-23 00:00:00'),(86334,11,'EA88.00','Human T-cell lymphotropic virus type 1 associated infective dermatitis of childhood','Y','2025-10-23 00:00:00'),(86333,11,'XN1WJ','Human T-cell lymphotropic virus','Y','2025-10-23 00:00:00'),(86332,11,'XM0RZ0','Human seminal plasma','Y','2025-10-23 00:00:00'),(86331,11,'VD52','Human rights [WHODAS]','Y','2025-10-23 00:00:00'),(86330,11,'VW61','Human rights','Y','2025-10-23 00:00:00'),(86329,11,'XN275','Human respiratory syncytial virus','Y','2025-10-23 00:00:00'),(86328,11,'8E0Z','Human prion diseases, unspecified','Y','2025-10-23 00:00:00'),(86327,11,'XN7DE','Human papillomavirus 6','Y','2025-10-23 00:00:00'),(86326,11,'XN2KP','Human papillomavirus 45','Y','2025-10-23 00:00:00'),(86325,11,'XN3HA','Human papillomavirus 31','Y','2025-10-23 00:00:00'),(86324,11,'XN2FC','Human papillomavirus 2','Y','2025-10-23 00:00:00'),(86323,11,'XN97Y','Human papillomavirus 18','Y','2025-10-23 00:00:00'),(86322,11,'XN2NK','Human papillomavirus 16','Y','2025-10-23 00:00:00'),(86321,11,'XN7T9','Human papillomavirus 11','Y','2025-10-23 00:00:00'),(86320,11,'XN6LA','Human papillomavirus 1','Y','2025-10-23 00:00:00'),(86319,11,'XN8JY','Human papillomavirus','Y','2025-10-23 00:00:00'),(86318,11,'XN513','Human metapneumovirus','Y','2025-10-23 00:00:00'),(86317,11,'XM2J59','Human menopausal gonadotrophin','Y','2025-10-23 00:00:00'),(86316,11,'MA14.18','Human leukocyte antigen positive','Y','2025-10-23 00:00:00'),(86315,11,'MA14.17','Human leukocyte antigen negative','Y','2025-10-23 00:00:00'),(86314,11,'XN71W','Human immunodeficiency virus type 2','Y','2025-10-23 00:00:00'),(86313,11,'XN8LD','Human immunodeficiency virus type 1','Y','2025-10-23 00:00:00'),(86312,11,'1C62','Human immunodeficiency virus disease without mention of tuberculosis or malaria','Y','2025-10-23 00:00:00'),(86311,11,'1C62.Z','Human immunodeficiency virus disease without mention of associated disease or condition, clinical stage unspecified','Y','2025-10-23 00:00:00'),(86310,11,'1C60.Z','Human immunodeficiency virus disease associated with tuberculosis, clinical stage unspecified','Y','2025-10-23 00:00:00'),(86309,11,'1C60','Human immunodeficiency virus disease associated with tuberculosis','Y','2025-10-23 00:00:00'),(86308,11,'1C61.Z','Human immunodeficiency virus disease associated with malaria, clinical stage unspecified','Y','2025-10-23 00:00:00'),(86307,11,'1C61','Human immunodeficiency virus disease associated with malaria','Y','2025-10-23 00:00:00'),(86306,11,'XN487','Human immunodeficiency virus','Y','2025-10-23 00:00:00'),(86305,11,'JB63.7','Human immunodeficiency disease complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(86304,11,'XM7BR5','Human immune serum','Y','2025-10-23 00:00:00'),(86303,11,'XN7V1','Human herpesvirus','Y','2025-10-23 00:00:00'),(86302,11,'XM1NX7','Human growth hormone (HGH)','Y','2025-10-23 00:00:00'),(86301,11,'XM6DT1','Human epidermal growth factor receptor 2 inhibitors','Y','2025-10-23 00:00:00'),(86300,11,'XN7CX','Human coronavirus OC43','Y','2025-10-23 00:00:00'),(86299,11,'XN9KN','Human coronavirus HKU1','Y','2025-10-23 00:00:00'),(86297,11,'XM6HF0','Human albumin','Y','2025-10-23 00:00:00'),(86298,11,'XN0UA','Human coronavirus 229E','Y','2025-10-23 00:00:00'),(86296,11,'XE713','Hub component of medical device','Y','2025-10-23 00:00:00'),(86295,11,'XE5U7','Hovercraft operating on land or swamp as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(86294,11,'XE28S','Hovercraft operating on land or swamp as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(86293,11,'XE4AK','Hovercraft and amphibious vehicles when in or above a body of water as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(86292,11,'XE5ZR','Hovercraft','Y','2025-10-23 00:00:00'),(86291,11,'XE5S9','Housing component of medical device','Y','2025-10-23 00:00:00'),(86290,11,'XE304','Houseboat','Y','2025-10-23 00:00:00'),(86289,11,'DA40.4','Hourglass stricture and stenosis of stomach','Y','2025-10-23 00:00:00'),(86288,11,'XE396','Hot tap water','Y','2025-10-23 00:00:00'),(86287,11,'XE3KH','Hot solid food','Y','2025-10-23 00:00:00'),(86286,11,'XE63H','Hot object or substance, not elsewhere classified','Y','2025-10-23 00:00:00'),(86285,11,'XE4VA','Hot liquid','Y','2025-10-23 00:00:00'),(86284,11,'XE36T','Hot drink','Y','2025-10-23 00:00:00'),(86283,11,'XE5VU','Hot cooking oil or fat','Y','2025-10-23 00:00:00'),(86282,11,'XE3BS','Hot air or gas','Y','2025-10-23 00:00:00'),(86280,11,'XE28K','Hospital','Y','2025-10-23 00:00:00'),(86281,11,'MB28.4','Hostility','Y','2025-10-23 00:00:00'),(86279,11,'XE9ZD','Hospice','Y','2025-10-23 00:00:00'),(86278,11,'XE3A4','Hose component of medical device','Y','2025-10-23 00:00:00'),(86277,11,'XN0EF','Hortaea werneckii','Y','2025-10-23 00:00:00'),(86276,11,'XN119','Hortaea','Y','2025-10-23 00:00:00'),(86275,11,'LB30.62','Horseshoe kidney','Y','2025-10-23 00:00:00'),(86274,11,'XM7D92','Horsefly venom','Y','2025-10-23 00:00:00'),(86273,11,'XE5VC','Horse, pony, donkey, mule, ass','Y','2025-10-23 00:00:00'),(86272,11,'XE1ZJ','Horse as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(86271,11,'XM3KZ0','Horse anti-human lymphocytic serum','Y','2025-10-23 00:00:00'),(86270,11,'XM31U2','Hornet venom','Y','2025-10-23 00:00:00'),(86269,11,'XE322','Hornet','Y','2025-10-23 00:00:00'),(86268,11,'8D8A.1','Horner syndrome','Y','2025-10-23 00:00:00'),(86267,11,'XM6LU5','Horned viper snake venom','Y','2025-10-23 00:00:00'),(86266,11,'XM93X7','Hormone thyroid','Y','2025-10-23 00:00:00'),(86265,11,'XM4534','Hormone oxytocic','Y','2025-10-23 00:00:00'),(86264,11,'XM9FT7','Hormone cancer therapy','Y','2025-10-23 00:00:00'),(86263,11,'XM4M26','Hormone antidiabetic agents','Y','2025-10-23 00:00:00'),(86262,11,'XM0XY8','Hormone adrenal cortical steroids','Y','2025-10-23 00:00:00'),(86261,11,'9C83.00','Horizontal gaze palsy','Y','2025-10-23 00:00:00'),(86260,11,'9C83.10','Horizontal conjugate gaze deviation','Y','2025-10-23 00:00:00'),(86259,11,'9A01.2Z','Hordeolum, unspecified','Y','2025-10-23 00:00:00'),(86258,11,'9A01.21','Hordeolum internum','Y','2025-10-23 00:00:00'),(86257,11,'9A01.20','Hordeolum externum','Y','2025-10-23 00:00:00'),(86256,11,'9A01.2','Hordeolum','Y','2025-10-23 00:00:00'),(86255,11,'MB22.3','Hopelessness','Y','2025-10-23 00:00:00'),(86254,11,'1F68','Hookworm diseases','Y','2025-10-23 00:00:00'),(86253,11,'XN69Y','Hookworm','Y','2025-10-23 00:00:00'),(86252,11,'XA97A0','Hook of hamate','Y','2025-10-23 00:00:00'),(86251,11,'XM42T0','Honey bee venom','Y','2025-10-23 00:00:00'),(86250,11,'3A50.03','Homozygous or compound heterozygous alpha0 thalassaemia','Y','2025-10-23 00:00:00'),(86249,11,'XM5443','Homo-tet','Y','2025-10-23 00:00:00'),(86248,11,'XM6694','Homosalate','Y','2025-10-23 00:00:00'),(86247,11,'9D42.6Z','Homonymous hemianopia or quadrant anopia, unspecified','Y','2025-10-23 00:00:00'),(86246,11,'9D42.6','Homonymous hemianopia or quadrant anopia','Y','2025-10-23 00:00:00'),(86245,11,'XM2305','Homochlorcyclizine','Y','2025-10-23 00:00:00'),(86244,11,'5C50.F2','Homocarnosinosis','Y','2025-10-23 00:00:00'),(86242,11,'QD71.0','Homelessness','Y','2025-10-23 00:00:00'),(86243,11,'MB26.3','Homicidal ideation','Y','2025-10-23 00:00:00'),(86241,11,'XE8PL','Home for the elderly','Y','2025-10-23 00:00:00'),(86239,11,'XM1642','Homatropine methylbromide','Y','2025-10-23 00:00:00'),(86240,11,'XE266','Home','Y','2025-10-23 00:00:00'),(86237,11,'LA05.2','Holoprosencephaly','Y','2025-10-23 00:00:00'),(86238,11,'XM7832','Homatropine','Y','2025-10-23 00:00:00'),(86236,11,'XE4TG','Holiday park or campground','Y','2025-10-23 00:00:00'),(86235,11,'XE4CE','Holiday decorations','Y','2025-10-23 00:00:00'),(86234,11,'XE4FZ','Holder component of medical device','Y','2025-10-23 00:00:00'),(86233,11,'XE77A','Hoist machinery','Y','2025-10-23 00:00:00'),(86232,11,'XH11Y2','Hodgkin sarcoma','Y','2025-10-23 00:00:00'),(86231,11,'2B30.Z','Hodgkin lymphoma, unspecified','Y','2025-10-23 00:00:00'),(86230,11,'XH94F7','Hodgkin lymphoma, NOS','Y','2025-10-23 00:00:00'),(86229,11,'XH6SC5','Hodgkin lymphoma, nodular sclerosis, NOS','Y','2025-10-23 00:00:00'),(86228,11,'XH8K28','Hodgkin lymphoma, nodular sclerosis, grade 2','Y','2025-10-23 00:00:00'),(86227,11,'XH62T3','Hodgkin lymphoma, nodular sclerosis, grade 1','Y','2025-10-23 00:00:00'),(86226,11,'XH51K7','Hodgkin lymphoma, nodular sclerosis, cellular phase','Y','2025-10-23 00:00:00'),(86225,11,'XH2FG7','Hodgkin lymphoma, nodular lymphocyte predominant','Y','2025-10-23 00:00:00'),(86224,11,'XH9NJ5','Hodgkin lymphoma, mixed cellularity, NOS','Y','2025-10-23 00:00:00'),(86223,11,'XH8CB2','Hodgkin lymphoma, lymphocyte-rich','Y','2025-10-23 00:00:00'),(86222,11,'XH4E19','Hodgkin lymphoma, lymphocyte depletion, reticular','Y','2025-10-23 00:00:00'),(86221,11,'XH7RN9','Hodgkin lymphoma, lymphocyte depletion, NOS','Y','2025-10-23 00:00:00'),(86220,11,'XH7299','Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis','Y','2025-10-23 00:00:00'),(86219,11,'2B30','Hodgkin lymphoma','Y','2025-10-23 00:00:00'),(86218,11,'XH13B0','Hodgkin granuloma','Y','2025-10-23 00:00:00'),(86217,11,'XH7KX4','Hodgkin disease, lymphocyte predominance, NOS','Y','2025-10-23 00:00:00'),(86216,11,'XM57S7','Hobo spider venom','Y','2025-10-23 00:00:00'),(86215,11,'XH8PD3','Hobnail hemangioma','Y','2025-10-23 00:00:00'),(86214,11,'SC92','Hoarseness disorder (TM1)','Y','2025-10-23 00:00:00'),(86213,11,'MA82.10','Hoarseness','Y','2025-10-23 00:00:00'),(86212,11,'6B24.Z','Hoarding disorder, unspecified','Y','2025-10-23 00:00:00'),(86211,11,'6B24.1','Hoarding disorder with poor to absent insight','Y','2025-10-23 00:00:00'),(86210,11,'6B24.0','Hoarding disorder with fair to good insight','Y','2025-10-23 00:00:00'),(86209,11,'6B24','Hoarding disorder','Y','2025-10-23 00:00:00'),(86208,11,'XM5SK2','HMG CoA reductase inhibitors','Y','2025-10-23 00:00:00'),(86207,11,'9B72.01','HIV retinitis','Y','2025-10-23 00:00:00'),(86206,11,'1C62.3','HIV disease clinical stage 4 without mention of tuberculosis or malaria','Y','2025-10-23 00:00:00'),(86205,11,'1C60.3Z','HIV disease clinical stage 4 associated with tuberculosis, unspecified','Y','2025-10-23 00:00:00'),(86204,11,'1C60.3','HIV disease clinical stage 4 associated with tuberculosis','Y','2025-10-23 00:00:00'),(86203,11,'1C61.3Z','HIV disease clinical stage 4 associated with malaria, unspecified','Y','2025-10-23 00:00:00'),(86202,11,'1C61.3','HIV disease clinical stage 4 associated with malaria','Y','2025-10-23 00:00:00'),(86201,11,'1C62.2','HIV disease clinical stage 3 without mention of tuberculosis or malaria','Y','2025-10-23 00:00:00'),(86200,11,'1C60.2','HIV disease clinical stage 3 associated with tuberculosis','Y','2025-10-23 00:00:00'),(86199,11,'1C61.2','HIV disease clinical stage 3 associated with malaria','Y','2025-10-23 00:00:00'),(86198,11,'1C62.1','HIV disease clinical stage 2 without mention of tuberculosis or malaria','Y','2025-10-23 00:00:00'),(86197,11,'1C60.1','HIV disease clinical stage 2 associated with tuberculosis','Y','2025-10-23 00:00:00'),(86196,11,'1C61.1','HIV disease clinical stage 2 associated with malaria','Y','2025-10-23 00:00:00'),(86195,11,'1C62.0','HIV disease clinical stage 1 without mention of tuberculosis or malaria','Y','2025-10-23 00:00:00'),(86194,11,'1C60.0','HIV disease clinical stage 1 associated with tuberculosis','Y','2025-10-23 00:00:00'),(86193,11,'1C61.0','HIV disease clinical stage 1 associated with malaria','Y','2025-10-23 00:00:00'),(86192,11,'XM78X7','Histrelin','Y','2025-10-23 00:00:00'),(86191,11,'QE51.1','History of spouse or partner violence','Y','2025-10-23 00:00:00'),(86190,11,'XE8UH','Historical data analysis','Y','2025-10-23 00:00:00'),(86189,11,'1F2A.Z','Histoplasmosis, unspecified','Y','2025-10-23 00:00:00'),(86188,11,'1F2A.1','Histoplasmosis due to Histoplasma duboisii','Y','2025-10-23 00:00:00'),(86187,11,'1F2A','Histoplasmosis','Y','2025-10-23 00:00:00'),(86186,11,'XM3Y60','Histoplasmin','Y','2025-10-23 00:00:00'),(86185,11,'XN7YN','Histoplasma duboisii','Y','2025-10-23 00:00:00'),(86184,11,'XN8VH','Histoplasma capsulatum','Y','2025-10-23 00:00:00'),(86183,11,'XN9LU','Histoplasma','Y','2025-10-23 00:00:00'),(86182,11,'MA17','Histological findings in blood, blood-forming organs, or the immune system','Y','2025-10-23 00:00:00'),(86181,11,'XH8VV4','Histiocytosis X, NOS','Y','2025-10-23 00:00:00'),(86180,11,'EK92','Histiocytoses of uncertain malignant potential','Y','2025-10-23 00:00:00'),(86179,11,'XH1UJ5','Histiocytoma, NOS','Y','2025-10-23 00:00:00'),(86178,11,'2B31.1','Histiocytic sarcoma','Y','2025-10-23 00:00:00'),(86177,11,'XH4JD4','Histiocytic sarcoma','Y','2025-10-23 00:00:00'),(86176,11,'2B31.Z','Histiocytic or dendritic cell neoplasms, unspecified','Y','2025-10-23 00:00:00'),(86175,11,'2B31','Histiocytic or dendritic cell neoplasms','Y','2025-10-23 00:00:00'),(86174,11,'XH7PV7','Histiocytic medullary reticulosis','Y','2025-10-23 00:00:00'),(86173,11,'5C50.20','Histidinaemia','Y','2025-10-23 00:00:00'),(86172,11,'XM4NS9','Histapyrrodine','Y','2025-10-23 00:00:00'),(86171,11,'XM1286','Histamine phosphate','Y','2025-10-23 00:00:00'),(86170,11,'XM5KS2','Histamine dihydrochloride','Y','2025-10-23 00:00:00'),(86169,11,'ED72.Z','Hirsutism, unspecified','Y','2025-10-23 00:00:00'),(86168,11,'ED72.1','Hirsutism associated with hyperandrogenaemia','Y','2025-10-23 00:00:00'),(86167,11,'ED72','Hirsutism and syndromes with hirsutism','Y','2025-10-23 00:00:00'),(86166,11,'LB16.1','Hirschsprung disease','Y','2025-10-23 00:00:00'),(86165,11,'XE37L','Hippopotamus','Y','2025-10-23 00:00:00'),(86164,11,'XM0MJ2','Hippocastani semen','Y','2025-10-23 00:00:00'),(86163,11,'XA7BD1','Hippocampus','Y','2025-10-23 00:00:00'),(86162,11,'XA4XS4','Hip joint','Y','2025-10-23 00:00:00'),(86161,11,'XM1RP5','Hinkle\'s pills','Y','2025-10-23 00:00:00'),(86160,11,'XE5ZS','Hinge component of medical device','Y','2025-10-23 00:00:00'),(86159,11,'XA99M7','Hindfoot','Y','2025-10-23 00:00:00'),(86158,11,'XH9LH4','Hilus cell tumour','Y','2025-10-23 00:00:00'),(86157,11,'XA29Y4','Hilum of right lung','Y','2025-10-23 00:00:00'),(86156,11,'XA6VA2','Hilum of left lung','Y','2025-10-23 00:00:00'),(86155,11,'XA5MW1','Hilar lymph node','Y','2025-10-23 00:00:00'),(86154,11,'2C18.0','Hilar cholangiocarcinoma','Y','2025-10-23 00:00:00'),(86153,11,'XE35R','High-tension overhead power line','Y','2025-10-23 00:00:00'),(86152,11,'XE2JA','High-pressure jet','Y','2025-10-23 00:00:00'),(86151,11,'BC63.10','High-grade second degree atrioventricular block','Y','2025-10-23 00:00:00'),(86150,11,'XE485','High test results','Y','2025-10-23 00:00:00'),(86148,11,'XE9D6','High readings','Y','2025-10-23 00:00:00'),(86149,11,'XE6H7','High sensing threshold','Y','2025-10-23 00:00:00'),(86147,11,'XE0K7','High pH','Y','2025-10-23 00:00:00'),(86146,11,'BD12','High output syndromes','Y','2025-10-23 00:00:00'),(86145,11,'XA1HH6','High lateral wall of heart','Y','2025-10-23 00:00:00'),(86144,11,'XH6TL0','High grade surface osteosarcoma','Y','2025-10-23 00:00:00'),(86143,11,'2E67.13','High grade squamous intraepithelial lesion of vulva , HPV-associated','Y','2025-10-23 00:00:00'),(86142,11,'2E67.22','High grade squamous intraepithelial lesion of vagina','Y','2025-10-23 00:00:00'),(86141,11,'2E66.2','High grade squamous intraepithelial lesion of cervix uteri','Y','2025-10-23 00:00:00'),(86140,11,'XH24N6','High grade serous carcinoma','Y','2025-10-23 00:00:00'),(86139,11,'2C73.03','High grade serous adenocarcinoma of ovary','Y','2025-10-23 00:00:00'),(86138,11,'2E67.5','High grade intraepithelial lesion of prostate','Y','2025-10-23 00:00:00'),(86137,11,'XH2WM7','High grade B-cell lymphoma, NOS','Y','2025-10-23 00:00:00'),(86136,11,'XH23Z3','High grade B-cell lymphoma with MYC and BCL2 and/or BCL6 rearrangements','Y','2025-10-23 00:00:00'),(86135,11,'XE39K','High chair, booster seat','Y','2025-10-23 00:00:00'),(86134,11,'XE18Z','High capture threshold','Y','2025-10-23 00:00:00'),(86133,11,'3A51.7','High affinity haemoglobin','Y','2025-10-23 00:00:00'),(86132,11,'LD27.03','Hidrotic ectodermal dysplasia, Clouston type','Y','2025-10-23 00:00:00'),(86131,11,'XM2SA0','hidrosmin','Y','2025-10-23 00:00:00'),(86130,11,'EK70.3','Hidrocystoma','Y','2025-10-23 00:00:00'),(86129,11,'XH7NR3','Hidrocystoma','Y','2025-10-23 00:00:00'),(86128,11,'XH4MV7','Hidradenoma, NOS','Y','2025-10-23 00:00:00'),(86127,11,'XH7NK9','Hidradenocarcinoma','Y','2025-10-23 00:00:00'),(86126,11,'ED92.0','Hidradenitis suppurativa','Y','2025-10-23 00:00:00'),(86125,11,'MD11.6','Hiccough','Y','2025-10-23 00:00:00'),(86124,11,'XH1054','Hibernoma','Y','2025-10-23 00:00:00'),(86123,11,'XM6RG9','Hib, purified antigen conjugated vaccines','Y','2025-10-23 00:00:00'),(86122,11,'XM7F70','Hib, combinations with toxoids vaccines','Y','2025-10-23 00:00:00'),(86121,11,'XM81F7','Hib, combinations with pertussis and toxoids vaccines','Y','2025-10-23 00:00:00'),(86120,11,'XM0X86','Hib, combinations with meningococcus C, conjugated vaccines','Y','2025-10-23 00:00:00'),(86119,11,'XM01R0','Hexylresorcinol','Y','2025-10-23 00:00:00'),(86118,11,'XM76M6','Hexylcaine','Y','2025-10-23 00:00:00'),(86117,11,'XM37U9','Hexyl cinnamal','Y','2025-10-23 00:00:00'),(86116,11,'XM1GA5','Hexoprenaline','Y','2025-10-23 00:00:00'),(86115,11,'XM1WN2','Hexocyclium','Y','2025-10-23 00:00:00'),(86114,11,'XM5MP5','Hexobendine','Y','2025-10-23 00:00:00'),(86113,11,'XM5C03','Hexobarbital rectal','Y','2025-10-23 00:00:00'),(86112,11,'XM08U4','Hexobarbital','Y','2025-10-23 00:00:00'),(86111,11,'XM6UT2','Hexetidine','Y','2025-10-23 00:00:00'),(86110,11,'XM1VL2','Hexethal (sodium)','Y','2025-10-23 00:00:00'),(86109,11,'XM8WE5','Hexestrol','Y','2025-10-23 00:00:00'),(86108,11,'XM82Z5','Hexcarbacholine bromide','Y','2025-10-23 00:00:00'),(86107,11,'XM8WX2','Hexasonium iodide','Y','2025-10-23 00:00:00'),(86106,11,'XM5084','Hexapropymate','Y','2025-10-23 00:00:00'),(86105,11,'XM9WH2','Hexanuorenium','Y','2025-10-23 00:00:00'),(86104,11,'XM7KB7','Hexanone','Y','2025-10-23 00:00:00'),(86103,11,'XM0UW4','Hexaminolevulinate','Y','2025-10-23 00:00:00'),(86102,11,'XM7RK5','Hexamidine','Y','2025-10-23 00:00:00'),(86101,11,'XM2TA7','Hexamethylenetetramine','Y','2025-10-23 00:00:00'),(86100,11,'XM90S5','Hexamethonium bromide','Y','2025-10-23 00:00:00'),(86099,11,'XM0JA8','Hexalen','Y','2025-10-23 00:00:00'),(86098,11,'XM6C11','Hexahydrocresol','Y','2025-10-23 00:00:00'),(86097,11,'XM4QR6','Hexahydrobenzene','Y','2025-10-23 00:00:00'),(86096,11,'XM0L61','Hexafluronium','Y','2025-10-23 00:00:00'),(86095,11,'XM9QC2','Hexafluorenium bromide','Y','2025-10-23 00:00:00'),(86094,11,'XM5G36','Hexaethyl tetraphosphate','Y','2025-10-23 00:00:00'),(86093,11,'XM9CA7','Hexadimethrine (bromide)','Y','2025-10-23 00:00:00'),(86092,11,'XM4A49','Hexadiline','Y','2025-10-23 00:00:00'),(86091,11,'XM95K6','Hexachlorophene','Y','2025-10-23 00:00:00'),(86089,11,'XM4AW6','Hexachlorobenzene','Y','2025-10-23 00:00:00'),(86090,11,'XM8PE4','Hexachlorocyclohexane','Y','2025-10-23 00:00:00'),(86088,11,'ED91.0','Heterotopic sebaceous glands','Y','2025-10-23 00:00:00'),(86087,11,'XH26N1','Heterotopia-associated carcinoma','Y','2025-10-23 00:00:00'),(86086,11,'XN23M','Heterophyes','Y','2025-10-23 00:00:00'),(86085,11,'9C80.4','Heterophoria','Y','2025-10-23 00:00:00'),(86084,11,'9D42.7Z','Heteronymous hemianopia or quadrant anopia, unspecified','Y','2025-10-23 00:00:00'),(86082,11,'XM9HP3','Hetacillin','Y','2025-10-23 00:00:00'),(86083,11,'9D42.7','Heteronymous hemianopia or quadrant anopia','Y','2025-10-23 00:00:00'),(86081,11,'XM0WZ5','Hesperidin','Y','2025-10-23 00:00:00'),(86080,11,'MF50.60','Hesitancy of micturition','Y','2025-10-23 00:00:00'),(86079,11,'XM1783','Herplex','Y','2025-10-23 00:00:00'),(86078,11,'SB7A','Herpes zoster disorder (TM1)','Y','2025-10-23 00:00:00'),(86077,11,'XN5V1','Herpes simplex virus-2','Y','2025-10-23 00:00:00'),(86076,11,'XN41T','Herpes simplex virus-1','Y','2025-10-23 00:00:00'),(86074,11,'1F00.01','Herpes simplex labialis','Y','2025-10-23 00:00:00'),(86075,11,'1F00.20','Herpes simplex meningitis','Y','2025-10-23 00:00:00'),(86073,11,'1F00.10','Herpes simplex keratitis','Y','2025-10-23 00:00:00'),(86072,11,'1F00.Z','Herpes simplex infections, unspecified','Y','2025-10-23 00:00:00'),(86071,11,'1F00','Herpes simplex infections','Y','2025-10-23 00:00:00'),(86070,11,'1F00.1Z','Herpes simplex infection of the eye, unspecified','Y','2025-10-23 00:00:00'),(86069,11,'1F00.1','Herpes simplex infection of the eye','Y','2025-10-23 00:00:00'),(86068,11,'1F00.0','Herpes simplex infection of skin or mucous membrane','Y','2025-10-23 00:00:00'),(86067,11,'1F00.00','Herpes simplex infection of skin','Y','2025-10-23 00:00:00'),(86066,11,'1A94.1','Herpes simplex infection of perianal skin or rectum','Y','2025-10-23 00:00:00'),(86065,11,'1A94.0','Herpes simplex infection of genitalia or urogenital tract','Y','2025-10-23 00:00:00'),(86064,11,'1F00.11','Herpes simplex infection of eyelid','Y','2025-10-23 00:00:00'),(86063,11,'1F00.2','Herpes simplex infection of central nervous system','Y','2025-10-23 00:00:00'),(86062,11,'1F00.02','Herpes simplex gingivostomatitis','Y','2025-10-23 00:00:00'),(86061,11,'DD5Z','Hernias, unspecified','Y','2025-10-23 00:00:00'),(86060,11,'3A01.0','Hereditary Vitamin B12 deficiency anaemia','Y','2025-10-23 00:00:00'),(86059,11,'3B60.0','Hereditary vascular purpura','Y','2025-10-23 00:00:00'),(86058,11,'3B61.0','Hereditary thrombophilia','Y','2025-10-23 00:00:00'),(86057,11,'3B64.01','Hereditary thrombocytopenia','Y','2025-10-23 00:00:00'),(86056,11,'3A72.01','Hereditary syndromic sideroblastic anaemia','Y','2025-10-23 00:00:00'),(86055,11,'8B44.0Z','Hereditary spastic paraplegia, unspecified','Y','2025-10-23 00:00:00'),(86054,11,'8B44.0','Hereditary spastic paraplegia','Y','2025-10-23 00:00:00'),(86053,11,'EC20.1','Hereditary skin peeling','Y','2025-10-23 00:00:00'),(86052,11,'3A72.00','Hereditary sideroblastic anaemias','Y','2025-10-23 00:00:00'),(86051,11,'8C21.Z','Hereditary sensory or autonomic neuropathy, unspecified','Y','2025-10-23 00:00:00'),(86050,11,'8C21','Hereditary sensory or autonomic neuropathy','Y','2025-10-23 00:00:00'),(86049,11,'8C21.3','Hereditary sensory and autonomic neuropathy type V','Y','2025-10-23 00:00:00'),(86048,11,'8C21.2','Hereditary sensory and autonomic neuropathy type IV','Y','2025-10-23 00:00:00'),(86047,11,'8C21.1','Hereditary sensory and autonomic neuropathy type III','Y','2025-10-23 00:00:00'),(86046,11,'8C21.0','Hereditary sensory and autonomic neuropathy type I','Y','2025-10-23 00:00:00'),(86045,11,'3A60.1','Hereditary pure red cell aplasia','Y','2025-10-23 00:00:00'),(86044,11,'3A50.4','Hereditary persistence of fetal haemoglobin','Y','2025-10-23 00:00:00'),(86043,11,'EC20.3','Hereditary palmoplantar keratodermas','Y','2025-10-23 00:00:00'),(86041,11,'3A03.0','Hereditary orotic aciduria','Y','2025-10-23 00:00:00'),(86042,11,'EC20.3Z','Hereditary palmoplantar keratoderma of unspecified type','Y','2025-10-23 00:00:00'),(86040,11,'9C40.8','Hereditary optic neuropathy','Y','2025-10-23 00:00:00'),(86039,11,'DB93.20','Hereditary North American Indian childhood cirrhosis','Y','2025-10-23 00:00:00'),(86038,11,'8C2Z','Hereditary neuropathy, unspecified','Y','2025-10-23 00:00:00'),(86037,11,'8C20.Z','Hereditary motor and sensory neuropathy, unspecified','Y','2025-10-23 00:00:00'),(86036,11,'8C20','Hereditary motor and sensory neuropathy','Y','2025-10-23 00:00:00'),(86035,11,'3A92','Hereditary methaemoglobinaemia','Y','2025-10-23 00:00:00'),(86034,11,'XH5085','Hereditary leiomyomatosis and renal cell carcinoma (HLRCC) syndrome-associated renal cell carcinoma','Y','2025-10-23 00:00:00'),(86033,11,'AB56','Hereditary hearing loss','Y','2025-10-23 00:00:00'),(86032,11,'LA90.00','Hereditary haemorrhagic telangiectasia','Y','2025-10-23 00:00:00'),(86031,11,'3A10.Z','Hereditary haemolytic anaemia, unspecified','Y','2025-10-23 00:00:00'),(86030,11,'3A10','Hereditary haemolytic anaemia','Y','2025-10-23 00:00:00'),(86029,11,'5C51.50','Hereditary fructose intolerance','Y','2025-10-23 00:00:00'),(86028,11,'3A02.0','Hereditary folate deficiency anaemia','Y','2025-10-23 00:00:00'),(86027,11,'3B14.1','Hereditary factor X deficiency','Y','2025-10-23 00:00:00'),(86026,11,'3B10.Z','Hereditary factor VIII deficiency, unspecified','Y','2025-10-23 00:00:00'),(86025,11,'3B10.1','Hereditary factor VIII deficiency with anti-factor VIII inhibitor','Y','2025-10-23 00:00:00'),(86024,11,'3B10','Hereditary factor VIII deficiency','Y','2025-10-23 00:00:00'),(86023,11,'3B11.Z','Hereditary factor IX deficiency, unspecified','Y','2025-10-23 00:00:00'),(86022,11,'3B11','Hereditary factor IX deficiency','Y','2025-10-23 00:00:00'),(86021,11,'8A03.14','Hereditary episodic ataxia','Y','2025-10-23 00:00:00'),(86020,11,'3A10.2','Hereditary elliptocytosis','Y','2025-10-23 00:00:00'),(86019,11,'3B14.0','Hereditary deficiency of factor I','Y','2025-10-23 00:00:00'),(86018,11,'9A70.Z','Hereditary corneal dystrophies, unspecified','Y','2025-10-23 00:00:00'),(86017,11,'9A70','Hereditary corneal dystrophies','Y','2025-10-23 00:00:00'),(86016,11,'DC32.2','Hereditary chronic pancreatitis','Y','2025-10-23 00:00:00'),(86015,11,'8B22.CZ','Hereditary cerebrovascular diseases, unspecified','Y','2025-10-23 00:00:00'),(86014,11,'8B22.C','Hereditary cerebrovascular diseases','Y','2025-10-23 00:00:00'),(86013,11,'2C65','Hereditary breast and ovarian cancer syndrome','Y','2025-10-23 00:00:00'),(86012,11,'5D00.20','Hereditary ATTR amyloidosis','Y','2025-10-23 00:00:00'),(86011,11,'8A03.1Z','Hereditary ataxia, unspecified','Y','2025-10-23 00:00:00'),(86010,11,'8A03.1','Hereditary ataxia','Y','2025-10-23 00:00:00'),(86009,11,'4A00.14','Hereditary angioedema','Y','2025-10-23 00:00:00'),(86008,11,'5D00.2Z','Hereditary amyloidosis, unspecified','Y','2025-10-23 00:00:00'),(86007,11,'5D00.2','Hereditary amyloidosis','Y','2025-10-23 00:00:00'),(86006,11,'EC21.2','Hereditary alopecia or hypotrichosis','Y','2025-10-23 00:00:00'),(86005,11,'4A01.00','Hereditary agammaglobulinaemia with profoundly reduced or absent B cells','Y','2025-10-23 00:00:00'),(86004,11,'DC31.4','Hereditary acute pancreatitis','Y','2025-10-23 00:00:00'),(86002,11,'XB7K','Hereditary','Y','2025-10-23 00:00:00'),(86003,11,'EC20.2','Hereditary acantholytic dermatoses','Y','2025-10-23 00:00:00'),(86001,11,'XM6J29','Herbicide','Y','2025-10-23 00:00:00'),(86000,11,'XM7TZ6','Heptenophos','Y','2025-10-23 00:00:00'),(85999,11,'XM8Y13','Heptaminol','Y','2025-10-23 00:00:00'),(85998,11,'XM35C1','Heptalgin','Y','2025-10-23 00:00:00'),(85997,11,'XM2JS5','Heptachlor','Y','2025-10-23 00:00:00'),(85996,11,'XM7ZK9','Heptabarbital','Y','2025-10-23 00:00:00'),(85995,11,'XM8317','Hepronicate','Y','2025-10-23 00:00:00'),(85994,11,'2A90.8','Hepatosplenic T-cell lymphoma','Y','2025-10-23 00:00:00'),(85993,11,'XH8D49','Hepatosplenic T-cell lymphoma','Y','2025-10-23 00:00:00'),(85992,11,'DB99.2','Hepatorenal syndrome','Y','2025-10-23 00:00:00'),(85991,11,'DB99.4','Hepatopulmonary syndrome','Y','2025-10-23 00:00:00'),(85990,11,'ME10.00','Hepatomegaly, not elsewhere classified','Y','2025-10-23 00:00:00'),(85989,11,'ME10.02','Hepatomegaly with splenomegaly','Y','2025-10-23 00:00:00'),(85988,11,'ME10.0','Hepatomegaly or splenomegaly','Y','2025-10-23 00:00:00'),(85986,11,'XH7MV6','Hepatoid adenocarcinoma','Y','2025-10-23 00:00:00'),(85987,11,'XH7SG5','Hepatoid yolk sac tumour','Y','2025-10-23 00:00:00'),(85985,11,'XH3T17','Hepatocellular carcinoma, spindle cell variant','Y','2025-10-23 00:00:00'),(85984,11,'XH5761','Hepatocellular carcinoma, scirrhous','Y','2025-10-23 00:00:00'),(85983,11,'XH0G90','Hepatocellular carcinoma, pleomorphic type','Y','2025-10-23 00:00:00'),(85982,11,'XH4W48','Hepatocellular carcinoma, NOS','Y','2025-10-23 00:00:00'),(85981,11,'XH9Q35','Hepatocellular carcinoma, fibrolamellar','Y','2025-10-23 00:00:00'),(85980,11,'XH4T58','Hepatocellular carcinoma, clear cell type','Y','2025-10-23 00:00:00'),(85979,11,'2C12.02','Hepatocellular carcinoma of liver','Y','2025-10-23 00:00:00'),(85978,11,'XH33R5','Hepatoblastoma, mixed epithelial-mesenchymal','Y','2025-10-23 00:00:00'),(85977,11,'XH0H07','Hepatoblastoma, epithelioid','Y','2025-10-23 00:00:00'),(85976,11,'XH2WE3','Hepatoblastoma','Y','2025-10-23 00:00:00'),(85975,11,'2C12.01','Hepatoblastoma','Y','2025-10-23 00:00:00'),(85974,11,'XA0W19','Hepatobiliary system','Y','2025-10-23 00:00:00'),(85973,11,'XN41M','Hepatitis virus','Y','2025-10-23 00:00:00'),(85972,11,'XM6LL6','Hepatitis vaccines','Y','2025-10-23 00:00:00'),(85971,11,'XN6BW','Hepatitis F virus','Y','2025-10-23 00:00:00'),(85970,11,'XN7TG','Hepatitis E virus','Y','2025-10-23 00:00:00'),(85969,11,'1F57.0','Hepatitis due to Toxoplasma gondii','Y','2025-10-23 00:00:00'),(85968,11,'XN99N','Hepatitis D virus','Y','2025-10-23 00:00:00'),(85966,11,'XM9V38','Hepatitis B, purified antigen','Y','2025-10-23 00:00:00'),(85967,11,'XN1EZ','Hepatitis C virus','Y','2025-10-23 00:00:00'),(85965,11,'XN0GA','Hepatitis B virus','Y','2025-10-23 00:00:00'),(85964,11,'XM6JK2','Hepatitis B immunoglobulin','Y','2025-10-23 00:00:00'),(85963,11,'XM2A12','Hepatitis A, inactivated, whole virus','Y','2025-10-23 00:00:00'),(85962,11,'XN40D','Hepatitis A virus','Y','2025-10-23 00:00:00'),(85961,11,'XM7LD1','Hepatitis A immunoglobulin','Y','2025-10-23 00:00:00'),(85960,11,'4A01.33','Hepatic veno-occlusive disease immunodeficiency syndrome','Y','2025-10-23 00:00:00'),(85959,11,'DB98.6','Hepatic veno-occlusive disease','Y','2025-10-23 00:00:00'),(85958,11,'XA2UD7','Hepatic Vein','Y','2025-10-23 00:00:00'),(85957,11,'XM9Q94','Hepatic secretion stimulant','Y','2025-10-23 00:00:00'),(85956,11,'XA4YZ0','Hepatic plexus','Y','2025-10-23 00:00:00'),(85955,11,'XA11U1','Hepatic lymph node','Y','2025-10-23 00:00:00'),(85954,11,'DB98.A','Hepatic haemorrhage','Y','2025-10-23 00:00:00'),(85953,11,'XA95L3','Hepatic flexure of colon','Y','2025-10-23 00:00:00'),(85952,11,'DB93.Z','Hepatic fibrosis or cirrhosis, unspecified','Y','2025-10-23 00:00:00'),(85951,11,'DB93','Hepatic fibrosis or cirrhosis','Y','2025-10-23 00:00:00'),(85950,11,'DB93.0','Hepatic fibrosis','Y','2025-10-23 00:00:00'),(85949,11,'DB99.7','Hepatic failure without mention whether acute or chronic','Y','2025-10-23 00:00:00'),(85948,11,'DB99.5','Hepatic encephalopathy','Y','2025-10-23 00:00:00'),(85947,11,'DB99.1Z','Hepatic cyst, unspecified','Y','2025-10-23 00:00:00'),(85946,11,'DB99.1','Hepatic cyst','Y','2025-10-23 00:00:00'),(85945,11,'DB93.1','Hepatic cirrhosis','Y','2025-10-23 00:00:00'),(85944,11,'XA2LQ8','Hepatic branch of the left gastric artery','Y','2025-10-23 00:00:00'),(85943,11,'XA4415','Hepatic bile ducts','Y','2025-10-23 00:00:00'),(85942,11,'DB97.1','Hepatic berylliosis','Y','2025-10-23 00:00:00'),(85941,11,'DB98.9','Hepatic artery aneurysm','Y','2025-10-23 00:00:00'),(85940,11,'XA5AP2','Hepatic artery','Y','2025-10-23 00:00:00'),(85939,11,'XM5LC3','Heparinoid (systemic)','Y','2025-10-23 00:00:00'),(85938,11,'XM5YT5','Heparin-fraction','Y','2025-10-23 00:00:00'),(85937,11,'XM4S57','Heparin sodium','Y','2025-10-23 00:00:00'),(85936,11,'XM2YP8','Heparin and heparin derivatives','Y','2025-10-23 00:00:00'),(85935,11,'XM35E4','Heparin action reverser','Y','2025-10-23 00:00:00'),(85934,11,'XM1MN3','Heparin','Y','2025-10-23 00:00:00'),(85933,11,'1D63','Henipavirus encephalitis','Y','2025-10-23 00:00:00'),(85932,11,'XN98T','Henipavirus','Y','2025-10-23 00:00:00'),(85930,11,'XM8GV4','Hemostyptic','Y','2025-10-23 00:00:00'),(85931,11,'XN53N','Hendra virus','Y','2025-10-23 00:00:00'),(85929,11,'XM8X82','Hemostatic drug, systemic','Y','2025-10-23 00:00:00'),(85928,11,'XM01H1','Hemophilus influenzae B and poliomyelitis vaccines','Y','2025-10-23 00:00:00'),(85927,11,'XM32L7','Hemophilus influenzae B and hepatitis B vaccines','Y','2025-10-23 00:00:00'),(85925,11,'XD2RV2','Hemoperfusion resin filters','Y','2025-10-23 00:00:00'),(85926,11,'XD2QE7','Hemoperfusion sets','Y','2025-10-23 00:00:00'),(85924,11,'XD9GN2','Hemoperfusion filters others','Y','2025-10-23 00:00:00'),(85923,11,'XD1V74','Hemoperfusion filters','Y','2025-10-23 00:00:00'),(85922,11,'XD27T5','Hemoperfusion carbon filters','Y','2025-10-23 00:00:00'),(85921,11,'XM4MK5','Hemoglobin raffimer','Y','2025-10-23 00:00:00'),(85920,11,'XM6W72','Hemoglobin glutamer','Y','2025-10-23 00:00:00'),(85919,11,'XM8BW6','Hemoglobin crosfumaril','Y','2025-10-23 00:00:00'),(85918,11,'8A80.10','Hemiplegic migraine','Y','2025-10-23 00:00:00'),(85917,11,'MB53.Z','Hemiplegia, unspecified','Y','2025-10-23 00:00:00'),(85916,11,'MB53','Hemiplegia','Y','2025-10-23 00:00:00'),(85915,11,'8A00.21','Hemiparkinsonism hemiatrophy syndrome','Y','2025-10-23 00:00:00'),(85914,11,'9D52','Hemifield losses','Y','2025-10-23 00:00:00'),(85913,11,'8B88.2','Hemifacial spasm','Y','2025-10-23 00:00:00'),(85912,11,'8A01.2Z','Hemichorea or hemiballismus, unspecified','Y','2025-10-23 00:00:00'),(85911,11,'8A01.2','Hemichorea or hemiballismus','Y','2025-10-23 00:00:00'),(85910,11,'8A01.20','Hemichorea','Y','2025-10-23 00:00:00'),(85909,11,'8A01.22','Hemiballism','Y','2025-10-23 00:00:00'),(85908,11,'XA4GF1','Hemiazygos vein','Y','2025-10-23 00:00:00'),(85907,11,'9D42.3','Hemianopic or quadrantic loss','Y','2025-10-23 00:00:00'),(85906,11,'XE7AM','Hematological problem with device identified','Y','2025-10-23 00:00:00'),(85905,11,'XM20E6','Hematinic preparation','Y','2025-10-23 00:00:00'),(85904,11,'XM8K98','Hematin','Y','2025-10-23 00:00:00'),(85903,11,'XH6264','Hemangiosarcoma','Y','2025-10-23 00:00:00'),(85902,11,'1F9Z','Helminthiases, unspecified','Y','2025-10-23 00:00:00'),(85901,11,'XE5F6','Helmet','Y','2025-10-23 00:00:00'),(85899,11,'XM0SF4','Helleborus viridis plant','Y','2025-10-23 00:00:00'),(85900,11,'JA24.2','HELLP syndrome','Y','2025-10-23 00:00:00'),(85898,11,'XM3QP5','Helleborus niger plant','Y','2025-10-23 00:00:00'),(85897,11,'XA6B58','Helix of pinna','Y','2025-10-23 00:00:00'),(85896,11,'XM0JJ6','Helium','Y','2025-10-23 00:00:00'),(85895,11,'XE8AQ','Helifix coil component of medical device','Y','2025-10-23 00:00:00'),(85894,11,'XE48X','Helicopter as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(85893,11,'XE4LN','Helicopter','Y','2025-10-23 00:00:00'),(85892,11,'DA51.0','Helicobacter-pylori associated duodenitis','Y','2025-10-23 00:00:00'),(85891,11,'DA63.1','Helicobacter-pylori associated duodenal ulcer','Y','2025-10-23 00:00:00'),(85890,11,'DA63.2','Helicobacter-pylori associated and drug-induced duodenal ulcer','Y','2025-10-23 00:00:00'),(85889,11,'XN079','Helicobacter suis','Y','2025-10-23 00:00:00'),(85888,11,'XN9D7','Helicobacter salomonis','Y','2025-10-23 00:00:00'),(85887,11,'DA42.1','Helicobacter pylori induced gastritis','Y','2025-10-23 00:00:00'),(85886,11,'DA60.1','Helicobacter pylori associated gastric ulcer','Y','2025-10-23 00:00:00'),(85885,11,'DA60.2','Helicobacter pylori associated and drug-induced gastric ulcer','Y','2025-10-23 00:00:00'),(85884,11,'DA62.1','Helicobacter pylori associated anastomotic ulcer','Y','2025-10-23 00:00:00'),(85883,11,'XN3DY','Helicobacter pylori','Y','2025-10-23 00:00:00'),(85882,11,'XN8PN','Helicobacter hepaticus','Y','2025-10-23 00:00:00'),(85881,11,'XN9X3','Helicobacter ganmani','Y','2025-10-23 00:00:00'),(85880,11,'XN6JN','Helicobacter felis','Y','2025-10-23 00:00:00'),(85879,11,'XN354','Helicobacter cinaedi','Y','2025-10-23 00:00:00'),(85878,11,'XN42L','Helicobacter canis','Y','2025-10-23 00:00:00'),(85877,11,'XN0TD','Helicobacter bizzozeronii','Y','2025-10-23 00:00:00'),(85876,11,'XN0YS','Helicobacter bilis','Y','2025-10-23 00:00:00'),(85875,11,'XN6XR','Helicobacter','Y','2025-10-23 00:00:00'),(85874,11,'XM1FF8','Heet','Y','2025-10-23 00:00:00'),(85873,11,'XA5HK0','Heel','Y','2025-10-23 00:00:00'),(85872,11,'XM48W4','Hederae helicis folium','Y','2025-10-23 00:00:00'),(85871,11,'XM8UW4','Hedaquinium','Y','2025-10-23 00:00:00'),(85870,11,'XM87D0','Hebeloma crustuliniforme mushroom','Y','2025-10-23 00:00:00'),(85869,11,'XE5A8','Heavy truck, not elsewhere classified','Y','2025-10-23 00:00:00'),(85868,11,'XE4NR','Heavy transport vehicle with four or more wheels','Y','2025-10-23 00:00:00'),(85867,11,'GA20.50','Heavy menstrual bleeding','Y','2025-10-23 00:00:00'),(85866,11,'XE1PH','Heavy goods vehicle as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(85865,11,'XE854','Heavy goods vehicle as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(85864,11,'XE0GP','Heavy container, box, package, not elsewhere classified','Y','2025-10-23 00:00:00'),(85863,11,'2A84.Z','Heavy chain diseases, unspecified','Y','2025-10-23 00:00:00'),(85862,11,'2A84','Heavy chain diseases or malignant immunoproliferative diseases','Y','2025-10-23 00:00:00'),(85861,11,'XH7RJ1','Heavy chain disease, NOS','Y','2025-10-23 00:00:00'),(85860,11,'2A83.50','Heavy chain deposition disease','Y','2025-10-23 00:00:00'),(85859,11,'XM52J2','Heavenly Blue (morning glory)','Y','2025-10-23 00:00:00'),(85858,11,'XE84K','Heating or cooling appliance','Y','2025-10-23 00:00:00'),(85857,11,'XE1WC','Heating or cooking machinery or fixed plant','Y','2025-10-23 00:00:00'),(85856,11,'XE9TB','Heater component of medical device','Y','2025-10-23 00:00:00'),(85855,11,'NF01.1','Heat syncope','Y','2025-10-23 00:00:00'),(85854,11,'NF01.0','Heat stroke','Y','2025-10-23 00:00:00'),(85853,11,'SA91','Heat stranguria disorder (TM1)','Y','2025-10-23 00:00:00'),(85852,11,'SE72','Heat pattern (TM1)','Y','2025-10-23 00:00:00'),(85851,11,'SH01','Heat in the nutrient phase pattern(TM1)','Y','2025-10-23 00:00:00'),(85850,11,'NF01.3','Heat fatigue, transient','Y','2025-10-23 00:00:00'),(85849,11,'NF01.2','Heat exhaustion due to fluid depletion','Y','2025-10-23 00:00:00'),(85848,11,'XE12Q','Heat exchanger component of medical device','Y','2025-10-23 00:00:00'),(85847,11,'SG90','Heat entering the qi phase pattern (TM1)','Y','2025-10-23 00:00:00'),(85846,11,'SH02','Heat entering the nutrient and blood phase pattern (TM1)','Y','2025-10-23 00:00:00'),(85845,11,'SH11','Heat entering the blood phase pattern(TM1)','Y','2025-10-23 00:00:00'),(85843,11,'MD95','Heartburn','Y','2025-10-23 00:00:00'),(85844,11,'SG81','Heat attacking the lung defense pattern (TM1)','Y','2025-10-23 00:00:00'),(85842,11,'SF64','Heart yin deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(85841,11,'SF66','Heart yang deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(85840,11,'SF67','Heart yang collapse pattern (TM1)','Y','2025-10-23 00:00:00'),(85839,11,'XA6CK2','Heart wall','Y','2025-10-23 00:00:00'),(85838,11,'BC0Z','Heart valve diseases, unspecified','Y','2025-10-23 00:00:00'),(85837,11,'XA0QB6','Heart valve','Y','2025-10-23 00:00:00'),(85836,11,'SF6Z','Heart system patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(85835,11,'SA4Z','Heart system disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(85834,11,'SF6B','Heart spirit restlessness pattern (TM1)','Y','2025-10-23 00:00:00'),(85833,11,'SF60','Heart qi deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(85832,11,'SG24','Heart meridian pattern (TM1)','Y','2025-10-23 00:00:00'),(85831,11,'SF63','Heart meridian obstruction pattern (TM1)','Y','2025-10-23 00:00:00'),(85830,11,'SF68','Heart fire flaming upward pattern (TM1)','Y','2025-10-23 00:00:00'),(85828,11,'QB25','Heart donor','Y','2025-10-23 00:00:00'),(85829,11,'BD1Z','Heart failure, unspecified','Y','2025-10-23 00:00:00'),(85827,11,'SF61','Heart blood deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(85826,11,'SF6J','Heart and spleen systems deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(85825,11,'SF6K','Heart and lung qi deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(85824,11,'SF6G','Heart and liver blood deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(85823,11,'SF6M','Heart and kidney yang deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(85822,11,'SF6L','Heart and kidney systems disharmony pattern (TM1)','Y','2025-10-23 00:00:00'),(85821,11,'SF6H','Heart and gallbladder qi deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(85820,11,'XA6H07','Heart','Y','2025-10-23 00:00:00'),(85819,11,'VE01','Hearing and vestibular functions [BMDS]','Y','2025-10-23 00:00:00'),(85818,11,'VV11','Hearing and vestibular functions','Y','2025-10-23 00:00:00'),(85817,11,'QC21','Healthy person accompanying sick person','Y','2025-10-23 00:00:00'),(85816,11,'QC22','Health supervision or care of abandoned infant','Y','2025-10-23 00:00:00'),(85815,11,'XE86F','Health professionals\' office','Y','2025-10-23 00:00:00'),(85814,11,'VD56','Health problems causing family problems [WHODAS]','Y','2025-10-23 00:00:00'),(85813,11,'VD55','Health drain on financial resources [WHODAS]','Y','2025-10-23 00:00:00'),(85812,11,'QB0Z','Health care related circumstances influencing the episode of care without injury or harm, unspecified','Y','2025-10-23 00:00:00'),(85811,11,'BD74.32','Healed venous leg ulcer','Y','2025-10-23 00:00:00'),(85810,11,'XE5GC','Headphone or headset component of medical device','Y','2025-10-23 00:00:00'),(85809,11,'XE37B','Header component of medical device','Y','2025-10-23 00:00:00'),(85808,11,'SB70','Headed carbuncle disorder (TM1)','Y','2025-10-23 00:00:00'),(85807,11,'MB4D','Headache, not elsewhere classified','Y','2025-10-23 00:00:00'),(85806,11,'MG30.63','Headache or orofacial pain associated with chronic secondary temporomandibular disorders','Y','2025-10-23 00:00:00'),(85805,11,'8A8Z','Headache disorders, unspecified','Y','2025-10-23 00:00:00'),(85804,11,'SD1Z','Headache disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(85803,11,'SD11','Head wind disorder (TM1)','Y','2025-10-23 00:00:00'),(85802,11,'XA6442','Head of the third metacarpal bone','Y','2025-10-23 00:00:00'),(85801,11,'XA93C5','Head of the second metacarpal bone','Y','2025-10-23 00:00:00'),(85800,11,'XA4VY5','Head of the humerus','Y','2025-10-23 00:00:00'),(85799,11,'XA8X42','Head of the fourth metacarpal bone','Y','2025-10-23 00:00:00'),(85798,11,'XA12D2','Head of the first metacarpal bone','Y','2025-10-23 00:00:00'),(85797,11,'XA3Z46','Head of the fifth metacarpal bone','Y','2025-10-23 00:00:00'),(85796,11,'XA1412','Head of pancreas','Y','2025-10-23 00:00:00'),(85795,11,'MB45.3','Head drop','Y','2025-10-23 00:00:00'),(85794,11,'XA1RS6','Head and neck','Y','2025-10-23 00:00:00'),(85793,11,'XA20Q1','Head','Y','2025-10-23 00:00:00'),(85792,11,'XM6XH7','HCH medicinal','Y','2025-10-23 00:00:00'),(85791,11,'QE11.9','Hazardous use of unknown or unspecified psychoactive substances','Y','2025-10-23 00:00:00'),(85790,11,'QE11.4','Hazardous use of stimulants including amphetamines or methamphetamine','Y','2025-10-23 00:00:00'),(85789,11,'QE11.2','Hazardous use of sedatives, hypnotics or anxiolytics','Y','2025-10-23 00:00:00'),(85788,11,'QE11.8','Hazardous use of other specified psychoactive substances','Y','2025-10-23 00:00:00'),(85787,11,'QE11.0','Hazardous use of opioids','Y','2025-10-23 00:00:00'),(85786,11,'QE11.6','Hazardous use of MDMA or related drugs','Y','2025-10-23 00:00:00'),(85785,11,'QE11.7','Hazardous use of dissociative drugs including ketamine or PCP','Y','2025-10-23 00:00:00'),(85784,11,'QE11.3','Hazardous use of cocaine','Y','2025-10-23 00:00:00'),(85783,11,'QE11.1','Hazardous use of cannabis','Y','2025-10-23 00:00:00'),(85782,11,'QE11.5','Hazardous use of caffeine','Y','2025-10-23 00:00:00'),(85781,11,'QE1Z','Hazardous substance use, unspecified','Y','2025-10-23 00:00:00'),(85780,11,'QE12','Hazardous nicotine use','Y','2025-10-23 00:00:00'),(85779,11,'QE22','Hazardous gaming','Y','2025-10-23 00:00:00'),(85778,11,'QE21','Hazardous gambling or betting','Y','2025-10-23 00:00:00'),(85777,11,'QE11.Z','Hazardous drug use, unspecified','Y','2025-10-23 00:00:00'),(85776,11,'QE11','Hazardous drug use','Y','2025-10-23 00:00:00'),(85775,11,'QE10','Hazardous alcohol use','Y','2025-10-23 00:00:00'),(85774,11,'XM9FQ7','Hayat-Vax','Y','2025-10-23 00:00:00'),(85773,11,'XE36E','Hay, straw','Y','2025-10-23 00:00:00'),(85772,11,'XM0RH0','Hawksbill sea turtle seafood poison','Y','2025-10-23 00:00:00'),(85771,11,'XM9438','Hawaiian Woodrose seeds','Y','2025-10-23 00:00:00'),(85770,11,'5A03.20','Hashimoto thyroiditis','Y','2025-10-23 00:00:00'),(85769,11,'XE0YP','Harvesting machine','Y','2025-10-23 00:00:00'),(85768,11,'XE3QK','Harvester as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(85767,11,'XE6W7','Harvester as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(85766,11,'XM1547','Harvester ant venom','Y','2025-10-23 00:00:00'),(85765,11,'XM5Y58','Hartmann\'s solution','Y','2025-10-23 00:00:00'),(85764,11,'XM1LN2','Harmonyl','Y','2025-10-23 00:00:00'),(85763,11,'6C47.11','Harmful use of synthetic cathinones, continuous','Y','2025-10-23 00:00:00'),(85762,11,'6C4C.10','Harmful use of MDMA or related drugs, including MDA, episodic','Y','2025-10-23 00:00:00'),(85761,11,'6C4C.11','Harmful use of MDMA or related drugs, including MDA, continuous','Y','2025-10-23 00:00:00'),(85760,11,'6C4B.1Z','Harmful pattern of use of volatile inhalants, unspecified','Y','2025-10-23 00:00:00'),(85759,11,'6C4B.10','Harmful pattern of use of volatile inhalants, episodic','Y','2025-10-23 00:00:00'),(85758,11,'6C4B.11','Harmful pattern of use of volatile inhalants, continuous','Y','2025-10-23 00:00:00'),(85757,11,'6C4B.1','Harmful pattern of use of volatile inhalants','Y','2025-10-23 00:00:00'),(85756,11,'6C4G.1Z','Harmful pattern of use of unknown or unspecified psychoactive substance, unspecified','Y','2025-10-23 00:00:00'),(85755,11,'6C4G.10','Harmful pattern of use of unknown or unspecified psychoactive substance, episodic','Y','2025-10-23 00:00:00'),(85754,11,'6C4G.11','Harmful pattern of use of unknown or unspecified psychoactive substance, continuous','Y','2025-10-23 00:00:00'),(85753,11,'6C4G.1','Harmful pattern of use of unknown or unspecified psychoactive substance','Y','2025-10-23 00:00:00'),(85752,11,'6C47.1Z','Harmful pattern of use of synthetic cathinones, unspecified','Y','2025-10-23 00:00:00'),(85751,11,'6C47.10','Harmful pattern of use of synthetic cathinones, episodic','Y','2025-10-23 00:00:00'),(85750,11,'6C47.1','Harmful pattern of use of synthetic cathinones','Y','2025-10-23 00:00:00'),(85749,11,'6C42.1Z','Harmful pattern of use of synthetic cannabinoids, unspecified','Y','2025-10-23 00:00:00'),(85748,11,'6C42.10','Harmful pattern of use of synthetic cannabinoids, episodic','Y','2025-10-23 00:00:00'),(85747,11,'6C42.11','Harmful pattern of use of synthetic cannabinoids, continuous','Y','2025-10-23 00:00:00'),(85746,11,'6C42.1','Harmful pattern of use of synthetic cannabinoids','Y','2025-10-23 00:00:00'),(85745,11,'6C46.10','Harmful pattern of use of stimulants including amphetamines, methamphetamine or methcathinone, episodic','Y','2025-10-23 00:00:00'),(85744,11,'6C46.11','Harmful pattern of use of stimulants including amphetamines, methamphetamine or methcathinone, continuous','Y','2025-10-23 00:00:00'),(85743,11,'6C46.1','Harmful pattern of use of stimulants including amphetamines, methamphetamine or methcathinone','Y','2025-10-23 00:00:00'),(85742,11,'6C46.1Z','Harmful pattern of use of stimulants including amphetamines, methamphetamine and methcathinone, unspecified','Y','2025-10-23 00:00:00'),(85741,11,'6C44.1Z','Harmful pattern of use of sedatives, hypnotics or anxiolytics, unspecified','Y','2025-10-23 00:00:00'),(85740,11,'6C44.10','Harmful pattern of use of sedatives, hypnotics or anxiolytics, episodic','Y','2025-10-23 00:00:00'),(85739,11,'6C44.11','Harmful pattern of use of sedatives, hypnotics or anxiolytics, continuous','Y','2025-10-23 00:00:00'),(85738,11,'6C44.1','Harmful pattern of use of sedatives, hypnotics or anxiolytics','Y','2025-10-23 00:00:00'),(85737,11,'6C4E.1Z','Harmful pattern of use of other specified psychoactive substance, unspecified','Y','2025-10-23 00:00:00'),(85736,11,'6C4E.10','Harmful pattern of use of other specified psychoactive substance, episodic','Y','2025-10-23 00:00:00'),(85735,11,'6C4E.11','Harmful pattern of use of other specified psychoactive substance, continuous','Y','2025-10-23 00:00:00'),(85734,11,'6C4E.1','Harmful pattern of use of other specified psychoactive substance','Y','2025-10-23 00:00:00'),(85733,11,'6C43.1Z','Harmful pattern of use of opioids, unspecified','Y','2025-10-23 00:00:00'),(85732,11,'6C43.10','Harmful pattern of use of opioids, episodic','Y','2025-10-23 00:00:00'),(85731,11,'6C43.11','Harmful pattern of use of opioids, continuous','Y','2025-10-23 00:00:00'),(85730,11,'6C43.1','Harmful pattern of use of opioids','Y','2025-10-23 00:00:00'),(85729,11,'6C4H.1Z','Harmful pattern of use of non-psychoactive substances, unspecified','Y','2025-10-23 00:00:00'),(85728,11,'6C4H.10','Harmful pattern of use of non-psychoactive substances, episodic','Y','2025-10-23 00:00:00'),(85727,11,'6C4H.11','Harmful pattern of use of non-psychoactive substances, continuous','Y','2025-10-23 00:00:00'),(85726,11,'6C4H.1','Harmful pattern of use of non-psychoactive substances','Y','2025-10-23 00:00:00'),(85725,11,'6C4A.1Z','Harmful pattern of use of nicotine, unspecified','Y','2025-10-23 00:00:00'),(85724,11,'6C4A.10','Harmful pattern of use of nicotine, episodic','Y','2025-10-23 00:00:00'),(85723,11,'6C4A.11','Harmful pattern of use of nicotine, continuous','Y','2025-10-23 00:00:00'),(85722,11,'6C4A.1','Harmful pattern of use of nicotine','Y','2025-10-23 00:00:00'),(85721,11,'6C4F.1Z','Harmful pattern of use of multiple specified psychoactive substances, unspecified','Y','2025-10-23 00:00:00'),(85720,11,'6C4F.10','Harmful pattern of use of multiple specified psychoactive substances, episodic','Y','2025-10-23 00:00:00'),(85719,11,'6C4F.11','Harmful pattern of use of multiple specified psychoactive substances, continuous','Y','2025-10-23 00:00:00'),(85718,11,'6C4F.1','Harmful pattern of use of multiple specified psychoactive substances','Y','2025-10-23 00:00:00'),(85717,11,'6C4C.1Z','Harmful pattern of use of MDMA or related drugs, including MDA, unspecified','Y','2025-10-23 00:00:00'),(85716,11,'6C4C.1','Harmful pattern of use of MDMA or related drugs, including MDA','Y','2025-10-23 00:00:00'),(85715,11,'6C49.1Z','Harmful pattern of use of hallucinogens, unspecified','Y','2025-10-23 00:00:00'),(85714,11,'6C49.10','Harmful pattern of use of hallucinogens, episodic','Y','2025-10-23 00:00:00'),(85713,11,'6C49.11','Harmful pattern of use of hallucinogens, continuous','Y','2025-10-23 00:00:00'),(85712,11,'6C49.1','Harmful pattern of use of hallucinogens','Y','2025-10-23 00:00:00'),(85711,11,'6C4D.1Z','Harmful pattern of use of dissociative drugs, including ketamine or PCP, unspecified','Y','2025-10-23 00:00:00'),(85710,11,'6C4D.1','Harmful pattern of use of dissociative drugs, including ketamine or PCP','Y','2025-10-23 00:00:00'),(85709,11,'6C4D.10','Harmful pattern of use of dissociative drugs including ketamine or PCP, episodic','Y','2025-10-23 00:00:00'),(85708,11,'6C4D.11','Harmful pattern of use of dissociative drugs including ketamine or PCP, continuous','Y','2025-10-23 00:00:00'),(85707,11,'6C45.1Z','Harmful pattern of use of cocaine, unspecified','Y','2025-10-23 00:00:00'),(85706,11,'6C45.10','Harmful pattern of use of cocaine, episodic','Y','2025-10-23 00:00:00'),(85705,11,'6C45.11','Harmful pattern of use of cocaine, continuous','Y','2025-10-23 00:00:00'),(85704,11,'6C45.1','Harmful pattern of use of cocaine','Y','2025-10-23 00:00:00'),(85703,11,'6C41.1Z','Harmful pattern of use of cannabis, unspecified','Y','2025-10-23 00:00:00'),(85702,11,'6C41.10','Harmful pattern of use of cannabis, episodic','Y','2025-10-23 00:00:00'),(85701,11,'6C41.11','Harmful pattern of use of cannabis, continuous','Y','2025-10-23 00:00:00'),(85700,11,'6C41.1','Harmful pattern of use of cannabis','Y','2025-10-23 00:00:00'),(85699,11,'6C48.1Z','Harmful pattern of use of caffeine, unspecified','Y','2025-10-23 00:00:00'),(85698,11,'6C48.10','Harmful pattern of use of caffeine, episodic','Y','2025-10-23 00:00:00'),(85697,11,'6C48.11','Harmful pattern of use of caffeine, continuous','Y','2025-10-23 00:00:00'),(85696,11,'6C48.1','Harmful pattern of use of caffeine','Y','2025-10-23 00:00:00'),(85695,11,'6C40.1Z','Harmful pattern of use of alcohol, unspecified','Y','2025-10-23 00:00:00'),(85694,11,'6C40.10','Harmful pattern of use of alcohol, episodic','Y','2025-10-23 00:00:00'),(85693,11,'6C40.11','Harmful pattern of use of alcohol, continuous','Y','2025-10-23 00:00:00'),(85692,11,'6C40.1','Harmful pattern of use of alcohol','Y','2025-10-23 00:00:00'),(85691,11,'NE6Z','Harmful effects of unspecified substance','Y','2025-10-23 00:00:00'),(85690,11,'NE61','Harmful effects of or exposure to noxious substances, chiefly nonmedicinal as to source, not elsewhere classified','Y','2025-10-23 00:00:00'),(85689,11,'PH47.0','Harmful effects of or exposure to mixed antiepileptics, not elsewhere classified, undetermined intent','Y','2025-10-23 00:00:00'),(85688,11,'NE60','Harmful effects of drugs, medicaments or biological substances, not elsewhere classified','Y','2025-10-23 00:00:00'),(85687,11,'XM2PM7','Harlequin coralsnake venom','Y','2025-10-23 00:00:00'),(85686,11,'XE53K','Hardware timing problem with device identified','Y','2025-10-23 00:00:00'),(85685,11,'XA4527','Hard palate','Y','2025-10-23 00:00:00'),(85684,11,'XM3AW0','Hard metal dust','Y','2025-10-23 00:00:00'),(85683,11,'EH92.00','Hard corn','Y','2025-10-23 00:00:00'),(85682,11,'XE853','Hard chair or bench','Y','2025-10-23 00:00:00'),(85681,11,'XM1PK2','Hapalopilus rutilans','Y','2025-10-23 00:00:00'),(85680,11,'1D62.1','Hantavirus pulmonary syndrome','Y','2025-10-23 00:00:00'),(85679,11,'1D62.Z','Hantavirus disease, unspecified','Y','2025-10-23 00:00:00'),(85678,11,'1D62','Hantavirus disease','Y','2025-10-23 00:00:00'),(85677,11,'XN3GW','Hantaan virus','Y','2025-10-23 00:00:00'),(85676,11,'MG49','Hangover','Y','2025-10-23 00:00:00'),(85675,11,'XE3VU','Hang-glider','Y','2025-10-23 00:00:00'),(85674,11,'XH86U0','Hand-Schuller-Christian disease','Y','2025-10-23 00:00:00'),(85673,11,'XE2VG','Handrail, railing, banister','Y','2025-10-23 00:00:00'),(85672,11,'XE11W','Handpiece component of medical device','Y','2025-10-23 00:00:00'),(85671,11,'XD51T0','Hand-operated ventilation balloons','Y','2025-10-23 00:00:00'),(85670,11,'VV91','Handling stress and other psychological demands','Y','2025-10-23 00:00:00'),(85669,11,'XE68L','Hand-held sports equipment','Y','2025-10-23 00:00:00'),(85667,11,'XE8YS','Handcuffs','Y','2025-10-23 00:00:00'),(85668,11,'XE6N6','Hand-held fan','Y','2025-10-23 00:00:00'),(85666,11,'XE72J','Hand gun','Y','2025-10-23 00:00:00'),(85665,11,'SB76','Hand dampness itch disorder (TM1)','Y','2025-10-23 00:00:00'),(85664,11,'NF08.20','Hand and arm vibration syndrome','Y','2025-10-23 00:00:00'),(85663,11,'XA5R12','Hand','Y','2025-10-23 00:00:00'),(85662,11,'XE27V','Hammock','Y','2025-10-23 00:00:00'),(85661,11,'XE0VV','Hammer, mallet','Y','2025-10-23 00:00:00'),(85660,11,'XA8488','Hamate bone','Y','2025-10-23 00:00:00'),(85659,11,'DA44.2','Hamartomatous polyp of stomach','Y','2025-10-23 00:00:00'),(85658,11,'DB35.3','Hamartomatous polyp','Y','2025-10-23 00:00:00'),(85657,11,'DA98.0','Hamartoma of small intestine','Y','2025-10-23 00:00:00'),(85656,11,'XM20Y8','Hamamelis','Y','2025-10-23 00:00:00'),(85655,11,'XM3KW0','Halquinols','Y','2025-10-23 00:00:00'),(85654,11,'XM86G3','Haloxazolam','Y','2025-10-23 00:00:00'),(85653,11,'XM2FH0','Halothane','Y','2025-10-23 00:00:00'),(85652,11,'XM0C80','Haloprogin','Y','2025-10-23 00:00:00'),(85651,11,'XM9580','Haloperidol','Y','2025-10-23 00:00:00'),(85650,11,'XM8TL4','Halometasone','Y','2025-10-23 00:00:00'),(85649,11,'XM0TE1','Halogenated hydrocarbons','Y','2025-10-23 00:00:00'),(85648,11,'XM4E46','Halofenate','Y','2025-10-23 00:00:00'),(85647,11,'XM3T26','Halofantrine','Y','2025-10-23 00:00:00'),(85645,11,'FA30.1','Hallux rigidus','Y','2025-10-23 00:00:00'),(85646,11,'XH5971','Halo naevus','Y','2025-10-23 00:00:00'),(85643,11,'6C49.5','Hallucinogen-induced psychotic disorder','Y','2025-10-23 00:00:00'),(85644,11,'XM4SV9','Hallucinogens','Y','2025-10-23 00:00:00'),(85642,11,'6C49.60','Hallucinogen-induced mood disorder','Y','2025-10-23 00:00:00'),(85641,11,'6C49.4','Hallucinogen-induced delirium','Y','2025-10-23 00:00:00'),(85640,11,'6C49.61','Hallucinogen-induced anxiety disorder','Y','2025-10-23 00:00:00'),(85639,11,'6C49.3','Hallucinogen intoxication','Y','2025-10-23 00:00:00'),(85638,11,'6C49.2Z','Hallucinogen dependence, unspecified','Y','2025-10-23 00:00:00'),(85637,11,'6C49.22','Hallucinogen dependence, sustained partial remission','Y','2025-10-23 00:00:00'),(85636,11,'6C49.23','Hallucinogen dependence, sustained full remission','Y','2025-10-23 00:00:00'),(85635,11,'6C49.21','Hallucinogen dependence, early full remission','Y','2025-10-23 00:00:00'),(85634,11,'6C49.20','Hallucinogen dependence, current use','Y','2025-10-23 00:00:00'),(85633,11,'6C49.2','Hallucinogen dependence','Y','2025-10-23 00:00:00'),(85632,11,'XM8X97','Hallucinogen','Y','2025-10-23 00:00:00'),(85631,11,'MB27.2Z','Hallucinations, unspecified','Y','2025-10-23 00:00:00'),(85630,11,'MB27.2','Hallucinations','Y','2025-10-23 00:00:00'),(85629,11,'MD94','Halitosis','Y','2025-10-23 00:00:00'),(85628,11,'XM9Q64','Halethazole','Y','2025-10-23 00:00:00'),(85627,11,'XM0ZX1','Halcinonide','Y','2025-10-23 00:00:00'),(85626,11,'XM5UQ0','Halcinolone','Y','2025-10-23 00:00:00'),(85625,11,'XM3FR2','Halazepam','Y','2025-10-23 00:00:00'),(85624,11,'2A82.2','Hairy-cell leukaemia','Y','2025-10-23 00:00:00'),(85623,11,'XH8ZB4','Hairy naevus','Y','2025-10-23 00:00:00'),(85622,11,'DA01.01','Hairy leukoplakia','Y','2025-10-23 00:00:00'),(85621,11,'XH9E18','Hairy cell leukaemia variant','Y','2025-10-23 00:00:00'),(85620,11,'XH5J10','Hairy cell leukaemia','Y','2025-10-23 00:00:00'),(85619,11,'XA6DT2','Hair shaft','Y','2025-10-23 00:00:00'),(85618,11,'XE1T3','Hair removal preparation, depilatory','Y','2025-10-23 00:00:00'),(85617,11,'XA0XC8','Hair follicle','Y','2025-10-23 00:00:00'),(85616,11,'XM7VL9','Hair dye','Y','2025-10-23 00:00:00'),(85615,11,'XE7FF','Hair dryer, curling iron, curler','Y','2025-10-23 00:00:00'),(85614,11,'XE8PE','Hair colouring preparation','Y','2025-10-23 00:00:00'),(85612,11,'XA8T72','Hair','Y','2025-10-23 00:00:00'),(85613,11,'XA2MW3','Hair bulb','Y','2025-10-23 00:00:00'),(85611,11,'CB26','Haemothorax','Y','2025-10-23 00:00:00'),(85610,11,'XH9526','Haemosiderotic fibrolipomatous tumour','Y','2025-10-23 00:00:00'),(85609,11,'ED62.0','Haemosiderin pigmentation of skin','Y','2025-10-23 00:00:00'),(85608,11,'DB60.Z','Haemorrhoids, unspecified','Y','2025-10-23 00:00:00'),(85607,11,'DB6Z','Haemorrhoids or perianal venous conditions, unspecified','Y','2025-10-23 00:00:00'),(85606,11,'JB41.2','Haemorrhoids in the puerperium','Y','2025-10-23 00:00:00'),(85605,11,'JA61.4','Haemorrhoids in pregnancy','Y','2025-10-23 00:00:00'),(85604,11,'DB60','Haemorrhoids','Y','2025-10-23 00:00:00'),(85603,11,'KA8Z','Haemorrhagic or haematological disorders of fetus or newborn, unspecified','Y','2025-10-23 00:00:00'),(85602,11,'1D62.0','Haemorrhagic fever with renal syndrome','Y','2025-10-23 00:00:00'),(85601,11,'3B21.Z','Haemorrhagic disorder due to unspecified circulating anticoagulants','Y','2025-10-23 00:00:00'),(85600,11,'3B21.Y','Haemorrhagic disorder due to other specified circulating anticoagulants','Y','2025-10-23 00:00:00'),(85599,11,'3B21','Haemorrhagic disorder due to circulating anticoagulants and coagulation factors','Y','2025-10-23 00:00:00'),(85598,11,'9B78.61','Haemorrhagic detachment of retinal pigment epithelium','Y','2025-10-23 00:00:00'),(85597,11,'MG27','Haemorrhage, not elsewhere classified','Y','2025-10-23 00:00:00'),(85596,11,'NE81.0Z','Haemorrhage or haematoma of other or unspecified site complicating a procedure, not elsewhere classified','Y','2025-10-23 00:00:00'),(85594,11,'GA91.4','Haemorrhage of the prostate','Y','2025-10-23 00:00:00'),(85595,11,'NE81.0','Haemorrhage or haematoma complicating a procedure, not elsewhere classified','Y','2025-10-23 00:00:00'),(85593,11,'9A25.4','Haemorrhage of orbit','Y','2025-10-23 00:00:00'),(85592,11,'8B00.5','Haemorrhage of multiple sites','Y','2025-10-23 00:00:00'),(85591,11,'DC14.0','Haemorrhage of bile duct','Y','2025-10-23 00:00:00'),(85590,11,'ME24.A1','Haemorrhage of anus and rectum','Y','2025-10-23 00:00:00'),(85589,11,'KA80.4','Haemorrhage into maternal circulation','Y','2025-10-23 00:00:00'),(85588,11,'KA80.3','Haemorrhage into co-twin','Y','2025-10-23 00:00:00'),(85587,11,'JA40.Z','Haemorrhage in early pregnancy, unspecified','Y','2025-10-23 00:00:00'),(85586,11,'JA40','Haemorrhage in early pregnancy','Y','2025-10-23 00:00:00'),(85585,11,'MD21','Haemorrhage from throat','Y','2025-10-23 00:00:00'),(85584,11,'MD2Z','Haemorrhage from respiratory passages, unspecified','Y','2025-10-23 00:00:00'),(85583,11,'MD23','Haemorrhage from other sites in respiratory passages','Y','2025-10-23 00:00:00'),(85582,11,'3B21.0','Haemorrhage due to thrombin inhibitor other than heparin','Y','2025-10-23 00:00:00'),(85581,11,'3B21.1','Haemorrhage due to factor Xa inhibitor','Y','2025-10-23 00:00:00'),(85580,11,'NE81.01','Haemorrhage and haematoma of eye or ocular adnexa complicating a procedure','Y','2025-10-23 00:00:00'),(85579,11,'MD22','Haemoptysis','Y','2025-10-23 00:00:00'),(85578,11,'XN0FG','Haemophilus influenzae type B','Y','2025-10-23 00:00:00'),(85577,11,'XM11V3','Haemophilus influenzae B vaccines','Y','2025-10-23 00:00:00'),(85576,11,'XN1BX','Haemophilus influenzae aegyptius','Y','2025-10-23 00:00:00'),(85575,11,'XN1P6','Haemophilus influenzae','Y','2025-10-23 00:00:00'),(85574,11,'XN6MB','Haemophilus ducreyi','Y','2025-10-23 00:00:00'),(85573,11,'XN2HK','Haemophilus','Y','2025-10-23 00:00:00'),(85572,11,'FA38.3','Haemophilic arthropathy','Y','2025-10-23 00:00:00'),(85571,11,'3B13','Haemophilia C','Y','2025-10-23 00:00:00'),(85570,11,'3B11.0','Haemophilia B','Y','2025-10-23 00:00:00'),(85569,11,'3B10.0','Haemophilia A','Y','2025-10-23 00:00:00'),(85568,11,'3B62.5','Haemophagocytic syndrome associated with infection','Y','2025-10-23 00:00:00'),(85567,11,'DC51.2','Haemoperitoneum','Y','2025-10-23 00:00:00'),(85566,11,'BB24','Haemopericardium','Y','2025-10-23 00:00:00'),(85565,11,'3A21.2','Haemolytic uraemic syndrome','Y','2025-10-23 00:00:00'),(85564,11,'KA84.Z','Haemolytic disease of fetus or newborn, unspecified','Y','2025-10-23 00:00:00'),(85563,11,'KA84','Haemolytic disease of fetus or newborn','Y','2025-10-23 00:00:00'),(85562,11,'KA84.4','Haemolytic disease due to disease of other neonatal organs','Y','2025-10-23 00:00:00'),(85561,11,'3A4Z','Haemolytic anaemias, unspecified','Y','2025-10-23 00:00:00'),(85560,11,'3A10.0Z','Haemolytic anaemias due to hexose monophosphate shunt or glutathione metabolism anomalies, unspecified','Y','2025-10-23 00:00:00'),(85559,11,'3A10.0','Haemolytic anaemias due to hexose monophosphate shunt or glutathione metabolism anomalies','Y','2025-10-23 00:00:00'),(85558,11,'KA84.3','Haemolytic anaemia due to other unclassified antibodies of fetus or newborn','Y','2025-10-23 00:00:00'),(85557,11,'3A10.00','Haemolytic anaemia due to glucose-6-phosphate dehydrogenase deficiency','Y','2025-10-23 00:00:00'),(85556,11,'3A10.1','Haemolytic anaemia due to adenosine deaminase excess','Y','2025-10-23 00:00:00'),(85555,11,'MA16.00','Haemolysis, not elsewhere classified','Y','2025-10-23 00:00:00'),(85554,11,'XH62A3','Haemolymphangioma','Y','2025-10-23 00:00:00'),(85553,11,'MF94','Haemoglobinuria','Y','2025-10-23 00:00:00'),(85552,11,'3A51.9','Haemoglobin O disease','Y','2025-10-23 00:00:00'),(85551,11,'3A50.02','Haemoglobin H disease (','Y','2025-10-23 00:00:00'),(85550,11,'3A51.A','Haemoglobin E disease','Y','2025-10-23 00:00:00'),(85548,11,'3A51.B','Haemoglobin C/beta thalassaemia compound heterozygosity','Y','2025-10-23 00:00:00'),(85549,11,'3A51.6','Haemoglobin D disease','Y','2025-10-23 00:00:00'),(85547,11,'3A51.5','Haemoglobin C disease','Y','2025-10-23 00:00:00'),(85546,11,'XD0KV9','Haemofiltration-haemodiafiltration sets','Y','2025-10-23 00:00:00'),(85545,11,'EC90.12','Haemodialysis-associated pruritus','Y','2025-10-23 00:00:00'),(85544,11,'XD8DD4','Haemodialysis, hemofiltration, haemodiafiltration filters','Y','2025-10-23 00:00:00'),(85543,11,'XD8Q72','Haemodialysis, adaptors','Y','2025-10-23 00:00:00'),(85542,11,'XD6TC6','Haemodialysis sets','Y','2025-10-23 00:00:00'),(85541,11,'XD5DX9','Haemodialysis filters others','Y','2025-10-23 00:00:00'),(85540,11,'XD6MC0','Haemodialysate tanks, collection','Y','2025-10-23 00:00:00'),(85539,11,'MF50.4Z','Haematuria, unspecified','Y','2025-10-23 00:00:00'),(85538,11,'MF50.4','Haematuria','Y','2025-10-23 00:00:00'),(85537,11,'GA17.3','Haematosalpinx','Y','2025-10-23 00:00:00'),(85536,11,'XA5869','Haematopoietic stem cells','Y','2025-10-23 00:00:00'),(85535,11,'GA16.3','Haematometra','Y','2025-10-23 00:00:00'),(85534,11,'NE81.00','Haematoma of surgical wound of skin','Y','2025-10-23 00:00:00'),(85533,11,'JB44.2','Haematoma of obstetric wound','Y','2025-10-23 00:00:00'),(85532,11,'NA06.01','Haematoma of eyelid','Y','2025-10-23 00:00:00'),(85531,11,'GA19.0','Haematoma of broad ligament','Y','2025-10-23 00:00:00'),(85530,11,'GA14.1','Haematocolpos','Y','2025-10-23 00:00:00'),(85528,11,'ME24.A5','Haematemesis','Y','2025-10-23 00:00:00'),(85529,11,'ME24.A3','Haematochezia','Y','2025-10-23 00:00:00'),(85527,11,'XH7050','Haemangiopericytic meningioma','Y','2025-10-23 00:00:00'),(85526,11,'XH5AW4','Haemangioma, NOS','Y','2025-10-23 00:00:00'),(85525,11,'XH2L98','Haemangioendothelioma, NOS','Y','2025-10-23 00:00:00'),(85524,11,'XH4E71','Haemangioendothelioma, malignant','Y','2025-10-23 00:00:00'),(85523,11,'XH0LN3','Haemangioendothelioma, benign','Y','2025-10-23 00:00:00'),(85522,11,'XH6810','Haemangioblastoma','Y','2025-10-23 00:00:00'),(85521,11,'XH3L73','Haemangioblastic meningioma','Y','2025-10-23 00:00:00'),(85519,11,'XM0M17','Gyromitra mushroom','Y','2025-10-23 00:00:00'),(85520,11,'XM9CM4','Hachimycin','Y','2025-10-23 00:00:00'),(85518,11,'XM3LC5','Gyromita infula mushroom','Y','2025-10-23 00:00:00'),(85517,11,'XM76X5','Gyromita esculenta mushroom','Y','2025-10-23 00:00:00'),(85516,11,'XM0BM0','Gyromita ambigua mushroom','Y','2025-10-23 00:00:00'),(85515,11,'LD56.1','Gynogenetic chimaera','Y','2025-10-23 00:00:00'),(85514,11,'XH0Q64','Gynandroblastoma','Y','2025-10-23 00:00:00'),(85513,11,'PK80.51','Gynaecological or breast procedure associated with injury or harm, percutaneous approach','Y','2025-10-23 00:00:00'),(85512,11,'PK80.50','Gynaecological or breast procedure associated with injury or harm, open approach','Y','2025-10-23 00:00:00'),(85511,11,'PK80.52','Gynaecological or breast procedure associated with injury or harm, endoscopic approach','Y','2025-10-23 00:00:00'),(85510,11,'PK80.5Z','Gynaecological or breast procedure associated with injury or harm in therapeutic use, unspecified approach','Y','2025-10-23 00:00:00'),(85509,11,'PK80.53','Gynaecological or breast procedure associated with injury or harm in therapeutic use, per orifice approach','Y','2025-10-23 00:00:00'),(85508,11,'PK80.5Y','Gynaecological or breast procedure associated with injury or harm in therapeutic use, other specified approach','Y','2025-10-23 00:00:00'),(85507,11,'PK80.5','Gynaecological or breast procedure associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(85506,11,'QA00.9','Gynaecological examination','Y','2025-10-23 00:00:00'),(85505,11,'XE8C0','Gymnastic equipment','Y','2025-10-23 00:00:00'),(85504,11,'EA90.1','Guttate psoriasis','Y','2025-10-23 00:00:00'),(85503,11,'MB27.21','Gustatory hallucinations','Y','2025-10-23 00:00:00'),(85502,11,'XM75G0','Gusperimus','Y','2025-10-23 00:00:00'),(85501,11,'XM2L20','Guselkumab','Y','2025-10-23 00:00:00'),(85500,11,'XE64H','Guidewire component of medical device','Y','2025-10-23 00:00:00'),(85499,11,'XE1ND','Guide component of medical device','Y','2025-10-23 00:00:00'),(85498,11,'XM6DW9','Guar gum (medicinal)','Y','2025-10-23 00:00:00'),(85497,11,'XM3952','Guanoxan','Y','2025-10-23 00:00:00'),(85496,11,'XM4L63','Guanoxabenz','Y','2025-10-23 00:00:00'),(85494,11,'XM4189','Guanoclor','Y','2025-10-23 00:00:00'),(85495,11,'XM7TE8','Guanoctine','Y','2025-10-23 00:00:00'),(85493,11,'XM0AR7','Guano','Y','2025-10-23 00:00:00'),(85492,11,'XM3EN5','Guanidine derivatives','Y','2025-10-23 00:00:00'),(85491,11,'XM5KP4','Guanfacine','Y','2025-10-23 00:00:00'),(85490,11,'XM3QD6','Guanethidine','Y','2025-10-23 00:00:00'),(85489,11,'XM6N54','Guanazodine','Y','2025-10-23 00:00:00'),(85488,11,'XM23A5','Guanatol','Y','2025-10-23 00:00:00'),(85487,11,'XN56K','Guanarito virus','Y','2025-10-23 00:00:00'),(85486,11,'XM5JL6','Guanadrel','Y','2025-10-23 00:00:00'),(85485,11,'XM5ET8','Guanacline','Y','2025-10-23 00:00:00'),(85484,11,'XM7NV2','Guanabenz','Y','2025-10-23 00:00:00'),(85483,11,'XM4492','Guamecycline','Y','2025-10-23 00:00:00'),(85482,11,'XM8GY5','Guaiphenesin','Y','2025-10-23 00:00:00'),(85481,11,'XM48K1','Guaimesal','Y','2025-10-23 00:00:00'),(85480,11,'XM7CE4','Guaiazulen','Y','2025-10-23 00:00:00'),(85479,11,'XM8983','Guaiacolsulfonate','Y','2025-10-23 00:00:00'),(85478,11,'XM0G60','Guaiacol derivatives','Y','2025-10-23 00:00:00'),(85477,11,'XM8M78','Guaiac reagent','Y','2025-10-23 00:00:00'),(85476,11,'XM1DD2','Guacetisal','Y','2025-10-23 00:00:00'),(85475,11,'XM9YU9','G-Strophantin','Y','2025-10-23 00:00:00'),(85474,11,'SE32','Growth pain disorder (TM1)','Y','2025-10-23 00:00:00'),(85473,11,'5A61.3','Growth hormone deficiency','Y','2025-10-23 00:00:00'),(85472,11,'SE31','Growth fever disorder (TM1)','Y','2025-10-23 00:00:00'),(85471,11,'XN40Y','Group H Streptococcus','Y','2025-10-23 00:00:00'),(85470,11,'XN84N','Group G Streptococcus','Y','2025-10-23 00:00:00'),(85469,11,'XN6BB','Group F Streptococcus','Y','2025-10-23 00:00:00'),(85468,11,'XN8BJ','Group E Streptococcus','Y','2025-10-23 00:00:00'),(85467,11,'QA19','Group counselling','Y','2025-10-23 00:00:00'),(85466,11,'XN518','Group C Streptococcus','Y','2025-10-23 00:00:00'),(85465,11,'XE9QT','Grounding malfunction','Y','2025-10-23 00:00:00'),(85464,11,'XE58F','Ground surface','Y','2025-10-23 00:00:00'),(85463,11,'XE561','Ground strap or wire component of medical device','Y','2025-10-23 00:00:00'),(85462,11,'DC32.1','Groove pancreatitis','Y','2025-10-23 00:00:00'),(85461,11,'XE8JZ','Grocery or shopping trolley or cart','Y','2025-10-23 00:00:00'),(85460,11,'XM8YE6','Griseofulvin','Y','2025-10-23 00:00:00'),(85459,11,'XE3UP','Grinder, buffer, polisher, sander','Y','2025-10-23 00:00:00'),(85457,11,'XJ45W','Greenstick fracture','Y','2025-10-23 00:00:00'),(85458,11,'XM6RS6','Grepafloxacin','Y','2025-10-23 00:00:00'),(85456,11,'XM7N43','Greenland shark seafood poison','Y','2025-10-23 00:00:00'),(85455,11,'XM8QW3','Greening\'s frog venom','Y','2025-10-23 00:00:00'),(85454,11,'XM3Y82','Green soap','Y','2025-10-23 00:00:00'),(85453,11,'XM1C12','Green sea turtle seafood poison','Y','2025-10-23 00:00:00'),(85452,11,'XA7144','Greater tuberosity of the humerus','Y','2025-10-23 00:00:00'),(85451,11,'XA1VJ3','Greater trochanter of femur','Y','2025-10-23 00:00:00'),(85450,11,'XA4W18','Greater petrosal nerve','Y','2025-10-23 00:00:00'),(85449,11,'XA2626','Greater palatine artery','Y','2025-10-23 00:00:00'),(85448,11,'XA6BB0','Greater occipital nerve','Y','2025-10-23 00:00:00'),(85447,11,'XA7WQ5','Greater curvature of stomach','Y','2025-10-23 00:00:00'),(85446,11,'XA4WK4','Greater auricular nerve','Y','2025-10-23 00:00:00'),(85445,11,'XA1RE3','Great toenail','Y','2025-10-23 00:00:00'),(85444,11,'XA2RP7','Great toe','Y','2025-10-23 00:00:00'),(85443,11,'XA59H1','Great saphenous vein','Y','2025-10-23 00:00:00'),(85442,11,'XA18W3','Great cerebral vein','Y','2025-10-23 00:00:00'),(85441,11,'XA38Z5','Great cardiac vein','Y','2025-10-23 00:00:00'),(85439,11,'XM9WK5','Grazoprevir','Y','2025-10-23 00:00:00'),(85440,11,'XA3DS7','Great anastomotic vein of Trolard','Y','2025-10-23 00:00:00'),(85438,11,'XE9D4','Gravel, soil, sand, not elsewhere classified','Y','2025-10-23 00:00:00'),(85437,11,'XM5EL7','Gratiola officinalis plant','Y','2025-10-23 00:00:00'),(85436,11,'CA60.7','Graphite fibrosis of lung','Y','2025-10-23 00:00:00'),(85435,11,'XH37K7','Granulosa cell-theca cell tumour','Y','2025-10-23 00:00:00'),(85434,11,'XH97Z8','Granulosa cell tumour, sarcomatoid','Y','2025-10-23 00:00:00'),(85433,11,'XH2KH2','Granulosa cell tumour, juvenile','Y','2025-10-23 00:00:00'),(85432,11,'XH7DV5','Granulosa cell tumour, adult type','Y','2025-10-23 00:00:00'),(85431,11,'XH2U25','Granulosa cell tumour of the testis, juvenile','Y','2025-10-23 00:00:00'),(85430,11,'2C73.2','Granulosa cell malignant tumour of ovary','Y','2025-10-23 00:00:00'),(85429,11,'XH1QG7','Granulosa cell carcinoma','Y','2025-10-23 00:00:00'),(85428,11,'XH0EH1','Granulomatous slack skin','Y','2025-10-23 00:00:00'),(85427,11,'9A22.2','Granulomatous orbital inflammation','Y','2025-10-23 00:00:00'),(85426,11,'DA42.75','Granulomatous gastritis of unknown aetiology','Y','2025-10-23 00:00:00'),(85425,11,'DA51.41','Granulomatous duodenitis of unknown aetiology','Y','2025-10-23 00:00:00'),(85424,11,'4A44.A1','Granulomatosis with polyangiitis','Y','2025-10-23 00:00:00'),(85423,11,'DA01.2','Granuloma or granuloma-like lesions of oral mucosa','Y','2025-10-23 00:00:00'),(85422,11,'1A91','Granuloma inguinale','Y','2025-10-23 00:00:00'),(85421,11,'EF40.20','Granuloma faciale','Y','2025-10-23 00:00:00'),(85420,11,'EE80.0','Granuloma annulare','Y','2025-10-23 00:00:00'),(85419,11,'XA2WC0','Granulocytes','Y','2025-10-23 00:00:00'),(85418,11,'AB92','Granulation of postmastoidectomy cavity','Y','2025-10-23 00:00:00'),(85417,11,'XH09A9','Granular cell tumour, NOS','Y','2025-10-23 00:00:00'),(85416,11,'XH90D3','Granular cell tumour, malignant','Y','2025-10-23 00:00:00'),(85415,11,'XH2XW8','Granular cell tumour of the sellar region','Y','2025-10-23 00:00:00'),(85414,11,'XH2EH4','Granular cell carcinoma','Y','2025-10-23 00:00:00'),(85413,11,'XM8123','Granisetron','Y','2025-10-23 00:00:00'),(85412,11,'MB26.2','Grandiosity','Y','2025-10-23 00:00:00'),(85411,11,'MB26.05','Grandiose delusion','Y','2025-10-23 00:00:00'),(85410,11,'XM7Y78','Gramicidin','Y','2025-10-23 00:00:00'),(85409,11,'XN2QM','Gram Positive Bacteria','Y','2025-10-23 00:00:00'),(85408,11,'XN5PZ','Gram Negative Bacteria','Y','2025-10-23 00:00:00'),(85407,11,'XM3XH8','Grains and flours','Y','2025-10-23 00:00:00'),(85406,11,'XE410','Grain in bulk','Y','2025-10-23 00:00:00'),(85405,11,'4B24.Z','Graft-versus-host disease, unspecified','Y','2025-10-23 00:00:00'),(85404,11,'4B24','Graft-versus-host disease','Y','2025-10-23 00:00:00'),(85403,11,'XT42','Gradual onset','Y','2025-10-23 00:00:00'),(85402,11,'SC81','Gradual deafness disorder (TM1)','Y','2025-10-23 00:00:00'),(85401,11,'XE15N','Gradient induced field problem with device identified','Y','2025-10-23 00:00:00'),(85400,11,'XE628','Gradient increase','Y','2025-10-23 00:00:00'),(85399,11,'XE4MS','Grader','Y','2025-10-23 00:00:00'),(85398,11,'XS7M','Grade IV','Y','2025-10-23 00:00:00'),(85397,11,'XS0U','Grade III Category 6: Major tissue loss extending above transmetatarsal (TM) level, functional foot no longer salvageable','Y','2025-10-23 00:00:00'),(85396,11,'XS6U','Grade III Category 5: Minor tissue loss nonhealing ulcer, focal gangrene with diffuse pedal ischaemia','Y','2025-10-23 00:00:00'),(85395,11,'XS7Z','Grade III','Y','2025-10-23 00:00:00'),(85394,11,'XS8M','Grade II Category 4: Ischaemic rest pain','Y','2025-10-23 00:00:00'),(85393,11,'XS58','Grade II','Y','2025-10-23 00:00:00'),(85392,11,'XS2W','Grade I Category 2: Moderate claudication','Y','2025-10-23 00:00:00'),(85391,11,'XS56','Grade I','Y','2025-10-23 00:00:00'),(85390,11,'XS8J','Grade 9','Y','2025-10-23 00:00:00'),(85389,11,'XS7F','Grade 8','Y','2025-10-23 00:00:00'),(85388,11,'XS5M','Grade 7','Y','2025-10-23 00:00:00'),(85387,11,'XS9M','Grade 6','Y','2025-10-23 00:00:00'),(85386,11,'XS87','Grade 5','Y','2025-10-23 00:00:00'),(85385,11,'XS0K','Grade 4','Y','2025-10-23 00:00:00'),(85384,11,'XS6F','Grade 3','Y','2025-10-23 00:00:00'),(85383,11,'XS31','Grade 2','Y','2025-10-23 00:00:00'),(85382,11,'XS57','Grade 10','Y','2025-10-23 00:00:00'),(85381,11,'XS51','Grade 1 Category 3: Severe claudication','Y','2025-10-23 00:00:00'),(85380,11,'XS6P','Grade 1','Y','2025-10-23 00:00:00'),(85379,11,'XS0Q','Grade 0 Category 1: Mild claudication','Y','2025-10-23 00:00:00'),(85378,11,'XS1T','Grade 0 Category 0: Asymptomatic -no hemodynamically significant occlusive disease','Y','2025-10-23 00:00:00'),(85377,11,'XS24','Grade 0','Y','2025-10-23 00:00:00'),(85376,11,'XA12U3','Gracilis tendon','Y','2025-10-23 00:00:00'),(85375,11,'XA1HH2','Gracilis muscle','Y','2025-10-23 00:00:00'),(85374,11,'SG30','Governor vessel pattern (TM1)','Y','2025-10-23 00:00:00'),(85373,11,'FA25.12','Gouty arthropathy due to enzyme defects or other inherited disorders','Y','2025-10-23 00:00:00'),(85372,11,'FA25.2Z','Gout, unspecified','Y','2025-10-23 00:00:00'),(85370,11,'FA25','Gout','Y','2025-10-23 00:00:00'),(85371,11,'FA25.2','Gout without specification whether primary or secondary','Y','2025-10-23 00:00:00'),(85369,11,'XN2QZ','g?u virus','Y','2025-10-23 00:00:00'),(85367,11,'LD2D.4','Gorlin syndrome','Y','2025-10-23 00:00:00'),(85368,11,'XM8CG4','Goserelin','Y','2025-10-23 00:00:00'),(85366,11,'4B40.2','Good syndrome','Y','2025-10-23 00:00:00'),(85365,11,'1A70.00','Gonorrhoea of penis','Y','2025-10-23 00:00:00'),(85364,11,'JB63.2','Gonorrhoea complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(85363,11,'1A72.3','Gonococcal pharyngitis','Y','2025-10-23 00:00:00'),(85362,11,'1A71','Gonococcal pelviperitonitis','Y','2025-10-23 00:00:00'),(85361,11,'1A7Z','Gonococcal infection, unspecified','Y','2025-10-23 00:00:00'),(85360,11,'1A72.1','Gonococcal infection of rectum','Y','2025-10-23 00:00:00'),(85359,11,'1A72.Y','Gonococcal infection of other specified sites','Y','2025-10-23 00:00:00'),(85358,11,'1A70.Y','Gonococcal infection of other specified genitourinary organ','Y','2025-10-23 00:00:00'),(85357,11,'1A72','Gonococcal infection of other sites','Y','2025-10-23 00:00:00'),(85356,11,'1A72.0','Gonococcal infection of musculoskeletal system','Y','2025-10-23 00:00:00'),(85355,11,'1A70.0Z','Gonococcal infection of lower genitourinary tract without periurethral or accessory gland abscess, unspecified','Y','2025-10-23 00:00:00'),(85354,11,'1A70.0','Gonococcal infection of lower genitourinary tract without periurethral or accessory gland abscess','Y','2025-10-23 00:00:00'),(85353,11,'1A70.1','Gonococcal infection of lower genitourinary tract with periurethral or accessory gland abscess','Y','2025-10-23 00:00:00'),(85352,11,'1A72.4','Gonococcal infection of eye','Y','2025-10-23 00:00:00'),(85351,11,'1A72.2','Gonococcal infection of anus','Y','2025-10-23 00:00:00'),(85350,11,'1A70.Z','Gonococcal genitourinary infection, unspecified','Y','2025-10-23 00:00:00'),(85349,11,'1A70','Gonococcal genitourinary infection','Y','2025-10-23 00:00:00'),(85348,11,'5A61.2','Gonadotropin deficiency','Y','2025-10-23 00:00:00'),(85347,11,'XM10K7','Gonadotropin','Y','2025-10-23 00:00:00'),(85346,11,'XM6W81','Gonadotrophin-releasing hormone antagonists','Y','2025-10-23 00:00:00'),(85345,11,'XH50K4','Gonadotroph adenoma','Y','2025-10-23 00:00:00'),(85343,11,'XH0K61','Gonadoblastoma','Y','2025-10-23 00:00:00'),(85344,11,'XM2TU9','Gonadorelin','Y','2025-10-23 00:00:00'),(85342,11,'XM7X01','Gonadal tissue extract male','Y','2025-10-23 00:00:00'),(85341,11,'XM7JV9','Gonadal tissue extract female','Y','2025-10-23 00:00:00'),(85340,11,'XM6X07','Gonadal tissue extract','Y','2025-10-23 00:00:00'),(85339,11,'XM97H7','Golimumab','Y','2025-10-23 00:00:00'),(85338,11,'XM4BD8','Golden poison frog poison','Y','2025-10-23 00:00:00'),(85337,11,'XM3LE3','Gold preparations','Y','2025-10-23 00:00:00'),(85336,11,'XS50','GOLD 4 very severe: FEV1 <30% predicted','Y','2025-10-23 00:00:00'),(85335,11,'XS8K','GOLD 3 severe: 30% ?FEV1 <50% predicted','Y','2025-10-23 00:00:00'),(85334,11,'XS7U','GOLD 2 moderate: 50% ?FEV1 <80% predicted','Y','2025-10-23 00:00:00'),(85333,11,'XS80','GOLD 1 mild: FEV1? 80% predicted','Y','2025-10-23 00:00:00'),(85332,11,'XE3NW','Goggle or mask, flipper or fin, snorkel','Y','2025-10-23 00:00:00'),(85331,11,'XM5FP5','Goblinfish venom','Y','2025-10-23 00:00:00'),(85330,11,'XH4262','Goblet cell carcinoid','Y','2025-10-23 00:00:00'),(85329,11,'1F67','Gnathostomiasis','Y','2025-10-23 00:00:00'),(85328,11,'XN8GS','Gnathostoma spinigerum','Y','2025-10-23 00:00:00'),(85327,11,'XN8DD','Gnathostoma hispidum','Y','2025-10-23 00:00:00'),(85326,11,'XN0H2','Gnathostoma','Y','2025-10-23 00:00:00'),(85325,11,'XM50V7','Glyphosate','Y','2025-10-23 00:00:00'),(85324,11,'XM88E8','Glymidine sodium','Y','2025-10-23 00:00:00'),(85323,11,'XM5EH1','Glymidine','Y','2025-10-23 00:00:00'),(85322,11,'XM8EW0','Glycyrrhizinate potassium','Y','2025-10-23 00:00:00'),(85321,11,'XM3CL2','Glycyrrhizic acid','Y','2025-10-23 00:00:00'),(85320,11,'XM86G0','Glycyrrhiza extract','Y','2025-10-23 00:00:00'),(85318,11,'MF93','Glycosuria','Y','2025-10-23 00:00:00'),(85319,11,'XM6861','Glycyclamide','Y','2025-10-23 00:00:00'),(85317,11,'XM42V2','Glycopyrronium bromide','Y','2025-10-23 00:00:00'),(85316,11,'5C56.2Z','Glycoproteinosis, unspecified','Y','2025-10-23 00:00:00'),(85315,11,'5C56.2','Glycoproteinosis','Y','2025-10-23 00:00:00'),(85314,11,'XM8S33','Glycopeptides','Y','2025-10-23 00:00:00'),(85313,11,'XM7945','Glyconiazide','Y','2025-10-23 00:00:00'),(85312,11,'XH3XT5','Glycogen-rich carcinoma','Y','2025-10-23 00:00:00'),(85311,11,'XH2736','Glycogenic rhabdomyoma','Y','2025-10-23 00:00:00'),(85310,11,'5C51.3','Glycogen storage disease','Y','2025-10-23 00:00:00'),(85309,11,'XM6V40','Glycobiarsol','Y','2025-10-23 00:00:00'),(85308,11,'XM0K09','Glyclopyramide','Y','2025-10-23 00:00:00'),(85307,11,'5C50.70','Glycine encephalopathy','Y','2025-10-23 00:00:00'),(85306,11,'XM7NQ3','Glycine','Y','2025-10-23 00:00:00'),(85305,11,'XM8LK8','Glyceryl trinitrate','Y','2025-10-23 00:00:00'),(85304,11,'XM7XA4','Glyceryl triacetate topical','Y','2025-10-23 00:00:00'),(85303,11,'XM7AM5','Glyceryl monothioglycolate','Y','2025-10-23 00:00:00'),(85302,11,'XM7QX2','Glyceryl guaiacolate','Y','2025-10-23 00:00:00'),(85301,11,'XM2S34','Glycerophosphate','Y','2025-10-23 00:00:00'),(85300,11,'XM4F44','Glycerol phenylbutyrate','Y','2025-10-23 00:00:00'),(85299,11,'XM02Y3','Glycerol intravenous','Y','2025-10-23 00:00:00'),(85298,11,'XM37H6','Glycerol borax','Y','2025-10-23 00:00:00'),(85297,11,'XM5348','Glycerol','Y','2025-10-23 00:00:00'),(85296,11,'XM6JN8','Glyburide','Y','2025-10-23 00:00:00'),(85295,11,'XA4HK9','Gluteus minimus tendon','Y','2025-10-23 00:00:00'),(85294,11,'XA7BY4','Gluteus minimus muscle','Y','2025-10-23 00:00:00'),(85293,11,'XA1387','Gluteus medius tendon','Y','2025-10-23 00:00:00'),(85292,11,'XA5VJ8','Gluteus medius muscle','Y','2025-10-23 00:00:00'),(85291,11,'XA1JL3','Gluteus maximus tendon','Y','2025-10-23 00:00:00'),(85290,11,'XA48F2','Gluteus maximus muscle','Y','2025-10-23 00:00:00'),(85289,11,'XM5S80','Glutethimide','Y','2025-10-23 00:00:00'),(85288,11,'XA8GA3','Gluteal vein','Y','2025-10-23 00:00:00'),(85287,11,'XA60R4','Gluteal nerve','Y','2025-10-23 00:00:00'),(85286,11,'XA5UE3','Gluteal fold','Y','2025-10-23 00:00:00'),(85285,11,'XM7SW5','Glutathione','Y','2025-10-23 00:00:00'),(85284,11,'XM18N0','Glutaraldehyde medicinal','Y','2025-10-23 00:00:00'),(85283,11,'XM40T8','Glutaral nonmedicinal','Y','2025-10-23 00:00:00'),(85282,11,'XM1P36','Glutamine','Y','2025-10-23 00:00:00'),(85281,11,'XM3UT3','Glutamic acid hydrochloride','Y','2025-10-23 00:00:00'),(85280,11,'XM0994','Glutamic acid','Y','2025-10-23 00:00:00'),(85279,11,'XM3U55','Glue','Y','2025-10-23 00:00:00'),(85278,11,'XM7L13','Glucurolactone','Y','2025-10-23 00:00:00'),(85277,11,'XM4RF4','Glucosulfone sodium','Y','2025-10-23 00:00:00'),(85276,11,'5C61.0','Glucose-galactose malabsorption','Y','2025-10-23 00:00:00'),(85275,11,'XM6598','Glucose with sodium chloride','Y','2025-10-23 00:00:00'),(85274,11,'5C51.42','Glucose or galactose intolerance of newborn','Y','2025-10-23 00:00:00'),(85273,11,'XM6XX8','Glucose','Y','2025-10-23 00:00:00'),(85272,11,'XM5Z51','Glucosaminoglycan polysulfate','Y','2025-10-23 00:00:00'),(85271,11,'XM6SR1','Glucosamine','Y','2025-10-23 00:00:00'),(85270,11,'XM7E16','Gluconic acid','Y','2025-10-23 00:00:00'),(85269,11,'XM4Z52','Glucocorticoids','Y','2025-10-23 00:00:00'),(85268,11,'5A71.00','Glucocorticoid resistance','Y','2025-10-23 00:00:00'),(85267,11,'XM8L87','Glucarpidase','Y','2025-10-23 00:00:00'),(85266,11,'XH4NQ8','Glucagonoma','Y','2025-10-23 00:00:00'),(85265,11,'XH7152','Glucagon-like peptide-producing tumour','Y','2025-10-23 00:00:00'),(85264,11,'XM4MK4','Glucagon-like peptide-1 analogues','Y','2025-10-23 00:00:00'),(85263,11,'XM9N95','Glucagon','Y','2025-10-23 00:00:00'),(85262,11,'XA7AE7','Glottis','Y','2025-10-23 00:00:00'),(85261,11,'XA8RW1','Glossopharyngeal nerve','Y','2025-10-23 00:00:00'),(85260,11,'XA9A13','Glossopalatine arch','Y','2025-10-23 00:00:00'),(85259,11,'DA03.0','Glossitis','Y','2025-10-23 00:00:00'),(85258,11,'XM66Z7','Gloriosa superba plant','Y','2025-10-23 00:00:00'),(85257,11,'XH47J2','Glomus tumour, NOS','Y','2025-10-23 00:00:00'),(85256,11,'XH21E6','Glomus tumour, malignant','Y','2025-10-23 00:00:00'),(85255,11,'XH5D10','Glomus tumor of uncertain malignant potential','Y','2025-10-23 00:00:00'),(85254,11,'XA17K2','Glomus jugulare','Y','2025-10-23 00:00:00'),(85253,11,'XA40R2','Glomerulus','Y','2025-10-23 00:00:00'),(85252,11,'XH9NB0','Glomeruloid hemangioma','Y','2025-10-23 00:00:00'),(85251,11,'GB4Z','Glomerular diseases, unspecified','Y','2025-10-23 00:00:00'),(85250,11,'XH05Y1','Glomangiosarcoma','Y','2025-10-23 00:00:00'),(85249,11,'XH2702','Glomangiomyoma','Y','2025-10-23 00:00:00'),(85248,11,'XH7CP7','Glomangiomatosis','Y','2025-10-23 00:00:00'),(85247,11,'XH3RX1','Glomangioma','Y','2025-10-23 00:00:00'),(85246,11,'XA80J3','Globus pallidus','Y','2025-10-23 00:00:00'),(85245,11,'DD90.0','Globus','Y','2025-10-23 00:00:00'),(85244,11,'XM9XP6','Globulin antiviral','Y','2025-10-23 00:00:00'),(85243,11,'XM3LT2','Globulin antivenin','Y','2025-10-23 00:00:00'),(85242,11,'XM6UW5','Globulin antirhesus','Y','2025-10-23 00:00:00'),(85241,11,'XM8MQ7','Globulin antilymphocytic','Y','2025-10-23 00:00:00'),(85240,11,'XM4SE3','Globin zinc insulin','Y','2025-10-23 00:00:00'),(85239,11,'XM65J8','Glisoxepide','Y','2025-10-23 00:00:00'),(85238,11,'XM2584','Glisolamide','Y','2025-10-23 00:00:00'),(85237,11,'XM8597','Gliquidone','Y','2025-10-23 00:00:00'),(85236,11,'XM3TQ4','Glipizide','Y','2025-10-23 00:00:00'),(85235,11,'XH9RC8','Gliosarcoma','Y','2025-10-23 00:00:00'),(85234,11,'XH6ZH4','Gliomatosis cerebri','Y','2025-10-23 00:00:00'),(85233,11,'2A02.0Z','Gliomas of spinal cord, cranial nerves or other parts of the central nervous system, unspecified','Y','2025-10-23 00:00:00'),(85232,11,'2A02.0','Gliomas of spinal cord, cranial nerves or other parts of the central nervous system','Y','2025-10-23 00:00:00'),(85231,11,'2A00.0Z','Gliomas of brain, unspecified','Y','2025-10-23 00:00:00'),(85230,11,'2A00.0','Gliomas of brain','Y','2025-10-23 00:00:00'),(85229,11,'XH4RQ3','Glioma, malignant','Y','2025-10-23 00:00:00'),(85228,11,'XH0B58','Gliofibroma','Y','2025-10-23 00:00:00'),(85227,11,'XH17J4','Glioblastoma, secondary, NOS','Y','2025-10-23 00:00:00'),(85226,11,'XH0MB1','Glioblastoma, primary, NOS','Y','2025-10-23 00:00:00'),(85225,11,'XH7F82','Glioblastoma, NOS','Y','2025-10-23 00:00:00'),(85224,11,'XH5571','Glioblastoma, IDH-wild type','Y','2025-10-23 00:00:00'),(85223,11,'XH4FN3','Glioblastoma, IDH mutant','Y','2025-10-23 00:00:00'),(85222,11,'2A02.00','Glioblastoma of spinal cord, cranial nerves or other parts of central nervous system','Y','2025-10-23 00:00:00'),(85221,11,'2A00.00','Glioblastoma of brain','Y','2025-10-23 00:00:00'),(85219,11,'XM5N74','Glimepiride','Y','2025-10-23 00:00:00'),(85220,11,'XM06A4','Glimidine','Y','2025-10-23 00:00:00'),(85217,11,'XE2KU','Glider','Y','2025-10-23 00:00:00'),(85218,11,'XE33H','Glider as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(85216,11,'XM2G21','Gliclazide','Y','2025-10-23 00:00:00'),(85215,11,'XM8E97','Glibornuride','Y','2025-10-23 00:00:00'),(85214,11,'XH52J1','GLI1-altered epithelioid soft tissue tumor','Y','2025-10-23 00:00:00'),(85213,11,'XA5Z24','Glenoidal labrum ligament','Y','2025-10-23 00:00:00'),(85212,11,'XA1216','Glenoid cavity of the scapula','Y','2025-10-23 00:00:00'),(85210,11,'XA49P8','Glenohumeral joint','Y','2025-10-23 00:00:00'),(85211,11,'XA8H81','Glenohumeral ligament','Y','2025-10-23 00:00:00'),(85208,11,'XE6E6','Glazes','Y','2025-10-23 00:00:00'),(85209,11,'XM1NF4','Glecaprevir and Pibrentasvir','Y','2025-10-23 00:00:00'),(85207,11,'9C40.9','Glaucomatous optic neuropathy','Y','2025-10-23 00:00:00'),(85206,11,'9C61.25','Glaucomato-cyclitic crisis','Y','2025-10-23 00:00:00'),(85204,11,'9C60','Glaucoma suspect','Y','2025-10-23 00:00:00'),(85205,11,'9C61.Z','Glaucoma, unspecified','Y','2025-10-23 00:00:00'),(85203,11,'9C6Z','Glaucoma or glaucoma suspect, unspecified','Y','2025-10-23 00:00:00'),(85202,11,'9D25','Glaucoma due to ocular surgery or laser','Y','2025-10-23 00:00:00'),(85201,11,'9C61.27','Glaucoma due to intraocular tumours','Y','2025-10-23 00:00:00'),(85200,11,'9C61.29','Glaucoma due to eye trauma','Y','2025-10-23 00:00:00'),(85199,11,'9C61.24','Glaucoma due to eye inflammation','Y','2025-10-23 00:00:00'),(85198,11,'9C61.2A','Glaucoma due to drugs','Y','2025-10-23 00:00:00'),(85197,11,'9C61.2B','Glaucoma caused by increased episcleral venous pressure','Y','2025-10-23 00:00:00'),(85196,11,'9C61.28','Glaucoma associated with retinal detachment','Y','2025-10-23 00:00:00'),(85195,11,'9C61.23','Glaucoma associated with intraocular haemorrhage','Y','2025-10-23 00:00:00'),(85194,11,'9C61','Glaucoma','Y','2025-10-23 00:00:00'),(85193,11,'XM1RE2','Glaucarubin','Y','2025-10-23 00:00:00'),(85192,11,'XM4PM9','Glatiramer acetate','Y','2025-10-23 00:00:00'),(85191,11,'XH00N7','Glassy cell carcinoma','Y','2025-10-23 00:00:00'),(85190,11,'XE4KU','Glass sheet, piece, shard','Y','2025-10-23 00:00:00'),(85189,11,'XE4YT','Glass door','Y','2025-10-23 00:00:00'),(85188,11,'XE6LK','Glass bottle or jar','Y','2025-10-23 00:00:00'),(85187,11,'XM6038','Glasdegib','Y','2025-10-23 00:00:00'),(85186,11,'XA0MH6','Glans penis','Y','2025-10-23 00:00:00'),(85185,11,'XH3BK2','Glandular papilloma','Y','2025-10-23 00:00:00'),(85184,11,'XH6AF9','Glandular intraepithelial neoplasia, low grade','Y','2025-10-23 00:00:00'),(85183,11,'XH28N7','Glandular intraepithelial neoplasia, high grade','Y','2025-10-23 00:00:00'),(85182,11,'XM1AG2','Glandular extract (medicinal)','Y','2025-10-23 00:00:00'),(85181,11,'XA83M8','Glandular branches of the cervical artery','Y','2025-10-23 00:00:00'),(85180,11,'1B92','Glanders','Y','2025-10-23 00:00:00'),(85179,11,'XM7AM9','Glafenine','Y','2025-10-23 00:00:00'),(85178,11,'XA90D8','Glabella','Y','2025-10-23 00:00:00'),(85177,11,'XM2505','Gitoformate','Y','2025-10-23 00:00:00'),(85176,11,'XM8K74','Gitaloxin','Y','2025-10-23 00:00:00'),(85175,11,'XM0DG3','Gitalin','Y','2025-10-23 00:00:00'),(85174,11,'XM1CG4','Ginkgo folium','Y','2025-10-23 00:00:00'),(85173,11,'DA0D.5','Gingival ulceration','Y','2025-10-23 00:00:00'),(85172,11,'DA0D.0','Gingival recession','Y','2025-10-23 00:00:00'),(85171,11,'DA0D.2','Gingival or edentulous alveolar ridge lesions associated with trauma','Y','2025-10-23 00:00:00'),(85170,11,'DA0D.1','Gingival enlargement','Y','2025-10-23 00:00:00'),(85169,11,'DA0B.Z','Gingival diseases, unspecified','Y','2025-10-23 00:00:00'),(85168,11,'DA0B','Gingival diseases','Y','2025-10-23 00:00:00'),(85167,11,'XA54T3','Gingivae','Y','2025-10-23 00:00:00'),(85166,11,'XM1TN8','Ginger','Y','2025-10-23 00:00:00'),(85165,11,'XM4BT2','Gilteritinib','Y','2025-10-23 00:00:00'),(85164,11,'5C58.01','Gilbert syndrome','Y','2025-10-23 00:00:00'),(85163,11,'XM7HD4','Gila monster lizard venom','Y','2025-10-23 00:00:00'),(85162,11,'XE65X','Gila monster','Y','2025-10-23 00:00:00'),(85161,11,'XH6W94','Gigantiform cementoma','Y','2025-10-23 00:00:00'),(85160,11,'1A31','Giardiasis','Y','2025-10-23 00:00:00'),(85159,11,'XN94Z','Giardia lamblia','Y','2025-10-23 00:00:00'),(85158,11,'XN6H5','Giardia','Y','2025-10-23 00:00:00'),(85157,11,'XH2C28','Giant pigmented naevus, NOS','Y','2025-10-23 00:00:00'),(85156,11,'9A60.00','Giant papillary conjunctivitis','Y','2025-10-23 00:00:00'),(85155,11,'XM52D7','Giant forest scorpion venom','Y','2025-10-23 00:00:00'),(85154,11,'XH4RU1','Giant fibroadenoma','Y','2025-10-23 00:00:00'),(85153,11,'2F20.20','Giant congenital melanocytic naevus','Y','2025-10-23 00:00:00'),(85152,11,'XH81M1','Giant cell tumour of soft parts, NOS','Y','2025-10-23 00:00:00'),(85151,11,'XH4TC2','Giant cell tumour of bone, NOS','Y','2025-10-23 00:00:00'),(85150,11,'XH0492','Giant cell tumour of bone, malignant','Y','2025-10-23 00:00:00'),(85149,11,'XH73J4','Giant cell sarcoma','Y','2025-10-23 00:00:00'),(85148,11,'BC42.0','Giant cell myocarditis','Y','2025-10-23 00:00:00'),(85147,11,'DA01.20','Giant cell granuloma, central','Y','2025-10-23 00:00:00'),(85146,11,'XH8UC5','Giant cell glioblastoma','Y','2025-10-23 00:00:00'),(85145,11,'XH9AV8','Giant cell fibroblastoma','Y','2025-10-23 00:00:00'),(85144,11,'XH1JZ2','Giant cell carcinoma','Y','2025-10-23 00:00:00'),(85143,11,'4A44.2','Giant cell arteritis','Y','2025-10-23 00:00:00'),(85142,11,'XH73S9','Giant cell angiofibroma','Y','2025-10-23 00:00:00'),(85141,11,'XH3XZ6','Giant cell and spindle cell carcinoma','Y','2025-10-23 00:00:00'),(85140,11,'XM3DB5','Ghost shark venom','Y','2025-10-23 00:00:00'),(85139,11,'XH2BX2','Ghost cell odontogenic carcinoma','Y','2025-10-23 00:00:00'),(85138,11,'VD43.3','Getting remunerative work or school work done quickly [WHODAS]','Y','2025-10-23 00:00:00'),(85137,11,'VD42.1','Getting household work done quickly [WHODAS]','Y','2025-10-23 00:00:00'),(85136,11,'VD43.2','Getting all needed work or school work done [WHODAS]','Y','2025-10-23 00:00:00'),(85135,11,'VD42.0','Getting all needed housework done [WHODAS]','Y','2025-10-23 00:00:00'),(85133,11,'XM1KX5','Gestonorone caproate','Y','2025-10-23 00:00:00'),(85134,11,'XM7E94','Gestrinone','Y','2025-10-23 00:00:00'),(85132,11,'XM4BC7','Gestodene and ethinylestradiol','Y','2025-10-23 00:00:00'),(85131,11,'JA22.0','Gestational proteinuria without hypertension','Y','2025-10-23 00:00:00'),(85130,11,'JA65.10','Gestational pemphigoid','Y','2025-10-23 00:00:00'),(85129,11,'JA22.1','Gestational oedema without hypertension','Y','2025-10-23 00:00:00'),(85128,11,'JA22.2','Gestational oedema with proteinuria without hypertension','Y','2025-10-23 00:00:00'),(85127,11,'JA22','Gestational oedema or proteinuria without hypertension','Y','2025-10-23 00:00:00'),(85125,11,'8E02.1','Gerstmann-Straussler-Scheinker syndrome','Y','2025-10-23 00:00:00'),(85126,11,'JA23','Gestational hypertension','Y','2025-10-23 00:00:00'),(85123,11,'XH1E13','Germinoma','Y','2025-10-23 00:00:00'),(85124,11,'MB4C','Gerstmann syndrome','Y','2025-10-23 00:00:00'),(85122,11,'XA5LM0','Germinal matrix','Y','2025-10-23 00:00:00'),(85121,11,'XH4NU1','Germ cell tumour, regressed','Y','2025-10-23 00:00:00'),(85120,11,'XH0A34','Germ cell tumour, nonseminomatous','Y','2025-10-23 00:00:00'),(85119,11,'XH9QP9','Germ cell tumour with associated haematological malignancy','Y','2025-10-23 00:00:00'),(85118,11,'2C80.2','Germ cell tumour of testis','Y','2025-10-23 00:00:00'),(85117,11,'XM4S45','Geraniol','Y','2025-10-23 00:00:00'),(85116,11,'XM5KP8','Gepirone','Y','2025-10-23 00:00:00'),(85115,11,'XM4B54','Gepefrine','Y','2025-10-23 00:00:00'),(85113,11,'XN3AG','Geotrichum','Y','2025-10-23 00:00:00'),(85114,11,'XN0ES','Geotrichum candidum','Y','2025-10-23 00:00:00'),(85112,11,'XN1Z2','Geophilic dermatophytes','Y','2025-10-23 00:00:00'),(85110,11,'XM63F8','Gentian','Y','2025-10-23 00:00:00'),(85111,11,'DA03.1','Geographic tongue','Y','2025-10-23 00:00:00'),(85109,11,'XM0XR4','Gentamicin topical','Y','2025-10-23 00:00:00'),(85108,11,'XM3YS5','Gentamicin','Y','2025-10-23 00:00:00'),(85107,11,'XE2PA','Genotoxicity problem with device identified','Y','2025-10-23 00:00:00'),(85106,11,'KC0Z','Genitourinary system disorders specific to the perinatal or neonatal period, unspecified','Y','2025-10-23 00:00:00'),(85105,11,'VV5Z','Genitourinary and reproductive functions, unspecified','Y','2025-10-23 00:00:00'),(85104,11,'XA9JZ4','Genitofemoral nerve','Y','2025-10-23 00:00:00'),(85103,11,'1F28.3','Genitocrural dermatophytosis','Y','2025-10-23 00:00:00'),(85102,11,'1A95.1','Genital warts','Y','2025-10-23 00:00:00'),(85101,11,'JA61.1','Genital varices in pregnancy','Y','2025-10-23 00:00:00'),(85100,11,'GA00.3','Genital ulcer of vulva','Y','2025-10-23 00:00:00'),(85099,11,'GA02.3','Genital ulcer disease of vagina','Y','2025-10-23 00:00:00'),(85098,11,'JA05.0','Genital tract or pelvic infection following abortion, ectopic or molar pregnancy','Y','2025-10-23 00:00:00'),(85097,11,'XH5AF2','Genital rhabdomyoma','Y','2025-10-23 00:00:00'),(85096,11,'XA5FG3','Genital region','Y','2025-10-23 00:00:00'),(85095,11,'XH5EL4','Genital naevus','Y','2025-10-23 00:00:00'),(85094,11,'XA99Q6','Genital branch of genitofemoral nerve','Y','2025-10-23 00:00:00'),(85093,11,'XA9L90','Geniohyoid tendon','Y','2025-10-23 00:00:00'),(85092,11,'XA5YU7','Geniohyoid muscle','Y','2025-10-23 00:00:00'),(85091,11,'XA6BT8','Genioglossus tendon','Y','2025-10-23 00:00:00'),(85090,11,'XA50R5','Genioglossus muscle','Y','2025-10-23 00:00:00'),(85089,11,'XA66H0','Geniculate ganglion','Y','2025-10-23 00:00:00'),(85088,11,'EE40.30','Genetically-determined skin fragility','Y','2025-10-23 00:00:00'),(85087,11,'EC21.4','Genetically-determined hypertrichosis','Y','2025-10-23 00:00:00'),(85086,11,'LD28.2','Genetically-determined cutis laxa','Y','2025-10-23 00:00:00'),(85085,11,'EC10','Genetic syndromes with poikiloderma','Y','2025-10-23 00:00:00'),(85084,11,'LD27.3','Genetic syndromes with hypertrichosis','Y','2025-10-23 00:00:00'),(85083,11,'EC21.3','Genetic syndromes with alopecia or hypotrichosis','Y','2025-10-23 00:00:00'),(85082,11,'EC21.1','Genetic syndromes with abnormalities of the hair shaft','Y','2025-10-23 00:00:00'),(85081,11,'LD27.4','Genetic syndromes affecting nails','Y','2025-10-23 00:00:00'),(85080,11,'4A00.2','Genetic susceptibility to particular pathogens','Y','2025-10-23 00:00:00'),(85079,11,'8E02','Genetic prion diseases','Y','2025-10-23 00:00:00'),(85078,11,'8A61.Z','Genetic or presumed genetic syndromes primarily expressed as epilepsy, unspecified','Y','2025-10-23 00:00:00'),(85077,11,'8A61','Genetic or presumed genetic syndromes primarily expressed as epilepsy','Y','2025-10-23 00:00:00'),(85076,11,'DA02.0','Genetic or developmental disorders involving lips or oral mucosa','Y','2025-10-23 00:00:00'),(85075,11,'LD27.6Z','Genetic lipodystrophy, unspecified','Y','2025-10-23 00:00:00'),(85074,11,'LD27.6','Genetic lipodystrophy','Y','2025-10-23 00:00:00'),(85073,11,'LD27.5','Genetic hamartoneoplastic syndromes affecting the skin','Y','2025-10-23 00:00:00'),(85072,11,'8A61.4Z','Genetic epileptic syndromes with variable age of onset, unspecified','Y','2025-10-23 00:00:00'),(85071,11,'8A61.4','Genetic epileptic syndromes with variable age of onset','Y','2025-10-23 00:00:00'),(85070,11,'8A61.1Z','Genetic epileptic syndromes with onset in infancy, unspecified','Y','2025-10-23 00:00:00'),(85069,11,'8A61.1','Genetic epileptic syndromes with onset in infancy','Y','2025-10-23 00:00:00'),(85068,11,'8A61.0Z','Genetic epileptic syndromes with neonatal onset, unspecified','Y','2025-10-23 00:00:00'),(85067,11,'8A61.0','Genetic epileptic syndromes with neonatal onset','Y','2025-10-23 00:00:00'),(85066,11,'8A61.2Z','Genetic epileptic syndromes with childhood onset, unspecified','Y','2025-10-23 00:00:00'),(85065,11,'8A61.2','Genetic epileptic syndromes with childhood onset','Y','2025-10-23 00:00:00'),(85064,11,'8A61.3Z','Genetic epileptic syndrome with adolescent or adult onset, unspecified','Y','2025-10-23 00:00:00'),(85063,11,'8A61.3','Genetic epileptic syndrome with adolescent or adult onset','Y','2025-10-23 00:00:00'),(85062,11,'EC23','Genetic disorders of skin pigmentation','Y','2025-10-23 00:00:00'),(85060,11,'EC21.0','Genetic defects of the hair shaft','Y','2025-10-23 00:00:00'),(85061,11,'EC20','Genetic disorders of keratinisation','Y','2025-10-23 00:00:00'),(85059,11,'EC22','Genetic defects of nails or nail growth','Y','2025-10-23 00:00:00'),(85058,11,'EC21','Genetic defects of hair or hair growth','Y','2025-10-23 00:00:00'),(85057,11,'8E02.0','Genetic Creutzfeldt-Jakob disease','Y','2025-10-23 00:00:00'),(85056,11,'LD24.KZ','Genetic bone diseases with decreased bone density, unspecified','Y','2025-10-23 00:00:00'),(85055,11,'LD24.K','Genetic bone diseases with decreased bone density','Y','2025-10-23 00:00:00'),(85054,11,'XB4S','Genetic','Y','2025-10-23 00:00:00'),(85053,11,'VW8Z','Generic functioning domains, unspecified','Y','2025-10-23 00:00:00'),(85051,11,'8A68.4','Generalised tonic-clonic seizure','Y','2025-10-23 00:00:00'),(85052,11,'XE0RK','Generator component of medical device','Y','2025-10-23 00:00:00'),(85050,11,'8A68.6','Generalised tonic seizure','Y','2025-10-23 00:00:00'),(85049,11,'5A05','Generalised resistance to thyroid hormone','Y','2025-10-23 00:00:00'),(85047,11,'MG29.1','Generalised oedema','Y','2025-10-23 00:00:00'),(85048,11,'EA90.40','Generalised pustular psoriasis','Y','2025-10-23 00:00:00'),(85046,11,'8A68.5','Generalised myoclonic seizure','Y','2025-10-23 00:00:00'),(85045,11,'MA01.1','Generalised lymph node enlargement','Y','2025-10-23 00:00:00'),(85044,11,'EF20.4','Generalised essential telangiectasia','Y','2025-10-23 00:00:00'),(85043,11,'2F20.3','Generalised eruptive melanocytic naevi','Y','2025-10-23 00:00:00'),(85042,11,'EA89','Generalised eczematous dermatitis of unspecified type','Y','2025-10-23 00:00:00'),(85041,11,'XK63','Generalised distribution','Y','2025-10-23 00:00:00'),(85039,11,'6B00','Generalised anxiety disorder','Y','2025-10-23 00:00:00'),(85040,11,'8A68.7','Generalised atonic seizure','Y','2025-10-23 00:00:00'),(85038,11,'MD81.2','Generalised abdominal pain','Y','2025-10-23 00:00:00'),(85037,11,'VV9Z','General tasks and demands, unspecified','Y','2025-10-23 00:00:00'),(85036,11,'XD4U38','General purpose electrocardiographs','Y','2025-10-23 00:00:00'),(85035,11,'QA04.6','General psychiatric examination, requested by authority','Y','2025-10-23 00:00:00'),(85034,11,'QA00.3','General psychiatric examination','Y','2025-10-23 00:00:00'),(85033,11,'PK9B.Z','General or plastic surgery devices, implants or grafts associated with injury or harm, unspecified','Y','2025-10-23 00:00:00'),(85032,11,'PK9B','General or plastic surgery devices, implants or grafts associated with injury or harm','Y','2025-10-23 00:00:00'),(85031,11,'PK9B.1','General or plastic surgery devices associated with injury or harm, therapeutic, nonsurgical or rehabilitative devices','Y','2025-10-23 00:00:00'),(85030,11,'PK9B.3','General or plastic surgery devices associated with injury or harm, surgical instruments, materials or devices','Y','2025-10-23 00:00:00'),(85029,11,'PK9B.2','General or plastic surgery devices associated with injury or harm, prosthetic or other implants, materials or accessory devices','Y','2025-10-23 00:00:00'),(85028,11,'PK9B.4','General or plastic surgery devices associated with injury or harm, miscellaneous devices, not elsewhere classified','Y','2025-10-23 00:00:00'),(85027,11,'PK9B.0','General or plastic surgery devices associated with injury or harm, diagnostic or monitoring devices','Y','2025-10-23 00:00:00'),(85026,11,'PK94.Z','General hospital or personal use devices associated with injury or harm, unspecified','Y','2025-10-23 00:00:00'),(85025,11,'PK94.1','General hospital or personal use devices associated with injury or harm, therapeutic, nonsurgical or rehabilitative devices','Y','2025-10-23 00:00:00'),(85024,11,'PK94.3','General hospital or personal use devices associated with injury or harm, surgical instruments, materials or devices','Y','2025-10-23 00:00:00'),(85023,11,'PK94.2','General hospital or personal use devices associated with injury or harm, prosthetic or other implants, materials or accessory devices','Y','2025-10-23 00:00:00'),(85022,11,'PK94.4','General hospital or personal use devices associated with injury or harm, miscellaneous devices, not elsewhere classified','Y','2025-10-23 00:00:00'),(85021,11,'PK94.0','General hospital or personal use devices associated with injury or harm, diagnostic or monitoring devices','Y','2025-10-23 00:00:00'),(85020,11,'PK94','General hospital or personal use devices associated with injury or harm','Y','2025-10-23 00:00:00'),(85019,11,'QA00.Z','General examination or investigation of persons without complaint or reported diagnosis, unspecified','Y','2025-10-23 00:00:00'),(85018,11,'QA00','General examination or investigation of persons without complaint or reported diagnosis','Y','2025-10-23 00:00:00'),(85016,11,'XE9SL','Gender of perpetrator, unknown','Y','2025-10-23 00:00:00'),(85017,11,'QA00.0','General adult medical examination','Y','2025-10-23 00:00:00'),(85015,11,'XE6W8','Gender of perpetrator, other','Y','2025-10-23 00:00:00'),(85014,11,'XE5YG','Gender of perpetrator, male','Y','2025-10-23 00:00:00'),(85013,11,'XE56C','Gender of perpetrator, female','Y','2025-10-23 00:00:00'),(85012,11,'HA6Z','Gender incongruence, unspecified','Y','2025-10-23 00:00:00'),(85011,11,'HA61','Gender incongruence of childhood','Y','2025-10-23 00:00:00'),(85009,11,'XM1WL2','Gemtuzumab ozogamicin','Y','2025-10-23 00:00:00'),(85010,11,'HA60','Gender incongruence of adolescence or adulthood','Y','2025-10-23 00:00:00'),(85008,11,'XH5Y81','Gemistocytic astrocytoma','Y','2025-10-23 00:00:00'),(85007,11,'XM5T11','Gemigliptin','Y','2025-10-23 00:00:00'),(85006,11,'XM5HN4','Gemifloxacin','Y','2025-10-23 00:00:00'),(85004,11,'XM2L11','Gemeprost','Y','2025-10-23 00:00:00'),(85005,11,'XM01S9','Gemfibrozil','Y','2025-10-23 00:00:00'),(85003,11,'XA5M18','Gemellus superior tendon','Y','2025-10-23 00:00:00'),(85001,11,'XA2HX4','Gemellus inferior tendon','Y','2025-10-23 00:00:00'),(85002,11,'XA0472','Gemellus superior muscle','Y','2025-10-23 00:00:00'),(84999,11,'XM8GX9','Gemcitabine','Y','2025-10-23 00:00:00'),(85000,11,'XA7PN8','Gemellus inferior muscle','Y','2025-10-23 00:00:00'),(84998,11,'XM1VX3','Gelsemium sempervirens plant','Y','2025-10-23 00:00:00'),(84996,11,'XM5WF6','Gelfoam','Y','2025-10-23 00:00:00'),(84997,11,'XM4Y73','Gelsemine','Y','2025-10-23 00:00:00'),(84994,11,'XM0CQ3','Gelatin agents','Y','2025-10-23 00:00:00'),(84995,11,'XM5VL6','Gelfilm','Y','2025-10-23 00:00:00'),(84992,11,'XE53W','Gel leak','Y','2025-10-23 00:00:00'),(84993,11,'XM4NU0','Gelatin (intravenous)','Y','2025-10-23 00:00:00'),(84991,11,'XM3A37','Gefitinib','Y','2025-10-23 00:00:00'),(84989,11,'XM4SL3','Gefapixant','Y','2025-10-23 00:00:00'),(84990,11,'XM0HB8','Gefarnate','Y','2025-10-23 00:00:00'),(84988,11,'XM9727','Gedocarnil','Y','2025-10-23 00:00:00'),(84987,11,'XE5M6','Gears component of medical device','Y','2025-10-23 00:00:00'),(84986,11,'XN5XD','GB virus C','Y','2025-10-23 00:00:00'),(84984,11,'XM5P41','Gaultheria procumbens plant oil','Y','2025-10-23 00:00:00'),(84985,11,'9C84.4','Gaze-evoked nystagmus','Y','2025-10-23 00:00:00'),(84983,11,'XM91T0','Gaultheria procumbens plant','Y','2025-10-23 00:00:00'),(84982,11,'XE00B','Gauges or meters component of medical device','Y','2025-10-23 00:00:00'),(84980,11,'XM17A4','Gatifloxacin','Y','2025-10-23 00:00:00'),(84981,11,'XM92Q3','Gatifloxacin topical','Y','2025-10-23 00:00:00'),(84979,11,'XE3GT','Gate','Y','2025-10-23 00:00:00'),(84978,11,'DE12.1','Gastrostomy malfunction','Y','2025-10-23 00:00:00'),(84977,11,'LB02','Gastroschisis','Y','2025-10-23 00:00:00'),(84976,11,'DA40.5','Gastroptosis','Y','2025-10-23 00:00:00'),(84975,11,'DA41.00','Gastroparesis','Y','2025-10-23 00:00:00'),(84974,11,'DA22.Z','Gastro-oesophageal reflux disease, unspecified','Y','2025-10-23 00:00:00'),(84973,11,'KB80','Gastro-oesophageal reflux disease in newborn','Y','2025-10-23 00:00:00'),(84972,11,'DA22','Gastro-oesophageal reflux disease','Y','2025-10-23 00:00:00'),(84971,11,'DA26.3','Gastro-oesophageal laceration-haemorrhage syndrome','Y','2025-10-23 00:00:00'),(84970,11,'PK80.31','Gastrointestinal, abdominal, or abdominal wall procedure associated with injury or harm, percutaneous approach','Y','2025-10-23 00:00:00'),(84969,11,'PK80.30','Gastrointestinal, abdominal, or abdominal wall procedure associated with injury or harm, open approach','Y','2025-10-23 00:00:00'),(84968,11,'PK80.32','Gastrointestinal, abdominal, or abdominal wall procedure associated with injury or harm, endoscopic approach','Y','2025-10-23 00:00:00'),(84967,11,'PK80.3Z','Gastrointestinal, abdominal, or abdominal wall procedure associated with injury or harm in therapeutic use, unspecified approach','Y','2025-10-23 00:00:00'),(84966,11,'PK80.3Y','Gastrointestinal, abdominal, or abdominal wall procedure associated with injury or harm in therapeutic use, other specified approach','Y','2025-10-23 00:00:00'),(84965,11,'PK80.3','Gastrointestinal, abdominal, or abdominal wall procedure associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(84964,11,'XA9607','Gastrointestinal tract','Y','2025-10-23 00:00:00'),(84963,11,'2B5B','Gastrointestinal stromal tumour, primary site','Y','2025-10-23 00:00:00'),(84962,11,'2B5B.Z','Gastrointestinal stromal tumour of unspecified gastrointestinal sites','Y','2025-10-23 00:00:00'),(84961,11,'2B5B.0','Gastrointestinal stromal tumour of stomach','Y','2025-10-23 00:00:00'),(84960,11,'2B5B.1','Gastrointestinal stromal tumour of small intestine','Y','2025-10-23 00:00:00'),(84959,11,'2B5B.Y','Gastrointestinal stromal tumour of other gastrointestinal sites','Y','2025-10-23 00:00:00'),(84958,11,'XH9HQ1','Gastrointestinal stromal tumour','Y','2025-10-23 00:00:00'),(84957,11,'XH0712','Gastrointestinal pacemaker cell tumour','Y','2025-10-23 00:00:00'),(84956,11,'1B21.4','Gastrointestinal non-tuberculous mycobacterial infection','Y','2025-10-23 00:00:00'),(84955,11,'XM0KJ8','Gastrointestinal drug specified','Y','2025-10-23 00:00:00'),(84954,11,'XM30A7','Gastrointestinal drug biological','Y','2025-10-23 00:00:00'),(84953,11,'ME24.9Z','Gastrointestinal bleeding, unspecified','Y','2025-10-23 00:00:00'),(84952,11,'ME24.9','Gastrointestinal bleeding','Y','2025-10-23 00:00:00'),(84951,11,'XH5CT2','Gastrointestinal autonomic nerve tumour','Y','2025-10-23 00:00:00'),(84950,11,'XA2R35','Gastroepiploic vein','Y','2025-10-23 00:00:00'),(84949,11,'PK93.Z','Gastroenterology or urology devices, implants or grafts associated with injury or harm, unspecified','Y','2025-10-23 00:00:00'),(84948,11,'PK93','Gastroenterology or urology devices, implants or grafts associated with injury or harm','Y','2025-10-23 00:00:00'),(84947,11,'PK93.10','Gastroenterology or urology devices associated with injury or harm, urinary catheter','Y','2025-10-23 00:00:00'),(84946,11,'PK93.1Z','Gastroenterology or urology devices associated with injury or harm, therapeutic, nonsurgical or rehabilitative devices, unspecified','Y','2025-10-23 00:00:00'),(84945,11,'PK93.1','Gastroenterology or urology devices associated with injury or harm, therapeutic, nonsurgical or rehabilitative devices','Y','2025-10-23 00:00:00'),(84944,11,'PK93.3','Gastroenterology or urology devices associated with injury or harm, surgical instruments, materials or devices','Y','2025-10-23 00:00:00'),(84943,11,'PK93.2','Gastroenterology or urology devices associated with injury or harm, prosthetic or other implants, materials or accessory devices','Y','2025-10-23 00:00:00'),(84942,11,'PK93.4','Gastroenterology or urology devices associated with injury or harm, miscellaneous devices, not elsewhere classified','Y','2025-10-23 00:00:00'),(84941,11,'PK93.0','Gastroenterology or urology devices associated with injury or harm, diagnostic or monitoring devices','Y','2025-10-23 00:00:00'),(84940,11,'1A40.0','Gastroenteritis or colitis without specification of origin','Y','2025-10-23 00:00:00'),(84939,11,'1A40','Gastroenteritis or colitis without specification of infectious agent','Y','2025-10-23 00:00:00'),(84938,11,'1A22','Gastroenteritis due to Rotavirus','Y','2025-10-23 00:00:00'),(84937,11,'1A06','Gastroenteritis due to Campylobacter','Y','2025-10-23 00:00:00'),(84936,11,'1A21','Gastroenteritis due to Astrovirus','Y','2025-10-23 00:00:00'),(84935,11,'DA41.Z','Gastroduodenal motor or secretory disorders, unspecified','Y','2025-10-23 00:00:00'),(84934,11,'DA41','Gastroduodenal motor or secretory disorders','Y','2025-10-23 00:00:00'),(84933,11,'XA0NN4','Gastroduodenal artery','Y','2025-10-23 00:00:00'),(84932,11,'XA5LZ0','Gastrocnemius tendon','Y','2025-10-23 00:00:00'),(84931,11,'XA1PK6','Gastrocnemius muscle','Y','2025-10-23 00:00:00'),(84930,11,'XH4VQ1','Gastroblastoma','Y','2025-10-23 00:00:00'),(84929,11,'DA42.Z','Gastritis, unspecified','Y','2025-10-23 00:00:00'),(84928,11,'DA42.7','Gastritis of unknown aetiology with specific endoscopic or pathological features','Y','2025-10-23 00:00:00'),(84927,11,'DA42.8Z','Gastritis due to external causes, unspecified','Y','2025-10-23 00:00:00'),(84926,11,'DA42.8','Gastritis due to external causes','Y','2025-10-23 00:00:00'),(84925,11,'DA42.5','Gastritis due to duodenogastric reflux','Y','2025-10-23 00:00:00'),(84923,11,'XH93H8','Gastrinoma','Y','2025-10-23 00:00:00'),(84924,11,'DA42','Gastritis','Y','2025-10-23 00:00:00'),(84922,11,'DA40.2','Gastric volvulus','Y','2025-10-23 00:00:00'),(84920,11,'DA43.0','Gastric varices','Y','2025-10-23 00:00:00'),(84921,11,'XA7CB3','Gastric vein','Y','2025-10-23 00:00:00'),(84919,11,'DA60.Z','Gastric ulcer, unspecified','Y','2025-10-23 00:00:00'),(84918,11,'DA60.6Z','Gastric ulcer due to external causes, unspecified','Y','2025-10-23 00:00:00'),(84917,11,'DA60.6','Gastric ulcer due to external causes','Y','2025-10-23 00:00:00'),(84915,11,'XA6P89','Gastric pylorus','Y','2025-10-23 00:00:00'),(84916,11,'DA60','Gastric ulcer','Y','2025-10-23 00:00:00'),(84914,11,'DA44.Z','Gastric polyp, unspecified','Y','2025-10-23 00:00:00'),(84913,11,'DA44','Gastric polyp','Y','2025-10-23 00:00:00'),(84912,11,'XA2Y82','Gastric plexus','Y','2025-10-23 00:00:00'),(84911,11,'DA42.9','Gastric phlegmon','Y','2025-10-23 00:00:00'),(84910,11,'DA40.0','Gastric outlet obstruction','Y','2025-10-23 00:00:00'),(84909,11,'XA1HL1','Gastric lymph node','Y','2025-10-23 00:00:00'),(84908,11,'XA56K7','Gastric fundus','Y','2025-10-23 00:00:00'),(84907,11,'DA40.1','Gastric fistula, acquired','Y','2025-10-23 00:00:00'),(84905,11,'XM5BH7','Gastric enzymes','Y','2025-10-23 00:00:00'),(84906,11,'DA60.0','Gastric erosion','Y','2025-10-23 00:00:00'),(84903,11,'XA7UE1','Gastric corpus','Y','2025-10-23 00:00:00'),(84904,11,'DA40.3','Gastric diverticulum','Y','2025-10-23 00:00:00'),(84901,11,'XA2828','Gastric cardia','Y','2025-10-23 00:00:00'),(84902,11,'XE12Z','Gastric content','Y','2025-10-23 00:00:00'),(84899,11,'XM8WE9','Gasoline','Y','2025-10-23 00:00:00'),(84900,11,'XM0FK9','Gasoline vapor','Y','2025-10-23 00:00:00'),(84898,11,'XM52C5','Gasohol','Y','2025-10-23 00:00:00'),(84897,11,'XE3QZ','Gasket component of medical device','Y','2025-10-23 00:00:00'),(84896,11,'XM1FR6','Gas-gangrene sera','Y','2025-10-23 00:00:00'),(84895,11,'XE8HT','Gas scavenging component of medical device','Y','2025-10-23 00:00:00'),(84894,11,'XE68Z','Gas output problem','Y','2025-10-23 00:00:00'),(84892,11,'XE0RV','Gas leak','Y','2025-10-23 00:00:00'),(84893,11,'XM4RN1','Gas oil','Y','2025-10-23 00:00:00'),(84891,11,'1C16','Gas gangrene','Y','2025-10-23 00:00:00'),(84890,11,'XE3HQ','Gas exchanger component of medical device','Y','2025-10-23 00:00:00'),(84889,11,'XE5VQ','Gas cylinder','Y','2025-10-23 00:00:00'),(84888,11,'XM83X7','Gas','Y','2025-10-23 00:00:00'),(84886,11,'XM1QZ5','Garenoxacin','Y','2025-10-23 00:00:00'),(84887,11,'XA9BM1','Gartner duct','Y','2025-10-23 00:00:00'),(84885,11,'LD2D.3','Gardner syndrome','Y','2025-10-23 00:00:00'),(84884,11,'XH7GT0','Gardner fibroma','Y','2025-10-23 00:00:00'),(84883,11,'XE2AU','Garbage, litter, trash','Y','2025-10-23 00:00:00'),(84882,11,'XE0JX','Garbage compactor','Y','2025-10-23 00:00:00'),(84881,11,'XM5JS1','Ganirelix','Y','2025-10-23 00:00:00'),(84880,11,'CA43.0','Gangrene or necrosis of lung','Y','2025-10-23 00:00:00'),(84879,11,'SB74','Gangrene disorder (TM1)','Y','2025-10-23 00:00:00'),(84878,11,'MC85','Gangrene','Y','2025-10-23 00:00:00'),(84877,11,'XE8DB','Gang-related incident','Y','2025-10-23 00:00:00'),(84876,11,'5C56.00','Gangliosidosis','Y','2025-10-23 00:00:00'),(84875,11,'XH6LR5','Ganglioneuromatosis','Y','2025-10-23 00:00:00'),(84874,11,'XH03L9','Ganglioneuroma','Y','2025-10-23 00:00:00'),(84873,11,'XH0RB7','Ganglioneuroblastoma, intermixed','Y','2025-10-23 00:00:00'),(84872,11,'XH77W7','Ganglioneuroblastoma','Y','2025-10-23 00:00:00'),(84871,11,'XM7NT3','Ganglion-blocking antiadrenergic agents','Y','2025-10-23 00:00:00'),(84870,11,'FB42.2','Ganglion','Y','2025-10-23 00:00:00'),(84869,11,'XH5FJ3','Ganglioglioma, NOS','Y','2025-10-23 00:00:00'),(84868,11,'XH2GG3','Ganglioglioma, anaplastic','Y','2025-10-23 00:00:00'),(84867,11,'XH6KA6','Gangliocytoma','Y','2025-10-23 00:00:00'),(84866,11,'XH2012','Gangliocytic paraganglioma','Y','2025-10-23 00:00:00'),(84865,11,'XM7A63','Ganciclovir topical','Y','2025-10-23 00:00:00'),(84864,11,'XM1M61','Ganciclovir','Y','2025-10-23 00:00:00'),(84862,11,'XM7MC6','Gamulin','Y','2025-10-23 00:00:00'),(84863,11,'XM7QW2','Ganaxolone','Y','2025-10-23 00:00:00'),(84861,11,'XM4QZ6','Gamolenic acid','Y','2025-10-23 00:00:00'),(84860,11,'XN4K8','Gammaretrovirus','Y','2025-10-23 00:00:00'),(84859,11,'XM9MS5','Gammahydroxybutyrate','Y','2025-10-23 00:00:00'),(84858,11,'XN2VN','Gammaherpesvirinae','Y','2025-10-23 00:00:00'),(84857,11,'XN2NS','Gamma-haemolytic Streptococcus','Y','2025-10-23 00:00:00'),(84856,11,'XM5JA4','Gamma-benzene hexachloride (medicinal)','Y','2025-10-23 00:00:00'),(84855,11,'XH1EA7','Gamma heavy chain disease','Y','2025-10-23 00:00:00'),(84854,11,'2A84.1','Gamma heavy chain disease','Y','2025-10-23 00:00:00'),(84852,11,'6C51.Z','Gaming disorder, unspecified','Y','2025-10-23 00:00:00'),(84853,11,'XM6Z81','Gamma globulin','Y','2025-10-23 00:00:00'),(84851,11,'6C51.0','Gaming disorder, predominantly online','Y','2025-10-23 00:00:00'),(84850,11,'6C51.1','Gaming disorder, predominantly offline','Y','2025-10-23 00:00:00'),(84849,11,'6C51','Gaming disorder','Y','2025-10-23 00:00:00'),(84848,11,'XM7VG2','Gamimune','Y','2025-10-23 00:00:00'),(84847,11,'XA1922','Gamete','Y','2025-10-23 00:00:00'),(84846,11,'XM5ZJ4','Gam-Covid-Vac','Y','2025-10-23 00:00:00'),(84845,11,'XM1L58','Gamboge','Y','2025-10-23 00:00:00'),(84844,11,'6C50.Z','Gambling disorder, unspecified','Y','2025-10-23 00:00:00'),(84843,11,'6C50.1','Gambling disorder, predominantly online','Y','2025-10-23 00:00:00'),(84842,11,'6C50.0','Gambling disorder, predominantly offline','Y','2025-10-23 00:00:00'),(84841,11,'6C50','Gambling disorder','Y','2025-10-23 00:00:00'),(84840,11,'1F51.0Z','Gambiense trypanosomiasis, unspecified','Y','2025-10-23 00:00:00'),(84839,11,'1F51.0','Gambiense trypanosomiasis','Y','2025-10-23 00:00:00'),(84838,11,'XM11U1','Galsulfase','Y','2025-10-23 00:00:00'),(84837,11,'DA91.30','Gallstone ileus of small intestine','Y','2025-10-23 00:00:00'),(84836,11,'XM2WH6','Gallopamil','Y','2025-10-23 00:00:00'),(84835,11,'XM3GL6','Gallium citrate','Y','2025-10-23 00:00:00'),(84834,11,'XM05N6','Gallium (68Ga) gozetotide','Y','2025-10-23 00:00:00'),(84833,11,'XM5EC5','Gallium (68Ga) edotreotide','Y','2025-10-23 00:00:00'),(84832,11,'XM8SB4','Gallium (67Ga) citrate','Y','2025-10-23 00:00:00'),(84831,11,'SF5D','Gallbladder qi deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(84830,11,'SG2A','Gallbladder meridian pattern (TM1)','Y','2025-10-23 00:00:00'),(84829,11,'SF5F','Gallbladder heat pattern (TM1)','Y','2025-10-23 00:00:00'),(84828,11,'SA05','Gallbladder distension disorder (TM1)','Y','2025-10-23 00:00:00'),(84827,11,'SF5E','Gallbladder depression with phlegm harassment pattern (TM1)','Y','2025-10-23 00:00:00'),(84826,11,'SF5G','Gallbladder cold pattern (TM1)','Y','2025-10-23 00:00:00'),(84825,11,'XA8KL9','Gallbladder','Y','2025-10-23 00:00:00'),(84824,11,'XM9416','Gallamine','Y','2025-10-23 00:00:00'),(84823,11,'XM78T5','Galerina venenata mushroom','Y','2025-10-23 00:00:00'),(84822,11,'XM24L3','Galerina sulcipes mushroom','Y','2025-10-23 00:00:00'),(84821,11,'XM1LD8','Galerina mushroom','Y','2025-10-23 00:00:00'),(84820,11,'XM7NR0','Galerina marginata mushroom','Y','2025-10-23 00:00:00'),(84819,11,'XM6W91','Galerina fasciculata mushroom','Y','2025-10-23 00:00:00'),(84817,11,'XM99M6','Galantamine','Y','2025-10-23 00:00:00'),(84818,11,'XM4XM4','Galcanezumab','Y','2025-10-23 00:00:00'),(84816,11,'5C51.40','Galactose-1-phosphate uridyltransferase deficiency','Y','2025-10-23 00:00:00'),(84815,11,'XM9ZW8','Galactose','Y','2025-10-23 00:00:00'),(84814,11,'GB23.4','Galactorrhoea not associated with childbirth','Y','2025-10-23 00:00:00'),(84813,11,'JB46.6','Galactorrhoea','Y','2025-10-23 00:00:00'),(84812,11,'5C51.41','Galactokinase deficiency','Y','2025-10-23 00:00:00'),(84810,11,'XM3BF7','Gadoversetamide','Y','2025-10-23 00:00:00'),(84811,11,'XM7W85','Gadoxetic acid','Y','2025-10-23 00:00:00'),(84809,11,'XM0FN2','Gadoteridol','Y','2025-10-23 00:00:00'),(84808,11,'XM4UX1','Gadoteric acid','Y','2025-10-23 00:00:00'),(84807,11,'XM7CY5','Gadopentetic acid','Y','2025-10-23 00:00:00'),(84806,11,'XM6GF6','Gadofosveset','Y','2025-10-23 00:00:00'),(84805,11,'XM1564','Gadodiamide','Y','2025-10-23 00:00:00'),(84804,11,'XM3VG2','Gadobutrol','Y','2025-10-23 00:00:00'),(84803,11,'XM0XE4','Gadobenic acid','Y','2025-10-23 00:00:00'),(84802,11,'XM2RJ2','Gaboon viper snake venom','Y','2025-10-23 00:00:00'),(84801,11,'XM0J96','Gabapentin','Y','2025-10-23 00:00:00'),(84800,11,'XM9XE8','Futibatinib','Y','2025-10-23 00:00:00'),(84799,11,'XN911','Fusobacterium polymorphum','Y','2025-10-23 00:00:00'),(84798,11,'XN4P8','Fusobacterium nucleatum','Y','2025-10-23 00:00:00'),(84797,11,'XN5MA','Fusobacterium novum','Y','2025-10-23 00:00:00'),(84796,11,'XN7B1','Fusobacterium necrophorum','Y','2025-10-23 00:00:00'),(84795,11,'XN4LF','Fusobacterium','Y','2025-10-23 00:00:00'),(84794,11,'LB40.2','Fusion of labia','Y','2025-10-23 00:00:00'),(84793,11,'LB30.6Z','Fusion anomaly of kidneys, unspecified','Y','2025-10-23 00:00:00'),(84792,11,'LB30.6','Fusion anomaly of kidneys','Y','2025-10-23 00:00:00'),(84791,11,'XM6AH3','Fusidic acid','Y','2025-10-23 00:00:00'),(84790,11,'XM48D0','Fusel alcohol','Y','2025-10-23 00:00:00'),(84789,11,'LB79.2','Fused toes','Y','2025-10-23 00:00:00'),(84788,11,'LB30.61','Fused pelvic kidney','Y','2025-10-23 00:00:00'),(84787,11,'LB79.0','Fused fingers','Y','2025-10-23 00:00:00'),(84785,11,'XN55Z','Fusarium sporotrichioides','Y','2025-10-23 00:00:00'),(84786,11,'XM3G74','Fusarium toxin','Y','2025-10-23 00:00:00'),(84784,11,'XN0E6','Fusarium solani','Y','2025-10-23 00:00:00'),(84783,11,'XN3HT','Fusarium oxysporum','Y','2025-10-23 00:00:00'),(84782,11,'XN7KH','Fusarium incaratum-equiseti','Y','2025-10-23 00:00:00'),(84781,11,'XN6XG','Fusarium fujikuroi','Y','2025-10-23 00:00:00'),(84780,11,'XN5KR','Fusarium dimerum','Y','2025-10-23 00:00:00'),(84778,11,'XN0X5','Fusarium','Y','2025-10-23 00:00:00'),(84779,11,'XN1FQ','Fusarium chlamydosporum','Y','2025-10-23 00:00:00'),(84777,11,'XM5UL0','Fusafungine','Y','2025-10-23 00:00:00'),(84776,11,'1B75.2','Furunculosis','Y','2025-10-23 00:00:00'),(84775,11,'SB4Z','Furuncle disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(84774,11,'1B75.0','Furuncle','Y','2025-10-23 00:00:00'),(84773,11,'2A85.Y','Further specified mature B-cell neoplasms or lymphoma','Y','2025-10-23 00:00:00'),(84772,11,'XM20C9','Fursultiamine','Y','2025-10-23 00:00:00'),(84771,11,'XM8UE3','Furosemide','Y','2025-10-23 00:00:00'),(84770,11,'XM2BC0','Furniture polish','Y','2025-10-23 00:00:00'),(84769,11,'XE5HA','Furniture or furnishing','Y','2025-10-23 00:00:00'),(84768,11,'XM7QX9','Furfural','Y','2025-10-23 00:00:00'),(84767,11,'XM6AZ9','Furazolium chloride','Y','2025-10-23 00:00:00'),(84766,11,'XM08Z2','Furazolidone','Y','2025-10-23 00:00:00'),(84765,11,'XM8FX2','Furazidin','Y','2025-10-23 00:00:00'),(84764,11,'XM9HR4','Furathiocarb','Y','2025-10-23 00:00:00'),(84763,11,'XM3KD6','Funnel web spider venom','Y','2025-10-23 00:00:00'),(84762,11,'XE3P6','Funicular, monorail, or other similar rail vehicle','Y','2025-10-23 00:00:00'),(84761,11,'XE3NY','Funicular or monorail as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(84759,11,'XE011','Fungus in device environment','Y','2025-10-23 00:00:00'),(84760,11,'XE1W8','Funicular or monorail as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(84758,11,'XM77G6','Fungus eaten in food, not elsewhere classified','Y','2025-10-23 00:00:00'),(84757,11,'XM83G4','Fungicide','Y','2025-10-23 00:00:00'),(84756,11,'FA12.2','Fungal postinfectious arthropathies','Y','2025-10-23 00:00:00'),(84754,11,'CA40.2','Fungal pneumonia','Y','2025-10-23 00:00:00'),(84755,11,'CA40.2Z','Fungal pneumonia, unspecified','Y','2025-10-23 00:00:00'),(84753,11,'DA25.11','Fungal oesophageal ulcer','Y','2025-10-23 00:00:00'),(84752,11,'1D02.2','Fungal myelitis','Y','2025-10-23 00:00:00'),(84751,11,'1D01.1Z','Fungal meningitis, unspecified','Y','2025-10-23 00:00:00'),(84750,11,'1D01.1','Fungal meningitis','Y','2025-10-23 00:00:00'),(84749,11,'1D04.10','Fungal intracranial granuloma','Y','2025-10-23 00:00:00'),(84748,11,'EA60.Z','Fungal infection of the skin, unspecified','Y','2025-10-23 00:00:00'),(84747,11,'FA10.2','Fungal infection of joint','Y','2025-10-23 00:00:00'),(84746,11,'KA63.Z','Fungal infection of fetus or newborn, unspecified','Y','2025-10-23 00:00:00'),(84745,11,'KA63','Fungal infection of fetus or newborn','Y','2025-10-23 00:00:00'),(84744,11,'1D00.1','Fungal encephalitis','Y','2025-10-23 00:00:00'),(84742,11,'MA15.1','Fungaemia','Y','2025-10-23 00:00:00'),(84743,11,'DA63.62','Fungal duodenal ulcer','Y','2025-10-23 00:00:00'),(84741,11,'XA3V49','Fundus of uterus','Y','2025-10-23 00:00:00'),(84740,11,'DA44.1','Fundic gland polyp of stomach','Y','2025-10-23 00:00:00'),(84739,11,'VV40','Functions related to the digestive system','Y','2025-10-23 00:00:00'),(84737,11,'VV70','Functions of the skin','Y','2025-10-23 00:00:00'),(84738,11,'VV7Z','Functions of the skin and related structures, unspecified','Y','2025-10-23 00:00:00'),(84736,11,'VV4Z','Functions of the digestive, metabolic and endocrine systems, unspecified','Y','2025-10-23 00:00:00'),(84735,11,'VV3Z','Functions of the cardiovascular, haematological, immunological and respiratory systems, unspecified','Y','2025-10-23 00:00:00'),(84734,11,'LA89.Z','Functionally univentricular heart, unspecified','Y','2025-10-23 00:00:00'),(84733,11,'LA89','Functionally univentricular heart','Y','2025-10-23 00:00:00'),(84731,11,'8A04.4','Functional tremor','Y','2025-10-23 00:00:00'),(84732,11,'MF50.23','Functional urinary incontinence','Y','2025-10-23 00:00:00'),(84730,11,'DD90.1','Functional swallowing disorder','Y','2025-10-23 00:00:00'),(84729,11,'DD95','Functional sphincter of Oddi disorder','Y','2025-10-23 00:00:00'),(84728,11,'8A00.3','Functional parkinsonism','Y','2025-10-23 00:00:00'),(84727,11,'DD90.Z','Functional oesophageal or gastroduodenal disorders, unspecified','Y','2025-10-23 00:00:00'),(84726,11,'DD90','Functional oesophageal or gastroduodenal disorders','Y','2025-10-23 00:00:00'),(84725,11,'4A00.0Z','Functional neutrophil defects, unspecified','Y','2025-10-23 00:00:00'),(84724,11,'4A00.0','Functional neutrophil defects','Y','2025-10-23 00:00:00'),(84723,11,'DD90.4','Functional nausea or vomiting','Y','2025-10-23 00:00:00'),(84722,11,'MB57.1','Functional level of injury of thoracic spinal cord','Y','2025-10-23 00:00:00'),(84721,11,'MB57.Z','Functional level of injury of spinal cord, unspecified','Y','2025-10-23 00:00:00'),(84720,11,'MB57.3','Functional level of injury of spinal cord, sacrum','Y','2025-10-23 00:00:00'),(84719,11,'MB57','Functional level of injury of spinal cord','Y','2025-10-23 00:00:00'),(84718,11,'MB57.2','Functional level of injury of lumbar spinal cord','Y','2025-10-23 00:00:00'),(84717,11,'MB57.0','Functional level of injury of cervical spinal cord','Y','2025-10-23 00:00:00'),(84716,11,'DD90.2','Functional heartburn','Y','2025-10-23 00:00:00'),(84715,11,'DD9Z','Functional gastrointestinal disorders, unspecified','Y','2025-10-23 00:00:00'),(84714,11,'DD94','Functional gallbladder disorder','Y','2025-10-23 00:00:00'),(84713,11,'DD92.0','Functional faecal incontinence','Y','2025-10-23 00:00:00'),(84712,11,'8A02.3','Functional dystonia or spasms','Y','2025-10-23 00:00:00'),(84711,11,'DD90.3','Functional dyspepsia','Y','2025-10-23 00:00:00'),(84710,11,'9B0Z','Functional disorders of the pupil, unspecified','Y','2025-10-23 00:00:00'),(84709,11,'DD93.Z','Functional digestive disorders of infants, toddlers or children, unspecified','Y','2025-10-23 00:00:00'),(84708,11,'DD93','Functional digestive disorders of infants, toddlers or children','Y','2025-10-23 00:00:00'),(84707,11,'DD91.2','Functional diarrhoea','Y','2025-10-23 00:00:00'),(84706,11,'PL12.1','Functional device failure, as mode of injury or harm','Y','2025-10-23 00:00:00'),(84705,11,'QA61','Functional device failure without injury or harm','Y','2025-10-23 00:00:00'),(84704,11,'DD92.2','Functional defaecation disorders','Y','2025-10-23 00:00:00'),(84703,11,'DD91.1','Functional constipation','Y','2025-10-23 00:00:00'),(84702,11,'DD91.3','Functional bloating','Y','2025-10-23 00:00:00'),(84701,11,'GC50.Z','Functional bladder disorders, not otherwise specified, unspecified','Y','2025-10-23 00:00:00'),(84700,11,'GC50','Functional bladder disorders, not otherwise specified','Y','2025-10-23 00:00:00'),(84699,11,'GC40.6Z','Functional bladder disorders associated with pelvic organ prolapse, unspecified','Y','2025-10-23 00:00:00'),(84698,11,'GC40.6','Functional bladder disorders associated with pelvic organ prolapse','Y','2025-10-23 00:00:00'),(84697,11,'DD90.5','Functional belching disorders','Y','2025-10-23 00:00:00'),(84696,11,'DD92.1','Functional anorectal pain','Y','2025-10-23 00:00:00'),(84695,11,'DD92.Z','Functional anorectal disorders, unspecified','Y','2025-10-23 00:00:00'),(84694,11,'DD92','Functional anorectal disorders','Y','2025-10-23 00:00:00'),(84693,11,'DD91.4','Functional abdominal pain syndrome','Y','2025-10-23 00:00:00'),(84692,11,'XM9C09','Fumonisin','Y','2025-10-23 00:00:00'),(84691,11,'XM8V89','Fumigant, not elsewhere classified','Y','2025-10-23 00:00:00'),(84690,11,'XE50X','Fumes or vapours as environmental compatibility problem','Y','2025-10-23 00:00:00'),(84689,11,'XM7WA3','Fumaric acid','Y','2025-10-23 00:00:00'),(84688,11,'XM5WJ8','Fumagillin','Y','2025-10-23 00:00:00'),(84687,11,'XM2ZV3','Fulvestrant','Y','2025-10-23 00:00:00'),(84686,11,'XJ243','Full thickness or deep full thickness burn involving less than 5% of body surface','Y','2025-10-23 00:00:00'),(84685,11,'XJ31W','Full thickness or deep full thickness burn involving less than 10% of body surface','Y','2025-10-23 00:00:00'),(84684,11,'XJ3MB','Full thickness or deep full thickness burn involving 90% or more of body surface','Y','2025-10-23 00:00:00'),(84683,11,'XJ9UE','Full thickness or deep full thickness burn involving 80-89% of body surface','Y','2025-10-23 00:00:00'),(84682,11,'XJ68M','Full thickness or deep full thickness burn involving 70-79% of body surface','Y','2025-10-23 00:00:00'),(84681,11,'XJ8E0','Full thickness or deep full thickness burn involving 60-69% of body surface','Y','2025-10-23 00:00:00'),(84680,11,'XJ4FJ','Full thickness or deep full thickness burn involving 5-9% of body surface','Y','2025-10-23 00:00:00'),(84679,11,'XJ9MY','Full thickness or deep full thickness burn involving 50-59% of body surface','Y','2025-10-23 00:00:00'),(84678,11,'XJ4CR','Full thickness or deep full thickness burn involving 40-49% of body surface','Y','2025-10-23 00:00:00'),(84677,11,'XJ1NG','Full thickness or deep full thickness burn involving 30-39% of body surface','Y','2025-10-23 00:00:00'),(84676,11,'XJ3XZ','Full thickness or deep full thickness burn involving 20-29% of body surface','Y','2025-10-23 00:00:00'),(84675,11,'XJ82Z','Full thickness or deep full thickness burn involving 10-19% of body surface','Y','2025-10-23 00:00:00'),(84673,11,'XM1027','FSH','Y','2025-10-23 00:00:00'),(84674,11,'XM0ZM1','Fuberidazole','Y','2025-10-23 00:00:00'),(84671,11,'5C61.40','Fructose malabsorption','Y','2025-10-23 00:00:00'),(84672,11,'XE4KB','Fruit from plant','Y','2025-10-23 00:00:00'),(84670,11,'XM2PV3','Fructose 1,6-diphosphate','Y','2025-10-23 00:00:00'),(84668,11,'XM4WN0','Frovatriptan','Y','2025-10-23 00:00:00'),(84669,11,'XM5K20','Fructose','Y','2025-10-23 00:00:00'),(84667,11,'6D34','Frotteuristic disorder','Y','2025-10-23 00:00:00'),(84665,11,'NE41','Frostbite with tissue necrosis','Y','2025-10-23 00:00:00'),(84666,11,'NE4Z','Frostbite, unspecified','Y','2025-10-23 00:00:00'),(84664,11,'NE42','Frostbite involving multiple body regions','Y','2025-10-23 00:00:00'),(84662,11,'6D83','Frontotemporal dementia','Y','2025-10-23 00:00:00'),(84663,11,'8A23','Frontotemporal lobar degeneration','Y','2025-10-23 00:00:00'),(84661,11,'LD25.1','Fronto-otopalatodigital syndromes','Y','2025-10-23 00:00:00'),(84660,11,'XE69J','Front-end loader, bulldozer','Y','2025-10-23 00:00:00'),(84659,11,'XA5CP4','Frontalis tendon','Y','2025-10-23 00:00:00'),(84658,11,'XA09D1','Frontalis muscle','Y','2025-10-23 00:00:00'),(84657,11,'XA0CA3','Frontal venous lacunae','Y','2025-10-23 00:00:00'),(84656,11,'XA74U9','Frontal vein','Y','2025-10-23 00:00:00'),(84655,11,'XA91G8','Frontal sinus','Y','2025-10-23 00:00:00'),(84654,11,'XA0WG9','Frontal scalp margin','Y','2025-10-23 00:00:00'),(84653,11,'XA0WK0','Frontal scalp','Y','2025-10-23 00:00:00'),(84651,11,'XA7F46','Frontal nerve','Y','2025-10-23 00:00:00'),(84652,11,'XA3RD9','Frontal pole','Y','2025-10-23 00:00:00'),(84650,11,'XA2NT0','Frontal Lobe','Y','2025-10-23 00:00:00'),(84649,11,'XA6VQ5','Frontal diploic vein','Y','2025-10-23 00:00:00'),(84648,11,'XA7WG0','Frontal branch of the superficial temporal artery','Y','2025-10-23 00:00:00'),(84647,11,'XA6ZM9','Frontal bone','Y','2025-10-23 00:00:00'),(84646,11,'XA4QS6','Front of neck','Y','2025-10-23 00:00:00'),(84645,11,'XE4YK','Frog, toad','Y','2025-10-23 00:00:00'),(84644,11,'XM0KH6','Frog toxin','Y','2025-10-23 00:00:00'),(84643,11,'SE35','Fright seizure disorder (TM1)','Y','2025-10-23 00:00:00'),(84642,11,'8A03.10','Friedreich ataxia','Y','2025-10-23 00:00:00'),(84641,11,'XE3HZ','Friction problem identified with device','Y','2025-10-23 00:00:00'),(84640,11,'EH92.1','Friction blister','Y','2025-10-23 00:00:00'),(84639,11,'SD24','Frequent protrusion of tongue disorder (TM1)','Y','2025-10-23 00:00:00'),(84638,11,'MF50.0','Frequent micturition','Y','2025-10-23 00:00:00'),(84636,11,'8A81.1','Frequent episodic tension-type headache','Y','2025-10-23 00:00:00'),(84637,11,'GA20.10','Frequent menstrual bleeding','Y','2025-10-23 00:00:00'),(84635,11,'XM9813','Freon','Y','2025-10-23 00:00:00'),(84633,11,'XA3141','Frenulum of lip','Y','2025-10-23 00:00:00'),(84634,11,'XA7V24','Frenulum of penis','Y','2025-10-23 00:00:00'),(84632,11,'GB05.1','Frenulum breve','Y','2025-10-23 00:00:00'),(84631,11,'XM47L7','Fremanezumab','Y','2025-10-23 00:00:00'),(84630,11,'XE3QJ','Free-standing gas, oil, or kerosene lamp','Y','2025-10-23 00:00:00'),(84629,11,'XE447','Free or unrestricted flow','Y','2025-10-23 00:00:00'),(84628,11,'ED61.0','Freckles','Y','2025-10-23 00:00:00'),(84627,11,'LD2H.0','Fraser syndrome','Y','2025-10-23 00:00:00'),(84626,11,'XM6L10','Frangula extract','Y','2025-10-23 00:00:00'),(84624,11,'XN0BX','Francisella tularensis','Y','2025-10-23 00:00:00'),(84625,11,'XM7XD6','Frangula','Y','2025-10-23 00:00:00'),(84623,11,'XN6HJ','Francisella philomiragia','Y','2025-10-23 00:00:00'),(84622,11,'XN4ZY','Francisella novicida','Y','2025-10-23 00:00:00'),(84621,11,'XN94G','Francisella','Y','2025-10-23 00:00:00'),(84620,11,'XM0PH0','Framycetin','Y','2025-10-23 00:00:00'),(84619,11,'LD55','Fragile X chromosome','Y','2025-10-23 00:00:00'),(84618,11,'NC72.8','Fractures of other parts of femur','Y','2025-10-23 00:00:00'),(84617,11,'ND32','Fractures involving multiple body regions','Y','2025-10-23 00:00:00'),(84616,11,'NB97.1','Fractured penis','Y','2025-10-23 00:00:00'),(84615,11,'KA45.4','Fracture, dislocation or subluxation of spine due to birth injury','Y','2025-10-23 00:00:00'),(84614,11,'NC92.75','Fracture, avulsion or collateral ligament rupture of medial malleolus with fracture of fibula above syndesmosis and fracture of posterior margin of distal tibia','Y','2025-10-23 00:00:00'),(84613,11,'NC92.74','Fracture, avulsion or collateral ligament rupture of medial malleolus with fracture of fibula above syndesmosis','Y','2025-10-23 00:00:00'),(84612,11,'NC92.71','Fracture, avulsion or collateral ligament rupture of lateral malleolus below syndesmosis with fracture, avulsion or collateral ligament rupture of medial malleolus and fracture of posterior margin of distal tibia','Y','2025-10-23 00:00:00'),(84611,11,'NC92.70','Fracture, avulsion or collateral ligament rupture of lateral malleolus below syndesmosis with fracture, avulsion or collateral ligament rupture of medial malleolus','Y','2025-10-23 00:00:00'),(84610,11,'XJ8QL','Fracture with foreign body','Y','2025-10-23 00:00:00'),(84609,11,'XE1ZP','Fracture problem with device identified','Y','2025-10-23 00:00:00'),(84608,11,'NA02.5','Fracture of zygoma','Y','2025-10-23 00:00:00'),(84607,11,'NA02.0','Fracture of vault of skull','Y','2025-10-23 00:00:00'),(84606,11,'NC72.1','Fracture of upper epiphysis of femur','Y','2025-10-23 00:00:00'),(84605,11,'NC32.0','Fracture of upper end of ulna','Y','2025-10-23 00:00:00'),(84604,11,'NC92.1Z','Fracture of upper end of tibia, unspecified','Y','2025-10-23 00:00:00'),(84603,11,'NC92.14','Fracture of upper end of tibia, medial condyle','Y','2025-10-23 00:00:00'),(84602,11,'NC92.13','Fracture of upper end of tibia, lateral condyle','Y','2025-10-23 00:00:00'),(84601,11,'NC92.1','Fracture of upper end of tibia','Y','2025-10-23 00:00:00'),(84600,11,'NC32.1','Fracture of upper end of radius','Y','2025-10-23 00:00:00'),(84599,11,'NC12.2Z','Fracture of upper end of humerus, unspecified site','Y','2025-10-23 00:00:00'),(84598,11,'NC12.20','Fracture of upper end of humerus, head','Y','2025-10-23 00:00:00'),(84597,11,'NC12.2','Fracture of upper end of humerus','Y','2025-10-23 00:00:00'),(84596,11,'NC72.3Z','Fracture of unspecified trochanteric section of femur','Y','2025-10-23 00:00:00'),(84595,11,'ND13.2','Fracture of unspecified tarsal bone','Y','2025-10-23 00:00:00'),(84594,11,'NB52.1Z','Fracture of unspecified pelvic bone without disruption of posterior arch of pelvic ring','Y','2025-10-23 00:00:00'),(84593,11,'ND56.2','Fracture of unspecified body region','Y','2025-10-23 00:00:00'),(84592,11,'NC72.3','Fracture of trochanteric section of femur','Y','2025-10-23 00:00:00'),(84591,11,'NC53.5','Fracture of thumb bone','Y','2025-10-23 00:00:00'),(84590,11,'NA82.0','Fracture of thoracic vertebra','Y','2025-10-23 00:00:00'),(84589,11,'NB52.2','Fracture of the pelvic ring with incomplete disruption of posterior arch','Y','2025-10-23 00:00:00'),(84588,11,'ND13.1','Fracture of talus','Y','2025-10-23 00:00:00'),(84587,11,'NA02.76','Fracture of symphysis of mandible','Y','2025-10-23 00:00:00'),(84586,11,'NC12.21','Fracture of surgical neck of humerus','Y','2025-10-23 00:00:00'),(84585,11,'NA02.71','Fracture of subcondylar process of mandible','Y','2025-10-23 00:00:00'),(84584,11,'NA82.2','Fracture of sternum','Y','2025-10-23 00:00:00'),(84583,11,'NC12.00','Fracture of sternal end of clavicle','Y','2025-10-23 00:00:00'),(84582,11,'NA02.02','Fracture of squama of temporal bone of skull','Y','2025-10-23 00:00:00'),(84581,11,'NA02.03','Fracture of squama of occipital bone of skull','Y','2025-10-23 00:00:00'),(84580,11,'NA02.00','Fracture of squama of frontal bone of skull','Y','2025-10-23 00:00:00'),(84579,11,'ND50','Fracture of spine, level unspecified','Y','2025-10-23 00:00:00'),(84578,11,'NA02.15','Fracture of sphenoid bone of skull','Y','2025-10-23 00:00:00'),(84577,11,'NA02','Fracture of skull or facial bones','Y','2025-10-23 00:00:00'),(84575,11,'KA45.0','Fracture of skull due to birth injury','Y','2025-10-23 00:00:00'),(84576,11,'KA45.0Z','Fracture of skull due to birth injury, unspecified','Y','2025-10-23 00:00:00'),(84574,11,'NA02.Z','Fracture of skull and facial bones, part unspecified','Y','2025-10-23 00:00:00'),(84572,11,'NC12.Z','Fracture of shoulder or upper arm, unspecified','Y','2025-10-23 00:00:00'),(84573,11,'NA02.13','Fracture of sinus of ethmoid bone of skull','Y','2025-10-23 00:00:00'),(84571,11,'NC12','Fracture of shoulder or upper arm','Y','2025-10-23 00:00:00'),(84570,11,'NC12.7','Fracture of shoulder girdle, part unspecified','Y','2025-10-23 00:00:00'),(84569,11,'NC32.4','Fracture of shafts of both ulna and radius','Y','2025-10-23 00:00:00'),(84568,11,'NC32.2','Fracture of shaft of ulna','Y','2025-10-23 00:00:00'),(84567,11,'NC92.2','Fracture of shaft of tibia','Y','2025-10-23 00:00:00'),(84566,11,'NC32.3','Fracture of shaft of radius','Y','2025-10-23 00:00:00'),(84565,11,'NC53.30','Fracture of shaft of other metacarpal bone','Y','2025-10-23 00:00:00'),(84564,11,'NC12.3','Fracture of shaft of humerus','Y','2025-10-23 00:00:00'),(84563,11,'NC72.5','Fracture of shaft of femur','Y','2025-10-23 00:00:00'),(84562,11,'NC12.01','Fracture of shaft of clavicle','Y','2025-10-23 00:00:00'),(84561,11,'NA22.1Z','Fracture of second cervical vertebra, unspecified','Y','2025-10-23 00:00:00'),(84560,11,'NA22.1','Fracture of second cervical vertebra','Y','2025-10-23 00:00:00'),(84559,11,'NC12.1Z','Fracture of scapula, unspecified','Y','2025-10-23 00:00:00'),(84558,11,'NC12.1','Fracture of scapula','Y','2025-10-23 00:00:00'),(84557,11,'NC53.0','Fracture of scaphoid bone of hand','Y','2025-10-23 00:00:00'),(84556,11,'NB52.10','Fracture of sacrum without disruption of pelvic ring','Y','2025-10-23 00:00:00'),(84555,11,'NC53.62','Fracture of ring finger','Y','2025-10-23 00:00:00'),(84554,11,'NA82.3Z','Fracture of rib, unspecified','Y','2025-10-23 00:00:00'),(84553,11,'NA82.Z','Fracture of rib, sternum or thoracic spine, unspecified','Y','2025-10-23 00:00:00'),(84552,11,'NA82','Fracture of rib, sternum or thoracic spine','Y','2025-10-23 00:00:00'),(84551,11,'NA82.30','Fracture of rib, posterior or posterior and lateral','Y','2025-10-23 00:00:00'),(84550,11,'NA82.3','Fracture of rib','Y','2025-10-23 00:00:00'),(84549,11,'NA02.73','Fracture of ramus of mandible','Y','2025-10-23 00:00:00'),(84548,11,'NB52.14','Fracture of pubis without disruption of pelvic ring','Y','2025-10-23 00:00:00'),(84547,11,'NA02.12','Fracture of posterior fossa of base of skull','Y','2025-10-23 00:00:00'),(84546,11,'NA22.01','Fracture of posterior arch of first cervical vertebra','Y','2025-10-23 00:00:00'),(84545,11,'NB52.3','Fracture of pelvic ring with complete disruption of posterior arch','Y','2025-10-23 00:00:00'),(84544,11,'NB52.1','Fracture of pelvic bone without disruption of posterior arch of pelvic ring','Y','2025-10-23 00:00:00'),(84543,11,'NC92.0','Fracture of patella','Y','2025-10-23 00:00:00'),(84542,11,'NA02.01','Fracture of parietal bone of skull','Y','2025-10-23 00:00:00'),(84541,11,'ND13.5','Fracture of other toe','Y','2025-10-23 00:00:00'),(84540,11,'NC72.3Y','Fracture of other specified trochanteric section of femur','Y','2025-10-23 00:00:00'),(84539,11,'NA02.Y','Fracture of other specified skull or facial bones','Y','2025-10-23 00:00:00'),(84538,11,'NB52.1Y','Fracture of other specified pelvic bone without disruption of posterior arch of pelvic ring','Y','2025-10-23 00:00:00'),(84537,11,'NC32.Y','Fracture of other specified parts of forearm','Y','2025-10-23 00:00:00'),(84536,11,'NC53.3Y','Fracture of other specified part of other metacarpal bone','Y','2025-10-23 00:00:00'),(84535,11,'NC92.Y','Fracture of other specified part of lower leg, including ankle','Y','2025-10-23 00:00:00'),(84534,11,'ND13.Y','Fracture of other specified part of foot, except ankle','Y','2025-10-23 00:00:00'),(84533,11,'NA22.2','Fracture of other specified cervical vertebra','Y','2025-10-23 00:00:00'),(84532,11,'NC12.6','Fracture of other parts of shoulder or upper arm','Y','2025-10-23 00:00:00'),(84531,11,'NA02.19','Fracture of other part of occipital bone of skull','Y','2025-10-23 00:00:00'),(84530,11,'NC53.3Z','Fracture of other metacarpal bone, unspecified','Y','2025-10-23 00:00:00'),(84529,11,'NC53.3','Fracture of other metacarpal bone','Y','2025-10-23 00:00:00'),(84528,11,'NC53.6Z','Fracture of other finger bone, unspecified','Y','2025-10-23 00:00:00'),(84527,11,'NC53.6','Fracture of other finger bone','Y','2025-10-23 00:00:00'),(84526,11,'NC53.1','Fracture of other carpal bone','Y','2025-10-23 00:00:00'),(84525,11,'NA02.20','Fracture of orbital roof','Y','2025-10-23 00:00:00'),(84524,11,'NA02.21','Fracture of orbital floor','Y','2025-10-23 00:00:00'),(84523,11,'NA22.12','Fracture of odontoid process','Y','2025-10-23 00:00:00'),(84522,11,'NA02.18','Fracture of occipital condyle of skull, type III','Y','2025-10-23 00:00:00'),(84521,11,'NA02.17','Fracture of occipital condyle of skull, type II','Y','2025-10-23 00:00:00'),(84520,11,'NA02.16','Fracture of occipital condyle of skull, type I','Y','2025-10-23 00:00:00'),(84519,11,'NA22.Z','Fracture of neck, unspecified','Y','2025-10-23 00:00:00'),(84518,11,'NC53.31','Fracture of neck of other metacarpal bone','Y','2025-10-23 00:00:00'),(84517,11,'NC72.2Z','Fracture of neck of femur, unspecified','Y','2025-10-23 00:00:00'),(84516,11,'NC72.20','Fracture of neck of femur, subcapital','Y','2025-10-23 00:00:00'),(84514,11,'NC72.2','Fracture of neck of femur','Y','2025-10-23 00:00:00'),(84515,11,'NC72.21','Fracture of neck of femur, mid-cervical','Y','2025-10-23 00:00:00'),(84513,11,'NA22','Fracture of neck','Y','2025-10-23 00:00:00'),(84512,11,'ND13.B','Fracture of navicular of foot','Y','2025-10-23 00:00:00'),(84511,11,'NA02.3','Fracture of nasal bones','Y','2025-10-23 00:00:00'),(84510,11,'NA02.11','Fracture of middle fossa of base of skull','Y','2025-10-23 00:00:00'),(84509,11,'NC53.61','Fracture of middle finger','Y','2025-10-23 00:00:00'),(84507,11,'NC92.5','Fracture of medial malleolus','Y','2025-10-23 00:00:00'),(84508,11,'ND13.3','Fracture of metatarsal bone','Y','2025-10-23 00:00:00'),(84506,11,'NC12.42','Fracture of medial epicondyle of humerus','Y','2025-10-23 00:00:00'),(84505,11,'ND13.A','Fracture of medial cuneiform','Y','2025-10-23 00:00:00'),(84504,11,'NC12.44','Fracture of medial condyle of humerus','Y','2025-10-23 00:00:00'),(84503,11,'NA02.4Z','Fracture of maxilla, unspecified','Y','2025-10-23 00:00:00'),(84502,11,'NA02.4','Fracture of maxilla','Y','2025-10-23 00:00:00'),(84500,11,'NA02.7','Fracture of mandible','Y','2025-10-23 00:00:00'),(84501,11,'NA02.7Z','Fracture of mandible, unspecified','Y','2025-10-23 00:00:00'),(84499,11,'NB52.0','Fracture of lumbar vertebra','Y','2025-10-23 00:00:00'),(84498,11,'NB52.Z','Fracture of lumbar spine or pelvis, unspecified','Y','2025-10-23 00:00:00'),(84497,11,'NB52','Fracture of lumbar spine or pelvis','Y','2025-10-23 00:00:00'),(84496,11,'NC92.Z','Fracture of lower leg, including ankle, unspecified','Y','2025-10-23 00:00:00'),(84495,11,'NC92','Fracture of lower leg, including ankle','Y','2025-10-23 00:00:00'),(84493,11,'NC32.51','Fracture of lower end of radius, volar tilt','Y','2025-10-23 00:00:00'),(84494,11,'NC92.3','Fracture of lower end of tibia','Y','2025-10-23 00:00:00'),(84492,11,'NC32.5Z','Fracture of lower end of radius, unspecified','Y','2025-10-23 00:00:00'),(84491,11,'NC32.50','Fracture of lower end of radius, dorsal tilt','Y','2025-10-23 00:00:00'),(84490,11,'NC32.5','Fracture of lower end of radius','Y','2025-10-23 00:00:00'),(84489,11,'NC12.4Z','Fracture of lower end of humerus, unspecified','Y','2025-10-23 00:00:00'),(84488,11,'NC12.4','Fracture of lower end of humerus','Y','2025-10-23 00:00:00'),(84487,11,'NC72.6Z','Fracture of lower end of femur, unspecified','Y','2025-10-23 00:00:00'),(84486,11,'NC72.61','Fracture of lower end of femur not extending into joint, wedge','Y','2025-10-23 00:00:00'),(84485,11,'NC72.60','Fracture of lower end of femur not extending into joint, simple','Y','2025-10-23 00:00:00'),(84484,11,'NC72.62','Fracture of lower end of femur not extending into joint, complex','Y','2025-10-23 00:00:00'),(84483,11,'NC72.64','Fracture of lower end of femur extending into joint, medial condyle','Y','2025-10-23 00:00:00'),(84482,11,'NC72.63','Fracture of lower end of femur extending into joint, lateral condyle','Y','2025-10-23 00:00:00'),(84481,11,'NC72.65','Fracture of lower end of femur extending into joint, frontal','Y','2025-10-23 00:00:00'),(84480,11,'NC72.66','Fracture of lower end of femur extending into joint, complete articular','Y','2025-10-23 00:00:00'),(84479,11,'NC72.6','Fracture of lower end of femur','Y','2025-10-23 00:00:00'),(84478,11,'NC32.6','Fracture of lower end of both ulna and radius','Y','2025-10-23 00:00:00'),(84477,11,'NC53.63','Fracture of little finger','Y','2025-10-23 00:00:00'),(84476,11,'NC12.24','Fracture of lesser tuberosity of humerus','Y','2025-10-23 00:00:00'),(84475,11,'ND54','Fracture of leg, level unspecified','Y','2025-10-23 00:00:00'),(84474,11,'NA22.02','Fracture of lateral mass of first cervical vertebra','Y','2025-10-23 00:00:00'),(84473,11,'NC92.73','Fracture of lateral malleolus at syndesmosis with fracture, avulsion or collateral ligament rupture of medial malleolus and fracture of posterior margin of distal tibia','Y','2025-10-23 00:00:00'),(84472,11,'NC92.72','Fracture of lateral malleolus at syndesmosis with fracture, avulsion or collateral ligament rupture of medial malleolus','Y','2025-10-23 00:00:00'),(84471,11,'NC92.6','Fracture of lateral malleolus','Y','2025-10-23 00:00:00'),(84470,11,'NC12.41','Fracture of lateral epicondyle of humerus','Y','2025-10-23 00:00:00'),(84469,11,'ND13.8','Fracture of lateral cuneiform','Y','2025-10-23 00:00:00'),(84468,11,'NC12.43','Fracture of lateral condyle of humerus','Y','2025-10-23 00:00:00'),(84467,11,'NB52.15','Fracture of ischium without disruption of pelvic ring','Y','2025-10-23 00:00:00'),(84466,11,'ND13.9','Fracture of intermediate cuneiform','Y','2025-10-23 00:00:00'),(84465,11,'NC53.60','Fracture of index finger','Y','2025-10-23 00:00:00'),(84464,11,'NB52.12','Fracture of ilium without disruption of pelvic ring','Y','2025-10-23 00:00:00'),(84463,11,'NC72.0','Fracture of head of femur','Y','2025-10-23 00:00:00'),(84462,11,'NC12.23','Fracture of greater tuberosity of humerus','Y','2025-10-23 00:00:00'),(84461,11,'ND13.4','Fracture of great toe','Y','2025-10-23 00:00:00'),(84460,11,'NA02.14','Fracture of frontal sinus of skull','Y','2025-10-23 00:00:00'),(84459,11,'NC32.Z','Fracture of forearm, unspecified','Y','2025-10-23 00:00:00'),(84458,11,'NC32','Fracture of forearm','Y','2025-10-23 00:00:00'),(84457,11,'ND13.Z','Fracture of foot, except ankle, unspecified','Y','2025-10-23 00:00:00'),(84456,11,'ND13','Fracture of foot, except ankle','Y','2025-10-23 00:00:00'),(84455,11,'NC53.2','Fracture of first metacarpal bone','Y','2025-10-23 00:00:00'),(84454,11,'NA22.0Z','Fracture of first cervical vertebra, unspecified','Y','2025-10-23 00:00:00'),(84453,11,'NA22.00','Fracture of first cervical vertebra, burst fracture','Y','2025-10-23 00:00:00'),(84452,11,'NA22.0','Fracture of first cervical vertebra','Y','2025-10-23 00:00:00'),(84451,11,'NC92.4Z','Fracture of fibula alone, unspecified','Y','2025-10-23 00:00:00'),(84450,11,'NC92.4','Fracture of fibula alone','Y','2025-10-23 00:00:00'),(84449,11,'NC72.Z','Fracture of femur, unspecified','Y','2025-10-23 00:00:00'),(84448,11,'NC72','Fracture of femur','Y','2025-10-23 00:00:00'),(84447,11,'XE1M6','Fracture of device','Y','2025-10-23 00:00:00'),(84446,11,'ND13.7','Fracture of cuboid bone','Y','2025-10-23 00:00:00'),(84445,11,'NA02.72','Fracture of coronoid process of mandible','Y','2025-10-23 00:00:00'),(84444,11,'NA02.70','Fracture of condylar process of mandible','Y','2025-10-23 00:00:00'),(84443,11,'NB52.11','Fracture of coccyx','Y','2025-10-23 00:00:00'),(84442,11,'NC12.0Z','Fracture of clavicle, unspecified','Y','2025-10-23 00:00:00'),(84441,11,'KA45.5','Fracture of clavicle due to birth injury','Y','2025-10-23 00:00:00'),(84440,11,'NC12.0','Fracture of clavicle','Y','2025-10-23 00:00:00'),(84439,11,'ND13.0','Fracture of calcaneus','Y','2025-10-23 00:00:00'),(84438,11,'FC01.6','Fracture of bone following insertion of orthopaedic implant, joint prosthesis, or bone plate','Y','2025-10-23 00:00:00'),(84437,11,'NA02.1Z','Fracture of base of skull, unspecified','Y','2025-10-23 00:00:00'),(84436,11,'NA02.1','Fracture of base of skull','Y','2025-10-23 00:00:00'),(84435,11,'NC72.22','Fracture of base of neck of femur','Y','2025-10-23 00:00:00'),(84434,11,'ND52','Fracture of arm, level unspecified','Y','2025-10-23 00:00:00'),(84433,11,'NA02.10','Fracture of anterior fossa of base of skull','Y','2025-10-23 00:00:00'),(84432,11,'NA02.74','Fracture of angle of mandible','Y','2025-10-23 00:00:00'),(84431,11,'NC12.22','Fracture of anatomical neck of humerus','Y','2025-10-23 00:00:00'),(84430,11,'NA02.75','Fracture of alveolar margin of mandible','Y','2025-10-23 00:00:00'),(84429,11,'NC12.02','Fracture of acromial end of clavicle','Y','2025-10-23 00:00:00'),(84428,11,'NB52.13','Fracture of acetabulum without disruption of pelvic ring','Y','2025-10-23 00:00:00'),(84427,11,'XJ92H','Fracture extends into joint and the entire articular part is detached from the main part of the bone','Y','2025-10-23 00:00:00'),(84426,11,'XJ5L7','Fracture extends into joint and a portion of the articular part remains attached to the main part of the bone','Y','2025-10-23 00:00:00'),(84425,11,'XJ5GS','Fracture extends into joint','Y','2025-10-23 00:00:00'),(84424,11,'XJ5VJ','Fracture does not extend into joint','Y','2025-10-23 00:00:00'),(84423,11,'NC53.Z','Fracture at wrist or hand level, unspecified','Y','2025-10-23 00:00:00'),(84422,11,'NC53','Fracture at wrist or hand level','Y','2025-10-23 00:00:00'),(84421,11,'NC53.Y','Fracture at other specified part of wrist or hand level','Y','2025-10-23 00:00:00'),(84420,11,'XA2U02','Fovea','Y','2025-10-23 00:00:00'),(84419,11,'MG50.23','Fourth-generation cephalosporins resistant Escherichia coli','Y','2025-10-23 00:00:00'),(84418,11,'XM60V7','Fourth-generation cephalosporins','Y','2025-10-23 00:00:00'),(84417,11,'MG50.53','Fourth-generation cephalosporin resistant Klebsiella pneumoniae','Y','2025-10-23 00:00:00'),(84416,11,'XA1804','Fourth ventricle of the brain','Y','2025-10-23 00:00:00'),(84415,11,'XA6TS5','Fourth toenail','Y','2025-10-23 00:00:00'),(84414,11,'XA4KK7','Fourth toe','Y','2025-10-23 00:00:00'),(84413,11,'XA0C31','Fourth thoracic vertebra','Y','2025-10-23 00:00:00'),(84412,11,'XA7BM1','Fourth thoracic spinal nerve','Y','2025-10-23 00:00:00'),(84411,11,'XA6NV1','Fourth thoracic nerve root','Y','2025-10-23 00:00:00'),(84410,11,'XA25F0','Fourth sacral spinal nerve','Y','2025-10-23 00:00:00'),(84409,11,'XA0WH3','Fourth sacral nerve root','Y','2025-10-23 00:00:00'),(84408,11,'XA4SQ6','Fourth rib','Y','2025-10-23 00:00:00'),(84407,11,'9C81.1','Fourth nerve palsy','Y','2025-10-23 00:00:00'),(84406,11,'XA7QC6','Fourth metatarsophalangeal joint','Y','2025-10-23 00:00:00'),(84405,11,'XA86J0','Fourth metatarsal head region','Y','2025-10-23 00:00:00'),(84404,11,'XA7XA8','Fourth metacarpophalangeal joint','Y','2025-10-23 00:00:00'),(84403,11,'XA9KB7','Fourth metacarpal','Y','2025-10-23 00:00:00'),(84402,11,'XA9A53','Fourth lumbar vertebra','Y','2025-10-23 00:00:00'),(84401,11,'XA6N66','Fourth lumbar spinal nerve','Y','2025-10-23 00:00:00'),(84400,11,'XA2ZQ7','Fourth lumbar nerve root','Y','2025-10-23 00:00:00'),(84399,11,'XA3WG2','Fourth interdigital web space of hand','Y','2025-10-23 00:00:00'),(84398,11,'XA2A07','Fourth interdigital web space of foot','Y','2025-10-23 00:00:00'),(84397,11,'JB09.3','Fourth degree perineal laceration during delivery','Y','2025-10-23 00:00:00'),(84396,11,'DB60.3','Fourth degree haemorrhoids','Y','2025-10-23 00:00:00'),(84395,11,'XA3RE9','Fourth cervical vertebra','Y','2025-10-23 00:00:00'),(84394,11,'XA1QX0','Fourth cervical spinal nerve','Y','2025-10-23 00:00:00'),(84392,11,'SH3Z','Four phase patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(84393,11,'XA36V3','Fourth cervical nerve root','Y','2025-10-23 00:00:00'),(84390,11,'XM5RH5','Fotemustine','Y','2025-10-23 00:00:00'),(84391,11,'SH9Z','Four constitution medicine patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(84389,11,'XM4Z53','Fosinopril','Y','2025-10-23 00:00:00'),(84388,11,'XM6CJ2','Fosfonet sodium','Y','2025-10-23 00:00:00'),(84387,11,'XM8Z26','Fosfonet','Y','2025-10-23 00:00:00'),(84386,11,'XM0HU8','Fosfomycin','Y','2025-10-23 00:00:00'),(84385,11,'XM8R77','Fosfocreatine','Y','2025-10-23 00:00:00'),(84384,11,'XM03K8','Fosfestrol','Y','2025-10-23 00:00:00'),(84383,11,'XM7ZH6','Fosdenopterin','Y','2025-10-23 00:00:00'),(84381,11,'XM5XQ9','Foscarnet','Y','2025-10-23 00:00:00'),(84382,11,'XM9VL0','Foscarnet sodium','Y','2025-10-23 00:00:00'),(84380,11,'XM2AR2','Fosamprenavir','Y','2025-10-23 00:00:00'),(84379,11,'XM0QJ7','Formoterol','Y','2025-10-23 00:00:00'),(84378,11,'XM6GF5','Formocortal','Y','2025-10-23 00:00:00'),(84377,11,'XM6SY2','Formic acid vapor','Y','2025-10-23 00:00:00'),(84376,11,'XM6HP3','Formic acid','Y','2025-10-23 00:00:00'),(84375,11,'XM14P8','Formestane','Y','2025-10-23 00:00:00'),(84374,11,'XM0TV9','Formaldehyde','Y','2025-10-23 00:00:00'),(84373,11,'XE21P','Forklift or lift truck','Y','2025-10-23 00:00:00'),(84372,11,'XE31K','Fork lift truck as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(84371,11,'XE1U3','Fork lift truck as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(84370,11,'SD23','Forgetfulness disorder (TM1)','Y','2025-10-23 00:00:00'),(84369,11,'XE6AV','Forest','Y','2025-10-23 00:00:00'),(84368,11,'EH93.2','Foreign body reaction to organic matter in the skin','Y','2025-10-23 00:00:00'),(84367,11,'EH93.1','Foreign body reaction to inorganic matter in the skin','Y','2025-10-23 00:00:00'),(84366,11,'ND70.Z','Foreign body on external eye, unspecified','Y','2025-10-23 00:00:00'),(84365,11,'ND70','Foreign body on external eye','Y','2025-10-23 00:00:00'),(84363,11,'ND74.3','Foreign body in uterus, any part','Y','2025-10-23 00:00:00'),(84364,11,'ND74.2','Foreign body in vulva or vagina','Y','2025-10-23 00:00:00'),(84362,11,'ND74.0','Foreign body in urethra','Y','2025-10-23 00:00:00'),(84360,11,'ND72.4','Foreign body in trachea','Y','2025-10-23 00:00:00'),(84361,11,'ND72.Z','Foreign body in unspecified part of respiratory tract','Y','2025-10-23 00:00:00'),(84358,11,'ND73.2','Foreign body in stomach','Y','2025-10-23 00:00:00'),(84359,11,'ND73.2Z','Foreign body in stomach, unspecified','Y','2025-10-23 00:00:00'),(84357,11,'ND73.3','Foreign body in small intestine','Y','2025-10-23 00:00:00'),(84355,11,'ND72.2Z','Foreign body in pharynx, unspecified','Y','2025-10-23 00:00:00'),(84356,11,'ND72','Foreign body in respiratory tract','Y','2025-10-23 00:00:00'),(84354,11,'ND72.2','Foreign body in pharynx','Y','2025-10-23 00:00:00'),(84353,11,'ND74.Y','Foreign body in other specified part of genitourinary tract','Y','2025-10-23 00:00:00'),(84352,11,'ND70.Y','Foreign body in other specified part of external eye','Y','2025-10-23 00:00:00'),(84351,11,'ND73.Y','Foreign body in other specified part of alimentary tract','Y','2025-10-23 00:00:00'),(84350,11,'ND72.Y','Foreign body in other parts of respiratory tract','Y','2025-10-23 00:00:00'),(84349,11,'XE202','Foreign body in orifice','Y','2025-10-23 00:00:00'),(84348,11,'ND73.1','Foreign body in oesophagus','Y','2025-10-23 00:00:00'),(84347,11,'ND72.1','Foreign body in nostril','Y','2025-10-23 00:00:00'),(84346,11,'ND72.0','Foreign body in nasal sinus','Y','2025-10-23 00:00:00'),(84345,11,'ND72.6','Foreign body in multiple parts of respiratory tract','Y','2025-10-23 00:00:00'),(84344,11,'ND70.2','Foreign body in multiple parts of external eye','Y','2025-10-23 00:00:00'),(84343,11,'ND73.0','Foreign body in mouth','Y','2025-10-23 00:00:00'),(84342,11,'ND72.3','Foreign body in larynx','Y','2025-10-23 00:00:00'),(84341,11,'ND74.Z','Foreign body in genitourinary tract, unspecified','Y','2025-10-23 00:00:00'),(84340,11,'ND74','Foreign body in genitourinary tract','Y','2025-10-23 00:00:00'),(84339,11,'ND71','Foreign body in ear','Y','2025-10-23 00:00:00'),(84338,11,'ND70.0','Foreign body in cornea','Y','2025-10-23 00:00:00'),(84337,11,'ND70.1','Foreign body in conjunctival sac','Y','2025-10-23 00:00:00'),(84336,11,'ND73.4','Foreign body in colon','Y','2025-10-23 00:00:00'),(84335,11,'ND72.5','Foreign body in bronchus','Y','2025-10-23 00:00:00'),(84334,11,'ND74.1','Foreign body in bladder','Y','2025-10-23 00:00:00'),(84333,11,'ND73.5','Foreign body in anus or rectum','Y','2025-10-23 00:00:00'),(84332,11,'ND73.Z','Foreign body in alimentary tract, unspecified','Y','2025-10-23 00:00:00'),(84331,11,'ND73','Foreign body in alimentary tract','Y','2025-10-23 00:00:00'),(84330,11,'FB56.0','Foreign body granuloma of soft tissue, not elsewhere classified','Y','2025-10-23 00:00:00'),(84329,11,'EH93.3','Foreign body granuloma of skin','Y','2025-10-23 00:00:00'),(84328,11,'PL11.3','Foreign body accidentally left in body, as mode of injury or harm','Y','2025-10-23 00:00:00'),(84327,11,'QA51','Foreign body accidentally left in body without injury or harm','Y','2025-10-23 00:00:00'),(84326,11,'XA6TR8','Forehead','Y','2025-10-23 00:00:00'),(84325,11,'XA5YL1','Forefoot','Y','2025-10-23 00:00:00'),(84324,11,'XA7WB0','Forearm','Y','2025-10-23 00:00:00'),(84323,11,'XE08E','Foot pedal component of medical device','Y','2025-10-23 00:00:00'),(84322,11,'SB71','Foot dampness itch disorder (TM1)','Y','2025-10-23 00:00:00'),(84321,11,'1F05.3','Foot and mouth disease','Y','2025-10-23 00:00:00'),(84320,11,'XA47V8','Foot','Y','2025-10-23 00:00:00'),(84319,11,'4A85.21','Food-induced urticaria or angioedema','Y','2025-10-23 00:00:00'),(84318,11,'4A85.20','Food-induced gastrointestinal hypersensitivity','Y','2025-10-23 00:00:00'),(84317,11,'4A83.1','Food-induced eosinophilic oesophagitis','Y','2025-10-23 00:00:00'),(84316,11,'4A83.0','Food-induced eosinophilic gastroenteritis','Y','2025-10-23 00:00:00'),(84315,11,'1A10','Foodborne staphylococcal intoxication','Y','2025-10-23 00:00:00'),(84314,11,'1A11.0','Foodborne intoxication by botulinum toxin','Y','2025-10-23 00:00:00'),(84313,11,'1A12','Foodborne Clostridium perfringens intoxication','Y','2025-10-23 00:00:00'),(84312,11,'1A13','Foodborne Bacillus cereus intoxication','Y','2025-10-23 00:00:00'),(84311,11,'XE3FD','Food, drink, or related product','Y','2025-10-23 00:00:00'),(84310,11,'XE4WL','Food storage or related utensil or container','Y','2025-10-23 00:00:00'),(84309,11,'SA54','Food retention disorder (TM1)','Y','2025-10-23 00:00:00'),(84308,11,'DB33.20','Food protein-induced proctitis or colitis of infants','Y','2025-10-23 00:00:00'),(84307,11,'DA94.22','Food protein-induced enterocolitis syndrome','Y','2025-10-23 00:00:00'),(84306,11,'XE6DV','Food processor, blender, juicer','Y','2025-10-23 00:00:00'),(84305,11,'DA0E.4','Food impaction','Y','2025-10-23 00:00:00'),(84304,11,'4A85.2Z','Food hypersensitivity, unspecified','Y','2025-10-23 00:00:00'),(84302,11,'XM31P2','Fondaparinux','Y','2025-10-23 00:00:00'),(84303,11,'4A85.2','Food hypersensitivity','Y','2025-10-23 00:00:00'),(84300,11,'XM5BB1','Fominoben','Y','2025-10-23 00:00:00'),(84301,11,'XM0C71','Fomivirsen','Y','2025-10-23 00:00:00'),(84298,11,'XM04K8','Folpet','Y','2025-10-23 00:00:00'),(84299,11,'XM7LQ9','Fomepizole','Y','2025-10-23 00:00:00'),(84297,11,'QA06','Follow-up examination after treatment for malignant neoplasms','Y','2025-10-23 00:00:00'),(84296,11,'QA07.Z','Follow-up examination after treatment for conditions other than malignant neoplasms, unspecified','Y','2025-10-23 00:00:00'),(84295,11,'QA07','Follow-up examination after treatment for conditions other than malignant neoplasms','Y','2025-10-23 00:00:00'),(84294,11,'QA07.0','Follow-up examination after organ transplant','Y','2025-10-23 00:00:00'),(84293,11,'QB84','Follow-up care involving removal of fracture plate or other internal fixation device','Y','2025-10-23 00:00:00'),(84292,11,'QB83','Follow-up care involving plastic surgery','Y','2025-10-23 00:00:00'),(84291,11,'XM0RZ5','Follitropin delta','Y','2025-10-23 00:00:00'),(84290,11,'XM6EZ5','Follitropin beta','Y','2025-10-23 00:00:00'),(84289,11,'XM4K30','Follitropin alfa','Y','2025-10-23 00:00:00'),(84288,11,'ED70.50','Folliculitis decalvans','Y','2025-10-23 00:00:00'),(84287,11,'ED81.0','Folliculitis cruris pustulosa atrophicans','Y','2025-10-23 00:00:00'),(84286,11,'XH27W5','Follicular tumor of uncertain malignant potential','Y','2025-10-23 00:00:00'),(84285,11,'XH14S3','Follicular T-cell lymphoma','Y','2025-10-23 00:00:00'),(84284,11,'2A80.Z','Follicular lymphoma, unspecified','Y','2025-10-23 00:00:00'),(84283,11,'XH9RH9','Follicular lymphoma, pediatric type','Y','2025-10-23 00:00:00'),(84282,11,'XH0LK1','Follicular lymphoma, NOS','Y','2025-10-23 00:00:00'),(84281,11,'XH6RN1','Follicular lymphoma, grade 3','Y','2025-10-23 00:00:00'),(84280,11,'XH79L3','Follicular lymphoma, grade 2','Y','2025-10-23 00:00:00'),(84279,11,'XH6Y69','Follicular lymphoma, grade 1','Y','2025-10-23 00:00:00'),(84278,11,'XH9L76','Follicular lymphoma, duodenal type','Y','2025-10-23 00:00:00'),(84277,11,'2A80.6','Follicular lymphoma of small intestine','Y','2025-10-23 00:00:00'),(84276,11,'2A80.5','Follicular lymphoma in situ','Y','2025-10-23 00:00:00'),(84275,11,'2A80.2','Follicular lymphoma grade 3','Y','2025-10-23 00:00:00'),(84274,11,'2A80.1','Follicular lymphoma grade 2','Y','2025-10-23 00:00:00'),(84273,11,'2A80.0','Follicular lymphoma grade 1','Y','2025-10-23 00:00:00'),(84272,11,'2A80','Follicular lymphoma','Y','2025-10-23 00:00:00'),(84271,11,'EA91.2','Follicular lichen planus','Y','2025-10-23 00:00:00'),(84270,11,'XH4YU8','Follicular fibroma','Y','2025-10-23 00:00:00'),(84269,11,'XH6ZR5','Follicular dendritic cell tumour','Y','2025-10-23 00:00:00'),(84268,11,'2B31.5','Follicular dendritic cell sarcoma','Y','2025-10-23 00:00:00'),(84267,11,'XH1JT6','Follicular dendritic cell sarcoma','Y','2025-10-23 00:00:00'),(84266,11,'GA18.0','Follicular cyst of ovary','Y','2025-10-23 00:00:00'),(84265,11,'9A60.1','Follicular conjunctivitis','Y','2025-10-23 00:00:00'),(84264,11,'XH90N9','Follicular carcinoma, oxyphilic cell','Y','2025-10-23 00:00:00'),(84263,11,'XH3Z50','Follicular carcinoma, NOS','Y','2025-10-23 00:00:00'),(84262,11,'XH3DN7','Follicular carcinoma, minimally invasive','Y','2025-10-23 00:00:00'),(84261,11,'XH0Y80','Follicular carcinoma, encapsulated, angioinvasive','Y','2025-10-23 00:00:00'),(84260,11,'2D10.0','Follicular carcinoma of thyroid gland','Y','2025-10-23 00:00:00'),(84259,11,'XH5SM2','Follicular adenoma, oxyphilic cell','Y','2025-10-23 00:00:00'),(84258,11,'XH0LM0','Follicular adenoma','Y','2025-10-23 00:00:00'),(84257,11,'XH8FK7','Follicular adenocarcinoma, well differentiated','Y','2025-10-23 00:00:00'),(84256,11,'XH0VD1','Follicular adenocarcinoma, trabecular','Y','2025-10-23 00:00:00'),(84255,11,'XH7TE3','Follicular adenocarcinoma, moderately differentiated','Y','2025-10-23 00:00:00'),(84254,11,'XM4MB2','Follicle-stimulating hormone, human','Y','2025-10-23 00:00:00'),(84253,11,'XM7CA8','Folium stramoniae','Y','2025-10-23 00:00:00'),(84252,11,'XM2SL0','Folic acid antagonist','Y','2025-10-23 00:00:00'),(84251,11,'XM4DQ8','Folic acid analogues','Y','2025-10-23 00:00:00'),(84250,11,'XM7R82','Folic acid','Y','2025-10-23 00:00:00'),(84249,11,'XE6EN','Folding table','Y','2025-10-23 00:00:00'),(84248,11,'XE06X','Folding scooter','Y','2025-10-23 00:00:00'),(84247,11,'XE1NC','Folding chair','Y','2025-10-23 00:00:00'),(84246,11,'3A02.Z','Folate deficiency anaemia, unspecified','Y','2025-10-23 00:00:00'),(84245,11,'3A02.1','Folate deficiency anaemia due to low intake','Y','2025-10-23 00:00:00'),(84244,11,'3A02.2','Folate deficiency anaemia due to increased requirements','Y','2025-10-23 00:00:00'),(84243,11,'3A02.3','Folate deficiency anaemia due to decreased intestinal absorption','Y','2025-10-23 00:00:00'),(84242,11,'3A02','Folate deficiency anaemia','Y','2025-10-23 00:00:00'),(84241,11,'5B5E','Folate deficiency','Y','2025-10-23 00:00:00'),(84240,11,'XE4PC','Foil component of medical device','Y','2025-10-23 00:00:00'),(84239,11,'8A68.0','Focal unaware seizure','Y','2025-10-23 00:00:00'),(84238,11,'NA07.21','Focal traumatic oedema','Y','2025-10-23 00:00:00'),(84237,11,'EC20.31','Focal palmoplantar keratodermas','Y','2025-10-23 00:00:00'),(84236,11,'8D8A.Z','Focal or segmental autonomic disorders, unspecified','Y','2025-10-23 00:00:00'),(84235,11,'8D8A','Focal or segmental autonomic disorders','Y','2025-10-23 00:00:00'),(84234,11,'NA07.40','Focal non-haemorrhagic contusion of cerebrum','Y','2025-10-23 00:00:00'),(84233,11,'NA07.44','Focal non-haemorrhagic contusion of cerebellum','Y','2025-10-23 00:00:00'),(84232,11,'NA07.48','Focal non-haemorrhagic contusion of brainstem','Y','2025-10-23 00:00:00'),(84231,11,'XH0M86','Focal nodular hyperplasia','Y','2025-10-23 00:00:00'),(84230,11,'8A06.2Z','Focal myoclonus, unspecified','Y','2025-10-23 00:00:00'),(84229,11,'8A06.2','Focal myoclonus','Y','2025-10-23 00:00:00'),(84228,11,'NA07.42','Focal laceration of cerebrum','Y','2025-10-23 00:00:00'),(84227,11,'NA07.46','Focal laceration of cerebellum','Y','2025-10-23 00:00:00'),(84226,11,'NA07.4B','Focal laceration of brainstem','Y','2025-10-23 00:00:00'),(84225,11,'2E81.20','Focal infantile haemangioma','Y','2025-10-23 00:00:00'),(84224,11,'NA07.41','Focal haemorrhagic contusion of cerebrum','Y','2025-10-23 00:00:00'),(84223,11,'NA07.45','Focal haematoma or haemorrhage of cerebellum','Y','2025-10-23 00:00:00'),(84222,11,'NA07.49','Focal haematoma or haemorrhage of brainstem','Y','2025-10-23 00:00:00'),(84221,11,'1E82.0','Focal epithelial hyperplasia of oral mucous membranes','Y','2025-10-23 00:00:00'),(84220,11,'XK37','Focal distribution','Y','2025-10-23 00:00:00'),(84219,11,'LA06.2','Focal cerebellar dysplasia','Y','2025-10-23 00:00:00'),(84218,11,'NA07.4D','Focal brain laceration','Y','2025-10-23 00:00:00'),(84217,11,'NA07.4','Focal brain injury','Y','2025-10-23 00:00:00'),(84216,11,'NA07.4C','Focal brain contusion','Y','2025-10-23 00:00:00'),(84215,11,'8A68.3','Focal aware seizure','Y','2025-10-23 00:00:00'),(84214,11,'XM64L1','Fluvoxamine','Y','2025-10-23 00:00:00'),(84212,11,'XM4DL3','Flutropium bromide','Y','2025-10-23 00:00:00'),(84213,11,'XM5UF1','Fluvastatin','Y','2025-10-23 00:00:00'),(84210,11,'XM81V7','Flutoprazepam','Y','2025-10-23 00:00:00'),(84211,11,'XM49Z6','Flutrimazole','Y','2025-10-23 00:00:00'),(84209,11,'XM1XF3','Fluticasone furoate','Y','2025-10-23 00:00:00'),(84208,11,'XM5PW9','Fluticasone','Y','2025-10-23 00:00:00'),(84206,11,'XM3G31','Flutamide','Y','2025-10-23 00:00:00'),(84207,11,'XM68Z6','Flutazolam','Y','2025-10-23 00:00:00'),(84205,11,'XM0Q81','Fluspirilene','Y','2025-10-23 00:00:00'),(84203,11,'EG02','Flushing disorders','Y','2025-10-23 00:00:00'),(84204,11,'XE0VE','Flushing problem','Y','2025-10-23 00:00:00'),(84202,11,'ME64.4','Flushing','Y','2025-10-23 00:00:00'),(84201,11,'XE766','Flush toilet','Y','2025-10-23 00:00:00'),(84199,11,'XM67C1','Flurobate','Y','2025-10-23 00:00:00'),(84200,11,'XM9K99','Fluroxene','Y','2025-10-23 00:00:00'),(84198,11,'XM2J45','Flurithromycin','Y','2025-10-23 00:00:00'),(84197,11,'XM8VP8','Flurbiprofen','Y','2025-10-23 00:00:00'),(84196,11,'XM73H1','Flurazepam','Y','2025-10-23 00:00:00'),(84195,11,'XM5086','Flurandrenolide','Y','2025-10-23 00:00:00'),(84194,11,'XM5YR6','Fluradoline','Y','2025-10-23 00:00:00'),(84193,11,'XM2GK4','Fluprednisolone','Y','2025-10-23 00:00:00'),(84192,11,'XM52K8','Fluprednidene','Y','2025-10-23 00:00:00'),(84191,11,'XM5WQ7','Flupirtine','Y','2025-10-23 00:00:00'),(84190,11,'XM6Z10','Fluphenazine','Y','2025-10-23 00:00:00'),(84189,11,'XM41T8','Fluperolone','Y','2025-10-23 00:00:00'),(84188,11,'XM4EY8','Flupentixol','Y','2025-10-23 00:00:00'),(84187,11,'XM29P0','Fluoxymesterone','Y','2025-10-23 00:00:00'),(84186,11,'XM7LE6','Fluoxetine','Y','2025-10-23 00:00:00'),(84185,11,'XM6JB1','Fluostigmine','Y','2025-10-23 00:00:00'),(84184,11,'XM45L3','Fluorphenylalanine','Y','2025-10-23 00:00:00'),(84183,11,'XM55V5','Fluorouracil','Y','2025-10-23 00:00:00'),(84182,11,'XM6QE9','Fluorosol','Y','2025-10-23 00:00:00'),(84181,11,'XM3HL2','Fluoroquinolones','Y','2025-10-23 00:00:00'),(84180,11,'MG50.B0','Fluoroquinolone resistant Vibrio','Y','2025-10-23 00:00:00'),(84179,11,'MG50.A1','Fluoroquinolone resistant Shigella','Y','2025-10-23 00:00:00'),(84178,11,'MG50.90','Fluoroquinolone resistant Salmonella','Y','2025-10-23 00:00:00'),(84177,11,'MG50.63','Fluoroquinolone resistant Neisseria gonorrhoeae','Y','2025-10-23 00:00:00'),(84176,11,'MG50.51','Fluoroquinolone resistant Klebsiella pneumoniae','Y','2025-10-23 00:00:00'),(84175,11,'MG50.21','Fluoroquinolone resistant Escherichia coli','Y','2025-10-23 00:00:00'),(84174,11,'MG50.10','Fluoroquinolone resistant Campylobacter','Y','2025-10-23 00:00:00'),(84173,11,'XM5KA2','Fluorophosphate insecticide','Y','2025-10-23 00:00:00'),(84172,11,'XM1N90','Fluoromethylcholine (18F)','Y','2025-10-23 00:00:00'),(84171,11,'XM7MM0','Fluorometholone','Y','2025-10-23 00:00:00'),(84170,11,'XM6UT0','Fluoroethyl-L-tyrosine (18F)','Y','2025-10-23 00:00:00'),(84169,11,'XM5XR7','Fluoroethylcholine (18F)','Y','2025-10-23 00:00:00'),(84168,11,'XM80F7','Fluoroestradiol (18F)','Y','2025-10-23 00:00:00'),(84167,11,'XM3LK2','Fluorodopa (18F)','Y','2025-10-23 00:00:00'),(84166,11,'XM4XE9','Fluorocytosine','Y','2025-10-23 00:00:00'),(84165,11,'XM7P90','Fluoroacetamide','Y','2025-10-23 00:00:00'),(84164,11,'5B91.3','Fluorine excess','Y','2025-10-23 00:00:00'),(84163,11,'5B5K.4','Fluorine deficiency','Y','2025-10-23 00:00:00'),(84162,11,'XM9SB2','Fluorine','Y','2025-10-23 00:00:00'),(84161,11,'XM48E4','Fluorinated corticosteroids','Y','2025-10-23 00:00:00'),(84160,11,'DA07.0','Fluoride related opacities or lesions','Y','2025-10-23 00:00:00'),(84159,11,'XM10Z2','Fluoride nonmedicinal','Y','2025-10-23 00:00:00'),(84157,11,'XM1VS5','Fluoride','Y','2025-10-23 00:00:00'),(84158,11,'XM85Z1','Fluoride medicinal dental use','Y','2025-10-23 00:00:00'),(84156,11,'XM5618','Fluorescein','Y','2025-10-23 00:00:00'),(84155,11,'XM5FR6','Fluocortolone','Y','2025-10-23 00:00:00'),(84153,11,'XM2E99','Fluocinonide','Y','2025-10-23 00:00:00'),(84154,11,'XM3EM1','Fluocortin (butyl)','Y','2025-10-23 00:00:00'),(84152,11,'XM4HA4','Fluocinolone acetonide','Y','2025-10-23 00:00:00'),(84151,11,'XM4FK3','Flunoxaprofen','Y','2025-10-23 00:00:00'),(84149,11,'XM9VX0','Flunisolide','Y','2025-10-23 00:00:00'),(84150,11,'XM9W71','Flunitrazepam','Y','2025-10-23 00:00:00'),(84148,11,'XM7BY8','Flunidazole','Y','2025-10-23 00:00:00'),(84147,11,'XM52G4','Flunarizine','Y','2025-10-23 00:00:00'),(84146,11,'XM5L31','Flumethiazide','Y','2025-10-23 00:00:00'),(84145,11,'XM6LQ2','Flumethasone','Y','2025-10-23 00:00:00'),(84144,11,'XM55S3','Flumetasone','Y','2025-10-23 00:00:00'),(84143,11,'XM4923','Flumequine','Y','2025-10-23 00:00:00'),(84142,11,'XM2UQ5','Flumazenil','Y','2025-10-23 00:00:00'),(84141,11,'XM4GN9','Fluindione','Y','2025-10-23 00:00:00'),(84140,11,'SF1Z','Fluid patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(84139,11,'5C78','Fluid overload','Y','2025-10-23 00:00:00'),(84138,11,'XE2ZY','Fluid leak','Y','2025-10-23 00:00:00'),(84137,11,'ME04.0','Fluid in peritoneal cavity','Y','2025-10-23 00:00:00'),(84136,11,'SF11','Fluid disturbance pattern (TM1)','Y','2025-10-23 00:00:00'),(84135,11,'SF10','Fluid deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(84134,11,'XM31G8','Flufenamic acid','Y','2025-10-23 00:00:00'),(84133,11,'XM84F4','Fludroxycortide','Y','2025-10-23 00:00:00'),(84132,11,'XM0WP2','Fludrocortisone topical','Y','2025-10-23 00:00:00'),(84131,11,'XM6JQ6','Fludrocortisone','Y','2025-10-23 00:00:00'),(84130,11,'XM8NC2','Fludiazepam','Y','2025-10-23 00:00:00'),(84129,11,'XM3WK3','Fludeoxyglucose (18F)','Y','2025-10-23 00:00:00'),(84128,11,'XM9RH9','Fludarabine','Y','2025-10-23 00:00:00'),(84127,11,'XM3BU7','Flucytosine','Y','2025-10-23 00:00:00'),(84126,11,'XM6H26','Flucythrinate','Y','2025-10-23 00:00:00'),(84125,11,'XM97S6','Fluconazole','Y','2025-10-23 00:00:00'),(84124,11,'XM6AV2','Flucloxacillin','Y','2025-10-23 00:00:00'),(84123,11,'XM4TV8','Fluclorolone acetonide','Y','2025-10-23 00:00:00'),(84122,11,'XM1068','Fluclorolone','Y','2025-10-23 00:00:00'),(84121,11,'XM5G08','Fluciclovine (18F)','Y','2025-10-23 00:00:00'),(84120,11,'XM8RG6','Flubendazole','Y','2025-10-23 00:00:00'),(84119,11,'XM0FM0','Fluanisone','Y','2025-10-23 00:00:00'),(84118,11,'XM8NR1','Floxuridine','Y','2025-10-23 00:00:00'),(84117,11,'XE1WJ','Flowmeter component of medical device','Y','2025-10-23 00:00:00'),(84116,11,'SD95','Flowing phlegm disorder (TM1)','Y','2025-10-23 00:00:00'),(84115,11,'XM23M8','Flosequinan','Y','2025-10-23 00:00:00'),(84114,11,'XM2Q01','Florantyrone','Y','2025-10-23 00:00:00'),(84112,11,'9A94.1','Floppy iris syndrome','Y','2025-10-23 00:00:00'),(84113,11,'XM3L41','Flopropione','Y','2025-10-23 00:00:00'),(84110,11,'XE6M6','Floor wood','Y','2025-10-23 00:00:00'),(84111,11,'9A03.24','Floppy eyelid syndrome','Y','2025-10-23 00:00:00'),(84108,11,'XM1545','Floor polish','Y','2025-10-23 00:00:00'),(84109,11,'XE19Z','Floor tile, brick, concrete','Y','2025-10-23 00:00:00'),(84107,11,'XE7SG','Floor or related fitting or feature','Y','2025-10-23 00:00:00'),(84106,11,'XA8EY7','Floor of mouth','Y','2025-10-23 00:00:00'),(84104,11,'XE0SK','Floor carpeted','Y','2025-10-23 00:00:00'),(84105,11,'XE6ZE','Floor mud, clay, animal dung','Y','2025-10-23 00:00:00'),(84102,11,'XM83K2','Flomoxef','Y','2025-10-23 00:00:00'),(84103,11,'SB01','Flooding urine disorder (TM1)','Y','2025-10-23 00:00:00'),(84101,11,'XM3WB0','Floctafenine','Y','2025-10-23 00:00:00'),(84100,11,'XM7HA0','Flocoumafen','Y','2025-10-23 00:00:00'),(84099,11,'SC04','Floating sensation pregnancy disorder (TM1)','Y','2025-10-23 00:00:00'),(84098,11,'MB25.1','Flight of ideas','Y','2025-10-23 00:00:00'),(84097,11,'XM5EY9','Flibanserin','Y','2025-10-23 00:00:00'),(84096,11,'1F23.12','Flexural or intertriginous candidosis','Y','2025-10-23 00:00:00'),(84095,11,'EA90.52','Flexural and intertriginous psoriasis','Y','2025-10-23 00:00:00'),(84094,11,'XA5YQ2','Flexor tendon','Y','2025-10-23 00:00:00'),(84093,11,'XA92F7','Flexor pollicis longus tendon','Y','2025-10-23 00:00:00'),(84092,11,'XA3GQ7','Flexor pollicis longus muscle','Y','2025-10-23 00:00:00'),(84091,11,'XA1Q82','Flexor pollicis brevis tendon','Y','2025-10-23 00:00:00'),(84090,11,'XA5QD0','Flexor pollicis brevis muscle','Y','2025-10-23 00:00:00'),(84089,11,'XA1MF0','Flexor hallucis longus tendon','Y','2025-10-23 00:00:00'),(84088,11,'XA7E33','Flexor hallucis longus muscle','Y','2025-10-23 00:00:00'),(84087,11,'XA00Z8','Flexor hallucis brevis tendon','Y','2025-10-23 00:00:00'),(84086,11,'XA3MB7','Flexor hallucis brevis muscle','Y','2025-10-23 00:00:00'),(84085,11,'XA9Q34','Flexor digitorum tendon','Y','2025-10-23 00:00:00'),(84084,11,'XA9526','Flexor digitorum superficialis tendon','Y','2025-10-23 00:00:00'),(84083,11,'XA1NW3','Flexor digitorum superficialis muscle','Y','2025-10-23 00:00:00'),(84082,11,'XA0GQ6','Flexor digitorum profundus tendon','Y','2025-10-23 00:00:00'),(84081,11,'XA4Z43','Flexor digitorum profundus muscle','Y','2025-10-23 00:00:00'),(84080,11,'XA23Q3','Flexor digitorum longus muscle (foot)','Y','2025-10-23 00:00:00'),(84079,11,'XA3MK8','Flexor digitorum longus (foot) tendon','Y','2025-10-23 00:00:00'),(84078,11,'XA8GD0','Flexor digitorum brevis tendon','Y','2025-10-23 00:00:00'),(84077,11,'XA97C3','Flexor digitorum brevis muscle','Y','2025-10-23 00:00:00'),(84076,11,'XA23D8','Flexor digiti minimi tendon','Y','2025-10-23 00:00:00'),(84075,11,'XA3UK3','Flexor digiti minimi brevis muscle (hand)','Y','2025-10-23 00:00:00'),(84074,11,'XA20W3','Flexor digiti minimi brevis muscle (foot)','Y','2025-10-23 00:00:00'),(84073,11,'XA8X38','Flexor digiti minimi brevis (foot) tendon','Y','2025-10-23 00:00:00'),(84072,11,'XA5CE2','Flexor carpi ulnaris tendon','Y','2025-10-23 00:00:00'),(84071,11,'XA4HV9','Flexor carpi ulnaris muscle','Y','2025-10-23 00:00:00'),(84070,11,'XA8H50','Flexor carpi radialis tendon','Y','2025-10-23 00:00:00'),(84069,11,'XA0S07','Flexor carpi radialis muscle','Y','2025-10-23 00:00:00'),(84068,11,'FA31.2','Flexion deformity','Y','2025-10-23 00:00:00'),(84067,11,'XM2GR2','Fleroxacin','Y','2025-10-23 00:00:00'),(84066,11,'XM1E38','Flecainide','Y','2025-10-23 00:00:00'),(84065,11,'XM8KY4','Flaxseed (medicinal)','Y','2025-10-23 00:00:00'),(84064,11,'XM8A87','Flaxedil','Y','2025-10-23 00:00:00'),(84063,11,'CA80.1','Flax-dresser disease','Y','2025-10-23 00:00:00'),(84062,11,'XM0CH2','Flavoxate','Y','2025-10-23 00:00:00'),(84061,11,'XM6BM1','Flavodic acid','Y','2025-10-23 00:00:00'),(84060,11,'XN0AC','Flavivirus','Y','2025-10-23 00:00:00'),(84059,11,'XM3CJ7','Flavine adenine dinucleotide','Y','2025-10-23 00:00:00'),(84058,11,'ME08','Flatulence and related conditions','Y','2025-10-23 00:00:00'),(84057,11,'XM91Z5','Flat rock scorpion venom','Y','2025-10-23 00:00:00'),(84056,11,'XH5161','Flat intraepithelial glandular neoplasia, high grade','Y','2025-10-23 00:00:00'),(84055,11,'9A83','Flat anterior chamber hypotony of eye','Y','2025-10-23 00:00:00'),(84053,11,'XH83X4','Flat adenoma','Y','2025-10-23 00:00:00'),(84054,11,'MB24.62','Flat affect','Y','2025-10-23 00:00:00'),(84052,11,'XE03F','Flare or flash','Y','2025-10-23 00:00:00'),(84051,11,'XE10F','Flange component of medical device','Y','2025-10-23 00:00:00'),(84050,11,'XE0YK','Flaked','Y','2025-10-23 00:00:00'),(84049,11,'NA82.5','Flail chest','Y','2025-10-23 00:00:00'),(84048,11,'MB50.0','Flaccid tetraplegia','Y','2025-10-23 00:00:00'),(84047,11,'MB54.0','Flaccid monoplegia of upper extremity','Y','2025-10-23 00:00:00'),(84046,11,'MB55.0','Flaccid monoplegia of lower extremity','Y','2025-10-23 00:00:00'),(84045,11,'MB53.1','Flaccid hemiplegia','Y','2025-10-23 00:00:00'),(84044,11,'MB51.0','Flaccid diplegia of upper extremities','Y','2025-10-23 00:00:00'),(84043,11,'XE98X','Fixed or stationary object as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(84042,11,'EH66','Fixed drug eruption','Y','2025-10-23 00:00:00'),(84041,11,'1F2J.1','Fixed cutaneous sporotrichosis','Y','2025-10-23 00:00:00'),(84040,11,'XM1364','Fixed Combinations for Helicobacter pylori eradication','Y','2025-10-23 00:00:00'),(84039,11,'XE9KR','Fixation wire fastner component of medical device','Y','2025-10-23 00:00:00'),(84038,11,'XE2BH','Fittings or pipes for steam','Y','2025-10-23 00:00:00'),(84037,11,'XE48P','Fittings or pipes for hot water','Y','2025-10-23 00:00:00'),(84036,11,'XE7UU','Fittings or pipes for gas, steam or hot water','Y','2025-10-23 00:00:00'),(84035,11,'XE171','Fittings or pipes for gas','Y','2025-10-23 00:00:00'),(84034,11,'QB30.Y','Fitting, adjustment or management of other specified implanted devices','Y','2025-10-23 00:00:00'),(84033,11,'QB31.Y','Fitting, adjustment or management of other specified external devices','Y','2025-10-23 00:00:00'),(84032,11,'QB31.Z','Fitting, adjustment or management of external devices, unspecified','Y','2025-10-23 00:00:00'),(84031,11,'QB31','Fitting, adjustment or management of external devices','Y','2025-10-23 00:00:00'),(84029,11,'XE0P9','Fitting problem','Y','2025-10-23 00:00:00'),(84030,11,'QB3Z','Fitting, adjustment or management of devices, unspecified','Y','2025-10-23 00:00:00'),(84028,11,'QB30.5','Fitting or adjustment of urinary device','Y','2025-10-23 00:00:00'),(84027,11,'QB31.5','Fitting or adjustment of spectacles or contact lenses','Y','2025-10-23 00:00:00'),(84026,11,'QB31.1','Fitting or adjustment of orthopaedic device','Y','2025-10-23 00:00:00'),(84025,11,'QB31.2','Fitting or adjustment of orthodontic device','Y','2025-10-23 00:00:00'),(84024,11,'QB30.A','Fitting or adjustment of neuropacemaker','Y','2025-10-23 00:00:00'),(84023,11,'QB31.4','Fitting or adjustment of hearing aid','Y','2025-10-23 00:00:00'),(84022,11,'QB31.0Z','Fitting or adjustment of external prosthetic device, unspecified','Y','2025-10-23 00:00:00'),(84021,11,'QB31.0','Fitting or adjustment of external prosthetic device','Y','2025-10-23 00:00:00'),(84020,11,'QB31.03','Fitting or adjustment of external breast prosthesis','Y','2025-10-23 00:00:00'),(84019,11,'QB31.3','Fitting or adjustment of dental prosthetic device','Y','2025-10-23 00:00:00'),(84018,11,'QB30.9','Fitting or adjustment of cerebrospinal fluid drainage device','Y','2025-10-23 00:00:00'),(84017,11,'QB31.01','Fitting or adjustment of artificial leg','Y','2025-10-23 00:00:00'),(84016,11,'QB31.02','Fitting or adjustment of artificial eye','Y','2025-10-23 00:00:00'),(84015,11,'QB31.00','Fitting or adjustment of artificial arm','Y','2025-10-23 00:00:00'),(84014,11,'XE8P0','Fitted counter, counter-top, kitchen top','Y','2025-10-23 00:00:00'),(84013,11,'GC04.1Z','Fistulae involving female genital tract, unspecified','Y','2025-10-23 00:00:00'),(84012,11,'GC04.1','Fistulae involving female genital tract','Y','2025-10-23 00:00:00'),(84011,11,'GC04.Z','Fistula of the genitourinary tract, unspecified','Y','2025-10-23 00:00:00'),(84010,11,'GC04','Fistula of the genitourinary tract','Y','2025-10-23 00:00:00'),(84009,11,'GC04.11','Fistula of small intestine to vagina','Y','2025-10-23 00:00:00'),(84008,11,'DA92.0','Fistula of small intestine','Y','2025-10-23 00:00:00'),(84007,11,'GC04.12','Fistula of large intestine to vagina','Y','2025-10-23 00:00:00'),(84006,11,'DB31.0','Fistula of large intestine','Y','2025-10-23 00:00:00'),(84005,11,'DC10.2','Fistula of gallbladder or bile duct','Y','2025-10-23 00:00:00'),(84004,11,'DA50.2','Fistula of duodenum','Y','2025-10-23 00:00:00'),(84003,11,'DB11.4','Fistula of appendix','Y','2025-10-23 00:00:00'),(84002,11,'XJ5N9','Fissured fracture','Y','2025-10-23 00:00:00'),(84001,11,'SB7C','Fissured anus disorder (TM1)','Y','2025-10-23 00:00:00'),(84000,11,'GB23.1','Fissure or fistula of nipple','Y','2025-10-23 00:00:00'),(83999,11,'DB50.Z','Fissure or fistula of anal regions, unspecified','Y','2025-10-23 00:00:00'),(83998,11,'DB50','Fissure or fistula of anal regions','Y','2025-10-23 00:00:00'),(83997,11,'XE801','Fishing boat, trawler','Y','2025-10-23 00:00:00'),(83996,11,'XE9PA','Fishing boat or trawler as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(83994,11,'XM05Z4','Fish venom','Y','2025-10-23 00:00:00'),(83995,11,'XE3W7','Fishhook used for work-related activity','Y','2025-10-23 00:00:00'),(83993,11,'XM7V29','Fish seafood poison','Y','2025-10-23 00:00:00'),(83992,11,'XM9BE0','First-generation cephalosporins','Y','2025-10-23 00:00:00'),(83990,11,'XA3F93','First thoracic vertebra','Y','2025-10-23 00:00:00'),(83991,11,'XM2JE5','First-generation antihistamine','Y','2025-10-23 00:00:00'),(83989,11,'XA2QF3','First thoracic spinal nerve','Y','2025-10-23 00:00:00'),(83988,11,'XA22C5','First thoracic nerve root','Y','2025-10-23 00:00:00'),(83987,11,'XA2E82','First sacral spinal nerve','Y','2025-10-23 00:00:00'),(83986,11,'XA4HY7','First sacral nerve root','Y','2025-10-23 00:00:00'),(83985,11,'XA98Q1','First rib','Y','2025-10-23 00:00:00'),(83984,11,'XA49F5','First portion of the maxillary artery','Y','2025-10-23 00:00:00'),(83983,11,'XA2GU0','First perforating artery','Y','2025-10-23 00:00:00'),(83982,11,'XA7NJ7','First metatarsophalangeal joint','Y','2025-10-23 00:00:00'),(83981,11,'XA6V29','First metatarsal head region','Y','2025-10-23 00:00:00'),(83980,11,'XA3M83','First metacarpophalangeal joint','Y','2025-10-23 00:00:00'),(83979,11,'XA58X4','First metacarpal','Y','2025-10-23 00:00:00'),(83978,11,'XA3291','First lumbar vertebra','Y','2025-10-23 00:00:00'),(83977,11,'XA1471','First lumbar spinal nerve','Y','2025-10-23 00:00:00'),(83976,11,'XA8VX2','First lumbar nerve root','Y','2025-10-23 00:00:00'),(83975,11,'XA1BR6','First interdigital web space of hand','Y','2025-10-23 00:00:00'),(83974,11,'XA81N1','First interdigital web space of foot','Y','2025-10-23 00:00:00'),(83973,11,'XA2UT9','First dorsal metacarpal artery','Y','2025-10-23 00:00:00'),(83972,11,'JB09.0','First degree perineal laceration during delivery','Y','2025-10-23 00:00:00'),(83971,11,'DB60.0','First degree haemorrhoids','Y','2025-10-23 00:00:00'),(83970,11,'XA9DY6','First cervical spinal nerve','Y','2025-10-23 00:00:00'),(83969,11,'XA53S6','First cervical nerve root','Y','2025-10-23 00:00:00'),(83968,11,'XE1RJ','Firing problem','Y','2025-10-23 00:00:00'),(83967,11,'XE6KQ','Fireworks','Y','2025-10-23 00:00:00'),(83966,11,'XE19W','Fireplace','Y','2025-10-23 00:00:00'),(83965,11,'SE84','Fire-heat factor pattern (TM1)','Y','2025-10-23 00:00:00'),(83964,11,'XM1D37','Firedamp, not elsewhere classified','Y','2025-10-23 00:00:00'),(83963,11,'XE04A','Firearm or related item','Y','2025-10-23 00:00:00'),(83962,11,'XE3NR','Fire, flame or smoke causing injury','Y','2025-10-23 00:00:00'),(83961,11,'XE9DT','Fire, flame causing injury','Y','2025-10-23 00:00:00'),(83960,11,'XE5BQ','Fire truck, fire engine','Y','2025-10-23 00:00:00'),(83959,11,'XE6KX','Fire hydrant','Y','2025-10-23 00:00:00'),(83958,11,'SF69','Fire harassing heart spirit pattern (TM1)','Y','2025-10-23 00:00:00'),(83957,11,'XE7HB','Fire extinguisher','Y','2025-10-23 00:00:00'),(83956,11,'XM65N5','Fire coral venom','Y','2025-10-23 00:00:00'),(83955,11,'XE1VN','Fire brigade pump vehicle as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(83954,11,'XE3M3','Fire brigade pump vehicle as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(83953,11,'XM3UK8','Fire ant venom','Y','2025-10-23 00:00:00'),(83952,11,'XE5T3','Fire','Y','2025-10-23 00:00:00'),(83951,11,'XM2AB6','Fipexide','Y','2025-10-23 00:00:00'),(83950,11,'XM72N6','Fiorinal','Y','2025-10-23 00:00:00'),(83949,11,'XM9K56','Fingolimod','Y','2025-10-23 00:00:00'),(83948,11,'XA2593','Fingers and thumb','Y','2025-10-23 00:00:00'),(83947,11,'XA0EH9','Fingernails','Y','2025-10-23 00:00:00'),(83946,11,'XM8ZW7','Finerenone','Y','2025-10-23 00:00:00'),(83945,11,'MG53.Z','Finding of virus resistant to antimicrobial drugs, unspecified','Y','2025-10-23 00:00:00'),(83944,11,'MG53','Finding of virus resistant to antimicrobial drugs','Y','2025-10-23 00:00:00'),(83943,11,'MA12.4','Finding of steroid agent in blood','Y','2025-10-23 00:00:00'),(83942,11,'MA12.3','Finding of psychotropic drug in blood','Y','2025-10-23 00:00:00'),(83941,11,'MG55.Z','Finding of parasite resistant to antimicrobial drugs, unspecified','Y','2025-10-23 00:00:00'),(83940,11,'MG55','Finding of parasite resistant to antimicrobial drugs','Y','2025-10-23 00:00:00'),(83939,11,'MG5Y','Finding of other microorganism resistant to antimicrobial drugs','Y','2025-10-23 00:00:00'),(83938,11,'MA12.0','Finding of opiate drug in blood','Y','2025-10-23 00:00:00'),(83937,11,'MG56','Finding of microorganism resistant to other multiple antimicrobial drugs','Y','2025-10-23 00:00:00'),(83936,11,'MG5Z','Finding of microorganism resistant to antimicrobial drugs, unspecified','Y','2025-10-23 00:00:00'),(83935,11,'MA12.2','Finding of hallucinogen in blood','Y','2025-10-23 00:00:00'),(83934,11,'MG51.Z','Finding of gram positive bacteria resistant to antimicrobial drugs, unspecified','Y','2025-10-23 00:00:00'),(83933,11,'MG51','Finding of gram positive bacteria resistant to antimicrobial drugs','Y','2025-10-23 00:00:00'),(83932,11,'MG50.Z','Finding of gram negative bacteria resistant to antimicrobial drugs, unspecified','Y','2025-10-23 00:00:00'),(83931,11,'MG50','Finding of gram negative bacteria resistant to antimicrobial drugs','Y','2025-10-23 00:00:00'),(83930,11,'MG54','Finding of fungus resistant to antimicrobial drugs','Y','2025-10-23 00:00:00'),(83929,11,'MA12.1','Finding of cocaine in blood','Y','2025-10-23 00:00:00'),(83928,11,'MG52.Z','Finding of bacteria, neither gram negative nor positive, resistant to antimicrobial drugs, unspecified','Y','2025-10-23 00:00:00'),(83927,11,'MG52','Finding of bacteria, neither gram negative nor positive, resistant to antimicrobial drugs','Y','2025-10-23 00:00:00'),(83926,11,'MA13.1','Finding of alcohol in blood','Y','2025-10-23 00:00:00'),(83925,11,'MA13.0Y','Finding of abnormal level of other specified heavy metals in blood','Y','2025-10-23 00:00:00'),(83924,11,'MA13.0','Finding of abnormal level of heavy metals in blood','Y','2025-10-23 00:00:00'),(83923,11,'XM8P68','Finasteride','Y','2025-10-23 00:00:00'),(83921,11,'XM2T51','Fimasartan','Y','2025-10-23 00:00:00'),(83922,11,'GA17.1','Fimbrial agglutination','Y','2025-10-23 00:00:00'),(83920,11,'XE2YK','Filtration problem','Y','2025-10-23 00:00:00'),(83919,11,'XE65M','Filter component of medical device','Y','2025-10-23 00:00:00'),(83918,11,'1D60.Z','Filovirus disease, virus unspecified','Y','2025-10-23 00:00:00'),(83916,11,'XN6R5','Filovirus','Y','2025-10-23 00:00:00'),(83917,11,'1D60','Filovirus disease','Y','2025-10-23 00:00:00'),(83915,11,'XS5N','Filmy endometriosis','Y','2025-10-23 00:00:00'),(83914,11,'XE5CR','Film component of medical device','Y','2025-10-23 00:00:00'),(83912,11,'XM2RX7','Filix mas','Y','2025-10-23 00:00:00'),(83913,11,'XE49K','Filling problem','Y','2025-10-23 00:00:00'),(83910,11,'1F66.Z','Filariasis, unspecified','Y','2025-10-23 00:00:00'),(83911,11,'XM93Q2','Filgrastim','Y','2025-10-23 00:00:00'),(83909,11,'1F66.30','Filariasis due to Wuchereria bancrofti','Y','2025-10-23 00:00:00'),(83908,11,'1F66.32','Filariasis due to Brugia timori','Y','2025-10-23 00:00:00'),(83907,11,'1F66.2','Filariasis due to Brugia species','Y','2025-10-23 00:00:00'),(83906,11,'1F66.31','Filariasis due to Brugia malayi','Y','2025-10-23 00:00:00'),(83905,11,'1F66','Filariasis','Y','2025-10-23 00:00:00'),(83904,11,'XA3VM6','Fifth toenail','Y','2025-10-23 00:00:00'),(83903,11,'XA42W4','Fifth toe','Y','2025-10-23 00:00:00'),(83902,11,'XA3PH5','Fifth thoracic vertebra','Y','2025-10-23 00:00:00'),(83901,11,'XA48M5','Fifth thoracic spinal nerve','Y','2025-10-23 00:00:00'),(83900,11,'XA8DN4','Fifth thoracic nerve root','Y','2025-10-23 00:00:00'),(83899,11,'XA73B4','Fifth sacral spinal nerve','Y','2025-10-23 00:00:00'),(83898,11,'XA7BN5','Fifth sacral nerve root','Y','2025-10-23 00:00:00'),(83897,11,'XA31L8','Fifth rib','Y','2025-10-23 00:00:00'),(83896,11,'XA5A23','Fifth metatarsophalangeal joint','Y','2025-10-23 00:00:00'),(83895,11,'XA05N7','Fifth metatarsal head region','Y','2025-10-23 00:00:00'),(83894,11,'XA7KA0','Fifth metacarpophalangeal joint','Y','2025-10-23 00:00:00'),(83893,11,'XA88S1','Fifth metacarpal','Y','2025-10-23 00:00:00'),(83892,11,'XA9641','Fifth lumbar vertebra','Y','2025-10-23 00:00:00'),(83891,11,'XA7VL6','Fifth lumbar spinal nerve','Y','2025-10-23 00:00:00'),(83890,11,'XA5W91','Fifth lumbar nerve root','Y','2025-10-23 00:00:00'),(83889,11,'XA9C12','Fifth cervical vertebra','Y','2025-10-23 00:00:00'),(83888,11,'XA06Q1','Fifth cervical spinal nerve','Y','2025-10-23 00:00:00'),(83887,11,'XA87U1','Fifth cervical nerve root','Y','2025-10-23 00:00:00'),(83886,11,'XM0FD5','Fidaxomicin','Y','2025-10-23 00:00:00'),(83885,11,'XA5G97','Fibular shaft','Y','2025-10-23 00:00:00'),(83884,11,'LB9A.2','Fibular hemimelia','Y','2025-10-23 00:00:00'),(83883,11,'XA0K77','Fibular head','Y','2025-10-23 00:00:00'),(83882,11,'XA4YJ0','Fibular collateral ligament','Y','2025-10-23 00:00:00'),(83881,11,'XA9GM6','Fibular artery','Y','2025-10-23 00:00:00'),(83880,11,'XA3KT5','Fibula','Y','2025-10-23 00:00:00'),(83879,11,'XH54S8','Fibrous mesothelioma, malignant','Y','2025-10-23 00:00:00'),(83878,11,'XH2VV6','Fibrous mesothelioma, benign','Y','2025-10-23 00:00:00'),(83877,11,'XH5ZC7','Fibrous meningioma','Y','2025-10-23 00:00:00'),(83876,11,'FB80.0','Fibrous dysplasia of bone','Y','2025-10-23 00:00:00'),(83875,11,'XH5FY2','Fibrous dysplasia','Y','2025-10-23 00:00:00'),(83874,11,'XA8VH7','Fibrous cartilage','Y','2025-10-23 00:00:00'),(83873,11,'CB25','Fibrothorax','Y','2025-10-23 00:00:00'),(83872,11,'EL73.6','Fibrosis or scarring following cosmetic procedure','Y','2025-10-23 00:00:00'),(83871,11,'3B81.9','Fibrosis of spleen','Y','2025-10-23 00:00:00'),(83870,11,'CB22.0','Fibrosing mediastinitis','Y','2025-10-23 00:00:00'),(83869,11,'XH4EP1','Fibrosarcoma, NOS','Y','2025-10-23 00:00:00'),(83868,11,'LB20.00','Fibropolycystic liver disease','Y','2025-10-23 00:00:00'),(83867,11,'MF81','Fibronectin glomerulopathy','Y','2025-10-23 00:00:00'),(83866,11,'XH6LT0','Fibromyxosarcoma','Y','2025-10-23 00:00:00'),(83865,11,'XH5XQ3','Fibromyxoma','Y','2025-10-23 00:00:00'),(83864,11,'XH0PH8','Fibromyxolipoma','Y','2025-10-23 00:00:00'),(83863,11,'XH6G98','Fibromatosis-like metaplastic carcinoma','Y','2025-10-23 00:00:00'),(83862,11,'2F30.4','Fibromatosis of breast','Y','2025-10-23 00:00:00'),(83861,11,'XH8E66','Fibroma, NOS','Y','2025-10-23 00:00:00'),(83860,11,'XH0WB3','Fibroma of tendon sheath','Y','2025-10-23 00:00:00'),(83859,11,'XH2SJ1','Fibrolipoma','Y','2025-10-23 00:00:00'),(83858,11,'EK71.0','Fibroepithelial polyp of skin','Y','2025-10-23 00:00:00'),(83857,11,'FB31.1','Fibrodysplasia ossificans progressiva','Y','2025-10-23 00:00:00'),(83855,11,'XH29N8','Fibrochondrosarcoma','Y','2025-10-23 00:00:00'),(83856,11,'GB20.0','Fibrocystic change','Y','2025-10-23 00:00:00'),(83854,11,'FB51.3','Fibroblastic rheumatism','Y','2025-10-23 00:00:00'),(83853,11,'2B31.7','Fibroblastic reticular cell tumour','Y','2025-10-23 00:00:00'),(83852,11,'XH0124','Fibroblastic reticular cell tumour','Y','2025-10-23 00:00:00'),(83851,11,'XH23T4','Fibroblastic osteosarcoma','Y','2025-10-23 00:00:00'),(83850,11,'2B53.Z','Fibroblastic or myofibroblastic tumour, primary site, unspecified','Y','2025-10-23 00:00:00'),(83849,11,'2B53','Fibroblastic or myofibroblastic tumour, primary site','Y','2025-10-23 00:00:00'),(83848,11,'2B53.1','Fibroblastic or myofibroblastic tumour of skin','Y','2025-10-23 00:00:00'),(83847,11,'XH6R46','Fibroblastic liposarcoma','Y','2025-10-23 00:00:00'),(83846,11,'FB51.Z','Fibroblastic disorders, unspecified','Y','2025-10-23 00:00:00'),(83845,11,'FB51','Fibroblastic disorders','Y','2025-10-23 00:00:00'),(83844,11,'XM4RQ4','Fibroblast growth factor receptor tyrosine kinase inhibitors','Y','2025-10-23 00:00:00'),(83843,11,'GB20.1','Fibroadenosis of breast','Y','2025-10-23 00:00:00'),(83842,11,'XH9HE2','Fibroadenoma, NOS','Y','2025-10-23 00:00:00'),(83841,11,'2F30.5','Fibroadenoma of breast','Y','2025-10-23 00:00:00'),(83840,11,'XM3QV9','Fibrinolysis inhibitor','Y','2025-10-23 00:00:00'),(83839,11,'XM32Y3','Fibrinolysin and desoxyribonuclease','Y','2025-10-23 00:00:00'),(83838,11,'XM4XM2','Fibrinolysin','Y','2025-10-23 00:00:00'),(83837,11,'XH0RM6','Fibrin-associated EBV+ diffuse large B-cell lymphoma','Y','2025-10-23 00:00:00'),(83836,11,'XM9JK6','Fibrin','Y','2025-10-23 00:00:00'),(83835,11,'XH6C35','Fibrillary astrocytoma','Y','2025-10-23 00:00:00'),(83834,11,'XM1KP1','Fibrates','Y','2025-10-23 00:00:00'),(83833,11,'XM8SN2','Fiberglass','Y','2025-10-23 00:00:00'),(83832,11,'XM1RJ7','Fiber, dietary','Y','2025-10-23 00:00:00'),(83831,11,'XE15J','Fiber component of medical device','Y','2025-10-23 00:00:00'),(83830,11,'XM1586','Fexofenadine','Y','2025-10-23 00:00:00'),(83829,11,'XM5VX1','Fexinidazole','Y','2025-10-23 00:00:00'),(83828,11,'XM2Y08','Fexapotide','Y','2025-10-23 00:00:00'),(83827,11,'MG26','Fever of other or unknown origin','Y','2025-10-23 00:00:00'),(83826,11,'KD11','Fever of newborn','Y','2025-10-23 00:00:00'),(83825,11,'KA05.Z','Fetus or newborn affected or suspected to be affected by unspecified complications of labour or delivery','Y','2025-10-23 00:00:00'),(83824,11,'KA05.Y','Fetus or newborn affected or suspected to be affected by other specified complications of labour or delivery','Y','2025-10-23 00:00:00'),(83823,11,'KA03.3','Fetus or newborn affected by vasa praevia','Y','2025-10-23 00:00:00'),(83822,11,'KA06.Z','Fetus or newborn affected by unspecified noxious influence transmitted via placenta or breast milk','Y','2025-10-23 00:00:00'),(83821,11,'KA0Z','Fetus or newborn affected by unspecified maternal factors or by complications of pregnancy, labour or delivery','Y','2025-10-23 00:00:00'),(83820,11,'KA00.Z','Fetus or newborn affected by unspecified maternal condition that may be unrelated to present pregnancy','Y','2025-10-23 00:00:00'),(83819,11,'KA01.Z','Fetus or newborn affected by unspecified maternal complication of pregnancy','Y','2025-10-23 00:00:00'),(83818,11,'KA03.Z','Fetus or newborn affected by unspecified complication of umbilical cord','Y','2025-10-23 00:00:00'),(83817,11,'KA02.Z','Fetus or newborn affected by unspecified complication of placenta','Y','2025-10-23 00:00:00'),(83816,11,'KA04.Z','Fetus or newborn affected by unspecified abnormality of membranes','Y','2025-10-23 00:00:00'),(83815,11,'KA03.4','Fetus or newborn affected by traumatic injury of the umbilical cord','Y','2025-10-23 00:00:00'),(83814,11,'KA00.A','Fetus or newborn affected by surgical procedure on mother','Y','2025-10-23 00:00:00'),(83813,11,'KA03.20','Fetus or newborn affected by short umbilical cord','Y','2025-10-23 00:00:00'),(83812,11,'KA03.0','Fetus or newborn affected by prolapsed cord','Y','2025-10-23 00:00:00'),(83811,11,'KA01.1','Fetus or newborn affected by premature rupture of membranes','Y','2025-10-23 00:00:00'),(83810,11,'KA05.5','Fetus or newborn affected by precipitate delivery','Y','2025-10-23 00:00:00'),(83809,11,'KA01.3','Fetus or newborn affected by polyhydramnios','Y','2025-10-23 00:00:00'),(83808,11,'KA02.4','Fetus or newborn affected by placental transfusion syndromes','Y','2025-10-23 00:00:00'),(83807,11,'KA02.1','Fetus or newborn affected by placental oedema or large placenta','Y','2025-10-23 00:00:00'),(83806,11,'KA02.3','Fetus or newborn affected by placental insufficiency or small placenta','Y','2025-10-23 00:00:00'),(83805,11,'KA02.2','Fetus or newborn affected by placental infarction','Y','2025-10-23 00:00:00'),(83804,11,'KA02.0','Fetus or newborn affected by placenta praevia','Y','2025-10-23 00:00:00'),(83803,11,'KA00.4','Fetus or newborn affected by periodontal disease in mother','Y','2025-10-23 00:00:00'),(83802,11,'KA06.Y','Fetus or newborn affected by other specified noxious influence transmitted via placenta or breast milk','Y','2025-10-23 00:00:00'),(83801,11,'KA00.Y','Fetus or newborn affected by other specified maternal condition that may be unrelated to present pregnancy','Y','2025-10-23 00:00:00'),(83800,11,'KA01.Y','Fetus or newborn affected by other specified maternal complication of pregnancy','Y','2025-10-23 00:00:00'),(83799,11,'KA03.Y','Fetus or newborn affected by other specified complication of umbilical cord','Y','2025-10-23 00:00:00'),(83798,11,'KA02.Y','Fetus or newborn affected by other specified complication of placenta','Y','2025-10-23 00:00:00'),(83797,11,'KA04.Y','Fetus or newborn affected by other specified abnormality of membranes','Y','2025-10-23 00:00:00'),(83796,11,'KA05.1','Fetus or newborn affected by other malpresentation, malposition or disproportion during labour or delivery','Y','2025-10-23 00:00:00'),(83795,11,'KA03.1','Fetus or newborn affected by other compression of umbilical cord','Y','2025-10-23 00:00:00'),(83794,11,'KA04','Fetus or newborn affected by other abnormalities of membranes','Y','2025-10-23 00:00:00'),(83793,11,'KA01.2','Fetus or newborn affected by oligohydramnios','Y','2025-10-23 00:00:00'),(83792,11,'KA06','Fetus or newborn affected by noxious influences transmitted via placenta or breast milk','Y','2025-10-23 00:00:00'),(83791,11,'KA01.5','Fetus or newborn affected by multiple pregnancy','Y','2025-10-23 00:00:00'),(83790,11,'KA06.1','Fetus or newborn affected by maternal use of tobacco','Y','2025-10-23 00:00:00'),(83789,11,'KA06.4','Fetus or newborn affected by maternal use of nutritional chemical substances','Y','2025-10-23 00:00:00'),(83788,11,'KA06.3','Fetus or newborn affected by maternal use of drugs of addiction','Y','2025-10-23 00:00:00'),(83787,11,'KA06.2','Fetus or newborn affected by maternal use of alcohol','Y','2025-10-23 00:00:00'),(83786,11,'KA00.5','Fetus or newborn affected by maternal respiratory diseases','Y','2025-10-23 00:00:00'),(83785,11,'KA00.2','Fetus or newborn affected by maternal renal or urinary tract diseases','Y','2025-10-23 00:00:00'),(83784,11,'KA00.61','Fetus or newborn affected by maternal overweight or obesity','Y','2025-10-23 00:00:00'),(83783,11,'KA00.6Z','Fetus or newborn affected by maternal nutritional disorders, unspecified','Y','2025-10-23 00:00:00'),(83782,11,'KA00.6','Fetus or newborn affected by maternal nutritional disorders','Y','2025-10-23 00:00:00'),(83781,11,'KA00.60','Fetus or newborn affected by maternal malnutrition','Y','2025-10-23 00:00:00'),(83780,11,'KA00.8','Fetus or newborn affected by maternal injury','Y','2025-10-23 00:00:00'),(83779,11,'KA00.3','Fetus or newborn affected by maternal infectious diseases','Y','2025-10-23 00:00:00'),(83778,11,'KA00.0','Fetus or newborn affected by maternal hypertensive disorders','Y','2025-10-23 00:00:00'),(83777,11,'KA06.5','Fetus or newborn affected by maternal exposure to environmental chemical substances','Y','2025-10-23 00:00:00'),(83776,11,'KA01.6','Fetus or newborn affected by maternal death','Y','2025-10-23 00:00:00'),(83775,11,'KA00','Fetus or newborn affected by maternal conditions that may be unrelated to present pregnancy','Y','2025-10-23 00:00:00'),(83774,11,'KA01','Fetus or newborn affected by maternal complications of pregnancy','Y','2025-10-23 00:00:00'),(83773,11,'KA00.9','Fetus or newborn affected by maternal chemotherapy','Y','2025-10-23 00:00:00'),(83772,11,'KA01.8','Fetus or newborn affected by maternal blood loss','Y','2025-10-23 00:00:00'),(83771,11,'KA06.0','Fetus or newborn affected by maternal anaesthesia or analgesia in pregnancy, labour or delivery','Y','2025-10-23 00:00:00'),(83770,11,'KA00.B','Fetus or newborn affected by maternal anaemia','Y','2025-10-23 00:00:00'),(83769,11,'KA01.7','Fetus or newborn affected by malpresentation before labour','Y','2025-10-23 00:00:00'),(83768,11,'KA03.21','Fetus or newborn affected by long umbilical cord','Y','2025-10-23 00:00:00'),(83767,11,'KA01.0','Fetus or newborn affected by incompetence of cervix uteri','Y','2025-10-23 00:00:00'),(83766,11,'KA00.1','Fetus or newborn affected by gestational oedema or proteinuria without hypertension','Y','2025-10-23 00:00:00'),(83765,11,'KA05.2','Fetus or newborn affected by forceps delivery','Y','2025-10-23 00:00:00'),(83764,11,'KD39.2','Fetus or newborn affected by fetal blood sampling','Y','2025-10-23 00:00:00'),(83763,11,'KA01.4','Fetus or newborn affected by ectopic pregnancy','Y','2025-10-23 00:00:00'),(83762,11,'KA05.3','Fetus or newborn affected by delivery by vacuum extractor','Y','2025-10-23 00:00:00'),(83761,11,'KA03','Fetus or newborn affected by complications of umbilical cord','Y','2025-10-23 00:00:00'),(83760,11,'KA02','Fetus or newborn affected by complications of placenta','Y','2025-10-23 00:00:00'),(83759,11,'KD39.4','Fetus or newborn affected by complications of intrauterine fetal surgery','Y','2025-10-23 00:00:00'),(83758,11,'KD39.3','Fetus or newborn affected by complications of fetal surgery','Y','2025-10-23 00:00:00'),(83757,11,'KD39.1','Fetus or newborn affected by chorionic villous sampling','Y','2025-10-23 00:00:00'),(83756,11,'KA04.0','Fetus or newborn affected by chorioamnionitis','Y','2025-10-23 00:00:00'),(83755,11,'KA05','Fetus or newborn affected by certain complications of labour or delivery','Y','2025-10-23 00:00:00'),(83754,11,'KA05.4','Fetus or newborn affected by caesarean delivery','Y','2025-10-23 00:00:00'),(83753,11,'KA05.0','Fetus or newborn affected by breech delivery or extraction','Y','2025-10-23 00:00:00'),(83752,11,'KA04.1','Fetus or newborn affected by amniotic Band Syndrome','Y','2025-10-23 00:00:00'),(83751,11,'KD39.0','Fetus or newborn affected by amniocentesis','Y','2025-10-23 00:00:00'),(83750,11,'KA05.7Z','Fetus or newborn affected by abnormality in fetal intrauterine heart rate or rhythm, unspecified','Y','2025-10-23 00:00:00'),(83749,11,'KA05.7','Fetus or newborn affected by abnormality in fetal intrauterine heart rate or rhythm','Y','2025-10-23 00:00:00'),(83748,11,'KA03.2Z','Fetus or newborn affected by abnormalities of umbilical cord length, unspecified','Y','2025-10-23 00:00:00'),(83747,11,'KA03.2','Fetus or newborn affected by abnormalities of umbilical cord length','Y','2025-10-23 00:00:00'),(83746,11,'KA05.6','Fetus or newborn affected by abnormal uterine contractions','Y','2025-10-23 00:00:00'),(83745,11,'KA00.7','Fetus or newborn affected by abnormal maternal chemistry','Y','2025-10-23 00:00:00'),(83744,11,'KA05.71','Fetus and newborn affected by abnormality in fetal intrauterine heart rate or rhythm during labour','Y','2025-10-23 00:00:00'),(83742,11,'XA23B0','Fetus','Y','2025-10-23 00:00:00'),(83743,11,'KA05.70','Fetus and newborn affected by abnormality in fetal intrauterine heart rate or rhythm before onset of labour','Y','2025-10-23 00:00:00'),(83741,11,'XM15K3','Fetoxilate','Y','2025-10-23 00:00:00'),(83740,11,'LD2F.03','Fetal Valproate Spectrum Disorder','Y','2025-10-23 00:00:00'),(83739,11,'XH4729','Fetal rhabdomyoma','Y','2025-10-23 00:00:00'),(83738,11,'XA85H6','Fetal membranes','Y','2025-10-23 00:00:00'),(83737,11,'LB31.2','Fetal lower urinary tract obstruction','Y','2025-10-23 00:00:00'),(83736,11,'KA20.2','Fetal intrauterine malnutrition without mention of small for gestational age','Y','2025-10-23 00:00:00'),(83735,11,'LD2F.01','Fetal hydantoin syndrome','Y','2025-10-23 00:00:00'),(83734,11,'KD3B','Fetal death, cause not specified','Y','2025-10-23 00:00:00'),(83733,11,'KA80.Z','Fetal blood loss, unspecified','Y','2025-10-23 00:00:00'),(83732,11,'KA80.0','Fetal blood loss from vasa praevia','Y','2025-10-23 00:00:00'),(83731,11,'KA80.1','Fetal blood loss from ruptured cord','Y','2025-10-23 00:00:00'),(83730,11,'KA80.2','Fetal blood loss from placenta','Y','2025-10-23 00:00:00'),(83728,11,'KA80','Fetal blood loss','Y','2025-10-23 00:00:00'),(83729,11,'KA80.5','Fetal blood loss from cut end of co-twin cord','Y','2025-10-23 00:00:00'),(83727,11,'LD2F.00','Fetal alcohol syndrome','Y','2025-10-23 00:00:00'),(83725,11,'XM4265','Fesoterodine','Y','2025-10-23 00:00:00'),(83726,11,'XH5P16','Fetal adenocarcinoma','Y','2025-10-23 00:00:00'),(83723,11,'XM10X3','Fertilizer','Y','2025-10-23 00:00:00'),(83724,11,'XM33C2','ferumoxsil','Y','2025-10-23 00:00:00'),(83722,11,'XE69F','Ferry used for short trips across closed waters','Y','2025-10-23 00:00:00'),(83721,11,'XM5EU1','Ferrovanadium','Y','2025-10-23 00:00:00'),(83719,11,'XM3SQ1','Ferrous sulfate','Y','2025-10-23 00:00:00'),(83720,11,'XM0FD3','Ferrous tartrate','Y','2025-10-23 00:00:00'),(83718,11,'XM8SK2','Ferrous succinate','Y','2025-10-23 00:00:00'),(83717,11,'XM8L47','Ferrous salt','Y','2025-10-23 00:00:00'),(83716,11,'XM2LA7','Ferrous phosphate','Y','2025-10-23 00:00:00'),(83715,11,'XM1BG1','Ferrous iodine','Y','2025-10-23 00:00:00'),(83714,11,'XM7E86','Ferrous glycine sulfate','Y','2025-10-23 00:00:00'),(83713,11,'XM3N76','Ferrous gluconate','Y','2025-10-23 00:00:00'),(83712,11,'XM7EW8','Ferrous fumerate, gluconate, lactate, salt, sulfate (medicinal)','Y','2025-10-23 00:00:00'),(83711,11,'XM04C6','Ferrous fumarate','Y','2025-10-23 00:00:00'),(83710,11,'XM6UB4','Ferrous chloride','Y','2025-10-23 00:00:00'),(83709,11,'XM2865','Ferrous carbonate','Y','2025-10-23 00:00:00'),(83708,11,'XM8638','Ferrous aspartate','Y','2025-10-23 00:00:00'),(83707,11,'XM0S20','Ferrous ascorbate','Y','2025-10-23 00:00:00'),(83706,11,'XM0216','Ferrous amino acid complex','Y','2025-10-23 00:00:00'),(83705,11,'XM1018','Ferropolimaler','Y','2025-10-23 00:00:00'),(83704,11,'XM3SU9','Ferrodextrane','Y','2025-10-23 00:00:00'),(83703,11,'XM8GJ1','Ferrocholinate','Y','2025-10-23 00:00:00'),(83702,11,'XM55G4','Ferritin','Y','2025-10-23 00:00:00'),(83701,11,'XM84N5','ferristene','Y','2025-10-23 00:00:00'),(83700,11,'XM7FV2','Ferric sodium citrate','Y','2025-10-23 00:00:00'),(83699,11,'XM2C90','Ferric pyrophosphate','Y','2025-10-23 00:00:00'),(83698,11,'XM8NX7','Ferric proteinsuccinylate','Y','2025-10-23 00:00:00'),(83697,11,'XM5AW9','Ferric oxide polymaltose complexes','Y','2025-10-23 00:00:00'),(83696,11,'XM4J31','Ferric maltol','Y','2025-10-23 00:00:00'),(83695,11,'XM9W49','Ferric hydroxide polymaltose','Y','2025-10-23 00:00:00'),(83694,11,'XM60G9','Ferric hydroxide colloidal','Y','2025-10-23 00:00:00'),(83693,11,'XM4HF0','Ferric hydroxide','Y','2025-10-23 00:00:00'),(83692,11,'XM8NS1','Ferric citrate','Y','2025-10-23 00:00:00'),(83691,11,'XM5DJ4','Ferric chloride','Y','2025-10-23 00:00:00'),(83690,11,'XM29E1','Ferric ammonium citrate','Y','2025-10-23 00:00:00'),(83689,11,'XM5L86','Ferric acetyl transferrin','Y','2025-10-23 00:00:00'),(83688,11,'XM3HU5','ferric (59Fe) citrate','Y','2025-10-23 00:00:00'),(83687,11,'XM9Y58','Fer de lance snake venom','Y','2025-10-23 00:00:00'),(83686,11,'XE5N3','Fer de lance','Y','2025-10-23 00:00:00'),(83685,11,'XM37T1','Feprazone','Y','2025-10-23 00:00:00'),(83684,11,'XM7995','Fenyramidol','Y','2025-10-23 00:00:00'),(83683,11,'XM9JZ0','Fenvalerate','Y','2025-10-23 00:00:00'),(83682,11,'XM08K5','Fentonium','Y','2025-10-23 00:00:00'),(83681,11,'XM4J78','Fenticonazole','Y','2025-10-23 00:00:00'),(83680,11,'XM9K22','Fenticlor','Y','2025-10-23 00:00:00'),(83679,11,'XM0562','Fentichlor','Y','2025-10-23 00:00:00'),(83678,11,'XM2AX1','Fentiazac','Y','2025-10-23 00:00:00'),(83676,11,'XM76M8','Fentanyl','Y','2025-10-23 00:00:00'),(83677,11,'XM7SU5','Fenthion','Y','2025-10-23 00:00:00'),(83674,11,'XM6CD1','Fenquizone','Y','2025-10-23 00:00:00'),(83675,11,'XM42T9','Fenspiride','Y','2025-10-23 00:00:00'),(83673,11,'XM1145','Fenproporex','Y','2025-10-23 00:00:00'),(83672,11,'XM1Z58','Fenpropathrin','Y','2025-10-23 00:00:00'),(83671,11,'XM0D83','Fenpiverinium','Y','2025-10-23 00:00:00'),(83670,11,'XM49K4','Fenpiprane','Y','2025-10-23 00:00:00'),(83669,11,'XM5921','Fenozolone','Y','2025-10-23 00:00:00'),(83667,11,'XM3CZ9','Fenoverine','Y','2025-10-23 00:00:00'),(83668,11,'XM7AV8','Fenoxazoline','Y','2025-10-23 00:00:00'),(83666,11,'XM2HS2','Fenoterol','Y','2025-10-23 00:00:00'),(83665,11,'XM7BS7','Fenoprofen','Y','2025-10-23 00:00:00'),(83664,11,'XM91X4','Fenoldopam','Y','2025-10-23 00:00:00'),(83663,11,'XM73E0','Fenofibrate','Y','2025-10-23 00:00:00'),(83661,11,'XM85Z4','Fenflumizol','Y','2025-10-23 00:00:00'),(83662,11,'XM5TZ8','Fenfluramine','Y','2025-10-23 00:00:00'),(83660,11,'XM8N26','Fenetylline','Y','2025-10-23 00:00:00'),(83659,11,'XM5BR3','Fendiline','Y','2025-10-23 00:00:00'),(83658,11,'XE7FP','Fence, gate','Y','2025-10-23 00:00:00'),(83656,11,'XM2154','Fencamfamin','Y','2025-10-23 00:00:00'),(83657,11,'XE3BP','Fence','Y','2025-10-23 00:00:00'),(83655,11,'XM4W51','Fenbufen','Y','2025-10-23 00:00:00'),(83654,11,'XM5XC2','Fenbendazole','Y','2025-10-23 00:00:00'),(83653,11,'XM23G7','Fenamisal','Y','2025-10-23 00:00:00'),(83651,11,'XM3E93','Fenalcomine','Y','2025-10-23 00:00:00'),(83652,11,'XM9DC7','Fenamates','Y','2025-10-23 00:00:00'),(83650,11,'XA6BA0','Femur','Y','2025-10-23 00:00:00'),(83649,11,'XM24M0','Femoxetine','Y','2025-10-23 00:00:00'),(83648,11,'XA3QX9','Femoral vein','Y','2025-10-23 00:00:00'),(83647,11,'XA4AF2','Femoral shaft','Y','2025-10-23 00:00:00'),(83646,11,'XA11D4','Femoral nerve','Y','2025-10-23 00:00:00'),(83645,11,'XA1673','Femoral neck','Y','2025-10-23 00:00:00'),(83644,11,'XA5130','Femoral lymph node','Y','2025-10-23 00:00:00'),(83643,11,'DD52','Femoral hernia','Y','2025-10-23 00:00:00'),(83642,11,'XA96S5','Femoral head','Y','2025-10-23 00:00:00'),(83641,11,'XA2BJ0','Femoral epiphysis','Y','2025-10-23 00:00:00'),(83640,11,'XA6UG0','Femoral condyle','Y','2025-10-23 00:00:00'),(83639,11,'XA2JF3','Femoral artery','Y','2025-10-23 00:00:00'),(83638,11,'LB9A.8','Femoral agenesis or hypoplasia','Y','2025-10-23 00:00:00'),(83637,11,'HA01.0Z','Female sexual arousal dysfunction, unspecified','Y','2025-10-23 00:00:00'),(83636,11,'HA01.01','Female sexual arousal dysfunction, lifelong, situational','Y','2025-10-23 00:00:00'),(83635,11,'HA01.00','Female sexual arousal dysfunction, lifelong, generalised','Y','2025-10-23 00:00:00'),(83634,11,'HA01.03','Female sexual arousal dysfunction, acquired, situational','Y','2025-10-23 00:00:00'),(83633,11,'HA01.02','Female sexual arousal dysfunction, acquired, generalised','Y','2025-10-23 00:00:00'),(83632,11,'HA01.0','Female sexual arousal dysfunction','Y','2025-10-23 00:00:00'),(83631,11,'SC4Z','Female reproductive system disorders (TM1) (including childbirth), unspecified','Y','2025-10-23 00:00:00'),(83630,11,'GA05.2','Female pelvic peritonitis, unspecified','Y','2025-10-23 00:00:00'),(83629,11,'GA34.2Z','Female pelvic pain, unspecified','Y','2025-10-23 00:00:00'),(83628,11,'GA34.Z','Female pelvic pain associated with genital organs or menstrual cycle, unspecified','Y','2025-10-23 00:00:00'),(83627,11,'GA34','Female pelvic pain associated with genital organs or menstrual cycle','Y','2025-10-23 00:00:00'),(83626,11,'GA34.2','Female pelvic pain','Y','2025-10-23 00:00:00'),(83625,11,'GA05.Z','Female pelvic inflammatory diseases, unspecified','Y','2025-10-23 00:00:00'),(83624,11,'GA05','Female pelvic inflammatory diseases','Y','2025-10-23 00:00:00'),(83623,11,'GC4Z','Female pelvic floor dysfunction, unspecified','Y','2025-10-23 00:00:00'),(83622,11,'ED70.1','Female pattern hair loss','Y','2025-10-23 00:00:00'),(83620,11,'GA31','Female infertility','Y','2025-10-23 00:00:00'),(83621,11,'GA31.Z','Female infertility without specification whether primary or secondary','Y','2025-10-23 00:00:00'),(83618,11,'GA34.6','Female genital pain','Y','2025-10-23 00:00:00'),(83619,11,'GC04.13','Female genital tract-skin fistulae','Y','2025-10-23 00:00:00'),(83617,11,'XA2GU7','Female genital organs','Y','2025-10-23 00:00:00'),(83616,11,'GC51.Z','Female Genital Mutilation, unspecified','Y','2025-10-23 00:00:00'),(83615,11,'GC51.3','Female Genital Mutilation Type 4','Y','2025-10-23 00:00:00'),(83614,11,'GC51.21','Female Genital Mutilation Type 3b','Y','2025-10-23 00:00:00'),(83613,11,'GC51.20','Female Genital Mutilation Type 3a','Y','2025-10-23 00:00:00'),(83612,11,'GC51.2Z','Female Genital Mutilation Type 3, unspecified','Y','2025-10-23 00:00:00'),(83611,11,'GC51.2','Female Genital Mutilation Type 3','Y','2025-10-23 00:00:00'),(83610,11,'GC51.12','Female Genital Mutilation Type 2c','Y','2025-10-23 00:00:00'),(83609,11,'GC51.11','Female Genital Mutilation Type 2b','Y','2025-10-23 00:00:00'),(83608,11,'GC51.10','Female Genital Mutilation Type 2a','Y','2025-10-23 00:00:00'),(83607,11,'GC51.1Z','Female Genital Mutilation Type 2, unspecified','Y','2025-10-23 00:00:00'),(83605,11,'GC51.01','Female Genital Mutilation Type 1b','Y','2025-10-23 00:00:00'),(83606,11,'GC51.1','Female Genital Mutilation Type 2','Y','2025-10-23 00:00:00'),(83604,11,'GC51.00','Female Genital Mutilation Type 1a','Y','2025-10-23 00:00:00'),(83603,11,'GC51.0Z','Female Genital Mutilation Type 1, unspecified','Y','2025-10-23 00:00:00'),(83601,11,'GC51','Female Genital Mutilation','Y','2025-10-23 00:00:00'),(83602,11,'GC51.0','Female Genital Mutilation Type 1','Y','2025-10-23 00:00:00'),(83599,11,'XA95A3','Female gamete','Y','2025-10-23 00:00:00'),(83600,11,'XA9TN5','Female genital lymph node','Y','2025-10-23 00:00:00'),(83598,11,'XA9PG6','Female external genitalia','Y','2025-10-23 00:00:00'),(83596,11,'XM3MT8','Felypressin','Y','2025-10-23 00:00:00'),(83597,11,'XX2V25','Female','Y','2025-10-23 00:00:00'),(83593,11,'XM15W2','Felbamate','Y','2025-10-23 00:00:00'),(83594,11,'XM8XZ0','Felbinac','Y','2025-10-23 00:00:00'),(83595,11,'XM1BZ0','Felodipine','Y','2025-10-23 00:00:00'),(83591,11,'MF50.64','Feeling of incomplete bladder emptying','Y','2025-10-23 00:00:00'),(83592,11,'MB24.B','Feelings of guilt','Y','2025-10-23 00:00:00'),(83590,11,'MG25','Feeling ill','Y','2025-10-23 00:00:00'),(83588,11,'KD32','Feeding problems of newborn','Y','2025-10-23 00:00:00'),(83589,11,'KD32.Z','Feeding problems of newborn, unspecified','Y','2025-10-23 00:00:00'),(83586,11,'MG43.31','Feeding problem of child','Y','2025-10-23 00:00:00'),(83587,11,'MG43.30','Feeding problem of infant','Y','2025-10-23 00:00:00'),(83584,11,'6B8Z','Feeding or eating disorders, unspecified','Y','2025-10-23 00:00:00'),(83585,11,'MG43.32','Feeding problem of adult','Y','2025-10-23 00:00:00'),(83583,11,'MG43.3Z','Feeding difficulties, unspecified','Y','2025-10-23 00:00:00'),(83581,11,'XM0SA9','Fedrilate','Y','2025-10-23 00:00:00'),(83582,11,'MG43.3','Feeding difficulties','Y','2025-10-23 00:00:00'),(83579,11,'XM6CL0','Fecal softener','Y','2025-10-23 00:00:00'),(83580,11,'XM28Z0','Fedratinib','Y','2025-10-23 00:00:00'),(83578,11,'XM0K04','Febuxostat','Y','2025-10-23 00:00:00'),(83577,11,'8A63.0','Febrile seizures','Y','2025-10-23 00:00:00'),(83576,11,'XM2339','Febarbamate','Y','2025-10-23 00:00:00'),(83575,11,'MG24.C','Fear of urinary disease','Y','2025-10-23 00:00:00'),(83574,11,'MG24.G','Fear of sexually transmitted disease male','Y','2025-10-23 00:00:00'),(83573,11,'MG24.E','Fear of sexually transmitted disease female','Y','2025-10-23 00:00:00'),(83572,11,'MG24.A','Fear of respiratory disease','Y','2025-10-23 00:00:00'),(83571,11,'MG24.Y','Fear of other specified disease','Y','2025-10-23 00:00:00'),(83570,11,'MG24.9','Fear of neurological disease','Y','2025-10-23 00:00:00'),(83569,11,'MG24.8','Fear of musculoskeletal disease','Y','2025-10-23 00:00:00'),(83568,11,'MG24.J','Fear of mental disorder','Y','2025-10-23 00:00:00'),(83567,11,'MG24.6','Fear of hypertension','Y','2025-10-23 00:00:00'),(83566,11,'MG24.1','Fear of human immunodeficiency virus','Y','2025-10-23 00:00:00'),(83565,11,'MG24.5','Fear of heart disease','Y','2025-10-23 00:00:00'),(83564,11,'MG24.2','Fear of haematological disease','Y','2025-10-23 00:00:00'),(83563,11,'MG24.H','Fear of genital disease male','Y','2025-10-23 00:00:00'),(83562,11,'MG24.02','Fear of genital cancer male','Y','2025-10-23 00:00:00'),(83560,11,'MG24.4','Fear of eye disease','Y','2025-10-23 00:00:00'),(83561,11,'MG24.F','Fear of female genital or breast disease','Y','2025-10-23 00:00:00'),(83559,11,'MG24.B','Fear of endocrine, metabolic or nutritional disease','Y','2025-10-23 00:00:00'),(83558,11,'MG24.Z','Fear of disease, unspecified','Y','2025-10-23 00:00:00'),(83556,11,'MG24.3','Fear of digestive disease','Y','2025-10-23 00:00:00'),(83557,11,'MG24','Fear of disease','Y','2025-10-23 00:00:00'),(83555,11,'MG23','Fear of death or dying','Y','2025-10-23 00:00:00'),(83554,11,'MG24.D','Fear of complications of pregnancy','Y','2025-10-23 00:00:00'),(83553,11,'MG24.7','Fear of cardiovascular disease','Y','2025-10-23 00:00:00'),(83552,11,'MG24.0Z','Fear of cancer, unspecified','Y','2025-10-23 00:00:00'),(83551,11,'MG24.00','Fear of cancer of digestive system','Y','2025-10-23 00:00:00'),(83550,11,'MG24.0','Fear of cancer','Y','2025-10-23 00:00:00'),(83549,11,'MG24.01','Fear of breast cancer female','Y','2025-10-23 00:00:00'),(83547,11,'MB24.A','Fear','Y','2025-10-23 00:00:00'),(83548,11,'SF98','Fear damaging the kidney system pattern (TM1)','Y','2025-10-23 00:00:00'),(83546,11,'XM87E3','Fazadinium bromide','Y','2025-10-23 00:00:00'),(83545,11,'XE38S','Fax machine and other related equipment','Y','2025-10-23 00:00:00'),(83544,11,'XM2L29','Favipiravir','Y','2025-10-23 00:00:00'),(83543,11,'XM4521','Fatty acid derivatives','Y','2025-10-23 00:00:00'),(83542,11,'XM95A6','Fattail scorpion venom','Y','2025-10-23 00:00:00'),(83541,11,'XE3Y4','Fatigue problem with device identified','Y','2025-10-23 00:00:00'),(83540,11,'FA72.3','Fatigue fracture of vertebra','Y','2025-10-23 00:00:00'),(83539,11,'SD91','Fatigue consumption disorder (TM1)','Y','2025-10-23 00:00:00'),(83538,11,'MG22','Fatigue','Y','2025-10-23 00:00:00'),(83537,11,'8E02.2','Fatal familial insomnia','Y','2025-10-23 00:00:00'),(83536,11,'GB23.2','Fat necrosis of breast','Y','2025-10-23 00:00:00'),(83535,11,'EF02.0','Fat hypertrophy','Y','2025-10-23 00:00:00'),(83534,11,'XM9GM1','Fat emulsions','Y','2025-10-23 00:00:00'),(83533,11,'NF0A.1','Fat embolism, traumatic, not elsewhere classified','Y','2025-10-23 00:00:00'),(83532,11,'XM4CT2','fasudil','Y','2025-10-23 00:00:00'),(83531,11,'XE5DL','Fastner component of medical device','Y','2025-10-23 00:00:00'),(83530,11,'XE11D','Fastening, binding, or securing item, not elsewhere classified','Y','2025-10-23 00:00:00'),(83529,11,'XN024','Fasciolopsis buski','Y','2025-10-23 00:00:00'),(83528,11,'XN35Y','Fasciolopsis','Y','2025-10-23 00:00:00'),(83527,11,'1F83','Fasciolopsiasis','Y','2025-10-23 00:00:00'),(83526,11,'1F82','Fascioliasis','Y','2025-10-23 00:00:00'),(83525,11,'XN1H3','Fasciola','Y','2025-10-23 00:00:00'),(83524,11,'FB51.2','Fasciitis and fibromatosis','Y','2025-10-23 00:00:00'),(83523,11,'MB47.5','Fasciculation','Y','2025-10-23 00:00:00'),(83522,11,'XH8EV4','Fascial fibrosarcoma','Y','2025-10-23 00:00:00'),(83521,11,'XH2MW3','Fascial fibroma','Y','2025-10-23 00:00:00'),(83520,11,'XA0FR0','Fascia','Y','2025-10-23 00:00:00'),(83519,11,'XM1N97','Faropenem','Y','2025-10-23 00:00:00'),(83518,11,'XM2TV3','Farnesol','Y','2025-10-23 00:00:00'),(83517,11,'XM4XH9','Farnesil','Y','2025-10-23 00:00:00'),(83516,11,'XE7F8','Farmhouse','Y','2025-10-23 00:00:00'),(83515,11,'CA70.0','Farmer lung','Y','2025-10-23 00:00:00'),(83514,11,'XE9CS','Farm or other place of primary production','Y','2025-10-23 00:00:00'),(83513,11,'1C89','Far Eastern tick-borne encephalitis','Y','2025-10-23 00:00:00'),(83512,11,'GB90.42','Fanconi syndrome','Y','2025-10-23 00:00:00'),(83511,11,'XE8VD','Fan or blower component of medical device','Y','2025-10-23 00:00:00'),(83510,11,'XE5VR','Fan','Y','2025-10-23 00:00:00'),(83509,11,'XM5PS1','Fampridine','Y','2025-10-23 00:00:00'),(83508,11,'XM7818','Famphur','Y','2025-10-23 00:00:00'),(83507,11,'XM6441','Famotidine','Y','2025-10-23 00:00:00'),(83506,11,'VD32','Family relationships [WHODAS]','Y','2025-10-23 00:00:00'),(83505,11,'QC69','Family history of stroke','Y','2025-10-23 00:00:00'),(83504,11,'QC6Y','Family history of other specified health problems','Y','2025-10-23 00:00:00'),(83503,11,'QC65','Family history of mental or behavioural disorder','Y','2025-10-23 00:00:00'),(83502,11,'QC61.7','Family history of malignant neoplasms of lymphoid, haematopoietic or related tissues','Y','2025-10-23 00:00:00'),(83501,11,'QC61.Z','Family history of malignant neoplasm, unspecified','Y','2025-10-23 00:00:00'),(83500,11,'QC61.5','Family history of malignant neoplasm of urinary tract','Y','2025-10-23 00:00:00'),(83499,11,'QC61.1','Family history of malignant neoplasm of trachea, bronchus or lung','Y','2025-10-23 00:00:00'),(83498,11,'QC61.2','Family history of malignant neoplasm of respiratory or intrathoracic organs other than digestive organs, trachea, bronchus or lung','Y','2025-10-23 00:00:00'),(83497,11,'QC61.4','Family history of malignant neoplasm of genital organs','Y','2025-10-23 00:00:00'),(83496,11,'QC61.0','Family history of malignant neoplasm of digestive organs','Y','2025-10-23 00:00:00'),(83495,11,'QC61.3','Family history of malignant neoplasm of breast','Y','2025-10-23 00:00:00'),(83494,11,'QC61','Family history of malignant neoplasm','Y','2025-10-23 00:00:00'),(83493,11,'QC61.6','Family history of leukaemia','Y','2025-10-23 00:00:00'),(83492,11,'QC67','Family history of ischaemic heart disease or other diseases of the circulatory system','Y','2025-10-23 00:00:00'),(83491,11,'QC60','Family history of infectious diseases','Y','2025-10-23 00:00:00'),(83490,11,'QC6Z','Family history of health problems, unspecified','Y','2025-10-23 00:00:00'),(83489,11,'QC66','Family history of eye or ear disorders','Y','2025-10-23 00:00:00'),(83488,11,'QC64.Z','Family history of endocrine, nutritional or metabolic diseases, unspecified','Y','2025-10-23 00:00:00'),(83487,11,'QC64','Family history of endocrine, nutritional or metabolic diseases','Y','2025-10-23 00:00:00'),(83486,11,'QC63','Family history of disorders involving the immune mechanism','Y','2025-10-23 00:00:00'),(83485,11,'QC62','Family history of diseases of the blood or blood-forming organs','Y','2025-10-23 00:00:00'),(83484,11,'QC64.0','Family history of diabetes mellitus','Y','2025-10-23 00:00:00'),(83483,11,'QC68','Family history of consanguinity','Y','2025-10-23 00:00:00'),(83482,11,'QA18','Family counselling','Y','2025-10-23 00:00:00'),(83481,11,'BC43.10','Familial-genetic hypertrophic cardiomyopathy','Y','2025-10-23 00:00:00'),(83480,11,'BC43.00','Familial-genetic dilated cardiomyopathy','Y','2025-10-23 00:00:00'),(83479,11,'MG44.14','Familial short stature','Y','2025-10-23 00:00:00'),(83478,11,'3A10.3','Familial pseudohyperkalaemia','Y','2025-10-23 00:00:00'),(83477,11,'8A00.01','Familial Parkinson disease','Y','2025-10-23 00:00:00'),(83476,11,'4A60.0','Familial Mediterranean fever','Y','2025-10-23 00:00:00'),(83475,11,'5A51.2','Familial hypocalciuric hypercalcaemia','Y','2025-10-23 00:00:00'),(83474,11,'8B22.6','Familial cerebral saccular aneurysm','Y','2025-10-23 00:00:00'),(83472,11,'XM3SK7','Famciclovir topical','Y','2025-10-23 00:00:00'),(83473,11,'XB1Y','Familial','Y','2025-10-23 00:00:00'),(83471,11,'XM3RL1','Famciclovir','Y','2025-10-23 00:00:00'),(83469,11,'XA1FV7','Falx cerebri','Y','2025-10-23 00:00:00'),(83470,11,'XA09H1','Falx without further specification','Y','2025-10-23 00:00:00'),(83467,11,'XE8UG','Falsified device','Y','2025-10-23 00:00:00'),(83468,11,'XA33G9','Falx cerebelli','Y','2025-10-23 00:00:00'),(83466,11,'MA14.16','False-positive serological test for syphilis','Y','2025-10-23 00:00:00'),(83465,11,'XM6SD4','False widow spider venom','Y','2025-10-23 00:00:00'),(83464,11,'XE9K2','False positive result','Y','2025-10-23 00:00:00'),(83463,11,'XE2E8','False negative result','Y','2025-10-23 00:00:00'),(83462,11,'JA8D.0','False labour before 37 completed weeks of gestation','Y','2025-10-23 00:00:00'),(83461,11,'JA8D.1','False labour at or after 37 completed weeks of gestation','Y','2025-10-23 00:00:00'),(83460,11,'XE2K0','False alarm','Y','2025-10-23 00:00:00'),(83459,11,'XA3EF0','Fallopian tube','Y','2025-10-23 00:00:00'),(83458,11,'PG5Z','Fall or jump of undetermined intent, height unspecified','Y','2025-10-23 00:00:00'),(83457,11,'PG50','Fall or jump of undetermined intent on the same level or from less than 1 metre','Y','2025-10-23 00:00:00'),(83456,11,'PG51','Fall or jump of undetermined intent from a height of 1 metre or more','Y','2025-10-23 00:00:00'),(83455,11,'XE0JJ','Fall in mode of transport without counterpart','Y','2025-10-23 00:00:00'),(83454,11,'QA8E','Fall in health care without injury or harm','Y','2025-10-23 00:00:00'),(83453,11,'PL14.E','Fall in health care','Y','2025-10-23 00:00:00'),(83452,11,'XE929','Fall from pedestrian conveyance without counterpart','Y','2025-10-23 00:00:00'),(83451,11,'XE2K7','Fall from pedal cycle without counterpart','Y','2025-10-23 00:00:00'),(83450,11,'XE7JA','Fall from motorcycle without counterpart','Y','2025-10-23 00:00:00'),(83449,11,'XE20L','Fall from motor vehicle without counterpart','Y','2025-10-23 00:00:00'),(83448,11,'XE3M5','Fall from mode of transport without counterpart','Y','2025-10-23 00:00:00'),(83447,11,'XE64P','Fall from horse without counterpart','Y','2025-10-23 00:00:00'),(83446,11,'XM1QK4','Faldaprevir','Y','2025-10-23 00:00:00'),(83445,11,'XE0HZ','Failure to zero','Y','2025-10-23 00:00:00'),(83444,11,'XE06Q','Failure to unfold or unwrap','Y','2025-10-23 00:00:00'),(83443,11,'XE0V5','Failure to transmit record','Y','2025-10-23 00:00:00'),(83442,11,'KD32.4','Failure to thrive in newborn','Y','2025-10-23 00:00:00'),(83441,11,'MG44.11','Failure to thrive in infant or child','Y','2025-10-23 00:00:00'),(83440,11,'XE20P','Failure to shut off','Y','2025-10-23 00:00:00'),(83439,11,'XE210','Failure to sense','Y','2025-10-23 00:00:00'),(83438,11,'XE0K3','Failure to select signal','Y','2025-10-23 00:00:00'),(83437,11,'XE548','Failure to run on battery','Y','2025-10-23 00:00:00'),(83436,11,'XE59S','Failure to reset','Y','2025-10-23 00:00:00'),(83435,11,'XE8MT','Failure to recalibrate','Y','2025-10-23 00:00:00'),(83434,11,'XE3EG','Failure to read input signal','Y','2025-10-23 00:00:00'),(83433,11,'XE5R0','Failure to pump','Y','2025-10-23 00:00:00'),(83432,11,'XE3KR','Failure to prime','Y','2025-10-23 00:00:00'),(83430,11,'XE94Z','Failure to osseointegrate','Y','2025-10-23 00:00:00'),(83431,11,'XE38R','Failure to power up','Y','2025-10-23 00:00:00'),(83429,11,'XE3MS','Failure to obtain sample','Y','2025-10-23 00:00:00'),(83428,11,'XE3PE','Failure to interrogate','Y','2025-10-23 00:00:00'),(83427,11,'XE1JK','Failure to infuse','Y','2025-10-23 00:00:00'),(83425,11,'XE0ZV','Failure to fold','Y','2025-10-23 00:00:00'),(83426,11,'XE289','Failure to form staple','Y','2025-10-23 00:00:00'),(83424,11,'XE666','Failure to fire','Y','2025-10-23 00:00:00'),(83423,11,'XE0VZ','Failure to eject','Y','2025-10-23 00:00:00'),(83422,11,'XE4A4','Failure to disinfect','Y','2025-10-23 00:00:00'),(83420,11,'XE8DT','Failure to discharge','Y','2025-10-23 00:00:00'),(83421,11,'XE9HJ','Failure to disconnect','Y','2025-10-23 00:00:00'),(83419,11,'XE12S','Failure to deliver shock','Y','2025-10-23 00:00:00'),(83418,11,'XE94H','Failure to deliver flow','Y','2025-10-23 00:00:00'),(83416,11,'XE23L','Failure to cycle','Y','2025-10-23 00:00:00'),(83417,11,'XE5PU','Failure to deliver energy','Y','2025-10-23 00:00:00'),(83415,11,'XE0XR','Failure to cut','Y','2025-10-23 00:00:00'),(83414,11,'XE8PZ','Failure to convert to back-up','Y','2025-10-23 00:00:00'),(83413,11,'XE19S','Failure to convert rhythm','Y','2025-10-23 00:00:00'),(83412,11,'XE22D','Failure to conduct','Y','2025-10-23 00:00:00'),(83411,11,'XE3MN','Failure to clean adequately','Y','2025-10-23 00:00:00'),(83410,11,'XE5PM','Failure to charge','Y','2025-10-23 00:00:00'),(83409,11,'XE0UH','Failure to capture','Y','2025-10-23 00:00:00'),(83408,11,'XE15Q','Failure to calibrate problem identified','Y','2025-10-23 00:00:00'),(83407,11,'XE6GR','Failure to calibrate','Y','2025-10-23 00:00:00'),(83406,11,'XE72G','Failure to back-up','Y','2025-10-23 00:00:00'),(83405,11,'XE16Y','Failure to auto stop','Y','2025-10-23 00:00:00'),(83404,11,'XE8H3','Failure to analyze signal','Y','2025-10-23 00:00:00'),(83403,11,'XE7KY','Failure to align','Y','2025-10-23 00:00:00'),(83402,11,'XE4CG','Failure to advance','Y','2025-10-23 00:00:00'),(83401,11,'NE84','Failure or rejection of transplanted organs or tissues','Y','2025-10-23 00:00:00'),(83400,11,'PL11.4','Failure of sterile precautions, as mode of injury or harm','Y','2025-10-23 00:00:00'),(83399,11,'QA52','Failure of sterile precautions without injury or harm','Y','2025-10-23 00:00:00'),(83398,11,'XE3V3','Failure of device to self-test','Y','2025-10-23 00:00:00'),(83397,11,'XE37H','Fail-safe system component of medical device','Y','2025-10-23 00:00:00'),(83396,11,'XE0WJ','Fail-safe problem with device identified','Y','2025-10-23 00:00:00'),(83395,11,'XE78D','Fail-safe problem','Y','2025-10-23 00:00:00'),(83394,11,'XE659','Fail-safe did not activate','Y','2025-10-23 00:00:00'),(83393,11,'JB0D.8','Failed trial of labour, unspecified','Y','2025-10-23 00:00:00'),(83392,11,'JB43.5','Failed or difficult intubation during the puerperium','Y','2025-10-23 00:00:00'),(83391,11,'JA67.5','Failed or difficult intubation during pregnancy','Y','2025-10-23 00:00:00'),(83390,11,'JB0C.7','Failed or difficult intubation during labour or delivery','Y','2025-10-23 00:00:00'),(83389,11,'NE87','Failed or difficult intubation','Y','2025-10-23 00:00:00'),(83388,11,'JB01.0','Failed medical induction of labour','Y','2025-10-23 00:00:00'),(83387,11,'JA00.34','Failed medical abortion, without complication','Y','2025-10-23 00:00:00'),(83386,11,'JA00.33','Failed medical abortion, with other or unspecified complications','Y','2025-10-23 00:00:00'),(83385,11,'JA00.30','Failed medical abortion, complicated by genital tract or pelvic infection','Y','2025-10-23 00:00:00'),(83384,11,'JA00.32','Failed medical abortion, complicated by embolism','Y','2025-10-23 00:00:00'),(83383,11,'JA00.31','Failed medical abortion, complicated by delayed or excessive haemorrhage','Y','2025-10-23 00:00:00'),(83382,11,'JB01.1','Failed instrumental induction of labour','Y','2025-10-23 00:00:00'),(83381,11,'JB01.Z','Failed induction of labour, unspecified','Y','2025-10-23 00:00:00'),(83380,11,'JB01','Failed induction of labour','Y','2025-10-23 00:00:00'),(83379,11,'JA00.3','Failed attempted abortion','Y','2025-10-23 00:00:00'),(83378,11,'JB0D.7','Failed application of vacuum extractor or forceps, unspecified','Y','2025-10-23 00:00:00'),(83377,11,'ME07.2','Faecal urgency','Y','2025-10-23 00:00:00'),(83376,11,'ME07.0','Faecal smearing','Y','2025-10-23 00:00:00'),(83375,11,'ME07.Z','Faecal incontinence, unspecified','Y','2025-10-23 00:00:00'),(83374,11,'ME07','Faecal incontinence','Y','2025-10-23 00:00:00'),(83373,11,'XE3U5','Factory or plant','Y','2025-10-23 00:00:00'),(83372,11,'QB1Z','Factors related to medical facilities and other health care, unspecified','Y','2025-10-23 00:00:00'),(83371,11,'QF4Z','Factors influencing health status or contact with health services, unspecified','Y','2025-10-23 00:00:00'),(83370,11,'XM3P96','Factor VIII inhibitor bypassing activity','Y','2025-10-23 00:00:00'),(83369,11,'XM3ZZ2','Factor III (thromboplastin)','Y','2025-10-23 00:00:00'),(83368,11,'XM3TM8','Factor I (fibrinogen)','Y','2025-10-23 00:00:00'),(83367,11,'6D5Z','Factitious disorders, unspecified','Y','2025-10-23 00:00:00'),(83366,11,'6D50','Factitious disorder imposed on self','Y','2025-10-23 00:00:00'),(83365,11,'6D51','Factitious disorder imposed on another','Y','2025-10-23 00:00:00'),(83364,11,'8C70.3','Facioscapulohumeral muscular dystrophy','Y','2025-10-23 00:00:00'),(83363,11,'XA0BP3','Facial vein','Y','2025-10-23 00:00:00'),(83362,11,'SD00','Facial paralysis disorder (TM1)','Y','2025-10-23 00:00:00'),(83361,11,'8B88.3','Facial neuritis','Y','2025-10-23 00:00:00'),(83360,11,'XA64Y7','Facial nerve','Y','2025-10-23 00:00:00'),(83359,11,'8B88.1','Facial myokymia','Y','2025-10-23 00:00:00'),(83358,11,'XA2U89','Facial lymph node','Y','2025-10-23 00:00:00'),(83357,11,'LA51','Facial clefts','Y','2025-10-23 00:00:00'),(83356,11,'XA3Y16','Facial bones','Y','2025-10-23 00:00:00'),(83355,11,'LA52','Facial asymmetry','Y','2025-10-23 00:00:00'),(83354,11,'XA3FL3','Facial artery','Y','2025-10-23 00:00:00'),(83353,11,'XA0ZE4','Facet joint','Y','2025-10-23 00:00:00'),(83352,11,'XA86S4','Face','Y','2025-10-23 00:00:00'),(83351,11,'XM32L4','FAC (fluorouracil + doxorubicin + cyclophosphamide)','Y','2025-10-23 00:00:00'),(83350,11,'5C56.01','Fabry disease','Y','2025-10-23 00:00:00'),(83349,11,'XE026','Fabric component of medical device','Y','2025-10-23 00:00:00'),(83347,11,'XM5BK7','Ezetimibe','Y','2025-10-23 00:00:00'),(83348,11,'XM5928','Fabomotizole','Y','2025-10-23 00:00:00'),(83345,11,'XA3RB1','Eyelids','Y','2025-10-23 00:00:00'),(83346,11,'XE5EM','Eyewear','Y','2025-10-23 00:00:00'),(83344,11,'NA06.0Z','Eyelid trauma, unspecified','Y','2025-10-23 00:00:00'),(83343,11,'NA06.0','Eyelid trauma','Y','2025-10-23 00:00:00'),(83342,11,'9A03.3','Eyelid retraction','Y','2025-10-23 00:00:00'),(83340,11,'NA06.00','Eyelid Avulsion','Y','2025-10-23 00:00:00'),(83341,11,'9C84.6','Eyelid nystagmus','Y','2025-10-23 00:00:00'),(83339,11,'9A05.1','Eyelid apraxia','Y','2025-10-23 00:00:00'),(83338,11,'XA17K1','Eyelid and ocular surface?','Y','2025-10-23 00:00:00'),(83337,11,'XA1RK2','Eyelashes','Y','2025-10-23 00:00:00'),(83336,11,'XA78D2','Eyebrow hairs','Y','2025-10-23 00:00:00'),(83335,11,'XA1LZ5','Eyebrow','Y','2025-10-23 00:00:00'),(83332,11,'XA0M40','Eyeball','Y','2025-10-23 00:00:00'),(83333,11,'9C22','Eyeball deformity','Y','2025-10-23 00:00:00'),(83334,11,'9C22.Z','Eyeball deformity, unspecified','Y','2025-10-23 00:00:00'),(83331,11,'SC9Z','Eye, ear, nose and throat system disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(83330,11,'MC11','Eye sensation abnormal','Y','2025-10-23 00:00:00'),(83329,11,'XA1TF9','Eye fluid','Y','2025-10-23 00:00:00'),(83327,11,'MC14','Eye discharge','Y','2025-10-23 00:00:00'),(83328,11,'1F57.3','Eye disease due to Toxoplasma gondii','Y','2025-10-23 00:00:00'),(83325,11,'XA7D89','Eye','Y','2025-10-23 00:00:00'),(83326,11,'MC10','Eye appearance abnormal','Y','2025-10-23 00:00:00'),(83324,11,'8D64.2','Ex-vacuo hydrocephalus','Y','2025-10-23 00:00:00'),(83323,11,'9B78.11','Exudative retinopathy','Y','2025-10-23 00:00:00'),(83322,11,'NA0D.12','Extrusive luxation of tooth','Y','2025-10-23 00:00:00'),(83321,11,'XA6AS2','Extremities','Y','2025-10-23 00:00:00'),(83320,11,'KA21.0Z','Extremely low birth weight of newborn, unspecified','Y','2025-10-23 00:00:00'),(83319,11,'KA21.02','Extremely low birth weight of newborn, 750-999g','Y','2025-10-23 00:00:00'),(83318,11,'KA21.01','Extremely low birth weight of newborn, 500-749g','Y','2025-10-23 00:00:00'),(83317,11,'KA21.00','Extremely low birth weight of newborn, 499g or less','Y','2025-10-23 00:00:00'),(83316,11,'KA21.0','Extremely low birth weight of newborn','Y','2025-10-23 00:00:00'),(83315,11,'KA21.3Z','Extreme prematurity of newborn, unspecified','Y','2025-10-23 00:00:00'),(83314,11,'KA21.30','Extreme prematurity of newborn, gestational age less than 22 completed weeks','Y','2025-10-23 00:00:00'),(83313,11,'KA21.36','Extreme prematurity of newborn, gestational age 27 completed weeks','Y','2025-10-23 00:00:00'),(83312,11,'KA21.35','Extreme prematurity of newborn, gestational age 26 completed weeks','Y','2025-10-23 00:00:00'),(83311,11,'KA21.34','Extreme prematurity of newborn, gestational age 25 completed weeks','Y','2025-10-23 00:00:00'),(83310,11,'KA21.33','Extreme prematurity of newborn, gestational age 24 completed weeks','Y','2025-10-23 00:00:00'),(83309,11,'KA21.32','Extreme prematurity of newborn, gestational age 23 completed weeks','Y','2025-10-23 00:00:00'),(83308,11,'KA21.31','Extreme prematurity of newborn, gestational age 22 completed weeks','Y','2025-10-23 00:00:00'),(83307,11,'KA21.3','Extreme prematurity of newborn','Y','2025-10-23 00:00:00'),(83306,11,'XH2HS1','Extraventricular neurocytoma','Y','2025-10-23 00:00:00'),(83305,11,'MF50.5','Extravasation of urine','Y','2025-10-23 00:00:00'),(83304,11,'LA80.3','Extrathoracic heart','Y','2025-10-23 00:00:00'),(83303,11,'1F25.1','Extrathoracic coccidioidomycosis','Y','2025-10-23 00:00:00'),(83302,11,'XA2L55','Extraspinal vein','Y','2025-10-23 00:00:00'),(83301,11,'MF53','Extrarenal uraemia','Y','2025-10-23 00:00:00'),(83300,11,'XM6L51','Extrapyramidal antagonist','Y','2025-10-23 00:00:00'),(83299,11,'2A83.3','Extraosseous plasmacytoma','Y','2025-10-23 00:00:00'),(83298,11,'2A90.6','Extranodal NK/T-cell lymphoma, nasal type','Y','2025-10-23 00:00:00'),(83297,11,'XH1V99','Extranodal marginal zone lymphoma of mucosa-associated lymphoid tissue','Y','2025-10-23 00:00:00'),(83296,11,'2A85.2','Extranodal marginal zone B-cell lymphoma, primary site skin','Y','2025-10-23 00:00:00'),(83295,11,'2A85.3','Extranodal marginal zone B-cell lymphoma, primary site excluding stomach or skin','Y','2025-10-23 00:00:00'),(83294,11,'2A85.1','Extranodal marginal zone B-cell lymphoma of mucosa-associated lymphoid tissue of stomach','Y','2025-10-23 00:00:00'),(83293,11,'2E64.1','Extramammary Paget disease of skin','Y','2025-10-23 00:00:00'),(83292,11,'1B9A','Extraintestinal yersiniosis','Y','2025-10-23 00:00:00'),(83291,11,'1A36.1','Extraintestinal infections due to Entamoeba','Y','2025-10-23 00:00:00'),(83290,11,'XA9HM5','Extrahepatic bile duct','Y','2025-10-23 00:00:00'),(83289,11,'1A95.2','Extragenital condylomata acuminata','Y','2025-10-23 00:00:00'),(83288,11,'KA40.08','Extradural or epidural haemorrhage due to birth injury','Y','2025-10-23 00:00:00'),(83287,11,'2A21.3','Extracutaneous mastocytoma','Y','2025-10-23 00:00:00'),(83286,11,'XA1SX5','Extracranial blood vessels, not elsewhere classified','Y','2025-10-23 00:00:00'),(83285,11,'PK81.1','Extracorporeal life support procedure associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(83284,11,'XD8A37','Extracorporeal dialysis devices','Y','2025-10-23 00:00:00'),(83283,11,'XH1UN6','Extra-adrenal paraganglioma','Y','2025-10-23 00:00:00'),(83282,11,'LD41.N','Extra ring or dicentric chromosomes','Y','2025-10-23 00:00:00'),(83281,11,'SG3Z','Extra Meridian Patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(83280,11,'LD41.Q','Extra marker chromosomes','Y','2025-10-23 00:00:00'),(83279,11,'XA4DF2','External urethral sphincter','Y','2025-10-23 00:00:00'),(83278,11,'XA4NU9','External urethral meatus','Y','2025-10-23 00:00:00'),(83277,11,'XA0K68','External upper lip','Y','2025-10-23 00:00:00'),(83276,11,'XA4QF0','External striate of the anterolateral central artery','Y','2025-10-23 00:00:00'),(83275,11,'XE3PX','external spa','Y','2025-10-23 00:00:00'),(83274,11,'XA0101','External oblique abdominis tendon','Y','2025-10-23 00:00:00'),(83273,11,'XA3TW8','External oblique abdominis muscle','Y','2025-10-23 00:00:00'),(83272,11,'XA8482','External nasal nerve','Y','2025-10-23 00:00:00'),(83271,11,'XA5VD0','External lower lip','Y','2025-10-23 00:00:00'),(83270,11,'XA3K27','External lip','Y','2025-10-23 00:00:00'),(83269,11,'XA9LP4','External laryngeal nerve','Y','2025-10-23 00:00:00'),(83268,11,'XA99S7','External jugular vein','Y','2025-10-23 00:00:00'),(83267,11,'XA6RW0','External intercostal muscle','Y','2025-10-23 00:00:00'),(83266,11,'XA49T5','External iliac vein','Y','2025-10-23 00:00:00'),(83265,11,'XA8M66','External iliac lymph node','Y','2025-10-23 00:00:00'),(83264,11,'XA53T4','External iliac artery','Y','2025-10-23 00:00:00'),(83263,11,'XE8AX','external hot tub','Y','2025-10-23 00:00:00'),(83262,11,'1G02','External hirudiniasis','Y','2025-10-23 00:00:00'),(83261,11,'XA6ZY6','External Ear','Y','2025-10-23 00:00:00'),(83260,11,'SE2Z','External contraction disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(83259,11,'XJ4D1','External constriction','Y','2025-10-23 00:00:00'),(83257,11,'XA9EK2','External carotid artery','Y','2025-10-23 00:00:00'),(83258,11,'PL2Z','External causes of morbidity or mortality, unspecified','Y','2025-10-23 00:00:00'),(83256,11,'9C81.00','External bilateral paralysis of oculomotor nerve','Y','2025-10-23 00:00:00'),(83255,11,'XA5GS5','External auditory meatus','Y','2025-10-23 00:00:00'),(83254,11,'XA3UC1','External auditory canal','Y','2025-10-23 00:00:00'),(83253,11,'XK2H','External','Y','2025-10-23 00:00:00'),(83252,11,'XE5B1','Exterior window shutters','Y','2025-10-23 00:00:00'),(83251,11,'SE76','Exterior pattern (TM1)','Y','2025-10-23 00:00:00'),(83250,11,'SF87','Exterior cold with lung heat pattern (TM1)','Y','2025-10-23 00:00:00'),(83248,11,'XA4CG6','Extensor pollicis longus tendon','Y','2025-10-23 00:00:00'),(83249,11,'XA8U10','Extensor tendon','Y','2025-10-23 00:00:00'),(83247,11,'XA0CS4','Extensor pollicis longus muscle','Y','2025-10-23 00:00:00'),(83246,11,'XA5KN6','Extensor pollicis brevis tendon','Y','2025-10-23 00:00:00'),(83245,11,'XA4V20','Extensor pollicis brevis muscle','Y','2025-10-23 00:00:00'),(83244,11,'XA4EE2','Extensor indicis tendon','Y','2025-10-23 00:00:00'),(83243,11,'XA1AV6','Extensor indicis muscle','Y','2025-10-23 00:00:00'),(83242,11,'XA5L26','Extensor hallucis longus tendon','Y','2025-10-23 00:00:00'),(83241,11,'XA7R67','Extensor hallucis longus muscle','Y','2025-10-23 00:00:00'),(83240,11,'XA4NZ0','Extensor hallucis brevis tendon','Y','2025-10-23 00:00:00'),(83239,11,'XA3T27','Extensor hallucis brevis muscle','Y','2025-10-23 00:00:00'),(83238,11,'XA5H06','Extensor digitorum tendon','Y','2025-10-23 00:00:00'),(83237,11,'XA7QU8','Extensor digitorum muscle (hand)','Y','2025-10-23 00:00:00'),(83236,11,'XA24U7','Extensor digitorum longus muscle (foot)','Y','2025-10-23 00:00:00'),(83235,11,'XA1ZF4','Extensor digitorum longus (foot) tendon','Y','2025-10-23 00:00:00'),(83234,11,'XA7FZ1','Extensor digitorum brevis muscle (foot)','Y','2025-10-23 00:00:00'),(83233,11,'XA6230','Extensor digitorum brevis (foot) tendon','Y','2025-10-23 00:00:00'),(83232,11,'XA4WU2','Extensor digiti minimi tendon','Y','2025-10-23 00:00:00'),(83231,11,'XA0T60','Extensor digiti minimi muscle (hand)','Y','2025-10-23 00:00:00'),(83230,11,'XA4PY2','Extensor carpi ulnaris tendon','Y','2025-10-23 00:00:00'),(83229,11,'XA9304','Extensor carpi ulnaris muscle','Y','2025-10-23 00:00:00'),(83228,11,'XA1T90','Extensor carpi radialis longus tendon','Y','2025-10-23 00:00:00'),(83227,11,'XA8824','Extensor carpi radialis longus muscle','Y','2025-10-23 00:00:00'),(83226,11,'XA18F0','Extensor carpi radialis brevis tendon','Y','2025-10-23 00:00:00'),(83225,11,'XA4U40','Extensor carpi radialis brevis','Y','2025-10-23 00:00:00'),(83224,11,'MG52.02','Extensively drug-resistant mycobacterium tuberculosis','Y','2025-10-23 00:00:00'),(83223,11,'2F30.6','Extensive adenomatosis of nipple','Y','2025-10-23 00:00:00'),(83222,11,'XC8H','Extension response to painful or noxious stimulation','Y','2025-10-23 00:00:00'),(83221,11,'XE8ZU','Extender component of medical device','Y','2025-10-23 00:00:00'),(83220,11,'MG50.56','Extended-spectrum beta-lactamase producing Klebsiella pneumoniae','Y','2025-10-23 00:00:00'),(83219,11,'MG50.27','Extended spectrum beta-lactamase producing Escherichia coli','Y','2025-10-23 00:00:00'),(83218,11,'XE714','Extended periods of work in a squatting position','Y','2025-10-23 00:00:00'),(83217,11,'XE88E','Extended periods of work in a kneeling position','Y','2025-10-23 00:00:00'),(83216,11,'LB31.3','Exstrophy of urinary bladder','Y','2025-10-23 00:00:00'),(83215,11,'XE1FH','Expulsion of device','Y','2025-10-23 00:00:00'),(83214,11,'XE82Y','Exposure to welding light','Y','2025-10-23 00:00:00'),(83213,11,'XE85L','Exposure to water transport injury event','Y','2025-10-23 00:00:00'),(83212,11,'XE3RX','Exposure to vibration','Y','2025-10-23 00:00:00'),(83211,11,'PH3Z','Exposure to unspecified thermal mechanism with undetermined intent','Y','2025-10-23 00:00:00'),(83210,11,'PH0Z','Exposure to unspecified object, not elsewhere classified, undetermined intent','Y','2025-10-23 00:00:00'),(83209,11,'PJ0Z','Exposure to unspecified forces of nature','Y','2025-10-23 00:00:00'),(83208,11,'PH30','Exposure to uncontrolled fire with undetermined intent','Y','2025-10-23 00:00:00'),(83207,11,'XE0S0','Exposure to uncontrolled fire','Y','2025-10-23 00:00:00'),(83206,11,'XE500','Exposure to ultraviolet radiation','Y','2025-10-23 00:00:00'),(83205,11,'KD37','Exposure to tobacco smoke in the perinatal period','Y','2025-10-23 00:00:00'),(83204,11,'XE2DJ','Exposure to threat to breathing from low oxygen environment','Y','2025-10-23 00:00:00'),(83203,11,'XE9N2','Exposure to threat to breathing by suffocation from object covering mouth or nose','Y','2025-10-23 00:00:00'),(83202,11,'XE17S','Exposure to threat to breathing by strangulation','Y','2025-10-23 00:00:00'),(83201,11,'XE9RJ','Exposure to threat to breathing by inhalation or ingestion of other objects or materials','Y','2025-10-23 00:00:00'),(83200,11,'XE2PV','Exposure to threat to breathing by inhalation or ingestion of liquids','Y','2025-10-23 00:00:00'),(83199,11,'XE33X','Exposure to threat to breathing by inhalation or ingestion of gastric contents','Y','2025-10-23 00:00:00'),(83198,11,'XE5QH','Exposure to threat to breathing by inhalation or ingestion of food','Y','2025-10-23 00:00:00'),(83197,11,'XE9LA','Exposure to threat to breathing by hanging','Y','2025-10-23 00:00:00'),(83196,11,'XE2NR','Exposure to threat to breathing by external compression of airways or chest','Y','2025-10-23 00:00:00'),(83195,11,'XE8NX','Exposure to threat to breathing','Y','2025-10-23 00:00:00'),(83193,11,'PH72','Exposure to sunlight with undetermined intent','Y','2025-10-23 00:00:00'),(83194,11,'XE6JM','Exposure to thermal mechanism','Y','2025-10-23 00:00:00'),(83192,11,'XE8DS','Exposure to sunlight','Y','2025-10-23 00:00:00'),(83191,11,'XE7BT','Exposure to suction','Y','2025-10-23 00:00:00'),(83190,11,'XE515','Exposure to steam, hot vapour, air or gases','Y','2025-10-23 00:00:00'),(83189,11,'XE3S3','Exposure to railway transport injury event','Y','2025-10-23 00:00:00'),(83188,11,'PH73','Exposure to radiation with undetermined intent','Y','2025-10-23 00:00:00'),(83186,11,'XE4TW','Exposure to physical overexertion','Y','2025-10-23 00:00:00'),(83187,11,'XE60C','Exposure to radiation','Y','2025-10-23 00:00:00'),(83185,11,'XE4U1','Exposure to person, animal or plant','Y','2025-10-23 00:00:00'),(83184,11,'XE436','Exposure to other visible and ultraviolet light of man-made sources','Y','2025-10-23 00:00:00'),(83183,11,'PH3Y','Exposure to other specified thermal mechanism with undetermined intent','Y','2025-10-23 00:00:00'),(83182,11,'XE67Q','Exposure to other specified privation','Y','2025-10-23 00:00:00'),(83181,11,'PJ0Y','Exposure to other specified forces of nature','Y','2025-10-23 00:00:00'),(83180,11,'XE6JQ','Exposure to other non-ionizing radiation','Y','2025-10-23 00:00:00'),(83179,11,'PH41','Exposure to or harmful effects of undetermined intent of sedative hypnotic drugs or other CNS depressants','Y','2025-10-23 00:00:00'),(83178,11,'PH42','Exposure to or harmful effects of undetermined intent of psychostimulants','Y','2025-10-23 00:00:00'),(83177,11,'PH53','Exposure to or harmful effects of undetermined intent of pesticides','Y','2025-10-23 00:00:00'),(83176,11,'PH56','Exposure to or harmful effects of undetermined intent of other or unspecified substances chiefly nonmedicinal as to source','Y','2025-10-23 00:00:00'),(83175,11,'PH48','Exposure to or harmful effects of undetermined intent of other or unspecified drugs, medicaments or biological substances','Y','2025-10-23 00:00:00'),(83174,11,'PH51','Exposure to or harmful effects of undetermined intent of organic solvents','Y','2025-10-23 00:00:00'),(83173,11,'PH40','Exposure to or harmful effects of undetermined intent of opioids or related analgesics','Y','2025-10-23 00:00:00'),(83172,11,'PH49','Exposure to or harmful effects of undetermined intent of multiple drugs, medicaments or biological substances','Y','2025-10-23 00:00:00'),(83171,11,'PH55','Exposure to or harmful effects of undetermined intent of halogen derivatives of aliphatic or aromatic hydrocarbons','Y','2025-10-23 00:00:00'),(83170,11,'PH54','Exposure to or harmful effects of undetermined intent of corrosive substances','Y','2025-10-23 00:00:00'),(83169,11,'PH52','Exposure to or harmful effects of undetermined intent of carbon monoxide','Y','2025-10-23 00:00:00'),(83168,11,'PH43','Exposure to or harmful effects of undetermined intent of cannabinoids or hallucinogens','Y','2025-10-23 00:00:00'),(83167,11,'PH46','Exposure to or harmful effects of undetermined intent of antipsychotics','Y','2025-10-23 00:00:00'),(83166,11,'PH47','Exposure to or harmful effects of undetermined intent of antiepileptics or antiparkinsonism drugs','Y','2025-10-23 00:00:00'),(83165,11,'PH45','Exposure to or harmful effects of undetermined intent of antidepressants','Y','2025-10-23 00:00:00'),(83164,11,'PH44','Exposure to or harmful effects of undetermined intent of analgesics, antipyretics or nonsteroidal anti-inflammatory drugs','Y','2025-10-23 00:00:00'),(83163,11,'PH50','Exposure to or harmful effects of undetermined intent of alcohols','Y','2025-10-23 00:00:00'),(83162,11,'XE3SH','Exposure to or harmful effects of substances','Y','2025-10-23 00:00:00'),(83161,11,'XE214','Exposure to object, not elsewhere classified','Y','2025-10-23 00:00:00'),(83160,11,'XE7Y1','Exposure to noise','Y','2025-10-23 00:00:00'),(83158,11,'XE67J','Exposure to low air pressure','Y','2025-10-23 00:00:00'),(83159,11,'XE6VK','Exposure to microwave radiation','Y','2025-10-23 00:00:00'),(83157,11,'XE9EE','Exposure to land transport on-road injury event','Y','2025-10-23 00:00:00'),(83155,11,'XE9S7','Exposure to land transport injury event','Y','2025-10-23 00:00:00'),(83156,11,'XE8TM','Exposure to land transport off-road injury event','Y','2025-10-23 00:00:00'),(83154,11,'XE5PJ','Exposure to ionizing radiation','Y','2025-10-23 00:00:00'),(83153,11,'XE72E','Exposure to injurious transport event','Y','2025-10-23 00:00:00'),(83151,11,'XE64Q','Exposure to immersion, submersion or falling into water','Y','2025-10-23 00:00:00'),(83152,11,'XE9G0','Exposure to infrared radiation','Y','2025-10-23 00:00:00'),(83150,11,'XE9T8','Exposure to ignition, or melting of material','Y','2025-10-23 00:00:00'),(83149,11,'PH32','Exposure to ignition or melting of materials with undetermined intent','Y','2025-10-23 00:00:00'),(83148,11,'XE494','Exposure to hot object or liquid','Y','2025-10-23 00:00:00'),(83147,11,'PH74','Exposure to high or low air pressure or changes in air pressure with undetermined intent','Y','2025-10-23 00:00:00'),(83146,11,'XE5DF','Exposure to high or low air pressure or changes in air pressure','Y','2025-10-23 00:00:00'),(83145,11,'XE07M','Exposure to high air pressure','Y','2025-10-23 00:00:00'),(83144,11,'PH70','Exposure to foreign body in orifice or eye with undetermined intent','Y','2025-10-23 00:00:00'),(83143,11,'XE8J4','Exposure to fall on the same level or from less than 1 metre','Y','2025-10-23 00:00:00'),(83141,11,'XE3Y8','Exposure to fall','Y','2025-10-23 00:00:00'),(83142,11,'XE3QG','Exposure to fall from a height of 1 metre or more','Y','2025-10-23 00:00:00'),(83140,11,'PH75.Z','Exposure to explosion with undetermined intent, unspecified','Y','2025-10-23 00:00:00'),(83139,11,'PH75','Exposure to explosion with undetermined intent','Y','2025-10-23 00:00:00'),(83138,11,'PH75.1','Exposure to explosion or rupture of pressurised materials or object with undetermined intent','Y','2025-10-23 00:00:00'),(83137,11,'XE27P','Exposure to explosion or rupture of pressurised materials or object','Y','2025-10-23 00:00:00'),(83136,11,'XE9Y8','Exposure to explosion','Y','2025-10-23 00:00:00'),(83135,11,'PH35','Exposure to excessive heat with undetermined intent','Y','2025-10-23 00:00:00'),(83134,11,'XE00Z','Exposure to excessive heat','Y','2025-10-23 00:00:00'),(83133,11,'PH36','Exposure to excessive cold with undetermined intent','Y','2025-10-23 00:00:00'),(83132,11,'XE4AY','Exposure to excessive cold','Y','2025-10-23 00:00:00'),(83131,11,'PH71','Exposure to electric current with undetermined intent','Y','2025-10-23 00:00:00'),(83130,11,'XE8A0','Exposure to electric current','Y','2025-10-23 00:00:00'),(83129,11,'XE72F','Exposure to drowning or submersion, while in body of water','Y','2025-10-23 00:00:00'),(83128,11,'XE1AF','Exposure to drowning or submersion, following fall into body of water','Y','2025-10-23 00:00:00'),(83126,11,'PH31','Exposure to controlled fire with undetermined intent','Y','2025-10-23 00:00:00'),(83127,11,'QE81','Exposure to disaster, war or other hostilities','Y','2025-10-23 00:00:00'),(83125,11,'XE5WP','Exposure to controlled fire','Y','2025-10-23 00:00:00'),(83124,11,'QC90.00','Exposure to cholera','Y','2025-10-23 00:00:00'),(83122,11,'XE22U','Exposure to chemical explosion','Y','2025-10-23 00:00:00'),(83123,11,'PH75.0','Exposure to chemical explosion with undetermined intent','Y','2025-10-23 00:00:00'),(83121,11,'XE4ZB','Exposure to changes in air pressure','Y','2025-10-23 00:00:00'),(83120,11,'XE972','Exposure to being stung or envenomated','Y','2025-10-23 00:00:00'),(83119,11,'XE1TU','Exposure to being struck, kicked, or bumped','Y','2025-10-23 00:00:00'),(83118,11,'XE2YW','Exposure to being struck by projectile from firearm','Y','2025-10-23 00:00:00'),(83117,11,'XE4UV','Exposure to being struck by moving object','Y','2025-10-23 00:00:00'),(83116,11,'XE59C','Exposure to being struck by blunt object','Y','2025-10-23 00:00:00'),(83115,11,'XE6LQ','Exposure to being struck against stationary object','Y','2025-10-23 00:00:00'),(83114,11,'XE0VW','Exposure to being stepped on or crushed','Y','2025-10-23 00:00:00'),(83113,11,'XE9PG','Exposure to being scratched or clawed','Y','2025-10-23 00:00:00'),(83112,11,'XE20S','Exposure to being cut or pierced by sharp object','Y','2025-10-23 00:00:00'),(83111,11,'XE4FE','Exposure to being caught, crushed, jammed or pinched between objects','Y','2025-10-23 00:00:00'),(83110,11,'XE359','Exposure to being bitten','Y','2025-10-23 00:00:00'),(83108,11,'9A73','Exposure keratitis','Y','2025-10-23 00:00:00'),(83109,11,'XE5XH','Exposure to air or space transport injury event','Y','2025-10-23 00:00:00'),(83107,11,'XE3WL','Explosive material or flammable object, not elsewhere classified','Y','2025-10-23 00:00:00'),(83106,11,'XE59Q','Explosive','Y','2025-10-23 00:00:00'),(83105,11,'PJ6Z','Explosion of unspecified marine weapon','Y','2025-10-23 00:00:00'),(83104,11,'PJ61','Explosion of torpedo during armed conflict','Y','2025-10-23 00:00:00'),(83103,11,'PJ62','Explosion of sea-based artillery shell during armed conflict','Y','2025-10-23 00:00:00'),(83102,11,'PJ6Y','Explosion of other marine weapons during armed conflict','Y','2025-10-23 00:00:00'),(83101,11,'PJ82','Explosion of munitions or weapons during armed conflict','Y','2025-10-23 00:00:00'),(83100,11,'PJ80','Explosion of missile during armed conflict','Y','2025-10-23 00:00:00'),(83099,11,'PK40','Explosion of mine after cessation of armed conflict','Y','2025-10-23 00:00:00'),(83098,11,'PJ83','Explosion of improvised explosive device during armed conflict','Y','2025-10-23 00:00:00'),(83097,11,'PJ60','Explosion of depth-charge or marine mine during armed conflict','Y','2025-10-23 00:00:00'),(83096,11,'PK41','Explosion of bomb after cessation of armed conflict','Y','2025-10-23 00:00:00'),(83095,11,'PJ81','Explosion of aerial bomb during armed conflict','Y','2025-10-23 00:00:00'),(83094,11,'XE5EZ','Explosion','Y','2025-10-23 00:00:00'),(83093,11,'PL13.8','Expired or deteriorated medication or substance, as mode of injury or harm','Y','2025-10-23 00:00:00'),(83092,11,'QA78','Expired or deteriorated medication or substance without injury or harm','Y','2025-10-23 00:00:00'),(83091,11,'MB26.1Z','Experiences of influence, passivity, and control, unspecified','Y','2025-10-23 00:00:00'),(83090,11,'MB26.1','Experiences of influence, passivity, and control','Y','2025-10-23 00:00:00'),(83089,11,'QA44','Expectant parent pre-birth visit','Y','2025-10-23 00:00:00'),(83088,11,'9A24.1','Expansion of orbit','Y','2025-10-23 00:00:00'),(83087,11,'EL50.3','Expanded surgical scar','Y','2025-10-23 00:00:00'),(83086,11,'9C80.1','Exotropia','Y','2025-10-23 00:00:00'),(83085,11,'9A24.4','Exostosis of orbit','Y','2025-10-23 00:00:00'),(83084,11,'DA06.2','Exostosis of jaw','Y','2025-10-23 00:00:00'),(83083,11,'AA40.0','Exostosis of external auditory canal','Y','2025-10-23 00:00:00'),(83082,11,'LD24.21','Exostoses with anetodermia and brachydactyly type E','Y','2025-10-23 00:00:00'),(83081,11,'XM6CR4','Ex-Lax (phenolphthalein)','Y','2025-10-23 00:00:00'),(83080,11,'6D30','Exhibitionistic disorder','Y','2025-10-23 00:00:00'),(83079,11,'NF07.2','Exhaustion due to exposure','Y','2025-10-23 00:00:00'),(83078,11,'DA0A.0','Exfoliation of teeth due to systemic causes','Y','2025-10-23 00:00:00'),(83077,11,'NF06.0','Exertional heat stroke','Y','2025-10-23 00:00:00'),(83076,11,'MB48.2','Exertional dizziness','Y','2025-10-23 00:00:00'),(83075,11,'CA23.21','Exercise-induced bronchospasm','Y','2025-10-23 00:00:00'),(83074,11,'4A84.30','Exercise-induced anaphylaxis','Y','2025-10-23 00:00:00'),(83073,11,'XE1EH','Exercise, fitness equipment movable','Y','2025-10-23 00:00:00'),(83072,11,'XE6G9','Exercise, fitness equipment fixed','Y','2025-10-23 00:00:00'),(83071,11,'VV30','Exercise tolerance functions','Y','2025-10-23 00:00:00'),(83070,11,'NF06.3','Exercise muscle cramp','Y','2025-10-23 00:00:00'),(83069,11,'XM06C6','Exenatide','Y','2025-10-23 00:00:00'),(83068,11,'XM2VT0','Exemestane','Y','2025-10-23 00:00:00'),(83067,11,'XE8FT','Excrement, human or animal','Y','2025-10-23 00:00:00'),(83066,11,'6B25.1','Excoriation disorder','Y','2025-10-23 00:00:00'),(83065,11,'MG43.5','Excessive weight loss','Y','2025-10-23 00:00:00'),(83064,11,'JA65.2','Excessive weight gain in pregnancy','Y','2025-10-23 00:00:00'),(83063,11,'MG43.6','Excessive weight gain','Y','2025-10-23 00:00:00'),(83062,11,'JA60.Z','Excessive vomiting in pregnancy, unspecified','Y','2025-10-23 00:00:00'),(83061,11,'JA60','Excessive vomiting in pregnancy','Y','2025-10-23 00:00:00'),(83060,11,'8A07.2','Excessive startle reflex','Y','2025-10-23 00:00:00'),(83058,11,'XE9HT','Excessive heating of device problem identified','Y','2025-10-23 00:00:00'),(83059,11,'GA22','Excessive menstruation with irregular cycle','Y','2025-10-23 00:00:00'),(83057,11,'XE77H','Excessive heating','Y','2025-10-23 00:00:00'),(83056,11,'MG44.0','Excessive crying of infant','Y','2025-10-23 00:00:00'),(83055,11,'MB23.A','Excessive crying of child, adolescent, or adult','Y','2025-10-23 00:00:00'),(83054,11,'XE9C7','Excessive cooling','Y','2025-10-23 00:00:00'),(83053,11,'GA30.02','Excessive bleeding in the premenopausal period','Y','2025-10-23 00:00:00'),(83051,11,'SE74','Excess pattern (TM1)','Y','2025-10-23 00:00:00'),(83052,11,'DA08.10','Excessive attrition of teeth','Y','2025-10-23 00:00:00'),(83050,11,'XE6YH','Excess flow or over-infusion','Y','2025-10-23 00:00:00'),(83049,11,'ME66.2','Excess and redundant skin','Y','2025-10-23 00:00:00'),(83048,11,'KA22.0','Exceptionally large newborn','Y','2025-10-23 00:00:00'),(83047,11,'XE6XP','Excavator, digger, mechanical shovel','Y','2025-10-23 00:00:00'),(83046,11,'EH60','Exanthematic drug eruption','Y','2025-10-23 00:00:00'),(83045,11,'QA04.51','Examination or observation for suspected sexual maltreatment','Y','2025-10-23 00:00:00'),(83044,11,'QA04.52','Examination or observation for suspected psychological maltreatment','Y','2025-10-23 00:00:00'),(83043,11,'QA04.50','Examination or observation for suspected physical maltreatment','Y','2025-10-23 00:00:00'),(83042,11,'QA04.53','Examination or observation for suspected neglect or abandonment','Y','2025-10-23 00:00:00'),(83041,11,'QA04.5Z','Examination or observation for suspected maltreatment, unspecified','Y','2025-10-23 00:00:00'),(83040,11,'QA04.5','Examination or observation for suspected maltreatment','Y','2025-10-23 00:00:00'),(83039,11,'QA04.Z','Examination or observation for reasons other than suspected diseases or conditions or administrative purposes, unspecified','Y','2025-10-23 00:00:00'),(83038,11,'QA04','Examination or observation for reasons other than suspected diseases or conditions or administrative purposes','Y','2025-10-23 00:00:00'),(83037,11,'QA04.3','Examination or observation following work accident','Y','2025-10-23 00:00:00'),(83036,11,'QA04.2','Examination or observation following transport accident','Y','2025-10-23 00:00:00'),(83035,11,'QA04.4','Examination or observation following accident other than work or transport','Y','2025-10-23 00:00:00'),(83034,11,'QA0Z','Examination or investigation, unspecified','Y','2025-10-23 00:00:00'),(83033,11,'QA01.Z','Examination or encounter for administrative purposes, unspecified','Y','2025-10-23 00:00:00'),(83032,11,'QA01','Examination or encounter for administrative purposes','Y','2025-10-23 00:00:00'),(83031,11,'QA00.4','Examination of potential donor of organ or tissue','Y','2025-10-23 00:00:00'),(83030,11,'QA00.6Z','Examination of eyes or vision, unspecified','Y','2025-10-23 00:00:00'),(83029,11,'QA00.6','Examination of eyes or vision','Y','2025-10-23 00:00:00'),(83028,11,'QA00.7','Examination of ears and hearing','Y','2025-10-23 00:00:00'),(83027,11,'QA01.3','Examination for recruitment to armed forces','Y','2025-10-23 00:00:00'),(83026,11,'QA01.5','Examination for participation in sport','Y','2025-10-23 00:00:00'),(83025,11,'QA00.5','Examination for normal comparison or control in clinical research programme','Y','2025-10-23 00:00:00'),(83024,11,'QA04.7','Examination for medicolegal reasons','Y','2025-10-23 00:00:00'),(83023,11,'QA01.6','Examination for insurance purposes','Y','2025-10-23 00:00:00'),(83022,11,'QA01.4','Examination for driving license','Y','2025-10-23 00:00:00'),(83021,11,'QA01.2','Examination for admission to residential institutions','Y','2025-10-23 00:00:00'),(83020,11,'QA01.0','Examination for admission to educational institution','Y','2025-10-23 00:00:00'),(83019,11,'XD3ZH8','Examination / treatment gloves, nitrile','Y','2025-10-23 00:00:00'),(83018,11,'XM2258','Exalamide','Y','2025-10-23 00:00:00'),(83017,11,'2B52','Ewing sarcoma, primary site','Y','2025-10-23 00:00:00'),(83016,11,'2B52.3','Ewing sarcoma of soft tissue','Y','2025-10-23 00:00:00'),(83015,11,'2B52.2','Ewing sarcoma of bone or articular cartilage of ribs','Y','2025-10-23 00:00:00'),(83014,11,'2B52.1','Ewing sarcoma of bone or articular cartilage of pelvis','Y','2025-10-23 00:00:00'),(83013,11,'2B52.0','Ewing sarcoma of bone or articular cartilage of limbs','Y','2025-10-23 00:00:00'),(83012,11,'2B52.Z','Ewing sarcoma of bone and articular cartilage of unspecified sites','Y','2025-10-23 00:00:00'),(83011,11,'2B52.Y','Ewing sarcoma of bone and articular cartilage of other specified sites','Y','2025-10-23 00:00:00'),(83010,11,'XH8KJ8','Ewing sarcoma','Y','2025-10-23 00:00:00'),(83009,11,'XM9F64','Evolocumab','Y','2025-10-23 00:00:00'),(83008,11,'XM5SF9','Evogliptin','Y','2025-10-23 00:00:00'),(83007,11,'XM93E9','Evipal sodium','Y','2025-10-23 00:00:00'),(83006,11,'XM2KT4','Evinacumab','Y','2025-10-23 00:00:00'),(83005,11,'9A11.0','Eversion of lacrimal punctum','Y','2025-10-23 00:00:00'),(83003,11,'XM6635','Evernic acid','Y','2025-10-23 00:00:00'),(83004,11,'XM69S5','Everolimus','Y','2025-10-23 00:00:00'),(83002,11,'XM9CZ8','Evernia prunastri extract','Y','2025-10-23 00:00:00'),(83001,11,'XN26A','Everglades virus','Y','2025-10-23 00:00:00'),(83000,11,'QE96','Events resulting in loss of self-esteem in childhood','Y','2025-10-23 00:00:00'),(82999,11,'XE9CC','Even surface, not elsewhere classified','Y','2025-10-23 00:00:00'),(82998,11,'3A20.5','Evans syndrome','Y','2025-10-23 00:00:00'),(82997,11,'XM34X2','Evans blue','Y','2025-10-23 00:00:00'),(82996,11,'XM5M40','Euthroid','Y','2025-10-23 00:00:00'),(82995,11,'XA7XY6','Eustachian tube','Y','2025-10-23 00:00:00'),(82994,11,'AB10.2','Eustachian salpingitis','Y','2025-10-23 00:00:00'),(82993,11,'XM2J41','European adder snake venom','Y','2025-10-23 00:00:00'),(82991,11,'XM91H3','Eurax','Y','2025-10-23 00:00:00'),(82992,11,'XM7WC9','Euresol','Y','2025-10-23 00:00:00'),(82990,11,'XM1VS4','Euphthalmine','Y','2025-10-23 00:00:00'),(82988,11,'XM4TJ7','Euphorbia plant','Y','2025-10-23 00:00:00'),(82989,11,'MB24.9','Euphoria','Y','2025-10-23 00:00:00'),(82986,11,'XM6CP3','Eugenol','Y','2025-10-23 00:00:00'),(82987,11,'1F29','Eumycetoma','Y','2025-10-23 00:00:00'),(82984,11,'XM7HX3','Eucodal','Y','2025-10-23 00:00:00'),(82985,11,'XM2UH3','Euflavine','Y','2025-10-23 00:00:00'),(82983,11,'XM8PJ6','Eucatropine','Y','2025-10-23 00:00:00'),(82982,11,'XM0PR1','Eucalyptus oil','Y','2025-10-23 00:00:00'),(82981,11,'XM2F20','Eucaine','Y','2025-10-23 00:00:00'),(82980,11,'XM2789','Etybenzatropine','Y','2025-10-23 00:00:00'),(82979,11,'XM9FY1','Etryptamine','Y','2025-10-23 00:00:00'),(82978,11,'XM0Z07','Etretinate','Y','2025-10-23 00:00:00'),(82977,11,'XM7N44','Etravirine','Y','2025-10-23 00:00:00'),(82976,11,'XM1H00','Etozolin','Y','2025-10-23 00:00:00'),(82974,11,'XM2W58','Etoricoxib','Y','2025-10-23 00:00:00'),(82975,11,'XM02X7','Etorphine','Y','2025-10-23 00:00:00'),(82973,11,'XM9VL7','Etoposide','Y','2025-10-23 00:00:00'),(82972,11,'XM4MF4','Etoperidone','Y','2025-10-23 00:00:00'),(82971,11,'XM94C4','Etonogestrel','Y','2025-10-23 00:00:00'),(82970,11,'XM62B7','Etomidoline','Y','2025-10-23 00:00:00'),(82969,11,'XM9455','Etomide','Y','2025-10-23 00:00:00'),(82968,11,'XM5MB2','Etomidate','Y','2025-10-23 00:00:00'),(82967,11,'XM2Y03','Etohexadiol','Y','2025-10-23 00:00:00'),(82966,11,'XM4KL3','Etoglucid','Y','2025-10-23 00:00:00'),(82965,11,'XM0JV4','Etofylline nicotinate','Y','2025-10-23 00:00:00'),(82964,11,'XM6B07','Etofylline clofibrate','Y','2025-10-23 00:00:00'),(82963,11,'XM9CH9','Etofylline','Y','2025-10-23 00:00:00'),(82962,11,'XM4390','Etofibrate','Y','2025-10-23 00:00:00'),(82961,11,'XM8N69','Etofenamate','Y','2025-10-23 00:00:00'),(82960,11,'XM3PL8','Etofamide','Y','2025-10-23 00:00:00'),(82959,11,'XM2186','Etodolac','Y','2025-10-23 00:00:00'),(82958,11,'XM9DN9','Etizolam','Y','2025-10-23 00:00:00'),(82957,11,'XM0TN1','Etiroxate','Y','2025-10-23 00:00:00'),(82956,11,'XM0569','Etirinotecan pegol','Y','2025-10-23 00:00:00'),(82955,11,'XM6R13','Etilevodopa and Decarboxylase inhibitor','Y','2025-10-23 00:00:00'),(82954,11,'XM9187','Etilefrine','Y','2025-10-23 00:00:00'),(82953,11,'XM7830','Etilamfetamine','Y','2025-10-23 00:00:00'),(82952,11,'XM0959','Etifoxine','Y','2025-10-23 00:00:00'),(82951,11,'XM6UW3','Etidronic acid','Y','2025-10-23 00:00:00'),(82950,11,'XM8RU6','Etidocaine nerve block','Y','2025-10-23 00:00:00'),(82949,11,'XM8013','Etidocaine infiltration','Y','2025-10-23 00:00:00'),(82948,11,'XM8X57','Etidocaine','Y','2025-10-23 00:00:00'),(82947,11,'XM8HJ8','Ethynodiol with mestranol diacetate','Y','2025-10-23 00:00:00'),(82946,11,'XM6TX3','Ethynodiol','Y','2025-10-23 00:00:00'),(82945,11,'XM8FC2','Ethylparachlorophen-oxyisobutyrate','Y','2025-10-23 00:00:00'),(82944,11,'XM9K94','Ethylnorepinephrine','Y','2025-10-23 00:00:00'),(82943,11,'XM3WN9','Ethylmorphine','Y','2025-10-23 00:00:00'),(82942,11,'XM7AL6','Ethylidene dicoumarol','Y','2025-10-23 00:00:00'),(82941,11,'XM14Q4','Ethylidene diacetate','Y','2025-10-23 00:00:00'),(82940,11,'XM2UB3','Ethylhydroxycellulose','Y','2025-10-23 00:00:00'),(82939,11,'XM2ZT3','Ethylhexyl methoxycinnamate','Y','2025-10-23 00:00:00'),(82938,11,'XM54A1','Ethylestrenol','Y','2025-10-23 00:00:00'),(82937,11,'XM5T39','Ethylenediamine dihydrochloride','Y','2025-10-23 00:00:00'),(82936,11,'XM0C04','Ethylene','Y','2025-10-23 00:00:00'),(82935,11,'XM4E62','Ethylene','Y','2025-10-23 00:00:00'),(82934,11,'XM09B1','Ethylene oxide medicinal','Y','2025-10-23 00:00:00'),(82933,11,'XM4G15','Ethylene oxide','Y','2025-10-23 00:00:00'),(82932,11,'XM66A3','Ethylene imines','Y','2025-10-23 00:00:00'),(82931,11,'XM8BF5','Ethylene glycol monobutyl ether','Y','2025-10-23 00:00:00'),(82930,11,'XM0WA9','Ethylene glycol dinitrate','Y','2025-10-23 00:00:00'),(82929,11,'XM1762','Ethylene glycol','Y','2025-10-23 00:00:00'),(82928,11,'XM8QX0','Ethylene dichloride vapor','Y','2025-10-23 00:00:00'),(82927,11,'XM4Z80','Ethylene dichloride','Y','2025-10-23 00:00:00'),(82926,11,'XM5HK4','Ethylene chlorohydrin vapor','Y','2025-10-23 00:00:00'),(82925,11,'XM9B31','Ethylene chlorohydrin','Y','2025-10-23 00:00:00'),(82924,11,'XM6WF0','Ethylene anaesthetic','Y','2025-10-23 00:00:00'),(82923,11,'XM1947','Ethylene','Y','2025-10-23 00:00:00'),(82922,11,'XM1CG8','Ethyl parahydroxybenzoate','Y','2025-10-23 00:00:00'),(82921,11,'XM6FQ2','Ethyl oxybutyrate','Y','2025-10-23 00:00:00'),(82920,11,'XM2VC0','Ethyl methylcarbinol','Y','2025-10-23 00:00:00'),(82919,11,'XM8JX9','Ethyl mercuric chloride','Y','2025-10-23 00:00:00'),(82918,11,'XM54N1','Ethyl loflazepate','Y','2025-10-23 00:00:00'),(82917,11,'XM3NZ9','Ethyl lactate','Y','2025-10-23 00:00:00'),(82916,11,'XM41V6','Ethyl iodoacetate','Y','2025-10-23 00:00:00'),(82915,11,'XM7TN8','Ethyl hydroxyisobutyrate','Y','2025-10-23 00:00:00'),(82914,11,'XM67B0','Ethyl hydroxybenzoate','Y','2025-10-23 00:00:00'),(82913,11,'XM4P92','Ethyl fumarate','Y','2025-10-23 00:00:00'),(82912,11,'XM6FX9','Ethyl formate','Y','2025-10-23 00:00:00'),(82911,11,'XM0N40','Ethyl ether','Y','2025-10-23 00:00:00'),(82910,11,'XM6SE3','Ethyl esters of iodised fatty acids','Y','2025-10-23 00:00:00'),(82909,11,'XM1AE2','Ethyl dichloroarsine','Y','2025-10-23 00:00:00'),(82908,11,'XM61F3','Ethyl dibunate','Y','2025-10-23 00:00:00'),(82907,11,'XM87H9','Ethyl chloride local anaesthetic','Y','2025-10-23 00:00:00'),(82906,11,'XM3JC8','Ethyl chloride local','Y','2025-10-23 00:00:00'),(82905,11,'XM2D90','Ethyl chloride anaesthetic','Y','2025-10-23 00:00:00'),(82904,11,'XM45K4','Ethyl chloride','Y','2025-10-23 00:00:00'),(82903,11,'XM64N2','Ethyl chaulmoograte','Y','2025-10-23 00:00:00'),(82902,11,'XM77E6','Ethyl carbonate','Y','2025-10-23 00:00:00'),(82901,11,'XM3EA4','Ethyl bromide anaesthetic','Y','2025-10-23 00:00:00'),(82900,11,'XM5XY7','Ethyl biscoumacetate','Y','2025-10-23 00:00:00'),(82899,11,'XM29X5','Ethyl benzoate','Y','2025-10-23 00:00:00'),(82898,11,'XM5EP8','Ethyl aminophenothiazine','Y','2025-10-23 00:00:00'),(82897,11,'XM1WJ3','Ethyl aminobenzoate','Y','2025-10-23 00:00:00'),(82896,11,'XM00H9','Ethyl acetate','Y','2025-10-23 00:00:00'),(82895,11,'XM0LV6','Ethulose','Y','2025-10-23 00:00:00'),(82894,11,'XM4DH5','Ethoxzolamide','Y','2025-10-23 00:00:00'),(82893,11,'XM8AB2','Ethoxazorutoside','Y','2025-10-23 00:00:00'),(82892,11,'XM9C36','Ethoxazene','Y','2025-10-23 00:00:00'),(82891,11,'XM8MV0','Ethotoin','Y','2025-10-23 00:00:00'),(82890,11,'XM1K85','Ethosuximide','Y','2025-10-23 00:00:00'),(82889,11,'XM9F71','Ethoprophos','Y','2025-10-23 00:00:00'),(82888,11,'XM6CK0','Ethoheptazine','Y','2025-10-23 00:00:00'),(82887,11,'XM7217','Ethocaine spinal','Y','2025-10-23 00:00:00'),(82886,11,'XM6585','Ethocaine nerve block','Y','2025-10-23 00:00:00'),(82885,11,'XM2H77','Ethocaine infiltration','Y','2025-10-23 00:00:00'),(82884,11,'XA5BP8','Ethmoidal nerve','Y','2025-10-23 00:00:00'),(82883,11,'XA58F6','Ethmoid sinus','Y','2025-10-23 00:00:00'),(82882,11,'XA2SR4','Ethmoid bone','Y','2025-10-23 00:00:00'),(82881,11,'XM0TH1','Ethisterone','Y','2025-10-23 00:00:00'),(82880,11,'XM86N7','Ethionamide','Y','2025-10-23 00:00:00'),(82879,11,'XM7X81','Ethion','Y','2025-10-23 00:00:00'),(82878,11,'XM8FU1','Ethiofencarb','Y','2025-10-23 00:00:00'),(82877,11,'XM1WG6','Ethiodized oil (131 i)','Y','2025-10-23 00:00:00'),(82876,11,'XM1SV5','Ethinyloestradiol','Y','2025-10-23 00:00:00'),(82875,11,'XM7M76','Ethinylestradiol, ethinyloestradiol with norethisterone','Y','2025-10-23 00:00:00'),(82874,11,'XM3WW4','Ethinylestradiol, ethinyloestradiol with levonorgestrel','Y','2025-10-23 00:00:00'),(82873,11,'XM8HM5','Ethinamate','Y','2025-10-23 00:00:00'),(82872,11,'XM0YQ4','Ethidium chloride','Y','2025-10-23 00:00:00'),(82871,11,'XM96H7','Ether-soluble tar distillate','Y','2025-10-23 00:00:00'),(82870,11,'XM72C6','Ethers of tropine or tropine derivatives','Y','2025-10-23 00:00:00'),(82869,11,'XM3B14','Ethers chemically close to antihistamines','Y','2025-10-23 00:00:00'),(82868,11,'XM4VX3','Ethers','Y','2025-10-23 00:00:00'),(82867,11,'XM3ZP5','Ethenzamide','Y','2025-10-23 00:00:00'),(82866,11,'XM0M93','Ethebenecid','Y','2025-10-23 00:00:00'),(82865,11,'XM4SW2','Ethchlorvynol','Y','2025-10-23 00:00:00'),(82864,11,'XM17M9','Ethaverine','Y','2025-10-23 00:00:00'),(82863,11,'XM1ME2','Ethanolamine oleate','Y','2025-10-23 00:00:00'),(82862,11,'XM8RP6','Ethanol motor fuel','Y','2025-10-23 00:00:00'),(82861,11,'XM6DN6','Ethanol disinfectant','Y','2025-10-23 00:00:00'),(82860,11,'XM8ZW3','Ethanol','Y','2025-10-23 00:00:00'),(82859,11,'XM4N96','Ethambutol','Y','2025-10-23 00:00:00'),(82858,11,'XM9993','Ethadione','Y','2025-10-23 00:00:00'),(82857,11,'XM79L6','Ethacrynate sodium','Y','2025-10-23 00:00:00'),(82856,11,'XM4UE1','Ethacridine lactate','Y','2025-10-23 00:00:00'),(82855,11,'XM5QE6','Ethacridine','Y','2025-10-23 00:00:00'),(82854,11,'XM23Q8','Ethacizine','Y','2025-10-23 00:00:00'),(82853,11,'XM0BM1','Eteplirsen','Y','2025-10-23 00:00:00'),(82852,11,'XM0NY4','Etelcalcetide','Y','2025-10-23 00:00:00'),(82851,11,'XM0FU1','Etanercept','Y','2025-10-23 00:00:00'),(82850,11,'XM8UB6','Etanautine','Y','2025-10-23 00:00:00'),(82849,11,'XM1VC9','Etamsylate','Y','2025-10-23 00:00:00'),(82848,11,'XM6D72','Etamivan','Y','2025-10-23 00:00:00'),(82847,11,'XM1W21','Etamiphylline','Y','2025-10-23 00:00:00'),(82846,11,'XM1WN6','Etallobarbital','Y','2025-10-23 00:00:00'),(82845,11,'XM3ZB0','Etafenone','Y','2025-10-23 00:00:00'),(82844,11,'XM4YX5','Etafedrine','Y','2025-10-23 00:00:00'),(82843,11,'XM2LW1','Etacrynic acid','Y','2025-10-23 00:00:00'),(82842,11,'XM4DP1','Eszopiclone','Y','2025-10-23 00:00:00'),(82841,11,'XM6133','Estropipate','Y','2025-10-23 00:00:00'),(82840,11,'XM8YK8','Estrone','Y','2025-10-23 00:00:00'),(82839,11,'XM70N0','Estrogens','Y','2025-10-23 00:00:00'),(82838,11,'XM2GR3','Estrogen with progesterone','Y','2025-10-23 00:00:00'),(82837,11,'XM56M0','Estrogen conjugated','Y','2025-10-23 00:00:00'),(82835,11,'XM4EH0','Estriol','Y','2025-10-23 00:00:00'),(82836,11,'XM7CP4','Estrogen','Y','2025-10-23 00:00:00'),(82834,11,'XM9JX7','Estramustine','Y','2025-10-23 00:00:00'),(82833,11,'XM3UJ6','Estradiol with testosterone','Y','2025-10-23 00:00:00'),(82832,11,'XM39W0','Estradiol benzoate','Y','2025-10-23 00:00:00'),(82831,11,'XM9YX9','Estazolam','Y','2025-10-23 00:00:00'),(82830,11,'8A04.1','Essential tremor or related tremors','Y','2025-10-23 00:00:00'),(82829,11,'XH4ZM5','Essential thrombocythemia','Y','2025-10-23 00:00:00'),(82828,11,'XE4KX','Essential oils, oils used in aromatherapy','Y','2025-10-23 00:00:00'),(82827,11,'8A06.0','Essential myoclonus','Y','2025-10-23 00:00:00'),(82826,11,'BA00.Z','Essential hypertension, unspecified','Y','2025-10-23 00:00:00'),(82825,11,'BA00','Essential hypertension','Y','2025-10-23 00:00:00'),(82824,11,'5B70','Essential fatty acid deficiency','Y','2025-10-23 00:00:00'),(82823,11,'SF2Z','Essence patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(82822,11,'SF20','Essence deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(82821,11,'9C80.0','Esotropia','Y','2025-10-23 00:00:00'),(82820,11,'XM8YE1','Esomeprazole','Y','2025-10-23 00:00:00'),(82819,11,'XM4AB1','Esmolol','Y','2025-10-23 00:00:00'),(82818,11,'XM5HL7','Eslicarbazepine','Y','2025-10-23 00:00:00'),(82817,11,'XM2W08','Esketamine','Y','2025-10-23 00:00:00'),(82815,11,'XM93T6','Esculin','Y','2025-10-23 00:00:00'),(82816,11,'XM76R8','Esfenvalerate','Y','2025-10-23 00:00:00'),(82814,11,'XM7PX8','Escitalopram','Y','2025-10-23 00:00:00'),(82813,11,'XM1H36','Escin','Y','2025-10-23 00:00:00'),(82812,11,'XN2S7','Escherichia vulneris','Y','2025-10-23 00:00:00'),(82811,11,'XN6MP','Escherichia hermannii','Y','2025-10-23 00:00:00'),(82810,11,'MG50.2Z','Escherichia coli resistant to unspecified antibiotic','Y','2025-10-23 00:00:00'),(82809,11,'MG50.2Y','Escherichia coli resistant to other antibiotic','Y','2025-10-23 00:00:00'),(82808,11,'XN6P4','Escherichia coli','Y','2025-10-23 00:00:00'),(82807,11,'XN4WC','Escherichia','Y','2025-10-23 00:00:00'),(82806,11,'XE73T','Escalator','Y','2025-10-23 00:00:00'),(82805,11,'XM1LE7','Erythroxylum coca lam plant','Y','2025-10-23 00:00:00'),(82804,11,'XN8PS','Erythrovirus','Y','2025-10-23 00:00:00'),(82803,11,'XM79U3','Erythropoietin human','Y','2025-10-23 00:00:00'),(82802,11,'XM9130','Erythropoietin','Y','2025-10-23 00:00:00'),(82801,11,'5C58.12','Erythropoietic porphyrias','Y','2025-10-23 00:00:00'),(82800,11,'XM8E88','Erythromycin topical','Y','2025-10-23 00:00:00'),(82799,11,'XM36F7','Erythromycin','Y','2025-10-23 00:00:00'),(82798,11,'EA90.3','Erythrodermic psoriasis','Y','2025-10-23 00:00:00'),(82797,11,'EH40.2','Erythrodermas of infancy','Y','2025-10-23 00:00:00'),(82796,11,'XM8QV9','Erythrocytes','Y','2025-10-23 00:00:00'),(82795,11,'XA8LY0','Erythroblast','Y','2025-10-23 00:00:00'),(82794,11,'ED90.00','Erythematotelangiectatic rosacea','Y','2025-10-23 00:00:00'),(82793,11,'EB31','Erythema nodosum','Y','2025-10-23 00:00:00'),(82792,11,'EB12.Z','Erythema multiforme, unspecified','Y','2025-10-23 00:00:00'),(82791,11,'DA01.13','Erythema multiforme with oral ulceration','Y','2025-10-23 00:00:00'),(82790,11,'EB12','Erythema multiforme','Y','2025-10-23 00:00:00'),(82789,11,'EA50.0','Erythema marginatum rheumaticum','Y','2025-10-23 00:00:00'),(82788,11,'1F04','Erythema infectiosum','Y','2025-10-23 00:00:00'),(82787,11,'EJ10','Erythema ab igne','Y','2025-10-23 00:00:00'),(82786,11,'ME64.0','Erythema','Y','2025-10-23 00:00:00'),(82785,11,'XN4FJ','Erysipelothrix rhusiopathiae','Y','2025-10-23 00:00:00'),(82784,11,'XN494','Erysipelothrix','Y','2025-10-23 00:00:00'),(82783,11,'1B96','Erysipeloid','Y','2025-10-23 00:00:00'),(82782,11,'1B70.0Y','Erysipelas of other specified site','Y','2025-10-23 00:00:00'),(82781,11,'1B70.02','Erysipelas of lower limb','Y','2025-10-23 00:00:00'),(82780,11,'1B70.00','Erysipelas of face','Y','2025-10-23 00:00:00'),(82779,11,'1B70.01','Erysipelas of external ear','Y','2025-10-23 00:00:00'),(82778,11,'SB77','Erysipelas disorder (TM1)','Y','2025-10-23 00:00:00'),(82777,11,'1B70.0','Erysipelas','Y','2025-10-23 00:00:00'),(82775,11,'DA0B.2','Eruptive gingivitis','Y','2025-10-23 00:00:00'),(82776,11,'EB90.22','Eruptive xanthoma','Y','2025-10-23 00:00:00'),(82774,11,'XM66V1','Ertugliflozin','Y','2025-10-23 00:00:00'),(82773,11,'XM50J4','Ertapenem','Y','2025-10-23 00:00:00'),(82771,11,'XE2ES','Erratic or intermittent display','Y','2025-10-23 00:00:00'),(82772,11,'XE1KR','Erroneous data transfer in device identified','Y','2025-10-23 00:00:00'),(82770,11,'MB26.04','Erotomanic delusion','Y','2025-10-23 00:00:00'),(82769,11,'EG30.1','Erosive pustular dermatosis of scalp','Y','2025-10-23 00:00:00'),(82768,11,'EA91.41','Erosive oral lichen planus','Y','2025-10-23 00:00:00'),(82767,11,'DA22.1','Erosive gastro-oesophageal reflux disease','Y','2025-10-23 00:00:00'),(82766,11,'GA15.1','Erosion or ectropion of cervix uteri','Y','2025-10-23 00:00:00'),(82765,11,'DA08.12','Erosion of teeth','Y','2025-10-23 00:00:00'),(82764,11,'XM6PT2','Ermekumab','Y','2025-10-23 00:00:00'),(82763,11,'XM3420','Erlotinib','Y','2025-10-23 00:00:00'),(82762,11,'XM8SP5','Eritrityl tetranitrate','Y','2025-10-23 00:00:00'),(82761,11,'XM3M65','Erionite','Y','2025-10-23 00:00:00'),(82760,11,'XM3BC3','Eribulin','Y','2025-10-23 00:00:00'),(82759,11,'XM5NB5','Ergotocine','Y','2025-10-23 00:00:00'),(82758,11,'XM5P25','Ergotamine','Y','2025-10-23 00:00:00'),(82757,11,'XM77J5','Ergot prepared','Y','2025-10-23 00:00:00'),(82756,11,'XM0Q45','Ergot derivative','Y','2025-10-23 00:00:00'),(82755,11,'XM0XY6','Ergot alkaloids','Y','2025-10-23 00:00:00'),(82754,11,'XM2BE5','Ergot alkaloid mycotoxin','Y','2025-10-23 00:00:00'),(82753,11,'XM3LX6','Ergometrine','Y','2025-10-23 00:00:00'),(82752,11,'XM0U65','Ergoloid mesylates','Y','2025-10-23 00:00:00'),(82751,11,'XM75Z5','Ergocalciferol','Y','2025-10-23 00:00:00'),(82750,11,'XM8LF5','Erenumab','Y','2025-10-23 00:00:00'),(82749,11,'XM7Y66','Erdosteine','Y','2025-10-23 00:00:00'),(82748,11,'XH1VJ3','Erdheim-Chester disease','Y','2025-10-23 00:00:00'),(82747,11,'XM3MD6','Erbium (169Er) citrate colloid','Y','2025-10-23 00:00:00'),(82745,11,'XM0XS0','Equisetum plant','Y','2025-10-23 00:00:00'),(82746,11,'KA44.10','Erb paralysis','Y','2025-10-23 00:00:00'),(82744,11,'XM0EC2','Equisetum diuretic','Y','2025-10-23 00:00:00'),(82743,11,'XE70Q','Equipment with wheels or designed for movement, mainly for use in sports or recreational activity','Y','2025-10-23 00:00:00'),(82742,11,'XE0LF','Equipment towed or powered by tractors, not elsewhere classified','Y','2025-10-23 00:00:00'),(82741,11,'XE1VC','Equipment pole component of medical device','Y','2025-10-23 00:00:00'),(82740,11,'XE0AQ','Equipment or structure for playing sports or exercise','Y','2025-10-23 00:00:00'),(82739,11,'XN81W','Equine influenza A H3N8 virus','Y','2025-10-23 00:00:00'),(82738,11,'XE2LU','Equestrian facility','Y','2025-10-23 00:00:00'),(82737,11,'XE42Q','Equestrian activities','Y','2025-10-23 00:00:00'),(82736,11,'XM8NB9','Eptotermin alfa','Y','2025-10-23 00:00:00'),(82735,11,'XM1D23','Eptinezumab','Y','2025-10-23 00:00:00'),(82734,11,'XM2924','Eptifibatide','Y','2025-10-23 00:00:00'),(82733,11,'XM4EW3','Eptazocine','Y','2025-10-23 00:00:00'),(82732,11,'2A81.6','Epstein-Barr Virus-positive diffuse large B cell lymphoma of the elderly','Y','2025-10-23 00:00:00'),(82731,11,'XN0R2','Epstein-Barr virus','Y','2025-10-23 00:00:00'),(82730,11,'XM40M7','Epsom salt','Y','2025-10-23 00:00:00'),(82729,11,'XN6HX','Epsilonretrovirus','Y','2025-10-23 00:00:00'),(82728,11,'XM7XD3','Epsilon amino-caproic acid','Y','2025-10-23 00:00:00'),(82726,11,'XM2F90','Eprosartan','Y','2025-10-23 00:00:00'),(82727,11,'XM40T5','Eprozinol','Y','2025-10-23 00:00:00'),(82725,11,'XM71N5','Eprazinone','Y','2025-10-23 00:00:00'),(82724,11,'XM23X0','Epoxy resin, not elsewhere classified','Y','2025-10-23 00:00:00'),(82723,11,'XM51R2','Epoprostenol','Y','2025-10-23 00:00:00'),(82722,11,'XA20L7','Eponychium of thumb','Y','2025-10-23 00:00:00'),(82721,11,'XA8DQ2','Eponychium of third toe','Y','2025-10-23 00:00:00'),(82720,11,'XA0SL7','Eponychium of second toe','Y','2025-10-23 00:00:00'),(82719,11,'XA8L06','Eponychium of ring finger','Y','2025-10-23 00:00:00'),(82718,11,'XA13L6','Eponychium of middle finger','Y','2025-10-23 00:00:00'),(82717,11,'XA2AV8','Eponychium of little finger','Y','2025-10-23 00:00:00'),(82716,11,'XA90K8','Eponychium of index finger','Y','2025-10-23 00:00:00'),(82715,11,'XA7WP9','Eponychium of great toe','Y','2025-10-23 00:00:00'),(82714,11,'XA0XZ8','Eponychium of fourth toe','Y','2025-10-23 00:00:00'),(82713,11,'XA2W24','Eponychium of fifth toe','Y','2025-10-23 00:00:00'),(82712,11,'XA1ES4','Eponychium','Y','2025-10-23 00:00:00'),(82711,11,'XM6T01','Epomediol','Y','2025-10-23 00:00:00'),(82710,11,'XM8VX7','Epoetin beta','Y','2025-10-23 00:00:00'),(82709,11,'XM6BM2','Epoetin alpha','Y','2025-10-23 00:00:00'),(82707,11,'XM5BC5','EPN','Y','2025-10-23 00:00:00'),(82708,11,'XM9TT2','EPO','Y','2025-10-23 00:00:00'),(82706,11,'XM0TH6','Eplerenone','Y','2025-10-23 00:00:00'),(82705,11,'XM3SK8','EpiVacCorona-N','Y','2025-10-23 00:00:00'),(82704,11,'XM6SZ8','EpiVacCorona','Y','2025-10-23 00:00:00'),(82703,11,'XA5183','Epitrochlear lymph node','Y','2025-10-23 00:00:00'),(82702,11,'XM8532','Epitizide','Y','2025-10-23 00:00:00'),(82701,11,'XM76Q0','Epitiostanol','Y','2025-10-23 00:00:00'),(82700,11,'XA56S9','Epithelium','Y','2025-10-23 00:00:00'),(82699,11,'XH4P61','Epithelioma, malignant','Y','2025-10-23 00:00:00'),(82698,11,'XH65S3','Epithelioma, benign','Y','2025-10-23 00:00:00'),(82697,11,'XH92Y0','Epithelioid sarcoma, undifferentiated','Y','2025-10-23 00:00:00'),(82696,11,'XH4F96','Epithelioid sarcoma','Y','2025-10-23 00:00:00'),(82695,11,'XH0VP5','Epithelioid mesothelioma, malignant','Y','2025-10-23 00:00:00'),(82694,11,'XH0KC4','Epithelioid mesothelioma, benign','Y','2025-10-23 00:00:00'),(82693,11,'XH13Z5','Epithelioid leiomyosarcoma','Y','2025-10-23 00:00:00'),(82692,11,'XH8S79','Epithelioid leiomyoma','Y','2025-10-23 00:00:00'),(82691,11,'XH10T4','Epithelioid haemangioma','Y','2025-10-23 00:00:00'),(82690,11,'XH9GF8','Epithelioid haemangioendothelioma, NOS','Y','2025-10-23 00:00:00'),(82689,11,'XH2BA5','Epithelioid glioblastoma','Y','2025-10-23 00:00:00'),(82688,11,'XH15M9','Epithelioid fibrous histiocytoma','Y','2025-10-23 00:00:00'),(82687,11,'XH79G6','Epithelioid cell naevus','Y','2025-10-23 00:00:00'),(82686,11,'XH0QL5','Epithelioid cell melanoma','Y','2025-10-23 00:00:00'),(82685,11,'XH2HG8','Epithelioid and spindle cell naevus','Y','2025-10-23 00:00:00'),(82684,11,'XH9JP2','Epithelial-myoepithelial carcinoma','Y','2025-10-23 00:00:00'),(82683,11,'XH9HV0','Epithelial tumour, benign','Y','2025-10-23 00:00:00'),(82682,11,'3B81.51','Epithelial cyst of spleen','Y','2025-10-23 00:00:00'),(82681,11,'MD20','Epistaxis','Y','2025-10-23 00:00:00'),(82680,11,'LB55','Epispadias','Y','2025-10-23 00:00:00'),(82679,11,'AB31.Z','Episodic vestibular syndrome, unspecified','Y','2025-10-23 00:00:00'),(82678,11,'AB31','Episodic vestibular syndrome','Y','2025-10-23 00:00:00'),(82676,11,'8D8A.2','Episodic anisocoria','Y','2025-10-23 00:00:00'),(82677,11,'9B01.7','Episodic unilateral mydriasis','Y','2025-10-23 00:00:00'),(82675,11,'XT7X','Episodic','Y','2025-10-23 00:00:00'),(82674,11,'6C4B.0','Episode of harmful use of volatile inhalants','Y','2025-10-23 00:00:00'),(82673,11,'6C4G.0','Episode of harmful use of unknown or unspecified psychoactive substances','Y','2025-10-23 00:00:00'),(82672,11,'6C47.0','Episode of harmful use of synthetic cathinones','Y','2025-10-23 00:00:00'),(82671,11,'6C42.0','Episode of harmful use of synthetic cannabinoids','Y','2025-10-23 00:00:00'),(82670,11,'6C46.0','Episode of harmful use of stimulants including amphetamines, methamphetamine or methcathinone','Y','2025-10-23 00:00:00'),(82669,11,'6C44.0','Episode of harmful use of sedatives, hypnotics or anxiolytics','Y','2025-10-23 00:00:00'),(82668,11,'6C4E.0','Episode of harmful use of other specified psychoactive substance','Y','2025-10-23 00:00:00'),(82667,11,'6C43.0','Episode of harmful use of opioids','Y','2025-10-23 00:00:00'),(82666,11,'6C4H.0','Episode of harmful use of non-psychoactive substances','Y','2025-10-23 00:00:00'),(82665,11,'6C4A.0','Episode of harmful use of nicotine','Y','2025-10-23 00:00:00'),(82664,11,'6C4F.0','Episode of harmful use of multiple specified psychoactive substances','Y','2025-10-23 00:00:00'),(82663,11,'6C4C.0','Episode of harmful use of MDMA or related drugs, including MDA','Y','2025-10-23 00:00:00'),(82662,11,'6C49.0','Episode of harmful use of hallucinogens','Y','2025-10-23 00:00:00'),(82661,11,'6C4D.0','Episode of harmful use of dissociative drugs including ketamine or PCP','Y','2025-10-23 00:00:00'),(82660,11,'6C45.0','Episode of harmful use of cocaine','Y','2025-10-23 00:00:00'),(82659,11,'6C41.0','Episode of harmful use of cannabis','Y','2025-10-23 00:00:00'),(82658,11,'6C48.0','Episode of harmful use of caffeine','Y','2025-10-23 00:00:00'),(82657,11,'6C40.0','Episode of harmful use of alcohol','Y','2025-10-23 00:00:00'),(82656,11,'9B50','Episcleritis','Y','2025-10-23 00:00:00'),(82655,11,'XM6LT8','Epirubicin','Y','2025-10-23 00:00:00'),(82654,11,'FB86.0','Epiphyseal arrest','Y','2025-10-23 00:00:00'),(82653,11,'MC13','Epiphora','Y','2025-10-23 00:00:00'),(82652,11,'XM3273','Epinephrine','Y','2025-10-23 00:00:00'),(82651,11,'XM5BJ5','Epinastine','Y','2025-10-23 00:00:00'),(82650,11,'XM7YR1','Epimestrol','Y','2025-10-23 00:00:00'),(82649,11,'8A62.Z','Epileptic encephalopathies, unspecified','Y','2025-10-23 00:00:00'),(82648,11,'8A62','Epileptic encephalopathies','Y','2025-10-23 00:00:00'),(82647,11,'8A61.22','Epilepsy with myoclonic-astatic seizures','Y','2025-10-23 00:00:00'),(82646,11,'8A60.7','Epilepsy with mesial temporal sclerosis','Y','2025-10-23 00:00:00'),(82645,11,'8A6Z','Epilepsy or seizures, unspecified','Y','2025-10-23 00:00:00'),(82644,11,'8A61.12','Epilepsy of infancy with migrating focal seizures','Y','2025-10-23 00:00:00'),(82643,11,'8A60.Z','Epilepsy due to unspecified structural or metabolic condition or disease','Y','2025-10-23 00:00:00'),(82642,11,'8A60.0Z','Epilepsy due to unspecified prenatal or perinatal brain insults','Y','2025-10-23 00:00:00'),(82641,11,'8A60.6','Epilepsy due to tumours of the nervous system','Y','2025-10-23 00:00:00'),(82640,11,'8A60','Epilepsy due to structural or metabolic conditions or diseases','Y','2025-10-23 00:00:00'),(82639,11,'8A60.00','Epilepsy due to prenatal or perinatal vascular insults','Y','2025-10-23 00:00:00'),(82638,11,'8A60.0','Epilepsy due to prenatal or perinatal brain insults','Y','2025-10-23 00:00:00'),(82637,11,'8A60.Y','Epilepsy due to other structural or metabolic condition or disease','Y','2025-10-23 00:00:00'),(82635,11,'8A60.01','Epilepsy due to neonatal hypoxic ischemic encephalopathy','Y','2025-10-23 00:00:00'),(82636,11,'8A60.0Y','Epilepsy due to other prenatal or perinatal brain insults','Y','2025-10-23 00:00:00'),(82634,11,'8A60.B','Epilepsy due to multiple sclerosis or other demyelinating disorders','Y','2025-10-23 00:00:00'),(82633,11,'8A60.5','Epilepsy due to injuries to the head','Y','2025-10-23 00:00:00'),(82632,11,'8A60.8','Epilepsy due to immune disorders','Y','2025-10-23 00:00:00'),(82630,11,'8A60.3','Epilepsy due to dementias','Y','2025-10-23 00:00:00'),(82631,11,'8A60.A','Epilepsy due to genetic syndromes with widespread or progressive effects','Y','2025-10-23 00:00:00'),(82629,11,'8A60.2','Epilepsy due to degenerative brain disorders','Y','2025-10-23 00:00:00'),(82628,11,'8A60.1','Epilepsy due to cerebrovascular disorders','Y','2025-10-23 00:00:00'),(82627,11,'8A60.4','Epilepsy due to central nervous system infections or infestations','Y','2025-10-23 00:00:00'),(82626,11,'8A60.9','Epilepsy due to abnormalities of brain development','Y','2025-10-23 00:00:00'),(82625,11,'XA9ZY9','Epiglottis','Y','2025-10-23 00:00:00'),(82623,11,'XA04Q7','Epigastric vein','Y','2025-10-23 00:00:00'),(82624,11,'XA8ZL8','Epigastrium','Y','2025-10-23 00:00:00'),(82622,11,'SA53','Epigastric upset disorder (TM1)','Y','2025-10-23 00:00:00'),(82621,11,'XA9T50','Epigastric lymph node','Y','2025-10-23 00:00:00'),(82620,11,'DD55','Epigastric hernia','Y','2025-10-23 00:00:00'),(82619,11,'SA52','Epigastric distension disorder (TM1)','Y','2025-10-23 00:00:00'),(82618,11,'XM1P34','Epiestriol','Y','2025-10-23 00:00:00'),(82617,11,'XA8SS8','Epidural space','Y','2025-10-23 00:00:00'),(82616,11,'1D05.0','Epidural infectious cyst','Y','2025-10-23 00:00:00'),(82615,11,'XA4D25','Epididymis','Y','2025-10-23 00:00:00'),(82614,11,'XN2T0','Epidermophyton floccosum','Y','2025-10-23 00:00:00'),(82613,11,'EC30','Epidermolysis bullosa simplex','Y','2025-10-23 00:00:00'),(82612,11,'EB43','Epidermolysis bullosa acquisita','Y','2025-10-23 00:00:00'),(82611,11,'EC3Z','Epidermolysis bullosa','Y','2025-10-23 00:00:00'),(82610,11,'EK70.0Z','Epidermoid cyst, unspecified','Y','2025-10-23 00:00:00'),(82609,11,'EK70.0','Epidermoid cyst','Y','2025-10-23 00:00:00'),(82608,11,'XA3JN1','Epidermis','Y','2025-10-23 00:00:00'),(82607,11,'LC00.0','Epidermal naevus','Y','2025-10-23 00:00:00'),(82606,11,'XM3ZP2','Epidermal growth factor receptor inhibitors','Y','2025-10-23 00:00:00'),(82605,11,'EE21','Epidermal fragility','Y','2025-10-23 00:00:00'),(82604,11,'XA8JE9','Epidermal basement membrane','Y','2025-10-23 00:00:00'),(82603,11,'XA8113','Epidermal appendages','Y','2025-10-23 00:00:00'),(82602,11,'1D83','Epidemic myalgia','Y','2025-10-23 00:00:00'),(82601,11,'1C30.0','Epidemic louse-borne typhus fever due to Rickettsia prowazekii','Y','2025-10-23 00:00:00'),(82600,11,'XA8JH9','Epicolic lymph node','Y','2025-10-23 00:00:00'),(82599,11,'XM31J4','Epicillin','Y','2025-10-23 00:00:00'),(82598,11,'XM5L21','Epichlorhydrin','Y','2025-10-23 00:00:00'),(82597,11,'XA37Q8','Epicardium','Y','2025-10-23 00:00:00'),(82596,11,'LA14.06','Epibulbar choristoma','Y','2025-10-23 00:00:00'),(82595,11,'XM5H72','Ephedrine','Y','2025-10-23 00:00:00'),(82594,11,'XM1D48','Ephedra','Y','2025-10-23 00:00:00'),(82593,11,'XM9UU4','Eperisone','Y','2025-10-23 00:00:00'),(82592,11,'XH2AY7','Ependymoma, RELA fusion-positive','Y','2025-10-23 00:00:00'),(82591,11,'XH1511','Ependymoma, NOS','Y','2025-10-23 00:00:00'),(82590,11,'XH6922','Ependymoma, anaplastic','Y','2025-10-23 00:00:00'),(82589,11,'XA6J38','Ependyma','Y','2025-10-23 00:00:00'),(82588,11,'XM45R0','Epanutin','Y','2025-10-23 00:00:00'),(82587,11,'XM1T80','Epanolol','Y','2025-10-23 00:00:00'),(82586,11,'XM8QL8','Epacadostat','Y','2025-10-23 00:00:00'),(82585,11,'XM0P92','EPAB','Y','2025-10-23 00:00:00'),(82584,11,'XA0V82','Eosinophils','Y','2025-10-23 00:00:00'),(82583,11,'DC50.10','Eosinophilic peritonitis','Y','2025-10-23 00:00:00'),(82582,11,'DA24.1','Eosinophilic oesophagitis','Y','2025-10-23 00:00:00'),(82581,11,'1F60.0','Eosinophilic meningitis due to Angiostrongylus cantonensis','Y','2025-10-23 00:00:00'),(82580,11,'XH6JX2','Eosinophilic leukaemia','Y','2025-10-23 00:00:00'),(82579,11,'4A44.A2','Eosinophilic granulomatosis with polyangiitis','Y','2025-10-23 00:00:00'),(82578,11,'XH75E6','Eosinophilic granuloma','Y','2025-10-23 00:00:00'),(82577,11,'DA42.2','Eosinophilic gastritis','Y','2025-10-23 00:00:00'),(82575,11,'DA94.21','Eosinophilic enteritis','Y','2025-10-23 00:00:00'),(82576,11,'DA60.4','Eosinophilic gastric ulcer','Y','2025-10-23 00:00:00'),(82574,11,'DA51.1','Eosinophilic duodenitis','Y','2025-10-23 00:00:00'),(82573,11,'DA63.4','Eosinophilic duodenal ulcer','Y','2025-10-23 00:00:00'),(82572,11,'EB30','Eosinophilic cellulitis','Y','2025-10-23 00:00:00'),(82571,11,'4B03.Z','Eosinophilia, unspecified','Y','2025-10-23 00:00:00'),(82570,11,'4B03','Eosinophilia','Y','2025-10-23 00:00:00'),(82568,11,'4B02','Eosinopenia','Y','2025-10-23 00:00:00'),(82569,11,'4B02.Z','Eosinopenia, unspecified','Y','2025-10-23 00:00:00'),(82566,11,'XM5GS9','Enzyme thrombolytic','Y','2025-10-23 00:00:00'),(82567,11,'XM5U34','Eosin','Y','2025-10-23 00:00:00'),(82565,11,'XM17Y7','Enzyme proteolytic','Y','2025-10-23 00:00:00'),(82564,11,'XM5H83','Enzyme intestinal','Y','2025-10-23 00:00:00'),(82563,11,'XM3TF2','Enzyme fibrolytic','Y','2025-10-23 00:00:00'),(82562,11,'XM0M69','Enzyme depolymerizing','Y','2025-10-23 00:00:00'),(82561,11,'XM7BF6','Enzalutamide','Y','2025-10-23 00:00:00'),(82560,11,'XE5K2','Environmental temperature problem with device identified','Y','2025-10-23 00:00:00'),(82559,11,'XE6QW','Environmental pressure problem with device identified','Y','2025-10-23 00:00:00'),(82558,11,'XE2VX','Environmental pollution, not elsewhere classified','Y','2025-10-23 00:00:00'),(82557,11,'XE55E','Environmental particulates','Y','2025-10-23 00:00:00'),(82556,11,'KD10','Environmental hyperthermia of newborn','Y','2025-10-23 00:00:00'),(82555,11,'XE4V1','Environmental humidity problem with device identified','Y','2025-10-23 00:00:00'),(82554,11,'SE8Z','Environmental factor patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(82553,11,'XE0LL','Environmental countermeasures, safety restraints or vehicle restraints','Y','2025-10-23 00:00:00'),(82552,11,'XE0DA','Environmental countermeasures, protective padding on competition surface','Y','2025-10-23 00:00:00'),(82551,11,'XE0W0','Environmental countermeasures, padded goal posts, or corner markers','Y','2025-10-23 00:00:00'),(82550,11,'XE3U8','Environmental countermeasures, no protective devices used','Y','2025-10-23 00:00:00'),(82549,11,'XE8UC','Environmental countermeasures, barrier between area of activity and spectators or surrounds','Y','2025-10-23 00:00:00'),(82548,11,'PK9A.22','Environmental control system devices associated with adverse incidents','Y','2025-10-23 00:00:00'),(82547,11,'XE6K5','Environmental compatibility problem','Y','2025-10-23 00:00:00'),(82546,11,'XB4Q','Environmental','Y','2025-10-23 00:00:00'),(82545,11,'XE3AL','Environment problem with device identified','Y','2025-10-23 00:00:00'),(82544,11,'XM74K5','Enviomycin','Y','2025-10-23 00:00:00'),(82543,11,'6C00.Z','Enuresis, unspecified','Y','2025-10-23 00:00:00'),(82542,11,'SB02','Enuresis disorder (TM1)','Y','2025-10-23 00:00:00'),(82541,11,'6C00','Enuresis','Y','2025-10-23 00:00:00'),(82540,11,'9A03.1Z','Entropion of eyelid, unspecified','Y','2025-10-23 00:00:00'),(82539,11,'9A03.1','Entropion of eyelid','Y','2025-10-23 00:00:00'),(82538,11,'XM16Z9','Entrectinib','Y','2025-10-23 00:00:00'),(82537,11,'XE9MQ','Entrapment of device','Y','2025-10-23 00:00:00'),(82536,11,'9D53','Entoptic phenomena','Y','2025-10-23 00:00:00'),(82535,11,'MB28.3','Entitlement','Y','2025-10-23 00:00:00'),(82533,11,'FB55.Z','Enthesopathies, unspecified','Y','2025-10-23 00:00:00'),(82534,11,'XM7FX3','Entinostat','Y','2025-10-23 00:00:00'),(82532,11,'FB54.Z','Enthesopathies of lower limb, unspecified','Y','2025-10-23 00:00:00'),(82531,11,'FB54','Enthesopathies of lower limb','Y','2025-10-23 00:00:00'),(82530,11,'XA2C51','Enthesis','Y','2025-10-23 00:00:00'),(82529,11,'XE80T','Entertainment appliance','Y','2025-10-23 00:00:00'),(82528,11,'1D91','Enterovirus infection of unspecified site','Y','2025-10-23 00:00:00'),(82527,11,'XN2P0','Enterovirus','Y','2025-10-23 00:00:00'),(82526,11,'1F05.0','Enteroviral vesicular stomatitis','Y','2025-10-23 00:00:00'),(82525,11,'1F05.1','Enteroviral vesicular pharyngitis','Y','2025-10-23 00:00:00'),(82524,11,'1C8E.1','Enteroviral meningitis','Y','2025-10-23 00:00:00'),(82523,11,'1F05.2','Enteroviral exanthematous fever','Y','2025-10-23 00:00:00'),(82522,11,'1A03.1','Enterotoxigenic Escherichia coli infection','Y','2025-10-23 00:00:00'),(82521,11,'XN81Z','Enterotoxigenic Escherichia coli','Y','2025-10-23 00:00:00'),(82520,11,'2A90.7','Enteropathy associated T-cell lymphoma','Y','2025-10-23 00:00:00'),(82519,11,'1A03.0','Enteropathogenic Escherichia coli infection','Y','2025-10-23 00:00:00'),(82518,11,'XN2U0','Enteropathogenic Escherichia coli','Y','2025-10-23 00:00:00'),(82517,11,'DA91.31','Enterolith of small intestine','Y','2025-10-23 00:00:00'),(82515,11,'XN88S','Enteroinvasive Escherichia coli','Y','2025-10-23 00:00:00'),(82516,11,'1A03.2','Enteroinvasive Escherichia coli infection','Y','2025-10-23 00:00:00'),(82511,11,'XM9EQ9','Enterogastrone','Y','2025-10-23 00:00:00'),(82512,11,'XH2PF0','Enteroglucagonoma','Y','2025-10-23 00:00:00'),(82513,11,'XN5NF','Enterohaemorrhagic Escherichia coli','Y','2025-10-23 00:00:00'),(82514,11,'1A03.3','Enterohaemorrhagic Escherichia coli infection','Y','2025-10-23 00:00:00'),(82509,11,'XN3QK','Enterococcus raffinosus','Y','2025-10-23 00:00:00'),(82510,11,'MG51.2Y','Enterococcus resistant to other antibiotic','Y','2025-10-23 00:00:00'),(82507,11,'XN8BQ','Enterococcus gallinarum','Y','2025-10-23 00:00:00'),(82508,11,'XN4ZZ','Enterococcus mundtii','Y','2025-10-23 00:00:00'),(82505,11,'XN2H4','Enterococcus faecalis','Y','2025-10-23 00:00:00'),(82506,11,'XN51E','Enterococcus faecium','Y','2025-10-23 00:00:00'),(82504,11,'XN724','Enterococcus durans','Y','2025-10-23 00:00:00'),(82503,11,'XN3XY','Enterococcus casseliflavus','Y','2025-10-23 00:00:00'),(82502,11,'XN0DT','Enterococcus avium','Y','2025-10-23 00:00:00'),(82501,11,'XN1F7','Enterococcus','Y','2025-10-23 00:00:00'),(82500,11,'XH0LH8','Enterochromaffin-like cell tumour','Y','2025-10-23 00:00:00'),(82499,11,'XH7NM1','Enterochromaffin cell carcinoid','Y','2025-10-23 00:00:00'),(82498,11,'MG51.2Z','Enteroccus resistant to unspecified antibiotic','Y','2025-10-23 00:00:00'),(82497,11,'XN4AR','Enterobius vermicularis','Y','2025-10-23 00:00:00'),(82496,11,'XN1DG','Enterobius','Y','2025-10-23 00:00:00'),(82495,11,'1F65','Enterobiasis','Y','2025-10-23 00:00:00'),(82494,11,'XN3YM','Enterobacter cloacae','Y','2025-10-23 00:00:00'),(82493,11,'XN9W5','Enterobacter','Y','2025-10-23 00:00:00'),(82492,11,'DA94.32','Enteritis or ulcer of small intestine due to trauma','Y','2025-10-23 00:00:00'),(82491,11,'DA94.31','Enteritis or ulcer of small intestine due to radiation','Y','2025-10-23 00:00:00'),(82490,11,'DA94.3Z','Enteritis or ulcer of small intestine due to other external causes, unspecified','Y','2025-10-23 00:00:00'),(82489,11,'DA94.3','Enteritis or ulcer of small intestine due to other external causes','Y','2025-10-23 00:00:00'),(82488,11,'DA94.30','Enteritis or ulcer of small intestine due to foreign body','Y','2025-10-23 00:00:00'),(82487,11,'1A23','Enteritis due to Norovirus','Y','2025-10-23 00:00:00'),(82486,11,'1A20','Enteritis due to Adenovirus','Y','2025-10-23 00:00:00'),(82485,11,'XM0Z52','Entecavir','Y','2025-10-23 00:00:00'),(82484,11,'XN82F','Entamoeba histolytica','Y','2025-10-23 00:00:00'),(82483,11,'XN3S1','Entamoeba','Y','2025-10-23 00:00:00'),(82482,11,'XM07G6','Entacapone','Y','2025-10-23 00:00:00'),(82481,11,'XM4GD1','Enprostil','Y','2025-10-23 00:00:00'),(82480,11,'XM31P6','Enprofylline','Y','2025-10-23 00:00:00'),(82479,11,'XM3KB9','Enpiprazole','Y','2025-10-23 00:00:00'),(82478,11,'XM1JG0','Enoxolone','Y','2025-10-23 00:00:00'),(82477,11,'XM2H68','Enoximone','Y','2025-10-23 00:00:00'),(82476,11,'XM9313','Enoxaparin sodium','Y','2025-10-23 00:00:00'),(82475,11,'XM8ZP5','Enoxaparin','Y','2025-10-23 00:00:00'),(82474,11,'XM7SH9','Enoxacin','Y','2025-10-23 00:00:00'),(82473,11,'XM5ZK1','Enocitabine','Y','2025-10-23 00:00:00'),(82472,11,'9A24.3','Enlargement of bony orbit','Y','2025-10-23 00:00:00'),(82471,11,'MA01.Z','Enlarged lymph nodes, unspecified','Y','2025-10-23 00:00:00'),(82470,11,'MA01','Enlarged lymph nodes','Y','2025-10-23 00:00:00'),(82469,11,'9D42.20','Enlarged blind spot','Y','2025-10-23 00:00:00'),(82468,11,'XM8CN1','Enisamium iodide','Y','2025-10-23 00:00:00'),(82467,11,'8A04.0','Enhanced physiological tremor','Y','2025-10-23 00:00:00'),(82466,11,'XE5D5','Engine of vehicle','Y','2025-10-23 00:00:00'),(82465,11,'XM1EQ6','Enfuvirtide','Y','2025-10-23 00:00:00'),(82464,11,'XM35M6','Enflurane','Y','2025-10-23 00:00:00'),(82462,11,'XE7ST','Energy spectrum incorrect','Y','2025-10-23 00:00:00'),(82463,11,'XE4ZM','Energy storage system problem in device','Y','2025-10-23 00:00:00'),(82461,11,'XE0KH','Energy output problem','Y','2025-10-23 00:00:00'),(82459,11,'VV00','Energy and drive functions','Y','2025-10-23 00:00:00'),(82460,11,'VE10','Energy and drive functions [BMDS]','Y','2025-10-23 00:00:00'),(82457,11,'XM1KN9','Endralazine','Y','2025-10-23 00:00:00'),(82458,11,'XM6ZU9','Endrin','Y','2025-10-23 00:00:00'),(82456,11,'XD0T92','Endotracheal tubes, without cuff','Y','2025-10-23 00:00:00'),(82455,11,'XD37X2','Endotracheal tubes, with cuff','Y','2025-10-23 00:00:00'),(82454,11,'XD3UM6','Endotracheal tubes accessories','Y','2025-10-23 00:00:00'),(82453,11,'XD3RD1','Endotoxin removal filters and columns','Y','2025-10-23 00:00:00'),(82452,11,'XD5SV0','Endotoxin removal filters','Y','2025-10-23 00:00:00'),(82450,11,'9A70.0','Endothelial corneal dystrophy','Y','2025-10-23 00:00:00'),(82451,11,'XD6KC0','Endotoxin removal columns','Y','2025-10-23 00:00:00'),(82448,11,'XM5C19','Endosulfan','Y','2025-10-23 00:00:00'),(82449,11,'XM6KX6','Endothall','Y','2025-10-23 00:00:00'),(82447,11,'9C21.Z','Endophthalmitis, unspecified','Y','2025-10-23 00:00:00'),(82446,11,'9C21','Endophthalmitis','Y','2025-10-23 00:00:00'),(82445,11,'XA8QA8','Endometrium','Y','2025-10-23 00:00:00'),(82444,11,'GA10.J','Endometriosis-related adhesions','Y','2025-10-23 00:00:00'),(82443,11,'GA10.D','Endometriosis of urinary system','Y','2025-10-23 00:00:00'),(82442,11,'GA10.CZ','Endometriosis of unspecified site within the digestive system','Y','2025-10-23 00:00:00'),(82441,11,'GA10.BZ','Endometriosis of unspecified site of reproductive system','Y','2025-10-23 00:00:00'),(82439,11,'GA10.Z','Endometriosis of unspecified site','Y','2025-10-23 00:00:00'),(82440,11,'GA10.DZ','Endometriosis of unspecified site in the urinary system','Y','2025-10-23 00:00:00'),(82438,11,'GA10.B0','Endometriosis of the uterosacral ligaments','Y','2025-10-23 00:00:00'),(82437,11,'GA10.B','Endometriosis of the reproductive system','Y','2025-10-23 00:00:00'),(82436,11,'GA10.B1','Endometriosis of the pelvic side wall','Y','2025-10-23 00:00:00'),(82435,11,'GA10.F','Endometriosis of the nervous system','Y','2025-10-23 00:00:00'),(82434,11,'GA10.C0','Endometriosis of the gallbladder','Y','2025-10-23 00:00:00'),(82433,11,'GA10.C','Endometriosis of the digestive system','Y','2025-10-23 00:00:00'),(82432,11,'GA10.E','Endometriosis of the circulatory system','Y','2025-10-23 00:00:00'),(82431,11,'GA10.D0','Endometriosis of the bladder','Y','2025-10-23 00:00:00'),(82430,11,'GA10.B2','Endometriosis of rectovaginal septum or vagina','Y','2025-10-23 00:00:00'),(82429,11,'GA10.C2','Endometriosis of pelvic peritoneum','Y','2025-10-23 00:00:00'),(82428,11,'GA10.Y','Endometriosis of other specified sites','Y','2025-10-23 00:00:00'),(82427,11,'GA10.CY','Endometriosis of other sites within the digestive system','Y','2025-10-23 00:00:00'),(82426,11,'GA10.BY','Endometriosis of other sites of the reproductive system','Y','2025-10-23 00:00:00'),(82425,11,'GA10.DY','Endometriosis of other sites in the urinary system','Y','2025-10-23 00:00:00'),(82424,11,'GA10.C1','Endometriosis of intestine','Y','2025-10-23 00:00:00'),(82423,11,'GA10.B3','Endometriosis of fallopian tube','Y','2025-10-23 00:00:00'),(82422,11,'GA10.H','Endometriosis in cutaneous scar','Y','2025-10-23 00:00:00'),(82421,11,'GA10','Endometriosis','Y','2025-10-23 00:00:00'),(82420,11,'XH4Z68','Endometrioid intraepithelial neoplasia','Y','2025-10-23 00:00:00'),(82419,11,'XH09B7','Endometrioid cystadenocarcinoma','Y','2025-10-23 00:00:00'),(82418,11,'XH8XD1','Endometrioid carcinoma with squamous differentiation','Y','2025-10-23 00:00:00'),(82417,11,'XH6ZD0','Endometrioid adenoma, NOS','Y','2025-10-23 00:00:00'),(82416,11,'XH5DQ2','Endometrioid adenoma, borderline malignancy','Y','2025-10-23 00:00:00'),(82415,11,'XH1CX5','Endometrioid adenofibroma, NOS','Y','2025-10-23 00:00:00'),(82414,11,'XH6KR7','Endometrioid adenofibroma, malignant','Y','2025-10-23 00:00:00'),(82413,11,'XH9DS4','Endometrioid adenofibroma, borderline malignancy','Y','2025-10-23 00:00:00'),(82412,11,'XH0718','Endometrioid adenocarcinoma, secretory variant','Y','2025-10-23 00:00:00'),(82411,11,'XH0SD2','Endometrioid adenocarcinoma, NOS','Y','2025-10-23 00:00:00'),(82410,11,'XH9508','Endometrioid adenocarcinoma, ciliated cell variant','Y','2025-10-23 00:00:00'),(82409,11,'2C73.01','Endometrioid adenocarcinoma of ovary','Y','2025-10-23 00:00:00'),(82408,11,'2C76.42','Endometrial undifferentiated carcinoma','Y','2025-10-23 00:00:00'),(82407,11,'2B5C','Endometrial stromal sarcoma, primary site','Y','2025-10-23 00:00:00'),(82406,11,'XH1TK5','Endometrial stromal sarcoma, NOS','Y','2025-10-23 00:00:00'),(82405,11,'XH1S94','Endometrial stromal sarcoma, low grade','Y','2025-10-23 00:00:00'),(82404,11,'XH2CV3','Endometrial stromal sarcoma, high grade','Y','2025-10-23 00:00:00'),(82403,11,'XH8C13','Endometrial stromal nodule','Y','2025-10-23 00:00:00'),(82402,11,'XA3FR4','Endometrial stroma','Y','2025-10-23 00:00:00'),(82401,11,'2C76.40','Endometrial squamous cell carcinoma','Y','2025-10-23 00:00:00'),(82400,11,'2C76.41','Endometrial small cell carcinoma','Y','2025-10-23 00:00:00'),(82399,11,'2C76.3','Endometrial serous adenocarcinoma','Y','2025-10-23 00:00:00'),(82398,11,'2C76.1','Endometrial mucinous adenocarcinoma','Y','2025-10-23 00:00:00'),(82396,11,'GA16.0','Endometrial glandular hyperplasia','Y','2025-10-23 00:00:00'),(82397,11,'2C76.4','Endometrial mixed adenocarcinoma','Y','2025-10-23 00:00:00'),(82395,11,'XA9DM0','Endometrial gland','Y','2025-10-23 00:00:00'),(82394,11,'2C76.0','Endometrial endometrioid adenocarcinoma','Y','2025-10-23 00:00:00'),(82393,11,'2C76.2','Endometrial clear cell adenocarcinoma','Y','2025-10-23 00:00:00'),(82392,11,'XH85C2','Endolymphatic sac tumor','Y','2025-10-23 00:00:00'),(82391,11,'ED62','Endogenous non-melanin pigmentation','Y','2025-10-23 00:00:00'),(82389,11,'XA3HM5','Endoderm','Y','2025-10-23 00:00:00'),(82390,11,'2C73.5','Endodermal sinus tumour, unspecified site, female','Y','2025-10-23 00:00:00'),(82388,11,'JB64.2','Endocrine, nutritional or metabolic diseases complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(82387,11,'XH41P2','Endocrine tumour, functioning, NOS','Y','2025-10-23 00:00:00'),(82386,11,'PK80.41','Endocrine procedure associated with injury or harm, percutaneous approach','Y','2025-10-23 00:00:00'),(82385,11,'PK80.40','Endocrine procedure associated with injury or harm, open approach','Y','2025-10-23 00:00:00'),(82384,11,'PK80.42','Endocrine procedure associated with injury or harm, endoscopic approach','Y','2025-10-23 00:00:00'),(82383,11,'PK80.4Z','Endocrine procedure associated with injury or harm in therapeutic use, unspecified approach','Y','2025-10-23 00:00:00'),(82382,11,'PK80.4Y','Endocrine procedure associated with injury or harm in therapeutic use, other specified approach','Y','2025-10-23 00:00:00'),(82381,11,'PK80.4','Endocrine procedure associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(82380,11,'XH8010','Endocrine mucin-producing sweat gland carcinoma in situ','Y','2025-10-23 00:00:00'),(82379,11,'XH4EK4','Endocrine mucin-producing sweat gland carcinoma','Y','2025-10-23 00:00:00'),(82378,11,'5B3Z','Endocrine diseases, unspecified','Y','2025-10-23 00:00:00'),(82377,11,'XA3227','Endocardium','Y','2025-10-23 00:00:00'),(82376,11,'BC43.3','Endocardial fibroelastosis','Y','2025-10-23 00:00:00'),(82375,11,'XM20M0','Endocaine','Y','2025-10-23 00:00:00'),(82374,11,'1C1F','Endemic non-venereal syphilis','Y','2025-10-23 00:00:00'),(82373,11,'GB00.0','Encysted hydrocele','Y','2025-10-23 00:00:00'),(82372,11,'QA00.D','Encounter for blood typing','Y','2025-10-23 00:00:00'),(82371,11,'QA00.E','Encounter for antibody response examination','Y','2025-10-23 00:00:00'),(82370,11,'QA01.8','Encounter for adoption services','Y','2025-10-23 00:00:00'),(82369,11,'XM5RQ2','Encorafenib','Y','2025-10-23 00:00:00'),(82368,11,'6C01.Z','Encopresis, unspecified','Y','2025-10-23 00:00:00'),(82367,11,'6C01.1','Encopresis without constipation or overflow incontinence','Y','2025-10-23 00:00:00'),(82366,11,'6C01.0','Encopresis with constipation or overflow incontinence','Y','2025-10-23 00:00:00'),(82365,11,'6C01','Encopresis','Y','2025-10-23 00:00:00'),(82364,11,'XH9SY5','Enchondroma','Y','2025-10-23 00:00:00'),(82363,11,'8E47','Encephalopathy, not elsewhere classified','Y','2025-10-23 00:00:00'),(82362,11,'8D43.0Z','Encephalopathy due to toxicity, unspecified','Y','2025-10-23 00:00:00'),(82361,11,'8D43.0','Encephalopathy due to toxicity','Y','2025-10-23 00:00:00'),(82360,11,'8D40.0','Encephalopathy due to nutritional deficiency','Y','2025-10-23 00:00:00'),(82359,11,'8D43.00','Encephalopathy due to ammonia','Y','2025-10-23 00:00:00'),(82358,11,'LA05.6Z','Encephaloclastic disorders, unspecified','Y','2025-10-23 00:00:00'),(82357,11,'LA05.6','Encephaloclastic disorders','Y','2025-10-23 00:00:00'),(82356,11,'XM8MP6','Encephalitis, tick borne, inactivated, whole virus','Y','2025-10-23 00:00:00'),(82355,11,'XM5NX5','Encephalitis, tick borne immunoglobulin','Y','2025-10-23 00:00:00'),(82354,11,'8E48','Encephalitis, not elsewhere classified','Y','2025-10-23 00:00:00'),(82353,11,'XM47S0','Encephalitis, Japanese, live attenuated','Y','2025-10-23 00:00:00'),(82352,11,'XM0LB5','Encephalitis, Japanese, inactivated, whole virus','Y','2025-10-23 00:00:00'),(82351,11,'XM0RC1','Encephalitis vaccines','Y','2025-10-23 00:00:00'),(82350,11,'1D80.3','Encephalitis due to mumps virus','Y','2025-10-23 00:00:00'),(82349,11,'1F00.21','Encephalitis due to herpes simplex virus','Y','2025-10-23 00:00:00'),(82348,11,'XH0GT6','Encapsulated papillary carcinoma with invasion','Y','2025-10-23 00:00:00'),(82347,11,'XM6TZ8','Encainide','Y','2025-10-23 00:00:00'),(82346,11,'XM8NP2','Enasidenib','Y','2025-10-23 00:00:00'),(82345,11,'NA0D.02','Enamel-dentin fracture','Y','2025-10-23 00:00:00'),(82344,11,'NA0D.00','Enamel infraction','Y','2025-10-23 00:00:00'),(82343,11,'NA0D.01','Enamel fracture','Y','2025-10-23 00:00:00'),(82342,11,'XA5R09','Enamel','Y','2025-10-23 00:00:00'),(82341,11,'XM5609','Enalaprilat','Y','2025-10-23 00:00:00'),(82340,11,'XM6X56','Enalapril','Y','2025-10-23 00:00:00'),(82339,11,'XM8G67','Emylcamate','Y','2025-10-23 00:00:00'),(82338,11,'XM99Q5','Emtricitabine, Tenofovir disoproxil, Elvitegravir and Cobicistat','Y','2025-10-23 00:00:00'),(82337,11,'XM1KH0','Emtricitabine, Tenofovir disoproxil and Rilpivirine','Y','2025-10-23 00:00:00'),(82336,11,'XM7RZ6','Emtricitabine, Tenofovir disoproxil and Efavirenz','Y','2025-10-23 00:00:00'),(82335,11,'XM4JT2','Emtricitabine, Tenofovir alafenamide, Elvitegravir and Cobicistat','Y','2025-10-23 00:00:00'),(82334,11,'XM7T33','Emtricitabine, Tenofovir alafenamide, Darunavir and Cobicistat','Y','2025-10-23 00:00:00'),(82333,11,'XM08B7','Emtricitabine, Tenofovir alafenamide and Rilpivirine','Y','2025-10-23 00:00:00'),(82332,11,'XM0UN9','Emtricitabine, Tenofovir alafenamide and Bictegravir','Y','2025-10-23 00:00:00'),(82331,11,'XM8RF0','Emtricitabine and Tenofovir alafenamide','Y','2025-10-23 00:00:00'),(82330,11,'XM2L06','Emtricitabine','Y','2025-10-23 00:00:00'),(82329,11,'CA21.Z','Emphysema, unspecified','Y','2025-10-23 00:00:00'),(82328,11,'CA21','Emphysema','Y','2025-10-23 00:00:00'),(82327,11,'XM9RV6','Empegfilgrastim','Y','2025-10-23 00:00:00'),(82326,11,'XM9RW3','Empagliflozin','Y','2025-10-23 00:00:00'),(82325,11,'VE12','Emotional functions [BMDS]','Y','2025-10-23 00:00:00'),(82324,11,'VV04','Emotional functions','Y','2025-10-23 00:00:00'),(82323,11,'VD54','Emotional effect of health condition [WHODAS]','Y','2025-10-23 00:00:00'),(82322,11,'XM7SA1','Emorfazone','Y','2025-10-23 00:00:00'),(82321,11,'1F2L.Z','Emmonsiosis, unspecified','Y','2025-10-23 00:00:00'),(82320,11,'1F2L','Emmonsiosis','Y','2025-10-23 00:00:00'),(82319,11,'XE2PX','Emitter component of medical device','Y','2025-10-23 00:00:00'),(82318,11,'XA12G2','Emissary vein of the foramen of Vesalius','Y','2025-10-23 00:00:00'),(82317,11,'XA14M4','Emissary Vein','Y','2025-10-23 00:00:00'),(82316,11,'XA8VK6','Eminence of triangular fossa','Y','2025-10-23 00:00:00'),(82315,11,'XA0H47','Eminence of scapha','Y','2025-10-23 00:00:00'),(82314,11,'XA6KW8','Eminence of concha','Y','2025-10-23 00:00:00'),(82313,11,'XM2HD6','Emetine','Y','2025-10-23 00:00:00'),(82312,11,'8C70.2','Emery-Dreifuss muscular dystrophy','Y','2025-10-23 00:00:00'),(82311,11,'XE2N6','Emergency button or switch component of medical device','Y','2025-10-23 00:00:00'),(82310,11,'XM0CR7','Emepronium bromide','Y','2025-10-23 00:00:00'),(82309,11,'XM6190','Emepronium','Y','2025-10-23 00:00:00'),(82308,11,'XM1CM1','Emedastine','Y','2025-10-23 00:00:00'),(82307,11,'LB40.1','Embryonic cyst of vulva','Y','2025-10-23 00:00:00'),(82306,11,'LB45.8','Embryonic cyst of fallopian tube','Y','2025-10-23 00:00:00'),(82305,11,'LB43.0','Embryonic cyst of cervix','Y','2025-10-23 00:00:00'),(82304,11,'LB45.9','Embryonic cyst of broad ligament','Y','2025-10-23 00:00:00'),(82303,11,'XH51C5','Embryonal tumours with multilayered rosettes with C19MC alteration','Y','2025-10-23 00:00:00'),(82302,11,'2A00.1Z','Embryonal tumours of brain, unspecified','Y','2025-10-23 00:00:00'),(82301,11,'2A00.1','Embryonal tumours of brain','Y','2025-10-23 00:00:00'),(82300,11,'XH0KZ2','Embryonal tumour with multilayered rosettes, NOS','Y','2025-10-23 00:00:00'),(82299,11,'XH42Q2','Embryonal sarcoma','Y','2025-10-23 00:00:00'),(82298,11,'XH4749','Embryonal rhabdomyosarcoma, pleomorphic','Y','2025-10-23 00:00:00'),(82297,11,'XH83G1','Embryonal rhabdomyosarcoma, NOS','Y','2025-10-23 00:00:00'),(82296,11,'XH8MB9','Embryonal carcinoma, NOS','Y','2025-10-23 00:00:00'),(82295,11,'XH6685','Embryonal adenoma','Y','2025-10-23 00:00:00'),(82294,11,'XA1MQ5','Embryological structures','Y','2025-10-23 00:00:00'),(82293,11,'LD2F.02','Embryofetopathy due to oral anticoagulant therapy','Y','2025-10-23 00:00:00'),(82291,11,'XA3NA0','Embryo','Y','2025-10-23 00:00:00'),(82292,11,'5C50.02','Embryofetopathy due to maternal phenylketonuria','Y','2025-10-23 00:00:00'),(82289,11,'JA05.2','Embolism following abortion, ectopic or molar pregnancy','Y','2025-10-23 00:00:00'),(82290,11,'XM59T1','Embramine','Y','2025-10-23 00:00:00'),(82288,11,'PL11.2Z','Embolisation, as mode of injury or harm, unspecified','Y','2025-10-23 00:00:00'),(82286,11,'QA50','Embolisation without injury or harm','Y','2025-10-23 00:00:00'),(82287,11,'PL11.2','Embolisation, as mode of injury or harm','Y','2025-10-23 00:00:00'),(82283,11,'XM7WY9','Elvitegravir','Y','2025-10-23 00:00:00'),(82284,11,'XM3F23','Emapalumab','Y','2025-10-23 00:00:00'),(82285,11,'DA07.7','Embedded teeth','Y','2025-10-23 00:00:00'),(82280,11,'XM10Z6','Elotuzumab','Y','2025-10-23 00:00:00'),(82281,11,'XM95R8','Eltrombopag','Y','2025-10-23 00:00:00'),(82282,11,'XM8136','Eluxadoline','Y','2025-10-23 00:00:00'),(82279,11,'XM7QH6','Elosulfase alfa','Y','2025-10-23 00:00:00'),(82277,11,'6C0Z','Elimination disorders, unspecified','Y','2025-10-23 00:00:00'),(82278,11,'XM0HK3','Elliptinium acetate','Y','2025-10-23 00:00:00'),(82275,11,'XA7T69','Eleventh thoracic vertebra','Y','2025-10-23 00:00:00'),(82276,11,'XM0K95','Eliglustat','Y','2025-10-23 00:00:00'),(82274,11,'XA6369','Eleventh thoracic spinal nerve','Y','2025-10-23 00:00:00'),(82273,11,'XA61G0','Eleventh thoracic nerve root','Y','2025-10-23 00:00:00'),(82272,11,'XA3VH4','Eleventh rib','Y','2025-10-23 00:00:00'),(82271,11,'MA10.0','Elevation of levels of transaminase or lactic acid dehydrogenase','Y','2025-10-23 00:00:00'),(82270,11,'XE9U1','Elevated work platform','Y','2025-10-23 00:00:00'),(82269,11,'MA16.11','Elevated white blood cell count','Y','2025-10-23 00:00:00'),(82268,11,'MF99','Elevated urine levels of drugs, medicaments and biological substances','Y','2025-10-23 00:00:00'),(82267,11,'MB24.8','Elevated mood','Y','2025-10-23 00:00:00'),(82266,11,'XJ0QE','Elevated fracture','Y','2025-10-23 00:00:00'),(82265,11,'MA1A','Elevated erythrocyte sedimentation rate or abnormality of plasma viscosity','Y','2025-10-23 00:00:00'),(82264,11,'MA1A.0','Elevated erythrocyte sedimentation rate','Y','2025-10-23 00:00:00'),(82263,11,'MA14.15','Elevated C-reactive protein','Y','2025-10-23 00:00:00'),(82261,11,'MC80.0','Elevated blood-pressure reading, without diagnosis of hypertension','Y','2025-10-23 00:00:00'),(82262,11,'MC80.0Z','Elevated blood-pressure reading, without diagnosis of hypertension, unspecified','Y','2025-10-23 00:00:00'),(82258,11,'XE2Q6','Elephant','Y','2025-10-23 00:00:00'),(82259,11,'XM7YU2','Eletriptan','Y','2025-10-23 00:00:00'),(82260,11,'MA18.0','Elevated blood glucose level','Y','2025-10-23 00:00:00'),(82256,11,'XE268','Electro-static discharge','Y','2025-10-23 00:00:00'),(82257,11,'XE8P9','Electrostatic discharge of device','Y','2025-10-23 00:00:00'),(82255,11,'XD2AJ4','Electronic thermometers and end caps','Y','2025-10-23 00:00:00'),(82253,11,'XE4PR','Electromagnetic compatibility problem','Y','2025-10-23 00:00:00'),(82254,11,'XE6AQ','Electromagnetic compatibility problem with device identified','Y','2025-10-23 00:00:00'),(82252,11,'XM6YF0','Electrolytic agent','Y','2025-10-23 00:00:00'),(82251,11,'XM5S14','Electrolytes','Y','2025-10-23 00:00:00'),(82250,11,'XM9SL7','Electrolyte solutions','Y','2025-10-23 00:00:00'),(82249,11,'XM7UQ5','Electrolyte balance drug','Y','2025-10-23 00:00:00'),(82248,11,'XE5U9','Electrode component of medical device','Y','2025-10-23 00:00:00'),(82247,11,'XE6T1','Electrical transmission line in or around building','Y','2025-10-23 00:00:00'),(82246,11,'XE018','Electrical transducer component of medical device','Y','2025-10-23 00:00:00'),(82245,11,'XE4VJ','Electrical solenoid component of medical device','Y','2025-10-23 00:00:00'),(82244,11,'XE27R','Electrical semiconductor component of medical device','Y','2025-10-23 00:00:00'),(82243,11,'XE2AJ','Electrical resistor component of medical device','Y','2025-10-23 00:00:00'),(82242,11,'XE9F9','Electrical prod, stun gun','Y','2025-10-23 00:00:00'),(82241,11,'XE4CB','Electrical problem with device identified','Y','2025-10-23 00:00:00'),(82240,11,'XE5ZE','Electrical power problem','Y','2025-10-23 00:00:00'),(82239,11,'XE0Y5','Electrical port component of medical device','Y','2025-10-23 00:00:00'),(82238,11,'XE3S7','Electrical overstress','Y','2025-10-23 00:00:00'),(82237,11,'XE16C','Electrical or electronic property problem','Y','2025-10-23 00:00:00'),(82236,11,'XE1YA','Electrical or electronic component problem with device identified','Y','2025-10-23 00:00:00'),(82235,11,'XE6S4','Electrical mixer component of medical device','Y','2025-10-23 00:00:00'),(82234,11,'XE59E','Electrical lead or wire component of medical device','Y','2025-10-23 00:00:00'),(82233,11,'XE1UQ','Electrical inductor component of medical device','Y','2025-10-23 00:00:00'),(82232,11,'XE38E','Electrical fuse component of medical device','Y','2025-10-23 00:00:00'),(82231,11,'XE871','Electrical fixture','Y','2025-10-23 00:00:00'),(82230,11,'XE845','Electrical capacitor component of medical device','Y','2025-10-23 00:00:00'),(82228,11,'XE5LB','Electric toaster, toaster oven','Y','2025-10-23 00:00:00'),(82229,11,'XE1RS','Electric toothbrush','Y','2025-10-23 00:00:00'),(82226,11,'XE1ZZ','Electric or gas radiator, heater','Y','2025-10-23 00:00:00'),(82227,11,'XE39S','Electric shaver','Y','2025-10-23 00:00:00'),(82224,11,'XE3WY','Electric kettle','Y','2025-10-23 00:00:00'),(82225,11,'XE926','Electric lamp','Y','2025-10-23 00:00:00'),(82223,11,'XE3FW','Electric frying pan, deep fryer','Y','2025-10-23 00:00:00'),(82220,11,'XA3RT8','Elbow tip','Y','2025-10-23 00:00:00'),(82221,11,'XM6US3','Elcatonin','Y','2025-10-23 00:00:00'),(82222,11,'XE03R','Electric bread making machine','Y','2025-10-23 00:00:00'),(82218,11,'XA9FF8','Elbow','Y','2025-10-23 00:00:00'),(82219,11,'XA69H4','Elbow joint','Y','2025-10-23 00:00:00'),(82215,11,'XM9KZ8','Elaterium','Y','2025-10-23 00:00:00'),(82216,11,'XM5HK2','Elbasvir','Y','2025-10-23 00:00:00'),(82217,11,'XM7VS7','Elbasvir and Grazoprevir','Y','2025-10-23 00:00:00'),(82212,11,'XM4RK4','Elastase','Y','2025-10-23 00:00:00'),(82213,11,'XA8YS7','Elastic cartilage','Y','2025-10-23 00:00:00'),(82214,11,'XH3BQ8','Elastofibroma','Y','2025-10-23 00:00:00'),(82210,11,'XM3R87','Elapegademase','Y','2025-10-23 00:00:00'),(82211,11,'XM1KB4','Elase','Y','2025-10-23 00:00:00'),(82208,11,'XN6XF','El Moro Canyon virus','Y','2025-10-23 00:00:00'),(82209,11,'XM5064','Elagolix','Y','2025-10-23 00:00:00'),(82206,11,'XE7NX','Ejection problem','Y','2025-10-23 00:00:00'),(82207,11,'XE5K4','Ejector component of medical device','Y','2025-10-23 00:00:00'),(82204,11,'HA03','Ejaculatory dysfunctions','Y','2025-10-23 00:00:00'),(82205,11,'HA03.Z','Ejaculatory dysfunctions, unspecified','Y','2025-10-23 00:00:00'),(82202,11,'XA8NQ5','Eighth thoracic vertebra','Y','2025-10-23 00:00:00'),(82203,11,'XN1VF','Eikenella','Y','2025-10-23 00:00:00'),(82200,11,'XA2UY4','Eighth thoracic nerve root','Y','2025-10-23 00:00:00'),(82201,11,'XA2VJ9','Eighth thoracic spinal nerve','Y','2025-10-23 00:00:00'),(82198,11,'XA3XK7','Eighth cervical spinal nerve','Y','2025-10-23 00:00:00'),(82199,11,'XA9WQ3','Eighth rib','Y','2025-10-23 00:00:00'),(82196,11,'XN2YH','Ehrlichia ewingii','Y','2025-10-23 00:00:00'),(82197,11,'XA0245','Eighth cervical nerve root','Y','2025-10-23 00:00:00'),(82195,11,'XN4GW','Ehrlichia chaffeensis','Y','2025-10-23 00:00:00'),(82194,11,'XN293','Ehrlichia canis','Y','2025-10-23 00:00:00'),(82193,11,'XN9M7','Ehrlichia','Y','2025-10-23 00:00:00'),(82192,11,'LD28.10','Ehlers-Danlos syndrome, classical type','Y','2025-10-23 00:00:00'),(82191,11,'LD28.1','Ehlers-Danlos syndrome','Y','2025-10-23 00:00:00'),(82190,11,'XM4760','Egyptian cobra snake venom','Y','2025-10-23 00:00:00'),(82189,11,'XM5M47','Efloxate','Y','2025-10-23 00:00:00'),(82188,11,'XM9JL2','Eflornithine','Y','2025-10-23 00:00:00'),(82187,11,'XM20T9','Efinaconazole','Y','2025-10-23 00:00:00'),(82186,11,'FA36.Z','Effusion of joint, unspecified','Y','2025-10-23 00:00:00'),(82185,11,'FA36.0','Effusion of joint containing blood','Y','2025-10-23 00:00:00'),(82184,11,'FA36','Effusion of joint','Y','2025-10-23 00:00:00'),(82183,11,'XA2AT1','Efferent arteriole of the interlobular artery','Y','2025-10-23 00:00:00'),(82182,11,'NF08.2Z','Effects of vibration, unspecified','Y','2025-10-23 00:00:00'),(82181,11,'NF08.2','Effects of vibration','Y','2025-10-23 00:00:00'),(82180,11,'NF07.1','Effects of thirst','Y','2025-10-23 00:00:00'),(82179,11,'NF06.Z','Effects of strenuous physical exercise, unspecified','Y','2025-10-23 00:00:00'),(82178,11,'NF06','Effects of strenuous physical exercise','Y','2025-10-23 00:00:00'),(82177,11,'NF00','Effects of radiation, not elsewhere classified','Y','2025-10-23 00:00:00'),(82176,11,'NF07.Z','Effects of other deprivation, unspecified','Y','2025-10-23 00:00:00'),(82175,11,'NF07','Effects of other deprivation','Y','2025-10-23 00:00:00'),(82174,11,'NF08.0','Effects of lightning','Y','2025-10-23 00:00:00'),(82173,11,'NF07.0','Effects of hunger','Y','2025-10-23 00:00:00'),(82172,11,'NF04.3','Effects of high-pressure fluids','Y','2025-10-23 00:00:00'),(82171,11,'NF01.Z','Effects of heat, unspecified','Y','2025-10-23 00:00:00'),(82170,11,'NF01','Effects of heat','Y','2025-10-23 00:00:00'),(82169,11,'ND7Z','Effects of foreign body entering through natural orifice, unspecified','Y','2025-10-23 00:00:00'),(82168,11,'NF08.4','Effects of electric current','Y','2025-10-23 00:00:00'),(82167,11,'NF08','Effects of certain specified external causes','Y','2025-10-23 00:00:00'),(82166,11,'NF04.Z','Effects of air pressure or water pressure, unspecified','Y','2025-10-23 00:00:00'),(82164,11,'XM1DX2','Efavirenz','Y','2025-10-23 00:00:00'),(82165,11,'NF04','Effects of air pressure or water pressure','Y','2025-10-23 00:00:00'),(82163,11,'XM2BE2','Efaproxiral','Y','2025-10-23 00:00:00'),(82162,11,'XM8CX4','Efalizumab','Y','2025-10-23 00:00:00'),(82160,11,'XM1V56','EDTA','Y','2025-10-23 00:00:00'),(82161,11,'XE729','Educational activity','Y','2025-10-23 00:00:00'),(82159,11,'XM6565','Edrophonium chloride','Y','2025-10-23 00:00:00'),(82158,11,'XM8B05','Edrophonium','Y','2025-10-23 00:00:00'),(82156,11,'XM09W6','Edoxudine','Y','2025-10-23 00:00:00'),(82157,11,'XM52L2','Edrecolomab','Y','2025-10-23 00:00:00'),(82154,11,'XM3TR4','Edifenphos','Y','2025-10-23 00:00:00'),(82155,11,'XM2SN5','Edoxaban','Y','2025-10-23 00:00:00'),(82153,11,'XM0588','Edetates','Y','2025-10-23 00:00:00'),(82152,11,'SB06.Z','Edema disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(82151,11,'SB06','Edema disorders (TM1)','Y','2025-10-23 00:00:00'),(82150,11,'XM1KZ8','Edaravone','Y','2025-10-23 00:00:00'),(82149,11,'EE13.5','Eczematous nail dystrophy','Y','2025-10-23 00:00:00'),(82148,11,'XM3KK5','Eculizumab','Y','2025-10-23 00:00:00'),(82147,11,'XM76A5','Ectylurea','Y','2025-10-23 00:00:00'),(82146,11,'9A03.2Z','Ectropion of eyelid, unspecified','Y','2025-10-23 00:00:00'),(82145,11,'9A03.2','Ectropion of eyelid','Y','2025-10-23 00:00:00'),(82144,11,'LB52.0','Ectopic testis','Y','2025-10-23 00:00:00'),(82143,11,'LB22.2','Ectopic spleen','Y','2025-10-23 00:00:00'),(82142,11,'JA01.Z','Ectopic pregnancy, unspecified','Y','2025-10-23 00:00:00'),(82141,11,'JA01','Ectopic pregnancy','Y','2025-10-23 00:00:00'),(82140,11,'LB30.7','Ectopic or pelvic kidney','Y','2025-10-23 00:00:00'),(82139,11,'XH0707','Ectopic hamartomatous thymoma','Y','2025-10-23 00:00:00'),(82138,11,'BC81.0','Ectopic atrial tachycardia','Y','2025-10-23 00:00:00'),(82137,11,'LB17.1','Ectopic anus','Y','2025-10-23 00:00:00'),(82135,11,'XH0S12','Ectomesenchymoma','Y','2025-10-23 00:00:00'),(82136,11,'5A70.1','Ectopic ACTH syndrome','Y','2025-10-23 00:00:00'),(82134,11,'XH1WZ6','Ectomesenchymal chondromyxoid tumour','Y','2025-10-23 00:00:00'),(82133,11,'LD27.0','Ectodermal dysplasia syndromes','Y','2025-10-23 00:00:00'),(82132,11,'XA7TJ5','Ectoderm','Y','2025-10-23 00:00:00'),(82131,11,'1B73.Z','Ecthyma, unspecified','Y','2025-10-23 00:00:00'),(82130,11,'1B73.2','Ecthyma gangrenosum','Y','2025-10-23 00:00:00'),(82128,11,'XM07Y4','Ecstasy','Y','2025-10-23 00:00:00'),(82129,11,'1B73','Ecthyma','Y','2025-10-23 00:00:00'),(82127,11,'XM7K14','Ecothiopate iodide','Y','2025-10-23 00:00:00'),(82126,11,'XE139','Economic activity, wholesale or retail trade','Y','2025-10-23 00:00:00'),(82125,11,'XE5JN','Economic activity, transport, storage, or communications','Y','2025-10-23 00:00:00'),(82124,11,'XE6J4','Economic activity, repair of motor vehicles, motorcycles, or personal and household goods','Y','2025-10-23 00:00:00'),(82123,11,'XE3YF','Economic activity, real estate, renting, or business activities','Y','2025-10-23 00:00:00'),(82122,11,'XE3K1','Economic activity, public administration, defence, or compulsory social security','Y','2025-10-23 00:00:00'),(82121,11,'XE54F','Economic activity, providing education','Y','2025-10-23 00:00:00'),(82120,11,'XE2PM','Economic activity, private households with employed persons','Y','2025-10-23 00:00:00'),(82119,11,'XE7X1','Economic activity, other community, social, or personal service activities','Y','2025-10-23 00:00:00'),(82118,11,'XE45Q','Economic activity, mining, quarrying, or extraction','Y','2025-10-23 00:00:00'),(82117,11,'XE13G','Economic activity, manufacturing','Y','2025-10-23 00:00:00'),(82116,11,'XE4JS','Economic activity, hotels or restaurants','Y','2025-10-23 00:00:00'),(82115,11,'XE0G4','Economic activity, health or social work','Y','2025-10-23 00:00:00'),(82114,11,'XE227','Economic activity, fishing','Y','2025-10-23 00:00:00'),(82113,11,'XE8A7','Economic activity, financial intermediation','Y','2025-10-23 00:00:00'),(82112,11,'XE6N7','Economic activity, extra-territorial organisations or bodies','Y','2025-10-23 00:00:00'),(82111,11,'XE6WE','Economic activity, electricity, gas, or water supply','Y','2025-10-23 00:00:00'),(82110,11,'XE0SE','Economic activity, construction','Y','2025-10-23 00:00:00'),(82109,11,'XE7J2','Economic activity, agriculture, hunting, or forestry','Y','2025-10-23 00:00:00'),(82108,11,'XM5XH3','Econazole','Y','2025-10-23 00:00:00'),(82107,11,'JA25.3','Eclampsia, time period unspecified','Y','2025-10-23 00:00:00'),(82106,11,'JA25.2','Eclampsia in the puerperium','Y','2025-10-23 00:00:00'),(82105,11,'JA25.0','Eclampsia in pregnancy','Y','2025-10-23 00:00:00'),(82104,11,'JA25.1','Eclampsia in labour','Y','2025-10-23 00:00:00'),(82103,11,'SC03','Eclampsia disorder (TM1)','Y','2025-10-23 00:00:00'),(82102,11,'JA25','Eclampsia','Y','2025-10-23 00:00:00'),(82101,11,'XN2TU','Echovirus','Y','2025-10-23 00:00:00'),(82100,11,'XM17P1','Echothiophate','Y','2025-10-23 00:00:00'),(82099,11,'MB23.9','Echolalia','Y','2025-10-23 00:00:00'),(82098,11,'XN801','Echinostoma','Y','2025-10-23 00:00:00'),(82097,11,'XN9LQ','Echinococcus vogeli','Y','2025-10-23 00:00:00'),(82096,11,'XN6TQ','Echinococcus oligarthrus','Y','2025-10-23 00:00:00'),(82095,11,'XN0K1','Echinococcus multilocularis','Y','2025-10-23 00:00:00'),(82094,11,'1F73.1','Echinococcus infection of lung','Y','2025-10-23 00:00:00'),(82093,11,'1F73.0','Echinococcus infection of liver','Y','2025-10-23 00:00:00'),(82092,11,'1F73.3','Echinococcus infection of central nervous system','Y','2025-10-23 00:00:00'),(82091,11,'1F73.2','Echinococcus infection of bone','Y','2025-10-23 00:00:00'),(82090,11,'XN1H0','Echinococcus granulosus','Y','2025-10-23 00:00:00'),(82089,11,'XN84K','Echinococcus','Y','2025-10-23 00:00:00'),(82088,11,'1F73.Z','Echinococcosis, unspecified','Y','2025-10-23 00:00:00'),(82087,11,'1F73','Echinococcosis','Y','2025-10-23 00:00:00'),(82086,11,'XA7P52','Eccrine sweat duct','Y','2025-10-23 00:00:00'),(82085,11,'XA5VA9','Eccrine sweat coil','Y','2025-10-23 00:00:00'),(82084,11,'XH25Z9','Eccrine poroma','Y','2025-10-23 00:00:00'),(82083,11,'XH42Z3','Eccrine papillary adenoma','Y','2025-10-23 00:00:00'),(82082,11,'XA63U7','Eccrine gland','Y','2025-10-23 00:00:00'),(82081,11,'XH5GN1','Eccrine dermal cylindroma','Y','2025-10-23 00:00:00'),(82080,11,'XH8NE4','Eccrine adenocarcinoma','Y','2025-10-23 00:00:00'),(82079,11,'XH46Z2','Eccrine acrospiroma','Y','2025-10-23 00:00:00'),(82078,11,'MB28.2','Eccentricity','Y','2025-10-23 00:00:00'),(82077,11,'XM9192','Ecallantide','Y','2025-10-23 00:00:00'),(82076,11,'XH3SG2','EBV positive mucocutaneous ulcer','Y','2025-10-23 00:00:00'),(82075,11,'XH1QK0','EBV positive diffuse large B-cell lymphoma','Y','2025-10-23 00:00:00'),(82074,11,'LA87.03','Ebstein malformation of tricuspid valve','Y','2025-10-23 00:00:00'),(82073,11,'1D60.01','Ebola virus disease','Y','2025-10-23 00:00:00'),(82072,11,'XN1EN','Ebola virus','Y','2025-10-23 00:00:00'),(82071,11,'XM7P50','Ebola vaccines','Y','2025-10-23 00:00:00'),(82070,11,'1D60.0Z','Ebola disease, virus unspecified','Y','2025-10-23 00:00:00'),(82069,11,'1D60.0','Ebola disease','Y','2025-10-23 00:00:00'),(82068,11,'XM5XM5','Eberconazole','Y','2025-10-23 00:00:00'),(82067,11,'XM9EU0','Ebastine','Y','2025-10-23 00:00:00'),(82066,11,'MB29.2','Eating of non-nutritive substances','Y','2025-10-23 00:00:00'),(82065,11,'VD22','Eating [WHODAS]','Y','2025-10-23 00:00:00'),(82064,11,'VW24','Eating','Y','2025-10-23 00:00:00'),(82063,11,'XM1RM0','Eastern green mamba snake venom','Y','2025-10-23 00:00:00'),(82062,11,'XN78T','Eastern equine encephalitis virus','Y','2025-10-23 00:00:00'),(82061,11,'1C84','Eastern equine encephalitis','Y','2025-10-23 00:00:00'),(82060,11,'XM3RE1','Eastern diamondback rattlesnake venom','Y','2025-10-23 00:00:00'),(82059,11,'XE67K','Earplugs','Y','2025-10-23 00:00:00'),(82058,11,'LD90.1','Early-onset parkinsonism intellectual deficit','Y','2025-10-23 00:00:00'),(82057,11,'SG63','Early yin stage pattern (TM1)','Y','2025-10-23 00:00:00'),(82056,11,'SG60','Early yang stage pattern (TM1)','Y','2025-10-23 00:00:00'),(82055,11,'XH8F29','Early T-cell precursor acute lymphoblastic leukemia','Y','2025-10-23 00:00:00'),(82054,11,'1A61.Z','Early syphilis, unspecified','Y','2025-10-23 00:00:00'),(82053,11,'1A61','Early syphilis','Y','2025-10-23 00:00:00'),(82052,11,'BC65.3','Early repolarisation syndrome','Y','2025-10-23 00:00:00'),(82051,11,'XT2Q','Early onset','Y','2025-10-23 00:00:00'),(82050,11,'XT6P','Early Neonatal','Y','2025-10-23 00:00:00'),(82049,11,'XT19','Early Geriatric','Y','2025-10-23 00:00:00'),(82048,11,'LA30.50','Early exfoliation of teeth','Y','2025-10-23 00:00:00'),(82047,11,'1C1G.0','Early cutaneous Lyme borreliosis','Y','2025-10-23 00:00:00'),(82045,11,'1A60.1','Early congenital syphilis, latent','Y','2025-10-23 00:00:00'),(82046,11,'1A60.0','Early congenital syphilis, symptomatic','Y','2025-10-23 00:00:00'),(82043,11,'XT7Q','Early Adolescence','Y','2025-10-23 00:00:00'),(82044,11,'9B75.00','Early age-related macular degeneration','Y','2025-10-23 00:00:00'),(82042,11,'EE60.00','Ear-lobe keloid','Y','2025-10-23 00:00:00'),(82041,11,'XA0TW7','Earlobe','Y','2025-10-23 00:00:00'),(82040,11,'PK80.A1','Ear, nose, oral, or throat procedure associated with injury or harm, percutaneous approach','Y','2025-10-23 00:00:00'),(82039,11,'PK80.A0','Ear, nose, oral, or throat procedure associated with injury or harm, open approach','Y','2025-10-23 00:00:00'),(82038,11,'PK80.A2','Ear, nose, oral, or throat procedure associated with injury or harm, endoscopic approach','Y','2025-10-23 00:00:00'),(82037,11,'PK80.AZ','Ear, nose, oral, or throat procedure associated with injury or harm in therapeutic use, unspecified approach','Y','2025-10-23 00:00:00'),(82036,11,'PK80.AY','Ear, nose, oral, or throat procedure associated with injury or harm in therapeutic use, other specified approach','Y','2025-10-23 00:00:00'),(82035,11,'PK80.A','Ear, nose, oral, or throat procedure associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(82034,11,'XA01U5','Ear','Y','2025-10-23 00:00:00'),(82033,11,'9B77','Eales disease','Y','2025-10-23 00:00:00'),(82032,11,'MF50.7','Dysuria','Y','2025-10-23 00:00:00'),(82031,11,'EC32','Dystrophic epidermolysis bullosa','Y','2025-10-23 00:00:00'),(82030,11,'EB90.40','Dystrophic calcification of the skin of uncertain or unspecified aetiology','Y','2025-10-23 00:00:00'),(82029,11,'9A00.0','Dystopia canthorum','Y','2025-10-23 00:00:00'),(82028,11,'8A02.Z','Dystonic disorders, unspecified','Y','2025-10-23 00:00:00'),(82027,11,'8A02','Dystonic disorders','Y','2025-10-23 00:00:00'),(82026,11,'8A02.11','Dystonia-plus','Y','2025-10-23 00:00:00'),(82025,11,'8A02.12','Dystonia associated with heredodegenerative disorders','Y','2025-10-23 00:00:00'),(82024,11,'MB47.4','Dystonia','Y','2025-10-23 00:00:00'),(82023,11,'9A22.0','Dysthyroid orbitopathy','Y','2025-10-23 00:00:00'),(82022,11,'6A72','Dysthymic disorder','Y','2025-10-23 00:00:00'),(82021,11,'MB43','Dyssomnia','Y','2025-10-23 00:00:00'),(82020,11,'XM56F9','Dysprosium (165Dy) colloid','Y','2025-10-23 00:00:00'),(82019,11,'MD11.5','Dyspnoea','Y','2025-10-23 00:00:00'),(82018,11,'SA80','Dyspnea disorder (TM1)','Y','2025-10-23 00:00:00'),(82017,11,'XH9035','Dysplastic naevus','Y','2025-10-23 00:00:00'),(82016,11,'XH6K00','Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos)','Y','2025-10-23 00:00:00'),(82015,11,'LA87.02','Dysplasia of tricuspid valve','Y','2025-10-23 00:00:00'),(82014,11,'LA87.12','Dysplasia of mitral valve','Y','2025-10-23 00:00:00'),(82013,11,'DA23.1','Dysplasia of Barrett epithelium','Y','2025-10-23 00:00:00'),(82012,11,'EL73.5','Dyspigmentation resulting from cosmetic procedure','Y','2025-10-23 00:00:00'),(82011,11,'MB24.7','Dysphoria','Y','2025-10-23 00:00:00'),(82010,11,'MA82.1Z','Dysphonia, unspecified','Y','2025-10-23 00:00:00'),(82009,11,'MA82.1','Dysphonia','Y','2025-10-23 00:00:00'),(82008,11,'MA80.1','Dysphasia','Y','2025-10-23 00:00:00'),(82007,11,'SA50','Dysphagia disorder (TM1)','Y','2025-10-23 00:00:00'),(82006,11,'MD93','Dysphagia','Y','2025-10-23 00:00:00'),(82005,11,'MD92','Dyspepsia','Y','2025-10-23 00:00:00'),(82004,11,'GA12','Dyspareunia','Y','2025-10-23 00:00:00'),(82003,11,'LD24.H','Dysostoses with predominant vertebral and costal involvement','Y','2025-10-23 00:00:00'),(82002,11,'GA34.3','Dysmenorrhoea','Y','2025-10-23 00:00:00'),(82001,11,'SB96','Dysmenorrhea disorder (TM1)','Y','2025-10-23 00:00:00'),(82000,11,'MB4B.0','Dyslexia and alexia','Y','2025-10-23 00:00:00'),(81999,11,'8D21','Dyskinetic cerebral palsy','Y','2025-10-23 00:00:00'),(81998,11,'DC14.2','Dyskinesia of sphincter of Oddi','Y','2025-10-23 00:00:00'),(81997,11,'MB41.2','Dysgeusia','Y','2025-10-23 00:00:00'),(81996,11,'2C73.1','Dysgerminoma of ovary','Y','2025-10-23 00:00:00'),(81995,11,'XH24E0','Dysgerminoma','Y','2025-10-23 00:00:00'),(81994,11,'NE82.Z','Dysfunction or complication of pacemaker, pacemaker lead or implantable cardioverter defibrillator, not elsewhere classified, unspecified','Y','2025-10-23 00:00:00'),(81993,11,'NE82','Dysfunction or complication of pacemaker, pacemaker lead or implantable cardioverter defibrillator, not elsewhere classified','Y','2025-10-23 00:00:00'),(81992,11,'MB40.6','Dysesthesia','Y','2025-10-23 00:00:00'),(81991,11,'SA56','Dysentery disorder (TM1)','Y','2025-10-23 00:00:00'),(81990,11,'XH0H76','Dysembryoplastic neuroepithelial tumour','Y','2025-10-23 00:00:00'),(81989,11,'MB4B.5','Dyscalculia','Y','2025-10-23 00:00:00'),(81988,11,'MA80.2Z','Dysarthria, unspecified','Y','2025-10-23 00:00:00'),(81987,11,'MA80.2','Dysarthria','Y','2025-10-23 00:00:00'),(81986,11,'XM3A08','Dyphylline','Y','2025-10-23 00:00:00'),(81985,11,'XM7Q61','Dynamite fumes','Y','2025-10-23 00:00:00'),(81984,11,'XM9YX2','Dynamite','Y','2025-10-23 00:00:00'),(81983,11,'XM8H37','Dye, not elsewhere classified','Y','2025-10-23 00:00:00'),(81982,11,'XM71X5','Dydrogesterone','Y','2025-10-23 00:00:00'),(81981,11,'XM3QB4','Dyclonine','Y','2025-10-23 00:00:00'),(81980,11,'XM5601','Dyclone','Y','2025-10-23 00:00:00'),(81979,11,'XM01Y3','Dutasteride','Y','2025-10-23 00:00:00'),(81978,11,'XE9HK','Dust or dirt problem with device identified','Y','2025-10-23 00:00:00'),(81977,11,'XM7NY5','Durvalumab','Y','2025-10-23 00:00:00'),(81976,11,'XT6G','Duration of pregnancy more than 36 completed weeks','Y','2025-10-23 00:00:00'),(81974,11,'XT09','Duration of pregnancy 5-13 completed weeks','Y','2025-10-23 00:00:00'),(81975,11,'XT3X','Duration of pregnancy less than 5 completed weeks','Y','2025-10-23 00:00:00'),(81973,11,'XT84','Duration of pregnancy 34-36 completed weeks','Y','2025-10-23 00:00:00'),(81972,11,'XT4J','Duration of pregnancy 26-33 completed weeks','Y','2025-10-23 00:00:00'),(81971,11,'XT0T','Duration of pregnancy 20-25 completed weeks','Y','2025-10-23 00:00:00'),(81970,11,'XT5N','Duration of pregnancy 20-21 completed weeks','Y','2025-10-23 00:00:00'),(81969,11,'XT65','Duration of pregnancy 14-19 completed weeks','Y','2025-10-23 00:00:00'),(81968,11,'8B22.42','Dural arteriovenous fistula','Y','2025-10-23 00:00:00'),(81967,11,'XM81H5','Durabolin','Y','2025-10-23 00:00:00'),(81965,11,'XM2KD7','Duponol (C) (EP)','Y','2025-10-23 00:00:00'),(81966,11,'XA04B5','Dura mater','Y','2025-10-23 00:00:00'),(81964,11,'LD41.P','Duplications with other complex rearrangements','Y','2025-10-23 00:00:00'),(81963,11,'LD41.81','Duplications of the short arm of chromosome 9','Y','2025-10-23 00:00:00'),(81962,11,'LD41.71','Duplications of the short arm of chromosome 8','Y','2025-10-23 00:00:00'),(81961,11,'LD41.61','Duplications of the short arm of chromosome 7','Y','2025-10-23 00:00:00'),(81960,11,'LD41.51','Duplications of the short arm of chromosome 6','Y','2025-10-23 00:00:00'),(81959,11,'LD41.41','Duplications of the short arm of chromosome 5','Y','2025-10-23 00:00:00'),(81958,11,'LD41.31','Duplications of the short arm of chromosome 4','Y','2025-10-23 00:00:00'),(81957,11,'LD41.21','Duplications of the short arm of chromosome 3','Y','2025-10-23 00:00:00'),(81956,11,'LD41.K1','Duplications of the short arm of chromosome 20','Y','2025-10-23 00:00:00'),(81955,11,'LD41.11','Duplications of the short arm of chromosome 2','Y','2025-10-23 00:00:00'),(81954,11,'LD41.J1','Duplications of the short arm of chromosome 19','Y','2025-10-23 00:00:00'),(81953,11,'LD41.H1','Duplications of the short arm of chromosome 18','Y','2025-10-23 00:00:00'),(81951,11,'LD41.F1','Duplications of the short arm of chromosome 16','Y','2025-10-23 00:00:00'),(81952,11,'LD41.G1','Duplications of the short arm of chromosome 17','Y','2025-10-23 00:00:00'),(81950,11,'LD41.B1','Duplications of the short arm of chromosome 12','Y','2025-10-23 00:00:00'),(81949,11,'LD41.91','Duplications of the short arm of chromosome 10','Y','2025-10-23 00:00:00'),(81948,11,'LD41.01','Duplications of the short arm of chromosome 1','Y','2025-10-23 00:00:00'),(81947,11,'LD41.80','Duplications of the long arm of chromosome 9','Y','2025-10-23 00:00:00'),(81946,11,'LD41.70','Duplications of the long arm of chromosome 8','Y','2025-10-23 00:00:00'),(81945,11,'LD41.60','Duplications of the long arm of chromosome 7','Y','2025-10-23 00:00:00'),(81944,11,'LD41.50','Duplications of the long arm of chromosome 6','Y','2025-10-23 00:00:00'),(81943,11,'LD41.40','Duplications of the long arm of chromosome 5','Y','2025-10-23 00:00:00'),(81942,11,'LD41.30','Duplications of the long arm of chromosome 4','Y','2025-10-23 00:00:00'),(81941,11,'LD41.20','Duplications of the long arm of chromosome 3','Y','2025-10-23 00:00:00'),(81940,11,'LD41.K0','Duplications of the long arm of chromosome 20','Y','2025-10-23 00:00:00'),(81939,11,'LD41.10','Duplications of the long arm of chromosome 2','Y','2025-10-23 00:00:00'),(81938,11,'LD41.J0','Duplications of the long arm of chromosome 19','Y','2025-10-23 00:00:00'),(81937,11,'LD41.H0','Duplications of the long arm of chromosome 18','Y','2025-10-23 00:00:00'),(81936,11,'LD41.G0','Duplications of the long arm of chromosome 17','Y','2025-10-23 00:00:00'),(81935,11,'LD41.F0','Duplications of the long arm of chromosome 16','Y','2025-10-23 00:00:00'),(81934,11,'LD41.B0','Duplications of the long arm of chromosome 12','Y','2025-10-23 00:00:00'),(81933,11,'LD41.90','Duplications of the long arm of chromosome 10','Y','2025-10-23 00:00:00'),(81932,11,'LD41.00','Duplications of the long arm of chromosome 1','Y','2025-10-23 00:00:00'),(81931,11,'LD41.Z','Duplications of the autosomes, unspecified','Y','2025-10-23 00:00:00'),(81930,11,'LD41','Duplications of the autosomes','Y','2025-10-23 00:00:00'),(81929,11,'LD41.8Z','Duplications of chromosome 9, unspecified','Y','2025-10-23 00:00:00'),(81928,11,'LD41.8','Duplications of chromosome 9','Y','2025-10-23 00:00:00'),(81927,11,'LD41.7Z','Duplications of chromosome 8, unspecified','Y','2025-10-23 00:00:00'),(81926,11,'LD41.7','Duplications of chromosome 8','Y','2025-10-23 00:00:00'),(81925,11,'LD41.6Z','Duplications of chromosome 7, unspecified','Y','2025-10-23 00:00:00'),(81924,11,'LD41.6','Duplications of chromosome 7','Y','2025-10-23 00:00:00'),(81923,11,'LD41.5Z','Duplications of chromosome 6, unspecified','Y','2025-10-23 00:00:00'),(81922,11,'LD41.5','Duplications of chromosome 6','Y','2025-10-23 00:00:00'),(81921,11,'LD41.4Z','Duplications of chromosome 5, unspecified','Y','2025-10-23 00:00:00'),(81920,11,'LD41.4','Duplications of chromosome 5','Y','2025-10-23 00:00:00'),(81919,11,'LD41.3Z','Duplications of chromosome 4, unspecified','Y','2025-10-23 00:00:00'),(81918,11,'LD41.3','Duplications of chromosome 4','Y','2025-10-23 00:00:00'),(81917,11,'LD41.2Z','Duplications of chromosome 3, unspecified','Y','2025-10-23 00:00:00'),(81916,11,'LD41.2','Duplications of chromosome 3','Y','2025-10-23 00:00:00'),(81915,11,'LD41.M','Duplications of chromosome 22','Y','2025-10-23 00:00:00'),(81914,11,'LD41.L','Duplications of chromosome 21','Y','2025-10-23 00:00:00'),(81913,11,'LD41.KZ','Duplications of chromosome 20, unspecified','Y','2025-10-23 00:00:00'),(81912,11,'LD41.K','Duplications of chromosome 20','Y','2025-10-23 00:00:00'),(81911,11,'LD41.1Z','Duplications of chromosome 2, unspecified','Y','2025-10-23 00:00:00'),(81910,11,'LD41.1','Duplications of chromosome 2','Y','2025-10-23 00:00:00'),(81909,11,'LD41.JZ','Duplications of chromosome 19, unspecified','Y','2025-10-23 00:00:00'),(81908,11,'LD41.J','Duplications of chromosome 19','Y','2025-10-23 00:00:00'),(81907,11,'LD41.HZ','Duplications of chromosome 18, unspecified','Y','2025-10-23 00:00:00'),(81906,11,'LD41.H','Duplications of chromosome 18','Y','2025-10-23 00:00:00'),(81905,11,'LD41.GZ','Duplications of chromosome 17, unspecified','Y','2025-10-23 00:00:00'),(81904,11,'LD41.G','Duplications of chromosome 17','Y','2025-10-23 00:00:00'),(81903,11,'LD41.FZ','Duplications of chromosome 16, unspecified','Y','2025-10-23 00:00:00'),(81902,11,'LD41.F','Duplications of chromosome 16','Y','2025-10-23 00:00:00'),(81901,11,'LD41.E','Duplications of chromosome 15','Y','2025-10-23 00:00:00'),(81900,11,'LD41.D','Duplications of chromosome 14','Y','2025-10-23 00:00:00'),(81899,11,'LD41.C','Duplications of chromosome 13','Y','2025-10-23 00:00:00'),(81898,11,'LD41.BZ','Duplications of chromosome 12, unspecified','Y','2025-10-23 00:00:00'),(81897,11,'LD41.B','Duplications of chromosome 12','Y','2025-10-23 00:00:00'),(81896,11,'LD41.A','Duplications of chromosome 11','Y','2025-10-23 00:00:00'),(81895,11,'LD41.9Z','Duplications of chromosome 10, unspecified','Y','2025-10-23 00:00:00'),(81894,11,'LD41.9','Duplications of chromosome 10','Y','2025-10-23 00:00:00'),(81893,11,'LD41.0Z','Duplications of chromosome 1, unspecified','Y','2025-10-23 00:00:00'),(81891,11,'LB31.5','Duplication of urethra','Y','2025-10-23 00:00:00'),(81892,11,'LD41.0','Duplications of chromosome 1','Y','2025-10-23 00:00:00'),(81889,11,'LB41.1','Duplication of clitoris','Y','2025-10-23 00:00:00'),(81890,11,'LB31.A','Duplication of ureter','Y','2025-10-23 00:00:00'),(81887,11,'XA9780','Duodenum','Y','2025-10-23 00:00:00'),(81888,11,'XM1015','Dupilumab','Y','2025-10-23 00:00:00'),(81886,11,'DA51.Z','Duodenitis, unspecified','Y','2025-10-23 00:00:00'),(81885,11,'DA51.4Z','Duodenitis of unknown aetiology with specific endoscopic or pathologic features, unspecified','Y','2025-10-23 00:00:00'),(81884,11,'DA51.4','Duodenitis of unknown aetiology with specific endoscopic or pathologic features','Y','2025-10-23 00:00:00'),(81883,11,'DA51.5Y','Duodenitis due to other specified external causes','Y','2025-10-23 00:00:00'),(81882,11,'DA51.5Z','Duodenitis due to external causes, unspecified','Y','2025-10-23 00:00:00'),(81881,11,'DA51.5','Duodenitis due to external causes','Y','2025-10-23 00:00:00'),(81880,11,'DA51','Duodenitis','Y','2025-10-23 00:00:00'),(81879,11,'DA52.0','Duodenal varices','Y','2025-10-23 00:00:00'),(81878,11,'DA63.Z','Duodenal ulcer, unspecified','Y','2025-10-23 00:00:00'),(81877,11,'DA63.5Y','Duodenal ulcer due to other specified external causes','Y','2025-10-23 00:00:00'),(81876,11,'DA63.5Z','Duodenal ulcer due to external causes, unspecified','Y','2025-10-23 00:00:00'),(81875,11,'DA63.5','Duodenal ulcer due to external causes','Y','2025-10-23 00:00:00'),(81874,11,'DA63','Duodenal ulcer','Y','2025-10-23 00:00:00'),(81873,11,'DA53.Z','Duodenal polyp, unspecified','Y','2025-10-23 00:00:00'),(81872,11,'DA53','Duodenal polyp','Y','2025-10-23 00:00:00'),(81871,11,'DA51.60','Duodenal phlegmon','Y','2025-10-23 00:00:00'),(81870,11,'DA63.0','Duodenal erosion','Y','2025-10-23 00:00:00'),(81869,11,'DE11','Dumping syndrome','Y','2025-10-23 00:00:00'),(81868,11,'XM10Q5','Duloxetine','Y','2025-10-23 00:00:00'),(81867,11,'XE4UR','Dull or blunt','Y','2025-10-23 00:00:00'),(81866,11,'XM77A6','Dulcolax','Y','2025-10-23 00:00:00'),(81865,11,'XM1FT0','Dulaglutide','Y','2025-10-23 00:00:00'),(81864,11,'XE9HH','Ducted air-conditioning unit or related fitting','Y','2025-10-23 00:00:00'),(81863,11,'XH0557','Ductal carcinoma in situ, solid type','Y','2025-10-23 00:00:00'),(81862,11,'XH4V32','Ductal carcinoma in situ, NOS','Y','2025-10-23 00:00:00'),(81861,11,'2E65.3','Ductal carcinoma in situ of breast, comedo subtype','Y','2025-10-23 00:00:00'),(81860,11,'2E65.2','Ductal carcinoma in situ of breast','Y','2025-10-23 00:00:00'),(81859,11,'XA3789','Duct of Wirsung','Y','2025-10-23 00:00:00'),(81858,11,'XA8WC8','Duct of Santorini','Y','2025-10-23 00:00:00'),(81857,11,'XH6PY4','Duct carcinoma, desmoplastic type','Y','2025-10-23 00:00:00'),(81856,11,'XM8NV1','Duchenne muscular dystrophy therapy','Y','2025-10-23 00:00:00'),(81855,11,'8C70.1','Duchenne muscular dystrophy','Y','2025-10-23 00:00:00'),(81854,11,'XM1M52','Duboisine','Y','2025-10-23 00:00:00'),(81853,11,'5C58.02','Dubin-Johnson syndrome','Y','2025-10-23 00:00:00'),(81852,11,'SF62','Dual deficiency of heart qi and blood pattern (TM1)','Y','2025-10-23 00:00:00'),(81851,11,'SF12','Dry-phlegm pattern (TM1)','Y','2025-10-23 00:00:00'),(81849,11,'SE83','Dryness factor pattern (TM1)','Y','2025-10-23 00:00:00'),(81850,11,'SF8D','Dryness invading the lung pattern (TM1)','Y','2025-10-23 00:00:00'),(81847,11,'XE8AE','Dry cell battery','Y','2025-10-23 00:00:00'),(81848,11,'SB73','Dry skin disorder (TM1)','Y','2025-10-23 00:00:00'),(81846,11,'5B5A.00','Dry beriberi','Y','2025-10-23 00:00:00'),(81845,11,'PL00','Drugs, medicaments or biological substances associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(81844,11,'XM11B1','Drugs for urinary frequency and incontinence','Y','2025-10-23 00:00:00'),(81843,11,'XM8Q31','Drugs for treatment of lepra','Y','2025-10-23 00:00:00'),(81842,11,'XM9P78','Drugs for obstructive airway diseases','Y','2025-10-23 00:00:00'),(81841,11,'PL13.2','Drug-related injury or harm in the context of correct administration or dosage, as mode of injury or harm','Y','2025-10-23 00:00:00'),(81840,11,'XE933','Drug-related incident','Y','2025-10-23 00:00:00'),(81839,11,'3A01.5','Drug-induced vitamin B12 deficiency anaemia','Y','2025-10-23 00:00:00'),(81838,11,'4A85.03','Drug-induced vasculitis','Y','2025-10-23 00:00:00'),(81837,11,'EH61','Drug-induced urticaria, angioedema and anaphylaxis','Y','2025-10-23 00:00:00'),(81836,11,'EH61.0','Drug-induced urticaria','Y','2025-10-23 00:00:00'),(81835,11,'EH63.1','Drug-induced toxic epidermal necrolysis','Y','2025-10-23 00:00:00'),(81834,11,'3B64.12','Drug-induced thrombocytopenic purpura','Y','2025-10-23 00:00:00'),(81833,11,'EH72.00','Drug-induced telogen hair loss','Y','2025-10-23 00:00:00'),(81832,11,'EH63.0','Drug-induced Stevens-Johnson syndrome','Y','2025-10-23 00:00:00'),(81831,11,'EH63.2','Drug-induced Stevens-Johnson and toxic epidermal necrolysis overlap syndrome','Y','2025-10-23 00:00:00'),(81830,11,'EC90.2','Drug-induced pruritus','Y','2025-10-23 00:00:00'),(81829,11,'8D43.20','Drug-induced polyneuropathy','Y','2025-10-23 00:00:00'),(81828,11,'8A00.24','Drug-induced parkinsonism','Y','2025-10-23 00:00:00'),(81827,11,'FB83.13','Drug-induced osteoporosis','Y','2025-10-23 00:00:00'),(81826,11,'FB83.04','Drug-induced osteopenia','Y','2025-10-23 00:00:00'),(81825,11,'FB81.2','Drug-induced osteonecrosis','Y','2025-10-23 00:00:00'),(81824,11,'DA01.14','Drug-induced oral ulcer','Y','2025-10-23 00:00:00'),(81822,11,'DB95.Z','Drug-induced or toxic liver disease, unspecified','Y','2025-10-23 00:00:00'),(81823,11,'EH74','Drug-induced oral conditions','Y','2025-10-23 00:00:00'),(81821,11,'DB95.6','Drug-induced or toxic liver disease with vascular disorders of the liver','Y','2025-10-23 00:00:00'),(81820,11,'DB95.7','Drug-induced or toxic liver disease with liver tumours','Y','2025-10-23 00:00:00'),(81819,11,'DB95.4','Drug-induced or toxic liver disease with granulomatous hepatitis','Y','2025-10-23 00:00:00'),(81818,11,'DB95.5','Drug-induced or toxic liver disease with fibrosis or cirrhosis of liver','Y','2025-10-23 00:00:00'),(81817,11,'DB95.3Z','Drug-induced or toxic liver disease with fatty liver, unspecified','Y','2025-10-23 00:00:00'),(81816,11,'DB95.3','Drug-induced or toxic liver disease with fatty liver','Y','2025-10-23 00:00:00'),(81815,11,'DB95.1Z','Drug-induced or toxic liver disease with chronic hepatitis, unspecified','Y','2025-10-23 00:00:00'),(81814,11,'DB95.11','Drug-induced or toxic liver disease with chronic hepatitis without cirrhosis','Y','2025-10-23 00:00:00'),(81813,11,'DB95.10','Drug-induced or toxic liver disease with chronic hepatitis with cirrhosis','Y','2025-10-23 00:00:00'),(81812,11,'DB95.1','Drug-induced or toxic liver disease with chronic hepatitis','Y','2025-10-23 00:00:00'),(81811,11,'DB95.30','Drug-induced or toxic liver disease with chronic fatty liver disease','Y','2025-10-23 00:00:00'),(81810,11,'DB95.2Z','Drug-induced or toxic liver disease with cholestasis, unspecified','Y','2025-10-23 00:00:00'),(81809,11,'DB95.2','Drug-induced or toxic liver disease with cholestasis','Y','2025-10-23 00:00:00'),(81808,11,'DB95.0','Drug-induced or toxic liver disease with acute hepatic necrosis or acute hepatitis','Y','2025-10-23 00:00:00'),(81807,11,'DB95','Drug-induced or toxic liver disease','Y','2025-10-23 00:00:00'),(81806,11,'DA94.1','Drug-induced or toxic enteritis of small intestine','Y','2025-10-23 00:00:00'),(81805,11,'DA24.21','Drug-induced oesophagitis','Y','2025-10-23 00:00:00'),(81804,11,'DA25.31','Drug-induced oesophageal ulcer','Y','2025-10-23 00:00:00'),(81803,11,'5B81.1','Drug-induced obesity','Y','2025-10-23 00:00:00'),(81802,11,'EH73','Drug-induced nail abnormalities','Y','2025-10-23 00:00:00'),(81801,11,'8C71.3','Drug-induced myotonia','Y','2025-10-23 00:00:00'),(81800,11,'8C80','Drug-induced myopathy','Y','2025-10-23 00:00:00'),(81799,11,'8C60.0','Drug-induced myasthenia gravis','Y','2025-10-23 00:00:00'),(81798,11,'4A40.1','Drug-induced lupus erythematosus','Y','2025-10-23 00:00:00'),(81797,11,'4A85.00','Drug-induced liver hypersensitivity disease','Y','2025-10-23 00:00:00'),(81796,11,'4A85.01','Drug-induced kidney hypersensitivity','Y','2025-10-23 00:00:00'),(81795,11,'5A43.0','Drug-induced hypergastrinaemia','Y','2025-10-23 00:00:00'),(81794,11,'EH72','Drug-induced hair abnormalities','Y','2025-10-23 00:00:00'),(81793,11,'FA25.11','Drug-induced gout','Y','2025-10-23 00:00:00'),(81792,11,'DA42.83','Drug-induced gastritis','Y','2025-10-23 00:00:00'),(81791,11,'DA60.62','Drug-induced gastric ulcer','Y','2025-10-23 00:00:00'),(81790,11,'3A02.4','Drug-induced folate deficiency anaemia','Y','2025-10-23 00:00:00'),(81789,11,'EH64','Drug-induced erythroderma','Y','2025-10-23 00:00:00'),(81788,11,'8A02.10','Drug-induced dystonia','Y','2025-10-23 00:00:00'),(81787,11,'DA51.51','Drug-induced duodenitis','Y','2025-10-23 00:00:00'),(81786,11,'DA63.50','Drug-induced duodenal ulcer','Y','2025-10-23 00:00:00'),(81785,11,'4A85.02','Drug-induced cytopenia','Y','2025-10-23 00:00:00'),(81784,11,'DB33.43','Drug-induced colitis','Y','2025-10-23 00:00:00'),(81783,11,'8A01.16','Drug-induced chorea','Y','2025-10-23 00:00:00'),(81782,11,'4A80.0','Drug-induced bronchospasm','Y','2025-10-23 00:00:00'),(81781,11,'3A70.10','Drug-induced aplastic anaemia','Y','2025-10-23 00:00:00'),(81780,11,'EH61.1','Drug-induced angioedema','Y','2025-10-23 00:00:00'),(81779,11,'DA62.2','Drug-induced anastomotic ulcer','Y','2025-10-23 00:00:00'),(81778,11,'4A84.1','Drug-induced anaphylaxis','Y','2025-10-23 00:00:00'),(81777,11,'EH72.01','Drug-induced anagen effluvium','Y','2025-10-23 00:00:00'),(81776,11,'EH72.0','Drug-induced alopecia','Y','2025-10-23 00:00:00'),(81775,11,'FB83.22','Drug-induced adult osteomalacia','Y','2025-10-23 00:00:00'),(81774,11,'EH67.0','Drug-induced acute generalised exanthematous pustulosis','Y','2025-10-23 00:00:00'),(81773,11,'NE88','Drug toxicity associated with harm in surgical or medical care, not elsewhere classified','Y','2025-10-23 00:00:00'),(81772,11,'QB95.3','Drug rehabilitation','Y','2025-10-23 00:00:00'),(81771,11,'PL13.9','Drug or substance interactions, as mode of injury or harm','Y','2025-10-23 00:00:00'),(81769,11,'4A85.0','Drug or pharmacological agents hypersensitivity','Y','2025-10-23 00:00:00'),(81770,11,'QA79','Drug or substance interactions without injury or harm','Y','2025-10-23 00:00:00'),(81768,11,'4A85.0Z','Drug hypersensitivity of unspecified type','Y','2025-10-23 00:00:00'),(81767,11,'4A85.0Y','Drug hypersensitivity of other specified type','Y','2025-10-23 00:00:00'),(81766,11,'EH6Z','Drug eruption of unspecified type','Y','2025-10-23 00:00:00'),(81765,11,'EH6Y','Drug eruption of other specified type','Y','2025-10-23 00:00:00'),(81764,11,'XM7B75','Droxidopa','Y','2025-10-23 00:00:00'),(81763,11,'XM7WP9','Droxicam','Y','2025-10-23 00:00:00'),(81762,11,'PH10','Drowning or submersion while in body of water with undetermined intent','Y','2025-10-23 00:00:00'),(81761,11,'PH11','Drowning or submersion following fall into body of water with undetermined intent','Y','2025-10-23 00:00:00'),(81760,11,'NF08.1','Drowning or nonfatal submersion','Y','2025-10-23 00:00:00'),(81759,11,'XM8K47','Drotrecogin alfa (activated)','Y','2025-10-23 00:00:00'),(81758,11,'XM0PM7','Drotrecogin alfa','Y','2025-10-23 00:00:00'),(81757,11,'XM0GU8','Drotebanol','Y','2025-10-23 00:00:00'),(81756,11,'XM13K8','Drotaverine','Y','2025-10-23 00:00:00'),(81755,11,'XM3L86','Drospirenone and ethinylestradiol','Y','2025-10-23 00:00:00'),(81753,11,'XM6995','Dropropizine','Y','2025-10-23 00:00:00'),(81754,11,'XM7XY6','Drospirenone','Y','2025-10-23 00:00:00'),(81751,11,'MB46.3','Drop attack','Y','2025-10-23 00:00:00'),(81752,11,'XM6FV0','Droperidol','Y','2025-10-23 00:00:00'),(81749,11,'XM1W83','Dronabinol','Y','2025-10-23 00:00:00'),(81750,11,'XM8K75','Dronedarone','Y','2025-10-23 00:00:00'),(81747,11,'XM81P5','Dromoran','Y','2025-10-23 00:00:00'),(81748,11,'XM1RM3','Dromostanolone','Y','2025-10-23 00:00:00'),(81746,11,'XM7H79','Drisapersen','Y','2025-10-23 00:00:00'),(81744,11,'XE88U','Drill','Y','2025-10-23 00:00:00'),(81745,11,'XE532','Drinking glass, cup made from glass or china','Y','2025-10-23 00:00:00'),(81743,11,'SB04','Dribbling urinary block disorder (TM1)','Y','2025-10-23 00:00:00'),(81742,11,'SE38','Dribbling disorder (TM1)','Y','2025-10-23 00:00:00'),(81740,11,'XM1JW3','Dressing, live pulp','Y','2025-10-23 00:00:00'),(81741,11,'BA60.0','Dressler syndrome','Y','2025-10-23 00:00:00'),(81738,11,'VW23','Dressing','Y','2025-10-23 00:00:00'),(81739,11,'VD21','Dressing [WHODAS]','Y','2025-10-23 00:00:00'),(81736,11,'8A61.11','Dravet syndrome','Y','2025-10-23 00:00:00'),(81737,11,'EH65','DRESS syndrome','Y','2025-10-23 00:00:00'),(81735,11,'XE003','Draperies, curtains','Y','2025-10-23 00:00:00'),(81733,11,'XN9Q5','Dracunculus medinensis','Y','2025-10-23 00:00:00'),(81734,11,'XM6AU8','Drain cleaner, not elsewhere classified','Y','2025-10-23 00:00:00'),(81732,11,'XN7A6','Dracunculus','Y','2025-10-23 00:00:00'),(81731,11,'1F64','Dracunculiasis','Y','2025-10-23 00:00:00'),(81730,11,'XM77K6','Doxylamine','Y','2025-10-23 00:00:00'),(81729,11,'XM7J58','Doxycycline','Y','2025-10-23 00:00:00'),(81728,11,'XM7JU8','Doxorubicin','Y','2025-10-23 00:00:00'),(81727,11,'XM9608','Doxofylline','Y','2025-10-23 00:00:00'),(81725,11,'XM48A9','Doxercalciferol','Y','2025-10-23 00:00:00'),(81726,11,'XM1BL2','Doxifluridine','Y','2025-10-23 00:00:00'),(81723,11,'XM66N4','Doxefazepam','Y','2025-10-23 00:00:00'),(81724,11,'XM1LC7','Doxepin','Y','2025-10-23 00:00:00'),(81722,11,'XM58X5','Doxazosin','Y','2025-10-23 00:00:00'),(81721,11,'XM3FP9','Doxapram','Y','2025-10-23 00:00:00'),(81720,11,'XM9L77','Doxantrazole','Y','2025-10-23 00:00:00'),(81719,11,'XM2811','Doxacurium chloride','Y','2025-10-23 00:00:00'),(81718,11,'9C83.12','Downward gaze deviation','Y','2025-10-23 00:00:00'),(81717,11,'9C84.20','Down beat nystagmus','Y','2025-10-23 00:00:00'),(81716,11,'LA85.2Z','Double outlet right ventricle, unspecified','Y','2025-10-23 00:00:00'),(81715,11,'LA85.20','Double outlet right ventricle with subpulmonary ventricular septal defect, transposition type','Y','2025-10-23 00:00:00'),(81714,11,'LA85.22','Double outlet right ventricle with subaortic or doubly committed ventricular septal defect without pulmonary stenosis, ventricular septal defect type','Y','2025-10-23 00:00:00'),(81713,11,'LA85.23','Double outlet right ventricle with subaortic or doubly committed ventricular septal defect and pulmonary stenosis, Fallot type','Y','2025-10-23 00:00:00'),(81712,11,'LA85.21','Double outlet right ventricle with non-committed ventricular septal defect','Y','2025-10-23 00:00:00'),(81711,11,'LA85.2','Double outlet right ventricle','Y','2025-10-23 00:00:00'),(81709,11,'LA89.0','Double inlet atrioventricular connection','Y','2025-10-23 00:00:00'),(81710,11,'LA85.3','Double outlet left ventricle','Y','2025-10-23 00:00:00'),(81707,11,'XM2T20','Dosulepin','Y','2025-10-23 00:00:00'),(81708,11,'LA88.1','Double chambered right ventricle','Y','2025-10-23 00:00:00'),(81706,11,'XM3BT0','Dorzolamide','Y','2025-10-23 00:00:00'),(81705,11,'XA76N2','Dorsum of thumb','Y','2025-10-23 00:00:00'),(81703,11,'XA30Z6','Dorsum of hand','Y','2025-10-23 00:00:00'),(81704,11,'XA5YP3','Dorsum of nose','Y','2025-10-23 00:00:00'),(81702,11,'XA8BE2','Dorsum of foot','Y','2025-10-23 00:00:00'),(81701,11,'XA41L4','Dorsalis pedis artery','Y','2025-10-23 00:00:00'),(81700,11,'XA9E13','Dorsal tarsometatarsal ligament','Y','2025-10-23 00:00:00'),(81699,11,'XA86X4','Dorsal talonavicular ligament','Y','2025-10-23 00:00:00'),(81697,11,'XA1V27','Dorsal surface of tongue','Y','2025-10-23 00:00:00'),(81698,11,'XA0SH5','Dorsal surface of wrist','Y','2025-10-23 00:00:00'),(81695,11,'XA03Y8','Dorsal surface of penis','Y','2025-10-23 00:00:00'),(81696,11,'XA7J49','Dorsal surface of toe','Y','2025-10-23 00:00:00'),(81694,11,'XA02P2','Dorsal surface of midfoot','Y','2025-10-23 00:00:00'),(81692,11,'XA8WH0','Dorsal surface of forearm','Y','2025-10-23 00:00:00'),(81693,11,'XA81Z3','Dorsal surface of forefoot','Y','2025-10-23 00:00:00'),(81691,11,'XA8YB9','Dorsal surface of body of tongue','Y','2025-10-23 00:00:00'),(81690,11,'XA0HQ3','Dorsal surface of base of tongue','Y','2025-10-23 00:00:00'),(81689,11,'XA4CU7','Dorsal spinal nerve','Y','2025-10-23 00:00:00'),(81688,11,'XA9RP3','Dorsal scapular nerve','Y','2025-10-23 00:00:00'),(81687,11,'XA4396','Dorsal radioulnar ligament','Y','2025-10-23 00:00:00'),(81686,11,'XA7Q52','Dorsal radiocarpal ligament','Y','2025-10-23 00:00:00'),(81685,11,'XA1QB0','Dorsal pancreatic artery','Y','2025-10-23 00:00:00'),(81684,11,'XA9J98','Dorsal nerve root ganglion','Y','2025-10-23 00:00:00'),(81683,11,'XA1TP8','Dorsal nerve root','Y','2025-10-23 00:00:00'),(81682,11,'XA8CC3','Dorsal nerve of the penis','Y','2025-10-23 00:00:00'),(81681,11,'XA76C3','Dorsal nerve of clitoris','Y','2025-10-23 00:00:00'),(81680,11,'XA8NU3','Dorsal naviculocuneiform ligament','Y','2025-10-23 00:00:00'),(81679,11,'XA56R8','Dorsal nasal artery to the root of nose','Y','2025-10-23 00:00:00'),(81678,11,'XA0PF0','Dorsal nasal artery to the dorsum of the nose','Y','2025-10-23 00:00:00'),(81677,11,'XA18D8','Dorsal nasal artery','Y','2025-10-23 00:00:00'),(81676,11,'XA2PN5','Dorsal metacarpophalangeal ligament','Y','2025-10-23 00:00:00'),(81675,11,'XA9886','Dorsal metacarpal vein','Y','2025-10-23 00:00:00'),(81674,11,'XA6NS3','Dorsal interosseous vein','Y','2025-10-23 00:00:00'),(81673,11,'XA24P4','Dorsal Interosseous tendon','Y','2025-10-23 00:00:00'),(81672,11,'XA6D43','Dorsal interosseous lymphatic vessel','Y','2025-10-23 00:00:00'),(81671,11,'XA2QW3','Dorsal interossei of the hand muscle','Y','2025-10-23 00:00:00'),(81670,11,'XA86H9','Dorsal interossei of foot tendon','Y','2025-10-23 00:00:00'),(81669,11,'XA3TS2','Dorsal intermetatarsal ligament','Y','2025-10-23 00:00:00'),(81668,11,'XA0WZ1','Dorsal intermetacarpal ligament','Y','2025-10-23 00:00:00'),(81667,11,'XA7075','Dorsal intercuneiform ligament','Y','2025-10-23 00:00:00'),(81666,11,'XA0PE4','Dorsal intercarpal ligament','Y','2025-10-23 00:00:00'),(81665,11,'XA6Q67','Dorsal cuboideonavicular ligament','Y','2025-10-23 00:00:00'),(81664,11,'XA20K5','Dorsal carpometacarpal ligament','Y','2025-10-23 00:00:00'),(81663,11,'XA7M90','Dorsal carpal network','Y','2025-10-23 00:00:00'),(81662,11,'XA44C1','Dorsal carpal branch of radial artery','Y','2025-10-23 00:00:00'),(81661,11,'XA9ZJ6','Dorsal carpal arch','Y','2025-10-23 00:00:00'),(81660,11,'XA42X4','Dorsal calcaneocuboid ligament','Y','2025-10-23 00:00:00'),(81659,11,'XA1TY7','Dorsal branch of ulnar nerve','Y','2025-10-23 00:00:00'),(81658,11,'XA9QA7','Dorsal body cavity','Y','2025-10-23 00:00:00'),(81657,11,'XA4X54','Dorsal artery of penis','Y','2025-10-23 00:00:00'),(81656,11,'XA4FK8','Dorsal artery of clitoris','Y','2025-10-23 00:00:00'),(81655,11,'XK87','Dorsal','Y','2025-10-23 00:00:00'),(81653,11,'XM61F4','Dornase alfa','Y','2025-10-23 00:00:00'),(81654,11,'XM23R3','Dorsacaine','Y','2025-10-23 00:00:00'),(81652,11,'XM28N4','Dornase','Y','2025-10-23 00:00:00'),(81651,11,'XM0YS0','Dormison','Y','2025-10-23 00:00:00'),(81650,11,'XM27D0','Doripenem','Y','2025-10-23 00:00:00'),(81649,11,'XM2ML0','Doriden','Y','2025-10-23 00:00:00'),(81648,11,'XM4ZY2','Dopexamine','Y','2025-10-23 00:00:00'),(81646,11,'XM9NM4','Dopamine','Y','2025-10-23 00:00:00'),(81647,11,'XM5Y20','Dopaminergic agents','Y','2025-10-23 00:00:00'),(81645,11,'XM7SN1','Dopa and dopa derivatives','Y','2025-10-23 00:00:00'),(81644,11,'XE2AC','Door, window, or related fitting or feature','Y','2025-10-23 00:00:00'),(81643,11,'XE68A','Door, door sill','Y','2025-10-23 00:00:00'),(81642,11,'QB2Y','Donors of other specified organs or tissues','Y','2025-10-23 00:00:00'),(81641,11,'QB2Z','Donors of organs or tissues, unspecified','Y','2025-10-23 00:00:00'),(81640,11,'XM62U1','Donepezil','Y','2025-10-23 00:00:00'),(81639,11,'XM3GF5','Domperidone','Y','2025-10-23 00:00:00'),(81638,11,'XM3TY6','Domiphen bromide','Y','2025-10-23 00:00:00'),(81637,11,'XM1KM0','Domiodol','Y','2025-10-23 00:00:00'),(81636,11,'8C70.40','Dominant limb-girdle muscular dystrophy','Y','2025-10-23 00:00:00'),(81635,11,'VW3Z','Domestic life, unspecified','Y','2025-10-23 00:00:00'),(81634,11,'XA1N98','Dome of the talus','Y','2025-10-23 00:00:00'),(81633,11,'XA2PT2','Dome of bladder','Y','2025-10-23 00:00:00'),(81632,11,'XE85G','Dome component of medical device','Y','2025-10-23 00:00:00'),(81631,11,'XM4C60','Dolutegravir and Rilpivirine','Y','2025-10-23 00:00:00'),(81630,11,'XM6K45','Dolutegravir','Y','2025-10-23 00:00:00'),(81629,11,'XM2PY3','Doloxene','Y','2025-10-23 00:00:00'),(81628,11,'VD43.1','Doing most important work or school task [WHODAS]','Y','2025-10-23 00:00:00'),(81627,11,'VD41','Doing most important household tasks [WHODAS]','Y','2025-10-23 00:00:00'),(81626,11,'VD42.Z','Doing housework [WHODAS], unspecified','Y','2025-10-23 00:00:00'),(81625,11,'VD42','Doing housework [WHODAS]','Y','2025-10-23 00:00:00'),(81624,11,'VW31','Doing housework','Y','2025-10-23 00:00:00'),(81623,11,'XM6643','Dogfish shark venom','Y','2025-10-23 00:00:00'),(81622,11,'XE33Q','Dog','Y','2025-10-23 00:00:00'),(81621,11,'XM1143','Dofetilide','Y','2025-10-23 00:00:00'),(81620,11,'XM7YF5','Dofamium chloride','Y','2025-10-23 00:00:00'),(81619,11,'XM3JL3','Dodicin','Y','2025-10-23 00:00:00'),(81618,11,'XM59Z2','Docusate sodium','Y','2025-10-23 00:00:00'),(81617,11,'XM4BA3','Docosanol','Y','2025-10-23 00:00:00'),(81616,11,'XM5U86','Docetaxel','Y','2025-10-23 00:00:00'),(81615,11,'XM4E14','Dobutamine','Y','2025-10-23 00:00:00'),(81614,11,'XN16H','Dobrava virus','Y','2025-10-23 00:00:00'),(81613,11,'4A01.31','DNA repair defects other than combined T-cell or B-cell immunodeficiencies','Y','2025-10-23 00:00:00'),(81612,11,'XM88M1','DMDM hydantoin','Y','2025-10-23 00:00:00'),(81611,11,'MB48.Z','Dizziness and giddiness, unspecified','Y','2025-10-23 00:00:00'),(81610,11,'MB48','Dizziness and giddiness','Y','2025-10-23 00:00:00'),(81609,11,'XM75P4','Dixyrazine','Y','2025-10-23 00:00:00'),(81608,11,'XM42D3','Dixanthogen','Y','2025-10-23 00:00:00'),(81607,11,'XM9TE3','Divinyl ether','Y','2025-10-23 00:00:00'),(81606,11,'XE9TW','Diving board, platform','Y','2025-10-23 00:00:00'),(81605,11,'XE85D','Diving belt, weight','Y','2025-10-23 00:00:00'),(81604,11,'LA8G.0','Divided left atrium','Y','2025-10-23 00:00:00'),(81603,11,'DD02.Z','Diverticulum of unspecified part of intestine, unspecified','Y','2025-10-23 00:00:00'),(81602,11,'DD02.1','Diverticulum of unspecified part of intestine without complication','Y','2025-10-23 00:00:00'),(81601,11,'DD02','Diverticulum of unspecified part of intestine','Y','2025-10-23 00:00:00'),(81600,11,'DC72.Z','Diverticulum of small intestine, no specification about presence or absence of haemorrhage','Y','2025-10-23 00:00:00'),(81599,11,'DC72.1','Diverticulum of small intestine without haemorrhage','Y','2025-10-23 00:00:00'),(81598,11,'DC72.0','Diverticulum of small intestine with haemorrhage','Y','2025-10-23 00:00:00'),(81597,11,'DC72','Diverticulum of small intestine','Y','2025-10-23 00:00:00'),(81596,11,'DA20.1','Diverticulum of oesophagus, acquired','Y','2025-10-23 00:00:00'),(81595,11,'DC82.Z','Diverticulum of large intestine, unspecified','Y','2025-10-23 00:00:00'),(81594,11,'DC82.1','Diverticulum of large intestine without haemorrhage','Y','2025-10-23 00:00:00'),(81593,11,'DC82.0','Diverticulum of large intestine with haemorrhage','Y','2025-10-23 00:00:00'),(81592,11,'DC82','Diverticulum of large intestine','Y','2025-10-23 00:00:00'),(81591,11,'AB10.0','Diverticulum of Eustachian tube','Y','2025-10-23 00:00:00'),(81590,11,'DA50.1','Diverticulum of duodenum','Y','2025-10-23 00:00:00'),(81589,11,'GC01.2','Diverticulum of bladder','Y','2025-10-23 00:00:00'),(81588,11,'DB11.3','Diverticulum of appendix, acquired','Y','2025-10-23 00:00:00'),(81587,11,'DD01.Z','Diverticulosis of unspecified part of intestine, unspecified','Y','2025-10-23 00:00:00'),(81586,11,'DD01.1','Diverticulosis of unspecified part of intestine without haemorrhage','Y','2025-10-23 00:00:00'),(81585,11,'DD01.0','Diverticulosis of unspecified part of intestine with haemorrhage','Y','2025-10-23 00:00:00'),(81584,11,'DD01','Diverticulosis of unspecified part of intestine','Y','2025-10-23 00:00:00'),(81583,11,'DC71.Z','Diverticulosis of small intestine, unspecified','Y','2025-10-23 00:00:00'),(81582,11,'DC71.1','Diverticulosis of small intestine without haemorrhage','Y','2025-10-23 00:00:00'),(81581,11,'DC71.0','Diverticulosis of small intestine with haemorrhage','Y','2025-10-23 00:00:00'),(81580,11,'DC71','Diverticulosis of small intestine','Y','2025-10-23 00:00:00'),(81579,11,'DC81.Z','Diverticulosis of large intestine, unspecified','Y','2025-10-23 00:00:00'),(81578,11,'DC81.1','Diverticulosis of large intestine without haemorrhage','Y','2025-10-23 00:00:00'),(81577,11,'DC81.0','Diverticulosis of large intestine with haemorrhage','Y','2025-10-23 00:00:00'),(81576,11,'DC81','Diverticulosis of large intestine','Y','2025-10-23 00:00:00'),(81575,11,'DD00.Z','Diverticulitis of unspecified part of intestine without specification of presence or absence of complications','Y','2025-10-23 00:00:00'),(81574,11,'DD00.1','Diverticulitis of unspecified part of intestine without complication','Y','2025-10-23 00:00:00'),(81573,11,'DD00.00','Diverticulitis of unspecified part of intestine with perforation and abscess','Y','2025-10-23 00:00:00'),(81572,11,'DD00.0Z','Diverticulitis of unspecified part of intestine with complication, unspecified','Y','2025-10-23 00:00:00'),(81571,11,'DD00.0','Diverticulitis of unspecified part of intestine with complication','Y','2025-10-23 00:00:00'),(81570,11,'DD00','Diverticulitis of unspecified part of intestine','Y','2025-10-23 00:00:00'),(81569,11,'DC70.Z','Diverticulitis of small intestine without specification of presence of complications','Y','2025-10-23 00:00:00'),(81568,11,'DC70.1','Diverticulitis of small intestine without complication','Y','2025-10-23 00:00:00'),(81567,11,'DC70.0Z','Diverticulitis of small intestine with unspecified complication','Y','2025-10-23 00:00:00'),(81566,11,'DC70.00','Diverticulitis of small intestine with perforation and abscess','Y','2025-10-23 00:00:00'),(81565,11,'DC70.0Y','Diverticulitis of small intestine with other specified complication','Y','2025-10-23 00:00:00'),(81564,11,'DC70.0','Diverticulitis of small intestine with complication','Y','2025-10-23 00:00:00'),(81563,11,'DC70','Diverticulitis of small intestine','Y','2025-10-23 00:00:00'),(81562,11,'DC80.Z','Diverticulitis of large intestine without specification of presence of complications','Y','2025-10-23 00:00:00'),(81561,11,'DC80.1','Diverticulitis of large intestine without complication','Y','2025-10-23 00:00:00'),(81560,11,'DC80.00','Diverticulitis of large intestine with perforation and abscess','Y','2025-10-23 00:00:00'),(81559,11,'DC80.0Z','Diverticulitis of large intestine with complication, unspecified','Y','2025-10-23 00:00:00'),(81558,11,'DC80.0','Diverticulitis of large intestine with complication','Y','2025-10-23 00:00:00'),(81557,11,'DC80','Diverticulitis of large intestine','Y','2025-10-23 00:00:00'),(81556,11,'DD02.0','Diverticular disease of unspecified part of intestine with haemorrhage','Y','2025-10-23 00:00:00'),(81555,11,'DC90','Diverticular disease of small and large intestine','Y','2025-10-23 00:00:00'),(81554,11,'DD1Z','Diverticular disease of intestine, unspecified','Y','2025-10-23 00:00:00'),(81553,11,'DB33.3','Diversion colitis','Y','2025-10-23 00:00:00'),(81552,11,'9C83.61','Divergence paralysis','Y','2025-10-23 00:00:00'),(81551,11,'9C84.51','Divergence nystagmus','Y','2025-10-23 00:00:00'),(81550,11,'9C83.60','Divergence insufficiency','Y','2025-10-23 00:00:00'),(81549,11,'9C83.62','Divergence excess','Y','2025-10-23 00:00:00'),(81548,11,'XM5P16','Divalproex','Y','2025-10-23 00:00:00'),(81547,11,'XM5TV1','Diuron','Y','2025-10-23 00:00:00'),(81546,11,'6C00.1','Diurnal enuresis','Y','2025-10-23 00:00:00'),(81545,11,'XM04R3','Diurgin','Y','2025-10-23 00:00:00'),(81544,11,'XM58W3','Diuretic thiazide','Y','2025-10-23 00:00:00'),(81543,11,'XM3558','Diuretic sulfonamide','Y','2025-10-23 00:00:00'),(81542,11,'XM43Q2','Diuretic saluretic','Y','2025-10-23 00:00:00'),(81541,11,'XM6VW0','Diuretic mercurial','Y','2025-10-23 00:00:00'),(81540,11,'XM8CG7','Diuretic loop (high-ceiling)','Y','2025-10-23 00:00:00'),(81539,11,'XM1N83','Diuretic furfuryl','Y','2025-10-23 00:00:00'),(81538,11,'XM8B36','Diuretic carbonic acid anhydrase inhibitors','Y','2025-10-23 00:00:00'),(81537,11,'XM68T7','Diuretic benzothiadiazine','Y','2025-10-23 00:00:00'),(81536,11,'XM4D06','Diuretic','Y','2025-10-23 00:00:00'),(81535,11,'XM90H5','Diurethane dimethacrylate','Y','2025-10-23 00:00:00'),(81534,11,'XM4JM8','Diupres','Y','2025-10-23 00:00:00'),(81533,11,'XM8RS8','Dithranol','Y','2025-10-23 00:00:00'),(81532,11,'XM5KQ8','Dithiocarbamate','Y','2025-10-23 00:00:00'),(81531,11,'XM8C12','Dithiazanine iodide','Y','2025-10-23 00:00:00'),(81530,11,'XM5K56','Ditazole','Y','2025-10-23 00:00:00'),(81529,11,'XM9SP5','Disulfoton','Y','2025-10-23 00:00:00'),(81528,11,'XM51D2','Disulfiram','Y','2025-10-23 00:00:00'),(81527,11,'XM96M6','Disulfanilamide','Y','2025-10-23 00:00:00'),(81526,11,'XM71N6','Disulfamide','Y','2025-10-23 00:00:00'),(81525,11,'KD1Z','Disturbances of temperature regulation of newborn, unspecified','Y','2025-10-23 00:00:00'),(81524,11,'KB63.2Z','Disturbances of sodium balance of newborn, unspecified','Y','2025-10-23 00:00:00'),(81523,11,'KB63.2','Disturbances of sodium balance of newborn','Y','2025-10-23 00:00:00'),(81522,11,'MB41.Z','Disturbances of smell and taste, unspecified','Y','2025-10-23 00:00:00'),(81521,11,'MB41','Disturbances of smell and taste','Y','2025-10-23 00:00:00'),(81520,11,'ME65','Disturbances of skin sensation of unspecified aetiology','Y','2025-10-23 00:00:00'),(81519,11,'DA04.6','Disturbances of salivary secretion','Y','2025-10-23 00:00:00'),(81518,11,'KB63.3Z','Disturbances of potassium balance of newborn, unspecified','Y','2025-10-23 00:00:00'),(81517,11,'KB63.3','Disturbances of potassium balance of newborn','Y','2025-10-23 00:00:00'),(81516,11,'DA01.0','Disturbances of oral epithelium','Y','2025-10-23 00:00:00'),(81515,11,'DA07.3','Disturbances in tooth formation','Y','2025-10-23 00:00:00'),(81514,11,'DA07.6Z','Disturbances in tooth eruption, unspecified','Y','2025-10-23 00:00:00'),(81513,11,'DA07.6','Disturbances in tooth eruption','Y','2025-10-23 00:00:00'),(81512,11,'MB27.3','Disturbance of body image','Y','2025-10-23 00:00:00'),(81511,11,'MB24.6Z','Disturbance of affect, unspecified','Y','2025-10-23 00:00:00'),(81510,11,'MB24.6','Disturbance of affect','Y','2025-10-23 00:00:00'),(81509,11,'MB21.5','Distractibility','Y','2025-10-23 00:00:00'),(81508,11,'9A24.2','Distortion of orbit','Y','2025-10-23 00:00:00'),(81507,11,'XM5YK5','Distigmine bromide','Y','2025-10-23 00:00:00'),(81506,11,'XA2K81','Distal tibiofibular joint','Y','2025-10-23 00:00:00'),(81505,11,'XA1GV4','Distal third of the scaphoid bone','Y','2025-10-23 00:00:00'),(81503,11,'XA78S6','Distal radioulnar joint','Y','2025-10-23 00:00:00'),(81504,11,'XA5ML5','Distal surface of tooth','Y','2025-10-23 00:00:00'),(81502,11,'XA8E71','Distal pole of scaphoid','Y','2025-10-23 00:00:00'),(81501,11,'XA4352','Distal phalanx','Y','2025-10-23 00:00:00'),(81500,11,'XA70H5','Distal phalanx of thumb','Y','2025-10-23 00:00:00'),(81499,11,'XA38Q1','Distal phalanx of third toe','Y','2025-10-23 00:00:00'),(81498,11,'XA7LS3','Distal phalanx of the hand','Y','2025-10-23 00:00:00'),(81497,11,'XA3QM7','Distal phalanx of second toe','Y','2025-10-23 00:00:00'),(81496,11,'XA51S6','Distal phalanx of ring finger','Y','2025-10-23 00:00:00'),(81495,11,'XA8NR0','Distal phalanx of middle finger','Y','2025-10-23 00:00:00'),(81494,11,'XA32G6','Distal phalanx of little finger','Y','2025-10-23 00:00:00'),(81493,11,'XA54X0','Distal phalanx of index finger','Y','2025-10-23 00:00:00'),(81492,11,'XA2AC2','Distal phalanx of great toe','Y','2025-10-23 00:00:00'),(81491,11,'XA8XV0','Distal phalanx of fourth toe','Y','2025-10-23 00:00:00'),(81490,11,'XA6ED4','Distal phalanx of fifth toe','Y','2025-10-23 00:00:00'),(81489,11,'XA00D7','Distal palm','Y','2025-10-23 00:00:00'),(81488,11,'8C75','Distal myopathies','Y','2025-10-23 00:00:00'),(81487,11,'XA5U49','Distal lower leg','Y','2025-10-23 00:00:00'),(81486,11,'XA43F0','Distal interphalangeal joint of third toe','Y','2025-10-23 00:00:00'),(81485,11,'XA0RK3','Distal interphalangeal joint of the foot','Y','2025-10-23 00:00:00'),(81484,11,'XA8UM5','Distal interphalangeal joint of second toe','Y','2025-10-23 00:00:00'),(81483,11,'XA0LT5','Distal interphalangeal joint of ring finger','Y','2025-10-23 00:00:00'),(81482,11,'XA15C8','Distal interphalangeal joint of middle finger','Y','2025-10-23 00:00:00'),(81481,11,'XA1928','Distal interphalangeal joint of little finger','Y','2025-10-23 00:00:00'),(81480,11,'XA6KB0','Distal interphalangeal joint of index finger','Y','2025-10-23 00:00:00'),(81479,11,'XA8NU9','Distal interphalangeal joint of fourth toe','Y','2025-10-23 00:00:00'),(81478,11,'XA4U75','Distal interphalangeal joint of finger','Y','2025-10-23 00:00:00'),(81477,11,'XA39U1','Distal interphalangeal joint of fifth toe','Y','2025-10-23 00:00:00'),(81476,11,'XK6C','Distal','Y','2025-10-23 00:00:00'),(81475,11,'9C83.67','Dissociative vertical divergence','Y','2025-10-23 00:00:00'),(81474,11,'6B60.0','Dissociative neurological symptom disorder, with visual disturbance','Y','2025-10-23 00:00:00'),(81473,11,'6B60.2','Dissociative neurological symptom disorder, with vertigo or dizziness','Y','2025-10-23 00:00:00'),(81472,11,'6B60.Z','Dissociative neurological symptom disorder, with unspecified symptoms','Y','2025-10-23 00:00:00'),(81471,11,'6B60.8Z','Dissociative neurological symptom disorder, with unspecified movement disturbance','Y','2025-10-23 00:00:00'),(81470,11,'6B60.82','Dissociative neurological symptom disorder, with tremor','Y','2025-10-23 00:00:00'),(81469,11,'6B60.5','Dissociative neurological symptom disorder, with speech disturbance','Y','2025-10-23 00:00:00'),(81468,11,'6B60.85','Dissociative neurological symptom disorder, with Parkinsonism','Y','2025-10-23 00:00:00'),(81467,11,'6B60.6','Dissociative neurological symptom disorder, with paresis or weakness','Y','2025-10-23 00:00:00'),(81466,11,'6B60.Y','Dissociative neurological symptom disorder, with other specified symptoms','Y','2025-10-23 00:00:00'),(81465,11,'6B60.8Y','Dissociative neurological symptom disorder, with other specified movement disturbance','Y','2025-10-23 00:00:00'),(81464,11,'6B60.3','Dissociative neurological symptom disorder, with other sensory disturbance','Y','2025-10-23 00:00:00'),(81463,11,'6B60.4','Dissociative neurological symptom disorder, with non-epileptic seizures','Y','2025-10-23 00:00:00'),(81462,11,'6B60.81','Dissociative neurological symptom disorder, with myoclonus','Y','2025-10-23 00:00:00'),(81461,11,'6B60.8','Dissociative neurological symptom disorder, with movement disturbance','Y','2025-10-23 00:00:00'),(81460,11,'6B60.7','Dissociative neurological symptom disorder, with gait disturbance','Y','2025-10-23 00:00:00'),(81459,11,'6B60.84','Dissociative neurological symptom disorder, with facial spasm','Y','2025-10-23 00:00:00'),(81458,11,'6B60.83','Dissociative neurological symptom disorder, with dystonia','Y','2025-10-23 00:00:00'),(81457,11,'6B60.9','Dissociative neurological symptom disorder, with cognitive symptoms','Y','2025-10-23 00:00:00'),(81456,11,'6B60.80','Dissociative neurological symptom disorder, with chorea','Y','2025-10-23 00:00:00'),(81455,11,'6B60.1','Dissociative neurological symptom disorder, with auditory disturbance','Y','2025-10-23 00:00:00'),(81454,11,'6B60','Dissociative neurological symptom disorder','Y','2025-10-23 00:00:00'),(81453,11,'6B64','Dissociative identity disorder','Y','2025-10-23 00:00:00'),(81452,11,'6C4D.5','Dissociative drug-induced psychotic disorder including Ketamine or PCP','Y','2025-10-23 00:00:00'),(81451,11,'6C4D.60','Dissociative drug-induced mood disorder including Ketamine or PCP','Y','2025-10-23 00:00:00'),(81450,11,'6C4D.4','Dissociative drug-induced delirium including ketamine or PCP','Y','2025-10-23 00:00:00'),(81449,11,'6C4D.61','Dissociative drug-induced anxiety disorder including Ketamine or PCP','Y','2025-10-23 00:00:00'),(81448,11,'6C4D.3','Dissociative drug intoxication including Ketamine or PCP','Y','2025-10-23 00:00:00'),(81447,11,'6C4D.2Z','Dissociative drug dependence including ketamine or PCP, unspecified','Y','2025-10-23 00:00:00'),(81446,11,'6C4D.22','Dissociative drug dependence including Ketamine or PCP, sustained partial remission','Y','2025-10-23 00:00:00'),(81445,11,'6C4D.23','Dissociative drug dependence including Ketamine or PCP, sustained full remission','Y','2025-10-23 00:00:00'),(81444,11,'6C4D.21','Dissociative drug dependence including Ketamine or PCP, early full remission','Y','2025-10-23 00:00:00'),(81443,11,'6C4D.20','Dissociative drug dependence including Ketamine or PCP, current use','Y','2025-10-23 00:00:00'),(81442,11,'6C4D.2','Dissociative drug dependence including ketamine or PCP','Y','2025-10-23 00:00:00'),(81441,11,'6B6Z','Dissociative disorders, unspecified','Y','2025-10-23 00:00:00'),(81440,11,'6B61.Z','Dissociative amnesia, unspecified','Y','2025-10-23 00:00:00'),(81439,11,'6B61.1','Dissociative amnesia without dissociative fugue','Y','2025-10-23 00:00:00'),(81438,11,'6B61.0','Dissociative amnesia with dissociative fugue','Y','2025-10-23 00:00:00'),(81437,11,'6B61','Dissociative amnesia','Y','2025-10-23 00:00:00'),(81436,11,'6D11.2','Dissociality in personality disorder or personality difficulty','Y','2025-10-23 00:00:00'),(81435,11,'1E91.2','Disseminated zoster','Y','2025-10-23 00:00:00'),(81434,11,'1F2J.3','Disseminated sporotrichosis','Y','2025-10-23 00:00:00'),(81433,11,'EA88.2','Disseminated secondary eczema','Y','2025-10-23 00:00:00'),(81432,11,'1F2E.1','Disseminated paracoccidioidomycosis','Y','2025-10-23 00:00:00'),(81431,11,'1B21.3','Disseminated non-tuberculous mycobacterial infection','Y','2025-10-23 00:00:00'),(81430,11,'2E81.10','Disseminated lymphangiomatosis','Y','2025-10-23 00:00:00'),(81429,11,'1C1G.1Z','Disseminated Lyme borreliosis, unspecified','Y','2025-10-23 00:00:00'),(81428,11,'1C1G.1','Disseminated Lyme borreliosis','Y','2025-10-23 00:00:00'),(81427,11,'KA88','Disseminated intravascular coagulation of fetus or newborn','Y','2025-10-23 00:00:00'),(81426,11,'3B20','Disseminated intravascular coagulation','Y','2025-10-23 00:00:00'),(81425,11,'EH40.01','Disseminated infantile seborrhoeic dermatitis','Y','2025-10-23 00:00:00'),(81424,11,'1F00.3','Disseminated herpes simplex infection','Y','2025-10-23 00:00:00'),(81423,11,'1A73','Disseminated gonococcal infection','Y','2025-10-23 00:00:00'),(81422,11,'XK5A','Disseminated distribution','Y','2025-10-23 00:00:00'),(81421,11,'1F28.5','Disseminated dermatophytosis','Y','2025-10-23 00:00:00'),(81420,11,'1F00.03','Disseminated cutaneous herpes simplex infection complicating other skin diseases','Y','2025-10-23 00:00:00'),(81419,11,'1F23.15','Disseminated cutaneous candidosis','Y','2025-10-23 00:00:00'),(81418,11,'1F27.2','Disseminated cryptococcosis','Y','2025-10-23 00:00:00'),(81417,11,'1F25.10','Disseminated coccidioidomycosis','Y','2025-10-23 00:00:00'),(81416,11,'1F20.02','Disseminated aspergillosis','Y','2025-10-23 00:00:00'),(81415,11,'1F2L.0','Disseminated adiaspiromycosis','Y','2025-10-23 00:00:00'),(81413,11,'ED70.51','Dissecting cellulitis','Y','2025-10-23 00:00:00'),(81414,11,'8B22.0','Dissection of cerebral arteries','Y','2025-10-23 00:00:00'),(81412,11,'QE50.10','Dissatisfaction with school environment','Y','2025-10-23 00:00:00'),(81410,11,'MB23.8','Disruptive behaviour','Y','2025-10-23 00:00:00'),(81411,11,'6C9Z','Disruptive behaviour or dissocial disorders, unspecified','Y','2025-10-23 00:00:00'),(81409,11,'JB44.1','Disruption of perineal obstetric wound','Y','2025-10-23 00:00:00'),(81408,11,'NE81.1','Disruption of operation wound, not elsewhere classified','Y','2025-10-23 00:00:00'),(81407,11,'QE70.1','Disruption of family by separation or divorce','Y','2025-10-23 00:00:00'),(81406,11,'JB44.0','Disruption of caesarean section wound','Y','2025-10-23 00:00:00'),(81405,11,'XE2S2','Display or visual feedback problem','Y','2025-10-23 00:00:00'),(81404,11,'XE4YD','Display indicator component of medical device','Y','2025-10-23 00:00:00'),(81403,11,'XE2NW','Display difficult to read','Y','2025-10-23 00:00:00'),(81402,11,'XE8GY','Display component of medical device','Y','2025-10-23 00:00:00'),(81401,11,'9A20.Z','Displacement of eyeball, unspecified','Y','2025-10-23 00:00:00'),(81400,11,'9A20','Displacement of eyeball','Y','2025-10-23 00:00:00'),(81399,11,'XJ8PQ','Displaced fracture','Y','2025-10-23 00:00:00'),(81398,11,'XM4UG8','Disperse dye','Y','2025-10-23 00:00:00'),(81397,11,'MB21.4','Disorientation','Y','2025-10-23 00:00:00'),(81396,11,'MB25.02','Disorganised thinking','Y','2025-10-23 00:00:00'),(81395,11,'MB23.6','Disorganised behaviour','Y','2025-10-23 00:00:00'),(81394,11,'8A2Z','Disorders with neurocognitive impairment as a major feature, unspecified','Y','2025-10-23 00:00:00'),(81393,11,'4B05','Disorders with increased monocyte counts','Y','2025-10-23 00:00:00'),(81392,11,'AB5Z','Disorders with hearing impairment, unspecified','Y','2025-10-23 00:00:00'),(81391,11,'4B04','Disorders with decreased monocyte counts','Y','2025-10-23 00:00:00'),(81390,11,'6B4Z','Disorders specifically associated with stress, unspecified','Y','2025-10-23 00:00:00'),(81389,11,'5C64.2Z','Disorders of zinc metabolism, unspecified','Y','2025-10-23 00:00:00'),(81388,11,'5C64.2','Disorders of zinc metabolism','Y','2025-10-23 00:00:00'),(81387,11,'5C63.Z','Disorders of vitamin or non-protein cofactor absorption or transport, unspecified','Y','2025-10-23 00:00:00'),(81386,11,'5C63','Disorders of vitamin or non-protein cofactor absorption or transport','Y','2025-10-23 00:00:00'),(81385,11,'5C63.2Z','Disorders of vitamin D metabolism or transport, unspecified','Y','2025-10-23 00:00:00'),(81384,11,'5C63.2','Disorders of vitamin D metabolism or transport','Y','2025-10-23 00:00:00'),(81383,11,'8B81.Z','Disorders of vestibulocochlear nerve, unspecified','Y','2025-10-23 00:00:00'),(81382,11,'8B81','Disorders of vestibulocochlear nerve','Y','2025-10-23 00:00:00'),(81381,11,'AB34.Z','Disorders of vestibular function, unspecified','Y','2025-10-23 00:00:00'),(81380,11,'AB34','Disorders of vestibular function','Y','2025-10-23 00:00:00'),(81379,11,'FA72','Disorders of vertebra','Y','2025-10-23 00:00:00'),(81378,11,'8B86','Disorders of vagus nerve','Y','2025-10-23 00:00:00'),(81377,11,'5C50.AZ','Disorders of urea cycle metabolism, unspecified','Y','2025-10-23 00:00:00'),(81376,11,'5C50.A','Disorders of urea cycle metabolism','Y','2025-10-23 00:00:00'),(81375,11,'5C50.1Z','Disorders of tyrosine metabolism, unspecified','Y','2025-10-23 00:00:00'),(81374,11,'5C50.1','Disorders of tyrosine metabolism','Y','2025-10-23 00:00:00'),(81373,11,'5C50.3','Disorders of tryptophan metabolism','Y','2025-10-23 00:00:00'),(81372,11,'8B82.Z','Disorders of trigeminal nerve, unspecified','Y','2025-10-23 00:00:00'),(81371,11,'8B82','Disorders of trigeminal nerve','Y','2025-10-23 00:00:00'),(81370,11,'DA07.Z','Disorders of tooth development or eruption, unspecified','Y','2025-10-23 00:00:00'),(81369,11,'DA07','Disorders of tooth development or eruption','Y','2025-10-23 00:00:00'),(81368,11,'9B8Z','Disorders of the vitreous body, unspecified','Y','2025-10-23 00:00:00'),(81367,11,'9C4Z','Disorders of the visual pathways or centres, unspecified','Y','2025-10-23 00:00:00'),(81366,11,'5A0Z','Disorders of the thyroid gland or thyroid hormones system, unspecified','Y','2025-10-23 00:00:00'),(81365,11,'ED91','Disorders of the sebaceous gland','Y','2025-10-23 00:00:00'),(81364,11,'9C85.01','Disorders of the saccadic step','Y','2025-10-23 00:00:00'),(81363,11,'9C85.00','Disorders of the saccadic pulse','Y','2025-10-23 00:00:00'),(81362,11,'9B7Z','Disorders of the retina, unspecified','Y','2025-10-23 00:00:00'),(81361,11,'5A6Z','Disorders of the pituitary hormone system, unspecified','Y','2025-10-23 00:00:00'),(81360,11,'5C51.0','Disorders of the pentose phosphate pathway','Y','2025-10-23 00:00:00'),(81359,11,'5A5Z','Disorders of the parathyroids or parathyroid hormone system, unspecified','Y','2025-10-23 00:00:00'),(81358,11,'9A4Z','Disorders of the ocular adnexa or orbit, unspecified','Y','2025-10-23 00:00:00'),(81357,11,'EE1Z','Disorders of the nail or perionychium, unspecified','Y','2025-10-23 00:00:00'),(81355,11,'8E40','Disorders of the meninges excluding infection','Y','2025-10-23 00:00:00'),(81356,11,'8E40.Z','Disorders of the meninges excluding infection, unspecified','Y','2025-10-23 00:00:00'),(81354,11,'5A8Z','Disorders of the gonadal hormone system, unspecified','Y','2025-10-23 00:00:00'),(81353,11,'5C50.5','Disorders of the gamma-glutamyl cycle','Y','2025-10-23 00:00:00'),(81352,11,'9C0Z','Disorders of the eyeball posterior segment, unspecified','Y','2025-10-23 00:00:00'),(81351,11,'9B3Z','Disorders of the eyeball anterior segment, unspecified','Y','2025-10-23 00:00:00'),(81350,11,'9C2Z','Disorders of the eyeball affecting both anterior and posterior segments, unspecified','Y','2025-10-23 00:00:00'),(81348,11,'9B01','Disorders of the efferent pupillary system','Y','2025-10-23 00:00:00'),(81349,11,'9B01.Z','Disorders of the efferent pupillary system, unspecified','Y','2025-10-23 00:00:00'),(81347,11,'9A7Z','Disorders of the cornea, unspecified','Y','2025-10-23 00:00:00'),(81346,11,'5C53.1','Disorders of the citric acid cycle','Y','2025-10-23 00:00:00'),(81344,11,'9A9Z','Disorders of the anterior uvea, unspecified','Y','2025-10-23 00:00:00'),(81345,11,'9B6Z','Disorders of the choroid, unspecified','Y','2025-10-23 00:00:00'),(81343,11,'9A8Z','Disorders of the anterior chamber, unspecified','Y','2025-10-23 00:00:00'),(81342,11,'9B00.Z','Disorders of the afferent pupillary system, unspecified','Y','2025-10-23 00:00:00'),(81341,11,'9B00','Disorders of the afferent pupillary system','Y','2025-10-23 00:00:00'),(81340,11,'5A7Z','Disorders of the adrenal glands or adrenal hormone system, unspecified','Y','2025-10-23 00:00:00'),(81339,11,'FB4Z','Disorders of synovium or tendon, unspecified','Y','2025-10-23 00:00:00'),(81338,11,'CB04.2','Disorders of surfactant metabolism','Y','2025-10-23 00:00:00'),(81337,11,'8B83','Disorders of spinal accessory nerve','Y','2025-10-23 00:00:00'),(81336,11,'5C64.6','Disorders of sodium metabolism','Y','2025-10-23 00:00:00'),(81335,11,'5C56.4','Disorders of sialic acid metabolism','Y','2025-10-23 00:00:00'),(81334,11,'5C50.6','Disorders of serine metabolism','Y','2025-10-23 00:00:00'),(81333,11,'9B5Z','Disorders of sclera, unspecified','Y','2025-10-23 00:00:00'),(81332,11,'9D00.Z','Disorders of refraction, unspecified','Y','2025-10-23 00:00:00'),(81331,11,'9D0Z','Disorders of refraction or accommodation, unspecified','Y','2025-10-23 00:00:00'),(81330,11,'9D00','Disorders of refraction','Y','2025-10-23 00:00:00'),(81329,11,'5C53.0Z','Disorders of pyruvate metabolism, unspecified','Y','2025-10-23 00:00:00'),(81328,11,'5C53.0','Disorders of pyruvate metabolism','Y','2025-10-23 00:00:00'),(81327,11,'5C55.1','Disorders of pyrimidine metabolism','Y','2025-10-23 00:00:00'),(81326,11,'5C59.2','Disorders of pyridoxine metabolism','Y','2025-10-23 00:00:00'),(81325,11,'5C55.0Z','Disorders of purine metabolism, unspecified','Y','2025-10-23 00:00:00'),(81324,11,'5C55.0','Disorders of purine metabolism','Y','2025-10-23 00:00:00'),(81323,11,'5A9Z','Disorders of puberty, unspecified','Y','2025-10-23 00:00:00'),(81322,11,'5C59.01','Disorders of pterin metabolism','Y','2025-10-23 00:00:00'),(81321,11,'5C54.1','Disorders of protein O-glycosylation','Y','2025-10-23 00:00:00'),(81320,11,'5C54.0','Disorders of protein N-glycosylation','Y','2025-10-23 00:00:00'),(81319,11,'5C50.8','Disorders of proline or hydroxyproline metabolism','Y','2025-10-23 00:00:00'),(81318,11,'5C64.3','Disorders of phosphorus metabolism or phosphatases','Y','2025-10-23 00:00:00'),(81317,11,'5C57.0','Disorders of peroxisome biogenesis','Y','2025-10-23 00:00:00'),(81316,11,'5C57.1','Disorders of peroxisomal alpha-, betaor omega-oxidation','Y','2025-10-23 00:00:00'),(81315,11,'5C50.FZ','Disorders of peptide metabolism, unspecified','Y','2025-10-23 00:00:00'),(81314,11,'5C50.F','Disorders of peptide metabolism','Y','2025-10-23 00:00:00'),(81313,11,'GB06.Z','Disorders of penis, unspecified','Y','2025-10-23 00:00:00'),(81312,11,'FA32.Z','Disorders of patella, unspecified','Y','2025-10-23 00:00:00'),(81311,11,'FA32','Disorders of patella','Y','2025-10-23 00:00:00'),(81310,11,'5C64.Y','Disorders of other specified mineral absorption and transport','Y','2025-10-23 00:00:00'),(81309,11,'8D89.Z','Disorders of orthostatic tolerance, unspecified','Y','2025-10-23 00:00:00'),(81308,11,'8D89','Disorders of orthostatic tolerance','Y','2025-10-23 00:00:00'),(81307,11,'5C50.9','Disorders of ornithine metabolism','Y','2025-10-23 00:00:00'),(81306,11,'9A2Z','Disorders of orbit, unspecified','Y','2025-10-23 00:00:00'),(81305,11,'DA01','Disorders of oral mucosa','Y','2025-10-23 00:00:00'),(81304,11,'8B80','Disorders of olfactory nerve','Y','2025-10-23 00:00:00'),(81303,11,'5C55.2','Disorders of nucleotide metabolism','Y','2025-10-23 00:00:00'),(81302,11,'KA20.Z','Disorders of newborn related to slow fetal growth or fetal malnutrition, unspecified','Y','2025-10-23 00:00:00'),(81301,11,'KA20','Disorders of newborn related to slow fetal growth or fetal malnutrition','Y','2025-10-23 00:00:00'),(81300,11,'KA21','Disorders of newborn related to short gestation or low birth weight, not elsewhere classified','Y','2025-10-23 00:00:00'),(81299,11,'KA22','Disorders of newborn related to long gestation or high birth weight','Y','2025-10-23 00:00:00'),(81298,11,'KA2Z','Disorders of newborn related to length of gestation or fetal growth, unspecified','Y','2025-10-23 00:00:00'),(81296,11,'4B00','Disorders of neutrophil number','Y','2025-10-23 00:00:00'),(81297,11,'4B01.03','Disorders of neutrophil oxidative metabolism','Y','2025-10-23 00:00:00'),(81295,11,'4B01.02','Disorders of neutrophil granule formation or release','Y','2025-10-23 00:00:00'),(81294,11,'4B01.Z','Disorders of neutrophil function, unspecified','Y','2025-10-23 00:00:00'),(81293,11,'4B01','Disorders of neutrophil function','Y','2025-10-23 00:00:00'),(81292,11,'4B01.01','Disorders of neutrophil chemotaxis','Y','2025-10-23 00:00:00'),(81291,11,'4B01.00','Disorders of neutrophil adhesion','Y','2025-10-23 00:00:00'),(81290,11,'8C4Z','Disorders of nerve root, plexus or peripheral nerves, unspecified','Y','2025-10-23 00:00:00'),(81289,11,'FB3Z','Disorders of muscles, unspecified','Y','2025-10-23 00:00:00'),(81288,11,'KB08.Z','Disorders of muscle tone of newborn, unspecified','Y','2025-10-23 00:00:00'),(81287,11,'KB08','Disorders of muscle tone of newborn','Y','2025-10-23 00:00:00'),(81286,11,'5C54.2','Disorders of multiple glycosylation or other pathways','Y','2025-10-23 00:00:00'),(81285,11,'8B85','Disorders of multiple cranial nerves','Y','2025-10-23 00:00:00'),(81284,11,'5C53.2Z','Disorders of mitochondrial oxidative phosphorylation, unspecified','Y','2025-10-23 00:00:00'),(81283,11,'5C53.2','Disorders of mitochondrial oxidative phosphorylation','Y','2025-10-23 00:00:00'),(81282,11,'5C53.3Z','Disorders of mitochondrial membrane transport, unspecified','Y','2025-10-23 00:00:00'),(81281,11,'5C53.3','Disorders of mitochondrial membrane transport','Y','2025-10-23 00:00:00'),(81280,11,'5C52.01','Disorders of mitochondrial fatty acid oxidation','Y','2025-10-23 00:00:00'),(81279,11,'5C64.Z','Disorders of mineral absorption or transport, unspecified','Y','2025-10-23 00:00:00'),(81278,11,'5C64','Disorders of mineral absorption or transport','Y','2025-10-23 00:00:00'),(81277,11,'5C50.B','Disorders of methionine cycle or sulphur amino acid metabolism','Y','2025-10-23 00:00:00'),(81276,11,'5C6Z','Disorders of metabolite absorption or transport, unspecified','Y','2025-10-23 00:00:00'),(81275,11,'5C64.4Z','Disorders of magnesium metabolism, unspecified','Y','2025-10-23 00:00:00'),(81274,11,'5C64.4','Disorders of magnesium metabolism','Y','2025-10-23 00:00:00'),(81273,11,'5C50.4','Disorders of lysine or hydroxylysine metabolism','Y','2025-10-23 00:00:00'),(81272,11,'BD9Z','Disorders of lymphatic vessels or lymph nodes, unspecified','Y','2025-10-23 00:00:00'),(81271,11,'DA00','Disorders of lips','Y','2025-10-23 00:00:00'),(81270,11,'5C62','Disorders of lipid absorption or transport','Y','2025-10-23 00:00:00'),(81269,11,'9B1Z','Disorders of lens, unspecified','Y','2025-10-23 00:00:00'),(81268,11,'9A10.Z','Disorders of lacrimal gland, unspecified','Y','2025-10-23 00:00:00'),(81267,11,'9A10','Disorders of lacrimal gland','Y','2025-10-23 00:00:00'),(81266,11,'9A11.Z','Disorders of lacrimal drainage system, unspecified','Y','2025-10-23 00:00:00'),(81265,11,'9A11','Disorders of lacrimal drainage system','Y','2025-10-23 00:00:00'),(81264,11,'9A1Z','Disorders of lacrimal apparatus, unspecified','Y','2025-10-23 00:00:00'),(81263,11,'5C52.02','Disorders of ketone body metabolism','Y','2025-10-23 00:00:00'),(81262,11,'5C64.1Z','Disorders of iron metabolism, unspecified','Y','2025-10-23 00:00:00'),(81261,11,'5C64.1','Disorders of iron metabolism','Y','2025-10-23 00:00:00'),(81260,11,'6A00.Z','Disorders of intellectual development, unspecified','Y','2025-10-23 00:00:00'),(81259,11,'6A00','Disorders of intellectual development','Y','2025-10-23 00:00:00'),(81258,11,'8B84','Disorders of hypoglossal nerve','Y','2025-10-23 00:00:00'),(81257,11,'5C50.2Z','Disorders of histidine metabolism, unspecified','Y','2025-10-23 00:00:00'),(81256,11,'5C50.2','Disorders of histidine metabolism','Y','2025-10-23 00:00:00'),(81255,11,'5C51.2Z','Disorders of glyoxylate metabolism, unspecified','Y','2025-10-23 00:00:00'),(81254,11,'5C51.2','Disorders of glyoxylate metabolism','Y','2025-10-23 00:00:00'),(81253,11,'5C50.7Z','Disorders of glycine metabolism, unspecified','Y','2025-10-23 00:00:00'),(81252,11,'5C50.7','Disorders of glycine metabolism','Y','2025-10-23 00:00:00'),(81251,11,'5C51.1','Disorders of glycerol metabolism','Y','2025-10-23 00:00:00'),(81250,11,'5A4Z','Disorders of glucose regulation or pancreatic internal secretion, unspecified','Y','2025-10-23 00:00:00'),(81249,11,'8B87','Disorders of glossopharyngeal nerve','Y','2025-10-23 00:00:00'),(81248,11,'5C59.1','Disorders of gamma aminobutyric acid metabolism','Y','2025-10-23 00:00:00'),(81247,11,'5C51.4Z','Disorders of galactose metabolism, unspecified','Y','2025-10-23 00:00:00'),(81246,11,'5C51.4','Disorders of galactose metabolism','Y','2025-10-23 00:00:00'),(81245,11,'5C51.5Z','Disorders of fructose metabolism, unspecified','Y','2025-10-23 00:00:00'),(81244,11,'5C51.5','Disorders of fructose metabolism','Y','2025-10-23 00:00:00'),(81243,11,'5C63.1','Disorders of folate metabolism or transport','Y','2025-10-23 00:00:00'),(81242,11,'5C7Z','Disorders of fluid, electrolyte or acid-base balance, unspecified','Y','2025-10-23 00:00:00'),(81241,11,'5C61.5','Disorders of facilitated glucose transport','Y','2025-10-23 00:00:00'),(81240,11,'8B88.Z','Disorders of facial nerve, unspecified','Y','2025-10-23 00:00:00'),(81239,11,'8B88','Disorders of facial nerve','Y','2025-10-23 00:00:00'),(81238,11,'9A0Z','Disorders of eyelid or peri-ocular area, unspecified','Y','2025-10-23 00:00:00'),(81237,11,'9C82.Z','Disorders of extraocular muscles, unspecified','Y','2025-10-23 00:00:00'),(81236,11,'9C82','Disorders of extraocular muscles','Y','2025-10-23 00:00:00'),(81235,11,'AB10.Z','Disorders of Eustachian tube, unspecified','Y','2025-10-23 00:00:00'),(81234,11,'AB10','Disorders of Eustachian tube','Y','2025-10-23 00:00:00'),(81233,11,'CB23','Disorders of diaphragm','Y','2025-10-23 00:00:00'),(81232,11,'5C53.4','Disorders of creatine metabolism','Y','2025-10-23 00:00:00'),(81231,11,'8B8Z','Disorders of cranial nerves, unspecified','Y','2025-10-23 00:00:00'),(81230,11,'5C64.0Z','Disorders of copper metabolism, unspecified','Y','2025-10-23 00:00:00'),(81229,11,'5C64.0','Disorders of copper metabolism','Y','2025-10-23 00:00:00'),(81228,11,'8E2Z','Disorders of consciousness, unspecified','Y','2025-10-23 00:00:00'),(81227,11,'9A6Z','Disorders of conjunctiva, unspecified','Y','2025-10-23 00:00:00'),(81226,11,'5C63.0','Disorders of cobalamin metabolism or transport','Y','2025-10-23 00:00:00'),(81225,11,'5C52.10','Disorders of cholesterol synthesis','Y','2025-10-23 00:00:00'),(81224,11,'5C64.7','Disorders of chloride metabolism','Y','2025-10-23 00:00:00'),(81223,11,'9A90.0','Disorders of chamber angle','Y','2025-10-23 00:00:00'),(81222,11,'8D6Z','Disorders of cerebrospinal fluid pressure or flow, unspecified','Y','2025-10-23 00:00:00'),(81221,11,'5C59.00','Disorders of catecholamine synthesis','Y','2025-10-23 00:00:00'),(81220,11,'5C52.00','Disorders of carnitine transport or the carnitine cycle','Y','2025-10-23 00:00:00'),(81219,11,'5C61.Z','Disorders of carbohydrate absorption or transport, unspecified','Y','2025-10-23 00:00:00'),(81218,11,'5C61','Disorders of carbohydrate absorption or transport','Y','2025-10-23 00:00:00'),(81217,11,'GB90.48','Disorders of calcium or phosphate excretion','Y','2025-10-23 00:00:00'),(81216,11,'5C64.5','Disorders of calcium metabolism','Y','2025-10-23 00:00:00'),(81215,11,'GB2Z','Disorders of breast, unspecified','Y','2025-10-23 00:00:00'),(81214,11,'GC79','Disorders of breast reduction','Y','2025-10-23 00:00:00'),(81213,11,'GC7A','Disorders of breast augmentation','Y','2025-10-23 00:00:00'),(81212,11,'5C50.DZ','Disorders of branched-chain amino acid metabolism, unspecified','Y','2025-10-23 00:00:00'),(81211,11,'5C50.D','Disorders of branched-chain amino acid metabolism','Y','2025-10-23 00:00:00'),(81210,11,'6C2Z','Disorders of bodily distress or bodily experience, unspecified','Y','2025-10-23 00:00:00'),(81209,11,'5C59.0Z','Disorders of biogenic amine metabolism, unspecified','Y','2025-10-23 00:00:00'),(81208,11,'5C59.0','Disorders of biogenic amine metabolism','Y','2025-10-23 00:00:00'),(81207,11,'9C83.Z','Disorders of binocular movement, unspecified','Y','2025-10-23 00:00:00'),(81206,11,'9C83','Disorders of binocular movement','Y','2025-10-23 00:00:00'),(81205,11,'5C58.0Z','Disorders of bilirubin metabolism or excretion, unspecified','Y','2025-10-23 00:00:00'),(81204,11,'5C58.0','Disorders of bilirubin metabolism or excretion','Y','2025-10-23 00:00:00'),(81203,11,'5C50.C','Disorders of beta or omega amino acid metabolism','Y','2025-10-23 00:00:00'),(81202,11,'8D8Z','Disorders of autonomic nervous system, unspecified','Y','2025-10-23 00:00:00'),(81201,11,'7B00.Z','Disorders of arousal from non-REM sleep, unspecified','Y','2025-10-23 00:00:00'),(81200,11,'7B00','Disorders of arousal from non-REM sleep','Y','2025-10-23 00:00:00'),(81199,11,'JA88.Z','Disorders of amniotic fluid and membranes, unspecified','Y','2025-10-23 00:00:00'),(81198,11,'5C60.Z','Disorders of amino acid absorption or transport, unspecified','Y','2025-10-23 00:00:00'),(81197,11,'5C60','Disorders of amino acid absorption or transport','Y','2025-10-23 00:00:00'),(81196,11,'AB72.Z','Disorders of acoustic nerve, unspecified','Y','2025-10-23 00:00:00'),(81195,11,'AB72','Disorders of acoustic nerve','Y','2025-10-23 00:00:00'),(81194,11,'9D01.Z','Disorders of accommodation, unspecified','Y','2025-10-23 00:00:00'),(81193,11,'9D01','Disorders of accommodation','Y','2025-10-23 00:00:00'),(81192,11,'KC9Z','Disorders involving the integument of fetus or newborn, unspecified','Y','2025-10-23 00:00:00'),(81191,11,'ED92','Disorders involving the apocrine follicular unit','Y','2025-10-23 00:00:00'),(81190,11,'6C4B.Z','Disorders due to use of volatile inhalants, unspecified','Y','2025-10-23 00:00:00'),(81189,11,'6C4B','Disorders due to use of volatile inhalants','Y','2025-10-23 00:00:00'),(81188,11,'6C4G.Z','Disorders due to use of unknown or unspecified psychoactive substances, unspecified','Y','2025-10-23 00:00:00'),(81187,11,'6C4G','Disorders due to use of unknown or unspecified psychoactive substances','Y','2025-10-23 00:00:00'),(81186,11,'6C47.Z','Disorders due to use of synthetic cathinones, unspecified','Y','2025-10-23 00:00:00'),(81185,11,'6C47','Disorders due to use of synthetic cathinones','Y','2025-10-23 00:00:00'),(81184,11,'6C42.Z','Disorders due to use of synthetic cannabinoids, unspecified','Y','2025-10-23 00:00:00'),(81183,11,'6C42','Disorders due to use of synthetic cannabinoids','Y','2025-10-23 00:00:00'),(81182,11,'6C46.Z','Disorders due to use of stimulants including amphetamines, methamphetamine or methcathinone, unspecified','Y','2025-10-23 00:00:00'),(81181,11,'6C46','Disorders due to use of stimulants including amphetamines, methamphetamine or methcathinone','Y','2025-10-23 00:00:00'),(81180,11,'6C44.Z','Disorders due to use of sedatives, hypnotics or anxiolytics, unspecified','Y','2025-10-23 00:00:00'),(81179,11,'6C44','Disorders due to use of sedatives, hypnotics or anxiolytics','Y','2025-10-23 00:00:00'),(81178,11,'6C4E.Z','Disorders due to use of other specified psychoactive substances, including medications, unspecified','Y','2025-10-23 00:00:00'),(81177,11,'6C4E','Disorders due to use of other specified psychoactive substances, including medications','Y','2025-10-23 00:00:00'),(81176,11,'6C43.Z','Disorders due to use of opioids, unspecified','Y','2025-10-23 00:00:00'),(81175,11,'6C43','Disorders due to use of opioids','Y','2025-10-23 00:00:00'),(81174,11,'6C4H.Z','Disorders due to use of non-psychoactive substances, unspecified','Y','2025-10-23 00:00:00'),(81173,11,'6C4H','Disorders due to use of non-psychoactive substances','Y','2025-10-23 00:00:00'),(81172,11,'6C4A.Z','Disorders due to use of nicotine, unspecified','Y','2025-10-23 00:00:00'),(81171,11,'6C4A','Disorders due to use of nicotine','Y','2025-10-23 00:00:00'),(81170,11,'6C4F.Z','Disorders due to use of multiple specified psychoactive substances, including medications, unspecified','Y','2025-10-23 00:00:00'),(81169,11,'6C4F','Disorders due to use of multiple specified psychoactive substances, including medications','Y','2025-10-23 00:00:00'),(81168,11,'6C4C.Z','Disorders due to use of MDMA or related drugs, including MDA, unspecified','Y','2025-10-23 00:00:00'),(81167,11,'6C4C','Disorders due to use of MDMA or related drugs, including MDA','Y','2025-10-23 00:00:00'),(81166,11,'6C49.Z','Disorders due to use of hallucinogens, unspecified','Y','2025-10-23 00:00:00'),(81165,11,'6C49','Disorders due to use of hallucinogens','Y','2025-10-23 00:00:00'),(81164,11,'6C4D.Z','Disorders due to use of dissociative drugs including ketamine and phencyclidine [PCP], unspecified','Y','2025-10-23 00:00:00'),(81163,11,'6C4D','Disorders due to use of dissociative drugs including ketamine and phencyclidine [PCP]','Y','2025-10-23 00:00:00'),(81162,11,'6C45.Z','Disorders due to use of cocaine, unspecified','Y','2025-10-23 00:00:00'),(81161,11,'6C45','Disorders due to use of cocaine','Y','2025-10-23 00:00:00'),(81160,11,'6C41.Z','Disorders due to use of cannabis, unspecified','Y','2025-10-23 00:00:00'),(81159,11,'6C41','Disorders due to use of cannabis','Y','2025-10-23 00:00:00'),(81158,11,'6C48.Z','Disorders due to use of caffeine, unspecified','Y','2025-10-23 00:00:00'),(81157,11,'6C48','Disorders due to use of caffeine','Y','2025-10-23 00:00:00'),(81156,11,'6C40.Z','Disorders due to use of alcohol, unspecified','Y','2025-10-23 00:00:00'),(81155,11,'6C40','Disorders due to use of alcohol','Y','2025-10-23 00:00:00'),(81154,11,'6C4Z','Disorders due to substance use, unspecified','Y','2025-10-23 00:00:00'),(81153,11,'6C5Z','Disorders due to addictive behaviours, unspecified','Y','2025-10-23 00:00:00'),(81151,11,'8A04','Disorders associated with tremor','Y','2025-10-23 00:00:00'),(81152,11,'8A04.Z','Disorders associated with tremor, unspecified','Y','2025-10-23 00:00:00'),(81150,11,'FB86.Z','Disorders associated with bone growth, unspecified','Y','2025-10-23 00:00:00'),(81149,11,'FB86','Disorders associated with bone growth','Y','2025-10-23 00:00:00'),(81148,11,'8D8B','Disorders affecting autonomic synaptic neurotransmission','Y','2025-10-23 00:00:00'),(81147,11,'9C43','Disorder of visual cortex','Y','2025-10-23 00:00:00'),(81146,11,'9C40.Z','Disorder of the optic nerve, unspecified','Y','2025-10-23 00:00:00'),(81145,11,'9C40','Disorder of the optic nerve','Y','2025-10-23 00:00:00'),(81144,11,'5A90','Disorder of puberty due to oestrogen resistance','Y','2025-10-23 00:00:00'),(81143,11,'9C42','Disorder of post chiasmal visual pathways','Y','2025-10-23 00:00:00'),(81142,11,'9C41','Disorder of optic chiasm','Y','2025-10-23 00:00:00'),(81141,11,'DA21.2Z','Disorder of oesophageal peristalsis, unspecified','Y','2025-10-23 00:00:00'),(81140,11,'DA21.2','Disorder of oesophageal peristalsis','Y','2025-10-23 00:00:00'),(81139,11,'DA21.3','Disorder of lower oesophageal sphincter function','Y','2025-10-23 00:00:00'),(81138,11,'FA34.1','Disorder of ligament','Y','2025-10-23 00:00:00'),(81137,11,'6A00.2','Disorder of intellectual development, severe','Y','2025-10-23 00:00:00'),(81136,11,'6A00.4','Disorder of intellectual development, provisional','Y','2025-10-23 00:00:00'),(81135,11,'6A00.3','Disorder of intellectual development, profound','Y','2025-10-23 00:00:00'),(81134,11,'6A00.1','Disorder of intellectual development, moderate','Y','2025-10-23 00:00:00'),(81133,11,'6A00.0','Disorder of intellectual development, mild','Y','2025-10-23 00:00:00'),(81132,11,'9C44','Disorder of higher visual centres','Y','2025-10-23 00:00:00'),(81131,11,'MB48.1','Disorder of equilibrium','Y','2025-10-23 00:00:00'),(81130,11,'FB80.Z','Disorder of bone density and structure, unspecified','Y','2025-10-23 00:00:00'),(81129,11,'GC01.Z','Disorder of bladder, unspecified','Y','2025-10-23 00:00:00'),(81128,11,'XM8B35','Disopyramide','Y','2025-10-23 00:00:00'),(81127,11,'XM0ZM0','Disodium edetate','Y','2025-10-23 00:00:00'),(81126,11,'PL12.4','Dislodgement, misconnection or de-attachment, as mode of injury or harm','Y','2025-10-23 00:00:00'),(81125,11,'QA62','Dislodgement, misconnection or de-attachment of a surgical or medical device without injury or harm','Y','2025-10-23 00:00:00'),(81124,11,'ND33','Dislocations, strains or sprains involving multiple body regions','Y','2025-10-23 00:00:00'),(81123,11,'ND51.0','Dislocation or strain or sprain of unspecified joint or ligament of trunk','Y','2025-10-23 00:00:00'),(81122,11,'ND56.3','Dislocation or strain or sprain of unspecified body region','Y','2025-10-23 00:00:00'),(81121,11,'NA83.Z','Dislocation or strain or sprain of joints or ligaments of thorax, unspecified','Y','2025-10-23 00:00:00'),(81120,11,'NA83','Dislocation or strain or sprain of joints or ligaments of thorax','Y','2025-10-23 00:00:00'),(81119,11,'NC13.Z','Dislocation or strain or sprain of joints or ligaments of shoulder girdle, unspecified','Y','2025-10-23 00:00:00'),(81118,11,'NC13','Dislocation or strain or sprain of joints or ligaments of shoulder girdle','Y','2025-10-23 00:00:00'),(81117,11,'NB53.Z','Dislocation or strain or sprain of joints or ligaments of lumbar spine or pelvis, unspecified','Y','2025-10-23 00:00:00'),(81116,11,'NB53','Dislocation or strain or sprain of joints or ligaments of lumbar spine or pelvis','Y','2025-10-23 00:00:00'),(81115,11,'NC93.Z','Dislocation or strain or sprain of joints or ligaments of knee, unspecified','Y','2025-10-23 00:00:00'),(81114,11,'NC93','Dislocation or strain or sprain of joints or ligaments of knee','Y','2025-10-23 00:00:00'),(81113,11,'NA03.Z','Dislocation or strain or sprain of joints or ligaments of head, unspecified','Y','2025-10-23 00:00:00'),(81112,11,'NA03','Dislocation or strain or sprain of joints or ligaments of head','Y','2025-10-23 00:00:00'),(81111,11,'NC33.Z','Dislocation or strain or sprain of joints or ligaments of elbow, unspecified','Y','2025-10-23 00:00:00'),(81110,11,'NC33','Dislocation or strain or sprain of joints or ligaments of elbow','Y','2025-10-23 00:00:00'),(81109,11,'NC54.Z','Dislocation or strain or sprain of joints or ligaments at wrist or hand level, unspecified','Y','2025-10-23 00:00:00'),(81108,11,'NC54','Dislocation or strain or sprain of joints or ligaments at wrist or hand level','Y','2025-10-23 00:00:00'),(81107,11,'NA23.Z','Dislocation or strain or sprain of joints or ligaments at neck level, unspecified','Y','2025-10-23 00:00:00'),(81106,11,'NA23','Dislocation or strain or sprain of joints or ligaments at neck level','Y','2025-10-23 00:00:00'),(81105,11,'ND14.Z','Dislocation or strain or sprain of joints or ligaments at ankle or foot level, unspecified','Y','2025-10-23 00:00:00'),(81104,11,'ND14','Dislocation or strain or sprain of joints or ligaments at ankle or foot level','Y','2025-10-23 00:00:00'),(81103,11,'NC73','Dislocation or strain or sprain of joint or ligaments of hip','Y','2025-10-23 00:00:00'),(81102,11,'NA03.Y','Dislocation or sprain of other specified joints or ligaments of head','Y','2025-10-23 00:00:00'),(81101,11,'NC33.Y','Dislocation or sprain of other specified joints or ligaments of elbow','Y','2025-10-23 00:00:00'),(81100,11,'NC54.Y','Dislocation or sprain of other specified joints or ligaments at wrist or hand level','Y','2025-10-23 00:00:00'),(81099,11,'NC13.Y','Dislocation or sprain of other specified joints and ligaments of shoulder girdle','Y','2025-10-23 00:00:00'),(81098,11,'NC54.0Z','Dislocation of wrist, unspecified','Y','2025-10-23 00:00:00'),(81097,11,'NC54.0','Dislocation of wrist','Y','2025-10-23 00:00:00'),(81096,11,'NC54.1Z','Dislocation of thumb, unspecified','Y','2025-10-23 00:00:00'),(81094,11,'NA83.1','Dislocation of thoracic vertebra','Y','2025-10-23 00:00:00'),(81095,11,'NC54.1','Dislocation of thumb','Y','2025-10-23 00:00:00'),(81093,11,'ND14.4','Dislocation of tarsometatarsal joint','Y','2025-10-23 00:00:00'),(81092,11,'ND14.3','Dislocation of tarsal joint','Y','2025-10-23 00:00:00'),(81091,11,'NC13.2','Dislocation of sternoclavicular joint','Y','2025-10-23 00:00:00'),(81090,11,'NC13.0','Dislocation of shoulder joint','Y','2025-10-23 00:00:00'),(81089,11,'NA03.1','Dislocation of septal cartilage of nose','Y','2025-10-23 00:00:00'),(81088,11,'NC13.3','Dislocation of scapula','Y','2025-10-23 00:00:00'),(81086,11,'NC54.01','Dislocation of radiocarpal joint','Y','2025-10-23 00:00:00'),(81087,11,'NB53.2','Dislocation of sacroiliac or sacrococcygeal joint without disruption of pelvic ring','Y','2025-10-23 00:00:00'),(81085,11,'NC33.0','Dislocation of radial head','Y','2025-10-23 00:00:00'),(81083,11,'NC93.1','Dislocation of patella','Y','2025-10-23 00:00:00'),(81084,11,'NC93.1Z','Dislocation of patella, unspecified','Y','2025-10-23 00:00:00'),(81082,11,'ND14.2Z','Dislocation of other toe, unspecified','Y','2025-10-23 00:00:00'),(81081,11,'ND14.2','Dislocation of other toe','Y','2025-10-23 00:00:00'),(81080,11,'ND14.2Y','Dislocation of other specified toe','Y','2025-10-23 00:00:00'),(81079,11,'NC54.0Y','Dislocation of other specified part of wrist','Y','2025-10-23 00:00:00'),(81078,11,'NC54.1Y','Dislocation of other specified part of thumb','Y','2025-10-23 00:00:00'),(81077,11,'NC54.2Y','Dislocation of other specified part of finger','Y','2025-10-23 00:00:00'),(81076,11,'NA23.12','Dislocation of other specified cervical vertebra','Y','2025-10-23 00:00:00'),(81075,11,'NA83.2','Dislocation of other or unspecified parts of thorax','Y','2025-10-23 00:00:00'),(81074,11,'NC13.4','Dislocation of other or unspecified parts of shoulder girdle','Y','2025-10-23 00:00:00'),(81073,11,'NA23.2','Dislocation of other or unspecified parts of neck','Y','2025-10-23 00:00:00'),(81071,11,'ND14.6','Dislocation of other or unspecified parts of foot','Y','2025-10-23 00:00:00'),(81072,11,'NB53.3','Dislocation of other or unspecified parts of lumbar spine or pelvis without disruption of pelvic ring','Y','2025-10-23 00:00:00'),(81070,11,'NC54.04','Dislocation of other carpometacarpal joint','Y','2025-10-23 00:00:00'),(81069,11,'NC54.02','Dislocation of midcarpal joint','Y','2025-10-23 00:00:00'),(81068,11,'ND14.20','Dislocation of metatarsophalangeal joint of lesser toe','Y','2025-10-23 00:00:00'),(81067,11,'ND14.10','Dislocation of metatarsophalangeal joint of great toe','Y','2025-10-23 00:00:00'),(81066,11,'NC54.10','Dislocation of metacarpophalangeal joint of thumb','Y','2025-10-23 00:00:00'),(81065,11,'NC54.20','Dislocation of metacarpophalangeal joint of finger','Y','2025-10-23 00:00:00'),(81064,11,'NC54.05','Dislocation of metacarpal bone, proximal end','Y','2025-10-23 00:00:00'),(81063,11,'NB53.1','Dislocation of lumbar vertebra','Y','2025-10-23 00:00:00'),(81062,11,'9B11.1','Dislocation of lens','Y','2025-10-23 00:00:00'),(81061,11,'NC93.2Z','Dislocation of knee, unspecified','Y','2025-10-23 00:00:00'),(81059,11,'NA03.0','Dislocation of jaw','Y','2025-10-23 00:00:00'),(81060,11,'NC93.2','Dislocation of knee','Y','2025-10-23 00:00:00'),(81058,11,'ND14.21','Dislocation of interphalangeal joints of lesser toe','Y','2025-10-23 00:00:00'),(81057,11,'NC54.11','Dislocation of interphalangeal joint of thumb','Y','2025-10-23 00:00:00'),(81056,11,'ND14.11','Dislocation of interphalangeal joint of great toe','Y','2025-10-23 00:00:00'),(81055,11,'NC54.21','Dislocation of interphalangeal joint of finger','Y','2025-10-23 00:00:00'),(81054,11,'NC73.0Z','Dislocation of hip, unspecified','Y','2025-10-23 00:00:00'),(81053,11,'NC73.0','Dislocation of hip','Y','2025-10-23 00:00:00'),(81052,11,'ND14.1Z','Dislocation of great toe, unspecified','Y','2025-10-23 00:00:00'),(81051,11,'ND14.1','Dislocation of great toe','Y','2025-10-23 00:00:00'),(81050,11,'NC54.2Z','Dislocation of finger, unspecified','Y','2025-10-23 00:00:00'),(81049,11,'NC54.2','Dislocation of finger','Y','2025-10-23 00:00:00'),(81048,11,'NC33.1','Dislocation of elbow','Y','2025-10-23 00:00:00'),(81047,11,'NC54.00','Dislocation of distal radioulnar joint','Y','2025-10-23 00:00:00'),(81046,11,'NA23.1Z','Dislocation of cervical vertebra, unspecified','Y','2025-10-23 00:00:00'),(81045,11,'NA23.1','Dislocation of cervical vertebra','Y','2025-10-23 00:00:00'),(81044,11,'NC54.03','Dislocation of carpometacarpal joint of thumb','Y','2025-10-23 00:00:00'),(81043,11,'ND14.0','Dislocation of ankle joint','Y','2025-10-23 00:00:00'),(81042,11,'NC13.1','Dislocation of acromioclavicular joint','Y','2025-10-23 00:00:00'),(81041,11,'XJ69V','Dislocated fracture','Y','2025-10-23 00:00:00'),(81040,11,'6D11.3','Disinhibition in personality disorder or personality difficulty','Y','2025-10-23 00:00:00'),(81039,11,'6D86.5','Disinhibition in dementia','Y','2025-10-23 00:00:00'),(81038,11,'6B45','Disinhibited social engagement disorder','Y','2025-10-23 00:00:00'),(81037,11,'XM7DD6','Disinfectant, not elsewhere classified','Y','2025-10-23 00:00:00'),(81036,11,'XM59A1','Disinfectant intestinal','Y','2025-10-23 00:00:00'),(81035,11,'XE0U1','Dishwasher','Y','2025-10-23 00:00:00'),(81034,11,'MB23.7','Disheveled appearance','Y','2025-10-23 00:00:00'),(81033,11,'SF5K','Disharmony of liver and stomach systems pattern (TM1)','Y','2025-10-23 00:00:00'),(81032,11,'SF5J','Disharmony of liver and spleen systems pattern (TM1)','Y','2025-10-23 00:00:00'),(81031,11,'AB31.4','Disembarkment syndrome','Y','2025-10-23 00:00:00'),(81030,11,'DA0Z','Diseases or disorders of orofacial complex, unspecified','Y','2025-10-23 00:00:00'),(81029,11,'CA0H.Z','Diseases of vocal cords or larynx, not elsewhere classified, unspecified','Y','2025-10-23 00:00:00'),(81028,11,'CA0H','Diseases of vocal cords or larynx, not elsewhere classified','Y','2025-10-23 00:00:00'),(81027,11,'BD7Z','Diseases of veins, unspecified','Y','2025-10-23 00:00:00'),(81026,11,'DA03','Diseases of tongue','Y','2025-10-23 00:00:00'),(81025,11,'4B40.Z','Diseases of thymus, unspecified','Y','2025-10-23 00:00:00'),(81024,11,'4B40','Diseases of thymus','Y','2025-10-23 00:00:00'),(81023,11,'9E1Z','Diseases of the visual system, unspecified','Y','2025-10-23 00:00:00'),(81022,11,'GC2Z','Diseases of the urinary system, unspecified','Y','2025-10-23 00:00:00'),(81021,11,'DA7Z','Diseases of the stomach or the duodenum, unspecified','Y','2025-10-23 00:00:00'),(81020,11,'JB64.7','Diseases of the skin complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(81019,11,'CB7Z','Diseases of the respiratory system, unspecified','Y','2025-10-23 00:00:00'),(81018,11,'JB64.5','Diseases of the respiratory system complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(81017,11,'8E7Z','Diseases of the nervous system, unspecified','Y','2025-10-23 00:00:00'),(81016,11,'JB64.3','Diseases of the nervous system complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(81015,11,'BC4Z','Diseases of the myocardium or cardiac chambers, unspecified','Y','2025-10-23 00:00:00'),(81014,11,'FC0Z','Diseases of the musculoskeletal system or connective tissue, unspecified','Y','2025-10-23 00:00:00'),(81013,11,'GB0Z','Diseases of the male genital system, unspecified','Y','2025-10-23 00:00:00'),(81012,11,'4B4Z','Diseases of the immune system, unspecified','Y','2025-10-23 00:00:00'),(81011,11,'GC8Z','Diseases of the genitourinary system, unspecified','Y','2025-10-23 00:00:00'),(81010,11,'GA6Z','Diseases of the female genital system, unspecified','Y','2025-10-23 00:00:00'),(81009,11,'AC0Z','Diseases of the ear or mastoid process, unspecified','Y','2025-10-23 00:00:00'),(81008,11,'DE2Z','Diseases of the digestive system, unspecified','Y','2025-10-23 00:00:00'),(81007,11,'JB64.6','Diseases of the digestive system complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(81006,11,'BE2Z','Diseases of the circulatory system, unspecified','Y','2025-10-23 00:00:00'),(81005,11,'JB64.4','Diseases of the circulatory system complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(81004,11,'3C0Z','Diseases of the blood or blood-forming organs, unspecified','Y','2025-10-23 00:00:00'),(81003,11,'3B8Z','Diseases of spleen, unspecified','Y','2025-10-23 00:00:00'),(81002,11,'DA9Z','Diseases of small intestine, unspecified','Y','2025-10-23 00:00:00'),(81001,11,'DA04.Z','Diseases of salivary glands, unspecified','Y','2025-10-23 00:00:00'),(81000,11,'DA04','Diseases of salivary glands','Y','2025-10-23 00:00:00'),(80999,11,'DA09.Z','Diseases of pulp or periapical tissues, unspecified','Y','2025-10-23 00:00:00'),(80998,11,'DA09','Diseases of pulp or periapical tissues','Y','2025-10-23 00:00:00'),(80997,11,'DC5Z','Diseases of peritoneum, unspecified','Y','2025-10-23 00:00:00'),(80996,11,'DC3Z','Diseases of pancreas, unspecified','Y','2025-10-23 00:00:00'),(80995,11,'DA2Z','Diseases of oesophagus, unspecified','Y','2025-10-23 00:00:00'),(80994,11,'8D0Z','Diseases of neuromuscular junction or muscle, unspecified','Y','2025-10-23 00:00:00'),(80993,11,'AB1Z','Diseases of middle ear or mastoid, unspecified','Y','2025-10-23 00:00:00'),(80992,11,'CB22.Z','Diseases of mediastinum, not elsewhere classified, unspecified','Y','2025-10-23 00:00:00'),(80991,11,'CB22','Diseases of mediastinum, not elsewhere classified','Y','2025-10-23 00:00:00'),(80990,11,'DB9Z','Diseases of liver, unspecified','Y','2025-10-23 00:00:00'),(80989,11,'DB3Z','Diseases of large intestine, unspecified','Y','2025-10-23 00:00:00'),(80988,11,'AB3Z','Diseases of inner ear, unspecified','Y','2025-10-23 00:00:00'),(80987,11,'4A01.2Z','Diseases of immune dysregulation, unspecified','Y','2025-10-23 00:00:00'),(80986,11,'4A01.2','Diseases of immune dysregulation','Y','2025-10-23 00:00:00'),(80985,11,'DA08.Z','Diseases of hard tissues of teeth, unspecified','Y','2025-10-23 00:00:00'),(80984,11,'DA08','Diseases of hard tissues of teeth','Y','2025-10-23 00:00:00'),(80983,11,'DC1Z','Diseases of gallbladder or biliary tract, unspecified','Y','2025-10-23 00:00:00'),(80982,11,'AA6Z','Diseases of external ear, unspecified','Y','2025-10-23 00:00:00'),(80981,11,'BA8Z','Diseases of coronary artery, unspecified','Y','2025-10-23 00:00:00'),(80980,11,'GA03.Z','Diseases of Bartholin gland, unspecified','Y','2025-10-23 00:00:00'),(80979,11,'GA03','Diseases of Bartholin gland','Y','2025-10-23 00:00:00'),(80978,11,'BD5Z','Diseases of arteries or arterioles, unspecified','Y','2025-10-23 00:00:00'),(80977,11,'DB1Z','Diseases of appendix, unspecified','Y','2025-10-23 00:00:00'),(80976,11,'DB7Z','Diseases of anal canal, unspecified','Y','2025-10-23 00:00:00'),(80975,11,'1F8Z','Diseases due to trematodes, unspecified','Y','2025-10-23 00:00:00'),(80974,11,'1F6Z','Diseases due to nematodes, unspecified','Y','2025-10-23 00:00:00'),(80973,11,'1C2Z','Diseases due to chlamydiae, unspecified','Y','2025-10-23 00:00:00'),(80972,11,'1F7Z','Diseases due to cestodes, unspecified','Y','2025-10-23 00:00:00'),(80971,11,'QA1A','Discussion of issues surrounding impending death','Y','2025-10-23 00:00:00'),(80970,11,'XE6UE','Discrete electrical component of medical device','Y','2025-10-23 00:00:00'),(80969,11,'LA85.0Z','Discordant atrioventricular connections, unspecified','Y','2025-10-23 00:00:00'),(80968,11,'LA85.0','Discordant atrioventricular connections','Y','2025-10-23 00:00:00'),(80967,11,'QE50.5','Discord with counsellors','Y','2025-10-23 00:00:00'),(80965,11,'XE5WZ','Disconnection','Y','2025-10-23 00:00:00'),(80966,11,'AB18','Discontinuity or dislocation of ear ossicles','Y','2025-10-23 00:00:00'),(80964,11,'FA33.1','Discoid meniscus','Y','2025-10-23 00:00:00'),(80962,11,'XE8H0','Disc battery','Y','2025-10-23 00:00:00'),(80963,11,'EB51.0','Discoid lupus erythematosus','Y','2025-10-23 00:00:00'),(80961,11,'QE61.Y','Disappearance or death of other family member','Y','2025-10-23 00:00:00'),(80960,11,'QE61','Disappearance or death of family member','Y','2025-10-23 00:00:00'),(80959,11,'XM9UK4','Diroximel fumarate','Y','2025-10-23 00:00:00'),(80958,11,'XN7JS','Dirofilaria repens','Y','2025-10-23 00:00:00'),(80956,11,'XN15W','Dirofilaria','Y','2025-10-23 00:00:00'),(80957,11,'XN3BX','Dirofilaria immitis','Y','2025-10-23 00:00:00'),(80955,11,'XM0EH3','Dirithromycin','Y','2025-10-23 00:00:00'),(80954,11,'XM5PV9','Direct thrombin inhibitors','Y','2025-10-23 00:00:00'),(80953,11,'FA10.Z','Direct infections of joint, unspecified','Y','2025-10-23 00:00:00'),(80952,11,'FA10','Direct infections of joint','Y','2025-10-23 00:00:00'),(80951,11,'XM4SD9','Direct factor Xa inhibitors','Y','2025-10-23 00:00:00'),(80950,11,'XM1M07','Diquat','Y','2025-10-23 00:00:00'),(80949,11,'XM4T98','Dipyrone','Y','2025-10-23 00:00:00'),(80948,11,'XM9TC0','Dipyrocetyl','Y','2025-10-23 00:00:00'),(80947,11,'XM9J84','Dipyridamole','Y','2025-10-23 00:00:00'),(80946,11,'XN20Y','Dipylidium caninum','Y','2025-10-23 00:00:00'),(80945,11,'XN570','Dipylidium','Y','2025-10-23 00:00:00'),(80944,11,'1F72','Dipylidiasis','Y','2025-10-23 00:00:00'),(80943,11,'XM3C29','Dipotassium clorazepate','Y','2025-10-23 00:00:00'),(80942,11,'XM2KH7','Diplovax','Y','2025-10-23 00:00:00'),(80941,11,'XA2QB0','Diploic vein','Y','2025-10-23 00:00:00'),(80940,11,'MB51.Z','Diplegia of upper extremities, unspecified','Y','2025-10-23 00:00:00'),(80939,11,'MB51','Diplegia of upper extremities','Y','2025-10-23 00:00:00'),(80938,11,'MB52','Diplegia of lower extremities','Y','2025-10-23 00:00:00'),(80937,11,'XE2JV','Diplay screen component of medical device','Y','2025-10-23 00:00:00'),(80936,11,'XM0L12','Dipivefrine','Y','2025-10-23 00:00:00'),(80935,11,'XM2AY7','Dipiperonylaminoethanol','Y','2025-10-23 00:00:00'),(80934,11,'XM9SW6','Dipipanone','Y','2025-10-23 00:00:00'),(80933,11,'XN7UT','Diphyllobothrium species','Y','2025-10-23 00:00:00'),(80932,11,'XN67S','Diphyllobothrium latum','Y','2025-10-23 00:00:00'),(80931,11,'XN6EF','Diphyllobothrium','Y','2025-10-23 00:00:00'),(80930,11,'1F91','Diphyllobothriasis and sparganosis','Y','2025-10-23 00:00:00'),(80929,11,'1F71','Diphyllobothriasis','Y','2025-10-23 00:00:00'),(80928,11,'1C17.Z','Diphtheria, unspecified','Y','2025-10-23 00:00:00'),(80927,11,'XM9JP8','Diphtheria, tetanus, acellular pertussis, inactivated polio virus vaccines','Y','2025-10-23 00:00:00'),(80926,11,'XM9744','Diphtheria, rubella, tetanus vaccines','Y','2025-10-23 00:00:00'),(80925,11,'XM8AW1','Diphtheria, poliomyelitis, tetanus vaccines','Y','2025-10-23 00:00:00'),(80924,11,'XM0LT9','Diphtheria, pertussis, poliomyelitis, tetanus, hepatitis B vaccines','Y','2025-10-23 00:00:00'),(80923,11,'XM09Q7','Diphtheria, pertussis, poliomyelitis, tetanus vaccines','Y','2025-10-23 00:00:00'),(80922,11,'XM84S1','Diphtheria, hepatitis B, tetanus, acellular pertussis, inactivated polio virus, haemophilus Influenzae type B vaccines','Y','2025-10-23 00:00:00'),(80921,11,'XM3G68','Diphtheria, hepatitis B, tetanus vaccines','Y','2025-10-23 00:00:00'),(80920,11,'XM41N3','Diphtheria, hepatitis B, pertussis, tetanus vaccines','Y','2025-10-23 00:00:00'),(80919,11,'XM5XP9','Diphtheria, hemophilus influenzae B, pertussis, tetanus-hepatitis B, meningococcus A + C vaccines','Y','2025-10-23 00:00:00'),(80918,11,'XM7JP3','Diphtheria, hemophilus influenzae B, pertussis, tetanus, hepatitis B vaccines','Y','2025-10-23 00:00:00'),(80917,11,'XM1LX9','Diphtheria, hemophilus influenzae B, pertussis, poliomyelitis, tetanus vaccines','Y','2025-10-23 00:00:00'),(80916,11,'XM39K8','Diphtheria vaccines combination without pertussis','Y','2025-10-23 00:00:00'),(80915,11,'XM46V1','Diphtheria vaccines combination including pertussis','Y','2025-10-23 00:00:00'),(80914,11,'XM8YP9','Diphtheria vaccines combination','Y','2025-10-23 00:00:00'),(80913,11,'XM8AW3','Diphtheria vaccines','Y','2025-10-23 00:00:00'),(80912,11,'XM9YH9','Diphtheria toxoid with tetanus toxoid with pertussis component vaccines','Y','2025-10-23 00:00:00'),(80911,11,'XM86V7','Diphtheria toxoid vaccines','Y','2025-10-23 00:00:00'),(80910,11,'XM21E6','Diphtheria tetanus, acellular pertussis, inactivated polio virus, haemophilus Influenzae type B vaccines','Y','2025-10-23 00:00:00'),(80908,11,'XM2MN8','Diphtheria antitoxin','Y','2025-10-23 00:00:00'),(80909,11,'XM4YT6','Diphtheria immunoglobulin','Y','2025-10-23 00:00:00'),(80907,11,'1C17','Diphtheria','Y','2025-10-23 00:00:00'),(80906,11,'XM7GV4','Diphenylpyraline','Y','2025-10-23 00:00:00'),(80905,11,'XM8286','Diphenylpropylamine derivatives','Y','2025-10-23 00:00:00'),(80904,11,'XM8CM3','Diphenylmethane derivatives','Y','2025-10-23 00:00:00'),(80903,11,'XM9UH2','Diphenylmethane','Y','2025-10-23 00:00:00'),(80902,11,'XM9YA9','Diphenylchlorarsine','Y','2025-10-23 00:00:00'),(80901,11,'XM2NF9','Diphenylbutylpiperidine derivatives','Y','2025-10-23 00:00:00'),(80900,11,'XM2732','Diphenylamine','Y','2025-10-23 00:00:00'),(80899,11,'XM9Y28','Diphenoxylate','Y','2025-10-23 00:00:00'),(80898,11,'XM29P8','Diphenhydramine methylbromide','Y','2025-10-23 00:00:00'),(80897,11,'XM6KY0','Diphenhydramine','Y','2025-10-23 00:00:00'),(80896,11,'XM2567','Diphenadione','Y','2025-10-23 00:00:00'),(80895,11,'XM89R5','Diphemanil','Y','2025-10-23 00:00:00'),(80894,11,'XM4J38','Diphacinone','Y','2025-10-23 00:00:00'),(80893,11,'XM8UZ3','Diperodon','Y','2025-10-23 00:00:00'),(80892,11,'XM9SM6','Dipeptidyl peptidase 4 inhibitors','Y','2025-10-23 00:00:00'),(80891,11,'XM1LN6','Dipentene','Y','2025-10-23 00:00:00'),(80890,11,'XM2RH1','Dipentamethylenethiuram disulphide','Y','2025-10-23 00:00:00'),(80889,11,'XM7WF8','Dioxopromethazine','Y','2025-10-23 00:00:00'),(80888,11,'XM9Y80','Dioxin','Y','2025-10-23 00:00:00'),(80887,11,'XM3494','Dioxathion','Y','2025-10-23 00:00:00'),(80886,11,'XM2XU7','Dioxane','Y','2025-10-23 00:00:00'),(80885,11,'XM6UE1','Diosmin','Y','2025-10-23 00:00:00'),(80884,11,'XM87L7','Diosmectite','Y','2025-10-23 00:00:00'),(80883,11,'XM2DC4','Diodone','Y','2025-10-23 00:00:00'),(80881,11,'XM74W8','Dinutuximab','Y','2025-10-23 00:00:00'),(80882,11,'XM6ZN5','Dioctyl sulfosuccinate (calcium) (sodium)','Y','2025-10-23 00:00:00'),(80880,11,'XM62Q7','Dinoterb','Y','2025-10-23 00:00:00'),(80879,11,'XM60K0','Dinoseb acetate','Y','2025-10-23 00:00:00'),(80877,11,'XM5VF9','Dinoprostone','Y','2025-10-23 00:00:00'),(80878,11,'XM23C2','Dinoseb','Y','2025-10-23 00:00:00'),(80876,11,'XM3Q43','Dinoprost','Y','2025-10-23 00:00:00'),(80875,11,'XM73Y7','Dinitrophenol','Y','2025-10-23 00:00:00'),(80874,11,'XM1ZR2','Dinitro-ortho-cresol','Y','2025-10-23 00:00:00'),(80873,11,'XM95M5','Dinitrocyclohexylphenol','Y','2025-10-23 00:00:00'),(80872,11,'XM54Q3','Dinitrobenzene vapor','Y','2025-10-23 00:00:00'),(80871,11,'XM11G0','Dinitrobenzene','Y','2025-10-23 00:00:00'),(80870,11,'XE1DK','Dining room or kitchen table','Y','2025-10-23 00:00:00'),(80869,11,'XM9HC2','Di-n-butyl phthalate','Y','2025-10-23 00:00:00'),(80868,11,'XM8Q26','Dimoxyline','Y','2025-10-23 00:00:00'),(80867,11,'XM2ZT4','Dimorpholamine','Y','2025-10-23 00:00:00'),(80866,11,'GC42.0','Diminished sensation due to vaginal or introital laxity','Y','2025-10-23 00:00:00'),(80865,11,'5A80.5','Diminished ovarian reserve','Y','2025-10-23 00:00:00'),(80864,11,'XM81Q8','Dimetotiazine','Y','2025-10-23 00:00:00'),(80863,11,'XM6LP2','Dimetofrine','Y','2025-10-23 00:00:00'),(80862,11,'XM74S1','Dimetindene','Y','2025-10-23 00:00:00'),(80861,11,'XM56E1','Dimetilan','Y','2025-10-23 00:00:00'),(80860,11,'XM0JJ7','Dimeticone topical','Y','2025-10-23 00:00:00'),(80859,11,'XM6XS1','Dimethyltubocurarinium chloride','Y','2025-10-23 00:00:00'),(80858,11,'XM2RT6','Dimethyltubocurarine','Y','2025-10-23 00:00:00'),(80857,11,'XM74X3','Dimethylphthalate','Y','2025-10-23 00:00:00'),(80856,11,'XM7MB5','Dimethylformamide','Y','2025-10-23 00:00:00'),(80855,11,'XM1BB3','Dimethylcarbate','Y','2025-10-23 00:00:00'),(80854,11,'XM4VE1','Dimethylaminopropionylphenothiazine','Y','2025-10-23 00:00:00'),(80853,11,'XM26P0','Dimethylamine sulfate','Y','2025-10-23 00:00:00'),(80852,11,'XM6LV4','Dimethyl tryptamine','Y','2025-10-23 00:00:00'),(80851,11,'XM64V2','Dimethyl sulfoxide medicinal','Y','2025-10-23 00:00:00'),(80850,11,'XM1JS5','Dimethyl sulfoxide','Y','2025-10-23 00:00:00'),(80849,11,'XM8TX4','Dimethyl sulfate fumes','Y','2025-10-23 00:00:00'),(80848,11,'XM71L2','Dimethyl sulfate','Y','2025-10-23 00:00:00'),(80847,11,'XM7ER1','Dimethyl polysiloxane','Y','2025-10-23 00:00:00'),(80846,11,'XM34N7','Dimethyl phthalate nonmedicinal','Y','2025-10-23 00:00:00'),(80845,11,'XM9U76','Dimethyl phthalate','Y','2025-10-23 00:00:00'),(80844,11,'XM2EM8','Dimethyl fumarate','Y','2025-10-23 00:00:00'),(80843,11,'XM9KL2','Dimethoxanate','Y','2025-10-23 00:00:00'),(80842,11,'XM3BB4','Dimethocaine','Y','2025-10-23 00:00:00'),(80840,11,'XM5RK3','Dimethisterone','Y','2025-10-23 00:00:00'),(80841,11,'XM58G9','Dimethoate','Y','2025-10-23 00:00:00'),(80839,11,'XM9BS9','Dimethicone','Y','2025-10-23 00:00:00'),(80838,11,'XM3MV6','Dimetacrine','Y','2025-10-23 00:00:00'),(80837,11,'XM49U4','Dimestrol','Y','2025-10-23 00:00:00'),(80836,11,'XM89R9','Dimercaprol','Y','2025-10-23 00:00:00'),(80834,11,'XM7V96','Dimemorfan','Y','2025-10-23 00:00:00'),(80835,11,'XM8ZH9','Dimenhydrinate','Y','2025-10-23 00:00:00'),(80833,11,'XM5Q52','Dimefox','Y','2025-10-23 00:00:00'),(80832,11,'XM0A24','Dimefline','Y','2025-10-23 00:00:00'),(80831,11,'XM4A13','Dimazole','Y','2025-10-23 00:00:00'),(80830,11,'XM5K59','Diltiazem','Y','2025-10-23 00:00:00'),(80829,11,'XM7AM3','Diloxanide','Y','2025-10-23 00:00:00'),(80828,11,'XM0365','Dill','Y','2025-10-23 00:00:00'),(80827,11,'XM1E15','Dilazep','Y','2025-10-23 00:00:00'),(80826,11,'XM1HE9','Dilaudid','Y','2025-10-23 00:00:00'),(80825,11,'BC43.0Z','Dilated cardiomyopathy, unspecified','Y','2025-10-23 00:00:00'),(80824,11,'1D85.0','Dilated cardiomyopathy secondary to viral myocarditis','Y','2025-10-23 00:00:00'),(80823,11,'BA51.0','Dilated cardiomyopathy due to congenital anomaly of coronary artery','Y','2025-10-23 00:00:00'),(80821,11,'XM08H9','Dilantin','Y','2025-10-23 00:00:00'),(80822,11,'BC43.0','Dilated cardiomyopathy','Y','2025-10-23 00:00:00'),(80820,11,'XM0UQ3','Diisopropylfluorophos-phonate','Y','2025-10-23 00:00:00'),(80819,11,'XM0MW9','Diisopropylamine','Y','2025-10-23 00:00:00'),(80818,11,'XM2493','Diisopromine','Y','2025-10-23 00:00:00'),(80817,11,'XM6Y24','Diiodotyrosine','Y','2025-10-23 00:00:00'),(80816,11,'XM8UZ7','Diiodohydroxyquin topical','Y','2025-10-23 00:00:00'),(80815,11,'XM12P7','Diiodohydroxypropane','Y','2025-10-23 00:00:00'),(80814,11,'XM8PF5','Dihydroxyanthraquinone','Y','2025-10-23 00:00:00'),(80813,11,'XM9PG0','Dihydroxyaluminum sodium carbonate','Y','2025-10-23 00:00:00'),(80812,11,'XM1622','Dihydroxyaluminum aminoacetate','Y','2025-10-23 00:00:00'),(80811,11,'XM37C2','Dihydrotachysterol','Y','2025-10-23 00:00:00'),(80810,11,'XM8KT1','Dihydrostreptomycin','Y','2025-10-23 00:00:00'),(80809,11,'XM3D74','Dihydropyridine derivatives','Y','2025-10-23 00:00:00'),(80808,11,'XM4T95','Dihydromorphine','Y','2025-10-23 00:00:00'),(80807,11,'XM77C9','Dihydroisocodeine','Y','2025-10-23 00:00:00'),(80806,11,'XM3WW1','Dihydroergotoxine','Y','2025-10-23 00:00:00'),(80805,11,'XM7K86','Dihydroergokryptine','Y','2025-10-23 00:00:00'),(80804,11,'XM5DT8','Dihydroergocryptine mesylate','Y','2025-10-23 00:00:00'),(80803,11,'XM0TP6','Dihydroergocristine (mesilate)','Y','2025-10-23 00:00:00'),(80802,11,'XM9Q04','Dihydroergocornine','Y','2025-10-23 00:00:00'),(80801,11,'XM06K5','Dihydrocodeine','Y','2025-10-23 00:00:00'),(80800,11,'XM24X9','Dihydrazine','Y','2025-10-23 00:00:00'),(80799,11,'XM2FP9','Dihydralazine','Y','2025-10-23 00:00:00'),(80798,11,'XM4SN3','Dihexyverine','Y','2025-10-23 00:00:00'),(80797,11,'XM8VJ6','Digoxin','Y','2025-10-23 00:00:00'),(80796,11,'XM0V98','Digitoxose','Y','2025-10-23 00:00:00'),(80795,11,'XM13W9','Digitoxin','Y','2025-10-23 00:00:00'),(80794,11,'XM46Y1','Digitalis purpurea plant','Y','2025-10-23 00:00:00'),(80793,11,'XM3Y64','Digitalis purpurea','Y','2025-10-23 00:00:00'),(80792,11,'XM2GT4','Digitalis leaves','Y','2025-10-23 00:00:00'),(80791,11,'XM2SP4','Digitalis lanata','Y','2025-10-23 00:00:00'),(80790,11,'XM2EL5','Digitalis glycosides','Y','2025-10-23 00:00:00'),(80789,11,'XM9AD6','Digitalis antitoxin','Y','2025-10-23 00:00:00'),(80788,11,'XM7RY5','Digitalin (e)','Y','2025-10-23 00:00:00'),(80787,11,'XH6FB5','Digital papillary adenocarcinoma','Y','2025-10-23 00:00:00'),(80786,11,'1E80.0','Digital or periungual warts','Y','2025-10-23 00:00:00'),(80785,11,'XA37M8','Digital nerve','Y','2025-10-23 00:00:00'),(80784,11,'EK70.2','Digital myxoid pseudocyst','Y','2025-10-23 00:00:00'),(80783,11,'XE9GT','Digging or tilling tool','Y','2025-10-23 00:00:00'),(80782,11,'ME24.5','Digestive system ulcer','Y','2025-10-23 00:00:00'),(80781,11,'ME24.8','Digestive system strangulation or gangrene','Y','2025-10-23 00:00:00'),(80780,11,'ME24.4','Digestive system stenosis','Y','2025-10-23 00:00:00'),(80779,11,'ME24.3Z','Digestive system perforation of unspecified site','Y','2025-10-23 00:00:00'),(80778,11,'ME24.3Y','Digestive system perforation of other specified site','Y','2025-10-23 00:00:00'),(80777,11,'ME24.3','Digestive system perforation','Y','2025-10-23 00:00:00'),(80776,11,'ME24.2','Digestive system obstruction','Y','2025-10-23 00:00:00'),(80775,11,'ME24.7','Digestive system incarceration','Y','2025-10-23 00:00:00'),(80774,11,'ME24.1','Digestive system fistula','Y','2025-10-23 00:00:00'),(80773,11,'KB8Z','Digestive system disorders of fetus or newborn, unspecified','Y','2025-10-23 00:00:00'),(80772,11,'ME24.6','Digestive system dilatation','Y','2025-10-23 00:00:00'),(80771,11,'ME24.0','Digestive system abscess','Y','2025-10-23 00:00:00'),(80770,11,'XA5S69','Digastric tendon','Y','2025-10-23 00:00:00'),(80769,11,'XA2967','Digastric muscle','Y','2025-10-23 00:00:00'),(80768,11,'XA1ZH3','Digastric branch of the facial nerve','Y','2025-10-23 00:00:00'),(80767,11,'XM6DT9','Difluprednate','Y','2025-10-23 00:00:00'),(80766,11,'XM86K6','Difluorophate','Y','2025-10-23 00:00:00'),(80765,11,'XM7RF5','Difluoromethyldopa','Y','2025-10-23 00:00:00'),(80764,11,'XM5UX6','Diflunisal','Y','2025-10-23 00:00:00'),(80763,11,'XM4XD6','Diflucortolone','Y','2025-10-23 00:00:00'),(80762,11,'XM4NG6','Diflubenzuron','Y','2025-10-23 00:00:00'),(80761,11,'XM1389','Diflos','Y','2025-10-23 00:00:00'),(80760,11,'XM8V58','Diflorasone','Y','2025-10-23 00:00:00'),(80759,11,'XM3HF5','Diffusin','Y','2025-10-23 00:00:00'),(80758,11,'DA43.4','Diffuse vascular ectasia of stomach','Y','2025-10-23 00:00:00'),(80757,11,'NA07.20','Diffuse traumatic oedema','Y','2025-10-23 00:00:00'),(80756,11,'4A42.1','Diffuse systemic sclerosis','Y','2025-10-23 00:00:00'),(80755,11,'CB04.0','Diffuse pulmonary developmental disorders','Y','2025-10-23 00:00:00'),(80754,11,'CA26.1','Diffuse panbronchiolitis','Y','2025-10-23 00:00:00'),(80753,11,'EC20.30','Diffuse palmoplantar keratodermas','Y','2025-10-23 00:00:00'),(80752,11,'XH4Q01','Diffuse paediatric-type high-grade glioma, H3-wildtype and IDH-wildtype','Y','2025-10-23 00:00:00'),(80751,11,'9A22.1','Diffuse orbital inflammation','Y','2025-10-23 00:00:00'),(80750,11,'XH3N49','Diffuse midline glioma, NOS','Y','2025-10-23 00:00:00'),(80749,11,'XH7692','Diffuse midline glioma, H3 K27M-mutant','Y','2025-10-23 00:00:00'),(80748,11,'MF80','Diffuse mesangial sclerosis','Y','2025-10-23 00:00:00'),(80747,11,'XH6DN3','Diffuse melanocytosis','Y','2025-10-23 00:00:00'),(80746,11,'XH17F8','Diffuse low-grade glioma, MAPK pathway-altered','Y','2025-10-23 00:00:00'),(80745,11,'2A81','Diffuse large B-cell lymphomas','Y','2025-10-23 00:00:00'),(80744,11,'2A81.Z','Diffuse large B-cell lymphoma, not otherwise specified','Y','2025-10-23 00:00:00'),(80743,11,'XH9B17','Diffuse large B-cell lymphoma, NOS','Y','2025-10-23 00:00:00'),(80742,11,'2A81.7','Diffuse large B-cell lymphoma associated with chronic inflammation','Y','2025-10-23 00:00:00'),(80741,11,'XH3N15','Diffuse large B-cell lymphoma associated with chronic inflammation','Y','2025-10-23 00:00:00'),(80740,11,'XH9YU2','Diffuse intrinsic pontine glioma, H3 K27M-mutant','Y','2025-10-23 00:00:00'),(80739,11,'XH61Y5','Diffuse intrinsic pontine glioma','Y','2025-10-23 00:00:00'),(80738,11,'NA07.33','Diffuse injury of multiple parts of brain','Y','2025-10-23 00:00:00'),(80737,11,'NA07.30','Diffuse injury of cerebrum','Y','2025-10-23 00:00:00'),(80736,11,'NA07.31','Diffuse injury of cerebellum','Y','2025-10-23 00:00:00'),(80735,11,'NA07.32','Diffuse injury of brainstem','Y','2025-10-23 00:00:00'),(80734,11,'EB10','Diffuse inflammatory erythemas','Y','2025-10-23 00:00:00'),(80733,11,'XH2SS9','Diffuse hemispheric glioma, H3 G34-mutant','Y','2025-10-23 00:00:00'),(80732,11,'ED51','Diffuse epidermal hyperkeratosis and acanthosis','Y','2025-10-23 00:00:00'),(80731,11,'4A43.4','Diffuse eosinophilic fasciitis','Y','2025-10-23 00:00:00'),(80730,11,'XK31','Diffuse distribution','Y','2025-10-23 00:00:00'),(80729,11,'XH2RG8','Diffuse cutaneous mastocytosis','Y','2025-10-23 00:00:00'),(80728,11,'NA07.3','Diffuse brain injury','Y','2025-10-23 00:00:00'),(80727,11,'KA8F.0','Diffuse bleeding diathesis due to vitamin K deficient haemorrhagic disease of fetus or newborn','Y','2025-10-23 00:00:00'),(80726,11,'XH6UY7','Diffuse astrocytoma, low grade','Y','2025-10-23 00:00:00'),(80725,11,'XH2C49','Diffuse astrocytoma, IDH-wildtype','Y','2025-10-23 00:00:00'),(80724,11,'XH2HK4','Diffuse astrocytoma, IDH-mutant','Y','2025-10-23 00:00:00'),(80723,11,'XH8W32','Diffuse astrocytoma','Y','2025-10-23 00:00:00'),(80722,11,'CB05.0','Diffuse alveolar damage','Y','2025-10-23 00:00:00'),(80721,11,'EK90.1','Diffuse actinic keratinocyte dysplasia','Y','2025-10-23 00:00:00'),(80720,11,'QF28','Difficulty or need for assistance with work activities','Y','2025-10-23 00:00:00'),(80719,11,'QF2Z','Difficulty or need for assistance with unspecified activity','Y','2025-10-23 00:00:00'),(80718,11,'QF24','Difficulty or need for assistance with self-care','Y','2025-10-23 00:00:00'),(80717,11,'QF25','Difficulty or need for assistance with relationships','Y','2025-10-23 00:00:00'),(80716,11,'QF2Y','Difficulty or need for assistance with other specified activity','Y','2025-10-23 00:00:00'),(80715,11,'QF23','Difficulty or need for assistance with mobility','Y','2025-10-23 00:00:00'),(80714,11,'QF29','Difficulty or need for assistance with major areas of life','Y','2025-10-23 00:00:00'),(80713,11,'QF20','Difficulty or need for assistance with learning','Y','2025-10-23 00:00:00'),(80712,11,'QF26','Difficulty or need for assistance with household tasks','Y','2025-10-23 00:00:00'),(80711,11,'QF21','Difficulty or need for assistance with general life tasks or life management','Y','2025-10-23 00:00:00'),(80710,11,'QF2A','Difficulty or need for assistance with community participation','Y','2025-10-23 00:00:00'),(80709,11,'QF22','Difficulty or need for assistance with communication','Y','2025-10-23 00:00:00'),(80708,11,'QF27','Difficulty or need for assistance at home and no other household member able to render care','Y','2025-10-23 00:00:00'),(80707,11,'MB44.2','Difficulty in walking','Y','2025-10-23 00:00:00'),(80706,11,'MF50.6Z','Difficulties with micturition, unspecified','Y','2025-10-23 00:00:00'),(80705,11,'VD43.0','Difficulties in daily work or school [WHODAS]','Y','2025-10-23 00:00:00'),(80704,11,'XE0HC','Difficult to remove','Y','2025-10-23 00:00:00'),(80703,11,'XE01Z','Difficult to open or remove packaging material','Y','2025-10-23 00:00:00'),(80702,11,'XE2EV','Difficult to open or close','Y','2025-10-23 00:00:00'),(80701,11,'XE9HR','Difficult to interrogate','Y','2025-10-23 00:00:00'),(80700,11,'XE2JZ','Difficult to insert','Y','2025-10-23 00:00:00'),(80699,11,'XE8ZX','Difficult to fold or unfold','Y','2025-10-23 00:00:00'),(80698,11,'XE6BM','Difficult to flush','Y','2025-10-23 00:00:00'),(80697,11,'XE9NU','Difficult to advance','Y','2025-10-23 00:00:00'),(80696,11,'XE6U9','Difficult or delayed separation','Y','2025-10-23 00:00:00'),(80695,11,'XE74U','Difficult or delayed positioning','Y','2025-10-23 00:00:00'),(80694,11,'XE9Y0','Difficult or delayed activation','Y','2025-10-23 00:00:00'),(80693,11,'XH9CL8','Differentiated VIN','Y','2025-10-23 00:00:00'),(80692,11,'XH6824','Differentiated PeIN','Y','2025-10-23 00:00:00'),(80691,11,'XH6RW7','Differentiated intraepithelial neoplasia','Y','2025-10-23 00:00:00'),(80690,11,'XY75','Differential diagnosis','Y','2025-10-23 00:00:00'),(80689,11,'XM6DL4','Difethialone','Y','2025-10-23 00:00:00'),(80688,11,'XM0A09','Difetarsone','Y','2025-10-23 00:00:00'),(80687,11,'XM7K80','Difenpiramide','Y','2025-10-23 00:00:00'),(80686,11,'XM8ET0','Difenoxin','Y','2025-10-23 00:00:00'),(80685,11,'XM3365','Difenoconazole','Y','2025-10-23 00:00:00'),(80684,11,'XM29D4','Difenidol','Y','2025-10-23 00:00:00'),(80683,11,'XM1K75','Difencloxazine','Y','2025-10-23 00:00:00'),(80682,11,'XM9VL9','Difenacoum','Y','2025-10-23 00:00:00'),(80681,11,'XM2043','Difemerine','Y','2025-10-23 00:00:00'),(80680,11,'XM4M74','Difelikefalin','Y','2025-10-23 00:00:00'),(80679,11,'XM4C65','Difebarbamate','Y','2025-10-23 00:00:00'),(80678,11,'XM9DQ3','Diethyltryptamine (DET)','Y','2025-10-23 00:00:00'),(80677,11,'XM2355','Diethyltoluamide','Y','2025-10-23 00:00:00'),(80676,11,'XM1L51','Diethylsulfone-diethylmethane','Y','2025-10-23 00:00:00'),(80674,11,'XM5FP0','Diethylpropion','Y','2025-10-23 00:00:00'),(80675,11,'XM51S9','Diethylstilbestrol','Y','2025-10-23 00:00:00'),(80673,11,'XM75C9','Diethylhexyl phthalate','Y','2025-10-23 00:00:00'),(80672,11,'XM0L39','Diethylenetriamine','Y','2025-10-23 00:00:00'),(80671,11,'XM8XU3','Diethylene glycol monoethyl ether','Y','2025-10-23 00:00:00'),(80670,11,'XM1A56','Diethylene glycol monobutyl ether','Y','2025-10-23 00:00:00'),(80669,11,'XM3834','Diethylene glycol monoacetate','Y','2025-10-23 00:00:00'),(80668,11,'XM55M8','Diethylene glycol','Y','2025-10-23 00:00:00'),(80667,11,'XM1VF1','Diethylcarbamazine','Y','2025-10-23 00:00:00'),(80666,11,'XM0XB3','Diethyl toluamide medicinal','Y','2025-10-23 00:00:00'),(80665,11,'XM3J00','Diethyl ether','Y','2025-10-23 00:00:00'),(80664,11,'XM6HQ5','Diethyl carbinol','Y','2025-10-23 00:00:00'),(80663,11,'XM0HT8','Diethazine','Y','2025-10-23 00:00:00'),(80662,11,'XM58E5','Diethanolamine','Y','2025-10-23 00:00:00'),(80661,11,'XM3046','Dietary supplements rich in vitamins and antioxidants','Y','2025-10-23 00:00:00'),(80660,11,'XM9A95','Diesel fuel','Y','2025-10-23 00:00:00'),(80659,11,'XM5KE9','Dienogest and ethinylestradiol','Y','2025-10-23 00:00:00'),(80658,11,'XM0U58','Dienogest','Y','2025-10-23 00:00:00'),(80657,11,'XM6UC0','Dienoestrol','Y','2025-10-23 00:00:00'),(80656,11,'XM5U23','Dieldrin','Y','2025-10-23 00:00:00'),(80655,11,'XM7SG2','Dideoxyinosine','Y','2025-10-23 00:00:00'),(80654,11,'XM68P2','Didecyldimethylammonium chloride','Y','2025-10-23 00:00:00'),(80653,11,'XM8Z78','Didanosine','Y','2025-10-23 00:00:00'),(80652,11,'XM0CE0','Dicycloverine','Y','2025-10-23 00:00:00'),(80651,11,'XM5UL4','Dicrotophos','Y','2025-10-23 00:00:00'),(80650,11,'XN3QD','Dicrocoelium','Y','2025-10-23 00:00:00'),(80649,11,'1F81','Dicrocoeliasis','Y','2025-10-23 00:00:00'),(80648,11,'XM8RN0','Dicoumarol','Y','2025-10-23 00:00:00'),(80646,11,'XM2CK5','Dicofol','Y','2025-10-23 00:00:00'),(80647,11,'XM06U7','Dicophane','Y','2025-10-23 00:00:00'),(80645,11,'XM5SF7','Dicloxacillin','Y','2025-10-23 00:00:00'),(80644,11,'XM7K04','Diclonixin','Y','2025-10-23 00:00:00'),(80643,11,'XM7U12','Diclofensine','Y','2025-10-23 00:00:00'),(80642,11,'XM2AU1','Diclofenac','Y','2025-10-23 00:00:00'),(80641,11,'XM03V8','Dichlorvos','Y','2025-10-23 00:00:00'),(80640,11,'XM4LU1','Dichlorphenamide','Y','2025-10-23 00:00:00'),(80639,11,'XM61U9','Dichloropropene','Y','2025-10-23 00:00:00'),(80638,11,'XM0ZD3','Dichlorophen','Y','2025-10-23 00:00:00'),(80637,11,'XM7EF6','Dichloromethane vapor','Y','2025-10-23 00:00:00'),(80636,11,'XM73T7','Dichloromethane','Y','2025-10-23 00:00:00'),(80635,11,'XM4VA2','Dichloroformoxine','Y','2025-10-23 00:00:00'),(80634,11,'XM8G49','Dichloroethylene','Y','2025-10-23 00:00:00'),(80633,11,'XM6UG7','Dichloroethyl sulfide','Y','2025-10-23 00:00:00'),(80632,11,'XM1AF0','Dichloroethane','Y','2025-10-23 00:00:00'),(80631,11,'XM3QE2','Dichlorodifluoromethane','Y','2025-10-23 00:00:00'),(80630,11,'XM96Z5','Dichlorobenzyl alcohol','Y','2025-10-23 00:00:00'),(80629,11,'XM76A0','Dichlorobenzidine','Y','2025-10-23 00:00:00'),(80628,11,'XM55X0','Dichlorobenzene','Y','2025-10-23 00:00:00'),(80627,11,'XM4RW6','Dichloroacetamide derivatives','Y','2025-10-23 00:00:00'),(80626,11,'XM1YN6','Dichlorhydroxyquinoline','Y','2025-10-23 00:00:00'),(80625,11,'XM38Z7','Dichlorhydrin','Y','2025-10-23 00:00:00'),(80624,11,'XM9V32','Dichloralphenazone','Y','2025-10-23 00:00:00'),(80623,11,'XM8E94','Dichlone','Y','2025-10-23 00:00:00'),(80622,11,'XM5DH1','Dichlobenil','Y','2025-10-23 00:00:00'),(80621,11,'XM26D3','Dicapthon','Y','2025-10-23 00:00:00'),(80619,11,'XM4KG9','Dibutylsuccinate','Y','2025-10-23 00:00:00'),(80620,11,'XM3MM5','Dicamba','Y','2025-10-23 00:00:00'),(80617,11,'XM4CZ8','Dibutoline sulfate','Y','2025-10-23 00:00:00'),(80618,11,'XM84S5','Dibutylphthalate','Y','2025-10-23 00:00:00'),(80616,11,'XM6SJ0','Dibunate','Y','2025-10-23 00:00:00'),(80615,11,'XM0UE0','Dibrompropamidine','Y','2025-10-23 00:00:00'),(80614,11,'XM2MJ8','Dibromotyrosine','Y','2025-10-23 00:00:00'),(80613,11,'XM1RR7','Dibromopropamidine isethionate','Y','2025-10-23 00:00:00'),(80612,11,'XM9GK3','Dibromoethane','Y','2025-10-23 00:00:00'),(80611,11,'XM6PM8','Dibromochloropropane','Y','2025-10-23 00:00:00'),(80610,11,'XM5GF1','Dibotermin alfa','Y','2025-10-23 00:00:00'),(80609,11,'XM70H1','Diborane','Y','2025-10-23 00:00:00'),(80608,11,'XM70W7','Dibenzyline','Y','2025-10-23 00:00:00'),(80607,11,'XM90X8','Dibenzothiazyl disulphide','Y','2025-10-23 00:00:00'),(80606,11,'XM62B0','Dibenzheptropine','Y','2025-10-23 00:00:00'),(80605,11,'XM6H22','Dibenzepin','Y','2025-10-23 00:00:00'),(80604,11,'XM4UW6','Dibenamine','Y','2025-10-23 00:00:00'),(80603,11,'XM45U4','Dibekacin','Y','2025-10-23 00:00:00'),(80602,11,'XM8YG1','Diazoxide','Y','2025-10-23 00:00:00'),(80601,11,'XM8Z33','Diazomethane','Y','2025-10-23 00:00:00'),(80600,11,'XM51H6','Diazolidinyl urea','Y','2025-10-23 00:00:00'),(80599,11,'XM6AY4','Diazinon','Y','2025-10-23 00:00:00'),(80597,11,'XM8P99','Diazepam','Y','2025-10-23 00:00:00'),(80598,11,'XM12F2','Diazepines, oxazepines, thiazepines and oxepines','Y','2025-10-23 00:00:00'),(80596,11,'XM8KK9','Diatrizoic acid','Y','2025-10-23 00:00:00'),(80595,11,'XM6XU2','Diatrizoate','Y','2025-10-23 00:00:00'),(80594,11,'LD24.03','Diastrophic dysplasia','Y','2025-10-23 00:00:00'),(80593,11,'MC80.02','Diastolic elevated blood pressure reading without diagnosis of hypertension','Y','2025-10-23 00:00:00'),(80592,11,'LA07.1','Diastematomyelia','Y','2025-10-23 00:00:00'),(80591,11,'FB32.0','Diastasis of muscle','Y','2025-10-23 00:00:00'),(80590,11,'XM1F53','Diastase','Y','2025-10-23 00:00:00'),(80589,11,'ME05.1','Diarrhoea','Y','2025-10-23 00:00:00'),(80588,11,'SA55','Diarrhea disorder (TM1)','Y','2025-10-23 00:00:00'),(80587,11,'XA9NE2','Diaphragmatic vein','Y','2025-10-23 00:00:00'),(80586,11,'DD50.0','Diaphragmatic hernia','Y','2025-10-23 00:00:00'),(80585,11,'XA9N29','Diaphragm tendon','Y','2025-10-23 00:00:00'),(80584,11,'XE1KD','Diaphragm component of medical device','Y','2025-10-23 00:00:00'),(80583,11,'XA2JL0','Diaphragm','Y','2025-10-23 00:00:00'),(80581,11,'XE7HA','Diaper, nappy','Y','2025-10-23 00:00:00'),(80582,11,'XM7WC8','Diaphenylsulfone','Y','2025-10-23 00:00:00'),(80580,11,'XE5E9','Diaper fastener','Y','2025-10-23 00:00:00'),(80579,11,'SE39','Diaper dermatitis disorder (TM1)','Y','2025-10-23 00:00:00'),(80578,11,'XM4C29','Dianthone','Y','2025-10-23 00:00:00'),(80577,11,'XM05B3','Diamorphine','Y','2025-10-23 00:00:00'),(80576,11,'XD4379','Dialyzers UHF > 35 ml/h/mmHg, synthetic membranes','Y','2025-10-23 00:00:00'),(80575,11,'XD4S95','Dialyzers UHF > 35 ml/h/mmHg, substituted cellulose membranes','Y','2025-10-23 00:00:00'),(80574,11,'XD2T66','Dialyzers UHF > 35 ml/h/mmHg, cellulose membranes','Y','2025-10-23 00:00:00'),(80573,11,'XD8UZ1','Dialyzers UHF > 35 ml/h/mmHg others','Y','2025-10-23 00:00:00'),(80572,11,'XD1904','Dialyzers UHF > 35 ml/h/mmHg','Y','2025-10-23 00:00:00'),(80571,11,'XD2KD5','Dialyzers UHF = 18 35 ml/h/mmHg, synthetic membranes','Y','2025-10-23 00:00:00'),(80570,11,'XD0XB0','Dialyzers UHF = 18 35 ml/h/mmHg, substituted cellulose membranes','Y','2025-10-23 00:00:00'),(80569,11,'XD9RP1','Dialyzers UHF = 18 35 ml/h/mmHg, cellulose membranes','Y','2025-10-23 00:00:00'),(80568,11,'XD7ZP1','Dialyzers UHF = 18 35 ml/h/mmHg others','Y','2025-10-23 00:00:00'),(80567,11,'XD4WX5','Dialyzers UHF = 18 35 ml/h/mmHg','Y','2025-10-23 00:00:00'),(80566,11,'XD5S48','Dialyzers UHF < 18 ml/h/mmHg, synthetic membranes','Y','2025-10-23 00:00:00'),(80565,11,'XD6QR4','Dialyzers UHF < 18 ml/h/mmHg, substituted cellulose membranes','Y','2025-10-23 00:00:00'),(80564,11,'XD2N29','Dialyzers UHF < 18 ml/h/mmHg, cellulose membranes','Y','2025-10-23 00:00:00'),(80563,11,'XD2DL2','Dialyzers UHF < 18 ml/h/mmHg others','Y','2025-10-23 00:00:00'),(80562,11,'XD2KJ5','Dialyzers UHF < 18 ml/h/mmHg','Y','2025-10-23 00:00:00'),(80561,11,'XD8VS0','Dialyzers for special hemodiafiltration and other therapies','Y','2025-10-23 00:00:00'),(80560,11,'5D00.3','Dialysis-associated amyloidosis','Y','2025-10-23 00:00:00'),(80559,11,'XD80S8','Dialysis, washing/filling sets','Y','2025-10-23 00:00:00'),(80558,11,'XD2EM7','Dialysis, adaptors','Y','2025-10-23 00:00:00'),(80557,11,'XM1619','Dialysis solution (intraperitoneal)','Y','2025-10-23 00:00:00'),(80556,11,'XD9Z50','Dialysis sets others','Y','2025-10-23 00:00:00'),(80555,11,'XD83M2','Dialysis sets','Y','2025-10-23 00:00:00'),(80554,11,'XD7157','Dialysis procedures, salts','Y','2025-10-23 00:00:00'),(80553,11,'XD0ZQ3','Dialysis lines others','Y','2025-10-23 00:00:00'),(80552,11,'XD12J0','Dialysis lines haemodialysis-haemofiltration-haemodiafiltration','Y','2025-10-23 00:00:00'),(80551,11,'XD6F86','Dialysis lines','Y','2025-10-23 00:00:00'),(80550,11,'XD8V84','Dialysis filters','Y','2025-10-23 00:00:00'),(80549,11,'XD8VC9','Dialysis devices various','Y','2025-10-23 00:00:00'),(80548,11,'XD46Z0','Dialysis devices others','Y','2025-10-23 00:00:00'),(80547,11,'XD9KW0','Dialysis devices other accessories','Y','2025-10-23 00:00:00'),(80546,11,'PK81.6','Dialysis associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(80545,11,'XD6W13','Dialysates, without acetate buffer other treatments','Y','2025-10-23 00:00:00'),(80544,11,'XD9594','Dialysates, without acetate buffer AFB','Y','2025-10-23 00:00:00'),(80542,11,'XD2JY9','Dialysates, basic solutions, powder','Y','2025-10-23 00:00:00'),(80543,11,'XD6LX2','Dialysates, without acetate buffer','Y','2025-10-23 00:00:00'),(80541,11,'XD5240','Dialysates, basic solutions, liquid','Y','2025-10-23 00:00:00'),(80540,11,'XD0UL9','Dialysates, basic solutions','Y','2025-10-23 00:00:00'),(80539,11,'XD1KF2','Dialysates, acid solutions, sterile','Y','2025-10-23 00:00:00'),(80537,11,'XD62N1','Dialysates, acid solutions','Y','2025-10-23 00:00:00'),(80538,11,'XD3V66','Dialysates, acid solutions, non-sterile','Y','2025-10-23 00:00:00'),(80536,11,'XD67E6','Dialysates others','Y','2025-10-23 00:00:00'),(80535,11,'XD5C20','Dialysates','Y','2025-10-23 00:00:00'),(80534,11,'XD1ZR7','Dialysate tanks, reinfusion','Y','2025-10-23 00:00:00'),(80533,11,'XD25C5','Dialysate tanks, collection and reinfusion','Y','2025-10-23 00:00:00'),(80532,11,'XD6LH4','Dialysate tanks, collection','Y','2025-10-23 00:00:00'),(80531,11,'XM4XS8','Diallyl disulfide','Y','2025-10-23 00:00:00'),(80530,11,'XM8R64','Dialkyl carbonate','Y','2025-10-23 00:00:00'),(80529,11,'XM16X4','Dial (soap)','Y','2025-10-23 00:00:00'),(80528,11,'XA2N78','Diagonal branches of left anterior descending coronary artery','Y','2025-10-23 00:00:00'),(80527,11,'XA8QL3','Diagonal band of Broca','Y','2025-10-23 00:00:00'),(80525,11,'XY0E','Diagnosis confirmed by serology','Y','2025-10-23 00:00:00'),(80526,11,'XM9320','Diagnostic radiopharmaceuticals','Y','2025-10-23 00:00:00'),(80524,11,'XY19','Diagnosis confirmed by microscopy','Y','2025-10-23 00:00:00'),(80523,11,'XY3B','Diagnosis confirmed by laboratory examination','Y','2025-10-23 00:00:00'),(80522,11,'XY9R','Diagnosis confirmed by imaging','Y','2025-10-23 00:00:00'),(80521,11,'XY9Q','Diagnosis confirmed by histology','Y','2025-10-23 00:00:00'),(80520,11,'XY8K','Diagnosis confirmed by genetics','Y','2025-10-23 00:00:00'),(80519,11,'XY0K','Diagnosis confirmed by culture','Y','2025-10-23 00:00:00'),(80518,11,'XM95C8','Diachylon plaster','Y','2025-10-23 00:00:00'),(80516,11,'XM9F73','Diacetone alcohol','Y','2025-10-23 00:00:00'),(80517,11,'XM5PT0','Diacetyl monoxime','Y','2025-10-23 00:00:00'),(80515,11,'XM51H0','Diacerein','Y','2025-10-23 00:00:00'),(80514,11,'EB90.0','Diabetic skin lesions','Y','2025-10-23 00:00:00'),(80513,11,'9B71.0Z','Diabetic retinopathy, unspecified','Y','2025-10-23 00:00:00'),(80512,11,'9B71.0','Diabetic retinopathy','Y','2025-10-23 00:00:00'),(80511,11,'8B94','Diabetic radiculoplexoneuropathy','Y','2025-10-23 00:00:00'),(80510,11,'8C03.0','Diabetic polyneuropathy','Y','2025-10-23 00:00:00'),(80509,11,'5A22.2','Diabetic metabolic acidosis','Y','2025-10-23 00:00:00'),(80508,11,'9B71.02','Diabetic macular oedema','Y','2025-10-23 00:00:00'),(80507,11,'8B92.2','Diabetic lumbosacral plexopathy','Y','2025-10-23 00:00:00'),(80506,11,'5A22.1','Diabetic lactic acidosis','Y','2025-10-23 00:00:00'),(80505,11,'5A22.0','Diabetic ketoacidosis without coma','Y','2025-10-23 00:00:00'),(80504,11,'5A22.3','Diabetic ketoacidosis with coma','Y','2025-10-23 00:00:00'),(80503,11,'5A20.Z','Diabetic hyperosmolar hyperglycaemic state, unspecified','Y','2025-10-23 00:00:00'),(80502,11,'5A20','Diabetic hyperosmolar hyperglycaemic state','Y','2025-10-23 00:00:00'),(80501,11,'MF83','Diabetic glomerular changes','Y','2025-10-23 00:00:00'),(80500,11,'BD54','Diabetic foot ulcer','Y','2025-10-23 00:00:00'),(80499,11,'5A23','Diabetic coma','Y','2025-10-23 00:00:00'),(80498,11,'FA38.10','Diabetic Charcot arthropathy','Y','2025-10-23 00:00:00'),(80497,11,'9B10.21','Diabetic cataract','Y','2025-10-23 00:00:00'),(80496,11,'BC43.7','Diabetic cardiomyopathy','Y','2025-10-23 00:00:00'),(80495,11,'FA38.0','Diabetic arthropathy','Y','2025-10-23 00:00:00'),(80494,11,'5A22.Z','Diabetic acidosis, unspecified','Y','2025-10-23 00:00:00'),(80493,11,'5A22','Diabetic acidosis','Y','2025-10-23 00:00:00'),(80492,11,'5A14','Diabetes mellitus, type unspecified','Y','2025-10-23 00:00:00'),(80491,11,'5A13','Diabetes mellitus, other specified type','Y','2025-10-23 00:00:00'),(80490,11,'JA63.Z','Diabetes mellitus in pregnancy, unspecified','Y','2025-10-23 00:00:00'),(80489,11,'JA63','Diabetes mellitus in pregnancy','Y','2025-10-23 00:00:00'),(80488,11,'5A13.5','Diabetes mellitus due to uncommon forms of immune-mediated diabetes','Y','2025-10-23 00:00:00'),(80487,11,'5A13.Y','Diabetes mellitus due to other specified cause','Y','2025-10-23 00:00:00'),(80486,11,'5A13.6','Diabetes mellitus due to other genetic syndromes','Y','2025-10-23 00:00:00'),(80485,11,'5A13.0','Diabetes mellitus due to genetic defects of beta cell function','Y','2025-10-23 00:00:00'),(80483,11,'5A13.3','Diabetes mellitus due to endocrinopathies','Y','2025-10-23 00:00:00'),(80484,11,'5A13.1','Diabetes mellitus due to genetic defects in insulin action','Y','2025-10-23 00:00:00'),(80482,11,'5A13.4','Diabetes mellitus due to drug or chemical','Y','2025-10-23 00:00:00'),(80481,11,'5A13.2','Diabetes mellitus due to diseases of the exocrine pancreas','Y','2025-10-23 00:00:00'),(80480,11,'5A13.7','Diabetes mellitus due to clinically defined subtypes or syndromes','Y','2025-10-23 00:00:00'),(80479,11,'JA63.2','Diabetes mellitus arising in pregnancy','Y','2025-10-23 00:00:00'),(80478,11,'XM1TT7','DHE 45','Y','2025-10-23 00:00:00'),(80476,11,'XM1L81','DFP','Y','2025-10-23 00:00:00'),(80477,11,'XM8DJ7','DHE','Y','2025-10-23 00:00:00'),(80474,11,'XM27J7','Dextrothyroxine sodium','Y','2025-10-23 00:00:00'),(80475,11,'XM13Q9','Dezocine','Y','2025-10-23 00:00:00'),(80473,11,'XM2YU4','Dextrothyroxin','Y','2025-10-23 00:00:00'),(80471,11,'XM7BR0','Dextrose','Y','2025-10-23 00:00:00'),(80472,11,'XM57B0','Dextrose concentrated solution, intravenous','Y','2025-10-23 00:00:00'),(80469,11,'XM8GB8','Dextropropoxyphene','Y','2025-10-23 00:00:00'),(80470,11,'XM8ZF5','Dextrorphan','Y','2025-10-23 00:00:00'),(80468,11,'XM9YX8','Dextromoramide topical','Y','2025-10-23 00:00:00'),(80467,11,'XM3246','Dextromoramide','Y','2025-10-23 00:00:00'),(80466,11,'XM9UV0','Dextromethorphan','Y','2025-10-23 00:00:00'),(80465,11,'LA80.1','Dextrocardia','Y','2025-10-23 00:00:00'),(80464,11,'XM6LD5','Dextroamphetamine','Y','2025-10-23 00:00:00'),(80463,11,'XM6S51','Dextriferron','Y','2025-10-23 00:00:00'),(80462,11,'XM3GL1','Dextranomer','Y','2025-10-23 00:00:00'),(80461,11,'XM3CZ0','Dextran','Y','2025-10-23 00:00:00'),(80460,11,'XM45R5','Dexrazoxane','Y','2025-10-23 00:00:00'),(80459,11,'XM1J18','Dexrabeprazole','Y','2025-10-23 00:00:00'),(80458,11,'XM41P5','Dexpanthenol','Y','2025-10-23 00:00:00'),(80456,11,'XM9QY5','Dexmedetomidine','Y','2025-10-23 00:00:00'),(80457,11,'XM5288','Dexmethylphenidate','Y','2025-10-23 00:00:00'),(80455,11,'XM5RA0','Dexlansoprazole','Y','2025-10-23 00:00:00'),(80454,11,'XM1ZF2','Dexketoprofen','Y','2025-10-23 00:00:00'),(80453,11,'XM32V2','Dexibuprofen','Y','2025-10-23 00:00:00'),(80452,11,'XM5WS4','Dexfenfluramine','Y','2025-10-23 00:00:00'),(80451,11,'XM1H88','Dexetimide','Y','2025-10-23 00:00:00'),(80449,11,'XM6CF9','Dexchlorpheniramine','Y','2025-10-23 00:00:00'),(80450,11,'XM1WW4','Dexedrine','Y','2025-10-23 00:00:00'),(80448,11,'XM1107','Dexbrompheniramine','Y','2025-10-23 00:00:00'),(80446,11,'XM72R5','Dexamethasone','Y','2025-10-23 00:00:00'),(80447,11,'XM6TE1','Dexamethasone topical','Y','2025-10-23 00:00:00'),(80445,11,'XE82G','Devices or parts of devices designed for ascent from and landing on earth or the surface of other bodies as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(80444,11,'XE8KS','Device-device incompatibility','Y','2025-10-23 00:00:00'),(80443,11,'XE5NF','Device unsafe to use in environment','Y','2025-10-23 00:00:00'),(80441,11,'XE1Q1','Device slipped','Y','2025-10-23 00:00:00'),(80442,11,'XE78C','Device tipped over','Y','2025-10-23 00:00:00'),(80440,11,'XE0Q2','Device sensing problem','Y','2025-10-23 00:00:00'),(80439,11,'XE5LK','Device reprocessing problem','Y','2025-10-23 00:00:00'),(80438,11,'XE033','Device reader component of medical device','Y','2025-10-23 00:00:00'),(80436,11,'XE970','Device not returned','Y','2025-10-23 00:00:00'),(80437,11,'XE8UV','Device programmer component of medical device','Y','2025-10-23 00:00:00'),(80435,11,'XE8FB','Device not manufactured by reporting manufacturer','Y','2025-10-23 00:00:00'),(80434,11,'XE53L','Device not accessible for testing','Y','2025-10-23 00:00:00'),(80433,11,'XE151','Device misassembled during manufacturng or shipping','Y','2025-10-23 00:00:00'),(80432,11,'XE8RU','Device migration identified','Y','2025-10-23 00:00:00'),(80431,11,'XE23E','Device markings or labelling problem','Y','2025-10-23 00:00:00'),(80430,11,'XE3E0','Device ingredient or reagent problem','Y','2025-10-23 00:00:00'),(80429,11,'XE7JR','Device ingredient or reagent component of medical device','Y','2025-10-23 00:00:00'),(80428,11,'XE5RS','Device incorrectly reprocessed','Y','2025-10-23 00:00:00'),(80427,11,'XE63T','Device incorrectly disinfected or sterilised during reprocessing identified','Y','2025-10-23 00:00:00'),(80426,11,'XE2RQ','Device incorrectly cleaned during reprocessing identified','Y','2025-10-23 00:00:00'),(80425,11,'XE0TU','Device incorrectly assembled during reprocessing identified','Y','2025-10-23 00:00:00'),(80423,11,'XE5JJ','Device fell','Y','2025-10-23 00:00:00'),(80424,11,'XE6PE','Device handling problem','Y','2025-10-23 00:00:00'),(80422,11,'XE9AC','Device emits odour','Y','2025-10-23 00:00:00'),(80421,11,'XE4TX','Device displays incorrect message','Y','2025-10-23 00:00:00'),(80419,11,'XE18W','Device discarded','Y','2025-10-23 00:00:00'),(80420,11,'XE6KT','Device dislodged or dislocated','Y','2025-10-23 00:00:00'),(80418,11,'XE1C2','Device difficult to setup or prepare','Y','2025-10-23 00:00:00'),(80417,11,'XE3B8','Device difficult to program or calibrate','Y','2025-10-23 00:00:00'),(80416,11,'XE3W1','Device difficult to operate problem identified','Y','2025-10-23 00:00:00'),(80415,11,'XE2N3','Device difficult to maintain','Y','2025-10-23 00:00:00'),(80414,11,'XE8J5','Device deployer component of medical device','Y','2025-10-23 00:00:00'),(80413,11,'XE12L','Device damaged prior to use','Y','2025-10-23 00:00:00'),(80412,11,'XE634','Device damaged by another device','Y','2025-10-23 00:00:00'),(80410,11,'XE4VF','Device contamination with body fluid','Y','2025-10-23 00:00:00'),(80411,11,'XE9AH','Device contamination with chemical or other material','Y','2025-10-23 00:00:00'),(80409,11,'XE450','Device contaminated during manufacture or shipping','Y','2025-10-23 00:00:00'),(80408,11,'XE3CX','Device collapser component of medical device','Y','2025-10-23 00:00:00'),(80407,11,'XE2CL','Device appears to trigger rejection','Y','2025-10-23 00:00:00'),(80405,11,'CA0D','Deviated nasal septum','Y','2025-10-23 00:00:00'),(80406,11,'XE98H','Device alarm system','Y','2025-10-23 00:00:00'),(80404,11,'LC51','Developmental venous malformations involving the skin','Y','2025-10-23 00:00:00'),(80403,11,'XA7A99','Developmental tissue','Y','2025-10-23 00:00:00'),(80402,11,'6A01.0','Developmental speech sound disorder','Y','2025-10-23 00:00:00'),(80400,11,'6A01','Developmental speech or language disorders','Y','2025-10-23 00:00:00'),(80401,11,'6A01.Z','Developmental speech or language disorders, unspecified','Y','2025-10-23 00:00:00'),(80399,11,'6A01.1','Developmental speech fluency disorder','Y','2025-10-23 00:00:00'),(80398,11,'LB45.2','Developmental ovarian cyst','Y','2025-10-23 00:00:00'),(80397,11,'DA0B.5','Developmental or acquired deformities or conditions of gingiva','Y','2025-10-23 00:00:00'),(80396,11,'DA05.0','Developmental odontogenic cysts','Y','2025-10-23 00:00:00'),(80395,11,'DA05.1','Developmental nonodontogenic cysts of oral region','Y','2025-10-23 00:00:00'),(80394,11,'6A04','Developmental motor coordination disorder','Y','2025-10-23 00:00:00'),(80393,11,'6A03.Z','Developmental learning disorder, unspecified','Y','2025-10-23 00:00:00'),(80392,11,'6A03.3','Developmental learning disorder with other specified impairment of learning','Y','2025-10-23 00:00:00'),(80391,11,'6A03.1','Developmental learning disorder with impairment in written expression','Y','2025-10-23 00:00:00'),(80390,11,'6A03.0','Developmental learning disorder with impairment in reading','Y','2025-10-23 00:00:00'),(80389,11,'6A03.2','Developmental learning disorder with impairment in mathematics','Y','2025-10-23 00:00:00'),(80388,11,'6A03','Developmental learning disorder','Y','2025-10-23 00:00:00'),(80387,11,'6A01.23','Developmental language disorder, with other specified language impairment','Y','2025-10-23 00:00:00'),(80386,11,'6A01.20','Developmental language disorder with impairment of receptive and expressive language','Y','2025-10-23 00:00:00'),(80385,11,'6A01.22','Developmental language disorder with impairment of mainly pragmatic language','Y','2025-10-23 00:00:00'),(80384,11,'6A01.21','Developmental language disorder with impairment of mainly expressive language','Y','2025-10-23 00:00:00'),(80383,11,'6A01.2','Developmental language disorder','Y','2025-10-23 00:00:00'),(80382,11,'9C61.4Z','Developmental glaucoma, unspecified','Y','2025-10-23 00:00:00'),(80381,11,'9C61.4','Developmental glaucoma','Y','2025-10-23 00:00:00'),(80380,11,'LB74.0','Developmental dysplasia of hip','Y','2025-10-23 00:00:00'),(80379,11,'SE30','Developmental delay disorder (TM1)','Y','2025-10-23 00:00:00'),(80378,11,'LC31','Developmental defects of the nail apparatus','Y','2025-10-23 00:00:00'),(80377,11,'LC30','Developmental defects of hair or hair growth','Y','2025-10-23 00:00:00'),(80375,11,'LD9Z','Developmental anomalies, unspecified','Y','2025-10-23 00:00:00'),(80376,11,'LC50','Developmental capillary vascular malformations of the skin','Y','2025-10-23 00:00:00'),(80374,11,'EC50','Developmental anomalies of the umbilicus','Y','2025-10-23 00:00:00'),(80373,11,'LC5Z','Developmental anomalies of cutaneous vasculature, unspecified','Y','2025-10-23 00:00:00'),(80371,11,'XM5UK9','Deutetrabenazine','Y','2025-10-23 00:00:00'),(80372,11,'XY69','Developed after admission','Y','2025-10-23 00:00:00'),(80369,11,'XM0PQ7','Dettol','Y','2025-10-23 00:00:00'),(80370,11,'XM93Q8','Deucravacitinib','Y','2025-10-23 00:00:00'),(80368,11,'XM68B8','Detrothyronine','Y','2025-10-23 00:00:00'),(80367,11,'XM9M46','Detoxifying agent','Y','2025-10-23 00:00:00'),(80366,11,'XM0XA8','Detergent nonmedicinal, not elsewhere classified','Y','2025-10-23 00:00:00'),(80364,11,'XM8K49','Detaxtran','Y','2025-10-23 00:00:00'),(80365,11,'XM1KT1','Detergent external medication','Y','2025-10-23 00:00:00'),(80363,11,'XE2CM','Detachment of device or device component','Y','2025-10-23 00:00:00'),(80362,11,'6D11.1','Detachment in personality disorder or personality difficulty','Y','2025-10-23 00:00:00'),(80361,11,'XE9XY','Detached house','Y','2025-10-23 00:00:00'),(80360,11,'XM3KS5','Desvenlafaxine','Y','2025-10-23 00:00:00'),(80359,11,'JB23.4','Destructive operation for delivery','Y','2025-10-23 00:00:00'),(80358,11,'NE83.0','Destruction or cartilage wear of joint with hemiarthroplasty','Y','2025-10-23 00:00:00'),(80357,11,'CB03.3','Desquamative interstitial pneumonitis','Y','2025-10-23 00:00:00'),(80356,11,'XM9HZ6','Desoxycortone','Y','2025-10-23 00:00:00'),(80355,11,'XM6PJ9','Desoxycorticosteroid','Y','2025-10-23 00:00:00'),(80354,11,'XM5PM3','Desoximetasone','Y','2025-10-23 00:00:00'),(80352,11,'XM45R8','Desomorphine','Y','2025-10-23 00:00:00'),(80353,11,'XM6LZ1','Desonide','Y','2025-10-23 00:00:00'),(80351,11,'XM6Y16','Desogestrel and ethinylestradiol','Y','2025-10-23 00:00:00'),(80349,11,'XM4046','Desocodeine','Y','2025-10-23 00:00:00'),(80350,11,'XM7ZG5','Desogestrel','Y','2025-10-23 00:00:00'),(80348,11,'XM77T2','Desmopressin','Y','2025-10-23 00:00:00'),(80347,11,'XH5SN6','Desmoplastic small round cell tumour','Y','2025-10-23 00:00:00'),(80345,11,'XH1Z15','Desmoplastic melanoma, NOS','Y','2025-10-23 00:00:00'),(80346,11,'XH7PN5','Desmoplastic nodular medulloblastoma','Y','2025-10-23 00:00:00'),(80344,11,'XH1P36','Desmoplastic melanoma, amelanotic','Y','2025-10-23 00:00:00'),(80343,11,'XH6TQ7','Desmoplastic infantile ganglioglioma','Y','2025-10-23 00:00:00'),(80342,11,'XH7M44','Desmoplastic infantile astrocytoma','Y','2025-10-23 00:00:00'),(80341,11,'XH6YK5','Desmoplastic fibroma','Y','2025-10-23 00:00:00'),(80340,11,'XH2ZF3','Desmoplastic fibroblastoma','Y','2025-10-23 00:00:00'),(80338,11,'XM8XH2','Deslanoside','Y','2025-10-23 00:00:00'),(80339,11,'XM2656','Desloratadine','Y','2025-10-23 00:00:00'),(80337,11,'XE2AM','Desk, workbench','Y','2025-10-23 00:00:00'),(80335,11,'XM6FC9','Desipramine','Y','2025-10-23 00:00:00'),(80336,11,'XM84G2','Desirudin','Y','2025-10-23 00:00:00'),(80334,11,'XE6DT','Design error of device identified','Y','2025-10-23 00:00:00'),(80333,11,'XM1C44','Desflurane','Y','2025-10-23 00:00:00'),(80332,11,'XM5QR7','Desfesoterodine','Y','2025-10-23 00:00:00'),(80331,11,'XM5A72','Desert viper snake venom','Y','2025-10-23 00:00:00'),(80330,11,'XE601','Desert','Y','2025-10-23 00:00:00'),(80329,11,'XM7424','Deserpidine','Y','2025-10-23 00:00:00'),(80328,11,'XA1VJ7','Descending','Y','2025-10-23 00:00:00'),(80327,11,'XA55G2','Descending palatine artery','Y','2025-10-23 00:00:00'),(80326,11,'XA3CV5','Descending genicular artery','Y','2025-10-23 00:00:00'),(80325,11,'XA7177','Descending colon and splenic flexure of colon','Y','2025-10-23 00:00:00'),(80324,11,'XA2G13','Descending colon','Y','2025-10-23 00:00:00'),(80323,11,'XA1ES5','Descending branches of the Inferior ulnar collateral artery','Y','2025-10-23 00:00:00'),(80322,11,'XA3R20','Descending branch of the vertebral artery','Y','2025-10-23 00:00:00'),(80321,11,'XA15J8','Descending branch of the Medial femoral circumflex artery','Y','2025-10-23 00:00:00'),(80320,11,'XA6NY6','Descending branch of the left colic artery','Y','2025-10-23 00:00:00'),(80319,11,'XA3SV6','Descending branch of the lateral femoral circumflex artery','Y','2025-10-23 00:00:00'),(80318,11,'BD50.2Z','Descending aorta dissection and distal propagation, unspecified','Y','2025-10-23 00:00:00'),(80317,11,'BD50.22','Descending aorta dissection and distal propagation without mention of perforation or rupture','Y','2025-10-23 00:00:00'),(80316,11,'BD50.21','Descending aorta dissection and distal propagation with rupture','Y','2025-10-23 00:00:00'),(80315,11,'BD50.20','Descending aorta dissection and distal propagation with perforation','Y','2025-10-23 00:00:00'),(80314,11,'BD50.2','Descending aorta dissection and distal propagation','Y','2025-10-23 00:00:00'),(80313,11,'XA5H34','Descending aorta','Y','2025-10-23 00:00:00'),(80312,11,'XA13Z7','Descended testis','Y','2025-10-23 00:00:00'),(80311,11,'XM0399','Desaspidin','Y','2025-10-23 00:00:00'),(80310,11,'XM3KT4','Derris elliptica plant','Y','2025-10-23 00:00:00'),(80308,11,'LC40','Dermoid cyst','Y','2025-10-23 00:00:00'),(80309,11,'XH9F67','Dermoid cyst, NOS','Y','2025-10-23 00:00:00'),(80307,11,'EB01.0','Dermographism','Y','2025-10-23 00:00:00'),(80306,11,'XA1QT7','Dermis','Y','2025-10-23 00:00:00'),(80305,11,'EK91','Dermatoses which may presage cutaneous lymphoma','Y','2025-10-23 00:00:00'),(80304,11,'EH76.1','Dermatoses resulting from immunosuppressive therapy','Y','2025-10-23 00:00:00'),(80303,11,'EB90','Dermatoses resulting from disturbed metabolic processes','Y','2025-10-23 00:00:00'),(80302,11,'EH76.0','Dermatoses resulting from cytotoxic or cancer chemotherapy','Y','2025-10-23 00:00:00'),(80301,11,'EH76.3','Dermatoses resulting from anticoagulant therapy','Y','2025-10-23 00:00:00'),(80300,11,'EH92','Dermatoses provoked by friction or mechanical stress','Y','2025-10-23 00:00:00'),(80299,11,'EH71','Dermatoses precipitated by drug therapy','Y','2025-10-23 00:00:00'),(80298,11,'EH40','Dermatoses of infancy','Y','2025-10-23 00:00:00'),(80297,11,'EF7Z','Dermatoses due to venous disease, unspecified','Y','2025-10-23 00:00:00'),(80296,11,'EJ7Z','Dermatoses due to ionizing radiation, unspecified','Y','2025-10-23 00:00:00'),(80295,11,'EH93','Dermatoses due to foreign bodies','Y','2025-10-23 00:00:00'),(80294,11,'EH76.2','Dermatoses attributable to corticosteroid therapy','Y','2025-10-23 00:00:00'),(80293,11,'EH76','Dermatoses associated with specific classes of medication','Y','2025-10-23 00:00:00'),(80292,11,'1F28.Z','Dermatophytosis, unspecified','Y','2025-10-23 00:00:00'),(80291,11,'1F28.0','Dermatophytosis of scalp','Y','2025-10-23 00:00:00'),(80290,11,'1F28.1','Dermatophytosis of nail','Y','2025-10-23 00:00:00'),(80289,11,'1F28.2','Dermatophytosis of foot','Y','2025-10-23 00:00:00'),(80288,11,'1F28','Dermatophytosis','Y','2025-10-23 00:00:00'),(80287,11,'XN7WW','Dermatophyte fungi','Y','2025-10-23 00:00:00'),(80286,11,'4A41.0Z','Dermatomyositis, unspecified','Y','2025-10-23 00:00:00'),(80285,11,'4A41.0','Dermatomyositis','Y','2025-10-23 00:00:00'),(80284,11,'XH18K3','Dermatomyofibroma','Y','2025-10-23 00:00:00'),(80283,11,'XH4QZ8','Dermatofibrosarcoma protuberans, NOS','Y','2025-10-23 00:00:00'),(80282,11,'XH9V92','Dermatofibrosarcoma protuberans, fibrosarcomatous','Y','2025-10-23 00:00:00'),(80281,11,'XH8B90','Dermatofibroma, NOS','Y','2025-10-23 00:00:00'),(80280,11,'2F23.0','Dermatofibroma','Y','2025-10-23 00:00:00'),(80279,11,'9A03.5','Dermatochalasis of eyelid','Y','2025-10-23 00:00:00'),(80278,11,'EA8Z','Dermatitis or eczema, unspecified','Y','2025-10-23 00:00:00'),(80277,11,'EA87.2','Dermatitis or eczema of perianal area','Y','2025-10-23 00:00:00'),(80276,11,'EA87.0','Dermatitis or eczema of male genitalia','Y','2025-10-23 00:00:00'),(80275,11,'EA85','Dermatitis or eczema of hands and feet','Y','2025-10-23 00:00:00'),(80274,11,'EA87.1','Dermatitis or eczema of female genitalia','Y','2025-10-23 00:00:00'),(80273,11,'9A06.7Z','Dermatitis or eczema of eyelids, type unspecified','Y','2025-10-23 00:00:00'),(80272,11,'9A06.7','Dermatitis or eczema of eyelids','Y','2025-10-23 00:00:00'),(80271,11,'EA87','Dermatitis or eczema of anogenital region','Y','2025-10-23 00:00:00'),(80269,11,'EA85.2','Dermatitis of hands','Y','2025-10-23 00:00:00'),(80270,11,'EA85.2Z','Dermatitis of hands, unspecified','Y','2025-10-23 00:00:00'),(80268,11,'EA85.3','Dermatitis of feet','Y','2025-10-23 00:00:00'),(80267,11,'EB44','Dermatitis herpetiformis','Y','2025-10-23 00:00:00'),(80265,11,'XM2XP4','Dermatan sulfate','Y','2025-10-23 00:00:00'),(80266,11,'EA86','Dermatitis and eczema of lower legs','Y','2025-10-23 00:00:00'),(80264,11,'XN9EL','Dermanyssus','Y','2025-10-23 00:00:00'),(80262,11,'LC10','Dermal melanocytosis','Y','2025-10-23 00:00:00'),(80263,11,'XH2MQ5','Dermal naevus','Y','2025-10-23 00:00:00'),(80260,11,'MB27.1','Derealisation','Y','2025-10-23 00:00:00'),(80261,11,'EE81','Dermal dendrocyte, Class IIa histiocytoses','Y','2025-10-23 00:00:00'),(80259,11,'FA33.2','Derangement of meniscus due to old tear or injury','Y','2025-10-23 00:00:00'),(80257,11,'XM8ZS4','Deptropine','Y','2025-10-23 00:00:00'),(80258,11,'XM8CF0','Dequalinium chloride','Y','2025-10-23 00:00:00'),(80256,11,'XA6WZ3','Depressor labii inferioris tendon','Y','2025-10-23 00:00:00'),(80255,11,'XA60C8','Depressor labii inferioris muscle','Y','2025-10-23 00:00:00'),(80254,11,'XA28X5','Depressor anguli oris tendon','Y','2025-10-23 00:00:00'),(80253,11,'XA04G0','Depressor anguli oris muscle','Y','2025-10-23 00:00:00'),(80252,11,'6A25.2','Depressive mood symptoms in primary psychotic disorders','Y','2025-10-23 00:00:00'),(80251,11,'6A7Z','Depressive disorders, unspecified','Y','2025-10-23 00:00:00'),(80250,11,'SD82','Depression disorder (TM1)','Y','2025-10-23 00:00:00'),(80249,11,'KA45.01','Depressed skull fracture due to birth injury','Y','2025-10-23 00:00:00'),(80248,11,'MB24.5','Depressed mood','Y','2025-10-23 00:00:00'),(80247,11,'XJ9UB','Depressed fracture','Y','2025-10-23 00:00:00'),(80246,11,'DA08.4','Deposits on teeth','Y','2025-10-23 00:00:00'),(80245,11,'XM5W78','Depilatory','Y','2025-10-23 00:00:00'),(80244,11,'6B66','Depersonalization-derealization disorder','Y','2025-10-23 00:00:00'),(80243,11,'MB27.0','Depersonalisation','Y','2025-10-23 00:00:00'),(80242,11,'QE70.2','Dependent relative needing care at home','Y','2025-10-23 00:00:00'),(80241,11,'QB44','Dependence on wheelchair','Y','2025-10-23 00:00:00'),(80240,11,'QB4Z','Dependence on unspecified machine or device','Y','2025-10-23 00:00:00'),(80239,11,'QB41','Dependence on respirator','Y','2025-10-23 00:00:00'),(80237,11,'QB4Y','Dependence on other specified machine or device','Y','2025-10-23 00:00:00'),(80238,11,'QB42','Dependence on renal dialysis','Y','2025-10-23 00:00:00'),(80236,11,'QB40','Dependence on aspirator','Y','2025-10-23 00:00:00'),(80234,11,'XM1819','Deoxyribonuclease','Y','2025-10-23 00:00:00'),(80235,11,'QB43','Dependence on artificial heart','Y','2025-10-23 00:00:00'),(80232,11,'XM8HP9','Deoxycholic acid','Y','2025-10-23 00:00:00'),(80233,11,'XM9SX2','Deoxycortone','Y','2025-10-23 00:00:00'),(80231,11,'XE1B1','Deodorants','Y','2025-10-23 00:00:00'),(80229,11,'DA0E.7','Dentofacial parafunctional disorders','Y','2025-10-23 00:00:00'),(80230,11,'DA01.41','Denture hyperplasia','Y','2025-10-23 00:00:00'),(80228,11,'DA0E.6','Dentofacial functional abnormalities','Y','2025-10-23 00:00:00'),(80226,11,'DA0E','Dentofacial anomalies','Y','2025-10-23 00:00:00'),(80227,11,'DA0E.Z','Dentofacial anomalies, unspecified','Y','2025-10-23 00:00:00'),(80225,11,'XH12N4','Dentinogenic ghost cell tumour','Y','2025-10-23 00:00:00'),(80224,11,'LA30.8','Dentinogenesis imperfecta','Y','2025-10-23 00:00:00'),(80223,11,'LA30.7','Dentine dysplasia','Y','2025-10-23 00:00:00'),(80221,11,'XM3YZ7','Dentifrice','Y','2025-10-23 00:00:00'),(80222,11,'XA6FX3','Dentin','Y','2025-10-23 00:00:00'),(80220,11,'PK80.BZ','Dental procedure associated with injury or harm, unspecified approach','Y','2025-10-23 00:00:00'),(80219,11,'PK80.B1','Dental procedure associated with injury or harm, percutaneous approach','Y','2025-10-23 00:00:00'),(80218,11,'PK80.BY','Dental procedure associated with injury or harm, other specified approach','Y','2025-10-23 00:00:00'),(80217,11,'PK80.B0','Dental procedure associated with injury or harm, open approach','Y','2025-10-23 00:00:00'),(80216,11,'PK80.B2','Dental procedure associated with injury or harm, endoscopic approach','Y','2025-10-23 00:00:00'),(80215,11,'PK80.B','Dental procedure associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(80214,11,'QA00.8','Dental examination','Y','2025-10-23 00:00:00'),(80213,11,'DA08.0','Dental caries','Y','2025-10-23 00:00:00'),(80212,11,'XE5CY','Dental care products','Y','2025-10-23 00:00:00'),(80210,11,'3B62.3','Dense granule disease','Y','2025-10-23 00:00:00'),(80211,11,'XE5NT','Dent in material','Y','2025-10-23 00:00:00'),(80209,11,'XS55','Dense endometriosis','Y','2025-10-23 00:00:00'),(80208,11,'XM2P79','Denosumab','Y','2025-10-23 00:00:00'),(80207,11,'XM6027','Denileukin diftitox','Y','2025-10-23 00:00:00'),(80206,11,'1D20','Dengue without warning signs','Y','2025-10-23 00:00:00'),(80205,11,'1D21','Dengue with warning signs','Y','2025-10-23 00:00:00'),(80204,11,'XN2EQ','Dengue virus 4','Y','2025-10-23 00:00:00'),(80203,11,'XN9XQ','Dengue virus 3','Y','2025-10-23 00:00:00'),(80202,11,'XN4RL','Dengue virus 2','Y','2025-10-23 00:00:00'),(80201,11,'XN22Z','Dengue virus 1','Y','2025-10-23 00:00:00'),(80200,11,'XN4CA','Dengue virus','Y','2025-10-23 00:00:00'),(80199,11,'XM38G7','Dengue vaccines','Y','2025-10-23 00:00:00'),(80198,11,'1D2Z','Dengue fever, unspecified','Y','2025-10-23 00:00:00'),(80197,11,'XH8Q19','Dendritic cell sarcoma, NOS','Y','2025-10-23 00:00:00'),(80196,11,'XM1X30','Dendrid','Y','2025-10-23 00:00:00'),(80195,11,'XM3094','Denatured alcohol','Y','2025-10-23 00:00:00'),(80194,11,'8A45.44','Demyelination due to systemic vasculitis','Y','2025-10-23 00:00:00'),(80193,11,'8A45.41','Demyelination due to systemic lupus erythematosus','Y','2025-10-23 00:00:00'),(80192,11,'8A45.42','Demyelination due to Sj','Y','2025-10-23 00:00:00'),(80191,11,'8A45.40','Demyelination due to sarcoidosis','Y','2025-10-23 00:00:00'),(80190,11,'8A45.45','Demyelination due to mitochondrial disease','Y','2025-10-23 00:00:00'),(80188,11,'XM5PK1','Demulcent (external)','Y','2025-10-23 00:00:00'),(80189,11,'8A45.43','Demyelination due to Behcet disease','Y','2025-10-23 00:00:00'),(80187,11,'XM41G8','Demoxytocin','Y','2025-10-23 00:00:00'),(80186,11,'MB22.2','Demoralization','Y','2025-10-23 00:00:00'),(80185,11,'XE0Z7','Demolition site','Y','2025-10-23 00:00:00'),(80184,11,'XN4RB','Demodex','Y','2025-10-23 00:00:00'),(80183,11,'XM8ZM3','Demeton-S-methyl','Y','2025-10-23 00:00:00'),(80181,11,'XM8LS8','Demeton-O-methyl','Y','2025-10-23 00:00:00'),(80182,11,'XM6UD3','Demeton-S','Y','2025-10-23 00:00:00'),(80180,11,'XM4724','Demeton-O','Y','2025-10-23 00:00:00'),(80179,11,'XM5F29','Demeton','Y','2025-10-23 00:00:00'),(80178,11,'XM7KG3','Demethyltetracycline','Y','2025-10-23 00:00:00'),(80177,11,'XM17F8','Demethylchlortetracycline','Y','2025-10-23 00:00:00'),(80176,11,'XM8KA9','Demephion-S','Y','2025-10-23 00:00:00'),(80175,11,'XM4WK8','Demephion-O','Y','2025-10-23 00:00:00'),(80174,11,'XM6L87','Demephion','Y','2025-10-23 00:00:00'),(80173,11,'6D8Z','Dementia, unknown or unspecified cause','Y','2025-10-23 00:00:00'),(80172,11,'6D8Y','Dementia, other specified cause','Y','2025-10-23 00:00:00'),(80171,11,'6D84.2','Dementia due to use of volatile inhalants','Y','2025-10-23 00:00:00'),(80170,11,'6D84.1','Dementia due to use of sedatives, hypnotics or anxiolytics','Y','2025-10-23 00:00:00'),(80169,11,'6D84.0','Dementia due to use of alcohol','Y','2025-10-23 00:00:00'),(80168,11,'6D84','Dementia due to psychoactive substances including medications','Y','2025-10-23 00:00:00'),(80167,11,'6D85.5','Dementia due to prion disease','Y','2025-10-23 00:00:00'),(80166,11,'6D85.8','Dementia due to pellagra','Y','2025-10-23 00:00:00'),(80165,11,'6D85.0','Dementia due to Parkinson disease','Y','2025-10-23 00:00:00'),(80164,11,'6D84.Y','Dementia due to other specified psychoactive substance','Y','2025-10-23 00:00:00'),(80162,11,'6D85.6','Dementia due to normal pressure hydrocephalus','Y','2025-10-23 00:00:00'),(80163,11,'6D85.Y','Dementia due to other specified diseases classified elsewhere','Y','2025-10-23 00:00:00'),(80161,11,'6D85.4','Dementia due to multiple sclerosis','Y','2025-10-23 00:00:00'),(80160,11,'6D82','Dementia due to Lewy body disease','Y','2025-10-23 00:00:00'),(80159,11,'6D85.7','Dementia due to injury to the head','Y','2025-10-23 00:00:00'),(80158,11,'6D85.1','Dementia due to Huntington disease','Y','2025-10-23 00:00:00'),(80157,11,'6D85.3','Dementia due to human immunodeficiency virus','Y','2025-10-23 00:00:00'),(80156,11,'6D85.2','Dementia due to exposure to heavy metals and other toxins','Y','2025-10-23 00:00:00'),(80155,11,'6D85.9','Dementia due to Down syndrome','Y','2025-10-23 00:00:00'),(80154,11,'6D85','Dementia due to diseases classified elsewhere','Y','2025-10-23 00:00:00'),(80153,11,'6D81','Dementia due to cerebrovascular disease','Y','2025-10-23 00:00:00'),(80152,11,'6D80.Z','Dementia due to Alzheimer disease, onset unknown or unspecified','Y','2025-10-23 00:00:00'),(80151,11,'6D80.1','Dementia due to Alzheimer disease with late onset','Y','2025-10-23 00:00:00'),(80150,11,'6D80.0','Dementia due to Alzheimer disease with early onset','Y','2025-10-23 00:00:00'),(80149,11,'6D80','Dementia due to Alzheimer disease','Y','2025-10-23 00:00:00'),(80147,11,'XM6SD5','Demegestone','Y','2025-10-23 00:00:00'),(80148,11,'SD86','Dementia disorder (TM1)','Y','2025-10-23 00:00:00'),(80146,11,'XM7K70','Demecolcine','Y','2025-10-23 00:00:00'),(80144,11,'XM8S71','Demecarium bromide','Y','2025-10-23 00:00:00'),(80145,11,'XM9219','Demeclocycline','Y','2025-10-23 00:00:00'),(80143,11,'6A24.Z','Delusional disorder, unspecified','Y','2025-10-23 00:00:00'),(80142,11,'6A24.1','Delusional disorder, in partial remission','Y','2025-10-23 00:00:00'),(80141,11,'6A24.2','Delusional disorder, in full remission','Y','2025-10-23 00:00:00'),(80140,11,'6A24.0','Delusional disorder, currently symptomatic','Y','2025-10-23 00:00:00'),(80139,11,'6A24','Delusional disorder','Y','2025-10-23 00:00:00'),(80137,11,'MB26.03','Delusion of reference','Y','2025-10-23 00:00:00'),(80138,11,'MB26.0Z','Delusion, unspecified','Y','2025-10-23 00:00:00'),(80136,11,'MB26.0C','Delusion of impoverishment','Y','2025-10-23 00:00:00'),(80134,11,'MB26.01','Delusion of being controlled','Y','2025-10-23 00:00:00'),(80135,11,'MB26.02','Delusion of guilt','Y','2025-10-23 00:00:00'),(80133,11,'MB26.0','Delusion','Y','2025-10-23 00:00:00'),(80132,11,'XA0942','Deltoid tendon','Y','2025-10-23 00:00:00'),(80131,11,'XA3VN0','Deltoid muscle','Y','2025-10-23 00:00:00'),(80130,11,'XA9YS6','Deltoid ligament','Y','2025-10-23 00:00:00'),(80128,11,'XM3BQ7','Deltamethrin','Y','2025-10-23 00:00:00'),(80129,11,'XN787','Deltaretrovirus','Y','2025-10-23 00:00:00'),(80126,11,'XM8YH8','Delphinium plant','Y','2025-10-23 00:00:00'),(80127,11,'3A50.3','Delta, delta-beta or gamma-delta-beta thalassaemia','Y','2025-10-23 00:00:00'),(80124,11,'JB2Z','Delivery, unspecified','Y','2025-10-23 00:00:00'),(80125,11,'XM0GD3','Delorazepam','Y','2025-10-23 00:00:00'),(80123,11,'JB23.3','Delivery of viable fetus in abdominal pregnancy','Y','2025-10-23 00:00:00'),(80121,11,'JB22.0','Delivery by elective caesarean section','Y','2025-10-23 00:00:00'),(80122,11,'JB22.1','Delivery by emergency caesarean section','Y','2025-10-23 00:00:00'),(80120,11,'XY8Q','Delivered, with mention of postpartum condition','Y','2025-10-23 00:00:00'),(80119,11,'XY3K','Delivered with or without mention of antepartum condition','Y','2025-10-23 00:00:00'),(80118,11,'XE78P','Delivered as unsterile product','Y','2025-10-23 00:00:00'),(80117,11,'6D70.Z','Delirium, unspecified or unknown cause','Y','2025-10-23 00:00:00'),(80116,11,'6D70.Y','Delirium, other specified cause','Y','2025-10-23 00:00:00'),(80115,11,'6C4G.5','Delirium induced by unknown or unspecified psychoactive substance','Y','2025-10-23 00:00:00'),(80114,11,'6C4E.5','Delirium induced by other specified psychoactive substance including medications','Y','2025-10-23 00:00:00'),(80113,11,'6C4F.5','Delirium induced by multiple specified psychoactive substances including medications','Y','2025-10-23 00:00:00'),(80112,11,'6D70.1','Delirium due to psychoactive substances including medications','Y','2025-10-23 00:00:00'),(80110,11,'6D70.0','Delirium due to disease classified elsewhere','Y','2025-10-23 00:00:00'),(80111,11,'6D70.2','Delirium due to multiple etiological factors','Y','2025-10-23 00:00:00'),(80108,11,'LD44.P','Deletions with other complex rearrangements','Y','2025-10-23 00:00:00'),(80109,11,'6D70','Delirium','Y','2025-10-23 00:00:00'),(80107,11,'LD44.91','Deletions of the short arm of chromosome 9','Y','2025-10-23 00:00:00'),(80106,11,'LD44.81','Deletions of the short arm of chromosome 8','Y','2025-10-23 00:00:00'),(80105,11,'LD44.71','Deletions of the short arm of chromosome 7','Y','2025-10-23 00:00:00'),(80104,11,'LD44.61','Deletions of the short arm of chromosome 6','Y','2025-10-23 00:00:00'),(80103,11,'LD44.51','Deletions of the short arm of chromosome 5','Y','2025-10-23 00:00:00'),(80102,11,'LD44.41','Deletions of the short arm of chromosome 4','Y','2025-10-23 00:00:00'),(80101,11,'LD44.31','Deletions of the short arm of chromosome 3','Y','2025-10-23 00:00:00'),(80100,11,'LD44.L1','Deletions of the short arm of chromosome 20','Y','2025-10-23 00:00:00'),(80099,11,'LD44.21','Deletions of the short arm of chromosome 2','Y','2025-10-23 00:00:00'),(80098,11,'LD44.K1','Deletions of the short arm of chromosome 19','Y','2025-10-23 00:00:00'),(80097,11,'LD44.J1','Deletions of the short arm of chromosome 18','Y','2025-10-23 00:00:00'),(80096,11,'LD44.H1','Deletions of the short arm of chromosome 17','Y','2025-10-23 00:00:00'),(80095,11,'LD44.G1','Deletions of the short arm of chromosome 16','Y','2025-10-23 00:00:00'),(80094,11,'LD44.C1','Deletions of the short arm of chromosome 12','Y','2025-10-23 00:00:00'),(80093,11,'LD44.B1','Deletions of the short arm of chromosome 11','Y','2025-10-23 00:00:00'),(80091,11,'LD44.11','Deletions of the short arm of chromosome 1','Y','2025-10-23 00:00:00'),(80092,11,'LD44.A1','Deletions of the short arm of chromosome 10','Y','2025-10-23 00:00:00'),(80090,11,'LD44.90','Deletions of the long arm of chromosome 9','Y','2025-10-23 00:00:00'),(80089,11,'LD44.80','Deletions of the long arm of chromosome 8','Y','2025-10-23 00:00:00'),(80088,11,'LD44.70','Deletions of the long arm of chromosome 7','Y','2025-10-23 00:00:00'),(80087,11,'LD44.60','Deletions of the long arm of chromosome 6','Y','2025-10-23 00:00:00'),(80086,11,'LD44.50','Deletions of the long arm of chromosome 5','Y','2025-10-23 00:00:00'),(80085,11,'LD44.40','Deletions of the long arm of chromosome 4','Y','2025-10-23 00:00:00'),(80084,11,'LD44.30','Deletions of the long arm of chromosome 3','Y','2025-10-23 00:00:00'),(80083,11,'LD44.L0','Deletions of the long arm of chromosome 20','Y','2025-10-23 00:00:00'),(80082,11,'LD44.20','Deletions of the long arm of chromosome 2','Y','2025-10-23 00:00:00'),(80081,11,'LD44.K0','Deletions of the long arm of chromosome 19','Y','2025-10-23 00:00:00'),(80080,11,'LD44.J0','Deletions of the long arm of chromosome 18','Y','2025-10-23 00:00:00'),(80079,11,'LD44.H0','Deletions of the long arm of chromosome 17','Y','2025-10-23 00:00:00'),(80077,11,'LD44.C0','Deletions of the long arm of chromosome 12','Y','2025-10-23 00:00:00'),(80078,11,'LD44.G0','Deletions of the long arm of chromosome 16','Y','2025-10-23 00:00:00'),(80075,11,'LD44.A0','Deletions of the long arm of chromosome 10','Y','2025-10-23 00:00:00'),(80076,11,'LD44.B0','Deletions of the long arm of chromosome 11','Y','2025-10-23 00:00:00'),(80074,11,'LD44.10','Deletions of the long arm of chromosome 1','Y','2025-10-23 00:00:00'),(80073,11,'LD44.Z','Deletions of the autosomes, unspecified','Y','2025-10-23 00:00:00'),(80072,11,'LD44','Deletions of the autosomes','Y','2025-10-23 00:00:00'),(80071,11,'LD44.9Z','Deletions of chromosome 9, unspecified','Y','2025-10-23 00:00:00'),(80069,11,'LD44.8Z','Deletions of chromosome 8, unspecified','Y','2025-10-23 00:00:00'),(80070,11,'LD44.9','Deletions of chromosome 9','Y','2025-10-23 00:00:00'),(80067,11,'LD44.7Z','Deletions of chromosome 7, unspecified','Y','2025-10-23 00:00:00'),(80068,11,'LD44.8','Deletions of chromosome 8','Y','2025-10-23 00:00:00'),(80065,11,'LD44.6Z','Deletions of chromosome 6, unspecified','Y','2025-10-23 00:00:00'),(80066,11,'LD44.7','Deletions of chromosome 7','Y','2025-10-23 00:00:00'),(80063,11,'LD44.5Z','Deletions of chromosome 5, unspecified','Y','2025-10-23 00:00:00'),(80064,11,'LD44.6','Deletions of chromosome 6','Y','2025-10-23 00:00:00'),(80062,11,'LD44.5','Deletions of chromosome 5','Y','2025-10-23 00:00:00'),(80060,11,'LD44.4','Deletions of chromosome 4','Y','2025-10-23 00:00:00'),(80061,11,'LD44.4Z','Deletions of chromosome 4, unspecified','Y','2025-10-23 00:00:00'),(80059,11,'LD44.3Z','Deletions of chromosome 3, unspecified','Y','2025-10-23 00:00:00'),(80058,11,'LD44.3','Deletions of chromosome 3','Y','2025-10-23 00:00:00'),(80057,11,'LD44.NZ','Deletions of chromosome 22, unspecified','Y','2025-10-23 00:00:00'),(80056,11,'LD44.N','Deletions of chromosome 22','Y','2025-10-23 00:00:00'),(80055,11,'LD44.M','Deletions of chromosome 21','Y','2025-10-23 00:00:00'),(80054,11,'LD44.LZ','Deletions of chromosome 20, unspecified','Y','2025-10-23 00:00:00'),(80053,11,'LD44.L','Deletions of chromosome 20','Y','2025-10-23 00:00:00'),(80052,11,'LD44.2Z','Deletions of chromosome 2, unspecified','Y','2025-10-23 00:00:00'),(80051,11,'LD44.2','Deletions of chromosome 2','Y','2025-10-23 00:00:00'),(80050,11,'LD44.KZ','Deletions of chromosome 19, unspecified','Y','2025-10-23 00:00:00'),(80049,11,'LD44.K','Deletions of chromosome 19','Y','2025-10-23 00:00:00'),(80048,11,'LD44.JZ','Deletions of chromosome 18, unspecified','Y','2025-10-23 00:00:00'),(80047,11,'LD44.J','Deletions of chromosome 18','Y','2025-10-23 00:00:00'),(80046,11,'LD44.HZ','Deletions of chromosome 17, unspecified','Y','2025-10-23 00:00:00'),(80045,11,'LD44.H','Deletions of chromosome 17','Y','2025-10-23 00:00:00'),(80044,11,'LD44.GZ','Deletions of chromosome 16, unspecified','Y','2025-10-23 00:00:00'),(80043,11,'LD44.G','Deletions of chromosome 16','Y','2025-10-23 00:00:00'),(80042,11,'LD44.F','Deletions of chromosome 15','Y','2025-10-23 00:00:00'),(80041,11,'LD44.E','Deletions of chromosome 14','Y','2025-10-23 00:00:00'),(80040,11,'LD44.D','Deletions of chromosome 13','Y','2025-10-23 00:00:00'),(80039,11,'LD44.CZ','Deletions of chromosome 12, unspecified','Y','2025-10-23 00:00:00'),(80038,11,'LD44.C','Deletions of chromosome 12','Y','2025-10-23 00:00:00'),(80037,11,'LD44.BZ','Deletions of chromosome 11, unspecified','Y','2025-10-23 00:00:00'),(80036,11,'LD44.B','Deletions of chromosome 11','Y','2025-10-23 00:00:00'),(80035,11,'LD44.AZ','Deletions of chromosome 10, unspecified','Y','2025-10-23 00:00:00'),(80034,11,'LD44.A','Deletions of chromosome 10','Y','2025-10-23 00:00:00'),(80033,11,'LD44.1Z','Deletions of chromosome 1, unspecified','Y','2025-10-23 00:00:00'),(80032,11,'LD44.1','Deletions of chromosome 1','Y','2025-10-23 00:00:00'),(80031,11,'FB80.9','Delayed union of fracture','Y','2025-10-23 00:00:00'),(80030,11,'QA8B','Delayed treatment without injury or harm','Y','2025-10-23 00:00:00'),(80029,11,'PL14.B','Delayed treatment','Y','2025-10-23 00:00:00'),(80028,11,'7A60','Delayed sleep-wake phase disorder','Y','2025-10-23 00:00:00'),(80027,11,'KC20.0','Delayed separation of umbilical cord','Y','2025-10-23 00:00:00'),(80026,11,'5A91','Delayed puberty','Y','2025-10-23 00:00:00'),(80025,11,'XE87N','Delayed program or algorithm execution','Y','2025-10-23 00:00:00'),(80024,11,'EB01.2','Delayed pressure urticaria','Y','2025-10-23 00:00:00'),(80023,11,'JA43.2','Delayed or secondary postpartum haemorrhage','Y','2025-10-23 00:00:00'),(80022,11,'JA05.1','Delayed or excessive haemorrhage following abortion, ectopic or molar pregnancy','Y','2025-10-23 00:00:00'),(80021,11,'XT64','Delayed onset','Y','2025-10-23 00:00:00'),(80020,11,'MG44.10','Delayed milestone','Y','2025-10-23 00:00:00'),(80019,11,'SB81','Delayed menstruation disorder (TM1)','Y','2025-10-23 00:00:00'),(80018,11,'QA8A','Delayed diagnosis without injury or harm','Y','2025-10-23 00:00:00'),(80017,11,'PL14.A','Delayed diagnosis','Y','2025-10-23 00:00:00'),(80016,11,'JB03.2','Delayed delivery of successive neonates','Y','2025-10-23 00:00:00'),(80015,11,'JB0D.5','Delayed delivery after spontaneous or unspecified rupture of membranes','Y','2025-10-23 00:00:00'),(80014,11,'JB0D.4','Delayed delivery after artificial rupture of membranes','Y','2025-10-23 00:00:00'),(80013,11,'XE67U','Delayed charge time','Y','2025-10-23 00:00:00'),(80012,11,'XE3QU','Delayed alarm','Y','2025-10-23 00:00:00'),(80011,11,'XM0LC3','Delavirdine','Y','2025-10-23 00:00:00'),(80010,11,'XM3DT0','Delapril','Y','2025-10-23 00:00:00'),(80009,11,'XM1FD5','Delamanid','Y','2025-10-23 00:00:00'),(80008,11,'XM4DR7','Delalutin','Y','2025-10-23 00:00:00'),(80007,11,'XM9CC7','Delafloxacin','Y','2025-10-23 00:00:00'),(80006,11,'XM28N6','Dehydroemetine','Y','2025-10-23 00:00:00'),(80005,11,'XM00U8','Dehydrocholic acid','Y','2025-10-23 00:00:00'),(80004,11,'KB63.1','Dehydration of newborn','Y','2025-10-23 00:00:00'),(80003,11,'5C70.0','Dehydration','Y','2025-10-23 00:00:00'),(80002,11,'XE0HB','Degraded','Y','2025-10-23 00:00:00'),(80001,11,'XE2H0','Degradation problem identified with device','Y','2025-10-23 00:00:00'),(80000,11,'XM68U4','Deglycyrrhizinized extract of liquorice','Y','2025-10-23 00:00:00'),(79999,11,'AB71','Degenerative or vascular disorders of ear','Y','2025-10-23 00:00:00'),(79998,11,'8B44.Z','Degenerative myelopathic disorders, unspecified','Y','2025-10-23 00:00:00'),(79997,11,'8B44','Degenerative myelopathic disorders','Y','2025-10-23 00:00:00'),(79996,11,'BB62.1','Degenerative mitral valve prolapse','Y','2025-10-23 00:00:00'),(79995,11,'9B76','Degenerative high myopia','Y','2025-10-23 00:00:00'),(79994,11,'FA8Z','Degenerative condition of spine, unspecified','Y','2025-10-23 00:00:00'),(79993,11,'9B78.3Z','Degeneration of macula or posterior pole, unspecified','Y','2025-10-23 00:00:00'),(79992,11,'9B78.3','Degeneration of macula or posterior pole','Y','2025-10-23 00:00:00'),(79991,11,'9A90.Z','Degeneration of iris or ciliary body, unspecified','Y','2025-10-23 00:00:00'),(79990,11,'9A90','Degeneration of iris or ciliary body','Y','2025-10-23 00:00:00'),(79989,11,'9A90.1','Degeneration of iris','Y','2025-10-23 00:00:00'),(79988,11,'XH75P8','Degenerated schwannoma','Y','2025-10-23 00:00:00'),(79987,11,'XM8292','Degarelix','Y','2025-10-23 00:00:00'),(79986,11,'DA50.3','Deformity of duodenum, acquired','Y','2025-10-23 00:00:00'),(79985,11,'XE0WG','Deformation problem with device identified','Y','2025-10-23 00:00:00'),(79984,11,'LB72.2','Deformation of scapula','Y','2025-10-23 00:00:00'),(79983,11,'XE0JB','Deformation due to compressive stress','Y','2025-10-23 00:00:00'),(79982,11,'XM5CF7','Deflazacort','Y','2025-10-23 00:00:00'),(79981,11,'XE4VT','Deflation problem','Y','2025-10-23 00:00:00'),(79980,11,'SE75','Deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(79979,11,'SF65','Deficiency of heart qi and yin pattern (TM1)','Y','2025-10-23 00:00:00'),(79978,11,'XM2JQ1','Defibrotide','Y','2025-10-23 00:00:00'),(79977,11,'XE440','Defibrillation problem','Y','2025-10-23 00:00:00'),(79976,11,'XM5A41','Deferoxamine','Y','2025-10-23 00:00:00'),(79975,11,'XM03A5','Deferiprone','Y','2025-10-23 00:00:00'),(79974,11,'XA27B8','Deferential artery','Y','2025-10-23 00:00:00'),(79973,11,'XM12X8','Deferasirox','Y','2025-10-23 00:00:00'),(79972,11,'SG8Z','Defense phase patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(79971,11,'4A00.1Z','Defects in the complement system, unspecified','Y','2025-10-23 00:00:00'),(79970,11,'4A00.1','Defects in the complement system','Y','2025-10-23 00:00:00'),(79969,11,'XE9CD','Defective device','Y','2025-10-23 00:00:00'),(79967,11,'XE3UE','Defective alarm','Y','2025-10-23 00:00:00'),(79968,11,'XE1K1','Defective component','Y','2025-10-23 00:00:00'),(79966,11,'XM12C2','DEET','Y','2025-10-23 00:00:00'),(79964,11,'XM77E1','Deer tick venom','Y','2025-10-23 00:00:00'),(79965,11,'XE1MH','Deer, moose, antelope, zebra, wildebeest','Y','2025-10-23 00:00:00'),(79963,11,'XA7902','Deep volar venous arch','Y','2025-10-23 00:00:00'),(79962,11,'XA1VB5','Deep volar branch of ulnar artery','Y','2025-10-23 00:00:00'),(79961,11,'BD71','Deep vein thrombosis','Y','2025-10-23 00:00:00'),(79959,11,'XA2TD5','Deep transverse perinei tendon','Y','2025-10-23 00:00:00'),(79960,11,'XA7U63','Deep vein of the penis','Y','2025-10-23 00:00:00'),(79958,11,'XA2LG6','Deep transverse perinei muscle','Y','2025-10-23 00:00:00'),(79957,11,'XA1LU7','Deep temporal vein','Y','2025-10-23 00:00:00'),(79956,11,'XA52H1','Deep temporal nerve','Y','2025-10-23 00:00:00'),(79954,11,'XA6EE2','Deep subinguinal lymph nodes','Y','2025-10-23 00:00:00'),(79955,11,'XA0BD0','Deep temporal artery','Y','2025-10-23 00:00:00'),(79953,11,'2E80.01','Deep subfascial lipoma','Y','2025-10-23 00:00:00'),(79952,11,'XA30B2','Deep posterior temporal vein','Y','2025-10-23 00:00:00'),(79951,11,'XA8RN9','Deep plantar venous arch','Y','2025-10-23 00:00:00'),(79950,11,'JB41.1','Deep phlebothrombosis in the puerperium','Y','2025-10-23 00:00:00'),(79949,11,'JA61.3','Deep phlebothrombosis in pregnancy','Y','2025-10-23 00:00:00'),(79948,11,'XA9CT5','Deep petrosal nerve','Y','2025-10-23 00:00:00'),(79947,11,'XH81Y1','Deep penetrating naevus','Y','2025-10-23 00:00:00'),(79946,11,'XA07P4','Deep parotid lymph node','Y','2025-10-23 00:00:00'),(79944,11,'GA10.B5','Deep ovarian endometriosis','Y','2025-10-23 00:00:00'),(79945,11,'XA3M37','Deep palmar arch of the radial artery','Y','2025-10-23 00:00:00'),(79943,11,'SB60','Deep multiple abscess disorder (TM1)','Y','2025-10-23 00:00:00'),(79942,11,'XA1MX7','Deep middle cerebral vein','Y','2025-10-23 00:00:00'),(79941,11,'XA1VK9','Deep lymphatic vessel of the thoracic wall','Y','2025-10-23 00:00:00'),(79939,11,'2E80.02','Deep internal or visceral lipoma','Y','2025-10-23 00:00:00'),(79940,11,'XA05S0','Deep lymphatic vessel','Y','2025-10-23 00:00:00'),(79938,11,'NE81.21','Deep incisional site infection','Y','2025-10-23 00:00:00'),(79937,11,'XA3H93','Deep iliac circumflex vein','Y','2025-10-23 00:00:00'),(79935,11,'8B00.0','Deep hemispheric haemorrhage','Y','2025-10-23 00:00:00'),(79936,11,'XH5DP4','Deep histiocytoma','Y','2025-10-23 00:00:00'),(79934,11,'XJ71T','Deep full thickness or complex burn with no loss of limb','Y','2025-10-23 00:00:00'),(79933,11,'XJ36Y','Deep full thickness or complex burn with loss of limb','Y','2025-10-23 00:00:00'),(79932,11,'XJ6NX','Deep full thickness or complex burn with loss of digit','Y','2025-10-23 00:00:00'),(79931,11,'XA3QB5','Deep fibular nerve','Y','2025-10-23 00:00:00'),(79930,11,'XA3E41','Deep Femoral Vein','Y','2025-10-23 00:00:00'),(79928,11,'XA2681','Deep facial vein','Y','2025-10-23 00:00:00'),(79929,11,'XA3KL5','Deep femoral artery','Y','2025-10-23 00:00:00'),(79927,11,'XA2S79','Deep facial lymph node','Y','2025-10-23 00:00:00'),(79926,11,'XA1ET7','Deep external pudendal vein','Y','2025-10-23 00:00:00'),(79925,11,'XA4AP3','Deep external pudendal artery','Y','2025-10-23 00:00:00'),(79924,11,'XA03F7','Deep dorsal vein of the penis','Y','2025-10-23 00:00:00'),(79923,11,'XA9MJ1','Deep circumflex iliac artery','Y','2025-10-23 00:00:00'),(79922,11,'XA9U81','Deep cervical vein','Y','2025-10-23 00:00:00'),(79921,11,'XA9PW0','Deep cervical lymph node','Y','2025-10-23 00:00:00'),(79920,11,'XA1NY7','Deep cervical artery','Y','2025-10-23 00:00:00'),(79919,11,'1D03.30','Deep cerebral hemispheric abscess','Y','2025-10-23 00:00:00'),(79918,11,'XA8BL5','Deep branch of the supraorbital artery','Y','2025-10-23 00:00:00'),(79917,11,'XA14N2','Deep branch of the superior gluteal artery','Y','2025-10-23 00:00:00'),(79916,11,'XA85T4','Deep branch of the submental artery','Y','2025-10-23 00:00:00'),(79915,11,'XA5179','Deep branch of the radial nerve','Y','2025-10-23 00:00:00'),(79914,11,'XA19F5','Deep branch of the lateral superior genicular artery','Y','2025-10-23 00:00:00'),(79913,11,'XA7DF6','Deep branch of the descending branch of the Medial femoral circumflex artery','Y','2025-10-23 00:00:00'),(79912,11,'XA3M86','Deep branch of dorsal scapular artery','Y','2025-10-23 00:00:00'),(79911,11,'1B75','Deep bacterial folliculitis or pyogenic abscess of the skin','Y','2025-10-23 00:00:00'),(79910,11,'XA7SK1','Deep auricular artery','Y','2025-10-23 00:00:00'),(79909,11,'XA7AM0','Deep artery of penis','Y','2025-10-23 00:00:00'),(79908,11,'XA4XP0','Deep artery of clitoris','Y','2025-10-23 00:00:00'),(79907,11,'XA1GE4','Deep anterior temporal vein','Y','2025-10-23 00:00:00'),(79906,11,'XH4V74','Deep angiomyxoma','Y','2025-10-23 00:00:00'),(79905,11,'XK16','Deep','Y','2025-10-23 00:00:00'),(79904,11,'XH1C03','Dedifferentiated liposarcoma','Y','2025-10-23 00:00:00'),(79903,11,'XH7303','Dedifferentiated chordoma','Y','2025-10-23 00:00:00'),(79902,11,'XH6E77','Dedifferentiated chondrosarcoma','Y','2025-10-23 00:00:00'),(79901,11,'XH5R16','Dedifferentiated carcinoma','Y','2025-10-23 00:00:00'),(79900,11,'MA16.10','Decreased white blood cell count','Y','2025-10-23 00:00:00'),(79899,11,'XE6SM','Decreased sensitivity','Y','2025-10-23 00:00:00'),(79898,11,'XE64X','Decreased pump speed','Y','2025-10-23 00:00:00'),(79897,11,'SB91','Decreased menstruation disorder (TM1)','Y','2025-10-23 00:00:00'),(79896,11,'MB22.1','Decreased libido','Y','2025-10-23 00:00:00'),(79895,11,'MG43.8','Decreased appetite','Y','2025-10-23 00:00:00'),(79894,11,'XE3Y3','Decrease in suction','Y','2025-10-23 00:00:00'),(79893,11,'XE3XR','Decrease in pressure','Y','2025-10-23 00:00:00'),(79892,11,'XE74X','Decoupling','Y','2025-10-23 00:00:00'),(79891,11,'XE7MK','Decoration, decorating item','Y','2025-10-23 00:00:00'),(79890,11,'XM1458','Decitabine','Y','2025-10-23 00:00:00'),(79889,11,'XA7675','Deciduous dentition','Y','2025-10-23 00:00:00'),(79887,11,'XM53J8','Decamethoxine','Y','2025-10-23 00:00:00'),(79888,11,'XM73B3','Decamethrin','Y','2025-10-23 00:00:00'),(79886,11,'XM7DG2','Decamethonium bromide','Y','2025-10-23 00:00:00'),(79885,11,'XM4DT3','Decahydronaphthalene','Y','2025-10-23 00:00:00'),(79884,11,'XM74T0','Decaborane fumes','Y','2025-10-23 00:00:00'),(79883,11,'XM5JW5','Decaborane','Y','2025-10-23 00:00:00'),(79882,11,'XM4L51','Debrisoquine','Y','2025-10-23 00:00:00'),(79881,11,'XM0E23','Death stalker scorpion venom','Y','2025-10-23 00:00:00'),(79880,11,'XE3GP','Death of a relative, partner, or friend','Y','2025-10-23 00:00:00'),(79879,11,'MH12.1','Death occurring less than 24 hours from onset of symptoms, not otherwise explained','Y','2025-10-23 00:00:00'),(79878,11,'JB62.Z','Death from sequelae of obstetric causes, unspecified','Y','2025-10-23 00:00:00'),(79877,11,'JB62','Death from sequelae of obstetric causes','Y','2025-10-23 00:00:00'),(79876,11,'JB62.1','Death from sequelae of indirect obstetric cause','Y','2025-10-23 00:00:00'),(79875,11,'JB62.0','Death from sequelae of direct obstetric cause','Y','2025-10-23 00:00:00'),(79874,11,'JB61','Death from any obstetric cause occurring more than 42 days but less than one year after delivery','Y','2025-10-23 00:00:00'),(79873,11,'XM8DE0','Death adder snake venom','Y','2025-10-23 00:00:00'),(79872,11,'XM45U3','Deanol aceglumate','Y','2025-10-23 00:00:00'),(79871,11,'XM3HZ4','Deanol','Y','2025-10-23 00:00:00'),(79870,11,'AB52','Deafness not otherwise specified','Y','2025-10-23 00:00:00'),(79869,11,'SC8Z','Deafness disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(79868,11,'XM9EL1','DDT','Y','2025-10-23 00:00:00'),(79866,11,'XM0031','Daunorubicin','Y','2025-10-23 00:00:00'),(79867,11,'XM1UT2','DDE [dichlorodiphenyldichloroethylene]','Y','2025-10-23 00:00:00'),(79865,11,'XM8VJ2','Datura stramonium plant','Y','2025-10-23 00:00:00'),(79864,11,'XE048','Date or time related software problem','Y','2025-10-23 00:00:00'),(79863,11,'XE2A7','Data storage or loss of data problem in device identfied','Y','2025-10-23 00:00:00'),(79862,11,'XE99Y','Data problem','Y','2025-10-23 00:00:00'),(79861,11,'XC85','Data not available','Y','2025-10-23 00:00:00'),(79859,11,'XE2ZM','Data back-up problem','Y','2025-10-23 00:00:00'),(79860,11,'XE006','Data compression error in device identified','Y','2025-10-23 00:00:00'),(79858,11,'XM9BT1','Dasiprotimut-T','Y','2025-10-23 00:00:00'),(79857,11,'XM50U1','Dasatinib','Y','2025-10-23 00:00:00'),(79856,11,'XM4R75','Dasabuvir, Ombitasvir, Paritaprevir and Ritonavir','Y','2025-10-23 00:00:00'),(79855,11,'XM34X5','Dasabuvir','Y','2025-10-23 00:00:00'),(79854,11,'XM3YJ4','Darvon','Y','2025-10-23 00:00:00'),(79853,11,'XM0LG0','Darvadstrocel','Y','2025-10-23 00:00:00'),(79851,11,'XM1FA4','Darunavir and Cobicistat','Y','2025-10-23 00:00:00'),(79852,11,'XM8ZN1','Darunavir and Ritonavir','Y','2025-10-23 00:00:00'),(79850,11,'XM63Q8','Darunavir','Y','2025-10-23 00:00:00'),(79848,11,'XA8HG2','Dartos muscle','Y','2025-10-23 00:00:00'),(79849,11,'XA2BV5','Dartos tendon','Y','2025-10-23 00:00:00'),(79846,11,'XM1N89','Darifenacin','Y','2025-10-23 00:00:00'),(79847,11,'XM3FZ0','Darolutamide','Y','2025-10-23 00:00:00'),(79844,11,'XM4ES5','Daratumumab','Y','2025-10-23 00:00:00'),(79845,11,'XM7M42','Darbepoetin alfa','Y','2025-10-23 00:00:00'),(79843,11,'XM9511','Daraprim','Y','2025-10-23 00:00:00'),(79842,11,'XM2NL4','Daptomycin','Y','2025-10-23 00:00:00'),(79841,11,'XM73W4','Dapsone','Y','2025-10-23 00:00:00'),(79840,11,'XM27M4','Daprodustat','Y','2025-10-23 00:00:00'),(79839,11,'XM8BX6','Dapoxetine','Y','2025-10-23 00:00:00'),(79837,11,'XM4TF9','Daphne plant','Y','2025-10-23 00:00:00'),(79838,11,'XM6PD6','Dapiprazole','Y','2025-10-23 00:00:00'),(79835,11,'XM86Q2','Dantron','Y','2025-10-23 00:00:00'),(79836,11,'XM97T4','Dapagliflozin','Y','2025-10-23 00:00:00'),(79834,11,'XM5ZN8','Dantrolene','Y','2025-10-23 00:00:00'),(79832,11,'XM0FW7','Danazol','Y','2025-10-23 00:00:00'),(79833,11,'LA06.0','Dandy-Walker malformation','Y','2025-10-23 00:00:00'),(79831,11,'XM2YJ7','Danaparoid','Y','2025-10-23 00:00:00'),(79830,11,'SF9B','Dampness-heat in the uterus pattern (TM1)','Y','2025-10-23 00:00:00'),(79829,11,'SF78','Dampness-heat encumbering the spleen system pattern (TM1)','Y','2025-10-23 00:00:00'),(79828,11,'SB30','Dampness sore disorder (TM1)','Y','2025-10-23 00:00:00'),(79827,11,'SG92','Dampness obstructing the qi phase pattern (TM1)','Y','2025-10-23 00:00:00'),(79826,11,'SG80','Dampness obstructing the defense yang pattern (TM1)','Y','2025-10-23 00:00:00'),(79825,11,'SF7G','Dampness in the intestines pattern (TM1)','Y','2025-10-23 00:00:00'),(79824,11,'SC52','Dampness impediment disorder (TM1)','Y','2025-10-23 00:00:00'),(79823,11,'SE82','Dampness factor pattern (TM1)','Y','2025-10-23 00:00:00'),(79822,11,'SE02','Dampness and warmth disorder (TM1)','Y','2025-10-23 00:00:00'),(79821,11,'SF13','Damp phlegm pattern (TM1)','Y','2025-10-23 00:00:00'),(79820,11,'JA05.6','Damage to pelvic organs and tissues following abortion, ectopic or molar pregnancy','Y','2025-10-23 00:00:00'),(79819,11,'XM3DU0','Dalteparin','Y','2025-10-23 00:00:00'),(79818,11,'XM2YS9','Dalfopristin','Y','2025-10-23 00:00:00'),(79817,11,'XM4F99','Dalbavancin','Y','2025-10-23 00:00:00'),(79816,11,'XM3KU8','Dalapon','Y','2025-10-23 00:00:00'),(79815,11,'XM7YY8','Dakin\'s solution','Y','2025-10-23 00:00:00'),(79814,11,'XE6VH','Dairy or milking plant','Y','2025-10-23 00:00:00'),(79813,11,'XM7L47','Dactinomycin','Y','2025-10-23 00:00:00'),(79811,11,'9A11.2','Dacryocystitis','Y','2025-10-23 00:00:00'),(79812,11,'9A11.6','Dacryolith','Y','2025-10-23 00:00:00'),(79809,11,'XM3CD8','Daclizumab','Y','2025-10-23 00:00:00'),(79810,11,'XM15D6','Dacomitinib','Y','2025-10-23 00:00:00'),(79808,11,'XM10G0','Daclatasvir, Asunaprevir and Beclabuvir','Y','2025-10-23 00:00:00'),(79807,11,'XM41F6','Daclatasvir','Y','2025-10-23 00:00:00'),(79806,11,'XM32Y8','Dacarbazine','Y','2025-10-23 00:00:00'),(79805,11,'XM1HB8','Dabrafenib','Y','2025-10-23 00:00:00'),(79804,11,'XM16E4','Dabigatran etexilate','Y','2025-10-23 00:00:00'),(79803,11,'XA5SR3','D3 third diagonal branch','Y','2025-10-23 00:00:00'),(79802,11,'XA86J1','D2 second diagonal branch','Y','2025-10-23 00:00:00'),(79801,11,'XA20E5','D1 first diagonal branch','Y','2025-10-23 00:00:00'),(79800,11,'XS4Z','D Distant disease','Y','2025-10-23 00:00:00'),(79799,11,'XM8MM4','Cytozyme','Y','2025-10-23 00:00:00'),(79798,11,'XE2RY','Cytotoxicity problem with device identified','Y','2025-10-23 00:00:00'),(79797,11,'XM4DQ7','Cytotoxic antibiotics and related substances','Y','2025-10-23 00:00:00'),(79796,11,'XM7NM9','Cytomegalovirus immunoglobulin','Y','2025-10-23 00:00:00'),(79795,11,'XN3SQ','Cytomegalovirus','Y','2025-10-23 00:00:00'),(79793,11,'1D82.1','Cytomegaloviral pancreatitis','Y','2025-10-23 00:00:00'),(79794,11,'9B72.00','Cytomegaloviral retinitis','Y','2025-10-23 00:00:00'),(79792,11,'1D82.0','Cytomegaloviral hepatitis','Y','2025-10-23 00:00:00'),(79791,11,'1D82.Z','Cytomegaloviral disease, unspecified','Y','2025-10-23 00:00:00'),(79790,11,'1D82','Cytomegaloviral disease','Y','2025-10-23 00:00:00'),(79789,11,'MA16.Z','Cytological findings in blood, blood-forming organs, or the immune system, unspecified','Y','2025-10-23 00:00:00'),(79788,11,'MA16','Cytological findings in blood, blood-forming organs, or the immune system','Y','2025-10-23 00:00:00'),(79787,11,'XM5CH0','Cytochrome C','Y','2025-10-23 00:00:00'),(79786,11,'XM2YN7','Cytisus scoparius plant','Y','2025-10-23 00:00:00'),(79785,11,'XM5ZF9','Cytisus laburnum plant','Y','2025-10-23 00:00:00'),(79784,11,'XM7HS1','Cytisinicline','Y','2025-10-23 00:00:00'),(79783,11,'XM3ZN1','Cytarabine','Y','2025-10-23 00:00:00'),(79782,11,'DA05.Z','Cysts of oral or facial-neck region, unspecified','Y','2025-10-23 00:00:00'),(79780,11,'2F36.4','Cysts of eyelid','Y','2025-10-23 00:00:00'),(79781,11,'DA05','Cysts of oral or facial-neck region','Y','2025-10-23 00:00:00'),(79779,11,'1A33.Z','Cystoisosporiasis, unspecified','Y','2025-10-23 00:00:00'),(79778,11,'1A33.0','Cystoisosporiasis of small intestine','Y','2025-10-23 00:00:00'),(79777,11,'1A33.1','Cystoisosporiasis of colon','Y','2025-10-23 00:00:00'),(79776,11,'1A33','Cystoisosporiasis','Y','2025-10-23 00:00:00'),(79775,11,'GC00.Z','Cystitis, unspecified','Y','2025-10-23 00:00:00'),(79774,11,'GC00','Cystitis','Y','2025-10-23 00:00:00'),(79773,11,'5C60.2','Cystinuria','Y','2025-10-23 00:00:00'),(79772,11,'5C60.1','Cystinosis','Y','2025-10-23 00:00:00'),(79771,11,'1F70.Z','Cysticercosis, unspecified','Y','2025-10-23 00:00:00'),(79770,11,'1F70.1','Cysticercosis of eye','Y','2025-10-23 00:00:00'),(79769,11,'1F70.0','Cysticercosis of central nervous system','Y','2025-10-23 00:00:00'),(79768,11,'1F70','Cysticercosis','Y','2025-10-23 00:00:00'),(79767,11,'2C50.0','Cystic, mucinous or serous carcinoma of retroperitoneum','Y','2025-10-23 00:00:00'),(79766,11,'2C51.1','Cystic, mucinous or serous carcinoma of peritoneum','Y','2025-10-23 00:00:00'),(79765,11,'2C52.0','Cystic, mucinous or serous carcinoma of omentum','Y','2025-10-23 00:00:00'),(79764,11,'XA1MQ4','Cystic Vein','Y','2025-10-23 00:00:00'),(79763,11,'XH55F1','Cystic tumour of atrio-ventricular node','Y','2025-10-23 00:00:00'),(79762,11,'2F32.0','Cystic teratoma','Y','2025-10-23 00:00:00'),(79761,11,'XH1JB4','Cystic partially differentiated nephroblastoma','Y','2025-10-23 00:00:00'),(79760,11,'GB8Z','Cystic or dysplastic kidney disease, unspecified','Y','2025-10-23 00:00:00'),(79759,11,'FA33.0','Cystic meniscus','Y','2025-10-23 00:00:00'),(79758,11,'XH8G00','Cystic lymphangioma','Y','2025-10-23 00:00:00'),(79757,11,'XA71D7','Cystic lymph node','Y','2025-10-23 00:00:00'),(79756,11,'XH9SL6','Cystic hypersecretory carcinoma, intraductal','Y','2025-10-23 00:00:00'),(79755,11,'XH8TH6','Cystic hypersecretory carcinoma','Y','2025-10-23 00:00:00'),(79754,11,'LA90.13','Cystic hygroma in fetus','Y','2025-10-23 00:00:00'),(79753,11,'CA25.Z','Cystic fibrosis, unspecified','Y','2025-10-23 00:00:00'),(79752,11,'CA25','Cystic fibrosis','Y','2025-10-23 00:00:00'),(79751,11,'XA0077','Cystic duct','Y','2025-10-23 00:00:00'),(79750,11,'DC30.Z','Cystic diseases of the pancreas, unspecified','Y','2025-10-23 00:00:00'),(79749,11,'DC30','Cystic diseases of the pancreas','Y','2025-10-23 00:00:00'),(79748,11,'XH36Y8','Cystic astrocytoma','Y','2025-10-23 00:00:00'),(79747,11,'XA0JE4','Cystic artery','Y','2025-10-23 00:00:00'),(79746,11,'XM2K61','Cysteine','Y','2025-10-23 00:00:00'),(79745,11,'XM81B1','Cysteamine','Y','2025-10-23 00:00:00'),(79744,11,'XH4KK0','Cyst-associated renal cell carcinoma','Y','2025-10-23 00:00:00'),(79742,11,'XH5S99','Cystadenofibroma, NOS','Y','2025-10-23 00:00:00'),(79743,11,'XH5RJ2','Cystadenoma, NOS','Y','2025-10-23 00:00:00'),(79741,11,'XH0219','Cystadenocarcinoma, NOS','Y','2025-10-23 00:00:00'),(79740,11,'CA0C','Cyst or mucocele of nose or nasal sinus','Y','2025-10-23 00:00:00'),(79739,11,'DC30.0','Cyst of pancreas','Y','2025-10-23 00:00:00'),(79738,11,'9A91','Cyst of iris or ciliary body','Y','2025-10-23 00:00:00'),(79737,11,'GA03.1','Cyst of Bartholin gland','Y','2025-10-23 00:00:00'),(79736,11,'9A82','Cyst in the anterior chamber of the eye','Y','2025-10-23 00:00:00'),(79735,11,'XM3C58','Cyproterone','Y','2025-10-23 00:00:00'),(79734,11,'XM11C5','Cyproheptadine','Y','2025-10-23 00:00:00'),(79733,11,'XM3Y88','Cyphenothrin','Y','2025-10-23 00:00:00'),(79732,11,'XM1MQ5','Cypermethrin','Y','2025-10-23 00:00:00'),(79731,11,'XA5KM5','Cymba conchae','Y','2025-10-23 00:00:00'),(79730,11,'XM30Z9','Cymarin','Y','2025-10-23 00:00:00'),(79729,11,'XH6J91','Cylindroma of skin','Y','2025-10-23 00:00:00'),(79728,11,'XH28X1','Cylindroma of breast','Y','2025-10-23 00:00:00'),(79727,11,'XH7R01','Cylindrical cell papilloma','Y','2025-10-23 00:00:00'),(79726,11,'XH4UA2','Cylindrical cell carcinoma','Y','2025-10-23 00:00:00'),(79725,11,'XE9WL','Cylinder component of medical device','Y','2025-10-23 00:00:00'),(79724,11,'XM8HR7','Cyhalothrin','Y','2025-10-23 00:00:00'),(79723,11,'XM7YT2','Cyfluthrin','Y','2025-10-23 00:00:00'),(79722,11,'XM93T2','Cycrimine','Y','2025-10-23 00:00:00'),(79721,11,'6A62','Cyclothymic disorder','Y','2025-10-23 00:00:00'),(79720,11,'XM1PM4','Cyclothiazide','Y','2025-10-23 00:00:00'),(79719,11,'XN4BR','Cyclospora cayetanensis','Y','2025-10-23 00:00:00'),(79718,11,'XN7VL','Cyclospora','Y','2025-10-23 00:00:00'),(79717,11,'XM63V4','Cycloserine','Y','2025-10-23 00:00:00'),(79716,11,'XM0M53','Cyclopyrabital','Y','2025-10-23 00:00:00'),(79715,11,'XM7T11','Cyclopropane','Y','2025-10-23 00:00:00'),(79714,11,'XM3918','Cycloplegic drug','Y','2025-10-23 00:00:00'),(79713,11,'XM3NK1','Cyclopiazonic acid','Y','2025-10-23 00:00:00'),(79712,11,'XM7SY9','Cyclophosphamide','Y','2025-10-23 00:00:00'),(79711,11,'XM7VB2','Cyclopentolate','Y','2025-10-23 00:00:00'),(79710,11,'XM4SP9','Cyclopenthiazide','Y','2025-10-23 00:00:00'),(79709,11,'XM8Y26','Cyclopentamine','Y','2025-10-23 00:00:00'),(79708,11,'XM41W7','Cyclomethycaine','Y','2025-10-23 00:00:00'),(79707,11,'XM8C02','Cycloleucin','Y','2025-10-23 00:00:00'),(79706,11,'XM3AP0','Cyclohexyl acetate','Y','2025-10-23 00:00:00'),(79705,11,'XM21E5','Cycloheximide','Y','2025-10-23 00:00:00'),(79704,11,'XM1L02','Cyclohexanone','Y','2025-10-23 00:00:00'),(79703,11,'XM3XS0','Cyclohexanol','Y','2025-10-23 00:00:00'),(79702,11,'XM0EG5','Cycloguanil embonate','Y','2025-10-23 00:00:00'),(79701,11,'XM7P20','Cyclofenil','Y','2025-10-23 00:00:00'),(79700,11,'XM0VC2','Cyclodrine','Y','2025-10-23 00:00:00'),(79699,11,'XM2EM9','Cyclobutyrol','Y','2025-10-23 00:00:00'),(79698,11,'XM7LP5','Cyclobenzaprine','Y','2025-10-23 00:00:00'),(79697,11,'XM89L9','Cyclobarbital','Y','2025-10-23 00:00:00'),(79696,11,'XM0S26','Cyclizine','Y','2025-10-23 00:00:00'),(79695,11,'8A80.4','Cyclic vomiting syndrome','Y','2025-10-23 00:00:00'),(79694,11,'GA34.20','Cyclic pelvic pain','Y','2025-10-23 00:00:00'),(79693,11,'XM7QR0','Cyclic amines','Y','2025-10-23 00:00:00'),(79692,11,'XE4U4','Cycleway','Y','2025-10-23 00:00:00'),(79691,11,'XE6R4','Cycle rickshaw or tri-shaw as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(79690,11,'XE2PY','Cycle rickshaw or tri-shaw as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(79688,11,'XM16K3','Cyclandelate','Y','2025-10-23 00:00:00'),(79689,11,'XM0850','Cyclazocine','Y','2025-10-23 00:00:00'),(79687,11,'XM72P9','Cyclamen plant','Y','2025-10-23 00:00:00'),(79686,11,'XM5174','Cyclamen persicum plant','Y','2025-10-23 00:00:00'),(79685,11,'XM56R9','Cyclamen europaeum plant','Y','2025-10-23 00:00:00'),(79684,11,'XM1FY5','Cyclamate','Y','2025-10-23 00:00:00'),(79683,11,'XM7FD6','Cyclaine','Y','2025-10-23 00:00:00'),(79682,11,'XM6F50','Cyanotoxin','Y','2025-10-23 00:00:00'),(79681,11,'KB2C','Cyanotic attacks of newborn','Y','2025-10-23 00:00:00'),(79680,11,'ME64.1','Cyanosis','Y','2025-10-23 00:00:00'),(79679,11,'XM1293','Cyanogen chloride','Y','2025-10-23 00:00:00'),(79677,11,'XM09N3','Cyanocobalamin tannin complex','Y','2025-10-23 00:00:00'),(79678,11,'XM1ZE4','Cyanogen','Y','2025-10-23 00:00:00'),(79676,11,'XM9KD4','Cyanocobalamin','Y','2025-10-23 00:00:00'),(79675,11,'XM77X3','Cyanide pesticide, not elsewhere classified','Y','2025-10-23 00:00:00'),(79674,11,'XM3HX8','Cyanide','Y','2025-10-23 00:00:00'),(79673,11,'XM3KE4','Cyanic acid','Y','2025-10-23 00:00:00'),(79671,11,'XM2R17','Cyamopsis tetragono-loba','Y','2025-10-23 00:00:00'),(79672,11,'XM95S8','Cyanacetyl hydrazide','Y','2025-10-23 00:00:00'),(79670,11,'XM3AU5','Cyamemazine','Y','2025-10-23 00:00:00'),(79669,11,'XE9CU','Cutting tool','Y','2025-10-23 00:00:00'),(79668,11,'XE43P','Cutting or slicing machinery or fixed plant','Y','2025-10-23 00:00:00'),(79667,11,'XE3LB','Cutter or blade component of medical device','Y','2025-10-23 00:00:00'),(79666,11,'XE5CG','Cutlery, food preparation utensil','Y','2025-10-23 00:00:00'),(79665,11,'EE41.0','Cutis laxa','Y','2025-10-23 00:00:00'),(79664,11,'EF40.Z','Cutaneous vasculitis unspecified','Y','2025-10-23 00:00:00'),(79663,11,'EF2Z','Cutaneous vascular malformation, unspecified','Y','2025-10-23 00:00:00'),(79662,11,'1B12.8','Cutaneous tuberculosis','Y','2025-10-23 00:00:00'),(79660,11,'2C31.Z','Cutaneous squamous cell carcinoma','Y','2025-10-23 00:00:00'),(79661,11,'XH1951','Cutaneous T-cell lymphoma, NOS','Y','2025-10-23 00:00:00'),(79659,11,'2C35','Cutaneous sarcoma','Y','2025-10-23 00:00:00'),(79658,11,'4B20.5','Cutaneous sarcoidosis','Y','2025-10-23 00:00:00'),(79657,11,'EK50','Cutaneous reactions to venomous or noxious animals','Y','2025-10-23 00:00:00'),(79656,11,'1B21.2','Cutaneous non-tuberculous mycobacterial infection','Y','2025-10-23 00:00:00'),(79655,11,'1C1B.1','Cutaneous nocardiosis','Y','2025-10-23 00:00:00'),(79654,11,'2C34','Cutaneous neuroendocrine carcinoma','Y','2025-10-23 00:00:00'),(79653,11,'1G01.3','Cutaneous myiasis','Y','2025-10-23 00:00:00'),(79652,11,'EB90.1','Cutaneous mucinosis','Y','2025-10-23 00:00:00'),(79651,11,'XH74F2','Cutaneous mastocytosis','Y','2025-10-23 00:00:00'),(79650,11,'2A21.1','Cutaneous mastocytosis','Y','2025-10-23 00:00:00'),(79649,11,'BD92.1','Cutaneous lymphangiectasia','Y','2025-10-23 00:00:00'),(79648,11,'EB5Z','Cutaneous lupus erythematosus of unspecified type','Y','2025-10-23 00:00:00'),(79647,11,'1C1A.0','Cutaneous listeriosis','Y','2025-10-23 00:00:00'),(79646,11,'4A44.B0','Cutaneous leukocytoclastic vasculitis','Y','2025-10-23 00:00:00'),(79645,11,'1F54.1','Cutaneous leishmaniasis','Y','2025-10-23 00:00:00'),(79644,11,'1F68.2','Cutaneous larva migrans','Y','2025-10-23 00:00:00'),(79643,11,'ED3Y','Cutaneous involvement in other specified neurological condition','Y','2025-10-23 00:00:00'),(79642,11,'EA5Z','Cutaneous involvement by unspecified bacterial infection','Y','2025-10-23 00:00:00'),(79641,11,'EA6Y','Cutaneous involvement by other specified infection or infestation','Y','2025-10-23 00:00:00'),(79640,11,'EA5Y','Cutaneous involvement by other specified bacterial infection','Y','2025-10-23 00:00:00'),(79639,11,'EK50.0Z','Cutaneous insect bite reactions, unspecified','Y','2025-10-23 00:00:00'),(79638,11,'EK50.0','Cutaneous insect bite reactions','Y','2025-10-23 00:00:00'),(79637,11,'1B21.2Z','Cutaneous infection due to unspecified non-tuberculous mycobacteria','Y','2025-10-23 00:00:00'),(79636,11,'1B21.2Y','Cutaneous infection due to other specified non-tuberculous mycobacteria','Y','2025-10-23 00:00:00'),(79635,11,'EL51','Cutaneous flap necrosis','Y','2025-10-23 00:00:00'),(79634,11,'EB12.0','Cutaneous erythema multiforme','Y','2025-10-23 00:00:00'),(79633,11,'XH8SM9','Cutaneous epithelioid angiomatoid nodule','Y','2025-10-23 00:00:00'),(79632,11,'1C17.3','Cutaneous diphtheria','Y','2025-10-23 00:00:00'),(79631,11,'EK70.Z','Cutaneous cysts, unspecified','Y','2025-10-23 00:00:00'),(79630,11,'EK70','Cutaneous cysts','Y','2025-10-23 00:00:00'),(79629,11,'EB90.2Z','Cutaneous and subcutaneous xanthomata of unspecified type','Y','2025-10-23 00:00:00'),(79628,11,'EB90.2','Cutaneous and subcutaneous xanthomata','Y','2025-10-23 00:00:00'),(79627,11,'1A36.12','Cutaneous amoebiasis','Y','2025-10-23 00:00:00'),(79626,11,'4A85.31','Cutaneous allergic or hypersensitivity reactions to Hymenoptera venom','Y','2025-10-23 00:00:00'),(79625,11,'4A85.32','Cutaneous allergic or hypersensitivity reactions to arthropods','Y','2025-10-23 00:00:00'),(79624,11,'PL11.0','Cut, puncture or tear, as mode of injury or harm','Y','2025-10-23 00:00:00'),(79623,11,'PG91','Cut or pierced by sharp glass of undetermined intent','Y','2025-10-23 00:00:00'),(79622,11,'PG9Z','Cut or pierced by other or unspecified sharp object, undetermined intent','Y','2025-10-23 00:00:00'),(79621,11,'PG90','Cut or pierced by knife, sword or dagger of undetermined intent','Y','2025-10-23 00:00:00'),(79620,11,'XA19H9','Cusps of tricuspid valve','Y','2025-10-23 00:00:00'),(79619,11,'XA1403','Cusps of pulmonary valve','Y','2025-10-23 00:00:00'),(79618,11,'XA3GE9','Cusps of mitral valve','Y','2025-10-23 00:00:00'),(79617,11,'XA2QK7','Cusps of aortic valve','Y','2025-10-23 00:00:00'),(79616,11,'XE8T8','Cusp and leaflet component of medical device','Y','2025-10-23 00:00:00'),(79615,11,'5A70.Z','Cushing syndrome, unspecified','Y','2025-10-23 00:00:00'),(79614,11,'5A70','Cushing syndrome','Y','2025-10-23 00:00:00'),(79613,11,'XE20X','Curvette component of medical device','Y','2025-10-23 00:00:00'),(79612,11,'XE2V6','Current leakage problem of device identified','Y','2025-10-23 00:00:00'),(79611,11,'6A80.3','Current depressive episode with melancholia','Y','2025-10-23 00:00:00'),(79610,11,'6A80.2','Current depressive episode persistent','Y','2025-10-23 00:00:00'),(79609,11,'XM2T44','Cup moth caterpillar venom','Y','2025-10-23 00:00:00'),(79608,11,'XE8YR','Cup component of medical device','Y','2025-10-23 00:00:00'),(79607,11,'XA6NT7','Cuneonavicular joint','Y','2025-10-23 00:00:00'),(79606,11,'XA2314','Cuneometatarsal ligament','Y','2025-10-23 00:00:00'),(79605,11,'XA2FA3','Cuneocuboid joint','Y','2025-10-23 00:00:00'),(79604,11,'XE8LZ','Cuff component of medical device','Y','2025-10-23 00:00:00'),(79603,11,'XA1N77','Cuboideonavicular joint','Y','2025-10-23 00:00:00'),(79602,11,'XA0LW4','Cuboid bone','Y','2025-10-23 00:00:00'),(79601,11,'LB90.8','Cubitus varus','Y','2025-10-23 00:00:00'),(79600,11,'LB90.7','Cubitus valgus','Y','2025-10-23 00:00:00'),(79599,11,'XA3H20','Cubital lymph node','Y','2025-10-23 00:00:00'),(79598,11,'XA13U9','Crystalline lens','Y','2025-10-23 00:00:00'),(79597,11,'FA26.Z','Crystal arthropathies, unspecified','Y','2025-10-23 00:00:00'),(79596,11,'XN9BP','Cryptosporidium parvum','Y','2025-10-23 00:00:00'),(79595,11,'XN4MN','Cryptosporidium muris','Y','2025-10-23 00:00:00'),(79594,11,'XN4VU','Cryptosporidium meleagridis','Y','2025-10-23 00:00:00'),(79593,11,'XN4ZT','Cryptosporidium hominis','Y','2025-10-23 00:00:00'),(79592,11,'XN5SZ','Cryptosporidium felis','Y','2025-10-23 00:00:00'),(79591,11,'XN0NC','Cryptosporidium canis','Y','2025-10-23 00:00:00'),(79590,11,'XN8LE','Cryptosporidium','Y','2025-10-23 00:00:00'),(79589,11,'1A32','Cryptosporidiosis','Y','2025-10-23 00:00:00'),(79588,11,'LB52.Z','Cryptorchidism, unspecified','Y','2025-10-23 00:00:00'),(79587,11,'LB52','Cryptorchidism','Y','2025-10-23 00:00:00'),(79586,11,'LA14.01','Cryptophthalmia','Y','2025-10-23 00:00:00'),(79585,11,'CB03.2','Cryptogenic organizing pneumonitis','Y','2025-10-23 00:00:00'),(79584,11,'DA94.02','Cryptogenic multifocal ulcerous stenosing enteritis','Y','2025-10-23 00:00:00'),(79583,11,'XN3EH','Cryptococcus neoformans','Y','2025-10-23 00:00:00'),(79581,11,'XN69C','Cryptococcus','Y','2025-10-23 00:00:00'),(79582,11,'XN0LE','Cryptococcus gattii','Y','2025-10-23 00:00:00'),(79580,11,'1F27.Z','Cryptococcosis, unspecified','Y','2025-10-23 00:00:00'),(79579,11,'1F27','Cryptococcosis','Y','2025-10-23 00:00:00'),(79578,11,'XM9W04','Cryptenamine (tannates)','Y','2025-10-23 00:00:00'),(79577,11,'4A60.1','Cryopyrin-associated periodic syndromes','Y','2025-10-23 00:00:00'),(79576,11,'XM7LT1','Cryolite','Y','2025-10-23 00:00:00'),(79575,11,'4A44.90','Cryoglobulinaemic vasculitis','Y','2025-10-23 00:00:00'),(79574,11,'4B22','Cryoglobulinaemia','Y','2025-10-23 00:00:00'),(79573,11,'1G04.1','Crusted scabies','Y','2025-10-23 00:00:00'),(79572,11,'XE0VT','Crushing or pressing machinery or fixed plant','Y','2025-10-23 00:00:00'),(79571,11,'NB93','Crushing injury or traumatic amputation of part of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(79570,11,'NC58.Z','Crushing injury of wrist or hand, unspecified','Y','2025-10-23 00:00:00'),(79569,11,'NC58','Crushing injury of wrist or hand','Y','2025-10-23 00:00:00'),(79568,11,'NC58.3','Crushing injury of wrist','Y','2025-10-23 00:00:00'),(79567,11,'NB93.02','Crushing injury of vulva','Y','2025-10-23 00:00:00'),(79566,11,'ND56.7','Crushing injury of unspecified body region','Y','2025-10-23 00:00:00'),(79565,11,'ND18.1','Crushing injury of toe','Y','2025-10-23 00:00:00'),(79564,11,'NC58.0','Crushing injury of thumb','Y','2025-10-23 00:00:00'),(79563,11,'NB33.Z','Crushing injury of thorax or traumatic amputation of part of thorax, unspecified','Y','2025-10-23 00:00:00'),(79562,11,'NB33','Crushing injury of thorax or traumatic amputation of part of thorax','Y','2025-10-23 00:00:00'),(79561,11,'NC77.1','Crushing injury of thigh','Y','2025-10-23 00:00:00'),(79560,11,'NB93.01','Crushing injury of testes or scrotum','Y','2025-10-23 00:00:00'),(79559,11,'ND51.4','Crushing injury of spine or trunk, level unspecified','Y','2025-10-23 00:00:00'),(79558,11,'NA08.2','Crushing injury of skull','Y','2025-10-23 00:00:00'),(79557,11,'NC17','Crushing injury of shoulder or upper arm','Y','2025-10-23 00:00:00'),(79556,11,'NB93.00','Crushing injury of penis','Y','2025-10-23 00:00:00'),(79555,11,'NA62.Y','Crushing injury of other specified site of neck','Y','2025-10-23 00:00:00'),(79554,11,'NC58.Y','Crushing injury of other specified part of wrist or hand','Y','2025-10-23 00:00:00'),(79553,11,'NC97.Y','Crushing injury of other specified part of lower leg','Y','2025-10-23 00:00:00'),(79552,11,'NC37.Y','Crushing injury of other specified part of forearm','Y','2025-10-23 00:00:00'),(79551,11,'ND18.2','Crushing injury of other parts of ankle or foot','Y','2025-10-23 00:00:00'),(79550,11,'NB93.1','Crushing injury of other or unspecified parts of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(79549,11,'NC58.1','Crushing injury of other finger','Y','2025-10-23 00:00:00'),(79548,11,'NA62.Z','Crushing injury of neck, unspecified','Y','2025-10-23 00:00:00'),(79547,11,'NA62','Crushing injury of neck','Y','2025-10-23 00:00:00'),(79546,11,'NC97.Z','Crushing injury of lower leg, unspecified','Y','2025-10-23 00:00:00'),(79545,11,'NC97','Crushing injury of lower leg','Y','2025-10-23 00:00:00'),(79544,11,'NA62.0','Crushing injury of larynx or trachea','Y','2025-10-23 00:00:00'),(79543,11,'NC97.0','Crushing injury of knee','Y','2025-10-23 00:00:00'),(79542,11,'NC77.2','Crushing injury of hip with thigh','Y','2025-10-23 00:00:00'),(79541,11,'NC77.Z','Crushing injury of hip or thigh, unspecified','Y','2025-10-23 00:00:00'),(79540,11,'NC77','Crushing injury of hip or thigh','Y','2025-10-23 00:00:00'),(79539,11,'NC77.0','Crushing injury of hip','Y','2025-10-23 00:00:00'),(79538,11,'NA08.Z','Crushing injury of head, unspecified','Y','2025-10-23 00:00:00'),(79536,11,'NC58.2','Crushing injury of hand','Y','2025-10-23 00:00:00'),(79537,11,'NA08','Crushing injury of head','Y','2025-10-23 00:00:00'),(79535,11,'NC37.Z','Crushing injury of forearm, unspecified','Y','2025-10-23 00:00:00'),(79534,11,'NC37','Crushing injury of forearm','Y','2025-10-23 00:00:00'),(79533,11,'NA08.1','Crushing injury of face','Y','2025-10-23 00:00:00'),(79532,11,'NB93.0Z','Crushing injury of external genital organs, unspecified','Y','2025-10-23 00:00:00'),(79531,11,'NB93.0','Crushing injury of external genital organs','Y','2025-10-23 00:00:00'),(79530,11,'NC37.0','Crushing injury of elbow','Y','2025-10-23 00:00:00'),(79529,11,'NA08.0','Crushing injury of brain','Y','2025-10-23 00:00:00'),(79528,11,'ND53.0','Crushing injury of arm, level unspecified','Y','2025-10-23 00:00:00'),(79527,11,'ND18.Z','Crushing injury of ankle or foot, unspecified','Y','2025-10-23 00:00:00'),(79526,11,'ND18','Crushing injury of ankle or foot','Y','2025-10-23 00:00:00'),(79525,11,'ND18.0','Crushing injury of ankle','Y','2025-10-23 00:00:00'),(79524,11,'ND34','Crushing injuries involving multiple body regions','Y','2025-10-23 00:00:00'),(79523,11,'NA08.3','Crushed scalp','Y','2025-10-23 00:00:00'),(79522,11,'NB33.0','Crushed chest','Y','2025-10-23 00:00:00'),(79521,11,'XA9A86','Crus of helix','Y','2025-10-23 00:00:00'),(79520,11,'XA96Q7','Crura of antihelix','Y','2025-10-23 00:00:00'),(79519,11,'XM3X53','Crown of thorns starfish venom','Y','2025-10-23 00:00:00'),(79518,11,'XE0TZ','Crowd of people','Y','2025-10-23 00:00:00'),(79517,11,'LD24.G1','Crouzon disease','Y','2025-10-23 00:00:00'),(79516,11,'XM58S5','Croton chloral','Y','2025-10-23 00:00:00'),(79515,11,'XM4217','Croton (oil)','Y','2025-10-23 00:00:00'),(79514,11,'XM3465','Crotethamide with cropropamide','Y','2025-10-23 00:00:00'),(79513,11,'XM0LT4','Crotethamide','Y','2025-10-23 00:00:00'),(79512,11,'XM3726','Crotamiton','Y','2025-10-23 00:00:00'),(79511,11,'XE8Z6','Cross reactivity','Y','2025-10-23 00:00:00'),(79510,11,'XM3AJ8','Crospovidone','Y','2025-10-23 00:00:00'),(79509,11,'XM1LX8','Cropropamide','Y','2025-10-23 00:00:00'),(79508,11,'XN2YF','Cronobacter sakazakii','Y','2025-10-23 00:00:00'),(79507,11,'XN9EB','Cronobacter','Y','2025-10-23 00:00:00'),(79506,11,'LD27.01','Cronkhite-Canada syndrome','Y','2025-10-23 00:00:00'),(79505,11,'XM0SG8','Cromonar','Y','2025-10-23 00:00:00'),(79504,11,'XM3R34','Cromoglicic acid','Y','2025-10-23 00:00:00'),(79503,11,'DD70.Z','Crohn disease, unspecified site','Y','2025-10-23 00:00:00'),(79502,11,'DD70.0','Crohn disease of upper gastrointestinal tract','Y','2025-10-23 00:00:00'),(79501,11,'DD70.1','Crohn disease of small intestine','Y','2025-10-23 00:00:00'),(79500,11,'DD70.Y','Crohn disease of other specified site','Y','2025-10-23 00:00:00'),(79499,11,'DD70.3','Crohn disease of large intestine','Y','2025-10-23 00:00:00'),(79498,11,'DD70.5','Crohn disease of both small and large intestine','Y','2025-10-23 00:00:00'),(79497,11,'DD70.2','Crohn disease of appendix','Y','2025-10-23 00:00:00'),(79496,11,'DD70.6','Crohn disease of anastomotic sites','Y','2025-10-23 00:00:00'),(79495,11,'DD70.4','Crohn disease of anal region','Y','2025-10-23 00:00:00'),(79494,11,'DD70','Crohn disease','Y','2025-10-23 00:00:00'),(79493,11,'XM0402','Croconazole','Y','2025-10-23 00:00:00'),(79492,11,'XE4FD','Crocodile, alligator','Y','2025-10-23 00:00:00'),(79491,11,'XE9W8','Crockery, kitchen container','Y','2025-10-23 00:00:00'),(79490,11,'XM2U80','Crizotinib','Y','2025-10-23 00:00:00'),(79489,11,'XM3KE1','Crimidine','Y','2025-10-23 00:00:00'),(79488,11,'XN17V','Crimean-Congo haemorrhagic fever virus','Y','2025-10-23 00:00:00'),(79487,11,'1D49','Crimean-Congo haemorrhagic fever','Y','2025-10-23 00:00:00'),(79486,11,'XM7618','Crilanomer','Y','2025-10-23 00:00:00'),(79484,11,'XM4ZS8','Cridanimod','Y','2025-10-23 00:00:00'),(79485,11,'5C58.00','Crigler-Najjar syndrome','Y','2025-10-23 00:00:00'),(79483,11,'XA7C08','Cricothyroid vein','Y','2025-10-23 00:00:00'),(79482,11,'XA01X1','Cricothyroid tendon','Y','2025-10-23 00:00:00'),(79481,11,'XA7W64','Cricothyroid muscle','Y','2025-10-23 00:00:00'),(79480,11,'XA0FT7','Cricothyroid artery','Y','2025-10-23 00:00:00'),(79479,11,'XH4YG1','Cribriform comedo-type carcinoma','Y','2025-10-23 00:00:00'),(79478,11,'XH1YZ3','Cribriform carcinoma, NOS','Y','2025-10-23 00:00:00'),(79477,11,'XH7Y32','Cribriform carcinoma in situ','Y','2025-10-23 00:00:00'),(79476,11,'8E02.Z','Creutzfeldt-Jakob disease, unspecified','Y','2025-10-23 00:00:00'),(79475,11,'XM0348','Cresylic acid','Y','2025-10-23 00:00:00'),(79474,11,'XM7AX9','Cresylglycidylether','Y','2025-10-23 00:00:00'),(79473,11,'XM4YB3','Cresyl acetate','Y','2025-10-23 00:00:00'),(79472,11,'XM0WM0','Cresol and soap solution','Y','2025-10-23 00:00:00'),(79471,11,'XM7ZK1','Cresol (s)','Y','2025-10-23 00:00:00'),(79470,11,'XM4C87','Creosote syrup','Y','2025-10-23 00:00:00'),(79469,11,'XM35M5','Creosote (coal tar) (beechwood)','Y','2025-10-23 00:00:00'),(79468,11,'XM81Q9','Creosote','Y','2025-10-23 00:00:00'),(79467,11,'XM42L5','Creosol (compound)','Y','2025-10-23 00:00:00'),(79466,11,'XA4755','Cremaster tendon','Y','2025-10-23 00:00:00'),(79465,11,'XA5FZ1','Cremaster muscle','Y','2025-10-23 00:00:00'),(79464,11,'XM6619','Creatinolfosfate','Y','2025-10-23 00:00:00'),(79463,11,'XD5GV0','C-REACTIVE PROTEIN','Y','2025-10-23 00:00:00'),(79462,11,'XM7F77','Crataegus glycosides','Y','2025-10-23 00:00:00'),(79461,11,'XM4Q19','Crataegus extract','Y','2025-10-23 00:00:00'),(79459,11,'LB70.0','Craniosynostosis','Y','2025-10-23 00:00:00'),(79460,11,'LB70.0Z','Craniosynostosis, unspecified','Y','2025-10-23 00:00:00'),(79458,11,'LA00.00','Craniorachischisis','Y','2025-10-23 00:00:00'),(79457,11,'XH2BF0','Craniopharyngioma, papillary','Y','2025-10-23 00:00:00'),(79456,11,'XH15X9','Craniopharyngioma, adamantinomatous','Y','2025-10-23 00:00:00'),(79455,11,'XH1AZ2','Craniopharyngioma','Y','2025-10-23 00:00:00'),(79454,11,'EE00.02','Craniofacial hyperhidrosis','Y','2025-10-23 00:00:00'),(79453,11,'LD25.3','Craniofacial dysostoses','Y','2025-10-23 00:00:00'),(79452,11,'NA23.10','Cranio-cervical dissociation','Y','2025-10-23 00:00:00'),(79451,11,'XA5UX2','Cranial venous sinus','Y','2025-10-23 00:00:00'),(79450,11,'XA2T81','Cranial pia mater','Y','2025-10-23 00:00:00'),(79449,11,'XA8EK9','Cranial Nerve','Y','2025-10-23 00:00:00'),(79447,11,'XA9M51','Cranial dura mater','Y','2025-10-23 00:00:00'),(79448,11,'XA0KU6','Cranial fossa','Y','2025-10-23 00:00:00'),(79446,11,'XA1ZV6','Cranial cavity','Y','2025-10-23 00:00:00'),(79444,11,'XA6WL2','Cranial arachnoid','Y','2025-10-23 00:00:00'),(79445,11,'XA1RZ4','Cranial Bones','Y','2025-10-23 00:00:00'),(79443,11,'XK2K','Cranial','Y','2025-10-23 00:00:00'),(79442,11,'XE3BT','Crane machinery or fixed plant','Y','2025-10-23 00:00:00'),(79440,11,'EH40.00','Cradle cap','Y','2025-10-23 00:00:00'),(79441,11,'MB47.3','Cramp or spasm','Y','2025-10-23 00:00:00'),(79439,11,'JB46.1','Cracked nipple associated with childbirth','Y','2025-10-23 00:00:00'),(79438,11,'XE38M','Crack','Y','2025-10-23 00:00:00'),(79437,11,'XM1KF5','Crab seafood poison','Y','2025-10-23 00:00:00'),(79436,11,'XN3MC','Coxsackievirus','Y','2025-10-23 00:00:00'),(79434,11,'XN0QS','Coxiella burnetii','Y','2025-10-23 00:00:00'),(79435,11,'1D85.4','Coxsackie carditis','Y','2025-10-23 00:00:00'),(79432,11,'XM16D6','Coxibs','Y','2025-10-23 00:00:00'),(79433,11,'XN5H6','Coxiella','Y','2025-10-23 00:00:00'),(79431,11,'XN0AU','Cowpox virus','Y','2025-10-23 00:00:00'),(79430,11,'1E72','Cowpox','Y','2025-10-23 00:00:00'),(79429,11,'XE257','Cow, bull, bovine animals','Y','2025-10-23 00:00:00'),(79428,11,'XM85P5','Covi-Vac','Y','2025-10-23 00:00:00'),(79427,11,'XM97T2','Covishield','Y','2025-10-23 00:00:00'),(79426,11,'XM2YG8','COVIran Barakat','Y','2025-10-23 00:00:00'),(79425,11,'XM0K39','Covidful','Y','2025-10-23 00:00:00'),(79424,11,'RA01.1','COVID-19, virus not identified','Y','2025-10-23 00:00:00'),(79423,11,'RA01.0','COVID-19, virus identified','Y','2025-10-23 00:00:00'),(79422,11,'XM5JC5','COVID-19 vaccines, virus protein subunit','Y','2025-10-23 00:00:00'),(79421,11,'XM1J92','COVID-19 vaccines, virus like particle','Y','2025-10-23 00:00:00'),(79420,11,'XM0GQ8','COVID-19 vaccines, RNA based','Y','2025-10-23 00:00:00'),(79419,11,'XM0CX4','COVID-19 vaccines, replicating viral vector','Y','2025-10-23 00:00:00'),(79418,11,'XM9QW8','COVID-19 vaccines, non-replicating viral vector','Y','2025-10-23 00:00:00'),(79417,11,'XM5DF6','COVID-19 vaccines, live attenuated virus','Y','2025-10-23 00:00:00'),(79416,11,'XM1NL1','COVID-19 vaccines, inactivated virus','Y','2025-10-23 00:00:00'),(79415,11,'XM6AT1','COVID-19 vaccines, DNA based','Y','2025-10-23 00:00:00'),(79414,11,'XM68M6','COVID-19 vaccines','Y','2025-10-23 00:00:00'),(79413,11,'XM3DT5','COVID-19 Vaccine Moderna','Y','2025-10-23 00:00:00'),(79411,11,'XM4YL8','COVID-19 Vaccine AstraZeneca','Y','2025-10-23 00:00:00'),(79412,11,'XM6QV1','COVID-19 Vaccine Janssen','Y','2025-10-23 00:00:00'),(79409,11,'XE1S2','Cover component of medical device','Y','2025-10-23 00:00:00'),(79410,11,'RA01','COVID-19','Y','2025-10-23 00:00:00'),(79407,11,'XE5JL','Countryside','Y','2025-10-23 00:00:00'),(79408,11,'XM1G90','Covaxin','Y','2025-10-23 00:00:00'),(79406,11,'XE9NB','Counter component of medical device','Y','2025-10-23 00:00:00'),(79405,11,'QA15.Z','Counselling related to sexuality, unspecified','Y','2025-10-23 00:00:00'),(79404,11,'QA15','Counselling related to sexuality','Y','2025-10-23 00:00:00'),(79403,11,'QA15.2','Counselling related to sexual behaviour and orientation or sexual relationships of third party','Y','2025-10-23 00:00:00'),(79402,11,'QA15.1','Counselling related to sexual behaviour and orientation or sexual relationships of the person','Y','2025-10-23 00:00:00'),(79401,11,'QA15.0','Counselling related to sexual attitudes','Y','2025-10-23 00:00:00'),(79399,11,'XM0SY0','Coumetarol','Y','2025-10-23 00:00:00'),(79400,11,'QA15.3','Counselling related to combined sexual attitudes, sexual behaviour and sexual relationships','Y','2025-10-23 00:00:00'),(79398,11,'XM0DK0','Coumatetralyl','Y','2025-10-23 00:00:00'),(79397,11,'XM9E78','Coumarin','Y','2025-10-23 00:00:00'),(79396,11,'XM8WL8','Coumaphos','Y','2025-10-23 00:00:00'),(79395,11,'SA70','Cough with dyspnea disorder (TM1)','Y','2025-10-23 00:00:00'),(79394,11,'CA23.22','Cough variant asthma','Y','2025-10-23 00:00:00'),(79392,11,'XM6C31','Cough mixture containing opiates','Y','2025-10-23 00:00:00'),(79393,11,'XM1MJ1','Cough mixture expectorants','Y','2025-10-23 00:00:00'),(79391,11,'XM2NU9','Cough mixture (syrup)','Y','2025-10-23 00:00:00'),(79390,11,'SA7Z','Cough disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(79389,11,'MD12','Cough','Y','2025-10-23 00:00:00'),(79388,11,'XH5G84','Cotyledonoid leiomyoma','Y','2025-10-23 00:00:00'),(79387,11,'XM8P34','Cottonseed oil','Y','2025-10-23 00:00:00'),(79386,11,'DA0D.4','Cotton-roll gingivitis','Y','2025-10-23 00:00:00'),(79385,11,'XE94F','Cotton swab, cotton bud, Q-Tip?','Y','2025-10-23 00:00:00'),(79384,11,'XM0XN7','Cotton plant','Y','2025-10-23 00:00:00'),(79382,11,'XE8RG','Cot, crib, baby bed','Y','2025-10-23 00:00:00'),(79383,11,'XM3RB9','Cotarnine','Y','2025-10-23 00:00:00'),(79380,11,'XA2S05','Costoxiphoid ligament','Y','2025-10-23 00:00:00'),(79381,11,'XM1EM4','Cosyntropin','Y','2025-10-23 00:00:00'),(79379,11,'XA0892','Costovertebral joint','Y','2025-10-23 00:00:00'),(79378,11,'XA5G44','Costotransverse ligament','Y','2025-10-23 00:00:00'),(79377,11,'XA7AR2','Costotransverse joint','Y','2025-10-23 00:00:00'),(79375,11,'XA30Q4','Costochondral joint','Y','2025-10-23 00:00:00'),(79376,11,'XA1PK9','Costoclavicular ligament','Y','2025-10-23 00:00:00'),(79374,11,'XA2UK9','Costocervical trunk','Y','2025-10-23 00:00:00'),(79373,11,'XA6958','Costal cartilage','Y','2025-10-23 00:00:00'),(79372,11,'XE79N','Cosmetics, not elsewhere classified','Y','2025-10-23 00:00:00'),(79371,11,'XN3MP','Corynebacterium tenuis','Y','2025-10-23 00:00:00'),(79370,11,'XN752','Corynebacterium striatum','Y','2025-10-23 00:00:00'),(79369,11,'XM6ZM0','Corynebacterium parvum','Y','2025-10-23 00:00:00'),(79367,11,'XN9N1','Corynebacterium diphtheriae','Y','2025-10-23 00:00:00'),(79368,11,'XN78S','Corynebacterium minutissimum','Y','2025-10-23 00:00:00'),(79365,11,'XM25L1','Cortone','Y','2025-10-23 00:00:00'),(79366,11,'XN3NT','Corynebacterium','Y','2025-10-23 00:00:00'),(79363,11,'XM5AE3','Cortisone','Y','2025-10-23 00:00:00'),(79364,11,'XM17S1','Cortivazol','Y','2025-10-23 00:00:00'),(79362,11,'XM2BB9','Cortinarius speciosissimus mushroom','Y','2025-10-23 00:00:00'),(79361,11,'XM85A8','Cortinarius rubellus mushroom','Y','2025-10-23 00:00:00'),(79360,11,'XM9TZ1','Cortinarius orellanus mushroom','Y','2025-10-23 00:00:00'),(79358,11,'XM7XJ1','Corticotropin','Y','2025-10-23 00:00:00'),(79359,11,'XM4CB0','Cortinarius mushroom','Y','2025-10-23 00:00:00'),(79357,11,'XH1C58','Corticotroph adenoma','Y','2025-10-23 00:00:00'),(79356,11,'EE40.0','Corticosteroid-induced skin atrophy','Y','2025-10-23 00:00:00'),(79354,11,'XM8CC8','Corticosteroid mineral','Y','2025-10-23 00:00:00'),(79355,11,'XM57Z7','Corticosteroid topical','Y','2025-10-23 00:00:00'),(79352,11,'XM1UJ0','Corticorelin','Y','2025-10-23 00:00:00'),(79353,11,'XM6TY3','Corticosteroid','Y','2025-10-23 00:00:00'),(79350,11,'LA05.51','Cortical dysplasia','Y','2025-10-23 00:00:00'),(79351,11,'XA9TJ8','Cortical vein','Y','2025-10-23 00:00:00'),(79349,11,'XA6FA5','Cortex of ovary','Y','2025-10-23 00:00:00'),(79348,11,'XM6FJ6','Cortate','Y','2025-10-23 00:00:00'),(79347,11,'XA6L11','Corrugator supercilii tendon','Y','2025-10-23 00:00:00'),(79346,11,'XA01U4','Corrugator supercilii muscle','Y','2025-10-23 00:00:00'),(79345,11,'XM1ZR1','Corrosive cleaning product, not elsewhere classified','Y','2025-10-23 00:00:00'),(79344,11,'XM57L3','Corrosive cleaning product fumes, not elsewhere classified','Y','2025-10-23 00:00:00'),(79343,11,'XM85F7','Corrosive aromatics, not elsewhere classified','Y','2025-10-23 00:00:00'),(79342,11,'XM2R89','Corrosive alkali','Y','2025-10-23 00:00:00'),(79341,11,'XM6PB5','Corrosive acid','Y','2025-10-23 00:00:00'),(79340,11,'XE1SS','Corrosion due to exposure to substance','Y','2025-10-23 00:00:00'),(79339,11,'XE228','Corroded','Y','2025-10-23 00:00:00'),(79338,11,'XA5229','Corpus uteri','Y','2025-10-23 00:00:00'),(79337,11,'XA64F9','Corpus striatum','Y','2025-10-23 00:00:00'),(79336,11,'GA18.1','Corpus luteum cyst','Y','2025-10-23 00:00:00'),(79334,11,'LA05.3','Corpus callosum agenesis','Y','2025-10-23 00:00:00'),(79335,11,'XA6YL8','Corpus cavernosum penis','Y','2025-10-23 00:00:00'),(79333,11,'XA0NS5','Coronoid process of the ulna','Y','2025-10-23 00:00:00'),(79332,11,'XA24B3','Coronoid process of the mandible','Y','2025-10-23 00:00:00'),(79331,11,'XD9S44','Coronavirus-NA Reagents','Y','2025-10-23 00:00:00'),(79330,11,'1D92','Coronavirus infection, unspecified site','Y','2025-10-23 00:00:00'),(79329,11,'XD9N16','Coronavirus (diagnostic)','Y','2025-10-23 00:00:00'),(79328,11,'XN83D','Coronavirus','Y','2025-10-23 00:00:00'),(79327,11,'XM7HT3','CoronaVac','Y','2025-10-23 00:00:00'),(79326,11,'BA85.Z','Coronary vasospastic disease, unspecified','Y','2025-10-23 00:00:00'),(79325,11,'BA85','Coronary vasospastic disease','Y','2025-10-23 00:00:00'),(79324,11,'XM38U6','Coronary vasodilator','Y','2025-10-23 00:00:00'),(79323,11,'BA43','Coronary thrombosis not resulting in myocardial infarction','Y','2025-10-23 00:00:00'),(79322,11,'XA16E4','Coronary sinus','Y','2025-10-23 00:00:00'),(79321,11,'BA86','Coronary microvascular disease','Y','2025-10-23 00:00:00'),(79320,11,'XA04S7','Coronary ligament','Y','2025-10-23 00:00:00'),(79319,11,'BA52.Z','Coronary atherosclerosis, unspecified site','Y','2025-10-23 00:00:00'),(79318,11,'BA52.11','Coronary atherosclerosis of venous autologous bypass graft','Y','2025-10-23 00:00:00'),(79317,11,'BA52.1Z','Coronary atherosclerosis of unspecified autologous bypass graft','Y','2025-10-23 00:00:00'),(79316,11,'BA52.2','Coronary atherosclerosis of non-autologous bypass graft','Y','2025-10-23 00:00:00'),(79315,11,'BA52.0','Coronary atherosclerosis of native coronary artery','Y','2025-10-23 00:00:00'),(79314,11,'BA52.1','Coronary atherosclerosis of autologous bypass graft','Y','2025-10-23 00:00:00'),(79313,11,'BA52.10','Coronary atherosclerosis of arterial autologous bypass graft','Y','2025-10-23 00:00:00'),(79312,11,'BA52','Coronary atherosclerosis','Y','2025-10-23 00:00:00'),(79311,11,'BA83','Coronary artery fistula, acquired','Y','2025-10-23 00:00:00'),(79310,11,'BA82','Coronary artery dissection','Y','2025-10-23 00:00:00'),(79309,11,'BA81.2','Coronary artery aneurysm without mention of perforation or rupture','Y','2025-10-23 00:00:00'),(79308,11,'BA81.1','Coronary artery aneurysm with rupture','Y','2025-10-23 00:00:00'),(79307,11,'BA81.0','Coronary artery aneurysm with perforation','Y','2025-10-23 00:00:00'),(79306,11,'BA81','Coronary artery aneurysm','Y','2025-10-23 00:00:00'),(79305,11,'XA3B03','Coronary arteries','Y','2025-10-23 00:00:00'),(79304,11,'9B10.00','Coronary age-related cataract','Y','2025-10-23 00:00:00'),(79303,11,'XA54U4','Coronal sulcus of penis','Y','2025-10-23 00:00:00'),(79302,11,'EH92.0','Corns or callosities','Y','2025-10-23 00:00:00'),(79301,11,'XM38M3','Cornhusker\'s lotion','Y','2025-10-23 00:00:00'),(79300,11,'9A76','Corneal ulcer','Y','2025-10-23 00:00:00'),(79299,11,'9A78.51','Corneal staphyloma','Y','2025-10-23 00:00:00'),(79298,11,'9A77.Z','Corneal scars or opacities, unspecified','Y','2025-10-23 00:00:00'),(79297,11,'9A77','Corneal scars or opacities','Y','2025-10-23 00:00:00'),(79296,11,'9A78.1','Corneal pigmentations or deposits','Y','2025-10-23 00:00:00'),(79295,11,'SC74','Corneal opacity disorder (TM1)','Y','2025-10-23 00:00:00'),(79294,11,'9A78.2Z','Corneal oedema, unspecified','Y','2025-10-23 00:00:00'),(79293,11,'9A78.2','Corneal oedema','Y','2025-10-23 00:00:00'),(79292,11,'9A78.0','Corneal neovascularization','Y','2025-10-23 00:00:00'),(79291,11,'9A78.4','Corneal degeneration','Y','2025-10-23 00:00:00'),(79290,11,'9A78.5Z','Corneal deformities, unspecified','Y','2025-10-23 00:00:00'),(79289,11,'9A78.5','Corneal deformities','Y','2025-10-23 00:00:00'),(79288,11,'9A78.9','Corneal abscess','Y','2025-10-23 00:00:00'),(79287,11,'QB23','Cornea donor','Y','2025-10-23 00:00:00'),(79286,11,'XA4C02','Cornea','Y','2025-10-23 00:00:00'),(79285,11,'XM7033','Corn starch','Y','2025-10-23 00:00:00'),(79284,11,'XM7PM1','Corn cures','Y','2025-10-23 00:00:00'),(79283,11,'XM5M71','Corifollitropin alfa','Y','2025-10-23 00:00:00'),(79282,11,'XM1926','Cordite vapor','Y','2025-10-23 00:00:00'),(79281,11,'XM5NJ3','Cordite','Y','2025-10-23 00:00:00'),(79280,11,'XE2MS','Cord of household appliance, extension cord','Y','2025-10-23 00:00:00'),(79279,11,'XM6270','Corbadrine','Y','2025-10-23 00:00:00'),(79278,11,'XM0CW4','Coral venom','Y','2025-10-23 00:00:00'),(79277,11,'XM4WV8','Coral snake venom','Y','2025-10-23 00:00:00'),(79276,11,'XE75E','Coral','Y','2025-10-23 00:00:00'),(79275,11,'XA2Y48','Coracoid process of the scapula','Y','2025-10-23 00:00:00'),(79274,11,'XA5EW9','Coracohumeral ligament','Y','2025-10-23 00:00:00'),(79273,11,'XA9WP5','Coracoclavicular ligament','Y','2025-10-23 00:00:00'),(79272,11,'XA83R8','Coracobrachialis tendon','Y','2025-10-23 00:00:00'),(79271,11,'XA0TQ5','Coracobrachialis muscle','Y','2025-10-23 00:00:00'),(79270,11,'XA8MA3','Coracoacromial ligament','Y','2025-10-23 00:00:00'),(79269,11,'BB01.5','Cor pulmonale','Y','2025-10-23 00:00:00'),(79268,11,'MB23.5','Coprolalia','Y','2025-10-23 00:00:00'),(79267,11,'XM8SC0','Copper','Y','2025-10-23 00:00:00'),(79266,11,'XM6859','Copper sulfate nonmedicinal','Y','2025-10-23 00:00:00'),(79265,11,'XM9FG8','Copper sulfate medicinal emetic','Y','2025-10-23 00:00:00'),(79264,11,'XM3X79','Copper sulfate cupric medicinal eye','Y','2025-10-23 00:00:00'),(79263,11,'XM2954','Copper sulfate cupric medicinal ear','Y','2025-10-23 00:00:00'),(79262,11,'XM4JM7','Copper sulfate','Y','2025-10-23 00:00:00'),(79261,11,'XM3757','Copper pesticide, not elsewhere classified','Y','2025-10-23 00:00:00'),(79260,11,'XM48K0','Copper oxychloride','Y','2025-10-23 00:00:00'),(79258,11,'XM7MQ0','Copper oleinate','Y','2025-10-23 00:00:00'),(79259,11,'XM0Y98','Copper oxide','Y','2025-10-23 00:00:00'),(79255,11,'XM0EX6','Copper hydroxide','Y','2025-10-23 00:00:00'),(79256,11,'XM5DN1','Copper medicinal (trace)','Y','2025-10-23 00:00:00'),(79257,11,'XM55D5','Copper oleate','Y','2025-10-23 00:00:00'),(79253,11,'XM3ME7','Copper emetic','Y','2025-10-23 00:00:00'),(79254,11,'XM4M83','Copper gluconate','Y','2025-10-23 00:00:00'),(79250,11,'XM5U84','Copper acetate','Y','2025-10-23 00:00:00'),(79251,11,'5B5K.6','Copper deficiency','Y','2025-10-23 00:00:00'),(79252,11,'3A03.3','Copper deficiency anaemia','Y','2025-10-23 00:00:00'),(79248,11,'XM44N1','Copanlisib','Y','2025-10-23 00:00:00'),(79249,11,'XM5KH2','Copper','Y','2025-10-23 00:00:00'),(79246,11,'XE9LY','Cooking pot, pan','Y','2025-10-23 00:00:00'),(79247,11,'XE7P0','Cooling module component of medical device','Y','2025-10-23 00:00:00'),(79243,11,'8A66.0','Convulsive status epilepticus','Y','2025-10-23 00:00:00'),(79244,11,'XE4G0','Cooking or food processing utensil','Y','2025-10-23 00:00:00'),(79245,11,'XE68B','Cooking or kitchen appliance','Y','2025-10-23 00:00:00'),(79240,11,'XE6T6','Conveyors','Y','2025-10-23 00:00:00'),(79241,11,'XM1AG7','Convidecia','Y','2025-10-23 00:00:00'),(79242,11,'SD20','Convulsion disorder (TM1)','Y','2025-10-23 00:00:00'),(79237,11,'9C84.52','Convergence-retraction nystagmus','Y','2025-10-23 00:00:00'),(79238,11,'VW01','Conversation','Y','2025-10-23 00:00:00'),(79239,11,'VD05','Conversation [WHODAS]','Y','2025-10-23 00:00:00'),(79235,11,'9C83.3','Convergence excess','Y','2025-10-23 00:00:00'),(79236,11,'9C83.2','Convergence insufficiency','Y','2025-10-23 00:00:00'),(79232,11,'QB7Z','Convalescence, unspecified','Y','2025-10-23 00:00:00'),(79233,11,'XM11U7','Convallaria glycosides','Y','2025-10-23 00:00:00'),(79234,11,'XM9T69','Convallaria majalis plant','Y','2025-10-23 00:00:00'),(79230,11,'QB71','Convalescence following psychotherapy','Y','2025-10-23 00:00:00'),(79231,11,'QB72','Convalescence following treatment of fracture','Y','2025-10-23 00:00:00'),(79228,11,'QB70','Convalescence following chemotherapy','Y','2025-10-23 00:00:00'),(79229,11,'QB73','Convalescence following combined treatment','Y','2025-10-23 00:00:00'),(79225,11,'NB92.10','Contusion of ureter','Y','2025-10-23 00:00:00'),(79226,11,'NB92.30','Contusion of urethra','Y','2025-10-23 00:00:00'),(79227,11,'XA2FQ1','Conus medullaris','Y','2025-10-23 00:00:00'),(79223,11,'ND11.6','Contusion of toe','Y','2025-10-23 00:00:00'),(79224,11,'NC56.01','Contusion of ulnar artery at wrist or hand level','Y','2025-10-23 00:00:00'),(79220,11,'NB32.50','Contusion of thoracic trachea','Y','2025-10-23 00:00:00'),(79221,11,'NA80.6','Contusion of thorax','Y','2025-10-23 00:00:00'),(79222,11,'NA20.1','Contusion of throat','Y','2025-10-23 00:00:00'),(79218,11,'NA07.4A','Contusion of temporal lobe','Y','2025-10-23 00:00:00'),(79219,11,'NC70.3','Contusion of thigh','Y','2025-10-23 00:00:00'),(79215,11,'NB91.00','Contusion of spleen, minor','Y','2025-10-23 00:00:00'),(79216,11,'NB91.50','Contusion of stomach','Y','2025-10-23 00:00:00'),(79217,11,'NC56.21','Contusion of superficial palmar arch','Y','2025-10-23 00:00:00'),(79214,11,'NB91.01','Contusion of spleen, major','Y','2025-10-23 00:00:00'),(79212,11,'NC10.1','Contusion of shoulder or upper arm','Y','2025-10-23 00:00:00'),(79213,11,'NB91.70','Contusion of small intestine','Y','2025-10-23 00:00:00'),(79210,11,'NB91.90','Contusion of rectum','Y','2025-10-23 00:00:00'),(79211,11,'NA00.01','Contusion of scalp','Y','2025-10-23 00:00:00'),(79209,11,'NC56.11','Contusion of radial artery at wrist or hand level','Y','2025-10-23 00:00:00'),(79207,11,'NB91.40','Contusion of pancreas','Y','2025-10-23 00:00:00'),(79208,11,'NA07.4E','Contusion of parietal lobe','Y','2025-10-23 00:00:00'),(79206,11,'NB92.40','Contusion of ovary','Y','2025-10-23 00:00:00'),(79204,11,'NA00.7','Contusion of other or unspecified sites of head','Y','2025-10-23 00:00:00'),(79205,11,'NC51.10','Contusion of other parts of wrist or hand','Y','2025-10-23 00:00:00'),(79203,11,'NC90.3','Contusion of other or unspecified parts of lower leg','Y','2025-10-23 00:00:00'),(79201,11,'ND11.8','Contusion of other or unspecified parts of foot','Y','2025-10-23 00:00:00'),(79202,11,'NC30.3','Contusion of other or unspecified parts of forearm','Y','2025-10-23 00:00:00'),(79200,11,'NA07.4F','Contusion of occipital lobe','Y','2025-10-23 00:00:00'),(79198,11,'NB32.30','Contusion of lung','Y','2025-10-23 00:00:00'),(79199,11,'NC56.61','Contusion of multiple blood vessels at wrist or hand level','Y','2025-10-23 00:00:00'),(79196,11,'NB91.10','Contusion of liver','Y','2025-10-23 00:00:00'),(79197,11,'NB50.1','Contusion of lower back or pelvis','Y','2025-10-23 00:00:00'),(79194,11,'NB92.00','Contusion of kidney, minor','Y','2025-10-23 00:00:00'),(79195,11,'NC90.1','Contusion of knee','Y','2025-10-23 00:00:00'),(79192,11,'NC70.1','Contusion of hip','Y','2025-10-23 00:00:00'),(79193,11,'NB92.01','Contusion of kidney, major','Y','2025-10-23 00:00:00'),(79191,11,'NB31.10','Contusion of heart without haemopericardium','Y','2025-10-23 00:00:00'),(79189,11,'NC51.01','Contusion of finger or thumb','Y','2025-10-23 00:00:00'),(79190,11,'NB31.00','Contusion of heart with haemopericardium','Y','2025-10-23 00:00:00'),(79188,11,'NA00.11','Contusion of eyelid or periocular area','Y','2025-10-23 00:00:00'),(79186,11,'NB50.5','Contusion of external genital organs','Y','2025-10-23 00:00:00'),(79187,11,'NA06.9','Contusion of eyeball or orbital tissues','Y','2025-10-23 00:00:00'),(79184,11,'NB91.60','Contusion of duodenum','Y','2025-10-23 00:00:00'),(79185,11,'NC30.1','Contusion of elbow','Y','2025-10-23 00:00:00'),(79183,11,'NC56.31','Contusion of deep palmar arch','Y','2025-10-23 00:00:00'),(79181,11,'NB32.40','Contusion of bronchus','Y','2025-10-23 00:00:00'),(79182,11,'NB91.80','Contusion of colon','Y','2025-10-23 00:00:00'),(79180,11,'NA80.1','Contusion of breast','Y','2025-10-23 00:00:00'),(79179,11,'NC56.41','Contusion of blood vessel of thumb','Y','2025-10-23 00:00:00'),(79177,11,'NB92.20','Contusion of bladder','Y','2025-10-23 00:00:00'),(79178,11,'NC56.51','Contusion of blood vessel of other finger','Y','2025-10-23 00:00:00'),(79175,11,'NB50.3','Contusion of abdominal wall','Y','2025-10-23 00:00:00'),(79176,11,'ND11.1','Contusion of ankle','Y','2025-10-23 00:00:00'),(79173,11,'XE83L','Controller component of medical device','Y','2025-10-23 00:00:00'),(79174,11,'XJ9NV','Contusion','Y','2025-10-23 00:00:00'),(79172,11,'XE7W8','Controlled fire, flame, not in building or structure','Y','2025-10-23 00:00:00'),(79170,11,'XE3YJ','Control valve component of medical device','Y','2025-10-23 00:00:00'),(79171,11,'XE27S','Controlled fire, flame in building or structure','Y','2025-10-23 00:00:00'),(79168,11,'FB42.1','Contracture of tendon sheath','Y','2025-10-23 00:00:00'),(79169,11,'XK3Y','Contralateral','Y','2025-10-23 00:00:00'),(79166,11,'FA34.3','Contracture of joint','Y','2025-10-23 00:00:00'),(79167,11,'FB32.4','Contracture of muscle','Y','2025-10-23 00:00:00'),(79164,11,'GC00.2','Contracted urinary bladder','Y','2025-10-23 00:00:00'),(79165,11,'9A24.0','Contraction of orbit','Y','2025-10-23 00:00:00'),(79163,11,'9A25.2','Contracted socket','Y','2025-10-23 00:00:00'),(79161,11,'XE4QC','Continuous firing','Y','2025-10-23 00:00:00'),(79162,11,'XD7EC8','Continuous positive airway pressure units (CPAP)','Y','2025-10-23 00:00:00'),(79160,11,'XD7QD7','Continuous dialysis sets','Y','2025-10-23 00:00:00'),(79158,11,'JA81.1','Continuing pregnancy after abortion of one fetus or more','Y','2025-10-23 00:00:00'),(79159,11,'JA81.2','Continuing pregnancy after intrauterine death of one fetus or more','Y','2025-10-23 00:00:00'),(79157,11,'XE6YM','Context of assault, unarmed robbery','Y','2025-10-23 00:00:00'),(79156,11,'XE29Q','Context of assault, touching or fondling of genitals','Y','2025-10-23 00:00:00'),(79155,11,'XE580','Context of assault, torture','Y','2025-10-23 00:00:00'),(79154,11,'XE85Q','Context of assault, sodomy or attempted sodomy','Y','2025-10-23 00:00:00'),(79153,11,'XE213','Context of assault, sexual assault','Y','2025-10-23 00:00:00'),(79152,11,'XE5AY','Context of assault, selling drugs or drug business','Y','2025-10-23 00:00:00'),(79151,11,'XE6FN','Context of assault, retaliation or revenge','Y','2025-10-23 00:00:00'),(79150,11,'XE6U2','Context of assault, rape or attempted rape','Y','2025-10-23 00:00:00'),(79149,11,'XE1LL','Context of assault, probable drug involvement, but no positive evidence','Y','2025-10-23 00:00:00'),(79148,11,'XE05L','Context of assault, other employment disputes','Y','2025-10-23 00:00:00'),(79147,11,'XE18N','Context of assault, oral sex','Y','2025-10-23 00:00:00'),(79146,11,'XE90G','Context of assault, neglect','Y','2025-10-23 00:00:00'),(79145,11,'XE3G0','Context of assault, mercy killing or euthanasia','Y','2025-10-23 00:00:00'),(79144,11,'XE4XA','Context of assault, malicious misconduct','Y','2025-10-23 00:00:00'),(79143,11,'XE1N7','Context of assault, kidnapping','Y','2025-10-23 00:00:00'),(79142,11,'XE2A5','Context of assault, gang rivalry','Y','2025-10-23 00:00:00'),(79141,11,'XE3QM','Context of assault, gang initiation','Y','2025-10-23 00:00:00'),(79140,11,'XE1GC','Context of assault, failure to pay a drug debt','Y','2025-10-23 00:00:00'),(79139,11,'XE5A7','Context of assault, drive-by shooting','Y','2025-10-23 00:00:00'),(79138,11,'XE0NB','Context of assault, contract injuring or killing','Y','2025-10-23 00:00:00'),(79137,11,'XE0LR','Context of assault, burglary','Y','2025-10-23 00:00:00'),(79136,11,'XE4P2','Context of assault, bullying, intimidation','Y','2025-10-23 00:00:00'),(79135,11,'XE2QF','Context of assault, blackmail','Y','2025-10-23 00:00:00'),(79134,11,'XE989','Context of assault, armed robbery','Y','2025-10-23 00:00:00'),(79133,11,'XE0Z6','Context of assault, argument over possession, use, or cost of drugs','Y','2025-10-23 00:00:00'),(79132,11,'XE8NL','Context of assault, altercation about traffic','Y','2025-10-23 00:00:00'),(79131,11,'XE3YH','Context of assault, altercation about terminating a love relationship','Y','2025-10-23 00:00:00'),(79130,11,'XE47F','Context of assault, altercation about sports','Y','2025-10-23 00:00:00'),(79129,11,'XE6DB','Context of assault, altercation about sex','Y','2025-10-23 00:00:00'),(79128,11,'XE860','Context of assault, altercation about personally-held views regarding religious or spiritual matters','Y','2025-10-23 00:00:00'),(79127,11,'XE6YL','Context of assault, altercation about personally-held views regarding racial or ethnic issues','Y','2025-10-23 00:00:00'),(79126,11,'XE03X','Context of assault, altercation about personally-held views regarding politics','Y','2025-10-23 00:00:00'),(79125,11,'XE1Q8','Context of assault, altercation about personally-held views regarding issues of gender or sexual orientation','Y','2025-10-23 00:00:00'),(79124,11,'XE1RW','Context of assault, altercation about personally-held views regarding cultural issues','Y','2025-10-23 00:00:00'),(79123,11,'XE3KE','Context of assault, altercation about past altercation','Y','2025-10-23 00:00:00'),(79122,11,'XE00W','Context of assault, altercation about other financial losses related to employment or business','Y','2025-10-23 00:00:00'),(79121,11,'XE62S','Context of assault, altercation about money or property','Y','2025-10-23 00:00:00'),(79120,11,'XE4ML','Context of assault, altercation about loss of employment','Y','2025-10-23 00:00:00'),(79119,11,'XE81U','Context of assault, altercation about gambling','Y','2025-10-23 00:00:00'),(79118,11,'XE37R','Context of assault, altercation about family issues, in-laws','Y','2025-10-23 00:00:00'),(79117,11,'XE1F9','Context of assault, altercation about family issues, family honour','Y','2025-10-23 00:00:00'),(79116,11,'XE1B3','Context of assault, altercation about family issues, dowry issues','Y','2025-10-23 00:00:00'),(79115,11,'XE2RR','Context of assault, altercation about family issues, children','Y','2025-10-23 00:00:00'),(79114,11,'XE1XB','Context of assault, altercation about current love relationship','Y','2025-10-23 00:00:00'),(79113,11,'XE92U','Context of assault, additional context, mistaken identity','Y','2025-10-23 00:00:00'),(79112,11,'XE4XW','Contamination or decontamination problem','Y','2025-10-23 00:00:00'),(79111,11,'XE2VF','Contamination of environment by device identified','Y','2025-10-23 00:00:00'),(79110,11,'XE2AR','Contamination of device ingredient or reagent','Y','2025-10-23 00:00:00'),(79109,11,'XE9L2','Contamination during use','Y','2025-10-23 00:00:00'),(79108,11,'XE5G7','Container made from plastic, wood, or clay','Y','2025-10-23 00:00:00'),(79107,11,'PH34','Contact with steam, hot vapour, air or gases with undetermined intent','Y','2025-10-23 00:00:00'),(79106,11,'PG69','Contact with plant of undetermined intent','Y','2025-10-23 00:00:00'),(79105,11,'PH0Y','Contact with other specified object, not elsewhere classified with undetermined intent','Y','2025-10-23 00:00:00'),(79104,11,'QC90.5','Contact with or exposure to viral hepatitis','Y','2025-10-23 00:00:00'),(79103,11,'QC90.1','Contact with or exposure to tuberculosis','Y','2025-10-23 00:00:00'),(79102,11,'QC90.4','Contact with or exposure to rubella','Y','2025-10-23 00:00:00'),(79101,11,'QC90.3','Contact with or exposure to rabies','Y','2025-10-23 00:00:00'),(79100,11,'QC90.7','Contact with or exposure to pediculosis, acariasis or other infestations','Y','2025-10-23 00:00:00'),(79099,11,'QC90.Y','Contact with or exposure to other specified communicable diseases','Y','2025-10-23 00:00:00'),(79098,11,'QC90.0Z','Contact with or exposure to intestinal infectious diseases, unspecified','Y','2025-10-23 00:00:00'),(79097,11,'QC90.0','Contact with or exposure to intestinal infectious diseases','Y','2025-10-23 00:00:00'),(79096,11,'QC90.2','Contact with or exposure to infections with a predominantly sexual mode of transmission','Y','2025-10-23 00:00:00'),(79095,11,'QC90.6','Contact with or exposure to human immunodeficiency virus','Y','2025-10-23 00:00:00'),(79094,11,'QC90.Z','Contact with or exposure to communicable diseases, unspecified','Y','2025-10-23 00:00:00'),(79093,11,'QC90','Contact with or exposure to communicable diseases','Y','2025-10-23 00:00:00'),(79092,11,'PH33','Contact with hot object or liquid with undetermined intent','Y','2025-10-23 00:00:00'),(79091,11,'QC0Z','Contact with health services related to immunizations or certain other prophylactic measures, unspecified','Y','2025-10-23 00:00:00'),(79090,11,'QA1Z','Contact with health services for unspecified counselling','Y','2025-10-23 00:00:00'),(79089,11,'QA30.1Z','Contact with health services for unspecified assisted reproductive technology','Y','2025-10-23 00:00:00'),(79088,11,'QA30.0Z','Contact with health services for unspecified assisted insemination','Y','2025-10-23 00:00:00'),(79087,11,'QA30.2Z','Contact with health services for unspecified assisted fertilisation methods','Y','2025-10-23 00:00:00'),(79086,11,'QA32','Contact with health services for tuboplasty or vasoplasty after previous sterilisation','Y','2025-10-23 00:00:00'),(79085,11,'QA13','Contact with health services for tobacco use counselling','Y','2025-10-23 00:00:00'),(79084,11,'QA21.3','Contact with health services for sterilisation','Y','2025-10-23 00:00:00'),(79083,11,'QB8Z','Contact with health services for specific surgical interventions, unspecified','Y','2025-10-23 00:00:00'),(79082,11,'QB82','Contact with health services for routine or ritual circumcision','Y','2025-10-23 00:00:00'),(79081,11,'QA4Z','Contact with health services for reasons associated with reproduction, unspecified','Y','2025-10-23 00:00:00'),(79080,11,'QB80.Z','Contact with health services for prophylactic surgery, unspecified','Y','2025-10-23 00:00:00'),(79079,11,'QB80.0','Contact with health services for prophylactic surgery for risk-factors related to malignant neoplasms','Y','2025-10-23 00:00:00'),(79078,11,'QB80','Contact with health services for prophylactic surgery','Y','2025-10-23 00:00:00'),(79077,11,'QA3Z','Contact with health services for procreative management, unspecified','Y','2025-10-23 00:00:00'),(79076,11,'QA30.01','Contact with health services for procreative management by artificial insemination','Y','2025-10-23 00:00:00'),(79075,11,'QA33','Contact with health services for preconception counselling','Y','2025-10-23 00:00:00'),(79074,11,'QA21.0','Contact with health services for postcoital contraception','Y','2025-10-23 00:00:00'),(79073,11,'QB81','Contact with health services for plastic surgery for unacceptable cosmetic appearance other than hair transplant','Y','2025-10-23 00:00:00'),(79072,11,'QB91','Contact with health services for piercing of body site other than ear','Y','2025-10-23 00:00:00'),(79071,11,'QA30.13','Contact with health services for ovum implantation','Y','2025-10-23 00:00:00'),(79070,11,'QA30.22','Contact with health services for ovulation induction','Y','2025-10-23 00:00:00'),(79069,11,'QB8Y','Contact with health services for other specified surgical interventions','Y','2025-10-23 00:00:00'),(79068,11,'QA3Y','Contact with health services for other specified procreative management','Y','2025-10-23 00:00:00'),(79067,11,'QA1Y','Contact with health services for other specified counselling','Y','2025-10-23 00:00:00'),(79066,11,'QA30.1Y','Contact with health services for other specified assisted reproductive technology','Y','2025-10-23 00:00:00'),(79065,11,'QA30.0Y','Contact with health services for other specified assisted insemination','Y','2025-10-23 00:00:00'),(79064,11,'QA30.2Y','Contact with health services for other specified assisted fertilisation methods','Y','2025-10-23 00:00:00'),(79063,11,'QA30.2','Contact with health services for other assisted fertilisation methods','Y','2025-10-23 00:00:00'),(79062,11,'QB93','Contact with health services for orthodontic care','Y','2025-10-23 00:00:00'),(79061,11,'QB9Z','Contact with health services for nonsurgical interventions not involving devices, unspecified','Y','2025-10-23 00:00:00'),(79060,11,'QA21.4','Contact with health services for menstrual extraction','Y','2025-10-23 00:00:00'),(79059,11,'QA4B','Contact with health services for menopausal counselling','Y','2025-10-23 00:00:00'),(79058,11,'QA30.02','Contact with health services for medically assisted sperm insemination','Y','2025-10-23 00:00:00'),(79057,11,'QA30.Z','Contact with health services for medically assisted reproduction, unspecified','Y','2025-10-23 00:00:00'),(79056,11,'QA30','Contact with health services for medically assisted reproduction','Y','2025-10-23 00:00:00'),(79055,11,'QB92','Contact with health services for issue of repeat prescription','Y','2025-10-23 00:00:00'),(79054,11,'QA21.2','Contact with health services for insertion of contraceptive device','Y','2025-10-23 00:00:00'),(79053,11,'QA30.10','Contact with health services for in vitro fertilisation','Y','2025-10-23 00:00:00'),(79052,11,'QA14','Contact with health services for human immunodeficiency virus counselling','Y','2025-10-23 00:00:00'),(79051,11,'QA30.14','Contact with health services for harvesting ovum for in vitro fertilisation','Y','2025-10-23 00:00:00'),(79050,11,'QA30.15','Contact with health services for harvesting or implantation of ova','Y','2025-10-23 00:00:00'),(79049,11,'QB86','Contact with health services for hair transplant','Y','2025-10-23 00:00:00'),(79048,11,'QA31','Contact with health services for genetic counselling','Y','2025-10-23 00:00:00'),(79047,11,'QA21.1','Contact with health services for general counselling or advice on contraception','Y','2025-10-23 00:00:00'),(79046,11,'QA30.00','Contact with health services for gamete intrafallopian transfer','Y','2025-10-23 00:00:00'),(79045,11,'QA34','Contact with health services for fertility preservation counselling','Y','2025-10-23 00:00:00'),(79044,11,'QA30.12','Contact with health services for embryo transfer','Y','2025-10-23 00:00:00'),(79043,11,'QA30.11','Contact with health services for egg retrieval','Y','2025-10-23 00:00:00'),(79042,11,'QB90','Contact with health services for ear piercing','Y','2025-10-23 00:00:00'),(79041,11,'QA12','Contact with health services for drug use counselling or surveillance','Y','2025-10-23 00:00:00'),(79040,11,'QA10','Contact with health services for dietary counselling or surveillance','Y','2025-10-23 00:00:00'),(79039,11,'QA30.21','Contact with health services for controlled ovarian stimulation for non-assisted reproductive technology cycles','Y','2025-10-23 00:00:00'),(79038,11,'QA30.20','Contact with health services for controlled ovarian stimulation for assisted reproductive technology','Y','2025-10-23 00:00:00'),(79037,11,'QA21.Z','Contact with health services for contraceptive management, unspecified','Y','2025-10-23 00:00:00'),(79036,11,'QA21','Contact with health services for contraceptive management','Y','2025-10-23 00:00:00'),(79035,11,'QA20','Contact with health services for concerns about pregnancy','Y','2025-10-23 00:00:00'),(79034,11,'QD31','Contact with health services for concerns about body image related to pregnancy','Y','2025-10-23 00:00:00'),(79033,11,'QA30.1','Contact with health services for assisted reproductive technology','Y','2025-10-23 00:00:00'),(79032,11,'QA30.0','Contact with health services for assisted insemination','Y','2025-10-23 00:00:00'),(79031,11,'QA11','Contact with health services for alcohol use counselling or surveillance','Y','2025-10-23 00:00:00'),(79030,11,'QA35','Contact with health services by gestational carrier','Y','2025-10-23 00:00:00'),(79029,11,'QC2Z','Contact with health services associated with the health of others, unspecified','Y','2025-10-23 00:00:00'),(79028,11,'EK10.1','Contact urticaria due to food allergen','Y','2025-10-23 00:00:00'),(79027,11,'EB01.3','Contact urticaria','Y','2025-10-23 00:00:00'),(79026,11,'9A77.0','Contact lens-associated corneal infiltrates','Y','2025-10-23 00:00:00'),(79025,11,'XM1WZ1','Contact lens solution','Y','2025-10-23 00:00:00'),(79024,11,'XM5CM0','Contact laxatives','Y','2025-10-23 00:00:00'),(79023,11,'DA02.3','Contact gingivostomatitis','Y','2025-10-23 00:00:00'),(79022,11,'EG40','Contact dermatitis of external ear','Y','2025-10-23 00:00:00'),(79021,11,'SD72','Consumptive disorder (TM1)','Y','2025-10-23 00:00:00'),(79020,11,'XA9568','Constrictor of pharynx superior muscle','Y','2025-10-23 00:00:00'),(79019,11,'XA3S80','Constrictor of pharynx middle muscle','Y','2025-10-23 00:00:00'),(79018,11,'XA0UH6','Constrictor of pharynx inferior muscle','Y','2025-10-23 00:00:00'),(79017,11,'BB22','Constrictive pericarditis','Y','2025-10-23 00:00:00'),(79016,11,'LD26.5','Constriction rings','Y','2025-10-23 00:00:00'),(79015,11,'MB24.60','Constricted affect','Y','2025-10-23 00:00:00'),(79014,11,'5B12','Constitutional tall stature','Y','2025-10-23 00:00:00'),(79013,11,'4B00.10','Constitutional neutrophilia','Y','2025-10-23 00:00:00'),(79012,11,'4B00.00','Constitutional neutropaenia','Y','2025-10-23 00:00:00'),(79011,11,'ED72.0','Constitutional hirsutism','Y','2025-10-23 00:00:00'),(79010,11,'4B03.0','Constitutional eosinophilia','Y','2025-10-23 00:00:00'),(79009,11,'4B01.0Z','Constitutional disorders of neutrophil function, unspecified','Y','2025-10-23 00:00:00'),(79008,11,'4B01.0','Constitutional disorders of neutrophil function','Y','2025-10-23 00:00:00'),(79007,11,'MG44.13','Constitutional delay of growth and puberty','Y','2025-10-23 00:00:00'),(79006,11,'4B02.0','Constitutional decrease in eosinophil number','Y','2025-10-23 00:00:00'),(79005,11,'SA57','Constipation disorder (TM1)','Y','2025-10-23 00:00:00'),(79004,11,'ME05.0','Constipation','Y','2025-10-23 00:00:00'),(79003,11,'XK6P','Consolidated distribution','Y','2025-10-23 00:00:00'),(79002,11,'XA4PU7','Conoid ligament','Y','2025-10-23 00:00:00'),(79001,11,'XM9BX0','Conocybe filaris mushroom','Y','2025-10-23 00:00:00'),(79000,11,'XE4T6','Connector pin component of medical device','Y','2025-10-23 00:00:00'),(78999,11,'XE7EE','Connector or coupler component of medical device','Y','2025-10-23 00:00:00'),(78998,11,'XA6YH7','Connective, subcutaneous and other soft tissues of nasal cavity','Y','2025-10-23 00:00:00'),(78997,11,'ME93.3','Connective tissue stenosis of neural canal','Y','2025-10-23 00:00:00'),(78996,11,'LC20','Connective tissue hamartoma','Y','2025-10-23 00:00:00'),(78995,11,'ME93.6','Connective tissue and disc stenosis of intervertebral foramina','Y','2025-10-23 00:00:00'),(78994,11,'XA5A05','Connective tissue','Y','2025-10-23 00:00:00'),(78993,11,'XA0KR7','Connective and other soft tissues of uterus','Y','2025-10-23 00:00:00'),(78992,11,'XA2PK9','Connective and other soft tissues of thymus','Y','2025-10-23 00:00:00'),(78991,11,'XA3UT7','Connective and other soft tissues of middle ear','Y','2025-10-23 00:00:00'),(78990,11,'XA8607','Connective and other soft tissues of mediastinum','Y','2025-10-23 00:00:00'),(78989,11,'XA2PV7','Connective and other soft tissues of lung','Y','2025-10-23 00:00:00'),(78988,11,'XA9WT4','Connective and other soft tissue of orbit','Y','2025-10-23 00:00:00'),(78987,11,'XA3113','Connective and other soft tissue of heart','Y','2025-10-23 00:00:00'),(78986,11,'XE3UR','Connection problem','Y','2025-10-23 00:00:00'),(78985,11,'9A11.3','Conjunctivochalasis','Y','2025-10-23 00:00:00'),(78984,11,'9A60.Z','Conjunctivitis, unspecified','Y','2025-10-23 00:00:00'),(78983,11,'9A60.32','Conjunctivitis due to Koch-Weeks bacillus','Y','2025-10-23 00:00:00'),(78982,11,'1D84.0','Conjunctivitis due to adenovirus','Y','2025-10-23 00:00:00'),(78981,11,'9A60','Conjunctivitis','Y','2025-10-23 00:00:00'),(78980,11,'9A61.4Z','Conjunctival vascular disorders, unspecified','Y','2025-10-23 00:00:00'),(78979,11,'9A61.4','Conjunctival vascular disorders','Y','2025-10-23 00:00:00'),(78978,11,'9A61.3','Conjunctival scars','Y','2025-10-23 00:00:00'),(78977,11,'9A61.5','Conjunctival or subconjunctival haemorrhage','Y','2025-10-23 00:00:00'),(78976,11,'9A61.6','Conjunctival or subconjunctival degenerations or deposits','Y','2025-10-23 00:00:00'),(78975,11,'XH8FS8','Conjunctival naevus','Y','2025-10-23 00:00:00'),(78974,11,'2E81.01','Conjunctival haemangioma or haemolymphangioma','Y','2025-10-23 00:00:00'),(78973,11,'XA6EZ4','Conjunctival fornices','Y','2025-10-23 00:00:00'),(78972,11,'9D23','Conjunctival blebitis after glaucoma surgery','Y','2025-10-23 00:00:00'),(78971,11,'XA8PS3','Conjunctiva','Y','2025-10-23 00:00:00'),(78970,11,'XM76F9','Conjugated estrogenic substances','Y','2025-10-23 00:00:00'),(78969,11,'LD2G','Conjoined twins','Y','2025-10-23 00:00:00'),(78968,11,'XM25L2','Conivaptan','Y','2025-10-23 00:00:00'),(78967,11,'XM9Z51','Conium maculatum plant','Y','2025-10-23 00:00:00'),(78966,11,'XM3FY5','Coniine','Y','2025-10-23 00:00:00'),(78965,11,'XN4AQ','Conidiobolus incongruus','Y','2025-10-23 00:00:00'),(78964,11,'XN3KM','Conidiobolus coronatus','Y','2025-10-23 00:00:00'),(78963,11,'XN62A','Conidiobolus','Y','2025-10-23 00:00:00'),(78962,11,'1F26','Conidiobolomycosis','Y','2025-10-23 00:00:00'),(78961,11,'XM1V31','Congo red','Y','2025-10-23 00:00:00'),(78960,11,'BD10','Congestive heart failure','Y','2025-10-23 00:00:00'),(78959,11,'LA13.72','Congenitally elevated optic disc','Y','2025-10-23 00:00:00'),(78958,11,'LA85.00','Congenitally corrected transposition of great arteries','Y','2025-10-23 00:00:00'),(78957,11,'KA62.0','Congenital Zika virus infection','Y','2025-10-23 00:00:00'),(78956,11,'LA13.3','Congenital vitreoretinal dysplasia','Y','2025-10-23 00:00:00'),(78955,11,'KA62.9','Congenital viral hepatitis','Y','2025-10-23 00:00:00'),(78954,11,'LB31.D','Congenital vesico-uretero-renal reflux','Y','2025-10-23 00:00:00'),(78953,11,'LB98.4','Congenital vertical talus','Y','2025-10-23 00:00:00'),(78952,11,'LA50','Congenital velopharyngeal incompetence','Y','2025-10-23 00:00:00'),(78951,11,'LD26.6Z','Congenital vascular bone syndromes, unspecified','Y','2025-10-23 00:00:00'),(78950,11,'LD26.6','Congenital vascular bone syndromes','Y','2025-10-23 00:00:00'),(78949,11,'LB98.0Z','Congenital varus deformities of feet, unspecified','Y','2025-10-23 00:00:00'),(78948,11,'LB98.0','Congenital varus deformities of feet','Y','2025-10-23 00:00:00'),(78947,11,'KA62.2','Congenital Varicella Zoster virus infection','Y','2025-10-23 00:00:00'),(78946,11,'LB98.2Z','Congenital valgus deformities of feet, unspecified','Y','2025-10-23 00:00:00'),(78945,11,'LB98.2','Congenital valgus deformities of feet','Y','2025-10-23 00:00:00'),(78944,11,'KA61.0','Congenital tuberculosis','Y','2025-10-23 00:00:00'),(78943,11,'LA87.01','Congenital tricuspid valvar stenosis','Y','2025-10-23 00:00:00'),(78942,11,'LA87.00','Congenital tricuspid regurgitation','Y','2025-10-23 00:00:00'),(78941,11,'LA73.1','Congenital tracheomalacia','Y','2025-10-23 00:00:00'),(78940,11,'KA64.0','Congenital toxoplasmosis','Y','2025-10-23 00:00:00'),(78939,11,'LA62','Congenital torticollis','Y','2025-10-23 00:00:00'),(78938,11,'LB45.3','Congenital torsion of ovary','Y','2025-10-23 00:00:00'),(78937,11,'3B63.0','Congenital thrombocytosis','Y','2025-10-23 00:00:00'),(78936,11,'3B64.0Z','Congenital thrombocytopenia, unspecified','Y','2025-10-23 00:00:00'),(78935,11,'3B64.0','Congenital thrombocytopenia','Y','2025-10-23 00:00:00'),(78934,11,'1A60.Z','Congenital syphilis, unspecified','Y','2025-10-23 00:00:00'),(78933,11,'1A60','Congenital syphilis','Y','2025-10-23 00:00:00'),(78932,11,'LA8A.3','Congenital supravalvar aortic stenosis','Y','2025-10-23 00:00:00'),(78931,11,'5C61.2','Congenital sucrase-isomaltase deficiency','Y','2025-10-23 00:00:00'),(78930,11,'KC40.0','Congenital sucking blisters','Y','2025-10-23 00:00:00'),(78929,11,'LA8A.6','Congenital subpulmonary stenosis','Y','2025-10-23 00:00:00'),(78928,11,'LB74.1','Congenital subluxation of hip','Y','2025-10-23 00:00:00'),(78927,11,'LA71.3','Congenital subglottic stenosis','Y','2025-10-23 00:00:00'),(78926,11,'LA8A.5','Congenital subaortic stenosis','Y','2025-10-23 00:00:00'),(78925,11,'LA61','Congenital sternomastoid tumour','Y','2025-10-23 00:00:00'),(78924,11,'LB12.3','Congenital stenosis or stricture of oesophagus','Y','2025-10-23 00:00:00'),(78923,11,'LA14.14','Congenital stenosis or stricture of lacrimal duct','Y','2025-10-23 00:00:00'),(78922,11,'LB20.22','Congenital stenosis or stricture of bile ducts','Y','2025-10-23 00:00:00'),(78921,11,'LA74.0','Congenital stenosis or atresia of bronchus','Y','2025-10-23 00:00:00'),(78920,11,'LA73.0','Congenital stenosis of trachea','Y','2025-10-23 00:00:00'),(78919,11,'LB73.2A','Congenital spondylolisthesis','Y','2025-10-23 00:00:00'),(78918,11,'LB30.2','Congenital single renal cyst','Y','2025-10-23 00:00:00'),(78917,11,'3A72.0Z','Congenital sideroblastic anaemias, unspecified','Y','2025-10-23 00:00:00'),(78916,11,'3A72.0','Congenital sideroblastic anaemias','Y','2025-10-23 00:00:00'),(78915,11,'LB91','Congenital shoulder dislocation','Y','2025-10-23 00:00:00'),(78914,11,'LB15.2','Congenital short bowel','Y','2025-10-23 00:00:00'),(78913,11,'LA75.6','Congenital sequestration of lung','Y','2025-10-23 00:00:00'),(78912,11,'AB50.1','Congenital sensorineural hearing loss','Y','2025-10-23 00:00:00'),(78911,11,'LB73.25','Congenital scoliosis due to congenital bony malformation','Y','2025-10-23 00:00:00'),(78910,11,'KA62.8','Congenital rubella syndrome','Y','2025-10-23 00:00:00'),(78909,11,'LA88.0','Congenital right ventricular outflow tract obstruction','Y','2025-10-23 00:00:00'),(78908,11,'LA13.5','Congenital retinal aneurysm','Y','2025-10-23 00:00:00'),(78907,11,'KC01','Congenital renal failure','Y','2025-10-23 00:00:00'),(78906,11,'LA90.40','Congenital renal artery stenosis','Y','2025-10-23 00:00:00'),(78905,11,'LB42.2','Congenital rectovaginal fistula','Y','2025-10-23 00:00:00'),(78904,11,'3A60.Z','Congenital pure red cell aplasia, unspecified','Y','2025-10-23 00:00:00'),(78903,11,'3A60','Congenital pure red cell aplasia','Y','2025-10-23 00:00:00'),(78902,11,'LA86.3','Congenital pulmonary venous stenosis or hypoplasia','Y','2025-10-23 00:00:00'),(78901,11,'LA8A.00','Congenital pulmonary valvar stenosis','Y','2025-10-23 00:00:00'),(78900,11,'LA8A.01','Congenital pulmonary regurgitation','Y','2025-10-23 00:00:00'),(78899,11,'LA8A.1Z','Congenital pulmonary atresia, unspecified','Y','2025-10-23 00:00:00'),(78898,11,'LA8A.1','Congenital pulmonary atresia','Y','2025-10-23 00:00:00'),(78897,11,'LA75.4','Congenital pulmonary airway malformations','Y','2025-10-23 00:00:00'),(78896,11,'LA14.04','Congenital ptosis','Y','2025-10-23 00:00:00'),(78895,11,'LB31.1','Congenital primary megaureter','Y','2025-10-23 00:00:00'),(78894,11,'LA90.41','Congenital precerebral nonruptured aneurysm','Y','2025-10-23 00:00:00'),(78893,11,'3A80.Z','Congenital polycythaemia, unspecified','Y','2025-10-23 00:00:00'),(78892,11,'3A80','Congenital polycythaemia','Y','2025-10-23 00:00:00'),(78891,11,'KB24','Congenital pneumonia','Y','2025-10-23 00:00:00'),(78889,11,'LB98.1','Congenital pes planus','Y','2025-10-23 00:00:00'),(78890,11,'3B50.1','Congenital plasminogen activator inhibitor type 1 deficiency','Y','2025-10-23 00:00:00'),(78888,11,'LB98.3','Congenital pes cavus','Y','2025-10-23 00:00:00'),(78887,11,'LA8D','Congenital pericardial anomaly','Y','2025-10-23 00:00:00'),(78886,11,'LA70.3','Congenital perforated nasal septum','Y','2025-10-23 00:00:00'),(78885,11,'LB94','Congenital patella dislocation','Y','2025-10-23 00:00:00'),(78883,11,'9A23.0','Congenital orbital cyst','Y','2025-10-23 00:00:00'),(78884,11,'KA62.7','Congenital parvovirus syndrome','Y','2025-10-23 00:00:00'),(78881,11,'9C40.B0','Congenital optic atrophy','Y','2025-10-23 00:00:00'),(78882,11,'3B1Z','Congenital or constitutional haemorrhagic condition, unspecified','Y','2025-10-23 00:00:00'),(78880,11,'LB12.0','Congenital oesophageal web or ring','Y','2025-10-23 00:00:00'),(78879,11,'3B64.00','Congenital non-inherited thrombocytopenia','Y','2025-10-23 00:00:00'),(78878,11,'3A60.0','Congenital non-inherited pure red cell aplasia','Y','2025-10-23 00:00:00'),(78877,11,'8C72.0Z','Congenital myopathy with structural abnormalities, unspecified','Y','2025-10-23 00:00:00'),(78876,11,'8C72.0','Congenital myopathy with structural abnormalities','Y','2025-10-23 00:00:00'),(78875,11,'8C72.1','Congenital myopathy with no structural abnormalities','Y','2025-10-23 00:00:00'),(78874,11,'8C72.Z','Congenital myopathies, unspecified','Y','2025-10-23 00:00:00'),(78873,11,'8C72','Congenital myopathies','Y','2025-10-23 00:00:00'),(78872,11,'8C61','Congenital myasthenic syndromes','Y','2025-10-23 00:00:00'),(78871,11,'8C70.6','Congenital muscular dystrophy','Y','2025-10-23 00:00:00'),(78870,11,'AB50.2','Congenital mixed conductive and sensorineural hearing loss','Y','2025-10-23 00:00:00'),(78869,11,'LA87.11','Congenital mitral valvar stenosis','Y','2025-10-23 00:00:00'),(78868,11,'LA87.10','Congenital mitral regurgitation','Y','2025-10-23 00:00:00'),(78867,11,'3A91','Congenital methaemoglobinaemia','Y','2025-10-23 00:00:00'),(78866,11,'2F20.2Z','Congenital melanocytic naevus, unspecified','Y','2025-10-23 00:00:00'),(78865,11,'XH5YN0','Congenital melanocytic naevus, NOS','Y','2025-10-23 00:00:00'),(78864,11,'2F20.2','Congenital melanocytic naevus','Y','2025-10-23 00:00:00'),(78863,11,'LB31.6','Congenital megalourethra','Y','2025-10-23 00:00:00'),(78862,11,'9A00.Z','Congenital malposition of eyelids, unspecified','Y','2025-10-23 00:00:00'),(78861,11,'9A00','Congenital malposition of eyelids','Y','2025-10-23 00:00:00'),(78860,11,'8D80','Congenital malformations of the autonomic nervous system','Y','2025-10-23 00:00:00'),(78859,11,'LA13.6','Congenital malformations of choroid','Y','2025-10-23 00:00:00'),(78858,11,'LA13.7Z','Congenital malformation of optic disc, unspecified','Y','2025-10-23 00:00:00'),(78857,11,'LA13.7','Congenital malformation of optic disc','Y','2025-10-23 00:00:00'),(78856,11,'LA10.3','Congenital macrophthalmos','Y','2025-10-23 00:00:00'),(78855,11,'LA31.0','Congenital macroglossia','Y','2025-10-23 00:00:00'),(78854,11,'KB2F','Congenital lung or lobar atelectasis','Y','2025-10-23 00:00:00'),(78853,11,'LA75.5','Congenital lobar emphysema','Y','2025-10-23 00:00:00'),(78852,11,'LA88.3','Congenital left ventricular outflow tract obstruction','Y','2025-10-23 00:00:00'),(78851,11,'LA71.0','Congenital laryngomalacia','Y','2025-10-23 00:00:00'),(78850,11,'5C61.61','Congenital lactase deficiency','Y','2025-10-23 00:00:00'),(78849,11,'LB93.Z','Congenital knee dislocation, unspecified','Y','2025-10-23 00:00:00'),(78848,11,'LB93','Congenital knee dislocation','Y','2025-10-23 00:00:00'),(78847,11,'DA90.1','Congenital intestinal transport defect','Y','2025-10-23 00:00:00'),(78846,11,'DA90.2','Congenital intestinal motility disorders','Y','2025-10-23 00:00:00'),(78845,11,'KB08.2','Congenital hypotonia','Y','2025-10-23 00:00:00'),(78844,11,'5A00.0Z','Congenital hypothyroidism, unspecified','Y','2025-10-23 00:00:00'),(78843,11,'5A00.04','Congenital hypothyroidism due to iodine deficiency','Y','2025-10-23 00:00:00'),(78842,11,'5A00.0','Congenital hypothyroidism','Y','2025-10-23 00:00:00'),(78841,11,'KA8C','Congenital hypoplastic anaemia','Y','2025-10-23 00:00:00'),(78840,11,'LA75.2','Congenital hypoplasia of lung','Y','2025-10-23 00:00:00'),(78839,11,'LB16.3','Congenital hypoganglionosis of large intestine','Y','2025-10-23 00:00:00'),(78838,11,'LB13.0','Congenital hypertrophic pyloric stenosis','Y','2025-10-23 00:00:00'),(78837,11,'KB08.1','Congenital hypertonia','Y','2025-10-23 00:00:00'),(78836,11,'LA75.3','Congenital hyperplasia of lung','Y','2025-10-23 00:00:00'),(78835,11,'LB31.0','Congenital hydronephrosis','Y','2025-10-23 00:00:00'),(78834,11,'LA04.Z','Congenital hydrocephalus, unspecified','Y','2025-10-23 00:00:00'),(78833,11,'LA04','Congenital hydrocephalus','Y','2025-10-23 00:00:00'),(78832,11,'KC00','Congenital hydrocele','Y','2025-10-23 00:00:00'),(78831,11,'KA62.6','Congenital human immunodeficiency virus infection','Y','2025-10-23 00:00:00'),(78830,11,'LB13.1','Congenital hiatus hernia','Y','2025-10-23 00:00:00'),(78829,11,'XH6RC4','Congenital hemangioma, rapidly involuting','Y','2025-10-23 00:00:00'),(78828,11,'XH27G6','Congenital hemangioma, NOS','Y','2025-10-23 00:00:00'),(78827,11,'XH5427','Congenital hemangioma, non-involuting','Y','2025-10-23 00:00:00'),(78826,11,'AB50.Z','Congenital hearing impairment, unspecified','Y','2025-10-23 00:00:00'),(78825,11,'AB50','Congenital hearing impairment','Y','2025-10-23 00:00:00'),(78824,11,'LB98.5','Congenital hammer toe','Y','2025-10-23 00:00:00'),(78823,11,'LB98.20','Congenital hallux valgus','Y','2025-10-23 00:00:00'),(78822,11,'BD52.6','Congenital great vessel related acquired abnormality','Y','2025-10-23 00:00:00'),(78821,11,'LB93.0','Congenital genu recurvatum','Y','2025-10-23 00:00:00'),(78820,11,'LB93.1','Congenital genu flexum','Y','2025-10-23 00:00:00'),(78819,11,'LD27.60','Congenital generalised lipodystrophy','Y','2025-10-23 00:00:00'),(78818,11,'XH5MH2','Congenital generalised fibromatosis','Y','2025-10-23 00:00:00'),(78817,11,'9C84.1','Congenital forms of nystagmus','Y','2025-10-23 00:00:00'),(78816,11,'LB44.5','Congenital fistulae between uterus and digestive and urinary tracts','Y','2025-10-23 00:00:00'),(78815,11,'KA64.1','Congenital falciparum malaria','Y','2025-10-23 00:00:00'),(78814,11,'LA14.05','Congenital eyelid retraction','Y','2025-10-23 00:00:00'),(78813,11,'KC31','Congenital erosive or vesicular dermatosis healing with reticulated supple scarring','Y','2025-10-23 00:00:00'),(78812,11,'KA62.1','Congenital Epstein-Barr virus infection','Y','2025-10-23 00:00:00'),(78811,11,'LA14.02','Congenital entropion','Y','2025-10-23 00:00:00'),(78810,11,'KA62.5','Congenital enterovirus infection','Y','2025-10-23 00:00:00'),(78809,11,'LB92','Congenital elbow dislocation','Y','2025-10-23 00:00:00'),(78808,11,'LA14.03','Congenital ectropion','Y','2025-10-23 00:00:00'),(78807,11,'KA62.4','Congenital echovirus infection','Y','2025-10-23 00:00:00'),(78806,11,'3A73','Congenital dyserythropoietic anaemia','Y','2025-10-23 00:00:00'),(78805,11,'LB31.4','Congenital diverticulum of urinary bladder','Y','2025-10-23 00:00:00'),(78804,11,'LB15.5','Congenital diverticulum of small intestine','Y','2025-10-23 00:00:00'),(78803,11,'LB11','Congenital diverticulum of pharynx','Y','2025-10-23 00:00:00'),(78802,11,'LB12.4','Congenital diverticulum of oesophagus','Y','2025-10-23 00:00:00'),(78801,11,'LB15.4','Congenital diverticulosis of small intestine','Y','2025-10-23 00:00:00'),(78800,11,'LB15.3','Congenital diverticulitis of small intestine','Y','2025-10-23 00:00:00'),(78799,11,'3B80','Congenital disorders of spleen','Y','2025-10-23 00:00:00'),(78798,11,'5C54.Z','Congenital disorders of glycosylation and protein modification, unspecified','Y','2025-10-23 00:00:00'),(78797,11,'LB12.5','Congenital dilatation of oesophagus','Y','2025-10-23 00:00:00'),(78796,11,'LB90.5','Congenital digital clubbing','Y','2025-10-23 00:00:00'),(78795,11,'LB00.0','Congenital diaphragmatic hernia','Y','2025-10-23 00:00:00'),(78794,11,'LB81','Congenital deformities of toes','Y','2025-10-23 00:00:00'),(78793,11,'LB8Z','Congenital deformities of fingers or toes, unspecified','Y','2025-10-23 00:00:00'),(78792,11,'LB80','Congenital deformities of fingers','Y','2025-10-23 00:00:00'),(78791,11,'LB98.Z','Congenital deformities of feet, unspecified','Y','2025-10-23 00:00:00'),(78790,11,'LB98','Congenital deformities of feet','Y','2025-10-23 00:00:00'),(78789,11,'LA14.12','Congenital dacryocele','Y','2025-10-23 00:00:00'),(78788,11,'KA62.3','Congenital cytomegalovirus infection','Y','2025-10-23 00:00:00'),(78787,11,'LA77','Congenital cyst of mediastinum','Y','2025-10-23 00:00:00'),(78786,11,'9C82.2','Congenital cranial dysinnervation syndrome','Y','2025-10-23 00:00:00'),(78785,11,'LB74.3','Congenital coxa vara','Y','2025-10-23 00:00:00'),(78784,11,'LB74.4','Congenital coxa valga','Y','2025-10-23 00:00:00'),(78783,11,'LA8C.2','Congenital coronary arterial fistula','Y','2025-10-23 00:00:00'),(78782,11,'LA11.5','Congenital corneal opacity','Y','2025-10-23 00:00:00'),(78781,11,'LD28.00','Congenital contractural arachnodactyly','Y','2025-10-23 00:00:00'),(78780,11,'AB50.0','Congenital conductive hearing loss','Y','2025-10-23 00:00:00'),(78779,11,'BC63.20','Congenital complete atrioventricular block','Y','2025-10-23 00:00:00'),(78778,11,'LB54','Congenital chordee','Y','2025-10-23 00:00:00'),(78777,11,'LA90.42','Congenital cerebral nonruptured aneurysm','Y','2025-10-23 00:00:00'),(78776,11,'5A61.41','Congenital central hypothyroidism','Y','2025-10-23 00:00:00'),(78775,11,'7A42.1','Congenital central alveolar sleep-related hypoventilation','Y','2025-10-23 00:00:00'),(78774,11,'LA12.1','Congenital cataract','Y','2025-10-23 00:00:00'),(78773,11,'LA74.1','Congenital bronchomalacia','Y','2025-10-23 00:00:00'),(78772,11,'LB96.1','Congenital bowing of tibia','Y','2025-10-23 00:00:00'),(78771,11,'LB96.Z','Congenital bowing of long bones, unspecified','Y','2025-10-23 00:00:00'),(78770,11,'LB96','Congenital bowing of long bones','Y','2025-10-23 00:00:00'),(78769,11,'LB96.0','Congenital bowing of femur','Y','2025-10-23 00:00:00'),(78768,11,'8A03.0','Congenital ataxia','Y','2025-10-23 00:00:00'),(78767,11,'LB22.0','Congenital asplenia','Y','2025-10-23 00:00:00'),(78766,11,'3A70.0','Congenital aplastic anaemia','Y','2025-10-23 00:00:00'),(78765,11,'LA12.2','Congenital aphakia','Y','2025-10-23 00:00:00'),(78764,11,'LA8B.0','Congenital aortopulmonary window','Y','2025-10-23 00:00:00'),(78763,11,'LA8A.20','Congenital aortic valvar stenosis','Y','2025-10-23 00:00:00'),(78762,11,'LA8A.21','Congenital aortic regurgitation','Y','2025-10-23 00:00:00'),(78761,11,'LB13.2','Congenital antral web','Y','2025-10-23 00:00:00'),(78760,11,'LA87.0Z','Congenital anomaly of tricuspid valve, unspecified','Y','2025-10-23 00:00:00'),(78759,11,'LA87.0','Congenital anomaly of tricuspid valve','Y','2025-10-23 00:00:00'),(78758,11,'LA8F','Congenital anomaly of right atrium','Y','2025-10-23 00:00:00'),(78757,11,'LA8A.0Z','Congenital anomaly of pulmonary valve, unspecified','Y','2025-10-23 00:00:00'),(78756,11,'LA8A.0','Congenital anomaly of pulmonary valve','Y','2025-10-23 00:00:00'),(78755,11,'LA8B.1','Congenital anomaly of pulmonary arterial tree','Y','2025-10-23 00:00:00'),(78754,11,'LA87.1Z','Congenital anomaly of mitral valve, unspecified','Y','2025-10-23 00:00:00'),(78753,11,'LA87.1','Congenital anomaly of mitral valve','Y','2025-10-23 00:00:00'),(78752,11,'LA87.13','Congenital anomaly of mitral subvalvar apparatus','Y','2025-10-23 00:00:00'),(78751,11,'LA86.Z','Congenital anomaly of mediastinal vein, unspecified','Y','2025-10-23 00:00:00'),(78750,11,'LA86','Congenital anomaly of mediastinal vein','Y','2025-10-23 00:00:00'),(78749,11,'LA8G.Z','Congenital anomaly of left atrium, unspecified','Y','2025-10-23 00:00:00'),(78748,11,'LA8G','Congenital anomaly of left atrium','Y','2025-10-23 00:00:00'),(78747,11,'LA8B.Z','Congenital anomaly of great arteries including arterial duct, unspecified','Y','2025-10-23 00:00:00'),(78746,11,'LA8B','Congenital anomaly of great arteries including arterial duct','Y','2025-10-23 00:00:00'),(78745,11,'LA8B.23','Congenital anomaly of descending thoracic or abdominal aorta','Y','2025-10-23 00:00:00'),(78744,11,'LA8C.Z','Congenital anomaly of coronary artery, unspecified','Y','2025-10-23 00:00:00'),(78743,11,'LA8C','Congenital anomaly of coronary artery','Y','2025-10-23 00:00:00'),(78742,11,'LA8E.Z','Congenital anomaly of atrial septum, unspecified','Y','2025-10-23 00:00:00'),(78741,11,'LA8E','Congenital anomaly of atrial septum','Y','2025-10-23 00:00:00'),(78740,11,'LA8A.2Z','Congenital anomaly of aortic valve, unspecified','Y','2025-10-23 00:00:00'),(78739,11,'LA8A.2','Congenital anomaly of aortic valve','Y','2025-10-23 00:00:00'),(78738,11,'LA8B.24','Congenital anomaly of aortic arch branch','Y','2025-10-23 00:00:00'),(78737,11,'LA8B.2Z','Congenital anomaly of aorta or its branches, unspecified','Y','2025-10-23 00:00:00'),(78736,11,'LA8B.2','Congenital anomaly of aorta or its branches','Y','2025-10-23 00:00:00'),(78735,11,'LA87.Z','Congenital anomaly of an atrioventricular valve or atrioventricular septum, unspecified','Y','2025-10-23 00:00:00'),(78734,11,'LA87','Congenital anomaly of an atrioventricular valve or atrioventricular septum','Y','2025-10-23 00:00:00'),(78733,11,'LA85.Z','Congenital anomaly of an atrioventricular or ventriculo-arterial connection, unspecified','Y','2025-10-23 00:00:00'),(78732,11,'LA85','Congenital anomaly of an atrioventricular or ventriculo-arterial connection','Y','2025-10-23 00:00:00'),(78731,11,'LA8A.Z','Congenital anomaly of a ventriculo-arterial valve or adjacent regions, unspecified','Y','2025-10-23 00:00:00'),(78730,11,'LA8A','Congenital anomaly of a ventriculo-arterial valve or adjacent regions','Y','2025-10-23 00:00:00'),(78729,11,'LA88.Z','Congenital anomaly of a ventricle or the ventricular septum, unspecified','Y','2025-10-23 00:00:00'),(78728,11,'LA88','Congenital anomaly of a ventricle or the ventricular septum','Y','2025-10-23 00:00:00'),(78727,11,'JB64.8','Congenital anomaly complicating pregnancy','Y','2025-10-23 00:00:00'),(78726,11,'LA13.0','Congenital anomalies of the vitreous','Y','2025-10-23 00:00:00'),(78725,11,'LB18','Congenital anomalies of intestinal fixation','Y','2025-10-23 00:00:00'),(78724,11,'3B50.0','Congenital alpha-2 antiplasmin deficiency','Y','2025-10-23 00:00:00'),(78723,11,'LA14.13','Congenital agenesis of lacrimal punctum','Y','2025-10-23 00:00:00'),(78722,11,'8D64.01','Congenital agenesis of arachnoid villi','Y','2025-10-23 00:00:00'),(78721,11,'LC80','Congenital adrenal hypoplasia','Y','2025-10-23 00:00:00'),(78720,11,'5A71.01','Congenital adrenal hyperplasia','Y','2025-10-23 00:00:00'),(78719,11,'LB16.0','Congenital absence, atresia or stenosis of large intestine','Y','2025-10-23 00:00:00'),(78718,11,'LB99.4','Congenital absence of upper arm or forearm with hand present','Y','2025-10-23 00:00:00'),(78717,11,'LB9A.3','Congenital absence of thigh or lower leg with foot present','Y','2025-10-23 00:00:00'),(78716,11,'LB45.0','Congenital absence of ovary','Y','2025-10-23 00:00:00'),(78715,11,'LB45.5','Congenital absence of fallopian tube','Y','2025-10-23 00:00:00'),(78714,11,'LB9A.7','Congenital absence of both lower leg and foot','Y','2025-10-23 00:00:00'),(78713,11,'LB99.5','Congenital absence of both forearm and hand','Y','2025-10-23 00:00:00'),(78712,11,'LB31.C','Congenital absence of bladder or urethra','Y','2025-10-23 00:00:00'),(78711,11,'XB8M','Congenital','Y','2025-10-23 00:00:00'),(78710,11,'XM1SV6','Congener, anabolic','Y','2025-10-23 00:00:00'),(78709,11,'7B00.0','Confusional arousals','Y','2025-10-23 00:00:00'),(78708,11,'XC4Y','Confused, disoriented speech','Y','2025-10-23 00:00:00'),(78707,11,'XA4NJ4','Confluence of the sinuses','Y','2025-10-23 00:00:00'),(78706,11,'XE17Z','Conflict in relationship with family member, partner, or friend','Y','2025-10-23 00:00:00'),(78705,11,'XE77W','Configuration issue of device identified','Y','2025-10-23 00:00:00'),(78704,11,'MB21.3','Confabulation','Y','2025-10-23 00:00:00'),(78703,11,'XM7M63','Conestat alfa','Y','2025-10-23 00:00:00'),(78702,11,'XE5TK','Cone component of medical device','Y','2025-10-23 00:00:00'),(78701,11,'XA6BA1','Condyloid emissary vein','Y','2025-10-23 00:00:00'),(78700,11,'XA3RE0','Condyle of the humerus','Y','2025-10-23 00:00:00'),(78699,11,'XA98M7','Condylar process of the mandible','Y','2025-10-23 00:00:00'),(78698,11,'BC63.Z','Conduction disorders, unspecified','Y','2025-10-23 00:00:00'),(78697,11,'BC63','Conduction disorders','Y','2025-10-23 00:00:00'),(78696,11,'XE6BD','Conducted interference with device','Y','2025-10-23 00:00:00'),(78695,11,'6C91.Z','Conduct-dissocial disorder, unspecified','Y','2025-10-23 00:00:00'),(78694,11,'6C91.0Z','Conduct-dissocial disorder, childhood onset, unspecified','Y','2025-10-23 00:00:00'),(78693,11,'6C91.01','Conduct-dissocial disorder, childhood onset with typical prosocial emotions','Y','2025-10-23 00:00:00'),(78692,11,'6C91.00','Conduct-dissocial disorder, childhood onset with limited prosocial emotions','Y','2025-10-23 00:00:00'),(78691,11,'6C91.0','Conduct-dissocial disorder, childhood onset','Y','2025-10-23 00:00:00'),(78690,11,'6C91.11','Conduct-dissocial disorder, adolescent onset with typical prosocial emotions','Y','2025-10-23 00:00:00'),(78689,11,'6C91.10','Conduct-dissocial disorder, adolescent onset with limited prosocial emotions','Y','2025-10-23 00:00:00'),(78688,11,'6C91.1','Conduct-dissocial disorder, adolescent onset','Y','2025-10-23 00:00:00'),(78687,11,'6C91','Conduct-dissocial disorder','Y','2025-10-23 00:00:00'),(78686,11,'XE7S6','Condom, or other contraceptive device','Y','2025-10-23 00:00:00'),(78685,11,'LD90.Z','Conditions with disorders of intellectual development as a relevant clinical feature, unspecified','Y','2025-10-23 00:00:00'),(78684,11,'LD90','Conditions with disorders of intellectual development as a relevant clinical feature','Y','2025-10-23 00:00:00'),(78683,11,'HA8Z','Conditions related to sexual health, unspecified','Y','2025-10-23 00:00:00'),(78682,11,'KD5Z','Conditions originating in the perinatal or neonatal period, unspecified','Y','2025-10-23 00:00:00'),(78681,11,'RA00','Conditions of uncertain aetiology and emergency use','Y','2025-10-23 00:00:00'),(78680,11,'KC20.Z','Conditions involving the umbilical cord, unspecified','Y','2025-10-23 00:00:00'),(78679,11,'KC20','Conditions involving the umbilical cord','Y','2025-10-23 00:00:00'),(78678,11,'FB1Z','Conditions associated with the spine, unspecified','Y','2025-10-23 00:00:00'),(78677,11,'XX2QG9','Condition of the fetus and newborn reported in the context of the mother','Y','2025-10-23 00:00:00'),(78676,11,'9C61.17','Condition after acute angle-closure glaucoma attack','Y','2025-10-23 00:00:00'),(78675,11,'NA90','Concussion or oedema of thoracic spinal cord','Y','2025-10-23 00:00:00'),(78674,11,'NB61','Concussion or oedema of sacral spinal cord','Y','2025-10-23 00:00:00'),(78673,11,'NB60','Concussion or oedema of lumbar spinal cord','Y','2025-10-23 00:00:00'),(78672,11,'NA30','Concussion or oedema of cervical spinal cord','Y','2025-10-23 00:00:00'),(78671,11,'NA0D.10','Concussion of periodontal tissue','Y','2025-10-23 00:00:00'),(78670,11,'NA07.0','Concussion','Y','2025-10-23 00:00:00'),(78669,11,'XE0T3','Conclusion not yet available regarding problem with device','Y','2025-10-23 00:00:00'),(78668,11,'XA8D58','Conchal bowl of pinna','Y','2025-10-23 00:00:00'),(78667,11,'XA8W55','Concha of pinna','Y','2025-10-23 00:00:00'),(78666,11,'QA1B','Concern about or fear of medical treatment','Y','2025-10-23 00:00:00'),(78665,11,'QD30','Concern about breast appearance','Y','2025-10-23 00:00:00'),(78664,11,'QD3Z','Concern about body appearance, unspecified','Y','2025-10-23 00:00:00'),(78663,11,'SG31','Conception vessel pattern (TM1)','Y','2025-10-23 00:00:00'),(78662,11,'XE7YF','Concentrator component of medical device','Y','2025-10-23 00:00:00'),(78661,11,'QA43.30','Concealed pregnancy','Y','2025-10-23 00:00:00'),(78660,11,'XE5EP','Computer system security problem','Y','2025-10-23 00:00:00'),(78659,11,'XE85E','Computer software problem','Y','2025-10-23 00:00:00'),(78658,11,'XE59Z','Computer software driver component of medical device','Y','2025-10-23 00:00:00'),(78657,11,'XE8UU','Computer software component of medical device','Y','2025-10-23 00:00:00'),(78656,11,'XE3Q8','Computer processor component of medical device','Y','2025-10-23 00:00:00'),(78655,11,'XE4Z0','Computer operating system problem','Y','2025-10-23 00:00:00'),(78654,11,'XE2ZE','Computer hardware component of medical device','Y','2025-10-23 00:00:00'),(78653,11,'6C72','Compulsive sexual behaviour disorder','Y','2025-10-23 00:00:00'),(78652,11,'MB23.4','Compulsions','Y','2025-10-23 00:00:00'),(78651,11,'XE46J','Compressor component of medical device','Y','2025-10-23 00:00:00'),(78650,11,'9C40.5','Compressive optic neuropathy','Y','2025-10-23 00:00:00'),(78649,11,'KB07','Compression of brain in neonate','Y','2025-10-23 00:00:00'),(78648,11,'XJ778','Compression fracture','Y','2025-10-23 00:00:00'),(78647,11,'LA55','Compression facies','Y','2025-10-23 00:00:00'),(78646,11,'XM3US9','Compound solution of sodium lactate','Y','2025-10-23 00:00:00'),(78645,11,'XH57B1','Compound odontoma','Y','2025-10-23 00:00:00'),(78644,11,'XH27A6','Compound naevus','Y','2025-10-23 00:00:00'),(78643,11,'3A51.3','Compound heterozygous sickling disorders without crisis','Y','2025-10-23 00:00:00'),(78642,11,'3A51.4','Compound heterozygous sickling disorders with crisis','Y','2025-10-23 00:00:00'),(78641,11,'XJ1PP','Compound fracture','Y','2025-10-23 00:00:00'),(78640,11,'XM4HH6','Compound F (hydrocortisone)','Y','2025-10-23 00:00:00'),(78639,11,'XM3R56','Compound E (cortisone)','Y','2025-10-23 00:00:00'),(78638,11,'XH9K97','Composite pheochromocytoma','Y','2025-10-23 00:00:00'),(78637,11,'XH3JF3','Composite paraganglioma','Y','2025-10-23 00:00:00'),(78636,11,'XH3BP6','Composite Hodgkin and non-Hodgkin lymphoma','Y','2025-10-23 00:00:00'),(78635,11,'XH8D24','Composite haemangioendothelioma','Y','2025-10-23 00:00:00'),(78634,11,'EL54','Composite graft failure','Y','2025-10-23 00:00:00'),(78633,11,'XE02E','Component or accessory incompatibility','Y','2025-10-23 00:00:00'),(78632,11,'XE89V','Component missing','Y','2025-10-23 00:00:00'),(78631,11,'XE9R8','Component misassembled','Y','2025-10-23 00:00:00'),(78630,11,'XE1UE','Component incompatible','Y','2025-10-23 00:00:00'),(78629,11,'9D24','Complications with glaucoma drainage devices','Y','2025-10-23 00:00:00'),(78628,11,'8A80.3','Complications related to migraine','Y','2025-10-23 00:00:00'),(78627,11,'JB4Z','Complications predominantly related to the puerperium, unspecified','Y','2025-10-23 00:00:00'),(78626,11,'NE85','Complications peculiar to reattachment or amputation','Y','2025-10-23 00:00:00'),(78625,11,'JB44.Z','Complications of the puerperium, unspecified','Y','2025-10-23 00:00:00'),(78624,11,'NE85.0','Complications of reattached upper extremity','Y','2025-10-23 00:00:00'),(78623,11,'NE85.1','Complications of reattached lower extremity','Y','2025-10-23 00:00:00'),(78622,11,'NE85.2','Complications of other reattached body part','Y','2025-10-23 00:00:00'),(78621,11,'1B20.3','Complications of leprosy','Y','2025-10-23 00:00:00'),(78620,11,'JB0Z','Complications of labour or delivery, unspecified','Y','2025-10-23 00:00:00'),(78619,11,'KD39.Z','Complications of intrauterine procedures, not elsewhere classified, unspecified','Y','2025-10-23 00:00:00'),(78618,11,'KD39','Complications of intrauterine procedures, not elsewhere classified','Y','2025-10-23 00:00:00'),(78617,11,'GA32.3','Complications of attempted embryo transfer or medically assisted insemination','Y','2025-10-23 00:00:00'),(78616,11,'JB43.Z','Complications of anaesthesia during the puerperium, unspecified','Y','2025-10-23 00:00:00'),(78615,11,'JB43','Complications of anaesthesia during the puerperium','Y','2025-10-23 00:00:00'),(78614,11,'JA67.Z','Complications of anaesthesia during pregnancy, unspecified','Y','2025-10-23 00:00:00'),(78613,11,'JA67','Complications of anaesthesia during pregnancy','Y','2025-10-23 00:00:00'),(78612,11,'JB0C.Z','Complications of anaesthesia during labour or delivery, unspecified','Y','2025-10-23 00:00:00'),(78611,11,'JB0C','Complications of anaesthesia during labour or delivery','Y','2025-10-23 00:00:00'),(78610,11,'JA05.Z','Complications following abortion, ectopic or molar pregnancy, unspecified','Y','2025-10-23 00:00:00'),(78609,11,'JA05','Complications following abortion, ectopic or molar pregnancy','Y','2025-10-23 00:00:00'),(78608,11,'GA32.Z','Complications associated with medically assisted reproduction, unspecified','Y','2025-10-23 00:00:00'),(78607,11,'GA32','Complications associated with medically assisted reproduction','Y','2025-10-23 00:00:00'),(78606,11,'NA0D.05','Complicated crown-root fracture','Y','2025-10-23 00:00:00'),(78605,11,'NA0D.03','Complicated crown fracture','Y','2025-10-23 00:00:00'),(78604,11,'NA0A.0Z','Complex wounds to the head, unspecified','Y','2025-10-23 00:00:00'),(78603,11,'NA0A.02','Complex wounds to the head with through and through perforation','Y','2025-10-23 00:00:00'),(78602,11,'NA0A.00','Complex wounds to the head with retained external material','Y','2025-10-23 00:00:00'),(78601,11,'NA0A.01','Complex wounds to the head with intracranial haemorrhage','Y','2025-10-23 00:00:00'),(78600,11,'NA0A.03','Complex wounds to the head with avulsive loss of part of skull and cranial contents','Y','2025-10-23 00:00:00'),(78599,11,'NA0A.0','Complex wounds to the head','Y','2025-10-23 00:00:00'),(78598,11,'9D93','Complex vision-related dysfunctions','Y','2025-10-23 00:00:00'),(78597,11,'GB80.1','Complex renal cyst','Y','2025-10-23 00:00:00'),(78596,11,'MG30.04','Complex regional pain syndrome','Y','2025-10-23 00:00:00'),(78595,11,'6B41','Complex post traumatic stress disorder','Y','2025-10-23 00:00:00'),(78594,11,'LC52','Complex or combined developmental vascular malformations involving the skin','Y','2025-10-23 00:00:00'),(78593,11,'XH7H47','Complex odontoma','Y','2025-10-23 00:00:00'),(78592,11,'NC92.7Z','Complex fractures of ankle, unspecified','Y','2025-10-23 00:00:00'),(78591,11,'NC92.7','Complex fractures of ankle','Y','2025-10-23 00:00:00'),(78590,11,'8A63.01','Complex febrile seizures','Y','2025-10-23 00:00:00'),(78589,11,'LC02','Complex epidermal hamartoma','Y','2025-10-23 00:00:00'),(78588,11,'LD26.1','Complex brachydactylies','Y','2025-10-23 00:00:00'),(78587,11,'4A85.Z','Complex allergic or hypersensitivity conditions, unspecified','Y','2025-10-23 00:00:00'),(78586,11,'4A85','Complex allergic or hypersensitivity conditions','Y','2025-10-23 00:00:00'),(78585,11,'XS7K','Complete vocal cord paralysis','Y','2025-10-23 00:00:00'),(78584,11,'GC40.34','Complete uterovaginal prolapse','Y','2025-10-23 00:00:00'),(78583,11,'GC40.36','Complete uterine prolapse with posterior vaginal wall prolapse','Y','2025-10-23 00:00:00'),(78582,11,'GC40.35','Complete uterine prolapse with anterior vaginal wall prolapse','Y','2025-10-23 00:00:00'),(78581,11,'GC40.37','Complete uterine prolapse with anterior and posterior vaginal wall prolapse','Y','2025-10-23 00:00:00'),(78580,11,'LD40.0','Complete trisomy 21','Y','2025-10-23 00:00:00'),(78579,11,'LD40.2','Complete trisomy 18','Y','2025-10-23 00:00:00'),(78578,11,'LD40.1','Complete trisomy 13','Y','2025-10-23 00:00:00'),(78577,11,'LD40.Z','Complete trisomies of the autosomes, unspecified','Y','2025-10-23 00:00:00'),(78576,11,'LD40','Complete trisomies of the autosomes','Y','2025-10-23 00:00:00'),(78575,11,'GC40.11','Complete posterior vaginal wall prolapse','Y','2025-10-23 00:00:00'),(78574,11,'LD43.0','Complete monosomy of autosome','Y','2025-10-23 00:00:00'),(78573,11,'LD43.Z','Complete monosomies of the autosomes, unspecified','Y','2025-10-23 00:00:00'),(78572,11,'LD43','Complete monosomies of the autosomes','Y','2025-10-23 00:00:00'),(78571,11,'XE1DB','Complete loss of power','Y','2025-10-23 00:00:00'),(78570,11,'NA91.0','Complete lesion of thoracic spinal cord','Y','2025-10-23 00:00:00'),(78569,11,'NB62.0','Complete lesion of lumbar spinal cord','Y','2025-10-23 00:00:00'),(78568,11,'NA31.0','Complete lesion of cervical spinal cord','Y','2025-10-23 00:00:00'),(78567,11,'NB63.0','Complete injury of sacral spinal cord','Y','2025-10-23 00:00:00'),(78566,11,'JA02.0','Complete hydatidiform mole','Y','2025-10-23 00:00:00'),(78565,11,'XK2J','Complete distribution','Y','2025-10-23 00:00:00'),(78564,11,'XE3QL','Complete blockage','Y','2025-10-23 00:00:00'),(78563,11,'BC63.2Z','Complete atrioventricular block, unspecified','Y','2025-10-23 00:00:00'),(78562,11,'BC63.2','Complete atrioventricular block','Y','2025-10-23 00:00:00'),(78561,11,'GC40.21','Complete apical vaginal wall prolapse','Y','2025-10-23 00:00:00'),(78560,11,'GC40.01','Complete anterior vaginal wall prolapse','Y','2025-10-23 00:00:00'),(78559,11,'PL01.Z','Complementary or traditional medicines associated with injury or harm in therapeutic use, unspecified','Y','2025-10-23 00:00:00'),(78558,11,'PL01.0','Complementary or traditional medicines associated with injury or harm in therapeutic use, Herbal Preparations or Formulas','Y','2025-10-23 00:00:00'),(78557,11,'PL01.1','Complementary or traditional medicines associated with injury or harm in therapeutic use, Dietary Supplements, Vitamins or Minerals','Y','2025-10-23 00:00:00'),(78556,11,'PL01.2','Complementary or traditional medicines associated with injury or harm in therapeutic use, Complementary or Traditional Medicines, not elsewhere classified','Y','2025-10-23 00:00:00'),(78555,11,'PL01','Complementary or traditional medicines associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(78554,11,'ME66.5','Complaint of abnormal sweating','Y','2025-10-23 00:00:00'),(78553,11,'CB40.4','Compensatory emphysema','Y','2025-10-23 00:00:00'),(78552,11,'XM83L8','Compazine','Y','2025-10-23 00:00:00'),(78551,11,'XE452','Compatibility problem','Y','2025-10-23 00:00:00'),(78550,11,'VW6Z','Community, social and civic life, unspecified','Y','2025-10-23 00:00:00'),(78549,11,'XB22','Community acquired','Y','2025-10-23 00:00:00'),(78548,11,'XE6C8','Communications problem with device identified','Y','2025-10-23 00:00:00'),(78547,11,'VW0Z','Communication, unspecified','Y','2025-10-23 00:00:00'),(78546,11,'PK9A.21','Communication system devices associated with adverse incidents in a physical medicine care environment','Y','2025-10-23 00:00:00'),(78545,11,'PK9A.20','Communication system devices associated with adverse incidents','Y','2025-10-23 00:00:00'),(78544,11,'XE0JD','Communication or transmission problem','Y','2025-10-23 00:00:00'),(78543,11,'XE3AM','Communication or related utensil or accessory','Y','2025-10-23 00:00:00'),(78542,11,'XE7GK','Communication or interviews','Y','2025-10-23 00:00:00'),(78541,11,'VD04','Communicating with receiving spoken messages [WHODAS]','Y','2025-10-23 00:00:00'),(78540,11,'VW00','Communicating with receiving spoken messages','Y','2025-10-23 00:00:00'),(78539,11,'8D64.0Z','Communicating hydrocephalus, unspecified','Y','2025-10-23 00:00:00'),(78538,11,'8D64.0','Communicating hydrocephalus','Y','2025-10-23 00:00:00'),(78537,11,'XA4VS8','Communicating branch of the fibular artery to the','Y','2025-10-23 00:00:00'),(78536,11,'NA06.62','Commotio Retina','Y','2025-10-23 00:00:00'),(78535,11,'XM5QE7','Common yellow scorpion venom','Y','2025-10-23 00:00:00'),(78534,11,'1E80','Common warts','Y','2025-10-23 00:00:00'),(78533,11,'XA7FD2','Common volar digital vein','Y','2025-10-23 00:00:00'),(78532,11,'XA1LW6','Common palmar digital nerves of median nerve','Y','2025-10-23 00:00:00'),(78531,11,'XA3K78','Common myeloid progenitor','Y','2025-10-23 00:00:00'),(78530,11,'XM2267','Common lancehead snake venom','Y','2025-10-23 00:00:00'),(78529,11,'XA4RU3','Common interosseous artery','Y','2025-10-23 00:00:00'),(78528,11,'XA7W40','Common iliac vein','Y','2025-10-23 00:00:00'),(78527,11,'XA1MS6','Common iliac lymph node','Y','2025-10-23 00:00:00'),(78526,11,'XA6PZ8','Common iliac artery','Y','2025-10-23 00:00:00'),(78525,11,'XA96K1','Common hepatic duct','Y','2025-10-23 00:00:00'),(78524,11,'XA26R6','Common hepatic artery','Y','2025-10-23 00:00:00'),(78523,11,'XA7HH4','Common fibular nerve','Y','2025-10-23 00:00:00'),(78522,11,'XA8YC8','Common femoral artery','Y','2025-10-23 00:00:00'),(78521,11,'XA3LQ0','Common facial vein','Y','2025-10-23 00:00:00'),(78520,11,'XA35G1','Common duct lymph node','Y','2025-10-23 00:00:00'),(78519,11,'XA23R2','Common digital vein','Y','2025-10-23 00:00:00'),(78518,11,'SA60','Common cold disorder (TM1)','Y','2025-10-23 00:00:00'),(78517,11,'XA1V84','Common carotid artery','Y','2025-10-23 00:00:00'),(78516,11,'XM2UN5','Common brown snake venom','Y','2025-10-23 00:00:00'),(78515,11,'XA6R80','Common bile duct','Y','2025-10-23 00:00:00'),(78514,11,'LA87.3','Common atrioventricular junction without an atrioventricular septal defect','Y','2025-10-23 00:00:00'),(78513,11,'LA87.4Z','Common atrioventricular junction with atrioventricular septal defect, unspecified','Y','2025-10-23 00:00:00'),(78512,11,'LA87.4','Common atrioventricular junction with atrioventricular septal defect','Y','2025-10-23 00:00:00'),(78511,11,'LA85.4Z','Common arterial trunk, unspecified','Y','2025-10-23 00:00:00'),(78510,11,'LA85.41','Common arterial trunk with pulmonary dominance and interrupted aortic arch','Y','2025-10-23 00:00:00'),(78509,11,'LA85.40','Common arterial trunk with aortic dominance','Y','2025-10-23 00:00:00'),(78508,11,'LA85.4','Common arterial trunk','Y','2025-10-23 00:00:00'),(78507,11,'2F20.0','Common acquired melanocytic naevus','Y','2025-10-23 00:00:00'),(78506,11,'XE61B','Commode chair','Y','2025-10-23 00:00:00'),(78505,11,'XJ1Z6','Comminuted fracture','Y','2025-10-23 00:00:00'),(78504,11,'XE543','Commercial garage','Y','2025-10-23 00:00:00'),(78503,11,'XE7FK','Commercial fixed-wing powered aircraft','Y','2025-10-23 00:00:00'),(78502,11,'XE48U','Commercial area (non-recreational)','Y','2025-10-23 00:00:00'),(78501,11,'XM8NQ0','Comirnaty','Y','2025-10-23 00:00:00'),(78500,11,'ED80.0','Comedonal acne','Y','2025-10-23 00:00:00'),(78499,11,'XH1N58','Comedocarcinoma, NOS','Y','2025-10-23 00:00:00'),(78498,11,'XH8P86','Comedocarcinoma, noninfiltrating','Y','2025-10-23 00:00:00'),(78497,11,'GC04.19','Combined urinary and rectal fistula including cloaca with severe scar or extensive tissue loss','Y','2025-10-23 00:00:00'),(78496,11,'GC04.15','Combined urethrovesicovaginal fistula','Y','2025-10-23 00:00:00'),(78495,11,'NC59.3','Combined traumatic amputation of finger with other parts of wrist or hand','Y','2025-10-23 00:00:00'),(78494,11,'XH9ZD2','Combined small cell-squamous cell carcinoma','Y','2025-10-23 00:00:00'),(78493,11,'XH6FK9','Combined small cell-large cell carcinoma','Y','2025-10-23 00:00:00'),(78492,11,'XH0793','Combined small cell-adenocarcinoma','Y','2025-10-23 00:00:00'),(78491,11,'XH7YE3','Combined small cell carcinoma','Y','2025-10-23 00:00:00'),(78490,11,'9B74.2','Combined retinal arterial and vein occlusion','Y','2025-10-23 00:00:00'),(78489,11,'LD26.0','Combined reduction defects of upper and lower limbs','Y','2025-10-23 00:00:00'),(78488,11,'CB03.1','Combined pulmonary fibrosis and emphysema syndrome','Y','2025-10-23 00:00:00'),(78487,11,'XH0DU8','Combined naevus','Y','2025-10-23 00:00:00'),(78486,11,'XH90B3','Combined large cell neuroendocrine carcinoma','Y','2025-10-23 00:00:00'),(78485,11,'4A01.1Z','Combined immunodeficiencies, unspecified','Y','2025-10-23 00:00:00'),(78484,11,'4A01.1','Combined immunodeficiencies','Y','2025-10-23 00:00:00'),(78483,11,'2C12.00','Combined hepatocellular-cholangiocarcinoma','Y','2025-10-23 00:00:00'),(78482,11,'XH7QJ6','Combined hepatocellular carcinoma and cholangiocarcinoma','Y','2025-10-23 00:00:00'),(78481,11,'9B10.10','Combined forms of infantile and juvenile cataract','Y','2025-10-23 00:00:00'),(78480,11,'BA04.0','Combined diastolic and systolic secondary hypertension','Y','2025-10-23 00:00:00'),(78479,11,'BA00.0','Combined diastolic and systolic hypertension','Y','2025-10-23 00:00:00'),(78478,11,'MC80.01','Combined diastolic and systolic elevated blood pressure reading without diagnosis of hypertension','Y','2025-10-23 00:00:00'),(78477,11,'3B14.2','Combined deficiency of vitamin K-dependent clotting factors','Y','2025-10-23 00:00:00'),(78476,11,'9A26','Combined bony and soft tissue deformity of orbit','Y','2025-10-23 00:00:00'),(78475,11,'XM6QQ6','Combinations of penicillins','Y','2025-10-23 00:00:00'),(78474,11,'XM3GX9','Combinations of antibacterials','Y','2025-10-23 00:00:00'),(78473,11,'XM03Y7','Combinations hepatitis vaccines','Y','2025-10-23 00:00:00'),(78472,11,'XM0D52','Combinations and complexes of aluminium, calcium and magnesium compounds','Y','2025-10-23 00:00:00'),(78471,11,'PL12.6','Combination or interaction of operator error and device failure, as mode of injury or harm','Y','2025-10-23 00:00:00'),(78470,11,'QA65','Combination or interaction of operator error and device failure without injury or harm','Y','2025-10-23 00:00:00'),(78469,11,'XE3E4','Combative sports','Y','2025-10-23 00:00:00'),(78468,11,'XE2CA','Comb, hairbrush','Y','2025-10-23 00:00:00'),(78467,11,'MB20.1','Coma','Y','2025-10-23 00:00:00'),(78466,11,'DA23.Z','Columnar metaplastic epithelium of the oesophagus, unspecified','Y','2025-10-23 00:00:00'),(78465,11,'DA23','Columnar metaplastic epithelium of the oesophagus','Y','2025-10-23 00:00:00'),(78464,11,'XA4S17','Columella','Y','2025-10-23 00:00:00'),(78463,11,'LA05.8','Colpocephaly','Y','2025-10-23 00:00:00'),(78462,11,'DE12.0','Colostomy or enterostomy malfunction or complication','Y','2025-10-23 00:00:00'),(78461,11,'1D41','Colorado tick fever','Y','2025-10-23 00:00:00'),(78460,11,'XM8YT6','Colorado River toad toxin','Y','2025-10-23 00:00:00'),(78459,11,'XM8YJ6','Colophonium','Y','2025-10-23 00:00:00'),(78457,11,'DB36.0','Colonic abscess','Y','2025-10-23 00:00:00'),(78458,11,'XM9VN3','Colony stimulating factors','Y','2025-10-23 00:00:00'),(78456,11,'XA03U9','Colon','Y','2025-10-23 00:00:00'),(78455,11,'XM0JN3','Colocynth','Y','2025-10-23 00:00:00'),(78454,11,'LA13.76','Coloboma of optic disc','Y','2025-10-23 00:00:00'),(78452,11,'LA12.0','Coloboma of lens','Y','2025-10-23 00:00:00'),(78453,11,'LA13.2','Coloboma of macula','Y','2025-10-23 00:00:00'),(78451,11,'LA11.4','Coloboma of iris','Y','2025-10-23 00:00:00'),(78449,11,'XE0YX','Collimator component of medical device','Y','2025-10-23 00:00:00'),(78450,11,'LA13.1','Coloboma of choroid or retina','Y','2025-10-23 00:00:00'),(78448,11,'XE9BK','College or university','Y','2025-10-23 00:00:00'),(78447,11,'XH4SQ4','Collecting duct carcinoma','Y','2025-10-23 00:00:00'),(78446,11,'XA0K88','Collateral metacarpophalangeal ligament','Y','2025-10-23 00:00:00'),(78445,11,'XA59Z4','Collateral ligament of the foot','Y','2025-10-23 00:00:00'),(78444,11,'XA9MY7','Collateral carpal ligament','Y','2025-10-23 00:00:00'),(78443,11,'FA72.4','Collapsed vertebra, not elsewhere classified','Y','2025-10-23 00:00:00'),(78442,11,'XH2874','Collagenous fibroma','Y','2025-10-23 00:00:00'),(78441,11,'DB33.10','Collagenous colitis','Y','2025-10-23 00:00:00'),(78440,11,'XM3LD7','Collagenase topical','Y','2025-10-23 00:00:00'),(78439,11,'XM0NQ8','Collagenase clostridium histolyticum','Y','2025-10-23 00:00:00'),(78437,11,'XM94X8','Collagen','Y','2025-10-23 00:00:00'),(78438,11,'XA7YJ2','Collagen fibres','Y','2025-10-23 00:00:00'),(78436,11,'DB33.4Z','Colitis or proctitis due to external causes, unspecified','Y','2025-10-23 00:00:00'),(78435,11,'DB33.4','Colitis or proctitis due to external causes','Y','2025-10-23 00:00:00'),(78434,11,'XM6E41','Colistin sulfate (eye preparation)','Y','2025-10-23 00:00:00'),(78433,11,'XM6510','Colistin','Y','2025-10-23 00:00:00'),(78432,11,'XA2DK6','Colic vein','Y','2025-10-23 00:00:00'),(78431,11,'XA09W7','Colic lymph node','Y','2025-10-23 00:00:00'),(78430,11,'XM5RQ3','Colextran','Y','2025-10-23 00:00:00'),(78429,11,'XM0HQ4','Colestyramine','Y','2025-10-23 00:00:00'),(78428,11,'XM0KK8','Colestipol','Y','2025-10-23 00:00:00'),(78427,11,'XM4C26','Colestilan','Y','2025-10-23 00:00:00'),(78426,11,'XM6MC3','Colesevelam','Y','2025-10-23 00:00:00'),(78425,11,'4A84.31','Cold-induced anaphylaxis','Y','2025-10-23 00:00:00'),(78424,11,'SF7B','Cold-dampness encumbering the spleen system pattern (TM1)','Y','2025-10-23 00:00:00'),(78423,11,'EB01.1','Cold urticaria','Y','2025-10-23 00:00:00'),(78422,11,'SF9C','Cold stagnation in the uterus pattern (TM1)','Y','2025-10-23 00:00:00'),(78421,11,'XE3VM','Cold solid food','Y','2025-10-23 00:00:00'),(78419,11,'SE73','Cold pattern (TM1)','Y','2025-10-23 00:00:00'),(78420,11,'SF85','Cold phlegm obstructing the lung pattern (TM1)','Y','2025-10-23 00:00:00'),(78418,11,'KC22.1','Cold panniculitis of the newborn','Y','2025-10-23 00:00:00'),(78416,11,'SC50','Cold impediment disorder (TM1)','Y','2025-10-23 00:00:00'),(78417,11,'SF7H','Cold invading the stomach system pattern (TM1)','Y','2025-10-23 00:00:00'),(78415,11,'SE81','Cold factor pattern (TM1)','Y','2025-10-23 00:00:00'),(78413,11,'XM88R8','Cold cream','Y','2025-10-23 00:00:00'),(78414,11,'XE6SF','Cold drink non-alcoholic','Y','2025-10-23 00:00:00'),(78412,11,'XM7TP8','Colchicum plant','Y','2025-10-23 00:00:00'),(78410,11,'XE3T5','Coins','Y','2025-10-23 00:00:00'),(78411,11,'XM3Q99','Colchicine','Y','2025-10-23 00:00:00'),(78409,11,'XE1S0','Coil component of medical device','Y','2025-10-23 00:00:00'),(78407,11,'8D43.1','Cognitive impairment due to toxicity','Y','2025-10-23 00:00:00'),(78408,11,'6A25.5','Cognitive symptoms in primary psychotic disorders','Y','2025-10-23 00:00:00'),(78405,11,'XM4S70','Cogalactoisomerase','Y','2025-10-23 00:00:00'),(78406,11,'XM2HD0','Cogentin','Y','2025-10-23 00:00:00'),(78403,11,'XM9KW2','Coffee','Y','2025-10-23 00:00:00'),(78404,11,'XE6E5','Coffee table','Y','2025-10-23 00:00:00'),(78402,11,'6D33','Coercive sexual sadism disorder','Y','2025-10-23 00:00:00'),(78400,11,'XM2YA2','Coenzyme A','Y','2025-10-23 00:00:00'),(78401,11,'5C53.22','Coenzyme Q10 deficiency','Y','2025-10-23 00:00:00'),(78399,11,'XA4U92','Coeliac plexus','Y','2025-10-23 00:00:00'),(78398,11,'XA38T7','Coeliac lymph node','Y','2025-10-23 00:00:00'),(78397,11,'DA95','Coeliac disease','Y','2025-10-23 00:00:00'),(78396,11,'BD52.5','Coeliac artery compression syndrome','Y','2025-10-23 00:00:00'),(78395,11,'XA8577','Coeliac artery','Y','2025-10-23 00:00:00'),(78394,11,'XM09R3','Cod-liver oil','Y','2025-10-23 00:00:00'),(78393,11,'XM4587','Codeine, codeine derivatives and other opioids used in cough suppression','Y','2025-10-23 00:00:00'),(78391,11,'XA0JV0','Cochlea','Y','2025-10-23 00:00:00'),(78392,11,'XA1QU6','Cochlear nerve','Y','2025-10-23 00:00:00'),(78389,11,'XA4V28','Coccyx','Y','2025-10-23 00:00:00'),(78390,11,'XM6QA5','Cochineal','Y','2025-10-23 00:00:00'),(78388,11,'XA45X9','Coccygeus tendon','Y','2025-10-23 00:00:00'),(78386,11,'XA6Y08','Coccygeal glomus','Y','2025-10-23 00:00:00'),(78387,11,'XA5C62','Coccygeal nerve','Y','2025-10-23 00:00:00'),(78385,11,'XA6DS1','Coccygeal area','Y','2025-10-23 00:00:00'),(78384,11,'1F25.Z','Coccidioidomycosis, unspecified','Y','2025-10-23 00:00:00'),(78382,11,'XM4CF3','Coccidioidin','Y','2025-10-23 00:00:00'),(78383,11,'1F25','Coccidioidomycosis','Y','2025-10-23 00:00:00'),(78381,11,'XN5TT','Coccidioides posadasii','Y','2025-10-23 00:00:00'),(78380,11,'1F25.12','Coccidioides meningitis','Y','2025-10-23 00:00:00'),(78379,11,'XN53F','Coccidioides immitis','Y','2025-10-23 00:00:00'),(78377,11,'XN1XA','Coccidia','Y','2025-10-23 00:00:00'),(78378,11,'XN7Q9','Coccidioides','Y','2025-10-23 00:00:00'),(78376,11,'XM8P48','Cocarboxylase','Y','2025-10-23 00:00:00'),(78375,11,'6C45.6Z','Cocaine-induced psychotic disorder, unspecified','Y','2025-10-23 00:00:00'),(78374,11,'6C45.62','Cocaine-induced psychotic disorder with mixed psychotic symptoms','Y','2025-10-23 00:00:00'),(78373,11,'6C45.60','Cocaine-induced psychotic disorder with hallucinations','Y','2025-10-23 00:00:00'),(78372,11,'6C45.61','Cocaine-induced psychotic disorder with delusions','Y','2025-10-23 00:00:00'),(78371,11,'6C45.6','Cocaine-induced psychotic disorder','Y','2025-10-23 00:00:00'),(78370,11,'6C45.72','Cocaine-induced obsessive-compulsive or related disorder','Y','2025-10-23 00:00:00'),(78369,11,'6C45.70','Cocaine-induced mood disorder','Y','2025-10-23 00:00:00'),(78367,11,'6C45.5','Cocaine-induced delirium','Y','2025-10-23 00:00:00'),(78368,11,'6C45.73','Cocaine-induced impulse control disorder','Y','2025-10-23 00:00:00'),(78366,11,'6C45.71','Cocaine-induced anxiety disorder','Y','2025-10-23 00:00:00'),(78365,11,'6C45.4','Cocaine withdrawal','Y','2025-10-23 00:00:00'),(78364,11,'XM0BC6','Cocaine topical anesthetic','Y','2025-10-23 00:00:00'),(78363,11,'6C45.3','Cocaine intoxication','Y','2025-10-23 00:00:00'),(78362,11,'6C45.2Z','Cocaine dependence, unspecified','Y','2025-10-23 00:00:00'),(78361,11,'6C45.22','Cocaine dependence, sustained partial remission','Y','2025-10-23 00:00:00'),(78360,11,'6C45.23','Cocaine dependence, sustained full remission','Y','2025-10-23 00:00:00'),(78358,11,'6C45.20','Cocaine dependence, current use','Y','2025-10-23 00:00:00'),(78359,11,'6C45.21','Cocaine dependence, early full remission','Y','2025-10-23 00:00:00'),(78357,11,'6C45.2','Cocaine dependence','Y','2025-10-23 00:00:00'),(78355,11,'XM1R49','Cobra snake venom','Y','2025-10-23 00:00:00'),(78356,11,'XM7UN8','Cocaine','Y','2025-10-23 00:00:00'),(78354,11,'XE9X2','Cobra','Y','2025-10-23 00:00:00'),(78352,11,'XM6K99','Cobimetinib','Y','2025-10-23 00:00:00'),(78353,11,'XM6ZX2','Coblopasvir','Y','2025-10-23 00:00:00'),(78351,11,'XM1KL9','Cobicistat','Y','2025-10-23 00:00:00'),(78349,11,'XM2NR4','Cobamamide','Y','2025-10-23 00:00:00'),(78350,11,'XM0UJ4','Cobbler fish venom','Y','2025-10-23 00:00:00'),(78348,11,'XM8323','Cobalt medicinal (trace) (chloride)','Y','2025-10-23 00:00:00'),(78347,11,'XM8YZ3','Cobalt (58Co) cyanocobalamine','Y','2025-10-23 00:00:00'),(78346,11,'XM7VT3','Cobalt (57Co) cyanocobalamine','Y','2025-10-23 00:00:00'),(78345,11,'XM1NV2','Cobalt','Y','2025-10-23 00:00:00'),(78344,11,'XM2RU3','Cobalamine','Y','2025-10-23 00:00:00'),(78343,11,'XE3C8','Coating material component of medical device','Y','2025-10-23 00:00:00'),(78342,11,'XM5T51','Coastal taipan snake venom','Y','2025-10-23 00:00:00'),(78341,11,'LA8B.21','Coarctation of aorta','Y','2025-10-23 00:00:00'),(78340,11,'XE6B4','Coal-car in mine','Y','2025-10-23 00:00:00'),(78338,11,'XM2CE3','Coal tar nonmedicinal','Y','2025-10-23 00:00:00'),(78339,11,'CA60.1','Coal worker pneumoconiosis','Y','2025-10-23 00:00:00'),(78337,11,'XM6U93','Coal tar naphtha','Y','2025-10-23 00:00:00'),(78336,11,'XM60M2','Coal tar medicinal analgesics','Y','2025-10-23 00:00:00'),(78335,11,'XM3P37','Coal tar medicinal (ointment)','Y','2025-10-23 00:00:00'),(78334,11,'XM81T5','Coal tar fumes','Y','2025-10-23 00:00:00'),(78333,11,'XM8MM9','Coal tar','Y','2025-10-23 00:00:00'),(78331,11,'XM8GS7','Coal gas','Y','2025-10-23 00:00:00'),(78332,11,'XE0U0','Coal pot','Y','2025-10-23 00:00:00'),(78330,11,'XE49W','Coagulation in device or device ingredient','Y','2025-10-23 00:00:00'),(78329,11,'XM1UV6','Coagulation factor XIII','Y','2025-10-23 00:00:00'),(78328,11,'XM2RZ4','Coagulation factor X','Y','2025-10-23 00:00:00'),(78327,11,'XM9766','Coagulation factor VIII','Y','2025-10-23 00:00:00'),(78326,11,'XM0A85','Coagulation factor VIIa','Y','2025-10-23 00:00:00'),(78325,11,'XM58W5','Coagulation factor VII','Y','2025-10-23 00:00:00'),(78324,11,'XM44Z6','Coagulation factor IX','Y','2025-10-23 00:00:00'),(78323,11,'3B4Z','Coagulation defects, unspecified','Y','2025-10-23 00:00:00'),(78321,11,'XM4Z99','Coagulant','Y','2025-10-23 00:00:00'),(78322,11,'3B6Z','Coagulation defects, purpura or other haemorrhagic or related conditions, unspecified','Y','2025-10-23 00:00:00'),(78320,11,'XH70S0','CNS ganglioneuroblastoma','Y','2025-10-23 00:00:00'),(78319,11,'XH8SH6','CNS embryonal tumour, NOS','Y','2025-10-23 00:00:00'),(78318,11,'XH3AV2','CNS embryonal tumor with rhabdoid features','Y','2025-10-23 00:00:00'),(78317,11,'XE5CL','Clutch component of medical device','Y','2025-10-23 00:00:00'),(78316,11,'XM4F67','Clusters of differentiation 38 inhibitors','Y','2025-10-23 00:00:00'),(78315,11,'XM0NB9','Clusters of differentiation 22 inhibitors','Y','2025-10-23 00:00:00'),(78314,11,'XM6TQ6','Clusters of differentiation 20 inhibitors','Y','2025-10-23 00:00:00'),(78313,11,'XE4BC','Clumping in device or device ingredient','Y','2025-10-23 00:00:00'),(78312,11,'XE61H','Club, cudgel, rod, knobkierie','Y','2025-10-23 00:00:00'),(78311,11,'XM8UG6','Clozapine','Y','2025-10-23 00:00:00'),(78310,11,'XM6BT6','Cloxiquine','Y','2025-10-23 00:00:00'),(78309,11,'XM5M11','Cloxazolam','Y','2025-10-23 00:00:00'),(78308,11,'XM6L30','Cloxacillin','Y','2025-10-23 00:00:00'),(78307,11,'MB20.2','Clouding of consciousness','Y','2025-10-23 00:00:00'),(78306,11,'XM8W85','Clotrimazole','Y','2025-10-23 00:00:00'),(78304,11,'XM9DC4','Clotiapine','Y','2025-10-23 00:00:00'),(78305,11,'XM0A75','Clotiazepam','Y','2025-10-23 00:00:00'),(78303,11,'XE91F','Clothing accessory or personal decoration item','Y','2025-10-23 00:00:00'),(78302,11,'XE06L','Clothesline, clothes drying rack, clotheshorse','Y','2025-10-23 00:00:00'),(78301,11,'XE12D','Clothes, foot wear, or related products','Y','2025-10-23 00:00:00'),(78300,11,'XE2VW','Clothes iron, press','Y','2025-10-23 00:00:00'),(78299,11,'XE0Y0','Clothes dryer','Y','2025-10-23 00:00:00'),(78298,11,'XN5NQ','Clostridium tetani','Y','2025-10-23 00:00:00'),(78297,11,'XN4LP','Clostridium sordellii','Y','2025-10-23 00:00:00'),(78296,11,'XN7J5','Clostridium perfringens','Y','2025-10-23 00:00:00'),(78295,11,'XN2JN','Clostridium botulinum','Y','2025-10-23 00:00:00'),(78294,11,'XN198','Clostridium','Y','2025-10-23 00:00:00'),(78293,11,'XN0SE','Clostridioides difficile','Y','2025-10-23 00:00:00'),(78292,11,'XJ44E','Closed fracture','Y','2025-10-23 00:00:00'),(78291,11,'NA06.82','Closed eyeball trauma, unilateral','Y','2025-10-23 00:00:00'),(78290,11,'NA06.83','Closed eyeball trauma, bilateral','Y','2025-10-23 00:00:00'),(78289,11,'XM8H60','Clortermine','Y','2025-10-23 00:00:00'),(78288,11,'XM27W7','Clorprenaline','Y','2025-10-23 00:00:00'),(78287,11,'XM8KY2','Clorotepine','Y','2025-10-23 00:00:00'),(78285,11,'XM30L8','Cloridarol','Y','2025-10-23 00:00:00'),(78286,11,'XM3508','Clorindione','Y','2025-10-23 00:00:00'),(78284,11,'XM8NM5','Cloricromen','Y','2025-10-23 00:00:00'),(78283,11,'XM9VZ7','Clorgiline','Y','2025-10-23 00:00:00'),(78282,11,'XM8GT1','Clorexolone','Y','2025-10-23 00:00:00'),(78281,11,'XM2M62','Cloranolol','Y','2025-10-23 00:00:00'),(78280,11,'XM4AF4','Cloprednol','Y','2025-10-23 00:00:00'),(78279,11,'XM71H0','Cloponone','Y','2025-10-23 00:00:00'),(78278,11,'XM7CM7','Clopidogrel','Y','2025-10-23 00:00:00'),(78276,11,'XM87S1','Clopenthixol','Y','2025-10-23 00:00:00'),(78277,11,'XM80M9','Cloperastine','Y','2025-10-23 00:00:00'),(78274,11,'MB47.2','Clonus','Y','2025-10-23 00:00:00'),(78275,11,'XM7A66','Clopamide','Y','2025-10-23 00:00:00'),(78273,11,'XN5SV','Clonorchis sinensis','Y','2025-10-23 00:00:00'),(78272,11,'XN9GC','Clonorchis','Y','2025-10-23 00:00:00'),(78271,11,'1F80','Clonorchiasis','Y','2025-10-23 00:00:00'),(78269,11,'XM6GV8','Clonidine','Y','2025-10-23 00:00:00'),(78270,11,'XM3J63','Clonixin','Y','2025-10-23 00:00:00'),(78268,11,'XM2909','Clonazepam','Y','2025-10-23 00:00:00'),(78267,11,'XM0WY0','Clomocycline','Y','2025-10-23 00:00:00'),(78266,11,'XM76Z6','Clomipramine','Y','2025-10-23 00:00:00'),(78265,11,'XM74M2','Clomiphene','Y','2025-10-23 00:00:00'),(78263,11,'XM7GE6','Clomethiazole','Y','2025-10-23 00:00:00'),(78264,11,'XM5N44','Clometocillin','Y','2025-10-23 00:00:00'),(78261,11,'XM11V4','Clofoctol','Y','2025-10-23 00:00:00'),(78262,11,'XM3AJ4','Cloforex','Y','2025-10-23 00:00:00'),(78260,11,'XM93U8','Clofibride','Y','2025-10-23 00:00:00'),(78259,11,'XM6DX0','Clofibric acid','Y','2025-10-23 00:00:00'),(78258,11,'XM19J9','Clofibrate','Y','2025-10-23 00:00:00'),(78257,11,'XM8X86','Clofezone','Y','2025-10-23 00:00:00'),(78255,11,'XM0EZ6','Clofenamide','Y','2025-10-23 00:00:00'),(78256,11,'XM8TG2','Clofenotane','Y','2025-10-23 00:00:00'),(78254,11,'XM3122','Clofazimine','Y','2025-10-23 00:00:00'),(78253,11,'XM2YA3','Clofarabine','Y','2025-10-23 00:00:00'),(78251,11,'XM2WP5','Clodantoin','Y','2025-10-23 00:00:00'),(78252,11,'XM7171','Clodronic acid','Y','2025-10-23 00:00:00'),(78250,11,'XM0XB5','Clocortolone','Y','2025-10-23 00:00:00'),(78249,11,'XE06B','Clock component of medical device','Y','2025-10-23 00:00:00'),(78247,11,'XM6MJ1','Clobetasone','Y','2025-10-23 00:00:00'),(78248,11,'XM4D27','Clobutinol','Y','2025-10-23 00:00:00'),(78246,11,'XM4FN3','Clobetasol','Y','2025-10-23 00:00:00'),(78245,11,'XM2NX7','Clobenzorex','Y','2025-10-23 00:00:00'),(78244,11,'XM43U0','Clobazam','Y','2025-10-23 00:00:00'),(78243,11,'XA8QB7','Cloacogenic zone','Y','2025-10-23 00:00:00'),(78242,11,'XH3UJ1','Cloacogenic carcinoma','Y','2025-10-23 00:00:00'),(78240,11,'LB41.2','Clitoromegaly','Y','2025-10-23 00:00:00'),(78241,11,'LB17.3','Cloacal exstrophy','Y','2025-10-23 00:00:00'),(78239,11,'XA4851','Clitoris','Y','2025-10-23 00:00:00'),(78238,11,'XA3C45','Clitoral hood','Y','2025-10-23 00:00:00'),(78237,11,'XM2BD5','Clitocybe rivulosa mushroom','Y','2025-10-23 00:00:00'),(78236,11,'XM2FU2','Clitocybe mushroom','Y','2025-10-23 00:00:00'),(78235,11,'XM3YP8','Cliradon','Y','2025-10-23 00:00:00'),(78233,11,'XM1V59','Clioquinol','Y','2025-10-23 00:00:00'),(78234,11,'XE3VN','Clip fastner component of medical device','Y','2025-10-23 00:00:00'),(78231,11,'LB81.0','Clinodactyly of toes','Y','2025-10-23 00:00:00'),(78232,11,'XM2LR7','Clinofibrate','Y','2025-10-23 00:00:00'),(78230,11,'LB80.0','Clinodactyly of fingers','Y','2025-10-23 00:00:00'),(78229,11,'XD97L1','Clinical trays and bowles','Y','2025-10-23 00:00:00'),(78228,11,'ME24','Clinical manifestations of the digestive system','Y','2025-10-23 00:00:00'),(78226,11,'5A80.0','Clinical hyperandrogenism','Y','2025-10-23 00:00:00'),(78227,11,'XE05W','Clinical imaging problem with device identified','Y','2025-10-23 00:00:00'),(78225,11,'MG01','Clinical findings on diagnostic imaging of urinary organs','Y','2025-10-23 00:00:00'),(78224,11,'ME90','Clinical findings on diagnostic imaging of skull and head','Y','2025-10-23 00:00:00'),(78223,11,'ME92.Z','Clinical findings on diagnostic imaging of other parts of musculoskeletal system, unspecified','Y','2025-10-23 00:00:00'),(78222,11,'ME92','Clinical findings on diagnostic imaging of other parts of musculoskeletal system','Y','2025-10-23 00:00:00'),(78221,11,'MD41','Clinical findings on diagnostic imaging of lung','Y','2025-10-23 00:00:00'),(78220,11,'ME21','Clinical findings on diagnostic imaging of liver or biliary tract','Y','2025-10-23 00:00:00'),(78219,11,'ME91','Clinical findings on diagnostic imaging of limbs','Y','2025-10-23 00:00:00'),(78218,11,'MC90','Clinical findings on diagnostic imaging of heart or coronary circulation','Y','2025-10-23 00:00:00'),(78217,11,'ME22','Clinical findings on diagnostic imaging of digestive tract','Y','2025-10-23 00:00:00'),(78216,11,'MB71.Z','Clinical findings on diagnostic imaging of central nervous system, unspecified','Y','2025-10-23 00:00:00'),(78215,11,'MB71','Clinical findings on diagnostic imaging of central nervous system','Y','2025-10-23 00:00:00'),(78214,11,'MG00','Clinical findings on diagnostic imaging of breast','Y','2025-10-23 00:00:00'),(78213,11,'JA66.Z','Clinical findings on antenatal screening of mother, unspecified','Y','2025-10-23 00:00:00'),(78212,11,'JA66','Clinical findings on antenatal screening of mother','Y','2025-10-23 00:00:00'),(78211,11,'MC20','Clinical findings of the visual system','Y','2025-10-23 00:00:00'),(78210,11,'MA13','Clinical findings of substances chiefly nonmedicinal as to source in blood, blood-forming organs, or the immune system','Y','2025-10-23 00:00:00'),(78209,11,'MA11','Clinical findings of hormones in blood, blood-forming organs, or the immune system','Y','2025-10-23 00:00:00'),(78208,11,'MA12','Clinical findings of drugs, medicaments and biological substances in blood, blood-forming organs, or the immune system','Y','2025-10-23 00:00:00'),(78207,11,'MF8Z','Clinical findings in specimens from the urinary system, unspecified','Y','2025-10-23 00:00:00'),(78206,11,'MD40','Clinical findings in specimens from respiratory organs and thorax','Y','2025-10-23 00:00:00'),(78205,11,'MF7Z','Clinical findings in specimens from male genital organs, unspecified','Y','2025-10-23 00:00:00'),(78204,11,'MF6Z','Clinical findings in specimens from female genital organs, unspecified','Y','2025-10-23 00:00:00'),(78203,11,'ME20.Z','Clinical findings in specimens from digestive organs or abdominal cavity, unspecified','Y','2025-10-23 00:00:00'),(78202,11,'ME20','Clinical findings in specimens from digestive organs or abdominal cavity','Y','2025-10-23 00:00:00'),(78201,11,'MB70.Z','Clinical findings in cerebrospinal fluid, unspecified','Y','2025-10-23 00:00:00'),(78200,11,'MB70','Clinical findings in cerebrospinal fluid','Y','2025-10-23 00:00:00'),(78199,11,'LA10.1','Clinical anophthalmos','Y','2025-10-23 00:00:00'),(78198,11,'XM8BY6','Clindamycin topical','Y','2025-10-23 00:00:00'),(78196,11,'XE1AK','Cliff','Y','2025-10-23 00:00:00'),(78197,11,'XM8158','Clindamycin','Y','2025-10-23 00:00:00'),(78195,11,'XM2619','Clidinium bromide','Y','2025-10-23 00:00:00'),(78194,11,'ME80','Clicking hip','Y','2025-10-23 00:00:00'),(78193,11,'XM9K66','Clevudine','Y','2025-10-23 00:00:00'),(78192,11,'XM5GS7','Clevidipine','Y','2025-10-23 00:00:00'),(78190,11,'XM4YY1','Clemizole penicillin','Y','2025-10-23 00:00:00'),(78191,11,'XM3NS3','Clenbuterol','Y','2025-10-23 00:00:00'),(78189,11,'XM0Y33','Clemizole','Y','2025-10-23 00:00:00'),(78188,11,'XM5D25','Clematis vitalba plant','Y','2025-10-23 00:00:00'),(78187,11,'XM5804','Clematis plant','Y','2025-10-23 00:00:00'),(78186,11,'XM3DL4','Clemastine','Y','2025-10-23 00:00:00'),(78185,11,'LA4Z','Clefts of lip, alveolus or palate, unspecified','Y','2025-10-23 00:00:00'),(78184,11,'LA42.2','Cleft uvula','Y','2025-10-23 00:00:00'),(78183,11,'LA42.1','Cleft soft palate','Y','2025-10-23 00:00:00'),(78182,11,'LA42','Cleft palate','Y','2025-10-23 00:00:00'),(78181,11,'LA40.0','Cleft lip, unilateral','Y','2025-10-23 00:00:00'),(78180,11,'LA40.2','Cleft lip, median','Y','2025-10-23 00:00:00'),(78179,11,'LA40.1','Cleft lip, bilateral','Y','2025-10-23 00:00:00'),(78178,11,'LA41.0','Cleft lip and alveolus, unilateral','Y','2025-10-23 00:00:00'),(78177,11,'LA41.1','Cleft lip and alveolus, bilateral','Y','2025-10-23 00:00:00'),(78176,11,'LA41','Cleft lip and alveolus','Y','2025-10-23 00:00:00'),(78174,11,'LA42.0','Cleft hard palate','Y','2025-10-23 00:00:00'),(78175,11,'LA40','Cleft lip','Y','2025-10-23 00:00:00'),(78173,11,'XM9H76','Clefamide','Y','2025-10-23 00:00:00'),(78171,11,'XH77N6','Clear cell sarcoma, NOS','Y','2025-10-23 00:00:00'),(78172,11,'XM4GL7','Clebopride','Y','2025-10-23 00:00:00'),(78170,11,'XH0765','Clear cell sarcoma of kidney','Y','2025-10-23 00:00:00'),(78169,11,'XH46F1','Clear cell renal cell carcinoma, NOS','Y','2025-10-23 00:00:00'),(78168,11,'XH9T60','Clear cell papillary renal cell carcinoma','Y','2025-10-23 00:00:00'),(78167,11,'XH5DZ4','Clear cell odontogenic carcinoma','Y','2025-10-23 00:00:00'),(78166,11,'XH71V9','Clear cell meningioma','Y','2025-10-23 00:00:00'),(78163,11,'XH6ZU1','Clear cell cystadenoma','Y','2025-10-23 00:00:00'),(78164,11,'XH6E51','Clear cell ependymoma','Y','2025-10-23 00:00:00'),(78165,11,'XH0AQ8','Clear cell hidradenoma','Y','2025-10-23 00:00:00'),(78161,11,'XH6CZ3','Clear cell borderline tumour','Y','2025-10-23 00:00:00');
INSERT INTO `icd` VALUES (78162,11,'XH7XB9','Clear cell chondrosarcoma','Y','2025-10-23 00:00:00'),(78160,11,'XH8R87','Clear cell adenoma','Y','2025-10-23 00:00:00'),(78159,11,'XH0S86','Clear cell adenofibroma of borderline malignancy','Y','2025-10-23 00:00:00'),(78158,11,'XH9JJ4','Clear cell adenofibroma','Y','2025-10-23 00:00:00'),(78157,11,'XH6L02','Clear cell adenocarcinoma, NOS','Y','2025-10-23 00:00:00'),(78155,11,'2C73.00','Clear cell adenocarcinoma of ovary','Y','2025-10-23 00:00:00'),(78156,11,'XH6YS0','Clear cell adenocarcinoma, mesonephroid','Y','2025-10-23 00:00:00'),(78154,11,'XH2Q13','Clear cell adenocarcinofibroma','Y','2025-10-23 00:00:00'),(78152,11,'XE8EL','Cleaning utensil or container','Y','2025-10-23 00:00:00'),(78153,11,'XH13L5','Clear cell acanthoma','Y','2025-10-23 00:00:00'),(78151,11,'XE87D','Cleaning or laundering appliance or tool','Y','2025-10-23 00:00:00'),(78150,11,'XE5U0','Cleaning agent for contact lenses','Y','2025-10-23 00:00:00'),(78149,11,'XM2K88','Clavulanic acid','Y','2025-10-23 00:00:00'),(78148,11,'XA4MN6','Clavicular region','Y','2025-10-23 00:00:00'),(78147,11,'XA6384','Clavicle','Y','2025-10-23 00:00:00'),(78146,11,'XM00E5','Claviceps purpurea','Y','2025-10-23 00:00:00'),(78145,11,'XA00D6','Claustrum','Y','2025-10-23 00:00:00'),(78144,11,'1G04.0','Classical scabies','Y','2025-10-23 00:00:00'),(78143,11,'5C50.00','Classical phenylketonuria','Y','2025-10-23 00:00:00'),(78142,11,'5C50.E0','Classical organic aciduria','Y','2025-10-23 00:00:00'),(78141,11,'2B30.1Z','Classical Hodgkin lymphoma, unspecified','Y','2025-10-23 00:00:00'),(78140,11,'XH22K3','Classical Hodgkin lymphoma post-transplant lymphoproliferative disease','Y','2025-10-23 00:00:00'),(78139,11,'2B30.1','Classical Hodgkin lymphoma','Y','2025-10-23 00:00:00'),(78138,11,'CA25.0','Classical cystic fibrosis','Y','2025-10-23 00:00:00'),(78137,11,'XH0RY1','Classic medulloblastoma','Y','2025-10-23 00:00:00'),(78136,11,'DA0E.50','Class II division 2 malocclusion','Y','2025-10-23 00:00:00'),(78135,11,'XM34C6','Clascoterone','Y','2025-10-23 00:00:00'),(78134,11,'MG50.40','Clarithromycin resistant Helicobacter pylori','Y','2025-10-23 00:00:00'),(78133,11,'XM1VG4','Clarithromycin','Y','2025-10-23 00:00:00'),(78132,11,'XE4PG','Clamp fastner component of medical device','Y','2025-10-23 00:00:00'),(78131,11,'XM3S96','Clam seafood poison','Y','2025-10-23 00:00:00'),(78130,11,'XM1055','Cladribine','Y','2025-10-23 00:00:00'),(78129,11,'XE2WZ','Civilian','Y','2025-10-23 00:00:00'),(78128,11,'5C50.A3','Citrullinaemia','Y','2025-10-23 00:00:00'),(78127,11,'XM4W45','Citronellol','Y','2025-10-23 00:00:00'),(78126,11,'XN0M3','Citrobacter freundii','Y','2025-10-23 00:00:00'),(78125,11,'XN0FZ','Citrobacter','Y','2025-10-23 00:00:00'),(78124,11,'XM4UE5','Citrinin','Y','2025-10-23 00:00:00'),(78123,11,'XM3RH9','Citric acid','Y','2025-10-23 00:00:00'),(78122,11,'XM0232','Citreoviridin','Y','2025-10-23 00:00:00'),(78121,11,'XM9CQ1','Citral','Y','2025-10-23 00:00:00'),(78120,11,'XM0413','Citiolone','Y','2025-10-23 00:00:00'),(78119,11,'XM5TT1','Citicoline','Y','2025-10-23 00:00:00'),(78117,11,'XA7474','Cisterna chyli lymph sac','Y','2025-10-23 00:00:00'),(78118,11,'XM6WT9','Citalopram','Y','2025-10-23 00:00:00'),(78116,11,'XM05M0','Cisplatin','Y','2025-10-23 00:00:00'),(78115,11,'XM0SQ7','Cisatracurium','Y','2025-10-23 00:00:00'),(78114,11,'XM3346','Cisapride','Y','2025-10-23 00:00:00'),(78113,11,'MB25.00','Circumstantiality','Y','2025-10-23 00:00:00'),(78112,11,'QA8Z','Circumstances associated with other aspects of care influencing the episode of care without injury or harm, unspecified','Y','2025-10-23 00:00:00'),(78111,11,'QA7Z','Circumstances associated with exposure to a drug, medicament or biological substance influencing the episode of care without injury or harm, unspecified','Y','2025-10-23 00:00:00'),(78110,11,'QA5Z','Circumstances associated with a surgical or other medical procedure influencing the episode of care, without injury or harm, unspecified','Y','2025-10-23 00:00:00'),(78109,11,'QA6Z','Circumstances associated with a surgical or other medical device influencing the episode of care without injury or harm, unspecified','Y','2025-10-23 00:00:00'),(78108,11,'XA8T70','Circulus arteriosus minor artery','Y','2025-10-23 00:00:00'),(78107,11,'XA22D8','Circulus arteriosus major artery','Y','2025-10-23 00:00:00'),(78106,11,'XN7UU','Circulating vaccine-derived poliovirus type 3','Y','2025-10-23 00:00:00'),(78105,11,'XN1XN','Circulating vaccine-derived poliovirus type 2','Y','2025-10-23 00:00:00'),(78104,11,'XN2T1','Circulating vaccine-derived poliovirus type 1','Y','2025-10-23 00:00:00'),(78103,11,'XA9JS4','Circular sinus','Y','2025-10-23 00:00:00'),(78102,11,'XE5FA','Circuit failure','Y','2025-10-23 00:00:00'),(78101,11,'XE5BT','Circuit breaker component of medical device','Y','2025-10-23 00:00:00'),(78100,11,'XE2WY','Circuit board component of medical device','Y','2025-10-23 00:00:00'),(78099,11,'7A6Z','Circadian rhythm sleep-wake disorders, unspecified','Y','2025-10-23 00:00:00'),(78098,11,'7A64','Circadian rhythm sleep-wake disorder, shift work type','Y','2025-10-23 00:00:00'),(78097,11,'7A65','Circadian rhythm sleep-wake disorder, jet lag type','Y','2025-10-23 00:00:00'),(78096,11,'XM36B5','Ciprofloxacin and tinidazole','Y','2025-10-23 00:00:00'),(78095,11,'XM51W6','Ciprofloxacin and ornidazole','Y','2025-10-23 00:00:00'),(78094,11,'XM9T47','Ciprofloxacin and metronidazole','Y','2025-10-23 00:00:00'),(78093,11,'XM77G2','Ciprofloxacin','Y','2025-10-23 00:00:00'),(78092,11,'XM9HU7','Ciprofibrate','Y','2025-10-23 00:00:00'),(78091,11,'XM6DH1','Cinoxacin','Y','2025-10-23 00:00:00'),(78090,11,'XM4BU2','Cinolazepam','Y','2025-10-23 00:00:00'),(78089,11,'XM7CE7','Cinnarizine','Y','2025-10-23 00:00:00'),(78088,11,'XM7VB3','Cinnamyl alcohol','Y','2025-10-23 00:00:00'),(78087,11,'XM6YA3','Cinnamomum camphora plant','Y','2025-10-23 00:00:00'),(78086,11,'XM1H52','Cinnamedrine','Y','2025-10-23 00:00:00'),(78085,11,'XM0V58','Cinnamaldehyde','Y','2025-10-23 00:00:00'),(78084,11,'XM1W04','Cinitapride','Y','2025-10-23 00:00:00'),(78083,11,'XM7LH3','Cinepazide','Y','2025-10-23 00:00:00'),(78082,11,'XM0UA6','Cinepazet','Y','2025-10-23 00:00:00'),(78081,11,'XM7Q79','Cineole','Y','2025-10-23 00:00:00'),(78080,11,'XM3WA0','Cinchophen','Y','2025-10-23 00:00:00'),(78079,11,'XM9V39','Cinchonine alkaloids','Y','2025-10-23 00:00:00'),(78078,11,'XM38E0','Cinchona','Y','2025-10-23 00:00:00'),(78077,11,'XM5Y10','Cinchocaine topical','Y','2025-10-23 00:00:00'),(78076,11,'XM0L28','Cinchocaine','Y','2025-10-23 00:00:00'),(78075,11,'XM40P9','Cinacalcet','Y','2025-10-23 00:00:00'),(78074,11,'1G06','Cimicosis','Y','2025-10-23 00:00:00'),(78073,11,'XM6DH4','Cimicifugae rhizoma','Y','2025-10-23 00:00:00'),(78072,11,'XM0PN2','Cimetropium bromide','Y','2025-10-23 00:00:00'),(78071,11,'XM9YL4','Cimetidine','Y','2025-10-23 00:00:00'),(78070,11,'XM92L1','Cilostazol','Y','2025-10-23 00:00:00'),(78069,11,'XM3TF3','Cilnidipine','Y','2025-10-23 00:00:00'),(78068,11,'XA1S43','Ciliary processes','Y','2025-10-23 00:00:00'),(78066,11,'XA1SG6','Ciliary ganglion','Y','2025-10-23 00:00:00'),(78067,11,'XA9SH1','Ciliary muscle','Y','2025-10-23 00:00:00'),(78065,11,'CB40.0','Ciliary dyskinesia','Y','2025-10-23 00:00:00'),(78064,11,'XA03X9','Ciliary body','Y','2025-10-23 00:00:00'),(78063,11,'9C61.35','Ciliary block glaucoma','Y','2025-10-23 00:00:00'),(78062,11,'XM1CT9','Cilgavimab','Y','2025-10-23 00:00:00'),(78061,11,'XM1AZ4','Cilazapril','Y','2025-10-23 00:00:00'),(78060,11,'XM3X37','Cilansetron','Y','2025-10-23 00:00:00'),(78059,11,'XM1DD9','Ciguatera fish seafood poison','Y','2025-10-23 00:00:00'),(78057,11,'XM6HE0','Cidofovir','Y','2025-10-23 00:00:00'),(78058,11,'XE01N','Cigarette, cigar, pipe','Y','2025-10-23 00:00:00'),(78056,11,'XM1S86','Cicutoxin','Y','2025-10-23 00:00:00'),(78055,11,'XM6709','Cicuta maculata plant','Y','2025-10-23 00:00:00'),(78054,11,'XM3ZG3','Ciclosporin opthalmic preparation','Y','2025-10-23 00:00:00'),(78053,11,'XM28J8','Ciclosporin','Y','2025-10-23 00:00:00'),(78052,11,'XM0852','Ciclopirox (olamine)','Y','2025-10-23 00:00:00'),(78051,11,'XM48Y3','Ciclonicate','Y','2025-10-23 00:00:00'),(78049,11,'XM0G11','Cicletanine','Y','2025-10-23 00:00:00'),(78050,11,'XM7982','Ciclobendazole','Y','2025-10-23 00:00:00'),(78048,11,'XM9DE4','Ciclesonide topical','Y','2025-10-23 00:00:00'),(78046,11,'XM2361','Ciclacillin','Y','2025-10-23 00:00:00'),(78047,11,'XM4TY1','Ciclesonide','Y','2025-10-23 00:00:00'),(78045,11,'9A60.2','Cicatrizing conjunctivitis','Y','2025-10-23 00:00:00'),(78044,11,'9A03.40','Cicatricial lagophthalmos','Y','2025-10-23 00:00:00'),(78043,11,'9A03.10','Cicatricial entropion of eyelid','Y','2025-10-23 00:00:00'),(78042,11,'9A03.20','Cicatricial ectropion of eyelid','Y','2025-10-23 00:00:00'),(78041,11,'XM1SV2','Cibenzoline','Y','2025-10-23 00:00:00'),(78040,11,'XM0HR7','Cianopramine','Y','2025-10-23 00:00:00'),(78039,11,'XM8UA9','Cianidanol','Y','2025-10-23 00:00:00'),(78038,11,'XM32H1','Chymotrypsin ophthalmic preparation','Y','2025-10-23 00:00:00'),(78037,11,'XM7NZ6','Chymotrypsin','Y','2025-10-23 00:00:00'),(78035,11,'MF92','Chyluria','Y','2025-10-23 00:00:00'),(78036,11,'XM2UE2','Chymopapain','Y','2025-10-23 00:00:00'),(78033,11,'DC51.0','Chylous ascites','Y','2025-10-23 00:00:00'),(78034,11,'CB24','Chylous effusion','Y','2025-10-23 00:00:00'),(78031,11,'XN8W1','Chrysosporium parvum','Y','2025-10-23 00:00:00'),(78032,11,'XE5YC','Chulo stove','Y','2025-10-23 00:00:00'),(78030,11,'XN106','Chrysosporium','Y','2025-10-23 00:00:00'),(78028,11,'XM49V0','Chrysanthemum cinerariifolium plant','Y','2025-10-23 00:00:00'),(78029,11,'XM7HY4','Chrysarobin','Y','2025-10-23 00:00:00'),(78027,11,'MG30.01','Chronic widespread pain','Y','2025-10-23 00:00:00'),(78026,11,'MG30.41','Chronic visceral pain from vascular mechanisms','Y','2025-10-23 00:00:00'),(78025,11,'MG30.42','Chronic visceral pain from persistent inflammation','Y','2025-10-23 00:00:00'),(78024,11,'MG30.40','Chronic visceral pain from mechanical factors','Y','2025-10-23 00:00:00'),(78023,11,'1E51.Z','Chronic viral hepatitis, unspecified','Y','2025-10-23 00:00:00'),(78021,11,'1D85.2','Chronic viral carditis','Y','2025-10-23 00:00:00'),(78022,11,'1E51','Chronic viral hepatitis','Y','2025-10-23 00:00:00'),(78020,11,'AB32.Z','Chronic vestibular syndrome, unspecified','Y','2025-10-23 00:00:00'),(78019,11,'AB32','Chronic vestibular syndrome','Y','2025-10-23 00:00:00'),(78018,11,'8B43.2','Chronic venous infarction of the spinal cord','Y','2025-10-23 00:00:00'),(78017,11,'DD31.Z','Chronic vascular disorders of intestine, unspecified','Y','2025-10-23 00:00:00'),(78016,11,'DD31','Chronic vascular disorders of intestine','Y','2025-10-23 00:00:00'),(78015,11,'ME63.1','Chronic urticarial skin disorder','Y','2025-10-23 00:00:00'),(78014,11,'EB00.1','Chronic urticaria','Y','2025-10-23 00:00:00'),(78013,11,'GB55.2','Chronic urate nephropathy','Y','2025-10-23 00:00:00'),(78012,11,'AB32.1','Chronic unilateral idiopathic vestibulopathy','Y','2025-10-23 00:00:00'),(78011,11,'DA01.12','Chronic ulcerative stomatitis','Y','2025-10-23 00:00:00'),(78010,11,'GB55.Z','Chronic tubulo-interstitial nephritis, unspecified','Y','2025-10-23 00:00:00'),(78009,11,'GB55','Chronic tubulo-interstitial nephritis','Y','2025-10-23 00:00:00'),(78008,11,'AA91.0','Chronic tubotympanic suppurative otitis media','Y','2025-10-23 00:00:00'),(78007,11,'BA84','Chronic total occlusion of coronary artery','Y','2025-10-23 00:00:00'),(78006,11,'BB01.3','Chronic thromboembolic pulmonary hypertension','Y','2025-10-23 00:00:00'),(78005,11,'8A81.2','Chronic tension-type headache','Y','2025-10-23 00:00:00'),(78003,11,'AA91','Chronic suppurative otitis media','Y','2025-10-23 00:00:00'),(78004,11,'AA91.Z','Chronic suppurative otitis media, unspecified','Y','2025-10-23 00:00:00'),(78002,11,'DA42.71','Chronic superficial gastritis of unknown aetiology','Y','2025-10-23 00:00:00'),(78001,11,'ME63','Chronic skin disorder of uncertain or unspecified nature','Y','2025-10-23 00:00:00'),(78000,11,'AA82','Chronic serous or mucoid otitis media','Y','2025-10-23 00:00:00'),(77999,11,'MG30.4Z','Chronic secondary visceral pain, unspecified','Y','2025-10-23 00:00:00'),(77998,11,'MG30.4','Chronic secondary visceral pain','Y','2025-10-23 00:00:00'),(77997,11,'MG30.3Z','Chronic secondary musculoskeletal pain, unspecified','Y','2025-10-23 00:00:00'),(77996,11,'MG30.30','Chronic secondary musculoskeletal pain from persistent inflammation','Y','2025-10-23 00:00:00'),(77995,11,'MG30.32','Chronic secondary musculoskeletal pain due to disease of the nervous system','Y','2025-10-23 00:00:00'),(77994,11,'MG30.31','Chronic secondary musculoskeletal pain associated with structural changes','Y','2025-10-23 00:00:00'),(77993,11,'MG30.3','Chronic secondary musculoskeletal pain','Y','2025-10-23 00:00:00'),(77992,11,'MG30.6Z','Chronic secondary headache or orofacial pain, unspecified','Y','2025-10-23 00:00:00'),(77991,11,'MG30.6','Chronic secondary headache or orofacial pain','Y','2025-10-23 00:00:00'),(77990,11,'ME63.4','Chronic scaling or hyperkeratotic skin disorder','Y','2025-10-23 00:00:00'),(77989,11,'GA07.1','Chronic salpingitis and oophoritis','Y','2025-10-23 00:00:00'),(77987,11,'CA0A','Chronic rhinosinusitis','Y','2025-10-23 00:00:00'),(77988,11,'CA0A.Z','Chronic rhinosinusitis, unspecified','Y','2025-10-23 00:00:00'),(77986,11,'CA09','Chronic rhinitis, nasopharyngitis or pharyngitis','Y','2025-10-23 00:00:00'),(77984,11,'BB21','Chronic rheumatic pericarditis','Y','2025-10-23 00:00:00'),(77985,11,'CA09.0','Chronic rhinitis','Y','2025-10-23 00:00:00'),(77983,11,'BC20','Chronic rheumatic heart diseases, not elsewhere classified','Y','2025-10-23 00:00:00'),(77982,11,'BC20.Z','Chronic rheumatic heart disease, unspecified','Y','2025-10-23 00:00:00'),(77980,11,'CB41.11','Chronic respiratory failure, Type II','Y','2025-10-23 00:00:00'),(77981,11,'CB41.1Z','Chronic respiratory failure, unspecified','Y','2025-10-23 00:00:00'),(77978,11,'CB41.1','Chronic respiratory failure','Y','2025-10-23 00:00:00'),(77979,11,'CB41.10','Chronic respiratory failure, Type I','Y','2025-10-23 00:00:00'),(77977,11,'KB29.Z','Chronic respiratory disease originating in the perinatal period, unspecified','Y','2025-10-23 00:00:00'),(77976,11,'KB29','Chronic respiratory disease originating in the perinatal period','Y','2025-10-23 00:00:00'),(77975,11,'5C73.1','Chronic respiratory acidosis','Y','2025-10-23 00:00:00'),(77974,11,'EL61','Chronic radiodermatitis following radiotherapy','Y','2025-10-23 00:00:00'),(77973,11,'BB00.1','Chronic pulmonary thromboembolism','Y','2025-10-23 00:00:00'),(77972,11,'CB61','Chronic pulmonary insufficiency following surgery','Y','2025-10-23 00:00:00'),(77971,11,'1F25.01','Chronic pulmonary coccidioidomycosis','Y','2025-10-23 00:00:00'),(77970,11,'1F20.12','Chronic pulmonary aspergillosis','Y','2025-10-23 00:00:00'),(77969,11,'GA91.0','Chronic prostatitis','Y','2025-10-23 00:00:00'),(77968,11,'DC50.12','Chronic proliferative peritonitis','Y','2025-10-23 00:00:00'),(77967,11,'MG30.00','Chronic primary visceral pain','Y','2025-10-23 00:00:00'),(77965,11,'MG30.0','Chronic primary pain','Y','2025-10-23 00:00:00'),(77966,11,'MG30.0Z','Chronic primary pain, unspecified','Y','2025-10-23 00:00:00'),(77964,11,'MG30.02','Chronic primary musculoskeletal pain','Y','2025-10-23 00:00:00'),(77963,11,'MG30.03','Chronic primary headache or orofacial pain','Y','2025-10-23 00:00:00'),(77962,11,'MG30.21','Chronic postsurgical pain','Y','2025-10-23 00:00:00'),(77961,11,'MG30.2Z','Chronic postsurgical or post traumatic pain, unspecified','Y','2025-10-23 00:00:00'),(77960,11,'MG30.2','Chronic postsurgical or post traumatic pain','Y','2025-10-23 00:00:00'),(77959,11,'3A00.01','Chronic posthaemorrhagic anaemia','Y','2025-10-23 00:00:00'),(77958,11,'MG30.20','Chronic post traumatic pain','Y','2025-10-23 00:00:00'),(77957,11,'MG30.11','Chronic post cancer treatment pain','Y','2025-10-23 00:00:00'),(77956,11,'CB04.6','Chronic pneumonitis of infancy','Y','2025-10-23 00:00:00'),(77955,11,'8A05.02','Chronic phonic tic disorder','Y','2025-10-23 00:00:00'),(77954,11,'CA09.2','Chronic pharyngitis','Y','2025-10-23 00:00:00'),(77953,11,'BD74.Z','Chronic peripheral venous insufficiency of lower extremities, unspecified','Y','2025-10-23 00:00:00'),(77952,11,'BD74','Chronic peripheral venous insufficiency of lower extremities','Y','2025-10-23 00:00:00'),(77951,11,'MG30.51','Chronic peripheral neuropathic pain','Y','2025-10-23 00:00:00'),(77950,11,'GB06.4','Chronic penile oedema','Y','2025-10-23 00:00:00'),(77949,11,'GA05.1','Chronic pelvic inflammatory disease','Y','2025-10-23 00:00:00'),(77948,11,'EE13.2','Chronic paronychia','Y','2025-10-23 00:00:00'),(77947,11,'ME63.2','Chronic papular skin disorder','Y','2025-10-23 00:00:00'),(77946,11,'DC32.Z','Chronic pancreatitis, unspecified','Y','2025-10-23 00:00:00'),(77945,11,'DC32','Chronic pancreatitis','Y','2025-10-23 00:00:00'),(77944,11,'MG30.Z','Chronic pain, unspecified','Y','2025-10-23 00:00:00'),(77943,11,'MG30','Chronic pain','Y','2025-10-23 00:00:00'),(77942,11,'AB01','Chronic otitis media','Y','2025-10-23 00:00:00'),(77941,11,'AA13','Chronic otitis externa','Y','2025-10-23 00:00:00'),(77940,11,'FB84.4','Chronic osteomyelitis with draining sinus','Y','2025-10-23 00:00:00'),(77939,11,'CA82.1','Chronic or other pulmonary manifestations due to radiation','Y','2025-10-23 00:00:00'),(77938,11,'CA22.Z','Chronic obstructive pulmonary disease, unspecified','Y','2025-10-23 00:00:00'),(77937,11,'CA22.0','Chronic obstructive pulmonary disease with acute exacerbation, unspecified','Y','2025-10-23 00:00:00'),(77936,11,'CA22','Chronic obstructive pulmonary disease','Y','2025-10-23 00:00:00'),(77935,11,'CA26.0','Chronic obliterative bronchiolitis','Y','2025-10-23 00:00:00'),(77934,11,'DA94.01','Chronic non-specific multiple ulcers of small intestine','Y','2025-10-23 00:00:00'),(77933,11,'XH5NQ7','Chronic neutrophilic leukaemia','Y','2025-10-23 00:00:00'),(77932,11,'2A20.1','Chronic neutrophilic leukaemia','Y','2025-10-23 00:00:00'),(77931,11,'MG30.5Z','Chronic neuropathic pain, unspecified','Y','2025-10-23 00:00:00'),(77930,11,'MG30.5','Chronic neuropathic pain','Y','2025-10-23 00:00:00'),(77929,11,'MG30.62','Chronic neuropathic orofacial pain','Y','2025-10-23 00:00:00'),(77928,11,'CA09.1','Chronic nasopharyngitis','Y','2025-10-23 00:00:00'),(77927,11,'AB15','Chronic myringitis','Y','2025-10-23 00:00:00'),(77926,11,'XH7HJ7','Chronic myelomonocytic leukaemia, Type II','Y','2025-10-23 00:00:00'),(77925,11,'XH0FC4','Chronic myelomonocytic leukaemia, Type I','Y','2025-10-23 00:00:00'),(77924,11,'XH86N4','Chronic myelomonocytic leukaemia, NOS','Y','2025-10-23 00:00:00'),(77923,11,'2A40','Chronic myelomonocytic leukaemia','Y','2025-10-23 00:00:00'),(77922,11,'2B33.2','Chronic myeloid leukaemia, not elsewhere classified','Y','2025-10-23 00:00:00'),(77921,11,'XH4XG8','Chronic myeloid leukaemia, NOS','Y','2025-10-23 00:00:00'),(77920,11,'2A20.02','Chronic myelogenous leukaemia, t(9:22)(q34; q11)','Y','2025-10-23 00:00:00'),(77919,11,'2A20.01','Chronic myelogenous leukaemia, Philadelphia chromosome (Ph1) positive','Y','2025-10-23 00:00:00'),(77918,11,'2A20.0Z','Chronic myelogenous leukaemia, BCR-ABL1-positive, unspecified','Y','2025-10-23 00:00:00'),(77917,11,'2A20.0','Chronic myelogenous leukaemia, BCR-ABL1-positive','Y','2025-10-23 00:00:00'),(77916,11,'XH2AB7','Chronic myelogenous leukaemia, BCR/ABL positive','Y','2025-10-23 00:00:00'),(77915,11,'2A20.00','Chronic myelogenous leukaemia with blast crisis','Y','2025-10-23 00:00:00'),(77914,11,'FB84.3','Chronic multifocal osteomyelitis','Y','2025-10-23 00:00:00'),(77913,11,'1F23.14','Chronic mucocutaneous candidosis','Y','2025-10-23 00:00:00'),(77912,11,'8A05.01','Chronic motor tic disorder','Y','2025-10-23 00:00:00'),(77911,11,'XH0E35','Chronic monocytic leukaemia','Y','2025-10-23 00:00:00'),(77910,11,'8A80.2','Chronic migraine','Y','2025-10-23 00:00:00'),(77909,11,'AB11.1','Chronic mastoiditis','Y','2025-10-23 00:00:00'),(77908,11,'2A90.2','Chronic lymphoproliferative disorders of NK-cells','Y','2025-10-23 00:00:00'),(77907,11,'XH5EN4','Chronic lymphoproliferative disorder of NK cells','Y','2025-10-23 00:00:00'),(77906,11,'2A82.0Z','Chronic lymphocytic leukaemia or small lymphocytic lymphoma, unspecified','Y','2025-10-23 00:00:00'),(77905,11,'2A82.0','Chronic lymphocytic leukaemia or small lymphocytic lymphoma','Y','2025-10-23 00:00:00'),(77904,11,'2A82.00','Chronic lymphocytic leukaemia of B-cell type','Y','2025-10-23 00:00:00'),(77903,11,'BD90.2Z','Chronic lymphadenitis, unspecified','Y','2025-10-23 00:00:00'),(77902,11,'BD90.2','Chronic lymphadenitis','Y','2025-10-23 00:00:00'),(77901,11,'DB99.0','Chronic liver disease','Y','2025-10-23 00:00:00'),(77900,11,'ME63.5','Chronic lichenified skin disorder','Y','2025-10-23 00:00:00'),(77899,11,'XH80C3','Chronic leukaemia, NOS','Y','2025-10-23 00:00:00'),(77898,11,'CA0G','Chronic laryngitis or laryngotracheitis','Y','2025-10-23 00:00:00'),(77897,11,'GB61.Z','Chronic kidney disease, stage unspecified','Y','2025-10-23 00:00:00'),(77896,11,'GB61.5','Chronic kidney disease, stage 5','Y','2025-10-23 00:00:00'),(77895,11,'GB61.4','Chronic kidney disease, stage 4','Y','2025-10-23 00:00:00'),(77894,11,'GB61.3','Chronic kidney disease, stage 3b','Y','2025-10-23 00:00:00'),(77892,11,'GB61.1','Chronic kidney disease, stage 2','Y','2025-10-23 00:00:00'),(77893,11,'GB61.2','Chronic kidney disease, stage 3a','Y','2025-10-23 00:00:00'),(77891,11,'GB61.0','Chronic kidney disease, stage 1','Y','2025-10-23 00:00:00'),(77890,11,'GB61','Chronic kidney disease','Y','2025-10-23 00:00:00'),(77889,11,'BA5Z','Chronic ischaemic heart disease, unspecified','Y','2025-10-23 00:00:00'),(77888,11,'FA33.4Z','Chronic instability of knee, unspecified','Y','2025-10-23 00:00:00'),(77887,11,'FA33.40','Chronic instability of knee, medial collateral ligament or other or unspecified part of medial meniscus','Y','2025-10-23 00:00:00'),(77886,11,'FA33.4','Chronic instability of knee','Y','2025-10-23 00:00:00'),(77884,11,'BD90.22','Chronic inguinal lymphadenitis','Y','2025-10-23 00:00:00'),(77885,11,'7A00','Chronic insomnia','Y','2025-10-23 00:00:00'),(77883,11,'GA01.1Z','Chronic inflammatory disease of uterus, unspecified','Y','2025-10-23 00:00:00'),(77882,11,'GA01.11','Chronic inflammatory disease of uterus with pyometra','Y','2025-10-23 00:00:00'),(77881,11,'GA01.1','Chronic inflammatory disease of uterus','Y','2025-10-23 00:00:00'),(77880,11,'8C01.3','Chronic inflammatory demyelinating polyneuropathy','Y','2025-10-23 00:00:00'),(77879,11,'AB93','Chronic inflammation of postmastoidectomy cavity','Y','2025-10-23 00:00:00'),(77878,11,'DC32.4','Chronic idiopathic pancreatitis','Y','2025-10-23 00:00:00'),(77877,11,'8A06.21','Chronic hiccups','Y','2025-10-23 00:00:00'),(77876,11,'DB97.2','Chronic hepatitis, not elsewhere classified','Y','2025-10-23 00:00:00'),(77875,11,'1E51.3','Chronic hepatitis E','Y','2025-10-23 00:00:00'),(77874,11,'1E51.2','Chronic hepatitis D','Y','2025-10-23 00:00:00'),(77873,11,'1E51.1','Chronic hepatitis C','Y','2025-10-23 00:00:00'),(77872,11,'1E51.0Z','Chronic hepatitis B, unspecified','Y','2025-10-23 00:00:00'),(77871,11,'1E51.00','Chronic hepatitis B with human immunodeficiency virus co-infection','Y','2025-10-23 00:00:00'),(77870,11,'1E51.0','Chronic hepatitis B','Y','2025-10-23 00:00:00'),(77869,11,'DB99.8','Chronic hepatic failure','Y','2025-10-23 00:00:00'),(77868,11,'MG30.66','Chronic headache or orofacial pain associated with non-vascular intracranial disorder','Y','2025-10-23 00:00:00'),(77867,11,'MG30.64','Chronic headache or orofacial pain associated with disorders of homoeostasis or their nonpharmacological treatment','Y','2025-10-23 00:00:00'),(77866,11,'MG30.65','Chronic headache or orofacial pain associated with cranial or cervical vascular disorder','Y','2025-10-23 00:00:00'),(77865,11,'MG30.67','Chronic headache associated with a substance or its withdrawal','Y','2025-10-23 00:00:00'),(77864,11,'4B24.1','Chronic graft-versus-host disease','Y','2025-10-23 00:00:00'),(77863,11,'ME24.91','Chronic gastrointestinal bleeding, not elsewhere classified','Y','2025-10-23 00:00:00'),(77862,11,'ME63.7','Chronic excoriation of skin','Y','2025-10-23 00:00:00'),(77861,11,'ME63.0','Chronic erythematous skin disorder','Y','2025-10-23 00:00:00'),(77860,11,'2A20.3','Chronic eosinophilic leukaemia, not elsewhere classified','Y','2025-10-23 00:00:00'),(77859,11,'XH51D2','Chronic eosinophilic leukaemia','Y','2025-10-23 00:00:00'),(77858,11,'ME06','Chronic enteritis of uncertain aetiology','Y','2025-10-23 00:00:00'),(77857,11,'MC12','Chronic enlargement of lacrimal gland','Y','2025-10-23 00:00:00'),(77856,11,'GA01.10','Chronic endometritis','Y','2025-10-23 00:00:00'),(77855,11,'EJ71','Chronic effects of ionizing radiation on the skin','Y','2025-10-23 00:00:00'),(77854,11,'DB95.20','Chronic drug-induced or toxic liver disease with cholestasis','Y','2025-10-23 00:00:00'),(77853,11,'CA82.3','Chronic drug-induced interstitial lung disorders','Y','2025-10-23 00:00:00'),(77852,11,'CA0F.Z','Chronic diseases of tonsils or adenoids, unspecified','Y','2025-10-23 00:00:00'),(77851,11,'CA0F','Chronic diseases of tonsils or adenoids','Y','2025-10-23 00:00:00'),(77850,11,'ME63.6','Chronic discoid or annular skin disorder','Y','2025-10-23 00:00:00'),(77849,11,'MG30.61','Chronic dental pain','Y','2025-10-23 00:00:00'),(77848,11,'DA08.2','Chronic dental injuries','Y','2025-10-23 00:00:00'),(77847,11,'1B75.4','Chronic deep bacterial folliculitis','Y','2025-10-23 00:00:00'),(77846,11,'EB51','Chronic cutaneous lupus erythematosus','Y','2025-10-23 00:00:00'),(77845,11,'3B81.C','Chronic congestive splenomegaly','Y','2025-10-23 00:00:00'),(77844,11,'DC12.1','Chronic cholecystitis','Y','2025-10-23 00:00:00'),(77843,11,'1F53.2','Chronic Chagas disease with heart involvement','Y','2025-10-23 00:00:00'),(77842,11,'BD90.20','Chronic cervical lymphadenitis','Y','2025-10-23 00:00:00'),(77841,11,'MG30.50','Chronic central neuropathic pain','Y','2025-10-23 00:00:00'),(77840,11,'MG30.1Z','Chronic cancer related pain, unspecified','Y','2025-10-23 00:00:00'),(77839,11,'MG30.1','Chronic cancer related pain','Y','2025-10-23 00:00:00'),(77838,11,'MG30.10','Chronic cancer pain','Y','2025-10-23 00:00:00'),(77837,11,'CA20.1Z','Chronic bronchitis, unspecified','Y','2025-10-23 00:00:00'),(77836,11,'CA20.1','Chronic bronchitis','Y','2025-10-23 00:00:00'),(77835,11,'CA26.Z','Chronic bronchiolitis, unspecified','Y','2025-10-23 00:00:00'),(77834,11,'CA26','Chronic bronchiolitis','Y','2025-10-23 00:00:00'),(77833,11,'ME63.3','Chronic blistering skin disorder','Y','2025-10-23 00:00:00'),(77832,11,'AB32.5','Chronic bilateral vestibulopathy','Y','2025-10-23 00:00:00'),(77831,11,'BD90.21','Chronic axillary lymphadenitis','Y','2025-10-23 00:00:00'),(77830,11,'AA91.1','Chronic atticoantral suppurative otitis media','Y','2025-10-23 00:00:00'),(77829,11,'DA42.73','Chronic atrophic gastritis of unknown aetiology','Y','2025-10-23 00:00:00'),(77828,11,'1F20.11','Chronic aspergillosis of the paranasal sinuses','Y','2025-10-23 00:00:00'),(77827,11,'BD4Z','Chronic arterial occlusive disease, unspecified','Y','2025-10-23 00:00:00'),(77826,11,'DB10.1','Chronic appendicitis','Y','2025-10-23 00:00:00'),(77825,11,'DA09.71','Chronic apical periodontitis','Y','2025-10-23 00:00:00'),(77824,11,'9C61.16','Chronic angle-closure','Y','2025-10-23 00:00:00'),(77823,11,'DC32.3','Chronic alcohol-induced pancreatitis','Y','2025-10-23 00:00:00'),(77822,11,'EJ30.1','Chronic actinic dermatitis','Y','2025-10-23 00:00:00'),(77821,11,'3A61.1','Chronic acquired pure red cell aplasia','Y','2025-10-23 00:00:00'),(77820,11,'XT8W','Chronic','Y','2025-10-23 00:00:00'),(77819,11,'XM79V9','Chromyl chloride','Y','2025-10-23 00:00:00'),(77818,11,'LD47.1','Chromosome inversion in normal individual','Y','2025-10-23 00:00:00'),(77817,11,'LD7Z','Chromosomal anomalies, excluding gene mutations, unspecified','Y','2025-10-23 00:00:00'),(77816,11,'XH7SS7','Chromophobe carcinoma','Y','2025-10-23 00:00:00'),(77815,11,'XH7475','Chromophobe adenoma','Y','2025-10-23 00:00:00'),(77814,11,'XN066','Chromomycosis','Y','2025-10-23 00:00:00'),(77813,11,'XM5VY1','Chromomycin A3','Y','2025-10-23 00:00:00'),(77812,11,'1F24','Chromoblastomycosis','Y','2025-10-23 00:00:00'),(77811,11,'XM34P0','Chromium VI compounds','Y','2025-10-23 00:00:00'),(77810,11,'XM87D3','Chromium sesquioxide','Y','2025-10-23 00:00:00'),(77809,11,'5B5K.8','Chromium deficiency','Y','2025-10-23 00:00:00'),(77808,11,'XM9YJ8','Chromium','Y','2025-10-23 00:00:00'),(77807,11,'XM3ZJ5','Chromic phosphate 32P','Y','2025-10-23 00:00:00'),(77806,11,'XM95L9','Chromic acid','Y','2025-10-23 00:00:00'),(77805,11,'XE1FR','Christmas tree','Y','2025-10-23 00:00:00'),(77804,11,'9B65.Z','Choroiditis, unspecified','Y','2025-10-23 00:00:00'),(77803,11,'9B65','Choroiditis','Y','2025-10-23 00:00:00'),(77802,11,'NA06.61','Choroidal rupture','Y','2025-10-23 00:00:00'),(77801,11,'9B63','Choroidal haemorrhage or rupture','Y','2025-10-23 00:00:00'),(77800,11,'9B61','Choroidal dystrophy','Y','2025-10-23 00:00:00'),(77799,11,'9B64','Choroidal detachment','Y','2025-10-23 00:00:00'),(77798,11,'9B60','Choroidal degeneration','Y','2025-10-23 00:00:00'),(77797,11,'XA49Y4','Choroid vein','Y','2025-10-23 00:00:00'),(77796,11,'2A00.22','Choroid plexus tumours','Y','2025-10-23 00:00:00'),(77795,11,'XH0RF9','Choroid plexus papilloma, NOS','Y','2025-10-23 00:00:00'),(77794,11,'XA53A3','Choroid plexus of third ventricle','Y','2025-10-23 00:00:00'),(77793,11,'XA1XM1','Choroid plexus of lateral ventricle','Y','2025-10-23 00:00:00'),(77792,11,'XA1B86','Choroid plexus of fourth ventricle','Y','2025-10-23 00:00:00'),(77791,11,'XH3M77','Choroid plexus carcinoma','Y','2025-10-23 00:00:00'),(77790,11,'XA9KX2','Choroid plexus','Y','2025-10-23 00:00:00'),(77789,11,'XA96A7','Choroid','Y','2025-10-23 00:00:00'),(77788,11,'9D22','Chorioretinal scars after surgery for detachment','Y','2025-10-23 00:00:00'),(77787,11,'9B62','Chorioretinal scars','Y','2025-10-23 00:00:00'),(77786,11,'9B65.2','Chorioretinal inflammation','Y','2025-10-23 00:00:00'),(77784,11,'XA66R5','Chorion','Y','2025-10-23 00:00:00'),(77785,11,'XM49L1','Chorionic gonadotrophin','Y','2025-10-23 00:00:00'),(77783,11,'XM6HX4','Choriogonadotropin alfa','Y','2025-10-23 00:00:00'),(77782,11,'XH8PK7','Choriocarcinoma, NOS','Y','2025-10-23 00:00:00'),(77780,11,'8A01.Z','Choreiform disorders, unspecified','Y','2025-10-23 00:00:00'),(77781,11,'XH3WM1','Choriocarcinoma combined with other germ cell elements','Y','2025-10-23 00:00:00'),(77779,11,'8A01','Choreiform disorders','Y','2025-10-23 00:00:00'),(77778,11,'8A01.13','Chorea due to Wilson disease','Y','2025-10-23 00:00:00'),(77777,11,'8A01.15','Chorea due to systemic lupus erythematosus','Y','2025-10-23 00:00:00'),(77776,11,'8A01.14','Chorea due to infectious or para-infectious causes','Y','2025-10-23 00:00:00'),(77775,11,'8A01.11','Chorea due to Huntington disease-like conditions','Y','2025-10-23 00:00:00'),(77774,11,'8A01.12','Chorea due to Dentatorubral pallidoluysian atrophy','Y','2025-10-23 00:00:00'),(77773,11,'XH9GH0','Chordoma, NOS','Y','2025-10-23 00:00:00'),(77772,11,'XH2LS4','Chordoid meningioma','Y','2025-10-23 00:00:00'),(77771,11,'XH4101','Chordoid glioma of third ventricle','Y','2025-10-23 00:00:00'),(77770,11,'XH9HV1','Chordoid glioma','Y','2025-10-23 00:00:00'),(77769,11,'XA4LY3','Chordae tendineae of tricuspid valve','Y','2025-10-23 00:00:00'),(77768,11,'XA69W6','Chordae tendineae of mitral valve','Y','2025-10-23 00:00:00'),(77767,11,'XA01T0','Chordae tendineae','Y','2025-10-23 00:00:00'),(77766,11,'XA2BL2','Chorda tympani','Y','2025-10-23 00:00:00'),(77765,11,'XE56E','Chopping tool','Y','2025-10-23 00:00:00'),(77764,11,'2B50','Chondrosarcoma, primary site','Y','2025-10-23 00:00:00'),(77763,11,'XH8J23','Chondrosarcoma, NOS','Y','2025-10-23 00:00:00'),(77762,11,'XH0Y34','Chondrosarcoma, grade 3','Y','2025-10-23 00:00:00'),(77761,11,'XH6LT5','Chondrosarcoma, grade 2','Y','2025-10-23 00:00:00'),(77760,11,'2B50.Z','Chondrosarcoma of bone or articular cartilage of unspecified sites','Y','2025-10-23 00:00:00'),(77759,11,'2B50.2','Chondrosarcoma of bone or articular cartilage of ribs, sternum or clavicle','Y','2025-10-23 00:00:00'),(77758,11,'2B50.1','Chondrosarcoma of bone or articular cartilage of pelvis','Y','2025-10-23 00:00:00'),(77757,11,'2B50.Y','Chondrosarcoma of bone or articular cartilage of other specified sites','Y','2025-10-23 00:00:00'),(77755,11,'FB82.Z','Chondropathies, unspecified','Y','2025-10-23 00:00:00'),(77756,11,'2B50.0','Chondrosarcoma of bone or articular cartilage of limbs','Y','2025-10-23 00:00:00'),(77753,11,'XH89S0','Chondromyxoid fibroma','Y','2025-10-23 00:00:00'),(77754,11,'FB82','Chondropathies','Y','2025-10-23 00:00:00'),(77752,11,'XH5BT0','Chondromatosis, NOS','Y','2025-10-23 00:00:00'),(77751,11,'FB82.0Z','Chondromalacia, unspecified','Y','2025-10-23 00:00:00'),(77750,11,'FB82.00','Chondromalacia patellae','Y','2025-10-23 00:00:00'),(77749,11,'FB82.0','Chondromalacia','Y','2025-10-23 00:00:00'),(77748,11,'XH0NS4','Chondroma, NOS','Y','2025-10-23 00:00:00'),(77747,11,'XM6CK7','Chondroitin sulfate-iron complex','Y','2025-10-23 00:00:00'),(77746,11,'XM9352','Chondroitin sulfate','Y','2025-10-23 00:00:00'),(77745,11,'XH70N8','Chondroid syringoma','Y','2025-10-23 00:00:00'),(77744,11,'XH7WX8','Chondroid lipoma','Y','2025-10-23 00:00:00'),(77743,11,'XH17D8','Chondroid chordoma','Y','2025-10-23 00:00:00'),(77742,11,'8C71.1','Chondrodystrophic myotonia','Y','2025-10-23 00:00:00'),(77741,11,'LD24.04','Chondrodysplasia punctata','Y','2025-10-23 00:00:00'),(77740,11,'AA12','Chondrodermatitis nodularis','Y','2025-10-23 00:00:00'),(77739,11,'XM2SL6','Chondrocytes, autologous','Y','2025-10-23 00:00:00'),(77738,11,'FA26.2','Chondrocalcinosis','Y','2025-10-23 00:00:00'),(77737,11,'XH4NK2','Chondroblastoma, NOS','Y','2025-10-23 00:00:00'),(77736,11,'XH6W00','Chondroblastoma, malignant','Y','2025-10-23 00:00:00'),(77735,11,'XH3T03','Chondroblastic osteosarcoma','Y','2025-10-23 00:00:00'),(77734,11,'XM68U2','Cholinesterase reactivator','Y','2025-10-23 00:00:00'),(77733,11,'XM8ZA0','Cholinesterase','Y','2025-10-23 00:00:00'),(77732,11,'EB02','Cholinergic urticaria and related conditions','Y','2025-10-23 00:00:00'),(77731,11,'EB02.0','Cholinergic urticaria','Y','2025-10-23 00:00:00'),(77730,11,'XM6VJ2','Cholinergic trimethyl ammonium propanediol','Y','2025-10-23 00:00:00'),(77729,11,'XM4VC4','Cholinergic organophosphorus','Y','2025-10-23 00:00:00'),(77728,11,'XM4ZZ7','Cholinergic muscle tone enhancer','Y','2025-10-23 00:00:00'),(77727,11,'XM4LE7','Cholinergic (drug)','Y','2025-10-23 00:00:00'),(77726,11,'XM0GX7','Choline salicylate','Y','2025-10-23 00:00:00'),(77725,11,'XM9554','Choline fenofibrate','Y','2025-10-23 00:00:00'),(77724,11,'XM9223','Choline esters','Y','2025-10-23 00:00:00'),(77723,11,'XM3KK0','Choline dihydrogen citrate','Y','2025-10-23 00:00:00'),(77722,11,'5B5J','Choline deficiency','Y','2025-10-23 00:00:00'),(77721,11,'XM53N4','Choline chloride','Y','2025-10-23 00:00:00'),(77720,11,'XM63Q0','Choline alfoscerate','Y','2025-10-23 00:00:00'),(77719,11,'XM37T5','Cholic acid','Y','2025-10-23 00:00:00'),(77718,11,'XM8FB5','Cholestyramine (resin)','Y','2025-10-23 00:00:00'),(77717,11,'DC10.4','Cholesterolosis of gallbladder','Y','2025-10-23 00:00:00'),(77716,11,'XM35X4','Cholesterol-lowering agents','Y','2025-10-23 00:00:00'),(77715,11,'BD53.4Z','Cholesterol atheroembolism to unspecified site','Y','2025-10-23 00:00:00'),(77714,11,'BD53.4Y','Cholesterol atheroembolism to other specified sites','Y','2025-10-23 00:00:00'),(77713,11,'BD53.40','Cholesterol atheroembolism to kidneys','Y','2025-10-23 00:00:00'),(77712,11,'BD53.4','Cholesterol atheroembolism','Y','2025-10-23 00:00:00'),(77711,11,'AB12','Cholesteatoma of middle ear','Y','2025-10-23 00:00:00'),(77710,11,'AA40.2','Cholesteatoma of external auditory canal','Y','2025-10-23 00:00:00'),(77709,11,'EC90.11','Cholestatic pruritus','Y','2025-10-23 00:00:00'),(77708,11,'DB99.60','Cholestasis of parenteral nutrition','Y','2025-10-23 00:00:00'),(77707,11,'XM6RN6','Choleretic','Y','2025-10-23 00:00:00'),(77706,11,'XM72A0','Cholera, live attenuated vaccines','Y','2025-10-23 00:00:00'),(77705,11,'XM3Z26','Cholera, inactivated, whole cell vaccines','Y','2025-10-23 00:00:00'),(77704,11,'XM1FT6','Cholera, combinations with typhoid vaccine, inactivated, whole cell vaccines','Y','2025-10-23 00:00:00'),(77703,11,'XM29K4','Cholera vaccines','Y','2025-10-23 00:00:00'),(77702,11,'1A00','Cholera','Y','2025-10-23 00:00:00'),(77701,11,'DC11.Z','Cholelithiasis, unspecified','Y','2025-10-23 00:00:00'),(77700,11,'DC11','Cholelithiasis','Y','2025-10-23 00:00:00'),(77699,11,'LB20.20','Choledochal cyst','Y','2025-10-23 00:00:00'),(77698,11,'XM5374','Cholecystokinin','Y','2025-10-23 00:00:00'),(77697,11,'DC12.Z','Cholecystitis, unspecified','Y','2025-10-23 00:00:00'),(77696,11,'DC12','Cholecystitis','Y','2025-10-23 00:00:00'),(77695,11,'XM11C6','Cholecalciferol','Y','2025-10-23 00:00:00'),(77694,11,'DC13','Cholangitis','Y','2025-10-23 00:00:00'),(77693,11,'XH7M15','Cholangiocarcinoma','Y','2025-10-23 00:00:00'),(77692,11,'XM5QD3','Cholagogues','Y','2025-10-23 00:00:00'),(77691,11,'LA70.2','Choanal atresia','Y','2025-10-23 00:00:00'),(77690,11,'XM7Q44','Chlorzoxazone','Y','2025-10-23 00:00:00'),(77689,11,'XM66X7','Chlor-Trimeton','Y','2025-10-23 00:00:00'),(77688,11,'XM2MP2','Chlorthiophos','Y','2025-10-23 00:00:00'),(77686,11,'XM0295','Chlortetracycline topical','Y','2025-10-23 00:00:00'),(77687,11,'XM5566','Chlorthion','Y','2025-10-23 00:00:00'),(77685,11,'XM1JT2','Chlortetracycline','Y','2025-10-23 00:00:00'),(77684,11,'XM51L8','Chlortalidone','Y','2025-10-23 00:00:00'),(77683,11,'XM2CN0','Chlorquinol','Y','2025-10-23 00:00:00'),(77682,11,'XM56H5','Chlorquinaldol','Y','2025-10-23 00:00:00'),(77681,11,'XM3QX6','Chlorpyrifos','Y','2025-10-23 00:00:00'),(77680,11,'XM2H35','Chlorprothixene','Y','2025-10-23 00:00:00'),(77679,11,'XM8S18','Chlorpropamide','Y','2025-10-23 00:00:00'),(77678,11,'XM4U75','Chlorpromazine','Y','2025-10-23 00:00:00'),(77677,11,'XM0KE4','Chlorproguanil','Y','2025-10-23 00:00:00'),(77676,11,'XM6WY7','Chlorproethazine','Y','2025-10-23 00:00:00'),(77675,11,'XM16Q1','Chlorphentermine','Y','2025-10-23 00:00:00'),(77674,11,'XM4QD7','Chlorphenoxamine','Y','2025-10-23 00:00:00'),(77673,11,'XM9VG3','Chlorpheniramine','Y','2025-10-23 00:00:00'),(77672,11,'XM93C6','Chlorphenesin topical (antifungal)','Y','2025-10-23 00:00:00'),(77671,11,'XM3VA9','Chlorphenesin','Y','2025-10-23 00:00:00'),(77669,11,'XM92H5','Chloroxine','Y','2025-10-23 00:00:00'),(77670,11,'XM3XC5','Chloroxylenol','Y','2025-10-23 00:00:00'),(77668,11,'XM1BL4','Chlorovinyldichloroarsine','Y','2025-10-23 00:00:00'),(77667,11,'XM1058','Chlorotrianisene','Y','2025-10-23 00:00:00'),(77666,11,'XM01Q7','Chlorothymol','Y','2025-10-23 00:00:00'),(77665,11,'XM3PJ4','Chlorothiazide','Y','2025-10-23 00:00:00'),(77664,11,'XM4PH8','Chlorothen','Y','2025-10-23 00:00:00'),(77663,11,'XM75T2','Chlorothalonil','Y','2025-10-23 00:00:00'),(77662,11,'XM6ZE6','Chloroquine','Y','2025-10-23 00:00:00'),(77661,11,'XM9CM1','Chloropyramine','Y','2025-10-23 00:00:00'),(77660,11,'XM3A97','Chloropurine','Y','2025-10-23 00:00:00'),(77659,11,'XM94U2','Chloroprocaine spinal','Y','2025-10-23 00:00:00'),(77658,11,'XM0GC2','Chloroprocaine nerve block','Y','2025-10-23 00:00:00'),(77657,11,'XM8XD3','Chloroprocaine infiltration','Y','2025-10-23 00:00:00'),(77656,11,'XM6HZ0','Chloroprocaine','Y','2025-10-23 00:00:00'),(77655,11,'XM3U53','Chloropicrin','Y','2025-10-23 00:00:00'),(77654,11,'XM4BD4','Chlorophyll','Y','2025-10-23 00:00:00'),(77653,11,'XM84K8','Chlorophenol','Y','2025-10-23 00:00:00'),(77652,11,'XM1FD8','Chlorophacinone','Y','2025-10-23 00:00:00'),(77651,11,'XM5S30','Chloronitrobenzene vapor','Y','2025-10-23 00:00:00'),(77650,11,'XM8G05','Chloronitrobenzene','Y','2025-10-23 00:00:00'),(77649,11,'XM0LW6','Chloromycetin otic solution','Y','2025-10-23 00:00:00'),(77648,11,'XM2DK4','Chloroform water, concentrated','Y','2025-10-23 00:00:00'),(77647,11,'XM1GP5','Chloroform vapor','Y','2025-10-23 00:00:00'),(77646,11,'XM42D4','Chloroform anaesthetic','Y','2025-10-23 00:00:00'),(77645,11,'XM7MX5','Chloroform','Y','2025-10-23 00:00:00'),(77644,11,'XM2HX1','Chlorofluorocarbons','Y','2025-10-23 00:00:00'),(77643,11,'XM6YR0','Chloroethylene','Y','2025-10-23 00:00:00'),(77642,11,'XM8D04','Chlorodiphenyl','Y','2025-10-23 00:00:00'),(77641,11,'XM5VH9','Chlorodinitrobenzene vapor','Y','2025-10-23 00:00:00'),(77640,11,'XM6QB9','Chlorodinitrobenzene','Y','2025-10-23 00:00:00'),(77639,11,'XM8FE7','Chlorocresol','Y','2025-10-23 00:00:00'),(77638,11,'XM5SW7','Chlorobutanol','Y','2025-10-23 00:00:00'),(77637,11,'XM0KE3','Chlorobromomethane','Y','2025-10-23 00:00:00'),(77636,11,'XM7JD5','Chlorobenzilate','Y','2025-10-23 00:00:00'),(77635,11,'XM6LC4','Chlorobenzene','Y','2025-10-23 00:00:00'),(77634,11,'XM0WL1','Chloroaniline','Y','2025-10-23 00:00:00'),(77633,11,'XM7J14','Chloroacetophenone','Y','2025-10-23 00:00:00'),(77632,11,'XM2N89','Chloroacetone','Y','2025-10-23 00:00:00'),(77631,11,'XM62D4','Chloroacetic acid','Y','2025-10-23 00:00:00'),(77630,11,'XM6AC5','Chlormidazole','Y','2025-10-23 00:00:00'),(77629,11,'XM8MD5','Chlormezanone','Y','2025-10-23 00:00:00'),(77628,11,'XM7FD5','Chlormethylenecycline','Y','2025-10-23 00:00:00'),(77627,11,'XM9W18','Chlormethine','Y','2025-10-23 00:00:00'),(77626,11,'XM6946','Chlormerodrin','Y','2025-10-23 00:00:00'),(77625,11,'XM4RG9','Chlormephos','Y','2025-10-23 00:00:00'),(77624,11,'XM3727','Chlormadinone and ethinylestradiol','Y','2025-10-23 00:00:00'),(77623,11,'XM5FK8','Chlormadinone','Y','2025-10-23 00:00:00'),(77622,11,'XM53V8','Chlorisondamine chloride','Y','2025-10-23 00:00:00'),(77621,11,'XM0GT6','Chlorine','Y','2025-10-23 00:00:00'),(77620,11,'XM0HL8','Chlorinated soda solution','Y','2025-10-23 00:00:00'),(77619,11,'XM9P39','Chlorinated naphthalene vapor','Y','2025-10-23 00:00:00'),(77618,11,'XM1YR6','Chlorinated naphthalene','Y','2025-10-23 00:00:00'),(77617,11,'XM5D99','Chlorinated lime and boric acid solution','Y','2025-10-23 00:00:00'),(77616,11,'XM4XU4','Chlorinated hydrocarbons, not elsewhere classified','Y','2025-10-23 00:00:00'),(77615,11,'XM1363','Chlorinated camphene','Y','2025-10-23 00:00:00'),(77614,11,'XM2ZT2','Chlorhydroxyquinolin','Y','2025-10-23 00:00:00'),(77613,11,'XM7DZ3','Chlorhexidine','Y','2025-10-23 00:00:00'),(77612,11,'XM6Z55','Chlorhexamide','Y','2025-10-23 00:00:00'),(77611,11,'XM7N56','Chlorhexadol','Y','2025-10-23 00:00:00'),(77610,11,'XM20D7','Chlorfenvinphos','Y','2025-10-23 00:00:00'),(77609,11,'XM77V1','Chlorex','Y','2025-10-23 00:00:00'),(77608,11,'XM1XU2','Chloretone','Y','2025-10-23 00:00:00'),(77607,11,'XM3DK0','Chlorethoxyfos','Y','2025-10-23 00:00:00'),(77606,11,'XM4MR7','Chlorethiazol','Y','2025-10-23 00:00:00'),(77605,11,'XM6GG8','Chloresium','Y','2025-10-23 00:00:00'),(77604,11,'XM9ZA9','Chlordiethyl benzamide','Y','2025-10-23 00:00:00'),(77603,11,'XM5JC4','Chlordiazepoxide','Y','2025-10-23 00:00:00'),(77602,11,'XM12L2','Chlordane','Y','2025-10-23 00:00:00'),(77601,11,'XM9SK3','Chlorcyclizine','Y','2025-10-23 00:00:00'),(77600,11,'XM30Q8','Chlorbenzoxamine','Y','2025-10-23 00:00:00'),(77599,11,'XM80T6','Chlorazanil','Y','2025-10-23 00:00:00'),(77598,11,'XM72P5','Chloramphenicol topical','Y','2025-10-23 00:00:00'),(77597,11,'XM2TE7','Chloramphenicol','Y','2025-10-23 00:00:00'),(77596,11,'XM8HU1','Chloramine T','Y','2025-10-23 00:00:00'),(77595,11,'XM4QG2','Chloramine','Y','2025-10-23 00:00:00'),(77594,11,'XM5TX7','Chlorambucil','Y','2025-10-23 00:00:00'),(77593,11,'XM1GN8','Chloralose','Y','2025-10-23 00:00:00'),(77592,11,'XM8D85','Chloralodol','Y','2025-10-23 00:00:00'),(77591,11,'XM5HQ1','Chloralamide','Y','2025-10-23 00:00:00'),(77590,11,'XM8AH5','Chloral hydrate','Y','2025-10-23 00:00:00'),(77589,11,'XM2PX1','Chloral derivative','Y','2025-10-23 00:00:00'),(77588,11,'XM9DL9','Chlophedianol','Y','2025-10-23 00:00:00'),(77587,11,'1C21','Chlamydial peritonitis','Y','2025-10-23 00:00:00'),(77586,11,'1A80','Chlamydial lymphogranuloma','Y','2025-10-23 00:00:00'),(77585,11,'1A81.0','Chlamydial infection of lower genitourinary tract','Y','2025-10-23 00:00:00'),(77584,11,'1A81.1','Chlamydial infection of internal reproductive organs','Y','2025-10-23 00:00:00'),(77583,11,'1C20','Chlamydial conjunctivitis','Y','2025-10-23 00:00:00'),(77582,11,'XN4Q4','Chlamydia trachomatis','Y','2025-10-23 00:00:00'),(77581,11,'XN4S7','Chlamydia psittaci','Y','2025-10-23 00:00:00'),(77580,11,'XN9EE','Chlamydia pneumoniae','Y','2025-10-23 00:00:00'),(77579,11,'XN27H','Chlamydia','Y','2025-10-23 00:00:00'),(77578,11,'XM7PV2','Chiniofon','Y','2025-10-23 00:00:00'),(77577,11,'XM12P5','Chinese scorpion venom','Y','2025-10-23 00:00:00'),(77576,11,'XM45D4','Chinese cobra snake venom','Y','2025-10-23 00:00:00'),(77575,11,'XE1LM','China, ceramics sheet, part, piece','Y','2025-10-23 00:00:00'),(77574,11,'XA2C62','Chin','Y','2025-10-23 00:00:00'),(77573,11,'LD56.Z','Chimaera 46, XX, 46, XY, unspecified','Y','2025-10-23 00:00:00'),(77572,11,'LD56','Chimaera 46, XX, 46, XY','Y','2025-10-23 00:00:00'),(77571,11,'MG21','Chills','Y','2025-10-23 00:00:00'),(77570,11,'XE0GX','Child\'s tricycle or other ride-on toy','Y','2025-10-23 00:00:00'),(77569,11,'EA80.1','Childhood atopic eczema','Y','2025-10-23 00:00:00'),(77568,11,'SE3Z','Childhood and adolescence associated disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(77567,11,'8A61.21','Childhood absence epilepsy','Y','2025-10-23 00:00:00'),(77566,11,'XT4X','Child under 5','Y','2025-10-23 00:00:00'),(77565,11,'XT50','Child over 5','Y','2025-10-23 00:00:00'),(77564,11,'XE3JM','Child centre or day care centre','Y','2025-10-23 00:00:00'),(77563,11,'NF03.0','Chilblains','Y','2025-10-23 00:00:00'),(77562,11,'1D40','Chikungunya virus disease','Y','2025-10-23 00:00:00'),(77561,11,'XN4ZB','Chikungunya virus','Y','2025-10-23 00:00:00'),(77560,11,'KA42.2','Chignon due to birth injury','Y','2025-10-23 00:00:00'),(77559,11,'XH6WK1','Chief cell adenoma','Y','2025-10-23 00:00:00'),(77558,11,'XA55T2','Chest wall','Y','2025-10-23 00:00:00'),(77557,11,'MD30.Z','Chest pain, unspecified','Y','2025-10-23 00:00:00'),(77556,11,'MD30.0','Chest pain on breathing','Y','2025-10-23 00:00:00'),(77555,11,'SA2Z','Chest impediment disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(77554,11,'SA86','Chest bind disorder (TM1)','Y','2025-10-23 00:00:00'),(77553,11,'LD24.22','Cherubism','Y','2025-10-23 00:00:00'),(77552,11,'XM5MK6','Cherry kernel','Y','2025-10-23 00:00:00'),(77551,11,'XH9Q71','Cherry hemangioma','Y','2025-10-23 00:00:00'),(77550,11,'2F25','Cherry angioma','Y','2025-10-23 00:00:00'),(77549,11,'XM4WY5','Chenopodium','Y','2025-10-23 00:00:00'),(77548,11,'XM7KX6','Chenodeoxycholic acid','Y','2025-10-23 00:00:00'),(77547,11,'QB97','Chemotherapy session for neoplasm','Y','2025-10-23 00:00:00'),(77546,11,'XH20B4','Chemodectoma','Y','2025-10-23 00:00:00'),(77545,11,'XE52X','Chemical problem','Y','2025-10-23 00:00:00'),(77544,11,'DA24.20','Chemical oesophagitis','Y','2025-10-23 00:00:00'),(77543,11,'DA25.30','Chemical oesophageal ulcer','Y','2025-10-23 00:00:00'),(77542,11,'8E40.1','Chemical meningitis','Y','2025-10-23 00:00:00'),(77541,11,'DA42.82','Chemical gastritis','Y','2025-10-23 00:00:00'),(77540,11,'DA60.61','Chemical gastric ulcer','Y','2025-10-23 00:00:00'),(77539,11,'DA51.52','Chemical duodenitis','Y','2025-10-23 00:00:00'),(77538,11,'DA63.52','Chemical duodenal ulcer','Y','2025-10-23 00:00:00'),(77537,11,'DB33.40','Chemical colitis or proctitis','Y','2025-10-23 00:00:00'),(77536,11,'ND99.1','Chemical burn due to skin contact with corrosive substance','Y','2025-10-23 00:00:00'),(77535,11,'XM9DJ3','Chelidonium majus plant','Y','2025-10-23 00:00:00'),(77534,11,'XM65Y8','Chelating agent','Y','2025-10-23 00:00:00'),(77533,11,'DA00.0','Cheilitis','Y','2025-10-23 00:00:00'),(77532,11,'XA7MK8','Cheek','Y','2025-10-23 00:00:00'),(77531,11,'XM7TM4','Chaulmosulfone','Y','2025-10-23 00:00:00'),(77529,11,'XE5ER','Charging problem','Y','2025-10-23 00:00:00'),(77530,11,'XE4BK','Chassis or frame component of medical device','Y','2025-10-23 00:00:00'),(77528,11,'8C20.1','Charcot-Marie-Tooth disease 2 axonal','Y','2025-10-23 00:00:00'),(77527,11,'8C20.0','Charcot-Marie-Tooth disease 1 demyelinating','Y','2025-10-23 00:00:00'),(77526,11,'XM4JD6','Charcoal medicinal topical','Y','2025-10-23 00:00:00'),(77525,11,'XM4GA5','Charcoal medicinal specified use other than for diarrhoea','Y','2025-10-23 00:00:00'),(77524,11,'XM8NM7','Charcoal medicinal poison control','Y','2025-10-23 00:00:00'),(77523,11,'XM8D61','Charcoal medicinal antidiarrhoeal','Y','2025-10-23 00:00:00'),(77522,11,'XM2269','Charcoal medicinal (activated)','Y','2025-10-23 00:00:00'),(77521,11,'XM46T5','Charcoal activated','Y','2025-10-23 00:00:00'),(77520,11,'XM0S42','Charcoal','Y','2025-10-23 00:00:00'),(77519,11,'XN2WG','Chapare virus','Y','2025-10-23 00:00:00'),(77518,11,'VD11','Changing body position standing [WHODAS]','Y','2025-10-23 00:00:00'),(77517,11,'ME66.1','Changes in skin texture','Y','2025-10-23 00:00:00'),(77516,11,'9B78.10','Changes in retinal vascular appearance','Y','2025-10-23 00:00:00'),(77515,11,'9A78.3','Changes in corneal membranes','Y','2025-10-23 00:00:00'),(77514,11,'ME05','Change in bowel habit','Y','2025-10-23 00:00:00'),(77513,11,'1A90','Chancroid','Y','2025-10-23 00:00:00'),(77512,11,'XM5NG4','Ch\'an su','Y','2025-10-23 00:00:00'),(77511,11,'XM7CX5','Chamomile','Y','2025-10-23 00:00:00'),(77510,11,'XA10E0','Chamber of the heart','Y','2025-10-23 00:00:00'),(77509,11,'XA0BB2','Chamber of eye','Y','2025-10-23 00:00:00'),(77508,11,'XE6N0','Chamber component of medical device','Y','2025-10-23 00:00:00'),(77507,11,'XM1WQ5','Chalk, precipitated','Y','2025-10-23 00:00:00'),(77506,11,'XE2EN','Chalk, crayon','Y','2025-10-23 00:00:00'),(77505,11,'9A02.0Z','Chalazion, unspecified','Y','2025-10-23 00:00:00'),(77504,11,'9A02.01','Chalazion internum','Y','2025-10-23 00:00:00'),(77503,11,'9A02.00','Chalazion externum','Y','2025-10-23 00:00:00'),(77502,11,'9A02.0','Chalazion','Y','2025-10-23 00:00:00'),(77501,11,'XE769','Chair or sofa','Y','2025-10-23 00:00:00'),(77500,11,'XE8MJ','Chainsaw','Y','2025-10-23 00:00:00'),(77499,11,'XE65A','Chain component of medical device','Y','2025-10-23 00:00:00'),(77498,11,'XE18Y','Chain','Y','2025-10-23 00:00:00'),(77497,11,'1F53.Z','Chagas disease, unspecified','Y','2025-10-23 00:00:00'),(77496,11,'1F53.3','Chagas disease with digestive system involvement','Y','2025-10-23 00:00:00'),(77495,11,'1F53','Chagas disease','Y','2025-10-23 00:00:00'),(77494,11,'XE8KN','Chaff-cutter, fodder-cutter','Y','2025-10-23 00:00:00'),(77493,11,'XM31K4','Cevimeline','Y','2025-10-23 00:00:00'),(77492,11,'XM94W4','Cetylpyridinium chloride','Y','2025-10-23 00:00:00'),(77491,11,'XM3VL3','Cetuximab','Y','2025-10-23 00:00:00'),(77490,11,'XM8Z22','Cetrorelix','Y','2025-10-23 00:00:00'),(77489,11,'XM6ZW9','Cetrimonium bromide','Y','2025-10-23 00:00:00'),(77488,11,'XM62D0','Cetrimide','Y','2025-10-23 00:00:00'),(77487,11,'XM7Y04','Cetraxate','Y','2025-10-23 00:00:00'),(77486,11,'XM0AN5','Cetoxime','Y','2025-10-23 00:00:00'),(77485,11,'XM8SY7','Cetotiamine','Y','2025-10-23 00:00:00'),(77484,11,'XM90Q0','Cetomacrogol','Y','2025-10-23 00:00:00'),(77483,11,'XM0QD9','Cetirizine','Y','2025-10-23 00:00:00'),(77482,11,'XM1UQ0','Cetiedil','Y','2025-10-23 00:00:00'),(77481,11,'XM1BP8','Cethexonium chloride','Y','2025-10-23 00:00:00'),(77480,11,'XM9432','Cetalkonium chloride','Y','2025-10-23 00:00:00'),(77479,11,'XA5WW1','Cervix uteri','Y','2025-10-23 00:00:00'),(77478,11,'XA2SG0','Cervicothoracic disc or space C7-T1','Y','2025-10-23 00:00:00'),(77477,11,'1C10.2','Cervicofacial actinomycosis','Y','2025-10-23 00:00:00'),(77476,11,'GA04','Cervicitis','Y','2025-10-23 00:00:00'),(77475,11,'XA9ZW8','Cervical vertebra','Y','2025-10-23 00:00:00'),(77474,11,'XA7SG3','Cervical trachea','Y','2025-10-23 00:00:00'),(77473,11,'ME84.0','Cervical spine pain','Y','2025-10-23 00:00:00'),(77472,11,'XA1YC9','Cervical spinal nerve','Y','2025-10-23 00:00:00'),(77471,11,'XA1SP1','Cervical spinal cord','Y','2025-10-23 00:00:00'),(77470,11,'LB72.0','Cervical rib','Y','2025-10-23 00:00:00'),(77469,11,'XA6LU7','Cervical plexus','Y','2025-10-23 00:00:00'),(77468,11,'XA0N03','Cervical oesophagus','Y','2025-10-23 00:00:00'),(77467,11,'XA3UZ3','Cervical nerve root','Y','2025-10-23 00:00:00'),(77466,11,'XA5XT7','Cervical lymph node','Y','2025-10-23 00:00:00'),(77465,11,'XH1W63','Cervical intraepithelial neoplasia, low grade','Y','2025-10-23 00:00:00'),(77464,11,'XH62N8','Cervical intraepithelial neoplasia, grade III','Y','2025-10-23 00:00:00'),(77463,11,'XA16L1','Cervical intervertebral disc or space C6-C7','Y','2025-10-23 00:00:00'),(77462,11,'XA1X49','Cervical intervertebral disc or space C5-C6','Y','2025-10-23 00:00:00'),(77461,11,'XA3623','Cervical intervertebral disc or space C4-C5','Y','2025-10-23 00:00:00'),(77460,11,'XA94K2','Cervical intervertebral disc or space C3-C4','Y','2025-10-23 00:00:00'),(77459,11,'XA18M2','Cervical intervertebral disc or space C2-C3','Y','2025-10-23 00:00:00'),(77458,11,'XA9Z06','Cervical intervertebral disc or space C1-C2','Y','2025-10-23 00:00:00'),(77457,11,'XA8D30','Cervical discs or space','Y','2025-10-23 00:00:00'),(77456,11,'XA7Z73','Cervical canal','Y','2025-10-23 00:00:00'),(77455,11,'XA5241','Cervical branch of the facial nerve','Y','2025-10-23 00:00:00'),(77454,11,'XA9QG7','Cervical artery','Y','2025-10-23 00:00:00'),(77453,11,'XH7AL8','Ceruminous adenoma','Y','2025-10-23 00:00:00'),(77452,11,'XH6Z69','Ceruminous adenocarcinoma','Y','2025-10-23 00:00:00'),(77451,11,'XA5K66','Ceruminal gland','Y','2025-10-23 00:00:00'),(77450,11,'XM0D92','Ceruletide','Y','2025-10-23 00:00:00'),(77449,11,'XM9QW1','Certolizumab pegol','Y','2025-10-23 00:00:00'),(77448,11,'DA97.Z','Certain vascular disorders of small intestine, unspecified','Y','2025-10-23 00:00:00'),(77447,11,'DA97','Certain vascular disorders of small intestine','Y','2025-10-23 00:00:00'),(77446,11,'DB34','Certain vascular disorders of large intestine','Y','2025-10-23 00:00:00'),(77445,11,'XE3RZ','Certain unpowered equipment','Y','2025-10-23 00:00:00'),(77444,11,'6C4G.7','Certain unknown or unspecified psychoactive substance-induced mental or behavioural disorders','Y','2025-10-23 00:00:00'),(77443,11,'XE1XM','Certain specified weapon','Y','2025-10-23 00:00:00'),(77442,11,'6C4B.7','Certain specified volatile inhalants-induced mental or behavioural disorders','Y','2025-10-23 00:00:00'),(77441,11,'XE31H','Certain specified utensil or container','Y','2025-10-23 00:00:00'),(77440,11,'KB63','Certain specified transitory neonatal electrolyte or metabolic disturbances','Y','2025-10-23 00:00:00'),(77439,11,'6C47.7','Certain specified synthetic cathinone-induced mental or behavioural disorders','Y','2025-10-23 00:00:00'),(77438,11,'6C42.7','Certain specified synthetic cannabinoids-induced mental or behavioural disorders','Y','2025-10-23 00:00:00'),(77437,11,'XE7CY','Certain specified surface conformation','Y','2025-10-23 00:00:00'),(77436,11,'6C46.7','Certain specified stimulant-induced mental or behavioural disorders including amphetamines, methamphetamine or methcathinone','Y','2025-10-23 00:00:00'),(77435,11,'6C44.7','Certain specified sedatives, hypnotics or anxiolytic-induced mental or behavioural disorders','Y','2025-10-23 00:00:00'),(77434,11,'9B78','Certain specified retinal disorders','Y','2025-10-23 00:00:00'),(77433,11,'XE2H2','Certain specified personal use item','Y','2025-10-23 00:00:00'),(77432,11,'6C43.7','Certain specified opioid-induced mental or behavioural disorders','Y','2025-10-23 00:00:00'),(77431,11,'JB0A','Certain specified obstetric trauma','Y','2025-10-23 00:00:00'),(77430,11,'5B9Z','Certain specified nutrient excesses, unspecified','Y','2025-10-23 00:00:00'),(77429,11,'KA83','Certain specified neonatal haemorrhages','Y','2025-10-23 00:00:00'),(77428,11,'8A07','Certain specified movement disorder','Y','2025-10-23 00:00:00'),(77427,11,'8C12','Certain specified mononeuropathies','Y','2025-10-23 00:00:00'),(77426,11,'XE381','Certain specified mobile machinery or special purpose vehicle','Y','2025-10-23 00:00:00'),(77425,11,'6C4C.7','Certain specified MDMA or related drug-induced mental or behavioural disorders, including MDA','Y','2025-10-23 00:00:00'),(77424,11,'8A44.3','Certain specified leukodystrophies','Y','2025-10-23 00:00:00'),(77423,11,'XE3C0','Certain specified land vehicle or means of land transport','Y','2025-10-23 00:00:00'),(77422,11,'FA34','Certain specified joint derangements','Y','2025-10-23 00:00:00'),(77421,11,'9C85','Certain specified irregular eye movements','Y','2025-10-23 00:00:00'),(77420,11,'NA91','Certain specified injuries of thoracic spinal cord','Y','2025-10-23 00:00:00'),(77419,11,'NB63','Certain specified injuries of sacral spinal cord','Y','2025-10-23 00:00:00'),(77418,11,'NB62','Certain specified injuries of lumbar spinal cord','Y','2025-10-23 00:00:00'),(77417,11,'NA0A','Certain specified injuries of head','Y','2025-10-23 00:00:00'),(77416,11,'NA31','Certain specified injuries of cervical spinal cord','Y','2025-10-23 00:00:00'),(77415,11,'NB97','Certain specified injuries of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(77414,11,'DB97','Certain specified inflammatory liver diseases','Y','2025-10-23 00:00:00'),(77413,11,'FA27','Certain specified inflammatory arthropathies','Y','2025-10-23 00:00:00'),(77412,11,'MA14.1','Certain specified immunological findings','Y','2025-10-23 00:00:00'),(77411,11,'6C49.6','Certain specified hallucinogen-induced mental or behavioural disorders','Y','2025-10-23 00:00:00'),(77410,11,'DB93.2','Certain specified fibrosis or cirrhosis of liver','Y','2025-10-23 00:00:00'),(77409,11,'XE8FX','Certain specified equipment for sports or recreational activity','Y','2025-10-23 00:00:00'),(77408,11,'FB55','Certain specified enthesopathies','Y','2025-10-23 00:00:00'),(77407,11,'6C4D.6','Certain specified dissociative drugs -induced mental or behavioural disorders, including ketamine and phencyclidine [PCP]','Y','2025-10-23 00:00:00'),(77406,11,'DA0A','Certain specified disorders of teeth or supporting structures','Y','2025-10-23 00:00:00'),(77405,11,'FB42','Certain specified disorders of synovium or tendon','Y','2025-10-23 00:00:00'),(77404,11,'DC51','Certain specified disorders of peritoneum or retroperitoneum','Y','2025-10-23 00:00:00'),(77403,11,'GB06','Certain specified disorders of penis','Y','2025-10-23 00:00:00'),(77402,11,'FB32','Certain specified disorders of muscle','Y','2025-10-23 00:00:00'),(77401,11,'9B11','Certain specified disorders of lens','Y','2025-10-23 00:00:00'),(77400,11,'GB90','Certain specified disorders of kidney or ureter','Y','2025-10-23 00:00:00'),(77399,11,'9A94','Certain specified disorders of iris or ciliary body','Y','2025-10-23 00:00:00'),(77398,11,'DA0D','Certain specified disorders of gingiva or edentulous alveolar ridge','Y','2025-10-23 00:00:00'),(77397,11,'9A06','Certain specified disorders of eyelid','Y','2025-10-23 00:00:00'),(77396,11,'9A78.Z','Certain specified disorders of cornea, unspecified','Y','2025-10-23 00:00:00'),(77395,11,'9A78','Certain specified disorders of cornea','Y','2025-10-23 00:00:00'),(77394,11,'9A61.Z','Certain specified disorders of conjunctiva, unspecified','Y','2025-10-23 00:00:00'),(77393,11,'9A61','Certain specified disorders of conjunctiva','Y','2025-10-23 00:00:00'),(77392,11,'JB46','Certain specified disorders of breast or lactation associated with childbirth','Y','2025-10-23 00:00:00'),(77391,11,'GB23','Certain specified disorders of breast','Y','2025-10-23 00:00:00'),(77390,11,'FB80','Certain specified disorders of bone density or structure','Y','2025-10-23 00:00:00'),(77389,11,'BD52','Certain specified disorders of arteries or arterioles','Y','2025-10-23 00:00:00'),(77388,11,'5A76','Certain specified disorders of adrenal gland','Y','2025-10-23 00:00:00'),(77387,11,'BB02','Certain specified diseases of pulmonary vessels','Y','2025-10-23 00:00:00'),(77386,11,'DC35.Z','Certain specified diseases of pancreas, unspecified','Y','2025-10-23 00:00:00'),(77385,11,'DC35','Certain specified diseases of pancreas','Y','2025-10-23 00:00:00'),(77384,11,'DB99','Certain specified diseases of liver','Y','2025-10-23 00:00:00'),(77383,11,'DA06','Certain specified diseases of jaws','Y','2025-10-23 00:00:00'),(77382,11,'DA08.1','Certain specified diseases of hard tissues of teeth','Y','2025-10-23 00:00:00'),(77381,11,'DB11','Certain specified diseases of appendix','Y','2025-10-23 00:00:00'),(77380,11,'DB72.Z','Certain specified diseases of anal canal, unspecified','Y','2025-10-23 00:00:00'),(77379,11,'DB72','Certain specified diseases of anal canal','Y','2025-10-23 00:00:00'),(77378,11,'FA26','Certain specified crystal arthropathies','Y','2025-10-23 00:00:00'),(77377,11,'JB44','Certain specified complications of the puerperium','Y','2025-10-23 00:00:00'),(77376,11,'JB0D','Certain specified complications of labour or delivery, not elsewhere classified','Y','2025-10-23 00:00:00'),(77375,11,'6C45.7','Certain specified cocaine-induced mental or behavioural disorders','Y','2025-10-23 00:00:00'),(77374,11,'CA22.1','Certain specified chronic obstructive pulmonary disease','Y','2025-10-23 00:00:00'),(77373,11,'8B22','Certain specified cerebrovascular diseases','Y','2025-10-23 00:00:00'),(77372,11,'9B10.2','Certain specified cataracts','Y','2025-10-23 00:00:00'),(77371,11,'6C41.7','Certain specified cannabis-induced mental or behavioural disorders','Y','2025-10-23 00:00:00'),(77370,11,'6C48.4','Certain specified caffeine-induced mental or behavioural disorders','Y','2025-10-23 00:00:00'),(77369,11,'XE3PF','Certain specified building, building component, or fitting','Y','2025-10-23 00:00:00'),(77368,11,'DC14','Certain specified biliary diseases','Y','2025-10-23 00:00:00'),(77367,11,'6C40.7','Certain specified alcohol-induced mental or behavioural disorders','Y','2025-10-23 00:00:00'),(77366,11,'FC00','Certain specified acquired deformities of musculoskeletal system or connective tissue, not elsewhere classified','Y','2025-10-23 00:00:00'),(77365,11,'EA60','Certain skin disorders attributable to fungal infection','Y','2025-10-23 00:00:00'),(77364,11,'6C4E.7','Certain other specified psychoactive substance-induced mental or behavioural disorders','Y','2025-10-23 00:00:00'),(77363,11,'XE908','Certain other specified object or living thing involved in causing injury','Y','2025-10-23 00:00:00'),(77362,11,'1G60','Certain other disorders of infectious origin','Y','2025-10-23 00:00:00'),(77361,11,'EF02','Certain noninflammatory disorders of subcutaneous fat','Y','2025-10-23 00:00:00'),(77360,11,'DB33.Z','Certain noninfectious colitis or proctitis, unspecified','Y','2025-10-23 00:00:00'),(77359,11,'DB33','Certain noninfectious colitis or proctitis','Y','2025-10-23 00:00:00'),(77358,11,'6C4F.7','Certain multiple specified psychoactive substances-induced mental or behavioural disorders','Y','2025-10-23 00:00:00'),(77357,11,'PK81','Certain medical procedures associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(77356,11,'JB64','Certain maternal diseases classifiable elsewhere but complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(77355,11,'FA37.Z','Certain joint disorders, not elsewhere classified, unspecified','Y','2025-10-23 00:00:00'),(77354,11,'FA37','Certain joint disorders, not elsewhere classified','Y','2025-10-23 00:00:00'),(77353,11,'NB32.3','Certain injuries of lung','Y','2025-10-23 00:00:00'),(77352,11,'DB36.Z','Certain infections of the large intestine, unspecified','Y','2025-10-23 00:00:00'),(77351,11,'DB36','Certain infections of the large intestine','Y','2025-10-23 00:00:00'),(77350,11,'NF0A','Certain early complications of trauma, not elsewhere classified','Y','2025-10-23 00:00:00'),(77349,11,'EE13','Certain disorders affecting the nails or perionychium','Y','2025-10-23 00:00:00'),(77348,11,'CB40','Certain diseases of the respiratory system','Y','2025-10-23 00:00:00'),(77347,11,'BA60.Z','Certain current complications following acute myocardial infarction, unspecified','Y','2025-10-23 00:00:00'),(77346,11,'BA60','Certain current complications following acute myocardial infarction','Y','2025-10-23 00:00:00'),(77345,11,'LA13.8','Certain congenital malformations of posterior segment of eye','Y','2025-10-23 00:00:00'),(77344,11,'MA18','Certain clinical findings of blood chemistry','Y','2025-10-23 00:00:00'),(77343,11,'BD52.7Z','Certain acquired abnormalities of aorta, unspecified','Y','2025-10-23 00:00:00'),(77342,11,'BD52.7','Certain acquired abnormalities of aorta','Y','2025-10-23 00:00:00'),(77341,11,'MA19','Certain abnormalities of plasma proteins','Y','2025-10-23 00:00:00'),(77340,11,'XM9L40','Cerliponase alfa','Y','2025-10-23 00:00:00'),(77339,11,'XM0M94','Cerivastatin','Y','2025-10-23 00:00:00'),(77338,11,'XM4H25','Cerium oxalate','Y','2025-10-23 00:00:00'),(77337,11,'XM14D3','Ceritinib','Y','2025-10-23 00:00:00'),(77336,11,'XA1M33','Cerebrum','Y','2025-10-23 00:00:00'),(77335,11,'8B2Z','Cerebrovascular diseases, unspecified','Y','2025-10-23 00:00:00'),(77334,11,'8B21.Z','Cerebrovascular disease with no acute cerebral symptom, unspecified','Y','2025-10-23 00:00:00'),(77333,11,'8B21','Cerebrovascular disease with no acute cerebral symptom','Y','2025-10-23 00:00:00'),(77332,11,'8B23','Cerebrovascular abnormalities','Y','2025-10-23 00:00:00'),(77331,11,'8D62','Cerebrospinal fluid rhinorrhoea','Y','2025-10-23 00:00:00'),(77330,11,'8D63','Cerebrospinal fluid otorrhoea','Y','2025-10-23 00:00:00'),(77329,11,'8D65','Cerebrospinal fluid fistula','Y','2025-10-23 00:00:00'),(77328,11,'XA1N55','Cerebrospinal fluid','Y','2025-10-23 00:00:00'),(77327,11,'XA1ZN9','Cerebral white matter','Y','2025-10-23 00:00:00'),(77326,11,'XA26E8','Cerebral ventricle','Y','2025-10-23 00:00:00'),(77325,11,'JB41.3','Cerebral venous thrombosis in the puerperium','Y','2025-10-23 00:00:00'),(77324,11,'JA61.5','Cerebral venous thrombosis in pregnancy','Y','2025-10-23 00:00:00'),(77323,11,'8B22.1','Cerebral venous thrombosis','Y','2025-10-23 00:00:00'),(77322,11,'XA2LX2','Cerebral vein','Y','2025-10-23 00:00:00'),(77321,11,'8B22.2','Cerebral vasoconstriction syndromes','Y','2025-10-23 00:00:00'),(77320,11,'XA5TF7','Cerebral vasculature','Y','2025-10-23 00:00:00'),(77319,11,'SD21','Cerebral tinnitus disorder (TM1)','Y','2025-10-23 00:00:00'),(77318,11,'LA05.Z','Cerebral structural developmental anomalies, unspecified','Y','2025-10-23 00:00:00'),(77317,11,'LA05','Cerebral structural developmental anomalies','Y','2025-10-23 00:00:00'),(77316,11,'XM0854','Cerebral stimulants psychotherapeutic','Y','2025-10-23 00:00:00'),(77315,11,'XM93X4','Cerebral stimulants','Y','2025-10-23 00:00:00'),(77314,11,'XA1AA8','Cerebral peduncle','Y','2025-10-23 00:00:00'),(77313,11,'8D2Z','Cerebral palsy, unspecified','Y','2025-10-23 00:00:00'),(77312,11,'5C50.E1','Cerebral organic aciduria','Y','2025-10-23 00:00:00'),(77311,11,'KA40.1','Cerebral oedema due to birth injury','Y','2025-10-23 00:00:00'),(77310,11,'8D60.1','Cerebral oedema','Y','2025-10-23 00:00:00'),(77309,11,'XA6HA2','Cerebral meninges','Y','2025-10-23 00:00:00'),(77308,11,'XA5N14','Cerebral lobe','Y','2025-10-23 00:00:00'),(77307,11,'8B11.44','Cerebral ischemic stroke from dissection','Y','2025-10-23 00:00:00'),(77306,11,'8B11.5Z','Cerebral ischaemic stroke, unspecified','Y','2025-10-23 00:00:00'),(77305,11,'8B11.5','Cerebral ischaemic stroke of unknown cause','Y','2025-10-23 00:00:00'),(77304,11,'8B11.43','Cerebral ischaemic stroke in association with subarachnoid haemorrhage','Y','2025-10-23 00:00:00'),(77303,11,'8B11.51','Cerebral ischaemic stroke due to unspecified occlusion or stenosis of intracranial large artery','Y','2025-10-23 00:00:00'),(77302,11,'8B11.50','Cerebral ischaemic stroke due to unspecified occlusion or stenosis of extracranial large artery','Y','2025-10-23 00:00:00'),(77301,11,'8B11.3','Cerebral ischaemic stroke due to small artery occlusion','Y','2025-10-23 00:00:00'),(77300,11,'8B11.22','Cerebral ischaemic stroke due to paradoxical embolism','Y','2025-10-23 00:00:00'),(77299,11,'8B11.2Y','Cerebral ischaemic stroke due to other specified embolic occlusion','Y','2025-10-23 00:00:00'),(77298,11,'8B11.41','Cerebral ischaemic stroke due to other non-atherosclerotic arteriopathy','Y','2025-10-23 00:00:00'),(77297,11,'8B11.4','Cerebral ischaemic stroke due to other known cause','Y','2025-10-23 00:00:00'),(77296,11,'8B11.1','Cerebral ischaemic stroke due to intracranial large artery atherosclerosis','Y','2025-10-23 00:00:00'),(77295,11,'8B11.42','Cerebral ischaemic stroke due to hypercoagulable state','Y','2025-10-23 00:00:00'),(77294,11,'8B11.40','Cerebral ischaemic stroke due to global hypoperfusion with watershed infarct','Y','2025-10-23 00:00:00'),(77293,11,'8B11.0','Cerebral ischaemic stroke due to extracranial large artery atherosclerosis','Y','2025-10-23 00:00:00'),(77292,11,'8B11.2Z','Cerebral ischaemic stroke due to embolic occlusion, unspecified','Y','2025-10-23 00:00:00'),(77291,11,'8B11.2','Cerebral ischaemic stroke due to embolic occlusion','Y','2025-10-23 00:00:00'),(77290,11,'8B11.20','Cerebral ischaemic stroke due to cardiac embolism','Y','2025-10-23 00:00:00'),(77289,11,'8B11.21','Cerebral ischaemic stroke due to aortic arch embolism','Y','2025-10-23 00:00:00'),(77288,11,'8B11','Cerebral ischaemic stroke','Y','2025-10-23 00:00:00'),(77287,11,'8B1Z','Cerebral ischaemia, unspecified','Y','2025-10-23 00:00:00'),(77286,11,'XA8GR3','Cerebral hemisphere','Y','2025-10-23 00:00:00'),(77285,11,'KA40.01','Cerebral haemorrhage due to birth injury','Y','2025-10-23 00:00:00'),(77284,11,'1F27.1','Cerebral cryptococcosis','Y','2025-10-23 00:00:00'),(77283,11,'XA64R0','Cerebral cortex','Y','2025-10-23 00:00:00'),(77282,11,'KA40.07','Cerebral contusion due to birth injury','Y','2025-10-23 00:00:00'),(77281,11,'8B22.41','Cerebral cavernous malformation','Y','2025-10-23 00:00:00'),(77280,11,'XA13S2','Cerebral artery','Y','2025-10-23 00:00:00'),(77279,11,'8B22.7Z','Cerebral arteritis, not elsewhere classified, unspecified','Y','2025-10-23 00:00:00'),(77278,11,'8B22.7','Cerebral arteritis, not elsewhere classified','Y','2025-10-23 00:00:00'),(77277,11,'XA83T2','Cerebral aqueduct','Y','2025-10-23 00:00:00'),(77276,11,'8B22.5','Cerebral aneurysm, nonruptured','Y','2025-10-23 00:00:00'),(77275,11,'XA1CW2','Cerebellum','Y','2025-10-23 00:00:00'),(77273,11,'XA91N0','Cerebellar vein','Y','2025-10-23 00:00:00'),(77274,11,'XA8E64','Cerebellar vermis','Y','2025-10-23 00:00:00'),(77272,11,'XA7E38','Cerebellar tonsil','Y','2025-10-23 00:00:00'),(77271,11,'LA06.Z','Cerebellar structural developmental anomalies, unspecified','Y','2025-10-23 00:00:00'),(77270,11,'LA06','Cerebellar structural developmental anomalies','Y','2025-10-23 00:00:00'),(77269,11,'8B26.1','Cerebellar stroke syndrome','Y','2025-10-23 00:00:00'),(77268,11,'XH5538','Cerebellar sarcoma, NOS','Y','2025-10-23 00:00:00'),(77267,11,'KA82.6','Cerebellar nontraumatic, hemispheres or vermis or posterior fossa haemorrhage of fetus or newborn','Y','2025-10-23 00:00:00'),(77266,11,'XH2GB0','Cerebellar liponeurocytoma','Y','2025-10-23 00:00:00'),(77265,11,'XA4SL2','Cerebellar hemisphere','Y','2025-10-23 00:00:00'),(77264,11,'KA40.02','Cerebellar haemorrhage due to birth injury','Y','2025-10-23 00:00:00'),(77263,11,'8B00.3','Cerebellar haemorrhage','Y','2025-10-23 00:00:00'),(77262,11,'KA40.06','Cerebellar contusion due to birth injury','Y','2025-10-23 00:00:00'),(77261,11,'XA5SN3','Cerebellar artery','Y','2025-10-23 00:00:00'),(77260,11,'1F86.4','Cercarial dermatitis','Y','2025-10-23 00:00:00'),(77259,11,'XM1W74','Cerberin','Y','2025-10-23 00:00:00'),(77257,11,'XM5L03','Cerbera plant','Y','2025-10-23 00:00:00'),(77258,11,'XM8AZ9','Cerbera venenifera plant','Y','2025-10-23 00:00:00'),(77256,11,'XM2KR7','Cerbera odollam plant','Y','2025-10-23 00:00:00'),(77255,11,'XM1FN8','Cerbera manghas plant','Y','2025-10-23 00:00:00'),(77254,11,'XM0XA0','Ceratonia','Y','2025-10-23 00:00:00'),(77253,11,'XM67G9','Cephalothin','Y','2025-10-23 00:00:00'),(77251,11,'XM4HC8','Cephalosporins','Y','2025-10-23 00:00:00'),(77252,11,'XM9MK4','Cephalosporins N (adicillin)','Y','2025-10-23 00:00:00'),(77250,11,'KA42.1','Cephalohaematoma due to birth injury','Y','2025-10-23 00:00:00'),(77249,11,'LA01','Cephalocele','Y','2025-10-23 00:00:00'),(77248,11,'XA4YQ8','Cephalic vein','Y','2025-10-23 00:00:00'),(77246,11,'8C72.01','Centronuclear myopathy','Y','2025-10-23 00:00:00'),(77247,11,'XM41L0','Cepeginterferon alfa-2b','Y','2025-10-23 00:00:00'),(77245,11,'CA21.2','Centrilobular emphysema','Y','2025-10-23 00:00:00'),(77244,11,'XM7LR7','Centrally acting sympathomimetics','Y','2025-10-23 00:00:00'),(77243,11,'XM2AF4','Centrally acting antiobesity products','Y','2025-10-23 00:00:00'),(77242,11,'XM4X84','Centrally acting antiadrenergic agents','Y','2025-10-23 00:00:00'),(77241,11,'XD7FF9','Central venous catheters','Y','2025-10-23 00:00:00'),(77240,11,'7A40.Z','Central sleep apnoeas, unspecified','Y','2025-10-23 00:00:00'),(77239,11,'7A40','Central sleep apnoeas','Y','2025-10-23 00:00:00'),(77238,11,'7A40.5','Central sleep apnoea due to high-altitude periodic breathing','Y','2025-10-23 00:00:00'),(77237,11,'7A40.6','Central sleep apnoea due to a medication or substance','Y','2025-10-23 00:00:00'),(77236,11,'7A40.4','Central sleep apnoea due to a medical condition without Cheyne-Stokes breathing','Y','2025-10-23 00:00:00'),(77235,11,'7A40.3','Central sleep apnoea due to a medical condition with Cheyne-Stokes breathing','Y','2025-10-23 00:00:00'),(77234,11,'9B75.2','Central serous chorioretinopathy','Y','2025-10-23 00:00:00'),(77233,11,'9D42.4','Central scotoma','Y','2025-10-23 00:00:00'),(77232,11,'XA5RB0','Central retinal artery','Y','2025-10-23 00:00:00'),(77231,11,'XH89C3','Central primitive neuroectodermal tumour','Y','2025-10-23 00:00:00'),(77230,11,'2A00.11','Central primitive neuroectodermal tumour','Y','2025-10-23 00:00:00'),(77229,11,'5A60.3','Central precocious puberty','Y','2025-10-23 00:00:00'),(77228,11,'XA0US1','Central portion of breast','Y','2025-10-23 00:00:00'),(77227,11,'8A45.31','Central pontine myelinolysis','Y','2025-10-23 00:00:00'),(77226,11,'AB13.0','Central perforation of tympanic membrane','Y','2025-10-23 00:00:00'),(77225,11,'XA50E4','Central palm','Y','2025-10-23 00:00:00'),(77224,11,'XH1Y90','Central osteosarcoma','Y','2025-10-23 00:00:00'),(77223,11,'2A00.3','Central neurocytoma of brain','Y','2025-10-23 00:00:00'),(77222,11,'XH0C11','Central neurocytoma','Y','2025-10-23 00:00:00'),(77221,11,'XM3GQ0','Central nervous system stimulants, not elsewhere classified','Y','2025-10-23 00:00:00'),(77220,11,'XM6938','Central nervous system stimulants opiate antagonists','Y','2025-10-23 00:00:00'),(77219,11,'XM7BN2','Central nervous system stimulants analeptics','Y','2025-10-23 00:00:00'),(77218,11,'XM1NA8','Central nervous system stimulants amphetamines','Y','2025-10-23 00:00:00'),(77217,11,'XM0MP0','Central nervous system depressants paraldehyde','Y','2025-10-23 00:00:00'),(77216,11,'XM4A26','Central nervous system depressants hypnotics specified','Y','2025-10-23 00:00:00'),(77215,11,'XM0XQ5','Central nervous system depressants hallucinogenics','Y','2025-10-23 00:00:00'),(77214,11,'XM6Z70','Central nervous system depressants chloral hydrate','Y','2025-10-23 00:00:00'),(77213,11,'XM1J81','Central nervous system depressants benzodiazepines','Y','2025-10-23 00:00:00'),(77212,11,'XM9SR9','Central nervous system depressants anaesthetic, intravenous','Y','2025-10-23 00:00:00'),(77211,11,'XM5UK1','Central nervous system depressants anaesthetic gases','Y','2025-10-23 00:00:00'),(77210,11,'JB43.2','Central nervous system complications of anaesthesia during the puerperium','Y','2025-10-23 00:00:00'),(77209,11,'JA67.2','Central nervous system complications of anaesthesia during pregnancy','Y','2025-10-23 00:00:00'),(77208,11,'JB0C.3','Central nervous system complications of anaesthesia during labour or delivery','Y','2025-10-23 00:00:00'),(77207,11,'XA3JU6','Central nervous system','Y','2025-10-23 00:00:00'),(77206,11,'KB2A.0','Central neonatal apnoea','Y','2025-10-23 00:00:00'),(77205,11,'XA9SG2','Central forehead','Y','2025-10-23 00:00:00'),(77204,11,'1C8A','Central European tick-borne encephalitis','Y','2025-10-23 00:00:00'),(77203,11,'NC73.03','Central dislocation of hip','Y','2025-10-23 00:00:00'),(77202,11,'5A61.5','Central diabetes insipidus','Y','2025-10-23 00:00:00'),(77201,11,'8A46','Central demyelination of corpus callosum','Y','2025-10-23 00:00:00'),(77200,11,'8C72.02','Central core disease','Y','2025-10-23 00:00:00'),(77199,11,'NA91.1','Central cord syndrome of thoracic spinal cord','Y','2025-10-23 00:00:00'),(77198,11,'NB62.1','Central cord syndrome of lumbar spinal cord','Y','2025-10-23 00:00:00'),(77197,11,'NA31.1','Central cord syndrome of cervical spinal cord','Y','2025-10-23 00:00:00'),(77196,11,'XA6C41','Central cheek','Y','2025-10-23 00:00:00'),(77195,11,'XA8HY4','Central axillary lymph node','Y','2025-10-23 00:00:00'),(77194,11,'XE11M','Centipede, millipede','Y','2025-10-23 00:00:00'),(77193,11,'XM6TD6','Centipede venom','Y','2025-10-23 00:00:00'),(77192,11,'XM57P1','Cenegermin','Y','2025-10-23 00:00:00'),(77191,11,'XM9Z80','Cemiplimab','Y','2025-10-23 00:00:00'),(77190,11,'DA07.5','Cementum dysplasia','Y','2025-10-23 00:00:00'),(77189,11,'XA4KC7','Cementum','Y','2025-10-23 00:00:00'),(77188,11,'XH52T0','Cemento-ossifying fibroma','Y','2025-10-23 00:00:00'),(77187,11,'XH8FX0','Cementoma, NOS','Y','2025-10-23 00:00:00'),(77186,11,'XH4VL1','Cementoblastoma, benign','Y','2025-10-23 00:00:00'),(77185,11,'XH5Y46','Cementifying fibroma','Y','2025-10-23 00:00:00'),(77184,11,'XM2EP3','Cellulose nitrates (topical)','Y','2025-10-23 00:00:00'),(77183,11,'XM22V5','Cellulose hydroxyethyl','Y','2025-10-23 00:00:00'),(77182,11,'XM3000','Cellulose cathartic','Y','2025-10-23 00:00:00'),(77181,11,'1B93.1','Cellulocutaneous plague','Y','2025-10-23 00:00:00'),(77180,11,'DA01.30','Cellulitis or abscess of soft tissues of the mouth','Y','2025-10-23 00:00:00'),(77179,11,'AA01','Cellulitis of external ear','Y','2025-10-23 00:00:00'),(77178,11,'SB78','Cellulitis disorder (TM1)','Y','2025-10-23 00:00:00'),(77177,11,'EF02.3','Cellulite','Y','2025-10-23 00:00:00'),(77176,11,'XH8WW8','Cellular schwannoma','Y','2025-10-23 00:00:00'),(77175,11,'XH1UZ6','Cellular neurothekeoma','Y','2025-10-23 00:00:00'),(77174,11,'XH9662','Cellular leiomyoma','Y','2025-10-23 00:00:00'),(77173,11,'XH9HH5','Cellular fibroma','Y','2025-10-23 00:00:00'),(77172,11,'XH54D9','Cellular ependymoma','Y','2025-10-23 00:00:00'),(77171,11,'XH3X84','Cellular blue naevus','Y','2025-10-23 00:00:00'),(77170,11,'XH4E06','Cellular angiofibroma','Y','2025-10-23 00:00:00'),(77169,11,'XA5UL3','Cell wall','Y','2025-10-23 00:00:00'),(77168,11,'XM8JB2','Cell stimulants and proliferants','Y','2025-10-23 00:00:00'),(77167,11,'XE1TF','Cell component of medical device','Y','2025-10-23 00:00:00'),(77166,11,'XM54E1','Celiprolol','Y','2025-10-23 00:00:00'),(77165,11,'XA89R1','Celiac ganglion','Y','2025-10-23 00:00:00'),(77164,11,'XM63D2','Celecoxib','Y','2025-10-23 00:00:00'),(77162,11,'XM0C25','Cefuzonam','Y','2025-10-23 00:00:00'),(77163,11,'XM0WA6','Celastrus scandens plant','Y','2025-10-23 00:00:00'),(77161,11,'XM9162','Cefuroxime and metronidazole','Y','2025-10-23 00:00:00'),(77160,11,'XM7VY3','Cefuroxime','Y','2025-10-23 00:00:00'),(77159,11,'XM19K3','Ceftriaxone and beta-lactamase inhibitor','Y','2025-10-23 00:00:00'),(77158,11,'XM3P83','Ceftriaxone','Y','2025-10-23 00:00:00'),(77157,11,'XM7RT0','Ceftolozane and beta-lactamase inhibitor','Y','2025-10-23 00:00:00'),(77156,11,'XM3QS2','Ceftobiprole medocaril','Y','2025-10-23 00:00:00'),(77155,11,'XM1064','Ceftizoxime','Y','2025-10-23 00:00:00'),(77154,11,'XM2D98','Ceftibuten','Y','2025-10-23 00:00:00'),(77153,11,'XM2L78','Ceftezole','Y','2025-10-23 00:00:00'),(77152,11,'XM45T3','Cefteram','Y','2025-10-23 00:00:00'),(77151,11,'XM8EN5','Ceftazidime and beta-lactamase inhibitor','Y','2025-10-23 00:00:00'),(77150,11,'XM94G4','Ceftazidime','Y','2025-10-23 00:00:00'),(77149,11,'XM2LW5','Ceftaroline fosamil','Y','2025-10-23 00:00:00'),(77148,11,'XM9732','Cefsulodin','Y','2025-10-23 00:00:00'),(77147,11,'XM75P2','Cefroxadine','Y','2025-10-23 00:00:00'),(77146,11,'XM8X72','Cefradine','Y','2025-10-23 00:00:00'),(77145,11,'XM4CP3','Cefprozil','Y','2025-10-23 00:00:00'),(77144,11,'XM85Q0','Cefpodoxime','Y','2025-10-23 00:00:00'),(77143,11,'XM0MR4','Cefpirome','Y','2025-10-23 00:00:00'),(77142,11,'XM9YD6','Cefpiramide','Y','2025-10-23 00:00:00'),(77141,11,'XM01V2','Cefpimizole','Y','2025-10-23 00:00:00'),(77140,11,'XM1BL5','Cefozopran','Y','2025-10-23 00:00:00'),(77139,11,'XM26N9','Cefoxitin','Y','2025-10-23 00:00:00'),(77138,11,'XM3V37','Cefotiam','Y','2025-10-23 00:00:00'),(77137,11,'XM5QJ0','Cefotetan','Y','2025-10-23 00:00:00'),(77136,11,'XM9RH3','Cefotaxime and beta-lactamase inhibitor','Y','2025-10-23 00:00:00'),(77135,11,'XM7CZ4','Cefotaxime','Y','2025-10-23 00:00:00'),(77134,11,'XM3QK7','Ceforanide','Y','2025-10-23 00:00:00'),(77133,11,'XM4UZ8','Cefoperazone and beta-lactamase inhibitor','Y','2025-10-23 00:00:00'),(77132,11,'XM5425','Cefoperazone','Y','2025-10-23 00:00:00'),(77131,11,'XM3M14','Cefonicid','Y','2025-10-23 00:00:00'),(77130,11,'XM12J5','Cefodizime','Y','2025-10-23 00:00:00'),(77129,11,'XM27Z3','Cefminox','Y','2025-10-23 00:00:00'),(77128,11,'XM8S59','Cefmetazole','Y','2025-10-23 00:00:00'),(77127,11,'XM6FL0','Cefmenoxime','Y','2025-10-23 00:00:00'),(77126,11,'XM4Q77','Cefixime','Y','2025-10-23 00:00:00'),(77125,11,'XM8YC6','Cefetamet','Y','2025-10-23 00:00:00'),(77124,11,'XM3DB6','Cefepime and amikacin','Y','2025-10-23 00:00:00'),(77123,11,'XM1HW5','Cefepime','Y','2025-10-23 00:00:00'),(77122,11,'XM2SP6','Cefditoren','Y','2025-10-23 00:00:00'),(77121,11,'XM2141','Cefdinir','Y','2025-10-23 00:00:00'),(77120,11,'XM0H82','Cefcapene','Y','2025-10-23 00:00:00'),(77119,11,'XM14Q0','Cefbuperazone','Y','2025-10-23 00:00:00'),(77118,11,'XM0BY6','Cefazolin','Y','2025-10-23 00:00:00'),(77117,11,'XM1EQ8','Cefazedone','Y','2025-10-23 00:00:00'),(77116,11,'XM8UF3','Cefatrizine','Y','2025-10-23 00:00:00'),(77115,11,'XM6DE1','Cefapirin','Y','2025-10-23 00:00:00'),(77114,11,'XM8J52','Cefamycin antibiotic','Y','2025-10-23 00:00:00'),(77113,11,'XM8839','Cefamandole','Y','2025-10-23 00:00:00'),(77112,11,'XM7GR3','Cefaloridine','Y','2025-10-23 00:00:00'),(77111,11,'XM5J74','Cefaloglycin','Y','2025-10-23 00:00:00'),(77110,11,'XM9Z22','Cefalexin','Y','2025-10-23 00:00:00'),(77109,11,'XM11S1','Cefadroxil','Y','2025-10-23 00:00:00'),(77108,11,'XM1ZJ9','Cefaclor','Y','2025-10-23 00:00:00'),(77106,11,'XM5ZY9','Ceepryn','Y','2025-10-23 00:00:00'),(77107,11,'XM7DR9','Cefacetrile','Y','2025-10-23 00:00:00'),(77105,11,'XM2QS0','Cediranib','Y','2025-10-23 00:00:00'),(77104,11,'XN5PM','Cedar Virus','Y','2025-10-23 00:00:00'),(77103,11,'BC81.20','Cavotricuspid isthmus dependent macroreentry tachycardia','Y','2025-10-23 00:00:00'),(77102,11,'9C81.4','Cavernous sinus syndromes','Y','2025-10-23 00:00:00'),(77101,11,'XA5WN3','Cavernous sinus','Y','2025-10-23 00:00:00'),(77100,11,'XA3FS7','Cavernous plexus','Y','2025-10-23 00:00:00'),(77099,11,'XH2EU7','Cavernous lymphangioma','Y','2025-10-23 00:00:00'),(77098,11,'XH1GU2','Cavernous haemangioma','Y','2025-10-23 00:00:00'),(77097,11,'XE6Z7','Cautery tip component of medical device','Y','2025-10-23 00:00:00'),(77096,11,'XM8586','Caustic hydroxide','Y','2025-10-23 00:00:00'),(77095,11,'XE6LX','Cause traced to user','Y','2025-10-23 00:00:00'),(77093,11,'XE5UX','Cause traced to training','Y','2025-10-23 00:00:00'),(77094,11,'XE18E','Cause traced to transport or storage','Y','2025-10-23 00:00:00'),(77092,11,'XE2TX','Cause traced to manufacturing','Y','2025-10-23 00:00:00'),(77090,11,'XE674','Cause traced to labeling','Y','2025-10-23 00:00:00'),(77091,11,'XE5AS','Cause traced to maintenance','Y','2025-10-23 00:00:00'),(77089,11,'XE7NN','Cause traced to infrastructure','Y','2025-10-23 00:00:00'),(77088,11,'XE1WV','Cause traced to environment','Y','2025-10-23 00:00:00'),(77087,11,'XE1UR','Cause traced to device design','Y','2025-10-23 00:00:00'),(77086,11,'XE7NC','Cause traced to component failure','Y','2025-10-23 00:00:00'),(77085,11,'XE2SY','Cause of problem with device not established','Y','2025-10-23 00:00:00'),(77083,11,'XE5BM','Cause cannot be traced to device','Y','2025-10-23 00:00:00'),(77084,11,'XT9C','Cause of late effect','Y','2025-10-23 00:00:00'),(77082,11,'AA41.0','Cauliflower ear','Y','2025-10-23 00:00:00'),(77081,11,'PH01','Caught, crushed, jammed or pinched between objects with undetermined intent','Y','2025-10-23 00:00:00'),(77080,11,'XA7TX5','Caudate nucleus','Y','2025-10-23 00:00:00'),(77079,11,'XA3278','Caudate lobe of liver','Y','2025-10-23 00:00:00'),(77078,11,'LB73.29','Caudal appendage','Y','2025-10-23 00:00:00'),(77077,11,'XK07','Caudal','Y','2025-10-23 00:00:00'),(77076,11,'8B40','Cauda equina syndrome','Y','2025-10-23 00:00:00'),(77075,11,'XA84W1','Cauda equina','Y','2025-10-23 00:00:00'),(77074,11,'XM9P40','Catumaxomab','Y','2025-10-23 00:00:00'),(77073,11,'1B98','Cat-scratch disease','Y','2025-10-23 00:00:00'),(77072,11,'XM4S88','Catridecacog','Y','2025-10-23 00:00:00'),(77071,11,'XM44K8','Cation exchange resin','Y','2025-10-23 00:00:00'),(77070,11,'XM8K95','Cathine','Y','2025-10-23 00:00:00'),(77069,11,'XE8NS','Catheter hub component of medical device','Y','2025-10-23 00:00:00'),(77068,11,'XE088','Catheter component of medical device','Y','2025-10-23 00:00:00'),(77067,11,'XM6LH5','Cathartic vegetable','Y','2025-10-23 00:00:00'),(77066,11,'XM69K0','Cathartic saline','Y','2025-10-23 00:00:00'),(77065,11,'XM2Y48','Cathartic mucilage','Y','2025-10-23 00:00:00'),(77064,11,'XM53Q7','Cathartic irritant','Y','2025-10-23 00:00:00'),(77063,11,'XM4DA2','Cathartic emollient','Y','2025-10-23 00:00:00'),(77062,11,'XM3W96','Cathartic contact','Y','2025-10-23 00:00:00'),(77061,11,'XM99E9','Cathartic bulk','Y','2025-10-23 00:00:00'),(77060,11,'XM2632','Cathartic anthacene derivative','Y','2025-10-23 00:00:00'),(77059,11,'XM0VG7','Catha (edulis) (tea)','Y','2025-10-23 00:00:00'),(77058,11,'XM1142','Caterpillar venom','Y','2025-10-23 00:00:00'),(77057,11,'BC65.5','Catecholaminergic polymorphic ventricular tachycardia','Y','2025-10-23 00:00:00'),(77056,11,'LD44.N0','CATCH 22 phenotype','Y','2025-10-23 00:00:00'),(77055,11,'6A4Z','Catatonia, unspecified','Y','2025-10-23 00:00:00'),(77054,11,'6A41','Catatonia induced by substances or medications','Y','2025-10-23 00:00:00'),(77053,11,'6A40','Catatonia associated with another mental disorder','Y','2025-10-23 00:00:00'),(77052,11,'DA0B.1','Catarrhal gingivitis','Y','2025-10-23 00:00:00'),(77051,11,'9B10.Z','Cataract, unspecified','Y','2025-10-23 00:00:00'),(77050,11,'9D21','Cataract lens fragments in eye following cataract surgery','Y','2025-10-23 00:00:00'),(77049,11,'9B10','Cataract','Y','2025-10-23 00:00:00'),(77048,11,'XE4V0','Cat','Y','2025-10-23 00:00:00'),(77047,11,'XM7G77','Castor oil','Y','2025-10-23 00:00:00'),(77046,11,'XE3K0','Caster component of medical device','Y','2025-10-23 00:00:00'),(77045,11,'XN18Y','Castelo dos Sonhos virus','Y','2025-10-23 00:00:00'),(77044,11,'XM9H69','Castellani\'s paint','Y','2025-10-23 00:00:00'),(77043,11,'8D43.5','Cassava poisoning','Y','2025-10-23 00:00:00'),(77042,11,'XM0K47','Caspofungin','Y','2025-10-23 00:00:00'),(77041,11,'XM2633','Casopitant','Y','2025-10-23 00:00:00'),(77040,11,'XM4VE2','Casimersen','Y','2025-10-23 00:00:00'),(77039,11,'XM8N88','Cascara','Y','2025-10-23 00:00:00'),(77038,11,'XM80G6','Carvedilol','Y','2025-10-23 00:00:00'),(77037,11,'XM9FE9','Carumonam','Y','2025-10-23 00:00:00'),(77035,11,'XM1AJ9','Carteolol','Y','2025-10-23 00:00:00'),(77036,11,'XM9YN3','Carter\'s Little Pills','Y','2025-10-23 00:00:00'),(77034,11,'VW12','Carrying, moving and handling objects','Y','2025-10-23 00:00:00'),(77033,11,'VD23','Carrying out daily routine [WHODAS]','Y','2025-10-23 00:00:00'),(77031,11,'1C11.0','Carrion disease','Y','2025-10-23 00:00:00'),(77032,11,'VV90','Carrying out daily routine','Y','2025-10-23 00:00:00'),(77030,11,'QD00','Carrier of salmonella typhi','Y','2025-10-23 00:00:00'),(77028,11,'QD01.Z','Carrier of intestinal infectious agents, unspecified','Y','2025-10-23 00:00:00'),(77029,11,'QD0Y','Carrier of other specified infectious disease agent','Y','2025-10-23 00:00:00'),(77027,11,'QD01','Carrier of intestinal infectious agents','Y','2025-10-23 00:00:00'),(77026,11,'QD0Z','Carrier of infectious disease agent, unspecified','Y','2025-10-23 00:00:00'),(77025,11,'QD03','Carrier of infectious agents with a predominantly sexual mode of transmission','Y','2025-10-23 00:00:00'),(77024,11,'QD02','Carrier of corynebacterium diphtheriae','Y','2025-10-23 00:00:00'),(77023,11,'XE00E','Carrier component of medical device','Y','2025-10-23 00:00:00'),(77022,11,'XM4663','Carrageenan','Y','2025-10-23 00:00:00'),(77021,11,'XM8JS6','Carpronium chloride','Y','2025-10-23 00:00:00'),(77020,11,'XM8GM3','Carprofen','Y','2025-10-23 00:00:00'),(77019,11,'XA0JX0','Carpometacarpal joint','Y','2025-10-23 00:00:00'),(77018,11,'XM9S41','Carpipramine','Y','2025-10-23 00:00:00'),(77017,11,'XM7KE0','Carphenazine','Y','2025-10-23 00:00:00'),(77016,11,'XM6HP1','Carpet viper snake venom','Y','2025-10-23 00:00:00'),(77015,11,'XA09H2','Carpal','Y','2025-10-23 00:00:00'),(77014,11,'8C10.0','Carpal tunnel syndrome','Y','2025-10-23 00:00:00'),(77013,11,'XA0GJ4','Carpal tunnel','Y','2025-10-23 00:00:00'),(77012,11,'XA3MB4','Carpal joint','Y','2025-10-23 00:00:00'),(77011,11,'XM3R36','Caroverine','Y','2025-10-23 00:00:00'),(77010,11,'8B22.43','Carotid cavernous fistula','Y','2025-10-23 00:00:00'),(77009,11,'XH3FS7','Carotid body paraganglioma','Y','2025-10-23 00:00:00'),(77008,11,'XA0F61','Carotid body','Y','2025-10-23 00:00:00'),(77007,11,'XA9AD7','Carotid artery','Y','2025-10-23 00:00:00'),(77006,11,'5C50.F1','Carnosinaemia','Y','2025-10-23 00:00:00'),(77005,11,'XM6JX1','Carnitine','Y','2025-10-23 00:00:00'),(77004,11,'XM82H4','Carmustine','Y','2025-10-23 00:00:00'),(77003,11,'XM6CQ5','Carmofur','Y','2025-10-23 00:00:00'),(77002,11,'XM5TC9','Carminative','Y','2025-10-23 00:00:00'),(77001,11,'XM3EV1','Carmellose','Y','2025-10-23 00:00:00'),(77000,11,'XM2DC7','Carisoprodol','Y','2025-10-23 00:00:00'),(76999,11,'XM7PP9','Carisbamate','Y','2025-10-23 00:00:00'),(76998,11,'XM1SS2','Cariprazine','Y','2025-10-23 00:00:00'),(76997,11,'VW21','Caring for body parts','Y','2025-10-23 00:00:00'),(76996,11,'XM7J83','Carindacillin','Y','2025-10-23 00:00:00'),(76995,11,'XA4JA0','Carina','Y','2025-10-23 00:00:00'),(76994,11,'XM0977','Carglumic acid','Y','2025-10-23 00:00:00'),(76993,11,'XM6C04','Carfusin','Y','2025-10-23 00:00:00'),(76992,11,'XM0A07','Carfilzomib','Y','2025-10-23 00:00:00'),(76991,11,'XM2SP1','Carfecillin','Y','2025-10-23 00:00:00'),(76990,11,'QE52.0','Caregiver-child relationship problem','Y','2025-10-23 00:00:00'),(76989,11,'QA48.1','Care or examination of lactating mother','Y','2025-10-23 00:00:00'),(76988,11,'QA48.0','Care or examination immediately after delivery','Y','2025-10-23 00:00:00'),(76987,11,'QB95.Z','Care involving use of rehabilitation procedures, unspecified','Y','2025-10-23 00:00:00'),(76986,11,'QB95','Care involving use of rehabilitation procedures','Y','2025-10-23 00:00:00'),(76985,11,'QB95.Y','Care involving use of other specified rehabilitation procedures','Y','2025-10-23 00:00:00'),(76984,11,'QB94.2','Care involving peritoneal dialysis','Y','2025-10-23 00:00:00'),(76983,11,'QB94.Y','Care involving other specified dialysis','Y','2025-10-23 00:00:00'),(76982,11,'QB94.1','Care involving extracorporeal dialysis','Y','2025-10-23 00:00:00'),(76981,11,'QB94.Z','Care involving dialysis, unspecified','Y','2025-10-23 00:00:00'),(76980,11,'QB94','Care involving dialysis','Y','2025-10-23 00:00:00'),(76979,11,'XA4PM9','Cardiovascular system','Y','2025-10-23 00:00:00'),(76977,11,'1A62.1','Cardiovascular late syphilis','Y','2025-10-23 00:00:00'),(76978,11,'MC84','Cardiovascular pain','Y','2025-10-23 00:00:00'),(76976,11,'KB4Z','Cardiovascular disorders present in the perinatal or neonatal period, unspecified','Y','2025-10-23 00:00:00'),(76975,11,'PK91.Z','Cardiovascular devices, implants or grafts associated with injury or harm, unspecified','Y','2025-10-23 00:00:00'),(76974,11,'PK91','Cardiovascular devices, implants or grafts associated with injury or harm','Y','2025-10-23 00:00:00'),(76973,11,'PK91.16','Cardiovascular devices associated with injury or harm: peripheral venous catheter','Y','2025-10-23 00:00:00'),(76972,11,'PK91.1Z','Cardiovascular devices associated with injury or harm, therapeutic, nonsurgical or rehabilitative devices, unspecified','Y','2025-10-23 00:00:00'),(76971,11,'PK91.1','Cardiovascular devices associated with injury or harm, therapeutic, nonsurgical or rehabilitative devices','Y','2025-10-23 00:00:00'),(76970,11,'PK91.3','Cardiovascular devices associated with injury or harm, surgical instruments, materials or devices','Y','2025-10-23 00:00:00'),(76969,11,'PK91.21','Cardiovascular devices associated with injury or harm, stents','Y','2025-10-23 00:00:00'),(76968,11,'PK91.2Z','Cardiovascular devices associated with injury or harm, prosthetic or other implants, materials or accessory devices, unspecified','Y','2025-10-23 00:00:00'),(76967,11,'PK91.2','Cardiovascular devices associated with injury or harm, prosthetic or other implants, materials or accessory devices','Y','2025-10-23 00:00:00'),(76966,11,'PK91.10','Cardiovascular devices associated with injury or harm, Pacemaker','Y','2025-10-23 00:00:00'),(76965,11,'PK91.4','Cardiovascular devices associated with injury or harm, miscellaneous devices, not elsewhere classified','Y','2025-10-23 00:00:00'),(76964,11,'PK91.22','Cardiovascular devices associated with injury or harm, mechanical or bioprosthetic valves','Y','2025-10-23 00:00:00'),(76963,11,'PK91.12','Cardiovascular devices associated with injury or harm, left ventricular assist devices','Y','2025-10-23 00:00:00'),(76962,11,'PK91.14','Cardiovascular devices associated with injury or harm, IVC filter','Y','2025-10-23 00:00:00'),(76961,11,'PK91.13','Cardiovascular devices associated with injury or harm, intra-aortic balloon pump','Y','2025-10-23 00:00:00'),(76960,11,'PK91.11','Cardiovascular devices associated with injury or harm, implantable defibrillator','Y','2025-10-23 00:00:00'),(76959,11,'PK91.20','Cardiovascular devices associated with injury or harm, grafts','Y','2025-10-23 00:00:00'),(76958,11,'PK91.0','Cardiovascular devices associated with injury or harm, diagnostic or monitoring devices','Y','2025-10-23 00:00:00'),(76957,11,'PK91.15','Cardiovascular devices associated with injury or harm, central venous catheter','Y','2025-10-23 00:00:00'),(76956,11,'XM91S1','Cardiotonic (glycoside)','Y','2025-10-23 00:00:00'),(76955,11,'PK81.E','Cardiopulmonary resuscitation associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(76954,11,'MC82.4','Cardiopulmonary arrest','Y','2025-10-23 00:00:00'),(76953,11,'XM99L3','Cardioplegia solutions','Y','2025-10-23 00:00:00'),(76952,11,'BC43.Z','Cardiomyopathy, unspecified','Y','2025-10-23 00:00:00'),(76951,11,'JB44.3','Cardiomyopathy in the puerperium','Y','2025-10-23 00:00:00'),(76950,11,'BC43.4','Cardiomyopathy due to drugs or other external agents','Y','2025-10-23 00:00:00'),(76949,11,'BC43','Cardiomyopathy','Y','2025-10-23 00:00:00'),(76948,11,'BC45','Cardiomegaly','Y','2025-10-23 00:00:00'),(76947,11,'BA60.9','Cardiogenic shock, unrelated to mechanical complications, as current complication following acute myocardial infarction','Y','2025-10-23 00:00:00'),(76946,11,'MG40.0','Cardiogenic shock','Y','2025-10-23 00:00:00'),(76945,11,'XA7SR6','Cardioesophageal junction','Y','2025-10-23 00:00:00'),(76944,11,'XA7XU8','Cardiac ventricle','Y','2025-10-23 00:00:00'),(76943,11,'XA9FK9','Cardiac veins','Y','2025-10-23 00:00:00'),(76942,11,'BE1A','Cardiac transplant associated coronary allograft vasculopathy','Y','2025-10-23 00:00:00'),(76941,11,'BB23','Cardiac tamponade','Y','2025-10-23 00:00:00'),(76940,11,'MG45.0','Cardiac syncope','Y','2025-10-23 00:00:00'),(76939,11,'XA81Z5','Cardiac septum','Y','2025-10-23 00:00:00'),(76938,11,'BA60.4','Cardiac rupture as current complication following acute myocardial infarction','Y','2025-10-23 00:00:00'),(76937,11,'XM2W76','Cardiac rhythm regulator specified','Y','2025-10-23 00:00:00'),(76936,11,'XM88L7','Cardiac rhythm regulator','Y','2025-10-23 00:00:00'),(76935,11,'QB95.0','Cardiac rehabilitation','Y','2025-10-23 00:00:00'),(76934,11,'PK80.13','Cardiac procedure for repair of congenital anomaly associated with injury or harm, unspecified approach','Y','2025-10-23 00:00:00'),(76933,11,'PK80.11','Cardiac procedure for repair of congenital anomaly associated with injury or harm, percutaneous approach','Y','2025-10-23 00:00:00'),(76932,11,'PK80.10','Cardiac procedure for repair of congenital anomaly associated with injury or harm, open approach','Y','2025-10-23 00:00:00'),(76931,11,'PK80.12','Cardiac procedure for repair of congenital anomaly associated with injury or harm, endoscopic approach','Y','2025-10-23 00:00:00'),(76930,11,'PK80.1','Cardiac procedure associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(76929,11,'XA9QM5','Cardiac plexus','Y','2025-10-23 00:00:00'),(76928,11,'XA6283','Cardiac muscle','Y','2025-10-23 00:00:00'),(76927,11,'MC83.Z','Cardiac murmurs and sounds, unspecified','Y','2025-10-23 00:00:00'),(76926,11,'MC83','Cardiac murmurs and other cardiac sounds','Y','2025-10-23 00:00:00'),(76925,11,'XM5JS3','Cardiac glycosides','Y','2025-10-23 00:00:00'),(76924,11,'XA79Z5','Cardiac electrical conducting system','Y','2025-10-23 00:00:00'),(76923,11,'XM9ZL3','Cardiac depressants','Y','2025-10-23 00:00:00'),(76922,11,'JB43.1','Cardiac complications of anaesthesia during the puerperium','Y','2025-10-23 00:00:00'),(76921,11,'JA67.1','Cardiac complications of anaesthesia during pregnancy','Y','2025-10-23 00:00:00'),(76920,11,'JB0C.2','Cardiac complications of anaesthesia during labour or delivery','Y','2025-10-23 00:00:00'),(76919,11,'XA91S4','Cardiac atrium','Y','2025-10-23 00:00:00'),(76918,11,'KB41','Cardiac arrhythmias in the neonate','Y','2025-10-23 00:00:00'),(76917,11,'BC9Z','Cardiac arrhythmia, unspecified','Y','2025-10-23 00:00:00'),(76916,11,'BC65.Z','Cardiac arrhythmia associated with genetic disorder, unspecified','Y','2025-10-23 00:00:00'),(76915,11,'BC65','Cardiac arrhythmia associated with genetic disorder','Y','2025-10-23 00:00:00'),(76914,11,'MC82.Z','Cardiac arrest, unspecified','Y','2025-10-23 00:00:00'),(76913,11,'MC82.3','Cardiac arrest with pulseless electrical activity','Y','2025-10-23 00:00:00'),(76912,11,'MC82','Cardiac arrest','Y','2025-10-23 00:00:00'),(76911,11,'2C72.3','Carcinosarcomas of uterine ligament, parametrium, or uterine adnexa','Y','2025-10-23 00:00:00'),(76910,11,'XH2W45','Carcinosarcoma, NOS','Y','2025-10-23 00:00:00'),(76909,11,'XH2RK1','Carcinosarcoma, embryonal','Y','2025-10-23 00:00:00'),(76908,11,'2C76.43','Carcinosarcoma of uterus','Y','2025-10-23 00:00:00'),(76907,11,'XH8D74','Carcinomatosis','Y','2025-10-23 00:00:00'),(76906,11,'2C73.0Z','Carcinomas of ovary, unspecified','Y','2025-10-23 00:00:00'),(76905,11,'2C73.0','Carcinomas of ovary','Y','2025-10-23 00:00:00'),(76904,11,'XH1YY4','Carcinoma, undifferentiated, NOS','Y','2025-10-23 00:00:00'),(76903,11,'XH63D2','Carcinoma, NOS','Y','2025-10-23 00:00:00'),(76902,11,'XH1YN3','Carcinoma, metastatic, NOS','Y','2025-10-23 00:00:00'),(76901,11,'XH0XL5','Carcinoma, diffuse type','Y','2025-10-23 00:00:00'),(76900,11,'XH57U9','Carcinoma, anaplastic, NOS','Y','2025-10-23 00:00:00'),(76899,11,'XH56X7','Carcinoma with osteoclast-like giant cells','Y','2025-10-23 00:00:00'),(76898,11,'XH6LF9','Carcinoma simplex','Y','2025-10-23 00:00:00'),(76897,11,'2C27.0','Carcinoma of thymus','Y','2025-10-23 00:00:00'),(76896,11,'XH22Z8','Carcinoma of Skene, Cowper and Littre Glands','Y','2025-10-23 00:00:00'),(76895,11,'XH5KW8','Carcinoma of male breast','Y','2025-10-23 00:00:00'),(76894,11,'2C60','Carcinoma of breast, specialised type','Y','2025-10-23 00:00:00'),(76893,11,'XH5NV6','Carcinoma in situ, NOS','Y','2025-10-23 00:00:00'),(76892,11,'2E67.1','Carcinoma in situ of vulva','Y','2025-10-23 00:00:00'),(76891,11,'2E67.2Z','Carcinoma in situ of vagina, unspecified','Y','2025-10-23 00:00:00'),(76890,11,'2E67.2','Carcinoma in situ of vagina','Y','2025-10-23 00:00:00'),(76889,11,'2E62.Z','Carcinoma in situ of unspecified sites of middle ear and respiratory system','Y','2025-10-23 00:00:00'),(76888,11,'2E6Z','Carcinoma in situ of unspecified site','Y','2025-10-23 00:00:00'),(76887,11,'2E61.Z','Carcinoma in situ of unspecified digestive organs','Y','2025-10-23 00:00:00'),(76886,11,'2E62.1','Carcinoma in situ of trachea','Y','2025-10-23 00:00:00'),(76885,11,'2E6B','Carcinoma in situ of thyroid and other endocrine glands','Y','2025-10-23 00:00:00'),(76884,11,'2E6A','Carcinoma in situ of the eye or ocular adnexa','Y','2025-10-23 00:00:00'),(76883,11,'2E6A.1','Carcinoma in situ of the cornea','Y','2025-10-23 00:00:00'),(76882,11,'2E6A.0','Carcinoma in situ of the conjunctiva','Y','2025-10-23 00:00:00'),(76881,11,'2E60.2','Carcinoma in situ of stomach','Y','2025-10-23 00:00:00'),(76880,11,'2E64.Z','Carcinoma in situ of skin, unspecified','Y','2025-10-23 00:00:00'),(76879,11,'2E64','Carcinoma in situ of skin','Y','2025-10-23 00:00:00'),(76878,11,'2E61.1','Carcinoma in situ of rectum','Y','2025-10-23 00:00:00'),(76877,11,'2E67.4','Carcinoma in situ of penis','Y','2025-10-23 00:00:00'),(76876,11,'2E62.Y','Carcinoma in situ of other specified sites of middle ear and respiratory system','Y','2025-10-23 00:00:00'),(76875,11,'2E6Y','Carcinoma in situ of other specified site','Y','2025-10-23 00:00:00'),(76874,11,'2E61.Y','Carcinoma in situ of other specified digestive organs','Y','2025-10-23 00:00:00'),(76873,11,'2E69','Carcinoma in situ of other or unspecified urinary organs','Y','2025-10-23 00:00:00'),(76872,11,'2E67.6','Carcinoma in situ of other or unspecified male genital organs','Y','2025-10-23 00:00:00'),(76871,11,'2E67','Carcinoma in situ of other or unspecified genital organs','Y','2025-10-23 00:00:00'),(76870,11,'2E67.3','Carcinoma in situ of other or unspecified female genital organs','Y','2025-10-23 00:00:00'),(76869,11,'2E61','Carcinoma in situ of other or unspecified digestive organs','Y','2025-10-23 00:00:00'),(76868,11,'2E6A.Y','Carcinoma in situ of other and unspecified part of the eye and adnexa','Y','2025-10-23 00:00:00'),(76867,11,'2E60','Carcinoma in situ of oral cavity, oesophagus or stomach','Y','2025-10-23 00:00:00'),(76866,11,'2E60.1','Carcinoma in situ of oesophagus','Y','2025-10-23 00:00:00'),(76865,11,'2E62','Carcinoma in situ of middle ear or respiratory system','Y','2025-10-23 00:00:00'),(76864,11,'2E60.0','Carcinoma in situ of lip, oral cavity or pharynx','Y','2025-10-23 00:00:00'),(76863,11,'2E62.0','Carcinoma in situ of larynx','Y','2025-10-23 00:00:00'),(76862,11,'2E61.3','Carcinoma in situ of gallbladder, biliary tract or ampulla of Vater','Y','2025-10-23 00:00:00'),(76861,11,'2E67.0','Carcinoma in situ of endometrium','Y','2025-10-23 00:00:00'),(76860,11,'2E61.0','Carcinoma in situ of colon','Y','2025-10-23 00:00:00'),(76859,11,'2E66.Z','Carcinoma in situ of cervix uteri, unspecified','Y','2025-10-23 00:00:00'),(76858,11,'2E66','Carcinoma in situ of cervix uteri','Y','2025-10-23 00:00:00'),(76857,11,'2E62.2','Carcinoma in situ of bronchus or lung','Y','2025-10-23 00:00:00'),(76856,11,'2E65.Z','Carcinoma in situ of breast, unspecified','Y','2025-10-23 00:00:00'),(76855,11,'2E65','Carcinoma in situ of breast','Y','2025-10-23 00:00:00'),(76854,11,'2E68','Carcinoma in situ of bladder','Y','2025-10-23 00:00:00'),(76853,11,'2E64.2','Carcinoma in situ of anal margin or perianal skin','Y','2025-10-23 00:00:00'),(76852,11,'2E61.2','Carcinoma in situ of anal canal','Y','2025-10-23 00:00:00'),(76851,11,'XH42V2','Carcinoma ex pleomorphic adenoma','Y','2025-10-23 00:00:00'),(76850,11,'2C27.1','Carcinoid tumour or other neuroendocrine neoplasms of thymus','Y','2025-10-23 00:00:00'),(76849,11,'5B10','Carcinoid syndrome','Y','2025-10-23 00:00:00'),(76848,11,'2C25.4','Carcinoid or other malignant neuroendocrine neoplasms of bronchus or lung','Y','2025-10-23 00:00:00'),(76847,11,'XH1YV7','Carcinofibroma','Y','2025-10-23 00:00:00'),(76846,11,'XM4ZB3','Carbuterol','Y','2025-10-23 00:00:00'),(76844,11,'1B75.1','Carbuncle','Y','2025-10-23 00:00:00'),(76845,11,'XM8ZU0','Carbutamide','Y','2025-10-23 00:00:00'),(76843,11,'XM68H5','Carbromal','Y','2025-10-23 00:00:00'),(76841,11,'XM70W8','Carboxamide derivatives','Y','2025-10-23 00:00:00'),(76842,11,'XM0HS3','Carboxymethyl-cellulose','Y','2025-10-23 00:00:00'),(76839,11,'XM8XM0','Carboprost','Y','2025-10-23 00:00:00'),(76840,11,'XM8A50','Carboquone','Y','2025-10-23 00:00:00'),(76837,11,'XM8AZ4','Carbophenothion','Y','2025-10-23 00:00:00'),(76838,11,'XM6Z30','Carboplatin','Y','2025-10-23 00:00:00'),(76836,11,'XM3ER5','Carbonic acid gas anhydrase inhibitor','Y','2025-10-23 00:00:00'),(76834,11,'XM3CP7','Carbon tetrachloride','Y','2025-10-23 00:00:00'),(76835,11,'XM0386','Carbon tetrachloride vapor','Y','2025-10-23 00:00:00'),(76833,11,'XM2LM9','Carbon monoxide from motor vehicle exhaust','Y','2025-10-23 00:00:00'),(76832,11,'XM8WR8','Carbon monoxide from incomplete combustion of','Y','2025-10-23 00:00:00'),(76831,11,'XM9ZV7','Carbon monoxide from incomplete combustion of','Y','2025-10-23 00:00:00'),(76830,11,'XM3ES0','Carbon monoxide from incomplete combustion of','Y','2025-10-23 00:00:00'),(76829,11,'XM5XY1','Carbon monoxide from incomplete combustion of','Y','2025-10-23 00:00:00'),(76828,11,'XM7NG7','Carbon monoxide from incomplete combustion of','Y','2025-10-23 00:00:00'),(76827,11,'XM5TT8','Carbon monoxide from incomplete combustion of','Y','2025-10-23 00:00:00'),(76826,11,'XM2EK4','Carbon monoxide from incomplete combustion of','Y','2025-10-23 00:00:00'),(76825,11,'XM4QD5','Carbon monoxide from incomplete combustion of','Y','2025-10-23 00:00:00'),(76824,11,'XM45F2','Carbon monoxide from incomplete combustion of','Y','2025-10-23 00:00:00'),(76823,11,'XM1MB6','Carbon monoxide from incomplete combustion of','Y','2025-10-23 00:00:00'),(76822,11,'XM6708','Carbon monoxide from incomplete combustion of utility natural gas','Y','2025-10-23 00:00:00'),(76821,11,'XM3UB7','Carbon monoxide from incomplete combustion of propane','Y','2025-10-23 00:00:00'),(76820,11,'XM1JF3','Carbon monoxide from incomplete combustion of producer gas','Y','2025-10-23 00:00:00'),(76819,11,'XM9675','Carbon monoxide from incomplete combustion of fuel gas','Y','2025-10-23 00:00:00'),(76818,11,'XM7SP6','Carbon monoxide from engine exhaust gas','Y','2025-10-23 00:00:00'),(76817,11,'XM7R97','Carbon monoxide from engine driven electrical generator','Y','2025-10-23 00:00:00'),(76816,11,'XM1X11','Carbon monoxide','Y','2025-10-23 00:00:00'),(76815,11,'XM7S46','Carbon disulfide','Y','2025-10-23 00:00:00'),(76814,11,'XM4AW0','Carbon dioxide snow','Y','2025-10-23 00:00:00'),(76813,11,'XM7DT2','Carbon dioxide producing drugs','Y','2025-10-23 00:00:00'),(76812,11,'XM6NZ1','Carbon dioxide medicinal','Y','2025-10-23 00:00:00'),(76811,11,'XM8XZ6','Carbon dioxide','Y','2025-10-23 00:00:00'),(76810,11,'XM0D75','Carbomycin','Y','2025-10-23 00:00:00'),(76809,11,'XM8PU1','Carbolonium (bromide)','Y','2025-10-23 00:00:00'),(76808,11,'XM2ZX1','Carbol fuchsin','Y','2025-10-23 00:00:00'),(76806,11,'XM7A68','Carbofuran','Y','2025-10-23 00:00:00'),(76807,11,'XM4YU3','Carbohydrates','Y','2025-10-23 00:00:00'),(76805,11,'XM38C7','Carbocromen','Y','2025-10-23 00:00:00'),(76804,11,'XM3XU8','Carbocisteine','Y','2025-10-23 00:00:00'),(76803,11,'XM2DT1','Carbocaine topical','Y','2025-10-23 00:00:00'),(76802,11,'XM8C65','Carbocaine nerve block','Y','2025-10-23 00:00:00'),(76801,11,'XM2YU2','Carbocaine infiltration','Y','2025-10-23 00:00:00'),(76800,11,'XM3962','Carbo medicinalis','Y','2025-10-23 00:00:00'),(76799,11,'XM9KZ9','Carbinoxamine','Y','2025-10-23 00:00:00'),(76798,11,'XM35K1','Carbimazole','Y','2025-10-23 00:00:00'),(76797,11,'XM1Z60','Carbidopa','Y','2025-10-23 00:00:00'),(76796,11,'XM4ZX0','Carbetocin','Y','2025-10-23 00:00:00'),(76795,11,'XM5X48','Carbethyl salicylate','Y','2025-10-23 00:00:00'),(76794,11,'XM2H82','Carbenoxolone','Y','2025-10-23 00:00:00'),(76793,11,'XM3D58','Carbenicillin','Y','2025-10-23 00:00:00'),(76792,11,'XM9F10','Carbendazim','Y','2025-10-23 00:00:00'),(76791,11,'XM6RT1','Carbazochrome sodium sulfonate','Y','2025-10-23 00:00:00'),(76790,11,'XM5UU0','Carbazochrome','Y','2025-10-23 00:00:00'),(76789,11,'XM0XT0','Carbaspirin','Y','2025-10-23 00:00:00'),(76788,11,'XM4TV1','Carbasalate calcium','Y','2025-10-23 00:00:00'),(76787,11,'XM9G20','Carbaryl','Y','2025-10-23 00:00:00'),(76786,11,'XM8E05','Carbarsone','Y','2025-10-23 00:00:00'),(76785,11,'XM1JU9','Carbapenems','Y','2025-10-23 00:00:00'),(76784,11,'MG50.80','Carbapenem-resistant Pseudomonas aeruginosa','Y','2025-10-23 00:00:00'),(76783,11,'MG50.A0','Carbapenem resistant Shigella','Y','2025-10-23 00:00:00'),(76782,11,'MG50.92','Carbapenem resistant Salmonella','Y','2025-10-23 00:00:00'),(76781,11,'MG50.54','Carbapenem resistant Klebsiella pneumoniae','Y','2025-10-23 00:00:00'),(76780,11,'MG50.24','Carbapenem resistant Escherichia coli','Y','2025-10-23 00:00:00'),(76779,11,'MG50.02','Carbapenem resistant Acinetobacter baumannii','Y','2025-10-23 00:00:00'),(76778,11,'5C50.A1','Carbamoylphosphate synthetase deficiency','Y','2025-10-23 00:00:00'),(76776,11,'XM4HL5','Carbamide','Y','2025-10-23 00:00:00'),(76777,11,'XM2V43','Carbamide peroxide','Y','2025-10-23 00:00:00'),(76775,11,'XM5AB5','Carbamic acid esters','Y','2025-10-23 00:00:00'),(76774,11,'XM3D95','Carbamazepine','Y','2025-10-23 00:00:00'),(76773,11,'XM96H3','Carbamates','Y','2025-10-23 00:00:00'),(76772,11,'XM0231','Carbamate insecticide','Y','2025-10-23 00:00:00'),(76771,11,'XM4PA4','Carbamate herbicide, not elsewhere classified','Y','2025-10-23 00:00:00'),(76770,11,'XM6DF0','Carbacrylamine (resin)','Y','2025-10-23 00:00:00'),(76769,11,'XM4AT9','Carbachol','Y','2025-10-23 00:00:00'),(76768,11,'XM3N87','Carazolol','Y','2025-10-23 00:00:00'),(76767,11,'8B22.C1','CARASIL [cerebral autosomal recessive arteriopathy with subcortical infarcts and leukoencephalopathy] syndrome','Y','2025-10-23 00:00:00'),(76766,11,'XM9633','Caramiphen','Y','2025-10-23 00:00:00'),(76765,11,'XM39J1','Car polish','Y','2025-10-23 00:00:00'),(76764,11,'XE2W4','Car as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(76763,11,'XE0JH','Car as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(76761,11,'XE57L','Capturing problem','Y','2025-10-23 00:00:00'),(76762,11,'XA9PF5','Caput medusae vein','Y','2025-10-23 00:00:00'),(76758,11,'XM9BL0','Captan','Y','2025-10-23 00:00:00'),(76759,11,'XM70L1','Captodiame','Y','2025-10-23 00:00:00'),(76760,11,'XM6P97','Captopril','Y','2025-10-23 00:00:00'),(76757,11,'XM3F05','Captafol','Y','2025-10-23 00:00:00'),(76756,11,'XE203','Capsicum spray, mace, pepper spray','Y','2025-10-23 00:00:00'),(76755,11,'XM9TT3','Capsicum','Y','2025-10-23 00:00:00'),(76753,11,'XM0892','Capreomycin','Y','2025-10-23 00:00:00'),(76754,11,'XM14C4','Capsaicin','Y','2025-10-23 00:00:00'),(76752,11,'XA11M8','Capitulum of humerus','Y','2025-10-23 00:00:00'),(76751,11,'XA06T2','Capitate bone','Y','2025-10-23 00:00:00'),(76750,11,'XA2769','Capillary, not elsewhere classified','Y','2025-10-23 00:00:00'),(76749,11,'XE2PZ','Capillary tube component of medical device','Y','2025-10-23 00:00:00'),(76748,11,'XM50P4','Capillary stabilising agents','Y','2025-10-23 00:00:00'),(76747,11,'LA90.0Z','Capillary malformations, unspecified','Y','2025-10-23 00:00:00'),(76745,11,'XH6LF7','Capillary lymphangioma','Y','2025-10-23 00:00:00'),(76746,11,'LA90.0','Capillary malformations','Y','2025-10-23 00:00:00'),(76744,11,'XH3U29','Capillary haemangioma','Y','2025-10-23 00:00:00'),(76743,11,'EF40.0','Capillaritis','Y','2025-10-23 00:00:00'),(76741,11,'1F63.0','Capillariasis of the intestine','Y','2025-10-23 00:00:00'),(76742,11,'1F63.Z','Capillariasis, unspecified','Y','2025-10-23 00:00:00'),(76740,11,'1F63','Capillariasis','Y','2025-10-23 00:00:00'),(76739,11,'XN9DT','Capillaria philippinensis','Y','2025-10-23 00:00:00'),(76737,11,'XM40Y4','Capecitabine','Y','2025-10-23 00:00:00'),(76738,11,'XN8T0','Capillaria','Y','2025-10-23 00:00:00'),(76736,11,'XE44H','Cap component of medical device','Y','2025-10-23 00:00:00'),(76735,11,'XE8ZP','Canvas','Y','2025-10-23 00:00:00'),(76734,11,'XM8337','Canthaxanthin','Y','2025-10-23 00:00:00'),(76733,11,'XM4597','Cantharides','Y','2025-10-23 00:00:00'),(76732,11,'XM1ML2','Canrenone','Y','2025-10-23 00:00:00'),(76731,11,'XM6QK1','Canrenoic acid','Y','2025-10-23 00:00:00'),(76730,11,'XE8BZ','Canoe, kayak, row boat, pirogue, piragua','Y','2025-10-23 00:00:00'),(76729,11,'XE9FK','Cannula hub component of medical device','Y','2025-10-23 00:00:00'),(76728,11,'XE2UB','Cannula component of medical device','Y','2025-10-23 00:00:00'),(76727,11,'XM7XX5','Canned heat, not elsewhere classified','Y','2025-10-23 00:00:00'),(76726,11,'6C41.6','Cannabis-induced psychotic disorder','Y','2025-10-23 00:00:00'),(76725,11,'6C41.70','Cannabis-induced mood disorder','Y','2025-10-23 00:00:00'),(76724,11,'6C41.5','Cannabis-induced delirium','Y','2025-10-23 00:00:00'),(76723,11,'6C41.71','Cannabis-induced anxiety disorder','Y','2025-10-23 00:00:00'),(76722,11,'6C41.4','Cannabis withdrawal','Y','2025-10-23 00:00:00'),(76721,11,'6C41.3','Cannabis intoxication','Y','2025-10-23 00:00:00'),(76720,11,'6C41.2Z','Cannabis dependence, unspecified','Y','2025-10-23 00:00:00'),(76719,11,'6C41.22','Cannabis dependence, sustained partial remission','Y','2025-10-23 00:00:00'),(76718,11,'6C41.23','Cannabis dependence, sustained full remission','Y','2025-10-23 00:00:00'),(76717,11,'6C41.21','Cannabis dependence, early full remission','Y','2025-10-23 00:00:00'),(76716,11,'6C41.20','Cannabis dependence, current use','Y','2025-10-23 00:00:00'),(76715,11,'6C41.2','Cannabis dependence','Y','2025-10-23 00:00:00'),(76714,11,'XM9S25','Cannabis (natural; phytocannabinoids)','Y','2025-10-23 00:00:00'),(76713,11,'CA80.2','Cannabinosis','Y','2025-10-23 00:00:00'),(76712,11,'XM8E16','Cannabinol','Y','2025-10-23 00:00:00'),(76711,11,'XM2PL7','Cannabinoids','Y','2025-10-23 00:00:00'),(76710,11,'XM5B55','Cannabidiol','Y','2025-10-23 00:00:00'),(76709,11,'XM3126','Cangrelor','Y','2025-10-23 00:00:00'),(76708,11,'XE90Y','Cane, walker, walking stick, walking frame','Y','2025-10-23 00:00:00'),(76707,11,'XE01B','Candle, candlestick','Y','2025-10-23 00:00:00'),(76706,11,'1F23.Z','Candidosis, unspecified','Y','2025-10-23 00:00:00'),(76705,11,'1F23.1Z','Candidosis of skin or mucous membranes, unspecified','Y','2025-10-23 00:00:00'),(76704,11,'1F23.1','Candidosis of skin or mucous membranes','Y','2025-10-23 00:00:00'),(76703,11,'1F23.1Y','Candidosis of skin or mucous membrane of other specified site','Y','2025-10-23 00:00:00'),(76702,11,'1F23.13','Candidosis of nail or paronychium','Y','2025-10-23 00:00:00'),(76701,11,'1F23.0','Candidosis of lips or oral mucous membranes','Y','2025-10-23 00:00:00'),(76699,11,'1F23','Candidosis','Y','2025-10-23 00:00:00'),(76700,11,'1F23.2','Candidosis of gastrointestinal tract','Y','2025-10-23 00:00:00'),(76698,11,'1F23.16','Candida otomycosis','Y','2025-10-23 00:00:00'),(76697,11,'1F23.30','Candida meningitis','Y','2025-10-23 00:00:00'),(76695,11,'XN72N','Candida auris','Y','2025-10-23 00:00:00'),(76696,11,'1F23.11','Candida balanoposthitis','Y','2025-10-23 00:00:00'),(76693,11,'XN3CL','Candida','Y','2025-10-23 00:00:00'),(76694,11,'XN31P','Candida albicans','Y','2025-10-23 00:00:00'),(76692,11,'XM2AV1','Candicidin','Y','2025-10-23 00:00:00'),(76691,11,'XM4168','Candesartan','Y','2025-10-23 00:00:00'),(76689,11,'9A11.1','Canaliculitis','Y','2025-10-23 00:00:00'),(76690,11,'XM7RS5','Cancer chemotherapy drug regimen','Y','2025-10-23 00:00:00'),(76687,11,'XM67R0','Canakinumab','Y','2025-10-23 00:00:00'),(76688,11,'XH1TD7','Canalicular adenoma','Y','2025-10-23 00:00:00'),(76685,11,'XM5RM7','Camylofin','Y','2025-10-23 00:00:00'),(76686,11,'XM1NP2','Canagliflozin','Y','2025-10-23 00:00:00'),(76684,11,'1C40','Campylobacteriosis','Y','2025-10-23 00:00:00'),(76683,11,'MG50.1Z','Campylobacter resistant to unspecified antibiotic','Y','2025-10-23 00:00:00'),(76681,11,'XN3EN','Campylobacter fetus','Y','2025-10-23 00:00:00'),(76682,11,'XN4Q5','Campylobacter jejuni','Y','2025-10-23 00:00:00'),(76680,11,'XN0BA','Campylobacter coli','Y','2025-10-23 00:00:00'),(76679,11,'XN7US','Campylobacter','Y','2025-10-23 00:00:00'),(76678,11,'XE63M','Camping equipment','Y','2025-10-23 00:00:00'),(76677,11,'XM5FW1','Camphora','Y','2025-10-23 00:00:00'),(76676,11,'XM9QH4','Camostat','Y','2025-10-23 00:00:00'),(76675,11,'XE120','Camera component of medical device','Y','2025-10-23 00:00:00'),(76674,11,'XM5133','Camazepam','Y','2025-10-23 00:00:00'),(76673,11,'XA2BH0','Calvarium','Y','2025-10-23 00:00:00'),(76672,11,'XM0T50','Calusterone','Y','2025-10-23 00:00:00'),(76670,11,'XM7VA5','Calomel','Y','2025-10-23 00:00:00'),(76671,11,'XM51Y8','Caloric agent','Y','2025-10-23 00:00:00'),(76669,11,'MB28.1','Callousness','Y','2025-10-23 00:00:00'),(76668,11,'EH92.0Z','Callosity, unspecified','Y','2025-10-23 00:00:00'),(76667,11,'1C8B','California encephalitis','Y','2025-10-23 00:00:00'),(76666,11,'XN9RK','Calicivirus','Y','2025-10-23 00:00:00'),(76665,11,'XE34X','Calibrator component of medical device','Y','2025-10-23 00:00:00'),(76663,11,'XA4K86','Calf','Y','2025-10-23 00:00:00'),(76664,11,'XE55U','Calibration problem','Y','2025-10-23 00:00:00'),(76662,11,'GB70.1','Calculus of ureter','Y','2025-10-23 00:00:00'),(76661,11,'GB70.Z','Calculus of upper urinary tract, unspecified','Y','2025-10-23 00:00:00'),(76660,11,'GB70','Calculus of upper urinary tract','Y','2025-10-23 00:00:00'),(76659,11,'GA91.3','Calculus of prostate','Y','2025-10-23 00:00:00'),(76658,11,'GB71.Z','Calculus of lower urinary tract, unspecified','Y','2025-10-23 00:00:00'),(76657,11,'GB71','Calculus of lower urinary tract','Y','2025-10-23 00:00:00'),(76655,11,'GB70.0','Calculus of kidney','Y','2025-10-23 00:00:00'),(76656,11,'GB70.0Z','Calculus of kidney, unspecified','Y','2025-10-23 00:00:00'),(76654,11,'DC11.3','Calculus of gallbladder or cystic duct without cholecystitis or cholangitis','Y','2025-10-23 00:00:00'),(76653,11,'DC11.1','Calculus of gallbladder or cystic duct with other cholecystitis','Y','2025-10-23 00:00:00'),(76652,11,'DC11.2','Calculus of gallbladder or cystic duct with cholangitis','Y','2025-10-23 00:00:00'),(76651,11,'DC11.0','Calculus of gallbladder or cystic duct with acute cholecystitis','Y','2025-10-23 00:00:00'),(76650,11,'GB71.2','Calculus of bowel segments for urinary diversion','Y','2025-10-23 00:00:00'),(76649,11,'DC11.6','Calculus of bile duct without cholangitis or cholecystitis','Y','2025-10-23 00:00:00'),(76648,11,'DC11.5','Calculus of bile duct with cholecystitis','Y','2025-10-23 00:00:00'),(76647,11,'DC11.4','Calculus of bile duct with cholangitis','Y','2025-10-23 00:00:00'),(76646,11,'GB71.1','Calculus in urethra','Y','2025-10-23 00:00:00'),(76645,11,'GB71.0','Calculus in bladder','Y','2025-10-23 00:00:00'),(76644,11,'XM8EF6','Calcium silicate','Y','2025-10-23 00:00:00'),(76643,11,'XM9566','Calcium salts','Y','2025-10-23 00:00:00'),(76642,11,'XM8F16','Calcium salicylate','Y','2025-10-23 00:00:00'),(76641,11,'FA26.0','Calcium pyrophosphate dehydrate deposition disease','Y','2025-10-23 00:00:00'),(76640,11,'XM1AY1','Calcium phosphate','Y','2025-10-23 00:00:00'),(76639,11,'XM7398','Calcium pantothenate','Y','2025-10-23 00:00:00'),(76638,11,'XM7G46','Calcium pangamate','Y','2025-10-23 00:00:00'),(76637,11,'XM87X9','Calcium oxide','Y','2025-10-23 00:00:00'),(76636,11,'XM2852','Calcium levofolinate','Y','2025-10-23 00:00:00'),(76635,11,'XM6AK3','Calcium laevulate','Y','2025-10-23 00:00:00'),(76634,11,'XM4N33','Calcium lactate gluconate','Y','2025-10-23 00:00:00'),(76633,11,'XM46G3','Calcium lactate','Y','2025-10-23 00:00:00'),(76632,11,'XM6TF5','Calcium iopodate','Y','2025-10-23 00:00:00'),(76631,11,'XM9FP2','Calcium iodide','Y','2025-10-23 00:00:00'),(76630,11,'XM50U9','Calcium hypochlorite','Y','2025-10-23 00:00:00'),(76629,11,'XM4AF1','Calcium hydroxide','Y','2025-10-23 00:00:00'),(76628,11,'XM9FX7','Calcium hexamine thiocyanate','Y','2025-10-23 00:00:00'),(76627,11,'XM9WA2','Calcium glycerylphosphate','Y','2025-10-23 00:00:00'),(76626,11,'XM3EU2','Calcium gluconate','Y','2025-10-23 00:00:00'),(76625,11,'XM08S9','Calcium glucoheptonate','Y','2025-10-23 00:00:00'),(76624,11,'XM7ND2','Calcium glubionate','Y','2025-10-23 00:00:00'),(76623,11,'XM7BJ9','Calcium folinate','Y','2025-10-23 00:00:00'),(76622,11,'XM8ZX9','Calcium ferrous citrate','Y','2025-10-23 00:00:00'),(76621,11,'XM3LU4','Calcium dobesilate','Y','2025-10-23 00:00:00'),(76620,11,'XM0ML8','Calcium dioctyl sulfosuccinate','Y','2025-10-23 00:00:00'),(76619,11,'XM0XT5','Calcium dichromate','Y','2025-10-23 00:00:00'),(76618,11,'FB50.3','Calcium deposit in bursa','Y','2025-10-23 00:00:00'),(76617,11,'5B5K.1Z','Calcium deficiency, unspecified','Y','2025-10-23 00:00:00'),(76616,11,'5B5K.1','Calcium deficiency','Y','2025-10-23 00:00:00'),(76615,11,'XM42L1','Calcium cyanide','Y','2025-10-23 00:00:00'),(76614,11,'XM0SA0','Calcium compounds','Y','2025-10-23 00:00:00'),(76613,11,'XM4X88','Calcium citrate lysine complex','Y','2025-10-23 00:00:00'),(76612,11,'XM4S97','Calcium citrate','Y','2025-10-23 00:00:00'),(76611,11,'XM9VN8','Calcium chloride','Y','2025-10-23 00:00:00'),(76610,11,'XM9003','Calcium carbonate','Y','2025-10-23 00:00:00'),(76609,11,'XM2FC3','Calcium carbimide','Y','2025-10-23 00:00:00'),(76608,11,'XM8AM9','Calcium bromolactobionate','Y','2025-10-23 00:00:00'),(76607,11,'XM7Q19','Calcium bromide','Y','2025-10-23 00:00:00'),(76606,11,'XM2754','Calcium benzamidosalicylate','Y','2025-10-23 00:00:00'),(76605,11,'XM7FE7','Calcium aminosalicylate','Y','2025-10-23 00:00:00'),(76604,11,'XM1JS6','Calcium alginate','Y','2025-10-23 00:00:00'),(76603,11,'XM5TW4','Calcium acetate anhydrous','Y','2025-10-23 00:00:00'),(76602,11,'XM4MP9','Calcium acetate and Magnesium carbonate','Y','2025-10-23 00:00:00'),(76601,11,'XM0VY0','Calcium acetate','Y','2025-10-23 00:00:00'),(76600,11,'XM8KC2','Calcium','Y','2025-10-23 00:00:00'),(76599,11,'XM85V3','Calcitriol','Y','2025-10-23 00:00:00'),(76598,11,'XM74V3','Calcitonin, salmon synthetic','Y','2025-10-23 00:00:00'),(76597,11,'XM28Z6','Calcitonin, pork natural','Y','2025-10-23 00:00:00'),(76596,11,'XM32U7','Calcitonin, human synthetic','Y','2025-10-23 00:00:00'),(76595,11,'XM0S16','Calcitonin preparations','Y','2025-10-23 00:00:00'),(76594,11,'XM2TT0','Calcipotriol','Y','2025-10-23 00:00:00'),(76593,11,'XM3CM4','Calcineurin inhibitors','Y','2025-10-23 00:00:00'),(76592,11,'XH3R33','Calcifying odontogenic cyst','Y','2025-10-23 00:00:00'),(76591,11,'XH8X78','Calcifying nested stromal-epithelial tumor','Y','2025-10-23 00:00:00'),(76590,11,'XH7TH6','Calcifying fibrous tumour','Y','2025-10-23 00:00:00'),(76589,11,'XH4PT4','Calcifying epithelial odontogenic tumour','Y','2025-10-23 00:00:00'),(76588,11,'XH8ZE3','Calcifying aponeurotic fibroma','Y','2025-10-23 00:00:00'),(76587,11,'XE8J3','Calcified','Y','2025-10-23 00:00:00'),(76586,11,'FB31.Z','Calcification or ossification of muscle, unspecified','Y','2025-10-23 00:00:00'),(76585,11,'FB31','Calcification or ossification of muscle','Y','2025-10-23 00:00:00'),(76584,11,'EB90.4','Calcification of skin or subcutaneous tissue','Y','2025-10-23 00:00:00'),(76583,11,'FB40.3','Calcific tendinitis','Y','2025-10-23 00:00:00'),(76582,11,'EB90.41','Calcific panniculitis','Y','2025-10-23 00:00:00'),(76581,11,'DC32.0','Calcific pancreatitis','Y','2025-10-23 00:00:00'),(76579,11,'XM8SM6','Calcifediol','Y','2025-10-23 00:00:00'),(76580,11,'EB90.42','Calcific arteriolopathy','Y','2025-10-23 00:00:00'),(76578,11,'XA5LU2','Calcaneus','Y','2025-10-23 00:00:00'),(76577,11,'XA3154','Calcaneofibular ligament','Y','2025-10-23 00:00:00'),(76576,11,'XA4JJ1','Calcaneocuboid joint','Y','2025-10-23 00:00:00'),(76575,11,'FB54.3','Calcaneal spur','Y','2025-10-23 00:00:00'),(76574,11,'XM7K00','Calamine (lotion)','Y','2025-10-23 00:00:00'),(76573,11,'XM0BS2','Caladium seguinum','Y','2025-10-23 00:00:00'),(76572,11,'XM9B82','Caladium plant','Y','2025-10-23 00:00:00'),(76571,11,'XM1021','Caladium bicolor','Y','2025-10-23 00:00:00'),(76570,11,'NF04.2','Caisson disease','Y','2025-10-23 00:00:00'),(76569,11,'6C48.40','Caffeine-induced anxiety disorder','Y','2025-10-23 00:00:00'),(76568,11,'6C48.3','Caffeine withdrawal','Y','2025-10-23 00:00:00'),(76567,11,'6C48.2','Caffeine intoxication','Y','2025-10-23 00:00:00'),(76566,11,'XM1Q27','Caffeine and Sodium benzoate','Y','2025-10-23 00:00:00'),(76564,11,'XM2BX9','Cafedrine','Y','2025-10-23 00:00:00'),(76565,11,'XM0NG8','Caffeine','Y','2025-10-23 00:00:00'),(76563,11,'XE058','Caf','Y','2025-10-23 00:00:00'),(76562,11,'PK80.7Z','Caesarean section or other obstetric procedure associated with injury or harm, unspecified approach','Y','2025-10-23 00:00:00'),(76561,11,'PK80.7Y','Caesarean section or other obstetric procedure associated with injury or harm, other specified approach','Y','2025-10-23 00:00:00'),(76559,11,'XA6J68','Caecum','Y','2025-10-23 00:00:00'),(76560,11,'PK80.70','Caesarean section or other obstetric procedure associated with injury or harm, open approach','Y','2025-10-23 00:00:00'),(76557,11,'XM33U1','Cadralazine','Y','2025-10-23 00:00:00'),(76558,11,'XM2JZ1','Cadusafos','Y','2025-10-23 00:00:00'),(76556,11,'XM5YV2','Cadmium sulfide nonmedicinal','Y','2025-10-23 00:00:00'),(76554,11,'XM0TH7','Cadmium sulfate','Y','2025-10-23 00:00:00'),(76555,11,'XM2ST0','Cadmium sulfide (medicinal)','Y','2025-10-23 00:00:00'),(76553,11,'XM9217','Cadmium succinate','Y','2025-10-23 00:00:00'),(76552,11,'XM4YU7','Cadmium selenide','Y','2025-10-23 00:00:00'),(76550,11,'XM8ZR0','Cadmium compounds (medicinal)','Y','2025-10-23 00:00:00'),(76551,11,'XM1TW0','Cadmium pesticide, not elsewhere classified','Y','2025-10-23 00:00:00'),(76549,11,'XM3YF2','Cadmium chloride','Y','2025-10-23 00:00:00'),(76547,11,'XM0V73','Cadmium','Y','2025-10-23 00:00:00'),(76548,11,'XM3S39','Cadmium carbonate','Y','2025-10-23 00:00:00'),(76545,11,'XM4FV2','Cade oil','Y','2025-10-23 00:00:00'),(76546,11,'XM0DJ3','Cadexomer','Y','2025-10-23 00:00:00'),(76543,11,'XM3WB5','Cactinomycin','Y','2025-10-23 00:00:00'),(76544,11,'8B22.C0','CADASIL [cerebral autosomal dominant arteriopathy with subcortical infarcts and leukoencephalopathy] syndrome','Y','2025-10-23 00:00:00'),(76542,11,'XM6C50','Cacodylic acid','Y','2025-10-23 00:00:00'),(76540,11,'MG20.Z','Cachexia, unspecified','Y','2025-10-23 00:00:00'),(76541,11,'XM0DR1','Cacodyl','Y','2025-10-23 00:00:00'),(76538,11,'XM4TL0','Cabozantinib','Y','2025-10-23 00:00:00'),(76539,11,'MG20','Cachexia','Y','2025-10-23 00:00:00'),(76537,11,'XE4NU','Cable, mechanical structural component of medical device','Y','2025-10-23 00:00:00'),(76536,11,'XE7JQ','Cable, electrical component of medical device','Y','2025-10-23 00:00:00'),(76535,11,'XE2BS','Cable sleeve component of medical device','Y','2025-10-23 00:00:00'),(76534,11,'XE77B','Cable grip component of medical device','Y','2025-10-23 00:00:00'),(76533,11,'XE8KJ','Cable car, ski chair lift, ski lift with gondola','Y','2025-10-23 00:00:00'),(76532,11,'XE3BY','Cabinet, cupboard, side board, chest of drawers, tall boy, dresser','Y','2025-10-23 00:00:00'),(76530,11,'XM50E3','Cabazitaxel','Y','2025-10-23 00:00:00'),(76531,11,'XM4S44','Cabergoline','Y','2025-10-23 00:00:00'),(76529,11,'XN0UF','Cabassou virus','Y','2025-10-23 00:00:00'),(76528,11,'XA8965','C8 level','Y','2025-10-23 00:00:00'),(76527,11,'XA3NV2','C7 level','Y','2025-10-23 00:00:00'),(76525,11,'XA3JA6','C5 level','Y','2025-10-23 00:00:00'),(76526,11,'XA4LT0','C6 level','Y','2025-10-23 00:00:00'),(76524,11,'XA2MQ3','C4 level','Y','2025-10-23 00:00:00'),(76523,11,'XA3JF5','C3 level','Y','2025-10-23 00:00:00'),(76522,11,'XA7852','C2 level','Y','2025-10-23 00:00:00'),(76521,11,'XM9AX4','C1-inhibitor, plasma derived','Y','2025-10-23 00:00:00'),(76520,11,'XA2K06','C1 level','Y','2025-10-23 00:00:00'),(76519,11,'XS9S','C Regional disease','Y','2025-10-23 00:00:00'),(76518,11,'CA80.0','Byssinosis','Y','2025-10-23 00:00:00'),(76517,11,'XM2HT3','Butyrophenone (-based tranquilizers)','Y','2025-10-23 00:00:00'),(76516,11,'XM5NW5','Butyn','Y','2025-10-23 00:00:00'),(76515,11,'XM4214','Butyltoluene','Y','2025-10-23 00:00:00'),(76514,11,'XM0QS6','Butylscopolamine','Y','2025-10-23 00:00:00'),(76513,11,'XM7W23','Butylpyrazolidines','Y','2025-10-23 00:00:00'),(76512,11,'XM9MV5','Butylglycidylether','Y','2025-10-23 00:00:00'),(76511,11,'XM9J50','Butylchloral hydrate','Y','2025-10-23 00:00:00'),(76510,11,'XM2PP7','Butylated hydroxytoluene','Y','2025-10-23 00:00:00'),(76509,11,'XM6GU7','Butylated hydroxyanisole','Y','2025-10-23 00:00:00'),(76508,11,'XM5K69','Butyl thiobarbital sodium','Y','2025-10-23 00:00:00'),(76507,11,'XM1T59','Butyl scopolamine bromide','Y','2025-10-23 00:00:00'),(76506,11,'XM3NC8','Butyl propionate','Y','2025-10-23 00:00:00'),(76505,11,'XM38K5','Butyl parahydroxybenzoate','Y','2025-10-23 00:00:00'),(76504,11,'XM59Y7','Butyl lactate','Y','2025-10-23 00:00:00'),(76503,11,'XM3XT7','Butyl formate','Y','2025-10-23 00:00:00'),(76502,11,'XM0M80','Butyl butyrate','Y','2025-10-23 00:00:00'),(76501,11,'XM0HA0','Butyl aminobenzoate','Y','2025-10-23 00:00:00'),(76500,11,'XM49S0','Butyl alcohol','Y','2025-10-23 00:00:00'),(76499,11,'XM3RG6','Butyl acetate','Y','2025-10-23 00:00:00'),(76498,11,'XE06P','Button','Y','2025-10-23 00:00:00'),(76497,11,'XA3VA7','Buttock','Y','2025-10-23 00:00:00'),(76496,11,'XM5ML2','Butropium bromide','Y','2025-10-23 00:00:00'),(76495,11,'XM8QA6','Butriptyline','Y','2025-10-23 00:00:00'),(76494,11,'XM4DS5','Butoxycarboxim','Y','2025-10-23 00:00:00'),(76493,11,'XM1682','Butorphanol','Y','2025-10-23 00:00:00'),(76492,11,'XM6862','Butoconazole (nitrate)','Y','2025-10-23 00:00:00'),(76491,11,'XM0ZT6','Butocarboxim','Y','2025-10-23 00:00:00'),(76490,11,'XM8TB8','Butobarbital','Y','2025-10-23 00:00:00'),(76489,11,'XM83Q3','Butizide','Y','2025-10-23 00:00:00'),(76488,11,'XM6LE6','Buthalitone sodium','Y','2025-10-23 00:00:00'),(76487,11,'XM06F9','Butetamate','Y','2025-10-23 00:00:00'),(76486,11,'XM5ZS6','Buteprate','Y','2025-10-23 00:00:00'),(76485,11,'XM2L70','Butenafine','Y','2025-10-23 00:00:00'),(76484,11,'XM5JD6','Butaperazine','Y','2025-10-23 00:00:00'),(76483,11,'XM8GU1','Butantrone','Y','2025-10-23 00:00:00'),(76482,11,'XM9VA7','Butanilicaine','Y','2025-10-23 00:00:00'),(76481,11,'XM4653','Butane','Y','2025-10-23 00:00:00'),(76480,11,'XM8WM3','Butamirate','Y','2025-10-23 00:00:00'),(76479,11,'XM7MD5','Butamben','Y','2025-10-23 00:00:00'),(76478,11,'XM6XH1','Butallylonal','Y','2025-10-23 00:00:00'),(76477,11,'XM3UQ5','Butalbital','Y','2025-10-23 00:00:00'),(76476,11,'XM6XW8','Butalamine','Y','2025-10-23 00:00:00'),(76475,11,'XM3781','Butacaine','Y','2025-10-23 00:00:00'),(76474,11,'XM7WX6','Busulfan','Y','2025-10-23 00:00:00'),(76473,11,'XM1ZF1','Buspirone','Y','2025-10-23 00:00:00'),(76472,11,'XM2650','Bushmaster snake venom','Y','2025-10-23 00:00:00'),(76471,11,'XM26Z0','Bush viper snake venom','Y','2025-10-23 00:00:00'),(76470,11,'XM32E8','Buserelin','Y','2025-10-23 00:00:00'),(76469,11,'XE60G','Bus, coach','Y','2025-10-23 00:00:00'),(76468,11,'XE2RA','Bus or coach as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(76467,11,'XE5LJ','Bus or coach as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(76466,11,'XJ7ZH','Burst fracture','Y','2025-10-23 00:00:00'),(76465,11,'XE638','Burst container or vessel','Y','2025-10-23 00:00:00'),(76464,11,'FB50.Z','Bursitis, unspecified','Y','2025-10-23 00:00:00'),(76463,11,'FB50.1','Bursitis related to use, overuse or pressure','Y','2025-10-23 00:00:00'),(76462,11,'FB50','Bursitis','Y','2025-10-23 00:00:00'),(76461,11,'XA7P88','Bursa praepatellaris','Y','2025-10-23 00:00:00'),(76460,11,'XA12U7','Bursa olecrani','Y','2025-10-23 00:00:00'),(76459,11,'XA16K5','Bursa','Y','2025-10-23 00:00:00'),(76458,11,'XM4MQ4','Burosumab','Y','2025-10-23 00:00:00'),(76457,11,'NE2Z','Burns, unspecified','Y','2025-10-23 00:00:00'),(76456,11,'NE0Z','Burns of unspecified internal organ','Y','2025-10-23 00:00:00'),(76455,11,'NE10','Burns of multiple body regions','Y','2025-10-23 00:00:00'),(76454,11,'ND9Z','Burns of external body surface, unspecified site','Y','2025-10-23 00:00:00'),(76453,11,'ND9Y','Burns of external body surface, other specified site','Y','2025-10-23 00:00:00'),(76452,11,'XJ4NH','Burns involving less than 5% of body surface','Y','2025-10-23 00:00:00'),(76451,11,'XJ4PF','Burns involving less than 10% of body surface','Y','2025-10-23 00:00:00'),(76450,11,'XJ9JX','Burns involving 90% or more of body surface','Y','2025-10-23 00:00:00'),(76449,11,'XJ1HD','Burns involving 80-89% of body surface','Y','2025-10-23 00:00:00'),(76448,11,'XJ7F7','Burns involving 70-79% of body surface','Y','2025-10-23 00:00:00'),(76447,11,'XJ4B7','Burns involving 60-69% of body surface','Y','2025-10-23 00:00:00'),(76446,11,'XJ7TR','Burns involving 5-9% of body surface','Y','2025-10-23 00:00:00'),(76445,11,'XJ19C','Burns involving 50-59% of body surface','Y','2025-10-23 00:00:00'),(76444,11,'XJ3R2','Burns involving 40-49% of body surface','Y','2025-10-23 00:00:00'),(76443,11,'XJ7ZW','Burns involving 30-39% of body surface','Y','2025-10-23 00:00:00'),(76442,11,'XJ5GA','Burns involving 20-29% of body surface','Y','2025-10-23 00:00:00'),(76441,11,'XJ257','Burns involving 10-19% of body surface','Y','2025-10-23 00:00:00'),(76440,11,'QD85','Burnout','Y','2025-10-23 00:00:00'),(76439,11,'XE7PM','Burning oil','Y','2025-10-23 00:00:00'),(76438,11,'ME65.0','Burning of skin','Y','2025-10-23 00:00:00'),(76437,11,'DA0F.0','Burning mouth syndrome','Y','2025-10-23 00:00:00'),(76436,11,'XE3K6','Burning gas, not elsewhere classified','Y','2025-10-23 00:00:00'),(76435,11,'ED31','Burning feet syndrome','Y','2025-10-23 00:00:00'),(76434,11,'ND95.1','Burn of wrist or hand, superficial partial thickness burn','Y','2025-10-23 00:00:00'),(76433,11,'ND95.3','Burn of wrist or hand, full thickness burn','Y','2025-10-23 00:00:00'),(76432,11,'ND95.0','Burn of wrist or hand, epidermal burn','Y','2025-10-23 00:00:00'),(76431,11,'ND95.2','Burn of wrist or hand, deep partial thickness burn','Y','2025-10-23 00:00:00'),(76430,11,'ND95.4','Burn of wrist or hand, deep full thickness or complex burn','Y','2025-10-23 00:00:00'),(76429,11,'ND95','Burn of wrist or hand','Y','2025-10-23 00:00:00'),(76428,11,'ND95.Z','Burn of wrist and hand, depth of burn unspecified','Y','2025-10-23 00:00:00'),(76427,11,'NE11','Burn of unspecified body region','Y','2025-10-23 00:00:00'),(76426,11,'ND92.1','Burn of trunk except perineum or genitalia, superficial partial thickness burn','Y','2025-10-23 00:00:00'),(76425,11,'ND92.3','Burn of trunk except perineum or genitalia, full thickness burn','Y','2025-10-23 00:00:00'),(76424,11,'ND92.0Z','Burn of trunk except perineum or genitalia, epidermal burn, unspecified','Y','2025-10-23 00:00:00'),(76423,11,'ND92.0','Burn of trunk except perineum or genitalia, epidermal burn','Y','2025-10-23 00:00:00'),(76422,11,'ND92.2','Burn of trunk except perineum or genitalia, deep partial thickness burn','Y','2025-10-23 00:00:00'),(76421,11,'ND92.4','Burn of trunk except perineum or genitalia, deep full thickness or complex burn','Y','2025-10-23 00:00:00'),(76420,11,'ND92','Burn of trunk except perineum or genitalia','Y','2025-10-23 00:00:00'),(76419,11,'ND92.Z','Burn of trunk except perineum and genitalia, depth of burn unspecified','Y','2025-10-23 00:00:00'),(76418,11,'ND94.1Z','Burn of shoulder or arm, except wrist or hand, superficial partial thickness burn, unspecified','Y','2025-10-23 00:00:00'),(76417,11,'ND94.1','Burn of shoulder or arm, except wrist or hand, superficial partial thickness burn','Y','2025-10-23 00:00:00'),(76416,11,'ND94.3','Burn of shoulder or arm, except wrist or hand, full thickness burn','Y','2025-10-23 00:00:00'),(76415,11,'ND94.0','Burn of shoulder or arm, except wrist or hand, epidermal burn','Y','2025-10-23 00:00:00'),(76414,11,'ND94.2Z','Burn of shoulder or arm, except wrist or hand, deep partial thickness burn, unspecified','Y','2025-10-23 00:00:00'),(76413,11,'ND94.2','Burn of shoulder or arm, except wrist or hand, deep partial thickness burn','Y','2025-10-23 00:00:00'),(76412,11,'ND94.4','Burn of shoulder or arm, except wrist or hand, deep full thickness or complex burn','Y','2025-10-23 00:00:00'),(76411,11,'ND94','Burn of shoulder or arm, except wrist or hand','Y','2025-10-23 00:00:00'),(76410,11,'ND94.Z','Burn of shoulder and arm except wrist and hand, depth of burn unspecified','Y','2025-10-23 00:00:00'),(76409,11,'NE01','Burn of respiratory tract','Y','2025-10-23 00:00:00'),(76408,11,'ND93.1','Burn of perineum or genitalia, superficial partial thickness burn','Y','2025-10-23 00:00:00'),(76407,11,'ND93.3','Burn of perineum or genitalia, full thickness burn','Y','2025-10-23 00:00:00'),(76406,11,'ND93.0','Burn of perineum or genitalia, epidermal burn','Y','2025-10-23 00:00:00'),(76405,11,'ND93.2','Burn of perineum or genitalia, deep partial thickness burn','Y','2025-10-23 00:00:00'),(76404,11,'ND93.4','Burn of perineum or genitalia, deep full thickness or complex burn','Y','2025-10-23 00:00:00'),(76403,11,'ND93','Burn of perineum or genitalia','Y','2025-10-23 00:00:00'),(76402,11,'ND93.Z','Burn of perineum and genitalia, depth of burn unspecified','Y','2025-10-23 00:00:00'),(76401,11,'NE02','Burn of other internal organs','Y','2025-10-23 00:00:00'),(76400,11,'ND96.1','Burn of hip or leg, except ankle or foot, superficial partial thickness burn','Y','2025-10-23 00:00:00'),(76399,11,'ND96.3','Burn of hip or leg, except ankle or foot, full thickness burn','Y','2025-10-23 00:00:00'),(76398,11,'ND96.0','Burn of hip or leg, except ankle or foot, epidermal burn','Y','2025-10-23 00:00:00'),(76397,11,'ND96.2','Burn of hip or leg, except ankle or foot, deep partial thickness burn','Y','2025-10-23 00:00:00'),(76396,11,'ND96.4','Burn of hip or leg, except ankle or foot, deep full thickness or complex burn','Y','2025-10-23 00:00:00'),(76395,11,'ND96','Burn of hip or leg, except ankle or foot','Y','2025-10-23 00:00:00'),(76394,11,'ND96.Z','Burn of hip and leg except ankle and foot, depth of burn unspecified','Y','2025-10-23 00:00:00'),(76393,11,'ND90.1','Burn of head or neck except face, superficial partial thickness burn','Y','2025-10-23 00:00:00'),(76392,11,'ND90.0','Burn of head or neck except face, epidermal burn','Y','2025-10-23 00:00:00'),(76391,11,'ND90.2','Burn of head or neck except face, deep partial thickness burn','Y','2025-10-23 00:00:00'),(76390,11,'ND90.4','Burn of head or neck except face, deep full thickness or complex burn','Y','2025-10-23 00:00:00'),(76389,11,'ND90','Burn of head or neck except face','Y','2025-10-23 00:00:00'),(76388,11,'ND90.3','Burn of head and neck except face, full thickness burn','Y','2025-10-23 00:00:00'),(76387,11,'ND90.Z','Burn of head and neck except face, depth of burn unspecified','Y','2025-10-23 00:00:00'),(76386,11,'ND94.20','Burn of forearm or elbow, deep partial thickness burn','Y','2025-10-23 00:00:00'),(76385,11,'ND94.10','Burn of forearm and elbow, superficial partial thickness burn','Y','2025-10-23 00:00:00'),(76384,11,'ND91.Z','Burn of face except eye, depth of burn unspecified','Y','2025-10-23 00:00:00'),(76383,11,'ND91.1','Burn of face except eye or ocular adnexa, superficial partial thickness burn','Y','2025-10-23 00:00:00'),(76382,11,'ND91.3','Burn of face except eye or ocular adnexa, full thickness burn','Y','2025-10-23 00:00:00'),(76381,11,'ND91.0','Burn of face except eye or ocular adnexa, epidermal burn','Y','2025-10-23 00:00:00'),(76380,11,'ND91.2','Burn of face except eye or ocular adnexa, deep partial thickness burn','Y','2025-10-23 00:00:00'),(76379,11,'ND91.4','Burn of face except eye or ocular adnexa, deep full thickness or complex burn','Y','2025-10-23 00:00:00'),(76378,11,'ND91','Burn of face except eye or ocular adnexa','Y','2025-10-23 00:00:00'),(76377,11,'NE00','Burn of eye or ocular adnexa','Y','2025-10-23 00:00:00'),(76376,11,'ND92.01','Burn of chest wall, epidermal burn','Y','2025-10-23 00:00:00'),(76375,11,'ND92.00','Burn of breast, epidermal burn','Y','2025-10-23 00:00:00'),(76374,11,'ND92.03','Burn of back, any part, epidermal burn','Y','2025-10-23 00:00:00'),(76373,11,'ND97.1','Burn of ankle or foot, superficial partial thickness burn','Y','2025-10-23 00:00:00'),(76372,11,'ND97.3','Burn of ankle or foot, full thickness burn','Y','2025-10-23 00:00:00'),(76371,11,'ND97.0','Burn of ankle or foot, epidermal burn','Y','2025-10-23 00:00:00'),(76370,11,'ND97.2','Burn of ankle or foot, deep partial thickness burn','Y','2025-10-23 00:00:00'),(76369,11,'ND97.4','Burn of ankle or foot, deep full thickness or complex burn','Y','2025-10-23 00:00:00'),(76368,11,'ND97','Burn of ankle or foot','Y','2025-10-23 00:00:00'),(76367,11,'ND97.Z','Burn of ankle and foot, depth of burn unspecified','Y','2025-10-23 00:00:00'),(76366,11,'ND92.02','Burn of abdominal wall, epidermal burn','Y','2025-10-23 00:00:00'),(76365,11,'EJ41.0','Burn from exposure to therapeutic ultraviolet radiation','Y','2025-10-23 00:00:00'),(76364,11,'EJ41.Z','Burn from exposure to artificial source of ultraviolet radiation, unspecified','Y','2025-10-23 00:00:00'),(76363,11,'EJ41','Burn from exposure to artificial source of ultraviolet radiation','Y','2025-10-23 00:00:00'),(76362,11,'PL11.1','Burn arising during procedure, as mode of injury or harm','Y','2025-10-23 00:00:00'),(76361,11,'XH8NN2','Burkitt-like lymphoma with 11q aberration','Y','2025-10-23 00:00:00'),(76360,11,'XH0H23','Burkitt-like lymphoma','Y','2025-10-23 00:00:00'),(76359,11,'XH4KA9','Burkitt lymphoma, NOS','Y','2025-10-23 00:00:00'),(76358,11,'2A85.6','Burkitt lymphoma including Burkitt leukaemia','Y','2025-10-23 00:00:00'),(76357,11,'XH6B12','Burkitt cell leukaemia','Y','2025-10-23 00:00:00'),(76356,11,'XN3LD','Burkholderia pseudomallei','Y','2025-10-23 00:00:00'),(76355,11,'XN6Y3','Burkholderia mallei','Y','2025-10-23 00:00:00'),(76353,11,'XM5R07','Burimamide','Y','2025-10-23 00:00:00'),(76354,11,'XN01M','Burkholderia','Y','2025-10-23 00:00:00'),(76352,11,'XM03E6','Bupropion','Y','2025-10-23 00:00:00'),(76351,11,'XM9Z94','Buprenorphine','Y','2025-10-23 00:00:00'),(76350,11,'XM9RX1','Bupranolol','Y','2025-10-23 00:00:00'),(76349,11,'XM46M2','Bupivacaine spinal','Y','2025-10-23 00:00:00'),(76348,11,'XM4216','Bupivacaine nerve block','Y','2025-10-23 00:00:00'),(76346,11,'XM5YL1','Bupivacaine','Y','2025-10-23 00:00:00'),(76347,11,'XM7WQ7','Bupivacaine infiltration','Y','2025-10-23 00:00:00'),(76345,11,'LA10.2','Buphthalmos','Y','2025-10-23 00:00:00'),(76344,11,'XN7S5','Bunyavirus','Y','2025-10-23 00:00:00'),(76343,11,'XE86G','Bunk bed','Y','2025-10-23 00:00:00'),(76342,11,'XM8026','Bunitrolol','Y','2025-10-23 00:00:00'),(76341,11,'XA7J11','Bundle of His','Y','2025-10-23 00:00:00'),(76340,11,'1D60.00','Bundibugyo virus disease','Y','2025-10-23 00:00:00'),(76338,11,'XM6MJ9','Bunazosin','Y','2025-10-23 00:00:00'),(76339,11,'XN8JT','Bundibugyo virus','Y','2025-10-23 00:00:00'),(76336,11,'XM56N7','Bunaftine','Y','2025-10-23 00:00:00'),(76337,11,'XM80W7','Bunamiodyl','Y','2025-10-23 00:00:00'),(76335,11,'XM6MV2','Bumetanide','Y','2025-10-23 00:00:00'),(76334,11,'XM0NK4','Bumblebee venom','Y','2025-10-23 00:00:00'),(76333,11,'XM6KJ8','Bumadizone','Y','2025-10-23 00:00:00'),(76332,11,'EB41.0','Bullous pemphigoid','Y','2025-10-23 00:00:00'),(76331,11,'9A78.20','Bullous keratopathy','Y','2025-10-23 00:00:00'),(76330,11,'EK50.01','Bullous insect bite reaction','Y','2025-10-23 00:00:00'),(76329,11,'1B72.0','Bullous impetigo','Y','2025-10-23 00:00:00'),(76328,11,'9D20','Bullous aphakic keratopathy following cataract surgery','Y','2025-10-23 00:00:00'),(76327,11,'XE4KC','Bullet, pellet','Y','2025-10-23 00:00:00'),(76326,11,'XM02L8','Bullet ant venom','Y','2025-10-23 00:00:00'),(76325,11,'XM4CP1','Bull ant venom','Y','2025-10-23 00:00:00'),(76324,11,'XM42M0','Bulk-forming laxatives','Y','2025-10-23 00:00:00'),(76323,11,'XD8DR8','Bulk steam sterilizing units','Y','2025-10-23 00:00:00'),(76322,11,'XM21B3','Bulk filler cathartic','Y','2025-10-23 00:00:00'),(76320,11,'XA15H4','Bulbospongiosus tendon','Y','2025-10-23 00:00:00'),(76321,11,'6B81','Bulimia Nervosa','Y','2025-10-23 00:00:00'),(76319,11,'XA2E07','Bulbospongiosus muscle','Y','2025-10-23 00:00:00'),(76318,11,'XA54B9','Bulbar nuclei','Y','2025-10-23 00:00:00'),(76317,11,'XA6V06','Bulbar conjunctiva','Y','2025-10-23 00:00:00'),(76316,11,'XE5G9','Bulb component of medical device','Y','2025-10-23 00:00:00'),(76315,11,'XE1B2','Built-in barbecue','Y','2025-10-23 00:00:00'),(76314,11,'XE11T','Building under construction','Y','2025-10-23 00:00:00'),(76313,11,'XE1P6','Building fitting','Y','2025-10-23 00:00:00'),(76312,11,'XM1QL3','Bufylline','Y','2025-10-23 00:00:00'),(76311,11,'XM2351','Bufrolin','Y','2025-10-23 00:00:00'),(76310,11,'XM9WX3','Bufotenine','Y','2025-10-23 00:00:00'),(76309,11,'XM6EJ2','Buformin','Y','2025-10-23 00:00:00'),(76308,11,'XM3B71','Buflomedil','Y','2025-10-23 00:00:00'),(76307,11,'XN3Y3','Buffalopox virus','Y','2025-10-23 00:00:00'),(76306,11,'1E74','Buffalopox','Y','2025-10-23 00:00:00'),(76304,11,'XM7AB1','Bufexamac','Y','2025-10-23 00:00:00'),(76305,11,'XE96F','Buffalo, bison, African buffalo','Y','2025-10-23 00:00:00'),(76303,11,'XM5E71','Budralazine','Y','2025-10-23 00:00:00'),(76302,11,'XM0K96','Budipine','Y','2025-10-23 00:00:00'),(76301,11,'XM3UP9','Budesonide','Y','2025-10-23 00:00:00'),(76299,11,'XM0YT9','Buclosamide','Y','2025-10-23 00:00:00'),(76300,11,'DB98.5','Budd-Chiari syndrome','Y','2025-10-23 00:00:00'),(76297,11,'XM4BC1','Bucladesine','Y','2025-10-23 00:00:00'),(76298,11,'XM8GH2','Buclizine','Y','2025-10-23 00:00:00'),(76296,11,'XJ76E','Buckle fracture','Y','2025-10-23 00:00:00'),(76295,11,'XE383','Bucket, pail','Y','2025-10-23 00:00:00'),(76294,11,'XJ2EL','Bucket handle or corner fracture','Y','2025-10-23 00:00:00'),(76293,11,'XM0VQ7','Bucillamine','Y','2025-10-23 00:00:00'),(76291,11,'XA5SG1','Buccinator vein','Y','2025-10-23 00:00:00'),(76292,11,'XM7HP8','Bucetin','Y','2025-10-23 00:00:00'),(76290,11,'XA3163','Buccinator tendon','Y','2025-10-23 00:00:00'),(76288,11,'XA1SG7','Buccinator lymph node','Y','2025-10-23 00:00:00'),(76289,11,'XA8GG0','Buccinator muscle','Y','2025-10-23 00:00:00'),(76287,11,'XA6DE2','Buccal surface of tooth','Y','2025-10-23 00:00:00'),(76286,11,'XA6A73','Buccal sulcus','Y','2025-10-23 00:00:00'),(76285,11,'XA7UK9','Buccal nerve','Y','2025-10-23 00:00:00'),(76284,11,'XA8WB3','Buccal mucosa','Y','2025-10-23 00:00:00'),(76283,11,'XA3A57','Buccal branch of the facial nerve','Y','2025-10-23 00:00:00'),(76282,11,'XA0LK0','Buccal artery','Y','2025-10-23 00:00:00'),(76281,11,'1B93.0','Bubonic plague','Y','2025-10-23 00:00:00'),(76280,11,'XE5Q2','Bubble sensor component of medical device','Y','2025-10-23 00:00:00'),(76279,11,'XM4KW6','b-sitosterol (s)','Y','2025-10-23 00:00:00'),(76278,11,'XM9N98','Bryonia','Y','2025-10-23 00:00:00'),(76277,11,'XE0AX','Brushing component of medical device','Y','2025-10-23 00:00:00'),(76276,11,'XE5YT','Brush component of medical device','Y','2025-10-23 00:00:00'),(76275,11,'XM0CW7','Bruno','Y','2025-10-23 00:00:00'),(76274,11,'KA42.0','Bruising of scalp due to birth injury','Y','2025-10-23 00:00:00'),(76273,11,'XN80F','Brugia timori','Y','2025-10-23 00:00:00'),(76272,11,'XN5RM','Brugia malayi','Y','2025-10-23 00:00:00'),(76271,11,'XN0JL','Brugia','Y','2025-10-23 00:00:00'),(76270,11,'BC65.1','Brugada syndrome','Y','2025-10-23 00:00:00'),(76269,11,'XM7134','Brucine','Y','2025-10-23 00:00:00'),(76268,11,'XM7PB3','Brucellosis vaccines','Y','2025-10-23 00:00:00'),(76267,11,'1B95','Brucellosis','Y','2025-10-23 00:00:00'),(76266,11,'XN3UP','Brucella suis','Y','2025-10-23 00:00:00'),(76265,11,'XN7ZW','Brucella melitensis','Y','2025-10-23 00:00:00'),(76264,11,'XN84J','Brucella canis','Y','2025-10-23 00:00:00'),(76263,11,'XM7RX8','Brucella antigen vaccines','Y','2025-10-23 00:00:00'),(76262,11,'XN7A8','Brucella abortus','Y','2025-10-23 00:00:00'),(76261,11,'XN22N','Brucella','Y','2025-10-23 00:00:00'),(76260,11,'XM0WW2','Bruceine','Y','2025-10-23 00:00:00'),(76259,11,'XM2BX6','Brucea javanica plant','Y','2025-10-23 00:00:00'),(76258,11,'XM5MW6','Broxyquinoline','Y','2025-10-23 00:00:00'),(76257,11,'XM3HR8','Broxuridine','Y','2025-10-23 00:00:00'),(76256,11,'XM05Y4','Broxaterol','Y','2025-10-23 00:00:00'),(76255,11,'NA91.4','Brown-Sequard syndrome of thoracic spinal cord','Y','2025-10-23 00:00:00'),(76254,11,'NB62.4','Brown-Sequard syndrome of lumbar spinal cord','Y','2025-10-23 00:00:00'),(76253,11,'NA31.4','Brown-Sequard syndrome of cervical spinal cord','Y','2025-10-23 00:00:00'),(76252,11,'XM9Z42','Brown widow spider venom','Y','2025-10-23 00:00:00'),(76251,11,'XM2RM6','Brown recluse spider venom','Y','2025-10-23 00:00:00'),(76250,11,'XM3J29','Brown dog tick venom','Y','2025-10-23 00:00:00'),(76249,11,'XM3FH5','Brovincamine','Y','2025-10-23 00:00:00'),(76248,11,'XM2S43','Brotizolam','Y','2025-10-23 00:00:00'),(76247,11,'XA61M6','Bronchus','Y','2025-10-23 00:00:00'),(76246,11,'4A80.1','Bronchospasm provoked by allergy to food substance','Y','2025-10-23 00:00:00'),(76245,11,'XA96Z0','Bronchopulmonary lymph node','Y','2025-10-23 00:00:00'),(76244,11,'KB29.0','Bronchopulmonary dysplasia originating in the perinatal period','Y','2025-10-23 00:00:00'),(76243,11,'XA94Z9','Bronchomediastinal trunk','Y','2025-10-23 00:00:00'),(76242,11,'CA20.Z','Bronchitis, unspecified','Y','2025-10-23 00:00:00'),(76241,11,'CA81.0','Bronchitis or pneumonitis due to chemicals, gases, fumes or vapours','Y','2025-10-23 00:00:00'),(76240,11,'CA20','Bronchitis','Y','2025-10-23 00:00:00'),(76238,11,'XA5437','Bronchioles','Y','2025-10-23 00:00:00'),(76239,11,'XH2035','Bronchiolo-alveolar carcinoma, nonmucinous','Y','2025-10-23 00:00:00'),(76237,11,'XH7743','Bronchiolar adenoma / Ciliated muconodular papillary tumour','Y','2025-10-23 00:00:00'),(76236,11,'CA24','Bronchiectasis','Y','2025-10-23 00:00:00'),(76235,11,'XA1GY9','Bronchial vein','Y','2025-10-23 00:00:00'),(76234,11,'XA6E07','Bronchial artery','Y','2025-10-23 00:00:00'),(76233,11,'XH81Q9','Bronchial adenoma, cylindroid','Y','2025-10-23 00:00:00'),(76232,11,'XH2ZA2','Bronchial adenoma, carcinoid','Y','2025-10-23 00:00:00'),(76230,11,'XM5PK9','Brompheniramine','Y','2025-10-23 00:00:00'),(76231,11,'XM0L99','Bromural','Y','2025-10-23 00:00:00'),(76229,11,'XM4QG3','Bromperidol','Y','2025-10-23 00:00:00'),(76228,11,'XM2RT5','Bromoxynil','Y','2025-10-23 00:00:00'),(76227,11,'XM4T97','Bromo-seltzer','Y','2025-10-23 00:00:00'),(76226,11,'XM3307','Bromosalicylhydroxamic acid','Y','2025-10-23 00:00:00'),(76225,11,'XM84D8','Bromosalicylchloranitide','Y','2025-10-23 00:00:00'),(76224,11,'XM2Q19','Bromopride','Y','2025-10-23 00:00:00'),(76223,11,'XM9Y95','Bromophenol blue reagent','Y','2025-10-23 00:00:00'),(76222,11,'XM7XH5','Bromoform','Y','2025-10-23 00:00:00'),(76221,11,'XM5QR9','Bromocriptine','Y','2025-10-23 00:00:00'),(76220,11,'XM7CT0','Bromochlorosalicylanilide','Y','2025-10-23 00:00:00'),(76219,11,'XM9FN5','Bromobenzylcyanide','Y','2025-10-23 00:00:00'),(76218,11,'XM14P7','Bromisovalum','Y','2025-10-23 00:00:00'),(76217,11,'XM3260','Bromisoval','Y','2025-10-23 00:00:00'),(76216,11,'XM3GS6','Bromine vapor','Y','2025-10-23 00:00:00'),(76215,11,'XM0JD2','Bromine sedative','Y','2025-10-23 00:00:00'),(76214,11,'XM16D8','Bromine compounds (medicinal)','Y','2025-10-23 00:00:00'),(76213,11,'XM54A7','Bromindione','Y','2025-10-23 00:00:00'),(76212,11,'XM44G1','Bromides','Y','2025-10-23 00:00:00'),(76211,11,'XM93J2','Bromide salts','Y','2025-10-23 00:00:00'),(76210,11,'XM8CT0','Bromhexine','Y','2025-10-23 00:00:00'),(76209,11,'XM0QS2','Bromfenac','Y','2025-10-23 00:00:00'),(76208,11,'XM3QV7','Bromethalin','Y','2025-10-23 00:00:00'),(76207,11,'XM6F64','Bromelains','Y','2025-10-23 00:00:00'),(76205,11,'XM9JC7','Bromazepam','Y','2025-10-23 00:00:00'),(76206,11,'XM1TL5','Bromazine','Y','2025-10-23 00:00:00'),(76204,11,'XM2S35','Bromal (hydrate)','Y','2025-10-23 00:00:00'),(76203,11,'XM7RU0','Bromadiolone','Y','2025-10-23 00:00:00'),(76201,11,'XM4YB5','Brodimoprim','Y','2025-10-23 00:00:00'),(76202,11,'XA5TY2','Brodmann area','Y','2025-10-23 00:00:00'),(76199,11,'XM6601','Brodalumab','Y','2025-10-23 00:00:00'),(76200,11,'XM7138','Brodifacoum','Y','2025-10-23 00:00:00'),(76198,11,'XA0EJ9','Broad ligament of the uterus','Y','2025-10-23 00:00:00'),(76196,11,'XM78C3','Brivaracetam','Y','2025-10-23 00:00:00'),(76197,11,'XM5L76','Brivudine','Y','2025-10-23 00:00:00'),(76194,11,'XM9GB8','Brinzolamide','Y','2025-10-23 00:00:00'),(76195,11,'XM56D3','Brittle star venom','Y','2025-10-23 00:00:00'),(76193,11,'XM4CD1','Brincidofovir','Y','2025-10-23 00:00:00'),(76192,11,'XM77L2','Brinase','Y','2025-10-23 00:00:00'),(76191,11,'XM14H0','Brimonidine ophthalmic preparation','Y','2025-10-23 00:00:00'),(76189,11,'XM2DD8','Brigatinib','Y','2025-10-23 00:00:00'),(76190,11,'XM1A95','Brimonidine','Y','2025-10-23 00:00:00'),(76188,11,'XE6MG','Brick, concrete, concrete block','Y','2025-10-23 00:00:00'),(76186,11,'XM8504','Brexpiprazole','Y','2025-10-23 00:00:00'),(76187,11,'XM5JM2','Briakinumab','Y','2025-10-23 00:00:00'),(76184,11,'XM3ZG2','Bretylium tosilate','Y','2025-10-23 00:00:00'),(76185,11,'XM9CB4','Brevital sodium','Y','2025-10-23 00:00:00'),(76182,11,'XH5DX3','Brenner tumour, NOS','Y','2025-10-23 00:00:00'),(76183,11,'XM5VT7','Brentuximab vedotin','Y','2025-10-23 00:00:00'),(76181,11,'XH6NJ7','Brenner tumour, malignant','Y','2025-10-23 00:00:00'),(76180,11,'XH2CH8','Brenner tumour, borderline malignancy','Y','2025-10-23 00:00:00'),(76179,11,'JB23.0','Breech extraction','Y','2025-10-23 00:00:00'),(76178,11,'XE0C3','Breathing circuit component of medical device','Y','2025-10-23 00:00:00'),(76177,11,'MD11.3','Breath holding','Y','2025-10-23 00:00:00'),(76176,11,'MF31','Breast or lactation symptom or complaint','Y','2025-10-23 00:00:00'),(76175,11,'MF30','Breast lump or mass female','Y','2025-10-23 00:00:00'),(76173,11,'XH05D8','Breast implant-associated anaplastic large cell lymphoma','Y','2025-10-23 00:00:00'),(76174,11,'SC24','Breast lump disorder (TM1)','Y','2025-10-23 00:00:00'),(76171,11,'LB60','Breast aplasia','Y','2025-10-23 00:00:00'),(76172,11,'KC41.0','Breast engorgement of newborn','Y','2025-10-23 00:00:00'),(76168,11,'XE8D2','Break','Y','2025-10-23 00:00:00'),(76169,11,'XA12C1','Breast','Y','2025-10-23 00:00:00'),(76170,11,'GB21.0','Breast abscess','Y','2025-10-23 00:00:00'),(76167,11,'XM2HW7','Brazilian yellow scorpion venom','Y','2025-10-23 00:00:00'),(76164,11,'XA60Q5','Branchial cleft','Y','2025-10-23 00:00:00'),(76165,11,'XM4DZ8','Brass','Y','2025-10-23 00:00:00'),(76166,11,'1C18','Brazilian purpuric fever','Y','2025-10-23 00:00:00'),(76162,11,'XA4TH8','Branches to','Y','2025-10-23 00:00:00'),(76163,11,'XA4KE1','Branches to','Y','2025-10-23 00:00:00'),(76160,11,'XA91T8','Branches to the','Y','2025-10-23 00:00:00'),(76161,11,'XA8BY2','Branches to','Y','2025-10-23 00:00:00'),(76159,11,'XA1PX4','Branches to lower part of the','Y','2025-10-23 00:00:00'),(76157,11,'XE50M','Branch or stick, separate from branch or tree','Y','2025-10-23 00:00:00'),(76158,11,'XA5RC6','Branch to','Y','2025-10-23 00:00:00'),(76156,11,'XA7WF1','Branch of the medial superior genicular artery to','Y','2025-10-23 00:00:00'),(76155,11,'XA2DD1','Branch of the medial superior genicular artery to surface of the femur and the knee-joint','Y','2025-10-23 00:00:00'),(76154,11,'XA42R8','Branch of the medial inferior genicular artery to','Y','2025-10-23 00:00:00'),(76153,11,'XM9281','Bran (wheat)','Y','2025-10-23 00:00:00'),(76152,11,'XM50Q3','Brallobarbital','Y','2025-10-23 00:00:00'),(76151,11,'XM99B7','Brake fluid, not elsewhere classified','Y','2025-10-23 00:00:00'),(76150,11,'XM8TE5','Brake fluid vapor','Y','2025-10-23 00:00:00'),(76149,11,'8B26.0','Brainstem stroke syndrome','Y','2025-10-23 00:00:00'),(76148,11,'8B81.0','Brainstem lesion','Y','2025-10-23 00:00:00'),(76147,11,'8B00.2','Brainstem haemorrhage','Y','2025-10-23 00:00:00'),(76146,11,'XA8AT9','Brainstem','Y','2025-10-23 00:00:00'),(76145,11,'CB04.5','Brain-lung-thyroid syndrome','Y','2025-10-23 00:00:00'),(76144,11,'SD4Z','Brain system disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(76143,11,'8E61.0','Brain irradiation','Y','2025-10-23 00:00:00'),(76141,11,'MH10','Brain death','Y','2025-10-23 00:00:00'),(76142,11,'8D60.0','Brain herniation syndromes','Y','2025-10-23 00:00:00'),(76139,11,'XA9738','Brain','Y','2025-10-23 00:00:00'),(76140,11,'LA05.7','Brain cystic malformations','Y','2025-10-23 00:00:00'),(76138,11,'MB23.3','Bradyphrenia','Y','2025-10-23 00:00:00'),(76137,11,'MC82.1','Bradycardic cardiac arrest','Y','2025-10-23 00:00:00'),(76136,11,'MC81.1','Bradycardia, unspecified','Y','2025-10-23 00:00:00'),(76134,11,'LB75.1','Brachydactyly of toes','Y','2025-10-23 00:00:00'),(76135,11,'LB75.Z','Brachydactyly, unspecified','Y','2025-10-23 00:00:00'),(76133,11,'LB75.0','Brachydactyly of fingers','Y','2025-10-23 00:00:00'),(76132,11,'LB75','Brachydactyly','Y','2025-10-23 00:00:00'),(76131,11,'XA3YY6','Brachioradialis tendon','Y','2025-10-23 00:00:00'),(76130,11,'XA2ZN1','Brachioradialis muscle','Y','2025-10-23 00:00:00'),(76129,11,'XA57F8','Brachiocephalic vein','Y','2025-10-23 00:00:00'),(76128,11,'XA2KA0','Brachiocephalic trunk','Y','2025-10-23 00:00:00'),(76127,11,'XA9G06','Brachialis tendon','Y','2025-10-23 00:00:00'),(76126,11,'XA6CR7','Brachialis muscle','Y','2025-10-23 00:00:00'),(76125,11,'XA43Q5','Brachial vein','Y','2025-10-23 00:00:00'),(76124,11,'KA44.1Z','Brachial plexus palsy in newborn, unspecified','Y','2025-10-23 00:00:00'),(76123,11,'KA44.1','Brachial plexus palsy in newborn','Y','2025-10-23 00:00:00'),(76122,11,'8B91.Z','Brachial plexus disorders, unspecified','Y','2025-10-23 00:00:00'),(76121,11,'8B91','Brachial plexus disorders','Y','2025-10-23 00:00:00'),(76120,11,'XA22K9','Brachial plexus','Y','2025-10-23 00:00:00'),(76119,11,'XA1138','Brachial artery','Y','2025-10-23 00:00:00'),(76117,11,'XN4UD','BQ.1','Y','2025-10-23 00:00:00'),(76118,11,'XK62','Brachial','Y','2025-10-23 00:00:00'),(76116,11,'XM2YA1','Box turtle seafood poison','Y','2025-10-23 00:00:00'),(76115,11,'XE5N6','Box or carton containing food or drink','Y','2025-10-23 00:00:00'),(76114,11,'XM4057','Box jellyfish venom','Y','2025-10-23 00:00:00'),(76113,11,'2E64.00','Bowen disease of skin','Y','2025-10-23 00:00:00'),(76112,11,'XH2NM8','Bowen disease','Y','2025-10-23 00:00:00'),(76111,11,'XE9CT','Bow, arrow, crossbow bolt, crossbow, not elsewhere classified','Y','2025-10-23 00:00:00'),(76109,11,'1A11.Z','Botulism, unspecified','Y','2025-10-23 00:00:00'),(76110,11,'XN7JF','bovine papular stomatitis virus','Y','2025-10-23 00:00:00'),(76108,11,'1A11','Botulism','Y','2025-10-23 00:00:00'),(76107,11,'XM9M51','Botulinum toxin','Y','2025-10-23 00:00:00'),(76106,11,'XM0AD6','Botulinum antitoxin','Y','2025-10-23 00:00:00'),(76105,11,'XE7G4','Bottle component of medical device','Y','2025-10-23 00:00:00'),(76104,11,'XM82K6','Botox','Y','2025-10-23 00:00:00'),(76103,11,'XC5K','Both pupils react','Y','2025-10-23 00:00:00'),(76102,11,'XA3BZ3','Both large and small joints','Y','2025-10-23 00:00:00'),(76101,11,'XM60L5','Bosutinib','Y','2025-10-23 00:00:00'),(76100,11,'XM4KA3','Bosentan','Y','2025-10-23 00:00:00'),(76099,11,'XM5Z86','Bortezomib','Y','2025-10-23 00:00:00'),(76098,11,'XN140','Borrelia vincentii','Y','2025-10-23 00:00:00'),(76097,11,'XN5R4','Borrelia recurrentis','Y','2025-10-23 00:00:00'),(76096,11,'XN6VH','Borrelia parkeri','Y','2025-10-23 00:00:00'),(76095,11,'XN2P3','Borrelia miyamotoi','Y','2025-10-23 00:00:00'),(76094,11,'XN3PD','Borrelia hermsii','Y','2025-10-23 00:00:00'),(76093,11,'XN4VZ','Borrelia garinii','Y','2025-10-23 00:00:00'),(76092,11,'XN13C','Borrelia Burgdorferi','Y','2025-10-23 00:00:00'),(76091,11,'XN7GL','Borrelia afzelii','Y','2025-10-23 00:00:00'),(76090,11,'XN2DX','Borrelia','Y','2025-10-23 00:00:00'),(76089,11,'XM5AP1','Boron trifluoride','Y','2025-10-23 00:00:00'),(76088,11,'XM3FZ9','Boron hydride','Y','2025-10-23 00:00:00'),(76087,11,'XM2BF4','Boron','Y','2025-10-23 00:00:00'),(76086,11,'XN5VM','Bornavirus','Y','2025-10-23 00:00:00'),(76085,11,'XM8T72','Bornaprine','Y','2025-10-23 00:00:00'),(76084,11,'XN395','Borna disease virus 1','Y','2025-10-23 00:00:00'),(76083,11,'XM5RT8','Boric acid','Y','2025-10-23 00:00:00'),(76082,11,'XN23B','Bordetella pertussis','Y','2025-10-23 00:00:00'),(76081,11,'XN7LQ','Bordetella parapertussis','Y','2025-10-23 00:00:00'),(76079,11,'XN9W3','Bordetella','Y','2025-10-23 00:00:00'),(76080,11,'XN173','Bordetella bronchiseptica','Y','2025-10-23 00:00:00'),(76078,11,'6D11.5','Borderline pattern','Y','2025-10-23 00:00:00'),(76077,11,'XA4DB6','Border of tongue','Y','2025-10-23 00:00:00'),(76076,11,'XM6TA8','Bordeaux mixture','Y','2025-10-23 00:00:00'),(76075,11,'XM8X28','Borate nonmedicinal','Y','2025-10-23 00:00:00'),(76074,11,'XM83G3','Borate buffer','Y','2025-10-23 00:00:00'),(76073,11,'XM8QL6','Borane complex','Y','2025-10-23 00:00:00'),(76072,11,'XM79L8','Bopindolol','Y','2025-10-23 00:00:00'),(76071,11,'XM0RN4','Boomslang snake venom','Y','2025-10-23 00:00:00'),(76070,11,'ME92.1','Bony erosion','Y','2025-10-23 00:00:00'),(76069,11,'9A24.Z','Bony deformity of orbit, unspecified','Y','2025-10-23 00:00:00'),(76068,11,'9A24','Bony deformity of orbit','Y','2025-10-23 00:00:00'),(76067,11,'XA7R53','Bones of the upper extremity','Y','2025-10-23 00:00:00'),(76066,11,'XA5VB6','Bones of the thorax','Y','2025-10-23 00:00:00'),(76065,11,'XA2AL0','Bones of the shoulder girdle','Y','2025-10-23 00:00:00'),(76064,11,'XA4N47','Bones of the pelvis','Y','2025-10-23 00:00:00'),(76063,11,'XA2T04','Bones of the lower extremity','Y','2025-10-23 00:00:00'),(76062,11,'XA4RY5','Bones of the head','Y','2025-10-23 00:00:00'),(76061,11,'XA6EQ1','Bones of middle ear','Y','2025-10-23 00:00:00'),(76060,11,'SC6Z','Bone, joint and muscle system disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(76059,11,'XA0UK0','Bone tissue','Y','2025-10-23 00:00:00'),(76058,11,'XA95Q5','Bone of thumb, not elsewhere classified','Y','2025-10-23 00:00:00'),(76057,11,'XA5D87','Bone of finger, not elsewhere classified','Y','2025-10-23 00:00:00'),(76056,11,'XA43L9','Bone of ankle','Y','2025-10-23 00:00:00'),(76055,11,'XM44A4','Bone meal','Y','2025-10-23 00:00:00'),(76054,11,'QB21','Bone marrow donor','Y','2025-10-23 00:00:00'),(76053,11,'PK81.4','Bone marrow aspiration or biopsy associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(76052,11,'XA9XK1','Bone marrow','Y','2025-10-23 00:00:00'),(76051,11,'FB86.1Z','Bone hyperplasias, unspecified','Y','2025-10-23 00:00:00'),(76050,11,'FB86.1','Bone hyperplasias','Y','2025-10-23 00:00:00'),(76049,11,'LD24.E','Bone dysplasias with multiple joint dislocations','Y','2025-10-23 00:00:00'),(76048,11,'LD24.1Z','Bone diseases with increased bone density, unspecified','Y','2025-10-23 00:00:00'),(76047,11,'LD24.1','Bone diseases with increased bone density','Y','2025-10-23 00:00:00'),(76046,11,'LD24.2Z','Bone diseases with disorganised development of skeletal components, unspecified','Y','2025-10-23 00:00:00'),(76045,11,'LD24.2','Bone diseases with disorganised development of skeletal components','Y','2025-10-23 00:00:00'),(76044,11,'XE4V8','Bolt fastner component of medical device','Y','2025-10-23 00:00:00'),(76043,11,'1D61.1','Bolivian haemorrhagic fever','Y','2025-10-23 00:00:00'),(76042,11,'XE4WG','Boiling water other than tap water','Y','2025-10-23 00:00:00'),(76041,11,'6B25.Z','Body-focused repetitive behaviour disorders, unspecified','Y','2025-10-23 00:00:00'),(76040,11,'6B25','Body-focused repetitive behaviour disorders','Y','2025-10-23 00:00:00'),(76039,11,'XE8W8','Body powder, talc','Y','2025-10-23 00:00:00'),(76038,11,'XE7DF','Body or facial cream or lotion','Y','2025-10-23 00:00:00'),(76037,11,'XE40U','Body of water, water reservoir','Y','2025-10-23 00:00:00'),(76036,11,'XE57J','Body of water, swamp, marsh, estuary','Y','2025-10-23 00:00:00'),(76035,11,'XE1CZ','Body of water, river, stream','Y','2025-10-23 00:00:00'),(76034,11,'XE64D','Body of water, puddle','Y','2025-10-23 00:00:00'),(76033,11,'XE5N4','Body of water, open sea','Y','2025-10-23 00:00:00'),(76032,11,'XE9TJ','Body of water, man-made well, dug well for underground water','Y','2025-10-23 00:00:00'),(76031,11,'XE0CX','Body of water, flood water','Y','2025-10-23 00:00:00'),(76029,11,'XE2QX','Body of water, canal or irrigation channel','Y','2025-10-23 00:00:00'),(76030,11,'XE285','Body of water, dam, lake','Y','2025-10-23 00:00:00'),(76028,11,'XE636','Body of water, beach, seashore','Y','2025-10-23 00:00:00'),(76027,11,'XE7K9','Body of water','Y','2025-10-23 00:00:00'),(76025,11,'XA8Q87','Body of tongue','Y','2025-10-23 00:00:00'),(76026,11,'XA1401','Body of twelfth thoracic vertebra','Y','2025-10-23 00:00:00'),(76024,11,'XA35A0','Body of third thoracic vertebra','Y','2025-10-23 00:00:00'),(76023,11,'XA0TL0','Body of third lumbar vertebra','Y','2025-10-23 00:00:00'),(76022,11,'XA4UV1','Body of third cervical vertebra','Y','2025-10-23 00:00:00'),(76021,11,'XA6VP6','Body of tenth thoracic vertebra','Y','2025-10-23 00:00:00'),(76020,11,'XA3M45','Body of sternum','Y','2025-10-23 00:00:00'),(76019,11,'XA0YY2','Body of sixth thoracic vertebra','Y','2025-10-23 00:00:00'),(76018,11,'XA9Q12','Body of sixth cervical vertebra','Y','2025-10-23 00:00:00'),(76017,11,'XA62Y3','Body of seventh thoracic vertebra','Y','2025-10-23 00:00:00'),(76016,11,'XA1JS3','Body of seventh cervical vertebra','Y','2025-10-23 00:00:00'),(76015,11,'XA3Z42','Body of second thoracic vertebra','Y','2025-10-23 00:00:00'),(76014,11,'XA5079','Body of second lumbar vertebra','Y','2025-10-23 00:00:00'),(76013,11,'XA9A26','Body of penis','Y','2025-10-23 00:00:00'),(76012,11,'XA6ZE4','Body of pancreas','Y','2025-10-23 00:00:00'),(76011,11,'XA2X21','Body of ninth thoracic vertebra','Y','2025-10-23 00:00:00'),(76010,11,'XA3J42','Body of fourth thoracic vertebra','Y','2025-10-23 00:00:00'),(76009,11,'XA4145','Body of fourth lumbar vertebra','Y','2025-10-23 00:00:00'),(76008,11,'XA3GT0','Body of fourth cervical vertebra','Y','2025-10-23 00:00:00'),(76007,11,'XA8PH0','Body of first thoracic vertebra','Y','2025-10-23 00:00:00'),(76006,11,'XA9E61','Body of first lumbar vertebra','Y','2025-10-23 00:00:00'),(76005,11,'XA8W59','Body of fifth thoracic vertebra','Y','2025-10-23 00:00:00'),(76004,11,'XA5886','Body of fifth lumbar vertebra','Y','2025-10-23 00:00:00'),(76003,11,'XA1BS2','Body of fifth cervical vertebra','Y','2025-10-23 00:00:00'),(76002,11,'XA91J0','Body of eleventh thoracic vertebra','Y','2025-10-23 00:00:00'),(76001,11,'XA5JX9','Body of eighth thoracic vertebra','Y','2025-10-23 00:00:00'),(76000,11,'6C21','Body integrity dysphoria','Y','2025-10-23 00:00:00'),(75999,11,'XA1WH2','Body hair','Y','2025-10-23 00:00:00'),(75998,11,'XA06R8','Body fluid','Y','2025-10-23 00:00:00'),(75997,11,'6B21.Z','Body dysmorphic disorder, unspecified','Y','2025-10-23 00:00:00'),(75996,11,'6B21.1','Body dysmorphic disorder with poor to absent insight','Y','2025-10-23 00:00:00'),(75995,11,'6B21.0','Body dysmorphic disorder with fair to good insight','Y','2025-10-23 00:00:00'),(75994,11,'6B21','Body dysmorphic disorder','Y','2025-10-23 00:00:00'),(75993,11,'SF4Z','Body constituents patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(75992,11,'6C20.Z','Bodily distress disorder, unspecified','Y','2025-10-23 00:00:00'),(75991,11,'6C20','Bodily distress disorder','Y','2025-10-23 00:00:00'),(75990,11,'XM07W4','Boceprevir','Y','2025-10-23 00:00:00'),(75989,11,'XN447','Bocaparvovirus','Y','2025-10-23 00:00:00'),(75988,11,'XE85T','Boating sports','Y','2025-10-23 00:00:00'),(75987,11,'XE6X4','Boarding house or hotel','Y','2025-10-23 00:00:00'),(75986,11,'XE9DY','Board game or accessory or piece','Y','2025-10-23 00:00:00'),(75985,11,'MB24.61','Blunted affect','Y','2025-10-23 00:00:00'),(75983,11,'XM0BB1','Blue velvet','Y','2025-10-23 00:00:00'),(75984,11,'XE9GE','Blunt object, not elsewhere classified','Y','2025-10-23 00:00:00'),(75982,11,'LA11.0','Blue sclera','Y','2025-10-23 00:00:00'),(75981,11,'XN8LW','Blue River virus','Y','2025-10-23 00:00:00'),(75980,11,'XM2GR5','Blue ringed octopus venom','Y','2025-10-23 00:00:00'),(75979,11,'XH7QJ7','Blue nevus, NOS','Y','2025-10-23 00:00:00'),(75978,11,'XH1G74','Blue naevus, malignant','Y','2025-10-23 00:00:00'),(75977,11,'QA04.0','Blood-alcohol or blood-drug test','Y','2025-10-23 00:00:00'),(75976,11,'XE08P','Blood, carcass, body, bone, not elsewhere classified, human or animal','Y','2025-10-23 00:00:00'),(75975,11,'XA6Y60','Blood vessels at wrist or hand level','Y','2025-10-23 00:00:00'),(75974,11,'XA9M17','Blood vessels at lower leg level','Y','2025-10-23 00:00:00'),(75973,11,'XA21T7','Blood Vessels','Y','2025-10-23 00:00:00'),(75972,11,'XA7SM4','Blood vessel of the thumb','Y','2025-10-23 00:00:00'),(75971,11,'XA8N71','Blood vessel of the thorax','Y','2025-10-23 00:00:00'),(75970,11,'XA9AN5','Blood vessel of the neck','Y','2025-10-23 00:00:00'),(75969,11,'XA5K61','Blood vessel of the lung','Y','2025-10-23 00:00:00'),(75968,11,'XA08R7','Blood vessel of the kidney','Y','2025-10-23 00:00:00'),(75967,11,'XA6943','Blood vessel of the finger','Y','2025-10-23 00:00:00'),(75966,11,'XA7P54','Blood vessel of hip','Y','2025-10-23 00:00:00'),(75965,11,'QB98','Blood transfusion without reported diagnosis','Y','2025-10-23 00:00:00'),(75964,11,'XM1596','Blood substitutes and plasma protein fractions','Y','2025-10-23 00:00:00'),(75963,11,'SF01','Blood stasis pattern (TM1)','Y','2025-10-23 00:00:00'),(75962,11,'XM04N3','Blood plasma','Y','2025-10-23 00:00:00'),(75961,11,'SH1Z','Blood phase patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(75960,11,'SH10','Blood phase pattern (TM1)','Y','2025-10-23 00:00:00'),(75959,11,'SF0Z','Blood patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(75958,11,'SF02','Blood heat pattern (TM1)','Y','2025-10-23 00:00:00'),(75957,11,'XD6EG0','Blood gas portable analysers','Y','2025-10-23 00:00:00'),(75956,11,'XM5GG5','Blood fraction','Y','2025-10-23 00:00:00'),(75955,11,'SF04','Blood dryness pattern (TM1)','Y','2025-10-23 00:00:00'),(75954,11,'XM1GJ9','Blood dried','Y','2025-10-23 00:00:00'),(75953,11,'QB20','Blood donor','Y','2025-10-23 00:00:00'),(75952,11,'SF00','Blood deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(75951,11,'SF03','Blood cold pattern (TM1)','Y','2025-10-23 00:00:00'),(75950,11,'XA8UK8','Blood cells','Y','2025-10-23 00:00:00'),(75949,11,'SF99','Blood and heat accumulation in the uterus pattern (TM1)','Y','2025-10-23 00:00:00'),(75948,11,'SF9E','Blood accumulation in the bladder pattern (TM1)','Y','2025-10-23 00:00:00'),(75947,11,'XM2NV9','Blood (derivatives) (natural) (plasma) (whole)','Y','2025-10-23 00:00:00'),(75946,11,'XA8EC5','Blood','Y','2025-10-23 00:00:00'),(75945,11,'XE9D0','Blocked connection','Y','2025-10-23 00:00:00'),(75944,11,'SB05','Block and repulsion disorder (TM1)','Y','2025-10-23 00:00:00'),(75943,11,'XJ8JK','Blister, nonthermal','Y','2025-10-23 00:00:00'),(75942,11,'9D90.6','Blindness','Y','2025-10-23 00:00:00'),(75941,11,'XM9BU9','Blinatumomab','Y','2025-10-23 00:00:00'),(75940,11,'JA04','Blighted ovum or nonhydatidiform mole','Y','2025-10-23 00:00:00'),(75939,11,'XM4BW2','Blighia sapida plant','Y','2025-10-23 00:00:00'),(75938,11,'9A03.0Z','Blepharoptosis, unspecified','Y','2025-10-23 00:00:00'),(75937,11,'9A03.0','Blepharoptosis','Y','2025-10-23 00:00:00'),(75936,11,'9A60.4','Blepharoconjunctivitis','Y','2025-10-23 00:00:00'),(75935,11,'9A06.8','Blepharochalasis','Y','2025-10-23 00:00:00'),(75934,11,'XM0VU1','Bleomycin','Y','2025-10-23 00:00:00'),(75933,11,'3B62.1','Bleeding diathesis due to thromboxane synthesis deficiency','Y','2025-10-23 00:00:00'),(75932,11,'GA32.1','Bleeding after egg retrieval','Y','2025-10-23 00:00:00'),(75931,11,'XM2A78','Bleach, not elsewhere classified','Y','2025-10-23 00:00:00'),(75930,11,'1F22','Blastomycosis','Y','2025-10-23 00:00:00'),(75929,11,'XN14F','Blastomyces dermatitidis','Y','2025-10-23 00:00:00'),(75928,11,'XN08A','Blastomyces','Y','2025-10-23 00:00:00'),(75927,11,'1A35','Blastocystosis','Y','2025-10-23 00:00:00'),(75926,11,'XN1M7','Blastocystis hominis','Y','2025-10-23 00:00:00'),(75925,11,'XN6UY','Blastocystis','Y','2025-10-23 00:00:00'),(75924,11,'XM9051','Blasticidin-S','Y','2025-10-23 00:00:00'),(75923,11,'2A60.5','Blastic plasmacytoid dendritic cell neoplasm','Y','2025-10-23 00:00:00'),(75922,11,'XH1DB1','Blastic plasmacytoid dendritic cell neoplasm','Y','2025-10-23 00:00:00'),(75921,11,'XH42X4','Blastic NK cell lymphoma','Y','2025-10-23 00:00:00'),(75920,11,'XM8MR4','Blast furnace gas','Y','2025-10-23 00:00:00'),(75919,11,'SF9H','Bladder water accumulation pattern (TM1)','Y','2025-10-23 00:00:00'),(75918,11,'XA0R03','Bladder wall','Y','2025-10-23 00:00:00'),(75917,11,'SC02','Bladder pressure disorder (TM1)','Y','2025-10-23 00:00:00'),(75916,11,'MF52','Bladder pain','Y','2025-10-23 00:00:00'),(75915,11,'GC01.0','Bladder neck obstruction','Y','2025-10-23 00:00:00'),(75914,11,'XA0VZ5','Bladder neck','Y','2025-10-23 00:00:00'),(75913,11,'SG26','Bladder meridian pattern (TM1)','Y','2025-10-23 00:00:00'),(75912,11,'SF9F','Bladder heat accumulation pattern (TM1)','Y','2025-10-23 00:00:00'),(75911,11,'SF9J','Bladder deficiency cold pattern (TM1)','Y','2025-10-23 00:00:00'),(75910,11,'SF9G','Bladder dampness-heat pattern (TM1)','Y','2025-10-23 00:00:00'),(75908,11,'XM4XP6','Black widow spider antivenin','Y','2025-10-23 00:00:00'),(75909,11,'XM7M21','Black widow spider venom','Y','2025-10-23 00:00:00'),(75906,11,'XM7LZ0','Black necked spitting cobra snake venom','Y','2025-10-23 00:00:00'),(75907,11,'1F2D.3','Black piedra','Y','2025-10-23 00:00:00'),(75904,11,'XM2698','Black legged poison frog poison','Y','2025-10-23 00:00:00'),(75905,11,'XM2SH0','Black mamba snake venom','Y','2025-10-23 00:00:00'),(75902,11,'XN66E','Black Creek Canal virus','Y','2025-10-23 00:00:00'),(75903,11,'XM8F59','Black emperor scorpion venom','Y','2025-10-23 00:00:00'),(75901,11,'XH23J5','Bizarre parosteal osteochondromatous proliferation','Y','2025-10-23 00:00:00'),(75899,11,'MB26.00','Bizarre delusion','Y','2025-10-23 00:00:00'),(75900,11,'XH9824','Bizarre leiomyoma','Y','2025-10-23 00:00:00'),(75897,11,'XM1WF7','Bivalirudin','Y','2025-10-23 00:00:00'),(75898,11,'BD14','Biventricular failure','Y','2025-10-23 00:00:00'),(75896,11,'XE7CA','Bitumen','Y','2025-10-23 00:00:00'),(75895,11,'XM1GJ1','Bitter almond','Y','2025-10-23 00:00:00'),(75894,11,'PG64','Bitten with undetermined intent by person','Y','2025-10-23 00:00:00'),(75893,11,'PG65','Bitten with undetermined intent by animal','Y','2025-10-23 00:00:00'),(75892,11,'XM5L27','Bitoscanate','Y','2025-10-23 00:00:00'),(75891,11,'XM15R7','Bitolterol','Y','2025-10-23 00:00:00'),(75890,11,'XM6FY4','Bithionol anthelminthic','Y','2025-10-23 00:00:00'),(75889,11,'XM8SJ3','Bithionol','Y','2025-10-23 00:00:00'),(75888,11,'9D42.71','Bi-temporal defects heteronymous hemianopia or quadrant anopia','Y','2025-10-23 00:00:00'),(75887,11,'XM88Z7','Bisulepin (hydrochloride)','Y','2025-10-23 00:00:00'),(75886,11,'XM3MM6','Bisphenol A-glycidyl methacrylate','Y','2025-10-23 00:00:00'),(75885,11,'XM1GH9','Bisphenol A','Y','2025-10-23 00:00:00'),(75884,11,'XM00W5','Bisoxatin','Y','2025-10-23 00:00:00'),(75883,11,'XM8QC9','Bisoprolol','Y','2025-10-23 00:00:00'),(75882,11,'XM84X1','Bismuthyl subnitrate','Y','2025-10-23 00:00:00'),(75881,11,'XM1BG6','Bismuth subcitrate','Y','2025-10-23 00:00:00'),(75880,11,'XM7A39','Bismuth salts subsalicylate','Y','2025-10-23 00:00:00'),(75879,11,'XM98L3','Bismuth salts subcarbonate','Y','2025-10-23 00:00:00'),(75878,11,'XM7S48','Bismuth salts glycolylarsenate','Y','2025-10-23 00:00:00'),(75877,11,'XM60N7','Bismuth salts formic iodide','Y','2025-10-23 00:00:00'),(75876,11,'XM12U8','Bismuth salts anti-infectives','Y','2025-10-23 00:00:00'),(75875,11,'XM1F19','Bismuth salts aluminate','Y','2025-10-23 00:00:00'),(75874,11,'XM5U61','Bismuth salts','Y','2025-10-23 00:00:00'),(75873,11,'XM0TX8','Bismuth nonmedicinal','Y','2025-10-23 00:00:00'),(75872,11,'XM51P8','Bisdequalinium (salts) (diacetate)','Y','2025-10-23 00:00:00'),(75871,11,'XM5LG0','Bisbutiamine','Y','2025-10-23 00:00:00'),(75870,11,'XM3HE8','Bisbentiamine','Y','2025-10-23 00:00:00'),(75869,11,'XM14G1','Bisacodyl','Y','2025-10-23 00:00:00'),(75868,11,'XM7Y28','Bis(chloromethyl) ether','Y','2025-10-23 00:00:00'),(75866,11,'KA44.Z','Birth injury to unspecified peripheral nerve','Y','2025-10-23 00:00:00'),(75867,11,'KA4Z','Birth injury, unspecified','Y','2025-10-23 00:00:00'),(75865,11,'KA44.0Z','Birth injury to unspecified cranial nerve','Y','2025-10-23 00:00:00'),(75863,11,'KA46.1','Birth injury to spleen','Y','2025-10-23 00:00:00'),(75864,11,'KA43.0','Birth injury to sternocleidomastoid','Y','2025-10-23 00:00:00'),(75862,11,'KA40.2','Birth injury to spine or spinal cord','Y','2025-10-23 00:00:00'),(75860,11,'KA45','Birth injury to skeleton','Y','2025-10-23 00:00:00'),(75861,11,'KA43','Birth injury to skin or soft tissues','Y','2025-10-23 00:00:00'),(75858,11,'KA42','Birth injury to scalp','Y','2025-10-23 00:00:00'),(75859,11,'KA42.Z','Birth injury to scalp, unspecified','Y','2025-10-23 00:00:00'),(75857,11,'KA44','Birth injury to peripheral nervous system','Y','2025-10-23 00:00:00'),(75856,11,'KA44.Y','Birth injury to other specified peripheral nerve','Y','2025-10-23 00:00:00'),(75855,11,'KA46.Y','Birth injury to other specified organ','Y','2025-10-23 00:00:00'),(75854,11,'KA44.0Y','Birth injury to other specified cranial nerve','Y','2025-10-23 00:00:00'),(75853,11,'KA46','Birth injury to other organs','Y','2025-10-23 00:00:00'),(75852,11,'KA45.6','Birth injury to long bones','Y','2025-10-23 00:00:00'),(75851,11,'KA46.0','Birth injury to liver','Y','2025-10-23 00:00:00'),(75850,11,'KA44.00','Birth injury to facial nerve','Y','2025-10-23 00:00:00'),(75849,11,'KA45.2Z','Birth injury to facial bones, unspecified','Y','2025-10-23 00:00:00'),(75848,11,'KA45.2','Birth injury to facial bones','Y','2025-10-23 00:00:00'),(75847,11,'KA43.3','Birth injury to face','Y','2025-10-23 00:00:00'),(75846,11,'KA41','Birth injury to eye','Y','2025-10-23 00:00:00'),(75845,11,'KA43.1','Birth injury to external genitalia','Y','2025-10-23 00:00:00'),(75844,11,'KA44.0','Birth injury to cranial nerves','Y','2025-10-23 00:00:00'),(75843,11,'KA40.Z','Birth injury to central nervous system, unspecified','Y','2025-10-23 00:00:00'),(75842,11,'KA40','Birth injury to central nervous system','Y','2025-10-23 00:00:00'),(75841,11,'KA40.3','Birth injury to brainstem','Y','2025-10-23 00:00:00'),(75840,11,'KA45.3','Birth injury of thorax','Y','2025-10-23 00:00:00'),(75839,11,'KD30.Z','Birth depression, unspecified','Y','2025-10-23 00:00:00'),(75838,11,'KD30.2','Birth depression with associated metabolic acidaemia of cord blood','Y','2025-10-23 00:00:00'),(75837,11,'KD30.1','Birth depression with 5 minute Apgar score 4-6','Y','2025-10-23 00:00:00'),(75836,11,'KD30.0','Birth depression with 5 minute Apgar score 0-3','Y','2025-10-23 00:00:00'),(75835,11,'KD30','Birth depression','Y','2025-10-23 00:00:00'),(75834,11,'KB21','Birth asphyxia','Y','2025-10-23 00:00:00'),(75833,11,'XM0HS8','Bird toxin','Y','2025-10-23 00:00:00'),(75832,11,'CA70.2','Bird fancier lung','Y','2025-10-23 00:00:00'),(75831,11,'XE6L5','Bird','Y','2025-10-23 00:00:00'),(75830,11,'6A61.Z','Bipolar type II disorder, unspecified','Y','2025-10-23 00:00:00'),(75829,11,'6A61.9','Bipolar type II disorder, currently in partial remission, most recent episode unspecified','Y','2025-10-23 00:00:00'),(75828,11,'6A61.7','Bipolar type II disorder, currently in partial remission, most recent episode hypomanic','Y','2025-10-23 00:00:00'),(75827,11,'6A61.8','Bipolar type II disorder, currently in partial remission, most recent episode depressive','Y','2025-10-23 00:00:00'),(75826,11,'6A61.A','Bipolar type II disorder, currently in full remission','Y','2025-10-23 00:00:00'),(75825,11,'6A61.0','Bipolar type II disorder, current episode hypomanic','Y','2025-10-23 00:00:00'),(75824,11,'6A61.6','Bipolar type II disorder, current episode depressive, unspecified severity','Y','2025-10-23 00:00:00'),(75823,11,'6A61.4','Bipolar type II disorder, current episode depressive, severe without psychotic symptoms','Y','2025-10-23 00:00:00'),(75822,11,'6A61.5','Bipolar type II disorder, current episode depressive, severe with psychotic symptoms','Y','2025-10-23 00:00:00'),(75821,11,'6A61.2','Bipolar type II disorder, current episode depressive, moderate without psychotic symptoms','Y','2025-10-23 00:00:00'),(75820,11,'6A61.3','Bipolar type II disorder, current episode depressive, moderate with psychotic symptoms','Y','2025-10-23 00:00:00'),(75819,11,'6A61.1','Bipolar type II disorder, current episode depressive, mild','Y','2025-10-23 00:00:00'),(75818,11,'6A61','Bipolar type II disorder','Y','2025-10-23 00:00:00'),(75817,11,'6A60.Z','Bipolar type I disorder, unspecified','Y','2025-10-23 00:00:00'),(75816,11,'6A60.E','Bipolar type I disorder, currently in partial remission, most recent episode unspecified','Y','2025-10-23 00:00:00'),(75815,11,'6A60.D','Bipolar type I disorder, currently in partial remission, most recent episode mixed','Y','2025-10-23 00:00:00'),(75814,11,'6A60.B','Bipolar type I disorder, currently in partial remission, most recent episode manic or hypomanic','Y','2025-10-23 00:00:00'),(75813,11,'6A60.C','Bipolar type I disorder, currently in partial remission, most recent episode depressive','Y','2025-10-23 00:00:00'),(75812,11,'6A60.F','Bipolar type I disorder, currently in full remission','Y','2025-10-23 00:00:00'),(75811,11,'6A60.9','Bipolar type I disorder, current episode mixed, without psychotic symptoms','Y','2025-10-23 00:00:00'),(75810,11,'6A60.A','Bipolar type I disorder, current episode mixed, with psychotic symptoms','Y','2025-10-23 00:00:00'),(75809,11,'6A60.0','Bipolar type I disorder, current episode manic, without psychotic symptoms','Y','2025-10-23 00:00:00'),(75808,11,'6A60.1','Bipolar type I disorder, current episode manic, with psychotic symptoms','Y','2025-10-23 00:00:00'),(75807,11,'6A60.2','Bipolar type I disorder, current episode hypomanic','Y','2025-10-23 00:00:00'),(75806,11,'6A60.8','Bipolar type I disorder, current episode depressive, unspecified severity','Y','2025-10-23 00:00:00'),(75805,11,'6A60.6','Bipolar type I disorder, current episode depressive, severe without psychotic symptoms','Y','2025-10-23 00:00:00'),(75804,11,'6A60.7','Bipolar type I disorder, current episode depressive, severe with psychotic symptoms','Y','2025-10-23 00:00:00'),(75803,11,'6A60.4','Bipolar type I disorder, current episode depressive, moderate without psychotic symptoms','Y','2025-10-23 00:00:00'),(75802,11,'6A60.5','Bipolar type I disorder, current episode depressive, moderate with psychotic symptoms','Y','2025-10-23 00:00:00'),(75801,11,'6A60.3','Bipolar type I disorder, current episode depressive, mild','Y','2025-10-23 00:00:00'),(75800,11,'6A60','Bipolar type I disorder','Y','2025-10-23 00:00:00'),(75799,11,'6A6Z','Bipolar or related disorders, unspecified','Y','2025-10-23 00:00:00'),(75798,11,'XM80T0','Biphenylol','Y','2025-10-23 00:00:00'),(75797,11,'XH3797','Biphenotypic sinonasal sarcoma','Y','2025-10-23 00:00:00'),(75796,11,'XM16M5','Biphasic insulin injection','Y','2025-10-23 00:00:00'),(75795,11,'XM65C9','Biperiden','Y','2025-10-23 00:00:00'),(75794,11,'XD7EB1','Bipap/CPAP circuits','Y','2025-10-23 00:00:00'),(75793,11,'5B5G','Biotin deficiency','Y','2025-10-23 00:00:00'),(75792,11,'XM9RX3','Biotin','Y','2025-10-23 00:00:00'),(75791,11,'PK81.5','Biopsy procedure, not elsewhere classified, associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(75790,11,'ME93.Z','Biomechanical lesions, unspecified','Y','2025-10-23 00:00:00'),(75789,11,'ME93','Biomechanical lesions, not elsewhere classified','Y','2025-10-23 00:00:00'),(75788,11,'XX2PX3','Biological sex not specified','Y','2025-10-23 00:00:00'),(75787,11,'XE0WX','Biological problem with device identified','Y','2025-10-23 00:00:00'),(75786,11,'XE4YZ','Biological contamination of device','Y','2025-10-23 00:00:00'),(75785,11,'XM41G5','Bioflavonoids','Y','2025-10-23 00:00:00'),(75784,11,'XD0R67','Biofiltration sets','Y','2025-10-23 00:00:00'),(75783,11,'XE9H4','Biofilm coating in device','Y','2025-10-23 00:00:00'),(75782,11,'XE5T0','Biocompatibility problem with device identified','Y','2025-10-23 00:00:00'),(75781,11,'XE7ZE','Biocompatibility','Y','2025-10-23 00:00:00'),(75780,11,'XM3J77','Bioallethrin','Y','2025-10-23 00:00:00'),(75779,11,'XM3YP5','Binimetinib','Y','2025-10-23 00:00:00'),(75778,11,'XM43X4','Binifibrate','Y','2025-10-23 00:00:00'),(75777,11,'6B82','Binge eating disorder','Y','2025-10-23 00:00:00'),(75776,11,'MB29.1','Binge eating','Y','2025-10-23 00:00:00'),(75775,11,'9D42.70','Bi-nasal defects heteronymous hemianopia or quadrant anopia','Y','2025-10-23 00:00:00'),(75774,11,'XM8615','Bimekizumab','Y','2025-10-23 00:00:00'),(75773,11,'XM6E95','Bimatoprost','Y','2025-10-23 00:00:00'),(75772,11,'NC92.76','Bimalleolar fracture of ankle, not otherwise specified','Y','2025-10-23 00:00:00'),(75771,11,'MF91','Bilirubinuria','Y','2025-10-23 00:00:00'),(75770,11,'KD3C.0','Bilious vomiting of newborn','Y','2025-10-23 00:00:00'),(75769,11,'XA0KT3','Biliary tract','Y','2025-10-23 00:00:00'),(75768,11,'XH5YG5','Biliary papillomatosis','Y','2025-10-23 00:00:00'),(75767,11,'XH7BS0','Biliary intraepithelial neoplasia, low grade','Y','2025-10-23 00:00:00'),(75766,11,'XH5U91','Biliary intraepithelial neoplasia, high grade','Y','2025-10-23 00:00:00'),(75765,11,'DC14.Z','Biliary disease, unspecified','Y','2025-10-23 00:00:00'),(75764,11,'LB20.21','Biliary atresia','Y','2025-10-23 00:00:00'),(75763,11,'XM0TD5','Bile salts','Y','2025-10-23 00:00:00'),(75762,11,'XH0778','Bile duct cystadenoma','Y','2025-10-23 00:00:00'),(75761,11,'XH3BU6','Bile duct cystadenocarcinoma','Y','2025-10-23 00:00:00'),(75760,11,'XH6KR6','Bile duct adenoma','Y','2025-10-23 00:00:00'),(75759,11,'5C52.11','Bile acid synthesis defect with cholestasis','Y','2025-10-23 00:00:00'),(75758,11,'XM1W44','Bile acid sequestrants','Y','2025-10-23 00:00:00'),(75757,11,'XK9J','Bilateral','Y','2025-10-23 00:00:00'),(75756,11,'XM1WZ8','Bilastine','Y','2025-10-23 00:00:00'),(75755,11,'XM5DC4','Biguanides','Y','2025-10-23 00:00:00'),(75754,11,'XM6932','Biguanide derivatives, oral','Y','2025-10-23 00:00:00'),(75752,11,'XM8B91','Bifonazole','Y','2025-10-23 00:00:00'),(75753,11,'XA5EY2','Bifurcated ligament','Y','2025-10-23 00:00:00'),(75751,11,'XN0PT','Bifidobacterium dentium','Y','2025-10-23 00:00:00'),(75750,11,'XN33F','Bifidobacterium','Y','2025-10-23 00:00:00'),(75749,11,'LB56','Bifid scrotum','Y','2025-10-23 00:00:00'),(75748,11,'LB73.11','Bifid rib','Y','2025-10-23 00:00:00'),(75747,11,'LA70.1','Bifid nose','Y','2025-10-23 00:00:00'),(75746,11,'XM79U4','Bifenthrin','Y','2025-10-23 00:00:00'),(75745,11,'XM03J9','Bifemelane','Y','2025-10-23 00:00:00'),(75744,11,'XM64M5','Bietaserpine','Y','2025-10-23 00:00:00'),(75743,11,'LA8A.22','Bicuspid aortic valve','Y','2025-10-23 00:00:00'),(75742,11,'XM5T65','Bicucculine','Y','2025-10-23 00:00:00'),(75741,11,'LB44.3','Bicornuate uterus','Y','2025-10-23 00:00:00'),(75740,11,'XM59F4','Biclotymol','Y','2025-10-23 00:00:00'),(75739,11,'XA1MF8','Biceps femoris tendon','Y','2025-10-23 00:00:00'),(75738,11,'XA3CB9','Biceps femoris muscle','Y','2025-10-23 00:00:00'),(75736,11,'XA1KL5','Biceps brachii muscle','Y','2025-10-23 00:00:00'),(75737,11,'XA8AM4','Biceps brachii tendon','Y','2025-10-23 00:00:00'),(75735,11,'XM5FE9','Bicalutamide','Y','2025-10-23 00:00:00'),(75734,11,'XM6NB7','Bibrocathol','Y','2025-10-23 00:00:00'),(75733,11,'XM1U36','Bibenzonium bromide','Y','2025-10-23 00:00:00'),(75732,11,'XM1Q21','Biapenem','Y','2025-10-23 00:00:00'),(75731,11,'XM83L5','Bialamicol','Y','2025-10-23 00:00:00'),(75730,11,'XM9208','BHC (medicinal)','Y','2025-10-23 00:00:00'),(75729,11,'XN8Z4','BF.7','Y','2025-10-23 00:00:00'),(75728,11,'XM6GD5','Bezlotoxumab','Y','2025-10-23 00:00:00'),(75726,11,'XM3F75','Bezafibrate','Y','2025-10-23 00:00:00'),(75727,11,'XM5GN5','Bezitramide','Y','2025-10-23 00:00:00'),(75724,11,'XM63B0','Bevonium','Y','2025-10-23 00:00:00'),(75725,11,'XM3NJ7','Bexarotene','Y','2025-10-23 00:00:00'),(75722,11,'XM5ST9','Bevacizumab','Y','2025-10-23 00:00:00'),(75723,11,'XM0HY3','Bevantolol','Y','2025-10-23 00:00:00'),(75720,11,'XM1W34','Betulae cortex','Y','2025-10-23 00:00:00'),(75721,11,'XM32B6','b-eucaine','Y','2025-10-23 00:00:00'),(75719,11,'XM08U7','Betula oil','Y','2025-10-23 00:00:00'),(75717,11,'XM0MZ4','Bethanechol chloride','Y','2025-10-23 00:00:00'),(75718,11,'XM1604','Betoxycaine','Y','2025-10-23 00:00:00'),(75716,11,'XM9XA2','Bethanechol','Y','2025-10-23 00:00:00'),(75714,11,'XM7U87','Betaxolol','Y','2025-10-23 00:00:00'),(75715,11,'XM1MP2','Betazole','Y','2025-10-23 00:00:00'),(75713,11,'XN0TH','Betaretrovirus','Y','2025-10-23 00:00:00'),(75712,11,'XM8LD0','Betanidine','Y','2025-10-23 00:00:00'),(75711,11,'XM60L2','Beta-naphthylamine','Y','2025-10-23 00:00:00'),(75710,11,'XM5261','Betamipron','Y','2025-10-23 00:00:00'),(75709,11,'XM2EH2','Betamicin','Y','2025-10-23 00:00:00'),(75708,11,'XM46G7','Betamethasone topical','Y','2025-10-23 00:00:00'),(75707,11,'XM6SU0','Betamethasone','Y','2025-10-23 00:00:00'),(75706,11,'XM9FQ5','Beta-lactamase sensitive penicillins','Y','2025-10-23 00:00:00'),(75705,11,'XM9QY0','Beta-lactamase resistant penicillins','Y','2025-10-23 00:00:00'),(75704,11,'XM9XT2','Beta-lactamase inhibitors','Y','2025-10-23 00:00:00'),(75703,11,'XM7Y97','Betaine hydrochloride','Y','2025-10-23 00:00:00'),(75702,11,'XM0090','Betaine','Y','2025-10-23 00:00:00'),(75701,11,'XM14C0','Betahistine','Y','2025-10-23 00:00:00'),(75700,11,'XN8TA','Betaherpesvirinae','Y','2025-10-23 00:00:00'),(75699,11,'XN1AF','Beta-haemolytic Streptococcus','Y','2025-10-23 00:00:00'),(75697,11,'XM7E89','Betacarotene','Y','2025-10-23 00:00:00'),(75698,11,'XM34M8','Beta-Chlor','Y','2025-10-23 00:00:00'),(75696,11,'XM9MF0','Beta-adrenoreceptor antagonists, selective','Y','2025-10-23 00:00:00'),(75695,11,'XM7R98','Beta-adrenoreceptor antagonists, non selective','Y','2025-10-23 00:00:00'),(75694,11,'3A50.2','Beta thalassaemia','Y','2025-10-23 00:00:00'),(75692,11,'XM1A96','Besifloxacin','Y','2025-10-23 00:00:00'),(75693,11,'XM5S93','Beta adrenergic blocking agent, heart','Y','2025-10-23 00:00:00'),(75690,11,'CA60.6','Berylliosis','Y','2025-10-23 00:00:00'),(75691,11,'XM4QG7','Beryllium','Y','2025-10-23 00:00:00'),(75688,11,'XN0A0','Bermejo virus','Y','2025-10-23 00:00:00'),(75689,11,'XM2UN9','Berotralstat','Y','2025-10-23 00:00:00'),(75687,11,'5B5A.0Z','Beriberi, unspecified','Y','2025-10-23 00:00:00'),(75686,11,'5B5A.0','Beriberi','Y','2025-10-23 00:00:00'),(75685,11,'XM1G69','Bergapten','Y','2025-10-23 00:00:00'),(75684,11,'XM5W16','Bergamot oil','Y','2025-10-23 00:00:00'),(75682,11,'XM1LR8','Bepridil','Y','2025-10-23 00:00:00'),(75683,11,'XM8Y64','Beraprost','Y','2025-10-23 00:00:00'),(75680,11,'XM1H03','Benzylthiouracil','Y','2025-10-23 00:00:00'),(75681,11,'XM3667','Bephenium','Y','2025-10-23 00:00:00'),(75678,11,'XM0P98','Benzylmorphine','Y','2025-10-23 00:00:00'),(75679,11,'XM83S8','Benzylpenicillin','Y','2025-10-23 00:00:00'),(75677,11,'XM0JW3','Benzylhydrochlorothiazide','Y','2025-10-23 00:00:00'),(75675,11,'XM8YM7','Benzyl morphine','Y','2025-10-23 00:00:00'),(75676,11,'XM4WS4','Benzyl nicotinate','Y','2025-10-23 00:00:00'),(75674,11,'XM0GX2','Benzyl Benzoic acid','Y','2025-10-23 00:00:00'),(75673,11,'XM7QG0','Benzyl benzoate','Y','2025-10-23 00:00:00'),(75672,11,'XM0AD5','Benzyl alcohol nonmedicinal','Y','2025-10-23 00:00:00'),(75671,11,'XM5AK0','Benzyl acetate','Y','2025-10-23 00:00:00'),(75670,11,'XM73Q0','Benzydamine','Y','2025-10-23 00:00:00'),(75667,11,'XM35M7','Benzquinamide','Y','2025-10-23 00:00:00'),(75668,11,'XM7Q17','Benzthiazide','Y','2025-10-23 00:00:00'),(75669,11,'XM8NZ1','Benztropine anticholinergic','Y','2025-10-23 00:00:00'),(75666,11,'XM0000','Benzpyrinium bromide','Y','2025-10-23 00:00:00'),(75665,11,'XM4DD3','Benzphetamine','Y','2025-10-23 00:00:00'),(75664,11,'XM9VY2','Benzperidol','Y','2025-10-23 00:00:00'),(75663,11,'XM56Y5','Benzperidin','Y','2025-10-23 00:00:00'),(75661,11,'XM43M3','Benzoyl peroxide','Y','2025-10-23 00:00:00'),(75662,11,'XM18Y4','Benzoylpas calcium','Y','2025-10-23 00:00:00'),(75660,11,'XM63Y9','Benzoxonium chloride','Y','2025-10-23 00:00:00'),(75659,11,'XM8TM1','Benzothiadiazides','Y','2025-10-23 00:00:00'),(75658,11,'XM4GN3','Benzoquinone','Y','2025-10-23 00:00:00'),(75656,11,'XM7D95','Benzophenones','Y','2025-10-23 00:00:00'),(75657,11,'XM6YS0','Benzopyrone','Y','2025-10-23 00:00:00'),(75655,11,'XM4DT5','Benzophenone-4','Y','2025-10-23 00:00:00'),(75654,11,'XM6F99','Benzophenone-3','Y','2025-10-23 00:00:00'),(75653,11,'XM8G23','Benzonatate','Y','2025-10-23 00:00:00'),(75652,11,'XM1QE0','Benzomorphan derivatives','Y','2025-10-23 00:00:00'),(75651,11,'XM0E25','Benzomorphan','Y','2025-10-23 00:00:00'),(75650,11,'XM82G2','Benzoin (tincture)','Y','2025-10-23 00:00:00'),(75649,11,'XM7SQ2','Benzoic acid with salicylic acid','Y','2025-10-23 00:00:00'),(75647,11,'XM4796','Benzododecinium','Y','2025-10-23 00:00:00'),(75648,11,'XM9JZ6','Benzoic acid','Y','2025-10-23 00:00:00'),(75646,11,'XM2GL0','Benzodiapin','Y','2025-10-23 00:00:00'),(75645,11,'XM3EH5','Benzoctamine','Y','2025-10-23 00:00:00'),(75644,11,'XM8KD9','Benzocaine','Y','2025-10-23 00:00:00'),(75643,11,'XM0JG6','Benznidazole','Y','2025-10-23 00:00:00'),(75642,11,'XM2RB2','Benzisothiazolinone','Y','2025-10-23 00:00:00'),(75641,11,'XM3K91','Benziodarone','Y','2025-10-23 00:00:00'),(75640,11,'XM3JR4','Benzimidazole derivatives','Y','2025-10-23 00:00:00'),(75639,11,'XM44B4','Benzimidazole','Y','2025-10-23 00:00:00'),(75638,11,'XM54W7','Benzilonium bromide','Y','2025-10-23 00:00:00'),(75637,11,'XM7XV6','Benzilone','Y','2025-10-23 00:00:00'),(75635,11,'XM1QH3','Benzethonium chloride','Y','2025-10-23 00:00:00'),(75636,11,'XM9WX0','Benzidine','Y','2025-10-23 00:00:00'),(75633,11,'XM2738','Benzene homologue','Y','2025-10-23 00:00:00'),(75634,11,'XM3TU9','Benzene','Y','2025-10-23 00:00:00'),(75632,11,'XM0QY7','Benzene','Y','2025-10-23 00:00:00'),(75630,11,'XM7WD3','Benzcarbimine','Y','2025-10-23 00:00:00'),(75631,11,'XM3E65','Benzedrine (amphetamine)','Y','2025-10-23 00:00:00'),(75629,11,'XM9DK8','Benzbromarone','Y','2025-10-23 00:00:00'),(75628,11,'XM8ZR2','Benzatropine','Y','2025-10-23 00:00:00'),(75627,11,'XM6MK0','Benzathine phenoxymethylpenicillin','Y','2025-10-23 00:00:00'),(75626,11,'XM4E82','Benzathine benzylpenicillin','Y','2025-10-23 00:00:00'),(75625,11,'XM79Q0','Benzamine lactate','Y','2025-10-23 00:00:00'),(75623,11,'XM1W79','Benzamides','Y','2025-10-23 00:00:00'),(75624,11,'XM4YN0','Benzamine','Y','2025-10-23 00:00:00'),(75622,11,'XM2VS1','Benzalkonium chloride','Y','2025-10-23 00:00:00'),(75621,11,'XM6BA8','Benzalbutyramide','Y','2025-10-23 00:00:00'),(75620,11,'XM5L08','Bentonite','Y','2025-10-23 00:00:00'),(75618,11,'XM4R58','Bentazepam','Y','2025-10-23 00:00:00'),(75619,11,'XM7A79','Bentiromide','Y','2025-10-23 00:00:00'),(75617,11,'LD24.C','Bent bone dysplasias','Y','2025-10-23 00:00:00'),(75616,11,'XM0KT0','Benralizumab','Y','2025-10-23 00:00:00'),(75615,11,'XM6NJ7','Benproperine','Y','2025-10-23 00:00:00'),(75614,11,'XM12B1','Benperidol','Y','2025-10-23 00:00:00'),(75613,11,'XM7F06','Benoxaprofen','Y','2025-10-23 00:00:00'),(75612,11,'XM1UA7','Benorilate','Y','2025-10-23 00:00:00'),(75611,11,'XM9R98','Benoquin','Y','2025-10-23 00:00:00'),(75609,11,'XM2ZR2','Benisone','Y','2025-10-23 00:00:00'),(75610,11,'XM2WG5','Benomyl','Y','2025-10-23 00:00:00'),(75608,11,'2E81.Z','Benign vascular neoplasms, unspecified','Y','2025-10-23 00:00:00'),(75607,11,'2E81.2Z','Benign vascular neoplasms of infancy and childhood, unspecified','Y','2025-10-23 00:00:00'),(75605,11,'2E81','Benign vascular neoplasms','Y','2025-10-23 00:00:00'),(75606,11,'2E81.2','Benign vascular neoplasms of infancy and childhood','Y','2025-10-23 00:00:00'),(75604,11,'2E89.1','Benign tumours of uncertain differentiation, soft tissue','Y','2025-10-23 00:00:00'),(75603,11,'2E89.0','Benign tumours of uncertain differentiation, bone or cartilage','Y','2025-10-23 00:00:00'),(75602,11,'2E86.Z','Benign smooth muscle or skeletal muscle tumour, unspecified','Y','2025-10-23 00:00:00'),(75601,11,'2E86','Benign smooth muscle or skeletal muscle tumour','Y','2025-10-23 00:00:00'),(75600,11,'7A85','Benign sleep myoclonus of infancy','Y','2025-10-23 00:00:00'),(75599,11,'1D01.3','Benign recurrent meningitis','Y','2025-10-23 00:00:00'),(75597,11,'AB31.2','Benign positional paroxysmal vertigo','Y','2025-10-23 00:00:00'),(75598,11,'5C58.04','Benign recurrent intrahepatic cholestasis','Y','2025-10-23 00:00:00'),(75596,11,'2F30.3','Benign phyllodes tumour of breast','Y','2025-10-23 00:00:00'),(75595,11,'2E83.2','Benign osteogenic tumours of bone or articular cartilage of vertebral column','Y','2025-10-23 00:00:00'),(75594,11,'2E83.0','Benign osteogenic tumours of bone or articular cartilage of skull or face','Y','2025-10-23 00:00:00'),(75593,11,'2E83.3','Benign osteogenic tumours of bone or articular cartilage of ribs, sternum or clavicle','Y','2025-10-23 00:00:00'),(75591,11,'2E83.1','Benign osteogenic tumours of bone or articular cartilage of lower jaw','Y','2025-10-23 00:00:00'),(75592,11,'2E83.4','Benign osteogenic tumours of bone or articular cartilage of pelvic bones, sacrum or coccyx','Y','2025-10-23 00:00:00'),(75590,11,'2E83.5','Benign osteogenic tumours of bone or articular cartilage of limbs','Y','2025-10-23 00:00:00'),(75589,11,'2E83','Benign osteogenic tumours','Y','2025-10-23 00:00:00'),(75588,11,'2E83.Z','Benign osteogenic tumour of unspecified site','Y','2025-10-23 00:00:00'),(75587,11,'2E83.Y','Benign osteogenic tumour of other specified site','Y','2025-10-23 00:00:00'),(75586,11,'KB47','Benign or innocent cardiac murmurs in newborn','Y','2025-10-23 00:00:00'),(75585,11,'XH7MT7','Benign notochordal cell tumour','Y','2025-10-23 00:00:00'),(75584,11,'2F31.2','Benign non-mesenchymal neoplasms of uterus, other parts','Y','2025-10-23 00:00:00'),(75583,11,'2F31','Benign non-mesenchymal neoplasms of uterus','Y','2025-10-23 00:00:00'),(75582,11,'2F3Z','Benign non-mesenchymal neoplasms of unspecified site','Y','2025-10-23 00:00:00'),(75581,11,'2F3Y','Benign non-mesenchymal neoplasms of other specified site','Y','2025-10-23 00:00:00'),(75580,11,'2F31.1','Benign non-mesenchymal neoplasm of uterus, corpus uteri','Y','2025-10-23 00:00:00'),(75579,11,'2F31.0','Benign non-mesenchymal neoplasm of uterus, cervix uteri','Y','2025-10-23 00:00:00'),(75578,11,'2F5Z','Benign neoplasms, except of lymphoid, haematopoietic, central nervous system or related tissues, unspecified','Y','2025-10-23 00:00:00'),(75577,11,'2F0Z','Benign neoplasms of unspecified respiratory and intrathoracic organs','Y','2025-10-23 00:00:00'),(75576,11,'2F0Y','Benign neoplasms of other specified respiratory and intrathoracic organs','Y','2025-10-23 00:00:00'),(75575,11,'2F22','Benign neoplasms of epidermal appendages','Y','2025-10-23 00:00:00'),(75574,11,'2F35','Benign neoplasm of urinary organs','Y','2025-10-23 00:00:00'),(75573,11,'2E91.Z','Benign neoplasm of unspecified major salivary glands','Y','2025-10-23 00:00:00'),(75572,11,'2E92.Z','Benign neoplasm of unspecified digestive organs','Y','2025-10-23 00:00:00'),(75571,11,'2E90.4','Benign neoplasm of tonsil','Y','2025-10-23 00:00:00'),(75570,11,'2E90.1','Benign neoplasm of tongue','Y','2025-10-23 00:00:00'),(75569,11,'2E92.4Z','Benign neoplasm of the large intestine, unspecified','Y','2025-10-23 00:00:00'),(75568,11,'2E92.4','Benign neoplasm of the large intestine','Y','2025-10-23 00:00:00'),(75566,11,'2A02.4','Benign neoplasm of spinal cord','Y','2025-10-23 00:00:00'),(75567,11,'2E92.1','Benign neoplasm of stomach','Y','2025-10-23 00:00:00'),(75565,11,'2E90.8','Benign neoplasm of pharynx, unspecified','Y','2025-10-23 00:00:00'),(75564,11,'2E91.0','Benign neoplasm of parotid gland','Y','2025-10-23 00:00:00'),(75563,11,'2E92.8','Benign neoplasm of pancreas','Y','2025-10-23 00:00:00'),(75562,11,'2F32.Z','Benign neoplasm of ovary, unspecified','Y','2025-10-23 00:00:00'),(75561,11,'2F32','Benign neoplasm of ovary','Y','2025-10-23 00:00:00'),(75560,11,'2E91.1','Benign neoplasm of other specified major salivary glands','Y','2025-10-23 00:00:00'),(75559,11,'2E92.Y','Benign neoplasm of other specified digestive organs','Y','2025-10-23 00:00:00'),(75558,11,'2E92.3','Benign neoplasm of other or unspecified parts of small intestine','Y','2025-10-23 00:00:00'),(75557,11,'2E90.3','Benign neoplasm of other or unspecified parts of mouth','Y','2025-10-23 00:00:00'),(75556,11,'2F33','Benign neoplasm of other or unspecified female genital organs','Y','2025-10-23 00:00:00'),(75555,11,'2E90.5','Benign neoplasm of oropharynx','Y','2025-10-23 00:00:00'),(75554,11,'2E92.0','Benign neoplasm of oesophagus','Y','2025-10-23 00:00:00'),(75553,11,'2E90.6','Benign neoplasm of nasopharynx','Y','2025-10-23 00:00:00'),(75552,11,'2F00.Z','Benign neoplasm of middle ear or respiratory system, unspecified','Y','2025-10-23 00:00:00'),(75551,11,'2F00','Benign neoplasm of middle ear or respiratory system','Y','2025-10-23 00:00:00'),(75550,11,'2F10','Benign neoplasm of mesothelial tissue','Y','2025-10-23 00:00:00'),(75549,11,'2F34','Benign neoplasm of male genital organs','Y','2025-10-23 00:00:00'),(75548,11,'2E91','Benign neoplasm of major salivary glands','Y','2025-10-23 00:00:00'),(75547,11,'2E92.7','Benign neoplasm of liver or intrahepatic bile ducts','Y','2025-10-23 00:00:00'),(75546,11,'2E90','Benign neoplasm of lip, oral cavity or pharynx','Y','2025-10-23 00:00:00'),(75545,11,'2E90.0','Benign neoplasm of lip','Y','2025-10-23 00:00:00'),(75544,11,'2F36.1','Benign neoplasm of iris','Y','2025-10-23 00:00:00'),(75543,11,'2F01','Benign neoplasm of intrathoracic organs','Y','2025-10-23 00:00:00'),(75542,11,'2E92.A','Benign neoplasm of ill-defined site within the digestive system','Y','2025-10-23 00:00:00'),(75541,11,'2E90.7','Benign neoplasm of hypopharynx','Y','2025-10-23 00:00:00'),(75540,11,'2E92.6','Benign neoplasm of gallbladder, extrahepatic bile ducts or ampulla of Vater','Y','2025-10-23 00:00:00'),(75539,11,'2E90.2','Benign neoplasm of floor of mouth','Y','2025-10-23 00:00:00'),(75538,11,'2F36.Z','Benign neoplasm of eye or ocular adnexa, unspecified','Y','2025-10-23 00:00:00'),(75537,11,'2F36','Benign neoplasm of eye or ocular adnexa','Y','2025-10-23 00:00:00'),(75536,11,'2E92.9','Benign neoplasm of endocrine pancreas','Y','2025-10-23 00:00:00'),(75535,11,'2F37.Z','Benign neoplasm of endocrine glands, unspecified','Y','2025-10-23 00:00:00'),(75534,11,'2F37','Benign neoplasm of endocrine glands','Y','2025-10-23 00:00:00'),(75533,11,'2E92.2','Benign neoplasm of duodenum','Y','2025-10-23 00:00:00'),(75532,11,'2E92','Benign neoplasm of digestive organs','Y','2025-10-23 00:00:00'),(75531,11,'2A02.3','Benign neoplasm of cranial nerves','Y','2025-10-23 00:00:00'),(75530,11,'2F36.2','Benign neoplasm of ciliary body','Y','2025-10-23 00:00:00'),(75529,11,'2F36.0','Benign neoplasm of choroid','Y','2025-10-23 00:00:00'),(75528,11,'2F30.Z','Benign neoplasm of breast, unspecified','Y','2025-10-23 00:00:00'),(75527,11,'2F30','Benign neoplasm of breast','Y','2025-10-23 00:00:00'),(75526,11,'2E92.5','Benign neoplasm of anus or anal canal','Y','2025-10-23 00:00:00'),(75525,11,'2E89.Z','Benign mesenchymal tumours of uncertain differentiation of unspecified site','Y','2025-10-23 00:00:00'),(75524,11,'2E89.Y','Benign mesenchymal tumours of uncertain differentiation of other specified site','Y','2025-10-23 00:00:00'),(75523,11,'2E89','Benign mesenchymal tumours of uncertain differentiation','Y','2025-10-23 00:00:00'),(75522,11,'2E8Z','Benign mesenchymal neoplasms, unspecified','Y','2025-10-23 00:00:00'),(75521,11,'DB35.2','Benign lymphoid polyp of large intestine','Y','2025-10-23 00:00:00'),(75520,11,'9A10.2','Benign lymphoepithelial lesion of lacrimal gland','Y','2025-10-23 00:00:00'),(75519,11,'EE90','Benign lymphocytic infiltration of the skin','Y','2025-10-23 00:00:00'),(75518,11,'2E81.1Z','Benign lymphatic neoplasms, unspecified','Y','2025-10-23 00:00:00'),(75517,11,'2E81.1','Benign lymphatic neoplasms','Y','2025-10-23 00:00:00'),(75516,11,'2E80.Z','Benign lipomatous neoplasm, unspecified','Y','2025-10-23 00:00:00'),(75515,11,'2E80','Benign lipomatous neoplasm','Y','2025-10-23 00:00:00'),(75514,11,'XH0S03','Benign keratosis, NOS','Y','2025-10-23 00:00:00'),(75513,11,'2F21','Benign keratinocytic acanthomas','Y','2025-10-23 00:00:00'),(75512,11,'8A01.0','Benign hereditary chorea','Y','2025-10-23 00:00:00'),(75511,11,'2E87','Benign gastrointestinal stromal tumour','Y','2025-10-23 00:00:00'),(75510,11,'XH06N0','Benign fibrous histiocytoma','Y','2025-10-23 00:00:00'),(75509,11,'2E85.Z','Benign fibrohistiocytic tumour, site unspecified','Y','2025-10-23 00:00:00'),(75508,11,'2E85.0','Benign fibrohistiocytic tumour of soft tissues of limbs','Y','2025-10-23 00:00:00'),(75507,11,'2E85.2','Benign fibrohistiocytic tumour of skin','Y','2025-10-23 00:00:00'),(75506,11,'2E85.1','Benign fibrohistiocytic tumour of retroperitoneum or peritoneum','Y','2025-10-23 00:00:00'),(75505,11,'2E85.Y','Benign fibrohistiocytic tumour of other specified sites','Y','2025-10-23 00:00:00'),(75504,11,'2E85','Benign fibrohistiocytic tumour','Y','2025-10-23 00:00:00'),(75503,11,'2E84.Z','Benign fibrogenic or myofibrogenic tumour, site unknown','Y','2025-10-23 00:00:00'),(75502,11,'2E84.0','Benign fibrogenic or myofibrogenic tumour of skin','Y','2025-10-23 00:00:00'),(75501,11,'2E84.Y','Benign fibrogenic or myofibrogenic tumour of other specified sites','Y','2025-10-23 00:00:00'),(75500,11,'2E84','Benign fibrogenic or myofibrogenic tumour','Y','2025-10-23 00:00:00'),(75499,11,'8A61.10','Benign familial infantile epilepsy','Y','2025-10-23 00:00:00'),(75498,11,'8A02.00','Benign essential blepharospasm','Y','2025-10-23 00:00:00'),(75497,11,'2E88','Benign endometrial stromal nodule','Y','2025-10-23 00:00:00'),(75496,11,'2F23','Benign dermal fibrous or fibrohistiocytic neoplasms','Y','2025-10-23 00:00:00'),(75495,11,'XH6YS4','Benign cystic nephroma','Y','2025-10-23 00:00:00'),(75493,11,'2F2Z','Benign cutaneous neoplasm of unspecified type','Y','2025-10-23 00:00:00'),(75494,11,'2F24','Benign cutaneous neoplasms of neural or nerve sheath origin','Y','2025-10-23 00:00:00'),(75492,11,'2F20','Benign cutaneous melanocytic neoplasms','Y','2025-10-23 00:00:00'),(75491,11,'2E82.Z','Benign chondrogenic tumours, site unspecified','Y','2025-10-23 00:00:00'),(75490,11,'2E82.1','Benign chondrogenic tumours of bone or articular cartilage of other specified sites','Y','2025-10-23 00:00:00'),(75489,11,'2E82.0','Benign chondrogenic tumours of bone or articular cartilage of limbs','Y','2025-10-23 00:00:00'),(75488,11,'2E82','Benign chondrogenic tumours','Y','2025-10-23 00:00:00'),(75487,11,'8A61.20','Benign childhood epilepsy with centro-temporal spikes','Y','2025-10-23 00:00:00'),(75486,11,'GB20.Z','Benign breast disease, unspecified','Y','2025-10-23 00:00:00'),(75485,11,'GB20','Benign breast disease','Y','2025-10-23 00:00:00'),(75484,11,'MC83.0','Benign and innocent cardiac murmurs','Y','2025-10-23 00:00:00'),(75483,11,'8A61.32','Benign adult familial myoclonus epilepsy','Y','2025-10-23 00:00:00'),(75482,11,'ED51.00','Benign acanthosis nigricans','Y','2025-10-23 00:00:00'),(75481,11,'XM8EW6','Benidipine','Y','2025-10-23 00:00:00'),(75480,11,'XM5HF5','Benfotiamine','Y','2025-10-23 00:00:00'),(75479,11,'XM9UB7','Benfluorex','Y','2025-10-23 00:00:00'),(75478,11,'XM9KD3','Benexate','Y','2025-10-23 00:00:00'),(75477,11,'XM94E1','Benethamine penicillin','Y','2025-10-23 00:00:00'),(75476,11,'XM64R7','Bendroflumethiazide','Y','2025-10-23 00:00:00'),(75475,11,'XM5QW3','Bendazol','Y','2025-10-23 00:00:00'),(75473,11,'XM45K9','Bendamustine','Y','2025-10-23 00:00:00'),(75474,11,'XM0P54','Bendazac','Y','2025-10-23 00:00:00'),(75471,11,'MF96.1','Bence Jones proteinuria','Y','2025-10-23 00:00:00'),(75472,11,'XM3GB4','Bencyclane','Y','2025-10-23 00:00:00'),(75470,11,'XM4FW8','Benazepril hydrochloride','Y','2025-10-23 00:00:00'),(75469,11,'XM0HG1','Benazepril','Y','2025-10-23 00:00:00'),(75468,11,'XM3NJ0','Benaprizine','Y','2025-10-23 00:00:00'),(75466,11,'XM7QG7','Bemiparin','Y','2025-10-23 00:00:00'),(75467,11,'XM29D7','Benactyzine','Y','2025-10-23 00:00:00'),(75464,11,'XM7SW9','Belzutifan','Y','2025-10-23 00:00:00'),(75465,11,'XM0WB3','Bemegride','Y','2025-10-23 00:00:00'),(75463,11,'XM6QJ6','Belumosudil','Y','2025-10-23 00:00:00'),(75462,11,'XE42F','Belt, braces, suspenders, sash','Y','2025-10-23 00:00:00'),(75461,11,'SG37','Belt vessel pattern (TM1)','Y','2025-10-23 00:00:00'),(75460,11,'XE9CF','Belt component of medical device','Y','2025-10-23 00:00:00'),(75459,11,'XM7RN1','Belotecan','Y','2025-10-23 00:00:00'),(75458,11,'XE1XK','Bellows component of medical device','Y','2025-10-23 00:00:00'),(75457,11,'XM2YW9','Belladonna herb','Y','2025-10-23 00:00:00'),(75456,11,'XM6RQ9','Belladonna extract','Y','2025-10-23 00:00:00'),(75454,11,'XM5098','Belladonna alkaloids','Y','2025-10-23 00:00:00'),(75455,11,'XM6089','Belladonna alkaloids and derivatives','Y','2025-10-23 00:00:00'),(75452,11,'XM0Y26','Belinostat','Y','2025-10-23 00:00:00'),(75453,11,'8B88.0','Bell palsy','Y','2025-10-23 00:00:00'),(75451,11,'XM9M75','Belimumab','Y','2025-10-23 00:00:00'),(75450,11,'MD91','Belching','Y','2025-10-23 00:00:00'),(75449,11,'XM4FP8','Belatacept','Y','2025-10-23 00:00:00'),(75448,11,'XM4PT0','Bekanamycin','Y','2025-10-23 00:00:00'),(75447,11,'XE2EZ','Being taken care of by non health care person','Y','2025-10-23 00:00:00'),(75446,11,'XE245','Being taken care of by health care professional','Y','2025-10-23 00:00:00'),(75445,11,'XE643','Being taken care of by a person, not specified as a health care professional or non health care person','Y','2025-10-23 00:00:00'),(75444,11,'4A62','Beh','Y','2025-10-23 00:00:00'),(75443,11,'6D86.Z','Behavioural or psychological disturbances in dementia, unspecified','Y','2025-10-23 00:00:00'),(75442,11,'6D86','Behavioural or psychological disturbances in dementia','Y','2025-10-23 00:00:00'),(75441,11,'XM7BS8','Begelomab','Y','2025-10-23 00:00:00'),(75440,11,'XM5T83','Befunolol','Y','2025-10-23 00:00:00'),(75438,11,'XE4D9','Bee','Y','2025-10-23 00:00:00'),(75439,11,'XM13H7','Bee venom','Y','2025-10-23 00:00:00'),(75437,11,'XM60U0','Bedaquiline','Y','2025-10-23 00:00:00'),(75436,11,'XE8PK','Bed, bedding or bedding accessories','Y','2025-10-23 00:00:00'),(75434,11,'XE38G','Bed rails','Y','2025-10-23 00:00:00'),(75435,11,'SB50','Bed sore disorder (TM1)','Y','2025-10-23 00:00:00'),(75433,11,'XM3D85','Beclomethasone','Y','2025-10-23 00:00:00'),(75432,11,'XM3293','Beclometasone','Y','2025-10-23 00:00:00'),(75431,11,'XM6KR2','Beclamide','Y','2025-10-23 00:00:00'),(75430,11,'8C70.0','Becker muscular dystrophy','Y','2025-10-23 00:00:00'),(75429,11,'XM0M02','Becaplermin','Y','2025-10-23 00:00:00'),(75428,11,'XN6XS','Bebaru virus','Y','2025-10-23 00:00:00'),(75427,11,'XE1G8','Bearings component of medical device','Y','2025-10-23 00:00:00'),(75426,11,'XA9N28','Beard hair','Y','2025-10-23 00:00:00'),(75425,11,'XE7UA','Bear, grizzly bear, polar bear','Y','2025-10-23 00:00:00'),(75424,11,'XM5HY6','Beaded lizard venom','Y','2025-10-23 00:00:00'),(75423,11,'XE010','Beach, shore or bank of a body of water','Y','2025-10-23 00:00:00'),(75422,11,'2A82.1Z','B-cell prolymphocytic leukaemia, unspecified','Y','2025-10-23 00:00:00'),(75421,11,'2A82.10','B-cell prolymphocytic leukaemia in complete remission','Y','2025-10-23 00:00:00'),(75420,11,'2A82.1','B-cell prolymphocytic leukaemia','Y','2025-10-23 00:00:00'),(75419,11,'XH04Y1','B-cell lymphoma, unclassifiable, with features intermediate between diffuse large B-cell lymphoma and classical Hodgkin lymphoma','Y','2025-10-23 00:00:00'),(75418,11,'XH9L43','B-cell lymphoma, unclassifiable, with features intermediate between diffuse large B-cell lymphoma and Burkitt lymphoma','Y','2025-10-23 00:00:00'),(75417,11,'2A86.Z','B-cell lymphoma, mixed features, unspecified','Y','2025-10-23 00:00:00'),(75416,11,'2A86','B-cell lymphoma, mixed features','Y','2025-10-23 00:00:00'),(75415,11,'2A86.2','B-cell lymphoma unclassifiable with features intermediate between classical Hodgkin lymphoma and diffuse large B-cell lymphoma','Y','2025-10-23 00:00:00'),(75414,11,'2A86.1','B-cell lymphoma unclassifiable with features intermediate between Burkitt lymphoma and diffuse large B-cell lymphoma','Y','2025-10-23 00:00:00'),(75413,11,'XH15T2','B-cell chronic lymphocytic leukaemia/small lymphocytic lymphoma','Y','2025-10-23 00:00:00'),(75411,11,'XM2GM2','b-benzalbutyramide','Y','2025-10-23 00:00:00'),(75412,11,'XM8866','BBIBP-CorV','Y','2025-10-23 00:00:00'),(75410,11,'XM8818','Bazedoxifene','Y','2025-10-23 00:00:00'),(75409,11,'XN2WJ','bayou virus','Y','2025-10-23 00:00:00'),(75408,11,'XM6K71','Bay rum','Y','2025-10-23 00:00:00'),(75407,11,'CA60.5','Bauxite fibrosis of lung','Y','2025-10-23 00:00:00'),(75406,11,'XE6VY','Battery-powered airport passenger vehicle','Y','2025-10-23 00:00:00'),(75405,11,'XE1D7','Battery-operated torch','Y','2025-10-23 00:00:00'),(75404,11,'XE72W','Battery, not elsewhere classified','Y','2025-10-23 00:00:00'),(75402,11,'XE2MD','Battery problem with high impedance','Y','2025-10-23 00:00:00'),(75403,11,'XE41Q','Battery problem with low impedance','Y','2025-10-23 00:00:00'),(75401,11,'XE16Z','Battery problem','Y','2025-10-23 00:00:00'),(75400,11,'XE3WM','Battery component of medical device','Y','2025-10-23 00:00:00'),(75399,11,'XE80Z','Battery charger component of medical device','Y','2025-10-23 00:00:00'),(75398,11,'XM7KW2','Batroxobin','Y','2025-10-23 00:00:00'),(75397,11,'XE2C6','Bathtub, spabath, shower cubicle','Y','2025-10-23 00:00:00'),(75395,11,'XE23P','Bat, hockey stick','Y','2025-10-23 00:00:00'),(75396,11,'XE78X','Bathtub','Y','2025-10-23 00:00:00'),(75394,11,'XH4C18','Basosquamous carcinoma','Y','2025-10-23 00:00:00'),(75393,11,'XA5G96','Basophils','Y','2025-10-23 00:00:00'),(75392,11,'XH9LV7','Basophil carcinoma','Y','2025-10-23 00:00:00'),(75390,11,'XM6FT1','Basiliximab','Y','2025-10-23 00:00:00'),(75391,11,'XH3AH8','Basophil adenoma','Y','2025-10-23 00:00:00'),(75389,11,'XA6JD7','Basilic vein','Y','2025-10-23 00:00:00'),(75388,11,'XA6SL1','Basilar plexus','Y','2025-10-23 00:00:00'),(75387,11,'XA2K99','Basilar artery','Y','2025-10-23 00:00:00'),(75386,11,'XN4RM','Basidiobolus ranarum','Y','2025-10-23 00:00:00'),(75385,11,'XN4XX','Basidiobolus','Y','2025-10-23 00:00:00'),(75384,11,'1F21','Basidiobolomycosis','Y','2025-10-23 00:00:00'),(75383,11,'VD03','Basic learning [WHODAS]','Y','2025-10-23 00:00:00'),(75382,11,'VV80','Basic learning','Y','2025-10-23 00:00:00'),(75381,11,'VW40','Basic interpersonal interactions','Y','2025-10-23 00:00:00'),(75379,11,'XA25G3','Base of tongue','Y','2025-10-23 00:00:00'),(75380,11,'XM7E88','Basic fuchsin','Y','2025-10-23 00:00:00'),(75378,11,'XA8NK6','Base of the third metacarpal bone','Y','2025-10-23 00:00:00'),(75377,11,'XA0E94','Base of the skull','Y','2025-10-23 00:00:00'),(75376,11,'XA37V2','Base of the second metacarpal bone','Y','2025-10-23 00:00:00'),(75375,11,'XA3ZF8','Base of the fourth metacarpal bone','Y','2025-10-23 00:00:00'),(75374,11,'XA2P67','Base of the first metacarpal bone','Y','2025-10-23 00:00:00'),(75373,11,'XA65Y7','Base of the fifth metacarpal bone','Y','2025-10-23 00:00:00'),(75372,11,'XA22M5','Base of other carpal bone','Y','2025-10-23 00:00:00'),(75371,11,'XH3GS1','Basaloid squamous cell carcinoma','Y','2025-10-23 00:00:00'),(75370,11,'XH2V80','Basaloid carcinoma','Y','2025-10-23 00:00:00'),(75369,11,'XH32K6','Basal-like carcinoma of breast','Y','2025-10-23 00:00:00'),(75368,11,'XA6GR4','Basal-lateral wall of heart','Y','2025-10-23 00:00:00'),(75367,11,'XA8ZU5','Basal vein','Y','2025-10-23 00:00:00'),(75366,11,'XA4T82','Basal ganglia','Y','2025-10-23 00:00:00'),(75364,11,'XH1JH6','Basal cell carcinoma, sarcomatoid','Y','2025-10-23 00:00:00'),(75365,11,'XH8189','Basal cell tumour','Y','2025-10-23 00:00:00'),(75363,11,'XH2615','Basal cell carcinoma, NOS','Y','2025-10-23 00:00:00'),(75362,11,'XH2CR0','Basal cell carcinoma, nodular','Y','2025-10-23 00:00:00'),(75361,11,'XH4GJ2','Basal cell carcinoma, micronodular','Y','2025-10-23 00:00:00'),(75360,11,'XH45F3','Basal cell carcinoma, fibroepithelial','Y','2025-10-23 00:00:00'),(75359,11,'XH6S67','Basal cell carcinoma with adnexal differentiation','Y','2025-10-23 00:00:00'),(75358,11,'2C70.0','Basal cell carcinoma of vulva','Y','2025-10-23 00:00:00'),(75357,11,'XH4ZC3','Basal cell carcinoma of the prostate','Y','2025-10-23 00:00:00'),(75356,11,'2C32.Z','Basal cell carcinoma of skin, unspecified','Y','2025-10-23 00:00:00'),(75355,11,'2C32','Basal cell carcinoma of skin','Y','2025-10-23 00:00:00'),(75354,11,'2B60.0','Basal cell carcinoma of lip','Y','2025-10-23 00:00:00'),(75353,11,'XH60D1','Basal cell adenoma','Y','2025-10-23 00:00:00'),(75352,11,'XH9SA7','Basal cell adenocarcinoma','Y','2025-10-23 00:00:00'),(75351,11,'GB90.43','Bartter syndrome','Y','2025-10-23 00:00:00'),(75350,11,'1C11','Bartonellosis','Y','2025-10-23 00:00:00'),(75349,11,'XN94Y','Bartonella washoensis','Y','2025-10-23 00:00:00'),(75348,11,'XN6KD','Bartonella vinsonii','Y','2025-10-23 00:00:00'),(75347,11,'XN43H','Bartonella rochalimae','Y','2025-10-23 00:00:00'),(75345,11,'XN302','Bartonella koehlerae','Y','2025-10-23 00:00:00'),(75346,11,'XN14D','Bartonella quintana','Y','2025-10-23 00:00:00'),(75344,11,'XN862','Bartonella henselae','Y','2025-10-23 00:00:00'),(75343,11,'XN5SH','Bartonella grahamii','Y','2025-10-23 00:00:00'),(75342,11,'XN5J5','Bartonella elizabethae','Y','2025-10-23 00:00:00'),(75341,11,'XN3F6','Bartonella clarridgeiae','Y','2025-10-23 00:00:00'),(75340,11,'XN0W4','Bartonella bacilliformis','Y','2025-10-23 00:00:00'),(75339,11,'XN3NJ','Bartonella','Y','2025-10-23 00:00:00'),(75338,11,'XA27K9','Bartholin gland','Y','2025-10-23 00:00:00'),(75337,11,'XE6FE','Bars on windows','Y','2025-10-23 00:00:00'),(75335,11,'DA23.2','Barrett ulcer','Y','2025-10-23 00:00:00'),(75336,11,'XM8SU9','Barrier cream','Y','2025-10-23 00:00:00'),(75333,11,'2B70.00','Barrett adenocarcinoma','Y','2025-10-23 00:00:00'),(75334,11,'DA23.0','Barrett epithelium','Y','2025-10-23 00:00:00'),(75331,11,'XM84M5','Barnidipine','Y','2025-10-23 00:00:00'),(75332,11,'8D89.3','Baroreflex failure','Y','2025-10-23 00:00:00'),(75329,11,'XM3HL0','Bark scorpion venom','Y','2025-10-23 00:00:00'),(75330,11,'XN5KQ','Barmah Forest virus','Y','2025-10-23 00:00:00'),(75328,11,'XM38G1','Barium sulfite','Y','2025-10-23 00:00:00'),(75327,11,'XM1FW7','Barium sulfate without suspending agents','Y','2025-10-23 00:00:00'),(75326,11,'XM2MR0','Barium sulfate with suspending agents','Y','2025-10-23 00:00:00'),(75325,11,'XM8SU1','Barium nonmedicinal','Y','2025-10-23 00:00:00'),(75324,11,'XM5DL6','Barium chloride','Y','2025-10-23 00:00:00'),(75323,11,'XM3709','Barium carbonate','Y','2025-10-23 00:00:00'),(75322,11,'XM1SM6','Baricitinib','Y','2025-10-23 00:00:00'),(75321,11,'XM4YG0','Barbiturates and derivatives','Y','2025-10-23 00:00:00'),(75320,11,'XM59B1','Barbiturate anaesthetic, intravenous','Y','2025-10-23 00:00:00'),(75319,11,'XM2B90','Barbital','Y','2025-10-23 00:00:00'),(75318,11,'XM45T7','Barbexaclone','Y','2025-10-23 00:00:00'),(75317,11,'XE6A4','Barbeque, outdoor cookers or griller, outdoor clay oven','Y','2025-10-23 00:00:00'),(75316,11,'XE3U7','Barbed wire','Y','2025-10-23 00:00:00'),(75315,11,'XE03P','Bar, pub, saloon or other commercial place primarily for provision of alcoholic drinks','Y','2025-10-23 00:00:00'),(75314,11,'XM2RD0','Banded krait snake venom','Y','2025-10-23 00:00:00'),(75311,11,'XM0HU4','Bamethan','Y','2025-10-23 00:00:00'),(75312,11,'XM5Y44','Bamifylline','Y','2025-10-23 00:00:00'),(75313,11,'XM4GX4','Bamipine','Y','2025-10-23 00:00:00'),(75308,11,'XM7MF9','Balsalazide','Y','2025-10-23 00:00:00'),(75309,11,'XM7670','Balugrastim','Y','2025-10-23 00:00:00'),(75310,11,'XM2U16','Bambuterol','Y','2025-10-23 00:00:00'),(75307,11,'XM9A16','Baloxavir marboxil','Y','2025-10-23 00:00:00'),(75306,11,'XE3J3','Balloons and other lighter than air devices as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(75305,11,'XE5AV','Balloon component of medical device','Y','2025-10-23 00:00:00'),(75304,11,'XH8RN4','Balloon cell naevus','Y','2025-10-23 00:00:00'),(75303,11,'XH8TE3','Balloon cell melanoma','Y','2025-10-23 00:00:00'),(75302,11,'8A01.21','Ballism','Y','2025-10-23 00:00:00'),(75301,11,'XE1HM','Ball, general, other than sport specific','Y','2025-10-23 00:00:00'),(75300,11,'XE5BJ','Ball used in sport','Y','2025-10-23 00:00:00'),(75299,11,'XE0HN','Ball component of medical device','Y','2025-10-23 00:00:00'),(75298,11,'GB55.0','Balkan nephropathy','Y','2025-10-23 00:00:00'),(75297,11,'XN3H4','Balantidium coli','Y','2025-10-23 00:00:00'),(75296,11,'XN7ZS','Balantidium','Y','2025-10-23 00:00:00'),(75295,11,'GB06.0Z','Balanoposthitis, unspecified','Y','2025-10-23 00:00:00'),(75293,11,'GB06.0','Balanoposthitis','Y','2025-10-23 00:00:00'),(75294,11,'GB06.02','Balanoposthitis due to infection','Y','2025-10-23 00:00:00'),(75292,11,'LD47.0','Balanced translocation and insertion in normal individual','Y','2025-10-23 00:00:00'),(75291,11,'LD47.3','Balanced sex or autosomal rearrangement in abnormal individual','Y','2025-10-23 00:00:00'),(75290,11,'LD47.Z','Balanced rearrangements or structural rearrangements, unspecified','Y','2025-10-23 00:00:00'),(75289,11,'LD47','Balanced rearrangements or structural rearrangements','Y','2025-10-23 00:00:00'),(75288,11,'LD47.2','Balanced autosomal rearrangement in abnormal individual','Y','2025-10-23 00:00:00'),(75287,11,'CA70.1','Bagassosis','Y','2025-10-23 00:00:00'),(75286,11,'XE80G','Bag, sack, not elsewhere classified','Y','2025-10-23 00:00:00'),(75285,11,'XE7E4','Bag component of medical device','Y','2025-10-23 00:00:00'),(75284,11,'XN2R7','Bacteroides fragilis','Y','2025-10-23 00:00:00'),(75283,11,'XN65H','Bacteroides','Y','2025-10-23 00:00:00'),(75282,11,'XM3KV2','Bacterial vaccines','Y','2025-10-23 00:00:00'),(75281,11,'FA12.0','Bacterial postinfectious arthropathy','Y','2025-10-23 00:00:00'),(75279,11,'CA40.0','Bacterial pneumonia','Y','2025-10-23 00:00:00'),(75280,11,'CA40.0Z','Bacterial pneumonia, unspecified','Y','2025-10-23 00:00:00'),(75278,11,'DA96.00','Bacterial overgrowth syndrome','Y','2025-10-23 00:00:00'),(75277,11,'DA25.10','Bacterial oesophageal ulcer','Y','2025-10-23 00:00:00'),(75276,11,'1D02.0','Bacterial myelitis','Y','2025-10-23 00:00:00'),(75274,11,'1D01.0','Bacterial meningitis','Y','2025-10-23 00:00:00'),(75275,11,'1D01.0Z','Bacterial meningitis, unspecified','Y','2025-10-23 00:00:00'),(75273,11,'1A0Z','Bacterial intestinal infections, unspecified','Y','2025-10-23 00:00:00'),(75272,11,'1C41','Bacterial infection of unspecified site','Y','2025-10-23 00:00:00'),(75271,11,'KA61.Z','Bacterial infection of the fetus or newborn, unspecified','Y','2025-10-23 00:00:00'),(75270,11,'FA10.0','Bacterial infection of joint','Y','2025-10-23 00:00:00'),(75268,11,'1D00.0','Bacterial encephalitis','Y','2025-10-23 00:00:00'),(75269,11,'1A1Z','Bacterial foodborne intoxications, unspecified','Y','2025-10-23 00:00:00'),(75267,11,'DA63.60','Bacterial duodenal ulcer','Y','2025-10-23 00:00:00'),(75266,11,'1B70','Bacterial cellulitis, erysipelas or lymphangitis','Y','2025-10-23 00:00:00'),(75265,11,'1B70.Z','Bacterial cellulitis or lymphangitis due to unspecified bacterium','Y','2025-10-23 00:00:00'),(75264,11,'1B70.Y','Bacterial cellulitis or lymphangitis due to other specified bacterium','Y','2025-10-23 00:00:00'),(75263,11,'XM7C66','Bacterial and viral vaccines, combined','Y','2025-10-23 00:00:00'),(75262,11,'XN87X','Bacteria, neither Gram Negative nor Gram Positive','Y','2025-10-23 00:00:00'),(75261,11,'MA15.0','Bacteraemia','Y','2025-10-23 00:00:00'),(75259,11,'9B78.1Z','Background retinopathy and retinal vascular changes, unspecified','Y','2025-10-23 00:00:00'),(75260,11,'XM5US2','Baclofen','Y','2025-10-23 00:00:00'),(75257,11,'XE9RA','Backflow','Y','2025-10-23 00:00:00'),(75258,11,'9B78.1','Background retinopathy and retinal vascular changes','Y','2025-10-23 00:00:00'),(75254,11,'XA2P90','Back','Y','2025-10-23 00:00:00'),(75255,11,'ME86.21','Back syndrome with radiating pain','Y','2025-10-23 00:00:00'),(75256,11,'ME86.20','Back syndrome without radiating pain','Y','2025-10-23 00:00:00'),(75252,11,'XM00V5','Bacitracin zinc','Y','2025-10-23 00:00:00'),(75253,11,'XM6Y48','Bacitracin zinc with neomycin','Y','2025-10-23 00:00:00'),(75251,11,'XM20R8','Bacitracin','Y','2025-10-23 00:00:00'),(75249,11,'XM4SG9','Bacillus subtilis','Y','2025-10-23 00:00:00'),(75250,11,'XM4PL5','Bacimycin','Y','2025-10-23 00:00:00'),(75248,11,'XM4KK2','Bacillus lactobacillus','Y','2025-10-23 00:00:00'),(75246,11,'XN94F','Bacillus anthracis','Y','2025-10-23 00:00:00'),(75247,11,'XN8PY','Bacillus cereus','Y','2025-10-23 00:00:00'),(75245,11,'XN9ZE','Bacillus','Y','2025-10-23 00:00:00'),(75243,11,'XM46K9','Bacampicillin','Y','2025-10-23 00:00:00'),(75244,11,'XM0SY1','b-acetyldigoxin','Y','2025-10-23 00:00:00'),(75241,11,'XE0CS','Baby pram, buggy, pusher, stroller, carriage','Y','2025-10-23 00:00:00'),(75242,11,'XE4JE','Baby walker','Y','2025-10-23 00:00:00'),(75240,11,'XE9R1','Baby or child pacifier, dummy','Y','2025-10-23 00:00:00'),(75238,11,'XE52H','Baby or child car seat','Y','2025-10-23 00:00:00'),(75239,11,'XE49V','Baby or child changing table','Y','2025-10-23 00:00:00'),(75237,11,'XE1AW','Baby or child article','Y','2025-10-23 00:00:00'),(75236,11,'XE12N','Baby gate or barrier','Y','2025-10-23 00:00:00'),(75235,11,'XE8U9','Baby exerciser, jumper, or portable swing for home use','Y','2025-10-23 00:00:00'),(75234,11,'XE34A','Baby carrier, back pack type','Y','2025-10-23 00:00:00'),(75233,11,'XE7RL','Baby carriage as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(75232,11,'XE5SX','Baby carriage as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(75231,11,'XE1JQ','Baby bottle or nipple','Y','2025-10-23 00:00:00'),(75229,11,'XE7NS','Baboon, monkey, chimpanzee, gorilla','Y','2025-10-23 00:00:00'),(75230,11,'XE8VC','Baby baths or bathinettes','Y','2025-10-23 00:00:00'),(75227,11,'XN9YX','Babesia','Y','2025-10-23 00:00:00'),(75228,11,'1F52','Babesiosis','Y','2025-10-23 00:00:00'),(75225,11,'XN4F9','BA.2.75','Y','2025-10-23 00:00:00'),(75226,11,'XN434','Babanki virus','Y','2025-10-23 00:00:00'),(75224,11,'XH1D04','B lymphoblastic leukemia/lymphoma, BCR-ABL1-like','Y','2025-10-23 00:00:00'),(75222,11,'XH81V3','B lymphoblastic leukaemia/lymphoma, NOS','Y','2025-10-23 00:00:00'),(75223,11,'XH0KD4','B lymphoblastic leukemia/lymphoma with iAMP21','Y','2025-10-23 00:00:00'),(75221,11,'XH8GG0','B lymphoblastic leukaemia/lymphoma with t(v;11q23); MLL rearranged','Y','2025-10-23 00:00:00'),(75220,11,'XH73L9','B lymphoblastic leukaemia/lymphoma with t(9;22)(q34;q11.2); BCR-ABL1','Y','2025-10-23 00:00:00'),(75219,11,'XH4ZL2','B lymphoblastic leukaemia/lymphoma with t(5;14)(q31;q32); IL3-IGH','Y','2025-10-23 00:00:00'),(75218,11,'XH4KA2','B lymphoblastic leukaemia/lymphoma with t(12;21)(p13;q22); TEL-AML1 (ETV6-RUNX1)','Y','2025-10-23 00:00:00'),(75217,11,'XH3GU8','B lymphoblastic leukaemia/lymphoma with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1)','Y','2025-10-23 00:00:00'),(75216,11,'XH2MD9','B lymphoblastic leukaemia/lymphoma with hypodiploidy (Hypodiploid ALL)','Y','2025-10-23 00:00:00'),(75215,11,'XH24C7','B lymphoblastic leukaemia/lymphoma with hyperdiploidy','Y','2025-10-23 00:00:00'),(75214,11,'2A70.0','B Lymphoblastic leukaemia or lymphoma, not elsewhere classified','Y','2025-10-23 00:00:00'),(75212,11,'XS05','B Local Disease','Y','2025-10-23 00:00:00'),(75213,11,'2A70.1','B lymphoblastic leukaemia or lymphoma with t(9:22) (q34;q11.2); BCR-ABL1','Y','2025-10-23 00:00:00'),(75211,11,'XM4H09','B complex vitamins and derivates','Y','2025-10-23 00:00:00'),(75210,11,'XH5RG7','B cell lymphoma, NOS','Y','2025-10-23 00:00:00'),(75208,11,'XM1F97','Azuresin','Y','2025-10-23 00:00:00'),(75209,11,'XA7AN5','Azygos vein','Y','2025-10-23 00:00:00'),(75206,11,'GB04.0','Azoospermia','Y','2025-10-23 00:00:00'),(75207,11,'XM3DB8','Aztreonam','Y','2025-10-23 00:00:00'),(75205,11,'XM1UP9','Azobenzene','Y','2025-10-23 00:00:00'),(75204,11,'XM8820','Azlocillin','Y','2025-10-23 00:00:00'),(75202,11,'XM1329','Azithromycin','Y','2025-10-23 00:00:00'),(75203,11,'XM5QC3','Azithromycin, fluconazole and secnidazole','Y','2025-10-23 00:00:00'),(75200,11,'XM7H46','Azinphos-methyl','Y','2025-10-23 00:00:00'),(75201,11,'XM3GN3','Aziridine','Y','2025-10-23 00:00:00'),(75199,11,'XM7RX0','Azinphos-ethyl','Y','2025-10-23 00:00:00'),(75197,11,'XM4EZ4','Azidocillin','Y','2025-10-23 00:00:00'),(75198,11,'XM5GC5','Azilsartan','Y','2025-10-23 00:00:00'),(75196,11,'XM49V8','Azidamfenicol','Y','2025-10-23 00:00:00'),(75195,11,'XM9VB8','Azelastine','Y','2025-10-23 00:00:00'),(75194,11,'XM6SG3','Azelaic acid','Y','2025-10-23 00:00:00'),(75193,11,'XM99R8','Azathioprine','Y','2025-10-23 00:00:00'),(75192,11,'XM0TE5','Azatepa','Y','2025-10-23 00:00:00'),(75190,11,'XM1Q78','Azaserine','Y','2025-10-23 00:00:00'),(75191,11,'XM6Z93','Azatadine','Y','2025-10-23 00:00:00'),(75188,11,'XM6SW5','Azapropazone','Y','2025-10-23 00:00:00'),(75189,11,'XM4TR6','Azaribine','Y','2025-10-23 00:00:00'),(75187,11,'XM1269','Azapetine','Y','2025-10-23 00:00:00'),(75185,11,'XM17F2','Azadirachta plant','Y','2025-10-23 00:00:00'),(75186,11,'XM4HZ1','Azanidazole','Y','2025-10-23 00:00:00'),(75183,11,'XM92X1','Azacitidine','Y','2025-10-23 00:00:00'),(75184,11,'XM23M7','Azacyclonol','Y','2025-10-23 00:00:00'),(75182,11,'XM6JL9','Axitinib','Y','2025-10-23 00:00:00'),(75180,11,'XA3EY8','Axillary vein','Y','2025-10-23 00:00:00'),(75181,11,'XA17N0','Axis','Y','2025-10-23 00:00:00'),(75178,11,'XA1ZC4','Axillary nerve','Y','2025-10-23 00:00:00'),(75179,11,'XA3PG5','Axillary tail of breast','Y','2025-10-23 00:00:00'),(75176,11,'EE00.01','Axillary hyperhidrosis','Y','2025-10-23 00:00:00'),(75177,11,'XA90B2','Axillary lymph node','Y','2025-10-23 00:00:00'),(75174,11,'XA17J1','Axilla','Y','2025-10-23 00:00:00'),(75175,11,'XA38W3','Axillary artery','Y','2025-10-23 00:00:00'),(75173,11,'FA92.0Z','Axial spondyloarthritis, unspecified','Y','2025-10-23 00:00:00'),(75172,11,'FA92.0','Axial spondyloarthritis','Y','2025-10-23 00:00:00'),(75171,11,'XA4S38','Axial skeleton','Y','2025-10-23 00:00:00'),(75170,11,'9A20.0Z','Axial displacement of eyeball, unspecified','Y','2025-10-23 00:00:00'),(75169,11,'9A20.0','Axial displacement of eyeball','Y','2025-10-23 00:00:00'),(75168,11,'JB43.6','Awareness under general anaesthesia during the puerperium','Y','2025-10-23 00:00:00'),(75167,11,'JA67.6','Awareness under general anaesthesia during pregnancy','Y','2025-10-23 00:00:00'),(75166,11,'JB0C.8','Awareness under general anaesthesia during labour or delivery','Y','2025-10-23 00:00:00'),(75165,11,'NE89','Awareness under general anaesthesia','Y','2025-10-23 00:00:00'),(75164,11,'NA0D.15','Avulsion of tooth','Y','2025-10-23 00:00:00'),(75163,11,'NC92.11','Avulsion of tibial tuberosity','Y','2025-10-23 00:00:00'),(75162,11,'NB91.05','Avulsion of spleen','Y','2025-10-23 00:00:00'),(75160,11,'NC92.40','Avulsion of fibular head','Y','2025-10-23 00:00:00'),(75161,11,'NA09.0','Avulsion of scalp','Y','2025-10-23 00:00:00'),(75159,11,'NA06.85','Avulsion of eye, unilateral','Y','2025-10-23 00:00:00'),(75158,11,'NA06.86','Avulsion of eye, bilateral','Y','2025-10-23 00:00:00'),(75157,11,'NC92.10','Avulsion of cruciate ligament insertion','Y','2025-10-23 00:00:00'),(75156,11,'XJ36W','Avulsion fracture','Y','2025-10-23 00:00:00'),(75155,11,'XM8WF0','Avomine','Y','2025-10-23 00:00:00'),(75154,11,'MB22.0','Avolition','Y','2025-10-23 00:00:00'),(75153,11,'6B83','Avoidant-restrictive food intake disorder','Y','2025-10-23 00:00:00'),(75152,11,'MB29.0','Avoidant or restrictive eating','Y','2025-10-23 00:00:00'),(75151,11,'MB23.2','Avoidance behaviour','Y','2025-10-23 00:00:00'),(75150,11,'XM0H27','Avocado and soyabean oil, unsaponifiables','Y','2025-10-23 00:00:00'),(75149,11,'XN05K','Aviadenovirus','Y','2025-10-23 00:00:00'),(75148,11,'XM2065','Avelumab','Y','2025-10-23 00:00:00'),(75147,11,'XM1WB2','Avanafil','Y','2025-10-23 00:00:00'),(75146,11,'XM9F01','Avalglucosidase alfa','Y','2025-10-23 00:00:00'),(75145,11,'8B44.01','Autosomal recessive hereditary spastic paraplegia','Y','2025-10-23 00:00:00'),(75144,11,'EC20.02','Autosomal recessive congenital ichthyosis','Y','2025-10-23 00:00:00'),(75143,11,'8C73.0','Autosomal recessive cardiomyopathy or ophthalmoplegia','Y','2025-10-23 00:00:00'),(75142,11,'LD47.4','Autosomal fragile site','Y','2025-10-23 00:00:00'),(75141,11,'GB82','Autosomal dominant tubulointerstitial disease','Y','2025-10-23 00:00:00'),(75140,11,'GB81','Autosomal dominant polycystic kidney disease','Y','2025-10-23 00:00:00'),(75139,11,'8B44.00','Autosomal dominant hereditary spastic paraplegia','Y','2025-10-23 00:00:00'),(75138,11,'8D88.4','Autonomic neuropathy in endocrine and metabolic diseases','Y','2025-10-23 00:00:00'),(75137,11,'8D88.0','Autonomic neuropathy due to sodium channelopathies','Y','2025-10-23 00:00:00'),(75135,11,'8D88.Z','Autonomic neuropathies, unspecified','Y','2025-10-23 00:00:00'),(75136,11,'8D88.1','Autonomic neuropathy due to diabetes mellitus','Y','2025-10-23 00:00:00'),(75133,11,'8D86','Autonomic nervous system hyperactivity','Y','2025-10-23 00:00:00'),(75134,11,'8D88','Autonomic neuropathies','Y','2025-10-23 00:00:00'),(75132,11,'8D85','Autonomic nervous system disorder due to substances','Y','2025-10-23 00:00:00'),(75131,11,'8D83','Autonomic nervous system disorder due to infection','Y','2025-10-23 00:00:00'),(75130,11,'8D87','Autonomic nervous system disorder due to certain specified neurodegenerative disorder','Y','2025-10-23 00:00:00'),(75129,11,'XA7718','Autonomic nervous system','Y','2025-10-23 00:00:00'),(75128,11,'8D8C','Autonomic dysreflexia','Y','2025-10-23 00:00:00'),(75127,11,'8D88.3','Autonomic disorder due to toxins','Y','2025-10-23 00:00:00'),(75126,11,'XM7CM2','Automobile fuel vapor','Y','2025-10-23 00:00:00'),(75125,11,'XM27Z5','Automobile fuel','Y','2025-10-23 00:00:00'),(75124,11,'MB45.1','Automatism','Y','2025-10-23 00:00:00'),(75122,11,'XM0YQ8','Autologous limbal stem cells','Y','2025-10-23 00:00:00'),(75123,11,'XE968','Automatic injection system component of medical device','Y','2025-10-23 00:00:00'),(75121,11,'4A6Z','Autoinflammatory disorders, unspecified','Y','2025-10-23 00:00:00'),(75119,11,'9B71.5','Autoimmune retinopathy','Y','2025-10-23 00:00:00'),(75120,11,'5A03.2','Autoimmune thyroiditis','Y','2025-10-23 00:00:00'),(75118,11,'5B00','Autoimmune polyendocrinopathy','Y','2025-10-23 00:00:00'),(75117,11,'DC33','Autoimmune pancreatitis','Y','2025-10-23 00:00:00'),(75116,11,'EJ30','Autoimmune or other photodermatoses','Y','2025-10-23 00:00:00'),(75115,11,'8C81','Autoimmune myopathy','Y','2025-10-23 00:00:00'),(75114,11,'DB96.Z','Autoimmune liver disease, unspecified','Y','2025-10-23 00:00:00'),(75113,11,'DB96','Autoimmune liver disease','Y','2025-10-23 00:00:00'),(75112,11,'9A75','Autoimmune keratitis','Y','2025-10-23 00:00:00'),(75111,11,'AB31.5','Autoimmune inner ear disease','Y','2025-10-23 00:00:00'),(75110,11,'5A50.03','Autoimmune hypoparathyroidism','Y','2025-10-23 00:00:00'),(75109,11,'DB96.0','Autoimmune hepatitis','Y','2025-10-23 00:00:00'),(75108,11,'3A20.0','Autoimmune haemolytic anaemia, warm type','Y','2025-10-23 00:00:00'),(75106,11,'3A20.1','Autoimmune haemolytic anaemia, cold type','Y','2025-10-23 00:00:00'),(75107,11,'3A20.2','Autoimmune haemolytic anaemia, mixed type, cold and warm','Y','2025-10-23 00:00:00'),(75105,11,'DA42.0','Autoimmune gastritis','Y','2025-10-23 00:00:00'),(75104,11,'8D82','Autoimmune disorders involving the autonomic nervous system','Y','2025-10-23 00:00:00'),(75103,11,'4A60.Z','Autoimflammatory syndrome, unspecified','Y','2025-10-23 00:00:00'),(75102,11,'XE4SA','Auto rickshaw three-wheeler as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(75101,11,'XE73V','Auto rickshaw three-wheeler as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(75100,11,'6A02.Z','Autism spectrum disorder, unspecified','Y','2025-10-23 00:00:00'),(75099,11,'6A02.0','Autism spectrum disorder without disorder of intellectual development and with mild or no impairment of functional language','Y','2025-10-23 00:00:00'),(75098,11,'6A02.2','Autism spectrum disorder without disorder of intellectual development and with impaired functional language','Y','2025-10-23 00:00:00'),(75097,11,'6A02.1','Autism spectrum disorder with disorder of intellectual development and with mild or no impairment of functional language','Y','2025-10-23 00:00:00'),(75096,11,'6A02.3','Autism spectrum disorder with disorder of intellectual development and with impaired functional language','Y','2025-10-23 00:00:00'),(75095,11,'6A02.5','Autism spectrum disorder with disorder of intellectual development and with absence of functional language','Y','2025-10-23 00:00:00'),(75094,11,'6A02','Autism spectrum disorder','Y','2025-10-23 00:00:00'),(75093,11,'XM10T2','Australian urodacus scorpion venom','Y','2025-10-23 00:00:00'),(75092,11,'XM51Y1','Australian paralysis tick venom','Y','2025-10-23 00:00:00'),(75091,11,'XM0YV3','Australian marbled scorpion venom','Y','2025-10-23 00:00:00'),(75090,11,'XM52L4','Australian giant centipede venom','Y','2025-10-23 00:00:00'),(75089,11,'XM72V7','Australian forest scorpion venom','Y','2025-10-23 00:00:00'),(75088,11,'XM10R0','Australian desert scorpion venom','Y','2025-10-23 00:00:00'),(75087,11,'XM1FY9','Australian copperhead snake venom','Y','2025-10-23 00:00:00'),(75086,11,'XM5MD7','Australian brown snake venom','Y','2025-10-23 00:00:00'),(75085,11,'XM48S4','Australian black rock scorpion venom','Y','2025-10-23 00:00:00'),(75084,11,'XM3DZ2','Australasian black snake venom','Y','2025-10-23 00:00:00'),(75082,11,'XM8526','Aurothioglycanide','Y','2025-10-23 00:00:00'),(75083,11,'XM28Y9','Aurotioprol','Y','2025-10-23 00:00:00'),(75081,11,'XM1MX1','Aurothioglucose','Y','2025-10-23 00:00:00'),(75080,11,'XA5DA8','Auriculotemporal nerve','Y','2025-10-23 00:00:00'),(75079,11,'XA8XC7','Auricularis tendon','Y','2025-10-23 00:00:00'),(75078,11,'XA97T8','Auricular vein','Y','2025-10-23 00:00:00'),(75077,11,'XA7YF1','Auricular lymph node','Y','2025-10-23 00:00:00'),(75076,11,'XA0P44','Auricular branch of vagus nerve','Y','2025-10-23 00:00:00'),(75074,11,'XM5HT1','Auranofin','Y','2025-10-23 00:00:00'),(75075,11,'XM8ZY5','Aurantiin','Y','2025-10-23 00:00:00'),(75072,11,'AB1A.0','Aural polyp','Y','2025-10-23 00:00:00'),(75073,11,'XM0MT5','Auramine','Y','2025-10-23 00:00:00'),(75070,11,'MB49','Aura','Y','2025-10-23 00:00:00'),(75071,11,'XN0SK','Aura virus','Y','2025-10-23 00:00:00'),(75069,11,'XE7SF','Auger, post hole digger','Y','2025-10-23 00:00:00'),(75068,11,'XA2G56','Auerbach plexus','Y','2025-10-23 00:00:00'),(75067,11,'XA44P4','Auditory vestibule','Y','2025-10-23 00:00:00'),(75066,11,'AB57','Auditory synaptopathy or neuropathy','Y','2025-10-23 00:00:00'),(75064,11,'XE8NW','Audible prompt or feedback','Y','2025-10-23 00:00:00'),(75065,11,'MB27.20','Auditory hallucinations','Y','2025-10-23 00:00:00'),(75063,11,'XH8KN7','Atypical vascular lesion','Y','2025-10-23 00:00:00'),(75062,11,'XH7ZQ4','Atypical teratoid/rhabdoid tumour','Y','2025-10-23 00:00:00'),(75061,11,'XH7ZB1','Atypical polypoid adenomyoma','Y','2025-10-23 00:00:00'),(75060,11,'8A00.1Z','Atypical parkinsonism, unspecified','Y','2025-10-23 00:00:00'),(75059,11,'8A00.1','Atypical parkinsonism','Y','2025-10-23 00:00:00'),(75058,11,'XH0TA8','Atypical myxoinflammatory fibroblastic tumour','Y','2025-10-23 00:00:00'),(75057,11,'XH1PF6','Atypical meningioma','Y','2025-10-23 00:00:00'),(75056,11,'2F20.1','Atypical melanocytic naevus','Y','2025-10-23 00:00:00'),(75055,11,'XH6KZ1','Atypical medullary carcinoma','Y','2025-10-23 00:00:00'),(75054,11,'1D60.11','Atypical Marburg disease','Y','2025-10-23 00:00:00'),(75053,11,'XH0RW4','Atypical lipomatous tumour','Y','2025-10-23 00:00:00'),(75052,11,'1D62.2','Atypical hantavirus disease','Y','2025-10-23 00:00:00'),(75051,11,'XH3T38','Atypical follicular adenoma','Y','2025-10-23 00:00:00'),(75050,11,'XH1RM7','Atypical fibrous histiocytoma','Y','2025-10-23 00:00:00'),(75049,11,'1D60.03','Atypical Ebola disease','Y','2025-10-23 00:00:00'),(75048,11,'CA25.1','Atypical cystic fibrosis','Y','2025-10-23 00:00:00'),(75047,11,'XH26U9','Atypical chronic myeloid leukaemia, Philadelphia chromosome (Ph1) negative','Y','2025-10-23 00:00:00'),(75046,11,'2A41','Atypical chronic myeloid leukaemia, BCR-ABL1negative','Y','2025-10-23 00:00:00'),(75045,11,'XH21X5','Atypical chronic myeloid leukaemia, BCR/ABL negative','Y','2025-10-23 00:00:00'),(75044,11,'XH3Y57','Atypical choroid plexus papilloma','Y','2025-10-23 00:00:00'),(75043,11,'XH0FY0','Atypical cartilaginous tumour','Y','2025-10-23 00:00:00'),(75041,11,'XH6VL9','Atypical adenoma','Y','2025-10-23 00:00:00'),(75042,11,'XH5QL3','Atypical adenomatous hyperplasia','Y','2025-10-23 00:00:00'),(75040,11,'AB13.1','Attic perforation of tympanic membrane','Y','2025-10-23 00:00:00'),(75039,11,'QB62.8','Attention to urethrostomy','Y','2025-10-23 00:00:00'),(75038,11,'QB62.7','Attention to ureterostomy','Y','2025-10-23 00:00:00'),(75037,11,'QB62.0','Attention to tracheostomy','Y','2025-10-23 00:00:00'),(75036,11,'QB85','Attention to surgical dressings, drains or sutures','Y','2025-10-23 00:00:00'),(75035,11,'QB62.Y','Attention to other artificial openings','Y','2025-10-23 00:00:00'),(75034,11,'QB62.6','Attention to nephrostomy','Y','2025-10-23 00:00:00'),(75033,11,'QB62.2','Attention to ileostomy','Y','2025-10-23 00:00:00'),(75032,11,'QB62.1','Attention to gastrostomy','Y','2025-10-23 00:00:00'),(75031,11,'QB62.4','Attention to cystostomy','Y','2025-10-23 00:00:00'),(75030,11,'QB62.3','Attention to colostomy','Y','2025-10-23 00:00:00'),(75029,11,'QB62.5','Attention to artificial vagina','Y','2025-10-23 00:00:00'),(75028,11,'QB62.Z','Attention to artificial openings, unspecified','Y','2025-10-23 00:00:00'),(75027,11,'QB62','Attention to artificial openings','Y','2025-10-23 00:00:00'),(75026,11,'MB28.0','Attention seeking','Y','2025-10-23 00:00:00'),(75025,11,'VD00','Attention functions [WHODAS]','Y','2025-10-23 00:00:00'),(75024,11,'VE13','Attention functions [BMDS]','Y','2025-10-23 00:00:00'),(75023,11,'VV02','Attention functions','Y','2025-10-23 00:00:00'),(75022,11,'6A05.Z','Attention deficit hyperactivity disorder, presentation unspecified','Y','2025-10-23 00:00:00'),(75021,11,'6A05.0','Attention deficit hyperactivity disorder, predominantly inattentive presentation','Y','2025-10-23 00:00:00'),(75020,11,'6A05.1','Attention deficit hyperactivity disorder, predominantly hyperactive-impulsive presentation','Y','2025-10-23 00:00:00'),(75019,11,'6A05.Y','Attention deficit hyperactivity disorder, other specified presentation','Y','2025-10-23 00:00:00'),(75018,11,'6A05.2','Attention deficit hyperactivity disorder, combined presentation','Y','2025-10-23 00:00:00'),(75017,11,'6A05','Attention deficit hyperactivity disorder','Y','2025-10-23 00:00:00'),(75016,11,'XM6V74','Attapulgite','Y','2025-10-23 00:00:00'),(75015,11,'PJ70','Attack on or destruction of aircraft during armed conflict due to enemy fire or explosives','Y','2025-10-23 00:00:00'),(75014,11,'PJ71','Attack on or destruction of aircraft during armed conflict due to collision with other aircraft','Y','2025-10-23 00:00:00'),(75012,11,'XM7Y01','Atropine','Y','2025-10-23 00:00:00'),(75013,11,'XM7LZ6','Atropine derivative','Y','2025-10-23 00:00:00'),(75011,11,'EE40.Z','Atrophy or degeneration of dermal or subcutaneous connective tissue, unspecified type','Y','2025-10-23 00:00:00'),(75009,11,'DA03.2','Atrophy of tongue papillae','Y','2025-10-23 00:00:00'),(75010,11,'EE40','Atrophy or degeneration of dermal or subcutaneous connective tissue','Y','2025-10-23 00:00:00'),(75008,11,'GB03','Atrophy of testis','Y','2025-10-23 00:00:00'),(75007,11,'3B81.2','Atrophy of spleen','Y','2025-10-23 00:00:00'),(75006,11,'9A25.5','Atrophy of soft tissue of orbit','Y','2025-10-23 00:00:00'),(75005,11,'DA04.0','Atrophy of salivary gland','Y','2025-10-23 00:00:00'),(75004,11,'GA91.5','Atrophy of prostate','Y','2025-10-23 00:00:00'),(75003,11,'DC35.0','Atrophy of pancreas','Y','2025-10-23 00:00:00'),(75002,11,'DA0A.2','Atrophy of edentulous alveolar ridge','Y','2025-10-23 00:00:00'),(75001,11,'GB23.3','Atrophy of breast','Y','2025-10-23 00:00:00'),(75000,11,'AB73','Atrophy ear','Y','2025-10-23 00:00:00'),(74999,11,'EL50.2','Atrophic surgical scar','Y','2025-10-23 00:00:00'),(74998,11,'DA0B.3','Atrophic senile gingivitis','Y','2025-10-23 00:00:00'),(74997,11,'EE40.2','Atrophic scarring of the skin','Y','2025-10-23 00:00:00'),(74996,11,'9B75.03','Atrophic late-stage age-related macular degeneration','Y','2025-10-23 00:00:00'),(74994,11,'XM1EY0','Atropa belladonna plant','Y','2025-10-23 00:00:00'),(74995,11,'9C22.0','Atrophic Bulbi','Y','2025-10-23 00:00:00'),(74993,11,'LA87.44','Atrioventricular septal defect with ventricular imbalance','Y','2025-10-23 00:00:00'),(74992,11,'LA87.41','Atrioventricular septal defect with communication at the ventricular level only','Y','2025-10-23 00:00:00'),(74991,11,'LA87.40','Atrioventricular septal defect with communication at the atrial level only','Y','2025-10-23 00:00:00'),(74990,11,'LA87.43','Atrioventricular septal defect with communication at atrial level and unrestrictive communication at ventricular level','Y','2025-10-23 00:00:00'),(74989,11,'LA87.42','Atrioventricular septal defect with communication at atrial level and restrictive communication at ventricular level','Y','2025-10-23 00:00:00'),(74988,11,'LA87.45','Atrioventricular septal defect and tetralogy of Fallot','Y','2025-10-23 00:00:00'),(74987,11,'BC81.7Z','Atrioventricular reciprocating tachycardia, unspecified','Y','2025-10-23 00:00:00'),(74986,11,'BC81.70','Atrioventricular reciprocating tachycardia, orthodromic','Y','2025-10-23 00:00:00'),(74985,11,'BC81.71','Atrioventricular reciprocating tachycardia, antidromic','Y','2025-10-23 00:00:00'),(74984,11,'BC81.7','Atrioventricular reciprocating tachycardia','Y','2025-10-23 00:00:00'),(74983,11,'XA4359','Atrioventricular node','Y','2025-10-23 00:00:00'),(74982,11,'BC81.8','Atrioventricular nodal reentry tachycardia','Y','2025-10-23 00:00:00'),(74981,11,'BC63.1Z','Atrioventricular block, second degree, unspecified','Y','2025-10-23 00:00:00'),(74980,11,'BC63.1','Atrioventricular block, second degree','Y','2025-10-23 00:00:00'),(74979,11,'BC63.0','Atrioventricular block, first degree','Y','2025-10-23 00:00:00'),(74978,11,'LA8E.1','Atrial septal defect within oval fossa','Y','2025-10-23 00:00:00'),(74977,11,'BC60','Atrial premature depolarization','Y','2025-10-23 00:00:00'),(74976,11,'BC81.3Z','Atrial fibrillation, unspecified','Y','2025-10-23 00:00:00'),(74975,11,'BC81.3','Atrial fibrillation','Y','2025-10-23 00:00:00'),(74974,11,'LB31.8','Atresia or stenosis of ureter','Y','2025-10-23 00:00:00'),(74973,11,'LB15.1','Atresia of small intestine','Y','2025-10-23 00:00:00'),(74972,11,'LB12.10','Atresia of oesophagus with oesophagobronchial fistula','Y','2025-10-23 00:00:00'),(74971,11,'LB12.1','Atresia of oesophagus','Y','2025-10-23 00:00:00'),(74970,11,'LB45.6','Atresia of fallopian tube','Y','2025-10-23 00:00:00'),(74968,11,'XM5GC4','Atracurium besilate','Y','2025-10-23 00:00:00'),(74969,11,'XM3B42','Atranorin','Y','2025-10-23 00:00:00'),(74967,11,'XM0FZ0','Atracurium','Y','2025-10-23 00:00:00'),(74966,11,'XM9CB1','Atovaquone','Y','2025-10-23 00:00:00'),(74965,11,'XM8R05','Atosiban','Y','2025-10-23 00:00:00'),(74964,11,'XM2WF6','Atorvastatin','Y','2025-10-23 00:00:00'),(74963,11,'EC91.1','Atopic prurigo','Y','2025-10-23 00:00:00'),(74962,11,'EA85.20','Atopic eczema of hands','Y','2025-10-23 00:00:00'),(74961,11,'9A06.70','Atopic eczema of eyelids','Y','2025-10-23 00:00:00'),(74959,11,'XM2D08','Atophan','Y','2025-10-23 00:00:00'),(74960,11,'EA80','Atopic eczema','Y','2025-10-23 00:00:00'),(74958,11,'XM5993','Atonia drug, intestinal','Y','2025-10-23 00:00:00'),(74957,11,'MB45.2','Atonia','Y','2025-10-23 00:00:00'),(74956,11,'XM9DQ5','Atomoxetine','Y','2025-10-23 00:00:00'),(74954,11,'XA2XE8','Atlas','Y','2025-10-23 00:00:00'),(74955,11,'XM4W34','Atogepant','Y','2025-10-23 00:00:00'),(74952,11,'XA7EM1','Atlantoaxial joint','Y','2025-10-23 00:00:00'),(74953,11,'XA65F2','Atlantooccipital joint','Y','2025-10-23 00:00:00'),(74951,11,'LB73.22','Atlanto-axial instability or subluxation','Y','2025-10-23 00:00:00'),(74950,11,'NA23.11','Atlanto-axial dislocation','Y','2025-10-23 00:00:00'),(74949,11,'XM56M4','Atidarsagene autotemcel','Y','2025-10-23 00:00:00'),(74948,11,'MB46.2','Athetosis','Y','2025-10-23 00:00:00'),(74947,11,'BD40.Z','Atherosclerotic chronic arterial occlusive disease, unspecified','Y','2025-10-23 00:00:00'),(74946,11,'BD40','Atherosclerotic chronic arterial occlusive disease','Y','2025-10-23 00:00:00'),(74945,11,'BD40.2','Atherosclerosis of renal artery','Y','2025-10-23 00:00:00'),(74944,11,'BD40.1','Atherosclerosis of aorta','Y','2025-10-23 00:00:00'),(74942,11,'XM0M62','Atenolol','Y','2025-10-23 00:00:00'),(74943,11,'XM8SU2','Atezolizumab','Y','2025-10-23 00:00:00'),(74941,11,'XM4TF3','Atazanavir and Ritonavir','Y','2025-10-23 00:00:00'),(74940,11,'XM4KM0','Atazanavir and Cobicistat','Y','2025-10-23 00:00:00'),(74939,11,'XM2U50','Atazanavir','Y','2025-10-23 00:00:00'),(74938,11,'MB44.0','Ataxic gait','Y','2025-10-23 00:00:00'),(74937,11,'8A03.Z','Ataxic disorders, unspecified','Y','2025-10-23 00:00:00'),(74935,11,'8D22','Ataxic cerebral palsy','Y','2025-10-23 00:00:00'),(74936,11,'8A03','Ataxic disorders','Y','2025-10-23 00:00:00'),(74934,11,'MD11.2','Ataxic breathing','Y','2025-10-23 00:00:00'),(74933,11,'MB45.0','Ataxia, unspecified','Y','2025-10-23 00:00:00'),(74932,11,'8A03.12','Ataxia due to Refsum disease','Y','2025-10-23 00:00:00'),(74931,11,'8A03.15','Ataxia due to mitochondrial mutations','Y','2025-10-23 00:00:00'),(74930,11,'8A03.11','Ataxia due to Cerebrotendinous xanthomatosis','Y','2025-10-23 00:00:00'),(74929,11,'8A03.30','Ataxia due to alcoholic cerebellar degeneration','Y','2025-10-23 00:00:00'),(74927,11,'XM1CL7','Ataluren','Y','2025-10-23 00:00:00'),(74928,11,'8A03.13','Ataxia due to abetalipoproteinemia','Y','2025-10-23 00:00:00'),(74926,11,'XN0R0','Atadenovirus','Y','2025-10-23 00:00:00'),(74925,11,'MC82.2','Asystolic cardiac arrest','Y','2025-10-23 00:00:00'),(74924,11,'BD55','Asymptomatic stenosis of intracranial or extracranial artery','Y','2025-10-23 00:00:00'),(74923,11,'BD56','Asymptomatic occlusion of intracranial or extracranial artery','Y','2025-10-23 00:00:00'),(74922,11,'1A62.00','Asymptomatic neurosyphilis','Y','2025-10-23 00:00:00'),(74921,11,'QD01.0','Asymptomatic enteric carriage of Entamoeba','Y','2025-10-23 00:00:00'),(74919,11,'XT3B','Asymptomatic','Y','2025-10-23 00:00:00'),(74920,11,'QD04','Asymptomatic colonization of the skin by virulent or therapy resistant bacteria','Y','2025-10-23 00:00:00'),(74918,11,'KA20.10','Asymmetrical intrauterine growth restriction','Y','2025-10-23 00:00:00'),(74917,11,'XM6LF8','Asunaprevir','Y','2025-10-23 00:00:00'),(74916,11,'XM4BG6','Astromicin','Y','2025-10-23 00:00:00'),(74915,11,'XH6PH6','Astrocytoma, NOS','Y','2025-10-23 00:00:00'),(74914,11,'XH1S63','Astrocytoma, low grade','Y','2025-10-23 00:00:00'),(74913,11,'XH39Z7','Astrocytoma, anaplastic, IDH-wildtype','Y','2025-10-23 00:00:00'),(74912,11,'XH7HQ6','Astrocytoma, anaplastic, IDH-mutant','Y','2025-10-23 00:00:00'),(74911,11,'XH96C7','Astrocytoma, anaplastic','Y','2025-10-23 00:00:00'),(74910,11,'2A00.4','Astroblastoma of the brain','Y','2025-10-23 00:00:00'),(74908,11,'9D00.2','Astigmatism','Y','2025-10-23 00:00:00'),(74909,11,'XH1DC5','Astroblastoma','Y','2025-10-23 00:00:00'),(74907,11,'CB02.0','Asthmatic pulmonary eosinophilia','Y','2025-10-23 00:00:00'),(74906,11,'CA23','Asthma','Y','2025-10-23 00:00:00'),(74905,11,'MB46.0','Asterixis','Y','2025-10-23 00:00:00'),(74904,11,'XM7S59','Astemizole','Y','2025-10-23 00:00:00'),(74903,11,'EA84','Asteatotic eczema','Y','2025-10-23 00:00:00'),(74901,11,'XE3NF','Assembly problem with device identified','Y','2025-10-23 00:00:00'),(74902,11,'VW32','Assisting others','Y','2025-10-23 00:00:00'),(74900,11,'PF2Z','Assault, unspecified','Y','2025-10-23 00:00:00'),(74899,11,'PD61.Z','Assault by water transport injury event with water vessel not damaged, disabled or destroyed, unspecified','Y','2025-10-23 00:00:00'),(74898,11,'PD61.Y','Assault by water transport injury event with water vessel not damaged, disabled or destroyed, causing unspecified injury','Y','2025-10-23 00:00:00'),(74897,11,'PD61.0','Assault by water transport injury event with water vessel not damaged, disabled or destroyed, causing submersion or drowning','Y','2025-10-23 00:00:00'),(74896,11,'PD61.1','Assault by water transport injury event with water vessel not damaged, disabled or destroyed, causing other injury','Y','2025-10-23 00:00:00'),(74895,11,'PD61','Assault by water transport injury event with water vessel not damaged, disabled or destroyed','Y','2025-10-23 00:00:00'),(74894,11,'PD60.Z','Assault by water transport injury event with water vessel damaged, disabled or destroyed, causing unspecified injury','Y','2025-10-23 00:00:00'),(74893,11,'PD60.0','Assault by water transport injury event with water vessel damaged, disabled or destroyed, causing submersion or drowning','Y','2025-10-23 00:00:00'),(74892,11,'PD60.1','Assault by water transport injury event with water vessel damaged, disabled or destroyed, causing other injury','Y','2025-10-23 00:00:00'),(74891,11,'PD60','Assault by water transport injury event with water vessel damaged, disabled or destroyed','Y','2025-10-23 00:00:00'),(74890,11,'PD6Z','Assault by water transport injury event with damage to water vessel unspecified','Y','2025-10-23 00:00:00'),(74889,11,'PD9Z','Assault by transport injury event, unspecified','Y','2025-10-23 00:00:00'),(74888,11,'PE6Z','Assault by threat to breathing, unspecified','Y','2025-10-23 00:00:00'),(74887,11,'PE60','Assault by threat to breathing, suffocation from object covering mouth or nose','Y','2025-10-23 00:00:00'),(74886,11,'PE62','Assault by threat to breathing by strangulation','Y','2025-10-23 00:00:00'),(74885,11,'PE67','Assault by threat to breathing by low oxygen environment','Y','2025-10-23 00:00:00'),(74884,11,'PE66','Assault by threat to breathing by inhalation or ingestion of other objects or materials','Y','2025-10-23 00:00:00'),(74883,11,'PE64','Assault by threat to breathing by inhalation or ingestion of liquids','Y','2025-10-23 00:00:00'),(74882,11,'PE65','Assault by threat to breathing by inhalation or ingestion of food','Y','2025-10-23 00:00:00'),(74881,11,'PE61','Assault by threat to breathing by hanging','Y','2025-10-23 00:00:00'),(74880,11,'PE63','Assault by threat to breathing by external compression of airways or chest','Y','2025-10-23 00:00:00'),(74879,11,'PE22','Assault by striking against stationary object','Y','2025-10-23 00:00:00'),(74878,11,'PD53','Assault by railway transport injury event','Y','2025-10-23 00:00:00'),(74877,11,'PE20.1','Assault by projectile from rifle, shotgun or larger firearm','Y','2025-10-23 00:00:00'),(74876,11,'PE20.0','Assault by projectile from handgun','Y','2025-10-23 00:00:00'),(74875,11,'PE20','Assault by projectile from firearm','Y','2025-10-23 00:00:00'),(74874,11,'PF16','Assault by physical overexertion','Y','2025-10-23 00:00:00'),(74872,11,'PF1B','Assault by neglect','Y','2025-10-23 00:00:00'),(74873,11,'PF19','Assault by other specified privation','Y','2025-10-23 00:00:00'),(74871,11,'PD50','Assault by land transport road traffic injury event','Y','2025-10-23 00:00:00'),(74870,11,'PD51','Assault by land transport off-road nontraffic injury event','Y','2025-10-23 00:00:00'),(74869,11,'PD52','Assault by land transport injury event unknown whether road traffic or off-road nontraffic','Y','2025-10-23 00:00:00'),(74868,11,'PF18','Assault by lack of water','Y','2025-10-23 00:00:00'),(74867,11,'PF17','Assault by lack of food','Y','2025-10-23 00:00:00'),(74866,11,'PE52','Assault by injury other than drowning while in body of water','Y','2025-10-23 00:00:00'),(74865,11,'PE53','Assault by injury other than drowning following fall into body of water','Y','2025-10-23 00:00:00'),(74864,11,'PE5Z','Assault by immersion, submersion or falling into water, unspecified','Y','2025-10-23 00:00:00'),(74863,11,'PF10','Assault by foreign body in orifice or eye','Y','2025-10-23 00:00:00'),(74862,11,'PE7Z','Assault by exposure to unspecified thermal mechanism','Y','2025-10-23 00:00:00'),(74861,11,'PE4Z','Assault by exposure to unspecified object, not elsewhere classified','Y','2025-10-23 00:00:00'),(74860,11,'PE70','Assault by exposure to uncontrolled fire','Y','2025-10-23 00:00:00'),(74859,11,'PF12','Assault by exposure to sunlight','Y','2025-10-23 00:00:00'),(74858,11,'PF13','Assault by exposure to radiation','Y','2025-10-23 00:00:00'),(74856,11,'PE81','Assault by exposure to or harmful effects of sedative, hypnotic drugs or other CNS depressants','Y','2025-10-23 00:00:00'),(74857,11,'PE7Y','Assault by exposure to other specified thermal mechanism','Y','2025-10-23 00:00:00'),(74855,11,'PE82','Assault by exposure to or harmful effects of psychostimulants','Y','2025-10-23 00:00:00'),(74854,11,'PE93','Assault by exposure to or harmful effects of pesticides','Y','2025-10-23 00:00:00'),(74853,11,'PE95','Assault by exposure to or harmful effects of other or unspecified substances chiefly nonmedicinal as to source','Y','2025-10-23 00:00:00'),(74852,11,'PE88','Assault by exposure to or harmful effects of other or unspecified drug, medicament or biological substance','Y','2025-10-23 00:00:00'),(74851,11,'PE91','Assault by exposure to or harmful effects of organic solvents','Y','2025-10-23 00:00:00'),(74850,11,'PE80','Assault by exposure to or harmful effects of opioids or related analgesics','Y','2025-10-23 00:00:00'),(74849,11,'PE89','Assault by exposure to or harmful effects of multiple drugs, medicaments or biological substances','Y','2025-10-23 00:00:00'),(74848,11,'PE8Z','Assault by exposure to or harmful effects of drugs, medicaments or biological substances, unspecified','Y','2025-10-23 00:00:00'),(74847,11,'PE94','Assault by exposure to or harmful effects of corrosive substances','Y','2025-10-23 00:00:00'),(74846,11,'PE92','Assault by exposure to or harmful effects of carbon monoxide','Y','2025-10-23 00:00:00'),(74845,11,'PE83','Assault by exposure to or harmful effects of cannabinoids or hallucinogens','Y','2025-10-23 00:00:00'),(74844,11,'PE86','Assault by exposure to or harmful effects of antipsychotics','Y','2025-10-23 00:00:00'),(74843,11,'PE87','Assault by exposure to or harmful effects of antiepileptics or antiparkinsonism drugs','Y','2025-10-23 00:00:00'),(74842,11,'PE85','Assault by exposure to or harmful effects of antidepressants','Y','2025-10-23 00:00:00'),(74841,11,'PE84','Assault by exposure to or harmful effects of analgesics, antipyretics or nonsteroidal anti-inflammatory drugs','Y','2025-10-23 00:00:00'),(74840,11,'PE90','Assault by exposure to or harmful effects of alcohols','Y','2025-10-23 00:00:00'),(74839,11,'PE72','Assault by exposure to ignition or melting of materials','Y','2025-10-23 00:00:00'),(74838,11,'PF14','Assault by exposure to high or low air pressure or changes in air pressure','Y','2025-10-23 00:00:00'),(74837,11,'PF15.Z','Assault by exposure to explosion, unspecified','Y','2025-10-23 00:00:00'),(74836,11,'PF15','Assault by exposure to explosion','Y','2025-10-23 00:00:00'),(74835,11,'PE75','Assault by exposure to excessive heat','Y','2025-10-23 00:00:00'),(74834,11,'PE76','Assault by exposure to excessive cold','Y','2025-10-23 00:00:00'),(74833,11,'PF11','Assault by exposure to electric current','Y','2025-10-23 00:00:00'),(74832,11,'PE71','Assault by exposure to controlled fire','Y','2025-10-23 00:00:00'),(74831,11,'PF15.0','Assault by exposure to chemical explosion','Y','2025-10-23 00:00:00'),(74830,11,'PF15.1','Assault by explosion or rupture of materials or object','Y','2025-10-23 00:00:00'),(74829,11,'PE50','Assault by drowning or submersion, while in body of water','Y','2025-10-23 00:00:00'),(74828,11,'PE51','Assault by drowning or submersion following fall into body of water','Y','2025-10-23 00:00:00'),(74827,11,'PE74','Assault by contact with steam, hot vapour, air or gases','Y','2025-10-23 00:00:00'),(74826,11,'PE19','Assault by contact with plant','Y','2025-10-23 00:00:00'),(74825,11,'PE1Z','Assault by contact with person, animal or plant, type unspecified','Y','2025-10-23 00:00:00'),(74824,11,'PE4Y','Assault by contact with other specified object, not elsewhere classified','Y','2025-10-23 00:00:00'),(74823,11,'PE73','Assault by contact with hot object or liquid','Y','2025-10-23 00:00:00'),(74822,11,'PE00','Assault by causing a fall or jump on same level or from less than 1 metre','Y','2025-10-23 00:00:00'),(74821,11,'PE0Z','Assault by causing a fall or jump from unspecified height','Y','2025-10-23 00:00:00'),(74820,11,'PE01','Assault by causing a fall or jump from a height of 1 metre or more','Y','2025-10-23 00:00:00'),(74819,11,'PE18','Assault by being stung or envenomated by animal','Y','2025-10-23 00:00:00'),(74818,11,'PE10','Assault by being struck, kicked or bumped by person','Y','2025-10-23 00:00:00'),(74817,11,'PE11','Assault by being struck, kicked or bumped by animal','Y','2025-10-23 00:00:00'),(74816,11,'PE20.Z','Assault by being struck by projectile from unspecified firearm','Y','2025-10-23 00:00:00'),(74815,11,'PE20.Y','Assault by being struck by projectile from other specified firearm','Y','2025-10-23 00:00:00'),(74813,11,'PE40','Assault by being struck by blunt object','Y','2025-10-23 00:00:00'),(74814,11,'PE21','Assault by being struck by moving object, not elsewhere classified','Y','2025-10-23 00:00:00'),(74812,11,'PE16','Assault by being scratched or clawed by person','Y','2025-10-23 00:00:00'),(74811,11,'PE17','Assault by being scratched or clawed by animal','Y','2025-10-23 00:00:00'),(74810,11,'PE31','Assault by being cut or pierced by sharp glass','Y','2025-10-23 00:00:00'),(74809,11,'PE3Z','Assault by being cut or pierced by other or unspecified sharp object','Y','2025-10-23 00:00:00'),(74808,11,'PE30','Assault by being cut or pierced by knife, sword, or dagger','Y','2025-10-23 00:00:00'),(74807,11,'PE12','Assault by being crushed or stepped on by person','Y','2025-10-23 00:00:00'),(74806,11,'PE13','Assault by being crushed or stepped on by animal','Y','2025-10-23 00:00:00'),(74804,11,'PE14','Assault by being bitten by person','Y','2025-10-23 00:00:00'),(74805,11,'PE41','Assault by being caught, crushed, jammed or pinched between objects','Y','2025-10-23 00:00:00'),(74803,11,'PE15','Assault by being bitten by animal','Y','2025-10-23 00:00:00'),(74802,11,'PD7Z','Assault by air or space transport injury event with damage to aircraft or spacecraft unspecified','Y','2025-10-23 00:00:00'),(74801,11,'PD71','Assault by air or space transport injury event with aircraft or spacecraft not damaged, disabled or destroyed','Y','2025-10-23 00:00:00'),(74800,11,'PD70','Assault by air or space transport injury event with aircraft or spacecraft damaged, disabled or destroyed','Y','2025-10-23 00:00:00'),(74799,11,'PF1A','Assault by abandonment','Y','2025-10-23 00:00:00'),(74797,11,'CA23.20','Aspirin-induced asthma','Y','2025-10-23 00:00:00'),(74798,11,'XM70P4','Aspoxicillin','Y','2025-10-23 00:00:00'),(74796,11,'JB0C.0','Aspiration pneumonitis due to anaesthesia during labour or delivery','Y','2025-10-23 00:00:00'),(74795,11,'PK81.2','Aspiration or drainage of body cavity or fluid collection associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(74793,11,'NF05','Asphyxiation','Y','2025-10-23 00:00:00'),(74794,11,'XM9GK4','Aspidium (oleoresin)','Y','2025-10-23 00:00:00'),(74792,11,'LD24.B1','Asphyxiating thoracic dystrophy','Y','2025-10-23 00:00:00'),(74791,11,'ND72.20','Asphyxia on mucous in nasopharynx','Y','2025-10-23 00:00:00'),(74790,11,'MD11.1','Asphyxia','Y','2025-10-23 00:00:00'),(74789,11,'CA82.4','Aspergillus-induced allergic or hypersensitivity conditions','Y','2025-10-23 00:00:00'),(74788,11,'1F20.10','Aspergillus otomycosis','Y','2025-10-23 00:00:00'),(74787,11,'XN5Z7','Aspergillus fumigatus','Y','2025-10-23 00:00:00'),(74786,11,'XN6B8','Aspergillus flavus','Y','2025-10-23 00:00:00'),(74785,11,'XN6Q9','Aspergillus clavatus','Y','2025-10-23 00:00:00'),(74783,11,'XN0WC','Aspergillus','Y','2025-10-23 00:00:00'),(74784,11,'1F20.14','Aspergillus bronchitis','Y','2025-10-23 00:00:00'),(74782,11,'1F20.Z','Aspergillosis, unspecified','Y','2025-10-23 00:00:00'),(74781,11,'1F20','Aspergillosis','Y','2025-10-23 00:00:00'),(74780,11,'XM4LJ7','Asparaginase','Y','2025-10-23 00:00:00'),(74779,11,'XM5UK6','Asp viper snake venom','Y','2025-10-23 00:00:00'),(74778,11,'MB40.0','Asomatognosia','Y','2025-10-23 00:00:00'),(74776,11,'XM7VP9','Asiaticoside','Y','2025-10-23 00:00:00'),(74777,11,'XH0FH0','Askin tumour','Y','2025-10-23 00:00:00'),(74775,11,'XM7CC3','Asian giant hornet venom','Y','2025-10-23 00:00:00'),(74774,11,'XM0HC0','Asian black scorpion venom','Y','2025-10-23 00:00:00'),(74773,11,'XM5U98','Asfotase alfa','Y','2025-10-23 00:00:00'),(74772,11,'1D85.3','Aseptic myocarditis of newborn','Y','2025-10-23 00:00:00'),(74771,11,'XM90C7','Asenapine','Y','2025-10-23 00:00:00'),(74770,11,'XM7XY8','Ascorbic acid','Y','2025-10-23 00:00:00'),(74769,11,'ME04.Z','Ascites, unspecified','Y','2025-10-23 00:00:00'),(74768,11,'ME04','Ascites','Y','2025-10-23 00:00:00'),(74767,11,'XM7168','Asciminib','Y','2025-10-23 00:00:00'),(74766,11,'XA00E5','Ascending pharyngeal artery','Y','2025-10-23 00:00:00'),(74765,11,'XA7YP8','Ascending palatine artery','Y','2025-10-23 00:00:00'),(74764,11,'XA4DQ4','Ascending lumbar vein','Y','2025-10-23 00:00:00'),(74763,11,'XA25P9','Ascending colon and right flexure of colon','Y','2025-10-23 00:00:00'),(74762,11,'XA3AL5','Ascending colon','Y','2025-10-23 00:00:00'),(74761,11,'XA8ZA6','Ascending branches of the Inferior ulnar collateral artery','Y','2025-10-23 00:00:00'),(74760,11,'XA6TE8','Ascending branch of the vertebral artery','Y','2025-10-23 00:00:00'),(74759,11,'XA0DB6','Ascending branch of the medial femoral circumflex artery','Y','2025-10-23 00:00:00'),(74758,11,'XA82R7','Ascending branch of the left colic artery','Y','2025-10-23 00:00:00'),(74757,11,'XA5BU3','Ascending branch of the lateral femoral circumflex artery','Y','2025-10-23 00:00:00'),(74756,11,'1B70.3','Ascending bacterial lymphangitis','Y','2025-10-23 00:00:00'),(74755,11,'BD50.1Z','Ascending aorta dissection not beyond arch, unspecified','Y','2025-10-23 00:00:00'),(74754,11,'BD50.12','Ascending aorta dissection not beyond arch without mention of perforation or rupture','Y','2025-10-23 00:00:00'),(74753,11,'BD50.11','Ascending aorta dissection not beyond arch with rupture','Y','2025-10-23 00:00:00'),(74752,11,'BD50.10','Ascending aorta dissection not beyond arch with perforation','Y','2025-10-23 00:00:00'),(74751,11,'BD50.1','Ascending aorta dissection not beyond arch','Y','2025-10-23 00:00:00'),(74750,11,'XA01A6','Ascending aorta','Y','2025-10-23 00:00:00'),(74749,11,'XN97M','Ascaris lumbricoides','Y','2025-10-23 00:00:00'),(74748,11,'XN9PQ','Ascaris','Y','2025-10-23 00:00:00'),(74747,11,'XM7QL4','Ascaridole','Y','2025-10-23 00:00:00'),(74746,11,'1F62','Ascariasis','Y','2025-10-23 00:00:00'),(74745,11,'XM53B3','Asbestos','Y','2025-10-23 00:00:00'),(74744,11,'XA6J99','Aryepiglotticus tendon','Y','2025-10-23 00:00:00'),(74743,11,'XA3SS4','Aryepiglotticus muscle','Y','2025-10-23 00:00:00'),(74742,11,'XA9907','Aryepiglottic fold','Y','2025-10-23 00:00:00'),(74741,11,'XM2X16','Arum maculatum plant','Y','2025-10-23 00:00:00'),(74740,11,'XE58R','Arts and crafts supplies','Y','2025-10-23 00:00:00'),(74739,11,'XE0NW','Artist paint','Y','2025-10-23 00:00:00'),(74737,11,'XE59G','Artificial grass','Y','2025-10-23 00:00:00'),(74738,11,'XM2GK8','Artificial tears and other indifferent preparations','Y','2025-10-23 00:00:00'),(74735,11,'XA0DE1','Articularis genu muscle','Y','2025-10-23 00:00:00'),(74736,11,'XA7MT0','Articularis genu tendon','Y','2025-10-23 00:00:00'),(74733,11,'XA3NV3','Articular cartilage','Y','2025-10-23 00:00:00'),(74734,11,'XA0GV5','Articularis cubiti muscle','Y','2025-10-23 00:00:00'),(74731,11,'XM52S4','Articaine','Y','2025-10-23 00:00:00'),(74732,11,'XA3XV5','Articular capsules','Y','2025-10-23 00:00:00'),(74729,11,'XM7930','Arthropod venom','Y','2025-10-23 00:00:00'),(74730,11,'1D4Z','Arthropod-borne viral fever, virus unspecified','Y','2025-10-23 00:00:00'),(74728,11,'FA38.2','Arthropathy in hypersensitivity reactions classified elsewhere','Y','2025-10-23 00:00:00'),(74727,11,'FA38','Arthropathy in diseases classified elsewhere','Y','2025-10-23 00:00:00'),(74726,11,'FA11.1','Arthropathy following vaccination','Y','2025-10-23 00:00:00'),(74725,11,'FA11.0','Arthropathy following intestinal bypass','Y','2025-10-23 00:00:00'),(74723,11,'FA5Z','Arthropathies, unspecified','Y','2025-10-23 00:00:00'),(74724,11,'FA11.2','Arthropathy following genitourinary infection','Y','2025-10-23 00:00:00'),(74722,11,'LD26.4Z','Arthrogryposis syndromes, unspecified','Y','2025-10-23 00:00:00'),(74721,11,'LD26.4','Arthrogryposis syndromes','Y','2025-10-23 00:00:00'),(74720,11,'LD26.41','Arthrogryposis multiplex congenita','Y','2025-10-23 00:00:00'),(74719,11,'XM7Q22','Artesunate','Y','2025-10-23 00:00:00'),(74718,11,'XA81N7','Artery of upper extremity','Y','2025-10-23 00:00:00'),(74717,11,'XA9UT1','Artery of thorax','Y','2025-10-23 00:00:00'),(74715,11,'XA4GP1','Artery of pelvis','Y','2025-10-23 00:00:00'),(74716,11,'XA2505','Artery of pterygoid canal','Y','2025-10-23 00:00:00'),(74714,11,'XA4U64','Artery of lung','Y','2025-10-23 00:00:00'),(74713,11,'XA8DW5','Artery of lower extremity','Y','2025-10-23 00:00:00'),(74711,11,'XA30X9','Artery of bulb of vestibule','Y','2025-10-23 00:00:00'),(74712,11,'XA4TS7','Artery of head, face, and neck','Y','2025-10-23 00:00:00'),(74709,11,'XA9JK8','Artery of abdomen','Y','2025-10-23 00:00:00'),(74710,11,'XA5PV1','Artery of bulb of penis','Y','2025-10-23 00:00:00'),(74708,11,'XD0B51','Artero-venous dialysis lines, two needles','Y','2025-10-23 00:00:00'),(74707,11,'XD5BR1','Artero-venous dialysis lines, one needle','Y','2025-10-23 00:00:00'),(74705,11,'XD8QE4','Artero-venous dialysis lines accessories','Y','2025-10-23 00:00:00'),(74706,11,'XD0270','Artero-venous dialysis lines others','Y','2025-10-23 00:00:00'),(74704,11,'XM3B54','Arterolane and Piperaquine','Y','2025-10-23 00:00:00'),(74703,11,'DA43.2','Arteriovenous malformation of stomach','Y','2025-10-23 00:00:00'),(74701,11,'LA90.31','Arteriovenous malformation of precerebral vessels','Y','2025-10-23 00:00:00'),(74702,11,'DA97.1','Arteriovenous malformation of small intestine','Y','2025-10-23 00:00:00'),(74700,11,'DB34.1','Arteriovenous malformation of large intestine','Y','2025-10-23 00:00:00'),(74699,11,'DA52.2','Arteriovenous malformation of duodenum','Y','2025-10-23 00:00:00'),(74698,11,'8B22.40','Arteriovenous malformation of cerebral vessels','Y','2025-10-23 00:00:00'),(74697,11,'BD52.1','Arteriovenous fistula, acquired','Y','2025-10-23 00:00:00'),(74696,11,'BB02.0','Arteriovenous fistula of pulmonary vessels','Y','2025-10-23 00:00:00'),(74694,11,'XA5999','Arteries','Y','2025-10-23 00:00:00'),(74695,11,'XA42G7','Arteries of heart','Y','2025-10-23 00:00:00'),(74693,11,'BD41.0','Arterial fibromuscular dysplasia','Y','2025-10-23 00:00:00'),(74692,11,'BD53.0','Arterial cystic medial diseases','Y','2025-10-23 00:00:00'),(74690,11,'XM9ND1','Artenimol','Y','2025-10-23 00:00:00'),(74691,11,'BD51','Arterial aneurysm or dissection, excluding aorta','Y','2025-10-23 00:00:00'),(74689,11,'XM37K1','Artemotil','Y','2025-10-23 00:00:00'),(74688,11,'MG55.0','Artemisinin resistant Plasmodium falciparum','Y','2025-10-23 00:00:00'),(74687,11,'XM5SP0','Artemisinin and derivatives, plain','Y','2025-10-23 00:00:00'),(74686,11,'XM1ED1','Artemisinin','Y','2025-10-23 00:00:00'),(74685,11,'XM7D52','Artemether','Y','2025-10-23 00:00:00'),(74683,11,'XM66R0','Artane','Y','2025-10-23 00:00:00'),(74684,11,'ED00','Artefactual skin disorder','Y','2025-10-23 00:00:00'),(74682,11,'XM09B5','Arsthinol','Y','2025-10-23 00:00:00'),(74681,11,'XM0L93','Arsphenamine (silver)','Y','2025-10-23 00:00:00'),(74680,11,'XM00Z1','Arsine','Y','2025-10-23 00:00:00'),(74679,11,'XH5NG4','Arsenical keratosis','Y','2025-10-23 00:00:00'),(74678,11,'XM2HS5','Arsenic trioxide','Y','2025-10-23 00:00:00'),(74676,11,'XM4787','Arsenic compounds','Y','2025-10-23 00:00:00'),(74677,11,'XM4GU5','Arsenic pesticide, not elsewhere classified','Y','2025-10-23 00:00:00'),(74675,11,'XM2KQ2','Arsenic','Y','2025-10-23 00:00:00'),(74674,11,'XE9PM','Arrow or bolt designed as weapon','Y','2025-10-23 00:00:00'),(74673,11,'BC43.6','Arrhythmogenic ventricular cardiomyopathy','Y','2025-10-23 00:00:00'),(74672,11,'BA60.8','Arrhythmia as current complication following acute myocardial infarction','Y','2025-10-23 00:00:00'),(74671,11,'LA70.0','Arrhinia','Y','2025-10-23 00:00:00'),(74670,11,'LA05.4','Arrhinencephaly','Y','2025-10-23 00:00:00'),(74669,11,'XM4VX8','Aromatic amine','Y','2025-10-23 00:00:00'),(74668,11,'XM9X91','Aromatase inhibitors','Y','2025-10-23 00:00:00'),(74667,11,'LA03','Arnold-Chiari malformation type II','Y','2025-10-23 00:00:00'),(74666,11,'LA07.4','Arnold-Chiari malformation type I','Y','2025-10-23 00:00:00'),(74665,11,'XM3ZW9','Armodafinil','Y','2025-10-23 00:00:00'),(74663,11,'XM4F26','Arimoclomol','Y','2025-10-23 00:00:00'),(74664,11,'XM67P4','Aripiprazole','Y','2025-10-23 00:00:00'),(74662,11,'XM44R8','Argyrol','Y','2025-10-23 00:00:00'),(74661,11,'9B02.0','Argyll Robertson pupil','Y','2025-10-23 00:00:00'),(74660,11,'5C50.A0','Argininosuccinic aciduria','Y','2025-10-23 00:00:00'),(74659,11,'XM0ES3','Arginine hydrochloride','Y','2025-10-23 00:00:00'),(74657,11,'XM0MC0','Arginine and Lysine','Y','2025-10-23 00:00:00'),(74658,11,'XM4HD8','Arginine glutamate','Y','2025-10-23 00:00:00'),(74656,11,'5C50.A2','Argininaemia','Y','2025-10-23 00:00:00'),(74655,11,'1D61.0','Argentinian haemorrhagic fever','Y','2025-10-23 00:00:00'),(74653,11,'XA2JK3','Areola','Y','2025-10-23 00:00:00'),(74654,11,'XM7Y21','Argatroban','Y','2025-10-23 00:00:00'),(74652,11,'1D61.Z','Arenavirus disease, unspecified','Y','2025-10-23 00:00:00'),(74651,11,'1D61','Arenavirus disease','Y','2025-10-23 00:00:00'),(74650,11,'XN8AC','Arenavirus','Y','2025-10-23 00:00:00'),(74648,11,'XE0ZP','Area of still water','Y','2025-10-23 00:00:00'),(74649,11,'XM7494','Arecoline','Y','2025-10-23 00:00:00'),(74647,11,'XE54N','Area for raising or care of animals','Y','2025-10-23 00:00:00'),(74646,11,'XE1ES','Area for growing crops, market gardening, horticulture','Y','2025-10-23 00:00:00'),(74645,11,'XE9C6','Area for growing crops combined with raising and care of animals','Y','2025-10-23 00:00:00'),(74644,11,'9D42.21','Arcuate scotoma','Y','2025-10-23 00:00:00'),(74643,11,'XA9621','Arcuate pubic ligament','Y','2025-10-23 00:00:00'),(74642,11,'XE7KZ','Arcing of electrodes','Y','2025-10-23 00:00:00'),(74641,11,'XE4X8','Arcing at paddles','Y','2025-10-23 00:00:00'),(74640,11,'XE4HP','Arcing','Y','2025-10-23 00:00:00'),(74639,11,'XA15N3','Arch of twelfth thoracic vertebra','Y','2025-10-23 00:00:00'),(74638,11,'XA2SM3','Arch of third thoracic vertebra','Y','2025-10-23 00:00:00'),(74637,11,'XA3G24','Arch of third lumbar vertebra','Y','2025-10-23 00:00:00'),(74636,11,'XA51V4','Arch of third cervical vertebra','Y','2025-10-23 00:00:00'),(74635,11,'XA75Z8','Arch of the aorta','Y','2025-10-23 00:00:00'),(74634,11,'XA7LF7','Arch of tenth thoracic vertebra','Y','2025-10-23 00:00:00'),(74633,11,'XA29X2','Arch of sixth thoracic vertebra','Y','2025-10-23 00:00:00'),(74632,11,'XA8W16','Arch of sixth cervical vertebra','Y','2025-10-23 00:00:00'),(74631,11,'XA54G1','Arch of seventh thoracic vertebra','Y','2025-10-23 00:00:00'),(74630,11,'XA05M5','Arch of seventh cervical vertebra','Y','2025-10-23 00:00:00'),(74629,11,'XA2VV9','Arch of second thoracic vertebra','Y','2025-10-23 00:00:00'),(74628,11,'XA24M1','Arch of second lumbar vertebra','Y','2025-10-23 00:00:00'),(74627,11,'XA9N69','Arch of ninth thoracic vertebra','Y','2025-10-23 00:00:00'),(74626,11,'XA22W3','Arch of fourth thoracic vertebra','Y','2025-10-23 00:00:00'),(74625,11,'XA7CH7','Arch of fourth lumbar vertebra','Y','2025-10-23 00:00:00'),(74623,11,'XA3T29','Arch of foot','Y','2025-10-23 00:00:00'),(74624,11,'XA24X7','Arch of fourth cervical vertebra','Y','2025-10-23 00:00:00'),(74622,11,'XA7UP5','Arch of first thoracic vertebra','Y','2025-10-23 00:00:00'),(74621,11,'XA8AX7','Arch of first lumbar vertebra','Y','2025-10-23 00:00:00'),(74620,11,'XA28A7','Arch of fifth thoracic vertebra','Y','2025-10-23 00:00:00'),(74619,11,'XA2JV2','Arch of fifth lumbar vertebra','Y','2025-10-23 00:00:00'),(74618,11,'XA1PJ5','Arch of fifth cervical vertebra','Y','2025-10-23 00:00:00'),(74617,11,'XA98R9','Arch of eleventh thoracic vertebra','Y','2025-10-23 00:00:00'),(74616,11,'XA3PL7','Arch of eighth thoracic vertebra','Y','2025-10-23 00:00:00'),(74615,11,'XM17S3','Arbutamine','Y','2025-10-23 00:00:00'),(74614,11,'XN1BE','Arbovirus','Y','2025-10-23 00:00:00'),(74612,11,'XN2C8','Arauc','Y','2025-10-23 00:00:00'),(74613,11,'XM79T7','Arbekacin','Y','2025-10-23 00:00:00'),(74611,11,'XN8AQ','Araraquara virus','Y','2025-10-23 00:00:00'),(74610,11,'8E40.3','Arachnoiditis','Y','2025-10-23 00:00:00'),(74609,11,'XA3D30','Arachnoid mater','Y','2025-10-23 00:00:00'),(74608,11,'XM12G1','Arachnid venom','Y','2025-10-23 00:00:00'),(74607,11,'XM5FL6','Arachis oil cathartic','Y','2025-10-23 00:00:00'),(74605,11,'XA3518','Aqueous humour','Y','2025-10-23 00:00:00'),(74606,11,'XM3VB3','Arachis oil','Y','2025-10-23 00:00:00'),(74603,11,'XH6770','Apudoma','Y','2025-10-23 00:00:00'),(74604,11,'XE1WX','Aqualung','Y','2025-10-23 00:00:00'),(74602,11,'XM5ZK7','Aptocaine','Y','2025-10-23 00:00:00'),(74600,11,'XM2851','Apronal','Y','2025-10-23 00:00:00'),(74601,11,'XM6Y53','Aprotinin','Y','2025-10-23 00:00:00'),(74598,11,'XM37J0','Aprindine','Y','2025-10-23 00:00:00'),(74599,11,'XM8YV1','Aprobarbital','Y','2025-10-23 00:00:00'),(74597,11,'XM0PX4','Apricot kernel','Y','2025-10-23 00:00:00'),(74596,11,'XM0CY8','Apresoline','Y','2025-10-23 00:00:00'),(74595,11,'XM1DC1','Aprepitant','Y','2025-10-23 00:00:00'),(74594,11,'XM9UD1','Apremilast','Y','2025-10-23 00:00:00'),(74593,11,'MB4A','Apraxia','Y','2025-10-23 00:00:00'),(74592,11,'XM25T0','Apraclonidine (hydrochloride)','Y','2025-10-23 00:00:00'),(74591,11,'XM3XE4','Apraclonidine','Y','2025-10-23 00:00:00'),(74590,11,'XE8NG','Appropriate term or code not available for medical device component','Y','2025-10-23 00:00:00'),(74589,11,'XE1W0','Appropriate term or code not available for aspects of incidents related to devices','Y','2025-10-23 00:00:00'),(74588,11,'XE3WR','Appropriate term or code for investigation of device not available','Y','2025-10-23 00:00:00'),(74587,11,'XE94Y','Applicator component of medical device','Y','2025-10-23 00:00:00'),(74586,11,'XE9XK','Application security problem','Y','2025-10-23 00:00:00'),(74585,11,'XE2CW','Application program version or upgrade problem','Y','2025-10-23 00:00:00'),(74584,11,'XE6SW','Application program problem, power calculation error','Y','2025-10-23 00:00:00'),(74583,11,'XE2BJ','Application program problem, parameter calculation error','Y','2025-10-23 00:00:00'),(74582,11,'XE09U','Application program problem, medication error','Y','2025-10-23 00:00:00'),(74581,11,'XE8HP','Application program problem','Y','2025-10-23 00:00:00'),(74580,11,'XE5YA','Application program freezes, or becomes nonfunctional','Y','2025-10-23 00:00:00'),(74579,11,'XE6PS','Application network problem','Y','2025-10-23 00:00:00'),(74578,11,'XE46R','Applicaiton program problem, dose calculation error','Y','2025-10-23 00:00:00'),(74577,11,'XE14C','Appliance mainly used in household','Y','2025-10-23 00:00:00'),(74576,11,'XA8PW4','Appendix','Y','2025-10-23 00:00:00'),(74575,11,'DB11.2','Appendicular concretions','Y','2025-10-23 00:00:00'),(74574,11,'DB10.Z','Appendicitis, unspecified','Y','2025-10-23 00:00:00'),(74573,11,'DB10','Appendicitis','Y','2025-10-23 00:00:00'),(74571,11,'LB9A.4','Apodia','Y','2025-10-23 00:00:00'),(74572,11,'XM5PE4','Apomorphine','Y','2025-10-23 00:00:00'),(74570,11,'XA7487','Apocrine sweat gland','Y','2025-10-23 00:00:00'),(74569,11,'ED92.1','Apocrine sweat disorders','Y','2025-10-23 00:00:00'),(74568,11,'XH1A80','Apocrine poroma','Y','2025-10-23 00:00:00'),(74567,11,'XH6YZ9','Apocrine adenoma','Y','2025-10-23 00:00:00'),(74565,11,'KB2A.Z','Apnoea of newborn, unspecified','Y','2025-10-23 00:00:00'),(74566,11,'XH9L77','Apocrine adenocarcinoma','Y','2025-10-23 00:00:00'),(74564,11,'KB2A.3','Apnoea of newborn, due to neurologic injury','Y','2025-10-23 00:00:00'),(74563,11,'KB2A','Apnoea of newborn','Y','2025-10-23 00:00:00'),(74562,11,'MD11.0','Apnoea','Y','2025-10-23 00:00:00'),(74561,11,'3A70.Z','Aplastic anaemia, unspecified','Y','2025-10-23 00:00:00'),(74560,11,'3A70.11','Aplastic anaemia due to other external agents','Y','2025-10-23 00:00:00'),(74559,11,'3A70','Aplastic anaemia','Y','2025-10-23 00:00:00'),(74558,11,'LB73.23','Aplasia or hypoplasia of the odontoid process of axis','Y','2025-10-23 00:00:00'),(74557,11,'LA22.2','Aplasia or hypoplasia of external auditory canal','Y','2025-10-23 00:00:00'),(74555,11,'LC60','Aplasia cutis congenita','Y','2025-10-23 00:00:00'),(74556,11,'LA14.10','Aplasia of lacrimal or salivary glands','Y','2025-10-23 00:00:00'),(74554,11,'XM3Y33','Apixaban','Y','2025-10-23 00:00:00'),(74553,11,'XA8ZQ8','Apical-lateral wall of heart','Y','2025-10-23 00:00:00'),(74552,11,'XA3K95','Apical odontoid ligament','Y','2025-10-23 00:00:00'),(74551,11,'GA80.0','Aphthosis of penis or scrotum','Y','2025-10-23 00:00:00'),(74549,11,'QB99','Apheresis','Y','2025-10-23 00:00:00'),(74550,11,'MA82.0','Aphonia','Y','2025-10-23 00:00:00'),(74548,11,'MA80.0','Aphasia','Y','2025-10-23 00:00:00'),(74547,11,'9B11.0','Aphakia','Y','2025-10-23 00:00:00'),(74545,11,'XA9M10','Apex of helix','Y','2025-10-23 00:00:00'),(74546,11,'XA5BU5','Apex of shoulder','Y','2025-10-23 00:00:00'),(74544,11,'XA86E8','Apex of axilla','Y','2025-10-23 00:00:00'),(74543,11,'XE6E8','Aperture component of medical device','Y','2025-10-23 00:00:00'),(74542,11,'LD24.G2','Apert syndrome','Y','2025-10-23 00:00:00'),(74540,11,'MB24.4','Apathy','Y','2025-10-23 00:00:00'),(74541,11,'6D86.3','Apathy in dementia','Y','2025-10-23 00:00:00'),(74539,11,'XE7DU','Apartment or flat','Y','2025-10-23 00:00:00'),(74538,11,'XM6Q81','Apalutamide','Y','2025-10-23 00:00:00'),(74537,11,'XM0JT4','Apalcillin','Y','2025-10-23 00:00:00'),(74536,11,'BB70.Z','Aortic valve stenosis, unspecified','Y','2025-10-23 00:00:00'),(74535,11,'BB72.Z','Aortic valve stenosis with insufficiency, unspecified','Y','2025-10-23 00:00:00'),(74534,11,'BB72','Aortic valve stenosis with insufficiency','Y','2025-10-23 00:00:00'),(74533,11,'BB70','Aortic valve stenosis','Y','2025-10-23 00:00:00'),(74532,11,'BB71.Z','Aortic valve insufficiency, unspecified','Y','2025-10-23 00:00:00'),(74531,11,'BB71','Aortic valve insufficiency','Y','2025-10-23 00:00:00'),(74530,11,'BB7Z','Aortic valve disease, unspecified','Y','2025-10-23 00:00:00'),(74529,11,'XA19J4','Aortic valve','Y','2025-10-23 00:00:00'),(74528,11,'BB74','Aortic valvar prolapse','Y','2025-10-23 00:00:00'),(74527,11,'LA8A.23','Aortic valvar atresia','Y','2025-10-23 00:00:00'),(74526,11,'BB73','Aortic valvar abscess','Y','2025-10-23 00:00:00'),(74525,11,'XA3XN8','Aortic plexus','Y','2025-10-23 00:00:00'),(74523,11,'XH7YU4','Aortic body tumour','Y','2025-10-23 00:00:00'),(74524,11,'XA25W0','Aortic lymph node','Y','2025-10-23 00:00:00'),(74521,11,'BD40.3','Aortic bifurcation syndrome','Y','2025-10-23 00:00:00'),(74522,11,'XA0VA6','Aortic body','Y','2025-10-23 00:00:00'),(74520,11,'4A44.1','Aortic arch syndrome','Y','2025-10-23 00:00:00'),(74518,11,'BD50','Aortic aneurysm or dissection','Y','2025-10-23 00:00:00'),(74519,11,'BD50.Z','Aortic aneurysm or dissection, unspecified','Y','2025-10-23 00:00:00'),(74517,11,'XA8K52','Aorta of thorax','Y','2025-10-23 00:00:00'),(74516,11,'XA6Y34','Aorta','Y','2025-10-23 00:00:00'),(74515,11,'6D86.2','Anxiety symptoms in dementia','Y','2025-10-23 00:00:00'),(74514,11,'6B0Z','Anxiety or fear-related disorders, unspecified','Y','2025-10-23 00:00:00'),(74513,11,'6C4G.71','Anxiety disorder induced by unknown or unspecified psychoactive substance','Y','2025-10-23 00:00:00'),(74512,11,'6C4E.71','Anxiety disorder induced by other specified psychoactive substance','Y','2025-10-23 00:00:00'),(74511,11,'6C4F.71','Anxiety disorder induced by multiple specified psychoactive substances','Y','2025-10-23 00:00:00'),(74510,11,'SF7K','Anxiety damaging the spleen system pattern (TM1)','Y','2025-10-23 00:00:00'),(74509,11,'SF6C','Anxiety damaging the spirit pattern (TM1)','Y','2025-10-23 00:00:00'),(74508,11,'MB24.3','Anxiety','Y','2025-10-23 00:00:00'),(74507,11,'XA0D34','Anus','Y','2025-10-23 00:00:00'),(74505,11,'XM07W3','Antramycin','Y','2025-10-23 00:00:00'),(74506,11,'MF51','Anuria or oliguria','Y','2025-10-23 00:00:00'),(74504,11,'XM5273','Antiwhipworm drug','Y','2025-10-23 00:00:00'),(74503,11,'XM3U67','Antivirals for treatment of human immunodeficiency virus infections, combinations','Y','2025-10-23 00:00:00'),(74502,11,'XM3SJ3','Antivirals for treatment of hepatitis C infections, combinations','Y','2025-10-23 00:00:00'),(74501,11,'XM9DH8','Antivirals for treatment of hepatitis C infections','Y','2025-10-23 00:00:00'),(74499,11,'XM6D91','Antivenin, antivenom spider bite','Y','2025-10-23 00:00:00'),(74500,11,'XM3NK9','Antiviral monoclonal antibodies','Y','2025-10-23 00:00:00'),(74497,11,'XM5TW5','Antivenin, antivenom (sera)','Y','2025-10-23 00:00:00'),(74498,11,'XM2T48','Antivenin, antivenom crotaline','Y','2025-10-23 00:00:00'),(74495,11,'XM9907','Antitussive opiate','Y','2025-10-23 00:00:00'),(74496,11,'XM0NL5','Antivaricose drug','Y','2025-10-23 00:00:00'),(74494,11,'XM05R0','Antitussive codeine mixture','Y','2025-10-23 00:00:00'),(74493,11,'XM7WC2','Antituberculars antibiotics','Y','2025-10-23 00:00:00'),(74492,11,'XM6DX3','Antituberculars','Y','2025-10-23 00:00:00'),(74490,11,'XA7RR9','Antitragus of pinna','Y','2025-10-23 00:00:00'),(74491,11,'XM2HL1','Antitrichomonal drug','Y','2025-10-23 00:00:00'),(74488,11,'XM5CP2','Antitoxin','Y','2025-10-23 00:00:00'),(74489,11,'XM81Z0','Antitoxin gas gangrene','Y','2025-10-23 00:00:00'),(74486,11,'XM12N6','Antithrombin III','Y','2025-10-23 00:00:00'),(74487,11,'XM2Q51','Antithymocyte immunoglobulin (rabbit)','Y','2025-10-23 00:00:00'),(74484,11,'XM0W81','Antistine','Y','2025-10-23 00:00:00'),(74485,11,'XM6500','Antitapeworm drug','Y','2025-10-23 00:00:00'),(74483,11,'MB23.1','Antisocial behaviour','Y','2025-10-23 00:00:00'),(74481,11,'XM8SX1','Antiseborrheics','Y','2025-10-23 00:00:00'),(74482,11,'XM6ZV1','Antiseptic, not elsewhere classified','Y','2025-10-23 00:00:00'),(74480,11,'XM9D37','Antiscorpion sera','Y','2025-10-23 00:00:00'),(74478,11,'XM95N2','Antirheumatic','Y','2025-10-23 00:00:00'),(74479,11,'XM60W7','Antischistosomal drug','Y','2025-10-23 00:00:00'),(74477,11,'MG53.0','Antiretroviral therapy resistant Human immunodeficiency virus','Y','2025-10-23 00:00:00'),(74475,11,'XM22E9','Antipyrine','Y','2025-10-23 00:00:00'),(74476,11,'XM5083','Antirabies hyperimmune serum','Y','2025-10-23 00:00:00'),(74474,11,'XM7AA5','Antipsychotic drug specified','Y','2025-10-23 00:00:00'),(74473,11,'XM7LP3','Antiprotozoal drug blood','Y','2025-10-23 00:00:00'),(74471,11,'XM2078','Antiplatyhelmintic drug','Y','2025-10-23 00:00:00'),(74472,11,'XM4393','Antiprotozoal drug','Y','2025-10-23 00:00:00'),(74470,11,'4A45.Z','Antiphospholipid syndrome, unspecified','Y','2025-10-23 00:00:00'),(74468,11,'4A45','Antiphospholipid syndrome','Y','2025-10-23 00:00:00'),(74469,11,'4A45.2','Antiphospholipid syndrome in pregnancy','Y','2025-10-23 00:00:00'),(74467,11,'XM8DE1','Antiphlogistic','Y','2025-10-23 00:00:00'),(74465,11,'XM9G63','Antiparkinson drugs','Y','2025-10-23 00:00:00'),(74466,11,'XM4KJ0','Antiperspirant','Y','2025-10-23 00:00:00'),(74463,11,'MA14.14','Anti-nuclear antibody positive','Y','2025-10-23 00:00:00'),(74464,11,'XM1Z32','Antiparasitic drug specified','Y','2025-10-23 00:00:00'),(74462,11,'MA14.13','Anti-nuclear antibody negative','Y','2025-10-23 00:00:00'),(74461,11,'4A44.AZ','Antineutrophil cytoplasmic antibody-associated vasculitis, unspecified','Y','2025-10-23 00:00:00'),(74460,11,'4A44.A','Antineutrophil cytoplasmic antibody-associated vasculitis','Y','2025-10-23 00:00:00'),(74459,11,'XM6Q44','Antineoplastic without further specification','Y','2025-10-23 00:00:00'),(74458,11,'XM7LM1','Antineoplastic steroid','Y','2025-10-23 00:00:00'),(74456,11,'XM4DV2','Antineoplastic combination','Y','2025-10-23 00:00:00'),(74457,11,'XM0W29','Antineoplastic combination estrogen','Y','2025-10-23 00:00:00'),(74455,11,'XM9D05','Antineoplastic antibiotics','Y','2025-10-23 00:00:00'),(74454,11,'XM0V25','Antineoplastic alkaloidal','Y','2025-10-23 00:00:00'),(74453,11,'XM16G5','Antinematode drug','Y','2025-10-23 00:00:00'),(74452,11,'XM5K63','Antimycobacterial drug combination','Y','2025-10-23 00:00:00'),(74451,11,'XM7AQ6','Antimycobacterial antibiotic','Y','2025-10-23 00:00:00'),(74450,11,'XM5BE4','Antimuscarinic','Y','2025-10-23 00:00:00'),(74449,11,'XM2AH2','Antimony tartrated','Y','2025-10-23 00:00:00'),(74448,11,'XM9GG8','Antimony sodium dimercaptosuccinate','Y','2025-10-23 00:00:00'),(74447,11,'XM69W3','Antimony potassium tartrate (sodium)','Y','2025-10-23 00:00:00'),(74446,11,'XM81B2','Antimony pesticide, not elsewhere classified','Y','2025-10-23 00:00:00'),(74445,11,'XM1KG9','Antimony pentasulfide','Y','2025-10-23 00:00:00'),(74444,11,'XM2AE9','Antimony hydride','Y','2025-10-23 00:00:00'),(74443,11,'XM4W96','Antimony dimercaptosuccinate','Y','2025-10-23 00:00:00'),(74442,11,'XM64G7','Antimony compounds','Y','2025-10-23 00:00:00'),(74440,11,'XM5HW4','Antimony','Y','2025-10-23 00:00:00'),(74441,11,'XM8CX5','Antimony anti-infectives','Y','2025-10-23 00:00:00'),(74439,11,'XM9XW5','Antimonic sulfide','Y','2025-10-23 00:00:00'),(74438,11,'XM3MH4','Antimitotic agent','Y','2025-10-23 00:00:00'),(74437,11,'XM6HK1','Antimigraine drugs','Y','2025-10-23 00:00:00'),(74436,11,'XM8T13','Antimetabolite','Y','2025-10-23 00:00:00'),(74435,11,'XM5Q32','Antimalarial pyrimidine derivative','Y','2025-10-23 00:00:00'),(74433,11,'XM1914','Antimalarial','Y','2025-10-23 00:00:00'),(74434,11,'XM5WN6','Antimalarial prophylactic','Y','2025-10-23 00:00:00'),(74432,11,'XM3TG8','Antilymphocyte immunoglobulin (horse)','Y','2025-10-23 00:00:00'),(74431,11,'XM4FN5','Antilipemic drug','Y','2025-10-23 00:00:00'),(74430,11,'XM0B09','Antileukotrienes','Y','2025-10-23 00:00:00'),(74429,11,'XM62S0','Antikaluretic','Y','2025-10-23 00:00:00'),(74428,11,'XM6G79','Anti-infective ophthalmic preparation','Y','2025-10-23 00:00:00'),(74427,11,'XM44A9','Anti-infective heavy metals','Y','2025-10-23 00:00:00'),(74426,11,'XM8GN4','Anti-infective bismuth, local','Y','2025-10-23 00:00:00'),(74425,11,'XM8LB8','Anti-infective arsenical','Y','2025-10-23 00:00:00'),(74424,11,'XM63K0','Anti-infective antiviral','Y','2025-10-23 00:00:00'),(74423,11,'XM0VE8','Anti-infective antiprotozoal blood','Y','2025-10-23 00:00:00'),(74422,11,'XM4GE4','Anti-infective antiprotozoal','Y','2025-10-23 00:00:00'),(74421,11,'XM4TV0','Anti-infective antimycobacterial','Y','2025-10-23 00:00:00'),(74419,11,'XM2H40','Anti-infective antibiotics specified','Y','2025-10-23 00:00:00'),(74420,11,'XM37R2','Anti-infective antimalarial','Y','2025-10-23 00:00:00'),(74418,11,'XM95R7','Anti-infective anthelmintic','Y','2025-10-23 00:00:00'),(74416,11,'XM2PT6','Antihypertensive drug','Y','2025-10-23 00:00:00'),(74417,11,'XM8V56','Antihypertensives for pulmonary arterial hypertension','Y','2025-10-23 00:00:00'),(74415,11,'XM3108','Antihyperlipidemic drug','Y','2025-10-23 00:00:00'),(74413,11,'XM9637','Antihookworm drug','Y','2025-10-23 00:00:00'),(74414,11,'XM9CH0','Anti-human lymphocytic globulin','Y','2025-10-23 00:00:00'),(74412,11,'XM4J58','Antihistamines','Y','2025-10-23 00:00:00'),(74411,11,'XM0RA5','Antiheparin drug','Y','2025-10-23 00:00:00'),(74409,11,'XM2KH0','Antihemophilic plasma, dried','Y','2025-10-23 00:00:00'),(74410,11,'XM38V9','Antihemorrhoidal preparation','Y','2025-10-23 00:00:00'),(74408,11,'XM0D26','Antihemophilic globulin concentrate','Y','2025-10-23 00:00:00'),(74407,11,'XM4EC0','Antihelmintics','Y','2025-10-23 00:00:00'),(74406,11,'XA7V14','Antihelix','Y','2025-10-23 00:00:00'),(74405,11,'XA6NU1','Antihelical fossa','Y','2025-10-23 00:00:00'),(74404,11,'XM8MB2','Antigonadotrophin','Y','2025-10-23 00:00:00'),(74403,11,'MF85','Anti-glomerular basement membrane antibody mediated disease','Y','2025-10-23 00:00:00'),(74402,11,'XM5XT4','Anti-gastric-secretion drug','Y','2025-10-23 00:00:00'),(74400,11,'XM7S10','Antifungal antibiotics','Y','2025-10-23 00:00:00'),(74401,11,'XM1JC6','Antifungal disinfectant, local','Y','2025-10-23 00:00:00'),(74399,11,'XM6VD7','Antifreeze, not elsewhere classified','Y','2025-10-23 00:00:00'),(74398,11,'XM8A26','Antiflatulent','Y','2025-10-23 00:00:00'),(74397,11,'XM43K9','Antifilarial drug','Y','2025-10-23 00:00:00'),(74395,11,'XM10A6','Antiestrogen','Y','2025-10-23 00:00:00'),(74396,11,'XM0UH4','Antifibrinolytic drug','Y','2025-10-23 00:00:00'),(74394,11,'XM63D6','Antiepileptics','Y','2025-10-23 00:00:00'),(74393,11,'XM0KK7','Antidysrhythmic','Y','2025-10-23 00:00:00'),(74392,11,'XM1S43','Antidote','Y','2025-10-23 00:00:00'),(74391,11,'XM9L34','Antidiphtheria serum','Y','2025-10-23 00:00:00'),(74390,11,'XM8A95','Antidiarrhoeal drug absorbent','Y','2025-10-23 00:00:00'),(74389,11,'XM5SK7','Antidiabetic combined','Y','2025-10-23 00:00:00'),(74388,11,'XM9AX5','Antidiabetic biguanide and sulfonyl combined','Y','2025-10-23 00:00:00'),(74387,11,'XM8S35','Antidiabetic','Y','2025-10-23 00:00:00'),(74386,11,'XM8D31','Antidepressant triazolopyridine','Y','2025-10-23 00:00:00'),(74385,11,'XM2NP3','Antidepressant selective serotonin reuptake inhibitor','Y','2025-10-23 00:00:00'),(74384,11,'XM0PE4','Antidepressant selective serotonin norepinephrine reuptake inhibitor','Y','2025-10-23 00:00:00'),(74383,11,'XM8CW9','Antidepressant monoamine oxidase inhibitor','Y','2025-10-23 00:00:00'),(74381,11,'XM80V1','Anticonvulsant specified','Y','2025-10-23 00:00:00'),(74382,11,'XM4361','Anti-D (rh) immunoglobulin','Y','2025-10-23 00:00:00'),(74380,11,'XM4LR0','Anticonvulsant pyrimidinedione','Y','2025-10-23 00:00:00'),(74379,11,'XM2P06','Anticonvulsant hypnotic','Y','2025-10-23 00:00:00'),(74378,11,'XM55H4','Anticonvulsant hydantoin','Y','2025-10-23 00:00:00'),(74377,11,'XM5LG4','Anticoagulant Antagonist','Y','2025-10-23 00:00:00'),(74376,11,'XM17B1','Anticoagulant and antithrombotic enzymes','Y','2025-10-23 00:00:00'),(74375,11,'MA14.12','Anticitrullinated protein antibody positive','Y','2025-10-23 00:00:00'),(74374,11,'MA14.11','Anticitrullinated protein antibody negative','Y','2025-10-23 00:00:00'),(74373,11,'XM5568','Anticholinesterase reversible ophthalmological','Y','2025-10-23 00:00:00'),(74372,11,'XM9D92','Anticholinesterase reversible','Y','2025-10-23 00:00:00'),(74371,11,'XM87V2','Anticholinesterase organophosphorus','Y','2025-10-23 00:00:00'),(74370,11,'XM8KF3','Anticholinesterase','Y','2025-10-23 00:00:00'),(74369,11,'XM6WD2','Anticholinergics predominantly used for Parkinson disease','Y','2025-10-23 00:00:00'),(74367,11,'XM0B31','Anticholinergic','Y','2025-10-23 00:00:00'),(74368,11,'XM1CE8','Anticholinergics predominantly used for obstructive airway diseases','Y','2025-10-23 00:00:00'),(74365,11,'XM9F82','Anticancer agents','Y','2025-10-23 00:00:00'),(74366,11,'XM2EA3','Anticholesterolemic drug','Y','2025-10-23 00:00:00'),(74364,11,'XM8124','Antibiotic tetracycline (group)','Y','2025-10-23 00:00:00'),(74363,11,'XM7SQ4','Antibiotic specified','Y','2025-10-23 00:00:00'),(74362,11,'MG50.B','Antibiotic resistant Vibrio','Y','2025-10-23 00:00:00'),(74361,11,'MG51.1','Antibiotic resistant Streptococcus pneumoniae','Y','2025-10-23 00:00:00'),(74360,11,'MG51.0Z','Antibiotic resistant Staphylococcus aureus, unspecified','Y','2025-10-23 00:00:00'),(74359,11,'MG51.0','Antibiotic resistant Staphylococcus aureus','Y','2025-10-23 00:00:00'),(74358,11,'MG50.A','Antibiotic resistant Shigella','Y','2025-10-23 00:00:00'),(74357,11,'MG50.9','Antibiotic resistant Salmonella','Y','2025-10-23 00:00:00'),(74356,11,'MG50.8','Antibiotic resistant Pseudomonas aeruginosa','Y','2025-10-23 00:00:00'),(74355,11,'MG52.01','Antibiotic resistant non-tuberculous Mycobacterium','Y','2025-10-23 00:00:00'),(74354,11,'MG50.7Z','Antibiotic resistant Neisseria meningitidis, unspecified','Y','2025-10-23 00:00:00'),(74353,11,'MG50.7','Antibiotic resistant Neisseria meningitidis','Y','2025-10-23 00:00:00'),(74352,11,'MG50.6','Antibiotic resistant Neisseria gonorrhoeae','Y','2025-10-23 00:00:00'),(74351,11,'MG52.0Z','Antibiotic resistant Mycobacterium, unspecified','Y','2025-10-23 00:00:00'),(74350,11,'MG52.0','Antibiotic resistant Mycobacterium','Y','2025-10-23 00:00:00'),(74349,11,'MG50.5','Antibiotic resistant Klebsiella pneumoniae','Y','2025-10-23 00:00:00'),(74348,11,'MG50.4Z','Antibiotic resistant Helicobacter pylori, unspecified','Y','2025-10-23 00:00:00'),(74347,11,'MG50.4','Antibiotic resistant Helicobacter pylori','Y','2025-10-23 00:00:00'),(74346,11,'MG50.3Z','Antibiotic resistant Haemophilus influenzae, unspecified','Y','2025-10-23 00:00:00'),(74345,11,'MG50.3','Antibiotic resistant Haemophilus influenzae','Y','2025-10-23 00:00:00'),(74344,11,'MG50.2','Antibiotic resistant Escherichia coli','Y','2025-10-23 00:00:00'),(74343,11,'MG51.2','Antibiotic resistant Enterococcus','Y','2025-10-23 00:00:00'),(74342,11,'MG50.1','Antibiotic resistant Campylobacter','Y','2025-10-23 00:00:00'),(74341,11,'MG50.0','Antibiotic resistant Acinetobacter baumannii','Y','2025-10-23 00:00:00'),(74340,11,'XM0MJ1','Antibiotic polypeptide','Y','2025-10-23 00:00:00'),(74339,11,'XM41T2','Antibiotic intestinal','Y','2025-10-23 00:00:00'),(74338,11,'XM7TD6','Antibiotic cephalosporin (group)','Y','2025-10-23 00:00:00'),(74337,11,'XM3WK4','Antibiotic b-lactam','Y','2025-10-23 00:00:00'),(74336,11,'XM3264','Antibiotic anticancer','Y','2025-10-23 00:00:00'),(74335,11,'XM4LV0','Antibiotic aminoglycoside','Y','2025-10-23 00:00:00'),(74334,11,'XM3N68','Antiarteriosclerotic drug','Y','2025-10-23 00:00:00'),(74333,11,'XM1AP6','Antiarrhythmics, class III','Y','2025-10-23 00:00:00'),(74332,11,'XM0NC9','Antiarrhythmics, class Ic','Y','2025-10-23 00:00:00'),(74331,11,'XM7844','Antiarrhythmics, class Ib','Y','2025-10-23 00:00:00'),(74330,11,'XM2FU1','Antiarrhythmics, class Ia','Y','2025-10-23 00:00:00'),(74329,11,'XM8SE2','Antiaris toxicaria plant','Y','2025-10-23 00:00:00'),(74327,11,'XN655','Anthropophilic dermatophytes','Y','2025-10-23 00:00:00'),(74328,11,'XM7JF4','Antiandrogen','Y','2025-10-23 00:00:00'),(74325,11,'XM8Y60','Anthrax immunoglobulin','Y','2025-10-23 00:00:00'),(74326,11,'XM8NU9','Anthrax vaccines','Y','2025-10-23 00:00:00'),(74323,11,'1B97','Anthrax','Y','2025-10-23 00:00:00'),(74324,11,'XM2C05','Anthrax antigen vaccines','Y','2025-10-23 00:00:00'),(74322,11,'XM8HL4','Anthralin','Y','2025-10-23 00:00:00'),(74321,11,'XM5GC9','Anthracyclines and related substances','Y','2025-10-23 00:00:00'),(74320,11,'XM7WM1','Anthracene','Y','2025-10-23 00:00:00'),(74318,11,'XM8LU8','Anthiolimine','Y','2025-10-23 00:00:00'),(74319,11,'XM6K27','Anthony\'s poison arrow frog poison','Y','2025-10-23 00:00:00'),(74317,11,'XA2RT9','Anteroseptal wall of heart','Y','2025-10-23 00:00:00'),(74316,11,'XA5W05','Anterolateral wall of heart','Y','2025-10-23 00:00:00'),(74315,11,'XA0XL3','Anterolateral upper thoracic region','Y','2025-10-23 00:00:00'),(74314,11,'XA3266','Anterolateral lower thoracic region','Y','2025-10-23 00:00:00'),(74313,11,'XA4WT4','Anterolateral central artery','Y','2025-10-23 00:00:00'),(74312,11,'MB21.10','Anterograde amnesia','Y','2025-10-23 00:00:00'),(74311,11,'XA4U99','Anteroapical wall of heart','Y','2025-10-23 00:00:00'),(74310,11,'XA21P9','Anterior wall of nasopharynx','Y','2025-10-23 00:00:00'),(74309,11,'XA7RE3','Anterior wall of heart','Y','2025-10-23 00:00:00'),(74308,11,'XA4UM5','Anterior wall of bladder','Y','2025-10-23 00:00:00'),(74307,11,'XA9H16','Anterior vesical lymphatic vessel of the bladder','Y','2025-10-23 00:00:00'),(74306,11,'XA0BP6','Anterior vertebral venous plexus','Y','2025-10-23 00:00:00'),(74305,11,'XA0ET2','Anterior vertebral vein','Y','2025-10-23 00:00:00'),(74304,11,'9A96.Z','Anterior uveitis, unspecified','Y','2025-10-23 00:00:00'),(74303,11,'9A96.0','Anterior uveitis not associated with systemic conditions','Y','2025-10-23 00:00:00'),(74302,11,'9A96.1','Anterior uveitis associated with systemic conditions','Y','2025-10-23 00:00:00'),(74301,11,'9A96','Anterior uveitis','Y','2025-10-23 00:00:00'),(74300,11,'XA7U09','Anterior ulnar recurrent artery','Y','2025-10-23 00:00:00'),(74299,11,'XA9MM1','Anterior tympanic artery','Y','2025-10-23 00:00:00'),(74298,11,'XA1NS6','Anterior triangle of neck','Y','2025-10-23 00:00:00'),(74297,11,'XA2JB0','Anterior tonsillar pillar','Y','2025-10-23 00:00:00'),(74295,11,'XA4CQ8','Anterior tibial vein','Y','2025-10-23 00:00:00'),(74296,11,'XA1259','Anterior tibiofibular ligament','Y','2025-10-23 00:00:00'),(74294,11,'XA7BL5','Anterior tibial recurrent artery','Y','2025-10-23 00:00:00'),(74293,11,'XA6UC7','Anterior tibial lymphatic trunk','Y','2025-10-23 00:00:00'),(74292,11,'XA3X71','Anterior tibial lymph node','Y','2025-10-23 00:00:00'),(74291,11,'XA6CN3','Anterior tibial artery','Y','2025-10-23 00:00:00'),(74290,11,'XA00R3','Anterior thoracic region','Y','2025-10-23 00:00:00'),(74289,11,'XA6694','Anterior temporal diploic vein','Y','2025-10-23 00:00:00'),(74288,11,'XA84J2','Anterior talofibular ligament','Y','2025-10-23 00:00:00'),(74287,11,'XA93N5','Anterior talocalcaneal ligament','Y','2025-10-23 00:00:00'),(74286,11,'XA22Q1','Anterior surface of upper arm','Y','2025-10-23 00:00:00'),(74284,11,'XA3PZ3','Anterior surface of shoulder','Y','2025-10-23 00:00:00'),(74285,11,'XA98B3','Anterior surface of thigh','Y','2025-10-23 00:00:00'),(74283,11,'XA33X4','Anterior surface of lower leg','Y','2025-10-23 00:00:00'),(74282,11,'XA4DV7','Anterior surface of epiglottis','Y','2025-10-23 00:00:00'),(74281,11,'XA2V14','Anterior surface of ankle','Y','2025-10-23 00:00:00'),(74280,11,'XA7TZ1','Anterior suprarenal artery','Y','2025-10-23 00:00:00'),(74279,11,'XA6PJ8','Anterior superior alveolar nerve','Y','2025-10-23 00:00:00'),(74278,11,'XA1GU9','Anterior superior alveolar artery','Y','2025-10-23 00:00:00'),(74277,11,'XA2JQ3','Anterior sternoclavicular ligament','Y','2025-10-23 00:00:00'),(74276,11,'LA11.2','Anterior segment dysgenesis','Y','2025-10-23 00:00:00'),(74275,11,'XA10C4','Anterior sacroiliac ligament','Y','2025-10-23 00:00:00'),(74274,11,'XA2MA4','Anterior sacrococcygeal ligament','Y','2025-10-23 00:00:00'),(74273,11,'XA5S21','Anterior pubic ligament','Y','2025-10-23 00:00:00'),(74272,11,'XA57V1','Anterior process of calcaneus','Y','2025-10-23 00:00:00'),(74270,11,'XA8D07','Anterior meningeal vein','Y','2025-10-23 00:00:00'),(74271,11,'XM7309','Anterior pituitary hormone','Y','2025-10-23 00:00:00'),(74269,11,'XA00K1','Anterior meningeal artery','Y','2025-10-23 00:00:00'),(74268,11,'XA5UF8','Anterior mediastinum','Y','2025-10-23 00:00:00'),(74267,11,'XA5HA3','Anterior mediastinal visceral lymph node','Y','2025-10-23 00:00:00'),(74266,11,'XA4K68','Anterior medial malleolar artery','Y','2025-10-23 00:00:00'),(74265,11,'XA9F16','Anterior longitudinal ligament','Y','2025-10-23 00:00:00'),(74264,11,'XA8V32','Anterior ligament of the spine','Y','2025-10-23 00:00:00'),(74262,11,'XA9381','Anterior ligament of the lower extremity','Y','2025-10-23 00:00:00'),(74263,11,'XA01C8','Anterior ligament of the shoulder','Y','2025-10-23 00:00:00'),(74261,11,'XA91J1','Anterior lateral malleolar artery','Y','2025-10-23 00:00:00'),(74259,11,'XA6YX2','Anterior jugular node','Y','2025-10-23 00:00:00'),(74260,11,'XA9U48','Anterior jugular vein','Y','2025-10-23 00:00:00'),(74258,11,'9C40.40','Anterior ischemic optic neuropathy','Y','2025-10-23 00:00:00'),(74256,11,'XA6RQ4','Anterior interosseous nerve','Y','2025-10-23 00:00:00'),(74257,11,'XA0QM2','Anterior intersternal ligament','Y','2025-10-23 00:00:00'),(74255,11,'XA2PP8','Anterior interosseous artery','Y','2025-10-23 00:00:00'),(74254,11,'XA8P44','Anterior intercavernous sinus','Y','2025-10-23 00:00:00'),(74253,11,'XA93X1','Anterior inferior ligament','Y','2025-10-23 00:00:00'),(74252,11,'XA8W06','Anterior ileocolic lymph node','Y','2025-10-23 00:00:00'),(74250,11,'XA7B66','Anterior fossa','Y','2025-10-23 00:00:00'),(74251,11,'XA0H14','Anterior humeral circumflex artery','Y','2025-10-23 00:00:00'),(74249,11,'XA7WC0','Anterior facial vein','Y','2025-10-23 00:00:00'),(74248,11,'XA2QF4','Anterior ethmoidal artery','Y','2025-10-23 00:00:00'),(74247,11,'NC93.20','Anterior dislocation of proximal end of tibia','Y','2025-10-23 00:00:00'),(74246,11,'XA0ZC8','Anterior cruciate ligament','Y','2025-10-23 00:00:00'),(74245,11,'XA70E9','Anterior costotransverse ligament','Y','2025-10-23 00:00:00'),(74244,11,'NA91.2','Anterior cord syndrome of thoracic spinal cord','Y','2025-10-23 00:00:00'),(74243,11,'NB62.2','Anterior cord syndrome of lumbar spinal cord','Y','2025-10-23 00:00:00'),(74242,11,'NA31.2','Anterior cord syndrome of cervical spinal cord','Y','2025-10-23 00:00:00'),(74240,11,'XA94Y6','Anterior ciliary artery','Y','2025-10-23 00:00:00'),(74241,11,'XA2B10','Anterior communicating artery','Y','2025-10-23 00:00:00'),(74239,11,'XA4MZ4','Anterior chamber of the eye','Y','2025-10-23 00:00:00'),(74238,11,'XA4759','Anterior cervical lymph node','Y','2025-10-23 00:00:00'),(74237,11,'8B26.3','Anterior cerebral artery syndrome','Y','2025-10-23 00:00:00'),(74236,11,'XA1VB0','Anterior cerebral artery','Y','2025-10-23 00:00:00'),(74234,11,'XA41A1','Anterior axillary fold','Y','2025-10-23 00:00:00'),(74235,11,'XA4TZ2','Anterior cardiac veins','Y','2025-10-23 00:00:00'),(74233,11,'XA2QF2','Anterior auricularis muscle','Y','2025-10-23 00:00:00'),(74232,11,'XA46F3','Anterior auricular vein','Y','2025-10-23 00:00:00'),(74231,11,'XA4XK9','Anterior atlantooccipital ligament','Y','2025-10-23 00:00:00'),(74230,11,'XA68Z9','Anterior atlantoaxial ligament','Y','2025-10-23 00:00:00'),(74228,11,'XK7V','Anterior','Y','2025-10-23 00:00:00'),(74229,11,'XA4SN6','Anterior abdominal wall','Y','2025-10-23 00:00:00'),(74227,11,'JA41.Z','Antepartum haemorrhage, unspecified','Y','2025-10-23 00:00:00'),(74226,11,'JA41.0','Antepartum haemorrhage with coagulation defect','Y','2025-10-23 00:00:00'),(74225,11,'JA41','Antepartum haemorrhage','Y','2025-10-23 00:00:00'),(74224,11,'KD3B.0','Antepartum fetal death','Y','2025-10-23 00:00:00'),(74223,11,'XY8U','Antepartum condition or complication','Y','2025-10-23 00:00:00'),(74222,11,'XE321','Antenna component of medical device','Y','2025-10-23 00:00:00'),(74220,11,'XT9S','Antenatal US Standard','Y','2025-10-23 00:00:00'),(74221,11,'XT77','Antenatal WHO Standard','Y','2025-10-23 00:00:00'),(74219,11,'QA45.Z','Antenatal screening, unspecified','Y','2025-10-23 00:00:00'),(74216,11,'QA45','Antenatal screening','Y','2025-10-23 00:00:00'),(74217,11,'QA45.1','Antenatal screening due to raised alphafetoprotein level','Y','2025-10-23 00:00:00'),(74218,11,'QA45.0','Antenatal screening for chromosomal anomalies','Y','2025-10-23 00:00:00'),(74215,11,'XT04','Antenatal Ger. Standard','Y','2025-10-23 00:00:00'),(74214,11,'XT5P','Antenatal Can. Standard','Y','2025-10-23 00:00:00'),(74213,11,'XT5L','Antenatal Aus. Standard','Y','2025-10-23 00:00:00'),(74212,11,'XA9NE6','Antecubital fossa','Y','2025-10-23 00:00:00'),(74211,11,'XM8XE9','Antazoline topical','Y','2025-10-23 00:00:00'),(74210,11,'XM5Q41','Antazolin','Y','2025-10-23 00:00:00'),(74208,11,'XM7TT0','Antagonist narcotic analgesic','Y','2025-10-23 00:00:00'),(74209,11,'XM3WP0','Antagonist serotonin','Y','2025-10-23 00:00:00'),(74207,11,'XM44R0','Antagonist Aldosterone','Y','2025-10-23 00:00:00'),(74205,11,'XM37S3','Antacid','Y','2025-10-23 00:00:00'),(74206,11,'XM1349','Antacids','Y','2025-10-23 00:00:00'),(74203,11,'XM3Y95','Ant venom','Y','2025-10-23 00:00:00'),(74204,11,'XM2XV6','Antabuse','Y','2025-10-23 00:00:00'),(74200,11,'XA2M04','Ansa cervicalis','Y','2025-10-23 00:00:00'),(74201,11,'XM4094','Ansamycin','Y','2025-10-23 00:00:00'),(74202,11,'XE4YS','Ant','Y','2025-10-23 00:00:00'),(74198,11,'GA23','Anovulatory bleeding','Y','2025-10-23 00:00:00'),(74199,11,'8B24.0','Anoxic-ischaemic encephalopathy','Y','2025-10-23 00:00:00'),(74196,11,'LA22.1','Anotia','Y','2025-10-23 00:00:00'),(74197,11,'5A80.3','Anovulation','Y','2025-10-23 00:00:00'),(74195,11,'MB21.2','Anosognosia','Y','2025-10-23 00:00:00'),(74194,11,'MB41.0','Anosmia','Y','2025-10-23 00:00:00'),(74193,11,'HA02.0Z','Anorgasmia, unspecified','Y','2025-10-23 00:00:00'),(74192,11,'HA02.01','Anorgasmia, lifelong, situational','Y','2025-10-23 00:00:00'),(74191,11,'HA02.00','Anorgasmia, lifelong, generalised','Y','2025-10-23 00:00:00'),(74190,11,'HA02.03','Anorgasmia, acquired, situational','Y','2025-10-23 00:00:00'),(74189,11,'HA02.02','Anorgasmia, acquired, generalised','Y','2025-10-23 00:00:00'),(74188,11,'HA02.0','Anorgasmia','Y','2025-10-23 00:00:00'),(74187,11,'6B80.Z','Anorexia Nervosa, unspecified','Y','2025-10-23 00:00:00'),(74186,11,'6B80.0Z','Anorexia Nervosa with significantly low body weight, unspecified','Y','2025-10-23 00:00:00'),(74185,11,'6B80.00','Anorexia Nervosa with significantly low body weight, restricting pattern','Y','2025-10-23 00:00:00'),(74184,11,'6B80.01','Anorexia Nervosa with significantly low body weight, binge-purge pattern','Y','2025-10-23 00:00:00'),(74183,11,'6B80.0','Anorexia Nervosa with significantly low body weight','Y','2025-10-23 00:00:00'),(74182,11,'6B80.1Z','Anorexia Nervosa with dangerously low body weight, unspecified','Y','2025-10-23 00:00:00'),(74181,11,'6B80.10','Anorexia Nervosa with dangerously low body weight, restricting pattern','Y','2025-10-23 00:00:00'),(74180,11,'6B80.11','Anorexia Nervosa with dangerously low body weight, binge-purge pattern','Y','2025-10-23 00:00:00'),(74179,11,'6B80.1','Anorexia Nervosa with dangerously low body weight','Y','2025-10-23 00:00:00'),(74178,11,'6B80.2','Anorexia Nervosa in recovery with normal body weight','Y','2025-10-23 00:00:00'),(74176,11,'MG43.7','Anorexia','Y','2025-10-23 00:00:00'),(74177,11,'6B80','Anorexia Nervosa','Y','2025-10-23 00:00:00'),(74175,11,'LB17.0','Anorectal malformations','Y','2025-10-23 00:00:00'),(74174,11,'DB50.2','Anorectal fistula','Y','2025-10-23 00:00:00'),(74173,11,'GC41','Anorectal dysfunction associated with pelvic organ prolapse','Y','2025-10-23 00:00:00'),(74172,11,'DB70.01','Anorectal abscess','Y','2025-10-23 00:00:00'),(74171,11,'LB51','Anorchia or microorchidia','Y','2025-10-23 00:00:00'),(74170,11,'9A25.0','Anophthalmic socket','Y','2025-10-23 00:00:00'),(74169,11,'MB4B.4','Anomia','Y','2025-10-23 00:00:00'),(74168,11,'LA86.2Z','Anomalous pulmonary venous connection, unspecified','Y','2025-10-23 00:00:00'),(74167,11,'LA86.2','Anomalous pulmonary venous connection','Y','2025-10-23 00:00:00'),(74165,11,'LA80','Anomalous position-orientation of heart','Y','2025-10-23 00:00:00'),(74166,11,'LA80.Z','Anomalous position-orientation of heart, unspecified','Y','2025-10-23 00:00:00'),(74164,11,'LA90.21','Anomalous portal venous connection','Y','2025-10-23 00:00:00'),(74163,11,'LA8C.0','Anomalous origin of coronary artery from pulmonary arterial tree','Y','2025-10-23 00:00:00'),(74162,11,'LA8C.1','Anomalous aortic origin or course of coronary artery','Y','2025-10-23 00:00:00'),(74161,11,'DA0E.3','Anomalies of tooth position','Y','2025-10-23 00:00:00'),(74160,11,'9C85.1','Anomalies of smooth pursuit movements','Y','2025-10-23 00:00:00'),(74159,11,'9C85.0Z','Anomalies of saccadic eye movements, unspecified','Y','2025-10-23 00:00:00'),(74158,11,'9C85.0','Anomalies of saccadic eye movements','Y','2025-10-23 00:00:00'),(74157,11,'LA11.62','Anomalies of pupillary function','Y','2025-10-23 00:00:00'),(74156,11,'DA0E.1','Anomalies of jaw-cranial base relationship','Y','2025-10-23 00:00:00'),(74155,11,'9C83.6Z','Anomalies of divergence or deviation of eye movement, unspecified','Y','2025-10-23 00:00:00'),(74154,11,'9C83.6','Anomalies of divergence or deviation of eye movement','Y','2025-10-23 00:00:00'),(74153,11,'DA0E.2','Anomalies of dental arch relationship','Y','2025-10-23 00:00:00'),(74152,11,'LA30.5Z','Anomalies in tooth resorption or loss, unspecified','Y','2025-10-23 00:00:00'),(74151,11,'LA30.5','Anomalies in tooth resorption or loss','Y','2025-10-23 00:00:00'),(74149,11,'XA8HA7','Anogenital region','Y','2025-10-23 00:00:00'),(74150,11,'1A95','Anogenital warts','Y','2025-10-23 00:00:00'),(74148,11,'EA90.53','Anogenital psoriasis','Y','2025-10-23 00:00:00'),(74147,11,'EC90.5','Anogenital pruritus','Y','2025-10-23 00:00:00'),(74146,11,'1A94.Z','Anogenital herpes simplex infection without further specification','Y','2025-10-23 00:00:00'),(74145,11,'1A94','Anogenital herpes simplex infection','Y','2025-10-23 00:00:00'),(74143,11,'XA9JU0','Anococcygeal nerve','Y','2025-10-23 00:00:00'),(74144,11,'LA30.0','Anodontia','Y','2025-10-23 00:00:00'),(74142,11,'XA10M1','Annulus fibrosus','Y','2025-10-23 00:00:00'),(74141,11,'LB21.0','Annular pancreas','Y','2025-10-23 00:00:00'),(74140,11,'XA0JJ8','Annular ligament','Y','2025-10-23 00:00:00'),(74139,11,'EB11','Annular erythema','Y','2025-10-23 00:00:00'),(74137,11,'FB00','Ankylosis of spinal joint','Y','2025-10-23 00:00:00'),(74138,11,'DA07.61','Ankylosis of teeth','Y','2025-10-23 00:00:00'),(74136,11,'FA34.4','Ankylosis of joint','Y','2025-10-23 00:00:00'),(74134,11,'LA31.2','Ankyloglossia','Y','2025-10-23 00:00:00'),(74135,11,'FA72.0','Ankylosing hyperostosis','Y','2025-10-23 00:00:00'),(74132,11,'MG29.00','Ankle oedema','Y','2025-10-23 00:00:00'),(74133,11,'LA14.07','Ankyloblepharon filiforme adnatum','Y','2025-10-23 00:00:00'),(74131,11,'XA27P3','Ankle joint','Y','2025-10-23 00:00:00'),(74130,11,'XA67V4','Ankle','Y','2025-10-23 00:00:00'),(74129,11,'XM1P81','Anistreplase','Y','2025-10-23 00:00:00'),(74128,11,'9D00.4','Anisometropia','Y','2025-10-23 00:00:00'),(74127,11,'XM02P8','Anisindione','Y','2025-10-23 00:00:00'),(74126,11,'XM3R71','Anisidine','Y','2025-10-23 00:00:00'),(74125,11,'9D00.5','Aniseikonia','Y','2025-10-23 00:00:00'),(74124,11,'XM2663','Anise oil','Y','2025-10-23 00:00:00'),(74122,11,'XN9HA','Anisakis marina','Y','2025-10-23 00:00:00'),(74123,11,'XM3HR2','Aniscoropine','Y','2025-10-23 00:00:00'),(74120,11,'1F61','Anisakiasis','Y','2025-10-23 00:00:00'),(74121,11,'XN574','Anisakis','Y','2025-10-23 00:00:00'),(74119,11,'LA11.3','Aniridia','Y','2025-10-23 00:00:00'),(74117,11,'5C73.2','Anion gap metabolic acidosis','Y','2025-10-23 00:00:00'),(74118,11,'XM0Z60','Aniracetam','Y','2025-10-23 00:00:00'),(74116,11,'XE1MP','Animal-powered means of transport','Y','2025-10-23 00:00:00'),(74115,11,'XE1CF','Animal-drawn vehicle','Y','2025-10-23 00:00:00'),(74113,11,'XM3825','Animal protein','Y','2025-10-23 00:00:00'),(74114,11,'XE9WB','Animal stables','Y','2025-10-23 00:00:00'),(74112,11,'XE4ZZ','Animal drawn vehicle as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(74111,11,'XE6X8','Animal drawn vehicle as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(74110,11,'XE146','Animal cage','Y','2025-10-23 00:00:00'),(74109,11,'XE940','Animal being ridden as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(74107,11,'XE0ZZ','Animal being ridden','Y','2025-10-23 00:00:00'),(74108,11,'XE756','Animal being ridden as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(74106,11,'XE22V','Animal being herded as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(74105,11,'XE6QK','Animal as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(74104,11,'XM0061','Aniline vapor','Y','2025-10-23 00:00:00'),(74103,11,'XM76E2','Aniline','Y','2025-10-23 00:00:00'),(74100,11,'XM0HG4','Anidulafungin','Y','2025-10-23 00:00:00'),(74101,11,'XM1PC0','Anifrolumab','Y','2025-10-23 00:00:00'),(74102,11,'XM7YQ6','Anileridine','Y','2025-10-23 00:00:00'),(74098,11,'XM6CL2','Anhydrohydroxy-progesterone','Y','2025-10-23 00:00:00'),(74099,11,'XM8U06','Anhydron','Y','2025-10-23 00:00:00'),(74097,11,'MB24.2','Anhedonia','Y','2025-10-23 00:00:00'),(74095,11,'XA36S6','Angular artery','Y','2025-10-23 00:00:00'),(74096,11,'XA8ZS9','Angular vein','Y','2025-10-23 00:00:00'),(74094,11,'XA0M61','Angle of mandible','Y','2025-10-23 00:00:00'),(74093,11,'DA0E.51','Angle class I malocclusion','Y','2025-10-23 00:00:00'),(74091,11,'XM0EP6','Angiotensinamide','Y','2025-10-23 00:00:00'),(74092,11,'XM72L5','Angiotensin-converting-enzyme inhibitors','Y','2025-10-23 00:00:00'),(74090,11,'XM7169','Angiotensin II antagonists','Y','2025-10-23 00:00:00'),(74089,11,'XM11H1','Angiotensin II','Y','2025-10-23 00:00:00'),(74088,11,'XM10L5','Angiotensin','Y','2025-10-23 00:00:00'),(74087,11,'XN23C','Angiostrongylus costaricensis','Y','2025-10-23 00:00:00'),(74086,11,'XN2UG','Angiostrongylus cantonensis','Y','2025-10-23 00:00:00'),(74085,11,'XN7A5','Angiostrongylus','Y','2025-10-23 00:00:00'),(74084,11,'1F60.Z','Angiostrongyliasis, unspecified','Y','2025-10-23 00:00:00'),(74083,11,'1F60','Angiostrongyliasis','Y','2025-10-23 00:00:00'),(74082,11,'2B56.Z','Angiosarcoma, unspecified primary site','Y','2025-10-23 00:00:00'),(74081,11,'2B56','Angiosarcoma, primary site','Y','2025-10-23 00:00:00'),(74080,11,'2B56.Y','Angiosarcoma, other specified primary site','Y','2025-10-23 00:00:00'),(74079,11,'2B56.1','Angiosarcoma of skin','Y','2025-10-23 00:00:00'),(74078,11,'2B56.3','Angiosarcoma of liver','Y','2025-10-23 00:00:00'),(74077,11,'2B56.0','Angiosarcoma of heart','Y','2025-10-23 00:00:00'),(74076,11,'2B56.2','Angiosarcoma of breast','Y','2025-10-23 00:00:00'),(74074,11,'XH9HK9','Angiomyxoma','Y','2025-10-23 00:00:00'),(74075,11,'LD26.60','Angio-osteohypertrophic syndrome','Y','2025-10-23 00:00:00'),(74073,11,'XH27W3','Angiomyosarcoma','Y','2025-10-23 00:00:00'),(74072,11,'XH7CL0','Angiomyoma','Y','2025-10-23 00:00:00'),(74071,11,'XH0QR3','Angiomyolipoma, Epithelioid','Y','2025-10-23 00:00:00'),(74069,11,'XH8A47','Angiomyofibroblastoma','Y','2025-10-23 00:00:00'),(74070,11,'XH4VB4','Angiomyolipoma','Y','2025-10-23 00:00:00'),(74068,11,'XH6L68','Angiomatous meningioma','Y','2025-10-23 00:00:00'),(74067,11,'XH9362','Angiomatoid fibrous histiocytoma','Y','2025-10-23 00:00:00'),(74066,11,'XH3C77','Angiolipoma, NOS','Y','2025-10-23 00:00:00'),(74064,11,'EF20.1','Angiokeratoma','Y','2025-10-23 00:00:00'),(74065,11,'XH4KP7','Angiokeratoma','Y','2025-10-23 00:00:00'),(74063,11,'2A90.9','Angioimmunoblastic T-cell lymphoma','Y','2025-10-23 00:00:00'),(74062,11,'XH1J86','Angioimmunoblastic T-cell lymphoma','Y','2025-10-23 00:00:00'),(74061,11,'XH2A53','Angioimmunoblastic lymphadenopathy (AIL)','Y','2025-10-23 00:00:00'),(74060,11,'XH1JJ2','Angiofibroma, NOS','Y','2025-10-23 00:00:00'),(74059,11,'DA26.1','Angiodysplasia or arteriovenous malformation of oesophagus','Y','2025-10-23 00:00:00'),(74058,11,'DA43.1','Angiodysplasia of stomach','Y','2025-10-23 00:00:00'),(74057,11,'DA97.0','Angiodysplasia of small intestine','Y','2025-10-23 00:00:00'),(74056,11,'DA52.1','Angiodysplasia of duodenum','Y','2025-10-23 00:00:00'),(74055,11,'DB34.0','Angiodysplasia of colon','Y','2025-10-23 00:00:00'),(74054,11,'XH3U73','Angiocentric immunoproliferative lesion','Y','2025-10-23 00:00:00'),(74053,11,'XH41C5','Angiocentric glioma','Y','2025-10-23 00:00:00'),(74051,11,'BA40','Angina pectoris','Y','2025-10-23 00:00:00'),(74052,11,'BA40.Z','Angina pectoris, unspecified','Y','2025-10-23 00:00:00'),(74049,11,'LD90.0','Angelman syndrome','Y','2025-10-23 00:00:00'),(74050,11,'MB24.1','Anger','Y','2025-10-23 00:00:00'),(74048,11,'8B01.0','Aneurysmal subarachnoid haemorrhage','Y','2025-10-23 00:00:00'),(74047,11,'FB80.6','Aneurysmal bone cyst','Y','2025-10-23 00:00:00'),(74046,11,'XH23E0','Aneurysmal bone cyst','Y','2025-10-23 00:00:00'),(74045,11,'BD51.1','Aneurysm or dissection of vertebral artery','Y','2025-10-23 00:00:00'),(74044,11,'BD51.4','Aneurysm or dissection of renal artery','Y','2025-10-23 00:00:00'),(74043,11,'BD51.2','Aneurysm or dissection of other precerebral arteries','Y','2025-10-23 00:00:00'),(74042,11,'BD51.5','Aneurysm or dissection of iliac artery','Y','2025-10-23 00:00:00'),(74041,11,'BD51.0','Aneurysm or dissection of carotid artery','Y','2025-10-23 00:00:00'),(74040,11,'BD51.3','Aneurysm or dissection of artery of upper extremity','Y','2025-10-23 00:00:00'),(74039,11,'BD51.6','Aneurysm or dissection of artery of lower extremity','Y','2025-10-23 00:00:00'),(74038,11,'BB02.1Z','Aneurysm of pulmonary artery, unspecified','Y','2025-10-23 00:00:00'),(74037,11,'BB02.12','Aneurysm of pulmonary artery without mention of perforation or rupture','Y','2025-10-23 00:00:00'),(74036,11,'BB02.11','Aneurysm of pulmonary artery with rupture','Y','2025-10-23 00:00:00'),(74035,11,'BB02.10','Aneurysm of pulmonary artery with perforation','Y','2025-10-23 00:00:00'),(74034,11,'BB02.1','Aneurysm of pulmonary artery','Y','2025-10-23 00:00:00'),(74033,11,'LA8A.4','Aneurysm of aortic sinus of Valsalva','Y','2025-10-23 00:00:00'),(74032,11,'BD51.Z','Aneurysm and dissection of unspecified artery','Y','2025-10-23 00:00:00'),(74031,11,'BD51.Y','Aneurysm and dissection of other artery, excluding aorta','Y','2025-10-23 00:00:00'),(74030,11,'EE41.1','Anetoderma','Y','2025-10-23 00:00:00'),(74029,11,'XM7600','Anethole trithione','Y','2025-10-23 00:00:00'),(74028,11,'XM8E23','Anesthetic topical','Y','2025-10-23 00:00:00'),(74027,11,'XM0FJ3','Anesthesia regional','Y','2025-10-23 00:00:00'),(74026,11,'XM0D14','Anesthesia rectal local','Y','2025-10-23 00:00:00'),(74025,11,'XM9RW1','Anesthesia muscle relaxation','Y','2025-10-23 00:00:00'),(74024,11,'LA00.0Z','Anencephaly, unspecified','Y','2025-10-23 00:00:00'),(74023,11,'LA00.Z','Anencephaly or similar anomalies, unspecified','Y','2025-10-23 00:00:00'),(74022,11,'LA00','Anencephaly or similar anomalies','Y','2025-10-23 00:00:00'),(74020,11,'XM3PF8','Anecortave','Y','2025-10-23 00:00:00'),(74021,11,'LA00.0','Anencephaly','Y','2025-10-23 00:00:00'),(74019,11,'XM89R1','Androsterone','Y','2025-10-23 00:00:00'),(74018,11,'XM3478','Androstalone','Y','2025-10-23 00:00:00'),(74017,11,'LD56.0','Androgenetic chimaera','Y','2025-10-23 00:00:00'),(74015,11,'XM65R6','Androgen','Y','2025-10-23 00:00:00'),(74016,11,'XM5CT6','Androgen-estrogen mixture','Y','2025-10-23 00:00:00'),(74014,11,'XH0GT2','Androblastoma, NOS','Y','2025-10-23 00:00:00'),(74013,11,'XH44E8','Androblastoma, malignant','Y','2025-10-23 00:00:00'),(74012,11,'XH7H87','Androblastoma, benign','Y','2025-10-23 00:00:00'),(74011,11,'XM01C9','Andexanet alfa','Y','2025-10-23 00:00:00'),(74010,11,'XN4AP','Andes virus','Y','2025-10-23 00:00:00'),(74009,11,'1F68.0','Ancylostomiasis','Y','2025-10-23 00:00:00'),(74008,11,'XN5V8','Ancylostoma duodenal','Y','2025-10-23 00:00:00'),(74007,11,'XN9CG','Ancylostoma','Y','2025-10-23 00:00:00'),(74006,11,'XM3YU3','Ancrod','Y','2025-10-23 00:00:00'),(74005,11,'XA4HK3','Anconeus tendon','Y','2025-10-23 00:00:00'),(74004,11,'XA2583','Anconeus muscle','Y','2025-10-23 00:00:00'),(74003,11,'XM1LV7','Ancillin','Y','2025-10-23 00:00:00'),(74001,11,'XE4F2','Anchor component of medical device','Y','2025-10-23 00:00:00'),(74002,11,'XH0U07','Ancient schwannoma','Y','2025-10-23 00:00:00'),(74000,11,'XM17W1','Ancestim','Y','2025-10-23 00:00:00'),(73999,11,'XA0XN0','Anatomical neck of the humerus','Y','2025-10-23 00:00:00'),(73998,11,'XM4Z64','Anastrozole','Y','2025-10-23 00:00:00'),(73997,11,'DA62.Z','Anastomotic ulcer, unspecified','Y','2025-10-23 00:00:00'),(73996,11,'DA62','Anastomotic ulcer','Y','2025-10-23 00:00:00'),(73995,11,'DA62.0','Anastomotic erosion','Y','2025-10-23 00:00:00'),(73993,11,'MA80.20','Anarthria','Y','2025-10-23 00:00:00'),(73994,11,'LA13.80','Anastomosis of retinal or choroidal vessels','Y','2025-10-23 00:00:00'),(73992,11,'XH98Z7','Anaplastic undifferentiated carcinoma','Y','2025-10-23 00:00:00'),(73991,11,'XH8BK8','Anaplastic pleomorphic xanthoastrocytoma','Y','2025-10-23 00:00:00'),(73990,11,'XH0H95','Anaplastic medulloblastoma','Y','2025-10-23 00:00:00'),(73989,11,'XH7EZ9','Anaplastic large cell lymphoma, T cell and Null cell type','Y','2025-10-23 00:00:00'),(73987,11,'2A90.A','Anaplastic large cell lymphoma, ALK-positive','Y','2025-10-23 00:00:00'),(73988,11,'XH1LC0','Anaplastic large cell lymphoma, NOS','Y','2025-10-23 00:00:00'),(73986,11,'2A90.B','Anaplastic large cell lymphoma, ALK-negative','Y','2025-10-23 00:00:00'),(73985,11,'XH9484','Anaplastic large cell lymphoma, ALK positive','Y','2025-10-23 00:00:00'),(73984,11,'XH9T74','Anaplastic large cell lymphoma, ALK negative','Y','2025-10-23 00:00:00'),(73983,11,'XH78W3','Anaplastic large B-cell lymphoma','Y','2025-10-23 00:00:00'),(73981,11,'XN048','Anaplasma','Y','2025-10-23 00:00:00'),(73982,11,'XN1MH','Anaplasma phagocytophilum','Y','2025-10-23 00:00:00'),(73980,11,'4A84.Z','Anaphylaxis, unspecified','Y','2025-10-23 00:00:00'),(73979,11,'4A84.6','Anaphylaxis secondary to mast cell disorder','Y','2025-10-23 00:00:00'),(73978,11,'4A84.3Z','Anaphylaxis provoked by unspecified physical factors','Y','2025-10-23 00:00:00'),(73977,11,'4A84.3','Anaphylaxis provoked by physical factors','Y','2025-10-23 00:00:00'),(73976,11,'4A84.3Y','Anaphylaxis provoked by other specified physical factors','Y','2025-10-23 00:00:00'),(73975,11,'XS85','Anaphylaxis grade 4','Y','2025-10-23 00:00:00'),(73974,11,'XS2Y','Anaphylaxis grade 3','Y','2025-10-23 00:00:00'),(73973,11,'XS59','Anaphylaxis grade 2','Y','2025-10-23 00:00:00'),(73972,11,'XS09','Anaphylaxis grade 1','Y','2025-10-23 00:00:00'),(73971,11,'4A84.2','Anaphylaxis due to insect venom','Y','2025-10-23 00:00:00'),(73970,11,'4A84.4','Anaphylaxis due to inhaled allergens','Y','2025-10-23 00:00:00'),(73969,11,'4A84.5','Anaphylaxis due to contact with allergens','Y','2025-10-23 00:00:00'),(73967,11,'4A84','Anaphylaxis','Y','2025-10-23 00:00:00'),(73968,11,'4A84.0','Anaphylaxis due to allergic reaction to food','Y','2025-10-23 00:00:00'),(73966,11,'6D11.4','Anankastia in personality disorder or personality difficulty','Y','2025-10-23 00:00:00'),(73965,11,'XM3AF3','Anamirta cocculus plant','Y','2025-10-23 00:00:00'),(73964,11,'XE37A','Analyzer component of medical device','Y','2025-10-23 00:00:00'),(73963,11,'XE4KV','Analysis of production records','Y','2025-10-23 00:00:00'),(73962,11,'XE59M','Analysis of data provided by user or third party','Y','2025-10-23 00:00:00'),(73961,11,'XM7840','Analgesic pyrazole','Y','2025-10-23 00:00:00'),(73960,11,'XM46B3','Analgesic antirheumatic','Y','2025-10-23 00:00:00'),(73959,11,'MB40.8','Analgesia','Y','2025-10-23 00:00:00'),(73958,11,'1A95.0','Anal warts','Y','2025-10-23 00:00:00'),(73957,11,'DB72.0','Anal spasm','Y','2025-10-23 00:00:00'),(73956,11,'EG60','Anal pruritus','Y','2025-10-23 00:00:00'),(73955,11,'DB53','Anal prolapse','Y','2025-10-23 00:00:00'),(73954,11,'DB71.Z','Anal polyp, unspecified','Y','2025-10-23 00:00:00'),(73953,11,'DB71','Anal polyp','Y','2025-10-23 00:00:00'),(73952,11,'XH9S34','Anal intraepithelial neoplasia, low grade','Y','2025-10-23 00:00:00'),(73951,11,'XH7SX5','Anal intraepithelial neoplasia, grade III','Y','2025-10-23 00:00:00'),(73950,11,'DB50.1','Anal fistula','Y','2025-10-23 00:00:00'),(73948,11,'XA39S6','Anal Canal','Y','2025-10-23 00:00:00'),(73949,11,'DB50.0','Anal fissure','Y','2025-10-23 00:00:00'),(73947,11,'SB61','Anal abscess disorder (TM1)','Y','2025-10-23 00:00:00'),(73946,11,'DB70.00','Anal abscess','Y','2025-10-23 00:00:00'),(73945,11,'XM3CP6','Anakinra','Y','2025-10-23 00:00:00'),(73943,11,'XM2PZ5','Anagrelide','Y','2025-10-23 00:00:00'),(73944,11,'XN2VY','Anajatuba virus','Y','2025-10-23 00:00:00'),(73942,11,'ED70.4','Anagen effluvium','Y','2025-10-23 00:00:00'),(73941,11,'XM3S41','Anaesthetic with local muscle relaxant','Y','2025-10-23 00:00:00'),(73940,11,'XM7EC3','Anaesthetic spinal','Y','2025-10-23 00:00:00'),(73939,11,'XM0LM0','Anaesthetic infiltration','Y','2025-10-23 00:00:00'),(73937,11,'XM05Z8','Anaesthetic gaseous','Y','2025-10-23 00:00:00'),(73938,11,'XM8V73','Anaesthetic halogenated hydrocarbon derivatives','Y','2025-10-23 00:00:00'),(73936,11,'PK90.Z','Anaesthesiology devices associated with injury or harm, unspecified','Y','2025-10-23 00:00:00'),(73935,11,'PK90.1','Anaesthesiology devices associated with injury or harm, therapeutic, nonsurgical or rehabilitative devices','Y','2025-10-23 00:00:00'),(73934,11,'PK90.3','Anaesthesiology devices associated with injury or harm, surgical instruments, materials or devices','Y','2025-10-23 00:00:00'),(73933,11,'PK90.2','Anaesthesiology devices associated with injury or harm, prosthetic or other implants, materials or accessory devices','Y','2025-10-23 00:00:00'),(73931,11,'PK90.0','Anaesthesiology devices associated with injury or harm, diagnostic or monitoring devices','Y','2025-10-23 00:00:00'),(73932,11,'PK90.4','Anaesthesiology devices associated with injury or harm, miscellaneous devices, not elsewhere classified','Y','2025-10-23 00:00:00'),(73930,11,'PK90','Anaesthesiology devices associated with injury or harm','Y','2025-10-23 00:00:00'),(73929,11,'XM25C7','Anaesthesia, mucosal','Y','2025-10-23 00:00:00'),(73928,11,'XM8MY3','Anaesthesia, epidural','Y','2025-10-23 00:00:00'),(73927,11,'XM5R82','Anaesthesia, caudal','Y','2025-10-23 00:00:00'),(73926,11,'MB40.3','Anaesthesia of skin','Y','2025-10-23 00:00:00'),(73925,11,'9A78.6','Anaesthesia of cornea','Y','2025-10-23 00:00:00'),(73924,11,'XM0ZA2','Anaesthesia endotracheal','Y','2025-10-23 00:00:00'),(73923,11,'3A9Z','Anaemias or other erythrocyte disorders, unspecified','Y','2025-10-23 00:00:00'),(73922,11,'KA8B','Anaemia of prematurity','Y','2025-10-23 00:00:00'),(73921,11,'3A71.0','Anaemia in neoplastic disease','Y','2025-10-23 00:00:00'),(73920,11,'3A71.2','Anaemia in chronic kidney disease','Y','2025-10-23 00:00:00'),(73919,11,'3A71.1','Anaemia in chronic infectious diseases','Y','2025-10-23 00:00:00'),(73918,11,'3A71.Y','Anaemia due to other specified chronic disease','Y','2025-10-23 00:00:00'),(73917,11,'3A71.Z','Anaemia due to chronic disease, unspecified','Y','2025-10-23 00:00:00'),(73916,11,'3A71','Anaemia due to chronic disease','Y','2025-10-23 00:00:00'),(73915,11,'3A90','Anaemia due to acute disease','Y','2025-10-23 00:00:00'),(73914,11,'JB64.0','Anaemia complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(73913,11,'MB40.2','Anacusis','Y','2025-10-23 00:00:00'),(73912,11,'XM3BT9','Anabolic steroid','Y','2025-10-23 00:00:00'),(73911,11,'8B60.5','Amyotrophic lateral sclerosis-Plus','Y','2025-10-23 00:00:00'),(73910,11,'8B60.0','Amyotrophic lateral sclerosis','Y','2025-10-23 00:00:00'),(73909,11,'XM62S7','Amylopectin','Y','2025-10-23 00:00:00'),(73908,11,'5D00.Z','Amyloidosis, unspecified','Y','2025-10-23 00:00:00'),(73907,11,'5D00','Amyloidosis','Y','2025-10-23 00:00:00'),(73905,11,'XM37J6','Amylocaine, regional spinal','Y','2025-10-23 00:00:00'),(73906,11,'XM5JY6','Amylocaine, regional topical','Y','2025-10-23 00:00:00'),(73904,11,'XM7CH6','Amylocaine, regional nerve block','Y','2025-10-23 00:00:00'),(73902,11,'XM1FJ6','Amylocaine, regional','Y','2025-10-23 00:00:00'),(73903,11,'XM1H49','Amylocaine, regional infiltration','Y','2025-10-23 00:00:00'),(73901,11,'XM9SX0','Amylmetacresol','Y','2025-10-23 00:00:00'),(73900,11,'XM5JW4','Amylene hydrate','Y','2025-10-23 00:00:00'),(73898,11,'XM9RM0','Amyl propionate','Y','2025-10-23 00:00:00'),(73899,11,'XM5ZE8','Amylene dichloride','Y','2025-10-23 00:00:00'),(73897,11,'XM5HX1','Amyl formate','Y','2025-10-23 00:00:00'),(73896,11,'XM5TZ2','Amyl cinnamal','Y','2025-10-23 00:00:00'),(73895,11,'XM45Q9','Amyl chloride','Y','2025-10-23 00:00:00'),(73893,11,'XM1JM2','Amyl acetate vapor','Y','2025-10-23 00:00:00'),(73894,11,'XM88C8','Amyl alcohol','Y','2025-10-23 00:00:00'),(73892,11,'XM2KF5','Amyl acetate','Y','2025-10-23 00:00:00'),(73890,11,'XA1XY9','Amygdala','Y','2025-10-23 00:00:00'),(73891,11,'XM01R5','Amygdalin','Y','2025-10-23 00:00:00'),(73889,11,'LA07.2','Amyelia','Y','2025-10-23 00:00:00'),(73888,11,'LA00.3','Amyelencephaly','Y','2025-10-23 00:00:00'),(73887,11,'XE35Q','Amusement park or theme park','Y','2025-10-23 00:00:00'),(73885,11,'XM8307','Amsacrine','Y','2025-10-23 00:00:00'),(73886,11,'XN9UC','Amur virus','Y','2025-10-23 00:00:00'),(73883,11,'XM0QD0','Amrinone','Y','2025-10-23 00:00:00'),(73884,11,'XM3J03','Amrubicin','Y','2025-10-23 00:00:00'),(73882,11,'XA7QA8','Ampulla of Vater','Y','2025-10-23 00:00:00'),(73881,11,'XM1Q22','Amprotropine','Y','2025-10-23 00:00:00'),(73880,11,'XM6WJ3','Amprenavir','Y','2025-10-23 00:00:00'),(73879,11,'MG50.30','Ampicillin resistant Haemophilus influenzae','Y','2025-10-23 00:00:00'),(73878,11,'XM3DN8','Ampicillin and beta-lactamase inhibitor','Y','2025-10-23 00:00:00'),(73877,11,'XM5MY7','Ampicillin','Y','2025-10-23 00:00:00'),(73876,11,'XM7CU1','Amphotericin B topical','Y','2025-10-23 00:00:00'),(73875,11,'XM5TR4','Amphotericin B','Y','2025-10-23 00:00:00'),(73874,11,'XM1PP4','Amphotalide','Y','2025-10-23 00:00:00'),(73873,11,'XM4E54','Amphomycin','Y','2025-10-23 00:00:00'),(73872,11,'XE4MT','Amphibious vehicle on land as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(73870,11,'XM26J2','Amphibian toxin','Y','2025-10-23 00:00:00'),(73871,11,'XE8AH','Amphibious vehicle on land as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(73869,11,'XM3JM5','Amphenidone','Y','2025-10-23 00:00:00'),(73867,11,'XM4GQ2','Amperozide','Y','2025-10-23 00:00:00'),(73868,11,'XM0MG9','Amphenicols','Y','2025-10-23 00:00:00'),(73865,11,'XM7CM1','Amoxicillin','Y','2025-10-23 00:00:00'),(73866,11,'XM7UP4','Amoxicillin and beta-lactamase inhibitor','Y','2025-10-23 00:00:00'),(73863,11,'XM6474','Amorolfine','Y','2025-10-23 00:00:00'),(73864,11,'XM8TQ9','Amoxapine','Y','2025-10-23 00:00:00'),(73862,11,'XM0NC8','Amopyroquin','Y','2025-10-23 00:00:00'),(73861,11,'1A36.01','Amoeboma of intestine','Y','2025-10-23 00:00:00'),(73860,11,'1A36.11','Amoebic lung abscess','Y','2025-10-23 00:00:00'),(73859,11,'1A36.10','Amoebic liver abscess','Y','2025-10-23 00:00:00'),(73858,11,'1A36.Z','Amoebiasis, unspecified','Y','2025-10-23 00:00:00'),(73857,11,'1A36.1Y','Amoebiasis of other specified sites','Y','2025-10-23 00:00:00'),(73856,11,'1A36','Amoebiasis','Y','2025-10-23 00:00:00'),(73854,11,'XM3GB3','Amodiaquine','Y','2025-10-23 00:00:00'),(73855,11,'XN7S2','Amoeba','Y','2025-10-23 00:00:00'),(73853,11,'XM01F5','Amobarbital','Y','2025-10-23 00:00:00'),(73852,11,'XA7MU1','Amniotic sac','Y','2025-10-23 00:00:00'),(73851,11,'JB42.1','Amniotic fluid embolism','Y','2025-10-23 00:00:00'),(73849,11,'XA8XR0','Amnion','Y','2025-10-23 00:00:00'),(73850,11,'XA33K4','Amniotic fluid','Y','2025-10-23 00:00:00'),(73848,11,'6D72.Z','Amnestic disorder, unknown or unspecified cause','Y','2025-10-23 00:00:00'),(73847,11,'6D72.Y','Amnestic disorder, other specified cause','Y','2025-10-23 00:00:00'),(73846,11,'6D72.13','Amnestic disorder due to use of volatile inhalants','Y','2025-10-23 00:00:00'),(73845,11,'6D72.11','Amnestic disorder due to use of sedatives, hypnotics or anxiolytics','Y','2025-10-23 00:00:00'),(73844,11,'6D72.10','Amnestic disorder due to use of alcohol','Y','2025-10-23 00:00:00'),(73843,11,'6D72.1','Amnestic disorder due to psychoactive substances including medications','Y','2025-10-23 00:00:00'),(73842,11,'6D72.12','Amnestic disorder due to other specified psychoactive substance including medications','Y','2025-10-23 00:00:00'),(73840,11,'6D72','Amnestic disorder','Y','2025-10-23 00:00:00'),(73841,11,'6D72.0','Amnestic disorder due to diseases classified elsewhere','Y','2025-10-23 00:00:00'),(73839,11,'MB21.1Z','Amnesia, unspecified','Y','2025-10-23 00:00:00'),(73837,11,'XM3KJ5','Ammonium sulfonate resin','Y','2025-10-23 00:00:00'),(73838,11,'MB21.1','Amnesia','Y','2025-10-23 00:00:00'),(73835,11,'XM8RR9','Ammonium persulfate','Y','2025-10-23 00:00:00'),(73836,11,'XM3FE7','Ammonium sulfamate','Y','2025-10-23 00:00:00'),(73834,11,'XM4NU1','Ammonium nitrate','Y','2025-10-23 00:00:00'),(73832,11,'XM4A47','Ammonium chloride expectorant','Y','2025-10-23 00:00:00'),(73833,11,'XM2GV6','Ammonium ichthyosulronate','Y','2025-10-23 00:00:00'),(73831,11,'XM1W37','Ammonium chloride','Y','2025-10-23 00:00:00'),(73830,11,'XM51W3','Ammonium carbonate','Y','2025-10-23 00:00:00'),(73828,11,'XM6H73','Ammonium acid tartrate','Y','2025-10-23 00:00:00'),(73829,11,'XM0FX2','Ammonium bromide','Y','2025-10-23 00:00:00'),(73827,11,'XM2KS4','Ammonia liquid','Y','2025-10-23 00:00:00'),(73826,11,'XM5674','Ammonia (13N)','Y','2025-10-23 00:00:00'),(73825,11,'XM4TP4','Ammonia','Y','2025-10-23 00:00:00'),(73823,11,'XM82N7','Amlexanox','Y','2025-10-23 00:00:00'),(73824,11,'XM68M5','Amlodipine','Y','2025-10-23 00:00:00'),(73822,11,'XM0550','Amivantamab','Y','2025-10-23 00:00:00'),(73821,11,'XM7BL0','Amitriptyline','Y','2025-10-23 00:00:00'),(73820,11,'XM1DG3','Amisulpride','Y','2025-10-23 00:00:00'),(73819,11,'XM2E81','Amisometradine','Y','2025-10-23 00:00:00'),(73818,11,'XM6T97','Amiquinsin','Y','2025-10-23 00:00:00'),(73816,11,'XM3ZJ7','Amiodarone','Y','2025-10-23 00:00:00'),(73817,11,'XM9QA2','Amiphenazole','Y','2025-10-23 00:00:00'),(73815,11,'XM6QT5','Aminosalylum','Y','2025-10-23 00:00:00'),(73814,11,'XM8781','Aminosalicylic acid and derivatives','Y','2025-10-23 00:00:00'),(73813,11,'XM1X82','Aminosalicylic acid','Y','2025-10-23 00:00:00'),(73812,11,'XM54E8','Aminorex','Y','2025-10-23 00:00:00'),(73811,11,'XM50C8','Aminoquinolines','Y','2025-10-23 00:00:00'),(73810,11,'XM7GE5','Aminopterin sodium','Y','2025-10-23 00:00:00'),(73809,11,'XM5XJ1','Aminophylline','Y','2025-10-23 00:00:00'),(73808,11,'XM3FK8','Aminophenol','Y','2025-10-23 00:00:00'),(73806,11,'XM0TL7','Aminopentamide','Y','2025-10-23 00:00:00'),(73807,11,'XM7045','Aminophenazone','Y','2025-10-23 00:00:00'),(73805,11,'XM5W29','Aminometradine','Y','2025-10-23 00:00:00'),(73804,11,'XM41G3','Aminomethylbenzoic acid','Y','2025-10-23 00:00:00'),(73802,11,'XM27H8','Aminohippuric acid','Y','2025-10-23 00:00:00'),(73803,11,'XM40J3','Aminolevulinic acid','Y','2025-10-23 00:00:00'),(73801,11,'MG50.64','Aminoglycoside resistant Neisseria gonorrhoeae','Y','2025-10-23 00:00:00'),(73800,11,'MG50.01','Aminoglycoside resistant Acinetobacter baumannii','Y','2025-10-23 00:00:00'),(73798,11,'XM8VV3','Aminoethylisothiourium','Y','2025-10-23 00:00:00'),(73799,11,'XM7D25','Aminoglutethimide','Y','2025-10-23 00:00:00'),(73797,11,'MG50.62','Aminocyclitol resistant Neisseria gonorrhoeae','Y','2025-10-23 00:00:00'),(73796,11,'XM4BG8','Aminocaproic acid','Y','2025-10-23 00:00:00'),(73795,11,'XM5ZT1','Aminobutyric acid','Y','2025-10-23 00:00:00'),(73794,11,'XM1S82','Aminobenzoic acid (-p)','Y','2025-10-23 00:00:00'),(73793,11,'XM8MV2','Aminoalkyl ethers','Y','2025-10-23 00:00:00'),(73792,11,'XM6RK6','Aminoacridine','Y','2025-10-23 00:00:00'),(73791,11,'GB90.47','Aminoaciduria','Y','2025-10-23 00:00:00'),(73790,11,'XM7KG7','Aminoacetic acid (derivatives)','Y','2025-10-23 00:00:00'),(73789,11,'XM9QF8','Amino(diphenylhydantoin) valeric acid','Y','2025-10-23 00:00:00'),(73788,11,'XM4Z15','Amino acids','Y','2025-10-23 00:00:00'),(73787,11,'XM0FS7','Aminitrozole','Y','2025-10-23 00:00:00'),(73786,11,'XM1190','Amineptine','Y','2025-10-23 00:00:00'),(73784,11,'XM6801','Amikhelline','Y','2025-10-23 00:00:00'),(73785,11,'XM1SM2','Amiloride','Y','2025-10-23 00:00:00'),(73783,11,'XM3X89','Amikacin','Y','2025-10-23 00:00:00'),(73781,11,'XM3533','Amiflamine','Y','2025-10-23 00:00:00'),(73782,11,'XM5GF2','Amifostine','Y','2025-10-23 00:00:00'),(73780,11,'XM4C58','Amifampridine','Y','2025-10-23 00:00:00'),(73779,11,'XM0L44','Amidotrizoate','Y','2025-10-23 00:00:00'),(73778,11,'XM38P3','Amidefrine mesilate','Y','2025-10-23 00:00:00'),(73777,11,'XM3C53','Amfetaminil','Y','2025-10-23 00:00:00'),(73776,11,'XM2520','Amfetamine and amfetamine derivatives','Y','2025-10-23 00:00:00'),(73775,11,'XM48Z9','Amfetamine','Y','2025-10-23 00:00:00'),(73774,11,'XM84W9','Amfepramone','Y','2025-10-23 00:00:00'),(73773,11,'XM10F0','Amezinium metilsulfate','Y','2025-10-23 00:00:00'),(73772,11,'XM7WR0','American dog tick venom','Y','2025-10-23 00:00:00'),(73771,11,'XM6CL7','American copperhead snake venom','Y','2025-10-23 00:00:00'),(73770,11,'GA20.0Z','Amenorrhoea, unspecified','Y','2025-10-23 00:00:00'),(73769,11,'GA20.0','Amenorrhoea','Y','2025-10-23 00:00:00'),(73768,11,'SB94','Amenorrhea disorder (TM1)','Y','2025-10-23 00:00:00'),(73767,11,'XM1QY5','Amenamevir','Y','2025-10-23 00:00:00'),(73766,11,'LA30.6','Amelogenesis imperfecta','Y','2025-10-23 00:00:00'),(73765,11,'XH5ZZ6','Ameloblastoma, unicystic type','Y','2025-10-23 00:00:00'),(73764,11,'XH1SV4','Ameloblastoma, NOS','Y','2025-10-23 00:00:00'),(73763,11,'XH96J9','Ameloblastoma, metastasizing','Y','2025-10-23 00:00:00'),(73762,11,'XH4KQ4','Ameloblastoma, extraosseous/peripheral type','Y','2025-10-23 00:00:00'),(73761,11,'XH1MW0','Ameloblastic odontosarcoma','Y','2025-10-23 00:00:00'),(73760,11,'XH0XD5','Ameloblastic fibrosarcoma','Y','2025-10-23 00:00:00'),(73759,11,'XH44W7','Ameloblastic fibro-odontoma','Y','2025-10-23 00:00:00'),(73758,11,'XH06Y3','Ameloblastic fibroma','Y','2025-10-23 00:00:00'),(73757,11,'XH0964','Ameloblastic fibrodentinoma','Y','2025-10-23 00:00:00'),(73755,11,'LB9A.0','Amelia of lower limb','Y','2025-10-23 00:00:00'),(73756,11,'LB99.0','Amelia of upper limb','Y','2025-10-23 00:00:00'),(73754,11,'XH3TK1','Amelanotic melanoma','Y','2025-10-23 00:00:00'),(73753,11,'XM35S7','Amcinonide','Y','2025-10-23 00:00:00'),(73752,11,'XM0DF0','Ambutonium bromide','Y','2025-10-23 00:00:00'),(73751,11,'XM6493','Ambuphylline','Y','2025-10-23 00:00:00'),(73750,11,'XE80A','Ambulance','Y','2025-10-23 00:00:00'),(73748,11,'XM8HR5','Ambrisentan','Y','2025-10-23 00:00:00'),(73749,11,'XM6JV7','Ambroxol','Y','2025-10-23 00:00:00'),(73747,11,'MB24.0','Ambivalence','Y','2025-10-23 00:00:00'),(73746,11,'XE5R1','Ambient temperature problem','Y','2025-10-23 00:00:00'),(73745,11,'XE027','Ambient noise problem','Y','2025-10-23 00:00:00'),(73744,11,'XE5SF','Ambient light problem with device identified','Y','2025-10-23 00:00:00'),(73743,11,'XM4PZ3','Ambenonium','Y','2025-10-23 00:00:00'),(73742,11,'XM7CJ4','Ambazone','Y','2025-10-23 00:00:00'),(73740,11,'9B00.1','Amaurotic pupillary reaction','Y','2025-10-23 00:00:00'),(73741,11,'XM5LB1','Amazonian giant centipede venom','Y','2025-10-23 00:00:00'),(73738,11,'XM2H09','Amantadine','Y','2025-10-23 00:00:00'),(73739,11,'8B10.0','Amaurosis fugax','Y','2025-10-23 00:00:00'),(73737,11,'XM1DV5','Amanita virosa mushroom','Y','2025-10-23 00:00:00'),(73736,11,'XM0G40','Amanita verna mushroom','Y','2025-10-23 00:00:00'),(73735,11,'XM5039','Amanita tenuifolia mushroom','Y','2025-10-23 00:00:00'),(73733,11,'XM3VN8','Amanita smithiana mushroom','Y','2025-10-23 00:00:00'),(73734,11,'XM2HH5','Amanita suballiacea mushroom','Y','2025-10-23 00:00:00'),(73732,11,'XM23X2','Amanita pseudoporphyria hongo mushroom','Y','2025-10-23 00:00:00'),(73731,11,'XM6HP7','Amanita phalloides mushroom','Y','2025-10-23 00:00:00'),(73730,11,'XM4NS6','Amanita pantherina mushroom','Y','2025-10-23 00:00:00'),(73729,11,'XM8MF4','Amanita ocreata mushroom','Y','2025-10-23 00:00:00'),(73727,11,'XM91N3','Amanita muscaria mushroom','Y','2025-10-23 00:00:00'),(73728,11,'XM7P94','Amanita mushroom','Y','2025-10-23 00:00:00'),(73726,11,'XM5911','Amanita hygroscopica mushroom','Y','2025-10-23 00:00:00'),(73725,11,'XM82H0','Amanita bisporigera mushroom','Y','2025-10-23 00:00:00'),(73724,11,'XM7UJ7','Amalgam','Y','2025-10-23 00:00:00'),(73723,11,'6D80.3','Alzheimer disease dementia, mixed type, with other nonvascular aetiologies','Y','2025-10-23 00:00:00'),(73722,11,'6D80.2','Alzheimer disease dementia, mixed type, with cerebrovascular disease','Y','2025-10-23 00:00:00'),(73721,11,'8A20','Alzheimer disease','Y','2025-10-23 00:00:00'),(73720,11,'XM4GP3','Alvimopan','Y','2025-10-23 00:00:00'),(73719,11,'XM5RS2','Alverine','Y','2025-10-23 00:00:00'),(73718,11,'XA69M6','Alveololingual sulcus','Y','2025-10-23 00:00:00'),(73716,11,'XA5772','Alveoli','Y','2025-10-23 00:00:00'),(73717,11,'DA06.1','Alveolitis of jaw','Y','2025-10-23 00:00:00'),(73715,11,'XA4UM2','Alveolar wall','Y','2025-10-23 00:00:00'),(73714,11,'XA37J7','Alveolar vein','Y','2025-10-23 00:00:00'),(73713,11,'XH8V95','Alveolar soft part sarcoma','Y','2025-10-23 00:00:00'),(73712,11,'XH7099','Alveolar rhabdomyosarcoma','Y','2025-10-23 00:00:00'),(73711,11,'CB04.3Z','Alveolar or peri-alveolar conditions, unspecified','Y','2025-10-23 00:00:00'),(73710,11,'CB04.3','Alveolar or peri-alveolar conditions','Y','2025-10-23 00:00:00'),(73709,11,'XA3SP9','Alveolar mucosa','Y','2025-10-23 00:00:00'),(73708,11,'XA3B77','Alveolar border of body of mandible','Y','2025-10-23 00:00:00'),(73707,11,'XH9356','Alveolar adenoma','Y','2025-10-23 00:00:00'),(73706,11,'XH07X3','Alveolar adenocarcinoma','Y','2025-10-23 00:00:00'),(73705,11,'XM38T8','Aluminum hydroxide (gel)','Y','2025-10-23 00:00:00'),(73704,11,'CA60.4','Aluminosis of lung','Y','2025-10-23 00:00:00'),(73703,11,'XM06X6','Aluminium, aluminum ointment (surgical) (topical)','Y','2025-10-23 00:00:00'),(73702,11,'XM6Q06','Aluminium, aluminium tannate','Y','2025-10-23 00:00:00'),(73701,11,'XM0BM4','Aluminium, aluminium sodium silicate','Y','2025-10-23 00:00:00'),(73700,11,'XM8FL6','Aluminium, aluminium silicate','Y','2025-10-23 00:00:00'),(73699,11,'XM2VU8','Aluminium, aluminium phosphate','Y','2025-10-23 00:00:00'),(73698,11,'XM35X7','Aluminium, aluminium magnesium silicate','Y','2025-10-23 00:00:00'),(73697,11,'XM9DS4','Aluminium, aluminium hydroxide-magnesium carb. gel','Y','2025-10-23 00:00:00'),(73696,11,'XM7DC3','Aluminium, aluminium glycinate','Y','2025-10-23 00:00:00'),(73694,11,'XM8YP0','Aluminium, aluminium carbonate (gel, basic)','Y','2025-10-23 00:00:00'),(73695,11,'XM3Q55','Aluminium, aluminium chlorhydroxide-complex','Y','2025-10-23 00:00:00'),(73693,11,'XM6JG7','Aluminium sulfate','Y','2025-10-23 00:00:00'),(73692,11,'XM2399','Aluminium subacetate','Y','2025-10-23 00:00:00'),(73690,11,'XM41S0','Aluminium oxide','Y','2025-10-23 00:00:00'),(73691,11,'XM3TB8','Aluminium phosphide','Y','2025-10-23 00:00:00'),(73689,11,'XM7JJ2','Aluminium nonmedicinal','Y','2025-10-23 00:00:00'),(73687,11,'5B91.4','Aluminium excess','Y','2025-10-23 00:00:00'),(73688,11,'XM7DC4','Aluminium nicotinate','Y','2025-10-23 00:00:00'),(73686,11,'XM2D21','Aluminium diacetate','Y','2025-10-23 00:00:00'),(73684,11,'XM7929','Aluminium clofibrate','Y','2025-10-23 00:00:00'),(73685,11,'XM3JP8','Aluminium compounds','Y','2025-10-23 00:00:00'),(73683,11,'XM5AP2','Aluminium chlorohydrate','Y','2025-10-23 00:00:00'),(73682,11,'XM7FE1','Aluminium chloride','Y','2025-10-23 00:00:00'),(73681,11,'FB83.20','Aluminium bone disease','Y','2025-10-23 00:00:00'),(73679,11,'XM0CC9','Aluminium acetate solution','Y','2025-10-23 00:00:00'),(73680,11,'XM2PS8','Aluminium acetotartrate','Y','2025-10-23 00:00:00'),(73677,11,'XM5GN1','Alum potassium','Y','2025-10-23 00:00:00'),(73678,11,'XM3P38','Aluminium acetate','Y','2025-10-23 00:00:00'),(73676,11,'XM68C9','Alum nonmedicinal','Y','2025-10-23 00:00:00'),(73674,11,'XM7H25','Alum (medicinal)','Y','2025-10-23 00:00:00'),(73675,11,'XM9CV4','Alum ammonium','Y','2025-10-23 00:00:00'),(73672,11,'XM5FV5','Altizide','Y','2025-10-23 00:00:00'),(73673,11,'XM9YD3','Altretamine','Y','2025-10-23 00:00:00'),(73670,11,'9C83.66','Alternating skew deviation','Y','2025-10-23 00:00:00'),(73671,11,'XM48C4','Altheae radix','Y','2025-10-23 00:00:00'),(73669,11,'MB53.0','Alternating hemiplegia','Y','2025-10-23 00:00:00'),(73668,11,'SD93','Alternating fever and chills disorder (TM1)','Y','2025-10-23 00:00:00'),(73666,11,'XE0UM','Altercation','Y','2025-10-23 00:00:00'),(73667,11,'QE92','Altered pattern of family relationships in childhood','Y','2025-10-23 00:00:00'),(73664,11,'XM28Y3','Alseroxylon','Y','2025-10-23 00:00:00'),(73665,11,'XM9A41','Alteplase','Y','2025-10-23 00:00:00'),(73662,11,'XM1CF2','Alprostadil','Y','2025-10-23 00:00:00'),(73663,11,'XM3G67','Alsactide','Y','2025-10-23 00:00:00'),(73660,11,'XM1030','Alprazolam','Y','2025-10-23 00:00:00'),(73661,11,'XM2YK6','Alprenolol','Y','2025-10-23 00:00:00'),(73659,11,'XN6ME','Alphavirus','Y','2025-10-23 00:00:00'),(73657,11,'XN465','Alphaherpesvirinae','Y','2025-10-23 00:00:00'),(73658,11,'XN2R0','Alpharetrovirus','Y','2025-10-23 00:00:00'),(73656,11,'XN1V3','Alpha-hemolytic Streptococcus','Y','2025-10-23 00:00:00'),(73654,11,'XM14F2','Alphadolone','Y','2025-10-23 00:00:00'),(73655,11,'3B62.00','Alpha-granule diseases','Y','2025-10-23 00:00:00'),(73653,11,'3B62.4','Alpha-delta dense granule deficiency','Y','2025-10-23 00:00:00'),(73652,11,'XM36U7','Alphaand beta-adrenoreceptor agonists','Y','2025-10-23 00:00:00'),(73651,11,'5C5A','Alpha-1-antitrypsin deficiency','Y','2025-10-23 00:00:00'),(73650,11,'5C61.3','Alpha, alpha trehalase deficiency','Y','2025-10-23 00:00:00'),(73649,11,'3A50.0Z','Alpha thalassaemia, unspecified','Y','2025-10-23 00:00:00'),(73648,11,'3A50.1','Alpha thalassaemia related syndromes','Y','2025-10-23 00:00:00'),(73647,11,'3A50.0','Alpha thalassaemia','Y','2025-10-23 00:00:00'),(73646,11,'XM4X40','Alpha naphthylthiourea','Y','2025-10-23 00:00:00'),(73644,11,'2A84.0','Alpha heavy chain disease','Y','2025-10-23 00:00:00'),(73645,11,'XH1Y65','Alpha heavy chain disease','Y','2025-10-23 00:00:00'),(73643,11,'XM2WY1','Alpha glucosidase inhibitors','Y','2025-10-23 00:00:00'),(73642,11,'XM8UV3','Alpha chlorhydrin','Y','2025-10-23 00:00:00'),(73640,11,'XM0KX8','Alpha amylase','Y','2025-10-23 00:00:00'),(73641,11,'XM77E7','Alpha and beta blocking agents, antagonists','Y','2025-10-23 00:00:00'),(73639,11,'XM2L44','Alpha adrenergic blocking drug','Y','2025-10-23 00:00:00'),(73637,11,'XM3BC1','Alpelisib','Y','2025-10-23 00:00:00'),(73638,11,'XM7YK1','Alpha acetyldigoxin','Y','2025-10-23 00:00:00'),(73635,11,'XM1535','Aloxidone','Y','2025-10-23 00:00:00'),(73636,11,'XM2JA1','Aloxiprin','Y','2025-10-23 00:00:00'),(73634,11,'ED70.Z','Alopecia, unspecified','Y','2025-10-23 00:00:00'),(73632,11,'ED70','Alopecia or hair loss','Y','2025-10-23 00:00:00'),(73633,11,'ED70.21','Alopecia totalis','Y','2025-10-23 00:00:00'),(73631,11,'ED70.2Z','Alopecia areata, unspecified','Y','2025-10-23 00:00:00'),(73629,11,'XM6UQ2','Aloin','Y','2025-10-23 00:00:00'),(73630,11,'ED70.2','Alopecia areata','Y','2025-10-23 00:00:00'),(73627,11,'XM1044','Alogliptin','Y','2025-10-23 00:00:00'),(73628,11,'XM4NY5','Aloglutamol','Y','2025-10-23 00:00:00'),(73626,11,'XM9P20','Aloes','Y','2025-10-23 00:00:00'),(73624,11,'XM0AP5','Almitrine','Y','2025-10-23 00:00:00'),(73625,11,'XM92S7','Almotriptan','Y','2025-10-23 00:00:00'),(73622,11,'XM9Y49','Almasilate','Y','2025-10-23 00:00:00'),(73623,11,'XM1W06','Alminoprofen','Y','2025-10-23 00:00:00'),(73620,11,'XM2MT0','Allyltribromide','Y','2025-10-23 00:00:00'),(73621,11,'XM8J56','Almagate','Y','2025-10-23 00:00:00'),(73618,11,'XM0Y74','Allylisopropylacetylurea','Y','2025-10-23 00:00:00'),(73619,11,'XM8U60','Allylthiourea','Y','2025-10-23 00:00:00'),(73616,11,'XM51N7','Allyl Alcohol','Y','2025-10-23 00:00:00'),(73617,11,'XM77R9','Allylestrenol','Y','2025-10-23 00:00:00'),(73614,11,'3B64.13','Alloimmune thrombocytopenia','Y','2025-10-23 00:00:00'),(73615,11,'XM9589','Allopurinol','Y','2025-10-23 00:00:00'),(73613,11,'KA8E','Alloimmune neonatal neutropaenia','Y','2025-10-23 00:00:00'),(73611,11,'MB40.1','Allodynia','Y','2025-10-23 00:00:00'),(73612,11,'3A20.4','Alloimmune haemolytic anaemia','Y','2025-10-23 00:00:00'),(73610,11,'XM8FN0','Allobarbital','Y','2025-10-23 00:00:00'),(73608,11,'XM7TF6','Allethrin','Y','2025-10-23 00:00:00'),(73609,11,'XM27C9','Allethrin insecticide','Y','2025-10-23 00:00:00'),(73607,11,'CA08.0Z','Allergic rhinitis, unspecified','Y','2025-10-23 00:00:00'),(73606,11,'CA08.00','Allergic rhinitis due to pollen','Y','2025-10-23 00:00:00'),(73605,11,'CA08.01','Allergic rhinitis due to other seasonal allergens','Y','2025-10-23 00:00:00'),(73604,11,'CA08.02','Allergic rhinitis due to house dust mite','Y','2025-10-23 00:00:00'),(73603,11,'SC90','Allergic rhinitis disorder (TM1)','Y','2025-10-23 00:00:00'),(73602,11,'CA08.0','Allergic rhinitis','Y','2025-10-23 00:00:00'),(73601,11,'4A85.3','Allergic or hypersensitivity reactions to arthropods','Y','2025-10-23 00:00:00'),(73600,11,'4A80.Z','Allergic or hypersensitivity disorders involving the respiratory tract, unspecified','Y','2025-10-23 00:00:00'),(73599,11,'4A80','Allergic or hypersensitivity disorders involving the respiratory tract','Y','2025-10-23 00:00:00'),(73598,11,'4A83.Z','Allergic or hypersensitivity disorders involving the gastrointestinal tract, unspecified','Y','2025-10-23 00:00:00'),(73597,11,'4A83','Allergic or hypersensitivity disorders involving the gastrointestinal tract','Y','2025-10-23 00:00:00'),(73596,11,'4A81','Allergic or hypersensitivity disorders involving the eye','Y','2025-10-23 00:00:00'),(73595,11,'4A82','Allergic or hypersensitivity disorders involving skin or mucous membranes','Y','2025-10-23 00:00:00'),(73594,11,'4A8Z','Allergic or hypersensitivity conditions of unspecified type','Y','2025-10-23 00:00:00'),(73593,11,'4A8Y','Allergic or hypersensitivity conditions of other specified type','Y','2025-10-23 00:00:00'),(73592,11,'DA94.2Z','Allergic or dietetic enteritis of small intestine, unspecified','Y','2025-10-23 00:00:00'),(73591,11,'DA94.2','Allergic or dietetic enteritis of small intestine','Y','2025-10-23 00:00:00'),(73590,11,'DB33.2Z','Allergic or dietetic colitis, unspecified','Y','2025-10-23 00:00:00'),(73589,11,'DB33.2','Allergic or dietetic colitis','Y','2025-10-23 00:00:00'),(73588,11,'DA0B.0','Allergic gingivitis','Y','2025-10-23 00:00:00'),(73587,11,'DA42.4Z','Allergic gastritis, unspecified','Y','2025-10-23 00:00:00'),(73586,11,'DA42.41','Allergic gastritis due to non-IgE-mediated hypersensitivity','Y','2025-10-23 00:00:00'),(73585,11,'DA42.40','Allergic gastritis due to IgE-mediated hypersensitivity','Y','2025-10-23 00:00:00'),(73584,11,'DA42.4','Allergic gastritis','Y','2025-10-23 00:00:00'),(73582,11,'EK10','Allergic contact urticaria','Y','2025-10-23 00:00:00'),(73583,11,'DA51.3','Allergic duodenitis','Y','2025-10-23 00:00:00'),(73581,11,'EK12','Allergic contact sensitisation','Y','2025-10-23 00:00:00'),(73580,11,'DA02.30','Allergic contact gingivostomatitis','Y','2025-10-23 00:00:00'),(73579,11,'EK00.Z','Allergic contact dermatitis, unspecified','Y','2025-10-23 00:00:00'),(73578,11,'EG40.0','Allergic contact dermatitis of external ear','Y','2025-10-23 00:00:00'),(73577,11,'EK00.C','Allergic contact dermatitis due to topical medicaments','Y','2025-10-23 00:00:00'),(73576,11,'EK00.B','Allergic contact dermatitis due to systemic medicaments','Y','2025-10-23 00:00:00'),(73575,11,'EK00.A','Allergic contact dermatitis due to rubber chemicals','Y','2025-10-23 00:00:00'),(73574,11,'EK00.9','Allergic contact dermatitis due to preservatives or biocides','Y','2025-10-23 00:00:00'),(73573,11,'EK00.8','Allergic contact dermatitis due to plastics, glues or resin systems','Y','2025-10-23 00:00:00'),(73572,11,'EK00.6','Allergic contact dermatitis due to metals or metal salts','Y','2025-10-23 00:00:00'),(73571,11,'EK00.5','Allergic contact dermatitis due to industrial biocides, cutting oils or disinfectants','Y','2025-10-23 00:00:00'),(73570,11,'EK00.4','Allergic contact dermatitis due to hairdressing products','Y','2025-10-23 00:00:00'),(73569,11,'EK00.3','Allergic contact dermatitis due to food flavours or additives','Y','2025-10-23 00:00:00'),(73568,11,'4A85.22','Allergic contact dermatitis due to food allergen','Y','2025-10-23 00:00:00'),(73567,11,'EK00.2','Allergic contact dermatitis due to dental materials','Y','2025-10-23 00:00:00'),(73566,11,'EK00.1','Allergic contact dermatitis due to cosmetics or fragrances','Y','2025-10-23 00:00:00'),(73565,11,'EK00.0','Allergic contact dermatitis due to clothing or footwear','Y','2025-10-23 00:00:00'),(73564,11,'EK00.7','Allergic contact dermatitis due to allergenic haptens derived from plants or organic matter','Y','2025-10-23 00:00:00'),(73563,11,'EK00','Allergic contact dermatitis','Y','2025-10-23 00:00:00'),(73561,11,'9A60.02','Allergic conjunctivitis','Y','2025-10-23 00:00:00'),(73562,11,'9A06.72','Allergic contact blepharoconjunctivitis','Y','2025-10-23 00:00:00'),(73560,11,'CA23.02','Allergic asthma, uncomplicated','Y','2025-10-23 00:00:00'),(73559,11,'CA23.01','Allergic asthma with status asthmaticus','Y','2025-10-23 00:00:00'),(73558,11,'CA23.00','Allergic asthma with exacerbation','Y','2025-10-23 00:00:00'),(73556,11,'QB9C','Allergen immunotherapy','Y','2025-10-23 00:00:00'),(73557,11,'CA23.0','Allergic asthma','Y','2025-10-23 00:00:00'),(73554,11,'XM9ZS1','Allantoin','Y','2025-10-23 00:00:00'),(73555,11,'XA9YJ5','Allantois','Y','2025-10-23 00:00:00'),(73553,11,'LB03.0','Allantoic duct remnants or cysts','Y','2025-10-23 00:00:00'),(73552,11,'XM9DP5','Alkylating drug lymphatic','Y','2025-10-23 00:00:00'),(73550,11,'XM6AB6','Alkylating drug','Y','2025-10-23 00:00:00'),(73551,11,'XM3ST0','Alkylating drug antimyeloproliferative','Y','2025-10-23 00:00:00'),(73549,11,'XM09D9','Alkylating agents','Y','2025-10-23 00:00:00'),(73548,11,'XM3WS2','Alkyl sulfonates','Y','2025-10-23 00:00:00'),(73547,11,'2A81.8','ALK-positive large B-cell lymphoma','Y','2025-10-23 00:00:00'),(73546,11,'XM3NX2','Alkonium (bromide)','Y','2025-10-23 00:00:00'),(73544,11,'XM4NN7','Alkavervir','Y','2025-10-23 00:00:00'),(73545,11,'1D4C','Alkhurma haemorrhagic fever','Y','2025-10-23 00:00:00'),(73542,11,'5C74','Alkalosis','Y','2025-10-23 00:00:00'),(73543,11,'5C50.10','Alkaptonuria','Y','2025-10-23 00:00:00'),(73541,11,'XM9JC6','Alkaline disinfectant, not elsewhere classified','Y','2025-10-23 00:00:00'),(73540,11,'XM7BG3','Alkaline antiseptic solution (aromatic)','Y','2025-10-23 00:00:00'),(73538,11,'XM6AH6','Alizapride','Y','2025-10-23 00:00:00'),(73539,11,'XH1EB9','ALK positive large B-cell lymphoma','Y','2025-10-23 00:00:00'),(73536,11,'XM1LB0','Alirocumab','Y','2025-10-23 00:00:00'),(73537,11,'XM8200','Alitretinoin','Y','2025-10-23 00:00:00'),(73534,11,'XM9R22','Aliphatic thiocyanates','Y','2025-10-23 00:00:00'),(73535,11,'XM52K4','Alipogene tiparvovec','Y','2025-10-23 00:00:00'),(73532,11,'XM6Y81','Alidase','Y','2025-10-23 00:00:00'),(73533,11,'XM1N75','Alimemazine','Y','2025-10-23 00:00:00'),(73530,11,'XM96V4','Alglucerase','Y','2025-10-23 00:00:00'),(73531,11,'XM3EE9','Alglucosidase alfa','Y','2025-10-23 00:00:00'),(73528,11,'XM9N47','Algeldrate','Y','2025-10-23 00:00:00'),(73529,11,'XM4H50','Alginic acid','Y','2025-10-23 00:00:00'),(73526,11,'XM1C94','Alfuzosin','Y','2025-10-23 00:00:00'),(73527,11,'XM9TZ4','Algal toxin','Y','2025-10-23 00:00:00'),(73524,11,'XM4PF7','Alfaxalone','Y','2025-10-23 00:00:00'),(73525,11,'XM4G88','Alfentanil','Y','2025-10-23 00:00:00'),(73522,11,'XM9PF3','Alfa1 antitrypsin','Y','2025-10-23 00:00:00'),(73523,11,'XM3NT7','Alfacalcidol','Y','2025-10-23 00:00:00'),(73521,11,'XM6347','Alexitol sodium','Y','2025-10-23 00:00:00'),(73519,11,'XH7LG8','Aleukemic myeloid leukaemia','Y','2025-10-23 00:00:00'),(73520,11,'8A44.2','Alexander disease','Y','2025-10-23 00:00:00'),(73518,11,'XH5DV4','Aleukemic monocytic leukaemia','Y','2025-10-23 00:00:00'),(73516,11,'XH29P0','Aleukemic leukaemia, NOS','Y','2025-10-23 00:00:00'),(73517,11,'XH4KS4','Aleukemic lymphoid leukaemia','Y','2025-10-23 00:00:00'),(73515,11,'XM94M8','Alendronic acid','Y','2025-10-23 00:00:00'),(73514,11,'XM5WX2','Alemtuzumab','Y','2025-10-23 00:00:00'),(73512,11,'XM4JL2','Alectinib','Y','2025-10-23 00:00:00'),(73513,11,'XM1PY3','Alefacept','Y','2025-10-23 00:00:00'),(73511,11,'XM5Y08','Aldrin','Y','2025-10-23 00:00:00'),(73509,11,'XM94A6','Aldosterone','Y','2025-10-23 00:00:00'),(73510,11,'XM3L93','Aldosterone antagonists and other potassium-sparing agents','Y','2025-10-23 00:00:00'),(73507,11,'XM72Q4','Aldesulfone sodium','Y','2025-10-23 00:00:00'),(73508,11,'XM0HS9','Aldicarb','Y','2025-10-23 00:00:00'),(73506,11,'XM0RF4','Aldesleukin','Y','2025-10-23 00:00:00'),(73504,11,'XM23H5','Alcuronium','Y','2025-10-23 00:00:00'),(73505,11,'XM3XU7','Aldehydes and derivatives','Y','2025-10-23 00:00:00'),(73503,11,'8D44.Z','Alcohol-related neurological disorders, unspecified','Y','2025-10-23 00:00:00'),(73502,11,'8D44','Alcohol-related neurological disorders','Y','2025-10-23 00:00:00'),(73501,11,'6C40.6Z','Alcohol-induced psychotic disorder, unspecified','Y','2025-10-23 00:00:00'),(73500,11,'6C40.62','Alcohol-induced psychotic disorder with mixed psychotic symptoms','Y','2025-10-23 00:00:00'),(73499,11,'6C40.60','Alcohol-induced psychotic disorder with hallucinations','Y','2025-10-23 00:00:00'),(73498,11,'6C40.61','Alcohol-induced psychotic disorder with delusions','Y','2025-10-23 00:00:00'),(73497,11,'6C40.6','Alcohol-induced psychotic disorder','Y','2025-10-23 00:00:00'),(73496,11,'6C40.70','Alcohol-induced mood disorder','Y','2025-10-23 00:00:00'),(73495,11,'DA60.60','Alcohol-induced gastric ulcer','Y','2025-10-23 00:00:00'),(73494,11,'6C40.5','Alcohol-induced delirium','Y','2025-10-23 00:00:00'),(73493,11,'6C40.71','Alcohol-induced anxiety disorder','Y','2025-10-23 00:00:00'),(73492,11,'8D44.0','Alcoholic polyneuropathy','Y','2025-10-23 00:00:00'),(73491,11,'8D44.1','Alcoholic myopathy','Y','2025-10-23 00:00:00'),(73490,11,'DB94.2','Alcoholic liver fibrosis','Y','2025-10-23 00:00:00'),(73489,11,'DB94.Z','Alcoholic liver disease, unspecified','Y','2025-10-23 00:00:00'),(73488,11,'DB94','Alcoholic liver disease','Y','2025-10-23 00:00:00'),(73487,11,'DB94.1Z','Alcoholic hepatitis, unspecified','Y','2025-10-23 00:00:00'),(73486,11,'DB94.10','Alcoholic hepatitis with cirrhosis','Y','2025-10-23 00:00:00'),(73484,11,'DA42.80','Alcoholic gastritis','Y','2025-10-23 00:00:00'),(73485,11,'DB94.1','Alcoholic hepatitis','Y','2025-10-23 00:00:00'),(73483,11,'DB94.0','Alcoholic fatty liver','Y','2025-10-23 00:00:00'),(73482,11,'DA51.50','Alcoholic duodenitis','Y','2025-10-23 00:00:00'),(73481,11,'DB94.3','Alcoholic cirrhosis of liver without hepatitis','Y','2025-10-23 00:00:00'),(73480,11,'6C40.4Z','Alcohol withdrawal, unspecified','Y','2025-10-23 00:00:00'),(73478,11,'6C40.42','Alcohol withdrawal with seizures','Y','2025-10-23 00:00:00'),(73479,11,'6C40.40','Alcohol withdrawal, uncomplicated','Y','2025-10-23 00:00:00'),(73477,11,'6C40.43','Alcohol withdrawal with perceptual disturbances and seizures','Y','2025-10-23 00:00:00'),(73476,11,'6C40.41','Alcohol withdrawal with perceptual disturbances','Y','2025-10-23 00:00:00'),(73475,11,'6C40.4','Alcohol withdrawal','Y','2025-10-23 00:00:00'),(73474,11,'XM9BA5','Alcohol vapor','Y','2025-10-23 00:00:00'),(73473,11,'XE1G3','Alcohol use, suspicion or evidence of alcohol use by the injured person','Y','2025-10-23 00:00:00'),(73472,11,'XE15H','Alcohol use, suspicion or evidence of alcohol use by other persons involved in the injury event','Y','2025-10-23 00:00:00'),(73471,11,'XE3JF','Alcohol use, suspicion or evidence of alcohol use by both the injured person and other persons involved in the injury event','Y','2025-10-23 00:00:00'),(73470,11,'XE08X','Alcohol use, no suspicion or evidence of alcohol use by any person involved in the injury event','Y','2025-10-23 00:00:00'),(73469,11,'XE47R','Alcohol use, no information available','Y','2025-10-23 00:00:00'),(73468,11,'QB95.2','Alcohol rehabilitation','Y','2025-10-23 00:00:00'),(73467,11,'6C40.3','Alcohol intoxication','Y','2025-10-23 00:00:00'),(73465,11,'6C40.2Z','Alcohol dependence, unspecified','Y','2025-10-23 00:00:00'),(73466,11,'XM3XY4','Alcohol deterrent','Y','2025-10-23 00:00:00'),(73464,11,'6C40.23','Alcohol dependence, sustained partial remission','Y','2025-10-23 00:00:00'),(73463,11,'6C40.24','Alcohol dependence, sustained full remission','Y','2025-10-23 00:00:00'),(73462,11,'6C40.22','Alcohol dependence, early full remission','Y','2025-10-23 00:00:00'),(73461,11,'6C40.21','Alcohol dependence, current use, episodic','Y','2025-10-23 00:00:00'),(73460,11,'6C40.20','Alcohol dependence, current use, continuous','Y','2025-10-23 00:00:00'),(73459,11,'6C40.2','Alcohol dependence','Y','2025-10-23 00:00:00'),(73458,11,'XM1A61','Alcohol beverage','Y','2025-10-23 00:00:00'),(73457,11,'QA04.1','Alcohol and drug testing other than by blood','Y','2025-10-23 00:00:00'),(73455,11,'XM2ET5','Alclometasone','Y','2025-10-23 00:00:00'),(73456,11,'XM6U34','Alcohol','Y','2025-10-23 00:00:00'),(73454,11,'XM9S89','Alclofenac','Y','2025-10-23 00:00:00'),(73453,11,'XM4JE3','Alcaftadine','Y','2025-10-23 00:00:00'),(73452,11,'XM52B4','Albutoin','Y','2025-10-23 00:00:00'),(73451,11,'GB42.1','Albuminuria, Grade A3','Y','2025-10-23 00:00:00'),(73450,11,'GB42.0','Albuminuria, Grade A2','Y','2025-10-23 00:00:00'),(73449,11,'XM7XL9','Albumin tannate','Y','2025-10-23 00:00:00'),(73447,11,'XM7150','Albumin human serum','Y','2025-10-23 00:00:00'),(73448,11,'XM1YW8','Albumin human serum salt-poor','Y','2025-10-23 00:00:00'),(73445,11,'XM6KC5','Albumin','Y','2025-10-23 00:00:00'),(73446,11,'XM5WD4','Albumin bovine','Y','2025-10-23 00:00:00'),(73444,11,'XM1HG5','Albinterferon alfa-2b','Y','2025-10-23 00:00:00'),(73442,11,'XM2516','Albiglutide','Y','2025-10-23 00:00:00'),(73443,11,'EC23.2','Albinism or other specified genetically-determined hypomelanotic disorders','Y','2025-10-23 00:00:00'),(73440,11,'XM5PV6','Albamycin','Y','2025-10-23 00:00:00'),(73441,11,'XM79J1','Albendazole','Y','2025-10-23 00:00:00'),(73439,11,'XE4JQ','Alarm system problem with device identified','Y','2025-10-23 00:00:00'),(73438,11,'XE5JP','Alarm not visible','Y','2025-10-23 00:00:00'),(73437,11,'XE3WT','Alarm component of medical device, visual','Y','2025-10-23 00:00:00'),(73436,11,'XE5DW','Alarm component of medical device, audible','Y','2025-10-23 00:00:00'),(73435,11,'XE28G','Alarm component of medical device','Y','2025-10-23 00:00:00'),(73434,11,'XE030','Alarm clock, clock','Y','2025-10-23 00:00:00'),(73433,11,'XA7LG9','Alar rim','Y','2025-10-23 00:00:00'),(73431,11,'XM7ZN2','Alaproclate','Y','2025-10-23 00:00:00'),(73432,11,'XA5ED7','Alar groove','Y','2025-10-23 00:00:00'),(73430,11,'XM2NR2','Alanyl glutamine','Y','2025-10-23 00:00:00'),(73429,11,'XM2NT3','Alantolactone','Y','2025-10-23 00:00:00'),(73428,11,'XM6VX4','Alanine','Y','2025-10-23 00:00:00'),(73427,11,'XA46A9','Alaeque nasi tendon','Y','2025-10-23 00:00:00'),(73425,11,'XM3YY8','Alacepril','Y','2025-10-23 00:00:00'),(73426,11,'XA2SJ6','Alaeque nasi muscle','Y','2025-10-23 00:00:00'),(73424,11,'XA32Q9','Ala nasi','Y','2025-10-23 00:00:00'),(73423,11,'5D00.0','AL amyloidosis','Y','2025-10-23 00:00:00'),(73422,11,'XM3E78','Akritoin','Y','2025-10-23 00:00:00'),(73420,11,'XM5CS7','Ajmaline','Y','2025-10-23 00:00:00'),(73421,11,'8A07.1','Akathisia','Y','2025-10-23 00:00:00'),(73419,11,'KB2J.Z','Airway obstruction in the neonate due to airway abnormality, unspecified','Y','2025-10-23 00:00:00'),(73418,11,'KB2J','Airway obstruction in the neonate due to airway abnormality','Y','2025-10-23 00:00:00'),(73417,11,'XD2M69','Airway guedel tubes','Y','2025-10-23 00:00:00'),(73416,11,'CA80.Z','Airway disease due to specific organic dust, unspecified','Y','2025-10-23 00:00:00'),(73415,11,'CA80','Airway disease due to specific organic dust','Y','2025-10-23 00:00:00'),(73414,11,'XE8RL','Airship, blimp','Y','2025-10-23 00:00:00'),(73413,11,'XE1JR','Aircraft as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(73412,11,'XE3PW','Airboat','Y','2025-10-23 00:00:00'),(73411,11,'XD61Z5','Air/oxygen nasal cannulas','Y','2025-10-23 00:00:00'),(73410,11,'XD3W67','Air/oxygen masks and nasal cannulas','Y','2025-10-23 00:00:00'),(73409,11,'XD0VQ3','Air/oxygen masks','Y','2025-10-23 00:00:00'),(73408,11,'PG21','Air or space transport injury event of undetermined intent with aircraft or spacecraft not damaged, disabled or destroyed','Y','2025-10-23 00:00:00'),(73407,11,'PG20','Air or space transport injury event of undetermined intent with aircraft or spacecraft damaged, disabled or destroyed','Y','2025-10-23 00:00:00'),(73405,11,'XE6YZ','Air gun','Y','2025-10-23 00:00:00'),(73406,11,'PG2Z','Air or space transport event injury of undetermined intent, damage to aircraft or spacecraft unspecified','Y','2025-10-23 00:00:00'),(73404,11,'NF0A.0','Air embolism, traumatic, not elsewhere classified','Y','2025-10-23 00:00:00'),(73403,11,'PL11.20','Air embolism, as mode of injury','Y','2025-10-23 00:00:00'),(73402,11,'NE80.0','Air embolism following infusion, transfusion or therapeutic injection','Y','2025-10-23 00:00:00'),(73401,11,'XE6D6','Air eliminator component of medical device','Y','2025-10-23 00:00:00'),(73400,11,'CA70.7','Air conditioner or humidifier lung','Y','2025-10-23 00:00:00'),(73399,11,'XE0Q7','Aids to quit smoking','Y','2025-10-23 00:00:00'),(73398,11,'XM6MB2','AHLG','Y','2025-10-23 00:00:00'),(73397,11,'XM1SE1','Agrochemical','Y','2025-10-23 00:00:00'),(73396,11,'XE872','Agricultural tractor as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(73395,11,'XE9GD','Agricultural tractor as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(73393,11,'6B02','Agoraphobia','Y','2025-10-23 00:00:00'),(73394,11,'MB4B.3','Agraphia','Y','2025-10-23 00:00:00'),(73392,11,'XM96M5','Agonist predominantly beta-adrenoreceptor','Y','2025-10-23 00:00:00'),(73391,11,'XM5F11','Agomelatine','Y','2025-10-23 00:00:00'),(73390,11,'MB4B.1','Agnosia','Y','2025-10-23 00:00:00'),(73389,11,'XM19G4','Agni casti fructus','Y','2025-10-23 00:00:00'),(73388,11,'6D86.4','Agitation or aggression in dementia','Y','2025-10-23 00:00:00'),(73386,11,'DA0C.1','Aggressive periodontitis','Y','2025-10-23 00:00:00'),(73387,11,'XH10N1','Aggressive systemic mastocytosis','Y','2025-10-23 00:00:00'),(73385,11,'XH4XL2','Aggressive papillary tumour','Y','2025-10-23 00:00:00'),(73384,11,'XH2RD1','Aggressive osteoblastoma','Y','2025-10-23 00:00:00'),(73383,11,'XH9MA0','Aggressive NK-cell leukaemia','Y','2025-10-23 00:00:00'),(73382,11,'2A90.3','Aggressive NK cell leukaemia','Y','2025-10-23 00:00:00'),(73381,11,'XH13Z3','Aggressive fibromatosis','Y','2025-10-23 00:00:00'),(73380,11,'MB23.0','Aggressive behaviour','Y','2025-10-23 00:00:00'),(73379,11,'EE40.31','Age-related skin fragility','Y','2025-10-23 00:00:00'),(73378,11,'9B75.0Z','Age-related macular degeneration, unspecified','Y','2025-10-23 00:00:00'),(73377,11,'9B75.0','Age-related macular degeneration','Y','2025-10-23 00:00:00'),(73375,11,'9B10.0','Age-related cataract','Y','2025-10-23 00:00:00'),(73376,11,'9B10.0Z','Age-related cataract, unspecified','Y','2025-10-23 00:00:00'),(73374,11,'XM1JA8','Agents predominantly used for urinary frequency and incontinence','Y','2025-10-23 00:00:00'),(73373,11,'XM9FY5','Agents predominantly used for gastrointestinal disorders','Y','2025-10-23 00:00:00'),(73371,11,'LB21.3','Agenesis-aplasia of pancreas','Y','2025-10-23 00:00:00'),(73372,11,'XM1AF9','Agents affecting arteriolar smooth muscle','Y','2025-10-23 00:00:00'),(73370,11,'LB20.10','Agenesis, aplasia or hypoplasia of gallbladder','Y','2025-10-23 00:00:00'),(73369,11,'LB44.0','Agenesis or aplasia of uterine body','Y','2025-10-23 00:00:00'),(73368,11,'LB43.1','Agenesis or aplasia of cervix','Y','2025-10-23 00:00:00'),(73367,11,'LB57','Agenesis of vas deferens','Y','2025-10-23 00:00:00'),(73365,11,'LA75.1','Agenesis of lung','Y','2025-10-23 00:00:00'),(73366,11,'LB31.9','Agenesis of ureter','Y','2025-10-23 00:00:00'),(73364,11,'LA14.11','Agenesis of lacrimal ducts','Y','2025-10-23 00:00:00'),(73363,11,'LB41.0','Agenesis of clitoris','Y','2025-10-23 00:00:00'),(73362,11,'XT9T','Ageing-related','Y','2025-10-23 00:00:00'),(73361,11,'MG2A','Ageing associated decline in intrinsic capacity','Y','2025-10-23 00:00:00'),(73360,11,'MB21.0','Age-associated cognitive decline','Y','2025-10-23 00:00:00'),(73359,11,'XE59J','Ag-bike as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(73356,11,'XM1CJ9','Agalsidase beta','Y','2025-10-23 00:00:00'),(73357,11,'XM8K92','Agar','Y','2025-10-23 00:00:00'),(73358,11,'XM0366','Agaricus xanthodermus mushroom','Y','2025-10-23 00:00:00'),(73354,11,'JB46.3','Agalactia','Y','2025-10-23 00:00:00'),(73355,11,'XM3EW0','Agalsidase alfa','Y','2025-10-23 00:00:00'),(73352,11,'9B10.22','After-cataract','Y','2025-10-23 00:00:00'),(73353,11,'XE1ZG','Ag bike as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(73350,11,'1F51.Z','African trypanosomiasis, unspecified','Y','2025-10-23 00:00:00'),(73351,11,'XM1GA3','Africanized honey bee venom','Y','2025-10-23 00:00:00'),(73348,11,'XM0W80','Afloqualone','Y','2025-10-23 00:00:00'),(73349,11,'1F51','African trypanosomiasis','Y','2025-10-23 00:00:00'),(73346,11,'XM7U84','Aflatoxin','Y','2025-10-23 00:00:00'),(73347,11,'XM4XD1','Aflibercept','Y','2025-10-23 00:00:00'),(73345,11,'XM08L6','Afghanistan black','Y','2025-10-23 00:00:00'),(73344,11,'XA9PU5','Afferent arteriole of the interlobular artery','Y','2025-10-23 00:00:00'),(73343,11,'XM31F7','Afelimomab','Y','2025-10-23 00:00:00'),(73342,11,'XM7917','Afatinib','Y','2025-10-23 00:00:00'),(73341,11,'XM0LA6','Afamelanotide','Y','2025-10-23 00:00:00'),(73340,11,'HA40','Aetiological considerations in sexual dysfunctions and sexual pain disorders','Y','2025-10-23 00:00:00'),(73339,11,'HA40.2','Aetiological considerations associated with use of psychoactive substance or medication','Y','2025-10-23 00:00:00'),(73338,11,'HA40.4','Aetiological considerations associated with relationship factors','Y','2025-10-23 00:00:00'),(73337,11,'HA40.1','Aetiological considerations associated with psychological or behavioural factors, including mental disorders','Y','2025-10-23 00:00:00'),(73336,11,'HA40.3','Aetiological considerations associated with lack of knowledge or experience','Y','2025-10-23 00:00:00'),(73335,11,'HA40.5','Aetiological considerations associated with cultural factors','Y','2025-10-23 00:00:00'),(73334,11,'HA40.0','Aetiological considerations associated with a medical condition, injury, or the effects of surgery or radiation treatment','Y','2025-10-23 00:00:00'),(73333,11,'XM55K4','Aethusa cynapium plant','Y','2025-10-23 00:00:00'),(73332,11,'XE9SK','Aesthetic activities','Y','2025-10-23 00:00:00'),(73331,11,'XM78V1','Aeruginascin','Y','2025-10-23 00:00:00'),(73330,11,'XM9B70','Aerosporin topical','Y','2025-10-23 00:00:00'),(73329,11,'XM5183','Aerosporin','Y','2025-10-23 00:00:00'),(73328,11,'XM3NH9','Aerosol spray, not elsewhere classified','Y','2025-10-23 00:00:00'),(73327,11,'XE03W','Aero (non-motored) sports','Y','2025-10-23 00:00:00'),(73326,11,'EL73.2','Adverse reaction to injection of neurotoxin','Y','2025-10-23 00:00:00'),(73325,11,'EL73.0','Adverse reaction to dermal or deep fillers','Y','2025-10-23 00:00:00'),(73324,11,'EL73.1','Adverse reaction to chemical peel','Y','2025-10-23 00:00:00'),(73323,11,'XE3GL','Adverse event without identified device or use problem','Y','2025-10-23 00:00:00'),(73322,11,'NF09','Adverse effects, not elsewhere classified','Y','2025-10-23 00:00:00'),(73321,11,'EH78','Adverse cutaneous reactions to herbal, homoeopathic or other alternative therapies','Y','2025-10-23 00:00:00'),(73320,11,'EL80','Adverse cutaneous effects of diagnostic procedures','Y','2025-10-23 00:00:00'),(73319,11,'XE3T3','Adventure sports','Y','2025-10-23 00:00:00'),(73318,11,'7A61','Advanced sleep-wake phase disorder','Y','2025-10-23 00:00:00'),(73317,11,'SB80','Advanced menstruation disorder (TM1)','Y','2025-10-23 00:00:00'),(73316,11,'FA23','Adult-onset Still disease','Y','2025-10-23 00:00:00'),(73315,11,'4A20.0','Adult-onset immunodeficiency','Y','2025-10-23 00:00:00'),(73314,11,'2A90.5','Adult T-cell lymphoma or leukaemia, human T-cell lymphotropic virus type 1-associated','Y','2025-10-23 00:00:00'),(73313,11,'XH6TE2','Adult T-cell leukaemia/lymphoma (HTLV-1 positive)','Y','2025-10-23 00:00:00'),(73312,11,'DD90.6','Adult rumination syndrome','Y','2025-10-23 00:00:00'),(73311,11,'9B73.10','Adult retinoschisis','Y','2025-10-23 00:00:00'),(73310,11,'FB83.2Z','Adult osteomalacia, unspecified','Y','2025-10-23 00:00:00'),(73309,11,'FB83.21','Adult osteomalacia due to malnutrition','Y','2025-10-23 00:00:00'),(73308,11,'FB83.2','Adult osteomalacia','Y','2025-10-23 00:00:00'),(73307,11,'8B61.3','Adult onset spinal muscular atrophy, Type IV','Y','2025-10-23 00:00:00'),(73306,11,'XH5BN5','Adult granulosa cell tumour of testis','Y','2025-10-23 00:00:00'),(73305,11,'XH0GA5','Adult granulosa cell tumor of ovary','Y','2025-10-23 00:00:00'),(73304,11,'XE1JM','Adult education institution','Y','2025-10-23 00:00:00'),(73303,11,'4A41.00','Adult dermatomyositis','Y','2025-10-23 00:00:00'),(73302,11,'XH1SP3','Adult cystic nephroma','Y','2025-10-23 00:00:00'),(73301,11,'XH4BG5','Adult cellular rhabdomyoma','Y','2025-10-23 00:00:00'),(73300,11,'EA80.2','Adult atopic eczema','Y','2025-10-23 00:00:00'),(73299,11,'XT6S','Adult','Y','2025-10-23 00:00:00'),(73298,11,'XM87M0','Aducanumab','Y','2025-10-23 00:00:00'),(73297,11,'5A75','Adrenomedullary hyperfunction','Y','2025-10-23 00:00:00'),(73296,11,'8A44.1','Adrenoleukodystrophy','Y','2025-10-23 00:00:00'),(73295,11,'5A71.Z','Adrenogenital disorders, unspecified','Y','2025-10-23 00:00:00'),(73294,11,'5A71','Adrenogenital disorders','Y','2025-10-23 00:00:00'),(73293,11,'5A61.1','Adrenocorticotropic hormone deficiency','Y','2025-10-23 00:00:00'),(73292,11,'XM5Y80','Adrenocorticotrophic hormone','Y','2025-10-23 00:00:00'),(73291,11,'5A74.Z','Adrenocortical insufficiency, unspecified','Y','2025-10-23 00:00:00'),(73290,11,'5A74','Adrenocortical insufficiency','Y','2025-10-23 00:00:00'),(73289,11,'XM20Z9','Adrenochrome semicarbazone (mono)','Y','2025-10-23 00:00:00'),(73288,11,'XM7NH6','Adrenochrome derivative','Y','2025-10-23 00:00:00'),(73287,11,'XM6BS8','Adrenalone','Y','2025-10-23 00:00:00'),(73286,11,'XA6SS0','Adrenal','Y','2025-10-23 00:00:00'),(73285,11,'XA8956','Adrenal','Y','2025-10-23 00:00:00'),(73284,11,'XA6TQ3','Adrenal vein','Y','2025-10-23 00:00:00'),(73283,11,'XM7696','Adrenal topical','Y','2025-10-23 00:00:00'),(73282,11,'XH9RV1','Adrenal rest tumour','Y','2025-10-23 00:00:00'),(73281,11,'XM75W8','Adrenal ophthalmic preparation','Y','2025-10-23 00:00:00'),(73280,11,'KA46.2','Adrenal haemorrhage due to birth injury','Y','2025-10-23 00:00:00'),(73279,11,'XA0NE9','Adrenal gland','Y','2025-10-23 00:00:00'),(73278,11,'5A74.1','Adrenal crisis','Y','2025-10-23 00:00:00'),(73277,11,'XH4KH2','Adrenal cortical carcinoma','Y','2025-10-23 00:00:00'),(73276,11,'XH2FJ6','Adrenal cortical adenoma, pigmented','Y','2025-10-23 00:00:00'),(73274,11,'XH2VZ8','Adrenal cortical adenoma, mixed cell','Y','2025-10-23 00:00:00'),(73275,11,'XH52F6','Adrenal cortical adenoma, NOS','Y','2025-10-23 00:00:00'),(73273,11,'XH60N5','Adrenal cortical adenoma, glomerulosa cell','Y','2025-10-23 00:00:00'),(73272,11,'XH2CT2','Adrenal cortical adenoma, compact cell','Y','2025-10-23 00:00:00'),(73271,11,'XH1YP0','Adrenal cortical adenoma, clear cell','Y','2025-10-23 00:00:00'),(73269,11,'XM3WZ9','Adrafinil','Y','2025-10-23 00:00:00'),(73270,11,'XM51K6','Adrenal (extract, cortex or medulla)(glucocorticoids)(hormones)(mineralocorticoids)','Y','2025-10-23 00:00:00'),(73267,11,'2C33','Adnexal carcinoma of skin','Y','2025-10-23 00:00:00'),(73268,11,'XT7M','Adolescent','Y','2025-10-23 00:00:00'),(73266,11,'XH89V4','Adnexal adenocarcinoma, NOS','Y','2025-10-23 00:00:00'),(73265,11,'QB30.7','Adjustment or removal of myringotomy stent or tube','Y','2025-10-23 00:00:00'),(73264,11,'QB30.3','Adjustment or management of vascular access device','Y','2025-10-23 00:00:00'),(73263,11,'QB30.0Y','Adjustment or management of other implanted hearing device','Y','2025-10-23 00:00:00'),(73262,11,'QB30.1','Adjustment or management of infusion pump','Y','2025-10-23 00:00:00'),(73261,11,'QB30.0Z','Adjustment or management of implanted hearing device, unspecified','Y','2025-10-23 00:00:00'),(73260,11,'QB30.0','Adjustment or management of implanted hearing device','Y','2025-10-23 00:00:00'),(73259,11,'QB30.4','Adjustment or management of implanted gastric device','Y','2025-10-23 00:00:00'),(73258,11,'QB30.Z','Adjustment or management of implanted devices, unspecified','Y','2025-10-23 00:00:00'),(73257,11,'QB30','Adjustment or management of implanted devices','Y','2025-10-23 00:00:00'),(73256,11,'QB30.01','Adjustment or management of cochlear device','Y','2025-10-23 00:00:00'),(73255,11,'QB30.23','Adjustment or management of cardioverter-defibrillator','Y','2025-10-23 00:00:00'),(73254,11,'QB30.22','Adjustment or management of cardiac resynchronization therapy pacemaker','Y','2025-10-23 00:00:00'),(73253,11,'QB30.21','Adjustment or management of cardiac resynchronization therapy defibrillator','Y','2025-10-23 00:00:00'),(73252,11,'QB30.20','Adjustment or management of cardiac pacemaker','Y','2025-10-23 00:00:00'),(73251,11,'QB30.2Z','Adjustment or management of cardiac devices, unspecified','Y','2025-10-23 00:00:00'),(73250,11,'QB30.2','Adjustment or management of cardiac devices','Y','2025-10-23 00:00:00'),(73249,11,'QB30.6','Adjustment or management of breast implant','Y','2025-10-23 00:00:00'),(73248,11,'QB30.00','Adjustment or management of bone conduction device','Y','2025-10-23 00:00:00'),(73247,11,'6B43','Adjustment disorder','Y','2025-10-23 00:00:00'),(73246,11,'QB30.8','Adjustment and management of a neurostimulator','Y','2025-10-23 00:00:00'),(73245,11,'XA6R65','Adipose tissue','Y','2025-10-23 00:00:00'),(73244,11,'XM7QU5','Adipiodone','Y','2025-10-23 00:00:00'),(73243,11,'XM1Q67','Adiphenine','Y','2025-10-23 00:00:00'),(73242,11,'XM94Z2','Adinazolam','Y','2025-10-23 00:00:00'),(73241,11,'XM1JY8','Adicillin','Y','2025-10-23 00:00:00'),(73240,11,'AB17','Adhesive middle ear disease','Y','2025-10-23 00:00:00'),(73239,11,'XE1A5','Adhesive fastner component of medical device','Y','2025-10-23 00:00:00'),(73238,11,'FB53.0','Adhesive capsulitis of shoulder','Y','2025-10-23 00:00:00'),(73237,11,'9A93','Adhesions or disruptions of iris or ciliary body','Y','2025-10-23 00:00:00'),(73236,11,'DB30.2','Adhesions of large intestine with obstruction','Y','2025-10-23 00:00:00'),(73235,11,'GB05.4','Adherent prepuce','Y','2025-10-23 00:00:00'),(73234,11,'9A77.1','Adherent leukoma','Y','2025-10-23 00:00:00'),(73233,11,'1D90','Adenovirus infection of unspecified site','Y','2025-10-23 00:00:00'),(73232,11,'XN000','Adenovirus','Y','2025-10-23 00:00:00'),(73231,11,'2C77.2','Adenosquamous carcinoma of cervix uteri','Y','2025-10-23 00:00:00'),(73230,11,'XH7873','Adenosquamous carcinoma','Y','2025-10-23 00:00:00'),(73229,11,'XM62Q1','Adenosine','Y','2025-10-23 00:00:00'),(73228,11,'XH5544','Adenosarcoma','Y','2025-10-23 00:00:00'),(73227,11,'GA11','Adenomyosis','Y','2025-10-23 00:00:00'),(73226,11,'DC14.3','Adenomyomatosis of gallbladder','Y','2025-10-23 00:00:00'),(73225,11,'XH4ZH4','Adenomyoma','Y','2025-10-23 00:00:00'),(73224,11,'XH5QU1','Adenomyoepithelioma, NOS','Y','2025-10-23 00:00:00'),(73223,11,'XH2V57','Adenomyoepithelioma, benign','Y','2025-10-23 00:00:00'),(73222,11,'XH7TL5','Adenomyoepithelioma with carcinoma','Y','2025-10-23 00:00:00'),(73221,11,'XH1CV4','Adenomatous polyposis coli','Y','2025-10-23 00:00:00'),(73220,11,'XH8MU5','Adenomatous polyp, NOS','Y','2025-10-23 00:00:00'),(73219,11,'XH6BY3','Adenomatoid tumour, NOS','Y','2025-10-23 00:00:00'),(73218,11,'XH2SD0','Adenomatoid odontogenic tumour','Y','2025-10-23 00:00:00'),(73217,11,'XH3DV3','Adenoma, NOS','Y','2025-10-23 00:00:00'),(73216,11,'XH7DU3','Adenoma, intestinal type','Y','2025-10-23 00:00:00'),(73215,11,'XH3SX7','Adenoma of rete ovarii','Y','2025-10-23 00:00:00'),(73214,11,'XH7GN3','Adenoma of nipple','Y','2025-10-23 00:00:00'),(73213,11,'XH9ZB2','Adenolymphoma','Y','2025-10-23 00:00:00'),(73212,11,'XH4302','Adenoid cystic carcinoma','Y','2025-10-23 00:00:00'),(73211,11,'XH70J2','Adenoid basal carcinoma','Y','2025-10-23 00:00:00'),(73210,11,'XA5AS8','Adenoid','Y','2025-10-23 00:00:00'),(73209,11,'XH91Y8','Adenofibroma, NOS','Y','2025-10-23 00:00:00'),(73208,11,'2B92.0','Adenocarcinomas of rectum','Y','2025-10-23 00:00:00'),(73207,11,'2C51.0','Adenocarcinomas of peritoneum','Y','2025-10-23 00:00:00'),(73206,11,'XH74S1','Adenocarcinoma, NOS','Y','2025-10-23 00:00:00'),(73205,11,'XH8UE4','Adenocarcinoma, metastatic, NOS','Y','2025-10-23 00:00:00'),(73204,11,'XH0349','Adenocarcinoma, intestinal type','Y','2025-10-23 00:00:00'),(73203,11,'XH0GS9','Adenocarcinoma, endocervical type','Y','2025-10-23 00:00:00'),(73202,11,'XH2PY4','Adenocarcinoma with squamous metaplasia','Y','2025-10-23 00:00:00'),(73201,11,'XH2QL8','Adenocarcinoma with spindle cell metaplasia','Y','2025-10-23 00:00:00'),(73200,11,'XH4T39','Adenocarcinoma with neuroendocrine differentiation','Y','2025-10-23 00:00:00'),(73199,11,'XH2ZQ0','Adenocarcinoma with mixed subtypes','Y','2025-10-23 00:00:00'),(73198,11,'XH7247','Adenocarcinoma with cartilaginous and osseous metaplasia','Y','2025-10-23 00:00:00'),(73197,11,'XH4GA3','Adenocarcinoma with apocrine metaplasia','Y','2025-10-23 00:00:00'),(73196,11,'2C71.0','Adenocarcinoma of vagina','Y','2025-10-23 00:00:00'),(73195,11,'2C72.0','Adenocarcinoma of uterine ligament, parametrium, or uterine adnexa','Y','2025-10-23 00:00:00'),(73194,11,'2C93.0','Adenocarcinoma of urethra or paraurethral gland','Y','2025-10-23 00:00:00'),(73193,11,'2D40','Adenocarcinoma of unspecified site','Y','2025-10-23 00:00:00'),(73192,11,'2B90.20','Adenocarcinoma of transverse colon','Y','2025-10-23 00:00:00'),(73191,11,'2C24.0','Adenocarcinoma of trachea','Y','2025-10-23 00:00:00'),(73190,11,'2D03.0','Adenocarcinoma of the lacrimal apparatus','Y','2025-10-23 00:00:00'),(73189,11,'2C13.0','Adenocarcinoma of the gallbladder','Y','2025-10-23 00:00:00'),(73188,11,'2B68.0','Adenocarcinoma of submandibular or sublingual glands','Y','2025-10-23 00:00:00'),(73187,11,'2B72.0','Adenocarcinoma of stomach','Y','2025-10-23 00:00:00'),(73186,11,'2B80.20','Adenocarcinoma of small intestine, site unspecified','Y','2025-10-23 00:00:00'),(73185,11,'2B90.30','Adenocarcinoma of sigmoid colon','Y','2025-10-23 00:00:00'),(73184,11,'2D02.0','Adenocarcinoma of retinal pigment epithelium','Y','2025-10-23 00:00:00'),(73183,11,'XH71B5','Adenocarcinoma of rete ovarii','Y','2025-10-23 00:00:00'),(73182,11,'2B91.0','Adenocarcinoma of rectosigmoid junction','Y','2025-10-23 00:00:00'),(73181,11,'2C14.0','Adenocarcinoma of proximal biliary tract, cystic duct','Y','2025-10-23 00:00:00'),(73180,11,'2C82.0','Adenocarcinoma of prostate','Y','2025-10-23 00:00:00'),(73179,11,'2B67.0','Adenocarcinoma of parotid gland','Y','2025-10-23 00:00:00'),(73178,11,'2C10.0','Adenocarcinoma of pancreas','Y','2025-10-23 00:00:00'),(73177,11,'2B65.0','Adenocarcinoma of palate','Y','2025-10-23 00:00:00'),(73176,11,'2C17.0','Adenocarcinoma of other or unspecified parts of biliary tract','Y','2025-10-23 00:00:00'),(73175,11,'2C11.0','Adenocarcinoma of other or ill-defined digestive organs','Y','2025-10-23 00:00:00'),(73174,11,'2D12.1','Adenocarcinoma of other endocrine glands or related structures','Y','2025-10-23 00:00:00'),(73173,11,'2B70.0Z','Adenocarcinoma of oesophagus, unspecified','Y','2025-10-23 00:00:00'),(73172,11,'2B70.0','Adenocarcinoma of oesophagus','Y','2025-10-23 00:00:00'),(73171,11,'2B71.0','Adenocarcinoma of oesophagogastric junction','Y','2025-10-23 00:00:00'),(73170,11,'2C20.0','Adenocarcinoma of nasal cavity','Y','2025-10-23 00:00:00'),(73169,11,'2C21.0','Adenocarcinoma of middle ear','Y','2025-10-23 00:00:00'),(73168,11,'XH9FX2','Adenocarcinoma of mammary gland type','Y','2025-10-23 00:00:00'),(73167,11,'XH7GY6','Adenocarcinoma of lung, mucinous','Y','2025-10-23 00:00:00'),(73166,11,'XH5TR7','Adenocarcinoma of lung, mixed mucinous and non-mucinous','Y','2025-10-23 00:00:00'),(73165,11,'2C23.31','Adenocarcinoma of larynx, subglottis','Y','2025-10-23 00:00:00'),(73164,11,'2B93.0','Adenocarcinoma of large intestine, site unspecified','Y','2025-10-23 00:00:00'),(73163,11,'2B80.10','Adenocarcinoma of jejunum or ileum','Y','2025-10-23 00:00:00'),(73162,11,'2D07.0','Adenocarcinoma of iris epithelium','Y','2025-10-23 00:00:00'),(73161,11,'2C74.0','Adenocarcinoma of fallopian tube','Y','2025-10-23 00:00:00'),(73160,11,'2B80.00','Adenocarcinoma of duodenum','Y','2025-10-23 00:00:00'),(73159,11,'2B90.10','Adenocarcinoma of descending colon or splenic flexure of colon','Y','2025-10-23 00:00:00'),(73158,11,'2D06.0','Adenocarcinoma of ciliary epithelium','Y','2025-10-23 00:00:00'),(73157,11,'2C77.1','Adenocarcinoma of cervix uteri','Y','2025-10-23 00:00:00'),(73156,11,'2C25.0','Adenocarcinoma of bronchus or lung','Y','2025-10-23 00:00:00'),(73155,11,'2C94.0','Adenocarcinoma of bladder','Y','2025-10-23 00:00:00'),(73154,11,'2C15.0','Adenocarcinoma of biliary tract, distal bile duct','Y','2025-10-23 00:00:00'),(73153,11,'2B90.00','Adenocarcinoma of ascending colon or right flexure of colon','Y','2025-10-23 00:00:00'),(73152,11,'2B81.0','Adenocarcinoma of appendix','Y','2025-10-23 00:00:00'),(73151,11,'2C00.0','Adenocarcinoma of anus or anal canal','Y','2025-10-23 00:00:00'),(73150,11,'XH4ZU9','Adenocarcinoma of anogenital mammary-like glands','Y','2025-10-23 00:00:00'),(73149,11,'XH5RE1','Adenocarcinoma of anal glands','Y','2025-10-23 00:00:00'),(73148,11,'2C16.0','Adenocarcinoma of ampulla of Vater','Y','2025-10-23 00:00:00'),(73147,11,'2D11.0','Adenocarcinoma of adrenal gland','Y','2025-10-23 00:00:00'),(73146,11,'2C22.0','Adenocarcinoma of accessory sinuses','Y','2025-10-23 00:00:00'),(73145,11,'2C95.0','Adenocarcinoma involving overlapping sites of urinary organs','Y','2025-10-23 00:00:00'),(73144,11,'2C53.0','Adenocarcinoma involving overlapping sites of retroperitoneum, peritoneum or omentum','Y','2025-10-23 00:00:00'),(73143,11,'XH6DA5','Adenocarcinoma in villous adenoma','Y','2025-10-23 00:00:00'),(73142,11,'XH7QB1','Adenocarcinoma in tubulovillous adenoma','Y','2025-10-23 00:00:00'),(73141,11,'XH2L30','Adenocarcinoma in situ, NOS','Y','2025-10-23 00:00:00'),(73139,11,'XH6BU6','Adenocarcinoma in situ of lung, mucinous','Y','2025-10-23 00:00:00'),(73140,11,'XH1FR9','Adenocarcinoma in situ of lung, non-mucinous','Y','2025-10-23 00:00:00'),(73138,11,'XH8TV2','Adenocarcinoma in situ in villous adenoma','Y','2025-10-23 00:00:00'),(73137,11,'XH3770','Adenocarcinoma in situ in tubulovillous adenoma','Y','2025-10-23 00:00:00'),(73136,11,'XH4J07','Adenocarcinoma in situ in adenomatous polyp','Y','2025-10-23 00:00:00'),(73135,11,'XH9YR3','Adenocarcinoma in multiple adenomatous polyps','Y','2025-10-23 00:00:00'),(73134,11,'XH2ZH8','Adenocarcinoma in adenomatous polyposis coli','Y','2025-10-23 00:00:00'),(73133,11,'XH7QZ0','Adenocarcinoma in adenomatous polyp','Y','2025-10-23 00:00:00'),(73132,11,'XH5LA4','Adenocarcinoid tumour','Y','2025-10-23 00:00:00'),(73131,11,'XM9J35','Adenine','Y','2025-10-23 00:00:00'),(73129,11,'XM96H1','Adefovir','Y','2025-10-23 00:00:00'),(73130,11,'XM7345','Ademethionine','Y','2025-10-23 00:00:00'),(73128,11,'XA9749','Adductor pollicis tendon','Y','2025-10-23 00:00:00'),(73127,11,'XA54Z7','Adductor pollicis muscle','Y','2025-10-23 00:00:00'),(73126,11,'XA8746','Adductor magnus tendon','Y','2025-10-23 00:00:00'),(73125,11,'XA8HR3','Adductor magnus muscle','Y','2025-10-23 00:00:00'),(73124,11,'XA1TK8','Adductor longus tendon','Y','2025-10-23 00:00:00'),(73123,11,'XA01U3','Adductor longus muscle','Y','2025-10-23 00:00:00'),(73122,11,'XA8B14','Adductor hallucis tendon','Y','2025-10-23 00:00:00'),(73121,11,'XA0FW7','Adductor hallucis muscle','Y','2025-10-23 00:00:00'),(73120,11,'XA4HF0','Adductor brevis tendon','Y','2025-10-23 00:00:00'),(73119,11,'XA8GU7','Adductor brevis muscle','Y','2025-10-23 00:00:00'),(73118,11,'XM9034','Adder snake venom','Y','2025-10-23 00:00:00'),(73117,11,'XE0SV','Adaptor component of medical device','Y','2025-10-23 00:00:00'),(73116,11,'XM10R5','Adapalene','Y','2025-10-23 00:00:00'),(73114,11,'XM9DS9','Adalimumab','Y','2025-10-23 00:00:00'),(73115,11,'XH8F52','Adamantinoma of long bones','Y','2025-10-23 00:00:00'),(73112,11,'LB9A.5','Adactyly of feet','Y','2025-10-23 00:00:00'),(73113,11,'LB99.7','Adactyly of hands','Y','2025-10-23 00:00:00'),(73111,11,'NA23.40','Acute whiplash associated disorder with complaint of neck pain, stiffness or tenderness only','Y','2025-10-23 00:00:00'),(73110,11,'NA23.42','Acute whiplash associated disorder with complaint of neck pain with neurological signs','Y','2025-10-23 00:00:00'),(73109,11,'NA23.41','Acute whiplash associated disorder with complaint of neck pain with musculoskeletal signs','Y','2025-10-23 00:00:00'),(73108,11,'GA00.0','Acute vulvitis','Y','2025-10-23 00:00:00'),(73107,11,'CA02.1Z','Acute viral pharyngitis, unspecified','Y','2025-10-23 00:00:00'),(73106,11,'CA02.1','Acute viral pharyngitis','Y','2025-10-23 00:00:00'),(73105,11,'1E50.Z','Acute viral hepatitis, unspecified','Y','2025-10-23 00:00:00'),(73104,11,'1E50','Acute viral hepatitis','Y','2025-10-23 00:00:00'),(73103,11,'1D85.1','Acute viral carditis','Y','2025-10-23 00:00:00'),(73102,11,'AB30.Z','Acute vestibular syndrome, unspecified','Y','2025-10-23 00:00:00'),(73101,11,'AB30','Acute vestibular syndrome','Y','2025-10-23 00:00:00'),(73100,11,'8B43.1','Acute venous infarction of the spinal cord','Y','2025-10-23 00:00:00'),(73099,11,'DD30.Z','Acute vascular disorders of intestine, unspecified','Y','2025-10-23 00:00:00'),(73098,11,'DD30','Acute vascular disorders of intestine','Y','2025-10-23 00:00:00'),(73096,11,'ME62.2','Acute urticarial skin eruption','Y','2025-10-23 00:00:00'),(73097,11,'GA02.0','Acute vaginitis','Y','2025-10-23 00:00:00'),(73095,11,'EB00.0','Acute urticaria','Y','2025-10-23 00:00:00'),(73094,11,'CA07.1','Acute upper respiratory infections of multiple sites','Y','2025-10-23 00:00:00'),(73093,11,'CA07','Acute upper respiratory infections of multiple and unspecified sites','Y','2025-10-23 00:00:00'),(73092,11,'CA07.0','Acute upper respiratory infection, site unspecified','Y','2025-10-23 00:00:00'),(73091,11,'BD30.0Z','Acute upper limb arterial occlusion, unspecified','Y','2025-10-23 00:00:00'),(73090,11,'BD30.0','Acute upper limb arterial occlusion','Y','2025-10-23 00:00:00'),(73089,11,'GB50','Acute tubulo-interstitial nephritis','Y','2025-10-23 00:00:00'),(73088,11,'GB52','Acute tubular necrosis','Y','2025-10-23 00:00:00'),(73086,11,'CA05.1','Acute tracheitis','Y','2025-10-23 00:00:00'),(73087,11,'1E91.40','Acute trigeminal zoster neuropathy','Y','2025-10-23 00:00:00'),(73085,11,'CA03.Z','Acute tonsillitis, unspecified','Y','2025-10-23 00:00:00'),(73084,11,'CA03','Acute tonsillitis','Y','2025-10-23 00:00:00'),(73083,11,'5A03.0','Acute thyroiditis','Y','2025-10-23 00:00:00'),(73082,11,'BD30.01','Acute thrombotic upper limb arterial occlusion','Y','2025-10-23 00:00:00'),(73081,11,'BD30.21','Acute thrombotic lower limb arterial occlusion','Y','2025-10-23 00:00:00'),(73080,11,'BD30.11','Acute thrombotic aortoiliac occlusion','Y','2025-10-23 00:00:00'),(73079,11,'BD30.00','Acute thromboembolic upper limb arterial occlusion','Y','2025-10-23 00:00:00'),(73078,11,'BD30.20','Acute thromboembolic lower limb arterial occlusion','Y','2025-10-23 00:00:00'),(73077,11,'BD30.10','Acute thromboembolic aortoiliac occlusion','Y','2025-10-23 00:00:00'),(73076,11,'ED70.30','Acute telogen effluvium','Y','2025-10-23 00:00:00'),(73075,11,'AA90','Acute suppurative otitis media','Y','2025-10-23 00:00:00'),(73074,11,'DA42.70','Acute superficial gastritis of unknown aetiology','Y','2025-10-23 00:00:00'),(73073,11,'QE84','Acute stress reaction','Y','2025-10-23 00:00:00'),(73072,11,'BA41.0','Acute ST elevation myocardial infarction','Y','2025-10-23 00:00:00'),(73071,11,'ND99','Acute skin injury due to skin contact with corrosive substance','Y','2025-10-23 00:00:00'),(73070,11,'ME62','Acute skin eruption of uncertain or unspecified nature','Y','2025-10-23 00:00:00'),(73069,11,'CA01','Acute sinusitis','Y','2025-10-23 00:00:00'),(73068,11,'AA80','Acute serous or mucoid otitis media','Y','2025-10-23 00:00:00'),(73067,11,'3B81.70','Acute septic splenitis','Y','2025-10-23 00:00:00'),(73066,11,'MF40.20','Acute scrotal pain','Y','2025-10-23 00:00:00'),(73065,11,'GA07.0','Acute salpingitis and oophoritis','Y','2025-10-23 00:00:00'),(73064,11,'1B41.0','Acute rheumatic pericarditis','Y','2025-10-23 00:00:00'),(73063,11,'1B41.2','Acute rheumatic myocarditis','Y','2025-10-23 00:00:00'),(73062,11,'1B41.Z','Acute rheumatic heart disease, unspecified','Y','2025-10-23 00:00:00'),(73061,11,'1B40.Z','Acute rheumatic fever without mention of heart involvement, unspecified','Y','2025-10-23 00:00:00'),(73060,11,'1B40','Acute rheumatic fever without mention of heart involvement','Y','2025-10-23 00:00:00'),(73059,11,'1B41','Acute rheumatic fever with heart involvement','Y','2025-10-23 00:00:00'),(73058,11,'1B41.1Z','Acute rheumatic endocarditis, unspecified','Y','2025-10-23 00:00:00'),(73057,11,'1B41.1','Acute rheumatic endocarditis','Y','2025-10-23 00:00:00'),(73056,11,'CB41.0Z','Acute respiratory failure, unspecified','Y','2025-10-23 00:00:00'),(73055,11,'CB41.01','Acute respiratory failure, Type II','Y','2025-10-23 00:00:00'),(73054,11,'CB41.00','Acute respiratory failure, Type I','Y','2025-10-23 00:00:00'),(73053,11,'CB41.0','Acute respiratory failure','Y','2025-10-23 00:00:00'),(73052,11,'CB00','Acute respiratory distress syndrome','Y','2025-10-23 00:00:00'),(73051,11,'5C73.0','Acute respiratory acidosis','Y','2025-10-23 00:00:00'),(73050,11,'8A67','Acute repetitive seizures','Y','2025-10-23 00:00:00'),(73049,11,'GB53','Acute renal papillary necrosis','Y','2025-10-23 00:00:00'),(73048,11,'EL60','Acute radiodermatitis following radiotherapy','Y','2025-10-23 00:00:00'),(73047,11,'GB51','Acute pyelonephritis','Y','2025-10-23 00:00:00'),(73046,11,'ME62.1','Acute purpuric skin eruption','Y','2025-10-23 00:00:00'),(73045,11,'BB00.0','Acute pulmonary thromboembolism','Y','2025-10-23 00:00:00'),(73044,11,'CA82.0','Acute pulmonary manifestations due to radiation','Y','2025-10-23 00:00:00'),(73043,11,'1F25.00','Acute pulmonary coccidioidomycosis','Y','2025-10-23 00:00:00'),(73042,11,'XH1A50','Acute promyelocytic leukaemia, t(15;17)(q22;q11-12)','Y','2025-10-23 00:00:00'),(73041,11,'XH4XT4','Acute progressive histiocytosis X','Y','2025-10-23 00:00:00'),(73040,11,'MG31.2','Acute postoperative pain, not elsewhere classified','Y','2025-10-23 00:00:00'),(73039,11,'3A94','Acute posthaemorrhagic anaemia','Y','2025-10-23 00:00:00'),(73038,11,'1C81','Acute poliomyelitis','Y','2025-10-23 00:00:00'),(73037,11,'CA02.Z','Acute pharyngitis, unspecified','Y','2025-10-23 00:00:00'),(73036,11,'CA02.0','Acute pharyngitis due to other bacteria','Y','2025-10-23 00:00:00'),(73035,11,'CA02','Acute pharyngitis','Y','2025-10-23 00:00:00'),(73034,11,'DA0C.0','Acute periodontitis','Y','2025-10-23 00:00:00'),(73033,11,'BB20.Z','Acute pericarditis, unspecified','Y','2025-10-23 00:00:00'),(73032,11,'BB20','Acute pericarditis','Y','2025-10-23 00:00:00'),(73031,11,'ME62.4','Acute papular skin eruption','Y','2025-10-23 00:00:00'),(73030,11,'XH1075','Acute panmyelosis with myelofibrosis','Y','2025-10-23 00:00:00'),(73029,11,'2A60.38','Acute panmyelosis with myelofibrosis','Y','2025-10-23 00:00:00'),(73028,11,'DC31.Z','Acute pancreatitis, unspecified','Y','2025-10-23 00:00:00'),(73027,11,'DC31','Acute pancreatitis','Y','2025-10-23 00:00:00'),(73026,11,'MG31.Z','Acute pain, unspecified','Y','2025-10-23 00:00:00'),(73024,11,'MG31','Acute pain','Y','2025-10-23 00:00:00'),(73025,11,'MG31.0','Acute pain in the face, not elsewhere classified','Y','2025-10-23 00:00:00'),(73023,11,'AB00','Acute otitis media','Y','2025-10-23 00:00:00'),(73022,11,'BB40','Acute or subacute infectious endocarditis','Y','2025-10-23 00:00:00'),(73021,11,'DB91.Z','Acute or subacute hepatic failure, unspecified','Y','2025-10-23 00:00:00'),(73020,11,'DB91.0','Acute or subacute hepatic failure due to hepatitis virus','Y','2025-10-23 00:00:00'),(73019,11,'DB91','Acute or subacute hepatic failure','Y','2025-10-23 00:00:00'),(73018,11,'BB4Z','Acute or subacute endocarditis, unspecified','Y','2025-10-23 00:00:00'),(73017,11,'DC12.00','Acute on chronic cholecystitis','Y','2025-10-23 00:00:00'),(73016,11,'CA06.Z','Acute obstructive laryngitis or epiglottitis, unspecified','Y','2025-10-23 00:00:00'),(73015,11,'CA06','Acute obstructive laryngitis or epiglottitis','Y','2025-10-23 00:00:00'),(73014,11,'CA06.0','Acute obstructive laryngitis','Y','2025-10-23 00:00:00'),(73013,11,'BA41.1','Acute non-ST elevation myocardial infarction','Y','2025-10-23 00:00:00'),(73012,11,'AA81','Acute nonserous nonsuppurative otitis media','Y','2025-10-23 00:00:00'),(73011,11,'AA11','Acute noninfectious otitis externa','Y','2025-10-23 00:00:00'),(73010,11,'CA20.0','Acute noninfectious bronchitis','Y','2025-10-23 00:00:00'),(73009,11,'1E91.4','Acute neuropathy of cranial nerve due to zoster','Y','2025-10-23 00:00:00'),(73008,11,'CA00','Acute nasopharyngitis','Y','2025-10-23 00:00:00'),(73007,11,'AB14','Acute myringitis','Y','2025-10-23 00:00:00'),(73006,11,'BA41.Z','Acute myocardial infarction, unspecified','Y','2025-10-23 00:00:00'),(73005,11,'BA41','Acute myocardial infarction','Y','2025-10-23 00:00:00'),(73003,11,'2A60.33','Acute myelomonocytic leukaemia','Y','2025-10-23 00:00:00'),(73004,11,'XH78Y4','Acute myelomonocytic leukaemia','Y','2025-10-23 00:00:00'),(73002,11,'XH1EK4','Acute myeloid leukemia with mutated RUNX1','Y','2025-10-23 00:00:00'),(73001,11,'XH4M02','Acute myeloid leukemia with biallelic mutation of CEBPA','Y','2025-10-23 00:00:00'),(73000,11,'XH6FZ7','Acute myeloid leukemia with BCR-ABL1','Y','2025-10-23 00:00:00'),(72999,11,'2A60.Z','Acute myeloid leukaemias and related precursor neoplasms, unspecified','Y','2025-10-23 00:00:00'),(72998,11,'2A60','Acute myeloid leukaemias and related precursor neoplasms','Y','2025-10-23 00:00:00'),(72997,11,'2A60.3Z','Acute myeloid leukaemia, unspecified','Y','2025-10-23 00:00:00'),(72996,11,'XH3CX5','Acute myeloid leukaemia, t(8;21)(q22;q22)','Y','2025-10-23 00:00:00'),(72995,11,'2A60.3','Acute myeloid leukaemia, not elsewhere classified by criteria of other types','Y','2025-10-23 00:00:00'),(72994,11,'XH8AA5','Acute myeloid leukaemia, NOS','Y','2025-10-23 00:00:00'),(72993,11,'XH90G0','Acute myeloid leukaemia, minimal differentiation','Y','2025-10-23 00:00:00'),(72992,11,'XH1E41','Acute myeloid leukaemia, 11q23 abnormalities','Y','2025-10-23 00:00:00'),(72991,11,'XH5AH8','Acute myeloid leukaemia without maturation','Y','2025-10-23 00:00:00'),(72990,11,'2A60.31','Acute myeloid leukaemia without maturation','Y','2025-10-23 00:00:00'),(72989,11,'XH9Y46','Acute myeloid leukaemia with t(6;9)(p23;q34); DEK-NUP214','Y','2025-10-23 00:00:00'),(72988,11,'2A60.0','Acute myeloid leukaemia with recurrent genetic abnormalities','Y','2025-10-23 00:00:00'),(72987,11,'2A60.1','Acute myeloid leukaemia with myelodysplasia-related changes','Y','2025-10-23 00:00:00'),(72986,11,'XH64R4','Acute myeloid leukaemia with myelodysplasia-related changes','Y','2025-10-23 00:00:00'),(72985,11,'XH74W8','Acute myeloid leukaemia with mutated NPM1','Y','2025-10-23 00:00:00'),(72984,11,'2A60.30','Acute myeloid leukaemia with minimal differentiation','Y','2025-10-23 00:00:00'),(72983,11,'XH1XJ9','Acute myeloid leukaemia with maturation','Y','2025-10-23 00:00:00'),(72982,11,'2A60.32','Acute myeloid leukaemia with maturation','Y','2025-10-23 00:00:00'),(72981,11,'XH2KE3','Acute myeloid leukaemia with inv(3)(q21;q26.2) or t(3.3)(q21;q26.2); RPN1-EVI1','Y','2025-10-23 00:00:00'),(72980,11,'XH3PA4','Acute myeloid leukaemia with abnormal marrow eosinophils','Y','2025-10-23 00:00:00'),(72979,11,'XH16K4','Acute myeloid leukaemia (megakaryoblastic) with t(1;22)(p13;q13); RBM15-MKL1','Y','2025-10-23 00:00:00'),(72978,11,'DA0B.4','Acute multiple gingival abscesses','Y','2025-10-23 00:00:00'),(72977,11,'XH9NE2','Acute monocytic leukaemia','Y','2025-10-23 00:00:00'),(72976,11,'2A60.34','Acute monoblastic or monocytic leukaemia','Y','2025-10-23 00:00:00'),(72975,11,'XH1K97','Acute monoblastic and monocytic leukaemia','Y','2025-10-23 00:00:00'),(72974,11,'XH3VV7','Acute mixed lineage leukaemia','Y','2025-10-23 00:00:00'),(72973,11,'1B13.2','Acute miliary tuberculosis, unspecified site','Y','2025-10-23 00:00:00'),(72972,11,'1B13.1','Acute miliary tuberculosis of multiple sites','Y','2025-10-23 00:00:00'),(72971,11,'1B13.0','Acute miliary tuberculosis of a single specified site','Y','2025-10-23 00:00:00'),(72970,11,'DD30.2','Acute mesenteric venous occlusion','Y','2025-10-23 00:00:00'),(72969,11,'DD30.1','Acute mesenteric arterial ischaemia','Y','2025-10-23 00:00:00'),(72968,11,'DD30.0','Acute mesenteric arterial infarction','Y','2025-10-23 00:00:00'),(72967,11,'1C1C.20','Acute meningococcaemia','Y','2025-10-23 00:00:00'),(72966,11,'XH4750','Acute megakaryoblastic leukaemia','Y','2025-10-23 00:00:00'),(72965,11,'2A60.36','Acute megakaryoblastic leukaemia','Y','2025-10-23 00:00:00'),(72964,11,'AB11.0','Acute mastoiditis','Y','2025-10-23 00:00:00'),(72963,11,'5B52','Acute malnutrition in infants, children or adolescents','Y','2025-10-23 00:00:00'),(72962,11,'ME62.3','Acute maculopapular skin eruption','Y','2025-10-23 00:00:00'),(72961,11,'BD90.0','Acute lymphadenitis','Y','2025-10-23 00:00:00'),(72960,11,'BD30.2Z','Acute lower limb arterial occlusion, unspecified','Y','2025-10-23 00:00:00'),(72959,11,'BD30.2','Acute lower limb arterial occlusion','Y','2025-10-23 00:00:00'),(72958,11,'2A61','Acute leukaemias of ambiguous lineage','Y','2025-10-23 00:00:00'),(72957,11,'2B33.0','Acute leukaemia, not elsewhere classified','Y','2025-10-23 00:00:00'),(72956,11,'XH1B20','Acute leukaemia, NOS','Y','2025-10-23 00:00:00'),(72955,11,'CA05.2','Acute laryngotracheitis','Y','2025-10-23 00:00:00'),(72954,11,'CA04','Acute laryngopharyngitis','Y','2025-10-23 00:00:00'),(72953,11,'CA05','Acute laryngitis or tracheitis','Y','2025-10-23 00:00:00'),(72952,11,'CA05.0','Acute laryngitis','Y','2025-10-23 00:00:00'),(72951,11,'GB60.Z','Acute kidney failure, stage unspecified','Y','2025-10-23 00:00:00'),(72950,11,'GB60.2','Acute kidney failure, stage 3','Y','2025-10-23 00:00:00'),(72949,11,'GB60.1','Acute kidney failure, stage 2','Y','2025-10-23 00:00:00'),(72948,11,'GB60.0','Acute kidney failure, stage 1','Y','2025-10-23 00:00:00'),(72947,11,'GB60','Acute kidney failure','Y','2025-10-23 00:00:00'),(72946,11,'BA4Z','Acute ischaemic heart disease, unspecified','Y','2025-10-23 00:00:00'),(72945,11,'CB03.0','Acute interstitial pneumonitis','Y','2025-10-23 00:00:00'),(72944,11,'NC93.0','Acute internal damage of knee','Y','2025-10-23 00:00:00'),(72943,11,'GA01.0Z','Acute inflammatory disease of uterus, unspecified','Y','2025-10-23 00:00:00'),(72942,11,'GA01.01','Acute inflammatory disease of uterus with pyometra','Y','2025-10-23 00:00:00'),(72941,11,'GA01.0','Acute inflammatory disease of uterus','Y','2025-10-23 00:00:00'),(72940,11,'8C01.0','Acute inflammatory demyelinating polyneuropathy','Y','2025-10-23 00:00:00'),(72939,11,'MD24','Acute idiopathic pulmonary haemorrhage in infants over 28 days of age','Y','2025-10-23 00:00:00'),(72938,11,'DC31.0','Acute idiopathic pancreatitis','Y','2025-10-23 00:00:00'),(72937,11,'1E91.41','Acute herpetic geniculate ganglionitis','Y','2025-10-23 00:00:00'),(72936,11,'1E50.4','Acute hepatitis E','Y','2025-10-23 00:00:00'),(72935,11,'1E50.3','Acute hepatitis D','Y','2025-10-23 00:00:00'),(72934,11,'1E50.2','Acute hepatitis C','Y','2025-10-23 00:00:00'),(72933,11,'1E50.1','Acute hepatitis B','Y','2025-10-23 00:00:00'),(72932,11,'1E50.0','Acute hepatitis A','Y','2025-10-23 00:00:00'),(72931,11,'MG31.1','Acute headache, not elsewhere classified','Y','2025-10-23 00:00:00'),(72930,11,'8A84.0','Acute headache associated with traumatic injury to the head','Y','2025-10-23 00:00:00'),(72929,11,'DB34.4','Acute haemorrhagic rectal ulcer','Y','2025-10-23 00:00:00'),(72928,11,'EH40.3','Acute haemorrhagic oedema of infancy','Y','2025-10-23 00:00:00'),(72927,11,'8A42.0','Acute haemorrhagic leukoencephalitis','Y','2025-10-23 00:00:00'),(72926,11,'DA42.72','Acute haemorrhagic gastritis of unknown aetiology','Y','2025-10-23 00:00:00'),(72925,11,'DA51.40','Acute haemorrhagic duodenitis of unknown aetiology','Y','2025-10-23 00:00:00'),(72924,11,'FB84.0','Acute haematogenous osteomyelitis','Y','2025-10-23 00:00:00'),(72923,11,'4B24.0','Acute graft-versus-host disease','Y','2025-10-23 00:00:00'),(72922,11,'ME24.90','Acute gastrointestinal bleeding, not elsewhere classified','Y','2025-10-23 00:00:00'),(72921,11,'GA05.0','Acute female pelvic inflammatory disease','Y','2025-10-23 00:00:00'),(72920,11,'EB20','Acute febrile neutrophilic dermatosis','Y','2025-10-23 00:00:00'),(72919,11,'ME62.5','Acute exudative skin eruption','Y','2025-10-23 00:00:00'),(72918,11,'ME62.9','Acute excoriation of skin','Y','2025-10-23 00:00:00'),(72917,11,'DC31.5','Acute exacerbation of chronic pancreatitis','Y','2025-10-23 00:00:00'),(72916,11,'XH43N4','Acute erythroid leukemia','Y','2025-10-23 00:00:00'),(72915,11,'2A60.35','Acute erythroid leukaemia','Y','2025-10-23 00:00:00'),(72914,11,'ME62.0','Acute erythematous skin eruption','Y','2025-10-23 00:00:00'),(72913,11,'EA91.0','Acute eruptive lichen planus','Y','2025-10-23 00:00:00'),(72912,11,'CA06.1','Acute epiglottitis','Y','2025-10-23 00:00:00'),(72911,11,'1D84.1','Acute epidemic haemorrhagic conjunctivitis','Y','2025-10-23 00:00:00'),(72910,11,'9A60.33','Acute epidemic conjunctivitis','Y','2025-10-23 00:00:00'),(72909,11,'GA01.00','Acute endometritis','Y','2025-10-23 00:00:00'),(72908,11,'EJ4Z','Acute effects of ultraviolet radiation on normal skin, unspecified','Y','2025-10-23 00:00:00'),(72907,11,'DC31.3','Acute drug-induced pancreatitis','Y','2025-10-23 00:00:00'),(72906,11,'CA82.2','Acute drug-induced interstitial lung disorders','Y','2025-10-23 00:00:00'),(72905,11,'8A42.Z','Acute disseminated encephalomyelitis, unspecified','Y','2025-10-23 00:00:00'),(72904,11,'8A42','Acute disseminated encephalomyelitis','Y','2025-10-23 00:00:00'),(72903,11,'ME62.8','Acute discoid or annular skin eruption','Y','2025-10-23 00:00:00'),(72902,11,'DA41.1','Acute dilatation of stomach','Y','2025-10-23 00:00:00'),(72901,11,'ME62.7','Acute desquamating skin eruption','Y','2025-10-23 00:00:00'),(72900,11,'EE20','Acute cutaneous distension syndrome','Y','2025-10-23 00:00:00'),(72899,11,'SE33','Acute convulsion disorder (TM1)','Y','2025-10-23 00:00:00'),(72898,11,'DC12.0Z','Acute cholecystitis, unspecified','Y','2025-10-23 00:00:00'),(72897,11,'DC12.0','Acute cholecystitis','Y','2025-10-23 00:00:00'),(72896,11,'1F53.1','Acute Chagas disease without heart involvement','Y','2025-10-23 00:00:00'),(72895,11,'CA42.Z','Acute bronchitis, unspecified','Y','2025-10-23 00:00:00'),(72894,11,'CA42.0','Acute bronchitis due to Streptococcus','Y','2025-10-23 00:00:00'),(72893,11,'CA42.1','Acute bronchitis due to Rhinovirus','Y','2025-10-23 00:00:00'),(72892,11,'CA42.2','Acute bronchitis due to Respiratory syncytial virus','Y','2025-10-23 00:00:00'),(72891,11,'CA42.3','Acute bronchitis due to Parainfluenza virus','Y','2025-10-23 00:00:00'),(72890,11,'CA42.4','Acute bronchitis due to Haemophilus influenzae','Y','2025-10-23 00:00:00'),(72889,11,'CA42.5','Acute bronchitis due to Coxsackievirus','Y','2025-10-23 00:00:00'),(72888,11,'CA42','Acute bronchitis','Y','2025-10-23 00:00:00'),(72887,11,'CA41.Z','Acute bronchiolitis, unspecified','Y','2025-10-23 00:00:00'),(72886,11,'CA41.0','Acute bronchiolitis due to respiratory syncytial virus','Y','2025-10-23 00:00:00'),(72885,11,'CA41','Acute bronchiolitis','Y','2025-10-23 00:00:00'),(72884,11,'ME62.6','Acute blistering skin eruption','Y','2025-10-23 00:00:00'),(72883,11,'XH37U0','Acute biphenotypic leukaemia','Y','2025-10-23 00:00:00'),(72882,11,'XH2H98','Acute bilineal leukaemia','Y','2025-10-23 00:00:00'),(72881,11,'DC31.2','Acute biliary pancreatitis','Y','2025-10-23 00:00:00'),(72880,11,'XH7MR1','Acute basophilic leukaemia','Y','2025-10-23 00:00:00'),(72879,11,'2A60.37','Acute basophilic leukaemia','Y','2025-10-23 00:00:00'),(72878,11,'EE12.0','Acute bacterial paronychia','Y','2025-10-23 00:00:00'),(72877,11,'9A60.01','Acute atopic conjunctivitis','Y','2025-10-23 00:00:00'),(72876,11,'BD30.Z','Acute arterial occlusion, unspecified','Y','2025-10-23 00:00:00'),(72875,11,'BD30','Acute arterial occlusion','Y','2025-10-23 00:00:00'),(72874,11,'8B43.0','Acute arterial infarction of the spinal cord','Y','2025-10-23 00:00:00'),(72873,11,'DB10.02','Acute appendicitis without localised or generalised peritonitis','Y','2025-10-23 00:00:00'),(72872,11,'DB10.01','Acute appendicitis with localised peritonitis','Y','2025-10-23 00:00:00'),(72871,11,'DB10.00','Acute appendicitis with generalised peritonitis','Y','2025-10-23 00:00:00'),(72870,11,'DB10.0','Acute appendicitis','Y','2025-10-23 00:00:00'),(72869,11,'DA09.70','Acute apical periodontitis of pulpal origin','Y','2025-10-23 00:00:00'),(72868,11,'BD30.1Z','Acute aortoiliac occlusion, unspecified','Y','2025-10-23 00:00:00'),(72867,11,'BD30.1','Acute aortoiliac occlusion','Y','2025-10-23 00:00:00'),(72866,11,'9C61.14','Acute angle closure with pupillary block','Y','2025-10-23 00:00:00'),(72865,11,'6A23.Z','Acute and transient psychotic disorder, unspecified','Y','2025-10-23 00:00:00'),(72864,11,'6A23.1Z','Acute and transient psychotic disorder, multiple episodes, unspecified','Y','2025-10-23 00:00:00'),(72863,11,'6A23.11','Acute and transient psychotic disorder, multiple episodes, in partial remission','Y','2025-10-23 00:00:00'),(72862,11,'6A23.12','Acute and transient psychotic disorder, multiple episodes, in full remission','Y','2025-10-23 00:00:00'),(72861,11,'6A23.10','Acute and transient psychotic disorder, multiple episodes, currently symptomatic','Y','2025-10-23 00:00:00'),(72860,11,'6A23.1','Acute and transient psychotic disorder, multiple episodes','Y','2025-10-23 00:00:00'),(72859,11,'6A23.0Z','Acute and transient psychotic disorder, first episode, unspecified','Y','2025-10-23 00:00:00'),(72858,11,'6A23.01','Acute and transient psychotic disorder, first episode, in partial remission','Y','2025-10-23 00:00:00'),(72857,11,'6A23.02','Acute and transient psychotic disorder, first episode, in full remission','Y','2025-10-23 00:00:00'),(72856,11,'6A23.00','Acute and transient psychotic disorder, first episode, currently symptomatic','Y','2025-10-23 00:00:00'),(72855,11,'6A23.0','Acute and transient psychotic disorder, first episode','Y','2025-10-23 00:00:00'),(72854,11,'6A23','Acute and transient psychotic disorder','Y','2025-10-23 00:00:00'),(72853,11,'1A36.00','Acute amoebiasis','Y','2025-10-23 00:00:00'),(72852,11,'DC31.1','Acute alcohol-induced pancreatitis','Y','2025-10-23 00:00:00'),(72851,11,'3A61.0','Acute acquired pure red cell aplasia','Y','2025-10-23 00:00:00'),(72850,11,'MD81.3','Acute abdomen','Y','2025-10-23 00:00:00'),(72849,11,'XT5R','Acute','Y','2025-10-23 00:00:00'),(72848,11,'PK81.3Z','Acupuncture or related therapies associated with injury or harm in therapeutic use, unspecified','Y','2025-10-23 00:00:00'),(72847,11,'PK81.3','Acupuncture or related therapies associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(72846,11,'PK81.30','Acupuncture cupping associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(72845,11,'XE0WZ','Actuator component of medical device','Y','2025-10-23 00:00:00'),(72844,11,'1C23.1','Active stage of trachoma','Y','2025-10-23 00:00:00'),(72843,11,'XT98','Active','Y','2025-10-23 00:00:00'),(72842,11,'XE4GH','Activation, positioning or separation problem','Y','2025-10-23 00:00:00'),(72841,11,'XE76U','Activation problem','Y','2025-10-23 00:00:00'),(72840,11,'XE48N','Activation failure or expansion failures','Y','2025-10-23 00:00:00'),(72839,11,'1C10.Z','Actinomycosis, unspecified','Y','2025-10-23 00:00:00'),(72838,11,'1C10','Actinomycosis','Y','2025-10-23 00:00:00'),(72837,11,'XM6F82','Actinomycin C','Y','2025-10-23 00:00:00'),(72836,11,'1C43','Actinomycetoma','Y','2025-10-23 00:00:00'),(72835,11,'XN8EK','Actinomycetales','Y','2025-10-23 00:00:00'),(72834,11,'XN8HN','Actinomyces species','Y','2025-10-23 00:00:00'),(72833,11,'XN15T','Actinomyces israelii','Y','2025-10-23 00:00:00'),(72832,11,'XN0GV','Actinomyces gerencseriae','Y','2025-10-23 00:00:00'),(72831,11,'XN3G0','Actinomyces','Y','2025-10-23 00:00:00'),(72830,11,'XN8P7','Actinomadura','Y','2025-10-23 00:00:00'),(72829,11,'EJ20.3','Actinic telangiectasia','Y','2025-10-23 00:00:00'),(72828,11,'EJ20.1','Actinic lentigo','Y','2025-10-23 00:00:00'),(72827,11,'EJ20.2','Actinic lentiginosis','Y','2025-10-23 00:00:00'),(72826,11,'EK90','Actinic keratosis and other discrete epidermal dysplasias','Y','2025-10-23 00:00:00'),(72825,11,'EK90.0','Actinic keratosis','Y','2025-10-23 00:00:00'),(72824,11,'XH36H6','Actinic keratosis','Y','2025-10-23 00:00:00'),(72823,11,'2E64.01','Actinic intraepidermal squamous cell carcinoma','Y','2025-10-23 00:00:00'),(72822,11,'EJ20.0','Actinic elastosis','Y','2025-10-23 00:00:00'),(72821,11,'XH7AG8','ACTH-producing tumour','Y','2025-10-23 00:00:00'),(72820,11,'XM8MB3','Acterol','Y','2025-10-23 00:00:00'),(72819,11,'XM3QE1','Actaea spicata','Y','2025-10-23 00:00:00'),(72818,11,'XM7BA0','Actaea plant','Y','2025-10-23 00:00:00'),(72817,11,'XM23N0','Acrylonitrile','Y','2025-10-23 00:00:00'),(72816,11,'XM7MV6','Acrylic resin','Y','2025-10-23 00:00:00'),(72815,11,'XM5LS4','Acrylamide','Y','2025-10-23 00:00:00'),(72814,11,'XA6PJ1','Acrosyringium','Y','2025-10-23 00:00:00'),(72813,11,'EA90.41','Acropustulosis of Hallopeau','Y','2025-10-23 00:00:00'),(72812,11,'MB40.7','Acroparaesthesia','Y','2025-10-23 00:00:00'),(72811,11,'XA3664','Acromion','Y','2025-10-23 00:00:00'),(72810,11,'XA2H23','Acromioclavicular ligament','Y','2025-10-23 00:00:00'),(72809,11,'XA69U6','Acromioclavicular joint','Y','2025-10-23 00:00:00'),(72808,11,'XA09P2','Acromial end of clavicle','Y','2025-10-23 00:00:00'),(72807,11,'LD24.9','Acromesomelic dysplasias','Y','2025-10-23 00:00:00'),(72806,11,'LD24.8Z','Acromelic dysplasias, unspecified','Y','2025-10-23 00:00:00'),(72805,11,'LD24.8','Acromelic dysplasias','Y','2025-10-23 00:00:00'),(72804,11,'5A60.0','Acromegaly or pituitary gigantism','Y','2025-10-23 00:00:00'),(72802,11,'XM4HP5','Acrolein','Y','2025-10-23 00:00:00'),(72803,11,'XM2MJ1','Acrolein gas','Y','2025-10-23 00:00:00'),(72801,11,'LD25.2','Acrofacial dysostoses','Y','2025-10-23 00:00:00'),(72800,11,'5C64.20','Acrodermatitis enteropathica','Y','2025-10-23 00:00:00'),(72799,11,'XE4HZ','Acrobatic sports','Y','2025-10-23 00:00:00'),(72798,11,'XM4GA2','Acrivastine','Y','2025-10-23 00:00:00'),(72797,11,'XM5PD0','Acrisorcin','Y','2025-10-23 00:00:00'),(72796,11,'XM8K50','Acrinol','Y','2025-10-23 00:00:00'),(72795,11,'XM2FL0','Acriflavinium chloride','Y','2025-10-23 00:00:00'),(72794,11,'XM0BF3','Acriflavine','Y','2025-10-23 00:00:00'),(72793,11,'XM2QW2','Acridine vapor','Y','2025-10-23 00:00:00'),(72792,11,'XM9UE9','Acridine','Y','2025-10-23 00:00:00'),(72791,11,'XH9DB2','Acral naevus','Y','2025-10-23 00:00:00'),(72790,11,'XH9L11','Acral melanoma','Y','2025-10-23 00:00:00'),(72788,11,'XH8173','Acral fibromyxoma','Y','2025-10-23 00:00:00'),(72789,11,'2C30.3','Acral lentiginous melanoma, primary','Y','2025-10-23 00:00:00'),(72787,11,'FA31.3','Acquired wrist drop','Y','2025-10-23 00:00:00'),(72786,11,'KB2H','Acquired vocal cord paralysis in newborn','Y','2025-10-23 00:00:00'),(72785,11,'3A03.6','Acquired vitamin E deficiency anaemia','Y','2025-10-23 00:00:00'),(72784,11,'3A03.5','Acquired vitamin A deficiency anaemia','Y','2025-10-23 00:00:00'),(72783,11,'BC41.Z','Acquired ventricular abnormality, unspecified','Y','2025-10-23 00:00:00'),(72782,11,'BC41','Acquired ventricular abnormality','Y','2025-10-23 00:00:00'),(72781,11,'3B60.1','Acquired vascular purpura','Y','2025-10-23 00:00:00'),(72780,11,'FA31.8','Acquired unequal limb length','Y','2025-10-23 00:00:00'),(72779,11,'XH2EX4','Acquired tufted haemangioma','Y','2025-10-23 00:00:00'),(72778,11,'BC02.1','Acquired truncal valvar abnormality','Y','2025-10-23 00:00:00'),(72777,11,'3B61.1','Acquired thrombophilia','Y','2025-10-23 00:00:00'),(72776,11,'3B63.1Z','Acquired thrombocytosis, unspecified','Y','2025-10-23 00:00:00'),(72775,11,'3B63.1','Acquired thrombocytosis','Y','2025-10-23 00:00:00'),(72774,11,'3B64.1','Acquired thrombocytopenia','Y','2025-10-23 00:00:00'),(72773,11,'3A03.42','Acquired thiamine deficiency anaemia','Y','2025-10-23 00:00:00'),(72772,11,'BD73.Z','Acquired systemic vein abnormality, unspecified','Y','2025-10-23 00:00:00'),(72771,11,'BD73','Acquired systemic vein abnormality','Y','2025-10-23 00:00:00'),(72770,11,'BD73.1','Acquired superior caval vein abnormality','Y','2025-10-23 00:00:00'),(72769,11,'BC02.40','Acquired stenosis of the neoaortic valve of truncal origin','Y','2025-10-23 00:00:00'),(72768,11,'AA40.1','Acquired stenosis of external auditory canal','Y','2025-10-23 00:00:00'),(72767,11,'3A72.1','Acquired sideroblastic anaemias','Y','2025-10-23 00:00:00'),(72766,11,'FB42.0','Acquired short Achilles tendon','Y','2025-10-23 00:00:00'),(72765,11,'AB51.1','Acquired sensorineural hearing loss','Y','2025-10-23 00:00:00'),(72764,11,'3A03.41','Acquired riboflavin deficiency anaemia','Y','2025-10-23 00:00:00'),(72763,11,'BC02.41','Acquired regurgitation of the neoaortic valve of truncal origin','Y','2025-10-23 00:00:00'),(72762,11,'3A03.40','Acquired pyridoxine deficiency anaemia','Y','2025-10-23 00:00:00'),(72761,11,'3A61.Z','Acquired pure red cell aplasia, unspecified','Y','2025-10-23 00:00:00'),(72760,11,'3A61','Acquired pure red cell aplasia','Y','2025-10-23 00:00:00'),(72759,11,'BB03.0','Acquired pulmonary venous obstruction','Y','2025-10-23 00:00:00'),(72758,11,'BB03.Z','Acquired pulmonary venous abnormality, unspecified','Y','2025-10-23 00:00:00'),(72757,11,'BB03','Acquired pulmonary venous abnormality','Y','2025-10-23 00:00:00'),(72756,11,'KB2K.0','Acquired pulmonary cysts in newborn','Y','2025-10-23 00:00:00'),(72755,11,'BB02.3','Acquired pulmonary arterial tree abnormality','Y','2025-10-23 00:00:00'),(72754,11,'2E81.11','Acquired progressive lymphangioma','Y','2025-10-23 00:00:00'),(72753,11,'8E01','Acquired prion disease','Y','2025-10-23 00:00:00'),(72752,11,'3A81.Z','Acquired polycythaemia, unspecified','Y','2025-10-23 00:00:00'),(72751,11,'3A81','Acquired polycythaemia','Y','2025-10-23 00:00:00'),(72749,11,'EE50','Acquired poikiloderma','Y','2025-10-23 00:00:00'),(72750,11,'ED73.11','Acquired poliosis','Y','2025-10-23 00:00:00'),(72748,11,'FA31.5','Acquired pes planus','Y','2025-10-23 00:00:00'),(72747,11,'EE70.0','Acquired perforating dermatosis','Y','2025-10-23 00:00:00'),(72746,11,'EF01.0','Acquired partial lipodystrophy','Y','2025-10-23 00:00:00'),(72745,11,'GA17.0','Acquired parafimbrial cyst of the fallopian tube','Y','2025-10-23 00:00:00'),(72744,11,'ED55.0','Acquired palmoplantar keratodermas','Y','2025-10-23 00:00:00'),(72743,11,'3A03.4','Acquired other vitamin B deficiency anaemia','Y','2025-10-23 00:00:00'),(72742,11,'9A23.1','Acquired orbital cyst','Y','2025-10-23 00:00:00'),(72741,11,'9C40.B1','Acquired optic atrophy','Y','2025-10-23 00:00:00'),(72740,11,'4B00.11','Acquired neutrophilia','Y','2025-10-23 00:00:00'),(72739,11,'4B00.01','Acquired neutropaenia','Y','2025-10-23 00:00:00'),(72738,11,'5C61.4Z','Acquired monosaccharide malabsorption, unspecified','Y','2025-10-23 00:00:00'),(72736,11,'AB51.2','Acquired mixed conductive and sensorineural hearing loss','Y','2025-10-23 00:00:00'),(72737,11,'5C61.4','Acquired monosaccharide malabsorption','Y','2025-10-23 00:00:00'),(72734,11,'ED61','Acquired melanotic macules or lentigines','Y','2025-10-23 00:00:00'),(72735,11,'3A93','Acquired methaemoglobinaemia','Y','2025-10-23 00:00:00'),(72733,11,'9A03.Z','Acquired malposition of eyelid, unspecified','Y','2025-10-23 00:00:00'),(72732,11,'9A03','Acquired malposition of eyelid','Y','2025-10-23 00:00:00'),(72730,11,'EF20','Acquired malformations of cutaneous blood vessels','Y','2025-10-23 00:00:00'),(72731,11,'EF20.Z','Acquired malformations of cutaneous blood vessels, unspecified','Y','2025-10-23 00:00:00'),(72729,11,'4B06','Acquired lymphopenia','Y','2025-10-23 00:00:00'),(72728,11,'4B07','Acquired lymphocytosis','Y','2025-10-23 00:00:00'),(72727,11,'3A00.1','Acquired iron deficiency anaemia due to low intake','Y','2025-10-23 00:00:00'),(72726,11,'3A00.3','Acquired iron deficiency anaemia due to increased requirement','Y','2025-10-23 00:00:00'),(72725,11,'3A00.2','Acquired iron deficiency anaemia due to decreased absorption','Y','2025-10-23 00:00:00'),(72724,11,'3A00.0Z','Acquired iron deficiency anaemia due to blood loss, unspecified','Y','2025-10-23 00:00:00'),(72723,11,'3A00.0','Acquired iron deficiency anaemia due to blood loss','Y','2025-10-23 00:00:00'),(72722,11,'BC41.0','Acquired interventricular communication','Y','2025-10-23 00:00:00'),(72721,11,'BC40.0','Acquired interatrial communication','Y','2025-10-23 00:00:00'),(72720,11,'BD73.0','Acquired inferior caval vein abnormality','Y','2025-10-23 00:00:00'),(72718,11,'4A20.Z','Acquired immunodeficiencies, unspecified','Y','2025-10-23 00:00:00'),(72719,11,'4A20.1','Acquired immunodeficiency due to loss of immunoglobulin','Y','2025-10-23 00:00:00'),(72716,11,'ED50.0','Acquired ichthyosis','Y','2025-10-23 00:00:00'),(72717,11,'4A20','Acquired immunodeficiencies','Y','2025-10-23 00:00:00'),(72715,11,'5A00.2Z','Acquired hypothyroidism, unspecified','Y','2025-10-23 00:00:00'),(72713,11,'ED63','Acquired hypomelanotic disorders','Y','2025-10-23 00:00:00'),(72714,11,'5A00.2','Acquired hypothyroidism','Y','2025-10-23 00:00:00'),(72712,11,'ED63.Z','Acquired hypomelanosis of unknown or unspecified aetiology','Y','2025-10-23 00:00:00'),(72711,11,'ED63.Y','Acquired hypomelanosis due to other specified disorder','Y','2025-10-23 00:00:00'),(72710,11,'DB32.3','Acquired hypoganglionosis of large intestine','Y','2025-10-23 00:00:00'),(72709,11,'ED60','Acquired hypermelanosis','Y','2025-10-23 00:00:00'),(72708,11,'AB51.Z','Acquired hearing impairment, unspecified','Y','2025-10-23 00:00:00'),(72707,11,'AB51','Acquired hearing impairment','Y','2025-10-23 00:00:00'),(72706,11,'FA30.2','Acquired hammer toe','Y','2025-10-23 00:00:00'),(72705,11,'FA30.0','Acquired hallux valgus','Y','2025-10-23 00:00:00'),(72704,11,'3B22','Acquired haemophilia','Y','2025-10-23 00:00:00'),(72703,11,'3A2Z','Acquired haemolytic anaemia, unspecified','Y','2025-10-23 00:00:00'),(72702,11,'3A21','Acquired haemolytic anaemia, non-immune','Y','2025-10-23 00:00:00'),(72701,11,'3A20','Acquired haemolytic anaemia, immune','Y','2025-10-23 00:00:00'),(72700,11,'FA31.4','Acquired foot drop','Y','2025-10-23 00:00:00'),(72699,11,'3B51','Acquired fibrinolytic defects','Y','2025-10-23 00:00:00'),(72698,11,'8A62.2','Acquired epileptic aphasia','Y','2025-10-23 00:00:00'),(72697,11,'4B03.1','Acquired eosinophilia','Y','2025-10-23 00:00:00'),(72695,11,'3B81','Acquired disorders of spleen','Y','2025-10-23 00:00:00'),(72696,11,'ED73','Acquired disorders of the hair shaft','Y','2025-10-23 00:00:00'),(72694,11,'4B01.1','Acquired disorders of neutrophil function','Y','2025-10-23 00:00:00'),(72693,11,'9A04','Acquired disorders of eyelashes','Y','2025-10-23 00:00:00'),(72692,11,'FC00.4','Acquired deformity of trunk','Y','2025-10-23 00:00:00'),(72691,11,'AA41','Acquired deformity of pinna','Y','2025-10-23 00:00:00'),(72690,11,'FC00.3','Acquired deformity of pelvis','Y','2025-10-23 00:00:00'),(72689,11,'FC00.0','Acquired deformity of nose','Y','2025-10-23 00:00:00'),(72688,11,'FC00.1','Acquired deformity of neck','Y','2025-10-23 00:00:00'),(72687,11,'AA40','Acquired deformity of external auditory canal','Y','2025-10-23 00:00:00'),(72686,11,'FC00.2','Acquired deformity of chest or rib','Y','2025-10-23 00:00:00'),(72685,11,'EE10','Acquired deformities of the nail plate','Y','2025-10-23 00:00:00'),(72684,11,'FC00.Y','Acquired deformities of musculoskeletal system and connective tissue, not classified elsewhere, other specified sites','Y','2025-10-23 00:00:00'),(72683,11,'FA31.Z','Acquired deformities of limbs, unspecified','Y','2025-10-23 00:00:00'),(72682,11,'FA30.Z','Acquired deformities of fingers or toes, unspecified','Y','2025-10-23 00:00:00'),(72681,11,'FA30','Acquired deformities of fingers or toes','Y','2025-10-23 00:00:00'),(72680,11,'4B02.1','Acquired decrease in eosinophil number','Y','2025-10-23 00:00:00'),(72678,11,'BD73.3','Acquired coronary sinus abnormality','Y','2025-10-23 00:00:00'),(72679,11,'XH0RU3','Acquired cystic disease associated renal cell carcinoma','Y','2025-10-23 00:00:00'),(72677,11,'AB51.0','Acquired conductive hearing loss','Y','2025-10-23 00:00:00'),(72676,11,'BC63.21','Acquired complete atrioventricular block','Y','2025-10-23 00:00:00'),(72675,11,'BC02.2','Acquired common atrioventricular valvar abnormality in double inlet ventricle','Y','2025-10-23 00:00:00'),(72674,11,'BC02.0','Acquired common atrioventricular valvar abnormality in biventricular connections','Y','2025-10-23 00:00:00'),(72673,11,'FA31.6','Acquired clawhand or clubhand','Y','2025-10-23 00:00:00'),(72672,11,'FA31.7','Acquired clawfoot or clubfoot','Y','2025-10-23 00:00:00'),(72671,11,'ED73.1','Acquired changes in hair colour','Y','2025-10-23 00:00:00'),(72670,11,'5A61.40','Acquired central hypothyroidism','Y','2025-10-23 00:00:00'),(72668,11,'BC40.Z','Acquired atrial abnormality, unspecified','Y','2025-10-23 00:00:00'),(72669,11,'GA18.7','Acquired atrophy of ovary or fallopian tube','Y','2025-10-23 00:00:00'),(72667,11,'BC40','Acquired atrial abnormality','Y','2025-10-23 00:00:00'),(72666,11,'8A03.3Z','Acquired ataxia, unspecified','Y','2025-10-23 00:00:00'),(72665,11,'8A03.3','Acquired ataxia','Y','2025-10-23 00:00:00'),(72664,11,'BD52.71','Acquired ascending aorta or root dilation','Y','2025-10-23 00:00:00'),(72662,11,'3A70.1','Acquired aplastic anaemias','Y','2025-10-23 00:00:00'),(72663,11,'3A70.1Z','Acquired aplastic anaemias, unspecified','Y','2025-10-23 00:00:00'),(72661,11,'4A00.15','Acquired angioedema','Y','2025-10-23 00:00:00'),(72660,11,'DA40.Z','Acquired anatomical alterations of the stomach, unspecified','Y','2025-10-23 00:00:00'),(72659,11,'DA40','Acquired anatomical alterations of the stomach','Y','2025-10-23 00:00:00'),(72658,11,'DA20.Z','Acquired anatomical alterations of the oesophagus, unspecified','Y','2025-10-23 00:00:00'),(72657,11,'DA20','Acquired anatomical alterations of the oesophagus','Y','2025-10-23 00:00:00'),(72656,11,'DA50.Z','Acquired anatomical alterations of the duodenum, unspecified','Y','2025-10-23 00:00:00'),(72655,11,'DA50','Acquired anatomical alterations of the duodenum','Y','2025-10-23 00:00:00'),(72654,11,'DB5Z','Acquired anatomical alterations of the anal canal, unspecified','Y','2025-10-23 00:00:00'),(72653,11,'DC10.Z','Acquired anatomical alterations of gallbladder or bile ducts, unspecified','Y','2025-10-23 00:00:00'),(72652,11,'DC10','Acquired anatomical alterations of gallbladder or bile ducts','Y','2025-10-23 00:00:00'),(72651,11,'5A74.0','Acquired adrenocortical insufficiency','Y','2025-10-23 00:00:00'),(72650,11,'QF01.Z','Acquired absence of organs, unspecified','Y','2025-10-23 00:00:00'),(72649,11,'QF01','Acquired absence of organs','Y','2025-10-23 00:00:00'),(72648,11,'QF01.11','Acquired absence of male genital organs','Y','2025-10-23 00:00:00'),(72647,11,'QF00','Acquired absence of limb','Y','2025-10-23 00:00:00'),(72646,11,'QF01.1','Acquired absence of genital organs','Y','2025-10-23 00:00:00'),(72645,11,'QF01.10','Acquired absence of female genital organs','Y','2025-10-23 00:00:00'),(72644,11,'QF01.0','Acquired absence of breast','Y','2025-10-23 00:00:00'),(72643,11,'QF0Z','Acquired absence of body structure, unspecified','Y','2025-10-23 00:00:00'),(72642,11,'BE14.4','Acquired abnormality of the neopulmonary valve','Y','2025-10-23 00:00:00'),(72641,11,'BC02.4Z','Acquired abnormality of the neoaortic valve of truncal origin, unspecified','Y','2025-10-23 00:00:00'),(72640,11,'BC02.4','Acquired abnormality of the neoaortic valve of truncal origin','Y','2025-10-23 00:00:00'),(72639,11,'BC02.3Z','Acquired abnormality of neoaortic valve of pulmonary origin, unspecified','Y','2025-10-23 00:00:00'),(72638,11,'BC02.3','Acquired abnormality of neoaortic valve of pulmonary origin','Y','2025-10-23 00:00:00'),(72637,11,'BC02.Z','Acquired abnormality of congenitally malformed valve, unspecified','Y','2025-10-23 00:00:00'),(72636,11,'BC02','Acquired abnormality of congenitally malformed valve','Y','2025-10-23 00:00:00'),(72635,11,'BD52.70','Acquired abnormality of aortic arch branch','Y','2025-10-23 00:00:00'),(72634,11,'GA13.Z','Acquired abnormalities of vulva or perineum, unspecified','Y','2025-10-23 00:00:00'),(72633,11,'GA13','Acquired abnormalities of vulva or perineum','Y','2025-10-23 00:00:00'),(72632,11,'GA14.Z','Acquired abnormalities of vagina, unspecified','Y','2025-10-23 00:00:00'),(72631,11,'GA14','Acquired abnormalities of vagina','Y','2025-10-23 00:00:00'),(72630,11,'GA16.Z','Acquired abnormalities of uterus, except cervix, unspecified','Y','2025-10-23 00:00:00'),(72629,11,'GA16','Acquired abnormalities of uterus, except cervix','Y','2025-10-23 00:00:00'),(72628,11,'GA18.Z','Acquired abnormalities of ovary, unspecified','Y','2025-10-23 00:00:00'),(72627,11,'GA18','Acquired abnormalities of ovary','Y','2025-10-23 00:00:00'),(72626,11,'EE11','Acquired abnormalities of nail colour','Y','2025-10-23 00:00:00'),(72625,11,'GA17.Z','Acquired abnormalities of fallopian tube, unspecified','Y','2025-10-23 00:00:00'),(72624,11,'GA17','Acquired abnormalities of fallopian tube','Y','2025-10-23 00:00:00'),(72623,11,'AB19','Acquired abnormalities of ear ossicles not related to discontinuity or dislocation','Y','2025-10-23 00:00:00'),(72622,11,'GA15.Z','Acquired abnormalities of cervix uteri, unspecified','Y','2025-10-23 00:00:00'),(72621,11,'GA15','Acquired abnormalities of cervix uteri','Y','2025-10-23 00:00:00'),(72620,11,'GA19.Z','Acquired abnormalities of broad ligament, unspecified','Y','2025-10-23 00:00:00'),(72619,11,'GA19','Acquired abnormalities of broad ligament','Y','2025-10-23 00:00:00'),(72618,11,'XE270','Acquaintance or friend','Y','2025-10-23 00:00:00'),(72617,11,'XH5T39','Acoustic neuroma','Y','2025-10-23 00:00:00'),(72616,11,'AB72.0','Acoustic neuritis','Y','2025-10-23 00:00:00'),(72615,11,'XM99Y1','Aconitum plant','Y','2025-10-23 00:00:00'),(72613,11,'XM2WR7','Aconitine','Y','2025-10-23 00:00:00'),(72614,11,'XM3VB6','Aconitum ferox plant','Y','2025-10-23 00:00:00'),(72612,11,'ED81.1','Acneform reactions to halogenated aromatic hydrocarbons','Y','2025-10-23 00:00:00'),(72611,11,'ED81','Acneform inflammatory disorders','Y','2025-10-23 00:00:00'),(72610,11,'ED80.Z','Acne, unspecified','Y','2025-10-23 00:00:00'),(72609,11,'ED80.5','Acne scarring','Y','2025-10-23 00:00:00'),(72608,11,'EH67.Z','Acne or acneform reactions attributable to drugs, unspecified','Y','2025-10-23 00:00:00'),(72607,11,'EH67','Acne or acneform reactions attributable to drugs','Y','2025-10-23 00:00:00'),(72606,11,'ED80.40','Acne fulminans','Y','2025-10-23 00:00:00'),(72605,11,'ED80.41','Acne conglobata','Y','2025-10-23 00:00:00'),(72604,11,'ED80','Acne','Y','2025-10-23 00:00:00'),(72603,11,'XM2PE9','Aclidinium bromide','Y','2025-10-23 00:00:00'),(72602,11,'XM3V06','Aclatonium napadisilate','Y','2025-10-23 00:00:00'),(72601,11,'XM1VB7','Aclarubicin','Y','2025-10-23 00:00:00'),(72600,11,'XM2M63','Acitretin','Y','2025-10-23 00:00:00'),(72599,11,'XM6QT0','Acipimox','Y','2025-10-23 00:00:00'),(72598,11,'MG50.0Z','Acinetobacter resistant to unspecified antibiotic','Y','2025-10-23 00:00:00'),(72597,11,'MG50.0Y','Acinetobacter resistant to other antibiotic','Y','2025-10-23 00:00:00'),(72596,11,'XN2QH','Acinetobacter pittii','Y','2025-10-23 00:00:00'),(72595,11,'XN0DS','Acinetobacter nosocomialis','Y','2025-10-23 00:00:00'),(72594,11,'XN5YN','Acinetobacter junii','Y','2025-10-23 00:00:00'),(72593,11,'XN8LS','Acinetobacter baumannii','Y','2025-10-23 00:00:00'),(72592,11,'XN25B','Acinetobacter','Y','2025-10-23 00:00:00'),(72591,11,'XH2SK9','Acinar cell tumour','Y','2025-10-23 00:00:00'),(72590,11,'XH99S4','Acinar cell cystadenocarcinoma','Y','2025-10-23 00:00:00'),(72589,11,'XH3PG9','Acinar cell carcinoma','Y','2025-10-23 00:00:00'),(72588,11,'XH96Q1','Acinar cell adenoma','Y','2025-10-23 00:00:00'),(72587,11,'XH0F68','Acinar adenocarcinoma of the lung','Y','2025-10-23 00:00:00'),(72586,11,'XH4PB1','Acinar adenocarcinoma of prostate','Y','2025-10-23 00:00:00'),(72585,11,'5C73.Z','Acidosis, unspecified','Y','2025-10-23 00:00:00'),(72584,11,'5C73','Acidosis','Y','2025-10-23 00:00:00'),(72583,11,'XH2QZ6','Acidophil carcinoma','Y','2025-10-23 00:00:00'),(72582,11,'XH9574','Acidophil adenoma','Y','2025-10-23 00:00:00'),(72581,11,'DA41.2','Acid hypersecretion','Y','2025-10-23 00:00:00'),(72580,11,'XM3MC4','Aciclovir','Y','2025-10-23 00:00:00'),(72579,11,'LD24.00','Achondroplasia','Y','2025-10-23 00:00:00'),(72578,11,'LD24.50','Achondrogenesis','Y','2025-10-23 00:00:00'),(72577,11,'DA41.3','Achlorhydria','Y','2025-10-23 00:00:00'),(72576,11,'XA8BK1','Achilles tendon','Y','2025-10-23 00:00:00'),(72575,11,'LB99.6','Acheiria','Y','2025-10-23 00:00:00'),(72574,11,'DA21.0','Achalasia','Y','2025-10-23 00:00:00'),(72573,11,'XM1RU4','Acetylsulfamethoxypyridazine','Y','2025-10-23 00:00:00'),(72572,11,'XM9023','Acetylsalicylic acid topical','Y','2025-10-23 00:00:00'),(72571,11,'XM2XD8','Acetylphenylhydrazine','Y','2025-10-23 00:00:00'),(72570,11,'XM4JD8','Acetylpheneturide','Y','2025-10-23 00:00:00'),(72569,11,'XM2U21','Acetylleucine','Y','2025-10-23 00:00:00'),(72568,11,'XM4G06','Acetylicsalicylic acid','Y','2025-10-23 00:00:00'),(72567,11,'XM46J8','Acetylglycinamide chloral hydrate','Y','2025-10-23 00:00:00'),(72566,11,'XM4YD3','Acetylene tetrachloride vapor','Y','2025-10-23 00:00:00'),(72565,11,'XM2W36','Acetylene tetrachloride','Y','2025-10-23 00:00:00'),(72564,11,'XM7JZ1','Acetylene dichloride','Y','2025-10-23 00:00:00'),(72563,11,'XM3FZ1','Acetylene','Y','2025-10-23 00:00:00'),(72562,11,'XM79K2','Acetyldihydrocodeinone','Y','2025-10-23 00:00:00'),(72561,11,'XM3DS6','Acetyldihydrocodeine','Y','2025-10-23 00:00:00'),(72560,11,'XM1640','Acetyldigoxin','Y','2025-10-23 00:00:00'),(72559,11,'XM0QK0','Acetyldigitoxin','Y','2025-10-23 00:00:00'),(72558,11,'XM7372','Acetylcysteine','Y','2025-10-23 00:00:00'),(72557,11,'XM9KS5','Acetylcholine ophthalmic preparation','Y','2025-10-23 00:00:00'),(72556,11,'XM3GM3','Acetylcholine derivative','Y','2025-10-23 00:00:00'),(72555,11,'XM1EC3','Acetylcholine chloride','Y','2025-10-23 00:00:00'),(72554,11,'XM77H2','Acetylcarnitine','Y','2025-10-23 00:00:00'),(72553,11,'XM7594','Acetyl chloride','Y','2025-10-23 00:00:00'),(72552,11,'XM2X70','Acetyl bromide','Y','2025-10-23 00:00:00'),(72551,11,'XM50Y6','Acetrizoic acid','Y','2025-10-23 00:00:00'),(72550,11,'XM1LT9','Acetoxolone','Y','2025-10-23 00:00:00'),(72549,11,'XM3070','Acetosulfone sodium','Y','2025-10-23 00:00:00'),(72548,11,'XM3PK7','Acetorphine','Y','2025-10-23 00:00:00'),(72547,11,'XM0AM0','Acetophenone','Y','2025-10-23 00:00:00'),(72546,11,'XM3EY1','Acetophenazine','Y','2025-10-23 00:00:00'),(72545,11,'MF90','Acetonuria','Y','2025-10-23 00:00:00'),(72544,11,'XM6XW9','Acetonitrile','Y','2025-10-23 00:00:00'),(72543,11,'XM7U59','Acetone','Y','2025-10-23 00:00:00'),(72542,11,'XM0M37','Acetomenaphthone','Y','2025-10-23 00:00:00'),(72541,11,'XM5549','Acetohydroxamic acid','Y','2025-10-23 00:00:00'),(72540,11,'XM60R0','Acetohexamide','Y','2025-10-23 00:00:00'),(72539,11,'XM34D2','Acetic anhydride','Y','2025-10-23 00:00:00'),(72538,11,'XM4B01','Acetic acid with sodium acetate (ointment)','Y','2025-10-23 00:00:00'),(72537,11,'XM4KV4','Acetic acid medicinal','Y','2025-10-23 00:00:00'),(72536,11,'XM6777','Acetic acid irrigating solution','Y','2025-10-23 00:00:00'),(72535,11,'XM6QH4','Acetic acid ester','Y','2025-10-23 00:00:00'),(72534,11,'XM83Z7','Acetic acid ENT agent','Y','2025-10-23 00:00:00'),(72532,11,'XM3UQ2','Acetiamine','Y','2025-10-23 00:00:00'),(72533,11,'XM74U4','Acetic acid derivatives and related substances','Y','2025-10-23 00:00:00'),(72531,11,'XM9X81','Acetazolamide','Y','2025-10-23 00:00:00'),(72530,11,'XM3Y85','Acetarsol','Y','2025-10-23 00:00:00'),(72529,11,'XM45S5','Acetanilide','Y','2025-10-23 00:00:00'),(72528,11,'XM24R8','Acetaminosalol','Y','2025-10-23 00:00:00'),(72527,11,'XM5DJ7','Acetaminophen','Y','2025-10-23 00:00:00'),(72526,11,'XM5Q94','Acetaldehyde vapor','Y','2025-10-23 00:00:00'),(72525,11,'XM4LM8','Acetaldehyde','Y','2025-10-23 00:00:00'),(72524,11,'XM50A4','Acetal','Y','2025-10-23 00:00:00'),(72523,11,'XA6Z32','Acetabulum','Y','2025-10-23 00:00:00'),(72522,11,'XA61E8','Acetabular branch','Y','2025-10-23 00:00:00'),(72521,11,'XM91Z9','Acesulfamethoxypyridazine','Y','2025-10-23 00:00:00'),(72520,11,'XM8LW2','Acepromazine','Y','2025-10-23 00:00:00'),(72519,11,'XM1719','Acepifylline','Y','2025-10-23 00:00:00'),(72518,11,'LA00.2','Acephaly','Y','2025-10-23 00:00:00'),(72517,11,'XM6QR1','Acenocoumarol','Y','2025-10-23 00:00:00'),(72515,11,'XM5CY8','Acemorphan','Y','2025-10-23 00:00:00'),(72516,11,'XM0TQ8','Aceneuramic acid','Y','2025-10-23 00:00:00'),(72513,11,'XM5SD1','Acefylline piperazine','Y','2025-10-23 00:00:00'),(72514,11,'XM3458','Acemetacin','Y','2025-10-23 00:00:00'),(72510,11,'XM4AJ3','Aceclidine','Y','2025-10-23 00:00:00'),(72511,11,'XM5W40','Aceclofenac','Y','2025-10-23 00:00:00'),(72512,11,'XM19U1','Acedapsone','Y','2025-10-23 00:00:00'),(72507,11,'QE00','Acculturation difficulty','Y','2025-10-23 00:00:00'),(72508,11,'XM0V36','Acebutolol','Y','2025-10-23 00:00:00'),(72509,11,'XM5V35','Acecarbromal','Y','2025-10-23 00:00:00'),(72505,11,'XA8WJ3','Accessory saphenous vein','Y','2025-10-23 00:00:00'),(72506,11,'XA3523','Accessory sinuses','Y','2025-10-23 00:00:00'),(72503,11,'BC62','Accessory pathway','Y','2025-10-23 00:00:00'),(72504,11,'LB73.12','Accessory rib','Y','2025-10-23 00:00:00'),(72501,11,'LB45.4','Accessory ovary','Y','2025-10-23 00:00:00'),(72502,11,'LB21.2','Accessory pancreas','Y','2025-10-23 00:00:00'),(72500,11,'XA55J8','Accessory obturator nerve','Y','2025-10-23 00:00:00'),(72499,11,'LB63','Accessory nipple','Y','2025-10-23 00:00:00'),(72498,11,'XA2M45','Accessory nerve','Y','2025-10-23 00:00:00'),(72497,11,'XA8YX3','Accessory meningeal artery','Y','2025-10-23 00:00:00'),(72496,11,'LA75.0','Accessory lobe of lung','Y','2025-10-23 00:00:00'),(72495,11,'LB30.5','Accessory kidney','Y','2025-10-23 00:00:00'),(72494,11,'XE7N5','Accessory incompatibile','Y','2025-10-23 00:00:00'),(72493,11,'XA6DM9','Accessory hemiazygos vein','Y','2025-10-23 00:00:00'),(72492,11,'LB45.7','Accessory fallopian tube','Y','2025-10-23 00:00:00'),(72491,11,'XA0QT1','Accessory cephalic vein','Y','2025-10-23 00:00:00'),(72490,11,'LB20.24','Accessory bile duct','Y','2025-10-23 00:00:00'),(72488,11,'XE3UX','Access port component of medical device','Y','2025-10-23 00:00:00'),(72489,11,'LA24','Accessory auricle','Y','2025-10-23 00:00:00'),(72486,11,'XM9JV9','Acarbose','Y','2025-10-23 00:00:00'),(72487,11,'XM6372','Acaricide, not elsewhere classified','Y','2025-10-23 00:00:00'),(72485,11,'ED51.0Z','Acanthosis nigricans, unspecified','Y','2025-10-23 00:00:00'),(72484,11,'ED51.0','Acanthosis nigricans','Y','2025-10-23 00:00:00'),(72483,11,'1F50','Acanthamoebiasis','Y','2025-10-23 00:00:00'),(72482,11,'XN0HM','Acanthamoeba','Y','2025-10-23 00:00:00'),(72481,11,'XM9T01','Acamprosate','Y','2025-10-23 00:00:00'),(72480,11,'MB4B.2','Acalculia','Y','2025-10-23 00:00:00'),(72479,11,'XM09W7','Acalabrutinib','Y','2025-10-23 00:00:00'),(72478,11,'XM2UJ1','Acadesine','Y','2025-10-23 00:00:00'),(72477,11,'XE5J3','Abuse','Y','2025-10-23 00:00:00'),(72476,11,'MG43.2','Abulia','Y','2025-10-23 00:00:00'),(72475,11,'XD5TA3','Absorption filters and columns','Y','2025-10-23 00:00:00'),(72474,11,'XE8XD','Absorber component of medical device','Y','2025-10-23 00:00:00'),(72473,11,'XM3RF2','Absorbable gelatin sponge','Y','2025-10-23 00:00:00'),(72472,11,'XM8HG4','Absolute alcohol','Y','2025-10-23 00:00:00'),(72471,11,'GC50.1Z','Absent or diminished bladder sensation, unspecified','Y','2025-10-23 00:00:00'),(72470,11,'GC50.10','Absent or diminished bladder sensation associated with pelvic organ prolapse','Y','2025-10-23 00:00:00'),(72469,11,'GC50.1','Absent or diminished bladder sensation','Y','2025-10-23 00:00:00'),(72468,11,'LB61','Absent nipple','Y','2025-10-23 00:00:00'),(72467,11,'ME03.1','Absent bowel sounds','Y','2025-10-23 00:00:00'),(72466,11,'8A66.10','Absence status epilepticus','Y','2025-10-23 00:00:00'),(72465,11,'8A68.2','Absence seizures, typical','Y','2025-10-23 00:00:00'),(72464,11,'8A68.1','Absence seizures, atypical','Y','2025-10-23 00:00:00'),(72463,11,'LB40.0','Absence of vulva','Y','2025-10-23 00:00:00'),(72462,11,'LB42.0','Absence of vagina','Y','2025-10-23 00:00:00'),(72461,11,'QE60','Absence of family member','Y','2025-10-23 00:00:00'),(72460,11,'LB00.1','Absence of diaphragm','Y','2025-10-23 00:00:00'),(72459,11,'GA00.2','Abscess of vulva','Y','2025-10-23 00:00:00'),(72458,11,'CA0K.Z','Abscess of upper respiratory tract, unspecified','Y','2025-10-23 00:00:00'),(72457,11,'CA0K','Abscess of upper respiratory tract','Y','2025-10-23 00:00:00'),(72456,11,'4B40.1','Abscess of thymus','Y','2025-10-23 00:00:00'),(72455,11,'1D03.31','Abscess of the corpus callosum','Y','2025-10-23 00:00:00'),(72454,11,'3B81.71','Abscess of spleen','Y','2025-10-23 00:00:00'),(72453,11,'DA04.3','Abscess of salivary gland','Y','2025-10-23 00:00:00'),(72452,11,'GA91.1','Abscess of prostate','Y','2025-10-23 00:00:00'),(72451,11,'DA0C.4','Abscess of periodontium','Y','2025-10-23 00:00:00'),(72450,11,'CA43.3','Abscess of mediastinum','Y','2025-10-23 00:00:00'),(72449,11,'CA43.2','Abscess of lung without pneumonia','Y','2025-10-23 00:00:00'),(72448,11,'CA43.1','Abscess of lung with pneumonia','Y','2025-10-23 00:00:00'),(72447,11,'CA43.Z','Abscess of lung or mediastinum, unspecified','Y','2025-10-23 00:00:00'),(72446,11,'CA43','Abscess of lung or mediastinum','Y','2025-10-23 00:00:00'),(72445,11,'DB90.0','Abscess of liver','Y','2025-10-23 00:00:00'),(72444,11,'9A01.1','Abscess of eyelid','Y','2025-10-23 00:00:00'),(72443,11,'AA00','Abscess of external ear','Y','2025-10-23 00:00:00'),(72442,11,'9A60.31','Abscess of conjunctiva','Y','2025-10-23 00:00:00'),(72441,11,'JB45.0','Abscess of breast associated with childbirth','Y','2025-10-23 00:00:00'),(72440,11,'GA03.0','Abscess of Bartholin gland','Y','2025-10-23 00:00:00'),(72439,11,'DB70.0Z','Abscess of anal regions, unspecified','Y','2025-10-23 00:00:00'),(72438,11,'DB70.0','Abscess of anal regions','Y','2025-10-23 00:00:00'),(72437,11,'SB6Z','Abscess disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(72436,11,'XM98Y1','Abrus precatorius plant','Y','2025-10-23 00:00:00'),(72435,11,'XM0A16','Abrocitinib','Y','2025-10-23 00:00:00'),(72434,11,'ND11.5','Abrasion of toe','Y','2025-10-23 00:00:00'),(72433,11,'NA20.0','Abrasion of throat','Y','2025-10-23 00:00:00'),(72432,11,'NA80.5','Abrasion of thorax','Y','2025-10-23 00:00:00'),(72431,11,'NC70.2','Abrasion of thigh','Y','2025-10-23 00:00:00'),(72430,11,'DA08.11','Abrasion of teeth','Y','2025-10-23 00:00:00'),(72429,11,'NC10.0','Abrasion of shoulder or upper arm','Y','2025-10-23 00:00:00'),(72428,11,'NA00.00','Abrasion of scalp','Y','2025-10-23 00:00:00'),(72427,11,'NA00.6','Abrasion of other or unspecified sites of head','Y','2025-10-23 00:00:00'),(72426,11,'NC90.2','Abrasion of other or unspecified parts of lower leg','Y','2025-10-23 00:00:00'),(72425,11,'NC30.2','Abrasion of other or unspecified parts of forearm','Y','2025-10-23 00:00:00'),(72424,11,'ND11.7','Abrasion of other or unspecified parts of foot','Y','2025-10-23 00:00:00'),(72423,11,'NB50.0','Abrasion of lower back or pelvis','Y','2025-10-23 00:00:00'),(72422,11,'NC90.0','Abrasion of knee','Y','2025-10-23 00:00:00'),(72421,11,'NC70.0','Abrasion of hip','Y','2025-10-23 00:00:00'),(72420,11,'NC51.00','Abrasion of finger or thumb','Y','2025-10-23 00:00:00'),(72419,11,'NA00.10','Abrasion of eyelid or periocular area','Y','2025-10-23 00:00:00'),(72418,11,'NB50.4','Abrasion of external genital organs','Y','2025-10-23 00:00:00'),(72417,11,'NC30.0','Abrasion of elbow','Y','2025-10-23 00:00:00'),(72416,11,'NA80.0','Abrasion of breast','Y','2025-10-23 00:00:00'),(72415,11,'ND11.0','Abrasion of ankle','Y','2025-10-23 00:00:00'),(72414,11,'NB50.2','Abrasion of abdominal wall','Y','2025-10-23 00:00:00'),(72413,11,'XJ652','Abrasion','Y','2025-10-23 00:00:00'),(72412,11,'XE4PB','Above-ground swimming pool, external spa, or hot tub','Y','2025-10-23 00:00:00'),(72411,11,'XE5PL','Above-ground swimming pool','Y','2025-10-23 00:00:00'),(72410,11,'XE6VD','About sports and other leisure','Y','2025-10-23 00:00:00'),(72409,11,'XE4H5','About personally-held views','Y','2025-10-23 00:00:00'),(72408,11,'XE9SP','About personal issues','Y','2025-10-23 00:00:00'),(72407,11,'XE591','About family issues','Y','2025-10-23 00:00:00'),(72406,11,'XE0Z5','About business or financial issues','Y','2025-10-23 00:00:00'),(72405,11,'JA0Z','Abortive outcome of pregnancy, unspecified','Y','2025-10-23 00:00:00'),(72404,11,'JA00','Abortion','Y','2025-10-23 00:00:00'),(72403,11,'XE6QY','Aborted charge','Y','2025-10-23 00:00:00'),(72402,11,'KA84.2','ABO isoimmunization of fetus or newborn','Y','2025-10-23 00:00:00'),(72401,11,'NE80.1','ABO incompatibility reaction','Y','2025-10-23 00:00:00'),(72400,11,'MA16.1','Abnormality of white blood cells','Y','2025-10-23 00:00:00'),(72399,11,'MB47.Z','Abnormality of tonus and reflex, unspecified','Y','2025-10-23 00:00:00'),(72398,11,'MB47','Abnormality of tonus and reflex','Y','2025-10-23 00:00:00'),(72397,11,'MA16.0Z','Abnormality of red blood cells, unspecified','Y','2025-10-23 00:00:00'),(72396,11,'MA16.0','Abnormality of red blood cells','Y','2025-10-23 00:00:00'),(72395,11,'EE10.1','Abnormality of nail surface','Y','2025-10-23 00:00:00'),(72394,11,'EE10.0','Abnormality of nail shape','Y','2025-10-23 00:00:00'),(72393,11,'MA19.2','Abnormality of globulin','Y','2025-10-23 00:00:00'),(72392,11,'MA19.1','Abnormality of alphafetoprotein','Y','2025-10-23 00:00:00'),(72391,11,'MA19.0','Abnormality of albumin','Y','2025-10-23 00:00:00'),(72390,11,'ME10','Abnormalities related to hepatobiliary system','Y','2025-10-23 00:00:00'),(72389,11,'MA19.Z','Abnormalities of unspecified plasma proteins','Y','2025-10-23 00:00:00'),(72388,11,'LA30.4','Abnormalities of size or form of teeth','Y','2025-10-23 00:00:00'),(72387,11,'MA19.Y','Abnormalities of other specified plasma proteins','Y','2025-10-23 00:00:00'),(72386,11,'MC81.Z','Abnormalities of heart beat, unspecified','Y','2025-10-23 00:00:00'),(72385,11,'MC81','Abnormalities of heart beat','Y','2025-10-23 00:00:00'),(72384,11,'MB44.Z','Abnormalities of gait and mobility, unspecified','Y','2025-10-23 00:00:00'),(72383,11,'MB44','Abnormalities of gait and mobility','Y','2025-10-23 00:00:00'),(72382,11,'JB02.Z','Abnormalities of forces of labour, unspecified','Y','2025-10-23 00:00:00'),(72381,11,'JB02','Abnormalities of forces of labour','Y','2025-10-23 00:00:00'),(72380,11,'EE41','Abnormalities of dermal elastin','Y','2025-10-23 00:00:00'),(72379,11,'MD11.Z','Abnormalities of breathing, unspecified','Y','2025-10-23 00:00:00'),(72378,11,'MD11','Abnormalities of breathing','Y','2025-10-23 00:00:00'),(72377,11,'GA20.5Z','Abnormal volume of uterine bleeding, unspecified','Y','2025-10-23 00:00:00'),(72376,11,'GA20.5','Abnormal volume of uterine bleeding','Y','2025-10-23 00:00:00'),(72375,11,'LA81','Abnormal ventricular relationships','Y','2025-10-23 00:00:00'),(72374,11,'GA2Z','Abnormal uterine or vaginal bleeding, unspecified','Y','2025-10-23 00:00:00'),(72373,11,'MF9A','Abnormal urine levels of substances chiefly nonmedicinal as to source','Y','2025-10-23 00:00:00'),(72372,11,'JA66.3','Abnormal ultrasonic finding on antenatal screening of mother','Y','2025-10-23 00:00:00'),(72371,11,'MD10','Abnormal sputum','Y','2025-10-23 00:00:00'),(72370,11,'ED64','Abnormal skin pigmentation','Y','2025-10-23 00:00:00'),(72369,11,'MA10','Abnormal serum enzyme levels','Y','2025-10-23 00:00:00'),(72368,11,'ME66.0','Abnormal sensitivity to light or UV radiation of uncertain or unspecified nature','Y','2025-10-23 00:00:00'),(72367,11,'5A43.Z','Abnormal secretion of gastrin, unspecified','Y','2025-10-23 00:00:00'),(72366,11,'5A43','Abnormal secretion of gastrin','Y','2025-10-23 00:00:00'),(72365,11,'MG7Z','Abnormal results, not elsewhere classified, unspecified','Y','2025-10-23 00:00:00'),(72364,11,'MA50','Abnormal results of thyroid function studies','Y','2025-10-23 00:00:00'),(72363,11,'MA51','Abnormal results of other endocrine function studies','Y','2025-10-23 00:00:00'),(72362,11,'MG72','Abnormal results of function studies of other organs and systems','Y','2025-10-23 00:00:00'),(72361,11,'GA20.3','Abnormal regularity of uterine bleeding','Y','2025-10-23 00:00:00'),(72360,11,'MB47.0','Abnormal reflex','Y','2025-10-23 00:00:00'),(72359,11,'MA14.10','Abnormal reaction to tuberculin test','Y','2025-10-23 00:00:00'),(72358,11,'JA66.4','Abnormal radiological finding on antenatal screening of mother','Y','2025-10-23 00:00:00'),(72357,11,'MB47.1','Abnormal posture','Y','2025-10-23 00:00:00'),(72356,11,'MA1A.1','Abnormal plasma viscosity','Y','2025-10-23 00:00:00'),(72355,11,'LA05.5Z','Abnormal neuronal migration, unspecified','Y','2025-10-23 00:00:00'),(72354,11,'LA05.5','Abnormal neuronal migration','Y','2025-10-23 00:00:00'),(72353,11,'MF50.Z','Abnormal micturition, unspecified','Y','2025-10-23 00:00:00'),(72352,11,'MF50','Abnormal micturition','Y','2025-10-23 00:00:00'),(72351,11,'MD40.5Z','Abnormal microbiological findings in specimens from respiratory organs and thorax, unspecified','Y','2025-10-23 00:00:00'),(72350,11,'MD40.5','Abnormal microbiological findings in specimens from respiratory organs and thorax','Y','2025-10-23 00:00:00'),(72349,11,'MG65','Abnormal microbiological findings in specimens from other organs, systems and tissues','Y','2025-10-23 00:00:00'),(72348,11,'MF75','Abnormal microbiological findings in specimens from male genital organs','Y','2025-10-23 00:00:00'),(72347,11,'MF65','Abnormal microbiological findings in specimens from female genital organs','Y','2025-10-23 00:00:00'),(72346,11,'ME20.5','Abnormal microbiological findings in specimens from digestive organs and abdominal cavity','Y','2025-10-23 00:00:00'),(72345,11,'MB70.5','Abnormal microbiological findings in cerebrospinal fluid','Y','2025-10-23 00:00:00'),(72344,11,'MF98.Z','Abnormal levels of serum electrolytes in the urine, unspecified','Y','2025-10-23 00:00:00'),(72343,11,'MF98','Abnormal levels of serum electrolytes in the urine','Y','2025-10-23 00:00:00'),(72342,11,'MA10.1','Abnormal levels of other specified serum enzymes','Y','2025-10-23 00:00:00'),(72341,11,'MA10.2','Abnormal level of unspecified serum enzyme','Y','2025-10-23 00:00:00'),(72340,11,'MD40.3','Abnormal level of substances chiefly nonmedicinal as to source in specimens from respiratory organs and thorax','Y','2025-10-23 00:00:00'),(72339,11,'MG63','Abnormal level of substances chiefly nonmedicinal as to source in specimens from other organs, systems and tissues','Y','2025-10-23 00:00:00'),(72338,11,'MF73','Abnormal level of substances chiefly nonmedicinal as to source in specimens from male genital organs','Y','2025-10-23 00:00:00'),(72337,11,'MF63','Abnormal level of substances chiefly nonmedicinal as to source in specimens from female genital organs','Y','2025-10-23 00:00:00'),(72336,11,'ME20.3','Abnormal level of substances chiefly nonmedicinal as to source in specimens from digestive organs and abdominal cavity','Y','2025-10-23 00:00:00'),(72335,11,'MB70.3','Abnormal level of substances chiefly nonmedicinal as to source in cerebrospinal fluid','Y','2025-10-23 00:00:00'),(72334,11,'MA13.Y','Abnormal level of other specified substances chiefly nonmedicinal as to source in blood, blood-forming organs and the immune system','Y','2025-10-23 00:00:00'),(72333,11,'MA13.00','Abnormal level of lead in blood','Y','2025-10-23 00:00:00'),(72332,11,'MD40.1','Abnormal level of hormones in specimens from respiratory organs and thorax','Y','2025-10-23 00:00:00'),(72331,11,'MG61','Abnormal level of hormones in specimens from other organs, systems and tissues','Y','2025-10-23 00:00:00'),(72330,11,'MF71','Abnormal level of hormones in specimens from male genital organs','Y','2025-10-23 00:00:00'),(72329,11,'MF61','Abnormal level of hormones in specimens from female genital organs','Y','2025-10-23 00:00:00'),(72328,11,'ME20.1','Abnormal level of hormones in specimens from digestive organs or abdominal cavity','Y','2025-10-23 00:00:00'),(72327,11,'MB70.1','Abnormal level of hormones in cerebrospinal fluid','Y','2025-10-23 00:00:00'),(72326,11,'MD40.0','Abnormal level of enzymes in specimens from respiratory organs and thorax','Y','2025-10-23 00:00:00'),(72325,11,'MG60','Abnormal level of enzymes in specimens from other organs, systems and tissues','Y','2025-10-23 00:00:00'),(72324,11,'MF70','Abnormal level of enzymes in specimens from male genital organs','Y','2025-10-23 00:00:00'),(72323,11,'MF60','Abnormal level of enzymes in specimens from female genital organs','Y','2025-10-23 00:00:00'),(72322,11,'ME20.0','Abnormal level of enzymes in specimens from digestive organs or abdominal cavity','Y','2025-10-23 00:00:00'),(72321,11,'MB70.0','Abnormal level of enzymes in cerebrospinal fluid','Y','2025-10-23 00:00:00'),(72320,11,'ME20.2','Abnormal level of drugs, medicaments or biological substances in specimens from digestive organs of abdominal cavity','Y','2025-10-23 00:00:00'),(72319,11,'MD40.2','Abnormal level of drugs, medicaments and biological substances in specimens from respiratory organs and thorax','Y','2025-10-23 00:00:00'),(72318,11,'MG62','Abnormal level of drugs, medicaments and biological substances in specimens from other organs, systems and tissues','Y','2025-10-23 00:00:00'),(72317,11,'MF72','Abnormal level of drugs, medicaments and biological substances in specimens from male genital organs','Y','2025-10-23 00:00:00'),(72316,11,'MF62','Abnormal level of drugs, medicaments and biological substances in specimens from female genital organs','Y','2025-10-23 00:00:00'),(72315,11,'MB70.2','Abnormal level of drugs, medicaments and biological substances in cerebrospinal fluid','Y','2025-10-23 00:00:00'),(72314,11,'MA18.1','Abnormal level of blood mineral','Y','2025-10-23 00:00:00'),(72313,11,'MG71.Z','Abnormal laboratory results, not elsewhere classified, unspecified','Y','2025-10-23 00:00:00'),(72312,11,'MG71','Abnormal laboratory results, not elsewhere classified','Y','2025-10-23 00:00:00'),(72311,11,'MB46.Z','Abnormal involuntary movements, unspecified','Y','2025-10-23 00:00:00'),(72310,11,'MB46','Abnormal involuntary movements','Y','2025-10-23 00:00:00'),(72309,11,'MD40.4','Abnormal immunological findings in specimens from respiratory organs and thorax','Y','2025-10-23 00:00:00'),(72308,11,'MG64','Abnormal immunological findings in specimens from other organs, systems and tissues','Y','2025-10-23 00:00:00'),(72307,11,'MF74','Abnormal immunological findings in specimens from male genital organs','Y','2025-10-23 00:00:00'),(72306,11,'MF64','Abnormal immunological findings in specimens from female genital organs','Y','2025-10-23 00:00:00'),(72305,11,'ME20.4','Abnormal immunological findings in specimens from digestive organs and abdominal cavity','Y','2025-10-23 00:00:00'),(72304,11,'MB70.4','Abnormal immunological findings in cerebrospinal fluid','Y','2025-10-23 00:00:00'),(72303,11,'MD40.7','Abnormal histological findings in specimens from respiratory organs and thorax','Y','2025-10-23 00:00:00'),(72302,11,'MG67','Abnormal histological findings in specimens from other organs, systems and tissues','Y','2025-10-23 00:00:00'),(72301,11,'MF77','Abnormal histological findings in specimens from male genital organs','Y','2025-10-23 00:00:00'),(72300,11,'MF67','Abnormal histological findings in specimens from female genital organs','Y','2025-10-23 00:00:00'),(72299,11,'ME20.7','Abnormal histological findings in specimens from digestive organs and abdominal cavity','Y','2025-10-23 00:00:00'),(72298,11,'MB70.7','Abnormal histological findings in cerebrospinal fluid','Y','2025-10-23 00:00:00'),(72297,11,'MB46.1','Abnormal head movements','Y','2025-10-23 00:00:00'),(72296,11,'DA09.5','Abnormal hard tissue formation in pulp','Y','2025-10-23 00:00:00'),(72295,11,'JA66.0','Abnormal haematological finding on antenatal screening of mother','Y','2025-10-23 00:00:00'),(72294,11,'MA18.00','Abnormal glucose tolerance test','Y','2025-10-23 00:00:00'),(72293,11,'DA41.0Z','Abnormal gastric motility, unspecified','Y','2025-10-23 00:00:00'),(72292,11,'DA41.0','Abnormal gastric motility','Y','2025-10-23 00:00:00'),(72291,11,'GA20.1Z','Abnormal frequency of uterine bleeding, unspecified','Y','2025-10-23 00:00:00'),(72290,11,'GA20.1','Abnormal frequency of uterine bleeding','Y','2025-10-23 00:00:00'),(72289,11,'XC8W','Abnormal flexion response to painful or noxious stimulation','Y','2025-10-23 00:00:00'),(72288,11,'MG71.0','Abnormal findings on neonatal screening','Y','2025-10-23 00:00:00'),(72287,11,'MF9B','Abnormal findings on microbiological examination of urine','Y','2025-10-23 00:00:00'),(72286,11,'MF9C','Abnormal findings on cytological and histological examination of urine','Y','2025-10-23 00:00:00'),(72285,11,'MA18.Z','Abnormal findings of blood chemistry, unspecified','Y','2025-10-23 00:00:00'),(72284,11,'GA20.4','Abnormal duration of uterine bleeding','Y','2025-10-23 00:00:00'),(72283,11,'MG70','Abnormal diagnostic imaging results not elsewhere classified','Y','2025-10-23 00:00:00'),(72282,11,'MD40.6','Abnormal cytological findings in specimens from respiratory organs and thorax','Y','2025-10-23 00:00:00'),(72281,11,'MG66','Abnormal cytological findings in specimens from other organs, systems and tissues','Y','2025-10-23 00:00:00'),(72280,11,'MF76','Abnormal cytological findings in specimens from male genital organs','Y','2025-10-23 00:00:00'),(72279,11,'MF66.Z','Abnormal cytological findings in specimens from female genital organs, unspecified','Y','2025-10-23 00:00:00'),(72278,11,'MF66','Abnormal cytological findings in specimens from female genital organs','Y','2025-10-23 00:00:00'),(72277,11,'ME20.6','Abnormal cytological findings in specimens from digestive organs and abdominal cavity','Y','2025-10-23 00:00:00'),(72276,11,'MB70.6','Abnormal cytological findings in cerebrospinal fluid','Y','2025-10-23 00:00:00'),(72275,11,'JA66.2','Abnormal cytological finding on antenatal screening of mother','Y','2025-10-23 00:00:00'),(72274,11,'MA18.3','Abnormal coagulation profile','Y','2025-10-23 00:00:00'),(72273,11,'JA66.5','Abnormal chromosomal or genetic finding on antenatal screening of mother','Y','2025-10-23 00:00:00'),(72272,11,'MF78','Abnormal chromosomal findings in specimens from male genital organs','Y','2025-10-23 00:00:00'),(72271,11,'MF68','Abnormal chromosomal findings in specimens from female genital organs','Y','2025-10-23 00:00:00'),(72270,11,'MF66.0','Abnormal cervix smear','Y','2025-10-23 00:00:00'),(72269,11,'ME03.Z','Abnormal bowel sounds, unspecified','Y','2025-10-23 00:00:00'),(72268,11,'ME03','Abnormal bowel sounds','Y','2025-10-23 00:00:00'),(72267,11,'MC80.Z','Abnormal blood-pressure reading, without diagnosis, unspecified','Y','2025-10-23 00:00:00'),(72266,11,'MC80','Abnormal blood-pressure reading, without diagnosis','Y','2025-10-23 00:00:00'),(72265,11,'JA66.1','Abnormal biochemical finding on antenatal screening of mother','Y','2025-10-23 00:00:00'),(72264,11,'MA18.2','Abnormal arterial blood-gas level','Y','2025-10-23 00:00:00'),(72263,11,'XM1517','Abiraterone','Y','2025-10-23 00:00:00'),(72262,11,'XM88U7','Abietic acid','Y','2025-10-23 00:00:00'),(72261,11,'DA08.13','Abfraction','Y','2025-10-23 00:00:00'),(72260,11,'XM4RN7','Abetimus','Y','2025-10-23 00:00:00'),(72259,11,'XM8E34','Abemaciclib','Y','2025-10-23 00:00:00'),(72258,11,'XA0UY5','Abductor pollicis longus tendon','Y','2025-10-23 00:00:00'),(72257,11,'XA7PS1','Abductor pollicis longus muscle','Y','2025-10-23 00:00:00'),(72256,11,'XA7YE1','Abductor pollicis brevis tendon','Y','2025-10-23 00:00:00'),(72255,11,'XA0Z05','Abductor pollicis brevis muscle','Y','2025-10-23 00:00:00'),(72254,11,'XA14Z8','Abductor hallucis tendon','Y','2025-10-23 00:00:00'),(72253,11,'XA7119','Abductor hallucis muscle','Y','2025-10-23 00:00:00'),(72252,11,'XA5AY5','Abductor digiti minimi tendon','Y','2025-10-23 00:00:00'),(72251,11,'XA90T3','Abductor digiti minimi muscle (hand)','Y','2025-10-23 00:00:00'),(72250,11,'XA0W07','Abductor digiti minimi muscle (foot)','Y','2025-10-23 00:00:00'),(72249,11,'XA5ZK0','Abductor digiti minimi (foot) tendon','Y','2025-10-23 00:00:00'),(72248,11,'XA4GX3','Abducens nerve','Y','2025-10-23 00:00:00'),(72247,11,'XA34B0','Abdominopelvic cavity','Y','2025-10-23 00:00:00'),(72246,11,'XA3KX0','Abdominal wall','Y','2025-10-23 00:00:00'),(72245,11,'MD81.0','Abdominal tenderness','Y','2025-10-23 00:00:00'),(72244,11,'ME02','Abdominal rigidity','Y','2025-10-23 00:00:00'),(72243,11,'JA01.0','Abdominal pregnancy','Y','2025-10-23 00:00:00'),(72242,11,'SA58','Abdominal pain disorder (TM1)','Y','2025-10-23 00:00:00'),(72241,11,'MD81','Abdominal or pelvic pain','Y','2025-10-23 00:00:00'),(72240,11,'XA0TN5','Abdominal oesophagus','Y','2025-10-23 00:00:00'),(72239,11,'XH6116','Abdominal fibromatosis','Y','2025-10-23 00:00:00'),(72238,11,'ME01','Abdominal distension','Y','2025-10-23 00:00:00'),(72237,11,'ME00','Abdominal compartment syndrome','Y','2025-10-23 00:00:00'),(72236,11,'XA9M74','Abdominal cavity','Y','2025-10-23 00:00:00'),(72235,11,'BD50.4Z','Abdominal aortic aneurysm, unspecified','Y','2025-10-23 00:00:00'),(72234,11,'BD50.41','Abdominal aortic aneurysm with rupture','Y','2025-10-23 00:00:00'),(72233,11,'BD50.40','Abdominal aortic aneurysm with perforation','Y','2025-10-23 00:00:00'),(72232,11,'BD50.4','Abdominal aortic aneurysm','Y','2025-10-23 00:00:00'),(72231,11,'XA5Z66','Abdominal aorta','Y','2025-10-23 00:00:00'),(72230,11,'1C10.1','Abdominal actinomycosis','Y','2025-10-23 00:00:00'),(72229,11,'XA6GV0','Abdomen','Y','2025-10-23 00:00:00'),(72228,11,'XM39C9','Abciximab','Y','2025-10-23 00:00:00'),(72227,11,'XM45M8','Abatacept','Y','2025-10-23 00:00:00'),(72226,11,'XM5ZS9','Abarelix','Y','2025-10-23 00:00:00'),(72225,11,'PH7A','Abandonment with undetermined intent','Y','2025-10-23 00:00:00'),(72224,11,'XE42R','Abandonment','Y','2025-10-23 00:00:00'),(72223,11,'XM8TB9','Abametapir','Y','2025-10-23 00:00:00'),(72222,11,'XM35P4','Abacavir','Y','2025-10-23 00:00:00'),(72221,11,'5D00.1','AA amyloidosis','Y','2025-10-23 00:00:00'),(72220,11,'XS0J','A Remission / Free of disease','Y','2025-10-23 00:00:00'),(72219,11,'XS5P','9 Not applicable','Y','2025-10-23 00:00:00'),(72218,11,'XM6M61','8-Aminoquinoline drugs','Y','2025-10-23 00:00:00'),(72217,11,'XM6000','6-Methylcoumarin','Y','2025-10-23 00:00:00'),(72216,11,'XE0V3','4x4 vehicle as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(72215,11,'XE38X','4x4 as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(72213,11,'XM2XY6','4-Aminobutyric acid','Y','2025-10-23 00:00:00'),(72214,11,'XM2H17','4-dimethylaminophenol','Y','2025-10-23 00:00:00'),(72212,11,'LD2A.1','46,XY gonadal dysgenesis','Y','2025-10-23 00:00:00'),(72211,11,'LD2A.4','46,XY disorder of sex development due to androgen resistance','Y','2025-10-23 00:00:00'),(72210,11,'LD2A.3','46,XY disorder of sex development due to a defect in testosterone metabolism','Y','2025-10-23 00:00:00'),(72209,11,'LB45.1','46,XX gonadal dysgenesis','Y','2025-10-23 00:00:00'),(72208,11,'5A71.1','46,XX disorders of sex development induced by androgens of maternal origin','Y','2025-10-23 00:00:00'),(72207,11,'5A71.0Z','46,XX disorders of sex development induced by androgens of fetal origin, unspecified','Y','2025-10-23 00:00:00'),(72206,11,'5A71.0','46,XX disorders of sex development induced by androgens of fetal origin','Y','2025-10-23 00:00:00'),(72205,11,'XM2EK8','4,4','Y','2025-10-23 00:00:00'),(72204,11,'XS91','4 Complete problem','Y','2025-10-23 00:00:00'),(72203,11,'XM9F85','3-Nitropropionic acid','Y','2025-10-23 00:00:00'),(72202,11,'XS9D','3 Severe problem','Y','2025-10-23 00:00:00'),(72201,11,'XM0BY4','2-Hydroxyethylmethacrylate','Y','2025-10-23 00:00:00'),(72200,11,'XM1AH4','2-Bromo-2-nitropropane-1,3-diol','Y','2025-10-23 00:00:00'),(72199,11,'XM0BT5','2-amino-1-phenylethanol derivatives','Y','2025-10-23 00:00:00'),(72198,11,'XM9CD8','2,4-Dichlorophenoxyacetic acid','Y','2025-10-23 00:00:00'),(72197,11,'XM65Q8','2,4,6-Trianilino-p-(carbo-2-ethylhexyl-1-oxi)-1,3,5-triazine','Y','2025-10-23 00:00:00'),(72196,11,'XM9MT5','2,4,5-Trichlorophenoxyacetic acid','Y','2025-10-23 00:00:00'),(72195,11,'XM4D35','2-(4-Diethylamino-2-hydroxybenzoyl)-benzoic acid hexylester','Y','2025-10-23 00:00:00'),(72194,11,'XM8JJ2','2-(4-chlorphenoxy)-ethanol','Y','2025-10-23 00:00:00'),(72193,11,'XS8T','2 Moderate problem','Y','2025-10-23 00:00:00'),(72191,11,'XM9QZ5','13C-urea','Y','2025-10-23 00:00:00'),(72192,11,'XM39E2','14-hydroxydihydro-morphinone','Y','2025-10-23 00:00:00'),(72190,11,'XM1992','1,1,2 trichloroethane','Y','2025-10-23 00:00:00'),(72189,11,'XS6Y','1 Mild problem','Y','2025-10-23 00:00:00'),(72188,11,'XS5C','0 No problem','Y','2025-10-23 00:00:00'),(72187,11,'XM2WF7','(2-benzhydryloxyethyl)diethyl-methylammonium iodide','Y','2025-10-23 00:00:00'),(72186,11,'XH2P15','?Mesenchymal hamartoma','Y','2025-10-23 00:00:00'),(72185,11,'XH9J01','?Benign ??Triton tumour','Y','2025-10-23 00:00:00'),(91076,11,'XM3DL8','Mefenorex','Y','2025-10-23 00:00:00'),(91077,11,'XM50J2','Mefloquine','Y','2025-10-23 00:00:00'),(91078,11,'XM1DG9','Mefruside','Y','2025-10-23 00:00:00'),(91079,11,'DB32.2','Megacolon','Y','2025-10-23 00:00:00'),(91080,11,'DB32.2Z','Megacolon, unspecified','Y','2025-10-23 00:00:00'),(91081,11,'LB31.7','Megacystis-megaureter','Y','2025-10-23 00:00:00'),(91082,11,'XM7DW4','Megahallucinogen','Y','2025-10-23 00:00:00'),(91083,11,'XA3EA5','Megakaryoblast','Y','2025-10-23 00:00:00'),(91084,11,'LA05.1','Megalencephaly','Y','2025-10-23 00:00:00'),(91085,11,'DB11.0','Megaloappendix','Y','2025-10-23 00:00:00'),(91086,11,'3A01','Megaloblastic anaemia due to vitamin B12 deficiency','Y','2025-10-23 00:00:00'),(91087,11,'3A01.Z','Megaloblastic anaemia due to vitamin B12 deficiency, unspecified','Y','2025-10-23 00:00:00'),(91088,11,'LA13.74','Megalopapilla','Y','2025-10-23 00:00:00'),(91089,11,'5B90.3','Megavitamin-B6 syndrome','Y','2025-10-23 00:00:00'),(91090,11,'XM7KS3','Megestrol','Y','2025-10-23 00:00:00'),(91091,11,'XM3344','Megestrol and ethinylestradiol','Y','2025-10-23 00:00:00'),(91092,11,'XM0FD1','Meglitinide','Y','2025-10-23 00:00:00'),(91093,11,'XM2TP0','Meglumine antimonate','Y','2025-10-23 00:00:00'),(91094,11,'XM44B6','Meglutol','Y','2025-10-23 00:00:00'),(91095,11,'XA9D80','Meibomian gland','Y','2025-10-23 00:00:00'),(91096,11,'9A02.4','Meibomian gland dysfunction','Y','2025-10-23 00:00:00'),(91097,11,'2F32.2','Meigs\' Syndrome','Y','2025-10-23 00:00:00'),(91098,11,'XA8Z10','Meissner plexus','Y','2025-10-23 00:00:00'),(91099,11,'XM0M49','Meladrazine','Y','2025-10-23 00:00:00'),(91100,11,'ME24.A4','Melaena','Y','2025-10-23 00:00:00'),(91101,11,'XM1D58','Melagatran','Y','2025-10-23 00:00:00'),(91102,11,'XM53R5','Melaleuca alternifolia oil','Y','2025-10-23 00:00:00'),(91103,11,'XM7VP7','Melanizing agents','Y','2025-10-23 00:00:00'),(91104,11,'XM7399','Melanocyte-stimulating hormone','Y','2025-10-23 00:00:00'),(91105,11,'XH7CM2','Melanocytic matricoma','Y','2025-10-23 00:00:00'),(91106,11,'2F72.2','Melanocytic naevus with severe melanocytic dysplasia','Y','2025-10-23 00:00:00'),(91107,11,'2F20.Z','Melanocytic naevus, unspecified','Y','2025-10-23 00:00:00'),(91108,11,'XH02Z5','Melanocytoma, NOS','Y','2025-10-23 00:00:00'),(91109,11,'9B71.40','Melanoma associated retinopathy','Y','2025-10-23 00:00:00'),(91110,11,'XH3XX3','Melanoma in situ','Y','2025-10-23 00:00:00'),(91111,11,'2E63','Melanoma in situ neoplasms','Y','2025-10-23 00:00:00'),(91112,11,'2E63.Y','Melanoma in situ neoplasms, other specified site','Y','2025-10-23 00:00:00'),(91113,11,'2E63.Z','Melanoma in situ neoplasms, unspecified site','Y','2025-10-23 00:00:00'),(91114,11,'2E63.1','Melanoma in situ of conjunctiva','Y','2025-10-23 00:00:00'),(91115,11,'2E63.0','Melanoma in situ of skin','Y','2025-10-23 00:00:00'),(91116,11,'2E63.0Z','Melanoma in situ of skin, unspecified','Y','2025-10-23 00:00:00'),(91117,11,'2C00.1','Melanoma of anus or anal canal','Y','2025-10-23 00:00:00'),(91118,11,'2D05.0','Melanoma of choroid','Y','2025-10-23 00:00:00'),(91119,11,'2D06.4','Melanoma of ciliary body','Y','2025-10-23 00:00:00'),(91120,11,'2D00.0','Melanoma of conjunctiva','Y','2025-10-23 00:00:00'),(91121,11,'2D01.0','Melanoma of cornea','Y','2025-10-23 00:00:00'),(91122,11,'2D07.2','Melanoma of iris','Y','2025-10-23 00:00:00'),(91123,11,'2C20.2','Melanoma of nasal cavity','Y','2025-10-23 00:00:00'),(91124,11,'2C81.1','Melanoma of penis','Y','2025-10-23 00:00:00'),(91125,11,'2C30','Melanoma of skin','Y','2025-10-23 00:00:00'),(91126,11,'2C30.Z','Melanoma of skin, unspecified','Y','2025-10-23 00:00:00'),(91127,11,'2C71.1','Melanoma of vagina','Y','2025-10-23 00:00:00'),(91128,11,'2C70.1','Melanoma of vulva','Y','2025-10-23 00:00:00'),(91129,11,'XM99P5','Melanoma vaccine','Y','2025-10-23 00:00:00'),(91130,11,'XH3DN1','Melanoma, meningeal','Y','2025-10-23 00:00:00'),(91131,11,'2C22.3','Melanomas of accessory sinuses','Y','2025-10-23 00:00:00'),(91132,11,'EE11.0','Melanonychia','Y','2025-10-23 00:00:00'),(91133,11,'XH4B47','Melanotic medulloblastoma','Y','2025-10-23 00:00:00'),(91134,11,'XH5C30','Melanotic MPNST','Y','2025-10-23 00:00:00'),(91135,11,'XH6C72','Melanotic neuroectodermal tumour','Y','2025-10-23 00:00:00'),(91136,11,'XH2GD5','Melanotic neurofibroma','Y','2025-10-23 00:00:00'),(91137,11,'XH3NT0','Melanotic psammomatous MPNST','Y','2025-10-23 00:00:00'),(91138,11,'XH2637','Melanotic schwannoma','Y','2025-10-23 00:00:00'),(91139,11,'XM5NQ7','Melarsonyl potassium','Y','2025-10-23 00:00:00'),(91140,11,'XM4UC9','Melarsoprol','Y','2025-10-23 00:00:00'),(91141,11,'ED60.1','Melasma','Y','2025-10-23 00:00:00'),(91142,11,'XM7R38','Melatonin','Y','2025-10-23 00:00:00'),(91143,11,'XM0GA0','Melatonin receptor agonists','Y','2025-10-23 00:00:00'),(91144,11,'XM1HP8','Meldonium','Y','2025-10-23 00:00:00'),(91145,11,'XM1JZ7','Melevodopa','Y','2025-10-23 00:00:00'),(91146,11,'XM0D22','Melevodopa and Decarboxylase inhibitor','Y','2025-10-23 00:00:00'),(91147,11,'XM1TB2','Melia azedarach plant','Y','2025-10-23 00:00:00'),(91148,11,'1C42','Melioidosis','Y','2025-10-23 00:00:00'),(91149,11,'XM1575','Melitracen','Y','2025-10-23 00:00:00'),(91150,11,'XM2WD3','Mellaril','Y','2025-10-23 00:00:00'),(91151,11,'XM1XY0','Meloxicam','Y','2025-10-23 00:00:00'),(91152,11,'XM26W9','Melperone','Y','2025-10-23 00:00:00'),(91153,11,'XM2VC7','Melphalan','Y','2025-10-23 00:00:00'),(91154,11,'XM0DA1','Melphalan flufenamide','Y','2025-10-23 00:00:00'),(91155,11,'XE8ZQ','Melted','Y','2025-10-23 00:00:00'),(91156,11,'XM3BR4','Memantine','Y','2025-10-23 00:00:00'),(91157,11,'XE9VQ','Membrane component of medical device','Y','2025-10-23 00:00:00'),(91158,11,'XA75T3','Membranous urethra','Y','2025-10-23 00:00:00'),(91159,11,'VV03','Memory functions','Y','2025-10-23 00:00:00'),(91160,11,'VE14','Memory functions [BMDS]','Y','2025-10-23 00:00:00'),(91161,11,'VD01','Memory functions [WHODAS]','Y','2025-10-23 00:00:00'),(91162,11,'XE1JS','Memory or storage component of medical device','Y','2025-10-23 00:00:00'),(91163,11,'XM3AJ3','Menadiol','Y','2025-10-23 00:00:00'),(91164,11,'XM2JG9','Menadiol sodium sulfate','Y','2025-10-23 00:00:00'),(91165,11,'XM1KN2','Menadione','Y','2025-10-23 00:00:00'),(91166,11,'XM7MA9','Menadione sodium bisulfite','Y','2025-10-23 00:00:00'),(91167,11,'XM8912','Menaquinone','Y','2025-10-23 00:00:00'),(91168,11,'XM55W0','Menatetrenone','Y','2025-10-23 00:00:00'),(91169,11,'CA72','Mendelson syndrome','Y','2025-10-23 00:00:00'),(91170,11,'DA42.6','Menetrier disease','Y','2025-10-23 00:00:00'),(91171,11,'AB31.0','Meniere disease','Y','2025-10-23 00:00:00'),(91172,11,'XA7945','Meningeal branch of the posterior ethmoidal artery','Y','2025-10-23 00:00:00'),(91173,11,'XA3NW4','Meningeal branches of vertebral artery','Y','2025-10-23 00:00:00'),(91174,11,'XH2RY7','Meningeal melanocytoma','Y','2025-10-23 00:00:00'),(91175,11,'XH8974','Meningeal melanocytosis','Y','2025-10-23 00:00:00'),(91176,11,'XH1BP7','Meningeal melanomatosis','Y','2025-10-23 00:00:00'),(91177,11,'XH5976','Meningeal sarcomatosis','Y','2025-10-23 00:00:00'),(91178,11,'1B11.2','Meningeal tuberculoma','Y','2025-10-23 00:00:00'),(91179,11,'XA4105','Meningeal vein','Y','2025-10-23 00:00:00'),(91180,11,'XA0AK4','Meninges','Y','2025-10-23 00:00:00'),(91181,11,'XH0324','Meningioma, malignant','Y','2025-10-23 00:00:00'),(91182,11,'XH11P5','Meningioma, NOS','Y','2025-10-23 00:00:00'),(91183,11,'2A01.0','Meningiomas','Y','2025-10-23 00:00:00'),(91184,11,'2A01.0Z','Meningiomas, unspecified','Y','2025-10-23 00:00:00'),(91185,11,'MB47.6','Meningismus','Y','2025-10-23 00:00:00'),(91186,11,'1C8E.2','Meningitis due to adenovirus','Y','2025-10-23 00:00:00'),(91187,11,'1D01.10','Meningitis due to Cryptococcus neoformans','Y','2025-10-23 00:00:00'),(91188,11,'1F70.00','Meningitis due to Cysticercosis','Y','2025-10-23 00:00:00'),(91189,11,'1D01.00','Meningitis due to Haemophilus influenzae','Y','2025-10-23 00:00:00'),(91190,11,'1D80.2','Meningitis due to mumps virus','Y','2025-10-23 00:00:00'),(91191,11,'1B54','Meningitis due to Staphylococcus','Y','2025-10-23 00:00:00'),(91192,11,'1B53','Meningitis due to Streptococcus','Y','2025-10-23 00:00:00'),(91193,11,'1F53.4','Meningitis in Chagas disease','Y','2025-10-23 00:00:00'),(91194,11,'1F51.00','Meningitis in Gambiense trypanosomiasis','Y','2025-10-23 00:00:00'),(91195,11,'1F51.10','Meningitis in Rhodesiense trypanosomiasis','Y','2025-10-23 00:00:00'),(91196,11,'1C1C.2','Meningococcaemia','Y','2025-10-23 00:00:00'),(91197,11,'1C1C.2Z','Meningococcaemia, unspecified','Y','2025-10-23 00:00:00'),(91198,11,'1C1C','Meningococcal disease','Y','2025-10-23 00:00:00'),(91199,11,'1C1C.Z','Meningococcal disease, unspecified','Y','2025-10-23 00:00:00'),(91200,11,'1C1C.0','Meningococcal meningitis','Y','2025-10-23 00:00:00'),(91201,11,'XM92B2','Meningococcal monovalent purified polysaccharides antigen vaccines','Y','2025-10-23 00:00:00'),(91202,11,'XM5LC2','Meningococcal polyvalent purified polysaccharides antigen vaccines','Y','2025-10-23 00:00:00'),(91203,11,'XM2WV4','Meningococcal vaccines','Y','2025-10-23 00:00:00'),(91204,11,'XM3T39','Meningococcus A, C, bivalent purified polysaccharides antigen vaccines','Y','2025-10-23 00:00:00'),(91205,11,'XM2EH7','Meningococcus A, C, Y, W-135, tetravalent purified polysaccharides antigen conjugated vaccines','Y','2025-10-23 00:00:00'),(91206,11,'XM2AR0','Meningococcus A, C, Y, W-135, tetravalent purified polysaccharides antigen vaccines','Y','2025-10-23 00:00:00'),(91207,11,'XM2280','Meningococcus A, purified polysaccharides antigen conjugated vaccines','Y','2025-10-23 00:00:00'),(91208,11,'XM37L5','Meningococcus A, purified polysaccharides antigen vaccines','Y','2025-10-23 00:00:00'),(91209,11,'XM1X81','Meningococcus B, multicomponent vaccines','Y','2025-10-23 00:00:00'),(91210,11,'XM9GJ1','Meningococcus B, outer membrane vesicle vaccines','Y','2025-10-23 00:00:00'),(91211,11,'XM18Y8','Meningococcus C, purified polysaccharides antigen conjugated vaccines','Y','2025-10-23 00:00:00'),(91212,11,'1F57.1','Meningoencephalitis due to Toxoplasma gondii','Y','2025-10-23 00:00:00'),(91213,11,'XH40T5','Meningothelial meningioma','Y','2025-10-23 00:00:00'),(91214,11,'GA30.Z','Menopausal and perimenopausal disorders, unspecified','Y','2025-10-23 00:00:00'),(91215,11,'SB95','Menopausal disorder (TM1)','Y','2025-10-23 00:00:00'),(91216,11,'GA30.4','Menopausal hot flush','Y','2025-10-23 00:00:00'),(91217,11,'GA30','Menopausal or certain specified perimenopausal disorders','Y','2025-10-23 00:00:00'),(91218,11,'GA30.00','Menopausal or female climacteric states','Y','2025-10-23 00:00:00'),(91219,11,'GA30.5','Menopausal osteoporosis','Y','2025-10-23 00:00:00'),(91220,11,'MF32','Menopausal symptom or complaint','Y','2025-10-23 00:00:00'),(91221,11,'GA30.01','Menopausal transition','Y','2025-10-23 00:00:00'),(91222,11,'GA30.0','Menopause','Y','2025-10-23 00:00:00'),(91223,11,'GA30.0Z','Menopause, unspecified','Y','2025-10-23 00:00:00'),(91224,11,'SB90','Menorrhagia disorder (TM1)','Y','2025-10-23 00:00:00'),(91225,11,'XM92R5','Menotropins','Y','2025-10-23 00:00:00'),(91226,11,'GA20','Menstrual cycle bleeding disorders','Y','2025-10-23 00:00:00'),(91227,11,'GA20.Z','Menstrual cycle bleeding disorders, unspecified','Y','2025-10-23 00:00:00'),(91228,11,'SB9Z','Menstruation associated disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(91229,11,'SB8Z','Menstruation cycle disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(91230,11,'SD8Z','Mental and emotional disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(91231,11,'XA7AG7','Mental branch of the Inferior alveolar artery','Y','2025-10-23 00:00:00'),(91232,11,'6E40.0','Mental disorder affecting disorders or diseases classified elsewhere','Y','2025-10-23 00:00:00'),(91233,11,'VV0Z','Mental functions, unspecified','Y','2025-10-23 00:00:00'),(91234,11,'XA6ZD8','Mental nerve','Y','2025-10-23 00:00:00'),(91235,11,'6E2Z','Mental or behavioural disorders associated with pregnancy, childbirth or the puerperium, unspecified','Y','2025-10-23 00:00:00'),(91236,11,'6E21','Mental or behavioural disorders associated with pregnancy, childbirth or the puerperium, with psychotic symptoms','Y','2025-10-23 00:00:00'),(91237,11,'6E20','Mental or behavioural disorders associated with pregnancy, childbirth or the puerperium, without psychotic symptoms','Y','2025-10-23 00:00:00'),(91238,11,'MB24.E','Mental rumination','Y','2025-10-23 00:00:00'),(91239,11,'6E8Z','Mental, behavioural or neurodevelopmental disorders, unspecified','Y','2025-10-23 00:00:00'),(91240,11,'XA0U25','Mentalis muscle','Y','2025-10-23 00:00:00'),(91241,11,'XA7JW2','Mentalis tendon','Y','2025-10-23 00:00:00'),(91242,11,'XM9GX9','Menthol','Y','2025-10-23 00:00:00'),(91243,11,'XM9VB9','Mepacrine','Y','2025-10-23 00:00:00'),(91244,11,'XM40Q3','Mepartricin','Y','2025-10-23 00:00:00'),(91245,11,'XM2VU6','Mepazine','Y','2025-10-23 00:00:00'),(91246,11,'XM7W33','Mepenzolate','Y','2025-10-23 00:00:00'),(91247,11,'XM0WK8','Mepenzolate bromide','Y','2025-10-23 00:00:00'),(91248,11,'XM0GS3','Meperidine','Y','2025-10-23 00:00:00'),(91249,11,'XM7MG1','Mephebarbital','Y','2025-10-23 00:00:00'),(91250,11,'XM1HD7','Mephenesin','Y','2025-10-23 00:00:00'),(91251,11,'XM01J5','Mephenoxalone','Y','2025-10-23 00:00:00'),(91252,11,'XM6RQ3','Mephentermine','Y','2025-10-23 00:00:00'),(91253,11,'XM4A36','Mephenytoin','Y','2025-10-23 00:00:00'),(91254,11,'XM9R34','Mephosfolan','Y','2025-10-23 00:00:00'),(91255,11,'XM89L8','Mepindolol','Y','2025-10-23 00:00:00'),(91256,11,'XM1FH6','Mepiperphenidol','Y','2025-10-23 00:00:00'),(91257,11,'XM21D8','Mepitiostane','Y','2025-10-23 00:00:00'),(91258,11,'XM1MK4','Mepivacaine','Y','2025-10-23 00:00:00'),(91259,11,'XM0EH7','Mepivacaine epidural','Y','2025-10-23 00:00:00'),(91260,11,'XM1D17','Mepixanox','Y','2025-10-23 00:00:00'),(91261,11,'XM8X05','Mepolizumab','Y','2025-10-23 00:00:00'),(91262,11,'XM5V41','Meprednisone','Y','2025-10-23 00:00:00'),(91263,11,'XM3MX1','Meprobamate','Y','2025-10-23 00:00:00'),(91264,11,'XM2X57','Meproscillarin','Y','2025-10-23 00:00:00'),(91265,11,'XM1G75','Meprotixol','Y','2025-10-23 00:00:00'),(91266,11,'XM9DE9','Meprylcaine','Y','2025-10-23 00:00:00'),(91267,11,'XM40T9','Meptazinol','Y','2025-10-23 00:00:00'),(91268,11,'XM7X44','Mepyramine theophyllinacetate','Y','2025-10-23 00:00:00'),(91269,11,'XM2833','Mepyramine topical','Y','2025-10-23 00:00:00'),(91270,11,'XM0RJ6','Mequinol','Y','2025-10-23 00:00:00'),(91271,11,'XM5EB9','Mequitazine','Y','2025-10-23 00:00:00'),(91272,11,'8C11.1','Meralgia paraesthetica','Y','2025-10-23 00:00:00'),(91273,11,'XM8HM6','Meralluride','Y','2025-10-23 00:00:00'),(91274,11,'XM5R34','Merbaphen','Y','2025-10-23 00:00:00'),(91275,11,'XM35K3','Merbromin','Y','2025-10-23 00:00:00'),(91276,11,'XM85F8','Mercaptamine','Y','2025-10-23 00:00:00'),(91277,11,'XM3TN8','Mercaptobenzothiazole','Y','2025-10-23 00:00:00'),(91278,11,'XM7FY5','Mercaptobenzothiazole salts','Y','2025-10-23 00:00:00'),(91279,11,'XM1SB8','Mercaptomerin','Y','2025-10-23 00:00:00'),(91280,11,'XM1SK9','Mercaptopurine','Y','2025-10-23 00:00:00'),(91281,11,'XE3QY','Merchant ship as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(91282,11,'XE7NQ','Merchant ship, cargo ship, oil tanker','Y','2025-10-23 00:00:00'),(91283,11,'XM3PF7','Mercumatilin','Y','2025-10-23 00:00:00'),(91284,11,'XM9524','Mercuric chloride nonmedicinal','Y','2025-10-23 00:00:00'),(91285,11,'XM39J4','Mercuric cyanide nonmedicinal','Y','2025-10-23 00:00:00'),(91286,11,'XM0N01','Mercuric iodide','Y','2025-10-23 00:00:00'),(91287,11,'XM8HV3','Mercuric sulfate nonmedicinal','Y','2025-10-23 00:00:00'),(91288,11,'XM5X38','Mercuric','Y','2025-10-23 00:00:00'),(91289,11,'XM1B13','Mercurochrome','Y','2025-10-23 00:00:00'),(91290,11,'XM3L13','Mercurophylline','Y','2025-10-23 00:00:00'),(91291,11,'XM1FG4','Mercury','Y','2025-10-23 00:00:00'),(91292,11,'XM2J64','Mercury ammoniated','Y','2025-10-23 00:00:00'),(91293,11,'XM9Z76','Mercury anti-infective topical','Y','2025-10-23 00:00:00'),(91294,11,'XM10V3','Mercury chloride (ammoniated)','Y','2025-10-23 00:00:00'),(91295,11,'XM7415','Mercury compounds','Y','2025-10-23 00:00:00'),(91296,11,'XM4WJ1','Mercury fulminate','Y','2025-10-23 00:00:00'),(91297,11,'XM6Q50','Mercury oxide, yellow','Y','2025-10-23 00:00:00'),(91298,11,'XM7UW8','Mercury pesticide, not elsewhere classified','Y','2025-10-23 00:00:00'),(91299,11,'XM3W50','Mercury thiocyanate','Y','2025-10-23 00:00:00'),(91300,11,'XM0RW4','Mercury, mercurial, mercuric, mercurous anti-infective systemic','Y','2025-10-23 00:00:00'),(91301,11,'XM5LX3','Mercury, metallic','Y','2025-10-23 00:00:00'),(91302,11,'SG5Z','Meridian and collateral patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(91303,11,'XH81N8','Merkel cell carcinoma','Y','2025-10-23 00:00:00'),(91304,11,'XM82S6','Meropenem','Y','2025-10-23 00:00:00'),(91305,11,'XM4AF6','Mersalyl','Y','2025-10-23 00:00:00'),(91306,11,'XM9613','Merthiolate','Y','2025-10-23 00:00:00'),(91307,11,'XM8UW6','Mesalazine','Y','2025-10-23 00:00:00'),(91308,11,'XM0169','Mescal buttons','Y','2025-10-23 00:00:00'),(91309,11,'XM0T53','Mescaline','Y','2025-10-23 00:00:00'),(91310,11,'9B02.2','Mesencephalic light-near dissociations','Y','2025-10-23 00:00:00'),(91311,11,'XH8X47','Mesenchymal chondrosarcoma','Y','2025-10-23 00:00:00'),(91312,11,'2A01.1','Mesenchymal tumours of meninges','Y','2025-10-23 00:00:00'),(91313,11,'XH7AA3','Mesenchymoma, benign','Y','2025-10-23 00:00:00'),(91314,11,'XH9N95','Mesenchymoma, malignant','Y','2025-10-23 00:00:00'),(91315,11,'XH2AD1','Mesenchymoma, NOS','Y','2025-10-23 00:00:00'),(91316,11,'XA6CA5','Mesenteric artery','Y','2025-10-23 00:00:00'),(91317,11,'XA26J2','Mesenteric lymph node','Y','2025-10-23 00:00:00'),(91318,11,'DC50.11','Mesenteric peritonitis','Y','2025-10-23 00:00:00'),(91319,11,'XA5KA1','Mesenteric vein','Y','2025-10-23 00:00:00'),(91320,11,'XA43V8','Mesentery','Y','2025-10-23 00:00:00'),(91321,11,'XE8R6','Mesh component of medical device','Y','2025-10-23 00:00:00'),(91322,11,'XA5Z48','Mesial surface of tooth','Y','2025-10-23 00:00:00'),(91323,11,'XM1JB5','Mesna','Y','2025-10-23 00:00:00'),(91324,11,'XA46W1','Mesoappendix','Y','2025-10-23 00:00:00'),(91325,11,'XH10F1','Mesoblastic nephroma','Y','2025-10-23 00:00:00'),(91326,11,'LA80.2','Mesocardia','Y','2025-10-23 00:00:00'),(91327,11,'XA4QM7','Mesocolon','Y','2025-10-23 00:00:00'),(91328,11,'XA3D33','Mesoderm','Y','2025-10-23 00:00:00'),(91329,11,'XH0Y65','Mesodermal mixed tumour','Y','2025-10-23 00:00:00'),(91330,11,'XM0KD7','Mesoglycan','Y','2025-10-23 00:00:00'),(91331,11,'LD24.A','Mesomelic or rhizomesomelic dysplasias','Y','2025-10-23 00:00:00'),(91332,11,'XA3AN2','Mesometrium','Y','2025-10-23 00:00:00'),(91333,11,'XH5AH3','Mesonephroma, benign','Y','2025-10-23 00:00:00'),(91334,11,'XH5WG5','Mesonephroma, malignant','Y','2025-10-23 00:00:00'),(91335,11,'XM6447','Mesoridazine','Y','2025-10-23 00:00:00'),(91336,11,'XA6CV1','Mesosalpinx','Y','2025-10-23 00:00:00'),(91337,11,'2C12.03','Mesothelial carcinoma of liver','Y','2025-10-23 00:00:00'),(91338,11,'2C53.1','Mesothelioma involving overlapping sites of retroperitoneum, peritoneum or omentum','Y','2025-10-23 00:00:00'),(91339,11,'2C51.21','Mesothelioma of mesentery','Y','2025-10-23 00:00:00'),(91340,11,'2C51.20','Mesothelioma of mesocolon','Y','2025-10-23 00:00:00'),(91341,11,'2C26.0','Mesothelioma of pleura','Y','2025-10-23 00:00:00'),(91342,11,'XH1SS1','Mesothelioma, benign','Y','2025-10-23 00:00:00'),(91343,11,'XH1DX8','Mesothelioma, biphasic, malignant','Y','2025-10-23 00:00:00'),(91344,11,'XH0XV0','Mesothelioma, malignant','Y','2025-10-23 00:00:00'),(91345,11,'2C51.2Y','Mesotheliomas of other specified sites of peritoneum','Y','2025-10-23 00:00:00'),(91346,11,'2C51.2','Mesotheliomas of peritoneum','Y','2025-10-23 00:00:00'),(91347,11,'2C51.2Z','Mesotheliomas of peritoneum, site unspecified','Y','2025-10-23 00:00:00'),(91348,11,'XA0182','Mesothelium','Y','2025-10-23 00:00:00'),(91349,11,'XA6VF6','Mesovarium','Y','2025-10-23 00:00:00'),(91350,11,'XM0E55','Mestanolone','Y','2025-10-23 00:00:00'),(91351,11,'XM3QK3','Mesterolone','Y','2025-10-23 00:00:00'),(91352,11,'XM3AK8','Mestranol','Y','2025-10-23 00:00:00'),(91353,11,'XM50V4','Mesulergine','Y','2025-10-23 00:00:00'),(91354,11,'XM2JH4','Mesulfen','Y','2025-10-23 00:00:00'),(91355,11,'XM2KZ3','Mesuximide','Y','2025-10-23 00:00:00'),(91356,11,'KB22','Metabolic acidaemia in newborn','Y','2025-10-23 00:00:00'),(91357,11,'KB63.5','Metabolic bone disease of prematurity','Y','2025-10-23 00:00:00'),(91358,11,'JA05.5','Metabolic disorders following abortion, ectopic or molar pregnancy','Y','2025-10-23 00:00:00'),(91359,11,'5D2Z','Metabolic disorders, unspecified','Y','2025-10-23 00:00:00'),(91360,11,'5C90','Metabolic or transporter liver disease','Y','2025-10-23 00:00:00'),(91361,11,'5C90.Z','Metabolic or transporter liver disease, unspecified','Y','2025-10-23 00:00:00'),(91362,11,'XM7CG8','Metabutethamine','Y','2025-10-23 00:00:00'),(91363,11,'XA3YX4','Metacarpal bone','Y','2025-10-23 00:00:00'),(91364,11,'XA86T5','Metacarpophalangeal joint','Y','2025-10-23 00:00:00'),(91365,11,'5C56.02','Metachromatic leukodystrophy','Y','2025-10-23 00:00:00'),(91366,11,'XM2M00','Metactesylacetate','Y','2025-10-23 00:00:00'),(91367,11,'XM4CA1','Metacycline','Y','2025-10-23 00:00:00'),(91368,11,'XN123','Metagonimus','Y','2025-10-23 00:00:00'),(91369,11,'XM5N48','Metahexamide','Y','2025-10-23 00:00:00'),(91370,11,'XM1J33','Metal polish','Y','2025-10-23 00:00:00'),(91371,11,'XE1FP','Metal sheet, part, piece etc.','Y','2025-10-23 00:00:00'),(91372,11,'XM6NP0','Metal, not elsewhere classified','Y','2025-10-23 00:00:00'),(91373,11,'XM95F1','Metaldehyde','Y','2025-10-23 00:00:00'),(91374,11,'XM1HX8','Metampicillin','Y','2025-10-23 00:00:00'),(91375,11,'XM2J55','Metamucil','Y','2025-10-23 00:00:00'),(91376,11,'XM4HG0','Metandienone topical','Y','2025-10-23 00:00:00'),(91377,11,'XH7ZU2','Metanephric adenofibroma','Y','2025-10-23 00:00:00'),(91378,11,'XH0JC7','Metanephric adenoma','Y','2025-10-23 00:00:00'),(91379,11,'XH4N88','Metanephric stromal tumour','Y','2025-10-23 00:00:00'),(91380,11,'NC92.12','Metaphyseal fracture of upper end of tibia','Y','2025-10-23 00:00:00'),(91381,11,'XH0RD4','Metaplastic carcinoma, NOS','Y','2025-10-23 00:00:00'),(91382,11,'DA42.74','Metaplastic gastritis of unknown aetiology','Y','2025-10-23 00:00:00'),(91383,11,'XH7N06','Metaplastic meningioma','Y','2025-10-23 00:00:00'),(91384,11,'XH3DX0','Metaplastic thymoma','Y','2025-10-23 00:00:00'),(91385,11,'XM0227','Metapramine','Y','2025-10-23 00:00:00'),(91386,11,'XM6L38','Metaraminol','Y','2025-10-23 00:00:00'),(91387,11,'XH1EX8','Metastasizing leiomyoma','Y','2025-10-23 00:00:00'),(91388,11,'2E08','Metastatic malignant neoplasm involving skin','Y','2025-10-23 00:00:00'),(91389,11,'2D6Z','Metastatic malignant neoplasm to unspecified lymph node','Y','2025-10-23 00:00:00'),(91390,11,'XH56K0','Metastatic signet ring cell carcinoma','Y','2025-10-23 00:00:00'),(91391,11,'XA7ND7','Metatarsal vein','Y','2025-10-23 00:00:00'),(91392,11,'XA6VH2','Metatarsal','Y','2025-10-23 00:00:00'),(91393,11,'FB54.4','Metatarsalgia','Y','2025-10-23 00:00:00'),(91394,11,'XA8XU1','Metatarsophalangeal joint','Y','2025-10-23 00:00:00'),(91395,11,'LB98.21','Metatarsus valgus','Y','2025-10-23 00:00:00'),(91396,11,'LB98.02','Metatarsus varus','Y','2025-10-23 00:00:00'),(91397,11,'XH9E93','Metatypical carcinoma','Y','2025-10-23 00:00:00'),(91398,11,'XM5PZ1','Metaxalone','Y','2025-10-23 00:00:00'),(91399,11,'XM2GQ1','Metenolone','Y','2025-10-23 00:00:00'),(91400,11,'XM7828','Metergoline','Y','2025-10-23 00:00:00'),(91401,11,'XM4U20','Metescufylline','Y','2025-10-23 00:00:00'),(91402,11,'XM02E9','Metetoin','Y','2025-10-23 00:00:00'),(91403,11,'XM0JN5','Metformin','Y','2025-10-23 00:00:00'),(91404,11,'XM0N95','Methacetin (13C)','Y','2025-10-23 00:00:00'),(91405,11,'XM3YJ9','Methacholine','Y','2025-10-23 00:00:00'),(91406,11,'XM7XP1','Methadone','Y','2025-10-23 00:00:00'),(91407,11,'XM1ZY9','Methadone, methadone derivatives and other drugs used to treat opioid addictive disorders','Y','2025-10-23 00:00:00'),(91408,11,'XM4T41','Methallenestril','Y','2025-10-23 00:00:00'),(91409,11,'XM56W1','Methamidophos','Y','2025-10-23 00:00:00'),(91410,11,'XM5B49','Methamphetamine','Y','2025-10-23 00:00:00'),(91411,11,'XM6966','Methandriol','Y','2025-10-23 00:00:00'),(91412,11,'XM24D1','Methandrostenolone','Y','2025-10-23 00:00:00'),(91413,11,'XM56Q2','Methane','Y','2025-10-23 00:00:00'),(91414,11,'XM3XE5','Methaniazide','Y','2025-10-23 00:00:00'),(91415,11,'XM7KD9','Methanol','Y','2025-10-23 00:00:00'),(91416,11,'XM0ZA4','Methanol motor fuel','Y','2025-10-23 00:00:00'),(91417,11,'XM5WL4','Methantheline','Y','2025-10-23 00:00:00'),(91418,11,'XM39X0','Methanthelinium bromide','Y','2025-10-23 00:00:00'),(91419,11,'XM8TK4','Methaphenilene','Y','2025-10-23 00:00:00'),(91420,11,'XM7TD1','Methapyrilene','Y','2025-10-23 00:00:00'),(91421,11,'XM3C52','Methaqualone','Y','2025-10-23 00:00:00'),(91422,11,'XM64T5','Metharbital','Y','2025-10-23 00:00:00'),(91423,11,'XM8P33','Methazolamide','Y','2025-10-23 00:00:00'),(91424,11,'XM5E89','Methdilazine','Y','2025-10-23 00:00:00'),(91425,11,'XM3WD9','Methedrine','Y','2025-10-23 00:00:00'),(91426,11,'XM02L5','Methenamine (mandelate)','Y','2025-10-23 00:00:00'),(91427,11,'XM0PP7','Methicillin','Y','2025-10-23 00:00:00'),(91428,11,'MG51.00','Methicillin resistant Staphylococcus aureus','Y','2025-10-23 00:00:00'),(91429,11,'XM83J2','Methidathion','Y','2025-10-23 00:00:00'),(91430,11,'XM38T7','Methimazole','Y','2025-10-23 00:00:00'),(91431,11,'XM9Y05','Methiocarb','Y','2025-10-23 00:00:00'),(91432,11,'XM9C52','Methiodal','Y','2025-10-23 00:00:00'),(91433,11,'XM5N73','Methiodal sodium','Y','2025-10-23 00:00:00'),(91434,11,'XM5MC0','Methionine','Y','2025-10-23 00:00:00'),(91435,11,'XM1F15','Methiosulfonium chloride','Y','2025-10-23 00:00:00'),(91436,11,'XM0217','Methitural','Y','2025-10-23 00:00:00'),(91437,11,'XM8DQ9','Methobarbital, methobarbitone','Y','2025-10-23 00:00:00'),(91438,11,'XM7AC3','Methocarbamol','Y','2025-10-23 00:00:00'),(91439,11,'XM3RJ7','Methocarbamol skeletal muscle relaxant','Y','2025-10-23 00:00:00'),(91440,11,'XM7JR4','Methohexital','Y','2025-10-23 00:00:00'),(91441,11,'XM2CU6','Methomyl','Y','2025-10-23 00:00:00'),(91442,11,'XM03M0','Methopholine','Y','2025-10-23 00:00:00'),(91443,11,'XM3WX2','Methorate','Y','2025-10-23 00:00:00'),(91444,11,'XM0ND0','Methoserpidine','Y','2025-10-23 00:00:00'),(91445,11,'XM7KT0','Methotrexate','Y','2025-10-23 00:00:00'),(91446,11,'XM2CG2','Methoxamine','Y','2025-10-23 00:00:00'),(91447,11,'XM47G3','Methoxsalen','Y','2025-10-23 00:00:00'),(91448,11,'XM9CQ4','Methoxsalen topical','Y','2025-10-23 00:00:00'),(91449,11,'XM66M0','Methoxy polyethylene glycol-epoetin beta','Y','2025-10-23 00:00:00'),(91450,11,'XM00H2','Methoxybenzyl penicillin','Y','2025-10-23 00:00:00'),(91451,11,'XM0MD1','Methoxychlor','Y','2025-10-23 00:00:00'),(91452,11,'XM90P2','Methoxyethyl mercuric chloride','Y','2025-10-23 00:00:00'),(91453,11,'XM3P63','Methoxyflurane','Y','2025-10-23 00:00:00'),(91454,11,'XM78W6','Methoxyphenamine','Y','2025-10-23 00:00:00'),(91455,11,'XM8ZW1','Methoxypromazine','Y','2025-10-23 00:00:00'),(91456,11,'XM0E13','Methscopolamine bromide','Y','2025-10-23 00:00:00'),(91457,11,'XM9T97','Methyclothiazide','Y','2025-10-23 00:00:00'),(91458,11,'XM12H2','Methyl acetate','Y','2025-10-23 00:00:00'),(91459,11,'XM9LD3','Methyl acetone','Y','2025-10-23 00:00:00'),(91460,11,'XM5H13','Methyl acrylate','Y','2025-10-23 00:00:00'),(91461,11,'XM5GF8','Methyl aminolevulinate','Y','2025-10-23 00:00:00'),(91462,11,'XM9JR4','Methyl aminophenol','Y','2025-10-23 00:00:00'),(91463,11,'XM8HC6','Methyl androstanolone','Y','2025-10-23 00:00:00'),(91464,11,'XM6UK4','Methyl benzoate','Y','2025-10-23 00:00:00'),(91465,11,'XM0NK1','Methyl bromide','Y','2025-10-23 00:00:00'),(91466,11,'XM7CR8','Methyl carbonate','Y','2025-10-23 00:00:00'),(91467,11,'XM29D2','Methyl chloride','Y','2025-10-23 00:00:00'),(91468,11,'XM6RK9','Methyl chloroformate','Y','2025-10-23 00:00:00'),(91469,11,'XM4513','Methyl cyclohexane','Y','2025-10-23 00:00:00'),(91470,11,'XM91A0','Methyl cyclohexanone','Y','2025-10-23 00:00:00'),(91471,11,'XM27U4','Methyl cyclohexyl acetate','Y','2025-10-23 00:00:00'),(91472,11,'XM0WH6','Methyl hydrazine','Y','2025-10-23 00:00:00'),(91473,11,'XM7BT1','Methyl iodide','Y','2025-10-23 00:00:00'),(91474,11,'XM5H65','Methyl isobutyl ketone','Y','2025-10-23 00:00:00'),(91475,11,'XM4QN2','Methyl isothiocyanate','Y','2025-10-23 00:00:00'),(91476,11,'XM4FU5','Methyl mercaptan','Y','2025-10-23 00:00:00'),(91477,11,'XM5DJ5','Methyl mercury','Y','2025-10-23 00:00:00'),(91478,11,'XM49C3','Methyl methacrylate','Y','2025-10-23 00:00:00'),(91479,11,'XM1VX5','Methyl nicotinate','Y','2025-10-23 00:00:00'),(91480,11,'XM0XV0','Methyl paraben','Y','2025-10-23 00:00:00'),(91481,11,'XM04A1','Methyl parahydroxybenzoate','Y','2025-10-23 00:00:00'),(91482,11,'XM1910','Methyl prednisolone topical','Y','2025-10-23 00:00:00'),(91483,11,'XM6H69','Methyl salicylate','Y','2025-10-23 00:00:00'),(91484,11,'XM5BM9','Methyl sulfate','Y','2025-10-23 00:00:00'),(91485,11,'XM5Y11','Methyl sulfate fumes','Y','2025-10-23 00:00:00'),(91486,11,'XM8UW8','Methyl sulfonal','Y','2025-10-23 00:00:00'),(91487,11,'XM3Q37','Methylamphetamine','Y','2025-10-23 00:00:00'),(91488,11,'XM4P67','Methylatropine','Y','2025-10-23 00:00:00'),(91489,11,'XM3KR9','Methylatropine nitrate','Y','2025-10-23 00:00:00'),(91490,11,'XM14X3','Methylbenactyzium bromide','Y','2025-10-23 00:00:00'),(91491,11,'XM5HR1','Methylbenzethonium chloride','Y','2025-10-23 00:00:00'),(91492,11,'XM5DN2','Methylcellulose','Y','2025-10-23 00:00:00'),(91493,11,'XM0X73','Methylcellulose laxative','Y','2025-10-23 00:00:00'),(91494,11,'XM8DV5','Methylchloroisothiazolinone and methylisothiazolinone (3:1)','Y','2025-10-23 00:00:00'),(91495,11,'XM9NB7','Methyldibromo glutaronitrile and phenoxyethanol','Y','2025-10-23 00:00:00'),(91496,11,'XM9G49','Methyldopa','Y','2025-10-23 00:00:00'),(91497,11,'XM54Y3','Methyldopa, levorotatory','Y','2025-10-23 00:00:00'),(91498,11,'XM9ZV9','Methyldopa, racemic','Y','2025-10-23 00:00:00'),(91499,11,'XM7W35','Methyldopate','Y','2025-10-23 00:00:00'),(91500,11,'XM6XV7','Methylene-bis(methyloxazolidine)','Y','2025-10-23 00:00:00'),(91501,11,'XM8A13','Methylene-bis-benzotriazolyltetramethylbutylphenol','Y','2025-10-23 00:00:00'),(91502,11,'XM93Q7','Methylergometrine','Y','2025-10-23 00:00:00'),(91503,11,'XM37T7','Methylestrenolone','Y','2025-10-23 00:00:00'),(91504,11,'XM82Y6','Methylethyl cellulose','Y','2025-10-23 00:00:00'),(91505,11,'XM87J0','Methylisothiazolinone','Y','2025-10-23 00:00:00'),(91506,11,'XM3TK0','Methylnaltrexone bromide','Y','2025-10-23 00:00:00'),(91507,11,'XM4QZ9','Methylparaben (ophthalmic)','Y','2025-10-23 00:00:00'),(91508,11,'XM79Y3','Methylpentynol','Y','2025-10-23 00:00:00'),(91509,11,'XM1NX2','Methylphenidate','Y','2025-10-23 00:00:00'),(91510,11,'XM60H4','Methylphenobarbital','Y','2025-10-23 00:00:00'),(91511,11,'XM1EN3','Methylpolysiloxane','Y','2025-10-23 00:00:00'),(91512,11,'XM3FX7','Methylprednisolone','Y','2025-10-23 00:00:00'),(91513,11,'XM5EY3','Methylprednisolone aceponate','Y','2025-10-23 00:00:00'),(91514,11,'XM9UE1','Methylpropylpropanediol dinitrate','Y','2025-10-23 00:00:00'),(91515,11,'XM7C91','Methylrosaniline','Y','2025-10-23 00:00:00'),(91516,11,'XM2793','Methylrosanilinium chloride','Y','2025-10-23 00:00:00'),(91517,11,'XM3068','Methylscopolamine','Y','2025-10-23 00:00:00'),(91518,11,'XM4TC8','Methyltestosterone','Y','2025-10-23 00:00:00'),(91519,11,'XM1YY3','Methylthioninium chloride','Y','2025-10-23 00:00:00'),(91520,11,'XM54P6','Methylthiouracil','Y','2025-10-23 00:00:00'),(91521,11,'XM2MN1','Methyprylon','Y','2025-10-23 00:00:00'),(91522,11,'XM4G36','Methysergide','Y','2025-10-23 00:00:00'),(91523,11,'XM9414','Metiamide','Y','2025-10-23 00:00:00'),(91524,11,'XM3GK5','Meticrane','Y','2025-10-23 00:00:00'),(91525,11,'XM37V6','Metildigoxin','Y','2025-10-23 00:00:00'),(91526,11,'XM0YH4','Metipranolol','Y','2025-10-23 00:00:00'),(91527,11,'XM1F18','Metirosine','Y','2025-10-23 00:00:00'),(91528,11,'XM6SP8','Metisazone','Y','2025-10-23 00:00:00'),(91529,11,'XM4RV4','Metixene','Y','2025-10-23 00:00:00'),(91530,11,'XM5J98','Metizoline','Y','2025-10-23 00:00:00'),(91531,11,'XM3XX3','Metoclopramide','Y','2025-10-23 00:00:00'),(91532,11,'XM4TX5','Metofenazate','Y','2025-10-23 00:00:00'),(91533,11,'XM7G39','Metolazone','Y','2025-10-23 00:00:00'),(91534,11,'XM46N1','Metopimazine','Y','2025-10-23 00:00:00'),(91535,11,'XM78E0','Metopon','Y','2025-10-23 00:00:00'),(91536,11,'XM1NW0','Metoprine','Y','2025-10-23 00:00:00'),(91537,11,'XM8L21','Metoprolol','Y','2025-10-23 00:00:00'),(91538,11,'XM9H59','Metrifonate','Y','2025-10-23 00:00:00'),(91539,11,'XM3WB6','Metrizamide','Y','2025-10-23 00:00:00'),(91540,11,'XM7PH4','Metrizoic acid','Y','2025-10-23 00:00:00'),(91541,11,'XM5YM6','Metronidazole','Y','2025-10-23 00:00:00'),(91542,11,'SB93','Metrorrhagia disorder (TM1)','Y','2025-10-23 00:00:00'),(91543,11,'XM5GR6','Metyrapone','Y','2025-10-23 00:00:00'),(91544,11,'XM8ZT2','Mevinphos','Y','2025-10-23 00:00:00'),(91545,11,'XM7QC1','Mexazolam','Y','2025-10-23 00:00:00'),(91546,11,'XM8EY7','Mexenone','Y','2025-10-23 00:00:00'),(91547,11,'XM3XK1','Mexiletine','Y','2025-10-23 00:00:00'),(91548,11,'XH8NP4','Meyerson naevus','Y','2025-10-23 00:00:00'),(91549,11,'XM1Z93','Mezlocillin','Y','2025-10-23 00:00:00'),(91550,11,'XM0T46','Mianserin','Y','2025-10-23 00:00:00'),(91551,11,'XM6GX5','Mibefradil','Y','2025-10-23 00:00:00'),(91552,11,'XM1F82','Micafungin','Y','2025-10-23 00:00:00'),(91553,11,'XM0ZY9','Micatin','Y','2025-10-23 00:00:00'),(91554,11,'XM9UH0','Miconazole','Y','2025-10-23 00:00:00'),(91555,11,'3A21.1','Microangiopathic haemolytic anaemia','Y','2025-10-23 00:00:00'),(91556,11,'XE97G','Microbial contamination of device','Y','2025-10-23 00:00:00'),(91557,11,'MA15','Microbiological findings in blood, blood-forming organs, or the immune system','Y','2025-10-23 00:00:00'),(91558,11,'XE0ZR','Microcar as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(91559,11,'XE9K7','Microcar as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(91560,11,'LA05.0','Microcephaly','Y','2025-10-23 00:00:00'),(91561,11,'LA54','Microcheilia','Y','2025-10-23 00:00:00'),(91562,11,'XH3DH3','Microcystic adenoma','Y','2025-10-23 00:00:00'),(91563,11,'XH17P2','Microcystic adnexal carcinoma','Y','2025-10-23 00:00:00'),(91564,11,'LA90.11','Microcystic lymphatic malformation','Y','2025-10-23 00:00:00'),(91565,11,'XH1F70','Microcystic meningioma','Y','2025-10-23 00:00:00'),(91566,11,'XH35B3','Microcystic stromal tumour','Y','2025-10-23 00:00:00'),(91567,11,'XM38M2','Microcystin','Y','2025-10-23 00:00:00'),(91568,11,'XH2H83','Microfollicular adenoma, NOS','Y','2025-10-23 00:00:00'),(91569,11,'DA0E.00','Micrognathia','Y','2025-10-23 00:00:00'),(91570,11,'XH56K5','Micronodular thymoma with lymphoid stroma','Y','2025-10-23 00:00:00'),(91571,11,'XM9VS3','Micronomicin','Y','2025-10-23 00:00:00'),(91572,11,'XH4MW7','Micropapillary adenocarcinoma','Y','2025-10-23 00:00:00'),(91573,11,'XH6QG3','Micropapillary carcinoma, NOS','Y','2025-10-23 00:00:00'),(91574,11,'XH0572','Micropapillary serous carcinoma','Y','2025-10-23 00:00:00'),(91575,11,'XM3PF3','Microparticles of galactose','Y','2025-10-23 00:00:00'),(91576,11,'LB50','Micropenis or penis agenesis','Y','2025-10-23 00:00:00'),(91577,11,'XE9FY','Microphone component of medical device','Y','2025-10-23 00:00:00'),(91578,11,'9A25.1','Microphthalmic socket','Y','2025-10-23 00:00:00'),(91579,11,'LA10.0','Microphthalmos','Y','2025-10-23 00:00:00'),(91580,11,'DB33.1','Microscopic colitis','Y','2025-10-23 00:00:00'),(91581,11,'DB33.1Z','Microscopic colitis, unspecified','Y','2025-10-23 00:00:00'),(91582,11,'MF50.41','Microscopic haematuria','Y','2025-10-23 00:00:00'),(91583,11,'4A44.A0','Microscopic polyangiitis','Y','2025-10-23 00:00:00'),(91584,11,'XH9QW0','Microscopic thymoma','Y','2025-10-23 00:00:00'),(91585,11,'XM40N1','Microspheres of human albumin','Y','2025-10-23 00:00:00'),(91586,11,'XM4VR4','Microspheres of phospholipids','Y','2025-10-23 00:00:00'),(91587,11,'XN9ZV','Microsporidia','Y','2025-10-23 00:00:00'),(91588,11,'1F58','Microsporidiosis','Y','2025-10-23 00:00:00'),(91589,11,'XN3YF','Microsporum audouinii','Y','2025-10-23 00:00:00'),(91590,11,'XN5ER','Microsporum canis','Y','2025-10-23 00:00:00'),(91591,11,'XN6NM','Microsporum equinum','Y','2025-10-23 00:00:00'),(91592,11,'XN2R2','Microsporum ferrugineum','Y','2025-10-23 00:00:00'),(91593,11,'XN5GR','Microsporum gallinae','Y','2025-10-23 00:00:00'),(91594,11,'XN2VZ','Microsporum gypseum','Y','2025-10-23 00:00:00'),(91595,11,'XN3WX','Microsporum nanum','Y','2025-10-23 00:00:00'),(91596,11,'XN7JK','Microsporum persicolor','Y','2025-10-23 00:00:00'),(91597,11,'XN7TP','Microsporum praecox','Y','2025-10-23 00:00:00'),(91598,11,'LA31.4','Microstomia','Y','2025-10-23 00:00:00'),(91599,11,'LA22.0','Microtia','Y','2025-10-23 00:00:00'),(91600,11,'XH9UU3','Microvenular hemangioma','Y','2025-10-23 00:00:00'),(91601,11,'XE7D9','Microwave oven','Y','2025-10-23 00:00:00'),(91602,11,'XA6ZR2','Mid back','Y','2025-10-23 00:00:00'),(91603,11,'XM9PG6','Midazolam','Y','2025-10-23 00:00:00'),(91604,11,'XA5KS6','Midbrain','Y','2025-10-23 00:00:00'),(91605,11,'XA4AS7','Midcarpal joint','Y','2025-10-23 00:00:00'),(91606,11,'XA4F32','Midcolic lymph node','Y','2025-10-23 00:00:00'),(91607,11,'XN1VS','Middelburg virus','Y','2025-10-23 00:00:00'),(91608,11,'XT4T','Middle Adolescence','Y','2025-10-23 00:00:00'),(91609,11,'XA8ML2','Middle cardiac nerve','Y','2025-10-23 00:00:00'),(91610,11,'XA3UN3','Middle cardiac vein','Y','2025-10-23 00:00:00'),(91611,11,'XA2JH8','Middle cerebral artery','Y','2025-10-23 00:00:00'),(91612,11,'8B26.2','Middle cerebral artery syndrome','Y','2025-10-23 00:00:00'),(91613,11,'XA43H1','Middle cerebral vein','Y','2025-10-23 00:00:00'),(91614,11,'XA9RD0','Middle cervical ganglion','Y','2025-10-23 00:00:00'),(91615,11,'XT9V','Middle Childhood','Y','2025-10-23 00:00:00'),(91616,11,'XA1Z62','Middle colic artery','Y','2025-10-23 00:00:00'),(91617,11,'XA49E0','Middle colic vein','Y','2025-10-23 00:00:00'),(91618,11,'XA0G74','Middle Ear','Y','2025-10-23 00:00:00'),(91619,11,'AB1B','Middle ear cicatrix','Y','2025-10-23 00:00:00'),(91620,11,'2F00.0','Middle ear endocrine tumour','Y','2025-10-23 00:00:00'),(91621,11,'XH9YX6','Middle ear paraganglioma','Y','2025-10-23 00:00:00'),(91622,11,'1D64','Middle East respiratory syndrome','Y','2025-10-23 00:00:00'),(91623,11,'XN3BD','Middle East respiratory syndrome coronavirus','Y','2025-10-23 00:00:00'),(91624,11,'SG71','Middle energizer stage patterns (TM1)','Y','2025-10-23 00:00:00'),(91625,11,'XA0Y38','Middle finger','Y','2025-10-23 00:00:00'),(91626,11,'XA9YZ9','Middle fingernail','Y','2025-10-23 00:00:00'),(91627,11,'XA8Y22','Middle fossa','Y','2025-10-23 00:00:00'),(91628,11,'XA5LB1','Middle genicular artery','Y','2025-10-23 00:00:00'),(91629,11,'XA1N36','Middle lobe of lung','Y','2025-10-23 00:00:00'),(91630,11,'XA1K94','Middle lobe, bronchus','Y','2025-10-23 00:00:00'),(91631,11,'XA99Z0','Middle mediastinum','Y','2025-10-23 00:00:00'),(91632,11,'XA5RM1','Middle meningeal artery','Y','2025-10-23 00:00:00'),(91633,11,'XA9G70','Middle meningeal nerve','Y','2025-10-23 00:00:00'),(91634,11,'XA5600','Middle meningeal vein','Y','2025-10-23 00:00:00'),(91635,11,'XA90F0','Middle phalanx of fifth toe','Y','2025-10-23 00:00:00'),(91636,11,'XA2SX4','Middle phalanx of fourth toe','Y','2025-10-23 00:00:00'),(91637,11,'XA89G7','Middle phalanx of hand','Y','2025-10-23 00:00:00'),(91638,11,'XA3JL6','Middle phalanx of index finger','Y','2025-10-23 00:00:00'),(91639,11,'XA6HX0','Middle phalanx of little finger','Y','2025-10-23 00:00:00'),(91640,11,'XA5910','Middle phalanx of middle finger','Y','2025-10-23 00:00:00'),(91641,11,'XA8N14','Middle phalanx of ring finger','Y','2025-10-23 00:00:00'),(91642,11,'XA1UN2','Middle phalanx of second toe','Y','2025-10-23 00:00:00'),(91643,11,'XA9YP5','Middle phalanx of third toe','Y','2025-10-23 00:00:00'),(91644,11,'XA8539','Middle phalanx of toe','Y','2025-10-23 00:00:00'),(91645,11,'XA8X93','Middle rectal artery','Y','2025-10-23 00:00:00'),(91646,11,'XA6NJ4','Middle rectal vein','Y','2025-10-23 00:00:00'),(91647,11,'XA9Z04','Middle sacral vein','Y','2025-10-23 00:00:00'),(91648,11,'XA1GQ7','Middle suprarenal artery','Y','2025-10-23 00:00:00'),(91649,11,'XA6X36','Middle temporal artery','Y','2025-10-23 00:00:00'),(91650,11,'XA8SD6','Middle temporal vein','Y','2025-10-23 00:00:00'),(91651,11,'XA2BY3','Middle third of oesophagus','Y','2025-10-23 00:00:00'),(91652,11,'XA3ZG5','Middle third of the scaphoid bone','Y','2025-10-23 00:00:00'),(91653,11,'XA2DN0','Middle thyroid vein','Y','2025-10-23 00:00:00'),(91654,11,'SG61','Middle yang stage pattern (TM1)','Y','2025-10-23 00:00:00'),(91655,11,'SG64','Middle yin stage Pattern (TM), Middle yin stage pattern (TM1)','Y','2025-10-23 00:00:00'),(91656,11,'XM80A1','Midecamycin','Y','2025-10-23 00:00:00'),(91657,11,'XA5151','Midfoot','Y','2025-10-23 00:00:00'),(91658,11,'XA65E9','Midline of tongue','Y','2025-10-23 00:00:00'),(91659,11,'XM79K5','Midodrine','Y','2025-10-23 00:00:00'),(91660,11,'XM5Y46','Midostaurin','Y','2025-10-23 00:00:00'),(91661,11,'XM97M6','Mifamurtide','Y','2025-10-23 00:00:00'),(91662,11,'XM4RW1','Mifepristone','Y','2025-10-23 00:00:00'),(91663,11,'XM6QN8','Migalastat','Y','2025-10-23 00:00:00'),(91664,11,'XM6UH6','Migalstat','Y','2025-10-23 00:00:00'),(91665,11,'XM9EX0','Miglitol','Y','2025-10-23 00:00:00'),(91666,11,'XM19C6','Miglustat','Y','2025-10-23 00:00:00'),(91667,11,'8A80','Migraine','Y','2025-10-23 00:00:00'),(91668,11,'SD10','Migraine disorder (TM1)','Y','2025-10-23 00:00:00'),(91669,11,'8A80.1','Migraine with aura','Y','2025-10-23 00:00:00'),(91670,11,'8A80.1Z','Migraine with aura, unspecified','Y','2025-10-23 00:00:00'),(91671,11,'8A80.0','Migraine without aura','Y','2025-10-23 00:00:00'),(91672,11,'8A80.Z','Migraine, unspecified','Y','2025-10-23 00:00:00'),(91673,11,'8B22.9','Migraine-induced stroke','Y','2025-10-23 00:00:00'),(91674,11,'XE763','Migration of device','Y','2025-10-23 00:00:00'),(91675,11,'XE0VD','Migration or expulsion of device','Y','2025-10-23 00:00:00'),(91676,11,'4A43.1','Mikulicz disease','Y','2025-10-23 00:00:00'),(91677,11,'XS5W','Mild','Y','2025-10-23 00:00:00'),(91678,11,'3A50.00','Mild alpha thalassaemia diseases','Y','2025-10-23 00:00:00'),(91679,11,'KB21.1','Mild and moderate birth asphyxia','Y','2025-10-23 00:00:00'),(91680,11,'6C20.0','Mild bodily distress disorder','Y','2025-10-23 00:00:00'),(91681,11,'XS3R','Mild distress','Y','2025-10-23 00:00:00'),(91682,11,'JA60.0','Mild hyperemesis gravidarum','Y','2025-10-23 00:00:00'),(91683,11,'6D71','Mild neurocognitive disorder','Y','2025-10-23 00:00:00'),(91684,11,'XS5D','Mild pain','Y','2025-10-23 00:00:00'),(91685,11,'XS5R','Mild pain-related interference','Y','2025-10-23 00:00:00'),(91686,11,'6D10.0','Mild personality disorder','Y','2025-10-23 00:00:00'),(91687,11,'XS5E','Mild sepsis','Y','2025-10-23 00:00:00'),(91688,11,'JA24.0','Mild to moderate pre-eclampsia','Y','2025-10-23 00:00:00'),(91689,11,'9D90.1','Mild vision impairment','Y','2025-10-23 00:00:00'),(91690,11,'EE02','Miliaria','Y','2025-10-23 00:00:00'),(91691,11,'1B13','Miliary tuberculosis','Y','2025-10-23 00:00:00'),(91692,11,'1B13.Z','Miliary tuberculosis, unspecified','Y','2025-10-23 00:00:00'),(91693,11,'XE6FD','Military fixed-wing powered aircraft','Y','2025-10-23 00:00:00'),(91694,11,'XE138','Military institution','Y','2025-10-23 00:00:00'),(91695,11,'XE42H','Military personnel','Y','2025-10-23 00:00:00'),(91696,11,'XM7SH2','Milk of magnesia','Y','2025-10-23 00:00:00'),(91697,11,'XM4C00','Millipede toxin','Y','2025-10-23 00:00:00'),(91698,11,'XM6J21','Milnacipran','Y','2025-10-23 00:00:00'),(91699,11,'XM6JT4','Milrinone','Y','2025-10-23 00:00:00'),(91700,11,'XM71Y7','Miltefosine','Y','2025-10-23 00:00:00'),(91701,11,'XM5F96','Milverine','Y','2025-10-23 00:00:00'),(91702,11,'XM5QV7','Minaprine','Y','2025-10-23 00:00:00'),(91703,11,'XM20X3','Minaxolone','Y','2025-10-23 00:00:00'),(91704,11,'XE0Y1','Mine or quarry','Y','2025-10-23 00:00:00'),(91705,11,'5B5K','Mineral deficiencies','Y','2025-10-23 00:00:00'),(91706,11,'5B5K.Z','Mineral deficiency, unspecified','Y','2025-10-23 00:00:00'),(91707,11,'5B91','Mineral excesses','Y','2025-10-23 00:00:00'),(91708,11,'XM9DZ3','Mineral oil emulsion','Y','2025-10-23 00:00:00'),(91709,11,'XM3SU8','Mineral oil nonmedicinal','Y','2025-10-23 00:00:00'),(91710,11,'XM9TZ7','Mineral oil topical','Y','2025-10-23 00:00:00'),(91711,11,'XM5FN3','Mineral salt','Y','2025-10-23 00:00:00'),(91712,11,'XM7CX7','Mineral spirits','Y','2025-10-23 00:00:00'),(91713,11,'XM2E62','Mineral spirits fumes','Y','2025-10-23 00:00:00'),(91714,11,'XM9X54','Mineralocorticosteroid','Y','2025-10-23 00:00:00'),(91715,11,'XE6DC','Minibus','Y','2025-10-23 00:00:00'),(91716,11,'XE0ZL','Minibus or passenger van as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(91717,11,'XE6PF','Minibus or passenger van as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(91718,11,'8E22','Minimally conscious state','Y','2025-10-23 00:00:00'),(91719,11,'8E22.1','Minimally conscious state minus','Y','2025-10-23 00:00:00'),(91720,11,'8E22.0','Minimally conscious state plus','Y','2025-10-23 00:00:00'),(91721,11,'8E22.Z','Minimally conscious state, unspecified','Y','2025-10-23 00:00:00'),(91722,11,'XH2098','Minimally invasive adenocarcinoma, Mucinous','Y','2025-10-23 00:00:00'),(91723,11,'XH3QM0','Minimally invasive adenocarcinoma, Non-mucinous','Y','2025-10-23 00:00:00'),(91724,11,'XE0T7','Minivan as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(91725,11,'XE7LL','Minivan as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(91726,11,'XM5TY0','Minocycline','Y','2025-10-23 00:00:00'),(91727,11,'LA21','Minor anomalies of pinnae','Y','2025-10-23 00:00:00'),(91728,11,'NB90.30','Minor laceration mesenteric artery','Y','2025-10-23 00:00:00'),(91729,11,'NB90.00','Minor laceration of abdominal aorta','Y','2025-10-23 00:00:00'),(91730,11,'NB32.41','Minor laceration of bronchus','Y','2025-10-23 00:00:00'),(91731,11,'NB90.20','Minor laceration of coeliac artery','Y','2025-10-23 00:00:00'),(91732,11,'NB31.01','Minor laceration of heart with haemopericardium','Y','2025-10-23 00:00:00'),(91733,11,'NB90.60','Minor laceration of iliac blood vessels','Y','2025-10-23 00:00:00'),(91734,11,'NB90.10','Minor laceration of inferior vena cava','Y','2025-10-23 00:00:00'),(91735,11,'NB30.10','Minor laceration of innominate or subclavian artery','Y','2025-10-23 00:00:00'),(91736,11,'NB30.30','Minor laceration of innominate or subclavian vein','Y','2025-10-23 00:00:00'),(91737,11,'NB90.40','Minor laceration of portal or splenic vein','Y','2025-10-23 00:00:00'),(91738,11,'NB30.40','Minor laceration of pulmonary blood vessels','Y','2025-10-23 00:00:00'),(91739,11,'NB90.50','Minor laceration of renal blood vessels','Y','2025-10-23 00:00:00'),(91740,11,'NB30.20','Minor laceration of superior vena cava','Y','2025-10-23 00:00:00'),(91741,11,'NB30.00','Minor laceration of thoracic aorta','Y','2025-10-23 00:00:00'),(91742,11,'NB32.51','Minor laceration of thoracic trachea','Y','2025-10-23 00:00:00'),(91743,11,'XA30Q1','Minor salivary gland','Y','2025-10-23 00:00:00'),(91744,11,'XM46T4','Minoxidil','Y','2025-10-23 00:00:00'),(91745,11,'XM3CC3','Miocamycin','Y','2025-10-23 00:00:00'),(91746,11,'XM2JE0','Miotic drug','Y','2025-10-23 00:00:00'),(91747,11,'XM4197','Mipafox','Y','2025-10-23 00:00:00'),(91748,11,'XM7049','Mipomersen','Y','2025-10-23 00:00:00'),(91749,11,'XM5L72','Mirabegron','Y','2025-10-23 00:00:00'),(91750,11,'XM5NU4','Mirex','Y','2025-10-23 00:00:00'),(91751,11,'XE9EM','Mirror component of medical device','Y','2025-10-23 00:00:00'),(91752,11,'XE962','Mirror or mirror glass','Y','2025-10-23 00:00:00'),(91753,11,'XM0B23','Mirtazapine','Y','2025-10-23 00:00:00'),(91754,11,'XE61V','Misassembled','Y','2025-10-23 00:00:00'),(91755,11,'GA43','Miscellaneous dermatoses of female genitalia','Y','2025-10-23 00:00:00'),(91756,11,'GA81','Miscellaneous dermatoses of male genitalia','Y','2025-10-23 00:00:00'),(91757,11,'ME66','Miscellaneous non-specific skin-related symptoms and signs','Y','2025-10-23 00:00:00'),(91758,11,'KC40','Miscellaneous skin disorders in the neonate','Y','2025-10-23 00:00:00'),(91759,11,'KC41','Miscellaneous specified conditions of integument specific to fetus or newborn','Y','2025-10-23 00:00:00'),(91760,11,'DA02','Miscellaneous specified disorders of lips or oral mucosa','Y','2025-10-23 00:00:00'),(91761,11,'EA88','Miscellaneous specified eczematous dermatoses','Y','2025-10-23 00:00:00'),(91762,11,'XE0WB','Misconnection','Y','2025-10-23 00:00:00'),(91763,11,'XE5P4','Misfire','Y','2025-10-23 00:00:00'),(91764,11,'XE5CX','Misfocusing','Y','2025-10-23 00:00:00'),(91765,11,'MB26.0B','Misidentification delusion','Y','2025-10-23 00:00:00'),(91766,11,'PL14.3','Mismatched blood used in transfusion','Y','2025-10-23 00:00:00'),(91767,11,'QA83','Mismatched blood used in transfusion without injury or harm','Y','2025-10-23 00:00:00'),(91768,11,'XM1HA1','Misonidazole','Y','2025-10-23 00:00:00'),(91769,11,'XM28N9','Misoprostol','Y','2025-10-23 00:00:00'),(91770,11,'XE36N','Missassembled during installation','Y','2025-10-23 00:00:00'),(91771,11,'JA03','Missed abortion','Y','2025-10-23 00:00:00'),(91772,11,'LA21.3','Misshapen ear','Y','2025-10-23 00:00:00'),(91773,11,'XJ4CX','Missile fracture','Y','2025-10-23 00:00:00'),(91774,11,'XE0M6','Missing or inadequate safety measures of device identified','Y','2025-10-23 00:00:00'),(91775,11,'XE56S','Missing test results','Y','2025-10-23 00:00:00'),(91776,11,'XH1442','MiT Family translocation carcinomas','Y','2025-10-23 00:00:00'),(91777,11,'XM7967','Mitiglinide','Y','2025-10-23 00:00:00'),(91778,11,'XM31W0','Mitobronitol','Y','2025-10-23 00:00:00'),(91779,11,'5C53.20','Mitochondrial DNA depletion syndromes','Y','2025-10-23 00:00:00'),(91780,11,'8C73','Mitochondrial myopathies','Y','2025-10-23 00:00:00'),(91781,11,'8C73.Z','Mitochondrial myopathies, unspecified','Y','2025-10-23 00:00:00'),(91782,11,'5C53.31','Mitochondrial protein import disorders','Y','2025-10-23 00:00:00'),(91783,11,'5C53.23','Mitochondrial protein translation defects','Y','2025-10-23 00:00:00'),(91784,11,'5C53.30','Mitochondrial substrate carrier disorders','Y','2025-10-23 00:00:00'),(91785,11,'XM2Q11','Mitoguazone','Y','2025-10-23 00:00:00'),(91786,11,'XM6VK8','Mitolactol','Y','2025-10-23 00:00:00'),(91787,11,'XM21Z8','Mitomycin','Y','2025-10-23 00:00:00'),(91788,11,'XM3A89','Mitopodozide','Y','2025-10-23 00:00:00'),(91789,11,'XM10P3','Mitotane','Y','2025-10-23 00:00:00'),(91790,11,'XM26H0','Mitoxantrone','Y','2025-10-23 00:00:00'),(91791,11,'LA89.2','Mitral atresia','Y','2025-10-23 00:00:00'),(91792,11,'BB64','Mitral valvar abscess','Y','2025-10-23 00:00:00'),(91793,11,'XA7V72','Mitral valve','Y','2025-10-23 00:00:00'),(91794,11,'BB6Z','Mitral valve disease, unspecified','Y','2025-10-23 00:00:00'),(91795,11,'BB61','Mitral valve insufficiency','Y','2025-10-23 00:00:00'),(91796,11,'BB61.Z','Mitral valve insufficiency, unspecified','Y','2025-10-23 00:00:00'),(91797,11,'BB62','Mitral valve prolapse','Y','2025-10-23 00:00:00'),(91798,11,'BB62.Z','Mitral valve prolapse, unspecified','Y','2025-10-23 00:00:00'),(91799,11,'BB65','Mitral valve rupture','Y','2025-10-23 00:00:00'),(91800,11,'BB60','Mitral valve stenosis','Y','2025-10-23 00:00:00'),(91801,11,'BB63','Mitral valve stenosis with insufficiency','Y','2025-10-23 00:00:00'),(91802,11,'BB63.Z','Mitral valve stenosis with insufficiency, unspecified','Y','2025-10-23 00:00:00'),(91803,11,'BB60.Z','Mitral valve stenosis, unspecified','Y','2025-10-23 00:00:00'),(91804,11,'XM2SB5','Mivacurium chloride','Y','2025-10-23 00:00:00'),(91805,11,'XH5LD9','Mixed acidophil-basophil adenoma','Y','2025-10-23 00:00:00'),(91806,11,'XH7019','Mixed acidophil-basophil carcinoma','Y','2025-10-23 00:00:00'),(91807,11,'XH9B93','Mixed acinar-ductal carcinoma','Y','2025-10-23 00:00:00'),(91808,11,'XH8EZ3','Mixed acinar-endocrine carcinoma','Y','2025-10-23 00:00:00'),(91809,11,'XH74Y9','Mixed acinar-endocrine-ductal carcinoma','Y','2025-10-23 00:00:00'),(91810,11,'XH0WV8','Mixed adenomatous and hyperplastic polyp','Y','2025-10-23 00:00:00'),(91811,11,'XH6H10','Mixed adenoneuroendocrine carcinoma','Y','2025-10-23 00:00:00'),(91812,11,'CA08.Y','Mixed allergic and non-allergic rhinitis','Y','2025-10-23 00:00:00'),(91813,11,'XH2AM6','Mixed cell adenocarcinoma','Y','2025-10-23 00:00:00'),(91814,11,'XH1XU4','Mixed cell adenoma','Y','2025-10-23 00:00:00'),(91815,11,'2B30.12','Mixed cellularity classical Hodgkin lymphoma','Y','2025-10-23 00:00:00'),(91816,11,'4A43.3','Mixed connective tissue disease','Y','2025-10-23 00:00:00'),(91817,11,'6A73','Mixed depressive and anxiety disorder','Y','2025-10-23 00:00:00'),(91818,11,'5C75','Mixed disorder of acid-base balance','Y','2025-10-23 00:00:00'),(91819,11,'2E65.4','Mixed ductal and lobular carcinoma in situ of breast','Y','2025-10-23 00:00:00'),(91820,11,'XH7CY5','Mixed ductal-endocrine carcinoma','Y','2025-10-23 00:00:00'),(91821,11,'XH08B3','Mixed embryonal rhabdomyosarcoma and alveolar rhabdomyosarcoma','Y','2025-10-23 00:00:00'),(91822,11,'XH6UP4','Mixed endocrine and exocrine adenocarcinoma','Y','2025-10-23 00:00:00'),(91823,11,'XH0533','Mixed epithelial and stromal tumour','Y','2025-10-23 00:00:00'),(91824,11,'XH8HA2','Mixed epithelioid and spindle cell melanoma','Y','2025-10-23 00:00:00'),(91825,11,'XH2PS1','Mixed germ cell tumour','Y','2025-10-23 00:00:00'),(91826,11,'XH0U48','Mixed germ cell-sex cord-stromal tumour, NOS','Y','2025-10-23 00:00:00'),(91827,11,'XH27A8','Mixed germ cell-sex cord-stromal tumour, unclassified','Y','2025-10-23 00:00:00'),(91828,11,'5C80.2','Mixed hyperlipidaemia','Y','2025-10-23 00:00:00'),(91829,11,'MF50.22','Mixed incontinence','Y','2025-10-23 00:00:00'),(91830,11,'1F90.0','Mixed intestinal helminthiases','Y','2025-10-23 00:00:00'),(91831,11,'1C1E.3','Mixed lesions of pinta','Y','2025-10-23 00:00:00'),(91832,11,'XH8VG3','Mixed liposarcoma','Y','2025-10-23 00:00:00'),(91833,11,'XH7DG7','Mixed medullary-follicular carcinoma','Y','2025-10-23 00:00:00'),(91834,11,'XH3340','Mixed medullary-papillary carcinoma','Y','2025-10-23 00:00:00'),(91835,11,'KB2A.2','Mixed neonatal apnoea','Y','2025-10-23 00:00:00'),(91836,11,'XH8E54','Mixed neuroendocrine non-neuroendocrine neoplasm (MiNEN)','Y','2025-10-23 00:00:00'),(91837,11,'2A00.21','Mixed neuronal-glial tumours','Y','2025-10-23 00:00:00'),(91838,11,'XH9LZ7','Mixed pancreatic endocrine and exocrine tumour, malignant','Y','2025-10-23 00:00:00'),(91839,11,'XH97B7','Mixed phenotype acute leukaemia with t(9;22)(q34;q11.2); BCR-ABL1','Y','2025-10-23 00:00:00'),(91840,11,'XH2S51','Mixed phenotype acute leukaemia with t(v;11q23); MLL rearranged','Y','2025-10-23 00:00:00'),(91841,11,'XH1928','Mixed phenotype acute leukaemia, B/myeloid, NOS','Y','2025-10-23 00:00:00'),(91842,11,'XH4YB5','Mixed phenotype acute leukaemia, T/myeloid, NOS','Y','2025-10-23 00:00:00'),(91843,11,'XH2S71','Mixed pineal tumour','Y','2025-10-23 00:00:00'),(91844,11,'CA08.2','Mixed rhinitis','Y','2025-10-23 00:00:00'),(91845,11,'CA20.12','Mixed simple and mucopurulent chronic bronchitis','Y','2025-10-23 00:00:00'),(91846,11,'XH1TX5','Mixed squamous cell and glandular papilloma','Y','2025-10-23 00:00:00'),(91847,11,'XH6738','Mixed subependymoma-ependymoma','Y','2025-10-23 00:00:00'),(91848,11,'XH5U02','Mixed teratoma and seminoma','Y','2025-10-23 00:00:00'),(91849,11,'XH0V86','Mixed tumour, malignant, NOS','Y','2025-10-23 00:00:00'),(91850,11,'XH6YL0','Mixed type rhabdomyosarcoma','Y','2025-10-23 00:00:00'),(91851,11,'GC40.52','Mixed urinary incontinence associated with pelvic organ prolapse','Y','2025-10-23 00:00:00'),(91852,11,'XM2UP7','Miyari bacteria','Y','2025-10-23 00:00:00'),(91853,11,'XM7J45','Mizolastine','Y','2025-10-23 00:00:00'),(91854,11,'XE8TB','Mobile crane','Y','2025-10-23 00:00:00'),(91855,11,'XE7X0','Mobile machinery or special purpose vehicle mainly used in agriculture','Y','2025-10-23 00:00:00'),(91856,11,'XE1GE','Mobile machinery or special purpose vehicle mainly used in construction','Y','2025-10-23 00:00:00'),(91857,11,'XE0M8','Mobile machinery or special purpose vehicle mainly used in industry','Y','2025-10-23 00:00:00'),(91858,11,'PK9A.23','Mobility aids associated with adverse incidents','Y','2025-10-23 00:00:00'),(91859,11,'VV60','Mobility of joint functions','Y','2025-10-23 00:00:00'),(91860,11,'XE93R','Mobility scooter as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(91861,11,'XE0TE','Mobility scooter as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(91862,11,'VW1Z','Mobility, unspecified','Y','2025-10-23 00:00:00'),(91863,11,'XM14X9','Moclobemide','Y','2025-10-23 00:00:00'),(91864,11,'XM75Z6','Modafinil','Y','2025-10-23 00:00:00'),(91865,11,'PL12','Mode of injury or harm associated with a surgical or other medical device, implant or graft','Y','2025-10-23 00:00:00'),(91866,11,'PL12.Z','Mode of injury or harm associated with a surgical or other medical device, implant or graft, unspecified','Y','2025-10-23 00:00:00'),(91867,11,'PL11','Mode of injury or harm associated with a surgical or other medical procedure','Y','2025-10-23 00:00:00'),(91868,11,'PL13','Mode of injury or harm associated with exposure to a drug, medicament or biological substance','Y','2025-10-23 00:00:00'),(91869,11,'PL13.Z','Mode of injury or harm associated with exposure to a drug, medicament or biological substance, unspecified','Y','2025-10-23 00:00:00'),(91870,11,'PL14','Mode of injury or harm associated with other health care related causes','Y','2025-10-23 00:00:00'),(91871,11,'PL14.Z','Mode of injury or harm associated with other health care related causes, unspecified','Y','2025-10-23 00:00:00'),(91872,11,'XS0T','Moderate','Y','2025-10-23 00:00:00'),(91873,11,'SE78','Moderate (Heat/Cold) pattern (TM1)','Y','2025-10-23 00:00:00'),(91874,11,'6C20.1','Moderate bodily distress disorder','Y','2025-10-23 00:00:00'),(91875,11,'XS7C','Moderate distress','Y','2025-10-23 00:00:00'),(91876,11,'NB32.42','Moderate laceration of bronchus','Y','2025-10-23 00:00:00'),(91877,11,'NB31.02','Moderate laceration of heart with haemopericardium','Y','2025-10-23 00:00:00'),(91878,11,'NB32.52','Moderate laceration of thoracic trachea','Y','2025-10-23 00:00:00'),(91879,11,'XS9Q','Moderate pain','Y','2025-10-23 00:00:00'),(91880,11,'XS2L','Moderate pain-related interference','Y','2025-10-23 00:00:00'),(91881,11,'6D10.1','Moderate personality disorder','Y','2025-10-23 00:00:00'),(91882,11,'9D90.2','Moderate vision impairment','Y','2025-10-23 00:00:00'),(91883,11,'XM7HA8','Moderil','Y','2025-10-23 00:00:00'),(91884,11,'XM6DX1','Moexipril','Y','2025-10-23 00:00:00'),(91885,11,'XM8P27','Mofebutazone','Y','2025-10-23 00:00:00'),(91886,11,'XM3JP4','Mogamulizumab','Y','2025-10-23 00:00:00'),(91887,11,'XE8HD','Moisture or humidity problem','Y','2025-10-23 00:00:00'),(91888,11,'XM1RY2','Mojave rattlesnake venom','Y','2025-10-23 00:00:00'),(91889,11,'JA02','Molar pregnancy','Y','2025-10-23 00:00:00'),(91890,11,'JA02.Z','Molar pregnancy, unspecified','Y','2025-10-23 00:00:00'),(91891,11,'XM81Z8','Mole viper snake venom','Y','2025-10-23 00:00:00'),(91892,11,'XM2M96','Molgramostim','Y','2025-10-23 00:00:00'),(91893,11,'XM61G1','Molindone','Y','2025-10-23 00:00:00'),(91894,11,'XM0ZQ8','Molluscicide, not elsewhere classified','Y','2025-10-23 00:00:00'),(91895,11,'XN5G8','Molluscipoxvirus','Y','2025-10-23 00:00:00'),(91896,11,'1E76','Molluscum contagiosum','Y','2025-10-23 00:00:00'),(91897,11,'XN7YE','Molluscum contagiosum virus','Y','2025-10-23 00:00:00'),(91898,11,'XM5720','Molsidomine','Y','2025-10-23 00:00:00'),(91899,11,'XE57U','Molten glass','Y','2025-10-23 00:00:00'),(91900,11,'XE983','Molten metal','Y','2025-10-23 00:00:00'),(91901,11,'5B5K.A','Molybdenum deficiency','Y','2025-10-23 00:00:00'),(91902,11,'XM8PN0','Mometasone','Y','2025-10-23 00:00:00'),(91903,11,'BD70.3','Mondor disease','Y','2025-10-23 00:00:00'),(91904,11,'GB06.3','Mondor disease of the penis','Y','2025-10-23 00:00:00'),(91905,11,'XM9GV7','Moniliformin','Y','2025-10-23 00:00:00'),(91906,11,'XM9A06','Monistat','Y','2025-10-23 00:00:00'),(91907,11,'KA42.3','Monitoring injury of scalp of newborn','Y','2025-10-23 00:00:00'),(91908,11,'1E71','Monkeypox','Y','2025-10-23 00:00:00'),(91909,11,'XN2GM','Monkeypox virus','Y','2025-10-23 00:00:00'),(91910,11,'XM1UL5','Monoamine oxidase A inhibitors','Y','2025-10-23 00:00:00'),(91911,11,'XM9GG4','Monoamine oxidase B inhibitors','Y','2025-10-23 00:00:00'),(91912,11,'XM6944','Monoamine oxidase inhibitor','Y','2025-10-23 00:00:00'),(91913,11,'XM2GX9','Monoamine oxidase inhibitor hydrazine','Y','2025-10-23 00:00:00'),(91914,11,'XA4BF0','Monoarticular','Y','2025-10-23 00:00:00'),(91915,11,'XM3XC6','Monobactams','Y','2025-10-23 00:00:00'),(91916,11,'XM8N27','Monobenzone','Y','2025-10-23 00:00:00'),(91917,11,'XM1JG6','Monoclonal antibodies and antibody drug conjugates','Y','2025-10-23 00:00:00'),(91918,11,'XM4U85','Monoclonal antibodies used in airway diseases','Y','2025-10-23 00:00:00'),(91919,11,'XH5M35','Monoclonal B-cell lymphocytosis, non-CLL type','Y','2025-10-23 00:00:00'),(91920,11,'XH73D5','Monoclonal B-cell lymphocytosis, NOS','Y','2025-10-23 00:00:00'),(91921,11,'2A83.0','Monoclonal gammopathy of undetermined significance','Y','2025-10-23 00:00:00'),(91922,11,'XH1NV1','Monoclonal gammopathy of undetermined significance','Y','2025-10-23 00:00:00'),(91923,11,'2A83.5','Monoclonal immunoglobulin deposition disease','Y','2025-10-23 00:00:00'),(91924,11,'XM27J3','Monocrotophos','Y','2025-10-23 00:00:00'),(91925,11,'9C83.02','Monocular elevator palsy','Y','2025-10-23 00:00:00'),(91926,11,'XA46Q2','Monocytes','Y','2025-10-23 00:00:00'),(91927,11,'XH5JT8','Monocytic leukaemia, NOS','Y','2025-10-23 00:00:00'),(91928,11,'XM3WS8','Monoethanolamine','Y','2025-10-23 00:00:00'),(91929,11,'4A60','Monogenic autoinflammatory syndromes','Y','2025-10-23 00:00:00'),(91930,11,'8B60.6','Monomelic amyotrophy','Y','2025-10-23 00:00:00'),(91931,11,'XE4VK','Monomer liquid component of medical device','Y','2025-10-23 00:00:00'),(91932,11,'XH2CQ8','Monomorphic adenoma','Y','2025-10-23 00:00:00'),(91933,11,'XH1AG7','Monomorphic epitheliotropic intestinal T-cell lymphoma','Y','2025-10-23 00:00:00'),(91934,11,'8C12.1','Mononeuritis multiplex','Y','2025-10-23 00:00:00'),(91935,11,'8C11','Mononeuropathies of lower limb','Y','2025-10-23 00:00:00'),(91936,11,'8C11.Z','Mononeuropathies of lower limb, unspecified','Y','2025-10-23 00:00:00'),(91937,11,'8C10','Mononeuropathies of upper limb','Y','2025-10-23 00:00:00'),(91938,11,'8C10.Z','Mononeuropathies of upper limb, unspecified','Y','2025-10-23 00:00:00'),(91939,11,'8C12.Y','Mononeuropathy of other specified nerve','Y','2025-10-23 00:00:00'),(91940,11,'8C1Y','Mononeuropathy of other specified site','Y','2025-10-23 00:00:00'),(91941,11,'8C1Z','Mononeuropathy of unspecified site','Y','2025-10-23 00:00:00'),(91942,11,'XN3WK','Monongahela virus','Y','2025-10-23 00:00:00'),(91943,11,'XA0GJ0','Mononuclear phagocyte system','Y','2025-10-23 00:00:00'),(91944,11,'1D81.1','Mononucleosis due to cytomegalovirus','Y','2025-10-23 00:00:00'),(91945,11,'1D81.0','Mononucleosis due to Epstein-Barr virus','Y','2025-10-23 00:00:00'),(91946,11,'XM56J1','Monooctanoin','Y','2025-10-23 00:00:00'),(91947,11,'MB55','Monoplegia of lower extremity','Y','2025-10-23 00:00:00'),(91948,11,'MB55.Z','Monoplegia of lower extremity, unspecified','Y','2025-10-23 00:00:00'),(91949,11,'MB54','Monoplegia of upper extremity','Y','2025-10-23 00:00:00'),(91950,11,'MB54.Z','Monoplegia of upper extremity, unspecified','Y','2025-10-23 00:00:00'),(91951,11,'XM34R5','Monosodium glutamate','Y','2025-10-23 00:00:00'),(91952,11,'XM7EF1','monoxerutin','Y','2025-10-23 00:00:00'),(91953,11,'XA10Z0','Mons pubis','Y','2025-10-23 00:00:00'),(91954,11,'XM10P5','Montelukast','Y','2025-10-23 00:00:00'),(91955,11,'XM0TQ1','Monuron','Y','2025-10-23 00:00:00'),(91956,11,'6C4F.70','Mood disorder induced by multiple specified psychoactive substances','Y','2025-10-23 00:00:00'),(91957,11,'6C4E.70','Mood disorder induced by other specified psychoactive substance','Y','2025-10-23 00:00:00'),(91958,11,'6C4G.70','Mood disorder induced by unknown or unspecified psychoactive substance','Y','2025-10-23 00:00:00'),(91959,11,'6A8Z','Mood disorders, unspecified','Y','2025-10-23 00:00:00'),(91960,11,'6D86.1','Mood symptoms in dementia','Y','2025-10-23 00:00:00'),(91961,11,'XM3G20','Moorish viper snake venom','Y','2025-10-23 00:00:00'),(91962,11,'XE0V4','Moped as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(91963,11,'XE2J1','Moped as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(91964,11,'XE9N6','Moped, scooter','Y','2025-10-23 00:00:00'),(91965,11,'XM7DW6','Moperone','Y','2025-10-23 00:00:00'),(91966,11,'XM0KZ3','Mopidamol','Y','2025-10-23 00:00:00'),(91967,11,'XM3L39','MOPP (mechloreth-amine + vincristine + prednisone + procarbazine)','Y','2025-10-23 00:00:00'),(91968,11,'XM6KX7','Moracizine','Y','2025-10-23 00:00:00'),(91969,11,'XN90V','Moraxella','Y','2025-10-23 00:00:00'),(91970,11,'JA8A.2','Morbidly adherent placenta','Y','2025-10-23 00:00:00'),(91971,11,'XM2W89','Morclofone','Y','2025-10-23 00:00:00'),(91972,11,'XN8G6','Morganella','Y','2025-10-23 00:00:00'),(91973,11,'XM8UX1','Morinamide','Y','2025-10-23 00:00:00'),(91974,11,'XM1019','Morniflumate','Y','2025-10-23 00:00:00'),(91975,11,'XM32H5','Morning glory seeds','Y','2025-10-23 00:00:00'),(91976,11,'SC00','Morning sickness disorder (TM1)','Y','2025-10-23 00:00:00'),(91977,11,'XM5GV1','Moroxydine','Y','2025-10-23 00:00:00'),(91978,11,'XM6LM1','Morphazinamide','Y','2025-10-23 00:00:00'),(91979,11,'XM09R6','Morphinan derivatives','Y','2025-10-23 00:00:00'),(91980,11,'XM1KZ5','Morphine','Y','2025-10-23 00:00:00'),(91981,11,'XM4HP3','Morphine antagonist','Y','2025-10-23 00:00:00'),(91982,11,'XM69R4','Morphine, morphine derivatives and metabolites','Y','2025-10-23 00:00:00'),(91983,11,'EB61','Morphoea','Y','2025-10-23 00:00:00'),(91984,11,'XM49Y6','Morpholine salicylate','Y','2025-10-23 00:00:00'),(91985,11,'XM7VL7','Morpholinylethylmorphine','Y','2025-10-23 00:00:00'),(91986,11,'XM1A88','Morpholinylmercaptobenzothiazole','Y','2025-10-23 00:00:00'),(91987,11,'XM6421','Morsuximide','Y','2025-10-23 00:00:00'),(91988,11,'LD43.1','Mosaic monosomy of autosome','Y','2025-10-23 00:00:00'),(91989,11,'LD50.04','Mosaicism, 45, X or other cell line with abnormal sex chromosome','Y','2025-10-23 00:00:00'),(91990,11,'LD50.03','Mosaicism, 45, X, 46, XX or XY','Y','2025-10-23 00:00:00'),(91991,11,'LD50.2','Mosaicism, lines with various numbers of X chromosomes','Y','2025-10-23 00:00:00'),(91992,11,'XM88L2','Mosapramine','Y','2025-10-23 00:00:00'),(91993,11,'XM6ZM7','Mosapride','Y','2025-10-23 00:00:00'),(91994,11,'XN34P','Mosso das Pedras virus','Y','2025-10-23 00:00:00'),(91995,11,'XM0QB1','Motavizumab','Y','2025-10-23 00:00:00'),(91996,11,'DA21.1','Motility disorder of cervical or upper oesophagus','Y','2025-10-23 00:00:00'),(91997,11,'DB32','Motility disorders of large intestine','Y','2025-10-23 00:00:00'),(91998,11,'DB32.Z','Motility disorders of large intestine, unspecified','Y','2025-10-23 00:00:00'),(91999,11,'DA21','Motility disorders of oesophagus','Y','2025-10-23 00:00:00'),(92000,11,'DA21.Z','Motility disorders of oesophagus, unspecified','Y','2025-10-23 00:00:00'),(92001,11,'DA93','Motility disorders of small intestine','Y','2025-10-23 00:00:00'),(92002,11,'DA93.Z','Motility disorders of small intestine, unspecified','Y','2025-10-23 00:00:00'),(92003,11,'NF08.3','Motion sickness','Y','2025-10-23 00:00:00'),(92004,11,'XE62M','Motor car as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(92005,11,'XE0R5','Motor component of medical device','Y','2025-10-23 00:00:00'),(92006,11,'XE3FP','Motor home','Y','2025-10-23 00:00:00'),(92007,11,'XA5DJ5','Motor Neuron','Y','2025-10-23 00:00:00'),(92008,11,'8B60','Motor neuron disease','Y','2025-10-23 00:00:00'),(92009,11,'8B60.Z','Motor neuron disease, unspecified','Y','2025-10-23 00:00:00'),(92010,11,'8B6Z','Motor neuron diseases or related disorders, unspecified','Y','2025-10-23 00:00:00'),(92011,11,'XE9FR','Motor scooter as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(92012,11,'XE9BU','Motor scooter as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(92013,11,'XE98K','Motor, engine, not elsewhere classified','Y','2025-10-23 00:00:00'),(92014,11,'XE0LP','Motorcar as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(92015,11,'XE0TY','Motorcycle','Y','2025-10-23 00:00:00'),(92016,11,'XE8XQ','Motorcycle as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(92017,11,'XE7NK','Motorcycle as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(92018,11,'XE1SA','Motorised bicycle as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(92019,11,'XE9RC','Motorised bicycle as mode of transport of injured person in transport related event','Y','2025-10-23 00:00:00'),(92020,11,'XE3ZP','Motorised twoor three-wheeled vehicle','Y','2025-10-23 00:00:00'),(92021,11,'XE80N','Motorised wheelchair as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(92022,11,'XE3WZ','Motorised yacht, motorboat, powered boat, personal powered watercraft','Y','2025-10-23 00:00:00'),(92023,11,'XE8C8','Motorized wheelchair','Y','2025-10-23 00:00:00'),(92024,11,'XE9ML','Mototaxi as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(92025,11,'XE1DF','Mototaxi as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(92026,11,'XM6KD7','Motretinide','Y','2025-10-23 00:00:00'),(92027,11,'XE8X1','Mount component of medical device','Y','2025-10-23 00:00:00'),(92028,11,'XM1LF5','Mouse spider venom','Y','2025-10-23 00:00:00'),(92029,11,'XA8182','Mouth','Y','2025-10-23 00:00:00'),(92030,11,'MD11.8','Mouth breathing','Y','2025-10-23 00:00:00'),(92031,11,'MD11.8Z','Mouth breathing, unspecified','Y','2025-10-23 00:00:00'),(92032,11,'DA01.15','Mouth ulcers','Y','2025-10-23 00:00:00'),(92033,11,'8D43.4','Movement disorders due to toxicity','Y','2025-10-23 00:00:00'),(92034,11,'9A05','Movement disorders of eyelid','Y','2025-10-23 00:00:00'),(92035,11,'9A05.Z','Movement disorders of eyelid, unspecified','Y','2025-10-23 00:00:00'),(92036,11,'8A0Z','Movement disorders, unspecified','Y','2025-10-23 00:00:00'),(92037,11,'VD13','Moving around outside the home and other buildings [WHODAS]','Y','2025-10-23 00:00:00'),(92038,11,'VW15','Moving around using equipment','Y','2025-10-23 00:00:00'),(92039,11,'VW14','Moving around within the home','Y','2025-10-23 00:00:00'),(92040,11,'VD12','Moving around within the home [WHODAS]','Y','2025-10-23 00:00:00'),(92041,11,'XE0KF','Moving ramp','Y','2025-10-23 00:00:00'),(92042,11,'XE9QW','Moving ramp, escalator','Y','2025-10-23 00:00:00'),(92043,11,'XM7RF2','Moxastine','Y','2025-10-23 00:00:00'),(92044,11,'XM1V30','Moxaverine','Y','2025-10-23 00:00:00'),(92045,11,'XM7ST1','Moxestrol','Y','2025-10-23 00:00:00'),(92046,11,'XM7F99','Moxidectin','Y','2025-10-23 00:00:00'),(92047,11,'XM8147','Moxifloxacin','Y','2025-10-23 00:00:00'),(92048,11,'XM6VX8','Moxifloxacin topical','Y','2025-10-23 00:00:00'),(92049,11,'XM8YE5','Moxisylyte','Y','2025-10-23 00:00:00'),(92050,11,'XM4NH5','Moxonidine','Y','2025-10-23 00:00:00'),(92051,11,'XM0T83','Moxonidine hydrochloride','Y','2025-10-23 00:00:00'),(92052,11,'8B22.B','Moyamoya syndrome','Y','2025-10-23 00:00:00'),(92053,11,'XM6U92','Mozambique spitting cobra venom','Y','2025-10-23 00:00:00'),(92054,11,'XH8HF5','MPNST with glandular differentiation','Y','2025-10-23 00:00:00'),(92055,11,'XH7HR8','MPNST with mesenchymal differentiation','Y','2025-10-23 00:00:00'),(92056,11,'XH3W53','MPNST with perineurial differentiation','Y','2025-10-23 00:00:00'),(92057,11,'2A84.2','Mu heavy chain disease','Y','2025-10-23 00:00:00'),(92058,11,'XH2JK2','Mu heavy chain disease','Y','2025-10-23 00:00:00'),(92059,11,'XN7PD','Mucambo virus','Y','2025-10-23 00:00:00'),(92060,11,'XM5VW0','Mucilage, plant','Y','2025-10-23 00:00:00'),(92061,11,'XH7284','Mucinous adenocarcinofibroma','Y','2025-10-23 00:00:00'),(92062,11,'XH1S75','Mucinous adenocarcinoma','Y','2025-10-23 00:00:00'),(92063,11,'2B81.00','Mucinous adenocarcinoma of appendix','Y','2025-10-23 00:00:00'),(92064,11,'2C73.04','Mucinous adenocarcinoma of ovary','Y','2025-10-23 00:00:00'),(92065,11,'XH7AR7','Mucinous adenofibroma of borderline malignancy','Y','2025-10-23 00:00:00'),(92066,11,'XH59X8','Mucinous adenofibroma, NOS','Y','2025-10-23 00:00:00'),(92067,11,'XH2M29','Mucinous adenoma','Y','2025-10-23 00:00:00'),(92068,11,'2C11.1','Mucinous carcinoma of other or ill-defined digestive organs','Y','2025-10-23 00:00:00'),(92069,11,'XH4KC5','Mucinous carcinoma, gastric type','Y','2025-10-23 00:00:00'),(92070,11,'XH0WW5','Mucinous cystadenocarcinofibroma','Y','2025-10-23 00:00:00'),(92071,11,'XH06M2','Mucinous cystadenocarcinoma, non-invasive','Y','2025-10-23 00:00:00'),(92072,11,'XH1390','Mucinous cystadenocarcinoma, NOS','Y','2025-10-23 00:00:00'),(92073,11,'XH2YZ1','Mucinous cystadenofibroma of borderline malignancy','Y','2025-10-23 00:00:00'),(92074,11,'XH9SM7','Mucinous cystadenofibroma, NOS','Y','2025-10-23 00:00:00'),(92075,11,'XH6H73','Mucinous cystadenoma, NOS','Y','2025-10-23 00:00:00'),(92076,11,'2C14.1','Mucinous cystic neoplasm with associated invasive carcinoma of cystic duct','Y','2025-10-23 00:00:00'),(92077,11,'2C15.1','Mucinous cystic neoplasm with associated invasive carcinoma of distal bile duct','Y','2025-10-23 00:00:00'),(92078,11,'2C17.1','Mucinous cystic neoplasm with associated invasive carcinoma of other or unspecified parts of biliary tract','Y','2025-10-23 00:00:00'),(92079,11,'2C18.1','Mucinous cystic neoplasm with associated invasive carcinoma of perihilar bile duct','Y','2025-10-23 00:00:00'),(92080,11,'XH81P3','Mucinous cystic neoplasm with high-grade dysplasia','Y','2025-10-23 00:00:00'),(92081,11,'XH8XL1','Mucinous cystic neoplasm with intermediate-grade dysplasia','Y','2025-10-23 00:00:00'),(92082,11,'XH8EW6','Mucinous cystic neoplasm with intermediate-grade intraepithelial neoplasia','Y','2025-10-23 00:00:00'),(92083,11,'XH0EK3','Mucinous cystic neoplasm with low-grade dysplasia','Y','2025-10-23 00:00:00'),(92084,11,'XH6NK7','Mucinous cystic neoplasm with low-grade intraepithelial neoplasia','Y','2025-10-23 00:00:00'),(92085,11,'XH2FF0','Mucinous cystic tumour of borderline malignancy','Y','2025-10-23 00:00:00'),(92086,11,'XH1K19','Mucinous cystic tumour with an associated invasive carcinoma','Y','2025-10-23 00:00:00'),(92087,11,'XH7K36','Mucinous cystic tumour with intermediate dysplasia','Y','2025-10-23 00:00:00'),(92088,11,'XH7834','Mucinous cystic tumour with moderate dysplasia','Y','2025-10-23 00:00:00'),(92089,11,'2C72.1','Mucinous or serous carcinoma of uterine ligament, parametrium, or uterine adnexa','Y','2025-10-23 00:00:00'),(92090,11,'XH5EQ2','Mucinous tubular and spindle cell carcinoma','Y','2025-10-23 00:00:00'),(92091,11,'XH5AF5','Mucin-producing adenocarcinoma','Y','2025-10-23 00:00:00'),(92092,11,'DB11.6','Mucocele of appendix','Y','2025-10-23 00:00:00'),(92093,11,'DA04.5','Mucocele of salivary gland','Y','2025-10-23 00:00:00'),(92094,11,'EB12.1','Mucocutaneous erythema multiforme','Y','2025-10-23 00:00:00'),(92095,11,'1F54.2','Mucocutaneous leishmaniasis','Y','2025-10-23 00:00:00'),(92096,11,'4A44.5','Mucocutaneous lymph node syndrome','Y','2025-10-23 00:00:00'),(92097,11,'EC92','Mucocutaneous or cutaneous pain syndromes','Y','2025-10-23 00:00:00'),(92098,11,'XH1J36','Mucoepidermoid carcinoma','Y','2025-10-23 00:00:00'),(92099,11,'2D03.1','Mucoepidermoid carcinoma of lacrimal apparatus','Y','2025-10-23 00:00:00'),(92100,11,'XH80V3','Mucoepidermoid tumour','Y','2025-10-23 00:00:00'),(92101,11,'5C56.20','Mucolipidosis','Y','2025-10-23 00:00:00'),(92102,11,'XM4DQ1','Mucolytic drug','Y','2025-10-23 00:00:00'),(92103,11,'5C56.3','Mucopolysaccharidosis','Y','2025-10-23 00:00:00'),(92104,11,'5C56.30','Mucopolysaccharidosis type 1','Y','2025-10-23 00:00:00'),(92105,11,'5C56.31','Mucopolysaccharidosis type 2','Y','2025-10-23 00:00:00'),(92106,11,'5C56.32','Mucopolysaccharidosis type 4','Y','2025-10-23 00:00:00'),(92107,11,'5C56.33','Mucopolysaccharidosis type 6','Y','2025-10-23 00:00:00'),(92108,11,'5C56.3Z','Mucopolysaccharidosis, unspecified','Y','2025-10-23 00:00:00'),(92109,11,'CA20.11','Mucopurulent chronic bronchitis','Y','2025-10-23 00:00:00'),(92110,11,'9A60.3','Mucopurulent conjunctivitis','Y','2025-10-23 00:00:00'),(92111,11,'9A60.3Z','Mucopurulent conjunctivitis, unspecified','Y','2025-10-23 00:00:00'),(92112,11,'XN1NU','Mucor','Y','2025-10-23 00:00:00'),(92113,11,'1F2C','Mucormycosis','Y','2025-10-23 00:00:00'),(92114,11,'XA0PT3','Mucosa','Y','2025-10-23 00:00:00'),(92115,11,'XA8CF9','Mucosa of floor of mouth','Y','2025-10-23 00:00:00'),(92116,11,'AB91','Mucosal cyst of postmastoidectomy cavity','Y','2025-10-23 00:00:00'),(92117,11,'XH5QP3','Mucosal lentiginous melanoma','Y','2025-10-23 00:00:00'),(92118,11,'ED61.1','Mucosal melanosis','Y','2025-10-23 00:00:00'),(92119,11,'XA1CP6','Mucosal surface of prepuce','Y','2025-10-23 00:00:00'),(92120,11,'XH5RX2','Mucous gland adenoma','Y','2025-10-23 00:00:00'),(92121,11,'EB41.1','Mucous membrane pemphigoid','Y','2025-10-23 00:00:00'),(92122,11,'9A62','Mucous membrane pemphigoid with ocular involvement','Y','2025-10-23 00:00:00'),(92123,11,'XN8AF','Muju virus','Y','2025-10-23 00:00:00'),(92124,11,'XN5SF','Muleshoe virus','Y','2025-10-23 00:00:00'),(92125,11,'XM9E44','Mulga snake venom','Y','2025-10-23 00:00:00'),(92126,11,'XH7ZJ9','Mullerian mixed tumour','Y','2025-10-23 00:00:00'),(92127,11,'MG4A','Multi organ failure','Y','2025-10-23 00:00:00'),(92128,11,'1B20.1','Multibacillary leprosy','Y','2025-10-23 00:00:00'),(92129,11,'LB30.9','Multicystic renal dysplasia','Y','2025-10-23 00:00:00'),(92130,11,'XE7BS','Multidiscipline sports','Y','2025-10-23 00:00:00'),(92131,11,'MG52.00','Multi-drug resistant Mycobacterium tuberculosis','Y','2025-10-23 00:00:00'),(92132,11,'XM5888','Multienzymes','Y','2025-10-23 00:00:00'),(92133,11,'XA8512','Multifidus muscle','Y','2025-10-23 00:00:00'),(92134,11,'XA33T4','Multifidus tendon','Y','2025-10-23 00:00:00'),(92135,11,'8E64','Multifocal cerebral infarctions','Y','2025-10-23 00:00:00'),(92136,11,'2E81.21','Multifocal infantile haemangioma','Y','2025-10-23 00:00:00'),(92137,11,'XH7PR9','Multilocular cystic renal neoplasm of low malignant potential','Y','2025-10-23 00:00:00'),(92138,11,'XH6CZ4','Multiple adenomatous polyps','Y','2025-10-23 00:00:00'),(92139,11,'FA85.11','Multiple anterior endplate defect','Y','2025-10-23 00:00:00'),(92140,11,'2F20.00','Multiple benign melanocytic naevi','Y','2025-10-23 00:00:00'),(92141,11,'JB24','Multiple delivery','Y','2025-10-23 00:00:00'),(92142,11,'JB24.3','Multiple delivery by combination of methods with caesarean','Y','2025-10-23 00:00:00'),(92143,11,'JB24.2','Multiple delivery, all by caesarean section','Y','2025-10-23 00:00:00'),(92144,11,'JB24.1','Multiple delivery, all by forceps or vacuum extractor','Y','2025-10-23 00:00:00'),(92145,11,'JB24.0','Multiple delivery, all spontaneous','Y','2025-10-23 00:00:00'),(92146,11,'JB24.Z','Multiple delivery, unspecified','Y','2025-10-23 00:00:00'),(92147,11,'LD2Z','Multiple developmental anomalies or syndromes, unspecified','Y','2025-10-23 00:00:00'),(92148,11,'NC54.3','Multiple dislocations of fingers','Y','2025-10-23 00:00:00'),(92149,11,'NA23.3','Multiple dislocations of neck','Y','2025-10-23 00:00:00'),(92150,11,'4A85.04','Multiple drug hypersensitivity syndrome','Y','2025-10-23 00:00:00'),(92151,11,'XH76W6','Multiple endocrine adenomas','Y','2025-10-23 00:00:00'),(92152,11,'LD24.6','Multiple epiphyseal dysplasia or pseudoachondroplasia','Y','2025-10-23 00:00:00'),(92153,11,'LD24.6Z','Multiple epiphyseal dysplasia or pseudoachondroplasia, unspecified','Y','2025-10-23 00:00:00'),(92154,11,'LD24.61','Multiple epiphyseal dysplasias','Y','2025-10-23 00:00:00'),(92155,11,'NA07.47','Multiple focal injuries of cerebellum','Y','2025-10-23 00:00:00'),(92156,11,'NA07.43','Multiple focal injuries of cerebrum','Y','2025-10-23 00:00:00'),(92157,11,'NA02.8','Multiple fractures involving skull or facial bones','Y','2025-10-23 00:00:00'),(92158,11,'NA22.3','Multiple fractures of cervical spine','Y','2025-10-23 00:00:00'),(92159,11,'NC12.03','Multiple fractures of clavicle, alone','Y','2025-10-23 00:00:00'),(92160,11,'NC12.5','Multiple fractures of clavicle, scapula or humerus','Y','2025-10-23 00:00:00'),(92161,11,'NC72.7','Multiple fractures of femur','Y','2025-10-23 00:00:00'),(92162,11,'NC53.7','Multiple fractures of fingers','Y','2025-10-23 00:00:00'),(92163,11,'ND13.6','Multiple fractures of foot','Y','2025-10-23 00:00:00'),(92164,11,'NC32.7','Multiple fractures of forearm','Y','2025-10-23 00:00:00'),(92165,11,'NC92.8','Multiple fractures of lower leg','Y','2025-10-23 00:00:00'),(92166,11,'NB52.4','Multiple fractures of lumbar spine or pelvis','Y','2025-10-23 00:00:00'),(92167,11,'NC53.4','Multiple fractures of metacarpal bones','Y','2025-10-23 00:00:00'),(92168,11,'NA82.4','Multiple fractures of ribs','Y','2025-10-23 00:00:00'),(92169,11,'NC12.10','Multiple fractures of scapula','Y','2025-10-23 00:00:00'),(92170,11,'NA82.1','Multiple fractures of thoracic spine','Y','2025-10-23 00:00:00'),(92171,11,'ND1A','Multiple injuries of ankle or foot','Y','2025-10-23 00:00:00'),(92172,11,'NC39','Multiple injuries of forearm','Y','2025-10-23 00:00:00'),(92173,11,'NA0A.3','Multiple injuries of head','Y','2025-10-23 00:00:00'),(92174,11,'NC79','Multiple injuries of hip or thigh','Y','2025-10-23 00:00:00'),(92175,11,'NB32.7','Multiple injuries of intrathoracic organs','Y','2025-10-23 00:00:00'),(92176,11,'NC99','Multiple injuries of lower leg','Y','2025-10-23 00:00:00'),(92177,11,'NA64','Multiple injuries of neck','Y','2025-10-23 00:00:00'),(92178,11,'NC19','Multiple injuries of shoulder or upper arm','Y','2025-10-23 00:00:00'),(92179,11,'NB35','Multiple injuries of thorax','Y','2025-10-23 00:00:00'),(92180,11,'NC5A','Multiple injuries of wrist or hand','Y','2025-10-23 00:00:00'),(92181,11,'NC5A.Z','Multiple injuries of wrist or hand, unspecified','Y','2025-10-23 00:00:00'),(92182,11,'XA4EJ6','Multiple Joints','Y','2025-10-23 00:00:00'),(92183,11,'XA02P3','Multiple large joints only','Y','2025-10-23 00:00:00'),(92184,11,'XA5XD5','Multiple ligaments','Y','2025-10-23 00:00:00'),(92185,11,'LD24.7','Multiple metaphyseal dysplasias','Y','2025-10-23 00:00:00'),(92186,11,'5C53.21','Multiple mitochondrial DNA deletion syndromes','Y','2025-10-23 00:00:00'),(92187,11,'XA2330','Multiple Nerves','Y','2025-10-23 00:00:00'),(92188,11,'NB51.5','Multiple open wounds of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(92189,11,'ND12.5','Multiple open wounds of ankle or foot','Y','2025-10-23 00:00:00'),(92190,11,'NC31.5','Multiple open wounds of forearm','Y','2025-10-23 00:00:00'),(92191,11,'NA01.7','Multiple open wounds of head','Y','2025-10-23 00:00:00'),(92192,11,'NC71.5','Multiple open wounds of hip or thigh','Y','2025-10-23 00:00:00'),(92193,11,'NC91.5','Multiple open wounds of lower leg','Y','2025-10-23 00:00:00'),(92194,11,'NA21.5','Multiple open wounds of neck','Y','2025-10-23 00:00:00'),(92195,11,'NC11.5','Multiple open wounds of shoulder or upper arm','Y','2025-10-23 00:00:00'),(92196,11,'NA81.5','Multiple open wounds of thoracic wall','Y','2025-10-23 00:00:00'),(92197,11,'NC52.2','Multiple open wounds of wrist or hand','Y','2025-10-23 00:00:00'),(92198,11,'1D03.33','Multiple or widespread intracranial abscess','Y','2025-10-23 00:00:00'),(92199,11,'LD24.20','Multiple osteochondromas','Y','2025-10-23 00:00:00'),(92200,11,'QA47.6','Multiple other than twins, born in hospital','Y','2025-10-23 00:00:00'),(92201,11,'QA47.6Z','Multiple other than twins, born in hospital, unspecified','Y','2025-10-23 00:00:00'),(92202,11,'QA47.7','Multiple other than twins, born outside hospital','Y','2025-10-23 00:00:00'),(92203,11,'QA47.61','Multiple other than twins, delivered by caesarean section','Y','2025-10-23 00:00:00'),(92204,11,'QA47.60','Multiple other than twins, delivered vaginally','Y','2025-10-23 00:00:00'),(92205,11,'2F7A.0','Multiple polyglandular tumours','Y','2025-10-23 00:00:00'),(92206,11,'LD26.40','Multiple pterygium syndrome','Y','2025-10-23 00:00:00'),(92207,11,'8A40','Multiple sclerosis','Y','2025-10-23 00:00:00'),(92208,11,'8A4Z','Multiple sclerosis or other white matter disorders, unspecified','Y','2025-10-23 00:00:00'),(92209,11,'8A40.Z','Multiple sclerosis, unspecified','Y','2025-10-23 00:00:00'),(92210,11,'EK71.1','Multiple skin tags','Y','2025-10-23 00:00:00'),(92211,11,'XA2SK7','Multiple small joints only','Y','2025-10-23 00:00:00'),(92212,11,'6C4F.2','Multiple specified psychoactive substances dependence','Y','2025-10-23 00:00:00'),(92213,11,'6C4F.20','Multiple specified psychoactive substances dependence, current use','Y','2025-10-23 00:00:00'),(92214,11,'6C4F.21','Multiple specified psychoactive substances dependence, early full remission','Y','2025-10-23 00:00:00'),(92215,11,'6C4F.23','Multiple specified psychoactive substances dependence, sustained full remission','Y','2025-10-23 00:00:00'),(92216,11,'6C4F.22','Multiple specified psychoactive substances dependence, sustained partial remission','Y','2025-10-23 00:00:00'),(92217,11,'6C4F.2Z','Multiple specified psychoactive substances dependence, unspecified','Y','2025-10-23 00:00:00'),(92218,11,'6C4F.4','Multiple specified psychoactive substances withdrawal','Y','2025-10-23 00:00:00'),(92219,11,'6C4F.40','Multiple specified psychoactive substances withdrawal, uncomplicated','Y','2025-10-23 00:00:00'),(92220,11,'6C4F.4Z','Multiple specified psychoactive substances withdrawal, unspecified','Y','2025-10-23 00:00:00'),(92221,11,'6C4F.41','Multiple specified psychoactive substances withdrawal, with perceptual disturbances','Y','2025-10-23 00:00:00'),(92222,11,'6C4F.43','Multiple specified psychoactive substances withdrawal, with perceptual disturbances and seizures','Y','2025-10-23 00:00:00'),(92223,11,'6C4F.42','Multiple specified psychoactive substances withdrawal, with seizures','Y','2025-10-23 00:00:00'),(92224,11,'NB50.6','Multiple superficial injuries of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(92225,11,'ND11.C','Multiple superficial injuries of ankle or foot','Y','2025-10-23 00:00:00'),(92226,11,'NC30.4','Multiple superficial injuries of forearm','Y','2025-10-23 00:00:00'),(92227,11,'NA00.5','Multiple superficial injuries of head','Y','2025-10-23 00:00:00'),(92228,11,'NC70.4','Multiple superficial injuries of hip or thigh','Y','2025-10-23 00:00:00'),(92229,11,'NC90.4','Multiple superficial injuries of lower leg','Y','2025-10-23 00:00:00'),(92230,11,'NA20.3','Multiple superficial injuries of neck','Y','2025-10-23 00:00:00'),(92231,11,'NC10.2','Multiple superficial injuries of shoulder or upper arm','Y','2025-10-23 00:00:00'),(92232,11,'NA80.7','Multiple superficial injuries of thorax','Y','2025-10-23 00:00:00'),(92233,11,'NC51.2','Multiple superficial injuries of wrist or hand','Y','2025-10-23 00:00:00'),(92234,11,'8D87.0','Multiple system atrophy','Y','2025-10-23 00:00:00'),(92235,11,'8D87.00','Multiple system atrophy, Cerebellar type','Y','2025-10-23 00:00:00'),(92236,11,'8D87.01','Multiple system atrophy, Parkinsonism','Y','2025-10-23 00:00:00'),(92237,11,'8D87.0Z','Multiple system atrophy, unspecified','Y','2025-10-23 00:00:00'),(92238,11,'NA07.86','Multiple traumatic haemorrhages','Y','2025-10-23 00:00:00'),(92239,11,'BC00','Multiple valve disease','Y','2025-10-23 00:00:00'),(92240,11,'XS8U','Multiple vessel disease','Y','2025-10-23 00:00:00'),(92241,11,'RA03','Multisystem inflammatory syndrome associated with COVID-19','Y','2025-10-23 00:00:00'),(92242,11,'1D80','Mumps','Y','2025-10-23 00:00:00'),(92243,11,'XM8Z30','Mumps immunoglobulin','Y','2025-10-23 00:00:00'),(92244,11,'XM1VN8','Mumps skin test antigen','Y','2025-10-23 00:00:00'),(92245,11,'XM1131','Mumps vaccines','Y','2025-10-23 00:00:00'),(92246,11,'XN22H','Mumps virus','Y','2025-10-23 00:00:00'),(92247,11,'1D80.0','Mumps without complication','Y','2025-10-23 00:00:00'),(92248,11,'XM2340','Mumps, live attenuated','Y','2025-10-23 00:00:00'),(92249,11,'XM23B6','Mupirocin','Y','2025-10-23 00:00:00'),(92250,11,'BA60.7','Mural thrombus as current complication following acute myocardial infarction','Y','2025-10-23 00:00:00'),(92251,11,'LD2F.14','MURCS association','Y','2025-10-23 00:00:00'),(92252,11,'XN5FN','Muromegalovirus','Y','2025-10-23 00:00:00'),(92253,11,'XM9RY3','Muromonab-CD3','Y','2025-10-23 00:00:00'),(92254,11,'1C88','Murray Valley encephalitis','Y','2025-10-23 00:00:00'),(92255,11,'XM50E4','Muscimol','Y','2025-10-23 00:00:00'),(92256,11,'XM8BU6','Muscle affecting agents oxytocic','Y','2025-10-23 00:00:00'),(92257,11,'XM4W78','Muscle affecting agents relaxants skeletal','Y','2025-10-23 00:00:00'),(92258,11,'XM3YV6','Muscle affecting agents relaxants smooth','Y','2025-10-23 00:00:00'),(92259,11,'MB47.7','Muscle fibrillation','Y','2025-10-23 00:00:00'),(92260,11,'XA8PG5','Muscle of the abdomen','Y','2025-10-23 00:00:00'),(92261,11,'XA8Z76','Muscle of the back','Y','2025-10-23 00:00:00'),(92262,11,'XA19W0','Muscle of the thorax','Y','2025-10-23 00:00:00'),(92263,11,'VV61','Muscle power functions','Y','2025-10-23 00:00:00'),(92264,11,'XM9YY8','Muscle relaxants, centrally acting','Y','2025-10-23 00:00:00'),(92265,11,'XM8SY4','Muscle relaxants, peripherally acting','Y','2025-10-23 00:00:00'),(92266,11,'SC60','Muscle spasm disorder (TM1)','Y','2025-10-23 00:00:00'),(92267,11,'FB32.5','Muscle strain or sprain','Y','2025-10-23 00:00:00'),(92268,11,'XA39T1','Muscle tissue','Y','2025-10-23 00:00:00'),(92269,11,'XA2JQ8','Muscles of the head and neck','Y','2025-10-23 00:00:00'),(92270,11,'XA47J0','Muscles of the lower extremity','Y','2025-10-23 00:00:00'),(92271,11,'XA2J71','Muscles of the pelvis and perineum','Y','2025-10-23 00:00:00'),(92272,11,'XA4Z20','Muscles of the upper extremity','Y','2025-10-23 00:00:00'),(92273,11,'XA8LL2','Muscular branches of the anterior interosseous artery','Y','2025-10-23 00:00:00'),(92274,11,'XA0PT7','Muscular branches of the anterior tibial artery','Y','2025-10-23 00:00:00'),(92275,11,'XA3P46','Muscular branches of the radial nerve','Y','2025-10-23 00:00:00'),(92276,11,'8C70','Muscular dystrophy','Y','2025-10-23 00:00:00'),(92277,11,'9C82.1','Muscular dystrophy affecting extraocular muscle','Y','2025-10-23 00:00:00'),(92278,11,'8C70.Z','Muscular dystrophy, unspecified','Y','2025-10-23 00:00:00'),(92279,11,'MB47.8','Muscular hypertonia','Y','2025-10-23 00:00:00'),(92280,11,'XA9TP5','Musculo-articular branch of the Descending genicular artery','Y','2025-10-23 00:00:00'),(92281,11,'XA5QF4','Musculocutaneous nerve','Y','2025-10-23 00:00:00'),(92282,11,'XA7EC2','Musculophrenic artery','Y','2025-10-23 00:00:00'),(92283,11,'ME81','Musculoskeletal chest pain','Y','2025-10-23 00:00:00'),(92284,11,'ME81.Z','Musculoskeletal chest pain, unspecified','Y','2025-10-23 00:00:00'),(92285,11,'PK80.8','Musculoskeletal procedure associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(92286,11,'PK80.8Y','Musculoskeletal procedure associated with injury or harm in therapeutic use, other specified approach','Y','2025-10-23 00:00:00'),(92287,11,'PK80.8Z','Musculoskeletal procedure associated with injury or harm in therapeutic use, unspecified approach','Y','2025-10-23 00:00:00'),(92288,11,'PK80.82','Musculoskeletal procedure associated with injury or harm, endoscopic approach','Y','2025-10-23 00:00:00'),(92289,11,'PK80.80','Musculoskeletal procedure associated with injury or harm, open approach','Y','2025-10-23 00:00:00'),(92290,11,'PK80.81','Musculoskeletal procedure associated with injury or harm, percutaneous approach','Y','2025-10-23 00:00:00'),(92291,11,'XA8AR7','Musculus uvulae muscle','Y','2025-10-23 00:00:00'),(92292,11,'CA70.5','Mushroom worker lung','Y','2025-10-23 00:00:00'),(92293,11,'XE4DN','Mushroom, toadstool, fungus','Y','2025-10-23 00:00:00'),(92294,11,'XM41B9','Mussel seafood poison','Y','2025-10-23 00:00:00'),(92295,11,'XM4582','Mustard (emetic)','Y','2025-10-23 00:00:00'),(92296,11,'XM2WE8','Mustard black','Y','2025-10-23 00:00:00'),(92297,11,'XM16X6','Mustard gas','Y','2025-10-23 00:00:00'),(92298,11,'MB23.D','Mutism','Y','2025-10-23 00:00:00'),(92299,11,'XM6M47','Muzolimine','Y','2025-10-23 00:00:00'),(92300,11,'XM8C52','M-vac','Y','2025-10-23 00:00:00'),(92301,11,'XM4EC8','MVC-COV1901','Y','2025-10-23 00:00:00'),(92302,11,'FB56.2','Myalgia','Y','2025-10-23 00:00:00'),(92303,11,'8C60','Myasthenia gravis','Y','2025-10-23 00:00:00'),(92304,11,'8C60.Z','Myasthenia gravis, unspecified','Y','2025-10-23 00:00:00'),(92305,11,'1G60.0','Mycetoma of unknown or unspecified type','Y','2025-10-23 00:00:00'),(92306,11,'XM43U9','Mycifradin topical','Y','2025-10-23 00:00:00'),(92307,11,'XM4DY8','Mycitracin ophthalmic preparation','Y','2025-10-23 00:00:00'),(92308,11,'1B2Z','Mycobacterial diseases, unspecified','Y','2025-10-23 00:00:00'),(92309,11,'XN2NR','Mycobacterium','Y','2025-10-23 00:00:00'),(92310,11,'XN6YB','Mycobacterium africanum','Y','2025-10-23 00:00:00'),(92311,11,'XN6PL','Mycobacterium asiaticum','Y','2025-10-23 00:00:00'),(92312,11,'XN5LZ','Mycobacterium avium','Y','2025-10-23 00:00:00'),(92313,11,'XN8FF','Mycobacterium avium hominissuis','Y','2025-10-23 00:00:00'),(92314,11,'XN5NW','Mycobacterium avium paratuberculosis','Y','2025-10-23 00:00:00'),(92315,11,'XN145','Mycobacterium avium silvaticum','Y','2025-10-23 00:00:00'),(92316,11,'XN8AB','Mycobacterium bovis','Y','2025-10-23 00:00:00'),(92317,11,'XN8N3','Mycobacterium canettii','Y','2025-10-23 00:00:00'),(92318,11,'XN4MR','Mycobacterium caprae','Y','2025-10-23 00:00:00'),(92319,11,'XN3D3','Mycobacterium chelonei','Y','2025-10-23 00:00:00'),(92320,11,'XN9H9','Mycobacterium colombiense','Y','2025-10-23 00:00:00'),(92321,11,'XN8ZX','Mycobacterium fortuitum','Y','2025-10-23 00:00:00'),(92322,11,'XN7YR','Mycobacterium haemophilum','Y','2025-10-23 00:00:00'),(92323,11,'XN8FC','Mycobacterium indicus pranii','Y','2025-10-23 00:00:00'),(92324,11,'XN3L9','Mycobacterium kansasii','Y','2025-10-23 00:00:00'),(92325,11,'XN5TS','Mycobacterium leprae','Y','2025-10-23 00:00:00'),(92326,11,'XN5C1','Mycobacterium malmoense','Y','2025-10-23 00:00:00'),(92327,11,'XN8RB','Mycobacterium marinum','Y','2025-10-23 00:00:00'),(92328,11,'XN3T2','Mycobacterium microti','Y','2025-10-23 00:00:00'),(92329,11,'XN7H2','Mycobacterium pinnipedii','Y','2025-10-23 00:00:00'),(92330,11,'XN74T','Mycobacterium scrofulaceum','Y','2025-10-23 00:00:00'),(92331,11,'XN4MW','Mycobacterium simiae','Y','2025-10-23 00:00:00'),(92332,11,'XN975','Mycobacterium szulgai','Y','2025-10-23 00:00:00'),(92333,11,'XN1N2','Mycobacterium tuberculosis','Y','2025-10-23 00:00:00'),(92334,11,'XN9M0','Mycobacterium ulcerans','Y','2025-10-23 00:00:00'),(92335,11,'1B21.20','Mycobacterium ulcerans infection','Y','2025-10-23 00:00:00'),(92336,11,'XN53D','Mycobacterium xenopi','Y','2025-10-23 00:00:00'),(92337,11,'XM57B1','Mycophenolic acid','Y','2025-10-23 00:00:00'),(92338,11,'XN1W2','Mycoplasma','Y','2025-10-23 00:00:00'),(92339,11,'XN3NR','Mycoplasma fermentans','Y','2025-10-23 00:00:00'),(92340,11,'XN9UG','Mycoplasma genitalium','Y','2025-10-23 00:00:00'),(92341,11,'XN674','Mycoplasma hyorhinis','Y','2025-10-23 00:00:00'),(92342,11,'XN3AD','Mycoplasma penetrans','Y','2025-10-23 00:00:00'),(92343,11,'XN4NV','Mycoplasma pneumoniae','Y','2025-10-23 00:00:00'),(92344,11,'1F2Z','Mycoses, unspecified','Y','2025-10-23 00:00:00'),(92345,11,'XH8R56','Mycosis fungoides','Y','2025-10-23 00:00:00'),(92346,11,'2B01','Mycosis fungoides','Y','2025-10-23 00:00:00'),(92347,11,'XM5490','Mycotoxin','Y','2025-10-23 00:00:00'),(92348,11,'XM5PU9','Mydriatic drug','Y','2025-10-23 00:00:00'),(92349,11,'8B41','Myelitis','Y','2025-10-23 00:00:00'),(92350,11,'XA6385','Myeloblast','Y','2025-10-23 00:00:00'),(92351,11,'XM6MP1','Myelobromal','Y','2025-10-23 00:00:00'),(92352,11,'LA02.02','Myelocystocele','Y','2025-10-23 00:00:00'),(92353,11,'2A4Z','Myelodysplastic and myeloproliferative neoplasms, unspecified','Y','2025-10-23 00:00:00'),(92354,11,'XH79X8','Myelodysplastic syndrome with excess blasts','Y','2025-10-23 00:00:00'),(92355,11,'XH3T02','Myelodysplastic syndrome with isolated del (5q)','Y','2025-10-23 00:00:00'),(92356,11,'2A36','Myelodysplastic syndrome with isolated del(5q)','Y','2025-10-23 00:00:00'),(92357,11,'XH5DA2','Myelodysplastic syndrome with multilineage dysplasia','Y','2025-10-23 00:00:00'),(92358,11,'XH8BA8','Myelodysplastic syndrome with ring sideroblasts and multilineage dysplasia','Y','2025-10-23 00:00:00'),(92359,11,'XH5B21','Myelodysplastic syndrome with ring sideroblasts and single lineage dysplasia','Y','2025-10-23 00:00:00'),(92360,11,'XH2N45','Myelodysplastic syndrome with single lineage dysplasia','Y','2025-10-23 00:00:00'),(92361,11,'XH7PK9','Myelodysplastic syndrome, NOS','Y','2025-10-23 00:00:00'),(92362,11,'2A37','Myelodysplastic syndrome, unclassifiable','Y','2025-10-23 00:00:00'),(92363,11,'2A3Z','Myelodysplastic syndromes, unspecified','Y','2025-10-23 00:00:00'),(92364,11,'XH28M3','Myelodysplastic/myeloproliferative neoplasm, unclassifiable','Y','2025-10-23 00:00:00'),(92365,11,'2A5Z','Myeloid and lymphoid neoplasms with eosinophilia and abnormalities of PDGFRA, PDGFRB or FGFR1, unspecified','Y','2025-10-23 00:00:00'),(92366,11,'XH1WR8','Myeloid and lymphoid neoplasms with FGFR1 abnormalities','Y','2025-10-23 00:00:00'),(92367,11,'XH07H5','Myeloid and lymphoid neoplasms with PDGFRA rearrangement','Y','2025-10-23 00:00:00'),(92368,11,'2B33.1','Myeloid leukaemia','Y','2025-10-23 00:00:00'),(92369,11,'2A60.41','Myeloid leukaemia associated with Down syndrome','Y','2025-10-23 00:00:00'),(92370,11,'XH6AQ7','Myeloid leukaemia associated with Down Syndrome','Y','2025-10-23 00:00:00'),(92371,11,'XH7S21','Myeloid leukaemia, NOS','Y','2025-10-23 00:00:00'),(92372,11,'2A51','Myeloid neoplasm associated with PDGFRB rearrangement','Y','2025-10-23 00:00:00'),(92373,11,'XH6QD4','Myeloid neoplasms with PDGFRB rearrangement','Y','2025-10-23 00:00:00'),(92374,11,'XH2WB4','Myeloid or lymphoid neoplasm with PCM1-JAK2','Y','2025-10-23 00:00:00'),(92375,11,'2A52','Myeloid or lymphoid neoplasms with FGFR1 abnormalities','Y','2025-10-23 00:00:00'),(92376,11,'2A60.4','Myeloid proliferation associated with Down syndrome','Y','2025-10-23 00:00:00'),(92377,11,'2A60.4Z','Myeloid proliferation associated with Down syndrome, unspecified','Y','2025-10-23 00:00:00'),(92378,11,'2A60.39','Myeloid sarcoma','Y','2025-10-23 00:00:00'),(92379,11,'XH3L40','Myeloid sarcoma','Y','2025-10-23 00:00:00'),(92380,11,'2A50','Myeloid/lymphoid neoplasm associated with PDGFRA rearrangement','Y','2025-10-23 00:00:00'),(92381,11,'XH17C5','Myelolipoma','Y','2025-10-23 00:00:00'),(92382,11,'LA02.00','Myelomeningocele with hydrocephalus','Y','2025-10-23 00:00:00'),(92383,11,'LA02.01','Myelomeningocele without hydrocephalus','Y','2025-10-23 00:00:00'),(92384,11,'8B42','Myelopathy','Y','2025-10-23 00:00:00'),(92385,11,'2A44','Myeloproliferative and myelodysplastic disease, unclassifiable','Y','2025-10-23 00:00:00'),(92386,11,'XH5HH7','Myeloproliferative neoplasm, NOS','Y','2025-10-23 00:00:00'),(92387,11,'XH3EJ1','Myeloproliferative neoplasm, unclassifiable','Y','2025-10-23 00:00:00'),(92388,11,'1G01','Myiasis','Y','2025-10-23 00:00:00'),(92389,11,'1G01.Z','Myiasis, unspecified','Y','2025-10-23 00:00:00'),(92390,11,'XM5C25','Myleran','Y','2025-10-23 00:00:00'),(92391,11,'XA3TE9','Mylohyoid branch of the inferior alveolar artery','Y','2025-10-23 00:00:00'),(92392,11,'XA83A9','Mylohyoid muscle','Y','2025-10-23 00:00:00'),(92393,11,'XA9FV5','Mylohyoid nerve','Y','2025-10-23 00:00:00'),(92394,11,'XA7ZZ8','Mylohyoid tendon','Y','2025-10-23 00:00:00'),(92395,11,'BC42','Myocarditis','Y','2025-10-23 00:00:00'),(92396,11,'BC42.Z','Myocarditis, unspecified','Y','2025-10-23 00:00:00'),(92397,11,'XA8SK6','Myocardium','Y','2025-10-23 00:00:00'),(92398,11,'XM8762','Myochrysin (e)','Y','2025-10-23 00:00:00'),(92399,11,'8A61.23','Myoclonic absences or absences with myoclonias','Y','2025-10-23 00:00:00'),(92400,11,'8A06','Myoclonic disorders','Y','2025-10-23 00:00:00'),(92401,11,'8A06.Z','Myoclonic disorders, unspecified','Y','2025-10-23 00:00:00'),(92402,11,'EL52','Myocutaneous flap necrosis','Y','2025-10-23 00:00:00'),(92403,11,'BB41','Myoendocarditis','Y','2025-10-23 00:00:00'),(92404,11,'XH43E6','Myoepithelial carcinoma','Y','2025-10-23 00:00:00'),(92405,11,'XH3CQ8','Myoepithelioma','Y','2025-10-23 00:00:00'),(92406,11,'8C76','Myofibrillar myopathy','Y','2025-10-23 00:00:00'),(92407,11,'XH2668','Myofibroblastic sarcoma','Y','2025-10-23 00:00:00'),(92408,11,'XH66Z0','Myofibroblastic tumour, NOS','Y','2025-10-23 00:00:00'),(92409,11,'XH85R1','Myofibroblastic tumour, peribronchial','Y','2025-10-23 00:00:00'),(92410,11,'XH3NQ0','Myofibroblastoma','Y','2025-10-23 00:00:00'),(92411,11,'XH0953','Myofibroma','Y','2025-10-23 00:00:00'),(92412,11,'XH1N00','Myofibromatosis','Y','2025-10-23 00:00:00'),(92413,11,'9A03.02','Myogenic ptosis of eyelid','Y','2025-10-23 00:00:00'),(92414,11,'MF95','Myoglobinuria','Y','2025-10-23 00:00:00'),(92415,11,'XH37N4','Myointimoma','Y','2025-10-23 00:00:00'),(92416,11,'9A05.0','Myokymia of eyelid','Y','2025-10-23 00:00:00'),(92417,11,'XH6GV7','Myolipoma','Y','2025-10-23 00:00:00'),(92418,11,'XH1CZ1','Myoma','Y','2025-10-23 00:00:00'),(92419,11,'XA2LU5','Myometrium','Y','2025-10-23 00:00:00'),(92420,11,'XM3SC6','Myoneural blocking agents','Y','2025-10-23 00:00:00'),(92421,11,'8D41.1','Myopathy due to hypercalcaemia','Y','2025-10-23 00:00:00'),(92422,11,'8D40.2','Myopathy due to nutritional deficiency','Y','2025-10-23 00:00:00'),(92423,11,'8D43.3','Myopathy due to toxicity','Y','2025-10-23 00:00:00'),(92424,11,'8C83','Myopathy in certain specified endocrine disease','Y','2025-10-23 00:00:00'),(92425,11,'8C82','Myopathy in certain specified infectious or parasitic disease','Y','2025-10-23 00:00:00'),(92426,11,'BB20.2','Myopericarditis','Y','2025-10-23 00:00:00'),(92427,11,'XH2HE9','Myopericytoma','Y','2025-10-23 00:00:00'),(92428,11,'9D00.0','Myopia','Y','2025-10-23 00:00:00'),(92429,11,'XH8H07','Myosarcoma','Y','2025-10-23 00:00:00'),(92430,11,'2B5G','Myosarcoma of uterus, part not specified','Y','2025-10-23 00:00:00'),(92431,11,'2B5F.10','Myosarcomas of omentum','Y','2025-10-23 00:00:00'),(92432,11,'MB47.9','Myotonia','Y','2025-10-23 00:00:00'),(92433,11,'8C71.2','Myotonia congenita','Y','2025-10-23 00:00:00'),(92434,11,'8C71','Myotonic disorders','Y','2025-10-23 00:00:00'),(92435,11,'8C71.Z','Myotonic disorders, unspecified','Y','2025-10-23 00:00:00'),(92436,11,'8C71.0','Myotonic dystrophy','Y','2025-10-23 00:00:00'),(92437,11,'XM14D6','Myralact','Y','2025-10-23 00:00:00'),(92438,11,'XM3M91','Myristica fragrans plant','Y','2025-10-23 00:00:00'),(92439,11,'XM31J1','Myristicin','Y','2025-10-23 00:00:00'),(92440,11,'XM3RP3','Myristyl-benzalkonium','Y','2025-10-23 00:00:00'),(92441,11,'XM7ZJ1','Myrophine','Y','2025-10-23 00:00:00'),(92442,11,'XM14Y1','Myrsine africana plant','Y','2025-10-23 00:00:00'),(92443,11,'5A00.21','Myxoedema coma','Y','2025-10-23 00:00:00'),(92444,11,'XH8WH0','Myxofibrosarcoma','Y','2025-10-23 00:00:00'),(92445,11,'2B53.0','Myxofibrosarcoma, primary site','Y','2025-10-23 00:00:00'),(92446,11,'XH9344','Myxoid chondrosarcoma','Y','2025-10-23 00:00:00'),(92447,11,'XH9CC7','Myxoid leiomyoma','Y','2025-10-23 00:00:00'),(92448,11,'XH3122','Myxoid leiomyosarcoma','Y','2025-10-23 00:00:00'),(92449,11,'XH3EL0','Myxoid liposarcoma','Y','2025-10-23 00:00:00'),(92450,11,'XH2D15','Myxoinflammatory fibroblastic sarcoma','Y','2025-10-23 00:00:00'),(92451,11,'XH6Q84','Myxoma, NOS','Y','2025-10-23 00:00:00'),(92452,11,'XH15U1','Myxopapillary ependymoma','Y','2025-10-23 00:00:00'),(92453,11,'XH5WF6','Myxosarcoma','Y','2025-10-23 00:00:00'),(92454,11,'XM9T61','N,N-Dimethyltryptamine','Y','2025-10-23 00:00:00'),(92455,11,'XM3UF9','Nabilone','Y','2025-10-23 00:00:00'),(92456,11,'GA15.2','Nabothian cyst','Y','2025-10-23 00:00:00'),(92457,11,'XM8WS4','Nabumetone','Y','2025-10-23 00:00:00'),(92458,11,'XM7022','Nadifloxacin','Y','2025-10-23 00:00:00'),(92459,11,'XM69F3','Nadolol','Y','2025-10-23 00:00:00'),(92460,11,'XM5727','Nadroparin','Y','2025-10-23 00:00:00'),(92461,11,'2A20.03','Naegeli-type monocytic leukaemia','Y','2025-10-23 00:00:00'),(92462,11,'XN1M1','Naegleria','Y','2025-10-23 00:00:00'),(92463,11,'XN6EV','Naegleria fowleri','Y','2025-10-23 00:00:00'),(92464,11,'1F55','Naegleriasis','Y','2025-10-23 00:00:00'),(92465,11,'XH40S8','Naevus spilus','Y','2025-10-23 00:00:00'),(92466,11,'XM4VT6','Nafarelin','Y','2025-10-23 00:00:00'),(92467,11,'XM8HL9','Nafcillin','Y','2025-10-23 00:00:00'),(92468,11,'XM9QT3','Nafoxidine','Y','2025-10-23 00:00:00'),(92469,11,'XM1PT0','Naftazone','Y','2025-10-23 00:00:00'),(92470,11,'XM3J93','Naftidrofuryl','Y','2025-10-23 00:00:00'),(92471,11,'XM1HX1','Naftifine','Y','2025-10-23 00:00:00'),(92472,11,'XA6Q52','Nail','Y','2025-10-23 00:00:00'),(92473,11,'XA4S72','Nail apparatus','Y','2025-10-23 00:00:00'),(92474,11,'EE10.4','Nail atrophy','Y','2025-10-23 00:00:00'),(92475,11,'XA9L52','Nail bed of fifth toe','Y','2025-10-23 00:00:00'),(92476,11,'XA65U3','Nail bed of fourth toe','Y','2025-10-23 00:00:00'),(92477,11,'XA0HX8','Nail bed of great toe','Y','2025-10-23 00:00:00'),(92478,11,'XA1SB3','Nail bed of index finger','Y','2025-10-23 00:00:00'),(92479,11,'XA6HB9','Nail bed of little finger','Y','2025-10-23 00:00:00'),(92480,11,'XA2A53','Nail bed of middle finger','Y','2025-10-23 00:00:00'),(92481,11,'XA3MW5','Nail bed of ring finger','Y','2025-10-23 00:00:00'),(92482,11,'XA7B22','Nail bed of second toe','Y','2025-10-23 00:00:00'),(92483,11,'XA6189','Nail bed of third toe','Y','2025-10-23 00:00:00'),(92484,11,'XA9N39','Nail bed of thumb','Y','2025-10-23 00:00:00'),(92485,11,'EE13.3','Nail disorder associated with specified dermatosis','Y','2025-10-23 00:00:00'),(92486,11,'EE13.4','Nail disorder associated with specified systemic disease','Y','2025-10-23 00:00:00'),(92487,11,'EE10.5','Nail dystrophy, not otherwise specified','Y','2025-10-23 00:00:00'),(92488,11,'XE7GP','Nail fastner component of medical device','Y','2025-10-23 00:00:00'),(92489,11,'EE13.0','Nail fragility','Y','2025-10-23 00:00:00'),(92490,11,'XE3E3','Nail gun, stud driver','Y','2025-10-23 00:00:00'),(92491,11,'EE10.3','Nail hypertrophy','Y','2025-10-23 00:00:00'),(92492,11,'XA4KT3','Nail matrix','Y','2025-10-23 00:00:00'),(92493,11,'EE10.10','Nail pitting','Y','2025-10-23 00:00:00'),(92494,11,'XA4U10','Nail plate of fifth toe','Y','2025-10-23 00:00:00'),(92495,11,'XA8F87','Nail plate of fourth toe','Y','2025-10-23 00:00:00'),(92496,11,'XA47T1','Nail plate of great toe','Y','2025-10-23 00:00:00'),(92497,11,'XA2XE0','Nail plate of index finger','Y','2025-10-23 00:00:00'),(92498,11,'XA4A79','Nail plate of little finger','Y','2025-10-23 00:00:00'),(92499,11,'XA10T8','Nail plate of middle finger','Y','2025-10-23 00:00:00'),(92500,11,'XA3PS0','Nail plate of ring finger','Y','2025-10-23 00:00:00'),(92501,11,'XA1WQ6','Nail plate of second toe','Y','2025-10-23 00:00:00'),(92502,11,'XA3LW9','Nail plate of third toe','Y','2025-10-23 00:00:00'),(92503,11,'XA5V24','Nail plate of thumb','Y','2025-10-23 00:00:00'),(92504,11,'XE3EV','Nail polish','Y','2025-10-23 00:00:00'),(92505,11,'XM0ES5','Nail polish remover','Y','2025-10-23 00:00:00'),(92506,11,'EA90.51','Nail psoriasis','Y','2025-10-23 00:00:00'),(92507,11,'XE7VR','Nail, screw, tack','Y','2025-10-23 00:00:00'),(92508,11,'LD24.J0','Nail-patella syndrome','Y','2025-10-23 00:00:00'),(92509,11,'XM4P05','Nalbuphine','Y','2025-10-23 00:00:00'),(92510,11,'XM0US9','Naled','Y','2025-10-23 00:00:00'),(92511,11,'XM9UH3','Nalfurafine','Y','2025-10-23 00:00:00'),(92512,11,'XM82P4','Nalidixic acid','Y','2025-10-23 00:00:00'),(92513,11,'XM4PD9','Nalmefene','Y','2025-10-23 00:00:00'),(92514,11,'XM4UW9','Nalorphine','Y','2025-10-23 00:00:00'),(92515,11,'XM93Z3','Naloxegol','Y','2025-10-23 00:00:00'),(92516,11,'XM14T9','Naloxone','Y','2025-10-23 00:00:00'),(92517,11,'XM2M16','Naltrexone','Y','2025-10-23 00:00:00'),(92518,11,'XM8NZ0','Nandrolone','Y','2025-10-23 00:00:00'),(92519,11,'XM7UH0','Nandrolone ophthalmic praparation','Y','2025-10-23 00:00:00'),(92520,11,'XN3E8','Nanophyetus','Y','2025-10-23 00:00:00'),(92521,11,'XA1M78','Nape of neck','Y','2025-10-23 00:00:00'),(92522,11,'XM3Q12','Naphazoline','Y','2025-10-23 00:00:00'),(92523,11,'XM5S01','Naphthalene','Y','2025-10-23 00:00:00'),(92524,11,'XM1KX0','Naphthol','Y','2025-10-23 00:00:00'),(92525,11,'XM8H63','Naphthoquine','Y','2025-10-23 00:00:00'),(92526,11,'XM6PE4','Naphthylamine','Y','2025-10-23 00:00:00'),(92527,11,'XM9ES5','Naproxcinod','Y','2025-10-23 00:00:00'),(92528,11,'XM1KL8','Naproxen','Y','2025-10-23 00:00:00'),(92529,11,'XM8BC6','Naratriptan','Y','2025-10-23 00:00:00'),(92530,11,'XM3Z73','Narcobarbital','Y','2025-10-23 00:00:00'),(92531,11,'7A20','Narcolepsy','Y','2025-10-23 00:00:00'),(92532,11,'7A20.0','Narcolepsy, Type 1','Y','2025-10-23 00:00:00'),(92533,11,'7A20.1','Narcolepsy, Type 2','Y','2025-10-23 00:00:00'),(92534,11,'7A20.Z','Narcolepsy, unspecified','Y','2025-10-23 00:00:00'),(92535,11,'XM9BM4','Narcotic antagonist','Y','2025-10-23 00:00:00'),(92536,11,'XM8PP7','Narcotic synthetic','Y','2025-10-23 00:00:00'),(92537,11,'XA3HQ4','nasal arch vein','Y','2025-10-23 00:00:00'),(92538,11,'XA8E16','Nasal bone','Y','2025-10-23 00:00:00'),(92539,11,'KA45.21','Nasal bone fracture due to birth injury','Y','2025-10-23 00:00:00'),(92540,11,'XA53D3','Nasal branches of the anterior ethmoidal artery','Y','2025-10-23 00:00:00'),(92541,11,'XA7561','Nasal branches of the posterior ethmoidal artery','Y','2025-10-23 00:00:00'),(92542,11,'XA7WQ4','Nasal cartilage','Y','2025-10-23 00:00:00'),(92543,11,'XA43C9','Nasal cavity','Y','2025-10-23 00:00:00'),(92544,11,'MD11.9','Nasal congestion','Y','2025-10-23 00:00:00'),(92545,11,'1C17.1','Nasal diphtheria','Y','2025-10-23 00:00:00'),(92546,11,'XA4CN5','Nasal mucosa','Y','2025-10-23 00:00:00'),(92547,11,'CA0J','Nasal polyp','Y','2025-10-23 00:00:00'),(92548,11,'CA0J.Z','Nasal polyp, unspecified','Y','2025-10-23 00:00:00'),(92549,11,'XA8D47','Nasal septum','Y','2025-10-23 00:00:00'),(92550,11,'SC91','Nasal sinusitis disorder (TM1)','Y','2025-10-23 00:00:00'),(92551,11,'9D42.22','Nasal step','Y','2025-10-23 00:00:00'),(92552,11,'XA8817','Nasal turbinate','Y','2025-10-23 00:00:00'),(92553,11,'XA53X2','Nasal vestibule','Y','2025-10-23 00:00:00'),(92554,11,'XA0Y41','Nasalis muscle','Y','2025-10-23 00:00:00'),(92555,11,'XA7NU6','Nasalis tendon','Y','2025-10-23 00:00:00'),(92556,11,'MA82.2','Nasality','Y','2025-10-23 00:00:00'),(92557,11,'XA5WM9','Nasociliary nerve','Y','2025-10-23 00:00:00'),(92558,11,'XA8GT2','Nasofrontal vein','Y','2025-10-23 00:00:00'),(92559,11,'XD53A5','Naso-gastric tube','Y','2025-10-23 00:00:00'),(92560,11,'XA5163','Nasolabial fold','Y','2025-10-23 00:00:00'),(92561,11,'9A11.5','Nasolacrimal canalicular stenosis','Y','2025-10-23 00:00:00'),(92562,11,'XA5SW9','Nasolacrimal duct','Y','2025-10-23 00:00:00'),(92563,11,'9A11.8','Nasolacrimal duct obstruction','Y','2025-10-23 00:00:00'),(92564,11,'9A11.7','Nasolacrimal sac stenosis','Y','2025-10-23 00:00:00'),(92565,11,'XA0S35','Nasopalatine nerve','Y','2025-10-23 00:00:00'),(92566,11,'1G01.1','Nasopharyngeal myiasis','Y','2025-10-23 00:00:00'),(92567,11,'XD9246','Nasopharyngeal tubes','Y','2025-10-23 00:00:00'),(92568,11,'XA9AZ1','Nasopharynx','Y','2025-10-23 00:00:00'),(92569,11,'XM9YN4','Natalizumab','Y','2025-10-23 00:00:00'),(92570,11,'XM2BK7','Natamycin','Y','2025-10-23 00:00:00'),(92571,11,'XM5Z74','Nateglinide','Y','2025-10-23 00:00:00'),(92572,11,'RA20','National emergency code 01','Y','2025-10-23 00:00:00'),(92573,11,'RA21','National emergency code 02','Y','2025-10-23 00:00:00'),(92574,11,'RA22','National emergency code 03','Y','2025-10-23 00:00:00'),(92575,11,'RA23','National emergency code 04','Y','2025-10-23 00:00:00'),(92576,11,'RA24','National emergency code 05','Y','2025-10-23 00:00:00'),(92577,11,'RA25','National emergency code 06','Y','2025-10-23 00:00:00'),(92578,11,'RA26','National emergency code 07','Y','2025-10-23 00:00:00'),(92579,11,'XM0XT3','Natural blood (product)','Y','2025-10-23 00:00:00'),(92580,11,'XM6BD0','Natural gas','Y','2025-10-23 00:00:00'),(92581,11,'XE233','Natural grass','Y','2025-10-23 00:00:00'),(92582,11,'XE4BY','Natural material','Y','2025-10-23 00:00:00'),(92583,11,'XE975','Naturally worn','Y','2025-10-23 00:00:00'),(92584,11,'MD90.0','Nausea','Y','2025-10-23 00:00:00'),(92585,11,'MD90','Nausea or vomiting','Y','2025-10-23 00:00:00'),(92586,11,'XA84E6','Navicular bone','Y','2025-10-23 00:00:00'),(92587,11,'XM45E1','N-Cyclohexylbenzothiazyl sulphenamide','Y','2025-10-23 00:00:00'),(92588,11,'XN0H9','Ndumu virus','Y','2025-10-23 00:00:00'),(92589,11,'XM3YG4','Nealbarbital','Y','2025-10-23 00:00:00'),(92590,11,'9D90.7','Near vision impairment','Y','2025-10-23 00:00:00'),(92591,11,'XM0995','Nebivolol','Y','2025-10-23 00:00:00'),(92592,11,'XN8L1','Nebovirus','Y','2025-10-23 00:00:00'),(92593,11,'XN9T3','Necator','Y','2025-10-23 00:00:00'),(92594,11,'XN8K8','Necator americanus','Y','2025-10-23 00:00:00'),(92595,11,'1F68.1','Necatoriasis','Y','2025-10-23 00:00:00'),(92596,11,'XM5WX4','Necitumumab','Y','2025-10-23 00:00:00'),(92597,11,'XA7AA6','Neck','Y','2025-10-23 00:00:00'),(92598,11,'XA9640','Neck of other carpal bone','Y','2025-10-23 00:00:00'),(92599,11,'XA8LA4','Neck of pancreas','Y','2025-10-23 00:00:00'),(92600,11,'XA16Y6','Neck of the fifth metacarpal bone','Y','2025-10-23 00:00:00'),(92601,11,'XA8J87','Neck of the first metacarpal bone','Y','2025-10-23 00:00:00'),(92602,11,'XA9NT7','Neck of the fourth metacarpal bone','Y','2025-10-23 00:00:00'),(92603,11,'XA2HS8','Neck of the scapula','Y','2025-10-23 00:00:00'),(92604,11,'XA8KU0','Neck of the second metacarpal bone','Y','2025-10-23 00:00:00'),(92605,11,'XA6L02','Neck of the talus','Y','2025-10-23 00:00:00'),(92606,11,'XA50H4','Neck of the third metacarpal bone','Y','2025-10-23 00:00:00'),(92607,11,'EE80.1','Necrobiosis lipoidica','Y','2025-10-23 00:00:00'),(92608,11,'EE80','Necrobiotic granulomatous skin disorders','Y','2025-10-23 00:00:00'),(92609,11,'EA20','Necrolytic acral erythema','Y','2025-10-23 00:00:00'),(92610,11,'NE85.5','Necrosis of amputation stump','Y','2025-10-23 00:00:00'),(92611,11,'BD52.4','Necrosis of artery','Y','2025-10-23 00:00:00'),(92612,11,'DA09.1','Necrosis of pulp','Y','2025-10-23 00:00:00'),(92613,11,'KB88','Necrotising enterocolitis of newborn','Y','2025-10-23 00:00:00'),(92614,11,'KB88.0','Necrotising enterocolitis of newborn, Stage 1A & B','Y','2025-10-23 00:00:00'),(92615,11,'KB88.1','Necrotising enterocolitis of newborn, Stage 2A & B','Y','2025-10-23 00:00:00'),(92616,11,'KB88.2','Necrotising enterocolitis of newborn, Stage 3A','Y','2025-10-23 00:00:00'),(92617,11,'KB88.3','Necrotising enterocolitis of newborn, Stage 3B','Y','2025-10-23 00:00:00'),(92618,11,'KB88.Z','Necrotising enterocolitis of newborn, unspecified','Y','2025-10-23 00:00:00'),(92619,11,'1B71','Necrotising fasciitis','Y','2025-10-23 00:00:00'),(92620,11,'1B71.Y','Necrotising fasciitis due to other specified bacterial infection','Y','2025-10-23 00:00:00'),(92621,11,'1B71.Z','Necrotising fasciitis, unspecified','Y','2025-10-23 00:00:00'),(92622,11,'DA0C.3','Necrotising periodontal diseases','Y','2025-10-23 00:00:00'),(92623,11,'DA0C.3Z','Necrotising periodontal diseases, unspecified','Y','2025-10-23 00:00:00'),(92624,11,'1C1H','Necrotising ulcerative gingivitis','Y','2025-10-23 00:00:00'),(92625,11,'1C1H.Z','Necrotising ulcerative gingivitis, unspecified','Y','2025-10-23 00:00:00'),(92626,11,'DA0C.30','Necrotising ulcerative periodontitis','Y','2025-10-23 00:00:00'),(92627,11,'XM4TP3','Nedocromil','Y','2025-10-23 00:00:00'),(92628,11,'QC05','Need for certain specified other prophylactic measures','Y','2025-10-23 00:00:00'),(92629,11,'QF2B','Need for continuous supervision','Y','2025-10-23 00:00:00'),(92630,11,'QC01.1','Need for immunization against arthropod-borne viral encephalitis','Y','2025-10-23 00:00:00'),(92631,11,'QC01','Need for immunization against certain single viral diseases','Y','2025-10-23 00:00:00'),(92632,11,'QC01.Z','Need for immunization against certain single viral diseases, unspecified','Y','2025-10-23 00:00:00'),(92633,11,'QC02','Need for immunization against certain specified single infectious diseases','Y','2025-10-23 00:00:00'),(92634,11,'QC02.Z','Need for immunization against certain specified single infectious diseases, unspecified','Y','2025-10-23 00:00:00'),(92635,11,'QC00.0','Need for immunization against cholera alone','Y','2025-10-23 00:00:00'),(92636,11,'QC03.0','Need for immunization against cholera with typhoid-paratyphoid','Y','2025-10-23 00:00:00'),(92637,11,'QC03','Need for immunization against combinations of infectious diseases','Y','2025-10-23 00:00:00'),(92638,11,'QC03.Z','Need for immunization against combinations of infectious diseases, unspecified','Y','2025-10-23 00:00:00'),(92639,11,'QC01.9','Need for immunization against COVID-19','Y','2025-10-23 00:00:00'),(92640,11,'QC00.6','Need for immunization against diphtheria alone','Y','2025-10-23 00:00:00'),(92641,11,'QC03.3','Need for immunization against diphtheria-tetanus-pertussis with poliomyelitis','Y','2025-10-23 00:00:00'),(92642,11,'QC03.2','Need for immunization against diphtheria-tetanus-pertussis with typhoid-paratyphoid','Y','2025-10-23 00:00:00'),(92643,11,'QC03.1','Need for immunization against diphtheria-tetanus-pertussis, combined','Y','2025-10-23 00:00:00'),(92644,11,'QC01.8','Need for immunization against influenza','Y','2025-10-23 00:00:00'),(92645,11,'QC02.0','Need for immunization against leishmaniasis','Y','2025-10-23 00:00:00'),(92646,11,'QC01.4','Need for immunization against measles alone','Y','2025-10-23 00:00:00'),(92647,11,'QC03.4','Need for immunization against measles-mumps-rubella','Y','2025-10-23 00:00:00'),(92648,11,'QC01.7','Need for immunization against mumps alone','Y','2025-10-23 00:00:00'),(92649,11,'QC00.7','Need for immunization against pertussis alone','Y','2025-10-23 00:00:00'),(92650,11,'QC00.3','Need for immunization against plague','Y','2025-10-23 00:00:00'),(92651,11,'QC01.0','Need for immunization against poliomyelitis','Y','2025-10-23 00:00:00'),(92652,11,'QC01.2','Need for immunization against rabies','Y','2025-10-23 00:00:00'),(92653,11,'QC01.5','Need for immunization against rubella alone','Y','2025-10-23 00:00:00'),(92654,11,'QC00','Need for immunization against single bacterial diseases','Y','2025-10-23 00:00:00'),(92655,11,'QC00.Z','Need for immunization against single bacterial diseases, unspecified','Y','2025-10-23 00:00:00'),(92656,11,'QC00.5','Need for immunization against tetanus alone','Y','2025-10-23 00:00:00'),(92657,11,'QC00.2','Need for immunization against tuberculosis','Y','2025-10-23 00:00:00'),(92658,11,'QC00.4','Need for immunization against tularaemia','Y','2025-10-23 00:00:00'),(92659,11,'QC00.1','Need for immunization against typhoid-paratyphoid alone','Y','2025-10-23 00:00:00'),(92660,11,'QC01.6','Need for immunization against viral hepatitis','Y','2025-10-23 00:00:00'),(92661,11,'QC01.3','Need for immunization against yellow fever','Y','2025-10-23 00:00:00'),(92662,11,'XE4BH','Needle component of medical device','Y','2025-10-23 00:00:00'),(92663,11,'PK81.F','Needle stick associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(92664,11,'XE4HV','Needle stick prevention mechanism','Y','2025-10-23 00:00:00'),(92665,11,'QA8F','Needle stick without injury or harm','Y','2025-10-23 00:00:00'),(92666,11,'XM85H1','Nefazodone','Y','2025-10-23 00:00:00'),(92667,11,'XM4WT5','Nefopam','Y','2025-10-23 00:00:00'),(92668,11,'MB28.A','Negative affectivity','Y','2025-10-23 00:00:00'),(92669,11,'6D11.0','Negative affectivity in personality disorder or personality difficulty','Y','2025-10-23 00:00:00'),(92670,11,'6A25.1','Negative symptoms in primary psychotic disorders','Y','2025-10-23 00:00:00'),(92671,11,'MB28.B','Negativism','Y','2025-10-23 00:00:00'),(92672,11,'XE00G','Neglect','Y','2025-10-23 00:00:00'),(92673,11,'PH7B','Neglect with undetermined intent','Y','2025-10-23 00:00:00'),(92674,11,'XN69X','Neisseria','Y','2025-10-23 00:00:00'),(92675,11,'XN59Y','Neisseria gonorrhoeae','Y','2025-10-23 00:00:00'),(92676,11,'MG50.6Y','Neisseria gonorrhoeae resistant to other antibiotic','Y','2025-10-23 00:00:00'),(92677,11,'MG50.6Z','Neisseria gonorrhoeae resistant to unspecified antibiotic','Y','2025-10-23 00:00:00'),(92678,11,'XN1DV','Neisseria meningitidis','Y','2025-10-23 00:00:00'),(92679,11,'XC5Y','Neither pupil reacts','Y','2025-10-23 00:00:00'),(92680,11,'XM6079','Nelarabine','Y','2025-10-23 00:00:00'),(92681,11,'XM6175','Nelfinavir','Y','2025-10-23 00:00:00'),(92682,11,'5A70.3','Nelson syndrome','Y','2025-10-23 00:00:00'),(92683,11,'XM66E3','Neltenexine','Y','2025-10-23 00:00:00'),(92684,11,'8C72.00','Nemaline myopathy','Y','2025-10-23 00:00:00'),(92685,11,'XE40R','Nematocysts','Y','2025-10-23 00:00:00'),(92686,11,'XM7B44','Nemonapride','Y','2025-10-23 00:00:00'),(92687,11,'XM08P3','Neoarsphenamine','Y','2025-10-23 00:00:00'),(92688,11,'XM5VG7','Neocinchophen','Y','2025-10-23 00:00:00'),(92689,11,'MB25.2','Neologisms','Y','2025-10-23 00:00:00'),(92690,11,'XM2YC8','Neomycin (derivatives)','Y','2025-10-23 00:00:00'),(92691,11,'XM7D13','Neomycin topical','Y','2025-10-23 00:00:00'),(92692,11,'XM51P6','Neomycin with bacitracin','Y','2025-10-23 00:00:00'),(92693,11,'XM40R6','Neomycin with neostigmine','Y','2025-10-23 00:00:00'),(92694,11,'XT16','Neonatal','Y','2025-10-23 00:00:00'),(92695,11,'KC21.0','Neonatal acne','Y','2025-10-23 00:00:00'),(92696,11,'KA63.1','Neonatal aspergillosis','Y','2025-10-23 00:00:00'),(92697,11,'KB26.1','Neonatal aspiration of amniotic fluid or mucus','Y','2025-10-23 00:00:00'),(92698,11,'KB26.2','Neonatal aspiration of blood','Y','2025-10-23 00:00:00'),(92699,11,'KB26.0','Neonatal aspiration of meconium','Y','2025-10-23 00:00:00'),(92700,11,'KB26.3','Neonatal aspiration of milk or regurgitated food','Y','2025-10-23 00:00:00'),(92701,11,'KB26','Neonatal aspiration syndromes','Y','2025-10-23 00:00:00'),(92702,11,'KB26.Z','Neonatal aspiration syndromes, unspecified','Y','2025-10-23 00:00:00'),(92703,11,'KA83.0','Neonatal bleeding originating in the mouth, nose or pharynx','Y','2025-10-23 00:00:00'),(92704,11,'KA83.1','Neonatal bleeding originating in the oesophagus, stomach, small or large intestine','Y','2025-10-23 00:00:00'),(92705,11,'KA63.2','Neonatal candidosis','Y','2025-10-23 00:00:00'),(92706,11,'KB40','Neonatal cardiac failure','Y','2025-10-23 00:00:00'),(92707,11,'KB40.1','Neonatal cardiac failure due to decreased left ventricular output','Y','2025-10-23 00:00:00'),(92708,11,'KB40.0','Neonatal cardiac failure due to pulmonary overperfusion','Y','2025-10-23 00:00:00'),(92709,11,'KB40.Z','Neonatal cardiac failure, unspecified','Y','2025-10-23 00:00:00'),(92710,11,'KB00','Neonatal cerebral ischaemia','Y','2025-10-23 00:00:00'),(92711,11,'KB00.Z','Neonatal cerebral ischaemia, unspecified','Y','2025-10-23 00:00:00'),(92712,11,'KB02','Neonatal cerebral leukomalacia','Y','2025-10-23 00:00:00'),(92713,11,'KB00.1','Neonatal cerebral sinovenous thrombosis','Y','2025-10-23 00:00:00'),(92714,11,'KD12.0','Neonatal cold injury syndrome','Y','2025-10-23 00:00:00'),(92715,11,'KA65.0','Neonatal conjunctivitis or dacryocystitis','Y','2025-10-23 00:00:00'),(92716,11,'KA83.8','Neonatal cutaneous haemorrhage','Y','2025-10-23 00:00:00'),(92717,11,'KA07','Neonatal dermatoses due to maternal antibodies','Y','2025-10-23 00:00:00'),(92718,11,'KB60.2','Neonatal diabetes mellitus','Y','2025-10-23 00:00:00'),(92719,11,'KB60.2Z','Neonatal diabetes mellitus, unspecified','Y','2025-10-23 00:00:00'),(92720,11,'KD32.3','Neonatal difficulty in feeding at breast','Y','2025-10-23 00:00:00'),(92721,11,'KC22','Neonatal disorders of subcutaneous fat','Y','2025-10-23 00:00:00'),(92722,11,'KC23','Neonatal disorders of the oral mucosa','Y','2025-10-23 00:00:00'),(92723,11,'KB03','Neonatal encephalopathy','Y','2025-10-23 00:00:00'),(92724,11,'KB81.0','Neonatal eosinophilic oesophagitis','Y','2025-10-23 00:00:00'),(92725,11,'KA83.A','Neonatal epistaxis','Y','2025-10-23 00:00:00'),(92726,11,'EH12','Neonatal fungal infections involving the skin','Y','2025-10-23 00:00:00'),(92727,11,'KB8A','Neonatal haematemesis or melaena due to swallowed maternal blood','Y','2025-10-23 00:00:00'),(92728,11,'KA84.5','Neonatal haemolysis due to systemic bacterial infection with or without concomitant diffuse intravascular coagulation','Y','2025-10-23 00:00:00'),(92729,11,'KA83.4','Neonatal haemorrhage originating in adrenal gland','Y','2025-10-23 00:00:00'),(92730,11,'KA83.6','Neonatal haemorrhage originating in kidney or bladder','Y','2025-10-23 00:00:00'),(92731,11,'KA83.5','Neonatal haemorrhage originating in spleen','Y','2025-10-23 00:00:00'),(92732,11,'KA83.7','Neonatal haemorrhage originating in trachea or pulmonary parenchyma','Y','2025-10-23 00:00:00'),(92733,11,'KA83.3','Neonatal hepatic haemorrhage','Y','2025-10-23 00:00:00'),(92734,11,'KB05','Neonatal hydrocephalus','Y','2025-10-23 00:00:00'),(92735,11,'KB05.Z','Neonatal hydrocephalus, unspecified','Y','2025-10-23 00:00:00'),(92736,11,'KA87','Neonatal hyperbilirubinaemia','Y','2025-10-23 00:00:00'),(92737,11,'KA87.2','Neonatal hyperbilirubinaemia due to breast milk inhibitor of bilirubin conjugation','Y','2025-10-23 00:00:00'),(92738,11,'KA87.5','Neonatal hyperbilirubinaemia due to drugs or toxins given to newborn','Y','2025-10-23 00:00:00'),(92739,11,'KA87.4','Neonatal hyperbilirubinaemia due to drugs or toxins transmitted from mother','Y','2025-10-23 00:00:00'),(92740,11,'KA87.1','Neonatal hyperbilirubinaemia due to enzymatic defect in bilirubin degradation','Y','2025-10-23 00:00:00'),(92741,11,'KA87.0','Neonatal hyperbilirubinaemia due to swallowed maternal blood','Y','2025-10-23 00:00:00'),(92742,11,'KA87.3','Neonatal hyperbilirubinaemia due to total parenteral nutrition','Y','2025-10-23 00:00:00'),(92743,11,'KA87.6','Neonatal hyperbilirubinaemia from other or unspecified hepatocellular damage','Y','2025-10-23 00:00:00'),(92744,11,'KA87.Z','Neonatal hyperbilirubinaemia, unspecified','Y','2025-10-23 00:00:00'),(92745,11,'KB60.3','Neonatal hyperglycaemia','Y','2025-10-23 00:00:00'),(92746,11,'KB60.31','Neonatal hyperglycaemia due to iatrogenic intravenous therapy','Y','2025-10-23 00:00:00'),(92747,11,'KB60.30','Neonatal hyperglycaemia due to insulin deficiency','Y','2025-10-23 00:00:00'),(92748,11,'KB60.3Z','Neonatal hyperglycaemia, unspecified','Y','2025-10-23 00:00:00'),(92749,11,'KB45','Neonatal hypertension','Y','2025-10-23 00:00:00'),(92750,11,'KB61.2','Neonatal hypocalcaemia','Y','2025-10-23 00:00:00'),(92751,11,'KB60.4','Neonatal hypoglycaemia','Y','2025-10-23 00:00:00'),(92752,11,'KB60.4Z','Neonatal hypoglycaemia, unspecified','Y','2025-10-23 00:00:00'),(92753,11,'KB61.0','Neonatal hypomagnesaemia','Y','2025-10-23 00:00:00'),(92754,11,'KB46','Neonatal hypotension','Y','2025-10-23 00:00:00'),(92755,11,'KA65','Neonatal infections of certain specified sites','Y','2025-10-23 00:00:00'),(92756,11,'KA65.Y','Neonatal infections of other specified sites','Y','2025-10-23 00:00:00'),(92757,11,'KA65.3','Neonatal infectious mastitis','Y','2025-10-23 00:00:00'),(92758,11,'KA86','Neonatal kernicterus','Y','2025-10-23 00:00:00'),(92759,11,'KA61.1','Neonatal listeriosis','Y','2025-10-23 00:00:00'),(92760,11,'KA07.0','Neonatal lupus erythematosus','Y','2025-10-23 00:00:00'),(92761,11,'KB89.0','Neonatal malabsorption due to endocrine secreting tumour','Y','2025-10-23 00:00:00'),(92762,11,'KB89','Neonatal malabsorption syndromes','Y','2025-10-23 00:00:00'),(92763,11,'KB89.Z','Neonatal malabsorption syndromes, unspecified','Y','2025-10-23 00:00:00'),(92764,11,'KA65.4','Neonatal meningitis','Y','2025-10-23 00:00:00'),(92765,11,'KC40.1','Neonatal milia','Y','2025-10-23 00:00:00'),(92766,11,'EE02.0','Neonatal miliaria','Y','2025-10-23 00:00:00'),(92767,11,'1B71.2','Neonatal necrotising fasciitis','Y','2025-10-23 00:00:00'),(92768,11,'KC24','Neonatal nutritional disorders affecting the skin','Y','2025-10-23 00:00:00'),(92769,11,'KB05.0','Neonatal obstructive hydrocephalus','Y','2025-10-23 00:00:00'),(92770,11,'KB61.3','Neonatal osteopenia','Y','2025-10-23 00:00:00'),(92771,11,'KA07.1','Neonatal pemphigus','Y','2025-10-23 00:00:00'),(92772,11,'KB8B','Neonatal peritonitis','Y','2025-10-23 00:00:00'),(92773,11,'KC50','Neonatal phototherapy burn','Y','2025-10-23 00:00:00'),(92774,11,'EH11','Neonatal pyogenic skin infections','Y','2025-10-23 00:00:00'),(92775,11,'KA83.2','Neonatal rectal haemorrhage','Y','2025-10-23 00:00:00'),(92776,11,'KB06','Neonatal seizures','Y','2025-10-23 00:00:00'),(92777,11,'EH1Z','Neonatal skin infection, unspecified','Y','2025-10-23 00:00:00'),(92778,11,'KB61.1','Neonatal tetany without calcium or magnesium deficiency','Y','2025-10-23 00:00:00'),(92779,11,'KC21.1','Neonatal toxic erythema','Y','2025-10-23 00:00:00'),(92780,11,'KB25','Neonatal tracheitis','Y','2025-10-23 00:00:00'),(92781,11,'KA65.2','Neonatal urinary tract infection','Y','2025-10-23 00:00:00'),(92782,11,'KA83.9','Neonatal vaginal or uterine haemorrhage','Y','2025-10-23 00:00:00'),(92783,11,'EH10','Neonatal viral infections involving the skin','Y','2025-10-23 00:00:00'),(92784,11,'3A01.1','Neonatal vitamin B12 deficiency anaemia','Y','2025-10-23 00:00:00'),(92785,11,'KA8F','Neonatal vitamin K deficiency','Y','2025-10-23 00:00:00'),(92786,11,'KA8F.Z','Neonatal vitamin K deficiency, unspecified','Y','2025-10-23 00:00:00'),(92787,11,'KD35','Neonatal withdrawal syndrome from maternal use of drugs of addiction','Y','2025-10-23 00:00:00'),(92788,11,'2B3Z','Neoplasms of haematopoietic or lymphoid tissues, unspecified','Y','2025-10-23 00:00:00'),(92789,11,'2F7B','Neoplasms of uncertain behaviour of bone or articular cartilage','Y','2025-10-23 00:00:00'),(92790,11,'2F75','Neoplasms of uncertain behaviour of breast','Y','2025-10-23 00:00:00'),(92791,11,'2F70.3','Neoplasms of uncertain behaviour of colon','Y','2025-10-23 00:00:00'),(92792,11,'2F7C','Neoplasms of uncertain behaviour of connective or other soft tissue','Y','2025-10-23 00:00:00'),(92793,11,'2F7A','Neoplasms of uncertain behaviour of endocrine glands','Y','2025-10-23 00:00:00'),(92794,11,'2F7A.Z','Neoplasms of uncertain behaviour of endocrine glands, unspecified','Y','2025-10-23 00:00:00'),(92795,11,'2F79','Neoplasms of uncertain behaviour of eye or ocular adnexa','Y','2025-10-23 00:00:00'),(92796,11,'2F76','Neoplasms of uncertain behaviour of female genital organs','Y','2025-10-23 00:00:00'),(92797,11,'2F71.1','Neoplasms of uncertain behaviour of larynx','Y','2025-10-23 00:00:00'),(92798,11,'2F70.0','Neoplasms of uncertain behaviour of lip, oral cavity or pharynx','Y','2025-10-23 00:00:00'),(92799,11,'2F70.5','Neoplasms of uncertain behaviour of liver, gallbladder or bile ducts','Y','2025-10-23 00:00:00'),(92800,11,'2F77','Neoplasms of uncertain behaviour of male genital organs','Y','2025-10-23 00:00:00'),(92801,11,'2F71.4','Neoplasms of uncertain behaviour of mediastinum','Y','2025-10-23 00:00:00'),(92802,11,'2F71.Y','Neoplasms of uncertain behaviour of middle ear, respiratory and intrathoracic organs, other specified site','Y','2025-10-23 00:00:00'),(92803,11,'2F71.Z','Neoplasms of uncertain behaviour of middle ear, respiratory and intrathoracic organs, unspecified site','Y','2025-10-23 00:00:00'),(92804,11,'2F71','Neoplasms of uncertain behaviour of middle ear, respiratory or intrathoracic organs','Y','2025-10-23 00:00:00'),(92805,11,'2F70.Y','Neoplasms of uncertain behaviour of oral cavity and digestive organs, other specified site','Y','2025-10-23 00:00:00'),(92806,11,'2F70.Z','Neoplasms of uncertain behaviour of oral cavity and digestive organs, unspecified site','Y','2025-10-23 00:00:00'),(92807,11,'2F70','Neoplasms of uncertain behaviour of oral cavity or digestive organs','Y','2025-10-23 00:00:00'),(92808,11,'2F7Y','Neoplasms of uncertain behaviour of other specified site','Y','2025-10-23 00:00:00'),(92809,11,'2F74','Neoplasms of uncertain behaviour of peritoneum','Y','2025-10-23 00:00:00'),(92810,11,'2F71.2','Neoplasms of uncertain behaviour of pleura','Y','2025-10-23 00:00:00'),(92811,11,'2F70.4','Neoplasms of uncertain behaviour of rectum','Y','2025-10-23 00:00:00'),(92812,11,'2F73','Neoplasms of uncertain behaviour of retroperitoneum','Y','2025-10-23 00:00:00'),(92813,11,'2F72','Neoplasms of uncertain behaviour of skin','Y','2025-10-23 00:00:00'),(92814,11,'2F70.2','Neoplasms of uncertain behaviour of small intestine','Y','2025-10-23 00:00:00'),(92815,11,'2F70.1','Neoplasms of uncertain behaviour of stomach','Y','2025-10-23 00:00:00'),(92816,11,'2F71.0','Neoplasms of uncertain behaviour of thymus','Y','2025-10-23 00:00:00'),(92817,11,'2F71.3','Neoplasms of uncertain behaviour of trachea, bronchus or lung','Y','2025-10-23 00:00:00'),(92818,11,'2F7Z','Neoplasms of uncertain behaviour of unspecified site','Y','2025-10-23 00:00:00'),(92819,11,'2F78','Neoplasms of uncertain behaviour of urinary organs','Y','2025-10-23 00:00:00'),(92820,11,'2F9B','Neoplasms of unknown behaviour of bone or articular cartilage','Y','2025-10-23 00:00:00'),(92821,11,'2F95','Neoplasms of unknown behaviour of breast','Y','2025-10-23 00:00:00'),(92822,11,'2F90.0','Neoplasms of unknown behaviour of colon','Y','2025-10-23 00:00:00'),(92823,11,'2F9C','Neoplasms of unknown behaviour of connective or other soft tissue','Y','2025-10-23 00:00:00'),(92824,11,'2F9A','Neoplasms of unknown behaviour of endocrine glands','Y','2025-10-23 00:00:00'),(92825,11,'2F99','Neoplasms of unknown behaviour of eye or ocular adnexa','Y','2025-10-23 00:00:00'),(92826,11,'2F96','Neoplasms of unknown behaviour of female genital organs','Y','2025-10-23 00:00:00'),(92827,11,'2F91.0','Neoplasms of unknown behaviour of larynx','Y','2025-10-23 00:00:00'),(92828,11,'2F97','Neoplasms of unknown behaviour of male genital organs','Y','2025-10-23 00:00:00'),(92829,11,'2F91','Neoplasms of unknown behaviour of middle ear, respiratory or intrathoracic organs','Y','2025-10-23 00:00:00'),(92830,11,'2F90.Y','Neoplasms of unknown behaviour of oral cavity and digestive organs, other specified site','Y','2025-10-23 00:00:00'),(92831,11,'2F90.Z','Neoplasms of unknown behaviour of oral cavity and digestive organs, unspecified site','Y','2025-10-23 00:00:00'),(92832,11,'2F90','Neoplasms of unknown behaviour of oral cavity or digestive organs','Y','2025-10-23 00:00:00'),(92833,11,'2F91.Y','Neoplasms of unknown behaviour of other specified middle ear, respiratory or intrathoracic organ','Y','2025-10-23 00:00:00'),(92834,11,'2F9Y','Neoplasms of unknown behaviour of other specified site','Y','2025-10-23 00:00:00'),(92835,11,'2F94','Neoplasms of unknown behaviour of peritoneum','Y','2025-10-23 00:00:00'),(92836,11,'2F90.1','Neoplasms of unknown behaviour of rectum','Y','2025-10-23 00:00:00'),(92837,11,'2F93','Neoplasms of unknown behaviour of retroperitoneum','Y','2025-10-23 00:00:00'),(92838,11,'2F92','Neoplasms of unknown behaviour of skin','Y','2025-10-23 00:00:00'),(92839,11,'2F91.1','Neoplasms of unknown behaviour of trachea, bronchus or lung','Y','2025-10-23 00:00:00'),(92840,11,'2F9Z','Neoplasms of unknown behaviour of unspecified site','Y','2025-10-23 00:00:00'),(92841,11,'2F98','Neoplasms of unknown behaviour of urinary organs','Y','2025-10-23 00:00:00'),(92842,11,'2E81.0','Neoplastic haemangioma','Y','2025-10-23 00:00:00'),(92843,11,'2E81.0Y','Neoplastic haemangioma of other specified site','Y','2025-10-23 00:00:00'),(92844,11,'2E81.0Z','Neoplastic haemangioma, unspecified site','Y','2025-10-23 00:00:00'),(92845,11,'8E40.0','Neoplastic meningitis','Y','2025-10-23 00:00:00'),(92846,11,'BB20.1','Neoplastic pericarditis','Y','2025-10-23 00:00:00'),(92847,11,'XM3GA0','Neoprontosil','Y','2025-10-23 00:00:00'),(92848,11,'BE14.41','Neopulmonary valve regurgitation','Y','2025-10-23 00:00:00'),(92849,11,'BE14.40','Neopulmonary valve stenosis','Y','2025-10-23 00:00:00'),(92850,11,'XN8ST','Neorickettsia','Y','2025-10-23 00:00:00'),(92851,11,'XN7C8','Neorickettsia sennetsu','Y','2025-10-23 00:00:00'),(92852,11,'XM0M05','Neosilversalvarsan','Y','2025-10-23 00:00:00'),(92853,11,'XM14K4','Neosporin','Y','2025-10-23 00:00:00'),(92854,11,'XM9EQ5','Neosporin ENT agent','Y','2025-10-23 00:00:00'),(92855,11,'XM28C3','Neosporin opthalmic preparation','Y','2025-10-23 00:00:00'),(92856,11,'XM6YS1','Neosporin topical','Y','2025-10-23 00:00:00'),(92857,11,'XM8C30','Neostigmine','Y','2025-10-23 00:00:00'),(92858,11,'XM3671','Neostigmine bromide','Y','2025-10-23 00:00:00'),(92859,11,'9B75.04','Neovascular late-stage age-related macular degeneration','Y','2025-10-23 00:00:00'),(92860,11,'9C61.32','Neovascular secondary angle closure glaucoma','Y','2025-10-23 00:00:00'),(92861,11,'XM4GZ0','Nepafenac','Y','2025-10-23 00:00:00'),(92862,11,'GB40','Nephritic syndrome','Y','2025-10-23 00:00:00'),(92863,11,'XH5QN3','Nephroblastoma, NOS','Y','2025-10-23 00:00:00'),(92864,11,'GB57','Nephrocalcinosis','Y','2025-10-23 00:00:00'),(92865,11,'GB90.4A','Nephrogenic diabetes insipidus','Y','2025-10-23 00:00:00'),(92866,11,'5A60.20','Nephrogenic syndrome of inappropriate antidiuresis','Y','2025-10-23 00:00:00'),(92867,11,'XA8AN8','Nephron','Y','2025-10-23 00:00:00'),(92868,11,'GB83','Nephronophthisis','Y','2025-10-23 00:00:00'),(92869,11,'GB55.1','Nephropathy induced by heavy metals','Y','2025-10-23 00:00:00'),(92870,11,'GB90.0','Nephroptosis','Y','2025-10-23 00:00:00'),(92871,11,'GB41','Nephrotic syndrome','Y','2025-10-23 00:00:00'),(92872,11,'XM7UA5','Nepinalone','Y','2025-10-23 00:00:00'),(92873,11,'XM5MT6','Neratinib','Y','2025-10-23 00:00:00'),(92874,11,'XM3XT1','Nerium oleander plant','Y','2025-10-23 00:00:00'),(92875,11,'XA3PR2','Nerve ganglia','Y','2025-10-23 00:00:00'),(92876,11,'XM61G0','Nerve gas, not elsewhere classified','Y','2025-10-23 00:00:00'),(92877,11,'XA9LR9','Nerve of pterygoid canal','Y','2025-10-23 00:00:00'),(92878,11,'XA96Q6','Nerve of the cervical region','Y','2025-10-23 00:00:00'),(92879,11,'XA3M58','Nerve of the Thorax','Y','2025-10-23 00:00:00'),(92880,11,'8B90','Nerve root and plexus compressions','Y','2025-10-23 00:00:00'),(92881,11,'8B9Z','Nerve root or plexus disorders, unspecified','Y','2025-10-23 00:00:00'),(92882,11,'XH3L35','Nerve sheath myxoma','Y','2025-10-23 00:00:00'),(92883,11,'XH27Y1','Nerve sheath tumour, NOS','Y','2025-10-23 00:00:00'),(92884,11,'XA1HC7','Nerve to obturator internus','Y','2025-10-23 00:00:00'),(92885,11,'XA7S27','Nerve to quadratus femoris','Y','2025-10-23 00:00:00'),(92886,11,'XA8PE3','Nerve to the piriformis','Y','2025-10-23 00:00:00'),(92887,11,'XA69Y7','Nerve to the stapedius','Y','2025-10-23 00:00:00'),(92888,11,'XA4XD7','Nerve to the subclavius','Y','2025-10-23 00:00:00'),(92889,11,'XA2BH4','Nerves of the autonomic nervous system','Y','2025-10-23 00:00:00'),(92890,11,'XA5B23','Nervous Tissue','Y','2025-10-23 00:00:00'),(92891,11,'XA0869','Nervus intermedius','Y','2025-10-23 00:00:00'),(92892,11,'XA2KG8','Nervus spinosus','Y','2025-10-23 00:00:00'),(92893,11,'XM68T6','Nesacaine','Y','2025-10-23 00:00:00'),(92894,11,'XM6AA0','Nesacaine infiltration','Y','2025-10-23 00:00:00'),(92895,11,'XM4148','Nesacaine nerve block','Y','2025-10-23 00:00:00'),(92896,11,'XH1NL5','Nesidioblastoma','Y','2025-10-23 00:00:00'),(92897,11,'XM2460','Nesiritide','Y','2025-10-23 00:00:00'),(92898,11,'XE2EM','Net for sports or exercise','Y','2025-10-23 00:00:00'),(92899,11,'XM3SM5','Netakimab','Y','2025-10-23 00:00:00'),(92900,11,'XM8469','Netarsudil','Y','2025-10-23 00:00:00'),(92901,11,'XM1W69','Netilmicin','Y','2025-10-23 00:00:00'),(92902,11,'XE5NA','Network communication problem with device identified','Y','2025-10-23 00:00:00'),(92903,11,'XE2YC','Network interface component of medical device','Y','2025-10-23 00:00:00'),(92904,11,'MA14.19','Neural autoantibody negative','Y','2025-10-23 00:00:00'),(92905,11,'MA14.1A','Neural autoantibody positive','Y','2025-10-23 00:00:00'),(92906,11,'8B91.0','Neuralgic shoulder amyotrophy','Y','2025-10-23 00:00:00'),(92907,11,'XM6DT0','Neuraminidase inhibitors','Y','2025-10-23 00:00:00'),(92908,11,'XH88C2','Neurilemoma, malignant','Y','2025-10-23 00:00:00'),(92909,11,'2D11.2','Neuroblastoma of adrenal gland','Y','2025-10-23 00:00:00'),(92910,11,'XH85Z0','Neuroblastoma, NOS','Y','2025-10-23 00:00:00'),(92911,11,'6E0Z','Neurocognitive disorders, unspecified','Y','2025-10-23 00:00:00'),(92912,11,'6A0Z','Neurodevelopmental disorders, unspecified','Y','2025-10-23 00:00:00'),(92913,11,'XH7K24','Neuroectodermal tumour, NOS','Y','2025-10-23 00:00:00'),(92914,11,'2C77.3','Neuroendocrine carcinoma of cervix uteri','Y','2025-10-23 00:00:00'),(92915,11,'XH8LX8','Neuroendocrine carcinoma, low grade','Y','2025-10-23 00:00:00'),(92916,11,'XH7F73','Neuroendocrine carcinoma, moderately differentiated','Y','2025-10-23 00:00:00'),(92917,11,'XH0U20','Neuroendocrine carcinoma, NOS','Y','2025-10-23 00:00:00'),(92918,11,'XH55D7','Neuroendocrine carcinoma, well-differentiated','Y','2025-10-23 00:00:00'),(92919,11,'CB04.7','Neuroendocrine cell hyperplasia of infancy','Y','2025-10-23 00:00:00'),(92920,11,'2C00.2','Neuroendocrine neoplasm of anus or anal canal','Y','2025-10-23 00:00:00'),(92921,11,'2B80.01','Neuroendocrine neoplasm of duodenum','Y','2025-10-23 00:00:00'),(92922,11,'2C18.2','Neuroendocrine neoplasm of perihilar bile duct','Y','2025-10-23 00:00:00'),(92923,11,'2C16.1','Neuroendocrine neoplasms of ampulla of Vater','Y','2025-10-23 00:00:00'),(92924,11,'2B81.2','Neuroendocrine neoplasms of appendix','Y','2025-10-23 00:00:00'),(92925,11,'2C14.2','Neuroendocrine neoplasms of cystic duct','Y','2025-10-23 00:00:00'),(92926,11,'2C15.2','Neuroendocrine neoplasms of distal bile duct','Y','2025-10-23 00:00:00'),(92927,11,'2B80.11','Neuroendocrine neoplasms of jejunum or ileum','Y','2025-10-23 00:00:00'),(92928,11,'2C17.2','Neuroendocrine neoplasms of other or unspecified parts of biliary tract','Y','2025-10-23 00:00:00'),(92929,11,'2C10.1','Neuroendocrine neoplasms of pancreas','Y','2025-10-23 00:00:00'),(92930,11,'2B92.1','Neuroendocrine neoplasms of rectum','Y','2025-10-23 00:00:00'),(92931,11,'2B80.21','Neuroendocrine neoplasms of small intestine, site unspecified','Y','2025-10-23 00:00:00'),(92932,11,'XH9LV8','Neuroendocrine tumor, grade 1','Y','2025-10-23 00:00:00'),(92933,11,'XH51K1','Neuroendocrine tumour, grade 2','Y','2025-10-23 00:00:00'),(92934,11,'XH5QW8','Neuroendocrine tumour, grade 3','Y','2025-10-23 00:00:00'),(92935,11,'XH8DS0','Neuroendocrine tumour, NOS','Y','2025-10-23 00:00:00'),(92936,11,'XH9FP2','Neuroepithelioma, NOS','Y','2025-10-23 00:00:00'),(92937,11,'XH87J5','Neurofibroma, NOS','Y','2025-10-23 00:00:00'),(92938,11,'LD2D.1','Neurofibromatoses','Y','2025-10-23 00:00:00'),(92939,11,'LD2D.10','Neurofibromatosis type 1','Y','2025-10-23 00:00:00'),(92940,11,'LD2D.11','Neurofibromatosis type 2','Y','2025-10-23 00:00:00'),(92941,11,'LD2D.12','Neurofibromatosis type 3','Y','2025-10-23 00:00:00'),(92942,11,'LD2D.1Z','Neurofibromatosis, unspecified','Y','2025-10-23 00:00:00'),(92943,11,'XA1J91','Neuroglia','Y','2025-10-23 00:00:00'),(92944,11,'PK95.0','Neurological devices associated with injury or harm, diagnostic or monitoring devices','Y','2025-10-23 00:00:00'),(92945,11,'PK95.4','Neurological devices associated with injury or harm, miscellaneous devices, not elsewhere classified','Y','2025-10-23 00:00:00'),(92946,11,'PK95.2','Neurological devices associated with injury or harm, prosthetic or other implants, materials or accessory devices','Y','2025-10-23 00:00:00'),(92947,11,'PK95.2Z','Neurological devices associated with injury or harm, prosthetic or other implants, materials or accessory devices, unspecified','Y','2025-10-23 00:00:00'),(92948,11,'PK95.3','Neurological devices associated with injury or harm, surgical instruments, materials or devices','Y','2025-10-23 00:00:00'),(92949,11,'PK95.1','Neurological devices associated with injury or harm, therapeutic, nonsurgical or rehabilitative devices','Y','2025-10-23 00:00:00'),(92950,11,'PK95.20','Neurological devices associated with injury or harm, ventricular shunt','Y','2025-10-23 00:00:00'),(92951,11,'PK95','Neurological devices, implants or grafts associated with injury or harm','Y','2025-10-23 00:00:00'),(92952,11,'PK95.Z','Neurological devices, implants or grafts associated with injury or harm, unspecified','Y','2025-10-23 00:00:00'),(92953,11,'8D41','Neurological disorders due to an excess of micro or macro nutrients','Y','2025-10-23 00:00:00'),(92954,11,'8D41.Z','Neurological disorders due to an excess of micro or macro nutrients, unspecified','Y','2025-10-23 00:00:00'),(92955,11,'8D40','Neurological disorders due to nutrient deficiency','Y','2025-10-23 00:00:00'),(92956,11,'8D40.Z','Neurological disorders due to nutrient deficiency, unspecified','Y','2025-10-23 00:00:00'),(92957,11,'8D42','Neurological disorders due to overweight or obesity in adults or children','Y','2025-10-23 00:00:00'),(92958,11,'8D43','Neurological disorders due to toxicity','Y','2025-10-23 00:00:00'),(92959,11,'8D43.Z','Neurological disorders due to toxicity, unspecified','Y','2025-10-23 00:00:00'),(92960,11,'KB0Z','Neurological disorders specific to the perinatal or neonatal period, unspecified','Y','2025-10-23 00:00:00'),(92961,11,'MB40.9','Neurological neglect syndrome','Y','2025-10-23 00:00:00'),(92962,11,'PK80.0','Neurological procedure associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(92963,11,'PK80.02','Neurological procedure associated with injury or harm, endoscopic approach','Y','2025-10-23 00:00:00'),(92964,11,'PK80.00','Neurological procedure associated with injury or harm, open approach','Y','2025-10-23 00:00:00'),(92965,11,'PK80.0Y','Neurological procedure associated with injury or harm, other specified approach','Y','2025-10-23 00:00:00'),(92966,11,'PK80.01','Neurological procedure associated with injury or harm, percutaneous approach','Y','2025-10-23 00:00:00'),(92967,11,'PK80.0Z','Neurological procedure associated with injury or harm, unspecified approach','Y','2025-10-23 00:00:00'),(92968,11,'NE85.3','Neuroma of amputation stump','Y','2025-10-23 00:00:00'),(92969,11,'XH4UE6','Neuroma, NOS','Y','2025-10-23 00:00:00'),(92970,11,'XM2UG5','Neuromuscular blocking drug','Y','2025-10-23 00:00:00'),(92971,11,'GC01.4','Neuromuscular dysfunction of bladder, not elsewhere classified','Y','2025-10-23 00:00:00'),(92972,11,'VV6Z','Neuromusculoskeletal and movement-related functions, unspecified','Y','2025-10-23 00:00:00'),(92973,11,'8A43','Neuromyelitis optica','Y','2025-10-23 00:00:00'),(92974,11,'8A43.1','Neuromyelitis optica aquaporin-4 antibody negative','Y','2025-10-23 00:00:00'),(92975,11,'8A43.0','Neuromyelitis optica aquaporin-4 antibody positive','Y','2025-10-23 00:00:00'),(92976,11,'8A41.1','Neuromyelitis optica myelin oligodendrocyte glycoprotein antibody-positive','Y','2025-10-23 00:00:00'),(92977,11,'8A43.Z','Neuromyelitis optica, unspecified','Y','2025-10-23 00:00:00'),(92978,11,'8C71.4','Neuromyotonia','Y','2025-10-23 00:00:00'),(92979,11,'XA1413','Neuron','Y','2025-10-23 00:00:00'),(92980,11,'5C56.1','Neuronal ceroid lipofuscinosis','Y','2025-10-23 00:00:00'),(92981,11,'XH8CU4','Neuronevus','Y','2025-10-23 00:00:00'),(92982,11,'FA38.1','Neuropathic arthropathy','Y','2025-10-23 00:00:00'),(92983,11,'FA38.1Z','Neuropathic arthropathy, unspecified','Y','2025-10-23 00:00:00'),(92984,11,'8E43.0','Neuropathic pain','Y','2025-10-23 00:00:00'),(92985,11,'8E43.0Z','Neuropathic pain, unspecified','Y','2025-10-23 00:00:00'),(92986,11,'ED30','Neuropathic skin damage','Y','2025-10-23 00:00:00'),(92987,11,'ED30.0','Neuropathic skin ulceration','Y','2025-10-23 00:00:00'),(92988,11,'8D40.1','Neuropathy due to nutritional deficiency','Y','2025-10-23 00:00:00'),(92989,11,'8D43.2','Neuropathy due to toxicity','Y','2025-10-23 00:00:00'),(92990,11,'8D43.2Z','Neuropathy due to toxicity, unspecified','Y','2025-10-23 00:00:00'),(92991,11,'LD2H.1','Neuropathy with hearing impairment','Y','2025-10-23 00:00:00'),(92992,11,'8C73.1','Neuropathy, ataxia, and retinitis pigmentosa','Y','2025-10-23 00:00:00'),(92993,11,'9C40.2','Neuroretinitis','Y','2025-10-23 00:00:00'),(92994,11,'4B20.3','Neurosarcoidosis','Y','2025-10-23 00:00:00'),(92995,11,'1A62.0','Neurosyphilis','Y','2025-10-23 00:00:00'),(92996,11,'1A62.0Z','Neurosyphilis, unspecified','Y','2025-10-23 00:00:00'),(92997,11,'9A74','Neurotrophic keratitis','Y','2025-10-23 00:00:00'),(92998,11,'XH5F94','Neurotropic melanoma, malignant','Y','2025-10-23 00:00:00'),(92999,11,'XM8502','Neutral insulin injection','Y','2025-10-23 00:00:00'),(93000,11,'5C52.2','Neutral lipid storage disease','Y','2025-10-23 00:00:00'),(93001,11,'4B00.0','Neutropaenia','Y','2025-10-23 00:00:00'),(93002,11,'4B00.0Z','Neutropaenia, unspecified','Y','2025-10-23 00:00:00'),(93003,11,'4A00.00','Neutrophil immunodeficiency syndrome','Y','2025-10-23 00:00:00'),(93004,11,'4B00.1','Neutrophilia','Y','2025-10-23 00:00:00'),(93005,11,'4B00.1Z','Neutrophilia, unspecified','Y','2025-10-23 00:00:00'),(93006,11,'XA8C44','Neutrophils','Y','2025-10-23 00:00:00'),(93007,11,'XM10T5','Nevirapine','Y','2025-10-23 00:00:00'),(93008,11,'XH8681','Nevoid melanoma','Y','2025-10-23 00:00:00'),(93009,11,'XE8DL','New or unknown interferent problem with device identified','Y','2025-10-23 00:00:00'),(93010,11,'XN9VX','New York virus','Y','2025-10-23 00:00:00'),(93011,11,'XM93N2','Newt toxin','Y','2025-10-23 00:00:00'),(93012,11,'XM5LH2','N-Hexane and Methyl n-butyl ketone solvent','Y','2025-10-23 00:00:00'),(93013,11,'XM3PK2','Niacin','Y','2025-10-23 00:00:00'),(93014,11,'XM0158','Nialamide','Y','2025-10-23 00:00:00'),(93015,11,'XM9L86','Niaprazine','Y','2025-10-23 00:00:00'),(93016,11,'XM2GA2','Nicametate','Y','2025-10-23 00:00:00'),(93017,11,'XM3L32','Nicardipine','Y','2025-10-23 00:00:00'),(93018,11,'XM5TD8','Nicergoline','Y','2025-10-23 00:00:00'),(93019,11,'XM4E11','Nickel','Y','2025-10-23 00:00:00'),(93020,11,'XM9P91','Nickel carbonyl','Y','2025-10-23 00:00:00'),(93021,11,'XM7K88','Nickel sulphate','Y','2025-10-23 00:00:00'),(93022,11,'XM5F09','Nickelocene','Y','2025-10-23 00:00:00'),(93023,11,'XM2034','Niclosamide','Y','2025-10-23 00:00:00'),(93024,11,'XM5LN3','Nicofetamide','Y','2025-10-23 00:00:00'),(93025,11,'XM5TA2','Nicofuranose','Y','2025-10-23 00:00:00'),(93026,11,'XM7W06','Nicomorphine','Y','2025-10-23 00:00:00'),(93027,11,'XM7HW6','Nicorandil','Y','2025-10-23 00:00:00'),(93028,11,'XM2VY1','Nicotiana plant','Y','2025-10-23 00:00:00'),(93029,11,'XM4PS9','Nicotinamide','Y','2025-10-23 00:00:00'),(93030,11,'XM6BN2','Nicotine','Y','2025-10-23 00:00:00'),(93031,11,'6C4A.2','Nicotine dependence','Y','2025-10-23 00:00:00'),(93032,11,'6C4A.20','Nicotine dependence, current use','Y','2025-10-23 00:00:00'),(93033,11,'6C4A.21','Nicotine dependence, early full remission','Y','2025-10-23 00:00:00'),(93034,11,'6C4A.23','Nicotine dependence, sustained full remission','Y','2025-10-23 00:00:00'),(93035,11,'6C4A.22','Nicotine dependence, sustained partial remission','Y','2025-10-23 00:00:00'),(93036,11,'6C4A.2Z','Nicotine dependence, unspecified','Y','2025-10-23 00:00:00'),(93037,11,'XM3AD4','Nicotine insecticide','Y','2025-10-23 00:00:00'),(93038,11,'6C4A.3','Nicotine intoxication','Y','2025-10-23 00:00:00'),(93039,11,'6C4A.4','Nicotine withdrawal','Y','2025-10-23 00:00:00'),(93040,11,'XM0563','Nicotinic acid and derivatives','Y','2025-10-23 00:00:00'),(93041,11,'XM0274','Nicotinyl alcohol','Y','2025-10-23 00:00:00'),(93042,11,'XM1R31','Nicotinyl methylamide','Y','2025-10-23 00:00:00'),(93043,11,'XM3N90','Nifedipine','Y','2025-10-23 00:00:00'),(93044,11,'XM4YB4','Nifenazone','Y','2025-10-23 00:00:00'),(93045,11,'XM4KV5','Niflumic acid','Y','2025-10-23 00:00:00'),(93046,11,'XM1KZ4','Nifuraldezone','Y','2025-10-23 00:00:00'),(93047,11,'XM39N3','Nifuratel','Y','2025-10-23 00:00:00'),(93048,11,'XM1071','Nifuroxazide','Y','2025-10-23 00:00:00'),(93049,11,'XM9F49','Nifurtimox','Y','2025-10-23 00:00:00'),(93050,11,'XM1QV5','Nifurtoinol','Y','2025-10-23 00:00:00'),(93051,11,'XM5BH0','Nifurzide','Y','2025-10-23 00:00:00'),(93052,11,'SC70','Night blindness disorder (TM1)','Y','2025-10-23 00:00:00'),(93053,11,'SE36','Night crying disorder (TM1)','Y','2025-10-23 00:00:00'),(93054,11,'XE2C9','Night table, end table','Y','2025-10-23 00:00:00'),(93055,11,'XE4AP','Nightclothes, pyjamas, nightwear, underwear, undergarment, lingerie','Y','2025-10-23 00:00:00'),(93056,11,'XE7Y2','Nightclub, restaurant or other commercial place for socialising and recreation','Y','2025-10-23 00:00:00'),(93057,11,'7B01.2','Nightmare disorder','Y','2025-10-23 00:00:00'),(93058,11,'MB26.0A','Nihilistic delusion','Y','2025-10-23 00:00:00'),(93059,11,'XM0001','Nikethamide','Y','2025-10-23 00:00:00'),(93060,11,'XM6BP0','Nilotinib','Y','2025-10-23 00:00:00'),(93061,11,'XM5BH2','Nilstat topical','Y','2025-10-23 00:00:00'),(93062,11,'XM9AL0','Nilutamide','Y','2025-10-23 00:00:00'),(93063,11,'XM6PC3','Nilvadipine','Y','2025-10-23 00:00:00'),(93064,11,'XM5C49','Nimesulide','Y','2025-10-23 00:00:00'),(93065,11,'XM8TH1','Nimetazepam','Y','2025-10-23 00:00:00'),(93066,11,'XM5TX8','Nimodipine','Y','2025-10-23 00:00:00'),(93067,11,'XM5LH9','Nimorazole','Y','2025-10-23 00:00:00'),(93068,11,'XM1KF0','Nimustine','Y','2025-10-23 00:00:00'),(93069,11,'XM4EA3','Nintedanib','Y','2025-10-23 00:00:00'),(93070,11,'XA31V8','Ninth rib','Y','2025-10-23 00:00:00'),(93071,11,'XA8QS1','Ninth thoracic nerve root','Y','2025-10-23 00:00:00'),(93072,11,'XA64N5','Ninth thoracic spinal nerve','Y','2025-10-23 00:00:00'),(93073,11,'XA3E70','Ninth thoracic vertebra','Y','2025-10-23 00:00:00'),(93074,11,'XN931','Nipah virus','Y','2025-10-23 00:00:00'),(93075,11,'XM08A8','Niperotidine','Y','2025-10-23 00:00:00'),(93076,11,'XA5MC5','Nipple','Y','2025-10-23 00:00:00'),(93077,11,'XM1DL2','Niraparib','Y','2025-10-23 00:00:00'),(93078,11,'XM2WY0','Niridazole','Y','2025-10-23 00:00:00'),(93079,11,'XM8MP5','Nisentil','Y','2025-10-23 00:00:00'),(93080,11,'XM5W45','Nisoldipine','Y','2025-10-23 00:00:00'),(93081,11,'XM54V0','N-isopropyl-N\'-phenyl-p-paraphenylenediamine','Y','2025-10-23 00:00:00'),(93082,11,'XM84S6','Nitazoxanide','Y','2025-10-23 00:00:00'),(93083,11,'XM1843','Nitisinone','Y','2025-10-23 00:00:00'),(93084,11,'XM4TR7','Nitrazepam','Y','2025-10-23 00:00:00'),(93085,11,'XM7Z31','Nitrefazole','Y','2025-10-23 00:00:00'),(93086,11,'XM17Z8','Nitrendipine','Y','2025-10-23 00:00:00'),(93087,11,'XM5NZ1','Nitric acid','Y','2025-10-23 00:00:00'),(93088,11,'XM5CC8','Nitric acid vapor','Y','2025-10-23 00:00:00'),(93089,11,'XM4HQ2','Nitric oxide','Y','2025-10-23 00:00:00'),(93090,11,'XM5YX5','Nitrite, amyl (medicinal) (vapor)','Y','2025-10-23 00:00:00'),(93091,11,'XM0179','Nitroaniline','Y','2025-10-23 00:00:00'),(93092,11,'XM8M07','Nitroaniline vapor','Y','2025-10-23 00:00:00'),(93093,11,'XM2W93','Nitrobenzene','Y','2025-10-23 00:00:00'),(93094,11,'XM2VA4','Nitrobenzene vapor','Y','2025-10-23 00:00:00'),(93095,11,'XM6GM2','Nitrobiphenyl','Y','2025-10-23 00:00:00'),(93096,11,'XM4PQ8','Nitrocellulose','Y','2025-10-23 00:00:00'),(93097,11,'XM8B47','Nitrocellulose lacquer','Y','2025-10-23 00:00:00'),(93098,11,'XM83H3','Nitroderivative or aminoderivative of benzene or benzene homologue','Y','2025-10-23 00:00:00'),(93099,11,'XM2CE2','Nitrofuran derivatives','Y','2025-10-23 00:00:00'),(93100,11,'XM09K7','Nitrofurantoin','Y','2025-10-23 00:00:00'),(93101,11,'XM71W2','Nitrofurazone','Y','2025-10-23 00:00:00'),(93102,11,'XM3K31','Nitrogen','Y','2025-10-23 00:00:00'),(93103,11,'XM05F4','Nitrogen dioxide','Y','2025-10-23 00:00:00'),(93104,11,'XM06G0','Nitrogen mustard analogues','Y','2025-10-23 00:00:00'),(93105,11,'XM69M3','Nitrogen oxide','Y','2025-10-23 00:00:00'),(93106,11,'XM8T02','Nitroglycerin nonmedicinal','Y','2025-10-23 00:00:00'),(93107,11,'XM5VU2','Nitroglycerin nonmedicinal fumes','Y','2025-10-23 00:00:00'),(93108,11,'XM5WU5','Nitrohydrochloric acid','Y','2025-10-23 00:00:00'),(93109,11,'XM7BM9','Nitroimidazole derivatives','Y','2025-10-23 00:00:00'),(93110,11,'XM4T72','Nitromersol','Y','2025-10-23 00:00:00'),(93111,11,'XM7GP0','Nitronaphthalene','Y','2025-10-23 00:00:00'),(93112,11,'XM7645','Nitrophenol','Y','2025-10-23 00:00:00'),(93113,11,'XM5CA9','Nitropropane','Y','2025-10-23 00:00:00'),(93114,11,'XM1MY0','Nitrosodimethylamine','Y','2025-10-23 00:00:00'),(93115,11,'XM9708','Nitrosoureas','Y','2025-10-23 00:00:00'),(93116,11,'XM7NR1','Nitrothiazol','Y','2025-10-23 00:00:00'),(93117,11,'XM6EB1','Nitrotoluene','Y','2025-10-23 00:00:00'),(93118,11,'XM5F24','Nitrotoluene vapor','Y','2025-10-23 00:00:00'),(93119,11,'XM2WH3','Nitrous acid','Y','2025-10-23 00:00:00'),(93120,11,'XM6QY4','Nitrous acid fumes','Y','2025-10-23 00:00:00'),(93121,11,'XM4J35','Nitrous ether spirit','Y','2025-10-23 00:00:00'),(93122,11,'XM73B5','Nitrous oxide','Y','2025-10-23 00:00:00'),(93123,11,'XM33S9','Nitroxoline','Y','2025-10-23 00:00:00'),(93124,11,'XM2HP9','Nitrozone','Y','2025-10-23 00:00:00'),(93125,11,'XM6M26','Nivolumab','Y','2025-10-23 00:00:00'),(93126,11,'XM9ZP3','Nizatidine','Y','2025-10-23 00:00:00'),(93127,11,'XM8QG2','Nizofenone','Y','2025-10-23 00:00:00'),(93128,11,'XH5LU6','NK/T-cell lymphoma, nasal and nasal-type','Y','2025-10-23 00:00:00'),(93129,11,'XE3DN','No apparent adverse event','Y','2025-10-23 00:00:00'),(93130,11,'XE6DH','No audible alarm','Y','2025-10-23 00:00:00'),(93131,11,'XE8MP','No audible prompt or feedback','Y','2025-10-23 00:00:00'),(93132,11,'XE7E5','No device output','Y','2025-10-23 00:00:00'),(93133,11,'XE41R','No device problem found','Y','2025-10-23 00:00:00'),(93134,11,'XE5Q5','No display or image','Y','2025-10-23 00:00:00'),(93135,11,'XS1J','No distress','Y','2025-10-23 00:00:00'),(93136,11,'XS3V','No endometriosis','Y','2025-10-23 00:00:00'),(93137,11,'XC87','No eye opening even with painful or noxious stimulation','Y','2025-10-23 00:00:00'),(93138,11,'XE6VE','No fail-safe mechanism','Y','2025-10-23 00:00:00'),(93139,11,'XE587','No findings available','Y','2025-10-23 00:00:00'),(93140,11,'XE1Y3','No flow','Y','2025-10-23 00:00:00'),(93141,11,'XC34','No motion even with painful or noxious stimulation','Y','2025-10-23 00:00:00'),(93142,11,'XE9A9','No pacing','Y','2025-10-23 00:00:00'),(93143,11,'XS5B','No pain','Y','2025-10-23 00:00:00'),(93144,11,'XS71','No pain-related interference','Y','2025-10-23 00:00:00'),(93145,11,'XE94J','No pressure','Y','2025-10-23 00:00:00'),(93146,11,'XE51D','No problem with device detected','Y','2025-10-23 00:00:00'),(93147,11,'XS8B','No psychosocial factors present','Y','2025-10-23 00:00:00'),(93148,11,'XE963','No tactile prompts or feedback','Y','2025-10-23 00:00:00'),(93149,11,'XC8U','No verbal output even with painful or noxious stimulation','Y','2025-10-23 00:00:00'),(93150,11,'QA00.62','No vision impairment','Y','2025-10-23 00:00:00'),(93151,11,'XE4FQ','No visual prompts or feedback','Y','2025-10-23 00:00:00'),(93152,11,'XN20K','Nocardia','Y','2025-10-23 00:00:00'),(93153,11,'XN2BK','Nocardia asteroides','Y','2025-10-23 00:00:00'),(93154,11,'XN1LG','Nocardia brasiliensis','Y','2025-10-23 00:00:00'),(93155,11,'1C1B','Nocardiosis','Y','2025-10-23 00:00:00'),(93156,11,'1C1B.Z','Nocardiosis, unspecified','Y','2025-10-23 00:00:00'),(93157,11,'6C00.2','Nocturnal and diurnal enuresis','Y','2025-10-23 00:00:00'),(93158,11,'6C00.0','Nocturnal enuresis','Y','2025-10-23 00:00:00'),(93159,11,'2A85.0','Nodal marginal zone lymphoma','Y','2025-10-23 00:00:00'),(93160,11,'XH6SR1','Nodal peripheral T-cell lymphoma with T follicular helper phenotype','Y','2025-10-23 00:00:00'),(93161,11,'XA5NY4','Nodose ganglion','Y','2025-10-23 00:00:00'),(93162,11,'ED80.3','Nodular acne','Y','2025-10-23 00:00:00'),(93163,11,'2C32.0','Nodular basal cell carcinoma of skin','Y','2025-10-23 00:00:00'),(93164,11,'XH5LM1','Nodular fasciitis','Y','2025-10-23 00:00:00'),(93165,11,'2B30.0','Nodular lymphocyte predominant Hodgkin lymphoma','Y','2025-10-23 00:00:00'),(93166,11,'XH4QG5','Nodular melanoma','Y','2025-10-23 00:00:00'),(93167,11,'2C30.1','Nodular melanoma, primary','Y','2025-10-23 00:00:00'),(93168,11,'EC91.0','Nodular prurigo','Y','2025-10-23 00:00:00'),(93169,11,'DB98.2','Nodular regenerative hyperplasia of liver','Y','2025-10-23 00:00:00'),(93170,11,'2B30.10','Nodular sclerosis classical Hodgkin lymphoma','Y','2025-10-23 00:00:00'),(93171,11,'CA0H.2','Nodules of vocal cords','Y','2025-10-23 00:00:00'),(93172,11,'AB37','Noise effects on inner ear','Y','2025-10-23 00:00:00'),(93173,11,'XE4F9','Noise, audible','Y','2025-10-23 00:00:00'),(93174,11,'XM67F2','Noludar','Y','2025-10-23 00:00:00'),(93175,11,'DA0C.31','Noma','Y','2025-10-23 00:00:00'),(93176,11,'XM2LR3','Nomegestrol','Y','2025-10-23 00:00:00'),(93177,11,'XM0QV1','Nomegestrol and estradiol','Y','2025-10-23 00:00:00'),(93178,11,'XM6X89','Nomifensine','Y','2025-10-23 00:00:00'),(93179,11,'2A20.5','Non mast cell myeloproliferative neoplasm, unclassifiable','Y','2025-10-23 00:00:00'),(93180,11,'2A20','Non mast cell myeloproliferative neoplasms','Y','2025-10-23 00:00:00'),(93181,11,'2A20.Z','Non mast cell myeloproliferative neoplasms, unspecified','Y','2025-10-23 00:00:00'),(93182,11,'9C80','Non paralytic strabismus','Y','2025-10-23 00:00:00'),(93183,11,'9C80.Z','Non paralytic strabismus, unspecified','Y','2025-10-23 00:00:00'),(93184,11,'PL14.1','Non provision of necessary procedure','Y','2025-10-23 00:00:00'),(93185,11,'7A63','Non-24 hour sleep-wake rhythm disorder','Y','2025-10-23 00:00:00'),(93186,11,'DD50','Non-abdominal wall hernia','Y','2025-10-23 00:00:00'),(93187,11,'PL14.0','Non-administration of necessary drug','Y','2025-10-23 00:00:00'),(93188,11,'QA80','Non-administration of necessary drug without injury or harm','Y','2025-10-23 00:00:00'),(93189,11,'DB92','Non-alcoholic fatty liver disease','Y','2025-10-23 00:00:00'),(93190,11,'DB92.0','Non-alcoholic fatty liver disease without non-alcoholic steatohepatitis','Y','2025-10-23 00:00:00'),(93191,11,'DB92.Z','Non-alcoholic fatty liver disease, unspecified','Y','2025-10-23 00:00:00'),(93192,11,'DB92.1','Non-alcoholic steatohepatitis','Y','2025-10-23 00:00:00'),(93193,11,'CA23.1','Non-allergic asthma','Y','2025-10-23 00:00:00'),(93194,11,'CA23.10','Non-allergic asthma with exacerbation','Y','2025-10-23 00:00:00'),(93195,11,'CA23.11','Non-allergic asthma with status asthmaticus','Y','2025-10-23 00:00:00'),(93196,11,'CA23.12','Non-allergic asthma, uncomplicated','Y','2025-10-23 00:00:00'),(93197,11,'CA08.1','Non-allergic rhinitis','Y','2025-10-23 00:00:00'),(93198,11,'CA08.10','Non-allergic rhinitis with eosinophils','Y','2025-10-23 00:00:00'),(93199,11,'CA08.1Z','Non-allergic rhinitis, unspecified','Y','2025-10-23 00:00:00'),(93200,11,'8B01.1','Non-aneurysmal subarachnoid haemorrhage','Y','2025-10-23 00:00:00'),(93201,11,'BD41','Non-atherosclerotic chronic arterial occlusive disease','Y','2025-10-23 00:00:00'),(93202,11,'BD41.Z','Non-atherosclerotic chronic arterial occlusive disease, unspecified','Y','2025-10-23 00:00:00'),(93203,11,'9A20.1','Non-Axial displacement of eyeball','Y','2025-10-23 00:00:00'),(93204,11,'1B72.1','Non-bullous impetigo','Y','2025-10-23 00:00:00'),(93205,11,'XM1418','Nonchlorofluorocarbon refrigerant gas','Y','2025-10-23 00:00:00'),(93206,11,'XH8GG7','Nonchromaffin paraganglioma','Y','2025-10-23 00:00:00'),(93207,11,'DB98.71','Non-cirrhotic portal fibrosis','Y','2025-10-23 00:00:00'),(93208,11,'5C50.01','Nonclassical phenylketonuria','Y','2025-10-23 00:00:00'),(93209,11,'8D64.1','Non-communicating hydrocephalus','Y','2025-10-23 00:00:00'),(93210,11,'8D64.1Z','Non-communicating hydrocephalus, unspecified','Y','2025-10-23 00:00:00'),(93211,11,'BC44','Noncompaction cardiomyopathy','Y','2025-10-23 00:00:00'),(93212,11,'8B43','Non-compressive vascular myelopathies','Y','2025-10-23 00:00:00'),(93213,11,'8B43.Z','Non-compressive vascular myelopathies, unspecified','Y','2025-10-23 00:00:00'),(93214,11,'7A42.2','Non-congenital central hypoventilation with hypothalamic abnormalities','Y','2025-10-23 00:00:00'),(93215,11,'8A66.1','Non-convulsive status epilepticus','Y','2025-10-23 00:00:00'),(93216,11,'8A66.1Z','Non-convulsive status epilepticus, unspecified','Y','2025-10-23 00:00:00'),(93217,11,'XE774','Non-cultural public building','Y','2025-10-23 00:00:00'),(93218,11,'GA34.21','Noncyclic pelvic pain','Y','2025-10-23 00:00:00'),(93219,11,'1F2D','Non-dermatophyte superficial dermatomycoses','Y','2025-10-23 00:00:00'),(93220,11,'XS8H','None','Y','2025-10-23 00:00:00'),(93221,11,'XE7VX','Non-electric kettle','Y','2025-10-23 00:00:00'),(93222,11,'XH1108','Nonencapsulated sclerosing carcinoma','Y','2025-10-23 00:00:00'),(93223,11,'DA22.0','Non-erosive gastro-oesophageal reflux disease','Y','2025-10-23 00:00:00'),(93224,11,'EA91.40','Non-erosive lichen planus of oral mucosa','Y','2025-10-23 00:00:00'),(93225,11,'BC43.01','Nonfamilial dilated cardiomyopathy','Y','2025-10-23 00:00:00'),(93226,11,'GB80','Nonfamilial nongenetic cystic kidney disease','Y','2025-10-23 00:00:00'),(93227,11,'GB80.Z','Nonfamilial nongenetic cystic kidney disease, unspecified','Y','2025-10-23 00:00:00'),(93228,11,'BC43.20','Nonfamilial restrictive cardiomyopathy','Y','2025-10-23 00:00:00'),(93229,11,'DA07.1','Nonfluoride enamel opacities','Y','2025-10-23 00:00:00'),(93230,11,'XE85U','Non-functional defect in device identified','Y','2025-10-23 00:00:00'),(93231,11,'XB7S','Non-hereditary','Y','2025-10-23 00:00:00'),(93232,11,'8A03.2','Non-hereditary degenerative ataxia','Y','2025-10-23 00:00:00'),(93233,11,'8A03.2Z','Non-hereditary degenerative ataxia, unspecified','Y','2025-10-23 00:00:00'),(93234,11,'AA83','Noninfected otitis media with effusion','Y','2025-10-23 00:00:00'),(93235,11,'DA94','Noninfectious enteritis or ulcer of small intestine','Y','2025-10-23 00:00:00'),(93236,11,'DA94.Z','Noninfectious enteritis or ulcer of small intestine, unspecified','Y','2025-10-23 00:00:00'),(93237,11,'DA01.1','Noninfectious erosive or ulcerative disorders of oral mucosa','Y','2025-10-23 00:00:00'),(93238,11,'AA1Z','Noninfectious inflammation of external ear, unspecified','Y','2025-10-23 00:00:00'),(93239,11,'9B66.0','Noninfectious intermediate choroiditis','Y','2025-10-23 00:00:00'),(93240,11,'KB8C','Noninfectious neonatal diarrhoea','Y','2025-10-23 00:00:00'),(93241,11,'9C20.0','Noninfectious panuveitis','Y','2025-10-23 00:00:00'),(93242,11,'9B65.0','Noninfectious posterior choroiditis','Y','2025-10-23 00:00:00'),(93243,11,'XH9XV2','Noninfiltrating intracystic carcinoma','Y','2025-10-23 00:00:00'),(93244,11,'XH9VG0','Noninfiltrating intraductal papillary adenocarcinoma','Y','2025-10-23 00:00:00'),(93245,11,'GA1Z','Noninflammatory disorders of female genital tract, unspecified','Y','2025-10-23 00:00:00'),(93246,11,'AA4Z','Noninflammatory disorders of the external ear, unspecified','Y','2025-10-23 00:00:00'),(93247,11,'SC73','Non-inflammatory eyelid disorder (TM1)','Y','2025-10-23 00:00:00'),(93248,11,'4A41.21','Noninflammatory inclusion body myopathy','Y','2025-10-23 00:00:00'),(93249,11,'1F20.1','Non-invasive aspergillosis','Y','2025-10-23 00:00:00'),(93250,11,'XH6SY0','Non-invasive follicular thyroid neoplasm with papillary-like nuclear features (NIFTP)','Y','2025-10-23 00:00:00'),(93251,11,'XC7U','Non-language utterances (incomprehensible sounds) to painful or noxious stimulation','Y','2025-10-23 00:00:00'),(93252,11,'XH0YE1','Nonlipid reticuloendotheliosis','Y','2025-10-23 00:00:00'),(93253,11,'GA21','Nonmenstrual bleeding disorders','Y','2025-10-23 00:00:00'),(93254,11,'GA21.Z','Nonmenstrual bleeding disorders, unspecified','Y','2025-10-23 00:00:00'),(93255,11,'5D00.21','Non-neuropathic heredofamilial amyloidosis','Y','2025-10-23 00:00:00'),(93256,11,'XM5PT4','Non-nucleoside reverse transcriptase inhibitors','Y','2025-10-23 00:00:00'),(93257,11,'BC43.11','Non-obstructive hypertrophic cardiomyopathy','Y','2025-10-23 00:00:00'),(93258,11,'DD31.0','Non-occlusive mesenteric ischaemia','Y','2025-10-23 00:00:00'),(93259,11,'DD31.0Z','Non-occlusive mesenteric ischaemia, unspecified','Y','2025-10-23 00:00:00'),(93260,11,'4A4Z','Nonorgan specific systemic autoimmune disorders, unspecified','Y','2025-10-23 00:00:00'),(93261,11,'9C85.2','Nonorganic eye movement disorders','Y','2025-10-23 00:00:00'),(93262,11,'9D55','Nonorganic visual loss','Y','2025-10-23 00:00:00'),(93263,11,'XM54L7','Nonoxinol','Y','2025-10-23 00:00:00'),(93264,11,'XH0XH2','Nonpigmented naevus','Y','2025-10-23 00:00:00'),(93265,11,'1C19.0','Nonpneumonic Legionnaires\' disease','Y','2025-10-23 00:00:00'),(93266,11,'9B71.00','Nonproliferative diabetic retinopathy','Y','2025-10-23 00:00:00'),(93267,11,'QA81','Non-provision of necessary procedure without injury or harm','Y','2025-10-23 00:00:00'),(93268,11,'JB45.1','Nonpurulent mastitis associated with childbirth','Y','2025-10-23 00:00:00'),(93269,11,'1C44','Non-pyogenic bacterial infections of the skin','Y','2025-10-23 00:00:00'),(93270,11,'XE5E8','Nonreproducible results','Y','2025-10-23 00:00:00'),(93271,11,'BB70.1','Nonrheumatic aortic valve stenosis','Y','2025-10-23 00:00:00'),(93272,11,'BB72.1','Nonrheumatic aortic valve stenosis with insufficiency','Y','2025-10-23 00:00:00'),(93273,11,'BB63.1','Nonrheumatic mitral stenosis with insufficiency','Y','2025-10-23 00:00:00'),(93274,11,'BB60.1','Nonrheumatic mitral valve stenosis','Y','2025-10-23 00:00:00'),(93275,11,'BB92.1','Nonrheumatic pulmonary valve stenosis with insufficiency','Y','2025-10-23 00:00:00'),(93276,11,'BC81.21','Non-scar, non-isthmus dependent macro reentrant atrial tachycardia','Y','2025-10-23 00:00:00'),(93277,11,'2F37.0','Non-secreting pituitary adenoma','Y','2025-10-23 00:00:00'),(93278,11,'XM2JS2','Non-selective calcium-channel blockers','Y','2025-10-23 00:00:00'),(93279,11,'XM9KG1','Non-selective monoamine reuptake inhibitors','Y','2025-10-23 00:00:00'),(93280,11,'XH1DU4','Non-small cell carcinoma','Y','2025-10-23 00:00:00'),(93281,11,'ME64','Non-specific cutaneous vascular signs','Y','2025-10-23 00:00:00'),(93282,11,'BC63.5','Nonspecific intraventricular conduction delay','Y','2025-10-23 00:00:00'),(93283,11,'MC80.1','Nonspecific low blood-pressure reading','Y','2025-10-23 00:00:00'),(93284,11,'BD90.1','Nonspecific mesenteric lymphadenitis','Y','2025-10-23 00:00:00'),(93285,11,'GC02.1','Nonspecific urethritis','Y','2025-10-23 00:00:00'),(93286,11,'XE46G','Nonstandard device','Y','2025-10-23 00:00:00'),(93287,11,'XM4KS4','Nonsteroidal anti-inflammatory and antirheumatic agents','Y','2025-10-23 00:00:00'),(93288,11,'DA90','Nonstructural developmental anomalies of small intestine','Y','2025-10-23 00:00:00'),(93289,11,'DA90.Z','Nonstructural developmental anomalies of small intestine, unspecified','Y','2025-10-23 00:00:00'),(93290,11,'MB23.E','Non-suicidal self-injury','Y','2025-10-23 00:00:00'),(93291,11,'AA8Z','Nonsuppurative otitis media, unspecified','Y','2025-10-23 00:00:00'),(93292,11,'BC71.03','Non-sustained ventricular tachycardia','Y','2025-10-23 00:00:00'),(93293,11,'EC23.0','Non-syndromic genetically-determined hypermelanosis or lentiginosis','Y','2025-10-23 00:00:00'),(93294,11,'EC20.0','Non-syndromic ichthyosis','Y','2025-10-23 00:00:00'),(93295,11,'ND11.2','Nonthermal blister of ankle','Y','2025-10-23 00:00:00'),(93296,11,'ND11.9','Nonthermal blister of other or unspecified parts of foot','Y','2025-10-23 00:00:00'),(93297,11,'3B60','Non-thrombocytopenic purpura','Y','2025-10-23 00:00:00'),(93298,11,'5A01.0','Nontoxic diffuse goitre','Y','2025-10-23 00:00:00'),(93299,11,'5A01','Nontoxic goitre','Y','2025-10-23 00:00:00'),(93300,11,'5A01.Z','Nontoxic goitre, unspecified','Y','2025-10-23 00:00:00'),(93301,11,'5A01.2','Nontoxic multinodular goitre','Y','2025-10-23 00:00:00'),(93302,11,'5A01.1','Nontoxic single thyroid nodule','Y','2025-10-23 00:00:00'),(93303,11,'8B03','Nontraumatic epidural haemorrhage','Y','2025-10-23 00:00:00'),(93304,11,'DA08.3','Nontraumatic fracture of tooth','Y','2025-10-23 00:00:00'),(93305,11,'3B81.3','Nontraumatic laceration or rupture of spleen','Y','2025-10-23 00:00:00'),(93306,11,'9B75.1','Non-traumatic macular hole','Y','2025-10-23 00:00:00'),(93307,11,'8B02','Nontraumatic subdural haemorrhage','Y','2025-10-23 00:00:00'),(93308,11,'1B21.Y','Non-tuberculous mycobacterial infection of other specified site','Y','2025-10-23 00:00:00'),(93309,11,'1B21.Z','Non-tuberculous mycobacterial infection of unspecified site','Y','2025-10-23 00:00:00'),(93310,11,'1B21.1','Non-tuberculous mycobacterial lymphadenitis','Y','2025-10-23 00:00:00'),(93311,11,'XN96Q','Non-tuberculous mycobacterium','Y','2025-10-23 00:00:00'),(93312,11,'1A81','Non-ulcerative sexually transmitted chlamydial infection','Y','2025-10-23 00:00:00'),(93313,11,'1A81.Y','Non-ulcerative sexually transmitted chlamydial infection of other specified site','Y','2025-10-23 00:00:00'),(93314,11,'1A81.Z','Non-ulcerative sexually transmitted chlamydial infection of unspecified site','Y','2025-10-23 00:00:00'),(93315,11,'FC01.7','Nonunion after arthrodesis','Y','2025-10-23 00:00:00'),(93316,11,'FC01.7Y','Nonunion after arthrodesis of other sites','Y','2025-10-23 00:00:00'),(93317,11,'FC01.70','Nonunion after spinal arthrodesis','Y','2025-10-23 00:00:00'),(93318,11,'FB80.8','Nonunion of fracture','Y','2025-10-23 00:00:00'),(93319,11,'ND11.3','Nonvenomous insect bite of ankle','Y','2025-10-23 00:00:00'),(93320,11,'ND11.A','Nonvenomous insect bite of other or unspecified parts of foot','Y','2025-10-23 00:00:00'),(93321,11,'NC51.11','Nonvenomous insect bite of other parts of wrist or hand','Y','2025-10-23 00:00:00'),(93322,11,'XE44L','Non-venomous snake','Y','2025-10-23 00:00:00'),(93323,11,'1D0Z','Non-viral and unspecified infections of the central nervous system, unspecified','Y','2025-10-23 00:00:00'),(93324,11,'XM0LK3','Non-watersoluble X-ray contrast media','Y','2025-10-23 00:00:00'),(93325,11,'XM4M68','Nonylphenoxy (polyethoxy-ethanol)','Y','2025-10-23 00:00:00'),(93326,11,'LD2F.15','Noonan syndrome','Y','2025-10-23 00:00:00'),(93327,11,'XM53Q3','Noramidopyrine','Y','2025-10-23 00:00:00'),(93328,11,'XM2WD6','Norbormide','Y','2025-10-23 00:00:00'),(93329,11,'XM4FQ9','Nordazepam','Y','2025-10-23 00:00:00'),(93330,11,'XM01B4','Norelgestromin and ethinylestradiol','Y','2025-10-23 00:00:00'),(93331,11,'XM81D8','Norepinephrine','Y','2025-10-23 00:00:00'),(93332,11,'XM5115','Norethandrolone','Y','2025-10-23 00:00:00'),(93333,11,'XM7LY6','Norethisterone','Y','2025-10-23 00:00:00'),(93334,11,'XM7D82','Norethisterone with ethinylestradiol','Y','2025-10-23 00:00:00'),(93335,11,'XM1SH1','Noretynodrel','Y','2025-10-23 00:00:00'),(93336,11,'XM2A75','Norfenefrine','Y','2025-10-23 00:00:00'),(93337,11,'XM85E7','Norfloxacin','Y','2025-10-23 00:00:00'),(93338,11,'XM31E8','Norfloxacin and tinidazole','Y','2025-10-23 00:00:00'),(93339,11,'XM5PH2','Norgestimate and ethinylestradiol','Y','2025-10-23 00:00:00'),(93340,11,'XM31C0','Norgestrienone','Y','2025-10-23 00:00:00'),(93341,11,'MC21.1','Normal electroretinogram','Y','2025-10-23 00:00:00'),(93342,11,'XM3YQ9','Normal serum albumin, salt-poor (human)','Y','2025-10-23 00:00:00'),(93343,11,'9C61.00','Normal tension glaucoma','Y','2025-10-23 00:00:00'),(93344,11,'QA00.61','Normal Visual Field','Y','2025-10-23 00:00:00'),(93345,11,'XS43','Normal weight BMI 18.5','Y','2025-10-23 00:00:00'),(93346,11,'8D64.04','Normal-pressure hydrocephalus','Y','2025-10-23 00:00:00'),(93347,11,'XM5PZ4','Normethadone','Y','2025-10-23 00:00:00'),(93348,11,'XM1B43','Normethandrone','Y','2025-10-23 00:00:00'),(93349,11,'XM9BE3','Normorphine','Y','2025-10-23 00:00:00'),(93350,11,'XN3Y2','Norovirus','Y','2025-10-23 00:00:00'),(93351,11,'XM1UH2','Northern Philippine cobra snake venom','Y','2025-10-23 00:00:00'),(93352,11,'XM79G5','Nortriptyline','Y','2025-10-23 00:00:00'),(93353,11,'XM6RX7','Noscapine','Y','2025-10-23 00:00:00'),(93354,11,'XA3H13','Nose','Y','2025-10-23 00:00:00'),(93355,11,'XM4RA5','Nose preparations','Y','2025-10-23 00:00:00'),(93356,11,'XB25','Nosocomial','Y','2025-10-23 00:00:00'),(93357,11,'XA1B05','Nostril','Y','2025-10-23 00:00:00'),(93358,11,'XB80','Not occupation-related','Y','2025-10-23 00:00:00'),(93359,11,'XM9T65','Novavax COVID-19 vaccines','Y','2025-10-23 00:00:00'),(93360,11,'XM1QQ2','Novobiocin','Y','2025-10-23 00:00:00'),(93361,11,'XM38C9','Novocain infiltration','Y','2025-10-23 00:00:00'),(93362,11,'XM6R58','Novocain topical','Y','2025-10-23 00:00:00'),(93363,11,'XM4L77','Noxious meat, non bacterial, not elsewhere classified','Y','2025-10-23 00:00:00'),(93364,11,'XM7GY1','Noxiptiline','Y','2025-10-23 00:00:00'),(93365,11,'XM1102','Noxytiolin','Y','2025-10-23 00:00:00'),(93366,11,'XE78G','Nozzle component of medical device','Y','2025-10-23 00:00:00'),(93367,11,'XM8VX4','NPH iletin (insulin)','Y','2025-10-23 00:00:00'),(93368,11,'XH0XH6','Nuchal fibroma','Y','2025-10-23 00:00:00'),(93369,11,'XH2855','Nuclear protein in testis (NUT) associated carcinoma','Y','2025-10-23 00:00:00'),(93370,11,'PK11','Nuclear radiation effects of nuclear weapon during armed conflict','Y','2025-10-23 00:00:00'),(93371,11,'XM3EZ0','Nucleoside and nucleotide reverse transcriptase inhibitors','Y','2025-10-23 00:00:00'),(93372,11,'XM56B8','Nucleosides and nucleotides','Y','2025-10-23 00:00:00'),(93373,11,'XA8WM9','Nucleus pulposus','Y','2025-10-23 00:00:00'),(93374,11,'XH8Y40','Null cell adenoma','Y','2025-10-23 00:00:00'),(93375,11,'LD50','Number anomalies of chromosome X','Y','2025-10-23 00:00:00'),(93376,11,'LD50.Z','Number anomalies of chromosome X, unspecified','Y','2025-10-23 00:00:00'),(93377,11,'LD52','Number anomalies of chromosome Y','Y','2025-10-23 00:00:00'),(93378,11,'LD52.Z','Number anomalies of chromosome Y, unspecified','Y','2025-10-23 00:00:00'),(93379,11,'SC62','Numbness disorder (TM1)','Y','2025-10-23 00:00:00'),(93380,11,'EA82','Nummular dermatitis','Y','2025-10-23 00:00:00'),(93381,11,'XM8739','Nupercaine topical','Y','2025-10-23 00:00:00'),(93382,11,'XM6NN7','Nupercaine, spinal','Y','2025-10-23 00:00:00'),(93383,11,'XE498','Nursing home','Y','2025-10-23 00:00:00'),(93384,11,'XM90G7','Nusinersen','Y','2025-10-23 00:00:00'),(93385,11,'XE0F0','Nut fastner component of medical device','Y','2025-10-23 00:00:00'),(93386,11,'XM6FE5','Nutmeg oil','Y','2025-10-23 00:00:00'),(93387,11,'SH0Z','Nutrient phase patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(93388,11,'SH00','Nutrient qi and defense qi disharmony pattern (TM1)','Y','2025-10-23 00:00:00'),(93389,11,'5C3Z','Nutritional disorders, unspecified','Y','2025-10-23 00:00:00'),(93390,11,'8D4Z','Nutritional or toxic disorders of the nervous system, unspecified','Y','2025-10-23 00:00:00'),(93391,11,'XM33X3','Nux vomica plant','Y','2025-10-23 00:00:00'),(93392,11,'XS3A','NYHA Class I No limitation of physical activity','Y','2025-10-23 00:00:00'),(93393,11,'XS6B','NYHA Class II Slight limitation of physical activity','Y','2025-10-23 00:00:00'),(93394,11,'XS9T','NYHA Class III Marked limitation of physical activity','Y','2025-10-23 00:00:00'),(93395,11,'XS9F','NYHA Class IV Unable to carry on any physical activity without discomfort','Y','2025-10-23 00:00:00'),(93396,11,'XM6B85','Nylidrin','Y','2025-10-23 00:00:00'),(93397,11,'9C84','Nystagmus','Y','2025-10-23 00:00:00'),(93398,11,'9C84.5','Nystagmus occurring in visual system disorders','Y','2025-10-23 00:00:00'),(93399,11,'9C84.5Z','Nystagmus occurring in visual system disorders, unspecified','Y','2025-10-23 00:00:00'),(93400,11,'9C84.Z','Nystagmus, unspecified','Y','2025-10-23 00:00:00'),(93401,11,'XM32L5','Nystatin','Y','2025-10-23 00:00:00'),(93402,11,'XH28J9','Oat cell carcinoma','Y','2025-10-23 00:00:00'),(93403,11,'5B81','Obesity','Y','2025-10-23 00:00:00'),(93404,11,'XS3Y','Obesity class I BMI 30.0','Y','2025-10-23 00:00:00'),(93405,11,'XS6N','Obesity class II BMI 35.0','Y','2025-10-23 00:00:00'),(93406,11,'XS2B','Obesity class III BMI greater than or equal to 40','Y','2025-10-23 00:00:00'),(93407,11,'5B81.0','Obesity due to energy imbalance','Y','2025-10-23 00:00:00'),(93408,11,'7A42.0','Obesity hypoventilation syndrome','Y','2025-10-23 00:00:00'),(93409,11,'5B81.01','Obesity in adults','Y','2025-10-23 00:00:00'),(93410,11,'5B81.00','Obesity in children or adolescents','Y','2025-10-23 00:00:00'),(93411,11,'5B81.Z','Obesity, unspecified','Y','2025-10-23 00:00:00'),(93412,11,'XM51F9','Obeticholic acid','Y','2025-10-23 00:00:00'),(93413,11,'XC4L','Obeys commands','Y','2025-10-23 00:00:00'),(93414,11,'XM8ET8','Obidoxime','Y','2025-10-23 00:00:00'),(93415,11,'XM7HV6','Obidoxime chloride','Y','2025-10-23 00:00:00'),(93416,11,'XM54X9','Obiltoxaximab','Y','2025-10-23 00:00:00'),(93417,11,'XM6ES5','Obinutuzumab','Y','2025-10-23 00:00:00'),(93418,11,'XM1NQ8','Oblimersen','Y','2025-10-23 00:00:00'),(93419,11,'XA59J0','Oblique arytenoid muscle','Y','2025-10-23 00:00:00'),(93420,11,'XA5Q22','Oblique arytenoid tendon','Y','2025-10-23 00:00:00'),(93421,11,'XA8L72','Oblique auricularis muscle','Y','2025-10-23 00:00:00'),(93422,11,'XA87R6','Oblique popliteal ligament','Y','2025-10-23 00:00:00'),(93423,11,'XA6YW4','Oblique vein of the left atrium','Y','2025-10-23 00:00:00'),(93424,11,'XA6LS5','Obliquus capitis inferior muscle','Y','2025-10-23 00:00:00'),(93425,11,'XA8AT8','Obliquus capitis inferior tendon','Y','2025-10-23 00:00:00'),(93426,11,'XA0X13','Obliquus capitis superior muscle','Y','2025-10-23 00:00:00'),(93427,11,'XA39M0','Obliquus capitis superior tendon','Y','2025-10-23 00:00:00'),(93428,11,'ME24.A0','Obscure gastrointestinal bleeding','Y','2025-10-23 00:00:00'),(93429,11,'QA02.6','Observation and evaluation of newborn for suspected condition, ruled out','Y','2025-10-23 00:00:00'),(93430,11,'QA02.8','Observation for suspected allergy or hypersensitivity, ruled out','Y','2025-10-23 00:00:00'),(93431,11,'QA02.1','Observation for suspected Dengue, ruled out','Y','2025-10-23 00:00:00'),(93432,11,'QA02.2','Observation for suspected malignant neoplasm, ruled out','Y','2025-10-23 00:00:00'),(93433,11,'QA02.3','Observation for suspected mental or behavioural disorders, ruled out','Y','2025-10-23 00:00:00'),(93434,11,'QA02.4','Observation for suspected nervous system disorder, ruled out','Y','2025-10-23 00:00:00'),(93435,11,'QA02.7','Observation for suspected suicide ideation or attempt, ruled out','Y','2025-10-23 00:00:00'),(93436,11,'QA02.5','Observation for suspected toxic effect from ingested substance, ruled out','Y','2025-10-23 00:00:00'),(93437,11,'QA02.0','Observation for suspected tuberculosis, ruled out','Y','2025-10-23 00:00:00'),(93438,11,'MB26.5','Obsessions','Y','2025-10-23 00:00:00'),(93439,11,'6B20','Obsessive-compulsive disorder','Y','2025-10-23 00:00:00'),(93440,11,'6B20.0','Obsessive-compulsive disorder with fair to good insight','Y','2025-10-23 00:00:00'),(93441,11,'6B20.1','Obsessive-compulsive disorder with poor to absent insight','Y','2025-10-23 00:00:00'),(93442,11,'6B20.Z','Obsessive-compulsive disorder, unspecified','Y','2025-10-23 00:00:00'),(93443,11,'6C4F.72','Obsessive-compulsive or related disorder induced by multiple specified psychoactive substances','Y','2025-10-23 00:00:00'),(93444,11,'6C4E.72','Obsessive-compulsive or related disorder induced by other specified psychoactive substance','Y','2025-10-23 00:00:00'),(93445,11,'6C4G.72','Obsessive-compulsive or related disorder induced by unknown or unspecified psychoactive substance','Y','2025-10-23 00:00:00'),(93446,11,'6B2Z','Obsessive-compulsive or related disorders, unspecified','Y','2025-10-23 00:00:00'),(93447,11,'JB42.0','Obstetric air embolism','Y','2025-10-23 00:00:00'),(93448,11,'JB42.2','Obstetric blood-clot embolism','Y','2025-10-23 00:00:00'),(93449,11,'JB0A.7','Obstetric damage to pelvic joints or ligaments','Y','2025-10-23 00:00:00'),(93450,11,'JB60','Obstetric death of unspecified cause','Y','2025-10-23 00:00:00'),(93451,11,'JB42','Obstetric embolism','Y','2025-10-23 00:00:00'),(93452,11,'JB42.Z','Obstetric embolism, unspecified','Y','2025-10-23 00:00:00'),(93453,11,'JB0A.8','Obstetric haematoma of pelvis','Y','2025-10-23 00:00:00'),(93454,11,'JA4Z','Obstetric haemorrhage, unspecified','Y','2025-10-23 00:00:00'),(93455,11,'JB0A.4','Obstetric high vaginal laceration','Y','2025-10-23 00:00:00'),(93456,11,'JB0A.3','Obstetric laceration of cervix','Y','2025-10-23 00:00:00'),(93457,11,'PK96.0','Obstetric or gynaecological devices associated with injury or harm, diagnostic or monitoring devices','Y','2025-10-23 00:00:00'),(93458,11,'PK96.4','Obstetric or gynaecological devices associated with injury or harm, miscellaneous devices, not elsewhere classified','Y','2025-10-23 00:00:00'),(93459,11,'PK96.2','Obstetric or gynaecological devices associated with injury or harm, prosthetic or other implants, materials or accessory devices','Y','2025-10-23 00:00:00'),(93460,11,'PK96.3','Obstetric or gynaecological devices associated with injury or harm, surgical instruments, materials or devices','Y','2025-10-23 00:00:00'),(93461,11,'PK96.1','Obstetric or gynaecological devices associated with injury or harm, therapeutic, nonsurgical or rehabilitative devices','Y','2025-10-23 00:00:00'),(93462,11,'PK96','Obstetric or gynaecological devices, implants or grafts associated with injury or harm','Y','2025-10-23 00:00:00'),(93463,11,'PK96.Z','Obstetric or gynaecological devices, implants or grafts associated with injury or harm, unspecified','Y','2025-10-23 00:00:00'),(93464,11,'PK80.7','Obstetric procedure associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(93465,11,'PK80.73','Obstetric procedure associated with injury or harm in therapeutic use, per orifice approach','Y','2025-10-23 00:00:00'),(93466,11,'PK80.72','Obstetric procedure associated with injury or harm, endoscopic approach','Y','2025-10-23 00:00:00'),(93467,11,'PK80.71','Obstetric procedure associated with injury or harm, percutaneous approach','Y','2025-10-23 00:00:00'),(93468,11,'JB42.3','Obstetric pyaemic or septic embolism','Y','2025-10-23 00:00:00'),(93469,11,'JB0A.Z','Obstetric trauma, unspecified','Y','2025-10-23 00:00:00'),(93470,11,'JB0A.5','Obstetric uterine laceration or tear','Y','2025-10-23 00:00:00'),(93471,11,'1C14','Obstetrical tetanus','Y','2025-10-23 00:00:00'),(93472,11,'GC42.1','Obstructed intercourse','Y','2025-10-23 00:00:00'),(93473,11,'JB05.5','Obstructed labour due to abnormality of maternal pelvic organs','Y','2025-10-23 00:00:00'),(93474,11,'JB04.1','Obstructed labour due to breech presentation','Y','2025-10-23 00:00:00'),(93475,11,'JB04.3','Obstructed labour due to brow presentation','Y','2025-10-23 00:00:00'),(93476,11,'JB04.5','Obstructed labour due to compound presentation','Y','2025-10-23 00:00:00'),(93477,11,'JB05.0','Obstructed labour due to deformed pelvis','Y','2025-10-23 00:00:00'),(93478,11,'JB04.2','Obstructed labour due to face presentation','Y','2025-10-23 00:00:00'),(93479,11,'JB05.4','Obstructed labour due to foetopelvic disproportion, unspecified','Y','2025-10-23 00:00:00'),(93480,11,'JB05.1','Obstructed labour due to generally contracted pelvis','Y','2025-10-23 00:00:00'),(93481,11,'JB04.0','Obstructed labour due to incomplete rotation of fetal head','Y','2025-10-23 00:00:00'),(93482,11,'JB06.1','Obstructed labour due to locked twins','Y','2025-10-23 00:00:00'),(93483,11,'JB04','Obstructed labour due to malposition or malpresentation of fetus','Y','2025-10-23 00:00:00'),(93484,11,'JB04.Z','Obstructed labour due to malposition or malpresentation of fetus, unspecified','Y','2025-10-23 00:00:00'),(93485,11,'JB05','Obstructed labour due to maternal pelvic abnormality','Y','2025-10-23 00:00:00'),(93486,11,'JB05.Z','Obstructed labour due to maternal pelvic abnormality, unspecified','Y','2025-10-23 00:00:00'),(93487,11,'JB06.3','Obstructed labour due to other abnormalities of fetus','Y','2025-10-23 00:00:00'),(93488,11,'JB06','Obstructed labour due to other causes','Y','2025-10-23 00:00:00'),(93489,11,'JB04.Y','Obstructed labour due to other malposition and malpresentation of fetus','Y','2025-10-23 00:00:00'),(93490,11,'JB05.Y','Obstructed labour due to other maternal pelvic abnormalities','Y','2025-10-23 00:00:00'),(93491,11,'JB06.Y','Obstructed labour due to other specified causes','Y','2025-10-23 00:00:00'),(93492,11,'JB05.2','Obstructed labour due to pelvic inlet contraction','Y','2025-10-23 00:00:00'),(93493,11,'JB05.3','Obstructed labour due to pelvic outlet or mid-cavity contraction','Y','2025-10-23 00:00:00'),(93494,11,'JB06.0','Obstructed labour due to shoulder dystocia','Y','2025-10-23 00:00:00'),(93495,11,'JB04.4','Obstructed labour due to shoulder presentation','Y','2025-10-23 00:00:00'),(93496,11,'JB06.Z','Obstructed labour due to unspecified causes','Y','2025-10-23 00:00:00'),(93497,11,'JB06.2','Obstructed labour due to unusually large fetus','Y','2025-10-23 00:00:00'),(93498,11,'1F20.15','Obstructing aspergillus tracheobronchitis','Y','2025-10-23 00:00:00'),(93499,11,'DC10.02','Obstruction of bile duct','Y','2025-10-23 00:00:00'),(93500,11,'DC10.00','Obstruction of cystic duct','Y','2025-10-23 00:00:00'),(93501,11,'QA63','Obstruction of device without injury or harm','Y','2025-10-23 00:00:00'),(93502,11,'PL12.3','Obstruction of device, as mode of injury or harm','Y','2025-10-23 00:00:00'),(93503,11,'DA50.0','Obstruction of duodenum','Y','2025-10-23 00:00:00'),(93504,11,'AB10.3','Obstruction of Eustachian tube','Y','2025-10-23 00:00:00'),(93505,11,'XE3GX','Obstruction of flow','Y','2025-10-23 00:00:00'),(93506,11,'DC10.01','Obstruction of gall bladder','Y','2025-10-23 00:00:00'),(93507,11,'DC10.0','Obstruction of gallbladder or bile ducts','Y','2025-10-23 00:00:00'),(93508,11,'DC10.0Z','Obstruction of gallbladder or bile ducts, unspecified','Y','2025-10-23 00:00:00'),(93509,11,'DB30','Obstruction of large intestine','Y','2025-10-23 00:00:00'),(93510,11,'DB30.Z','Obstruction of large intestine, unspecified','Y','2025-10-23 00:00:00'),(93511,11,'BD73.20','Obstruction of peripheral vein','Y','2025-10-23 00:00:00'),(93512,11,'DA91','Obstruction of small intestine','Y','2025-10-23 00:00:00'),(93513,11,'DA91.Z','Obstruction of small intestine, unspecified','Y','2025-10-23 00:00:00'),(93514,11,'BD73.21','Obstruction of visceral vein','Y','2025-10-23 00:00:00'),(93515,11,'BC43.12','Obstructive hypertrophic cardiomyopathy','Y','2025-10-23 00:00:00'),(93516,11,'DA91.3','Obstructive ileus of small intestine due to impaction','Y','2025-10-23 00:00:00'),(93517,11,'DA91.3Z','Obstructive ileus of small intestine due to impaction, unspecified','Y','2025-10-23 00:00:00'),(93518,11,'KB2A.1','Obstructive neonatal apnoea','Y','2025-10-23 00:00:00'),(93519,11,'GB56','Obstructive or reflux nephropathy','Y','2025-10-23 00:00:00'),(93520,11,'GB56.Z','Obstructive or reflux nephropathy, unspecified','Y','2025-10-23 00:00:00'),(93521,11,'DC34','Obstructive pancreatitis','Y','2025-10-23 00:00:00'),(93522,11,'7A41','Obstructive sleep apnoea','Y','2025-10-23 00:00:00'),(93523,11,'XA69V8','Obturator artery','Y','2025-10-23 00:00:00'),(93524,11,'NC73.01','Obturator dislocation of hip','Y','2025-10-23 00:00:00'),(93525,11,'XA7Y24','Obturator externus muscle','Y','2025-10-23 00:00:00'),(93526,11,'XA3EE9','Obturator externus tendon','Y','2025-10-23 00:00:00'),(93527,11,'XA11E8','Obturator internus muscle','Y','2025-10-23 00:00:00'),(93528,11,'XA2469','Obturator internus tendon','Y','2025-10-23 00:00:00'),(93529,11,'XA9Z71','Obturator lymph node','Y','2025-10-23 00:00:00'),(93530,11,'XA4548','Obturator nerve','Y','2025-10-23 00:00:00'),(93531,11,'XA5AH6','Obturator vein','Y','2025-10-23 00:00:00'),(93532,11,'XA9EU7','Occipital artery','Y','2025-10-23 00:00:00'),(93533,11,'XA5JA2','Occipital bone','Y','2025-10-23 00:00:00'),(93534,11,'XA4RS9','Occipital condyle','Y','2025-10-23 00:00:00'),(93535,11,'XA2HM1','Occipital diploic vein','Y','2025-10-23 00:00:00'),(93536,11,'XA4K04','Occipital emissary vein','Y','2025-10-23 00:00:00'),(93537,11,'XA89Y2','Occipital lobe','Y','2025-10-23 00:00:00'),(93538,11,'XA6H69','Occipital lymph node','Y','2025-10-23 00:00:00'),(93539,11,'KA45.1','Occipital osteodiastasis due to birth injury','Y','2025-10-23 00:00:00'),(93540,11,'XA0B59','Occipital pole','Y','2025-10-23 00:00:00'),(93541,11,'XA7JE5','Occipital scalp','Y','2025-10-23 00:00:00'),(93542,11,'XA3EK3','Occipital scalp margin','Y','2025-10-23 00:00:00'),(93543,11,'XA2SC7','Occipital sinus','Y','2025-10-23 00:00:00'),(93544,11,'XA01E7','Occipital vein','Y','2025-10-23 00:00:00'),(93545,11,'XA7AS3','Occipital venous lacunae','Y','2025-10-23 00:00:00'),(93546,11,'LB73.21','Occipitalisation of atlas','Y','2025-10-23 00:00:00'),(93547,11,'XA3J99','Occipitoaxial ligament','Y','2025-10-23 00:00:00'),(93548,11,'XA33W1','Occiput','Y','2025-10-23 00:00:00'),(93549,11,'XA5DM8','Occlusal surface of tooth','Y','2025-10-23 00:00:00'),(93550,11,'LB73.0','Occult spinal dysraphism','Y','2025-10-23 00:00:00'),(93551,11,'XE3FA','Occupant of position provided for patient in an ambulance','Y','2025-10-23 00:00:00'),(93552,11,'XE9CP','Occupants of area in a bus provided for standing','Y','2025-10-23 00:00:00'),(93553,11,'XE9FE','Occupants of wheelchair or mobility scooter located in a position in a motor vehicle provided for carrying such devices','Y','2025-10-23 00:00:00'),(93554,11,'XE5G8','Occupation armed forces','Y','2025-10-23 00:00:00'),(93555,11,'XB5G','Occupation as cofactor','Y','2025-10-23 00:00:00'),(93556,11,'XB17','Occupation as primary factor','Y','2025-10-23 00:00:00'),(93557,11,'XE17U','Occupation clerks, secretaries','Y','2025-10-23 00:00:00'),(93558,11,'XE0VC','Occupation craft or related trades workers','Y','2025-10-23 00:00:00'),(93559,11,'XE4EE','Occupation elementary occupations','Y','2025-10-23 00:00:00'),(93560,11,'XE3TU','Occupation legislators, senior officials, managers','Y','2025-10-23 00:00:00'),(93561,11,'XE37Y','Occupation plant/machine operators or assemblers','Y','2025-10-23 00:00:00'),(93562,11,'XE59Y','Occupation professionals','Y','2025-10-23 00:00:00'),(93563,11,'XE1CA','Occupation service workers, shop and market sales workers','Y','2025-10-23 00:00:00'),(93564,11,'XE6TG','Occupation skilled agriculture or fishery workers','Y','2025-10-23 00:00:00'),(93565,11,'XE558','Occupation technicians or associate professionals','Y','2025-10-23 00:00:00'),(93566,11,'QD84.0','Occupational exposure to dust','Y','2025-10-23 00:00:00'),(93567,11,'QD84.4','Occupational exposure to ergonomic risk','Y','2025-10-23 00:00:00'),(93568,11,'QD84','Occupational exposure to risk-factors','Y','2025-10-23 00:00:00'),(93569,11,'QD84.Z','Occupational exposure to risk-factors, unspecified','Y','2025-10-23 00:00:00'),(93570,11,'QD84.1','Occupational exposure to toxic agents in agriculture','Y','2025-10-23 00:00:00'),(93571,11,'QD84.2','Occupational exposure to toxic agents in industries other than agriculture','Y','2025-10-23 00:00:00'),(93572,11,'QD84.3','Occupational exposure to vibration','Y','2025-10-23 00:00:00'),(93573,11,'QA03.0','Occupational health examination','Y','2025-10-23 00:00:00'),(93574,11,'QB95.7','Occupational therapy or vocational rehabilitation','Y','2025-10-23 00:00:00'),(93575,11,'XM5WG7','Ochratoxin','Y','2025-10-23 00:00:00'),(93576,11,'XN9WS','Ockelbo virus','Y','2025-10-23 00:00:00'),(93577,11,'XM2B74','Ocrelizumab','Y','2025-10-23 00:00:00'),(93578,11,'XM2RM5','Ocriplasmin','Y','2025-10-23 00:00:00'),(93579,11,'XM3214','Octafonium chloride','Y','2025-10-23 00:00:00'),(93580,11,'XM4U03','Octatropine methyl-bromide','Y','2025-10-23 00:00:00'),(93581,11,'XM3NR8','Octenidine','Y','2025-10-23 00:00:00'),(93582,11,'XM2M34','Octinoxate','Y','2025-10-23 00:00:00'),(93583,11,'XM63U8','Octocrylene','Y','2025-10-23 00:00:00'),(93584,11,'XM9TS0','Octopamine','Y','2025-10-23 00:00:00'),(93585,11,'XM9609','Octotiamine','Y','2025-10-23 00:00:00'),(93586,11,'XM2TV0','Octoxinol -9','Y','2025-10-23 00:00:00'),(93587,11,'XM01Z4','Octreotide','Y','2025-10-23 00:00:00'),(93588,11,'XM1SD9','Octyl gallate','Y','2025-10-23 00:00:00'),(93589,11,'XM1VC4','Octyl nitrite','Y','2025-10-23 00:00:00'),(93590,11,'XM0P16','Octylisothiazolinone','Y','2025-10-23 00:00:00'),(93591,11,'XM3YZ8','Octyltriazone','Y','2025-10-23 00:00:00'),(93592,11,'9C61.01','Ocular hypertension','Y','2025-10-23 00:00:00'),(93593,11,'NA06.88','Ocular laceration or rupture with prolapse or loss of intraocular tissue, bilateral','Y','2025-10-23 00:00:00'),(93594,11,'NA06.87','Ocular laceration or rupture with prolapse or loss of intraocular tissue, unilateral','Y','2025-10-23 00:00:00'),(93595,11,'NA06.8E','Ocular laceration without prolapse or loss of intraocular tissue, bilateral','Y','2025-10-23 00:00:00'),(93596,11,'NA06.8D','Ocular laceration without prolapse or loss of intraocular tissue, unilateral','Y','2025-10-23 00:00:00'),(93597,11,'1A62.20','Ocular late syphilis','Y','2025-10-23 00:00:00'),(93598,11,'9C81','Ocular motor nerve palsies','Y','2025-10-23 00:00:00'),(93599,11,'1G01.0','Ocular myiasis','Y','2025-10-23 00:00:00'),(93600,11,'8C77','Ocular myopathy','Y','2025-10-23 00:00:00'),(93601,11,'MC18','Ocular pain','Y','2025-10-23 00:00:00'),(93602,11,'4B20.4','Ocular sarcoidosis','Y','2025-10-23 00:00:00'),(93603,11,'9C83.65','Ocular tilt reaction','Y','2025-10-23 00:00:00'),(93604,11,'5C60.0','Oculocerebrorenal syndrome','Y','2025-10-23 00:00:00'),(93605,11,'EC23.20','Oculocutaneous albinism','Y','2025-10-23 00:00:00'),(93606,11,'9C83.13','Oculogyric crisis','Y','2025-10-23 00:00:00'),(93607,11,'9C82.4','Oculomotor apraxia','Y','2025-10-23 00:00:00'),(93608,11,'XA7488','Oculomotor nerve','Y','2025-10-23 00:00:00'),(93609,11,'MB23.F','Odd or peculiar appearance','Y','2025-10-23 00:00:00'),(93610,11,'MB23.G','Odd or peculiar behaviour','Y','2025-10-23 00:00:00'),(93611,11,'XM30B2','Odevixibat','Y','2025-10-23 00:00:00'),(93612,11,'XH06N8','Odontoameloblastoma','Y','2025-10-23 00:00:00'),(93613,11,'LA30.9','Odontogenesis imperfecta','Y','2025-10-23 00:00:00'),(93614,11,'XH4LP1','Odontogenic carcinosarcoma','Y','2025-10-23 00:00:00'),(93615,11,'XH1MT3','Odontogenic fibroma, NOS','Y','2025-10-23 00:00:00'),(93616,11,'XH48L4','Odontogenic myxoma','Y','2025-10-23 00:00:00'),(93617,11,'XH43L1','Odontogenic tumour, benign','Y','2025-10-23 00:00:00'),(93618,11,'XH4M89','Odontogenic tumour, malignant','Y','2025-10-23 00:00:00'),(93619,11,'XH1P03','Odontogenic tumour, NOS','Y','2025-10-23 00:00:00'),(93620,11,'XA5W02','Odontoid process','Y','2025-10-23 00:00:00'),(93621,11,'XH4QJ8','Odontoma, NOS','Y','2025-10-23 00:00:00'),(93622,11,'MG29','Oedema','Y','2025-10-23 00:00:00'),(93623,11,'MG29.10','Oedema due to increased capillary pressure','Y','2025-10-23 00:00:00'),(93624,11,'NA06.02','Oedema of eyelid','Y','2025-10-23 00:00:00'),(93625,11,'CA0H.3','Oedema of larynx','Y','2025-10-23 00:00:00'),(93626,11,'MG29.01','Oedema of legs','Y','2025-10-23 00:00:00'),(93627,11,'9A25.3','Oedema of orbit','Y','2025-10-23 00:00:00'),(93628,11,'JA2Z','Oedema, proteinuria, or hypertensive disorders in pregnancy, childbirth, or the puerperium, unspecified','Y','2025-10-23 00:00:00'),(93629,11,'MG29.Z','Oedema, unspecified','Y','2025-10-23 00:00:00'),(93630,11,'XA8ES3','Oesophageal artery','Y','2025-10-23 00:00:00'),(93631,11,'DA25.0','Oesophageal erosion','Y','2025-10-23 00:00:00'),(93632,11,'LB12.2','Oesophageal fistula without atresia','Y','2025-10-23 00:00:00'),(93633,11,'XH36M5','Oesophageal glandular dysplasia (intraepithelial neoplasia), high grade','Y','2025-10-23 00:00:00'),(93634,11,'XH3K13','Oesophageal glandular dysplasia (intraepithelial neoplasia), low grade','Y','2025-10-23 00:00:00'),(93635,11,'ME24.A2','Oesophageal haemorrhage','Y','2025-10-23 00:00:00'),(93636,11,'XA8VY5','Oesophageal lymph node','Y','2025-10-23 00:00:00'),(93637,11,'DA20.0','Oesophageal obstruction','Y','2025-10-23 00:00:00'),(93638,11,'DA24.00','Oesophageal phlegmon','Y','2025-10-23 00:00:00'),(93639,11,'XA7K49','Oesophageal plexus','Y','2025-10-23 00:00:00'),(93640,11,'XH9ND8','Oesophageal squamous intraepithelial neoplasia (dysplasia), high grade','Y','2025-10-23 00:00:00'),(93641,11,'XH3Y37','Oesophageal squamous intraepithelial neoplasia (dysplasia), low grade','Y','2025-10-23 00:00:00'),(93642,11,'DA25','Oesophageal ulcer','Y','2025-10-23 00:00:00'),(93643,11,'DA25.2','Oesophageal ulcer due to allergic or immunologic disorder','Y','2025-10-23 00:00:00'),(93644,11,'DA25.3','Oesophageal ulcer due to external causes','Y','2025-10-23 00:00:00'),(93645,11,'DA25.3Z','Oesophageal ulcer due to external causes, unspecified','Y','2025-10-23 00:00:00'),(93646,11,'DA25.3Y','Oesophageal ulcer due to other specified external causes','Y','2025-10-23 00:00:00'),(93647,11,'DA25.Z','Oesophageal ulcer, unspecified','Y','2025-10-23 00:00:00'),(93648,11,'DA26.0','Oesophageal varices','Y','2025-10-23 00:00:00'),(93649,11,'DA26.00','Oesophageal varices with bleeding','Y','2025-10-23 00:00:00'),(93650,11,'DA26.01','Oesophageal varices without bleeding','Y','2025-10-23 00:00:00'),(93651,11,'DA26.0Z','Oesophageal varices, unspecified','Y','2025-10-23 00:00:00'),(93652,11,'XA3VU3','Oesophageal vein','Y','2025-10-23 00:00:00'),(93653,11,'DA20.2','Oesophageal web','Y','2025-10-23 00:00:00'),(93654,11,'DA24','Oesophagitis','Y','2025-10-23 00:00:00'),(93655,11,'DA24.2','Oesophagitis due to external causes','Y','2025-10-23 00:00:00'),(93656,11,'DA24.2Z','Oesophagitis due to external causes, unspecified','Y','2025-10-23 00:00:00'),(93657,11,'KB81','Oesophagitis in newborn','Y','2025-10-23 00:00:00'),(93658,11,'DA24.Z','Oesophagitis, unspecified','Y','2025-10-23 00:00:00'),(93659,11,'1F69','Oesophagostomiasis','Y','2025-10-23 00:00:00'),(93660,11,'XN7L5','Oesophagostomum','Y','2025-10-23 00:00:00'),(93661,11,'XN0NZ','Oesophagostomum bifurcum','Y','2025-10-23 00:00:00'),(93662,11,'XA0828','Oesophagus','Y','2025-10-23 00:00:00'),(93663,11,'XM2KB4','Ofatumumab','Y','2025-10-23 00:00:00'),(93664,11,'XE58T','Office building','Y','2025-10-23 00:00:00'),(93665,11,'XE2HC','Official or legal authority','Y','2025-10-23 00:00:00'),(93666,11,'XE7VD','Off-label use','Y','2025-10-23 00:00:00'),(93667,11,'XM8072','Ofloxacin','Y','2025-10-23 00:00:00'),(93668,11,'XM2CJ8','Ofloxacin and ornidazole','Y','2025-10-23 00:00:00'),(93669,11,'XM6DL1','Oil','Y','2025-10-23 00:00:00'),(93670,11,'XE1PV','Oil burner','Y','2025-10-23 00:00:00'),(93671,11,'XM3XP7','Oil cloves','Y','2025-10-23 00:00:00'),(93672,11,'XM60X6','Oil fumes, not elsewhere classified','Y','2025-10-23 00:00:00'),(93673,11,'XE7GD','Oil or gas extraction facility','Y','2025-10-23 00:00:00'),(93674,11,'XM66S8','Oil wintergreen (bitter)','Y','2025-10-23 00:00:00'),(93675,11,'XM7K59','Olaflur','Y','2025-10-23 00:00:00'),(93676,11,'XM6GK7','Olanzapine','Y','2025-10-23 00:00:00'),(93677,11,'XM7202','Olaparib','Y','2025-10-23 00:00:00'),(93678,11,'XM3DU2','Olaratumab','Y','2025-10-23 00:00:00'),(93679,11,'GA15.3','Old laceration of cervix uteri','Y','2025-10-23 00:00:00'),(93680,11,'BA50','Old myocardial infarction','Y','2025-10-23 00:00:00'),(93681,11,'XM8HR9','Oleandomycin','Y','2025-10-23 00:00:00'),(93682,11,'XM6AA6','Oleandrin','Y','2025-10-23 00:00:00'),(93683,11,'XA5VA1','Olecranon process of the ulna','Y','2025-10-23 00:00:00'),(93684,11,'XM45F6','Oleic acid','Y','2025-10-23 00:00:00'),(93685,11,'MB27.24','Olfactory hallucinations','Y','2025-10-23 00:00:00'),(93686,11,'XA5QD6','Olfactory nerve','Y','2025-10-23 00:00:00'),(93687,11,'2C20.3','Olfactory neuroblastoma','Y','2025-10-23 00:00:00'),(93688,11,'XH50L1','Olfactory neuroblastoma','Y','2025-10-23 00:00:00'),(93689,11,'XH7QE0','Olfactory neurocytoma','Y','2025-10-23 00:00:00'),(93690,11,'XH2Y49','Olfactory neuroepithelioma','Y','2025-10-23 00:00:00'),(93691,11,'XH09A4','Olfactory neurogenic tumour','Y','2025-10-23 00:00:00'),(93692,11,'6B22','Olfactory reference disorder','Y','2025-10-23 00:00:00'),(93693,11,'6B22.0','Olfactory reference disorder with fair to good insight','Y','2025-10-23 00:00:00'),(93694,11,'6B22.1','Olfactory reference disorder with poor to absent insight','Y','2025-10-23 00:00:00'),(93695,11,'6B22.Z','Olfactory reference disorder, unspecified','Y','2025-10-23 00:00:00'),(93696,11,'XM1G85','Oliceridine','Y','2025-10-23 00:00:00'),(93697,11,'XA1CK9','Oligoarticular','Y','2025-10-23 00:00:00'),(93698,11,'XH6F49','Oligoastrocytoma, NOS','Y','2025-10-23 00:00:00'),(93699,11,'XH7CX7','Oligodendroblastoma','Y','2025-10-23 00:00:00'),(93700,11,'XH8844','Oligodendroglioma, anaplastic','Y','2025-10-23 00:00:00'),(93701,11,'XH9QF3','Oligodendroglioma, anaplastic, IDH mutant and 1p/19q co deleted','Y','2025-10-23 00:00:00'),(93702,11,'XH7K31','Oligodendroglioma, IDH-mutant and 1p/19q co deleted','Y','2025-10-23 00:00:00'),(93703,11,'XH7W59','Oligodendroglioma, NOS','Y','2025-10-23 00:00:00'),(93704,11,'LA30.2','Oligodontia','Y','2025-10-23 00:00:00'),(93705,11,'JA88.0','Oligohydramnios','Y','2025-10-23 00:00:00'),(93706,11,'LB30.4','Oligomeganephronia','Y','2025-10-23 00:00:00'),(93707,11,'FA04','Oligoosteoarthritis','Y','2025-10-23 00:00:00'),(93708,11,'5A80.4','Oligo-ovulation','Y','2025-10-23 00:00:00'),(93709,11,'5C56.21','Oligosaccharidosis','Y','2025-10-23 00:00:00'),(93710,11,'XM1VV2','Olive oil (medicinal)','Y','2025-10-23 00:00:00'),(93711,11,'XA5KN2','Olives','Y','2025-10-23 00:00:00'),(93712,11,'XM5MX5','Olivomycin','Y','2025-10-23 00:00:00'),(93713,11,'XM1B39','Olmesartan medoxomil','Y','2025-10-23 00:00:00'),(93714,11,'XM0J75','Olmutinib','Y','2025-10-23 00:00:00'),(93715,11,'XM1QR3','Olodaterol','Y','2025-10-23 00:00:00'),(93716,11,'XM0ST2','Olopatadine','Y','2025-10-23 00:00:00'),(93717,11,'XM0TN5','Olsalazine','Y','2025-10-23 00:00:00'),(93718,11,'XM3RX2','Omacetaxine mepesuccinate','Y','2025-10-23 00:00:00'),(93719,11,'XM4LH9','Omalizumab','Y','2025-10-23 00:00:00'),(93720,11,'XM70P2','Ombitasvir, Paritaprevir and Ritonavir','Y','2025-10-23 00:00:00'),(93721,11,'XM2KC4','Omega-3-triglycerides','Y','2025-10-23 00:00:00'),(93722,11,'XA6DF7','Omentum','Y','2025-10-23 00:00:00'),(93723,11,'XM8X45','Omeprazole','Y','2025-10-23 00:00:00'),(93724,11,'XM2D86','Omethoate','Y','2025-10-23 00:00:00'),(93725,11,'XM0072','Omoconazole','Y','2025-10-23 00:00:00'),(93726,11,'XA4RN7','Omohyoid muscle','Y','2025-10-23 00:00:00'),(93727,11,'XA2JY6','Omohyoid tendon','Y','2025-10-23 00:00:00'),(93728,11,'KA65.1','Omphalitis of newborn','Y','2025-10-23 00:00:00'),(93729,11,'LB01','Omphalocele','Y','2025-10-23 00:00:00'),(93730,11,'XM7RG5','Omphalotus illudens mushroom','Y','2025-10-23 00:00:00'),(93731,11,'XM95E9','Omphalotus mushroom','Y','2025-10-23 00:00:00'),(93732,11,'XM8VV0','Omphalotus nidiformis mushroom','Y','2025-10-23 00:00:00'),(93733,11,'1D4A','Omsk haemorrhagic fever','Y','2025-10-23 00:00:00'),(93734,11,'XN9R1','Onchocerca','Y','2025-10-23 00:00:00'),(93735,11,'XN8T4','Onchocerca volvulus','Y','2025-10-23 00:00:00'),(93736,11,'1F6A','Onchocerciasis','Y','2025-10-23 00:00:00'),(93737,11,'1F6A.0','Onchocerciasis of the eye','Y','2025-10-23 00:00:00'),(93738,11,'1F6A.1','Onchocerciasis of the skin','Y','2025-10-23 00:00:00'),(93739,11,'XH8NK5','Oncocytic papillary cystadenoma','Y','2025-10-23 00:00:00'),(93740,11,'XM9TL3','Oncovin','Y','2025-10-23 00:00:00'),(93741,11,'XN6JB','Oncovirus','Y','2025-10-23 00:00:00'),(93742,11,'XM7423','Ondansetron','Y','2025-10-23 00:00:00'),(93743,11,'XC3W','One or both eyes are open spontaneously','Y','2025-10-23 00:00:00'),(93744,11,'XC3H','One or both eyes open to painful or noxious stimulation','Y','2025-10-23 00:00:00'),(93745,11,'XC5L','One or both eyes open to verbal stimulation','Y','2025-10-23 00:00:00'),(93746,11,'XC16','One pupil reacts','Y','2025-10-23 00:00:00'),(93747,11,'XE2LS','One-way valve component of medical device','Y','2025-10-23 00:00:00'),(93748,11,'EE10.2','Onycholysis','Y','2025-10-23 00:00:00'),(93749,11,'EE12.1','Onychomycosis','Y','2025-10-23 00:00:00'),(93750,11,'1F2D.5','Onychomycosis due to non-dermatophyte mould','Y','2025-10-23 00:00:00'),(93751,11,'XN6AD','o\'nyong nyong virus','Y','2025-10-23 00:00:00'),(93752,11,'1D42','O\'nyong-nyong fever','Y','2025-10-23 00:00:00'),(93753,11,'NB51.4','Open bite of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(93754,11,'ND12.4','Open bite of ankle or foot','Y','2025-10-23 00:00:00'),(93755,11,'NC52.04','Open bite of finger or thumb','Y','2025-10-23 00:00:00'),(93756,11,'NC31.4','Open bite of forearm','Y','2025-10-23 00:00:00'),(93757,11,'NA01.6','Open bite of head','Y','2025-10-23 00:00:00'),(93758,11,'NC71.4','Open bite of hip or thigh','Y','2025-10-23 00:00:00'),(93759,11,'NC91.4','Open bite of lower leg','Y','2025-10-23 00:00:00'),(93760,11,'NA21.4','Open bite of neck','Y','2025-10-23 00:00:00'),(93761,11,'NC52.14','Open bite of other parts of wrist or hand','Y','2025-10-23 00:00:00'),(93762,11,'NC11.4','Open bite of shoulder or upper arm','Y','2025-10-23 00:00:00'),(93763,11,'NA81.4','Open bite of thorax','Y','2025-10-23 00:00:00'),(93764,11,'ND12.64','Open bite of toe','Y','2025-10-23 00:00:00'),(93765,11,'XE4PP','Open circuit in device','Y','2025-10-23 00:00:00'),(93766,11,'XE2G4','Open drain, channel','Y','2025-10-23 00:00:00'),(93767,11,'XJ7YM','Open fracture','Y','2025-10-23 00:00:00'),(93768,11,'NB51','Open wound of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(93769,11,'NB51.Z','Open wound of abdomen, lower back or pelvis, unspecified','Y','2025-10-23 00:00:00'),(93770,11,'ND12','Open wound of ankle or foot','Y','2025-10-23 00:00:00'),(93771,11,'ND12.Z','Open wound of ankle or foot, unspecified','Y','2025-10-23 00:00:00'),(93772,11,'NA06.04','Open wound of eyelid or periocular area','Y','2025-10-23 00:00:00'),(93773,11,'NC52.0','Open wound of finger or thumb','Y','2025-10-23 00:00:00'),(93774,11,'NC52.0Z','Open wound of finger or thumb, unspecified','Y','2025-10-23 00:00:00'),(93775,11,'NC31','Open wound of forearm','Y','2025-10-23 00:00:00'),(93776,11,'NC31.Z','Open wound of forearm, unspecified','Y','2025-10-23 00:00:00'),(93777,11,'NA01','Open wound of head','Y','2025-10-23 00:00:00'),(93778,11,'NA01.Z','Open wound of head, unspecified','Y','2025-10-23 00:00:00'),(93779,11,'NC71','Open wound of hip or thigh','Y','2025-10-23 00:00:00'),(93780,11,'NC71.Z','Open wound of hip or thigh, unspecified','Y','2025-10-23 00:00:00'),(93781,11,'NC91','Open wound of knee or lower leg','Y','2025-10-23 00:00:00'),(93782,11,'NC91.Z','Open wound of knee or lower leg, unspecified','Y','2025-10-23 00:00:00'),(93783,11,'NA21','Open wound of neck','Y','2025-10-23 00:00:00'),(93784,11,'NA21.Z','Open wound of neck, unspecified','Y','2025-10-23 00:00:00'),(93785,11,'NC52.1','Open wound of other parts of wrist or hand','Y','2025-10-23 00:00:00'),(93786,11,'NC52.1Z','Open wound of other parts of wrist or hand, unspecified','Y','2025-10-23 00:00:00'),(93787,11,'NC11','Open wound of shoulder or upper arm','Y','2025-10-23 00:00:00'),(93788,11,'NC11.Z','Open wound of shoulder or upper arm, unspecified','Y','2025-10-23 00:00:00'),(93789,11,'NA81','Open wound of thorax','Y','2025-10-23 00:00:00'),(93790,11,'NA81.Z','Open wound of thorax, unspecified','Y','2025-10-23 00:00:00'),(93791,11,'ND12.6','Open wound of toe','Y','2025-10-23 00:00:00'),(93792,11,'ND12.6Z','Open wound of toe, unspecified','Y','2025-10-23 00:00:00'),(93793,11,'ND56.1','Open wound of unspecified body region','Y','2025-10-23 00:00:00'),(93794,11,'NC52','Open wound of wrist or hand','Y','2025-10-23 00:00:00'),(93795,11,'ND31','Open wounds involving multiple body regions','Y','2025-10-23 00:00:00'),(93796,11,'XE5F1','Operating system becomes nonfunctional','Y','2025-10-23 00:00:00'),(93797,11,'XE6VL','Operating system version or upgrade problem','Y','2025-10-23 00:00:00'),(93798,11,'XE82X','Operational problem with device identified','Y','2025-10-23 00:00:00'),(93799,11,'QA64','Operator error without injury or harm','Y','2025-10-23 00:00:00'),(93800,11,'PL12.5','Operator error, as mode of injury or harm','Y','2025-10-23 00:00:00'),(93801,11,'XA84G1','Operculum','Y','2025-10-23 00:00:00'),(93802,11,'XA1CW5','Ophthalmic artery','Y','2025-10-23 00:00:00'),(93803,11,'PK97.0','Ophthalmic devices associated with injury or harm, diagnostic or monitoring devices','Y','2025-10-23 00:00:00'),(93804,11,'PK97.4','Ophthalmic devices associated with injury or harm, miscellaneous devices, not elsewhere classified','Y','2025-10-23 00:00:00'),(93805,11,'PK97.2','Ophthalmic devices associated with injury or harm, prosthetic or other implants, materials or accessory devices','Y','2025-10-23 00:00:00'),(93806,11,'PK97.3','Ophthalmic devices associated with injury or harm, surgical instruments, materials or devices','Y','2025-10-23 00:00:00'),(93807,11,'PK97.1','Ophthalmic devices associated with injury or harm, therapeutic, nonsurgical or rehabilitative devices','Y','2025-10-23 00:00:00'),(93808,11,'PK97','Ophthalmic devices, implants or grafts associated with injury or harm','Y','2025-10-23 00:00:00'),(93809,11,'PK97.Z','Ophthalmic devices, implants or grafts associated with injury or harm, unspecified','Y','2025-10-23 00:00:00'),(93810,11,'1C1G.12','Ophthalmic Lyme borreliosis','Y','2025-10-23 00:00:00'),(93811,11,'PK80.D','Ophthalmic procedure associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(93812,11,'XA0X91','Ophthalmic vein','Y','2025-10-23 00:00:00'),(93813,11,'1E91.1','Ophthalmic zoster','Y','2025-10-23 00:00:00'),(93814,11,'MB47.A','Ophthalmoparesis','Y','2025-10-23 00:00:00'),(93815,11,'XM5DJ2','Opiate antagonists','Y','2025-10-23 00:00:00'),(93816,11,'XM6TZ5','Opicapone','Y','2025-10-23 00:00:00'),(93817,11,'XM0PE5','Opinercept','Y','2025-10-23 00:00:00'),(93818,11,'XM7S23','Opioid','Y','2025-10-23 00:00:00'),(93819,11,'XM4MV8','Opioid anaesthetics','Y','2025-10-23 00:00:00'),(93820,11,'XM6KY8','Opioid antagonist','Y','2025-10-23 00:00:00'),(93821,11,'6C43.2','Opioid dependence','Y','2025-10-23 00:00:00'),(93822,11,'6C43.20','Opioid dependence, current use','Y','2025-10-23 00:00:00'),(93823,11,'6C43.21','Opioid dependence, early full remission','Y','2025-10-23 00:00:00'),(93824,11,'6C43.23','Opioid dependence, sustained full remission','Y','2025-10-23 00:00:00'),(93825,11,'6C43.22','Opioid dependence, sustained partial remission','Y','2025-10-23 00:00:00'),(93826,11,'6C43.2Z','Opioid dependence, unspecified','Y','2025-10-23 00:00:00'),(93827,11,'6C43.3','Opioid intoxication','Y','2025-10-23 00:00:00'),(93828,11,'6C43.4','Opioid withdrawal','Y','2025-10-23 00:00:00'),(93829,11,'6C43.71','Opioid-induced anxiety disorder','Y','2025-10-23 00:00:00'),(93830,11,'6C43.5','Opioid-induced delirium','Y','2025-10-23 00:00:00'),(93831,11,'6C43.70','Opioid-induced mood disorder','Y','2025-10-23 00:00:00'),(93832,11,'6C43.6','Opioid-induced psychotic disorder','Y','2025-10-23 00:00:00'),(93833,11,'XM37K4','Opipramol','Y','2025-10-23 00:00:00'),(93834,11,'1F84','Opisthorchiasis','Y','2025-10-23 00:00:00'),(93835,11,'XN91W','Opisthorchis','Y','2025-10-23 00:00:00'),(93836,11,'MB47.B','Opisthotonos','Y','2025-10-23 00:00:00'),(93837,11,'XM4ES0','Opium','Y','2025-10-23 00:00:00'),(93838,11,'XM2T93','Opium alkaloids (total)','Y','2025-10-23 00:00:00'),(93839,11,'XM69X3','Opium alkaloids standardized powdered','Y','2025-10-23 00:00:00'),(93840,11,'XM91H1','Opium alkaloids tincture (camphorated)','Y','2025-10-23 00:00:00'),(93841,11,'XM0AN7','Oportuzumab monatox','Y','2025-10-23 00:00:00'),(93842,11,'XA4RW9','Opponens digiti minimi muscle (hand)','Y','2025-10-23 00:00:00'),(93843,11,'XA9KM7','Opponens digiti minimi tendon','Y','2025-10-23 00:00:00'),(93844,11,'XA0Q73','Opponens pollicis muscle','Y','2025-10-23 00:00:00'),(93845,11,'XA3W45','Opponens pollicis tendon','Y','2025-10-23 00:00:00'),(93846,11,'6C90','Oppositional defiant disorder','Y','2025-10-23 00:00:00'),(93847,11,'6C90.0','Oppositional defiant disorder with chronic irritability-anger','Y','2025-10-23 00:00:00'),(93848,11,'6C90.00','Oppositional defiant disorder with chronic irritability-anger with limited prosocial emotions','Y','2025-10-23 00:00:00'),(93849,11,'6C90.01','Oppositional defiant disorder with chronic irritability-anger with typical prosocial emotions','Y','2025-10-23 00:00:00'),(93850,11,'6C90.0Z','Oppositional defiant disorder with chronic irritability-anger, unspecified','Y','2025-10-23 00:00:00'),(93851,11,'6C90.1','Oppositional defiant disorder without chronic irritability-anger','Y','2025-10-23 00:00:00'),(93852,11,'6C90.10','Oppositional defiant disorder without chronic irritability-anger with limited prosocial emotions','Y','2025-10-23 00:00:00'),(93853,11,'6C90.11','Oppositional defiant disorder without chronic irritability-anger with typical prosocial emotions','Y','2025-10-23 00:00:00'),(93854,11,'6C90.1Z','Oppositional defiant disorder without chronic irritability-anger, unspecified','Y','2025-10-23 00:00:00'),(93855,11,'6C90.Z','Oppositional defiant disorder, unspecified','Y','2025-10-23 00:00:00'),(93856,11,'XM4PY0','Oprelvekin','Y','2025-10-23 00:00:00'),(93857,11,'9C40.B','Optic atrophy','Y','2025-10-23 00:00:00'),(93858,11,'9C40.BZ','Optic atrophy, unspecified','Y','2025-10-23 00:00:00'),(93859,11,'XA5TX3','Optic chiasm','Y','2025-10-23 00:00:00'),(93860,11,'XA4A75','Optic disc','Y','2025-10-23 00:00:00'),(93861,11,'LA13.73','Optic disc dysplasia','Y','2025-10-23 00:00:00'),(93862,11,'9C40.A','Optic disc swelling','Y','2025-10-23 00:00:00'),(93863,11,'9C40.A1','Optic disc swelling associated with uveitis','Y','2025-10-23 00:00:00'),(93864,11,'9C40.AZ','Optic disc swelling, unspecified','Y','2025-10-23 00:00:00'),(93865,11,'XA1E00','Optic nerve','Y','2025-10-23 00:00:00'),(93866,11,'LA13.71','Optic nerve aplasia','Y','2025-10-23 00:00:00'),(93867,11,'NA06.63','Optic nerve avulsion','Y','2025-10-23 00:00:00'),(93868,11,'9C40.1','Optic neuritis','Y','2025-10-23 00:00:00'),(93869,11,'9C40.1Z','Optic neuritis, unspecified','Y','2025-10-23 00:00:00'),(93870,11,'XA63Y1','Optic tract','Y','2025-10-23 00:00:00'),(93871,11,'XE4W1','Optical decentration','Y','2025-10-23 00:00:00'),(93872,11,'XE1VT','Optical discolouration','Y','2025-10-23 00:00:00'),(93873,11,'XE4BE','Optical distortion','Y','2025-10-23 00:00:00'),(93874,11,'XE7A6','Optical fiber component of medical device','Y','2025-10-23 00:00:00'),(93875,11,'XE93N','Optical obstruction','Y','2025-10-23 00:00:00'),(93876,11,'XE941','Optical problem','Y','2025-10-23 00:00:00'),(93877,11,'XE4KN','Optical problem with device identified','Y','2025-10-23 00:00:00'),(93878,11,'XE42B','Optical transmission problem identified with device','Y','2025-10-23 00:00:00'),(93879,11,'EK10.0','Oral allergy syndrome','Y','2025-10-23 00:00:00'),(93880,11,'DA01.10','Oral aphthae or aphtha-like ulceration','Y','2025-10-23 00:00:00'),(93881,11,'XA1WN1','Oral cavity','Y','2025-10-23 00:00:00'),(93882,11,'DA01.42','Oral fibroepithelial polyp','Y','2025-10-23 00:00:00'),(93883,11,'XA37C7','Oral floor','Y','2025-10-23 00:00:00'),(93884,11,'EA91.42','Oral lichen planus, unspecified','Y','2025-10-23 00:00:00'),(93885,11,'XA6NQ7','Oral mucosa','Y','2025-10-23 00:00:00'),(93886,11,'DA01.11','Oral mucositis','Y','2025-10-23 00:00:00'),(93887,11,'EB40.00','Oral pemphigus','Y','2025-10-23 00:00:00'),(93888,11,'XA5A87','Oral region','Y','2025-10-23 00:00:00'),(93889,11,'XM39B5','Oral rehydration salts','Y','2025-10-23 00:00:00'),(93890,11,'DA02.2','Oral submucous fibrosis','Y','2025-10-23 00:00:00'),(93891,11,'LD25.00','Oral-facial-digital syndrome','Y','2025-10-23 00:00:00'),(93892,11,'XN9BY','Or','Y','2025-10-23 00:00:00'),(93893,11,'XM44G8','Orazamide','Y','2025-10-23 00:00:00'),(93894,11,'XA0ZM1','Orbicularis oculi muscle','Y','2025-10-23 00:00:00'),(93895,11,'XA65X4','Orbicularis oculi tendon','Y','2025-10-23 00:00:00'),(93896,11,'XA55R2','Orbicularis oris muscle','Y','2025-10-23 00:00:00'),(93897,11,'XA0W74','Orbicularis oris tendon','Y','2025-10-23 00:00:00'),(93898,11,'XA2WJ9','Orbit','Y','2025-10-23 00:00:00'),(93899,11,'9A21.2','Orbital abscess','Y','2025-10-23 00:00:00'),(93900,11,'XA8E69','Orbital bone','Y','2025-10-23 00:00:00'),(93901,11,'XA34H5','Orbital branches of the anterior and posterior meningeal artery','Y','2025-10-23 00:00:00'),(93902,11,'XA05E9','Orbital branches of the infraorbital artery','Y','2025-10-23 00:00:00'),(93903,11,'9A21.0','Orbital cellulitis','Y','2025-10-23 00:00:00'),(93904,11,'9A23','Orbital cyst','Y','2025-10-23 00:00:00'),(93905,11,'9A23.Z','Orbital cyst, unspecified','Y','2025-10-23 00:00:00'),(93906,11,'XA7MW9','Orbital floor','Y','2025-10-23 00:00:00'),(93907,11,'NA02.2','Orbital fracture','Y','2025-10-23 00:00:00'),(93908,11,'NA02.2Z','Orbital fracture, unspecified','Y','2025-10-23 00:00:00'),(93909,11,'9A21','Orbital infection','Y','2025-10-23 00:00:00'),(93910,11,'9A21.Z','Orbital infection, unspecified','Y','2025-10-23 00:00:00'),(93911,11,'9A22','Orbital inflammation','Y','2025-10-23 00:00:00'),(93912,11,'9A22.Z','Orbital inflammation, unspecified','Y','2025-10-23 00:00:00'),(93913,11,'9A10.1','Orbital inflammatory syndrome','Y','2025-10-23 00:00:00'),(93914,11,'XA29E7','Orbital region','Y','2025-10-23 00:00:00'),(93915,11,'XA9XW3','Orbital roof','Y','2025-10-23 00:00:00'),(93916,11,'9A21.1','Orbital subperiosteal abscess','Y','2025-10-23 00:00:00'),(93917,11,'XA9XW7','Orbital vein','Y','2025-10-23 00:00:00'),(93918,11,'1D80.1','Orchitis due to mumps virus','Y','2025-10-23 00:00:00'),(93919,11,'GB02','Orchitis or epididymitis','Y','2025-10-23 00:00:00'),(93920,11,'GB02.Z','Orchitis or epididymitis, unspecified','Y','2025-10-23 00:00:00'),(93921,11,'GB02.0','Orchitis, epididymitis or epididymo-orchitis with abscess','Y','2025-10-23 00:00:00'),(93922,11,'GB02.1','Orchitis, epididymitis or epididymo-orchitis without abscess','Y','2025-10-23 00:00:00'),(93923,11,'XM6AG0','Orciprenaline','Y','2025-10-23 00:00:00'),(93924,11,'1E75','Orf','Y','2025-10-23 00:00:00'),(93925,11,'XN8E5','Orf virus','Y','2025-10-23 00:00:00'),(93926,11,'NE81.22','Organ or organ space surgical site infection','Y','2025-10-23 00:00:00'),(93927,11,'SB2Z','Organ system disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(93928,11,'SG1Z','Organ system patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(93929,11,'QB12.0','Organ transplant candidate','Y','2025-10-23 00:00:00'),(93930,11,'5C50.E','Organic aciduria','Y','2025-10-23 00:00:00'),(93931,11,'5C50.EZ','Organic aciduria, unspecified','Y','2025-10-23 00:00:00'),(93932,11,'XM2856','Organic nitrates','Y','2025-10-23 00:00:00'),(93933,11,'XM0W28','Organic solvents, not elsewhere classified','Y','2025-10-23 00:00:00'),(93934,11,'XM4KG8','Organidin','Y','2025-10-23 00:00:00'),(93935,11,'XE5UF','Organised sports and exercise during leisure time','Y','2025-10-23 00:00:00'),(93936,11,'XM41B3','Organochlorine insecticide','Y','2025-10-23 00:00:00'),(93937,11,'XM5E09','Organochlorine pesticide, not elsewhere classified','Y','2025-10-23 00:00:00'),(93938,11,'XM7ZQ6','Organo-heparinoid','Y','2025-10-23 00:00:00'),(93939,11,'XM0A82','Organonitrate','Y','2025-10-23 00:00:00'),(93940,11,'XM7154','Organophosphate insecticide','Y','2025-10-23 00:00:00'),(93941,11,'HA02','Orgasmic dysfunctions','Y','2025-10-23 00:00:00'),(93942,11,'HA02.Z','Orgasmic dysfunctions, unspecified','Y','2025-10-23 00:00:00'),(93943,11,'XM9Z19','Orgotein','Y','2025-10-23 00:00:00'),(93944,11,'XC2X','Oriented, normal speech','Y','2025-10-23 00:00:00'),(93945,11,'XM4KG4','Orimune','Y','2025-10-23 00:00:00'),(93946,11,'XM9LJ3','Oritavancin','Y','2025-10-23 00:00:00'),(93947,11,'XM0NL0','Orlistat','Y','2025-10-23 00:00:00'),(93948,11,'XM1ZT8','Ormeloxifene','Y','2025-10-23 00:00:00'),(93949,11,'XM3WL0','Ornidazole','Y','2025-10-23 00:00:00'),(93950,11,'XM3LP5','Ornipressin','Y','2025-10-23 00:00:00'),(93951,11,'XM1GT0','Ornithine','Y','2025-10-23 00:00:00'),(93952,11,'XM01K0','Ornoprostil','Y','2025-10-23 00:00:00'),(93953,11,'DA01.21','Orofacial granulomatosis','Y','2025-10-23 00:00:00'),(93954,11,'LD25.0','Oromandibular-limb anomaly syndrome','Y','2025-10-23 00:00:00'),(93955,11,'LD25.0Z','Oromandibular-limb anomaly syndrome, unspecified','Y','2025-10-23 00:00:00'),(93956,11,'XA4J67','Oropharynx','Y','2025-10-23 00:00:00'),(93957,11,'1D43','Oropouche virus disease','Y','2025-10-23 00:00:00'),(93958,11,'1C11.00','Oroya fever','Y','2025-10-23 00:00:00'),(93959,11,'XM7U62','Orphenadrine','Y','2025-10-23 00:00:00'),(93960,11,'XM6X03','Orphenadrine citrate','Y','2025-10-23 00:00:00'),(93961,11,'XM70Z6','Orthoboric acid','Y','2025-10-23 00:00:00'),(93962,11,'XN4S8','Orthobunyavirus','Y','2025-10-23 00:00:00'),(93963,11,'XM0QU2','Orthocaine','Y','2025-10-23 00:00:00'),(93964,11,'XM42E8','Orthodichlorobenzene','Y','2025-10-23 00:00:00'),(93965,11,'PK99.0','Orthopaedic devices associated with injury or harm, diagnostic or monitoring devices','Y','2025-10-23 00:00:00'),(93966,11,'PK99.4','Orthopaedic devices associated with injury or harm, miscellaneous devices, not elsewhere classified','Y','2025-10-23 00:00:00'),(93967,11,'PK99.2','Orthopaedic devices associated with injury or harm, prosthetic or other implants, materials or accessory devices','Y','2025-10-23 00:00:00'),(93968,11,'PK99.3','Orthopaedic devices associated with injury or harm, surgical instruments, materials or devices','Y','2025-10-23 00:00:00'),(93969,11,'PK99.1','Orthopaedic devices associated with injury or harm, therapeutic, nonsurgical or rehabilitative devices','Y','2025-10-23 00:00:00'),(93970,11,'PK99','Orthopaedic devices, implants or grafts associated with injury or harm','Y','2025-10-23 00:00:00'),(93971,11,'PK99.Z','Orthopaedic devices, implants or grafts associated with injury or harm, unspecified','Y','2025-10-23 00:00:00'),(93972,11,'XN8R7','Orthopolyomavirus','Y','2025-10-23 00:00:00'),(93973,11,'XN32K','Orthopoxvirus','Y','2025-10-23 00:00:00'),(93974,11,'QB95.6','Orthoptic training','Y','2025-10-23 00:00:00'),(93975,11,'BA21','Orthostatic hypotension','Y','2025-10-23 00:00:00'),(93976,11,'MF96.0','Orthostatic proteinuria','Y','2025-10-23 00:00:00'),(93977,11,'PK9A.24','Orthotic devices associated with adverse incidents','Y','2025-10-23 00:00:00'),(93978,11,'XM5JW8','Orthotolidine','Y','2025-10-23 00:00:00'),(93979,11,'XE7YS','Oscillator component of medical device','Y','2025-10-23 00:00:00'),(93980,11,'XM6823','Oseltamivir','Y','2025-10-23 00:00:00'),(93981,11,'XM8676','Osilodrostat','Y','2025-10-23 00:00:00'),(93982,11,'XM8YD2','Osimertinib','Y','2025-10-23 00:00:00'),(93983,11,'XM22A0','Osmic acid','Y','2025-10-23 00:00:00'),(93984,11,'XM07R4','Osmic acid fumes','Y','2025-10-23 00:00:00'),(93985,11,'XM1UC6','Osmium','Y','2025-10-23 00:00:00'),(93986,11,'XM4B84','Osmotic diuretics','Y','2025-10-23 00:00:00'),(93987,11,'XM2806','Osmotically acting laxatives','Y','2025-10-23 00:00:00'),(93988,11,'XM8HF1','Ospemifene','Y','2025-10-23 00:00:00'),(93989,11,'XE7JV','Osseointegration problem','Y','2025-10-23 00:00:00'),(93990,11,'ME93.5','Osseous and subluxation stenosis of intervertebral foramina','Y','2025-10-23 00:00:00'),(93991,11,'ME93.2','Osseous stenosis of neural canal','Y','2025-10-23 00:00:00'),(93992,11,'FA83','Ossification of spinal ligaments','Y','2025-10-23 00:00:00'),(93993,11,'XH6M86','Ossifying fibroma','Y','2025-10-23 00:00:00'),(93994,11,'XH1DA7','Ossifying fibromyxoid tumour','Y','2025-10-23 00:00:00'),(93995,11,'XH3TB0','Ossifying fibromyxoid tumour, malignant','Y','2025-10-23 00:00:00'),(93996,11,'XH3SR2','Ossifying renal tumour','Y','2025-10-23 00:00:00'),(93997,11,'FB80.2','Osteitis condensans','Y','2025-10-23 00:00:00'),(93998,11,'FA00','Osteoarthritis of hip','Y','2025-10-23 00:00:00'),(93999,11,'FA00.Z','Osteoarthritis of hip, unspecified','Y','2025-10-23 00:00:00'),(94000,11,'FA01','Osteoarthritis of knee','Y','2025-10-23 00:00:00'),(94001,11,'FA01.Z','Osteoarthritis of knee, unspecified','Y','2025-10-23 00:00:00'),(94002,11,'FA03','Osteoarthritis of other specified joint','Y','2025-10-23 00:00:00'),(94003,11,'FA03.Z','Osteoarthritis of other specified joint, unspecified','Y','2025-10-23 00:00:00'),(94004,11,'FA02','Osteoarthritis of wrist or hand','Y','2025-10-23 00:00:00'),(94005,11,'FA02.Z','Osteoarthritis of wrist or hand, unspecified','Y','2025-10-23 00:00:00'),(94006,11,'FA0Z','Osteoarthritis, unspecified','Y','2025-10-23 00:00:00'),(94007,11,'XH4316','Osteoblastoma, NOS','Y','2025-10-23 00:00:00'),(94008,11,'XJ4FU','Osteochondral fracture','Y','2025-10-23 00:00:00'),(94009,11,'XH5Y87','Osteochondroma','Y','2025-10-23 00:00:00'),(94010,11,'XH70W8','Osteochondromatosis, NOS','Y','2025-10-23 00:00:00'),(94011,11,'XH6KR3','Osteochondromyxoma','Y','2025-10-23 00:00:00'),(94012,11,'FB82.1','Osteochondrosis or osteochondritis dissecans','Y','2025-10-23 00:00:00'),(94013,11,'LD24.K0','Osteogenesis imperfecta','Y','2025-10-23 00:00:00'),(94014,11,'XH61J9','Osteoid osteoma, NOS','Y','2025-10-23 00:00:00'),(94015,11,'FB86.2','Osteolysis','Y','2025-10-23 00:00:00'),(94016,11,'XH4818','Osteoma, NOS','Y','2025-10-23 00:00:00'),(94017,11,'FB84','Osteomyelitis or osteitis','Y','2025-10-23 00:00:00'),(94018,11,'FB84.Z','Osteomyelitis or osteitis, unspecified','Y','2025-10-23 00:00:00'),(94019,11,'FB81','Osteonecrosis','Y','2025-10-23 00:00:00'),(94020,11,'FB81.1','Osteonecrosis due to dialysis','Y','2025-10-23 00:00:00'),(94021,11,'FB81.4','Osteonecrosis due to haemoglobinopathy','Y','2025-10-23 00:00:00'),(94022,11,'FB81.5','Osteonecrosis due to ionizing radiation','Y','2025-10-23 00:00:00'),(94023,11,'FB81.3','Osteonecrosis due to trauma','Y','2025-10-23 00:00:00'),(94024,11,'FB81.Z','Osteonecrosis, unspecified','Y','2025-10-23 00:00:00'),(94025,11,'FB8Z','Osteopathies or chondropathies, unspecified','Y','2025-10-23 00:00:00'),(94026,11,'FB83.0','Osteopenia','Y','2025-10-23 00:00:00'),(94027,11,'FB83.03','Osteopenia of disuse','Y','2025-10-23 00:00:00'),(94028,11,'FB83.0Z','Osteopenia, unspecified','Y','2025-10-23 00:00:00'),(94029,11,'LD24.10','Osteopetrosis','Y','2025-10-23 00:00:00'),(94030,11,'FA37.0','Osteophyte','Y','2025-10-23 00:00:00'),(94031,11,'LD24.11','Osteopoikilosis','Y','2025-10-23 00:00:00'),(94032,11,'FB83.1','Osteoporosis','Y','2025-10-23 00:00:00'),(94033,11,'FB83.14','Osteoporosis due to malabsorption','Y','2025-10-23 00:00:00'),(94034,11,'FB83.12','Osteoporosis of disuse','Y','2025-10-23 00:00:00'),(94035,11,'FB83.1Z','Osteoporosis, unspecified','Y','2025-10-23 00:00:00'),(94036,11,'XH06W9','Osteosarcoma in Paget disease of bone','Y','2025-10-23 00:00:00'),(94037,11,'2B51.Y','Osteosarcoma of bone and articular cartilage of other specified sites','Y','2025-10-23 00:00:00'),(94038,11,'2B51.Z','Osteosarcoma of bone and articular cartilage of unspecified sites','Y','2025-10-23 00:00:00'),(94039,11,'2B51.0','Osteosarcoma of bone or articular cartilage of jaw','Y','2025-10-23 00:00:00'),(94040,11,'2B51.1','Osteosarcoma of bone or articular cartilage of limbs','Y','2025-10-23 00:00:00'),(94041,11,'2B51.2','Osteosarcoma of bone or articular cartilage of pelvis','Y','2025-10-23 00:00:00'),(94042,11,'XH2CD6','Osteosarcoma, extraskeletal','Y','2025-10-23 00:00:00'),(94043,11,'XH1XF3','Osteosarcoma, NOS','Y','2025-10-23 00:00:00'),(94044,11,'2B51','Osteosarcoma, primary site','Y','2025-10-23 00:00:00'),(94045,11,'FB80.4','Osteosclerosis','Y','2025-10-23 00:00:00'),(94046,11,'XE99A','Ostrich, emu','Y','2025-10-23 00:00:00'),(94047,11,'AB70.2','Otalgia','Y','2025-10-23 00:00:00'),(94048,11,'AB70','Otalgia or effusion of ear','Y','2025-10-23 00:00:00'),(94049,11,'XM69J7','Oteseconazole','Y','2025-10-23 00:00:00'),(94050,11,'MB70.8','Other abnormal findings in cerebrospinal fluid','Y','2025-10-23 00:00:00'),(94051,11,'EE11.Y','Other abnormalities of nail colour','Y','2025-10-23 00:00:00'),(94052,11,'DB31','Other acquired anatomical alterations of large intestine','Y','2025-10-23 00:00:00'),(94053,11,'DB31.Z','Other acquired anatomical alterations of large intestine, unspecified','Y','2025-10-23 00:00:00'),(94054,11,'DA92','Other acquired anatomical alterations of small intestine','Y','2025-10-23 00:00:00'),(94055,11,'DA92.Z','Other acquired anatomical alterations of small intestine, unspecified','Y','2025-10-23 00:00:00'),(94056,11,'8E01.3','Other acquired Creutzfeldt-Jakob Disease','Y','2025-10-23 00:00:00'),(94057,11,'FA31','Other acquired deformities of limbs','Y','2025-10-23 00:00:00'),(94058,11,'DB91.1','Other acute or subacute hepatic failure','Y','2025-10-23 00:00:00'),(94059,11,'FB84.1','Other acute osteomyelitis','Y','2025-10-23 00:00:00'),(94060,11,'1B41.Y','Other acute rheumatic heart disease','Y','2025-10-23 00:00:00'),(94061,11,'CA08.03','Other allergic rhinitis','Y','2025-10-23 00:00:00'),(94062,11,'MD81.4','Other and unspecified abdominal pain','Y','2025-10-23 00:00:00'),(94063,11,'ME05.Z','Other and unspecified change in bowel habit','Y','2025-10-23 00:00:00'),(94064,11,'PK1Z','Other and unspecified effect of nuclear weapon during armed conflict','Y','2025-10-23 00:00:00'),(94065,11,'PK4Z','Other and unspecified event after cessation of armed conflict','Y','2025-10-23 00:00:00'),(94066,11,'PK0Z','Other and unspecified forms of conventional weapons use during armed conflict','Y','2025-10-23 00:00:00'),(94067,11,'PK3Z','Other and unspecified forms of unconventional warfare during armed conflict','Y','2025-10-23 00:00:00'),(94068,11,'1F90','Other and unspecified infestation by parasitic worms','Y','2025-10-23 00:00:00'),(94069,11,'1F90.Z','Other and unspecified infestation by parasitic worms, unspecified','Y','2025-10-23 00:00:00'),(94070,11,'2A22','Other and unspecified myeloproliferative neoplasms','Y','2025-10-23 00:00:00'),(94071,11,'2A0Z','Other and unspecified neoplasms of brain or central nervous system','Y','2025-10-23 00:00:00'),(94072,11,'3A03.Y','Other and unspecified nutritional or metabolic anaemia','Y','2025-10-23 00:00:00'),(94073,11,'XA2KN0','Other and unspecified parts of mouth','Y','2025-10-23 00:00:00'),(94074,11,'XA9RP1','Other and unspecified parts of tongue','Y','2025-10-23 00:00:00'),(94075,11,'1G04.Y','Other and unspecified scabies','Y','2025-10-23 00:00:00'),(94076,11,'NC73.02','Other anterior dislocation of hip','Y','2025-10-23 00:00:00'),(94077,11,'XM5JW0','Other antiarrhythmics, class I and III','Y','2025-10-23 00:00:00'),(94078,11,'MG50.C','Other antibiotic resistant Enterobacterales','Y','2025-10-23 00:00:00'),(94079,11,'MG50.CZ','Other antibiotic resistant Enterobacterales, unspecified','Y','2025-10-23 00:00:00'),(94080,11,'XM9GA9','Other antiepileptics','Y','2025-10-23 00:00:00'),(94081,11,'XM1AM0','Other antithrombotic agents','Y','2025-10-23 00:00:00'),(94082,11,'JB23.1','Other assisted breech delivery','Y','2025-10-23 00:00:00'),(94083,11,'JB23','Other assisted single delivery','Y','2025-10-23 00:00:00'),(94084,11,'JB23.Z','Other assisted single delivery, unspecified','Y','2025-10-23 00:00:00'),(94085,11,'KA61','Other bacterial infections of the fetus or newborn','Y','2025-10-23 00:00:00'),(94086,11,'DC14.Y','Other biliary diseases','Y','2025-10-23 00:00:00'),(94087,11,'XM9EK1','Other blood glucose lowering drugs','Y','2025-10-23 00:00:00'),(94088,11,'2A70.Y','Other B-lymphoblastic leukaemia/lymphoma with recurrent genetic abnormalities','Y','2025-10-23 00:00:00'),(94089,11,'SD6Z','Other body system disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(94090,11,'XE73M','Other burning liquid','Y','2025-10-23 00:00:00'),(94091,11,'MG50.C0','Other carbapenem resistant Enterobacterales','Y','2025-10-23 00:00:00'),(94092,11,'PK80.16','Other cardiac procedure associated with injury or harm, endoscopic approach','Y','2025-10-23 00:00:00'),(94093,11,'PK80.14','Other cardiac procedure associated with injury or harm, open approach','Y','2025-10-23 00:00:00'),(94094,11,'PK80.15','Other cardiac procedure associated with injury or harm, percutaneous approach','Y','2025-10-23 00:00:00'),(94095,11,'PK80.17','Other cardiac procedure associated with injury or harm, unspecified approach','Y','2025-10-23 00:00:00'),(94096,11,'MC83.1','Other cardiac sounds','Y','2025-10-23 00:00:00'),(94097,11,'MD30.1','Other chest pain','Y','2025-10-23 00:00:00'),(94098,11,'FB84.5','Other chronic haematogenous osteomyelitis','Y','2025-10-23 00:00:00'),(94099,11,'AA91.2','Other chronic suppurative otitis media','Y','2025-10-23 00:00:00'),(94100,11,'GC04.18','Other combined urinary fistula with severe scar or extensive tissue loss','Y','2025-10-23 00:00:00'),(94101,11,'JB0D.3','Other complications of obstetric surgery or procedures','Y','2025-10-23 00:00:00'),(94102,11,'JB0C.6','Other complications of spinal or epidural anaesthesia during labour or delivery','Y','2025-10-23 00:00:00'),(94103,11,'JB43.4','Other complications of spinal or epidural anaesthesia during the puerperium','Y','2025-10-23 00:00:00'),(94104,11,'EB02.Y','Other conditions mediated by cholinergic activation','Y','2025-10-23 00:00:00'),(94105,11,'XE3V7','Other criminal activity','Y','2025-10-23 00:00:00'),(94106,11,'EH76.Y','Other dermatoses associated with specific classes of medication','Y','2025-10-23 00:00:00'),(94107,11,'PJ7Y','Other destruction of aircraft during armed conflict','Y','2025-10-23 00:00:00'),(94108,11,'MF50.6','Other difficulties with micturition','Y','2025-10-23 00:00:00'),(94109,11,'ME24.A','Other digestive system haemorrhage, not elsewhere classified','Y','2025-10-23 00:00:00'),(94110,11,'EK90.Y','Other discrete epidermal dysplasias','Y','2025-10-23 00:00:00'),(94111,11,'DB99.Y','Other diseases of liver','Y','2025-10-23 00:00:00'),(94112,11,'JB64.1','Other diseases of the blood or blood-forming organs or certain disorders involving the immune mechanism complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(94113,11,'GC0Y','Other diseases of urinary system','Y','2025-10-23 00:00:00'),(94114,11,'GC01','Other disorders of bladder','Y','2025-10-23 00:00:00'),(94115,11,'9A94.Y','Other disorders of iris and ciliary body','Y','2025-10-23 00:00:00'),(94116,11,'9B11.Y','Other disorders of lens','Y','2025-10-23 00:00:00'),(94117,11,'5A9Y','Other disorders of puberty','Y','2025-10-23 00:00:00'),(94118,11,'NF0A.Y','Other early complication of trauma, not elsewhere classified','Y','2025-10-23 00:00:00'),(94119,11,'NF03','Other effects of reduced temperature','Y','2025-10-23 00:00:00'),(94120,11,'QA0Y','Other examination or investigation','Y','2025-10-23 00:00:00'),(94121,11,'PJ8Y','Other explosion or fragments during armed conflict','Y','2025-10-23 00:00:00'),(94122,11,'SC2Z','Other female reproductive system associated disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(94123,11,'PK02','Other firearms discharge during armed conflict','Y','2025-10-23 00:00:00'),(94124,11,'XE71F','Other fishes','Y','2025-10-23 00:00:00'),(94125,11,'1C11.Y','Other forms of bartonellosis','Y','2025-10-23 00:00:00'),(94126,11,'1A11.1','Other forms of botulism','Y','2025-10-23 00:00:00'),(94127,11,'NA22.03','Other fracture of first cervical vertebra','Y','2025-10-23 00:00:00'),(94128,11,'NA22.13','Other fracture of second cervical vertebra','Y','2025-10-23 00:00:00'),(94129,11,'NA02.1A','Other fractures of base of skull','Y','2025-10-23 00:00:00'),(94130,11,'DD93.Y','Other functional digestive disorders of infants, neonates or toddlers','Y','2025-10-23 00:00:00'),(94131,11,'BE11','Other functional disturbances following cardiac surgery','Y','2025-10-23 00:00:00'),(94132,11,'8E02.3','Other genetic prion diseases','Y','2025-10-23 00:00:00'),(94133,11,'XE8EH','Other hair care product','Y','2025-10-23 00:00:00'),(94134,11,'PL10','Other health care related causes of injury or harm','Y','2025-10-23 00:00:00'),(94135,11,'MH14','Other ill-defined and unspecified causes of mortality','Y','2025-10-23 00:00:00'),(94136,11,'JA43.1','Other immediate postpartum haemorrhage','Y','2025-10-23 00:00:00'),(94137,11,'NA31.5','Other incomplete cord syndrome of cervical spinal cord','Y','2025-10-23 00:00:00'),(94138,11,'NB62.5','Other incomplete cord syndrome of lumbar spinal cord','Y','2025-10-23 00:00:00'),(94139,11,'NA91.5','Other incomplete cord syndrome of thoracic spinal cord','Y','2025-10-23 00:00:00'),(94140,11,'JB40.2','Other infection of genital tract following delivery','Y','2025-10-23 00:00:00'),(94141,11,'JB63.3','Other infections with a predominantly sexual mode of transmission complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(94142,11,'3B14','Other inherited coagulation factor deficiency with bleeding tendency','Y','2025-10-23 00:00:00'),(94143,11,'3B14.Z','Other inherited coagulation factor deficiency with bleeding tendency, unspecified','Y','2025-10-23 00:00:00'),(94144,11,'ND36','Other injuries involving multiple body regions, not elsewhere classified','Y','2025-10-23 00:00:00'),(94145,11,'ND53','Other injuries of arm, level unspecified','Y','2025-10-23 00:00:00'),(94146,11,'ND55','Other injuries of leg, level unspecified','Y','2025-10-23 00:00:00'),(94147,11,'ND51','Other injuries of spine or trunk, level unspecified','Y','2025-10-23 00:00:00'),(94148,11,'NB32.3Y','Other injury of lung','Y','2025-10-23 00:00:00'),(94149,11,'FA34.Y','Other joint derangements','Y','2025-10-23 00:00:00'),(94150,11,'1A60.4','Other late congenital syphilis, symptomatic','Y','2025-10-23 00:00:00'),(94151,11,'2B33.Y','Other malignant haematopoietic neoplasms without further specification','Y','2025-10-23 00:00:00'),(94152,11,'JB23.2','Other manipulation-assisted delivery','Y','2025-10-23 00:00:00'),(94153,11,'AB13.2','Other marginal perforations of tympanic membrane','Y','2025-10-23 00:00:00'),(94154,11,'2E8A','Other mixed or unspecified benign mesenchymal tumours','Y','2025-10-23 00:00:00'),(94155,11,'XM4ZA4','Other monoclonal antibodies and antibody drug conjugates','Y','2025-10-23 00:00:00'),(94156,11,'QA46.H','Other multiple births, all liveborn','Y','2025-10-23 00:00:00'),(94157,11,'QA46.K','Other multiple births, all stillborn','Y','2025-10-23 00:00:00'),(94158,11,'QA46.J','Other multiple births, some liveborn','Y','2025-10-23 00:00:00'),(94159,11,'NB96','Other multiple injuries of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(94160,11,'QA47.8','Other multiple, unspecified as to place of birth','Y','2025-10-23 00:00:00'),(94161,11,'3A03','Other nutritional or metabolic anaemias','Y','2025-10-23 00:00:00'),(94162,11,'JB0A.6','Other obstetric injury to pelvic organs','Y','2025-10-23 00:00:00'),(94163,11,'XM4S22','Other opioid analgesics, natural, synthetic and semi-synthetic','Y','2025-10-23 00:00:00'),(94164,11,'NE85.6','Other or unspecified complications of amputation stump','Y','2025-10-23 00:00:00'),(94165,11,'JB46.2','Other or unspecified disorders of breast associated with childbirth','Y','2025-10-23 00:00:00'),(94166,11,'JB46.7','Other or unspecified disorders of lactation','Y','2025-10-23 00:00:00'),(94167,11,'JA00.36','Other or unspecified failed attempted abortion, complicated by delayed or excessive haemorrhage','Y','2025-10-23 00:00:00'),(94168,11,'JA00.37','Other or unspecified failed attempted abortion, complicated by embolism','Y','2025-10-23 00:00:00'),(94169,11,'JA00.35','Other or unspecified failed attempted abortion, complicated by genital tract or pelvic infection','Y','2025-10-23 00:00:00'),(94170,11,'JA00.38','Other or unspecified failed attempted abortion, with other or unspecified complications','Y','2025-10-23 00:00:00'),(94171,11,'JA00.39','Other or unspecified failed attempted abortion, without complication','Y','2025-10-23 00:00:00'),(94172,11,'GB56.4','Other or unspecified hydronephrosis','Y','2025-10-23 00:00:00'),(94173,11,'2B6B.21','Other or unspecified malignant epithelial neoplasm of pharyngeal tonsil','Y','2025-10-23 00:00:00'),(94174,11,'PK9C.0','Other or unspecified medical devices associated with injury or harm, diagnostic or monitoring devices','Y','2025-10-23 00:00:00'),(94175,11,'PK9C.4','Other or unspecified medical devices associated with injury or harm, miscellaneous devices, not elsewhere classified','Y','2025-10-23 00:00:00'),(94176,11,'PK9C.2','Other or unspecified medical devices associated with injury or harm, prosthetic or other implants, materials or accessory devices','Y','2025-10-23 00:00:00'),(94177,11,'PK9C.3','Other or unspecified medical devices associated with injury or harm, surgical instruments, materials or devices','Y','2025-10-23 00:00:00'),(94178,11,'PK9C.3Z','Other or unspecified medical devices associated with injury or harm, surgical instruments, materials or devices, unspecified','Y','2025-10-23 00:00:00'),(94179,11,'PK9C.1','Other or unspecified medical devices associated with injury or harm, therapeutic, nonsurgical or rehabilitative devices','Y','2025-10-23 00:00:00'),(94180,11,'PK9C','Other or unspecified medical devices, implants or grafts associated with injury or harm','Y','2025-10-23 00:00:00'),(94181,11,'GA18.6','Other or unspecified ovarian cysts','Y','2025-10-23 00:00:00'),(94182,11,'NA80.2','Other or unspecified superficial injuries of breast','Y','2025-10-23 00:00:00'),(94183,11,'NA20.2','Other or unspecified superficial injuries of throat','Y','2025-10-23 00:00:00'),(94184,11,'6D35','Other paraphilic disorder involving non-consenting individuals','Y','2025-10-23 00:00:00'),(94185,11,'1F44','Other parasitologically confirmed malaria','Y','2025-10-23 00:00:00'),(94186,11,'7B02','Other parasomnias','Y','2025-10-23 00:00:00'),(94187,11,'BA60.1','Other pericarditis as current complication following acute myocardial infarction','Y','2025-10-23 00:00:00'),(94188,11,'AB34.1','Other peripheral vertigo','Y','2025-10-23 00:00:00'),(94189,11,'XM84Y1','Other plasma protein fractions','Y','2025-10-23 00:00:00'),(94190,11,'XE8K7','Other playground climbing apparatus','Y','2025-10-23 00:00:00'),(94191,11,'XE66P','Other power saw','Y','2025-10-23 00:00:00'),(94192,11,'8A83','Other primary headache disorder','Y','2025-10-23 00:00:00'),(94193,11,'PL14.4','Other problem associated with transfusion','Y','2025-10-23 00:00:00'),(94194,11,'QA84','Other problem with transfusion without injury or harm','Y','2025-10-23 00:00:00'),(94195,11,'9B78.2','Other proliferative retinopathy','Y','2025-10-23 00:00:00'),(94196,11,'JB0C.1','Other pulmonary complications of anaesthesia during labour or delivery','Y','2025-10-23 00:00:00'),(94197,11,'XE5WN','Other relative','Y','2025-10-23 00:00:00'),(94198,11,'XM04S2','Other respiratory system products','Y','2025-10-23 00:00:00'),(94199,11,'1F86.3','Other schistosomiases','Y','2025-10-23 00:00:00'),(94200,11,'XE68C','Other school-related recreational activities','Y','2025-10-23 00:00:00'),(94201,11,'FA00.2','Other secondary osteoarthritis of hip','Y','2025-10-23 00:00:00'),(94202,11,'FA01.2','Other secondary osteoarthritis of knee','Y','2025-10-23 00:00:00'),(94203,11,'FA03.2','Other secondary osteoarthritis of other specified joint','Y','2025-10-23 00:00:00'),(94204,11,'FA02.2','Other secondary osteoarthritis of wrist or hand','Y','2025-10-23 00:00:00'),(94205,11,'8C03','Other secondary polyneuropathy','Y','2025-10-23 00:00:00'),(94206,11,'8C03.Z','Other secondary polyneuropathy, unspecified','Y','2025-10-23 00:00:00'),(94207,11,'NE80.3','Other serum reactions','Y','2025-10-23 00:00:00'),(94208,11,'1F40.Y','Other severe and complicated Plasmodium falciparum malaria','Y','2025-10-23 00:00:00'),(94209,11,'BC42.Y','Other specific myocarditis','Y','2025-10-23 00:00:00'),(94210,11,'2F20.Y','Other specific types of melanocytic naevus','Y','2025-10-23 00:00:00'),(94211,11,'5A71.0Y','Other specified 46,XX disorders of sex development induced by androgens of fetal origin','Y','2025-10-23 00:00:00'),(94212,11,'BD50.4Y','Other specified abdominal aortic aneurysm','Y','2025-10-23 00:00:00'),(94213,11,'MC80.Y','Other specified abnormal blood-pressure reading, without diagnosis','Y','2025-10-23 00:00:00'),(94214,11,'MF66.Y','Other specified abnormal cytological findings in specimens from female genital organs','Y','2025-10-23 00:00:00'),(94215,11,'MA18.Y','Other specified abnormal findings of blood chemistry','Y','2025-10-23 00:00:00'),(94216,11,'DA41.0Y','Other specified abnormal gastric motility','Y','2025-10-23 00:00:00'),(94217,11,'MB46.Y','Other specified abnormal involuntary movements','Y','2025-10-23 00:00:00'),(94218,11,'MG71.Y','Other specified abnormal laboratory results, not elsewhere classified','Y','2025-10-23 00:00:00'),(94219,11,'MF98.Y','Other specified abnormal levels of serum electrolytes in the urine','Y','2025-10-23 00:00:00'),(94220,11,'MD40.5Y','Other specified abnormal microbiological findings in specimens from respiratory organs and thorax','Y','2025-10-23 00:00:00'),(94221,11,'MF50.Y','Other specified abnormal micturition','Y','2025-10-23 00:00:00'),(94222,11,'LA05.5Y','Other specified abnormal neuronal migration','Y','2025-10-23 00:00:00'),(94223,11,'MG7Y','Other specified abnormal results, not elsewhere classified','Y','2025-10-23 00:00:00'),(94224,11,'5A43.Y','Other specified abnormal secretion of gastrin','Y','2025-10-23 00:00:00'),(94225,11,'GA2Y','Other specified abnormal uterine or vaginal bleeding','Y','2025-10-23 00:00:00'),(94226,11,'MD11.Y','Other specified abnormalities of breathing','Y','2025-10-23 00:00:00'),(94227,11,'JB02.Y','Other specified abnormalities of forces of labour','Y','2025-10-23 00:00:00'),(94228,11,'MB44.Y','Other specified abnormalities of gait and mobility','Y','2025-10-23 00:00:00'),(94229,11,'MC81.Y','Other specified abnormalities of heart beat','Y','2025-10-23 00:00:00'),(94230,11,'EE10.1Y','Other specified abnormality of nail surface','Y','2025-10-23 00:00:00'),(94231,11,'MA16.0Y','Other specified abnormality of red blood cells','Y','2025-10-23 00:00:00'),(94232,11,'MB47.Y','Other specified abnormality of tonus and reflex','Y','2025-10-23 00:00:00'),(94233,11,'SB6Y','Other specified abscess disorders (TM1)','Y','2025-10-23 00:00:00'),(94234,11,'DB70.0Y','Other specified abscess of anal regions','Y','2025-10-23 00:00:00'),(94235,11,'CA43.Y','Other specified abscess of lung or mediastinum','Y','2025-10-23 00:00:00'),(94236,11,'CA0K.Y','Other specified abscess of upper respiratory tract','Y','2025-10-23 00:00:00'),(94237,11,'GC50.1Y','Other specified absent or diminished bladder sensation','Y','2025-10-23 00:00:00'),(94238,11,'ED51.0Y','Other specified acanthosis nigricans','Y','2025-10-23 00:00:00'),(94239,11,'5C73.Y','Other specified acidosis','Y','2025-10-23 00:00:00'),(94240,11,'ED80.Y','Other specified acne','Y','2025-10-23 00:00:00'),(94241,11,'EH67.Y','Other specified acne or acneform reactions attributable to drugs','Y','2025-10-23 00:00:00'),(94242,11,'ED81.Y','Other specified acneform inflammatory disorders','Y','2025-10-23 00:00:00'),(94243,11,'GA19.Y','Other specified acquired abnormalities of broad ligament','Y','2025-10-23 00:00:00'),(94244,11,'GA15.Y','Other specified acquired abnormalities of cervix uteri','Y','2025-10-23 00:00:00'),(94245,11,'GA17.Y','Other specified acquired abnormalities of fallopian tube','Y','2025-10-23 00:00:00'),(94246,11,'GA18.Y','Other specified acquired abnormalities of ovary','Y','2025-10-23 00:00:00'),(94247,11,'GA16.Y','Other specified acquired abnormalities of uterus, except cervix','Y','2025-10-23 00:00:00'),(94248,11,'GA14.Y','Other specified acquired abnormalities of vagina','Y','2025-10-23 00:00:00'),(94249,11,'GA13.Y','Other specified acquired abnormalities of vulva or perineum','Y','2025-10-23 00:00:00'),(94250,11,'BC02.Y','Other specified acquired abnormality of congenitally malformed valve','Y','2025-10-23 00:00:00'),(94251,11,'BC02.3Y','Other specified acquired abnormality of neoaortic valve of pulmonary origin','Y','2025-10-23 00:00:00'),(94252,11,'BC02.4Y','Other specified acquired abnormality of the neoaortic valve of truncal origin','Y','2025-10-23 00:00:00'),(94253,11,'QF0Y','Other specified acquired absence of body structure','Y','2025-10-23 00:00:00'),(94254,11,'QF01.Y','Other specified acquired absence of organs','Y','2025-10-23 00:00:00'),(94255,11,'DC10.Y','Other specified acquired anatomical alterations of gallbladder or bile ducts','Y','2025-10-23 00:00:00'),(94256,11,'DB5Y','Other specified acquired anatomical alterations of the anal canal','Y','2025-10-23 00:00:00'),(94257,11,'DA50.Y','Other specified acquired anatomical alterations of the duodenum','Y','2025-10-23 00:00:00'),(94258,11,'DA20.Y','Other specified acquired anatomical alterations of the oesophagus','Y','2025-10-23 00:00:00'),(94259,11,'DA40.Y','Other specified acquired anatomical alterations of the stomach','Y','2025-10-23 00:00:00'),(94260,11,'3A70.1Y','Other specified acquired aplastic anaemias','Y','2025-10-23 00:00:00'),(94261,11,'8A03.3Y','Other specified acquired ataxia','Y','2025-10-23 00:00:00'),(94262,11,'BC40.Y','Other specified acquired atrial abnormality','Y','2025-10-23 00:00:00'),(94263,11,'FA30.Y','Other specified acquired deformities of fingers or toes','Y','2025-10-23 00:00:00'),(94264,11,'FA31.Y','Other specified acquired deformities of limbs','Y','2025-10-23 00:00:00'),(94265,11,'EE10.Y','Other specified acquired deformities of the nail plate','Y','2025-10-23 00:00:00'),(94266,11,'AA40.Y','Other specified acquired deformity of external auditory canal','Y','2025-10-23 00:00:00'),(94267,11,'AA41.Y','Other specified acquired deformity of pinna','Y','2025-10-23 00:00:00'),(94268,11,'9A04.Y','Other specified acquired disorders of eyelashes','Y','2025-10-23 00:00:00'),(94269,11,'3B81.Y','Other specified acquired disorders of spleen','Y','2025-10-23 00:00:00'),(94270,11,'ED73.Y','Other specified acquired disorders of the hair shaft','Y','2025-10-23 00:00:00'),(94271,11,'3A20.Y','Other specified acquired haemolytic anaemia, immune','Y','2025-10-23 00:00:00'),(94272,11,'3A21.Y','Other specified acquired haemolytic anaemia, non-immune','Y','2025-10-23 00:00:00'),(94273,11,'AB51.Y','Other specified acquired hearing impairment','Y','2025-10-23 00:00:00'),(94274,11,'5A00.2Y','Other specified acquired hypothyroidism','Y','2025-10-23 00:00:00'),(94275,11,'4A20.Y','Other specified acquired immunodeficiencies','Y','2025-10-23 00:00:00'),(94276,11,'EF20.Y','Other specified acquired malformations of cutaneous blood vessels','Y','2025-10-23 00:00:00'),(94277,11,'9A03.Y','Other specified acquired malposition of eyelid','Y','2025-10-23 00:00:00'),(94278,11,'ED61.Y','Other specified acquired melanotic macules or lentigines','Y','2025-10-23 00:00:00'),(94279,11,'5C61.4Y','Other specified acquired monosaccharide malabsorption','Y','2025-10-23 00:00:00'),(94280,11,'3A03.4Y','Other specified acquired other vitamin B deficiency anaemia','Y','2025-10-23 00:00:00'),(94281,11,'3A81.Y','Other specified acquired polycythaemia','Y','2025-10-23 00:00:00'),(94282,11,'BB03.Y','Other specified acquired pulmonary venous abnormality','Y','2025-10-23 00:00:00'),(94283,11,'3A61.Y','Other specified acquired pure red cell aplasia','Y','2025-10-23 00:00:00'),(94284,11,'BD73.Y','Other specified acquired systemic vein abnormality','Y','2025-10-23 00:00:00'),(94285,11,'3B64.1Y','Other specified acquired thrombocytopenia','Y','2025-10-23 00:00:00'),(94286,11,'3B63.1Y','Other specified acquired thrombocytosis','Y','2025-10-23 00:00:00'),(94287,11,'BC41.Y','Other specified acquired ventricular abnormality','Y','2025-10-23 00:00:00'),(94288,11,'LD24.8Y','Other specified acromelic dysplasias','Y','2025-10-23 00:00:00'),(94289,11,'PK81.3Y','Other specified acupuncture or related therapies associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(94290,11,'6A23.Y','Other specified acute and transient psychotic disorder','Y','2025-10-23 00:00:00'),(94291,11,'BD30.1Y','Other specified acute aortoiliac occlusion','Y','2025-10-23 00:00:00'),(94292,11,'BD30.Y','Other specified acute arterial occlusion','Y','2025-10-23 00:00:00'),(94293,11,'CA41.Y','Other specified acute bronchiolitis','Y','2025-10-23 00:00:00'),(94294,11,'CA42.Y','Other specified acute bronchitis','Y','2025-10-23 00:00:00'),(94295,11,'DC12.0Y','Other specified acute cholecystitis','Y','2025-10-23 00:00:00'),(94296,11,'5A2Y','Other specified acute complications of diabetes mellitus','Y','2025-10-23 00:00:00'),(94297,11,'8A42.Y','Other specified acute disseminated encephalomyelitis','Y','2025-10-23 00:00:00'),(94298,11,'GB60.Y','Other specified acute kidney failure','Y','2025-10-23 00:00:00'),(94299,11,'BD30.2Y','Other specified acute lower limb arterial occlusion','Y','2025-10-23 00:00:00'),(94300,11,'2A60.3Y','Other specified acute myeloid leukaemia, not elsewhere classified by criteria of other types','Y','2025-10-23 00:00:00'),(94301,11,'2A60.Y','Other specified acute myeloid leukaemias and related precursor neoplasms','Y','2025-10-23 00:00:00'),(94302,11,'1E91.4Y','Other specified acute neuropathy of cranial nerve due to zoster','Y','2025-10-23 00:00:00'),(94303,11,'BB4Y','Other specified acute or subacute endocarditis','Y','2025-10-23 00:00:00'),(94304,11,'MG31.Y','Other specified acute pain','Y','2025-10-23 00:00:00'),(94305,11,'DC31.Y','Other specified acute pancreatitis','Y','2025-10-23 00:00:00'),(94306,11,'BB20.Y','Other specified acute pericarditis','Y','2025-10-23 00:00:00'),(94307,11,'CA02.Y','Other specified acute pharyngitis','Y','2025-10-23 00:00:00'),(94308,11,'1B41.1Y','Other specified acute rheumatic endocarditis','Y','2025-10-23 00:00:00'),(94309,11,'1B40.Y','Other specified acute rheumatic fever without mention of heart involvement','Y','2025-10-23 00:00:00'),(94310,11,'ME62.Y','Other specified acute skin eruption of uncertain or unspecified nature','Y','2025-10-23 00:00:00'),(94311,11,'CA03.Y','Other specified acute tonsillitis','Y','2025-10-23 00:00:00'),(94312,11,'BD30.0Y','Other specified acute upper limb arterial occlusion','Y','2025-10-23 00:00:00'),(94313,11,'DD30.Y','Other specified acute vascular disorders of intestine','Y','2025-10-23 00:00:00'),(94314,11,'AB30.Y','Other specified acute vestibular syndrome','Y','2025-10-23 00:00:00'),(94315,11,'1E50.Y','Other specified acute viral hepatitis','Y','2025-10-23 00:00:00'),(94316,11,'CA02.1Y','Other specified acute viral pharyngitis','Y','2025-10-23 00:00:00'),(94317,11,'2B70.0Y','Other specified adenocarcinoma of oesophagus','Y','2025-10-23 00:00:00'),(94318,11,'QB30.2Y','Other specified adjustment or management of cardiac devices','Y','2025-10-23 00:00:00'),(94319,11,'5A74.Y','Other specified adrenocortical insufficiency','Y','2025-10-23 00:00:00'),(94320,11,'5A71.Y','Other specified adrenogenital disorders','Y','2025-10-23 00:00:00'),(94321,11,'FB83.2Y','Other specified adult osteomalacia','Y','2025-10-23 00:00:00'),(94322,11,'EH7Y','Other specified adverse cutaneous reactions to medication','Y','2025-10-23 00:00:00'),(94323,11,'HA40.Y','Other specified aetiological considerations in sexual dysfunctions and sexual pain disorders','Y','2025-10-23 00:00:00'),(94324,11,'1F51.Y','Other specified african trypanosomiasis','Y','2025-10-23 00:00:00'),(94325,11,'9B10.0Y','Other specified age-related cataract','Y','2025-10-23 00:00:00'),(94326,11,'9B75.0Y','Other specified age-related macular degeneration','Y','2025-10-23 00:00:00'),(94327,11,'CA80.Y','Other specified airway disease due to specific organic dust','Y','2025-10-23 00:00:00'),(94328,11,'KB2J.Y','Other specified airway obstruction in the neonate due to airway abnormality','Y','2025-10-23 00:00:00'),(94329,11,'DB94.1Y','Other specified alcoholic hepatitis','Y','2025-10-23 00:00:00'),(94330,11,'DB94.Y','Other specified alcoholic liver disease','Y','2025-10-23 00:00:00'),(94331,11,'8D44.Y','Other specified alcohol-related neurological disorders','Y','2025-10-23 00:00:00'),(94332,11,'EK00.Y','Other specified allergic contact dermatitis','Y','2025-10-23 00:00:00'),(94333,11,'EK10.Y','Other specified allergic contact urticaria','Y','2025-10-23 00:00:00'),(94334,11,'DA42.4Y','Other specified allergic gastritis','Y','2025-10-23 00:00:00'),(94335,11,'DB33.2Y','Other specified allergic or dietetic colitis','Y','2025-10-23 00:00:00'),(94336,11,'DA94.2Y','Other specified allergic or dietetic enteritis of small intestine','Y','2025-10-23 00:00:00'),(94337,11,'4A83.Y','Other specified allergic or hypersensitivity disorders involving the gastrointestinal tract','Y','2025-10-23 00:00:00'),(94338,11,'4A80.Y','Other specified allergic or hypersensitivity disorders involving the respiratory tract','Y','2025-10-23 00:00:00'),(94339,11,'ED70.Y','Other specified alopecia or hair loss','Y','2025-10-23 00:00:00'),(94340,11,'3A50.0Y','Other specified alpha thalassaemia','Y','2025-10-23 00:00:00'),(94341,11,'CB04.3Y','Other specified alveolar or peri-alveolar conditions','Y','2025-10-23 00:00:00'),(94342,11,'GA20.0Y','Other specified amenorrhoea','Y','2025-10-23 00:00:00'),(94343,11,'MB21.1Y','Other specified amnesia','Y','2025-10-23 00:00:00'),(94344,11,'5D00.Y','Other specified amyloidosis','Y','2025-10-23 00:00:00'),(94345,11,'3A9Y','Other specified anaemias or erythrocyte disorders','Y','2025-10-23 00:00:00'),(94346,11,'PK90.Y','Other specified anaesthesiology devices associated with injury or harm','Y','2025-10-23 00:00:00'),(94347,11,'DB71.Y','Other specified anal polyp','Y','2025-10-23 00:00:00'),(94348,11,'4A84.Y','Other specified anaphylaxis','Y','2025-10-23 00:00:00'),(94349,11,'DA62.Y','Other specified anastomotic ulcer','Y','2025-10-23 00:00:00'),(94350,11,'LA00.0Y','Other specified anencephaly','Y','2025-10-23 00:00:00'),(94351,11,'LA00.Y','Other specified anencephaly or similar anomalies','Y','2025-10-23 00:00:00'),(94352,11,'BB02.1Y','Other specified aneurysm of pulmonary artery','Y','2025-10-23 00:00:00'),(94353,11,'BA40.Y','Other specified angina pectoris','Y','2025-10-23 00:00:00'),(94354,11,'1F60.Y','Other specified angiostrongyliasis','Y','2025-10-23 00:00:00'),(94355,11,'LA30.5Y','Other specified anomalies in tooth resorption or loss','Y','2025-10-23 00:00:00'),(94356,11,'9C83.6Y','Other specified anomalies of divergence or deviation of eye movement','Y','2025-10-23 00:00:00'),(94357,11,'9C85.0Y','Other specified anomalies of saccadic eye movements','Y','2025-10-23 00:00:00'),(94358,11,'LA80.Y','Other specified anomalous position-orientation of heart','Y','2025-10-23 00:00:00'),(94359,11,'LA86.2Y','Other specified anomalous pulmonary venous connection','Y','2025-10-23 00:00:00'),(94360,11,'6B80.Y','Other specified anorexia Nervosa','Y','2025-10-23 00:00:00'),(94361,11,'QA45.Y','Other specified antenatal screening','Y','2025-10-23 00:00:00'),(94362,11,'JA41.Y','Other specified antepartum haemorrhage','Y','2025-10-23 00:00:00'),(94363,11,'9A96.Y','Other specified anterior uveitis','Y','2025-10-23 00:00:00'),(94364,11,'MG50.1Y','Other specified antibiotic resistant Campylobacter','Y','2025-10-23 00:00:00'),(94365,11,'MG50.3Y','Other specified antibiotic resistant Haemophilus influenzae','Y','2025-10-23 00:00:00'),(94366,11,'MG50.4Y','Other specified antibiotic resistant Helicobacter pylori','Y','2025-10-23 00:00:00'),(94367,11,'MG52.0Y','Other specified antibiotic resistant Mycobacterium','Y','2025-10-23 00:00:00'),(94368,11,'MG50.7Y','Other specified antibiotic resistant Neisseria meningitidis','Y','2025-10-23 00:00:00'),(94369,11,'MG51.0Y','Other specified antibiotic resistant Staphylococcus aureus','Y','2025-10-23 00:00:00'),(94370,11,'XM78C1','Other specified antidepressant','Y','2025-10-23 00:00:00'),(94371,11,'4A44.AY','Other specified antineutrophil cytoplasmic antibody-associated vasculitis','Y','2025-10-23 00:00:00'),(94372,11,'6B0Y','Other specified anxiety or fear-related disorders','Y','2025-10-23 00:00:00'),(94373,11,'BB7Y','Other specified aortic valve disease','Y','2025-10-23 00:00:00'),(94374,11,'BB70.Y','Other specified aortic valve stenosis','Y','2025-10-23 00:00:00'),(94375,11,'KB2A.Y','Other specified apnoea of newborn','Y','2025-10-23 00:00:00'),(94376,11,'DB10.Y','Other specified appendicitis','Y','2025-10-23 00:00:00'),(94377,11,'1D61.Y','Other specified arenavirus disease','Y','2025-10-23 00:00:00'),(94378,11,'LD26.4Y','Other specified arthrogryposis syndromes','Y','2025-10-23 00:00:00'),(94379,11,'FA5Y','Other specified arthropathies','Y','2025-10-23 00:00:00'),(94380,11,'FA38.Y','Other specified arthropathy in diseases classified elsewhere','Y','2025-10-23 00:00:00'),(94381,11,'1D4Y','Other specified arthropod-borne viral fevers','Y','2025-10-23 00:00:00'),(94382,11,'BD50.1Y','Other specified ascending aorta dissection not beyond arch','Y','2025-10-23 00:00:00'),(94383,11,'ME04.Y','Other specified ascites','Y','2025-10-23 00:00:00'),(94384,11,'PL14.Y','Other specified aspects of care associated with injury or harm','Y','2025-10-23 00:00:00'),(94385,11,'PF2Y','Other specified assault','Y','2025-10-23 00:00:00'),(94386,11,'PF15.Y','Other specified assault by exposure to explosion','Y','2025-10-23 00:00:00'),(94387,11,'PE8Y','Other specified assault by exposure to or harmful effects of drugs, medicaments or biological substances','Y','2025-10-23 00:00:00'),(94388,11,'PE5Y','Other specified assault by immersion, submersion or falling into water','Y','2025-10-23 00:00:00'),(94389,11,'PE6Y','Other specified assault by threat to breathing','Y','2025-10-23 00:00:00'),(94390,11,'PD9Y','Other specified assault by transport injury event','Y','2025-10-23 00:00:00'),(94391,11,'8A03.Y','Other specified ataxic disorders','Y','2025-10-23 00:00:00'),(94392,11,'BD40.Y','Other specified atherosclerotic chronic arterial occlusive disease','Y','2025-10-23 00:00:00'),(94393,11,'LB12.1Y','Other specified atresia of oesophagus','Y','2025-10-23 00:00:00'),(94394,11,'BC81.3Y','Other specified atrial fibrillation','Y','2025-10-23 00:00:00'),(94395,11,'BC63.1Y','Other specified atrioventricular block, second degree','Y','2025-10-23 00:00:00'),(94396,11,'BC81.7Y','Other specified atrioventricular reciprocating tachycardia','Y','2025-10-23 00:00:00'),(94397,11,'EE40.Y','Other specified atrophy or degeneration of dermal or subcutaneous connective tissue','Y','2025-10-23 00:00:00'),(94398,11,'8A00.1Y','Other specified atypical parkinsonism','Y','2025-10-23 00:00:00'),(94399,11,'6A02.Y','Other specified autism spectrum disorder','Y','2025-10-23 00:00:00'),(94400,11,'DB96.Y','Other specified autoimmune liver disease','Y','2025-10-23 00:00:00'),(94401,11,'5A03.2Y','Other specified autoimmune thyroiditis','Y','2025-10-23 00:00:00'),(94402,11,'4A6Y','Other specified autoinflammatory disorders','Y','2025-10-23 00:00:00'),(94403,11,'8D87.Y','Other specified autonomic nervous system disorder due to specified neurodegenerative disorder','Y','2025-10-23 00:00:00'),(94404,11,'8D88.Y','Other specified autonomic neuropathies','Y','2025-10-23 00:00:00'),(94405,11,'9A20.0Y','Other specified axial displacement of eyeball','Y','2025-10-23 00:00:00'),(94406,11,'FA92.0Y','Other specified axial spondyloarthritis','Y','2025-10-23 00:00:00'),(94407,11,'9B78.1Y','Other specified background retinopathy and retinal vascular changes','Y','2025-10-23 00:00:00'),(94408,11,'1C4Y','Other specified bacterial diseases','Y','2025-10-23 00:00:00'),(94409,11,'1A1Y','Other specified bacterial foodborne intoxications','Y','2025-10-23 00:00:00'),(94410,11,'1A0Y','Other specified bacterial intestinal infections','Y','2025-10-23 00:00:00'),(94411,11,'1D01.0Y','Other specified bacterial meningitis','Y','2025-10-23 00:00:00'),(94412,11,'LD47.Y','Other specified balanced rearrangements or structural rearrangements','Y','2025-10-23 00:00:00'),(94413,11,'2C32.Y','Other specified basal cell carcinoma of skin','Y','2025-10-23 00:00:00'),(94414,11,'2A86.Y','Other specified B-cell lymphoma, mixed features','Y','2025-10-23 00:00:00'),(94415,11,'2A82.1Y','Other specified b-cell prolymphocytic leukaemia','Y','2025-10-23 00:00:00'),(94416,11,'XE2DR','Other specified bed','Y','2025-10-23 00:00:00'),(94417,11,'6D86.Y','Other specified behavioural or psychological disturbances in dementia','Y','2025-10-23 00:00:00'),(94418,11,'GB20.Y','Other specified benign breast disease','Y','2025-10-23 00:00:00'),(94419,11,'2F2Y','Other specified benign cutaneous neoplasms','Y','2025-10-23 00:00:00'),(94420,11,'2F23.Y','Other specified benign dermal fibrous or fibrohistiocytic neoplasms','Y','2025-10-23 00:00:00'),(94421,11,'2F21.Y','Other specified benign keratinocytic acanthomas','Y','2025-10-23 00:00:00'),(94422,11,'2E80.Y','Other specified benign lipomatous neoplasm','Y','2025-10-23 00:00:00'),(94423,11,'2E81.1Y','Other specified benign lymphatic neoplasms','Y','2025-10-23 00:00:00'),(94424,11,'2E8Y','Other specified benign mesenchymal neoplasm','Y','2025-10-23 00:00:00'),(94425,11,'2F30.Y','Other specified benign neoplasm of breast','Y','2025-10-23 00:00:00'),(94426,11,'2F37.Y','Other specified benign neoplasm of endocrine glands','Y','2025-10-23 00:00:00'),(94427,11,'2F36.Y','Other specified benign neoplasm of eye or ocular adnexa','Y','2025-10-23 00:00:00'),(94428,11,'2F00.Y','Other specified benign neoplasm of middle ear or respiratory system','Y','2025-10-23 00:00:00'),(94429,11,'2F32.Y','Other specified benign neoplasm of ovary','Y','2025-10-23 00:00:00'),(94430,11,'2E92.4Y','Other specified benign neoplasm of the large intestine','Y','2025-10-23 00:00:00'),(94431,11,'2F5Y','Other specified benign neoplasms, except of lymphoid, haematopoietic, central nervous system or related tissues','Y','2025-10-23 00:00:00'),(94432,11,'2E86.Y','Other specified benign smooth muscle or skeletal muscle tumour','Y','2025-10-23 00:00:00'),(94433,11,'2E81.Y','Other specified benign vascular neoplasms','Y','2025-10-23 00:00:00'),(94434,11,'2E81.2Y','Other specified benign vascular neoplasms of infancy and childhood','Y','2025-10-23 00:00:00'),(94435,11,'ME93.Y','Other specified biomechanical lesions, not elsewhere classified','Y','2025-10-23 00:00:00'),(94436,11,'6A6Y','Other specified bipolar or related disorders','Y','2025-10-23 00:00:00'),(94437,11,'6A60.Y','Other specified bipolar type I disorder','Y','2025-10-23 00:00:00'),(94438,11,'6A61.Y','Other specified bipolar type II disorder','Y','2025-10-23 00:00:00'),(94439,11,'KB21.Y','Other specified birth asphyxia','Y','2025-10-23 00:00:00'),(94440,11,'KA40.Y','Other specified birth injury to central nervous system','Y','2025-10-23 00:00:00'),(94441,11,'KA45.2Y','Other specified birth injury to facial bones','Y','2025-10-23 00:00:00'),(94442,11,'KA42.Y','Other specified birth injury to scalp','Y','2025-10-23 00:00:00'),(94443,11,'KA45.Y','Other specified birth injury to skeleton','Y','2025-10-23 00:00:00'),(94444,11,'KA43.Y','Other specified birth injury to skin or soft tissues','Y','2025-10-23 00:00:00'),(94445,11,'9A03.0Y','Other specified blepharoptosis','Y','2025-10-23 00:00:00'),(94446,11,'SF0Y','Other specified blood patterns (TM1)','Y','2025-10-23 00:00:00'),(94447,11,'SH1Y','Other specified blood phase patterns (TM1)','Y','2025-10-23 00:00:00'),(94448,11,'SF4Y','Other specified body constituents patterns (TM1)','Y','2025-10-23 00:00:00'),(94449,11,'6B25.Y','Other specified body-focused repetitive behaviour disorders','Y','2025-10-23 00:00:00'),(94450,11,'LD24.2Y','Other specified bone diseases with disorganised development of skeletal components','Y','2025-10-23 00:00:00'),(94451,11,'LD24.1Y','Other specified bone diseases with increased bone density','Y','2025-10-23 00:00:00'),(94452,11,'FB86.1Y','Other specified bone hyperplasias','Y','2025-10-23 00:00:00'),(94453,11,'SC6Y','Other specified bone, joint and muscle system disorders (TM1)','Y','2025-10-23 00:00:00'),(94454,11,'9A24.Y','Other specified bony deformity of orbit','Y','2025-10-23 00:00:00'),(94455,11,'8B91.Y','Other specified brachial plexus disorders','Y','2025-10-23 00:00:00'),(94456,11,'LB75.Y','Other specified brachydactyly','Y','2025-10-23 00:00:00'),(94457,11,'SD4Y','Other specified brain system disorders (TM1)','Y','2025-10-23 00:00:00'),(94458,11,'CA20.Y','Other specified bronchitis','Y','2025-10-23 00:00:00'),(94459,11,'EJ41.Y','Other specified burn from exposure to artificial source of ultraviolet radiation','Y','2025-10-23 00:00:00'),(94460,11,'ND94.2Y','Other specified burn of shoulder or arm, except wrist or hand, deep partial thickness burn','Y','2025-10-23 00:00:00'),(94461,11,'ND94.1Y','Other specified burn of shoulder or arm, except wrist or hand, superficial partial thickness burn','Y','2025-10-23 00:00:00'),(94462,11,'ND92.0Y','Other specified burn of trunk except perineum or genitalia, epidermal burn','Y','2025-10-23 00:00:00'),(94463,11,'FB50.Y','Other specified bursitis','Y','2025-10-23 00:00:00'),(94464,11,'EB90.4Y','Other specified calcification of skin or subcutaneous tissue','Y','2025-10-23 00:00:00'),(94465,11,'FB31.Y','Other specified calcification or ossification of muscle','Y','2025-10-23 00:00:00'),(94466,11,'5B5K.1Y','Other specified calcium deficiency','Y','2025-10-23 00:00:00'),(94467,11,'GB70.0Y','Other specified calculus of kidney','Y','2025-10-23 00:00:00'),(94468,11,'1F23.Y','Other specified candidosis','Y','2025-10-23 00:00:00'),(94469,11,'1F63.Y','Other specified capillariasis','Y','2025-10-23 00:00:00'),(94470,11,'LA90.0Y','Other specified capillary malformations','Y','2025-10-23 00:00:00'),(94471,11,'2E65.Y','Other specified carcinoma in situ of breast','Y','2025-10-23 00:00:00'),(94472,11,'2E66.Y','Other specified carcinoma in situ of cervix uteri','Y','2025-10-23 00:00:00'),(94473,11,'2E64.Y','Other specified carcinoma in situ of skin','Y','2025-10-23 00:00:00'),(94474,11,'2E67.2Y','Other specified carcinoma in situ of vagina','Y','2025-10-23 00:00:00'),(94475,11,'2C73.0Y','Other specified carcinomas of ovary','Y','2025-10-23 00:00:00'),(94476,11,'BC9Y','Other specified cardiac arrhythmia','Y','2025-10-23 00:00:00'),(94477,11,'BC65.Y','Other specified cardiac arrhythmia associated with genetic disorder','Y','2025-10-23 00:00:00'),(94478,11,'BC43.Y','Other specified cardiomyopathy','Y','2025-10-23 00:00:00'),(94479,11,'PK91.2Y','Other specified cardiovascular devices associated with injury or harm, prosthetic or other implants, materials or accessory devices','Y','2025-10-23 00:00:00'),(94480,11,'PK91.1Y','Other specified cardiovascular devices associated with injury or harm, therapeutic, nonsurgical or rehabilitative devices','Y','2025-10-23 00:00:00'),(94481,11,'PK91.Y','Other specified cardiovascular devices, implants or grafts associated with injury or harm','Y','2025-10-23 00:00:00'),(94482,11,'KB4Y','Other specified cardiovascular disorders present in the perinatal or neonatal period','Y','2025-10-23 00:00:00'),(94483,11,'QD01.Y','Other specified carrier of intestinal infectious agents','Y','2025-10-23 00:00:00'),(94484,11,'9B10.2Y','Other specified cataracts','Y','2025-10-23 00:00:00'),(94485,11,'7A40.Y','Other specified central sleep apnoeas','Y','2025-10-23 00:00:00'),(94486,11,'LA06.Y','Other specified cerebellar structural developmental anomalies','Y','2025-10-23 00:00:00'),(94487,11,'8B22.7Y','Other specified cerebral arteritis, not elsewhere classified','Y','2025-10-23 00:00:00'),(94488,11,'8B1Y','Other specified cerebral ischaemia','Y','2025-10-23 00:00:00'),(94489,11,'8D2Y','Other specified cerebral palsy','Y','2025-10-23 00:00:00'),(94490,11,'LA05.Y','Other specified cerebral structural developmental anomalies','Y','2025-10-23 00:00:00'),(94491,11,'8B22.Y','Other specified cerebrovascular disease','Y','2025-10-23 00:00:00'),(94492,11,'8B21.Y','Other specified cerebrovascular disease with no acute cerebral symptom','Y','2025-10-23 00:00:00'),(94493,11,'BD52.7Y','Other specified certain acquired abnormalities of aorta','Y','2025-10-23 00:00:00'),(94494,11,'FA37.Y','Other specified certain joint disorders, not elsewhere classified','Y','2025-10-23 00:00:00'),(94495,11,'1F53.Y','Other specified Chagas disease','Y','2025-10-23 00:00:00'),(94496,11,'9A02.0Y','Other specified chalazion','Y','2025-10-23 00:00:00'),(94497,11,'SA2Y','Other specified chest impediment disorders (TM1)','Y','2025-10-23 00:00:00'),(94498,11,'SE3Y','Other specified childhood and adolescence associated disorders (TM1)','Y','2025-10-23 00:00:00'),(94499,11,'LD56.Y','Other specified chimaera 46, XX, 46, XY','Y','2025-10-23 00:00:00'),(94500,11,'DC12.Y','Other specified cholecystitis','Y','2025-10-23 00:00:00'),(94501,11,'DC11.Y','Other specified cholelithiasis','Y','2025-10-23 00:00:00'),(94502,11,'FB82.0Y','Other specified chondromalacia','Y','2025-10-23 00:00:00'),(94503,11,'FB82.Y','Other specified chondropathies','Y','2025-10-23 00:00:00'),(94504,11,'8A01.Y','Other specified choreiform disorders','Y','2025-10-23 00:00:00'),(94505,11,'LD7Y','Other specified chromosomal anomalies, excluding gene mutations','Y','2025-10-23 00:00:00'),(94506,11,'BD4Y','Other specified chronic arterial occlusive disease','Y','2025-10-23 00:00:00'),(94507,11,'CA26.Y','Other specified chronic bronchiolitis','Y','2025-10-23 00:00:00'),(94508,11,'CA20.1Y','Other specified chronic bronchitis','Y','2025-10-23 00:00:00'),(94509,11,'MG30.1Y','Other specified chronic cancer related pain','Y','2025-10-23 00:00:00'),(94510,11,'EB51.Y','Other specified chronic cutaneous lupus erythematosus','Y','2025-10-23 00:00:00'),(94511,11,'CA0F.Y','Other specified chronic diseases of tonsils or adenoids','Y','2025-10-23 00:00:00'),(94512,11,'EJ2Y','Other specified chronic effects of ultraviolet radiation on the skin','Y','2025-10-23 00:00:00'),(94513,11,'1E51.0Y','Other specified chronic hepatitis B','Y','2025-10-23 00:00:00'),(94514,11,'FA33.4Y','Other specified chronic instability of knee','Y','2025-10-23 00:00:00'),(94515,11,'BA5Y','Other specified chronic ischaemic heart disease','Y','2025-10-23 00:00:00'),(94516,11,'BD90.2Y','Other specified chronic lymphadenitis','Y','2025-10-23 00:00:00'),(94517,11,'2A82.0Y','Other specified chronic lymphocytic leukaemia or small lymphocytic lymphoma','Y','2025-10-23 00:00:00'),(94518,11,'2A20.0Y','Other specified chronic myelogenous leukaemia, BCR-ABL1-positive','Y','2025-10-23 00:00:00'),(94519,11,'MG30.5Y','Other specified chronic neuropathic pain','Y','2025-10-23 00:00:00'),(94520,11,'MG30.Y','Other specified chronic pain','Y','2025-10-23 00:00:00'),(94521,11,'DC32.Y','Other specified chronic pancreatitis','Y','2025-10-23 00:00:00'),(94522,11,'MG30.2Y','Other specified chronic postsurgical or post traumatic pain','Y','2025-10-23 00:00:00'),(94523,11,'MG30.0Y','Other specified chronic primary pain','Y','2025-10-23 00:00:00'),(94524,11,'KB29.Y','Other specified chronic respiratory disease originating in the perinatal period','Y','2025-10-23 00:00:00'),(94525,11,'BC20.Y','Other specified chronic rheumatic heart disease','Y','2025-10-23 00:00:00'),(94526,11,'CA0A.Y','Other specified chronic rhinosinusitis','Y','2025-10-23 00:00:00'),(94527,11,'MG30.6Y','Other specified chronic secondary headache or orofacial pain','Y','2025-10-23 00:00:00'),(94528,11,'MG30.3Y','Other specified chronic secondary musculoskeletal pain','Y','2025-10-23 00:00:00'),(94529,11,'MG30.4Y','Other specified chronic secondary visceral pain','Y','2025-10-23 00:00:00'),(94530,11,'GB55.Y','Other specified chronic tubulo-interstitial nephritis','Y','2025-10-23 00:00:00'),(94531,11,'DD31.Y','Other specified chronic vascular disorders of intestine','Y','2025-10-23 00:00:00'),(94532,11,'AB32.Y','Other specified chronic vestibular syndrome','Y','2025-10-23 00:00:00'),(94533,11,'1E51.Y','Other specified chronic viral hepatitis','Y','2025-10-23 00:00:00'),(94534,11,'QA6Y','Other specified circumstances associated with a surgical or other medical device influencing the episode of care without injury or harm','Y','2025-10-23 00:00:00'),(94535,11,'QA5Y','Other specified circumstances associated with a surgical or other medical procedure influencing the episode of care, without injury or harm','Y','2025-10-23 00:00:00'),(94536,11,'QA7Y','Other specified circumstances associated with exposure to a drug, medicament or biological substance influencing the episode of care without injury or harm','Y','2025-10-23 00:00:00'),(94537,11,'QA8Y','Other specified circumstances associated with other aspects of care influencing the episode of care without injury or harm','Y','2025-10-23 00:00:00'),(94538,11,'LA4Y','Other specified clefts of lip, alveolus or palate','Y','2025-10-23 00:00:00'),(94539,11,'MA1Y','Other specified clinical findings in blood, blood-forming organs, or the immune system','Y','2025-10-23 00:00:00'),(94540,11,'MB70.Y','Other specified clinical findings in cerebrospinal fluid','Y','2025-10-23 00:00:00'),(94541,11,'ME20.Y','Other specified clinical findings in specimens from digestive organs or abdominal cavity','Y','2025-10-23 00:00:00'),(94542,11,'MF6Y','Other specified clinical findings in specimens from female genital organs','Y','2025-10-23 00:00:00'),(94543,11,'MF7Y','Other specified clinical findings in specimens from male genital organs','Y','2025-10-23 00:00:00'),(94544,11,'MG6Y','Other specified clinical findings in specimens from other specified organs, systems and tissues','Y','2025-10-23 00:00:00'),(94545,11,'MD40.Y','Other specified clinical findings in specimens from respiratory organs and thorax','Y','2025-10-23 00:00:00'),(94546,11,'MF8Y','Other specified clinical findings in specimens from the urinary system','Y','2025-10-23 00:00:00'),(94547,11,'ME2Y','Other specified clinical findings in the digestive system','Y','2025-10-23 00:00:00'),(94548,11,'ME9Y','Other specified clinical findings in the musculoskeletal system','Y','2025-10-23 00:00:00'),(94549,11,'MB7Y','Other specified clinical findings in the nervous system','Y','2025-10-23 00:00:00'),(94550,11,'MD4Y','Other specified clinical findings in the respiratory system','Y','2025-10-23 00:00:00'),(94551,11,'MA12.Y','Other specified clinical findings of drugs, medicaments and biological substances in blood, blood-forming organs, or the immune system','Y','2025-10-23 00:00:00'),(94552,11,'MC20.Y','Other specified clinical findings of the visual system','Y','2025-10-23 00:00:00'),(94553,11,'JA66.Y','Other specified clinical findings on antenatal screening of mother','Y','2025-10-23 00:00:00'),(94554,11,'MB71.Y','Other specified clinical findings on diagnostic imaging of central nervous system','Y','2025-10-23 00:00:00'),(94555,11,'ME92.Y','Other specified clinical findings on diagnostic imaging of other parts of musculoskeletal system','Y','2025-10-23 00:00:00'),(94556,11,'MF9Y','Other specified clinical findings on examination of urine, without diagnosis','Y','2025-10-23 00:00:00'),(94557,11,'ME24.Y','Other specified clinical manifestations of the digestive system','Y','2025-10-23 00:00:00'),(94558,11,'XE8H8','Other specified clothes fastener','Y','2025-10-23 00:00:00'),(94559,11,'3B6Y','Other specified coagulation defects, purpura or other haemorrhagic or related conditions','Y','2025-10-23 00:00:00'),(94560,11,'DB33.4Y','Other specified colitis or proctitis due to external causes','Y','2025-10-23 00:00:00'),(94561,11,'DA23.Y','Other specified columnar metaplastic epithelium of the oesophagus','Y','2025-10-23 00:00:00'),(94562,11,'4A01.1Y','Other specified combined immunodeficiencies','Y','2025-10-23 00:00:00'),(94563,11,'2F20.0Y','Other specified common acquired melanocytic naevus','Y','2025-10-23 00:00:00'),(94564,11,'LA85.4Y','Other specified common arterial trunk','Y','2025-10-23 00:00:00'),(94565,11,'LA87.4Y','Other specified common atrioventricular junction with atrioventricular septal defect','Y','2025-10-23 00:00:00'),(94566,11,'1E80.Y','Other specified common warts','Y','2025-10-23 00:00:00'),(94567,11,'8D64.0Y','Other specified communicating hydrocephalus','Y','2025-10-23 00:00:00'),(94568,11,'VW0Y','Other specified communication','Y','2025-10-23 00:00:00'),(94569,11,'VW6Y','Other specified community, social and civic life','Y','2025-10-23 00:00:00'),(94570,11,'PL01.Y','Other specified complementary or traditional medicines associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(94571,11,'LD43.Y','Other specified complete monosomies of the autosomes','Y','2025-10-23 00:00:00'),(94572,11,'LD40.Y','Other specified complete trisomies of the autosomes','Y','2025-10-23 00:00:00'),(94573,11,'4A85.Y','Other specified complex allergic or hypersensitivity conditions','Y','2025-10-23 00:00:00'),(94574,11,'NC92.7Y','Other specified complex fractures of ankle','Y','2025-10-23 00:00:00'),(94575,11,'NA0A.0Y','Other specified complex wounds to the head','Y','2025-10-23 00:00:00'),(94576,11,'GA32.Y','Other specified complications associated with medically assisted reproduction','Y','2025-10-23 00:00:00'),(94577,11,'JA05.Y','Other specified complications following abortion, ectopic or molar pregnancy','Y','2025-10-23 00:00:00'),(94578,11,'JB0C.Y','Other specified complications of anaesthesia during labour or delivery','Y','2025-10-23 00:00:00'),(94579,11,'JA67.Y','Other specified complications of anaesthesia during pregnancy','Y','2025-10-23 00:00:00'),(94580,11,'JB43.Y','Other specified complications of anaesthesia during the puerperium','Y','2025-10-23 00:00:00'),(94581,11,'KD39.Y','Other specified complications of intrauterine procedures, not elsewhere classified','Y','2025-10-23 00:00:00'),(94582,11,'JB0Y','Other specified complications of labour or delivery','Y','2025-10-23 00:00:00'),(94583,11,'JB0D.Y','Other specified complications of labour or delivery, not elsewhere classified','Y','2025-10-23 00:00:00'),(94584,11,'JB44.Y','Other specified complications of the puerperium','Y','2025-10-23 00:00:00'),(94585,11,'8A80.3Y','Other specified complications related to migraine','Y','2025-10-23 00:00:00'),(94586,11,'QD3Y','Other specified concern about body appearance','Y','2025-10-23 00:00:00'),(94587,11,'NA07.0Y','Other specified concussion','Y','2025-10-23 00:00:00'),(94588,11,'FB1Y','Other specified conditions associated with the spine','Y','2025-10-23 00:00:00'),(94589,11,'KC20.Y','Other specified conditions involving the umbilical cord','Y','2025-10-23 00:00:00'),(94590,11,'KC41.Y','Other specified conditions of integument specific to fetus and newborn','Y','2025-10-23 00:00:00'),(94591,11,'HA8Y','Other specified conditions related to sexual health','Y','2025-10-23 00:00:00'),(94592,11,'LD90.Y','Other specified conditions with disorders of intellectual development as a relevant clinical feature','Y','2025-10-23 00:00:00'),(94593,11,'6C91.1Y','Other specified conduct-dissocial disorder, adolescent onset','Y','2025-10-23 00:00:00'),(94594,11,'BC63.Y','Other specified conduction disorders','Y','2025-10-23 00:00:00'),(94595,11,'LA88.Y','Other specified congenital anomaly of a ventricle or the ventricular septum','Y','2025-10-23 00:00:00'),(94596,11,'LA8A.Y','Other specified congenital anomaly of a ventriculo-arterial valve or adjacent regions','Y','2025-10-23 00:00:00'),(94597,11,'LA85.Y','Other specified congenital anomaly of an atrioventricular or ventriculo-arterial connection','Y','2025-10-23 00:00:00'),(94598,11,'LA87.Y','Other specified congenital anomaly of an atrioventricular valve or atrioventricular septum','Y','2025-10-23 00:00:00'),(94599,11,'LA8B.2Y','Other specified congenital anomaly of aorta or its branches','Y','2025-10-23 00:00:00'),(94600,11,'LA8A.2Y','Other specified congenital anomaly of aortic valve','Y','2025-10-23 00:00:00'),(94601,11,'LA8E.Y','Other specified congenital anomaly of atrial septum','Y','2025-10-23 00:00:00'),(94602,11,'LA8C.Y','Other specified congenital anomaly of coronary artery','Y','2025-10-23 00:00:00'),(94603,11,'LA8B.Y','Other specified congenital anomaly of great arteries including arterial duct','Y','2025-10-23 00:00:00'),(94604,11,'LA8G.Y','Other specified congenital anomaly of left atrium','Y','2025-10-23 00:00:00'),(94605,11,'LA86.Y','Other specified congenital anomaly of mediastinal vein','Y','2025-10-23 00:00:00'),(94606,11,'LA87.1Y','Other specified congenital anomaly of mitral valve','Y','2025-10-23 00:00:00'),(94607,11,'LA8A.0Y','Other specified congenital anomaly of pulmonary valve','Y','2025-10-23 00:00:00'),(94608,11,'LA87.0Y','Other specified congenital anomaly of tricuspid valve','Y','2025-10-23 00:00:00'),(94609,11,'LB96.Y','Other specified congenital bowing of long bones','Y','2025-10-23 00:00:00'),(94610,11,'LB98.Y','Other specified congenital deformities of feet','Y','2025-10-23 00:00:00'),(94611,11,'LB80.Y','Other specified congenital deformities of fingers','Y','2025-10-23 00:00:00'),(94612,11,'LB81.Y','Other specified congenital deformities of toes','Y','2025-10-23 00:00:00'),(94613,11,'5C54.Y','Other specified congenital disorders of glycosylation and protein modification','Y','2025-10-23 00:00:00'),(94614,11,'3A1Y','Other specified congenital haemolytic anaemia','Y','2025-10-23 00:00:00'),(94615,11,'AB50.Y','Other specified congenital hearing impairment','Y','2025-10-23 00:00:00'),(94616,11,'LA04.Y','Other specified congenital hydrocephalus','Y','2025-10-23 00:00:00'),(94617,11,'5A00.0Y','Other specified congenital hypothyroidism','Y','2025-10-23 00:00:00'),(94618,11,'LB93.Y','Other specified congenital knee dislocation','Y','2025-10-23 00:00:00'),(94619,11,'LA13.7Y','Other specified congenital malformation of optic disc','Y','2025-10-23 00:00:00'),(94620,11,'9A00.Y','Other specified congenital malposition of eyelids','Y','2025-10-23 00:00:00'),(94621,11,'2F20.2Y','Other specified congenital melanocytic naevus','Y','2025-10-23 00:00:00'),(94622,11,'8C72.Y','Other specified congenital myopathies','Y','2025-10-23 00:00:00'),(94623,11,'8C72.0Y','Other specified congenital myopathy with structural abnormalities','Y','2025-10-23 00:00:00'),(94624,11,'3A80.Y','Other specified congenital polycythaemia','Y','2025-10-23 00:00:00'),(94625,11,'LA8A.1Y','Other specified congenital pulmonary atresia','Y','2025-10-23 00:00:00'),(94626,11,'3A72.0Y','Other specified congenital sideroblastic anaemias','Y','2025-10-23 00:00:00'),(94627,11,'LB98.2Y','Other specified congenital valgus deformities of feet','Y','2025-10-23 00:00:00'),(94628,11,'LB98.0Y','Other specified congenital varus deformities of feet','Y','2025-10-23 00:00:00'),(94629,11,'LD26.6Y','Other specified congenital vascular bone syndromes','Y','2025-10-23 00:00:00'),(94630,11,'9A61.4Y','Other specified conjunctival vascular disorders','Y','2025-10-23 00:00:00'),(94631,11,'9A60.Y','Other specified conjunctivitis','Y','2025-10-23 00:00:00'),(94632,11,'4B01.0Y','Other specified constitutional disorders of neutrophil function','Y','2025-10-23 00:00:00'),(94633,11,'QC2Y','Other specified contact with health services associated with the health of others','Y','2025-10-23 00:00:00'),(94634,11,'QA21.Y','Other specified contact with health services for contraceptive management','Y','2025-10-23 00:00:00'),(94635,11,'QA30.Y','Other specified contact with health services for medically assisted reproduction','Y','2025-10-23 00:00:00'),(94636,11,'QB9Y','Other specified contact with health services for nonsurgical interventions not involving devices','Y','2025-10-23 00:00:00'),(94637,11,'QB80.Y','Other specified contact with health services for prophylactic surgery','Y','2025-10-23 00:00:00'),(94638,11,'QA4Y','Other specified contact with health services for reasons associated with reproduction','Y','2025-10-23 00:00:00'),(94639,11,'QC0Y','Other specified contact with health services related to immunizations or certain other prophylactic measures','Y','2025-10-23 00:00:00'),(94640,11,'QC90.0Y','Other specified contact with or exposure to intestinal infectious diseases','Y','2025-10-23 00:00:00'),(94641,11,'XE5QX','Other specified context of assault','Y','2025-10-23 00:00:00'),(94642,11,'QB7Y','Other specified convalescence','Y','2025-10-23 00:00:00'),(94643,11,'9A78.5Y','Other specified corneal deformities','Y','2025-10-23 00:00:00'),(94644,11,'9A78.2Y','Other specified corneal oedema','Y','2025-10-23 00:00:00'),(94645,11,'9A77.Y','Other specified corneal scars or opacities','Y','2025-10-23 00:00:00'),(94646,11,'BA85.Y','Other specified coronary vasospastic disease','Y','2025-10-23 00:00:00'),(94647,11,'SA7Y','Other specified cough disorders (TM1)','Y','2025-10-23 00:00:00'),(94648,11,'QA15.Y','Other specified counselling related to sexuality','Y','2025-10-23 00:00:00'),(94649,11,'LB70.0Y','Other specified craniosynostosis','Y','2025-10-23 00:00:00'),(94650,11,'8E02.Y','Other specified Creutzfeldt-Jakob disease','Y','2025-10-23 00:00:00'),(94651,11,'NA08.Y','Other specified crushing injury of head','Y','2025-10-23 00:00:00'),(94652,11,'NB33.Y','Other specified crushing injury of thorax or traumatic amputation of part of thorax','Y','2025-10-23 00:00:00'),(94653,11,'1F27.Y','Other specified cryptococcosis','Y','2025-10-23 00:00:00'),(94654,11,'LB52.Y','Other specified cryptorchidism','Y','2025-10-23 00:00:00'),(94655,11,'FA26.Y','Other specified crystal arthropathies','Y','2025-10-23 00:00:00'),(94656,11,'BA60.Y','Other specified current complications following acute myocardial infarction','Y','2025-10-23 00:00:00'),(94657,11,'5A70.Y','Other specified Cushing syndrome','Y','2025-10-23 00:00:00'),(94658,11,'LC50.Y','Other specified cutaneous capillary vascular malformation','Y','2025-10-23 00:00:00'),(94659,11,'EK70.Y','Other specified cutaneous cysts','Y','2025-10-23 00:00:00'),(94660,11,'EK50.0Y','Other specified cutaneous insect bite reactions','Y','2025-10-23 00:00:00'),(94661,11,'EL3Y','Other specified cutaneous markers of internal disorders','Y','2025-10-23 00:00:00'),(94662,11,'EL1Y','Other specified cutaneous markers of internal malignancy','Y','2025-10-23 00:00:00'),(94663,11,'2A21.1Y','Other specified cutaneous mastocytosis','Y','2025-10-23 00:00:00'),(94664,11,'DC30.Y','Other specified cystic diseases of the pancreas','Y','2025-10-23 00:00:00'),(94665,11,'GB8Y','Other specified cystic or dysplastic kidney disease','Y','2025-10-23 00:00:00'),(94666,11,'1F70.Y','Other specified cysticercosis','Y','2025-10-23 00:00:00'),(94667,11,'GC00.Y','Other specified cystitis','Y','2025-10-23 00:00:00'),(94668,11,'1A33.Y','Other specified cystoisosporiasis','Y','2025-10-23 00:00:00'),(94669,11,'DA05.Y','Other specified cysts of oral or facial-neck region','Y','2025-10-23 00:00:00'),(94670,11,'MA16.Y','Other specified cytological findings in blood, blood-forming organs, or the immune system','Y','2025-10-23 00:00:00'),(94671,11,'1D82.Y','Other specified cytomegaloviral disease','Y','2025-10-23 00:00:00'),(94672,11,'SC8Y','Other specified deafness disorders (TM1)','Y','2025-10-23 00:00:00'),(94673,11,'BD71.Y','Other specified deep vein thrombosis','Y','2025-10-23 00:00:00'),(94674,11,'4A00.1Y','Other specified defects in the complement system','Y','2025-10-23 00:00:00'),(94675,11,'SG8Y','Other specified defense phase patterns (TM1)','Y','2025-10-23 00:00:00'),(94676,11,'9A90.Y','Other specified degeneration of iris or ciliary body','Y','2025-10-23 00:00:00'),(94677,11,'9B78.3Y','Other specified degeneration of macula or posterior pole','Y','2025-10-23 00:00:00'),(94678,11,'FA8Y','Other specified degenerative condition of spine','Y','2025-10-23 00:00:00'),(94679,11,'8B44.Y','Other specified degenerative myelopathic disorders','Y','2025-10-23 00:00:00'),(94680,11,'LD44.1Y','Other specified deletions of chromosome 1','Y','2025-10-23 00:00:00'),(94681,11,'LD44.AY','Other specified deletions of chromosome 10','Y','2025-10-23 00:00:00'),(94682,11,'LD44.BY','Other specified deletions of chromosome 11','Y','2025-10-23 00:00:00'),(94683,11,'LD44.CY','Other specified deletions of chromosome 12','Y','2025-10-23 00:00:00'),(94684,11,'LD44.GY','Other specified deletions of chromosome 16','Y','2025-10-23 00:00:00'),(94685,11,'LD44.HY','Other specified deletions of chromosome 17','Y','2025-10-23 00:00:00'),(94686,11,'LD44.JY','Other specified deletions of chromosome 18','Y','2025-10-23 00:00:00'),(94687,11,'LD44.KY','Other specified deletions of chromosome 19','Y','2025-10-23 00:00:00'),(94688,11,'LD44.2Y','Other specified deletions of chromosome 2','Y','2025-10-23 00:00:00'),(94689,11,'LD44.LY','Other specified deletions of chromosome 20','Y','2025-10-23 00:00:00'),(94690,11,'LD44.NY','Other specified deletions of chromosome 22','Y','2025-10-23 00:00:00'),(94691,11,'LD44.3Y','Other specified deletions of chromosome 3','Y','2025-10-23 00:00:00'),(94692,11,'LD44.4Y','Other specified deletions of chromosome 4','Y','2025-10-23 00:00:00'),(94693,11,'LD44.5Y','Other specified deletions of chromosome 5','Y','2025-10-23 00:00:00'),(94694,11,'LD44.6Y','Other specified deletions of chromosome 6','Y','2025-10-23 00:00:00'),(94695,11,'LD44.7Y','Other specified deletions of chromosome 7','Y','2025-10-23 00:00:00'),(94696,11,'LD44.8Y','Other specified deletions of chromosome 8','Y','2025-10-23 00:00:00'),(94697,11,'LD44.9Y','Other specified deletions of chromosome 9','Y','2025-10-23 00:00:00'),(94698,11,'LD44.Y','Other specified deletions of the autosomes','Y','2025-10-23 00:00:00'),(94699,11,'MB26.0Y','Other specified delusion','Y','2025-10-23 00:00:00'),(94700,11,'DA0E.Y','Other specified dentofacial anomalies','Y','2025-10-23 00:00:00'),(94701,11,'6A7Y','Other specified depressive disorders','Y','2025-10-23 00:00:00'),(94702,11,'EA85.2Y','Other specified dermatitis of hands','Y','2025-10-23 00:00:00'),(94703,11,'9A06.7Y','Other specified dermatitis or eczema of eyelids','Y','2025-10-23 00:00:00'),(94704,11,'1F28.Y','Other specified dermatophytosis','Y','2025-10-23 00:00:00'),(94705,11,'EF5Y','Other specified dermatoses attributable to hyperviscosity or microvascular occlusion','Y','2025-10-23 00:00:00'),(94706,11,'EE41.Y','Other specified dermatoses characterised by abnormal dermal elastin','Y','2025-10-23 00:00:00'),(94707,11,'EF7Y','Other specified dermatoses due to venous disease','Y','2025-10-23 00:00:00'),(94708,11,'GA4Y','Other specified dermatoses of female genitalia','Y','2025-10-23 00:00:00'),(94709,11,'EH40.Y','Other specified dermatoses of infancy','Y','2025-10-23 00:00:00'),(94710,11,'GA81.Y','Other specified dermatoses of male genitalia','Y','2025-10-23 00:00:00'),(94711,11,'EJ1Y','Other specified dermatoses provoked by heat or electricity','Y','2025-10-23 00:00:00'),(94712,11,'EJ6Y','Other specified dermatoses provoked by light or UV radiation','Y','2025-10-23 00:00:00'),(94713,11,'EJ0Y','Other specified dermatoses provoked or exacerbated by exposure to cold','Y','2025-10-23 00:00:00'),(94714,11,'EF9Y','Other specified dermatoses resulting from vascular insufficiency','Y','2025-10-23 00:00:00'),(94715,11,'BD50.2Y','Other specified descending aorta dissection and distal propagation','Y','2025-10-23 00:00:00'),(94716,11,'LD9Y','Other specified developmental anomalies','Y','2025-10-23 00:00:00'),(94717,11,'EC5Y','Other specified developmental anomalies affecting the skin','Y','2025-10-23 00:00:00'),(94718,11,'LC5Y','Other specified developmental anomalies of cutaneous vasculature','Y','2025-10-23 00:00:00'),(94719,11,'LC1Y','Other specified developmental anomalies of skin pigmentation','Y','2025-10-23 00:00:00'),(94720,11,'9C61.4Y','Other specified developmental glaucoma','Y','2025-10-23 00:00:00'),(94721,11,'LC0Y','Other specified developmental hamartomata of the epidermis and epidermal appendages','Y','2025-10-23 00:00:00'),(94722,11,'6A01.Y','Other specified developmental speech or language disorders','Y','2025-10-23 00:00:00'),(94723,11,'JA63.Y','Other specified diabetes mellitus in pregnancy','Y','2025-10-23 00:00:00'),(94724,11,'5A22.Y','Other specified diabetic acidosis','Y','2025-10-23 00:00:00'),(94725,11,'MF50.6Y','Other specified difficulties with micturition','Y','2025-10-23 00:00:00'),(94726,11,'NA07.3Y','Other specified diffuse brain injury','Y','2025-10-23 00:00:00'),(94727,11,'2A81.Y','Other specified diffuse large B-cell lymphomas','Y','2025-10-23 00:00:00'),(94728,11,'KB8Y','Other specified digestive system disorders of fetus or newborn','Y','2025-10-23 00:00:00'),(94729,11,'1C17.Y','Other specified diphtheria','Y','2025-10-23 00:00:00'),(94730,11,'LA85.0Y','Other specified discordant atrioventricular connections','Y','2025-10-23 00:00:00'),(94731,11,'1F7Y','Other specified diseases due to cestodes','Y','2025-10-23 00:00:00'),(94732,11,'1C2Y','Other specified diseases due to chlamydiae','Y','2025-10-23 00:00:00'),(94733,11,'1F6Y','Other specified diseases due to nematodes','Y','2025-10-23 00:00:00'),(94734,11,'1F8Y','Other specified diseases due to trematodes','Y','2025-10-23 00:00:00'),(94735,11,'DB7Y','Other specified diseases of anal canal','Y','2025-10-23 00:00:00'),(94736,11,'DB1Y','Other specified diseases of appendix','Y','2025-10-23 00:00:00'),(94737,11,'BD5Y','Other specified diseases of arteries or arterioles','Y','2025-10-23 00:00:00'),(94738,11,'GA03.Y','Other specified diseases of Bartholin gland','Y','2025-10-23 00:00:00'),(94739,11,'BA8Y','Other specified diseases of coronary artery','Y','2025-10-23 00:00:00'),(94740,11,'DA5Y','Other specified diseases of duodenum','Y','2025-10-23 00:00:00'),(94741,11,'DC1Y','Other specified diseases of gallbladder or biliary tract','Y','2025-10-23 00:00:00'),(94742,11,'DA08.Y','Other specified diseases of hard tissues of teeth','Y','2025-10-23 00:00:00'),(94743,11,'4A01.2Y','Other specified diseases of immune dysregulation','Y','2025-10-23 00:00:00'),(94744,11,'AB3Y','Other specified diseases of inner ear','Y','2025-10-23 00:00:00'),(94745,11,'DB3Y','Other specified diseases of large intestine','Y','2025-10-23 00:00:00'),(94746,11,'CB22.Y','Other specified diseases of mediastinum, not elsewhere classified','Y','2025-10-23 00:00:00'),(94747,11,'AB1Y','Other specified diseases of middle ear or mastoid','Y','2025-10-23 00:00:00'),(94748,11,'8D0Y','Other specified diseases of neuromuscular junction or muscle','Y','2025-10-23 00:00:00'),(94749,11,'DA2Y','Other specified diseases of oesophagus','Y','2025-10-23 00:00:00'),(94750,11,'DC3Y','Other specified diseases of pancreas','Y','2025-10-23 00:00:00'),(94751,11,'DA09.Y','Other specified diseases of pulp or periapical tissues','Y','2025-10-23 00:00:00'),(94752,11,'DA04.Y','Other specified diseases of salivary glands','Y','2025-10-23 00:00:00'),(94753,11,'DA9Y','Other specified diseases of small intestine','Y','2025-10-23 00:00:00'),(94754,11,'DA4Y','Other specified diseases of stomach','Y','2025-10-23 00:00:00'),(94755,11,'3C0Y','Other specified diseases of the blood or blood-forming organs','Y','2025-10-23 00:00:00'),(94756,11,'BE2Y','Other specified diseases of the circulatory system','Y','2025-10-23 00:00:00'),(94757,11,'DE2Y','Other specified diseases of the digestive system','Y','2025-10-23 00:00:00'),(94758,11,'AC0Y','Other specified diseases of the ear or mastoid process','Y','2025-10-23 00:00:00'),(94759,11,'GA6Y','Other specified diseases of the female genital system','Y','2025-10-23 00:00:00'),(94760,11,'GC8Y','Other specified diseases of the genitourinary system','Y','2025-10-23 00:00:00'),(94761,11,'4B4Y','Other specified diseases of the immune system','Y','2025-10-23 00:00:00'),(94762,11,'GB0Y','Other specified diseases of the male genital system','Y','2025-10-23 00:00:00'),(94763,11,'FC0Y','Other specified diseases of the musculoskeletal system or connective tissue','Y','2025-10-23 00:00:00'),(94764,11,'BC4Y','Other specified diseases of the myocardium or cardiac chambers','Y','2025-10-23 00:00:00'),(94765,11,'8E7Y','Other specified diseases of the nervous system','Y','2025-10-23 00:00:00'),(94766,11,'CB40.Y','Other specified diseases of the respiratory system','Y','2025-10-23 00:00:00'),(94767,11,'EM0Y','Other specified diseases of the skin','Y','2025-10-23 00:00:00'),(94768,11,'9E1Y','Other specified diseases of the visual system','Y','2025-10-23 00:00:00'),(94769,11,'4B40.Y','Other specified diseases of thymus','Y','2025-10-23 00:00:00'),(94770,11,'DA03.Y','Other specified diseases of tongue','Y','2025-10-23 00:00:00'),(94771,11,'BD7Y','Other specified diseases of veins','Y','2025-10-23 00:00:00'),(94772,11,'CA0H.Y','Other specified diseases of vocal cords or larynx, not elsewhere classified','Y','2025-10-23 00:00:00'),(94773,11,'DA0Y','Other specified diseases or disorders of orofacial complex','Y','2025-10-23 00:00:00'),(94774,11,'NC73.0Y','Other specified dislocation of hip','Y','2025-10-23 00:00:00'),(94775,11,'NC93.2Y','Other specified dislocation of knee','Y','2025-10-23 00:00:00'),(94776,11,'NC93.1Y','Other specified dislocation of patella','Y','2025-10-23 00:00:00'),(94777,11,'ND14.Y','Other specified dislocation or strain or sprain of joints or ligaments at ankle or foot level','Y','2025-10-23 00:00:00'),(94778,11,'NA23.Y','Other specified dislocation or strain or sprain of joints or ligaments at neck level','Y','2025-10-23 00:00:00'),(94779,11,'NC93.Y','Other specified dislocation or strain or sprain of joints or ligaments of knee','Y','2025-10-23 00:00:00'),(94780,11,'NB53.Y','Other specified dislocation or strain or sprain of joints or ligaments of lumbar spine or pelvis','Y','2025-10-23 00:00:00'),(94781,11,'NA83.Y','Other specified dislocation or strain or sprain of joints or ligaments of thorax','Y','2025-10-23 00:00:00'),(94782,11,'DA21.2Y','Other specified disorder of oesophageal peristalsis','Y','2025-10-23 00:00:00'),(94783,11,'9C40.Y','Other specified disorder of the optic nerve','Y','2025-10-23 00:00:00'),(94784,11,'FB86.Y','Other specified disorders associated with bone growth','Y','2025-10-23 00:00:00'),(94785,11,'8A04.Y','Other specified disorders associated with tremor','Y','2025-10-23 00:00:00'),(94786,11,'6C5Y','Other specified disorders due to addictive behaviours','Y','2025-10-23 00:00:00'),(94787,11,'6C4Y','Other specified disorders due to substance use','Y','2025-10-23 00:00:00'),(94788,11,'6C40.Y','Other specified disorders due to use of alcohol','Y','2025-10-23 00:00:00'),(94789,11,'6C48.Y','Other specified disorders due to use of caffeine','Y','2025-10-23 00:00:00'),(94790,11,'6C41.Y','Other specified disorders due to use of cannabis','Y','2025-10-23 00:00:00'),(94791,11,'6C45.Y','Other specified disorders due to use of cocaine','Y','2025-10-23 00:00:00'),(94792,11,'6C4D.Y','Other specified disorders due to use of dissociative drugs including ketamine and phencyclidine [PCP]','Y','2025-10-23 00:00:00'),(94793,11,'6C49.Y','Other specified disorders due to use of hallucinogens','Y','2025-10-23 00:00:00'),(94794,11,'6C4C.Y','Other specified disorders due to use of MDMA or related drugs, including MDA','Y','2025-10-23 00:00:00'),(94795,11,'6C4F.Y','Other specified disorders due to use of multiple specified psychoactive substances, including medications','Y','2025-10-23 00:00:00'),(94796,11,'6C4A.Y','Other specified disorders due to use of nicotine','Y','2025-10-23 00:00:00'),(94797,11,'6C4H.Y','Other specified disorders due to use of non-psychoactive substances','Y','2025-10-23 00:00:00'),(94798,11,'6C43.Y','Other specified disorders due to use of opioids','Y','2025-10-23 00:00:00'),(94799,11,'6C4E.Y','Other specified disorders due to use of other specified psychoactive substances, including medications','Y','2025-10-23 00:00:00'),(94800,11,'6C44.Y','Other specified disorders due to use of sedatives, hypnotics or anxiolytics','Y','2025-10-23 00:00:00'),(94801,11,'6C46.Y','Other specified disorders due to use of stimulants including amphetamines, methamphetamine or methcathinone','Y','2025-10-23 00:00:00'),(94802,11,'6C42.Y','Other specified disorders due to use of synthetic cannabinoids','Y','2025-10-23 00:00:00'),(94803,11,'6C47.Y','Other specified disorders due to use of synthetic cathinones','Y','2025-10-23 00:00:00'),(94804,11,'6C4G.Y','Other specified disorders due to use of unknown or unspecified psychoactive substances','Y','2025-10-23 00:00:00'),(94805,11,'6C4B.Y','Other specified disorders due to use of volatile inhalants','Y','2025-10-23 00:00:00'),(94806,11,'ED9Y','Other specified disorders involving the hair follicle','Y','2025-10-23 00:00:00'),(94807,11,'4B2Y','Other specified disorders involving the immune system','Y','2025-10-23 00:00:00'),(94808,11,'9D01.Y','Other specified disorders of accommodation','Y','2025-10-23 00:00:00'),(94809,11,'AB72.Y','Other specified disorders of acoustic nerve','Y','2025-10-23 00:00:00'),(94810,11,'5A76.Y','Other specified disorders of adrenal gland','Y','2025-10-23 00:00:00'),(94811,11,'5C60.Y','Other specified disorders of amino acid absorption or transport','Y','2025-10-23 00:00:00'),(94812,11,'JA88.Y','Other specified disorders of amniotic fluid and membranes','Y','2025-10-23 00:00:00'),(94813,11,'7B00.Y','Other specified disorders of arousal from non-REM sleep','Y','2025-10-23 00:00:00'),(94814,11,'8D8Y','Other specified disorders of autonomic nervous system','Y','2025-10-23 00:00:00'),(94815,11,'5C58.0Y','Other specified disorders of bilirubin metabolism or excretion','Y','2025-10-23 00:00:00'),(94816,11,'9C83.Y','Other specified disorders of binocular movement','Y','2025-10-23 00:00:00'),(94817,11,'5C59.0Y','Other specified disorders of biogenic amine metabolism','Y','2025-10-23 00:00:00'),(94818,11,'GC01.Y','Other specified disorders of bladder','Y','2025-10-23 00:00:00'),(94819,11,'6C2Y','Other specified disorders of bodily distress or bodily experience','Y','2025-10-23 00:00:00'),(94820,11,'FB80.Y','Other specified disorders of bone density and structure','Y','2025-10-23 00:00:00'),(94821,11,'5C50.DY','Other specified disorders of branched-chain amino acid metabolism','Y','2025-10-23 00:00:00'),(94822,11,'5C61.Y','Other specified disorders of carbohydrate absorption or transport','Y','2025-10-23 00:00:00'),(94823,11,'8D6Y','Other specified disorders of cerebrospinal fluid pressure or flow','Y','2025-10-23 00:00:00'),(94824,11,'9A6Y','Other specified disorders of conjunctiva','Y','2025-10-23 00:00:00'),(94825,11,'8E2Y','Other specified disorders of consciousness','Y','2025-10-23 00:00:00'),(94826,11,'5C64.0Y','Other specified disorders of copper metabolism','Y','2025-10-23 00:00:00'),(94827,11,'8B8Y','Other specified disorders of cranial nerves','Y','2025-10-23 00:00:00'),(94828,11,'EE7Y','Other specified disorders of cutaneous connective tissue','Y','2025-10-23 00:00:00'),(94829,11,'AB7Y','Other specified disorders of ear, not elsewhere classified','Y','2025-10-23 00:00:00'),(94830,11,'EE0Y','Other specified disorders of eccrine sweat glands or sweating','Y','2025-10-23 00:00:00'),(94831,11,'ED5Y','Other specified disorders of epidermal keratinisation','Y','2025-10-23 00:00:00'),(94832,11,'AB10.Y','Other specified disorders of Eustachian tube','Y','2025-10-23 00:00:00'),(94833,11,'9C82.Y','Other specified disorders of extraocular muscles','Y','2025-10-23 00:00:00'),(94834,11,'9A06.Y','Other specified disorders of eyelid','Y','2025-10-23 00:00:00'),(94835,11,'9A0Y','Other specified disorders of eyelid or peri-ocular area','Y','2025-10-23 00:00:00'),(94836,11,'8B88.Y','Other specified disorders of facial nerve','Y','2025-10-23 00:00:00'),(94837,11,'5C7Y','Other specified disorders of fluid, electrolyte or acid-base balance','Y','2025-10-23 00:00:00'),(94838,11,'5C51.5Y','Other specified disorders of fructose metabolism','Y','2025-10-23 00:00:00'),(94839,11,'5C51.4Y','Other specified disorders of galactose metabolism','Y','2025-10-23 00:00:00'),(94840,11,'DA0D.Y','Other specified disorders of gingival or edentulous alveolar ridge','Y','2025-10-23 00:00:00'),(94841,11,'5A4Y','Other specified disorders of glucose regulation or pancreatic internal secretion','Y','2025-10-23 00:00:00'),(94842,11,'5C50.7Y','Other specified disorders of glycine metabolism','Y','2025-10-23 00:00:00'),(94843,11,'5C51.2Y','Other specified disorders of glyoxylate metabolism','Y','2025-10-23 00:00:00'),(94844,11,'ED7Y','Other specified disorders of hair','Y','2025-10-23 00:00:00'),(94845,11,'5C50.2Y','Other specified disorders of histidine metabolism','Y','2025-10-23 00:00:00'),(94846,11,'1G60.Y','Other specified disorders of infectious origin not elsewhere classified','Y','2025-10-23 00:00:00'),(94847,11,'5C64.1Y','Other specified disorders of iron metabolism','Y','2025-10-23 00:00:00'),(94848,11,'GB90.Y','Other specified disorders of kidney or ureter','Y','2025-10-23 00:00:00'),(94849,11,'9A1Y','Other specified disorders of lacrimal apparatus','Y','2025-10-23 00:00:00'),(94850,11,'9A11.Y','Other specified disorders of lacrimal drainage system','Y','2025-10-23 00:00:00'),(94851,11,'9A10.Y','Other specified disorders of lacrimal gland','Y','2025-10-23 00:00:00'),(94852,11,'5C8Y','Other specified disorders of lipoprotein metabolism or lipidaemias','Y','2025-10-23 00:00:00'),(94853,11,'DA00.Y','Other specified disorders of lips','Y','2025-10-23 00:00:00'),(94854,11,'BD9Y','Other specified disorders of lymphatic vessels or lymph nodes','Y','2025-10-23 00:00:00'),(94855,11,'5C6Y','Other specified disorders of metabolite absorption or transport','Y','2025-10-23 00:00:00'),(94856,11,'5C53.3Y','Other specified disorders of mitochondrial membrane transport','Y','2025-10-23 00:00:00'),(94857,11,'5C53.2Y','Other specified disorders of mitochondrial oxidative phosphorylation','Y','2025-10-23 00:00:00'),(94858,11,'KB08.Y','Other specified disorders of muscle tone of newborn','Y','2025-10-23 00:00:00'),(94859,11,'FB32.Y','Other specified disorders of muscles','Y','2025-10-23 00:00:00'),(94860,11,'8C4Y','Other specified disorders of nerve root, plexus or peripheral nerves','Y','2025-10-23 00:00:00'),(94861,11,'4B00.Y','Other specified disorders of neutrophil number','Y','2025-10-23 00:00:00'),(94862,11,'KA2Y','Other specified disorders of newborn related to length of gestation or fetal growth','Y','2025-10-23 00:00:00'),(94863,11,'KA20.Y','Other specified disorders of newborn related to slow fetal growth or fetal malnutrition','Y','2025-10-23 00:00:00'),(94864,11,'DA01.Y','Other specified disorders of oral mucosa','Y','2025-10-23 00:00:00'),(94865,11,'9A2Y','Other specified disorders of orbit','Y','2025-10-23 00:00:00'),(94866,11,'8D89.Y','Other specified disorders of orthostatic tolerance','Y','2025-10-23 00:00:00'),(94867,11,'FA32.Y','Other specified disorders of patella','Y','2025-10-23 00:00:00'),(94868,11,'GB06.Y','Other specified disorders of penis','Y','2025-10-23 00:00:00'),(94869,11,'5C50.FY','Other specified disorders of peptide metabolism','Y','2025-10-23 00:00:00'),(94870,11,'DC51.Y','Other specified disorders of peritoneum or retroperitoneum','Y','2025-10-23 00:00:00'),(94871,11,'5C55.0Y','Other specified disorders of purine metabolism','Y','2025-10-23 00:00:00'),(94872,11,'5C53.0Y','Other specified disorders of pyruvate metabolism','Y','2025-10-23 00:00:00'),(94873,11,'9D00.Y','Other specified disorders of refraction','Y','2025-10-23 00:00:00'),(94874,11,'9D0Y','Other specified disorders of refraction or accommodation','Y','2025-10-23 00:00:00'),(94875,11,'9B5Y','Other specified disorders of sclera','Y','2025-10-23 00:00:00'),(94876,11,'ED6Y','Other specified disorders of skin pigmentation','Y','2025-10-23 00:00:00'),(94877,11,'EF0Y','Other specified disorders of subcutaneous fat','Y','2025-10-23 00:00:00'),(94878,11,'FB4Y','Other specified disorders of synovium or tendon','Y','2025-10-23 00:00:00'),(94879,11,'DA0A.Y','Other specified disorders of teeth and supporting structures','Y','2025-10-23 00:00:00'),(94880,11,'9B00.Y','Other specified disorders of the afferent pupillary system','Y','2025-10-23 00:00:00'),(94881,11,'9A8Y','Other specified disorders of the anterior chamber','Y','2025-10-23 00:00:00'),(94882,11,'9A9Y','Other specified disorders of the anterior uvea','Y','2025-10-23 00:00:00'),(94883,11,'9B6Y','Other specified disorders of the choroid','Y','2025-10-23 00:00:00'),(94884,11,'9A7Y','Other specified disorders of the cornea','Y','2025-10-23 00:00:00'),(94885,11,'9B01.Y','Other specified disorders of the efferent pupillary system','Y','2025-10-23 00:00:00'),(94886,11,'9C2Y','Other specified disorders of the eyeball affecting both anterior and posterior segments','Y','2025-10-23 00:00:00'),(94887,11,'9B3Y','Other specified disorders of the eyeball anterior segment','Y','2025-10-23 00:00:00'),(94888,11,'9C0Y','Other specified disorders of the eyeball posterior segment','Y','2025-10-23 00:00:00'),(94889,11,'8E40.Y','Other specified disorders of the meninges excluding infection','Y','2025-10-23 00:00:00'),(94890,11,'EE1Y','Other specified disorders of the nail or perionychium','Y','2025-10-23 00:00:00'),(94891,11,'8E4Y','Other specified disorders of the nervous system','Y','2025-10-23 00:00:00'),(94892,11,'9A4Y','Other specified disorders of the ocular adnexa or orbit','Y','2025-10-23 00:00:00'),(94893,11,'5A5Y','Other specified disorders of the parathyroids or parathyroid hormone system','Y','2025-10-23 00:00:00'),(94894,11,'9B7Y','Other specified disorders of the retina','Y','2025-10-23 00:00:00'),(94895,11,'5A0Y','Other specified disorders of the thyroid gland or thyroid hormones system','Y','2025-10-23 00:00:00'),(94896,11,'9C4Y','Other specified disorders of the visual pathways or centres','Y','2025-10-23 00:00:00'),(94897,11,'9B8Y','Other specified disorders of the vitreous body','Y','2025-10-23 00:00:00'),(94898,11,'DA07.Y','Other specified disorders of tooth development or eruption','Y','2025-10-23 00:00:00'),(94899,11,'5C50.1Y','Other specified disorders of tyrosine metabolism','Y','2025-10-23 00:00:00'),(94900,11,'5C50.AY','Other specified disorders of urea cycle metabolism','Y','2025-10-23 00:00:00'),(94901,11,'FA72.Y','Other specified disorders of vertebra','Y','2025-10-23 00:00:00'),(94902,11,'AB34.Y','Other specified disorders of vestibular function','Y','2025-10-23 00:00:00'),(94903,11,'8B81.Y','Other specified disorders of vestibulocochlear nerve','Y','2025-10-23 00:00:00'),(94904,11,'5C63.2Y','Other specified disorders of vitamin D metabolism or transport','Y','2025-10-23 00:00:00'),(94905,11,'5C63.Y','Other specified disorders of vitamin or non-protein cofactor absorption or transport','Y','2025-10-23 00:00:00'),(94906,11,'5C64.2Y','Other specified disorders of zinc metabolism','Y','2025-10-23 00:00:00'),(94907,11,'KD3Y','Other specified disorders originating in the perinatal period','Y','2025-10-23 00:00:00'),(94908,11,'6B4Y','Other specified disorders specifically associated with stress','Y','2025-10-23 00:00:00'),(94909,11,'AB5Y','Other specified disorders with hearing impairment','Y','2025-10-23 00:00:00'),(94910,11,'8A2Y','Other specified disorders with neurocognitive impairment as a major feature','Y','2025-10-23 00:00:00'),(94911,11,'9A20.Y','Other specified displacement of eyeball','Y','2025-10-23 00:00:00'),(94912,11,'6C9Y','Other specified disruptive behaviour or dissocial disorders','Y','2025-10-23 00:00:00'),(94913,11,'1C1G.1Y','Other specified disseminated Lyme borreliosis','Y','2025-10-23 00:00:00'),(94914,11,'6B6Y','Other specified dissociative disorders','Y','2025-10-23 00:00:00'),(94915,11,'MB24.6Y','Other specified disturbance of affect','Y','2025-10-23 00:00:00'),(94916,11,'ME65.Y','Other specified disturbance of skin sensation','Y','2025-10-23 00:00:00'),(94917,11,'DA07.6Y','Other specified disturbances in tooth eruption','Y','2025-10-23 00:00:00'),(94918,11,'EC9Y','Other specified disturbances of cutaneous sensation','Y','2025-10-23 00:00:00'),(94919,11,'DA01.0Y','Other specified disturbances of oral epithelium','Y','2025-10-23 00:00:00'),(94920,11,'KB63.3Y','Other specified disturbances of potassium balance of newborn','Y','2025-10-23 00:00:00'),(94921,11,'MB41.Y','Other specified disturbances of smell and taste','Y','2025-10-23 00:00:00'),(94922,11,'KB63.2Y','Other specified disturbances of sodium balance of newborn','Y','2025-10-23 00:00:00'),(94923,11,'KD1Y','Other specified disturbances of temperature regulation of newborn','Y','2025-10-23 00:00:00'),(94924,11,'DD00.0Y','Other specified diverticulitis of unspecified part of intestine with complication','Y','2025-10-23 00:00:00'),(94925,11,'MB48.Y','Other specified dizziness and giddiness','Y','2025-10-23 00:00:00'),(94926,11,'VD42.Y','Other specified doing housework [WHODAS]','Y','2025-10-23 00:00:00'),(94927,11,'VW3Y','Other specified domestic life','Y','2025-10-23 00:00:00'),(94928,11,'LA85.2Y','Other specified double outlet right ventricle','Y','2025-10-23 00:00:00'),(94929,11,'EH72.Y','Other specified drug-induced hair abnormalities','Y','2025-10-23 00:00:00'),(94930,11,'DB95.Y','Other specified drug-induced or toxic liver disease','Y','2025-10-23 00:00:00'),(94931,11,'DB95.2Y','Other specified drug-induced or toxic liver disease with cholestasis','Y','2025-10-23 00:00:00'),(94932,11,'DB95.1Y','Other specified drug-induced or toxic liver disease with chronic hepatitis','Y','2025-10-23 00:00:00'),(94933,11,'DB95.3Y','Other specified drug-induced or toxic liver disease with fatty liver','Y','2025-10-23 00:00:00'),(94934,11,'DA53.Y','Other specified duodenal polyp','Y','2025-10-23 00:00:00'),(94935,11,'DA63.Y','Other specified duodenal ulcer','Y','2025-10-23 00:00:00'),(94936,11,'DA51.Y','Other specified duodenitis','Y','2025-10-23 00:00:00'),(94937,11,'LD41.0Y','Other specified duplications of chromosome 1','Y','2025-10-23 00:00:00'),(94938,11,'LD41.9Y','Other specified duplications of chromosome 10','Y','2025-10-23 00:00:00'),(94939,11,'LD41.BY','Other specified duplications of chromosome 12','Y','2025-10-23 00:00:00'),(94940,11,'LD41.FY','Other specified duplications of chromosome 16','Y','2025-10-23 00:00:00'),(94941,11,'LD41.GY','Other specified duplications of chromosome 17','Y','2025-10-23 00:00:00'),(94942,11,'LD41.HY','Other specified duplications of chromosome 18','Y','2025-10-23 00:00:00'),(94943,11,'LD41.JY','Other specified duplications of chromosome 19','Y','2025-10-23 00:00:00'),(94944,11,'LD41.1Y','Other specified duplications of chromosome 2','Y','2025-10-23 00:00:00'),(94945,11,'LD41.KY','Other specified duplications of chromosome 20','Y','2025-10-23 00:00:00'),(94946,11,'LD41.2Y','Other specified duplications of chromosome 3','Y','2025-10-23 00:00:00'),(94947,11,'LD41.3Y','Other specified duplications of chromosome 4','Y','2025-10-23 00:00:00'),(94948,11,'LD41.4Y','Other specified duplications of chromosome 5','Y','2025-10-23 00:00:00'),(94949,11,'LD41.5Y','Other specified duplications of chromosome 6','Y','2025-10-23 00:00:00'),(94950,11,'LD41.6Y','Other specified duplications of chromosome 7','Y','2025-10-23 00:00:00'),(94951,11,'LD41.7Y','Other specified duplications of chromosome 8','Y','2025-10-23 00:00:00'),(94952,11,'LD41.8Y','Other specified duplications of chromosome 9','Y','2025-10-23 00:00:00'),(94953,11,'LD41.Y','Other specified duplications of the autosomes','Y','2025-10-23 00:00:00'),(94954,11,'MA80.2Y','Other specified dysarthria','Y','2025-10-23 00:00:00'),(94955,11,'NE82.Y','Other specified dysfunction or complication of pacemaker, pacemaker lead or implantable cardioverter defibrillator, not elsewhere classified','Y','2025-10-23 00:00:00'),(94956,11,'MA82.1Y','Other specified dysphonia','Y','2025-10-23 00:00:00'),(94957,11,'8A02.Y','Other specified dystonic disorders','Y','2025-10-23 00:00:00'),(94958,11,'1A61.Y','Other specified early syphilis','Y','2025-10-23 00:00:00'),(94959,11,'1D60.0Y','Other specified Ebola disease','Y','2025-10-23 00:00:00'),(94960,11,'1F73.Y','Other specified echinococcosis','Y','2025-10-23 00:00:00'),(94961,11,'1B73.Y','Other specified ecthyma','Y','2025-10-23 00:00:00'),(94962,11,'LD27.0Y','Other specified ectodermal dysplasia syndromes','Y','2025-10-23 00:00:00'),(94963,11,'JA01.Y','Other specified ectopic pregnancy','Y','2025-10-23 00:00:00'),(94964,11,'9A03.2Y','Other specified ectropion of eyelid','Y','2025-10-23 00:00:00'),(94965,11,'EA8Y','Other specified eczematous dermatosis','Y','2025-10-23 00:00:00'),(94966,11,'SB06.Y','Other specified edema disorders (TM1)','Y','2025-10-23 00:00:00'),(94967,11,'NF04.Y','Other specified effects of air pressure or water pressure','Y','2025-10-23 00:00:00'),(94968,11,'NF07.Y','Other specified effects of deprivation','Y','2025-10-23 00:00:00'),(94969,11,'NF0Y','Other specified effects of external causes','Y','2025-10-23 00:00:00'),(94970,11,'NF01.Y','Other specified effects of heat','Y','2025-10-23 00:00:00'),(94971,11,'NF03.Y','Other specified effects of reduced temperature','Y','2025-10-23 00:00:00'),(94972,11,'NF06.Y','Other specified effects of strenuous physical exercise','Y','2025-10-23 00:00:00'),(94973,11,'NF08.2Y','Other specified effects of vibration','Y','2025-10-23 00:00:00'),(94974,11,'FA36.Y','Other specified effusion of joint','Y','2025-10-23 00:00:00'),(94975,11,'HA03.Y','Other specified ejaculatory dysfunctions','Y','2025-10-23 00:00:00'),(94976,11,'MA18.0Y','Other specified elevated blood glucose level','Y','2025-10-23 00:00:00'),(94977,11,'MC80.0Y','Other specified elevated blood-pressure reading, without diagnosis of hypertension','Y','2025-10-23 00:00:00'),(94978,11,'PL11.2Y','Other specified embolisation, as mode of injury or harm','Y','2025-10-23 00:00:00'),(94979,11,'2A00.1Y','Other specified embryonal tumours of brain','Y','2025-10-23 00:00:00'),(94980,11,'1F2L.Y','Other specified emmonsiosis','Y','2025-10-23 00:00:00'),(94981,11,'CA21.Y','Other specified emphysema','Y','2025-10-23 00:00:00'),(94982,11,'LA05.6Y','Other specified encephaloclastic disorders','Y','2025-10-23 00:00:00'),(94983,11,'8D43.0Y','Other specified encephalopathy due to toxicity','Y','2025-10-23 00:00:00'),(94984,11,'5B3Y','Other specified endocrine diseases','Y','2025-10-23 00:00:00'),(94985,11,'5B1Y','Other specified endocrine disorders, not elsewhere classified','Y','2025-10-23 00:00:00'),(94986,11,'ED62.Y','Other specified endogenous non-melanin pigmentation','Y','2025-10-23 00:00:00'),(94987,11,'9C21.Y','Other specified endophthalmitis','Y','2025-10-23 00:00:00'),(94988,11,'FB54.Y','Other specified enthesopathies of lower limb','Y','2025-10-23 00:00:00'),(94989,11,'9A03.1Y','Other specified entropion of eyelid','Y','2025-10-23 00:00:00'),(94990,11,'SE8Y','Other specified environmental factor patterns (TM1)','Y','2025-10-23 00:00:00'),(94991,11,'8A6Y','Other specified epilepsy or seizures','Y','2025-10-23 00:00:00'),(94992,11,'8A62.Y','Other specified epileptic encephalopathies','Y','2025-10-23 00:00:00'),(94993,11,'6A20.Y','Other specified episode of schizophrenia','Y','2025-10-23 00:00:00'),(94994,11,'AB31.Y','Other specified episodic vestibular syndrome','Y','2025-10-23 00:00:00'),(94995,11,'EB12.Y','Other specified erythema multiforme','Y','2025-10-23 00:00:00'),(94996,11,'SF2Y','Other specified essence patterns (TM1)','Y','2025-10-23 00:00:00'),(94997,11,'BA00.Y','Other specified essential hypertension','Y','2025-10-23 00:00:00'),(94998,11,'QA00.6Y','Other specified examination of eyes or vision','Y','2025-10-23 00:00:00'),(94999,11,'QA01.Y','Other specified examination or encounter for administrative purposes','Y','2025-10-23 00:00:00'),(95000,11,'QA04.Y','Other specified examination or observation for reasons other than suspected diseases or conditions or administrative purposes','Y','2025-10-23 00:00:00'),(95001,11,'QA04.5Y','Other specified examination or observation for suspected maltreatment','Y','2025-10-23 00:00:00'),(95002,11,'JA60.Y','Other specified excessive vomiting in pregnancy','Y','2025-10-23 00:00:00'),(95003,11,'MB26.1Y','Other specified experiences of influence, passivity, and control','Y','2025-10-23 00:00:00'),(95004,11,'PH75.Y','Other specified exposure to explosion with undetermined intent','Y','2025-10-23 00:00:00'),(95005,11,'PL2Y','Other specified external causes of morbidity or mortality','Y','2025-10-23 00:00:00'),(95006,11,'SE2Y','Other specified external contraction disorders (TM1)','Y','2025-10-23 00:00:00'),(95007,11,'SG3Y','Other specified extra Meridian Patterns (TM1)','Y','2025-10-23 00:00:00'),(95008,11,'1F25.1Y','Other specified extrathoracic coccidioidomycosis','Y','2025-10-23 00:00:00'),(95009,11,'SC9Y','Other specified eye, ear, nose and throat system disorders (TM1)','Y','2025-10-23 00:00:00'),(95010,11,'9C22.Y','Other specified eyeball deformity','Y','2025-10-23 00:00:00'),(95011,11,'NA06.0Y','Other specified eyelid trauma','Y','2025-10-23 00:00:00'),(95012,11,'QF4Y','Other specified factors influencing health status or contact with health services','Y','2025-10-23 00:00:00'),(95013,11,'QB1Y','Other specified factors related to medical facilities and other health care','Y','2025-10-23 00:00:00'),(95014,11,'ME07.Y','Other specified faecal incontinence','Y','2025-10-23 00:00:00'),(95015,11,'QC64.Y','Other specified family history of endocrine, nutritional or metabolic diseases','Y','2025-10-23 00:00:00'),(95016,11,'QC61.Y','Other specified family history of malignant neoplasm','Y','2025-10-23 00:00:00'),(95017,11,'MG24.0Y','Other specified fear of cancer','Y','2025-10-23 00:00:00'),(95018,11,'8A63.0Y','Other specified febrile seizures','Y','2025-10-23 00:00:00'),(95019,11,'6B8Y','Other specified feeding or eating disorders','Y','2025-10-23 00:00:00'),(95020,11,'KD32.Y','Other specified feeding problems of newborn','Y','2025-10-23 00:00:00'),(95021,11,'GA05.Y','Other specified female pelvic inflammatory diseases','Y','2025-10-23 00:00:00'),(95022,11,'GA34.Y','Other specified female pelvic pain associated with genital organs or menstrual cycle','Y','2025-10-23 00:00:00'),(95023,11,'SC4Y','Other specified female reproductive system disorders (TM1) (including childbirth)','Y','2025-10-23 00:00:00'),(95024,11,'KA80.Y','Other specified fetal blood loss','Y','2025-10-23 00:00:00'),(95025,11,'KA03.2Y','Other specified fetus or newborn affected by abnormalities of umbilical cord length','Y','2025-10-23 00:00:00'),(95026,11,'KA00.6Y','Other specified fetus or newborn affected by maternal nutritional disorders','Y','2025-10-23 00:00:00'),(95027,11,'FB51.Y','Other specified fibroblastic disorders','Y','2025-10-23 00:00:00'),(95028,11,'2B53.Y','Other specified fibroblastic or myofibroblastic tumour, primary site','Y','2025-10-23 00:00:00'),(95029,11,'EE6Y','Other specified fibromatous disorders of skin and soft tissue','Y','2025-10-23 00:00:00'),(95030,11,'1F66.Y','Other specified filariasis','Y','2025-10-23 00:00:00'),(95031,11,'1D60.Y','Other specified filovirus disease','Y','2025-10-23 00:00:00'),(95032,11,'MG52.Y','Other specified finding of bacteria, neither gram negative nor positive, resistant to antimicrobial drugs','Y','2025-10-23 00:00:00'),(95033,11,'MG50.Y','Other specified finding of gram negative bacteria resistant to antimicrobial drugs','Y','2025-10-23 00:00:00'),(95034,11,'MG51.Y','Other specified finding of gram positive bacteria resistant to antimicrobial drugs','Y','2025-10-23 00:00:00'),(95035,11,'MG55.Y','Other specified finding of parasite resistant to antimicrobial drugs','Y','2025-10-23 00:00:00'),(95036,11,'MG53.Y','Other specified finding of virus resistant to antimicrobial drugs','Y','2025-10-23 00:00:00'),(95037,11,'PJ9Y','Other specified fires, conflagrations or hot substances during armed conflict','Y','2025-10-23 00:00:00'),(95038,11,'DB50.Y','Other specified fissure or fistula of anal regions','Y','2025-10-23 00:00:00'),(95039,11,'GC04.Y','Other specified fistula of the genitourinary tract','Y','2025-10-23 00:00:00'),(95040,11,'GC04.1Y','Other specified fistulae involving female genital tract','Y','2025-10-23 00:00:00'),(95041,11,'QB31.0Y','Other specified fitting or adjustment of external prosthetic device','Y','2025-10-23 00:00:00'),(95042,11,'SF1Y','Other specified fluid patterns (TM1)','Y','2025-10-23 00:00:00'),(95043,11,'8A06.2Y','Other specified focal myoclonus','Y','2025-10-23 00:00:00'),(95044,11,'8D8A.Y','Other specified focal or segmental autonomic disorders','Y','2025-10-23 00:00:00'),(95045,11,'3A02.Y','Other specified folate deficiency anaemia','Y','2025-10-23 00:00:00'),(95046,11,'2A80.Y','Other specified follicular lymphoma','Y','2025-10-23 00:00:00'),(95047,11,'QA07.Y','Other specified follow-up examination after treatment for conditions other than malignant neoplasms','Y','2025-10-23 00:00:00'),(95048,11,'4A85.2Y','Other specified food hypersensitivity','Y','2025-10-23 00:00:00'),(95049,11,'ND72.2Y','Other specified foreign body in pharynx','Y','2025-10-23 00:00:00'),(95050,11,'ND73.2Y','Other specified foreign body in stomach','Y','2025-10-23 00:00:00'),(95051,11,'1C10.Y','Other specified forms of actinomycosis','Y','2025-10-23 00:00:00'),(95052,11,'ED70.2Y','Other specified forms of alopecia areata','Y','2025-10-23 00:00:00'),(95053,11,'CA23.2','Other specified forms of asthma or bronchospasm','Y','2025-10-23 00:00:00'),(95054,11,'EA80.Y','Other specified forms of atopic eczema','Y','2025-10-23 00:00:00'),(95055,11,'GB06.0Y','Other specified forms of balanitis and balanoposthitis','Y','2025-10-23 00:00:00'),(95056,11,'EB90.1Y','Other specified forms of cutaneous mucinosis','Y','2025-10-23 00:00:00'),(95057,11,'EE01.Y','Other specified forms of hypohidrosis','Y','2025-10-23 00:00:00'),(95058,11,'EB01.Y','Other specified forms of inducible urticaria and angioedema','Y','2025-10-23 00:00:00'),(95059,11,'EF01.Y','Other specified forms of lipodystrophy and lipoatrophy','Y','2025-10-23 00:00:00'),(95060,11,'BD93.Y','Other specified forms of lymphoedema','Y','2025-10-23 00:00:00'),(95061,11,'EE02.Y','Other specified forms of miliaria','Y','2025-10-23 00:00:00'),(95062,11,'EB61.Y','Other specified forms of morphoea','Y','2025-10-23 00:00:00'),(95063,11,'1C1B.Y','Other specified forms of nocardiosis','Y','2025-10-23 00:00:00'),(95064,11,'EA90.Y','Other specified forms of psoriasis','Y','2025-10-23 00:00:00'),(95065,11,'SH9Y','Other specified four constitution medicine patterns (TM1)','Y','2025-10-23 00:00:00'),(95066,11,'SH3Y','Other specified four phase patterns (TM1)','Y','2025-10-23 00:00:00'),(95067,11,'NC12.0Y','Other specified fracture of clavicle','Y','2025-10-23 00:00:00'),(95068,11,'NC72.Y','Other specified fracture of femur','Y','2025-10-23 00:00:00'),(95069,11,'NC92.4Y','Other specified fracture of fibula alone','Y','2025-10-23 00:00:00'),(95070,11,'NC72.6Y','Other specified fracture of lower end of femur','Y','2025-10-23 00:00:00'),(95071,11,'NC12.4Y','Other specified fracture of lower end of humerus','Y','2025-10-23 00:00:00'),(95072,11,'NC32.5Y','Other specified fracture of lower end of radius','Y','2025-10-23 00:00:00'),(95073,11,'NB52.Y','Other specified fracture of lumbar spine or pelvis','Y','2025-10-23 00:00:00'),(95074,11,'NA02.7Y','Other specified fracture of mandible','Y','2025-10-23 00:00:00'),(95075,11,'NA02.4Y','Other specified fracture of maxilla','Y','2025-10-23 00:00:00'),(95076,11,'NC72.2Y','Other specified fracture of neck of femur','Y','2025-10-23 00:00:00'),(95077,11,'NC53.6Y','Other specified fracture of other finger bone','Y','2025-10-23 00:00:00'),(95078,11,'NA82.3Y','Other specified fracture of rib','Y','2025-10-23 00:00:00'),(95079,11,'NA82.Y','Other specified fracture of rib, sternum or thoracic spine','Y','2025-10-23 00:00:00'),(95080,11,'NC12.1Y','Other specified fracture of scapula','Y','2025-10-23 00:00:00'),(95081,11,'KA45.0Y','Other specified fracture of skull due to birth injury','Y','2025-10-23 00:00:00'),(95082,11,'NC92.1Y','Other specified fracture of upper end of tibia','Y','2025-10-23 00:00:00'),(95083,11,'DD92.Y','Other specified functional anorectal disorders','Y','2025-10-23 00:00:00'),(95084,11,'GC40.6Y','Other specified functional bladder disorders associated with pelvic organ prolapse','Y','2025-10-23 00:00:00'),(95085,11,'GC50.Y','Other specified functional bladder disorders, not otherwise specified','Y','2025-10-23 00:00:00'),(95086,11,'9B0Y','Other specified functional disorders of the pupil','Y','2025-10-23 00:00:00'),(95087,11,'DD9Y','Other specified functional gastrointestinal disorders','Y','2025-10-23 00:00:00'),(95088,11,'MB57.Y','Other specified functional level of injury of spinal cord','Y','2025-10-23 00:00:00'),(95089,11,'4A00.0Y','Other specified functional neutrophil defects','Y','2025-10-23 00:00:00'),(95090,11,'DD90.Y','Other specified functional oesophageal or gastroduodenal disorders','Y','2025-10-23 00:00:00'),(95091,11,'LA89.Y','Other specified functionally univentricular heart','Y','2025-10-23 00:00:00'),(95092,11,'VV3Y','Other specified functions of the cardiovascular, haematological, immunological and respiratory systems','Y','2025-10-23 00:00:00'),(95093,11,'VV4Y','Other specified functions of the digestive, metabolic and endocrine systems','Y','2025-10-23 00:00:00'),(95094,11,'VV7Y','Other specified functions of the skin and related structures','Y','2025-10-23 00:00:00'),(95095,11,'KA63.Y','Other specified fungal infection of fetus or newborn','Y','2025-10-23 00:00:00'),(95096,11,'1D01.1Y','Other specified fungal meningitis','Y','2025-10-23 00:00:00'),(95097,11,'CA40.2Y','Other specified fungal pneumonia','Y','2025-10-23 00:00:00'),(95098,11,'SB4Y','Other specified furuncle disorders (TM1)','Y','2025-10-23 00:00:00'),(95099,11,'LB30.6Y','Other specified fusion anomaly of kidneys','Y','2025-10-23 00:00:00'),(95100,11,'1F51.0Y','Other specified gambiense trypanosomiasis','Y','2025-10-23 00:00:00'),(95101,11,'DA44.Y','Other specified gastric polyp','Y','2025-10-23 00:00:00'),(95102,11,'DA60.Y','Other specified gastric ulcer','Y','2025-10-23 00:00:00'),(95103,11,'DA60.6Y','Other specified gastric ulcer due to external causes','Y','2025-10-23 00:00:00'),(95104,11,'DA42.Y','Other specified gastritis','Y','2025-10-23 00:00:00'),(95105,11,'DA42.7Y','Other specified gastritis of unknown aetiology with specific endoscopic or pathological features','Y','2025-10-23 00:00:00'),(95106,11,'DA41.Y','Other specified gastroduodenal motor or secretory disorders','Y','2025-10-23 00:00:00'),(95107,11,'PK93.1Y','Other specified gastroenterology or urology devices associated with injury or harm, therapeutic, nonsurgical or rehabilitative devices','Y','2025-10-23 00:00:00'),(95108,11,'PK93.Y','Other specified gastroenterology or urology devices, implants or grafts associated with injury or harm','Y','2025-10-23 00:00:00'),(95109,11,'QA00.Y','Other specified general examination or investigation of persons without complaint or reported diagnosis','Y','2025-10-23 00:00:00'),(95110,11,'PK94.Y','Other specified general hospital or personal use devices associated with injury or harm','Y','2025-10-23 00:00:00'),(95111,11,'PK9B.Y','Other specified general or plastic surgery devices, implants or grafts associated with injury or harm','Y','2025-10-23 00:00:00'),(95112,11,'MG4Y','Other specified general symptoms','Y','2025-10-23 00:00:00'),(95113,11,'MG9Y','Other specified general symptoms, signs or clinical findings','Y','2025-10-23 00:00:00'),(95114,11,'VV9Y','Other specified general tasks and demands','Y','2025-10-23 00:00:00'),(95115,11,'MG29.1Y','Other specified generalised oedema','Y','2025-10-23 00:00:00'),(95116,11,'VW8Y','Other specified generic functioning domains','Y','2025-10-23 00:00:00'),(95117,11,'EC7Y','Other specified genetic and developmental disorders affecting the skin','Y','2025-10-23 00:00:00'),(95118,11,'LD24.KY','Other specified genetic bone diseases with decreased bone density','Y','2025-10-23 00:00:00'),(95119,11,'EC21.Y','Other specified genetic defects of hair or hair growth','Y','2025-10-23 00:00:00'),(95120,11,'EC4Y','Other specified genetic disorders affecting dermal matrix proteins','Y','2025-10-23 00:00:00'),(95121,11,'EC20.Y','Other specified genetic disorders of keratinisation','Y','2025-10-23 00:00:00'),(95122,11,'EC23.Y','Other specified genetic disorders of skin pigmentation','Y','2025-10-23 00:00:00'),(95123,11,'8A61.3Y','Other specified genetic epileptic syndrome with adolescent or adult onset','Y','2025-10-23 00:00:00'),(95124,11,'8A61.2Y','Other specified genetic epileptic syndromes with childhood onset','Y','2025-10-23 00:00:00'),(95125,11,'8A61.0Y','Other specified genetic epileptic syndromes with neonatal onset','Y','2025-10-23 00:00:00'),(95126,11,'8A61.1Y','Other specified genetic epileptic syndromes with onset in infancy','Y','2025-10-23 00:00:00'),(95127,11,'8A61.4Y','Other specified genetic epileptic syndromes with variable age of onset','Y','2025-10-23 00:00:00'),(95128,11,'8A61.Y','Other specified genetic or presumed genetic syndromes primarily expressed as epilepsy','Y','2025-10-23 00:00:00'),(95129,11,'EC1Y','Other specified genetic syndromes affecting the skin','Y','2025-10-23 00:00:00'),(95130,11,'EC23.2Y','Other specified genetically-determined hypomelanotic disorders','Y','2025-10-23 00:00:00'),(95131,11,'VV5Y','Other specified genitourinary and reproductive functions','Y','2025-10-23 00:00:00'),(95132,11,'KC0Y','Other specified genitourinary system disorders specific to the perinatal or neonatal period','Y','2025-10-23 00:00:00'),(95133,11,'DA0B.Y','Other specified gingival diseases','Y','2025-10-23 00:00:00'),(95134,11,'9C6Y','Other specified glaucoma or glaucoma suspect','Y','2025-10-23 00:00:00'),(95135,11,'2A00.0Y','Other specified gliomas of brain','Y','2025-10-23 00:00:00'),(95136,11,'2A02.0Y','Other specified gliomas of spinal cord, cranial nerves or other parts of the central nervous system','Y','2025-10-23 00:00:00'),(95137,11,'GB4Y','Other specified glomerular diseases','Y','2025-10-23 00:00:00'),(95138,11,'5C56.2Y','Other specified glycoproteinosis','Y','2025-10-23 00:00:00'),(95139,11,'1A70.0Y','Other specified gonococcal infection of lower genitourinary tract without periurethral or accessory gland abscess','Y','2025-10-23 00:00:00'),(95140,11,'FA25.2Y','Other specified gout without specification whether primary or secondary','Y','2025-10-23 00:00:00'),(95141,11,'4B24.Y','Other specified graft-versus-host disease','Y','2025-10-23 00:00:00'),(95142,11,'DA01.2Y','Other specified granuloma or granuloma-like lesions of oral mucosa','Y','2025-10-23 00:00:00'),(95143,11,'3A10.0Y','Other specified haemolytic anaemias due to hexose monophosphate shunt or glutathione metabolism anomalies','Y','2025-10-23 00:00:00'),(95144,11,'JA40.Y','Other specified haemorrhage in early pregnancy','Y','2025-10-23 00:00:00'),(95145,11,'3B2Y','Other specified haemorrhagic diseases due to acquired coagulation factor defects','Y','2025-10-23 00:00:00'),(95146,11,'KA8Y','Other specified haemorrhagic or haematological disorders of fetus or newborn','Y','2025-10-23 00:00:00'),(95147,11,'DB6Y','Other specified haemorrhoids or perianal venous conditions','Y','2025-10-23 00:00:00'),(95148,11,'MB27.2Y','Other specified hallucinations','Y','2025-10-23 00:00:00'),(95149,11,'LC2Y','Other specified hamartomata derived from dermal connective tissue','Y','2025-10-23 00:00:00'),(95150,11,'1D62.Y','Other specified hantavirus disease','Y','2025-10-23 00:00:00'),(95151,11,'6C42.1Y','Other specified harmful pattern of use of synthetic cannabinoids','Y','2025-10-23 00:00:00'),(95152,11,'6C47.1Y','Other specified harmful pattern of use of synthetic cathinones','Y','2025-10-23 00:00:00'),(95153,11,'QE11.Y','Other specified hazardous drug use','Y','2025-10-23 00:00:00'),(95154,11,'QE1Y','Other specified hazardous substance use','Y','2025-10-23 00:00:00'),(95155,11,'8A8Y','Other specified headache disorders','Y','2025-10-23 00:00:00'),(95156,11,'SD1Y','Other specified headache disorders (TM1)','Y','2025-10-23 00:00:00'),(95157,11,'QB0Y','Other specified health care related circumstances influencing the episode of care without injury or harm','Y','2025-10-23 00:00:00'),(95158,11,'QD2Y','Other specified health status associated with infectious or certain specified conditions','Y','2025-10-23 00:00:00'),(95159,11,'BD1Y','Other specified heart failure','Y','2025-10-23 00:00:00'),(95160,11,'SA4Y','Other specified heart system disorders (TM1)','Y','2025-10-23 00:00:00'),(95161,11,'SF6Y','Other specified heart system patterns (TM1)','Y','2025-10-23 00:00:00'),(95162,11,'8A01.2Y','Other specified hemichorea or hemiballismus','Y','2025-10-23 00:00:00'),(95163,11,'DB99.1Y','Other specified hepatic cyst','Y','2025-10-23 00:00:00'),(95164,11,'DB93.Y','Other specified hepatic fibrosis or cirrhosis','Y','2025-10-23 00:00:00'),(95165,11,'5D00.2Y','Other specified hereditary amyloidosis','Y','2025-10-23 00:00:00'),(95166,11,'8A03.1Y','Other specified hereditary ataxia','Y','2025-10-23 00:00:00'),(95167,11,'8B22.CY','Other specified hereditary cerebrovascular diseases','Y','2025-10-23 00:00:00'),(95168,11,'9A70.Y','Other specified hereditary corneal dystrophies','Y','2025-10-23 00:00:00'),(95169,11,'3B11.Y','Other specified hereditary factor IX deficiency','Y','2025-10-23 00:00:00'),(95170,11,'3B10.Y','Other specified hereditary factor VIII deficiency','Y','2025-10-23 00:00:00'),(95171,11,'3A10.Y','Other specified hereditary haemolytic anaemia','Y','2025-10-23 00:00:00'),(95172,11,'8C20.Y','Other specified hereditary motor and sensory neuropathy','Y','2025-10-23 00:00:00'),(95173,11,'8C2Y','Other specified hereditary neuropathy','Y','2025-10-23 00:00:00'),(95174,11,'8C21.Y','Other specified hereditary sensory or autonomic neuropathy','Y','2025-10-23 00:00:00'),(95175,11,'8B44.0Y','Other specified hereditary spastic paraplegia','Y','2025-10-23 00:00:00'),(95176,11,'3B61.0Y','Other specified hereditary thrombophilia','Y','2025-10-23 00:00:00'),(95177,11,'DD5Y','Other specified hernias','Y','2025-10-23 00:00:00'),(95178,11,'1F00.0Y','Other specified herpes simplex infection of skin or mucous membrane','Y','2025-10-23 00:00:00'),(95179,11,'1F00.1Y','Other specified herpes simplex infection of the eye','Y','2025-10-23 00:00:00'),(95180,11,'1F00.Y','Other specified herpes simplex infections','Y','2025-10-23 00:00:00'),(95181,11,'9D42.7Y','Other specified heteronymous hemianopia or quadrant anopia','Y','2025-10-23 00:00:00'),(95182,11,'EE8Y','Other specified histiocytic and granulomatous disorders of the skin','Y','2025-10-23 00:00:00'),(95183,11,'2B31.Y','Other specified histiocytic or dendritic cell neoplasms','Y','2025-10-23 00:00:00'),(95184,11,'1F2A.Y','Other specified histoplasmosis','Y','2025-10-23 00:00:00'),(95185,11,'1C61.3Y','Other specified HIV disease clinical stage 4 associated with malaria','Y','2025-10-23 00:00:00'),(95186,11,'1C60.3Y','Other specified HIV disease clinical stage 4 associated with tuberculosis','Y','2025-10-23 00:00:00'),(95187,11,'9D42.6Y','Other specified homonymous hemianopia or quadrant anopia','Y','2025-10-23 00:00:00'),(95188,11,'8E0Y','Other specified human prion diseases','Y','2025-10-23 00:00:00'),(95189,11,'GB00.Y','Other specified hydrocele or spermatocele','Y','2025-10-23 00:00:00'),(95190,11,'KA85.Y','Other specified hydrops fetalis due to haemolytic disease','Y','2025-10-23 00:00:00'),(95191,11,'5A60.Y','Other specified hyperfunction of pituitary gland','Y','2025-10-23 00:00:00'),(95192,11,'ED51.Y','Other specified hyperkeratotic and acanthotic dermatoses','Y','2025-10-23 00:00:00'),(95193,11,'5C80.Y','Other specified hyperlipoproteinaemia','Y','2025-10-23 00:00:00'),(95194,11,'5A51.Y','Other specified hyperparathyroidism','Y','2025-10-23 00:00:00'),(95195,11,'CA70.Y','Other specified hypersensitivity pneumonitis due to organic dust','Y','2025-10-23 00:00:00'),(95196,11,'7A2Y','Other specified hypersomnolence disorders','Y','2025-10-23 00:00:00'),(95197,11,'BC43.1Y','Other specified hypertrophic cardiomyopathy','Y','2025-10-23 00:00:00'),(95198,11,'5A61.Y','Other specified hypofunction or disorders of pituitary gland','Y','2025-10-23 00:00:00'),(95199,11,'5C81.Y','Other specified hypolipoproteinaemia','Y','2025-10-23 00:00:00'),(95200,11,'5A50.Y','Other specified hypoparathyroidism','Y','2025-10-23 00:00:00'),(95201,11,'5A50.0Y','Other specified hypoparathyroidism due to impaired parathyroid hormone secretion','Y','2025-10-23 00:00:00'),(95202,11,'LB53.Y','Other specified hypospadias','Y','2025-10-23 00:00:00'),(95203,11,'LB53.0Y','Other specified hypospadias, balanic','Y','2025-10-23 00:00:00'),(95204,11,'BA2Y','Other specified hypotension','Y','2025-10-23 00:00:00'),(95205,11,'KD12.Y','Other specified hypothermia of newborn','Y','2025-10-23 00:00:00'),(95206,11,'8B24.Y','Other specified hypoxic-ischaemic encephalopathy','Y','2025-10-23 00:00:00'),(95207,11,'KC7Y','Other specified iatrogenic injuries involving the skin of the neonate','Y','2025-10-23 00:00:00'),(95208,11,'CB02.1Y','Other specified idiopathic eosinophilic pneumonitis','Y','2025-10-23 00:00:00'),(95209,11,'4A41.Y','Other specified idiopathic inflammatory myopathy','Y','2025-10-23 00:00:00'),(95210,11,'CB03.Y','Other specified idiopathic interstitial pneumonitis','Y','2025-10-23 00:00:00'),(95211,11,'4A44.9Y','Other specified immune complex small vessel vasculitis','Y','2025-10-23 00:00:00'),(95212,11,'4B0Y','Other specified immune system disorders involving white cell lineages','Y','2025-10-23 00:00:00'),(95213,11,'EB4Y','Other specified immunobullous disorder','Y','2025-10-23 00:00:00'),(95214,11,'4A01.0Y','Other specified immunodeficiencies with predominantly antibody defects','Y','2025-10-23 00:00:00'),(95215,11,'2B32.Y','Other specified immunodeficiency-associated lymphoproliferative disorders','Y','2025-10-23 00:00:00'),(95216,11,'MA14.Y','Other specified immunological findings in blood, blood-forming organs, or the immune system','Y','2025-10-23 00:00:00'),(95217,11,'MC21.Y','Other specified impairment of electrophysiological functions','Y','2025-10-23 00:00:00'),(95218,11,'9D7Y','Other specified impairment of visual functions','Y','2025-10-23 00:00:00'),(95219,11,'1B72.Y','Other specified impetigo','Y','2025-10-23 00:00:00'),(95220,11,'LD46.Y','Other specified imprinting errors','Y','2025-10-23 00:00:00'),(95221,11,'6C7Y','Other specified impulse control disorders','Y','2025-10-23 00:00:00'),(95222,11,'5C50.Y','Other specified inborn errors of amino acid or other organic acid metabolism','Y','2025-10-23 00:00:00'),(95223,11,'5C51.Y','Other specified inborn errors of carbohydrate metabolism','Y','2025-10-23 00:00:00'),(95224,11,'5C53.Y','Other specified inborn errors of energy metabolism','Y','2025-10-23 00:00:00'),(95225,11,'5C52.0Y','Other specified inborn errors of fatty acid oxidation or ketone body metabolism','Y','2025-10-23 00:00:00'),(95226,11,'5C52.Y','Other specified inborn errors of lipid metabolism','Y','2025-10-23 00:00:00'),(95227,11,'5C5Y','Other specified inborn errors of metabolism','Y','2025-10-23 00:00:00'),(95228,11,'5C59.Y','Other specified inborn errors of neurotransmitter metabolism','Y','2025-10-23 00:00:00'),(95229,11,'5C58.Y','Other specified inborn errors of porphyrin or heme metabolism','Y','2025-10-23 00:00:00'),(95230,11,'5C55.Y','Other specified inborn errors of purine, pyrimidine or nucleotide metabolism','Y','2025-10-23 00:00:00'),(95231,11,'5C52.1Y','Other specified inborn errors of sterol metabolism','Y','2025-10-23 00:00:00'),(95232,11,'PL13.5Y','Other specified incorrect administration of drug or medicament, as mode of injury','Y','2025-10-23 00:00:00'),(95233,11,'8D60.Y','Other specified increased intracranial pressure','Y','2025-10-23 00:00:00'),(95234,11,'EH40.1Y','Other specified infantile napkin dermatoses','Y','2025-10-23 00:00:00'),(95235,11,'9B10.1Y','Other specified infantile or juvenile cataract','Y','2025-10-23 00:00:00'),(95236,11,'3B81.7Y','Other specified infection of spleen','Y','2025-10-23 00:00:00'),(95237,11,'FA90.Y','Other specified infection of vertebra','Y','2025-10-23 00:00:00'),(95238,11,'FA1Y','Other specified infection related arthropathies','Y','2025-10-23 00:00:00'),(95239,11,'1E7Y','Other specified infections due to poxvirus','Y','2025-10-23 00:00:00'),(95240,11,'JB40.Y','Other specified infections in the puerperium','Y','2025-10-23 00:00:00'),(95241,11,'JB45.Y','Other specified infections of breast associated with childbirth','Y','2025-10-23 00:00:00'),(95242,11,'DA01.3Y','Other specified infections of lips or oral mucosa','Y','2025-10-23 00:00:00'),(95243,11,'DB70.Y','Other specified infections of the anal region','Y','2025-10-23 00:00:00'),(95244,11,'KA6Y','Other specified infections of the fetus or newborn','Y','2025-10-23 00:00:00'),(95245,11,'DB36.Y','Other specified infections of the large intestine','Y','2025-10-23 00:00:00'),(95246,11,'EE12.Y','Other specified infections of the nail or perionychium','Y','2025-10-23 00:00:00'),(95247,11,'1D05.Y','Other specified infectious cysts of the central nervous system','Y','2025-10-23 00:00:00'),(95248,11,'EA88.0Y','Other specified infectious dermatitis','Y','2025-10-23 00:00:00'),(95249,11,'AA0Y','Other specified infectious diseases of external ear','Y','2025-10-23 00:00:00'),(95250,11,'9A01.Y','Other specified infectious disorders of eyelid','Y','2025-10-23 00:00:00'),(95251,11,'DA51.6Y','Other specified infectious duodenitis','Y','2025-10-23 00:00:00'),(95252,11,'1D00.Y','Other specified infectious encephalitis not elsewhere classified','Y','2025-10-23 00:00:00'),(95253,11,'DB90.Y','Other specified infectious liver disease','Y','2025-10-23 00:00:00'),(95254,11,'1D01.Y','Other specified infectious meningitis not elsewhere classified','Y','2025-10-23 00:00:00'),(95255,11,'1D81.Y','Other specified infectious mononucleosis','Y','2025-10-23 00:00:00'),(95256,11,'1D02.Y','Other specified infectious myelitis not elsewhere classified','Y','2025-10-23 00:00:00'),(95257,11,'DA25.1Y','Other specified infectious oesophageal ulcer','Y','2025-10-23 00:00:00'),(95258,11,'DA24.0Y','Other specified infectious oesophagitis','Y','2025-10-23 00:00:00'),(95259,11,'FA9Y','Other specified inflammation of spine','Y','2025-10-23 00:00:00'),(95260,11,'GA91.Y','Other specified inflammatory and other diseases of prostate','Y','2025-10-23 00:00:00'),(95261,11,'FA27.Y','Other specified inflammatory arthropathies','Y','2025-10-23 00:00:00'),(95262,11,'DD7Y','Other specified inflammatory bowel diseases','Y','2025-10-23 00:00:00'),(95263,11,'EB7Y','Other specified inflammatory dermatoses','Y','2025-10-23 00:00:00'),(95264,11,'KC21.Y','Other specified inflammatory dermatoses of the newborn','Y','2025-10-23 00:00:00'),(95265,11,'9B72.Y','Other specified inflammatory diseases of the retina','Y','2025-10-23 00:00:00'),(95266,11,'EG4Y','Other specified inflammatory disorder of external ear','Y','2025-10-23 00:00:00'),(95267,11,'GB21.Y','Other specified inflammatory disorders of breast','Y','2025-10-23 00:00:00'),(95268,11,'9A02.Y','Other specified inflammatory disorders of eyelid','Y','2025-10-23 00:00:00'),(95269,11,'GB07.Y','Other specified inflammatory disorders of male genital organs, not elsewhere classified','Y','2025-10-23 00:00:00'),(95270,11,'GA01.Y','Other specified inflammatory disorders of the uterus, except cervix','Y','2025-10-23 00:00:00'),(95271,11,'DB97.Y','Other specified inflammatory liver disease','Y','2025-10-23 00:00:00'),(95272,11,'8C01.Y','Other specified inflammatory polyneuropathy','Y','2025-10-23 00:00:00'),(95273,11,'FA92.Y','Other specified inflammatory spondyloarthritis','Y','2025-10-23 00:00:00'),(95274,11,'3B50.Y','Other specified inherited fibrinolytic defects','Y','2025-10-23 00:00:00'),(95275,11,'3B62.0Y','Other specified inherited qualitative platelet defects','Y','2025-10-23 00:00:00'),(95276,11,'ND53.Y','Other specified injuries of arm, level unspecified','Y','2025-10-23 00:00:00'),(95277,11,'NA0A.Y','Other specified injuries of head','Y','2025-10-23 00:00:00'),(95278,11,'ND51.Y','Other specified injuries of spine or trunk, level unspecified','Y','2025-10-23 00:00:00'),(95279,11,'NB9Y','Other specified injuries to the abdomen, lower back, lumbar spine or pelvis','Y','2025-10-23 00:00:00'),(95280,11,'ND1Y','Other specified injuries to the ankle or foot','Y','2025-10-23 00:00:00'),(95281,11,'NC3Y','Other specified injuries to the elbow or forearm','Y','2025-10-23 00:00:00'),(95282,11,'NC7Y','Other specified injuries to the hip or thigh','Y','2025-10-23 00:00:00'),(95283,11,'NC9Y','Other specified injuries to the knee or lower leg','Y','2025-10-23 00:00:00'),(95284,11,'NA6Y','Other specified injuries to the neck','Y','2025-10-23 00:00:00'),(95285,11,'NC1Y','Other specified injuries to the shoulder or upper arm','Y','2025-10-23 00:00:00'),(95286,11,'NB3Y','Other specified injuries to the thorax','Y','2025-10-23 00:00:00'),(95287,11,'NC5Y','Other specified injuries to the wrist or hand','Y','2025-10-23 00:00:00'),(95288,11,'ND5Y','Other specified injuries to unspecified part of trunk, limb or body region','Y','2025-10-23 00:00:00'),(95289,11,'PH8Y','Other specified injury event of undetermined intent','Y','2025-10-23 00:00:00'),(95290,11,'NB90.0Y','Other specified injury of abdominal aorta','Y','2025-10-23 00:00:00'),(95291,11,'NC96.0Y','Other specified injury of Achilles tendon','Y','2025-10-23 00:00:00'),(95292,11,'NC76.2Y','Other specified injury of adductor muscle, fascia or tendon of thigh','Y','2025-10-23 00:00:00'),(95293,11,'NC95.1Y','Other specified injury of anterior tibial artery','Y','2025-10-23 00:00:00'),(95294,11,'NC15.0Y','Other specified injury of axillary artery','Y','2025-10-23 00:00:00'),(95295,11,'NC15.2Y','Other specified injury of axillary or brachial vein','Y','2025-10-23 00:00:00'),(95296,11,'NB92.2Y','Other specified injury of bladder','Y','2025-10-23 00:00:00'),(95297,11,'NC56.5Y','Other specified injury of blood vessel of other finger','Y','2025-10-23 00:00:00'),(95298,11,'NC56.4Y','Other specified injury of blood vessel of thumb','Y','2025-10-23 00:00:00'),(95299,11,'NC15.1Y','Other specified injury of brachial artery','Y','2025-10-23 00:00:00'),(95300,11,'NA41.Y','Other specified injury of brachial plexus','Y','2025-10-23 00:00:00'),(95301,11,'NB32.4Y','Other specified injury of bronchus','Y','2025-10-23 00:00:00'),(95302,11,'NA60.0Y','Other specified injury of carotid artery','Y','2025-10-23 00:00:00'),(95303,11,'NB90.2Y','Other specified injury of coeliac artery','Y','2025-10-23 00:00:00'),(95304,11,'NB91.8Y','Other specified injury of colon','Y','2025-10-23 00:00:00'),(95305,11,'NC56.3Y','Other specified injury of deep palmar arch','Y','2025-10-23 00:00:00'),(95306,11,'ND16.0Y','Other specified injury of dorsal artery of foot','Y','2025-10-23 00:00:00'),(95307,11,'ND16.2Y','Other specified injury of dorsal vein of foot','Y','2025-10-23 00:00:00'),(95308,11,'NB91.6Y','Other specified injury of duodenum','Y','2025-10-23 00:00:00'),(95309,11,'NC36.4Y','Other specified injury of extensor muscle, fascia or tendon of other finger at forearm level','Y','2025-10-23 00:00:00'),(95310,11,'NC57.3Y','Other specified injury of extensor muscle, fascia or tendon of other finger at wrist or hand level','Y','2025-10-23 00:00:00'),(95311,11,'NC57.2Y','Other specified injury of extensor muscle, fascia or tendon of thumb at wrist or hand level','Y','2025-10-23 00:00:00'),(95312,11,'NC36.3Y','Other specified injury of extensor or abductor muscles or tendons of thumb at forearm level','Y','2025-10-23 00:00:00'),(95313,11,'NA60.2Y','Other specified injury of external jugular vein','Y','2025-10-23 00:00:00'),(95314,11,'NA06.Y','Other specified injury of eye or orbit','Y','2025-10-23 00:00:00'),(95315,11,'NC75.0Y','Other specified injury of femoral artery','Y','2025-10-23 00:00:00'),(95316,11,'NC75.1Y','Other specified injury of femoral vein at hip or thigh level','Y','2025-10-23 00:00:00'),(95317,11,'NC57.1Y','Other specified injury of flexor muscle, fascia or tendon of other finger at wrist or hand level','Y','2025-10-23 00:00:00'),(95318,11,'NC36.0Y','Other specified injury of flexor muscle, fascia or tendon of thumb at forearm level','Y','2025-10-23 00:00:00'),(95319,11,'NC75.2Y','Other specified injury of greater saphenous vein at hip or thigh level','Y','2025-10-23 00:00:00'),(95320,11,'NC95.4Y','Other specified injury of greater saphenous vein at lower leg level','Y','2025-10-23 00:00:00'),(95321,11,'NA0D.0Y','Other specified injury of hard dental tissues and pulp','Y','2025-10-23 00:00:00'),(95322,11,'NB31.Y','Other specified injury of heart','Y','2025-10-23 00:00:00'),(95323,11,'NB31.0Y','Other specified injury of heart with haemopericardium','Y','2025-10-23 00:00:00'),(95324,11,'NB31.1Y','Other specified injury of heart without haemopericardium','Y','2025-10-23 00:00:00'),(95325,11,'NB90.6Y','Other specified injury of iliac blood vessels','Y','2025-10-23 00:00:00'),(95326,11,'NB90.1Y','Other specified injury of inferior vena cava','Y','2025-10-23 00:00:00'),(95327,11,'NB30.1Y','Other specified injury of innominate or subclavian artery','Y','2025-10-23 00:00:00'),(95328,11,'NB30.3Y','Other specified injury of innominate or subclavian vein','Y','2025-10-23 00:00:00'),(95329,11,'NB30.5Y','Other specified injury of intercostal blood vessels','Y','2025-10-23 00:00:00'),(95330,11,'NA60.3Y','Other specified injury of internal jugular vein','Y','2025-10-23 00:00:00'),(95331,11,'ND17.2Y','Other specified injury of intrinsic muscle, fascia or tendon at ankle or foot level','Y','2025-10-23 00:00:00'),(95332,11,'NC57.5Y','Other specified injury of intrinsic muscle, fascia or tendon of other finger at wrist or hand level','Y','2025-10-23 00:00:00'),(95333,11,'NC57.4Y','Other specified injury of intrinsic muscle, fascia or tendon of thumb at wrist or hand level','Y','2025-10-23 00:00:00'),(95334,11,'NB92.0Y','Other specified injury of kidney','Y','2025-10-23 00:00:00'),(95335,11,'NC95.5Y','Other specified injury of lesser saphenous vein at lower leg level','Y','2025-10-23 00:00:00'),(95336,11,'NB91.1Y','Other specified injury of liver','Y','2025-10-23 00:00:00'),(95337,11,'NC36.1Y','Other specified injury of long flexor muscle, fascia or tendon of other finger at forearm level','Y','2025-10-23 00:00:00'),(95338,11,'NC57.0Y','Other specified injury of long flexor muscle, fascia or tendon of thumb at wrist or hand level','Y','2025-10-23 00:00:00'),(95339,11,'NB90.3Y','Other specified injury of mesenteric artery','Y','2025-10-23 00:00:00'),(95340,11,'NC56.6Y','Other specified injury of multiple blood vessels at wrist or hand level','Y','2025-10-23 00:00:00'),(95341,11,'NC76.4Y','Other specified injury of multiple muscles or tendons at hip or thigh level','Y','2025-10-23 00:00:00'),(95342,11,'NC16.4Y','Other specified injury of multiple muscles or tendons at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(95343,11,'NC16.0Y','Other specified injury of muscle or tendon of the rotator cuff of shoulder','Y','2025-10-23 00:00:00'),(95344,11,'NA61.Y','Other specified injury of muscle, fascia or tendon at neck level','Y','2025-10-23 00:00:00'),(95345,11,'NB34.Y','Other specified injury of muscle, fascia or tendon at thorax level','Y','2025-10-23 00:00:00'),(95346,11,'NB94.Y','Other specified injury of muscle, fascia or tendon of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(95347,11,'NC96.2Y','Other specified injury of muscle, fascia or tendon of anterior muscle group at lower leg level','Y','2025-10-23 00:00:00'),(95348,11,'NA0A.1Y','Other specified injury of muscle, fascia or tendon of head','Y','2025-10-23 00:00:00'),(95349,11,'NC76.0Y','Other specified injury of muscle, fascia or tendon of hip','Y','2025-10-23 00:00:00'),(95350,11,'ND17.1Y','Other specified injury of muscle, fascia or tendon of long extensor muscle of toe at ankle or foot level','Y','2025-10-23 00:00:00'),(95351,11,'ND17.0Y','Other specified injury of muscle, fascia or tendon of long flexor muscle of toe at ankle or foot level','Y','2025-10-23 00:00:00'),(95352,11,'NC16.1Y','Other specified injury of muscle, fascia or tendon of long head of biceps','Y','2025-10-23 00:00:00'),(95353,11,'NC16.2Y','Other specified injury of muscle, fascia or tendon of other parts of biceps','Y','2025-10-23 00:00:00'),(95354,11,'NC96.3Y','Other specified injury of muscle, fascia or tendon of peroneal muscle group at lower leg level','Y','2025-10-23 00:00:00'),(95355,11,'NC76.3Y','Other specified injury of muscle, fascia or tendon of the posterior muscle group at thigh level','Y','2025-10-23 00:00:00'),(95356,11,'NC16.3Y','Other specified injury of muscle, fascia or tendon of triceps','Y','2025-10-23 00:00:00'),(95357,11,'NB7Y','Other specified injury of nerves at abdomen, lower back or pelvis level','Y','2025-10-23 00:00:00'),(95358,11,'NB2Y','Other specified injury of nerves or spinal cord at thorax level','Y','2025-10-23 00:00:00'),(95359,11,'NA04.1Y','Other specified injury of optic nerve or pathways','Y','2025-10-23 00:00:00'),(95360,11,'NC36.5Y','Other specified injury of other extensor muscle, fascia or tendon at forearm level','Y','2025-10-23 00:00:00'),(95361,11,'NC36.2Y','Other specified injury of other flexor muscle, fascia or tendon at forearm level','Y','2025-10-23 00:00:00'),(95362,11,'NC96.1Y','Other specified injury of other muscle, fascia or tendon of posterior muscle group at lower leg level','Y','2025-10-23 00:00:00'),(95363,11,'NB32.Y','Other specified injury of other or unspecified intrathoracic organs','Y','2025-10-23 00:00:00'),(95364,11,'NB92.4Y','Other specified injury of ovary','Y','2025-10-23 00:00:00'),(95365,11,'NB91.4Y','Other specified injury of pancreas','Y','2025-10-23 00:00:00'),(95366,11,'NA0D.1Y','Other specified injury of periodontal tissues','Y','2025-10-23 00:00:00'),(95367,11,'NC95.3Y','Other specified injury of peroneal artery','Y','2025-10-23 00:00:00'),(95368,11,'ND16.1Y','Other specified injury of plantar artery of foot','Y','2025-10-23 00:00:00'),(95369,11,'NB32.6Y','Other specified injury of pleura','Y','2025-10-23 00:00:00'),(95370,11,'NC95.0Y','Other specified injury of popliteal artery','Y','2025-10-23 00:00:00'),(95371,11,'NC95.6Y','Other specified injury of popliteal vein','Y','2025-10-23 00:00:00'),(95372,11,'NB90.4Y','Other specified injury of portal or splenic vein','Y','2025-10-23 00:00:00'),(95373,11,'NC95.2Y','Other specified injury of posterior tibial artery','Y','2025-10-23 00:00:00'),(95374,11,'NB30.4Y','Other specified injury of pulmonary blood vessels','Y','2025-10-23 00:00:00'),(95375,11,'NC76.1Y','Other specified injury of quadriceps muscle or tendon','Y','2025-10-23 00:00:00'),(95376,11,'NC35.1Y','Other specified injury of radial artery at forearm level','Y','2025-10-23 00:00:00'),(95377,11,'NC56.1Y','Other specified injury of radial artery at wrist or hand level','Y','2025-10-23 00:00:00'),(95378,11,'NB91.9Y','Other specified injury of rectum','Y','2025-10-23 00:00:00'),(95379,11,'NB90.5Y','Other specified injury of renal blood vessels','Y','2025-10-23 00:00:00'),(95380,11,'NB91.7Y','Other specified injury of small intestine','Y','2025-10-23 00:00:00'),(95381,11,'NB91.0Y','Other specified injury of spleen','Y','2025-10-23 00:00:00'),(95382,11,'NB91.5Y','Other specified injury of stomach','Y','2025-10-23 00:00:00'),(95383,11,'NC56.2Y','Other specified injury of superficial palmar arch','Y','2025-10-23 00:00:00'),(95384,11,'NC15.3Y','Other specified injury of superficial vein at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(95385,11,'NB30.2Y','Other specified injury of superior vena cava','Y','2025-10-23 00:00:00'),(95386,11,'NA0D.Y','Other specified injury of teeth or supporting structures','Y','2025-10-23 00:00:00'),(95387,11,'NB30.0Y','Other specified injury of thoracic aorta','Y','2025-10-23 00:00:00'),(95388,11,'NB32.5Y','Other specified injury of thoracic trachea','Y','2025-10-23 00:00:00'),(95389,11,'NC35.0Y','Other specified injury of ulnar artery at forearm level','Y','2025-10-23 00:00:00'),(95390,11,'NC56.0Y','Other specified injury of ulnar artery at wrist or hand level','Y','2025-10-23 00:00:00'),(95391,11,'ND56.Y','Other specified injury of unspecified body region','Y','2025-10-23 00:00:00'),(95392,11,'NB92.1Y','Other specified injury of ureter','Y','2025-10-23 00:00:00'),(95393,11,'NB92.3Y','Other specified injury of urethra','Y','2025-10-23 00:00:00'),(95394,11,'NC35.2Y','Other specified injury of vein at forearm level','Y','2025-10-23 00:00:00'),(95395,11,'NA60.1Y','Other specified injury of vertebral artery','Y','2025-10-23 00:00:00'),(95396,11,'NE80.Y','Other specified injury or harm arising following infusion, transfusion or therapeutic injection, not elsewhere classified','Y','2025-10-23 00:00:00'),(95397,11,'NE81.Y','Other specified injury or harm arising from a procedure, not elsewhere classified','Y','2025-10-23 00:00:00'),(95398,11,'NE83.Y','Other specified injury or harm arising from other device, implant or graft, not elsewhere classified','Y','2025-10-23 00:00:00'),(95399,11,'NE8Y','Other specified injury or harm arising from surgical or medical care, not elsewhere classified','Y','2025-10-23 00:00:00'),(95400,11,'NF2Y','Other specified injury, poisoning or certain other consequences of external causes','Y','2025-10-23 00:00:00'),(95401,11,'MG43.4Y','Other specified insufficient intake of food and water due to self neglect','Y','2025-10-23 00:00:00'),(95402,11,'PD3Y','Other specified intentional self-harm','Y','2025-10-23 00:00:00'),(95403,11,'PC53.Y','Other specified intentional self-harm by being cut or pierced by sharp object','Y','2025-10-23 00:00:00'),(95404,11,'PC50.Y','Other specified intentional self-harm by being struck by projectile from firearm','Y','2025-10-23 00:00:00'),(95405,11,'PC3Y','Other specified intentional self-harm by fall or jump','Y','2025-10-23 00:00:00'),(95406,11,'PC7Y','Other specified intentional self-harm by threat to breathing','Y','2025-10-23 00:00:00'),(95407,11,'5A40.Y','Other specified intermediate hyperglycaemia','Y','2025-10-23 00:00:00'),(95408,11,'9C80.3Y','Other specified intermittent strabismus','Y','2025-10-23 00:00:00'),(95409,11,'FA33.Y','Other specified internal derangement of knee','Y','2025-10-23 00:00:00'),(95410,11,'VW4Y','Other specified interpersonal interactions and relationships','Y','2025-10-23 00:00:00'),(95411,11,'CB05.Y','Other specified interstitial lung diseases associated with systemic diseases','Y','2025-10-23 00:00:00'),(95412,11,'CB05.4Y','Other specified interstitial lung diseases associated with systemic vasculitides','Y','2025-10-23 00:00:00'),(95413,11,'FA80.Y','Other specified intervertebral disc degeneration','Y','2025-10-23 00:00:00'),(95414,11,'ME93.4Y','Other specified intervertebral disc stenosis of neural canal','Y','2025-10-23 00:00:00'),(95415,11,'DA96.0Y','Other specified intestinal malabsorption','Y','2025-10-23 00:00:00'),(95416,11,'DA96.Y','Other specified intestinal malabsorption or protein-losing enteropathy','Y','2025-10-23 00:00:00'),(95417,11,'KB87.Y','Other specified intestinal obstruction of newborn','Y','2025-10-23 00:00:00'),(95418,11,'DD50.2Y','Other specified intra-abdominal hernia','Y','2025-10-23 00:00:00'),(95419,11,'1D03.3Y','Other specified intracranial abscess','Y','2025-10-23 00:00:00'),(95420,11,'1D04.1Y','Other specified intracranial granuloma','Y','2025-10-23 00:00:00'),(95421,11,'8D61.Y','Other specified intracranial hypotension','Y','2025-10-23 00:00:00'),(95422,11,'NA07.Y','Other specified intracranial injury','Y','2025-10-23 00:00:00'),(95423,11,'KA40.0Y','Other specified intracranial laceration or haemorrhage due to birth injury','Y','2025-10-23 00:00:00'),(95424,11,'8B22.4Y','Other specified intracranial vascular malformation','Y','2025-10-23 00:00:00'),(95425,11,'2E64.0Y','Other specified intraepidermal squamous cell carcinoma','Y','2025-10-23 00:00:00'),(95426,11,'DB99.6Y','Other specified intrahepatic cholestasis, not elsewhere classified','Y','2025-10-23 00:00:00'),(95427,11,'JA42.Y','Other specified intrapartum haemorrhage','Y','2025-10-23 00:00:00'),(95428,11,'KA20.1Y','Other specified intrauterine growth restriction','Y','2025-10-23 00:00:00'),(95429,11,'3A00.Y','Other specified iron deficiency anaemia','Y','2025-10-23 00:00:00'),(95430,11,'9C85.Y','Other specified irregular eye movements','Y','2025-10-23 00:00:00'),(95431,11,'DD91.Y','Other specified irritable bowel syndrome or functional bowel disorders','Y','2025-10-23 00:00:00'),(95432,11,'BA51.Y','Other specified ischaemic cardiomyopathy','Y','2025-10-23 00:00:00'),(95433,11,'FB32.2Y','Other specified ischaemic infarction of muscle','Y','2025-10-23 00:00:00'),(95434,11,'9C40.4Y','Other specified ischaemic optic neuropathy','Y','2025-10-23 00:00:00'),(95435,11,'DD3Y','Other specified ischaemic vascular disorders of intestine','Y','2025-10-23 00:00:00'),(95436,11,'8A41.Y','Other specified isolated demyelinating syndromes of the central nervous system','Y','2025-10-23 00:00:00'),(95437,11,'LB90.Y','Other specified joint formation defects','Y','2025-10-23 00:00:00'),(95438,11,'SC5Y','Other specified joint impediment disorders (TM1)','Y','2025-10-23 00:00:00'),(95439,11,'FA24.Y','Other specified juvenile idiopathic arthritis','Y','2025-10-23 00:00:00'),(95440,11,'2A42.Y','Other specified juvenile myelomonocytic leukaemia','Y','2025-10-23 00:00:00'),(95441,11,'EE60.0Y','Other specified keloid','Y','2025-10-23 00:00:00'),(95442,11,'EE60.Y','Other specified keloidal disorders','Y','2025-10-23 00:00:00'),(95443,11,'LC00.Y','Other specified keratinocytic epidermal hamartoma','Y','2025-10-23 00:00:00'),(95444,11,'SB0Y','Other specified kidney system disorders (TM1)','Y','2025-10-23 00:00:00'),(95445,11,'SF9Y','Other specified kidney system patterns (TM1)','Y','2025-10-23 00:00:00'),(95446,11,'LD50.3Y','Other specified Klinefelter syndrome','Y','2025-10-23 00:00:00'),(95447,11,'JB07.Y','Other specified labour or delivery complicated by fetal distress','Y','2025-10-23 00:00:00'),(95448,11,'MB45.Y','Other specified lack of coordination','Y','2025-10-23 00:00:00'),(95449,11,'MG44.1Y','Other specified lack of expected normal physiological development','Y','2025-10-23 00:00:00'),(95450,11,'8B26.5Y','Other specified lacunar syndromes','Y','2025-10-23 00:00:00'),(95451,11,'9A03.4Y','Other specified lagophthalmos','Y','2025-10-23 00:00:00'),(95452,11,'XE5GA','Other specified lamp or lamp component','Y','2025-10-23 00:00:00'),(95453,11,'2B31.2Y','Other specified Langerhans cell histiocytosis','Y','2025-10-23 00:00:00'),(95454,11,'SH4Y','Other specified large yang type patterns (TM1)','Y','2025-10-23 00:00:00'),(95455,11,'SH6Y','Other specified large yin type patterns (TM1)','Y','2025-10-23 00:00:00'),(95456,11,'1A62.Y','Other specified late syphilis','Y','2025-10-23 00:00:00'),(95457,11,'VV8Y','Other specified learning and applying knowledge','Y','2025-10-23 00:00:00'),(95458,11,'8C11.0Y','Other specified lesion of sciatic nerve','Y','2025-10-23 00:00:00'),(95459,11,'4A44.BY','Other specified leukocytoclastic vasculitis','Y','2025-10-23 00:00:00'),(95460,11,'EA91.Y','Other specified lichen planus','Y','2025-10-23 00:00:00'),(95461,11,'EA91.4Y','Other specified lichenoid reactions of oral mucosa','Y','2025-10-23 00:00:00'),(95462,11,'9B02.Y','Other specified light-near dissociations','Y','2025-10-23 00:00:00'),(95463,11,'LB97.Y','Other specified limb overgrowth','Y','2025-10-23 00:00:00'),(95464,11,'8C70.4Y','Other specified limb-girdle muscular dystrophy','Y','2025-10-23 00:00:00'),(95465,11,'1C1A.Y','Other specified listeriosis','Y','2025-10-23 00:00:00'),(95466,11,'SA0Y','Other specified liver system disorders (TM1)','Y','2025-10-23 00:00:00'),(95467,11,'SF5Y','Other specified liver system patterns (TM1)','Y','2025-10-23 00:00:00'),(95468,11,'EF40.2Y','Other specified localised cutaneous vasculitis','Y','2025-10-23 00:00:00'),(95469,11,'EE00.0Y','Other specified localised hyperhidrosis','Y','2025-10-23 00:00:00'),(95470,11,'MG29.0Y','Other specified localised oedema','Y','2025-10-23 00:00:00'),(95471,11,'ME84.2Y','Other specified low back pain','Y','2025-10-23 00:00:00'),(95472,11,'CA2Y','Other specified lower respiratory tract disease','Y','2025-10-23 00:00:00'),(95473,11,'8B92.Y','Other specified lumbosacral plexus disorders','Y','2025-10-23 00:00:00'),(95474,11,'CA8Y','Other specified lung diseases due to external agents','Y','2025-10-23 00:00:00'),(95475,11,'CA4Y','Other specified lung infections','Y','2025-10-23 00:00:00'),(95476,11,'SA8Y','Other specified lung system disorders (TM1)','Y','2025-10-23 00:00:00'),(95477,11,'SF8Y','Other specified lung system patterns (TM1)','Y','2025-10-23 00:00:00'),(95478,11,'4A40.Y','Other specified lupus erythematosus','Y','2025-10-23 00:00:00'),(95479,11,'1C1G.Y','Other specified Lyme borreliosis','Y','2025-10-23 00:00:00'),(95480,11,'BD90.Y','Other specified lymphadenitis','Y','2025-10-23 00:00:00'),(95481,11,'CB07.Y','Other specified lymphangioleiomyomatosis','Y','2025-10-23 00:00:00'),(95482,11,'LA90.1Y','Other specified lymphatic malformations','Y','2025-10-23 00:00:00'),(95483,11,'5C56.Y','Other specified lysosomal diseases','Y','2025-10-23 00:00:00'),(95484,11,'BC81.2Y','Other specified macro reentrant atrial tachycardia','Y','2025-10-23 00:00:00'),(95485,11,'MF54.Y','Other specified macroscopic changes of size of the kidney','Y','2025-10-23 00:00:00'),(95486,11,'9B75.Y','Other specified macular disorders','Y','2025-10-23 00:00:00'),(95487,11,'SG2Y','Other specified main Meridian Patterns (TM1)','Y','2025-10-23 00:00:00'),(95488,11,'DA0E.0Y','Other specified major anomalies of jaw size','Y','2025-10-23 00:00:00'),(95489,11,'VW5Y','Other specified major life areas','Y','2025-10-23 00:00:00'),(95490,11,'GB04.Y','Other specified male infertility','Y','2025-10-23 00:00:00'),(95491,11,'LD2A.Y','Other specified malformative disorders of sex development','Y','2025-10-23 00:00:00'),(95492,11,'2A84.Y','Other specified malignant immunoproliferative diseases','Y','2025-10-23 00:00:00'),(95493,11,'2B5Y','Other specified malignant mesenchymal neoplasms','Y','2025-10-23 00:00:00'),(95494,11,'2C53.Y','Other specified malignant neoplasm involving overlapping sites of retroperitoneum, peritoneum or omentum','Y','2025-10-23 00:00:00'),(95495,11,'2D60.Y','Other specified malignant neoplasm metastasis in lymph node of a single region','Y','2025-10-23 00:00:00'),(95496,11,'2B90.0Y','Other specified malignant neoplasm of ascending colon and right flexure of colon','Y','2025-10-23 00:00:00'),(95497,11,'2D05.Y','Other specified malignant neoplasm of choroid','Y','2025-10-23 00:00:00'),(95498,11,'2D06.Y','Other specified malignant neoplasm of ciliary body','Y','2025-10-23 00:00:00'),(95499,11,'2D00.Y','Other specified malignant neoplasm of conjunctiva','Y','2025-10-23 00:00:00'),(95500,11,'2B90.1Y','Other specified malignant neoplasm of descending colon and splenic flexure of colon','Y','2025-10-23 00:00:00'),(95501,11,'2B64.Y','Other specified malignant neoplasm of floor of mouth','Y','2025-10-23 00:00:00'),(95502,11,'2C13.Y','Other specified malignant neoplasm of gallbladder','Y','2025-10-23 00:00:00'),(95503,11,'2B63.Y','Other specified malignant neoplasm of gum','Y','2025-10-23 00:00:00'),(95504,11,'2D07.Y','Other specified malignant neoplasm of iris','Y','2025-10-23 00:00:00'),(95505,11,'2D03.Y','Other specified malignant neoplasm of lacrimal apparatus','Y','2025-10-23 00:00:00'),(95506,11,'2C12.0Y','Other specified malignant neoplasm of liver','Y','2025-10-23 00:00:00'),(95507,11,'2C21.Y','Other specified malignant neoplasm of middle ear','Y','2025-10-23 00:00:00'),(95508,11,'2C20.Y','Other specified malignant neoplasm of nasal cavity','Y','2025-10-23 00:00:00'),(95509,11,'2B71.Y','Other specified malignant neoplasm of oesophagogastric junction','Y','2025-10-23 00:00:00'),(95510,11,'2B65.Y','Other specified malignant neoplasm of palate','Y','2025-10-23 00:00:00'),(95511,11,'2C81.Y','Other specified malignant neoplasm of penis','Y','2025-10-23 00:00:00'),(95512,11,'2D02.Y','Other specified malignant neoplasm of retina','Y','2025-10-23 00:00:00'),(95513,11,'2B90.3Y','Other specified malignant neoplasm of sigmoid colon','Y','2025-10-23 00:00:00'),(95514,11,'2B90.2Y','Other specified malignant neoplasm of transverse colon','Y','2025-10-23 00:00:00'),(95515,11,'2C22.Y','Other specified malignant neoplasms of accessory sinuses','Y','2025-10-23 00:00:00'),(95516,11,'2D11.Y','Other specified malignant neoplasms of adrenal gland','Y','2025-10-23 00:00:00'),(95517,11,'2C16.Y','Other specified malignant neoplasms of ampulla of Vater','Y','2025-10-23 00:00:00'),(95518,11,'2C00.Y','Other specified malignant neoplasms of anus and anal canal','Y','2025-10-23 00:00:00'),(95519,11,'2B81.Y','Other specified malignant neoplasms of appendix','Y','2025-10-23 00:00:00'),(95520,11,'2B61.Y','Other specified malignant neoplasms of base of tongue','Y','2025-10-23 00:00:00'),(95521,11,'2C14.Y','Other specified malignant neoplasms of biliary tract, cystic duct','Y','2025-10-23 00:00:00'),(95522,11,'2C15.Y','Other specified malignant neoplasms of biliary tract, distal bile duct','Y','2025-10-23 00:00:00'),(95523,11,'2C94.Y','Other specified malignant neoplasms of bladder','Y','2025-10-23 00:00:00'),(95524,11,'2C6Y','Other specified malignant neoplasms of breast','Y','2025-10-23 00:00:00'),(95525,11,'2C25.Y','Other specified malignant neoplasms of bronchus or lung','Y','2025-10-23 00:00:00'),(95526,11,'2C77.Y','Other specified malignant neoplasms of cervix uteri','Y','2025-10-23 00:00:00'),(95527,11,'2B90.Y','Other specified malignant neoplasms of colon','Y','2025-10-23 00:00:00'),(95528,11,'2D01.Y','Other specified malignant neoplasms of cornea','Y','2025-10-23 00:00:00'),(95529,11,'2C76.Y','Other specified malignant neoplasms of corpus uteri','Y','2025-10-23 00:00:00'),(95530,11,'2D0Y','Other specified malignant neoplasms of eye and ocular adnexa','Y','2025-10-23 00:00:00'),(95531,11,'2C74.Y','Other specified malignant neoplasms of fallopian tube','Y','2025-10-23 00:00:00'),(95532,11,'2C7Y','Other specified malignant neoplasms of female genital organs','Y','2025-10-23 00:00:00'),(95533,11,'2C28.1','Other specified malignant neoplasms of heart, mediastinum or non-mesothelioma of pleura','Y','2025-10-23 00:00:00'),(95534,11,'2B6D.Y','Other specified malignant neoplasms of hypopharynx','Y','2025-10-23 00:00:00'),(95535,11,'2C0Y','Other specified malignant neoplasms of intestine','Y','2025-10-23 00:00:00'),(95536,11,'2C12.1Y','Other specified malignant neoplasms of intrahepatic bile ducts','Y','2025-10-23 00:00:00'),(95537,11,'2B80.1Y','Other specified malignant neoplasms of jejunum or ileum','Y','2025-10-23 00:00:00'),(95538,11,'2C90.Y','Other specified malignant neoplasms of kidney, except renal pelvis','Y','2025-10-23 00:00:00'),(95539,11,'2B9Y','Other specified malignant neoplasms of large intestine','Y','2025-10-23 00:00:00'),(95540,11,'2B93.Y','Other specified malignant neoplasms of large intestine, site unspecified','Y','2025-10-23 00:00:00'),(95541,11,'2C23.1Y','Other specified malignant neoplasms of larynx, glottis','Y','2025-10-23 00:00:00'),(95542,11,'2C23.3Y','Other specified malignant neoplasms of larynx, subglottis','Y','2025-10-23 00:00:00'),(95543,11,'2C23.2Y','Other specified malignant neoplasms of larynx, supraglottis','Y','2025-10-23 00:00:00'),(95544,11,'2B60.Y','Other specified malignant neoplasms of lip','Y','2025-10-23 00:00:00'),(95545,11,'2B6Y','Other specified malignant neoplasms of lip, oral cavity or pharynx','Y','2025-10-23 00:00:00'),(95546,11,'2C2Y','Other specified malignant neoplasms of middle ear, respiratory or intrathoracic organs','Y','2025-10-23 00:00:00'),(95547,11,'2B6B.Y','Other specified malignant neoplasms of nasopharynx','Y','2025-10-23 00:00:00'),(95548,11,'2B70.Y','Other specified malignant neoplasms of oesophagus','Y','2025-10-23 00:00:00'),(95549,11,'2C52.Y','Other specified malignant neoplasms of omentum','Y','2025-10-23 00:00:00'),(95550,11,'2B6A.Y','Other specified malignant neoplasms of oropharynx','Y','2025-10-23 00:00:00'),(95551,11,'2B66.Y','Other specified malignant neoplasms of other and unspecified parts of mouth','Y','2025-10-23 00:00:00'),(95552,11,'2B62.Y','Other specified malignant neoplasms of other and unspecified parts of tongue','Y','2025-10-23 00:00:00'),(95553,11,'2D12.Y','Other specified malignant neoplasms of other endocrine glands or related structures','Y','2025-10-23 00:00:00'),(95554,11,'2C11.2','Other specified malignant neoplasms of other or ill-defined digestive organs','Y','2025-10-23 00:00:00'),(95555,11,'2B6E.Y','Other specified malignant neoplasms of other or ill-defined sites in the lip, oral cavity or pharynx','Y','2025-10-23 00:00:00'),(95556,11,'2C29.1','Other specified malignant neoplasms of other or ill-defined sites in the respiratory system or intrathoracic organs','Y','2025-10-23 00:00:00'),(95557,11,'2C17.Y','Other specified malignant neoplasms of overlapping lesion of biliary tract','Y','2025-10-23 00:00:00'),(95558,11,'2C95.Y','Other specified malignant neoplasms of overlapping lesion of urinary organs','Y','2025-10-23 00:00:00'),(95559,11,'2C10.Y','Other specified malignant neoplasms of pancreas','Y','2025-10-23 00:00:00'),(95560,11,'2B67.Y','Other specified malignant neoplasms of parotid gland','Y','2025-10-23 00:00:00'),(95561,11,'2C18.Y','Other specified malignant neoplasms of perihilar bile duct','Y','2025-10-23 00:00:00'),(95562,11,'2C4Y','Other specified malignant neoplasms of peripheral nerves and autonomic nervous system','Y','2025-10-23 00:00:00'),(95563,11,'2C51.Y','Other specified malignant neoplasms of peritoneum','Y','2025-10-23 00:00:00'),(95564,11,'2B6B.2Y','Other specified malignant neoplasms of pharyngeal tonsil','Y','2025-10-23 00:00:00'),(95565,11,'2B6C.Y','Other specified malignant neoplasms of piriform sinus','Y','2025-10-23 00:00:00'),(95566,11,'2C75.Y','Other specified malignant neoplasms of placenta','Y','2025-10-23 00:00:00'),(95567,11,'2C82.Y','Other specified malignant neoplasms of prostate','Y','2025-10-23 00:00:00'),(95568,11,'2B91.Y','Other specified malignant neoplasms of rectosigmoid junction','Y','2025-10-23 00:00:00'),(95569,11,'2B92.Y','Other specified malignant neoplasms of rectum','Y','2025-10-23 00:00:00'),(95570,11,'2C91.Y','Other specified malignant neoplasms of renal pelvis','Y','2025-10-23 00:00:00'),(95571,11,'2C50.Y','Other specified malignant neoplasms of retroperitoneum','Y','2025-10-23 00:00:00'),(95572,11,'2C5Y','Other specified malignant neoplasms of retroperitoneum, peritoneum or omentum','Y','2025-10-23 00:00:00'),(95573,11,'2C83.Y','Other specified malignant neoplasms of scrotum','Y','2025-10-23 00:00:00'),(95574,11,'2C3Y','Other specified malignant neoplasms of skin','Y','2025-10-23 00:00:00'),(95575,11,'2B80.Y','Other specified malignant neoplasms of small intestine','Y','2025-10-23 00:00:00'),(95576,11,'2B80.2Y','Other specified malignant neoplasms of small intestine, site unspecified','Y','2025-10-23 00:00:00'),(95577,11,'2B72.Y','Other specified malignant neoplasms of stomach','Y','2025-10-23 00:00:00'),(95578,11,'2B68.2','Other specified malignant neoplasms of submandibular or sublingual glands','Y','2025-10-23 00:00:00'),(95579,11,'2C80.Y','Other specified malignant neoplasms of testis','Y','2025-10-23 00:00:00'),(95580,11,'2B80.0Y','Other specified malignant neoplasms of the duodenum','Y','2025-10-23 00:00:00'),(95581,11,'2C73.Y','Other specified malignant neoplasms of the ovary','Y','2025-10-23 00:00:00'),(95582,11,'2C26.Y','Other specified malignant neoplasms of the pleura','Y','2025-10-23 00:00:00'),(95583,11,'2C27.Y','Other specified malignant neoplasms of thymus','Y','2025-10-23 00:00:00'),(95584,11,'2D10.Y','Other specified malignant neoplasms of thyroid gland','Y','2025-10-23 00:00:00'),(95585,11,'2B69.1','Other specified malignant neoplasms of tonsil','Y','2025-10-23 00:00:00'),(95586,11,'2C24.Y','Other specified malignant neoplasms of trachea','Y','2025-10-23 00:00:00'),(95587,11,'2D4Y','Other specified malignant neoplasms of unspecified primary sites','Y','2025-10-23 00:00:00'),(95588,11,'2C92.Y','Other specified malignant neoplasms of ureter','Y','2025-10-23 00:00:00'),(95589,11,'2C93.Y','Other specified malignant neoplasms of urethra and paraurethral gland','Y','2025-10-23 00:00:00'),(95590,11,'2C9Y','Other specified malignant neoplasms of urinary tract','Y','2025-10-23 00:00:00'),(95591,11,'2C72.Y','Other specified malignant neoplasms of uterine ligament, parametrium, and uterine adnexa','Y','2025-10-23 00:00:00'),(95592,11,'2C71.Y','Other specified malignant neoplasms of vagina','Y','2025-10-23 00:00:00'),(95593,11,'2C70.Y','Other specified malignant neoplasms of vulva','Y','2025-10-23 00:00:00'),(95594,11,'2D3Y','Other specified malignant neoplasms, stated or presumed to be primary, of specified sites, except of lymphoid, haematopoietic, central nervous system or related tissues','Y','2025-10-23 00:00:00'),(95595,11,'DA0E.5Y','Other specified malocclusion','Y','2025-10-23 00:00:00'),(95596,11,'PJ2Y','Other specified maltreatment','Y','2025-10-23 00:00:00'),(95597,11,'1D60.1Y','Other specified Marburg disease','Y','2025-10-23 00:00:00'),(95598,11,'LD28.0Y','Other specified Marfan syndrome or Marfan-related disorders','Y','2025-10-23 00:00:00'),(95599,11,'2A21.Y','Other specified mastocytosis','Y','2025-10-23 00:00:00'),(95600,11,'AB11.Y','Other specified mastoiditis or related conditions','Y','2025-10-23 00:00:00'),(95601,11,'JA81.Y','Other specified maternal care related to complications specific to multiple gestation','Y','2025-10-23 00:00:00'),(95602,11,'JA8A.Y','Other specified maternal care related to placental disorders','Y','2025-10-23 00:00:00'),(95603,11,'JA89.Y','Other specified maternal care related to premature rupture of membranes','Y','2025-10-23 00:00:00'),(95604,11,'JA8C.Y','Other specified maternal care related to premature separation of placenta','Y','2025-10-23 00:00:00'),(95605,11,'JB64.Y','Other specified maternal diseases classifiable elsewhere but complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(95606,11,'JB63.Y','Other specified maternal infectious diseases classifiable elsewhere but complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(95607,11,'2A82.Y','Other specified mature B-cell neoplasm with leukaemic behaviour','Y','2025-10-23 00:00:00'),(95608,11,'2A85','Other specified mature B-cell neoplasms or lymphoma','Y','2025-10-23 00:00:00'),(95609,11,'2B2Y','Other specified mature T-cell or NK-cell neoplasms','Y','2025-10-23 00:00:00'),(95610,11,'XE5XB','Other specified mechanism with no counterpart','Y','2025-10-23 00:00:00'),(95611,11,'PK81.D','Other specified medical procedure associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(95612,11,'DB32.2Y','Other specified megacolon','Y','2025-10-23 00:00:00'),(95613,11,'3A01.Y','Other specified megaloblastic anaemia due to vitamin B12 deficiency','Y','2025-10-23 00:00:00'),(95614,11,'2C30.Y','Other specified melanoma of skin','Y','2025-10-23 00:00:00'),(95615,11,'2A01.0Y','Other specified meningiomas','Y','2025-10-23 00:00:00'),(95616,11,'1C1C.2Y','Other specified meningococcaemia','Y','2025-10-23 00:00:00'),(95617,11,'1C1C.Y','Other specified meningococcal disease','Y','2025-10-23 00:00:00'),(95618,11,'GA30.Y','Other specified menopausal and perimenopausal disorders','Y','2025-10-23 00:00:00'),(95619,11,'GA30.0Y','Other specified menopause','Y','2025-10-23 00:00:00'),(95620,11,'GA20.Y','Other specified menstrual cycle bleeding disorders','Y','2025-10-23 00:00:00'),(95621,11,'SB9Y','Other specified menstruation associated disorders (TM1)','Y','2025-10-23 00:00:00'),(95622,11,'SB8Y','Other specified menstruation cycle disorders (TM1)','Y','2025-10-23 00:00:00'),(95623,11,'SD8Y','Other specified mental and emotional disorders (TM1)','Y','2025-10-23 00:00:00'),(95624,11,'VV0Y','Other specified mental functions','Y','2025-10-23 00:00:00'),(95625,11,'MB2Y','Other specified mental or behavioural symptoms, signs or clinical findings','Y','2025-10-23 00:00:00'),(95626,11,'6E8Y','Other specified mental, behavioural or neurodevelopmental disorders','Y','2025-10-23 00:00:00'),(95627,11,'SG5Y','Other specified meridian and collateral patterns (TM1)','Y','2025-10-23 00:00:00'),(95628,11,'EB9Y','Other specified metabolic and nutritional disorders affecting the skin','Y','2025-10-23 00:00:00'),(95629,11,'5D0Y','Other specified metabolic disorders','Y','2025-10-23 00:00:00'),(95630,11,'5C90.Y','Other specified metabolic or transporter liver disease','Y','2025-10-23 00:00:00'),(95631,11,'MA15.Y','Other specified microbiological findings in blood, blood-forming organs, or the immune system','Y','2025-10-23 00:00:00'),(95632,11,'DB33.1Y','Other specified microscopic colitis','Y','2025-10-23 00:00:00'),(95633,11,'8A80.Y','Other specified migraine','Y','2025-10-23 00:00:00'),(95634,11,'8A80.1Y','Other specified migraine with aura','Y','2025-10-23 00:00:00'),(95635,11,'1B13.Y','Other specified miliary tuberculosis','Y','2025-10-23 00:00:00'),(95636,11,'5B5K.Y','Other specified mineral deficiency','Y','2025-10-23 00:00:00'),(95637,11,'5B91.Y','Other specified mineral excess','Y','2025-10-23 00:00:00'),(95638,11,'8E22.Y','Other specified minimally conscious state','Y','2025-10-23 00:00:00'),(95639,11,'LA21.Y','Other specified minor anomalies of pinnae','Y','2025-10-23 00:00:00'),(95640,11,'8C73.Y','Other specified mitochondrial myopathies','Y','2025-10-23 00:00:00'),(95641,11,'BB6Y','Other specified mitral valve disease','Y','2025-10-23 00:00:00'),(95642,11,'BB61.Y','Other specified mitral valve insufficiency','Y','2025-10-23 00:00:00'),(95643,11,'VW1Y','Other specified mobility','Y','2025-10-23 00:00:00'),(95644,11,'PL12.Y','Other specified mode of injury or harm associated with a surgical or other medical device, implant or graft','Y','2025-10-23 00:00:00'),(95645,11,'PL11.Y','Other specified mode of injury or harm associated with a surgical or other medical procedure','Y','2025-10-23 00:00:00'),(95646,11,'PL13.Y','Other specified mode of injury or harm associated with exposure to a drug, medicament or biological substance','Y','2025-10-23 00:00:00'),(95647,11,'JA02.Y','Other specified molar pregnancy','Y','2025-10-23 00:00:00'),(95648,11,'4A60.Y','Other specified monogenic autoinflammatory syndromes','Y','2025-10-23 00:00:00'),(95649,11,'8C11.Y','Other specified mononeuropathies of lower limb','Y','2025-10-23 00:00:00'),(95650,11,'8C10.Y','Other specified mononeuropathies of upper limb','Y','2025-10-23 00:00:00'),(95651,11,'6A8Y','Other specified mood disorders','Y','2025-10-23 00:00:00'),(95652,11,'DB32.Y','Other specified motility disorders of large intestine','Y','2025-10-23 00:00:00'),(95653,11,'DA21.Y','Other specified motility disorders of oesophagus','Y','2025-10-23 00:00:00'),(95654,11,'DA93.Y','Other specified motility disorders of small intestine','Y','2025-10-23 00:00:00'),(95655,11,'8B60.Y','Other specified motor neuron disease','Y','2025-10-23 00:00:00'),(95656,11,'8B6Y','Other specified motor neuron diseases or related disorders','Y','2025-10-23 00:00:00'),(95657,11,'MD11.8Y','Other specified mouth breathing','Y','2025-10-23 00:00:00'),(95658,11,'8A0Y','Other specified movement disorders','Y','2025-10-23 00:00:00'),(95659,11,'9A05.Y','Other specified movement disorders of eyelid','Y','2025-10-23 00:00:00'),(95660,11,'5C56.3Y','Other specified mucopolysaccharidosis','Y','2025-10-23 00:00:00'),(95661,11,'9A60.3Y','Other specified mucopurulent conjunctivitis','Y','2025-10-23 00:00:00'),(95662,11,'ED61.1Y','Other specified mucosal melanosis','Y','2025-10-23 00:00:00'),(95663,11,'JB24.Y','Other specified multiple delivery','Y','2025-10-23 00:00:00'),(95664,11,'LD2Y','Other specified multiple developmental anomalies or syndromes','Y','2025-10-23 00:00:00'),(95665,11,'LD24.6Y','Other specified multiple epiphyseal dysplasia or pseudoachondroplasia','Y','2025-10-23 00:00:00'),(95666,11,'NC5A.Y','Other specified multiple injuries of wrist or hand','Y','2025-10-23 00:00:00'),(95667,11,'2A83.Y','Other specified multiple myeloma and plasma cell neoplasms','Y','2025-10-23 00:00:00'),(95668,11,'QA47.6Y','Other specified multiple other than twins, born in hospital','Y','2025-10-23 00:00:00'),(95669,11,'8A40.Y','Other specified multiple sclerosis','Y','2025-10-23 00:00:00'),(95670,11,'8A4Y','Other specified multiple sclerosis or other white matter disorders','Y','2025-10-23 00:00:00'),(95671,11,'6C4F.4Y','Other specified multiple specified psychoactive substances withdrawal','Y','2025-10-23 00:00:00'),(95672,11,'8D87.0Y','Other specified multiple system atrophy','Y','2025-10-23 00:00:00'),(95673,11,'1D80.Y','Other specified mumps','Y','2025-10-23 00:00:00'),(95674,11,'8C70.Y','Other specified muscular dystrophy','Y','2025-10-23 00:00:00'),(95675,11,'ME81.Y','Other specified musculoskeletal chest pain','Y','2025-10-23 00:00:00'),(95676,11,'8C60.Y','Other specified myasthenia gravis','Y','2025-10-23 00:00:00'),(95677,11,'8C6Y','Other specified myasthenia gravis and neuromuscular junction disorders','Y','2025-10-23 00:00:00'),(95678,11,'1B2Y','Other specified mycobacterial diseases','Y','2025-10-23 00:00:00'),(95679,11,'1F2Y','Other specified mycoses','Y','2025-10-23 00:00:00'),(95680,11,'2A4Y','Other specified myelodysplastic and myeloproliferative neoplasms','Y','2025-10-23 00:00:00'),(95681,11,'2A3Y','Other specified myelodysplastic syndromes','Y','2025-10-23 00:00:00'),(95682,11,'2A60.4Y','Other specified myeloid proliferation associated with Down syndrome','Y','2025-10-23 00:00:00'),(95683,11,'1G01.Y','Other specified myiasis','Y','2025-10-23 00:00:00'),(95684,11,'8A06.Y','Other specified myoclonic disorders','Y','2025-10-23 00:00:00'),(95685,11,'8C71.Y','Other specified myotonic disorders','Y','2025-10-23 00:00:00'),(95686,11,'EE13.Y','Other specified nail disorder','Y','2025-10-23 00:00:00'),(95687,11,'CA0J.Y','Other specified nasal polyp','Y','2025-10-23 00:00:00'),(95688,11,'KB88.Y','Other specified necrotising enterocolitis of newborn','Y','2025-10-23 00:00:00'),(95689,11,'DA0C.3Y','Other specified necrotising periodontal diseases','Y','2025-10-23 00:00:00'),(95690,11,'1C1H.Y','Other specified necrotising ulcerative gingivitis','Y','2025-10-23 00:00:00'),(95691,11,'QC01.Y','Other specified need for immunization against certain single viral diseases','Y','2025-10-23 00:00:00'),(95692,11,'QC02.Y','Other specified need for immunization against certain specified single infectious diseases','Y','2025-10-23 00:00:00'),(95693,11,'QC03.Y','Other specified need for immunization against combinations of infectious diseases','Y','2025-10-23 00:00:00'),(95694,11,'QC00.Y','Other specified need for immunization against single bacterial diseases','Y','2025-10-23 00:00:00'),(95695,11,'KB26.Y','Other specified neonatal aspiration syndromes','Y','2025-10-23 00:00:00'),(95696,11,'KB40.Y','Other specified neonatal cardiac failure','Y','2025-10-23 00:00:00'),(95697,11,'KB00.Y','Other specified neonatal cerebral ischaemia','Y','2025-10-23 00:00:00'),(95698,11,'KA07.Y','Other specified neonatal dermatoses due to maternal antibodies','Y','2025-10-23 00:00:00'),(95699,11,'KB60.2Y','Other specified neonatal diabetes mellitus','Y','2025-10-23 00:00:00'),(95700,11,'KC22.Y','Other specified neonatal disorders of subcutaneous fat','Y','2025-10-23 00:00:00'),(95701,11,'KB05.Y','Other specified neonatal hydrocephalus','Y','2025-10-23 00:00:00'),(95702,11,'KA87.Y','Other specified neonatal hyperbilirubinaemia','Y','2025-10-23 00:00:00'),(95703,11,'KB60.3Y','Other specified neonatal hyperglycaemia','Y','2025-10-23 00:00:00'),(95704,11,'KB60.4Y','Other specified neonatal hypoglycaemia','Y','2025-10-23 00:00:00'),(95705,11,'KB89.Y','Other specified neonatal malabsorption syndromes','Y','2025-10-23 00:00:00'),(95706,11,'KA8F.Y','Other specified neonatal vitamin K deficiency','Y','2025-10-23 00:00:00'),(95707,11,'2F7A.Y','Other specified neoplasms of uncertain behaviour of endocrine glands','Y','2025-10-23 00:00:00'),(95708,11,'2F72.Y','Other specified neoplasms of uncertain behaviour of skin','Y','2025-10-23 00:00:00'),(95709,11,'8B9Y','Other specified nerve root or plexus disorders','Y','2025-10-23 00:00:00'),(95710,11,'6E0Y','Other specified neurocognitive disorders','Y','2025-10-23 00:00:00'),(95711,11,'6A0Y','Other specified neurodevelopmental disorders','Y','2025-10-23 00:00:00'),(95712,11,'LD2D.1Y','Other specified neurofibromatoses','Y','2025-10-23 00:00:00'),(95713,11,'PK95.2Y','Other specified neurological devices associated with injury or harm, prosthetic or other implants, materials or accessory devices','Y','2025-10-23 00:00:00'),(95714,11,'PK95.Y','Other specified neurological devices, implants or grafts associated with injury or harm','Y','2025-10-23 00:00:00'),(95715,11,'8D41.Y','Other specified neurological disorders due to an excess of micro or macro nutrients','Y','2025-10-23 00:00:00'),(95716,11,'8D40.Y','Other specified neurological disorders due to nutrient deficiency','Y','2025-10-23 00:00:00'),(95717,11,'8D43.Y','Other specified neurological disorders due to toxicity','Y','2025-10-23 00:00:00'),(95718,11,'KB0Y','Other specified neurological disorders specific to the perinatal or neonatal period','Y','2025-10-23 00:00:00'),(95719,11,'VV6Y','Other specified neuromusculoskeletal and movement-related functions','Y','2025-10-23 00:00:00'),(95720,11,'8A43.Y','Other specified neuromyelitis optica','Y','2025-10-23 00:00:00'),(95721,11,'FA38.1Y','Other specified neuropathic arthropathy','Y','2025-10-23 00:00:00'),(95722,11,'8E43.0Y','Other specified neuropathic pain','Y','2025-10-23 00:00:00'),(95723,11,'ED30.Y','Other specified neuropathic skin damage','Y','2025-10-23 00:00:00'),(95724,11,'8D43.2Y','Other specified neuropathy due to toxicity','Y','2025-10-23 00:00:00'),(95725,11,'EB2Y','Other specified neutrophilic dermatoses','Y','2025-10-23 00:00:00'),(95726,11,'2A20.Y','Other specified non mast cell myeloproliferative neoplasms','Y','2025-10-23 00:00:00'),(95727,11,'9C80.Y','Other specified non paralytic strabismus','Y','2025-10-23 00:00:00'),(95728,11,'DD50.Y','Other specified non-abdominal wall hernia','Y','2025-10-23 00:00:00'),(95729,11,'DB92.Y','Other specified non-alcoholic fatty liver disease','Y','2025-10-23 00:00:00'),(95730,11,'CA08.1Y','Other specified non-allergic rhinitis','Y','2025-10-23 00:00:00'),(95731,11,'BD41.Y','Other specified non-atherosclerotic chronic arterial occlusive disease','Y','2025-10-23 00:00:00'),(95732,11,'8D64.1Y','Other specified non-communicating hydrocephalus','Y','2025-10-23 00:00:00'),(95733,11,'8B43.Y','Other specified non-compressive vascular myelopathies','Y','2025-10-23 00:00:00'),(95734,11,'8A66.1Y','Other specified non-convulsive status epilepticus','Y','2025-10-23 00:00:00'),(95735,11,'1F2D.Y','Other specified non-dermatophyte superficial dermatomycoses','Y','2025-10-23 00:00:00'),(95736,11,'GB80.Y','Other specified nonfamilial nongenetic cystic kidney disease','Y','2025-10-23 00:00:00'),(95737,11,'8A03.2Y','Other specified non-hereditary degenerative ataxia','Y','2025-10-23 00:00:00'),(95738,11,'DB33.Y','Other specified noninfectious colitis or proctitis','Y','2025-10-23 00:00:00'),(95739,11,'DA94.Y','Other specified noninfectious enteritis or ulcer of small intestine','Y','2025-10-23 00:00:00'),(95740,11,'DA01.1Y','Other specified noninfectious erosive or ulcerative disorders of oral mucosa','Y','2025-10-23 00:00:00'),(95741,11,'AA1Y','Other specified noninfectious inflammation of external ear','Y','2025-10-23 00:00:00'),(95742,11,'GA1Y','Other specified noninflammatory disorders of female genital tract','Y','2025-10-23 00:00:00'),(95743,11,'EF02.Y','Other specified noninflammatory disorders of subcutaneous fat','Y','2025-10-23 00:00:00'),(95744,11,'AA4Y','Other specified noninflammatory disorders of the external ear','Y','2025-10-23 00:00:00'),(95745,11,'1F20.1Y','Other specified non-invasive aspergillosis','Y','2025-10-23 00:00:00'),(95746,11,'GA21.Y','Other specified nonmenstrual bleeding disorders','Y','2025-10-23 00:00:00'),(95747,11,'DD31.0Y','Other specified non-occlusive mesenteric ischaemia','Y','2025-10-23 00:00:00'),(95748,11,'4A4Y','Other specified nonorgan specific systemic autoimmune disorders','Y','2025-10-23 00:00:00'),(95749,11,'BB71.Y','Other specified nonrheumatic aortic valve insufficiency','Y','2025-10-23 00:00:00'),(95750,11,'BB62.Y','Other specified nonrheumatic mitral valve prolapse','Y','2025-10-23 00:00:00'),(95751,11,'BB91.Y','Other specified nonrheumatic pulmonary valve insufficiency','Y','2025-10-23 00:00:00'),(95752,11,'BB90.Y','Other specified nonrheumatic pulmonary valve stenosis','Y','2025-10-23 00:00:00'),(95753,11,'BB81.Y','Other specified nonrheumatic tricuspid valve insufficiency','Y','2025-10-23 00:00:00'),(95754,11,'BB80.Y','Other specified nonrheumatic tricuspid valve stenosis','Y','2025-10-23 00:00:00'),(95755,11,'BB82.Y','Other specified nonrheumatic tricuspid valve stenosis with insufficiency','Y','2025-10-23 00:00:00'),(95756,11,'DA90.Y','Other specified nonstructural developmental anomalies of small intestine','Y','2025-10-23 00:00:00'),(95757,11,'1D0Y','Other specified non-viral and unspecified infections of the central nervous system','Y','2025-10-23 00:00:00'),(95758,11,'LD50.Y','Other specified number anomalies of chromosome X','Y','2025-10-23 00:00:00'),(95759,11,'LD52.Y','Other specified number anomalies of chromosome Y','Y','2025-10-23 00:00:00'),(95760,11,'5B9Y','Other specified nutrient excesses','Y','2025-10-23 00:00:00'),(95761,11,'SH0Y','Other specified nutrient phase patterns (TM1)','Y','2025-10-23 00:00:00'),(95762,11,'5C3Y','Other specified nutritional disorders','Y','2025-10-23 00:00:00'),(95763,11,'8D4Y','Other specified nutritional or toxic disorders of the nervous system','Y','2025-10-23 00:00:00'),(95764,11,'9C84.Y','Other specified nystagmus','Y','2025-10-23 00:00:00'),(95765,11,'9C84.5Y','Other specified nystagmus occurring in visual system disorders','Y','2025-10-23 00:00:00'),(95766,11,'5B81.Y','Other specified obesity','Y','2025-10-23 00:00:00'),(95767,11,'6B2Y','Other specified obsessive-compulsive or related disorders','Y','2025-10-23 00:00:00'),(95768,11,'JB6Y','Other specified obstetric conditions, not elsewhere classified','Y','2025-10-23 00:00:00'),(95769,11,'JB42.Y','Other specified obstetric embolism','Y','2025-10-23 00:00:00'),(95770,11,'PK96.Y','Other specified obstetric or gynaecological devices, implants or grafts associated with injury or harm','Y','2025-10-23 00:00:00'),(95771,11,'JB0A.Y','Other specified obstetric trauma','Y','2025-10-23 00:00:00'),(95772,11,'DC10.0Y','Other specified obstruction of gallbladder or bile ducts','Y','2025-10-23 00:00:00'),(95773,11,'DB30.Y','Other specified obstruction of large intestine','Y','2025-10-23 00:00:00'),(95774,11,'DA91.Y','Other specified obstruction of small intestine','Y','2025-10-23 00:00:00'),(95775,11,'DA91.3Y','Other specified obstructive ileus of small intestine due to impaction','Y','2025-10-23 00:00:00'),(95776,11,'GB56.Y','Other specified obstructive or reflux nephropathy','Y','2025-10-23 00:00:00'),(95777,11,'QD84.Y','Other specified occupational exposure to risk-factors','Y','2025-10-23 00:00:00'),(95778,11,'DA25.Y','Other specified oesophageal ulcer','Y','2025-10-23 00:00:00'),(95779,11,'DA24.Y','Other specified oesophagitis','Y','2025-10-23 00:00:00'),(95780,11,'KB81.Y','Other specified oesophagitis in newborn','Y','2025-10-23 00:00:00'),(95781,11,'1F6A.Y','Other specified onchocerciasis','Y','2025-10-23 00:00:00'),(95782,11,'NB51.Y','Other specified open wound of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(95783,11,'ND12.Y','Other specified open wound of ankle or foot','Y','2025-10-23 00:00:00'),(95784,11,'NC52.0Y','Other specified open wound of finger or thumb','Y','2025-10-23 00:00:00'),(95785,11,'NC31.Y','Other specified open wound of forearm','Y','2025-10-23 00:00:00'),(95786,11,'NA01.Y','Other specified open wound of head','Y','2025-10-23 00:00:00'),(95787,11,'NC71.Y','Other specified open wound of hip or thigh','Y','2025-10-23 00:00:00'),(95788,11,'NC91.Y','Other specified open wound of knee or lower leg','Y','2025-10-23 00:00:00'),(95789,11,'NA21.Y','Other specified open wound of neck','Y','2025-10-23 00:00:00'),(95790,11,'NC52.1Y','Other specified open wound of other parts of wrist or hand','Y','2025-10-23 00:00:00'),(95791,11,'NC11.Y','Other specified open wound of shoulder or upper arm','Y','2025-10-23 00:00:00'),(95792,11,'NA81.Y','Other specified open wound of thorax','Y','2025-10-23 00:00:00'),(95793,11,'ND12.6Y','Other specified open wound of toe','Y','2025-10-23 00:00:00'),(95794,11,'PK97.Y','Other specified ophthalmic devices, implants or grafts associated with injury or harm','Y','2025-10-23 00:00:00'),(95795,11,'9C40.AY','Other specified optic disc swelling','Y','2025-10-23 00:00:00'),(95796,11,'9C40.1Y','Other specified optic neuritis','Y','2025-10-23 00:00:00'),(95797,11,'EC20.0Y','Other specified or unclassifiable non-syndromic ichthyosis','Y','2025-10-23 00:00:00'),(95798,11,'NA02.2Y','Other specified orbital fracture','Y','2025-10-23 00:00:00'),(95799,11,'9A21.Y','Other specified orbital infection','Y','2025-10-23 00:00:00'),(95800,11,'9A22.Y','Other specified orbital inflammation','Y','2025-10-23 00:00:00'),(95801,11,'GB02.Y','Other specified orchitis or epididymitis','Y','2025-10-23 00:00:00'),(95802,11,'SB2Y','Other specified organ system disorders (TM1)','Y','2025-10-23 00:00:00'),(95803,11,'SG1Y','Other specified organ system patterns (TM1)','Y','2025-10-23 00:00:00'),(95804,11,'5C50.EY','Other specified organic aciduria','Y','2025-10-23 00:00:00'),(95805,11,'HA02.Y','Other specified orgasmic dysfunctions','Y','2025-10-23 00:00:00'),(95806,11,'LD25.0Y','Other specified oromandibular-limb anomaly syndrome','Y','2025-10-23 00:00:00'),(95807,11,'PK99.Y','Other specified orthopaedic devices, implants or grafts associated with injury or harm','Y','2025-10-23 00:00:00'),(95808,11,'FB84.Y','Other specified osteomyelitis or osteitis','Y','2025-10-23 00:00:00'),(95809,11,'FB81.Y','Other specified osteonecrosis','Y','2025-10-23 00:00:00'),(95810,11,'FB8Y','Other specified osteopathies or chondropathies','Y','2025-10-23 00:00:00'),(95811,11,'FB83.0Y','Other specified osteopenia','Y','2025-10-23 00:00:00'),(95812,11,'FB83.1Y','Other specified osteoporosis','Y','2025-10-23 00:00:00'),(95813,11,'DB31.Y','Other specified other acquired anatomical alterations of large intestine','Y','2025-10-23 00:00:00'),(95814,11,'DA92.Y','Other specified other acquired anatomical alterations of small intestine','Y','2025-10-23 00:00:00'),(95815,11,'1F90.Y','Other specified other and unspecified infestation by parasitic worms','Y','2025-10-23 00:00:00'),(95816,11,'MG50.CY','Other specified other antibiotic resistant Enterobacterales','Y','2025-10-23 00:00:00'),(95817,11,'SD6Y','Other specified other body system disorders (TM1)','Y','2025-10-23 00:00:00'),(95818,11,'SC2Y','Other specified other female reproductive system associated disorders (TM1)','Y','2025-10-23 00:00:00'),(95819,11,'PK9C.3Y','Other specified other or unspecified medical devices associated with injury or harm, surgical instruments, materials or devices','Y','2025-10-23 00:00:00'),(95820,11,'AA3Y','Other specified otitis externa','Y','2025-10-23 00:00:00'),(95821,11,'AB0Y','Other specified otitis media','Y','2025-10-23 00:00:00'),(95822,11,'PK92.Y','Other specified otorhinolaryngological devices, implants or grafts associated with injury or harm','Y','2025-10-23 00:00:00'),(95823,11,'5A80.Y','Other specified ovarian dysfunction','Y','2025-10-23 00:00:00'),(95824,11,'4A43.Y','Other specified overlap non-organ specific systemic autoimmune disease','Y','2025-10-23 00:00:00'),(95825,11,'5C1Y','Other specified overweight, obesity or specific nutrient excesses','Y','2025-10-23 00:00:00'),(95826,11,'GA20.2Y','Other specified ovulation bleeding','Y','2025-10-23 00:00:00'),(95827,11,'NE82.0Y','Other specified pacemaker or implantable cardioverter defibrillator complication','Y','2025-10-23 00:00:00'),(95828,11,'NE82.1Y','Other specified pacemaker or implantable cardioverter defibrillator dysfunction','Y','2025-10-23 00:00:00'),(95829,11,'NE82.2Y','Other specified pacemaker or implantable cardioverter defibrillator lead complication','Y','2025-10-23 00:00:00'),(95830,11,'8E41.Y','Other specified pachymeningitis','Y','2025-10-23 00:00:00'),(95831,11,'FB85.Y','Other specified Paget disease of bone','Y','2025-10-23 00:00:00'),(95832,11,'8E43.Y','Other specified pain disorders','Y','2025-10-23 00:00:00'),(95833,11,'GA34.0Y','Other specified pain related to vulva, vagina or pelvic floor','Y','2025-10-23 00:00:00'),(95834,11,'SA1Y','Other specified palpitation disorders (TM1)','Y','2025-10-23 00:00:00'),(95835,11,'9C83.0Y','Other specified palsy of conjugate gaze','Y','2025-10-23 00:00:00'),(95836,11,'9C20.Y','Other specified panuveitis','Y','2025-10-23 00:00:00'),(95837,11,'9A60.0Y','Other specified papillary conjunctivitis','Y','2025-10-23 00:00:00'),(95838,11,'1F2E.Y','Other specified paracoccidioidomycosis','Y','2025-10-23 00:00:00'),(95839,11,'MB5Y','Other specified paralytic symptoms','Y','2025-10-23 00:00:00'),(95840,11,'8E4A.Y','Other specified paraneoplastic or autoimmune disorders of the nervous system','Y','2025-10-23 00:00:00'),(95841,11,'9B71.4Y','Other specified paraneoplastic retinopathy','Y','2025-10-23 00:00:00'),(95842,11,'1G2Y','Other specified parasitic diseases','Y','2025-10-23 00:00:00'),(95843,11,'KA64.Y','Other specified parasitic diseases in the fetus or newborn','Y','2025-10-23 00:00:00'),(95844,11,'7B0Y','Other specified parasomnia disorders','Y','2025-10-23 00:00:00'),(95845,11,'7B01.Y','Other specified parasomnias related to REM sleep','Y','2025-10-23 00:00:00'),(95846,11,'8A00.0Y','Other specified Parkinson disease','Y','2025-10-23 00:00:00'),(95847,11,'8A00.Y','Other specified parkinsonism','Y','2025-10-23 00:00:00'),(95848,11,'LD24.JY','Other specified patellar dysostoses','Y','2025-10-23 00:00:00'),(95849,11,'9D42.Y','Other specified patterns of visual field impairment','Y','2025-10-23 00:00:00'),(95850,11,'GC40.4Y','Other specified pelvic floor muscle disruption','Y','2025-10-23 00:00:00'),(95851,11,'EB41.Y','Other specified pemphigoid','Y','2025-10-23 00:00:00'),(95852,11,'EB40.Y','Other specified pemphigus','Y','2025-10-23 00:00:00'),(95853,11,'EB40.0Y','Other specified pemphigus vulgaris','Y','2025-10-23 00:00:00'),(95854,11,'EE70.Y','Other specified perforating dermatoses','Y','2025-10-23 00:00:00'),(95855,11,'DA20.3Y','Other specified perforation of oesophagus','Y','2025-10-23 00:00:00'),(95856,11,'AB13.Y','Other specified perforation of tympanic membrane','Y','2025-10-23 00:00:00'),(95857,11,'DA09.6Y','Other specified periapical abscess','Y','2025-10-23 00:00:00'),(95858,11,'DA09.7Y','Other specified periapical periodontitis','Y','2025-10-23 00:00:00'),(95859,11,'BB2Y','Other specified pericarditis','Y','2025-10-23 00:00:00'),(95860,11,'8C74.Y','Other specified periodic paralyses or disorders of muscle membrane excitability','Y','2025-10-23 00:00:00'),(95861,11,'8C74.1Y','Other specified periodic paralysis','Y','2025-10-23 00:00:00'),(95862,11,'DA0C.Y','Other specified periodontal disease','Y','2025-10-23 00:00:00'),(95863,11,'LA90.4Y','Other specified peripheral arterial malformations','Y','2025-10-23 00:00:00'),(95864,11,'LA90.3Y','Other specified peripheral arteriovenous malformations','Y','2025-10-23 00:00:00'),(95865,11,'9D42.2Y','Other specified peripheral field deficit','Y','2025-10-23 00:00:00'),(95866,11,'LA90.2Y','Other specified peripheral venous malformations','Y','2025-10-23 00:00:00'),(95867,11,'5C57.Y','Other specified peroxisomal diseases','Y','2025-10-23 00:00:00'),(95868,11,'GB42.Y','Other specified persistent proteinuria or albuminuria','Y','2025-10-23 00:00:00'),(95869,11,'QC20.Y','Other specified person consulting on behalf of another person','Y','2025-10-23 00:00:00'),(95870,11,'QC44.Y','Other specified personal history of diseases of the immune system','Y','2025-10-23 00:00:00'),(95871,11,'QC42.Y','Other specified personal history of infectious or parasitic diseases','Y','2025-10-23 00:00:00'),(95872,11,'QE82.Y','Other specified personal history of maltreatment','Y','2025-10-23 00:00:00'),(95873,11,'QC48.Y','Other specified personal history of medical treatment','Y','2025-10-23 00:00:00'),(95874,11,'QC8Y','Other specified personal or family history or late effect of prior health problems','Y','2025-10-23 00:00:00'),(95875,11,'LD2D.Y','Other specified phakomatoses or hamartoneoplastic syndromes','Y','2025-10-23 00:00:00'),(95876,11,'1C17.0Y','Other specified pharyngeal or tonsillar diphtheria','Y','2025-10-23 00:00:00'),(95877,11,'5C50.0Y','Other specified phenylketonuria','Y','2025-10-23 00:00:00'),(95878,11,'EJ30.Y','Other specified photodermatoses','Y','2025-10-23 00:00:00'),(95879,11,'PK9A.Y','Other specified physical medicine devices associated with injury or harm','Y','2025-10-23 00:00:00'),(95880,11,'PK9A.2Y','Other specified physical medicine devices associated with injury or harm, prosthetic or other implants, materials or accessory devices','Y','2025-10-23 00:00:00'),(95881,11,'1F05.Y','Other specified picornavirus infections presenting in the skin or mucous membranes','Y','2025-10-23 00:00:00'),(95882,11,'1B93.Y','Other specified plague','Y','2025-10-23 00:00:00'),(95883,11,'CB2Y','Other specified pleural, diaphragm or mediastinal disorders','Y','2025-10-23 00:00:00'),(95884,11,'CA60.Y','Other specified pneumoconiosis','Y','2025-10-23 00:00:00'),(95885,11,'CA60.0Y','Other specified pneumoconiosis due to dust containing silica','Y','2025-10-23 00:00:00'),(95886,11,'CA40.Y','Other specified pneumonia','Y','2025-10-23 00:00:00'),(95887,11,'CA7Y','Other specified pneumonitis','Y','2025-10-23 00:00:00'),(95888,11,'CA71.Y','Other specified pneumonitis due to solids and liquids','Y','2025-10-23 00:00:00'),(95889,11,'CB21.Y','Other specified pneumothorax','Y','2025-10-23 00:00:00'),(95890,11,'KA8A.Y','Other specified polycythaemia neonatorum','Y','2025-10-23 00:00:00'),(95891,11,'LB78.Y','Other specified polydactyly','Y','2025-10-23 00:00:00'),(95892,11,'5B0Y','Other specified polyglandular dysfunction','Y','2025-10-23 00:00:00'),(95893,11,'4A41.1Y','Other specified polymyositis','Y','2025-10-23 00:00:00'),(95894,11,'8C0Y','Other specified polyneuropathy','Y','2025-10-23 00:00:00'),(95895,11,'DB35.Y','Other specified polyp of large intestine','Y','2025-10-23 00:00:00'),(95896,11,'AB1A.Y','Other specified polyp of middle ear','Y','2025-10-23 00:00:00'),(95897,11,'LD42.Y','Other specified polyploidies','Y','2025-10-23 00:00:00'),(95898,11,'DA98.Y','Other specified polyps of small intestine','Y','2025-10-23 00:00:00'),(95899,11,'EB90.3Y','Other specified porphyria or pseudoporphyria affecting the skin','Y','2025-10-23 00:00:00'),(95900,11,'5C58.1Y','Other specified porphyrias','Y','2025-10-23 00:00:00'),(95901,11,'DB98.7Y','Other specified portal hypertension','Y','2025-10-23 00:00:00'),(95902,11,'FA12.Y','Other specified postinfectious arthropathies','Y','2025-10-23 00:00:00'),(95903,11,'5D40.0Y','Other specified postirridation hypothyroidism','Y','2025-10-23 00:00:00'),(95904,11,'KC5Y','Other specified postnatal iatrogenic skin injury','Y','2025-10-23 00:00:00'),(95905,11,'KB86.Y','Other specified postnatal intestinal perforation','Y','2025-10-23 00:00:00'),(95906,11,'QA48.Y','Other specified postpartum care or examination','Y','2025-10-23 00:00:00'),(95907,11,'JA43.Y','Other specified postpartum haemorrhage','Y','2025-10-23 00:00:00'),(95908,11,'5D40.Y','Other specified postprocedural hypothyroidism','Y','2025-10-23 00:00:00'),(95909,11,'XE5WL','Other specified powered or motorised watercraft as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(95910,11,'1A9Y','Other specified predominantly sexually transmitted infections','Y','2025-10-23 00:00:00'),(95911,11,'JA20.Y','Other specified pre-existing hypertension complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(95912,11,'SC0Y','Other specified pregnancy associated disorders (TM1)','Y','2025-10-23 00:00:00'),(95913,11,'JA65.1Y','Other specified pregnancy dermatoses','Y','2025-10-23 00:00:00'),(95914,11,'GA34.4Y','Other specified premenstrual disturbances','Y','2025-10-23 00:00:00'),(95915,11,'KB85.Y','Other specified prenatal intrauterine intestinal perforation','Y','2025-10-23 00:00:00'),(95916,11,'QB50.0Y','Other specified presence of electronic cardiac devices','Y','2025-10-23 00:00:00'),(95917,11,'QB61.3Y','Other specified presence of enterostomy','Y','2025-10-23 00:00:00'),(95918,11,'JB00.Y','Other specified preterm labour or delivery','Y','2025-10-23 00:00:00'),(95919,11,'9C61.1Y','Other specified primary angle closure and angle closure glaucoma','Y','2025-10-23 00:00:00'),(95920,11,'DB96.1Y','Other specified primary biliary cholangitis','Y','2025-10-23 00:00:00'),(95921,11,'2B0Y','Other specified primary cutaneous mature T-cell or NK-cell lymphomas and lymphoproliferative disorders','Y','2025-10-23 00:00:00'),(95922,11,'8C7Y','Other specified primary disorders of muscles','Y','2025-10-23 00:00:00'),(95923,11,'8A02.0Y','Other specified primary dystonia','Y','2025-10-23 00:00:00'),(95924,11,'4A0Y','Other specified primary immunodeficiencies','Y','2025-10-23 00:00:00'),(95925,11,'4A00.Y','Other specified primary immunodeficiencies due to disorders of innate immunity','Y','2025-10-23 00:00:00'),(95926,11,'CB04.Y','Other specified primary interstitial lung diseases specific to infancy or childhood','Y','2025-10-23 00:00:00'),(95927,11,'9C61.0Y','Other specified primary open-angle glaucoma','Y','2025-10-23 00:00:00'),(95928,11,'DC50.01','Other specified primary peritonitis','Y','2025-10-23 00:00:00'),(95929,11,'6A2Y','Other specified primary psychotic disorder','Y','2025-10-23 00:00:00'),(95930,11,'DB96.2Y','Other specified primary sclerosing cholangitis','Y','2025-10-23 00:00:00'),(95931,11,'8A05.0Y','Other specified primary tics or tic disorders','Y','2025-10-23 00:00:00'),(95932,11,'DA94.0Y','Other specified primary ulcer of small intestine','Y','2025-10-23 00:00:00'),(95933,11,'SE7Y','Other specified principle-based patterns (TM1)','Y','2025-10-23 00:00:00'),(95934,11,'PH79','Other specified privation with undetermined intent','Y','2025-10-23 00:00:00'),(95935,11,'QE50.Y','Other specified problem associated with interpersonal interactions','Y','2025-10-23 00:00:00'),(95936,11,'QD83.Y','Other specified problem with employment conditions','Y','2025-10-23 00:00:00'),(95937,11,'QE6Y','Other specified problems associated with absence, loss or death of others','Y','2025-10-23 00:00:00'),(95938,11,'QD9Y','Other specified problems associated with education','Y','2025-10-23 00:00:00'),(95939,11,'QD8Y','Other specified problems associated with employment or unemployment','Y','2025-10-23 00:00:00'),(95940,11,'QD5Y','Other specified problems associated with finances','Y','2025-10-23 00:00:00'),(95941,11,'QE8Y','Other specified problems associated with harmful or traumatic events','Y','2025-10-23 00:00:00'),(95942,11,'QE5Y','Other specified problems associated with relationships','Y','2025-10-23 00:00:00'),(95943,11,'QE3Y','Other specified problems associated with social insurance or welfare','Y','2025-10-23 00:00:00'),(95944,11,'QE0Y','Other specified problems associated with social or cultural environment','Y','2025-10-23 00:00:00'),(95945,11,'QD7Y','Other specified problems associated with the environment','Y','2025-10-23 00:00:00'),(95946,11,'QE4Y','Other specified problems associated with the justice system','Y','2025-10-23 00:00:00'),(95947,11,'QE9Y','Other specified problems associated with upbringing','Y','2025-10-23 00:00:00'),(95948,11,'MF40.Y','Other specified problems of male genital organs','Y','2025-10-23 00:00:00'),(95949,11,'8A21.Y','Other specified progressive focal atrophies','Y','2025-10-23 00:00:00'),(95950,11,'QC05.Y','Other specified prophylactic measures','Y','2025-10-23 00:00:00'),(95951,11,'MF96.Y','Other specified proteinuria','Y','2025-10-23 00:00:00'),(95952,11,'JB63.6Y','Other specified protozoal diseases complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(95953,11,'1A3Y','Other specified protozoal intestinal infections','Y','2025-10-23 00:00:00'),(95954,11,'FA21.Y','Other specified psoriatic arthritis','Y','2025-10-23 00:00:00'),(95955,11,'6C4E.2','Other specified psychoactive substance dependence','Y','2025-10-23 00:00:00'),(95956,11,'6C4E.20','Other specified psychoactive substance dependence, current use','Y','2025-10-23 00:00:00'),(95957,11,'6C4E.21','Other specified psychoactive substance dependence, early full remission','Y','2025-10-23 00:00:00'),(95958,11,'6C4E.23','Other specified psychoactive substance dependence, sustained full remission','Y','2025-10-23 00:00:00'),(95959,11,'6C4E.22','Other specified psychoactive substance dependence, sustained partial remission','Y','2025-10-23 00:00:00'),(95960,11,'6C4E.2Z','Other specified psychoactive substance dependence, unspecified','Y','2025-10-23 00:00:00'),(95961,11,'6C4E.3','Other specified psychoactive substance intoxication','Y','2025-10-23 00:00:00'),(95962,11,'6C4E.4','Other specified psychoactive substance withdrawal','Y','2025-10-23 00:00:00'),(95963,11,'6C4E.40','Other specified psychoactive substance withdrawal, uncomplicated','Y','2025-10-23 00:00:00'),(95964,11,'6C4E.4Z','Other specified psychoactive substance withdrawal, unspecified','Y','2025-10-23 00:00:00'),(95965,11,'6C4E.41','Other specified psychoactive substance withdrawal, with perceptual disturbances','Y','2025-10-23 00:00:00'),(95966,11,'6C4E.43','Other specified psychoactive substance withdrawal, with perceptual disturbances and seizures','Y','2025-10-23 00:00:00'),(95967,11,'6C4E.42','Other specified psychoactive substance withdrawal, with seizures','Y','2025-10-23 00:00:00'),(95968,11,'6E40.Y','Other specified psychological or behavioural factors affecting disorders or diseases classified elsewhere','Y','2025-10-23 00:00:00'),(95969,11,'ED2Y','Other specified psychological or psychiatric conditions affecting the skin','Y','2025-10-23 00:00:00'),(95970,11,'SC1Y','Other specified puerperium associated disorders (TM1)','Y','2025-10-23 00:00:00'),(95971,11,'KB27.Y','Other specified pulmonary air leak or related conditions originating in the perinatal period','Y','2025-10-23 00:00:00'),(95972,11,'CB02.Y','Other specified pulmonary eosinophilia','Y','2025-10-23 00:00:00'),(95973,11,'KB28.Y','Other specified pulmonary haemorrhage originating in the perinatal period','Y','2025-10-23 00:00:00'),(95974,11,'BB0Y','Other specified pulmonary heart disease or diseases of pulmonary circulation','Y','2025-10-23 00:00:00'),(95975,11,'BB9Y','Other specified pulmonary valve disease','Y','2025-10-23 00:00:00'),(95976,11,'EF3Y','Other specified purpura','Y','2025-10-23 00:00:00'),(95977,11,'EA90.4Y','Other specified pustular psoriasis','Y','2025-10-23 00:00:00'),(95978,11,'1B7Y','Other specified pyogenic bacterial infection of skin and subcutaneous tissue','Y','2025-10-23 00:00:00'),(95979,11,'SE9Y','Other specified qi patterns (TM1)','Y','2025-10-23 00:00:00'),(95980,11,'SG9Y','Other specified qi phase patterns (TM1)','Y','2025-10-23 00:00:00'),(95981,11,'SD7Y','Other specified qi, blood and fluid disorders (TM1)','Y','2025-10-23 00:00:00'),(95982,11,'3B62.Y','Other specified qualitative platelet defects','Y','2025-10-23 00:00:00'),(95983,11,'8B93.Y','Other specified radiculopathy','Y','2025-10-23 00:00:00'),(95984,11,'PK98.Y','Other specified radiological devices associated with injury or harm','Y','2025-10-23 00:00:00'),(95985,11,'ME66.6Y','Other specified rash','Y','2025-10-23 00:00:00'),(95986,11,'EH93.Y','Other specified reaction to foreign body in the skin','Y','2025-10-23 00:00:00'),(95987,11,'FA11.Y','Other specified reactive arthropathies','Y','2025-10-23 00:00:00'),(95988,11,'6A71.Y','Other specified recurrent depressive disorder','Y','2025-10-23 00:00:00'),(95989,11,'LB9A.Y','Other specified reduction defects of lower limb','Y','2025-10-23 00:00:00'),(95990,11,'LB99.Y','Other specified reduction defects of upper limb','Y','2025-10-23 00:00:00'),(95991,11,'QE50.1Y','Other specified relationships with teachers or classmates','Y','2025-10-23 00:00:00'),(95992,11,'VD43.Y','Other specified remunerative employment [WHODAS]','Y','2025-10-23 00:00:00'),(95993,11,'LB30.0Y','Other specified renal agenesis or other reduction defects of kidney','Y','2025-10-23 00:00:00'),(95994,11,'GB90.4Y','Other specified renal tubular function disorders','Y','2025-10-23 00:00:00'),(95995,11,'GB5Y','Other specified renal tubulo-interstitial diseases','Y','2025-10-23 00:00:00'),(95996,11,'CA81.Y','Other specified respiratory conditions due to inhalation of chemicals, gases, fumes or vapours','Y','2025-10-23 00:00:00'),(95997,11,'CA82.Y','Other specified respiratory conditions due to other external agents','Y','2025-10-23 00:00:00'),(95998,11,'CB0Y','Other specified respiratory diseases principally affecting the lung interstitium','Y','2025-10-23 00:00:00'),(95999,11,'KB2Y','Other specified respiratory disorders specific to the perinatal or neonatal period','Y','2025-10-23 00:00:00'),(96000,11,'KB23.Y','Other specified respiratory distress of newborn','Y','2025-10-23 00:00:00'),(96001,11,'KB23.0Y','Other specified respiratory distress syndrome of newborn','Y','2025-10-23 00:00:00'),(96002,11,'BC43.2Y','Other specified restrictive cardiomyopathy','Y','2025-10-23 00:00:00'),(96003,11,'9B73.Y','Other specified retinal detachments or breaks','Y','2025-10-23 00:00:00'),(96004,11,'9B74.Y','Other specified retinal vascular occlusions','Y','2025-10-23 00:00:00'),(96005,11,'9B71.Y','Other specified retinopathy','Y','2025-10-23 00:00:00'),(96006,11,'9B73.1Y','Other specified retinoschisis','Y','2025-10-23 00:00:00'),(96007,11,'FB51.4Y','Other specified retroperitoneal fibrosis','Y','2025-10-23 00:00:00'),(96008,11,'1F51.1Y','Other specified rhodesiense trypanosomiasis','Y','2025-10-23 00:00:00'),(96009,11,'1C3Y','Other specified rickettsioses','Y','2025-10-23 00:00:00'),(96010,11,'ED90.0Y','Other specified rosacea','Y','2025-10-23 00:00:00'),(96011,11,'ED90.Y','Other specified rosacea-like disorders','Y','2025-10-23 00:00:00'),(96012,11,'QA03.Y','Other specified routine general health check-up of defined subpopulation','Y','2025-10-23 00:00:00'),(96013,11,'4B20.Y','Other specified sarcoidosis','Y','2025-10-23 00:00:00'),(96014,11,'2B5F.1Y','Other specified sarcoma, not elsewhere classified of retroperitoneum or peritoneum','Y','2025-10-23 00:00:00'),(96015,11,'EG30.Y','Other specified scalp disorders not elsewhere classifiable','Y','2025-10-23 00:00:00'),(96016,11,'6A21.Y','Other specified schizoaffective disorder','Y','2025-10-23 00:00:00'),(96017,11,'9C61.3Y','Other specified secondary angle closure glaucoma','Y','2025-10-23 00:00:00'),(96018,11,'8A01.1Y','Other specified secondary chorea','Y','2025-10-23 00:00:00'),(96019,11,'BD53.Y','Other specified secondary disorders of arteries and arterioles','Y','2025-10-23 00:00:00'),(96020,11,'8A02.1Y','Other specified secondary dystonia','Y','2025-10-23 00:00:00'),(96021,11,'FA25.1Y','Other specified secondary gout','Y','2025-10-23 00:00:00'),(96022,11,'8A84.Y','Other specified secondary headache','Y','2025-10-23 00:00:00'),(96023,11,'BA04.Y','Other specified secondary hypertension','Y','2025-10-23 00:00:00'),(96024,11,'6E6Y','Other specified secondary mental or behavioural syndrome','Y','2025-10-23 00:00:00'),(96025,11,'8C8Y','Other specified secondary myopathies','Y','2025-10-23 00:00:00'),(96026,11,'6E60.Y','Other specified secondary neurodevelopmental syndrome','Y','2025-10-23 00:00:00'),(96027,11,'9C61.2Y','Other specified secondary open-angle glaucoma','Y','2025-10-23 00:00:00'),(96028,11,'8A00.2Y','Other specified secondary parkinsonism','Y','2025-10-23 00:00:00'),(96029,11,'DC50.1Y','Other specified secondary peritonitis','Y','2025-10-23 00:00:00'),(96030,11,'8C03.Y','Other specified secondary polyneuropathy','Y','2025-10-23 00:00:00'),(96031,11,'8A05.1Y','Other specified secondary tics','Y','2025-10-23 00:00:00'),(96032,11,'8A04.3Y','Other specified secondary tremor','Y','2025-10-23 00:00:00'),(96033,11,'8A45.Y','Other specified secondary white matter disorders','Y','2025-10-23 00:00:00'),(96034,11,'VW2Y','Other specified self-care','Y','2025-10-23 00:00:00'),(96035,11,'ED0Y','Other specified self-inflicted skin disorders','Y','2025-10-23 00:00:00'),(96036,11,'MB40.Y','Other specified sensation disturbance','Y','2025-10-23 00:00:00'),(96037,11,'DA0F.Y','Other specified sensory disturbances affecting orofacial complex','Y','2025-10-23 00:00:00'),(96038,11,'VV1Y','Other specified sensory functions and pain','Y','2025-10-23 00:00:00'),(96039,11,'9B78.6Y','Other specified separation of retinal layers','Y','2025-10-23 00:00:00'),(96040,11,'5B6Y','Other specified sequelae of malnutrition or certain specified nutritional deficiencies','Y','2025-10-23 00:00:00'),(96041,11,'ED80.4Y','Other specified severe inflammatory acne','Y','2025-10-23 00:00:00'),(96042,11,'LD5Y','Other specified sex chromosome anomalies','Y','2025-10-23 00:00:00'),(96043,11,'HA01.Y','Other specified sexual arousal dysfunctions','Y','2025-10-23 00:00:00'),(96044,11,'HA0Y','Other specified sexual dysfunctions','Y','2025-10-23 00:00:00'),(96045,11,'HA2Y','Other specified sexual pain disorders','Y','2025-10-23 00:00:00'),(96046,11,'1A8Y','Other specified sexually transmissible infections due to chlamydia','Y','2025-10-23 00:00:00'),(96047,11,'MG40.Y','Other specified shock','Y','2025-10-23 00:00:00'),(96048,11,'LD24.BY','Other specified short rib syndromes','Y','2025-10-23 00:00:00'),(96049,11,'FB53.Y','Other specified shoulder lesions','Y','2025-10-23 00:00:00'),(96050,11,'3A51.Y','Other specified sickle cell disorders or other haemoglobinopathies','Y','2025-10-23 00:00:00'),(96051,11,'6A70.Y','Other specified single episode depressive disorder','Y','2025-10-23 00:00:00'),(96052,11,'QA47.0Y','Other specified singleton, born in hospital','Y','2025-10-23 00:00:00'),(96053,11,'BC80.2Y','Other specified sinus node dysfunction','Y','2025-10-23 00:00:00'),(96054,11,'1D03.Y','Other specified site of infectious abscess of the central nervous system','Y','2025-10-23 00:00:00'),(96055,11,'1D04.Y','Other specified site of infectious granulomas of the central nervous system','Y','2025-10-23 00:00:00'),(96056,11,'SG6Y','Other specified six stage patterns (TM1)','Y','2025-10-23 00:00:00'),(96057,11,'4A43.2Y','Other specified sj','Y','2025-10-23 00:00:00'),(96058,11,'SB7Y','Other specified skin and mucosa system disorders (TM1)','Y','2025-10-23 00:00:00'),(96059,11,'ME66.Y','Other specified skin changes','Y','2025-10-23 00:00:00'),(96060,11,'EH92.Y','Other specified skin damage due to repetitive friction and mechanical trauma','Y','2025-10-23 00:00:00'),(96061,11,'KC3Y','Other specified skin disorders associated with prematurity','Y','2025-10-23 00:00:00'),(96062,11,'KC40.Y','Other specified skin disorders in the neonate','Y','2025-10-23 00:00:00'),(96063,11,'EG7Y','Other specified skin disorders involving the genital and perianal regions','Y','2025-10-23 00:00:00'),(96064,11,'EK5Y','Other specified skin disorders provoked by external factors','Y','2025-10-23 00:00:00'),(96065,11,'EH3Y','Other specified skin disorders specific to the perinatal or neonatal period','Y','2025-10-23 00:00:00'),(96066,11,'7A4Y','Other specified sleep-related breathing disorders','Y','2025-10-23 00:00:00'),(96067,11,'7A42.Y','Other specified sleep-related hypoventilation or hypoxemia disorders','Y','2025-10-23 00:00:00'),(96068,11,'7A8Y','Other specified sleep-related movement disorders','Y','2025-10-23 00:00:00'),(96069,11,'7B2Y','Other specified sleep-wake disorders','Y','2025-10-23 00:00:00'),(96070,11,'SH5Y','Other specified small yang type patterns (TM1)','Y','2025-10-23 00:00:00'),(96071,11,'SH7Y','Other specified small yin type patterns(TM1)','Y','2025-10-23 00:00:00'),(96072,11,'9A25.Y','Other specified soft tissue deformity of orbit','Y','2025-10-23 00:00:00'),(96073,11,'FB56.6','Other specified soft tissue disorders','Y','2025-10-23 00:00:00'),(96074,11,'9C83.1Y','Other specified spasm of conjugate gaze','Y','2025-10-23 00:00:00'),(96075,11,'8D20.Y','Other specified spastic cerebral palsy','Y','2025-10-23 00:00:00'),(96076,11,'QA0A.1Y','Other specified special screening examination for endocrine and metabolic disorder','Y','2025-10-23 00:00:00'),(96077,11,'QA09.Y','Other specified special screening examination for neoplasms','Y','2025-10-23 00:00:00'),(96078,11,'MA80.Y','Other specified speech disturbances','Y','2025-10-23 00:00:00'),(96079,11,'5C56.0Y','Other specified sphingolipidosis','Y','2025-10-23 00:00:00'),(96080,11,'LA02.Y','Other specified spina bifida','Y','2025-10-23 00:00:00'),(96081,11,'LA02.0Y','Other specified spina bifida cystica','Y','2025-10-23 00:00:00'),(96082,11,'8B4Y','Other specified spinal cord disorders excluding trauma','Y','2025-10-23 00:00:00'),(96083,11,'FA85.Y','Other specified spinal endplate defects','Y','2025-10-23 00:00:00'),(96084,11,'FA85.1Y','Other specified spinal epiphysiopathy with determinants','Y','2025-10-23 00:00:00'),(96085,11,'8B61.Y','Other specified spinal muscular atrophy','Y','2025-10-23 00:00:00'),(96086,11,'SA5Y','Other specified spleen system disorders (TM1)','Y','2025-10-23 00:00:00'),(96087,11,'SF7Y','Other specified spleen system patterns (TM1)','Y','2025-10-23 00:00:00'),(96088,11,'3B81.5Y','Other specified splenic cyst','Y','2025-10-23 00:00:00'),(96089,11,'LD24.5Y','Other specified spondylodysplastic dysplasias','Y','2025-10-23 00:00:00'),(96090,11,'FB0Y','Other specified spondylopathies','Y','2025-10-23 00:00:00'),(96091,11,'FB41.Y','Other specified spontaneous rupture of synovium or tendon','Y','2025-10-23 00:00:00'),(96092,11,'1F2J.Y','Other specified sporotrichosis','Y','2025-10-23 00:00:00'),(96093,11,'XE5C9','Other specified sports and exercise during leisure time','Y','2025-10-23 00:00:00'),(96094,11,'XE557','Other specified sports projectile','Y','2025-10-23 00:00:00'),(96095,11,'1C31.Y','Other specified spotted fever','Y','2025-10-23 00:00:00'),(96096,11,'1B5Y','Other specified staphylococcal or streptococcal diseases','Y','2025-10-23 00:00:00'),(96097,11,'8A66.Y','Other specified status epilepticus','Y','2025-10-23 00:00:00'),(96098,11,'8A07.0Y','Other specified stereotypies','Y','2025-10-23 00:00:00'),(96099,11,'9C8Y','Other specified strabismus or ocular motility disorders','Y','2025-10-23 00:00:00'),(96100,11,'NC93.6Y','Other specified strain or sprain involving anterior or posterior cruciate ligament of knee','Y','2025-10-23 00:00:00'),(96101,11,'NC93.5Y','Other specified strain or sprain involving fibular or tibial collateral ligament of knee','Y','2025-10-23 00:00:00'),(96102,11,'NA23.4Y','Other specified strain or sprain of cervical spine','Y','2025-10-23 00:00:00'),(96103,11,'NC73.1Y','Other specified strain or sprain of hip','Y','2025-10-23 00:00:00'),(96104,11,'SA9Y','Other specified strangury disorders (TM1)','Y','2025-10-23 00:00:00'),(96105,11,'LB17.Y','Other specified structural developmental anomalies of anal canal','Y','2025-10-23 00:00:00'),(96106,11,'LB20.2Y','Other specified structural developmental anomalies of bile ducts','Y','2025-10-23 00:00:00'),(96107,11,'LA74.Y','Other specified structural developmental anomalies of bronchi','Y','2025-10-23 00:00:00'),(96108,11,'LB43.Y','Other specified structural developmental anomalies of cervix uteri','Y','2025-10-23 00:00:00'),(96109,11,'LB73.1Y','Other specified structural developmental anomalies of chest wall','Y','2025-10-23 00:00:00'),(96110,11,'LB41.Y','Other specified structural developmental anomalies of clitoris','Y','2025-10-23 00:00:00'),(96111,11,'LB70.Y','Other specified structural developmental anomalies of cranium','Y','2025-10-23 00:00:00'),(96112,11,'LB00.Y','Other specified structural developmental anomalies of diaphragm','Y','2025-10-23 00:00:00'),(96113,11,'LA22.Y','Other specified structural developmental anomalies of ear causing hearing impairment','Y','2025-10-23 00:00:00'),(96114,11,'LA14.Y','Other specified structural developmental anomalies of eyelid, lacrimal apparatus or orbit','Y','2025-10-23 00:00:00'),(96115,11,'LA14.0Y','Other specified structural developmental anomalies of eyelids','Y','2025-10-23 00:00:00'),(96116,11,'LB71.Y','Other specified structural developmental anomalies of facial bones','Y','2025-10-23 00:00:00'),(96117,11,'LB20.1Y','Other specified structural developmental anomalies of gallbladder','Y','2025-10-23 00:00:00'),(96118,11,'LB20.Y','Other specified structural developmental anomalies of gallbladder, bile ducts or liver','Y','2025-10-23 00:00:00'),(96119,11,'LB30.Y','Other specified structural developmental anomalies of kidneys','Y','2025-10-23 00:00:00'),(96120,11,'LA14.1Y','Other specified structural developmental anomalies of lacrimal apparatus','Y','2025-10-23 00:00:00'),(96121,11,'LB16.Y','Other specified structural developmental anomalies of large intestine','Y','2025-10-23 00:00:00'),(96122,11,'LA71.Y','Other specified structural developmental anomalies of larynx','Y','2025-10-23 00:00:00'),(96123,11,'LA12.Y','Other specified structural developmental anomalies of lens or zonula','Y','2025-10-23 00:00:00'),(96124,11,'LB20.0Y','Other specified structural developmental anomalies of liver','Y','2025-10-23 00:00:00'),(96125,11,'LA75.Y','Other specified structural developmental anomalies of lungs','Y','2025-10-23 00:00:00'),(96126,11,'LA31.Y','Other specified structural developmental anomalies of mouth or tongue','Y','2025-10-23 00:00:00'),(96127,11,'LA10.Y','Other specified structural developmental anomalies of ocular globes','Y','2025-10-23 00:00:00'),(96128,11,'LB12.Y','Other specified structural developmental anomalies of oesophagus','Y','2025-10-23 00:00:00'),(96129,11,'LB45.Y','Other specified structural developmental anomalies of ovaries, fallopian tubes or broad ligaments','Y','2025-10-23 00:00:00'),(96130,11,'LB21.Y','Other specified structural developmental anomalies of pancreas','Y','2025-10-23 00:00:00'),(96131,11,'LB74.Y','Other specified structural developmental anomalies of pelvic girdle','Y','2025-10-23 00:00:00'),(96132,11,'LB72.Y','Other specified structural developmental anomalies of shoulder girdle','Y','2025-10-23 00:00:00'),(96133,11,'LB15.Y','Other specified structural developmental anomalies of small intestine','Y','2025-10-23 00:00:00'),(96134,11,'LB73.2Y','Other specified structural developmental anomalies of spine','Y','2025-10-23 00:00:00'),(96135,11,'LB73.Y','Other specified structural developmental anomalies of spine or bony thorax','Y','2025-10-23 00:00:00'),(96136,11,'LB22.Y','Other specified structural developmental anomalies of spleen','Y','2025-10-23 00:00:00'),(96137,11,'LB13.Y','Other specified structural developmental anomalies of stomach','Y','2025-10-23 00:00:00'),(96138,11,'LA30.Y','Other specified structural developmental anomalies of teeth and periodontal tissues','Y','2025-10-23 00:00:00'),(96139,11,'LC8Y','Other specified structural developmental anomalies of the adrenal glands','Y','2025-10-23 00:00:00'),(96140,11,'LA11.Y','Other specified structural developmental anomalies of the anterior segment of eye','Y','2025-10-23 00:00:00'),(96141,11,'LB6Y','Other specified structural developmental anomalies of the breast','Y','2025-10-23 00:00:00'),(96142,11,'LA9Y','Other specified structural developmental anomalies of the circulatory system','Y','2025-10-23 00:00:00'),(96143,11,'LB0Y','Other specified structural developmental anomalies of the diaphragm, abdominal wall or umbilical cord','Y','2025-10-23 00:00:00'),(96144,11,'LB1Y','Other specified structural developmental anomalies of the digestive tract','Y','2025-10-23 00:00:00'),(96145,11,'LA2Y','Other specified structural developmental anomalies of the ear','Y','2025-10-23 00:00:00'),(96146,11,'LA1Y','Other specified structural developmental anomalies of the eye, eyelid or lacrimal apparatus','Y','2025-10-23 00:00:00'),(96147,11,'LA5Y','Other specified structural developmental anomalies of the face','Y','2025-10-23 00:00:00'),(96148,11,'LB4Y','Other specified structural developmental anomalies of the female genital system','Y','2025-10-23 00:00:00'),(96149,11,'LB2Y','Other specified structural developmental anomalies of the liver, biliary tract, pancreas or spleen','Y','2025-10-23 00:00:00'),(96150,11,'LB5Y','Other specified structural developmental anomalies of the male genital system','Y','2025-10-23 00:00:00'),(96151,11,'LA6Y','Other specified structural developmental anomalies of the neck','Y','2025-10-23 00:00:00'),(96152,11,'LA0Y','Other specified structural developmental anomalies of the nervous system','Y','2025-10-23 00:00:00'),(96153,11,'LA07.Y','Other specified structural developmental anomalies of the neurenteric canal, spinal cord or vertebral column','Y','2025-10-23 00:00:00'),(96154,11,'LA70.Y','Other specified structural developmental anomalies of the nose or cavum','Y','2025-10-23 00:00:00'),(96155,11,'LA90.Y','Other specified structural developmental anomalies of the peripheral vascular system','Y','2025-10-23 00:00:00'),(96156,11,'LA13.Y','Other specified structural developmental anomalies of the posterior segment of eye','Y','2025-10-23 00:00:00'),(96157,11,'LA7Y','Other specified structural developmental anomalies of the respiratory system','Y','2025-10-23 00:00:00'),(96158,11,'LB9Y','Other specified structural developmental anomalies of the skeleton','Y','2025-10-23 00:00:00'),(96159,11,'LC7Y','Other specified structural developmental anomalies of the skin','Y','2025-10-23 00:00:00'),(96160,11,'LB3Y','Other specified structural developmental anomalies of the urinary system','Y','2025-10-23 00:00:00'),(96161,11,'LA73.Y','Other specified structural developmental anomalies of trachea','Y','2025-10-23 00:00:00'),(96162,11,'LB03.Y','Other specified structural developmental anomalies of umbilical cord','Y','2025-10-23 00:00:00'),(96163,11,'LB31.Y','Other specified structural developmental anomalies of urinary tract','Y','2025-10-23 00:00:00'),(96164,11,'LB44.Y','Other specified structural developmental anomalies of uterus, except cervix','Y','2025-10-23 00:00:00'),(96165,11,'LB42.Y','Other specified structural developmental anomalies of vagina','Y','2025-10-23 00:00:00'),(96166,11,'LB40.Y','Other specified structural developmental anomalies of vulva','Y','2025-10-23 00:00:00'),(96167,11,'LD0Y','Other specified structural developmental anomalies primarily affecting one body system','Y','2025-10-23 00:00:00'),(96168,11,'LA8Y','Other specified structural developmental anomaly of heart or great vessels','Y','2025-10-23 00:00:00'),(96169,11,'FA7Y','Other specified structural disorders of spine','Y','2025-10-23 00:00:00'),(96170,11,'LA11.6Y','Other specified structural disorders of the pupil','Y','2025-10-23 00:00:00'),(96171,11,'9D5Y','Other specified subjective visual experiences','Y','2025-10-23 00:00:00'),(96172,11,'MH12.Y','Other specified sudden death, cause unknown','Y','2025-10-23 00:00:00'),(96173,11,'ND11.4Y','Other specified superficial foreign body in ankle','Y','2025-10-23 00:00:00'),(96174,11,'ND11.BY','Other specified superficial foreign body in other or unspecified parts of foot','Y','2025-10-23 00:00:00'),(96175,11,'NB50.Y','Other specified superficial injury of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(96176,11,'ND11.Y','Other specified superficial injury of ankle or foot','Y','2025-10-23 00:00:00'),(96177,11,'NA00.1Y','Other specified superficial injury of eyelid or periocular area','Y','2025-10-23 00:00:00'),(96178,11,'NC51.0Y','Other specified superficial injury of finger or thumb','Y','2025-10-23 00:00:00'),(96179,11,'NC30.Y','Other specified superficial injury of forearm','Y','2025-10-23 00:00:00'),(96180,11,'NC70.Y','Other specified superficial injury of hip or thigh','Y','2025-10-23 00:00:00'),(96181,11,'NC90.Y','Other specified superficial injury of knee or lower leg','Y','2025-10-23 00:00:00'),(96182,11,'NA20.Y','Other specified superficial injury of neck','Y','2025-10-23 00:00:00'),(96183,11,'NC51.1Y','Other specified superficial injury of other parts of wrist or hand','Y','2025-10-23 00:00:00'),(96184,11,'NA00.0Y','Other specified superficial injury of scalp','Y','2025-10-23 00:00:00'),(96185,11,'NC10.Y','Other specified superficial injury of shoulder or upper arm','Y','2025-10-23 00:00:00'),(96186,11,'NA80.Y','Other specified superficial injury of thorax','Y','2025-10-23 00:00:00'),(96187,11,'BD70.Y','Other specified superficial thrombophlebitis','Y','2025-10-23 00:00:00'),(96188,11,'QA43.Y','Other specified supervision of high-risk pregnancy','Y','2025-10-23 00:00:00'),(96189,11,'QA43.3Y','Other specified supervision of pregnancy with history of insufficient antenatal care','Y','2025-10-23 00:00:00'),(96190,11,'SJ3Y','Other specified supplementary Chapter Traditional Medicine Conditions Module I','Y','2025-10-23 00:00:00'),(96191,11,'AA9Y','Other specified suppurative otitis media','Y','2025-10-23 00:00:00'),(96192,11,'BC80.Y','Other specified supraventricular bradyarrhythmia','Y','2025-10-23 00:00:00'),(96193,11,'BC8Y','Other specified supraventricular rhythm disturbance','Y','2025-10-23 00:00:00'),(96194,11,'BC81.Y','Other specified supraventricular tachyarrhythmia','Y','2025-10-23 00:00:00'),(96195,11,'PK8Y','Other specified surgical or other medical procedures associated with injury or harm in diagnostic or therapeutic use','Y','2025-10-23 00:00:00'),(96196,11,'QB6Y','Other specified surgical or postsurgical states','Y','2025-10-23 00:00:00'),(96197,11,'NE81.2Y','Other specified surgical site infection','Y','2025-10-23 00:00:00'),(96198,11,'QA21.6Y','Other specified surveillance of contraceptive device','Y','2025-10-23 00:00:00'),(96199,11,'MB4B.Y','Other specified symbolic dysfunctions','Y','2025-10-23 00:00:00'),(96200,11,'ME86.2Y','Other specified symptom or complaint of the back','Y','2025-10-23 00:00:00'),(96201,11,'MF40.0Y','Other specified symptom or complaint of the penis','Y','2025-10-23 00:00:00'),(96202,11,'MF40.2Y','Other specified symptom or complaint of the scrotum or testis','Y','2025-10-23 00:00:00'),(96203,11,'ME86.DY','Other specified symptom or complaint of the shoulder','Y','2025-10-23 00:00:00'),(96204,11,'MD36.Y','Other specified symptom or complaint of the throat','Y','2025-10-23 00:00:00'),(96205,11,'MG43.Y','Other specified symptoms and signs concerning food and fluid intake','Y','2025-10-23 00:00:00'),(96206,11,'MB23.Y','Other specified symptoms and signs involving appearance and behaviour','Y','2025-10-23 00:00:00'),(96207,11,'MB21.Y','Other specified symptoms and signs involving cognition','Y','2025-10-23 00:00:00'),(96208,11,'MB29.Y','Other specified symptoms and signs involving eating and related behaviour','Y','2025-10-23 00:00:00'),(96209,11,'MB2A.Y','Other specified symptoms and signs involving elimination','Y','2025-10-23 00:00:00'),(96210,11,'MB24.Y','Other specified symptoms and signs involving mood or affect','Y','2025-10-23 00:00:00'),(96211,11,'MB22.Y','Other specified symptoms and signs involving motivation or energy','Y','2025-10-23 00:00:00'),(96212,11,'MB25.Y','Other specified symptoms and signs of form of thought','Y','2025-10-23 00:00:00'),(96213,11,'MB27.Y','Other specified symptoms and signs of perceptual disturbance','Y','2025-10-23 00:00:00'),(96214,11,'MB25.0Y','Other specified symptoms and signs of thought disorder','Y','2025-10-23 00:00:00'),(96215,11,'MB28.Y','Other specified symptoms and signs related to personality features','Y','2025-10-23 00:00:00'),(96216,11,'MA0Y','Other specified symptoms of blood, blood-forming organs, or the immune system','Y','2025-10-23 00:00:00'),(96217,11,'MB26.Y','Other specified symptoms or signs involving content of thought','Y','2025-10-23 00:00:00'),(96218,11,'MA8Y','Other specified symptoms or signs involving speech or voice','Y','2025-10-23 00:00:00'),(96219,11,'MC8Y','Other specified symptoms or signs involving the circulatory system','Y','2025-10-23 00:00:00'),(96220,11,'ME1Y','Other specified symptoms or signs involving the digestive system or abdomen','Y','2025-10-23 00:00:00'),(96221,11,'MC4Y','Other specified symptoms or signs involving the ear or mastoid process','Y','2025-10-23 00:00:00'),(96222,11,'MB6Y','Other specified symptoms or signs involving the nervous system','Y','2025-10-23 00:00:00'),(96223,11,'MD3Y','Other specified symptoms or signs involving the respiratory system','Y','2025-10-23 00:00:00'),(96224,11,'ME6Y','Other specified symptoms or signs involving the skin','Y','2025-10-23 00:00:00'),(96225,11,'MC1Y','Other specified symptoms or signs involving the visual system','Y','2025-10-23 00:00:00'),(96226,11,'ME8Y','Other specified symptoms or signs of the musculoskeletal system','Y','2025-10-23 00:00:00'),(96227,11,'MD80.Y','Other specified symptoms or signs of the orofacial complex','Y','2025-10-23 00:00:00'),(96228,11,'MG44.Y','Other specified symptoms peculiar to infancy','Y','2025-10-23 00:00:00'),(96229,11,'ME0Y','Other specified symptoms related to the lower gastrointestinal tract or abdomen','Y','2025-10-23 00:00:00'),(96230,11,'MD9Y','Other specified symptoms related to the upper gastrointestinal tract','Y','2025-10-23 00:00:00'),(96231,11,'MB20.Y','Other specified symptoms, signs or clinical findings involving consciousness','Y','2025-10-23 00:00:00'),(96232,11,'MF3Y','Other specified symptoms, signs or clinical findings involving the female genital system','Y','2025-10-23 00:00:00'),(96233,11,'MF4Y','Other specified symptoms, signs or clinical findings involving the male genital system','Y','2025-10-23 00:00:00'),(96234,11,'MF5Y','Other specified symptoms, signs or clinical findings involving the urinary system','Y','2025-10-23 00:00:00'),(96235,11,'MA3Y','Other specified symptoms, signs or clinical findings of blood, blood-forming organs, or the immune system','Y','2025-10-23 00:00:00'),(96236,11,'MC6Y','Other specified symptoms, signs or clinical findings of ear or mastoid process','Y','2025-10-23 00:00:00'),(96237,11,'MA6Y','Other specified symptoms, signs or clinical findings of endocrine, nutritional or metabolic diseases','Y','2025-10-23 00:00:00'),(96238,11,'MB0Y','Other specified symptoms, signs or clinical findings of speech or voice','Y','2025-10-23 00:00:00'),(96239,11,'MC9Y','Other specified symptoms, signs or clinical findings of the circulatory system','Y','2025-10-23 00:00:00'),(96240,11,'ME4Y','Other specified symptoms, signs or clinical findings of the digestive system or abdomen','Y','2025-10-23 00:00:00'),(96241,11,'MG0Y','Other specified symptoms, signs or clinical findings of the genitourinary system','Y','2025-10-23 00:00:00'),(96242,11,'MF1Y','Other specified symptoms, signs or clinical findings of the musculoskeletal system','Y','2025-10-23 00:00:00'),(96243,11,'MB9Y','Other specified symptoms, signs or clinical findings of the nervous system','Y','2025-10-23 00:00:00'),(96244,11,'MD6Y','Other specified symptoms, signs or clinical findings of the respiratory system','Y','2025-10-23 00:00:00'),(96245,11,'MC2Y','Other specified symptoms, signs or clinical findings of the visual system','Y','2025-10-23 00:00:00'),(96246,11,'MH2Y','Other specified symptoms, signs or clinical findings, not elsewhere classified','Y','2025-10-23 00:00:00'),(96247,11,'MG45.Y','Other specified syncope and collapse','Y','2025-10-23 00:00:00'),(96248,11,'LB79.Y','Other specified syndactyly','Y','2025-10-23 00:00:00'),(96249,11,'5A60.2Y','Other specified syndrome of inappropriate secretion of antidiuretic hormone','Y','2025-10-23 00:00:00'),(96250,11,'LD20.Y','Other specified syndromes with central nervous system anomalies as a major feature','Y','2025-10-23 00:00:00'),(96251,11,'LD20.0Y','Other specified syndromes with cerebellar anomalies as a major feature','Y','2025-10-23 00:00:00'),(96252,11,'LD28.Y','Other specified syndromes with connective tissue involvement as a major feature','Y','2025-10-23 00:00:00'),(96253,11,'LD21.Y','Other specified syndromes with eye anomalies as a major feature','Y','2025-10-23 00:00:00'),(96254,11,'LD25.Y','Other specified syndromes with face or limb anomalies as a major feature','Y','2025-10-23 00:00:00'),(96255,11,'LD26.Y','Other specified syndromes with limb anomalies as a major feature','Y','2025-10-23 00:00:00'),(96256,11,'LD24.0Y','Other specified syndromes with micromelia','Y','2025-10-23 00:00:00'),(96257,11,'LD2F.1Y','Other specified syndromes with multiple structural anomalies, not of environmental origin','Y','2025-10-23 00:00:00'),(96258,11,'LD2F.Y','Other specified syndromes with multiple structural anomalies, without predominant body system involvement','Y','2025-10-23 00:00:00'),(96259,11,'LD24.Y','Other specified syndromes with skeletal anomalies as a major feature','Y','2025-10-23 00:00:00'),(96260,11,'LD27.Y','Other specified syndromes with skin or mucosal anomalies as a major feature','Y','2025-10-23 00:00:00'),(96261,11,'LD24.GY','Other specified syndromic craniosynostoses','Y','2025-10-23 00:00:00'),(96262,11,'LD2H.Y','Other specified syndromic genetic deafness','Y','2025-10-23 00:00:00'),(96263,11,'6C42.2Y','Other specified synthetic cannabinoid dependence','Y','2025-10-23 00:00:00'),(96264,11,'6C47.2Y','Other specified synthetic cathinone dependence','Y','2025-10-23 00:00:00'),(96265,11,'8D66.Y','Other specified syringomyelia or syringobulbia','Y','2025-10-23 00:00:00'),(96266,11,'4A40.0Y','Other specified systemic lupus erythematosus','Y','2025-10-23 00:00:00'),(96267,11,'2A21.0Y','Other specified systemic mastocytosis','Y','2025-10-23 00:00:00'),(96268,11,'1F23.3Y','Other specified systemic or invasive candidosis','Y','2025-10-23 00:00:00'),(96269,11,'BD73.2Y','Other specified systemic vein obstruction','Y','2025-10-23 00:00:00'),(96270,11,'1F76.Y','Other specified taeniasis','Y','2025-10-23 00:00:00'),(96271,11,'NC93.3Y','Other specified tear of meniscus, current','Y','2025-10-23 00:00:00'),(96272,11,'FB40.Y','Other specified tenosynovitis','Y','2025-10-23 00:00:00'),(96273,11,'8A81.Y','Other specified tension-type headache','Y','2025-10-23 00:00:00'),(96274,11,'5A81.Y','Other specified testicular dysfunction or testosterone-related disorders','Y','2025-10-23 00:00:00'),(96275,11,'LA88.2Y','Other specified tetralogy of Fallot','Y','2025-10-23 00:00:00'),(96276,11,'3A50.Y','Other specified thalassaemias','Y','2025-10-23 00:00:00'),(96277,11,'2A60.2Y','Other specified therapy-related myeloid neoplasms','Y','2025-10-23 00:00:00'),(96278,11,'9C81.0Y','Other specified third nerve palsy','Y','2025-10-23 00:00:00'),(96279,11,'BD50.3Y','Other specified thoracic aortic aneurysm','Y','2025-10-23 00:00:00'),(96280,11,'BD50.0Y','Other specified thoracic aortic dissection, ascending aorta dissection and propagation beyond arch','Y','2025-10-23 00:00:00'),(96281,11,'BD50.5Y','Other specified thoracoabdominal aortic aneurysm','Y','2025-10-23 00:00:00'),(96282,11,'PH2Y','Other specified threat to breathing with undetermined intent','Y','2025-10-23 00:00:00'),(96283,11,'3B63.Y','Other specified thrombocytosis','Y','2025-10-23 00:00:00'),(96284,11,'3B61.Y','Other specified thrombophilia','Y','2025-10-23 00:00:00'),(96285,11,'5A61.4Y','Other specified thyroid stimulating hormone deficiency','Y','2025-10-23 00:00:00'),(96286,11,'5A03.Y','Other specified thyroiditis','Y','2025-10-23 00:00:00'),(96287,11,'5A02.Y','Other specified thyrotoxicosis','Y','2025-10-23 00:00:00'),(96288,11,'8A05.Y','Other specified tic disorders','Y','2025-10-23 00:00:00'),(96289,11,'LD2F.0Y','Other specified toxic or drug-related embryofetopathies','Y','2025-10-23 00:00:00'),(96290,11,'EA50.Y','Other specified toxin-mediated cutaneous reactions to distant or systemic bacterial infection','Y','2025-10-23 00:00:00'),(96291,11,'1F57.Y','Other specified toxoplasmosis','Y','2025-10-23 00:00:00'),(96292,11,'CA27.Y','Other specified tracheobronchitis','Y','2025-10-23 00:00:00'),(96293,11,'1C23.Y','Other specified trachoma','Y','2025-10-23 00:00:00'),(96294,11,'SE5Y','Other specified traditional medicine disorders (TM1)','Y','2025-10-23 00:00:00'),(96295,11,'SJ1Y','Other specified traditional medicine patterns (TM1)','Y','2025-10-23 00:00:00'),(96296,11,'8B10.Y','Other specified transient ischaemic attack','Y','2025-10-23 00:00:00'),(96297,11,'KA89.Y','Other specified transient neonatal thrombocytopaenia','Y','2025-10-23 00:00:00'),(96298,11,'KB60.Y','Other specified transitory disorders of carbohydrate metabolism specific to fetus or newborn','Y','2025-10-23 00:00:00'),(96299,11,'KB61.Y','Other specified transitory neonatal disorders of calcium or magnesium metabolism','Y','2025-10-23 00:00:00'),(96300,11,'KB62.Y','Other specified transitory neonatal disorders of thyroid function','Y','2025-10-23 00:00:00'),(96301,11,'PG4Y','Other specified transport injury event of undetermined intent','Y','2025-10-23 00:00:00'),(96302,11,'NA09.1Y','Other specified traumatic amputation of ear','Y','2025-10-23 00:00:00'),(96303,11,'NC98.Y','Other specified traumatic amputation of lower leg','Y','2025-10-23 00:00:00'),(96304,11,'NA09.2Y','Other specified traumatic amputation of nose','Y','2025-10-23 00:00:00'),(96305,11,'NA09.Y','Other specified traumatic amputation of part of head','Y','2025-10-23 00:00:00'),(96306,11,'NC59.0Y','Other specified traumatic amputation of thumb','Y','2025-10-23 00:00:00'),(96307,11,'NC59.2Y','Other specified traumatic amputation of two or more fingers alone','Y','2025-10-23 00:00:00'),(96308,11,'NA07.2Y','Other specified traumatic cerebral oedema','Y','2025-10-23 00:00:00'),(96309,11,'NA07.8Y','Other specified traumatic haemorrhage in brain tissue','Y','2025-10-23 00:00:00'),(96310,11,'NA06.6Y','Other specified traumatic injuries of the retina','Y','2025-10-23 00:00:00'),(96311,11,'NA06.8Y','Other specified traumatic injury to eyeball','Y','2025-10-23 00:00:00'),(96312,11,'BB8Y','Other specified tricuspid valve disease','Y','2025-10-23 00:00:00'),(96313,11,'SG7Y','Other specified triple energizer stage patterns (TM1)','Y','2025-10-23 00:00:00'),(96314,11,'1B1Y','Other specified tuberculosis','Y','2025-10-23 00:00:00'),(96315,11,'JB63.0Y','Other specified tuberculosis complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(96316,11,'1B94.Y','Other specified tularaemia','Y','2025-10-23 00:00:00'),(96317,11,'2A02.1Y','Other specified tumours of cranial or paraspinal nerves','Y','2025-10-23 00:00:00'),(96318,11,'2A00.2Y','Other specified tumours of neuroepithelial tissue of brain','Y','2025-10-23 00:00:00'),(96319,11,'QA47.3Y','Other specified twin, born in hospital','Y','2025-10-23 00:00:00'),(96320,11,'PE1Y','Other specified type of assault by contact with person, animal or plant','Y','2025-10-23 00:00:00'),(96321,11,'PG6Y','Other specified type of contact with person, animal or plant of undetermined intent','Y','2025-10-23 00:00:00'),(96322,11,'PC4Y','Other specified type of intentional self-harm by contact with person, animal or plant','Y','2025-10-23 00:00:00'),(96323,11,'8A68.Y','Other specified type of seizure','Y','2025-10-23 00:00:00'),(96324,11,'PA7Y','Other specified type of unintentional contact with person, animal or plant','Y','2025-10-23 00:00:00'),(96325,11,'LD28.1Y','Other specified types of Ehlers-Danlos syndrome','Y','2025-10-23 00:00:00'),(96326,11,'1A07.Y','Other specified typhoid fever','Y','2025-10-23 00:00:00'),(96327,11,'1C30.Y','Other specified typhus fever','Y','2025-10-23 00:00:00'),(96328,11,'DD71.Y','Other specified ulcerative colitis','Y','2025-10-23 00:00:00'),(96329,11,'GA80.Y','Other specified ulcerative disorders of penis and scrotum','Y','2025-10-23 00:00:00'),(96330,11,'GA41.Y','Other specified ulcerative or erosive disorders of the vulva','Y','2025-10-23 00:00:00'),(96331,11,'5B7Y','Other specified undernutrition','Y','2025-10-23 00:00:00'),(96332,11,'PB55.Y','Other specified unintentional exposure to explosion','Y','2025-10-23 00:00:00'),(96333,11,'PA5Y','Other specified unintentional transport injury event','Y','2025-10-23 00:00:00'),(96334,11,'LD45.Y','Other specified uniparental disomies','Y','2025-10-23 00:00:00'),(96335,11,'XE36L','Other specified unpowered watercraft as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(96336,11,'CA0Y','Other specified upper respiratory tract disorders','Y','2025-10-23 00:00:00'),(96337,11,'GC02.Y','Other specified urethritis and urethral syndrome','Y','2025-10-23 00:00:00'),(96338,11,'MF50.2Y','Other specified urinary incontinence','Y','2025-10-23 00:00:00'),(96339,11,'EB0Y','Other specified urticarial disorders','Y','2025-10-23 00:00:00'),(96340,11,'DB34.Y','Other specified vascular disorders of large intestine','Y','2025-10-23 00:00:00'),(96341,11,'DA52.Y','Other specified vascular disorders of the duodenum','Y','2025-10-23 00:00:00'),(96342,11,'DB98.Y','Other specified vascular disorders of the liver','Y','2025-10-23 00:00:00'),(96343,11,'DA26.Y','Other specified vascular disorders of the oesophagus','Y','2025-10-23 00:00:00'),(96344,11,'DA43.Y','Other specified vascular disorders of the stomach','Y','2025-10-23 00:00:00'),(96345,11,'8B26.Y','Other specified vascular syndromes of brain in cerebrovascular diseases','Y','2025-10-23 00:00:00'),(96346,11,'4A44.Y','Other specified vasculitis','Y','2025-10-23 00:00:00'),(96347,11,'EF40.1Y','Other specified vasculitis affecting small cutaneous blood vessels','Y','2025-10-23 00:00:00'),(96348,11,'JA61.Y','Other specified venous complications in pregnancy','Y','2025-10-23 00:00:00'),(96349,11,'JB41.Y','Other specified venous complications in the puerperium','Y','2025-10-23 00:00:00'),(96350,11,'BC7Y','Other specified ventricular rhythm disturbance','Y','2025-10-23 00:00:00'),(96351,11,'LA88.4Y','Other specified ventricular septal defect','Y','2025-10-23 00:00:00'),(96352,11,'BC71.Y','Other specified ventricular tachyarrhythmia','Y','2025-10-23 00:00:00'),(96353,11,'BC71.0Y','Other specified ventricular tachycardia','Y','2025-10-23 00:00:00'),(96354,11,'MB48.0Y','Other specified vertigo','Y','2025-10-23 00:00:00'),(96355,11,'9C84.2Y','Other specified vestibular nystagmus','Y','2025-10-23 00:00:00'),(96356,11,'1D85.Y','Other specified viral carditis','Y','2025-10-23 00:00:00'),(96357,11,'1D84.Y','Other specified viral conjunctivitis','Y','2025-10-23 00:00:00'),(96358,11,'1E1Y','Other specified viral diseases','Y','2025-10-23 00:00:00'),(96359,11,'KA62.Y','Other specified viral infection in the fetus or newborn','Y','2025-10-23 00:00:00'),(96360,11,'1F0Y','Other specified viral infections characterised by skin or mucous membrane lesions','Y','2025-10-23 00:00:00'),(96361,11,'1C8Y','Other specified viral infections of the central nervous system','Y','2025-10-23 00:00:00'),(96362,11,'1A2Y','Other specified viral intestinal infections','Y','2025-10-23 00:00:00'),(96363,11,'1C8E.Y','Other specified viral meningitis not elsewhere classified','Y','2025-10-23 00:00:00'),(96364,11,'9B72.0Y','Other specified viral retinitis','Y','2025-10-23 00:00:00'),(96365,11,'9D9Y','Other specified vision impairment','Y','2025-10-23 00:00:00'),(96366,11,'5B5A.Y','Other specified vitamin B1 deficiency','Y','2025-10-23 00:00:00'),(96367,11,'3A01.3Y','Other specified vitamin B12 deficiency anaemia due to intrinsic factor deficiency','Y','2025-10-23 00:00:00'),(96368,11,'5B5C.Y','Other specified vitamin B3 deficiency','Y','2025-10-23 00:00:00'),(96369,11,'5B56.Y','Other specified vitamin C deficiency','Y','2025-10-23 00:00:00'),(96370,11,'5B57.Y','Other specified vitamin D deficiency','Y','2025-10-23 00:00:00'),(96371,11,'5B90.Y','Other specified vitamin excess','Y','2025-10-23 00:00:00'),(96372,11,'VV2Y','Other specified voice and speech functions','Y','2025-10-23 00:00:00'),(96373,11,'MA82.Y','Other specified voice disturbances','Y','2025-10-23 00:00:00'),(96374,11,'5C70.Y','Other specified volume depletion','Y','2025-10-23 00:00:00'),(96375,11,'KD3C.Y','Other specified vomiting in newborn','Y','2025-10-23 00:00:00'),(96376,11,'GA00.4Y','Other specified vulvovaginal ulceration and inflammation','Y','2025-10-23 00:00:00'),(96377,11,'QB12.Y','Other specified waiting period for investigation or treatment other than awaiting admission to adequate facility elsewhere','Y','2025-10-23 00:00:00'),(96378,11,'SE0Y','Other specified warmth disorders (TM1)','Y','2025-10-23 00:00:00'),(96379,11,'PK6Y','Other specified weapon or attack during armed conflict','Y','2025-10-23 00:00:00'),(96380,11,'5B5A.1Y','Other specified Wernicke-Korsakoff Syndrome','Y','2025-10-23 00:00:00'),(96381,11,'8A45.0Y','Other specified white matter disorders due to infections','Y','2025-10-23 00:00:00'),(96382,11,'8A45.3Y','Other specified white matter disorders due to nutritional deficiency','Y','2025-10-23 00:00:00'),(96383,11,'8A45.2Y','Other specified white matter disorders due to vascular abnormality or ischemia','Y','2025-10-23 00:00:00'),(96384,11,'1C12.Y','Other specified whooping cough','Y','2025-10-23 00:00:00'),(96385,11,'SD3Y','Other specified wind stroke disorders (TM1)','Y','2025-10-23 00:00:00'),(96386,11,'1D6Y','Other specified zoonotic viral diseases','Y','2025-10-23 00:00:00'),(96387,11,'CB21.1','Other spontaneous pneumothorax','Y','2025-10-23 00:00:00'),(96388,11,'XE1RG','Other stationery item','Y','2025-10-23 00:00:00'),(96389,11,'MH12','Other sudden death, cause unknown','Y','2025-10-23 00:00:00'),(96390,11,'NA80.4','Other superficial injuries of back wall of thorax','Y','2025-10-23 00:00:00'),(96391,11,'NA80.3','Other superficial injuries of front wall of thorax','Y','2025-10-23 00:00:00'),(96392,11,'MF36','Other symptom or complaint of vagina','Y','2025-10-23 00:00:00'),(96393,11,'MG50.C1','Other third-generation cephalosporin resistant Enterobacterales','Y','2025-10-23 00:00:00'),(96394,11,'XE88G','Other toothbrush','Y','2025-10-23 00:00:00'),(96395,11,'XE8ZY','Other toy weapon or projectile toy','Y','2025-10-23 00:00:00'),(96396,11,'KB62.1','Other transitory neonatal disorders of thyroid function, not elsewhere classified','Y','2025-10-23 00:00:00'),(96397,11,'KB60.42','Other transitory neonatal hypoglycaemia','Y','2025-10-23 00:00:00'),(96398,11,'NA22.11','Other traumatic spondylolisthesis of second cervical vertebra','Y','2025-10-23 00:00:00'),(96399,11,'PB6Y','Other unintentional cause of morbidity or mortality','Y','2025-10-23 00:00:00'),(96400,11,'JB02.2','Other uterine inertia','Y','2025-10-23 00:00:00'),(96401,11,'JA05.7','Other venous complications following abortion, ectopic or molar pregnancy','Y','2025-10-23 00:00:00'),(96402,11,'1C1H.0','Other Vincent infections','Y','2025-10-23 00:00:00'),(96403,11,'JB63.5','Other viral diseases complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(96404,11,'1D9Y','Other viral infections of unspecified site','Y','2025-10-23 00:00:00'),(96405,11,'XD7M68','Other Virology RT & POC','Y','2025-10-23 00:00:00'),(96406,11,'PK03','Other weapons use during armed conflict','Y','2025-10-23 00:00:00'),(96407,11,'4A01.3','Other well-defined immunodeficiency syndromes due to defects in adaptive immunity','Y','2025-10-23 00:00:00'),(96408,11,'XE1PL','Other wire','Y','2025-10-23 00:00:00'),(96409,11,'XA2260','Otic ganglion','Y','2025-10-23 00:00:00'),(96410,11,'XM8YF7','Otilonium bromide','Y','2025-10-23 00:00:00'),(96411,11,'NF04.0','Otitic barotrauma','Y','2025-10-23 00:00:00'),(96412,11,'AA3Z','Otitis externa, unspecified','Y','2025-10-23 00:00:00'),(96413,11,'AB0Z','Otitis media, unspecified','Y','2025-10-23 00:00:00'),(96414,11,'LA23','Otocephaly','Y','2025-10-23 00:00:00'),(96415,11,'LD2F.16','Otomandibular dysplasia','Y','2025-10-23 00:00:00'),(96416,11,'AA03','Otomycosis','Y','2025-10-23 00:00:00'),(96417,11,'PK92.0','Otorhinolaryngological devices associated with injury or harm, diagnostic or monitoring devices','Y','2025-10-23 00:00:00'),(96418,11,'PK92.4','Otorhinolaryngological devices associated with injury or harm, miscellaneous devices, not elsewhere classified','Y','2025-10-23 00:00:00'),(96419,11,'PK92.2','Otorhinolaryngological devices associated with injury or harm, prosthetic or other implants, materials or accessory devices','Y','2025-10-23 00:00:00'),(96420,11,'PK92.3','Otorhinolaryngological devices associated with injury or harm, surgical instruments, materials or devices','Y','2025-10-23 00:00:00'),(96421,11,'PK92.1','Otorhinolaryngological devices associated with injury or harm, therapeutic, nonsurgical or rehabilitative devices','Y','2025-10-23 00:00:00'),(96422,11,'PK92','Otorhinolaryngological devices, implants or grafts associated with injury or harm','Y','2025-10-23 00:00:00'),(96423,11,'PK92.Z','Otorhinolaryngological devices, implants or grafts associated with injury or harm, unspecified','Y','2025-10-23 00:00:00'),(96424,11,'AB70.1','Otorrhagia','Y','2025-10-23 00:00:00'),(96425,11,'AB70.0','Otorrhoea','Y','2025-10-23 00:00:00'),(96426,11,'AB33','Otosclerosis','Y','2025-10-23 00:00:00'),(96427,11,'AB53','Ototoxic hearing loss','Y','2025-10-23 00:00:00'),(96428,11,'XM2A66','Ottoman viper snake venom','Y','2025-10-23 00:00:00'),(96429,11,'XM0N63','Ouabain (e)','Y','2025-10-23 00:00:00'),(96430,11,'QA46','Outcome of delivery','Y','2025-10-23 00:00:00'),(96431,11,'QA46.Z','Outcome of delivery, unspecified','Y','2025-10-23 00:00:00'),(96432,11,'XE9WC','Outdoor sporting grounds','Y','2025-10-23 00:00:00'),(96433,11,'XA2BL8','Outer surface of prepuce','Y','2025-10-23 00:00:00'),(96434,11,'XE2BE','Out-of-hospital','Y','2025-10-23 00:00:00'),(96435,11,'XE8DZ','Outpatient clinic or health centre','Y','2025-10-23 00:00:00'),(96436,11,'XE81P','Output above specifications','Y','2025-10-23 00:00:00'),(96437,11,'XE8XC','Output below specifications','Y','2025-10-23 00:00:00'),(96438,11,'XE28Y','Output problem','Y','2025-10-23 00:00:00'),(96439,11,'9A20.00','Outward displacement of eyeball','Y','2025-10-23 00:00:00'),(96440,11,'XA16S6','Oval window','Y','2025-10-23 00:00:00'),(96441,11,'XA1MF5','Ovarian artery','Y','2025-10-23 00:00:00'),(96442,11,'5A80','Ovarian dysfunction','Y','2025-10-23 00:00:00'),(96443,11,'5A80.Z','Ovarian dysfunction, unspecified','Y','2025-10-23 00:00:00'),(96444,11,'2F32.1','Ovarian fibroma','Y','2025-10-23 00:00:00'),(96445,11,'XM3MJ7','Ovarian hormone','Y','2025-10-23 00:00:00'),(96446,11,'GA32.0','Ovarian hyperstimulation syndrome','Y','2025-10-23 00:00:00'),(96447,11,'XA9PB2','Ovarian plexus','Y','2025-10-23 00:00:00'),(96448,11,'JA01.2','Ovarian pregnancy','Y','2025-10-23 00:00:00'),(96449,11,'GA34.5','Ovarian remnant syndrome','Y','2025-10-23 00:00:00'),(96450,11,'XM26R0','Ovarian stimulant','Y','2025-10-23 00:00:00'),(96451,11,'XA4PC3','Ovarian Vein','Y','2025-10-23 00:00:00'),(96452,11,'XA1QK0','Ovary','Y','2025-10-23 00:00:00'),(96453,11,'GC50.0','Overactive bladder','Y','2025-10-23 00:00:00'),(96454,11,'GC40.60','Overactive bladder associated with pelvic organ prolapse','Y','2025-10-23 00:00:00'),(96455,11,'XE1WU','Overcorrection','Y','2025-10-23 00:00:00'),(96456,11,'QA70','Overdose of substance without injury or harm','Y','2025-10-23 00:00:00'),(96457,11,'PL13.0','Overdose of substance, as mode of injury or harm','Y','2025-10-23 00:00:00'),(96458,11,'MG43.1','Overeating','Y','2025-10-23 00:00:00'),(96459,11,'KD32.2','Overfeeding of newborn','Y','2025-10-23 00:00:00'),(96460,11,'XE97E','Overfill','Y','2025-10-23 00:00:00'),(96461,11,'GC40.53','Overflow incontinence associated with pelvic organ prolapse','Y','2025-10-23 00:00:00'),(96462,11,'LD2C','Overgrowth syndromes','Y','2025-10-23 00:00:00'),(96463,11,'XE14Q','Overheating of device','Y','2025-10-23 00:00:00'),(96464,11,'XE62G','Overheating of device problem identified','Y','2025-10-23 00:00:00'),(96465,11,'4A43','Overlap or undifferentiated nonorgan specific systemic autoimmune disease','Y','2025-10-23 00:00:00'),(96466,11,'XA4YW8','Overlapping sites of oesophagus','Y','2025-10-23 00:00:00'),(96467,11,'XE02C','Over-sensing','Y','2025-10-23 00:00:00'),(96468,11,'MB26.6','Overvalued ideas','Y','2025-10-23 00:00:00'),(96469,11,'5B80.0','Overweight','Y','2025-10-23 00:00:00'),(96470,11,'5B80.01','Overweight in adults','Y','2025-10-23 00:00:00'),(96471,11,'5B80.00','Overweight in infants, children or adolescents','Y','2025-10-23 00:00:00'),(96472,11,'5B80','Overweight or localised adiposity','Y','2025-10-23 00:00:00'),(96473,11,'5C1Z','Overweight, obesity or specific nutrient excesses, unspecified','Y','2025-10-23 00:00:00'),(96474,11,'5B80.0Z','Overweight, unspecified','Y','2025-10-23 00:00:00'),(96475,11,'LD2A.0','Ovotesticular disorder of sex development','Y','2025-10-23 00:00:00'),(96476,11,'GA20.2','Ovulation bleeding','Y','2025-10-23 00:00:00'),(96477,11,'GA20.2Z','Ovulation bleeding, unspecified','Y','2025-10-23 00:00:00'),(96478,11,'XM2702','Ox bile extract','Y','2025-10-23 00:00:00'),(96479,11,'XM6RN8','Oxabolone cipionate','Y','2025-10-23 00:00:00'),(96480,11,'XM4L54','Oxaceprol','Y','2025-10-23 00:00:00'),(96481,11,'XM2UY3','Oxacillin','Y','2025-10-23 00:00:00'),(96482,11,'XM4ML8','Oxaflozane','Y','2025-10-23 00:00:00'),(96483,11,'XM4AK6','Oxalic acid','Y','2025-10-23 00:00:00'),(96484,11,'XM3385','Oxalic acid ammonium salt','Y','2025-10-23 00:00:00'),(96485,11,'XM2LX1','Oxaliplatin','Y','2025-10-23 00:00:00'),(96486,11,'XM7CA3','Oxametacin','Y','2025-10-23 00:00:00'),(96487,11,'XM5JZ6','Oxamniquine','Y','2025-10-23 00:00:00'),(96488,11,'XM0DL6','Oxamyl','Y','2025-10-23 00:00:00'),(96489,11,'XM5F36','Oxanamide','Y','2025-10-23 00:00:00'),(96490,11,'XM6327','Oxandrolone','Y','2025-10-23 00:00:00'),(96491,11,'XM05V2','Oxantel','Y','2025-10-23 00:00:00'),(96492,11,'XM5YT3','Oxapium iodide','Y','2025-10-23 00:00:00'),(96493,11,'XM5RG3','Oxaprotiline','Y','2025-10-23 00:00:00'),(96494,11,'XM9694','Oxaprozin','Y','2025-10-23 00:00:00'),(96495,11,'XM6AV1','Oxatomide','Y','2025-10-23 00:00:00'),(96496,11,'XM1A29','Oxazepam','Y','2025-10-23 00:00:00'),(96497,11,'XM09D8','Oxazol, thiazine, and triazine derivatives','Y','2025-10-23 00:00:00'),(96498,11,'XM62U2','Oxazolam','Y','2025-10-23 00:00:00'),(96499,11,'XM4DR6','Oxazolidine derivatives','Y','2025-10-23 00:00:00'),(96500,11,'XM69D6','Oxcarbazepine','Y','2025-10-23 00:00:00'),(96501,11,'XM5HS9','Oxedrine','Y','2025-10-23 00:00:00'),(96502,11,'XM2ET3','Oxeladin','Y','2025-10-23 00:00:00'),(96503,11,'XM8AV0','Oxendolone','Y','2025-10-23 00:00:00'),(96504,11,'XM5HP0','Oxetacaine','Y','2025-10-23 00:00:00'),(96505,11,'XM6V01','Oxethazine','Y','2025-10-23 00:00:00'),(96506,11,'XM7N03','Oxetorone','Y','2025-10-23 00:00:00'),(96507,11,'XM0UL8','Oxicams','Y','2025-10-23 00:00:00'),(96508,11,'XM63S9','Oxiconazole','Y','2025-10-23 00:00:00'),(96509,11,'XM6EK6','Oxidized cellulose','Y','2025-10-23 00:00:00'),(96510,11,'XM05Q8','Oxidizing agent, not elsewhere classified','Y','2025-10-23 00:00:00'),(96511,11,'XM98Z3','Oxine-copper','Y','2025-10-23 00:00:00'),(96512,11,'XM2KX4','Oxiniacic acid','Y','2025-10-23 00:00:00'),(96513,11,'XM6FA5','Oxipurinol','Y','2025-10-23 00:00:00'),(96514,11,'XM5N75','Oxiracetam','Y','2025-10-23 00:00:00'),(96515,11,'XM6AP8','Oxitriptan','Y','2025-10-23 00:00:00'),(96516,11,'XM55K5','Oxitropium bromide','Y','2025-10-23 00:00:00'),(96517,11,'XM3BC0','Oxodipine','Y','2025-10-23 00:00:00'),(96518,11,'XM9FU3','Oxolamine','Y','2025-10-23 00:00:00'),(96519,11,'XM70Q8','Oxolinic acid','Y','2025-10-23 00:00:00'),(96520,11,'XM5DB5','Oxomemazine','Y','2025-10-23 00:00:00'),(96521,11,'XM3E43','Oxophenarsine','Y','2025-10-23 00:00:00'),(96522,11,'XM0M15','Oxprenolol','Y','2025-10-23 00:00:00'),(96523,11,'XM81W0','Oxtriphylline','Y','2025-10-23 00:00:00'),(96524,11,'XM6RN9','Oxybuprocaine','Y','2025-10-23 00:00:00'),(96525,11,'XM0LB8','Oxybutynin','Y','2025-10-23 00:00:00'),(96526,11,'XM8610','Oxychlorosene','Y','2025-10-23 00:00:00'),(96527,11,'XM5L52','Oxycinchophen','Y','2025-10-23 00:00:00'),(96528,11,'XM4SL9','Oxycodone','Y','2025-10-23 00:00:00'),(96529,11,'XM48D2','Oxydemeton-methyl','Y','2025-10-23 00:00:00'),(96530,11,'XM5YA6','Oxyfedrine','Y','2025-10-23 00:00:00'),(96531,11,'XM4SZ3','Oxygen','Y','2025-10-23 00:00:00'),(96532,11,'XD5AL4','Oxygen administration tubings','Y','2025-10-23 00:00:00'),(96533,11,'XE0A7','Oxygen analyzer component of medical device','Y','2025-10-23 00:00:00'),(96534,11,'XD6UU3','Oxygen Concentrators','Y','2025-10-23 00:00:00'),(96535,11,'XE5ZD','Oxygen sensor component of medical device','Y','2025-10-23 00:00:00'),(96536,11,'XM7N08','Oxylone','Y','2025-10-23 00:00:00'),(96537,11,'XM1E21','Oxymesterone','Y','2025-10-23 00:00:00'),(96538,11,'XM4KH5','Oxymetazoline','Y','2025-10-23 00:00:00'),(96539,11,'XM7WQ1','Oxymetholone','Y','2025-10-23 00:00:00'),(96540,11,'XM64M0','Oxymorphone','Y','2025-10-23 00:00:00'),(96541,11,'XM84W2','Oxypertine','Y','2025-10-23 00:00:00'),(96542,11,'XM12M5','Oxyphenbutazone','Y','2025-10-23 00:00:00'),(96543,11,'XM5D56','Oxyphencyclimine','Y','2025-10-23 00:00:00'),(96544,11,'XM5E72','Oxyphenisatine','Y','2025-10-23 00:00:00'),(96545,11,'XM1LM4','Oxyphenonium','Y','2025-10-23 00:00:00'),(96546,11,'XH09D6','Oxyphilic adenocarcinoma','Y','2025-10-23 00:00:00'),(96547,11,'XH9Z86','Oxyphilic adenoma','Y','2025-10-23 00:00:00'),(96548,11,'XM6YJ2','Oxypolygelatin','Y','2025-10-23 00:00:00'),(96549,11,'XM6XJ9','Oxyquinoline','Y','2025-10-23 00:00:00'),(96550,11,'XM8DQ8','Oxytetracycline','Y','2025-10-23 00:00:00'),(96551,11,'XM9SN0','Oxytocin','Y','2025-10-23 00:00:00'),(96552,11,'XM1DB3','Oxytocin and analogues','Y','2025-10-23 00:00:00'),(96553,11,'5A61.6','Oxytocin deficiency','Y','2025-10-23 00:00:00'),(96554,11,'XM3XQ0','Oyster seafood poison','Y','2025-10-23 00:00:00'),(96555,11,'XM0700','Ozanimod','Y','2025-10-23 00:00:00'),(96556,11,'XM54H2','Ozone','Y','2025-10-23 00:00:00'),(96557,11,'XE281','Pacemaker found in back-up mode','Y','2025-10-23 00:00:00'),(96558,11,'NE82.12','Pacemaker generator dysfunction','Y','2025-10-23 00:00:00'),(96559,11,'BC91','Pacemaker or implantable cardioverter defibrillator battery at end of battery life','Y','2025-10-23 00:00:00'),(96560,11,'NE82.0','Pacemaker or implantable cardioverter defibrillator complication','Y','2025-10-23 00:00:00'),(96561,11,'NE82.0Z','Pacemaker or implantable cardioverter defibrillator complication, unspecified','Y','2025-10-23 00:00:00'),(96562,11,'NE82.1','Pacemaker or implantable cardioverter defibrillator dysfunction','Y','2025-10-23 00:00:00'),(96563,11,'NE82.1Z','Pacemaker or implantable cardioverter defibrillator dysfunction, unspecified','Y','2025-10-23 00:00:00'),(96564,11,'NE82.2','Pacemaker or implantable cardioverter defibrillator lead complication','Y','2025-10-23 00:00:00'),(96565,11,'NE82.2Z','Pacemaker or implantable cardioverter defibrillator lead complication, unspecified','Y','2025-10-23 00:00:00'),(96566,11,'NE82.21','Pacemaker or implantable cardioverter defibrillator lead dislodgement','Y','2025-10-23 00:00:00'),(96567,11,'NE82.3','Pacemaker or implantable cardioverter defibrillator lead dysfunction','Y','2025-10-23 00:00:00'),(96568,11,'NE82.20','Pacemaker or implantable cardioverter defibrillator lead fracture','Y','2025-10-23 00:00:00'),(96569,11,'NE82.22','Pacemaker or implantable cardioverter defibrillator lead insulation break','Y','2025-10-23 00:00:00'),(96570,11,'NE82.02','Pacemaker or implantable cardioverter defibrillator phrenic nerve stimulation','Y','2025-10-23 00:00:00'),(96571,11,'NE82.00','Pacemaker or implantable cardioverter defibrillator pocket erosion','Y','2025-10-23 00:00:00'),(96572,11,'NE82.01','Pacemaker or implantable cardioverter defibrillator pocket muscle stimulation','Y','2025-10-23 00:00:00'),(96573,11,'NE82.11','Pacemaker syndrome','Y','2025-10-23 00:00:00'),(96574,11,'8.00E+41','Pachymeningitis','Y','2025-10-23 00:00:00'),(96575,11,'8E41.0','Pachymeningitis due to infection','Y','2025-10-23 00:00:00'),(96576,11,'8E41.Z','Pachymeningitis, unspecified','Y','2025-10-23 00:00:00'),(96577,11,'XE13R','Pacing asynchronously','Y','2025-10-23 00:00:00'),(96578,11,'XE10M','Pacing inadequately','Y','2025-10-23 00:00:00'),(96579,11,'XE1SU','Pacing intermittently','Y','2025-10-23 00:00:00'),(96580,11,'XE8HJ','Pacing problem','Y','2025-10-23 00:00:00'),(96581,11,'NE82.03','Pacing-induced cardiomyopathy','Y','2025-10-23 00:00:00'),(96582,11,'XH8NQ6','Pacinian tumour','Y','2025-10-23 00:00:00'),(96583,11,'XE7C4','Packaging component of medical device','Y','2025-10-23 00:00:00'),(96584,11,'XE8TA','Packaging contains incorrect device problem identified','Y','2025-10-23 00:00:00'),(96585,11,'XE0KG','Packaging materials of device problem identified','Y','2025-10-23 00:00:00'),(96586,11,'XE9F7','Packaging of device compromised problem identified','Y','2025-10-23 00:00:00'),(96587,11,'XE8S1','Packaging of device contains unintended material problem identified','Y','2025-10-23 00:00:00'),(96588,11,'XE8RY','Packaging problem','Y','2025-10-23 00:00:00'),(96589,11,'XE278','Packaging problem with device identified','Y','2025-10-23 00:00:00'),(96590,11,'XM5TC8','Paclitaxel','Y','2025-10-23 00:00:00'),(96591,11,'XM9NR6','Paclitaxel poliglumex','Y','2025-10-23 00:00:00'),(96592,11,'XM7380','Pacritinib','Y','2025-10-23 00:00:00'),(96593,11,'XE5AR','Pad component of medical device','Y','2025-10-23 00:00:00'),(96594,11,'XA3C43','Pad of fifth toe','Y','2025-10-23 00:00:00'),(96595,11,'XA9316','Pad of fourth toe','Y','2025-10-23 00:00:00'),(96596,11,'XA6VJ2','Pad of great toe','Y','2025-10-23 00:00:00'),(96597,11,'XA6TA9','Pad of index finger','Y','2025-10-23 00:00:00'),(96598,11,'XA4WN3','Pad of little finger','Y','2025-10-23 00:00:00'),(96599,11,'XA79X0','Pad of middle finger','Y','2025-10-23 00:00:00'),(96600,11,'XA6C72','Pad of ring finger','Y','2025-10-23 00:00:00'),(96601,11,'XA3626','Pad of second toe','Y','2025-10-23 00:00:00'),(96602,11,'XA5JP9','Pad of third toe','Y','2025-10-23 00:00:00'),(96603,11,'XA5ZV0','Pad of thumb','Y','2025-10-23 00:00:00'),(96604,11,'XM1ER6','Padeliporfin','Y','2025-10-23 00:00:00'),(96605,11,'XM0VT0','Padimate','Y','2025-10-23 00:00:00'),(96606,11,'XH7TJ0','Paediatric cystic nephroma','Y','2025-10-23 00:00:00'),(96607,11,'4A43.22','Paediatric onset Sj','Y','2025-10-23 00:00:00'),(96608,11,'4A42.0','Paediatric onset systemic sclerosis','Y','2025-10-23 00:00:00'),(96609,11,'2A80.4','Paediatric type follicular lymphoma','Y','2025-10-23 00:00:00'),(96610,11,'XH47A6','Paget disease and infiltrating duct carcinoma of breast','Y','2025-10-23 00:00:00'),(96611,11,'XH0C76','Paget disease and intraductal carcinoma of breast','Y','2025-10-23 00:00:00'),(96612,11,'FB85','Paget disease of bone','Y','2025-10-23 00:00:00'),(96613,11,'FB85.1','Paget disease of bone in neoplastic disease','Y','2025-10-23 00:00:00'),(96614,11,'FB85.Z','Paget disease of bone, unspecified','Y','2025-10-23 00:00:00'),(96615,11,'2E65.5','Paget disease of nipple','Y','2025-10-23 00:00:00'),(96616,11,'XH70F8','Paget disease, extramammary','Y','2025-10-23 00:00:00'),(96617,11,'XH3E21','Paget disease, mammary','Y','2025-10-23 00:00:00'),(96618,11,'XE545','Paid work','Y','2025-10-23 00:00:00'),(96619,11,'8.00E+43','Pain disorders','Y','2025-10-23 00:00:00'),(96620,11,'8E43.Z','Pain disorders, unspecified','Y','2025-10-23 00:00:00'),(96621,11,'ME82','Pain in joint','Y','2025-10-23 00:00:00'),(96622,11,'FB56.4','Pain in limb','Y','2025-10-23 00:00:00'),(96623,11,'MF40.00','Pain in penis','Y','2025-10-23 00:00:00'),(96624,11,'MD36.0','Pain in throat','Y','2025-10-23 00:00:00'),(96625,11,'MD30','Pain in throat or chest','Y','2025-10-23 00:00:00'),(96626,11,'MD81.12','Pain localised to other parts of lower abdomen','Y','2025-10-23 00:00:00'),(96627,11,'MD81.10','Pain localised to upper abdomen','Y','2025-10-23 00:00:00'),(96628,11,'ME65.2','Pain or tenderness of skin','Y','2025-10-23 00:00:00'),(96629,11,'GA34.0','Pain related to vulva, vagina or pelvic floor','Y','2025-10-23 00:00:00'),(96630,11,'GA34.0Z','Pain related to vulva, vagina or pelvic floor, unspecified','Y','2025-10-23 00:00:00'),(96631,11,'MG3Z','Pain, unspecified','Y','2025-10-23 00:00:00'),(96632,11,'ED02','Painful bruising syndrome','Y','2025-10-23 00:00:00'),(96633,11,'8A85','Painful cranial neuropathies or other facial pains','Y','2025-10-23 00:00:00'),(96634,11,'5A03.21','Painless thyroiditis','Y','2025-10-23 00:00:00'),(96635,11,'XM1XL9','Paint fumes, not elsewhere classified','Y','2025-10-23 00:00:00'),(96636,11,'XM9B14','Paint stripper','Y','2025-10-23 00:00:00'),(96637,11,'XA00H5','Palatal mucosa','Y','2025-10-23 00:00:00'),(96638,11,'8A06.20','Palatal myoclonus','Y','2025-10-23 00:00:00'),(96639,11,'XA7ZA6','Palate','Y','2025-10-23 00:00:00'),(96640,11,'XA15G1','Palatine arch','Y','2025-10-23 00:00:00'),(96641,11,'XA4319','Palatine bone','Y','2025-10-23 00:00:00'),(96642,11,'XA7P00','Palatine nerve','Y','2025-10-23 00:00:00'),(96643,11,'XA3V90','Palatine tonsil','Y','2025-10-23 00:00:00'),(96644,11,'XA1SM5','Palatine vein','Y','2025-10-23 00:00:00'),(96645,11,'XA2U72','Palatoglossus muscle','Y','2025-10-23 00:00:00'),(96646,11,'XA6SX4','Palatoglossus tendon','Y','2025-10-23 00:00:00'),(96647,11,'XA1PG4','Palatopharyngeus muscle','Y','2025-10-23 00:00:00'),(96648,11,'XA6LA2','Palatopharyngeus tendon','Y','2025-10-23 00:00:00'),(96649,11,'XM4K70','Palbociclib','Y','2025-10-23 00:00:00'),(96650,11,'XM88F6','Palestine viper snake venom','Y','2025-10-23 00:00:00'),(96651,11,'XM8J47','Palifermin','Y','2025-10-23 00:00:00'),(96652,11,'FA27.2','Palindromic rheumatism','Y','2025-10-23 00:00:00'),(96653,11,'XM7H28','Paliperidone','Y','2025-10-23 00:00:00'),(96654,11,'XM45N8','Palivizumab','Y','2025-10-23 00:00:00'),(96655,11,'XM0FY1','Palladium chloride','Y','2025-10-23 00:00:00'),(96656,11,'QB9B','Palliative care','Y','2025-10-23 00:00:00'),(96657,11,'XA4F88','Pallium','Y','2025-10-23 00:00:00'),(96658,11,'ME64.2','Pallor','Y','2025-10-23 00:00:00'),(96659,11,'MC16','Pallor conjunctiva','Y','2025-10-23 00:00:00'),(96660,11,'XM2YX0','Palm kernel oil','Y','2025-10-23 00:00:00'),(96661,11,'XA3NY8','Palm of hand','Y','2025-10-23 00:00:00'),(96662,11,'XA10U4','Palmar aponeurosis','Y','2025-10-23 00:00:00'),(96663,11,'XA89K2','Palmar branch of the median nerve','Y','2025-10-23 00:00:00'),(96664,11,'XA7FU0','Palmar branch of ulnar nerve','Y','2025-10-23 00:00:00'),(96665,11,'XA0GZ0','Palmar carpal arch','Y','2025-10-23 00:00:00'),(96666,11,'XA2F13','Palmar carpal branch of radial artery','Y','2025-10-23 00:00:00'),(96667,11,'FB51.0','Palmar fascial fibromatosis','Y','2025-10-23 00:00:00'),(96668,11,'XA5055','Palmar interossei of the hand muscle','Y','2025-10-23 00:00:00'),(96669,11,'XA82E6','Palmar interosseous tendon','Y','2025-10-23 00:00:00'),(96670,11,'XH75J5','Palmar/plantar type fibromatosis','Y','2025-10-23 00:00:00'),(96671,11,'XA9KL5','Palmaris brevis muscle','Y','2025-10-23 00:00:00'),(96672,11,'XA7B73','Palmaris brevis tendon','Y','2025-10-23 00:00:00'),(96673,11,'XA6P76','Palmaris longus muscle','Y','2025-10-23 00:00:00'),(96674,11,'XA41L1','Palmaris longus tendon','Y','2025-10-23 00:00:00'),(96675,11,'EE00.00','Palmoplantar hyperhidrosis','Y','2025-10-23 00:00:00'),(96676,11,'ED55.Z','Palmoplantar keratoderma, unspecified','Y','2025-10-23 00:00:00'),(96677,11,'ED55','Palmoplantar keratodermas','Y','2025-10-23 00:00:00'),(96678,11,'EA90.42','Palmoplantar pustulosis','Y','2025-10-23 00:00:00'),(96679,11,'LA14.00','Palpebral cleft or coloboma','Y','2025-10-23 00:00:00'),(96680,11,'XA3X70','Palpebral conjunctiva','Y','2025-10-23 00:00:00'),(96681,11,'XA9SD5','Palpebral vein','Y','2025-10-23 00:00:00'),(96682,11,'SA1Z','Palpitation disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(96683,11,'MC81.2','Palpitations','Y','2025-10-23 00:00:00'),(96684,11,'9C83.0','Palsy of conjugate gaze','Y','2025-10-23 00:00:00'),(96685,11,'9C83.0Z','Palsy of conjugate gaze, unspecified','Y','2025-10-23 00:00:00'),(96686,11,'9C81.Y','Palsy of other specified ocular motor nerve','Y','2025-10-23 00:00:00'),(96687,11,'9C81.Z','Palsy of unspecified ocular motor nerve','Y','2025-10-23 00:00:00'),(96688,11,'XM08Q1','Pamaquine (naphthoate)','Y','2025-10-23 00:00:00'),(96689,11,'XM55G3','Pamidronic acid','Y','2025-10-23 00:00:00'),(96690,11,'XM0PX7','Pamiparib','Y','2025-10-23 00:00:00'),(96691,11,'XA05M3','Pampiniform plexus','Y','2025-10-23 00:00:00'),(96692,11,'XM1M89','Panaeolus mushroom','Y','2025-10-23 00:00:00'),(96693,11,'XM3NJ2','Panaeolus papilionaceus mushroom','Y','2025-10-23 00:00:00'),(96694,11,'XM0B62','Panaeolus sphinctrinus mushroom','Y','2025-10-23 00:00:00'),(96695,11,'XM27Y3','Panaeolus subbalteatus mushroom','Y','2025-10-23 00:00:00'),(96696,11,'XA3QC5','Pancreas','Y','2025-10-23 00:00:00'),(96697,11,'LB21.1','Pancreas divisum','Y','2025-10-23 00:00:00'),(96698,11,'XM73P5','Pancreatic digestive secretion stimulant','Y','2025-10-23 00:00:00'),(96699,11,'XM2P48','Pancreatic dornase','Y','2025-10-23 00:00:00'),(96700,11,'XA1XL7','Pancreatic duct','Y','2025-10-23 00:00:00'),(96701,11,'EF00.0','Pancreatic enzyme panniculitis','Y','2025-10-23 00:00:00'),(96702,11,'XA45E6','Pancreatic islets','Y','2025-10-23 00:00:00'),(96703,11,'XA7T42','Pancreatic lymph node','Y','2025-10-23 00:00:00'),(96704,11,'XH6GG6','Pancreatic microadenoma','Y','2025-10-23 00:00:00'),(96705,11,'XH1Q16','Pancreatic neuroendocrine microadenoma','Y','2025-10-23 00:00:00'),(96706,11,'XH3709','Pancreatic neuroendocrine tumor, nonfunctioning','Y','2025-10-23 00:00:00'),(96707,11,'XH9ZS8','Pancreatic peptide and pancreatic peptide-like peptide within terminal tyrosine amide producing tumour','Y','2025-10-23 00:00:00'),(96708,11,'XA0C44','Pancreatic plexus','Y','2025-10-23 00:00:00'),(96709,11,'DC35.2','Pancreatic steatorrhoea','Y','2025-10-23 00:00:00'),(96710,11,'XA3X37','Pancreatic vein','Y','2025-10-23 00:00:00'),(96711,11,'XA6W89','Pancreaticoduodenal lymph node','Y','2025-10-23 00:00:00'),(96712,11,'XA4XM0','Pancreaticoduodenal vein','Y','2025-10-23 00:00:00'),(96713,11,'XA7ZP7','Pancreaticosplenic lymph node','Y','2025-10-23 00:00:00'),(96714,11,'XM6HM1','Pancreatin','Y','2025-10-23 00:00:00'),(96715,11,'1D80.4','Pancreatitis due to mumps virus','Y','2025-10-23 00:00:00'),(96716,11,'XH0BF2','Pancreatobiliary neoplasm, non-invasive','Y','2025-10-23 00:00:00'),(96717,11,'XH6XY9','Pancreatobiliary-type carcinoma','Y','2025-10-23 00:00:00'),(96718,11,'XH27L5','Pancreatoblastoma','Y','2025-10-23 00:00:00'),(96719,11,'XM9Z07','Pancrelipase','Y','2025-10-23 00:00:00'),(96720,11,'XM6014','Pancreozymin-cholecystokinin','Y','2025-10-23 00:00:00'),(96721,11,'XM5CB4','Pancuronium','Y','2025-10-23 00:00:00'),(96722,11,'XE080','Panel component of medical device','Y','2025-10-23 00:00:00'),(96723,11,'XM2EM5','Pangamic acid','Y','2025-10-23 00:00:00'),(96724,11,'MB23.H','Panic attack','Y','2025-10-23 00:00:00'),(96725,11,'6A80.1','Panic attacks in mood episodes','Y','2025-10-23 00:00:00'),(96726,11,'6B01','Panic disorder','Y','2025-10-23 00:00:00'),(96727,11,'XM02N8','Panipenem','Y','2025-10-23 00:00:00'),(96728,11,'XM1GA2','Panitumumab','Y','2025-10-23 00:00:00'),(96729,11,'CA21.1','Panlobular emphysema','Y','2025-10-23 00:00:00'),(96730,11,'EF00','Panniculitis','Y','2025-10-23 00:00:00'),(96731,11,'EF00.Y','Panniculitis of other specified aetiology','Y','2025-10-23 00:00:00'),(96732,11,'EF00.Z','Panniculitis of undetermined or unspecified etiology','Y','2025-10-23 00:00:00'),(96733,11,'XM96L9','Panobinostat','Y','2025-10-23 00:00:00'),(96734,11,'XM72U8','Panthenol','Y','2025-10-23 00:00:00'),(96735,11,'XM7DL5','Panthenol topical','Y','2025-10-23 00:00:00'),(96736,11,'XN4B5','Panton-Valentine Leukocidin','Y','2025-10-23 00:00:00'),(96737,11,'XM86M3','Pantoprazole','Y','2025-10-23 00:00:00'),(96738,11,'5B5H','Pantothenic acid deficiency','Y','2025-10-23 00:00:00'),(96739,11,'9C20','Panuveitis','Y','2025-10-23 00:00:00'),(96740,11,'9C20.Z','Panuveitis, unspecified','Y','2025-10-23 00:00:00'),(96741,11,'XM5796','Panwarfin','Y','2025-10-23 00:00:00'),(96742,11,'XM6DW4','Papain','Y','2025-10-23 00:00:00'),(96743,11,'XM72V4','Papain digestant','Y','2025-10-23 00:00:00'),(96744,11,'XM1YK2','Papaveretum','Y','2025-10-23 00:00:00'),(96745,11,'XM8X70','Papaverine','Y','2025-10-23 00:00:00'),(96746,11,'XM7FH3','Papaverine and derivatives','Y','2025-10-23 00:00:00'),(96747,11,'XM1PF5','Paper wasp venom','Y','2025-10-23 00:00:00'),(96748,11,'XE63Q','Paper, cardboard','Y','2025-10-23 00:00:00'),(96749,11,'XH6LV9','Papillary adenocarcinoma, NOS','Y','2025-10-23 00:00:00'),(96750,11,'XH7JU0','Papillary adenofibroma','Y','2025-10-23 00:00:00'),(96751,11,'XH09B0','Papillary adenoma, NOS','Y','2025-10-23 00:00:00'),(96752,11,'XH4JA4','Papillary carcinoma in situ','Y','2025-10-23 00:00:00'),(96753,11,'XH8KR8','Papillary carcinoma of the breast','Y','2025-10-23 00:00:00'),(96754,11,'XH1ND9','Papillary carcinoma of thyroid','Y','2025-10-23 00:00:00'),(96755,11,'2D10.1','Papillary carcinoma of thyroid gland','Y','2025-10-23 00:00:00'),(96756,11,'XH85E5','Papillary carcinoma, columnar cell','Y','2025-10-23 00:00:00'),(96757,11,'XH0426','Papillary carcinoma, diffuse sclerosing','Y','2025-10-23 00:00:00'),(96758,11,'XH0Q59','Papillary carcinoma, encapsulated, of thyroid','Y','2025-10-23 00:00:00'),(96759,11,'XH29M4','Papillary carcinoma, follicular variant','Y','2025-10-23 00:00:00'),(96760,11,'XH0UU4','Papillary carcinoma, NOS','Y','2025-10-23 00:00:00'),(96761,11,'XH5YT2','Papillary carcinoma, oncocytic variant','Y','2025-10-23 00:00:00'),(96762,11,'9A60.0','Papillary conjunctivitis','Y','2025-10-23 00:00:00'),(96763,11,'9A60.0Z','Papillary conjunctivitis, unspecified','Y','2025-10-23 00:00:00'),(96764,11,'XH6JU6','Papillary cystadenocarcinoma, NOS','Y','2025-10-23 00:00:00'),(96765,11,'XH9MS1','Papillary cystadenofibroma','Y','2025-10-23 00:00:00'),(96766,11,'XH1P30','Papillary cystadenoma, borderline malignancy','Y','2025-10-23 00:00:00'),(96767,11,'XH0FM6','Papillary cystadenoma, NOS','Y','2025-10-23 00:00:00'),(96768,11,'XA4LG9','Papillary dermis','Y','2025-10-23 00:00:00'),(96769,11,'XH9J28','Papillary ependymoma','Y','2025-10-23 00:00:00'),(96770,11,'XH3XU4','Papillary glioneuronal tumour','Y','2025-10-23 00:00:00'),(96771,11,'XH4DX4','Papillary hidradenoma','Y','2025-10-23 00:00:00'),(96772,11,'DA01.40','Papillary hyperplasia of oral mucosa','Y','2025-10-23 00:00:00'),(96773,11,'XH4SY7','Papillary intralymphatic angioendothelioma','Y','2025-10-23 00:00:00'),(96774,11,'XH2NY9','Papillary meningioma','Y','2025-10-23 00:00:00'),(96775,11,'XH2AW7','Papillary microcarcinoma','Y','2025-10-23 00:00:00'),(96776,11,'XA2DC8','Papillary muscle','Y','2025-10-23 00:00:00'),(96777,11,'XH26M2','Papillary neoplasm, pancreatobiliary-type, with high grade intraepithelial neoplasia','Y','2025-10-23 00:00:00'),(96778,11,'XH1D07','Papillary renal cell carcinoma','Y','2025-10-23 00:00:00'),(96779,11,'XH6S97','Papillary squamous cell carcinoma','Y','2025-10-23 00:00:00'),(96780,11,'XH8YK9','Papillary squamous cell carcinoma, non-invasive','Y','2025-10-23 00:00:00'),(96781,11,'XH3904','Papillary tumour of the pineal region','Y','2025-10-23 00:00:00'),(96782,11,'XH0NZ4','Papillary urothelial carcinoma','Y','2025-10-23 00:00:00'),(96783,11,'XH12F0','Papillary urothelial carcinoma, non-invasive','Y','2025-10-23 00:00:00'),(96784,11,'XH5UU5','Papillary urothelial neoplasm of low malignant potential','Y','2025-10-23 00:00:00'),(96785,11,'XH24M0','Papillary-basaloid carcinoma','Y','2025-10-23 00:00:00'),(96786,11,'9C40.A0','Papilloedema','Y','2025-10-23 00:00:00'),(96787,11,'XH17Q9','Papilloma, NOS','Y','2025-10-23 00:00:00'),(96788,11,'XH1BH4','Papillomatosis, glandular','Y','2025-10-23 00:00:00'),(96789,11,'XM9BT4','Papillomavirus (human types 16,18)','Y','2025-10-23 00:00:00'),(96790,11,'XM1821','Papillomavirus (human types 6,11,16,18)','Y','2025-10-23 00:00:00'),(96791,11,'XM5CE9','Papillomavirus (human types 6,11,16,18,31,33,45,52,58)','Y','2025-10-23 00:00:00'),(96792,11,'XM9QP0','Papillomavirus vaccines','Y','2025-10-23 00:00:00'),(96793,11,'XH4Q20','Papillotubular adenocarcinoma','Y','2025-10-23 00:00:00'),(96794,11,'XH6EJ4','Papillotubular adenoma','Y','2025-10-23 00:00:00'),(96795,11,'EC20.32','Papular palmoplantar keratodermas','Y','2025-10-23 00:00:00'),(96796,11,'EA11','Papular purpuric gloves and socks syndrome','Y','2025-10-23 00:00:00'),(96797,11,'EK50.00','Papular urticaria','Y','2025-10-23 00:00:00'),(96798,11,'ED80.2','Papulopustular acne','Y','2025-10-23 00:00:00'),(96799,11,'ED90.01','Papulopustular rosacea','Y','2025-10-23 00:00:00'),(96800,11,'JA81.0','Papyraceous fetus','Y','2025-10-23 00:00:00'),(96801,11,'GA18.4','Para ovarian cyst','Y','2025-10-23 00:00:00'),(96802,11,'XM9AG3','Para-aminobenzoic acid','Y','2025-10-23 00:00:00'),(96803,11,'XM75Y5','Para-aminophenol derivatives','Y','2025-10-23 00:00:00'),(96804,11,'XA8S02','Para-aortic body','Y','2025-10-23 00:00:00'),(96805,11,'XA4WL5','Paracardial superior gastric lymph node','Y','2025-10-23 00:00:00'),(96806,11,'9D42.5','Para-central scotoma','Y','2025-10-23 00:00:00'),(96807,11,'XM0ZC2','Paracetaldehyde','Y','2025-10-23 00:00:00'),(96808,11,'XM9LG4','Parachlorophenol (camphorated)','Y','2025-10-23 00:00:00'),(96809,11,'XH0S20','Parachordoma','Y','2025-10-23 00:00:00'),(96810,11,'XE627','Parachute','Y','2025-10-23 00:00:00'),(96811,11,'XE4VS','Parachute used in descent from damaged aircraft as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(96812,11,'XE08L','Parachute used in descent from undamaged aircraft as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(96813,11,'XN7RH','Paracoccidioides','Y','2025-10-23 00:00:00'),(96814,11,'XN5UX','Paracoccidioides brasiliensis','Y','2025-10-23 00:00:00'),(96815,11,'1F2E','Paracoccidioidomycosis','Y','2025-10-23 00:00:00'),(96816,11,'1F2E.Z','Paracoccidioidomycosis, unspecified','Y','2025-10-23 00:00:00'),(96817,11,'XA9JM2','Paracolic lymph node','Y','2025-10-23 00:00:00'),(96818,11,'XM3XK2','Paradichlorobenzene','Y','2025-10-23 00:00:00'),(96819,11,'9B00.2','Paradoxical pupillary reaction to light or darkness','Y','2025-10-23 00:00:00'),(96820,11,'XM8PX9','Paraffin wax','Y','2025-10-23 00:00:00'),(96821,11,'XH0EW6','Paraganglioma, NOS','Y','2025-10-23 00:00:00'),(96822,11,'XA9519','Paraganglion','Y','2025-10-23 00:00:00'),(96823,11,'1F85','Paragonimiasis','Y','2025-10-23 00:00:00'),(96824,11,'XN27A','Paragonimus','Y','2025-10-23 00:00:00'),(96825,11,'XN0A6','Paragonimus westermani','Y','2025-10-23 00:00:00'),(96826,11,'XN6CR','Parainfluenza virus','Y','2025-10-23 00:00:00'),(96827,11,'CA0H.0','Paralysis of vocal cords or larynx','Y','2025-10-23 00:00:00'),(96828,11,'MB44.1','Paralytic gait','Y','2025-10-23 00:00:00'),(96829,11,'DA93.0','Paralytic ileus','Y','2025-10-23 00:00:00'),(96830,11,'9A03.42','Paralytic lagophthalmos','Y','2025-10-23 00:00:00'),(96831,11,'9A03.03','Paralytic ptosis of eyelid','Y','2025-10-23 00:00:00'),(96832,11,'MB5Z','Paralytic symptoms, unspecified','Y','2025-10-23 00:00:00'),(96833,11,'XM2LS2','Paramagnetic contrast media','Y','2025-10-23 00:00:00'),(96834,11,'XN240','Paramana virus','Y','2025-10-23 00:00:00'),(96835,11,'XA1UW4','Paramedian forehead','Y','2025-10-23 00:00:00'),(96836,11,'XM7N89','Paramethadione','Y','2025-10-23 00:00:00'),(96837,11,'XM4RH1','Paramethasone','Y','2025-10-23 00:00:00'),(96838,11,'XM12F4','Paramethasone acetate','Y','2025-10-23 00:00:00'),(96839,11,'XA3QA5','Parametrial lymph node','Y','2025-10-23 00:00:00'),(96840,11,'XA9HG1','Parametrium','Y','2025-10-23 00:00:00'),(96841,11,'8C74.0','Paramyotonia congenita','Y','2025-10-23 00:00:00'),(96842,11,'XN82V','Paramyxovirus','Y','2025-10-23 00:00:00'),(96843,11,'XA3ZL3','Paranasal region','Y','2025-10-23 00:00:00'),(96844,11,'8E4A.0','Paraneoplastic or autoimmune disorders of the central nervous system, brain or spinal cord','Y','2025-10-23 00:00:00'),(96845,11,'8E4A.3','Paraneoplastic or autoimmune disorders of the muscle','Y','2025-10-23 00:00:00'),(96846,11,'8E4A','Paraneoplastic or autoimmune disorders of the nervous system','Y','2025-10-23 00:00:00'),(96847,11,'8E4A.1','Paraneoplastic or autoimmune disorders of the peripheral or autonomic nervous system','Y','2025-10-23 00:00:00'),(96848,11,'8E4A.2','Paraneoplastic or autoimmune neuromuscular transmission disorders','Y','2025-10-23 00:00:00'),(96849,11,'EB40.2','Paraneoplastic pemphigus','Y','2025-10-23 00:00:00'),(96850,11,'4A41.11','Paraneoplastic polymyositis','Y','2025-10-23 00:00:00'),(96851,11,'9B71.4','Paraneoplastic retinopathy','Y','2025-10-23 00:00:00'),(96852,11,'9B71.4Z','Paraneoplastic retinopathy, unspecified','Y','2025-10-23 00:00:00'),(96853,11,'EL10','Paraneoplastic syndromes involving skin','Y','2025-10-23 00:00:00'),(96854,11,'XN5JV','Parano','Y','2025-10-23 00:00:00'),(96855,11,'MB26.7','Paranoid ideation','Y','2025-10-23 00:00:00'),(96856,11,'XM7LW0','Paraoxon','Y','2025-10-23 00:00:00'),(96857,11,'XA6QY3','Parapharyngeal recess','Y','2025-10-23 00:00:00'),(96858,11,'6D36','Paraphilic disorder involving solitary behaviour or consenting individuals','Y','2025-10-23 00:00:00'),(96859,11,'6D3Z','Paraphilic disorders, unspecified','Y','2025-10-23 00:00:00'),(96860,11,'GB05.3','Paraphimosis','Y','2025-10-23 00:00:00'),(96861,11,'MB56','Paraplegia','Y','2025-10-23 00:00:00'),(96862,11,'XN1M0','Parapox virus','Y','2025-10-23 00:00:00'),(96863,11,'XM4SL8','Paraquat','Y','2025-10-23 00:00:00'),(96864,11,'XA6ZA5','Pararectal inferior mesenteric lymph node','Y','2025-10-23 00:00:00'),(96865,11,'9A81','Parasites in the anterior chamber of the eye','Y','2025-10-23 00:00:00'),(96866,11,'KA64','Parasitic diseases in the fetus or newborn','Y','2025-10-23 00:00:00'),(96867,11,'KA64.Z','Parasitic diseases in the fetus or newborn, unspecified','Y','2025-10-23 00:00:00'),(96868,11,'SD94','Parasitic disorder (TM1)','Y','2025-10-23 00:00:00'),(96869,11,'1D04.0','Parasitic intracerebral granuloma','Y','2025-10-23 00:00:00'),(96870,11,'1D02.3','Parasitic myelitis','Y','2025-10-23 00:00:00'),(96871,11,'DA25.12','Parasitic oesophageal ulcer','Y','2025-10-23 00:00:00'),(96872,11,'1D00.2','Parasitic or protozoal encephalitis','Y','2025-10-23 00:00:00'),(96873,11,'1D01.2','Parasitic or protozoal meningitis','Y','2025-10-23 00:00:00'),(96874,11,'FA12.3','Parasitic postinfectious arthropathies','Y','2025-10-23 00:00:00'),(96875,11,'7B02.2','Parasomnia disorder due to a medical condition','Y','2025-10-23 00:00:00'),(96876,11,'7B02.3','Parasomnia disorder due to a medication or substance','Y','2025-10-23 00:00:00'),(96877,11,'7B0Z','Parasomnia disorders, unspecified','Y','2025-10-23 00:00:00'),(96878,11,'7B01','Parasomnias related to REM sleep','Y','2025-10-23 00:00:00'),(96879,11,'7B01.Z','Parasomnias related to REM sleep, unspecified','Y','2025-10-23 00:00:00'),(96880,11,'2A02.11','Paraspinal neuroblastoma','Y','2025-10-23 00:00:00'),(96881,11,'XA2CH0','Parasternal lymph node','Y','2025-10-23 00:00:00'),(96882,11,'DD57','Parastomal hernia','Y','2025-10-23 00:00:00'),(96883,11,'XA7EA2','Parasympathetic nervous system','Y','2025-10-23 00:00:00'),(96884,11,'XH5LK3','Parasympathetic paraganglioma','Y','2025-10-23 00:00:00'),(96885,11,'XM3A77','Parasympatholytic','Y','2025-10-23 00:00:00'),(96886,11,'XM8JX6','Parasympathomimetic drug','Y','2025-10-23 00:00:00'),(96887,11,'9B01.1','Parasympathoparetic pupils','Y','2025-10-23 00:00:00'),(96888,11,'XM6PY1','Paratertiary butylphenol','Y','2025-10-23 00:00:00'),(96889,11,'XM7U05','Paratertiary butylphenol formaldehyde resin','Y','2025-10-23 00:00:00'),(96890,11,'XM14N6','Parathion','Y','2025-10-23 00:00:00'),(96891,11,'XM1YY0','Parathion-methyl','Y','2025-10-23 00:00:00'),(96892,11,'XH7JQ0','Parathyroid carcinoma','Y','2025-10-23 00:00:00'),(96893,11,'XM7GD6','Parathyroid gland extract','Y','2025-10-23 00:00:00'),(96894,11,'XM4RN4','Parathyroid hormone','Y','2025-10-23 00:00:00'),(96895,11,'XA1342','Parathyroid','Y','2025-10-23 00:00:00'),(96896,11,'XA7W32','Paratracheal lymph node','Y','2025-10-23 00:00:00'),(96897,11,'1A08','Paratyphoid fever','Y','2025-10-23 00:00:00'),(96898,11,'XM95H3','Paratyphoid vaccines','Y','2025-10-23 00:00:00'),(96899,11,'DD54','Paraumbilical hernia','Y','2025-10-23 00:00:00'),(96900,11,'XA3KB3','Paraurethral gland','Y','2025-10-23 00:00:00'),(96901,11,'XM96Q4','Parecoxib','Y','2025-10-23 00:00:00'),(96902,11,'XM7D21','Paredrine','Y','2025-10-23 00:00:00'),(96903,11,'XM1LB8','Paregoric','Y','2025-10-23 00:00:00'),(96904,11,'XE8AA','Parent','Y','2025-10-23 00:00:00'),(96905,11,'QE91','Parental overprotection','Y','2025-10-23 00:00:00'),(96906,11,'9D01.1','Paresis of accommodation','Y','2025-10-23 00:00:00'),(96907,11,'XM1U35','Pargyline','Y','2025-10-23 00:00:00'),(96908,11,'XM9LS5','Paricalcitol','Y','2025-10-23 00:00:00'),(96909,11,'XA2J87','Parietal bone','Y','2025-10-23 00:00:00'),(96910,11,'XA6XV2','Parietal branch of the superficial temporal artery','Y','2025-10-23 00:00:00'),(96911,11,'XH1JZ0','Parietal cell carcinoma','Y','2025-10-23 00:00:00'),(96912,11,'XA0T02','Parietal emissary vein','Y','2025-10-23 00:00:00'),(96913,11,'XA92Y6','Parietal Lobe','Y','2025-10-23 00:00:00'),(96914,11,'XA8RK9','Parietal pericardium','Y','2025-10-23 00:00:00'),(96915,11,'XA7RC6','Parietal pleura','Y','2025-10-23 00:00:00'),(96916,11,'XA4W34','Parietal scalp','Y','2025-10-23 00:00:00'),(96917,11,'XA93S9','Parietal scalp margin','Y','2025-10-23 00:00:00'),(96918,11,'XA4HX4','Parietal venous lacunae','Y','2025-10-23 00:00:00'),(96919,11,'XA9KX3','Parietal wall','Y','2025-10-23 00:00:00'),(96920,11,'XE3NV','Parking area','Y','2025-10-23 00:00:00'),(96921,11,'8A00.0','Parkinson disease','Y','2025-10-23 00:00:00'),(96922,11,'8A00.0Z','Parkinson disease, unspecified','Y','2025-10-23 00:00:00'),(96923,11,'8A00','Parkinsonism','Y','2025-10-23 00:00:00'),(96924,11,'8A00.20','Parkinsonism due to heredodegenerative disorders','Y','2025-10-23 00:00:00'),(96925,11,'8A00.26','Parkinsonism due to structural lesions','Y','2025-10-23 00:00:00'),(96926,11,'8A00.Z','Parkinsonism, unspecified','Y','2025-10-23 00:00:00'),(96927,11,'XM9V60','Parnaparin','Y','2025-10-23 00:00:00'),(96928,11,'XM3KZ3','Parnate','Y','2025-10-23 00:00:00'),(96929,11,'XM1696','Paromomycin','Y','2025-10-23 00:00:00'),(96930,11,'MB41.1','Parosmia','Y','2025-10-23 00:00:00'),(96931,11,'XH8HG5','Parosteal osteosarcoma','Y','2025-10-23 00:00:00'),(96932,11,'XA07S5','Parotid gland','Y','2025-10-23 00:00:00'),(96933,11,'XA44X8','Parotid gland duct','Y','2025-10-23 00:00:00'),(96934,11,'XA0W17','Parotid lymph node','Y','2025-10-23 00:00:00'),(96935,11,'XA91G2','Parotid vein','Y','2025-10-23 00:00:00'),(96936,11,'XA9TX2','Parovarian region','Y','2025-10-23 00:00:00'),(96937,11,'XM3PJ6','Paroxetine','Y','2025-10-23 00:00:00'),(96938,11,'XM7TK6','Paroxypropione','Y','2025-10-23 00:00:00'),(96939,11,'BC81.30','Paroxysmal atrial fibrillation','Y','2025-10-23 00:00:00'),(96940,11,'3A20.3','Paroxysmal cold haemoglobinuria','Y','2025-10-23 00:00:00'),(96941,11,'8A02.2','Paroxysmal dystonia','Y','2025-10-23 00:00:00'),(96942,11,'3A21.0','Paroxysmal nocturnal haemoglobinuria','Y','2025-10-23 00:00:00'),(96943,11,'MC81.3','Paroxysmal tachycardia','Y','2025-10-23 00:00:00'),(96944,11,'XE69N','Parrot, parakeet, cockatoo','Y','2025-10-23 00:00:00'),(96945,11,'XE4U5','Part of building or grounds, balcony','Y','2025-10-23 00:00:00'),(96946,11,'XE2XM','Part of building or grounds, bathroom, toilet','Y','2025-10-23 00:00:00'),(96947,11,'XE8RZ','Part of building or grounds, bedroom','Y','2025-10-23 00:00:00'),(96948,11,'XE70Z','Part of building or grounds, canteen or cafeteria','Y','2025-10-23 00:00:00'),(96949,11,'XE115','Part of building or grounds, classroom','Y','2025-10-23 00:00:00'),(96950,11,'XE6ZJ','Part of building or grounds, corridor','Y','2025-10-23 00:00:00'),(96951,11,'XE65J','Part of building or grounds, driveway','Y','2025-10-23 00:00:00'),(96952,11,'XE9L8','Part of building or grounds, elevator','Y','2025-10-23 00:00:00'),(96953,11,'XE2Q4','Part of building or grounds, garage','Y','2025-10-23 00:00:00'),(96954,11,'XE3DE','Part of building or grounds, garden or yard','Y','2025-10-23 00:00:00'),(96955,11,'XE4XM','Part of building or grounds, kitchen','Y','2025-10-23 00:00:00'),(96956,11,'XE1M5','Part of building or grounds, living room','Y','2025-10-23 00:00:00'),(96957,11,'XE3R6','Part of building or grounds, lobby','Y','2025-10-23 00:00:00'),(96958,11,'XE051','Part of building or grounds, office or home office','Y','2025-10-23 00:00:00'),(96959,11,'XE6ZY','Part of building or grounds, other specified indoor part of building or grounds','Y','2025-10-23 00:00:00'),(96960,11,'XE06N','Part of building or grounds, other specified outdoor part of building or grounds','Y','2025-10-23 00:00:00'),(96961,11,'XE9DN','Part of building or grounds, other specified sporting facility','Y','2025-10-23 00:00:00'),(96962,11,'XE8SG','Part of building or grounds, playground','Y','2025-10-23 00:00:00'),(96963,11,'XE45Z','Part of building or grounds, playroom or family room','Y','2025-10-23 00:00:00'),(96964,11,'XE5MW','Part of building or grounds, private parking area','Y','2025-10-23 00:00:00'),(96965,11,'XE5RE','Part of building or grounds, private road','Y','2025-10-23 00:00:00'),(96966,11,'XE2NQ','Part of building or grounds, stairs','Y','2025-10-23 00:00:00'),(96967,11,'XE4PW','Part of building or grounds, swimming pool','Y','2025-10-23 00:00:00'),(96968,11,'XE7DE','Part of building or grounds, tennis court','Y','2025-10-23 00:00:00'),(96969,11,'XE79E','Part or component of powered or unpowered aircraft','Y','2025-10-23 00:00:00'),(96970,11,'XE5G3','Part or component of powered or unpowered watercraft','Y','2025-10-23 00:00:00'),(96971,11,'XE27U','Part, component or sub-assembly term not applicable','Y','2025-10-23 00:00:00'),(96972,11,'LB21.4','Partial agenesis of pancreas','Y','2025-10-23 00:00:00'),(96973,11,'LA86.21','Partial anomalous pulmonary venous connection','Y','2025-10-23 00:00:00'),(96974,11,'XE2JF','Partial blockage','Y','2025-10-23 00:00:00'),(96975,11,'6B65','Partial dissociative identity disorder','Y','2025-10-23 00:00:00'),(96976,11,'XH5325','Partial hydatidiform mole','Y','2025-10-23 00:00:00'),(96977,11,'DB98.72','Partial nodular transformation of liver','Y','2025-10-23 00:00:00'),(96978,11,'XS66','Partial vocal cord paralysis','Y','2025-10-23 00:00:00'),(96979,11,'XE0VB','Particulates','Y','2025-10-23 00:00:00'),(96980,11,'QC20.0','Partner illness problem','Y','2025-10-23 00:00:00'),(96981,11,'XA1PT3','Parts of tooth','Y','2025-10-23 00:00:00'),(96982,11,'XE0YD','Parts or components of land vehicle or means of land transport','Y','2025-10-23 00:00:00'),(96983,11,'XA0N54','Parumbilical Vein','Y','2025-10-23 00:00:00'),(96984,11,'XN7X8','Parvovirus','Y','2025-10-23 00:00:00'),(96985,11,'1D93','Parvovirus infection of unspecified site','Y','2025-10-23 00:00:00'),(96986,11,'XM2QH1','Pasiniazid','Y','2025-10-23 00:00:00'),(96987,11,'XM3AN9','Pasireotide','Y','2025-10-23 00:00:00'),(96988,11,'XE96T','Passenger balloon, unpowered','Y','2025-10-23 00:00:00'),(96989,11,'XE50Z','Passenger car','Y','2025-10-23 00:00:00'),(96990,11,'XE9YQ','Passenger ship as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(96991,11,'XE3HS','Passenger ship, passenger liner, ocean liner','Y','2025-10-23 00:00:00'),(96992,11,'DB98.8','Passive congestion of liver','Y','2025-10-23 00:00:00'),(96993,11,'XN3U2','Pasteurella','Y','2025-10-23 00:00:00'),(96994,11,'XN30D','Pasteurella multocida','Y','2025-10-23 00:00:00'),(96995,11,'1B99','Pasteurellosis','Y','2025-10-23 00:00:00'),(96996,11,'ED70.20','Patchy alopecia areata of scalp','Y','2025-10-23 00:00:00'),(96997,11,'XA4T36','Patella','Y','2025-10-23 00:00:00'),(96998,11,'LB95','Patella aplasia or hypoplasia','Y','2025-10-23 00:00:00'),(96999,11,'LD24.J','Patellar dysostoses','Y','2025-10-23 00:00:00'),(97000,11,'LD24.JZ','Patellar dysostoses, unspecified','Y','2025-10-23 00:00:00'),(97001,11,'XA3772','Patellar ligament','Y','2025-10-23 00:00:00'),(97002,11,'XA5186','Patellar plexus','Y','2025-10-23 00:00:00'),(97003,11,'XA9L17','Patellar region','Y','2025-10-23 00:00:00'),(97004,11,'FA32.1','Patellofemoral disorders','Y','2025-10-23 00:00:00'),(97005,11,'XA0VJ4','Patellofemoral joint','Y','2025-10-23 00:00:00'),(97006,11,'LA8B.4','Patent arterial duct','Y','2025-10-23 00:00:00'),(97007,11,'KB48','Patent arterial duct of prematurity','Y','2025-10-23 00:00:00'),(97008,11,'XM02S2','Patent blue','Y','2025-10-23 00:00:00'),(97009,11,'LA8E.0','Patent oval foramen','Y','2025-10-23 00:00:00'),(97010,11,'LD46.1','Paternal imprinting error','Y','2025-10-23 00:00:00'),(97011,11,'FB80.B','Pathological fracture','Y','2025-10-23 00:00:00'),(97012,11,'DA08.14','Pathological resorption of teeth','Y','2025-10-23 00:00:00'),(97013,11,'XE7BE','Patient data problem','Y','2025-10-23 00:00:00'),(97014,11,'XE4HK','Patient device interaction problem','Y','2025-10-23 00:00:00'),(97015,11,'XE25C','Patient electrode component of medical device','Y','2025-10-23 00:00:00'),(97016,11,'XE525','Patient lead component of medical device','Y','2025-10-23 00:00:00'),(97017,11,'PL14.C','Patient received diagnostic test or treatment intended for another patient','Y','2025-10-23 00:00:00'),(97018,11,'QA8D','Patient received diagnostic test or treatment intended for another patient without injury or harm','Y','2025-10-23 00:00:00'),(97019,11,'XE2YD','Patient sample problem with device identified','Y','2025-10-23 00:00:00'),(97020,11,'XE6GS','Patient-device incompatibility','Y','2025-10-23 00:00:00'),(97021,11,'XM3FT2','Patisiran','Y','2025-10-23 00:00:00'),(97022,11,'9D42','Patterns of visual field impairment','Y','2025-10-23 00:00:00'),(97023,11,'9D42.Z','Patterns of visual field impairment, unspecified','Y','2025-10-23 00:00:00'),(97024,11,'XM9C47','Patulin','Y','2025-10-23 00:00:00'),(97025,11,'AB10.1','Patulous Eustachian tube','Y','2025-10-23 00:00:00'),(97026,11,'1B20.0','Paucibacillary leprosy','Y','2025-10-23 00:00:00'),(97027,11,'MF84','Pauci-immune proliferative glomerulonephritis','Y','2025-10-23 00:00:00'),(97028,11,'XM4FT3','Pazopanib','Y','2025-10-23 00:00:00'),(97029,11,'XM3Z59','Pazufloxacin','Y','2025-10-23 00:00:00'),(97030,11,'XM7B39','Peach kernel','Y','2025-10-23 00:00:00'),(97031,11,'XM3CM0','Peach kernel oil (emulsion)','Y','2025-10-23 00:00:00'),(97032,11,'XM85Z3','Peanut oil (emulsion)','Y','2025-10-23 00:00:00'),(97033,11,'XM1U48','Peanut oil topical','Y','2025-10-23 00:00:00'),(97034,11,'XM4B51','Pearly Gates (morning glory seeds)','Y','2025-10-23 00:00:00'),(97035,11,'XM2Q40','Pecilocin','Y','2025-10-23 00:00:00'),(97036,11,'XM2HR7','Pectin','Y','2025-10-23 00:00:00'),(97037,11,'XA9E00','Pectineus muscle','Y','2025-10-23 00:00:00'),(97038,11,'XA07E4','Pectineus tendon','Y','2025-10-23 00:00:00'),(97039,11,'XA63L4','Pectoral lymph node','Y','2025-10-23 00:00:00'),(97040,11,'XA1QH6','Pectoralis major muscle','Y','2025-10-23 00:00:00'),(97041,11,'XA3C70','Pectoralis major tendon','Y','2025-10-23 00:00:00'),(97042,11,'XA0SB2','Pectoralis minor muscle','Y','2025-10-23 00:00:00'),(97043,11,'XA40K0','Pectoralis minor tendon','Y','2025-10-23 00:00:00'),(97044,11,'XE94Q','Pedal cycle','Y','2025-10-23 00:00:00'),(97045,11,'XE7ZZ','Pedal cycle as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(97046,11,'XE71D','Pedal cycle as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(97047,11,'XE8HU','Pedal cycle baby carrier','Y','2025-10-23 00:00:00'),(97048,11,'XE6K0','Pedestrian as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(97049,11,'XE88K','Pedestrian as mode of transport of person injured in transport event','Y','2025-10-23 00:00:00'),(97050,11,'XE3NU','Pedestrian conveyance as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(97051,11,'XE7ZY','Pedestrian conveyance as mode of transport of person injured in transport event','Y','2025-10-23 00:00:00'),(97052,11,'1G00','Pediculosis','Y','2025-10-23 00:00:00'),(97053,11,'1G00.0','Pediculosis capitis','Y','2025-10-23 00:00:00'),(97054,11,'1G00.1','Pediculosis corporis','Y','2025-10-23 00:00:00'),(97055,11,'1G00.Z','Pediculosis of unspecified site or type','Y','2025-10-23 00:00:00'),(97056,11,'XN0D5','Pediculus','Y','2025-10-23 00:00:00'),(97057,11,'6D32','Pedophilic disorder','Y','2025-10-23 00:00:00'),(97058,11,'XE3VG','Peeled or delaminated','Y','2025-10-23 00:00:00'),(97059,11,'XM3RJ6','Peficitinib','Y','2025-10-23 00:00:00'),(97060,11,'XM1Z91','Pefloxacin','Y','2025-10-23 00:00:00'),(97061,11,'XM9D28','Pegademase','Y','2025-10-23 00:00:00'),(97062,11,'XM5DZ4','Pegademase, bovine','Y','2025-10-23 00:00:00'),(97063,11,'XM0GK6','Pegaptanib','Y','2025-10-23 00:00:00'),(97064,11,'XM6AL6','Pegaspargase','Y','2025-10-23 00:00:00'),(97065,11,'XM8913','Pegcetacoplan','Y','2025-10-23 00:00:00'),(97066,11,'XM4TX7','Pegfilgrastim','Y','2025-10-23 00:00:00'),(97067,11,'XM9D96','Peginesatide','Y','2025-10-23 00:00:00'),(97068,11,'XM1RW9','Peginterferon alfa-2a','Y','2025-10-23 00:00:00'),(97069,11,'XM70P0','Peginterferon alfa-2b','Y','2025-10-23 00:00:00'),(97070,11,'XM5L32','Peginterferon alfacon-2','Y','2025-10-23 00:00:00'),(97071,11,'XM3XV8','Peginterferon beta-1a','Y','2025-10-23 00:00:00'),(97072,11,'XM9TL4','Pegloticase','Y','2025-10-23 00:00:00'),(97073,11,'XM8VY9','Pegteograstim','Y','2025-10-23 00:00:00'),(97074,11,'XM30U5','Pegunigalsidase alfa','Y','2025-10-23 00:00:00'),(97075,11,'XM8F43','Pegvaliase','Y','2025-10-23 00:00:00'),(97076,11,'XM5CS4','Pegvisomant','Y','2025-10-23 00:00:00'),(97077,11,'DB98.1','Peliosis hepatis','Y','2025-10-23 00:00:00'),(97078,11,'8A44.0','Pelizaeus-Merzbacher disease','Y','2025-10-23 00:00:00'),(97079,11,'LD90.2','Pelizaeus-Merzbacher-like disease','Y','2025-10-23 00:00:00'),(97080,11,'5B5C.0','Pellagra','Y','2025-10-23 00:00:00'),(97081,11,'XM9FH0','Pelletierine tannate','Y','2025-10-23 00:00:00'),(97082,11,'XA25Q2','Pelvic cavity','Y','2025-10-23 00:00:00'),(97083,11,'XA5CW9','Pelvic floor','Y','2025-10-23 00:00:00'),(97084,11,'GC40.4','Pelvic floor muscle disruption','Y','2025-10-23 00:00:00'),(97085,11,'GC40.4Z','Pelvic floor muscle disruption, unspecified','Y','2025-10-23 00:00:00'),(97086,11,'DD50.1','Pelvic hernia','Y','2025-10-23 00:00:00'),(97087,11,'XA5HU6','Pelvic lymph nodes','Y','2025-10-23 00:00:00'),(97088,11,'MD81.11','Pelvic or perineal pain','Y','2025-10-23 00:00:00'),(97089,11,'GC40','Pelvic organ prolapse','Y','2025-10-23 00:00:00'),(97090,11,'GC40.Z','Pelvic organ prolapse, unspecified','Y','2025-10-23 00:00:00'),(97091,11,'GA06','Pelvic peritoneal adhesions of unknown or combined origin','Y','2025-10-23 00:00:00'),(97092,11,'XA5PF4','Pelvic peritoneum','Y','2025-10-23 00:00:00'),(97093,11,'XA1GM8','Pelvic splanchnic nerve','Y','2025-10-23 00:00:00'),(97094,11,'BD75.3','Pelvic varices','Y','2025-10-23 00:00:00'),(97095,11,'XA29C1','Pelvic wall','Y','2025-10-23 00:00:00'),(97096,11,'XA8Y23','Pelvis','Y','2025-10-23 00:00:00'),(97097,11,'XM8UG5','Pembrolizumab','Y','2025-10-23 00:00:00'),(97098,11,'XM16W8','Pemetrexed','Y','2025-10-23 00:00:00'),(97099,11,'XM3ZJ4','Pemirolast','Y','2025-10-23 00:00:00'),(97100,11,'XM52S5','Pemoline','Y','2025-10-23 00:00:00'),(97101,11,'EB41','Pemphigoid','Y','2025-10-23 00:00:00'),(97102,11,'EB40','Pemphigus','Y','2025-10-23 00:00:00'),(97103,11,'EB40.1','Pemphigus foliaceus','Y','2025-10-23 00:00:00'),(97104,11,'EB40.0','Pemphigus vulgaris','Y','2025-10-23 00:00:00'),(97105,11,'EB40.0Z','Pemphigus vulgaris, unspecified','Y','2025-10-23 00:00:00'),(97106,11,'EB40.Z','Pemphigus, unspecified','Y','2025-10-23 00:00:00'),(97107,11,'XM8JB8','Pempidine','Y','2025-10-23 00:00:00'),(97108,11,'XE38A','Pen, pencil','Y','2025-10-23 00:00:00'),(97109,11,'XM16L6','Penamecillin','Y','2025-10-23 00:00:00'),(97110,11,'XM17Y6','Penbutolol','Y','2025-10-23 00:00:00'),(97111,11,'XM3AF7','Penciclovir','Y','2025-10-23 00:00:00'),(97112,11,'XM9X60','Penciclovir topical','Y','2025-10-23 00:00:00'),(97113,11,'5A00.02','Pendred syndrome','Y','2025-10-23 00:00:00'),(97114,11,'XM9XB6','Penethamate','Y','2025-10-23 00:00:00'),(97115,11,'NA06.89','Penetrating injury of eyeball, bilateral','Y','2025-10-23 00:00:00'),(97116,11,'NA06.84','Penetrating wound of eyeball without foreign body, unilateral','Y','2025-10-23 00:00:00'),(97117,11,'NA06.1','Penetrating wound of orbit with or without foreign body','Y','2025-10-23 00:00:00'),(97118,11,'XM5SZ6','Penfluridol','Y','2025-10-23 00:00:00'),(97119,11,'XM1DC4','Penflutizide','Y','2025-10-23 00:00:00'),(97120,11,'XM02F5','Pengitoxin','Y','2025-10-23 00:00:00'),(97121,11,'XM1QA0','Penicillamine','Y','2025-10-23 00:00:00'),(97122,11,'XM7Q57','Penicillin (any)','Y','2025-10-23 00:00:00'),(97123,11,'MG50.26','Penicillin resistant Escherichia coli','Y','2025-10-23 00:00:00'),(97124,11,'MG50.70','Penicillin resistant Neisseria meningitidis','Y','2025-10-23 00:00:00'),(97125,11,'MG51.10','Penicillin resistant Streptococcus pneumoniae','Y','2025-10-23 00:00:00'),(97126,11,'XM9J86','Penicillinase','Y','2025-10-23 00:00:00'),(97127,11,'MG51.02','Penicillinase-stable beta lactams resistant Staphylococcus aureus','Y','2025-10-23 00:00:00'),(97128,11,'XM3173','Penicillins with extended spectrum','Y','2025-10-23 00:00:00'),(97129,11,'XM39C8','Penicillins, combinations with other antibacterials','Y','2025-10-23 00:00:00'),(97130,11,'XM3Q40','Penicilloyl polylysine','Y','2025-10-23 00:00:00'),(97131,11,'GB06.2','Penile fibromatosis','Y','2025-10-23 00:00:00'),(97132,11,'ED61.10','Penile melanotic macule','Y','2025-10-23 00:00:00'),(97133,11,'XA8EW9','Penile urethra','Y','2025-10-23 00:00:00'),(97134,11,'XA3Q76','Penile urethral meatus','Y','2025-10-23 00:00:00'),(97135,11,'XM3D34','Penimepicycline','Y','2025-10-23 00:00:00'),(97136,11,'XA7QV2','Penis','Y','2025-10-23 00:00:00'),(97137,11,'XM28H1','Penitrem','Y','2025-10-23 00:00:00'),(97138,11,'GA81.0','Penoscrotal pruritus','Y','2025-10-23 00:00:00'),(97139,11,'EC92.0','Penoscrotodynia','Y','2025-10-23 00:00:00'),(97140,11,'XM5JU8','Pentachloroethane','Y','2025-10-23 00:00:00'),(97141,11,'XM32P2','Pentachlorophenol','Y','2025-10-23 00:00:00'),(97142,11,'XM7RN6','Pentaerithrityl','Y','2025-10-23 00:00:00'),(97143,11,'XM2N57','Pentaerythritol','Y','2025-10-23 00:00:00'),(97144,11,'XM7KD0','Pentaerythrityl tetranitrate','Y','2025-10-23 00:00:00'),(97145,11,'XM9AU1','Pentagastrin','Y','2025-10-23 00:00:00'),(97146,11,'XM68K9','Pentamethonium bromide','Y','2025-10-23 00:00:00'),(97147,11,'XM0067','Pentamidine','Y','2025-10-23 00:00:00'),(97148,11,'XM39E8','Pentane','Y','2025-10-23 00:00:00'),(97149,11,'XM90X2','Pentanedioic acid imidazolyl ethanamide','Y','2025-10-23 00:00:00'),(97150,11,'XM6H15','Pentapyrrolinium (bitartrate)','Y','2025-10-23 00:00:00'),(97151,11,'XM0346','Pentaquine','Y','2025-10-23 00:00:00'),(97152,11,'XM9K14','Pentazocine','Y','2025-10-23 00:00:00'),(97153,11,'XM0Q86','Pentetrazol','Y','2025-10-23 00:00:00'),(97154,11,'XM8U27','Penthienate','Y','2025-10-23 00:00:00'),(97155,11,'XM5RL7','Pentifylline','Y','2025-10-23 00:00:00'),(97156,11,'XM01Z3','Pentobarbital','Y','2025-10-23 00:00:00'),(97157,11,'XM2A33','Pentolonium tartrate','Y','2025-10-23 00:00:00'),(97158,11,'XM8GM2','Pentosan polysulfate sodium','Y','2025-10-23 00:00:00'),(97159,11,'XM9T72','Pentostatin','Y','2025-10-23 00:00:00'),(97160,11,'XM8BD1','Pentoxifylline','Y','2025-10-23 00:00:00'),(97161,11,'XM4331','Pentoxyverine','Y','2025-10-23 00:00:00'),(97162,11,'XM3VX9','Pentrinat','Y','2025-10-23 00:00:00'),(97163,11,'XM4Q32','Pentylsalicylamide','Y','2025-10-23 00:00:00'),(97164,11,'XM7040','Peplomycin','Y','2025-10-23 00:00:00'),(97165,11,'XM1XP0','Peppermint (oil)','Y','2025-10-23 00:00:00'),(97166,11,'XM3UE5','Pepsin','Y','2025-10-23 00:00:00'),(97167,11,'XM17U7','Pepsin digestant','Y','2025-10-23 00:00:00'),(97168,11,'XM7K87','Pepstatin','Y','2025-10-23 00:00:00'),(97169,11,'DA62.3','Peptic anastomotic ulcer','Y','2025-10-23 00:00:00'),(97170,11,'DA61','Peptic ulcer, site unspecified','Y','2025-10-23 00:00:00'),(97171,11,'XE1ZX','Perambulator as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(97172,11,'XE1BH','Perambulator as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(97173,11,'XM0AQ6','Peramivir','Y','2025-10-23 00:00:00'),(97174,11,'XM46J5','Perampanel','Y','2025-10-23 00:00:00'),(97175,11,'XM0TU3','Perazine','Y','2025-10-23 00:00:00'),(97176,11,'XM7EK6','Percaine topical','Y','2025-10-23 00:00:00'),(97177,11,'XM7H65','Percaine, spinal','Y','2025-10-23 00:00:00'),(97178,11,'XM5ZH0','Perchloroethylene medicinal','Y','2025-10-23 00:00:00'),(97179,11,'XM07U7','Percodan','Y','2025-10-23 00:00:00'),(97180,11,'XM5AM2','Percorten','Y','2025-10-23 00:00:00'),(97181,11,'MB28.C','Perfectionism','Y','2025-10-23 00:00:00'),(97182,11,'XM7S16','Perflenapent','Y','2025-10-23 00:00:00'),(97183,11,'XM2666','Perflubron','Y','2025-10-23 00:00:00'),(97184,11,'XM8G80','Perflubutane polymer microspheres','Y','2025-10-23 00:00:00'),(97185,11,'XA0GA4','Perforating artery','Y','2025-10-23 00:00:00'),(97186,11,'XA1YF2','Perforating branch of the fibular artery to the','Y','2025-10-23 00:00:00'),(97187,11,'XA1190','Perforating branches of the internal thoracic artery','Y','2025-10-23 00:00:00'),(97188,11,'XA6GZ8','Perforating cutaneous nerve','Y','2025-10-23 00:00:00'),(97189,11,'EE70','Perforating dermatoses','Y','2025-10-23 00:00:00'),(97190,11,'NA06.8A','Perforating injury of eyeball, bilateral','Y','2025-10-23 00:00:00'),(97191,11,'NB91.63','Perforation of duodenum','Y','2025-10-23 00:00:00'),(97192,11,'ME24.35','Perforation of gallbladder or bile ducts','Y','2025-10-23 00:00:00'),(97193,11,'ME24.31','Perforation of large intestine','Y','2025-10-23 00:00:00'),(97194,11,'DA20.3','Perforation of oesophagus','Y','2025-10-23 00:00:00'),(97195,11,'DA20.3Z','Perforation of oesophagus, unspecified','Y','2025-10-23 00:00:00'),(97196,11,'ME24.30','Perforation of small intestine','Y','2025-10-23 00:00:00'),(97197,11,'AB13','Perforation of tympanic membrane','Y','2025-10-23 00:00:00'),(97198,11,'AB13.Z','Perforation of tympanic membrane, unspecified','Y','2025-10-23 00:00:00'),(97199,11,'PL12.2','Perforation or protrusion by device, as mode of injury or harm','Y','2025-10-23 00:00:00'),(97200,11,'XE5DV','Perfume, cologne','Y','2025-10-23 00:00:00'),(97201,11,'XN65X','Pergamino virus','Y','2025-10-23 00:00:00'),(97202,11,'XM1GL7','Pergolide','Y','2025-10-23 00:00:00'),(97203,11,'XM4QA7','Pergonal','Y','2025-10-23 00:00:00'),(97204,11,'XM7F31','Perhexiline','Y','2025-10-23 00:00:00'),(97205,11,'KC21.2','Perianal dermatitis of the newborn','Y','2025-10-23 00:00:00'),(97206,11,'EA83.02','Perianal lichen simplex','Y','2025-10-23 00:00:00'),(97207,11,'XA4B34','Perianal region','Y','2025-10-23 00:00:00'),(97208,11,'DB61','Perianal venous thrombosis','Y','2025-10-23 00:00:00'),(97209,11,'DA09.6','Periapical abscess','Y','2025-10-23 00:00:00'),(97210,11,'DA09.60','Periapical abscess with facial involvement','Y','2025-10-23 00:00:00'),(97211,11,'DA09.61','Periapical abscess with sinus','Y','2025-10-23 00:00:00'),(97212,11,'DA09.62','Periapical abscess without sinus','Y','2025-10-23 00:00:00'),(97213,11,'DA09.6Z','Periapical abscess, unspecified','Y','2025-10-23 00:00:00'),(97214,11,'DA09.7','Periapical periodontitis','Y','2025-10-23 00:00:00'),(97215,11,'DA09.7Z','Periapical periodontitis, unspecified','Y','2025-10-23 00:00:00'),(97216,11,'XA2CA1','Periapical tissue','Y','2025-10-23 00:00:00'),(97217,11,'FB55.2','Periarthritis of wrist','Y','2025-10-23 00:00:00'),(97218,11,'XH0N11','Pericanalicular fibroadenoma','Y','2025-10-23 00:00:00'),(97219,11,'XA48H9','Pericardial cavity','Y','2025-10-23 00:00:00'),(97220,11,'BB25','Pericardial effusion','Y','2025-10-23 00:00:00'),(97221,11,'XA4366','Pericardial vein','Y','2025-10-23 00:00:00'),(97222,11,'XA9X98','Pericardiophrenic artery','Y','2025-10-23 00:00:00'),(97223,11,'BB2Z','Pericarditis, unspecified','Y','2025-10-23 00:00:00'),(97224,11,'XA2XU0','Pericardium','Y','2025-10-23 00:00:00'),(97225,11,'SG28','Pericardium meridian pattern (TM1)','Y','2025-10-23 00:00:00'),(97226,11,'AA04','Perichondritis of external ear','Y','2025-10-23 00:00:00'),(97227,11,'XA53R0','Perichondrium','Y','2025-10-23 00:00:00'),(97228,11,'XM5664','Periciazine','Y','2025-10-23 00:00:00'),(97229,11,'XM41Z4','Periclor','Y','2025-10-23 00:00:00'),(97230,11,'DA0B.6','Pericoronitis','Y','2025-10-23 00:00:00'),(97231,11,'XH75P5','Periductal stromal tumour, low grade','Y','2025-10-23 00:00:00'),(97232,11,'BB42','Periendocarditis','Y','2025-10-23 00:00:00'),(97233,11,'XA9PX3','Perigenital region','Y','2025-10-23 00:00:00'),(97234,11,'XH43E4','Perihilar cholangiocarcinoma','Y','2025-10-23 00:00:00'),(97235,11,'LA88.41','Perimembranous central ventricular septal defect','Y','2025-10-23 00:00:00'),(97236,11,'XT3N','Perinatal','Y','2025-10-23 00:00:00'),(97237,11,'KB00.0','Perinatal arterial stroke','Y','2025-10-23 00:00:00'),(97238,11,'KA62.A','Perinatal Herpes simplex infection','Y','2025-10-23 00:00:00'),(97239,11,'XM58G7','Perindopril','Y','2025-10-23 00:00:00'),(97240,11,'XA5MN1','Perineal artery','Y','2025-10-23 00:00:00'),(97241,11,'XA4A74','Perineal branches of posterior femoral cutaneous nerve','Y','2025-10-23 00:00:00'),(97242,11,'LB17.4','Perineal groove','Y','2025-10-23 00:00:00'),(97243,11,'XA34F0','Perineal hemorrhoidal vein','Y','2025-10-23 00:00:00'),(97244,11,'JB09','Perineal laceration during delivery','Y','2025-10-23 00:00:00'),(97245,11,'JB09.Z','Perineal laceration during delivery, unspecified','Y','2025-10-23 00:00:00'),(97246,11,'XA0W10','Perineal nerve','Y','2025-10-23 00:00:00'),(97247,11,'GA34.01','Perineal pain','Y','2025-10-23 00:00:00'),(97248,11,'XA1W18','Perineal vein','Y','2025-10-23 00:00:00'),(97249,11,'XA53N9','Perineum','Y','2025-10-23 00:00:00'),(97250,11,'XA1GB6','Perineural space','Y','2025-10-23 00:00:00'),(97251,11,'XH31C8','Perineurioma, malignant','Y','2025-10-23 00:00:00'),(97252,11,'XH0XF7','Perineurioma, NOS','Y','2025-10-23 00:00:00'),(97253,11,'9C40.3','Perineuritis of optic nerve','Y','2025-10-23 00:00:00'),(97254,11,'7A81','Periodic limb movement disorder','Y','2025-10-23 00:00:00'),(97255,11,'8C74','Periodic paralyses or disorders of muscle membrane excitability','Y','2025-10-23 00:00:00'),(97256,11,'8C74.Z','Periodic paralyses or disorders of muscle membrane excitability, unspecified','Y','2025-10-23 00:00:00'),(97257,11,'8C74.1','Periodic paralysis','Y','2025-10-23 00:00:00'),(97258,11,'8C74.1Z','Periodic paralysis, unspecified','Y','2025-10-23 00:00:00'),(97259,11,'DA0C','Periodontal disease','Y','2025-10-23 00:00:00'),(97260,11,'DA0C.Z','Periodontal disease, unspecified','Y','2025-10-23 00:00:00'),(97261,11,'XA7YP0','Periodontium','Y','2025-10-23 00:00:00'),(97262,11,'DA0C.2','Periodontosis','Y','2025-10-23 00:00:00'),(97263,11,'XA5US0','Perionychium','Y','2025-10-23 00:00:00'),(97264,11,'XA1AV3','Perionychium of fifth toe','Y','2025-10-23 00:00:00'),(97265,11,'XA40R3','Perionychium of fourth toe','Y','2025-10-23 00:00:00'),(97266,11,'XA4774','Perionychium of great toe','Y','2025-10-23 00:00:00'),(97267,11,'XA6YH1','Perionychium of index finger','Y','2025-10-23 00:00:00'),(97268,11,'XA89P0','Perionychium of little finger','Y','2025-10-23 00:00:00'),(97269,11,'XA1FY2','Perionychium of middle finger','Y','2025-10-23 00:00:00'),(97270,11,'XA7K11','Perionychium of ring finger','Y','2025-10-23 00:00:00'),(97271,11,'XA5446','Perionychium of second toe','Y','2025-10-23 00:00:00'),(97272,11,'XA3UC8','Perionychium of third toe','Y','2025-10-23 00:00:00'),(97273,11,'XA0RL8','Perionychium of thumb','Y','2025-10-23 00:00:00'),(97274,11,'XA1A48','Perioral region','Y','2025-10-23 00:00:00'),(97275,11,'XA0SB3','Periorbital region','Y','2025-10-23 00:00:00'),(97276,11,'ED90.1','Periorificial dermatitis','Y','2025-10-23 00:00:00'),(97277,11,'XH3BC3','Periosteal chondroma','Y','2025-10-23 00:00:00'),(97278,11,'XH1S32','Periosteal chondrosarcoma','Y','2025-10-23 00:00:00'),(97279,11,'XH7FV0','Periosteal fibroma','Y','2025-10-23 00:00:00'),(97280,11,'XH3406','Periosteal fibrosarcoma','Y','2025-10-23 00:00:00'),(97281,11,'XH48A9','Periosteal osteosarcoma','Y','2025-10-23 00:00:00'),(97282,11,'XH56W2','Periosteal sarcoma, NOS','Y','2025-10-23 00:00:00'),(97283,11,'XA6FQ2','Periosteum','Y','2025-10-23 00:00:00'),(97284,11,'9A21.3','Periostitis of orbit','Y','2025-10-23 00:00:00'),(97285,11,'XA2P83','Peripancreatic lymph node','Y','2025-10-23 00:00:00'),(97286,11,'LA90.4','Peripheral arterial malformations','Y','2025-10-23 00:00:00'),(97287,11,'LA90.4Z','Peripheral arterial malformations, unspecified','Y','2025-10-23 00:00:00'),(97288,11,'LA90.3','Peripheral arteriovenous malformations','Y','2025-10-23 00:00:00'),(97289,11,'LA90.3Z','Peripheral arteriovenous malformations, unspecified','Y','2025-10-23 00:00:00'),(97290,11,'9D42.2','Peripheral field deficit','Y','2025-10-23 00:00:00'),(97291,11,'9D42.2Z','Peripheral field deficit, unspecified','Y','2025-10-23 00:00:00'),(97292,11,'XA06U6','Peripheral nerve','Y','2025-10-23 00:00:00'),(97293,11,'XA1630','Peripheral nervous system','Y','2025-10-23 00:00:00'),(97294,11,'8D41.0','Peripheral neuropathy due to vitamin B6 hyperalimentation','Y','2025-10-23 00:00:00'),(97295,11,'XH2M31','Peripheral odontogenic fibroma','Y','2025-10-23 00:00:00'),(97296,11,'5A92','Peripheral precocious puberty','Y','2025-10-23 00:00:00'),(97297,11,'XH6P76','Peripheral primitive neuroectodermal tumour','Y','2025-10-23 00:00:00'),(97298,11,'XA4YS8','Peripheral retina','Y','2025-10-23 00:00:00'),(97299,11,'9B78.4','Peripheral retinal degeneration','Y','2025-10-23 00:00:00'),(97300,11,'XA4TM1','Peripheral skeleton','Y','2025-10-23 00:00:00'),(97301,11,'FA92.1','Peripheral spondyloarthritis','Y','2025-10-23 00:00:00'),(97302,11,'2A90.C','Peripheral T-cell lymphoma, not otherwise specified','Y','2025-10-23 00:00:00'),(97303,11,'LA90.2','Peripheral venous malformations','Y','2025-10-23 00:00:00'),(97304,11,'LA90.2Z','Peripheral venous malformations, unspecified','Y','2025-10-23 00:00:00'),(97305,11,'XM8SX7','Peripherally acting antiadrenergic agents','Y','2025-10-23 00:00:00'),(97306,11,'DB36.10','Perirectal abscess','Y','2025-10-23 00:00:00'),(97307,11,'XA2EG4','Perirectal region','Y','2025-10-23 00:00:00'),(97308,11,'XM8QV3','Perisoxal','Y','2025-10-23 00:00:00'),(97309,11,'3B81.A','Perisplenitis','Y','2025-10-23 00:00:00'),(97310,11,'DC50.2','Peritoneal abscess','Y','2025-10-23 00:00:00'),(97311,11,'DC51.1','Peritoneal adhesions','Y','2025-10-23 00:00:00'),(97312,11,'XD22A9','Peritoneal dialysate tanks, collection','Y','2025-10-23 00:00:00'),(97313,11,'XD18U5','Peritoneal dialysis devices (not in other groups)','Y','2025-10-23 00:00:00'),(97314,11,'XD65W3','Peritoneal dialysis lines','Y','2025-10-23 00:00:00'),(97315,11,'XD4SJ0','Peritoneal dialysis lines accessories','Y','2025-10-23 00:00:00'),(97316,11,'XD2WX9','Peritoneal dialysis lines others','Y','2025-10-23 00:00:00'),(97317,11,'XD47T0','Peritoneal dialysis others','Y','2025-10-23 00:00:00'),(97318,11,'XM39C1','Peritoneal dialysis solution','Y','2025-10-23 00:00:00'),(97319,11,'XD39M3','Peritoneal dialysis, adaptors','Y','2025-10-23 00:00:00'),(97320,11,'XD7RE0','Peritoneal dialysis, catheters','Y','2025-10-23 00:00:00'),(97321,11,'XH8U12','Peritoneal inclusion cysts','Y','2025-10-23 00:00:00'),(97322,11,'GA10.C3','Peritoneal pockets due to endometriosis','Y','2025-10-23 00:00:00'),(97323,11,'XA0KZ0','Peritoneum','Y','2025-10-23 00:00:00'),(97324,11,'DC50','Peritonitis','Y','2025-10-23 00:00:00'),(97325,11,'DC50.13','Peritonitis due to Streptococcus pneumoniae','Y','2025-10-23 00:00:00'),(97326,11,'DC50.Z','Peritonitis, unspecified','Y','2025-10-23 00:00:00'),(97327,11,'CA0K.1','Peritonsillar abscess','Y','2025-10-23 00:00:00'),(97328,11,'XA1LM1','Periumbilical region','Y','2025-10-23 00:00:00'),(97329,11,'XE2JE','Perivalvular leak','Y','2025-10-23 00:00:00'),(97330,11,'XH4CC6','Perivascular epithelioid tumour, benign','Y','2025-10-23 00:00:00'),(97331,11,'XH9WD1','Perivascular epithelioid tumour, malignant','Y','2025-10-23 00:00:00'),(97332,11,'KB01','Periventricular cysts of newborn','Y','2025-10-23 00:00:00'),(97333,11,'XM3LR9','Perlapine','Y','2025-10-23 00:00:00'),(97334,11,'BC81.32','Permanent atrial fibrillation','Y','2025-10-23 00:00:00'),(97335,11,'5A00.00','Permanent congenital hypothyroidism with diffuse goitre','Y','2025-10-23 00:00:00'),(97336,11,'5A00.01','Permanent congenital hypothyroidism without goitre','Y','2025-10-23 00:00:00'),(97337,11,'XA4GG3','Permanent dentition','Y','2025-10-23 00:00:00'),(97338,11,'XD3AU4','Permanent haemodialysis, catheters','Y','2025-10-23 00:00:00'),(97339,11,'XD51F1','Permanent peritoneal dialysis lines','Y','2025-10-23 00:00:00'),(97340,11,'XD0DE3','Permanent peritoneal dialysis lines others','Y','2025-10-23 00:00:00'),(97341,11,'XD65K8','Permanent peritoneal dialysis lines, one bag (CAPD)','Y','2025-10-23 00:00:00'),(97342,11,'XD6QD1','Permanent peritoneal dialysis lines, two bags (CAPD)','Y','2025-10-23 00:00:00'),(97343,11,'8.00E+21','Permanent vegetative state','Y','2025-10-23 00:00:00'),(97344,11,'XM1FQ3','Permanganate','Y','2025-10-23 00:00:00'),(97345,11,'XM7461','Permethrin','Y','2025-10-23 00:00:00'),(97346,11,'3A01.30','Pernicious anaemia','Y','2025-10-23 00:00:00'),(97347,11,'XA4930','Peroneal vein','Y','2025-10-23 00:00:00'),(97348,11,'XA26M7','Peroneus brevis muscle','Y','2025-10-23 00:00:00'),(97349,11,'XA3AN0','Peroneus brevis tendon','Y','2025-10-23 00:00:00'),(97350,11,'XA3P60','Peroneus longus muscle','Y','2025-10-23 00:00:00'),(97351,11,'XA7VY0','Peroneus longus tendon','Y','2025-10-23 00:00:00'),(97352,11,'XA9D52','Peroneus tertius muscle','Y','2025-10-23 00:00:00'),(97353,11,'XA3D16','Peroneus tertius tendon','Y','2025-10-23 00:00:00'),(97354,11,'5C57','Peroxisomal diseases','Y','2025-10-23 00:00:00'),(97355,11,'5C57.Z','Peroxisomal diseases, unspecified','Y','2025-10-23 00:00:00'),(97356,11,'XE39B','Perpetrator-victim relationship, acquaintance not otherwise specified','Y','2025-10-23 00:00:00'),(97357,11,'XE6P9','Perpetrator-victim relationship, business relation','Y','2025-10-23 00:00:00'),(97358,11,'XE670','Perpetrator-victim relationship, care giver in institution','Y','2025-10-23 00:00:00'),(97359,11,'XE8JN','Perpetrator-victim relationship, cohabiting partner','Y','2025-10-23 00:00:00'),(97360,11,'XE7GT','Perpetrator-victim relationship, date','Y','2025-10-23 00:00:00'),(97361,11,'XE8TC','Perpetrator-victim relationship, Ex-partner','Y','2025-10-23 00:00:00'),(97362,11,'XE6Q9','Perpetrator-victim relationship, Ex-spouse','Y','2025-10-23 00:00:00'),(97363,11,'XE8QX','Perpetrator-victim relationship, father or mother','Y','2025-10-23 00:00:00'),(97364,11,'XE4BZ','Perpetrator-victim relationship, foster parent','Y','2025-10-23 00:00:00'),(97365,11,'XE5MH','Perpetrator-victim relationship, friend not otherwise specified','Y','2025-10-23 00:00:00'),(97366,11,'XE9JY','Perpetrator-victim relationship, full sibling','Y','2025-10-23 00:00:00'),(97367,11,'XE9S0','Perpetrator-victim relationship, grandparent','Y','2025-10-23 00:00:00'),(97368,11,'XE02B','Perpetrator-victim relationship, health care provider','Y','2025-10-23 00:00:00'),(97369,11,'XE8FS','Perpetrator-victim relationship, in-laws','Y','2025-10-23 00:00:00'),(97370,11,'XE80F','Perpetrator-victim relationship, institutional co-member','Y','2025-10-23 00:00:00'),(97371,11,'XE041','Perpetrator-victim relationship, legal spouse','Y','2025-10-23 00:00:00'),(97372,11,'XE5ZT','Perpetrator-victim relationship, national or official authority not otherwise specified','Y','2025-10-23 00:00:00'),(97373,11,'XE32X','Perpetrator-victim relationship, neighbour','Y','2025-10-23 00:00:00'),(97374,11,'XE8GZ','Perpetrator-victim relationship, noncohabiting partner','Y','2025-10-23 00:00:00'),(97375,11,'XE59K','Perpetrator-victim relationship, official or legal authority, civilian authority','Y','2025-10-23 00:00:00'),(97376,11,'XE6AM','Perpetrator-victim relationship, official or legal authority, military','Y','2025-10-23 00:00:00'),(97377,11,'XE2Z7','Perpetrator-victim relationship, official or legal authority, police','Y','2025-10-23 00:00:00'),(97378,11,'XE10C','Perpetrator-victim relationship, offspring','Y','2025-10-23 00:00:00'),(97379,11,'XE8EU','Perpetrator-victim relationship, other blood relative','Y','2025-10-23 00:00:00'),(97380,11,'XE1X5','Perpetrator-victim relationship, parent\'s partner','Y','2025-10-23 00:00:00'),(97381,11,'XE9RK','perpetrator-victim relationship, partial or half sibling','Y','2025-10-23 00:00:00'),(97382,11,'XE3FJ','Perpetrator-victim relationship, person executing a felony or crime','Y','2025-10-23 00:00:00'),(97383,11,'XE388','Perpetrator-victim relationship, person interceding in a crime','Y','2025-10-23 00:00:00'),(97384,11,'XE0H2','Perpetrator-victim relationship, prisoner or detainee','Y','2025-10-23 00:00:00'),(97385,11,'XE6WK','Perpetrator-victim relationship, roommate','Y','2025-10-23 00:00:00'),(97386,11,'XE8PB','Perpetrator-victim relationship, security group not otherwise specified','Y','2025-10-23 00:00:00'),(97387,11,'XE9FD','Perpetrator-victim relationship, step-parent','Y','2025-10-23 00:00:00'),(97388,11,'XE4KJ','Perpetrator-victim relationship, step-sibling','Y','2025-10-23 00:00:00'),(97389,11,'XE7XG','Perpetrator-victim relationship, stranger in mob','Y','2025-10-23 00:00:00'),(97390,11,'XE0CA','Perpetrator-victim relationship, stranger in vigilante group','Y','2025-10-23 00:00:00'),(97391,11,'XE2XY','Perpetrator-victim relationship, stranger not otherwise specified','Y','2025-10-23 00:00:00'),(97392,11,'XM5Z27','Perphenazine','Y','2025-10-23 00:00:00'),(97393,11,'MB26.07','Persecutory delusion','Y','2025-10-23 00:00:00'),(97394,11,'MB21.9','Perseveration','Y','2025-10-23 00:00:00'),(97395,11,'XT6Z','Persistent','Y','2025-10-23 00:00:00'),(97396,11,'BC81.31','Persistent atrial fibrillation','Y','2025-10-23 00:00:00'),(97397,11,'LB17.2','Persistent cloaca','Y','2025-10-23 00:00:00'),(97398,11,'SB0A','Persistent erection disorder (TM1)','Y','2025-10-23 00:00:00'),(97399,11,'8A84.1','Persistent headache associated with traumatic injury to the head','Y','2025-10-23 00:00:00'),(97400,11,'5A45','Persistent hyperinsulinaemic hypoglycaemia of infancy','Y','2025-10-23 00:00:00'),(97401,11,'4B40.0','Persistent hyperplasia of thymus','Y','2025-10-23 00:00:00'),(97402,11,'EK50.02','Persistent insect bite reaction','Y','2025-10-23 00:00:00'),(97403,11,'AB32.0','Persistent Postural-Perceptual Dizziness','Y','2025-10-23 00:00:00'),(97404,11,'GB42','Persistent proteinuria or albuminuria','Y','2025-10-23 00:00:00'),(97405,11,'GB42.Z','Persistent proteinuria or albuminuria, unspecified','Y','2025-10-23 00:00:00'),(97406,11,'KB42','Persistent pulmonary hypertension of the newborn','Y','2025-10-23 00:00:00'),(97407,11,'9A92','Persistent pupillary membranes','Y','2025-10-23 00:00:00'),(97408,11,'AB32.2','Persistent unilateral vestibulopathy after vestibular neuronitis','Y','2025-10-23 00:00:00'),(97409,11,'8.00E+20','Persistent vegetative state','Y','2025-10-23 00:00:00'),(97410,11,'XT5T','Persistent with overlaid attacks','Y','2025-10-23 00:00:00'),(97411,11,'XE653','Person','Y','2025-10-23 00:00:00'),(97412,11,'QB11','Person awaiting admission to adequate facility elsewhere','Y','2025-10-23 00:00:00'),(97413,11,'XE7FA','Person being transported by a vehicle and occupying space intended for the transport of goods or cargo injured in transport related event','Y','2025-10-23 00:00:00'),(97414,11,'XE9X1','Person being transported by a vehicle and occupying space on a running board injured in transport related event','Y','2025-10-23 00:00:00'),(97415,11,'XE4CZ','Person being transported by a vehicle and occupying space on the roof injured in transport related event','Y','2025-10-23 00:00:00'),(97416,11,'XE7PL','Person being transported by a vehicle and occupying space outside the cabin holding onto the vehicle injured in transport related event','Y','2025-10-23 00:00:00'),(97417,11,'XE9Y1','Person boarding or alighting a vehicle injured in transport related event','Y','2025-10-23 00:00:00'),(97418,11,'XE6LC','Person boarding or alighting from a bus, tram, streetcar or railway vehicle injured in transport related event','Y','2025-10-23 00:00:00'),(97419,11,'QA05','Person consulting for explanation of investigation findings','Y','2025-10-23 00:00:00'),(97420,11,'QC20','Person consulting on behalf of another person','Y','2025-10-23 00:00:00'),(97421,11,'QC20.Z','Person consulting on behalf of another person, unspecified','Y','2025-10-23 00:00:00'),(97422,11,'XE302','Person directing or attempting to direct an animal injured in transport related event','Y','2025-10-23 00:00:00'),(97423,11,'XE8ZW','Person driving a motor vehicle injured in transport related event','Y','2025-10-23 00:00:00'),(97424,11,'XE76V','Person getting into or out of a vehicle injured in transport related event','Y','2025-10-23 00:00:00'),(97425,11,'XE57K','Person on foot as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(97426,11,'XE645','Person on foot injured in transport related event','Y','2025-10-23 00:00:00'),(97427,11,'XE0HE','Person on foot standing, walking or running at the time of the crash','Y','2025-10-23 00:00:00'),(97428,11,'XE166','Person on outside of vehicle or in load space injured in transport related event','Y','2025-10-23 00:00:00'),(97429,11,'XE3WH','Person responsible to resume manual control of a vehicle under autonomous or partly autonomous control injured in transport related event','Y','2025-10-23 00:00:00'),(97430,11,'XE65U','Person riding, operating or controlling a motorcycle or pedal cycle injured in transport related event','Y','2025-10-23 00:00:00'),(97431,11,'XE2ZK','Person using a pedestrian conveyance as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(97432,11,'XE8SZ','Person with control of steering and braking in the case of a tandem bicycle or similar vehicle injured in transport related event','Y','2025-10-23 00:00:00'),(97433,11,'QA1C','Person with feared complaint in whom no diagnosis is made','Y','2025-10-23 00:00:00'),(97434,11,'XE70B','Person, self','Y','2025-10-23 00:00:00'),(97435,11,'XE0X7','Personal aid','Y','2025-10-23 00:00:00'),(97436,11,'XE9K5','Personal computer or related accessory','Y','2025-10-23 00:00:00'),(97437,11,'XE8Z8','Personal countermeasures, braces, guards or orthoses','Y','2025-10-23 00:00:00'),(97438,11,'XE338','Personal countermeasures, eye goggles or protective glasses','Y','2025-10-23 00:00:00'),(97439,11,'XE3RM','Personal countermeasures, face mask or shield','Y','2025-10-23 00:00:00'),(97440,11,'XE7K8','Personal countermeasures, foot wear','Y','2025-10-23 00:00:00'),(97441,11,'XE4RU','Personal countermeasures, gloves','Y','2025-10-23 00:00:00'),(97442,11,'XE2ZG','Personal countermeasures, helmet','Y','2025-10-23 00:00:00'),(97443,11,'XE16J','Personal countermeasures, jock strap or protective cup','Y','2025-10-23 00:00:00'),(97444,11,'XE49L','Personal countermeasures, mouth guard','Y','2025-10-23 00:00:00'),(97445,11,'XE4K4','Personal countermeasures, no protective devices used','Y','2025-10-23 00:00:00'),(97446,11,'XE9TY','Personal countermeasures, padding of joint, bony prominence, or muscle','Y','2025-10-23 00:00:00'),(97447,11,'XE26E','Personal countermeasures, personal flotation device','Y','2025-10-23 00:00:00'),(97448,11,'XE75U','Personal countermeasures, rigid taping of joint','Y','2025-10-23 00:00:00'),(97449,11,'XE0LS','Personal countermeasures, splints','Y','2025-10-23 00:00:00'),(97450,11,'XE10N','Personal countermeasures, thermal devices','Y','2025-10-23 00:00:00'),(97451,11,'QE83','Personal frightening experience in childhood','Y','2025-10-23 00:00:00'),(97452,11,'XE9WV','Personal grooming utensil','Y','2025-10-23 00:00:00'),(97453,11,'QC44.2','Personal history of allergy to drugs, medicaments or biological substances','Y','2025-10-23 00:00:00'),(97454,11,'QC44.3','Personal history of allergy, other than to drugs or biological substances','Y','2025-10-23 00:00:00'),(97455,11,'QC44.0','Personal history of anaphylaxis','Y','2025-10-23 00:00:00'),(97456,11,'QC42.0','Personal history of COVID-19','Y','2025-10-23 00:00:00'),(97457,11,'QC43','Personal history of diseases of the blood or blood-forming organs','Y','2025-10-23 00:00:00'),(97458,11,'QC44','Personal history of diseases of the immune system','Y','2025-10-23 00:00:00'),(97459,11,'QC44.Z','Personal history of diseases of the immune system, unspecified','Y','2025-10-23 00:00:00'),(97460,11,'QC47','Personal history of diseases of the nervous system or sense organs','Y','2025-10-23 00:00:00'),(97461,11,'QC45','Personal history of endocrine, nutritional or metabolic diseases','Y','2025-10-23 00:00:00'),(97462,11,'QC44.1','Personal history of food-induced allergy or hypersensitivity','Y','2025-10-23 00:00:00'),(97463,11,'QC4Z','Personal history of health problems, unspecified','Y','2025-10-23 00:00:00'),(97464,11,'QC42','Personal history of infectious or parasitic diseases','Y','2025-10-23 00:00:00'),(97465,11,'QC42.Z','Personal history of infectious or parasitic diseases, unspecified','Y','2025-10-23 00:00:00'),(97466,11,'QC40.6','Personal history of leukaemia','Y','2025-10-23 00:00:00'),(97467,11,'QC48.0','Personal history of long-term use of anticoagulants','Y','2025-10-23 00:00:00'),(97468,11,'QC40','Personal history of malignant neoplasm','Y','2025-10-23 00:00:00'),(97469,11,'QC40.3','Personal history of malignant neoplasm of breast','Y','2025-10-23 00:00:00'),(97470,11,'QC40.0','Personal history of malignant neoplasm of digestive organs','Y','2025-10-23 00:00:00'),(97471,11,'QC40.4','Personal history of malignant neoplasm of genital organs','Y','2025-10-23 00:00:00'),(97472,11,'QC40.Y','Personal history of malignant neoplasm of other specified site','Y','2025-10-23 00:00:00'),(97473,11,'QC40.2','Personal history of malignant neoplasm of respiratory or intrathoracic organs other than the digestive organs, trachea, bronchus or lung','Y','2025-10-23 00:00:00'),(97474,11,'QC40.1','Personal history of malignant neoplasm of trachea, bronchus or lung','Y','2025-10-23 00:00:00'),(97475,11,'QC40.Z','Personal history of malignant neoplasm of unspecified site','Y','2025-10-23 00:00:00'),(97476,11,'QC40.5','Personal history of malignant neoplasm of urinary tract','Y','2025-10-23 00:00:00'),(97477,11,'QE82','Personal history of maltreatment','Y','2025-10-23 00:00:00'),(97478,11,'QE82.Z','Personal history of maltreatment, unspecified','Y','2025-10-23 00:00:00'),(97479,11,'QC48','Personal history of medical treatment','Y','2025-10-23 00:00:00'),(97480,11,'QC48.Z','Personal history of medical treatment, unspecified','Y','2025-10-23 00:00:00'),(97481,11,'QC46','Personal history of mental or behavioural disorder','Y','2025-10-23 00:00:00'),(97482,11,'QE82.3','Personal history of neglect','Y','2025-10-23 00:00:00'),(97483,11,'QC49','Personal history of noncompliance with medical treatment or regimen','Y','2025-10-23 00:00:00'),(97484,11,'QC41','Personal history of non-malignant neoplasms','Y','2025-10-23 00:00:00'),(97485,11,'QC40.7','Personal history of other malignant neoplasms of lymphoid, haematopoietic or related tissues','Y','2025-10-23 00:00:00'),(97486,11,'QC4Y','Personal history of other specified health problems','Y','2025-10-23 00:00:00'),(97487,11,'QE82.0','Personal history of physical abuse','Y','2025-10-23 00:00:00'),(97488,11,'QC4A','Personal history of poor personal hygiene','Y','2025-10-23 00:00:00'),(97489,11,'QE82.2','Personal history of psychological abuse','Y','2025-10-23 00:00:00'),(97490,11,'QC4B','Personal history of self-harm','Y','2025-10-23 00:00:00'),(97491,11,'QE82.1','Personal history of sexual abuse','Y','2025-10-23 00:00:00'),(97492,11,'QC8Z','Personal or family history or late effect of prior health problems, unspecified','Y','2025-10-23 00:00:00'),(97493,11,'XE92X','Personal protective equipment (PPE) designed for use in sports','Y','2025-10-23 00:00:00'),(97494,11,'XE7RJ','Personal protective equipment, not elsewhere classified','Y','2025-10-23 00:00:00'),(97495,11,'QE50.7','Personality difficulty','Y','2025-10-23 00:00:00'),(97496,11,'6D10','Personality disorder','Y','2025-10-23 00:00:00'),(97497,11,'6D10.Z','Personality disorder, severity unspecified','Y','2025-10-23 00:00:00'),(97498,11,'6E40.2','Personality traits or coping style affecting disorders or diseases classified elsewhere','Y','2025-10-23 00:00:00'),(97499,11,'XE81T','Person-powered means of transport','Y','2025-10-23 00:00:00'),(97500,11,'XA00N4','Pertrochanter','Y','2025-10-23 00:00:00'),(97501,11,'NC72.31','Pertrochanteric fracture of femur','Y','2025-10-23 00:00:00'),(97502,11,'XM3FU2','Pertussis immunoglobulin','Y','2025-10-23 00:00:00'),(97503,11,'XM43M9','Pertussis vaccines','Y','2025-10-23 00:00:00'),(97504,11,'XM9ZL9','Pertussis vaccines (with diphtheria toxoid) (with tetanus toxoid)','Y','2025-10-23 00:00:00'),(97505,11,'XM45L8','Pertussis, inactivated, whole cell vaccines','Y','2025-10-23 00:00:00'),(97506,11,'XM2TK2','Pertussis, inactivated, whole cell, combinations with toxoids vaccines','Y','2025-10-23 00:00:00'),(97507,11,'XM62J1','Pertussis, purified antigen vaccines','Y','2025-10-23 00:00:00'),(97508,11,'XM4082','Pertussis, purified antigen, combinations with toxoids vaccines','Y','2025-10-23 00:00:00'),(97509,11,'XM6618','Pertuzumab','Y','2025-10-23 00:00:00'),(97510,11,'XM0MS1','Peruvian balsam','Y','2025-10-23 00:00:00'),(97511,11,'XM3WU3','Peruvoside','Y','2025-10-23 00:00:00'),(97512,11,'9C84.23','Perverted nystagmus','Y','2025-10-23 00:00:00'),(97513,11,'MB28.D','Pessimism','Y','2025-10-23 00:00:00'),(97514,11,'XM7D46','Pesticide','Y','2025-10-23 00:00:00'),(97515,11,'SE86','Pestilent factor pattern (TM1)','Y','2025-10-23 00:00:00'),(97516,11,'ME64.3','Petechiae','Y','2025-10-23 00:00:00'),(97517,11,'XM7865','Petrichloral','Y','2025-10-23 00:00:00'),(97518,11,'XM8PB6','Petrolatum','Y','2025-10-23 00:00:00'),(97519,11,'XM3ZG5','Petrolatum nonmedicinal','Y','2025-10-23 00:00:00'),(97520,11,'XM0TB3','Petroleum','Y','2025-10-23 00:00:00'),(97521,11,'XM8AA6','Petroleum pesticide, not elsewhere classified','Y','2025-10-23 00:00:00'),(97522,11,'XM7MJ9','Petroleum product','Y','2025-10-23 00:00:00'),(97523,11,'XM0B41','Petroleum vapor','Y','2025-10-23 00:00:00'),(97524,11,'AB11.2','Petrositis','Y','2025-10-23 00:00:00'),(97525,11,'XA6UW5','Petrosquamous sinus','Y','2025-10-23 00:00:00'),(97526,11,'XA1E15','Petrous bone','Y','2025-10-23 00:00:00'),(97527,11,'XA48Z8','Petrous ganglion','Y','2025-10-23 00:00:00'),(97528,11,'LD2D.0','Peutz-Jeghers syndrome','Y','2025-10-23 00:00:00'),(97529,11,'XM0QA2','Peyote','Y','2025-10-23 00:00:00'),(97530,11,'LD24.G0','Pfeiffer syndrome','Y','2025-10-23 00:00:00'),(97531,11,'1F2F','Phaeohyphomycosis','Y','2025-10-23 00:00:00'),(97532,11,'LD2D','Phakomatoses or hamartoneoplastic syndromes','Y','2025-10-23 00:00:00'),(97533,11,'LD2D.Z','Phakomatoses or hamartoneoplastic syndromes, unspecified','Y','2025-10-23 00:00:00'),(97534,11,'XA39M2','Phalanx of the foot','Y','2025-10-23 00:00:00'),(97535,11,'XA3PA7','Phalanx of the hand','Y','2025-10-23 00:00:00'),(97536,11,'XM5GF4','Phanquinone','Y','2025-10-23 00:00:00'),(97537,11,'8E43.00','Phantom limb syndrome','Y','2025-10-23 00:00:00'),(97538,11,'9B01.2','Pharmacologic inhibition of the parasympathetic pathway','Y','2025-10-23 00:00:00'),(97539,11,'9B01.4','Pharmacologic parasympathicotonic pupils','Y','2025-10-23 00:00:00'),(97540,11,'9B01.5','Pharmacologic sympathoparetic pupils','Y','2025-10-23 00:00:00'),(97541,11,'XA9XM3','Pharyngeal artery','Y','2025-10-23 00:00:00'),(97542,11,'XA8F53','Pharyngeal branch of vagus nerve','Y','2025-10-23 00:00:00'),(97543,11,'XA5QA5','Pharyngeal branches of glossopharyngeal nerve','Y','2025-10-23 00:00:00'),(97544,11,'XA5Q86','Pharyngeal nerve','Y','2025-10-23 00:00:00'),(97545,11,'1C17.0','Pharyngeal or tonsillar diphtheria','Y','2025-10-23 00:00:00'),(97546,11,'1C17.0Z','Pharyngeal or tonsillar diphtheria, unspecified','Y','2025-10-23 00:00:00'),(97547,11,'XA9LV7','Pharyngeal plexus','Y','2025-10-23 00:00:00'),(97548,11,'XA7W35','Pharyngeal recess','Y','2025-10-23 00:00:00'),(97549,11,'XA98C1','Pharyngeal vein','Y','2025-10-23 00:00:00'),(97550,11,'CA02.10','Pharyngitis due to Adenovirus','Y','2025-10-23 00:00:00'),(97551,11,'XA3021','Pharyngopalatine arch','Y','2025-10-23 00:00:00'),(97552,11,'XA93V5','Pharynx','Y','2025-10-23 00:00:00'),(97553,11,'XS4A','Phase 0','Y','2025-10-23 00:00:00'),(97554,11,'XS3K','Phase 1','Y','2025-10-23 00:00:00'),(97555,11,'XS47','Phase 10','Y','2025-10-23 00:00:00'),(97556,11,'XS4M','Phase 2','Y','2025-10-23 00:00:00'),(97557,11,'XS8V','Phase 3','Y','2025-10-23 00:00:00'),(97558,11,'XS21','Phase 4','Y','2025-10-23 00:00:00'),(97559,11,'XS8Z','Phase 5','Y','2025-10-23 00:00:00'),(97560,11,'XS41','Phase 6','Y','2025-10-23 00:00:00'),(97561,11,'XS73','Phase 7','Y','2025-10-23 00:00:00'),(97562,11,'XS9Z','Phase 8','Y','2025-10-23 00:00:00'),(97563,11,'XS83','Phase 9','Y','2025-10-23 00:00:00'),(97564,11,'XE945','Phase of activity, cardiovascular training','Y','2025-10-23 00:00:00'),(97565,11,'XE20Y','Phase of activity, competition or participation, events whose time course can not be anticipated','Y','2025-10-23 00:00:00'),(97566,11,'XE66C','Phase of activity, competition or participation, first 25% of expected event duration','Y','2025-10-23 00:00:00'),(97567,11,'XE2CG','Phase of activity, competition or participation, last 25% of expected event duration','Y','2025-10-23 00:00:00'),(97568,11,'XE0QY','Phase of activity, competition or participation, middle 50% of expected event duration','Y','2025-10-23 00:00:00'),(97569,11,'XE4ZN','Phase of activity, competition or participation, unspecified stage of the event','Y','2025-10-23 00:00:00'),(97570,11,'XE1P9','Phase of activity, cool down','Y','2025-10-23 00:00:00'),(97571,11,'XE583','Phase of activity, not otherwise specified training or practice','Y','2025-10-23 00:00:00'),(97572,11,'XE0QV','Phase of activity, other specified phase of activity','Y','2025-10-23 00:00:00'),(97573,11,'XE2BD','Phase of activity, post-event','Y','2025-10-23 00:00:00');
INSERT INTO `icd` VALUES (97574,11,'XE8MZ','Phase of activity, pre-event','Y','2025-10-23 00:00:00'),(97575,11,'XE49R','Phase of activity, recreational participation','Y','2025-10-23 00:00:00'),(97576,11,'XE07B','Phase of activity, scrimmaging','Y','2025-10-23 00:00:00'),(97577,11,'XE1U5','Phase of activity, sport-specific or skill-specific practice','Y','2025-10-23 00:00:00'),(97578,11,'XE0BT','Phase of activity, strength and conditioning or weight training','Y','2025-10-23 00:00:00'),(97579,11,'XE2D1','Phase of activity, warm-up','Y','2025-10-23 00:00:00'),(97580,11,'XE5TJ','Phase of sport or exercise activity Competition or participation','Y','2025-10-23 00:00:00'),(97581,11,'XE9ET','Phase of sport or exercise activity Training or practice','Y','2025-10-23 00:00:00'),(97582,11,'XM6Z26','Phenacaine','Y','2025-10-23 00:00:00'),(97583,11,'XM7BQ9','Phenacemide','Y','2025-10-23 00:00:00'),(97584,11,'XM43A6','Phenacetin','Y','2025-10-23 00:00:00'),(97585,11,'XM04Z5','Phenadoxone','Y','2025-10-23 00:00:00'),(97586,11,'XM9799','Phenaglycodol','Y','2025-10-23 00:00:00'),(97587,11,'XM74W0','Phenaphthazine reagent','Y','2025-10-23 00:00:00'),(97588,11,'XM2542','Phenazocine','Y','2025-10-23 00:00:00'),(97589,11,'XM0M82','Phenazone topical','Y','2025-10-23 00:00:00'),(97590,11,'XM2VJ5','Phenazopyridine','Y','2025-10-23 00:00:00'),(97591,11,'XM71L1','Phenbenicillin','Y','2025-10-23 00:00:00'),(97592,11,'XM4PR1','Phenbutrazate','Y','2025-10-23 00:00:00'),(97593,11,'XM5M84','Phencyclidine','Y','2025-10-23 00:00:00'),(97594,11,'XM6AJ3','Phendimetrazine','Y','2025-10-23 00:00:00'),(97595,11,'XM4S21','Phenelzine','Y','2025-10-23 00:00:00'),(97596,11,'XM8U36','Phenergan','Y','2025-10-23 00:00:00'),(97597,11,'XM9NF6','Pheneticillin','Y','2025-10-23 00:00:00'),(97598,11,'XM4RJ7','Pheneturide','Y','2025-10-23 00:00:00'),(97599,11,'XM4K79','Phenformin','Y','2025-10-23 00:00:00'),(97600,11,'XM64K1','Phenglutarimide','Y','2025-10-23 00:00:00'),(97601,11,'XM3J14','Phenibut','Y','2025-10-23 00:00:00'),(97602,11,'XM0D38','Phenicarbazide','Y','2025-10-23 00:00:00'),(97603,11,'XM9BD4','Phenindamine','Y','2025-10-23 00:00:00'),(97604,11,'XM79U8','Phenindione','Y','2025-10-23 00:00:00'),(97605,11,'XM4A50','Pheniprazine','Y','2025-10-23 00:00:00'),(97606,11,'XM4UU4','Pheniramine','Y','2025-10-23 00:00:00'),(97607,11,'XM4CS7','Phenisatin','Y','2025-10-23 00:00:00'),(97608,11,'XM73T8','Phenmetrazine','Y','2025-10-23 00:00:00'),(97609,11,'XM2605','Phenobarbital','Y','2025-10-23 00:00:00'),(97610,11,'XM96Q8','Phenobutiodil','Y','2025-10-23 00:00:00'),(97611,11,'XM70C4','Phenoctide','Y','2025-10-23 00:00:00'),(97612,11,'XM6L76','Phenol','Y','2025-10-23 00:00:00'),(97613,11,'XM0HB7','Phenol disinfectant, not elsewhere classified','Y','2025-10-23 00:00:00'),(97614,11,'XM6C05','Phenol in oil injection','Y','2025-10-23 00:00:00'),(97615,11,'XM8YS8','Phenol medicinal','Y','2025-10-23 00:00:00'),(97616,11,'XM5YF7','Phenol pesticide, not elsewhere classified','Y','2025-10-23 00:00:00'),(97617,11,'XM92T1','Phenol, nonmedicinal','Y','2025-10-23 00:00:00'),(97618,11,'XM96T6','Phenolic preparation','Y','2025-10-23 00:00:00'),(97619,11,'XM30Q0','Phenolphthalein','Y','2025-10-23 00:00:00'),(97620,11,'XM7M20','Phenolsulfonphthalein','Y','2025-10-23 00:00:00'),(97621,11,'XM9B34','Phenomorphan','Y','2025-10-23 00:00:00'),(97622,11,'XM0K66','Phenoperidine','Y','2025-10-23 00:00:00'),(97623,11,'XM6102','Phenopyrazone','Y','2025-10-23 00:00:00'),(97624,11,'XM3JP7','Phenoquin','Y','2025-10-23 00:00:00'),(97625,11,'XM52V9','Phenothiazine (psychotropic)','Y','2025-10-23 00:00:00'),(97626,11,'XM52P9','Phenothiazine derivatives','Y','2025-10-23 00:00:00'),(97627,11,'XM5EB8','Phenothiazine insecticide','Y','2025-10-23 00:00:00'),(97628,11,'XM4SG0','Phenothiazines with aliphatic side-chain','Y','2025-10-23 00:00:00'),(97629,11,'XM1YC7','Phenothiazines with piperazine structure','Y','2025-10-23 00:00:00'),(97630,11,'XM9HH5','Phenothiazines with piperidine structure','Y','2025-10-23 00:00:00'),(97631,11,'XM4H85','Phenothrin','Y','2025-10-23 00:00:00'),(97632,11,'XM12T2','Phenoxybenzamine','Y','2025-10-23 00:00:00'),(97633,11,'XM9D74','Phenoxyethanol','Y','2025-10-23 00:00:00'),(97634,11,'XM9B11','Phenoxymethylpenicillin','Y','2025-10-23 00:00:00'),(97635,11,'XM8DV7','Phenprobamate','Y','2025-10-23 00:00:00'),(97636,11,'XM4E47','Phenprocoumon','Y','2025-10-23 00:00:00'),(97637,11,'XM9E68','Phensuximide','Y','2025-10-23 00:00:00'),(97638,11,'XM5VK3','Phentermine','Y','2025-10-23 00:00:00'),(97639,11,'XM5NP2','Phentolamine','Y','2025-10-23 00:00:00'),(97640,11,'XM7NL0','Phenyl hydrazine antineoplastic','Y','2025-10-23 00:00:00'),(97641,11,'XM1TG5','Phenyl salicylate','Y','2025-10-23 00:00:00'),(97642,11,'XM4PP7','Phenylalanine','Y','2025-10-23 00:00:00'),(97643,11,'XM03S1','Phenylalanine mustard','Y','2025-10-23 00:00:00'),(97644,11,'XM6T88','Phenylalkylamine derivatives non-selective','Y','2025-10-23 00:00:00'),(97645,11,'XM2XU6','Phenylalkylamine derivatives selective','Y','2025-10-23 00:00:00'),(97646,11,'XM6UT3','Phenylbenzimidazol-5-sulfonic acid','Y','2025-10-23 00:00:00'),(97647,11,'XM8HN0','Phenylbutazone','Y','2025-10-23 00:00:00'),(97648,11,'XM1E24','Phenylenediamine','Y','2025-10-23 00:00:00'),(97649,11,'XM6ZQ3','Phenylephrine','Y','2025-10-23 00:00:00'),(97650,11,'XM5YV7','Phenylglycidylether','Y','2025-10-23 00:00:00'),(97651,11,'XM9BN0','Phenylhydrazine','Y','2025-10-23 00:00:00'),(97652,11,'5C50.0','Phenylketonuria','Y','2025-10-23 00:00:00'),(97653,11,'5C50.0Z','Phenylketonuria, unspecified','Y','2025-10-23 00:00:00'),(97654,11,'XM3R68','Phenylmercuric acetate','Y','2025-10-23 00:00:00'),(97655,11,'XM89P9','Phenylmercuric borate','Y','2025-10-23 00:00:00'),(97656,11,'XM0K18','Phenylmercuric nitrate','Y','2025-10-23 00:00:00'),(97657,11,'XM2Z22','Phenylmercury acetate','Y','2025-10-23 00:00:00'),(97658,11,'XM9NL3','Phenylpiperidine derivatives','Y','2025-10-23 00:00:00'),(97659,11,'XM7L34','Phenylpropanol','Y','2025-10-23 00:00:00'),(97660,11,'XM6XN3','Phenylpropanolamine','Y','2025-10-23 00:00:00'),(97661,11,'XM2V55','Phenyltoloxamine','Y','2025-10-23 00:00:00'),(97662,11,'XM2DH4','Phenyramidol, phenyramidon','Y','2025-10-23 00:00:00'),(97663,11,'XM0RY4','Phenytoin','Y','2025-10-23 00:00:00'),(97664,11,'XH3854','Pheochromocytoma, NOS','Y','2025-10-23 00:00:00'),(97665,11,'XA5LY8','Philtrum','Y','2025-10-23 00:00:00'),(97666,11,'GB05.2','Phimosis','Y','2025-10-23 00:00:00'),(97667,11,'SF89','Phlegm heat obstructing the lung pattern (TM1)','Y','2025-10-23 00:00:00'),(97668,11,'SF9A','Phlegm obstructing the uterus pattern (TM1)','Y','2025-10-23 00:00:00'),(97669,11,'SF14','Phlegm-fire harassing the heart system pattern (TM1)','Y','2025-10-23 00:00:00'),(97670,11,'XM66E5','Phloroglucinol','Y','2025-10-23 00:00:00'),(97671,11,'DA09.3','Phoenix abscess','Y','2025-10-23 00:00:00'),(97672,11,'XM4QV7','Pholcodine','Y','2025-10-23 00:00:00'),(97673,11,'XM6EY7','Pholedrine','Y','2025-10-23 00:00:00'),(97674,11,'MB42','Phonophobia','Y','2025-10-23 00:00:00'),(97675,11,'XM20V2','Phorate','Y','2025-10-23 00:00:00'),(97676,11,'XM2324','Phosfolan','Y','2025-10-23 00:00:00'),(97677,11,'XM91W5','Phosgene','Y','2025-10-23 00:00:00'),(97678,11,'XM3QY4','Phosphamidon','Y','2025-10-23 00:00:00'),(97679,11,'XM4PD5','Phosphate laxative','Y','2025-10-23 00:00:00'),(97680,11,'XM02T2','Phosphate solvent','Y','2025-10-23 00:00:00'),(97681,11,'XH9T96','Phosphaturic mesenchymal tumour, benign','Y','2025-10-23 00:00:00'),(97682,11,'XH3B27','Phosphaturic mesenchymal tumour, malignant','Y','2025-10-23 00:00:00'),(97683,11,'XM3G46','Phosphine','Y','2025-10-23 00:00:00'),(97684,11,'XM2PQ4','Phosphodiesterase inhibitors','Y','2025-10-23 00:00:00'),(97685,11,'XM4PY4','Phospholine','Y','2025-10-23 00:00:00'),(97686,11,'XM90G3','Phosphonic acid derivatives','Y','2025-10-23 00:00:00'),(97687,11,'XM0270','Phosphoric acid','Y','2025-10-23 00:00:00'),(97688,11,'XM2AZ6','Phosphorus','Y','2025-10-23 00:00:00'),(97689,11,'EJ20','Photoaging of the skin','Y','2025-10-23 00:00:00'),(97690,11,'EK01','Photo-allergic contact dermatitis','Y','2025-10-23 00:00:00'),(97691,11,'XE9G5','Photodetector component of medical device','Y','2025-10-23 00:00:00'),(97692,11,'EH75','Photosensitivity due to drug','Y','2025-10-23 00:00:00'),(97693,11,'EK2Z','Phototoxic dermatitis, unspecified','Y','2025-10-23 00:00:00'),(97694,11,'EK20','Phototoxic reaction to fragrance or cosmetics','Y','2025-10-23 00:00:00'),(97695,11,'EK2Y','Phototoxic reaction to skin contact with other specified photoactive agent','Y','2025-10-23 00:00:00'),(97696,11,'XA9ZM0','Phrenic nerve','Y','2025-10-23 00:00:00'),(97697,11,'KA44.2','Phrenic nerve paralysis due to birth injury','Y','2025-10-23 00:00:00'),(97698,11,'XA9ME3','Phrenic plexus','Y','2025-10-23 00:00:00'),(97699,11,'XA1EK8','Phrenic vein','Y','2025-10-23 00:00:00'),(97700,11,'XM5B21','Phthalate','Y','2025-10-23 00:00:00'),(97701,11,'XM5380','Phthalic anhydride','Y','2025-10-23 00:00:00'),(97702,11,'XM1RY1','Phthalylsulfathiazole','Y','2025-10-23 00:00:00'),(97703,11,'XN84U','Phthirus','Y','2025-10-23 00:00:00'),(97704,11,'9C22.1','Phthisis Bulbi','Y','2025-10-23 00:00:00'),(97705,11,'XH50P7','Phyllodes tumour, benign','Y','2025-10-23 00:00:00'),(97706,11,'XH5NK4','Phyllodes tumour, borderline','Y','2025-10-23 00:00:00'),(97707,11,'XH8HJ7','Phyllodes tumour, malignant','Y','2025-10-23 00:00:00'),(97708,11,'XN9NR','Phylum Nemata','Y','2025-10-23 00:00:00'),(97709,11,'ED90.02','Phymatous rosacea','Y','2025-10-23 00:00:00'),(97710,11,'XJ3HH','Physeal fracture','Y','2025-10-23 00:00:00'),(97711,11,'XE3HD','Physical education class, school sports','Y','2025-10-23 00:00:00'),(97712,11,'PJ20','Physical maltreatment','Y','2025-10-23 00:00:00'),(97713,11,'PK9A','Physical medicine devices associated with injury or harm','Y','2025-10-23 00:00:00'),(97714,11,'PK9A.0','Physical medicine devices associated with injury or harm, diagnostic or monitoring devices','Y','2025-10-23 00:00:00'),(97715,11,'PK9A.4','Physical medicine devices associated with injury or harm, miscellaneous devices, not elsewhere classified','Y','2025-10-23 00:00:00'),(97716,11,'PK9A.2','Physical medicine devices associated with injury or harm, prosthetic or other implants, materials or accessory devices','Y','2025-10-23 00:00:00'),(97717,11,'PK9A.2Z','Physical medicine devices associated with injury or harm, prosthetic or other implants, materials or accessory devices, unspecified','Y','2025-10-23 00:00:00'),(97718,11,'PK9A.3','Physical medicine devices associated with injury or harm, surgical instruments, materials or devices','Y','2025-10-23 00:00:00'),(97719,11,'PK9A.1','Physical medicine devices associated with injury or harm, therapeutic, nonsurgical or rehabilitative devices','Y','2025-10-23 00:00:00'),(97720,11,'PK9A.Z','Physical medicine devices associated with injury or harm, unspecified','Y','2025-10-23 00:00:00'),(97721,11,'PH76','Physical overexertion with undetermined intent','Y','2025-10-23 00:00:00'),(97722,11,'XE97R','Physical problem','Y','2025-10-23 00:00:00'),(97723,11,'QB95.1','Physical rehabilitation','Y','2025-10-23 00:00:00'),(97724,11,'XE635','Physical resistance or sticking','Y','2025-10-23 00:00:00'),(97725,11,'9B01.0','Physiologic anisocoria','Y','2025-10-23 00:00:00'),(97726,11,'ED60.0','Physiological hypermelanosis','Y','2025-10-23 00:00:00'),(97727,11,'9C84.0','Physiological nystagmus','Y','2025-10-23 00:00:00'),(97728,11,'XM7JG0','Physostigma venenosum plant','Y','2025-10-23 00:00:00'),(97729,11,'XM4605','Physostigmine','Y','2025-10-23 00:00:00'),(97730,11,'XM0FL5','Phytic acid, nonasodium','Y','2025-10-23 00:00:00'),(97731,11,'XM61M4','Phytolacca decandra plant','Y','2025-10-23 00:00:00'),(97732,11,'XA6AF5','Pia mater','Y','2025-10-23 00:00:00'),(97733,11,'6B84','Pica','Y','2025-10-23 00:00:00'),(97734,11,'XE4DB','Pick-up truck, goods or work van, ambulance or motor home as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(97735,11,'XE165','Pick-up truck, goods or work van, ambulance, motor home as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(97736,11,'XM2JR8','Picloxydine','Y','2025-10-23 00:00:00'),(97737,11,'XM7G25','Picoperine','Y','2025-10-23 00:00:00'),(97738,11,'1F05','Picornavirus infections presenting in the skin or mucous membranes','Y','2025-10-23 00:00:00'),(97739,11,'XM09W2','Picotamide','Y','2025-10-23 00:00:00'),(97740,11,'XM0KV1','Picric acid','Y','2025-10-23 00:00:00'),(97741,11,'XM6KR6','Picrotoxin','Y','2025-10-23 00:00:00'),(97742,11,'XM30D0','Pidotimod','Y','2025-10-23 00:00:00'),(97743,11,'XN4YW','Piedraia','Y','2025-10-23 00:00:00'),(97744,11,'XN6H7','Piedraia hortae','Y','2025-10-23 00:00:00'),(97745,11,'LA56','Pierre Robin syndrome','Y','2025-10-23 00:00:00'),(97746,11,'XE3UD','Pig, wild boar','Y','2025-10-23 00:00:00'),(97747,11,'DA00.2','Pigmentary abnormalities of lips','Y','2025-10-23 00:00:00'),(97748,11,'EH70','Pigmentary abnormalities of skin due to drug','Y','2025-10-23 00:00:00'),(97749,11,'9C61.21','Pigmentary open-angle glaucoma','Y','2025-10-23 00:00:00'),(97750,11,'XH2HE7','Pigmented basal cell carcinoma','Y','2025-10-23 00:00:00'),(97751,11,'XH5CT4','Pigmented dermatofibrosarcoma protuberans','Y','2025-10-23 00:00:00'),(97752,11,'XH4VD0','Pigmented epithelioid melanocytoma','Y','2025-10-23 00:00:00'),(97753,11,'XH4L78','Pigmented naevus, NOS','Y','2025-10-23 00:00:00'),(97754,11,'ME60.1','Pigmented skin lesion of uncertain nature','Y','2025-10-23 00:00:00'),(97755,11,'XH2P88','Pigmented spindle cell naevus of Reed','Y','2025-10-23 00:00:00'),(97756,11,'FA27.1','Pigmented villonodular synovitis','Y','2025-10-23 00:00:00'),(97757,11,'XM3DV8','Piketoprofen','Y','2025-10-23 00:00:00'),(97758,11,'XH3EY8','Pilar sheath acanthoma','Y','2025-10-23 00:00:00'),(97759,11,'XH5L76','Pilar tumour','Y','2025-10-23 00:00:00'),(97760,11,'XE6R1','Pillow, cushion','Y','2025-10-23 00:00:00'),(97761,11,'XM0RX5','Pilocarpine','Y','2025-10-23 00:00:00'),(97762,11,'XM5EY0','Pilocarpus extract (jaborandi)','Y','2025-10-23 00:00:00'),(97763,11,'XH12D2','Pilocytic astrocytoma','Y','2025-10-23 00:00:00'),(97764,11,'XH9G49','Pilomatrical carcinoma','Y','2025-10-23 00:00:00'),(97765,11,'XH9E37','Pilomatricoma, NOS','Y','2025-10-23 00:00:00'),(97766,11,'XH29Q5','Pilomyxoid astrocytoma','Y','2025-10-23 00:00:00'),(97767,11,'LC01','Pilosebaceous hamartoma','Y','2025-10-23 00:00:00'),(97768,11,'XM0Y13','Pilsicainide','Y','2025-10-23 00:00:00'),(97769,11,'XM2H01','Pimaricin','Y','2025-10-23 00:00:00'),(97770,11,'XM0715','Pimavanserin','Y','2025-10-23 00:00:00'),(97771,11,'XM5VY2','Pimeclone','Y','2025-10-23 00:00:00'),(97772,11,'XM5DF2','Pimecrolimus','Y','2025-10-23 00:00:00'),(97773,11,'XM70F3','Pimethixene','Y','2025-10-23 00:00:00'),(97774,11,'XM5NP7','Piminodine','Y','2025-10-23 00:00:00'),(97775,11,'XM1FB1','Pimozide','Y','2025-10-23 00:00:00'),(97776,11,'XE6A2','Pin fastner component of medical device','Y','2025-10-23 00:00:00'),(97777,11,'XE8D1','Pin, needle','Y','2025-10-23 00:00:00'),(97778,11,'XM9PA9','Pinacidil','Y','2025-10-23 00:00:00'),(97779,11,'XM2GC8','Pinaverium','Y','2025-10-23 00:00:00'),(97780,11,'XM0GW7','Pinazepam','Y','2025-10-23 00:00:00'),(97781,11,'XM2SH3','Pindolol','Y','2025-10-23 00:00:00'),(97782,11,'XM4116','Pindone','Y','2025-10-23 00:00:00'),(97783,11,'XM19G9','Pine oil','Y','2025-10-23 00:00:00'),(97784,11,'XH1S48','Pineal parenchymal tumour of intermediate differentiation','Y','2025-10-23 00:00:00'),(97785,11,'XA1EU3','Pineal','Y','2025-10-23 00:00:00'),(97786,11,'XH8QA9','Pinealoma','Y','2025-10-23 00:00:00'),(97787,11,'XH1ZH1','Pineoblastoma','Y','2025-10-23 00:00:00'),(97788,11,'XH1K94','Pineocytoma','Y','2025-10-23 00:00:00'),(97789,11,'9A61.0','Pingueculae','Y','2025-10-23 00:00:00'),(97790,11,'XM3T27','Pinkroot','Y','2025-10-23 00:00:00'),(97791,11,'XA4E71','Pinna','Y','2025-10-23 00:00:00'),(97792,11,'1C1E','Pinta','Y','2025-10-23 00:00:00'),(97793,11,'XM0TX6','Pioglitazone','Y','2025-10-23 00:00:00'),(97794,11,'XM72D5','Pipadone','Y','2025-10-23 00:00:00'),(97795,11,'XM2170','Pipamazine','Y','2025-10-23 00:00:00'),(97796,11,'XM5AB4','Pipamperone','Y','2025-10-23 00:00:00'),(97797,11,'XM84C4','Pipazetate','Y','2025-10-23 00:00:00'),(97798,11,'XM0Q59','Pipecuronium bromide','Y','2025-10-23 00:00:00'),(97799,11,'XM61M8','Pipemidic acid','Y','2025-10-23 00:00:00'),(97800,11,'XM6FV2','Pipenzolate','Y','2025-10-23 00:00:00'),(97801,11,'XM1XZ4','Piper cubeba plant','Y','2025-10-23 00:00:00'),(97802,11,'XM0F82','Piperacetazine','Y','2025-10-23 00:00:00'),(97803,11,'XM3MP9','Piperacillin','Y','2025-10-23 00:00:00'),(97804,11,'XM0LH3','Piperacillin and beta-lactamase inhibitor','Y','2025-10-23 00:00:00'),(97805,11,'XM07V7','Piperazine','Y','2025-10-23 00:00:00'),(97806,11,'XM9NA0','Piperazine derivatives of first-generation antihistaminic agents','Y','2025-10-23 00:00:00'),(97807,11,'XM6G21','Piperazine derivatives of second-generation antihistaminic agents','Y','2025-10-23 00:00:00'),(97808,11,'XM6R00','Piperidinedione derivatives','Y','2025-10-23 00:00:00'),(97809,11,'XM0HR9','Piperidione','Y','2025-10-23 00:00:00'),(97810,11,'XM24K8','Piperidolate','Y','2025-10-23 00:00:00'),(97811,11,'XM2ZH3','Piperocaine','Y','2025-10-23 00:00:00'),(97812,11,'XM7UW6','Piperocaine infiltration','Y','2025-10-23 00:00:00'),(97813,11,'XM8J09','Piperocaine nerve block','Y','2025-10-23 00:00:00'),(97814,11,'XM40M8','Piperocaine topical','Y','2025-10-23 00:00:00'),(97815,11,'XM6FE7','Piperonyl butoxide','Y','2025-10-23 00:00:00'),(97816,11,'XM6MG0','Pipethanate','Y','2025-10-23 00:00:00'),(97817,11,'XE7MS','Pipette component of medical device','Y','2025-10-23 00:00:00'),(97818,11,'XN5V7','Pipistrellus bat coronavirus HKU5','Y','2025-10-23 00:00:00'),(97819,11,'XM0MB5','Pipobroman','Y','2025-10-23 00:00:00'),(97820,11,'XM0168','Pipotiazine','Y','2025-10-23 00:00:00'),(97821,11,'XM0404','Pipoxizine','Y','2025-10-23 00:00:00'),(97822,11,'XM8EX0','Pipradrol','Y','2025-10-23 00:00:00'),(97823,11,'XM7180','Piprinhydrinate','Y','2025-10-23 00:00:00'),(97824,11,'XM03F0','Piprozolin','Y','2025-10-23 00:00:00'),(97825,11,'XM5207','Piracetam','Y','2025-10-23 00:00:00'),(97826,11,'XM4AY9','Pirarubicin','Y','2025-10-23 00:00:00'),(97827,11,'XM1QR7','Pirbuterol','Y','2025-10-23 00:00:00'),(97828,11,'XM6690','Pirenzepine','Y','2025-10-23 00:00:00'),(97829,11,'XM9ML2','Piretanide','Y','2025-10-23 00:00:00'),(97830,11,'XM7952','Pirfenidone','Y','2025-10-23 00:00:00'),(97831,11,'XM2QX7','Piribedil','Y','2025-10-23 00:00:00'),(97832,11,'XM7FE6','Piridoxilate','Y','2025-10-23 00:00:00'),(97833,11,'XA3MZ0','Piriform recess','Y','2025-10-23 00:00:00'),(97834,11,'XA7XS8','Piriformis muscle','Y','2025-10-23 00:00:00'),(97835,11,'XA3EU4','Piriformis tendon','Y','2025-10-23 00:00:00'),(97836,11,'XM6EM2','Pirisudanol','Y','2025-10-23 00:00:00'),(97837,11,'XM55Z5','Piritramide','Y','2025-10-23 00:00:00'),(97838,11,'XM1298','Piromidic acid','Y','2025-10-23 00:00:00'),(97839,11,'XM9MD6','Piroxicam','Y','2025-10-23 00:00:00'),(97840,11,'XM0X95','Piroxicam beta-cyclodextrin complex','Y','2025-10-23 00:00:00'),(97841,11,'XM68L2','Pirozadil','Y','2025-10-23 00:00:00'),(97842,11,'XM4KX7','Pirprofen','Y','2025-10-23 00:00:00'),(97843,11,'XM63V3','Piscidia (bark) (erythrina)','Y','2025-10-23 00:00:00'),(97844,11,'XA8SZ6','Pisiform bone','Y','2025-10-23 00:00:00'),(97845,11,'XA1Z72','Pisohamate ligament','Y','2025-10-23 00:00:00'),(97846,11,'XA3VJ3','Pisometacarpal ligament','Y','2025-10-23 00:00:00'),(97847,11,'XE429','Pit latrine','Y','2025-10-23 00:00:00'),(97848,11,'XM8420','Pitavastatin','Y','2025-10-23 00:00:00'),(97849,11,'XM16M2','Pitch','Y','2025-10-23 00:00:00'),(97850,11,'XM8AE6','Pitkin\'s solution','Y','2025-10-23 00:00:00'),(97851,11,'XM5Y38','Pitohui bird toxin','Y','2025-10-23 00:00:00'),(97852,11,'XM3QR7','Pitolisant','Y','2025-10-23 00:00:00'),(97853,11,'XE9F6','Pitted','Y','2025-10-23 00:00:00'),(97854,11,'MG29.3','Pitting oedema','Y','2025-10-23 00:00:00'),(97855,11,'MG29.02','Pitting of lip','Y','2025-10-23 00:00:00'),(97856,11,'XH59V4','Pituicytoma','Y','2025-10-23 00:00:00'),(97857,11,'1D03.32','Pituitary abscess','Y','2025-10-23 00:00:00'),(97858,11,'XH5RH2','Pituitary adenoma, ectopic','Y','2025-10-23 00:00:00'),(97859,11,'XH94U0','Pituitary adenoma, NOS','Y','2025-10-23 00:00:00'),(97860,11,'XH5QV8','Pituitary blastoma','Y','2025-10-23 00:00:00'),(97861,11,'XH7KL6','Pituitary carcinoma, NOS','Y','2025-10-23 00:00:00'),(97862,11,'XM00P3','Pituitary extracts (posterior)','Y','2025-10-23 00:00:00'),(97863,11,'XM0Y82','Pituitary extracts anterior','Y','2025-10-23 00:00:00'),(97864,11,'XA9N34','Pituitary fossa','Y','2025-10-23 00:00:00'),(97865,11,'XH4NH4','Pituitary neuroendocrine tumour','Y','2025-10-23 00:00:00'),(97866,11,'XA8J35','Pituitary','Y','2025-10-23 00:00:00'),(97867,11,'5A70.0','Pituitary-dependent Cushing disease','Y','2025-10-23 00:00:00'),(97868,11,'EA88.4','Pityriasis alba','Y','2025-10-23 00:00:00'),(97869,11,'EG30.2','Pityriasis amiantacea','Y','2025-10-23 00:00:00'),(97870,11,'EA93','Pityriasis lichenoides','Y','2025-10-23 00:00:00'),(97871,11,'EA10','Pityriasis rosea','Y','2025-10-23 00:00:00'),(97872,11,'XN9QL','Pityriasis Rosea virus','Y','2025-10-23 00:00:00'),(97873,11,'EA94','Pityriasis rubra pilaris','Y','2025-10-23 00:00:00'),(97874,11,'1F2D.0','Pityriasis versicolor','Y','2025-10-23 00:00:00'),(97875,11,'XM4ZF1','Pivagabine','Y','2025-10-23 00:00:00'),(97876,11,'XM7CR7','Pivampicillin','Y','2025-10-23 00:00:00'),(97877,11,'XM9LR3','Pivmecillinam','Y','2025-10-23 00:00:00'),(97878,11,'XM8ZP9','Pixantrone','Y','2025-10-23 00:00:00'),(97879,11,'XN3YZ','Pixuna virus','Y','2025-10-23 00:00:00'),(97880,11,'XM4WH4','Pizotifen','Y','2025-10-23 00:00:00'),(97881,11,'XE1WL','Place for socialising and consumption of alcoholic drinks','Y','2025-10-23 00:00:00'),(97882,11,'XA90F8','Placenta','Y','2025-10-23 00:00:00'),(97883,11,'JA8B.0','Placenta praevia specified as without haemorrhage','Y','2025-10-23 00:00:00'),(97884,11,'JA8B.1','Placenta praevia with haemorrhage','Y','2025-10-23 00:00:00'),(97885,11,'XM0J12','Placental hormone','Y','2025-10-23 00:00:00'),(97886,11,'XH1RM5','Placental site trophoblastic tumour','Y','2025-10-23 00:00:00'),(97887,11,'JA8A.0','Placental transfusion syndromes','Y','2025-10-23 00:00:00'),(97888,11,'LB70.00','Plagiocephaly','Y','2025-10-23 00:00:00'),(97889,11,'1B93','Plague','Y','2025-10-23 00:00:00'),(97890,11,'1B93.3','Plague meningitis','Y','2025-10-23 00:00:00'),(97891,11,'XM8ZX8','Plague vaccines','Y','2025-10-23 00:00:00'),(97892,11,'XM3796','Plague, inactivated, whole cell vaccines','Y','2025-10-23 00:00:00'),(97893,11,'1B93.Z','Plague, unspecified','Y','2025-10-23 00:00:00'),(97894,11,'1.00E+81','Plane warts','Y','2025-10-23 00:00:00'),(97895,11,'EB90.20','Plane xanthoma','Y','2025-10-23 00:00:00'),(97896,11,'XE3C1','Plant','Y','2025-10-23 00:00:00'),(97897,11,'XM8PU3','Plant derived pesticide, not elsewhere classified','Y','2025-10-23 00:00:00'),(97898,11,'XM21W4','Plant or herbal extracted compounds','Y','2025-10-23 00:00:00'),(97899,11,'XM8A62','Plant protein','Y','2025-10-23 00:00:00'),(97900,11,'XE8XA','Plant seed','Y','2025-10-23 00:00:00'),(97901,11,'XE8SV','Plant thorn','Y','2025-10-23 00:00:00'),(97902,11,'XA59U6','Plantar accessory ligament','Y','2025-10-23 00:00:00'),(97903,11,'XA87B0','Plantar aponeurosis','Y','2025-10-23 00:00:00'),(97904,11,'XA4N86','Plantar calcaneocuboid ligament','Y','2025-10-23 00:00:00'),(97905,11,'XA5KN3','Plantar calcaneonavicular ligament','Y','2025-10-23 00:00:00'),(97906,11,'XA2NX5','Plantar cuboideonavicular ligament','Y','2025-10-23 00:00:00'),(97907,11,'XA4EV7','Plantar cutaneous venous arch','Y','2025-10-23 00:00:00'),(97908,11,'XA8657','Plantar digital vein','Y','2025-10-23 00:00:00'),(97909,11,'FB40.1','Plantar fasciitis','Y','2025-10-23 00:00:00'),(97910,11,'XA5HQ7','Plantar intercuneiform ligament','Y','2025-10-23 00:00:00'),(97911,11,'XA18T4','Plantar intermetatarsal ligament','Y','2025-10-23 00:00:00'),(97912,11,'XA7L19','Plantar interossei of foot tendon','Y','2025-10-23 00:00:00'),(97913,11,'XA1747','Plantar naviculocuneiform ligament','Y','2025-10-23 00:00:00'),(97914,11,'XA3906','Plantar nerve','Y','2025-10-23 00:00:00'),(97915,11,'XA6KE9','Plantar surface of forefoot','Y','2025-10-23 00:00:00'),(97916,11,'XA2N02','Plantar surface of heel','Y','2025-10-23 00:00:00'),(97917,11,'XA9LJ5','Plantar surface of toe','Y','2025-10-23 00:00:00'),(97918,11,'XA71L9','Plantar tarsometatarsal ligament','Y','2025-10-23 00:00:00'),(97919,11,'1E80.1','Plantar warts','Y','2025-10-23 00:00:00'),(97920,11,'XA7W96','Plantaris muscle','Y','2025-10-23 00:00:00'),(97921,11,'XA6BZ6','Plantaris tendon','Y','2025-10-23 00:00:00'),(97922,11,'EB61.0','Plaque morphoea','Y','2025-10-23 00:00:00'),(97923,11,'EA90.0','Plaque psoriasis','Y','2025-10-23 00:00:00'),(97924,11,'XH3665','Plaque-like CD34 positive dermal fibroma','Y','2025-10-23 00:00:00'),(97925,11,'XA7UR0','Plasma','Y','2025-10-23 00:00:00'),(97926,11,'2A83.4','Plasma cell leukaemia','Y','2025-10-23 00:00:00'),(97927,11,'XH7GC9','Plasma cell leukaemia','Y','2025-10-23 00:00:00'),(97928,11,'2A83.1','Plasma cell myeloma','Y','2025-10-23 00:00:00'),(97929,11,'XH4XA9','Plasma cell myeloma','Y','2025-10-23 00:00:00'),(97930,11,'2A83.Z','Plasma cell neoplasm, unspecified','Y','2025-10-23 00:00:00'),(97931,11,'2A83','Plasma cell neoplasms','Y','2025-10-23 00:00:00'),(97932,11,'XM1H99','Plasma protein fraction, human','Y','2025-10-23 00:00:00'),(97933,11,'2A81.2','Plasmablastic lymphoma','Y','2025-10-23 00:00:00'),(97934,11,'XH6YR5','Plasmablastic lymphoma','Y','2025-10-23 00:00:00'),(97935,11,'XH3KQ3','Plasmacytic lymphoma','Y','2025-10-23 00:00:00'),(97936,11,'XH0N40','Plasmacytoma, extramedullary','Y','2025-10-23 00:00:00'),(97937,11,'XH4BL1','Plasmacytoma, NOS','Y','2025-10-23 00:00:00'),(97938,11,'XN5FW','Plasmodium','Y','2025-10-23 00:00:00'),(97939,11,'XN69B','Plasmodium falciparum','Y','2025-10-23 00:00:00'),(97940,11,'1F40.0','Plasmodium falciparum malaria with cerebral complications','Y','2025-10-23 00:00:00'),(97941,11,'XN93K','Plasmodium knowlesi','Y','2025-10-23 00:00:00'),(97942,11,'XN7K1','Plasmodium malariae','Y','2025-10-23 00:00:00'),(97943,11,'1F42.0','Plasmodium malariae malaria with nephropathy','Y','2025-10-23 00:00:00'),(97944,11,'1F42.Z','Plasmodium malariae malaria without complication','Y','2025-10-23 00:00:00'),(97945,11,'XN5WD','Plasmodium ovale','Y','2025-10-23 00:00:00'),(97946,11,'XN217','Plasmodium vivax','Y','2025-10-23 00:00:00'),(97947,11,'1F41.0','Plasmodium vivax malaria with rupture of spleen','Y','2025-10-23 00:00:00'),(97948,11,'1F41.Z','Plasmodium vivax malaria without complication','Y','2025-10-23 00:00:00'),(97949,11,'XM8J96','Plaster dressing','Y','2025-10-23 00:00:00'),(97950,11,'XE7K4','Plastic','Y','2025-10-23 00:00:00'),(97951,11,'XE2DW','Plastic bag','Y','2025-10-23 00:00:00'),(97952,11,'XM9V04','Plastic dressing','Y','2025-10-23 00:00:00'),(97953,11,'XM92Y5','Plastic intrauterine contraceptive device','Y','2025-10-23 00:00:00'),(97954,11,'XM0B44','Plastic intrauterine contraceptive device with copper','Y','2025-10-23 00:00:00'),(97955,11,'XM7P32','Plastic intrauterine contraceptive device with progestogen','Y','2025-10-23 00:00:00'),(97956,11,'XE965','Plate component of medical device','Y','2025-10-23 00:00:00'),(97957,11,'XE9Q8','Plate, bowl, dish made from glass or china','Y','2025-10-23 00:00:00'),(97958,11,'9A94.2','Plateau iris syndrome','Y','2025-10-23 00:00:00'),(97959,11,'XA10B5','Platelets','Y','2025-10-23 00:00:00'),(97960,11,'XM40B7','Platinum compounds','Y','2025-10-23 00:00:00'),(97961,11,'XM27R8','Platypus venom','Y','2025-10-23 00:00:00'),(97962,11,'XA17T6','Platysma muscle','Y','2025-10-23 00:00:00'),(97963,11,'XA4758','Platysma tendon','Y','2025-10-23 00:00:00'),(97964,11,'XE6JS','Playground equipment','Y','2025-10-23 00:00:00'),(97965,11,'XE8H2','Playground equipment, flying fox','Y','2025-10-23 00:00:00'),(97966,11,'XE27W','Playground equipment, monkey bar','Y','2025-10-23 00:00:00'),(97967,11,'XE9AU','Playground equipment, seesaw, teeter totter','Y','2025-10-23 00:00:00'),(97968,11,'XE0R1','Playground equipment, slide, sliding board','Y','2025-10-23 00:00:00'),(97969,11,'XE5W3','Playground equipment, swing, swing set','Y','2025-10-23 00:00:00'),(97970,11,'XE5QK','Playpen, travel yard','Y','2025-10-23 00:00:00'),(97971,11,'XM1KN3','Plazomicin','Y','2025-10-23 00:00:00'),(97972,11,'XM78V7','Plecanatide','Y','2025-10-23 00:00:00'),(97973,11,'XM23V6','Pleconaril','Y','2025-10-23 00:00:00'),(97974,11,'XN1ZM','Pleisiomonas','Y','2025-10-23 00:00:00'),(97975,11,'XH2KC1','Pleomorphic adenoma','Y','2025-10-23 00:00:00'),(97976,11,'XH35G0','Pleomorphic carcinoma','Y','2025-10-23 00:00:00'),(97977,11,'XH7XH3','Pleomorphic dermal sarcoma','Y','2025-10-23 00:00:00'),(97978,11,'XH1BV2','Pleomorphic fibroma','Y','2025-10-23 00:00:00'),(97979,11,'XH2193','Pleomorphic hyalinizing angiectatic tumour','Y','2025-10-23 00:00:00'),(97980,11,'XH30M7','Pleomorphic lipoma','Y','2025-10-23 00:00:00'),(97981,11,'XH25R1','Pleomorphic liposarcoma','Y','2025-10-23 00:00:00'),(97982,11,'XH4VB5','Pleomorphic rhabdomyosarcoma, adult type','Y','2025-10-23 00:00:00'),(97983,11,'XH5SX9','Pleomorphic rhabdomyosarcoma, NOS','Y','2025-10-23 00:00:00'),(97984,11,'XH99U2','Pleomorphic xanthoastrocytoma','Y','2025-10-23 00:00:00'),(97985,11,'XM19S3','Plerixafor','Y','2025-10-23 00:00:00'),(97986,11,'XA5TT2','Pleura','Y','2025-10-23 00:00:00'),(97987,11,'XA3LX5','Pleural cavity','Y','2025-10-23 00:00:00'),(97988,11,'CB27','Pleural effusion','Y','2025-10-23 00:00:00'),(97989,11,'SA83','Pleural fluid retention disorder (TM1)','Y','2025-10-23 00:00:00'),(97990,11,'CB20','Pleural plaque','Y','2025-10-23 00:00:00'),(97991,11,'CB2Z','Pleural, diaphragm or mediastinal disorders, unspecified','Y','2025-10-23 00:00:00'),(97992,11,'MD31','Pleurisy','Y','2025-10-23 00:00:00'),(97993,11,'XM44P3','Pleurocybella porrigens mushroom','Y','2025-10-23 00:00:00'),(97994,11,'XH2FY9','Pleuropulmonary blastoma','Y','2025-10-23 00:00:00'),(97995,11,'XH4GL1','Plexiform fibrohistiocytic tumour','Y','2025-10-23 00:00:00'),(97996,11,'XH2WT6','Plexiform fibromyxoma','Y','2025-10-23 00:00:00'),(97997,11,'XH4EP9','Plexiform leiomyoma','Y','2025-10-23 00:00:00'),(97998,11,'XH2MJ4','Plexiform neurofibroma','Y','2025-10-23 00:00:00'),(97999,11,'XH9XT2','Plexiform schwannoma','Y','2025-10-23 00:00:00'),(98000,11,'XM3JL4','Plicamycin','Y','2025-10-23 00:00:00'),(98001,11,'XM8UF4','Plitidepsin','Y','2025-10-23 00:00:00'),(98002,11,'XE09R','Plug component of medical device','Y','2025-10-23 00:00:00'),(98003,11,'MC40','Plugged feeling ear','Y','2025-10-23 00:00:00'),(98004,11,'XM52C3','Plum kernel','Y','2025-10-23 00:00:00'),(98005,11,'XE9R2','Plunger component of medical device','Y','2025-10-23 00:00:00'),(98006,11,'XH1JL3','Plurihormonal adenoma','Y','2025-10-23 00:00:00'),(98007,11,'DB31.1','Pneumatosis intestinalis of large intestine','Y','2025-10-23 00:00:00'),(98008,11,'DA92.1','Pneumatosis intestinalis of small intestine','Y','2025-10-23 00:00:00'),(98009,11,'XM9G97','Pneumococcal conjugate (13-valent) vaccines','Y','2025-10-23 00:00:00'),(98010,11,'XM2249','Pneumococcal polysaccharide 23-valent vaccines','Y','2025-10-23 00:00:00'),(98011,11,'XM9EM7','Pneumococcal vaccines','Y','2025-10-23 00:00:00'),(98012,11,'XM4R39','Pneumococcus purified polysaccharides antigen and Haemophilus influenzae, conjugated vaccines','Y','2025-10-23 00:00:00'),(98013,11,'XM96S7','Pneumococcus, purified polysaccharides antigen conjugated vaccines','Y','2025-10-23 00:00:00'),(98014,11,'XM91D7','Pneumococcus, purified polysaccharides antigen vaccines','Y','2025-10-23 00:00:00'),(98015,11,'CA60','Pneumoconiosis','Y','2025-10-23 00:00:00'),(98016,11,'CA60.3','Pneumoconiosis associated with tuberculosis','Y','2025-10-23 00:00:00'),(98017,11,'CA60.0','Pneumoconiosis due to dust containing silica','Y','2025-10-23 00:00:00'),(98018,11,'CA60.0Z','Pneumoconiosis due to dust containing silica, unspecified','Y','2025-10-23 00:00:00'),(98019,11,'CA60.2','Pneumoconiosis due to mineral fibres including asbestos','Y','2025-10-23 00:00:00'),(98020,11,'CA60.00','Pneumoconiosis due to talc dust','Y','2025-10-23 00:00:00'),(98021,11,'CA60.Z','Pneumoconiosis, unspecified','Y','2025-10-23 00:00:00'),(98022,11,'XN5XK','Pneumocystidomycetes','Y','2025-10-23 00:00:00'),(98023,11,'1F2G','Pneumocystosis','Y','2025-10-23 00:00:00'),(98024,11,'1F2G.Z','Pneumocystosis, unspecified','Y','2025-10-23 00:00:00'),(98025,11,'KB27.2','Pneumomediastinum originating in the perinatal period','Y','2025-10-23 00:00:00'),(98026,11,'CA40','Pneumonia','Y','2025-10-23 00:00:00'),(98027,11,'CA40.10','Pneumonia due to Adenovirus','Y','2025-10-23 00:00:00'),(98028,11,'CA40.08','Pneumonia due to Beta-haemolytic streptococcus','Y','2025-10-23 00:00:00'),(98029,11,'CA40.00','Pneumonia due to Chlamydophila pneumoniae','Y','2025-10-23 00:00:00'),(98030,11,'CA40.01','Pneumonia due to Escherichia coli','Y','2025-10-23 00:00:00'),(98031,11,'CA40.02','Pneumonia due to Haemophilus influenzae','Y','2025-10-23 00:00:00'),(98032,11,'CA40.13','Pneumonia due to Human metapneumovirus','Y','2025-10-23 00:00:00'),(98033,11,'CA40.03','Pneumonia due to Klebsiella pneumoniae','Y','2025-10-23 00:00:00'),(98034,11,'CA40.04','Pneumonia due to Mycoplasma pneumoniae','Y','2025-10-23 00:00:00'),(98035,11,'CA40.0Y','Pneumonia due to other specified bacteria','Y','2025-10-23 00:00:00'),(98036,11,'CA40.1Y','Pneumonia due to other specified virus','Y','2025-10-23 00:00:00'),(98037,11,'CA40.12','Pneumonia due to parainfluenza virus','Y','2025-10-23 00:00:00'),(98038,11,'CA40.20','Pneumonia due to pneumocystis','Y','2025-10-23 00:00:00'),(98039,11,'CA40.05','Pneumonia due to Pseudomonas aeruginosa','Y','2025-10-23 00:00:00'),(98040,11,'CA40.11','Pneumonia due to Respiratory syncytial virus','Y','2025-10-23 00:00:00'),(98041,11,'CA40.06','Pneumonia due to Staphylococcus','Y','2025-10-23 00:00:00'),(98042,11,'CA40.07','Pneumonia due to Streptococcus pneumoniae','Y','2025-10-23 00:00:00'),(98043,11,'CA40.Z','Pneumonia, organism unspecified','Y','2025-10-23 00:00:00'),(98044,11,'1B93.2','Pneumonic plague','Y','2025-10-23 00:00:00'),(98045,11,'CA71.2','Pneumonitis due to aspiration of blood','Y','2025-10-23 00:00:00'),(98046,11,'CA71.0','Pneumonitis due to inhalation of food or vomit','Y','2025-10-23 00:00:00'),(98047,11,'CA71.1','Pneumonitis due to oils or essences','Y','2025-10-23 00:00:00'),(98048,11,'CA71','Pneumonitis due to solids and liquids','Y','2025-10-23 00:00:00'),(98049,11,'CA71.Z','Pneumonitis due to solids and liquids, unspecified','Y','2025-10-23 00:00:00'),(98050,11,'CA7Z','Pneumonitis, unspecified','Y','2025-10-23 00:00:00'),(98051,11,'KB27.3','Pneumopericardium originating in the perinatal period','Y','2025-10-23 00:00:00'),(98052,11,'KB27.4','Pneumoperitoneum, originating in the perinatal period, due to primary pulmonary air leak syndromes','Y','2025-10-23 00:00:00'),(98053,11,'CB21','Pneumothorax','Y','2025-10-23 00:00:00'),(98054,11,'KB27.1','Pneumothorax originating in the perinatal period','Y','2025-10-23 00:00:00'),(98055,11,'CB21.Z','Pneumothorax, unspecified','Y','2025-10-23 00:00:00'),(98056,11,'XN8W9','Pneumovirus','Y','2025-10-23 00:00:00'),(98057,11,'XE99K','Pocket stimulation','Y','2025-10-23 00:00:00'),(98058,11,'XM5HX7','Podophyllin','Y','2025-10-23 00:00:00'),(98059,11,'XM8865','Podophyllotoxin','Y','2025-10-23 00:00:00'),(98060,11,'XM3SH7','Podophyllotoxin derivatives','Y','2025-10-23 00:00:00'),(98061,11,'XM4L14','Podophyllum (resin)','Y','2025-10-23 00:00:00'),(98062,11,'XM3CK7','Podostroma cornu-damae mushroom','Y','2025-10-23 00:00:00'),(98063,11,'EK91.1','Poikiloderma vasculare atrophicans','Y','2025-10-23 00:00:00'),(98064,11,'XE5UB','Pointer component of medical device','Y','2025-10-23 00:00:00'),(98065,11,'XM7JP5','Poison dart frog poison','Y','2025-10-23 00:00:00'),(98066,11,'XM21J6','Poison oak plant','Y','2025-10-23 00:00:00'),(98067,11,'XM4882','Poison sumak plant','Y','2025-10-23 00:00:00'),(98068,11,'XE13E','Poisoning or toxic effect of exposure to substance','Y','2025-10-23 00:00:00'),(98069,11,'XM74S8','Poisonous mushroom','Y','2025-10-23 00:00:00'),(98070,11,'XM98M9','Poisonous plant berries, not elsewhere classified','Y','2025-10-23 00:00:00'),(98071,11,'XM7MT6','Poisonous plant flowers, not elsewhere classified','Y','2025-10-23 00:00:00'),(98072,11,'XM6LL5','Poisonous plant fruits, not elsewhere classified','Y','2025-10-23 00:00:00'),(98073,11,'XM2BH3','Poisonous plant leaves, not elsewhere classified','Y','2025-10-23 00:00:00'),(98074,11,'XM0GB3','Poisonous plant roots, not elsewhere classified','Y','2025-10-23 00:00:00'),(98075,11,'XM2CE0','Poisonous plant sap, not elsewhere classified','Y','2025-10-23 00:00:00'),(98076,11,'XM7JK8','Poisonous plant seeds, not elsewhere classified','Y','2025-10-23 00:00:00'),(98077,11,'XM7KY1','Poisonous plant stem, not elsewhere classified','Y','2025-10-23 00:00:00'),(98078,11,'XM56V2','Poisonous plant thorns, not elsewhere classified','Y','2025-10-23 00:00:00'),(98079,11,'LB73.10','Poland syndrome','Y','2025-10-23 00:00:00'),(98080,11,'XH83Y5','Polar spongioblastoma','Y','2025-10-23 00:00:00'),(98081,11,'XM7EV5','Poldine','Y','2025-10-23 00:00:00'),(98082,11,'XM9HP8','Policosanol','Y','2025-10-23 00:00:00'),(98083,11,'XM0SV3','Policresulen','Y','2025-10-23 00:00:00'),(98084,11,'XM1Q10','Polidexide sulfate','Y','2025-10-23 00:00:00'),(98085,11,'XM4DD8','Polidocanol','Y','2025-10-23 00:00:00'),(98086,11,'XM8S89','Polihexanide','Y','2025-10-23 00:00:00'),(98087,11,'XM79H3','Poliomyelitis oral, bivalent, live attenuated','Y','2025-10-23 00:00:00'),(98088,11,'XM0VX8','Poliomyelitis oral, monovalent live attenuated','Y','2025-10-23 00:00:00'),(98089,11,'XM0KZ1','Poliomyelitis oral, trivalent, live attenuated','Y','2025-10-23 00:00:00'),(98090,11,'XM0N50','Poliomyelitis vaccines','Y','2025-10-23 00:00:00'),(98091,11,'XM5V19','Poliomyelitis, trivalent, inactivated, whole virus','Y','2025-10-23 00:00:00'),(98092,11,'XN3M0','Poliovirus','Y','2025-10-23 00:00:00'),(98093,11,'XM0KG9','Polishing compound','Y','2025-10-23 00:00:00'),(98094,11,'MF50.1','Pollakiuria','Y','2025-10-23 00:00:00'),(98095,11,'XM1N20','Polmacoxib','Y','2025-10-23 00:00:00'),(98096,11,'XM95P7','Poloxamer','Y','2025-10-23 00:00:00'),(98097,11,'XM1R32','Poly I:C','Y','2025-10-23 00:00:00'),(98098,11,'XM4J95','Poly ICLC','Y','2025-10-23 00:00:00'),(98099,11,'XM6P40','Polyaminostyrene resins','Y','2025-10-23 00:00:00'),(98100,11,'4A44.4','Polyarteritis nodosa','Y','2025-10-23 00:00:00'),(98101,11,'XA3FU7','Polyarticular','Y','2025-10-23 00:00:00'),(98102,11,'XM59S9','Polybrominated biphenyl','Y','2025-10-23 00:00:00'),(98103,11,'XM9PF1','Polycarbophil','Y','2025-10-23 00:00:00'),(98104,11,'XM5BR4','Polycarbophil calcium','Y','2025-10-23 00:00:00'),(98105,11,'XM77J7','Polychlorinated biphenyl','Y','2025-10-23 00:00:00'),(98106,11,'4B21','Polyclonal hypergammaglobulinaemia','Y','2025-10-23 00:00:00'),(98107,11,'DB99.10','Polycystic liver disease','Y','2025-10-23 00:00:00'),(98108,11,'5A80.2','Polycystic ovary','Y','2025-10-23 00:00:00'),(98109,11,'5A80.1','Polycystic ovary syndrome','Y','2025-10-23 00:00:00'),(98110,11,'3A81.0','Polycythaemia due to hypoxia, including high altitude','Y','2025-10-23 00:00:00'),(98111,11,'3A81.1','Polycythaemia due to over-transfusion or blood doping','Y','2025-10-23 00:00:00'),(98112,11,'KA8A','Polycythaemia neonatorum','Y','2025-10-23 00:00:00'),(98113,11,'KA8A.2','Polycythaemia neonatorum due to inherited disorder of erythropoietin production','Y','2025-10-23 00:00:00'),(98114,11,'KA8A.0','Polycythaemia neonatorum due to placental insufficiency or fetal intrauterine growth restriction','Y','2025-10-23 00:00:00'),(98115,11,'KA8A.1','Polycythaemia neonatorum due to twin to twin transfusion','Y','2025-10-23 00:00:00'),(98116,11,'KA8A.4','Polycythaemia neonatorum following blood transfusion','Y','2025-10-23 00:00:00'),(98117,11,'KA8A.3','Polycythaemia neonatorum following umbilical cord transfusion or stripping at delivery','Y','2025-10-23 00:00:00'),(98118,11,'KA8A.Z','Polycythaemia neonatorum, unspecified','Y','2025-10-23 00:00:00'),(98119,11,'2A20.4','Polycythaemia vera','Y','2025-10-23 00:00:00'),(98120,11,'XH0453','Polycythaemia vera','Y','2025-10-23 00:00:00'),(98121,11,'3A8Z','Polycythaemia, unspecified','Y','2025-10-23 00:00:00'),(98122,11,'LB78','Polydactyly','Y','2025-10-23 00:00:00'),(98123,11,'LB78.0','Polydactyly of the thumb','Y','2025-10-23 00:00:00'),(98124,11,'LB78.3','Polydactyly of toes','Y','2025-10-23 00:00:00'),(98125,11,'LB78.Z','Polydactyly, unspecified','Y','2025-10-23 00:00:00'),(98126,11,'MG43.0','Polydipsia','Y','2025-10-23 00:00:00'),(98127,11,'XH9Z28','Polyembryoma','Y','2025-10-23 00:00:00'),(98128,11,'XM3D40','Polyester fumes','Y','2025-10-23 00:00:00'),(98129,11,'XM3JF2','Polyester resin hardener','Y','2025-10-23 00:00:00'),(98130,11,'XM3EF0','Polyester resin hardener fumes','Y','2025-10-23 00:00:00'),(98131,11,'XM3YX8','Polyestradiol phosphate','Y','2025-10-23 00:00:00'),(98132,11,'XM3E94','Polyethanolamine alkyl sulfate','Y','2025-10-23 00:00:00'),(98133,11,'XM2BL7','Polyethylene adhesive','Y','2025-10-23 00:00:00'),(98134,11,'XM1Y67','Polyferose','Y','2025-10-23 00:00:00'),(98135,11,'XM99H6','Polygeline','Y','2025-10-23 00:00:00'),(98136,11,'5B0Z','Polyglandular dysfunction, unspecified','Y','2025-10-23 00:00:00'),(98137,11,'5B01','Polyglandular hyperfunction','Y','2025-10-23 00:00:00'),(98138,11,'XH92T7','Polygonal cell carcinoma','Y','2025-10-23 00:00:00'),(98139,11,'XE7WP','Polymer powder component of medical device','Y','2025-10-23 00:00:00'),(98140,11,'1B71.1','Polymicrobial necrotising fasciitis','Y','2025-10-23 00:00:00'),(98141,11,'LA05.50','Polymicrogyria','Y','2025-10-23 00:00:00'),(98142,11,'JA65.12','Polymorphic eruption of pregnancy','Y','2025-10-23 00:00:00'),(98143,11,'EJ30.0','Polymorphic light eruption','Y','2025-10-23 00:00:00'),(98144,11,'XH74K1','Polymorphic post transplant lymphoproliferative disorder','Y','2025-10-23 00:00:00'),(98145,11,'2B32.3','Polymorphic post-transplant lymphoproliferative disorder','Y','2025-10-23 00:00:00'),(98146,11,'BC71.01','Polymorphic ventricular tachycardia','Y','2025-10-23 00:00:00'),(98147,11,'XH5SD5','Polymorphous adenocarcinoma','Y','2025-10-23 00:00:00'),(98148,11,'FA22','Polymyalgia rheumatica','Y','2025-10-23 00:00:00'),(98149,11,'4A41.1','Polymyositis','Y','2025-10-23 00:00:00'),(98150,11,'4A41.1Z','Polymyositis, unspecified','Y','2025-10-23 00:00:00'),(98151,11,'XM8MH4','Polymyxin','Y','2025-10-23 00:00:00'),(98152,11,'XM0NQ2','Polymyxin B','Y','2025-10-23 00:00:00'),(98153,11,'XM7B69','Polymyxin B topical','Y','2025-10-23 00:00:00'),(98154,11,'XM9N59','Polymyxin E sulfate (eye preparation)','Y','2025-10-23 00:00:00'),(98155,11,'MG50.03','Polymyxin resistant Acinetobacter baumannii','Y','2025-10-23 00:00:00'),(98156,11,'MG50.25','Polymyxin resistant Escherichia coli','Y','2025-10-23 00:00:00'),(98157,11,'MG50.55','Polymyxin resistant Klebsiella pneumoniae','Y','2025-10-23 00:00:00'),(98158,11,'MG50.81','Polymyxin-resistant Pseudomonas aeruginosa','Y','2025-10-23 00:00:00'),(98159,11,'XM3DZ3','Polymyxins','Y','2025-10-23 00:00:00'),(98160,11,'8C03.1','Polyneuropathy due to infectious diseases','Y','2025-10-23 00:00:00'),(98161,11,'8C03.2','Polyneuropathy in neoplastic disease','Y','2025-10-23 00:00:00'),(98162,11,'8C03.3','Polyneuropathy in nutritional deficiency','Y','2025-10-23 00:00:00'),(98163,11,'8C03.4','Polyneuropathy in systemic connective tissue disorders','Y','2025-10-23 00:00:00'),(98164,11,'8C0Z','Polyneuropathy, unspecified','Y','2025-10-23 00:00:00'),(98165,11,'XM0J95','Polynoxylin','Y','2025-10-23 00:00:00'),(98166,11,'XN0TQ','Polyoma virus B19','Y','2025-10-23 00:00:00'),(98167,11,'XN9WH','Polyomavirus','Y','2025-10-23 00:00:00'),(98168,11,'LB58','Polyorchidism','Y','2025-10-23 00:00:00'),(98169,11,'FA05','Polyosteoarthritis','Y','2025-10-23 00:00:00'),(98170,11,'XM2G74','Polyoxymethyleneurea','Y','2025-10-23 00:00:00'),(98171,11,'GA15.0','Polyp of cervix uteri','Y','2025-10-23 00:00:00'),(98172,11,'DC10.3','Polyp of gallbladder','Y','2025-10-23 00:00:00'),(98173,11,'DB35','Polyp of large intestine','Y','2025-10-23 00:00:00'),(98174,11,'DB35.Z','Polyp of large intestine, unspecified','Y','2025-10-23 00:00:00'),(98175,11,'AB1A','Polyp of middle ear','Y','2025-10-23 00:00:00'),(98176,11,'AB1A.Z','Polyp of middle ear, unspecified','Y','2025-10-23 00:00:00'),(98177,11,'EK71.Z','Polyp of skin not elsewhere classified','Y','2025-10-23 00:00:00'),(98178,11,'GA14.0','Polyp of vagina','Y','2025-10-23 00:00:00'),(98179,11,'CA0H.1','Polyp of vocal cord or larynx','Y','2025-10-23 00:00:00'),(98180,11,'GA13.0','Polyp of vulva','Y','2025-10-23 00:00:00'),(98181,11,'XM0FB2','Polyplatillen','Y','2025-10-23 00:00:00'),(98182,11,'LD42','Polyploidies','Y','2025-10-23 00:00:00'),(98183,11,'LD42.Z','Polyploidies, unspecified','Y','2025-10-23 00:00:00'),(98184,11,'CA0J.0','Polypoid sinus degeneration','Y','2025-10-23 00:00:00'),(98185,11,'2E92.40','Polyposis syndrome','Y','2025-10-23 00:00:00'),(98186,11,'DA98','Polyps of small intestine','Y','2025-10-23 00:00:00'),(98187,11,'DA98.Z','Polyps of small intestine, unspecified','Y','2025-10-23 00:00:00'),(98188,11,'XM0EK0','Polysilane','Y','2025-10-23 00:00:00'),(98189,11,'LB22.1','Polysplenia','Y','2025-10-23 00:00:00'),(98190,11,'XM3B07','Polystyrene sulfonate','Y','2025-10-23 00:00:00'),(98191,11,'LB78.1','Polysyndactyly','Y','2025-10-23 00:00:00'),(98192,11,'XM1663','Polytetrafluoroethylene','Y','2025-10-23 00:00:00'),(98193,11,'XM7NZ7','Polythiazide','Y','2025-10-23 00:00:00'),(98194,11,'MF55','Polyuria','Y','2025-10-23 00:00:00'),(98195,11,'XM8UH8','Polyvinylpyrrolidone','Y','2025-10-23 00:00:00'),(98196,11,'XM6S50','Pomalidomide','Y','2025-10-23 00:00:00'),(98197,11,'XM70G2','Ponatinib','Y','2025-10-23 00:00:00'),(98198,11,'XM69Y4','Ponesimod','Y','2025-10-23 00:00:00'),(98199,11,'XA9CM4','Pons','Y','2025-10-23 00:00:00'),(98200,11,'XA3185','Pontine branches of the basilar artery','Y','2025-10-23 00:00:00'),(98201,11,'LD20.01','Pontocerebellar hypoplasia','Y','2025-10-23 00:00:00'),(98202,11,'MB21.A','Poor concentration','Y','2025-10-23 00:00:00'),(98203,11,'MB23.J','Poor personal hygiene','Y','2025-10-23 00:00:00'),(98204,11,'XE5XP','Poor quality image','Y','2025-10-23 00:00:00'),(98205,11,'MF50.61','Poor urinary stream','Y','2025-10-23 00:00:00'),(98206,11,'XH2KK0','Poorly cohesive carcinoma','Y','2025-10-23 00:00:00'),(98207,11,'2D10.2','Poorly differentiated carcinoma of thyroid gland','Y','2025-10-23 00:00:00'),(98208,11,'XH8VU6','Poorly differentiated thyroid carcinoma','Y','2025-10-23 00:00:00'),(98209,11,'XA44K1','Popliteal artery','Y','2025-10-23 00:00:00'),(98210,11,'BD53.3','Popliteal entrapment syndrome','Y','2025-10-23 00:00:00'),(98211,11,'XA4DM3','Popliteal fossa','Y','2025-10-23 00:00:00'),(98212,11,'XA4W98','Popliteal lymph node','Y','2025-10-23 00:00:00'),(98213,11,'XA08Q1','Popliteal vein','Y','2025-10-23 00:00:00'),(98214,11,'XA8CL8','Popliteus muscle','Y','2025-10-23 00:00:00'),(98215,11,'XA4V24','Popliteus tendon','Y','2025-10-23 00:00:00'),(98216,11,'XM1P52','Porcelain','Y','2025-10-23 00:00:00'),(98217,11,'8D68','Porencephalic cyst','Y','2025-10-23 00:00:00'),(98218,11,'LA05.60','Porencephaly','Y','2025-10-23 00:00:00'),(98219,11,'XM8EW4','Porfimer sodium','Y','2025-10-23 00:00:00'),(98220,11,'XM7S82','Porfiromycin','Y','2025-10-23 00:00:00'),(98221,11,'XH7WE6','Porocarcinoma in situ','Y','2025-10-23 00:00:00'),(98222,11,'XH7VK4','Porocarcinoma, NOS','Y','2025-10-23 00:00:00'),(98223,11,'XN2GY','Porocephalidae','Y','2025-10-23 00:00:00'),(98224,11,'ED52','Porokeratoses','Y','2025-10-23 00:00:00'),(98225,11,'XH8N28','Poroma, NOS','Y','2025-10-23 00:00:00'),(98226,11,'5C58.10','Porphyria cutanea tarda','Y','2025-10-23 00:00:00'),(98227,11,'EB90.3','Porphyria or pseudoporphyria affecting the skin','Y','2025-10-23 00:00:00'),(98228,11,'5C58.1','Porphyrias','Y','2025-10-23 00:00:00'),(98229,11,'5C58.1Z','Porphyrias, unspecified','Y','2025-10-23 00:00:00'),(98230,11,'XA2YR9','Porta hepatis lymph node','Y','2025-10-23 00:00:00'),(98231,11,'XD4KU3','Portable multi-parameter patient monitors','Y','2025-10-23 00:00:00'),(98232,11,'DB98.7','Portal hypertension','Y','2025-10-23 00:00:00'),(98233,11,'DB98.7Z','Portal hypertension, unspecified','Y','2025-10-23 00:00:00'),(98234,11,'DA43.3','Portal hypertensive gastropathy','Y','2025-10-23 00:00:00'),(98235,11,'XA1E17','Portal Vein','Y','2025-10-23 00:00:00'),(98236,11,'DB98.3','Portal vein thrombosis','Y','2025-10-23 00:00:00'),(98237,11,'LA90.30','Portal vein-hepatic artery fistula','Y','2025-10-23 00:00:00'),(98238,11,'DB99.3','Portopulmonary hypertension','Y','2025-10-23 00:00:00'),(98239,11,'XE05Q','Portrait, picture, picture frame, or other wall hanging or similar decoration','Y','2025-10-23 00:00:00'),(98240,11,'XM6S92','Portuguese man o war venom','Y','2025-10-23 00:00:00'),(98241,11,'LC50.1','Port-wine stain','Y','2025-10-23 00:00:00'),(98242,11,'XM1VE3','Posaconazole','Y','2025-10-23 00:00:00'),(98243,11,'XE41N','Positioning failure','Y','2025-10-23 00:00:00'),(98244,11,'XE2J9','Positioning problem','Y','2025-10-23 00:00:00'),(98245,11,'MD40.50','Positive culture from nose','Y','2025-10-23 00:00:00'),(98246,11,'ME24.A6','Positive occult blood in stool','Y','2025-10-23 00:00:00'),(98247,11,'MD40.51','Positive sputum culture','Y','2025-10-23 00:00:00'),(98248,11,'6A25.0','Positive symptoms in primary psychotic disorders','Y','2025-10-23 00:00:00'),(98249,11,'MD40.52','Positive throat culture','Y','2025-10-23 00:00:00'),(98250,11,'6B63','Possession trance disorder','Y','2025-10-23 00:00:00'),(98251,11,'8.00E+44','Post anoxic brain damage','Y','2025-10-23 00:00:00'),(98252,11,'XE25A','Post component of medical device','Y','2025-10-23 00:00:00'),(98253,11,'RA02','Post COVID-19 condition','Y','2025-10-23 00:00:00'),(98254,11,'NF06.1','Post exercise postural hypotension','Y','2025-10-23 00:00:00'),(98255,11,'NF06.2','Post exertional dehydration','Y','2025-10-23 00:00:00'),(98256,11,'8D64.02','Post haemorrhagic hydrocephalus','Y','2025-10-23 00:00:00'),(98257,11,'8B62','Post polio progressive muscular atrophy','Y','2025-10-23 00:00:00'),(98258,11,'8.00E+63','Post pump encephalopathy','Y','2025-10-23 00:00:00'),(98259,11,'8.00E+61','Post radiation injury of the nervous system','Y','2025-10-23 00:00:00'),(98260,11,'FC01.2','Post radiation kyphosis','Y','2025-10-23 00:00:00'),(98261,11,'8B92.0','Post radiation lumbosacral plexopathy','Y','2025-10-23 00:00:00'),(98262,11,'8D43.21','Post radiation polyneuropathy','Y','2025-10-23 00:00:00'),(98263,11,'FC01.5','Post radiation scoliosis','Y','2025-10-23 00:00:00'),(98264,11,'XH2R75','Post transplant lymphoproliferative disorder, NOS','Y','2025-10-23 00:00:00'),(98265,11,'XB2G','Post traumatic','Y','2025-10-23 00:00:00'),(98266,11,'EA88.1','Post traumatic eczema','Y','2025-10-23 00:00:00'),(98267,11,'8D64.03','Post traumatic hydrocephalus','Y','2025-10-23 00:00:00'),(98268,11,'FA00.1','Post traumatic osteoarthritis of hip','Y','2025-10-23 00:00:00'),(98269,11,'FA01.1','Post traumatic osteoarthritis of knee','Y','2025-10-23 00:00:00'),(98270,11,'FA03.1','Post traumatic osteoarthritis of other specified joint','Y','2025-10-23 00:00:00'),(98271,11,'FA02.1','Post traumatic osteoarthritis of wrist or hand','Y','2025-10-23 00:00:00'),(98272,11,'8A00.25','Post traumatic Parkinsonism','Y','2025-10-23 00:00:00'),(98273,11,'6B40','Post traumatic stress disorder','Y','2025-10-23 00:00:00'),(98274,11,'NF0A.3','Post traumatic wound infection, not elsewhere classified','Y','2025-10-23 00:00:00'),(98275,11,'8C01.1','Post vaccinal neuropathy','Y','2025-10-23 00:00:00'),(98276,11,'8.00E+60','Post ventricular shunting leak','Y','2025-10-23 00:00:00'),(98277,11,'LB78.2','Postaxial polydactyly of fingers','Y','2025-10-23 00:00:00'),(98278,11,'BE10','Postcardiotomy syndrome','Y','2025-10-23 00:00:00'),(98279,11,'DC14.1','Postcholecystectomy syndrome','Y','2025-10-23 00:00:00'),(98280,11,'GA21.0','Postcoital or contact bleeding','Y','2025-10-23 00:00:00'),(98281,11,'XA4NZ9','Postcricoid region','Y','2025-10-23 00:00:00'),(98282,11,'1C17.00','Postdiphtheritic paralysis of uvula','Y','2025-10-23 00:00:00'),(98283,11,'XK8L','Posterior','Y','2025-10-23 00:00:00'),(98284,11,'XA2NF3','Posterior anastomotic vein of Labbe','Y','2025-10-23 00:00:00'),(98285,11,'XA0KQ4','Posterior arch of first cervical vertebra','Y','2025-10-23 00:00:00'),(98286,11,'XA1CC5','Posterior atlantoaxial ligament','Y','2025-10-23 00:00:00'),(98287,11,'XA80K5','Posterior atlantooccipital ligament','Y','2025-10-23 00:00:00'),(98288,11,'XA13U3','Posterior auricular artery','Y','2025-10-23 00:00:00'),(98289,11,'XA91C5','Posterior auricular lymph node','Y','2025-10-23 00:00:00'),(98290,11,'XA7F87','Posterior auricular nerve','Y','2025-10-23 00:00:00'),(98291,11,'XA67N9','Posterior auricular vein','Y','2025-10-23 00:00:00'),(98292,11,'XA8C48','Posterior auricularis muscle','Y','2025-10-23 00:00:00'),(98293,11,'XA2RY5','Posterior axillary fold','Y','2025-10-23 00:00:00'),(98294,11,'9A02.1','Posterior blepharitis','Y','2025-10-23 00:00:00'),(98295,11,'XA11K1','Posterior branch of spinal nerve','Y','2025-10-23 00:00:00'),(98296,11,'XA7C50','Posterior cerebral artery','Y','2025-10-23 00:00:00'),(98297,11,'8B26.4','Posterior cerebral artery syndrome','Y','2025-10-23 00:00:00'),(98298,11,'XA0N58','Posterior chamber of the eye','Y','2025-10-23 00:00:00'),(98299,11,'XA7U73','Posterior communicating artery','Y','2025-10-23 00:00:00'),(98300,11,'XA1UT5','Posterior cord of brachial plexus','Y','2025-10-23 00:00:00'),(98301,11,'NA31.3','Posterior cord syndrome of cervical spinal cord','Y','2025-10-23 00:00:00'),(98302,11,'NB62.3','Posterior cord syndrome of lumbar spinal cord','Y','2025-10-23 00:00:00'),(98303,11,'NA91.3','Posterior cord syndrome of thoracic spinal cord','Y','2025-10-23 00:00:00'),(98304,11,'8A21.0','Posterior cortical atrophy','Y','2025-10-23 00:00:00'),(98305,11,'XA4A37','Posterior costotransverse ligament','Y','2025-10-23 00:00:00'),(98306,11,'XA0AE2','Posterior cricoarytenoid ligament','Y','2025-10-23 00:00:00'),(98307,11,'XA9RS8','Posterior cricoarytenoid muscle','Y','2025-10-23 00:00:00'),(98308,11,'XA4635','Posterior cruciate ligament','Y','2025-10-23 00:00:00'),(98309,11,'XA2XU7','Posterior cutaneous nerve of arm','Y','2025-10-23 00:00:00'),(98310,11,'XA0KL7','Posterior cutaneous nerve of forearm','Y','2025-10-23 00:00:00'),(98311,11,'XA83P9','Posterior cutaneous nerve of thigh','Y','2025-10-23 00:00:00'),(98312,11,'NC73.00','Posterior dislocation of hip','Y','2025-10-23 00:00:00'),(98313,11,'NC93.21','Posterior dislocation of proximal end of tibia','Y','2025-10-23 00:00:00'),(98314,11,'XA5881','Posterior ethmoidal artery','Y','2025-10-23 00:00:00'),(98315,11,'XA31W7','Posterior external jugular vein','Y','2025-10-23 00:00:00'),(98316,11,'XA4NP1','Posterior facial vein','Y','2025-10-23 00:00:00'),(98317,11,'XA5U78','Posterior fossa','Y','2025-10-23 00:00:00'),(98318,11,'XA0565','Posterior fourchette of vulva','Y','2025-10-23 00:00:00'),(98319,11,'XA0882','Posterior humeral circumflex artery','Y','2025-10-23 00:00:00'),(98320,11,'XA7JE2','Posterior ileocolic lymph node','Y','2025-10-23 00:00:00'),(98321,11,'XA8RM9','Posterior inferior cerebellar artery','Y','2025-10-23 00:00:00'),(98322,11,'XA2D55','Posterior inferior ligament','Y','2025-10-23 00:00:00'),(98323,11,'XA7QE4','Posterior intercavernous sinus','Y','2025-10-23 00:00:00'),(98324,11,'XA0WT1','Posterior intercostal artery','Y','2025-10-23 00:00:00'),(98325,11,'XA51P8','Posterior interosseous artery','Y','2025-10-23 00:00:00'),(98326,11,'XA26A7','Posterior intersternal ligament','Y','2025-10-23 00:00:00'),(98327,11,'XA81T7','Posterior interventricular artery','Y','2025-10-23 00:00:00'),(98328,11,'9C40.41','Posterior ischemic optic neuropathy','Y','2025-10-23 00:00:00'),(98329,11,'XA34Z7','Posterior labial branches','Y','2025-10-23 00:00:00'),(98330,11,'XA9VV0','Posterior lateral nasal branches of the sphenopalatine artery','Y','2025-10-23 00:00:00'),(98331,11,'XA16Y4','Posterior ligament of elbow','Y','2025-10-23 00:00:00'),(98332,11,'XA8E20','Posterior longitudinal ligament','Y','2025-10-23 00:00:00'),(98333,11,'XA8FK6','Posterior lumbar region','Y','2025-10-23 00:00:00'),(98334,11,'XA4J10','Posterior lymph sac','Y','2025-10-23 00:00:00'),(98335,11,'XA3450','Posterior malleolus','Y','2025-10-23 00:00:00'),(98336,11,'XA7571','Posterior mediastinal visceral lymph node','Y','2025-10-23 00:00:00'),(98337,11,'XA1FD0','Posterior mediastinum','Y','2025-10-23 00:00:00'),(98338,11,'XA8FA1','Posterior meningeal artery','Y','2025-10-23 00:00:00'),(98339,11,'XA73V2','Posterior meningeal vein','Y','2025-10-23 00:00:00'),(98340,11,'XA2B11','Posterior of tongue','Y','2025-10-23 00:00:00'),(98341,11,'XM5714','Posterior pituitary hormone','Y','2025-10-23 00:00:00'),(98342,11,'XA3MT9','Posterior process of the talus','Y','2025-10-23 00:00:00'),(98343,11,'XA92G5','Posterior pubic ligament','Y','2025-10-23 00:00:00'),(98344,11,'XA2U92','Posterior sacrococcygeal ligament','Y','2025-10-23 00:00:00'),(98345,11,'XA6RS4','Posterior sacroiliac ligament','Y','2025-10-23 00:00:00'),(98346,11,'XA2025','Posterior scrotal branches','Y','2025-10-23 00:00:00'),(98347,11,'XA7NU3','Posterior scrotal nerve','Y','2025-10-23 00:00:00'),(98348,11,'XA4Q78','Posterior septal branches of the sphenopalatine artery','Y','2025-10-23 00:00:00'),(98349,11,'XA3PT9','Posterior sternoclavicular ligament','Y','2025-10-23 00:00:00'),(98350,11,'XA3WA5','Posterior superior alveolar artery','Y','2025-10-23 00:00:00'),(98351,11,'XA9AN9','Posterior superior alveolar nerve','Y','2025-10-23 00:00:00'),(98352,11,'XA00T1','Posterior suprarenal artery','Y','2025-10-23 00:00:00'),(98353,11,'XA6AP4','Posterior surface of ankle','Y','2025-10-23 00:00:00'),(98354,11,'XA8U54','Posterior surface of epiglottis','Y','2025-10-23 00:00:00'),(98355,11,'XA5ZE2','Posterior surface of heel','Y','2025-10-23 00:00:00'),(98356,11,'XA0LQ2','Posterior surface of lower leg','Y','2025-10-23 00:00:00'),(98357,11,'XA3S47','Posterior surface of pinna','Y','2025-10-23 00:00:00'),(98358,11,'XA34G7','Posterior surface of shoulder','Y','2025-10-23 00:00:00'),(98359,11,'XA0183','Posterior surface of thigh','Y','2025-10-23 00:00:00'),(98360,11,'XA5TK8','Posterior surface of upper arm','Y','2025-10-23 00:00:00'),(98361,11,'XA60T4','Posterior talocalcaneal ligament','Y','2025-10-23 00:00:00'),(98362,11,'XA93E6','Posterior talofibular ligament','Y','2025-10-23 00:00:00'),(98363,11,'XA5AY0','Posterior temporal diploic vein','Y','2025-10-23 00:00:00'),(98364,11,'XA6LK2','Posterior tibial artery','Y','2025-10-23 00:00:00'),(98365,11,'XA33D9','Posterior tibial recurrent artery','Y','2025-10-23 00:00:00'),(98366,11,'FB40.2','Posterior tibial tendonitis','Y','2025-10-23 00:00:00'),(98367,11,'XA5D60','Posterior tibial vein','Y','2025-10-23 00:00:00'),(98368,11,'XA6RA3','Posterior tibiofibular ligament','Y','2025-10-23 00:00:00'),(98369,11,'XA0X58','Posterior tonsillar pillar','Y','2025-10-23 00:00:00'),(98370,11,'XA45K8','Posterior triangle of neck','Y','2025-10-23 00:00:00'),(98371,11,'XA8JY7','Posterior ulnar recurrent artery','Y','2025-10-23 00:00:00'),(98372,11,'XA8HT6','Posterior vein of the left ventricle','Y','2025-10-23 00:00:00'),(98373,11,'9B81','Posterior vitreous detachment','Y','2025-10-23 00:00:00'),(98374,11,'XA2562','Posterior wall of bladder','Y','2025-10-23 00:00:00'),(98375,11,'XA4BR4','Posterior wall of nasopharynx','Y','2025-10-23 00:00:00'),(98376,11,'XA8659','Posterior wall of oropharynx','Y','2025-10-23 00:00:00'),(98377,11,'XA7D76','Posterobasal wall of heart','Y','2025-10-23 00:00:00'),(98378,11,'XA8PS0','Posterolateral artery','Y','2025-10-23 00:00:00'),(98379,11,'XA7MS4','Posterolateral lower thoracic region','Y','2025-10-23 00:00:00'),(98380,11,'XA5C28','Posterolateral upper thoracic region','Y','2025-10-23 00:00:00'),(98381,11,'XA4RC1','Posterolateral wall of heart','Y','2025-10-23 00:00:00'),(98382,11,'XA60V2','Posteroseptal wall of heart','Y','2025-10-23 00:00:00'),(98383,11,'DA08.15','Posteruptive colour changes of dental hard tissues','Y','2025-10-23 00:00:00'),(98384,11,'1E91.5','Postherpetic polyneuropathy','Y','2025-10-23 00:00:00'),(98385,11,'FA12','Postinfectious arthropathies','Y','2025-10-23 00:00:00'),(98386,11,'FA12.Z','Postinfectious arthropathies, unspecified','Y','2025-10-23 00:00:00'),(98387,11,'ED60.2','Postinflammatory hypermelanosis','Y','2025-10-23 00:00:00'),(98388,11,'ED63.2','Postinflammatory hypomelanosis','Y','2025-10-23 00:00:00'),(98389,11,'GC7B','Postinterventional ischemia or infarction of kidney','Y','2025-10-23 00:00:00'),(98390,11,'5D40.0','Postirridation hypothyroidism','Y','2025-10-23 00:00:00'),(98391,11,'5D40.0Z','Postirridation hypothyroidism, unspecified','Y','2025-10-23 00:00:00'),(98392,11,'FC01.3','Postlaminectomy kyphosis','Y','2025-10-23 00:00:00'),(98393,11,'FC01.1','Postlaminectomy syndrome, not elsewhere classified','Y','2025-10-23 00:00:00'),(98394,11,'BE1B.0','Postmastectomy lymphoedema syndrome','Y','2025-10-23 00:00:00'),(98395,11,'KA22.3','Postmaturity syndrome','Y','2025-10-23 00:00:00'),(98396,11,'GA30.2','Postmenopausal atrophic vaginitis','Y','2025-10-23 00:00:00'),(98397,11,'FB83.01','Postmenopausal osteopenia','Y','2025-10-23 00:00:00'),(98398,11,'FB83.11','Postmenopausal osteoporosis','Y','2025-10-23 00:00:00'),(98399,11,'GA30.1','Postmenopausal uterine bleeding','Y','2025-10-23 00:00:00'),(98400,11,'KB83','Postnatal gastric perforation','Y','2025-10-23 00:00:00'),(98401,11,'KC5Z','Postnatal iatrogenic skin injury, unspecified','Y','2025-10-23 00:00:00'),(98402,11,'KB86','Postnatal intestinal perforation','Y','2025-10-23 00:00:00'),(98403,11,'KB86.0','Postnatal intestinal perforation due to drugs','Y','2025-10-23 00:00:00'),(98404,11,'KB86.1','Postnatal intestinal perforation due to in utero volvulus','Y','2025-10-23 00:00:00'),(98405,11,'KB86.2','Postnatal intestinal perforation due to intestinal atresia or stenosis','Y','2025-10-23 00:00:00'),(98406,11,'KB86.3','Postnatal intestinal perforation due to intraluminal obstruction','Y','2025-10-23 00:00:00'),(98407,11,'KB86.Z','Postnatal intestinal perforation, unspecified','Y','2025-10-23 00:00:00'),(98408,11,'KB84','Postnatal isolated ileal perforation','Y','2025-10-23 00:00:00'),(98409,11,'FC01.9','Postoophorectomy osteoporosis','Y','2025-10-23 00:00:00'),(98410,11,'XY7V','Postoperative','Y','2025-10-23 00:00:00'),(98411,11,'GC70','Postoperative adhesions of vagina','Y','2025-10-23 00:00:00'),(98412,11,'XT4Z','Postpartum','Y','2025-10-23 00:00:00'),(98413,11,'JB44.4','Postpartum acute renal failure','Y','2025-10-23 00:00:00'),(98414,11,'QA48','Postpartum care or examination','Y','2025-10-23 00:00:00'),(98415,11,'QA48.Z','Postpartum care or examination, unspecified','Y','2025-10-23 00:00:00'),(98416,11,'JA43.3','Postpartum coagulation defects','Y','2025-10-23 00:00:00'),(98417,11,'XY9P','Postpartum condition or complication','Y','2025-10-23 00:00:00'),(98418,11,'JA43','Postpartum haemorrhage','Y','2025-10-23 00:00:00'),(98419,11,'JA43.4','Postpartum haemorrhage following obstructed labour with uterine rupture','Y','2025-10-23 00:00:00'),(98420,11,'JA43.5','Postpartum haemorrhage following obstructed labour without mention of uterine rupture','Y','2025-10-23 00:00:00'),(98421,11,'JA43.Z','Postpartum haemorrhage, unspecified','Y','2025-10-23 00:00:00'),(98422,11,'JB0A.2','Postpartum inversion of uterus','Y','2025-10-23 00:00:00'),(98423,11,'SC13','Postpartum lochiorrhea disorder (TM1)','Y','2025-10-23 00:00:00'),(98424,11,'MF35','Postpartum symptom or complaint','Y','2025-10-23 00:00:00'),(98425,11,'ED70.31','Postpartum telogen effluvium','Y','2025-10-23 00:00:00'),(98426,11,'JB44.5','Postpartum thyroiditis','Y','2025-10-23 00:00:00'),(98427,11,'GC78','Postprocedural acute female pelvic inflammatory disease','Y','2025-10-23 00:00:00'),(98428,11,'5D46','Postprocedural adrenocortical hypofunction','Y','2025-10-23 00:00:00'),(98429,11,'BE14.9','Postprocedural aortic disorder related to congenital heart anomaly','Y','2025-10-23 00:00:00'),(98430,11,'BE12.3','Postprocedural aortic valve insufficiency','Y','2025-10-23 00:00:00'),(98431,11,'BE12.2','Postprocedural aortic valve stenosis','Y','2025-10-23 00:00:00'),(98432,11,'BE14.A','Postprocedural arterial duct disorder','Y','2025-10-23 00:00:00'),(98433,11,'BE14.7','Postprocedural common atrioventricular valvar abnormality in double-inlet ventricle','Y','2025-10-23 00:00:00'),(98434,11,'BE14.B','Postprocedural disorder following cardiovascular conduit or shunt procedure','Y','2025-10-23 00:00:00'),(98435,11,'BE14','Postprocedural disorder of circulatory system following repair of congenital heart or great vessel anomaly','Y','2025-10-23 00:00:00'),(98436,11,'FC01','Postprocedural disorders of the musculoskeletal system','Y','2025-10-23 00:00:00'),(98437,11,'5D41','Postprocedural hypoinsulinaemia','Y','2025-10-23 00:00:00'),(98438,11,'5D42','Postprocedural hypoparathyroidism','Y','2025-10-23 00:00:00'),(98439,11,'5D43','Postprocedural hypopituitarism','Y','2025-10-23 00:00:00'),(98440,11,'5D40','Postprocedural hypothyroidism','Y','2025-10-23 00:00:00'),(98441,11,'5D40.Z','Postprocedural hypothyroidism, unspecified','Y','2025-10-23 00:00:00'),(98442,11,'BE1F','Postprocedural left atrial complication','Y','2025-10-23 00:00:00'),(98443,11,'BE1F.0','Postprocedural left atrial perforation','Y','2025-10-23 00:00:00'),(98444,11,'BE14.6','Postprocedural left-sided atrioventricular valvar abnormality in double-inlet ventricle','Y','2025-10-23 00:00:00'),(98445,11,'8E62','Postprocedural meningitis','Y','2025-10-23 00:00:00'),(98446,11,'BE12.1','Postprocedural mitral valve insufficiency','Y','2025-10-23 00:00:00'),(98447,11,'BE12.0','Postprocedural mitral valve stenosis','Y','2025-10-23 00:00:00'),(98448,11,'GC77','Postprocedural nonmenstrual uterine bleeding','Y','2025-10-23 00:00:00'),(98449,11,'5D44','Postprocedural ovarian failure','Y','2025-10-23 00:00:00'),(98450,11,'GC73','Postprocedural pelvic peritoneal adhesions','Y','2025-10-23 00:00:00'),(98451,11,'BE15','Postprocedural pulmonary arterial tree disorder','Y','2025-10-23 00:00:00'),(98452,11,'BE15.0','Postprocedural pulmonary trunk stenosis','Y','2025-10-23 00:00:00'),(98453,11,'BE12.7','Postprocedural pulmonary valve insufficiency','Y','2025-10-23 00:00:00'),(98454,11,'BE12.6','Postprocedural pulmonary valve stenosis','Y','2025-10-23 00:00:00'),(98455,11,'BE16','Postprocedural pulmonary venous disorder','Y','2025-10-23 00:00:00'),(98456,11,'BE17','Postprocedural residual or recurrent interatrial communication','Y','2025-10-23 00:00:00'),(98457,11,'BE1E','Postprocedural right atrial complication','Y','2025-10-23 00:00:00'),(98458,11,'BE1E.0','Postprocedural right atrial perforation','Y','2025-10-23 00:00:00'),(98459,11,'BE15.1','Postprocedural right pulmonary artery stenosis','Y','2025-10-23 00:00:00'),(98460,11,'BE14.5','Postprocedural right-sided atrioventricular valvar abnormality in double-inlet ventricle','Y','2025-10-23 00:00:00'),(98461,11,'CB63','Postprocedural stenosis of the trachea','Y','2025-10-23 00:00:00'),(98462,11,'CB62','Postprocedural subglottic stenosis','Y','2025-10-23 00:00:00'),(98463,11,'5D45','Postprocedural testicular hypofunction','Y','2025-10-23 00:00:00'),(98464,11,'BE12.5','Postprocedural tricuspid valve insufficiency','Y','2025-10-23 00:00:00'),(98465,11,'BE12.4','Postprocedural tricuspid valve stenosis','Y','2025-10-23 00:00:00'),(98466,11,'BE13','Postprocedural true or false aortic aneurysm','Y','2025-10-23 00:00:00'),(98467,11,'GC72','Postprocedural urethral stricture','Y','2025-10-23 00:00:00'),(98468,11,'BE12','Postprocedural valve disorders','Y','2025-10-23 00:00:00'),(98469,11,'BE19','Postprocedural ventricular abnormality','Y','2025-10-23 00:00:00'),(98470,11,'BE14.8','Postprocedural ventricular septal defect disorder','Y','2025-10-23 00:00:00'),(98471,11,'3B81.1','Postsurgical asplenia','Y','2025-10-23 00:00:00'),(98472,11,'NE81.3','Postsurgical leak','Y','2025-10-23 00:00:00'),(98473,11,'FC01.4','Postsurgical lordosis','Y','2025-10-23 00:00:00'),(98474,11,'FC01.A','Postsurgical malabsorption osteoporosis','Y','2025-10-23 00:00:00'),(98475,11,'DE13','Postsurgical malabsorption, not elsewhere classified','Y','2025-10-23 00:00:00'),(98476,11,'FC01.8','Postsurgical osteolysis','Y','2025-10-23 00:00:00'),(98477,11,'KA22.2','Post-term newborn','Y','2025-10-23 00:00:00'),(98478,11,'2B32.0','Post-transplant lymphoproliferative disorder, early lesion','Y','2025-10-23 00:00:00'),(98479,11,'2B32.2','Post-transplant lymphoproliferative disorder, Infectious mononucleosis-like','Y','2025-10-23 00:00:00'),(98480,11,'8D89.2','Postural orthostatic tachycardia syndrome','Y','2025-10-23 00:00:00'),(98481,11,'8E49','Postviral fatigue syndrome','Y','2025-10-23 00:00:00'),(98482,11,'XM3UT8','Potassic saline injection (lactated)','Y','2025-10-23 00:00:00'),(98483,11,'XM8278','Potassium','Y','2025-10-23 00:00:00'),(98484,11,'XM45S7','Potassium acetate','Y','2025-10-23 00:00:00'),(98485,11,'XM0Y25','Potassium aminobenzoate','Y','2025-10-23 00:00:00'),(98486,11,'XM3UQ6','Potassium aminosalicylate','Y','2025-10-23 00:00:00'),(98487,11,'XM10R8','Potassium antimony \' tartrate\'','Y','2025-10-23 00:00:00'),(98488,11,'XM4TW8','Potassium arsenite','Y','2025-10-23 00:00:00'),(98489,11,'XM56J9','Potassium bicarbonate','Y','2025-10-23 00:00:00'),(98490,11,'XM06D3','Potassium bisulfate','Y','2025-10-23 00:00:00'),(98491,11,'XM46S4','Potassium bitartrate','Y','2025-10-23 00:00:00'),(98492,11,'XM3YQ0','Potassium bromide','Y','2025-10-23 00:00:00'),(98493,11,'XM0ET8','Potassium canrenoate','Y','2025-10-23 00:00:00'),(98494,11,'XM8WC7','Potassium carbonate','Y','2025-10-23 00:00:00'),(98495,11,'XM7EN6','Potassium chlorate','Y','2025-10-23 00:00:00'),(98496,11,'XM0U09','Potassium chloride','Y','2025-10-23 00:00:00'),(98497,11,'XM7D96','Potassium citrate','Y','2025-10-23 00:00:00'),(98498,11,'XM36R8','Potassium clorazepate','Y','2025-10-23 00:00:00'),(98499,11,'XM1VD7','Potassium cyanide','Y','2025-10-23 00:00:00'),(98500,11,'XM0QY9','Potassium dichromate','Y','2025-10-23 00:00:00'),(98501,11,'XM6TE9','Potassium ferric hexacyanoferrate (medicinal)','Y','2025-10-23 00:00:00'),(98502,11,'XM2Q39','Potassium ferric hexacyanoferrate nonmedicinal','Y','2025-10-23 00:00:00'),(98503,11,'XM2SG3','Potassium Fluoride','Y','2025-10-23 00:00:00'),(98504,11,'XM7W08','Potassium glucaldrate','Y','2025-10-23 00:00:00'),(98505,11,'XM2P49','Potassium gluconate','Y','2025-10-23 00:00:00'),(98506,11,'XM5N47','Potassium hydroxide','Y','2025-10-23 00:00:00'),(98507,11,'XM58X1','Potassium iodate','Y','2025-10-23 00:00:00'),(98508,11,'XM1260','Potassium iodide','Y','2025-10-23 00:00:00'),(98509,11,'XM3T43','Potassium lactate','Y','2025-10-23 00:00:00'),(98510,11,'XM2G85','Potassium nitrate','Y','2025-10-23 00:00:00'),(98511,11,'XM03N8','Potassium oxalate','Y','2025-10-23 00:00:00'),(98512,11,'XM6V39','Potassium perchlorate antithyroid','Y','2025-10-23 00:00:00'),(98513,11,'XM9LL4','Potassium perchlorate medicinal','Y','2025-10-23 00:00:00'),(98514,11,'XM95X4','Potassium perchlorate nonmedicinal','Y','2025-10-23 00:00:00'),(98515,11,'XM0XP0','Potassium Permanganate medicinal','Y','2025-10-23 00:00:00'),(98516,11,'XM3VC7','Potassium permanganate nonmedicinal','Y','2025-10-23 00:00:00'),(98517,11,'XM4PX0','Potassium polysulfide','Y','2025-10-23 00:00:00'),(98518,11,'XM2CV1','Potassium salicylate','Y','2025-10-23 00:00:00'),(98519,11,'XM0H50','Potassium salts','Y','2025-10-23 00:00:00'),(98520,11,'XM5042','Potassium sulfate','Y','2025-10-23 00:00:00'),(98521,11,'XM03B7','Potassium-removing resin','Y','2025-10-23 00:00:00'),(98522,11,'XM5KE7','Potassium-retaining drug','Y','2025-10-23 00:00:00'),(98523,11,'XE52B','Potential arrest situation','Y','2025-10-23 00:00:00'),(98524,11,'XE0Y2','Potting component of medical device','Y','2025-10-23 00:00:00'),(98525,11,'XE9MB','Potty chair, training seat','Y','2025-10-23 00:00:00'),(98526,11,'QD50','Poverty','Y','2025-10-23 00:00:00'),(98527,11,'MB23.K','Poverty of speech','Y','2025-10-23 00:00:00'),(98528,11,'XM24J7','Povidone iodine','Y','2025-10-23 00:00:00'),(98529,11,'XE4XJ','Power cord component of medical device','Y','2025-10-23 00:00:00'),(98530,11,'XE7RB','Power fluctuation in device','Y','2025-10-23 00:00:00'),(98531,11,'XE2B3','Power problem','Y','2025-10-23 00:00:00'),(98532,11,'XE0KB','Power source problem identified in device','Y','2025-10-23 00:00:00'),(98533,11,'XE1EU','Power sports','Y','2025-10-23 00:00:00'),(98534,11,'XE8Q1','Power station','Y','2025-10-23 00:00:00'),(98535,11,'XE4Q4','Power supply component of medical device','Y','2025-10-23 00:00:00'),(98536,11,'XE1EF','Power switch component of medical device','Y','2025-10-23 00:00:00'),(98537,11,'XE2UU','Powered aircraft as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(98538,11,'XE9LQ','Powered aircraft or means of air transport','Y','2025-10-23 00:00:00'),(98539,11,'XE59P','Powered amusement rides','Y','2025-10-23 00:00:00'),(98540,11,'XE7Z3','Powered cleaning tool, not elsewhere classified','Y','2025-10-23 00:00:00'),(98541,11,'XE8T6','Powered garden tool','Y','2025-10-23 00:00:00'),(98542,11,'XE5WX','Powered hand tool or equipment','Y','2025-10-23 00:00:00'),(98543,11,'XE02T','Powered knife','Y','2025-10-23 00:00:00'),(98544,11,'XE89A','Powered push lawn mower','Y','2025-10-23 00:00:00'),(98545,11,'XE70T','Powered watercraft or means of water transport','Y','2025-10-23 00:00:00'),(98546,11,'XN7UC','Poxvirus','Y','2025-10-23 00:00:00'),(98547,11,'XM0AK0','p-Phenylenediamine','Y','2025-10-23 00:00:00'),(98548,11,'XM9VG1','Practolol','Y','2025-10-23 00:00:00'),(98549,11,'LD90.3','Prader-Willi syndrome','Y','2025-10-23 00:00:00'),(98550,11,'XM8MU5','Prairie rattlesnake venom','Y','2025-10-23 00:00:00'),(98551,11,'XM6FW1','Prajmaline','Y','2025-10-23 00:00:00'),(98552,11,'XM64X0','Prajmalium bitartrate','Y','2025-10-23 00:00:00'),(98553,11,'XM06R0','Pralatrexate','Y','2025-10-23 00:00:00'),(98554,11,'XM2ZD4','Pralidoxime','Y','2025-10-23 00:00:00'),(98555,11,'XM6BZ5','Pralidoxime chloride','Y','2025-10-23 00:00:00'),(98556,11,'XM7K47','Pralidoxime iodide','Y','2025-10-23 00:00:00'),(98557,11,'XM4AC0','Prallethrin','Y','2025-10-23 00:00:00'),(98558,11,'XM1UG8','Pralsetinib','Y','2025-10-23 00:00:00'),(98559,11,'XM5YJ4','Pramipexole','Y','2025-10-23 00:00:00'),(98560,11,'XM59Z4','Pramiracetam','Y','2025-10-23 00:00:00'),(98561,11,'XM7711','Pramiverine','Y','2025-10-23 00:00:00'),(98562,11,'XM62R6','Pramlintide','Y','2025-10-23 00:00:00'),(98563,11,'XM8485','Pramoxine','Y','2025-10-23 00:00:00'),(98564,11,'XM1C43','Pranlukast','Y','2025-10-23 00:00:00'),(98565,11,'XM9166','Pranoprofen','Y','2025-10-23 00:00:00'),(98566,11,'XM5Q72','Prasterone','Y','2025-10-23 00:00:00'),(98567,11,'XM8LN2','Prasugrel','Y','2025-10-23 00:00:00'),(98568,11,'XM7SM7','Pravastatin','Y','2025-10-23 00:00:00'),(98569,11,'XM4M86','Prazepam','Y','2025-10-23 00:00:00'),(98570,11,'XM8205','Praziquantel','Y','2025-10-23 00:00:00'),(98571,11,'XM4WM9','Prazitone','Y','2025-10-23 00:00:00'),(98572,11,'XM45W7','Prazosin','Y','2025-10-23 00:00:00'),(98573,11,'XE83B','Pre-analytical handling problem with device identified','Y','2025-10-23 00:00:00'),(98574,11,'XA4WV3','Preaortic lymph node','Y','2025-10-23 00:00:00'),(98575,11,'XA56J5','Preauricular lymph node','Y','2025-10-23 00:00:00'),(98576,11,'XA0SU2','Preauricular region','Y','2025-10-23 00:00:00'),(98577,11,'XH41F9','Precancerous melanosis, NOS','Y','2025-10-23 00:00:00'),(98578,11,'XE4VP','Precipitate in device or device ingredient','Y','2025-10-23 00:00:00'),(98579,11,'JB02.3','Precipitate labour','Y','2025-10-23 00:00:00'),(98580,11,'MC86','Precordial pain','Y','2025-10-23 00:00:00'),(98581,11,'XA2RT1','Precordium','Y','2025-10-23 00:00:00'),(98582,11,'2A70','Precursor B-lymphoblastic neoplasms','Y','2025-10-23 00:00:00'),(98583,11,'XH5J37','Precursor cell lymphoblastic leukaemia, NOS','Y','2025-10-23 00:00:00'),(98584,11,'XH2216','Precursor cell lymphoblastic lymphoma','Y','2025-10-23 00:00:00'),(98585,11,'XH14N1','Precursor cell lymphoblastic lymphoma, NOS','Y','2025-10-23 00:00:00'),(98586,11,'2A7Z','Precursor lymphoid neoplasms, unspecified','Y','2025-10-23 00:00:00'),(98587,11,'XH7T28','Precursor T-cell lymphoblastic leukaemia','Y','2025-10-23 00:00:00'),(98588,11,'2A71','Precursor T-lymphoblastic neoplasms','Y','2025-10-23 00:00:00'),(98589,11,'XM0ME0','Prednicarbate','Y','2025-10-23 00:00:00'),(98590,11,'XM4NR8','Prednimustine','Y','2025-10-23 00:00:00'),(98591,11,'XM6JJ4','Prednisolone','Y','2025-10-23 00:00:00'),(98592,11,'XM5VJ5','Prednisolone and Promethazine','Y','2025-10-23 00:00:00'),(98593,11,'XM1B59','Prednisolone steaglate','Y','2025-10-23 00:00:00'),(98594,11,'XM09Z4','Prednisolone topical','Y','2025-10-23 00:00:00'),(98595,11,'XM39W4','Prednisone','Y','2025-10-23 00:00:00'),(98596,11,'XM3YJ1','Prednylidene','Y','2025-10-23 00:00:00'),(98597,11,'XM3LR7','Predominantly alpha-adrenoreceptor agonists','Y','2025-10-23 00:00:00'),(98598,11,'XM1K71','Predominantly alpha-adrenoreceptor and dopamine receptor agonists','Y','2025-10-23 00:00:00'),(98599,11,'1A9Z','Predominantly sexually transmitted infections, unspecified','Y','2025-10-23 00:00:00'),(98600,11,'JA24','Pre-eclampsia','Y','2025-10-23 00:00:00'),(98601,11,'JA21','Pre-eclampsia superimposed on chronic hypertension','Y','2025-10-23 00:00:00'),(98602,11,'JA24.Z','Pre-eclampsia, unspecified','Y','2025-10-23 00:00:00'),(98603,11,'QA01.1','Pre-employment examination','Y','2025-10-23 00:00:00'),(98604,11,'BC81.33','Preexcited atrial fibrillation','Y','2025-10-23 00:00:00'),(98605,11,'JA20.0','Pre-existing essential hypertension complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(98606,11,'JA20','Pre-existing hypertension complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(98607,11,'JA20.Z','Pre-existing hypertension complicating pregnancy, childbirth or the puerperium, unspecified','Y','2025-10-23 00:00:00'),(98608,11,'JA20.3','Pre-existing hypertensive heart and renal disease complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(98609,11,'JA20.1','Pre-existing hypertensive heart disease complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(98610,11,'JA20.2','Pre-existing hypertensive renal disease complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(98611,11,'JA20.4','Pre-existing secondary hypertension complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(98612,11,'JA63.0','Pre-existing type 1 diabetes mellitus in pregnancy','Y','2025-10-23 00:00:00'),(98613,11,'JA63.1','Pre-existing type 2 diabetes mellitus in pregnancy','Y','2025-10-23 00:00:00'),(98614,11,'XM0AK1','Pregabalin','Y','2025-10-23 00:00:00'),(98615,11,'9B02.1','Pregeniculate light-near dissociations','Y','2025-10-23 00:00:00'),(98616,11,'XT0S','Pregnancy','Y','2025-10-23 00:00:00'),(98617,11,'SC0Z','Pregnancy associated disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(98618,11,'JA65.4','Pregnancy care of habitual aborter','Y','2025-10-23 00:00:00'),(98619,11,'JA65.1','Pregnancy dermatoses','Y','2025-10-23 00:00:00'),(98620,11,'QA40','Pregnancy examination or test','Y','2025-10-23 00:00:00'),(98621,11,'MF34','Pregnancy symptom or complaint','Y','2025-10-23 00:00:00'),(98622,11,'XM1K26','Pregnandiol','Y','2025-10-23 00:00:00'),(98623,11,'QA41','Pregnant state','Y','2025-10-23 00:00:00'),(98624,11,'XA2RE9','Prelaryngeal lymph node','Y','2025-10-23 00:00:00'),(98625,11,'XE6E9','Premature activation','Y','2025-10-23 00:00:00'),(98626,11,'5A76.0','Premature adrenarche','Y','2025-10-23 00:00:00'),(98627,11,'ED73.10','Premature canities','Y','2025-10-23 00:00:00'),(98628,11,'XE5U8','Premature discharge of battery','Y','2025-10-23 00:00:00'),(98629,11,'SB08','Premature ejaculation disorder (TM1)','Y','2025-10-23 00:00:00'),(98630,11,'XE6KH','Premature elective replacement indicator','Y','2025-10-23 00:00:00'),(98631,11,'XE6ND','Premature end-of-life indicator','Y','2025-10-23 00:00:00'),(98632,11,'XE1H0','Premature indicator activation','Y','2025-10-23 00:00:00'),(98633,11,'XE2FY','Premature indicator activation problem identified','Y','2025-10-23 00:00:00'),(98634,11,'GA30.6','Premature ovarian failure','Y','2025-10-23 00:00:00'),(98635,11,'JA89.2','Premature rupture of membranes, labour delayed by therapy','Y','2025-10-23 00:00:00'),(98636,11,'JA89.1','Premature rupture of membranes, onset of labour after 24 hours','Y','2025-10-23 00:00:00'),(98637,11,'JA89.0','Premature rupture of membranes, onset of labour within 24 hours','Y','2025-10-23 00:00:00'),(98638,11,'XE1TT','Premature separation of device','Y','2025-10-23 00:00:00'),(98639,11,'JA8C.0','Premature separation of placenta with coagulation defect','Y','2025-10-23 00:00:00'),(98640,11,'FB83.00','Premenopausal idiopathic osteopenia','Y','2025-10-23 00:00:00'),(98641,11,'FB83.10','Premenopausal idiopathic osteoporosis','Y','2025-10-23 00:00:00'),(98642,11,'GA34.4','Premenstrual disturbances','Y','2025-10-23 00:00:00'),(98643,11,'GA34.4Z','Premenstrual disturbances, unspecified','Y','2025-10-23 00:00:00'),(98644,11,'GA34.41','Premenstrual dysphoric disorder','Y','2025-10-23 00:00:00'),(98645,11,'MF33','Premenstrual symptom or complaint','Y','2025-10-23 00:00:00'),(98646,11,'GA34.40','Premenstrual tension syndrome','Y','2025-10-23 00:00:00'),(98647,11,'XM18Q9','Prenalterol','Y','2025-10-23 00:00:00'),(98648,11,'KB82','Prenatal gastric perforation','Y','2025-10-23 00:00:00'),(98649,11,'KB85','Prenatal intrauterine intestinal perforation','Y','2025-10-23 00:00:00'),(98650,11,'KB85.0','Prenatal intrauterine intestinal perforation due to in utero volvulus','Y','2025-10-23 00:00:00'),(98651,11,'KB85.1','Prenatal intrauterine intestinal perforation due to intestinal atresia or stenosis','Y','2025-10-23 00:00:00'),(98652,11,'KB85.2','Prenatal intrauterine intestinal perforation due to intraluminal obstruction','Y','2025-10-23 00:00:00'),(98653,11,'KB85.Z','Prenatal intrauterine intestinal perforation, unspecified','Y','2025-10-23 00:00:00'),(98654,11,'XM8JR1','Prenoxdiazine','Y','2025-10-23 00:00:00'),(98655,11,'XM4K89','Prenylamine','Y','2025-10-23 00:00:00'),(98656,11,'XS7R','Pre-obesity BMI 25.0','Y','2025-10-23 00:00:00'),(98657,11,'XY9U','Preoperative','Y','2025-10-23 00:00:00'),(98658,11,'XM3403','Preparation H','Y','2025-10-23 00:00:00'),(98659,11,'XM7F05','Preparations increasing uric acid excretion','Y','2025-10-23 00:00:00'),(98660,11,'XM2ZB4','Preparations inhibiting uric acid production','Y','2025-10-23 00:00:00'),(98661,11,'QB94.0','Preparatory care for dialysis','Y','2025-10-23 00:00:00'),(98662,11,'QB9A','Preparatory care for subsequent treatment','Y','2025-10-23 00:00:00'),(98663,11,'VW30','Preparing meals','Y','2025-10-23 00:00:00'),(98664,11,'QA0B','Preprocedural examination','Y','2025-10-23 00:00:00'),(98665,11,'XA71S4','Prepuce','Y','2025-10-23 00:00:00'),(98666,11,'XA1JE5','Presacral plexus','Y','2025-10-23 00:00:00'),(98667,11,'XA53A7','Presacral region','Y','2025-10-23 00:00:00'),(98668,11,'AB54','Presbycusis','Y','2025-10-23 00:00:00'),(98669,11,'9D00.3','Presbyopia','Y','2025-10-23 00:00:00'),(98670,11,'XE9LH','Preschool or kindergarten','Y','2025-10-23 00:00:00'),(98671,11,'QB51.0','Presence of a neurostimulator','Y','2025-10-23 00:00:00'),(98672,11,'QB50.1','Presence of aortocoronary bypass graft','Y','2025-10-23 00:00:00'),(98673,11,'QB60','Presence of arthrodesis','Y','2025-10-23 00:00:00'),(98674,11,'QB51.8','Presence of artificial eye','Y','2025-10-23 00:00:00'),(98675,11,'QB51.4','Presence of artificial larynx','Y','2025-10-23 00:00:00'),(98676,11,'QB51.9','Presence of artificial limb','Y','2025-10-23 00:00:00'),(98677,11,'QB61','Presence of artificial opening','Y','2025-10-23 00:00:00'),(98678,11,'QB61.Z','Presence of artificial opening, unspecified','Y','2025-10-23 00:00:00'),(98679,11,'QB50','Presence of cardiac or vascular implants or grafts','Y','2025-10-23 00:00:00'),(98680,11,'QB50.00','Presence of cardiac pacemaker','Y','2025-10-23 00:00:00'),(98681,11,'QB50.01','Presence of cardiac resynchronization therapy defibrillator','Y','2025-10-23 00:00:00'),(98682,11,'QB50.02','Presence of cardiac resynchronization therapy pacemaker','Y','2025-10-23 00:00:00'),(98683,11,'QB50.03','Presence of cardioverter-defibrillator','Y','2025-10-23 00:00:00'),(98684,11,'QB51.D','Presence of cerebrospinal fluid drainage device','Y','2025-10-23 00:00:00'),(98685,11,'QB61.4','Presence of colostomy','Y','2025-10-23 00:00:00'),(98686,11,'QB51.C','Presence of contraceptive device','Y','2025-10-23 00:00:00'),(98687,11,'QB50.4','Presence of coronary angioplasty implant or graft','Y','2025-10-23 00:00:00'),(98688,11,'QB61.5','Presence of cystostomy','Y','2025-10-23 00:00:00'),(98689,11,'QB51.A','Presence of dental prosthetic device','Y','2025-10-23 00:00:00'),(98690,11,'QB51','Presence of devices other than cardiac or vascular implants','Y','2025-10-23 00:00:00'),(98691,11,'QB50.0','Presence of electronic cardiac devices','Y','2025-10-23 00:00:00'),(98692,11,'QB50.0Z','Presence of electronic cardiac devices, unspecified','Y','2025-10-23 00:00:00'),(98693,11,'QB51.5','Presence of endocrine implants','Y','2025-10-23 00:00:00'),(98694,11,'QB61.3','Presence of enterostomy','Y','2025-10-23 00:00:00'),(98695,11,'QB61.3Z','Presence of enterostomy, unspecified','Y','2025-10-23 00:00:00'),(98696,11,'QB51.B','Presence of external hearing-aid','Y','2025-10-23 00:00:00'),(98697,11,'QB61.2','Presence of gastrostomy','Y','2025-10-23 00:00:00'),(98698,11,'QB61.30','Presence of ileostomy','Y','2025-10-23 00:00:00'),(98699,11,'QB51.2','Presence of intraocular lens','Y','2025-10-23 00:00:00'),(98700,11,'QB61.6','Presence of nephrostomy','Y','2025-10-23 00:00:00'),(98701,11,'QB51.7','Presence of orthopaedic joint implants','Y','2025-10-23 00:00:00'),(98702,11,'QB61.Y','Presence of other artificial opening','Y','2025-10-23 00:00:00'),(98703,11,'QB50.Y','Presence of other specified cardiac or vascular implants or grafts','Y','2025-10-23 00:00:00'),(98704,11,'QB51.Y','Presence of other specified devices other than cardiac or vascular implants','Y','2025-10-23 00:00:00'),(98705,11,'QB63.Y','Presence of other transplanted organ or tissue','Y','2025-10-23 00:00:00'),(98706,11,'QB51.3','Presence of otological or audiological implants','Y','2025-10-23 00:00:00'),(98707,11,'QB50.2','Presence of prosthetic heart valve','Y','2025-10-23 00:00:00'),(98708,11,'QB61.1','Presence of thoracostomy','Y','2025-10-23 00:00:00'),(98709,11,'QB51.6','Presence of tooth-root or mandibular implants','Y','2025-10-23 00:00:00'),(98710,11,'QB61.0','Presence of tracheostomy','Y','2025-10-23 00:00:00'),(98711,11,'QB63.7','Presence of transfused blood','Y','2025-10-23 00:00:00'),(98712,11,'QB63.5','Presence of transplanted bone','Y','2025-10-23 00:00:00'),(98713,11,'QB63.6','Presence of transplanted bone marrow','Y','2025-10-23 00:00:00'),(98714,11,'QB63.9','Presence of transplanted cornea','Y','2025-10-23 00:00:00'),(98715,11,'QB63.1','Presence of transplanted heart','Y','2025-10-23 00:00:00'),(98716,11,'QB63.0','Presence of transplanted kidney','Y','2025-10-23 00:00:00'),(98717,11,'QB63.3','Presence of transplanted liver','Y','2025-10-23 00:00:00'),(98718,11,'QB63.2','Presence of transplanted lung','Y','2025-10-23 00:00:00'),(98719,11,'QB63','Presence of transplanted organ or tissue','Y','2025-10-23 00:00:00'),(98720,11,'QB63.Z','Presence of transplanted organ or tissue, unspecified','Y','2025-10-23 00:00:00'),(98721,11,'QB63.4','Presence of transplanted skin','Y','2025-10-23 00:00:00'),(98722,11,'QB63.8','Presence of transplanted stem cell','Y','2025-10-23 00:00:00'),(98723,11,'QB50.Z','Presence of unspecified cardiac or vascular implants or grafts','Y','2025-10-23 00:00:00'),(98724,11,'QB5Z','Presence of unspecified device','Y','2025-10-23 00:00:00'),(98725,11,'QB61.7','Presence of ureterostomy','Y','2025-10-23 00:00:00'),(98726,11,'QB61.8','Presence of urethrostomy','Y','2025-10-23 00:00:00'),(98727,11,'QB51.1','Presence of urogenital implants','Y','2025-10-23 00:00:00'),(98728,11,'QB50.3','Presence of xenogenic heart valve','Y','2025-10-23 00:00:00'),(98729,11,'XY6M','Present on admission','Y','2025-10-23 00:00:00'),(98730,11,'9A01.0','Preseptal cellulitis','Y','2025-10-23 00:00:00'),(98731,11,'XE6AF','Press','Y','2025-10-23 00:00:00'),(98732,11,'QA53','Pressure as potential mode of injury without injury or harm','Y','2025-10-23 00:00:00'),(98733,11,'XE50Y','Pressure cooker','Y','2025-10-23 00:00:00'),(98734,11,'MC87','Pressure or tightness of heart','Y','2025-10-23 00:00:00'),(98735,11,'XE8Z5','Pressure problem','Y','2025-10-23 00:00:00'),(98736,11,'XE5WR','Pressure sensor component of medical device','Y','2025-10-23 00:00:00'),(98737,11,'XE7EJ','Pressure transducer probe component of medical device','Y','2025-10-23 00:00:00'),(98738,11,'EH90.Z','Pressure ulcer of unspecified grade','Y','2025-10-23 00:00:00'),(98739,11,'EH90','Pressure ulceration','Y','2025-10-23 00:00:00'),(98740,11,'EH90.0','Pressure ulceration grade 1','Y','2025-10-23 00:00:00'),(98741,11,'EH90.1','Pressure ulceration grade 2','Y','2025-10-23 00:00:00'),(98742,11,'EH90.2','Pressure ulceration grade 3','Y','2025-10-23 00:00:00'),(98743,11,'EH90.3','Pressure ulceration grade 4','Y','2025-10-23 00:00:00'),(98744,11,'EH90.5','Pressure ulceration, ungradable','Y','2025-10-23 00:00:00'),(98745,11,'PL11.6','Pressure, as mode of injury or harm','Y','2025-10-23 00:00:00'),(98746,11,'XE9N7','Pressure-based equipment','Y','2025-10-23 00:00:00'),(98747,11,'MB23.L','Pressured speech','Y','2025-10-23 00:00:00'),(98748,11,'XE974','Pressurised hose, pipe','Y','2025-10-23 00:00:00'),(98749,11,'XE464','Pressurised kerosene or paraffin cooking stove','Y','2025-10-23 00:00:00'),(98750,11,'XA5MS8','Presternal region','Y','2025-10-23 00:00:00'),(98751,11,'XA32C4','Presymphysial lymph node','Y','2025-10-23 00:00:00'),(98752,11,'MB48.4','Presyncope','Y','2025-10-23 00:00:00'),(98753,11,'JB00.3','Preterm delivery following iatrogenic induction of labour or caesarean section','Y','2025-10-23 00:00:00'),(98754,11,'JB00','Preterm labour or delivery','Y','2025-10-23 00:00:00'),(98755,11,'JB00.Z','Preterm labour or delivery, unspecified','Y','2025-10-23 00:00:00'),(98756,11,'JB00.2','Preterm labour with term delivery','Y','2025-10-23 00:00:00'),(98757,11,'JB00.0','Preterm labour without delivery','Y','2025-10-23 00:00:00'),(98758,11,'KA21.4','Preterm newborn','Y','2025-10-23 00:00:00'),(98759,11,'KA21.40','Preterm newborn, gestational age 28 completed weeks','Y','2025-10-23 00:00:00'),(98760,11,'KA21.41','Preterm newborn, gestational age 29 completed weeks','Y','2025-10-23 00:00:00'),(98761,11,'KA21.42','Preterm newborn, gestational age 30 completed weeks','Y','2025-10-23 00:00:00'),(98762,11,'KA21.43','Preterm newborn, gestational age 31 completed weeks','Y','2025-10-23 00:00:00'),(98763,11,'KA21.44','Preterm newborn, gestational age 32 completed weeks','Y','2025-10-23 00:00:00'),(98764,11,'KA21.45','Preterm newborn, gestational age 33 completed weeks','Y','2025-10-23 00:00:00'),(98765,11,'KA21.46','Preterm newborn, gestational age 34 completed weeks','Y','2025-10-23 00:00:00'),(98766,11,'KA21.47','Preterm newborn, gestational age 35 completed weeks','Y','2025-10-23 00:00:00'),(98767,11,'KA21.48','Preterm newborn, gestational age 36 completed weeks','Y','2025-10-23 00:00:00'),(98768,11,'KA21.4Z','Preterm newborn, unspecified','Y','2025-10-23 00:00:00'),(98769,11,'JA89.3','Preterm premature rupture of membranes','Y','2025-10-23 00:00:00'),(98770,11,'JB00.1','Preterm spontaneous labour with preterm delivery','Y','2025-10-23 00:00:00'),(98771,11,'XA3TX6','Preterminal colic lymph node','Y','2025-10-23 00:00:00'),(98772,11,'XM4901','Prethcamide','Y','2025-10-23 00:00:00'),(98773,11,'EB90.10','Pretibial myxoedema','Y','2025-10-23 00:00:00'),(98774,11,'XA4LC1','Pretracheal lymph node','Y','2025-10-23 00:00:00'),(98775,11,'XE76W','Previous suicide attempt, No','Y','2025-10-23 00:00:00'),(98776,11,'XE3YR','Previous suicide attempt, Yes','Y','2025-10-23 00:00:00'),(98777,11,'GB06.1','Priapism','Y','2025-10-23 00:00:00'),(98778,11,'XM26R3','Pridinol','Y','2025-10-23 00:00:00'),(98779,11,'XM6X69','Prifinium bromide','Y','2025-10-23 00:00:00'),(98780,11,'XM2X66','Prilocaine','Y','2025-10-23 00:00:00'),(98781,11,'XM9NH0','Prilocaine infiltration','Y','2025-10-23 00:00:00'),(98782,11,'XM85Q7','Prilocaine nerve block','Y','2025-10-23 00:00:00'),(98783,11,'XM4EE1','Prilocaine regional','Y','2025-10-23 00:00:00'),(98784,11,'XM9F55','Primaquine','Y','2025-10-23 00:00:00'),(98785,11,'GA20.00','Primary amenorrhoea','Y','2025-10-23 00:00:00'),(98786,11,'1A61.1','Primary anal syphilis','Y','2025-10-23 00:00:00'),(98787,11,'4A44.7','Primary angiitis of the central nervous system','Y','2025-10-23 00:00:00'),(98788,11,'9C61.1','Primary angle closure and angle closure glaucoma','Y','2025-10-23 00:00:00'),(98789,11,'9C61.1Z','Primary angle closure and angle closure glaucoma, unspecified','Y','2025-10-23 00:00:00'),(98790,11,'9C61.12','Primary angle closure glaucoma','Y','2025-10-23 00:00:00'),(98791,11,'9C61.10','Primary angle closure suspect or anatomical narrow angle','Y','2025-10-23 00:00:00'),(98792,11,'9C61.13','Primary angle closure without pupillary block','Y','2025-10-23 00:00:00'),(98793,11,'9C61.11','Primary angle-closure','Y','2025-10-23 00:00:00'),(98794,11,'9A96.3','Primary anterior uveitis','Y','2025-10-23 00:00:00'),(98795,11,'4A45.0','Primary antiphospholipid syndrome','Y','2025-10-23 00:00:00'),(98796,11,'KB2B','Primary atelectasis of newborn','Y','2025-10-23 00:00:00'),(98797,11,'DB96.1','Primary biliary cholangitis','Y','2025-10-23 00:00:00'),(98798,11,'DB96.10','Primary biliary cholangitis with overlap syndrome','Y','2025-10-23 00:00:00'),(98799,11,'DB96.1Z','Primary biliary cholangitis, unspecified','Y','2025-10-23 00:00:00'),(98800,11,'NB91.82','Primary blast injury of colon','Y','2025-10-23 00:00:00'),(98801,11,'NB91.62','Primary blast injury of duodenum','Y','2025-10-23 00:00:00'),(98802,11,'NB32.33','Primary blast injury of lung','Y','2025-10-23 00:00:00'),(98803,11,'NB91.92','Primary blast injury of rectum','Y','2025-10-23 00:00:00'),(98804,11,'NB91.72','Primary blast injury of small intestine','Y','2025-10-23 00:00:00'),(98805,11,'7A40.0','Primary central sleep apnoea','Y','2025-10-23 00:00:00'),(98806,11,'7A40.1','Primary central sleep apnoea of infancy','Y','2025-10-23 00:00:00'),(98807,11,'7A40.2','Primary central sleep apnoea of prematurity','Y','2025-10-23 00:00:00'),(98808,11,'8B22.70','Primary cerebral arteritis','Y','2025-10-23 00:00:00'),(98809,11,'XH6JB5','Primary choroidal lymphoma','Y','2025-10-23 00:00:00'),(98810,11,'9C61.40','Primary congenital glaucoma','Y','2025-10-23 00:00:00'),(98811,11,'XH7S84','Primary cutaneous acral CD8 positive T-cell lymphoma','Y','2025-10-23 00:00:00'),(98812,11,'1C10.3','Primary cutaneous actinomycosis','Y','2025-10-23 00:00:00'),(98813,11,'2B03.0','Primary cutaneous CD30 positive anaplastic large cell lymphoma','Y','2025-10-23 00:00:00'),(98814,11,'2B03','Primary cutaneous CD-30 positive T-cell lymphoproliferative disorders','Y','2025-10-23 00:00:00'),(98815,11,'XH40C0','Primary cutaneous CD30+ T-cell lymphoproliferative disorder','Y','2025-10-23 00:00:00'),(98816,11,'XH3QE7','Primary cutaneous CD4 positive small/medium T-cell lymphoproliferative disorder','Y','2025-10-23 00:00:00'),(98817,11,'XH7EL2','Primary cutaneous CD4-positive small/medium T-cell lymphoma','Y','2025-10-23 00:00:00'),(98818,11,'XH2513','Primary cutaneous CD8-positive aggressive epidermotropic cytotoxic T-cell lymphoma','Y','2025-10-23 00:00:00'),(98819,11,'1F25.11','Primary cutaneous coccidioidomycosis','Y','2025-10-23 00:00:00'),(98820,11,'2A81.A','Primary cutaneous diffuse large B-cell lymphoma, leg type','Y','2025-10-23 00:00:00'),(98821,11,'XH8657','Primary cutaneous DLBCL, leg type','Y','2025-10-23 00:00:00'),(98822,11,'2A80.3','Primary cutaneous follicle centre lymphoma','Y','2025-10-23 00:00:00'),(98823,11,'XH1FZ7','Primary cutaneous follicle centre lymphoma','Y','2025-10-23 00:00:00'),(98824,11,'XH84A5','Primary cutaneous gamma-delta T-cell lymphoma','Y','2025-10-23 00:00:00'),(98825,11,'EK91.2','Primary cutaneous plasmacytosis','Y','2025-10-23 00:00:00'),(98826,11,'2B0Z','Primary cutaneous T-cell lymphoma of undetermined or unspecified type','Y','2025-10-23 00:00:00'),(98827,11,'2A81.5','Primary diffuse large B-cell lymphoma of central nervous system','Y','2025-10-23 00:00:00'),(98828,11,'XH2MP0','Primary diffuse large B-cell lymphoma of CNS','Y','2025-10-23 00:00:00'),(98829,11,'8C7Z','Primary disorders of muscles, unspecified','Y','2025-10-23 00:00:00'),(98830,11,'8A02.0','Primary dystonia','Y','2025-10-23 00:00:00'),(98831,11,'8A02.0Z','Primary dystonia, unspecified','Y','2025-10-23 00:00:00'),(98832,11,'XH2LN1','Primary effusion lymphoma','Y','2025-10-23 00:00:00'),(98833,11,'2A81.9','Primary effusion lymphoma','Y','2025-10-23 00:00:00'),(98834,11,'GA31.0','Primary female infertility','Y','2025-10-23 00:00:00'),(98835,11,'GA31.0Y','Primary female infertility of other specified origin','Y','2025-10-23 00:00:00'),(98836,11,'GA31.01','Primary female infertility of tubal origin','Y','2025-10-23 00:00:00'),(98837,11,'GA31.0Z','Primary female infertility of unspecified origin','Y','2025-10-23 00:00:00'),(98838,11,'GA31.00','Primary female infertility of uterine origin','Y','2025-10-23 00:00:00'),(98839,11,'EE00.1','Primary generalised hyperhidrosis','Y','2025-10-23 00:00:00'),(98840,11,'1A61.0','Primary genital syphilis','Y','2025-10-23 00:00:00'),(98841,11,'FA25.0','Primary gout','Y','2025-10-23 00:00:00'),(98842,11,'4A01.23','Primary haemophagocytic lymphohistiocytosis','Y','2025-10-23 00:00:00'),(98843,11,'5A72.0','Primary hyperaldosteronism','Y','2025-10-23 00:00:00'),(98844,11,'5C80.00','Primary hypercholesterolaemia','Y','2025-10-23 00:00:00'),(98845,11,'5C51.20','Primary hyperoxaluria type 1','Y','2025-10-23 00:00:00'),(98846,11,'5A51.0','Primary hyperparathyroidism','Y','2025-10-23 00:00:00'),(98847,11,'4A01','Primary immunodeficiencies due to disorders of adaptive immunity','Y','2025-10-23 00:00:00'),(98848,11,'4A01.Z','Primary immunodeficiencies due to disorders of adaptive immunity, unspecified','Y','2025-10-23 00:00:00'),(98849,11,'4A00','Primary immunodeficiencies due to disorders of innate immunity','Y','2025-10-23 00:00:00'),(98850,11,'4A00.Z','Primary immunodeficiencies due to disorders of innate immunity, unspecified','Y','2025-10-23 00:00:00'),(98851,11,'4A0Z','Primary immunodeficiencies, unspecified','Y','2025-10-23 00:00:00'),(98852,11,'9C61.41','Primary infantile glaucoma','Y','2025-10-23 00:00:00'),(98853,11,'3A80.0','Primary inherited erythrocytosis','Y','2025-10-23 00:00:00'),(98854,11,'CB04','Primary interstitial lung diseases specific to infancy or childhood','Y','2025-10-23 00:00:00'),(98855,11,'CB04.Z','Primary interstitial lung diseases specific to infancy or childhood, unspecified','Y','2025-10-23 00:00:00'),(98856,11,'DD50.20','Primary intra-abdominal hernia','Y','2025-10-23 00:00:00'),(98857,11,'EH40.10','Primary irritant napkin dermatitis','Y','2025-10-23 00:00:00'),(98858,11,'5C61.60','Primary lactase deficiency','Y','2025-10-23 00:00:00'),(98859,11,'8B60.4','Primary lateral sclerosis','Y','2025-10-23 00:00:00'),(98860,11,'1C1E.0','Primary lesions of pinta','Y','2025-10-23 00:00:00'),(98861,11,'BD93.0','Primary lymphoedema','Y','2025-10-23 00:00:00'),(98862,11,'2A01.00','Primary malignant meningioma','Y','2025-10-23 00:00:00'),(98863,11,'2A81.0','Primary mediastinal large B-cell lymphoma','Y','2025-10-23 00:00:00'),(98864,11,'XH0353','Primary mucosal CD30+ T-cell lymphoproliferative disorder','Y','2025-10-23 00:00:00'),(98865,11,'2A20.2','Primary myelofibrosis','Y','2025-10-23 00:00:00'),(98866,11,'XH7GG7','Primary myelofibrosis','Y','2025-10-23 00:00:00'),(98867,11,'2A00.5','Primary neoplasm of brain of unknown or unspecified type','Y','2025-10-23 00:00:00'),(98868,11,'2A01.2','Primary neoplasm of meninges of unknown or unspecified type','Y','2025-10-23 00:00:00'),(98869,11,'2A02.2','Primary neoplasm of spinal cord of unknown or unspecified type','Y','2025-10-23 00:00:00'),(98870,11,'2A02','Primary neoplasm of spinal cord, cranial nerves or remaining parts of central nervous system','Y','2025-10-23 00:00:00'),(98871,11,'2A00','Primary neoplasms of brain','Y','2025-10-23 00:00:00'),(98872,11,'2A01','Primary neoplasms of meninges','Y','2025-10-23 00:00:00'),(98873,11,'DA94.00','Primary nonspecific ulceration of small intestine','Y','2025-10-23 00:00:00'),(98874,11,'9C61.0','Primary open-angle glaucoma','Y','2025-10-23 00:00:00'),(98875,11,'9C61.0Z','Primary open-angle glaucoma, unspecified','Y','2025-10-23 00:00:00'),(98876,11,'FA00.0','Primary osteoarthritis of hip','Y','2025-10-23 00:00:00'),(98877,11,'FA01.0','Primary osteoarthritis of knee','Y','2025-10-23 00:00:00'),(98878,11,'FA03.0','Primary osteoarthritis of other specified joint','Y','2025-10-23 00:00:00'),(98879,11,'FA02.0','Primary osteoarthritis of wrist or hand','Y','2025-10-23 00:00:00'),(98880,11,'DC50.0','Primary peritonitis','Y','2025-10-23 00:00:00'),(98881,11,'8A40.1','Primary progressive multiple sclerosis','Y','2025-10-23 00:00:00'),(98882,11,'BD42.0','Primary Raynaud disease','Y','2025-10-23 00:00:00'),(98883,11,'FB51.40','Primary retroperitoneal fibrosis','Y','2025-10-23 00:00:00'),(98884,11,'XE1ZF','Primary school','Y','2025-10-23 00:00:00'),(98885,11,'DB96.2','Primary sclerosing cholangitis','Y','2025-10-23 00:00:00'),(98886,11,'DB96.20','Primary sclerosing cholangitis with cirrhosis','Y','2025-10-23 00:00:00'),(98887,11,'DB96.2Z','Primary sclerosing cholangitis, unspecified','Y','2025-10-23 00:00:00'),(98888,11,'4A43.20','Primary Sj','Y','2025-10-23 00:00:00'),(98889,11,'8A07.00','Primary stereotypy','Y','2025-10-23 00:00:00'),(98890,11,'1A61.2','Primary syphilis of other sites','Y','2025-10-23 00:00:00'),(98891,11,'LA07.3','Primary syringomyelia or hydromyelia','Y','2025-10-23 00:00:00'),(98892,11,'LA07.0','Primary tethered cord syndrome','Y','2025-10-23 00:00:00'),(98893,11,'8A05.0','Primary tics or tic disorders','Y','2025-10-23 00:00:00'),(98894,11,'8A05.0Z','Primary tics or tic disorders, unspecified','Y','2025-10-23 00:00:00'),(98895,11,'DB33.0','Primary ulcer of colon','Y','2025-10-23 00:00:00'),(98896,11,'DA94.0','Primary ulcer of small intestine','Y','2025-10-23 00:00:00'),(98897,11,'DA94.0Z','Primary ulcer of small intestine, unspecified','Y','2025-10-23 00:00:00'),(98898,11,'JB02.0','Primary uterine inertia','Y','2025-10-23 00:00:00'),(98899,11,'BD74.30','Primary venous leg ulcer','Y','2025-10-23 00:00:00'),(98900,11,'1C1D.0','Primary yaws','Y','2025-10-23 00:00:00'),(98901,11,'XM5J41','Primidone','Y','2025-10-23 00:00:00'),(98902,11,'XM07P7','Primin','Y','2025-10-23 00:00:00'),(98903,11,'XE0B4','Priming problem','Y','2025-10-23 00:00:00'),(98904,11,'XH5LL8','Primitive non-neural granular cell tumor','Y','2025-10-23 00:00:00'),(98905,11,'XM9HN7','Primula obconica plant','Y','2025-10-23 00:00:00'),(98906,11,'XM4TX6','Primula officinalis plant','Y','2025-10-23 00:00:00'),(98907,11,'XM95D5','Primula plant','Y','2025-10-23 00:00:00'),(98908,11,'XM19S7','Primula veris plant','Y','2025-10-23 00:00:00'),(98909,11,'XA05L5','Princeps pollicis artery','Y','2025-10-23 00:00:00'),(98910,11,'SE7Z','Principle-based patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(98911,11,'XE062','Printer component of medical device','Y','2025-10-23 00:00:00'),(98912,11,'XN7AM','Prion','Y','2025-10-23 00:00:00'),(98913,11,'XM81R1','Priscol, Priscoline','Y','2025-10-23 00:00:00'),(98914,11,'XE30E','Prison','Y','2025-10-23 00:00:00'),(98915,11,'XM48W5','Pristinamycin','Y','2025-10-23 00:00:00'),(98916,11,'XE7MP','Private fixed-wing powered aircraft','Y','2025-10-23 00:00:00'),(98917,11,'XM6F85','Probarbital','Y','2025-10-23 00:00:00'),(98918,11,'XE46S','Probe component of medical device','Y','2025-10-23 00:00:00'),(98919,11,'XM0WT0','Probenecid','Y','2025-10-23 00:00:00'),(98920,11,'QD81','Problem associated with change of job','Y','2025-10-23 00:00:00'),(98921,11,'PL14.7','Problem associated with clinical documentation','Y','2025-10-23 00:00:00'),(98922,11,'PL14.8','Problem associated with clinical software','Y','2025-10-23 00:00:00'),(98923,11,'QE40','Problem associated with conviction in civil or criminal proceedings without imprisonment','Y','2025-10-23 00:00:00'),(98924,11,'QD91','Problem associated with education unavailable or unattainable','Y','2025-10-23 00:00:00'),(98925,11,'QD90','Problem associated with illiteracy or low-level literacy','Y','2025-10-23 00:00:00'),(98926,11,'QE41','Problem associated with imprisonment and other incarceration','Y','2025-10-23 00:00:00'),(98927,11,'QE51','Problem associated with interactions with spouse or partner','Y','2025-10-23 00:00:00'),(98928,11,'QE50','Problem associated with interpersonal interactions','Y','2025-10-23 00:00:00'),(98929,11,'QE52','Problem associated with interpersonal interactions in childhood','Y','2025-10-23 00:00:00'),(98930,11,'PL14.6','Problem associated with isolation protocol','Y','2025-10-23 00:00:00'),(98931,11,'PL14.5','Problem associated with physical restraints','Y','2025-10-23 00:00:00'),(98932,11,'PL14.2','Problem associated with physical transfer of patient','Y','2025-10-23 00:00:00'),(98933,11,'QA82','Problem associated with physical transfer of patient without injury or harm','Y','2025-10-23 00:00:00'),(98934,11,'QE50.0','Problem associated with relationship with friend','Y','2025-10-23 00:00:00'),(98935,11,'QE50.2','Problem associated with relationships with people at work','Y','2025-10-23 00:00:00'),(98936,11,'QE42','Problem associated with release from prison','Y','2025-10-23 00:00:00'),(98937,11,'QD83.1','Problem associated with stressful work schedule','Y','2025-10-23 00:00:00'),(98938,11,'QD82','Problem associated with threat of job loss','Y','2025-10-23 00:00:00'),(98939,11,'PL14.D','Problem associated with transitions of care, hand offs, or handovers','Y','2025-10-23 00:00:00'),(98940,11,'QD83.0','Problem associated with uncongenial work','Y','2025-10-23 00:00:00'),(98941,11,'QD80','Problem associated with unemployment','Y','2025-10-23 00:00:00'),(98942,11,'XE1JG','Problem of device to auto stop identified','Y','2025-10-23 00:00:00'),(98943,11,'XE7ZT','Problem of device to self-test identified','Y','2025-10-23 00:00:00'),(98944,11,'ME86.Y','Problem of other specified body part','Y','2025-10-23 00:00:00'),(98945,11,'ME86.Z','Problem of unspecified body part','Y','2025-10-23 00:00:00'),(98946,11,'QE27','Problem with behaviours related to psychological health or wellbeing','Y','2025-10-23 00:00:00'),(98947,11,'QA87','Problem with clinical documentation without injury or harm','Y','2025-10-23 00:00:00'),(98948,11,'QA88','Problem with clinical software without injury or harm','Y','2025-10-23 00:00:00'),(98949,11,'QD92','Problem with educational progress','Y','2025-10-23 00:00:00'),(98950,11,'QD83','Problem with employment conditions','Y','2025-10-23 00:00:00'),(98951,11,'QE28','Problem with health literacy','Y','2025-10-23 00:00:00'),(98952,11,'QE2Z','Problem with health-related behaviours, unspecified','Y','2025-10-23 00:00:00'),(98953,11,'QA86','Problem with isolation protocol without injury or harm','Y','2025-10-23 00:00:00'),(98954,11,'QA85','Problem with physical restraints without injury or harm','Y','2025-10-23 00:00:00'),(98955,11,'XE5CT','Problem with software installation','Y','2025-10-23 00:00:00'),(98956,11,'XE2LR','Problem with sterilisation','Y','2025-10-23 00:00:00'),(98957,11,'QE26','Problem with sun exposure behaviour','Y','2025-10-23 00:00:00'),(98958,11,'QA8C','Problem with transitions of care, hand offs, or handovers without injury or harm','Y','2025-10-23 00:00:00'),(98959,11,'QE6Z','Problems associated with absence, loss or death of others, unspecified','Y','2025-10-23 00:00:00'),(98960,11,'QD6Z','Problems associated with drinking water or nutrition, unspecified','Y','2025-10-23 00:00:00'),(98961,11,'QD9Z','Problems associated with education, unspecified','Y','2025-10-23 00:00:00'),(98962,11,'QD8Z','Problems associated with employment or unemployment, unspecified','Y','2025-10-23 00:00:00'),(98963,11,'QD70.1','Problems associated with exposure to air pollution','Y','2025-10-23 00:00:00'),(98964,11,'QD70.0','Problems associated with exposure to noise','Y','2025-10-23 00:00:00'),(98965,11,'QD70.4','Problems associated with exposure to radiation','Y','2025-10-23 00:00:00'),(98966,11,'QD70.3','Problems associated with exposure to soil pollution','Y','2025-10-23 00:00:00'),(98967,11,'QD70.5','Problems associated with exposure to tobacco smoke','Y','2025-10-23 00:00:00'),(98968,11,'QD70.2','Problems associated with exposure to water pollution','Y','2025-10-23 00:00:00'),(98969,11,'QD5Z','Problems associated with finances, unspecified','Y','2025-10-23 00:00:00'),(98970,11,'QE8Z','Problems associated with harmful or traumatic events, unspecified','Y','2025-10-23 00:00:00'),(98971,11,'QD71','Problems associated with housing','Y','2025-10-23 00:00:00'),(98972,11,'QD71.Z','Problems associated with housing, unspecified','Y','2025-10-23 00:00:00'),(98973,11,'QD70.6','Problems associated with inadequate access to electricity','Y','2025-10-23 00:00:00'),(98974,11,'QD60','Problems associated with inadequate drinking-water','Y','2025-10-23 00:00:00'),(98975,11,'QE5Z','Problems associated with relationships, unspecified','Y','2025-10-23 00:00:00'),(98976,11,'QE3Z','Problems associated with social insurance or welfare, unspecified','Y','2025-10-23 00:00:00'),(98977,11,'QE0Z','Problems associated with social or cultural environment, unspecified','Y','2025-10-23 00:00:00'),(98978,11,'QD7Z','Problems associated with the environment, unspecified','Y','2025-10-23 00:00:00'),(98979,11,'QE4Z','Problems associated with the justice system, unspecified','Y','2025-10-23 00:00:00'),(98980,11,'QD70','Problems associated with the natural environment or human-made changes to the environment','Y','2025-10-23 00:00:00'),(98981,11,'QD70.Z','Problems associated with the natural environment or human-made changes to the environment, unspecified','Y','2025-10-23 00:00:00'),(98982,11,'QE9Z','Problems associated with upbringing, unspecified','Y','2025-10-23 00:00:00'),(98983,11,'VD51','Problems by barriers [WHODAS]','Y','2025-10-23 00:00:00'),(98984,11,'VD57','Problems in relaxation or pleasure [WHODAS]','Y','2025-10-23 00:00:00'),(98985,11,'MF40','Problems of male genital organs','Y','2025-10-23 00:00:00'),(98986,11,'MF40.Z','Problems of male genital organs, unspecified','Y','2025-10-23 00:00:00'),(98987,11,'MF40.1','Problems of the prostate','Y','2025-10-23 00:00:00'),(98988,11,'QD71.2','Problems related to living in residential institution','Y','2025-10-23 00:00:00'),(98989,11,'QA4A','Problems related to multiparity','Y','2025-10-23 00:00:00'),(98990,11,'QE70','Problems related to primary support group, including family circumstances','Y','2025-10-23 00:00:00'),(98991,11,'QE70.Z','Problems related to primary support group, including family circumstances, unspecified','Y','2025-10-23 00:00:00'),(98992,11,'QA49','Problems related to unwanted pregnancy','Y','2025-10-23 00:00:00'),(98993,11,'ME0B','Problems with defaecation, not otherwise specified','Y','2025-10-23 00:00:00'),(98994,11,'QE24','Problems with hygiene behaviours','Y','2025-10-23 00:00:00'),(98995,11,'QE23','Problems with inappropriate diet or eating habits','Y','2025-10-23 00:00:00'),(98996,11,'QE25','Problems with oral health behaviours','Y','2025-10-23 00:00:00'),(98997,11,'QE2Y','Problems with other specified health-related behaviours','Y','2025-10-23 00:00:00'),(98998,11,'XM4UK3','Probucol','Y','2025-10-23 00:00:00'),(98999,11,'XM4MK3','Procainamide','Y','2025-10-23 00:00:00'),(99000,11,'XM5L66','Procaine','Y','2025-10-23 00:00:00'),(99001,11,'XM4HD6','Procaine benzylpenicillin','Y','2025-10-23 00:00:00'),(99002,11,'XM05Z5','Procaine nerve block','Y','2025-10-23 00:00:00'),(99003,11,'XM1CG3','Procaine regional','Y','2025-10-23 00:00:00'),(99004,11,'XM8KS3','Procaine spinal','Y','2025-10-23 00:00:00'),(99005,11,'XM1MP7','Procarbazine','Y','2025-10-23 00:00:00'),(99006,11,'XM2YD0','Procaterol','Y','2025-10-23 00:00:00'),(99007,11,'QC10','Procedure not carried out because of contraindication','Y','2025-10-23 00:00:00'),(99008,11,'QC11','Procedure not carried out because of patient\'s decision for reasons of belief or group pressure','Y','2025-10-23 00:00:00'),(99009,11,'QC12','Procedure not carried out because of patient\'s decision for reasons other than belief or group pressure','Y','2025-10-23 00:00:00'),(99010,11,'PL11.5','Procedure undertaken at wrong site or wrong side, as mode of injury or harm','Y','2025-10-23 00:00:00'),(99011,11,'XA6648','Procerus muscle','Y','2025-10-23 00:00:00'),(99012,11,'XA5HD8','Procerus tendon','Y','2025-10-23 00:00:00'),(99013,11,'XA1SD8','Processes of eighth thoracic vertebra','Y','2025-10-23 00:00:00'),(99014,11,'XA92Q6','Processes of eleventh thoracic vertebra','Y','2025-10-23 00:00:00'),(99015,11,'XA2FY7','Processes of fifth cervical vertebra','Y','2025-10-23 00:00:00'),(99016,11,'XA4PS3','Processes of fifth lumbar vertebra','Y','2025-10-23 00:00:00'),(99017,11,'XA0449','Processes of fifth thoracic vertebra','Y','2025-10-23 00:00:00'),(99018,11,'XA4U01','Processes of first lumbar vertebra','Y','2025-10-23 00:00:00'),(99019,11,'XA1AX4','Processes of first thoracic vertebra','Y','2025-10-23 00:00:00'),(99020,11,'XA75V3','Processes of fourth cervical vertebra','Y','2025-10-23 00:00:00'),(99021,11,'XA38A4','Processes of fourth lumbar vertebra','Y','2025-10-23 00:00:00'),(99022,11,'XA1WL4','Processes of fourth thoracic vertebra','Y','2025-10-23 00:00:00'),(99023,11,'XA5SW1','Processes of ninth thoracic vertebra','Y','2025-10-23 00:00:00'),(99024,11,'XA52T1','Processes of second lumbar vertebra','Y','2025-10-23 00:00:00'),(99025,11,'XA6T61','Processes of second thoracic vertebra','Y','2025-10-23 00:00:00'),(99026,11,'XA91D7','Processes of seventh cervical vertebra','Y','2025-10-23 00:00:00'),(99027,11,'XA1CQ7','Processes of seventh thoracic vertebra','Y','2025-10-23 00:00:00'),(99028,11,'XA60Z0','Processes of sixth cervical vertebra','Y','2025-10-23 00:00:00'),(99029,11,'XA1R53','Processes of sixth thoracic vertebra','Y','2025-10-23 00:00:00'),(99030,11,'XA7122','Processes of tenth thoracic vertebra','Y','2025-10-23 00:00:00'),(99031,11,'XA8CG0','Processes of third cervical vertebra','Y','2025-10-23 00:00:00'),(99032,11,'XA80X7','Processes of third lumbar vertebra','Y','2025-10-23 00:00:00'),(99033,11,'XA41U9','Processes of third thoracic vertebra','Y','2025-10-23 00:00:00'),(99034,11,'XA2D62','Processes of twelfth thoracic vertebra','Y','2025-10-23 00:00:00'),(99035,11,'XE23M','Processor component of medical device','Y','2025-10-23 00:00:00'),(99036,11,'XM84U4','Prochlorperazine','Y','2025-10-23 00:00:00'),(99037,11,'XM9AG2','Procyclidine','Y','2025-10-23 00:00:00'),(99038,11,'XM30T6','Prodine','Y','2025-10-23 00:00:00'),(99039,11,'XT4M','Prodromal','Y','2025-10-23 00:00:00'),(99040,11,'SD30','Prodrome of wind stroke disorder (TM1)','Y','2025-10-23 00:00:00'),(99041,11,'XM6993','Producer gas','Y','2025-10-23 00:00:00'),(99042,11,'XE5Y1','Product quality problem','Y','2025-10-23 00:00:00'),(99043,11,'XM39L3','Profadol','Y','2025-10-23 00:00:00'),(99044,11,'XM8VR6','Profenamine','Y','2025-10-23 00:00:00'),(99045,11,'XM3CK8','Profenil','Y','2025-10-23 00:00:00'),(99046,11,'XM6YA5','Proflavine','Y','2025-10-23 00:00:00'),(99047,11,'XS2R','Profound','Y','2025-10-23 00:00:00'),(99048,11,'MC21.0','Profound impairment of electrooculogram','Y','2025-10-23 00:00:00'),(99049,11,'XA2PP0','Profunda brachii artery','Y','2025-10-23 00:00:00'),(99050,11,'XM2HC7','Progabide','Y','2025-10-23 00:00:00'),(99051,11,'XM3799','Progesterone','Y','2025-10-23 00:00:00'),(99052,11,'XM8FT3','Progestogen','Y','2025-10-23 00:00:00'),(99053,11,'XM9HA7','Progestogens','Y','2025-10-23 00:00:00'),(99054,11,'XM9N33','Progestogens and estrogens, fixed combinations','Y','2025-10-23 00:00:00'),(99055,11,'XM0ZZ0','Progestogens and estrogens, sequential preparations','Y','2025-10-23 00:00:00'),(99056,11,'XM2P51','Proglumetacin','Y','2025-10-23 00:00:00'),(99057,11,'XM6WX3','Proglumide','Y','2025-10-23 00:00:00'),(99058,11,'XE0UN','Program or algorithm execution failure','Y','2025-10-23 00:00:00'),(99059,11,'XE1HG','Program or algorithm execution problem','Y','2025-10-23 00:00:00'),(99060,11,'XM9ND9','Programmed cell death protein 1/death ligand 1 inhibitors','Y','2025-10-23 00:00:00'),(99061,11,'8B60.1','Progressive bulbar palsy','Y','2025-10-23 00:00:00'),(99062,11,'LD2H.2','Progressive deafness with stapes fixation','Y','2025-10-23 00:00:00'),(99063,11,'9C82.0','Progressive external ophthalmoplegia','Y','2025-10-23 00:00:00'),(99064,11,'5C58.03','Progressive familial intrahepatic cholestasis','Y','2025-10-23 00:00:00'),(99065,11,'8A21','Progressive focal atrophies','Y','2025-10-23 00:00:00'),(99066,11,'8A21.Z','Progressive focal atrophies, unspecified','Y','2025-10-23 00:00:00'),(99067,11,'8A45.02','Progressive multifocal leukoencephalopathy','Y','2025-10-23 00:00:00'),(99068,11,'8B60.3','Progressive muscular atrophy','Y','2025-10-23 00:00:00'),(99069,11,'8A61.41','Progressive myoclonic epilepsy','Y','2025-10-23 00:00:00'),(99070,11,'FB31.0','Progressive osseous heteroplasia','Y','2025-10-23 00:00:00'),(99071,11,'LD24.F','Progressive ossification of skin, skeletal muscle, fascia, tendons or ligaments','Y','2025-10-23 00:00:00'),(99072,11,'8B60.2','Progressive pseudobulbar palsy','Y','2025-10-23 00:00:00'),(99073,11,'8A00.10','Progressive supranuclear palsy','Y','2025-10-23 00:00:00'),(99074,11,'XM0S91','Proguanil','Y','2025-10-23 00:00:00'),(99075,11,'XM77Q1','Prolactin','Y','2025-10-23 00:00:00'),(99076,11,'GC40.0','Prolapse of anterior vaginal wall','Y','2025-10-23 00:00:00'),(99077,11,'GC40.0Z','Prolapse of anterior vaginal wall, unspecified','Y','2025-10-23 00:00:00'),(99078,11,'GC40.1','Prolapse of posterior vaginal wall','Y','2025-10-23 00:00:00'),(99079,11,'GC40.1Z','Prolapse of posterior vaginal wall, unspecified','Y','2025-10-23 00:00:00'),(99080,11,'GC40.2','Prolapse of the vaginal apex','Y','2025-10-23 00:00:00'),(99081,11,'GC40.2Z','Prolapse of the vaginal apex, unspecified','Y','2025-10-23 00:00:00'),(99082,11,'GC71','Prolapse of vaginal vault after hysterectomy','Y','2025-10-23 00:00:00'),(99083,11,'GC05','Prolapsed urethral mucosa','Y','2025-10-23 00:00:00'),(99084,11,'5C50.F0','Prolidase deficiency','Y','2025-10-23 00:00:00'),(99085,11,'XH7WJ7','Proliferating trichilemmal cyst','Y','2025-10-23 00:00:00'),(99086,11,'XH6AH3','Proliferative dermal lesion in congenital naevus','Y','2025-10-23 00:00:00'),(99087,11,'9B71.01','Proliferative diabetic retinopathy','Y','2025-10-23 00:00:00'),(99088,11,'XH6JX7','Proliferative fasciitis','Y','2025-10-23 00:00:00'),(99089,11,'XH87F9','Proliferative myositis','Y','2025-10-23 00:00:00'),(99090,11,'XM84X9','Prolintane','Y','2025-10-23 00:00:00'),(99091,11,'XM9RU3','Proloid','Y','2025-10-23 00:00:00'),(99092,11,'JB03.0','Prolonged first stage of labour','Y','2025-10-23 00:00:00'),(99093,11,'6B42','Prolonged grief disorder','Y','2025-10-23 00:00:00'),(99094,11,'SB92','Prolonged menstruation disorder (TM1)','Y','2025-10-23 00:00:00'),(99095,11,'JB03.1','Prolonged second stage of labour','Y','2025-10-23 00:00:00'),(99096,11,'XH95H2','Prolymphocytic leukaemia, B-cell type','Y','2025-10-23 00:00:00'),(99097,11,'XH8TD6','Prolymphocytic leukaemia, NOS','Y','2025-10-23 00:00:00'),(99098,11,'XH0DU4','Prolymphocytic leukaemia, T-cell type','Y','2025-10-23 00:00:00'),(99099,11,'XM8DJ8','Promacetin','Y','2025-10-23 00:00:00'),(99100,11,'XM3CL7','Promazine','Y','2025-10-23 00:00:00'),(99101,11,'XM9AZ5','Promedol','Y','2025-10-23 00:00:00'),(99102,11,'XM71B5','Promegestone','Y','2025-10-23 00:00:00'),(99103,11,'XM7FC3','Promestriene','Y','2025-10-23 00:00:00'),(99104,11,'XM0605','Promethazine','Y','2025-10-23 00:00:00'),(99105,11,'XM6WM2','Promethazine topical','Y','2025-10-23 00:00:00'),(99106,11,'XM8CP2','Promin','Y','2025-10-23 00:00:00'),(99107,11,'6A80.0','Prominent anxiety symptoms in mood episodes','Y','2025-10-23 00:00:00'),(99108,11,'6D11','Prominent personality traits or patterns','Y','2025-10-23 00:00:00'),(99109,11,'MC88','Prominent veins','Y','2025-10-23 00:00:00'),(99110,11,'XM52N4','Pronase','Y','2025-10-23 00:00:00'),(99111,11,'XA91W0','Pronator quadratus muscle','Y','2025-10-23 00:00:00'),(99112,11,'XA41Z5','Pronator quadratus tendon','Y','2025-10-23 00:00:00'),(99113,11,'XA58Z6','Pronator teres muscle','Y','2025-10-23 00:00:00'),(99114,11,'XA7EK5','Pronator teres tendon','Y','2025-10-23 00:00:00'),(99115,11,'XM91L7','Pronetalol','Y','2025-10-23 00:00:00'),(99116,11,'XE059','Prong fastner component of medical device','Y','2025-10-23 00:00:00'),(99117,11,'XM55D8','Prontosil','Y','2025-10-23 00:00:00'),(99118,11,'XM8QF6','Propacetamol','Y','2025-10-23 00:00:00'),(99119,11,'XM8J05','Propachlor','Y','2025-10-23 00:00:00'),(99120,11,'XM9R82','Propafenone','Y','2025-10-23 00:00:00'),(99121,11,'XM37N4','Propallylonal','Y','2025-10-23 00:00:00'),(99122,11,'XM35Q1','Propamidine','Y','2025-10-23 00:00:00'),(99123,11,'XM76Q9','Propane','Y','2025-10-23 00:00:00'),(99124,11,'XM4BS0','Propanidid','Y','2025-10-23 00:00:00'),(99125,11,'XM66Q3','Propanil','Y','2025-10-23 00:00:00'),(99126,11,'XM24W5','Propanol','Y','2025-10-23 00:00:00'),(99127,11,'XM05C6','Propantheline','Y','2025-10-23 00:00:00'),(99128,11,'XM7VK4','Propantheline bromide','Y','2025-10-23 00:00:00'),(99129,11,'XM97J9','Proparacaine','Y','2025-10-23 00:00:00'),(99130,11,'XM0DY4','Propatylnitrate','Y','2025-10-23 00:00:00'),(99131,11,'XM61Z9','Propenidazole','Y','2025-10-23 00:00:00'),(99132,11,'XM3Y68','Propentofylline','Y','2025-10-23 00:00:00'),(99133,11,'XA8C72','Proper hepatic artery','Y','2025-10-23 00:00:00'),(99134,11,'XA7ZD7','Proper palmar digital nerves of median nerve','Y','2025-10-23 00:00:00'),(99135,11,'XA3GZ6','Proper volar digital vein','Y','2025-10-23 00:00:00'),(99136,11,'XM6YG2','Propetamphos','Y','2025-10-23 00:00:00'),(99137,11,'QC05.1','Prophylactic immunotherapy','Y','2025-10-23 00:00:00'),(99138,11,'QC05.Z','Prophylactic measures, unspecified','Y','2025-10-23 00:00:00'),(99139,11,'XM5MN2','Propicillin','Y','2025-10-23 00:00:00'),(99140,11,'XM4TA7','Propiolactone','Y','2025-10-23 00:00:00'),(99141,11,'XM9TL2','Propiomazine','Y','2025-10-23 00:00:00'),(99142,11,'XM3DH9','Propion gel','Y','2025-10-23 00:00:00'),(99143,11,'XM23J2','Propionaidehyde (medicinal)','Y','2025-10-23 00:00:00'),(99144,11,'XM77H8','Propionate (calcium) (sodium)','Y','2025-10-23 00:00:00'),(99145,11,'XN5M7','Propionibacterium','Y','2025-10-23 00:00:00'),(99146,11,'XN27L','Propionibacterium propionicus','Y','2025-10-23 00:00:00'),(99147,11,'XM2S54','Propionic acid derivatives','Y','2025-10-23 00:00:00'),(99148,11,'XM9FU4','Propiverine','Y','2025-10-23 00:00:00'),(99149,11,'XM1903','Propofol','Y','2025-10-23 00:00:00'),(99150,11,'XM79F9','Propoxur','Y','2025-10-23 00:00:00'),(99151,11,'XM72A2','Propoxycaine','Y','2025-10-23 00:00:00'),(99152,11,'XM9BY7','Propoxycaine infiltration','Y','2025-10-23 00:00:00'),(99153,11,'XM2DT4','Propoxycaine nerve block','Y','2025-10-23 00:00:00'),(99154,11,'XM0BG4','Propoxycaine topical','Y','2025-10-23 00:00:00'),(99155,11,'XM3E08','Propoxyphene','Y','2025-10-23 00:00:00'),(99156,11,'XM3HA9','Propranolol','Y','2025-10-23 00:00:00'),(99157,11,'7A86','Propriospinal myoclonus at sleep onset','Y','2025-10-23 00:00:00'),(99158,11,'XM5RS7','Propyl alcohol','Y','2025-10-23 00:00:00'),(99159,11,'XM0XV1','Propyl parahydroxybenzoate','Y','2025-10-23 00:00:00'),(99160,11,'XM6GY2','Propylaminopheno-thiazine','Y','2025-10-23 00:00:00'),(99161,11,'XM8242','Propylene','Y','2025-10-23 00:00:00'),(99162,11,'XM4435','Propylhexedrine','Y','2025-10-23 00:00:00'),(99163,11,'XM1YV8','Propyliodone','Y','2025-10-23 00:00:00'),(99164,11,'XM2WK3','Propylparaben (ophthalmic)','Y','2025-10-23 00:00:00'),(99165,11,'XM5DE7','Propylthiouracil','Y','2025-10-23 00:00:00'),(99166,11,'XM6GV7','Propyphenazone','Y','2025-10-23 00:00:00'),(99167,11,'XM8GX7','Proquazone','Y','2025-10-23 00:00:00'),(99168,11,'XM1EG1','Proscillaridin','Y','2025-10-23 00:00:00'),(99169,11,'XM67M9','Prostaglandin E1','Y','2025-10-23 00:00:00'),(99170,11,'XM5606','Prostaglandin F2 alpha','Y','2025-10-23 00:00:00'),(99171,11,'XM4ML1','Prostaglandins','Y','2025-10-23 00:00:00'),(99172,11,'XA63E5','Prostate gland','Y','2025-10-23 00:00:00'),(99173,11,'MA14.1B','Prostate specific antigen positive','Y','2025-10-23 00:00:00'),(99174,11,'XH5C49','Prostatic intraepithelial neoplasia, grade III','Y','2025-10-23 00:00:00'),(99175,11,'XA16Y3','Prostatic plexus','Y','2025-10-23 00:00:00'),(99176,11,'XA7869','Prostatic urethra','Y','2025-10-23 00:00:00'),(99177,11,'XA8WY0','Prostatic vein','Y','2025-10-23 00:00:00'),(99178,11,'GA91.2','Prostatocystitis','Y','2025-10-23 00:00:00'),(99179,11,'XE5W4','Prosthesis','Y','2025-10-23 00:00:00'),(99180,11,'BC01','Prosthetic valve disease','Y','2025-10-23 00:00:00'),(99181,11,'XM3YR0','Prostigmin','Y','2025-10-23 00:00:00'),(99182,11,'XM7D01','Prosultiamine','Y','2025-10-23 00:00:00'),(99183,11,'XM2GR4','Protamine','Y','2025-10-23 00:00:00'),(99184,11,'XM4U16','Protamine sulfate','Y','2025-10-23 00:00:00'),(99185,11,'XM3J06','Protamine sulfate zinc insulin','Y','2025-10-23 00:00:00'),(99186,11,'XM7VD3','Protamine zinc insulin injection','Y','2025-10-23 00:00:00'),(99187,11,'XM2VN0','Protease','Y','2025-10-23 00:00:00'),(99188,11,'XM8GK2','Protease inhibitors','Y','2025-10-23 00:00:00'),(99189,11,'XM6J14','Protectant, skin','Y','2025-10-23 00:00:00'),(99190,11,'XE1XC','Protective measures problem','Y','2025-10-23 00:00:00'),(99191,11,'XE5HU','Protective system problem with device identified','Y','2025-10-23 00:00:00'),(99192,11,'XE8RN','Protector or shield component of medical device','Y','2025-10-23 00:00:00'),(99193,11,'XM35D2','Protein C','Y','2025-10-23 00:00:00'),(99194,11,'EK11','Protein contact dermatitis','Y','2025-10-23 00:00:00'),(99195,11,'5B71','Protein deficiency','Y','2025-10-23 00:00:00'),(99196,11,'3A03.1','Protein deficiency anaemia','Y','2025-10-23 00:00:00'),(99197,11,'XM55C2','Protein hydrolysates','Y','2025-10-23 00:00:00'),(99198,11,'XM1CT6','Protein kinase inhibitors','Y','2025-10-23 00:00:00'),(99199,11,'DA96.1','Protein-losing enteropathy','Y','2025-10-23 00:00:00'),(99200,11,'MF96','Proteinuria','Y','2025-10-23 00:00:00'),(99201,11,'MF96.Z','Proteinuria, unspecified','Y','2025-10-23 00:00:00'),(99202,11,'XN3BS','Proteus','Y','2025-10-23 00:00:00'),(99203,11,'XN9ZF','Proteus mirabilis','Y','2025-10-23 00:00:00'),(99204,11,'XN9DS','Proteus morganii','Y','2025-10-23 00:00:00'),(99205,11,'XN7PE','Proteus penneri','Y','2025-10-23 00:00:00'),(99206,11,'XN118','Proteus vulgaris','Y','2025-10-23 00:00:00'),(99207,11,'XM3BH3','Prothipendyl','Y','2025-10-23 00:00:00'),(99208,11,'XM7GK7','Prothoate','Y','2025-10-23 00:00:00'),(99209,11,'XM0SY7','Prothrombin activator','Y','2025-10-23 00:00:00'),(99210,11,'XM04M3','Prothrombin synthesis inhibitor','Y','2025-10-23 00:00:00'),(99211,11,'XM1GT1','Protionamide','Y','2025-10-23 00:00:00'),(99212,11,'XM7R30','Protirelin','Y','2025-10-23 00:00:00'),(99213,11,'XM0FE9','Protokylol','Y','2025-10-23 00:00:00'),(99214,11,'XM2WX5','Proton pump inhibitors','Y','2025-10-23 00:00:00'),(99215,11,'XH6UV4','Protoplasmic astrocytoma','Y','2025-10-23 00:00:00'),(99216,11,'XN42T','Prototheca','Y','2025-10-23 00:00:00'),(99217,11,'1G60.2','Protothecosis','Y','2025-10-23 00:00:00'),(99218,11,'XM1GS9','Protoveratrine (s) (A) (B)','Y','2025-10-23 00:00:00'),(99219,11,'JB63.6','Protozoal diseases complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(99220,11,'JB63.6Z','Protozoal diseases complicating pregnancy, childbirth or the puerperium, unspecified','Y','2025-10-23 00:00:00'),(99221,11,'1A3Z','Protozoal intestinal infections, unspecified','Y','2025-10-23 00:00:00'),(99222,11,'CA20.13','Protracted bacterial bronchitis','Y','2025-10-23 00:00:00'),(99223,11,'XM2WA4','Protriptyline','Y','2025-10-23 00:00:00'),(99224,11,'LA21.1','Protruding ear','Y','2025-10-23 00:00:00'),(99225,11,'XN7R2','Providencia','Y','2025-10-23 00:00:00'),(99226,11,'XY7Z','Provisional diagnosis','Y','2025-10-23 00:00:00'),(99227,11,'XM8N97','Proxazole','Y','2025-10-23 00:00:00'),(99228,11,'XM8C15','Proxibarbal','Y','2025-10-23 00:00:00'),(99229,11,'XK6J','Proximal','Y','2025-10-23 00:00:00'),(99230,11,'XA1LM0','Proximal interphalangeal joint of fifth toe','Y','2025-10-23 00:00:00'),(99231,11,'XA1307','Proximal interphalangeal joint of finger','Y','2025-10-23 00:00:00'),(99232,11,'XA2R87','Proximal interphalangeal joint of fourth toe','Y','2025-10-23 00:00:00'),(99233,11,'XA1DN6','Proximal interphalangeal joint of index finger','Y','2025-10-23 00:00:00'),(99234,11,'XA4175','Proximal interphalangeal joint of little finger','Y','2025-10-23 00:00:00'),(99235,11,'XA3NW6','Proximal interphalangeal joint of middle finger','Y','2025-10-23 00:00:00'),(99236,11,'XA0BF5','Proximal interphalangeal joint of ring finger','Y','2025-10-23 00:00:00'),(99237,11,'XA56K9','Proximal interphalangeal joint of second toe','Y','2025-10-23 00:00:00'),(99238,11,'XA5573','Proximal interphalangeal joint of the foot','Y','2025-10-23 00:00:00'),(99239,11,'XA2QY2','Proximal interphalangeal joint of third toe','Y','2025-10-23 00:00:00'),(99240,11,'XA90X0','Proximal lower leg','Y','2025-10-23 00:00:00'),(99241,11,'XA43K6','Proximal nail fold of fifth toe','Y','2025-10-23 00:00:00'),(99242,11,'XA2Y79','Proximal nail fold of fourth toe','Y','2025-10-23 00:00:00'),(99243,11,'XA8L19','Proximal nail fold of great toe','Y','2025-10-23 00:00:00'),(99244,11,'XA4KU5','Proximal nail fold of little finger','Y','2025-10-23 00:00:00'),(99245,11,'XA8YE5','Proximal nail fold of middle finger','Y','2025-10-23 00:00:00'),(99246,11,'XA1F61','Proximal nail fold of ring finger','Y','2025-10-23 00:00:00'),(99247,11,'XA1ED1','Proximal nail fold of second toe','Y','2025-10-23 00:00:00'),(99248,11,'XA2484','Proximal nail fold of third toe','Y','2025-10-23 00:00:00'),(99249,11,'XA13E9','Proximal nailfold of thumb','Y','2025-10-23 00:00:00'),(99250,11,'XA3FJ0','Proximal palm','Y','2025-10-23 00:00:00'),(99251,11,'XA8PK1','Proximal phalanx of fifth toe','Y','2025-10-23 00:00:00'),(99252,11,'XA8CX6','Proximal phalanx of fourth toe','Y','2025-10-23 00:00:00'),(99253,11,'XA8KC3','Proximal phalanx of great toe','Y','2025-10-23 00:00:00'),(99254,11,'XA25U2','Proximal phalanx of index finger','Y','2025-10-23 00:00:00'),(99255,11,'XA73Q6','Proximal phalanx of little finger','Y','2025-10-23 00:00:00'),(99256,11,'XA6ET0','Proximal phalanx of middle finger','Y','2025-10-23 00:00:00'),(99257,11,'XA9MR0','Proximal phalanx of ring finger','Y','2025-10-23 00:00:00'),(99258,11,'XA0AQ0','Proximal phalanx of second toe','Y','2025-10-23 00:00:00'),(99259,11,'XA0HH1','Proximal phalanx of the hand','Y','2025-10-23 00:00:00'),(99260,11,'XA11P1','Proximal phalanx of third toe','Y','2025-10-23 00:00:00'),(99261,11,'XA0903','Proximal phalanx of thumb','Y','2025-10-23 00:00:00'),(99262,11,'XA6U96','Proximal phalanx','Y','2025-10-23 00:00:00'),(99263,11,'XA3G42','Proximal radioulnar joint','Y','2025-10-23 00:00:00'),(99264,11,'XE1A1','Proximal risk factors for intentional self-harm, Conflict in relationship with offspring','Y','2025-10-23 00:00:00'),(99265,11,'XE6QA','Proximal risk factors for intentional self-harm, Conflict in relationship with parent','Y','2025-10-23 00:00:00'),(99266,11,'XE9SZ','Proximal risk factors for intentional self-harm, Conflict in relationship with spouse, partner, boy/girlfriend','Y','2025-10-23 00:00:00'),(99267,11,'XE6TW','Proximal risk factors for intentional self-harm, Cultural issue','Y','2025-10-23 00:00:00'),(99268,11,'XE4UX','Proximal risk factors for intentional self-harm, Dowry','Y','2025-10-23 00:00:00'),(99269,11,'XE5CU','Proximal risk factors for intentional self-harm, HIV or AIDS','Y','2025-10-23 00:00:00'),(99270,11,'XE31V','Proximal risk factors for intentional self-harm, Legal system encounters','Y','2025-10-23 00:00:00'),(99271,11,'XE2RX','Proximal risk factors for intentional self-harm, Neglect','Y','2025-10-23 00:00:00'),(99272,11,'XE8T3','Proximal risk factors for intentional self-harm, Other manner of death of a relative, partner or friend','Y','2025-10-23 00:00:00'),(99273,11,'XE8ND','Proximal risk factors for intentional self-harm, Physical abuse','Y','2025-10-23 00:00:00'),(99274,11,'XE79G','Proximal risk factors for intentional self-harm, Postpartum depression','Y','2025-10-23 00:00:00'),(99275,11,'XE98Q','Proximal risk factors for intentional self-harm, Religious belief or affiliation','Y','2025-10-23 00:00:00'),(99276,11,'XE8MK','Proximal risk factors for intentional self-harm, School-related problem','Y','2025-10-23 00:00:00'),(99277,11,'XE8HX','Proximal risk factors for intentional self-harm, Sexual abuse','Y','2025-10-23 00:00:00'),(99278,11,'XE2Q7','Proximal risk factors for intentional self-harm, Substance abuse','Y','2025-10-23 00:00:00'),(99279,11,'XE19R','Proximal risk factors for intentional self-harm, Suicide of a relative, partner or friend','Y','2025-10-23 00:00:00'),(99280,11,'XE2FT','Proximal risk factors for intentional self-harm, Unspecified manner of death of a relative, partner or friend','Y','2025-10-23 00:00:00'),(99281,11,'XE3AG','Proximal risk factors for intentional self-harm, Unwanted pregnancy','Y','2025-10-23 00:00:00'),(99282,11,'XE70C','Proximal risk factors for intentional self-harm, Work-related','Y','2025-10-23 00:00:00'),(99283,11,'XA3HD5','Proximal surface of tooth','Y','2025-10-23 00:00:00'),(99284,11,'XA5ZE5','Proximal third of the scaphoid bone','Y','2025-10-23 00:00:00'),(99285,11,'XA0LG3','Proximal tibiofibular joint','Y','2025-10-23 00:00:00'),(99286,11,'XM5YJ3','Proxyphylline','Y','2025-10-23 00:00:00'),(99287,11,'XM2396','Prucalopride','Y','2025-10-23 00:00:00'),(99288,11,'XM3NU2','Prulifloxacin','Y','2025-10-23 00:00:00'),(99289,11,'LD2F.10','Prune belly syndrome','Y','2025-10-23 00:00:00'),(99290,11,'XM3WK8','Prunus africanae cortex','Y','2025-10-23 00:00:00'),(99291,11,'XM3QL7','Prunus plant','Y','2025-10-23 00:00:00'),(99292,11,'EC91','Prurigo','Y','2025-10-23 00:00:00'),(99293,11,'EC91.Z','Prurigo, unspecified','Y','2025-10-23 00:00:00'),(99294,11,'EC90','Pruritus','Y','2025-10-23 00:00:00'),(99295,11,'EC90.3','Pruritus due to neurological disorder','Y','2025-10-23 00:00:00'),(99296,11,'EC90.1Y','Pruritus due to other specified systemic disorder','Y','2025-10-23 00:00:00'),(99297,11,'EC90.0','Pruritus due to skin disorder','Y','2025-10-23 00:00:00'),(99298,11,'EC90.1','Pruritus due to systemic disorder','Y','2025-10-23 00:00:00'),(99299,11,'EC90.Y','Pruritus of other specified type or aetiology','Y','2025-10-23 00:00:00'),(99300,11,'JA65.11','Pruritus of pregnancy','Y','2025-10-23 00:00:00'),(99301,11,'EC90.6','Pruritus of unknown cause','Y','2025-10-23 00:00:00'),(99302,11,'EC90.Z','Pruritus, unspecified','Y','2025-10-23 00:00:00'),(99303,11,'XM62Q3','Prussian blue','Y','2025-10-23 00:00:00'),(99304,11,'XM2FV2','Prussian blue nonmedicinal','Y','2025-10-23 00:00:00'),(99305,11,'XM8P25','Prussian blue therapeutic','Y','2025-10-23 00:00:00'),(99306,11,'XH4ZM7','Psammomatous meningioma','Y','2025-10-23 00:00:00'),(99307,11,'XH9MN2','Psammomatous schwannoma','Y','2025-10-23 00:00:00'),(99308,11,'XN3NS','Pseudallescheria','Y','2025-10-23 00:00:00'),(99309,11,'XN6BV','Pseudallescheria boydii','Y','2025-10-23 00:00:00'),(99310,11,'FC01.0','Pseudarthrosis after fusion or arthrodesis','Y','2025-10-23 00:00:00'),(99311,11,'LD24.60','Pseudoachondroplasia','Y','2025-10-23 00:00:00'),(99312,11,'XN8JR','pseudocowpox virus','Y','2025-10-23 00:00:00'),(99313,11,'5A70.2','Pseudo-Cushing syndrome','Y','2025-10-23 00:00:00'),(99314,11,'DC30.1','Pseudocyst of pancreas','Y','2025-10-23 00:00:00'),(99315,11,'3B81.50','Pseudocyst of spleen','Y','2025-10-23 00:00:00'),(99316,11,'XM0CL2','Pseudoephedrine','Y','2025-10-23 00:00:00'),(99317,11,'9C61.20','Pseudoexfoliative open-angle glaucoma','Y','2025-10-23 00:00:00'),(99318,11,'GB90.41','Pseudohypoaldosteronism type 1','Y','2025-10-23 00:00:00'),(99319,11,'5A50.1','Pseudohypoparathyroidism','Y','2025-10-23 00:00:00'),(99320,11,'XN022','Pseudomonas','Y','2025-10-23 00:00:00'),(99321,11,'XN5L6','Pseudomonas aeruginosa','Y','2025-10-23 00:00:00'),(99322,11,'MG50.8Y','Pseudomonas aeruginosa resistant to other antibiotic','Y','2025-10-23 00:00:00'),(99323,11,'MG50.8Z','Pseudomonas aeruginosa resistant to unspecified antibiotic','Y','2025-10-23 00:00:00'),(99324,11,'XN52E','Pseudomonas mallei','Y','2025-10-23 00:00:00'),(99325,11,'XN3JP','Pseudomonas oryzihabitans','Y','2025-10-23 00:00:00'),(99326,11,'XN8J7','Pseudomonas plecoglossicida','Y','2025-10-23 00:00:00'),(99327,11,'XN8AA','Pseudomonas pseudomallei','Y','2025-10-23 00:00:00'),(99328,11,'XH26F6','Pseudomyogenic (epithelioid sarcoma-like) haemangioendothelioma','Y','2025-10-23 00:00:00'),(99329,11,'8C71.5','Pseudomyotonia','Y','2025-10-23 00:00:00'),(99330,11,'XH83J5','Pseudomyxoma peritonei','Y','2025-10-23 00:00:00'),(99331,11,'XH4U83','Pseudomyxoma peritonei with unknown primary site','Y','2025-10-23 00:00:00'),(99332,11,'DB32.0','Pseudo-obstruction of colon','Y','2025-10-23 00:00:00'),(99333,11,'EB90.30','Pseudoporphyria','Y','2025-10-23 00:00:00'),(99334,11,'9A61.2','Pseudopterygium of conjunctiva','Y','2025-10-23 00:00:00'),(99335,11,'XH35M3','Pseudosarcomatous carcinoma','Y','2025-10-23 00:00:00'),(99336,11,'8D41.2','Pseudotumour Cerebri related to Hypervitaminosis A','Y','2025-10-23 00:00:00'),(99337,11,'XH0Z16','Pseudovascular squamous cell carcinoma','Y','2025-10-23 00:00:00'),(99338,11,'EC40','Pseudoxanthoma elasticum','Y','2025-10-23 00:00:00'),(99339,11,'XM5JH5','Psilocin','Y','2025-10-23 00:00:00'),(99340,11,'XM4321','Psilocybe semilanceata mushroom','Y','2025-10-23 00:00:00'),(99341,11,'XM7642','Psilocybin','Y','2025-10-23 00:00:00'),(99342,11,'XA43E9','Psoas major muscle','Y','2025-10-23 00:00:00'),(99343,11,'XA3045','Psoas major tendon','Y','2025-10-23 00:00:00'),(99344,11,'XA7DA1','Psoas minor muscle','Y','2025-10-23 00:00:00'),(99345,11,'XA7V41','Psoas minor tendon','Y','2025-10-23 00:00:00'),(99346,11,'XM6Z57','Psoralea corylifolia plant','Y','2025-10-23 00:00:00'),(99347,11,'XM1MV4','Psoralen nonmedicinal','Y','2025-10-23 00:00:00'),(99348,11,'EH40.02','Psoriasiform napkin dermatitis','Y','2025-10-23 00:00:00'),(99349,11,'EA90','Psoriasis','Y','2025-10-23 00:00:00'),(99350,11,'EA90.5Y','Psoriasis of other specified site or distribution','Y','2025-10-23 00:00:00'),(99351,11,'EA90.5','Psoriasis of specified site or distribution','Y','2025-10-23 00:00:00'),(99352,11,'EA90.Z','Psoriasis of unspecified type','Y','2025-10-23 00:00:00'),(99353,11,'FA21','Psoriatic arthritis','Y','2025-10-23 00:00:00'),(99354,11,'FA21.Z','Psoriatic arthritis, unspecified','Y','2025-10-23 00:00:00'),(99355,11,'FA21.0','Psoriatic spondyloarthritis','Y','2025-10-23 00:00:00'),(99356,11,'XE43G','Psychoactive drug use, no information available','Y','2025-10-23 00:00:00'),(99357,11,'XE5TU','Psychoactive drug use, no suspicion or evidence of psychoactive drug use by any person involved in the injury event','Y','2025-10-23 00:00:00'),(99358,11,'XE28E','Psychoactive drug use, suspicion or evidence of psychoactive drug use by both the injured person and other persons involved in the injury event','Y','2025-10-23 00:00:00'),(99359,11,'XE8GW','Psychoactive drug use, suspicion or evidence of psychoactive drug use by other persons involved in the injury event','Y','2025-10-23 00:00:00'),(99360,11,'XE5VY','Psychoactive drug use, suspicion or evidence of psychoactive drug use by the injured person','Y','2025-10-23 00:00:00'),(99361,11,'XM31A7','Psychodysleptic drug','Y','2025-10-23 00:00:00'),(99362,11,'EC90.4','Psychogenic pruritus','Y','2025-10-23 00:00:00'),(99363,11,'PJ22','Psychological maltreatment','Y','2025-10-23 00:00:00'),(99364,11,'6E40','Psychological or behavioural factors affecting disorders or diseases classified elsewhere','Y','2025-10-23 00:00:00'),(99365,11,'6E40.Z','Psychological or behavioural factors affecting disorders or diseases classified elsewhere, unspecified','Y','2025-10-23 00:00:00'),(99366,11,'XE6XD','Psychological or psychiatric condition','Y','2025-10-23 00:00:00'),(99367,11,'6E40.1','Psychological symptoms affecting disorders or diseases classified elsewhere','Y','2025-10-23 00:00:00'),(99368,11,'MB23.M','Psychomotor agitation','Y','2025-10-23 00:00:00'),(99369,11,'MB23.N','Psychomotor retardation','Y','2025-10-23 00:00:00'),(99370,11,'6A25.4','Psychomotor symptoms in primary psychotic disorders','Y','2025-10-23 00:00:00'),(99371,11,'XS7G','Psychosocial factors present','Y','2025-10-23 00:00:00'),(99372,11,'XM6RB6','Psychostimulant amphetamine','Y','2025-10-23 00:00:00'),(99373,11,'XM9932','Psychostimulant caffeine','Y','2025-10-23 00:00:00'),(99374,11,'XM12M9','Psychostimulants, ADHD and nootropic agents','Y','2025-10-23 00:00:00'),(99375,11,'QB95.4','Psychotherapy','Y','2025-10-23 00:00:00'),(99376,11,'6C4F.6','Psychotic disorder induced by multiple specified psychoactive substances','Y','2025-10-23 00:00:00'),(99377,11,'6C4E.6','Psychotic disorder induced by other specified psychoactive substance','Y','2025-10-23 00:00:00'),(99378,11,'6C4G.6','Psychotic disorder induced by unknown or unspecified psychoactive substance','Y','2025-10-23 00:00:00'),(99379,11,'6D86.0','Psychotic symptoms in dementia','Y','2025-10-23 00:00:00'),(99380,11,'XM3Z58','Psychotomimetic agents','Y','2025-10-23 00:00:00'),(99381,11,'XM4YU2','Psyllium hydrophilic mucilloid','Y','2025-10-23 00:00:00'),(99382,11,'XM6QJ7','Pteroyltriglutamate','Y','2025-10-23 00:00:00'),(99383,11,'9A61.1','Pterygium','Y','2025-10-23 00:00:00'),(99384,11,'XA1K74','Pterygoid branches','Y','2025-10-23 00:00:00'),(99385,11,'XA5TG4','Pterygoid plexus','Y','2025-10-23 00:00:00'),(99386,11,'XA1VP6','Pterygoid vein','Y','2025-10-23 00:00:00'),(99387,11,'XA0QP2','Pterygoid venous plexus','Y','2025-10-23 00:00:00'),(99388,11,'XA0ER1','Pterygopalatine ganglion','Y','2025-10-23 00:00:00'),(99389,11,'1G03','Pthiriasis','Y','2025-10-23 00:00:00'),(99390,11,'XM5L79','p-Toluenediamine','Y','2025-10-23 00:00:00'),(99391,11,'XA12U4','Pubic hair','Y','2025-10-23 00:00:00'),(99392,11,'XA1UP6','Pubic symphysis','Y','2025-10-23 00:00:00'),(99393,11,'XA0GG0','Pubic vein','Y','2025-10-23 00:00:00'),(99394,11,'XA82W3','Pubis','Y','2025-10-23 00:00:00'),(99395,11,'XE5NE','Public highway, street or road','Y','2025-10-23 00:00:00'),(99396,11,'XE5C2','Public park','Y','2025-10-23 00:00:00'),(99397,11,'XE0AJ','Public playground','Y','2025-10-23 00:00:00'),(99398,11,'XE0ES','Public religious place','Y','2025-10-23 00:00:00'),(99399,11,'XE3YG','Public swimming centre','Y','2025-10-23 00:00:00'),(99400,11,'XE4N9','Public transport area or facility','Y','2025-10-23 00:00:00'),(99401,11,'XE5TH','Public use item','Y','2025-10-23 00:00:00'),(99402,11,'XA3HP4','Pubococcygeus muscle','Y','2025-10-23 00:00:00'),(99403,11,'XA5JV1','Pubococcygeus tendon','Y','2025-10-23 00:00:00'),(99404,11,'XA3GE8','Pubofemoral ligament','Y','2025-10-23 00:00:00'),(99405,11,'XA7MM8','Puborectalis muscle','Y','2025-10-23 00:00:00'),(99406,11,'XA66F5','Puborectalis tendon','Y','2025-10-23 00:00:00'),(99407,11,'XA4RK4','Pubovaginalis muscle','Y','2025-10-23 00:00:00'),(99408,11,'XA32R3','Pubovaginalis tendon','Y','2025-10-23 00:00:00'),(99409,11,'XE7M5','Puck, hard ball','Y','2025-10-23 00:00:00'),(99410,11,'XA6WU3','Pudendal nerve','Y','2025-10-23 00:00:00'),(99411,11,'XA9411','Pudendal plexus','Y','2025-10-23 00:00:00'),(99412,11,'XA3F81','Pudendal vein','Y','2025-10-23 00:00:00'),(99413,11,'SC10','Puerperal abdominal pain disorder (TM1)','Y','2025-10-23 00:00:00'),(99414,11,'JB44.6','Puerperal osteomalacia','Y','2025-10-23 00:00:00'),(99415,11,'JB40.0','Puerperal sepsis','Y','2025-10-23 00:00:00'),(99416,11,'SC11','Puerperal wind disorder (TM1)','Y','2025-10-23 00:00:00'),(99417,11,'XT1G','Puerperium','Y','2025-10-23 00:00:00'),(99418,11,'SC1Z','Puerperium associated disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(99419,11,'XM4R63','Puff adder snake venom','Y','2025-10-23 00:00:00'),(99420,11,'XM33K2','Puffer fish seafood poison','Y','2025-10-23 00:00:00'),(99421,11,'XE9DJ','Pulley component of medical device','Y','2025-10-23 00:00:00'),(99422,11,'1C10.0','Pulmonary actinomycosis','Y','2025-10-23 00:00:00'),(99423,11,'XH8468','Pulmonary adenomatosis','Y','2025-10-23 00:00:00'),(99424,11,'1F2L.1','Pulmonary adiaspiromycosis','Y','2025-10-23 00:00:00'),(99425,11,'KB27','Pulmonary air leak or related conditions originating in the perinatal period','Y','2025-10-23 00:00:00'),(99426,11,'KB27.Z','Pulmonary air leak or related conditions originating in the perinatal period, unspecified','Y','2025-10-23 00:00:00'),(99427,11,'CB06','Pulmonary alveolar microlithiasis','Y','2025-10-23 00:00:00'),(99428,11,'CB04.31','Pulmonary alveolar proteinosis','Y','2025-10-23 00:00:00'),(99429,11,'BB01.0','Pulmonary arterial hypertension','Y','2025-10-23 00:00:00'),(99430,11,'LA90.5','Pulmonary arteriovenous fistula','Y','2025-10-23 00:00:00'),(99431,11,'XA09J9','Pulmonary artery','Y','2025-10-23 00:00:00'),(99432,11,'LA8A.10','Pulmonary atresia with intact ventricular septum','Y','2025-10-23 00:00:00'),(99433,11,'XH5VH1','Pulmonary blastoma','Y','2025-10-23 00:00:00'),(99434,11,'XA2KY5','Pulmonary branches of vagus nerve','Y','2025-10-23 00:00:00'),(99435,11,'1F23.31','Pulmonary candidosis','Y','2025-10-23 00:00:00'),(99436,11,'XA0F36','Pulmonary capillaries','Y','2025-10-23 00:00:00'),(99437,11,'CB04.4','Pulmonary capillaritis','Y','2025-10-23 00:00:00'),(99438,11,'1F25.0','Pulmonary coccidioidomycosis','Y','2025-10-23 00:00:00'),(99439,11,'CB40.2','Pulmonary collapse','Y','2025-10-23 00:00:00'),(99440,11,'JA67.0','Pulmonary complications of anaesthesia during pregnancy','Y','2025-10-23 00:00:00'),(99441,11,'JB43.0','Pulmonary complications of anaesthesia during the puerperium','Y','2025-10-23 00:00:00'),(99442,11,'1F27.0','Pulmonary cryptococcosis','Y','2025-10-23 00:00:00'),(99443,11,'KB2K','Pulmonary cysts in newborn','Y','2025-10-23 00:00:00'),(99444,11,'KB2K.Z','Pulmonary cysts in newborn, unspecified','Y','2025-10-23 00:00:00'),(99445,11,'BA60.5','Pulmonary embolism as current complication following acute myocardial infarction','Y','2025-10-23 00:00:00'),(99446,11,'CB02','Pulmonary eosinophilia','Y','2025-10-23 00:00:00'),(99447,11,'CB02.Z','Pulmonary eosinophilia, unspecified','Y','2025-10-23 00:00:00'),(99448,11,'KB28','Pulmonary haemorrhage originating in the perinatal period','Y','2025-10-23 00:00:00'),(99449,11,'KB28.Z','Pulmonary haemorrhage originating in the perinatal period, unspecified','Y','2025-10-23 00:00:00'),(99450,11,'XH3UD9','Pulmonary hamartoma','Y','2025-10-23 00:00:00'),(99451,11,'BB0Z','Pulmonary heart disease or diseases of pulmonary circulation, unspecified','Y','2025-10-23 00:00:00'),(99452,11,'1F2A.0','Pulmonary histoplasmosis capsulati','Y','2025-10-23 00:00:00'),(99453,11,'BB01','Pulmonary hypertension','Y','2025-10-23 00:00:00'),(99454,11,'BB01.1','Pulmonary hypertension due to left heart disease','Y','2025-10-23 00:00:00'),(99455,11,'BB01.2','Pulmonary hypertension due to lung disease or hypoxia','Y','2025-10-23 00:00:00'),(99456,11,'BB01.4','Pulmonary hypertension with multifactorial mechanism','Y','2025-10-23 00:00:00'),(99457,11,'BB01.Z','Pulmonary hypertension, unspecified','Y','2025-10-23 00:00:00'),(99458,11,'1B21.0','Pulmonary infection due to non-tuberculous mycobacterium','Y','2025-10-23 00:00:00'),(99459,11,'XA9QW9','Pulmonary lymph node','Y','2025-10-23 00:00:00'),(99460,11,'CB04.1','Pulmonary lymphatic dysplasia syndromes','Y','2025-10-23 00:00:00'),(99461,11,'XH51Y9','Pulmonary myxoid sarcoma with EWSR1-CREB1 translocation','Y','2025-10-23 00:00:00'),(99462,11,'1C1B.0','Pulmonary nocardiosis','Y','2025-10-23 00:00:00'),(99463,11,'CB01','Pulmonary oedema','Y','2025-10-23 00:00:00'),(99464,11,'CA81.1','Pulmonary oedema due to chemicals, gases, fumes or vapours','Y','2025-10-23 00:00:00'),(99465,11,'1F2E.0','Pulmonary paracoccidioidomycosis','Y','2025-10-23 00:00:00'),(99466,11,'1F2G.0','Pulmonary pneumocystosis','Y','2025-10-23 00:00:00'),(99467,11,'1F2J.2','Pulmonary sporotrichosis','Y','2025-10-23 00:00:00'),(99468,11,'BB00','Pulmonary thromboembolism','Y','2025-10-23 00:00:00'),(99469,11,'BB00.Z','Pulmonary thromboembolism, unspecified','Y','2025-10-23 00:00:00'),(99470,11,'1F57.2','Pulmonary toxoplasmosis due to Toxoplasma gondii','Y','2025-10-23 00:00:00'),(99471,11,'XA3713','Pulmonary trunk','Y','2025-10-23 00:00:00'),(99472,11,'BB93','Pulmonary valvar abscess','Y','2025-10-23 00:00:00'),(99473,11,'XA6WC4','Pulmonary valve','Y','2025-10-23 00:00:00'),(99474,11,'BB9Z','Pulmonary valve disease, unspecified','Y','2025-10-23 00:00:00'),(99475,11,'BB91','Pulmonary valve insufficiency','Y','2025-10-23 00:00:00'),(99476,11,'BB91.Z','Pulmonary valve insufficiency, unspecified','Y','2025-10-23 00:00:00'),(99477,11,'BB90','Pulmonary valve stenosis','Y','2025-10-23 00:00:00'),(99478,11,'BB92','Pulmonary valve stenosis with insufficiency','Y','2025-10-23 00:00:00'),(99479,11,'BB92.Z','Pulmonary valve stenosis with insufficiency, unspecified','Y','2025-10-23 00:00:00'),(99480,11,'BB90.Z','Pulmonary valve stenosis, unspecified','Y','2025-10-23 00:00:00'),(99481,11,'XA4646','Pulmonary vasculature','Y','2025-10-23 00:00:00'),(99482,11,'XA8FY4','Pulmonary vein','Y','2025-10-23 00:00:00'),(99483,11,'XA5B71','Pulp','Y','2025-10-23 00:00:00'),(99484,11,'DA09.2','Pulp abscess','Y','2025-10-23 00:00:00'),(99485,11,'DA09.4','Pulp degeneration','Y','2025-10-23 00:00:00'),(99486,11,'XM8PE1','Pulp devitalizing paste','Y','2025-10-23 00:00:00'),(99487,11,'DA09.0','Pulpitis','Y','2025-10-23 00:00:00'),(99488,11,'XM03C0','Pulsatilla plant','Y','2025-10-23 00:00:00'),(99489,11,'XD66D8','Pulse Oximeters','Y','2025-10-23 00:00:00'),(99490,11,'XD4U89','Pulse Oximeters, Hand-held','Y','2025-10-23 00:00:00'),(99491,11,'XD5QV8','Pulse Oximeters, Spot-check','Y','2025-10-23 00:00:00'),(99492,11,'XD8QN4','Pulse Oximeters, Tabletop','Y','2025-10-23 00:00:00'),(99493,11,'MC81.4','Pulseless electrical activity, not elsewhere classified','Y','2025-10-23 00:00:00'),(99494,11,'XE0K1','Pump component of medical device','Y','2025-10-23 00:00:00'),(99495,11,'XE6Z5','Pumping problem','Y','2025-10-23 00:00:00'),(99496,11,'XE0TF','Pumping stopped','Y','2025-10-23 00:00:00'),(99497,11,'XM7SZ5','Pumpkin seed extract','Y','2025-10-23 00:00:00'),(99498,11,'9A11.4','Punctal stenosis','Y','2025-10-23 00:00:00'),(99499,11,'9B10.01','Punctate age-related cataract','Y','2025-10-23 00:00:00'),(99500,11,'XJ64N','Puncture fracture','Y','2025-10-23 00:00:00'),(99501,11,'NB62.6','Puncture wound or laceration of dura mater of lumbar spinal cord','Y','2025-10-23 00:00:00'),(99502,11,'NB51.3','Puncture wound with foreign body of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(99503,11,'ND12.2','Puncture wound with foreign body of ankle or foot','Y','2025-10-23 00:00:00'),(99504,11,'NC52.03','Puncture wound with foreign body of finger or thumb','Y','2025-10-23 00:00:00'),(99505,11,'NC31.3','Puncture wound with foreign body of forearm','Y','2025-10-23 00:00:00'),(99506,11,'NA01.5','Puncture wound with foreign body of head','Y','2025-10-23 00:00:00'),(99507,11,'NC71.3','Puncture wound with foreign body of hip or thigh','Y','2025-10-23 00:00:00'),(99508,11,'NC91.3','Puncture wound with foreign body of lower leg','Y','2025-10-23 00:00:00'),(99509,11,'NA21.3','Puncture wound with foreign body of neck','Y','2025-10-23 00:00:00'),(99510,11,'NC52.12','Puncture wound with foreign body of other parts of wrist or hand','Y','2025-10-23 00:00:00'),(99511,11,'NC11.3','Puncture wound with foreign body of shoulder or upper arm','Y','2025-10-23 00:00:00'),(99512,11,'NA81.3','Puncture wound with foreign body of thorax','Y','2025-10-23 00:00:00'),(99513,11,'ND12.63','Puncture wound with foreign body of toe','Y','2025-10-23 00:00:00'),(99514,11,'NB51.2','Puncture wound without foreign body of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(99515,11,'ND12.3','Puncture wound without foreign body of ankle or foot','Y','2025-10-23 00:00:00'),(99516,11,'NC52.02','Puncture wound without foreign body of finger or thumb','Y','2025-10-23 00:00:00'),(99517,11,'NC31.2','Puncture wound without foreign body of forearm','Y','2025-10-23 00:00:00'),(99518,11,'NA01.4','Puncture wound without foreign body of head','Y','2025-10-23 00:00:00'),(99519,11,'NC71.2','Puncture wound without foreign body of hip or thigh','Y','2025-10-23 00:00:00'),(99520,11,'NC91.2','Puncture wound without foreign body of lower leg','Y','2025-10-23 00:00:00'),(99521,11,'NA21.2','Puncture wound without foreign body of neck','Y','2025-10-23 00:00:00'),(99522,11,'NC52.13','Puncture wound without foreign body of other parts of wrist or hand','Y','2025-10-23 00:00:00'),(99523,11,'NC11.2','Puncture wound without foreign body of shoulder or upper arm','Y','2025-10-23 00:00:00'),(99524,11,'NA81.2','Puncture wound without foreign body of thorax','Y','2025-10-23 00:00:00'),(99525,11,'ND12.62','Puncture wound without foreign body of toe','Y','2025-10-23 00:00:00'),(99526,11,'XA0B15','Pupil','Y','2025-10-23 00:00:00'),(99527,11,'XA0571','Pupillary membrane','Y','2025-10-23 00:00:00'),(99528,11,'8D84','Pure autonomic nervous system failure','Y','2025-10-23 00:00:00'),(99529,11,'8B26.50','Pure motor lacunar syndrome','Y','2025-10-23 00:00:00'),(99530,11,'3A6Z','Pure red cell aplasia, unspecified','Y','2025-10-23 00:00:00'),(99531,11,'8B26.51','Pure sensory lacunar syndrome','Y','2025-10-23 00:00:00'),(99532,11,'MB29.3','Purging behaviour','Y','2025-10-23 00:00:00'),(99533,11,'XM71S1','Purine analogues','Y','2025-10-23 00:00:00'),(99534,11,'XM5NF4','Purine derivatives','Y','2025-10-23 00:00:00'),(99535,11,'XM6BR0','Purine diuretics','Y','2025-10-23 00:00:00'),(99536,11,'EF3Z','Purpura of unspecified aetiology','Y','2025-10-23 00:00:00'),(99537,11,'EF30','Purpura or bruising due to disorders of coagulation','Y','2025-10-23 00:00:00'),(99538,11,'EE40.32','Purpura or bruising due to vascular fragility','Y','2025-10-23 00:00:00'),(99539,11,'9C20.2','Purulent endophthalmitis','Y','2025-10-23 00:00:00'),(99540,11,'XE168','Push chair as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(99541,11,'XE9SV','Push chair as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(99542,11,'XE8RF','Pusher component of medical device','Y','2025-10-23 00:00:00'),(99543,11,'XM57P9','Puss caterpillar venom','Y','2025-10-23 00:00:00'),(99544,11,'EA90.4','Pustular psoriasis','Y','2025-10-23 00:00:00'),(99545,11,'XA8KA5','Putamen','Y','2025-10-23 00:00:00'),(99546,11,'XN28L','Puumala virus','Y','2025-10-23 00:00:00'),(99547,11,'XH8MN8','PUVA keratosis','Y','2025-10-23 00:00:00'),(99548,11,'XA4EC5','Pyloric antrum','Y','2025-10-23 00:00:00'),(99549,11,'XA2AX1','Pyloric lymph node','Y','2025-10-23 00:00:00'),(99550,11,'EB21','Pyoderma gangrenosum','Y','2025-10-23 00:00:00'),(99551,11,'1B75.3','Pyogenic abscess of the skin','Y','2025-10-23 00:00:00'),(99552,11,'GB58','Pyonephrosis','Y','2025-10-23 00:00:00'),(99553,11,'CA44','Pyothorax','Y','2025-10-23 00:00:00'),(99554,11,'XM49C9','Pyrabital','Y','2025-10-23 00:00:00'),(99555,11,'XA5097','Pyramid','Y','2025-10-23 00:00:00'),(99556,11,'XA5109','Pyramidal lobe of thyroid gland','Y','2025-10-23 00:00:00'),(99557,11,'XA6AY9','Pyramidalis muscle','Y','2025-10-23 00:00:00'),(99558,11,'XA49W5','Pyramidalis tendon','Y','2025-10-23 00:00:00'),(99559,11,'XM90N4','Pyrantel','Y','2025-10-23 00:00:00'),(99560,11,'XM9FU8','Pyrathiazine','Y','2025-10-23 00:00:00'),(99561,11,'XM4611','Pyrazinamide','Y','2025-10-23 00:00:00'),(99562,11,'XM5H28','Pyrazole (derivatives)','Y','2025-10-23 00:00:00'),(99563,11,'XM5L33','Pyrazolone analgesic','Y','2025-10-23 00:00:00'),(99564,11,'XM5HR7','Pyrethrin nonmedicinal','Y','2025-10-23 00:00:00'),(99565,11,'XM4AP8','Pyrethroid insecticide','Y','2025-10-23 00:00:00'),(99566,11,'XM03K3','Pyrethrum extract','Y','2025-10-23 00:00:00'),(99567,11,'JB0D.2','Pyrexia during labour, not elsewhere classified','Y','2025-10-23 00:00:00'),(99568,11,'JB40.4','Pyrexia of unknown origin following delivery','Y','2025-10-23 00:00:00'),(99569,11,'XM2NF0','Pyridine','Y','2025-10-23 00:00:00'),(99570,11,'XM6DU2','Pyridine aldoxime methiodide','Y','2025-10-23 00:00:00'),(99571,11,'XM6043','Pyridine aldoxime methyl chloride','Y','2025-10-23 00:00:00'),(99572,11,'XM7TE7','Pyridine vapor','Y','2025-10-23 00:00:00'),(99573,11,'XM3WM4','Pyridium','Y','2025-10-23 00:00:00'),(99574,11,'XM4NE1','Pyridostigmine','Y','2025-10-23 00:00:00'),(99575,11,'XM41N9','Pyridostigmine bromide','Y','2025-10-23 00:00:00'),(99576,11,'8A61.00','Pyridoxal dependent epilepsy','Y','2025-10-23 00:00:00'),(99577,11,'XM4GD2','Pyridoxal phosphate','Y','2025-10-23 00:00:00'),(99578,11,'XM5MM0','Pyridoxine','Y','2025-10-23 00:00:00'),(99579,11,'XM54R1','Pyrilamine','Y','2025-10-23 00:00:00'),(99580,11,'XM0XQ2','Pyrimethamine','Y','2025-10-23 00:00:00'),(99581,11,'XM90Z4','Pyrimethamine with sulfadoxine','Y','2025-10-23 00:00:00'),(99582,11,'XM9584','Pyrimidine analogues','Y','2025-10-23 00:00:00'),(99583,11,'XM2FK2','Pyrimidine antagonist','Y','2025-10-23 00:00:00'),(99584,11,'XM8QH8','Pyriminil','Y','2025-10-23 00:00:00'),(99585,11,'XM6YQ8','Pyrithione zinc','Y','2025-10-23 00:00:00'),(99586,11,'XM2MC9','Pyrithyldione','Y','2025-10-23 00:00:00'),(99587,11,'XM1LB1','Pyritinol','Y','2025-10-23 00:00:00'),(99588,11,'XM2A13','Pyrogallic acid','Y','2025-10-23 00:00:00'),(99589,11,'XM8BE0','Pyrogallol','Y','2025-10-23 00:00:00'),(99590,11,'6C70','Pyromania','Y','2025-10-23 00:00:00'),(99591,11,'XM9VE3','Pyroxylin','Y','2025-10-23 00:00:00'),(99592,11,'XM57C9','Pyrrobutamine','Y','2025-10-23 00:00:00'),(99593,11,'XM3PV6','Pyrrolizidine alkaloids','Y','2025-10-23 00:00:00'),(99594,11,'XM6UW2','Pyrrolnitrin','Y','2025-10-23 00:00:00'),(99595,11,'5C53.03','Pyruvate carboxylase deficiency','Y','2025-10-23 00:00:00'),(99596,11,'5C53.02','Pyruvate dehydrogenase complex deficiency','Y','2025-10-23 00:00:00'),(99597,11,'5C53.00','Pyruvate kinase deficiency','Y','2025-10-23 00:00:00'),(99598,11,'XM5PX0','Pyrvinium','Y','2025-10-23 00:00:00'),(99599,11,'1G60.1','Pythiosis','Y','2025-10-23 00:00:00'),(99600,11,'XN47C','Pythium','Y','2025-10-23 00:00:00'),(99601,11,'MF97','Pyuria','Y','2025-10-23 00:00:00'),(99602,11,'XM8QQ1','PZI','Y','2025-10-23 00:00:00'),(99603,11,'1C33','Q fever','Y','2025-10-23 00:00:00'),(99604,11,'XM97N6','QazVac','Y','2025-10-23 00:00:00'),(99605,11,'SE94','Qi collapse pattern (TM1)','Y','2025-10-23 00:00:00'),(99606,11,'SE90','Qi deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(99607,11,'SD70','Qi goiter disorder (TM1)','Y','2025-10-23 00:00:00'),(99608,11,'SE9Z','Qi patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(99609,11,'SG91','Qi phase dampness and heat pattern (TM1)','Y','2025-10-23 00:00:00'),(99610,11,'SG9Z','Qi phase patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(99611,11,'SE93','Qi sinking pattern (TM1)','Y','2025-10-23 00:00:00'),(99612,11,'SE91','Qi stagnation pattern (TM1)','Y','2025-10-23 00:00:00'),(99613,11,'SE92','Qi uprising pattern (TM1)','Y','2025-10-23 00:00:00'),(99614,11,'SD7Z','Qi, blood and fluid disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(99615,11,'XM5KU5','Quaalude','Y','2025-10-23 00:00:00'),(99616,11,'XE9KN','Quad bike as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(99617,11,'XE3SA','Quad bike as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(99618,11,'MC19','Quadrantanopia','Y','2025-10-23 00:00:00'),(99619,11,'XA8B40','Quadrate ligament','Y','2025-10-23 00:00:00'),(99620,11,'XA13D3','Quadrate lobe of liver','Y','2025-10-23 00:00:00'),(99621,11,'XA1GP3','Quadratus lumborum muscle','Y','2025-10-23 00:00:00'),(99622,11,'XA34K5','Quadratus lumborum tendon','Y','2025-10-23 00:00:00'),(99623,11,'XA41G3','Quadratus plantae muscle','Y','2025-10-23 00:00:00'),(99624,11,'XA1L44','Quadratus plantae tendon','Y','2025-10-23 00:00:00'),(99625,11,'XA1BT5','Quadriceps femoris muscle','Y','2025-10-23 00:00:00'),(99626,11,'XA9420','Quadriceps femoris tendon','Y','2025-10-23 00:00:00'),(99627,11,'JA80.2','Quadruplet pregnancy','Y','2025-10-23 00:00:00'),(99628,11,'QA46.8','Quadruplets, all liveborn','Y','2025-10-23 00:00:00'),(99629,11,'QA46.A','Quadruplets, all stillborn','Y','2025-10-23 00:00:00'),(99630,11,'QA46.9','Quadruplets, some liveborn','Y','2025-10-23 00:00:00'),(99631,11,'3B62','Qualitative platelet defects','Y','2025-10-23 00:00:00'),(99632,11,'3B62.Z','Qualitative platelet defects, unspecified','Y','2025-10-23 00:00:00'),(99633,11,'XM97F8','Quarternary ammonium anti-infective','Y','2025-10-23 00:00:00'),(99634,11,'XM3YS6','Quarternary ammonium ganglion blocking','Y','2025-10-23 00:00:00'),(99635,11,'XM1JN1','Quarternary ammonium parasympatholytic','Y','2025-10-23 00:00:00'),(99636,11,'XM9R96','Quassia','Y','2025-10-23 00:00:00'),(99637,11,'XM42F4','Quazepam','Y','2025-10-23 00:00:00'),(99638,11,'XM4G70','Quetiapine','Y','2025-10-23 00:00:00'),(99639,11,'XH2H04','Queyrat erythroplasia','Y','2025-10-23 00:00:00'),(99640,11,'XM3YG8','Quifenadine','Y','2025-10-23 00:00:00'),(99641,11,'XM8A78','Quillaja extract','Y','2025-10-23 00:00:00'),(99642,11,'XM10R3','Quinacrine','Y','2025-10-23 00:00:00'),(99643,11,'XM1NG6','Quinaglute','Y','2025-10-23 00:00:00'),(99644,11,'XM96P1','Quinagolide','Y','2025-10-23 00:00:00'),(99645,11,'XM7UW2','Quinalphos','Y','2025-10-23 00:00:00'),(99646,11,'XM3DU1','Quinapril','Y','2025-10-23 00:00:00'),(99647,11,'XM8788','Quinbolone','Y','2025-10-23 00:00:00'),(99648,11,'XM9HS1','Quinestradol','Y','2025-10-23 00:00:00'),(99649,11,'XM3HH8','Quinestrol','Y','2025-10-23 00:00:00'),(99650,11,'XM3WN8','Quinethazone','Y','2025-10-23 00:00:00'),(99651,11,'XM1DX1','Quingestanol','Y','2025-10-23 00:00:00'),(99652,11,'XM4AD5','Quingestanol and ethinylestradiol','Y','2025-10-23 00:00:00'),(99653,11,'XM8AL5','Quinidine','Y','2025-10-23 00:00:00'),(99654,11,'XM8RC3','Quinine','Y','2025-10-23 00:00:00'),(99655,11,'XM8WV6','Quiniobine','Y','2025-10-23 00:00:00'),(99656,11,'XM6A20','Quinisocaine','Y','2025-10-23 00:00:00'),(99657,11,'XM0RU7','Quinocide','Y','2025-10-23 00:00:00'),(99658,11,'XM8U22','Quinoline (derivatives)','Y','2025-10-23 00:00:00'),(99659,11,'XM7YK9','Quinolones and derivatives','Y','2025-10-23 00:00:00'),(99660,11,'QA46.B','Quintuplets, all liveborn','Y','2025-10-23 00:00:00'),(99661,11,'QA46.D','Quintuplets, all stillborn','Y','2025-10-23 00:00:00'),(99662,11,'QA46.C','Quintuplets, some liveborn','Y','2025-10-23 00:00:00'),(99663,11,'XM34S5','Quinupramine','Y','2025-10-23 00:00:00'),(99664,11,'XM4NJ6','Quinupristin','Y','2025-10-23 00:00:00'),(99665,11,'XM1L31','Quizartinib','Y','2025-10-23 00:00:00'),(99666,11,'XM87E0','Quotane','Y','2025-10-23 00:00:00'),(99667,11,'XM17D1','Rabbitfish venom','Y','2025-10-23 00:00:00'),(99668,11,'XM3M01','Rabeprazole','Y','2025-10-23 00:00:00'),(99669,11,'1C82','Rabies','Y','2025-10-23 00:00:00'),(99670,11,'XM5R25','Rabies immunoglobulin','Y','2025-10-23 00:00:00'),(99671,11,'XM6T09','Rabies vaccines','Y','2025-10-23 00:00:00'),(99672,11,'XN796','Rabies virus','Y','2025-10-23 00:00:00'),(99673,11,'XM7BE8','Rabies, inactivated, whole virus','Y','2025-10-23 00:00:00'),(99674,11,'XE387','Race car','Y','2025-10-23 00:00:00'),(99675,11,'XM86M9','Racecadotril','Y','2025-10-23 00:00:00'),(99676,11,'XM6625','Racemoramide','Y','2025-10-23 00:00:00'),(99677,11,'XH2HR3','Racemose haemangioma','Y','2025-10-23 00:00:00'),(99678,11,'XM5HL3','Racepinephrine','Y','2025-10-23 00:00:00'),(99679,11,'XE8BN','Racetrack or racecourse','Y','2025-10-23 00:00:00'),(99680,11,'XE76K','Rachet component of medical device','Y','2025-10-23 00:00:00'),(99681,11,'MB21.B','Racing thoughts','Y','2025-10-23 00:00:00'),(99682,11,'XE002','Rack, bookshelf','Y','2025-10-23 00:00:00'),(99683,11,'XM7L04','Raclopride','Y','2025-10-23 00:00:00'),(99684,11,'XE9MP','Racquet','Y','2025-10-23 00:00:00'),(99685,11,'XE0KE','Racquet sports','Y','2025-10-23 00:00:00'),(99686,11,'XA8RG5','Radial artery','Y','2025-10-23 00:00:00'),(99687,11,'XA3LK1','Radial border of wrist','Y','2025-10-23 00:00:00'),(99688,11,'XA9W25','Radial branches at the','Y','2025-10-23 00:00:00'),(99689,11,'XA91J7','Radial branches in the hand of the radial artery','Y','2025-10-23 00:00:00'),(99690,11,'XA3SL1','Radial branches in the','Y','2025-10-23 00:00:00'),(99691,11,'XA3PZ4','Radial collateral artery','Y','2025-10-23 00:00:00'),(99692,11,'XA9WJ8','Radial collateral ligament','Y','2025-10-23 00:00:00'),(99693,11,'LB80.2','Radial deviation of fingers','Y','2025-10-23 00:00:00'),(99694,11,'XA6YE5','Radial groove','Y','2025-10-23 00:00:00'),(99695,11,'XA2N25','Radial head','Y','2025-10-23 00:00:00'),(99696,11,'LB99.2','Radial hemimelia','Y','2025-10-23 00:00:00'),(99697,11,'XA3HQ3','Radial lymphatic vessel','Y','2025-10-23 00:00:00'),(99698,11,'XA0ZF7','Radial neck','Y','2025-10-23 00:00:00'),(99699,11,'XA8BJ3','Radial nerve','Y','2025-10-23 00:00:00'),(99700,11,'XA3H61','Radial recurrent artery','Y','2025-10-23 00:00:00'),(99701,11,'FB40.5','Radial styloid tenosynovitis','Y','2025-10-23 00:00:00'),(99702,11,'XA32L8','Radial vein','Y','2025-10-23 00:00:00'),(99703,11,'XA62C1','Radialis indicis of the radial artery','Y','2025-10-23 00:00:00'),(99704,11,'XA8RC0','Radiate ligament','Y','2025-10-23 00:00:00'),(99705,11,'XA43Z7','Radiate sternocostal ligament','Y','2025-10-23 00:00:00'),(99706,11,'DA63.51','Radiation duodenal ulcer','Y','2025-10-23 00:00:00'),(99707,11,'DA51.53','Radiation duodenitis','Y','2025-10-23 00:00:00'),(99708,11,'DA60.63','Radiation gastric ulcer','Y','2025-10-23 00:00:00'),(99709,11,'DA42.81','Radiation gastritis','Y','2025-10-23 00:00:00'),(99710,11,'XE0B1','Radiation leak','Y','2025-10-23 00:00:00'),(99711,11,'DA25.32','Radiation oesophageal ulcer','Y','2025-10-23 00:00:00'),(99712,11,'DA24.22','Radiation oesophagitis','Y','2025-10-23 00:00:00'),(99713,11,'XE5F0','Radiation output failure','Y','2025-10-23 00:00:00'),(99714,11,'XE1ED','Radiation output problem','Y','2025-10-23 00:00:00'),(99715,11,'XE0JA','Radiation overexposure','Y','2025-10-23 00:00:00'),(99716,11,'DB33.42','Radiation proctitis','Y','2025-10-23 00:00:00'),(99717,11,'9B71.2','Radiation retinopathy','Y','2025-10-23 00:00:00'),(99718,11,'PK81.C','Radiation therapy associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(99719,11,'XE74E','Radiation underexposure','Y','2025-10-23 00:00:00'),(99720,11,'DB33.41','Radiation-induced colitis','Y','2025-10-23 00:00:00'),(99721,11,'DA09.8','Radicular cyst','Y','2025-10-23 00:00:00'),(99722,11,'8B93','Radiculopathy','Y','2025-10-23 00:00:00'),(99723,11,'8B93.0','Radiculopathy due to compression','Y','2025-10-23 00:00:00'),(99724,11,'8B93.2','Radiculopathy due to electric shock or lightning','Y','2025-10-23 00:00:00'),(99725,11,'8B93.6','Radiculopathy due to intervertebral disc disorders','Y','2025-10-23 00:00:00'),(99726,11,'8B93.1','Radiculopathy due to metabolic disorders','Y','2025-10-23 00:00:00'),(99727,11,'8B93.7','Radiculopathy due to neoplastic disease','Y','2025-10-23 00:00:00'),(99728,11,'8B93.4','Radiculopathy due to nutritional deficiencies','Y','2025-10-23 00:00:00'),(99729,11,'8B93.3','Radiculopathy due to radiation injury','Y','2025-10-23 00:00:00'),(99730,11,'8B93.8','Radiculopathy due to spondylosis','Y','2025-10-23 00:00:00'),(99731,11,'8B93.5','Radiculopathy due to toxicity','Y','2025-10-23 00:00:00'),(99732,11,'8B93.Z','Radiculopathy, unspecified','Y','2025-10-23 00:00:00'),(99733,11,'XA0P38','Radiocarpal joint','Y','2025-10-23 00:00:00'),(99734,11,'XE9Y9','Radiofrequency induced overheating of device identified','Y','2025-10-23 00:00:00'),(99735,11,'XE1LT','Radiofrequency interference with device identified','Y','2025-10-23 00:00:00'),(99736,11,'PK98','Radiological devices associated with injury or harm','Y','2025-10-23 00:00:00'),(99737,11,'PK98.0','Radiological devices associated with injury or harm, diagnostic or monitoring devices','Y','2025-10-23 00:00:00'),(99738,11,'PK98.4','Radiological devices associated with injury or harm, miscellaneous devices, not elsewhere classified','Y','2025-10-23 00:00:00'),(99739,11,'PK98.2','Radiological devices associated with injury or harm, prosthetic or other implants, materials or accessory devices','Y','2025-10-23 00:00:00'),(99740,11,'PK98.3','Radiological devices associated with injury or harm, surgical instruments, materials or devices','Y','2025-10-23 00:00:00'),(99741,11,'PK98.1','Radiological devices associated with injury or harm, therapeutic, nonsurgical or rehabilitative devices','Y','2025-10-23 00:00:00'),(99742,11,'PK98.Z','Radiological devices associated with injury or harm, unspecified','Y','2025-10-23 00:00:00'),(99743,11,'QA00.B','Radiological examination','Y','2025-10-23 00:00:00'),(99744,11,'EL63','Radionecrosis of skin due to therapeutic ionizing irradiation','Y','2025-10-23 00:00:00'),(99745,11,'QB96','Radiotherapy session','Y','2025-10-23 00:00:00'),(99746,11,'XA0PY0','Radioulnar ligament','Y','2025-10-23 00:00:00'),(99747,11,'LB90.3','Radio-ulnar synostosis','Y','2025-10-23 00:00:00'),(99748,11,'XA3WG1','Radius','Y','2025-10-23 00:00:00'),(99749,11,'XE4JZ','Rail component of medical device','Y','2025-10-23 00:00:00'),(99750,11,'XE0ZK','Rail vehicle','Y','2025-10-23 00:00:00'),(99751,11,'XE320','Railway train as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(99752,11,'XE1KN','Railway train as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(99753,11,'PF7Z','Railway transport injury event of undetermined intent of unspecified type','Y','2025-10-23 00:00:00'),(99754,11,'PF70','Railway transport injury event of undetermined intent with collision or derailment','Y','2025-10-23 00:00:00'),(99755,11,'PF71','Railway transport injury event of undetermined intent without collision or derailment','Y','2025-10-23 00:00:00'),(99756,11,'XE6DQ','Railway vehicle as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(99757,11,'XE8YD','Railway vehicle as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(99758,11,'MA14.1C','Raised antibody titre','Y','2025-10-23 00:00:00'),(99759,11,'MD32','Rales','Y','2025-10-23 00:00:00'),(99760,11,'XM2CF9','Raloxifene','Y','2025-10-23 00:00:00'),(99761,11,'XM82D3','Raltegravir','Y','2025-10-23 00:00:00'),(99762,11,'XM5NF9','Raltitrexed','Y','2025-10-23 00:00:00'),(99763,11,'XM4Y11','Ramelteon','Y','2025-10-23 00:00:00'),(99764,11,'XM0K68','Ramifenazone','Y','2025-10-23 00:00:00'),(99765,11,'XM2A48','Ramipril','Y','2025-10-23 00:00:00'),(99766,11,'XM6Y05','Ramucirumab','Y','2025-10-23 00:00:00'),(99767,11,'XA3QP2','Ramus intermedius artery','Y','2025-10-23 00:00:00'),(99768,11,'XA5969','Ramus of mandible','Y','2025-10-23 00:00:00'),(99769,11,'XM95Y7','Ranibizumab','Y','2025-10-23 00:00:00'),(99770,11,'XM64P5','Ranimustine','Y','2025-10-23 00:00:00'),(99771,11,'XM6WY8','Ranitidine','Y','2025-10-23 00:00:00'),(99772,11,'XM1ZT1','Ranitidine bismuth citrate','Y','2025-10-23 00:00:00'),(99773,11,'XM9DF5','Ranolazine','Y','2025-10-23 00:00:00'),(99774,11,'XM0NB5','Ranunculus plant','Y','2025-10-23 00:00:00'),(99775,11,'6A80.5','Rapid cycling','Y','2025-10-23 00:00:00'),(99776,11,'XT3Z','Rapid onset','Y','2025-10-23 00:00:00'),(99777,11,'XM6XW7','Rasagiline','Y','2025-10-23 00:00:00'),(99778,11,'XM4NB1','Rasburicase','Y','2025-10-23 00:00:00'),(99779,11,'ME66.6','Rash','Y','2025-10-23 00:00:00'),(99780,11,'ME66.61','Rash generalised','Y','2025-10-23 00:00:00'),(99781,11,'ME66.60','Rash localised','Y','2025-10-23 00:00:00'),(99782,11,'ME66.6Z','Rash, unspecified','Y','2025-10-23 00:00:00'),(99783,11,'XE8KL','Rat or mouse trap used for work-related activity','Y','2025-10-23 00:00:00'),(99784,11,'XE8X3','Rat, guinea pig, mouse','Y','2025-10-23 00:00:00'),(99785,11,'1B90','Rat-bite fevers','Y','2025-10-23 00:00:00'),(99786,11,'XA9787','Rathke pouch','Y','2025-10-23 00:00:00'),(99787,11,'XE2RM','Rattlesnake','Y','2025-10-23 00:00:00'),(99788,11,'XM1504','Rattlesnake venom','Y','2025-10-23 00:00:00'),(99789,11,'XM1B47','Raubasine','Y','2025-10-23 00:00:00'),(99790,11,'XM01D4','Raudixin','Y','2025-10-23 00:00:00'),(99791,11,'XM74W2','Rautina','Y','2025-10-23 00:00:00'),(99792,11,'XM5FH0','Rautotal','Y','2025-10-23 00:00:00'),(99793,11,'XM5PW7','Rauwoldin','Y','2025-10-23 00:00:00'),(99794,11,'XM67X4','Rauwolfia alkaloids','Y','2025-10-23 00:00:00'),(99795,11,'XM39Z4','Rauwolfia alkaloids, whole root','Y','2025-10-23 00:00:00'),(99796,11,'XE1Q3','Raven, crow, magpie','Y','2025-10-23 00:00:00'),(99797,11,'XN5M2','Ravn virus','Y','2025-10-23 00:00:00'),(99798,11,'XM31G3','Ravulizumab','Y','2025-10-23 00:00:00'),(99799,11,'XM0U74','Raxibacumab','Y','2025-10-23 00:00:00'),(99800,11,'BD42','Raynaud phenomenon','Y','2025-10-23 00:00:00'),(99801,11,'BD42.Z','Raynaud phenomenon, unspecified','Y','2025-10-23 00:00:00'),(99802,11,'XM9N08','Razi COV PARS','Y','2025-10-23 00:00:00'),(99803,11,'XE22C','Razor, razor blade','Y','2025-10-23 00:00:00'),(99804,11,'XM2CG3','Razoxane','Y','2025-10-23 00:00:00'),(99805,11,'KD34','Reactions or intoxications due to drugs administered to fetus or newborn','Y','2025-10-23 00:00:00'),(99806,11,'FA11','Reactive arthropathies','Y','2025-10-23 00:00:00'),(99807,11,'FA11.Z','Reactive arthropathies, unspecified','Y','2025-10-23 00:00:00'),(99808,11,'6B44','Reactive attachment disorder','Y','2025-10-23 00:00:00'),(99809,11,'2B32.1','Reactive plasmacytic hyperplasia','Y','2025-10-23 00:00:00'),(99810,11,'XE25Z','Reactivity problem identified with device','Y','2025-10-23 00:00:00'),(99811,11,'XD1C76','Reagents for DNA and/or RNA extraction and preparation : bacteria and/or virus','Y','2025-10-23 00:00:00'),(99812,11,'XM32L9','Realgar','Y','2025-10-23 00:00:00'),(99813,11,'XM2891','Rebamipide','Y','2025-10-23 00:00:00'),(99814,11,'XM70H2','Reboxetine','Y','2025-10-23 00:00:00'),(99815,11,'XE2KA','Receiver component of medical device','Y','2025-10-23 00:00:00'),(99816,11,'XE6SG','Receiver stimulator unit component of medical device','Y','2025-10-23 00:00:00'),(99817,11,'8C70.41','Recessive limb-girdle muscular dystrophy','Y','2025-10-23 00:00:00'),(99818,11,'MB28.E','Recklessness','Y','2025-10-23 00:00:00'),(99819,11,'XM3CT4','Recombinant SARS-CoV-2 vaccines','Y','2025-10-23 00:00:00'),(99820,11,'VW60','Recreation and leisure','Y','2025-10-23 00:00:00'),(99821,11,'VD50','Recreation and leisure [WHODAS]','Y','2025-10-23 00:00:00'),(99822,11,'XE7GY','Recreational area, cultural area, or public building','Y','2025-10-23 00:00:00'),(99823,11,'1C30.1','Recrudescent typhus','Y','2025-10-23 00:00:00'),(99824,11,'DB36.1','Rectal abscess','Y','2025-10-23 00:00:00'),(99825,11,'DB36.12','Rectal cellulitis','Y','2025-10-23 00:00:00'),(99826,11,'DB31.2','Rectal prolapse','Y','2025-10-23 00:00:00'),(99827,11,'ME09','Rectal tenesmus','Y','2025-10-23 00:00:00'),(99828,11,'XA5T10','Rectal vein','Y','2025-10-23 00:00:00'),(99829,11,'XA5JV6','Rectal venous plexus','Y','2025-10-23 00:00:00'),(99830,11,'XA33J5','Rectosigmoid junction','Y','2025-10-23 00:00:00'),(99831,11,'GC04.16','Rectovaginal fistula','Y','2025-10-23 00:00:00'),(99832,11,'XA60B5','Rectovaginal septum','Y','2025-10-23 00:00:00'),(99833,11,'XA37K5','Rectovesical septum','Y','2025-10-23 00:00:00'),(99834,11,'XA4KU2','Rectum','Y','2025-10-23 00:00:00'),(99835,11,'XA1N65','Rectus abdominis muscle','Y','2025-10-23 00:00:00'),(99836,11,'XA1HT1','Rectus abdominis tendon','Y','2025-10-23 00:00:00'),(99837,11,'XA16A4','Rectus capitis anterior muscle','Y','2025-10-23 00:00:00'),(99838,11,'XA8CQ6','Rectus capitis anterior tendon','Y','2025-10-23 00:00:00'),(99839,11,'XA0JK2','Rectus capitis lateralis muscle','Y','2025-10-23 00:00:00'),(99840,11,'XA4RG2','Rectus capitis lateralis tendon','Y','2025-10-23 00:00:00'),(99841,11,'XA20Q8','Rectus capitis posterior major muscle','Y','2025-10-23 00:00:00'),(99842,11,'XA6WL6','Rectus capitis posterior major tendon','Y','2025-10-23 00:00:00'),(99843,11,'XA80F2','Rectus capitis posterior minor muscle','Y','2025-10-23 00:00:00'),(99844,11,'XA1XH8','Rectus capitis posterior minor tendon','Y','2025-10-23 00:00:00'),(99845,11,'XA5447','Rectus femoris muscle','Y','2025-10-23 00:00:00'),(99846,11,'XA4ZG0','Rectus femoris tendon','Y','2025-10-23 00:00:00'),(99847,11,'XT44','Recurrent','Y','2025-10-23 00:00:00'),(99848,11,'AB90','Recurrent cholesteatoma of postmastoidectomy cavity','Y','2025-10-23 00:00:00'),(99849,11,'SE34','Recurrent convulsion disorder (TM1)','Y','2025-10-23 00:00:00'),(99850,11,'6A71','Recurrent depressive disorder','Y','2025-10-23 00:00:00'),(99851,11,'6A71.0','Recurrent depressive disorder, current episode mild','Y','2025-10-23 00:00:00'),(99852,11,'6A71.2','Recurrent depressive disorder, current episode moderate, with psychotic symptoms','Y','2025-10-23 00:00:00'),(99853,11,'6A71.1','Recurrent depressive disorder, current episode moderate, without psychotic symptoms','Y','2025-10-23 00:00:00'),(99854,11,'6A71.4','Recurrent depressive disorder, current episode severe, with psychotic symptoms','Y','2025-10-23 00:00:00'),(99855,11,'6A71.3','Recurrent depressive disorder, current episode severe, without psychotic symptoms','Y','2025-10-23 00:00:00'),(99856,11,'6A71.5','Recurrent depressive disorder, current episode, unspecified severity','Y','2025-10-23 00:00:00'),(99857,11,'6A71.7','Recurrent depressive disorder, currently in full remission','Y','2025-10-23 00:00:00'),(99858,11,'6A71.6','Recurrent depressive disorder, currently in partial remission','Y','2025-10-23 00:00:00'),(99859,11,'6A71.Z','Recurrent depressive disorder, unspecified','Y','2025-10-23 00:00:00'),(99860,11,'9A78.8','Recurrent erosion of cornea','Y','2025-10-23 00:00:00'),(99861,11,'FA34.2','Recurrent instability of joint','Y','2025-10-23 00:00:00'),(99862,11,'FA32.0','Recurrent instability of patella','Y','2025-10-23 00:00:00'),(99863,11,'7B01.1','Recurrent isolated sleep paralysis','Y','2025-10-23 00:00:00'),(99864,11,'8A43.5','Recurrent optic neuritis aquaporin-4 antibody positive','Y','2025-10-23 00:00:00'),(99865,11,'GA33','Recurrent pregnancy loss','Y','2025-10-23 00:00:00'),(99866,11,'2F00.1','Recurrent respiratory papillomatosis','Y','2025-10-23 00:00:00'),(99867,11,'8A43.3','Recurrent transverse myelitis aquaporin-4 antibody positive','Y','2025-10-23 00:00:00'),(99868,11,'BD74.31','Recurrent venous leg ulcer','Y','2025-10-23 00:00:00'),(99869,11,'XM26D5','Red blood cells, packed','Y','2025-10-23 00:00:00'),(99870,11,'MC15','Red eye','Y','2025-10-23 00:00:00'),(99871,11,'XM2B16','Red spitting cobra snake venom','Y','2025-10-23 00:00:00'),(99872,11,'XM2JA0','Red widow spider venom','Y','2025-10-23 00:00:00'),(99873,11,'XM1TF6','Redback spider venom','Y','2025-10-23 00:00:00'),(99874,11,'LB9A','Reduction defects of lower limb','Y','2025-10-23 00:00:00'),(99875,11,'LB9A.Z','Reduction defects of lower limb, unspecified','Y','2025-10-23 00:00:00'),(99876,11,'LB9B','Reduction defects of upper and lower limbs','Y','2025-10-23 00:00:00'),(99877,11,'LB99','Reduction defects of upper limb','Y','2025-10-23 00:00:00'),(99878,11,'LB99.Z','Reduction defects of upper limb, unspecified','Y','2025-10-23 00:00:00'),(99879,11,'GB05.0','Redundant prepuce','Y','2025-10-23 00:00:00'),(99880,11,'GB05','Redundant prepuce, phimosis or paraphimosis','Y','2025-10-23 00:00:00'),(99881,11,'GB05.Z','Redundant prepuce, phimosis or paraphimosis, unspecified','Y','2025-10-23 00:00:00'),(99882,11,'BC71.2','Re-entry ventricular arrhythmia','Y','2025-10-23 00:00:00'),(99883,11,'MB26.8','Referential thinking','Y','2025-10-23 00:00:00'),(99884,11,'8A61.40','Reflex epilepsies','Y','2025-10-23 00:00:00'),(99885,11,'MF50.24','Reflex incontinence','Y','2025-10-23 00:00:00'),(99886,11,'8D89.0','Reflex syncope','Y','2025-10-23 00:00:00'),(99887,11,'XE09Q','Reflux with device','Y','2025-10-23 00:00:00'),(99888,11,'2A30','Refractory anaemia','Y','2025-10-23 00:00:00'),(99889,11,'XH1D20','Refractory anaemia with excess blasts in transformation','Y','2025-10-23 00:00:00'),(99890,11,'2A35','Refractory anaemia with excess of blasts','Y','2025-10-23 00:00:00'),(99891,11,'2A33','Refractory anaemia with ring sideroblasts','Y','2025-10-23 00:00:00'),(99892,11,'2A43','Refractory anaemia with ring sideroblasts associated with marked thrombocytosis','Y','2025-10-23 00:00:00'),(99893,11,'2A38','Refractory cytopenia of childhood','Y','2025-10-23 00:00:00'),(99894,11,'2A34','Refractory cytopenia with multi-lineage dysplasia','Y','2025-10-23 00:00:00'),(99895,11,'2A31','Refractory neutropaenia','Y','2025-10-23 00:00:00'),(99896,11,'2A32','Refractory thrombocytopenia','Y','2025-10-23 00:00:00'),(99897,11,'XE76C','Refrigeration machinery or fixed plant','Y','2025-10-23 00:00:00'),(99898,11,'XE3JZ','Refrigerator, freezer appliance','Y','2025-10-23 00:00:00'),(99899,11,'MG43.41','Refusal of fluid, not elsewhere classified','Y','2025-10-23 00:00:00'),(99900,11,'MG43.40','Refusal of food, not elsewhere classified','Y','2025-10-23 00:00:00'),(99901,11,'XM2VG8','Regadenoson','Y','2025-10-23 00:00:00'),(99902,11,'XM0601','Regorafenib','Y','2025-10-23 00:00:00'),(99903,11,'XM7660','Regroton','Y','2025-10-23 00:00:00'),(99904,11,'XE6YN','Regulator component of medical device','Y','2025-10-23 00:00:00'),(99905,11,'XD5ED6','Reinfusion dialysis lines','Y','2025-10-23 00:00:00'),(99906,11,'XT4D','Relapse','Y','2025-10-23 00:00:00'),(99907,11,'1C1J','Relapsing fever','Y','2025-10-23 00:00:00'),(99908,11,'FB82.3','Relapsing polychondritis','Y','2025-10-23 00:00:00'),(99909,11,'8A40.0','Relapsing-remitting multiple sclerosis','Y','2025-10-23 00:00:00'),(99910,11,'VW41','Relating with strangers','Y','2025-10-23 00:00:00'),(99911,11,'VD30','Relating with strangers [WHODAS]','Y','2025-10-23 00:00:00'),(99912,11,'QE51.0','Relationship distress with spouse or partner','Y','2025-10-23 00:00:00'),(99913,11,'QE50.4','Relationship with parents, in-laws or other family members','Y','2025-10-23 00:00:00'),(99914,11,'QE50.3','Relationships with neighbours, tenant or landlord','Y','2025-10-23 00:00:00'),(99915,11,'QE50.1','Relationships with teachers or classmates','Y','2025-10-23 00:00:00'),(99916,11,'QE50.1Z','Relationships with teachers or classmates, unspecified','Y','2025-10-23 00:00:00'),(99917,11,'9B00.0','Relative afferent pupillary defects','Y','2025-10-23 00:00:00'),(99918,11,'3A81.2','Relative polycythaemia','Y','2025-10-23 00:00:00'),(99919,11,'XE4QR','Relay component of medical device','Y','2025-10-23 00:00:00'),(99920,11,'MB26.08','Religious delusion','Y','2025-10-23 00:00:00'),(99921,11,'XM5XB7','Relugolix','Y','2025-10-23 00:00:00'),(99922,11,'7B01.0','REM sleep behaviour disorder','Y','2025-10-23 00:00:00'),(99923,11,'XM1ES0','Remdesivir','Y','2025-10-23 00:00:00'),(99924,11,'XM0YQ0','Remifentanil','Y','2025-10-23 00:00:00'),(99925,11,'QE93','Removal from home in childhood','Y','2025-10-23 00:00:00'),(99926,11,'XM3WA3','Remoxipride','Y','2025-10-23 00:00:00'),(99927,11,'VW50','Remunerative employment','Y','2025-10-23 00:00:00'),(99928,11,'VD43','Remunerative employment [WHODAS]','Y','2025-10-23 00:00:00'),(99929,11,'VD43.Z','Remunerative employment [WHODAS], unspecified','Y','2025-10-23 00:00:00'),(99930,11,'LB30.00','Renal agenesis','Y','2025-10-23 00:00:00'),(99931,11,'LB30.0','Renal agenesis or other reduction defects of kidney','Y','2025-10-23 00:00:00'),(99932,11,'LB30.0Z','Renal agenesis or other reduction defects of kidney, unspecified','Y','2025-10-23 00:00:00'),(99933,11,'XA69V9','Renal artery','Y','2025-10-23 00:00:00'),(99934,11,'XA5EP6','Renal capsule','Y','2025-10-23 00:00:00'),(99935,11,'2C90.0','Renal cell carcinoma of kidney, except renal pelvis','Y','2025-10-23 00:00:00'),(99936,11,'XH6153','Renal cell carcinoma, chromophobe type','Y','2025-10-23 00:00:00'),(99937,11,'XH05V6','Renal cell carcinoma, NOS','Y','2025-10-23 00:00:00'),(99938,11,'XH9DH7','Renal cell carcinoma, sarcomatoid','Y','2025-10-23 00:00:00'),(99939,11,'XH3Z08','Renal cell carcinoma, unclassified','Y','2025-10-23 00:00:00'),(99940,11,'MF56','Renal colic','Y','2025-10-23 00:00:00'),(99941,11,'XA35W4','Renal cortex','Y','2025-10-23 00:00:00'),(99942,11,'LB30.1','Renal dysplasia','Y','2025-10-23 00:00:00'),(99943,11,'JA05.4','Renal failure following abortion, ectopic or molar pregnancy','Y','2025-10-23 00:00:00'),(99944,11,'GB90.45','Renal glycosuria','Y','2025-10-23 00:00:00'),(99945,11,'XA4UD2','Renal hilum','Y','2025-10-23 00:00:00'),(99946,11,'GB90.49','Renal hypocalciuria','Y','2025-10-23 00:00:00'),(99947,11,'XA91E4','Renal medulla','Y','2025-10-23 00:00:00'),(99948,11,'GB59','Renal or perinephric abscess','Y','2025-10-23 00:00:00'),(99949,11,'XA21J4','Renal pelvis','Y','2025-10-23 00:00:00'),(99950,11,'XA82M9','Renal plexus','Y','2025-10-23 00:00:00'),(99951,11,'XA9Q52','Renal pyramid','Y','2025-10-23 00:00:00'),(99952,11,'GB90.44','Renal tubular acidosis','Y','2025-10-23 00:00:00'),(99953,11,'LB30.3','Renal tubular dysgenesis','Y','2025-10-23 00:00:00'),(99954,11,'GB90.4','Renal tubular function disorders','Y','2025-10-23 00:00:00'),(99955,11,'GB90.4Z','Renal tubular function disorders, unspecified','Y','2025-10-23 00:00:00'),(99956,11,'XA2364','Renal tubule','Y','2025-10-23 00:00:00'),(99957,11,'GB5Z','Renal tubulo-interstitial diseases, unspecified','Y','2025-10-23 00:00:00'),(99958,11,'XA3200','Renal vein','Y','2025-10-23 00:00:00'),(99959,11,'BD71.2','Renal vein thrombosis','Y','2025-10-23 00:00:00'),(99960,11,'XM3FH7','Renin-inhibitors','Y','2025-10-23 00:00:00'),(99961,11,'XH3470','Renomedullary interstitial cell tumour','Y','2025-10-23 00:00:00'),(99962,11,'XN22T','Reovirus','Y','2025-10-23 00:00:00'),(99963,11,'XM9V31','Repaglinide','Y','2025-10-23 00:00:00'),(99964,11,'XE2QJ','Repetitive forceful work','Y','2025-10-23 00:00:00'),(99965,11,'XM3UA2','Replacement solution','Y','2025-10-23 00:00:00'),(99966,11,'XM1ZM1','Reposal','Y','2025-10-23 00:00:00'),(99967,11,'SD87','Repressed fire disorder (TM1)','Y','2025-10-23 00:00:00'),(99968,11,'XE2XW','Reproductive toxicity problem with device identified','Y','2025-10-23 00:00:00'),(99969,11,'XM7MM4','Reproterol','Y','2025-10-23 00:00:00'),(99970,11,'XE1PT','Reptile or amphibian','Y','2025-10-23 00:00:00'),(99971,11,'XM2X61','Reptile venom','Y','2025-10-23 00:00:00'),(99972,11,'XM9SB3','Rescinnamine','Y','2025-10-23 00:00:00'),(99973,11,'XM2764','Reserpine','Y','2025-10-23 00:00:00'),(99974,11,'XE65T','Reservoir component of medical device','Y','2025-10-23 00:00:00'),(99975,11,'XE4KE','Reset problem','Y','2025-10-23 00:00:00'),(99976,11,'XE9AV','Reset problem with device identified','Y','2025-10-23 00:00:00'),(99977,11,'XE1LE','Residential caravan, mobile home, houseboat or motor home','Y','2025-10-23 00:00:00'),(99978,11,'XE9DC','Residential institution','Y','2025-10-23 00:00:00'),(99979,11,'FB56.1','Residual foreign body in soft tissue','Y','2025-10-23 00:00:00'),(99980,11,'DB62','Residual haemorrhoidal skin tags','Y','2025-10-23 00:00:00'),(99981,11,'XE0HG','Residue after decontamination','Y','2025-10-23 00:00:00'),(99982,11,'XM6VB5','Reslizumab','Y','2025-10-23 00:00:00'),(99983,11,'XM6ZJ9','Resorcin nonmedicinal','Y','2025-10-23 00:00:00'),(99984,11,'XM4549','Resorcin, resorcinol medicinal','Y','2025-10-23 00:00:00'),(99985,11,'MD33','Respiratory arrest','Y','2025-10-23 00:00:00'),(99986,11,'KB2E','Respiratory arrest of newborn','Y','2025-10-23 00:00:00'),(99987,11,'CB03.6','Respiratory bronchiolitis interstitial lung disease','Y','2025-10-23 00:00:00'),(99988,11,'CA81','Respiratory conditions due to inhalation of chemicals, gases, fumes or vapours','Y','2025-10-23 00:00:00'),(99989,11,'CA81.Z','Respiratory conditions due to inhalation of chemicals, gases, fumes or vapours, unspecified','Y','2025-10-23 00:00:00'),(99990,11,'CA82','Respiratory conditions due to other external agents','Y','2025-10-23 00:00:00'),(99991,11,'CA82.Z','Respiratory conditions due to other external agents, unspecified','Y','2025-10-23 00:00:00'),(99992,11,'CB0Z','Respiratory diseases principally affecting the lung interstitium, unspecified','Y','2025-10-23 00:00:00'),(99993,11,'CB05.40','Respiratory disorders in Churg-Strauss syndrome','Y','2025-10-23 00:00:00'),(99994,11,'CB05.41','Respiratory disorders in microscopic polyangiitis','Y','2025-10-23 00:00:00'),(99995,11,'KB2Z','Respiratory disorders specific to the perinatal or neonatal period, unspecified','Y','2025-10-23 00:00:00'),(99996,11,'KB23','Respiratory distress of newborn','Y','2025-10-23 00:00:00'),(99997,11,'KB23.Z','Respiratory distress of newborn, unspecified','Y','2025-10-23 00:00:00'),(99998,11,'KB23.0','Respiratory distress syndrome of newborn','Y','2025-10-23 00:00:00'),(99999,11,'KB23.0Z','Respiratory distress syndrome of newborn, unspecified','Y','2025-10-23 00:00:00'),(100000,11,'KB23.00','Respiratory distress syndrome of the newborn, altered by maternal corticosteroid therapy','Y','2025-10-23 00:00:00'),(100001,11,'KB23.02','Respiratory distress syndrome of the newborn, altered by maternal corticosteroid therapy or pulmonary surfactant replacement therapy','Y','2025-10-23 00:00:00'),(100002,11,'KB23.01','Respiratory distress syndrome of the newborn, altered by pulmonary surfactant replacement therapy','Y','2025-10-23 00:00:00'),(100003,11,'XM44A1','Respiratory drug expectorant','Y','2025-10-23 00:00:00'),(100004,11,'CB41','Respiratory failure','Y','2025-10-23 00:00:00'),(100005,11,'KB2D','Respiratory failure of newborn','Y','2025-10-23 00:00:00'),(100006,11,'CB41.2Z','Respiratory failure, unspecified','Y','2025-10-23 00:00:00'),(100007,11,'CB41.2','Respiratory failure, unspecified as acute or chronic','Y','2025-10-23 00:00:00'),(100008,11,'CB41.20','Respiratory failure, unspecified, Type I','Y','2025-10-23 00:00:00'),(100009,11,'CB41.21','Respiratory failure, unspecified, Type II','Y','2025-10-23 00:00:00'),(100010,11,'CA45','Respiratory infections, not elsewhere classified','Y','2025-10-23 00:00:00'),(100011,11,'KB23.2','Respiratory instability of prematurity','Y','2025-10-23 00:00:00'),(100012,11,'XD5GF6','Respiratory masks and balloons, single-use and reusable','Y','2025-10-23 00:00:00'),(100013,11,'XD35D5','Respiratory suction, probes and systems','Y','2025-10-23 00:00:00'),(100014,11,'XM02Y0','Respiratory syncytial virus vaccines','Y','2025-10-23 00:00:00'),(100015,11,'1B10.0','Respiratory tuberculosis, confirmed','Y','2025-10-23 00:00:00'),(100016,11,'1B10.1','Respiratory tuberculosis, not confirmed','Y','2025-10-23 00:00:00'),(100017,11,'1B10.Z','Respiratory tuberculosis, without mention of bacteriological or histological confirmation','Y','2025-10-23 00:00:00'),(100018,11,'QB16','Respite care','Y','2025-10-23 00:00:00'),(100019,11,'XE8Z9','Response to a disturbance call','Y','2025-10-23 00:00:00'),(100020,11,'8A04.2','Rest tremor','Y','2025-10-23 00:00:00'),(100021,11,'7A80','Restless legs syndrome','Y','2025-10-23 00:00:00'),(100022,11,'MB24.F','Restlessness','Y','2025-10-23 00:00:00'),(100023,11,'XN9QG','Reston virus','Y','2025-10-23 00:00:00'),(100024,11,'XE8AY','Restricted flow rate','Y','2025-10-23 00:00:00'),(100025,11,'BC43.2','Restrictive cardiomyopathy','Y','2025-10-23 00:00:00'),(100026,11,'BC43.2Z','Restrictive cardiomyopathy, unspecified','Y','2025-10-23 00:00:00'),(100027,11,'9C82.3','Restrictive ophthalmopathy','Y','2025-10-23 00:00:00'),(100028,11,'MC91','Results of function studies of the circulatory system','Y','2025-10-23 00:00:00'),(100029,11,'ME23','Results of function studies of the digestive system','Y','2025-10-23 00:00:00'),(100030,11,'MB72','Results of function studies of the nervous system','Y','2025-10-23 00:00:00'),(100031,11,'MD42','Results of function studies of the respiratory system','Y','2025-10-23 00:00:00'),(100032,11,'MG02','Results of kidney function studies','Y','2025-10-23 00:00:00'),(100033,11,'XE3PA','Results pending completion of investigation','Y','2025-10-23 00:00:00'),(100034,11,'DA0A.3','Retained dental root','Y','2025-10-23 00:00:00'),(100035,11,'NA06.2','Retained foreign body following penetrating wound of orbit','Y','2025-10-23 00:00:00'),(100036,11,'NA06.03','Retained foreign body in eyelid','Y','2025-10-23 00:00:00'),(100037,11,'NA06.8B','Retained intraocular magnetic foreign body, bilateral','Y','2025-10-23 00:00:00'),(100038,11,'NA06.80','Retained intraocular magnetic foreign body, unilateral','Y','2025-10-23 00:00:00'),(100039,11,'NA06.8C','Retained intraocular nonmagnetic foreign body, bilateral','Y','2025-10-23 00:00:00'),(100040,11,'NA06.81','Retained intraocular nonmagnetic foreign body, unilateral','Y','2025-10-23 00:00:00'),(100041,11,'JA65.5','Retained intrauterine contraceptive device in pregnancy','Y','2025-10-23 00:00:00'),(100042,11,'QA21.60','Retained intrauterine device without injury or harm in non-pregnant uterus','Y','2025-10-23 00:00:00'),(100043,11,'JB0B','Retained placenta or membranes, without haemorrhage','Y','2025-10-23 00:00:00'),(100044,11,'JB0B.0','Retained placenta without haemorrhage','Y','2025-10-23 00:00:00'),(100045,11,'JB0B.1','Retained portions of placenta or membranes, without haemorrhage','Y','2025-10-23 00:00:00'),(100046,11,'XE33C','Retainer fastner component of medical device','Y','2025-10-23 00:00:00'),(100047,11,'MF50.3','Retention of urine','Y','2025-10-23 00:00:00'),(100048,11,'XM6RN7','Reteplase','Y','2025-10-23 00:00:00'),(100049,11,'XA2Q30','Reticular dermis','Y','2025-10-23 00:00:00'),(100050,11,'EB90.12','Reticular erythematous mucinosis','Y','2025-10-23 00:00:00'),(100051,11,'XA34M4','Reticular formation','Y','2025-10-23 00:00:00'),(100052,11,'9B78.30','Reticular pseudodrusen','Y','2025-10-23 00:00:00'),(100053,11,'XH33Q1','Reticulohistiocytoma','Y','2025-10-23 00:00:00'),(100054,11,'XH51A9','Reticulum cell sarcoma, NOS','Y','2025-10-23 00:00:00'),(100055,11,'XM2KA7','Retifanlimab','Y','2025-10-23 00:00:00'),(100056,11,'XH64U8','Retiform haemangioendothelioma','Y','2025-10-23 00:00:00'),(100057,11,'XM1P90','Retigabine','Y','2025-10-23 00:00:00'),(100058,11,'XA8WV8','Retina','Y','2025-10-23 00:00:00'),(100059,11,'9B74.0','Retinal artery occlusions','Y','2025-10-23 00:00:00'),(100060,11,'9B78.9','Retinal atrophy','Y','2025-10-23 00:00:00'),(100061,11,'9B73.4','Retinal breaks without detachment','Y','2025-10-23 00:00:00'),(100062,11,'9B73.2','Retinal cysts','Y','2025-10-23 00:00:00'),(100063,11,'9B73.0','Retinal detachment with retinal break','Y','2025-10-23 00:00:00'),(100064,11,'9B73','Retinal detachments or breaks','Y','2025-10-23 00:00:00'),(100065,11,'9B73.Z','Retinal detachments or breaks, unspecified','Y','2025-10-23 00:00:00'),(100066,11,'9B78.5','Retinal haemorrhage','Y','2025-10-23 00:00:00'),(100067,11,'9B78.8','Retinal ischaemia','Y','2025-10-23 00:00:00'),(100068,11,'9B78.7','Retinal oedema','Y','2025-10-23 00:00:00'),(100069,11,'9B78.13','Retinal telangiectasis','Y','2025-10-23 00:00:00'),(100070,11,'9B74','Retinal vascular occlusions','Y','2025-10-23 00:00:00'),(100071,11,'9B74.Z','Retinal vascular occlusions, unspecified','Y','2025-10-23 00:00:00'),(100072,11,'9B78.12','Retinal vasculitis','Y','2025-10-23 00:00:00'),(100073,11,'9B78.0','Retinal vasculopathy and cerebral leukodystrophy','Y','2025-10-23 00:00:00'),(100074,11,'9B74.1','Retinal venous occlusions','Y','2025-10-23 00:00:00'),(100075,11,'2D02.2','Retinoblastoma','Y','2025-10-23 00:00:00'),(100076,11,'XH6JM6','Retinoblastoma, differentiated','Y','2025-10-23 00:00:00'),(100077,11,'XH1YZ7','Retinoblastoma, diffuse','Y','2025-10-23 00:00:00'),(100078,11,'XH8WC7','Retinoblastoma, NOS','Y','2025-10-23 00:00:00'),(100079,11,'XH2F27','Retinoblastoma, spontaneously regressed','Y','2025-10-23 00:00:00'),(100080,11,'XH7KP6','Retinoblastoma, undifferentiated','Y','2025-10-23 00:00:00'),(100081,11,'XH5AV1','Retinocytoma','Y','2025-10-23 00:00:00'),(100082,11,'XM2SR9','Retinoic acid','Y','2025-10-23 00:00:00'),(100083,11,'XM3GF4','Retinoids','Y','2025-10-23 00:00:00'),(100084,11,'XM4BT6','Retinol','Y','2025-10-23 00:00:00'),(100085,11,'XM6PV8','Retinol topical','Y','2025-10-23 00:00:00'),(100086,11,'9B71','Retinopathy','Y','2025-10-23 00:00:00'),(100087,11,'9B71.3','Retinopathy of prematurity','Y','2025-10-23 00:00:00'),(100088,11,'9B71.Z','Retinopathy, unspecified','Y','2025-10-23 00:00:00'),(100089,11,'9B73.1','Retinoschisis','Y','2025-10-23 00:00:00'),(100090,11,'9B73.1Z','Retinoschisis, unspecified','Y','2025-10-23 00:00:00'),(100091,11,'JB46.0','Retracted nipple associated with childbirth','Y','2025-10-23 00:00:00'),(100092,11,'MF42','Retractile testis migrans','Y','2025-10-23 00:00:00'),(100093,11,'XE306','Retraction problem','Y','2025-10-23 00:00:00'),(100094,11,'XA0TK3','Retroaortic lymph node','Y','2025-10-23 00:00:00'),(100095,11,'XA4DV9','Retroauricular sulcus','Y','2025-10-23 00:00:00'),(100096,11,'9C40.10','Retrobulbar neuritis','Y','2025-10-23 00:00:00'),(100097,11,'MB21.11','Retrograde amnesia','Y','2025-10-23 00:00:00'),(100098,11,'MF40.3','Retrograde ejaculation','Y','2025-10-23 00:00:00'),(100099,11,'XA0S17','Retromolar region','Y','2025-10-23 00:00:00'),(100100,11,'FB51.4','Retroperitoneal fibrosis','Y','2025-10-23 00:00:00'),(100101,11,'NB97.0','Retroperitoneal haemorrhage or haematoma','Y','2025-10-23 00:00:00'),(100102,11,'XA0KH9','Retroperitoneal lymph node','Y','2025-10-23 00:00:00'),(100103,11,'XA8MX8','Retroperitoneal lymph sac','Y','2025-10-23 00:00:00'),(100104,11,'XA6S21','Retroperitoneum','Y','2025-10-23 00:00:00'),(100105,11,'XA08L8','Retropharyngeal lymph node','Y','2025-10-23 00:00:00'),(100106,11,'CA0K.0','Retropharyngeal or parapharyngeal abscess','Y','2025-10-23 00:00:00'),(100107,11,'XA9P89','Retropharyngeal recess','Y','2025-10-23 00:00:00'),(100108,11,'XN6FR','Retrovirus','Y','2025-10-23 00:00:00'),(100109,11,'LD90.4','Rett syndrome','Y','2025-10-23 00:00:00'),(100110,11,'XM8BL4','Revefenacin','Y','2025-10-23 00:00:00'),(100111,11,'XM9JC4','Reviparin','Y','2025-10-23 00:00:00'),(100112,11,'XE7FS','Revolving chair','Y','2025-10-23 00:00:00'),(100113,11,'8E46','Reye syndrome','Y','2025-10-23 00:00:00'),(100114,11,'NE80.2','Rh incompatibility reaction','Y','2025-10-23 00:00:00'),(100115,11,'KA84.0','Rh isoimmunization of fetus or newborn','Y','2025-10-23 00:00:00'),(100116,11,'XH6QS9','Rhabdoid meningioma','Y','2025-10-23 00:00:00'),(100117,11,'XH3RF3','Rhabdoid tumor, NOS','Y','2025-10-23 00:00:00'),(100118,11,'2E86.2','Rhabdomyoma','Y','2025-10-23 00:00:00'),(100119,11,'XH8WG9','Rhabdomyoma, NOS','Y','2025-10-23 00:00:00'),(100120,11,'2B55.2','Rhabdomyosarcoma of male genital organs','Y','2025-10-23 00:00:00'),(100121,11,'2B55.1','Rhabdomyosarcoma of respiratory or intrathoracic organs','Y','2025-10-23 00:00:00'),(100122,11,'2B55.0','Rhabdomyosarcoma of the oral cavity or pharynx','Y','2025-10-23 00:00:00'),(100123,11,'XH0GA1','Rhabdomyosarcoma, NOS','Y','2025-10-23 00:00:00'),(100124,11,'2B55.Y','Rhabdomyosarcoma, other specified primary site','Y','2025-10-23 00:00:00'),(100125,11,'2B55','Rhabdomyosarcoma, primary site','Y','2025-10-23 00:00:00'),(100126,11,'2B55.Z','Rhabdomyosarcoma, unspecified primary site','Y','2025-10-23 00:00:00'),(100127,11,'XN7NE','Rhadinovirus','Y','2025-10-23 00:00:00'),(100128,11,'BB72.0','Rheumatic aortic stenosis with insufficiency','Y','2025-10-23 00:00:00'),(100129,11,'BB71.0','Rheumatic aortic valve insufficiency','Y','2025-10-23 00:00:00'),(100130,11,'BB70.0','Rheumatic aortic valve stenosis','Y','2025-10-23 00:00:00'),(100131,11,'1B41.10','Rheumatic aortitis','Y','2025-10-23 00:00:00'),(100132,11,'1B40.0','Rheumatic arthritis, acute or subacute','Y','2025-10-23 00:00:00'),(100133,11,'1B42','Rheumatic chorea','Y','2025-10-23 00:00:00'),(100134,11,'BC20.0','Rheumatic diseases of endocardium, valve unspecified','Y','2025-10-23 00:00:00'),(100135,11,'BC20.1','Rheumatic heart disease, unspecified','Y','2025-10-23 00:00:00'),(100136,11,'BB63.0','Rheumatic mitral stenosis with insufficiency','Y','2025-10-23 00:00:00'),(100137,11,'BB61.0','Rheumatic mitral valve insufficiency','Y','2025-10-23 00:00:00'),(100138,11,'BB62.0','Rheumatic mitral valve prolapse','Y','2025-10-23 00:00:00'),(100139,11,'BB60.0','Rheumatic mitral valve stenosis','Y','2025-10-23 00:00:00'),(100140,11,'BC42.3','Rheumatic myocarditis','Y','2025-10-23 00:00:00'),(100141,11,'BB91.0','Rheumatic pulmonary valve insufficiency','Y','2025-10-23 00:00:00'),(100142,11,'BB90.0','Rheumatic pulmonary valve stenosis','Y','2025-10-23 00:00:00'),(100143,11,'BB92.0','Rheumatic pulmonary valve stenosis with insufficiency','Y','2025-10-23 00:00:00'),(100144,11,'BB81.0','Rheumatic tricuspid valve insufficiency','Y','2025-10-23 00:00:00'),(100145,11,'BB80.0','Rheumatic tricuspid valve stenosis','Y','2025-10-23 00:00:00'),(100146,11,'BB82.0','Rheumatic tricuspid valve stenosis with insufficiency','Y','2025-10-23 00:00:00'),(100147,11,'ME83','Rheumatism, unspecified','Y','2025-10-23 00:00:00'),(100148,11,'FA20','Rheumatoid arthritis','Y','2025-10-23 00:00:00'),(100149,11,'FA20.Z','Rheumatoid arthritis, serology unspecified','Y','2025-10-23 00:00:00'),(100150,11,'MA14.1D','Rheumatoid factor negative','Y','2025-10-23 00:00:00'),(100151,11,'MA14.1E','Rheumatoid factor positive','Y','2025-10-23 00:00:00'),(100152,11,'XA0Z39','Rhinencephalon','Y','2025-10-23 00:00:00'),(100153,11,'CA08.Z','Rhinitis, unspecified whether allergic or nonallergic','Y','2025-10-23 00:00:00'),(100154,11,'1F56','Rhinosporidiosis','Y','2025-10-23 00:00:00'),(100155,11,'XN720','Rhinosporidium','Y','2025-10-23 00:00:00'),(100156,11,'XN18W','Rhinosporidium seeberi','Y','2025-10-23 00:00:00'),(100157,11,'XN19Z','Rhinovirus','Y','2025-10-23 00:00:00'),(100158,11,'4A44.0','Rhizomelic pseudopolyarthritis','Y','2025-10-23 00:00:00'),(100159,11,'1F51.1','Rhodesiense trypanosomiasis','Y','2025-10-23 00:00:00'),(100160,11,'1F51.1Z','Rhodesiense trypanosomiasis, unspecified','Y','2025-10-23 00:00:00'),(100161,11,'XM67L1','RhoGAM','Y','2025-10-23 00:00:00'),(100162,11,'XA25S1','Rhomboid major muscle','Y','2025-10-23 00:00:00'),(100163,11,'XA3P63','Rhomboid major tendon','Y','2025-10-23 00:00:00'),(100164,11,'XA5GH5','Rhomboid minor muscle','Y','2025-10-23 00:00:00'),(100165,11,'XA8918','Rhomboid minor tendon','Y','2025-10-23 00:00:00'),(100166,11,'XM14Q1','Rhubarb dry extract','Y','2025-10-23 00:00:00'),(100167,11,'XM40D1','Rhubarb tincture, compound','Y','2025-10-23 00:00:00'),(100168,11,'BC90','Rhythm disturbance at level of atrioventricular junction','Y','2025-10-23 00:00:00'),(100169,11,'XA5TK7','Rib','Y','2025-10-23 00:00:00'),(100170,11,'XM8YT1','Ribavirin','Y','2025-10-23 00:00:00'),(100171,11,'XM2RL4','Ribociclib','Y','2025-10-23 00:00:00'),(100172,11,'XM8V93','Riboflavin','Y','2025-10-23 00:00:00'),(100173,11,'XM58T2','Ribostamycin','Y','2025-10-23 00:00:00'),(100174,11,'XM2VG9','Ricin','Y','2025-10-23 00:00:00'),(100175,11,'XM0PR3','Ricinus communis plant','Y','2025-10-23 00:00:00'),(100176,11,'XN4YH','Rickettsia','Y','2025-10-23 00:00:00'),(100177,11,'XN9YP','Rickettsia africae','Y','2025-10-23 00:00:00'),(100178,11,'XN7WV','Rickettsia akari','Y','2025-10-23 00:00:00'),(100179,11,'XN23V','Rickettsia australis','Y','2025-10-23 00:00:00'),(100180,11,'XN8U4','Rickettsia conorii','Y','2025-10-23 00:00:00'),(100181,11,'XN6W8','Rickettsia felis','Y','2025-10-23 00:00:00'),(100182,11,'XN9NE','Rickettsia helvetica','Y','2025-10-23 00:00:00'),(100183,11,'XN5NY','Rickettsia hoogstraalii','Y','2025-10-23 00:00:00'),(100184,11,'XN3XV','Rickettsia japonica','Y','2025-10-23 00:00:00'),(100185,11,'XN8SY','Rickettsia prowazekii','Y','2025-10-23 00:00:00'),(100186,11,'XN33Q','Rickettsia rickettsii','Y','2025-10-23 00:00:00'),(100187,11,'XN1N6','Rickettsia sibirica','Y','2025-10-23 00:00:00'),(100188,11,'XN2AR','Rickettsia typhi','Y','2025-10-23 00:00:00'),(100189,11,'1C32','Rickettsialpox','Y','2025-10-23 00:00:00'),(100190,11,'1C3Z','Rickettsioses, unspecified','Y','2025-10-23 00:00:00'),(100191,11,'XM0SL6','Ridaforolimus','Y','2025-10-23 00:00:00'),(100192,11,'XE9HQ','Ride-on lawn mower','Y','2025-10-23 00:00:00'),(100193,11,'XE6R5','Rider of an animal injured in transport event','Y','2025-10-23 00:00:00'),(100194,11,'XM5QH8','Rifabutin','Y','2025-10-23 00:00:00'),(100195,11,'XM38J6','Rifamide','Y','2025-10-23 00:00:00'),(100196,11,'XM0R30','Rifampicin','Y','2025-10-23 00:00:00'),(100197,11,'XM7HL1','Rifamycin','Y','2025-10-23 00:00:00'),(100198,11,'XM8MQ4','Rifapentine','Y','2025-10-23 00:00:00'),(100199,11,'XM2LE1','Rifaximin','Y','2025-10-23 00:00:00'),(100200,11,'XE0Q9','Rifle','Y','2025-10-23 00:00:00'),(100201,11,'1D44','Rift Valley fever','Y','2025-10-23 00:00:00'),(100202,11,'XN76Q','Rift Valley fever virus','Y','2025-10-23 00:00:00'),(100203,11,'XK9K','Right','Y','2025-10-23 00:00:00'),(100204,11,'XA1LL7','Right acute marginal artery','Y','2025-10-23 00:00:00'),(100205,11,'BE1E.1','Right atrial erosion due to implanted device','Y','2025-10-23 00:00:00'),(100206,11,'XA6T92','Right atrium','Y','2025-10-23 00:00:00'),(100207,11,'BC63.3','Right bundle branch block','Y','2025-10-23 00:00:00'),(100208,11,'XA6GC2','Right colic artery','Y','2025-10-23 00:00:00'),(100209,11,'XA73R0','Right colic ileocolic lymph node','Y','2025-10-23 00:00:00'),(100210,11,'XA2UN4','Right colic vein','Y','2025-10-23 00:00:00'),(100211,11,'XA53A8','Right common carotid artery','Y','2025-10-23 00:00:00'),(100212,11,'XA2QX7','Right coronary artery','Y','2025-10-23 00:00:00'),(100213,11,'XA9HE0','Right gastric artery','Y','2025-10-23 00:00:00'),(100214,11,'XA23Q4','Right gastric vein','Y','2025-10-23 00:00:00'),(100215,11,'XA8V02','Right gastro-omental artery','Y','2025-10-23 00:00:00'),(100216,11,'9D42.60','Right hemi-field homonymous hemianopia or quadrant anopia','Y','2025-10-23 00:00:00'),(100217,11,'XA6M95','Right hepatic duct','Y','2025-10-23 00:00:00'),(100218,11,'LA83','Right isomerism','Y','2025-10-23 00:00:00'),(100219,11,'XA2KG6','Right lobe of liver','Y','2025-10-23 00:00:00'),(100220,11,'XA9L72','Right lobe of thyroid gland','Y','2025-10-23 00:00:00'),(100221,11,'XA41Z3','Right lower lobe bronchus','Y','2025-10-23 00:00:00'),(100222,11,'XA7EZ3','Right lung','Y','2025-10-23 00:00:00'),(100223,11,'XA3ER1','Right lymphatic duct','Y','2025-10-23 00:00:00'),(100224,11,'XA3L52','Right main bronchus','Y','2025-10-23 00:00:00'),(100225,11,'XA2KE8','Right marginal vein of heart','Y','2025-10-23 00:00:00'),(100226,11,'XA1QM3','Right middle lobe bronchus','Y','2025-10-23 00:00:00'),(100227,11,'BC71.00','Right outflow tract ventricular tachycardia','Y','2025-10-23 00:00:00'),(100228,11,'XA86L0','Right pulmonary vein','Y','2025-10-23 00:00:00'),(100229,11,'XA1BR5','Right recurrent laryngeal nerve','Y','2025-10-23 00:00:00'),(100230,11,'XA26M6','Right subclavian artery','Y','2025-10-23 00:00:00'),(100231,11,'XA8GQ5','Right submandibular gland','Y','2025-10-23 00:00:00'),(100232,11,'XA8Z30','Right upper lobe bronchus','Y','2025-10-23 00:00:00'),(100233,11,'XA9HH8','Right ventricle','Y','2025-10-23 00:00:00'),(100234,11,'BD13','Right ventricular failure','Y','2025-10-23 00:00:00'),(100235,11,'XA5Y16','Right ventricular papillary muscles','Y','2025-10-23 00:00:00'),(100236,11,'XM6AB8','Rilmenidine','Y','2025-10-23 00:00:00'),(100237,11,'XM4YD0','Rilonacept','Y','2025-10-23 00:00:00'),(100238,11,'XM1KD4','Rilpivirine','Y','2025-10-23 00:00:00'),(100239,11,'XM9Z74','Riluzole','Y','2025-10-23 00:00:00'),(100240,11,'XM2TS5','Rimantadine','Y','2025-10-23 00:00:00'),(100241,11,'XM6Z00','Rimazolium','Y','2025-10-23 00:00:00'),(100242,11,'XM4PW4','Rimazolium metilsulfate','Y','2025-10-23 00:00:00'),(100243,11,'XM8C95','Rimegepant','Y','2025-10-23 00:00:00'),(100244,11,'XM3SM4','Rimexolone','Y','2025-10-23 00:00:00'),(100245,11,'XM4GU0','Rimifon','Y','2025-10-23 00:00:00'),(100246,11,'XM22C3','Rimiterol','Y','2025-10-23 00:00:00'),(100247,11,'XM7GX4','Rimonabant','Y','2025-10-23 00:00:00'),(100248,11,'XE7DG','Ring component of medical device','Y','2025-10-23 00:00:00'),(100249,11,'XA06X8','Ring finger','Y','2025-10-23 00:00:00'),(100250,11,'XA6Y59','Ring fingernail','Y','2025-10-23 00:00:00'),(100251,11,'9D42.23','Ring scotoma','Y','2025-10-23 00:00:00'),(100252,11,'XM11X8','Ringer solution (lactate)','Y','2025-10-23 00:00:00'),(100253,11,'XN2VC','R','Y','2025-10-23 00:00:00'),(100254,11,'XN79Q','R','Y','2025-10-23 00:00:00'),(100255,11,'XM8BU0','Riociguat','Y','2025-10-23 00:00:00'),(100256,11,'XM9M92','Ripasudil','Y','2025-10-23 00:00:00'),(100257,11,'XM70N9','Risankizumab','Y','2025-10-23 00:00:00'),(100258,11,'XM5CM8','Risedronic acid','Y','2025-10-23 00:00:00'),(100259,11,'XA49A7','Risorius muscle','Y','2025-10-23 00:00:00'),(100260,11,'XA9450','Risorius tendon','Y','2025-10-23 00:00:00'),(100261,11,'XM1Z15','Risperidone','Y','2025-10-23 00:00:00'),(100262,11,'XM19A7','Ristocetin','Y','2025-10-23 00:00:00'),(100263,11,'XM0G17','Ritiometan','Y','2025-10-23 00:00:00'),(100264,11,'XM1CS3','Ritodrine','Y','2025-10-23 00:00:00'),(100265,11,'XM56L1','Ritonavir','Y','2025-10-23 00:00:00'),(100266,11,'XM3AY3','Rituximab','Y','2025-10-23 00:00:00'),(100267,11,'XM48G2','Rivaroxaban','Y','2025-10-23 00:00:00'),(100268,11,'XM0NP3','Rivastigmine','Y','2025-10-23 00:00:00'),(100269,11,'XE9MM','Rivet fastner component of medical device','Y','2025-10-23 00:00:00'),(100270,11,'XM6W13','Rizatriptan','Y','2025-10-23 00:00:00'),(100271,11,'XE3GR','Road roller','Y','2025-10-23 00:00:00'),(100272,11,'XE45E','Road tractor with or without semi-trailer as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(100273,11,'XE7XM','Road tractor with or without semi-trailer as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(100274,11,'XE6NQ','Roadway','Y','2025-10-23 00:00:00'),(100275,11,'XE6PL','Robbery','Y','2025-10-23 00:00:00'),(100276,11,'XM21J7','Rociletinib','Y','2025-10-23 00:00:00'),(100277,11,'1C87','Rocio viral encephalitis','Y','2025-10-23 00:00:00'),(100278,11,'XN7C2','Rocio virus','Y','2025-10-23 00:00:00'),(100279,11,'XM7GS6','Rociverine','Y','2025-10-23 00:00:00'),(100280,11,'XE83R','Rock, stone, not elsewhere classified','Y','2025-10-23 00:00:00'),(100281,11,'XE5NL','Rocking or gliding chair','Y','2025-10-23 00:00:00'),(100282,11,'XM0E84','Rocky Mountain spotted fever vaccines','Y','2025-10-23 00:00:00'),(100283,11,'XM4R62','Rocuronium bromide','Y','2025-10-23 00:00:00'),(100284,11,'XE017','Rod or shaft component of medical device','Y','2025-10-23 00:00:00'),(100285,11,'XM2KK3','Rodenticide','Y','2025-10-23 00:00:00'),(100286,11,'XM70K9','Rofecoxib','Y','2025-10-23 00:00:00'),(100287,11,'XM53U2','Roflumilast','Y','2025-10-23 00:00:00'),(100288,11,'XM8UC1','Rokitamycin','Y','2025-10-23 00:00:00'),(100289,11,'XM7Z18','Rolaids','Y','2025-10-23 00:00:00'),(100290,11,'XM41Y6','Rolapitant','Y','2025-10-23 00:00:00'),(100291,11,'XE3P0','Role of injured person in armed conflict unknown','Y','2025-10-23 00:00:00'),(100292,11,'XM45X2','Rolitetracycline','Y','2025-10-23 00:00:00'),(100293,11,'XE92A','Roller or venetian blind or indoor shutter','Y','2025-10-23 00:00:00'),(100294,11,'XE9J0','Roller skates as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(100295,11,'XE2PW','Roller skates as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(100296,11,'XE38Q','Roller skates, rollerski, in-line skates, roller blades','Y','2025-10-23 00:00:00'),(100297,11,'XM91S2','Romidepsin','Y','2025-10-23 00:00:00'),(100298,11,'XM96S9','Romiplostim','Y','2025-10-23 00:00:00'),(100299,11,'XM7AJ2','Romosozumab','Y','2025-10-23 00:00:00'),(100300,11,'XM39Z8','Ronifibrate','Y','2025-10-23 00:00:00'),(100301,11,'XE4B1','Room divider or partition','Y','2025-10-23 00:00:00'),(100302,11,'DA07.4','Root anomaly','Y','2025-10-23 00:00:00'),(100303,11,'NA0D.06','Root fracture','Y','2025-10-23 00:00:00'),(100304,11,'XA0LR7','Root of nose','Y','2025-10-23 00:00:00'),(100305,11,'XA0970','Root of penis','Y','2025-10-23 00:00:00'),(100306,11,'XE4H9','Rope, string, or twine','Y','2025-10-23 00:00:00'),(100307,11,'XM24N9','Ropeginterferon alfa-2b','Y','2025-10-23 00:00:00'),(100308,11,'XM9D35','Ropinirole','Y','2025-10-23 00:00:00'),(100309,11,'XM48E5','Roquinimex','Y','2025-10-23 00:00:00'),(100310,11,'ED90.0','Rosacea','Y','2025-10-23 00:00:00'),(100311,11,'ED90','Rosacea and related disorders','Y','2025-10-23 00:00:00'),(100312,11,'XM87Z0','Rosaprostol','Y','2025-10-23 00:00:00'),(100313,11,'XM2PX0','Rose bengal sodium (131i)','Y','2025-10-23 00:00:00'),(100314,11,'XM8293','Rose water ointment','Y','2025-10-23 00:00:00'),(100315,11,'1F01','Roseola infantum','Y','2025-10-23 00:00:00'),(100316,11,'XN1GF','Roseolavirus','Y','2025-10-23 00:00:00'),(100317,11,'XN9NM','Roseolavirus A','Y','2025-10-23 00:00:00'),(100318,11,'XN8AM','Roseolavirus B','Y','2025-10-23 00:00:00'),(100319,11,'XH2JU8','Rosette-forming glioneuronal tumour','Y','2025-10-23 00:00:00'),(100320,11,'XM27D8','Rosiglitazone','Y','2025-10-23 00:00:00'),(100321,11,'XM8SV4','Rosoxacin','Y','2025-10-23 00:00:00'),(100322,11,'1D4D','Ross River disease','Y','2025-10-23 00:00:00'),(100323,11,'XN49A','Ross River virus','Y','2025-10-23 00:00:00'),(100324,11,'XM6NK5','Rosuvastatin','Y','2025-10-23 00:00:00'),(100325,11,'XM4GV0','Rota virus, live attenuated','Y','2025-10-23 00:00:00'),(100326,11,'XM4VG1','Rota virus, pentavalent, live, reassorted','Y','2025-10-23 00:00:00'),(100327,11,'XA6EG3','Rotator cuff capsule','Y','2025-10-23 00:00:00'),(100328,11,'XA3DL4','Rotator cuff muscle','Y','2025-10-23 00:00:00'),(100329,11,'FB53.1','Rotator cuff syndrome','Y','2025-10-23 00:00:00'),(100330,11,'XA76Q0','Rotatores muscle','Y','2025-10-23 00:00:00'),(100331,11,'XA16J2','Rotatores tendon','Y','2025-10-23 00:00:00'),(100332,11,'XN6N7','Rotavirus','Y','2025-10-23 00:00:00'),(100333,11,'XN6TN','Rotavirus A','Y','2025-10-23 00:00:00'),(100334,11,'XN55H','Rotavirus B','Y','2025-10-23 00:00:00'),(100335,11,'XN0F5','Rotavirus C','Y','2025-10-23 00:00:00'),(100336,11,'XN29P','Rotavirus D','Y','2025-10-23 00:00:00'),(100337,11,'XM1CE0','Rotavirus diarrhoea vaccines','Y','2025-10-23 00:00:00'),(100338,11,'XN71N','Rotavirus E','Y','2025-10-23 00:00:00'),(100339,11,'XM1S21','Rotenone','Y','2025-10-23 00:00:00'),(100340,11,'XM7B98','Rotigotine','Y','2025-10-23 00:00:00'),(100341,11,'XM3FN3','Rotoxamine','Y','2025-10-23 00:00:00'),(100342,11,'XA23X3','Round ligament of uterus','Y','2025-10-23 00:00:00'),(100343,11,'XN1N9','Rousettus bat coronavirus HKU9','Y','2025-10-23 00:00:00'),(100344,11,'QA00.1','Routine child health examination','Y','2025-10-23 00:00:00'),(100345,11,'QA03.2','Routine general health check-up of armed forces','Y','2025-10-23 00:00:00'),(100346,11,'QA03','Routine general health check-up of defined subpopulation','Y','2025-10-23 00:00:00'),(100347,11,'QA03.Z','Routine general health check-up of defined subpopulation, unspecified','Y','2025-10-23 00:00:00'),(100348,11,'QA03.1','Routine general health check-up of inhabitants of institutions','Y','2025-10-23 00:00:00'),(100349,11,'QA03.3','Routine general health check-up of sports teams','Y','2025-10-23 00:00:00'),(100350,11,'QA00.2','Routine newborn health examination','Y','2025-10-23 00:00:00'),(100351,11,'QA48.2','Routine postpartum follow-up','Y','2025-10-23 00:00:00'),(100352,11,'XM0SH0','Roxatidine','Y','2025-10-23 00:00:00'),(100353,11,'XM98M0','Roxithromycin','Y','2025-10-23 00:00:00'),(100354,11,'XM8MB5','Rubber','Y','2025-10-23 00:00:00'),(100355,11,'XE6ZS','Rubber bathtub mat','Y','2025-10-23 00:00:00'),(100356,11,'XE3SR','Rubbish bin, trash can, dumpster','Y','2025-10-23 00:00:00'),(100357,11,'XM5DQ2','Rubefacient','Y','2025-10-23 00:00:00'),(100358,11,'1F02','Rubella','Y','2025-10-23 00:00:00'),(100359,11,'1F02.1','Rubella arthritis','Y','2025-10-23 00:00:00'),(100360,11,'XM3ZS8','Rubella immunoglobulin','Y','2025-10-23 00:00:00'),(100361,11,'XM7PP1','Rubella vaccines','Y','2025-10-23 00:00:00'),(100362,11,'XN2WE','Rubella virus','Y','2025-10-23 00:00:00'),(100363,11,'1F02.0','Rubella with neurological complications','Y','2025-10-23 00:00:00'),(100364,11,'1F02.Y','Rubella with other specified complication','Y','2025-10-23 00:00:00'),(100365,11,'1F02.2','Rubella without complication','Y','2025-10-23 00:00:00'),(100366,11,'XM3B09','Rubella, combinations with mumps, live attenuated','Y','2025-10-23 00:00:00'),(100367,11,'XM9PS9','Rubella, live attenuated','Y','2025-10-23 00:00:00'),(100368,11,'9A94.0','Rubeosis of iris','Y','2025-10-23 00:00:00'),(100369,11,'XM6941','Rubidium chloride Rb82','Y','2025-10-23 00:00:00'),(100370,11,'XN2F7','Rubivirus','Y','2025-10-23 00:00:00'),(100371,11,'XN4QJ','Rubulavirus','Y','2025-10-23 00:00:00'),(100372,11,'XM2G84','Rucaparib','Y','2025-10-23 00:00:00'),(100373,11,'XM6BU4','Rufinamide','Y','2025-10-23 00:00:00'),(100374,11,'XM7BN7','Rufloxacin','Y','2025-10-23 00:00:00'),(100375,11,'XM9TR7','Rufocromomycin','Y','2025-10-23 00:00:00'),(100376,11,'XE3WK','Rug, mat, loose carpet','Y','2025-10-23 00:00:00'),(100377,11,'XE9R3','Rugby pole, net pole, goal post','Y','2025-10-23 00:00:00'),(100378,11,'MB29.4','Rumination-regurgitation','Y','2025-10-23 00:00:00'),(100379,11,'6B85','Rumination-regurgitation disorder','Y','2025-10-23 00:00:00'),(100380,11,'XM3E25','Rupatadine','Y','2025-10-23 00:00:00'),(100381,11,'NC96.02','Rupture of Achilles tendon','Y','2025-10-23 00:00:00'),(100382,11,'NC93.62','Rupture of anterior cruciate ligament','Y','2025-10-23 00:00:00'),(100383,11,'BD52.3','Rupture of artery','Y','2025-10-23 00:00:00'),(100384,11,'GC01.3','Rupture of bladder, nontraumatic','Y','2025-10-23 00:00:00'),(100385,11,'NC93.53','Rupture of lateral collateral ligament of knee','Y','2025-10-23 00:00:00'),(100386,11,'ND14.5','Rupture of ligaments at ankle or foot level','Y','2025-10-23 00:00:00'),(100387,11,'NC93.52','Rupture of medial collateral ligament of knee','Y','2025-10-23 00:00:00'),(100388,11,'BA60.6','Rupture of papillary muscle or chordae tendineae as current complication following acute myocardial infarction','Y','2025-10-23 00:00:00'),(100389,11,'NC93.63','Rupture of posterior cruciate ligament','Y','2025-10-23 00:00:00'),(100390,11,'BB02.2','Rupture of pulmonary vessels','Y','2025-10-23 00:00:00'),(100391,11,'JB0A.0','Rupture of uterus before onset of labour','Y','2025-10-23 00:00:00'),(100392,11,'JB0A.1','Rupture of uterus during labour','Y','2025-10-23 00:00:00'),(100393,11,'XM8JD0','Russell viper snake venom','Y','2025-10-23 00:00:00'),(100394,11,'XM8RT8','Russel\'s viper venin','Y','2025-10-23 00:00:00'),(100395,11,'XM36C7','Russula subnigricans mushroom','Y','2025-10-23 00:00:00'),(100396,11,'XM4AC2','Ruta graveolens plant','Y','2025-10-23 00:00:00'),(100397,11,'XM5734','Rutoside','Y','2025-10-23 00:00:00'),(100398,11,'XM0853','Ruxolitinib','Y','2025-10-23 00:00:00'),(100399,11,'XA3407','S1 level','Y','2025-10-23 00:00:00'),(100400,11,'XA8EL3','S2 level','Y','2025-10-23 00:00:00'),(100401,11,'XA1VA6','S3 level','Y','2025-10-23 00:00:00'),(100402,11,'XA2EF6','S4 level','Y','2025-10-23 00:00:00'),(100403,11,'XA4L09','S5 level','Y','2025-10-23 00:00:00'),(100404,11,'XN9PD','Saaremaa virus','Y','2025-10-23 00:00:00'),(100405,11,'XM4BY7','Sabadilla insecticide','Y','2025-10-23 00:00:00'),(100406,11,'XM5B91','Sabalis serrulatae fructus','Y','2025-10-23 00:00:00'),(100407,11,'XN55S','Sabi','Y','2025-10-23 00:00:00'),(100408,11,'XM85E8','Saccharated iron oxide','Y','2025-10-23 00:00:00'),(100409,11,'XM7CN5','Saccharin','Y','2025-10-23 00:00:00'),(100410,11,'XM4X08','Saccharomyces boulardii','Y','2025-10-23 00:00:00'),(100411,11,'XM5Q93','Sacituzumab govitecan','Y','2025-10-23 00:00:00'),(100412,11,'XA24Q3','Sacral lymph node','Y','2025-10-23 00:00:00'),(100413,11,'XA9F62','Sacral nerve root','Y','2025-10-23 00:00:00'),(100414,11,'XA0929','Sacral plexus','Y','2025-10-23 00:00:00'),(100415,11,'XA2UC8','Sacral region','Y','2025-10-23 00:00:00'),(100416,11,'XA85J0','Sacral spinal cord','Y','2025-10-23 00:00:00'),(100417,11,'XA17Y2','Sacral spinal nerve','Y','2025-10-23 00:00:00'),(100418,11,'XA0SA1','Sacral splanchnic nerves','Y','2025-10-23 00:00:00'),(100419,11,'XA71Q4','Sacral vein','Y','2025-10-23 00:00:00'),(100420,11,'LB73.26','Sacralization of the last lumbar vertebra','Y','2025-10-23 00:00:00'),(100421,11,'XA70B6','Sacrococcygeal joint','Y','2025-10-23 00:00:00'),(100422,11,'XA8GZ2','Sacrococcygeal ligament','Y','2025-10-23 00:00:00'),(100423,11,'EG63.2','Sacrococcygeal pilonidal abscess','Y','2025-10-23 00:00:00'),(100424,11,'EG63.1','Sacrococcygeal pilonidal cyst','Y','2025-10-23 00:00:00'),(100425,11,'EG63','Sacrococcygeal pilonidal disease','Y','2025-10-23 00:00:00'),(100426,11,'EG63.0','Sacrococcygeal pilonidal sinus','Y','2025-10-23 00:00:00'),(100427,11,'XA4L23','Sacrococcygeal region','Y','2025-10-23 00:00:00'),(100428,11,'XA3T32','Sacroiliac joint','Y','2025-10-23 00:00:00'),(100429,11,'FA92.01','Sacroiliitis, not elsewhere classified','Y','2025-10-23 00:00:00'),(100430,11,'XM69V4','Sacrosidase','Y','2025-10-23 00:00:00'),(100431,11,'XA8J68','Sacrospinous ligament','Y','2025-10-23 00:00:00'),(100432,11,'XA6396','Sacrotuberous ligament','Y','2025-10-23 00:00:00'),(100433,11,'XA14W3','Sacrum','Y','2025-10-23 00:00:00'),(100434,11,'LB73.28','Sacrum agenesis or hypoplasia','Y','2025-10-23 00:00:00'),(100435,11,'XE0ZU','Safety interlock component of medical device','Y','2025-10-23 00:00:00'),(100436,11,'XE58K','Safety valve component of medical device','Y','2025-10-23 00:00:00'),(100437,11,'XM2YX6','Safflower oil','Y','2025-10-23 00:00:00'),(100438,11,'XM8H59','Safinamide','Y','2025-10-23 00:00:00'),(100439,11,'XM96M0','Safrazine','Y','2025-10-23 00:00:00'),(100440,11,'XE0L4','Sailboat or unpowered yacht as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(100441,11,'XE9SF','Sailboat, unpowered yacht','Y','2025-10-23 00:00:00'),(100442,11,'XN5QW','Saint Louis encephalitis virus','Y','2025-10-23 00:00:00'),(100443,11,'XM7P83','Salamander toxin','Y','2025-10-23 00:00:00'),(100444,11,'XM8MA0','Salbutamol','Y','2025-10-23 00:00:00'),(100445,11,'XM4WV7','Salicylamide','Y','2025-10-23 00:00:00'),(100446,11,'XM01E9','Salicylate theobromine calcium','Y','2025-10-23 00:00:00'),(100447,11,'XM9773','Salicylhydroxamic acid','Y','2025-10-23 00:00:00'),(100448,11,'XM68B5','Salicylic acid','Y','2025-10-23 00:00:00'),(100449,11,'XM7SC9','Salinazid','Y','2025-10-23 00:00:00'),(100450,11,'XA5CM1','Salivary duct','Y','2025-10-23 00:00:00'),(100451,11,'XA5T23','Salivary gland apparatus','Y','2025-10-23 00:00:00'),(100452,11,'XM6B34','Salmeterol','Y','2025-10-23 00:00:00'),(100453,11,'XN4D3','Salmon pancreatic disease virus','Y','2025-10-23 00:00:00'),(100454,11,'LC50.0','Salmon patch','Y','2025-10-23 00:00:00'),(100455,11,'XN0N5','Salmonella Agona','Y','2025-10-23 00:00:00'),(100456,11,'XN0Q7','Salmonella Bareilly','Y','2025-10-23 00:00:00'),(100457,11,'XN2DW','Salmonella bongori spp','Y','2025-10-23 00:00:00'),(100458,11,'XN4MS','Salmonella Braenderup','Y','2025-10-23 00:00:00'),(100459,11,'XN3KA','Salmonella Brandenburg','Y','2025-10-23 00:00:00'),(100460,11,'XN910','Salmonella Bredeney','Y','2025-10-23 00:00:00'),(100461,11,'XN0NU','Salmonella Choleraesuis','Y','2025-10-23 00:00:00'),(100462,11,'XN7QM','Salmonella Concord','Y','2025-10-23 00:00:00'),(100463,11,'XN8RF','Salmonella Cubana','Y','2025-10-23 00:00:00'),(100464,11,'XN5VC','Salmonella enterica spp.','Y','2025-10-23 00:00:00'),(100465,11,'XN7PN','Salmonella enterica subspecies enterica serovar 4,[5],12:i:-','Y','2025-10-23 00:00:00'),(100466,11,'XN2DJ','Salmonella enterica subspecies enterica serovar 4,5,12:i:-','Y','2025-10-23 00:00:00'),(100467,11,'XN1W7','Salmonella Enteritidis','Y','2025-10-23 00:00:00'),(100468,11,'1A09.0','Salmonella enteritis','Y','2025-10-23 00:00:00'),(100469,11,'XN3AE','Salmonella Gaminara','Y','2025-10-23 00:00:00'),(100470,11,'XN4QY','Salmonella Give','Y','2025-10-23 00:00:00'),(100471,11,'XN5TM','Salmonella Hartford','Y','2025-10-23 00:00:00'),(100472,11,'XN6JL','Salmonella Havana','Y','2025-10-23 00:00:00'),(100473,11,'XN39C','Salmonella Infantis','Y','2025-10-23 00:00:00'),(100474,11,'1A09.Z','Salmonella infection, unspecified','Y','2025-10-23 00:00:00'),(100475,11,'XN36N','Salmonella Kedougou','Y','2025-10-23 00:00:00'),(100476,11,'XN5SM','Salmonella Kiambu','Y','2025-10-23 00:00:00'),(100477,11,'XN8F6','Salmonella Lille','Y','2025-10-23 00:00:00'),(100478,11,'XN5LV','Salmonella Litchfield','Y','2025-10-23 00:00:00'),(100479,11,'XN4LH','Salmonella Mbandaka','Y','2025-10-23 00:00:00'),(100480,11,'XN3UH','Salmonella Mikawasima','Y','2025-10-23 00:00:00'),(100481,11,'XN1FK','Salmonella Montevideo','Y','2025-10-23 00:00:00'),(100482,11,'XN52S','Salmonella Nchanga','Y','2025-10-23 00:00:00'),(100483,11,'XN87G','Salmonella Newport','Y','2025-10-23 00:00:00'),(100484,11,'XN1QX','Salmonella Oranienburg','Y','2025-10-23 00:00:00'),(100485,11,'XN7U5','Salmonella Panama','Y','2025-10-23 00:00:00'),(100486,11,'XN0UV','Salmonella Paratyphi','Y','2025-10-23 00:00:00'),(100487,11,'XN1K5','Salmonella paratyphi A','Y','2025-10-23 00:00:00'),(100488,11,'XN322','Salmonella paratyphi B','Y','2025-10-23 00:00:00'),(100489,11,'XN5TR','Salmonella paratyphi C','Y','2025-10-23 00:00:00'),(100490,11,'XN2SZ','Salmonella Poona','Y','2025-10-23 00:00:00'),(100491,11,'MG50.9Y','Salmonella resistant to other antibiotic','Y','2025-10-23 00:00:00'),(100492,11,'MG50.9Z','Salmonella resistant to unspecified antibiotic','Y','2025-10-23 00:00:00'),(100493,11,'XN8SF','Salmonella Saintpaul','Y','2025-10-23 00:00:00'),(100494,11,'XN7EC','Salmonella Sandiego','Y','2025-10-23 00:00:00'),(100495,11,'XN5WE','Salmonella Senftenberg','Y','2025-10-23 00:00:00'),(100496,11,'XN2MU','Salmonella Stanley','Y','2025-10-23 00:00:00'),(100497,11,'XN0LX','Salmonella Strathcona','Y','2025-10-23 00:00:00'),(100498,11,'XN291','Salmonella Tennessee','Y','2025-10-23 00:00:00'),(100499,11,'XN3TU','Salmonella Thompson','Y','2025-10-23 00:00:00'),(100500,11,'XN4AM','Salmonella Typhi','Y','2025-10-23 00:00:00'),(100501,11,'XN15L','Salmonella Typhimurium','Y','2025-10-23 00:00:00'),(100502,11,'XN3DF','Salmonella Virchow','Y','2025-10-23 00:00:00'),(100503,11,'XN13V','Salmonella Wandsworth','Y','2025-10-23 00:00:00'),(100504,11,'XN97K','Salmonella Weltevreden','Y','2025-10-23 00:00:00'),(100505,11,'XN0QE','Salmonellae','Y','2025-10-23 00:00:00'),(100506,11,'GA07','Salpingitis and oophoritis','Y','2025-10-23 00:00:00'),(100507,11,'GA07.Z','Salpingitis and oophoritis, unspecified','Y','2025-10-23 00:00:00'),(100508,11,'GA17.4','Salpingitis isthmica nodosa','Y','2025-10-23 00:00:00'),(100509,11,'XA81P5','Salpingopharyngeus muscle','Y','2025-10-23 00:00:00'),(100510,11,'XA0SH8','Salpingopharyngeus tendon','Y','2025-10-23 00:00:00'),(100511,11,'XM68K3','Salsalate','Y','2025-10-23 00:00:00'),(100512,11,'XM4HZ4','Salt-retaining mineralocorticoid','Y','2025-10-23 00:00:00'),(100513,11,'XM9409','Saluretic','Y','2025-10-23 00:00:00'),(100514,11,'XM3VB9','Salvarsan 606 (neosilver) (silver)','Y','2025-10-23 00:00:00'),(100515,11,'XM5SB5','Salvinorin A','Y','2025-10-23 00:00:00'),(100516,11,'XM0JJ4','Samarium (153Sm) hydroxyapatite colloid','Y','2025-10-23 00:00:00'),(100517,11,'XM7BE0','Sambucus plant','Y','2025-10-23 00:00:00'),(100518,11,'XD80L4','Samples transport containersothers','Y','2025-10-23 00:00:00'),(100519,11,'CA0A.0','Samter syndrome','Y','2025-10-23 00:00:00'),(100520,11,'1D45','Sandfly fever','Y','2025-10-23 00:00:00'),(100521,11,'XM9W70','Sanguinaria canadensis plant','Y','2025-10-23 00:00:00'),(100522,11,'XM9KL1','Santonin','Y','2025-10-23 00:00:00'),(100523,11,'XM0VK2','Santyl','Y','2025-10-23 00:00:00'),(100524,11,'XA09P5','Saphenous branch of the Descending genicular artery','Y','2025-10-23 00:00:00'),(100525,11,'XA9EW1','Saphenous nerve','Y','2025-10-23 00:00:00'),(100526,11,'4A61','SAPHO syndrome','Y','2025-10-23 00:00:00'),(100527,11,'XN9EH','Sapovirus','Y','2025-10-23 00:00:00'),(100528,11,'XM6ZV0','Sapropterin','Y','2025-10-23 00:00:00'),(100529,11,'XM7YP4','Saquinavir','Y','2025-10-23 00:00:00'),(100530,11,'XM00F2','Saralasin','Y','2025-10-23 00:00:00'),(100531,11,'XN92F','Sarcocystis','Y','2025-10-23 00:00:00'),(100532,11,'1A34','Sarcocystosis','Y','2025-10-23 00:00:00'),(100533,11,'4B20','Sarcoidosis','Y','2025-10-23 00:00:00'),(100534,11,'4B20.0','Sarcoidosis of lung','Y','2025-10-23 00:00:00'),(100535,11,'4B20.1','Sarcoidosis of lymph nodes','Y','2025-10-23 00:00:00'),(100536,11,'4B20.2','Sarcoidosis of the digestive system','Y','2025-10-23 00:00:00'),(100537,11,'4B20.Z','Sarcoidosis, unspecified','Y','2025-10-23 00:00:00'),(100538,11,'XM4ZA6','Sarcolysin','Y','2025-10-23 00:00:00'),(100539,11,'XH7V57','Sarcoma botryoides','Y','2025-10-23 00:00:00'),(100540,11,'XH4UM7','Sarcoma, NOS','Y','2025-10-23 00:00:00'),(100541,11,'2B5F.2','Sarcoma, not elsewhere classified of other specified sites','Y','2025-10-23 00:00:00'),(100542,11,'2B5F.1','Sarcoma, not elsewhere classified of retroperitoneum or peritoneum','Y','2025-10-23 00:00:00'),(100543,11,'2B5F.1Z','Sarcoma, not elsewhere classified of retroperitoneum or peritoneum, unspecified','Y','2025-10-23 00:00:00'),(100544,11,'2B5F.0','Sarcoma, not elsewhere classified of uterus','Y','2025-10-23 00:00:00'),(100545,11,'2B5F','Sarcoma, not elsewhere classified, primary site','Y','2025-10-23 00:00:00'),(100546,11,'2B5F.3','Sarcoma, not elsewhere classified, primary site unknown','Y','2025-10-23 00:00:00'),(100547,11,'XH7Y17','Sarcomatosis, NOS','Y','2025-10-23 00:00:00'),(100548,11,'XN3E3','Sarcoptes','Y','2025-10-23 00:00:00'),(100549,11,'5C50.71','Sarcosinaemia','Y','2025-10-23 00:00:00'),(100550,11,'XM38N5','Sargramostim','Y','2025-10-23 00:00:00'),(100551,11,'XM45G5','Sarilumab','Y','2025-10-23 00:00:00'),(100552,11,'XM1TG4','Sarkomycin','Y','2025-10-23 00:00:00'),(100553,11,'XN109','SARS-CoV-2','Y','2025-10-23 00:00:00'),(100554,11,'XN0HL','SARS-CoV-2 Alpha','Y','2025-10-23 00:00:00'),(100555,11,'XN4Q7','SARS-CoV-2 Beta','Y','2025-10-23 00:00:00'),(100556,11,'XN8V6','SARS-CoV-2 Delta','Y','2025-10-23 00:00:00'),(100557,11,'XN1GK','SARS-CoV-2 Epsilon','Y','2025-10-23 00:00:00'),(100558,11,'XN2V4','SARS-CoV-2 Eta','Y','2025-10-23 00:00:00'),(100559,11,'XN5BQ','SARS-CoV-2 Gamma','Y','2025-10-23 00:00:00'),(100560,11,'XN3UD','SARS-CoV-2 Iota','Y','2025-10-23 00:00:00'),(100561,11,'XN9LB','SARS-CoV-2 Kappa','Y','2025-10-23 00:00:00'),(100562,11,'XN6AM','SARS-CoV-2 Lambda','Y','2025-10-23 00:00:00'),(100563,11,'XN39J','SARS-CoV-2 Mu','Y','2025-10-23 00:00:00'),(100564,11,'XN161','SARS-CoV-2 Omicron','Y','2025-10-23 00:00:00'),(100565,11,'XN4Q1','SARS-CoV-2 Theta','Y','2025-10-23 00:00:00'),(100566,11,'XN3ZE','SARS-CoV-2 Zeta','Y','2025-10-23 00:00:00'),(100567,11,'XA5CE3','Sartorius muscle','Y','2025-10-23 00:00:00'),(100568,11,'XA0981','Sartorius tendon','Y','2025-10-23 00:00:00'),(100569,11,'XM04S7','Saruplase','Y','2025-10-23 00:00:00'),(100570,11,'XM7115','S-atenolol','Y','2025-10-23 00:00:00'),(100571,11,'XM86Z5','Satraplatin','Y','2025-10-23 00:00:00'),(100572,11,'XM77Q2','Satratoxin','Y','2025-10-23 00:00:00'),(100573,11,'XM02N6','Savin (oil)','Y','2025-10-23 00:00:00'),(100574,11,'XM5QH2','Saxagliptin','Y','2025-10-23 00:00:00'),(100575,11,'1G04','Scabies','Y','2025-10-23 00:00:00'),(100576,11,'XE7RK','Scaffolding','Y','2025-10-23 00:00:00'),(100577,11,'XE2MH','Scale component of medical device','Y','2025-10-23 00:00:00'),(100578,11,'XA3XC1','Scalene tendon','Y','2025-10-23 00:00:00'),(100579,11,'XA0JF1','Scalenus anterior muscle','Y','2025-10-23 00:00:00'),(100580,11,'XA45L1','scalenus anterior tendon','Y','2025-10-23 00:00:00'),(100581,11,'XA6S71','Scalenus medius muscle','Y','2025-10-23 00:00:00'),(100582,11,'XA7XV7','scalenus medius tendon','Y','2025-10-23 00:00:00'),(100583,11,'XA3TF5','Scalenus minimus muscle','Y','2025-10-23 00:00:00'),(100584,11,'XA7NL5','scalenus minimus tendon','Y','2025-10-23 00:00:00'),(100585,11,'XA35K5','Scalenus posterior muscle','Y','2025-10-23 00:00:00'),(100586,11,'XA9HH7','scalenus posterior tendon','Y','2025-10-23 00:00:00'),(100587,11,'XM3KC2','Scallop seafood poison','Y','2025-10-23 00:00:00'),(100588,11,'XA6CW5','Scalp','Y','2025-10-23 00:00:00'),(100589,11,'EC92.1','Scalp dysaesthesia','Y','2025-10-23 00:00:00'),(100590,11,'EG30.0','Scalp folliculitis','Y','2025-10-23 00:00:00'),(100591,11,'XA5Y68','Scalp hair','Y','2025-10-23 00:00:00'),(100592,11,'XA6AL1','Scalp margin','Y','2025-10-23 00:00:00'),(100593,11,'EA90.50','Scalp psoriasis','Y','2025-10-23 00:00:00'),(100594,11,'XM38T6','Scammony','Y','2025-10-23 00:00:00'),(100595,11,'XE4TH','Scanner component of medical device','Y','2025-10-23 00:00:00'),(100596,11,'XA7480','Scaphoid bone','Y','2025-10-23 00:00:00'),(100597,11,'XA5LW2','Scaphoid fossa of pinna','Y','2025-10-23 00:00:00'),(100598,11,'XA53X6','Scapula','Y','2025-10-23 00:00:00'),(100599,11,'XA3WD7','Scapular region','Y','2025-10-23 00:00:00'),(100600,11,'8C70.5','Scapuloperoneal muscular dystrophy','Y','2025-10-23 00:00:00'),(100601,11,'BC81.22','Scar mediated macro reentrant atrial tachycardia','Y','2025-10-23 00:00:00'),(100602,11,'EH94','Scar of skin, not elsewhere classified','Y','2025-10-23 00:00:00'),(100603,11,'XM4Y94','S-Carboxymethyl-cysteine','Y','2025-10-23 00:00:00'),(100604,11,'1B50','Scarlet fever','Y','2025-10-23 00:00:00'),(100605,11,'XM4AZ3','Scarlet red','Y','2025-10-23 00:00:00'),(100606,11,'ED70.5','Scarring alopecia','Y','2025-10-23 00:00:00'),(100607,11,'ED70.5Y','Scarring alopecia due to other specified cause','Y','2025-10-23 00:00:00'),(100608,11,'ED70.5Z','Scarring alopecia of unknown or unspecified aetiology','Y','2025-10-23 00:00:00'),(100609,11,'1F2H','Scedosporiosis','Y','2025-10-23 00:00:00'),(100610,11,'XN78L','Schistosoma','Y','2025-10-23 00:00:00'),(100611,11,'XN86N','Schistosoma haematobium','Y','2025-10-23 00:00:00'),(100612,11,'XN9FK','Schistosoma intercalatum','Y','2025-10-23 00:00:00'),(100613,11,'XN1ZJ','Schistosoma japonicum','Y','2025-10-23 00:00:00'),(100614,11,'XN8HD','Schistosoma mansoni','Y','2025-10-23 00:00:00'),(100615,11,'XN90N','Schistosoma matthei','Y','2025-10-23 00:00:00'),(100616,11,'XN9T7','Schistosoma mekongi','Y','2025-10-23 00:00:00'),(100617,11,'1F86.5','Schistosomal pneumonitis','Y','2025-10-23 00:00:00'),(100618,11,'1F86','Schistosomiasis','Y','2025-10-23 00:00:00'),(100619,11,'1F86.0','Schistosomiasis due to Schistosoma haematobium','Y','2025-10-23 00:00:00'),(100620,11,'1F86.2','Schistosomiasis due to Schistosoma japonicum','Y','2025-10-23 00:00:00'),(100621,11,'1F86.1','Schistosomiasis due to Schistosoma mansoni','Y','2025-10-23 00:00:00'),(100622,11,'1F86.Z','Schistosomiasis due to unspecified or unknown Schistosoma species','Y','2025-10-23 00:00:00'),(100623,11,'LA05.61','Schizencephaly','Y','2025-10-23 00:00:00'),(100624,11,'6A21','Schizoaffective disorder','Y','2025-10-23 00:00:00'),(100625,11,'6A21.2','Schizoaffective disorder, continuous','Y','2025-10-23 00:00:00'),(100626,11,'6A21.20','Schizoaffective disorder, continuous, currently symptomatic','Y','2025-10-23 00:00:00'),(100627,11,'6A21.22','Schizoaffective disorder, continuous, in full remission','Y','2025-10-23 00:00:00'),(100628,11,'6A21.21','Schizoaffective disorder, continuous, in partial remission','Y','2025-10-23 00:00:00'),(100629,11,'6A21.2Z','Schizoaffective disorder, continuous, unspecified','Y','2025-10-23 00:00:00'),(100630,11,'6A21.0','Schizoaffective disorder, first episode','Y','2025-10-23 00:00:00'),(100631,11,'6A21.00','Schizoaffective disorder, first episode, currently symptomatic','Y','2025-10-23 00:00:00'),(100632,11,'6A21.02','Schizoaffective disorder, first episode, in full remission','Y','2025-10-23 00:00:00'),(100633,11,'6A21.01','Schizoaffective disorder, first episode, in partial remission','Y','2025-10-23 00:00:00'),(100634,11,'6A21.0Z','Schizoaffective disorder, first episode, unspecified','Y','2025-10-23 00:00:00'),(100635,11,'6A21.1','Schizoaffective disorder, multiple episodes','Y','2025-10-23 00:00:00'),(100636,11,'6A21.10','Schizoaffective disorder, multiple episodes, currently symptomatic','Y','2025-10-23 00:00:00'),(100637,11,'6A21.12','Schizoaffective disorder, multiple episodes, in full remission','Y','2025-10-23 00:00:00'),(100638,11,'6A21.11','Schizoaffective disorder, multiple episodes, in partial remission','Y','2025-10-23 00:00:00'),(100639,11,'6A21.1Z','Schizoaffective disorder, multiple episodes, unspecified','Y','2025-10-23 00:00:00'),(100640,11,'6A21.Z','Schizoaffective disorder, unspecified','Y','2025-10-23 00:00:00'),(100641,11,'XM9Z81','Schizontozide (blood) (tissue)','Y','2025-10-23 00:00:00'),(100642,11,'6A20','Schizophrenia','Y','2025-10-23 00:00:00'),(100643,11,'6A2Z','Schizophrenia or other primary psychotic disorders, unspecified','Y','2025-10-23 00:00:00'),(100644,11,'6A20.2','Schizophrenia, continuous','Y','2025-10-23 00:00:00'),(100645,11,'6A20.20','Schizophrenia, continuous, currently symptomatic','Y','2025-10-23 00:00:00'),(100646,11,'6A20.22','Schizophrenia, continuous, in full remission','Y','2025-10-23 00:00:00'),(100647,11,'6A20.21','Schizophrenia, continuous, in partial remission','Y','2025-10-23 00:00:00'),(100648,11,'6A20.2Z','Schizophrenia, continuous, unspecified','Y','2025-10-23 00:00:00'),(100649,11,'6A20.Z','Schizophrenia, episode unspecified','Y','2025-10-23 00:00:00'),(100650,11,'6A20.0','Schizophrenia, first episode','Y','2025-10-23 00:00:00'),(100651,11,'6A20.00','Schizophrenia, first episode, currently symptomatic','Y','2025-10-23 00:00:00'),(100652,11,'6A20.02','Schizophrenia, first episode, in full remission','Y','2025-10-23 00:00:00'),(100653,11,'6A20.01','Schizophrenia, first episode, in partial remission','Y','2025-10-23 00:00:00'),(100654,11,'6A20.0Z','Schizophrenia, first episode, unspecified','Y','2025-10-23 00:00:00'),(100655,11,'6A20.1','Schizophrenia, multiple episodes','Y','2025-10-23 00:00:00'),(100656,11,'6A20.10','Schizophrenia, multiple episodes, currently symptomatic','Y','2025-10-23 00:00:00'),(100657,11,'6A20.12','Schizophrenia, multiple episodes, in full remission','Y','2025-10-23 00:00:00'),(100658,11,'6A20.11','Schizophrenia, multiple episodes, in partial remission','Y','2025-10-23 00:00:00'),(100659,11,'6A20.1Z','Schizophrenia, multiple episodes, unspecified','Y','2025-10-23 00:00:00'),(100660,11,'6A22','Schizotypal disorder','Y','2025-10-23 00:00:00'),(100661,11,'XH4GV2','Schmincke tumour','Y','2025-10-23 00:00:00'),(100662,11,'XH35M0','Schneiderian carcinoma','Y','2025-10-23 00:00:00'),(100663,11,'XH4PB5','Schneiderian papilloma, inverted','Y','2025-10-23 00:00:00'),(100664,11,'XM0EH6','Schoenocaulon officinale plant','Y','2025-10-23 00:00:00'),(100665,11,'XE6TU','School or educational area','Y','2025-10-23 00:00:00'),(100666,11,'XM0TB4','Schradan','Y','2025-10-23 00:00:00'),(100667,11,'XH98Z3','Schwannoma, NOS','Y','2025-10-23 00:00:00'),(100668,11,'XA9KK8','Sciatic nerve','Y','2025-10-23 00:00:00'),(100669,11,'8C11.00','Sciatic nerve piriformis syndrome','Y','2025-10-23 00:00:00'),(100670,11,'ME84.3','Sciatica','Y','2025-10-23 00:00:00'),(100671,11,'XM71V6','Scilla glycosides','Y','2025-10-23 00:00:00'),(100672,11,'XM0SG7','Scilliroside','Y','2025-10-23 00:00:00'),(100673,11,'LA86.22','Scimitar syndrome','Y','2025-10-23 00:00:00'),(100674,11,'XH4FS4','Scirrhous adenocarcinoma','Y','2025-10-23 00:00:00'),(100675,11,'XE204','Scissors','Y','2025-10-23 00:00:00'),(100676,11,'XA2AF4','Sclera','Y','2025-10-23 00:00:00'),(100677,11,'9B52','Scleral staphyloma','Y','2025-10-23 00:00:00'),(100678,11,'KC22.2','Sclerema neonatorum','Y','2025-10-23 00:00:00'),(100679,11,'9B51','Scleritis','Y','2025-10-23 00:00:00'),(100680,11,'XM9854','Sclerosing agent','Y','2025-10-23 00:00:00'),(100681,11,'2C32.1','Sclerosing basal cell carcinoma of skin','Y','2025-10-23 00:00:00'),(100682,11,'XH4BT2','Sclerosing epithelioid fibrosarcoma','Y','2025-10-23 00:00:00'),(100683,11,'9A78.A','Sclerosing keratitis','Y','2025-10-23 00:00:00'),(100684,11,'XH8D43','Sclerosing liposarcoma','Y','2025-10-23 00:00:00'),(100685,11,'GB06.5','Sclerosing lymphangitis of penis','Y','2025-10-23 00:00:00'),(100686,11,'XH7436','Sclerosing pneumocytoma','Y','2025-10-23 00:00:00'),(100687,11,'XH6NZ8','Sclerosing stromal tumour','Y','2025-10-23 00:00:00'),(100688,11,'XH6QN6','Sclerosing thymoma','Y','2025-10-23 00:00:00'),(100689,11,'XH5JG7','Sclerotic fibroma','Y','2025-10-23 00:00:00'),(100690,11,'FA70.1','Scoliosis','Y','2025-10-23 00:00:00'),(100691,11,'XM74Y6','Scombroid fish seafood poison','Y','2025-10-23 00:00:00'),(100692,11,'XE28X','Scooter as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(100693,11,'XE4HS','Scooter as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(100694,11,'XM1MW1','Scopolamine','Y','2025-10-23 00:00:00'),(100695,11,'XM3UE6','Scopolia extract','Y','2025-10-23 00:00:00'),(100696,11,'3A03.2','Scorbutic anaemia','Y','2025-10-23 00:00:00'),(100697,11,'XE2EP','Scorpion','Y','2025-10-23 00:00:00'),(100698,11,'XM9DM8','Scorpion venom','Y','2025-10-23 00:00:00'),(100699,11,'XM5V26','Scorpionfish venom','Y','2025-10-23 00:00:00'),(100700,11,'XM5151','Scouring powder, not elsewhere classified','Y','2025-10-23 00:00:00'),(100701,11,'XE609','Scratched material','Y','2025-10-23 00:00:00'),(100702,11,'PG67','Scratched or clawed with undetermined intent by animal','Y','2025-10-23 00:00:00'),(100703,11,'PG66','Scratched or clawed with undetermined intent by person','Y','2025-10-23 00:00:00'),(100704,11,'XE3NX','Screw fastner component of medical device','Y','2025-10-23 00:00:00'),(100705,11,'BD75.1','Scrotal varices','Y','2025-10-23 00:00:00'),(100706,11,'XA8MT4','Scrotum','Y','2025-10-23 00:00:00'),(100707,11,'5B56.0','Scurvy','Y','2025-10-23 00:00:00'),(100708,11,'XE45C','Sea anemone','Y','2025-10-23 00:00:00'),(100709,11,'XM41L4','Sea anemone venom','Y','2025-10-23 00:00:00'),(100710,11,'XE43L','Sea cucumber','Y','2025-10-23 00:00:00'),(100711,11,'XM5QW5','Sea cucumber seafood poison','Y','2025-10-23 00:00:00'),(100712,11,'XM2HU5','Sea cucumber venom','Y','2025-10-23 00:00:00'),(100713,11,'XM8EA9','Sea nettle venom','Y','2025-10-23 00:00:00'),(100714,11,'XM51R6','Sea snail seafood poison','Y','2025-10-23 00:00:00'),(100715,11,'XE48L','Sea snake','Y','2025-10-23 00:00:00'),(100716,11,'XM6UB3','Sea snake venom','Y','2025-10-23 00:00:00'),(100717,11,'XE6ZA','Sea urchin','Y','2025-10-23 00:00:00'),(100718,11,'XM2M75','Sea urchin venom','Y','2025-10-23 00:00:00'),(100719,11,'XM87R6','Sea wasp venom','Y','2025-10-23 00:00:00'),(100720,11,'XM3BZ7','Seafood poison','Y','2025-10-23 00:00:00'),(100721,11,'XE4BJ','Seal component of medical device','Y','2025-10-23 00:00:00'),(100722,11,'SD90','Seasonal cold disorder (TM1)','Y','2025-10-23 00:00:00'),(100723,11,'6A80.4','Seasonal pattern of mood episode onset','Y','2025-10-23 00:00:00'),(100724,11,'XH0QL4','Sebaceoma','Y','2025-10-23 00:00:00'),(100725,11,'XH1NC5','Sebaceous adenoma','Y','2025-10-23 00:00:00'),(100726,11,'XH4VR2','Sebaceous carcinoma','Y','2025-10-23 00:00:00'),(100727,11,'XH0SH5','Sebaceous epithelioma','Y','2025-10-23 00:00:00'),(100728,11,'XA6666','Sebaceous gland','Y','2025-10-23 00:00:00'),(100729,11,'ED91.1','Sebaceous gland hyperplasia','Y','2025-10-23 00:00:00'),(100730,11,'XM6UN5','Sebelipase alfa','Y','2025-10-23 00:00:00'),(100731,11,'ED91.2','Seborrhoea','Y','2025-10-23 00:00:00'),(100732,11,'EA81','Seborrhoeic dermatitis and related conditions','Y','2025-10-23 00:00:00'),(100733,11,'9A06.71','Seborrhoeic dermatitis of eyelids','Y','2025-10-23 00:00:00'),(100734,11,'EA81.0','Seborrhoeic dermatitis of face','Y','2025-10-23 00:00:00'),(100735,11,'EA81.1','Seborrhoeic dermatitis of the scalp','Y','2025-10-23 00:00:00'),(100736,11,'EA81.Z','Seborrhoeic dermatitis, unspecified','Y','2025-10-23 00:00:00'),(100737,11,'EA81.Y','Seborrhoeic dermatosis of other specified type or distribution','Y','2025-10-23 00:00:00'),(100738,11,'2F21.0','Seborrhoeic keratosis','Y','2025-10-23 00:00:00'),(100739,11,'XH0949','Seborrhoeic keratosis','Y','2025-10-23 00:00:00'),(100740,11,'AA10','Seborrhoeic otitis externa','Y','2025-10-23 00:00:00'),(100741,11,'XM81J9','Secbutabarbital','Y','2025-10-23 00:00:00'),(100742,11,'XM98K0','Secnidazole','Y','2025-10-23 00:00:00'),(100743,11,'XM6QG0','Secobarbital','Y','2025-10-23 00:00:00'),(100744,11,'XA15A2','Second cervical nerve root','Y','2025-10-23 00:00:00'),(100745,11,'XA1LR0','Second cervical spinal nerve','Y','2025-10-23 00:00:00'),(100746,11,'DB60.1','Second degree haemorrhoids','Y','2025-10-23 00:00:00'),(100747,11,'JB09.1','Second degree perineal laceration during delivery','Y','2025-10-23 00:00:00'),(100748,11,'XA8HC5','Second interdigital web space of foot','Y','2025-10-23 00:00:00'),(100749,11,'XA5PY9','Second interdigital web space of hand','Y','2025-10-23 00:00:00'),(100750,11,'XA9BK9','Second lumbar nerve root','Y','2025-10-23 00:00:00'),(100751,11,'XA0VF5','Second lumbar spinal nerve','Y','2025-10-23 00:00:00'),(100752,11,'XA2GH9','Second lumbar vertebra','Y','2025-10-23 00:00:00'),(100753,11,'XA5HE0','Second metacarpal','Y','2025-10-23 00:00:00'),(100754,11,'XA9YH1','Second metacarpophalangeal joint','Y','2025-10-23 00:00:00'),(100755,11,'XA2P22','Second metatarsal head region','Y','2025-10-23 00:00:00'),(100756,11,'XA58K5','Second metatarsophalangeal joint','Y','2025-10-23 00:00:00'),(100757,11,'XA2Z59','Second perforating artery','Y','2025-10-23 00:00:00'),(100758,11,'XA7XY2','Second rib','Y','2025-10-23 00:00:00'),(100759,11,'XA4PP9','Second sacral nerve root','Y','2025-10-23 00:00:00'),(100760,11,'XA9V46','Second sacral spinal nerve','Y','2025-10-23 00:00:00'),(100761,11,'XA8933','Second thoracic nerve root','Y','2025-10-23 00:00:00'),(100762,11,'XA1K85','Second thoracic spinal nerve','Y','2025-10-23 00:00:00'),(100763,11,'XA8QS0','Second thoracic vertebra','Y','2025-10-23 00:00:00'),(100764,11,'XA8ZZ3','Second toe','Y','2025-10-23 00:00:00'),(100765,11,'XA7GG3','Second toenail','Y','2025-10-23 00:00:00'),(100766,11,'GA20.01','Secondary amenorrhoea','Y','2025-10-23 00:00:00'),(100767,11,'9C61.3','Secondary angle closure glaucoma','Y','2025-10-23 00:00:00'),(100768,11,'9C61.33','Secondary angle closure glaucoma due to endothelial overgrowth','Y','2025-10-23 00:00:00'),(100769,11,'9C61.34','Secondary angle closure glaucoma due to epithelial ingrowth','Y','2025-10-23 00:00:00'),(100770,11,'9C61.36','Secondary angle closure glaucoma due to other anterior displacement of the lens-iris diaphragm','Y','2025-10-23 00:00:00'),(100771,11,'9C61.30','Secondary angle closure glaucoma with pupillary block','Y','2025-10-23 00:00:00'),(100772,11,'9C61.31','Secondary angle closure glaucoma without pupillary block','Y','2025-10-23 00:00:00'),(100773,11,'9C61.3Z','Secondary angle closure glaucoma, unspecified','Y','2025-10-23 00:00:00'),(100774,11,'4A45.1','Secondary antiphospholipid syndrome','Y','2025-10-23 00:00:00'),(100775,11,'6E63','Secondary anxiety syndrome','Y','2025-10-23 00:00:00'),(100776,11,'8B95','Secondary brachial plexus lesion due to certain specified disorders','Y','2025-10-23 00:00:00'),(100777,11,'6E69','Secondary catatonia syndrome','Y','2025-10-23 00:00:00'),(100778,11,'9C61.42','Secondary childhood glaucoma','Y','2025-10-23 00:00:00'),(100779,11,'8A01.1','Secondary Chorea','Y','2025-10-23 00:00:00'),(100780,11,'8A01.1Z','Secondary chorea, unspecified','Y','2025-10-23 00:00:00'),(100781,11,'9A78.21','Secondary corneal oedema','Y','2025-10-23 00:00:00'),(100782,11,'BD53','Secondary disorders of arteries and arterioles','Y','2025-10-23 00:00:00'),(100783,11,'BD53.Z','Secondary disorders of arteries and arterioles, unspecified','Y','2025-10-23 00:00:00'),(100784,11,'FB33','Secondary disorders of muscle','Y','2025-10-23 00:00:00'),(100785,11,'FB43','Secondary disorders of synovium or tendon','Y','2025-10-23 00:00:00'),(100786,11,'6E65','Secondary dissociative syndrome','Y','2025-10-23 00:00:00'),(100787,11,'8A02.1','Secondary dystonia','Y','2025-10-23 00:00:00'),(100788,11,'8A02.1Z','Secondary dystonia, unspecified','Y','2025-10-23 00:00:00'),(100789,11,'EA88.3','Secondary eczema','Y','2025-10-23 00:00:00'),(100790,11,'ND57','Secondary effect of trauma','Y','2025-10-23 00:00:00'),(100791,11,'GA31.1','Secondary female infertility','Y','2025-10-23 00:00:00'),(100792,11,'GA31.1Y','Secondary female infertility of other specified origin','Y','2025-10-23 00:00:00'),(100793,11,'GA31.11','Secondary female infertility of tubal origin','Y','2025-10-23 00:00:00'),(100794,11,'GA31.1Z','Secondary female infertility of unspecified origin','Y','2025-10-23 00:00:00'),(100795,11,'GA31.10','Secondary female infertility of uterine origin','Y','2025-10-23 00:00:00'),(100796,11,'9C61.2C','Secondary glaucoma due to extra-ocular mass','Y','2025-10-23 00:00:00'),(100797,11,'FA25.1','Secondary gout','Y','2025-10-23 00:00:00'),(100798,11,'FA25.1Z','Secondary gout, unspecified','Y','2025-10-23 00:00:00'),(100799,11,'8A84','Secondary headache','Y','2025-10-23 00:00:00'),(100800,11,'8A84.Z','Secondary headache, unspecified','Y','2025-10-23 00:00:00'),(100801,11,'5A72.1','Secondary hyperaldosteronism','Y','2025-10-23 00:00:00'),(100802,11,'5C80.01','Secondary hypercholesterolaemia','Y','2025-10-23 00:00:00'),(100803,11,'5A51.1','Secondary hyperparathyroidism','Y','2025-10-23 00:00:00'),(100804,11,'BA04','Secondary hypertension','Y','2025-10-23 00:00:00'),(100805,11,'BA04.Z','Secondary hypertension, unspecified','Y','2025-10-23 00:00:00'),(100806,11,'5A02.6','Secondary hyperthyroidism','Y','2025-10-23 00:00:00'),(100807,11,'5A50.01','Secondary hypoparathyroidism','Y','2025-10-23 00:00:00'),(100808,11,'1B72.2','Secondary impetiginisation of the skin','Y','2025-10-23 00:00:00'),(100809,11,'6E66','Secondary impulse control syndrome','Y','2025-10-23 00:00:00'),(100810,11,'DD50.21','Secondary intra-abdominal hernia','Y','2025-10-23 00:00:00'),(100811,11,'8D61.1','Secondary intracranial hypotension','Y','2025-10-23 00:00:00'),(100812,11,'5C61.62','Secondary lactase deficiency','Y','2025-10-23 00:00:00'),(100813,11,'EA83.1','Secondary lichenification','Y','2025-10-23 00:00:00'),(100814,11,'BD93.1','Secondary lymphoedema','Y','2025-10-23 00:00:00'),(100815,11,'BD93.1Z','Secondary lymphoedema, unspecified','Y','2025-10-23 00:00:00'),(100816,11,'6E6Z','Secondary mental or behavioural syndrome, unspecified','Y','2025-10-23 00:00:00'),(100817,11,'6E62','Secondary mood syndrome','Y','2025-10-23 00:00:00'),(100818,11,'6E62.0','Secondary mood syndrome, with depressive symptoms','Y','2025-10-23 00:00:00'),(100819,11,'6E62.1','Secondary mood syndrome, with manic symptoms','Y','2025-10-23 00:00:00'),(100820,11,'6E62.2','Secondary mood syndrome, with mixed symptoms','Y','2025-10-23 00:00:00'),(100821,11,'6E62.3','Secondary mood syndrome, with unspecified symptoms','Y','2025-10-23 00:00:00'),(100822,11,'8C8Z','Secondary myopathies, unspecified','Y','2025-10-23 00:00:00'),(100823,11,'6E67','Secondary neurocognitive syndrome','Y','2025-10-23 00:00:00'),(100824,11,'6E60','Secondary neurodevelopmental syndrome','Y','2025-10-23 00:00:00'),(100825,11,'6E60.Z','Secondary neurodevelopmental syndrome, unspecified','Y','2025-10-23 00:00:00'),(100826,11,'6E64','Secondary obsessive-compulsive or related syndrome','Y','2025-10-23 00:00:00'),(100827,11,'9C61.2','Secondary open-angle glaucoma','Y','2025-10-23 00:00:00'),(100828,11,'9C61.26','Secondary open-angle glaucoma due to parasitic eye disease','Y','2025-10-23 00:00:00'),(100829,11,'9C61.2Z','Secondary open-angle glaucoma, unspecified','Y','2025-10-23 00:00:00'),(100830,11,'DC35.1','Secondary pancreatic insufficiency','Y','2025-10-23 00:00:00'),(100831,11,'8A00.2','Secondary parkinsonism','Y','2025-10-23 00:00:00'),(100832,11,'8A00.2Z','Secondary parkinsonism, unspecified','Y','2025-10-23 00:00:00'),(100833,11,'DC50.1','Secondary peritonitis','Y','2025-10-23 00:00:00'),(100834,11,'DC50.14','Secondary peritonitis due to other diseases or agents','Y','2025-10-23 00:00:00'),(100835,11,'DC50.1Z','Secondary peritonitis, unspecified','Y','2025-10-23 00:00:00'),(100836,11,'6E68','Secondary personality change','Y','2025-10-23 00:00:00'),(100837,11,'8A40.2','Secondary progressive multiple sclerosis','Y','2025-10-23 00:00:00'),(100838,11,'6E61','Secondary psychotic syndrome','Y','2025-10-23 00:00:00'),(100839,11,'6E61.1','Secondary psychotic syndrome, with delusions','Y','2025-10-23 00:00:00'),(100840,11,'6E61.0','Secondary psychotic syndrome, with hallucinations','Y','2025-10-23 00:00:00'),(100841,11,'6E61.2','Secondary psychotic syndrome, with hallucinations and delusions','Y','2025-10-23 00:00:00'),(100842,11,'6E61.3','Secondary psychotic syndrome, with unspecified symptoms','Y','2025-10-23 00:00:00'),(100843,11,'CB05.5','Secondary pulmonary haemosiderosis','Y','2025-10-23 00:00:00'),(100844,11,'BD42.1','Secondary Raynaud phenomenon','Y','2025-10-23 00:00:00'),(100845,11,'8C84','Secondary rhabdomyolysis','Y','2025-10-23 00:00:00'),(100846,11,'XE3CZ','Secondary school','Y','2025-10-23 00:00:00'),(100847,11,'4A43.21','Secondary Sj','Y','2025-10-23 00:00:00'),(100848,11,'6E60.0','Secondary speech or language syndrome','Y','2025-10-23 00:00:00'),(100849,11,'8A07.01','Secondary stereotypy','Y','2025-10-23 00:00:00'),(100850,11,'1A61.4','Secondary syphilis of other sites','Y','2025-10-23 00:00:00'),(100851,11,'1A61.3','Secondary syphilis of skin or mucous membranes','Y','2025-10-23 00:00:00'),(100852,11,'3B64.11','Secondary thrombocytopenic purpura','Y','2025-10-23 00:00:00'),(100853,11,'3B63.10','Secondary thrombocytosis','Y','2025-10-23 00:00:00'),(100854,11,'8A05.1','Secondary tics','Y','2025-10-23 00:00:00'),(100855,11,'8A05.1Z','Secondary tics, unspecified','Y','2025-10-23 00:00:00'),(100856,11,'8A04.3','Secondary tremor','Y','2025-10-23 00:00:00'),(100857,11,'8A04.3Z','Secondary tremor, unspecified','Y','2025-10-23 00:00:00'),(100858,11,'JB02.1','Secondary uterine inertia','Y','2025-10-23 00:00:00'),(100859,11,'8A45','Secondary white matter disorders','Y','2025-10-23 00:00:00'),(100860,11,'8A45.Z','Secondary white matter disorders, unspecified','Y','2025-10-23 00:00:00'),(100861,11,'1C1D.1','Secondary yaws','Y','2025-10-23 00:00:00'),(100862,11,'XM3B95','Second-generation antihistamine','Y','2025-10-23 00:00:00'),(100863,11,'XM4DG8','Second-generation cephalosporins','Y','2025-10-23 00:00:00'),(100864,11,'XM3L99','Secretin','Y','2025-10-23 00:00:00'),(100865,11,'XH44J4','Secretory carcinoma','Y','2025-10-23 00:00:00'),(100866,11,'XH6Z51','Secretory meningioma','Y','2025-10-23 00:00:00'),(100867,11,'XM0NF8','Secukinumab','Y','2025-10-23 00:00:00'),(100868,11,'XE4NX','Security door or gate, fly gate','Y','2025-10-23 00:00:00'),(100869,11,'XM5YQ4','Sedative mixed','Y','2025-10-23 00:00:00'),(100870,11,'6C44.2','Sedative, hypnotic or anxiolytic dependence','Y','2025-10-23 00:00:00'),(100871,11,'6C44.20','Sedative, hypnotic or anxiolytic dependence, current use','Y','2025-10-23 00:00:00'),(100872,11,'6C44.21','Sedative, hypnotic or anxiolytic dependence, early full remission','Y','2025-10-23 00:00:00'),(100873,11,'6C44.23','Sedative, hypnotic or anxiolytic dependence, sustained full remission','Y','2025-10-23 00:00:00'),(100874,11,'6C44.22','Sedative, hypnotic or anxiolytic dependence, sustained partial remission','Y','2025-10-23 00:00:00'),(100875,11,'6C44.2Z','Sedative, hypnotic or anxiolytic dependence, unspecified','Y','2025-10-23 00:00:00'),(100876,11,'6C44.3','Sedative, hypnotic or anxiolytic intoxication','Y','2025-10-23 00:00:00'),(100877,11,'6C44.4','Sedative, hypnotic or anxiolytic withdrawal','Y','2025-10-23 00:00:00'),(100878,11,'6C44.40','Sedative, hypnotic or anxiolytic withdrawal, uncomplicated','Y','2025-10-23 00:00:00'),(100879,11,'6C44.4Z','Sedative, hypnotic or anxiolytic withdrawal, unspecified','Y','2025-10-23 00:00:00'),(100880,11,'6C44.41','Sedative, hypnotic or anxiolytic withdrawal, with perceptual disturbances','Y','2025-10-23 00:00:00'),(100881,11,'6C44.43','Sedative, hypnotic or anxiolytic withdrawal, with perceptual disturbances and seizures','Y','2025-10-23 00:00:00'),(100882,11,'6C44.42','Sedative, hypnotic or anxiolytic withdrawal, with seizures','Y','2025-10-23 00:00:00'),(100883,11,'6C44.71','Sedative, hypnotic or anxiolytic-induced anxiety disorder','Y','2025-10-23 00:00:00'),(100884,11,'6C44.5','Sedative, hypnotic or anxiolytic-induced delirium','Y','2025-10-23 00:00:00'),(100885,11,'6C44.70','Sedative, hypnotic or anxiolytic-induced mood disorder','Y','2025-10-23 00:00:00'),(100886,11,'6C44.6','Sedative, hypnotic or anxiolytic-induced psychotic disorder','Y','2025-10-23 00:00:00'),(100887,11,'XM53R6','Sedormid','Y','2025-10-23 00:00:00'),(100888,11,'XM8HA3','Seed disinfectant, not elsewhere classified','Y','2025-10-23 00:00:00'),(100889,11,'VV10','Seeing and related functions','Y','2025-10-23 00:00:00'),(100890,11,'VE00','Seeing and related functions [BMDS]','Y','2025-10-23 00:00:00'),(100891,11,'9C84.3','Seesaw nystagmus','Y','2025-10-23 00:00:00'),(100892,11,'ME93.0','Segmental and somatic dysfunction','Y','2025-10-23 00:00:00'),(100893,11,'BD52.0','Segmental arterial mediolysis','Y','2025-10-23 00:00:00'),(100894,11,'XK36','Segmental distribution','Y','2025-10-23 00:00:00'),(100895,11,'8A06.1','Segmental myoclonus','Y','2025-10-23 00:00:00'),(100896,11,'LB73.24','Segmentation anomalies of vertebrae','Y','2025-10-23 00:00:00'),(100897,11,'8A63','Seizure due to acute causes','Y','2025-10-23 00:00:00'),(100898,11,'8A63.Y','Seizure due to other acute cause','Y','2025-10-23 00:00:00'),(100899,11,'8A63.Z','Seizure due to unspecified acute cause','Y','2025-10-23 00:00:00'),(100900,11,'XM1X48','Selective beta-2-adrenoceptor agonists','Y','2025-10-23 00:00:00'),(100901,11,'XM8BT9','Selective calcium-channel blockers','Y','2025-10-23 00:00:00'),(100902,11,'XM5140','Selective immunosuppressants','Y','2025-10-23 00:00:00'),(100903,11,'6B06','Selective mutism','Y','2025-10-23 00:00:00'),(100904,11,'XM8FH5','Selegiline','Y','2025-10-23 00:00:00'),(100905,11,'XM47M7','Selenium','Y','2025-10-23 00:00:00'),(100906,11,'XM42A5','Selenium (75Se) norcholesterol','Y','2025-10-23 00:00:00'),(100907,11,'XM60N1','Selenium compounds','Y','2025-10-23 00:00:00'),(100908,11,'5B5K.7','Selenium deficiency','Y','2025-10-23 00:00:00'),(100909,11,'XM4CB3','Selenium disulfide','Y','2025-10-23 00:00:00'),(100910,11,'XM4HH9','Selenium fumes','Y','2025-10-23 00:00:00'),(100911,11,'XM43T8','Selenium sulfide','Y','2025-10-23 00:00:00'),(100912,11,'XM24K5','Selenomethionine (75Se)','Y','2025-10-23 00:00:00'),(100913,11,'XM5MZ5','Selexipag','Y','2025-10-23 00:00:00'),(100914,11,'XE5VT','Self-activation or keying','Y','2025-10-23 00:00:00'),(100915,11,'VW2Z','Self-care, unspecified','Y','2025-10-23 00:00:00'),(100916,11,'DA00.1','Self-induced lip trauma','Y','2025-10-23 00:00:00'),(100917,11,'XE9HZ','Self-propelled agricultural machine as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(100918,11,'XE3WV','Self-propelled agricultural machine as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(100919,11,'XM1840','Selinexor','Y','2025-10-23 00:00:00'),(100920,11,'XH1Q28','Sellar ependymoma','Y','2025-10-23 00:00:00'),(100921,11,'XM74A3','Selpercatinib','Y','2025-10-23 00:00:00'),(100922,11,'XM1UK4','Selsun','Y','2025-10-23 00:00:00'),(100923,11,'XM9KJ3','Semaglutide','Y','2025-10-23 00:00:00'),(100924,11,'XA3MS6','Semicircular canals','Y','2025-10-23 00:00:00'),(100925,11,'XA8VV2','Semilunar cartilage','Y','2025-10-23 00:00:00'),(100926,11,'XA1SM8','Semilunar ganglion','Y','2025-10-23 00:00:00'),(100927,11,'XA5AM5','Semimembranosus muscle','Y','2025-10-23 00:00:00'),(100928,11,'XA4AL5','Semimembranosus tendon','Y','2025-10-23 00:00:00'),(100929,11,'XA0MJ1','Seminal vesicle','Y','2025-10-23 00:00:00'),(100930,11,'XA9636','Seminiferous tubules','Y','2025-10-23 00:00:00'),(100931,11,'XH6YQ4','Seminoma, anaplastic','Y','2025-10-23 00:00:00'),(100932,11,'XH9FM4','Seminoma, NOS','Y','2025-10-23 00:00:00'),(100933,11,'XA60Q0','Semispinalis muscle','Y','2025-10-23 00:00:00'),(100934,11,'XA3D42','Semispinalis tendon','Y','2025-10-23 00:00:00'),(100935,11,'XA2EK1','Semitendinosus muscle','Y','2025-10-23 00:00:00'),(100936,11,'XA7DY9','Semitendinosus tendon','Y','2025-10-23 00:00:00'),(100937,11,'XN3D4','Semliki Forest virus','Y','2025-10-23 00:00:00'),(100938,11,'XM0VS7','Semustine','Y','2025-10-23 00:00:00'),(100939,11,'XM8YX9','Senecio vulgaris plant','Y','2025-10-23 00:00:00'),(100940,11,'XM1Y62','Senega','Y','2025-10-23 00:00:00'),(100941,11,'9A03.22','Senile ectropion of eyelid','Y','2025-10-23 00:00:00'),(100942,11,'9A03.12','Senile entropion of eyelid','Y','2025-10-23 00:00:00'),(100943,11,'FB83.02','Senile osteopenia','Y','2025-10-23 00:00:00'),(100944,11,'XM9LC4','Senna glycosides','Y','2025-10-23 00:00:00'),(100945,11,'XM91P4','Sennoside A+B','Y','2025-10-23 00:00:00'),(100946,11,'MB40','Sensation disturbance','Y','2025-10-23 00:00:00'),(100947,11,'MB40.Z','Sensation disturbance, unspecified','Y','2025-10-23 00:00:00'),(100948,11,'VV12','Sensation of pain','Y','2025-10-23 00:00:00'),(100949,11,'VE20','Sensation of pain [BMDS]','Y','2025-10-23 00:00:00'),(100950,11,'MB28.F','Sensation seeking','Y','2025-10-23 00:00:00'),(100951,11,'XE69X','Sensing intermittently','Y','2025-10-23 00:00:00'),(100952,11,'XM3T47','Sensitizers used in photodynamic or radiation therapy','Y','2025-10-23 00:00:00'),(100953,11,'XE8GP','Sensor component of medical device','Y','2025-10-23 00:00:00'),(100954,11,'XE7Q4','Sensor probe component of medical device','Y','2025-10-23 00:00:00'),(100955,11,'GA42','Sensory disturbance of the vulva','Y','2025-10-23 00:00:00'),(100956,11,'DA0F','Sensory disturbances affecting orofacial complex','Y','2025-10-23 00:00:00'),(100957,11,'DA0F.Z','Sensory disturbances affecting orofacial complex, unspecified','Y','2025-10-23 00:00:00'),(100958,11,'VV1Z','Sensory functions and pain, unspecified','Y','2025-10-23 00:00:00'),(100959,11,'XA2LT7','Sensory Neuron','Y','2025-10-23 00:00:00'),(100960,11,'XN3PV','Seoul virus','Y','2025-10-23 00:00:00'),(100961,11,'6B05','Separation anxiety disorder','Y','2025-10-23 00:00:00'),(100962,11,'XE9BM','Separation failure','Y','2025-10-23 00:00:00'),(100963,11,'9B78.6','Separation of retinal layers','Y','2025-10-23 00:00:00'),(100964,11,'9B78.6Z','Separation of retinal layers, unspecified','Y','2025-10-23 00:00:00'),(100965,11,'FA85.12','Separation of ring apophysis','Y','2025-10-23 00:00:00'),(100966,11,'XE1KB','Separation problem','Y','2025-10-23 00:00:00'),(100967,11,'KA60','Sepsis of fetus or newborn','Y','2025-10-23 00:00:00'),(100968,11,'1G41','Sepsis with septic shock','Y','2025-10-23 00:00:00'),(100969,11,'1G40','Sepsis without septic shock','Y','2025-10-23 00:00:00'),(100970,11,'XA5LW8','Septal artery','Y','2025-10-23 00:00:00'),(100971,11,'XA83Q5','Septal wall of heart','Y','2025-10-23 00:00:00'),(100972,11,'LB44.4','Septate uterus','Y','2025-10-23 00:00:00'),(100973,11,'LB42.1','Septate vagina','Y','2025-10-23 00:00:00'),(100974,11,'XS26','Septic shock','Y','2025-10-23 00:00:00'),(100975,11,'SB40','Septicemic furunculosis disorder (TM1)','Y','2025-10-23 00:00:00'),(100976,11,'XM1AY0','Septisol','Y','2025-10-23 00:00:00'),(100977,11,'SD31','Sequela of wind stroke disorder (TM1)','Y','2025-10-23 00:00:00'),(100978,11,'JB65','Sequelae of complication of pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(100979,11,'1G85','Sequelae of diphtheria','Y','2025-10-23 00:00:00'),(100980,11,'1G82','Sequelae of leprosy','Y','2025-10-23 00:00:00'),(100981,11,'5B6Z','Sequelae of malnutrition or certain specified nutritional deficiencies, unspecified','Y','2025-10-23 00:00:00'),(100982,11,'1G8Y','Sequelae of other specified infectious diseases','Y','2025-10-23 00:00:00'),(100983,11,'1G83','Sequelae of poliomyelitis','Y','2025-10-23 00:00:00'),(100984,11,'5B60','Sequelae of protein-energy malnutrition','Y','2025-10-23 00:00:00'),(100985,11,'5B63','Sequelae of rickets','Y','2025-10-23 00:00:00'),(100986,11,'1G81','Sequelae of trachoma','Y','2025-10-23 00:00:00'),(100987,11,'1G80','Sequelae of tuberculosis','Y','2025-10-23 00:00:00'),(100988,11,'1G84','Sequelae of viral encephalitis','Y','2025-10-23 00:00:00'),(100989,11,'5B61','Sequelae of vitamin A deficiency','Y','2025-10-23 00:00:00'),(100990,11,'5B62','Sequelae of vitamin C deficiency','Y','2025-10-23 00:00:00'),(100991,11,'XM40P7','Sequifenadine','Y','2025-10-23 00:00:00'),(100992,11,'XM9NW5','Seractide','Y','2025-10-23 00:00:00'),(100993,11,'XM8DS8','Seratrodast','Y','2025-10-23 00:00:00'),(100994,11,'XM1M18','Serelaxin','Y','2025-10-23 00:00:00'),(100995,11,'XM5BF2','Serenesil','Y','2025-10-23 00:00:00'),(100996,11,'XM30J6','Sermorelin','Y','2025-10-23 00:00:00'),(100997,11,'XM5ZF4','Sernyl','Y','2025-10-23 00:00:00'),(100998,11,'XH1VJ0','Seromucinous adenofibroma','Y','2025-10-23 00:00:00'),(100999,11,'XH0RB9','Seromucinous borderline tumour','Y','2025-10-23 00:00:00'),(101000,11,'XH4186','Seromucinous carcinoma','Y','2025-10-23 00:00:00'),(101001,11,'XH9BE7','Seromucinous cystadenoma','Y','2025-10-23 00:00:00'),(101002,11,'FA20.1','Seronegative rheumatoid arthritis','Y','2025-10-23 00:00:00'),(101003,11,'FA20.0','Seropositive rheumatoid arthritis','Y','2025-10-23 00:00:00'),(101004,11,'XM8FB6','Serotonin','Y','2025-10-23 00:00:00'),(101005,11,'XM4S40','Serotonin receptor antagonists','Y','2025-10-23 00:00:00'),(101006,11,'XH9JC2','Serous adenocarcinofibroma','Y','2025-10-23 00:00:00'),(101007,11,'XH07C7','Serous adenofibroma of borderline malignancy','Y','2025-10-23 00:00:00'),(101008,11,'XH5ZB5','Serous adenofibroma, NOS','Y','2025-10-23 00:00:00'),(101009,11,'XH9DM1','Serous borderline tumour, micropapillary variant','Y','2025-10-23 00:00:00'),(101010,11,'XH3ZK9','Serous borderline tumour, NOS','Y','2025-10-23 00:00:00'),(101011,11,'XH7A08','Serous carcinoma, NOS','Y','2025-10-23 00:00:00'),(101012,11,'9A60.6','Serous conjunctivitis, except viral','Y','2025-10-23 00:00:00'),(101013,11,'XH6PQ0','Serous cystadenocarcinofibroma','Y','2025-10-23 00:00:00'),(101014,11,'XH2M30','Serous cystadenofibroma of borderline malignancy','Y','2025-10-23 00:00:00'),(101015,11,'XH6RL8','Serous cystadenofibroma, NOS','Y','2025-10-23 00:00:00'),(101016,11,'2C73.4','Serous cystadenoma, borderline malignancy of ovary','Y','2025-10-23 00:00:00'),(101017,11,'XH8TJ0','Serous cystadenoma, NOS','Y','2025-10-23 00:00:00'),(101018,11,'9B78.60','Serous detachment of retinal pigment epithelium','Y','2025-10-23 00:00:00'),(101019,11,'XH1YW4','Serous endometrial intraepithelial carcinoma','Y','2025-10-23 00:00:00'),(101020,11,'XA2L90','Serous fluid','Y','2025-10-23 00:00:00'),(101021,11,'XH8PZ6','Serous intraepithelial carcinoma','Y','2025-10-23 00:00:00'),(101022,11,'XH0556','Serous microcystic adenoma','Y','2025-10-23 00:00:00'),(101023,11,'2F32.3','Serous ovarian cystadenoma','Y','2025-10-23 00:00:00'),(101024,11,'9B73.3','Serous retinal detachment','Y','2025-10-23 00:00:00'),(101025,11,'XH38C4','Serous surface papilloma','Y','2025-10-23 00:00:00'),(101026,11,'XH8NV8','Serous tubal intraepithelial carcinoma (STIC)','Y','2025-10-23 00:00:00'),(101027,11,'XM6E07','Serpasil','Y','2025-10-23 00:00:00'),(101028,11,'XM94J1','Serrapeptase','Y','2025-10-23 00:00:00'),(101029,11,'XH74B2','Serrated adenocarcinoma','Y','2025-10-23 00:00:00'),(101030,11,'XH5903','Serrated adenoma','Y','2025-10-23 00:00:00'),(101031,11,'XN71D','Serratia spp','Y','2025-10-23 00:00:00'),(101032,11,'XA7QL8','Serratus anterior muscle','Y','2025-10-23 00:00:00'),(101033,11,'XA91D0','Serratus anterior tendon','Y','2025-10-23 00:00:00'),(101034,11,'XA4A47','Serratus posterior inferior muscle','Y','2025-10-23 00:00:00'),(101035,11,'XA7J14','Serratus posterior inferior tendon','Y','2025-10-23 00:00:00'),(101036,11,'XA15B6','Serratus posterior superior muscle','Y','2025-10-23 00:00:00'),(101037,11,'XA0MH0','Serratus posterior superior tendon','Y','2025-10-23 00:00:00'),(101038,11,'XM9U15','Sertaconazole','Y','2025-10-23 00:00:00'),(101039,11,'XM69Z2','Sertindole','Y','2025-10-23 00:00:00'),(101040,11,'XH7051','Sertoli cell carcinoma','Y','2025-10-23 00:00:00'),(101041,11,'XH0BG7','Sertoli cell tumour with lipid storage','Y','2025-10-23 00:00:00'),(101042,11,'XH4H24','Sertoli cell tumour, NOS','Y','2025-10-23 00:00:00'),(101043,11,'XH0UP7','Sertoli-Leydig cell tumour of intermediate differentiation','Y','2025-10-23 00:00:00'),(101044,11,'XH8U56','Sertoli-Leydig cell tumour, intermediate differentiation, with heterologous elements','Y','2025-10-23 00:00:00'),(101045,11,'XH6FQ9','Sertoli-Leydig cell tumour, NOS','Y','2025-10-23 00:00:00'),(101046,11,'XH29E0','Sertoli-Leydig cell tumour, poorly differentiated','Y','2025-10-23 00:00:00'),(101047,11,'XH3BT2','Sertoli-Leydig cell tumour, poorly differentiated, with heterologous elements','Y','2025-10-23 00:00:00'),(101048,11,'XH6XB6','Sertoli-Leydig cell tumour, retiform','Y','2025-10-23 00:00:00'),(101049,11,'XH3PN1','Sertoli-Leydig cell tumour, retiform, with heterologous elements','Y','2025-10-23 00:00:00'),(101050,11,'XH4KB9','Sertoli-Leydig cell tumour, sarcomatoid','Y','2025-10-23 00:00:00'),(101051,11,'XH7E53','Sertoli-Leydig cell tumour, well differentiated','Y','2025-10-23 00:00:00'),(101052,11,'XM5TZ9','Sertraline','Y','2025-10-23 00:00:00'),(101053,11,'XM3HE6','Serum antibotulinus','Y','2025-10-23 00:00:00'),(101054,11,'XM9V23','Serum anticytotoxic','Y','2025-10-23 00:00:00'),(101055,11,'XM7HP0','Serum antimeningococcus','Y','2025-10-23 00:00:00'),(101056,11,'XM77D4','Serum anti-Rh','Y','2025-10-23 00:00:00'),(101057,11,'XM5F14','Serum antitetanic','Y','2025-10-23 00:00:00'),(101058,11,'XM8MX1','Serum antitoxic','Y','2025-10-23 00:00:00'),(101059,11,'XM7JU3','Serum complement (inhibitor)','Y','2025-10-23 00:00:00'),(101060,11,'XM9QJ7','Serum convalescent','Y','2025-10-23 00:00:00'),(101061,11,'XM5ZL8','Serum gonadotrophin','Y','2025-10-23 00:00:00'),(101062,11,'XM08V1','Serum hemolytic complement','Y','2025-10-23 00:00:00'),(101063,11,'XM0SJ2','Serum protective','Y','2025-10-23 00:00:00'),(101064,11,'XM6A31','Sesquiterpene lactones','Y','2025-10-23 00:00:00'),(101065,11,'XH2F06','Sessile serrated adenoma','Y','2025-10-23 00:00:00'),(101066,11,'XH63V9','Sessile serrated polyp','Y','2025-10-23 00:00:00'),(101067,11,'XM5463','Setastine','Y','2025-10-23 00:00:00'),(101068,11,'XM5DN4','Setmelanotide','Y','2025-10-23 00:00:00'),(101069,11,'XM7KX5','Setoperone','Y','2025-10-23 00:00:00'),(101070,11,'XM6Q80','Sevelamer','Y','2025-10-23 00:00:00'),(101071,11,'XA5BL9','Seventh cervical nerve root','Y','2025-10-23 00:00:00'),(101072,11,'XA4WT3','Seventh cervical spinal nerve','Y','2025-10-23 00:00:00'),(101073,11,'XA34U8','Seventh cervical vertebra','Y','2025-10-23 00:00:00'),(101074,11,'XA2WC3','Seventh rib','Y','2025-10-23 00:00:00'),(101075,11,'XA1VM6','Seventh thoracic nerve root','Y','2025-10-23 00:00:00'),(101076,11,'XA0RA9','Seventh thoracic spinal nerve','Y','2025-10-23 00:00:00'),(101077,11,'XA59Y3','Seventh thoracic vertebra','Y','2025-10-23 00:00:00'),(101078,11,'XS25','Severe','Y','2025-10-23 00:00:00'),(101079,11,'1D65','Severe acute respiratory syndrome','Y','2025-10-23 00:00:00'),(101080,11,'XN1V8','Severe Acute Respiratory Syndrome coronavirus','Y','2025-10-23 00:00:00'),(101081,11,'KB21.0','Severe birth asphyxia','Y','2025-10-23 00:00:00'),(101082,11,'6C20.2','Severe bodily distress disorder','Y','2025-10-23 00:00:00'),(101083,11,'4A01.10','Severe combined immunodeficiencies','Y','2025-10-23 00:00:00'),(101084,11,'1D22','Severe dengue','Y','2025-10-23 00:00:00'),(101085,11,'XS7N','Severe distress','Y','2025-10-23 00:00:00'),(101086,11,'1D4E','Severe fever with thrombocytopenia syndrome','Y','2025-10-23 00:00:00'),(101087,11,'ED80.4','Severe inflammatory acne','Y','2025-10-23 00:00:00'),(101088,11,'ED80.4Z','Severe inflammatory acne, unspecified','Y','2025-10-23 00:00:00'),(101089,11,'XS2E','Severe pain','Y','2025-10-23 00:00:00'),(101090,11,'XS2U','Severe pain-related interference','Y','2025-10-23 00:00:00'),(101091,11,'6D10.2','Severe personality disorder','Y','2025-10-23 00:00:00'),(101092,11,'JA24.1','Severe pre-eclampsia','Y','2025-10-23 00:00:00'),(101093,11,'XS65','Severe sepsis','Y','2025-10-23 00:00:00'),(101094,11,'9D90.3','Severe vision impairment','Y','2025-10-23 00:00:00'),(101095,11,'SD92','Severe vomiting and diarrhoea disorder (TM1)','Y','2025-10-23 00:00:00'),(101096,11,'XM07G7','Sevoflurane','Y','2025-10-23 00:00:00'),(101097,11,'XM1EM9','Sewer gas, not elsewhere classified','Y','2025-10-23 00:00:00'),(101098,11,'XE5Y0','Sewer grate','Y','2025-10-23 00:00:00'),(101099,11,'XE9WK','Sewing appliance or equipment','Y','2025-10-23 00:00:00'),(101100,11,'XE0PW','Sewing machine','Y','2025-10-23 00:00:00'),(101101,11,'XE2AL','Sewing ring component of medical device','Y','2025-10-23 00:00:00'),(101102,11,'XE9GS','Sex aids','Y','2025-10-23 00:00:00'),(101103,11,'LD5Z','Sex chromosome anomalies, unspecified','Y','2025-10-23 00:00:00'),(101104,11,'XH5BV8','Sex cord tumour with annular tubules','Y','2025-10-23 00:00:00'),(101105,11,'XH5PC7','Sex cord-gonadal stromal tumour, incompletely differentiated','Y','2025-10-23 00:00:00'),(101106,11,'XH19F9','Sex cord-gonadal stromal tumour, mixed forms','Y','2025-10-23 00:00:00'),(101107,11,'XH9G57','Sex cord-gonadal stromal tumour, NOS','Y','2025-10-23 00:00:00'),(101108,11,'XH3C14','Sex cord-stromal tumour, benign','Y','2025-10-23 00:00:00'),(101109,11,'XH0667','Sex cord-stromal tumour, unclassified','Y','2025-10-23 00:00:00'),(101110,11,'QA46.E','Sextuplets, all liveborn','Y','2025-10-23 00:00:00'),(101111,11,'QA46.G','Sextuplets, all stillborn','Y','2025-10-23 00:00:00'),(101112,11,'QA46.F','Sextuplets, some liveborn','Y','2025-10-23 00:00:00'),(101113,11,'HA01','Sexual arousal dysfunctions','Y','2025-10-23 00:00:00'),(101114,11,'HA01.Z','Sexual arousal dysfunctions, unspecified','Y','2025-10-23 00:00:00'),(101115,11,'GC42','Sexual dysfunction associated with pelvic organ prolapse','Y','2025-10-23 00:00:00'),(101116,11,'HA0Z','Sexual dysfunctions, unspecified','Y','2025-10-23 00:00:00'),(101117,11,'VV51','Sexual functions','Y','2025-10-23 00:00:00'),(101118,11,'PJ21','Sexual maltreatment','Y','2025-10-23 00:00:00'),(101119,11,'HA2Z','Sexual pain disorders, unspecified','Y','2025-10-23 00:00:00'),(101120,11,'HA20','Sexual pain-penetration disorder','Y','2025-10-23 00:00:00'),(101121,11,'HA20.2','Sexual pain-penetration disorder, acquired, generalised','Y','2025-10-23 00:00:00'),(101122,11,'HA20.3','Sexual pain-penetration disorder, acquired, situational','Y','2025-10-23 00:00:00'),(101123,11,'HA20.0','Sexual pain-penetration disorder, lifelong, generalised','Y','2025-10-23 00:00:00'),(101124,11,'HA20.1','Sexual pain-penetration disorder, lifelong, situational','Y','2025-10-23 00:00:00'),(101125,11,'HA20.Z','Sexual pain-penetration disorder, unspecified','Y','2025-10-23 00:00:00'),(101126,11,'1A8Z','Sexually transmissible infections due to chlamydia, unspecified','Y','2025-10-23 00:00:00'),(101127,11,'1A93','Sexually transmissible infestations','Y','2025-10-23 00:00:00'),(101128,11,'XH8HN3','Sezary syndrome','Y','2025-10-23 00:00:00'),(101129,11,'2B02','S','Y','2025-10-23 00:00:00'),(101130,11,'XA5TX9','Shaft of other carpal bone','Y','2025-10-23 00:00:00'),(101131,11,'XA35U4','Shaft of radius','Y','2025-10-23 00:00:00'),(101132,11,'XA4PT6','Shaft of the clavicle','Y','2025-10-23 00:00:00'),(101133,11,'XA92G8','Shaft of the fifth metacarpal bone','Y','2025-10-23 00:00:00'),(101134,11,'XA5N95','Shaft of the first metacarpal bone','Y','2025-10-23 00:00:00'),(101135,11,'XA4CP7','Shaft of the fourth metacarpal bone','Y','2025-10-23 00:00:00'),(101136,11,'XA4RN8','Shaft of the humerus','Y','2025-10-23 00:00:00'),(101137,11,'XA4RC8','Shaft of the second metacarpal bone','Y','2025-10-23 00:00:00'),(101138,11,'XA8BP2','Shaft of the third metacarpal bone','Y','2025-10-23 00:00:00'),(101139,11,'XA8U33','Shaft of the ulna','Y','2025-10-23 00:00:00'),(101140,11,'XM8VR0','Shampoo, not elsewhere classified','Y','2025-10-23 00:00:00'),(101141,11,'XE765','Shark','Y','2025-10-23 00:00:00'),(101142,11,'XE3VF','Sharp edges','Y','2025-10-23 00:00:00'),(101143,11,'XE4BU','Sharp object','Y','2025-10-23 00:00:00'),(101144,11,'XE6UH','Sharp object, not elsewhere classified','Y','2025-10-23 00:00:00'),(101145,11,'XE8FD','Shearing plant','Y','2025-10-23 00:00:00'),(101146,11,'XE25P','Sheep, goat','Y','2025-10-23 00:00:00'),(101147,11,'XM7VB5','Shellfish seafood poison','Y','2025-10-23 00:00:00'),(101148,11,'XE8BC','Shelter for battered women and their children','Y','2025-10-23 00:00:00'),(101149,11,'XE4PS','Shielding failure','Y','2025-10-23 00:00:00'),(101150,11,'XE3BG','Shielding problem with device identified','Y','2025-10-23 00:00:00'),(101151,11,'XN108','Shiga toxin-producing Escherichia coli','Y','2025-10-23 00:00:00'),(101152,11,'XN8RN','Shigella boydii','Y','2025-10-23 00:00:00'),(101153,11,'XN285','Shigella dysenteriae','Y','2025-10-23 00:00:00'),(101154,11,'XN7Y2','Shigella flexneri','Y','2025-10-23 00:00:00'),(101155,11,'MG50.AY','Shigella resistant to other antibiotic','Y','2025-10-23 00:00:00'),(101156,11,'MG50.AZ','Shigella resistant to unspecified antibiotic','Y','2025-10-23 00:00:00'),(101157,11,'XN9M9','Shigella sonnei','Y','2025-10-23 00:00:00'),(101158,11,'XN7HG','Shigella spp','Y','2025-10-23 00:00:00'),(101159,11,'XE8ZA','Shipping damage or problem','Y','2025-10-23 00:00:00'),(101160,11,'XE7MT','Shipyard','Y','2025-10-23 00:00:00'),(101161,11,'XE6A6','Shirt, blouse, t-shirt, trousers, slacks, jacket, coat, outerwear','Y','2025-10-23 00:00:00'),(101162,11,'MG40','Shock','Y','2025-10-23 00:00:00'),(101163,11,'XE7N2','Shock absorber component of medical device','Y','2025-10-23 00:00:00'),(101164,11,'JB0D.1','Shock during or following labour or delivery','Y','2025-10-23 00:00:00'),(101165,11,'JA05.3','Shock following abortion, ectopic or molar pregnancy','Y','2025-10-23 00:00:00'),(101166,11,'MG40.Z','Shock, unspecified','Y','2025-10-23 00:00:00'),(101167,11,'XE1KG','Shoe, sandal, slipper, boot','Y','2025-10-23 00:00:00'),(101168,11,'XE0MQ','Shoelace, shoe buckle','Y','2025-10-23 00:00:00'),(101169,11,'XE319','Shop or store','Y','2025-10-23 00:00:00'),(101170,11,'DA96.04','Short bowel syndrome','Y','2025-10-23 00:00:00'),(101171,11,'KB89.1','Short bowel syndrome in neonate','Y','2025-10-23 00:00:00'),(101172,11,'XA07F8','Short ciliary nerves','Y','2025-10-23 00:00:00'),(101173,11,'XE7AB','Short circuit of device','Y','2025-10-23 00:00:00'),(101174,11,'XE8RE','Short fill','Y','2025-10-23 00:00:00'),(101175,11,'XA5QC9','Short gastric vein','Y','2025-10-23 00:00:00'),(101176,11,'XA0FB1','Short head of biceps brachii tendon','Y','2025-10-23 00:00:00'),(101177,11,'XA3J17','Short head of the biceps brachii muscle','Y','2025-10-23 00:00:00'),(101178,11,'XA04E2','Short posterior ciliary artery','Y','2025-10-23 00:00:00'),(101179,11,'XA9HV6','Short posterior sacroiliac ligament','Y','2025-10-23 00:00:00'),(101180,11,'BC65.2','Short QT syndrome','Y','2025-10-23 00:00:00'),(101181,11,'LD24.B','Short rib syndromes','Y','2025-10-23 00:00:00'),(101182,11,'LD24.BZ','Short rib syndromes, unspecified','Y','2025-10-23 00:00:00'),(101183,11,'LD24.B0','Short rib-polydactyly syndrome','Y','2025-10-23 00:00:00'),(101184,11,'MG44.12','Short stature of child','Y','2025-10-23 00:00:00'),(101185,11,'5B11','Short stature, not elsewhere classified','Y','2025-10-23 00:00:00'),(101186,11,'XM8162','Short-acting sulfonamides','Y','2025-10-23 00:00:00'),(101187,11,'7A01','Short-term insomnia','Y','2025-10-23 00:00:00'),(101188,11,'XE32H','Shotgun','Y','2025-10-23 00:00:00'),(101189,11,'XA2ND5','Shoulder','Y','2025-10-23 00:00:00'),(101190,11,'XA05J7','Shoulder joint','Y','2025-10-23 00:00:00'),(101191,11,'FB53','Shoulder lesions','Y','2025-10-23 00:00:00'),(101192,11,'FB53.Z','Shoulder lesions, unspecified','Y','2025-10-23 00:00:00'),(101193,11,'ME86.D0','Shoulder syndrome','Y','2025-10-23 00:00:00'),(101194,11,'XE31Q','Shower','Y','2025-10-23 00:00:00'),(101195,11,'XE5RW','shower cubicle','Y','2025-10-23 00:00:00'),(101196,11,'XM8EC2','Shrew venom','Y','2025-10-23 00:00:00'),(101197,11,'MB46.5','Shuddering','Y','2025-10-23 00:00:00'),(101198,11,'XE2Q3','Shutter component of medical device','Y','2025-10-23 00:00:00'),(101199,11,'XN13L','Siadenovirus','Y','2025-10-23 00:00:00'),(101200,11,'XH65F9','Sialadenoma papilliferum','Y','2025-10-23 00:00:00'),(101201,11,'DA04.2','Sialoadenitis','Y','2025-10-23 00:00:00'),(101202,11,'XH0G00','Sialoblastoma','Y','2025-10-23 00:00:00'),(101203,11,'DA04.4','Sialolithiasis','Y','2025-10-23 00:00:00'),(101204,11,'DA04.7','Sialophagia','Y','2025-10-23 00:00:00'),(101205,11,'DA04.8','Sialoschesis','Y','2025-10-23 00:00:00'),(101206,11,'XM13P5','Sibutramine','Y','2025-10-23 00:00:00'),(101207,11,'BC80.20','Sick sinus syndrome','Y','2025-10-23 00:00:00'),(101208,11,'5A06','Sick-euthyroid syndrome','Y','2025-10-23 00:00:00'),(101209,11,'3A51.2','Sickle cell disease with crisis','Y','2025-10-23 00:00:00'),(101210,11,'3A51.1','Sickle cell disease without crisis','Y','2025-10-23 00:00:00'),(101211,11,'3A51','Sickle cell disorders or other haemoglobinopathies','Y','2025-10-23 00:00:00'),(101212,11,'3A51.Z','Sickle cell disorders or other haemoglobinopathies, unspecified','Y','2025-10-23 00:00:00'),(101213,11,'3A51.0','Sickle cell trait','Y','2025-10-23 00:00:00'),(101214,11,'XA4HZ3','Side of finger','Y','2025-10-23 00:00:00'),(101215,11,'XA2ZF0','Side of neck','Y','2025-10-23 00:00:00'),(101216,11,'XA14Y9','Side of toe','Y','2025-10-23 00:00:00'),(101217,11,'XE0KN','Side rail component of medical device','Y','2025-10-23 00:00:00'),(101218,11,'XA2TK5','Side wall of ala nasi','Y','2025-10-23 00:00:00'),(101219,11,'3A72','Sideroblastic anaemia','Y','2025-10-23 00:00:00'),(101220,11,'3A72.Z','Sideroblastic anaemia, unspecified','Y','2025-10-23 00:00:00'),(101221,11,'CA60.8','Siderosis','Y','2025-10-23 00:00:00'),(101222,11,'XE53A','Sidewalk','Y','2025-10-23 00:00:00'),(101223,11,'XA02A2','Sigmoid artery','Y','2025-10-23 00:00:00'),(101224,11,'XA8YJ9','Sigmoid colon','Y','2025-10-23 00:00:00'),(101225,11,'XA4041','Sigmoid sinus','Y','2025-10-23 00:00:00'),(101226,11,'XA8HY5','Sigmoid vein','Y','2025-10-23 00:00:00'),(101227,11,'XE7TS','Signal artifact','Y','2025-10-23 00:00:00'),(101228,11,'XE8KR','Signal loss of device','Y','2025-10-23 00:00:00'),(101229,11,'XH4546','Signet ring cell carcinoma','Y','2025-10-23 00:00:00'),(101230,11,'XH0XE5','Signet ring cell/histiocytoid carcinoma','Y','2025-10-23 00:00:00'),(101231,11,'XH69N5','Signet-ring stromal tumour','Y','2025-10-23 00:00:00'),(101232,11,'XM65A3','Sildenafil','Y','2025-10-23 00:00:00'),(101233,11,'8B21.0','Silent cerebral infarct','Y','2025-10-23 00:00:00'),(101234,11,'8B21.1','Silent cerebral microbleed','Y','2025-10-23 00:00:00'),(101235,11,'BA85.0','Silent coronary vasospastic disease','Y','2025-10-23 00:00:00'),(101236,11,'CA0B','Silent sinus syndrome','Y','2025-10-23 00:00:00'),(101237,11,'XM3DP9','Silicon dioxide','Y','2025-10-23 00:00:00'),(101238,11,'XM9KE6','Silicone','Y','2025-10-23 00:00:00'),(101239,11,'XM06Y2','Silicone medicinal','Y','2025-10-23 00:00:00'),(101240,11,'XA9YZ7','Sill of nostril','Y','2025-10-23 00:00:00'),(101241,11,'XM1FQ5','Silodosin','Y','2025-10-23 00:00:00'),(101242,11,'XM9D29','Siltuximab','Y','2025-10-23 00:00:00'),(101243,11,'XM01G3','Silver','Y','2025-10-23 00:00:00'),(101244,11,'XM0CN1','Silver anti-infectives','Y','2025-10-23 00:00:00'),(101245,11,'XM3QX7','Silver colloidal','Y','2025-10-23 00:00:00'),(101246,11,'XM6RF0','Silver nitrate','Y','2025-10-23 00:00:00'),(101247,11,'XM49E4','Silver nitrate nonmedicinal','Y','2025-10-23 00:00:00'),(101248,11,'XM2U36','Silver nitrate ophthalmic preparation','Y','2025-10-23 00:00:00'),(101249,11,'XM3E07','Silver nitrate toughened (keratolytic)','Y','2025-10-23 00:00:00'),(101250,11,'XM9359','Silver nonmedicinal','Y','2025-10-23 00:00:00'),(101251,11,'XM5J78','Silver polish','Y','2025-10-23 00:00:00'),(101252,11,'XM56H1','Silver protein','Y','2025-10-23 00:00:00'),(101253,11,'XM6260','Silver salvarsan','Y','2025-10-23 00:00:00'),(101254,11,'XM9R64','Silver sulfadiazine','Y','2025-10-23 00:00:00'),(101255,11,'XM5RS5','Silymarin','Y','2025-10-23 00:00:00'),(101256,11,'XM64X9','Simaldrate','Y','2025-10-23 00:00:00'),(101257,11,'XM48M2','Simazine','Y','2025-10-23 00:00:00'),(101258,11,'XM9FF9','Simeprevir','Y','2025-10-23 00:00:00'),(101259,11,'XM38C5','Simethicone','Y','2025-10-23 00:00:00'),(101260,11,'XM6MW5','Simfibrate','Y','2025-10-23 00:00:00'),(101261,11,'CA20.10','Simple chronic bronchitis','Y','2025-10-23 00:00:00'),(101262,11,'8A63.00','Simple febrile seizures','Y','2025-10-23 00:00:00'),(101263,11,'XJ909','Simple fracture','Y','2025-10-23 00:00:00'),(101264,11,'XH88L0','Simple lentigo','Y','2025-10-23 00:00:00'),(101265,11,'GB80.0','Simple renal cyst','Y','2025-10-23 00:00:00'),(101266,11,'ED01','Simulated skin disease','Y','2025-10-23 00:00:00'),(101267,11,'XM7AU9','Simvastatin','Y','2025-10-23 00:00:00'),(101268,11,'XN7R1','sin nombre virus','Y','2025-10-23 00:00:00'),(101269,11,'XM53M3','Sincalide','Y','2025-10-23 00:00:00'),(101270,11,'XN0D6','Sindbis virus','Y','2025-10-23 00:00:00'),(101271,11,'XM2CA6','Sinecatechins','Y','2025-10-23 00:00:00'),(101272,11,'JB22.2','Single delivery by caesarean hysterectomy','Y','2025-10-23 00:00:00'),(101273,11,'JB22','Single delivery by caesarean section','Y','2025-10-23 00:00:00'),(101274,11,'JB22.Z','Single delivery by caesarean section, unspecified','Y','2025-10-23 00:00:00'),(101275,11,'JB21','Single delivery by forceps or vacuum extractor','Y','2025-10-23 00:00:00'),(101276,11,'6A70','Single episode depressive disorder','Y','2025-10-23 00:00:00'),(101277,11,'6A70.7','Single episode depressive disorder, currently in full remission','Y','2025-10-23 00:00:00'),(101278,11,'6A70.6','Single episode depressive disorder, currently in partial remission','Y','2025-10-23 00:00:00'),(101279,11,'6A70.0','Single episode depressive disorder, mild','Y','2025-10-23 00:00:00'),(101280,11,'6A70.2','Single episode depressive disorder, moderate, with psychotic symptoms','Y','2025-10-23 00:00:00'),(101281,11,'6A70.1','Single episode depressive disorder, moderate, without psychotic symptoms','Y','2025-10-23 00:00:00'),(101282,11,'6A70.4','Single episode depressive disorder, severe, with psychotic symptoms','Y','2025-10-23 00:00:00'),(101283,11,'6A70.3','Single episode depressive disorder, severe, without psychotic symptoms','Y','2025-10-23 00:00:00'),(101284,11,'6A70.Z','Single episode depressive disorder, unspecified','Y','2025-10-23 00:00:00'),(101285,11,'6A70.5','Single episode depressive disorder, unspecified severity','Y','2025-10-23 00:00:00'),(101286,11,'XA5NN2','Single ligament','Y','2025-10-23 00:00:00'),(101287,11,'QA46.0','Single live birth','Y','2025-10-23 00:00:00'),(101288,11,'QA47.01','Single liveborn infant, delivered by caesarean','Y','2025-10-23 00:00:00'),(101289,11,'QA47.00','Single liveborn infant, delivered vaginally','Y','2025-10-23 00:00:00'),(101290,11,'XA7MX8','Single Nerve','Y','2025-10-23 00:00:00'),(101291,11,'8A43.4','Single optic neuritis aquaporin-4 antibody positive','Y','2025-10-23 00:00:00'),(101292,11,'4A44.3','Single organ vasculitis','Y','2025-10-23 00:00:00'),(101293,11,'8A64','Single seizure due to remote causes','Y','2025-10-23 00:00:00'),(101294,11,'JB20','Single spontaneous delivery','Y','2025-10-23 00:00:00'),(101295,11,'JB20.Y','Single spontaneous delivery with other specified presentation','Y','2025-10-23 00:00:00'),(101296,11,'JB20.Z','Single spontaneous delivery, unspecified','Y','2025-10-23 00:00:00'),(101297,11,'QA46.1','Single stillbirth','Y','2025-10-23 00:00:00'),(101298,11,'8A43.2','Single transverse myelitis aquaporin-4 antibody positive','Y','2025-10-23 00:00:00'),(101299,11,'LB03.1','Single umbilical cord artery','Y','2025-10-23 00:00:00'),(101300,11,'8A65','Single unprovoked seizure','Y','2025-10-23 00:00:00'),(101301,11,'XS2V','Single vessel disease','Y','2025-10-23 00:00:00'),(101302,11,'QA47.0','Singleton, born in hospital','Y','2025-10-23 00:00:00'),(101303,11,'QA47.0Z','Singleton, born in hospital, unspecified','Y','2025-10-23 00:00:00'),(101304,11,'QA47.1','Singleton, born outside hospital','Y','2025-10-23 00:00:00'),(101305,11,'QA47.2','Singleton, unspecified as to place of birth','Y','2025-10-23 00:00:00'),(101306,11,'BC80.21','Sinoatrial block','Y','2025-10-23 00:00:00'),(101307,11,'XA7TB5','Sinoatrial nodal artery','Y','2025-10-23 00:00:00'),(101308,11,'XA1UE3','Sinoatrial node','Y','2025-10-23 00:00:00'),(101309,11,'XH39C5','Sinonasal ameloblastoma','Y','2025-10-23 00:00:00'),(101310,11,'XH0TP8','Sinonasal papilloma, exophytic','Y','2025-10-23 00:00:00'),(101311,11,'XH8FH7','Sinonasal papilloma, inverted','Y','2025-10-23 00:00:00'),(101312,11,'XH8CD4','Sinonasal papilloma, oncocytic','Y','2025-10-23 00:00:00'),(101313,11,'XM1AU2','Sinopharm WIBP-CorV','Y','2025-10-23 00:00:00'),(101314,11,'NF04.1','Sinus barotrauma','Y','2025-10-23 00:00:00'),(101315,11,'BC80.1','Sinus bradycardia','Y','2025-10-23 00:00:00'),(101316,11,'BC80.2','Sinus node dysfunction','Y','2025-10-23 00:00:00'),(101317,11,'BC80.2Z','Sinus node dysfunction, unspecified','Y','2025-10-23 00:00:00'),(101318,11,'BC81.5','Sinus node reentrant tachycardia','Y','2025-10-23 00:00:00'),(101319,11,'XA6HK7','Sinus of the dura mater','Y','2025-10-23 00:00:00'),(101320,11,'BC80.0','Sinus pause','Y','2025-10-23 00:00:00'),(101321,11,'LA8E.2','Sinus venosus defect','Y','2025-10-23 00:00:00'),(101322,11,'XH88L5','Sinusoidal hemangioma','Y','2025-10-23 00:00:00'),(101323,11,'XM6N55','Siponimod','Y','2025-10-23 00:00:00'),(101324,11,'XM2ZJ6','Sipuleucel-T','Y','2025-10-23 00:00:00'),(101325,11,'LD2F.12','Sirenomelia','Y','2025-10-23 00:00:00'),(101326,11,'XM76R4','Sirolimus','Y','2025-10-23 00:00:00'),(101327,11,'XM7N41','Sirukumab','Y','2025-10-23 00:00:00'),(101328,11,'XM1KF1','Sisal','Y','2025-10-23 00:00:00'),(101329,11,'XM4GS3','Sisomicin','Y','2025-10-23 00:00:00'),(101330,11,'XM5MK4','Sitafloxacin','Y','2025-10-23 00:00:00'),(101331,11,'XM4M71','Sitagliptin','Y','2025-10-23 00:00:00'),(101332,11,'XM7WR2','Sitaxentan','Y','2025-10-23 00:00:00'),(101333,11,'XM3VC2','Sitimagene ceradenovec','Y','2025-10-23 00:00:00'),(101334,11,'XM5F26','Sitosterols','Y','2025-10-23 00:00:00'),(101335,11,'XM6QH2','Six eyed sand spider venom','Y','2025-10-23 00:00:00'),(101336,11,'SG6Z','Six stage patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(101337,11,'XA14K0','Six','Y','2025-10-23 00:00:00'),(101338,11,'XA8YT7','Sixth cervical nerve root','Y','2025-10-23 00:00:00'),(101339,11,'XA26W5','Sixth cervical spinal nerve','Y','2025-10-23 00:00:00'),(101340,11,'XA5S79','Sixth cervical vertebra','Y','2025-10-23 00:00:00'),(101341,11,'9C81.2','Sixth nerve palsy','Y','2025-10-23 00:00:00'),(101342,11,'XA63Z2','Sixth rib','Y','2025-10-23 00:00:00'),(101343,11,'XA1AB6','Sixth thoracic nerve root','Y','2025-10-23 00:00:00'),(101344,11,'XA4GT3','Sixth thoracic spinal nerve','Y','2025-10-23 00:00:00'),(101345,11,'XA45S2','Sixth thoracic vertebra','Y','2025-10-23 00:00:00'),(101346,11,'4A43.2','Sj','Y','2025-10-23 00:00:00'),(101347,11,'5C52.03','Sj','Y','2025-10-23 00:00:00'),(101348,11,'XE7TJ','Skateboard','Y','2025-10-23 00:00:00'),(101349,11,'XE5H4','Skateboard as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(101350,11,'XE96G','Skateboard as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(101351,11,'XE7QG','Skating rink or ice palace','Y','2025-10-23 00:00:00'),(101352,11,'FB80.1','Skeletal fluorosis','Y','2025-10-23 00:00:00'),(101353,11,'XA0DD5','Skeletal muscle','Y','2025-10-23 00:00:00'),(101354,11,'XM8QC2','Skeletal muscle relaxants','Y','2025-10-23 00:00:00'),(101355,11,'GA13.5','Skene duct cyst','Y','2025-10-23 00:00:00'),(101356,11,'9C83.64','Skew deviation','Y','2025-10-23 00:00:00'),(101357,11,'XE7WU','Skiing or snowboarding area','Y','2025-10-23 00:00:00'),(101358,11,'XA0364','Skin','Y','2025-10-23 00:00:00'),(101359,11,'SB7Z','Skin and mucosa system disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(101360,11,'XH96Q5','Skin appendage adenoma','Y','2025-10-23 00:00:00'),(101361,11,'EA51','Skin complications of BCG immunisation','Y','2025-10-23 00:00:00'),(101362,11,'EM0Z','Skin disease of unspecified nature','Y','2025-10-23 00:00:00'),(101363,11,'ME67','Skin disorder of uncertain or unspecified nature','Y','2025-10-23 00:00:00'),(101364,11,'EG9Z','Skin disorders involving certain specific body regions, unspecified','Y','2025-10-23 00:00:00'),(101365,11,'EG9Y','Skin disorders involving other specific body regions','Y','2025-10-23 00:00:00'),(101366,11,'EG30','Skin disorders localised to the scalp','Y','2025-10-23 00:00:00'),(101367,11,'EE40.3','Skin fragility','Y','2025-10-23 00:00:00'),(101368,11,'KC30','Skin fragility of prematurity','Y','2025-10-23 00:00:00'),(101369,11,'EL53','Skin graft failure','Y','2025-10-23 00:00:00'),(101370,11,'EA60.Y','Skin involvement in other specified fungal infection','Y','2025-10-23 00:00:00'),(101371,11,'ME60.0','Skin lesion of uncertain nature','Y','2025-10-23 00:00:00'),(101372,11,'ME60','Skin lesion of uncertain or unspecified nature','Y','2025-10-23 00:00:00'),(101373,11,'ME60.Z','Skin lesion of unspecified nature','Y','2025-10-23 00:00:00'),(101374,11,'XA9E26','Skin of auricle','Y','2025-10-23 00:00:00'),(101375,11,'XA66R9','Skin of elbow','Y','2025-10-23 00:00:00'),(101376,11,'XA04T9','Skin of nose','Y','2025-10-23 00:00:00'),(101377,11,'XA8EK1','Skin of thorax','Y','2025-10-23 00:00:00'),(101378,11,'PK80.C','Skin or integument procedure associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(101379,11,'PK80.CY','Skin or integument procedure associated with injury or harm in therapeutic use, other specified approach','Y','2025-10-23 00:00:00'),(101380,11,'PK80.CZ','Skin or integument procedure associated with injury or harm in therapeutic use, unspecified approach','Y','2025-10-23 00:00:00'),(101381,11,'PK80.C2','Skin or integument procedure associated with injury or harm, endoscopic approach','Y','2025-10-23 00:00:00'),(101382,11,'PK80.C0','Skin or integument procedure associated with injury or harm, open approach','Y','2025-10-23 00:00:00'),(101383,11,'PK80.C1','Skin or integument procedure associated with injury or harm, percutaneous approach','Y','2025-10-23 00:00:00'),(101384,11,'QA00.A','Skin or other sensitisation tests','Y','2025-10-23 00:00:00'),(101385,11,'ED53','Skin peeling','Y','2025-10-23 00:00:00'),(101386,11,'EK71','Skin tags or polyps','Y','2025-10-23 00:00:00'),(101387,11,'XE5XW','Skis as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(101388,11,'XE0FX','Skis as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(101389,11,'XE5D9','Sled as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(101390,11,'XE036','Sled as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(101391,11,'XE0AR','Sled, toboggan, sleigh, snow disk, snow tube','Y','2025-10-23 00:00:00'),(101392,11,'MG41','Sleep disturbance, not elsewhere classified','Y','2025-10-23 00:00:00'),(101393,11,'VV01','Sleep functions','Y','2025-10-23 00:00:00'),(101394,11,'VE11','Sleep functions [BMDS]','Y','2025-10-23 00:00:00'),(101395,11,'MD11.4','Sleep related Cheyne-Stokes respiration','Y','2025-10-23 00:00:00'),(101396,11,'7B00.2','Sleep terrors','Y','2025-10-23 00:00:00'),(101397,11,'XN132','Sleeping Disease virus','Y','2025-10-23 00:00:00'),(101398,11,'7A4Z','Sleep-related breathing disorders, unspecified','Y','2025-10-23 00:00:00'),(101399,11,'7A83','Sleep-related bruxism','Y','2025-10-23 00:00:00'),(101400,11,'7B00.3','Sleep-related eating disorder','Y','2025-10-23 00:00:00'),(101401,11,'7B02.1','Sleep-related hallucinations','Y','2025-10-23 00:00:00'),(101402,11,'7A42.4','Sleep-related hypoventilation due to a medication or substance','Y','2025-10-23 00:00:00'),(101403,11,'7A42.5','Sleep-related hypoventilation due to medical condition','Y','2025-10-23 00:00:00'),(101404,11,'7A42','Sleep-related hypoventilation or hypoxemia disorders','Y','2025-10-23 00:00:00'),(101405,11,'7A42.Z','Sleep-related hypoventilation or hypoxemia disorders, unspecified','Y','2025-10-23 00:00:00'),(101406,11,'7A42.6','Sleep-related hypoxemia due to a medical condition','Y','2025-10-23 00:00:00'),(101407,11,'7A82','Sleep-related leg cramps','Y','2025-10-23 00:00:00'),(101408,11,'7A87','Sleep-related movement disorder due to a medical condition','Y','2025-10-23 00:00:00'),(101409,11,'7A88','Sleep-related movement disorder due to a medication or substance','Y','2025-10-23 00:00:00'),(101410,11,'7A8Z','Sleep-related movement disorders, unspecified','Y','2025-10-23 00:00:00'),(101411,11,'7A84','Sleep-related rhythmic movement disorder','Y','2025-10-23 00:00:00'),(101412,11,'MB60','Sleeptalking','Y','2025-10-23 00:00:00'),(101413,11,'7B2Z','Sleep-wake disorders, unspecified','Y','2025-10-23 00:00:00'),(101414,11,'7B00.1','Sleepwalking disorder','Y','2025-10-23 00:00:00'),(101415,11,'XE7ZG','Sleeve component of medical device','Y','2025-10-23 00:00:00'),(101416,11,'LD24.D','Slender bone dysplasias','Y','2025-10-23 00:00:00'),(101417,11,'XE6VJ','Slide component of medical device','Y','2025-10-23 00:00:00'),(101418,11,'XJ9XQ','Slipped epiphysis fracture','Y','2025-10-23 00:00:00'),(101419,11,'FB82.2','Slipped upper femoral epiphysis','Y','2025-10-23 00:00:00'),(101420,11,'XE94G','Slope, ramp','Y','2025-10-23 00:00:00'),(101421,11,'XE45P','Sloping surface, not elsewhere classified','Y','2025-10-23 00:00:00'),(101422,11,'KD32.0','Slow feeding of newborn','Y','2025-10-23 00:00:00'),(101423,11,'XM9R52','Slow loris venom','Y','2025-10-23 00:00:00'),(101424,11,'DB32.1','Slow transit constipation','Y','2025-10-23 00:00:00'),(101425,11,'XA7VW1','Small anterior cerebral vein','Y','2025-10-23 00:00:00'),(101426,11,'XA6QD7','Small cardiac vein','Y','2025-10-23 00:00:00'),(101427,11,'2C25.1','Small cell carcinoma of bronchus or lung','Y','2025-10-23 00:00:00'),(101428,11,'XH3T00','Small cell carcinoma, fusiform cell','Y','2025-10-23 00:00:00'),(101429,11,'XH8ZR8','Small cell carcinoma, hypercalcaemic type','Y','2025-10-23 00:00:00'),(101430,11,'XH6GK0','Small cell carcinoma, intermediate cell','Y','2025-10-23 00:00:00'),(101431,11,'XH0YB0','Small cell carcinoma, NOS','Y','2025-10-23 00:00:00'),(101432,11,'XH9SY0','Small cell neuroendocrine carcinoma','Y','2025-10-23 00:00:00'),(101433,11,'XH4EZ4','Small cell osteosarcoma','Y','2025-10-23 00:00:00'),(101434,11,'XH85G7','Small cell sarcoma','Y','2025-10-23 00:00:00'),(101435,11,'MC20.1','Small drusen of the macula','Y','2025-10-23 00:00:00'),(101436,11,'KA20.0','Small for gestational age','Y','2025-10-23 00:00:00'),(101437,11,'KA20.01','Small for gestational age, asymmetrical','Y','2025-10-23 00:00:00'),(101438,11,'KA20.00','Small for gestational age, symmetrical','Y','2025-10-23 00:00:00'),(101439,11,'KA20.0Z','Small for gestational age, unspecified','Y','2025-10-23 00:00:00'),(101440,11,'XA6452','Small intestine','Y','2025-10-23 00:00:00'),(101441,11,'SF6F','Small intestine deficiency cold pattern (TM1)','Y','2025-10-23 00:00:00'),(101442,11,'SF6E','Small intestine excess heat pattern (TM1)','Y','2025-10-23 00:00:00'),(101443,11,'SG25','Small intestine meridian pattern (TM1)','Y','2025-10-23 00:00:00'),(101444,11,'SF6D','Small intestine qi stagnation pattern (TM1)','Y','2025-10-23 00:00:00'),(101445,11,'MF54.2','Small kidney','Y','2025-10-23 00:00:00'),(101446,11,'XE1RC','Small loose object as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(101447,11,'XE9KG','Small or light fixed object as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(101448,11,'EA95','Small plaque parapsoriasis','Y','2025-10-23 00:00:00'),(101449,11,'XA2073','Small saphenous vein','Y','2025-10-23 00:00:00'),(101450,11,'SH52','Small yang type chest heat congested pattern (TM1)','Y','2025-10-23 00:00:00'),(101451,11,'SH54','Small yang type exterior interior combined pattern (TM1)','Y','2025-10-23 00:00:00'),(101452,11,'SH50','Small yang type lesser yang wind damage pattern (TM1)','Y','2025-10-23 00:00:00'),(101453,11,'SH5Z','Small yang type patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(101454,11,'SH53','Small yang type yin deficit pattern (TM1)','Y','2025-10-23 00:00:00'),(101455,11,'SH51','Small yang type yin depletion pattern (TM1)','Y','2025-10-23 00:00:00'),(101456,11,'SH70','Small yin type congestive hyperpsychotic pattern (TM1)','Y','2025-10-23 00:00:00'),(101457,11,'SH74','Small yin type exterior interior combined pattern (TM1)','Y','2025-10-23 00:00:00'),(101458,11,'SH72','Small yin type greater yin pattern (TM1)','Y','2025-10-23 00:00:00'),(101459,11,'SH73','Small yin type lesser yin pattern (TM1)','Y','2025-10-23 00:00:00'),(101460,11,'SH7Z','Small yin type patterns(TM1), unspecified','Y','2025-10-23 00:00:00'),(101461,11,'SH71','Small yin type yang depletion pattern (TM1)','Y','2025-10-23 00:00:00'),(101462,11,'XA9498','Smallest cardiac vein','Y','2025-10-23 00:00:00'),(101463,11,'1E70','Smallpox','Y','2025-10-23 00:00:00'),(101464,11,'XM95R0','Smallpox vaccine','Y','2025-10-23 00:00:00'),(101465,11,'XE4D7','Small-sized motorized vehicles for children','Y','2025-10-23 00:00:00'),(101466,11,'XM6QK6','Smog, not elsewhere classified','Y','2025-10-23 00:00:00'),(101467,11,'XE5H5','Smoke','Y','2025-10-23 00:00:00'),(101468,11,'XE4F3','Smoke causing injury','Y','2025-10-23 00:00:00'),(101469,11,'XM9N00','Smoke, not elsewhere classified','Y','2025-10-23 00:00:00'),(101470,11,'MF54.0','Smooth contracted kidney','Y','2025-10-23 00:00:00'),(101471,11,'XA0JY3','Smooth muscle','Y','2025-10-23 00:00:00'),(101472,11,'XM31L2','Smooth muscle relaxant','Y','2025-10-23 00:00:00'),(101473,11,'XH1EN1','Smooth muscle tumour of uncertain malignant potential','Y','2025-10-23 00:00:00'),(101474,11,'XH00B4','Smooth muscle tumour, NOS','Y','2025-10-23 00:00:00'),(101475,11,'XM48L3','Snail venom','Y','2025-10-23 00:00:00'),(101476,11,'XM4KN1','Snake venom','Y','2025-10-23 00:00:00'),(101477,11,'XM18Y9','Snake venom antiserum','Y','2025-10-23 00:00:00'),(101478,11,'XM6QQ2','Snake venom or bite hemocoagulase','Y','2025-10-23 00:00:00'),(101479,11,'XE11V','Snake, unspecified whether venomous or not','Y','2025-10-23 00:00:00'),(101480,11,'4A44.6','Sneddon syndrome','Y','2025-10-23 00:00:00'),(101481,11,'MD11.A','Sneezing','Y','2025-10-23 00:00:00'),(101482,11,'XE6DZ','Snow board','Y','2025-10-23 00:00:00'),(101483,11,'XE5W5','Snow ski','Y','2025-10-23 00:00:00'),(101484,11,'XE3LV','Snow, ice','Y','2025-10-23 00:00:00'),(101485,11,'XE4NZ','Snowboard as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(101486,11,'XE3JS','Snowboard as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(101487,11,'XE60L','Snowmobile as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(101488,11,'XE63N','Snowmobile as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(101489,11,'XE2LT','Snowmobile, ski-scooter','Y','2025-10-23 00:00:00'),(101490,11,'XE1H5','Soap','Y','2025-10-23 00:00:00'),(101491,11,'XM0ZU4','Soap enema','Y','2025-10-23 00:00:00'),(101492,11,'XM2P20','Soap medicinal, soft','Y','2025-10-23 00:00:00'),(101493,11,'XM6EW6','Soap superfatted','Y','2025-10-23 00:00:00'),(101494,11,'XM8B44','Soap, not elsewhere classified','Y','2025-10-23 00:00:00'),(101495,11,'XM0RV9','Soberana Plus','Y','2025-10-23 00:00:00'),(101496,11,'XM3PG0','Soberana-02','Y','2025-10-23 00:00:00'),(101497,11,'XM92P8','Sobrerol','Y','2025-10-23 00:00:00'),(101498,11,'XN95V','Sochi virus','Y','2025-10-23 00:00:00'),(101499,11,'6B04','Social anxiety disorder','Y','2025-10-23 00:00:00'),(101500,11,'QE03','Social exclusion or rejection','Y','2025-10-23 00:00:00'),(101501,11,'QE02','Social role conflict','Y','2025-10-23 00:00:00'),(101502,11,'MB23.Q','Social withdrawal','Y','2025-10-23 00:00:00'),(101503,11,'XE740','Socket component of medical device','Y','2025-10-23 00:00:00'),(101504,11,'XM0QL9','Soda bicarb','Y','2025-10-23 00:00:00'),(101505,11,'XM1ZS4','Sodium','Y','2025-10-23 00:00:00'),(101506,11,'XM7F36','Sodium acetate','Y','2025-10-23 00:00:00'),(101507,11,'XM0VG1','Sodium acid phosphate','Y','2025-10-23 00:00:00'),(101508,11,'XM2K96','Sodium alginate','Y','2025-10-23 00:00:00'),(101509,11,'XM6TY4','Sodium aminosalicylate','Y','2025-10-23 00:00:00'),(101510,11,'XM7M46','Sodium amylosulfate','Y','2025-10-23 00:00:00'),(101511,11,'XM1485','Sodium apolate','Y','2025-10-23 00:00:00'),(101512,11,'XM7H00','Sodium arsenate','Y','2025-10-23 00:00:00'),(101513,11,'XM7Y18','Sodium arsenite','Y','2025-10-23 00:00:00'),(101514,11,'XM9ZC2','Sodium aurothiomalate','Y','2025-10-23 00:00:00'),(101515,11,'XM4DJ6','Sodium aurothiosulfate','Y','2025-10-23 00:00:00'),(101516,11,'XM8CF5','Sodium aurotiosulfate','Y','2025-10-23 00:00:00'),(101517,11,'XM16M4','Sodium barbiturate','Y','2025-10-23 00:00:00'),(101518,11,'XM2QP5','Sodium benzoate','Y','2025-10-23 00:00:00'),(101519,11,'XM4XZ4','Sodium bicarbonate','Y','2025-10-23 00:00:00'),(101520,11,'XM5XL5','Sodium bichromate','Y','2025-10-23 00:00:00'),(101521,11,'XM6R29','Sodium biphosphate','Y','2025-10-23 00:00:00'),(101522,11,'XM9GW2','Sodium bisulfate','Y','2025-10-23 00:00:00'),(101523,11,'XM4Q76','Sodium borate cleanser','Y','2025-10-23 00:00:00'),(101524,11,'XM7AV0','Sodium borate cleanser eye','Y','2025-10-23 00:00:00'),(101525,11,'XM6Z04','Sodium borate therapeutic','Y','2025-10-23 00:00:00'),(101526,11,'XM8SU3','Sodium bromide','Y','2025-10-23 00:00:00'),(101527,11,'XM7W63','Sodium cacodylate (nonmedicinal)','Y','2025-10-23 00:00:00'),(101528,11,'XM3DB2','Sodium cacodylate anti-infective','Y','2025-10-23 00:00:00'),(101529,11,'XM7KH8','Sodium cacodylate herbicide','Y','2025-10-23 00:00:00'),(101530,11,'XM9370','Sodium carbonate','Y','2025-10-23 00:00:00'),(101531,11,'XM0345','Sodium chlorate','Y','2025-10-23 00:00:00'),(101532,11,'XM0X22','Sodium chloride','Y','2025-10-23 00:00:00'),(101533,11,'5B5K.5','Sodium chloride deficiency','Y','2025-10-23 00:00:00'),(101534,11,'5B91.2','Sodium chloride excess','Y','2025-10-23 00:00:00'),(101535,11,'XM7SY2','Sodium chloride, hypertonic (ophthalmic)','Y','2025-10-23 00:00:00'),(101536,11,'XM7KH0','Sodium chlorite','Y','2025-10-23 00:00:00'),(101537,11,'XM9EQ8','Sodium chromate','Y','2025-10-23 00:00:00'),(101538,11,'XM61E9','Sodium citrate','Y','2025-10-23 00:00:00'),(101539,11,'XM1AZ9','Sodium cyanide','Y','2025-10-23 00:00:00'),(101540,11,'XM8ZD6','Sodium cyclamate','Y','2025-10-23 00:00:00'),(101541,11,'XM8B34','Sodium dehydrocholate','Y','2025-10-23 00:00:00'),(101542,11,'XM06E7','Sodium dibunate','Y','2025-10-23 00:00:00'),(101543,11,'XM6J59','Sodium dioctyl sulfosuccinate','Y','2025-10-23 00:00:00'),(101544,11,'XM6435','Sodium dipantoyl ferrate','Y','2025-10-23 00:00:00'),(101545,11,'XM2LQ4','Sodium edetate ophthalmic preparation','Y','2025-10-23 00:00:00'),(101546,11,'XM5HE0','Sodium feredetate','Y','2025-10-23 00:00:00'),(101547,11,'XM1F39','Sodium fluoride','Y','2025-10-23 00:00:00'),(101548,11,'XM9LE1','Sodium fluoroacetate','Y','2025-10-23 00:00:00'),(101549,11,'XM61A6','Sodium folinate','Y','2025-10-23 00:00:00'),(101550,11,'XM6XG7','Sodium free salt','Y','2025-10-23 00:00:00'),(101551,11,'XM0BX1','Sodium fusidate','Y','2025-10-23 00:00:00'),(101552,11,'XM43U8','Sodium glucaldrate','Y','2025-10-23 00:00:00'),(101553,11,'XM83Z9','Sodium glycerophosphate','Y','2025-10-23 00:00:00'),(101554,11,'XM9KZ3','Sodium hydrogen carbonate','Y','2025-10-23 00:00:00'),(101555,11,'XM4SW1','Sodium hydroxide','Y','2025-10-23 00:00:00'),(101556,11,'XM0KW1','Sodium hypochlorite','Y','2025-10-23 00:00:00'),(101557,11,'XM5GX7','Sodium hypochlorite medicinal (anti-infective) (external)','Y','2025-10-23 00:00:00'),(101558,11,'XM6KZ0','Sodium hypochlorite vapor','Y','2025-10-23 00:00:00'),(101559,11,'XM5372','Sodium hyposulfite','Y','2025-10-23 00:00:00'),(101560,11,'XM8AS5','Sodium iodide','Y','2025-10-23 00:00:00'),(101561,11,'XM1899','Sodium iodide (123I)','Y','2025-10-23 00:00:00'),(101562,11,'XM39A6','Sodium iodide (124I)','Y','2025-10-23 00:00:00'),(101563,11,'XM2R88','sodium iodide (131i)','Y','2025-10-23 00:00:00'),(101564,11,'XM6RC9','Sodium iodide I-131 therapeutic','Y','2025-10-23 00:00:00'),(101565,11,'XM9063','Sodium iodohippurate (123I)','Y','2025-10-23 00:00:00'),(101566,11,'XM0RB0','Sodium iodohippurate (131I)','Y','2025-10-23 00:00:00'),(101567,11,'XM4ZU7','Sodium iopodate','Y','2025-10-23 00:00:00'),(101568,11,'XM15W7','Sodium iothalamate (125I)','Y','2025-10-23 00:00:00'),(101569,11,'XM5SE8','Sodium iron edetate','Y','2025-10-23 00:00:00'),(101570,11,'XM1X23','Sodium lauryl (sulfate)','Y','2025-10-23 00:00:00'),(101571,11,'XM1EU2','Sodium levofolinate','Y','2025-10-23 00:00:00'),(101572,11,'XM65J7','Sodium L-triiodothyronine','Y','2025-10-23 00:00:00'),(101573,11,'XM7L15','Sodium magnesium citrate','Y','2025-10-23 00:00:00'),(101574,11,'XM7J43','Sodium mersalate','Y','2025-10-23 00:00:00'),(101575,11,'XM88X6','Sodium metabisulfite','Y','2025-10-23 00:00:00'),(101576,11,'XM36R6','Sodium metrizoate','Y','2025-10-23 00:00:00'),(101577,11,'XM82S0','Sodium monofluorophosphate','Y','2025-10-23 00:00:00'),(101578,11,'XM5GY2','Sodium monofluorophosphate topical','Y','2025-10-23 00:00:00'),(101579,11,'XM3846','Sodium morrhuate','Y','2025-10-23 00:00:00'),(101580,11,'XM7FZ2','Sodium nitrate','Y','2025-10-23 00:00:00'),(101581,11,'XM3810','Sodium nitrite','Y','2025-10-23 00:00:00'),(101582,11,'XM2W66','Sodium nitroprusside','Y','2025-10-23 00:00:00'),(101583,11,'XM6CB1','Sodium oxalate','Y','2025-10-23 00:00:00'),(101584,11,'XM5M78','Sodium oxide','Y','2025-10-23 00:00:00'),(101585,11,'XM15N4','Sodium oxybate','Y','2025-10-23 00:00:00'),(101586,11,'XM87Y9','Sodium para-aminohippurate','Y','2025-10-23 00:00:00'),(101587,11,'XM7Z80','Sodium perborate medicinal','Y','2025-10-23 00:00:00'),(101588,11,'XM25T4','Sodium perborate nonmedicinal','Y','2025-10-23 00:00:00'),(101589,11,'XM4XF6','Sodium peroxide','Y','2025-10-23 00:00:00'),(101590,11,'XM5VK7','Sodium pertechnetate Tc99m','Y','2025-10-23 00:00:00'),(101591,11,'XM5SC6','Sodium phenylbutyrate','Y','2025-10-23 00:00:00'),(101592,11,'XM76C9','Sodium phosphate','Y','2025-10-23 00:00:00'),(101593,11,'XM1AY3','Sodium phosphate cellulose','Y','2025-10-23 00:00:00'),(101594,11,'XM9ML9','Sodium phosphate dibasic','Y','2025-10-23 00:00:00'),(101595,11,'XM38A9','Sodium phosphate monobasic','Y','2025-10-23 00:00:00'),(101596,11,'XM7LV6','Sodium phytate','Y','2025-10-23 00:00:00'),(101597,11,'XM8YN7','Sodium picosulfate','Y','2025-10-23 00:00:00'),(101598,11,'XM7M59','Sodium polyhydroxyaluminium monocarbonate','Y','2025-10-23 00:00:00'),(101599,11,'XM7EV2','Sodium propionate','Y','2025-10-23 00:00:00'),(101600,11,'XM5567','Sodium propyl hydroxybenzoate','Y','2025-10-23 00:00:00'),(101601,11,'XM52L8','Sodium psylliate','Y','2025-10-23 00:00:00'),(101602,11,'XM4EK0','Sodium removing resins','Y','2025-10-23 00:00:00'),(101603,11,'XM6PW4','Sodium salicylate','Y','2025-10-23 00:00:00'),(101604,11,'XM3H90','Sodium salt','Y','2025-10-23 00:00:00'),(101605,11,'XM5RR4','Sodium selenate','Y','2025-10-23 00:00:00'),(101606,11,'XM7809','Sodium selenite','Y','2025-10-23 00:00:00'),(101607,11,'XM8FM5','Sodium silicate','Y','2025-10-23 00:00:00'),(101608,11,'XM2284','Sodium stibogluconate','Y','2025-10-23 00:00:00'),(101609,11,'XM6AX9','Sodium sulfate','Y','2025-10-23 00:00:00'),(101610,11,'XM2N32','Sodium tetradecyl sulfate','Y','2025-10-23 00:00:00'),(101611,11,'XM8FA6','Sodium thiosalicylate','Y','2025-10-23 00:00:00'),(101612,11,'XM9F88','Sodium valproate','Y','2025-10-23 00:00:00'),(101613,11,'XM2KC9','Sodium versenate','Y','2025-10-23 00:00:00'),(101614,11,'XM0615','Sodium-glucose co-transporter 2 inhibitors','Y','2025-10-23 00:00:00'),(101615,11,'XM0ZZ5','Sofosbuvir','Y','2025-10-23 00:00:00'),(101616,11,'XM5CA7','Sofosbuvir and Ledipasvir','Y','2025-10-23 00:00:00'),(101617,11,'XM3K33','Sofosbuvir and Velpatasvir','Y','2025-10-23 00:00:00'),(101618,11,'XM14S9','Sofosbuvir, Velpatasvir and Voxilaprevir','Y','2025-10-23 00:00:00'),(101619,11,'XE9X9','Soft ball','Y','2025-10-23 00:00:00'),(101620,11,'XM0R26','Soft coral venom','Y','2025-10-23 00:00:00'),(101621,11,'EH92.01','Soft corn','Y','2025-10-23 00:00:00'),(101622,11,'XA8HL5','Soft palate','Y','2025-10-23 00:00:00'),(101623,11,'9A25','Soft tissue deformity of orbit','Y','2025-10-23 00:00:00'),(101624,11,'9A25.Z','Soft tissue deformity of orbit, unspecified','Y','2025-10-23 00:00:00'),(101625,11,'FB52','Soft tissue disorders in diseases classified elsewhere','Y','2025-10-23 00:00:00'),(101626,11,'FB6Z','Soft tissue disorders, unspecified','Y','2025-10-23 00:00:00'),(101627,11,'XA5P05','Soft tissue of limb, not elsewhere classified','Y','2025-10-23 00:00:00'),(101628,11,'XH9QH2','Soft tissue perineurioma','Y','2025-10-23 00:00:00'),(101629,11,'XH67T7','Soft tissue tumour, benign','Y','2025-10-23 00:00:00'),(101630,11,'XA97C4','Soft tissue, not elsewhere classified','Y','2025-10-23 00:00:00'),(101631,11,'XM1NY1','Softeners or emollients','Y','2025-10-23 00:00:00'),(101632,11,'XE688','Software installation problem identified with device','Y','2025-10-23 00:00:00'),(101633,11,'XE2JQ','Software interface component of medical device','Y','2025-10-23 00:00:00'),(101634,11,'XE9JR','Software maintenance problem identified with device','Y','2025-10-23 00:00:00'),(101635,11,'XE6TE','Software problem with device identified','Y','2025-10-23 00:00:00'),(101636,11,'XE4SV','Software requirement error with device identified','Y','2025-10-23 00:00:00'),(101637,11,'XE51Q','Software runtime error in device identified','Y','2025-10-23 00:00:00'),(101638,11,'XE9W2','Software security vulnerability of device identified','Y','2025-10-23 00:00:00'),(101639,11,'XE3RD','Software timing problem in device identified','Y','2025-10-23 00:00:00'),(101640,11,'MB2A.0','Soiling','Y','2025-10-23 00:00:00'),(101641,11,'XM9588','Solanine','Y','2025-10-23 00:00:00'),(101642,11,'XM56G1','Solanum dulcamara plant','Y','2025-10-23 00:00:00'),(101643,11,'XM1AE1','Solanum nigrum plant','Y','2025-10-23 00:00:00'),(101644,11,'XM4TE3','Solanum plant','Y','2025-10-23 00:00:00'),(101645,11,'XM0QV6','Solanum pseudocapsicum plant','Y','2025-10-23 00:00:00'),(101646,11,'XH7B58','Solar lentigo','Y','2025-10-23 00:00:00'),(101647,11,'XM06Z9','Solasulfone','Y','2025-10-23 00:00:00'),(101648,11,'XE82N','Solder joint fracture','Y','2025-10-23 00:00:00'),(101649,11,'XM6F66','Soldering fluid, not elsewhere classified','Y','2025-10-23 00:00:00'),(101650,11,'XA1XM4','Sole of foot','Y','2025-10-23 00:00:00'),(101651,11,'XM67Y0','Solenodon venom','Y','2025-10-23 00:00:00'),(101652,11,'XA5B83','Soleus muscle','Y','2025-10-23 00:00:00'),(101653,11,'XA7E05','Soleus tendon','Y','2025-10-23 00:00:00'),(101654,11,'XH34G3','Solid carcinoma with mucin formation','Y','2025-10-23 00:00:00'),(101655,11,'XH8B45','Solid carcinoma, NOS','Y','2025-10-23 00:00:00'),(101656,11,'XH0134','Solid papillary carcinoma in situ','Y','2025-10-23 00:00:00'),(101657,11,'2C64','Solid papillary carcinoma of breast with evidence of invasion','Y','2025-10-23 00:00:00'),(101658,11,'XH1XB5','Solid papillary carcinoma with invasion','Y','2025-10-23 00:00:00'),(101659,11,'XM9WJ0','Solid petroleum','Y','2025-10-23 00:00:00'),(101660,11,'XH5P21','Solid pseudopapillary carcinoma','Y','2025-10-23 00:00:00'),(101661,11,'XH3AE9','Solid pseudopapillary neoplasm of pancreas','Y','2025-10-23 00:00:00'),(101662,11,'XH3FD4','Solid pseudopapillary tumor of ovary','Y','2025-10-23 00:00:00'),(101663,11,'XM2Z66','Solifenacin','Y','2025-10-23 00:00:00'),(101664,11,'FB80.5','Solitary bone cyst','Y','2025-10-23 00:00:00'),(101665,11,'XH90Y8','Solitary circumscribed neuroma','Y','2025-10-23 00:00:00'),(101666,11,'XH1HP3','Solitary fibrous tumour, malignant','Y','2025-10-23 00:00:00'),(101667,11,'XH7E62','Solitary fibrous tumour, NOS','Y','2025-10-23 00:00:00'),(101668,11,'XH8Q71','Solitary fibrous tumour/Haemangiopericytoma, grade 1','Y','2025-10-23 00:00:00'),(101669,11,'XH1EH1','Solitary fibrous tumour/Haemangiopericytoma, grade 2','Y','2025-10-23 00:00:00'),(101670,11,'XH1DA3','Solitary fibrous tumour/Haemangiopericytoma, grade 3','Y','2025-10-23 00:00:00'),(101671,11,'XH2RL8','Solitary mastocytoma of skin','Y','2025-10-23 00:00:00'),(101672,11,'2A83.2','Solitary plasmacytoma','Y','2025-10-23 00:00:00'),(101673,11,'XM2LU0','Solithromycin','Y','2025-10-23 00:00:00'),(101674,11,'XM0462','Solriamfetol','Y','2025-10-23 00:00:00'),(101675,11,'XM0N15','Solutions producing osmotic diuresis','Y','2025-10-23 00:00:00'),(101676,11,'VV81','Solving problems','Y','2025-10-23 00:00:00'),(101677,11,'VD02','Solving problems [WHODAS]','Y','2025-10-23 00:00:00'),(101678,11,'MB26.09','Somatic delusion','Y','2025-10-23 00:00:00'),(101679,11,'MB27.25','Somatic hallucinations','Y','2025-10-23 00:00:00'),(101680,11,'XM7E13','Somatorelin','Y','2025-10-23 00:00:00'),(101681,11,'XM5L29','Somatostatin','Y','2025-10-23 00:00:00'),(101682,11,'XM9XC3','Somatostatin and analogues','Y','2025-10-23 00:00:00'),(101683,11,'XH5VH0','Somatostatinoma','Y','2025-10-23 00:00:00'),(101684,11,'XH4HE3','Somatotroph adenoma','Y','2025-10-23 00:00:00'),(101685,11,'XM3LZ6','Somatotropin','Y','2025-10-23 00:00:00'),(101686,11,'XM96L8','Somatrem','Y','2025-10-23 00:00:00'),(101687,11,'XM9WW0','Somatrogon','Y','2025-10-23 00:00:00'),(101688,11,'XM03E8','Somatropin and somatropin agonists','Y','2025-10-23 00:00:00'),(101689,11,'SD85','Somnolence disorder (TM1)','Y','2025-10-23 00:00:00'),(101690,11,'MG42','Somnolence, not elsewhere classified','Y','2025-10-23 00:00:00'),(101691,11,'XM4ZG6','Somnos','Y','2025-10-23 00:00:00'),(101692,11,'XM9E27','Sonidegib','Y','2025-10-23 00:00:00'),(101693,11,'XN0E0','Soochong virus','Y','2025-10-23 00:00:00'),(101694,11,'XM6MC4','Soot, not elsewhere classified','Y','2025-10-23 00:00:00'),(101695,11,'XM1BT3','Sopor','Y','2025-10-23 00:00:00'),(101696,11,'XM2N03','Soporific drug specified type','Y','2025-10-23 00:00:00'),(101697,11,'XM4A57','Sorafenib','Y','2025-10-23 00:00:00'),(101698,11,'XM1LY7','Sorbitan sesquioleate','Y','2025-10-23 00:00:00'),(101699,11,'XM9YJ1','Sorbitol','Y','2025-10-23 00:00:00'),(101700,11,'XM7947','Sotagliflozin','Y','2025-10-23 00:00:00'),(101701,11,'XM5BT4','Sotalol','Y','2025-10-23 00:00:00'),(101702,11,'XM78S9','Sotorasib','Y','2025-10-23 00:00:00'),(101703,11,'XM81W1','Sotradecol','Y','2025-10-23 00:00:00'),(101704,11,'XE59W','Sound equipment','Y','2025-10-23 00:00:00'),(101705,11,'XN5MK','Southern elephant seal virus','Y','2025-10-23 00:00:00'),(101706,11,'XM2LX5','Soysterol','Y','2025-10-23 00:00:00'),(101707,11,'XE5T1','spabath','Y','2025-10-23 00:00:00'),(101708,11,'XE346','Spacecraft','Y','2025-10-23 00:00:00'),(101709,11,'XE0VS','Spacecraft as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(101710,11,'XE4DU','Spacer component of medical device','Y','2025-10-23 00:00:00'),(101711,11,'XM7PY1','Spacoline','Y','2025-10-23 00:00:00'),(101712,11,'XM63C9','Spaglumic acid','Y','2025-10-23 00:00:00'),(101713,11,'XM6MR3','Sparfloxacin','Y','2025-10-23 00:00:00'),(101714,11,'1F75','Sparganosis','Y','2025-10-23 00:00:00'),(101715,11,'XN5B9','Sparganum','Y','2025-10-23 00:00:00'),(101716,11,'XM2XX6','Sparine','Y','2025-10-23 00:00:00'),(101717,11,'XE2SR','Sparking','Y','2025-10-23 00:00:00'),(101718,11,'XM9ZC0','Sparteine','Y','2025-10-23 00:00:00'),(101719,11,'XM4UE4','Spartium junceum plant','Y','2025-10-23 00:00:00'),(101720,11,'9D01.2','Spasm of accommodation','Y','2025-10-23 00:00:00'),(101721,11,'9C83.1','Spasm of conjugate gaze','Y','2025-10-23 00:00:00'),(101722,11,'9C83.1Z','Spasm of conjugate gaze, unspecified','Y','2025-10-23 00:00:00'),(101723,11,'9C83.4','Spasm of the near reflex','Y','2025-10-23 00:00:00'),(101724,11,'XM14Z1','Spasmolytic anticholinergics','Y','2025-10-23 00:00:00'),(101725,11,'XM6RA6','Spasmolytic autonomic','Y','2025-10-23 00:00:00'),(101726,11,'XM9NH9','Spasmolytic quaternary ammonium','Y','2025-10-23 00:00:00'),(101727,11,'XM91M0','Spasmolytic skeletal muscle','Y','2025-10-23 00:00:00'),(101728,11,'8D20.1','Spastic bilateral cerebral palsy','Y','2025-10-23 00:00:00'),(101729,11,'8D20.1Z','Spastic bilateral cerebral palsy, unspecified','Y','2025-10-23 00:00:00'),(101730,11,'8D20','Spastic cerebral palsy','Y','2025-10-23 00:00:00'),(101731,11,'8D20.Z','Spastic cerebral palsy, unspecified','Y','2025-10-23 00:00:00'),(101732,11,'MB51.1','Spastic diplegia of upper extremities','Y','2025-10-23 00:00:00'),(101733,11,'8D20.11','Spastic diplegic cerebral palsy','Y','2025-10-23 00:00:00'),(101734,11,'9A03.23','Spastic ectropion of eyelid','Y','2025-10-23 00:00:00'),(101735,11,'9A03.13','Spastic entropion of eyelid','Y','2025-10-23 00:00:00'),(101736,11,'MB53.2','Spastic hemiplegia','Y','2025-10-23 00:00:00'),(101737,11,'MB55.1','Spastic monoplegia of lower extremity','Y','2025-10-23 00:00:00'),(101738,11,'MB54.1','Spastic monoplegia of upper extremity','Y','2025-10-23 00:00:00'),(101739,11,'DA21.22','Spastic peristalsis','Y','2025-10-23 00:00:00'),(101740,11,'8D20.10','Spastic quadriplegic cerebral palsy','Y','2025-10-23 00:00:00'),(101741,11,'MB50.1','Spastic tetraplegia','Y','2025-10-23 00:00:00'),(101742,11,'8D20.0','Spastic unilateral cerebral palsy','Y','2025-10-23 00:00:00'),(101743,11,'XE0ST','Speaker or sounder component of medical device','Y','2025-10-23 00:00:00'),(101744,11,'XE3KV','Spear, javelin designed as weapon','Y','2025-10-23 00:00:00'),(101745,11,'XE3H8','Spear, javelin, not elsewhere classified','Y','2025-10-23 00:00:00'),(101746,11,'XE23Q','Special all-terrain vehicle as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(101747,11,'XE5RK','Special all-terrain vehicle as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(101748,11,'XE6R9','Special all-terrain vehicle or off-road vehicle','Y','2025-10-23 00:00:00'),(101749,11,'XE7QQ','Special bed, orthopaedic bed, or stretcher','Y','2025-10-23 00:00:00'),(101750,11,'XE1YW','Special construction vehicle as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(101751,11,'XE312','Special construction vehicle as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(101752,11,'QA0A.7','Special screening examination for allergic and hypersensitivity conditions','Y','2025-10-23 00:00:00'),(101753,11,'QA0A.6','Special screening examination for cardiovascular disorders','Y','2025-10-23 00:00:00'),(101754,11,'QA0A.4','Special screening examination for certain developmental disorders in childhood','Y','2025-10-23 00:00:00'),(101755,11,'QA0A.10','Special screening examination for diabetes mellitus','Y','2025-10-23 00:00:00'),(101756,11,'QA0A.0','Special screening examination for diseases of the blood or blood-forming organs or certain disorders involving the immune mechanism','Y','2025-10-23 00:00:00'),(101757,11,'QA0A.1','Special screening examination for endocrine and metabolic disorder','Y','2025-10-23 00:00:00'),(101758,11,'QA0A.1Z','Special screening examination for endocrine and metabolic disorder, unspecified','Y','2025-10-23 00:00:00'),(101759,11,'QA0A.5','Special screening examination for eye or ear disorders','Y','2025-10-23 00:00:00'),(101760,11,'QA08.4','Special screening examination for human immunodeficiency virus','Y','2025-10-23 00:00:00'),(101761,11,'QA08.3','Special screening examination for infections with a predominantly sexual mode of transmission','Y','2025-10-23 00:00:00'),(101762,11,'QA08','Special screening examination for infectious diseases','Y','2025-10-23 00:00:00'),(101763,11,'QA08.0','Special screening examination for intestinal infectious diseases','Y','2025-10-23 00:00:00'),(101764,11,'QA0A.3','Special screening examination for mental or behavioural disorders','Y','2025-10-23 00:00:00'),(101765,11,'QA09.6','Special screening examination for neoplasm of bladder','Y','2025-10-23 00:00:00'),(101766,11,'QA09.3','Special screening examination for neoplasm of breast','Y','2025-10-23 00:00:00'),(101767,11,'QA09.4','Special screening examination for neoplasm of cervix','Y','2025-10-23 00:00:00'),(101768,11,'QA09.1','Special screening examination for neoplasm of intestinal tract','Y','2025-10-23 00:00:00'),(101769,11,'QA09.5','Special screening examination for neoplasm of prostate','Y','2025-10-23 00:00:00'),(101770,11,'QA09.2','Special screening examination for neoplasm of respiratory organs','Y','2025-10-23 00:00:00'),(101771,11,'QA09.7','Special screening examination for neoplasm of skin','Y','2025-10-23 00:00:00'),(101772,11,'QA09.0','Special screening examination for neoplasm of stomach','Y','2025-10-23 00:00:00'),(101773,11,'QA09','Special screening examination for neoplasms','Y','2025-10-23 00:00:00'),(101774,11,'QA0A.2','Special screening examination for nutritional disorders','Y','2025-10-23 00:00:00'),(101775,11,'QA08.2','Special screening examination for other bacterial diseases','Y','2025-10-23 00:00:00'),(101776,11,'QA0A','Special screening examination for other diseases or disorders','Y','2025-10-23 00:00:00'),(101777,11,'QA0A.Z','Special screening examination for other diseases or disorders, unspecified','Y','2025-10-23 00:00:00'),(101778,11,'QA08.6','Special screening examination for other protozoal diseases or helminthiases','Y','2025-10-23 00:00:00'),(101779,11,'QA08.Y','Special screening examination for other specified infectious diseases','Y','2025-10-23 00:00:00'),(101780,11,'QA08.5','Special screening examination for other viral diseases','Y','2025-10-23 00:00:00'),(101781,11,'QA08.1','Special screening examination for respiratory tuberculosis','Y','2025-10-23 00:00:00'),(101782,11,'QA08.Z','Special screening examination for unspecified infectious diseases','Y','2025-10-23 00:00:00'),(101783,11,'QA0A.Y','Special screening for diseases and disorders not elsewhere classified','Y','2025-10-23 00:00:00'),(101784,11,'QA09.Z','Special screening for neoplasm of unspecified site','Y','2025-10-23 00:00:00'),(101785,11,'XE9HB','Special vehicle mainly used in agriculture as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(101786,11,'XE35C','Special vehicle mainly used in agriculture as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(101787,11,'XE9DQ','Special vehicle mainly used on industrial premises as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(101788,11,'XE885','Special vehicle mainly used on industrial premises as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(101789,11,'4A01.02','Specific antibody deficiency with normal immunoglobulin concentrations or normal number of B cells','Y','2025-10-23 00:00:00'),(101790,11,'XM5YM7','Specific immunoglobulins','Y','2025-10-23 00:00:00'),(101791,11,'6B03','Specific phobia','Y','2025-10-23 00:00:00'),(101792,11,'9D92','Specific vision dysfunctions','Y','2025-10-23 00:00:00'),(101793,11,'FB56','Specified soft tissue disorders, not elsewhere classified','Y','2025-10-23 00:00:00'),(101794,11,'XM2TG1','Spectinomycin','Y','2025-10-23 00:00:00'),(101795,11,'MA80','Speech disturbances','Y','2025-10-23 00:00:00'),(101796,11,'MA80.Z','Speech disturbances, unspecified','Y','2025-10-23 00:00:00'),(101797,11,'MA81','Speech dysfluency','Y','2025-10-23 00:00:00'),(101798,11,'QB95.5','Speech therapy','Y','2025-10-23 00:00:00'),(101799,11,'XA9235','Spermatic cord','Y','2025-10-23 00:00:00'),(101800,11,'XA5KK7','Spermatic Vein','Y','2025-10-23 00:00:00'),(101801,11,'GB00.2','Spermatocele','Y','2025-10-23 00:00:00'),(101802,11,'XH80D1','Spermatocytic seminoma','Y','2025-10-23 00:00:00'),(101803,11,'XM8EC8','Spermicide','Y','2025-10-23 00:00:00'),(101804,11,'XM4YW3','Spesolimab','Y','2025-10-23 00:00:00'),(101805,11,'XA63R0','Sphenoid bone','Y','2025-10-23 00:00:00'),(101806,11,'XA4U67','Sphenoid sinus','Y','2025-10-23 00:00:00'),(101807,11,'XA4FR7','Sphenomandibular ligament','Y','2025-10-23 00:00:00'),(101808,11,'XA1BZ0','Sphenopalatine artery, terminal branch','Y','2025-10-23 00:00:00'),(101809,11,'XA3W58','Sphenopalatine nerves','Y','2025-10-23 00:00:00'),(101810,11,'XA0M51','Sphenopalatine vein','Y','2025-10-23 00:00:00'),(101811,11,'XA5255','Sphenoparietal sinus','Y','2025-10-23 00:00:00'),(101812,11,'LA12.3','Spherophakia','Y','2025-10-23 00:00:00'),(101813,11,'XA3ML6','Sphincter ani muscle','Y','2025-10-23 00:00:00'),(101814,11,'XA6WA8','Sphincter of Oddi','Y','2025-10-23 00:00:00'),(101815,11,'XA8FT0','Sphincter urethrae muscle','Y','2025-10-23 00:00:00'),(101816,11,'5C56.0','Sphingolipidosis','Y','2025-10-23 00:00:00'),(101817,11,'5C56.0Z','Sphingolipidosis, unspecified','Y','2025-10-23 00:00:00'),(101818,11,'XE75L','Spider','Y','2025-10-23 00:00:00'),(101819,11,'XM5CC6','Spider antivenin','Y','2025-10-23 00:00:00'),(101820,11,'EF20.3','Spider telangiectasis','Y','2025-10-23 00:00:00'),(101821,11,'XM6NN5','Spider venom','Y','2025-10-23 00:00:00'),(101822,11,'XM3FE9','Spigelia (root)','Y','2025-10-23 00:00:00'),(101823,11,'XM9P21','SpikoGen','Y','2025-10-23 00:00:00'),(101824,11,'LA02','Spina bifida','Y','2025-10-23 00:00:00'),(101825,11,'LA02.1','Spina bifida aperta','Y','2025-10-23 00:00:00'),(101826,11,'LA02.0','Spina bifida cystica','Y','2025-10-23 00:00:00'),(101827,11,'LA02.0Z','Spina bifida cystica, unspecified','Y','2025-10-23 00:00:00'),(101828,11,'LA02.Z','Spina bifida, unspecified','Y','2025-10-23 00:00:00'),(101829,11,'XA0382','Spinal arachnoid','Y','2025-10-23 00:00:00'),(101830,11,'XA0V83','Spinal cord','Y','2025-10-23 00:00:00'),(101831,11,'1D03.5','Spinal cord abscess','Y','2025-10-23 00:00:00'),(101832,11,'8B4Z','Spinal cord disorders excluding trauma, unspecified','Y','2025-10-23 00:00:00'),(101833,11,'8E61.1','Spinal cord irradiation','Y','2025-10-23 00:00:00'),(101834,11,'FA70','Spinal deformities','Y','2025-10-23 00:00:00'),(101835,11,'FA70.Z','Spinal deformities, unspecified','Y','2025-10-23 00:00:00'),(101836,11,'XA8R98','Spinal dura mater','Y','2025-10-23 00:00:00'),(101837,11,'FA85','Spinal endplate defects','Y','2025-10-23 00:00:00'),(101838,11,'FA85.Z','Spinal endplate defects, unspecified','Y','2025-10-23 00:00:00'),(101839,11,'FA92.00','Spinal enthesitis','Y','2025-10-23 00:00:00'),(101840,11,'FA85.1','Spinal epiphysiopathy with determinants','Y','2025-10-23 00:00:00'),(101841,11,'FA85.1Z','Spinal epiphysiopathy with determinants, unspecified','Y','2025-10-23 00:00:00'),(101842,11,'FA85.0','Spinal epiphysiopathy with no determinant','Y','2025-10-23 00:00:00'),(101843,11,'FB10','Spinal instabilities','Y','2025-10-23 00:00:00'),(101844,11,'XA5AH0','Spinal meninges','Y','2025-10-23 00:00:00'),(101845,11,'8B61','Spinal muscular atrophy','Y','2025-10-23 00:00:00'),(101846,11,'8B61.Z','Spinal muscular atrophy, unspecified','Y','2025-10-23 00:00:00'),(101847,11,'XA65L3','Spinal nerve','Y','2025-10-23 00:00:00'),(101848,11,'XA64F0','Spinal nerve plexus','Y','2025-10-23 00:00:00'),(101849,11,'XA6EC2','Spinal nerve root','Y','2025-10-23 00:00:00'),(101850,11,'JB0C.5','Spinal or epidural anaesthesia-induced headache during labour or delivery','Y','2025-10-23 00:00:00'),(101851,11,'JA67.4','Spinal or epidural anaesthesia-induced headache during pregnancy','Y','2025-10-23 00:00:00'),(101852,11,'JB43.3','Spinal or epidural anaesthesia-induced headache during the puerperium','Y','2025-10-23 00:00:00'),(101853,11,'ME84','Spinal pain','Y','2025-10-23 00:00:00'),(101854,11,'ME84.Z','Spinal pain, unspecified','Y','2025-10-23 00:00:00'),(101855,11,'XA8SH5','Spinal pia mater','Y','2025-10-23 00:00:00'),(101856,11,'FA82','Spinal stenosis','Y','2025-10-23 00:00:00'),(101857,11,'XA0U57','Spinalis muscle','Y','2025-10-23 00:00:00'),(101858,11,'XA28J9','Spinalis tendon','Y','2025-10-23 00:00:00'),(101859,11,'XH3RZ4','Spindle cell carcinoma, NOS','Y','2025-10-23 00:00:00'),(101860,11,'XH2PS0','Spindle cell haemangioendothelioma','Y','2025-10-23 00:00:00'),(101861,11,'XH6RP8','Spindle cell hemangioma','Y','2025-10-23 00:00:00'),(101862,11,'XH4E98','Spindle cell lipoma','Y','2025-10-23 00:00:00'),(101863,11,'XH25M1','Spindle cell melanoma, NOS','Y','2025-10-23 00:00:00'),(101864,11,'XH5KW3','Spindle cell melanoma, type A','Y','2025-10-23 00:00:00'),(101865,11,'XH5YE7','Spindle cell melanoma, type B','Y','2025-10-23 00:00:00'),(101866,11,'XH9QV1','Spindle cell naevus, NOS','Y','2025-10-23 00:00:00'),(101867,11,'XH26P7','Spindle cell oncocytoma','Y','2025-10-23 00:00:00'),(101868,11,'XH8R55','Spindle cell predominant trichodiscoma','Y','2025-10-23 00:00:00'),(101869,11,'XH7NM2','Spindle cell rhabdomyosarcoma','Y','2025-10-23 00:00:00'),(101870,11,'XH7AN8','Spindle cell sarcoma','Y','2025-10-23 00:00:00'),(101871,11,'XH6ZG8','Spindle epithelial tumour with thymus-like element','Y','2025-10-23 00:00:00'),(101872,11,'XM9DH5','Spindle inactivator','Y','2025-10-23 00:00:00'),(101873,11,'XA7AB8','Spine of helix','Y','2025-10-23 00:00:00'),(101874,11,'8A03.16','Spinocerebellar ataxia','Y','2025-10-23 00:00:00'),(101875,11,'XA6EE7','Spinoglenoid ligament','Y','2025-10-23 00:00:00'),(101876,11,'XM8YN1','Spinose ear tick venom','Y','2025-10-23 00:00:00'),(101877,11,'XM1UG0','Spiperone','Y','2025-10-23 00:00:00'),(101878,11,'XH3AM1','Spiradenoma, NOS','Y','2025-10-23 00:00:00'),(101879,11,'XJ967','Spiral fracture','Y','2025-10-23 00:00:00'),(101880,11,'XM1K16','Spiramycin','Y','2025-10-23 00:00:00'),(101881,11,'XM3E19','Spiramycin and metronidazole','Y','2025-10-23 00:00:00'),(101882,11,'XM8091','Spirapril','Y','2025-10-23 00:00:00'),(101883,11,'XM6YS4','Spirilene','Y','2025-10-23 00:00:00'),(101884,11,'1B90.0','Spirillosis','Y','2025-10-23 00:00:00'),(101885,11,'XN23Z','Spirillum','Y','2025-10-23 00:00:00'),(101886,11,'XN0J7','Spirillum minus','Y','2025-10-23 00:00:00'),(101887,11,'XN78V','Spirillum pulli','Y','2025-10-23 00:00:00'),(101888,11,'XN17K','Spirillum volutans','Y','2025-10-23 00:00:00'),(101889,11,'XN96A','Spirillum winogradskyi','Y','2025-10-23 00:00:00'),(101890,11,'XN89M','Spirometra','Y','2025-10-23 00:00:00'),(101891,11,'XM1JS8','Spironolactone','Y','2025-10-23 00:00:00'),(101892,11,'XM5F28','Spitting cobra snake venom','Y','2025-10-23 00:00:00'),(101893,11,'XH9WF4','Spitz naevus, atypical','Y','2025-10-23 00:00:00'),(101894,11,'2F72.1','Spitzoid tumour of uncertain malignant potential','Y','2025-10-23 00:00:00'),(101895,11,'DB98.73','Splanchnic arteriovenous fistula','Y','2025-10-23 00:00:00'),(101896,11,'XA3SK8','Splanchnic plexus','Y','2025-10-23 00:00:00'),(101897,11,'XA7FU9','Spleen','Y','2025-10-23 00:00:00'),(101898,11,'SF7M','Spleen and kidney yang deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(101899,11,'SF75','Spleen deficiency and blood depletion pattern (TM1)','Y','2025-10-23 00:00:00'),(101900,11,'SF79','Spleen deficiency with dampness accumulation pattern (TM1)','Y','2025-10-23 00:00:00'),(101901,11,'SF73','Spleen deficiency with food retention pattern (TM1)','Y','2025-10-23 00:00:00'),(101902,11,'SF72','Spleen deficiency with qi stagnation pattern (TM1)','Y','2025-10-23 00:00:00'),(101903,11,'SF7A','Spleen deficiency with water flooding pattern (TM1)','Y','2025-10-23 00:00:00'),(101904,11,'SF74','Spleen failing to control the blood pattern (TM1)','Y','2025-10-23 00:00:00'),(101905,11,'SG23','Spleen meridian pattern (TM1)','Y','2025-10-23 00:00:00'),(101906,11,'SF70','Spleen qi deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(101907,11,'SF71','Spleen qi sinking pattern (TM1)','Y','2025-10-23 00:00:00'),(101908,11,'SA5Z','Spleen system disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(101909,11,'SF7Z','Spleen system patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(101910,11,'SF77','Spleen yang deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(101911,11,'SF76','Spleen yin deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(101912,11,'XA0R02','Splenic artery','Y','2025-10-23 00:00:00'),(101913,11,'2A82.3','Splenic B-cell lymphoma or leukaemia, unclassifiable','Y','2025-10-23 00:00:00'),(101914,11,'XH75T5','Splenic B-cell lymphoma/leukaemia, unclassifiable','Y','2025-10-23 00:00:00'),(101915,11,'3B81.5','Splenic cyst or pseudocyst','Y','2025-10-23 00:00:00'),(101916,11,'3B81.5Z','Splenic cyst, unspecified','Y','2025-10-23 00:00:00'),(101917,11,'XH99V9','Splenic diffuse red pulp small B-cell lymphoma','Y','2025-10-23 00:00:00'),(101918,11,'XA1PY9','Splenic flexure of colon','Y','2025-10-23 00:00:00'),(101919,11,'XA8X72','Splenic hilar lymph node','Y','2025-10-23 00:00:00'),(101920,11,'XA9PJ7','Splenic lymph node','Y','2025-10-23 00:00:00'),(101921,11,'XH0MV1','Splenic marginal zone B-cell lymphoma','Y','2025-10-23 00:00:00'),(101922,11,'XA4V38','Splenic plexus','Y','2025-10-23 00:00:00'),(101923,11,'XA0J33','Splenic vein','Y','2025-10-23 00:00:00'),(101924,11,'DB98.4','Splenic vein thrombosis','Y','2025-10-23 00:00:00'),(101925,11,'XA58T9','Splenius capitis muscle','Y','2025-10-23 00:00:00'),(101926,11,'XA39C9','Splenius capitis tendon','Y','2025-10-23 00:00:00'),(101927,11,'XA6095','Splenius cervicis muscle','Y','2025-10-23 00:00:00'),(101928,11,'XA2HL1','Splenius cervicis tendon','Y','2025-10-23 00:00:00'),(101929,11,'3B80.0','Splenomegaly in storage diseases','Y','2025-10-23 00:00:00'),(101930,11,'ME10.01','Splenomegaly, not elsewhere classified','Y','2025-10-23 00:00:00'),(101931,11,'3B81.4','Splenosis','Y','2025-10-23 00:00:00'),(101932,11,'ND11.40','Splinter in ankle','Y','2025-10-23 00:00:00'),(101933,11,'ND11.B0','Splinter in other or unspecified parts of foot','Y','2025-10-23 00:00:00'),(101934,11,'LB9A.6','Split foot','Y','2025-10-23 00:00:00'),(101935,11,'LB99.8','Split hand','Y','2025-10-23 00:00:00'),(101936,11,'MF50.62','Splitting of urinary stream','Y','2025-10-23 00:00:00'),(101937,11,'LD24.5','Spondylodysplastic dysplasias','Y','2025-10-23 00:00:00'),(101938,11,'LD24.5Z','Spondylodysplastic dysplasias, unspecified','Y','2025-10-23 00:00:00'),(101939,11,'LD24.3','Spondyloepiphyseal or spondyloepimetaphyseal dysplasias','Y','2025-10-23 00:00:00'),(101940,11,'FA84','Spondylolisthesis','Y','2025-10-23 00:00:00'),(101941,11,'FA84.0','Spondylolisthesis with pars defect','Y','2025-10-23 00:00:00'),(101942,11,'FA84.1','Spondylolisthesis without pars defect','Y','2025-10-23 00:00:00'),(101943,11,'FA84.Z','Spondylolisthesis, unspecified','Y','2025-10-23 00:00:00'),(101944,11,'FA81','Spondylolysis','Y','2025-10-23 00:00:00'),(101945,11,'FA81.0','Spondylolysis with slippage','Y','2025-10-23 00:00:00'),(101946,11,'FA81.1','Spondylolysis without slippage','Y','2025-10-23 00:00:00'),(101947,11,'FA81.Z','Spondylolysis, unspecified','Y','2025-10-23 00:00:00'),(101948,11,'LD24.4','Spondylometaphyseal dysplasias','Y','2025-10-23 00:00:00'),(101949,11,'FB0Z','Spondylopathies, unspecified','Y','2025-10-23 00:00:00'),(101950,11,'XH49K9','Spongioneuroblastoma','Y','2025-10-23 00:00:00'),(101951,11,'JA00.0','Spontaneous abortion','Y','2025-10-23 00:00:00'),(101952,11,'JA00.06','Spontaneous abortion, complete or unspecified, complicated by delayed or excessive haemorrhage','Y','2025-10-23 00:00:00'),(101953,11,'JA00.07','Spontaneous abortion, complete or unspecified, complicated by embolism','Y','2025-10-23 00:00:00'),(101954,11,'JA00.05','Spontaneous abortion, complete or unspecified, complicated by genital tract or pelvic infection','Y','2025-10-23 00:00:00'),(101955,11,'JA00.08','Spontaneous abortion, complete or unspecified, with other or unspecified complications','Y','2025-10-23 00:00:00'),(101956,11,'JA00.09','Spontaneous abortion, complete or unspecified, without complication','Y','2025-10-23 00:00:00'),(101957,11,'JA00.01','Spontaneous abortion, incomplete, complicated by delayed or excessive haemorrhage','Y','2025-10-23 00:00:00'),(101958,11,'JA00.02','Spontaneous abortion, incomplete, complicated by embolism','Y','2025-10-23 00:00:00'),(101959,11,'JA00.00','Spontaneous abortion, incomplete, complicated by genital tract or pelvic infection','Y','2025-10-23 00:00:00'),(101960,11,'JA00.03','Spontaneous abortion, incomplete, with other or unspecified complications','Y','2025-10-23 00:00:00'),(101961,11,'JA00.04','Spontaneous abortion, incomplete, without complication','Y','2025-10-23 00:00:00'),(101962,11,'DC50.00','Spontaneous bacterial peritonitis','Y','2025-10-23 00:00:00'),(101963,11,'JB20.1','Spontaneous breech delivery','Y','2025-10-23 00:00:00'),(101964,11,'8D61.0','Spontaneous intracranial hypotension','Y','2025-10-23 00:00:00'),(101965,11,'SA11','Spontaneous palpitation disorder (TM1)','Y','2025-10-23 00:00:00'),(101966,11,'FB32.1','Spontaneous rupture of muscle','Y','2025-10-23 00:00:00'),(101967,11,'DA20.30','Spontaneous rupture of oesophagus','Y','2025-10-23 00:00:00'),(101968,11,'FB41.0','Spontaneous rupture of popliteal cyst','Y','2025-10-23 00:00:00'),(101969,11,'FB41.1','Spontaneous rupture of synovium','Y','2025-10-23 00:00:00'),(101970,11,'FB41','Spontaneous rupture of synovium or tendon','Y','2025-10-23 00:00:00'),(101971,11,'FB41.Z','Spontaneous rupture of synovium or tendon, unspecified','Y','2025-10-23 00:00:00'),(101972,11,'FB41.2','Spontaneous rupture of tendon','Y','2025-10-23 00:00:00'),(101973,11,'CB21.0','Spontaneous tension pneumothorax','Y','2025-10-23 00:00:00'),(101974,11,'EB00','Spontaneous urticaria','Y','2025-10-23 00:00:00'),(101975,11,'JB20.0','Spontaneous vertex delivery','Y','2025-10-23 00:00:00'),(101976,11,'8E00','Sporadic Creutzfeldt-Jakob Disease','Y','2025-10-23 00:00:00'),(101977,11,'CB07.1','Sporadic lymphangioleiomyomatosis','Y','2025-10-23 00:00:00'),(101978,11,'8A00.00','Sporadic Parkinson disease','Y','2025-10-23 00:00:00'),(101979,11,'XM1VV3','Sporostacin','Y','2025-10-23 00:00:00'),(101980,11,'XN200','Sporothrix','Y','2025-10-23 00:00:00'),(101981,11,'XN6GM','Sporothrix schenckii','Y','2025-10-23 00:00:00'),(101982,11,'1F2J','Sporotrichosis','Y','2025-10-23 00:00:00'),(101983,11,'1F2J.Z','Sporotrichosis, unspecified','Y','2025-10-23 00:00:00'),(101984,11,'XE6G7','Sport utility vehicle as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(101985,11,'XE5X0','Sport utility vehicle as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(101986,11,'XE7K0','Sports and athletics area','Y','2025-10-23 00:00:00'),(101987,11,'XE76Q','Sports mat for playing sports or exercise','Y','2025-10-23 00:00:00'),(101988,11,'1C31','Spotted fever','Y','2025-10-23 00:00:00'),(101989,11,'1C31.3','Spotted fever due to Rickettsia australis','Y','2025-10-23 00:00:00'),(101990,11,'1C31.1','Spotted fever due to Rickettsia conorii','Y','2025-10-23 00:00:00'),(101991,11,'1C31.0','Spotted fever due to Rickettsia rickettsii','Y','2025-10-23 00:00:00'),(101992,11,'1C31.2','Spotted fever due to Rickettsia sibirica','Y','2025-10-23 00:00:00'),(101993,11,'1C31.Z','Spotted fever, unspecified','Y','2025-10-23 00:00:00'),(101994,11,'XE454','Spouse or partner','Y','2025-10-23 00:00:00'),(101995,11,'NC54.8Y','Sprain of other specified part of finger','Y','2025-10-23 00:00:00'),(101996,11,'NC54.7Y','Sprain of other specified part of thumb','Y','2025-10-23 00:00:00'),(101997,11,'NC54.6Y','Sprain of other specified part of wrist','Y','2025-10-23 00:00:00'),(101998,11,'ND14.AY','Sprain of other specified parts of foot','Y','2025-10-23 00:00:00'),(101999,11,'ND14.AZ','Sprain of unspecified parts of foot','Y','2025-10-23 00:00:00'),(102000,11,'LB72.1','Sprengel deformity','Y','2025-10-23 00:00:00'),(102001,11,'XE7QZ','Spring component of medical device','Y','2025-10-23 00:00:00'),(102002,11,'SE01','Spring warmth disorder (TM1)','Y','2025-10-23 00:00:00'),(102003,11,'XM5QM6','Sputnik-Light','Y','2025-10-23 00:00:00'),(102004,11,'XM2BM5','Sputum viscosity-lowering drug','Y','2025-10-23 00:00:00'),(102005,11,'XH95Y6','Squamoid eccrine ductal carcinoma','Y','2025-10-23 00:00:00'),(102006,11,'XH2BS4','Squamous carcinoma with osteoclast-like giant cells','Y','2025-10-23 00:00:00'),(102007,11,'2E67.41','Squamous cell carcinoma in situ of mucocutaneous epithelium of penis','Y','2025-10-23 00:00:00'),(102008,11,'2E67.40','Squamous cell carcinoma in situ of skin of penis','Y','2025-10-23 00:00:00'),(102009,11,'XH1U36','Squamous cell carcinoma in situ with questionable stromal invasion','Y','2025-10-23 00:00:00'),(102010,11,'XH7WM7','Squamous cell carcinoma in situ, NOS','Y','2025-10-23 00:00:00'),(102011,11,'2C22.1','Squamous cell carcinoma of accessory sinuses','Y','2025-10-23 00:00:00'),(102012,11,'2C00.3','Squamous cell carcinoma of anus or anal canal','Y','2025-10-23 00:00:00'),(102013,11,'2C94.1','Squamous cell carcinoma of bladder','Y','2025-10-23 00:00:00'),(102014,11,'2C25.2','Squamous cell carcinoma of bronchus or lung','Y','2025-10-23 00:00:00'),(102015,11,'2C77.0','Squamous cell carcinoma of cervix uteri','Y','2025-10-23 00:00:00'),(102016,11,'2D00.2','Squamous cell carcinoma of conjunctiva','Y','2025-10-23 00:00:00'),(102017,11,'2D01.1','Squamous cell carcinoma of cornea','Y','2025-10-23 00:00:00'),(102018,11,'2B64.0','Squamous cell carcinoma of floor of mouth','Y','2025-10-23 00:00:00'),(102019,11,'2B63.0','Squamous cell carcinoma of gum','Y','2025-10-23 00:00:00'),(102020,11,'2B6D.0','Squamous cell carcinoma of hypopharynx and variants','Y','2025-10-23 00:00:00'),(102021,11,'2C23.10','Squamous cell carcinoma of larynx, glottis','Y','2025-10-23 00:00:00'),(102022,11,'2C23.30','Squamous cell carcinoma of larynx, subglottis','Y','2025-10-23 00:00:00'),(102023,11,'2C23.20','Squamous cell carcinoma of larynx, supraglottis','Y','2025-10-23 00:00:00'),(102024,11,'2B62.10','Squamous cell carcinoma of lingual tonsil','Y','2025-10-23 00:00:00'),(102025,11,'2B60.1','Squamous cell carcinoma of lip','Y','2025-10-23 00:00:00'),(102026,11,'2C21.1','Squamous cell carcinoma of middle ear','Y','2025-10-23 00:00:00'),(102027,11,'2C20.4','Squamous cell carcinoma of nasal cavity','Y','2025-10-23 00:00:00'),(102028,11,'2B6B.0','Squamous cell carcinoma of nasopharynx','Y','2025-10-23 00:00:00'),(102029,11,'2B70.1','Squamous cell carcinoma of oesophagus','Y','2025-10-23 00:00:00'),(102030,11,'2B6A.0','Squamous cell carcinoma of oropharynx','Y','2025-10-23 00:00:00'),(102031,11,'2B6E.0','Squamous cell carcinoma of other or ill-defined sites in the lip, oral cavity or pharynx','Y','2025-10-23 00:00:00'),(102032,11,'2B66.0','Squamous cell carcinoma of other or unspecified parts of mouth','Y','2025-10-23 00:00:00'),(102033,11,'2B62.0','Squamous cell carcinoma of other or unspecified parts of tongue','Y','2025-10-23 00:00:00'),(102034,11,'2C22.1Y','Squamous cell carcinoma of other specified accessory sinuses','Y','2025-10-23 00:00:00'),(102035,11,'2B65.1','Squamous cell carcinoma of palate','Y','2025-10-23 00:00:00'),(102036,11,'2B67.1','Squamous cell carcinoma of parotid gland','Y','2025-10-23 00:00:00'),(102037,11,'2C81.0','Squamous cell carcinoma of penis','Y','2025-10-23 00:00:00'),(102038,11,'2B6B.20','Squamous cell carcinoma of pharyngeal tonsil','Y','2025-10-23 00:00:00'),(102039,11,'2B6C.0','Squamous cell carcinoma of piriform sinus','Y','2025-10-23 00:00:00'),(102040,11,'2C83.0','Squamous cell carcinoma of scrotum','Y','2025-10-23 00:00:00'),(102041,11,'2C31','Squamous cell carcinoma of skin','Y','2025-10-23 00:00:00'),(102042,11,'2C22.10','Squamous cell carcinoma of sphenoidal sinus','Y','2025-10-23 00:00:00'),(102043,11,'2B68.1','Squamous cell carcinoma of submandibular or sublingual glands','Y','2025-10-23 00:00:00'),(102044,11,'2B61.0','Squamous cell carcinoma of the base of the tongue','Y','2025-10-23 00:00:00'),(102045,11,'2D03.2','Squamous cell carcinoma of the lacrimal apparatus','Y','2025-10-23 00:00:00'),(102046,11,'2B69.0','Squamous cell carcinoma of tonsil','Y','2025-10-23 00:00:00'),(102047,11,'2C24.1','Squamous cell carcinoma of trachea','Y','2025-10-23 00:00:00'),(102048,11,'2C93.1','Squamous cell carcinoma of urethra or paraurethral gland','Y','2025-10-23 00:00:00'),(102049,11,'2C71.2','Squamous cell carcinoma of vagina','Y','2025-10-23 00:00:00'),(102050,11,'2C70.2','Squamous cell carcinoma of vulva','Y','2025-10-23 00:00:00'),(102051,11,'XH2JN3','Squamous cell carcinoma with horn formation','Y','2025-10-23 00:00:00'),(102052,11,'XH7LH0','Squamous cell carcinoma, adenoid','Y','2025-10-23 00:00:00'),(102053,11,'XH9DC1','Squamous cell carcinoma, clear cell type','Y','2025-10-23 00:00:00'),(102054,11,'XH2137','Squamous cell carcinoma, HPV negative','Y','2025-10-23 00:00:00'),(102055,11,'XH0EJ7','Squamous cell carcinoma, HPV positive','Y','2025-10-23 00:00:00'),(102056,11,'XH4CR9','Squamous cell carcinoma, keratinizing, NOS','Y','2025-10-23 00:00:00'),(102057,11,'XH6705','Squamous cell carcinoma, large cell, nonkeratinizing, NOS','Y','2025-10-23 00:00:00'),(102058,11,'XH84Q4','Squamous cell carcinoma, metastatic, NOS','Y','2025-10-23 00:00:00'),(102059,11,'XH90Y3','Squamous cell carcinoma, microinvasive','Y','2025-10-23 00:00:00'),(102060,11,'XH0945','Squamous cell carcinoma, NOS','Y','2025-10-23 00:00:00'),(102061,11,'XH2435','Squamous cell carcinoma, small cell, nonkeratinizing','Y','2025-10-23 00:00:00'),(102062,11,'XH6D80','Squamous cell carcinoma, spindle cell','Y','2025-10-23 00:00:00'),(102063,11,'2C95.1','Squamous cell carcinomas involving overlapping sites of urinary organs','Y','2025-10-23 00:00:00'),(102064,11,'2C29.0','Squamous cell carcinomas of other and ill-defined sites in the respiratory system and intrathoracic organs','Y','2025-10-23 00:00:00'),(102065,11,'XH7YQ5','Squamous cell papilloma, inverted','Y','2025-10-23 00:00:00'),(102066,11,'XH50T2','Squamous cell papilloma, NOS','Y','2025-10-23 00:00:00'),(102067,11,'XH3EA2','Squamous intraepithelial neoplasia, high grade','Y','2025-10-23 00:00:00'),(102068,11,'XH4611','Squamous intraepithelial neoplasia, low grade','Y','2025-10-23 00:00:00'),(102069,11,'XH4PV9','Squamous odontogenic tumour','Y','2025-10-23 00:00:00'),(102070,11,'XH50N3','Squamous papillomatosis','Y','2025-10-23 00:00:00'),(102071,11,'XM77L9','Squill','Y','2025-10-23 00:00:00'),(102072,11,'XM7XV5','Squirting cucumber (cathartic)','Y','2025-10-23 00:00:00'),(102073,11,'1C86','St Louis encephalitis','Y','2025-10-23 00:00:00'),(102074,11,'BA40.1','Stable angina','Y','2025-10-23 00:00:00'),(102075,11,'DA06.3','Stafne mandibular bone cavity','Y','2025-10-23 00:00:00'),(102076,11,'XS76','Stage 0','Y','2025-10-23 00:00:00'),(102077,11,'XS7A','Stage 1','Y','2025-10-23 00:00:00'),(102078,11,'XS2X','Stage 10','Y','2025-10-23 00:00:00'),(102079,11,'XS5S','Stage 2','Y','2025-10-23 00:00:00'),(102080,11,'XS4D','Stage 2a','Y','2025-10-23 00:00:00'),(102081,11,'XS6D','Stage 2b','Y','2025-10-23 00:00:00'),(102082,11,'XS00','Stage 3','Y','2025-10-23 00:00:00'),(102083,11,'XS3T','Stage 3a','Y','2025-10-23 00:00:00'),(102084,11,'XS90','Stage 3b','Y','2025-10-23 00:00:00'),(102085,11,'XS6G','Stage 4','Y','2025-10-23 00:00:00'),(102086,11,'XS9N','Stage 5','Y','2025-10-23 00:00:00'),(102087,11,'XS88','Stage 6','Y','2025-10-23 00:00:00'),(102088,11,'XS52','Stage 7','Y','2025-10-23 00:00:00'),(102089,11,'XS0G','Stage 8','Y','2025-10-23 00:00:00'),(102090,11,'XS2C','Stage 9','Y','2025-10-23 00:00:00'),(102091,11,'XS1G','Stage I','Y','2025-10-23 00:00:00'),(102092,11,'XS1Y','Stage I: Asymptomatic, incomplete blood vessel obstruction','Y','2025-10-23 00:00:00'),(102093,11,'XS4P','Stage II','Y','2025-10-23 00:00:00'),(102094,11,'XS5L','Stage II: Mild claudication pain in limb','Y','2025-10-23 00:00:00'),(102095,11,'XS5V','Stage IIA: Claudication at a distance > 200 metres','Y','2025-10-23 00:00:00'),(102096,11,'XS6C','Stage IIB: Claudication at a distance < 200 metres','Y','2025-10-23 00:00:00'),(102097,11,'XS6H','Stage III','Y','2025-10-23 00:00:00'),(102098,11,'XS9L','Stage III: Rest pain, mostly in the feet','Y','2025-10-23 00:00:00'),(102099,11,'XS9R','Stage IV','Y','2025-10-23 00:00:00'),(102100,11,'XS2J','Stage IV: Necrosis and/or gangrene of the limb','Y','2025-10-23 00:00:00'),(102101,11,'GB70.00','Staghorn calculus','Y','2025-10-23 00:00:00'),(102102,11,'XE3HC','Stairs, steps','Y','2025-10-23 00:00:00'),(102103,11,'XE4K0','Stand component of medical device','Y','2025-10-23 00:00:00'),(102104,11,'XD9LJ2','Standard surgical face masks','Y','2025-10-23 00:00:00'),(102105,11,'CA60.9','Stannosis','Y','2025-10-23 00:00:00'),(102106,11,'XM9RB7','Stannous fluoride','Y','2025-10-23 00:00:00'),(102107,11,'XM8VE0','Stanozolol','Y','2025-10-23 00:00:00'),(102108,11,'XA8D61','Stapedius muscle','Y','2025-10-23 00:00:00'),(102109,11,'XA8W69','Stapedius tendon','Y','2025-10-23 00:00:00'),(102110,11,'XA3WA4','Stapes','Y','2025-10-23 00:00:00'),(102111,11,'XM38S1','Staphisagria or stavesacre (pediculicide)','Y','2025-10-23 00:00:00'),(102112,11,'1B70.2','Staphylococcal cellulitis of skin','Y','2025-10-23 00:00:00'),(102113,11,'1B73.1','Staphylococcal ecthyma','Y','2025-10-23 00:00:00'),(102114,11,'1B5Z','Staphylococcal or streptococcal diseases, unspecified','Y','2025-10-23 00:00:00'),(102115,11,'EA50.2','Staphylococcal scalded skin syndrome','Y','2025-10-23 00:00:00'),(102116,11,'EA50.3','Staphylococcal scarlatina','Y','2025-10-23 00:00:00'),(102117,11,'1C45.1','Staphylococcal toxic shock syndrome','Y','2025-10-23 00:00:00'),(102118,11,'XN9ZG','Staphylococcus','Y','2025-10-23 00:00:00'),(102119,11,'XN6BM','Staphylococcus aureus','Y','2025-10-23 00:00:00'),(102120,11,'1B74.0','Staphylococcus aureus superficial folliculitis','Y','2025-10-23 00:00:00'),(102121,11,'XN0PR','Staphylococcus auricularis','Y','2025-10-23 00:00:00'),(102122,11,'XN0H1','Staphylococcus capitis','Y','2025-10-23 00:00:00'),(102123,11,'XN99G','Staphylococcus caprae','Y','2025-10-23 00:00:00'),(102124,11,'XN95B','Staphylococcus cohnii','Y','2025-10-23 00:00:00'),(102125,11,'XN8KJ','Staphylococcus epidermidis','Y','2025-10-23 00:00:00'),(102126,11,'XN2GD','Staphylococcus haemolyticus','Y','2025-10-23 00:00:00'),(102127,11,'XM1V63','Staphylococcus immunoglobulin','Y','2025-10-23 00:00:00'),(102128,11,'XN09P','Staphylococcus leei','Y','2025-10-23 00:00:00'),(102129,11,'XN4N7','Staphylococcus lugdunensis','Y','2025-10-23 00:00:00'),(102130,11,'XN8WC','Staphylococcus pasteuri','Y','2025-10-23 00:00:00'),(102131,11,'XN6FH','Staphylococcus pettenkoferi','Y','2025-10-23 00:00:00'),(102132,11,'XN9X8','Staphylococcus schleiferi','Y','2025-10-23 00:00:00'),(102133,11,'XN2HN','Staphylococcus sciuri','Y','2025-10-23 00:00:00'),(102134,11,'XN7RE','Staphylococcus simulans','Y','2025-10-23 00:00:00'),(102135,11,'XN4C9','Staphylococcus warneri','Y','2025-10-23 00:00:00'),(102136,11,'XN7TQ','Staphylococcus xylosus','Y','2025-10-23 00:00:00'),(102137,11,'MC20.0','Staphyloma','Y','2025-10-23 00:00:00'),(102138,11,'XE2HY','Staple fastner component of medical device','Y','2025-10-23 00:00:00'),(102139,11,'XM7A02','Starfish venom','Y','2025-10-23 00:00:00'),(102140,11,'XM73V9','Stargazer fish venom','Y','2025-10-23 00:00:00'),(102141,11,'EA86.0','Stasis dermatitis of the lower legs','Y','2025-10-23 00:00:00'),(102142,11,'GA30.3','States associated with artificial menopause','Y','2025-10-23 00:00:00'),(102143,11,'XE0HH','Station wagon as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(102144,11,'XE85J','Station wagon as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(102145,11,'8A66','Status epilepticus','Y','2025-10-23 00:00:00'),(102146,11,'8A66.Z','Status epilepticus, unspecified','Y','2025-10-23 00:00:00'),(102147,11,'8A80.30','Status migrainosus','Y','2025-10-23 00:00:00'),(102148,11,'XM7RM1','Stavudine','Y','2025-10-23 00:00:00'),(102149,11,'XM99U8','Stavudine, Lamivudine and Nevirapine','Y','2025-10-23 00:00:00'),(102150,11,'XE77R','Steam, hot vapour','Y','2025-10-23 00:00:00'),(102151,11,'XE82E','Steering wire component of medical device','Y','2025-10-23 00:00:00'),(102152,11,'XM5JH1','Stelazine','Y','2025-10-23 00:00:00'),(102153,11,'XM6GB5','Stem cells from umbilical cord blood','Y','2025-10-23 00:00:00'),(102154,11,'XM9Q32','Stemetil','Y','2025-10-23 00:00:00'),(102155,11,'DB51','Stenosis of anal canal','Y','2025-10-23 00:00:00'),(102156,11,'CA0H.5','Stenosis of larynx','Y','2025-10-23 00:00:00'),(102157,11,'BC02.30','Stenosis of the neoaortic valve of pulmonary origin','Y','2025-10-23 00:00:00'),(102158,11,'DB30.4','Stenosis of the rectum','Y','2025-10-23 00:00:00'),(102159,11,'XN1L0','Stenotrophomonas','Y','2025-10-23 00:00:00'),(102160,11,'XE7UE','Stent component of medical device','Y','2025-10-23 00:00:00'),(102161,11,'PG63','Stepped on or crushed with undetermined intent by animal','Y','2025-10-23 00:00:00'),(102162,11,'PG62','Stepped on or crushed with undetermined intent by person','Y','2025-10-23 00:00:00'),(102163,11,'XM7BF1','Stepronin','Y','2025-10-23 00:00:00'),(102164,11,'XM9JR8','Sterculia','Y','2025-10-23 00:00:00'),(102165,11,'6A06','Stereotyped movement disorder','Y','2025-10-23 00:00:00'),(102166,11,'6A06.1','Stereotyped movement disorder with self-injury','Y','2025-10-23 00:00:00'),(102167,11,'6A06.0','Stereotyped movement disorder without self-injury','Y','2025-10-23 00:00:00'),(102168,11,'6A06.Z','Stereotyped movement disorder, unspecified','Y','2025-10-23 00:00:00'),(102169,11,'8A07.0','Stereotypies','Y','2025-10-23 00:00:00'),(102170,11,'8A07.0Z','Stereotypies, unspecified','Y','2025-10-23 00:00:00'),(102171,11,'XM6VH6','Sterigmatocystin','Y','2025-10-23 00:00:00'),(102172,11,'XA0060','Sterile matrix','Y','2025-10-23 00:00:00'),(102173,11,'XE00F','Sterilization problem with device identified','Y','2025-10-23 00:00:00'),(102174,11,'XA76N8','Sternal end of clavicle','Y','2025-10-23 00:00:00'),(102175,11,'XA6UQ6','Sternal','Y','2025-10-23 00:00:00'),(102176,11,'XA0CH1','Sternoclavicular joint','Y','2025-10-23 00:00:00'),(102177,11,'XA77C5','Sternocleidomastoid artery','Y','2025-10-23 00:00:00'),(102178,11,'XA2H61','Sternocleidomastoid muscle','Y','2025-10-23 00:00:00'),(102179,11,'XA70V9','Sternocleidomastoid tendon','Y','2025-10-23 00:00:00'),(102180,11,'XA83N6','Sternocostal joint','Y','2025-10-23 00:00:00'),(102181,11,'XA5QR5','Sternohyoid muscle','Y','2025-10-23 00:00:00'),(102182,11,'XA6S11','Sternohyoid tendon','Y','2025-10-23 00:00:00'),(102183,11,'XA9H91','Sternothyroid muscle','Y','2025-10-23 00:00:00'),(102184,11,'XA4VX2','Sternothyroid tendon','Y','2025-10-23 00:00:00'),(102185,11,'XA6NB3','Sternum','Y','2025-10-23 00:00:00'),(102186,11,'XM0G86','Sternutator gas, not elsewhere classified','Y','2025-10-23 00:00:00'),(102187,11,'XM8JY6','Steroid','Y','2025-10-23 00:00:00'),(102188,11,'XM3KV3','Steroid androgenic','Y','2025-10-23 00:00:00'),(102189,11,'XM1KA5','Steroid antineoplastic, hormone','Y','2025-10-23 00:00:00'),(102190,11,'XM0SU9','Steroid antineoplastic, hormone estrogen','Y','2025-10-23 00:00:00'),(102191,11,'XH4L39','Steroid cell tumour, malignant','Y','2025-10-23 00:00:00'),(102192,11,'XM8HC5','Steroid topical','Y','2025-10-23 00:00:00'),(102193,11,'MD11.80','Stertor','Y','2025-10-23 00:00:00'),(102194,11,'XD4ZY0','Stethoscopes','Y','2025-10-23 00:00:00'),(102195,11,'XD8DB0','Stethoscopes, Binaural','Y','2025-10-23 00:00:00'),(102196,11,'XD04L8','Stethoscopes, MRI','Y','2025-10-23 00:00:00'),(102197,11,'EB13.2','Stevens-Johnson and toxic epidermal necrolysis overlap syndrome','Y','2025-10-23 00:00:00'),(102198,11,'EB13.0','Stevens-Johnson syndrome','Y','2025-10-23 00:00:00'),(102199,11,'EH63','Stevens-Johnson syndrome and toxic epidermal necrolysis due to drug','Y','2025-10-23 00:00:00'),(102200,11,'EB13','Stevens-Johnson syndrome or toxic epidermal necrolysis','Y','2025-10-23 00:00:00'),(102201,11,'XM45H6','Stibogluconate','Y','2025-10-23 00:00:00'),(102202,11,'XM5VV1','Stibophen','Y','2025-10-23 00:00:00'),(102203,11,'ME85','Stiffness of joint','Y','2025-10-23 00:00:00'),(102204,11,'XE69Q','Stiffness problem identified with device','Y','2025-10-23 00:00:00'),(102205,11,'XM0CL7','Stilbamidine isetionate','Y','2025-10-23 00:00:00'),(102206,11,'XM7125','Stimulant central nervous system psychotherapeutic','Y','2025-10-23 00:00:00'),(102207,11,'6C46.2','Stimulant dependence including amphetamines, methamphetamine or methcathinone','Y','2025-10-23 00:00:00'),(102208,11,'6C46.20','Stimulant dependence including amphetamines, methamphetamine or methcathinone, current use','Y','2025-10-23 00:00:00'),(102209,11,'6C46.21','Stimulant dependence including amphetamines, methamphetamine or methcathinone, early full remission','Y','2025-10-23 00:00:00'),(102210,11,'6C46.23','Stimulant dependence including amphetamines, methamphetamine or methcathinone, sustained full remission','Y','2025-10-23 00:00:00'),(102211,11,'6C46.22','Stimulant dependence including amphetamines, methamphetamine or methcathinone, sustained partial remission','Y','2025-10-23 00:00:00'),(102212,11,'6C46.2Z','Stimulant dependence including amphetamines, methamphetamine or methcathinone, unspecified','Y','2025-10-23 00:00:00'),(102213,11,'6C46.3','Stimulant intoxication including amphetamines, methamphetamine or methcathinone','Y','2025-10-23 00:00:00'),(102214,11,'6C46.4','Stimulant withdrawal including amphetamines, methamphetamine or methcathinone','Y','2025-10-23 00:00:00'),(102215,11,'6C46.71','Stimulant-induced anxiety disorder including amphetamines, methamphetamine or methcathinone','Y','2025-10-23 00:00:00'),(102216,11,'6C46.5','Stimulant-induced delirium including amphetamines, methamphetamine or methcathinone','Y','2025-10-23 00:00:00'),(102217,11,'6C46.73','Stimulant-induced impulse control disorder including amphetamines, methamphetamine or methcathinone','Y','2025-10-23 00:00:00'),(102218,11,'6C46.70','Stimulant-induced mood disorder including amphetamines, methamphetamine or methcathinone','Y','2025-10-23 00:00:00'),(102219,11,'6C46.72','Stimulant-induced obsessive-compulsive or related disorder including amphetamines, methamphetamine or methcathinone','Y','2025-10-23 00:00:00'),(102220,11,'6C46.62','Stimulant-induced psychotic disorder including amphetamines but excluding caffeine or cocaine with mixed psychotic symptoms','Y','2025-10-23 00:00:00'),(102221,11,'6C46.6','Stimulant-induced psychotic disorder including amphetamines, methamphetamine or methcathinone','Y','2025-10-23 00:00:00'),(102222,11,'6C46.61','Stimulant-induced psychotic disorder including amphetamines, methamphetamine or methcathinone with delusions','Y','2025-10-23 00:00:00'),(102223,11,'6C46.60','Stimulant-induced psychotic disorder including amphetamines, methamphetamine or methcathinone with hallucinations','Y','2025-10-23 00:00:00'),(102224,11,'6C46.6Z','Stimulant-induced psychotic disorder including amphetamines, methamphetamine or methcathinone, unspecified','Y','2025-10-23 00:00:00'),(102225,11,'ME65.3','Stinging of skin','Y','2025-10-23 00:00:00'),(102226,11,'XM7P10','Stingray venom','Y','2025-10-23 00:00:00'),(102227,11,'XM34S0','Stiripentol','Y','2025-10-23 00:00:00'),(102228,11,'XA7MC7','Stomach','Y','2025-10-23 00:00:00'),(102229,11,'SA51','Stomach ache disorder (TM1)','Y','2025-10-23 00:00:00'),(102230,11,'SF7F','Stomach heat pattern (TM1)','Y','2025-10-23 00:00:00'),(102231,11,'SG22','Stomach meridian pattern (TM1)','Y','2025-10-23 00:00:00'),(102232,11,'SF7C','Stomach qi deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(102233,11,'SF7D','Stomach qi uprising pattern (TM1)','Y','2025-10-23 00:00:00'),(102234,11,'SF7E','Stomach yin deficiency pattern (TM1)','Y','2025-10-23 00:00:00'),(102235,11,'XM8P00','Stonefish venom','Y','2025-10-23 00:00:00'),(102236,11,'SA90','Stony stranguria disorder (TM1)','Y','2025-10-23 00:00:00'),(102237,11,'XE484','Stool','Y','2025-10-23 00:00:00'),(102238,11,'XE8M4','Stopcock component of medical device','Y','2025-10-23 00:00:00'),(102239,11,'XE00C','Stopper component of medical device','Y','2025-10-23 00:00:00'),(102240,11,'XE32G','Storage of device problem identified','Y','2025-10-23 00:00:00'),(102241,11,'XM2MX6','Stovaine','Y','2025-10-23 00:00:00'),(102242,11,'XM79W4','Stovaine infiltration','Y','2025-10-23 00:00:00'),(102243,11,'XM08B5','Stovaine nerve block','Y','2025-10-23 00:00:00'),(102244,11,'XM9657','Stovaine spinal','Y','2025-10-23 00:00:00'),(102245,11,'XM3MW8','Stovaine topical','Y','2025-10-23 00:00:00'),(102246,11,'XM9L57','Stovarsal','Y','2025-10-23 00:00:00'),(102247,11,'XE6PT','Stove, oven, cooktop','Y','2025-10-23 00:00:00'),(102248,11,'XM6Q18','Stoxil','Y','2025-10-23 00:00:00'),(102249,11,'9C8Z','Strabismus or ocular motility disorders, unspecified','Y','2025-10-23 00:00:00'),(102250,11,'XA03D2','Straight sinus','Y','2025-10-23 00:00:00'),(102251,11,'NC93.6','Strain or sprain involving anterior or posterior cruciate ligament of knee','Y','2025-10-23 00:00:00'),(102252,11,'NC93.6Z','Strain or sprain involving anterior or posterior cruciate ligament of knee, unspecified','Y','2025-10-23 00:00:00'),(102253,11,'NC93.5','Strain or sprain involving fibular or tibial collateral ligament of knee','Y','2025-10-23 00:00:00'),(102254,11,'NC93.5Z','Strain or sprain involving fibular or tibial collateral ligament of knee, unspecified','Y','2025-10-23 00:00:00'),(102255,11,'NC96.00','Strain or sprain of Achilles tendon','Y','2025-10-23 00:00:00'),(102256,11,'NC13.6','Strain or sprain of acromioclavicular joint','Y','2025-10-23 00:00:00'),(102257,11,'NC76.20','Strain or sprain of adductor muscle, fascia or tendon of thigh','Y','2025-10-23 00:00:00'),(102258,11,'ND14.7','Strain or sprain of ankle','Y','2025-10-23 00:00:00'),(102259,11,'ND14.7Z','Strain or sprain of ankle, unspecified','Y','2025-10-23 00:00:00'),(102260,11,'NC93.60','Strain or sprain of anterior cruciate ligament of knee, excluding rupture','Y','2025-10-23 00:00:00'),(102261,11,'ND14.70','Strain or sprain of calcaneofibular ligament','Y','2025-10-23 00:00:00'),(102262,11,'NC54.60','Strain or sprain of carpal joint','Y','2025-10-23 00:00:00'),(102263,11,'NC54.62','Strain or sprain of carpometacarpal joint','Y','2025-10-23 00:00:00'),(102264,11,'NA23.4','Strain or sprain of cervical spine','Y','2025-10-23 00:00:00'),(102265,11,'NA23.4Z','Strain or sprain of cervical spine, unspecified','Y','2025-10-23 00:00:00'),(102266,11,'NA83.42','Strain or sprain of chondro-sternal joint','Y','2025-10-23 00:00:00'),(102267,11,'ND14.71','Strain or sprain of deltoid ligament','Y','2025-10-23 00:00:00'),(102268,11,'NC33.4','Strain or sprain of elbow','Y','2025-10-23 00:00:00'),(102269,11,'NC36.40','Strain or sprain of extensor muscle, fascia or tendon of other finger at forearm level','Y','2025-10-23 00:00:00'),(102270,11,'NC57.30','Strain or sprain of extensor muscle, fascia or tendon of other finger at wrist or hand level','Y','2025-10-23 00:00:00'),(102271,11,'NC57.20','Strain or sprain of extensor muscle, fascia or tendon of thumb at wrist or hand level','Y','2025-10-23 00:00:00'),(102272,11,'NC36.30','Strain or sprain of extensor or abductor muscles or tendons of thumb at forearm level','Y','2025-10-23 00:00:00'),(102273,11,'NC54.8','Strain or sprain of finger','Y','2025-10-23 00:00:00'),(102274,11,'NC54.8Z','Strain or sprain of finger, unspecified','Y','2025-10-23 00:00:00'),(102275,11,'NC57.10','Strain or sprain of flexor muscle, fascia or tendon of other finger at wrist or hand level','Y','2025-10-23 00:00:00'),(102276,11,'NC36.00','Strain or sprain of flexor muscle, fascia or tendon of thumb at forearm level','Y','2025-10-23 00:00:00'),(102277,11,'ND14.9','Strain or sprain of great toe','Y','2025-10-23 00:00:00'),(102278,11,'ND14.9Z','Strain or sprain of great toe, unspecified','Y','2025-10-23 00:00:00'),(102279,11,'NC73.1','Strain or sprain of hip','Y','2025-10-23 00:00:00'),(102280,11,'NC73.1Z','Strain or sprain of hip, unspecified','Y','2025-10-23 00:00:00'),(102281,11,'NC54.81','Strain or sprain of interphalangeal joint of finger','Y','2025-10-23 00:00:00'),(102282,11,'ND14.91','Strain or sprain of interphalangeal joint of great toe','Y','2025-10-23 00:00:00'),(102283,11,'NC54.71','Strain or sprain of interphalangeal joint of thumb','Y','2025-10-23 00:00:00'),(102284,11,'ND14.A1','Strain or sprain of interphalangeal joints of lesser toe','Y','2025-10-23 00:00:00'),(102285,11,'ND17.20','Strain or sprain of intrinsic muscle, fascia or tendon at ankle or foot level','Y','2025-10-23 00:00:00'),(102286,11,'NC57.50','Strain or sprain of intrinsic muscle, fascia or tendon of other finger at wrist or hand level','Y','2025-10-23 00:00:00'),(102287,11,'NC57.40','Strain or sprain of intrinsic muscle, fascia or tendon of thumb at wrist or hand level','Y','2025-10-23 00:00:00'),(102288,11,'NA03.3','Strain or sprain of jaw','Y','2025-10-23 00:00:00'),(102289,11,'NC93.51','Strain or sprain of lateral collateral ligament of knee, excluding rupture','Y','2025-10-23 00:00:00'),(102290,11,'NA83.3','Strain or sprain of ligaments of thoracic spine','Y','2025-10-23 00:00:00'),(102291,11,'NC36.10','Strain or sprain of long flexor muscle, fascia or tendon of other finger at forearm level','Y','2025-10-23 00:00:00'),(102292,11,'NC57.00','Strain or sprain of long flexor muscle, fascia or tendon of thumb at wrist or hand level','Y','2025-10-23 00:00:00'),(102293,11,'NB53.5','Strain or sprain of lumbar spine','Y','2025-10-23 00:00:00'),(102294,11,'NC93.50','Strain or sprain of medial collateral ligament of knee, excluding rupture','Y','2025-10-23 00:00:00'),(102295,11,'NC54.80','Strain or sprain of metacarpophalangeal joint of finger','Y','2025-10-23 00:00:00'),(102296,11,'NC54.70','Strain or sprain of metacarpophalangeal joint of thumb','Y','2025-10-23 00:00:00'),(102297,11,'ND14.90','Strain or sprain of metatarsophalangeal joint of great toe','Y','2025-10-23 00:00:00'),(102298,11,'ND14.A0','Strain or sprain of metatarsophalangeal joint of lesser toe','Y','2025-10-23 00:00:00'),(102299,11,'NC16.40','Strain or sprain of multiple muscles or tendons at shoulder or upper arm level','Y','2025-10-23 00:00:00'),(102300,11,'NC16.00','Strain or sprain of muscle or tendon of the rotator cuff of shoulder','Y','2025-10-23 00:00:00'),(102301,11,'NA61.0','Strain or sprain of muscle, fascia or tendon at neck level','Y','2025-10-23 00:00:00'),(102302,11,'NB34.0','Strain or sprain of muscle, fascia or tendon at thorax level','Y','2025-10-23 00:00:00'),(102303,11,'NB94.0','Strain or sprain of muscle, fascia or tendon of abdomen','Y','2025-10-23 00:00:00'),(102304,11,'NC96.20','Strain or sprain of muscle, fascia or tendon of anterior muscle group at lower leg level','Y','2025-10-23 00:00:00'),(102305,11,'NA0A.10','Strain or sprain of muscle, fascia or tendon of head','Y','2025-10-23 00:00:00'),(102306,11,'NC76.00','Strain or sprain of muscle, fascia or tendon of hip','Y','2025-10-23 00:00:00'),(102307,11,'ND17.10','Strain or sprain of muscle, fascia or tendon of long extensor muscle of toe at ankle or foot level','Y','2025-10-23 00:00:00'),(102308,11,'ND17.00','Strain or sprain of muscle, fascia or tendon of long flexor muscle of toe at ankle or foot level','Y','2025-10-23 00:00:00'),(102309,11,'NC16.10','Strain or sprain of muscle, fascia or tendon of long head of biceps','Y','2025-10-23 00:00:00'),(102310,11,'NB94.1','Strain or sprain of muscle, fascia or tendon of lower back','Y','2025-10-23 00:00:00'),(102311,11,'NC16.20','Strain or sprain of muscle, fascia or tendon of other parts of biceps','Y','2025-10-23 00:00:00'),(102312,11,'NB94.2','Strain or sprain of muscle, fascia or tendon of pelvis','Y','2025-10-23 00:00:00'),(102313,11,'NC96.30','Strain or sprain of muscle, fascia or tendon of peroneal muscle group at lower leg level','Y','2025-10-23 00:00:00'),(102314,11,'NC76.30','Strain or sprain of muscle, fascia or tendon of the posterior muscle group at thigh level','Y','2025-10-23 00:00:00'),(102315,11,'NC16.30','Strain or sprain of muscle, fascia or tendon of triceps','Y','2025-10-23 00:00:00'),(102316,11,'NC36.50','Strain or sprain of other extensor muscle, fascia or tendon at forearm level','Y','2025-10-23 00:00:00'),(102317,11,'NC36.20','Strain or sprain of other flexor muscle, fascia or tendon at forearm level','Y','2025-10-23 00:00:00'),(102318,11,'ND14.73','Strain or sprain of other ligament of ankle','Y','2025-10-23 00:00:00'),(102319,11,'NC96.10','Strain or sprain of other muscle, fascia or tendon of posterior muscle group at lower leg level','Y','2025-10-23 00:00:00'),(102320,11,'ND14.A','Strain or sprain of other or unspecified parts of foot','Y','2025-10-23 00:00:00'),(102321,11,'NC93.7','Strain or sprain of other or unspecified parts of knee','Y','2025-10-23 00:00:00'),(102322,11,'NC13.8','Strain or sprain of other or unspecified parts of shoulder girdle','Y','2025-10-23 00:00:00'),(102323,11,'NA83.4Y','Strain or sprain of other specified site of ribs or sternum','Y','2025-10-23 00:00:00'),(102324,11,'NC93.61','Strain or sprain of posterior cruciate ligament of knee, excluding rupture','Y','2025-10-23 00:00:00'),(102325,11,'NC76.10','Strain or sprain of quadriceps muscle or tendon','Y','2025-10-23 00:00:00'),(102326,11,'NC54.61','Strain or sprain of radiocarpal joint','Y','2025-10-23 00:00:00'),(102327,11,'NA83.4','Strain or sprain of ribs or sternum','Y','2025-10-23 00:00:00'),(102328,11,'NA83.4Z','Strain or sprain of ribs or sternum, unspecified','Y','2025-10-23 00:00:00'),(102329,11,'NB53.6','Strain or sprain of sacroiliac joint','Y','2025-10-23 00:00:00'),(102330,11,'NC13.5','Strain or sprain of shoulder joint','Y','2025-10-23 00:00:00'),(102331,11,'NC13.7','Strain or sprain of sternoclavicular joint','Y','2025-10-23 00:00:00'),(102332,11,'NA83.41','Strain or sprain of sterno-clavicular joint or ligament','Y','2025-10-23 00:00:00'),(102333,11,'NA83.40','Strain or sprain of sternum','Y','2025-10-23 00:00:00'),(102334,11,'NC54.7','Strain or sprain of thumb','Y','2025-10-23 00:00:00'),(102335,11,'NC54.7Z','Strain or sprain of thumb, unspecified','Y','2025-10-23 00:00:00'),(102336,11,'NA23.5','Strain or sprain of thyroid region','Y','2025-10-23 00:00:00'),(102337,11,'ND14.72','Strain or sprain of tibiofibular ligament','Y','2025-10-23 00:00:00'),(102338,11,'ND14.8','Strain or sprain of toe','Y','2025-10-23 00:00:00'),(102339,11,'NC54.6','Strain or sprain of wrist','Y','2025-10-23 00:00:00'),(102340,11,'NC54.6Z','Strain or sprain of wrist, unspecified','Y','2025-10-23 00:00:00'),(102341,11,'XE4E4','Strain relief component of medical device','Y','2025-10-23 00:00:00'),(102342,11,'MF50.65','Straining to void','Y','2025-10-23 00:00:00'),(102343,11,'XM6LS6','Stramonium','Y','2025-10-23 00:00:00'),(102344,11,'XE4WS','Stranger','Y','2025-10-23 00:00:00'),(102345,11,'SA9Z','Strangury disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(102346,11,'XA9QS1','Stratum basale','Y','2025-10-23 00:00:00'),(102347,11,'XA5P21','Stratum corneum','Y','2025-10-23 00:00:00'),(102348,11,'XA4W90','Stratum granulosum','Y','2025-10-23 00:00:00'),(102349,11,'XA3G02','Stratum lucidum','Y','2025-10-23 00:00:00'),(102350,11,'XA8AM6','Stratum spinosum','Y','2025-10-23 00:00:00'),(102351,11,'XM7JV0','Strawberry poison dart frog poison','Y','2025-10-23 00:00:00'),(102352,11,'XE17F','Stream of water','Y','2025-10-23 00:00:00'),(102353,11,'XE8UX','Streetcar or tram as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(102354,11,'XE41E','Streetcar or tram as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(102355,11,'XE40X','Streetcar, tram, electric car, car trolley','Y','2025-10-23 00:00:00'),(102356,11,'1B90.1','Streptobacillosis','Y','2025-10-23 00:00:00'),(102357,11,'XN708','Streptobacillus','Y','2025-10-23 00:00:00'),(102358,11,'XN91U','Streptobacillus moniliformis','Y','2025-10-23 00:00:00'),(102359,11,'1B70.1','Streptococcal cellulitis of skin','Y','2025-10-23 00:00:00'),(102360,11,'1B73.0','Streptococcal ecthyma','Y','2025-10-23 00:00:00'),(102361,11,'1B71.0','Streptococcal necrotising fasciitis','Y','2025-10-23 00:00:00'),(102362,11,'1B51','Streptococcal pharyngitis','Y','2025-10-23 00:00:00'),(102363,11,'CA03.0','Streptococcal tonsillitis','Y','2025-10-23 00:00:00'),(102364,11,'1C45.0','Streptococcal toxic shock syndrome','Y','2025-10-23 00:00:00'),(102365,11,'EA50.1','Streptococcal toxin-mediated perineal erythema','Y','2025-10-23 00:00:00'),(102366,11,'XN3NM','Streptococcus','Y','2025-10-23 00:00:00'),(102367,11,'XN0KC','Streptococcus agalactiae','Y','2025-10-23 00:00:00'),(102368,11,'XN39R','Streptococcus anginosus','Y','2025-10-23 00:00:00'),(102369,11,'XN6KJ','Streptococcus bovis','Y','2025-10-23 00:00:00'),(102370,11,'XN3L7','Streptococcus canis','Y','2025-10-23 00:00:00'),(102371,11,'XN0FR','Streptococcus constellatus','Y','2025-10-23 00:00:00'),(102372,11,'XN8UN','Streptococcus dysgalactiae','Y','2025-10-23 00:00:00'),(102373,11,'XN625','Streptococcus equinus','Y','2025-10-23 00:00:00'),(102374,11,'XN4PA','Streptococcus iniae','Y','2025-10-23 00:00:00'),(102375,11,'XN67P','Streptococcus intermedius','Y','2025-10-23 00:00:00'),(102376,11,'XN5BP','Streptococcus mitis','Y','2025-10-23 00:00:00'),(102377,11,'XN2RH','Streptococcus mutans','Y','2025-10-23 00:00:00'),(102378,11,'XN4B2','Streptococcus oralis','Y','2025-10-23 00:00:00'),(102379,11,'XN18T','Streptococcus parasanguinis','Y','2025-10-23 00:00:00'),(102380,11,'XN58W','Streptococcus peroris','Y','2025-10-23 00:00:00'),(102381,11,'XN3PW','Streptococcus pneumoniae','Y','2025-10-23 00:00:00'),(102382,11,'MG51.1Y','Streptococcus pneumoniae resistant to other antibiotic','Y','2025-10-23 00:00:00'),(102383,11,'MG51.1Z','Streptococcus pneumoniae resistant to unspecified antibiotic','Y','2025-10-23 00:00:00'),(102384,11,'XN6KE','Streptococcus pseudopneumoniae','Y','2025-10-23 00:00:00'),(102385,11,'XN7YG','Streptococcus pyogenes','Y','2025-10-23 00:00:00'),(102386,11,'XN5DB','Streptococcus ratti','Y','2025-10-23 00:00:00'),(102387,11,'XN3BQ','Streptococcus salivarius','Y','2025-10-23 00:00:00'),(102388,11,'XN9FP','Streptococcus sanguinis','Y','2025-10-23 00:00:00'),(102389,11,'XN0XM','Streptococcus sobrinus','Y','2025-10-23 00:00:00'),(102390,11,'XN5SE','Streptococcus suis','Y','2025-10-23 00:00:00'),(102391,11,'XN4LM','Streptococcus thermophilus','Y','2025-10-23 00:00:00'),(102392,11,'XN1TV','Streptococcus uberis','Y','2025-10-23 00:00:00'),(102393,11,'XN0Z2','Streptococcus vestibularis','Y','2025-10-23 00:00:00'),(102394,11,'XN9LA','Streptococcus viridans','Y','2025-10-23 00:00:00'),(102395,11,'XN0TY','Streptococcus zooepidemicus','Y','2025-10-23 00:00:00'),(102396,11,'XN6LP','Streptococcus, group A','Y','2025-10-23 00:00:00'),(102397,11,'XN2M1','Streptococcus, group B','Y','2025-10-23 00:00:00'),(102398,11,'XN5KC','Streptococcus, group D','Y','2025-10-23 00:00:00'),(102399,11,'XM93U7','Streptodornase','Y','2025-10-23 00:00:00'),(102400,11,'XM7N64','Streptoduocin','Y','2025-10-23 00:00:00'),(102401,11,'XM69N7','Streptogramins','Y','2025-10-23 00:00:00'),(102402,11,'XM1AV3','Streptokinase','Y','2025-10-23 00:00:00'),(102403,11,'XM6T34','Streptomycin','Y','2025-10-23 00:00:00'),(102404,11,'XM32G0','Streptomycin derivative','Y','2025-10-23 00:00:00'),(102405,11,'XM6XD8','Streptomycin topical','Y','2025-10-23 00:00:00'),(102406,11,'XM4YK6','Streptonivicin','Y','2025-10-23 00:00:00'),(102407,11,'XM40X6','Streptovarycin','Y','2025-10-23 00:00:00'),(102408,11,'XM5GB0','Streptozocin','Y','2025-10-23 00:00:00'),(102409,11,'FB80.A','Stress fracture, not elsewhere classified','Y','2025-10-23 00:00:00'),(102410,11,'MF50.20','Stress incontinence','Y','2025-10-23 00:00:00'),(102411,11,'GC40.50','Stress Incontinence associated with pelvic organ prolapse','Y','2025-10-23 00:00:00'),(102412,11,'XE8V5','Stress problem with device identified','Y','2025-10-23 00:00:00'),(102413,11,'DA63.3','Stress ulcer of duodenum','Y','2025-10-23 00:00:00'),(102414,11,'DA60.3','Stress ulcer of stomach','Y','2025-10-23 00:00:00'),(102415,11,'QE01','Stress, not elsewhere classified','Y','2025-10-23 00:00:00'),(102416,11,'BC43.5','Stress-induced cardiomyopathy','Y','2025-10-23 00:00:00'),(102417,11,'6E40.4','Stress-related physiological response affecting disorders or diseases classified elsewhere','Y','2025-10-23 00:00:00'),(102418,11,'EE40.1','Stretch marks','Y','2025-10-23 00:00:00'),(102419,11,'EE40.1Y','Stretch marks of other specified aetiology','Y','2025-10-23 00:00:00'),(102420,11,'EE40.10','Stretch marks of pregnancy','Y','2025-10-23 00:00:00'),(102421,11,'XE5D0','Stretched','Y','2025-10-23 00:00:00'),(102422,11,'BD52.2','Stricture of artery','Y','2025-10-23 00:00:00'),(102423,11,'LB42.5','Stricture or atresia of vagina','Y','2025-10-23 00:00:00'),(102424,11,'GA15.4','Stricture or stenosis of cervix uteri','Y','2025-10-23 00:00:00'),(102425,11,'MD11.B','Stridor','Y','2025-10-23 00:00:00'),(102426,11,'PG81','Striking against stationary object of undetermined intent','Y','2025-10-23 00:00:00'),(102427,11,'XM83T2','Striped blenny fish venom','Y','2025-10-23 00:00:00'),(102428,11,'XM0784','Striped eel catfish venom','Y','2025-10-23 00:00:00'),(102429,11,'XM4FV5','Strobane','Y','2025-10-23 00:00:00'),(102430,11,'XM5W67','Strofantina','Y','2025-10-23 00:00:00'),(102431,11,'8B20','Stroke not known if ischaemic or haemorrhagic','Y','2025-10-23 00:00:00'),(102432,11,'XE2JL','Stroller as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(102433,11,'XE7KT','Stroller as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(102434,11,'XH49Y5','Stromal sarcoma, NOS','Y','2025-10-23 00:00:00'),(102435,11,'XH8747','Stromal tumour of uncertain malignant potential','Y','2025-10-23 00:00:00'),(102436,11,'XH8033','Stromal tumour with minor sex cord elements','Y','2025-10-23 00:00:00'),(102437,11,'XH2E97','Stromal tumour, benign','Y','2025-10-23 00:00:00'),(102438,11,'XH6R49','Stromal tumour, NOS','Y','2025-10-23 00:00:00'),(102439,11,'XN07X','Strongyloides','Y','2025-10-23 00:00:00'),(102440,11,'XN1KQ','Strongyloides stercoralis','Y','2025-10-23 00:00:00'),(102441,11,'1F6B','Strongyloidiasis','Y','2025-10-23 00:00:00'),(102442,11,'XM6U91','Strontium ranelate','Y','2025-10-23 00:00:00'),(102443,11,'XM9QZ9','Strophanthin-k','Y','2025-10-23 00:00:00'),(102444,11,'XM6GX1','Strophanthus glycosides','Y','2025-10-23 00:00:00'),(102445,11,'XM9834','Strophanthus gratus plant','Y','2025-10-23 00:00:00'),(102446,11,'XM2AW9','Strophantin','Y','2025-10-23 00:00:00'),(102447,11,'PH00','Struck by blunt object with undetermined intent','Y','2025-10-23 00:00:00'),(102448,11,'PG80','Struck by moving object, not elsewhere classified of undetermined intent','Y','2025-10-23 00:00:00'),(102449,11,'PG70','Struck by projectile from handgun of undetermined intent','Y','2025-10-23 00:00:00'),(102450,11,'PG7Z','Struck by projectile from other and unspecified firearm with unknown intent','Y','2025-10-23 00:00:00'),(102451,11,'PG71','Struck by projectile from rifle, shotgun or larger firearm of undetermined intent','Y','2025-10-23 00:00:00'),(102452,11,'PG61','Struck, kicked, or bumped with undetermined intent by animal','Y','2025-10-23 00:00:00'),(102453,11,'PG60','Struck, kicked, or bumped with undetermined intent by person','Y','2025-10-23 00:00:00'),(102454,11,'LD51','Structural anomalies of chromosome X, excluding Turner syndrome','Y','2025-10-23 00:00:00'),(102455,11,'LD53','Structural anomalies of chromosome Y','Y','2025-10-23 00:00:00'),(102456,11,'LA20','Structural anomaly of eustachian apparatus','Y','2025-10-23 00:00:00'),(102457,11,'XE8H1','Structural collapse','Y','2025-10-23 00:00:00'),(102458,11,'LB17','Structural developmental anomalies of anal canal','Y','2025-10-23 00:00:00'),(102459,11,'LB17.Z','Structural developmental anomalies of anal canal, unspecified','Y','2025-10-23 00:00:00'),(102460,11,'LB20.2','Structural developmental anomalies of bile ducts','Y','2025-10-23 00:00:00'),(102461,11,'LB20.2Z','Structural developmental anomalies of bile ducts, unspecified','Y','2025-10-23 00:00:00'),(102462,11,'LA74','Structural developmental anomalies of bronchi','Y','2025-10-23 00:00:00'),(102463,11,'LA74.Z','Structural developmental anomalies of bronchi, unspecified','Y','2025-10-23 00:00:00'),(102464,11,'LB43','Structural developmental anomalies of cervix uteri','Y','2025-10-23 00:00:00'),(102465,11,'LB43.Z','Structural developmental anomalies of cervix uteri, unspecified','Y','2025-10-23 00:00:00'),(102466,11,'LB73.1','Structural developmental anomalies of chest wall','Y','2025-10-23 00:00:00'),(102467,11,'LB73.1Z','Structural developmental anomalies of chest wall, unspecified','Y','2025-10-23 00:00:00'),(102468,11,'LB41','Structural developmental anomalies of clitoris','Y','2025-10-23 00:00:00'),(102469,11,'LB41.Z','Structural developmental anomalies of clitoris, unspecified','Y','2025-10-23 00:00:00'),(102470,11,'LA11.1','Structural developmental anomalies of cornea','Y','2025-10-23 00:00:00'),(102471,11,'LB70','Structural developmental anomalies of cranium','Y','2025-10-23 00:00:00'),(102472,11,'LB70.Z','Structural developmental anomalies of cranium, unspecified','Y','2025-10-23 00:00:00'),(102473,11,'LB20.23','Structural developmental anomalies of cystic duct','Y','2025-10-23 00:00:00'),(102474,11,'LB00','Structural developmental anomalies of diaphragm','Y','2025-10-23 00:00:00'),(102475,11,'LB00.Z','Structural developmental anomalies of diaphragm, unspecified','Y','2025-10-23 00:00:00'),(102476,11,'LB14','Structural developmental anomalies of duodenum','Y','2025-10-23 00:00:00'),(102477,11,'LA22','Structural developmental anomalies of ear causing hearing impairment','Y','2025-10-23 00:00:00'),(102478,11,'LA22.Z','Structural developmental anomalies of ear causing hearing impairment, unspecified','Y','2025-10-23 00:00:00'),(102479,11,'LA22.3','Structural developmental anomalies of ear ossicles','Y','2025-10-23 00:00:00'),(102480,11,'LA14','Structural developmental anomalies of eyelid, lacrimal apparatus or orbit','Y','2025-10-23 00:00:00'),(102481,11,'LA14.Z','Structural developmental anomalies of eyelid, lacrimal apparatus or orbit, unspecified','Y','2025-10-23 00:00:00'),(102482,11,'LA14.0','Structural developmental anomalies of eyelids','Y','2025-10-23 00:00:00'),(102483,11,'LB71','Structural developmental anomalies of facial bones','Y','2025-10-23 00:00:00'),(102484,11,'LB71.Z','Structural developmental anomalies of facial bones, unspecified','Y','2025-10-23 00:00:00'),(102485,11,'LB20.1','Structural developmental anomalies of gallbladder','Y','2025-10-23 00:00:00'),(102486,11,'LB20','Structural developmental anomalies of gallbladder, bile ducts or liver','Y','2025-10-23 00:00:00'),(102487,11,'LB20.Z','Structural developmental anomalies of gallbladder, bile ducts or liver, unspecified','Y','2025-10-23 00:00:00'),(102488,11,'LB20.1Z','Structural developmental anomalies of gallbladder, unspecified','Y','2025-10-23 00:00:00'),(102489,11,'LA22.4','Structural developmental anomalies of inner ear','Y','2025-10-23 00:00:00'),(102490,11,'LB30','Structural developmental anomalies of kidneys','Y','2025-10-23 00:00:00'),(102491,11,'LB30.Z','Structural developmental anomalies of kidneys, unspecified','Y','2025-10-23 00:00:00'),(102492,11,'LA14.1','Structural developmental anomalies of lacrimal apparatus','Y','2025-10-23 00:00:00'),(102493,11,'LA14.1Z','Structural developmental anomalies of lacrimal apparatus, unspecified','Y','2025-10-23 00:00:00'),(102494,11,'LB16','Structural developmental anomalies of large intestine','Y','2025-10-23 00:00:00'),(102495,11,'LB16.Z','Structural developmental anomalies of large intestine, unspecified','Y','2025-10-23 00:00:00'),(102496,11,'LA71','Structural developmental anomalies of larynx','Y','2025-10-23 00:00:00'),(102497,11,'LA71.Z','Structural developmental anomalies of larynx, unspecified','Y','2025-10-23 00:00:00'),(102498,11,'LA12','Structural developmental anomalies of lens or zonula','Y','2025-10-23 00:00:00'),(102499,11,'LA12.Z','Structural developmental anomalies of lens or zonula, unspecified','Y','2025-10-23 00:00:00'),(102500,11,'LB20.0','Structural developmental anomalies of liver','Y','2025-10-23 00:00:00'),(102501,11,'LB20.0Z','Structural developmental anomalies of liver, unspecified','Y','2025-10-23 00:00:00'),(102502,11,'LA75','Structural developmental anomalies of lungs','Y','2025-10-23 00:00:00'),(102503,11,'LA75.Z','Structural developmental anomalies of lungs, unspecified','Y','2025-10-23 00:00:00'),(102504,11,'LA31','Structural developmental anomalies of mouth or tongue','Y','2025-10-23 00:00:00'),(102505,11,'LA10','Structural developmental anomalies of ocular globes','Y','2025-10-23 00:00:00'),(102506,11,'LA10.Z','Structural developmental anomalies of ocular globes, unspecified','Y','2025-10-23 00:00:00'),(102507,11,'LB12','Structural developmental anomalies of oesophagus','Y','2025-10-23 00:00:00'),(102508,11,'LB12.Z','Structural developmental anomalies of oesophagus, unspecified','Y','2025-10-23 00:00:00'),(102509,11,'LA14.2','Structural developmental anomalies of orbit','Y','2025-10-23 00:00:00'),(102510,11,'LB45','Structural developmental anomalies of ovaries, fallopian tubes or broad ligaments','Y','2025-10-23 00:00:00'),(102511,11,'LB45.Z','Structural developmental anomalies of ovaries, fallopian tubes or broad ligaments, unspecified','Y','2025-10-23 00:00:00'),(102512,11,'LB21','Structural developmental anomalies of pancreas','Y','2025-10-23 00:00:00'),(102513,11,'LB21.Z','Structural developmental anomalies of pancreas, unspecified','Y','2025-10-23 00:00:00'),(102514,11,'LB74','Structural developmental anomalies of pelvic girdle','Y','2025-10-23 00:00:00'),(102515,11,'LB74.Z','Structural developmental anomalies of pelvic girdle, unspecified','Y','2025-10-23 00:00:00'),(102516,11,'LA76','Structural developmental anomalies of pleura','Y','2025-10-23 00:00:00'),(102517,11,'LB10','Structural developmental anomalies of salivary glands or ducts','Y','2025-10-23 00:00:00'),(102518,11,'LB72','Structural developmental anomalies of shoulder girdle','Y','2025-10-23 00:00:00'),(102519,11,'LB72.Z','Structural developmental anomalies of shoulder girdle, unspecified','Y','2025-10-23 00:00:00'),(102520,11,'LB15','Structural developmental anomalies of small intestine','Y','2025-10-23 00:00:00'),(102521,11,'LB15.Z','Structural developmental anomalies of small intestine, unspecified','Y','2025-10-23 00:00:00'),(102522,11,'LB73.2','Structural developmental anomalies of spine','Y','2025-10-23 00:00:00'),(102523,11,'LB73','Structural developmental anomalies of spine or bony thorax','Y','2025-10-23 00:00:00'),(102524,11,'LB73.Z','Structural developmental anomalies of spine or bony thorax, unspecified','Y','2025-10-23 00:00:00'),(102525,11,'LB73.2Z','Structural developmental anomalies of spine, unspecified','Y','2025-10-23 00:00:00'),(102526,11,'LB22','Structural developmental anomalies of spleen','Y','2025-10-23 00:00:00'),(102527,11,'LB22.Z','Structural developmental anomalies of spleen, unspecified','Y','2025-10-23 00:00:00'),(102528,11,'LB73.13','Structural developmental anomalies of sternum','Y','2025-10-23 00:00:00'),(102529,11,'LB13','Structural developmental anomalies of stomach','Y','2025-10-23 00:00:00'),(102530,11,'LB13.Z','Structural developmental anomalies of stomach, unspecified','Y','2025-10-23 00:00:00'),(102531,11,'LA30','Structural developmental anomalies of teeth and periodontal tissues','Y','2025-10-23 00:00:00'),(102532,11,'LA30.Z','Structural developmental anomalies of teeth and periodontal tissues, unspecified','Y','2025-10-23 00:00:00'),(102533,11,'LC8Z','Structural developmental anomalies of the adrenal glands, unspecified','Y','2025-10-23 00:00:00'),(102534,11,'LA11','Structural developmental anomalies of the anterior segment of eye','Y','2025-10-23 00:00:00'),(102535,11,'LA11.Z','Structural developmental anomalies of the anterior segment of eye, unspecified','Y','2025-10-23 00:00:00'),(102536,11,'LB6Z','Structural developmental anomalies of the breast, unspecified','Y','2025-10-23 00:00:00'),(102537,11,'LA9Z','Structural developmental anomalies of the circulatory system, unspecified','Y','2025-10-23 00:00:00'),(102538,11,'LB0Z','Structural developmental anomalies of the diaphragm, abdominal wall or umbilical cord, unspecified','Y','2025-10-23 00:00:00'),(102539,11,'LB1Z','Structural developmental anomalies of the digestive tract, unspecified','Y','2025-10-23 00:00:00'),(102540,11,'LA2Z','Structural developmental anomalies of the ear, unspecified','Y','2025-10-23 00:00:00'),(102541,11,'LA1Z','Structural developmental anomalies of the eye, eyelid or lacrimal apparatus, unspecified','Y','2025-10-23 00:00:00'),(102542,11,'LA5Z','Structural developmental anomalies of the face, unspecified','Y','2025-10-23 00:00:00'),(102543,11,'LB4Z','Structural developmental anomalies of the female genital system, unspecified','Y','2025-10-23 00:00:00'),(102544,11,'LB2Z','Structural developmental anomalies of the liver, biliary tract, pancreas or spleen, unspecified','Y','2025-10-23 00:00:00'),(102545,11,'LB5Z','Structural developmental anomalies of the male genital system, unspecified','Y','2025-10-23 00:00:00'),(102546,11,'LA6Z','Structural developmental anomalies of the neck, unspecified','Y','2025-10-23 00:00:00'),(102547,11,'LA0Z','Structural developmental anomalies of the nervous system, unspecified','Y','2025-10-23 00:00:00'),(102548,11,'LA07','Structural developmental anomalies of the neurenteric canal, spinal cord or vertebral column','Y','2025-10-23 00:00:00'),(102549,11,'LA07.Z','Structural developmental anomalies of the neurenteric canal, spinal cord or vertebral column, unspecified','Y','2025-10-23 00:00:00'),(102550,11,'LA70','Structural developmental anomalies of the nose or cavum','Y','2025-10-23 00:00:00'),(102551,11,'LA70.Z','Structural developmental anomalies of the nose or cavum, unspecified','Y','2025-10-23 00:00:00'),(102552,11,'LA90','Structural developmental anomalies of the peripheral vascular system','Y','2025-10-23 00:00:00'),(102553,11,'LA90.Z','Structural developmental anomalies of the peripheral vascular system, unspecified','Y','2025-10-23 00:00:00'),(102554,11,'LA13','Structural developmental anomalies of the posterior segment of eye','Y','2025-10-23 00:00:00'),(102555,11,'LA13.Z','Structural developmental anomalies of the posterior segment of eye, unspecified','Y','2025-10-23 00:00:00'),(102556,11,'LA7Z','Structural developmental anomalies of the respiratory system, unspecified','Y','2025-10-23 00:00:00'),(102557,11,'LB9Z','Structural developmental anomalies of the skeleton, unspecified','Y','2025-10-23 00:00:00'),(102558,11,'LC7Z','Structural developmental anomalies of the skin, unspecified','Y','2025-10-23 00:00:00'),(102559,11,'LB3Z','Structural developmental anomalies of the urinary system, unspecified','Y','2025-10-23 00:00:00'),(102560,11,'LA73','Structural developmental anomalies of trachea','Y','2025-10-23 00:00:00'),(102561,11,'LA73.Z','Structural developmental anomalies of trachea, unspecified','Y','2025-10-23 00:00:00'),(102562,11,'LB03','Structural developmental anomalies of umbilical cord','Y','2025-10-23 00:00:00'),(102563,11,'LB03.Z','Structural developmental anomalies of umbilical cord, unspecified','Y','2025-10-23 00:00:00'),(102564,11,'LB31','Structural developmental anomalies of urinary tract','Y','2025-10-23 00:00:00'),(102565,11,'LB31.Z','Structural developmental anomalies of urinary tract, unspecified','Y','2025-10-23 00:00:00'),(102566,11,'LB44','Structural developmental anomalies of uterus, except cervix','Y','2025-10-23 00:00:00'),(102567,11,'LB44.Z','Structural developmental anomalies of uterus, except cervix, unspecified','Y','2025-10-23 00:00:00'),(102568,11,'LB42','Structural developmental anomalies of vagina','Y','2025-10-23 00:00:00'),(102569,11,'LB42.Z','Structural developmental anomalies of vagina, unspecified','Y','2025-10-23 00:00:00'),(102570,11,'LB40','Structural developmental anomalies of vulva','Y','2025-10-23 00:00:00'),(102571,11,'LB40.Z','Structural developmental anomalies of vulva, unspecified','Y','2025-10-23 00:00:00'),(102572,11,'LD0Z','Structural developmental anomalies primarily affecting one body system, unspecified','Y','2025-10-23 00:00:00'),(102573,11,'LA8Z','Structural developmental anomaly of heart or great vessels, unspecified','Y','2025-10-23 00:00:00'),(102574,11,'QA60','Structural device failure without injury or harm','Y','2025-10-23 00:00:00'),(102575,11,'PL12.0','Structural device failure, as mode of injury or harm','Y','2025-10-23 00:00:00'),(102576,11,'FA7Z','Structural disorders of spine, unspecified','Y','2025-10-23 00:00:00'),(102577,11,'LA11.6','Structural disorders of the pupil','Y','2025-10-23 00:00:00'),(102578,11,'LA11.6Z','Structural disorders of the pupil, unspecified','Y','2025-10-23 00:00:00'),(102579,11,'XE79Q','Structural problem','Y','2025-10-23 00:00:00'),(102580,11,'XH5PU7','Struma ovarii, malignant','Y','2025-10-23 00:00:00'),(102581,11,'XH22M4','Struma ovarii, NOS','Y','2025-10-23 00:00:00'),(102582,11,'XH2XW3','Strumal carcinoid','Y','2025-10-23 00:00:00'),(102583,11,'XM5421','Strychnine','Y','2025-10-23 00:00:00'),(102584,11,'XM20G5','Strychnine medicinal','Y','2025-10-23 00:00:00'),(102585,11,'XM9JS2','Strychnine rodenticide','Y','2025-10-23 00:00:00'),(102586,11,'MB28.G','Stubbornness','Y','2025-10-23 00:00:00'),(102587,11,'PG68','Stung or envenomated with undetermined intent by animal','Y','2025-10-23 00:00:00'),(102588,11,'5B53','Stunting in infants, children or adolescents','Y','2025-10-23 00:00:00'),(102589,11,'MB20.0','Stupor','Y','2025-10-23 00:00:00'),(102590,11,'XE3GN','Stylet component of medical device','Y','2025-10-23 00:00:00'),(102591,11,'XA5L15','Styloglossus muscle','Y','2025-10-23 00:00:00'),(102592,11,'XA90J0','Styloglossus tendon','Y','2025-10-23 00:00:00'),(102593,11,'XA36Y9','Stylohyoid branch of the facial nerve','Y','2025-10-23 00:00:00'),(102594,11,'XA1TY3','Stylohyoid muscle','Y','2025-10-23 00:00:00'),(102595,11,'XA20E0','Stylohyoid tendon','Y','2025-10-23 00:00:00'),(102596,11,'XA3MH2','Styloid process of radius','Y','2025-10-23 00:00:00'),(102597,11,'XA05C5','Styloid process of the ulna','Y','2025-10-23 00:00:00'),(102598,11,'XA4WM3','Stylomandibular ligament','Y','2025-10-23 00:00:00'),(102599,11,'XA4XY4','Stylomastoid vein','Y','2025-10-23 00:00:00'),(102600,11,'XA9AM5','Stylopharyngeus muscle','Y','2025-10-23 00:00:00'),(102601,11,'XA7GV2','Stylopharyngeus tendon','Y','2025-10-23 00:00:00'),(102602,11,'XM3KM3','Styramate','Y','2025-10-23 00:00:00'),(102603,11,'XM5V50','Styrene','Y','2025-10-23 00:00:00'),(102604,11,'XT1L','Subacute','Y','2025-10-23 00:00:00'),(102605,11,'EB50','Subacute cutaneous lupus erythematosus','Y','2025-10-23 00:00:00'),(102606,11,'8C01.2','Subacute inflammatory demyelinating polyneuropathy','Y','2025-10-23 00:00:00'),(102607,11,'XH6QV5','Subacute leukaemia, NOS','Y','2025-10-23 00:00:00'),(102608,11,'EA91.6','Subacute lichen planus','Y','2025-10-23 00:00:00'),(102609,11,'XH8GQ0','Subacute lymphoid leukaemia','Y','2025-10-23 00:00:00'),(102610,11,'XH1S60','Subacute monocytic leukaemia','Y','2025-10-23 00:00:00'),(102611,11,'XH7DF6','Subacute myeloid leukaemia','Y','2025-10-23 00:00:00'),(102612,11,'8A45.21','Subacute necrotising myelitis','Y','2025-10-23 00:00:00'),(102613,11,'GA02.2','Subacute or chronic vaginitis','Y','2025-10-23 00:00:00'),(102614,11,'FB84.2','Subacute osteomyelitis','Y','2025-10-23 00:00:00'),(102615,11,'8A45.01','Subacute sclerosing panencephalitis','Y','2025-10-23 00:00:00'),(102616,11,'5A03.1','Subacute thyroiditis','Y','2025-10-23 00:00:00'),(102617,11,'GA00.1','Subacute, chronic or recurrent vulvitis','Y','2025-10-23 00:00:00'),(102618,11,'8B01','Subarachnoid haemorrhage','Y','2025-10-23 00:00:00'),(102619,11,'KA40.04','Subarachnoid haemorrhage due to birth injury','Y','2025-10-23 00:00:00'),(102620,11,'8B01.2','Subarachnoid haemorrhage not known if aneurysmal or non-aneurysmal','Y','2025-10-23 00:00:00'),(102621,11,'KA82.5','Subarachnoid nontraumatic haemorrhage of fetus or newborn','Y','2025-10-23 00:00:00'),(102622,11,'XA1XM6','Subarachnoid space','Y','2025-10-23 00:00:00'),(102623,11,'9B10.23','Subcapsular glaucomatous flecks','Y','2025-10-23 00:00:00'),(102624,11,'XA5D68','Subclavian artery','Y','2025-10-23 00:00:00'),(102625,11,'XA9CD6','Subclavian lymphatic trunk','Y','2025-10-23 00:00:00'),(102626,11,'8B22.A','Subclavian steal syndrome','Y','2025-10-23 00:00:00'),(102627,11,'XA6YT2','Subclavian vein','Y','2025-10-23 00:00:00'),(102628,11,'XA1N88','Subclavicular axillary lymph node','Y','2025-10-23 00:00:00'),(102629,11,'XA7V30','Subclavius tendon','Y','2025-10-23 00:00:00'),(102630,11,'XT1T','Subclinical','Y','2025-10-23 00:00:00'),(102631,11,'CA25.2','Subclinical cystic fibrosis','Y','2025-10-23 00:00:00'),(102632,11,'5A00.22','Subclinical iodine-deficiency hypothyroidism','Y','2025-10-23 00:00:00'),(102633,11,'XA7919','Subcondylar process of mandible','Y','2025-10-23 00:00:00'),(102634,11,'XA3311','Subcostal artery','Y','2025-10-23 00:00:00'),(102635,11,'XA3RU6','Subcostal nerve','Y','2025-10-23 00:00:00'),(102636,11,'XA3568','Subcostal vein','Y','2025-10-23 00:00:00'),(102637,11,'XA44Y8','Subcostalis muscle','Y','2025-10-23 00:00:00'),(102638,11,'XA8WS6','Subcostalis tendon','Y','2025-10-23 00:00:00'),(102639,11,'1F66.4','Subcutaneous dirofilariasis','Y','2025-10-23 00:00:00'),(102640,11,'XA5CS6','Subcutaneous fat','Y','2025-10-23 00:00:00'),(102641,11,'KA43.2','Subcutaneous fat necrosis due to birth injury','Y','2025-10-23 00:00:00'),(102642,11,'KC22.0','Subcutaneous fat necrosis of the newborn','Y','2025-10-23 00:00:00'),(102643,11,'EF02.1','Subcutaneous lipomatosis','Y','2025-10-23 00:00:00'),(102644,11,'EA60.0','Subcutaneous mycoses','Y','2025-10-23 00:00:00'),(102645,11,'XH3NV1','Subcutaneous panniculitis-like T-cell lymphoma','Y','2025-10-23 00:00:00'),(102646,11,'2B00','Subcutaneous panniculitis-like T-cell lymphoma','Y','2025-10-23 00:00:00'),(102647,11,'ME61','Subcutaneous swelling, mass or lump of uncertain or unspecified nature','Y','2025-10-23 00:00:00'),(102648,11,'KA40.00','Subdural haemorrhage due to birth injury','Y','2025-10-23 00:00:00'),(102649,11,'1D05.1','Subdural infectious cyst','Y','2025-10-23 00:00:00'),(102650,11,'KA82.7','Subdural nontraumatic haemorrhage of fetus or newborn','Y','2025-10-23 00:00:00'),(102651,11,'XA1FQ8','Subdural space','Y','2025-10-23 00:00:00'),(102652,11,'XH1L48','Subependymal giant cell astrocytoma','Y','2025-10-23 00:00:00'),(102653,11,'XH8FZ9','Subependymoma','Y','2025-10-23 00:00:00'),(102654,11,'CA70.3','Suberosis','Y','2025-10-23 00:00:00'),(102655,11,'KA42.4','Subgaleal epicranial subaponeurotic haemorrhage due to birth injury','Y','2025-10-23 00:00:00'),(102656,11,'XA25B1','Subglottic larynx','Y','2025-10-23 00:00:00'),(102657,11,'XA4RT0','Subinguinal lymph node','Y','2025-10-23 00:00:00'),(102658,11,'9D5Z','Subjective visual experiences, unspecified','Y','2025-10-23 00:00:00'),(102659,11,'XA51Q9','Sublingual gland','Y','2025-10-23 00:00:00'),(102660,11,'XA1J93','Sublingual gland duct','Y','2025-10-23 00:00:00'),(102661,11,'XA8027','Sublingual lymph node','Y','2025-10-23 00:00:00'),(102662,11,'BD75.0','Sublingual varices','Y','2025-10-23 00:00:00'),(102663,11,'XA7K99','Sublingual vein','Y','2025-10-23 00:00:00'),(102664,11,'JA65.7','Subluxation of symphysis pubis in pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(102665,11,'NA0D.11','Subluxation of tooth','Y','2025-10-23 00:00:00'),(102666,11,'ME93.1','Subluxation stenosis of neural canal','Y','2025-10-23 00:00:00'),(102667,11,'XA74N6','Submandibular ganglion','Y','2025-10-23 00:00:00'),(102668,11,'XA9Q61','Submandibular gland','Y','2025-10-23 00:00:00'),(102669,11,'XA7GY0','Submandibular gland duct','Y','2025-10-23 00:00:00'),(102670,11,'XA9E80','Submandibular lymph node','Y','2025-10-23 00:00:00'),(102671,11,'XA0MP5','Submandibular region','Y','2025-10-23 00:00:00'),(102672,11,'XE4FF','Submarine as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(102673,11,'XE4UQ','Submarine or related craft','Y','2025-10-23 00:00:00'),(102674,11,'XA7ZY4','Submaxillary vein','Y','2025-10-23 00:00:00'),(102675,11,'XA90T0','Submental artery of the cervical artery','Y','2025-10-23 00:00:00'),(102676,11,'XA42P9','Submental lymph node','Y','2025-10-23 00:00:00'),(102677,11,'XA5TZ1','Submental region','Y','2025-10-23 00:00:00'),(102678,11,'XA1LD6','Submental vein','Y','2025-10-23 00:00:00'),(102679,11,'MB28.H','Submissiveness','Y','2025-10-23 00:00:00'),(102680,11,'XA0Z50','Suboccipital nerve','Y','2025-10-23 00:00:00'),(102681,11,'XA1Q47','Subparotid lymph node','Y','2025-10-23 00:00:00'),(102682,11,'XA1RP0','Subpyloric lymph node','Y','2025-10-23 00:00:00'),(102683,11,'XA2YJ5','Subscapular artery','Y','2025-10-23 00:00:00'),(102684,11,'XA9R12','Subscapular lymph node','Y','2025-10-23 00:00:00'),(102685,11,'GB80.2','Subscapular or perirenal urinoma','Y','2025-10-23 00:00:00'),(102686,11,'XA8WJ4','Subscapular vein','Y','2025-10-23 00:00:00'),(102687,11,'XA1QF1','Subscapularis muscle','Y','2025-10-23 00:00:00'),(102688,11,'XA54N6','Subscapularis tendon','Y','2025-10-23 00:00:00'),(102689,11,'XY8S','Subsequent encounter','Y','2025-10-23 00:00:00'),(102690,11,'BA42','Subsequent myocardial infarction','Y','2025-10-23 00:00:00'),(102691,11,'BA42.1','Subsequent myocardial infarction, non-ST elevation myocardial infarction','Y','2025-10-23 00:00:00'),(102692,11,'BA42.0','Subsequent myocardial infarction, ST elevation myocardial infarction','Y','2025-10-23 00:00:00'),(102693,11,'BA42.Z','Subsequent myocardial infarction, unspecified','Y','2025-10-23 00:00:00'),(102694,11,'XM5NH2','Substance of marine plant origin, not elsewhere classified','Y','2025-10-23 00:00:00'),(102695,11,'PL0Z','Substances associated with injury or harm in therapeutic use, unspecified','Y','2025-10-23 00:00:00'),(102696,11,'XM5YE8','Substituted alkylamines','Y','2025-10-23 00:00:00'),(102697,11,'XM9MB0','Substituted ethylene diamines','Y','2025-10-23 00:00:00'),(102698,11,'XA7SZ8','Subtalar joint','Y','2025-10-23 00:00:00'),(102699,11,'NC72.4','Subtrochanteric fracture of femur','Y','2025-10-23 00:00:00'),(102700,11,'XA5EL8','Subtrochanteric line of femur','Y','2025-10-23 00:00:00'),(102701,11,'XH1XL9','Subungual exostosis','Y','2025-10-23 00:00:00'),(102702,11,'XH8EN1','Succinate dehydrogenase deficient renal cell carcinoma','Y','2025-10-23 00:00:00'),(102703,11,'XM6VX1','Succinimide','Y','2025-10-23 00:00:00'),(102704,11,'XM3C23','Succinimide derivatives','Y','2025-10-23 00:00:00'),(102705,11,'XM85A7','Succinylsulfathiazole','Y','2025-10-23 00:00:00'),(102706,11,'XM0044','Sucralfate','Y','2025-10-23 00:00:00'),(102707,11,'XM9188','Sucroferric oxyhydroxide','Y','2025-10-23 00:00:00'),(102708,11,'XM9Y86','Sucrose','Y','2025-10-23 00:00:00'),(102709,11,'XE5FE','Suction failure','Y','2025-10-23 00:00:00'),(102710,11,'XE69E','Suction problem','Y','2025-10-23 00:00:00'),(102711,11,'XN13U','Sudan virus','Y','2025-10-23 00:00:00'),(102712,11,'1D60.02','Sudan virus disease','Y','2025-10-23 00:00:00'),(102713,11,'BC64','Sudden arrhythmic death syndrome','Y','2025-10-23 00:00:00'),(102714,11,'SC80','Sudden deafness disorder (TM1)','Y','2025-10-23 00:00:00'),(102715,11,'AB55','Sudden idiopathic hearing loss','Y','2025-10-23 00:00:00'),(102716,11,'MH11','Sudden infant death syndrome','Y','2025-10-23 00:00:00'),(102717,11,'MH11.0','Sudden infant death syndrome with mention of autopsy','Y','2025-10-23 00:00:00'),(102718,11,'MH11.1','Sudden infant death syndrome without autopsy','Y','2025-10-23 00:00:00'),(102719,11,'MH11.Z','Sudden infant death syndrome, unspecified','Y','2025-10-23 00:00:00'),(102720,11,'XE5FP','Sudden movement of vehicle, without collision, resulting in injury','Y','2025-10-23 00:00:00'),(102721,11,'MH15','Sudden unexpected death in epilepsy','Y','2025-10-23 00:00:00'),(102722,11,'XM1EF3','Sufentanil','Y','2025-10-23 00:00:00'),(102723,11,'XM9NQ8','Sugammadex','Y','2025-10-23 00:00:00'),(102724,11,'MB23.S','Suicidal behaviour','Y','2025-10-23 00:00:00'),(102725,11,'MB26.A','Suicidal ideation','Y','2025-10-23 00:00:00'),(102726,11,'MB23.R','Suicide attempt','Y','2025-10-23 00:00:00'),(102727,11,'XM3Y87','Sulbactam','Y','2025-10-23 00:00:00'),(102728,11,'XM3S35','Sulbenicillin','Y','2025-10-23 00:00:00'),(102729,11,'XM2237','Sulbentine','Y','2025-10-23 00:00:00'),(102730,11,'XM42G9','sulbutiamine','Y','2025-10-23 00:00:00'),(102731,11,'XM2NB3','Sulconazole','Y','2025-10-23 00:00:00'),(102732,11,'XM2CH0','Sulfacetamide','Y','2025-10-23 00:00:00'),(102733,11,'XM69G3','Sulfachlorpyridazine','Y','2025-10-23 00:00:00'),(102734,11,'XM5C46','Sulfacitine','Y','2025-10-23 00:00:00'),(102735,11,'XM12D1','Sulfadiazine','Y','2025-10-23 00:00:00'),(102736,11,'XM1UR3','Sulfadiazine and tetroxoprim','Y','2025-10-23 00:00:00'),(102737,11,'XM18A9','Sulfadiazine and trimethoprim','Y','2025-10-23 00:00:00'),(102738,11,'XM3G39','Sulfadicramide','Y','2025-10-23 00:00:00'),(102739,11,'XM3ER6','Sulfadimethoxine','Y','2025-10-23 00:00:00'),(102740,11,'XM4WW1','Sulfadimidine and trimethoprim','Y','2025-10-23 00:00:00'),(102741,11,'XM57L7','Sulfadoxine','Y','2025-10-23 00:00:00'),(102742,11,'XM03X3','Sulfaethidole','Y','2025-10-23 00:00:00'),(102743,11,'XM13T1','Sulfafenazol','Y','2025-10-23 00:00:00'),(102744,11,'XM0F36','Sulfaguanidine','Y','2025-10-23 00:00:00'),(102745,11,'XM8LL9','Sulfalene','Y','2025-10-23 00:00:00'),(102746,11,'XM6N26','Sulfaloxate','Y','2025-10-23 00:00:00'),(102747,11,'XM57M8','Sulfaloxic acid','Y','2025-10-23 00:00:00'),(102748,11,'XM0ZN8','Sulfamazone','Y','2025-10-23 00:00:00'),(102749,11,'XM7R74','Sulfamerazine','Y','2025-10-23 00:00:00'),(102750,11,'XM3Y04','Sulfamerazine and trimethoprim','Y','2025-10-23 00:00:00'),(102751,11,'XM8UP5','Sulfameter','Y','2025-10-23 00:00:00'),(102752,11,'XM0XY9','Sulfamethizole','Y','2025-10-23 00:00:00'),(102753,11,'XM7XJ2','Sulfamethoxypyridazine','Y','2025-10-23 00:00:00'),(102754,11,'XM5X85','Sulfamethylthiazole','Y','2025-10-23 00:00:00'),(102755,11,'XM95D0','Sulfametomidine','Y','2025-10-23 00:00:00'),(102756,11,'XM87N2','Sulfametrole and trimethoprim','Y','2025-10-23 00:00:00'),(102757,11,'XM1SG0','Sulfamidopyrine','Y','2025-10-23 00:00:00'),(102758,11,'XM6D90','Sulfamonomethoxine','Y','2025-10-23 00:00:00'),(102759,11,'XM43U3','Sulfamoxole','Y','2025-10-23 00:00:00'),(102760,11,'XM4008','Sulfamoxole and trimethoprim','Y','2025-10-23 00:00:00'),(102761,11,'XM72K1','Sulfanilamide','Y','2025-10-23 00:00:00'),(102762,11,'XM92E0','Sulfaperin','Y','2025-10-23 00:00:00'),(102763,11,'XM1G41','Sulfaphenazole','Y','2025-10-23 00:00:00'),(102764,11,'XM2187','Sulfaphenylthiazole','Y','2025-10-23 00:00:00'),(102765,11,'XM8QW8','Sulfaproxyline','Y','2025-10-23 00:00:00'),(102766,11,'XM72R1','Sulfapyridine','Y','2025-10-23 00:00:00'),(102767,11,'XM80F6','Sulfarsphenamine','Y','2025-10-23 00:00:00'),(102768,11,'XM2XQ2','Sulfasalazine','Y','2025-10-23 00:00:00'),(102769,11,'XM9MJ3','Sulfasuxidine','Y','2025-10-23 00:00:00'),(102770,11,'XM2Y59','Sulfasymazine','Y','2025-10-23 00:00:00'),(102771,11,'XM7AL9','Sulfated amylopectin','Y','2025-10-23 00:00:00'),(102772,11,'XM3G53','Sulfathiazole','Y','2025-10-23 00:00:00'),(102773,11,'XM4L44','Sulfathiourea','Y','2025-10-23 00:00:00'),(102774,11,'XM3DK8','Sulfatostearate','Y','2025-10-23 00:00:00'),(102775,11,'XM7K05','Sulfinpyrazone','Y','2025-10-23 00:00:00'),(102776,11,'XM06Y3','Sulfiram','Y','2025-10-23 00:00:00'),(102777,11,'XM6BM7','Sulfisomidine','Y','2025-10-23 00:00:00'),(102778,11,'XM9TQ5','Sulfisoxazole','Y','2025-10-23 00:00:00'),(102779,11,'XM8A14','Sulfisoxazole ophthalmic preparation','Y','2025-10-23 00:00:00'),(102780,11,'XM1XE0','Sulfobromophthalein','Y','2025-10-23 00:00:00'),(102781,11,'XM1PU5','Sulfogaiacol','Y','2025-10-23 00:00:00'),(102782,11,'XM4F54','Sulfomyxin','Y','2025-10-23 00:00:00'),(102783,11,'XM81Z5','Sulfonal','Y','2025-10-23 00:00:00'),(102784,11,'MG51.11','Sulfonamide and trimethoprim resistant Streptococcus pneumoniae','Y','2025-10-23 00:00:00'),(102785,11,'XM9PG5','Sulfonamide eye','Y','2025-10-23 00:00:00'),(102786,11,'MG50.20','Sulfonamide or trimethoprim resistant Escherichia coli','Y','2025-10-23 00:00:00'),(102787,11,'MG50.50','Sulfonamide or trimethoprim resistant Klebsiella pneumoniae','Y','2025-10-23 00:00:00'),(102788,11,'XM8SY8','Sulfonamides and trimethoprim derivatives','Y','2025-10-23 00:00:00'),(102789,11,'XM3EU7','Sulfonamides and trimethoprim derivatives, fixed combinations','Y','2025-10-23 00:00:00'),(102790,11,'XM5CX9','Sulfonamides, combinations with other antibacterials','Y','2025-10-23 00:00:00'),(102791,11,'XM3SD9','Sulfonazide','Y','2025-10-23 00:00:00'),(102792,11,'XM3SN8','Sulfones','Y','2025-10-23 00:00:00'),(102793,11,'XM9QV2','Sulfonethylmethane','Y','2025-10-23 00:00:00'),(102794,11,'XM4YF8','Sulfonmethane','Y','2025-10-23 00:00:00'),(102795,11,'XM1QL6','Sulfonphthalein, sulfonphthol','Y','2025-10-23 00:00:00'),(102796,11,'XM73P6','Sulfonylurea derivatives, oral','Y','2025-10-23 00:00:00'),(102797,11,'XM11C9','Sulfonylureas','Y','2025-10-23 00:00:00'),(102798,11,'XM5Z28','Sulforidazine','Y','2025-10-23 00:00:00'),(102799,11,'XM1E56','Sulfotep','Y','2025-10-23 00:00:00'),(102800,11,'XM1FW6','Sulfur compounds not elsewhere classified (medicinal)','Y','2025-10-23 00:00:00'),(102801,11,'XM0Z74','Sulfur dioxide','Y','2025-10-23 00:00:00'),(102802,11,'XM8169','Sulfur hexafluoride','Y','2025-10-23 00:00:00'),(102803,11,'XM6ZA6','Sulfur keratolytic ointment','Y','2025-10-23 00:00:00'),(102804,11,'XM4XY4','Sulfur ointment','Y','2025-10-23 00:00:00'),(102805,11,'XM2598','Sulfur oxides','Y','2025-10-23 00:00:00'),(102806,11,'XM86Y5','Sulfur pesticide, not elsewhere classified','Y','2025-10-23 00:00:00'),(102807,11,'XM8724','Sulfuric acid','Y','2025-10-23 00:00:00'),(102808,11,'XM48A5','Sulfuryl fluoride','Y','2025-10-23 00:00:00'),(102809,11,'XM2689','Sulglicotide','Y','2025-10-23 00:00:00'),(102810,11,'XM24W2','Sulindac','Y','2025-10-23 00:00:00'),(102811,11,'XM8WQ0','Sulisatin','Y','2025-10-23 00:00:00'),(102812,11,'XM4YA6','Sulisobenzone','Y','2025-10-23 00:00:00'),(102813,11,'XM8478','Sulkowitch\'s reagent','Y','2025-10-23 00:00:00'),(102814,11,'XM9761','Suloctidil','Y','2025-10-23 00:00:00'),(102815,11,'XM3E38','Sulodexide','Y','2025-10-23 00:00:00'),(102816,11,'XM1AM5','Sulphamethoxazole','Y','2025-10-23 00:00:00'),(102817,11,'XM7Z05','Sulpiride','Y','2025-10-23 00:00:00'),(102818,11,'XM9BJ7','Sulprostone','Y','2025-10-23 00:00:00'),(102819,11,'XM0RU1','Sultamicillin','Y','2025-10-23 00:00:00'),(102820,11,'XM1RS9','Sultiame','Y','2025-10-23 00:00:00'),(102821,11,'XM9G21','Sultopride','Y','2025-10-23 00:00:00'),(102822,11,'XM9AV2','Sumatriptan','Y','2025-10-23 00:00:00'),(102823,11,'SE00','Summer-heat disorder (TM1)','Y','2025-10-23 00:00:00'),(102824,11,'SE85','Summer-heat factor pattern (TM1)','Y','2025-10-23 00:00:00'),(102825,11,'EJ40','Sunburn','Y','2025-10-23 00:00:00'),(102826,11,'EJ40.0','Sunburn erythema','Y','2025-10-23 00:00:00'),(102827,11,'EJ40.1','Sunburn with blisters or exudation','Y','2025-10-23 00:00:00'),(102828,11,'XM3C43','Sunflower seed oil','Y','2025-10-23 00:00:00'),(102829,11,'XM1982','Sunitinib','Y','2025-10-23 00:00:00'),(102830,11,'9A06.6','Sunken Sulcus Deformity','Y','2025-10-23 00:00:00'),(102831,11,'ED60.00','Suntan','Y','2025-10-23 00:00:00'),(102832,11,'XE8NY','Suntan or sunscreen products, self-tan products','Y','2025-10-23 00:00:00'),(102833,11,'XK7F','Superficial','Y','2025-10-23 00:00:00'),(102834,11,'XH58A9','Superficial angiomyxoma','Y','2025-10-23 00:00:00'),(102835,11,'1B74','Superficial bacterial folliculitis','Y','2025-10-23 00:00:00'),(102836,11,'1B74.Y','Superficial bacterial folliculitis due to other specified organism','Y','2025-10-23 00:00:00'),(102837,11,'1B74.Z','Superficial bacterial folliculitis due to unspecified organism','Y','2025-10-23 00:00:00'),(102838,11,'XH5NL6','Superficial basal cell carcinoma','Y','2025-10-23 00:00:00'),(102839,11,'2C32.2','Superficial basal cell carcinoma of skin','Y','2025-10-23 00:00:00'),(102840,11,'XA7W56','Superficial branch of the descending branch of the Medial femoral circumflex artery','Y','2025-10-23 00:00:00'),(102841,11,'XA5687','Superficial branch of the lateral superior genicular artery','Y','2025-10-23 00:00:00'),(102842,11,'XA2E94','Superficial branch of the radial nerve','Y','2025-10-23 00:00:00'),(102843,11,'XA6FR0','Superficial branch of the submental artery','Y','2025-10-23 00:00:00'),(102844,11,'XA2TT0','Superficial branch of the superior gluteal artery','Y','2025-10-23 00:00:00'),(102845,11,'XA6503','Superficial branch of the supraorbital artery','Y','2025-10-23 00:00:00'),(102846,11,'XA0898','Superficial branch of the transverse cervical artery','Y','2025-10-23 00:00:00'),(102847,11,'XA7N00','Superficial cervical lymph node','Y','2025-10-23 00:00:00'),(102848,11,'XA4TQ4','Superficial dorsal vein of the penis','Y','2025-10-23 00:00:00'),(102849,11,'XA8WC0','Superficial epigastric vein','Y','2025-10-23 00:00:00'),(102850,11,'XA6NF9','Superficial external pudendal vein','Y','2025-10-23 00:00:00'),(102851,11,'EE61','Superficial fibromatoses','Y','2025-10-23 00:00:00'),(102852,11,'XA2125','Superficial fibular nerve','Y','2025-10-23 00:00:00'),(102853,11,'XJ06K','Superficial foreign body','Y','2025-10-23 00:00:00'),(102854,11,'ND11.4','Superficial foreign body in ankle','Y','2025-10-23 00:00:00'),(102855,11,'ND11.4Z','Superficial foreign body in ankle, unspecified','Y','2025-10-23 00:00:00'),(102856,11,'ND11.B','Superficial foreign body in other or unspecified parts of foot','Y','2025-10-23 00:00:00'),(102857,11,'ND11.BZ','Superficial foreign body in other or unspecified parts of foot, unspecified','Y','2025-10-23 00:00:00'),(102858,11,'NA00.02','Superficial foreign body in scalp','Y','2025-10-23 00:00:00'),(102859,11,'NE40','Superficial frostbite','Y','2025-10-23 00:00:00'),(102860,11,'XA8HR9','Superficial iliac circumflex vein','Y','2025-10-23 00:00:00'),(102861,11,'NE81.20','Superficial incisional site infection','Y','2025-10-23 00:00:00'),(102862,11,'XA1114','Superficial inguinal lymph node','Y','2025-10-23 00:00:00'),(102863,11,'ND30','Superficial injuries involving multiple body regions','Y','2025-10-23 00:00:00'),(102864,11,'NB50','Superficial injury of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(102865,11,'NB50.Z','Superficial injury of abdomen, lower back or pelvis, unspecified','Y','2025-10-23 00:00:00'),(102866,11,'ND11','Superficial injury of ankle or foot','Y','2025-10-23 00:00:00'),(102867,11,'ND11.Z','Superficial injury of ankle or foot, unspecified','Y','2025-10-23 00:00:00'),(102868,11,'NA00.2','Superficial injury of ear','Y','2025-10-23 00:00:00'),(102869,11,'NA00.1','Superficial injury of eyelid or periocular area','Y','2025-10-23 00:00:00'),(102870,11,'NA00.1Z','Superficial injury of eyelid or periocular area, unspecified','Y','2025-10-23 00:00:00'),(102871,11,'NC51.0','Superficial injury of finger or thumb','Y','2025-10-23 00:00:00'),(102872,11,'NC51.0Z','Superficial injury of finger or thumb, unspecified','Y','2025-10-23 00:00:00'),(102873,11,'NC30','Superficial injury of forearm','Y','2025-10-23 00:00:00'),(102874,11,'NC30.Z','Superficial injury of forearm, unspecified','Y','2025-10-23 00:00:00'),(102875,11,'NA00','Superficial injury of head','Y','2025-10-23 00:00:00'),(102876,11,'NC70','Superficial injury of hip or thigh','Y','2025-10-23 00:00:00'),(102877,11,'NC70.Z','Superficial injury of hip or thigh, unspecified','Y','2025-10-23 00:00:00'),(102878,11,'NC90','Superficial injury of knee or lower leg','Y','2025-10-23 00:00:00'),(102879,11,'NC90.Z','Superficial injury of knee or lower leg, unspecified','Y','2025-10-23 00:00:00'),(102880,11,'NA00.4','Superficial injury of lip or oral cavity','Y','2025-10-23 00:00:00'),(102881,11,'NA20','Superficial injury of neck','Y','2025-10-23 00:00:00'),(102882,11,'NA20.Z','Superficial injury of neck, unspecified','Y','2025-10-23 00:00:00'),(102883,11,'NA00.3','Superficial injury of nose','Y','2025-10-23 00:00:00'),(102884,11,'NC51.1','Superficial injury of other parts of wrist or hand','Y','2025-10-23 00:00:00'),(102885,11,'NC51.1Z','Superficial injury of other parts of wrist or hand, unspecified','Y','2025-10-23 00:00:00'),(102886,11,'NA00.Y','Superficial injury of other specified part of head','Y','2025-10-23 00:00:00'),(102887,11,'NA00.0','Superficial injury of scalp','Y','2025-10-23 00:00:00'),(102888,11,'NA00.0Z','Superficial injury of scalp, type unspecified','Y','2025-10-23 00:00:00'),(102889,11,'NC10','Superficial injury of shoulder or upper arm','Y','2025-10-23 00:00:00'),(102890,11,'NC10.Z','Superficial injury of shoulder or upper arm, unspecified','Y','2025-10-23 00:00:00'),(102891,11,'NA80','Superficial injury of thorax','Y','2025-10-23 00:00:00'),(102892,11,'NA80.Z','Superficial injury of thorax, unspecified','Y','2025-10-23 00:00:00'),(102893,11,'ND56.0','Superficial injury of unspecified body region','Y','2025-10-23 00:00:00'),(102894,11,'NA00.Z','Superficial injury of unspecified part of head','Y','2025-10-23 00:00:00'),(102895,11,'NC51','Superficial injury of wrist or hand','Y','2025-10-23 00:00:00'),(102896,11,'XA12G8','Superficial lymphatic vessel','Y','2025-10-23 00:00:00'),(102897,11,'XA3TX9','Superficial lymphatic vessel of the thoracic wall','Y','2025-10-23 00:00:00'),(102898,11,'XA4WV6','Superficial middle cerebral vein','Y','2025-10-23 00:00:00'),(102899,11,'ED80.1','Superficial mixed comedonal and papulopustular acne','Y','2025-10-23 00:00:00'),(102900,11,'GA10.B4','Superficial ovarian endometriosis','Y','2025-10-23 00:00:00'),(102901,11,'XA5AG1','Superficial palmar arch of the radial artery','Y','2025-10-23 00:00:00'),(102902,11,'XA5BG5','Superficial palmar branch of the radial artery','Y','2025-10-23 00:00:00'),(102903,11,'XA85E1','Superficial parotid lymph node','Y','2025-10-23 00:00:00'),(102904,11,'XA82P9','Superficial petrosal branch of the anterior and posterior meningeal artery','Y','2025-10-23 00:00:00'),(102905,11,'8E42','Superficial siderosis of the nervous system','Y','2025-10-23 00:00:00'),(102906,11,'XJ3U1','Superficial splinter','Y','2025-10-23 00:00:00'),(102907,11,'XH0JE3','Superficial spreading adenocarcinoma','Y','2025-10-23 00:00:00'),(102908,11,'XH08X7','Superficial spreading melanoma','Y','2025-10-23 00:00:00'),(102909,11,'2C30.0','Superficial spreading melanoma, primary','Y','2025-10-23 00:00:00'),(102910,11,'2E80.00','Superficial subcutaneous lipoma','Y','2025-10-23 00:00:00'),(102911,11,'XA30V5','Superficial subinguinal lymph node','Y','2025-10-23 00:00:00'),(102912,11,'XA0SB1','Superficial temporal artery','Y','2025-10-23 00:00:00'),(102913,11,'XA2NX9','Superficial temporal vein','Y','2025-10-23 00:00:00'),(102914,11,'BD70','Superficial thrombophlebitis','Y','2025-10-23 00:00:00'),(102915,11,'JA61.2','Superficial thrombophlebitis in pregnancy','Y','2025-10-23 00:00:00'),(102916,11,'JB41.0','Superficial thrombophlebitis in the puerperium','Y','2025-10-23 00:00:00'),(102917,11,'BD70.0','Superficial thrombophlebitis of lower limbs','Y','2025-10-23 00:00:00'),(102918,11,'BD70.1','Superficial thrombophlebitis of upper limbs','Y','2025-10-23 00:00:00'),(102919,11,'BD70.Z','Superficial thrombophlebitis, unspecified','Y','2025-10-23 00:00:00'),(102920,11,'XA56U7','Superficial transverse perinei muscle','Y','2025-10-23 00:00:00'),(102921,11,'XA7HM9','Superficial volar venous arch','Y','2025-10-23 00:00:00'),(102922,11,'XM6JE5','Superinone','Y','2025-10-23 00:00:00'),(102923,11,'XK5N','Superior','Y','2025-10-23 00:00:00'),(102924,11,'XA8RC9','Superior acromioclavicular ligament','Y','2025-10-23 00:00:00'),(102925,11,'XA8SW4','Superior auricularis muscle','Y','2025-10-23 00:00:00'),(102926,11,'XA0AZ8','Superior branch of the lateral sacral artery','Y','2025-10-23 00:00:00'),(102927,11,'AB31.3','Superior canal dehiscence syndrome','Y','2025-10-23 00:00:00'),(102928,11,'XA1AC5','Superior cardiac nerve','Y','2025-10-23 00:00:00'),(102929,11,'BE1D','Superior caval vein obstruction due to foreign body','Y','2025-10-23 00:00:00'),(102930,11,'XA7423','Superior cerebellar artery','Y','2025-10-23 00:00:00'),(102931,11,'XA2Z35','Superior cerebellar vein','Y','2025-10-23 00:00:00'),(102932,11,'XA0E47','Superior cerebral vein','Y','2025-10-23 00:00:00'),(102933,11,'XA6BG1','Superior cervical ganglion','Y','2025-10-23 00:00:00'),(102934,11,'XA4H06','Superior conjunctival fornix','Y','2025-10-23 00:00:00'),(102935,11,'XA6AC0','Superior deep cervical lymph node','Y','2025-10-23 00:00:00'),(102936,11,'XA1478','Superior diaphragmatic lymph node','Y','2025-10-23 00:00:00'),(102937,11,'XA4VD1','Superior epigastric vein','Y','2025-10-23 00:00:00'),(102938,11,'XA6YL5','Superior ganglion','Y','2025-10-23 00:00:00'),(102939,11,'XA3F65','Superior gastric lymph node','Y','2025-10-23 00:00:00'),(102940,11,'XA26E6','Superior gluteal artery','Y','2025-10-23 00:00:00'),(102941,11,'XA9AC5','Superior gluteal nerve','Y','2025-10-23 00:00:00'),(102942,11,'XA47S7','Superior gluteal Vein','Y','2025-10-23 00:00:00'),(102943,11,'XA30C9','Superior hemorrhoidal vein','Y','2025-10-23 00:00:00'),(102944,11,'XA33C1','Superior hypogastric plexus','Y','2025-10-23 00:00:00'),(102945,11,'XA4DR2','Superior intercostal vein','Y','2025-10-23 00:00:00'),(102946,11,'XA4UT8','Superior labial artery','Y','2025-10-23 00:00:00'),(102947,11,'XA6AE9','Superior labial nerve','Y','2025-10-23 00:00:00'),(102948,11,'XA2151','Superior labial sulcus','Y','2025-10-23 00:00:00'),(102949,11,'XA4AG1','Superior labial vein','Y','2025-10-23 00:00:00'),(102950,11,'XA2VR4','Superior lacrimal punctum','Y','2025-10-23 00:00:00'),(102951,11,'XA9GU1','Superior laryngeal artery','Y','2025-10-23 00:00:00'),(102952,11,'XA2HA5','Superior laryngeal nerve','Y','2025-10-23 00:00:00'),(102953,11,'XA3XZ1','Superior laryngeal vein','Y','2025-10-23 00:00:00'),(102954,11,'XA6B07','Superior lateral cutaneous nerve of arm','Y','2025-10-23 00:00:00'),(102955,11,'XA3VR0','Superior mesenteric','Y','2025-10-23 00:00:00'),(102956,11,'XA37Y9','Superior mesenteric lymph node','Y','2025-10-23 00:00:00'),(102957,11,'XA3DJ3','Superior mesenteric plexus','Y','2025-10-23 00:00:00'),(102958,11,'XA4DA7','Superior mesenteric vein','Y','2025-10-23 00:00:00'),(102959,11,'XA2X27','Superior oblique muscle','Y','2025-10-23 00:00:00'),(102960,11,'XA5ES8','Superior oblique tendon','Y','2025-10-23 00:00:00'),(102961,11,'XA6C95','Superior ophthalmic vein','Y','2025-10-23 00:00:00'),(102962,11,'XA35L5','Superior palpebral arch artery','Y','2025-10-23 00:00:00'),(102963,11,'XA4649','Superior palpebral sulcus','Y','2025-10-23 00:00:00'),(102964,11,'XA9T11','Superior palpebral vein','Y','2025-10-23 00:00:00'),(102965,11,'XA2870','Superior pancreaticoduodenal artery','Y','2025-10-23 00:00:00'),(102966,11,'XA1YP1','Superior petrosal sinus','Y','2025-10-23 00:00:00'),(102967,11,'XA9J15','Superior phrenic artery','Y','2025-10-23 00:00:00'),(102968,11,'XA27Y3','Superior phrenic vein','Y','2025-10-23 00:00:00'),(102969,11,'XA68K7','Superior pubic ligament','Y','2025-10-23 00:00:00'),(102970,11,'XA1XZ3','Superior pubic ramus','Y','2025-10-23 00:00:00'),(102971,11,'XA9K75','Superior pulmonary vein','Y','2025-10-23 00:00:00'),(102972,11,'XA4G22','Superior rectal plexus','Y','2025-10-23 00:00:00'),(102973,11,'XA51R1','Superior rectus muscle','Y','2025-10-23 00:00:00'),(102974,11,'XA3ZN4','Superior rectus tendon','Y','2025-10-23 00:00:00'),(102975,11,'XA81R3','Superior sagittal sinus','Y','2025-10-23 00:00:00'),(102976,11,'XA1RV1','Superior sagittal vein','Y','2025-10-23 00:00:00'),(102977,11,'XA8M67','Superior thoracic artery','Y','2025-10-23 00:00:00'),(102978,11,'XA7K29','Superior thyroid artery','Y','2025-10-23 00:00:00'),(102979,11,'XA9BZ3','Superior thyroid vein','Y','2025-10-23 00:00:00'),(102980,11,'XA2JX0','Superior tracheobronchial lymph node','Y','2025-10-23 00:00:00'),(102981,11,'XA50Q9','Superior tympanic artery','Y','2025-10-23 00:00:00'),(102982,11,'XA0JA6','Superior ulnar collateral artery','Y','2025-10-23 00:00:00'),(102983,11,'XA5WA4','Superior vena cava','Y','2025-10-23 00:00:00'),(102984,11,'XA5694','Superior vermis','Y','2025-10-23 00:00:00'),(102985,11,'XA1426','Superior vesical artery','Y','2025-10-23 00:00:00'),(102986,11,'XA6SR9','Superior wall of bladder','Y','2025-10-23 00:00:00'),(102987,11,'XA0659','Superior wall of nasopharynx','Y','2025-10-23 00:00:00'),(102988,11,'LB62','Supernumerary breasts','Y','2025-10-23 00:00:00'),(102989,11,'XA6WJ3','Superolateral buccal sulcus','Y','2025-10-23 00:00:00'),(102990,11,'XM8966','Superparamagnetic contrast media','Y','2025-10-23 00:00:00'),(102991,11,'QA43.4','Supervision of elderly primigravida','Y','2025-10-23 00:00:00'),(102992,11,'QA43','Supervision of high-risk pregnancy','Y','2025-10-23 00:00:00'),(102993,11,'QA43.6','Supervision of high-risk pregnancy due to social problems','Y','2025-10-23 00:00:00'),(102994,11,'QA43.Z','Supervision of high-risk pregnancy, unspecified','Y','2025-10-23 00:00:00'),(102995,11,'QA42.0','Supervision of normal first pregnancy','Y','2025-10-23 00:00:00'),(102996,11,'QA42','Supervision of normal pregnancy','Y','2025-10-23 00:00:00'),(102997,11,'QA42.Z','Supervision of normal pregnancy, unspecified','Y','2025-10-23 00:00:00'),(102998,11,'QA42.Y','Supervision of other specified normal pregnancy','Y','2025-10-23 00:00:00'),(102999,11,'QA43.1','Supervision of pregnancy with history of abortive outcome','Y','2025-10-23 00:00:00'),(103000,11,'QA43.0','Supervision of pregnancy with history of infertility','Y','2025-10-23 00:00:00'),(103001,11,'QA43.3','Supervision of pregnancy with history of insufficient antenatal care','Y','2025-10-23 00:00:00'),(103002,11,'QA43.3Z','Supervision of pregnancy with history of insufficient antenatal care, unspecified','Y','2025-10-23 00:00:00'),(103003,11,'QA43.2','Supervision of pregnancy with other poor reproductive or obstetric history','Y','2025-10-23 00:00:00'),(103004,11,'QA43.5','Supervision of very young primigravida','Y','2025-10-23 00:00:00'),(103005,11,'XA90Z6','Supinator muscle','Y','2025-10-23 00:00:00'),(103006,11,'XA5EJ6','Supinator tendon','Y','2025-10-23 00:00:00'),(103007,11,'SJ3Z','Supplementary Chapter Traditional Medicine Conditions Module I, unspecified','Y','2025-10-23 00:00:00'),(103008,11,'JB46.5','Suppressed lactation','Y','2025-10-23 00:00:00'),(103009,11,'AA9Z','Suppurative otitis media, unspecified','Y','2025-10-23 00:00:00'),(103010,11,'XA00M7','Supraclavicular lymph node','Y','2025-10-23 00:00:00'),(103011,11,'XA5318','Supraclavicular nerves','Y','2025-10-23 00:00:00'),(103012,11,'XA9DQ5','Supraclavicular region','Y','2025-10-23 00:00:00'),(103013,11,'NC12.40','Supracondylar fracture of humerus','Y','2025-10-23 00:00:00'),(103014,11,'XA1PB3','Supraglottic larynx','Y','2025-10-23 00:00:00'),(103015,11,'XA4J45','Suprainguinal lymph node','Y','2025-10-23 00:00:00'),(103016,11,'XA1C15','Supraorbital artery','Y','2025-10-23 00:00:00'),(103017,11,'XA31J6','Supraorbital nerve','Y','2025-10-23 00:00:00'),(103018,11,'XA5WP1','Supraorbital region','Y','2025-10-23 00:00:00'),(103019,11,'XA7LQ0','Supraorbital vein','Y','2025-10-23 00:00:00'),(103020,11,'XA0LF4','Suprapubic area','Y','2025-10-23 00:00:00'),(103021,11,'XA5EX6','Suprarenal abdominal aorta','Y','2025-10-23 00:00:00'),(103022,11,'XA7DX9','Suprarenal lymph node','Y','2025-10-23 00:00:00'),(103023,11,'XA6MY2','Suprarenal plexus','Y','2025-10-23 00:00:00'),(103024,11,'XA2WW4','Suprarenal vein','Y','2025-10-23 00:00:00'),(103025,11,'XA5MU7','Suprascapular ligament','Y','2025-10-23 00:00:00'),(103026,11,'XA8QY6','Suprascapular nerve','Y','2025-10-23 00:00:00'),(103027,11,'XA3PG8','Suprascapular region','Y','2025-10-23 00:00:00'),(103028,11,'XA7WU3','Supraspinal ligament','Y','2025-10-23 00:00:00'),(103029,11,'XA74P3','Supraspinatus muscle','Y','2025-10-23 00:00:00'),(103030,11,'XA5VZ4','Supraspinatus tendon','Y','2025-10-23 00:00:00'),(103031,11,'XA8RA2','Suprasternal notch','Y','2025-10-23 00:00:00'),(103032,11,'XK18','Supratentorial','Y','2025-10-23 00:00:00'),(103033,11,'XH7Y86','Supratentorial PNET','Y','2025-10-23 00:00:00'),(103034,11,'XA73A8','Supratentorial region of brain','Y','2025-10-23 00:00:00'),(103035,11,'XA3057','Supratip of nose','Y','2025-10-23 00:00:00'),(103036,11,'XA6W31','Supratrochlear artery','Y','2025-10-23 00:00:00'),(103037,11,'XA95V8','Supratrochlear nerve','Y','2025-10-23 00:00:00'),(103038,11,'BC80','Supraventricular bradyarrhythmia','Y','2025-10-23 00:00:00'),(103039,11,'BC80.Z','Supraventricular bradyarrhythmia, unspecified','Y','2025-10-23 00:00:00'),(103040,11,'BC8Z','Supraventricular rhythm disturbance, unspecified','Y','2025-10-23 00:00:00'),(103041,11,'BC81','Supraventricular tachyarrhythmia','Y','2025-10-23 00:00:00'),(103042,11,'BC81.Z','Supraventricular tachyarrhythmia, unspecified','Y','2025-10-23 00:00:00'),(103043,11,'XA7TT5','Supreme intercostal artery','Y','2025-10-23 00:00:00'),(103044,11,'XM2N63','Suprofen','Y','2025-10-23 00:00:00'),(103045,11,'XA08Q7','Sural artery','Y','2025-10-23 00:00:00'),(103046,11,'XA4HR8','Sural nerve','Y','2025-10-23 00:00:00'),(103047,11,'XM11F5','Suramin sodium','Y','2025-10-23 00:00:00'),(103048,11,'XM6392','Surfacaine','Y','2025-10-23 00:00:00'),(103049,11,'XA2US1','Surfaces of the teeth','Y','2025-10-23 00:00:00'),(103050,11,'XD3LV8','Surgical drapes','Y','2025-10-23 00:00:00'),(103051,11,'XD4E80','Surgical gowns, standard','Y','2025-10-23 00:00:00'),(103052,11,'XA6FR2','Surgical neck of the humerus','Y','2025-10-23 00:00:00'),(103053,11,'PK8Z','Surgical or other medical procedures associated with injury or harm in diagnostic or therapeutic use, unspecified','Y','2025-10-23 00:00:00'),(103054,11,'QB6Z','Surgical or postsurgical states, unspecified','Y','2025-10-23 00:00:00'),(103055,11,'NE81.2','Surgical site infection','Y','2025-10-23 00:00:00'),(103056,11,'NE81.2Z','Surgical site infection, unspecified','Y','2025-10-23 00:00:00'),(103057,11,'QA21.6','Surveillance of contraceptive device','Y','2025-10-23 00:00:00'),(103058,11,'QA21.6Z','Surveillance of contraceptive device, unspecified','Y','2025-10-23 00:00:00'),(103059,11,'QA21.5','Surveillance of contraceptive drugs','Y','2025-10-23 00:00:00'),(103060,11,'XM6B13','Susoctocog alfa','Y','2025-10-23 00:00:00'),(103061,11,'EH90.4','Suspected deep pressure-induced tissue damage, depth unknown','Y','2025-10-23 00:00:00'),(103062,11,'XA6U53','Suspensory ligament of lens','Y','2025-10-23 00:00:00'),(103063,11,'MB26.9','Suspiciousness','Y','2025-10-23 00:00:00'),(103064,11,'BC71.02','Sustained ventricular tachycardia','Y','2025-10-23 00:00:00'),(103065,11,'XM8183','Sutilains','Y','2025-10-23 00:00:00'),(103066,11,'XM6PD2','Sutimlimab','Y','2025-10-23 00:00:00'),(103067,11,'XE0NL','Suture thread fastner component of medical device','Y','2025-10-23 00:00:00'),(103068,11,'XM2HN6','Suvorexant','Y','2025-10-23 00:00:00'),(103069,11,'XM09Y8','Suxamethonium','Y','2025-10-23 00:00:00'),(103070,11,'XM7142','Suxethonium chloride','Y','2025-10-23 00:00:00'),(103071,11,'XM9CV5','Suxibuzone','Y','2025-10-23 00:00:00'),(103072,11,'XH5LY3','Sweat gland adenocarcinoma','Y','2025-10-23 00:00:00'),(103073,11,'XH3U61','Sweat gland adenoma','Y','2025-10-23 00:00:00'),(103074,11,'XH8BW1','Sweat gland tumour, NOS','Y','2025-10-23 00:00:00'),(103075,11,'XM2BJ0','Sweet niter spirit','Y','2025-10-23 00:00:00'),(103076,11,'XM7YQ8','Sweet oil (birch)','Y','2025-10-23 00:00:00'),(103077,11,'XN02Z','Swine influenza A H1N1 virus','Y','2025-10-23 00:00:00'),(103078,11,'XN476','Swine influenza A H3N2 virus','Y','2025-10-23 00:00:00'),(103079,11,'XE5R5','Switch or relay component of medical device','Y','2025-10-23 00:00:00'),(103080,11,'XE598','Sword, dagger, bayonet, machete, panga, cutlass','Y','2025-10-23 00:00:00'),(103081,11,'9A06.2','Symblepharon, acquired','Y','2025-10-23 00:00:00'),(103082,11,'MB4B','Symbolic dysfunctions','Y','2025-10-23 00:00:00'),(103083,11,'MB4B.Z','Symbolic dysfunctions, unspecified','Y','2025-10-23 00:00:00'),(103084,11,'LB75.2','Symbrachydactyly of hands or feet','Y','2025-10-23 00:00:00'),(103085,11,'KA20.11','Symmetrical intrauterine growth restriction','Y','2025-10-23 00:00:00'),(103086,11,'XA93B4','Sympathetic nervous system','Y','2025-10-23 00:00:00'),(103087,11,'XH4G21','Sympathetic paraganglioma','Y','2025-10-23 00:00:00'),(103088,11,'XA6W14','Sympathetic trunk','Y','2025-10-23 00:00:00'),(103089,11,'9C21.0','Sympathetic uveitis','Y','2025-10-23 00:00:00'),(103090,11,'9B01.6','Sympathotonic pupils','Y','2025-10-23 00:00:00'),(103091,11,'XA8JR9','Symphysis of mandible','Y','2025-10-23 00:00:00'),(103092,11,'ME86','Symptom or complaint of a body part','Y','2025-10-23 00:00:00'),(103093,11,'MF57','Symptom or complaint of bladder','Y','2025-10-23 00:00:00'),(103094,11,'MC1D','Symptom or complaint of contact lens','Y','2025-10-23 00:00:00'),(103095,11,'MF37','Symptom or complaint of female nipple','Y','2025-10-23 00:00:00'),(103096,11,'MF38','Symptom or complaint of female pelvis','Y','2025-10-23 00:00:00'),(103097,11,'MC1C','Symptom or complaint of glasses','Y','2025-10-23 00:00:00'),(103098,11,'ME86.F','Symptom or complaint of joint, not otherwise specified','Y','2025-10-23 00:00:00'),(103099,11,'MF41','Symptom or complaint of male sexual function','Y','2025-10-23 00:00:00'),(103100,11,'ME86.G','Symptom or complaint of muscle, not otherwise specified','Y','2025-10-23 00:00:00'),(103101,11,'ME86.0','Symptom or complaint of the ankle','Y','2025-10-23 00:00:00'),(103102,11,'ME86.1','Symptom or complaint of the arm','Y','2025-10-23 00:00:00'),(103103,11,'ME86.2','Symptom or complaint of the back','Y','2025-10-23 00:00:00'),(103104,11,'ME86.2Z','Symptom or complaint of the back, unspecified','Y','2025-10-23 00:00:00'),(103105,11,'MA00','Symptom or complaint of the blood','Y','2025-10-23 00:00:00'),(103106,11,'ME86.3','Symptom or complaint of the chest','Y','2025-10-23 00:00:00'),(103107,11,'ME86.4','Symptom or complaint of the elbow','Y','2025-10-23 00:00:00'),(103108,11,'MC1B','Symptom or complaint of the eyelid','Y','2025-10-23 00:00:00'),(103109,11,'ME86.5','Symptom or complaint of the flank or axilla','Y','2025-10-23 00:00:00'),(103110,11,'ME86.6','Symptom or complaint of the foot or toe','Y','2025-10-23 00:00:00'),(103111,11,'ME86.7','Symptom or complaint of the hand or finger','Y','2025-10-23 00:00:00'),(103112,11,'ME86.8','Symptom or complaint of the hip','Y','2025-10-23 00:00:00'),(103113,11,'ME86.9','Symptom or complaint of the jaw','Y','2025-10-23 00:00:00'),(103114,11,'ME86.A','Symptom or complaint of the knee','Y','2025-10-23 00:00:00'),(103115,11,'ME86.B','Symptom or complaint of the leg or thigh','Y','2025-10-23 00:00:00'),(103116,11,'ME86.22','Symptom or complaint of the low back','Y','2025-10-23 00:00:00'),(103117,11,'MD80.1','Symptom or complaint of the mouth, tongue or lip','Y','2025-10-23 00:00:00'),(103118,11,'ME86.C','Symptom or complaint of the neck','Y','2025-10-23 00:00:00'),(103119,11,'MD34','Symptom or complaint of the nose','Y','2025-10-23 00:00:00'),(103120,11,'MF40.0','Symptom or complaint of the penis','Y','2025-10-23 00:00:00'),(103121,11,'MF40.0Z','Symptom or complaint of the penis, unspecified','Y','2025-10-23 00:00:00'),(103122,11,'MF40.2','Symptom or complaint of the scrotum or testis','Y','2025-10-23 00:00:00'),(103123,11,'MF40.2Z','Symptom or complaint of the scrotum or testis, unspecified','Y','2025-10-23 00:00:00'),(103124,11,'ME86.D','Symptom or complaint of the shoulder','Y','2025-10-23 00:00:00'),(103125,11,'ME86.DZ','Symptom or complaint of the shoulder, unspecified','Y','2025-10-23 00:00:00'),(103126,11,'MD35','Symptom or complaint of the sinus','Y','2025-10-23 00:00:00'),(103127,11,'MD80.0','Symptom or complaint of the teeth or gum','Y','2025-10-23 00:00:00'),(103128,11,'MD36','Symptom or complaint of the throat','Y','2025-10-23 00:00:00'),(103129,11,'MD36.Z','Symptom or complaint of the throat, unspecified','Y','2025-10-23 00:00:00'),(103130,11,'MF39','Symptom or complaint of the vulva','Y','2025-10-23 00:00:00'),(103131,11,'ME86.E','Symptom or complaint of the wrist','Y','2025-10-23 00:00:00'),(103132,11,'ME66.3','Symptom or complaint relating to hair or scalp','Y','2025-10-23 00:00:00'),(103133,11,'ME66.4','Symptom or complaint relating to nails','Y','2025-10-23 00:00:00'),(103134,11,'6A80','Symptomatic and course presentations for mood episodes in mood disorders','Y','2025-10-23 00:00:00'),(103135,11,'1A62.01','Symptomatic late neurosyphilis','Y','2025-10-23 00:00:00'),(103136,11,'1A62.2','Symptomatic late syphilis of other sites','Y','2025-10-23 00:00:00'),(103137,11,'1A62.2Y','Symptomatic late syphilis of other specified sites','Y','2025-10-23 00:00:00'),(103138,11,'1A62.2Z','Symptomatic late syphilis of unspecified site','Y','2025-10-23 00:00:00'),(103139,11,'6A25','Symptomatic manifestations of primary psychotic disorders','Y','2025-10-23 00:00:00'),(103140,11,'MG43','Symptoms and signs concerning food and fluid intake','Y','2025-10-23 00:00:00'),(103141,11,'MB23.Z','Symptoms and signs involving appearance and behaviour, unspecified','Y','2025-10-23 00:00:00'),(103142,11,'MB21.Z','Symptoms and signs involving cognition, unspecified','Y','2025-10-23 00:00:00'),(103143,11,'MB29.Z','Symptoms and signs involving eating and related behaviour, unspecified','Y','2025-10-23 00:00:00'),(103144,11,'MB2A.Z','Symptoms and signs involving elimination, unspecified','Y','2025-10-23 00:00:00'),(103145,11,'MB24.Z','Symptoms and signs involving mood or affect, unspecified','Y','2025-10-23 00:00:00'),(103146,11,'MB25.Z','Symptoms and signs of form of thought, unspecified','Y','2025-10-23 00:00:00'),(103147,11,'MB27.Z','Symptoms and signs of perceptual disturbance, unspecified','Y','2025-10-23 00:00:00'),(103148,11,'MB25.0','Symptoms and signs of thought disorder','Y','2025-10-23 00:00:00'),(103149,11,'MB25.0Z','Symptoms and signs of thought disorder, unspecified','Y','2025-10-23 00:00:00'),(103150,11,'MB28.Z','Symptoms and signs related to personality features, unspecified','Y','2025-10-23 00:00:00'),(103151,11,'MB23','Symptoms or signs involving appearance or behaviour','Y','2025-10-23 00:00:00'),(103152,11,'MB26','Symptoms or signs involving content of thought','Y','2025-10-23 00:00:00'),(103153,11,'MB26.Z','Symptoms or signs involving content of thought, unspecified','Y','2025-10-23 00:00:00'),(103154,11,'MB29','Symptoms or signs involving eating and related behaviour','Y','2025-10-23 00:00:00'),(103155,11,'MB2A','Symptoms or signs involving elimination','Y','2025-10-23 00:00:00'),(103156,11,'MB25','Symptoms or signs involving form of thought','Y','2025-10-23 00:00:00'),(103157,11,'MB24','Symptoms or signs involving mood or affect','Y','2025-10-23 00:00:00'),(103158,11,'MB22','Symptoms or signs involving motivation or energy','Y','2025-10-23 00:00:00'),(103159,11,'MB22.Z','Symptoms or signs involving motivation or energy, unspecified','Y','2025-10-23 00:00:00'),(103160,11,'MB27','Symptoms or signs involving perceptual disturbance','Y','2025-10-23 00:00:00'),(103161,11,'MD80','Symptoms or signs of the orofacial complex','Y','2025-10-23 00:00:00'),(103162,11,'MB28','Symptoms or signs related to personality features','Y','2025-10-23 00:00:00'),(103163,11,'MG44','Symptoms peculiar to infancy','Y','2025-10-23 00:00:00'),(103164,11,'MG44.Z','Symptoms peculiar to infancy, unspecified','Y','2025-10-23 00:00:00'),(103165,11,'MB21','Symptoms, signs or clinical findings involving cognition','Y','2025-10-23 00:00:00'),(103166,11,'MB20','Symptoms, signs or clinical findings involving consciousness','Y','2025-10-23 00:00:00'),(103167,11,'XM69P6','Synagis','Y','2025-10-23 00:00:00'),(103168,11,'XM9ST9','Synalar','Y','2025-10-23 00:00:00'),(103169,11,'MG45','Syncope and collapse','Y','2025-10-23 00:00:00'),(103170,11,'MG45.Z','Syncope and collapse, unspecified','Y','2025-10-23 00:00:00'),(103171,11,'SD40','Syncope disorder (TM1)','Y','2025-10-23 00:00:00'),(103172,11,'8D89.1','Syncope due to autonomic failure','Y','2025-10-23 00:00:00'),(103173,11,'LB79','Syndactyly','Y','2025-10-23 00:00:00'),(103174,11,'LB79.Z','Syndactyly, unspecified','Y','2025-10-23 00:00:00'),(103175,11,'5A60.2','Syndrome of inappropriate secretion of antidiuretic hormone','Y','2025-10-23 00:00:00'),(103176,11,'5A60.2Z','Syndrome of inappropriate secretion of antidiuretic hormone, unspecified','Y','2025-10-23 00:00:00'),(103177,11,'KB60.1','Syndrome of infant of a diabetic mother, type 1 or 2, nongestational, insulin dependent','Y','2025-10-23 00:00:00'),(103178,11,'KB60.0','Syndrome of infant of mother with gestational diabetes','Y','2025-10-23 00:00:00'),(103179,11,'LD20.4','Syndromes with brain calcifications as a major feature','Y','2025-10-23 00:00:00'),(103180,11,'LD20','Syndromes with central nervous system anomalies as a major feature','Y','2025-10-23 00:00:00'),(103181,11,'LD20.Z','Syndromes with central nervous system anomalies as a major feature, unspecified','Y','2025-10-23 00:00:00'),(103182,11,'LD20.0','Syndromes with cerebellar anomalies as a major feature','Y','2025-10-23 00:00:00'),(103183,11,'LD20.0Z','Syndromes with cerebellar anomalies as a major feature, unspecified','Y','2025-10-23 00:00:00'),(103184,11,'LD28','Syndromes with connective tissue involvement as a major feature','Y','2025-10-23 00:00:00'),(103185,11,'LD28.Z','Syndromes with connective tissue involvement as a major feature, unspecified','Y','2025-10-23 00:00:00'),(103186,11,'LD22','Syndromes with dental anomalies as a major feature','Y','2025-10-23 00:00:00'),(103187,11,'LD21','Syndromes with eye anomalies as a major feature','Y','2025-10-23 00:00:00'),(103188,11,'LD21.Z','Syndromes with eye anomalies as a major feature, unspecified','Y','2025-10-23 00:00:00'),(103189,11,'LD25','Syndromes with face or limb anomalies as a major feature','Y','2025-10-23 00:00:00'),(103190,11,'LD25.Z','Syndromes with face or limb anomalies as a major feature, unspecified','Y','2025-10-23 00:00:00'),(103191,11,'LD20.3','Syndromes with holoprosencephaly as a major feature','Y','2025-10-23 00:00:00'),(103192,11,'LD26','Syndromes with limb anomalies as a major feature','Y','2025-10-23 00:00:00'),(103193,11,'LD26.Z','Syndromes with limb anomalies as a major feature, unspecified','Y','2025-10-23 00:00:00'),(103194,11,'LD26.2','Syndromes with limb duplication, polydactyly, syndactyly or triphalangism','Y','2025-10-23 00:00:00'),(103195,11,'LD20.1','Syndromes with lissencephaly as a major feature','Y','2025-10-23 00:00:00'),(103196,11,'LD20.2','Syndromes with microcephaly as a major feature','Y','2025-10-23 00:00:00'),(103197,11,'LD24.0','Syndromes with micromelia','Y','2025-10-23 00:00:00'),(103198,11,'LD24.0Z','Syndromes with micromelia, unspecified','Y','2025-10-23 00:00:00'),(103199,11,'LD21.0','Syndromes with microphthalmia as a major feature','Y','2025-10-23 00:00:00'),(103200,11,'LD2F.1','Syndromes with multiple structural anomalies, not of environmental origin','Y','2025-10-23 00:00:00'),(103201,11,'LD2F.1Z','Syndromes with multiple structural anomalies, not of environmental origin, unspecified','Y','2025-10-23 00:00:00'),(103202,11,'LD2F','Syndromes with multiple structural anomalies, without predominant body system involvement','Y','2025-10-23 00:00:00'),(103203,11,'LD2F.Z','Syndromes with multiple structural anomalies, without predominant body system involvement, unspecified','Y','2025-10-23 00:00:00'),(103204,11,'LD29','Syndromes with obesity as a major feature','Y','2025-10-23 00:00:00'),(103205,11,'LD2B','Syndromes with premature ageing appearance as a major feature','Y','2025-10-23 00:00:00'),(103206,11,'LD24','Syndromes with skeletal anomalies as a major feature','Y','2025-10-23 00:00:00'),(103207,11,'LD24.Z','Syndromes with skeletal anomalies as a major feature, unspecified','Y','2025-10-23 00:00:00'),(103208,11,'LD27','Syndromes with skin or mucosal anomalies as a major feature','Y','2025-10-23 00:00:00'),(103209,11,'LD27.Z','Syndromes with skin or mucosal anomalies as a major feature, unspecified','Y','2025-10-23 00:00:00'),(103210,11,'LD2E','Syndromes with structural anomalies due to inborn errors of metabolism','Y','2025-10-23 00:00:00'),(103211,11,'LD26.3','Syndromes with synostoses of limbs','Y','2025-10-23 00:00:00'),(103212,11,'EB03','Syndromes with urticarial reactions or angioedema','Y','2025-10-23 00:00:00'),(103213,11,'LD23','Syndromes with vascular anomalies as a major feature','Y','2025-10-23 00:00:00'),(103214,11,'LD24.G','Syndromic craniosynostoses','Y','2025-10-23 00:00:00'),(103215,11,'LD24.GZ','Syndromic craniosynostoses, unspecified','Y','2025-10-23 00:00:00'),(103216,11,'DA90.0','Syndromic diarrhoea','Y','2025-10-23 00:00:00'),(103217,11,'EC33','Syndromic epidermolysis bullosa','Y','2025-10-23 00:00:00'),(103218,11,'LD2H','Syndromic genetic deafness','Y','2025-10-23 00:00:00'),(103219,11,'LD2H.Z','Syndromic genetic deafness, unspecified','Y','2025-10-23 00:00:00'),(103220,11,'EC23.1','Syndromic genetically-determined hypermelanosis or lentiginosis','Y','2025-10-23 00:00:00'),(103221,11,'LD27.2','Syndromic ichthyosis','Y','2025-10-23 00:00:00'),(103222,11,'9C83.63','Synergistic divergence','Y','2025-10-23 00:00:00'),(103223,11,'1F6C','Syngamosis','Y','2025-10-23 00:00:00'),(103224,11,'XN5RB','Syngamus','Y','2025-10-23 00:00:00'),(103225,11,'XN04L','Syngamus trachea','Y','2025-10-23 00:00:00'),(103226,11,'FB50.2','Synovial cyst of popliteal space','Y','2025-10-23 00:00:00'),(103227,11,'XA0518','Synovial fluid','Y','2025-10-23 00:00:00'),(103228,11,'FB42.3','Synovial hypertrophy, not elsewhere classified','Y','2025-10-23 00:00:00'),(103229,11,'2B5A.1','Synovial sarcoma of respiratory or intra-thoracic organs','Y','2025-10-23 00:00:00'),(103230,11,'2B5A.0','Synovial sarcoma of soft tissues of limb','Y','2025-10-23 00:00:00'),(103231,11,'XH1J28','Synovial sarcoma, biphasic','Y','2025-10-23 00:00:00'),(103232,11,'XH06L8','Synovial sarcoma, epithelioid cell','Y','2025-10-23 00:00:00'),(103233,11,'XH9B22','Synovial sarcoma, NOS','Y','2025-10-23 00:00:00'),(103234,11,'2B5A.Y','Synovial sarcoma, other specified primary site','Y','2025-10-23 00:00:00'),(103235,11,'2B5A','Synovial sarcoma, primary site','Y','2025-10-23 00:00:00'),(103236,11,'XH9346','Synovial sarcoma, spindle cell','Y','2025-10-23 00:00:00'),(103237,11,'2B5A.Z','Synovial sarcoma, unspecified primary site','Y','2025-10-23 00:00:00'),(103238,11,'XH2AW8','Synovioma, benign','Y','2025-10-23 00:00:00'),(103239,11,'XA3G85','Synovium','Y','2025-10-23 00:00:00'),(103240,11,'XM8921','Synthetic anticholinergics, esters with tertiary amino group','Y','2025-10-23 00:00:00'),(103241,11,'XM26J4','Synthetic anticholinergics, quaternary ammonium compounds','Y','2025-10-23 00:00:00'),(103242,11,'XM7W64','Synthetic antispasmodics, amides with tertiary amines','Y','2025-10-23 00:00:00'),(103243,11,'6C42.2','Synthetic cannabinoid dependence','Y','2025-10-23 00:00:00'),(103244,11,'6C42.20','Synthetic cannabinoid dependence, current use','Y','2025-10-23 00:00:00'),(103245,11,'6C42.21','Synthetic cannabinoid dependence, early full remission','Y','2025-10-23 00:00:00'),(103246,11,'6C42.23','Synthetic cannabinoid dependence, sustained full remission','Y','2025-10-23 00:00:00'),(103247,11,'6C42.22','Synthetic cannabinoid dependence, sustained partial remission','Y','2025-10-23 00:00:00'),(103248,11,'6C42.2Z','Synthetic cannabinoid dependence, unspecified','Y','2025-10-23 00:00:00'),(103249,11,'6C42.3','Synthetic cannabinoid intoxication','Y','2025-10-23 00:00:00'),(103250,11,'6C42.4','Synthetic cannabinoid withdrawal','Y','2025-10-23 00:00:00'),(103251,11,'6C42.71','Synthetic cannabinoid-induced anxiety disorder','Y','2025-10-23 00:00:00'),(103252,11,'6C42.5','Synthetic cannabinoid-induced delirium','Y','2025-10-23 00:00:00'),(103253,11,'6C42.70','Synthetic cannabinoid-induced mood disorder','Y','2025-10-23 00:00:00'),(103254,11,'6C42.6','Synthetic cannabinoid-induced psychotic disorder','Y','2025-10-23 00:00:00'),(103255,11,'6C47.2','Synthetic cathinone dependence','Y','2025-10-23 00:00:00'),(103256,11,'6C47.20','Synthetic cathinone dependence, current use','Y','2025-10-23 00:00:00'),(103257,11,'6C47.21','Synthetic cathinone dependence, early full remission','Y','2025-10-23 00:00:00'),(103258,11,'6C47.23','Synthetic cathinone dependence, sustained full remission','Y','2025-10-23 00:00:00'),(103259,11,'6C47.22','Synthetic cathinone dependence, sustained partial remission','Y','2025-10-23 00:00:00'),(103260,11,'6C47.2Z','Synthetic cathinone dependence, unspecified','Y','2025-10-23 00:00:00'),(103261,11,'6C47.3','Synthetic cathinone intoxication','Y','2025-10-23 00:00:00'),(103262,11,'6C47.4','Synthetic cathinone withdrawal','Y','2025-10-23 00:00:00'),(103263,11,'6C47.71','Synthetic cathinone-induced anxiety disorder','Y','2025-10-23 00:00:00'),(103264,11,'6C47.5','Synthetic cathinone-induced delirium','Y','2025-10-23 00:00:00'),(103265,11,'6C47.73','Synthetic cathinone-induced impulse control disorder','Y','2025-10-23 00:00:00'),(103266,11,'6C47.70','Synthetic cathinone-induced mood disorder','Y','2025-10-23 00:00:00'),(103267,11,'6C47.72','Synthetic cathinone-induced obsessive-compulsive or related syndrome','Y','2025-10-23 00:00:00'),(103268,11,'6C47.6','Synthetic cathinone-induced psychotic disorder','Y','2025-10-23 00:00:00'),(103269,11,'6C47.61','Synthetic cathinone-induced psychotic disorder with delusions','Y','2025-10-23 00:00:00'),(103270,11,'6C47.60','Synthetic cathinone-induced psychotic disorder with hallucinations','Y','2025-10-23 00:00:00'),(103271,11,'6C47.62','Synthetic cathinone-induced psychotic disorder with mixed psychotic symptoms','Y','2025-10-23 00:00:00'),(103272,11,'6C47.6Z','Synthetic cathinone-induced psychotic disorder, unspecified','Y','2025-10-23 00:00:00'),(103273,11,'JB63.1','Syphilis complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(103274,11,'1A6Z','Syphilis, unspecified','Y','2025-10-23 00:00:00'),(103275,11,'XE05P','Syringe component of medical device','Y','2025-10-23 00:00:00'),(103276,11,'8D66.2','Syringobulbia','Y','2025-10-23 00:00:00'),(103277,11,'XH0BE5','Syringocystadenocarcinoma papilliferum','Y','2025-10-23 00:00:00'),(103278,11,'XH1PY0','Syringocystadenoma papilliferum','Y','2025-10-23 00:00:00'),(103279,11,'XH06Y5','Syringofibroadenoma','Y','2025-10-23 00:00:00'),(103280,11,'XH6325','Syringoma, NOS','Y','2025-10-23 00:00:00'),(103281,11,'XH9GB7','Syringomatous tumour of nipple','Y','2025-10-23 00:00:00'),(103282,11,'8D66.1','Syringomyelia due to certain specified cause','Y','2025-10-23 00:00:00'),(103283,11,'8D66','Syringomyelia or syringobulbia','Y','2025-10-23 00:00:00'),(103284,11,'8D66.Z','Syringomyelia or syringobulbia, unspecified','Y','2025-10-23 00:00:00'),(103285,11,'XM8AK5','Syrosingopine','Y','2025-10-23 00:00:00'),(103286,11,'XK7Z','Systematised distribution','Y','2025-10-23 00:00:00'),(103287,11,'4A85.30','Systemic allergic reaction due to Hymenoptera venom','Y','2025-10-23 00:00:00'),(103288,11,'XH6TZ4','Systemic EBV positive T-cell lymphoproliferative disease of childhood','Y','2025-10-23 00:00:00'),(103289,11,'2A90.4','Systemic Epstein-Barr Virus-positive T-cell lymphoma of childhood','Y','2025-10-23 00:00:00'),(103290,11,'MG46','Systemic inflammatory response syndrome of noninfectious origin','Y','2025-10-23 00:00:00'),(103291,11,'4A40.0','Systemic lupus erythematosus','Y','2025-10-23 00:00:00'),(103292,11,'4A40.00','Systemic lupus erythematosus with skin involvement','Y','2025-10-23 00:00:00'),(103293,11,'4A40.0Z','Systemic lupus erythematosus, unspecified','Y','2025-10-23 00:00:00'),(103294,11,'2A21.0','Systemic mastocytosis','Y','2025-10-23 00:00:00'),(103295,11,'XH1H01','Systemic mastocytosis with AHNMD','Y','2025-10-23 00:00:00'),(103296,11,'XH5191','Systemic mastocytosis with associated haematological clonal non-mast cell disorder','Y','2025-10-23 00:00:00'),(103297,11,'2A21.0Z','Systemic mastocytosis, unspecified','Y','2025-10-23 00:00:00'),(103298,11,'EA60.1','Systemic mycoses affecting skin','Y','2025-10-23 00:00:00'),(103299,11,'1F23.3','Systemic or invasive candidosis','Y','2025-10-23 00:00:00'),(103300,11,'1F23.3Z','Systemic or invasive candidosis, unspecified','Y','2025-10-23 00:00:00'),(103301,11,'4A42','Systemic sclerosis','Y','2025-10-23 00:00:00'),(103302,11,'4A42.Z','Systemic sclerosis, unspecified','Y','2025-10-23 00:00:00'),(103303,11,'BD73.2','Systemic vein obstruction','Y','2025-10-23 00:00:00'),(103304,11,'BD73.2Z','Systemic vein obstruction, unspecified','Y','2025-10-23 00:00:00'),(103305,11,'MC80.03','Systolic elevated blood pressure reading without diagnosis of hypertension','Y','2025-10-23 00:00:00'),(103306,11,'XH50W7','T lymphoblastic leukaemia/lymphoma','Y','2025-10-23 00:00:00'),(103307,11,'XA17G6','T1 level','Y','2025-10-23 00:00:00'),(103308,11,'XA4QU1','T10 level','Y','2025-10-23 00:00:00'),(103309,11,'XA9DV3','T11 level','Y','2025-10-23 00:00:00'),(103310,11,'XA6FB9','T12 level','Y','2025-10-23 00:00:00'),(103311,11,'XA6GU9','T2 level','Y','2025-10-23 00:00:00'),(103312,11,'XA7U15','T3 level','Y','2025-10-23 00:00:00'),(103313,11,'XA5UF4','T4 level','Y','2025-10-23 00:00:00'),(103314,11,'XA0D58','T5 level','Y','2025-10-23 00:00:00'),(103315,11,'XA5Q83','T6 level','Y','2025-10-23 00:00:00'),(103316,11,'XA79E1','T7 level','Y','2025-10-23 00:00:00'),(103317,11,'XA0N76','T8 level','Y','2025-10-23 00:00:00'),(103318,11,'XA5T86','T9 level','Y','2025-10-23 00:00:00'),(103319,11,'XE3ED','Table component of medical device','Y','2025-10-23 00:00:00'),(103320,11,'XE2F3','Table, stand, cupboard, shelf or partition','Y','2025-10-23 00:00:00'),(103321,11,'XM3711','Tacalcitol','Y','2025-10-23 00:00:00'),(103322,11,'MC81.0','Tachycardia, unspecified','Y','2025-10-23 00:00:00'),(103323,11,'XM4LN1','Tacrine','Y','2025-10-23 00:00:00'),(103324,11,'XM1661','Tacrolimus','Y','2025-10-23 00:00:00'),(103325,11,'MB27.26','Tactile hallucinations','Y','2025-10-23 00:00:00'),(103326,11,'XE7Z4','Tactile prompts or feedback','Y','2025-10-23 00:00:00'),(103327,11,'XM6G82','Tadalafil','Y','2025-10-23 00:00:00'),(103328,11,'XN0D8','Taenia','Y','2025-10-23 00:00:00'),(103329,11,'XN871','Taenia saginata','Y','2025-10-23 00:00:00'),(103330,11,'XN8XE','Taenia solium','Y','2025-10-23 00:00:00'),(103331,11,'1F76','Taeniasis','Y','2025-10-23 00:00:00'),(103332,11,'1F76.1','Taeniasis due to Taenia saginata','Y','2025-10-23 00:00:00'),(103333,11,'1F76.0','Taeniasis due to Taenia solium','Y','2025-10-23 00:00:00'),(103334,11,'1F76.Z','Taeniasis, unspecified','Y','2025-10-23 00:00:00'),(103335,11,'XM2AL2','Tafamidis','Y','2025-10-23 00:00:00'),(103336,11,'XM5EL4','Tafenoquine','Y','2025-10-23 00:00:00'),(103337,11,'XM3UC8','Tafluprost','Y','2025-10-23 00:00:00'),(103338,11,'XM4MB0','Tagraxofusp','Y','2025-10-23 00:00:00'),(103339,11,'XN8TT','Ta','Y','2025-10-23 00:00:00'),(103340,11,'XA1BZ8','Tail of helix','Y','2025-10-23 00:00:00'),(103341,11,'XA0CX6','Tail of pancreas','Y','2025-10-23 00:00:00'),(103342,11,'XM4SM0','Taipan snake venom','Y','2025-10-23 00:00:00'),(103343,11,'VD40','Taking care of household responsibilities [WHODAS]','Y','2025-10-23 00:00:00'),(103344,11,'XM3Z13','Talampicillin','Y','2025-10-23 00:00:00'),(103345,11,'XN79A','Talaromyces','Y','2025-10-23 00:00:00'),(103346,11,'XN0LD','Talaromyces marneffei','Y','2025-10-23 00:00:00'),(103347,11,'1F2K','Talaromycosis','Y','2025-10-23 00:00:00'),(103348,11,'XM4AA0','Talastine','Y','2025-10-23 00:00:00'),(103349,11,'XM5QR0','Talazoparib','Y','2025-10-23 00:00:00'),(103350,11,'XM28V1','Talbutal','Y','2025-10-23 00:00:00'),(103351,11,'XM3599','Talcum','Y','2025-10-23 00:00:00'),(103352,11,'XM0P47','Taleranol','Y','2025-10-23 00:00:00'),(103353,11,'XM8HN5','Taliglucerase alfa','Y','2025-10-23 00:00:00'),(103354,11,'XM1BM0','Talimogene laherparepvec','Y','2025-10-23 00:00:00'),(103355,11,'XM3156','Talinolol','Y','2025-10-23 00:00:00'),(103356,11,'LB98.22','Talipes calcaneovalgus','Y','2025-10-23 00:00:00'),(103357,11,'LB98.01','Talipes calcaneovarus','Y','2025-10-23 00:00:00'),(103358,11,'LB98.00','Talipes equinovarus','Y','2025-10-23 00:00:00'),(103359,11,'XA6546','Talocalcaneal ligament','Y','2025-10-23 00:00:00'),(103360,11,'XA0WY5','Talocalcaneonavicular joint','Y','2025-10-23 00:00:00'),(103361,11,'XA8MM7','Talocrural joint','Y','2025-10-23 00:00:00'),(103362,11,'XA1LF4','Talus','Y','2025-10-23 00:00:00'),(103363,11,'XM2UX2','Tamoxifen','Y','2025-10-23 00:00:00'),(103364,11,'XM3F82','Tamsulosin','Y','2025-10-23 00:00:00'),(103365,11,'XM58G8','Tanacetum plant','Y','2025-10-23 00:00:00'),(103366,11,'XN0K5','tanapox virus','Y','2025-10-23 00:00:00'),(103367,11,'XM70Q6','Tanezumab','Y','2025-10-23 00:00:00'),(103368,11,'MB25.01','Tangentiality','Y','2025-10-23 00:00:00'),(103369,11,'SE7A','Tangled cold and heat pattern (TM1)','Y','2025-10-23 00:00:00'),(103370,11,'XM1484','Tannic acid medicinal (astringent)','Y','2025-10-23 00:00:00'),(103371,11,'ED60.01','Tanning due to exposure to artificial sources of ultraviolet radiation','Y','2025-10-23 00:00:00'),(103372,11,'MB24.G','Tantrum','Y','2025-10-23 00:00:00'),(103373,11,'XH4BJ4','Tanycytic ependymoma','Y','2025-10-23 00:00:00'),(103374,11,'XE8MX','Tape for fixation component of medical device','Y','2025-10-23 00:00:00'),(103375,11,'XM25Z3','Tapentadol','Y','2025-10-23 00:00:00'),(103376,11,'XM4C94','Tar','Y','2025-10-23 00:00:00'),(103377,11,'XM8W74','Tar distillate','Y','2025-10-23 00:00:00'),(103378,11,'XM5LE8','Tar fumes','Y','2025-10-23 00:00:00'),(103379,11,'XM8WM2','Tar ointment','Y','2025-10-23 00:00:00'),(103380,11,'XM8095','Tarantula spider venom','Y','2025-10-23 00:00:00'),(103381,11,'QE04','Target of perceived adverse discrimination or persecution','Y','2025-10-23 00:00:00'),(103382,11,'XE2NY','Target or precision sports','Y','2025-10-23 00:00:00'),(103383,11,'XA6UL8','Tarsal canal','Y','2025-10-23 00:00:00'),(103384,11,'8C11.5','Tarsal tunnel syndrome','Y','2025-10-23 00:00:00'),(103385,11,'XA7NN4','Tarsal','Y','2025-10-23 00:00:00'),(103386,11,'XA2MY1','Tarsometatarsal joint','Y','2025-10-23 00:00:00'),(103387,11,'XM96Q1','Tartar emetic','Y','2025-10-23 00:00:00'),(103388,11,'XM7EL5','Tartaric acid','Y','2025-10-23 00:00:00'),(103389,11,'XM3DH4','Tartrate, laxative','Y','2025-10-23 00:00:00'),(103390,11,'XM6A32','Tartrated antimony (anti-infective)','Y','2025-10-23 00:00:00'),(103391,11,'XM0DX1','Tasimelteon','Y','2025-10-23 00:00:00'),(103392,11,'XM94J4','Tasonermin','Y','2025-10-23 00:00:00'),(103393,11,'XM0T42','Tasosartan','Y','2025-10-23 00:00:00'),(103394,11,'EH93.0','Tattoos or tattoo reactions','Y','2025-10-23 00:00:00'),(103395,11,'XM5FB8','Tauromustine','Y','2025-10-23 00:00:00'),(103396,11,'XM5FA9','Tauroselcholic acid','Y','2025-10-23 00:00:00'),(103397,11,'XM3PR6','Tavaborole','Y','2025-10-23 00:00:00'),(103398,11,'XM05L1','Taxanes','Y','2025-10-23 00:00:00'),(103399,11,'XM5YT6','Taxus plant','Y','2025-10-23 00:00:00'),(103400,11,'XM6BQ3','Tazarotene','Y','2025-10-23 00:00:00'),(103401,11,'XM4WB3','Tazemetostat','Y','2025-10-23 00:00:00'),(103402,11,'XM2D37','Tazobactam','Y','2025-10-23 00:00:00'),(103403,11,'2A90.1','T-cell large granular lymphocytic leukaemia','Y','2025-10-23 00:00:00'),(103404,11,'XH6687','T-cell large granular lymphocytic leukaemia','Y','2025-10-23 00:00:00'),(103405,11,'2A90.0','T-cell prolymphocytic leukaemia','Y','2025-10-23 00:00:00'),(103406,11,'XH0WP6','T-cell/histiocyte rich large B-cell lymphoma','Y','2025-10-23 00:00:00'),(103407,11,'2A81.4','T-cell/histiocyte rich large B-cell lymphoma','Y','2025-10-23 00:00:00'),(103408,11,'XE3GK','Team ball sports','Y','2025-10-23 00:00:00'),(103409,11,'XE2BF','Team bat or stick sports','Y','2025-10-23 00:00:00'),(103410,11,'XE2BG','Team water sports','Y','2025-10-23 00:00:00'),(103411,11,'NC93.4','Tear of articular cartilage of knee','Y','2025-10-23 00:00:00'),(103412,11,'NC93.31','Tear of lateral meniscus','Y','2025-10-23 00:00:00'),(103413,11,'NC93.30','Tear of medial meniscus','Y','2025-10-23 00:00:00'),(103414,11,'NC93.3','Tear of meniscus, current','Y','2025-10-23 00:00:00'),(103415,11,'NC93.3Z','Tear of meniscus, current, unspecified','Y','2025-10-23 00:00:00'),(103416,11,'XM61C9','Tear solution','Y','2025-10-23 00:00:00'),(103417,11,'9A06.5','Tear Trough Deformity','Y','2025-10-23 00:00:00'),(103418,11,'XE2AN','Tear, rip or hole in device packaging','Y','2025-10-23 00:00:00'),(103419,11,'XM7LH6','Tebupirimfos','Y','2025-10-23 00:00:00'),(103420,11,'XM8ZM1','Technetium (99mTc) compounds','Y','2025-10-23 00:00:00'),(103421,11,'XM26G2','Teclothiazide','Y','2025-10-23 00:00:00'),(103422,11,'XM05U5','Teclozan','Y','2025-10-23 00:00:00'),(103423,11,'XM7FP8','Tecovirimat','Y','2025-10-23 00:00:00'),(103424,11,'XM8QN8','Tedisamil','Y','2025-10-23 00:00:00'),(103425,11,'XM9GT9','Tedizolid','Y','2025-10-23 00:00:00'),(103426,11,'XM7VJ0','Teduglutide','Y','2025-10-23 00:00:00'),(103427,11,'XA6CZ2','Teeth','Y','2025-10-23 00:00:00'),(103428,11,'DA07.60','Teething syndrome','Y','2025-10-23 00:00:00'),(103429,11,'XM5QE0','Tefluthrin','Y','2025-10-23 00:00:00'),(103430,11,'XM10L4','Tegafur','Y','2025-10-23 00:00:00'),(103431,11,'XM2SC1','Tegaserod','Y','2025-10-23 00:00:00'),(103432,11,'XM3MK2','Tegoprazan','Y','2025-10-23 00:00:00'),(103433,11,'XM2004','Teicoplanin','Y','2025-10-23 00:00:00'),(103434,11,'XH5CL5','Telangiectatic osteosarcoma','Y','2025-10-23 00:00:00'),(103435,11,'XM2WF9','Telaprevir','Y','2025-10-23 00:00:00'),(103436,11,'XM8WT1','Telavancin','Y','2025-10-23 00:00:00'),(103437,11,'XM2P85','Telbivudine','Y','2025-10-23 00:00:00'),(103438,11,'9A00.1','Telecanthus','Y','2025-10-23 00:00:00'),(103439,11,'XE884','Telemetry component of medical device','Y','2025-10-23 00:00:00'),(103440,11,'XE5H8','Telemetry discrepancy','Y','2025-10-23 00:00:00'),(103441,11,'XE0MT','Telephone pole, Stobie pole','Y','2025-10-23 00:00:00'),(103442,11,'XE2A3','Telephone, mobile phone, cellular phone','Y','2025-10-23 00:00:00'),(103443,11,'XE6SR','Television','Y','2025-10-23 00:00:00'),(103444,11,'XE3TY','Television table, stand, cupboard','Y','2025-10-23 00:00:00'),(103445,11,'XM5TV4','Telithromycin','Y','2025-10-23 00:00:00'),(103446,11,'XM0XQ4','Tellurium','Y','2025-10-23 00:00:00'),(103447,11,'XM2P63','Telmisartan','Y','2025-10-23 00:00:00'),(103448,11,'ED70.3','Telogen effluvium','Y','2025-10-23 00:00:00'),(103449,11,'ED70.3Y','Telogen hair shedding due to other specified cause','Y','2025-10-23 00:00:00'),(103450,11,'XM98Z1','Temafloxacin','Y','2025-10-23 00:00:00'),(103451,11,'XM3215','Temazepam','Y','2025-10-23 00:00:00'),(103452,11,'XM25N5','Temocapril','Y','2025-10-23 00:00:00'),(103453,11,'XM1QC3','Temocillin','Y','2025-10-23 00:00:00'),(103454,11,'XM04X3','Temoporfin','Y','2025-10-23 00:00:00'),(103455,11,'XM3VF4','Temozolomide','Y','2025-10-23 00:00:00'),(103456,11,'XE30P','Temperature compensator component of medical device','Y','2025-10-23 00:00:00'),(103457,11,'XE586','Temperature problem','Y','2025-10-23 00:00:00'),(103458,11,'XE3W9','Temperature sensor component of medical device','Y','2025-10-23 00:00:00'),(103459,11,'XA9T94','Temple','Y','2025-10-23 00:00:00'),(103460,11,'XA2P19','Temporal bone','Y','2025-10-23 00:00:00'),(103461,11,'XA1VA9','Temporal branch of the facial nerve','Y','2025-10-23 00:00:00'),(103462,11,'XA65G3','Temporal branches of the anterior and posterior meningeal artery','Y','2025-10-23 00:00:00'),(103463,11,'XA97T4','Temporal lobe','Y','2025-10-23 00:00:00'),(103464,11,'XA9DZ0','Temporal scalp','Y','2025-10-23 00:00:00'),(103465,11,'XA26C1','Temporal scalp margin','Y','2025-10-23 00:00:00'),(103466,11,'XA6HG4','Temporal vein','Y','2025-10-23 00:00:00'),(103467,11,'XA01H9','Temporalis muscle','Y','2025-10-23 00:00:00'),(103468,11,'XA7D16','Temporalis tendon','Y','2025-10-23 00:00:00'),(103469,11,'XD9YY6','Temporary haemodialysis, catheters','Y','2025-10-23 00:00:00'),(103470,11,'XD8H28','Temporary peritoneal dialysis lines','Y','2025-10-23 00:00:00'),(103471,11,'XD2M70','Temporary peritoneal dialysis lines others','Y','2025-10-23 00:00:00'),(103472,11,'XD6606','Temporary peritoneal dialysis lines, gravimetric (APD)','Y','2025-10-23 00:00:00'),(103473,11,'XD89M1','Temporary peritoneal dialysis lines, with pump (APD)','Y','2025-10-23 00:00:00'),(103474,11,'XA2SM2','Temporomandibular joint','Y','2025-10-23 00:00:00'),(103475,11,'DA0E.8','Temporomandibular joint disorders','Y','2025-10-23 00:00:00'),(103476,11,'XA4WJ7','Temporomandibular ligament','Y','2025-10-23 00:00:00'),(103477,11,'XA1CQ1','Temporoparietalis muscle','Y','2025-10-23 00:00:00'),(103478,11,'XA8BT2','Temporoparietalis tendon','Y','2025-10-23 00:00:00'),(103479,11,'XM93U4','Temsirolimus','Y','2025-10-23 00:00:00'),(103480,11,'XM6V10','Tenamfetamine','Y','2025-10-23 00:00:00'),(103481,11,'MB47.C','Tendency to fall','Y','2025-10-23 00:00:00'),(103482,11,'EB90.23','Tendinous xanthoma','Y','2025-10-23 00:00:00'),(103483,11,'XA3XC9','Tendon of Todaro','Y','2025-10-23 00:00:00'),(103484,11,'XA4797','Tendons of the abdomen','Y','2025-10-23 00:00:00'),(103485,11,'XA9Z26','Tendons of the back','Y','2025-10-23 00:00:00'),(103486,11,'XA3PP9','Tendons of the head and neck','Y','2025-10-23 00:00:00'),(103487,11,'XA5L93','Tendons of the lower extremity','Y','2025-10-23 00:00:00'),(103488,11,'XA1SN1','Tendons of the pelvis and perineum','Y','2025-10-23 00:00:00'),(103489,11,'XA3SA1','Tendons of the thorax','Y','2025-10-23 00:00:00'),(103490,11,'XA0WU6','Tendons of the upper extremity','Y','2025-10-23 00:00:00'),(103491,11,'XM5ZA2','Tenecteplase','Y','2025-10-23 00:00:00'),(103492,11,'XM7Z95','Tenidap','Y','2025-10-23 00:00:00'),(103493,11,'XM4565','Teniposide','Y','2025-10-23 00:00:00'),(103494,11,'XM5KH9','Tenitramine','Y','2025-10-23 00:00:00'),(103495,11,'XM06Z6','Tenofovir alafenamide','Y','2025-10-23 00:00:00'),(103496,11,'XM67N3','Tenofovir disoproxil','Y','2025-10-23 00:00:00'),(103497,11,'XM75H2','Tenofovir disoproxil and Emtricitabine','Y','2025-10-23 00:00:00'),(103498,11,'XM1CP3','Tenoglicin','Y','2025-10-23 00:00:00'),(103499,11,'XM5RX3','Tenonitrozole','Y','2025-10-23 00:00:00'),(103500,11,'XH52J9','Tenosynovial giant cell tumour, diffuse','Y','2025-10-23 00:00:00'),(103501,11,'XH6911','Tenosynovial giant cell tumour, localised','Y','2025-10-23 00:00:00'),(103502,11,'XH0HZ1','Tenosynovial giant cell tumour, NOS','Y','2025-10-23 00:00:00'),(103503,11,'FB40','Tenosynovitis','Y','2025-10-23 00:00:00'),(103504,11,'FB40.Z','Tenosynovitis, unspecified','Y','2025-10-23 00:00:00'),(103505,11,'XM1867','Tenoxicam','Y','2025-10-23 00:00:00'),(103506,11,'8A81','Tension-type headache','Y','2025-10-23 00:00:00'),(103507,11,'8A81.Z','Tension-type headache, unspecified','Y','2025-10-23 00:00:00'),(103508,11,'XA11U3','Tensor fasciae lata muscle','Y','2025-10-23 00:00:00'),(103509,11,'XA33Q1','Tensor fasciae lata tendon','Y','2025-10-23 00:00:00'),(103510,11,'XA42R7','Tensor tympani muscle','Y','2025-10-23 00:00:00'),(103511,11,'XA5956','Tensor tympani tendon','Y','2025-10-23 00:00:00'),(103512,11,'XA7LF2','Tensor veli palatini muscle','Y','2025-10-23 00:00:00'),(103513,11,'XA2W44','Tensor veli palatini tendon','Y','2025-10-23 00:00:00'),(103514,11,'XE14D','Tent','Y','2025-10-23 00:00:00'),(103515,11,'XA54R4','Tenth rib','Y','2025-10-23 00:00:00'),(103516,11,'XA2VK2','Tenth thoracic nerve root','Y','2025-10-23 00:00:00'),(103517,11,'XA5AZ7','Tenth thoracic spinal nerve','Y','2025-10-23 00:00:00'),(103518,11,'XA0AV7','Tenth thoracic vertebra','Y','2025-10-23 00:00:00'),(103519,11,'KA40.05','Tentorial tear due to birth injury','Y','2025-10-23 00:00:00'),(103520,11,'XA7N98','Tentorium cerebelli','Y','2025-10-23 00:00:00'),(103521,11,'XM1PM8','Tenuazonic acid','Y','2025-10-23 00:00:00'),(103522,11,'XM0L32','TEPA','Y','2025-10-23 00:00:00'),(103523,11,'XM6P90','TEPP','Y','2025-10-23 00:00:00'),(103524,11,'XM3HS0','Teprotide','Y','2025-10-23 00:00:00'),(103525,11,'XM8AR9','Teprotumumab','Y','2025-10-23 00:00:00'),(103526,11,'XH56W1','Teratocarcinoma','Y','2025-10-23 00:00:00'),(103527,11,'XH1P78','Teratocarcinosarcoma','Y','2025-10-23 00:00:00'),(103528,11,'XH0AM8','Teratoid medulloepithelioma','Y','2025-10-23 00:00:00'),(103529,11,'XH5NR7','Teratoid medulloepithelioma, benign','Y','2025-10-23 00:00:00'),(103530,11,'2F36.3','Teratoma of orbit','Y','2025-10-23 00:00:00'),(103531,11,'XH33E8','Teratoma with malignant transformation','Y','2025-10-23 00:00:00'),(103532,11,'XH3GV5','Teratoma, benign','Y','2025-10-23 00:00:00'),(103533,11,'XH7YZ9','Teratoma, malignant, NOS','Y','2025-10-23 00:00:00'),(103534,11,'XH83G5','Teratoma, NOS','Y','2025-10-23 00:00:00'),(103535,11,'XH52Q4','Teratoma, prepubertal type','Y','2025-10-23 00:00:00'),(103536,11,'XM9LH2','Terazosin','Y','2025-10-23 00:00:00'),(103537,11,'XM7HQ1','Terbinafine','Y','2025-10-23 00:00:00'),(103538,11,'XM7014','Terbinafine topical','Y','2025-10-23 00:00:00'),(103539,11,'XM2QB5','Terbufos','Y','2025-10-23 00:00:00'),(103540,11,'XM6NE3','Terbutaline','Y','2025-10-23 00:00:00'),(103541,11,'XM33Y9','Terconazole','Y','2025-10-23 00:00:00'),(103542,11,'XA7RM2','Teres major muscle','Y','2025-10-23 00:00:00'),(103543,11,'XA09K4','Teres major tendon','Y','2025-10-23 00:00:00'),(103544,11,'XA3CP1','Teres minor muscle','Y','2025-10-23 00:00:00'),(103545,11,'XA42P8','Teres minor tendon','Y','2025-10-23 00:00:00'),(103546,11,'XM2S36','Terfenadine','Y','2025-10-23 00:00:00'),(103547,11,'XM3MG0','Terguride','Y','2025-10-23 00:00:00'),(103548,11,'XM1835','Teriflunomide','Y','2025-10-23 00:00:00'),(103549,11,'XM59Z3','Teriparatide','Y','2025-10-23 00:00:00'),(103550,11,'XM9TD0','Terizidone','Y','2025-10-23 00:00:00'),(103551,11,'XM4E12','Terlipressin','Y','2025-10-23 00:00:00'),(103552,11,'XA51U4','Terminal branches of the proper hepatic artery','Y','2025-10-23 00:00:00'),(103553,11,'XA8680','Terminal vein','Y','2025-10-23 00:00:00'),(103554,11,'KD3A','Termination of pregnancy, affecting surviving fetus or newborn','Y','2025-10-23 00:00:00'),(103555,11,'XN8DL','Ternidens','Y','2025-10-23 00:00:00'),(103556,11,'XM4DW3','Terodiline','Y','2025-10-23 00:00:00'),(103557,11,'XM4GA8','Teroxalene','Y','2025-10-23 00:00:00'),(103558,11,'XM0ES0','Terpin hydrate (cis)','Y','2025-10-23 00:00:00'),(103559,11,'XE9P0','Terrace house or row house','Y','2025-10-23 00:00:00'),(103560,11,'XM8DS9','Terrestrial snake venom','Y','2025-10-23 00:00:00'),(103561,11,'XM6489','Tertatolol','Y','2025-10-23 00:00:00'),(103562,11,'XM8U00','Tertiary amines','Y','2025-10-23 00:00:00'),(103563,11,'1C1D.2','Tertiary yaws','Y','2025-10-23 00:00:00'),(103564,11,'XM9109','Tesamorelin','Y','2025-10-23 00:00:00'),(103565,11,'XE68H','Test strip component of medical device','Y','2025-10-23 00:00:00'),(103566,11,'LD2A.2','Testicular agenesis','Y','2025-10-23 00:00:00'),(103567,11,'XA14M8','Testicular appendage','Y','2025-10-23 00:00:00'),(103568,11,'XA0UK9','Testicular artery','Y','2025-10-23 00:00:00'),(103569,11,'5A81','Testicular dysfunction or testosterone-related disorders','Y','2025-10-23 00:00:00'),(103570,11,'5A81.Z','Testicular dysfunction or testosterone-related disorders, unspecified','Y','2025-10-23 00:00:00'),(103571,11,'5A81.0','Testicular hyperfunction','Y','2025-10-23 00:00:00'),(103572,11,'5A81.1','Testicular hypofunction','Y','2025-10-23 00:00:00'),(103573,11,'MF40.21','Testicular pain','Y','2025-10-23 00:00:00'),(103574,11,'XE9HD','Testing of actual or suspected device','Y','2025-10-23 00:00:00'),(103575,11,'XE2ZR','Testing of device from other lot batch retained by manufacturer','Y','2025-10-23 00:00:00'),(103576,11,'XE4X1','Testing of device from other lot or batch returned from user','Y','2025-10-23 00:00:00'),(103577,11,'XE4S0','Testing of device from same lot batch returned from user','Y','2025-10-23 00:00:00'),(103578,11,'XE7XH','Testing of device from same lot or batch retained by manufacturer','Y','2025-10-23 00:00:00'),(103579,11,'XE1XT','Testing of model variant','Y','2025-10-23 00:00:00'),(103580,11,'XE89L','Testing of patient sample or reference material using competitor\'s device','Y','2025-10-23 00:00:00'),(103581,11,'XE6FS','Testing of patient sample or reference material using manufacturer\'s device','Y','2025-10-23 00:00:00'),(103582,11,'XE9MY','Testing of patient sample or reference material using reference method','Y','2025-10-23 00:00:00'),(103583,11,'XE8XV','Testing of raw or starting materials','Y','2025-10-23 00:00:00'),(103584,11,'XA4947','Testis','Y','2025-10-23 00:00:00'),(103585,11,'XM5T49','Testolactone','Y','2025-10-23 00:00:00'),(103586,11,'XM3HM6','Testosterone','Y','2025-10-23 00:00:00'),(103587,11,'XM3028','Testosterone-5-alpha reductase inhibitors','Y','2025-10-23 00:00:00'),(103588,11,'XM9H30','Tests for gastric secretion','Y','2025-10-23 00:00:00'),(103589,11,'XM60V4','Tests for liver functional capacity','Y','2025-10-23 00:00:00'),(103590,11,'XM76Z9','Tests for pancreatic function','Y','2025-10-23 00:00:00'),(103591,11,'XM4E68','Tests for renal function and ureteral injuries','Y','2025-10-23 00:00:00'),(103592,11,'XM0N07','Tests for thyroid function','Y','2025-10-23 00:00:00'),(103593,11,'1C13','Tetanus','Y','2025-10-23 00:00:00'),(103594,11,'XM32Q5','Tetanus and diphtheria vaccines','Y','2025-10-23 00:00:00'),(103595,11,'XM18X1','Tetanus antitoxin','Y','2025-10-23 00:00:00'),(103596,11,'XM8824','Tetanus immunoglobulin','Y','2025-10-23 00:00:00'),(103597,11,'1C15','Tetanus neonatorum','Y','2025-10-23 00:00:00'),(103598,11,'XM2042','Tetanus toxoid or vaccine antitoxin','Y','2025-10-23 00:00:00'),(103599,11,'XM2GK5','Tetanus toxoid or vaccine immune globulin (human)','Y','2025-10-23 00:00:00'),(103600,11,'XM8XH5','Tetanus toxoid or vaccines toxoid with diphtheria toxoid','Y','2025-10-23 00:00:00'),(103601,11,'XM29H5','Tetanus toxoid vaccines','Y','2025-10-23 00:00:00'),(103602,11,'XM1G86','Tetanus toxoid, combinations with diphtheria toxoid vaccines','Y','2025-10-23 00:00:00'),(103603,11,'XM9AK2','Tetanus toxoid, combinations with tetanus immunoglobulin vaccines','Y','2025-10-23 00:00:00'),(103604,11,'XM5L44','Tetanus vaccines','Y','2025-10-23 00:00:00'),(103605,11,'XM31Q8','Tetanus, diphtheria, acellular pertussis vaccines','Y','2025-10-23 00:00:00'),(103606,11,'MB47.D','Tetany','Y','2025-10-23 00:00:00'),(103607,11,'5B5K.10','Tetany due to acute calcium deficiency','Y','2025-10-23 00:00:00'),(103608,11,'XM9DZ4','Tetrabenazine','Y','2025-10-23 00:00:00'),(103609,11,'XM1HW1','Tetracaine','Y','2025-10-23 00:00:00'),(103610,11,'XM32E4','Tetracaine nerve block','Y','2025-10-23 00:00:00'),(103611,11,'XM9H96','Tetracaine regional','Y','2025-10-23 00:00:00'),(103612,11,'XM9CQ9','Tetracaine spinal','Y','2025-10-23 00:00:00'),(103613,11,'XM4D89','Tetrachloroethane','Y','2025-10-23 00:00:00'),(103614,11,'XM4N54','Tetrachloroethane vapor','Y','2025-10-23 00:00:00'),(103615,11,'XM3DA8','Tetrachloroethylene','Y','2025-10-23 00:00:00'),(103616,11,'XM7PN4','Tetrachloroethylene medicinal','Y','2025-10-23 00:00:00'),(103617,11,'XM86D7','Tetrachloroethylene vapor','Y','2025-10-23 00:00:00'),(103618,11,'XM4B77','Tetracosactide','Y','2025-10-23 00:00:00'),(103619,11,'XM52T6','Tetracosactrin','Y','2025-10-23 00:00:00'),(103620,11,'XM0BP1','Tetracycline','Y','2025-10-23 00:00:00'),(103621,11,'XM1CM9','Tetracycline and oleandomycin','Y','2025-10-23 00:00:00'),(103622,11,'MG50.00','Tetracycline resistant Acinetobacter baumannii','Y','2025-10-23 00:00:00'),(103623,11,'XM53X2','Tetracycline topical','Y','2025-10-23 00:00:00'),(103624,11,'XM6BS1','Tetradifon','Y','2025-10-23 00:00:00'),(103625,11,'XM6JW6','Tetraethylammonium chloride','Y','2025-10-23 00:00:00'),(103626,11,'XM99S5','Tetraethylthiuram disulfide','Y','2025-10-23 00:00:00'),(103627,11,'XM1MS7','Tetragalacturonic acid hydroxymethylester','Y','2025-10-23 00:00:00'),(103628,11,'XM4HM2','Tetrahydrocannabinol','Y','2025-10-23 00:00:00'),(103629,11,'XM5XP8','Tetrahydrofuran','Y','2025-10-23 00:00:00'),(103630,11,'XM6U56','Tetrahydropyrimidine derivatives','Y','2025-10-23 00:00:00'),(103631,11,'XM5RC2','Tetrahydrozoline','Y','2025-10-23 00:00:00'),(103632,11,'XM2GY2','Tetralin','Y','2025-10-23 00:00:00'),(103633,11,'LA88.2','Tetralogy of Fallot','Y','2025-10-23 00:00:00'),(103634,11,'LA88.20','Tetralogy of Fallot with absent pulmonary valve syndrome','Y','2025-10-23 00:00:00'),(103635,11,'LA88.21','Tetralogy of Fallot with pulmonary atresia','Y','2025-10-23 00:00:00'),(103636,11,'LA88.22','Tetralogy of Fallot with pulmonary atresia and systemic-to-pulmonary collateral artery','Y','2025-10-23 00:00:00'),(103637,11,'LA88.2Z','Tetralogy of Fallot, unspecified','Y','2025-10-23 00:00:00'),(103638,11,'XM1MW0','Tetramethrin','Y','2025-10-23 00:00:00'),(103639,11,'XM0HQ1','Tetramethylthiuram disulfide','Y','2025-10-23 00:00:00'),(103640,11,'XM2GG6','Tetramethylthiuram medicinal','Y','2025-10-23 00:00:00'),(103641,11,'XM3BY9','Tetramethylthiuram monosulphide','Y','2025-10-23 00:00:00'),(103642,11,'XM93X2','Tetramisole','Y','2025-10-23 00:00:00'),(103643,11,'XM07V4','Tetranicotinoyl fructose','Y','2025-10-23 00:00:00'),(103644,11,'MB50','Tetraplegia','Y','2025-10-23 00:00:00'),(103645,11,'MB50.Z','Tetraplegia, unspecified','Y','2025-10-23 00:00:00'),(103646,11,'LD42.1','Tetraploidy','Y','2025-10-23 00:00:00'),(103647,11,'XM2RH8','Tetrazepam','Y','2025-10-23 00:00:00'),(103648,11,'XM7FH1','Tetrodotoxin','Y','2025-10-23 00:00:00'),(103649,11,'XM8296','Tetronal','Y','2025-10-23 00:00:00'),(103650,11,'XM9ZV3','Tetryl','Y','2025-10-23 00:00:00'),(103651,11,'XM9MS2','Tetrylammonium chloride','Y','2025-10-23 00:00:00'),(103652,11,'XM0EN5','Texas coralsnake venom','Y','2025-10-23 00:00:00'),(103653,11,'XM9FP1','Texas redheaded centipede venom','Y','2025-10-23 00:00:00'),(103654,11,'XE5XN','Textiles','Y','2025-10-23 00:00:00'),(103655,11,'XM9Y50','Tezepelumab','Y','2025-10-23 00:00:00'),(103656,11,'XH0HS7','T-gamma lymphoproliferative disease','Y','2025-10-23 00:00:00'),(103657,11,'XA7L93','Thalamus','Y','2025-10-23 00:00:00'),(103658,11,'3A50','Thalassaemias','Y','2025-10-23 00:00:00'),(103659,11,'3A50.Z','Thalassaemias, unspecified','Y','2025-10-23 00:00:00'),(103660,11,'3A50.01','Thalassaemic alpha-chain variants','Y','2025-10-23 00:00:00'),(103661,11,'XM6B78','Thalidomide','Y','2025-10-23 00:00:00'),(103662,11,'XM63C5','Thallium','Y','2025-10-23 00:00:00'),(103663,11,'XM9YD2','Thallium sulfate','Y','2025-10-23 00:00:00'),(103664,11,'LD24.02','Thanatophoric dysplasia','Y','2025-10-23 00:00:00'),(103665,11,'XM2358','Thebacon','Y','2025-10-23 00:00:00'),(103666,11,'XM8804','Thebaine','Y','2025-10-23 00:00:00'),(103667,11,'GA18.2','Theca lutein cyst','Y','2025-10-23 00:00:00'),(103668,11,'XH0Z30','Thecoma, luteinized','Y','2025-10-23 00:00:00'),(103669,11,'XH1JS6','Thecoma, malignant','Y','2025-10-23 00:00:00'),(103670,11,'XH34A0','Thecoma, NOS','Y','2025-10-23 00:00:00'),(103671,11,'XM7ZS2','Thenalidine','Y','2025-10-23 00:00:00'),(103672,11,'XM7JY5','Thenalidine topical','Y','2025-10-23 00:00:00'),(103673,11,'XA2JN4','Thenar eminence','Y','2025-10-23 00:00:00'),(103674,11,'XM8YH0','Thenoic acid','Y','2025-10-23 00:00:00'),(103675,11,'XM39Y4','Thenyldiamine','Y','2025-10-23 00:00:00'),(103676,11,'XM4L37','Theobromine','Y','2025-10-23 00:00:00'),(103677,11,'XM1CS6','Theodrenaline','Y','2025-10-23 00:00:00'),(103678,11,'XM1FP4','Theophylline','Y','2025-10-23 00:00:00'),(103679,11,'XM07L0','Theophylline aminobenzoic acid','Y','2025-10-23 00:00:00'),(103680,11,'XM07F4','Theophylline piperazine p-amino-benzoate','Y','2025-10-23 00:00:00'),(103681,11,'XE2MC','Therapeutic or diagnostic output failure','Y','2025-10-23 00:00:00'),(103682,11,'XM45C8','Therapeutic radiopharmaceuticals','Y','2025-10-23 00:00:00'),(103683,11,'XE1US','Therapy delivered to incorrect body area','Y','2025-10-23 00:00:00'),(103684,11,'2A60.20','Therapy related acute myeloid leukaemia or myelodysplastic syndrome','Y','2025-10-23 00:00:00'),(103685,11,'XH7045','Therapy related myeloid neoplasm','Y','2025-10-23 00:00:00'),(103686,11,'XH6Z50','Therapy-related acute myeloid leukaemia, alkylating agent related','Y','2025-10-23 00:00:00'),(103687,11,'XH4EJ0','Therapy-related acute myeloid leukaemia, epipodophyllotoxin-related','Y','2025-10-23 00:00:00'),(103688,11,'XH0L58','Therapy-related myelodysplastic syndrome, NOS','Y','2025-10-23 00:00:00'),(103689,11,'2A60.2','Therapy-related myeloid neoplasms','Y','2025-10-23 00:00:00'),(103690,11,'2A60.2Z','Therapy-related myeloid neoplasms, unspecified','Y','2025-10-23 00:00:00'),(103691,11,'XE6DP','Thermal decomposition of device','Y','2025-10-23 00:00:00'),(103692,11,'PK10','Thermal or blast effects of nuclear weapon during armed conflict','Y','2025-10-23 00:00:00'),(103693,11,'XE8XM','Thermal problem with device identified','Y','2025-10-23 00:00:00'),(103694,11,'XE019','Thermometer component of medical device','Y','2025-10-23 00:00:00'),(103695,11,'XE56F','Thermostat component of medical device','Y','2025-10-23 00:00:00'),(103696,11,'XM6WF4','Thevetia peruviana plant','Y','2025-10-23 00:00:00'),(103697,11,'XM7ZN0','Thiabendazole nonmedicinal','Y','2025-10-23 00:00:00'),(103698,11,'XM4XN0','Thialbarbital','Y','2025-10-23 00:00:00'),(103699,11,'XM99P0','Thiambutosine','Y','2025-10-23 00:00:00'),(103700,11,'XM50T4','Thiamine','Y','2025-10-23 00:00:00'),(103701,11,'XM40F4','Thiamphenicol','Y','2025-10-23 00:00:00'),(103702,11,'XM66H8','Thiamylal','Y','2025-10-23 00:00:00'),(103703,11,'XM8UK0','Thiamylal sodium','Y','2025-10-23 00:00:00'),(103704,11,'XM0ST5','Thiazesim','Y','2025-10-23 00:00:00'),(103705,11,'XM7XR3','Thiazide derivatives','Y','2025-10-23 00:00:00'),(103706,11,'XM29Q8','Thiazinam','Y','2025-10-23 00:00:00'),(103707,11,'XM6YW4','Thiazinamium metilsulfate','Y','2025-10-23 00:00:00'),(103708,11,'XM4UA3','Thiazolidinediones','Y','2025-10-23 00:00:00'),(103709,11,'XM9QY1','Thiethylperazine','Y','2025-10-23 00:00:00'),(103710,11,'XA5S78','Thigh','Y','2025-10-23 00:00:00'),(103711,11,'XM9ZY9','Thimerosal','Y','2025-10-23 00:00:00'),(103712,11,'XM0AR8','Thioacetazone','Y','2025-10-23 00:00:00'),(103713,11,'XM5MQ5','Thioacetazone with isoniazid','Y','2025-10-23 00:00:00'),(103714,11,'XM4NL3','Thiobarbital sodium','Y','2025-10-23 00:00:00'),(103715,11,'XM1QW9','Thiobarbiturate anaesthetic','Y','2025-10-23 00:00:00'),(103716,11,'XM9KU4','Thiobismol','Y','2025-10-23 00:00:00'),(103717,11,'XM72F2','Thiobutabarbital sodium','Y','2025-10-23 00:00:00'),(103718,11,'XM0J68','Thiocarbamate pesticides, not elsewhere classified','Y','2025-10-23 00:00:00'),(103719,11,'XM3BE3','Thiocarbamide derivatives','Y','2025-10-23 00:00:00'),(103720,11,'XM9UP9','Thiocarbarsone','Y','2025-10-23 00:00:00'),(103721,11,'XM52Y2','Thiocolchicoside','Y','2025-10-23 00:00:00'),(103722,11,'XM31S0','Thioctamide','Y','2025-10-23 00:00:00'),(103723,11,'XM9CG5','Thioctic acid','Y','2025-10-23 00:00:00'),(103724,11,'XM3358','Thiofanox','Y','2025-10-23 00:00:00'),(103725,11,'XM1W96','Thioglycolate','Y','2025-10-23 00:00:00'),(103726,11,'XM6826','Thioglycolic acid','Y','2025-10-23 00:00:00'),(103727,11,'XM9VJ2','Thiomercaptomerin','Y','2025-10-23 00:00:00'),(103728,11,'XM1177','Thiomerin','Y','2025-10-23 00:00:00'),(103729,11,'XM72Q5','Thiometon','Y','2025-10-23 00:00:00'),(103730,11,'XM4T49','Thionazin','Y','2025-10-23 00:00:00'),(103731,11,'XM0EL8','Thiopental sodium','Y','2025-10-23 00:00:00'),(103732,11,'XM7E92','Thiophanate-methyl','Y','2025-10-23 00:00:00'),(103733,11,'XM0PU2','Thiopropazate','Y','2025-10-23 00:00:00'),(103734,11,'XM1V98','Thioproperazine','Y','2025-10-23 00:00:00'),(103735,11,'XM4DG6','Thioridazine','Y','2025-10-23 00:00:00'),(103736,11,'XM3MF9','Thiosinamine','Y','2025-10-23 00:00:00'),(103737,11,'XM6NW5','Thiosulfate','Y','2025-10-23 00:00:00'),(103738,11,'XM8QS9','Thiotepa','Y','2025-10-23 00:00:00'),(103739,11,'XM8X98','Thiouracil (benzyl) (methyl) (propyl)','Y','2025-10-23 00:00:00'),(103740,11,'XM3G29','Thiourea','Y','2025-10-23 00:00:00'),(103741,11,'XM8X87','Thioxanthene derivatives','Y','2025-10-23 00:00:00'),(103742,11,'XM0GS2','Thiphenamil','Y','2025-10-23 00:00:00'),(103743,11,'XM7KD1','Thiram medicinal','Y','2025-10-23 00:00:00'),(103744,11,'XA2MT0','Third cervical nerve root','Y','2025-10-23 00:00:00'),(103745,11,'XA7LF0','Third cervical spinal nerve','Y','2025-10-23 00:00:00'),(103746,11,'XA2W05','Third cervical vertebra','Y','2025-10-23 00:00:00'),(103747,11,'DB60.2','Third degree haemorrhoids','Y','2025-10-23 00:00:00'),(103748,11,'JB09.2','Third degree perineal laceration during delivery','Y','2025-10-23 00:00:00'),(103749,11,'MG50.22','Third generation cephalosporin resistant Escherichia coli','Y','2025-10-23 00:00:00'),(103750,11,'MG50.60','Third generation cephalosporin resistant Neisseria gonorrhoeae','Y','2025-10-23 00:00:00'),(103751,11,'MG50.91','Third generation cephalosporin resistant Salmonella','Y','2025-10-23 00:00:00'),(103752,11,'XA9LB9','Third interdigital web space of foot','Y','2025-10-23 00:00:00'),(103753,11,'XA4012','Third interdigital web space of hand','Y','2025-10-23 00:00:00'),(103754,11,'XA4N03','Third lumbar nerve root','Y','2025-10-23 00:00:00'),(103755,11,'XA9178','Third lumbar spinal nerve','Y','2025-10-23 00:00:00'),(103756,11,'XA3N97','Third lumbar vertebra','Y','2025-10-23 00:00:00'),(103757,11,'XA7J93','Third metacarpal','Y','2025-10-23 00:00:00'),(103758,11,'XA6HB0','Third metacarpophalangeal joint','Y','2025-10-23 00:00:00'),(103759,11,'XA0HX4','Third metatarsal head region','Y','2025-10-23 00:00:00'),(103760,11,'XA2792','Third metatarsophalangeal joint','Y','2025-10-23 00:00:00'),(103761,11,'9C81.0','Third nerve palsy','Y','2025-10-23 00:00:00'),(103762,11,'9C81.0Z','Third nerve palsy, unspecified','Y','2025-10-23 00:00:00'),(103763,11,'XA18D0','Third occipital nerve','Y','2025-10-23 00:00:00'),(103764,11,'XA8J55','Third or fourth perforating artery','Y','2025-10-23 00:00:00'),(103765,11,'XA2U21','Third rib','Y','2025-10-23 00:00:00'),(103766,11,'XA32J7','Third sacral nerve root','Y','2025-10-23 00:00:00'),(103767,11,'XA74E6','Third sacral spinal nerve','Y','2025-10-23 00:00:00'),(103768,11,'XA2EK5','Third thoracic nerve root','Y','2025-10-23 00:00:00'),(103769,11,'XA0DY5','Third thoracic spinal nerve','Y','2025-10-23 00:00:00'),(103770,11,'XA1Z15','Third thoracic vertebra','Y','2025-10-23 00:00:00'),(103771,11,'XA0SP3','Third toe','Y','2025-10-23 00:00:00'),(103772,11,'XA3D73','Third toenail','Y','2025-10-23 00:00:00'),(103773,11,'XA1H64','Third ventricle of the brain','Y','2025-10-23 00:00:00'),(103774,11,'MG50.52','Third-generation cephalosporin resistant Klebsiella pneumoniae','Y','2025-10-23 00:00:00'),(103775,11,'XM3FN8','Third-generation cephalosporins','Y','2025-10-23 00:00:00'),(103776,11,'MG50.A2','Third-generation cephalosporins resistant Shigella','Y','2025-10-23 00:00:00'),(103777,11,'MG51.12','Third-generation cephalosporins resistant Streptococcus pneumoniae','Y','2025-10-23 00:00:00'),(103778,11,'JA43.0','Third-stage haemorrhage','Y','2025-10-23 00:00:00'),(103779,11,'XM6NM2','Thonzylamine','Y','2025-10-23 00:00:00'),(103780,11,'XM9UN5','Thonzylamine topical','Y','2025-10-23 00:00:00'),(103781,11,'BD50.3','Thoracic aortic aneurysm','Y','2025-10-23 00:00:00'),(103782,11,'BD50.30','Thoracic aortic aneurysm with perforation','Y','2025-10-23 00:00:00'),(103783,11,'BD50.31','Thoracic aortic aneurysm with rupture','Y','2025-10-23 00:00:00'),(103784,11,'BD50.32','Thoracic aortic aneurysm without mention of perforation or rupture','Y','2025-10-23 00:00:00'),(103785,11,'BD50.3Z','Thoracic aortic aneurysm, unspecified','Y','2025-10-23 00:00:00'),(103786,11,'BD50.0','Thoracic aortic dissection, ascending aorta dissection and propagation beyond arch','Y','2025-10-23 00:00:00'),(103787,11,'BD50.00','Thoracic aortic dissection, ascending aorta dissection and propagation beyond arch with perforation','Y','2025-10-23 00:00:00'),(103788,11,'BD50.01','Thoracic aortic dissection, ascending aorta dissection and propagation beyond arch with rupture','Y','2025-10-23 00:00:00'),(103789,11,'BD50.02','Thoracic aortic dissection, ascending aorta dissection and propagation beyond arch without mention of perforation or rupture','Y','2025-10-23 00:00:00'),(103790,11,'BD50.0Z','Thoracic aortic dissection, ascending aorta dissection and propagation beyond arch, unspecified','Y','2025-10-23 00:00:00'),(103791,11,'XA1XJ5','Thoracic cavity','Y','2025-10-23 00:00:00'),(103792,11,'XA1N54','Thoracic discs or space','Y','2025-10-23 00:00:00'),(103793,11,'XA8A74','Thoracic duct','Y','2025-10-23 00:00:00'),(103794,11,'GA10.G','Thoracic endometriosis','Y','2025-10-23 00:00:00'),(103795,11,'XA6HY9','Thoracic intervertebral disc or space T10-T11','Y','2025-10-23 00:00:00'),(103796,11,'XA5LG2','Thoracic intervertebral disc or space T11-T12','Y','2025-10-23 00:00:00'),(103797,11,'XA4722','Thoracic intervertebral disc or space T1-T2','Y','2025-10-23 00:00:00'),(103798,11,'XA6KQ8','Thoracic intervertebral disc or space T2-T3','Y','2025-10-23 00:00:00'),(103799,11,'XA6CX2','Thoracic intervertebral disc or space T3-T4','Y','2025-10-23 00:00:00'),(103800,11,'XA0NE8','Thoracic intervertebral disc or space T4-T5','Y','2025-10-23 00:00:00'),(103801,11,'XA7PD1','Thoracic intervertebral disc or space T5-T6','Y','2025-10-23 00:00:00'),(103802,11,'XA4TP2','Thoracic intervertebral disc or space T6-T7','Y','2025-10-23 00:00:00'),(103803,11,'XA7117','Thoracic intervertebral disc or space T7-T8','Y','2025-10-23 00:00:00'),(103804,11,'XA9PW9','Thoracic intervertebral disc or space T8-T9','Y','2025-10-23 00:00:00'),(103805,11,'XA8E13','Thoracic intervertebral disc or space T9-T10','Y','2025-10-23 00:00:00'),(103806,11,'XA5SU4','Thoracic nerve root','Y','2025-10-23 00:00:00'),(103807,11,'XA8JT3','Thoracic oesophagus','Y','2025-10-23 00:00:00'),(103808,11,'8B91.1','Thoracic outlet syndrome due to cervical rib','Y','2025-10-23 00:00:00'),(103809,11,'PK80.2','Thoracic procedure associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(103810,11,'PK80.22','Thoracic procedure associated with injury or harm, endoscopic approach','Y','2025-10-23 00:00:00'),(103811,11,'PK80.20','Thoracic procedure associated with injury or harm, open approach','Y','2025-10-23 00:00:00'),(103812,11,'PK80.2Y','Thoracic procedure associated with injury or harm, other specified approach','Y','2025-10-23 00:00:00'),(103813,11,'PK80.21','Thoracic procedure associated with injury or harm, percutaneous approach','Y','2025-10-23 00:00:00'),(103814,11,'PK80.2Z','Thoracic procedure associated with injury or harm, unspecified approach','Y','2025-10-23 00:00:00'),(103815,11,'XA6Z51','Thoracic spinal cord','Y','2025-10-23 00:00:00'),(103816,11,'XA6KS1','Thoracic spinal nerve','Y','2025-10-23 00:00:00'),(103817,11,'ME84.1','Thoracic spine pain','Y','2025-10-23 00:00:00'),(103818,11,'XA2R06','Thoracic splanchnic nerve','Y','2025-10-23 00:00:00'),(103819,11,'XA4RN3','Thoracic trachea','Y','2025-10-23 00:00:00'),(103820,11,'XA6E88','Thoracic vertebra','Y','2025-10-23 00:00:00'),(103821,11,'XA9NQ2','Thoracoabdominal aorta','Y','2025-10-23 00:00:00'),(103822,11,'BD50.5','Thoracoabdominal aortic aneurysm','Y','2025-10-23 00:00:00'),(103823,11,'BD50.50','Thoracoabdominal aortic aneurysm with perforation','Y','2025-10-23 00:00:00'),(103824,11,'BD50.51','Thoracoabdominal aortic aneurysm with rupture','Y','2025-10-23 00:00:00'),(103825,11,'BD50.52','Thoracoabdominal aortic aneurysm without mention of perforation or rupture','Y','2025-10-23 00:00:00'),(103826,11,'BD50.5Z','Thoracoabdominal aortic aneurysm, unspecified','Y','2025-10-23 00:00:00'),(103827,11,'XA0462','Thoraco-abdominal nerve','Y','2025-10-23 00:00:00'),(103828,11,'XA79X5','Thoracoacromial artery','Y','2025-10-23 00:00:00'),(103829,11,'XA2542','Thoracodorsal nerve','Y','2025-10-23 00:00:00'),(103830,11,'XA46Q0','Thoracoepigastric vein','Y','2025-10-23 00:00:00'),(103831,11,'XA97A4','Thoracolumbar intervertebral disc or space T12-L1','Y','2025-10-23 00:00:00'),(103832,11,'XA5D93','Thorax','Y','2025-10-23 00:00:00'),(103833,11,'XM3E15','Thorium dioxide suspension','Y','2025-10-23 00:00:00'),(103834,11,'SG36','Thoroughfare vessel pattern (TM1)','Y','2025-10-23 00:00:00'),(103835,11,'MB25.3','Thought blocking','Y','2025-10-23 00:00:00'),(103836,11,'MB26.10','Thought broadcasting','Y','2025-10-23 00:00:00'),(103837,11,'MB26.11','Thought insertion','Y','2025-10-23 00:00:00'),(103838,11,'MB26.12','Thought withdrawal','Y','2025-10-23 00:00:00'),(103839,11,'PH23','Threat to breathing by external compression of airways or chest with undetermined intent','Y','2025-10-23 00:00:00'),(103840,11,'PH21','Threat to breathing by hanging with undetermined intent','Y','2025-10-23 00:00:00'),(103841,11,'PH25','Threat to breathing by inhalation or ingestion of food with undetermined intent','Y','2025-10-23 00:00:00'),(103842,11,'PH24','Threat to breathing by inhalation or ingestion of liquids with undetermined intent','Y','2025-10-23 00:00:00'),(103843,11,'PH26','Threat to breathing by inhalation or ingestion of other objects or materials with undetermined intent','Y','2025-10-23 00:00:00'),(103844,11,'PH27','Threat to breathing by low oxygen environment with undetermined intent','Y','2025-10-23 00:00:00'),(103845,11,'PH22','Threat to breathing by strangulation with undetermined intent','Y','2025-10-23 00:00:00'),(103846,11,'PH20','Threat to breathing by suffocation from object covering mouth or nose with undetermined intent','Y','2025-10-23 00:00:00'),(103847,11,'PH2Z','Threat to breathing with undetermined intent, unspecified','Y','2025-10-23 00:00:00'),(103848,11,'JA40.0','Threatened abortion','Y','2025-10-23 00:00:00'),(103849,11,'XE9AX','Three-wheeled motor vehicle or scooter','Y','2025-10-23 00:00:00'),(103850,11,'XE02Q','Threshing machine','Y','2025-10-23 00:00:00'),(103851,11,'XM3GR1','Thrombin','Y','2025-10-23 00:00:00'),(103852,11,'4A44.8','Thromboangiitis obliterans','Y','2025-10-23 00:00:00'),(103853,11,'XM7KC2','Thrombocytes','Y','2025-10-23 00:00:00'),(103854,11,'KA89.0','Thrombocytopaenia following systemic infection, including diffuse intravascular coagulation','Y','2025-10-23 00:00:00'),(103855,11,'3B64','Thrombocytopenia','Y','2025-10-23 00:00:00'),(103856,11,'3B64.Z','Thrombocytopenia, unspecified','Y','2025-10-23 00:00:00'),(103857,11,'3B63','Thrombocytosis','Y','2025-10-23 00:00:00'),(103858,11,'3B63.Z','Thrombocytosis, unspecified','Y','2025-10-23 00:00:00'),(103859,11,'3B61','Thrombophilia','Y','2025-10-23 00:00:00'),(103860,11,'3B61.Z','Thrombophilia, unspecified','Y','2025-10-23 00:00:00'),(103861,11,'BD70.2','Thrombophlebitis migrans','Y','2025-10-23 00:00:00'),(103862,11,'XM0HF1','Thromboplastin','Y','2025-10-23 00:00:00'),(103863,11,'3B65','Thrombotic microangiopathy, not elsewhere classified','Y','2025-10-23 00:00:00'),(103864,11,'3B64.14','Thrombotic thrombocytopenic purpura','Y','2025-10-23 00:00:00'),(103865,11,'SB79','Thrush disorder (TM1)','Y','2025-10-23 00:00:00'),(103866,11,'XA8DJ6','Thumb','Y','2025-10-23 00:00:00'),(103867,11,'XA5PD5','Thumbnail','Y','2025-10-23 00:00:00'),(103868,11,'XM4074','Thurfyl nicotinate','Y','2025-10-23 00:00:00'),(103869,11,'XH92Y9','Thymic carcinoma with adenoid cystic carcinoma-like features','Y','2025-10-23 00:00:00'),(103870,11,'XH6AK2','Thymic carcinoma, NOS','Y','2025-10-23 00:00:00'),(103871,11,'XA2YF2','Thymic vein','Y','2025-10-23 00:00:00'),(103872,11,'XM7W47','Thymol','Y','2025-10-23 00:00:00'),(103873,11,'XH4G31','Thymolipoma','Y','2025-10-23 00:00:00'),(103874,11,'XH4341','Thymoma, benign','Y','2025-10-23 00:00:00'),(103875,11,'XH3734','Thymoma, NOS','Y','2025-10-23 00:00:00'),(103876,11,'XH6WN9','Thymoma, type A','Y','2025-10-23 00:00:00'),(103877,11,'XH0JH0','Thymoma, type AB','Y','2025-10-23 00:00:00'),(103878,11,'XH66U8','Thymoma, type B1','Y','2025-10-23 00:00:00'),(103879,11,'XH2G89','Thymoma, type B2','Y','2025-10-23 00:00:00'),(103880,11,'XH4EW9','Thymoma, type B3','Y','2025-10-23 00:00:00'),(103881,11,'XM7N26','Thymopentin','Y','2025-10-23 00:00:00'),(103882,11,'XM79S2','Thymoxamine','Y','2025-10-23 00:00:00'),(103883,11,'XA8373','Thymus','Y','2025-10-23 00:00:00'),(103884,11,'XM7LM2','Thymus extract','Y','2025-10-23 00:00:00'),(103885,11,'XA8352','Thyroarytenoid muscle','Y','2025-10-23 00:00:00'),(103886,11,'XA4ME3','Thyroarytenoid tendon','Y','2025-10-23 00:00:00'),(103887,11,'XA9XH0','Thyrocervical trunk','Y','2025-10-23 00:00:00'),(103888,11,'XA2ZL4','Thyroepiglotticus muscle','Y','2025-10-23 00:00:00'),(103889,11,'XA0CT5','Thyroepiglotticus tendon','Y','2025-10-23 00:00:00'),(103890,11,'XM66B8','Thyroglobulin','Y','2025-10-23 00:00:00'),(103891,11,'XA0SH3','Thyroglossal duct','Y','2025-10-23 00:00:00'),(103892,11,'XA33F9','Thyrohyoid ligament','Y','2025-10-23 00:00:00'),(103893,11,'XA87S0','Thyrohyoid muscle','Y','2025-10-23 00:00:00'),(103894,11,'5A02.5','Thyroid crisis','Y','2025-10-23 00:00:00'),(103895,11,'XM8CX3','Thyroid gland preparations','Y','2025-10-23 00:00:00'),(103896,11,'5A61.4','Thyroid stimulating hormone deficiency','Y','2025-10-23 00:00:00'),(103897,11,'5A61.4Z','Thyroid stimulating hormone deficiency, unspecified','Y','2025-10-23 00:00:00'),(103898,11,'XA9VA8','Thyroid vein','Y','2025-10-23 00:00:00'),(103899,11,'XA8RK3','Thyroid','Y','2025-10-23 00:00:00'),(103900,11,'5A03','Thyroiditis','Y','2025-10-23 00:00:00'),(103901,11,'5A03.Z','Thyroiditis, unspecified','Y','2025-10-23 00:00:00'),(103902,11,'5A02','Thyrotoxicosis','Y','2025-10-23 00:00:00'),(103903,11,'5A02.4','Thyrotoxicosis factitia','Y','2025-10-23 00:00:00'),(103904,11,'5A02.3','Thyrotoxicosis from ectopic thyroid tissue','Y','2025-10-23 00:00:00'),(103905,11,'5A02.0','Thyrotoxicosis with diffuse goitre','Y','2025-10-23 00:00:00'),(103906,11,'5A02.2','Thyrotoxicosis with toxic multinodular goitre','Y','2025-10-23 00:00:00'),(103907,11,'5A02.1','Thyrotoxicosis with toxic single thyroid nodule','Y','2025-10-23 00:00:00'),(103908,11,'5A02.Z','Thyrotoxicosis, unspecified','Y','2025-10-23 00:00:00'),(103909,11,'XH0MY4','Thyrotroph adenoma','Y','2025-10-23 00:00:00'),(103910,11,'XM4WS0','Thyrotrophin','Y','2025-10-23 00:00:00'),(103911,11,'XM7J71','Thyrotropic hormone','Y','2025-10-23 00:00:00'),(103912,11,'XM26R5','Thyrotropin alfa','Y','2025-10-23 00:00:00'),(103913,11,'XM5685','Thyroxine','Y','2025-10-23 00:00:00'),(103914,11,'XM0CU8','Tiabendazole','Y','2025-10-23 00:00:00'),(103915,11,'XM2AL6','Tiadenol','Y','2025-10-23 00:00:00'),(103916,11,'XM8HQ0','Tiagabine','Y','2025-10-23 00:00:00'),(103917,11,'XM0YS2','Tiamizide','Y','2025-10-23 00:00:00'),(103918,11,'XM5DV5','Tianeptine','Y','2025-10-23 00:00:00'),(103919,11,'XM1EL1','Tiapamil','Y','2025-10-23 00:00:00'),(103920,11,'XM8KD4','Tiapride','Y','2025-10-23 00:00:00'),(103921,11,'XM0WQ1','Tiaprofenic acid','Y','2025-10-23 00:00:00'),(103922,11,'XM3375','Tiaramide','Y','2025-10-23 00:00:00'),(103923,11,'XM3ZR1','Tiazofurine','Y','2025-10-23 00:00:00'),(103924,11,'XM2DH5','Tiazotic acid','Y','2025-10-23 00:00:00'),(103925,11,'XM4DT4','Tibezonium iodide','Y','2025-10-23 00:00:00'),(103926,11,'XA44U1','Tibia','Y','2025-10-23 00:00:00'),(103927,11,'FB54.2','Tibial collateral bursitis','Y','2025-10-23 00:00:00'),(103928,11,'XA7LD2','Tibial collateral ligament','Y','2025-10-23 00:00:00'),(103929,11,'XA5RE8','Tibial condyle','Y','2025-10-23 00:00:00'),(103930,11,'LB9A.1','Tibial hemimelia','Y','2025-10-23 00:00:00'),(103931,11,'XA2PP2','Tibial lymph node','Y','2025-10-23 00:00:00'),(103932,11,'XA7534','Tibial nerve','Y','2025-10-23 00:00:00'),(103933,11,'XA66B3','Tibial shaft','Y','2025-10-23 00:00:00'),(103934,11,'XA2EN5','Tibial spine','Y','2025-10-23 00:00:00'),(103935,11,'XA3DL5','Tibial tuberosity','Y','2025-10-23 00:00:00'),(103936,11,'XA02U9','Tibialis anterior muscle','Y','2025-10-23 00:00:00'),(103937,11,'XA8SN1','Tibialis anterior tendon','Y','2025-10-23 00:00:00'),(103938,11,'XA3VR3','Tibialis posterior muscle','Y','2025-10-23 00:00:00'),(103939,11,'XA7FR7','Tibialis posterior tendon','Y','2025-10-23 00:00:00'),(103940,11,'XA0LC4','Tibiofemoral joint','Y','2025-10-23 00:00:00'),(103941,11,'LB90.6','Tibio-fibular synostosis','Y','2025-10-23 00:00:00'),(103942,11,'XM70N6','Tibolone','Y','2025-10-23 00:00:00'),(103943,11,'8A05','Tic disorders','Y','2025-10-23 00:00:00'),(103944,11,'8A05.Z','Tic disorders, unspecified','Y','2025-10-23 00:00:00'),(103945,11,'XM1HH4','Ticagrelor','Y','2025-10-23 00:00:00'),(103946,11,'XM4D90','Ticarcillin','Y','2025-10-23 00:00:00'),(103947,11,'XM1FZ0','Ticarcillin and beta-lactamase inhibitor','Y','2025-10-23 00:00:00'),(103948,11,'XE779','Tick','Y','2025-10-23 00:00:00'),(103949,11,'XM94S4','Tick venom','Y','2025-10-23 00:00:00'),(103950,11,'XN0L1','Tick-borne encephalitis virus','Y','2025-10-23 00:00:00'),(103951,11,'1C1J.0','Tick-borne relapsing fever','Y','2025-10-23 00:00:00'),(103952,11,'XM3C36','Ticlatone','Y','2025-10-23 00:00:00'),(103953,11,'XM5A15','Ticlopidine','Y','2025-10-23 00:00:00'),(103954,11,'8A05.11','Tics associated with developmental disorders','Y','2025-10-23 00:00:00'),(103955,11,'XE1V7','Tidal volume fluctuations','Y','2025-10-23 00:00:00'),(103956,11,'XM3E24','Tidiacic','Y','2025-10-23 00:00:00'),(103957,11,'XM0F81','Tidiacic arginine','Y','2025-10-23 00:00:00'),(103958,11,'XM9WW9','Tiemonium','Y','2025-10-23 00:00:00'),(103959,11,'XM2LU4','Tiemonium iodide','Y','2025-10-23 00:00:00'),(103960,11,'XM9KF7','Tienilic acid','Y','2025-10-23 00:00:00'),(103961,11,'XM74B7','Tigecycline','Y','2025-10-23 00:00:00'),(103962,11,'XM23U8','Tiger snake venom','Y','2025-10-23 00:00:00'),(103963,11,'LB42.3','Tight hymenal ring','Y','2025-10-23 00:00:00'),(103964,11,'XM8346','Tigloidine','Y','2025-10-23 00:00:00'),(103965,11,'XM4U70','Tilactase','Y','2025-10-23 00:00:00'),(103966,11,'XM1KS8','Tilbroquinol','Y','2025-10-23 00:00:00'),(103967,11,'XM9VJ6','Tildrakizumab','Y','2025-10-23 00:00:00'),(103968,11,'XM2MR8','Tiletamine','Y','2025-10-23 00:00:00'),(103969,11,'XM09H6','Tilidine','Y','2025-10-23 00:00:00'),(103970,11,'XM0V89','Tiliquinol','Y','2025-10-23 00:00:00'),(103971,11,'XM1UC2','Tilorone','Y','2025-10-23 00:00:00'),(103972,11,'XM2M01','Tiludronic acid','Y','2025-10-23 00:00:00'),(103973,11,'XM2P01','Timber rattlesnake venom','Y','2025-10-23 00:00:00'),(103974,11,'VD53','Time spent on health condition [WHODAS]','Y','2025-10-23 00:00:00'),(103975,11,'XM51J2','Timepidium bromide','Y','2025-10-23 00:00:00'),(103976,11,'XE3R3','Timer component of medical device','Y','2025-10-23 00:00:00'),(103977,11,'XM7RP6','Timiperone','Y','2025-10-23 00:00:00'),(103978,11,'XM1KQ9','Timolol','Y','2025-10-23 00:00:00'),(103979,11,'XM1NS5','Tin','Y','2025-10-23 00:00:00'),(103980,11,'XM5VM3','Tin anti-infectives','Y','2025-10-23 00:00:00'),(103981,11,'XM9KC4','Tin chloride','Y','2025-10-23 00:00:00'),(103982,11,'XM0K92','Tin oxide','Y','2025-10-23 00:00:00'),(103983,11,'XM87F3','Tindal','Y','2025-10-23 00:00:00'),(103984,11,'SB72','Tinea circinate disorder (TM1)','Y','2025-10-23 00:00:00'),(103985,11,'1F2D.4','Tinea nigra','Y','2025-10-23 00:00:00'),(103986,11,'MB40.4','Tingling fingers or feet or toes','Y','2025-10-23 00:00:00'),(103987,11,'ME65.4','Tingling of skin','Y','2025-10-23 00:00:00'),(103988,11,'XM7Z72','Tinidazole','Y','2025-10-23 00:00:00'),(103989,11,'XE1GJ','Tinned container, tin can','Y','2025-10-23 00:00:00'),(103990,11,'MC41','Tinnitus','Y','2025-10-23 00:00:00'),(103991,11,'SC75','Tinnitus disorder (TM1)','Y','2025-10-23 00:00:00'),(103992,11,'XM9YA8','Tinoridine','Y','2025-10-23 00:00:00'),(103993,11,'XM3SS4','Tinzaparin','Y','2025-10-23 00:00:00'),(103994,11,'XM62H2','Tiocarlide','Y','2025-10-23 00:00:00'),(103995,11,'XM6550','Tioclomarol','Y','2025-10-23 00:00:00'),(103996,11,'XM9HG1','Tioconazole','Y','2025-10-23 00:00:00'),(103997,11,'XM3FP5','Tioguanine','Y','2025-10-23 00:00:00'),(103998,11,'XM2D76','Tiopronin','Y','2025-10-23 00:00:00'),(103999,11,'XM6B79','Tiotixene','Y','2025-10-23 00:00:00'),(104000,11,'XM9HA8','Tiotropium bromide','Y','2025-10-23 00:00:00'),(104001,11,'XM7GY2','Tioxolone','Y','2025-10-23 00:00:00'),(104002,11,'XE06W','Tip component of medical device','Y','2025-10-23 00:00:00'),(104003,11,'XA41X5','Tip of index finger','Y','2025-10-23 00:00:00'),(104004,11,'XA8QW7','Tip of little finger','Y','2025-10-23 00:00:00'),(104005,11,'XA9Y99','Tip of middle finger','Y','2025-10-23 00:00:00'),(104006,11,'XA56T3','Tip of nose','Y','2025-10-23 00:00:00'),(104007,11,'XA91S7','Tip of ring finger','Y','2025-10-23 00:00:00'),(104008,11,'XA1WZ8','Tip of tongue','Y','2025-10-23 00:00:00'),(104009,11,'XM37E2','Tipepidine','Y','2025-10-23 00:00:00'),(104010,11,'XM8QH1','Tipranavir','Y','2025-10-23 00:00:00'),(104011,11,'XA7GT9','Tips of fingers','Y','2025-10-23 00:00:00'),(104012,11,'XM2595','Tiquizium bromide','Y','2025-10-23 00:00:00'),(104013,11,'XM7MH8','Tiracizine','Y','2025-10-23 00:00:00'),(104014,11,'XM4H64','Tiratricol','Y','2025-10-23 00:00:00'),(104015,11,'MB22.7','Tiredness','Y','2025-10-23 00:00:00'),(104016,11,'XM9VG8','Tirilazad','Y','2025-10-23 00:00:00'),(104017,11,'XM0DS1','Tirofiban','Y','2025-10-23 00:00:00'),(104018,11,'XM36J3','Tiropramide','Y','2025-10-23 00:00:00'),(104019,11,'XM3Q80','Tislelizumab','Y','2025-10-23 00:00:00'),(104020,11,'XM47Z2','Tisopurine','Y','2025-10-23 00:00:00'),(104021,11,'XM9PZ9','Tissue plasminogen activator','Y','2025-10-23 00:00:00'),(104022,11,'XM7B62','Titanium','Y','2025-10-23 00:00:00'),(104023,11,'XM7Q94','Titanium dioxide','Y','2025-10-23 00:00:00'),(104024,11,'XM6WX7','Titanium oxide','Y','2025-10-23 00:00:00'),(104025,11,'XM4WJ2','Titanium tetrachloride','Y','2025-10-23 00:00:00'),(104026,11,'XM89Q2','Titanocene','Y','2025-10-23 00:00:00'),(104027,11,'XM5590','Titroid','Y','2025-10-23 00:00:00'),(104028,11,'MB46.4','Titubation','Y','2025-10-23 00:00:00'),(104029,11,'XM8B31','Tivozanib','Y','2025-10-23 00:00:00'),(104030,11,'XM78P5','Tixagevimab','Y','2025-10-23 00:00:00'),(104031,11,'XM8963','Tixocortol pivalate','Y','2025-10-23 00:00:00'),(104032,11,'XM1BK1','Tizanidine','Y','2025-10-23 00:00:00'),(104033,11,'XM1X35','TNT','Y','2025-10-23 00:00:00'),(104034,11,'XM7YQ1','Toad toxin','Y','2025-10-23 00:00:00'),(104035,11,'XM40D3','Toadfish seafood poison','Y','2025-10-23 00:00:00'),(104036,11,'XM33N5','Toadfish venom','Y','2025-10-23 00:00:00'),(104037,11,'XM88J8','Tobacco','Y','2025-10-23 00:00:00'),(104038,11,'XE7P9','Tobacco or related product','Y','2025-10-23 00:00:00'),(104039,11,'QB95.8','Tobacco rehabilitation','Y','2025-10-23 00:00:00'),(104040,11,'QE13','Tobacco use','Y','2025-10-23 00:00:00'),(104041,11,'XM6G20','Tobramycin','Y','2025-10-23 00:00:00'),(104042,11,'XM1V81','Tocainide','Y','2025-10-23 00:00:00'),(104043,11,'XM2FV1','Tocilizumab','Y','2025-10-23 00:00:00'),(104044,11,'XM1PU6','Tocopherol','Y','2025-10-23 00:00:00'),(104045,11,'XM7F20','Tocosamine','Y','2025-10-23 00:00:00'),(104046,11,'XM5T36','Todralazine','Y','2025-10-23 00:00:00'),(104047,11,'XA9E36','Toenail','Y','2025-10-23 00:00:00'),(104048,11,'XA4LC9','Toes','Y','2025-10-23 00:00:00'),(104049,11,'XM7U27','Tofacitinib','Y','2025-10-23 00:00:00'),(104050,11,'XM79N8','Tofisopam','Y','2025-10-23 00:00:00'),(104051,11,'VW22','Toileting','Y','2025-10-23 00:00:00'),(104052,11,'XE45T','Toiletries, cosmetics, or related product','Y','2025-10-23 00:00:00'),(104053,11,'XM77W2','Tolamolol','Y','2025-10-23 00:00:00'),(104054,11,'XM8YD0','Tolazamide','Y','2025-10-23 00:00:00'),(104055,11,'XM3BY1','Tolazoline','Y','2025-10-23 00:00:00'),(104056,11,'XM1RV6','Tolbutamide','Y','2025-10-23 00:00:00'),(104057,11,'XM0BA4','Tolcapone','Y','2025-10-23 00:00:00'),(104058,11,'XM9SF6','Tolciclate','Y','2025-10-23 00:00:00'),(104059,11,'XE6U0','Tolerance stack-up identified in device','Y','2025-10-23 00:00:00'),(104060,11,'XM9WQ9','Tolfenamic acid','Y','2025-10-23 00:00:00'),(104061,11,'XM97N5','Tolmetin','Y','2025-10-23 00:00:00'),(104062,11,'XM23C3','Tolnaftate','Y','2025-10-23 00:00:00'),(104063,11,'XM9SU8','Tolonidine','Y','2025-10-23 00:00:00'),(104064,11,'XM1TG1','Toloxatone','Y','2025-10-23 00:00:00'),(104065,11,'XM4MA5','Tolperisone','Y','2025-10-23 00:00:00'),(104066,11,'XM4543','Tolpropamine','Y','2025-10-23 00:00:00'),(104067,11,'XM65E7','Tolrestat','Y','2025-10-23 00:00:00'),(104068,11,'XM82U8','Tolterodine','Y','2025-10-23 00:00:00'),(104069,11,'XM00E9','Toluene','Y','2025-10-23 00:00:00'),(104070,11,'XM36N4','Toluene diisocyanate','Y','2025-10-23 00:00:00'),(104071,11,'XM7FG4','Toluidine','Y','2025-10-23 00:00:00'),(104072,11,'XM7S87','Toluidine vapor','Y','2025-10-23 00:00:00'),(104073,11,'XM67F1','Toluylenediamine','Y','2025-10-23 00:00:00'),(104074,11,'XM9LF5','Tolvaptan','Y','2025-10-23 00:00:00'),(104075,11,'XN4ER','Tonate virus','Y','2025-10-23 00:00:00'),(104076,11,'XA1T19','Tongue','Y','2025-10-23 00:00:00'),(104077,11,'1F20.13','Tonsillar aspergillosis','Y','2025-10-23 00:00:00'),(104078,11,'XA2E78','Tonsillar branch of the cervical artery','Y','2025-10-23 00:00:00'),(104079,11,'XA46Z4','Tonsillar fossa','Y','2025-10-23 00:00:00'),(104080,11,'XA29D3','Tonsillar region','Y','2025-10-23 00:00:00'),(104081,11,'SC93','Tonsillitis disorder (TM1)','Y','2025-10-23 00:00:00'),(104082,11,'XE6GE','Tool component of medical device','Y','2025-10-23 00:00:00'),(104083,11,'XE0P3','Tool, machine, apparatus mainly used for work-related activity','Y','2025-10-23 00:00:00'),(104084,11,'FA25.20','Tophaceous gout','Y','2025-10-23 00:00:00'),(104085,11,'XM9410','Topical sunscreen','Y','2025-10-23 00:00:00'),(104086,11,'XM2103','Topiramate','Y','2025-10-23 00:00:00'),(104087,11,'XM7ST9','Topotecan','Y','2025-10-23 00:00:00'),(104088,11,'XM8YD7','Toquizine','Y','2025-10-23 00:00:00'),(104089,11,'XM4DR4','Torasemide','Y','2025-10-23 00:00:00'),(104090,11,'XM1312','Toremifene','Y','2025-10-23 00:00:00'),(104091,11,'GB01.1','Torsion of epididymis','Y','2025-10-23 00:00:00'),(104092,11,'GB01.2','Torsion of hydatids','Y','2025-10-23 00:00:00'),(104093,11,'GA18.5','Torsion of ovary, ovarian pedicle or fallopian tube','Y','2025-10-23 00:00:00'),(104094,11,'3B81.8','Torsion of spleen','Y','2025-10-23 00:00:00'),(104095,11,'GB01.0','Torsion of testis','Y','2025-10-23 00:00:00'),(104096,11,'GB01','Torsion of testis, epididymis or appendices','Y','2025-10-23 00:00:00'),(104097,11,'GB01.Z','Torsion of testis, epididymis or appendices, unspecified','Y','2025-10-23 00:00:00'),(104098,11,'9C84.22','Torsional nystagmus','Y','2025-10-23 00:00:00'),(104099,11,'FA71','Torticollis','Y','2025-10-23 00:00:00'),(104100,11,'XM3S71','Tosufloxacin','Y','2025-10-23 00:00:00'),(104101,11,'XM0M54','Tosylchloramide sodium','Y','2025-10-23 00:00:00'),(104102,11,'LA86.20','Total anomalous pulmonary venous connection','Y','2025-10-23 00:00:00'),(104103,11,'9C81.3','Total external ophthalmoplegia','Y','2025-10-23 00:00:00'),(104104,11,'LA82','Total mirror imagery','Y','2025-10-23 00:00:00'),(104105,11,'XE9ZJ','Touchscreen component of medical device','Y','2025-10-23 00:00:00'),(104106,11,'8A05.00','Tourette syndrome','Y','2025-10-23 00:00:00'),(104107,11,'XM91D0','Toxaphene','Y','2025-10-23 00:00:00'),(104108,11,'EB13.1','Toxic epidermal necrolysis','Y','2025-10-23 00:00:00'),(104109,11,'DB32.20','Toxic megacolon','Y','2025-10-23 00:00:00'),(104110,11,'LD2F.0','Toxic or drug-related embryofetopathies','Y','2025-10-23 00:00:00'),(104111,11,'LD2F.0Z','Toxic or drug-related embryofetopathies, unspecified','Y','2025-10-23 00:00:00'),(104112,11,'JB0C.4','Toxic reaction to local anaesthesia during labour or delivery','Y','2025-10-23 00:00:00'),(104113,11,'JA67.3','Toxic reaction to local anaesthesia during pregnancy','Y','2025-10-23 00:00:00'),(104114,11,'1C45','Toxic shock syndrome','Y','2025-10-23 00:00:00'),(104115,11,'1C45.Y','Toxic shock syndrome due to other specified infectious agent','Y','2025-10-23 00:00:00'),(104116,11,'1C45.Z','Toxic shock syndrome without specified infectious agent','Y','2025-10-23 00:00:00'),(104117,11,'XM40N4','Toxicodendron radicans plant','Y','2025-10-23 00:00:00'),(104118,11,'MG47','Toxicosis not further specified','Y','2025-10-23 00:00:00'),(104119,11,'XM4DA3','Toxin, diphtheria (Schick Test)','Y','2025-10-23 00:00:00'),(104120,11,'EA50','Toxin-mediated cutaneous reactions to distant or systemic bacterial infection','Y','2025-10-23 00:00:00'),(104121,11,'XN2L3','Toxocara','Y','2025-10-23 00:00:00'),(104122,11,'XN7MR','Toxocara canis','Y','2025-10-23 00:00:00'),(104123,11,'XN54C','Toxocara cati','Y','2025-10-23 00:00:00'),(104124,11,'1F6D','Toxocariasis','Y','2025-10-23 00:00:00'),(104125,11,'XN7HC','Toxoplasma','Y','2025-10-23 00:00:00'),(104126,11,'XN896','Toxoplasma gondii','Y','2025-10-23 00:00:00'),(104127,11,'1F57','Toxoplasmosis','Y','2025-10-23 00:00:00'),(104128,11,'1F57.Z','Toxoplasmosis, unspecified','Y','2025-10-23 00:00:00'),(104129,11,'XE3Y2','Toy','Y','2025-10-23 00:00:00'),(104130,11,'XE1DG','Toy art, craft, or kit','Y','2025-10-23 00:00:00'),(104131,11,'XE93L','Toy gun or related accessory','Y','2025-10-23 00:00:00'),(104132,11,'XE887','Toy sports equipment','Y','2025-10-23 00:00:00'),(104133,11,'XE959','Toy vehicle','Y','2025-10-23 00:00:00'),(104134,11,'XM3F90','Trabectedin','Y','2025-10-23 00:00:00'),(104135,11,'XH7EX3','Trabecular adenocarcinoma','Y','2025-10-23 00:00:00'),(104136,11,'XH9G87','Trabecular adenoma','Y','2025-10-23 00:00:00'),(104137,11,'LA88.40','Trabecular muscular ventricular septal defect','Y','2025-10-23 00:00:00'),(104138,11,'XA26H1','Trachea','Y','2025-10-23 00:00:00'),(104139,11,'KB2G','Tracheal haemorrhage of newborn due to airway trauma','Y','2025-10-23 00:00:00'),(104140,11,'XA3194','Tracheal lymph node','Y','2025-10-23 00:00:00'),(104141,11,'XA7F45','Tracheal vein','Y','2025-10-23 00:00:00'),(104142,11,'KB28.0','Tracheobronchial haemorrhage originating in the perinatal period','Y','2025-10-23 00:00:00'),(104143,11,'XA41B8','Tracheobronchial lymph node','Y','2025-10-23 00:00:00'),(104144,11,'KB2J.2','Tracheo-bronchial malacia in neonate','Y','2025-10-23 00:00:00'),(104145,11,'CA27','Tracheobronchitis','Y','2025-10-23 00:00:00'),(104146,11,'CA27.Z','Tracheobronchitis, unspecified','Y','2025-10-23 00:00:00'),(104147,11,'CA27.1','Tracheobronchomegaly','Y','2025-10-23 00:00:00'),(104148,11,'CA27.0','Tracheobronchopathia osteochondroplastica','Y','2025-10-23 00:00:00'),(104149,11,'XD2MG6','Tracheolaringostomy cannulas and kits, with cuff','Y','2025-10-23 00:00:00'),(104150,11,'LA8B.3','Tracheo-oesophageal compressive syndrome','Y','2025-10-23 00:00:00'),(104151,11,'CB60','Tracheostomy malfunction','Y','2025-10-23 00:00:00'),(104152,11,'1C23','Trachoma','Y','2025-10-23 00:00:00'),(104153,11,'1C23.Z','Trachoma, unspecified','Y','2025-10-23 00:00:00'),(104154,11,'XE0S2','Tractor','Y','2025-10-23 00:00:00'),(104155,11,'XE8XB','Tractor-trailer, articulated lorry, 18-wheeler, rig','Y','2025-10-23 00:00:00'),(104156,11,'SE5Z','Traditional medicine disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(104157,11,'SJ1Z','Traditional medicine patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(104158,11,'XH9PD9','Traditional sessile serrated adenoma','Y','2025-10-23 00:00:00'),(104159,11,'XM33M4','Trafermin','Y','2025-10-23 00:00:00'),(104160,11,'XM1PQ5','Tragacanth','Y','2025-10-23 00:00:00'),(104161,11,'XA2N71','Tragus of pinna','Y','2025-10-23 00:00:00'),(104162,11,'XE5KW','Trailer or horse-float','Y','2025-10-23 00:00:00'),(104163,11,'XE5GG','Trailer or sidecar attached to a pedal cycle as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(104164,11,'XE2BW','Trailer or sidecar attached to a pedal cycle as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(104165,11,'XE9Q3','Train','Y','2025-10-23 00:00:00'),(104166,11,'XM2H33','Tralomethrin','Y','2025-10-23 00:00:00'),(104167,11,'XE1BG','Tram, truck, or tub in mine or quarry','Y','2025-10-23 00:00:00'),(104168,11,'XM7KC0','Tramadol','Y','2025-10-23 00:00:00'),(104169,11,'XM1RJ9','Tramazoline','Y','2025-10-23 00:00:00'),(104170,11,'XM7VJ9','Trametinib','Y','2025-10-23 00:00:00'),(104171,11,'XE6HE','Trampoline for playing sports or exercise','Y','2025-10-23 00:00:00'),(104172,11,'6B62','Trance disorder','Y','2025-10-23 00:00:00'),(104173,11,'XM3F15','Trandolapril','Y','2025-10-23 00:00:00'),(104174,11,'XM8GE2','Tranexamic acid','Y','2025-10-23 00:00:00'),(104175,11,'XM5Y33','Tranilast','Y','2025-10-23 00:00:00'),(104176,11,'XM9X46','Tranquilizer benzodiazepine','Y','2025-10-23 00:00:00'),(104177,11,'XM5NL7','Tranquilizer butyrophenone','Y','2025-10-23 00:00:00'),(104178,11,'XM0ES8','Tranquilizer carbamate','Y','2025-10-23 00:00:00'),(104179,11,'XM0EE9','Tranquilizer dimethylamine','Y','2025-10-23 00:00:00'),(104180,11,'XM9B27','Tranquilizer ethylamine','Y','2025-10-23 00:00:00'),(104181,11,'XM7Z64','Tranquilizer hydroxyzine','Y','2025-10-23 00:00:00'),(104182,11,'XM1QV8','Tranquilizer phenothiazine','Y','2025-10-23 00:00:00'),(104183,11,'XM7057','Tranquilizer piperazine','Y','2025-10-23 00:00:00'),(104184,11,'XM5KD3','Tranquilizer piperidine','Y','2025-10-23 00:00:00'),(104185,11,'XM3Z20','Tranquilizer propylamine','Y','2025-10-23 00:00:00'),(104186,11,'XM3ES1','Tranquilizer specified','Y','2025-10-23 00:00:00'),(104187,11,'XM0GN3','Tranquilizer thioxanthene','Y','2025-10-23 00:00:00'),(104188,11,'XM6WP4','Tranquilizer with hypnotic or sedative','Y','2025-10-23 00:00:00'),(104189,11,'VW11','Transferring oneself','Y','2025-10-23 00:00:00'),(104190,11,'XE256','Transformer component of medical device','Y','2025-10-23 00:00:00'),(104191,11,'CB64','Transfusion related acute lung injury','Y','2025-10-23 00:00:00'),(104192,11,'2A60.40','Transient abnormal myelopoiesis','Y','2025-10-23 00:00:00'),(104193,11,'XH67W4','Transient abnormal myelopoiesis','Y','2025-10-23 00:00:00'),(104194,11,'5A00.03','Transient congenital hypothyroidism','Y','2025-10-23 00:00:00'),(104195,11,'MB21.12','Transient global amnesia','Y','2025-10-23 00:00:00'),(104196,11,'KB60.40','Transient hyperinsulinaemic neonatal hypoglycaemia','Y','2025-10-23 00:00:00'),(104197,11,'KB62.2','Transient hyperthyrotropinaemia','Y','2025-10-23 00:00:00'),(104198,11,'4A01.03','Transient hypogammaglobulinaemia of infancy','Y','2025-10-23 00:00:00'),(104199,11,'KB62.3','Transient hypothyroxinaemia','Y','2025-10-23 00:00:00'),(104200,11,'8B10','Transient ischaemic attack','Y','2025-10-23 00:00:00'),(104201,11,'8B10.Z','Transient ischaemic attack, unspecified','Y','2025-10-23 00:00:00'),(104202,11,'8A05.03','Transient motor tics','Y','2025-10-23 00:00:00'),(104203,11,'KB44','Transient myocardial ischaemia of newborn','Y','2025-10-23 00:00:00'),(104204,11,'KB60.20','Transient neonatal diabetes mellitus','Y','2025-10-23 00:00:00'),(104205,11,'KB08.0','Transient neonatal myasthenia gravis','Y','2025-10-23 00:00:00'),(104206,11,'KA8D','Transient neonatal neutropaenia','Y','2025-10-23 00:00:00'),(104207,11,'KA89','Transient neonatal thrombocytopaenia','Y','2025-10-23 00:00:00'),(104208,11,'KA89.Z','Transient neonatal thrombocytopaenia, unspecified','Y','2025-10-23 00:00:00'),(104209,11,'9D00.6','Transient refractive change','Y','2025-10-23 00:00:00'),(104210,11,'FA27.3','Transient synovitis','Y','2025-10-23 00:00:00'),(104211,11,'KB23.1','Transient tachypnoea of newborn','Y','2025-10-23 00:00:00'),(104212,11,'9D51','Transient visual loss','Y','2025-10-23 00:00:00'),(104213,11,'XH7TL4','Transitional carcinoma','Y','2025-10-23 00:00:00'),(104214,11,'XH08S6','Transitional cell carcinoma, micropapillary','Y','2025-10-23 00:00:00'),(104215,11,'XH8EH1','Transitional cell carcinoma, NOS','Y','2025-10-23 00:00:00'),(104216,11,'XH4EX5','Transitional meningioma','Y','2025-10-23 00:00:00'),(104217,11,'XH3HQ8','Transitional papilloma, inverted, NOS','Y','2025-10-23 00:00:00'),(104218,11,'XH3D20','Transitional pineal tumour','Y','2025-10-23 00:00:00'),(104219,11,'KB60','Transitory disorders of carbohydrate metabolism specific to fetus or newborn','Y','2025-10-23 00:00:00'),(104220,11,'KB60.Z','Transitory disorders of carbohydrate metabolism specific to fetus or newborn, unspecified','Y','2025-10-23 00:00:00'),(104221,11,'KB6Z','Transitory endocrine or metabolic disorders specific to fetus or newborn, unspecified','Y','2025-10-23 00:00:00'),(104222,11,'KB60.41','Transitory iatrogenic neonatal hypoglycaemia','Y','2025-10-23 00:00:00'),(104223,11,'KB87.3','Transitory ileus of newborn','Y','2025-10-23 00:00:00'),(104224,11,'KB61','Transitory neonatal disorders of calcium or magnesium metabolism','Y','2025-10-23 00:00:00'),(104225,11,'KB61.Z','Transitory neonatal disorders of calcium or magnesium metabolism, unspecified','Y','2025-10-23 00:00:00'),(104226,11,'KB62','Transitory neonatal disorders of thyroid function','Y','2025-10-23 00:00:00'),(104227,11,'KB62.Z','Transitory neonatal disorders of thyroid function, unspecified','Y','2025-10-23 00:00:00'),(104228,11,'KB62.0','Transitory neonatal hyperthyroidism','Y','2025-10-23 00:00:00'),(104229,11,'KB64','Transitory neonatal hypoparathyroidism','Y','2025-10-23 00:00:00'),(104230,11,'KB63.4','Transitory tyrosinaemia of newborn','Y','2025-10-23 00:00:00'),(104231,11,'XE0UG','Translational motion component of medical device','Y','2025-10-23 00:00:00'),(104232,11,'XE579','Transmitter component of medical device','Y','2025-10-23 00:00:00'),(104233,11,'XE5KY','Transport area other than highway, street or road','Y','2025-10-23 00:00:00'),(104234,11,'XD9YL7','Transport media','Y','2025-10-23 00:00:00'),(104235,11,'XE9VK','Transport or storage problem with device identified','Y','2025-10-23 00:00:00'),(104236,11,'XE38Y','Transport vehicle drawn or pushed by person','Y','2025-10-23 00:00:00'),(104237,11,'XD60Z6','Transportable ventilators','Y','2025-10-23 00:00:00'),(104238,11,'LA85.1','Transposition of the great arteries','Y','2025-10-23 00:00:00'),(104239,11,'XM1WF9','Transvaal thick tailed scorpion venom','Y','2025-10-23 00:00:00'),(104240,11,'XA9J44','Transverse acetabular ligament','Y','2025-10-23 00:00:00'),(104241,11,'XA3856','Transverse arytenoid muscle','Y','2025-10-23 00:00:00'),(104242,11,'XA9YC3','Transverse arytenoid tendon','Y','2025-10-23 00:00:00'),(104243,11,'XA9AU8','Transverse auricularis muscle','Y','2025-10-23 00:00:00'),(104244,11,'XA4XR2','Transverse branch of the lateral femoral circumflex artery','Y','2025-10-23 00:00:00'),(104245,11,'XA6142','Transverse cervical artery','Y','2025-10-23 00:00:00'),(104246,11,'XA25F4','Transverse cervical nerve','Y','2025-10-23 00:00:00'),(104247,11,'XA6945','Transverse cervical vein','Y','2025-10-23 00:00:00'),(104248,11,'XA49U1','Transverse colon','Y','2025-10-23 00:00:00'),(104249,11,'XA9M59','Transverse facial artery','Y','2025-10-23 00:00:00'),(104250,11,'XA5GY9','Transverse facial vein','Y','2025-10-23 00:00:00'),(104251,11,'XJ5V7','Transverse fracture','Y','2025-10-23 00:00:00'),(104252,11,'XA9C92','Transverse humeral ligament','Y','2025-10-23 00:00:00'),(104253,11,'XA8389','Transverse ligament of the atlas','Y','2025-10-23 00:00:00'),(104254,11,'XA71L7','Transverse ligament of the knee','Y','2025-10-23 00:00:00'),(104255,11,'XA3SZ9','Transverse metacarpal ligament','Y','2025-10-23 00:00:00'),(104256,11,'XA5BX0','Transverse metatarsal ligament','Y','2025-10-23 00:00:00'),(104257,11,'8A41.0','Transverse myelitis','Y','2025-10-23 00:00:00'),(104258,11,'XA2DL5','Transverse scapular vein','Y','2025-10-23 00:00:00'),(104259,11,'XA4289','Transverse sinus','Y','2025-10-23 00:00:00'),(104260,11,'XA9FR3','Transversus abdominis muscle','Y','2025-10-23 00:00:00'),(104261,11,'XA0V25','Transversus abdominis tendon','Y','2025-10-23 00:00:00'),(104262,11,'XA3G64','Transversus thoracis muscle','Y','2025-10-23 00:00:00'),(104263,11,'XA1HX3','Transversus thoracis tendon','Y','2025-10-23 00:00:00'),(104264,11,'XM0G58','Tranxene','Y','2025-10-23 00:00:00'),(104265,11,'XM1023','Tranylcypromine','Y','2025-10-23 00:00:00'),(104266,11,'XE2FM','Trap component of medical device','Y','2025-10-23 00:00:00'),(104267,11,'XA7XM2','Trapezium bone','Y','2025-10-23 00:00:00'),(104268,11,'XA86Q8','Trapezius muscle','Y','2025-10-23 00:00:00'),(104269,11,'XA9PV0','Trapezius tendon','Y','2025-10-23 00:00:00'),(104270,11,'XA9DH2','Trapezoid bone','Y','2025-10-23 00:00:00'),(104271,11,'XA5SJ7','Trapezoid ligament','Y','2025-10-23 00:00:00'),(104272,11,'XM24R2','Trapidil','Y','2025-10-23 00:00:00'),(104273,11,'XM2FU8','Trastuzumab','Y','2025-10-23 00:00:00'),(104274,11,'XM9KZ5','Trastuzumab duocarmazine','Y','2025-10-23 00:00:00'),(104275,11,'XM6H29','Trastuzumab emtansine','Y','2025-10-23 00:00:00'),(104276,11,'NA06.5','Trauma to the iris sphincter','Y','2025-10-23 00:00:00'),(104277,11,'NC38.2','Traumatic amputation at elbow level, bilateral','Y','2025-10-23 00:00:00'),(104278,11,'NC78.2','Traumatic amputation at hip joint, bilateral','Y','2025-10-23 00:00:00'),(104279,11,'NC98.2','Traumatic amputation at knee level, bilateral','Y','2025-10-23 00:00:00'),(104280,11,'NC38.1','Traumatic amputation at left elbow level','Y','2025-10-23 00:00:00'),(104281,11,'NC78.1','Traumatic amputation at left hip joint','Y','2025-10-23 00:00:00'),(104282,11,'NC18.1','Traumatic amputation at left shoulder joint','Y','2025-10-23 00:00:00'),(104283,11,'NC78.5','Traumatic amputation at level between hip and knee, bilateral','Y','2025-10-23 00:00:00'),(104284,11,'NC98.5','Traumatic amputation at level between knee and ankle, bilateral','Y','2025-10-23 00:00:00'),(104285,11,'NC38.4','Traumatic amputation at level between left elbow and wrist','Y','2025-10-23 00:00:00'),(104286,11,'NC78.4','Traumatic amputation at level between left hip and knee','Y','2025-10-23 00:00:00'),(104287,11,'NC98.4','Traumatic amputation at level between left knee and ankle','Y','2025-10-23 00:00:00'),(104288,11,'NC18.4','Traumatic amputation at level between left shoulder and elbow','Y','2025-10-23 00:00:00'),(104289,11,'NC38.3','Traumatic amputation at level between right elbow and wrist','Y','2025-10-23 00:00:00'),(104290,11,'NC78.3','Traumatic amputation at level between right hip and knee','Y','2025-10-23 00:00:00'),(104291,11,'NC98.3','Traumatic amputation at level between right knee and ankle','Y','2025-10-23 00:00:00'),(104292,11,'NC18.3','Traumatic amputation at level between right shoulder and elbow','Y','2025-10-23 00:00:00'),(104293,11,'NC18.5','Traumatic amputation at level between shoulder and elbow, bilateral','Y','2025-10-23 00:00:00'),(104294,11,'NA63','Traumatic amputation at neck level','Y','2025-10-23 00:00:00'),(104295,11,'NC59.01','Traumatic amputation at or near base of left thumb','Y','2025-10-23 00:00:00'),(104296,11,'NC59.00','Traumatic amputation at or near base of right thumb','Y','2025-10-23 00:00:00'),(104297,11,'NC59.02','Traumatic amputation at or near base of thumb, bilateral','Y','2025-10-23 00:00:00'),(104298,11,'NC38.0','Traumatic amputation at right elbow level','Y','2025-10-23 00:00:00'),(104299,11,'NC78.0','Traumatic amputation at right hip joint','Y','2025-10-23 00:00:00'),(104300,11,'NC18.0','Traumatic amputation at right shoulder joint','Y','2025-10-23 00:00:00'),(104301,11,'NC18.2','Traumatic amputation at shoulder joint, bilateral','Y','2025-10-23 00:00:00'),(104302,11,'NC38.5','Traumatic amputation between elbow and wrist, bilateral','Y','2025-10-23 00:00:00'),(104303,11,'ND19','Traumatic amputation of ankle or foot','Y','2025-10-23 00:00:00'),(104304,11,'ND19.Z','Traumatic amputation of ankle or foot, unspecified','Y','2025-10-23 00:00:00'),(104305,11,'NB33.1','Traumatic amputation of breast','Y','2025-10-23 00:00:00'),(104306,11,'NB33.1Z','Traumatic amputation of breast, unspecified','Y','2025-10-23 00:00:00'),(104307,11,'NA09.1','Traumatic amputation of ear','Y','2025-10-23 00:00:00'),(104308,11,'NA09.10','Traumatic amputation of ear, complete','Y','2025-10-23 00:00:00'),(104309,11,'NA09.11','Traumatic amputation of ear, partial','Y','2025-10-23 00:00:00'),(104310,11,'NA09.1Z','Traumatic amputation of ear, unspecified','Y','2025-10-23 00:00:00'),(104311,11,'NB33.11','Traumatic amputation of entire breast','Y','2025-10-23 00:00:00'),(104312,11,'NB93.20','Traumatic amputation of entire penis','Y','2025-10-23 00:00:00'),(104313,11,'NB93.22','Traumatic amputation of entire testes or scrotum','Y','2025-10-23 00:00:00'),(104314,11,'NB93.24','Traumatic amputation of entire vulva','Y','2025-10-23 00:00:00'),(104315,11,'NB93.2','Traumatic amputation of external genital organs','Y','2025-10-23 00:00:00'),(104316,11,'NB93.2Z','Traumatic amputation of external genital organs, unspecified','Y','2025-10-23 00:00:00'),(104317,11,'ND19.2','Traumatic amputation of foot at ankle level, bilateral','Y','2025-10-23 00:00:00'),(104318,11,'ND19.5','Traumatic amputation of foot at metatarsal level, bilateral','Y','2025-10-23 00:00:00'),(104319,11,'NC38','Traumatic amputation of forearm','Y','2025-10-23 00:00:00'),(104320,11,'NC38.Z','Traumatic amputation of forearm, unspecified','Y','2025-10-23 00:00:00'),(104321,11,'NC59.4','Traumatic amputation of hand at metacarpal level','Y','2025-10-23 00:00:00'),(104322,11,'NC78','Traumatic amputation of hip or thigh','Y','2025-10-23 00:00:00'),(104323,11,'NC78.Z','Traumatic amputation of hip or thigh, unspecified','Y','2025-10-23 00:00:00'),(104324,11,'ND19.1','Traumatic amputation of left foot at ankle level','Y','2025-10-23 00:00:00'),(104325,11,'ND19.4','Traumatic amputation of left foot at metatarsal level','Y','2025-10-23 00:00:00'),(104326,11,'NC98.1','Traumatic amputation of left lower leg at knee level','Y','2025-10-23 00:00:00'),(104327,11,'NA09.3','Traumatic amputation of lip','Y','2025-10-23 00:00:00'),(104328,11,'NC98','Traumatic amputation of lower leg','Y','2025-10-23 00:00:00'),(104329,11,'NC98.Z','Traumatic amputation of lower leg, unspecified','Y','2025-10-23 00:00:00'),(104330,11,'NA09.2','Traumatic amputation of nose','Y','2025-10-23 00:00:00'),(104331,11,'NA09.20','Traumatic amputation of nose, complete','Y','2025-10-23 00:00:00'),(104332,11,'NA09.21','Traumatic amputation of nose, partial','Y','2025-10-23 00:00:00'),(104333,11,'NA09.2Z','Traumatic amputation of nose, unspecified','Y','2025-10-23 00:00:00'),(104334,11,'ND19.6','Traumatic amputation of one toe','Y','2025-10-23 00:00:00'),(104335,11,'NB93.3','Traumatic amputation of other or unspecified parts of abdomen, lower back or pelvis','Y','2025-10-23 00:00:00'),(104336,11,'NB33.2','Traumatic amputation of other part of thorax','Y','2025-10-23 00:00:00'),(104337,11,'ND19.8','Traumatic amputation of other parts of foot','Y','2025-10-23 00:00:00'),(104338,11,'NC59.1','Traumatic amputation of other single finger','Y','2025-10-23 00:00:00'),(104339,11,'NB33.10','Traumatic amputation of part of breast','Y','2025-10-23 00:00:00'),(104340,11,'NA09','Traumatic amputation of part of head','Y','2025-10-23 00:00:00'),(104341,11,'NA09.Z','Traumatic amputation of part of head, unspecified','Y','2025-10-23 00:00:00'),(104342,11,'NB93.21','Traumatic amputation of part of penis','Y','2025-10-23 00:00:00'),(104343,11,'NB93.23','Traumatic amputation of part of testes or scrotum','Y','2025-10-23 00:00:00'),(104344,11,'NB93.25','Traumatic amputation of part of vulva','Y','2025-10-23 00:00:00'),(104345,11,'ND19.0','Traumatic amputation of right foot at ankle level','Y','2025-10-23 00:00:00'),(104346,11,'ND19.3','Traumatic amputation of right foot at metatarsal level','Y','2025-10-23 00:00:00'),(104347,11,'NC98.0','Traumatic amputation of right lower leg at knee level','Y','2025-10-23 00:00:00'),(104348,11,'NC18','Traumatic amputation of shoulder or upper arm','Y','2025-10-23 00:00:00'),(104349,11,'NC18.Z','Traumatic amputation of shoulder or upper arm, unspecified','Y','2025-10-23 00:00:00'),(104350,11,'NC59.0','Traumatic amputation of thumb','Y','2025-10-23 00:00:00'),(104351,11,'NC59.0Z','Traumatic amputation of thumb, unspecified','Y','2025-10-23 00:00:00'),(104352,11,'NC59.2','Traumatic amputation of two or more fingers alone','Y','2025-10-23 00:00:00'),(104353,11,'NC59.22','Traumatic amputation of two or more fingers alone at or near base, bilateral','Y','2025-10-23 00:00:00'),(104354,11,'NC59.2Z','Traumatic amputation of two or more fingers alone, unspecified','Y','2025-10-23 00:00:00'),(104355,11,'NC59.21','Traumatic amputation of two or more fingers at or near base, left hand','Y','2025-10-23 00:00:00'),(104356,11,'NC59.20','Traumatic amputation of two or more fingers at or near base, right hand','Y','2025-10-23 00:00:00'),(104357,11,'ND19.7','Traumatic amputation of two or more toes','Y','2025-10-23 00:00:00'),(104358,11,'ND56.8','Traumatic amputation of unspecified body region','Y','2025-10-23 00:00:00'),(104359,11,'NC59','Traumatic amputation of wrist or hand','Y','2025-10-23 00:00:00'),(104360,11,'NC59.Z','Traumatic amputation of wrist or hand, unspecified','Y','2025-10-23 00:00:00'),(104361,11,'ND35','Traumatic amputations involving multiple body regions','Y','2025-10-23 00:00:00'),(104362,11,'NF0A.5','Traumatic anuria, not elsewhere classified','Y','2025-10-23 00:00:00'),(104363,11,'9B10.20','Traumatic cataract','Y','2025-10-23 00:00:00'),(104364,11,'NA07.2','Traumatic cerebral oedema','Y','2025-10-23 00:00:00'),(104365,11,'NA07.2Z','Traumatic cerebral oedema, unspecified','Y','2025-10-23 00:00:00'),(104366,11,'NA07.5','Traumatic epidural haemorrhage','Y','2025-10-23 00:00:00'),(104367,11,'NB32.2','Traumatic haemopneumothorax','Y','2025-10-23 00:00:00'),(104368,11,'NA07.8','Traumatic haemorrhage in brain tissue','Y','2025-10-23 00:00:00'),(104369,11,'NA07.8Z','Traumatic haemorrhage in brain tissue, unspecified','Y','2025-10-23 00:00:00'),(104370,11,'NA07.83','Traumatic haemorrhage in brainstem','Y','2025-10-23 00:00:00'),(104371,11,'NA07.84','Traumatic haemorrhage in brainstem, primary','Y','2025-10-23 00:00:00'),(104372,11,'NA07.85','Traumatic haemorrhage in brainstem, secondary','Y','2025-10-23 00:00:00'),(104373,11,'NA07.82','Traumatic haemorrhage in cerebellum','Y','2025-10-23 00:00:00'),(104374,11,'NA07.80','Traumatic haemorrhage in cerebrum white matter','Y','2025-10-23 00:00:00'),(104375,11,'NA07.81','Traumatic haemorrhage in thalamus or basal ganglia','Y','2025-10-23 00:00:00'),(104376,11,'NB32.1','Traumatic haemothorax','Y','2025-10-23 00:00:00'),(104377,11,'NA06.6','Traumatic injuries of the retina','Y','2025-10-23 00:00:00'),(104378,11,'NA06.6Z','Traumatic injuries of the retina, unspecified','Y','2025-10-23 00:00:00'),(104379,11,'NA06.8','Traumatic injury to eyeball','Y','2025-10-23 00:00:00'),(104380,11,'NA06.8Z','Traumatic injury to eyeball, unspecified','Y','2025-10-23 00:00:00'),(104381,11,'NA07.1','Traumatic intracerebral haemorrhage','Y','2025-10-23 00:00:00'),(104382,11,'NF0A.6','Traumatic ischaemia of muscle, not elsewhere classified','Y','2025-10-23 00:00:00'),(104383,11,'9A72','Traumatic keratitis','Y','2025-10-23 00:00:00'),(104384,11,'NA06.60','Traumatic macular hole','Y','2025-10-23 00:00:00'),(104385,11,'8C12.5','Traumatic neuroma, not otherwise specified','Y','2025-10-23 00:00:00'),(104386,11,'9C40.7','Traumatic optic neuropathy','Y','2025-10-23 00:00:00'),(104387,11,'NA06.3','Traumatic orbital haemorrhage','Y','2025-10-23 00:00:00'),(104388,11,'NB32.0','Traumatic pneumothorax','Y','2025-10-23 00:00:00'),(104389,11,'KB28.1','Traumatic pulmonary haemorrhage originating in the perinatal period','Y','2025-10-23 00:00:00'),(104390,11,'EF31','Traumatic purpura','Y','2025-10-23 00:00:00'),(104391,11,'NA06.7','Traumatic retinal haemorrhage','Y','2025-10-23 00:00:00'),(104392,11,'NA23.0','Traumatic rupture of cervical intervertebral disc','Y','2025-10-23 00:00:00'),(104393,11,'NC54.50','Traumatic rupture of collateral ligament of finger at metacarpophalangeal or interphalangeal joint','Y','2025-10-23 00:00:00'),(104394,11,'NA0A.2','Traumatic rupture of ear drum','Y','2025-10-23 00:00:00'),(104395,11,'NC54.5','Traumatic rupture of ligament of finger at metacarpophalangeal or interphalangeal joint','Y','2025-10-23 00:00:00'),(104396,11,'NC54.5Z','Traumatic rupture of ligament of finger at metacarpophalangeal or interphalangeal joint, unspecified','Y','2025-10-23 00:00:00'),(104397,11,'NC54.4','Traumatic rupture of ligament of wrist or carpus','Y','2025-10-23 00:00:00'),(104398,11,'NC54.4Z','Traumatic rupture of ligament of wrist or carpus, unspecified','Y','2025-10-23 00:00:00'),(104399,11,'NB53.0','Traumatic rupture of lumbar intervertebral disc','Y','2025-10-23 00:00:00'),(104400,11,'NC54.43','Traumatic rupture of lunotriquetral ligament','Y','2025-10-23 00:00:00'),(104401,11,'NC54.53','Traumatic rupture of other ligament of finger at metacarpophalangeal or interphalangeal joint','Y','2025-10-23 00:00:00'),(104402,11,'NC54.4Y','Traumatic rupture of other specified ligament of wrist or carpus','Y','2025-10-23 00:00:00'),(104403,11,'NC54.51','Traumatic rupture of palmar ligament of finger at metacarpophalangeal or interphalangeal joint','Y','2025-10-23 00:00:00'),(104404,11,'NC33.2','Traumatic rupture of radial collateral ligament','Y','2025-10-23 00:00:00'),(104405,11,'NC54.41','Traumatic rupture of radiocarpal ligament','Y','2025-10-23 00:00:00'),(104406,11,'NC54.40','Traumatic rupture of scapholunate ligament','Y','2025-10-23 00:00:00'),(104407,11,'NB53.4','Traumatic rupture of symphysis pubis without disruption of pelvic ring','Y','2025-10-23 00:00:00'),(104408,11,'NA83.0','Traumatic rupture of thoracic intervertebral disc','Y','2025-10-23 00:00:00'),(104409,11,'NC33.3','Traumatic rupture of ulnar collateral ligament','Y','2025-10-23 00:00:00'),(104410,11,'NC54.42','Traumatic rupture of ulnocarpal ligament','Y','2025-10-23 00:00:00'),(104411,11,'NC54.52','Traumatic rupture of volar plate of finger at metacarpophalangeal or interphalangeal joint','Y','2025-10-23 00:00:00'),(104412,11,'9A06.3','Traumatic scar of eyelid','Y','2025-10-23 00:00:00'),(104413,11,'NF0A.2','Traumatic secondary or recurrent haemorrhage, not elsewhere classified','Y','2025-10-23 00:00:00'),(104414,11,'NF0A.4','Traumatic shock, not elsewhere classified','Y','2025-10-23 00:00:00'),(104415,11,'NA22.10','Traumatic spondylolisthesis of second cervical vertebra, type III','Y','2025-10-23 00:00:00'),(104416,11,'FA72.2','Traumatic spondylopathy','Y','2025-10-23 00:00:00'),(104417,11,'NA07.7','Traumatic subarachnoid haemorrhage','Y','2025-10-23 00:00:00'),(104418,11,'NF0A.7','Traumatic subcutaneous emphysema, not elsewhere classified','Y','2025-10-23 00:00:00'),(104419,11,'NA07.6','Traumatic subdural haemorrhage','Y','2025-10-23 00:00:00'),(104420,11,'XE9Q2','Travelling in the course of paid work','Y','2025-10-23 00:00:00'),(104421,11,'XE3RL','Travelling in the course of unpaid work','Y','2025-10-23 00:00:00'),(104422,11,'XE4SM','Travelling to or from educational activity','Y','2025-10-23 00:00:00'),(104423,11,'XE7NW','Travelling to or from paid work','Y','2025-10-23 00:00:00'),(104424,11,'XE1C6','Travelling to or from unpaid work','Y','2025-10-23 00:00:00'),(104425,11,'XM7JQ2','Travert','Y','2025-10-23 00:00:00'),(104426,11,'XM9BS0','Travoprost','Y','2025-10-23 00:00:00'),(104427,11,'XM62E7','Trazodone','Y','2025-10-23 00:00:00'),(104428,11,'7A40.7','Treatment-emergent central sleep apnoea','Y','2025-10-23 00:00:00'),(104429,11,'XM7P11','Tree cobra snake venom','Y','2025-10-23 00:00:00'),(104430,11,'XE7YQ','Tree house, play house','Y','2025-10-23 00:00:00'),(104431,11,'XE9CV','Tree, plant','Y','2025-10-23 00:00:00'),(104432,11,'8A04.33','Tremor due to certain specified central nervous system diseases','Y','2025-10-23 00:00:00'),(104433,11,'8A04.31','Tremor due to chronic or acute substance use','Y','2025-10-23 00:00:00'),(104434,11,'8A04.32','Tremor due to drug withdrawal','Y','2025-10-23 00:00:00'),(104435,11,'8A04.30','Tremor due to metabolic disorders','Y','2025-10-23 00:00:00'),(104436,11,'1C11.1','Trench fever','Y','2025-10-23 00:00:00'),(104437,11,'XE3EC','Trench, ditch, pit','Y','2025-10-23 00:00:00'),(104438,11,'XE8BM','Trend analysis','Y','2025-10-23 00:00:00'),(104439,11,'XM9CR4','Treosulfan','Y','2025-10-23 00:00:00'),(104440,11,'XM2SK3','Trepibutone','Y','2025-10-23 00:00:00'),(104441,11,'XN36C','Treponema','Y','2025-10-23 00:00:00'),(104442,11,'XN76V','Treponema carateum','Y','2025-10-23 00:00:00'),(104443,11,'XN711','Treponema pallidum','Y','2025-10-23 00:00:00'),(104444,11,'XN6AL','Treponema pallidum carateum','Y','2025-10-23 00:00:00'),(104445,11,'XN35Z','Treponema pallidum endemicum','Y','2025-10-23 00:00:00'),(104446,11,'XN030','Treponema pallidum pallidum','Y','2025-10-23 00:00:00'),(104447,11,'XN46P','Treponema pallidum pertenue','Y','2025-10-23 00:00:00'),(104448,11,'XM5057','Treprostinil','Y','2025-10-23 00:00:00'),(104449,11,'XM9DB5','Tretinoin','Y','2025-10-23 00:00:00'),(104450,11,'XM7C94','Tretinoin topical','Y','2025-10-23 00:00:00'),(104451,11,'XM3GQ2','Tretoquinol','Y','2025-10-23 00:00:00'),(104452,11,'XM6848','Triacetin','Y','2025-10-23 00:00:00'),(104453,11,'XM4ZP4','Triacetoxyanthracene','Y','2025-10-23 00:00:00'),(104454,11,'XM4J30','Triamcinolone','Y','2025-10-23 00:00:00'),(104455,11,'XM4873','Triamcinolone hexacetonide','Y','2025-10-23 00:00:00'),(104456,11,'XM8WS1','Triamcinolone topical','Y','2025-10-23 00:00:00'),(104457,11,'XM64P0','Triampyzine','Y','2025-10-23 00:00:00'),(104458,11,'XM5SJ5','Triamterene','Y','2025-10-23 00:00:00'),(104459,11,'XA3RC6','Triangular fossa of pinna','Y','2025-10-23 00:00:00'),(104460,11,'XM0MH9','Triazine derivative herbicide, not elsewhere classified','Y','2025-10-23 00:00:00'),(104461,11,'XM2RU1','Triaziquone','Y','2025-10-23 00:00:00'),(104462,11,'XM1VC3','Triazolam','Y','2025-10-23 00:00:00'),(104463,11,'XM7ML8','Triazole','Y','2025-10-23 00:00:00'),(104464,11,'XM4GT1','Triazole and tetrazole derivatives','Y','2025-10-23 00:00:00'),(104465,11,'XM2AH6','Triazophos','Y','2025-10-23 00:00:00'),(104466,11,'XM6N03','Tribenoside','Y','2025-10-23 00:00:00'),(104467,11,'XM9XF5','Tribromacetaldehyde','Y','2025-10-23 00:00:00'),(104468,11,'XM8DR0','Tribromoethanol, rectal','Y','2025-10-23 00:00:00'),(104469,11,'XM89W5','Tribromometacresol','Y','2025-10-23 00:00:00'),(104470,11,'XA2EB2','Triceps brachii muscle','Y','2025-10-23 00:00:00'),(104471,11,'XA5RS6','Triceps brachii tendon','Y','2025-10-23 00:00:00'),(104472,11,'9A04.0','Trichiasis without entropion','Y','2025-10-23 00:00:00'),(104473,11,'EK70.1','Trichilemmal cyst','Y','2025-10-23 00:00:00'),(104474,11,'XH9K96','Trichilemmocarcinoma','Y','2025-10-23 00:00:00'),(104475,11,'XH5AU2','Trichilemmoma','Y','2025-10-23 00:00:00'),(104476,11,'XN597','Trichinella','Y','2025-10-23 00:00:00'),(104477,11,'XN34A','Trichinella spiralis','Y','2025-10-23 00:00:00'),(104478,11,'1F6E','Trichinosis','Y','2025-10-23 00:00:00'),(104479,11,'XM1L59','Trichlormethiazide','Y','2025-10-23 00:00:00'),(104480,11,'XM3SV7','Trichlormethine','Y','2025-10-23 00:00:00'),(104481,11,'XM9SC9','Trichloroacetic acid','Y','2025-10-23 00:00:00'),(104482,11,'XM6U21','Trichloroacetic acid medicinal','Y','2025-10-23 00:00:00'),(104483,11,'XM9R55','Trichloroethane','Y','2025-10-23 00:00:00'),(104484,11,'XM1DU6','Trichloroethanol','Y','2025-10-23 00:00:00'),(104485,11,'XM4236','Trichloroethyl phosphate','Y','2025-10-23 00:00:00'),(104486,11,'XM3NB3','Trichloroethylene','Y','2025-10-23 00:00:00'),(104487,11,'XM1E91','Trichloroethylene anaesthetic gas','Y','2025-10-23 00:00:00'),(104488,11,'XM7YS9','Trichloroethylene vapor','Y','2025-10-23 00:00:00'),(104489,11,'XM7FF5','Trichlorofluoromethane','Y','2025-10-23 00:00:00'),(104490,11,'XM13H5','Trichloronate','Y','2025-10-23 00:00:00'),(104491,11,'XM58Q9','Trichloropropane','Y','2025-10-23 00:00:00'),(104492,11,'XM5FH3','Trichlorotriethylamine','Y','2025-10-23 00:00:00'),(104493,11,'ND73.20','Trichobezoar','Y','2025-10-23 00:00:00'),(104494,11,'XH3DL9','Trichoblastic carcinoma','Y','2025-10-23 00:00:00'),(104495,11,'XH8324','Trichoblastic carcinosarcoma','Y','2025-10-23 00:00:00'),(104496,11,'XH2K97','Trichoblastoma','Y','2025-10-23 00:00:00'),(104497,11,'XH6QT9','Trichoepithelioma','Y','2025-10-23 00:00:00'),(104498,11,'XH0U05','Trichofolliculoma','Y','2025-10-23 00:00:00'),(104499,11,'XH05Z3','Trichogerminoma','Y','2025-10-23 00:00:00'),(104500,11,'XM0QR2','Tricholoma equestre mushroom','Y','2025-10-23 00:00:00'),(104501,11,'XM6XS3','Trichomonacides','Y','2025-10-23 00:00:00'),(104502,11,'XN316','Trichomonas','Y','2025-10-23 00:00:00'),(104503,11,'XN7YM','Trichomonas vaginalis','Y','2025-10-23 00:00:00'),(104504,11,'1A92','Trichomoniasis','Y','2025-10-23 00:00:00'),(104505,11,'XN8M6','Trichophyton concentricum','Y','2025-10-23 00:00:00'),(104506,11,'XN3YG','Trichophyton equinum','Y','2025-10-23 00:00:00'),(104507,11,'XN628','Trichophyton gourvilii','Y','2025-10-23 00:00:00'),(104508,11,'XN8BW','Trichophyton interdigitale','Y','2025-10-23 00:00:00'),(104509,11,'XN96H','Trichophyton megninii','Y','2025-10-23 00:00:00'),(104510,11,'XN4DQ','Trichophyton mentagrophytes','Y','2025-10-23 00:00:00'),(104511,11,'XN2JF','Trichophyton rubrum','Y','2025-10-23 00:00:00'),(104512,11,'XN53A','Trichophyton schoenleinii','Y','2025-10-23 00:00:00'),(104513,11,'XN4H4','Trichophyton simii','Y','2025-10-23 00:00:00'),(104514,11,'XN135','Trichophyton soudanense','Y','2025-10-23 00:00:00'),(104515,11,'XN1K6','Trichophyton tonsurans','Y','2025-10-23 00:00:00'),(104516,11,'XN69S','Trichophyton verrucosum','Y','2025-10-23 00:00:00'),(104517,11,'XN31R','Trichophyton violaceum','Y','2025-10-23 00:00:00'),(104518,11,'XN8BF','Trichophyton yaoundei','Y','2025-10-23 00:00:00'),(104519,11,'XN766','Trichosporon','Y','2025-10-23 00:00:00'),(104520,11,'1F6F','Trichostrongyliasis','Y','2025-10-23 00:00:00'),(104521,11,'XN025','Trichostrongylus','Y','2025-10-23 00:00:00'),(104522,11,'XN4K7','Trichostrongylus colubriformis','Y','2025-10-23 00:00:00'),(104523,11,'XM6X33','Trichothecenes','Y','2025-10-23 00:00:00'),(104524,11,'6B25.0','Trichotillomania','Y','2025-10-23 00:00:00'),(104525,11,'1F6G','Trichuriasis','Y','2025-10-23 00:00:00'),(104526,11,'XN4MM','Trichuris','Y','2025-10-23 00:00:00'),(104527,11,'XN6UA','Trichuris trichiura','Y','2025-10-23 00:00:00'),(104528,11,'XM7VW8','Triclabendazole','Y','2025-10-23 00:00:00'),(104529,11,'XM5KU0','Triclobisonium chloride','Y','2025-10-23 00:00:00'),(104530,11,'XM74T6','Triclocarban','Y','2025-10-23 00:00:00'),(104531,11,'XM68E8','Triclofos','Y','2025-10-23 00:00:00'),(104532,11,'XM5WW5','Triclosan','Y','2025-10-23 00:00:00'),(104533,11,'XM5FS3','Tricresyl phosphate','Y','2025-10-23 00:00:00'),(104534,11,'LA89.1','Tricuspid atresia','Y','2025-10-23 00:00:00'),(104535,11,'XA6FF2','Tricuspid valve','Y','2025-10-23 00:00:00'),(104536,11,'BB8Z','Tricuspid valve disease, unspecified','Y','2025-10-23 00:00:00'),(104537,11,'BB81','Tricuspid valve insufficiency','Y','2025-10-23 00:00:00'),(104538,11,'BB81.Z','Tricuspid valve insufficiency, unspecified','Y','2025-10-23 00:00:00'),(104539,11,'BB84','Tricuspid valve rupture','Y','2025-10-23 00:00:00'),(104540,11,'BB80','Tricuspid valve stenosis','Y','2025-10-23 00:00:00'),(104541,11,'BB82','Tricuspid valve stenosis with insufficiency','Y','2025-10-23 00:00:00'),(104542,11,'BB82.Z','Tricuspid valve stenosis with insufficiency, unspecified','Y','2025-10-23 00:00:00'),(104543,11,'BB80.Z','Tricuspid valve stenosis, unspecified','Y','2025-10-23 00:00:00'),(104544,11,'BB83','Tricuspid valvular abscess','Y','2025-10-23 00:00:00'),(104545,11,'XM2TJ3','Tricyclamol chloride','Y','2025-10-23 00:00:00'),(104546,11,'XM93J3','Tridesilon','Y','2025-10-23 00:00:00'),(104547,11,'XM4LY7','Tridihexethyl','Y','2025-10-23 00:00:00'),(104548,11,'XM17K9','Tridihexethyl iodide','Y','2025-10-23 00:00:00'),(104549,11,'XM6GP9','Trientine','Y','2025-10-23 00:00:00'),(104550,11,'XM8F93','Triethanolamine','Y','2025-10-23 00:00:00'),(104551,11,'XM5770','Triethanolamine trinitrate (biphosphate)','Y','2025-10-23 00:00:00'),(104552,11,'XM7TR9','Triethanomelamine','Y','2025-10-23 00:00:00'),(104553,11,'XM9T22','Triethylenemelamine','Y','2025-10-23 00:00:00'),(104554,11,'XM6NM1','Triethylenephosphoramide','Y','2025-10-23 00:00:00'),(104555,11,'XM7QN7','Triethylenetetramine','Y','2025-10-23 00:00:00'),(104556,11,'XM5GV6','Triethylenethiophosphoramide','Y','2025-10-23 00:00:00'),(104557,11,'XM18F5','Trifluoperazine','Y','2025-10-23 00:00:00'),(104558,11,'XM9NP2','Trifluoroethyl vinyl ether','Y','2025-10-23 00:00:00'),(104559,11,'XM4U52','Trifluperidol','Y','2025-10-23 00:00:00'),(104560,11,'XM1TZ3','Triflupromazine','Y','2025-10-23 00:00:00'),(104561,11,'XM6WB2','Trifluridine','Y','2025-10-23 00:00:00'),(104562,11,'XM0YN9','Trifluridine, combinations','Y','2025-10-23 00:00:00'),(104563,11,'XM5PR9','Triflusal','Y','2025-10-23 00:00:00'),(104564,11,'8A82','Trigeminal autonomic cephalalgias','Y','2025-10-23 00:00:00'),(104565,11,'XA72G0','Trigeminal nerve','Y','2025-10-23 00:00:00'),(104566,11,'XA1F17','Trigeminal nerve, mandibular branch','Y','2025-10-23 00:00:00'),(104567,11,'XA8KJ5','Trigeminal nerve, maxillary branch','Y','2025-10-23 00:00:00'),(104568,11,'XA95Y8','Trigeminal nerve, ophthalmic branch','Y','2025-10-23 00:00:00'),(104569,11,'8B82.0','Trigeminal neuralgia','Y','2025-10-23 00:00:00'),(104570,11,'FB40.4','Trigger finger','Y','2025-10-23 00:00:00'),(104571,11,'XA6KF2','Trigone of bladder','Y','2025-10-23 00:00:00'),(104572,11,'XA2UZ6','Trigone of urinary bladder duplication','Y','2025-10-23 00:00:00'),(104573,11,'GC00.0','Trigonitis','Y','2025-10-23 00:00:00'),(104574,11,'XM9W98','Trihexyphenidyl','Y','2025-10-23 00:00:00'),(104575,11,'XM7PK0','Trilaciclib','Y','2025-10-23 00:00:00'),(104576,11,'XM7DQ5','Trilostane','Y','2025-10-23 00:00:00'),(104577,11,'NC92.77','Trimalleolar fracture of ankle, not otherwise specified','Y','2025-10-23 00:00:00'),(104578,11,'XM7D19','Trimazosin','Y','2025-10-23 00:00:00'),(104579,11,'XM0EL4','Trimebutine','Y','2025-10-23 00:00:00'),(104580,11,'XM3QD1','Trimecaine','Y','2025-10-23 00:00:00'),(104581,11,'XM5S52','Trimeprazine (tartrate)','Y','2025-10-23 00:00:00'),(104582,11,'XM3YZ9','Trimetaphan camsilate','Y','2025-10-23 00:00:00'),(104583,11,'XM3PB7','Trimetazidine','Y','2025-10-23 00:00:00'),(104584,11,'XM31H5','Trimethadione','Y','2025-10-23 00:00:00'),(104585,11,'XM4BZ9','Trimethaphan','Y','2025-10-23 00:00:00'),(104586,11,'XM9BT3','Trimethidinium','Y','2025-10-23 00:00:00'),(104587,11,'XM8SN3','Trimethobenzamide','Y','2025-10-23 00:00:00'),(104588,11,'XM7NY9','Trimethoprim','Y','2025-10-23 00:00:00'),(104589,11,'XM3MG7','Trimethoprim derivatives','Y','2025-10-23 00:00:00'),(104590,11,'XM22Y8','Trimethoprim with sulfamethoxazole','Y','2025-10-23 00:00:00'),(104591,11,'5C50.G','Trimethylaminuria','Y','2025-10-23 00:00:00'),(104592,11,'XM5M32','Trimethylcarbinol','Y','2025-10-23 00:00:00'),(104593,11,'XM7ZC5','Trimethyldiphenylpropylamine','Y','2025-10-23 00:00:00'),(104594,11,'XM6BF7','Trimetrexate','Y','2025-10-23 00:00:00'),(104595,11,'XM9WZ5','Trimipramine','Y','2025-10-23 00:00:00'),(104596,11,'XM4J62','Trimustine','Y','2025-10-23 00:00:00'),(104597,11,'XM8YZ8','Trinitrine','Y','2025-10-23 00:00:00'),(104598,11,'XM4B36','Trinitrobenzol','Y','2025-10-23 00:00:00'),(104599,11,'XM2334','Trional','Y','2025-10-23 00:00:00'),(104600,11,'XM5NA2','Triorthocresyl phosphate','Y','2025-10-23 00:00:00'),(104601,11,'XM4RP3','Trioxysalen','Y','2025-10-23 00:00:00'),(104602,11,'XM3YV1','Tripamide','Y','2025-10-23 00:00:00'),(104603,11,'XM95B1','Triparanol','Y','2025-10-23 00:00:00'),(104604,11,'XM0N55','Tripelennamine','Y','2025-10-23 00:00:00'),(104605,11,'XM2M46','Triperiden','Y','2025-10-23 00:00:00'),(104606,11,'LB76','Triphalangeal thumb','Y','2025-10-23 00:00:00'),(104607,11,'XM90U0','Triphenyl phosphate','Y','2025-10-23 00:00:00'),(104608,11,'XM16S3','Triple bromides','Y','2025-10-23 00:00:00'),(104609,11,'XM38H3','Triple carbonate','Y','2025-10-23 00:00:00'),(104610,11,'SG29','Triple energizer meridian pattern (TM1)','Y','2025-10-23 00:00:00'),(104611,11,'SG7Z','Triple energizer stage patterns (TM1), unspecified','Y','2025-10-23 00:00:00'),(104612,11,'XM1PB8','Triple vaccines DPT','Y','2025-10-23 00:00:00'),(104613,11,'JA80.1','Triplet pregnancy','Y','2025-10-23 00:00:00'),(104614,11,'QA46.5','Triplets, all liveborn','Y','2025-10-23 00:00:00'),(104615,11,'QA46.7','Triplets, all stillborn','Y','2025-10-23 00:00:00'),(104616,11,'QA46.6','Triplets, some liveborn','Y','2025-10-23 00:00:00'),(104617,11,'LD42.0','Triploidy','Y','2025-10-23 00:00:00'),(104618,11,'XM8RT2','Triprolidine','Y','2025-10-23 00:00:00'),(104619,11,'XM6FB9','Triptans','Y','2025-10-23 00:00:00'),(104620,11,'XA4A64','Triquetrum bone','Y','2025-10-23 00:00:00'),(104621,11,'XM2U68','Trisodium hydrogen edetate','Y','2025-10-23 00:00:00'),(104622,11,'XM7Z85','Trisulfapyrimidines','Y','2025-10-23 00:00:00'),(104623,11,'XM4SJ2','Triticum (wheat fibre)','Y','2025-10-23 00:00:00'),(104624,11,'XM4YB7','Tritiozine','Y','2025-10-23 00:00:00'),(104625,11,'XM0J21','Tritoqualine','Y','2025-10-23 00:00:00'),(104626,11,'XE4M3','Trocar component of medical device','Y','2025-10-23 00:00:00'),(104627,11,'XN2B3','Trocara virus','Y','2025-10-23 00:00:00'),(104628,11,'XA32G0','Trochanter','Y','2025-10-23 00:00:00'),(104629,11,'XA4TQ2','Trochanteric region','Y','2025-10-23 00:00:00'),(104630,11,'XA9LK4','Trochlea of humerus','Y','2025-10-23 00:00:00'),(104631,11,'XA0GK2','Trochlear nerve','Y','2025-10-23 00:00:00'),(104632,11,'XM4EP0','Trofosfamide','Y','2025-10-23 00:00:00'),(104633,11,'XM0NQ7','Troglitazone','Y','2025-10-23 00:00:00'),(104634,11,'XM0W31','Trolamine','Y','2025-10-23 00:00:00'),(104635,11,'XM2WF8','Troleandomycin','Y','2025-10-23 00:00:00'),(104636,11,'XM55H8','Trolnitrate','Y','2025-10-23 00:00:00'),(104637,11,'XM7GR8','Tromantadine','Y','2025-10-23 00:00:00'),(104638,11,'XN7Z8','Trombicula','Y','2025-10-23 00:00:00'),(104639,11,'XM9QW3','Trometamol','Y','2025-10-23 00:00:00'),(104640,11,'XM2FR2','Tronothane','Y','2025-10-23 00:00:00'),(104641,11,'XM2973','Tropacine','Y','2025-10-23 00:00:00'),(104642,11,'XM4YL9','Tropatepine','Y','2025-10-23 00:00:00'),(104643,11,'XN7PP','Tropheryma','Y','2025-10-23 00:00:00'),(104644,11,'XN5P4','Tropheryma whipplei','Y','2025-10-23 00:00:00'),(104645,11,'XH8FW3','Trophoblastic tumour, epithelioid','Y','2025-10-23 00:00:00'),(104646,11,'DC32.5','Tropical pancreatitis','Y','2025-10-23 00:00:00'),(104647,11,'EA40','Tropical phagedaenic ulcer','Y','2025-10-23 00:00:00'),(104648,11,'CB02.2','Tropical pulmonary eosinophilia','Y','2025-10-23 00:00:00'),(104649,11,'DA96.01','Tropical sprue','Y','2025-10-23 00:00:00'),(104650,11,'XM4466','Tropicamide','Y','2025-10-23 00:00:00'),(104651,11,'XM7V08','Trospium','Y','2025-10-23 00:00:00'),(104652,11,'XM8F25','Trospium chloride','Y','2025-10-23 00:00:00'),(104653,11,'XM6YH9','Trovafloxacin','Y','2025-10-23 00:00:00'),(104654,11,'XM71U2','Troxerutin','Y','2025-10-23 00:00:00'),(104655,11,'XM1Y11','Troxipide','Y','2025-10-23 00:00:00'),(104656,11,'XE4Q6','Truck with trailer as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(104657,11,'XE5ET','Truck with trailer as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(104658,11,'XE10A','Trucks, lorries, and other heavy goods vehicle as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(104659,11,'XE590','Trucks, lorries, and other heavy goods vehicles as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(104660,11,'SA20','True heart pain disorder (TM1)','Y','2025-10-23 00:00:00'),(104661,11,'XH46Q0','True histiocytic lymphoma','Y','2025-10-23 00:00:00'),(104662,11,'XA01U7','True posterior wall of heart','Y','2025-10-23 00:00:00'),(104663,11,'XA3FR3','Trunk','Y','2025-10-23 00:00:00'),(104664,11,'XN9H4','Trypanosoma','Y','2025-10-23 00:00:00'),(104665,11,'XN0C1','Trypanosoma brucei','Y','2025-10-23 00:00:00'),(104666,11,'XN7TC','Trypanosoma brucei gambiense','Y','2025-10-23 00:00:00'),(104667,11,'XN5C7','Trypanosoma brucei rhodesiense','Y','2025-10-23 00:00:00'),(104668,11,'XN56V','Trypanosoma cruzi','Y','2025-10-23 00:00:00'),(104669,11,'XM5R30','Tryparsamide','Y','2025-10-23 00:00:00'),(104670,11,'XM40V6','Trypsin','Y','2025-10-23 00:00:00'),(104671,11,'XM54Q7','Tryptophan','Y','2025-10-23 00:00:00'),(104672,11,'XM8706','Tuaminoheptane','Y','2025-10-23 00:00:00'),(104673,11,'JA01.1','Tubal pregnancy','Y','2025-10-23 00:00:00'),(104674,11,'XE8TY','Tube component of medical device','Y','2025-10-23 00:00:00'),(104675,11,'XM7PF6','Tuberculin','Y','2025-10-23 00:00:00'),(104676,11,'XM0EK6','Tuberculin, purified protein derivative (PPD)','Y','2025-10-23 00:00:00'),(104677,11,'JB63.0','Tuberculosis complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(104678,11,'JB63.0Z','Tuberculosis complicating pregnancy, childbirth or the puerperium, unspecified','Y','2025-10-23 00:00:00'),(104679,11,'1B12.40','Tuberculosis of bones or joints','Y','2025-10-23 00:00:00'),(104680,11,'1B12.2','Tuberculosis of ear','Y','2025-10-23 00:00:00'),(104681,11,'1B12.3','Tuberculosis of endocrine glands','Y','2025-10-23 00:00:00'),(104682,11,'1B12.1','Tuberculosis of eye','Y','2025-10-23 00:00:00'),(104683,11,'1B12.0','Tuberculosis of heart','Y','2025-10-23 00:00:00'),(104684,11,'1B12.Y','Tuberculosis of other specified organ or site','Y','2025-10-23 00:00:00'),(104685,11,'1B11.Y','Tuberculosis of other specified part of nervous system','Y','2025-10-23 00:00:00'),(104686,11,'1B12.4Y','Tuberculosis of other specified part of the musculoskeletal system','Y','2025-10-23 00:00:00'),(104687,11,'1B12','Tuberculosis of other systems and organs','Y','2025-10-23 00:00:00'),(104688,11,'1B12.7','Tuberculosis of the digestive system','Y','2025-10-23 00:00:00'),(104689,11,'1B12.5','Tuberculosis of the genitourinary system','Y','2025-10-23 00:00:00'),(104690,11,'1B12.4','Tuberculosis of the musculoskeletal system','Y','2025-10-23 00:00:00'),(104691,11,'1B12.4Z','Tuberculosis of the musculoskeletal system, unspecified','Y','2025-10-23 00:00:00'),(104692,11,'1B11','Tuberculosis of the nervous system','Y','2025-10-23 00:00:00'),(104693,11,'1B11.Z','Tuberculosis of the nervous system, unspecified','Y','2025-10-23 00:00:00'),(104694,11,'1B10','Tuberculosis of the respiratory system','Y','2025-10-23 00:00:00'),(104695,11,'XM4639','Tuberculosis vaccines','Y','2025-10-23 00:00:00'),(104696,11,'XM8142','Tuberculosis, live attenuated vaccines','Y','2025-10-23 00:00:00'),(104697,11,'1B1Z','Tuberculosis, unspecified','Y','2025-10-23 00:00:00'),(104698,11,'1B11.3','Tuberculous granuloma of brain','Y','2025-10-23 00:00:00'),(104699,11,'1B11.4','Tuberculous granuloma of the meninges','Y','2025-10-23 00:00:00'),(104700,11,'1B11.0','Tuberculous meningitis','Y','2025-10-23 00:00:00'),(104701,11,'1B11.1','Tuberculous meningoencephalitis','Y','2025-10-23 00:00:00'),(104702,11,'1B12.41','Tuberculous myositis','Y','2025-10-23 00:00:00'),(104703,11,'1B12.6','Tuberculous peripheral lymphadenopathy','Y','2025-10-23 00:00:00'),(104704,11,'JB63.00','Tuberculous placenta','Y','2025-10-23 00:00:00'),(104705,11,'XA62P4','Tuberosity of calcaneus','Y','2025-10-23 00:00:00'),(104706,11,'LD2D.2','Tuberous sclerosis','Y','2025-10-23 00:00:00'),(104707,11,'EB90.21','Tuberous xanthoma','Y','2025-10-23 00:00:00'),(104708,11,'XM7139','Tubocurarine','Y','2025-10-23 00:00:00'),(104709,11,'GA05.3','Tuboovarian abscess','Y','2025-10-23 00:00:00'),(104710,11,'XH4TA4','Tubular adenocarcinoma','Y','2025-10-23 00:00:00'),(104711,11,'2F30.0','Tubular adenoma of breast','Y','2025-10-23 00:00:00'),(104712,11,'XH7SY6','Tubular adenoma, NOS','Y','2025-10-23 00:00:00'),(104713,11,'XH4JG0','Tubular carcinoid','Y','2025-10-23 00:00:00'),(104714,11,'GB90.46','Tubular disorders of sodium or potassium transport','Y','2025-10-23 00:00:00'),(104715,11,'XH7K79','Tubulocystic renal cell carcinoma','Y','2025-10-23 00:00:00'),(104716,11,'GB54','Tubulo-interstitial nephritis, not specified as acute or chronic','Y','2025-10-23 00:00:00'),(104717,11,'XH3RK9','Tubulolobular carcinoma','Y','2025-10-23 00:00:00'),(104718,11,'XH10B0','Tubulovillous adenoma, NOS','Y','2025-10-23 00:00:00'),(104719,11,'XE9VV','Tuk-tuk as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(104720,11,'XE8DK','Tuk-tuk as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(104721,11,'XN9G5','Tula virus','Y','2025-10-23 00:00:00'),(104722,11,'1B94','Tularaemia','Y','2025-10-23 00:00:00'),(104723,11,'1B94.Z','Tularaemia, unspecified','Y','2025-10-23 00:00:00'),(104724,11,'XM2YE0','Tulobuterol','Y','2025-10-23 00:00:00'),(104725,11,'XH0489','Tumor of follicular infundibulum','Y','2025-10-23 00:00:00'),(104726,11,'5D01','Tumour lysis syndrome','Y','2025-10-23 00:00:00'),(104727,11,'XM9PG4','Tumour necrosis factor alpha inhibitors','Y','2025-10-23 00:00:00'),(104728,11,'4A60.2','Tumour necrosis factor receptor 1 associated periodic syndrome','Y','2025-10-23 00:00:00'),(104729,11,'XH1TD2','Tumourlet, benign','Y','2025-10-23 00:00:00'),(104730,11,'XH1N44','Tumourlet, NOS','Y','2025-10-23 00:00:00'),(104731,11,'3B81.0','Tumour-like conditions of spleen','Y','2025-10-23 00:00:00'),(104732,11,'2A02.1','Tumours of cranial or paraspinal nerves','Y','2025-10-23 00:00:00'),(104733,11,'2A02.1Z','Tumours of cranial or paraspinal nerves, unspecified','Y','2025-10-23 00:00:00'),(104734,11,'2A00.2','Tumours of neuroepithelial tissue of brain','Y','2025-10-23 00:00:00'),(104735,11,'2A00.2Z','Tumours of neuroepithelial tissue of brain, unspecified','Y','2025-10-23 00:00:00'),(104736,11,'2A00.20','Tumours of the pineal gland or pineal region','Y','2025-10-23 00:00:00'),(104737,11,'XN057','Tunari virus','Y','2025-10-23 00:00:00'),(104738,11,'XN6VS','Tunga','Y','2025-10-23 00:00:00'),(104739,11,'1G05','Tungiasis','Y','2025-10-23 00:00:00'),(104740,11,'XA07W9','Tunica albuginea','Y','2025-10-23 00:00:00'),(104741,11,'XA1FS5','Tunica vaginalis','Y','2025-10-23 00:00:00'),(104742,11,'XH8T50','Turban tumour','Y','2025-10-23 00:00:00'),(104743,11,'SF86','Turbid phlegm accumulation in the lung pattern (TM1)','Y','2025-10-23 00:00:00'),(104744,11,'SB03','Turbid urine disorder (TM1)','Y','2025-10-23 00:00:00'),(104745,11,'LD50.0','Turner syndrome','Y','2025-10-23 00:00:00'),(104746,11,'XM9L39','Turpentine oil','Y','2025-10-23 00:00:00'),(104747,11,'XM7DB8','Turtle seafood poison','Y','2025-10-23 00:00:00'),(104748,11,'XA6W52','Twelfth rib','Y','2025-10-23 00:00:00'),(104749,11,'XA76V2','Twelfth thoracic nerve root','Y','2025-10-23 00:00:00'),(104750,11,'XA7QX3','Twelfth thoracic spinal nerve','Y','2025-10-23 00:00:00'),(104751,11,'XA69W5','Twelfth thoracic vertebra','Y','2025-10-23 00:00:00'),(104752,11,'XA5D86','Twig to the upper part of','Y','2025-10-23 00:00:00'),(104753,11,'QA47.31','Twin liveborn infant, delivered by caesarean','Y','2025-10-23 00:00:00'),(104754,11,'QA47.30','Twin liveborn infant, delivered vaginally','Y','2025-10-23 00:00:00'),(104755,11,'JA80.0','Twin pregnancy','Y','2025-10-23 00:00:00'),(104756,11,'QA47.3','Twin, born in hospital','Y','2025-10-23 00:00:00'),(104757,11,'QA47.3Z','Twin, born in hospital, unspecified','Y','2025-10-23 00:00:00'),(104758,11,'QA47.4','Twin, born outside hospital','Y','2025-10-23 00:00:00'),(104759,11,'QA47.5','Twin, unspecified as to place of birth','Y','2025-10-23 00:00:00'),(104760,11,'QA46.2','Twins, both liveborn','Y','2025-10-23 00:00:00'),(104761,11,'QA46.4','Twins, both stillborn','Y','2025-10-23 00:00:00'),(104762,11,'QA46.3','Twins, one liveborn and one stillborn','Y','2025-10-23 00:00:00'),(104763,11,'XM06W2','Tybamate','Y','2025-10-23 00:00:00'),(104764,11,'XN1GJ','Tylonycteris bat coronavirus HKU4','Y','2025-10-23 00:00:00'),(104765,11,'XM1F74','Tyloxapol','Y','2025-10-23 00:00:00'),(104766,11,'XM0240','Tymazoline','Y','2025-10-23 00:00:00'),(104767,11,'XA3KB2','Tympanic cavity','Y','2025-10-23 00:00:00'),(104768,11,'XA08X4','Tympanic membrane','Y','2025-10-23 00:00:00'),(104769,11,'XA4Q30','Tympanic nerve','Y','2025-10-23 00:00:00'),(104770,11,'SA03','Tympanites disorder (TM1)','Y','2025-10-23 00:00:00'),(104771,11,'AB16','Tympanosclerosis','Y','2025-10-23 00:00:00'),(104772,11,'5A10','Type 1 diabetes mellitus','Y','2025-10-23 00:00:00'),(104773,11,'5A11','Type 2 diabetes mellitus','Y','2025-10-23 00:00:00'),(104774,11,'1B20.20','Type I leprosy reaction','Y','2025-10-23 00:00:00'),(104775,11,'1B20.21','Type II leprosy reaction','Y','2025-10-23 00:00:00'),(104776,11,'XE0EG','Type of conflict, civil insurrection','Y','2025-10-23 00:00:00'),(104777,11,'XE2RB','Type of conflict, civil war or guerrilla operation','Y','2025-10-23 00:00:00'),(104778,11,'XE4RJ','Type of conflict, declared terrorism','Y','2025-10-23 00:00:00'),(104779,11,'XE7HW','Type of conflict, postconflict incident','Y','2025-10-23 00:00:00'),(104780,11,'XE324','Type of conflict, war','Y','2025-10-23 00:00:00'),(104781,11,'XE6Q2','Type of investigation not yet determined','Y','2025-10-23 00:00:00'),(104782,11,'XE8M2','Type of legal intervention, ambush situation','Y','2025-10-23 00:00:00'),(104783,11,'XE1DD','Type of legal intervention, civil disorder','Y','2025-10-23 00:00:00'),(104784,11,'XE7AT','Type of legal intervention, execution of a legal sentence','Y','2025-10-23 00:00:00'),(104785,11,'XE0RZ','Type of legal intervention, handling, transporting, or custody of prisoner','Y','2025-10-23 00:00:00'),(104786,11,'XE3XD','Type of legal intervention, potential arrest related execution of an arrest','Y','2025-10-23 00:00:00'),(104787,11,'XE25D','Type of legal intervention, potential arrest related investigation of a suspicious person or incident','Y','2025-10-23 00:00:00'),(104788,11,'XE9JF','Type of legal intervention, potential arrest related traffic pursuit','Y','2025-10-23 00:00:00'),(104789,11,'XE84H','Type of legal intervention, response to a disturbance call because of a family dispute','Y','2025-10-23 00:00:00'),(104790,11,'XE8WD','Type of legal intervention, response to a disturbance call because of a person behaving aberrantly','Y','2025-10-23 00:00:00'),(104791,11,'XE3FV','Type of legal intervention, response to other specified disturbance call','Y','2025-10-23 00:00:00'),(104792,11,'XE439','Type of legal intervention, response to unspecified disturbance call','Y','2025-10-23 00:00:00'),(104793,11,'8A68.Z','Type of seizure, unspecified','Y','2025-10-23 00:00:00'),(104794,11,'XE08U','Type of sport or exercise activity, abseiling or rappelling','Y','2025-10-23 00:00:00'),(104795,11,'XE34L','Type of sport or exercise activity, aerobatics','Y','2025-10-23 00:00:00'),(104796,11,'XE286','Type of sport or exercise activity, aerobic or callisthenics','Y','2025-10-23 00:00:00'),(104797,11,'XE7K5','Type of sport or exercise activity, aikido','Y','2025-10-23 00:00:00'),(104798,11,'XE0KA','Type of sport or exercise activity, archery','Y','2025-10-23 00:00:00'),(104799,11,'XE3SV','Type of sport or exercise activity, badminton','Y','2025-10-23 00:00:00'),(104800,11,'XE84M','Type of sport or exercise activity, baseball','Y','2025-10-23 00:00:00'),(104801,11,'XE9UG','Type of sport or exercise activity, basketball','Y','2025-10-23 00:00:00'),(104802,11,'XE0HX','Type of sport or exercise activity, bb or pellet gun shooting','Y','2025-10-23 00:00:00'),(104803,11,'XE3BK','Type of sport or exercise activity, biathlon cross-country skiing event','Y','2025-10-23 00:00:00'),(104804,11,'XE05T','Type of sport or exercise activity, biathlon shooting event','Y','2025-10-23 00:00:00'),(104805,11,'XE7ZX','Type of sport or exercise activity, biathlon unspecified event','Y','2025-10-23 00:00:00'),(104806,11,'XE5XX','Type of sport or exercise activity, billiards, pool or snooker','Y','2025-10-23 00:00:00'),(104807,11,'XE5UJ','Type of sport or exercise activity, BMX cycling','Y','2025-10-23 00:00:00'),(104808,11,'XE225','Type of sport or exercise activity, bobsledding','Y','2025-10-23 00:00:00'),(104809,11,'XE760','Type of sport or exercise activity, bocce, boules or petanque','Y','2025-10-23 00:00:00'),(104810,11,'XE8AB','Type of sport or exercise activity, boxing','Y','2025-10-23 00:00:00'),(104811,11,'XE74G','Type of sport or exercise activity, bungee jumping','Y','2025-10-23 00:00:00'),(104812,11,'XE1LG','Type of sport or exercise activity, canoeing','Y','2025-10-23 00:00:00'),(104813,11,'XE2T9','Type of sport or exercise activity, cheerleading','Y','2025-10-23 00:00:00'),(104814,11,'XE5RZ','Type of sport or exercise activity, cliff diving','Y','2025-10-23 00:00:00'),(104815,11,'XE1FN','Type of sport or exercise activity, competitive swimming','Y','2025-10-23 00:00:00'),(104816,11,'XE5M7','Type of sport or exercise activity, cricket','Y','2025-10-23 00:00:00'),(104817,11,'XE8AU','Type of sport or exercise activity, croquet','Y','2025-10-23 00:00:00'),(104818,11,'XE7J1','Type of sport or exercise activity, curling','Y','2025-10-23 00:00:00'),(104819,11,'XE7MG','Type of sport or exercise activity, cycling not otherwise specified','Y','2025-10-23 00:00:00'),(104820,11,'XE6H2','Type of sport or exercise activity, dancing','Y','2025-10-23 00:00:00'),(104821,11,'XE7NG','Type of sport or exercise activity, darts','Y','2025-10-23 00:00:00'),(104822,11,'XE9AM','Type of sport or exercise activity, decathlon 1,500 metre event','Y','2025-10-23 00:00:00'),(104823,11,'XE5PT','Type of sport or exercise activity, decathlon 100 metre event','Y','2025-10-23 00:00:00'),(104824,11,'XE5C1','Type of sport or exercise activity, decathlon 110 metre hurdles event','Y','2025-10-23 00:00:00'),(104825,11,'XE7ND','Type of sport or exercise activity, decathlon 400 metre event','Y','2025-10-23 00:00:00'),(104826,11,'XE11Q','Type of sport or exercise activity, decathlon discus event','Y','2025-10-23 00:00:00'),(104827,11,'XE331','Type of sport or exercise activity, decathlon high jump event','Y','2025-10-23 00:00:00'),(104828,11,'XE37C','Type of sport or exercise activity, decathlon javelin event','Y','2025-10-23 00:00:00'),(104829,11,'XE6CK','Type of sport or exercise activity, decathlon long jump event','Y','2025-10-23 00:00:00'),(104830,11,'XE7LJ','Type of sport or exercise activity, decathlon pole vault event','Y','2025-10-23 00:00:00'),(104831,11,'XE6GN','Type of sport or exercise activity, decathlon shot put event','Y','2025-10-23 00:00:00'),(104832,11,'XE48E','Type of sport or exercise activity, decathlon unspecified event','Y','2025-10-23 00:00:00'),(104833,11,'XE75K','Type of sport or exercise activity, endurance riding','Y','2025-10-23 00:00:00'),(104834,11,'XE6DF','Type of sport or exercise activity, equestrian dressage','Y','2025-10-23 00:00:00'),(104835,11,'XE8JM','Type of sport or exercise activity, equestrian eventing','Y','2025-10-23 00:00:00'),(104836,11,'XE6PK','Type of sport or exercise activity, equestrian polo or polocrosse','Y','2025-10-23 00:00:00'),(104837,11,'XE7MC','Type of sport or exercise activity, equestrian steeplechase','Y','2025-10-23 00:00:00'),(104838,11,'XE2LJ','Type of sport or exercise activity, equestrian trotting or harness','Y','2025-10-23 00:00:00'),(104839,11,'XE4E3','Type of sport or exercise activity, fencing','Y','2025-10-23 00:00:00'),(104840,11,'XE8HB','Type of sport or exercise activity, field hockey','Y','2025-10-23 00:00:00'),(104841,11,'XE08Q','Type of sport or exercise activity, firearm shooting','Y','2025-10-23 00:00:00'),(104842,11,'XE5FN','Type of sport or exercise activity, fishing','Y','2025-10-23 00:00:00'),(104843,11,'XE9N5','Type of sport or exercise activity, floor hockey','Y','2025-10-23 00:00:00'),(104844,11,'XE3T2','Type of sport or exercise activity, football American tackle','Y','2025-10-23 00:00:00'),(104845,11,'XE31W','Type of sport or exercise activity, football American touch or flag','Y','2025-10-23 00:00:00'),(104846,11,'XE72L','Type of sport or exercise activity, football Australian rules','Y','2025-10-23 00:00:00'),(104847,11,'XE3BA','Type of sport or exercise activity, football not otherwise specified','Y','2025-10-23 00:00:00'),(104848,11,'XE8UF','Type of sport or exercise activity, freestyle skiing','Y','2025-10-23 00:00:00'),(104849,11,'XE0CG','Type of sport or exercise activity, freestyle wrestling','Y','2025-10-23 00:00:00'),(104850,11,'XE88Y','Type of sport or exercise activity, gliding','Y','2025-10-23 00:00:00'),(104851,11,'XE46F','Type of sport or exercise activity, go-carting or carting','Y','2025-10-23 00:00:00'),(104852,11,'XE416','Type of sport or exercise activity, golf','Y','2025-10-23 00:00:00'),(104853,11,'XE8M6','Type of sport or exercise activity, Greco-Roman wrestling','Y','2025-10-23 00:00:00'),(104854,11,'XE65D','Type of sport or exercise activity, gymnastics balance beam','Y','2025-10-23 00:00:00'),(104855,11,'XE5WY','Type of sport or exercise activity, gymnastics floor exercise or tumbling','Y','2025-10-23 00:00:00'),(104856,11,'XE69D','Type of sport or exercise activity, gymnastics high bar','Y','2025-10-23 00:00:00'),(104857,11,'XE6R6','Type of sport or exercise activity, gymnastics parallel bars','Y','2025-10-23 00:00:00'),(104858,11,'XE4YF','Type of sport or exercise activity, gymnastics rhythmic with or without props','Y','2025-10-23 00:00:00'),(104859,11,'XE8WK','Type of sport or exercise activity, gymnastics rings','Y','2025-10-23 00:00:00'),(104860,11,'XE802','Type of sport or exercise activity, gymnastics side horse or pommel horse','Y','2025-10-23 00:00:00'),(104861,11,'XE8V7','Type of sport or exercise activity, gymnastics trampoline or mini-trampoline','Y','2025-10-23 00:00:00'),(104862,11,'XE5KU','Type of sport or exercise activity, gymnastics uneven parallel bars','Y','2025-10-23 00:00:00'),(104863,11,'XE7PU','Type of sport or exercise activity, gymnastics vault','Y','2025-10-23 00:00:00'),(104864,11,'XE7D6','Type of sport or exercise activity, handball team','Y','2025-10-23 00:00:00'),(104865,11,'XE3VS','Type of sport or exercise activity, hang gliding','Y','2025-10-23 00:00:00'),(104866,11,'XE9EF','Type of sport or exercise activity, heptathlon 100 metre hurdles event','Y','2025-10-23 00:00:00'),(104867,11,'XE4LW','Type of sport or exercise activity, heptathlon 200 metre event','Y','2025-10-23 00:00:00'),(104868,11,'XE4CW','Type of sport or exercise activity, heptathlon 800 metre event','Y','2025-10-23 00:00:00'),(104869,11,'XE90J','Type of sport or exercise activity, heptathlon high jump event','Y','2025-10-23 00:00:00'),(104870,11,'XE7TG','Type of sport or exercise activity, heptathlon javelin event','Y','2025-10-23 00:00:00'),(104871,11,'XE8WE','Type of sport or exercise activity, heptathlon long jump event','Y','2025-10-23 00:00:00'),(104872,11,'XE294','Type of sport or exercise activity, heptathlon shot putt event','Y','2025-10-23 00:00:00'),(104873,11,'XE1JE','Type of sport or exercise activity, heptathlon unspecified event','Y','2025-10-23 00:00:00'),(104874,11,'XE5BS','Type of sport or exercise activity, hiking','Y','2025-10-23 00:00:00'),(104875,11,'XE02P','Type of sport or exercise activity, hockey not otherwise specified','Y','2025-10-23 00:00:00'),(104876,11,'XE6B7','Type of sport or exercise activity, hockey street or ball','Y','2025-10-23 00:00:00'),(104877,11,'XE0P4','Type of sport or exercise activity, horse racing','Y','2025-10-23 00:00:00'),(104878,11,'XE99S','Type of sport or exercise activity, hot air ballooning','Y','2025-10-23 00:00:00'),(104879,11,'XE2UD','Type of sport or exercise activity, ice hockey','Y','2025-10-23 00:00:00'),(104880,11,'XE1SZ','Type of sport or exercise activity, ice skating or ice dancing','Y','2025-10-23 00:00:00'),(104881,11,'XE7BZ','Type of sport or exercise activity, jet skiing','Y','2025-10-23 00:00:00'),(104882,11,'XE5KC','Type of sport or exercise activity, jogging or running','Y','2025-10-23 00:00:00'),(104883,11,'XE6B1','Type of sport or exercise activity, judo','Y','2025-10-23 00:00:00'),(104884,11,'XE0U2','Type of sport or exercise activity, jujitsu','Y','2025-10-23 00:00:00'),(104885,11,'XE567','Type of sport or exercise activity, karate','Y','2025-10-23 00:00:00'),(104886,11,'XE99V','Type of sport or exercise activity, kayaking or white-water rafting','Y','2025-10-23 00:00:00'),(104887,11,'XE8WT','Type of sport or exercise activity, kendo','Y','2025-10-23 00:00:00'),(104888,11,'XE0Y9','Type of sport or exercise activity, kick-boxing','Y','2025-10-23 00:00:00'),(104889,11,'XE5QV','Type of sport or exercise activity, kung fu','Y','2025-10-23 00:00:00'),(104890,11,'XE5VJ','Type of sport or exercise activity, lawn bowling','Y','2025-10-23 00:00:00'),(104891,11,'XE9KF','Type of sport or exercise activity, luge','Y','2025-10-23 00:00:00'),(104892,11,'XE0R2','Type of sport or exercise activity, marching','Y','2025-10-23 00:00:00'),(104893,11,'XE8KQ','Type of sport or exercise activity, modern pentathlon equestrian event','Y','2025-10-23 00:00:00'),(104894,11,'XE758','Type of sport or exercise activity, modern pentathlon fencing event','Y','2025-10-23 00:00:00'),(104895,11,'XE84E','Type of sport or exercise activity, modern pentathlon running event','Y','2025-10-23 00:00:00'),(104896,11,'XE3GA','Type of sport or exercise activity, modern pentathlon shooting event','Y','2025-10-23 00:00:00'),(104897,11,'XE7GA','Type of sport or exercise activity, modern pentathlon swimming event','Y','2025-10-23 00:00:00'),(104898,11,'XE2B4','Type of sport or exercise activity, modern pentathlon unspecified event','Y','2025-10-23 00:00:00'),(104899,11,'XE26F','Type of sport or exercise activity, motor car racing','Y','2025-10-23 00:00:00'),(104900,11,'XE1R5','Type of sport or exercise activity, motorcycling','Y','2025-10-23 00:00:00'),(104901,11,'XE1MM','Type of sport or exercise activity, motorised scootering','Y','2025-10-23 00:00:00'),(104902,11,'XE4SS','Type of sport or exercise activity, mountain cycling','Y','2025-10-23 00:00:00'),(104903,11,'XE79W','Type of sport or exercise activity, mountaineering','Y','2025-10-23 00:00:00'),(104904,11,'XE0BK','Type of sport or exercise activity, mustering or stock work','Y','2025-10-23 00:00:00'),(104905,11,'XE510','Type of sport or exercise activity, netball','Y','2025-10-23 00:00:00'),(104906,11,'XE6RQ','Type of sport or exercise activity, Olympic weightlifting','Y','2025-10-23 00:00:00'),(104907,11,'XE8WG','Type of sport or exercise activity, orienteering or rogaining','Y','2025-10-23 00:00:00'),(104908,11,'XE1N9','Type of sport or exercise activity, paintball gun shooting','Y','2025-10-23 00:00:00'),(104909,11,'XE06C','Type of sport or exercise activity, paragliding or parasailing','Y','2025-10-23 00:00:00'),(104910,11,'XE3R2','Type of sport or exercise activity, platform diving','Y','2025-10-23 00:00:00'),(104911,11,'XE4GZ','Type of sport or exercise activity, pony club','Y','2025-10-23 00:00:00'),(104912,11,'XE4LT','Type of sport or exercise activity, power boat racing','Y','2025-10-23 00:00:00'),(104913,11,'XE7QE','Type of sport or exercise activity, power lifting','Y','2025-10-23 00:00:00'),(104914,11,'XE4QQ','Type of sport or exercise activity, professional wrestling entertainment style','Y','2025-10-23 00:00:00'),(104915,11,'XE5Z7','Type of sport or exercise activity, racquetball','Y','2025-10-23 00:00:00'),(104916,11,'XE6P1','Type of sport or exercise activity, recreational swimming','Y','2025-10-23 00:00:00'),(104917,11,'XE8KM','Type of sport or exercise activity, rescue and resuscitation','Y','2025-10-23 00:00:00'),(104918,11,'XE7HV','Type of sport or exercise activity, riding an all-terrain vehicle (ATV)','Y','2025-10-23 00:00:00'),(104919,11,'XE8M1','Type of sport or exercise activity, ringette','Y','2025-10-23 00:00:00'),(104920,11,'XE2J8','Type of sport or exercise activity, river rafting','Y','2025-10-23 00:00:00'),(104921,11,'XE87G','Type of sport or exercise activity, road cycling','Y','2025-10-23 00:00:00'),(104922,11,'XE6Z2','Type of sport or exercise activity, rock climbing','Y','2025-10-23 00:00:00'),(104923,11,'XE56X','Type of sport or exercise activity, rodeo','Y','2025-10-23 00:00:00'),(104924,11,'XE2DY','Type of sport or exercise activity, roller skating','Y','2025-10-23 00:00:00'),(104925,11,'XE4XV','Type of sport or exercise activity, rowing or sculling','Y','2025-10-23 00:00:00'),(104926,11,'XE5XZ','Type of sport or exercise activity, rugby league','Y','2025-10-23 00:00:00'),(104927,11,'XE1XR','Type of sport or exercise activity, rugby not otherwise specified','Y','2025-10-23 00:00:00'),(104928,11,'XE9RW','Type of sport or exercise activity, rugby union','Y','2025-10-23 00:00:00'),(104929,11,'XE67P','Type of sport or exercise activity, school free play','Y','2025-10-23 00:00:00'),(104930,11,'XE49T','Type of sport or exercise activity, school physical education class','Y','2025-10-23 00:00:00'),(104931,11,'XE6X9','Type of sport or exercise activity, scootering','Y','2025-10-23 00:00:00'),(104932,11,'XE1TE','Type of sport or exercise activity, scuba diving','Y','2025-10-23 00:00:00'),(104933,11,'XE75J','Type of sport or exercise activity, self defence training','Y','2025-10-23 00:00:00'),(104934,11,'XE7X5','Type of sport or exercise activity, show jumping','Y','2025-10-23 00:00:00'),(104935,11,'XE1AS','Type of sport or exercise activity, skate boarding','Y','2025-10-23 00:00:00'),(104936,11,'XE7E1','Type of sport or exercise activity, ski patrolling','Y','2025-10-23 00:00:00'),(104937,11,'XE9X7','Type of sport or exercise activity, skiing alpine or downhill','Y','2025-10-23 00:00:00'),(104938,11,'XE8CR','Type of sport or exercise activity, skiing Nordic cross country','Y','2025-10-23 00:00:00'),(104939,11,'XE1ZK','Type of sport or exercise activity, snorkelling','Y','2025-10-23 00:00:00'),(104940,11,'XE7J0','Type of sport or exercise activity, snow boarding','Y','2025-10-23 00:00:00'),(104941,11,'XE471','Type of sport or exercise activity, snow ski jumping','Y','2025-10-23 00:00:00'),(104942,11,'XE240','Type of sport or exercise activity, snowmobiling','Y','2025-10-23 00:00:00'),(104943,11,'XE0TN','Type of sport or exercise activity, soccer indoor','Y','2025-10-23 00:00:00'),(104944,11,'XE8WP','Type of sport or exercise activity, soccer not otherwise specified','Y','2025-10-23 00:00:00'),(104945,11,'XE5EU','Type of sport or exercise activity, soccer outdoor','Y','2025-10-23 00:00:00'),(104946,11,'XE63E','Type of sport or exercise activity, softball','Y','2025-10-23 00:00:00'),(104947,11,'XE6RE','Type of sport or exercise activity, speed skating','Y','2025-10-23 00:00:00'),(104948,11,'XE72X','Type of sport or exercise activity, spinning or stationary bike riding','Y','2025-10-23 00:00:00'),(104949,11,'XE7S0','Type of sport or exercise activity, springboard diving','Y','2025-10-23 00:00:00'),(104950,11,'XE629','Type of sport or exercise activity, squash','Y','2025-10-23 00:00:00'),(104951,11,'XE9V7','Type of sport or exercise activity, stationary aerobic exercise with equipment','Y','2025-10-23 00:00:00'),(104952,11,'XE78K','Type of sport or exercise activity, street luge','Y','2025-10-23 00:00:00'),(104953,11,'XE0N6','Type of sport or exercise activity, strength training or body building','Y','2025-10-23 00:00:00'),(104954,11,'XE0XD','Type of sport or exercise activity, surf boating','Y','2025-10-23 00:00:00'),(104955,11,'XE84Q','Type of sport or exercise activity, surf life saving','Y','2025-10-23 00:00:00'),(104956,11,'XE48G','Type of sport or exercise activity, surfing or boogie boarding','Y','2025-10-23 00:00:00'),(104957,11,'XE6Y2','Type of sport or exercise activity, synchronized swimming','Y','2025-10-23 00:00:00'),(104958,11,'XE5JM','Type of sport or exercise activity, table tennis or ping-pong','Y','2025-10-23 00:00:00'),(104959,11,'XE7RA','Type of sport or exercise activity, tae kwon do','Y','2025-10-23 00:00:00'),(104960,11,'XE05C','Type of sport or exercise activity, tai chi','Y','2025-10-23 00:00:00'),(104961,11,'XE5WM','Type of sport or exercise activity, t-ball','Y','2025-10-23 00:00:00'),(104962,11,'XE97B','Type of sport or exercise activity, tennis','Y','2025-10-23 00:00:00'),(104963,11,'XE6YY','Type of sport or exercise activity, ten-pin bowling','Y','2025-10-23 00:00:00'),(104964,11,'XE3PG','Type of sport or exercise activity, timber-related sports','Y','2025-10-23 00:00:00'),(104965,11,'XE8G0','Type of sport or exercise activity, tobogganing','Y','2025-10-23 00:00:00'),(104966,11,'XE4C5','Type of sport or exercise activity, track and field discus','Y','2025-10-23 00:00:00'),(104967,11,'XE1FT','Type of sport or exercise activity, track and field hammer throw','Y','2025-10-23 00:00:00'),(104968,11,'XE1X1','Type of sport or exercise activity, track and field high jump','Y','2025-10-23 00:00:00'),(104969,11,'XE037','Type of sport or exercise activity, track and field javelin','Y','2025-10-23 00:00:00'),(104970,11,'XE10W','Type of sport or exercise activity, track and field long jump','Y','2025-10-23 00:00:00'),(104971,11,'XE8YM','Type of sport or exercise activity, track and field pole vault','Y','2025-10-23 00:00:00'),(104972,11,'XE1SW','Type of sport or exercise activity, track and field racing over obstacles or hurdles','Y','2025-10-23 00:00:00'),(104973,11,'XE4Y7','Type of sport or exercise activity, track and field running long distances (greater than 1,500 metres)','Y','2025-10-23 00:00:00'),(104974,11,'XE2RC','Type of sport or exercise activity, track and field running middle distances (401-1,500 metres)','Y','2025-10-23 00:00:00'),(104975,11,'XE3M7','Type of sport or exercise activity, track and field shot putt','Y','2025-10-23 00:00:00'),(104976,11,'XE02A','Type of sport or exercise activity, track and field sprinting (1-400 metres)','Y','2025-10-23 00:00:00'),(104977,11,'XE5X4','Type of sport or exercise activity, track and field triple jump','Y','2025-10-23 00:00:00'),(104978,11,'XE8U6','Type of sport or exercise activity, track or velodrome cycling','Y','2025-10-23 00:00:00'),(104979,11,'XE1LH','Type of sport or exercise activity, trail or general horseback riding','Y','2025-10-23 00:00:00'),(104980,11,'XE2XU','Type of sport or exercise activity, triathlon cycling event','Y','2025-10-23 00:00:00'),(104981,11,'XE0J9','Type of sport or exercise activity, triathlon running event','Y','2025-10-23 00:00:00'),(104982,11,'XE8ZK','Type of sport or exercise activity, triathlon swimming event','Y','2025-10-23 00:00:00'),(104983,11,'XE01T','Type of sport or exercise activity, triathlon unspecified event','Y','2025-10-23 00:00:00'),(104984,11,'XE323','Type of sport or exercise activity, underwater hockey','Y','2025-10-23 00:00:00'),(104985,11,'XE79M','Type of sport or exercise activity, volleyball','Y','2025-10-23 00:00:00'),(104986,11,'XE2TV','Type of sport or exercise activity, walking','Y','2025-10-23 00:00:00'),(104987,11,'XE0JP','Type of sport or exercise activity, wallyball','Y','2025-10-23 00:00:00'),(104988,11,'XE2YS','Type of sport or exercise activity, water polo','Y','2025-10-23 00:00:00'),(104989,11,'XE167','Type of sport or exercise activity, water skiing','Y','2025-10-23 00:00:00'),(104990,11,'XE92F','Type of sport or exercise activity, water tubing','Y','2025-10-23 00:00:00'),(104991,11,'XE7PV','Type of sport or exercise activity, wind surfing','Y','2025-10-23 00:00:00'),(104992,11,'XE0G3','Type of sport or exercise activity, yachting or sailing','Y','2025-10-23 00:00:00'),(104993,11,'XE7F9','Type of sport or exercise activity, yoga or Pilates','Y','2025-10-23 00:00:00'),(104994,11,'XE5UC','type of sport/exercise activity, diving unspecified','Y','2025-10-23 00:00:00'),(104995,11,'XE5V9','type of sport/exercise activity, in-line skating/rollerblading','Y','2025-10-23 00:00:00'),(104996,11,'XE0JU','type of sport/exercise activity, parachuting/sky diving','Y','2025-10-23 00:00:00'),(104997,11,'8A68','Types of seizures','Y','2025-10-23 00:00:00'),(104998,11,'XE5V8','Typewriter correction fluid','Y','2025-10-23 00:00:00'),(104999,11,'1A07','Typhoid fever','Y','2025-10-23 00:00:00'),(105000,11,'1A07.Z','Typhoid fever, unspecified','Y','2025-10-23 00:00:00'),(105001,11,'1A07.0','Typhoid peritonitis','Y','2025-10-23 00:00:00'),(105002,11,'XM8BU8','Typhoid vaccines','Y','2025-10-23 00:00:00'),(105003,11,'XM3JA6','Typhoid, hepatitis A vaccines','Y','2025-10-23 00:00:00'),(105004,11,'XM89G3','Typhoid, inactivated, whole cell vaccines','Y','2025-10-23 00:00:00'),(105005,11,'XM33K4','Typhoid, oral, live attenuated vaccines','Y','2025-10-23 00:00:00'),(105006,11,'XM3SF6','Typhoid, purified polysaccharide antigen vaccines','Y','2025-10-23 00:00:00'),(105007,11,'XM9UB1','Typhoid-paratyphoid vaccines','Y','2025-10-23 00:00:00'),(105008,11,'XM3JJ2','Typhus (exanthematicus) vaccines','Y','2025-10-23 00:00:00'),(105009,11,'XM2NU8','Typhus exanthematicus, inactivated, whole cell vaccines','Y','2025-10-23 00:00:00'),(105010,11,'1C30','Typhus fever','Y','2025-10-23 00:00:00'),(105011,11,'1C30.3','Typhus fever due to Orientia tsutsugamushi','Y','2025-10-23 00:00:00'),(105012,11,'1C30.2','Typhus fever due to Rickettsia typhi','Y','2025-10-23 00:00:00'),(105013,11,'1C30.Z','Typhus fever, unspecified','Y','2025-10-23 00:00:00'),(105014,11,'XH1Z69','Typical carcinoid','Y','2025-10-23 00:00:00'),(105015,11,'XE8UK','Tyre (tire) or battery (attached or unattached)','Y','2025-10-23 00:00:00'),(105016,11,'XM90A9','Tyropanoate','Y','2025-10-23 00:00:00'),(105017,11,'XM8WD0','Tyropanoic acid','Y','2025-10-23 00:00:00'),(105018,11,'5C50.11','Tyrosinaemia type 1','Y','2025-10-23 00:00:00'),(105019,11,'5C50.12','Tyrosinaemia type 2','Y','2025-10-23 00:00:00'),(105020,11,'XM8KJ7','Tyrosine','Y','2025-10-23 00:00:00'),(105021,11,'XM0GR6','Tyrothricin','Y','2025-10-23 00:00:00'),(105022,11,'XM4MP2','Ubidecarenone','Y','2025-10-23 00:00:00'),(105023,11,'XM46X2','Ubrogepant','Y','2025-10-23 00:00:00'),(105024,11,'XM4914','Udenafil','Y','2025-10-23 00:00:00'),(105025,11,'XM5PA8','Ufenamate','Y','2025-10-23 00:00:00'),(105026,11,'DB52','Ulcer of anus','Y','2025-10-23 00:00:00'),(105027,11,'GA80.1','Ulcer of penis of uncertain nature','Y','2025-10-23 00:00:00'),(105028,11,'ME60.2','Ulcer of skin of uncertain nature','Y','2025-10-23 00:00:00'),(105029,11,'9A60.30','Ulceration of conjunctiva','Y','2025-10-23 00:00:00'),(105030,11,'DD71','Ulcerative colitis','Y','2025-10-23 00:00:00'),(105031,11,'DD71.Z','Ulcerative colitis, unspecified','Y','2025-10-23 00:00:00'),(105032,11,'GA80','Ulcerative disorders of the penis or scrotum','Y','2025-10-23 00:00:00'),(105033,11,'GA41','Ulcerative or erosive disorders of the vulva','Y','2025-10-23 00:00:00'),(105034,11,'DD71.0','Ulcerative pancolitis','Y','2025-10-23 00:00:00'),(105035,11,'DD71.3','Ulcerative proctitis','Y','2025-10-23 00:00:00'),(105036,11,'DD71.2','Ulcerative rectosigmoiditis','Y','2025-10-23 00:00:00'),(105037,11,'1B94.0','Ulceroglandular tularaemia','Y','2025-10-23 00:00:00'),(105038,11,'XM04R5','Ulipristal','Y','2025-10-23 00:00:00'),(105039,11,'XA5007','Ulna','Y','2025-10-23 00:00:00'),(105040,11,'XA23B7','Ulnar artery','Y','2025-10-23 00:00:00'),(105041,11,'XA0J47','Ulnar border of wrist','Y','2025-10-23 00:00:00'),(105042,11,'XA9220','Ulnar collateral ligament','Y','2025-10-23 00:00:00'),(105043,11,'LB99.3','Ulnar hemimelia','Y','2025-10-23 00:00:00'),(105044,11,'XA4UB1','Ulnar lymphatic vessel','Y','2025-10-23 00:00:00'),(105045,11,'XA2AS2','Ulnar nerve','Y','2025-10-23 00:00:00'),(105046,11,'XA8CK3','Ulnar vein','Y','2025-10-23 00:00:00'),(105047,11,'XA3K32','Ulnocarpal ligament','Y','2025-10-23 00:00:00'),(105048,11,'XM64R0','Ulobetasol','Y','2025-10-23 00:00:00'),(105049,11,'XD5KR3','Ultrafiltration sets','Y','2025-10-23 00:00:00'),(105050,11,'XE0WR','Ultralight powered aircraft','Y','2025-10-23 00:00:00'),(105051,11,'XM5TN4','Ultrasound contrast media','Y','2025-10-23 00:00:00'),(105052,11,'XD6EX8','Ultrasound Scanners','Y','2025-10-23 00:00:00'),(105053,11,'XD4T57','Ultrasound Scanners, Hand-held','Y','2025-10-23 00:00:00'),(105054,11,'XD89G9','Ultrasound Scanners, Mobile','Y','2025-10-23 00:00:00'),(105055,11,'XD7FU9','Ultrasound Scanners, Portable','Y','2025-10-23 00:00:00'),(105056,11,'XM5E39','Ultraviolet light protectants','Y','2025-10-23 00:00:00'),(105057,11,'XA0VZ0','Umbilical artery','Y','2025-10-23 00:00:00'),(105058,11,'XA3L42','Umbilical cord','Y','2025-10-23 00:00:00'),(105059,11,'2E81.00','Umbilical cord haemangioma','Y','2025-10-23 00:00:00'),(105060,11,'KC20.1','Umbilical cutis or polyp of newborn','Y','2025-10-23 00:00:00'),(105061,11,'KC20.2','Umbilical granuloma of newborn','Y','2025-10-23 00:00:00'),(105062,11,'KA81','Umbilical haemorrhage of newborn','Y','2025-10-23 00:00:00'),(105063,11,'DD53','Umbilical hernia','Y','2025-10-23 00:00:00'),(105064,11,'XA3MT8','Umbilicus','Y','2025-10-23 00:00:00'),(105065,11,'XE9R0','Umbrella','Y','2025-10-23 00:00:00'),(105066,11,'XM3MF8','Umeclidinium bromide','Y','2025-10-23 00:00:00'),(105067,11,'XM3S98','Umifenovir','Y','2025-10-23 00:00:00'),(105068,11,'XE8YH','Unable to obtain readings','Y','2025-10-23 00:00:00'),(105069,11,'PK04','Unarmed combat during armed conflict','Y','2025-10-23 00:00:00'),(105070,11,'XE7A0','Unattended animal as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(105071,11,'MH13','Unattended death','Y','2025-10-23 00:00:00'),(105072,11,'XE15X','Unauthorized access to computer system','Y','2025-10-23 00:00:00'),(105073,11,'QB14','Unavailability or inaccessibility of health care facilities','Y','2025-10-23 00:00:00'),(105074,11,'QB13','Unavailability or inaccessibility of helping agencies other than health care facilities','Y','2025-10-23 00:00:00'),(105075,11,'XY85','Uncertain timing of onset relative to admission','Y','2025-10-23 00:00:00'),(105076,11,'1F6H','Uncinariosis','Y','2025-10-23 00:00:00'),(105077,11,'2B54.1','Unclassified pleomorphic sarcoma of retroperitoneum or peritoneum','Y','2025-10-23 00:00:00'),(105078,11,'2B54.0','Unclassified pleomorphic sarcoma of skin','Y','2025-10-23 00:00:00'),(105079,11,'2B54','Unclassified pleomorphic sarcoma, primary site','Y','2025-10-23 00:00:00'),(105080,11,'2B54.Y','Unclassified pleomorphic sarcoma, primary site, other specified site','Y','2025-10-23 00:00:00'),(105081,11,'2B54.Z','Unclassified pleomorphic sarcoma, primary site, unspecified site','Y','2025-10-23 00:00:00'),(105082,11,'QE62','Uncomplicated bereavement','Y','2025-10-23 00:00:00'),(105083,11,'NA0D.04','Uncomplicated crown-root fracture','Y','2025-10-23 00:00:00'),(105084,11,'BD74.0','Uncomplicated lower limb venous hypertension','Y','2025-10-23 00:00:00'),(105085,11,'XE87S','Uncontrolled fire, flame in building or structure','Y','2025-10-23 00:00:00'),(105086,11,'XE7V9','Uncontrolled fire, flame not in building or structure','Y','2025-10-23 00:00:00'),(105087,11,'5A24','Uncontrolled or unstable diabetes mellitus','Y','2025-10-23 00:00:00'),(105088,11,'XA7J78','Uncus','Y','2025-10-23 00:00:00'),(105089,11,'XM84C7','Undecenoic acid','Y','2025-10-23 00:00:00'),(105090,11,'XM5GQ1','Undecoylium','Y','2025-10-23 00:00:00'),(105091,11,'XM1TP6','Undecylenic acid (derivatives)','Y','2025-10-23 00:00:00'),(105092,11,'XE4C1','Underbone motorcycle as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(105093,11,'XE39A','Underbone motorcycle as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(105094,11,'QA71','Underdosing without injury or harm','Y','2025-10-23 00:00:00'),(105095,11,'PL13.1','Underdosing, as mode of injury or harm','Y','2025-10-23 00:00:00'),(105096,11,'KD32.1','Underfeeding of newborn','Y','2025-10-23 00:00:00'),(105097,11,'QC06','Underimmunization status','Y','2025-10-23 00:00:00'),(105098,11,'9A10.4','Underproduction of tears','Y','2025-10-23 00:00:00'),(105099,11,'XE73Q','Under-sensing','Y','2025-10-23 00:00:00'),(105100,11,'XE9TA','Underwater diving equipment','Y','2025-10-23 00:00:00'),(105101,11,'XS11','Underweight BMI Below 18.5','Y','2025-10-23 00:00:00'),(105102,11,'5B54','Underweight in adults','Y','2025-10-23 00:00:00'),(105103,11,'5B50','Underweight in infants, children or adolescents','Y','2025-10-23 00:00:00'),(105104,11,'LB52.2','Undescended testicle, bilateral','Y','2025-10-23 00:00:00'),(105105,11,'LB52.1','Undescended testicle, unilateral','Y','2025-10-23 00:00:00'),(105106,11,'XS7H','Undetermined grade','Y','2025-10-23 00:00:00'),(105107,11,'PH47.Z','Undetermined intent: Harmful effects of and exposure to noxious substances: Drugs, medicaments or biological substances: Unspecified antiepileptics or antiparkinsonism drugs','Y','2025-10-23 00:00:00'),(105108,11,'2D10.3','Undifferentiated carcinoma of thyroid gland','Y','2025-10-23 00:00:00'),(105109,11,'XH2224','Undifferentiated carcinoma with osteoclast-like giant cells','Y','2025-10-23 00:00:00'),(105110,11,'4A43.Z','Undifferentiated non-organ specific systemic autoimmune disease','Y','2025-10-23 00:00:00'),(105111,11,'XH6HY6','Undifferentiated sarcoma','Y','2025-10-23 00:00:00'),(105112,11,'SD83','Uneasiness disorder (TM1)','Y','2025-10-23 00:00:00'),(105113,11,'XE1DA','Uneven surface, not elsewhere classified','Y','2025-10-23 00:00:00'),(105114,11,'XE6UD','Unexpected or unintended radiation output','Y','2025-10-23 00:00:00'),(105115,11,'XE7JN','Unexpected shutdown','Y','2025-10-23 00:00:00'),(105116,11,'XE3YZ','Unexpected therapeutic results','Y','2025-10-23 00:00:00'),(105117,11,'LB44.2','Unicornuate uterus','Y','2025-10-23 00:00:00'),(105118,11,'LA8A.24','Unicuspid aortic valve','Y','2025-10-23 00:00:00'),(105119,11,'AB32.4','Unilateral vestibulopathy after medical intervention','Y','2025-10-23 00:00:00'),(105120,11,'AB32.3','Unilateral vestibulopathy due to schwannoma','Y','2025-10-23 00:00:00'),(105121,11,'XK70','Unilateral, unspecified','Y','2025-10-23 00:00:00'),(105122,11,'XE842','Unintended application program shut down','Y','2025-10-23 00:00:00'),(105123,11,'XE0QZ','Unintended collision of device','Y','2025-10-23 00:00:00'),(105124,11,'XE4UP','Unintended compatibility','Y','2025-10-23 00:00:00'),(105125,11,'XE1PM','Unintended ejection','Y','2025-10-23 00:00:00'),(105126,11,'XE739','Unintended electrical shock','Y','2025-10-23 00:00:00'),(105127,11,'XE8TZ','Unintended emission of device','Y','2025-10-23 00:00:00'),(105128,11,'XE8ZZ','Unintended movement','Y','2025-10-23 00:00:00'),(105129,11,'XE7Z7','Unintended power up','Y','2025-10-23 00:00:00'),(105130,11,'XE1Y9','Unintended presence of allergens in device identified','Y','2025-10-23 00:00:00'),(105131,11,'XE1Y1','Unintended system motion','Y','2025-10-23 00:00:00'),(105132,11,'PB5A','Unintentional abandonment','Y','2025-10-23 00:00:00'),(105133,11,'PA50','Unintentional air or space transport injury event','Y','2025-10-23 00:00:00'),(105134,11,'PA50.1','Unintentional air or space transport injury event with aircraft or spacecraft damaged, disabled or destroyed','Y','2025-10-23 00:00:00'),(105135,11,'PA50.0','Unintentional air or space transport injury event with aircraft or spacecraft not damaged, disabled or destroyed','Y','2025-10-23 00:00:00'),(105136,11,'PA50.Z','Unintentional air or space transport injury event, unspecified','Y','2025-10-23 00:00:00'),(105137,11,'PB13','Unintentional contact with hot object or liquid','Y','2025-10-23 00:00:00'),(105138,11,'PA7Z','Unintentional contact with person, animal or plant, type unspecified','Y','2025-10-23 00:00:00'),(105139,11,'PA91','Unintentional drowning or submersion, following fall into body of water','Y','2025-10-23 00:00:00'),(105140,11,'PA90','Unintentional drowning or submersion, while in body of water','Y','2025-10-23 00:00:00'),(105141,11,'PB55.0','Unintentional exposure to chemical explosion','Y','2025-10-23 00:00:00'),(105142,11,'PB11','Unintentional exposure to controlled fire','Y','2025-10-23 00:00:00'),(105143,11,'PB51','Unintentional exposure to electric current','Y','2025-10-23 00:00:00'),(105144,11,'PB16','Unintentional exposure to excessive cold','Y','2025-10-23 00:00:00'),(105145,11,'PB15','Unintentional exposure to excessive heat','Y','2025-10-23 00:00:00'),(105146,11,'PB55','Unintentional exposure to explosion','Y','2025-10-23 00:00:00'),(105147,11,'PB55.1','Unintentional exposure to explosion or rupture of pressurised materials or object','Y','2025-10-23 00:00:00'),(105148,11,'PB55.Z','Unintentional exposure to explosion, unspecified','Y','2025-10-23 00:00:00'),(105149,11,'PB50','Unintentional exposure to foreign body in orifice','Y','2025-10-23 00:00:00'),(105150,11,'PB54','Unintentional exposure to high or low air pressure or changes in air pressure','Y','2025-10-23 00:00:00'),(105151,11,'PB12','Unintentional exposure to ignition or melting of material','Y','2025-10-23 00:00:00'),(105152,11,'PA8Z','Unintentional exposure to object, unspecified','Y','2025-10-23 00:00:00'),(105153,11,'PB30','Unintentional exposure to or harmful effects of alcohols','Y','2025-10-23 00:00:00'),(105154,11,'PB24','Unintentional exposure to or harmful effects of analgesics, antipyretics or nonsteroidal anti-inflammatory drugs','Y','2025-10-23 00:00:00'),(105155,11,'PB25','Unintentional exposure to or harmful effects of antidepressants','Y','2025-10-23 00:00:00'),(105156,11,'PB27','Unintentional exposure to or harmful effects of antiepileptics or antiparkinsonism drugs','Y','2025-10-23 00:00:00'),(105157,11,'PB26','Unintentional exposure to or harmful effects of antipsychotics','Y','2025-10-23 00:00:00'),(105158,11,'PB23','Unintentional exposure to or harmful effects of cannabinoids or hallucinogens','Y','2025-10-23 00:00:00'),(105159,11,'PB32','Unintentional exposure to or harmful effects of carbon monoxide','Y','2025-10-23 00:00:00'),(105160,11,'PB34','Unintentional exposure to or harmful effects of corrosive substances','Y','2025-10-23 00:00:00'),(105161,11,'PB35','Unintentional exposure to or harmful effects of halogen derivatives of aliphatic or aromatic hydrocarbons','Y','2025-10-23 00:00:00'),(105162,11,'PB29','Unintentional exposure to or harmful effects of multiple drugs, medicaments or biological substances','Y','2025-10-23 00:00:00'),(105163,11,'PB20','Unintentional exposure to or harmful effects of opioids or related analgesics','Y','2025-10-23 00:00:00'),(105164,11,'PB31','Unintentional exposure to or harmful effects of organic solvents','Y','2025-10-23 00:00:00'),(105165,11,'PB28','Unintentional exposure to or harmful effects of other or unspecified drug, medicament or biological substance','Y','2025-10-23 00:00:00'),(105166,11,'PB36','Unintentional exposure to or harmful effects of other or unspecified substances chiefly nonmedicinal as to source','Y','2025-10-23 00:00:00'),(105167,11,'PB33','Unintentional exposure to or harmful effects of pesticides','Y','2025-10-23 00:00:00'),(105168,11,'PB22','Unintentional exposure to or harmful effects of psychostimulants','Y','2025-10-23 00:00:00'),(105169,11,'PB21','Unintentional exposure to or harmful effects of sedative hypnotic drugs or other CNS depressants','Y','2025-10-23 00:00:00'),(105170,11,'PA80.2','Unintentional exposure to other and unspecified firearm','Y','2025-10-23 00:00:00'),(105171,11,'PA8Y','Unintentional exposure to other specified object, not elsewhere classified','Y','2025-10-23 00:00:00'),(105172,11,'PB1Y','Unintentional exposure to other specified thermal mechanism','Y','2025-10-23 00:00:00'),(105173,11,'PB56','Unintentional exposure to physical overexertion','Y','2025-10-23 00:00:00'),(105174,11,'PB53','Unintentional exposure to radiation','Y','2025-10-23 00:00:00'),(105175,11,'PB14','Unintentional exposure to steam, hot vapour, air or gases','Y','2025-10-23 00:00:00'),(105176,11,'PB52','Unintentional exposure to sunlight','Y','2025-10-23 00:00:00'),(105177,11,'PB10','Unintentional exposure to uncontrolled fire','Y','2025-10-23 00:00:00'),(105178,11,'PB1Z','Unintentional exposure to unspecified thermal mechanism','Y','2025-10-23 00:00:00'),(105179,11,'PA61','Unintentional fall from a height of 1 metre or more','Y','2025-10-23 00:00:00'),(105180,11,'PA6Z','Unintentional fall from unspecified height','Y','2025-10-23 00:00:00'),(105181,11,'PA60','Unintentional fall on the same level or from less than 1 metre','Y','2025-10-23 00:00:00'),(105182,11,'PA9Z','Unintentional immersion, submersion or falling into water, unspecified','Y','2025-10-23 00:00:00'),(105183,11,'PA92','Unintentional injury other than drowning following fall into body of water','Y','2025-10-23 00:00:00'),(105184,11,'PB57','Unintentional lack of food','Y','2025-10-23 00:00:00'),(105185,11,'PB58','Unintentional lack of water','Y','2025-10-23 00:00:00'),(105186,11,'PA24','Unintentional land transport event unknown whether traffic or nontraffic injuring a car occupant','Y','2025-10-23 00:00:00'),(105187,11,'PA23','Unintentional land transport event unknown whether traffic or nontraffic injuring a motor cyclist','Y','2025-10-23 00:00:00'),(105188,11,'PA22','Unintentional land transport event unknown whether traffic or nontraffic injuring a pedal cyclist','Y','2025-10-23 00:00:00'),(105189,11,'PA20','Unintentional land transport event unknown whether traffic or nontraffic injuring a pedestrian','Y','2025-10-23 00:00:00'),(105190,11,'PA2E','Unintentional land transport event unknown whether traffic or nontraffic injuring a rider of an animal','Y','2025-10-23 00:00:00'),(105191,11,'PA25','Unintentional land transport event unknown whether traffic or nontraffic injuring an occupant of a bus or coach','Y','2025-10-23 00:00:00'),(105192,11,'PA27','Unintentional land transport event unknown whether traffic or nontraffic injuring an occupant of a heavy goods vehicle','Y','2025-10-23 00:00:00'),(105193,11,'PA26','Unintentional land transport event unknown whether traffic or nontraffic injuring an occupant of a light goods vehicle','Y','2025-10-23 00:00:00'),(105194,11,'PA29','Unintentional land transport event unknown whether traffic or nontraffic injuring an occupant of a low powered passenger vehicle','Y','2025-10-23 00:00:00'),(105195,11,'PA2C','Unintentional land transport event unknown whether traffic or nontraffic injuring an occupant of a special construction vehicle','Y','2025-10-23 00:00:00'),(105196,11,'PA2A','Unintentional land transport event unknown whether traffic or nontraffic injuring an occupant of a special vehicle mainly used in agriculture','Y','2025-10-23 00:00:00'),(105197,11,'PA2B','Unintentional land transport event unknown whether traffic or nontraffic injuring an occupant of a special vehicle mainly used on industrial premises','Y','2025-10-23 00:00:00'),(105198,11,'PA28','Unintentional land transport event unknown whether traffic or nontraffic injuring an occupant of a streetcar or tram','Y','2025-10-23 00:00:00'),(105199,11,'PA2D','Unintentional land transport event unknown whether traffic or nontraffic injuring an occupant of an all-terrain vehicle','Y','2025-10-23 00:00:00'),(105200,11,'PA2F','Unintentional land transport event unknown whether traffic or nontraffic injuring an occupant of an animal-drawn vehicle','Y','2025-10-23 00:00:00'),(105201,11,'PA21','Unintentional land transport event unknown whether traffic or nontraffic injuring the user of a pedestrian conveyance','Y','2025-10-23 00:00:00'),(105202,11,'PA2Y','Unintentional land transport injury event unknown whether traffic or nontraffic injuring a user of other specified transport','Y','2025-10-23 00:00:00'),(105203,11,'PA2Z','Unintentional land transport injury event unknown whether traffic or nontraffic injuring a user of unspecified transport','Y','2025-10-23 00:00:00'),(105204,11,'PA14','Unintentional land transport nontraffic event injuring a car occupant','Y','2025-10-23 00:00:00'),(105205,11,'PA13','Unintentional land transport nontraffic event injuring a motor cyclist','Y','2025-10-23 00:00:00'),(105206,11,'PA12','Unintentional land transport nontraffic event injuring a pedal cyclist','Y','2025-10-23 00:00:00'),(105207,11,'PA10','Unintentional land transport nontraffic event injuring a pedestrian','Y','2025-10-23 00:00:00'),(105208,11,'PA1E','Unintentional land transport nontraffic event injuring a rider of an animal','Y','2025-10-23 00:00:00'),(105209,11,'PA1C','Unintentional land transport nontraffic event injuring a user of a special construction vehicle','Y','2025-10-23 00:00:00'),(105210,11,'PA1A','Unintentional land transport nontraffic event injuring a user of a special vehicle mainly used in agriculture','Y','2025-10-23 00:00:00'),(105211,11,'PA1B','Unintentional land transport nontraffic event injuring a user of a special vehicle mainly used on industrial premises','Y','2025-10-23 00:00:00'),(105212,11,'PA1D','Unintentional land transport nontraffic event injuring a user of an all-terrain vehicle','Y','2025-10-23 00:00:00'),(105213,11,'PA1Y','Unintentional land transport nontraffic event injuring a user of other specified land transport','Y','2025-10-23 00:00:00'),(105214,11,'PA1Z','Unintentional land transport nontraffic event injuring a user of unknown or unspecified land transport','Y','2025-10-23 00:00:00'),(105215,11,'PA15','Unintentional land transport nontraffic event injuring an occupant of a bus or coach','Y','2025-10-23 00:00:00'),(105216,11,'PA17','Unintentional land transport nontraffic event injuring an occupant of a heavy goods vehicle','Y','2025-10-23 00:00:00'),(105217,11,'PA16','Unintentional land transport nontraffic event injuring an occupant of a light goods vehicle','Y','2025-10-23 00:00:00'),(105218,11,'PA19','Unintentional land transport nontraffic event injuring an occupant of a low powered passenger vehicle','Y','2025-10-23 00:00:00'),(105219,11,'PA18','Unintentional land transport nontraffic event injuring an occupant of a streetcar or tram','Y','2025-10-23 00:00:00'),(105220,11,'PA1F','Unintentional land transport nontraffic event injuring an occupant of an animal-drawn vehicle','Y','2025-10-23 00:00:00'),(105221,11,'PA11','Unintentional land transport nontraffic event injuring the user of a pedestrian conveyance','Y','2025-10-23 00:00:00'),(105222,11,'PA04','Unintentional land transport traffic event injuring a car occupant','Y','2025-10-23 00:00:00'),(105223,11,'PA03','Unintentional land transport traffic event injuring a motor cyclist','Y','2025-10-23 00:00:00'),(105224,11,'PA02','Unintentional land transport traffic event injuring a pedal cyclist','Y','2025-10-23 00:00:00'),(105225,11,'PA00','Unintentional land transport traffic event injuring a pedestrian','Y','2025-10-23 00:00:00'),(105226,11,'PA0E','Unintentional land transport traffic event injuring a rider of an animal','Y','2025-10-23 00:00:00'),(105227,11,'PA0C','Unintentional land transport traffic event injuring a user of a special construction vehicle','Y','2025-10-23 00:00:00'),(105228,11,'PA0A','Unintentional land transport traffic event injuring a user of a special vehicle mainly used in agriculture','Y','2025-10-23 00:00:00'),(105229,11,'PA0B','Unintentional land transport traffic event injuring a user of a special vehicle mainly used on industrial premises','Y','2025-10-23 00:00:00'),(105230,11,'PA0D','Unintentional land transport traffic event injuring a user of an all-terrain vehicle','Y','2025-10-23 00:00:00'),(105231,11,'PA0Y','Unintentional land transport traffic event injuring a user of other specified land transport','Y','2025-10-23 00:00:00'),(105232,11,'PA0Z','Unintentional land transport traffic event injuring a user of unspecified land transport','Y','2025-10-23 00:00:00'),(105233,11,'PA05','Unintentional land transport traffic event injuring an occupant of a bus or coach','Y','2025-10-23 00:00:00'),(105234,11,'PA07','Unintentional land transport traffic event injuring an occupant of a heavy goods vehicle','Y','2025-10-23 00:00:00'),(105235,11,'PA06','Unintentional land transport traffic event injuring an occupant of a light goods vehicle','Y','2025-10-23 00:00:00'),(105236,11,'PA09','Unintentional land transport traffic event injuring an occupant of a low powered passenger vehicle','Y','2025-10-23 00:00:00'),(105237,11,'PA08','Unintentional land transport traffic event injuring an occupant of a streetcar or tram','Y','2025-10-23 00:00:00'),(105238,11,'PA0F','Unintentional land transport traffic event injuring an occupant of an animal-drawn vehicle','Y','2025-10-23 00:00:00'),(105239,11,'PA01','Unintentional land transport traffic event injuring the user of a pedestrian conveyance','Y','2025-10-23 00:00:00'),(105240,11,'PB5B','Unintentional neglect','Y','2025-10-23 00:00:00'),(105241,11,'PB59','Unintentional other specified privation','Y','2025-10-23 00:00:00'),(105242,11,'PA3Z','Unintentional railway transport injury event of unspecified type','Y','2025-10-23 00:00:00'),(105243,11,'PA30','Unintentional railway transport injury event with collision or derailment','Y','2025-10-23 00:00:00'),(105244,11,'PA31','Unintentional railway transport injury event without collision or derailment','Y','2025-10-23 00:00:00'),(105245,11,'PA82','Unintentional striking against stationary object','Y','2025-10-23 00:00:00'),(105246,11,'PB03','Unintentional threat to breathing by external compression of airways or chest','Y','2025-10-23 00:00:00'),(105247,11,'PB01','Unintentional threat to breathing by hanging','Y','2025-10-23 00:00:00'),(105248,11,'PB06','Unintentional threat to breathing by inhalation or ingestion of food','Y','2025-10-23 00:00:00'),(105249,11,'PB04','Unintentional threat to breathing by inhalation or ingestion of gastric contents','Y','2025-10-23 00:00:00'),(105250,11,'PB05','Unintentional threat to breathing by inhalation or ingestion of liquids','Y','2025-10-23 00:00:00'),(105251,11,'PB07','Unintentional threat to breathing by inhalation or ingestion of other objects or materials','Y','2025-10-23 00:00:00'),(105252,11,'PB0Y','Unintentional threat to breathing by other specified means','Y','2025-10-23 00:00:00'),(105253,11,'PB02','Unintentional threat to breathing by strangulation','Y','2025-10-23 00:00:00'),(105254,11,'PB00','Unintentional threat to breathing by suffocation from object covering mouth or nose','Y','2025-10-23 00:00:00'),(105255,11,'PB0Z','Unintentional threat to breathing by unspecified means','Y','2025-10-23 00:00:00'),(105256,11,'PB08','Unintentional threat to breathing from low oxygen environment','Y','2025-10-23 00:00:00'),(105257,11,'PA5Z','Unintentional transport injury event, unspecified','Y','2025-10-23 00:00:00'),(105258,11,'PA4Z','Unintentional water transport injury event with damage to water vessel unspecified','Y','2025-10-23 00:00:00'),(105259,11,'PA41','Unintentional water transport injury event with water vessel damaged, disabled or destroyed','Y','2025-10-23 00:00:00'),(105260,11,'PA41.0','Unintentional water transport injury event with water vessel damaged, disabled or destroyed, causing submersion or drowning','Y','2025-10-23 00:00:00'),(105261,11,'PA41.Z','Unintentional water transport injury event with water vessel damaged, disabled or destroyed, causing unspecified injury','Y','2025-10-23 00:00:00'),(105262,11,'PA40','Unintentional water transport injury event with water vessel not damaged, disabled or destroyed','Y','2025-10-23 00:00:00'),(105263,11,'PA40.1','Unintentional water transport injury event with water vessel not damaged, disabled or destroyed, causing other injury','Y','2025-10-23 00:00:00'),(105264,11,'PA40.0','Unintentional water transport injury event with water vessel not damaged, disabled or destroyed, causing submersion or drowning','Y','2025-10-23 00:00:00'),(105265,11,'PA40.Z','Unintentional water transport injury event with water vessel not damaged, disabled or destroyed, causing unspecified injury','Y','2025-10-23 00:00:00'),(105266,11,'PA75','Unintentionally bitten by animal','Y','2025-10-23 00:00:00'),(105267,11,'PA74','Unintentionally bitten by person','Y','2025-10-23 00:00:00'),(105268,11,'PA85','Unintentionally caught, crushed, jammed or pinched between objects','Y','2025-10-23 00:00:00'),(105269,11,'PA83.0','Unintentionally cut or pierced by knife, sword, or dagger','Y','2025-10-23 00:00:00'),(105270,11,'PA83.2','Unintentionally cut or pierced by other or unspecified sharp object','Y','2025-10-23 00:00:00'),(105271,11,'PA83.1','Unintentionally cut or pierced by sharp glass','Y','2025-10-23 00:00:00'),(105272,11,'PA83','Unintentionally cut or pierced by sharp object','Y','2025-10-23 00:00:00'),(105273,11,'PA79','Unintentionally injured by contact with plant','Y','2025-10-23 00:00:00'),(105274,11,'PA77','Unintentionally scratched or clawed by animal','Y','2025-10-23 00:00:00'),(105275,11,'PA76','Unintentionally scratched or clawed by person','Y','2025-10-23 00:00:00'),(105276,11,'PA73','Unintentionally stepped on or crushed by animal','Y','2025-10-23 00:00:00'),(105277,11,'PA72','Unintentionally stepped on or crushed by person','Y','2025-10-23 00:00:00'),(105278,11,'PA84','Unintentionally struck by blunt object','Y','2025-10-23 00:00:00'),(105279,11,'PA81','Unintentionally struck by moving object','Y','2025-10-23 00:00:00'),(105280,11,'PA80','Unintentionally struck by projectile from firearm','Y','2025-10-23 00:00:00'),(105281,11,'PA80.0','Unintentionally struck by projectile from handgun','Y','2025-10-23 00:00:00'),(105282,11,'PA80.1','Unintentionally struck by projectile from rifle, shotgun or larger firearm','Y','2025-10-23 00:00:00'),(105283,11,'PA71','Unintentionally struck, kicked, or bumped by animal','Y','2025-10-23 00:00:00'),(105284,11,'PA70','Unintentionally struck, kicked, or bumped by person','Y','2025-10-23 00:00:00'),(105285,11,'PA78','Unintentionally stung or envenomated by animal','Y','2025-10-23 00:00:00'),(105286,11,'LD45','Uniparental disomies','Y','2025-10-23 00:00:00'),(105287,11,'LD45.0','Uniparental disomies of maternal origin','Y','2025-10-23 00:00:00'),(105288,11,'LD45.1','Uniparental disomies of paternal origin','Y','2025-10-23 00:00:00'),(105289,11,'LD45.Z','Uniparental disomies, unspecified','Y','2025-10-23 00:00:00'),(105290,11,'MG48','Unknown and unspecified causes of morbidity','Y','2025-10-23 00:00:00'),(105291,11,'6C4G.2','Unknown or unspecified psychoactive substance dependence','Y','2025-10-23 00:00:00'),(105292,11,'6C4G.20','Unknown or unspecified psychoactive substance dependence, current use','Y','2025-10-23 00:00:00'),(105293,11,'6C4G.21','Unknown or unspecified psychoactive substance dependence, early full remission','Y','2025-10-23 00:00:00'),(105294,11,'6C4G.2Z','Unknown or unspecified psychoactive substance dependence, substance and state of remission unspecified','Y','2025-10-23 00:00:00'),(105295,11,'6C4G.23','Unknown or unspecified psychoactive substance dependence, sustained full remission','Y','2025-10-23 00:00:00'),(105296,11,'6C4G.22','Unknown or unspecified psychoactive substance dependence, sustained partial remission','Y','2025-10-23 00:00:00'),(105297,11,'XM5PP3','Unna\'s boot','Y','2025-10-23 00:00:00'),(105298,11,'XM5ZG4','Unoprostone','Y','2025-10-23 00:00:00'),(105299,11,'XE9ME','Unpaid cleaning, cooking or maintenance at own place of residence','Y','2025-10-23 00:00:00'),(105300,11,'XE8VF','Unpaid work','Y','2025-10-23 00:00:00'),(105301,11,'XE6SQ','Unpowered aircraft as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(105302,11,'XE4QU','Unpowered aircraft or means of air transport','Y','2025-10-23 00:00:00'),(105303,11,'XE9H2','Unpowered cleaning tool','Y','2025-10-23 00:00:00'),(105304,11,'XE16F','Unpowered hand tool or equipment','Y','2025-10-23 00:00:00'),(105305,11,'XE8P1','Unpowered push lawnmower','Y','2025-10-23 00:00:00'),(105306,11,'XE29V','Unpowered watercraft or means of water transport','Y','2025-10-23 00:00:00'),(105307,11,'XE9JW','Unraveled material','Y','2025-10-23 00:00:00'),(105308,11,'XE4BG','Unrelated care giver','Y','2025-10-23 00:00:00'),(105309,11,'LA86.1','Unroofed coronary sinus','Y','2025-10-23 00:00:00'),(105310,11,'EL73.3','Unsatisfactory outcome from cosmetic laser surgery','Y','2025-10-23 00:00:00'),(105311,11,'EL73','Unsatisfactory outcome from cutaneous cosmetic surgical procedure','Y','2025-10-23 00:00:00'),(105312,11,'EL50','Unsatisfactory surgical scar of skin','Y','2025-10-23 00:00:00'),(105313,11,'XM3PL9','Unsaturated fatty acid','Y','2025-10-23 00:00:00'),(105314,11,'XE4VM','Unsealed device packaging','Y','2025-10-23 00:00:00'),(105315,11,'JA00.2','Unspecified abortion','Y','2025-10-23 00:00:00'),(105316,11,'JA00.26','Unspecified abortion, complete or unspecified, complicated by delayed or excessive haemorrhage','Y','2025-10-23 00:00:00'),(105317,11,'JA00.27','Unspecified abortion, complete or unspecified, complicated by embolism','Y','2025-10-23 00:00:00'),(105318,11,'JA00.25','Unspecified abortion, complete or unspecified, complicated by genital tract or pelvic infection','Y','2025-10-23 00:00:00'),(105319,11,'JA00.28','Unspecified abortion, complete or unspecified, with other or unspecified complications','Y','2025-10-23 00:00:00'),(105320,11,'JA00.29','Unspecified abortion, complete or unspecified, without complication','Y','2025-10-23 00:00:00'),(105321,11,'JA00.21','Unspecified abortion, incomplete, complicated by delayed or excessive haemorrhage','Y','2025-10-23 00:00:00'),(105322,11,'JA00.22','Unspecified abortion, incomplete, complicated by embolism','Y','2025-10-23 00:00:00'),(105323,11,'JA00.20','Unspecified abortion, incomplete, complicated by genital tract or pelvic infection','Y','2025-10-23 00:00:00'),(105324,11,'JA00.23','Unspecified abortion, incomplete, with other or unspecified complications','Y','2025-10-23 00:00:00'),(105325,11,'JA00.24','Unspecified abortion, incomplete, without complication','Y','2025-10-23 00:00:00'),(105326,11,'EH7Z','Unspecified adverse cutaneous reactions to medication','Y','2025-10-23 00:00:00'),(105327,11,'QA74','Unspecified appropriateness of dosing or administration without injury or harm','Y','2025-10-23 00:00:00'),(105328,11,'FA38.Z','Unspecified arthropathy in diseases classified elsewhere','Y','2025-10-23 00:00:00'),(105329,11,'XY9S','Unspecified as to episode of care, or not applicable','Y','2025-10-23 00:00:00'),(105330,11,'CA23.3','Unspecified asthma','Y','2025-10-23 00:00:00'),(105331,11,'CA23.30','Unspecified asthma with exacerbation','Y','2025-10-23 00:00:00'),(105332,11,'CA23.31','Unspecified asthma with status asthmaticus','Y','2025-10-23 00:00:00'),(105333,11,'CA23.32','Unspecified asthma, uncomplicated','Y','2025-10-23 00:00:00'),(105334,11,'1C4Z','Unspecified bacterial disease','Y','2025-10-23 00:00:00'),(105335,11,'2D41','Unspecified carcinoma of unspecified site','Y','2025-10-23 00:00:00'),(105336,11,'PJ7Z','Unspecified destruction of aircraft during armed conflict','Y','2025-10-23 00:00:00'),(105337,11,'NA07.3Z','Unspecified diffuse traumatic brain injury','Y','2025-10-23 00:00:00'),(105338,11,'5C8Z','Unspecified disorders of lipoprotein metabolism or lipidaemias','Y','2025-10-23 00:00:00'),(105339,11,'DA0A.Z','Unspecified disorders of teeth and supporting structures','Y','2025-10-23 00:00:00'),(105340,11,'XT6K','Unspecified duration of pregnancy','Y','2025-10-23 00:00:00'),(105341,11,'NF0Z','Unspecified effects of external causes','Y','2025-10-23 00:00:00'),(105342,11,'NF03.Z','Unspecified effects of reduced temperature','Y','2025-10-23 00:00:00'),(105343,11,'PJ8Z','Unspecified explosion or fragments during armed conflict','Y','2025-10-23 00:00:00'),(105344,11,'PJ9Z','Unspecified fire, conflagration or hot substance during armed conflict','Y','2025-10-23 00:00:00'),(105345,11,'NA07.4Z','Unspecified focal traumatic brain injury','Y','2025-10-23 00:00:00'),(105346,11,'QD2Z','Unspecified health status associated with infectious or certain specified conditions','Y','2025-10-23 00:00:00'),(105347,11,'ND51.Z','Unspecified injuries of spine or trunk, level unspecified','Y','2025-10-23 00:00:00'),(105348,11,'PH8Z','Unspecified injury event of undetermined intent','Y','2025-10-23 00:00:00'),(105349,11,'ND56.Z','Unspecified injury to unspecified part of trunk, limb or body region','Y','2025-10-23 00:00:00'),(105350,11,'NF2Z','Unspecified injury, poisoning or certain other consequences of external causes','Y','2025-10-23 00:00:00'),(105351,11,'ME10.1','Unspecified jaundice','Y','2025-10-23 00:00:00'),(105352,11,'FA3Z','Unspecified joint disorders and deformities of limbs','Y','2025-10-23 00:00:00'),(105353,11,'2C25.5','Unspecified malignant epithelial neoplasm of bronchus or lung','Y','2025-10-23 00:00:00'),(105354,11,'2C21.2','Unspecified malignant epithelial neoplasm of middle ear','Y','2025-10-23 00:00:00'),(105355,11,'2D4Z','Unspecified malignant neoplasms of unspecified sites','Y','2025-10-23 00:00:00'),(105356,11,'2B5K','Unspecified malignant soft tissue tumours or sarcomas of bone or articular cartilage of other or unspecified sites','Y','2025-10-23 00:00:00'),(105357,11,'5B91.Z','Unspecified mineral excess','Y','2025-10-23 00:00:00'),(105358,11,'PL11.Z','Unspecified mode of injury or harm associated with a surgical or other medical procedure','Y','2025-10-23 00:00:00'),(105359,11,'ND37','Unspecified multiple injuries','Y','2025-10-23 00:00:00'),(105360,11,'8C6Z','Unspecified myasthenia gravis or neuromuscular junction disorders','Y','2025-10-23 00:00:00'),(105361,11,'JB6Z','Unspecified obstetric condition','Y','2025-10-23 00:00:00'),(105362,11,'1G2Z','Unspecified parasitic diseases','Y','2025-10-23 00:00:00'),(105363,11,'XE8ZT','Unspecified phase of activity','Y','2025-10-23 00:00:00'),(105364,11,'1F5Z','Unspecified protozoal disease','Y','2025-10-23 00:00:00'),(105365,11,'EA3Z','Unspecified skin disorder attributable to viral infection','Y','2025-10-23 00:00:00'),(105366,11,'KD3B.Z','Unspecified time of fetal death, cause not specified','Y','2025-10-23 00:00:00'),(105367,11,'PG4Z','Unspecified transport injury event of undetermined intent','Y','2025-10-23 00:00:00'),(105368,11,'PK80.1Y','Unspecified type of cardiac procedure associated with injury or harm in therapeutic use, other specified approach','Y','2025-10-23 00:00:00'),(105369,11,'PK80.1Z','Unspecified type of cardiac procedure associated with injury or harm in therapeutic use, unspecified approach','Y','2025-10-23 00:00:00'),(105370,11,'PG6Z','Unspecified type of contact with person, animal or plant of undetermined intent','Y','2025-10-23 00:00:00'),(105371,11,'5B7Z','Unspecified undernutrition','Y','2025-10-23 00:00:00'),(105372,11,'PB6Z','Unspecified unintentional cause of morbidity or mortality','Y','2025-10-23 00:00:00'),(105373,11,'1E1Z','Unspecified viral disease','Y','2025-10-23 00:00:00'),(105374,11,'1D9Z','Unspecified viral infection of unspecified site','Y','2025-10-23 00:00:00'),(105375,11,'5B90.Z','Unspecified vitamin excesses','Y','2025-10-23 00:00:00'),(105376,11,'PK6Z','Unspecified weapon or attack during armed conflict','Y','2025-10-23 00:00:00'),(105377,11,'1B9Z','Unspecified zoonotic bacterial disease','Y','2025-10-23 00:00:00'),(105378,11,'BA40.0','Unstable angina','Y','2025-10-23 00:00:00'),(105379,11,'XE350','Unstable capture threshold','Y','2025-10-23 00:00:00'),(105380,11,'XE5CH','Unstable device','Y','2025-10-23 00:00:00'),(105381,11,'SC01','Unstable fetus disorder (TM1)','Y','2025-10-23 00:00:00'),(105382,11,'LB74.2','Unstable hip','Y','2025-10-23 00:00:00'),(105383,11,'EA90.2','Unstable psoriasis','Y','2025-10-23 00:00:00'),(105384,11,'XM0V48','Upadacitinib','Y','2025-10-23 00:00:00'),(105385,11,'9C84.21','Upbeat nystagmus','Y','2025-10-23 00:00:00'),(105386,11,'XE33K','Upholstered chair or sofa','Y','2025-10-23 00:00:00'),(105387,11,'XA0U66','Upper abdomen','Y','2025-10-23 00:00:00'),(105388,11,'XA2C94','Upper alveolar mucosa','Y','2025-10-23 00:00:00'),(105389,11,'XA7DA0','Upper alveolar ridge mucosa','Y','2025-10-23 00:00:00'),(105390,11,'XA8ML7','Upper anterior thoracic region','Y','2025-10-23 00:00:00'),(105391,11,'XA6809','Upper arm','Y','2025-10-23 00:00:00'),(105392,11,'XA10L7','Upper back','Y','2025-10-23 00:00:00'),(105393,11,'XA99C2','Upper branches of the six','Y','2025-10-23 00:00:00'),(105394,11,'XA5KE9','Upper cheek','Y','2025-10-23 00:00:00'),(105395,11,'XA76U7','Upper end of radius not otherwise specified','Y','2025-10-23 00:00:00'),(105396,11,'XA6SV9','Upper end of ulna not otherwise specified','Y','2025-10-23 00:00:00'),(105397,11,'SG70','Upper energizer stage patterns (TM1)','Y','2025-10-23 00:00:00'),(105398,11,'XA4BA8','Upper extremity','Y','2025-10-23 00:00:00'),(105399,11,'XA9K79','Upper eyelid','Y','2025-10-23 00:00:00'),(105400,11,'XA53T1','Upper eyelid margin','Y','2025-10-23 00:00:00'),(105401,11,'XA28R6','Upper gastrointestinal tract, not elsewhere classified','Y','2025-10-23 00:00:00'),(105402,11,'XA6743','Upper gingiva','Y','2025-10-23 00:00:00'),(105403,11,'XA1NS5','Upper half of breast','Y','2025-10-23 00:00:00'),(105404,11,'XA3LS6','Upper inner quadrant of breast','Y','2025-10-23 00:00:00'),(105405,11,'XA9RL9','Upper lateral thoracic region','Y','2025-10-23 00:00:00'),(105406,11,'XA0MG2','Upper left ','Y','2025-10-23 00:00:00'),(105407,11,'XA3EF6','Upper left 1st bicuspid','Y','2025-10-23 00:00:00'),(105408,11,'XA2GW7','Upper left 1st molar','Y','2025-10-23 00:00:00'),(105409,11,'XA85K7','Upper left 1st molar, deciduous','Y','2025-10-23 00:00:00'),(105410,11,'XA5Z15','Upper left 2nd bicuspid','Y','2025-10-23 00:00:00'),(105411,11,'XA1YK1','Upper left 2nd molar','Y','2025-10-23 00:00:00'),(105412,11,'XA2BD4','Upper left 2nd molar, deciduous','Y','2025-10-23 00:00:00'),(105413,11,'XA8328','Upper left 3rd molar','Y','2025-10-23 00:00:00'),(105414,11,'XA2LF2','Upper left canine','Y','2025-10-23 00:00:00'),(105415,11,'XA98V8','Upper left canine, deciduous','Y','2025-10-23 00:00:00'),(105416,11,'XA9P69','Upper left central incisor','Y','2025-10-23 00:00:00'),(105417,11,'XA4ZQ5','Upper left central incisor, deciduous','Y','2025-10-23 00:00:00'),(105418,11,'XA9QP7','Upper left lateral incisor, deciduous','Y','2025-10-23 00:00:00'),(105419,11,'BD71.0','Upper limb deep vein thrombosis','Y','2025-10-23 00:00:00'),(105420,11,'LB97.2','Upper limb hypertrophy','Y','2025-10-23 00:00:00'),(105421,11,'XA7VQ4','Upper lip','Y','2025-10-23 00:00:00'),(105422,11,'XA9HN5','Upper lobe of lung','Y','2025-10-23 00:00:00'),(105423,11,'XA37W0','Upper lobe, bronchus','Y','2025-10-23 00:00:00'),(105424,11,'XA9ZB4','Upper medial surface of thigh','Y','2025-10-23 00:00:00'),(105425,11,'XA2Q54','Upper outer quadrant of breast','Y','2025-10-23 00:00:00'),(105426,11,'CA81.2','Upper respiratory inflammation due to chemicals, gases, fumes or vapours, not elsewhere classified','Y','2025-10-23 00:00:00'),(105427,11,'XA8Z63','Upper respiratory tract','Y','2025-10-23 00:00:00'),(105428,11,'CA0Z','Upper respiratory tract disorders, unspecified','Y','2025-10-23 00:00:00'),(105429,11,'XA3QH3','Upper right ','Y','2025-10-23 00:00:00'),(105430,11,'XA2XZ5','Upper right ','Y','2025-10-23 00:00:00'),(105431,11,'XA64J5','Upper right 1st bicuspid','Y','2025-10-23 00:00:00'),(105432,11,'XA0TL3','Upper right 1st molar','Y','2025-10-23 00:00:00'),(105433,11,'XA7ZT9','Upper right 1st molar, deciduous','Y','2025-10-23 00:00:00'),(105434,11,'XA45K9','Upper right 2nd bicuspid','Y','2025-10-23 00:00:00'),(105435,11,'XA0BR9','Upper right 2nd molar','Y','2025-10-23 00:00:00'),(105436,11,'XA2GE5','Upper right 2nd molar, deciduous','Y','2025-10-23 00:00:00'),(105437,11,'XA5306','Upper right 3rd molar','Y','2025-10-23 00:00:00'),(105438,11,'XA0LE1','Upper right canine','Y','2025-10-23 00:00:00'),(105439,11,'XA06P0','Upper right canine, deciduous','Y','2025-10-23 00:00:00'),(105440,11,'XA43X2','Upper right central incisor','Y','2025-10-23 00:00:00'),(105441,11,'XA3BG3','Upper right central incisor, deciduous','Y','2025-10-23 00:00:00'),(105442,11,'XA5KR0','Upper subscapular nerve','Y','2025-10-23 00:00:00'),(105443,11,'XA1T01','Upper superior gastric lymph node','Y','2025-10-23 00:00:00'),(105444,11,'XA1180','Upper third of oesophagus','Y','2025-10-23 00:00:00'),(105445,11,'XA4QH7','Upper trunk','Y','2025-10-23 00:00:00'),(105446,11,'XA6RS6','Upper urinary tract','Y','2025-10-23 00:00:00'),(105447,11,'9C83.11','Upward gaze deviation','Y','2025-10-23 00:00:00'),(105448,11,'XA1NC2','Urachus','Y','2025-10-23 00:00:00'),(105449,11,'XM6A19','Uracil mustard','Y','2025-10-23 00:00:00'),(105450,11,'EC90.10','Uraemic pruritus','Y','2025-10-23 00:00:00'),(105451,11,'XM9KU3','Uramustine','Y','2025-10-23 00:00:00'),(105452,11,'XM30L7','Urapidil','Y','2025-10-23 00:00:00'),(105453,11,'XM56G7','Urate oxidase','Y','2025-10-23 00:00:00'),(105454,11,'XM81Z1','Urea peroxide','Y','2025-10-23 00:00:00'),(105455,11,'XM2621','Urea stibamine','Y','2025-10-23 00:00:00'),(105456,11,'XM8WU4','Urea topical','Y','2025-10-23 00:00:00'),(105457,11,'XN1R2','Ureaplasma','Y','2025-10-23 00:00:00'),(105458,11,'XA7156','Ureter','Y','2025-10-23 00:00:00'),(105459,11,'GC04.2','Ureteral fistula','Y','2025-10-23 00:00:00'),(105460,11,'GB90.2','Ureteral kinking or deviation without obstruction','Y','2025-10-23 00:00:00'),(105461,11,'XA4P63','Ureteric orifice','Y','2025-10-23 00:00:00'),(105462,11,'XM9AV3','Urethane','Y','2025-10-23 00:00:00'),(105463,11,'XA5TA5','Urethra','Y','2025-10-23 00:00:00'),(105464,11,'GC02.0','Urethral abscess','Y','2025-10-23 00:00:00'),(105465,11,'XA85K8','Urethral artery','Y','2025-10-23 00:00:00'),(105466,11,'GC07','Urethral caruncle','Y','2025-10-23 00:00:00'),(105467,11,'MF58','Urethral discharge','Y','2025-10-23 00:00:00'),(105468,11,'GC06','Urethral diverticulum','Y','2025-10-23 00:00:00'),(105469,11,'GC04.0','Urethral fistula','Y','2025-10-23 00:00:00'),(105470,11,'GC03','Urethral stricture','Y','2025-10-23 00:00:00'),(105471,11,'GC02','Urethritis and urethral syndrome','Y','2025-10-23 00:00:00'),(105472,11,'GC02.Z','Urethritis and urethral syndrome, unspecified','Y','2025-10-23 00:00:00'),(105473,11,'GC04.14','Urethrovaginal fistula','Y','2025-10-23 00:00:00'),(105474,11,'MF50.21','Urge Incontinence','Y','2025-10-23 00:00:00'),(105475,11,'GC40.51','Urge incontinence associated with pelvic organ prolapse','Y','2025-10-23 00:00:00'),(105476,11,'MF50.63','Urgency of urination','Y','2025-10-23 00:00:00'),(105477,11,'XM46N0','Urginea maritima plant','Y','2025-10-23 00:00:00'),(105478,11,'XM95S3','Uric acid metabolism drug','Y','2025-10-23 00:00:00'),(105479,11,'XM6953','Uricosuric agent','Y','2025-10-23 00:00:00'),(105480,11,'XM28B1','Uridine triacetate','Y','2025-10-23 00:00:00'),(105481,11,'XM2SB0','Urinary anti-infective','Y','2025-10-23 00:00:00'),(105482,11,'XA77K2','Urinary bladder','Y','2025-10-23 00:00:00'),(105483,11,'MF50.2','Urinary incontinence','Y','2025-10-23 00:00:00'),(105484,11,'GC40.5','Urinary incontinence associated with pelvic organ prolapse','Y','2025-10-23 00:00:00'),(105485,11,'GC40.54','Urinary incontinence, not otherwise specified with pelvic organ prolapse','Y','2025-10-23 00:00:00'),(105486,11,'MF50.2Z','Urinary incontinence, unspecified','Y','2025-10-23 00:00:00'),(105487,11,'MF59','Urinary symptom or complaint','Y','2025-10-23 00:00:00'),(105488,11,'JB40.3','Urinary tract infection following delivery','Y','2025-10-23 00:00:00'),(105489,11,'GC08.Z','Urinary tract infection, site and agent not specified','Y','2025-10-23 00:00:00'),(105490,11,'GC08','Urinary tract infection, site not specified','Y','2025-10-23 00:00:00'),(105491,11,'GC08.Y','Urinary tract infection, site not specified due to other agent','Y','2025-10-23 00:00:00'),(105492,11,'GC08.0','Urinary tract infection, site not specified, due to Escherichia coli','Y','2025-10-23 00:00:00'),(105493,11,'GC08.1','Urinary tract infection, site not specified, due to Klebsiella pneumoniae','Y','2025-10-23 00:00:00'),(105494,11,'GC08.2','Urinary tract infection, site not specified, due to Proteus','Y','2025-10-23 00:00:00'),(105495,11,'XA4V93','Urinary tract, not elsewhere classified','Y','2025-10-23 00:00:00'),(105496,11,'VV50','Urination functions','Y','2025-10-23 00:00:00'),(105497,11,'5C50.21','Urocanic aciduria','Y','2025-10-23 00:00:00'),(105498,11,'XM8HC4','Urofollitropin','Y','2025-10-23 00:00:00'),(105499,11,'XM1QH1','Urokinase','Y','2025-10-23 00:00:00'),(105500,11,'GB7Z','Urolithiasis, unspecified','Y','2025-10-23 00:00:00'),(105501,11,'XD1ZP3','Urological catheters, self-retained','Y','2025-10-23 00:00:00'),(105502,11,'PK80.6','Urological procedure associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(105503,11,'PK80.62','Urological procedure associated with injury or harm, endoscopic approach','Y','2025-10-23 00:00:00'),(105504,11,'PK80.60','Urological procedure associated with injury or harm, open approach','Y','2025-10-23 00:00:00'),(105505,11,'PK80.6Y','Urological procedure associated with injury or harm, other specified approach','Y','2025-10-23 00:00:00'),(105506,11,'PK80.61','Urological procedure associated with injury or harm, percutaneous approach','Y','2025-10-23 00:00:00'),(105507,11,'PK80.6Z','Urological procedure associated with injury or harm, unspecified approach','Y','2025-10-23 00:00:00'),(105508,11,'XH5GH8','Urothelial carcinoma in situ','Y','2025-10-23 00:00:00'),(105509,11,'2C95.2','Urothelial carcinoma involving overlapping sites of urinary organs','Y','2025-10-23 00:00:00'),(105510,11,'2C94.2','Urothelial carcinoma of bladder','Y','2025-10-23 00:00:00'),(105511,11,'2C91.0','Urothelial carcinoma of renal pelvis','Y','2025-10-23 00:00:00'),(105512,11,'2C92.0','Urothelial carcinoma of ureter','Y','2025-10-23 00:00:00'),(105513,11,'2C93.2','Urothelial carcinoma of urethra or paraurethral gland','Y','2025-10-23 00:00:00'),(105514,11,'XH4W76','Urothelial carcinoma, micropapillary','Y','2025-10-23 00:00:00'),(105515,11,'XH5P27','Urothelial carcinoma, sarcomatoid','Y','2025-10-23 00:00:00'),(105516,11,'XH5A08','Urothelial papilloma, inverted','Y','2025-10-23 00:00:00'),(105517,11,'XH5M82','Urothelial papilloma, NOS','Y','2025-10-23 00:00:00'),(105518,11,'XM8MG9','Ursodeoxycholic acid','Y','2025-10-23 00:00:00'),(105519,11,'XM84R4','Urtica plant','Y','2025-10-23 00:00:00'),(105520,11,'EB05','Urticaria of unspecified type','Y','2025-10-23 00:00:00'),(105521,11,'2A21.10','Urticaria pigmentosa','Y','2025-10-23 00:00:00'),(105522,11,'XH8VS0','Urticaria pigmentosa','Y','2025-10-23 00:00:00'),(105523,11,'EF40.10','Urticarial vasculitis','Y','2025-10-23 00:00:00'),(105524,11,'PK33','Use of autonomous or semi-autonomous machines as weapons during armed conflict','Y','2025-10-23 00:00:00'),(105525,11,'PK30','Use of chemical weapons during armed conflict','Y','2025-10-23 00:00:00'),(105526,11,'XE0AG','Use of device problem','Y','2025-10-23 00:00:00'),(105527,11,'PK32','Use of electric weapons during armed conflict','Y','2025-10-23 00:00:00'),(105528,11,'PK01','Use of firearm pellets during armed conflict','Y','2025-10-23 00:00:00'),(105529,11,'PJ91','Use of flamethrower during armed conflict','Y','2025-10-23 00:00:00'),(105530,11,'PJ90','Use of gasoline bomb during armed conflict','Y','2025-10-23 00:00:00'),(105531,11,'PJ92','Use of incendiary bullets during armed conflict','Y','2025-10-23 00:00:00'),(105532,11,'XE7S3','Use of incorrect control settings','Y','2025-10-23 00:00:00'),(105533,11,'PK31','Use of lasers or other energetic beams or fields during armed conflict','Y','2025-10-23 00:00:00'),(105534,11,'PK2Y','Use of other specified biological weapons during armed conflict','Y','2025-10-23 00:00:00'),(105535,11,'PK00','Use of rubber bullets during armed conflict','Y','2025-10-23 00:00:00'),(105536,11,'PK2Z','Use of unspecified biological weapons during armed conflict','Y','2025-10-23 00:00:00'),(105537,11,'PK20','Use of weaponised micro-organisms during armed conflict','Y','2025-10-23 00:00:00'),(105538,11,'XE5A0','User input device component of medical device','Y','2025-10-23 00:00:00'),(105539,11,'XE8V6','User interface component of medical device','Y','2025-10-23 00:00:00'),(105540,11,'LD2H.4','Usher syndrome','Y','2025-10-23 00:00:00'),(105541,11,'VW16','Using transportation','Y','2025-10-23 00:00:00'),(105542,11,'XM26G6','Usnic acid','Y','2025-10-23 00:00:00'),(105543,11,'XM1BA7','Ustekinumab','Y','2025-10-23 00:00:00'),(105544,11,'XA7E69','Uterine adnexa','Y','2025-10-23 00:00:00'),(105545,11,'LA90.32','Uterine arteriovenous malformations','Y','2025-10-23 00:00:00'),(105546,11,'XA0610','Uterine artery','Y','2025-10-23 00:00:00'),(105547,11,'XA3QZ2','Uterine cavity','Y','2025-10-23 00:00:00'),(105548,11,'SF9D','Uterine deficiency cold pattern (TM1)','Y','2025-10-23 00:00:00'),(105549,11,'XA4T57','Uterine ligament','Y','2025-10-23 00:00:00'),(105550,11,'SC23','Uterine mass disorder (TM1)','Y','2025-10-23 00:00:00'),(105551,11,'XA5M72','Uterine paracervical lymph node','Y','2025-10-23 00:00:00'),(105552,11,'XA7AB3','Uterine plexus','Y','2025-10-23 00:00:00'),(105553,11,'XH8CW8','Uterine tumour resembling ovarian sex cord tumour','Y','2025-10-23 00:00:00'),(105554,11,'XA8M77','Uterine vein','Y','2025-10-23 00:00:00'),(105555,11,'XA1DP8','Uterine wall','Y','2025-10-23 00:00:00'),(105556,11,'XA2NB2','Uterosacral ligament','Y','2025-10-23 00:00:00'),(105557,11,'LB44.6','Uterovaginal malformation due to diethylstilbestrol syndrome','Y','2025-10-23 00:00:00'),(105558,11,'XA2G95','Uterovaginal plexus','Y','2025-10-23 00:00:00'),(105559,11,'GC40.3','Uterovaginal prolapse','Y','2025-10-23 00:00:00'),(105560,11,'GC40.3Z','Uterovaginal prolapse, unspecified','Y','2025-10-23 00:00:00'),(105561,11,'XA99N3','Uterus','Y','2025-10-23 00:00:00'),(105562,11,'XA4MT3','Uvea','Y','2025-10-23 00:00:00'),(105563,11,'XA2993','Uvula','Y','2025-10-23 00:00:00'),(105564,11,'XM8Y67','Vaccine antineoplastic','Y','2025-10-23 00:00:00'),(105565,11,'XM1Y59','Vaccine sabin oral','Y','2025-10-23 00:00:00'),(105566,11,'XM5926','Vaccines bacterial mixed, not elsewhere classified','Y','2025-10-23 00:00:00'),(105567,11,'XM9SW5','Vaccines bacterial with other bacterial component','Y','2025-10-23 00:00:00'),(105568,11,'XM4039','Vaccines diphtheria with tetanus','Y','2025-10-23 00:00:00'),(105569,11,'XM2CV8','Vaccines pertussis with diphtheria','Y','2025-10-23 00:00:00'),(105570,11,'XM91J8','Vaccines rickettsial','Y','2025-10-23 00:00:00'),(105571,11,'XM4F19','Vaccines rickettsial with bacterial component','Y','2025-10-23 00:00:00'),(105572,11,'XM3VD2','Vaccines TAB','Y','2025-10-23 00:00:00'),(105573,11,'1E73','Vaccinia','Y','2025-10-23 00:00:00'),(105574,11,'XM8Q08','Vaccinia immunoglobulin','Y','2025-10-23 00:00:00'),(105575,11,'XN06N','Vaccinia virus','Y','2025-10-23 00:00:00'),(105576,11,'XE5PE','Vacuum cleaner','Y','2025-10-23 00:00:00'),(105577,11,'XM59J5','Vadadustat','Y','2025-10-23 00:00:00'),(105578,11,'XH1493','Vagal paraganglioma','Y','2025-10-23 00:00:00'),(105579,11,'XA1LK7','Vagina','Y','2025-10-23 00:00:00'),(105580,11,'XA47A2','Vaginal artery','Y','2025-10-23 00:00:00'),(105581,11,'JB0D.6','Vaginal delivery following previous caesarean section','Y','2025-10-23 00:00:00'),(105582,11,'MF3A','Vaginal discharge','Y','2025-10-23 00:00:00'),(105583,11,'SC21','Vaginal flatus disorder (TM1)','Y','2025-10-23 00:00:00'),(105584,11,'GA14.2','Vaginal foreign body','Y','2025-10-23 00:00:00'),(105585,11,'GA14.3','Vaginal haematoma','Y','2025-10-23 00:00:00'),(105586,11,'XH6F63','Vaginal intraepithelial neoplasia, grade III','Y','2025-10-23 00:00:00'),(105587,11,'XA4AH3','Vaginal introitus','Y','2025-10-23 00:00:00'),(105588,11,'GA34.1','Vaginal laxity','Y','2025-10-23 00:00:00'),(105589,11,'XM2AH3','Vaginal ring with progestogen and estrogen','Y','2025-10-23 00:00:00'),(105590,11,'GC04.1A','Vaginal stenosis or gynatresia related to obstetric fistula','Y','2025-10-23 00:00:00'),(105591,11,'XA46V2','Vaginal vault','Y','2025-10-23 00:00:00'),(105592,11,'XA1MK5','Vaginal vein','Y','2025-10-23 00:00:00'),(105593,11,'XA57Q2','Vaginal wall','Y','2025-10-23 00:00:00'),(105594,11,'GA02','Vaginitis','Y','2025-10-23 00:00:00'),(105595,11,'XA6VN1','Vagus nerve','Y','2025-10-23 00:00:00'),(105596,11,'XM4GK4','Valaciclovir','Y','2025-10-23 00:00:00'),(105597,11,'XM8MX8','Valbenazine','Y','2025-10-23 00:00:00'),(105598,11,'XM4SK9','Valdecoxib','Y','2025-10-23 00:00:00'),(105599,11,'XM3PP3','Valerian root','Y','2025-10-23 00:00:00'),(105600,11,'XM0MV0','Valerian tincture','Y','2025-10-23 00:00:00'),(105601,11,'XM8488','Valerianae radix','Y','2025-10-23 00:00:00'),(105602,11,'XM9K48','Valethamate bromide','Y','2025-10-23 00:00:00'),(105603,11,'XM2RU2','Valganciclovir','Y','2025-10-23 00:00:00'),(105604,11,'FA31.0','Valgus deformity, not elsewhere classified','Y','2025-10-23 00:00:00'),(105605,11,'XM2VU7','Valisone','Y','2025-10-23 00:00:00'),(105606,11,'XM1YU1','Valium','Y','2025-10-23 00:00:00'),(105607,11,'XA88V4','Vallecula','Y','2025-10-23 00:00:00'),(105608,11,'XM1WZ4','Valmid','Y','2025-10-23 00:00:00'),(105609,11,'XM2TP4','Valnoctamide','Y','2025-10-23 00:00:00'),(105610,11,'XM29Q3','Valproic acid','Y','2025-10-23 00:00:00'),(105611,11,'XM71X1','Valpromide','Y','2025-10-23 00:00:00'),(105612,11,'XM9CA4','Valrubicin','Y','2025-10-23 00:00:00'),(105613,11,'XM29M2','Valsartan','Y','2025-10-23 00:00:00'),(105614,11,'XE01P','Valve component of medical device','Y','2025-10-23 00:00:00'),(105615,11,'XM9FN4','Vamidothion','Y','2025-10-23 00:00:00'),(105616,11,'XM6NB8','Vampire bat venom','Y','2025-10-23 00:00:00'),(105617,11,'XM0907','Vanadium','Y','2025-10-23 00:00:00'),(105618,11,'5B5K.B','Vanadium deficiency','Y','2025-10-23 00:00:00'),(105619,11,'XM9YD1','Vancomycin','Y','2025-10-23 00:00:00'),(105620,11,'MG51.20','Vancomycin resistant Enterococcus','Y','2025-10-23 00:00:00'),(105621,11,'MG51.01','Vancomycin resistant Staphylococcus aureus','Y','2025-10-23 00:00:00'),(105622,11,'XN59U','Vandellia cirrhosa','Y','2025-10-23 00:00:00'),(105623,11,'XM3W52','Vandetanib','Y','2025-10-23 00:00:00'),(105624,11,'RA00.0','Vaping related disorder','Y','2025-10-23 00:00:00'),(105625,11,'XE6MT','Vaporiser component of medical device','Y','2025-10-23 00:00:00'),(105626,11,'XE1NP','Vaporizer, humidifier','Y','2025-10-23 00:00:00'),(105627,11,'XM28Z2','Vapreotide','Y','2025-10-23 00:00:00'),(105628,11,'XM9AZ1','Vardenafil','Y','2025-10-23 00:00:00'),(105629,11,'XM6PN9','Varenicline','Y','2025-10-23 00:00:00'),(105630,11,'8E03','Variably protease sensitive prionopathy','Y','2025-10-23 00:00:00'),(105631,11,'8E01.2','Variant Creutzfeldt-Jakob Disease','Y','2025-10-23 00:00:00'),(105632,11,'1E90','Varicella','Y','2025-10-23 00:00:00'),(105633,11,'1E90.2','Varicella encephalitis','Y','2025-10-23 00:00:00'),(105634,11,'1E90.1','Varicella meningitis','Y','2025-10-23 00:00:00'),(105635,11,'1E90.Y','Varicella with other specified complication','Y','2025-10-23 00:00:00'),(105636,11,'1E90.0','Varicella without complication','Y','2025-10-23 00:00:00'),(105637,11,'XM7X82','Varicella zoster immunoglobulin','Y','2025-10-23 00:00:00'),(105638,11,'XM8DG3','Varicella zoster vaccines','Y','2025-10-23 00:00:00'),(105639,11,'XN0TA','Varicella zoster virus','Y','2025-10-23 00:00:00'),(105640,11,'XM0NS8','Varicella, live attenuated','Y','2025-10-23 00:00:00'),(105641,11,'DB34.3','Varices of large intestine','Y','2025-10-23 00:00:00'),(105642,11,'DA97.3','Varices of small intestine','Y','2025-10-23 00:00:00'),(105643,11,'XM1LV9','Varicose reduction drug','Y','2025-10-23 00:00:00'),(105644,11,'JA61.0','Varicose veins of lower extremity in pregnancy','Y','2025-10-23 00:00:00'),(105645,11,'BD74.10','Varicose veins with great saphenous reflux','Y','2025-10-23 00:00:00'),(105646,11,'BD74.12','Varicose veins with non-truncal reflux','Y','2025-10-23 00:00:00'),(105647,11,'BD74.11','Varicose veins with small saphenous reflux','Y','2025-10-23 00:00:00'),(105648,11,'5C58.13','Variegate porphyria','Y','2025-10-23 00:00:00'),(105649,11,'XN125','variegated squirrel bornavirus 1','Y','2025-10-23 00:00:00'),(105650,11,'XN4Q0','Variola virus','Y','2025-10-23 00:00:00'),(105651,11,'XM15W5','Varnish, not elsewhere classified','Y','2025-10-23 00:00:00'),(105652,11,'FA31.1','Varus deformity, not elsewhere classified','Y','2025-10-23 00:00:00'),(105653,11,'XA8PQ1','Vas deferens','Y','2025-10-23 00:00:00'),(105654,11,'9A61.40','Vascular abnormalities of conjunctiva','Y','2025-10-23 00:00:00'),(105655,11,'XD8689','Vascular access devices (only for haemodialysis)','Y','2025-10-23 00:00:00'),(105656,11,'XD3297','Vascular access devices (only for haemodialysis) others','Y','2025-10-23 00:00:00'),(105657,11,'DB34.Z','Vascular disorders of large intestine, unspecified','Y','2025-10-23 00:00:00'),(105658,11,'GB08','Vascular disorders of male genital organs','Y','2025-10-23 00:00:00'),(105659,11,'DA52','Vascular disorders of the duodenum','Y','2025-10-23 00:00:00'),(105660,11,'DA52.Z','Vascular disorders of the duodenum, unspecified','Y','2025-10-23 00:00:00'),(105661,11,'DB98','Vascular disorders of the liver','Y','2025-10-23 00:00:00'),(105662,11,'DB98.Z','Vascular disorders of the liver, unspecified','Y','2025-10-23 00:00:00'),(105663,11,'DA26','Vascular disorders of the oesophagus','Y','2025-10-23 00:00:00'),(105664,11,'DA26.Z','Vascular disorders of the oesophagus, unspecified','Y','2025-10-23 00:00:00'),(105665,11,'DA43','Vascular disorders of the stomach','Y','2025-10-23 00:00:00'),(105666,11,'DA43.Z','Vascular disorders of the stomach, unspecified','Y','2025-10-23 00:00:00'),(105667,11,'XM1GS6','Vascular endothelial growth factor inhibitors','Y','2025-10-23 00:00:00'),(105668,11,'8A00.23','Vascular parkinsonism','Y','2025-10-23 00:00:00'),(105669,11,'PK80.9','Vascular procedure associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(105670,11,'PK80.92','Vascular procedure associated with injury or harm, endoscopic approach','Y','2025-10-23 00:00:00'),(105671,11,'PK80.90','Vascular procedure associated with injury or harm, open approach','Y','2025-10-23 00:00:00'),(105672,11,'PK80.9Y','Vascular procedure associated with injury or harm, other specified approach','Y','2025-10-23 00:00:00'),(105673,11,'PK80.91','Vascular procedure associated with injury or harm, percutaneous approach','Y','2025-10-23 00:00:00'),(105674,11,'PK80.9Z','Vascular procedure associated with injury or harm, unspecified approach','Y','2025-10-23 00:00:00'),(105675,11,'8B26','Vascular syndromes of brain in cerebrovascular diseases','Y','2025-10-23 00:00:00'),(105676,11,'8B26.Z','Vascular syndromes of brain in cerebrovascular diseases, unspecified','Y','2025-10-23 00:00:00'),(105677,11,'8B92.1','Vasculitic lumbosacral plexopathy','Y','2025-10-23 00:00:00'),(105678,11,'4A44','Vasculitis','Y','2025-10-23 00:00:00'),(105679,11,'EF40.1','Vasculitis affecting small cutaneous blood vessels','Y','2025-10-23 00:00:00'),(105680,11,'DB34.2','Vasculitis of large intestine','Y','2025-10-23 00:00:00'),(105681,11,'DA97.2','Vasculitis of mesenteric arteries','Y','2025-10-23 00:00:00'),(105682,11,'EF40','Vasculitis or capillaritis involving the skin','Y','2025-10-23 00:00:00'),(105683,11,'4A44.Z','Vasculitis, unspecified','Y','2025-10-23 00:00:00'),(105684,11,'EG01','Vasoconstriction of extremities','Y','2025-10-23 00:00:00'),(105685,11,'XM1UM9','Vasodilan','Y','2025-10-23 00:00:00'),(105686,11,'EG00','Vasodilatation of extremities','Y','2025-10-23 00:00:00'),(105687,11,'CA08','Vasomotor or allergic rhinitis','Y','2025-10-23 00:00:00'),(105688,11,'CA08.3','Vasomotor rhinitis','Y','2025-10-23 00:00:00'),(105689,11,'XM6A76','Vasopressin','Y','2025-10-23 00:00:00'),(105690,11,'XM25M7','Vasopressin and analogues','Y','2025-10-23 00:00:00'),(105691,11,'XM7VU2','Vasopressin antagonists','Y','2025-10-23 00:00:00'),(105692,11,'XM1Y33','Vasopressor drugs','Y','2025-10-23 00:00:00'),(105693,11,'XA33F6','Vastus intermedius muscle','Y','2025-10-23 00:00:00'),(105694,11,'XA8ST5','Vastus intermedius tendon','Y','2025-10-23 00:00:00'),(105695,11,'XA00Z6','Vastus lateralis muscle','Y','2025-10-23 00:00:00'),(105696,11,'XA8CQ5','Vastus lateralis tendon','Y','2025-10-23 00:00:00'),(105697,11,'XA9RD2','Vastus medialis muscle','Y','2025-10-23 00:00:00'),(105698,11,'XA6RK3','Vastus medialis tendon','Y','2025-10-23 00:00:00'),(105699,11,'LD2F.11','VATER association','Y','2025-10-23 00:00:00'),(105700,11,'XM7S28','Vecuronium','Y','2025-10-23 00:00:00'),(105701,11,'XM5MC2','Vedolizumab','Y','2025-10-23 00:00:00'),(105702,11,'XM19Y0','Vegetable extract, astringent','Y','2025-10-23 00:00:00'),(105703,11,'XE954','Vehicle doors, not elsewhere classified','Y','2025-10-23 00:00:00'),(105704,11,'XE42A','Vehicle driver injured in transport related event','Y','2025-10-23 00:00:00'),(105705,11,'XE5X3','Vehicle occupant not otherwise specified','Y','2025-10-23 00:00:00'),(105706,11,'XE5YL','Vehicle out of control without mention of collision with another vehicle or fixed object','Y','2025-10-23 00:00:00'),(105707,11,'XE9K8','Vehicle overturned without counterpart','Y','2025-10-23 00:00:00'),(105708,11,'XE3KY','Vehicle parked at the side of a road or in a parking lot as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(105709,11,'XE1LZ','Vehicle passenger injured in transport related event','Y','2025-10-23 00:00:00'),(105710,11,'XE226','Vehicle seat belts, deploying air bags','Y','2025-10-23 00:00:00'),(105711,11,'XE8CT','Vehicle window or windshield','Y','2025-10-23 00:00:00'),(105712,11,'XA22T9','Vein from the tympanic cavity','Y','2025-10-23 00:00:00'),(105713,11,'XA0RA8','Vein of abdomen','Y','2025-10-23 00:00:00'),(105714,11,'LA90.20','Vein of Galen aneurysm','Y','2025-10-23 00:00:00'),(105715,11,'XA59M2','Vein of head, face, and neck','Y','2025-10-23 00:00:00'),(105716,11,'XA76A3','Vein of lower extremity','Y','2025-10-23 00:00:00'),(105717,11,'XA26H2','Vein of pelvis','Y','2025-10-23 00:00:00'),(105718,11,'XA21F0','Vein of the ala nasi','Y','2025-10-23 00:00:00'),(105719,11,'XA73J2','Vein of the pericranium','Y','2025-10-23 00:00:00'),(105720,11,'XA9914','Vein of the pterygoid canal','Y','2025-10-23 00:00:00'),(105721,11,'XA8CT1','Vein of thorax','Y','2025-10-23 00:00:00'),(105722,11,'XA9WN7','Vein of upper extremity','Y','2025-10-23 00:00:00'),(105723,11,'XA5J49','Veins','Y','2025-10-23 00:00:00'),(105724,11,'XA1C53','Veins of stomach','Y','2025-10-23 00:00:00'),(105725,11,'XM8J61','Velaglucerase alfa','Y','2025-10-23 00:00:00'),(105726,11,'XM5U91','Velmanase alfa','Y','2025-10-23 00:00:00'),(105727,11,'XM55B8','Vemurafenib','Y','2025-10-23 00:00:00'),(105728,11,'XA60H0','Vena cava','Y','2025-10-23 00:00:00'),(105729,11,'BD71.1','Vena caval thrombosis','Y','2025-10-23 00:00:00'),(105730,11,'XA1RH4','Vena comitans of the hypoglossal nerve','Y','2025-10-23 00:00:00'),(105731,11,'XM7PT2','Venetoclax','Y','2025-10-23 00:00:00'),(105732,11,'1C8C','Venezuelan equine encephalitis','Y','2025-10-23 00:00:00'),(105733,11,'XN445','Venezuelan equine encephalitis virus','Y','2025-10-23 00:00:00'),(105734,11,'1D61.3','Venezuelan haemorrhagic fever','Y','2025-10-23 00:00:00'),(105735,11,'XM36V6','Venlafaxine','Y','2025-10-23 00:00:00'),(105736,11,'XE2PR','Venomous or toxic plant, not elsewhere classified','Y','2025-10-23 00:00:00'),(105737,11,'XE9H6','Venomous snake','Y','2025-10-23 00:00:00'),(105738,11,'JA61','Venous complications in pregnancy','Y','2025-10-23 00:00:00'),(105739,11,'JA61.Z','Venous complications in pregnancy, unspecified','Y','2025-10-23 00:00:00'),(105740,11,'JB41','Venous complications in the puerperium','Y','2025-10-23 00:00:00'),(105741,11,'JB41.Z','Venous complications in the puerperium, unspecified','Y','2025-10-23 00:00:00'),(105742,11,'XH4NS3','Venous haemangioma','Y','2025-10-23 00:00:00'),(105743,11,'XA1K34','Venous jugular arch','Y','2025-10-23 00:00:00'),(105744,11,'EF20.0','Venous lake','Y','2025-10-23 00:00:00'),(105745,11,'BD74.3','Venous leg ulcer','Y','2025-10-23 00:00:00'),(105746,11,'BD74.3Z','Venous leg ulcer, unspecified','Y','2025-10-23 00:00:00'),(105747,11,'XM3FL1','Venous sclerosing drug','Y','2025-10-23 00:00:00'),(105748,11,'XA1VJ8','Venous Sinuses','Y','2025-10-23 00:00:00'),(105749,11,'BD72','Venous thromboembolism','Y','2025-10-23 00:00:00'),(105750,11,'BD75.Y','Venous varicosities of other specified sites','Y','2025-10-23 00:00:00'),(105751,11,'BD75','Venous varicosities of sites other than lower extremity','Y','2025-10-23 00:00:00'),(105752,11,'BD75.Z','Venous varicosities of unspecified site','Y','2025-10-23 00:00:00'),(105753,11,'PK81.0','Ventilation associated with injury or harm in therapeutic use','Y','2025-10-23 00:00:00'),(105754,11,'XD9AF0','Ventilation filters, antibacterial and antiviral, moisturizer','Y','2025-10-23 00:00:00'),(105755,11,'XE7KA','Ventilation problem in device environment','Y','2025-10-23 00:00:00'),(105756,11,'XK4M','Ventral','Y','2025-10-23 00:00:00'),(105757,11,'XA2N82','Ventral body cavity','Y','2025-10-23 00:00:00'),(105758,11,'XA1V70','Ventral nerve root','Y','2025-10-23 00:00:00'),(105759,11,'XA8G34','Ventral nerve root ganglion','Y','2025-10-23 00:00:00'),(105760,11,'XA4M27','Ventral ramus','Y','2025-10-23 00:00:00'),(105761,11,'XA7TS7','Ventral spinal nerve','Y','2025-10-23 00:00:00'),(105762,11,'XA3D56','Ventral surface of penis','Y','2025-10-23 00:00:00'),(105763,11,'XA8FK4','Ventral surface of tongue','Y','2025-10-23 00:00:00'),(105764,11,'BA60.2','Ventricular aneurysm as current complication following acute myocardial infarction','Y','2025-10-23 00:00:00'),(105765,11,'BC71.1','Ventricular fibrillation','Y','2025-10-23 00:00:00'),(105766,11,'BC70','Ventricular premature depolarization','Y','2025-10-23 00:00:00'),(105767,11,'BC7Z','Ventricular rhythm disturbance, unspecified','Y','2025-10-23 00:00:00'),(105768,11,'LA88.4','Ventricular septal defect','Y','2025-10-23 00:00:00'),(105769,11,'BA60.3','Ventricular septal defect as current complication following acute myocardial infarction','Y','2025-10-23 00:00:00'),(105770,11,'LA88.42','Ventricular septal defect haemodynamically insignificant','Y','2025-10-23 00:00:00'),(105771,11,'LA88.4Z','Ventricular septal defect, unspecified','Y','2025-10-23 00:00:00'),(105772,11,'BC71','Ventricular tachyarrhythmia','Y','2025-10-23 00:00:00'),(105773,11,'BC71.Z','Ventricular tachyarrhythmia, unspecified','Y','2025-10-23 00:00:00'),(105774,11,'BC71.0','Ventricular tachycardia','Y','2025-10-23 00:00:00'),(105775,11,'MC82.0','Ventricular tachycardia and fibrillation cardiac arrest','Y','2025-10-23 00:00:00'),(105776,11,'BC71.0Z','Ventricular tachycardia, unspecified','Y','2025-10-23 00:00:00'),(105777,11,'XD5RM4','Venturi masks','Y','2025-10-23 00:00:00'),(105778,11,'XM9Q20','Veralipride','Y','2025-10-23 00:00:00'),(105779,11,'XM5GX3','Verapamil','Y','2025-10-23 00:00:00'),(105780,11,'XM48R9','Veratrine','Y','2025-10-23 00:00:00'),(105781,11,'XM8BQ9','Veratrum','Y','2025-10-23 00:00:00'),(105782,11,'XM86L8','Veratrum album plant','Y','2025-10-23 00:00:00'),(105783,11,'XM5KR7','Veratrum plant','Y','2025-10-23 00:00:00'),(105784,11,'XM9Z08','Veratrum viride plant','Y','2025-10-23 00:00:00'),(105785,11,'XM30V1','Verdigris','Y','2025-10-23 00:00:00'),(105786,11,'XA9TK2','Vermilion border of lower lip','Y','2025-10-23 00:00:00'),(105787,11,'XA8RK1','Vermilion border of upper lip','Y','2025-10-23 00:00:00'),(105788,11,'XA7H02','Vermilion of lower lip','Y','2025-10-23 00:00:00'),(105789,11,'XA75S0','Vermilion of upper lip','Y','2025-10-23 00:00:00'),(105790,11,'XM6602','Vernakalant','Y','2025-10-23 00:00:00'),(105791,11,'9A60.5','Vernal keratoconjunctivitis','Y','2025-10-23 00:00:00'),(105792,11,'XM5C18','Veroxil','Y','2025-10-23 00:00:00'),(105793,11,'XH5PM0','Verrucous carcinoma, NOS','Y','2025-10-23 00:00:00'),(105794,11,'XH23S6','Verrucous keratotic haemangioma','Y','2025-10-23 00:00:00'),(105795,11,'XH2Y10','Verrucous papilloma','Y','2025-10-23 00:00:00'),(105796,11,'2C31.0','Verrucous squamous cell carcinoma of skin','Y','2025-10-23 00:00:00'),(105797,11,'1C11.01','Verruga peruana','Y','2025-10-23 00:00:00'),(105798,11,'XM7KV3','Versenate','Y','2025-10-23 00:00:00'),(105799,11,'XA7MS2','Vertebra','Y','2025-10-23 00:00:00'),(105800,11,'XA1XP6','Vertebral artery','Y','2025-10-23 00:00:00'),(105801,11,'XA8YW7','Vertebral cavity','Y','2025-10-23 00:00:00'),(105802,11,'XA5J55','Vertebral column','Y','2025-10-23 00:00:00'),(105803,11,'XA7QR6','Vertebral vein','Y','2025-10-23 00:00:00'),(105804,11,'XM2Y24','Verteporfin','Y','2025-10-23 00:00:00'),(105805,11,'XA5BY6','Vertex of scalp','Y','2025-10-23 00:00:00'),(105806,11,'9C83.01','Vertical gaze palsy','Y','2025-10-23 00:00:00'),(105807,11,'9C80.2','Vertical or torsional strabismus','Y','2025-10-23 00:00:00'),(105808,11,'AB31.7','Vertiginous syndromes','Y','2025-10-23 00:00:00'),(105809,11,'MB48.0','Vertigo','Y','2025-10-23 00:00:00'),(105810,11,'SD22','Vertigo disorder (TM1)','Y','2025-10-23 00:00:00'),(105811,11,'MB48.00','Vertigo of central origin','Y','2025-10-23 00:00:00'),(105812,11,'MB48.0Z','Vertigo, unspecified','Y','2025-10-23 00:00:00'),(105813,11,'KA21.1','Very low birth weight of newborn','Y','2025-10-23 00:00:00'),(105814,11,'KA21.10','Very low birth weight of newborn, 1000-1249g','Y','2025-10-23 00:00:00'),(105815,11,'KA21.11','Very low birth weight of newborn, 1250-1499g','Y','2025-10-23 00:00:00'),(105816,11,'KA21.1Z','Very low birth weight of newborn, unspecified','Y','2025-10-23 00:00:00'),(105817,11,'GC01.1','Vesical fistula, not elsewhere classified','Y','2025-10-23 00:00:00'),(105818,11,'XA1KP5','Vesical nervous plexus','Y','2025-10-23 00:00:00'),(105819,11,'XA0DB7','Vesical plexus','Y','2025-10-23 00:00:00'),(105820,11,'MF50.8','Vesical tenesmus','Y','2025-10-23 00:00:00'),(105821,11,'XA7GN4','Vesical vein','Y','2025-10-23 00:00:00'),(105822,11,'GC04.17','Vesicouterine fistula with severe scar or extensive tissue loss','Y','2025-10-23 00:00:00'),(105823,11,'GC04.10','Vesicovaginal fistula','Y','2025-10-23 00:00:00'),(105824,11,'EA85.0','Vesicular dermatitis of hands and feet','Y','2025-10-23 00:00:00'),(105825,11,'XN0R6','Vesivirus','Y','2025-10-23 00:00:00'),(105826,11,'AB31.1','Vestibular migraine','Y','2025-10-23 00:00:00'),(105827,11,'XA1AL7','Vestibular nerve','Y','2025-10-23 00:00:00'),(105828,11,'AB30.0','Vestibular neuritis','Y','2025-10-23 00:00:00'),(105829,11,'9C84.2','Vestibular nystagmus','Y','2025-10-23 00:00:00'),(105830,11,'9C84.2Z','Vestibular nystagmus, unspecified','Y','2025-10-23 00:00:00'),(105831,11,'AB31.6','Vestibular paroxysmia','Y','2025-10-23 00:00:00'),(105832,11,'XA5TW5','Vestibule of mouth','Y','2025-10-23 00:00:00'),(105833,11,'XA6LY7','Vestibulocochlear nerve','Y','2025-10-23 00:00:00'),(105834,11,'XM3FP4','Vestronidase alfa','Y','2025-10-23 00:00:00'),(105835,11,'XM6MR2','Vetrabutine','Y','2025-10-23 00:00:00'),(105836,11,'XE76A','Vibration of device','Y','2025-10-23 00:00:00'),(105837,11,'XE1H3','Vibration problem with device identified','Y','2025-10-23 00:00:00'),(105838,11,'XE0FP','Vibrator component of medical device','Y','2025-10-23 00:00:00'),(105839,11,'XN8RL','Vibrio','Y','2025-10-23 00:00:00'),(105840,11,'XN7N1','Vibrio cholerae','Y','2025-10-23 00:00:00'),(105841,11,'XN8P1','Vibrio cholerae O1, biovar cholerae','Y','2025-10-23 00:00:00'),(105842,11,'XN62R','Vibrio cholerae O1, biovar eltor','Y','2025-10-23 00:00:00'),(105843,11,'XN8KD','Vibrio cholerae O139','Y','2025-10-23 00:00:00'),(105844,11,'XN1AA','Vibrio parahaemolyticus','Y','2025-10-23 00:00:00'),(105845,11,'MG50.BY','Vibrio resistant to other antibiotic','Y','2025-10-23 00:00:00'),(105846,11,'MG50.BZ','Vibrio resistant to unspecified antibiotic','Y','2025-10-23 00:00:00'),(105847,11,'XN44G','Vibrio vulnificus','Y','2025-10-23 00:00:00'),(105848,11,'PJ05','Victim of avalanche, landslide or other earth movements','Y','2025-10-23 00:00:00'),(105849,11,'PJ02','Victim of cataclysmic earth movements caused by earthquake','Y','2025-10-23 00:00:00'),(105850,11,'PJ06','Victim of cataclysmic storm','Y','2025-10-23 00:00:00'),(105851,11,'QE80','Victim of crime or terrorism','Y','2025-10-23 00:00:00'),(105852,11,'PJ01','Victim of earthquake','Y','2025-10-23 00:00:00'),(105853,11,'PJ07','Victim of flood','Y','2025-10-23 00:00:00'),(105854,11,'PJ00','Victim of lightning','Y','2025-10-23 00:00:00'),(105855,11,'PJ03','Victim of tsunami','Y','2025-10-23 00:00:00'),(105856,11,'PJ04','Victim of volcanic eruption','Y','2025-10-23 00:00:00'),(105857,11,'XM30N1','Vidarabine','Y','2025-10-23 00:00:00'),(105858,11,'XE5Y8','Video camera, camera, digital camera or accessory','Y','2025-10-23 00:00:00'),(105859,11,'XE1PK','Video recorder, decoder player','Y','2025-10-23 00:00:00'),(105860,11,'XD3JX1','Videolaryngoscopes','Y','2025-10-23 00:00:00'),(105861,11,'XM2WU4','Vietnamese centipede venom','Y','2025-10-23 00:00:00'),(105862,11,'XM5G31','Vigabatrin','Y','2025-10-23 00:00:00'),(105863,11,'XM7T91','Vilazodone','Y','2025-10-23 00:00:00'),(105864,11,'XM9867','Vildagliptin','Y','2025-10-23 00:00:00'),(105865,11,'XH95U1','Villoglandular carcinoma','Y','2025-10-23 00:00:00'),(105866,11,'XH3CU4','Villoglandular variant of endometrioid adenocarcinoma','Y','2025-10-23 00:00:00'),(105867,11,'XH0X20','Villous adenocarcinoma','Y','2025-10-23 00:00:00'),(105868,11,'XH90D6','Villous adenoma, NOS','Y','2025-10-23 00:00:00'),(105869,11,'XH0731','Villous papilloma','Y','2025-10-23 00:00:00'),(105870,11,'XM5L45','Viloxazine','Y','2025-10-23 00:00:00'),(105871,11,'XM0U21','Viltolarsen','Y','2025-10-23 00:00:00'),(105872,11,'XM5UK3','Viminol','Y','2025-10-23 00:00:00'),(105873,11,'XM9VX7','Vinbarbital','Y','2025-10-23 00:00:00'),(105874,11,'XM0BG8','Vinblastine','Y','2025-10-23 00:00:00'),(105875,11,'XM3LG1','Vinburnine','Y','2025-10-23 00:00:00'),(105876,11,'XM6137','Vinca alkaloids and analogues','Y','2025-10-23 00:00:00'),(105877,11,'XM3VH9','Vincamine','Y','2025-10-23 00:00:00'),(105878,11,'XM82R6','Vincristine','Y','2025-10-23 00:00:00'),(105879,11,'XM59U2','Vindesine','Y','2025-10-23 00:00:00'),(105880,11,'XM7Q24','Vinesthene','Y','2025-10-23 00:00:00'),(105881,11,'XM9QY3','Vinflunine','Y','2025-10-23 00:00:00'),(105882,11,'XM1Y07','Vinorelbine','Y','2025-10-23 00:00:00'),(105883,11,'XM8029','Vinpocetine','Y','2025-10-23 00:00:00'),(105884,11,'XM9DS3','Vintafolide','Y','2025-10-23 00:00:00'),(105885,11,'XM3FJ3','Vinyl acetate','Y','2025-10-23 00:00:00'),(105886,11,'XM6A87','Vinyl bromide','Y','2025-10-23 00:00:00'),(105887,11,'XM7UB3','Vinyl ether','Y','2025-10-23 00:00:00'),(105888,11,'XM6NX3','Vinylbital','Y','2025-10-23 00:00:00'),(105889,11,'XM3DX7','Vinylidene chloride','Y','2025-10-23 00:00:00'),(105890,11,'XM0GR5','Vioform topical','Y','2025-10-23 00:00:00'),(105891,11,'XM6HE3','Viomycin','Y','2025-10-23 00:00:00'),(105892,11,'XE8LD','Viper','Y','2025-10-23 00:00:00'),(105893,11,'XH72E5','Vipoma','Y','2025-10-23 00:00:00'),(105894,11,'XM3AT4','Viprynium','Y','2025-10-23 00:00:00'),(105895,11,'XM51E4','Viquidil','Y','2025-10-23 00:00:00'),(105896,11,'1D85','Viral carditis','Y','2025-10-23 00:00:00'),(105897,11,'1D85.Z','Viral carditis, unspecified','Y','2025-10-23 00:00:00'),(105898,11,'1D84','Viral conjunctivitis','Y','2025-10-23 00:00:00'),(105899,11,'1D84.Z','Viral conjunctivitis, unspecified','Y','2025-10-23 00:00:00'),(105900,11,'DA63.61','Viral duodenal ulcer','Y','2025-10-23 00:00:00'),(105901,11,'1C80','Viral encephalitis not elsewhere classified','Y','2025-10-23 00:00:00'),(105902,11,'EA0Y','Viral exanthem due to other specified virus','Y','2025-10-23 00:00:00'),(105903,11,'EA00','Viral exanthem due to unknown or unspecified agent','Y','2025-10-23 00:00:00'),(105904,11,'1D86','Viral haemorrhagic fever, not elsewhere classified','Y','2025-10-23 00:00:00'),(105905,11,'JB63.4','Viral hepatitis complicating pregnancy, childbirth or the puerperium','Y','2025-10-23 00:00:00'),(105906,11,'1E5Z','Viral hepatitis, unspecified','Y','2025-10-23 00:00:00'),(105907,11,'KA62','Viral infection in the fetus or newborn','Y','2025-10-23 00:00:00'),(105908,11,'KA62.Z','Viral infection in the fetus or newborn, unspecified','Y','2025-10-23 00:00:00'),(105909,11,'FA10.1','Viral infection of joint','Y','2025-10-23 00:00:00'),(105910,11,'1F0Z','Viral infections characterised by skin or mucous membrane lesions, unspecified','Y','2025-10-23 00:00:00'),(105911,11,'1C8Z','Viral infections of the central nervous system, unspecified','Y','2025-10-23 00:00:00'),(105912,11,'1A2Z','Viral intestinal infections, unspecified','Y','2025-10-23 00:00:00'),(105913,11,'1C8E','Viral meningitis not elsewhere classified','Y','2025-10-23 00:00:00'),(105914,11,'1C8E.Z','Viral meningitis not elsewhere classified, unspecified','Y','2025-10-23 00:00:00'),(105915,11,'1D02.1','Viral myelitis','Y','2025-10-23 00:00:00'),(105916,11,'DA25.13','Viral oesophageal ulcer','Y','2025-10-23 00:00:00'),(105917,11,'CA40.1','Viral pneumonia','Y','2025-10-23 00:00:00'),(105918,11,'CA40.1Z','Viral pneumonia, unspecified','Y','2025-10-23 00:00:00'),(105919,11,'FA12.1','Viral postinfectious arthropathies','Y','2025-10-23 00:00:00'),(105920,11,'9B72.0','Viral retinitis','Y','2025-10-23 00:00:00'),(105921,11,'9B72.0Z','Viral retinitis, unspecified','Y','2025-10-23 00:00:00'),(105922,11,'XM61M7','Viral vaccines','Y','2025-10-23 00:00:00'),(105923,11,'1E8Z','Viral warts, not elsewhere classified','Y','2025-10-23 00:00:00'),(105924,11,'XM2A60','Virginiamycin','Y','2025-10-23 00:00:00'),(105925,11,'1F54.0','Visceral leishmaniasis','Y','2025-10-23 00:00:00'),(105926,11,'XA1B59','Visceral pleura','Y','2025-10-23 00:00:00'),(105927,11,'ME0A','Visible peristalsis','Y','2025-10-23 00:00:00'),(105928,11,'XM31C8','Visine','Y','2025-10-23 00:00:00'),(105929,11,'9D90','Vision impairment including blindness','Y','2025-10-23 00:00:00'),(105930,11,'9D9Z','Vision impairment, unspecified','Y','2025-10-23 00:00:00'),(105931,11,'XM0N96','Vismodegib','Y','2025-10-23 00:00:00'),(105932,11,'XM68C7','Visnadine','Y','2025-10-23 00:00:00'),(105933,11,'XA5CF8','Visual cortex','Y','2025-10-23 00:00:00'),(105934,11,'9C84.50','Visual deprivation nystagmus','Y','2025-10-23 00:00:00'),(105935,11,'9D50','Visual discomfort','Y','2025-10-23 00:00:00'),(105936,11,'9D42.8','Visual field loss, other specified forms','Y','2025-10-23 00:00:00'),(105937,11,'9D42.0','Visual field loss, pattern not specified','Y','2025-10-23 00:00:00'),(105938,11,'MC1A','Visual floaters','Y','2025-10-23 00:00:00'),(105939,11,'MB27.27','Visual hallucinations','Y','2025-10-23 00:00:00'),(105940,11,'9D54','Visual illusions','Y','2025-10-23 00:00:00'),(105941,11,'XE1C5','Visual prompts will not clear','Y','2025-10-23 00:00:00'),(105942,11,'9D56','Visual release hallucinations','Y','2025-10-23 00:00:00'),(105943,11,'XM9258','Vitamin A concentrates','Y','2025-10-23 00:00:00'),(105944,11,'5B55','Vitamin A deficiency','Y','2025-10-23 00:00:00'),(105945,11,'5B55.1','Vitamin A deficiency with conjunctival xerosis','Y','2025-10-23 00:00:00'),(105946,11,'5B55.2','Vitamin A deficiency with conjunctival xerosis and Bitot\'s spots','Y','2025-10-23 00:00:00'),(105947,11,'5B55.4','Vitamin A deficiency with corneal ulceration or keratomalacia','Y','2025-10-23 00:00:00'),(105948,11,'5B55.3','Vitamin A deficiency with corneal xerosis','Y','2025-10-23 00:00:00'),(105949,11,'5B55.0','Vitamin A deficiency with night blindness','Y','2025-10-23 00:00:00'),(105950,11,'5B55.Y','Vitamin A deficiency with other specified manifestations','Y','2025-10-23 00:00:00'),(105951,11,'5B55.5','Vitamin A deficiency with xerophthalmic scars of cornea or blindness','Y','2025-10-23 00:00:00'),(105952,11,'5B55.Z','Vitamin A deficiency, unspecified','Y','2025-10-23 00:00:00'),(105953,11,'5B5A','Vitamin B1 deficiency','Y','2025-10-23 00:00:00'),(105954,11,'5B5A.Z','Vitamin B1 deficiency, unspecified','Y','2025-10-23 00:00:00'),(105955,11,'5B5F','Vitamin B12 deficiency','Y','2025-10-23 00:00:00'),(105956,11,'3A01.4','Vitamin B12 deficiency anaemia due to intestinal disease','Y','2025-10-23 00:00:00'),(105957,11,'3A01.3','Vitamin B12 deficiency anaemia due to intrinsic factor deficiency','Y','2025-10-23 00:00:00'),(105958,11,'3A01.2','Vitamin B12 deficiency anaemia due to low intake','Y','2025-10-23 00:00:00'),(105959,11,'5B5B','Vitamin B2 deficiency','Y','2025-10-23 00:00:00'),(105960,11,'5B5C','Vitamin B3 deficiency','Y','2025-10-23 00:00:00'),(105961,11,'5B5D','Vitamin B6 deficiency','Y','2025-10-23 00:00:00'),(105962,11,'XM2SV4','Vitamin B-complex, plain','Y','2025-10-23 00:00:00'),(105963,11,'5B56','Vitamin C deficiency','Y','2025-10-23 00:00:00'),(105964,11,'5B56.Z','Vitamin C deficiency, unspecified','Y','2025-10-23 00:00:00'),(105965,11,'XM5G71','Vitamin D','Y','2025-10-23 00:00:00'),(105966,11,'5B57','Vitamin D deficiency','Y','2025-10-23 00:00:00'),(105967,11,'5B57.1','Vitamin D deficiency osteomalacia','Y','2025-10-23 00:00:00'),(105968,11,'5B57.0','Vitamin D deficiency rickets','Y','2025-10-23 00:00:00'),(105969,11,'5B57.Z','Vitamin D deficiency, unspecified','Y','2025-10-23 00:00:00'),(105970,11,'XM5TU4','Vitamin E','Y','2025-10-23 00:00:00'),(105971,11,'5B58','Vitamin E deficiency','Y','2025-10-23 00:00:00'),(105972,11,'5B90','Vitamin excesses','Y','2025-10-23 00:00:00'),(105973,11,'XM6DJ4','Vitamin K','Y','2025-10-23 00:00:00'),(105974,11,'XM7S34','Vitamin K antagonists','Y','2025-10-23 00:00:00'),(105975,11,'5B59','Vitamin K deficiency','Y','2025-10-23 00:00:00'),(105976,11,'XM3W89','Vitamin K1','Y','2025-10-23 00:00:00'),(105977,11,'XM1YD0','Vitamin K2','Y','2025-10-23 00:00:00'),(105978,11,'XM5QM5','Vitamin ulceroprotectant','Y','2025-10-23 00:00:00'),(105979,11,'ED63.0','Vitiligo','Y','2025-10-23 00:00:00'),(105980,11,'9A06.1','Vitiligo of eyelid or periocular area','Y','2025-10-23 00:00:00'),(105981,11,'XH86B5','Vitreoretinal lymphoma','Y','2025-10-23 00:00:00'),(105982,11,'9B83','Vitreous haemorrhage','Y','2025-10-23 00:00:00'),(105983,11,'XA4HU2','Vitreous humor','Y','2025-10-23 00:00:00'),(105984,11,'9B84','Vitreous opacities, membranes or strands','Y','2025-10-23 00:00:00'),(105985,11,'9B82','Vitreous prolapse','Y','2025-10-23 00:00:00'),(105986,11,'XM2V83','Vleminckx\'s solution','Y','2025-10-23 00:00:00'),(105987,11,'XA3299','Vocal cord','Y','2025-10-23 00:00:00'),(105988,11,'XA0M12','Vocalis muscle','Y','2025-10-23 00:00:00'),(105989,11,'XA4CN7','Vocalis tendon','Y','2025-10-23 00:00:00'),(105990,11,'XM0Z09','Voclosporin','Y','2025-10-23 00:00:00'),(105991,11,'XM4QD6','Voglibose','Y','2025-10-23 00:00:00'),(105992,11,'ED63.3','Vogt-Koyanagi-Harada syndrome','Y','2025-10-23 00:00:00'),(105993,11,'VV2Z','Voice and speech functions, unspecified','Y','2025-10-23 00:00:00'),(105994,11,'MA82','Voice disturbances','Y','2025-10-23 00:00:00'),(105995,11,'MA82.Z','Voice disturbances, unspecified','Y','2025-10-23 00:00:00'),(105996,11,'VV20','Voice functions','Y','2025-10-23 00:00:00'),(105997,11,'XM4RG7','Volanesorsen','Y','2025-10-23 00:00:00'),(105998,11,'XA90B4','Volar carpal network','Y','2025-10-23 00:00:00'),(105999,11,'XA1PU7','Volar carpometacarpal ligament','Y','2025-10-23 00:00:00'),(106000,11,'XA2Y72','Volar digital vein','Y','2025-10-23 00:00:00'),(106001,11,'XA47N4','Volar intercarpal ligaments','Y','2025-10-23 00:00:00'),(106002,11,'XA1LF5','Volar intermetacarpal ligament','Y','2025-10-23 00:00:00'),(106003,11,'XA2C08','Volar interosseous vein','Y','2025-10-23 00:00:00'),(106004,11,'XA5SZ5','Volar lymphatic vessel','Y','2025-10-23 00:00:00'),(106005,11,'XA13N1','Volar metacarpal vein','Y','2025-10-23 00:00:00'),(106006,11,'XA3VN5','Volar metacarpophalangeal ligament','Y','2025-10-23 00:00:00'),(106007,11,'XA0492','Volar radiocarpal ligament','Y','2025-10-23 00:00:00'),(106008,11,'XA2940','Volar radioulnar ligament','Y','2025-10-23 00:00:00'),(106009,11,'XA8ZL6','Volar surface of forearm','Y','2025-10-23 00:00:00'),(106010,11,'XA6AR5','Volar surface of wrist','Y','2025-10-23 00:00:00'),(106011,11,'6C4B.2','Volatile inhalant dependence','Y','2025-10-23 00:00:00'),(106012,11,'6C4B.20','Volatile inhalant dependence, current use','Y','2025-10-23 00:00:00'),(106013,11,'6C4B.21','Volatile inhalant dependence, early full remission','Y','2025-10-23 00:00:00'),(106014,11,'6C4B.23','Volatile inhalant dependence, sustained full remission','Y','2025-10-23 00:00:00'),(106015,11,'6C4B.22','Volatile inhalant dependence, sustained partial remission','Y','2025-10-23 00:00:00'),(106016,11,'6C4B.2Z','Volatile inhalant dependence, unspecified','Y','2025-10-23 00:00:00'),(106017,11,'6C4B.3','Volatile inhalant intoxication','Y','2025-10-23 00:00:00'),(106018,11,'6C4B.4','Volatile inhalant withdrawal','Y','2025-10-23 00:00:00'),(106019,11,'6C4B.71','Volatile inhalant-induced anxiety disorder','Y','2025-10-23 00:00:00'),(106020,11,'6C4B.5','Volatile inhalant-induced delirium','Y','2025-10-23 00:00:00'),(106021,11,'6C4B.70','Volatile inhalant-induced mood disorder','Y','2025-10-23 00:00:00'),(106022,11,'6C4B.6','Volatile inhalant-induced psychotic disorder','Y','2025-10-23 00:00:00'),(106023,11,'XE1QQ','Volume accuracy problem','Y','2025-10-23 00:00:00'),(106024,11,'5C70','Volume depletion','Y','2025-10-23 00:00:00'),(106025,11,'5C70.Z','Volume depletion, unspecified','Y','2025-10-23 00:00:00'),(106026,11,'DB30.1','Volvulus of large intestine','Y','2025-10-23 00:00:00'),(106027,11,'DA91.1','Volvulus of small intestine','Y','2025-10-23 00:00:00'),(106028,11,'XA14T2','Vomer bone','Y','2025-10-23 00:00:00'),(106029,11,'MD90.1','Vomiting','Y','2025-10-23 00:00:00'),(106030,11,'DE10','Vomiting following gastrointestinal surgery','Y','2025-10-23 00:00:00'),(106031,11,'KD3C','Vomiting in newborn','Y','2025-10-23 00:00:00'),(106032,11,'KD3C.Z','Vomiting in newborn, unspecified','Y','2025-10-23 00:00:00'),(106033,11,'3B12','Von Willebrand disease','Y','2025-10-23 00:00:00'),(106034,11,'XM25U1','Von Willebrand factor','Y','2025-10-23 00:00:00'),(106035,11,'XM3835','Vorapaxar','Y','2025-10-23 00:00:00'),(106036,11,'XM70R4','Voriconazole','Y','2025-10-23 00:00:00'),(106037,11,'XM7R04','Vorinostat','Y','2025-10-23 00:00:00'),(106038,11,'XM6976','Vorozole','Y','2025-10-23 00:00:00'),(106039,11,'XM0EP0','Vortioxetine','Y','2025-10-23 00:00:00'),(106040,11,'XM1NF7','Vosaroxin','Y','2025-10-23 00:00:00'),(106041,11,'XM99J5','Vosoritide','Y','2025-10-23 00:00:00'),(106042,11,'XM8F45','Voxelotor','Y','2025-10-23 00:00:00'),(106043,11,'6D31','Voyeuristic disorder','Y','2025-10-23 00:00:00'),(106044,11,'XA78U5','Vulva','Y','2025-10-23 00:00:00'),(106045,11,'GA41.0','Vulval aphthosis','Y','2025-10-23 00:00:00'),(106046,11,'ED61.11','Vulval melanotic macule','Y','2025-10-23 00:00:00'),(106047,11,'GA34.00','Vulval pain','Y','2025-10-23 00:00:00'),(106048,11,'GA42.0','Vulval pruritus','Y','2025-10-23 00:00:00'),(106049,11,'BD75.2','Vulval varices','Y','2025-10-23 00:00:00'),(106050,11,'XA9GG9','Vulval vein','Y','2025-10-23 00:00:00'),(106051,11,'XA1A52','Vulval vestibule','Y','2025-10-23 00:00:00'),(106052,11,'GA13.3','Vulvar cyst','Y','2025-10-23 00:00:00'),(106053,11,'GA13.7','Vulvar haematoma','Y','2025-10-23 00:00:00'),(106054,11,'XH5FT2','Vulvar intraepithelial neoplasia, grade III','Y','2025-10-23 00:00:00'),(106055,11,'2E67.12','Vulvar intraepithelial neoplasia, HPV-independent','Y','2025-10-23 00:00:00'),(106056,11,'GA13.6','Vulvar laceration','Y','2025-10-23 00:00:00'),(106057,11,'2E67.11','Vulvar Paget disease','Y','2025-10-23 00:00:00'),(106058,11,'GA00','Vulvitis','Y','2025-10-23 00:00:00'),(106059,11,'GA34.02','Vulvodynia','Y','2025-10-23 00:00:00'),(106060,11,'1F23.10','Vulvovaginal candidosis','Y','2025-10-23 00:00:00'),(106061,11,'GA00.40','Vulvovaginal ulceration','Y','2025-10-23 00:00:00'),(106062,11,'GA00.4','Vulvovaginal ulceration and inflammation','Y','2025-10-23 00:00:00'),(106063,11,'GA00.4Z','Vulvovaginal ulceration and inflammation, unspecified','Y','2025-10-23 00:00:00'),(106064,11,'LD2H.3','Waardenburg-Shah syndrome','Y','2025-10-23 00:00:00'),(106065,11,'QB12','Waiting period for investigation or treatment other than awaiting admission to adequate facility elsewhere','Y','2025-10-23 00:00:00'),(106066,11,'QB12.Z','Waiting period for investigation or treatment other than awaiting admission to adequate facility elsewhere, unspecified','Y','2025-10-23 00:00:00'),(106067,11,'XH8GW4','Waldenstrom macroglobulinemia','Y','2025-10-23 00:00:00'),(106068,11,'XA8US7','Waldeyer ring','Y','2025-10-23 00:00:00'),(106069,11,'VW13','Walking','Y','2025-10-23 00:00:00'),(106070,11,'VD14','Walking [WHODAS]','Y','2025-10-23 00:00:00'),(106071,11,'XE0WS','Wall brick, concrete, tile','Y','2025-10-23 00:00:00'),(106072,11,'XE3GJ','Wall mud, clay, animal dung','Y','2025-10-23 00:00:00'),(106073,11,'XE4ZE','Wall or related fitting or feature','Y','2025-10-23 00:00:00'),(106074,11,'XE7CH','Wall wood','Y','2025-10-23 00:00:00'),(106075,11,'6D86.6','Wandering in dementia','Y','2025-10-23 00:00:00'),(106076,11,'DA01.02','Wandering rash of the mouth','Y','2025-10-23 00:00:00'),(106077,11,'XM8FT7','Wandering spider venom','Y','2025-10-23 00:00:00'),(106078,11,'XM86W0','Warfarin','Y','2025-10-23 00:00:00'),(106079,11,'XM8LJ0','Warfarin rodenticide','Y','2025-10-23 00:00:00'),(106080,11,'SE0Z','Warmth disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(106081,11,'SB75','Wart disorder (TM1)','Y','2025-10-23 00:00:00'),(106082,11,'1E83','Wart virus proliferation in immune-deficient states','Y','2025-10-23 00:00:00'),(106083,11,'1E82','Warts of lips or oral cavity','Y','2025-10-23 00:00:00'),(106084,11,'XH7UR7','Warty carcinoma','Y','2025-10-23 00:00:00'),(106085,11,'XH65S7','Warty dyskeratoma','Y','2025-10-23 00:00:00'),(106086,11,'XH6FU0','Warty-basaloid carcinoma','Y','2025-10-23 00:00:00'),(106087,11,'XE83A','Washer component of medical device','Y','2025-10-23 00:00:00'),(106088,11,'XE4FB','Washing machine','Y','2025-10-23 00:00:00'),(106089,11,'VW20','Washing oneself','Y','2025-10-23 00:00:00'),(106090,11,'VD20','Washing oneself [WHODAS]','Y','2025-10-23 00:00:00'),(106091,11,'XE6LT','Wasp','Y','2025-10-23 00:00:00'),(106092,11,'XM2YA4','Wasp venom','Y','2025-10-23 00:00:00'),(106093,11,'XM0U57','Waspfish venom','Y','2025-10-23 00:00:00'),(106094,11,'5B51','Wasting in infants, children or adolescents','Y','2025-10-23 00:00:00'),(106095,11,'SD71','Wasting thirst disorder (TM1)','Y','2025-10-23 00:00:00'),(106096,11,'XM1DP8','Water balance drug','Y','2025-10-23 00:00:00'),(106097,11,'XM5N49','Water distilled','Y','2025-10-23 00:00:00'),(106098,11,'XM4X82','Water gas','Y','2025-10-23 00:00:00'),(106099,11,'XM59V3','Water mocassin snake venom','Y','2025-10-23 00:00:00'),(106100,11,'XM9V59','Water purified','Y','2025-10-23 00:00:00'),(106101,11,'SF6A','Water qi intimidating the heart system pattern (TM1)','Y','2025-10-23 00:00:00'),(106102,11,'PF8Y','Water transport injury event of undetermined intent with water vessel damaged, disabled or destroyed causing other injury','Y','2025-10-23 00:00:00'),(106103,11,'PF80','Water transport injury event of undetermined intent with water vessel damaged, disabled or destroyed causing submersion or drowning','Y','2025-10-23 00:00:00'),(106104,11,'PF8Z','Water transport injury event of undetermined intent with water vessel damaged, disabled or destroyed causing unspecified injury','Y','2025-10-23 00:00:00'),(106105,11,'PF9Y','Water transport injury event of undetermined intent with water vessel not damaged, disabled or destroyed causing other injury','Y','2025-10-23 00:00:00'),(106106,11,'PF90','Water transport injury event of undetermined intent with water vessel not damaged, disabled or destroyed causing submersion or drowning','Y','2025-10-23 00:00:00'),(106107,11,'PF9Z','Water transport injury event of undetermined intent with water vessel not damaged, disabled or destroyed causing unspecified injury','Y','2025-10-23 00:00:00'),(106108,11,'PG1Z','Water transport injury event of undetermined intent, damage to water vessel unspecified','Y','2025-10-23 00:00:00'),(106109,11,'XH0A57','Water-clear cell adenocarcinoma','Y','2025-10-23 00:00:00'),(106110,11,'XH8UC1','Water-clear cell adenoma','Y','2025-10-23 00:00:00'),(106111,11,'XE27K','Watercraft as mode of transport of person injured in transport related event','Y','2025-10-23 00:00:00'),(106112,11,'1C1C.1','Waterhouse-Friderichsen syndrome','Y','2025-10-23 00:00:00'),(106113,11,'XE9XZ','Waterski','Y','2025-10-23 00:00:00'),(106114,11,'XM0KA6','Watersoluble, hepatotropic X-ray contrast media','Y','2025-10-23 00:00:00'),(106115,11,'XM7YS2','Watersoluble, nephrotropic, high osmolar X-ray contrast media','Y','2025-10-23 00:00:00'),(106116,11,'XM4AG5','Watersoluble, nephrotropic, low osmolar X-ray contrast media','Y','2025-10-23 00:00:00'),(106117,11,'XE3CC','Wave board, surfboard, paddle ski','Y','2025-10-23 00:00:00'),(106118,11,'FA35','Wear of articular bearing surface of joint prosthesis','Y','2025-10-23 00:00:00'),(106119,11,'FA35.0','Wear of articular bearing surface of joint prosthesis of hip','Y','2025-10-23 00:00:00'),(106120,11,'FA35.1','Wear of articular bearing surface of joint prosthesis of knee','Y','2025-10-23 00:00:00'),(106121,11,'FA35.2','Wear of articular bearing surface of joint prosthesis of other joint','Y','2025-10-23 00:00:00'),(106122,11,'FA35.Z','Wear of articular bearing surface of joint prosthesis of unspecified joint','Y','2025-10-23 00:00:00'),(106123,11,'XE1ZQ','Wear problem with device identified','Y','2025-10-23 00:00:00'),(106124,11,'ED73.0','Weathered hair','Y','2025-10-23 00:00:00'),(106125,11,'LB79.1','Webbed fingers','Y','2025-10-23 00:00:00'),(106126,11,'LA60','Webbed neck','Y','2025-10-23 00:00:00'),(106127,11,'LB79.3','Webbed toes','Y','2025-10-23 00:00:00'),(106128,11,'XJ6NA','Wedge fracture','Y','2025-10-23 00:00:00'),(106129,11,'ME92.0','Wedging of vertebra','Y','2025-10-23 00:00:00'),(106130,11,'XM1VW1','Weeverfish venom','Y','2025-10-23 00:00:00'),(106131,11,'XE1PW','Weld component of medical device','Y','2025-10-23 00:00:00'),(106132,11,'XE0TD','Welder, welding equipment','Y','2025-10-23 00:00:00'),(106133,11,'XE2PS','Welding mask','Y','2025-10-23 00:00:00'),(106134,11,'2B5H','Well differentiated lipomatous tumour, primary site','Y','2025-10-23 00:00:00'),(106135,11,'XH67N8','Well differentiated papillary mesothelioma','Y','2025-10-23 00:00:00'),(106136,11,'XH85T6','Well differentiated papillary mesothelioma of the pleura','Y','2025-10-23 00:00:00'),(106137,11,'XH9PN4','Well differentiated tumor of uncertain malignant potential','Y','2025-10-23 00:00:00'),(106138,11,'XM2AQ9','Welldorm','Y','2025-10-23 00:00:00'),(106139,11,'5B5A.10','Wernicke encephalopathy','Y','2025-10-23 00:00:00'),(106140,11,'9B00.3','Wernicke pupils','Y','2025-10-23 00:00:00'),(106141,11,'5B5A.1','Wernicke-Korsakoff Syndrome','Y','2025-10-23 00:00:00'),(106142,11,'5B5A.1Z','Wernicke-Korsakoff Syndrome, unspecified','Y','2025-10-23 00:00:00'),(106143,11,'XM7BF9','West African brown spitting cobra venom','Y','2025-10-23 00:00:00'),(106144,11,'XN4E1','West Nile virus','Y','2025-10-23 00:00:00'),(106145,11,'1D46','West Nile virus infection','Y','2025-10-23 00:00:00'),(106146,11,'XM5JD1','Western diamondback rattlesnake venom','Y','2025-10-23 00:00:00'),(106147,11,'1C83','Western equine encephalitis','Y','2025-10-23 00:00:00'),(106148,11,'XM1GY6','Western green mamba snake venom','Y','2025-10-23 00:00:00'),(106149,11,'XM7XU4','Western ranges taipan snake venom','Y','2025-10-23 00:00:00'),(106150,11,'5B5A.01','Wet beriberi','Y','2025-10-23 00:00:00'),(106151,11,'XE8X8','Wetsuit','Y','2025-10-23 00:00:00'),(106152,11,'MB2A.1','Wetting','Y','2025-10-23 00:00:00'),(106153,11,'XN8PC','Whataroa virus','Y','2025-10-23 00:00:00'),(106154,11,'XE6HA','Wheel component of medical device','Y','2025-10-23 00:00:00'),(106155,11,'XE293','Wheelchair','Y','2025-10-23 00:00:00'),(106156,11,'XE3XF','Wheelchair as counterpart in land transport crash','Y','2025-10-23 00:00:00'),(106157,11,'XE85A','Wheeled motor sports','Y','2025-10-23 00:00:00'),(106158,11,'XE4DA','Wheeled non-motored sports','Y','2025-10-23 00:00:00'),(106159,11,'MD11.C','Wheezing','Y','2025-10-23 00:00:00'),(106160,11,'SA81','Wheezing disorder (TM1)','Y','2025-10-23 00:00:00'),(106161,11,'MC80.00','White coat hypertension','Y','2025-10-23 00:00:00'),(106162,11,'XM6T99','White lotion (keratolytic)','Y','2025-10-23 00:00:00'),(106163,11,'8A45.20','White matter disorder due to CADASIL','Y','2025-10-23 00:00:00'),(106164,11,'8A45.30','White matter disorder due to vitamin B12 deficiency','Y','2025-10-23 00:00:00'),(106165,11,'8A45.4','White matter disorders due to certain specified systemic disease','Y','2025-10-23 00:00:00'),(106166,11,'8A45.4Z','White matter disorders due to certain specified systemic disease, unspecified','Y','2025-10-23 00:00:00'),(106167,11,'8A45.0','White matter disorders due to infections','Y','2025-10-23 00:00:00'),(106168,11,'8A45.0Z','White matter disorders due to infections, unspecified','Y','2025-10-23 00:00:00'),(106169,11,'8A45.3','White matter disorders due to nutritional deficiency','Y','2025-10-23 00:00:00'),(106170,11,'8A45.3Z','White matter disorders due to nutritional deficiency, unspecified','Y','2025-10-23 00:00:00'),(106171,11,'8A45.1','White matter disorders due to toxicity','Y','2025-10-23 00:00:00'),(106172,11,'8A45.2','White matter disorders due to vascular abnormality or ischemia','Y','2025-10-23 00:00:00'),(106173,11,'8A45.2Z','White matter disorders due to vascular abnormality or ischemia, unspecified','Y','2025-10-23 00:00:00'),(106174,11,'1F2D.2','White piedra','Y','2025-10-23 00:00:00'),(106175,11,'XM9WW6','Whitewash','Y','2025-10-23 00:00:00'),(106176,11,'XM8TU6','Whole blood (human)','Y','2025-10-23 00:00:00'),(106177,11,'1C12','Whooping cough','Y','2025-10-23 00:00:00'),(106178,11,'1C12.1','Whooping cough due to Bordetella parapertussis','Y','2025-10-23 00:00:00'),(106179,11,'1C12.0','Whooping cough due to Bordetella pertussis','Y','2025-10-23 00:00:00'),(106180,11,'1C12.Z','Whooping cough, unspecified','Y','2025-10-23 00:00:00'),(106181,11,'KD31','Wide cranial sutures of newborn','Y','2025-10-23 00:00:00'),(106182,11,'LB74.5','Wide symphysis pubis','Y','2025-10-23 00:00:00'),(106183,11,'XM7JS2','Widow spider venom','Y','2025-10-23 00:00:00'),(106184,11,'XN6KZ','Wild poliovirus type 1','Y','2025-10-23 00:00:00'),(106185,11,'XN9CF','Wild poliovirus type 2','Y','2025-10-23 00:00:00'),(106186,11,'XN97R','Wild poliovirus type 3','Y','2025-10-23 00:00:00'),(106187,11,'5C64.00','Wilson disease','Y','2025-10-23 00:00:00'),(106188,11,'SC63','Wilting disorder (TM1)','Y','2025-10-23 00:00:00'),(106189,11,'SB06.1','Wind edema disorder (TM1)','Y','2025-10-23 00:00:00'),(106190,11,'SE80','Wind factor pattern (TM1)','Y','2025-10-23 00:00:00'),(106191,11,'SC71','Wind glaucoma disorder (TM1)','Y','2025-10-23 00:00:00'),(106192,11,'SC51','Wind impediment disorder (TM1)','Y','2025-10-23 00:00:00'),(106193,11,'SD3Z','Wind stroke disorders (TM1), unspecified','Y','2025-10-23 00:00:00'),(106194,11,'SF8C','Wind-cold fettering the lung pattern (TM1)','Y','2025-10-23 00:00:00'),(106195,11,'SF8A','Wind-heat invading the lung pattern (TM1)','Y','2025-10-23 00:00:00'),(106196,11,'XE4BD','Window','Y','2025-10-23 00:00:00'),(106197,11,'XM5FV8','Window cleaning fluid, not elsewhere classified','Y','2025-10-23 00:00:00'),(106198,11,'XE99Z','Window component of medical device','Y','2025-10-23 00:00:00'),(106199,11,'XE3EA','Window covering hardware','Y','2025-10-23 00:00:00'),(106200,11,'SF15','Wind-phlegm pattern (TM1)','Y','2025-10-23 00:00:00'),(106201,11,'XE3LU','Windsurfer','Y','2025-10-23 00:00:00'),(106202,11,'XE22K','Wired communication problem with device identified','Y','2025-10-23 00:00:00'),(106203,11,'XE4YY','Wireless communication problem','Y','2025-10-23 00:00:00'),(106204,11,'XE1PD','Wireless communication problem with device identified','Y','2025-10-23 00:00:00'),(106205,11,'XE753','Wiring harness component of medical device','Y','2025-10-23 00:00:00'),(106206,11,'XM29R2','Wisteria floribunda plant','Y','2025-10-23 00:00:00'),(106207,11,'XM43H5','Wisteria plant','Y','2025-10-23 00:00:00'),(106208,11,'XM8ZH3','Wisteria sinensis plant','Y','2025-10-23 00:00:00'),(106209,11,'XM4S15','Witch hazel','Y','2025-10-23 00:00:00'),(106210,11,'6C4G.4','Withdrawal due to unknown or unspecified psychoactive substance','Y','2025-10-23 00:00:00'),(106211,11,'6C4G.40','Withdrawal due to unknown or unspecified psychoactive substance, uncomplicated','Y','2025-10-23 00:00:00'),(106212,11,'6C4G.4Z','Withdrawal due to unknown or unspecified psychoactive substance, unspecified','Y','2025-10-23 00:00:00'),(106213,11,'6C4G.41','Withdrawal due to unknown or unspecified psychoactive substance, with perceptual disturbances','Y','2025-10-23 00:00:00'),(106214,11,'6C4G.42','Withdrawal due to unknown or unspecified psychoactive substance, with seizures','Y','2025-10-23 00:00:00'),(106215,11,'6C4G.43','Withdrawal due to unknown or unspecified psychoactive, with perceptual disturbances and seizures','Y','2025-10-23 00:00:00'),(106216,11,'XC8Q','Withdrawal response to painful or noxious stimulation','Y','2025-10-23 00:00:00'),(106217,11,'KD36','Withdrawal symptoms from therapeutic use of drugs in newborn','Y','2025-10-23 00:00:00'),(106218,11,'XM2WM2','Wolf spider venom','Y','2025-10-23 00:00:00'),(106219,11,'XH2WJ5','Wolffian tumour','Y','2025-10-23 00:00:00'),(106220,11,'BC81.4','Wolff-Parkinson-White syndrome','Y','2025-10-23 00:00:00'),(106221,11,'XM86L9','Wood preservative, not elsewhere classified','Y','2025-10-23 00:00:00'),(106222,11,'XE2JN','Wood timber, board, splinter, not elsewhere classified','Y','2025-10-23 00:00:00'),(106223,11,'XM9502','Woorali','Y','2025-10-23 00:00:00'),(106224,11,'LB70.1','Wormian bones','Y','2025-10-23 00:00:00'),(106225,11,'XM4555','Wormseed, American','Y','2025-10-23 00:00:00'),(106226,11,'MB24.H','Worry','Y','2025-10-23 00:00:00'),(106227,11,'8D23','Worster-Drought syndrome','Y','2025-10-23 00:00:00'),(106228,11,'XA2J63','Wrist','Y','2025-10-23 00:00:00'),(106229,11,'XA64C3','Wrist joint','Y','2025-10-23 00:00:00'),(106230,11,'XE79Y','Wristwatch, jewellery','Y','2025-10-23 00:00:00'),(106231,11,'XN0H3','Wuchereria','Y','2025-10-23 00:00:00'),(106232,11,'XN3V2','Wuchereria bancrofti','Y','2025-10-23 00:00:00'),(106233,11,'XM4ER7','Xaliproden','Y','2025-10-23 00:00:00'),(106234,11,'XM45U9','Xamoterol','Y','2025-10-23 00:00:00'),(106235,11,'9A06.4','Xanthelasma of eyelid','Y','2025-10-23 00:00:00'),(106236,11,'XM2XU4','Xanthine derivatives','Y','2025-10-23 00:00:00'),(106237,11,'XM93H5','Xanthine diuretics','Y','2025-10-23 00:00:00'),(106238,11,'XM0122','Xanthinol nicotinate','Y','2025-10-23 00:00:00'),(106239,11,'5C55.00','Xanthinuria','Y','2025-10-23 00:00:00'),(106240,11,'EB90.24','Xanthoma due to specified disorder of lipid metabolism','Y','2025-10-23 00:00:00'),(106241,11,'XM91G7','Xantinol nicotinate','Y','2025-10-23 00:00:00'),(106242,11,'XM3UP8','Xantocillin','Y','2025-10-23 00:00:00'),(106243,11,'XN51Y','XBB','Y','2025-10-23 00:00:00'),(106244,11,'XN72A','XBB.1.5','Y','2025-10-23 00:00:00'),(106245,11,'XM8X62','Xenon','Y','2025-10-23 00:00:00'),(106246,11,'XM6Z69','Xenon (127Xe) gas','Y','2025-10-23 00:00:00'),(106247,11,'XM6EQ3','Xenon (133xe)','Y','2025-10-23 00:00:00'),(106248,11,'XM25J6','Xenysalate','Y','2025-10-23 00:00:00'),(106249,11,'LD27.1','Xeroderma pigmentosum','Y','2025-10-23 00:00:00'),(106250,11,'ED54','Xerosis cutis or asteatosis','Y','2025-10-23 00:00:00'),(106251,11,'DA02.1','Xerostomia','Y','2025-10-23 00:00:00'),(106252,11,'XM71G5','Xibornol','Y','2025-10-23 00:00:00'),(106253,11,'XM8J87','Xigris','Y','2025-10-23 00:00:00'),(106254,11,'XM2QF7','Ximelagatran','Y','2025-10-23 00:00:00'),(106255,11,'XM4U11','Xipamide','Y','2025-10-23 00:00:00'),(106256,11,'XA2RB7','Xiphoid','Y','2025-10-23 00:00:00'),(106257,11,'8B44.02','X-linked hereditary spastic paraplegia','Y','2025-10-23 00:00:00'),(106258,11,'EC20.01','X-linked ichthyosis','Y','2025-10-23 00:00:00'),(106259,11,'XM2S71','X-ray contrast media, iodinated','Y','2025-10-23 00:00:00'),(106260,11,'XM0D44','Xylene','Y','2025-10-23 00:00:00'),(106261,11,'XM7771','Xylocaine infiltration','Y','2025-10-23 00:00:00'),(106262,11,'XM18M2','Xylocaine nerve block','Y','2025-10-23 00:00:00'),(106263,11,'XM5K48','Xylocaine spinal','Y','2025-10-23 00:00:00'),(106264,11,'XM5G11','Xylocaine topical','Y','2025-10-23 00:00:00'),(106265,11,'XM8US0','Xylometazoline','Y','2025-10-23 00:00:00'),(106266,11,'XN81C','yaba monkey tumour virus','Y','2025-10-23 00:00:00'),(106267,11,'SG33','Yang heel vessel pattern (TM1)','Y','2025-10-23 00:00:00'),(106268,11,'SG35','Yang link vessel pattern (TM1)','Y','2025-10-23 00:00:00'),(106269,11,'SE70','Yang pattern (TM1)','Y','2025-10-23 00:00:00'),(106270,11,'XN0CV','Yatapox virus','Y','2025-10-23 00:00:00'),(106271,11,'MD11.D','Yawning','Y','2025-10-23 00:00:00'),(106272,11,'1C1D','Yaws','Y','2025-10-23 00:00:00'),(106273,11,'XM9FC4','Yeast','Y','2025-10-23 00:00:00'),(106274,11,'XM2W18','Yeast dried','Y','2025-10-23 00:00:00'),(106275,11,'XM8XC7','Yellow creeping leg scorpion venom','Y','2025-10-23 00:00:00'),(106276,11,'1D47','Yellow fever','Y','2025-10-23 00:00:00'),(106277,11,'XM0N24','Yellow fever vaccines','Y','2025-10-23 00:00:00'),(106278,11,'XN9S3','Yellow fever virus','Y','2025-10-23 00:00:00'),(106279,11,'XM3418','Yellow fever, live attenuated','Y','2025-10-23 00:00:00'),(106280,11,'XM6D92','Yellow jacket venom','Y','2025-10-23 00:00:00'),(106281,11,'EE11.1','Yellow nail syndrome','Y','2025-10-23 00:00:00'),(106282,11,'XM69R3','Yellow phenolphthalein','Y','2025-10-23 00:00:00'),(106283,11,'XM0LP4','Yellow phosphorus','Y','2025-10-23 00:00:00'),(106284,11,'XM3UW9','Yellow sac spider venom','Y','2025-10-23 00:00:00'),(106285,11,'XN4QG','Yersinia','Y','2025-10-23 00:00:00'),(106286,11,'XN91V','Yersinia enterocolitica','Y','2025-10-23 00:00:00'),(106287,11,'XN6QS','Yersinia pestis','Y','2025-10-23 00:00:00'),(106288,11,'SG32','Yin heel vessel pattern (TM1)','Y','2025-10-23 00:00:00'),(106289,11,'SG34','Yin link vessel pattern (TM1)','Y','2025-10-23 00:00:00'),(106290,11,'SE71','Yin pattern (TM1)','Y','2025-10-23 00:00:00'),(106291,11,'XM0075','Yohimbic acid','Y','2025-10-23 00:00:00'),(106292,11,'XM5021','Yohimbine','Y','2025-10-23 00:00:00'),(106293,11,'XH09W7','Yolk sac tumour','Y','2025-10-23 00:00:00'),(106294,11,'XH15X1','Yolk sac tumour, post pubertal type','Y','2025-10-23 00:00:00'),(106295,11,'XT15','Young Adult','Y','2025-10-23 00:00:00'),(106296,11,'CB40.1','Young syndrome','Y','2025-10-23 00:00:00'),(106297,11,'XM10B1','Yttrium (90Y) citrate colloid','Y','2025-10-23 00:00:00'),(106298,11,'XM8Z31','Yttrium (90Y) ferrihydroxide colloid','Y','2025-10-23 00:00:00'),(106299,11,'LD24.23','Yunis-Varon disease','Y','2025-10-23 00:00:00'),(106300,11,'XM0794','Zactane','Y','2025-10-23 00:00:00'),(106301,11,'XM9BZ0','Zafirlukast','Y','2025-10-23 00:00:00'),(106302,11,'XM7XQ2','Zalcitabine','Y','2025-10-23 00:00:00'),(106303,11,'XM0UU3','zaleplon','Y','2025-10-23 00:00:00'),(106304,11,'XM0JN4','Zanamivir','Y','2025-10-23 00:00:00'),(106305,11,'XM4843','Z-drugs','Y','2025-10-23 00:00:00'),(106306,11,'XM4E53','Zearalenone','Y','2025-10-23 00:00:00'),(106307,11,'XM50S2','Zeranol','Y','2025-10-23 00:00:00'),(106308,11,'XM5XN0','Ziconotide','Y','2025-10-23 00:00:00'),(106309,11,'XM9C07','Zidovudine','Y','2025-10-23 00:00:00'),(106310,11,'XM5UM7','Zidovudine and Lamivudine','Y','2025-10-23 00:00:00'),(106311,11,'XM2F89','Zidovudine, Lamivudine and Abacavir','Y','2025-10-23 00:00:00'),(106312,11,'XM0SL5','Zidovudine, Lamivudine and Nevirapine','Y','2025-10-23 00:00:00'),(106313,11,'XN1H2','Zika virus','Y','2025-10-23 00:00:00'),(106314,11,'1D48','Zika virus disease','Y','2025-10-23 00:00:00'),(106315,11,'XM6WB9','Zimeldine','Y','2025-10-23 00:00:00'),(106316,11,'XM1U95','Zinc','Y','2025-10-23 00:00:00'),(106317,11,'XM3R55','Zinc acetate','Y','2025-10-23 00:00:00'),(106318,11,'XM2B18','Zinc anti-infectives','Y','2025-10-23 00:00:00'),(106319,11,'XM4J29','Zinc antivaricose','Y','2025-10-23 00:00:00'),(106320,11,'XM40H8','Zinc chloride','Y','2025-10-23 00:00:00'),(106321,11,'XM9VY0','Zinc chloride (mouthwash)','Y','2025-10-23 00:00:00'),(106322,11,'XM3E63','Zinc chloride nonmedicinal','Y','2025-10-23 00:00:00'),(106323,11,'XM52P2','Zinc chromate','Y','2025-10-23 00:00:00'),(106324,11,'5B5K.2','Zinc deficiency','Y','2025-10-23 00:00:00'),(106325,11,'5C64.21','Zinc deficiency syndromes','Y','2025-10-23 00:00:00'),(106326,11,'5B91.1','Zinc excess','Y','2025-10-23 00:00:00'),(106327,11,'XM8H46','Zinc gelatin','Y','2025-10-23 00:00:00'),(106328,11,'XM5WL8','Zinc gluconate','Y','2025-10-23 00:00:00'),(106329,11,'XM7RG9','Zinc oxide','Y','2025-10-23 00:00:00'),(106330,11,'XM93K2','Zinc oxide nonmedicinal','Y','2025-10-23 00:00:00'),(106331,11,'XM6KL1','Zinc peroxide','Y','2025-10-23 00:00:00'),(106332,11,'XM27E8','Zinc pesticide, not elsewhere classified','Y','2025-10-23 00:00:00'),(106333,11,'XM6D77','Zinc phosphide','Y','2025-10-23 00:00:00'),(106334,11,'XM0418','Zinc protein complex','Y','2025-10-23 00:00:00'),(106335,11,'XM4NT3','Zinc stearate','Y','2025-10-23 00:00:00'),(106336,11,'XM68Z2','Zinc sulfate','Y','2025-10-23 00:00:00'),(106337,11,'XM82L3','Zinc sulfate nonmedicinal','Y','2025-10-23 00:00:00'),(106338,11,'XM8SM1','Zinc sulfate topical','Y','2025-10-23 00:00:00'),(106339,11,'XM5L28','Zinc undecylenate','Y','2025-10-23 00:00:00'),(106340,11,'XM3JA8','Zineb','Y','2025-10-23 00:00:00'),(106341,11,'XM1DU5','Zinostatin','Y','2025-10-23 00:00:00'),(106342,11,'XM9KN8','Zipeprol','Y','2025-10-23 00:00:00'),(106343,11,'XM8YM0','Ziprasidone','Y','2025-10-23 00:00:00'),(106344,11,'XM9N15','Zofenopril','Y','2025-10-23 00:00:00'),(106345,11,'XM5908','Zoledronic acid','Y','2025-10-23 00:00:00'),(106346,11,'XM9SW3','Zolimidine','Y','2025-10-23 00:00:00'),(106347,11,'5A43.1','Zollinger-Ellison syndrome','Y','2025-10-23 00:00:00'),(106348,11,'XM06P8','Zolmitriptan','Y','2025-10-23 00:00:00'),(106349,11,'XM8188','Zolpidem','Y','2025-10-23 00:00:00'),(106350,11,'XM92G8','Zomepirac','Y','2025-10-23 00:00:00'),(106351,11,'XM0SP9','Zonisamide','Y','2025-10-23 00:00:00'),(106352,11,'1D6Z','Zoonotic viral disease, virus unspecified','Y','2025-10-23 00:00:00'),(106353,11,'XN2SY','Zoophilic dermatophytes','Y','2025-10-23 00:00:00'),(106354,11,'XM8LM1','Zopiclone','Y','2025-10-23 00:00:00'),(106355,11,'XM9R95','Zorubicin','Y','2025-10-23 00:00:00'),(106356,11,'1E91','Zoster','Y','2025-10-23 00:00:00'),(106357,11,'1E91.3','Zoster with central nervous system involvement','Y','2025-10-23 00:00:00'),(106358,11,'1E91.Y','Zoster with other specified complications','Y','2025-10-23 00:00:00'),(106359,11,'1E91.0','Zoster without complications','Y','2025-10-23 00:00:00'),(106360,11,'XM1SS1','Zoster, live attenuated','Y','2025-10-23 00:00:00'),(106361,11,'1E91.Z','Zoster, unspecified','Y','2025-10-23 00:00:00'),(106362,11,'XM4EU4','Zotepine','Y','2025-10-23 00:00:00'),(106363,11,'XM7EQ6','Zovant','Y','2025-10-23 00:00:00'),(106364,11,'XM7ZQ9','Zoxazolamine','Y','2025-10-23 00:00:00'),(106365,11,'XM5DL8','Zucapsaicin','Y','2025-10-23 00:00:00'),(106366,11,'XM3MW6','Zuclopenthixol','Y','2025-10-23 00:00:00'),(106367,11,'XM52P3','ZyCov-D','Y','2025-10-23 00:00:00'),(106368,11,'XM6076','Zygadenus plant','Y','2025-10-23 00:00:00'),(106369,11,'XA8N32','Zygomatic bone','Y','2025-10-23 00:00:00'),(106370,11,'XA7JD7','Zygomatic branch of the facial nerve','Y','2025-10-23 00:00:00'),(106371,11,'XA1Q49','Zygomatic branches of the lacrimal artery','Y','2025-10-23 00:00:00'),(106372,11,'XA4DJ9','Zygomatic nerve','Y','2025-10-23 00:00:00'),(106373,11,'XA62X3','Zygomaticofacial nerve','Y','2025-10-23 00:00:00'),(106374,11,'XA9MM8','Zygomaticotemporal nerve','Y','2025-10-23 00:00:00'),(106375,11,'XA37U4','Zygomaticus major muscle','Y','2025-10-23 00:00:00'),(106376,11,'XA0XQ7','Zygomaticus major tendon','Y','2025-10-23 00:00:00'),(106377,11,'XA2AP2','Zygomaticus minor muscle','Y','2025-10-23 00:00:00'),(106378,11,'XA0SZ1','Zygomaticus minor tendon','Y','2025-10-23 00:00:00'),(163287,10,'T23.472D ','Corrosion of unspecified degree of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163288,10,'T23.472S ','Corrosion of unspecified degree of left wrist, sequela','Y','0000-00-00 00:00:00'),(163289,10,'T23.479A ','Corrosion of unspecified degree of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(163290,10,'T23.479D ','Corrosion of unspecified degree of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163291,10,'T23.479S ','Corrosion of unspecified degree of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(163292,10,'T23.491A ','Corrosion of unspecified degree of multiple sites of right wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163293,10,'T23.491D ','Corrosion of unspecified degree of multiple sites of right wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163294,10,'T23.491S ','Corrosion of unspecified degree of multiple sites of right wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163295,10,'T23.492A ','Corrosion of unspecified degree of multiple sites of left wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163296,10,'T23.492D ','Corrosion of unspecified degree of multiple sites of left wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163297,10,'T23.492S ','Corrosion of unspecified degree of multiple sites of left wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163298,10,'T23.499A ','Corrosion of unspecified degree of multiple sites of unspecified wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163299,10,'T23.499D ','Corrosion of unspecified degree of multiple sites of unspecified wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163300,10,'T23.499S ','Corrosion of unspecified degree of multiple sites of unspecified wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163301,10,'T23.501A ','Corrosion of first degree of right hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(163302,10,'T23.501D ','Corrosion of first degree of right hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(163303,10,'T23.501S ','Corrosion of first degree of right hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(163304,10,'T23.502A ','Corrosion of first degree of left hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(163305,10,'T23.502D ','Corrosion of first degree of left hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(163306,10,'T23.502S ','Corrosion of first degree of left hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(163307,10,'T23.509A ','Corrosion of first degree of unspecified hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(163308,10,'T23.509D ','Corrosion of first degree of unspecified hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(163309,10,'T23.509S ','Corrosion of first degree of unspecified hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(163310,10,'T23.511A ','Corrosion of first degree of right thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(163311,10,'T23.511D ','Corrosion of first degree of right thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163312,10,'T23.511S ','Corrosion of first degree of right thumb (nail), sequela','Y','0000-00-00 00:00:00'),(163313,10,'T23.512A ','Corrosion of first degree of left thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(163314,10,'T23.512D ','Corrosion of first degree of left thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163315,10,'T23.512S ','Corrosion of first degree of left thumb (nail), sequela','Y','0000-00-00 00:00:00'),(163316,10,'T23.519A ','Corrosion of first degree of unspecified thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(163317,10,'T23.519D ','Corrosion of first degree of unspecified thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163318,10,'T23.519S ','Corrosion of first degree of unspecified thumb (nail), sequela','Y','0000-00-00 00:00:00'),(163319,10,'T23.521A ','Corrosion of first degree of single right finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163320,10,'T23.521D ','Corrosion of first degree of single right finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163321,10,'T23.521S ','Corrosion of first degree of single right finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163322,10,'T23.522A ','Corrosion of first degree of single left finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163323,10,'T23.522D ','Corrosion of first degree of single left finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163324,10,'T23.522S ','Corrosion of first degree of single left finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163325,10,'T23.529A ','Corrosion of first degree of unspecified single finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163326,10,'T23.529D ','Corrosion of first degree of unspecified single finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163327,10,'T23.529S ','Corrosion of first degree of unspecified single finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163328,10,'T23.531A ','Corrosion of first degree of multiple right fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163329,10,'T23.531D ','Corrosion of first degree of multiple right fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163330,10,'T23.531S ','Corrosion of first degree of multiple right fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163331,10,'T23.532A ','Corrosion of first degree of multiple left fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163332,10,'T23.532D ','Corrosion of first degree of multiple left fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163333,10,'T23.532S ','Corrosion of first degree of multiple left fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163334,10,'T23.539A ','Corrosion of first degree of unspecified multiple fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163335,10,'T23.539D ','Corrosion of first degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163336,10,'T23.539S ','Corrosion of first degree of unspecified multiple fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163337,10,'T23.541A ','Corrosion of first degree of multiple right fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163338,10,'T23.541D ','Corrosion of first degree of multiple right fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163339,10,'T23.541S ','Corrosion of first degree of multiple right fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163340,10,'T23.542A ','Corrosion of first degree of multiple left fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163341,10,'T23.542D ','Corrosion of first degree of multiple left fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163342,10,'T23.542S ','Corrosion of first degree of multiple left fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163343,10,'T23.549A ','Corrosion of first degree of unspecified multiple fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163344,10,'T23.549D ','Corrosion of first degree of unspecified multiple fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163345,10,'T23.549S ','Corrosion of first degree of unspecified multiple fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163346,10,'T23.551A ','Corrosion of first degree of right palm, initial encounter','Y','0000-00-00 00:00:00'),(163347,10,'T23.551D ','Corrosion of first degree of right palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163348,10,'T23.551S ','Corrosion of first degree of right palm, sequela','Y','0000-00-00 00:00:00'),(163349,10,'T23.552A ','Corrosion of first degree of left palm, initial encounter','Y','0000-00-00 00:00:00'),(163350,10,'T23.552D ','Corrosion of first degree of left palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163351,10,'T23.552S ','Corrosion of first degree of left palm, sequela','Y','0000-00-00 00:00:00'),(163352,10,'T23.559A ','Corrosion of first degree of unspecified palm, initial encounter','Y','0000-00-00 00:00:00'),(163353,10,'T23.559D ','Corrosion of first degree of unspecified palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163354,10,'T23.559S ','Corrosion of first degree of unspecified palm, sequela','Y','0000-00-00 00:00:00'),(163355,10,'T23.561A ','Corrosion of first degree of back of right hand, initial encounter','Y','0000-00-00 00:00:00'),(163356,10,'T23.561D ','Corrosion of first degree of back of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163357,10,'T23.561S ','Corrosion of first degree of back of right hand, sequela','Y','0000-00-00 00:00:00'),(163358,10,'T23.562A ','Corrosion of first degree of back of left hand, initial encounter','Y','0000-00-00 00:00:00'),(163359,10,'T23.562D ','Corrosion of first degree of back of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163360,10,'T23.562S ','Corrosion of first degree of back of left hand, sequela','Y','0000-00-00 00:00:00'),(163361,10,'T23.569A ','Corrosion of first degree of back of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(163362,10,'T23.569D ','Corrosion of first degree of back of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163363,10,'T23.569S ','Corrosion of first degree of back of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(163364,10,'T23.571A ','Corrosion of first degree of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(163365,10,'T23.571D ','Corrosion of first degree of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163366,10,'T23.571S ','Corrosion of first degree of right wrist, sequela','Y','0000-00-00 00:00:00'),(163367,10,'T23.572A ','Corrosion of first degree of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(163368,10,'T23.572D ','Corrosion of first degree of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163369,10,'T23.572S ','Corrosion of first degree of left wrist, sequela','Y','0000-00-00 00:00:00'),(163370,10,'T23.579A ','Corrosion of first degree of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(163371,10,'T23.579D ','Corrosion of first degree of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163372,10,'T23.579S ','Corrosion of first degree of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(163373,10,'T23.591A ','Corrosion of first degree of multiple sites of right wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163374,10,'T23.591D ','Corrosion of first degree of multiple sites of right wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163375,10,'T23.591S ','Corrosion of first degree of multiple sites of right wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163376,10,'T23.592A ','Corrosion of first degree of multiple sites of left wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163377,10,'T23.592D ','Corrosion of first degree of multiple sites of left wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163378,10,'T23.592S ','Corrosion of first degree of multiple sites of left wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163379,10,'T23.599A ','Corrosion of first degree of multiple sites of unspecified wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163380,10,'T23.599D ','Corrosion of first degree of multiple sites of unspecified wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163381,10,'T23.599S ','Corrosion of first degree of multiple sites of unspecified wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163382,10,'T23.601A ','Corrosion of second degree of right hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(163383,10,'T23.601D ','Corrosion of second degree of right hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(163384,10,'T23.601S ','Corrosion of second degree of right hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(163385,10,'T23.602A ','Corrosion of second degree of left hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(163386,10,'T23.602D ','Corrosion of second degree of left hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(163387,10,'T23.602S ','Corrosion of second degree of left hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(163388,10,'T23.609A ','Corrosion of second degree of unspecified hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(163389,10,'T23.609D ','Corrosion of second degree of unspecified hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(163390,10,'T23.609S ','Corrosion of second degree of unspecified hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(163391,10,'T23.611A ','Corrosion of second degree of right thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(163392,10,'T23.611D ','Corrosion of second degree of right thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163393,10,'T23.611S ','Corrosion of second degree of right thumb (nail), sequela','Y','0000-00-00 00:00:00'),(163394,10,'T23.612A ','Corrosion of second degree of left thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(163395,10,'T23.612D ','Corrosion of second degree of left thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163396,10,'T23.612S ','Corrosion of second degree of left thumb (nail), sequela','Y','0000-00-00 00:00:00'),(163397,10,'T23.619A ','Corrosion of second degree of unspecified thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(163398,10,'T23.619D ','Corrosion of second degree of unspecified thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163399,10,'T23.619S ','Corrosion of second degree of unspecified thumb (nail), sequela','Y','0000-00-00 00:00:00'),(163400,10,'T23.621A ','Corrosion of second degree of single right finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163401,10,'T23.621D ','Corrosion of second degree of single right finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163402,10,'T23.621S ','Corrosion of second degree of single right finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163403,10,'T23.622A ','Corrosion of second degree of single left finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163404,10,'T23.622D ','Corrosion of second degree of single left finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163405,10,'T23.622S ','Corrosion of second degree of single left finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163406,10,'T23.629A ','Corrosion of second degree of unspecified single finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163407,10,'T23.629D ','Corrosion of second degree of unspecified single finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163408,10,'T23.629S ','Corrosion of second degree of unspecified single finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163409,10,'T23.631A ','Corrosion of second degree of multiple right fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163410,10,'T23.631D ','Corrosion of second degree of multiple right fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163411,10,'T23.631S ','Corrosion of second degree of multiple right fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163412,10,'T23.632A ','Corrosion of second degree of multiple left fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163413,10,'T23.632D ','Corrosion of second degree of multiple left fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163414,10,'T23.632S ','Corrosion of second degree of multiple left fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163415,10,'T23.639A ','Corrosion of second degree of unspecified multiple fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163416,10,'T23.639D ','Corrosion of second degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163417,10,'T23.639S ','Corrosion of second degree of unspecified multiple fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163418,10,'T23.641A ','Corrosion of second degree of multiple right fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163419,10,'T23.641D ','Corrosion of second degree of multiple right fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163420,10,'T23.641S ','Corrosion of second degree of multiple right fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163421,10,'T23.642A ','Corrosion of second degree of multiple left fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163422,10,'T23.642D ','Corrosion of second degree of multiple left fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163423,10,'T23.642S ','Corrosion of second degree of multiple left fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163424,10,'T23.649A ','Corrosion of second degree of unspecified multiple fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163425,10,'T23.649D ','Corrosion of second degree of unspecified multiple fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163426,10,'T23.649S ','Corrosion of second degree of unspecified multiple fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163427,10,'T23.651A ','Corrosion of second degree of right palm, initial encounter','Y','0000-00-00 00:00:00'),(163428,10,'T23.651D ','Corrosion of second degree of right palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163429,10,'T23.651S ','Corrosion of second degree of right palm, sequela','Y','0000-00-00 00:00:00'),(163430,10,'T23.652A ','Corrosion of second degree of left palm, initial encounter','Y','0000-00-00 00:00:00'),(163431,10,'T23.652D ','Corrosion of second degree of left palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163432,10,'T23.652S ','Corrosion of second degree of left palm, sequela','Y','0000-00-00 00:00:00'),(163433,10,'T23.659A ','Corrosion of second degree of unspecified palm, initial encounter','Y','0000-00-00 00:00:00'),(163434,10,'T23.659D ','Corrosion of second degree of unspecified palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163435,10,'T23.659S ','Corrosion of second degree of unspecified palm, sequela','Y','0000-00-00 00:00:00'),(163436,10,'T23.661A ','Corrosion of second degree back of right hand, initial encounter','Y','0000-00-00 00:00:00'),(163437,10,'T23.661D ','Corrosion of second degree back of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163438,10,'T23.661S ','Corrosion of second degree back of right hand, sequela','Y','0000-00-00 00:00:00'),(163439,10,'T23.662A ','Corrosion of second degree back of left hand, initial encounter','Y','0000-00-00 00:00:00'),(163440,10,'T23.662D ','Corrosion of second degree back of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163441,10,'T23.662S ','Corrosion of second degree back of left hand, sequela','Y','0000-00-00 00:00:00'),(163442,10,'T23.669A ','Corrosion of second degree back of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(163443,10,'T23.669D ','Corrosion of second degree back of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163444,10,'T23.669S ','Corrosion of second degree back of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(163445,10,'T23.671A ','Corrosion of second degree of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(163446,10,'T23.671D ','Corrosion of second degree of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163447,10,'T23.671S ','Corrosion of second degree of right wrist, sequela','Y','0000-00-00 00:00:00'),(163448,10,'T23.672A ','Corrosion of second degree of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(163449,10,'T23.672D ','Corrosion of second degree of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163450,10,'T23.672S ','Corrosion of second degree of left wrist, sequela','Y','0000-00-00 00:00:00'),(163451,10,'T23.679A ','Corrosion of second degree of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(163452,10,'T23.679D ','Corrosion of second degree of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163453,10,'T23.679S ','Corrosion of second degree of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(163454,10,'T23.691A ','Corrosion of second degree of multiple sites of right wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163455,10,'T23.691D ','Corrosion of second degree of multiple sites of right wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163456,10,'T23.691S ','Corrosion of second degree of multiple sites of right wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163457,10,'T23.692A ','Corrosion of second degree of multiple sites of left wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163458,10,'T23.692D ','Corrosion of second degree of multiple sites of left wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163459,10,'T23.692S ','Corrosion of second degree of multiple sites of left wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163460,10,'T23.699A ','Corrosion of second degree of multiple sites of unspecified wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163461,10,'T23.699D ','Corrosion of second degree of multiple sites of unspecified wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163462,10,'T23.699S ','Corrosion of second degree of multiple sites of unspecified wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163463,10,'T23.701A ','Corrosion of third degree of right hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(163464,10,'T23.701D ','Corrosion of third degree of right hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(163465,10,'T23.701S ','Corrosion of third degree of right hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(163466,10,'T23.702A ','Corrosion of third degree of left hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(163467,10,'T23.702D ','Corrosion of third degree of left hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(163468,10,'T23.702S ','Corrosion of third degree of left hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(163469,10,'T23.709A ','Corrosion of third degree of unspecified hand, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(163470,10,'T23.709D ','Corrosion of third degree of unspecified hand, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(163471,10,'T23.709S ','Corrosion of third degree of unspecified hand, unspecified site, sequela','Y','0000-00-00 00:00:00'),(163472,10,'T23.711A ','Corrosion of third degree of right thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(163473,10,'T23.711D ','Corrosion of third degree of right thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163474,10,'T23.711S ','Corrosion of third degree of right thumb (nail), sequela','Y','0000-00-00 00:00:00'),(163475,10,'T23.712A ','Corrosion of third degree of left thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(163476,10,'T23.712D ','Corrosion of third degree of left thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163477,10,'T23.712S ','Corrosion of third degree of left thumb (nail), sequela','Y','0000-00-00 00:00:00'),(163478,10,'T23.719A ','Corrosion of third degree of unspecified thumb (nail), initial encounter','Y','0000-00-00 00:00:00'),(163479,10,'T23.719D ','Corrosion of third degree of unspecified thumb (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163480,10,'T23.719S ','Corrosion of third degree of unspecified thumb (nail), sequela','Y','0000-00-00 00:00:00'),(163481,10,'T23.721A ','Corrosion of third degree of single right finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163482,10,'T23.721D ','Corrosion of third degree of single right finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163483,10,'T23.721S ','Corrosion of third degree of single right finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163484,10,'T23.722A ','Corrosion of third degree of single left finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163485,10,'T23.722D ','Corrosion of third degree of single left finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163486,10,'T23.722S ','Corrosion of third degree of single left finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163487,10,'T23.729A ','Corrosion of third degree of unspecified single finger (nail) except thumb, initial encounter','Y','0000-00-00 00:00:00'),(163488,10,'T23.729D ','Corrosion of third degree of unspecified single finger (nail) except thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163489,10,'T23.729S ','Corrosion of third degree of unspecified single finger (nail) except thumb, sequela','Y','0000-00-00 00:00:00'),(163490,10,'T23.731A ','Corrosion of third degree of multiple right fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163491,10,'T23.731D ','Corrosion of third degree of multiple right fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163492,10,'T23.731S ','Corrosion of third degree of multiple right fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163493,10,'T23.732A ','Corrosion of third degree of multiple left fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163494,10,'T23.732D ','Corrosion of third degree of multiple left fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163495,10,'T23.732S ','Corrosion of third degree of multiple left fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163496,10,'T23.739A ','Corrosion of third degree of unspecified multiple fingers (nail), not including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163497,10,'T23.739D ','Corrosion of third degree of unspecified multiple fingers (nail), not including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163498,10,'T23.739S ','Corrosion of third degree of unspecified multiple fingers (nail), not including thumb, sequela','Y','0000-00-00 00:00:00'),(163499,10,'T23.741A ','Corrosion of third degree of multiple right fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163500,10,'T23.741D ','Corrosion of third degree of multiple right fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163501,10,'T23.741S ','Corrosion of third degree of multiple right fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163502,10,'T23.742A ','Corrosion of third degree of multiple left fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163503,10,'T23.742D ','Corrosion of third degree of multiple left fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163504,10,'T23.742S ','Corrosion of third degree of multiple left fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163505,10,'T23.749A ','Corrosion of third degree of unspecified multiple fingers (nail), including thumb, initial encounter','Y','0000-00-00 00:00:00'),(163506,10,'T23.749D ','Corrosion of third degree of unspecified multiple fingers (nail), including thumb, subsequent encounter','Y','0000-00-00 00:00:00'),(163507,10,'T23.749S ','Corrosion of third degree of unspecified multiple fingers (nail), including thumb, sequela','Y','0000-00-00 00:00:00'),(163508,10,'T23.751A ','Corrosion of third degree of right palm, initial encounter','Y','0000-00-00 00:00:00'),(163509,10,'T23.751D ','Corrosion of third degree of right palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163510,10,'T23.751S ','Corrosion of third degree of right palm, sequela','Y','0000-00-00 00:00:00'),(163511,10,'T23.752A ','Corrosion of third degree of left palm, initial encounter','Y','0000-00-00 00:00:00'),(163512,10,'T23.752D ','Corrosion of third degree of left palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163513,10,'T23.752S ','Corrosion of third degree of left palm, sequela','Y','0000-00-00 00:00:00'),(163514,10,'T23.759A ','Corrosion of third degree of unspecified palm, initial encounter','Y','0000-00-00 00:00:00'),(163515,10,'T23.759D ','Corrosion of third degree of unspecified palm, subsequent encounter','Y','0000-00-00 00:00:00'),(163516,10,'T23.759S ','Corrosion of third degree of unspecified palm, sequela','Y','0000-00-00 00:00:00'),(163517,10,'T23.761A ','Corrosion of third degree of back of right hand, initial encounter','Y','0000-00-00 00:00:00'),(163518,10,'T23.761D ','Corrosion of third degree of back of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163519,10,'T23.761S ','Corrosion of third degree of back of right hand, sequela','Y','0000-00-00 00:00:00'),(163520,10,'T23.762A ','Corrosion of third degree of back of left hand, initial encounter','Y','0000-00-00 00:00:00'),(163521,10,'T23.762D ','Corrosion of third degree of back of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163522,10,'T23.762S ','Corrosion of third degree of back of left hand, sequela','Y','0000-00-00 00:00:00'),(163523,10,'T23.769A ','Corrosion of third degree back of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(163524,10,'T23.769D ','Corrosion of third degree back of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163525,10,'T23.769S ','Corrosion of third degree back of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(163526,10,'T23.771A ','Corrosion of third degree of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(163527,10,'T23.771D ','Corrosion of third degree of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163528,10,'T23.771S ','Corrosion of third degree of right wrist, sequela','Y','0000-00-00 00:00:00'),(163529,10,'T23.772A ','Corrosion of third degree of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(163530,10,'T23.772D ','Corrosion of third degree of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163531,10,'T23.772S ','Corrosion of third degree of left wrist, sequela','Y','0000-00-00 00:00:00'),(163532,10,'T23.779A ','Corrosion of third degree of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(163533,10,'T23.779D ','Corrosion of third degree of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(163534,10,'T23.779S ','Corrosion of third degree of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(163535,10,'T23.791A ','Corrosion of third degree of multiple sites of right wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163536,10,'T23.791D ','Corrosion of third degree of multiple sites of right wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163537,10,'T23.791S ','Corrosion of third degree of multiple sites of right wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163538,10,'T23.792A ','Corrosion of third degree of multiple sites of left wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163539,10,'T23.792D ','Corrosion of third degree of multiple sites of left wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163540,10,'T23.792S ','Corrosion of third degree of multiple sites of left wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163541,10,'T23.799A ','Corrosion of third degree of multiple sites of unspecified wrist and hand, initial encounter','Y','0000-00-00 00:00:00'),(163542,10,'T23.799D ','Corrosion of third degree of multiple sites of unspecified wrist and hand, subsequent encounter','Y','0000-00-00 00:00:00'),(163543,10,'T23.799S ','Corrosion of third degree of multiple sites of unspecified wrist and hand, sequela','Y','0000-00-00 00:00:00'),(163544,10,'T24.001A ','Burn of unspecified degree of unspecified site of right lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163545,10,'T24.001D ','Burn of unspecified degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163546,10,'T24.001S ','Burn of unspecified degree of unspecified site of right lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163547,10,'T24.002A ','Burn of unspecified degree of unspecified site of left lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163548,10,'T24.002D ','Burn of unspecified degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163549,10,'T24.002S ','Burn of unspecified degree of unspecified site of left lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163550,10,'T24.009A ','Burn of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163551,10,'T24.009D ','Burn of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163552,10,'T24.009S ','Burn of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163553,10,'T24.011A ','Burn of unspecified degree of right thigh, initial encounter','Y','0000-00-00 00:00:00'),(163554,10,'T24.011D ','Burn of unspecified degree of right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163555,10,'T24.011S ','Burn of unspecified degree of right thigh, sequela','Y','0000-00-00 00:00:00'),(163556,10,'T24.012A ','Burn of unspecified degree of left thigh, initial encounter','Y','0000-00-00 00:00:00'),(163557,10,'T24.012D ','Burn of unspecified degree of left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163558,10,'T24.012S ','Burn of unspecified degree of left thigh, sequela','Y','0000-00-00 00:00:00'),(163559,10,'T24.019A ','Burn of unspecified degree of unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(163560,10,'T24.019D ','Burn of unspecified degree of unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163561,10,'T24.019S ','Burn of unspecified degree of unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(163562,10,'T24.021A ','Burn of unspecified degree of right knee, initial encounter','Y','0000-00-00 00:00:00'),(163563,10,'T24.021D ','Burn of unspecified degree of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163564,10,'T24.021S ','Burn of unspecified degree of right knee, sequela','Y','0000-00-00 00:00:00'),(163565,10,'T24.022A ','Burn of unspecified degree of left knee, initial encounter','Y','0000-00-00 00:00:00'),(163566,10,'T24.022D ','Burn of unspecified degree of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163567,10,'T24.022S ','Burn of unspecified degree of left knee, sequela','Y','0000-00-00 00:00:00'),(163568,10,'T24.029A ','Burn of unspecified degree of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(163569,10,'T24.029D ','Burn of unspecified degree of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163570,10,'T24.029S ','Burn of unspecified degree of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(163571,10,'T24.031A ','Burn of unspecified degree of right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163572,10,'T24.031D ','Burn of unspecified degree of right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163573,10,'T24.031S ','Burn of unspecified degree of right lower leg, sequela','Y','0000-00-00 00:00:00'),(163574,10,'T24.032A ','Burn of unspecified degree of left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163575,10,'T24.032D ','Burn of unspecified degree of left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163576,10,'T24.032S ','Burn of unspecified degree of left lower leg, sequela','Y','0000-00-00 00:00:00'),(163577,10,'T24.039A ','Burn of unspecified degree of unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163578,10,'T24.039D ','Burn of unspecified degree of unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163579,10,'T24.039S ','Burn of unspecified degree of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(163580,10,'T24.091A ','Burn of unspecified degree of multiple sites of right lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163581,10,'T24.091D ','Burn of unspecified degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163582,10,'T24.091S ','Burn of unspecified degree of multiple sites of right lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163583,10,'T24.092A ','Burn of unspecified degree of multiple sites of left lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163584,10,'T24.092D ','Burn of unspecified degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163585,10,'T24.092S ','Burn of unspecified degree of multiple sites of left lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163586,10,'T24.099A ','Burn of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163587,10,'T24.099D ','Burn of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163588,10,'T24.099S ','Burn of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163589,10,'T24.101A ','Burn of first degree of unspecified site of right lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163590,10,'T24.101D ','Burn of first degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163591,10,'T24.101S ','Burn of first degree of unspecified site of right lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163592,10,'T24.102A ','Burn of first degree of unspecified site of left lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163593,10,'T24.102D ','Burn of first degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163594,10,'T24.102S ','Burn of first degree of unspecified site of left lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163595,10,'T24.109A ','Burn of first degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163596,10,'T24.109D ','Burn of first degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163597,10,'T24.109S ','Burn of first degree of unspecified site of unspecified lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163598,10,'T24.111A ','Burn of first degree of right thigh, initial encounter','Y','0000-00-00 00:00:00'),(163599,10,'T24.111D ','Burn of first degree of right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163600,10,'T24.111S ','Burn of first degree of right thigh, sequela','Y','0000-00-00 00:00:00'),(163601,10,'T24.112A ','Burn of first degree of left thigh, initial encounter','Y','0000-00-00 00:00:00'),(163602,10,'T24.112D ','Burn of first degree of left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163603,10,'T24.112S ','Burn of first degree of left thigh, sequela','Y','0000-00-00 00:00:00'),(163604,10,'T24.119A ','Burn of first degree of unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(163605,10,'T24.119D ','Burn of first degree of unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163606,10,'T24.119S ','Burn of first degree of unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(163607,10,'T24.121A ','Burn of first degree of right knee, initial encounter','Y','0000-00-00 00:00:00'),(163608,10,'T24.121D ','Burn of first degree of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163609,10,'T24.121S ','Burn of first degree of right knee, sequela','Y','0000-00-00 00:00:00'),(163610,10,'T24.122A ','Burn of first degree of left knee, initial encounter','Y','0000-00-00 00:00:00'),(163611,10,'T24.122D ','Burn of first degree of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163612,10,'T24.122S ','Burn of first degree of left knee, sequela','Y','0000-00-00 00:00:00'),(163613,10,'T24.129A ','Burn of first degree of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(163614,10,'T24.129D ','Burn of first degree of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163615,10,'T24.129S ','Burn of first degree of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(163616,10,'T24.131A ','Burn of first degree of right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163617,10,'T24.131D ','Burn of first degree of right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163618,10,'T24.131S ','Burn of first degree of right lower leg, sequela','Y','0000-00-00 00:00:00'),(163619,10,'T24.132A ','Burn of first degree of left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163620,10,'T24.132D ','Burn of first degree of left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163621,10,'T24.132S ','Burn of first degree of left lower leg, sequela','Y','0000-00-00 00:00:00'),(163622,10,'T24.139A ','Burn of first degree of unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163623,10,'T24.139D ','Burn of first degree of unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163624,10,'T24.139S ','Burn of first degree of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(163625,10,'T24.191A ','Burn of first degree of multiple sites of right lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163626,10,'T24.191D ','Burn of first degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163627,10,'T24.191S ','Burn of first degree of multiple sites of right lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163628,10,'T24.192A ','Burn of first degree of multiple sites of left lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163629,10,'T24.192D ','Burn of first degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163630,10,'T24.192S ','Burn of first degree of multiple sites of left lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163631,10,'T24.199A ','Burn of first degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163632,10,'T24.199D ','Burn of first degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163633,10,'T24.199S ','Burn of first degree of multiple sites of unspecified lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163634,10,'T24.201A ','Burn of second degree of unspecified site of right lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163635,10,'T24.201D ','Burn of second degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163636,10,'T24.201S ','Burn of second degree of unspecified site of right lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163637,10,'T24.202A ','Burn of second degree of unspecified site of left lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163638,10,'T24.202D ','Burn of second degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163639,10,'T24.202S ','Burn of second degree of unspecified site of left lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163640,10,'T24.209A ','Burn of second degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163641,10,'T24.209D ','Burn of second degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163642,10,'T24.209S ','Burn of second degree of unspecified site of unspecified lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163643,10,'T24.211A ','Burn of second degree of right thigh, initial encounter','Y','0000-00-00 00:00:00'),(163644,10,'T24.211D ','Burn of second degree of right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163645,10,'T24.211S ','Burn of second degree of right thigh, sequela','Y','0000-00-00 00:00:00'),(163646,10,'T24.212A ','Burn of second degree of left thigh, initial encounter','Y','0000-00-00 00:00:00'),(163647,10,'T24.212D ','Burn of second degree of left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163648,10,'T24.212S ','Burn of second degree of left thigh, sequela','Y','0000-00-00 00:00:00'),(163649,10,'T24.219A ','Burn of second degree of unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(163650,10,'T24.219D ','Burn of second degree of unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163651,10,'T24.219S ','Burn of second degree of unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(163652,10,'T24.221A ','Burn of second degree of right knee, initial encounter','Y','0000-00-00 00:00:00'),(163653,10,'T24.221D ','Burn of second degree of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163654,10,'T24.221S ','Burn of second degree of right knee, sequela','Y','0000-00-00 00:00:00'),(163655,10,'T24.222A ','Burn of second degree of left knee, initial encounter','Y','0000-00-00 00:00:00'),(163656,10,'T24.222D ','Burn of second degree of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163657,10,'T24.222S ','Burn of second degree of left knee, sequela','Y','0000-00-00 00:00:00'),(163658,10,'T24.229A ','Burn of second degree of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(163659,10,'T24.229D ','Burn of second degree of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163660,10,'T24.229S ','Burn of second degree of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(163661,10,'T24.231A ','Burn of second degree of right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163662,10,'T24.231D ','Burn of second degree of right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163663,10,'T24.231S ','Burn of second degree of right lower leg, sequela','Y','0000-00-00 00:00:00'),(163664,10,'T24.232A ','Burn of second degree of left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163665,10,'T24.232D ','Burn of second degree of left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163666,10,'T24.232S ','Burn of second degree of left lower leg, sequela','Y','0000-00-00 00:00:00'),(163667,10,'T24.239A ','Burn of second degree of unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163668,10,'T24.239D ','Burn of second degree of unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163669,10,'T24.239S ','Burn of second degree of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(163670,10,'T24.291A ','Burn of second degree of multiple sites of right lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163671,10,'T24.291D ','Burn of second degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163672,10,'T24.291S ','Burn of second degree of multiple sites of right lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163673,10,'T24.292A ','Burn of second degree of multiple sites of left lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163674,10,'T24.292D ','Burn of second degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163675,10,'T24.292S ','Burn of second degree of multiple sites of left lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163676,10,'T24.299A ','Burn of second degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163677,10,'T24.299D ','Burn of second degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163678,10,'T24.299S ','Burn of second degree of multiple sites of unspecified lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163679,10,'T24.301A ','Burn of third degree of unspecified site of right lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163680,10,'T24.301D ','Burn of third degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163681,10,'T24.301S ','Burn of third degree of unspecified site of right lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163682,10,'T24.302A ','Burn of third degree of unspecified site of left lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163683,10,'T24.302D ','Burn of third degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163684,10,'T24.302S ','Burn of third degree of unspecified site of left lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163685,10,'T24.309A ','Burn of third degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163686,10,'T24.309D ','Burn of third degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163687,10,'T24.309S ','Burn of third degree of unspecified site of unspecified lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163688,10,'T24.311A ','Burn of third degree of right thigh, initial encounter','Y','0000-00-00 00:00:00'),(163689,10,'T24.311D ','Burn of third degree of right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163690,10,'T24.311S ','Burn of third degree of right thigh, sequela','Y','0000-00-00 00:00:00'),(163691,10,'T24.312A ','Burn of third degree of left thigh, initial encounter','Y','0000-00-00 00:00:00'),(163692,10,'T24.312D ','Burn of third degree of left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163693,10,'T24.312S ','Burn of third degree of left thigh, sequela','Y','0000-00-00 00:00:00'),(163694,10,'T24.319A ','Burn of third degree of unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(163695,10,'T24.319D ','Burn of third degree of unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163696,10,'T24.319S ','Burn of third degree of unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(163697,10,'T24.321A ','Burn of third degree of right knee, initial encounter','Y','0000-00-00 00:00:00'),(163698,10,'T24.321D ','Burn of third degree of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163699,10,'T24.321S ','Burn of third degree of right knee, sequela','Y','0000-00-00 00:00:00'),(163700,10,'T24.322A ','Burn of third degree of left knee, initial encounter','Y','0000-00-00 00:00:00'),(163701,10,'T24.322D ','Burn of third degree of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163702,10,'T24.322S ','Burn of third degree of left knee, sequela','Y','0000-00-00 00:00:00'),(163703,10,'T24.329A ','Burn of third degree of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(163704,10,'T24.329D ','Burn of third degree of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163705,10,'T24.329S ','Burn of third degree of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(163706,10,'T24.331A ','Burn of third degree of right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163707,10,'T24.331D ','Burn of third degree of right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163708,10,'T24.331S ','Burn of third degree of right lower leg, sequela','Y','0000-00-00 00:00:00'),(163709,10,'T24.332A ','Burn of third degree of left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163710,10,'T24.332D ','Burn of third degree of left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163711,10,'T24.332S ','Burn of third degree of left lower leg, sequela','Y','0000-00-00 00:00:00'),(163712,10,'T24.339A ','Burn of third degree of unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163713,10,'T24.339D ','Burn of third degree of unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163714,10,'T24.339S ','Burn of third degree of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(163715,10,'T24.391A ','Burn of third degree of multiple sites of right lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163716,10,'T24.391D ','Burn of third degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163717,10,'T24.391S ','Burn of third degree of multiple sites of right lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163718,10,'T24.392A ','Burn of third degree of multiple sites of left lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163719,10,'T24.392D ','Burn of third degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163720,10,'T24.392S ','Burn of third degree of multiple sites of left lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163721,10,'T24.399A ','Burn of third degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163722,10,'T24.399D ','Burn of third degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163723,10,'T24.399S ','Burn of third degree of multiple sites of unspecified lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163724,10,'T24.401A ','Corrosion of unspecified degree of unspecified site of right lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163725,10,'T24.401D ','Corrosion of unspecified degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163726,10,'T24.401S ','Corrosion of unspecified degree of unspecified site of right lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163727,10,'T24.402A ','Corrosion of unspecified degree of unspecified site of left lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163728,10,'T24.402D ','Corrosion of unspecified degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163729,10,'T24.402S ','Corrosion of unspecified degree of unspecified site of left lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163730,10,'T24.409A ','Corrosion of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163731,10,'T24.409D ','Corrosion of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163732,10,'T24.409S ','Corrosion of unspecified degree of unspecified site of unspecified lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163733,10,'T24.411A ','Corrosion of unspecified degree of right thigh, initial encounter','Y','0000-00-00 00:00:00'),(163734,10,'T24.411D ','Corrosion of unspecified degree of right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163735,10,'T24.411S ','Corrosion of unspecified degree of right thigh, sequela','Y','0000-00-00 00:00:00'),(163736,10,'T24.412A ','Corrosion of unspecified degree of left thigh, initial encounter','Y','0000-00-00 00:00:00'),(163737,10,'T24.412D ','Corrosion of unspecified degree of left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163738,10,'T24.412S ','Corrosion of unspecified degree of left thigh, sequela','Y','0000-00-00 00:00:00'),(163739,10,'T24.419A ','Corrosion of unspecified degree of unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(163740,10,'T24.419D ','Corrosion of unspecified degree of unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163741,10,'T24.419S ','Corrosion of unspecified degree of unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(163742,10,'T24.421A ','Corrosion of unspecified degree of right knee, initial encounter','Y','0000-00-00 00:00:00'),(163743,10,'T24.421D ','Corrosion of unspecified degree of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163744,10,'T24.421S ','Corrosion of unspecified degree of right knee, sequela','Y','0000-00-00 00:00:00'),(163745,10,'T24.422A ','Corrosion of unspecified degree of left knee, initial encounter','Y','0000-00-00 00:00:00'),(163746,10,'T24.422D ','Corrosion of unspecified degree of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163747,10,'T24.422S ','Corrosion of unspecified degree of left knee, sequela','Y','0000-00-00 00:00:00'),(163748,10,'T24.429A ','Corrosion of unspecified degree of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(163749,10,'T24.429D ','Corrosion of unspecified degree of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163750,10,'T24.429S ','Corrosion of unspecified degree of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(163751,10,'T24.431A ','Corrosion of unspecified degree of right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163752,10,'T24.431D ','Corrosion of unspecified degree of right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163753,10,'T24.431S ','Corrosion of unspecified degree of right lower leg, sequela','Y','0000-00-00 00:00:00'),(163754,10,'T24.432A ','Corrosion of unspecified degree of left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163755,10,'T24.432D ','Corrosion of unspecified degree of left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163756,10,'T24.432S ','Corrosion of unspecified degree of left lower leg, sequela','Y','0000-00-00 00:00:00'),(163757,10,'T24.439A ','Corrosion of unspecified degree of unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163758,10,'T24.439D ','Corrosion of unspecified degree of unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163759,10,'T24.439S ','Corrosion of unspecified degree of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(163760,10,'T24.491A ','Corrosion of unspecified degree of multiple sites of right lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163761,10,'T24.491D ','Corrosion of unspecified degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163762,10,'T24.491S ','Corrosion of unspecified degree of multiple sites of right lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163763,10,'T24.492A ','Corrosion of unspecified degree of multiple sites of left lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163764,10,'T24.492D ','Corrosion of unspecified degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163765,10,'T24.492S ','Corrosion of unspecified degree of multiple sites of left lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163766,10,'T24.499A ','Corrosion of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163767,10,'T24.499D ','Corrosion of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163768,10,'T24.499S ','Corrosion of unspecified degree of multiple sites of unspecified lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163769,10,'T24.501A ','Corrosion of first degree of unspecified site of right lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163770,10,'T24.501D ','Corrosion of first degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163771,10,'T24.501S ','Corrosion of first degree of unspecified site of right lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163772,10,'T24.502A ','Corrosion of first degree of unspecified site of left lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163773,10,'T24.502D ','Corrosion of first degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163774,10,'T24.502S ','Corrosion of first degree of unspecified site of left lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163775,10,'T24.509A ','Corrosion of first degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163776,10,'T24.509D ','Corrosion of first degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163777,10,'T24.509S ','Corrosion of first degree of unspecified site of unspecified lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163778,10,'T24.511A ','Corrosion of first degree of right thigh, initial encounter','Y','0000-00-00 00:00:00'),(163779,10,'T24.511D ','Corrosion of first degree of right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163780,10,'T24.511S ','Corrosion of first degree of right thigh, sequela','Y','0000-00-00 00:00:00'),(163781,10,'T24.512A ','Corrosion of first degree of left thigh, initial encounter','Y','0000-00-00 00:00:00'),(163782,10,'T24.512D ','Corrosion of first degree of left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163783,10,'T24.512S ','Corrosion of first degree of left thigh, sequela','Y','0000-00-00 00:00:00'),(163784,10,'T24.519A ','Corrosion of first degree of unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(163785,10,'T24.519D ','Corrosion of first degree of unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163786,10,'T24.519S ','Corrosion of first degree of unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(163787,10,'T24.521A ','Corrosion of first degree of right knee, initial encounter','Y','0000-00-00 00:00:00'),(163788,10,'T24.521D ','Corrosion of first degree of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163789,10,'T24.521S ','Corrosion of first degree of right knee, sequela','Y','0000-00-00 00:00:00'),(163790,10,'T24.522A ','Corrosion of first degree of left knee, initial encounter','Y','0000-00-00 00:00:00'),(163791,10,'T24.522D ','Corrosion of first degree of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163792,10,'T24.522S ','Corrosion of first degree of left knee, sequela','Y','0000-00-00 00:00:00'),(163793,10,'T24.529A ','Corrosion of first degree of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(163794,10,'T24.529D ','Corrosion of first degree of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163795,10,'T24.529S ','Corrosion of first degree of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(163796,10,'T24.531A ','Corrosion of first degree of right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163797,10,'T24.531D ','Corrosion of first degree of right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163798,10,'T24.531S ','Corrosion of first degree of right lower leg, sequela','Y','0000-00-00 00:00:00'),(163799,10,'T24.532A ','Corrosion of first degree of left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163800,10,'T24.532D ','Corrosion of first degree of left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163801,10,'T24.532S ','Corrosion of first degree of left lower leg, sequela','Y','0000-00-00 00:00:00'),(163802,10,'T24.539A ','Corrosion of first degree of unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163803,10,'T24.539D ','Corrosion of first degree of unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163804,10,'T24.539S ','Corrosion of first degree of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(163805,10,'T24.591A ','Corrosion of first degree of multiple sites of right lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163806,10,'T24.591D ','Corrosion of first degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163807,10,'T24.591S ','Corrosion of first degree of multiple sites of right lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163808,10,'T24.592A ','Corrosion of first degree of multiple sites of left lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163809,10,'T24.592D ','Corrosion of first degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163810,10,'T24.592S ','Corrosion of first degree of multiple sites of left lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163811,10,'T24.599A ','Corrosion of first degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163812,10,'T24.599D ','Corrosion of first degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163813,10,'T24.599S ','Corrosion of first degree of multiple sites of unspecified lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163814,10,'T24.601A ','Corrosion of second degree of unspecified site of right lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163815,10,'T24.601D ','Corrosion of second degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163816,10,'T24.601S ','Corrosion of second degree of unspecified site of right lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163817,10,'T24.602A ','Corrosion of second degree of unspecified site of left lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163818,10,'T24.602D ','Corrosion of second degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163819,10,'T24.602S ','Corrosion of second degree of unspecified site of left lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163820,10,'T24.609A ','Corrosion of second degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163821,10,'T24.609D ','Corrosion of second degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163822,10,'T24.609S ','Corrosion of second degree of unspecified site of unspecified lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163823,10,'T24.611A ','Corrosion of second degree of right thigh, initial encounter','Y','0000-00-00 00:00:00'),(163824,10,'T24.611D ','Corrosion of second degree of right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163825,10,'T24.611S ','Corrosion of second degree of right thigh, sequela','Y','0000-00-00 00:00:00'),(163826,10,'T24.612A ','Corrosion of second degree of left thigh, initial encounter','Y','0000-00-00 00:00:00'),(163827,10,'T24.612D ','Corrosion of second degree of left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163828,10,'T24.612S ','Corrosion of second degree of left thigh, sequela','Y','0000-00-00 00:00:00'),(163829,10,'T24.619A ','Corrosion of second degree of unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(163830,10,'T24.619D ','Corrosion of second degree of unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163831,10,'T24.619S ','Corrosion of second degree of unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(163832,10,'T24.621A ','Corrosion of second degree of right knee, initial encounter','Y','0000-00-00 00:00:00'),(163833,10,'T24.621D ','Corrosion of second degree of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163834,10,'T24.621S ','Corrosion of second degree of right knee, sequela','Y','0000-00-00 00:00:00'),(163835,10,'T24.622A ','Corrosion of second degree of left knee, initial encounter','Y','0000-00-00 00:00:00'),(163836,10,'T24.622D ','Corrosion of second degree of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163837,10,'T24.622S ','Corrosion of second degree of left knee, sequela','Y','0000-00-00 00:00:00'),(163838,10,'T24.629A ','Corrosion of second degree of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(163839,10,'T24.629D ','Corrosion of second degree of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163840,10,'T24.629S ','Corrosion of second degree of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(163841,10,'T24.631A ','Corrosion of second degree of right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163842,10,'T24.631D ','Corrosion of second degree of right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163843,10,'T24.631S ','Corrosion of second degree of right lower leg, sequela','Y','0000-00-00 00:00:00'),(163844,10,'T24.632A ','Corrosion of second degree of left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163845,10,'T24.632D ','Corrosion of second degree of left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163846,10,'T24.632S ','Corrosion of second degree of left lower leg, sequela','Y','0000-00-00 00:00:00'),(163847,10,'T24.639A ','Corrosion of second degree of unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163848,10,'T24.639D ','Corrosion of second degree of unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163849,10,'T24.639S ','Corrosion of second degree of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(163850,10,'T24.691A ','Corrosion of second degree of multiple sites of right lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163851,10,'T24.691D ','Corrosion of second degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163852,10,'T24.691S ','Corrosion of second degree of multiple sites of right lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163853,10,'T24.692A ','Corrosion of second degree of multiple sites of left lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163854,10,'T24.692D ','Corrosion of second degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163855,10,'T24.692S ','Corrosion of second degree of multiple sites of left lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163856,10,'T24.699A ','Corrosion of second degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163857,10,'T24.699D ','Corrosion of second degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163858,10,'T24.699S ','Corrosion of second degree of multiple sites of unspecified lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163859,10,'T24.701A ','Corrosion of third degree of unspecified site of right lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163860,10,'T24.701D ','Corrosion of third degree of unspecified site of right lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163861,10,'T24.701S ','Corrosion of third degree of unspecified site of right lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163862,10,'T24.702A ','Corrosion of third degree of unspecified site of left lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163863,10,'T24.702D ','Corrosion of third degree of unspecified site of left lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163864,10,'T24.702S ','Corrosion of third degree of unspecified site of left lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163865,10,'T24.709A ','Corrosion of third degree of unspecified site of unspecified lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163866,10,'T24.709D ','Corrosion of third degree of unspecified site of unspecified lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163867,10,'T24.709S ','Corrosion of third degree of unspecified site of unspecified lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163868,10,'T24.711A ','Corrosion of third degree of right thigh, initial encounter','Y','0000-00-00 00:00:00'),(163869,10,'T24.711D ','Corrosion of third degree of right thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163870,10,'T24.711S ','Corrosion of third degree of right thigh, sequela','Y','0000-00-00 00:00:00'),(163871,10,'T24.712A ','Corrosion of third degree of left thigh, initial encounter','Y','0000-00-00 00:00:00'),(163872,10,'T24.712D ','Corrosion of third degree of left thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163873,10,'T24.712S ','Corrosion of third degree of left thigh, sequela','Y','0000-00-00 00:00:00'),(163874,10,'T24.719A ','Corrosion of third degree of unspecified thigh, initial encounter','Y','0000-00-00 00:00:00'),(163875,10,'T24.719D ','Corrosion of third degree of unspecified thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(163876,10,'T24.719S ','Corrosion of third degree of unspecified thigh, sequela','Y','0000-00-00 00:00:00'),(163877,10,'T24.721A ','Corrosion of third degree of right knee, initial encounter','Y','0000-00-00 00:00:00'),(163878,10,'T24.721D ','Corrosion of third degree of right knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163879,10,'T24.721S ','Corrosion of third degree of right knee, sequela','Y','0000-00-00 00:00:00'),(163880,10,'T24.722A ','Corrosion of third degree of left knee, initial encounter','Y','0000-00-00 00:00:00'),(163881,10,'T24.722D ','Corrosion of third degree of left knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163882,10,'T24.722S ','Corrosion of third degree of left knee, sequela','Y','0000-00-00 00:00:00'),(163883,10,'T24.729A ','Corrosion of third degree of unspecified knee, initial encounter','Y','0000-00-00 00:00:00'),(163884,10,'T24.729D ','Corrosion of third degree of unspecified knee, subsequent encounter','Y','0000-00-00 00:00:00'),(163885,10,'T24.729S ','Corrosion of third degree of unspecified knee, sequela','Y','0000-00-00 00:00:00'),(163886,10,'T24.731A ','Corrosion of third degree of right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163887,10,'T24.731D ','Corrosion of third degree of right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163888,10,'T24.731S ','Corrosion of third degree of right lower leg, sequela','Y','0000-00-00 00:00:00'),(163889,10,'T24.732A ','Corrosion of third degree of left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163890,10,'T24.732D ','Corrosion of third degree of left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163891,10,'T24.732S ','Corrosion of third degree of left lower leg, sequela','Y','0000-00-00 00:00:00'),(163892,10,'T24.739A ','Corrosion of third degree of unspecified lower leg, initial encounter','Y','0000-00-00 00:00:00'),(163893,10,'T24.739D ','Corrosion of third degree of unspecified lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(163894,10,'T24.739S ','Corrosion of third degree of unspecified lower leg, sequela','Y','0000-00-00 00:00:00'),(163895,10,'T24.791A ','Corrosion of third degree of multiple sites of right lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163896,10,'T24.791D ','Corrosion of third degree of multiple sites of right lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163897,10,'T24.791S ','Corrosion of third degree of multiple sites of right lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163898,10,'T24.792A ','Corrosion of third degree of multiple sites of left lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163899,10,'T24.792D ','Corrosion of third degree of multiple sites of left lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163900,10,'T24.792S ','Corrosion of third degree of multiple sites of left lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163901,10,'T24.799A ','Corrosion of third degree of multiple sites of unspecified lower limb, except ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163902,10,'T24.799D ','Corrosion of third degree of multiple sites of unspecified lower limb, except ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163903,10,'T24.799S ','Corrosion of third degree of multiple sites of unspecified lower limb, except ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163904,10,'T25.011A ','Burn of unspecified degree of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(163905,10,'T25.011D ','Burn of unspecified degree of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(163906,10,'T25.011S ','Burn of unspecified degree of right ankle, sequela','Y','0000-00-00 00:00:00'),(163907,10,'T25.012A ','Burn of unspecified degree of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(163908,10,'T25.012D ','Burn of unspecified degree of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(163909,10,'T25.012S ','Burn of unspecified degree of left ankle, sequela','Y','0000-00-00 00:00:00'),(163910,10,'T25.019A ','Burn of unspecified degree of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(163911,10,'T25.019D ','Burn of unspecified degree of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(163912,10,'T25.019S ','Burn of unspecified degree of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(163913,10,'T25.021A ','Burn of unspecified degree of right foot, initial encounter','Y','0000-00-00 00:00:00'),(163914,10,'T25.021D ','Burn of unspecified degree of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163915,10,'T25.021S ','Burn of unspecified degree of right foot, sequela','Y','0000-00-00 00:00:00'),(163916,10,'T25.022A ','Burn of unspecified degree of left foot, initial encounter','Y','0000-00-00 00:00:00'),(163917,10,'T25.022D ','Burn of unspecified degree of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163918,10,'T25.022S ','Burn of unspecified degree of left foot, sequela','Y','0000-00-00 00:00:00'),(163919,10,'T25.029A ','Burn of unspecified degree of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(163920,10,'T25.029D ','Burn of unspecified degree of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163921,10,'T25.029S ','Burn of unspecified degree of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(163922,10,'T25.031A ','Burn of unspecified degree of right toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(163923,10,'T25.031D ','Burn of unspecified degree of right toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163924,10,'T25.031S ','Burn of unspecified degree of right toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(163925,10,'T25.032A ','Burn of unspecified degree of left toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(163926,10,'T25.032D ','Burn of unspecified degree of left toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163927,10,'T25.032S ','Burn of unspecified degree of left toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(163928,10,'T25.039A ','Burn of unspecified degree of unspecified toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(163929,10,'T25.039D ','Burn of unspecified degree of unspecified toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163930,10,'T25.039S ','Burn of unspecified degree of unspecified toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(163931,10,'T25.091A ','Burn of unspecified degree of multiple sites of right ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163932,10,'T25.091D ','Burn of unspecified degree of multiple sites of right ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163933,10,'T25.091S ','Burn of unspecified degree of multiple sites of right ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163934,10,'T25.092A ','Burn of unspecified degree of multiple sites of left ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163935,10,'T25.092D ','Burn of unspecified degree of multiple sites of left ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163936,10,'T25.092S ','Burn of unspecified degree of multiple sites of left ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163937,10,'T25.099A ','Burn of unspecified degree of multiple sites of unspecified ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163938,10,'T25.099D ','Burn of unspecified degree of multiple sites of unspecified ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163939,10,'T25.099S ','Burn of unspecified degree of multiple sites of unspecified ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163940,10,'T25.111A ','Burn of first degree of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(163941,10,'T25.111D ','Burn of first degree of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(163942,10,'T25.111S ','Burn of first degree of right ankle, sequela','Y','0000-00-00 00:00:00'),(163943,10,'T25.112A ','Burn of first degree of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(163944,10,'T25.112D ','Burn of first degree of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(163945,10,'T25.112S ','Burn of first degree of left ankle, sequela','Y','0000-00-00 00:00:00'),(163946,10,'T25.119A ','Burn of first degree of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(163947,10,'T25.119D ','Burn of first degree of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(163948,10,'T25.119S ','Burn of first degree of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(163949,10,'T25.121A ','Burn of first degree of right foot, initial encounter','Y','0000-00-00 00:00:00'),(163950,10,'T25.121D ','Burn of first degree of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163951,10,'T25.121S ','Burn of first degree of right foot, sequela','Y','0000-00-00 00:00:00'),(163952,10,'T25.122A ','Burn of first degree of left foot, initial encounter','Y','0000-00-00 00:00:00'),(163953,10,'T25.122D ','Burn of first degree of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163954,10,'T25.122S ','Burn of first degree of left foot, sequela','Y','0000-00-00 00:00:00'),(163955,10,'T25.129A ','Burn of first degree of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(163956,10,'T25.129D ','Burn of first degree of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163957,10,'T25.129S ','Burn of first degree of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(163958,10,'T25.131A ','Burn of first degree of right toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(163959,10,'T25.131D ','Burn of first degree of right toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163960,10,'T25.131S ','Burn of first degree of right toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(163961,10,'T25.132A ','Burn of first degree of left toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(163962,10,'T25.132D ','Burn of first degree of left toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163963,10,'T25.132S ','Burn of first degree of left toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(163964,10,'T25.139A ','Burn of first degree of unspecified toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(163965,10,'T25.139D ','Burn of first degree of unspecified toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163966,10,'T25.139S ','Burn of first degree of unspecified toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(163967,10,'T25.191A ','Burn of first degree of multiple sites of right ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163968,10,'T25.191D ','Burn of first degree of multiple sites of right ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163969,10,'T25.191S ','Burn of first degree of multiple sites of right ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163970,10,'T25.192A ','Burn of first degree of multiple sites of left ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163971,10,'T25.192D ','Burn of first degree of multiple sites of left ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163972,10,'T25.192S ','Burn of first degree of multiple sites of left ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163973,10,'T25.199A ','Burn of first degree of multiple sites of unspecified ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(163974,10,'T25.199D ','Burn of first degree of multiple sites of unspecified ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163975,10,'T25.199S ','Burn of first degree of multiple sites of unspecified ankle and foot, sequela','Y','0000-00-00 00:00:00'),(163976,10,'T25.211A ','Burn of second degree of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(163977,10,'T25.211D ','Burn of second degree of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(163978,10,'T25.211S ','Burn of second degree of right ankle, sequela','Y','0000-00-00 00:00:00'),(163979,10,'T25.212A ','Burn of second degree of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(163980,10,'T25.212D ','Burn of second degree of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(163981,10,'T25.212S ','Burn of second degree of left ankle, sequela','Y','0000-00-00 00:00:00'),(163982,10,'T25.219A ','Burn of second degree of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(163983,10,'T25.219D ','Burn of second degree of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(163984,10,'T25.219S ','Burn of second degree of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(163985,10,'T25.221A ','Burn of second degree of right foot, initial encounter','Y','0000-00-00 00:00:00'),(163986,10,'T25.221D ','Burn of second degree of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163987,10,'T25.221S ','Burn of second degree of right foot, sequela','Y','0000-00-00 00:00:00'),(163988,10,'T25.222A ','Burn of second degree of left foot, initial encounter','Y','0000-00-00 00:00:00'),(163989,10,'T25.222D ','Burn of second degree of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163990,10,'T25.222S ','Burn of second degree of left foot, sequela','Y','0000-00-00 00:00:00'),(163991,10,'T25.229A ','Burn of second degree of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(163992,10,'T25.229D ','Burn of second degree of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(163993,10,'T25.229S ','Burn of second degree of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(163994,10,'T25.231A ','Burn of second degree of right toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(163995,10,'T25.231D ','Burn of second degree of right toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163996,10,'T25.231S ','Burn of second degree of right toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(163997,10,'T25.232A ','Burn of second degree of left toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(163998,10,'T25.232D ','Burn of second degree of left toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(163999,10,'T25.232S ','Burn of second degree of left toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(164000,10,'T25.239A ','Burn of second degree of unspecified toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(164001,10,'T25.239D ','Burn of second degree of unspecified toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(164002,10,'T25.239S ','Burn of second degree of unspecified toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(164003,10,'T25.291A ','Burn of second degree of multiple sites of right ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(164004,10,'T25.291D ','Burn of second degree of multiple sites of right ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164005,10,'T25.291S ','Burn of second degree of multiple sites of right ankle and foot, sequela','Y','0000-00-00 00:00:00'),(164006,10,'T25.292A ','Burn of second degree of multiple sites of left ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(164007,10,'T25.292D ','Burn of second degree of multiple sites of left ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164008,10,'T25.292S ','Burn of second degree of multiple sites of left ankle and foot, sequela','Y','0000-00-00 00:00:00'),(164009,10,'T25.299A ','Burn of second degree of multiple sites of unspecified ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(164010,10,'T25.299D ','Burn of second degree of multiple sites of unspecified ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164011,10,'T25.299S ','Burn of second degree of multiple sites of unspecified ankle and foot, sequela','Y','0000-00-00 00:00:00'),(164012,10,'T25.311A ','Burn of third degree of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(164013,10,'T25.311D ','Burn of third degree of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164014,10,'T25.311S ','Burn of third degree of right ankle, sequela','Y','0000-00-00 00:00:00'),(164015,10,'T25.312A ','Burn of third degree of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(164016,10,'T25.312D ','Burn of third degree of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164017,10,'T25.312S ','Burn of third degree of left ankle, sequela','Y','0000-00-00 00:00:00'),(164018,10,'T25.319A ','Burn of third degree of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(164019,10,'T25.319D ','Burn of third degree of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164020,10,'T25.319S ','Burn of third degree of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(164021,10,'T25.321A ','Burn of third degree of right foot, initial encounter','Y','0000-00-00 00:00:00'),(164022,10,'T25.321D ','Burn of third degree of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164023,10,'T25.321S ','Burn of third degree of right foot, sequela','Y','0000-00-00 00:00:00'),(164024,10,'T25.322A ','Burn of third degree of left foot, initial encounter','Y','0000-00-00 00:00:00'),(164025,10,'T25.322D ','Burn of third degree of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164026,10,'T25.322S ','Burn of third degree of left foot, sequela','Y','0000-00-00 00:00:00'),(164027,10,'T25.329A ','Burn of third degree of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(164028,10,'T25.329D ','Burn of third degree of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164029,10,'T25.329S ','Burn of third degree of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(164030,10,'T25.331A ','Burn of third degree of right toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(164031,10,'T25.331D ','Burn of third degree of right toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(164032,10,'T25.331S ','Burn of third degree of right toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(164033,10,'T25.332A ','Burn of third degree of left toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(164034,10,'T25.332D ','Burn of third degree of left toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(164035,10,'T25.332S ','Burn of third degree of left toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(164036,10,'T25.339A ','Burn of third degree of unspecified toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(164037,10,'T25.339D ','Burn of third degree of unspecified toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(164038,10,'T25.339S ','Burn of third degree of unspecified toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(164039,10,'T25.391A ','Burn of third degree of multiple sites of right ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(164040,10,'T25.391D ','Burn of third degree of multiple sites of right ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164041,10,'T25.391S ','Burn of third degree of multiple sites of right ankle and foot, sequela','Y','0000-00-00 00:00:00'),(164042,10,'T25.392A ','Burn of third degree of multiple sites of left ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(164043,10,'T25.392D ','Burn of third degree of multiple sites of left ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164044,10,'T25.392S ','Burn of third degree of multiple sites of left ankle and foot, sequela','Y','0000-00-00 00:00:00'),(164045,10,'T25.399A ','Burn of third degree of multiple sites of unspecified ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(164046,10,'T25.399D ','Burn of third degree of multiple sites of unspecified ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164047,10,'T25.399S ','Burn of third degree of multiple sites of unspecified ankle and foot, sequela','Y','0000-00-00 00:00:00'),(164048,10,'T25.411A ','Corrosion of unspecified degree of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(164049,10,'T25.411D ','Corrosion of unspecified degree of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164050,10,'T25.411S ','Corrosion of unspecified degree of right ankle, sequela','Y','0000-00-00 00:00:00'),(164051,10,'T25.412A ','Corrosion of unspecified degree of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(164052,10,'T25.412D ','Corrosion of unspecified degree of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164053,10,'T25.412S ','Corrosion of unspecified degree of left ankle, sequela','Y','0000-00-00 00:00:00'),(164054,10,'T25.419A ','Corrosion of unspecified degree of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(164055,10,'T25.419D ','Corrosion of unspecified degree of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164056,10,'T25.419S ','Corrosion of unspecified degree of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(164057,10,'T25.421A ','Corrosion of unspecified degree of right foot, initial encounter','Y','0000-00-00 00:00:00'),(164058,10,'T25.421D ','Corrosion of unspecified degree of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164059,10,'T25.421S ','Corrosion of unspecified degree of right foot, sequela','Y','0000-00-00 00:00:00'),(164060,10,'T25.422A ','Corrosion of unspecified degree of left foot, initial encounter','Y','0000-00-00 00:00:00'),(164061,10,'T25.422D ','Corrosion of unspecified degree of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164062,10,'T25.422S ','Corrosion of unspecified degree of left foot, sequela','Y','0000-00-00 00:00:00'),(164063,10,'T25.429A ','Corrosion of unspecified degree of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(164064,10,'T25.429D ','Corrosion of unspecified degree of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164065,10,'T25.429S ','Corrosion of unspecified degree of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(164066,10,'T25.431A ','Corrosion of unspecified degree of right toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(164067,10,'T25.431D ','Corrosion of unspecified degree of right toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(164068,10,'T25.431S ','Corrosion of unspecified degree of right toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(164069,10,'T25.432A ','Corrosion of unspecified degree of left toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(164070,10,'T25.432D ','Corrosion of unspecified degree of left toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(164071,10,'T25.432S ','Corrosion of unspecified degree of left toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(164072,10,'T25.439A ','Corrosion of unspecified degree of unspecified toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(164073,10,'T25.439D ','Corrosion of unspecified degree of unspecified toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(164074,10,'T25.439S ','Corrosion of unspecified degree of unspecified toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(164075,10,'T25.491A ','Corrosion of unspecified degree of multiple sites of right ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(164076,10,'T25.491D ','Corrosion of unspecified degree of multiple sites of right ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164077,10,'T25.491S ','Corrosion of unspecified degree of multiple sites of right ankle and foot, sequela','Y','0000-00-00 00:00:00'),(164078,10,'T25.492A ','Corrosion of unspecified degree of multiple sites of left ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(164079,10,'T25.492D ','Corrosion of unspecified degree of multiple sites of left ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164080,10,'T25.492S ','Corrosion of unspecified degree of multiple sites of left ankle and foot, sequela','Y','0000-00-00 00:00:00'),(164081,10,'T25.499A ','Corrosion of unspecified degree of multiple sites of unspecified ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(164082,10,'T25.499D ','Corrosion of unspecified degree of multiple sites of unspecified ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164083,10,'T25.499S ','Corrosion of unspecified degree of multiple sites of unspecified ankle and foot, sequela','Y','0000-00-00 00:00:00'),(164084,10,'T25.511A ','Corrosion of first degree of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(164085,10,'T25.511D ','Corrosion of first degree of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164086,10,'T25.511S ','Corrosion of first degree of right ankle, sequela','Y','0000-00-00 00:00:00'),(164087,10,'T25.512A ','Corrosion of first degree of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(164088,10,'T25.512D ','Corrosion of first degree of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164089,10,'T25.512S ','Corrosion of first degree of left ankle, sequela','Y','0000-00-00 00:00:00'),(164090,10,'T25.519A ','Corrosion of first degree of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(164091,10,'T25.519D ','Corrosion of first degree of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164092,10,'T25.519S ','Corrosion of first degree of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(164093,10,'T25.521A ','Corrosion of first degree of right foot, initial encounter','Y','0000-00-00 00:00:00'),(164094,10,'T25.521D ','Corrosion of first degree of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164095,10,'T25.521S ','Corrosion of first degree of right foot, sequela','Y','0000-00-00 00:00:00'),(164096,10,'T25.522A ','Corrosion of first degree of left foot, initial encounter','Y','0000-00-00 00:00:00'),(164097,10,'T25.522D ','Corrosion of first degree of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164098,10,'T25.522S ','Corrosion of first degree of left foot, sequela','Y','0000-00-00 00:00:00'),(164099,10,'T25.529A ','Corrosion of first degree of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(164100,10,'T25.529D ','Corrosion of first degree of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164101,10,'T25.529S ','Corrosion of first degree of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(164102,10,'T25.531A ','Corrosion of first degree of right toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(164103,10,'T25.531D ','Corrosion of first degree of right toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(164104,10,'T25.531S ','Corrosion of first degree of right toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(164105,10,'T25.532A ','Corrosion of first degree of left toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(164106,10,'T25.532D ','Corrosion of first degree of left toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(164107,10,'T25.532S ','Corrosion of first degree of left toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(164108,10,'T25.539A ','Corrosion of first degree of unspecified toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(164109,10,'T25.539D ','Corrosion of first degree of unspecified toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(164110,10,'T25.539S ','Corrosion of first degree of unspecified toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(164111,10,'T25.591A ','Corrosion of first degree of multiple sites of right ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(164112,10,'T25.591D ','Corrosion of first degree of multiple sites of right ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164113,10,'T25.591S ','Corrosion of first degree of multiple sites of right ankle and foot, sequela','Y','0000-00-00 00:00:00'),(164114,10,'T25.592A ','Corrosion of first degree of multiple sites of left ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(164115,10,'T25.592D ','Corrosion of first degree of multiple sites of left ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164116,10,'T25.592S ','Corrosion of first degree of multiple sites of left ankle and foot, sequela','Y','0000-00-00 00:00:00'),(164117,10,'T25.599A ','Corrosion of first degree of multiple sites of unspecified ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(164118,10,'T25.599D ','Corrosion of first degree of multiple sites of unspecified ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164119,10,'T25.599S ','Corrosion of first degree of multiple sites of unspecified ankle and foot, sequela','Y','0000-00-00 00:00:00'),(164120,10,'T25.611A ','Corrosion of second degree of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(164121,10,'T25.611D ','Corrosion of second degree of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164122,10,'T25.611S ','Corrosion of second degree of right ankle, sequela','Y','0000-00-00 00:00:00'),(164123,10,'T25.612A ','Corrosion of second degree of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(164124,10,'T25.612D ','Corrosion of second degree of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164125,10,'T25.612S ','Corrosion of second degree of left ankle, sequela','Y','0000-00-00 00:00:00'),(164126,10,'T25.619A ','Corrosion of second degree of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(164127,10,'T25.619D ','Corrosion of second degree of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164128,10,'T25.619S ','Corrosion of second degree of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(164129,10,'T25.621A ','Corrosion of second degree of right foot, initial encounter','Y','0000-00-00 00:00:00'),(164130,10,'T25.621D ','Corrosion of second degree of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164131,10,'T25.621S ','Corrosion of second degree of right foot, sequela','Y','0000-00-00 00:00:00'),(164132,10,'T25.622A ','Corrosion of second degree of left foot, initial encounter','Y','0000-00-00 00:00:00'),(164133,10,'T25.622D ','Corrosion of second degree of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164134,10,'T25.622S ','Corrosion of second degree of left foot, sequela','Y','0000-00-00 00:00:00'),(164135,10,'T25.629A ','Corrosion of second degree of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(164136,10,'T25.629D ','Corrosion of second degree of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164137,10,'T25.629S ','Corrosion of second degree of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(164138,10,'T25.631A ','Corrosion of second degree of right toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(164139,10,'T25.631D ','Corrosion of second degree of right toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(164140,10,'T25.631S ','Corrosion of second degree of right toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(164141,10,'T25.632A ','Corrosion of second degree of left toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(164142,10,'T25.632D ','Corrosion of second degree of left toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(164143,10,'T25.632S ','Corrosion of second degree of left toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(164144,10,'T25.639A ','Corrosion of second degree of unspecified toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(164145,10,'T25.639D ','Corrosion of second degree of unspecified toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(164146,10,'T25.639S ','Corrosion of second degree of unspecified toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(164147,10,'T25.691A ','Corrosion of second degree of right ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(164148,10,'T25.691D ','Corrosion of second degree of right ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164149,10,'T25.691S ','Corrosion of second degree of right ankle and foot, sequela','Y','0000-00-00 00:00:00'),(164150,10,'T25.692A ','Corrosion of second degree of left ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(164151,10,'T25.692D ','Corrosion of second degree of left ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164152,10,'T25.692S ','Corrosion of second degree of left ankle and foot, sequela','Y','0000-00-00 00:00:00'),(164153,10,'T25.699A ','Corrosion of second degree of unspecified ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(164154,10,'T25.699D ','Corrosion of second degree of unspecified ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164155,10,'T25.699S ','Corrosion of second degree of unspecified ankle and foot, sequela','Y','0000-00-00 00:00:00'),(164156,10,'T25.711A ','Corrosion of third degree of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(164157,10,'T25.711D ','Corrosion of third degree of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164158,10,'T25.711S ','Corrosion of third degree of right ankle, sequela','Y','0000-00-00 00:00:00'),(164159,10,'T25.712A ','Corrosion of third degree of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(164160,10,'T25.712D ','Corrosion of third degree of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164161,10,'T25.712S ','Corrosion of third degree of left ankle, sequela','Y','0000-00-00 00:00:00'),(164162,10,'T25.719A ','Corrosion of third degree of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(164163,10,'T25.719D ','Corrosion of third degree of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164164,10,'T25.719S ','Corrosion of third degree of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(164165,10,'T25.721A ','Corrosion of third degree of right foot, initial encounter','Y','0000-00-00 00:00:00'),(164166,10,'T25.721D ','Corrosion of third degree of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164167,10,'T25.721S ','Corrosion of third degree of right foot, sequela','Y','0000-00-00 00:00:00'),(164168,10,'T25.722A ','Corrosion of third degree of left foot, initial encounter','Y','0000-00-00 00:00:00'),(164169,10,'T25.722D ','Corrosion of third degree of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164170,10,'T25.722S ','Corrosion of third degree of left foot, sequela','Y','0000-00-00 00:00:00'),(164171,10,'T25.729A ','Corrosion of third degree of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(164172,10,'T25.729D ','Corrosion of third degree of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164173,10,'T25.729S ','Corrosion of third degree of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(164174,10,'T25.731A ','Corrosion of third degree of right toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(164175,10,'T25.731D ','Corrosion of third degree of right toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(164176,10,'T25.731S ','Corrosion of third degree of right toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(164177,10,'T25.732A ','Corrosion of third degree of left toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(164178,10,'T25.732D ','Corrosion of third degree of left toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(164179,10,'T25.732S ','Corrosion of third degree of left toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(164180,10,'T25.739A ','Corrosion of third degree of unspecified toe(s) (nail), initial encounter','Y','0000-00-00 00:00:00'),(164181,10,'T25.739D ','Corrosion of third degree of unspecified toe(s) (nail), subsequent encounter','Y','0000-00-00 00:00:00'),(164182,10,'T25.739S ','Corrosion of third degree of unspecified toe(s) (nail), sequela','Y','0000-00-00 00:00:00'),(164183,10,'T25.791A ','Corrosion of third degree of multiple sites of right ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(164184,10,'T25.791D ','Corrosion of third degree of multiple sites of right ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164185,10,'T25.791S ','Corrosion of third degree of multiple sites of right ankle and foot, sequela','Y','0000-00-00 00:00:00'),(164186,10,'T25.792A ','Corrosion of third degree of multiple sites of left ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(164187,10,'T25.792D ','Corrosion of third degree of multiple sites of left ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164188,10,'T25.792S ','Corrosion of third degree of multiple sites of left ankle and foot, sequela','Y','0000-00-00 00:00:00'),(164189,10,'T25.799A ','Corrosion of third degree of multiple sites of unspecified ankle and foot, initial encounter','Y','0000-00-00 00:00:00'),(164190,10,'T25.799D ','Corrosion of third degree of multiple sites of unspecified ankle and foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164191,10,'T25.799S ','Corrosion of third degree of multiple sites of unspecified ankle and foot, sequela','Y','0000-00-00 00:00:00'),(164192,10,'T26.00XA ','Burn of unspecified eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(164193,10,'T26.00XD ','Burn of unspecified eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(164194,10,'T26.00XS ','Burn of unspecified eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(164195,10,'T26.01XA ','Burn of right eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(164196,10,'T26.01XD ','Burn of right eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(164197,10,'T26.01XS ','Burn of right eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(164198,10,'T26.02XA ','Burn of left eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(164199,10,'T26.02XD ','Burn of left eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(164200,10,'T26.02XS ','Burn of left eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(164201,10,'T26.10XA ','Burn of cornea and conjunctival sac, unspecified eye, initial encounter','Y','0000-00-00 00:00:00'),(164202,10,'T26.10XD ','Burn of cornea and conjunctival sac, unspecified eye, subsequent encounter','Y','0000-00-00 00:00:00'),(164203,10,'T26.10XS ','Burn of cornea and conjunctival sac, unspecified eye, sequela','Y','0000-00-00 00:00:00'),(164204,10,'T26.11XA ','Burn of cornea and conjunctival sac, right eye, initial encounter','Y','0000-00-00 00:00:00'),(164205,10,'T26.11XD ','Burn of cornea and conjunctival sac, right eye, subsequent encounter','Y','0000-00-00 00:00:00'),(164206,10,'T26.11XS ','Burn of cornea and conjunctival sac, right eye, sequela','Y','0000-00-00 00:00:00'),(164207,10,'T26.12XA ','Burn of cornea and conjunctival sac, left eye, initial encounter','Y','0000-00-00 00:00:00'),(164208,10,'T26.12XD ','Burn of cornea and conjunctival sac, left eye, subsequent encounter','Y','0000-00-00 00:00:00'),(164209,10,'T26.12XS ','Burn of cornea and conjunctival sac, left eye, sequela','Y','0000-00-00 00:00:00'),(164210,10,'T26.20XA ','Burn with resulting rupture and destruction of unspecified eyeball, initial encounter','Y','0000-00-00 00:00:00'),(164211,10,'T26.20XD ','Burn with resulting rupture and destruction of unspecified eyeball, subsequent encounter','Y','0000-00-00 00:00:00'),(164212,10,'T26.20XS ','Burn with resulting rupture and destruction of unspecified eyeball, sequela','Y','0000-00-00 00:00:00'),(164213,10,'T26.21XA ','Burn with resulting rupture and destruction of right eyeball, initial encounter','Y','0000-00-00 00:00:00'),(164214,10,'T26.21XD ','Burn with resulting rupture and destruction of right eyeball, subsequent encounter','Y','0000-00-00 00:00:00'),(164215,10,'T26.21XS ','Burn with resulting rupture and destruction of right eyeball, sequela','Y','0000-00-00 00:00:00'),(164216,10,'T26.22XA ','Burn with resulting rupture and destruction of left eyeball, initial encounter','Y','0000-00-00 00:00:00'),(164217,10,'T26.22XD ','Burn with resulting rupture and destruction of left eyeball, subsequent encounter','Y','0000-00-00 00:00:00'),(164218,10,'T26.22XS ','Burn with resulting rupture and destruction of left eyeball, sequela','Y','0000-00-00 00:00:00'),(164219,10,'T26.30XA ','Burns of other specified parts of unspecified eye and adnexa, initial encounter','Y','0000-00-00 00:00:00'),(164220,10,'T26.30XD ','Burns of other specified parts of unspecified eye and adnexa, subsequent encounter','Y','0000-00-00 00:00:00'),(164221,10,'T26.30XS ','Burns of other specified parts of unspecified eye and adnexa, sequela','Y','0000-00-00 00:00:00'),(164222,10,'T26.31XA ','Burns of other specified parts of right eye and adnexa, initial encounter','Y','0000-00-00 00:00:00'),(164223,10,'T26.31XD ','Burns of other specified parts of right eye and adnexa, subsequent encounter','Y','0000-00-00 00:00:00'),(164224,10,'T26.31XS ','Burns of other specified parts of right eye and adnexa, sequela','Y','0000-00-00 00:00:00'),(164225,10,'T26.32XA ','Burns of other specified parts of left eye and adnexa, initial encounter','Y','0000-00-00 00:00:00'),(164226,10,'T26.32XD ','Burns of other specified parts of left eye and adnexa, subsequent encounter','Y','0000-00-00 00:00:00'),(164227,10,'T26.32XS ','Burns of other specified parts of left eye and adnexa, sequela','Y','0000-00-00 00:00:00'),(164228,10,'T26.40XA ','Burn of unspecified eye and adnexa, part unspecified, initial encounter','Y','0000-00-00 00:00:00'),(164229,10,'T26.40XD ','Burn of unspecified eye and adnexa, part unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(164230,10,'T26.40XS ','Burn of unspecified eye and adnexa, part unspecified, sequela','Y','0000-00-00 00:00:00'),(164231,10,'T26.41XA ','Burn of right eye and adnexa, part unspecified, initial encounter','Y','0000-00-00 00:00:00'),(164232,10,'T26.41XD ','Burn of right eye and adnexa, part unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(164233,10,'T26.41XS ','Burn of right eye and adnexa, part unspecified, sequela','Y','0000-00-00 00:00:00'),(164234,10,'T26.42XA ','Burn of left eye and adnexa, part unspecified, initial encounter','Y','0000-00-00 00:00:00'),(164235,10,'T26.42XD ','Burn of left eye and adnexa, part unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(164236,10,'T26.42XS ','Burn of left eye and adnexa, part unspecified, sequela','Y','0000-00-00 00:00:00'),(164237,10,'T26.50XA ','Corrosion of unspecified eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(164238,10,'T26.50XD ','Corrosion of unspecified eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(164239,10,'T26.50XS ','Corrosion of unspecified eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(164240,10,'T26.51XA ','Corrosion of right eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(164241,10,'T26.51XD ','Corrosion of right eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(164242,10,'T26.51XS ','Corrosion of right eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(164243,10,'T26.52XA ','Corrosion of left eyelid and periocular area, initial encounter','Y','0000-00-00 00:00:00'),(164244,10,'T26.52XD ','Corrosion of left eyelid and periocular area, subsequent encounter','Y','0000-00-00 00:00:00'),(164245,10,'T26.52XS ','Corrosion of left eyelid and periocular area, sequela','Y','0000-00-00 00:00:00'),(164246,10,'T26.60XA ','Corrosion of cornea and conjunctival sac, unspecified eye, initial encounter','Y','0000-00-00 00:00:00'),(164247,10,'T26.60XD ','Corrosion of cornea and conjunctival sac, unspecified eye, subsequent encounter','Y','0000-00-00 00:00:00'),(164248,10,'T26.60XS ','Corrosion of cornea and conjunctival sac, unspecified eye, sequela','Y','0000-00-00 00:00:00'),(164249,10,'T26.61XA ','Corrosion of cornea and conjunctival sac, right eye, initial encounter','Y','0000-00-00 00:00:00'),(164250,10,'T26.61XD ','Corrosion of cornea and conjunctival sac, right eye, subsequent encounter','Y','0000-00-00 00:00:00'),(164251,10,'T26.61XS ','Corrosion of cornea and conjunctival sac, right eye, sequela','Y','0000-00-00 00:00:00'),(164252,10,'T26.62XA ','Corrosion of cornea and conjunctival sac, left eye, initial encounter','Y','0000-00-00 00:00:00'),(164253,10,'T26.62XD ','Corrosion of cornea and conjunctival sac, left eye, subsequent encounter','Y','0000-00-00 00:00:00'),(164254,10,'T26.62XS ','Corrosion of cornea and conjunctival sac, left eye, sequela','Y','0000-00-00 00:00:00'),(164255,10,'T26.70XA ','Corrosion with resulting rupture and destruction of unspecified eyeball, initial encounter','Y','0000-00-00 00:00:00'),(164256,10,'T26.70XD ','Corrosion with resulting rupture and destruction of unspecified eyeball, subsequent encounter','Y','0000-00-00 00:00:00'),(164257,10,'T26.70XS ','Corrosion with resulting rupture and destruction of unspecified eyeball, sequela','Y','0000-00-00 00:00:00'),(164258,10,'T26.71XA ','Corrosion with resulting rupture and destruction of right eyeball, initial encounter','Y','0000-00-00 00:00:00'),(164259,10,'T26.71XD ','Corrosion with resulting rupture and destruction of right eyeball, subsequent encounter','Y','0000-00-00 00:00:00'),(164260,10,'T26.71XS ','Corrosion with resulting rupture and destruction of right eyeball, sequela','Y','0000-00-00 00:00:00'),(164261,10,'T26.72XA ','Corrosion with resulting rupture and destruction of left eyeball, initial encounter','Y','0000-00-00 00:00:00'),(164262,10,'T26.72XD ','Corrosion with resulting rupture and destruction of left eyeball, subsequent encounter','Y','0000-00-00 00:00:00'),(164263,10,'T26.72XS ','Corrosion with resulting rupture and destruction of left eyeball, sequela','Y','0000-00-00 00:00:00'),(164264,10,'T26.80XA ','Corrosions of other specified parts of unspecified eye and adnexa, initial encounter','Y','0000-00-00 00:00:00'),(164265,10,'T26.80XD ','Corrosions of other specified parts of unspecified eye and adnexa, subsequent encounter','Y','0000-00-00 00:00:00'),(164266,10,'T26.80XS ','Corrosions of other specified parts of unspecified eye and adnexa, sequela','Y','0000-00-00 00:00:00'),(164267,10,'T26.81XA ','Corrosions of other specified parts of right eye and adnexa, initial encounter','Y','0000-00-00 00:00:00'),(164268,10,'T26.81XD ','Corrosions of other specified parts of right eye and adnexa, subsequent encounter','Y','0000-00-00 00:00:00'),(164269,10,'T26.81XS ','Corrosions of other specified parts of right eye and adnexa, sequela','Y','0000-00-00 00:00:00'),(164270,10,'T26.82XA ','Corrosions of other specified parts of left eye and adnexa, initial encounter','Y','0000-00-00 00:00:00'),(164271,10,'T26.82XD ','Corrosions of other specified parts of left eye and adnexa, subsequent encounter','Y','0000-00-00 00:00:00'),(164272,10,'T26.82XS ','Corrosions of other specified parts of left eye and adnexa, sequela','Y','0000-00-00 00:00:00'),(164273,10,'T26.90XA ','Corrosion of unspecified eye and adnexa, part unspecified, initial encounter','Y','0000-00-00 00:00:00'),(164274,10,'T26.90XD ','Corrosion of unspecified eye and adnexa, part unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(164275,10,'T26.90XS ','Corrosion of unspecified eye and adnexa, part unspecified, sequela','Y','0000-00-00 00:00:00'),(164276,10,'T26.91XA ','Corrosion of right eye and adnexa, part unspecified, initial encounter','Y','0000-00-00 00:00:00'),(164277,10,'T26.91XD ','Corrosion of right eye and adnexa, part unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(164278,10,'T26.91XS ','Corrosion of right eye and adnexa, part unspecified, sequela','Y','0000-00-00 00:00:00'),(164279,10,'T26.92XA ','Corrosion of left eye and adnexa, part unspecified, initial encounter','Y','0000-00-00 00:00:00'),(164280,10,'T26.92XD ','Corrosion of left eye and adnexa, part unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(164281,10,'T26.92XS ','Corrosion of left eye and adnexa, part unspecified, sequela','Y','0000-00-00 00:00:00'),(164282,10,'T27.0XXA ','Burn of larynx and trachea, initial encounter','Y','0000-00-00 00:00:00'),(164283,10,'T27.0XXD ','Burn of larynx and trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(164284,10,'T27.0XXS ','Burn of larynx and trachea, sequela','Y','0000-00-00 00:00:00'),(164285,10,'T27.1XXA ','Burn involving larynx and trachea with lung, initial encounter','Y','0000-00-00 00:00:00'),(164286,10,'T27.1XXD ','Burn involving larynx and trachea with lung, subsequent encounter','Y','0000-00-00 00:00:00'),(164287,10,'T27.1XXS ','Burn involving larynx and trachea with lung, sequela','Y','0000-00-00 00:00:00'),(164288,10,'T27.2XXA ','Burn of other parts of respiratory tract, initial encounter','Y','0000-00-00 00:00:00'),(164289,10,'T27.2XXD ','Burn of other parts of respiratory tract, subsequent encounter','Y','0000-00-00 00:00:00'),(164290,10,'T27.2XXS ','Burn of other parts of respiratory tract, sequela','Y','0000-00-00 00:00:00'),(164291,10,'T27.3XXA ','Burn of respiratory tract, part unspecified, initial encounter','Y','0000-00-00 00:00:00'),(164292,10,'T27.3XXD ','Burn of respiratory tract, part unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(164293,10,'T27.3XXS ','Burn of respiratory tract, part unspecified, sequela','Y','0000-00-00 00:00:00'),(164294,10,'T27.4XXA ','Corrosion of larynx and trachea, initial encounter','Y','0000-00-00 00:00:00'),(164295,10,'T27.4XXD ','Corrosion of larynx and trachea, subsequent encounter','Y','0000-00-00 00:00:00'),(164296,10,'T27.4XXS ','Corrosion of larynx and trachea, sequela','Y','0000-00-00 00:00:00'),(164297,10,'T27.5XXA ','Corrosion involving larynx and trachea with lung, initial encounter','Y','0000-00-00 00:00:00'),(164298,10,'T27.5XXD ','Corrosion involving larynx and trachea with lung, subsequent encounter','Y','0000-00-00 00:00:00'),(164299,10,'T27.5XXS ','Corrosion involving larynx and trachea with lung, sequela','Y','0000-00-00 00:00:00'),(164300,10,'T27.6XXA ','Corrosion of other parts of respiratory tract, initial encounter','Y','0000-00-00 00:00:00'),(164301,10,'T27.6XXD ','Corrosion of other parts of respiratory tract, subsequent encounter','Y','0000-00-00 00:00:00'),(164302,10,'T27.6XXS ','Corrosion of other parts of respiratory tract, sequela','Y','0000-00-00 00:00:00'),(164303,10,'T27.7XXA ','Corrosion of respiratory tract, part unspecified, initial encounter','Y','0000-00-00 00:00:00'),(164304,10,'T27.7XXD ','Corrosion of respiratory tract, part unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(164305,10,'T27.7XXS ','Corrosion of respiratory tract, part unspecified, sequela','Y','0000-00-00 00:00:00'),(164306,10,'T28.0XXA ','Burn of mouth and pharynx, initial encounter','Y','0000-00-00 00:00:00'),(164307,10,'T28.0XXD ','Burn of mouth and pharynx, subsequent encounter','Y','0000-00-00 00:00:00'),(164308,10,'T28.0XXS ','Burn of mouth and pharynx, sequela','Y','0000-00-00 00:00:00'),(164309,10,'T28.1XXA ','Burn of esophagus, initial encounter','Y','0000-00-00 00:00:00'),(164310,10,'T28.1XXD ','Burn of esophagus, subsequent encounter','Y','0000-00-00 00:00:00'),(164311,10,'T28.1XXS ','Burn of esophagus, sequela','Y','0000-00-00 00:00:00'),(164312,10,'T28.2XXA ','Burn of other parts of alimentary tract, initial encounter','Y','0000-00-00 00:00:00'),(164313,10,'T28.2XXD ','Burn of other parts of alimentary tract, subsequent encounter','Y','0000-00-00 00:00:00'),(164314,10,'T28.2XXS ','Burn of other parts of alimentary tract, sequela','Y','0000-00-00 00:00:00'),(164315,10,'T28.3XXA ','Burn of internal genitourinary organs, initial encounter','Y','0000-00-00 00:00:00'),(164316,10,'T28.3XXD ','Burn of internal genitourinary organs, subsequent encounter','Y','0000-00-00 00:00:00'),(164317,10,'T28.3XXS ','Burn of internal genitourinary organs, sequela','Y','0000-00-00 00:00:00'),(164318,10,'T28.40XA ','Burn of unspecified internal organ, initial encounter','Y','0000-00-00 00:00:00'),(164319,10,'T28.40XD ','Burn of unspecified internal organ, subsequent encounter','Y','0000-00-00 00:00:00'),(164320,10,'T28.40XS ','Burn of unspecified internal organ, sequela','Y','0000-00-00 00:00:00'),(164321,10,'T28.411A ','Burn of right ear drum, initial encounter','Y','0000-00-00 00:00:00'),(164322,10,'T28.411D ','Burn of right ear drum, subsequent encounter','Y','0000-00-00 00:00:00'),(164323,10,'T28.411S ','Burn of right ear drum, sequela','Y','0000-00-00 00:00:00'),(164324,10,'T28.412A ','Burn of left ear drum, initial encounter','Y','0000-00-00 00:00:00'),(164325,10,'T28.412D ','Burn of left ear drum, subsequent encounter','Y','0000-00-00 00:00:00'),(164326,10,'T28.412S ','Burn of left ear drum, sequela','Y','0000-00-00 00:00:00'),(164327,10,'T28.419A ','Burn of unspecified ear drum, initial encounter','Y','0000-00-00 00:00:00'),(164328,10,'T28.419D ','Burn of unspecified ear drum, subsequent encounter','Y','0000-00-00 00:00:00'),(164329,10,'T28.419S ','Burn of unspecified ear drum, sequela','Y','0000-00-00 00:00:00'),(164330,10,'T28.49XA ','Burn of other internal organ, initial encounter','Y','0000-00-00 00:00:00'),(164331,10,'T28.49XD ','Burn of other internal organ, subsequent encounter','Y','0000-00-00 00:00:00'),(164332,10,'T28.49XS ','Burn of other internal organ, sequela','Y','0000-00-00 00:00:00'),(164333,10,'T28.5XXA ','Corrosion of mouth and pharynx, initial encounter','Y','0000-00-00 00:00:00'),(164334,10,'T28.5XXD ','Corrosion of mouth and pharynx, subsequent encounter','Y','0000-00-00 00:00:00'),(164335,10,'T28.5XXS ','Corrosion of mouth and pharynx, sequela','Y','0000-00-00 00:00:00'),(164336,10,'T28.6XXA ','Corrosion of esophagus, initial encounter','Y','0000-00-00 00:00:00'),(164337,10,'T28.6XXD ','Corrosion of esophagus, subsequent encounter','Y','0000-00-00 00:00:00'),(164338,10,'T28.6XXS ','Corrosion of esophagus, sequela','Y','0000-00-00 00:00:00'),(164339,10,'T28.7XXA ','Corrosion of other parts of alimentary tract, initial encounter','Y','0000-00-00 00:00:00'),(164340,10,'T28.7XXD ','Corrosion of other parts of alimentary tract, subsequent encounter','Y','0000-00-00 00:00:00'),(164341,10,'T28.7XXS ','Corrosion of other parts of alimentary tract, sequela','Y','0000-00-00 00:00:00'),(164342,10,'T28.8XXA ','Corrosion of internal genitourinary organs, initial encounter','Y','0000-00-00 00:00:00'),(164343,10,'T28.8XXD ','Corrosion of internal genitourinary organs, subsequent encounter','Y','0000-00-00 00:00:00'),(164344,10,'T28.8XXS ','Corrosion of internal genitourinary organs, sequela','Y','0000-00-00 00:00:00'),(164345,10,'T28.90XA ','Corrosions of unspecified internal organs, initial encounter','Y','0000-00-00 00:00:00'),(164346,10,'T28.90XD ','Corrosions of unspecified internal organs, subsequent encounter','Y','0000-00-00 00:00:00'),(164347,10,'T28.90XS ','Corrosions of unspecified internal organs, sequela','Y','0000-00-00 00:00:00'),(164348,10,'T28.911A ','Corrosions of right ear drum, initial encounter','Y','0000-00-00 00:00:00'),(164349,10,'T28.911D ','Corrosions of right ear drum, subsequent encounter','Y','0000-00-00 00:00:00'),(164350,10,'T28.911S ','Corrosions of right ear drum, sequela','Y','0000-00-00 00:00:00'),(164351,10,'T28.912A ','Corrosions of left ear drum, initial encounter','Y','0000-00-00 00:00:00'),(164352,10,'T28.912D ','Corrosions of left ear drum, subsequent encounter','Y','0000-00-00 00:00:00'),(164353,10,'T28.912S ','Corrosions of left ear drum, sequela','Y','0000-00-00 00:00:00'),(164354,10,'T28.919A ','Corrosions of unspecified ear drum, initial encounter','Y','0000-00-00 00:00:00'),(164355,10,'T28.919D ','Corrosions of unspecified ear drum, subsequent encounter','Y','0000-00-00 00:00:00'),(164356,10,'T28.919S ','Corrosions of unspecified ear drum, sequela','Y','0000-00-00 00:00:00'),(164357,10,'T28.99XA ','Corrosions of other internal organs, initial encounter','Y','0000-00-00 00:00:00'),(164358,10,'T28.99XD ','Corrosions of other internal organs, subsequent encounter','Y','0000-00-00 00:00:00'),(164359,10,'T28.99XS ','Corrosions of other internal organs, sequela','Y','0000-00-00 00:00:00'),(164360,10,'T30.0 ','Burn of unspecified body region, unspecified degree','Y','0000-00-00 00:00:00'),(164361,10,'T30.4 ','Corrosion of unspecified body region, unspecified degree','Y','0000-00-00 00:00:00'),(164362,10,'T31.0 ','Burns involving less than 10% of body surface','Y','0000-00-00 00:00:00'),(164363,10,'T31.10 ','Burns involving 10-19% of body surface with 0% to 9% third degree burns','Y','0000-00-00 00:00:00'),(164364,10,'T31.11 ','Burns involving 10-19% of body surface with 10-19% third degree burns','Y','0000-00-00 00:00:00'),(164365,10,'T31.20 ','Burns involving 20-29% of body surface with 0% to 9% third degree burns','Y','0000-00-00 00:00:00'),(164366,10,'T31.21 ','Burns involving 20-29% of body surface with 10-19% third degree burns','Y','0000-00-00 00:00:00'),(164367,10,'T31.22 ','Burns involving 20-29% of body surface with 20-29% third degree burns','Y','0000-00-00 00:00:00'),(164368,10,'T31.30 ','Burns involving 30-39% of body surface with 0% to 9% third degree burns','Y','0000-00-00 00:00:00'),(164369,10,'T31.31 ','Burns involving 30-39% of body surface with 10-19% third degree burns','Y','0000-00-00 00:00:00'),(164370,10,'T31.32 ','Burns involving 30-39% of body surface with 20-29% third degree burns','Y','0000-00-00 00:00:00'),(164371,10,'T31.33 ','Burns involving 30-39% of body surface with 30-39% third degree burns','Y','0000-00-00 00:00:00'),(164372,10,'T31.40 ','Burns involving 40-49% of body surface with 0% to 9% third degree burns','Y','0000-00-00 00:00:00'),(164373,10,'T31.41 ','Burns involving 40-49% of body surface with 10-19% third degree burns','Y','0000-00-00 00:00:00'),(164374,10,'T31.42 ','Burns involving 40-49% of body surface with 20-29% third degree burns','Y','0000-00-00 00:00:00'),(164375,10,'T31.43 ','Burns involving 40-49% of body surface with 30-39% third degree burns','Y','0000-00-00 00:00:00'),(164376,10,'T31.44 ','Burns involving 40-49% of body surface with 40-49% third degree burns','Y','0000-00-00 00:00:00'),(164377,10,'T31.50 ','Burns involving 50-59% of body surface with 0% to 9% third degree burns','Y','0000-00-00 00:00:00'),(164378,10,'T31.51 ','Burns involving 50-59% of body surface with 10-19% third degree burns','Y','0000-00-00 00:00:00'),(164379,10,'T31.52 ','Burns involving 50-59% of body surface with 20-29% third degree burns','Y','0000-00-00 00:00:00'),(164380,10,'T31.53 ','Burns involving 50-59% of body surface with 30-39% third degree burns','Y','0000-00-00 00:00:00'),(164381,10,'T31.54 ','Burns involving 50-59% of body surface with 40-49% third degree burns','Y','0000-00-00 00:00:00'),(164382,10,'T31.55 ','Burns involving 50-59% of body surface with 50-59% third degree burns','Y','0000-00-00 00:00:00'),(164383,10,'T31.60 ','Burns involving 60-69% of body surface with 0% to 9% third degree burns','Y','0000-00-00 00:00:00'),(164384,10,'T31.61 ','Burns involving 60-69% of body surface with 10-19% third degree burns','Y','0000-00-00 00:00:00'),(164385,10,'T31.62 ','Burns involving 60-69% of body surface with 20-29% third degree burns','Y','0000-00-00 00:00:00'),(164386,10,'T31.63 ','Burns involving 60-69% of body surface with 30-39% third degree burns','Y','0000-00-00 00:00:00'),(164387,10,'T31.64 ','Burns involving 60-69% of body surface with 40-49% third degree burns','Y','0000-00-00 00:00:00'),(164388,10,'T31.65 ','Burns involving 60-69% of body surface with 50-59% third degree burns','Y','0000-00-00 00:00:00'),(164389,10,'T31.66 ','Burns involving 60-69% of body surface with 60-69% third degree burns','Y','0000-00-00 00:00:00'),(164390,10,'T31.70 ','Burns involving 70-79% of body surface with 0% to 9% third degree burns','Y','0000-00-00 00:00:00'),(164391,10,'T31.71 ','Burns involving 70-79% of body surface with 10-19% third degree burns','Y','0000-00-00 00:00:00'),(164392,10,'T31.72 ','Burns involving 70-79% of body surface with 20-29% third degree burns','Y','0000-00-00 00:00:00'),(164393,10,'T31.73 ','Burns involving 70-79% of body surface with 30-39% third degree burns','Y','0000-00-00 00:00:00'),(164394,10,'T31.74 ','Burns involving 70-79% of body surface with 40-49% third degree burns','Y','0000-00-00 00:00:00'),(164395,10,'T31.75 ','Burns involving 70-79% of body surface with 50-59% third degree burns','Y','0000-00-00 00:00:00'),(164396,10,'T31.76 ','Burns involving 70-79% of body surface with 60-69% third degree burns','Y','0000-00-00 00:00:00'),(164397,10,'T31.77 ','Burns involving 70-79% of body surface with 70-79% third degree burns','Y','0000-00-00 00:00:00'),(164398,10,'T31.80 ','Burns involving 80-89% of body surface with 0% to 9% third degree burns','Y','0000-00-00 00:00:00'),(164399,10,'T31.81 ','Burns involving 80-89% of body surface with 10-19% third degree burns','Y','0000-00-00 00:00:00'),(164400,10,'T31.82 ','Burns involving 80-89% of body surface with 20-29% third degree burns','Y','0000-00-00 00:00:00'),(164401,10,'T31.83 ','Burns involving 80-89% of body surface with 30-39% third degree burns','Y','0000-00-00 00:00:00'),(164402,10,'T31.84 ','Burns involving 80-89% of body surface with 40-49% third degree burns','Y','0000-00-00 00:00:00'),(164403,10,'T31.85 ','Burns involving 80-89% of body surface with 50-59% third degree burns','Y','0000-00-00 00:00:00'),(164404,10,'T31.86 ','Burns involving 80-89% of body surface with 60-69% third degree burns','Y','0000-00-00 00:00:00'),(164405,10,'T31.87 ','Burns involving 80-89% of body surface with 70-79% third degree burns','Y','0000-00-00 00:00:00'),(164406,10,'T31.88 ','Burns involving 80-89% of body surface with 80-89% third degree burns','Y','0000-00-00 00:00:00'),(164407,10,'T31.90 ','Burns involving 90% or more of body surface with 0% to 9% third degree burns','Y','0000-00-00 00:00:00'),(164408,10,'T31.91 ','Burns involving 90% or more of body surface with 10-19% third degree burns','Y','0000-00-00 00:00:00'),(164409,10,'T31.92 ','Burns involving 90% or more of body surface with 20-29% third degree burns','Y','0000-00-00 00:00:00'),(164410,10,'T31.93 ','Burns involving 90% or more of body surface with 30-39% third degree burns','Y','0000-00-00 00:00:00'),(164411,10,'T31.94 ','Burns involving 90% or more of body surface with 40-49% third degree burns','Y','0000-00-00 00:00:00'),(164412,10,'T31.95 ','Burns involving 90% or more of body surface with 50-59% third degree burns','Y','0000-00-00 00:00:00'),(164413,10,'T31.96 ','Burns involving 90% or more of body surface with 60-69% third degree burns','Y','0000-00-00 00:00:00'),(164414,10,'T31.97 ','Burns involving 90% or more of body surface with 70-79% third degree burns','Y','0000-00-00 00:00:00'),(164415,10,'T31.98 ','Burns involving 90% or more of body surface with 80-89% third degree burns','Y','0000-00-00 00:00:00'),(164416,10,'T31.99 ','Burns involving 90% or more of body surface with 90% or more third degree burns','Y','0000-00-00 00:00:00'),(164417,10,'T32.0 ','Corrosions involving less than 10% of body surface','Y','0000-00-00 00:00:00'),(164418,10,'T32.10 ','Corrosions involving 10-19% of body surface with 0% to 9% third degree corrosion','Y','0000-00-00 00:00:00'),(164419,10,'T32.11 ','Corrosions involving 10-19% of body surface with 10-19% third degree corrosion','Y','0000-00-00 00:00:00'),(164420,10,'T32.20 ','Corrosions involving 20-29% of body surface with 0% to 9% third degree corrosion','Y','0000-00-00 00:00:00'),(164421,10,'T32.21 ','Corrosions involving 20-29% of body surface with 10-19% third degree corrosion','Y','0000-00-00 00:00:00'),(164422,10,'T32.22 ','Corrosions involving 20-29% of body surface with 20-29% third degree corrosion','Y','0000-00-00 00:00:00'),(164423,10,'T32.30 ','Corrosions involving 30-39% of body surface with 0% to 9% third degree corrosion','Y','0000-00-00 00:00:00'),(164424,10,'T32.31 ','Corrosions involving 30-39% of body surface with 10-19% third degree corrosion','Y','0000-00-00 00:00:00'),(164425,10,'T32.32 ','Corrosions involving 30-39% of body surface with 20-29% third degree corrosion','Y','0000-00-00 00:00:00'),(164426,10,'T32.33 ','Corrosions involving 30-39% of body surface with 30-39% third degree corrosion','Y','0000-00-00 00:00:00'),(164427,10,'T32.40 ','Corrosions involving 40-49% of body surface with 0% to 9% third degree corrosion','Y','0000-00-00 00:00:00'),(164428,10,'T32.41 ','Corrosions involving 40-49% of body surface with 10-19% third degree corrosion','Y','0000-00-00 00:00:00'),(164429,10,'T32.42 ','Corrosions involving 40-49% of body surface with 20-29% third degree corrosion','Y','0000-00-00 00:00:00'),(164430,10,'T32.43 ','Corrosions involving 40-49% of body surface with 30-39% third degree corrosion','Y','0000-00-00 00:00:00'),(164431,10,'T32.44 ','Corrosions involving 40-49% of body surface with 40-49% third degree corrosion','Y','0000-00-00 00:00:00'),(164432,10,'T32.50 ','Corrosions involving 50-59% of body surface with 0% to 9% third degree corrosion','Y','0000-00-00 00:00:00'),(164433,10,'T32.51 ','Corrosions involving 50-59% of body surface with 10-19% third degree corrosion','Y','0000-00-00 00:00:00'),(164434,10,'T32.52 ','Corrosions involving 50-59% of body surface with 20-29% third degree corrosion','Y','0000-00-00 00:00:00'),(164435,10,'T32.53 ','Corrosions involving 50-59% of body surface with 30-39% third degree corrosion','Y','0000-00-00 00:00:00'),(164436,10,'T32.54 ','Corrosions involving 50-59% of body surface with 40-49% third degree corrosion','Y','0000-00-00 00:00:00'),(164437,10,'T32.55 ','Corrosions involving 50-59% of body surface with 50-59% third degree corrosion','Y','0000-00-00 00:00:00'),(164438,10,'T32.60 ','Corrosions involving 60-69% of body surface with 0% to 9% third degree corrosion','Y','0000-00-00 00:00:00'),(164439,10,'T32.61 ','Corrosions involving 60-69% of body surface with 10-19% third degree corrosion','Y','0000-00-00 00:00:00'),(164440,10,'T32.62 ','Corrosions involving 60-69% of body surface with 20-29% third degree corrosion','Y','0000-00-00 00:00:00'),(164441,10,'T32.63 ','Corrosions involving 60-69% of body surface with 30-39% third degree corrosion','Y','0000-00-00 00:00:00'),(164442,10,'T32.64 ','Corrosions involving 60-69% of body surface with 40-49% third degree corrosion','Y','0000-00-00 00:00:00'),(164443,10,'T32.65 ','Corrosions involving 60-69% of body surface with 50-59% third degree corrosion','Y','0000-00-00 00:00:00'),(164444,10,'T32.66 ','Corrosions involving 60-69% of body surface with 60-69% third degree corrosion','Y','0000-00-00 00:00:00'),(164445,10,'T32.70 ','Corrosions involving 70-79% of body surface with 0% to 9% third degree corrosion','Y','0000-00-00 00:00:00'),(164446,10,'T32.71 ','Corrosions involving 70-79% of body surface with 10-19% third degree corrosion','Y','0000-00-00 00:00:00'),(164447,10,'T32.72 ','Corrosions involving 70-79% of body surface with 20-29% third degree corrosion','Y','0000-00-00 00:00:00'),(164448,10,'T32.73 ','Corrosions involving 70-79% of body surface with 30-39% third degree corrosion','Y','0000-00-00 00:00:00'),(164449,10,'T32.74 ','Corrosions involving 70-79% of body surface with 40-49% third degree corrosion','Y','0000-00-00 00:00:00'),(164450,10,'T32.75 ','Corrosions involving 70-79% of body surface with 50-59% third degree corrosion','Y','0000-00-00 00:00:00'),(164451,10,'T32.76 ','Corrosions involving 70-79% of body surface with 60-69% third degree corrosion','Y','0000-00-00 00:00:00'),(164452,10,'T32.77 ','Corrosions involving 70-79% of body surface with 70-79% third degree corrosion','Y','0000-00-00 00:00:00'),(164453,10,'T32.80 ','Corrosions involving 80-89% of body surface with 0% to 9% third degree corrosion','Y','0000-00-00 00:00:00'),(164454,10,'T32.81 ','Corrosions involving 80-89% of body surface with 10-19% third degree corrosion','Y','0000-00-00 00:00:00'),(164455,10,'T32.82 ','Corrosions involving 80-89% of body surface with 20-29% third degree corrosion','Y','0000-00-00 00:00:00'),(164456,10,'T32.83 ','Corrosions involving 80-89% of body surface with 30-39% third degree corrosion','Y','0000-00-00 00:00:00'),(164457,10,'T32.84 ','Corrosions involving 80-89% of body surface with 40-49% third degree corrosion','Y','0000-00-00 00:00:00'),(164458,10,'T32.85 ','Corrosions involving 80-89% of body surface with 50-59% third degree corrosion','Y','0000-00-00 00:00:00'),(164459,10,'T32.86 ','Corrosions involving 80-89% of body surface with 60-69% third degree corrosion','Y','0000-00-00 00:00:00'),(164460,10,'T32.87 ','Corrosions involving 80-89% of body surface with 70-79% third degree corrosion','Y','0000-00-00 00:00:00'),(164461,10,'T32.88 ','Corrosions involving 80-89% of body surface with 80-89% third degree corrosion','Y','0000-00-00 00:00:00'),(164462,10,'T32.90 ','Corrosions involving 90% or more of body surface with 0% to 9% third degree corrosion','Y','0000-00-00 00:00:00'),(164463,10,'T32.91 ','Corrosions involving 90% or more of body surface with 10-19% third degree corrosion','Y','0000-00-00 00:00:00'),(164464,10,'T32.92 ','Corrosions involving 90% or more of body surface with 20-29% third degree corrosion','Y','0000-00-00 00:00:00'),(164465,10,'T32.93 ','Corrosions involving 90% or more of body surface with 30-39% third degree corrosion','Y','0000-00-00 00:00:00'),(164466,10,'T32.94 ','Corrosions involving 90% or more of body surface with 40-49% third degree corrosion','Y','0000-00-00 00:00:00'),(164467,10,'T32.95 ','Corrosions involving 90% or more of body surface with 50-59% third degree corrosion','Y','0000-00-00 00:00:00'),(164468,10,'T32.96 ','Corrosions involving 90% or more of body surface with 60-69% third degree corrosion','Y','0000-00-00 00:00:00'),(164469,10,'T32.97 ','Corrosions involving 90% or more of body surface with 70-79% third degree corrosion','Y','0000-00-00 00:00:00'),(164470,10,'T32.98 ','Corrosions involving 90% or more of body surface with 80-89% third degree corrosion','Y','0000-00-00 00:00:00'),(164471,10,'T32.99 ','Corrosions involving 90% or more of body surface with 90% or more third degree corrosion','Y','0000-00-00 00:00:00'),(164472,10,'T33.011A ','Superficial frostbite of right ear, initial encounter','Y','0000-00-00 00:00:00'),(164473,10,'T33.011D ','Superficial frostbite of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(164474,10,'T33.011S ','Superficial frostbite of right ear, sequela','Y','0000-00-00 00:00:00'),(164475,10,'T33.012A ','Superficial frostbite of left ear, initial encounter','Y','0000-00-00 00:00:00'),(164476,10,'T33.012D ','Superficial frostbite of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(164477,10,'T33.012S ','Superficial frostbite of left ear, sequela','Y','0000-00-00 00:00:00'),(164478,10,'T33.019A ','Superficial frostbite of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(164479,10,'T33.019D ','Superficial frostbite of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(164480,10,'T33.019S ','Superficial frostbite of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(164481,10,'T33.02XA ','Superficial frostbite of nose, initial encounter','Y','0000-00-00 00:00:00'),(164482,10,'T33.02XD ','Superficial frostbite of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(164483,10,'T33.02XS ','Superficial frostbite of nose, sequela','Y','0000-00-00 00:00:00'),(164484,10,'T33.09XA ','Superficial frostbite of other part of head, initial encounter','Y','0000-00-00 00:00:00'),(164485,10,'T33.09XD ','Superficial frostbite of other part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(164486,10,'T33.09XS ','Superficial frostbite of other part of head, sequela','Y','0000-00-00 00:00:00'),(164487,10,'T33.1XXA ','Superficial frostbite of neck, initial encounter','Y','0000-00-00 00:00:00'),(164488,10,'T33.1XXD ','Superficial frostbite of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(164489,10,'T33.1XXS ','Superficial frostbite of neck, sequela','Y','0000-00-00 00:00:00'),(164490,10,'T33.2XXA ','Superficial frostbite of thorax, initial encounter','Y','0000-00-00 00:00:00'),(164491,10,'T33.2XXD ','Superficial frostbite of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(164492,10,'T33.2XXS ','Superficial frostbite of thorax, sequela','Y','0000-00-00 00:00:00'),(164493,10,'T33.3XXA ','Superficial frostbite of abdominal wall, lower back and pelvis, initial encounter','Y','0000-00-00 00:00:00'),(164494,10,'T33.3XXD ','Superficial frostbite of abdominal wall, lower back and pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(164495,10,'T33.3XXS ','Superficial frostbite of abdominal wall, lower back and pelvis, sequela','Y','0000-00-00 00:00:00'),(164496,10,'T33.40XA ','Superficial frostbite of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(164497,10,'T33.40XD ','Superficial frostbite of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(164498,10,'T33.40XS ','Superficial frostbite of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(164499,10,'T33.41XA ','Superficial frostbite of right arm, initial encounter','Y','0000-00-00 00:00:00'),(164500,10,'T33.41XD ','Superficial frostbite of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(164501,10,'T33.41XS ','Superficial frostbite of right arm, sequela','Y','0000-00-00 00:00:00'),(164502,10,'T33.42XA ','Superficial frostbite of left arm, initial encounter','Y','0000-00-00 00:00:00'),(164503,10,'T33.42XD ','Superficial frostbite of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(164504,10,'T33.42XS ','Superficial frostbite of left arm, sequela','Y','0000-00-00 00:00:00'),(164505,10,'T33.511A ','Superficial frostbite of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(164506,10,'T33.511D ','Superficial frostbite of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(164507,10,'T33.511S ','Superficial frostbite of right wrist, sequela','Y','0000-00-00 00:00:00'),(164508,10,'T33.512A ','Superficial frostbite of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(164509,10,'T33.512D ','Superficial frostbite of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(164510,10,'T33.512S ','Superficial frostbite of left wrist, sequela','Y','0000-00-00 00:00:00'),(164511,10,'T33.519A ','Superficial frostbite of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(164512,10,'T33.519D ','Superficial frostbite of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(164513,10,'T33.519S ','Superficial frostbite of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(164514,10,'T33.521A ','Superficial frostbite of right hand, initial encounter','Y','0000-00-00 00:00:00'),(164515,10,'T33.521D ','Superficial frostbite of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(164516,10,'T33.521S ','Superficial frostbite of right hand, sequela','Y','0000-00-00 00:00:00'),(164517,10,'T33.522A ','Superficial frostbite of left hand, initial encounter','Y','0000-00-00 00:00:00'),(164518,10,'T33.522D ','Superficial frostbite of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(164519,10,'T33.522S ','Superficial frostbite of left hand, sequela','Y','0000-00-00 00:00:00'),(164520,10,'T33.529A ','Superficial frostbite of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(164521,10,'T33.529D ','Superficial frostbite of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(164522,10,'T33.529S ','Superficial frostbite of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(164523,10,'T33.531A ','Superficial frostbite of right finger(s), initial encounter','Y','0000-00-00 00:00:00'),(164524,10,'T33.531D ','Superficial frostbite of right finger(s), subsequent encounter','Y','0000-00-00 00:00:00'),(164525,10,'T33.531S ','Superficial frostbite of right finger(s), sequela','Y','0000-00-00 00:00:00'),(164526,10,'T33.532A ','Superficial frostbite of left finger(s), initial encounter','Y','0000-00-00 00:00:00'),(164527,10,'T33.532D ','Superficial frostbite of left finger(s), subsequent encounter','Y','0000-00-00 00:00:00'),(164528,10,'T33.532S ','Superficial frostbite of left finger(s), sequela','Y','0000-00-00 00:00:00'),(164529,10,'T33.539A ','Superficial frostbite of unspecified finger(s), initial encounter','Y','0000-00-00 00:00:00'),(164530,10,'T33.539D ','Superficial frostbite of unspecified finger(s), subsequent encounter','Y','0000-00-00 00:00:00'),(164531,10,'T33.539S ','Superficial frostbite of unspecified finger(s), sequela','Y','0000-00-00 00:00:00'),(164532,10,'T33.60XA ','Superficial frostbite of unspecified hip and thigh, initial encounter','Y','0000-00-00 00:00:00'),(164533,10,'T33.60XD ','Superficial frostbite of unspecified hip and thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(164534,10,'T33.60XS ','Superficial frostbite of unspecified hip and thigh, sequela','Y','0000-00-00 00:00:00'),(164535,10,'T33.61XA ','Superficial frostbite of right hip and thigh, initial encounter','Y','0000-00-00 00:00:00'),(164536,10,'T33.61XD ','Superficial frostbite of right hip and thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(164537,10,'T33.61XS ','Superficial frostbite of right hip and thigh, sequela','Y','0000-00-00 00:00:00'),(164538,10,'T33.62XA ','Superficial frostbite of left hip and thigh, initial encounter','Y','0000-00-00 00:00:00'),(164539,10,'T33.62XD ','Superficial frostbite of left hip and thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(164540,10,'T33.62XS ','Superficial frostbite of left hip and thigh, sequela','Y','0000-00-00 00:00:00'),(164541,10,'T33.70XA ','Superficial frostbite of unspecified knee and lower leg, initial encounter','Y','0000-00-00 00:00:00'),(164542,10,'T33.70XD ','Superficial frostbite of unspecified knee and lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(164543,10,'T33.70XS ','Superficial frostbite of unspecified knee and lower leg, sequela','Y','0000-00-00 00:00:00'),(164544,10,'T33.71XA ','Superficial frostbite of right knee and lower leg, initial encounter','Y','0000-00-00 00:00:00'),(164545,10,'T33.71XD ','Superficial frostbite of right knee and lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(164546,10,'T33.71XS ','Superficial frostbite of right knee and lower leg, sequela','Y','0000-00-00 00:00:00'),(164547,10,'T33.72XA ','Superficial frostbite of left knee and lower leg, initial encounter','Y','0000-00-00 00:00:00'),(164548,10,'T33.72XD ','Superficial frostbite of left knee and lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(164549,10,'T33.72XS ','Superficial frostbite of left knee and lower leg, sequela','Y','0000-00-00 00:00:00'),(164550,10,'T33.811A ','Superficial frostbite of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(164551,10,'T33.811D ','Superficial frostbite of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164552,10,'T33.811S ','Superficial frostbite of right ankle, sequela','Y','0000-00-00 00:00:00'),(164553,10,'T33.812A ','Superficial frostbite of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(164554,10,'T33.812D ','Superficial frostbite of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164555,10,'T33.812S ','Superficial frostbite of left ankle, sequela','Y','0000-00-00 00:00:00'),(164556,10,'T33.819A ','Superficial frostbite of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(164557,10,'T33.819D ','Superficial frostbite of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164558,10,'T33.819S ','Superficial frostbite of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(164559,10,'T33.821A ','Superficial frostbite of right foot, initial encounter','Y','0000-00-00 00:00:00'),(164560,10,'T33.821D ','Superficial frostbite of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164561,10,'T33.821S ','Superficial frostbite of right foot, sequela','Y','0000-00-00 00:00:00'),(164562,10,'T33.822A ','Superficial frostbite of left foot, initial encounter','Y','0000-00-00 00:00:00'),(164563,10,'T33.822D ','Superficial frostbite of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164564,10,'T33.822S ','Superficial frostbite of left foot, sequela','Y','0000-00-00 00:00:00'),(164565,10,'T33.829A ','Superficial frostbite of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(164566,10,'T33.829D ','Superficial frostbite of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164567,10,'T33.829S ','Superficial frostbite of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(164568,10,'T33.831A ','Superficial frostbite of right toe(s), initial encounter','Y','0000-00-00 00:00:00'),(164569,10,'T33.831D ','Superficial frostbite of right toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(164570,10,'T33.831S ','Superficial frostbite of right toe(s), sequela','Y','0000-00-00 00:00:00'),(164571,10,'T33.832A ','Superficial frostbite of left toe(s), initial encounter','Y','0000-00-00 00:00:00'),(164572,10,'T33.832D ','Superficial frostbite of left toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(164573,10,'T33.832S ','Superficial frostbite of left toe(s), sequela','Y','0000-00-00 00:00:00'),(164574,10,'T33.839A ','Superficial frostbite of unspecified toe(s), initial encounter','Y','0000-00-00 00:00:00'),(164575,10,'T33.839D ','Superficial frostbite of unspecified toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(164576,10,'T33.839S ','Superficial frostbite of unspecified toe(s), sequela','Y','0000-00-00 00:00:00'),(164577,10,'T33.90XA ','Superficial frostbite of unspecified sites, initial encounter','Y','0000-00-00 00:00:00'),(164578,10,'T33.90XD ','Superficial frostbite of unspecified sites, subsequent encounter','Y','0000-00-00 00:00:00'),(164579,10,'T33.90XS ','Superficial frostbite of unspecified sites, sequela','Y','0000-00-00 00:00:00'),(164580,10,'T33.99XA ','Superficial frostbite of other sites, initial encounter','Y','0000-00-00 00:00:00'),(164581,10,'T33.99XD ','Superficial frostbite of other sites, subsequent encounter','Y','0000-00-00 00:00:00'),(164582,10,'T33.99XS ','Superficial frostbite of other sites, sequela','Y','0000-00-00 00:00:00'),(164583,10,'T34.011A ','Frostbite with tissue necrosis of right ear, initial encounter','Y','0000-00-00 00:00:00'),(164584,10,'T34.011D ','Frostbite with tissue necrosis of right ear, subsequent encounter','Y','0000-00-00 00:00:00'),(164585,10,'T34.011S ','Frostbite with tissue necrosis of right ear, sequela','Y','0000-00-00 00:00:00'),(164586,10,'T34.012A ','Frostbite with tissue necrosis of left ear, initial encounter','Y','0000-00-00 00:00:00'),(164587,10,'T34.012D ','Frostbite with tissue necrosis of left ear, subsequent encounter','Y','0000-00-00 00:00:00'),(164588,10,'T34.012S ','Frostbite with tissue necrosis of left ear, sequela','Y','0000-00-00 00:00:00'),(164589,10,'T34.019A ','Frostbite with tissue necrosis of unspecified ear, initial encounter','Y','0000-00-00 00:00:00'),(164590,10,'T34.019D ','Frostbite with tissue necrosis of unspecified ear, subsequent encounter','Y','0000-00-00 00:00:00'),(164591,10,'T34.019S ','Frostbite with tissue necrosis of unspecified ear, sequela','Y','0000-00-00 00:00:00'),(164592,10,'T34.02XA ','Frostbite with tissue necrosis of nose, initial encounter','Y','0000-00-00 00:00:00'),(164593,10,'T34.02XD ','Frostbite with tissue necrosis of nose, subsequent encounter','Y','0000-00-00 00:00:00'),(164594,10,'T34.02XS ','Frostbite with tissue necrosis of nose, sequela','Y','0000-00-00 00:00:00'),(164595,10,'T34.09XA ','Frostbite with tissue necrosis of other part of head, initial encounter','Y','0000-00-00 00:00:00'),(164596,10,'T34.09XD ','Frostbite with tissue necrosis of other part of head, subsequent encounter','Y','0000-00-00 00:00:00'),(164597,10,'T34.09XS ','Frostbite with tissue necrosis of other part of head, sequela','Y','0000-00-00 00:00:00'),(164598,10,'T34.1XXA ','Frostbite with tissue necrosis of neck, initial encounter','Y','0000-00-00 00:00:00'),(164599,10,'T34.1XXD ','Frostbite with tissue necrosis of neck, subsequent encounter','Y','0000-00-00 00:00:00'),(164600,10,'T34.1XXS ','Frostbite with tissue necrosis of neck, sequela','Y','0000-00-00 00:00:00'),(164601,10,'T34.2XXA ','Frostbite with tissue necrosis of thorax, initial encounter','Y','0000-00-00 00:00:00'),(164602,10,'T34.2XXD ','Frostbite with tissue necrosis of thorax, subsequent encounter','Y','0000-00-00 00:00:00'),(164603,10,'T34.2XXS ','Frostbite with tissue necrosis of thorax, sequela','Y','0000-00-00 00:00:00'),(164604,10,'T34.3XXA ','Frostbite with tissue necrosis of abdominal wall, lower back and pelvis, initial encounter','Y','0000-00-00 00:00:00'),(164605,10,'T34.3XXD ','Frostbite with tissue necrosis of abdominal wall, lower back and pelvis, subsequent encounter','Y','0000-00-00 00:00:00'),(164606,10,'T34.3XXS ','Frostbite with tissue necrosis of abdominal wall, lower back and pelvis, sequela','Y','0000-00-00 00:00:00'),(164607,10,'T34.40XA ','Frostbite with tissue necrosis of unspecified arm, initial encounter','Y','0000-00-00 00:00:00'),(164608,10,'T34.40XD ','Frostbite with tissue necrosis of unspecified arm, subsequent encounter','Y','0000-00-00 00:00:00'),(164609,10,'T34.40XS ','Frostbite with tissue necrosis of unspecified arm, sequela','Y','0000-00-00 00:00:00'),(164610,10,'T34.41XA ','Frostbite with tissue necrosis of right arm, initial encounter','Y','0000-00-00 00:00:00'),(164611,10,'T34.41XD ','Frostbite with tissue necrosis of right arm, subsequent encounter','Y','0000-00-00 00:00:00'),(164612,10,'T34.41XS ','Frostbite with tissue necrosis of right arm, sequela','Y','0000-00-00 00:00:00'),(164613,10,'T34.42XA ','Frostbite with tissue necrosis of left arm, initial encounter','Y','0000-00-00 00:00:00'),(164614,10,'T34.42XD ','Frostbite with tissue necrosis of left arm, subsequent encounter','Y','0000-00-00 00:00:00'),(164615,10,'T34.42XS ','Frostbite with tissue necrosis of left arm, sequela','Y','0000-00-00 00:00:00'),(164616,10,'T34.511A ','Frostbite with tissue necrosis of right wrist, initial encounter','Y','0000-00-00 00:00:00'),(164617,10,'T34.511D ','Frostbite with tissue necrosis of right wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(164618,10,'T34.511S ','Frostbite with tissue necrosis of right wrist, sequela','Y','0000-00-00 00:00:00'),(164619,10,'T34.512A ','Frostbite with tissue necrosis of left wrist, initial encounter','Y','0000-00-00 00:00:00'),(164620,10,'T34.512D ','Frostbite with tissue necrosis of left wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(164621,10,'T34.512S ','Frostbite with tissue necrosis of left wrist, sequela','Y','0000-00-00 00:00:00'),(164622,10,'T34.519A ','Frostbite with tissue necrosis of unspecified wrist, initial encounter','Y','0000-00-00 00:00:00'),(164623,10,'T34.519D ','Frostbite with tissue necrosis of unspecified wrist, subsequent encounter','Y','0000-00-00 00:00:00'),(164624,10,'T34.519S ','Frostbite with tissue necrosis of unspecified wrist, sequela','Y','0000-00-00 00:00:00'),(164625,10,'T34.521A ','Frostbite with tissue necrosis of right hand, initial encounter','Y','0000-00-00 00:00:00'),(164626,10,'T34.521D ','Frostbite with tissue necrosis of right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(164627,10,'T34.521S ','Frostbite with tissue necrosis of right hand, sequela','Y','0000-00-00 00:00:00'),(164628,10,'T34.522A ','Frostbite with tissue necrosis of left hand, initial encounter','Y','0000-00-00 00:00:00'),(164629,10,'T34.522D ','Frostbite with tissue necrosis of left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(164630,10,'T34.522S ','Frostbite with tissue necrosis of left hand, sequela','Y','0000-00-00 00:00:00'),(164631,10,'T34.529A ','Frostbite with tissue necrosis of unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(164632,10,'T34.529D ','Frostbite with tissue necrosis of unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(164633,10,'T34.529S ','Frostbite with tissue necrosis of unspecified hand, sequela','Y','0000-00-00 00:00:00'),(164634,10,'T34.531A ','Frostbite with tissue necrosis of right finger(s), initial encounter','Y','0000-00-00 00:00:00'),(164635,10,'T34.531D ','Frostbite with tissue necrosis of right finger(s), subsequent encounter','Y','0000-00-00 00:00:00'),(164636,10,'T34.531S ','Frostbite with tissue necrosis of right finger(s), sequela','Y','0000-00-00 00:00:00'),(164637,10,'T34.532A ','Frostbite with tissue necrosis of left finger(s), initial encounter','Y','0000-00-00 00:00:00'),(164638,10,'T34.532D ','Frostbite with tissue necrosis of left finger(s), subsequent encounter','Y','0000-00-00 00:00:00'),(164639,10,'T34.532S ','Frostbite with tissue necrosis of left finger(s), sequela','Y','0000-00-00 00:00:00'),(164640,10,'T34.539A ','Frostbite with tissue necrosis of unspecified finger(s), initial encounter','Y','0000-00-00 00:00:00'),(164641,10,'T34.539D ','Frostbite with tissue necrosis of unspecified finger(s), subsequent encounter','Y','0000-00-00 00:00:00'),(164642,10,'T34.539S ','Frostbite with tissue necrosis of unspecified finger(s), sequela','Y','0000-00-00 00:00:00'),(164643,10,'T34.60XA ','Frostbite with tissue necrosis of unspecified hip and thigh, initial encounter','Y','0000-00-00 00:00:00'),(164644,10,'T34.60XD ','Frostbite with tissue necrosis of unspecified hip and thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(164645,10,'T34.60XS ','Frostbite with tissue necrosis of unspecified hip and thigh, sequela','Y','0000-00-00 00:00:00'),(164646,10,'T34.61XA ','Frostbite with tissue necrosis of right hip and thigh, initial encounter','Y','0000-00-00 00:00:00'),(164647,10,'T34.61XD ','Frostbite with tissue necrosis of right hip and thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(164648,10,'T34.61XS ','Frostbite with tissue necrosis of right hip and thigh, sequela','Y','0000-00-00 00:00:00'),(164649,10,'T34.62XA ','Frostbite with tissue necrosis of left hip and thigh, initial encounter','Y','0000-00-00 00:00:00'),(164650,10,'T34.62XD ','Frostbite with tissue necrosis of left hip and thigh, subsequent encounter','Y','0000-00-00 00:00:00'),(164651,10,'T34.62XS ','Frostbite with tissue necrosis of left hip and thigh, sequela','Y','0000-00-00 00:00:00'),(164652,10,'T34.70XA ','Frostbite with tissue necrosis of unspecified knee and lower leg, initial encounter','Y','0000-00-00 00:00:00'),(164653,10,'T34.70XD ','Frostbite with tissue necrosis of unspecified knee and lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(164654,10,'T34.70XS ','Frostbite with tissue necrosis of unspecified knee and lower leg, sequela','Y','0000-00-00 00:00:00'),(164655,10,'T34.71XA ','Frostbite with tissue necrosis of right knee and lower leg, initial encounter','Y','0000-00-00 00:00:00'),(164656,10,'T34.71XD ','Frostbite with tissue necrosis of right knee and lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(164657,10,'T34.71XS ','Frostbite with tissue necrosis of right knee and lower leg, sequela','Y','0000-00-00 00:00:00'),(164658,10,'T34.72XA ','Frostbite with tissue necrosis of left knee and lower leg, initial encounter','Y','0000-00-00 00:00:00'),(164659,10,'T34.72XD ','Frostbite with tissue necrosis of left knee and lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(164660,10,'T34.72XS ','Frostbite with tissue necrosis of left knee and lower leg, sequela','Y','0000-00-00 00:00:00'),(164661,10,'T34.811A ','Frostbite with tissue necrosis of right ankle, initial encounter','Y','0000-00-00 00:00:00'),(164662,10,'T34.811D ','Frostbite with tissue necrosis of right ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164663,10,'T34.811S ','Frostbite with tissue necrosis of right ankle, sequela','Y','0000-00-00 00:00:00'),(164664,10,'T34.812A ','Frostbite with tissue necrosis of left ankle, initial encounter','Y','0000-00-00 00:00:00'),(164665,10,'T34.812D ','Frostbite with tissue necrosis of left ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164666,10,'T34.812S ','Frostbite with tissue necrosis of left ankle, sequela','Y','0000-00-00 00:00:00'),(164667,10,'T34.819A ','Frostbite with tissue necrosis of unspecified ankle, initial encounter','Y','0000-00-00 00:00:00'),(164668,10,'T34.819D ','Frostbite with tissue necrosis of unspecified ankle, subsequent encounter','Y','0000-00-00 00:00:00'),(164669,10,'T34.819S ','Frostbite with tissue necrosis of unspecified ankle, sequela','Y','0000-00-00 00:00:00'),(164670,10,'T34.821A ','Frostbite with tissue necrosis of right foot, initial encounter','Y','0000-00-00 00:00:00'),(164671,10,'T34.821D ','Frostbite with tissue necrosis of right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164672,10,'T34.821S ','Frostbite with tissue necrosis of right foot, sequela','Y','0000-00-00 00:00:00'),(164673,10,'T34.822A ','Frostbite with tissue necrosis of left foot, initial encounter','Y','0000-00-00 00:00:00'),(164674,10,'T34.822D ','Frostbite with tissue necrosis of left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164675,10,'T34.822S ','Frostbite with tissue necrosis of left foot, sequela','Y','0000-00-00 00:00:00'),(164676,10,'T34.829A ','Frostbite with tissue necrosis of unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(164677,10,'T34.829D ','Frostbite with tissue necrosis of unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(164678,10,'T34.829S ','Frostbite with tissue necrosis of unspecified foot, sequela','Y','0000-00-00 00:00:00'),(164679,10,'T34.831A ','Frostbite with tissue necrosis of right toe(s), initial encounter','Y','0000-00-00 00:00:00'),(164680,10,'T34.831D ','Frostbite with tissue necrosis of right toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(164681,10,'T34.831S ','Frostbite with tissue necrosis of right toe(s), sequela','Y','0000-00-00 00:00:00'),(164682,10,'T34.832A ','Frostbite with tissue necrosis of left toe(s), initial encounter','Y','0000-00-00 00:00:00'),(164683,10,'T34.832D ','Frostbite with tissue necrosis of left toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(164684,10,'T34.832S ','Frostbite with tissue necrosis of left toe(s), sequela','Y','0000-00-00 00:00:00'),(164685,10,'T34.839A ','Frostbite with tissue necrosis of unspecified toe(s), initial encounter','Y','0000-00-00 00:00:00'),(164686,10,'T34.839D ','Frostbite with tissue necrosis of unspecified toe(s), subsequent encounter','Y','0000-00-00 00:00:00'),(164687,10,'T34.839S ','Frostbite with tissue necrosis of unspecified toe(s), sequela','Y','0000-00-00 00:00:00'),(164688,10,'T34.90XA ','Frostbite with tissue necrosis of unspecified sites, initial encounter','Y','0000-00-00 00:00:00'),(164689,10,'T34.90XD ','Frostbite with tissue necrosis of unspecified sites, subsequent encounter','Y','0000-00-00 00:00:00'),(164690,10,'T34.90XS ','Frostbite with tissue necrosis of unspecified sites, sequela','Y','0000-00-00 00:00:00'),(164691,10,'T34.99XA ','Frostbite with tissue necrosis of other sites, initial encounter','Y','0000-00-00 00:00:00'),(164692,10,'T34.99XD ','Frostbite with tissue necrosis of other sites, subsequent encounter','Y','0000-00-00 00:00:00'),(164693,10,'T34.99XS ','Frostbite with tissue necrosis of other sites, sequela','Y','0000-00-00 00:00:00'),(164694,10,'T36.0X1A ','Poisoning by penicillins, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(164695,10,'T36.0X1D ','Poisoning by penicillins, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(164696,10,'T36.0X1S ','Poisoning by penicillins, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(164697,10,'T36.0X2A ','Poisoning by penicillins, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(164698,10,'T36.0X2D ','Poisoning by penicillins, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(164699,10,'T36.0X2S ','Poisoning by penicillins, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(164700,10,'T36.0X3A ','Poisoning by penicillins, assault, initial encounter','Y','0000-00-00 00:00:00'),(164701,10,'T36.0X3D ','Poisoning by penicillins, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(164702,10,'T36.0X3S ','Poisoning by penicillins, assault, sequela','Y','0000-00-00 00:00:00'),(164703,10,'T36.0X4A ','Poisoning by penicillins, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(164704,10,'T36.0X4D ','Poisoning by penicillins, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(164705,10,'T36.0X4S ','Poisoning by penicillins, undetermined, sequela','Y','0000-00-00 00:00:00'),(164706,10,'T36.0X5A ','Adverse effect of penicillins, initial encounter','Y','0000-00-00 00:00:00'),(164707,10,'T36.0X5D ','Adverse effect of penicillins, subsequent encounter','Y','0000-00-00 00:00:00'),(164708,10,'T36.0X5S ','Adverse effect of penicillins, sequela','Y','0000-00-00 00:00:00'),(164709,10,'T36.0X6A ','Underdosing of penicillins, initial encounter','Y','0000-00-00 00:00:00'),(164710,10,'T36.0X6D ','Underdosing of penicillins, subsequent encounter','Y','0000-00-00 00:00:00'),(164711,10,'T36.0X6S ','Underdosing of penicillins, sequela','Y','0000-00-00 00:00:00'),(164712,10,'T36.1X1A ','Poisoning by cephalosporins and other beta-lactam antibiotics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(164713,10,'T36.1X1D ','Poisoning by cephalosporins and other beta-lactam antibiotics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(164714,10,'T36.1X1S ','Poisoning by cephalosporins and other beta-lactam antibiotics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(164715,10,'T36.1X2A ','Poisoning by cephalosporins and other beta-lactam antibiotics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(164716,10,'T36.1X2D ','Poisoning by cephalosporins and other beta-lactam antibiotics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(164717,10,'T36.1X2S ','Poisoning by cephalosporins and other beta-lactam antibiotics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(164718,10,'T36.1X3A ','Poisoning by cephalosporins and other beta-lactam antibiotics, assault, initial encounter','Y','0000-00-00 00:00:00'),(164719,10,'T36.1X3D ','Poisoning by cephalosporins and other beta-lactam antibiotics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(164720,10,'T36.1X3S ','Poisoning by cephalosporins and other beta-lactam antibiotics, assault, sequela','Y','0000-00-00 00:00:00'),(164721,10,'T36.1X4A ','Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(164722,10,'T36.1X4D ','Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(164723,10,'T36.1X4S ','Poisoning by cephalosporins and other beta-lactam antibiotics, undetermined, sequela','Y','0000-00-00 00:00:00'),(164724,10,'T36.1X5A ','Adverse effect of cephalosporins and other beta-lactam antibiotics, initial encounter','Y','0000-00-00 00:00:00'),(164725,10,'T36.1X5D ','Adverse effect of cephalosporins and other beta-lactam antibiotics, subsequent encounter','Y','0000-00-00 00:00:00'),(164726,10,'T36.1X5S ','Adverse effect of cephalosporins and other beta-lactam antibiotics, sequela','Y','0000-00-00 00:00:00'),(164727,10,'T36.1X6A ','Underdosing of cephalosporins and other beta-lactam antibiotics, initial encounter','Y','0000-00-00 00:00:00'),(164728,10,'T36.1X6D ','Underdosing of cephalosporins and other beta-lactam antibiotics, subsequent encounter','Y','0000-00-00 00:00:00'),(164729,10,'T36.1X6S ','Underdosing of cephalosporins and other beta-lactam antibiotics, sequela','Y','0000-00-00 00:00:00'),(164730,10,'T36.2X1A ','Poisoning by chloramphenicol group, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(164731,10,'T36.2X1D ','Poisoning by chloramphenicol group, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(164732,10,'T36.2X1S ','Poisoning by chloramphenicol group, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(164733,10,'T36.2X2A ','Poisoning by chloramphenicol group, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(164734,10,'T36.2X2D ','Poisoning by chloramphenicol group, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(164735,10,'T36.2X2S ','Poisoning by chloramphenicol group, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(164736,10,'T36.2X3A ','Poisoning by chloramphenicol group, assault, initial encounter','Y','0000-00-00 00:00:00'),(164737,10,'T36.2X3D ','Poisoning by chloramphenicol group, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(164738,10,'T36.2X3S ','Poisoning by chloramphenicol group, assault, sequela','Y','0000-00-00 00:00:00'),(164739,10,'T36.2X4A ','Poisoning by chloramphenicol group, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(164740,10,'T36.2X4D ','Poisoning by chloramphenicol group, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(164741,10,'T36.2X4S ','Poisoning by chloramphenicol group, undetermined, sequela','Y','0000-00-00 00:00:00'),(164742,10,'T36.2X5A ','Adverse effect of chloramphenicol group, initial encounter','Y','0000-00-00 00:00:00'),(164743,10,'T36.2X5D ','Adverse effect of chloramphenicol group, subsequent encounter','Y','0000-00-00 00:00:00'),(164744,10,'T36.2X5S ','Adverse effect of chloramphenicol group, sequela','Y','0000-00-00 00:00:00'),(164745,10,'T36.2X6A ','Underdosing of chloramphenicol group, initial encounter','Y','0000-00-00 00:00:00'),(164746,10,'T36.2X6D ','Underdosing of chloramphenicol group, subsequent encounter','Y','0000-00-00 00:00:00'),(164747,10,'T36.2X6S ','Underdosing of chloramphenicol group, sequela','Y','0000-00-00 00:00:00'),(164748,10,'T36.3X1A ','Poisoning by macrolides, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(164749,10,'T36.3X1D ','Poisoning by macrolides, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(164750,10,'T36.3X1S ','Poisoning by macrolides, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(164751,10,'T36.3X2A ','Poisoning by macrolides, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(164752,10,'T36.3X2D ','Poisoning by macrolides, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(164753,10,'T36.3X2S ','Poisoning by macrolides, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(164754,10,'T36.3X3A ','Poisoning by macrolides, assault, initial encounter','Y','0000-00-00 00:00:00'),(164755,10,'T36.3X3D ','Poisoning by macrolides, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(164756,10,'T36.3X3S ','Poisoning by macrolides, assault, sequela','Y','0000-00-00 00:00:00'),(164757,10,'T36.3X4A ','Poisoning by macrolides, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(164758,10,'T36.3X4D ','Poisoning by macrolides, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(164759,10,'T36.3X4S ','Poisoning by macrolides, undetermined, sequela','Y','0000-00-00 00:00:00'),(164760,10,'T36.3X5A ','Adverse effect of macrolides, initial encounter','Y','0000-00-00 00:00:00'),(164761,10,'T36.3X5D ','Adverse effect of macrolides, subsequent encounter','Y','0000-00-00 00:00:00'),(164762,10,'T36.3X5S ','Adverse effect of macrolides, sequela','Y','0000-00-00 00:00:00'),(164763,10,'T36.3X6A ','Underdosing of macrolides, initial encounter','Y','0000-00-00 00:00:00'),(164764,10,'T36.3X6D ','Underdosing of macrolides, subsequent encounter','Y','0000-00-00 00:00:00'),(164765,10,'T36.3X6S ','Underdosing of macrolides, sequela','Y','0000-00-00 00:00:00'),(164766,10,'T36.4X1A ','Poisoning by tetracyclines, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(164767,10,'T36.4X1D ','Poisoning by tetracyclines, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(164768,10,'T36.4X1S ','Poisoning by tetracyclines, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(164769,10,'T36.4X2A ','Poisoning by tetracyclines, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(164770,10,'T36.4X2D ','Poisoning by tetracyclines, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(164771,10,'T36.4X2S ','Poisoning by tetracyclines, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(164772,10,'T36.4X3A ','Poisoning by tetracyclines, assault, initial encounter','Y','0000-00-00 00:00:00'),(164773,10,'T36.4X3D ','Poisoning by tetracyclines, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(164774,10,'T36.4X3S ','Poisoning by tetracyclines, assault, sequela','Y','0000-00-00 00:00:00'),(164775,10,'T36.4X4A ','Poisoning by tetracyclines, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(164776,10,'T36.4X4D ','Poisoning by tetracyclines, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(164777,10,'T36.4X4S ','Poisoning by tetracyclines, undetermined, sequela','Y','0000-00-00 00:00:00'),(164778,10,'T36.4X5A ','Adverse effect of tetracyclines, initial encounter','Y','0000-00-00 00:00:00'),(164779,10,'T36.4X5D ','Adverse effect of tetracyclines, subsequent encounter','Y','0000-00-00 00:00:00'),(164780,10,'T36.4X5S ','Adverse effect of tetracyclines, sequela','Y','0000-00-00 00:00:00'),(164781,10,'T36.4X6A ','Underdosing of tetracyclines, initial encounter','Y','0000-00-00 00:00:00'),(164782,10,'T36.4X6D ','Underdosing of tetracyclines, subsequent encounter','Y','0000-00-00 00:00:00'),(164783,10,'T36.4X6S ','Underdosing of tetracyclines, sequela','Y','0000-00-00 00:00:00'),(164784,10,'T36.5X1A ','Poisoning by aminoglycosides, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(164785,10,'T36.5X1D ','Poisoning by aminoglycosides, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(164786,10,'T36.5X1S ','Poisoning by aminoglycosides, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(164787,10,'T36.5X2A ','Poisoning by aminoglycosides, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(164788,10,'T36.5X2D ','Poisoning by aminoglycosides, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(164789,10,'T36.5X2S ','Poisoning by aminoglycosides, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(164790,10,'T36.5X3A ','Poisoning by aminoglycosides, assault, initial encounter','Y','0000-00-00 00:00:00'),(164791,10,'T36.5X3D ','Poisoning by aminoglycosides, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(164792,10,'T36.5X3S ','Poisoning by aminoglycosides, assault, sequela','Y','0000-00-00 00:00:00'),(164793,10,'T36.5X4A ','Poisoning by aminoglycosides, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(164794,10,'T36.5X4D ','Poisoning by aminoglycosides, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(164795,10,'T36.5X4S ','Poisoning by aminoglycosides, undetermined, sequela','Y','0000-00-00 00:00:00'),(164796,10,'T36.5X5A ','Adverse effect of aminoglycosides, initial encounter','Y','0000-00-00 00:00:00'),(164797,10,'T36.5X5D ','Adverse effect of aminoglycosides, subsequent encounter','Y','0000-00-00 00:00:00'),(164798,10,'T36.5X5S ','Adverse effect of aminoglycosides, sequela','Y','0000-00-00 00:00:00'),(164799,10,'T36.5X6A ','Underdosing of aminoglycosides, initial encounter','Y','0000-00-00 00:00:00'),(164800,10,'T36.5X6D ','Underdosing of aminoglycosides, subsequent encounter','Y','0000-00-00 00:00:00'),(164801,10,'T36.5X6S ','Underdosing of aminoglycosides, sequela','Y','0000-00-00 00:00:00'),(164802,10,'T36.6X1A ','Poisoning by rifampicins, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(164803,10,'T36.6X1D ','Poisoning by rifampicins, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(164804,10,'T36.6X1S ','Poisoning by rifampicins, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(164805,10,'T36.6X2A ','Poisoning by rifampicins, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(164806,10,'T36.6X2D ','Poisoning by rifampicins, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(164807,10,'T36.6X2S ','Poisoning by rifampicins, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(164808,10,'T36.6X3A ','Poisoning by rifampicins, assault, initial encounter','Y','0000-00-00 00:00:00'),(164809,10,'T36.6X3D ','Poisoning by rifampicins, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(164810,10,'T36.6X3S ','Poisoning by rifampicins, assault, sequela','Y','0000-00-00 00:00:00'),(164811,10,'T36.6X4A ','Poisoning by rifampicins, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(164812,10,'T36.6X4D ','Poisoning by rifampicins, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(164813,10,'T36.6X4S ','Poisoning by rifampicins, undetermined, sequela','Y','0000-00-00 00:00:00'),(164814,10,'T36.6X5A ','Adverse effect of rifampicins, initial encounter','Y','0000-00-00 00:00:00'),(164815,10,'T36.6X5D ','Adverse effect of rifampicins, subsequent encounter','Y','0000-00-00 00:00:00'),(164816,10,'T36.6X5S ','Adverse effect of rifampicins, sequela','Y','0000-00-00 00:00:00'),(164817,10,'T36.6X6A ','Underdosing of rifampicins, initial encounter','Y','0000-00-00 00:00:00'),(164818,10,'T36.6X6D ','Underdosing of rifampicins, subsequent encounter','Y','0000-00-00 00:00:00'),(164819,10,'T36.6X6S ','Underdosing of rifampicins, sequela','Y','0000-00-00 00:00:00'),(164820,10,'T36.7X1A ','Poisoning by antifungal antibiotics, systemically used, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(164821,10,'T36.7X1D ','Poisoning by antifungal antibiotics, systemically used, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(164822,10,'T36.7X1S ','Poisoning by antifungal antibiotics, systemically used, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(164823,10,'T36.7X2A ','Poisoning by antifungal antibiotics, systemically used, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(164824,10,'T36.7X2D ','Poisoning by antifungal antibiotics, systemically used, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(164825,10,'T36.7X2S ','Poisoning by antifungal antibiotics, systemically used, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(164826,10,'T36.7X3A ','Poisoning by antifungal antibiotics, systemically used, assault, initial encounter','Y','0000-00-00 00:00:00'),(164827,10,'T36.7X3D ','Poisoning by antifungal antibiotics, systemically used, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(164828,10,'T36.7X3S ','Poisoning by antifungal antibiotics, systemically used, assault, sequela','Y','0000-00-00 00:00:00'),(164829,10,'T36.7X4A ','Poisoning by antifungal antibiotics, systemically used, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(164830,10,'T36.7X4D ','Poisoning by antifungal antibiotics, systemically used, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(164831,10,'T36.7X4S ','Poisoning by antifungal antibiotics, systemically used, undetermined, sequela','Y','0000-00-00 00:00:00'),(164832,10,'T36.7X5A ','Adverse effect of antifungal antibiotics, systemically used, initial encounter','Y','0000-00-00 00:00:00'),(164833,10,'T36.7X5D ','Adverse effect of antifungal antibiotics, systemically used, subsequent encounter','Y','0000-00-00 00:00:00'),(164834,10,'T36.7X5S ','Adverse effect of antifungal antibiotics, systemically used, sequela','Y','0000-00-00 00:00:00'),(164835,10,'T36.7X6A ','Underdosing of antifungal antibiotics, systemically used, initial encounter','Y','0000-00-00 00:00:00'),(164836,10,'T36.7X6D ','Underdosing of antifungal antibiotics, systemically used, subsequent encounter','Y','0000-00-00 00:00:00'),(164837,10,'T36.7X6S ','Underdosing of antifungal antibiotics, systemically used, sequela','Y','0000-00-00 00:00:00'),(164838,10,'T36.8X1A ','Poisoning by other systemic antibiotics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(164839,10,'T36.8X1D ','Poisoning by other systemic antibiotics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(164840,10,'T36.8X1S ','Poisoning by other systemic antibiotics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(164841,10,'T36.8X2A ','Poisoning by other systemic antibiotics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(164842,10,'T36.8X2D ','Poisoning by other systemic antibiotics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(164843,10,'T36.8X2S ','Poisoning by other systemic antibiotics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(164844,10,'T36.8X3A ','Poisoning by other systemic antibiotics, assault, initial encounter','Y','0000-00-00 00:00:00'),(164845,10,'T36.8X3D ','Poisoning by other systemic antibiotics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(164846,10,'T36.8X3S ','Poisoning by other systemic antibiotics, assault, sequela','Y','0000-00-00 00:00:00'),(164847,10,'T36.8X4A ','Poisoning by other systemic antibiotics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(164848,10,'T36.8X4D ','Poisoning by other systemic antibiotics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(164849,10,'T36.8X4S ','Poisoning by other systemic antibiotics, undetermined, sequela','Y','0000-00-00 00:00:00'),(164850,10,'T36.8X5A ','Adverse effect of other systemic antibiotics, initial encounter','Y','0000-00-00 00:00:00'),(164851,10,'T36.8X5D ','Adverse effect of other systemic antibiotics, subsequent encounter','Y','0000-00-00 00:00:00'),(164852,10,'T36.8X5S ','Adverse effect of other systemic antibiotics, sequela','Y','0000-00-00 00:00:00'),(164853,10,'T36.8X6A ','Underdosing of other systemic antibiotics, initial encounter','Y','0000-00-00 00:00:00'),(164854,10,'T36.8X6D ','Underdosing of other systemic antibiotics, subsequent encounter','Y','0000-00-00 00:00:00'),(164855,10,'T36.8X6S ','Underdosing of other systemic antibiotics, sequela','Y','0000-00-00 00:00:00'),(164856,10,'T36.91XA ','Poisoning by unspecified systemic antibiotic, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(164857,10,'T36.91XD ','Poisoning by unspecified systemic antibiotic, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(164858,10,'T36.91XS ','Poisoning by unspecified systemic antibiotic, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(164859,10,'T36.92XA ','Poisoning by unspecified systemic antibiotic, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(164860,10,'T36.92XD ','Poisoning by unspecified systemic antibiotic, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(164861,10,'T36.92XS ','Poisoning by unspecified systemic antibiotic, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(164862,10,'T36.93XA ','Poisoning by unspecified systemic antibiotic, assault, initial encounter','Y','0000-00-00 00:00:00'),(164863,10,'T36.93XD ','Poisoning by unspecified systemic antibiotic, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(164864,10,'T36.93XS ','Poisoning by unspecified systemic antibiotic, assault, sequela','Y','0000-00-00 00:00:00'),(164865,10,'T36.94XA ','Poisoning by unspecified systemic antibiotic, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(164866,10,'T36.94XD ','Poisoning by unspecified systemic antibiotic, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(164867,10,'T36.94XS ','Poisoning by unspecified systemic antibiotic, undetermined, sequela','Y','0000-00-00 00:00:00'),(164868,10,'T36.95XA ','Adverse effect of unspecified systemic antibiotic, initial encounter','Y','0000-00-00 00:00:00'),(164869,10,'T36.95XD ','Adverse effect of unspecified systemic antibiotic, subsequent encounter','Y','0000-00-00 00:00:00'),(164870,10,'T36.95XS ','Adverse effect of unspecified systemic antibiotic, sequela','Y','0000-00-00 00:00:00'),(164871,10,'T36.96XA ','Underdosing of unspecified systemic antibiotic, initial encounter','Y','0000-00-00 00:00:00'),(164872,10,'T36.96XD ','Underdosing of unspecified systemic antibiotic, subsequent encounter','Y','0000-00-00 00:00:00'),(164873,10,'T36.96XS ','Underdosing of unspecified systemic antibiotic, sequela','Y','0000-00-00 00:00:00'),(164874,10,'T37.0X1A ','Poisoning by sulfonamides, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(164875,10,'T37.0X1D ','Poisoning by sulfonamides, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(164876,10,'T37.0X1S ','Poisoning by sulfonamides, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(164877,10,'T37.0X2A ','Poisoning by sulfonamides, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(164878,10,'T37.0X2D ','Poisoning by sulfonamides, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(164879,10,'T37.0X2S ','Poisoning by sulfonamides, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(164880,10,'T37.0X3A ','Poisoning by sulfonamides, assault, initial encounter','Y','0000-00-00 00:00:00'),(164881,10,'T37.0X3D ','Poisoning by sulfonamides, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(164882,10,'T37.0X3S ','Poisoning by sulfonamides, assault, sequela','Y','0000-00-00 00:00:00'),(164883,10,'T37.0X4A ','Poisoning by sulfonamides, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(164884,10,'T37.0X4D ','Poisoning by sulfonamides, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(164885,10,'T37.0X4S ','Poisoning by sulfonamides, undetermined, sequela','Y','0000-00-00 00:00:00'),(164886,10,'T37.0X5A ','Adverse effect of sulfonamides, initial encounter','Y','0000-00-00 00:00:00'),(164887,10,'T37.0X5D ','Adverse effect of sulfonamides, subsequent encounter','Y','0000-00-00 00:00:00'),(164888,10,'T37.0X5S ','Adverse effect of sulfonamides, sequela','Y','0000-00-00 00:00:00'),(164889,10,'T37.0X6A ','Underdosing of sulfonamides, initial encounter','Y','0000-00-00 00:00:00'),(164890,10,'T37.0X6D ','Underdosing of sulfonamides, subsequent encounter','Y','0000-00-00 00:00:00'),(164891,10,'T37.0X6S ','Underdosing of sulfonamides, sequela','Y','0000-00-00 00:00:00'),(164892,10,'T37.1X1A ','Poisoning by antimycobacterial drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(164893,10,'T37.1X1D ','Poisoning by antimycobacterial drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(164894,10,'T37.1X1S ','Poisoning by antimycobacterial drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(164895,10,'T37.1X2A ','Poisoning by antimycobacterial drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(164896,10,'T37.1X2D ','Poisoning by antimycobacterial drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(164897,10,'T37.1X2S ','Poisoning by antimycobacterial drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(164898,10,'T37.1X3A ','Poisoning by antimycobacterial drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(164899,10,'T37.1X3D ','Poisoning by antimycobacterial drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(164900,10,'T37.1X3S ','Poisoning by antimycobacterial drugs, assault, sequela','Y','0000-00-00 00:00:00'),(164901,10,'T37.1X4A ','Poisoning by antimycobacterial drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(164902,10,'T37.1X4D ','Poisoning by antimycobacterial drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(164903,10,'T37.1X4S ','Poisoning by antimycobacterial drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(164904,10,'T37.1X5A ','Adverse effect of antimycobacterial drugs, initial encounter','Y','0000-00-00 00:00:00'),(164905,10,'T37.1X5D ','Adverse effect of antimycobacterial drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(164906,10,'T37.1X5S ','Adverse effect of antimycobacterial drugs, sequela','Y','0000-00-00 00:00:00'),(164907,10,'T37.1X6A ','Underdosing of antimycobacterial drugs, initial encounter','Y','0000-00-00 00:00:00'),(164908,10,'T37.1X6D ','Underdosing of antimycobacterial drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(164909,10,'T37.1X6S ','Underdosing of antimycobacterial drugs, sequela','Y','0000-00-00 00:00:00'),(164910,10,'T37.2X1A ','Poisoning by antimalarials and drugs acting on other blood protozoa, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(164911,10,'T37.2X1D ','Poisoning by antimalarials and drugs acting on other blood protozoa, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(164912,10,'T37.2X1S ','Poisoning by antimalarials and drugs acting on other blood protozoa, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(164913,10,'T37.2X2A ','Poisoning by antimalarials and drugs acting on other blood protozoa, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(164914,10,'T37.2X2D ','Poisoning by antimalarials and drugs acting on other blood protozoa, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(164915,10,'T37.2X2S ','Poisoning by antimalarials and drugs acting on other blood protozoa, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(164916,10,'T37.2X3A ','Poisoning by antimalarials and drugs acting on other blood protozoa, assault, initial encounter','Y','0000-00-00 00:00:00'),(164917,10,'T37.2X3D ','Poisoning by antimalarials and drugs acting on other blood protozoa, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(164918,10,'T37.2X3S ','Poisoning by antimalarials and drugs acting on other blood protozoa, assault, sequela','Y','0000-00-00 00:00:00'),(164919,10,'T37.2X4A ','Poisoning by antimalarials and drugs acting on other blood protozoa, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(164920,10,'T37.2X4D ','Poisoning by antimalarials and drugs acting on other blood protozoa, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(164921,10,'T37.2X4S ','Poisoning by antimalarials and drugs acting on other blood protozoa, undetermined, sequela','Y','0000-00-00 00:00:00'),(164922,10,'T37.2X5A ','Adverse effect of antimalarials and drugs acting on other blood protozoa, initial encounter','Y','0000-00-00 00:00:00'),(164923,10,'T37.2X5D ','Adverse effect of antimalarials and drugs acting on other blood protozoa, subsequent encounter','Y','0000-00-00 00:00:00'),(164924,10,'T37.2X5S ','Adverse effect of antimalarials and drugs acting on other blood protozoa, sequela','Y','0000-00-00 00:00:00'),(164925,10,'T37.2X6A ','Underdosing of antimalarials and drugs acting on other blood protozoa, initial encounter','Y','0000-00-00 00:00:00'),(164926,10,'T37.2X6D ','Underdosing of antimalarials and drugs acting on other blood protozoa, subsequent encounter','Y','0000-00-00 00:00:00'),(164927,10,'T37.2X6S ','Underdosing of antimalarials and drugs acting on other blood protozoa, sequela','Y','0000-00-00 00:00:00'),(164928,10,'T37.3X1A ','Poisoning by other antiprotozoal drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(164929,10,'T37.3X1D ','Poisoning by other antiprotozoal drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(164930,10,'T37.3X1S ','Poisoning by other antiprotozoal drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(164931,10,'T37.3X2A ','Poisoning by other antiprotozoal drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(164932,10,'T37.3X2D ','Poisoning by other antiprotozoal drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(164933,10,'T37.3X2S ','Poisoning by other antiprotozoal drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(164934,10,'T37.3X3A ','Poisoning by other antiprotozoal drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(164935,10,'T37.3X3D ','Poisoning by other antiprotozoal drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(164936,10,'T37.3X3S ','Poisoning by other antiprotozoal drugs, assault, sequela','Y','0000-00-00 00:00:00'),(164937,10,'T37.3X4A ','Poisoning by other antiprotozoal drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(164938,10,'T37.3X4D ','Poisoning by other antiprotozoal drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(164939,10,'T37.3X4S ','Poisoning by other antiprotozoal drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(164940,10,'T37.3X5A ','Adverse effect of other antiprotozoal drugs, initial encounter','Y','0000-00-00 00:00:00'),(164941,10,'T37.3X5D ','Adverse effect of other antiprotozoal drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(164942,10,'T37.3X5S ','Adverse effect of other antiprotozoal drugs, sequela','Y','0000-00-00 00:00:00'),(164943,10,'T37.3X6A ','Underdosing of other antiprotozoal drugs, initial encounter','Y','0000-00-00 00:00:00'),(164944,10,'T37.3X6D ','Underdosing of other antiprotozoal drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(164945,10,'T37.3X6S ','Underdosing of other antiprotozoal drugs, sequela','Y','0000-00-00 00:00:00'),(164946,10,'T37.4X1A ','Poisoning by anthelminthics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(164947,10,'T37.4X1D ','Poisoning by anthelminthics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(164948,10,'T37.4X1S ','Poisoning by anthelminthics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(164949,10,'T37.4X2A ','Poisoning by anthelminthics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(164950,10,'T37.4X2D ','Poisoning by anthelminthics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(164951,10,'T37.4X2S ','Poisoning by anthelminthics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(164952,10,'T37.4X3A ','Poisoning by anthelminthics, assault, initial encounter','Y','0000-00-00 00:00:00'),(164953,10,'T37.4X3D ','Poisoning by anthelminthics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(164954,10,'T37.4X3S ','Poisoning by anthelminthics, assault, sequela','Y','0000-00-00 00:00:00'),(164955,10,'T37.4X4A ','Poisoning by anthelminthics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(164956,10,'T37.4X4D ','Poisoning by anthelminthics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(164957,10,'T37.4X4S ','Poisoning by anthelminthics, undetermined, sequela','Y','0000-00-00 00:00:00'),(164958,10,'T37.4X5A ','Adverse effect of anthelminthics, initial encounter','Y','0000-00-00 00:00:00'),(164959,10,'T37.4X5D ','Adverse effect of anthelminthics, subsequent encounter','Y','0000-00-00 00:00:00'),(164960,10,'T37.4X5S ','Adverse effect of anthelminthics, sequela','Y','0000-00-00 00:00:00'),(164961,10,'T37.4X6A ','Underdosing of anthelminthics, initial encounter','Y','0000-00-00 00:00:00'),(164962,10,'T37.4X6D ','Underdosing of anthelminthics, subsequent encounter','Y','0000-00-00 00:00:00'),(164963,10,'T37.4X6S ','Underdosing of anthelminthics, sequela','Y','0000-00-00 00:00:00'),(164964,10,'T37.5X1A ','Poisoning by antiviral drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(164965,10,'T37.5X1D ','Poisoning by antiviral drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(164966,10,'T37.5X1S ','Poisoning by antiviral drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(164967,10,'T37.5X2A ','Poisoning by antiviral drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(164968,10,'T37.5X2D ','Poisoning by antiviral drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(164969,10,'T37.5X2S ','Poisoning by antiviral drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(164970,10,'T37.5X3A ','Poisoning by antiviral drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(164971,10,'T37.5X3D ','Poisoning by antiviral drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(164972,10,'T37.5X3S ','Poisoning by antiviral drugs, assault, sequela','Y','0000-00-00 00:00:00'),(164973,10,'T37.5X4A ','Poisoning by antiviral drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(164974,10,'T37.5X4D ','Poisoning by antiviral drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(164975,10,'T37.5X4S ','Poisoning by antiviral drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(164976,10,'T37.5X5A ','Adverse effect of antiviral drugs, initial encounter','Y','0000-00-00 00:00:00'),(164977,10,'T37.5X5D ','Adverse effect of antiviral drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(164978,10,'T37.5X5S ','Adverse effect of antiviral drugs, sequela','Y','0000-00-00 00:00:00'),(164979,10,'T37.5X6A ','Underdosing of antiviral drugs, initial encounter','Y','0000-00-00 00:00:00'),(164980,10,'T37.5X6D ','Underdosing of antiviral drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(164981,10,'T37.5X6S ','Underdosing of antiviral drugs, sequela','Y','0000-00-00 00:00:00'),(164982,10,'T37.8X1A ','Poisoning by other specified systemic anti-infectives and antiparasitics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(164983,10,'T37.8X1D ','Poisoning by other specified systemic anti-infectives and antiparasitics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(164984,10,'T37.8X1S ','Poisoning by other specified systemic anti-infectives and antiparasitics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(164985,10,'T37.8X2A ','Poisoning by other specified systemic anti-infectives and antiparasitics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(164986,10,'T37.8X2D ','Poisoning by other specified systemic anti-infectives and antiparasitics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(164987,10,'T37.8X2S ','Poisoning by other specified systemic anti-infectives and antiparasitics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(164988,10,'T37.8X3A ','Poisoning by other specified systemic anti-infectives and antiparasitics, assault, initial encounter','Y','0000-00-00 00:00:00'),(164989,10,'T37.8X3D ','Poisoning by other specified systemic anti-infectives and antiparasitics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(164990,10,'T37.8X3S ','Poisoning by other specified systemic anti-infectives and antiparasitics, assault, sequela','Y','0000-00-00 00:00:00'),(164991,10,'T37.8X4A ','Poisoning by other specified systemic anti-infectives and antiparasitics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(164992,10,'T37.8X4D ','Poisoning by other specified systemic anti-infectives and antiparasitics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(164993,10,'T37.8X4S ','Poisoning by other specified systemic anti-infectives and antiparasitics, undetermined, sequela','Y','0000-00-00 00:00:00'),(164994,10,'T37.8X5A ','Adverse effect of other specified systemic anti-infectives and antiparasitics, initial encounter','Y','0000-00-00 00:00:00'),(164995,10,'T37.8X5D ','Adverse effect of other specified systemic anti-infectives and antiparasitics, subsequent encounter','Y','0000-00-00 00:00:00'),(164996,10,'T37.8X5S ','Adverse effect of other specified systemic anti-infectives and antiparasitics, sequela','Y','0000-00-00 00:00:00'),(164997,10,'T37.8X6A ','Underdosing of other specified systemic anti-infectives and antiparasitics, initial encounter','Y','0000-00-00 00:00:00'),(164998,10,'T37.8X6D ','Underdosing of other specified systemic anti-infectives and antiparasitics, subsequent encounter','Y','0000-00-00 00:00:00'),(164999,10,'T37.8X6S ','Underdosing of other specified systemic anti-infectives and antiparasitics, sequela','Y','0000-00-00 00:00:00'),(165000,10,'T37.91XA ','Poisoning by unspecified systemic anti-infective and antiparasitics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165001,10,'T37.91XD ','Poisoning by unspecified systemic anti-infective and antiparasitics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165002,10,'T37.91XS ','Poisoning by unspecified systemic anti-infective and antiparasitics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165003,10,'T37.92XA ','Poisoning by unspecified systemic anti-infective and antiparasitics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165004,10,'T37.92XD ','Poisoning by unspecified systemic anti-infective and antiparasitics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165005,10,'T37.92XS ','Poisoning by unspecified systemic anti-infective and antiparasitics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165006,10,'T37.93XA ','Poisoning by unspecified systemic anti-infective and antiparasitics, assault, initial encounter','Y','0000-00-00 00:00:00'),(165007,10,'T37.93XD ','Poisoning by unspecified systemic anti-infective and antiparasitics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165008,10,'T37.93XS ','Poisoning by unspecified systemic anti-infective and antiparasitics, assault, sequela','Y','0000-00-00 00:00:00'),(165009,10,'T37.94XA ','Poisoning by unspecified systemic anti-infective and antiparasitics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165010,10,'T37.94XD ','Poisoning by unspecified systemic anti-infective and antiparasitics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165011,10,'T37.94XS ','Poisoning by unspecified systemic anti-infective and antiparasitics, undetermined, sequela','Y','0000-00-00 00:00:00'),(165012,10,'T37.95XA ','Adverse effect of unspecified systemic anti-infective and antiparasitic, initial encounter','Y','0000-00-00 00:00:00'),(165013,10,'T37.95XD ','Adverse effect of unspecified systemic anti-infective and antiparasitic, subsequent encounter','Y','0000-00-00 00:00:00'),(165014,10,'T37.95XS ','Adverse effect of unspecified systemic anti-infective and antiparasitic, sequela','Y','0000-00-00 00:00:00'),(165015,10,'T37.96XA ','Underdosing of unspecified systemic anti-infectives and antiparasitics, initial encounter','Y','0000-00-00 00:00:00'),(165016,10,'T37.96XD ','Underdosing of unspecified systemic anti-infectives and antiparasitics, subsequent encounter','Y','0000-00-00 00:00:00'),(165017,10,'T37.96XS ','Underdosing of unspecified systemic anti-infectives and antiparasitics, sequela','Y','0000-00-00 00:00:00'),(165018,10,'T38.0X1A ','Poisoning by glucocorticoids and synthetic analogues, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165019,10,'T38.0X1D ','Poisoning by glucocorticoids and synthetic analogues, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165020,10,'T38.0X1S ','Poisoning by glucocorticoids and synthetic analogues, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165021,10,'T38.0X2A ','Poisoning by glucocorticoids and synthetic analogues, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165022,10,'T38.0X2D ','Poisoning by glucocorticoids and synthetic analogues, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165023,10,'T38.0X2S ','Poisoning by glucocorticoids and synthetic analogues, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165024,10,'T38.0X3A ','Poisoning by glucocorticoids and synthetic analogues, assault, initial encounter','Y','0000-00-00 00:00:00'),(165025,10,'T38.0X3D ','Poisoning by glucocorticoids and synthetic analogues, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165026,10,'T38.0X3S ','Poisoning by glucocorticoids and synthetic analogues, assault, sequela','Y','0000-00-00 00:00:00'),(165027,10,'T38.0X4A ','Poisoning by glucocorticoids and synthetic analogues, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165028,10,'T38.0X4D ','Poisoning by glucocorticoids and synthetic analogues, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165029,10,'T38.0X4S ','Poisoning by glucocorticoids and synthetic analogues, undetermined, sequela','Y','0000-00-00 00:00:00'),(165030,10,'T38.0X5A ','Adverse effect of glucocorticoids and synthetic analogues, initial encounter','Y','0000-00-00 00:00:00'),(165031,10,'T38.0X5D ','Adverse effect of glucocorticoids and synthetic analogues, subsequent encounter','Y','0000-00-00 00:00:00'),(165032,10,'T38.0X5S ','Adverse effect of glucocorticoids and synthetic analogues, sequela','Y','0000-00-00 00:00:00'),(165033,10,'T38.0X6A ','Underdosing of glucocorticoids and synthetic analogues, initial encounter','Y','0000-00-00 00:00:00'),(165034,10,'T38.0X6D ','Underdosing of glucocorticoids and synthetic analogues, subsequent encounter','Y','0000-00-00 00:00:00'),(165035,10,'T38.0X6S ','Underdosing of glucocorticoids and synthetic analogues, sequela','Y','0000-00-00 00:00:00'),(165036,10,'T38.1X1A ','Poisoning by thyroid hormones and substitutes, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165037,10,'T38.1X1D ','Poisoning by thyroid hormones and substitutes, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165038,10,'T38.1X1S ','Poisoning by thyroid hormones and substitutes, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165039,10,'T38.1X2A ','Poisoning by thyroid hormones and substitutes, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165040,10,'T38.1X2D ','Poisoning by thyroid hormones and substitutes, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165041,10,'T38.1X2S ','Poisoning by thyroid hormones and substitutes, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165042,10,'T38.1X3A ','Poisoning by thyroid hormones and substitutes, assault, initial encounter','Y','0000-00-00 00:00:00'),(165043,10,'T38.1X3D ','Poisoning by thyroid hormones and substitutes, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165044,10,'T38.1X3S ','Poisoning by thyroid hormones and substitutes, assault, sequela','Y','0000-00-00 00:00:00'),(165045,10,'T38.1X4A ','Poisoning by thyroid hormones and substitutes, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165046,10,'T38.1X4D ','Poisoning by thyroid hormones and substitutes, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165047,10,'T38.1X4S ','Poisoning by thyroid hormones and substitutes, undetermined, sequela','Y','0000-00-00 00:00:00'),(165048,10,'T38.1X5A ','Adverse effect of thyroid hormones and substitutes, initial encounter','Y','0000-00-00 00:00:00'),(165049,10,'T38.1X5D ','Adverse effect of thyroid hormones and substitutes, subsequent encounter','Y','0000-00-00 00:00:00'),(165050,10,'T38.1X5S ','Adverse effect of thyroid hormones and substitutes, sequela','Y','0000-00-00 00:00:00'),(165051,10,'T38.1X6A ','Underdosing of thyroid hormones and substitutes, initial encounter','Y','0000-00-00 00:00:00'),(165052,10,'T38.1X6D ','Underdosing of thyroid hormones and substitutes, subsequent encounter','Y','0000-00-00 00:00:00'),(165053,10,'T38.1X6S ','Underdosing of thyroid hormones and substitutes, sequela','Y','0000-00-00 00:00:00'),(165054,10,'T38.2X1A ','Poisoning by antithyroid drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165055,10,'T38.2X1D ','Poisoning by antithyroid drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165056,10,'T38.2X1S ','Poisoning by antithyroid drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165057,10,'T38.2X2A ','Poisoning by antithyroid drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165058,10,'T38.2X2D ','Poisoning by antithyroid drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165059,10,'T38.2X2S ','Poisoning by antithyroid drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165060,10,'T38.2X3A ','Poisoning by antithyroid drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(165061,10,'T38.2X3D ','Poisoning by antithyroid drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165062,10,'T38.2X3S ','Poisoning by antithyroid drugs, assault, sequela','Y','0000-00-00 00:00:00'),(165063,10,'T38.2X4A ','Poisoning by antithyroid drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165064,10,'T38.2X4D ','Poisoning by antithyroid drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165065,10,'T38.2X4S ','Poisoning by antithyroid drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(165066,10,'T38.2X5A ','Adverse effect of antithyroid drugs, initial encounter','Y','0000-00-00 00:00:00'),(165067,10,'T38.2X5D ','Adverse effect of antithyroid drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(165068,10,'T38.2X5S ','Adverse effect of antithyroid drugs, sequela','Y','0000-00-00 00:00:00'),(165069,10,'T38.2X6A ','Underdosing of antithyroid drugs, initial encounter','Y','0000-00-00 00:00:00'),(165070,10,'T38.2X6D ','Underdosing of antithyroid drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(165071,10,'T38.2X6S ','Underdosing of antithyroid drugs, sequela','Y','0000-00-00 00:00:00'),(165072,10,'T38.3X1A ','Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165073,10,'T38.3X1D ','Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165074,10,'T38.3X1S ','Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165075,10,'T38.3X2A ','Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165076,10,'T38.3X2D ','Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165077,10,'T38.3X2S ','Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165078,10,'T38.3X3A ','Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(165079,10,'T38.3X3D ','Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165080,10,'T38.3X3S ','Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, assault, sequela','Y','0000-00-00 00:00:00'),(165081,10,'T38.3X4A ','Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165082,10,'T38.3X4D ','Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165083,10,'T38.3X4S ','Poisoning by insulin and oral hypoglycemic [antidiabetic] drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(165084,10,'T38.3X5A ','Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs, initial encounter','Y','0000-00-00 00:00:00'),(165085,10,'T38.3X5D ','Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(165086,10,'T38.3X5S ','Adverse effect of insulin and oral hypoglycemic [antidiabetic] drugs, sequela','Y','0000-00-00 00:00:00'),(165087,10,'T38.3X6A ','Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs, initial encounter','Y','0000-00-00 00:00:00'),(165088,10,'T38.3X6D ','Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(165089,10,'T38.3X6S ','Underdosing of insulin and oral hypoglycemic [antidiabetic] drugs, sequela','Y','0000-00-00 00:00:00'),(165090,10,'T38.4X1A ','Poisoning by oral contraceptives, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165091,10,'T38.4X1D ','Poisoning by oral contraceptives, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165092,10,'T38.4X1S ','Poisoning by oral contraceptives, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165093,10,'T38.4X2A ','Poisoning by oral contraceptives, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165094,10,'T38.4X2D ','Poisoning by oral contraceptives, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165095,10,'T38.4X2S ','Poisoning by oral contraceptives, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165096,10,'T38.4X3A ','Poisoning by oral contraceptives, assault, initial encounter','Y','0000-00-00 00:00:00'),(165097,10,'T38.4X3D ','Poisoning by oral contraceptives, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165098,10,'T38.4X3S ','Poisoning by oral contraceptives, assault, sequela','Y','0000-00-00 00:00:00'),(165099,10,'T38.4X4A ','Poisoning by oral contraceptives, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165100,10,'T38.4X4D ','Poisoning by oral contraceptives, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165101,10,'T38.4X4S ','Poisoning by oral contraceptives, undetermined, sequela','Y','0000-00-00 00:00:00'),(165102,10,'T38.4X5A ','Adverse effect of oral contraceptives, initial encounter','Y','0000-00-00 00:00:00'),(165103,10,'T38.4X5D ','Adverse effect of oral contraceptives, subsequent encounter','Y','0000-00-00 00:00:00'),(165104,10,'T38.4X5S ','Adverse effect of oral contraceptives, sequela','Y','0000-00-00 00:00:00'),(165105,10,'T38.4X6A ','Underdosing of oral contraceptives, initial encounter','Y','0000-00-00 00:00:00'),(165106,10,'T38.4X6D ','Underdosing of oral contraceptives, subsequent encounter','Y','0000-00-00 00:00:00'),(165107,10,'T38.4X6S ','Underdosing of oral contraceptives, sequela','Y','0000-00-00 00:00:00'),(165108,10,'T38.5X1A ','Poisoning by other estrogens and progestogens, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165109,10,'T38.5X1D ','Poisoning by other estrogens and progestogens, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165110,10,'T38.5X1S ','Poisoning by other estrogens and progestogens, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165111,10,'T38.5X2A ','Poisoning by other estrogens and progestogens, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165112,10,'T38.5X2D ','Poisoning by other estrogens and progestogens, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165113,10,'T38.5X2S ','Poisoning by other estrogens and progestogens, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165114,10,'T38.5X3A ','Poisoning by other estrogens and progestogens, assault, initial encounter','Y','0000-00-00 00:00:00'),(165115,10,'T38.5X3D ','Poisoning by other estrogens and progestogens, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165116,10,'T38.5X3S ','Poisoning by other estrogens and progestogens, assault, sequela','Y','0000-00-00 00:00:00'),(165117,10,'T38.5X4A ','Poisoning by other estrogens and progestogens, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165118,10,'T38.5X4D ','Poisoning by other estrogens and progestogens, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165119,10,'T38.5X4S ','Poisoning by other estrogens and progestogens, undetermined, sequela','Y','0000-00-00 00:00:00'),(165120,10,'T38.5X5A ','Adverse effect of other estrogens and progestogens, initial encounter','Y','0000-00-00 00:00:00'),(165121,10,'T38.5X5D ','Adverse effect of other estrogens and progestogens, subsequent encounter','Y','0000-00-00 00:00:00'),(165122,10,'T38.5X5S ','Adverse effect of other estrogens and progestogens, sequela','Y','0000-00-00 00:00:00'),(165123,10,'T38.5X6A ','Underdosing of other estrogens and progestogens, initial encounter','Y','0000-00-00 00:00:00'),(165124,10,'T38.5X6D ','Underdosing of other estrogens and progestogens, subsequent encounter','Y','0000-00-00 00:00:00'),(165125,10,'T38.5X6S ','Underdosing of other estrogens and progestogens, sequela','Y','0000-00-00 00:00:00'),(165126,10,'T38.6X1A ','Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165127,10,'T38.6X1D ','Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165128,10,'T38.6X1S ','Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165129,10,'T38.6X2A ','Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165130,10,'T38.6X2D ','Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165131,10,'T38.6X2S ','Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165132,10,'T38.6X3A ','Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, assault, initial encounter','Y','0000-00-00 00:00:00'),(165133,10,'T38.6X3D ','Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165134,10,'T38.6X3S ','Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, assault, sequela','Y','0000-00-00 00:00:00'),(165135,10,'T38.6X4A ','Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165136,10,'T38.6X4D ','Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165137,10,'T38.6X4S ','Poisoning by antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, undetermined, sequela','Y','0000-00-00 00:00:00'),(165138,10,'T38.6X5A ','Adverse effect of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(165139,10,'T38.6X5D ','Adverse effect of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(165140,10,'T38.6X5S ','Adverse effect of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(165141,10,'T38.6X6A ','Underdosing of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(165142,10,'T38.6X6D ','Underdosing of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(165143,10,'T38.6X6S ','Underdosing of antigonadotrophins, antiestrogens, antiandrogens, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(165144,10,'T38.7X1A ','Poisoning by androgens and anabolic congeners, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165145,10,'T38.7X1D ','Poisoning by androgens and anabolic congeners, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165146,10,'T38.7X1S ','Poisoning by androgens and anabolic congeners, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165147,10,'T38.7X2A ','Poisoning by androgens and anabolic congeners, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165148,10,'T38.7X2D ','Poisoning by androgens and anabolic congeners, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165149,10,'T38.7X2S ','Poisoning by androgens and anabolic congeners, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165150,10,'T38.7X3A ','Poisoning by androgens and anabolic congeners, assault, initial encounter','Y','0000-00-00 00:00:00'),(165151,10,'T38.7X3D ','Poisoning by androgens and anabolic congeners, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165152,10,'T38.7X3S ','Poisoning by androgens and anabolic congeners, assault, sequela','Y','0000-00-00 00:00:00'),(165153,10,'T38.7X4A ','Poisoning by androgens and anabolic congeners, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165154,10,'T38.7X4D ','Poisoning by androgens and anabolic congeners, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165155,10,'T38.7X4S ','Poisoning by androgens and anabolic congeners, undetermined, sequela','Y','0000-00-00 00:00:00'),(165156,10,'T38.7X5A ','Adverse effect of androgens and anabolic congeners, initial encounter','Y','0000-00-00 00:00:00'),(165157,10,'T38.7X5D ','Adverse effect of androgens and anabolic congeners, subsequent encounter','Y','0000-00-00 00:00:00'),(165158,10,'T38.7X5S ','Adverse effect of androgens and anabolic congeners, sequela','Y','0000-00-00 00:00:00'),(165159,10,'T38.7X6A ','Underdosing of androgens and anabolic congeners, initial encounter','Y','0000-00-00 00:00:00'),(165160,10,'T38.7X6D ','Underdosing of androgens and anabolic congeners, subsequent encounter','Y','0000-00-00 00:00:00'),(165161,10,'T38.7X6S ','Underdosing of androgens and anabolic congeners, sequela','Y','0000-00-00 00:00:00'),(165162,10,'T38.801A ','Poisoning by unspecified hormones and synthetic substitutes, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165163,10,'T38.801D ','Poisoning by unspecified hormones and synthetic substitutes, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165164,10,'T38.801S ','Poisoning by unspecified hormones and synthetic substitutes, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165165,10,'T38.802A ','Poisoning by unspecified hormones and synthetic substitutes, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165166,10,'T38.802D ','Poisoning by unspecified hormones and synthetic substitutes, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165167,10,'T38.802S ','Poisoning by unspecified hormones and synthetic substitutes, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165168,10,'T38.803A ','Poisoning by unspecified hormones and synthetic substitutes, assault, initial encounter','Y','0000-00-00 00:00:00'),(165169,10,'T38.803D ','Poisoning by unspecified hormones and synthetic substitutes, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165170,10,'T38.803S ','Poisoning by unspecified hormones and synthetic substitutes, assault, sequela','Y','0000-00-00 00:00:00'),(165171,10,'T38.804A ','Poisoning by unspecified hormones and synthetic substitutes, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165172,10,'T38.804D ','Poisoning by unspecified hormones and synthetic substitutes, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165173,10,'T38.804S ','Poisoning by unspecified hormones and synthetic substitutes, undetermined, sequela','Y','0000-00-00 00:00:00'),(165174,10,'T38.805A ','Adverse effect of unspecified hormones and synthetic substitutes, initial encounter','Y','0000-00-00 00:00:00'),(165175,10,'T38.805D ','Adverse effect of unspecified hormones and synthetic substitutes, subsequent encounter','Y','0000-00-00 00:00:00'),(165176,10,'T38.805S ','Adverse effect of unspecified hormones and synthetic substitutes, sequela','Y','0000-00-00 00:00:00'),(165177,10,'T38.806A ','Underdosing of unspecified hormones and synthetic substitutes, initial encounter','Y','0000-00-00 00:00:00'),(165178,10,'T38.806D ','Underdosing of unspecified hormones and synthetic substitutes, subsequent encounter','Y','0000-00-00 00:00:00'),(165179,10,'T38.806S ','Underdosing of unspecified hormones and synthetic substitutes, sequela','Y','0000-00-00 00:00:00'),(165180,10,'T38.811A ','Poisoning by anterior pituitary [adenohypophyseal] hormones, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165181,10,'T38.811D ','Poisoning by anterior pituitary [adenohypophyseal] hormones, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165182,10,'T38.811S ','Poisoning by anterior pituitary [adenohypophyseal] hormones, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165183,10,'T38.812A ','Poisoning by anterior pituitary [adenohypophyseal] hormones, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165184,10,'T38.812D ','Poisoning by anterior pituitary [adenohypophyseal] hormones, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165185,10,'T38.812S ','Poisoning by anterior pituitary [adenohypophyseal] hormones, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165186,10,'T38.813A ','Poisoning by anterior pituitary [adenohypophyseal] hormones, assault, initial encounter','Y','0000-00-00 00:00:00'),(165187,10,'T38.813D ','Poisoning by anterior pituitary [adenohypophyseal] hormones, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165188,10,'T38.813S ','Poisoning by anterior pituitary [adenohypophyseal] hormones, assault, sequela','Y','0000-00-00 00:00:00'),(165189,10,'T38.814A ','Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165190,10,'T38.814D ','Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165191,10,'T38.814S ','Poisoning by anterior pituitary [adenohypophyseal] hormones, undetermined, sequela','Y','0000-00-00 00:00:00'),(165192,10,'T38.815A ','Adverse effect of anterior pituitary [adenohypophyseal] hormones, initial encounter','Y','0000-00-00 00:00:00'),(165193,10,'T38.815D ','Adverse effect of anterior pituitary [adenohypophyseal] hormones, subsequent encounter','Y','0000-00-00 00:00:00'),(165194,10,'T38.815S ','Adverse effect of anterior pituitary [adenohypophyseal] hormones, sequela','Y','0000-00-00 00:00:00'),(165195,10,'T38.816A ','Underdosing of anterior pituitary [adenohypophyseal] hormones, initial encounter','Y','0000-00-00 00:00:00'),(165196,10,'T38.816D ','Underdosing of anterior pituitary [adenohypophyseal] hormones, subsequent encounter','Y','0000-00-00 00:00:00'),(165197,10,'T38.816S ','Underdosing of anterior pituitary [adenohypophyseal] hormones, sequela','Y','0000-00-00 00:00:00'),(165198,10,'T38.891A ','Poisoning by other hormones and synthetic substitutes, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165199,10,'T38.891D ','Poisoning by other hormones and synthetic substitutes, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165200,10,'T38.891S ','Poisoning by other hormones and synthetic substitutes, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165201,10,'T38.892A ','Poisoning by other hormones and synthetic substitutes, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165202,10,'T38.892D ','Poisoning by other hormones and synthetic substitutes, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165203,10,'T38.892S ','Poisoning by other hormones and synthetic substitutes, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165204,10,'T38.893A ','Poisoning by other hormones and synthetic substitutes, assault, initial encounter','Y','0000-00-00 00:00:00'),(165205,10,'T38.893D ','Poisoning by other hormones and synthetic substitutes, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165206,10,'T38.893S ','Poisoning by other hormones and synthetic substitutes, assault, sequela','Y','0000-00-00 00:00:00'),(165207,10,'T38.894A ','Poisoning by other hormones and synthetic substitutes, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165208,10,'T38.894D ','Poisoning by other hormones and synthetic substitutes, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165209,10,'T38.894S ','Poisoning by other hormones and synthetic substitutes, undetermined, sequela','Y','0000-00-00 00:00:00'),(165210,10,'T38.895A ','Adverse effect of other hormones and synthetic substitutes, initial encounter','Y','0000-00-00 00:00:00'),(165211,10,'T38.895D ','Adverse effect of other hormones and synthetic substitutes, subsequent encounter','Y','0000-00-00 00:00:00'),(165212,10,'T38.895S ','Adverse effect of other hormones and synthetic substitutes, sequela','Y','0000-00-00 00:00:00'),(165213,10,'T38.896A ','Underdosing of other hormones and synthetic substitutes, initial encounter','Y','0000-00-00 00:00:00'),(165214,10,'T38.896D ','Underdosing of other hormones and synthetic substitutes, subsequent encounter','Y','0000-00-00 00:00:00'),(165215,10,'T38.896S ','Underdosing of other hormones and synthetic substitutes, sequela','Y','0000-00-00 00:00:00'),(165216,10,'T38.901A ','Poisoning by unspecified hormone antagonists, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165217,10,'T38.901D ','Poisoning by unspecified hormone antagonists, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165218,10,'T38.901S ','Poisoning by unspecified hormone antagonists, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165219,10,'T38.902A ','Poisoning by unspecified hormone antagonists, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165220,10,'T38.902D ','Poisoning by unspecified hormone antagonists, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165221,10,'T38.902S ','Poisoning by unspecified hormone antagonists, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165222,10,'T38.903A ','Poisoning by unspecified hormone antagonists, assault, initial encounter','Y','0000-00-00 00:00:00'),(165223,10,'T38.903D ','Poisoning by unspecified hormone antagonists, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165224,10,'T38.903S ','Poisoning by unspecified hormone antagonists, assault, sequela','Y','0000-00-00 00:00:00'),(165225,10,'T38.904A ','Poisoning by unspecified hormone antagonists, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165226,10,'T38.904D ','Poisoning by unspecified hormone antagonists, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165227,10,'T38.904S ','Poisoning by unspecified hormone antagonists, undetermined, sequela','Y','0000-00-00 00:00:00'),(165228,10,'T38.905A ','Adverse effect of unspecified hormone antagonists, initial encounter','Y','0000-00-00 00:00:00'),(165229,10,'T38.905D ','Adverse effect of unspecified hormone antagonists, subsequent encounter','Y','0000-00-00 00:00:00'),(165230,10,'T38.905S ','Adverse effect of unspecified hormone antagonists, sequela','Y','0000-00-00 00:00:00'),(165231,10,'T38.906A ','Underdosing of unspecified hormone antagonists, initial encounter','Y','0000-00-00 00:00:00'),(165232,10,'T38.906D ','Underdosing of unspecified hormone antagonists, subsequent encounter','Y','0000-00-00 00:00:00'),(165233,10,'T38.906S ','Underdosing of unspecified hormone antagonists, sequela','Y','0000-00-00 00:00:00'),(165234,10,'T38.991A ','Poisoning by other hormone antagonists, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165235,10,'T38.991D ','Poisoning by other hormone antagonists, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165236,10,'T38.991S ','Poisoning by other hormone antagonists, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165237,10,'T38.992A ','Poisoning by other hormone antagonists, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165238,10,'T38.992D ','Poisoning by other hormone antagonists, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165239,10,'T38.992S ','Poisoning by other hormone antagonists, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165240,10,'T38.993A ','Poisoning by other hormone antagonists, assault, initial encounter','Y','0000-00-00 00:00:00'),(165241,10,'T38.993D ','Poisoning by other hormone antagonists, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165242,10,'T38.993S ','Poisoning by other hormone antagonists, assault, sequela','Y','0000-00-00 00:00:00'),(165243,10,'T38.994A ','Poisoning by other hormone antagonists, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165244,10,'T38.994D ','Poisoning by other hormone antagonists, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165245,10,'T38.994S ','Poisoning by other hormone antagonists, undetermined, sequela','Y','0000-00-00 00:00:00'),(165246,10,'T38.995A ','Adverse effect of other hormone antagonists, initial encounter','Y','0000-00-00 00:00:00'),(165247,10,'T38.995D ','Adverse effect of other hormone antagonists, subsequent encounter','Y','0000-00-00 00:00:00'),(165248,10,'T38.995S ','Adverse effect of other hormone antagonists, sequela','Y','0000-00-00 00:00:00'),(165249,10,'T38.996A ','Underdosing of other hormone antagonists, initial encounter','Y','0000-00-00 00:00:00'),(165250,10,'T38.996D ','Underdosing of other hormone antagonists, subsequent encounter','Y','0000-00-00 00:00:00'),(165251,10,'T38.996S ','Underdosing of other hormone antagonists, sequela','Y','0000-00-00 00:00:00'),(165252,10,'T39.011A ','Poisoning by aspirin, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165253,10,'T39.011D ','Poisoning by aspirin, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165254,10,'T39.011S ','Poisoning by aspirin, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165255,10,'T39.012A ','Poisoning by aspirin, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165256,10,'T39.012D ','Poisoning by aspirin, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165257,10,'T39.012S ','Poisoning by aspirin, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165258,10,'T39.013A ','Poisoning by aspirin, assault, initial encounter','Y','0000-00-00 00:00:00'),(165259,10,'T39.013D ','Poisoning by aspirin, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165260,10,'T39.013S ','Poisoning by aspirin, assault, sequela','Y','0000-00-00 00:00:00'),(165261,10,'T39.014A ','Poisoning by aspirin, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165262,10,'T39.014D ','Poisoning by aspirin, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165263,10,'T39.014S ','Poisoning by aspirin, undetermined, sequela','Y','0000-00-00 00:00:00'),(165264,10,'T39.015A ','Adverse effect of aspirin, initial encounter','Y','0000-00-00 00:00:00'),(165265,10,'T39.015D ','Adverse effect of aspirin, subsequent encounter','Y','0000-00-00 00:00:00'),(165266,10,'T39.015S ','Adverse effect of aspirin, sequela','Y','0000-00-00 00:00:00'),(165267,10,'T39.016A ','Underdosing of aspirin, initial encounter','Y','0000-00-00 00:00:00'),(165268,10,'T39.016D ','Underdosing of aspirin, subsequent encounter','Y','0000-00-00 00:00:00'),(165269,10,'T39.016S ','Underdosing of aspirin, sequela','Y','0000-00-00 00:00:00'),(165270,10,'T39.091A ','Poisoning by salicylates, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165271,10,'T39.091D ','Poisoning by salicylates, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165272,10,'T39.091S ','Poisoning by salicylates, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165273,10,'T39.092A ','Poisoning by salicylates, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165274,10,'T39.092D ','Poisoning by salicylates, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165275,10,'T39.092S ','Poisoning by salicylates, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165276,10,'T39.093A ','Poisoning by salicylates, assault, initial encounter','Y','0000-00-00 00:00:00'),(165277,10,'T39.093D ','Poisoning by salicylates, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165278,10,'T39.093S ','Poisoning by salicylates, assault, sequela','Y','0000-00-00 00:00:00'),(165279,10,'T39.094A ','Poisoning by salicylates, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165280,10,'T39.094D ','Poisoning by salicylates, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165281,10,'T39.094S ','Poisoning by salicylates, undetermined, sequela','Y','0000-00-00 00:00:00'),(165282,10,'T39.095A ','Adverse effect of salicylates, initial encounter','Y','0000-00-00 00:00:00'),(165283,10,'T39.095D ','Adverse effect of salicylates, subsequent encounter','Y','0000-00-00 00:00:00'),(165284,10,'T39.095S ','Adverse effect of salicylates, sequela','Y','0000-00-00 00:00:00'),(165285,10,'T39.096A ','Underdosing of salicylates, initial encounter','Y','0000-00-00 00:00:00'),(165286,10,'T39.096D ','Underdosing of salicylates, subsequent encounter','Y','0000-00-00 00:00:00'),(165287,10,'T39.096S ','Underdosing of salicylates, sequela','Y','0000-00-00 00:00:00'),(165288,10,'T39.1X1A ','Poisoning by 4-Aminophenol derivatives, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165289,10,'T39.1X1D ','Poisoning by 4-Aminophenol derivatives, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165290,10,'T39.1X1S ','Poisoning by 4-Aminophenol derivatives, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165291,10,'T39.1X2A ','Poisoning by 4-Aminophenol derivatives, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165292,10,'T39.1X2D ','Poisoning by 4-Aminophenol derivatives, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165293,10,'T39.1X2S ','Poisoning by 4-Aminophenol derivatives, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165294,10,'T39.1X3A ','Poisoning by 4-Aminophenol derivatives, assault, initial encounter','Y','0000-00-00 00:00:00'),(165295,10,'T39.1X3D ','Poisoning by 4-Aminophenol derivatives, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165296,10,'T39.1X3S ','Poisoning by 4-Aminophenol derivatives, assault, sequela','Y','0000-00-00 00:00:00'),(165297,10,'T39.1X4A ','Poisoning by 4-Aminophenol derivatives, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165298,10,'T39.1X4D ','Poisoning by 4-Aminophenol derivatives, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165299,10,'T39.1X4S ','Poisoning by 4-Aminophenol derivatives, undetermined, sequela','Y','0000-00-00 00:00:00'),(165300,10,'T39.1X5A ','Adverse effect of 4-Aminophenol derivatives, initial encounter','Y','0000-00-00 00:00:00'),(165301,10,'T39.1X5D ','Adverse effect of 4-Aminophenol derivatives, subsequent encounter','Y','0000-00-00 00:00:00'),(165302,10,'T39.1X5S ','Adverse effect of 4-Aminophenol derivatives, sequela','Y','0000-00-00 00:00:00'),(165303,10,'T39.1X6A ','Underdosing of 4-Aminophenol derivatives, initial encounter','Y','0000-00-00 00:00:00'),(165304,10,'T39.1X6D ','Underdosing of 4-Aminophenol derivatives, subsequent encounter','Y','0000-00-00 00:00:00'),(165305,10,'T39.1X6S ','Underdosing of 4-Aminophenol derivatives, sequela','Y','0000-00-00 00:00:00'),(165306,10,'T39.2X1A ','Poisoning by pyrazolone derivatives, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165307,10,'T39.2X1D ','Poisoning by pyrazolone derivatives, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165308,10,'T39.2X1S ','Poisoning by pyrazolone derivatives, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165309,10,'T39.2X2A ','Poisoning by pyrazolone derivatives, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165310,10,'T39.2X2D ','Poisoning by pyrazolone derivatives, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165311,10,'T39.2X2S ','Poisoning by pyrazolone derivatives, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165312,10,'T39.2X3A ','Poisoning by pyrazolone derivatives, assault, initial encounter','Y','0000-00-00 00:00:00'),(165313,10,'T39.2X3D ','Poisoning by pyrazolone derivatives, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165314,10,'T39.2X3S ','Poisoning by pyrazolone derivatives, assault, sequela','Y','0000-00-00 00:00:00'),(165315,10,'T39.2X4A ','Poisoning by pyrazolone derivatives, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165316,10,'T39.2X4D ','Poisoning by pyrazolone derivatives, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165317,10,'T39.2X4S ','Poisoning by pyrazolone derivatives, undetermined, sequela','Y','0000-00-00 00:00:00'),(165318,10,'T39.2X5A ','Adverse effect of pyrazolone derivatives, initial encounter','Y','0000-00-00 00:00:00'),(165319,10,'T39.2X5D ','Adverse effect of pyrazolone derivatives, subsequent encounter','Y','0000-00-00 00:00:00'),(165320,10,'T39.2X5S ','Adverse effect of pyrazolone derivatives, sequela','Y','0000-00-00 00:00:00'),(165321,10,'T39.2X6A ','Underdosing of pyrazolone derivatives, initial encounter','Y','0000-00-00 00:00:00'),(165322,10,'T39.2X6D ','Underdosing of pyrazolone derivatives, subsequent encounter','Y','0000-00-00 00:00:00'),(165323,10,'T39.2X6S ','Underdosing of pyrazolone derivatives, sequela','Y','0000-00-00 00:00:00'),(165324,10,'T39.311A ','Poisoning by propionic acid derivatives, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165325,10,'T39.311D ','Poisoning by propionic acid derivatives, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165326,10,'T39.311S ','Poisoning by propionic acid derivatives, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165327,10,'T39.312A ','Poisoning by propionic acid derivatives, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165328,10,'T39.312D ','Poisoning by propionic acid derivatives, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165329,10,'T39.312S ','Poisoning by propionic acid derivatives, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165330,10,'T39.313A ','Poisoning by propionic acid derivatives, assault, initial encounter','Y','0000-00-00 00:00:00'),(165331,10,'T39.313D ','Poisoning by propionic acid derivatives, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165332,10,'T39.313S ','Poisoning by propionic acid derivatives, assault, sequela','Y','0000-00-00 00:00:00'),(165333,10,'T39.314A ','Poisoning by propionic acid derivatives, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165334,10,'T39.314D ','Poisoning by propionic acid derivatives, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165335,10,'T39.314S ','Poisoning by propionic acid derivatives, undetermined, sequela','Y','0000-00-00 00:00:00'),(165336,10,'T39.315A ','Adverse effect of propionic acid derivatives, initial encounter','Y','0000-00-00 00:00:00'),(165337,10,'T39.315D ','Adverse effect of propionic acid derivatives, subsequent encounter','Y','0000-00-00 00:00:00'),(165338,10,'T39.315S ','Adverse effect of propionic acid derivatives, sequela','Y','0000-00-00 00:00:00'),(165339,10,'T39.316A ','Underdosing of propionic acid derivatives, initial encounter','Y','0000-00-00 00:00:00'),(165340,10,'T39.316D ','Underdosing of propionic acid derivatives, subsequent encounter','Y','0000-00-00 00:00:00'),(165341,10,'T39.316S ','Underdosing of propionic acid derivatives, sequela','Y','0000-00-00 00:00:00'),(165342,10,'T39.391A ','Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165343,10,'T39.391D ','Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165344,10,'T39.391S ','Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165345,10,'T39.392A ','Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165346,10,'T39.392D ','Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165347,10,'T39.392S ','Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165348,10,'T39.393A ','Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault, initial encounter','Y','0000-00-00 00:00:00'),(165349,10,'T39.393D ','Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165350,10,'T39.393S ','Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], assault, sequela','Y','0000-00-00 00:00:00'),(165351,10,'T39.394A ','Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165352,10,'T39.394D ','Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165353,10,'T39.394S ','Poisoning by other nonsteroidal anti-inflammatory drugs [NSAID], undetermined, sequela','Y','0000-00-00 00:00:00'),(165354,10,'T39.395A ','Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID], initial encounter','Y','0000-00-00 00:00:00'),(165355,10,'T39.395D ','Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID], subsequent encounter','Y','0000-00-00 00:00:00'),(165356,10,'T39.395S ','Adverse effect of other nonsteroidal anti-inflammatory drugs [NSAID], sequela','Y','0000-00-00 00:00:00'),(165357,10,'T39.396A ','Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID], initial encounter','Y','0000-00-00 00:00:00'),(165358,10,'T39.396D ','Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID], subsequent encounter','Y','0000-00-00 00:00:00'),(165359,10,'T39.396S ','Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID], sequela','Y','0000-00-00 00:00:00'),(165360,10,'T39.4X1A ','Poisoning by antirheumatics, not elsewhere classified, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165361,10,'T39.4X1D ','Poisoning by antirheumatics, not elsewhere classified, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165362,10,'T39.4X1S ','Poisoning by antirheumatics, not elsewhere classified, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165363,10,'T39.4X2A ','Poisoning by antirheumatics, not elsewhere classified, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165364,10,'T39.4X2D ','Poisoning by antirheumatics, not elsewhere classified, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165365,10,'T39.4X2S ','Poisoning by antirheumatics, not elsewhere classified, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165366,10,'T39.4X3A ','Poisoning by antirheumatics, not elsewhere classified, assault, initial encounter','Y','0000-00-00 00:00:00'),(165367,10,'T39.4X3D ','Poisoning by antirheumatics, not elsewhere classified, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165368,10,'T39.4X3S ','Poisoning by antirheumatics, not elsewhere classified, assault, sequela','Y','0000-00-00 00:00:00'),(165369,10,'T39.4X4A ','Poisoning by antirheumatics, not elsewhere classified, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165370,10,'T39.4X4D ','Poisoning by antirheumatics, not elsewhere classified, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165371,10,'T39.4X4S ','Poisoning by antirheumatics, not elsewhere classified, undetermined, sequela','Y','0000-00-00 00:00:00'),(165372,10,'T39.4X5A ','Adverse effect of antirheumatics, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(165373,10,'T39.4X5D ','Adverse effect of antirheumatics, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(165374,10,'T39.4X5S ','Adverse effect of antirheumatics, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(165375,10,'T39.4X6A ','Underdosing of antirheumatics, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(165376,10,'T39.4X6D ','Underdosing of antirheumatics, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(165377,10,'T39.4X6S ','Underdosing of antirheumatics, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(165378,10,'T39.8X1A ','Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165379,10,'T39.8X1D ','Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165380,10,'T39.8X1S ','Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165381,10,'T39.8X2A ','Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165382,10,'T39.8X2D ','Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165383,10,'T39.8X2S ','Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165384,10,'T39.8X3A ','Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, assault, initial encounter','Y','0000-00-00 00:00:00'),(165385,10,'T39.8X3D ','Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165386,10,'T39.8X3S ','Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, assault, sequela','Y','0000-00-00 00:00:00'),(165387,10,'T39.8X4A ','Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165388,10,'T39.8X4D ','Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165389,10,'T39.8X4S ','Poisoning by other nonopioid analgesics and antipyretics, not elsewhere classified, undetermined, sequela','Y','0000-00-00 00:00:00'),(165390,10,'T39.8X5A ','Adverse effect of other nonopioid analgesics and antipyretics, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(165391,10,'T39.8X5D ','Adverse effect of other nonopioid analgesics and antipyretics, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(165392,10,'T39.8X5S ','Adverse effect of other nonopioid analgesics and antipyretics, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(165393,10,'T39.8X6A ','Underdosing of other nonopioid analgesics and antipyretics, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(165394,10,'T39.8X6D ','Underdosing of other nonopioid analgesics and antipyretics, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(165395,10,'T39.8X6S ','Underdosing of other nonopioid analgesics and antipyretics, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(165396,10,'T39.91XA ','Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165397,10,'T39.91XD ','Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165398,10,'T39.91XS ','Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165399,10,'T39.92XA ','Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165400,10,'T39.92XD ','Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165401,10,'T39.92XS ','Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165402,10,'T39.93XA ','Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, assault, initial encounter','Y','0000-00-00 00:00:00'),(165403,10,'T39.93XD ','Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165404,10,'T39.93XS ','Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, assault, sequela','Y','0000-00-00 00:00:00'),(165405,10,'T39.94XA ','Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165406,10,'T39.94XD ','Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165407,10,'T39.94XS ','Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, undetermined, sequela','Y','0000-00-00 00:00:00'),(165408,10,'T39.95XA ','Adverse effect of unspecified nonopioid analgesic, antipyretic and antirheumatic, initial encounter','Y','0000-00-00 00:00:00'),(165409,10,'T39.95XD ','Adverse effect of unspecified nonopioid analgesic, antipyretic and antirheumatic, subsequent encounter','Y','0000-00-00 00:00:00'),(165410,10,'T39.95XS ','Adverse effect of unspecified nonopioid analgesic, antipyretic and antirheumatic, sequela','Y','0000-00-00 00:00:00'),(165411,10,'T39.96XA ','Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic, initial encounter','Y','0000-00-00 00:00:00'),(165412,10,'T39.96XD ','Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic, subsequent encounter','Y','0000-00-00 00:00:00'),(165413,10,'T39.96XS ','Underdosing of unspecified nonopioid analgesic, antipyretic and antirheumatic, sequela','Y','0000-00-00 00:00:00'),(165414,10,'T40.0X1A ','Poisoning by opium, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165415,10,'T40.0X1D ','Poisoning by opium, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165416,10,'T40.0X1S ','Poisoning by opium, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165417,10,'T40.0X2A ','Poisoning by opium, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165418,10,'T40.0X2D ','Poisoning by opium, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165419,10,'T40.0X2S ','Poisoning by opium, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165420,10,'T40.0X3A ','Poisoning by opium, assault, initial encounter','Y','0000-00-00 00:00:00'),(165421,10,'T40.0X3D ','Poisoning by opium, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165422,10,'T40.0X3S ','Poisoning by opium, assault, sequela','Y','0000-00-00 00:00:00'),(165423,10,'T40.0X4A ','Poisoning by opium, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165424,10,'T40.0X4D ','Poisoning by opium, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165425,10,'T40.0X4S ','Poisoning by opium, undetermined, sequela','Y','0000-00-00 00:00:00'),(165426,10,'T40.0X5A ','Adverse effect of opium, initial encounter','Y','0000-00-00 00:00:00'),(165427,10,'T40.0X5D ','Adverse effect of opium, subsequent encounter','Y','0000-00-00 00:00:00'),(165428,10,'T40.0X5S ','Adverse effect of opium, sequela','Y','0000-00-00 00:00:00'),(165429,10,'T40.0X6A ','Underdosing of opium, initial encounter','Y','0000-00-00 00:00:00'),(165430,10,'T40.0X6D ','Underdosing of opium, subsequent encounter','Y','0000-00-00 00:00:00'),(165431,10,'T40.0X6S ','Underdosing of opium, sequela','Y','0000-00-00 00:00:00'),(165432,10,'T40.1X1A ','Poisoning by heroin, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165433,10,'T40.1X1D ','Poisoning by heroin, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165434,10,'T40.1X1S ','Poisoning by heroin, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165435,10,'T40.1X2A ','Poisoning by heroin, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165436,10,'T40.1X2D ','Poisoning by heroin, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165437,10,'T40.1X2S ','Poisoning by heroin, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165438,10,'T40.1X3A ','Poisoning by heroin, assault, initial encounter','Y','0000-00-00 00:00:00'),(165439,10,'T40.1X3D ','Poisoning by heroin, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165440,10,'T40.1X3S ','Poisoning by heroin, assault, sequela','Y','0000-00-00 00:00:00'),(165441,10,'T40.1X4A ','Poisoning by heroin, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165442,10,'T40.1X4D ','Poisoning by heroin, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165443,10,'T40.1X4S ','Poisoning by heroin, undetermined, sequela','Y','0000-00-00 00:00:00'),(165444,10,'T40.2X1A ','Poisoning by other opioids, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165445,10,'T40.2X1D ','Poisoning by other opioids, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165446,10,'T40.2X1S ','Poisoning by other opioids, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165447,10,'T40.2X2A ','Poisoning by other opioids, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165448,10,'T40.2X2D ','Poisoning by other opioids, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165449,10,'T40.2X2S ','Poisoning by other opioids, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165450,10,'T40.2X3A ','Poisoning by other opioids, assault, initial encounter','Y','0000-00-00 00:00:00'),(165451,10,'T40.2X3D ','Poisoning by other opioids, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165452,10,'T40.2X3S ','Poisoning by other opioids, assault, sequela','Y','0000-00-00 00:00:00'),(165453,10,'T40.2X4A ','Poisoning by other opioids, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165454,10,'T40.2X4D ','Poisoning by other opioids, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165455,10,'T40.2X4S ','Poisoning by other opioids, undetermined, sequela','Y','0000-00-00 00:00:00'),(165456,10,'T40.2X5A ','Adverse effect of other opioids, initial encounter','Y','0000-00-00 00:00:00'),(165457,10,'T40.2X5D ','Adverse effect of other opioids, subsequent encounter','Y','0000-00-00 00:00:00'),(165458,10,'T40.2X5S ','Adverse effect of other opioids, sequela','Y','0000-00-00 00:00:00'),(165459,10,'T40.2X6A ','Underdosing of other opioids, initial encounter','Y','0000-00-00 00:00:00'),(165460,10,'T40.2X6D ','Underdosing of other opioids, subsequent encounter','Y','0000-00-00 00:00:00'),(165461,10,'T40.2X6S ','Underdosing of other opioids, sequela','Y','0000-00-00 00:00:00'),(165462,10,'T40.3X1A ','Poisoning by methadone, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165463,10,'T40.3X1D ','Poisoning by methadone, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165464,10,'T40.3X1S ','Poisoning by methadone, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165465,10,'T40.3X2A ','Poisoning by methadone, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165466,10,'T40.3X2D ','Poisoning by methadone, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165467,10,'T40.3X2S ','Poisoning by methadone, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165468,10,'T40.3X3A ','Poisoning by methadone, assault, initial encounter','Y','0000-00-00 00:00:00'),(165469,10,'T40.3X3D ','Poisoning by methadone, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165470,10,'T40.3X3S ','Poisoning by methadone, assault, sequela','Y','0000-00-00 00:00:00'),(165471,10,'T40.3X4A ','Poisoning by methadone, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165472,10,'T40.3X4D ','Poisoning by methadone, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165473,10,'T40.3X4S ','Poisoning by methadone, undetermined, sequela','Y','0000-00-00 00:00:00'),(165474,10,'T40.3X5A ','Adverse effect of methadone, initial encounter','Y','0000-00-00 00:00:00'),(165475,10,'T40.3X5D ','Adverse effect of methadone, subsequent encounter','Y','0000-00-00 00:00:00'),(165476,10,'T40.3X5S ','Adverse effect of methadone, sequela','Y','0000-00-00 00:00:00'),(165477,10,'T40.3X6A ','Underdosing of methadone, initial encounter','Y','0000-00-00 00:00:00'),(165478,10,'T40.3X6D ','Underdosing of methadone, subsequent encounter','Y','0000-00-00 00:00:00'),(165479,10,'T40.3X6S ','Underdosing of methadone, sequela','Y','0000-00-00 00:00:00'),(165480,10,'T40.411A ','Poisoning by fentanyl or fentanyl analogs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165481,10,'T40.411D ','Poisoning by fentanyl or fentanyl analogs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165482,10,'T40.411S ','Poisoning by fentanyl or fentanyl analogs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165483,10,'T40.412A ','Poisoning by fentanyl or fentanyl analogs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165484,10,'T40.412D ','Poisoning by fentanyl or fentanyl analogs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165485,10,'T40.412S ','Poisoning by fentanyl or fentanyl analogs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165486,10,'T40.413A ','Poisoning by fentanyl or fentanyl analogs, assault, initial encounter','Y','0000-00-00 00:00:00'),(165487,10,'T40.413D ','Poisoning by fentanyl or fentanyl analogs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165488,10,'T40.413S ','Poisoning by fentanyl or fentanyl analogs, assault, sequela','Y','0000-00-00 00:00:00'),(165489,10,'T40.414A ','Poisoning by fentanyl or fentanyl analogs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165490,10,'T40.414D ','Poisoning by fentanyl or fentanyl analogs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165491,10,'T40.414S ','Poisoning by fentanyl or fentanyl analogs, undetermined, sequela','Y','0000-00-00 00:00:00'),(165492,10,'T40.415A ','Adverse effect of fentanyl or fentanyl analogs, initial encounter','Y','0000-00-00 00:00:00'),(165493,10,'T40.415D ','Adverse effect of fentanyl or fentanyl analogs, subsequent encounter','Y','0000-00-00 00:00:00'),(165494,10,'T40.415S ','Adverse effect of fentanyl or fentanyl analogs, sequela','Y','0000-00-00 00:00:00'),(165495,10,'T40.416A ','Underdosing of fentanyl or fentanyl analogs, initial encounter','Y','0000-00-00 00:00:00'),(165496,10,'T40.416D ','Underdosing of fentanyl or fentanyl analogs, subsequent encounter','Y','0000-00-00 00:00:00'),(165497,10,'T40.416S ','Underdosing of fentanyl or fentanyl analogs, sequela','Y','0000-00-00 00:00:00'),(165498,10,'T40.421A ','Poisoning by tramadol, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165499,10,'T40.421D ','Poisoning by tramadol, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165500,10,'T40.421S ','Poisoning by tramadol, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165501,10,'T40.422A ','Poisoning by tramadol, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165502,10,'T40.422D ','Poisoning by tramadol, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165503,10,'T40.422S ','Poisoning by tramadol, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165504,10,'T40.423A ','Poisoning by tramadol, assault, initial encounter','Y','0000-00-00 00:00:00'),(165505,10,'T40.423D ','Poisoning by tramadol, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165506,10,'T40.423S ','Poisoning by tramadol, assault, sequela','Y','0000-00-00 00:00:00'),(165507,10,'T40.424A ','Poisoning by tramadol, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165508,10,'T40.424D ','Poisoning by tramadol, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165509,10,'T40.424S ','Poisoning by tramadol, undetermined, sequela','Y','0000-00-00 00:00:00'),(165510,10,'T40.425A ','Adverse effect of tramadol, initial encounter','Y','0000-00-00 00:00:00'),(165511,10,'T40.425D ','Adverse effect of tramadol, subsequent encounter','Y','0000-00-00 00:00:00'),(165512,10,'T40.425S ','Adverse effect of tramadol, sequela','Y','0000-00-00 00:00:00'),(165513,10,'T40.426A ','Underdosing of tramadol, initial encounter','Y','0000-00-00 00:00:00'),(165514,10,'T40.426D ','Underdosing of tramadol, subsequent encounter','Y','0000-00-00 00:00:00'),(165515,10,'T40.426S ','Underdosing of tramadol, sequela','Y','0000-00-00 00:00:00'),(165516,10,'T40.491A ','Poisoning by other synthetic narcotics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165517,10,'T40.491D ','Poisoning by other synthetic narcotics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165518,10,'T40.491S ','Poisoning by other synthetic narcotics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165519,10,'T40.492A ','Poisoning by other synthetic narcotics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165520,10,'T40.492D ','Poisoning by other synthetic narcotics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165521,10,'T40.492S ','Poisoning by other synthetic narcotics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165522,10,'T40.493A ','Poisoning by other synthetic narcotics, assault, initial encounter','Y','0000-00-00 00:00:00'),(165523,10,'T40.493D ','Poisoning by other synthetic narcotics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165524,10,'T40.493S ','Poisoning by other synthetic narcotics, assault, sequela','Y','0000-00-00 00:00:00'),(165525,10,'T40.494A ','Poisoning by other synthetic narcotics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165526,10,'T40.494D ','Poisoning by other synthetic narcotics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165527,10,'T40.494S ','Poisoning by other synthetic narcotics, undetermined, sequela','Y','0000-00-00 00:00:00'),(165528,10,'T40.495A ','Adverse effect of other synthetic narcotics, initial encounter','Y','0000-00-00 00:00:00'),(165529,10,'T40.495D ','Adverse effect of other synthetic narcotics, subsequent encounter','Y','0000-00-00 00:00:00'),(165530,10,'T40.495S ','Adverse effect of other synthetic narcotics, sequela','Y','0000-00-00 00:00:00'),(165531,10,'T40.496A ','Underdosing of other synthetic narcotics, initial encounter','Y','0000-00-00 00:00:00'),(165532,10,'T40.496D ','Underdosing of other synthetic narcotics, subsequent encounter','Y','0000-00-00 00:00:00'),(165533,10,'T40.496S ','Underdosing of other synthetic narcotics, sequela','Y','0000-00-00 00:00:00'),(165534,10,'T40.5X1A ','Poisoning by cocaine, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165535,10,'T40.5X1D ','Poisoning by cocaine, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165536,10,'T40.5X1S ','Poisoning by cocaine, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165537,10,'T40.5X2A ','Poisoning by cocaine, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165538,10,'T40.5X2D ','Poisoning by cocaine, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165539,10,'T40.5X2S ','Poisoning by cocaine, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165540,10,'T40.5X3A ','Poisoning by cocaine, assault, initial encounter','Y','0000-00-00 00:00:00'),(165541,10,'T40.5X3D ','Poisoning by cocaine, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165542,10,'T40.5X3S ','Poisoning by cocaine, assault, sequela','Y','0000-00-00 00:00:00'),(165543,10,'T40.5X4A ','Poisoning by cocaine, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165544,10,'T40.5X4D ','Poisoning by cocaine, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165545,10,'T40.5X4S ','Poisoning by cocaine, undetermined, sequela','Y','0000-00-00 00:00:00'),(165546,10,'T40.5X5A ','Adverse effect of cocaine, initial encounter','Y','0000-00-00 00:00:00'),(165547,10,'T40.5X5D ','Adverse effect of cocaine, subsequent encounter','Y','0000-00-00 00:00:00'),(165548,10,'T40.5X5S ','Adverse effect of cocaine, sequela','Y','0000-00-00 00:00:00'),(165549,10,'T40.5X6A ','Underdosing of cocaine, initial encounter','Y','0000-00-00 00:00:00'),(165550,10,'T40.5X6D ','Underdosing of cocaine, subsequent encounter','Y','0000-00-00 00:00:00'),(165551,10,'T40.5X6S ','Underdosing of cocaine, sequela','Y','0000-00-00 00:00:00'),(165552,10,'T40.601A ','Poisoning by unspecified narcotics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165553,10,'T40.601D ','Poisoning by unspecified narcotics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165554,10,'T40.601S ','Poisoning by unspecified narcotics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165555,10,'T40.602A ','Poisoning by unspecified narcotics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165556,10,'T40.602D ','Poisoning by unspecified narcotics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165557,10,'T40.602S ','Poisoning by unspecified narcotics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165558,10,'T40.603A ','Poisoning by unspecified narcotics, assault, initial encounter','Y','0000-00-00 00:00:00'),(165559,10,'T40.603D ','Poisoning by unspecified narcotics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165560,10,'T40.603S ','Poisoning by unspecified narcotics, assault, sequela','Y','0000-00-00 00:00:00'),(165561,10,'T40.604A ','Poisoning by unspecified narcotics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165562,10,'T40.604D ','Poisoning by unspecified narcotics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165563,10,'T40.604S ','Poisoning by unspecified narcotics, undetermined, sequela','Y','0000-00-00 00:00:00'),(165564,10,'T40.605A ','Adverse effect of unspecified narcotics, initial encounter','Y','0000-00-00 00:00:00'),(165565,10,'T40.605D ','Adverse effect of unspecified narcotics, subsequent encounter','Y','0000-00-00 00:00:00'),(165566,10,'T40.605S ','Adverse effect of unspecified narcotics, sequela','Y','0000-00-00 00:00:00'),(165567,10,'T40.606A ','Underdosing of unspecified narcotics, initial encounter','Y','0000-00-00 00:00:00'),(165568,10,'T40.606D ','Underdosing of unspecified narcotics, subsequent encounter','Y','0000-00-00 00:00:00'),(165569,10,'T40.606S ','Underdosing of unspecified narcotics, sequela','Y','0000-00-00 00:00:00'),(165570,10,'T40.691A ','Poisoning by other narcotics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165571,10,'T40.691D ','Poisoning by other narcotics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165572,10,'T40.691S ','Poisoning by other narcotics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165573,10,'T40.692A ','Poisoning by other narcotics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165574,10,'T40.692D ','Poisoning by other narcotics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165575,10,'T40.692S ','Poisoning by other narcotics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165576,10,'T40.693A ','Poisoning by other narcotics, assault, initial encounter','Y','0000-00-00 00:00:00'),(165577,10,'T40.693D ','Poisoning by other narcotics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165578,10,'T40.693S ','Poisoning by other narcotics, assault, sequela','Y','0000-00-00 00:00:00'),(165579,10,'T40.694A ','Poisoning by other narcotics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165580,10,'T40.694D ','Poisoning by other narcotics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165581,10,'T40.694S ','Poisoning by other narcotics, undetermined, sequela','Y','0000-00-00 00:00:00'),(165582,10,'T40.695A ','Adverse effect of other narcotics, initial encounter','Y','0000-00-00 00:00:00'),(165583,10,'T40.695D ','Adverse effect of other narcotics, subsequent encounter','Y','0000-00-00 00:00:00'),(165584,10,'T40.695S ','Adverse effect of other narcotics, sequela','Y','0000-00-00 00:00:00'),(165585,10,'T40.696A ','Underdosing of other narcotics, initial encounter','Y','0000-00-00 00:00:00'),(165586,10,'T40.696D ','Underdosing of other narcotics, subsequent encounter','Y','0000-00-00 00:00:00'),(165587,10,'T40.696S ','Underdosing of other narcotics, sequela','Y','0000-00-00 00:00:00'),(165588,10,'T40.711A ','Poisoning by cannabis, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165589,10,'T40.711D ','Poisoning by cannabis, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165590,10,'T40.711S ','Poisoning by cannabis, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165591,10,'T40.712A ','Poisoning by cannabis, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165592,10,'T40.712D ','Poisoning by cannabis, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165593,10,'T40.712S ','Poisoning by cannabis, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165594,10,'T40.713A ','Poisoning by cannabis, assault, initial encounter','Y','0000-00-00 00:00:00'),(165595,10,'T40.713D ','Poisoning by cannabis, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165596,10,'T40.713S ','Poisoning by cannabis, assault, sequela','Y','0000-00-00 00:00:00'),(165597,10,'T40.714A ','Poisoning by cannabis, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165598,10,'T40.714D ','Poisoning by cannabis, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165599,10,'T40.714S ','Poisoning by cannabis, undetermined, sequela','Y','0000-00-00 00:00:00'),(165600,10,'T40.715A ','Adverse effect of cannabis, initial encounter','Y','0000-00-00 00:00:00'),(165601,10,'T40.715D ','Adverse effect of cannabis, subsequent encounter','Y','0000-00-00 00:00:00'),(165602,10,'T40.715S ','Adverse effect of cannabis, sequela','Y','0000-00-00 00:00:00'),(165603,10,'T40.716A ','Underdosing of cannabis, initial encounter','Y','0000-00-00 00:00:00'),(165604,10,'T40.716D ','Underdosing of cannabis, subsequent encounter','Y','0000-00-00 00:00:00'),(165605,10,'T40.716S ','Underdosing of cannabis, sequela','Y','0000-00-00 00:00:00'),(165606,10,'T40.721A ','Poisoning by synthetic cannabinoids, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165607,10,'T40.721D ','Poisoning by synthetic cannabinoids, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165608,10,'T40.721S ','Poisoning by synthetic cannabinoids, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165609,10,'T40.722A ','Poisoning by synthetic cannabinoids, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165610,10,'T40.722D ','Poisoning by synthetic cannabinoids, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165611,10,'T40.722S ','Poisoning by synthetic cannabinoids, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165612,10,'T40.723A ','Poisoning by synthetic cannabinoids, assault, initial encounter','Y','0000-00-00 00:00:00'),(165613,10,'T40.723D ','Poisoning by synthetic cannabinoids, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165614,10,'T40.723S ','Poisoning by synthetic cannabinoids, assault, sequela','Y','0000-00-00 00:00:00'),(165615,10,'T40.724A ','Poisoning by synthetic cannabinoids, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165616,10,'T40.724D ','Poisoning by synthetic cannabinoids, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165617,10,'T40.724S ','Poisoning by synthetic cannabinoids, undetermined, sequela','Y','0000-00-00 00:00:00'),(165618,10,'T40.725A ','Adverse effect of synthetic cannabinoids, initial encounter','Y','0000-00-00 00:00:00'),(165619,10,'T40.725D ','Adverse effect of synthetic cannabinoids, subsequent encounter','Y','0000-00-00 00:00:00'),(165620,10,'T40.725S ','Adverse effect of synthetic cannabinoids, sequela','Y','0000-00-00 00:00:00'),(165621,10,'T40.726A ','Underdosing of synthetic cannabinoids, initial encounter','Y','0000-00-00 00:00:00'),(165622,10,'T40.726D ','Underdosing of synthetic cannabinoids, subsequent encounter','Y','0000-00-00 00:00:00'),(165623,10,'T40.726S ','Underdosing of synthetic cannabinoids, sequela','Y','0000-00-00 00:00:00'),(165624,10,'T40.8X1A ','Poisoning by lysergide [LSD], accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165625,10,'T40.8X1D ','Poisoning by lysergide [LSD], accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165626,10,'T40.8X1S ','Poisoning by lysergide [LSD], accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165627,10,'T40.8X2A ','Poisoning by lysergide [LSD], intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165628,10,'T40.8X2D ','Poisoning by lysergide [LSD], intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165629,10,'T40.8X2S ','Poisoning by lysergide [LSD], intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165630,10,'T40.8X3A ','Poisoning by lysergide [LSD], assault, initial encounter','Y','0000-00-00 00:00:00'),(165631,10,'T40.8X3D ','Poisoning by lysergide [LSD], assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165632,10,'T40.8X3S ','Poisoning by lysergide [LSD], assault, sequela','Y','0000-00-00 00:00:00'),(165633,10,'T40.8X4A ','Poisoning by lysergide [LSD], undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165634,10,'T40.8X4D ','Poisoning by lysergide [LSD], undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165635,10,'T40.8X4S ','Poisoning by lysergide [LSD], undetermined, sequela','Y','0000-00-00 00:00:00'),(165636,10,'T40.901A ','Poisoning by unspecified psychodysleptics [hallucinogens], accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165637,10,'T40.901D ','Poisoning by unspecified psychodysleptics [hallucinogens], accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165638,10,'T40.901S ','Poisoning by unspecified psychodysleptics [hallucinogens], accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165639,10,'T40.902A ','Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165640,10,'T40.902D ','Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165641,10,'T40.902S ','Poisoning by unspecified psychodysleptics [hallucinogens], intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165642,10,'T40.903A ','Poisoning by unspecified psychodysleptics [hallucinogens], assault, initial encounter','Y','0000-00-00 00:00:00'),(165643,10,'T40.903D ','Poisoning by unspecified psychodysleptics [hallucinogens], assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165644,10,'T40.903S ','Poisoning by unspecified psychodysleptics [hallucinogens], assault, sequela','Y','0000-00-00 00:00:00'),(165645,10,'T40.904A ','Poisoning by unspecified psychodysleptics [hallucinogens], undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165646,10,'T40.904D ','Poisoning by unspecified psychodysleptics [hallucinogens], undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165647,10,'T40.904S ','Poisoning by unspecified psychodysleptics [hallucinogens], undetermined, sequela','Y','0000-00-00 00:00:00'),(165648,10,'T40.905A ','Adverse effect of unspecified psychodysleptics [hallucinogens], initial encounter','Y','0000-00-00 00:00:00'),(165649,10,'T40.905D ','Adverse effect of unspecified psychodysleptics [hallucinogens], subsequent encounter','Y','0000-00-00 00:00:00'),(165650,10,'T40.905S ','Adverse effect of unspecified psychodysleptics [hallucinogens], sequela','Y','0000-00-00 00:00:00'),(165651,10,'T40.906A ','Underdosing of unspecified psychodysleptics [hallucinogens], initial encounter','Y','0000-00-00 00:00:00'),(165652,10,'T40.906D ','Underdosing of unspecified psychodysleptics [hallucinogens], subsequent encounter','Y','0000-00-00 00:00:00'),(165653,10,'T40.906S ','Underdosing of unspecified psychodysleptics [hallucinogens], sequela','Y','0000-00-00 00:00:00'),(165654,10,'T40.991A ','Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165655,10,'T40.991D ','Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165656,10,'T40.991S ','Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165657,10,'T40.992A ','Poisoning by other psychodysleptics [hallucinogens], intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165658,10,'T40.992D ','Poisoning by other psychodysleptics [hallucinogens], intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165659,10,'T40.992S ','Poisoning by other psychodysleptics [hallucinogens], intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165660,10,'T40.993A ','Poisoning by other psychodysleptics [hallucinogens], assault, initial encounter','Y','0000-00-00 00:00:00'),(165661,10,'T40.993D ','Poisoning by other psychodysleptics [hallucinogens], assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165662,10,'T40.993S ','Poisoning by other psychodysleptics [hallucinogens], assault, sequela','Y','0000-00-00 00:00:00'),(165663,10,'T40.994A ','Poisoning by other psychodysleptics [hallucinogens], undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165664,10,'T40.994D ','Poisoning by other psychodysleptics [hallucinogens], undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165665,10,'T40.994S ','Poisoning by other psychodysleptics [hallucinogens], undetermined, sequela','Y','0000-00-00 00:00:00'),(165666,10,'T40.995A ','Adverse effect of other psychodysleptics [hallucinogens], initial encounter','Y','0000-00-00 00:00:00'),(165667,10,'T40.995D ','Adverse effect of other psychodysleptics [hallucinogens], subsequent encounter','Y','0000-00-00 00:00:00'),(165668,10,'T40.995S ','Adverse effect of other psychodysleptics [hallucinogens], sequela','Y','0000-00-00 00:00:00'),(165669,10,'T40.996A ','Underdosing of other psychodysleptics [hallucinogens], initial encounter','Y','0000-00-00 00:00:00'),(165670,10,'T40.996D ','Underdosing of other psychodysleptics [hallucinogens], subsequent encounter','Y','0000-00-00 00:00:00'),(165671,10,'T40.996S ','Underdosing of other psychodysleptics [hallucinogens], sequela','Y','0000-00-00 00:00:00'),(165672,10,'T41.0X1A ','Poisoning by inhaled anesthetics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165673,10,'T41.0X1D ','Poisoning by inhaled anesthetics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165674,10,'T41.0X1S ','Poisoning by inhaled anesthetics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165675,10,'T41.0X2A ','Poisoning by inhaled anesthetics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165676,10,'T41.0X2D ','Poisoning by inhaled anesthetics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165677,10,'T41.0X2S ','Poisoning by inhaled anesthetics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165678,10,'T41.0X3A ','Poisoning by inhaled anesthetics, assault, initial encounter','Y','0000-00-00 00:00:00'),(165679,10,'T41.0X3D ','Poisoning by inhaled anesthetics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165680,10,'T41.0X3S ','Poisoning by inhaled anesthetics, assault, sequela','Y','0000-00-00 00:00:00'),(165681,10,'T41.0X4A ','Poisoning by inhaled anesthetics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165682,10,'T41.0X4D ','Poisoning by inhaled anesthetics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165683,10,'T41.0X4S ','Poisoning by inhaled anesthetics, undetermined, sequela','Y','0000-00-00 00:00:00'),(165684,10,'T41.0X5A ','Adverse effect of inhaled anesthetics, initial encounter','Y','0000-00-00 00:00:00'),(165685,10,'T41.0X5D ','Adverse effect of inhaled anesthetics, subsequent encounter','Y','0000-00-00 00:00:00'),(165686,10,'T41.0X5S ','Adverse effect of inhaled anesthetics, sequela','Y','0000-00-00 00:00:00'),(165687,10,'T41.0X6A ','Underdosing of inhaled anesthetics, initial encounter','Y','0000-00-00 00:00:00'),(165688,10,'T41.0X6D ','Underdosing of inhaled anesthetics, subsequent encounter','Y','0000-00-00 00:00:00'),(165689,10,'T41.0X6S ','Underdosing of inhaled anesthetics, sequela','Y','0000-00-00 00:00:00'),(165690,10,'T41.1X1A ','Poisoning by intravenous anesthetics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165691,10,'T41.1X1D ','Poisoning by intravenous anesthetics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165692,10,'T41.1X1S ','Poisoning by intravenous anesthetics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165693,10,'T41.1X2A ','Poisoning by intravenous anesthetics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165694,10,'T41.1X2D ','Poisoning by intravenous anesthetics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165695,10,'T41.1X2S ','Poisoning by intravenous anesthetics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165696,10,'T41.1X3A ','Poisoning by intravenous anesthetics, assault, initial encounter','Y','0000-00-00 00:00:00'),(165697,10,'T41.1X3D ','Poisoning by intravenous anesthetics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165698,10,'T41.1X3S ','Poisoning by intravenous anesthetics, assault, sequela','Y','0000-00-00 00:00:00'),(165699,10,'T41.1X4A ','Poisoning by intravenous anesthetics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165700,10,'T41.1X4D ','Poisoning by intravenous anesthetics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165701,10,'T41.1X4S ','Poisoning by intravenous anesthetics, undetermined, sequela','Y','0000-00-00 00:00:00'),(165702,10,'T41.1X5A ','Adverse effect of intravenous anesthetics, initial encounter','Y','0000-00-00 00:00:00'),(165703,10,'T41.1X5D ','Adverse effect of intravenous anesthetics, subsequent encounter','Y','0000-00-00 00:00:00'),(165704,10,'T41.1X5S ','Adverse effect of intravenous anesthetics, sequela','Y','0000-00-00 00:00:00'),(165705,10,'T41.1X6A ','Underdosing of intravenous anesthetics, initial encounter','Y','0000-00-00 00:00:00'),(165706,10,'T41.1X6D ','Underdosing of intravenous anesthetics, subsequent encounter','Y','0000-00-00 00:00:00'),(165707,10,'T41.1X6S ','Underdosing of intravenous anesthetics, sequela','Y','0000-00-00 00:00:00'),(165708,10,'T41.201A ','Poisoning by unspecified general anesthetics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165709,10,'T41.201D ','Poisoning by unspecified general anesthetics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165710,10,'T41.201S ','Poisoning by unspecified general anesthetics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165711,10,'T41.202A ','Poisoning by unspecified general anesthetics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165712,10,'T41.202D ','Poisoning by unspecified general anesthetics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165713,10,'T41.202S ','Poisoning by unspecified general anesthetics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165714,10,'T41.203A ','Poisoning by unspecified general anesthetics, assault, initial encounter','Y','0000-00-00 00:00:00'),(165715,10,'T41.203D ','Poisoning by unspecified general anesthetics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165716,10,'T41.203S ','Poisoning by unspecified general anesthetics, assault, sequela','Y','0000-00-00 00:00:00'),(165717,10,'T41.204A ','Poisoning by unspecified general anesthetics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165718,10,'T41.204D ','Poisoning by unspecified general anesthetics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165719,10,'T41.204S ','Poisoning by unspecified general anesthetics, undetermined, sequela','Y','0000-00-00 00:00:00'),(165720,10,'T41.205A ','Adverse effect of unspecified general anesthetics, initial encounter','Y','0000-00-00 00:00:00'),(165721,10,'T41.205D ','Adverse effect of unspecified general anesthetics, subsequent encounter','Y','0000-00-00 00:00:00'),(165722,10,'T41.205S ','Adverse effect of unspecified general anesthetics, sequela','Y','0000-00-00 00:00:00'),(165723,10,'T41.206A ','Underdosing of unspecified general anesthetics, initial encounter','Y','0000-00-00 00:00:00'),(165724,10,'T41.206D ','Underdosing of unspecified general anesthetics, subsequent encounter','Y','0000-00-00 00:00:00'),(165725,10,'T41.206S ','Underdosing of unspecified general anesthetics, sequela','Y','0000-00-00 00:00:00'),(165726,10,'T41.291A ','Poisoning by other general anesthetics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165727,10,'T41.291D ','Poisoning by other general anesthetics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165728,10,'T41.291S ','Poisoning by other general anesthetics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165729,10,'T41.292A ','Poisoning by other general anesthetics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165730,10,'T41.292D ','Poisoning by other general anesthetics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165731,10,'T41.292S ','Poisoning by other general anesthetics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165732,10,'T41.293A ','Poisoning by other general anesthetics, assault, initial encounter','Y','0000-00-00 00:00:00'),(165733,10,'T41.293D ','Poisoning by other general anesthetics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165734,10,'T41.293S ','Poisoning by other general anesthetics, assault, sequela','Y','0000-00-00 00:00:00'),(165735,10,'T41.294A ','Poisoning by other general anesthetics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165736,10,'T41.294D ','Poisoning by other general anesthetics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165737,10,'T41.294S ','Poisoning by other general anesthetics, undetermined, sequela','Y','0000-00-00 00:00:00'),(165738,10,'T41.295A ','Adverse effect of other general anesthetics, initial encounter','Y','0000-00-00 00:00:00'),(165739,10,'T41.295D ','Adverse effect of other general anesthetics, subsequent encounter','Y','0000-00-00 00:00:00'),(165740,10,'T41.295S ','Adverse effect of other general anesthetics, sequela','Y','0000-00-00 00:00:00'),(165741,10,'T41.296A ','Underdosing of other general anesthetics, initial encounter','Y','0000-00-00 00:00:00'),(165742,10,'T41.296D ','Underdosing of other general anesthetics, subsequent encounter','Y','0000-00-00 00:00:00'),(165743,10,'T41.296S ','Underdosing of other general anesthetics, sequela','Y','0000-00-00 00:00:00'),(165744,10,'T41.3X1A ','Poisoning by local anesthetics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165745,10,'T41.3X1D ','Poisoning by local anesthetics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165746,10,'T41.3X1S ','Poisoning by local anesthetics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165747,10,'T41.3X2A ','Poisoning by local anesthetics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165748,10,'T41.3X2D ','Poisoning by local anesthetics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165749,10,'T41.3X2S ','Poisoning by local anesthetics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165750,10,'T41.3X3A ','Poisoning by local anesthetics, assault, initial encounter','Y','0000-00-00 00:00:00'),(165751,10,'T41.3X3D ','Poisoning by local anesthetics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165752,10,'T41.3X3S ','Poisoning by local anesthetics, assault, sequela','Y','0000-00-00 00:00:00'),(165753,10,'T41.3X4A ','Poisoning by local anesthetics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165754,10,'T41.3X4D ','Poisoning by local anesthetics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165755,10,'T41.3X4S ','Poisoning by local anesthetics, undetermined, sequela','Y','0000-00-00 00:00:00'),(165756,10,'T41.3X5A ','Adverse effect of local anesthetics, initial encounter','Y','0000-00-00 00:00:00'),(165757,10,'T41.3X5D ','Adverse effect of local anesthetics, subsequent encounter','Y','0000-00-00 00:00:00'),(165758,10,'T41.3X5S ','Adverse effect of local anesthetics, sequela','Y','0000-00-00 00:00:00'),(165759,10,'T41.3X6A ','Underdosing of local anesthetics, initial encounter','Y','0000-00-00 00:00:00'),(165760,10,'T41.3X6D ','Underdosing of local anesthetics, subsequent encounter','Y','0000-00-00 00:00:00'),(165761,10,'T41.3X6S ','Underdosing of local anesthetics, sequela','Y','0000-00-00 00:00:00'),(165762,10,'T41.41XA ','Poisoning by unspecified anesthetic, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165763,10,'T41.41XD ','Poisoning by unspecified anesthetic, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165764,10,'T41.41XS ','Poisoning by unspecified anesthetic, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165765,10,'T41.42XA ','Poisoning by unspecified anesthetic, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165766,10,'T41.42XD ','Poisoning by unspecified anesthetic, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165767,10,'T41.42XS ','Poisoning by unspecified anesthetic, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165768,10,'T41.43XA ','Poisoning by unspecified anesthetic, assault, initial encounter','Y','0000-00-00 00:00:00'),(165769,10,'T41.43XD ','Poisoning by unspecified anesthetic, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165770,10,'T41.43XS ','Poisoning by unspecified anesthetic, assault, sequela','Y','0000-00-00 00:00:00'),(165771,10,'T41.44XA ','Poisoning by unspecified anesthetic, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165772,10,'T41.44XD ','Poisoning by unspecified anesthetic, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165773,10,'T41.44XS ','Poisoning by unspecified anesthetic, undetermined, sequela','Y','0000-00-00 00:00:00'),(165774,10,'T41.45XA ','Adverse effect of unspecified anesthetic, initial encounter','Y','0000-00-00 00:00:00'),(165775,10,'T41.45XD ','Adverse effect of unspecified anesthetic, subsequent encounter','Y','0000-00-00 00:00:00'),(165776,10,'T41.45XS ','Adverse effect of unspecified anesthetic, sequela','Y','0000-00-00 00:00:00'),(165777,10,'T41.46XA ','Underdosing of unspecified anesthetics, initial encounter','Y','0000-00-00 00:00:00'),(165778,10,'T41.46XD ','Underdosing of unspecified anesthetics, subsequent encounter','Y','0000-00-00 00:00:00'),(165779,10,'T41.46XS ','Underdosing of unspecified anesthetics, sequela','Y','0000-00-00 00:00:00'),(165780,10,'T41.5X1A ','Poisoning by therapeutic gases, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165781,10,'T41.5X1D ','Poisoning by therapeutic gases, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165782,10,'T41.5X1S ','Poisoning by therapeutic gases, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165783,10,'T41.5X2A ','Poisoning by therapeutic gases, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165784,10,'T41.5X2D ','Poisoning by therapeutic gases, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165785,10,'T41.5X2S ','Poisoning by therapeutic gases, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165786,10,'T41.5X3A ','Poisoning by therapeutic gases, assault, initial encounter','Y','0000-00-00 00:00:00'),(165787,10,'T41.5X3D ','Poisoning by therapeutic gases, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165788,10,'T41.5X3S ','Poisoning by therapeutic gases, assault, sequela','Y','0000-00-00 00:00:00'),(165789,10,'T41.5X4A ','Poisoning by therapeutic gases, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165790,10,'T41.5X4D ','Poisoning by therapeutic gases, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165791,10,'T41.5X4S ','Poisoning by therapeutic gases, undetermined, sequela','Y','0000-00-00 00:00:00'),(165792,10,'T41.5X5A ','Adverse effect of therapeutic gases, initial encounter','Y','0000-00-00 00:00:00'),(165793,10,'T41.5X5D ','Adverse effect of therapeutic gases, subsequent encounter','Y','0000-00-00 00:00:00'),(165794,10,'T41.5X5S ','Adverse effect of therapeutic gases, sequela','Y','0000-00-00 00:00:00'),(165795,10,'T41.5X6A ','Underdosing of therapeutic gases, initial encounter','Y','0000-00-00 00:00:00'),(165796,10,'T41.5X6D ','Underdosing of therapeutic gases, subsequent encounter','Y','0000-00-00 00:00:00'),(165797,10,'T41.5X6S ','Underdosing of therapeutic gases, sequela','Y','0000-00-00 00:00:00'),(165798,10,'T42.0X1A ','Poisoning by hydantoin derivatives, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165799,10,'T42.0X1D ','Poisoning by hydantoin derivatives, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165800,10,'T42.0X1S ','Poisoning by hydantoin derivatives, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165801,10,'T42.0X2A ','Poisoning by hydantoin derivatives, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165802,10,'T42.0X2D ','Poisoning by hydantoin derivatives, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165803,10,'T42.0X2S ','Poisoning by hydantoin derivatives, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165804,10,'T42.0X3A ','Poisoning by hydantoin derivatives, assault, initial encounter','Y','0000-00-00 00:00:00'),(165805,10,'T42.0X3D ','Poisoning by hydantoin derivatives, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165806,10,'T42.0X3S ','Poisoning by hydantoin derivatives, assault, sequela','Y','0000-00-00 00:00:00'),(165807,10,'T42.0X4A ','Poisoning by hydantoin derivatives, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165808,10,'T42.0X4D ','Poisoning by hydantoin derivatives, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165809,10,'T42.0X4S ','Poisoning by hydantoin derivatives, undetermined, sequela','Y','0000-00-00 00:00:00'),(165810,10,'T42.0X5A ','Adverse effect of hydantoin derivatives, initial encounter','Y','0000-00-00 00:00:00'),(165811,10,'T42.0X5D ','Adverse effect of hydantoin derivatives, subsequent encounter','Y','0000-00-00 00:00:00'),(165812,10,'T42.0X5S ','Adverse effect of hydantoin derivatives, sequela','Y','0000-00-00 00:00:00'),(165813,10,'T42.0X6A ','Underdosing of hydantoin derivatives, initial encounter','Y','0000-00-00 00:00:00'),(165814,10,'T42.0X6D ','Underdosing of hydantoin derivatives, subsequent encounter','Y','0000-00-00 00:00:00'),(165815,10,'T42.0X6S ','Underdosing of hydantoin derivatives, sequela','Y','0000-00-00 00:00:00'),(165816,10,'T42.1X1A ','Poisoning by iminostilbenes, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165817,10,'T42.1X1D ','Poisoning by iminostilbenes, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165818,10,'T42.1X1S ','Poisoning by iminostilbenes, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165819,10,'T42.1X2A ','Poisoning by iminostilbenes, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165820,10,'T42.1X2D ','Poisoning by iminostilbenes, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165821,10,'T42.1X2S ','Poisoning by iminostilbenes, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165822,10,'T42.1X3A ','Poisoning by iminostilbenes, assault, initial encounter','Y','0000-00-00 00:00:00'),(165823,10,'T42.1X3D ','Poisoning by iminostilbenes, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165824,10,'T42.1X3S ','Poisoning by iminostilbenes, assault, sequela','Y','0000-00-00 00:00:00'),(165825,10,'T42.1X4A ','Poisoning by iminostilbenes, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165826,10,'T42.1X4D ','Poisoning by iminostilbenes, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165827,10,'T42.1X4S ','Poisoning by iminostilbenes, undetermined, sequela','Y','0000-00-00 00:00:00'),(165828,10,'T42.1X5A ','Adverse effect of iminostilbenes, initial encounter','Y','0000-00-00 00:00:00'),(165829,10,'T42.1X5D ','Adverse effect of iminostilbenes, subsequent encounter','Y','0000-00-00 00:00:00'),(165830,10,'T42.1X5S ','Adverse effect of iminostilbenes, sequela','Y','0000-00-00 00:00:00'),(165831,10,'T42.1X6A ','Underdosing of iminostilbenes, initial encounter','Y','0000-00-00 00:00:00'),(165832,10,'T42.1X6D ','Underdosing of iminostilbenes, subsequent encounter','Y','0000-00-00 00:00:00'),(165833,10,'T42.1X6S ','Underdosing of iminostilbenes, sequela','Y','0000-00-00 00:00:00'),(165834,10,'T42.2X1A ','Poisoning by succinimides and oxazolidinediones, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165835,10,'T42.2X1D ','Poisoning by succinimides and oxazolidinediones, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165836,10,'T42.2X1S ','Poisoning by succinimides and oxazolidinediones, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165837,10,'T42.2X2A ','Poisoning by succinimides and oxazolidinediones, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165838,10,'T42.2X2D ','Poisoning by succinimides and oxazolidinediones, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165839,10,'T42.2X2S ','Poisoning by succinimides and oxazolidinediones, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165840,10,'T42.2X3A ','Poisoning by succinimides and oxazolidinediones, assault, initial encounter','Y','0000-00-00 00:00:00'),(165841,10,'T42.2X3D ','Poisoning by succinimides and oxazolidinediones, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165842,10,'T42.2X3S ','Poisoning by succinimides and oxazolidinediones, assault, sequela','Y','0000-00-00 00:00:00'),(165843,10,'T42.2X4A ','Poisoning by succinimides and oxazolidinediones, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165844,10,'T42.2X4D ','Poisoning by succinimides and oxazolidinediones, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165845,10,'T42.2X4S ','Poisoning by succinimides and oxazolidinediones, undetermined, sequela','Y','0000-00-00 00:00:00'),(165846,10,'T42.2X5A ','Adverse effect of succinimides and oxazolidinediones, initial encounter','Y','0000-00-00 00:00:00'),(165847,10,'T42.2X5D ','Adverse effect of succinimides and oxazolidinediones, subsequent encounter','Y','0000-00-00 00:00:00'),(165848,10,'T42.2X5S ','Adverse effect of succinimides and oxazolidinediones, sequela','Y','0000-00-00 00:00:00'),(165849,10,'T42.2X6A ','Underdosing of succinimides and oxazolidinediones, initial encounter','Y','0000-00-00 00:00:00'),(165850,10,'T42.2X6D ','Underdosing of succinimides and oxazolidinediones, subsequent encounter','Y','0000-00-00 00:00:00'),(165851,10,'T42.2X6S ','Underdosing of succinimides and oxazolidinediones, sequela','Y','0000-00-00 00:00:00'),(165852,10,'T42.3X1A ','Poisoning by barbiturates, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165853,10,'T42.3X1D ','Poisoning by barbiturates, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165854,10,'T42.3X1S ','Poisoning by barbiturates, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165855,10,'T42.3X2A ','Poisoning by barbiturates, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165856,10,'T42.3X2D ','Poisoning by barbiturates, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165857,10,'T42.3X2S ','Poisoning by barbiturates, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165858,10,'T42.3X3A ','Poisoning by barbiturates, assault, initial encounter','Y','0000-00-00 00:00:00'),(165859,10,'T42.3X3D ','Poisoning by barbiturates, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165860,10,'T42.3X3S ','Poisoning by barbiturates, assault, sequela','Y','0000-00-00 00:00:00'),(165861,10,'T42.3X4A ','Poisoning by barbiturates, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165862,10,'T42.3X4D ','Poisoning by barbiturates, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165863,10,'T42.3X4S ','Poisoning by barbiturates, undetermined, sequela','Y','0000-00-00 00:00:00'),(165864,10,'T42.3X5A ','Adverse effect of barbiturates, initial encounter','Y','0000-00-00 00:00:00'),(165865,10,'T42.3X5D ','Adverse effect of barbiturates, subsequent encounter','Y','0000-00-00 00:00:00'),(165866,10,'T42.3X5S ','Adverse effect of barbiturates, sequela','Y','0000-00-00 00:00:00'),(165867,10,'T42.3X6A ','Underdosing of barbiturates, initial encounter','Y','0000-00-00 00:00:00'),(165868,10,'T42.3X6D ','Underdosing of barbiturates, subsequent encounter','Y','0000-00-00 00:00:00'),(165869,10,'T42.3X6S ','Underdosing of barbiturates, sequela','Y','0000-00-00 00:00:00'),(165870,10,'T42.4X1A ','Poisoning by benzodiazepines, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165871,10,'T42.4X1D ','Poisoning by benzodiazepines, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165872,10,'T42.4X1S ','Poisoning by benzodiazepines, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165873,10,'T42.4X2A ','Poisoning by benzodiazepines, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165874,10,'T42.4X2D ','Poisoning by benzodiazepines, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165875,10,'T42.4X2S ','Poisoning by benzodiazepines, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165876,10,'T42.4X3A ','Poisoning by benzodiazepines, assault, initial encounter','Y','0000-00-00 00:00:00'),(165877,10,'T42.4X3D ','Poisoning by benzodiazepines, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165878,10,'T42.4X3S ','Poisoning by benzodiazepines, assault, sequela','Y','0000-00-00 00:00:00'),(165879,10,'T42.4X4A ','Poisoning by benzodiazepines, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165880,10,'T42.4X4D ','Poisoning by benzodiazepines, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165881,10,'T42.4X4S ','Poisoning by benzodiazepines, undetermined, sequela','Y','0000-00-00 00:00:00'),(165882,10,'T42.4X5A ','Adverse effect of benzodiazepines, initial encounter','Y','0000-00-00 00:00:00'),(165883,10,'T42.4X5D ','Adverse effect of benzodiazepines, subsequent encounter','Y','0000-00-00 00:00:00'),(165884,10,'T42.4X5S ','Adverse effect of benzodiazepines, sequela','Y','0000-00-00 00:00:00'),(165885,10,'T42.4X6A ','Underdosing of benzodiazepines, initial encounter','Y','0000-00-00 00:00:00'),(165886,10,'T42.4X6D ','Underdosing of benzodiazepines, subsequent encounter','Y','0000-00-00 00:00:00'),(165887,10,'T42.4X6S ','Underdosing of benzodiazepines, sequela','Y','0000-00-00 00:00:00'),(165888,10,'T42.5X1A ','Poisoning by mixed antiepileptics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165889,10,'T42.5X1D ','Poisoning by mixed antiepileptics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165890,10,'T42.5X1S ','Poisoning by mixed antiepileptics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165891,10,'T42.5X2A ','Poisoning by mixed antiepileptics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165892,10,'T42.5X2D ','Poisoning by mixed antiepileptics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165893,10,'T42.5X2S ','Poisoning by mixed antiepileptics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165894,10,'T42.5X3A ','Poisoning by mixed antiepileptics, assault, initial encounter','Y','0000-00-00 00:00:00'),(165895,10,'T42.5X3D ','Poisoning by mixed antiepileptics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165896,10,'T42.5X3S ','Poisoning by mixed antiepileptics, assault, sequela','Y','0000-00-00 00:00:00'),(165897,10,'T42.5X4A ','Poisoning by mixed antiepileptics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165898,10,'T42.5X4D ','Poisoning by mixed antiepileptics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165899,10,'T42.5X4S ','Poisoning by mixed antiepileptics, undetermined, sequela','Y','0000-00-00 00:00:00'),(165900,10,'T42.5X5A ','Adverse effect of mixed antiepileptics, initial encounter','Y','0000-00-00 00:00:00'),(165901,10,'T42.5X5D ','Adverse effect of mixed antiepileptics, subsequent encounter','Y','0000-00-00 00:00:00'),(165902,10,'T42.5X5S ','Adverse effect of mixed antiepileptics, sequela','Y','0000-00-00 00:00:00'),(165903,10,'T42.5X6A ','Underdosing of mixed antiepileptics, initial encounter','Y','0000-00-00 00:00:00'),(165904,10,'T42.5X6D ','Underdosing of mixed antiepileptics, subsequent encounter','Y','0000-00-00 00:00:00'),(165905,10,'T42.5X6S ','Underdosing of mixed antiepileptics, sequela','Y','0000-00-00 00:00:00'),(165906,10,'T42.6X1A ','Poisoning by other antiepileptic and sedative-hypnotic drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165907,10,'T42.6X1D ','Poisoning by other antiepileptic and sedative-hypnotic drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165908,10,'T42.6X1S ','Poisoning by other antiepileptic and sedative-hypnotic drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165909,10,'T42.6X2A ','Poisoning by other antiepileptic and sedative-hypnotic drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165910,10,'T42.6X2D ','Poisoning by other antiepileptic and sedative-hypnotic drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165911,10,'T42.6X2S ','Poisoning by other antiepileptic and sedative-hypnotic drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165912,10,'T42.6X3A ','Poisoning by other antiepileptic and sedative-hypnotic drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(165913,10,'T42.6X3D ','Poisoning by other antiepileptic and sedative-hypnotic drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165914,10,'T42.6X3S ','Poisoning by other antiepileptic and sedative-hypnotic drugs, assault, sequela','Y','0000-00-00 00:00:00'),(165915,10,'T42.6X4A ','Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165916,10,'T42.6X4D ','Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165917,10,'T42.6X4S ','Poisoning by other antiepileptic and sedative-hypnotic drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(165918,10,'T42.6X5A ','Adverse effect of other antiepileptic and sedative-hypnotic drugs, initial encounter','Y','0000-00-00 00:00:00'),(165919,10,'T42.6X5D ','Adverse effect of other antiepileptic and sedative-hypnotic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(165920,10,'T42.6X5S ','Adverse effect of other antiepileptic and sedative-hypnotic drugs, sequela','Y','0000-00-00 00:00:00'),(165921,10,'T42.6X6A ','Underdosing of other antiepileptic and sedative-hypnotic drugs, initial encounter','Y','0000-00-00 00:00:00'),(165922,10,'T42.6X6D ','Underdosing of other antiepileptic and sedative-hypnotic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(165923,10,'T42.6X6S ','Underdosing of other antiepileptic and sedative-hypnotic drugs, sequela','Y','0000-00-00 00:00:00'),(165924,10,'T42.71XA ','Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165925,10,'T42.71XD ','Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165926,10,'T42.71XS ','Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165927,10,'T42.72XA ','Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165928,10,'T42.72XD ','Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165929,10,'T42.72XS ','Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165930,10,'T42.73XA ','Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(165931,10,'T42.73XD ','Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165932,10,'T42.73XS ','Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, assault, sequela','Y','0000-00-00 00:00:00'),(165933,10,'T42.74XA ','Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165934,10,'T42.74XD ','Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165935,10,'T42.74XS ','Poisoning by unspecified antiepileptic and sedative-hypnotic drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(165936,10,'T42.75XA ','Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs, initial encounter','Y','0000-00-00 00:00:00'),(165937,10,'T42.75XD ','Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(165938,10,'T42.75XS ','Adverse effect of unspecified antiepileptic and sedative-hypnotic drugs, sequela','Y','0000-00-00 00:00:00'),(165939,10,'T42.76XA ','Underdosing of unspecified antiepileptic and sedative-hypnotic drugs, initial encounter','Y','0000-00-00 00:00:00'),(165940,10,'T42.76XD ','Underdosing of unspecified antiepileptic and sedative-hypnotic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(165941,10,'T42.76XS ','Underdosing of unspecified antiepileptic and sedative-hypnotic drugs, sequela','Y','0000-00-00 00:00:00'),(165942,10,'T42.8X1A ','Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165943,10,'T42.8X1D ','Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00');
INSERT INTO `icd` VALUES (165944,10,'T42.8X1S ','Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165945,10,'T42.8X2A ','Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165946,10,'T42.8X2D ','Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165947,10,'T42.8X2S ','Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165948,10,'T42.8X3A ','Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, assault, initial encounter','Y','0000-00-00 00:00:00'),(165949,10,'T42.8X3D ','Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165950,10,'T42.8X3S ','Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, assault, sequela','Y','0000-00-00 00:00:00'),(165951,10,'T42.8X4A ','Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165952,10,'T42.8X4D ','Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165953,10,'T42.8X4S ','Poisoning by antiparkinsonism drugs and other central muscle-tone depressants, undetermined, sequela','Y','0000-00-00 00:00:00'),(165954,10,'T42.8X5A ','Adverse effect of antiparkinsonism drugs and other central muscle-tone depressants, initial encounter','Y','0000-00-00 00:00:00'),(165955,10,'T42.8X5D ','Adverse effect of antiparkinsonism drugs and other central muscle-tone depressants, subsequent encounter','Y','0000-00-00 00:00:00'),(165956,10,'T42.8X5S ','Adverse effect of antiparkinsonism drugs and other central muscle-tone depressants, sequela','Y','0000-00-00 00:00:00'),(165957,10,'T42.8X6A ','Underdosing of antiparkinsonism drugs and other central muscle-tone depressants, initial encounter','Y','0000-00-00 00:00:00'),(165958,10,'T42.8X6D ','Underdosing of antiparkinsonism drugs and other central muscle-tone depressants, subsequent encounter','Y','0000-00-00 00:00:00'),(165959,10,'T42.8X6S ','Underdosing of antiparkinsonism drugs and other central muscle-tone depressants, sequela','Y','0000-00-00 00:00:00'),(165960,10,'T43.011A ','Poisoning by tricyclic antidepressants, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165961,10,'T43.011D ','Poisoning by tricyclic antidepressants, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165962,10,'T43.011S ','Poisoning by tricyclic antidepressants, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165963,10,'T43.012A ','Poisoning by tricyclic antidepressants, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165964,10,'T43.012D ','Poisoning by tricyclic antidepressants, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165965,10,'T43.012S ','Poisoning by tricyclic antidepressants, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165966,10,'T43.013A ','Poisoning by tricyclic antidepressants, assault, initial encounter','Y','0000-00-00 00:00:00'),(165967,10,'T43.013D ','Poisoning by tricyclic antidepressants, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165968,10,'T43.013S ','Poisoning by tricyclic antidepressants, assault, sequela','Y','0000-00-00 00:00:00'),(165969,10,'T43.014A ','Poisoning by tricyclic antidepressants, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165970,10,'T43.014D ','Poisoning by tricyclic antidepressants, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165971,10,'T43.014S ','Poisoning by tricyclic antidepressants, undetermined, sequela','Y','0000-00-00 00:00:00'),(165972,10,'T43.015A ','Adverse effect of tricyclic antidepressants, initial encounter','Y','0000-00-00 00:00:00'),(165973,10,'T43.015D ','Adverse effect of tricyclic antidepressants, subsequent encounter','Y','0000-00-00 00:00:00'),(165974,10,'T43.015S ','Adverse effect of tricyclic antidepressants, sequela','Y','0000-00-00 00:00:00'),(165975,10,'T43.016A ','Underdosing of tricyclic antidepressants, initial encounter','Y','0000-00-00 00:00:00'),(165976,10,'T43.016D ','Underdosing of tricyclic antidepressants, subsequent encounter','Y','0000-00-00 00:00:00'),(165977,10,'T43.016S ','Underdosing of tricyclic antidepressants, sequela','Y','0000-00-00 00:00:00'),(165978,10,'T43.021A ','Poisoning by tetracyclic antidepressants, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165979,10,'T43.021D ','Poisoning by tetracyclic antidepressants, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165980,10,'T43.021S ','Poisoning by tetracyclic antidepressants, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165981,10,'T43.022A ','Poisoning by tetracyclic antidepressants, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(165982,10,'T43.022D ','Poisoning by tetracyclic antidepressants, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(165983,10,'T43.022S ','Poisoning by tetracyclic antidepressants, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(165984,10,'T43.023A ','Poisoning by tetracyclic antidepressants, assault, initial encounter','Y','0000-00-00 00:00:00'),(165985,10,'T43.023D ','Poisoning by tetracyclic antidepressants, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(165986,10,'T43.023S ','Poisoning by tetracyclic antidepressants, assault, sequela','Y','0000-00-00 00:00:00'),(165987,10,'T43.024A ','Poisoning by tetracyclic antidepressants, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(165988,10,'T43.024D ','Poisoning by tetracyclic antidepressants, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(165989,10,'T43.024S ','Poisoning by tetracyclic antidepressants, undetermined, sequela','Y','0000-00-00 00:00:00'),(165990,10,'T43.025A ','Adverse effect of tetracyclic antidepressants, initial encounter','Y','0000-00-00 00:00:00'),(165991,10,'T43.025D ','Adverse effect of tetracyclic antidepressants, subsequent encounter','Y','0000-00-00 00:00:00'),(165992,10,'T43.025S ','Adverse effect of tetracyclic antidepressants, sequela','Y','0000-00-00 00:00:00'),(165993,10,'T43.026A ','Underdosing of tetracyclic antidepressants, initial encounter','Y','0000-00-00 00:00:00'),(165994,10,'T43.026D ','Underdosing of tetracyclic antidepressants, subsequent encounter','Y','0000-00-00 00:00:00'),(165995,10,'T43.026S ','Underdosing of tetracyclic antidepressants, sequela','Y','0000-00-00 00:00:00'),(165996,10,'T43.1X1A ','Poisoning by monoamine-oxidase-inhibitor antidepressants, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(165997,10,'T43.1X1D ','Poisoning by monoamine-oxidase-inhibitor antidepressants, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(165998,10,'T43.1X1S ','Poisoning by monoamine-oxidase-inhibitor antidepressants, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(165999,10,'T43.1X2A ','Poisoning by monoamine-oxidase-inhibitor antidepressants, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166000,10,'T43.1X2D ','Poisoning by monoamine-oxidase-inhibitor antidepressants, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166001,10,'T43.1X2S ','Poisoning by monoamine-oxidase-inhibitor antidepressants, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166002,10,'T43.1X3A ','Poisoning by monoamine-oxidase-inhibitor antidepressants, assault, initial encounter','Y','0000-00-00 00:00:00'),(166003,10,'T43.1X3D ','Poisoning by monoamine-oxidase-inhibitor antidepressants, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166004,10,'T43.1X3S ','Poisoning by monoamine-oxidase-inhibitor antidepressants, assault, sequela','Y','0000-00-00 00:00:00'),(166005,10,'T43.1X4A ','Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166006,10,'T43.1X4D ','Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166007,10,'T43.1X4S ','Poisoning by monoamine-oxidase-inhibitor antidepressants, undetermined, sequela','Y','0000-00-00 00:00:00'),(166008,10,'T43.1X5A ','Adverse effect of monoamine-oxidase-inhibitor antidepressants, initial encounter','Y','0000-00-00 00:00:00'),(166009,10,'T43.1X5D ','Adverse effect of monoamine-oxidase-inhibitor antidepressants, subsequent encounter','Y','0000-00-00 00:00:00'),(166010,10,'T43.1X5S ','Adverse effect of monoamine-oxidase-inhibitor antidepressants, sequela','Y','0000-00-00 00:00:00'),(166011,10,'T43.1X6A ','Underdosing of monoamine-oxidase-inhibitor antidepressants, initial encounter','Y','0000-00-00 00:00:00'),(166012,10,'T43.1X6D ','Underdosing of monoamine-oxidase-inhibitor antidepressants, subsequent encounter','Y','0000-00-00 00:00:00'),(166013,10,'T43.1X6S ','Underdosing of monoamine-oxidase-inhibitor antidepressants, sequela','Y','0000-00-00 00:00:00'),(166014,10,'T43.201A ','Poisoning by unspecified antidepressants, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166015,10,'T43.201D ','Poisoning by unspecified antidepressants, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166016,10,'T43.201S ','Poisoning by unspecified antidepressants, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166017,10,'T43.202A ','Poisoning by unspecified antidepressants, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166018,10,'T43.202D ','Poisoning by unspecified antidepressants, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166019,10,'T43.202S ','Poisoning by unspecified antidepressants, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166020,10,'T43.203A ','Poisoning by unspecified antidepressants, assault, initial encounter','Y','0000-00-00 00:00:00'),(166021,10,'T43.203D ','Poisoning by unspecified antidepressants, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166022,10,'T43.203S ','Poisoning by unspecified antidepressants, assault, sequela','Y','0000-00-00 00:00:00'),(166023,10,'T43.204A ','Poisoning by unspecified antidepressants, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166024,10,'T43.204D ','Poisoning by unspecified antidepressants, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166025,10,'T43.204S ','Poisoning by unspecified antidepressants, undetermined, sequela','Y','0000-00-00 00:00:00'),(166026,10,'T43.205A ','Adverse effect of unspecified antidepressants, initial encounter','Y','0000-00-00 00:00:00'),(166027,10,'T43.205D ','Adverse effect of unspecified antidepressants, subsequent encounter','Y','0000-00-00 00:00:00'),(166028,10,'T43.205S ','Adverse effect of unspecified antidepressants, sequela','Y','0000-00-00 00:00:00'),(166029,10,'T43.206A ','Underdosing of unspecified antidepressants, initial encounter','Y','0000-00-00 00:00:00'),(166030,10,'T43.206D ','Underdosing of unspecified antidepressants, subsequent encounter','Y','0000-00-00 00:00:00'),(166031,10,'T43.206S ','Underdosing of unspecified antidepressants, sequela','Y','0000-00-00 00:00:00'),(166032,10,'T43.211A ','Poisoning by selective serotonin and norepinephrine reuptake inhibitors, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166033,10,'T43.211D ','Poisoning by selective serotonin and norepinephrine reuptake inhibitors, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166034,10,'T43.211S ','Poisoning by selective serotonin and norepinephrine reuptake inhibitors, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166035,10,'T43.212A ','Poisoning by selective serotonin and norepinephrine reuptake inhibitors, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166036,10,'T43.212D ','Poisoning by selective serotonin and norepinephrine reuptake inhibitors, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166037,10,'T43.212S ','Poisoning by selective serotonin and norepinephrine reuptake inhibitors, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166038,10,'T43.213A ','Poisoning by selective serotonin and norepinephrine reuptake inhibitors, assault, initial encounter','Y','0000-00-00 00:00:00'),(166039,10,'T43.213D ','Poisoning by selective serotonin and norepinephrine reuptake inhibitors, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166040,10,'T43.213S ','Poisoning by selective serotonin and norepinephrine reuptake inhibitors, assault, sequela','Y','0000-00-00 00:00:00'),(166041,10,'T43.214A ','Poisoning by selective serotonin and norepinephrine reuptake inhibitors, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166042,10,'T43.214D ','Poisoning by selective serotonin and norepinephrine reuptake inhibitors, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166043,10,'T43.214S ','Poisoning by selective serotonin and norepinephrine reuptake inhibitors, undetermined, sequela','Y','0000-00-00 00:00:00'),(166044,10,'T43.215A ','Adverse effect of selective serotonin and norepinephrine reuptake inhibitors, initial encounter','Y','0000-00-00 00:00:00'),(166045,10,'T43.215D ','Adverse effect of selective serotonin and norepinephrine reuptake inhibitors, subsequent encounter','Y','0000-00-00 00:00:00'),(166046,10,'T43.215S ','Adverse effect of selective serotonin and norepinephrine reuptake inhibitors, sequela','Y','0000-00-00 00:00:00'),(166047,10,'T43.216A ','Underdosing of selective serotonin and norepinephrine reuptake inhibitors, initial encounter','Y','0000-00-00 00:00:00'),(166048,10,'T43.216D ','Underdosing of selective serotonin and norepinephrine reuptake inhibitors, subsequent encounter','Y','0000-00-00 00:00:00'),(166049,10,'T43.216S ','Underdosing of selective serotonin and norepinephrine reuptake inhibitors, sequela','Y','0000-00-00 00:00:00'),(166050,10,'T43.221A ','Poisoning by selective serotonin reuptake inhibitors, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166051,10,'T43.221D ','Poisoning by selective serotonin reuptake inhibitors, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166052,10,'T43.221S ','Poisoning by selective serotonin reuptake inhibitors, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166053,10,'T43.222A ','Poisoning by selective serotonin reuptake inhibitors, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166054,10,'T43.222D ','Poisoning by selective serotonin reuptake inhibitors, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166055,10,'T43.222S ','Poisoning by selective serotonin reuptake inhibitors, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166056,10,'T43.223A ','Poisoning by selective serotonin reuptake inhibitors, assault, initial encounter','Y','0000-00-00 00:00:00'),(166057,10,'T43.223D ','Poisoning by selective serotonin reuptake inhibitors, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166058,10,'T43.223S ','Poisoning by selective serotonin reuptake inhibitors, assault, sequela','Y','0000-00-00 00:00:00'),(166059,10,'T43.224A ','Poisoning by selective serotonin reuptake inhibitors, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166060,10,'T43.224D ','Poisoning by selective serotonin reuptake inhibitors, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166061,10,'T43.224S ','Poisoning by selective serotonin reuptake inhibitors, undetermined, sequela','Y','0000-00-00 00:00:00'),(166062,10,'T43.225A ','Adverse effect of selective serotonin reuptake inhibitors, initial encounter','Y','0000-00-00 00:00:00'),(166063,10,'T43.225D ','Adverse effect of selective serotonin reuptake inhibitors, subsequent encounter','Y','0000-00-00 00:00:00'),(166064,10,'T43.225S ','Adverse effect of selective serotonin reuptake inhibitors, sequela','Y','0000-00-00 00:00:00'),(166065,10,'T43.226A ','Underdosing of selective serotonin reuptake inhibitors, initial encounter','Y','0000-00-00 00:00:00'),(166066,10,'T43.226D ','Underdosing of selective serotonin reuptake inhibitors, subsequent encounter','Y','0000-00-00 00:00:00'),(166067,10,'T43.226S ','Underdosing of selective serotonin reuptake inhibitors, sequela','Y','0000-00-00 00:00:00'),(166068,10,'T43.291A ','Poisoning by other antidepressants, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166069,10,'T43.291D ','Poisoning by other antidepressants, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166070,10,'T43.291S ','Poisoning by other antidepressants, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166071,10,'T43.292A ','Poisoning by other antidepressants, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166072,10,'T43.292D ','Poisoning by other antidepressants, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166073,10,'T43.292S ','Poisoning by other antidepressants, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166074,10,'T43.293A ','Poisoning by other antidepressants, assault, initial encounter','Y','0000-00-00 00:00:00'),(166075,10,'T43.293D ','Poisoning by other antidepressants, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166076,10,'T43.293S ','Poisoning by other antidepressants, assault, sequela','Y','0000-00-00 00:00:00'),(166077,10,'T43.294A ','Poisoning by other antidepressants, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166078,10,'T43.294D ','Poisoning by other antidepressants, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166079,10,'T43.294S ','Poisoning by other antidepressants, undetermined, sequela','Y','0000-00-00 00:00:00'),(166080,10,'T43.295A ','Adverse effect of other antidepressants, initial encounter','Y','0000-00-00 00:00:00'),(166081,10,'T43.295D ','Adverse effect of other antidepressants, subsequent encounter','Y','0000-00-00 00:00:00'),(166082,10,'T43.295S ','Adverse effect of other antidepressants, sequela','Y','0000-00-00 00:00:00'),(166083,10,'T43.296A ','Underdosing of other antidepressants, initial encounter','Y','0000-00-00 00:00:00'),(166084,10,'T43.296D ','Underdosing of other antidepressants, subsequent encounter','Y','0000-00-00 00:00:00'),(166085,10,'T43.296S ','Underdosing of other antidepressants, sequela','Y','0000-00-00 00:00:00'),(166086,10,'T43.3X1A ','Poisoning by phenothiazine antipsychotics and neuroleptics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166087,10,'T43.3X1D ','Poisoning by phenothiazine antipsychotics and neuroleptics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166088,10,'T43.3X1S ','Poisoning by phenothiazine antipsychotics and neuroleptics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166089,10,'T43.3X2A ','Poisoning by phenothiazine antipsychotics and neuroleptics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166090,10,'T43.3X2D ','Poisoning by phenothiazine antipsychotics and neuroleptics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166091,10,'T43.3X2S ','Poisoning by phenothiazine antipsychotics and neuroleptics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166092,10,'T43.3X3A ','Poisoning by phenothiazine antipsychotics and neuroleptics, assault, initial encounter','Y','0000-00-00 00:00:00'),(166093,10,'T43.3X3D ','Poisoning by phenothiazine antipsychotics and neuroleptics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166094,10,'T43.3X3S ','Poisoning by phenothiazine antipsychotics and neuroleptics, assault, sequela','Y','0000-00-00 00:00:00'),(166095,10,'T43.3X4A ','Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166096,10,'T43.3X4D ','Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166097,10,'T43.3X4S ','Poisoning by phenothiazine antipsychotics and neuroleptics, undetermined, sequela','Y','0000-00-00 00:00:00'),(166098,10,'T43.3X5A ','Adverse effect of phenothiazine antipsychotics and neuroleptics, initial encounter','Y','0000-00-00 00:00:00'),(166099,10,'T43.3X5D ','Adverse effect of phenothiazine antipsychotics and neuroleptics, subsequent encounter','Y','0000-00-00 00:00:00'),(166100,10,'T43.3X5S ','Adverse effect of phenothiazine antipsychotics and neuroleptics, sequela','Y','0000-00-00 00:00:00'),(166101,10,'T43.3X6A ','Underdosing of phenothiazine antipsychotics and neuroleptics, initial encounter','Y','0000-00-00 00:00:00'),(166102,10,'T43.3X6D ','Underdosing of phenothiazine antipsychotics and neuroleptics, subsequent encounter','Y','0000-00-00 00:00:00'),(166103,10,'T43.3X6S ','Underdosing of phenothiazine antipsychotics and neuroleptics, sequela','Y','0000-00-00 00:00:00'),(166104,10,'T43.4X1A ','Poisoning by butyrophenone and thiothixene neuroleptics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166105,10,'T43.4X1D ','Poisoning by butyrophenone and thiothixene neuroleptics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166106,10,'T43.4X1S ','Poisoning by butyrophenone and thiothixene neuroleptics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166107,10,'T43.4X2A ','Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166108,10,'T43.4X2D ','Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166109,10,'T43.4X2S ','Poisoning by butyrophenone and thiothixene neuroleptics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166110,10,'T43.4X3A ','Poisoning by butyrophenone and thiothixene neuroleptics, assault, initial encounter','Y','0000-00-00 00:00:00'),(166111,10,'T43.4X3D ','Poisoning by butyrophenone and thiothixene neuroleptics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166112,10,'T43.4X3S ','Poisoning by butyrophenone and thiothixene neuroleptics, assault, sequela','Y','0000-00-00 00:00:00'),(166113,10,'T43.4X4A ','Poisoning by butyrophenone and thiothixene neuroleptics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166114,10,'T43.4X4D ','Poisoning by butyrophenone and thiothixene neuroleptics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166115,10,'T43.4X4S ','Poisoning by butyrophenone and thiothixene neuroleptics, undetermined, sequela','Y','0000-00-00 00:00:00'),(166116,10,'T43.4X5A ','Adverse effect of butyrophenone and thiothixene neuroleptics, initial encounter','Y','0000-00-00 00:00:00'),(166117,10,'T43.4X5D ','Adverse effect of butyrophenone and thiothixene neuroleptics, subsequent encounter','Y','0000-00-00 00:00:00'),(166118,10,'T43.4X5S ','Adverse effect of butyrophenone and thiothixene neuroleptics, sequela','Y','0000-00-00 00:00:00'),(166119,10,'T43.4X6A ','Underdosing of butyrophenone and thiothixene neuroleptics, initial encounter','Y','0000-00-00 00:00:00'),(166120,10,'T43.4X6D ','Underdosing of butyrophenone and thiothixene neuroleptics, subsequent encounter','Y','0000-00-00 00:00:00'),(166121,10,'T43.4X6S ','Underdosing of butyrophenone and thiothixene neuroleptics, sequela','Y','0000-00-00 00:00:00'),(166122,10,'T43.501A ','Poisoning by unspecified antipsychotics and neuroleptics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166123,10,'T43.501D ','Poisoning by unspecified antipsychotics and neuroleptics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166124,10,'T43.501S ','Poisoning by unspecified antipsychotics and neuroleptics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166125,10,'T43.502A ','Poisoning by unspecified antipsychotics and neuroleptics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166126,10,'T43.502D ','Poisoning by unspecified antipsychotics and neuroleptics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166127,10,'T43.502S ','Poisoning by unspecified antipsychotics and neuroleptics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166128,10,'T43.503A ','Poisoning by unspecified antipsychotics and neuroleptics, assault, initial encounter','Y','0000-00-00 00:00:00'),(166129,10,'T43.503D ','Poisoning by unspecified antipsychotics and neuroleptics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166130,10,'T43.503S ','Poisoning by unspecified antipsychotics and neuroleptics, assault, sequela','Y','0000-00-00 00:00:00'),(166131,10,'T43.504A ','Poisoning by unspecified antipsychotics and neuroleptics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166132,10,'T43.504D ','Poisoning by unspecified antipsychotics and neuroleptics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166133,10,'T43.504S ','Poisoning by unspecified antipsychotics and neuroleptics, undetermined, sequela','Y','0000-00-00 00:00:00'),(166134,10,'T43.505A ','Adverse effect of unspecified antipsychotics and neuroleptics, initial encounter','Y','0000-00-00 00:00:00'),(166135,10,'T43.505D ','Adverse effect of unspecified antipsychotics and neuroleptics, subsequent encounter','Y','0000-00-00 00:00:00'),(166136,10,'T43.505S ','Adverse effect of unspecified antipsychotics and neuroleptics, sequela','Y','0000-00-00 00:00:00'),(166137,10,'T43.506A ','Underdosing of unspecified antipsychotics and neuroleptics, initial encounter','Y','0000-00-00 00:00:00'),(166138,10,'T43.506D ','Underdosing of unspecified antipsychotics and neuroleptics, subsequent encounter','Y','0000-00-00 00:00:00'),(166139,10,'T43.506S ','Underdosing of unspecified antipsychotics and neuroleptics, sequela','Y','0000-00-00 00:00:00'),(166140,10,'T43.591A ','Poisoning by other antipsychotics and neuroleptics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166141,10,'T43.591D ','Poisoning by other antipsychotics and neuroleptics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166142,10,'T43.591S ','Poisoning by other antipsychotics and neuroleptics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166143,10,'T43.592A ','Poisoning by other antipsychotics and neuroleptics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166144,10,'T43.592D ','Poisoning by other antipsychotics and neuroleptics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166145,10,'T43.592S ','Poisoning by other antipsychotics and neuroleptics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166146,10,'T43.593A ','Poisoning by other antipsychotics and neuroleptics, assault, initial encounter','Y','0000-00-00 00:00:00'),(166147,10,'T43.593D ','Poisoning by other antipsychotics and neuroleptics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166148,10,'T43.593S ','Poisoning by other antipsychotics and neuroleptics, assault, sequela','Y','0000-00-00 00:00:00'),(166149,10,'T43.594A ','Poisoning by other antipsychotics and neuroleptics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166150,10,'T43.594D ','Poisoning by other antipsychotics and neuroleptics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166151,10,'T43.594S ','Poisoning by other antipsychotics and neuroleptics, undetermined, sequela','Y','0000-00-00 00:00:00'),(166152,10,'T43.595A ','Adverse effect of other antipsychotics and neuroleptics, initial encounter','Y','0000-00-00 00:00:00'),(166153,10,'T43.595D ','Adverse effect of other antipsychotics and neuroleptics, subsequent encounter','Y','0000-00-00 00:00:00'),(166154,10,'T43.595S ','Adverse effect of other antipsychotics and neuroleptics, sequela','Y','0000-00-00 00:00:00'),(166155,10,'T43.596A ','Underdosing of other antipsychotics and neuroleptics, initial encounter','Y','0000-00-00 00:00:00'),(166156,10,'T43.596D ','Underdosing of other antipsychotics and neuroleptics, subsequent encounter','Y','0000-00-00 00:00:00'),(166157,10,'T43.596S ','Underdosing of other antipsychotics and neuroleptics, sequela','Y','0000-00-00 00:00:00'),(166158,10,'T43.601A ','Poisoning by unspecified psychostimulants, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166159,10,'T43.601D ','Poisoning by unspecified psychostimulants, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166160,10,'T43.601S ','Poisoning by unspecified psychostimulants, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166161,10,'T43.602A ','Poisoning by unspecified psychostimulants, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166162,10,'T43.602D ','Poisoning by unspecified psychostimulants, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166163,10,'T43.602S ','Poisoning by unspecified psychostimulants, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166164,10,'T43.603A ','Poisoning by unspecified psychostimulants, assault, initial encounter','Y','0000-00-00 00:00:00'),(166165,10,'T43.603D ','Poisoning by unspecified psychostimulants, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166166,10,'T43.603S ','Poisoning by unspecified psychostimulants, assault, sequela','Y','0000-00-00 00:00:00'),(166167,10,'T43.604A ','Poisoning by unspecified psychostimulants, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166168,10,'T43.604D ','Poisoning by unspecified psychostimulants, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166169,10,'T43.604S ','Poisoning by unspecified psychostimulants, undetermined, sequela','Y','0000-00-00 00:00:00'),(166170,10,'T43.605A ','Adverse effect of unspecified psychostimulants, initial encounter','Y','0000-00-00 00:00:00'),(166171,10,'T43.605D ','Adverse effect of unspecified psychostimulants, subsequent encounter','Y','0000-00-00 00:00:00'),(166172,10,'T43.605S ','Adverse effect of unspecified psychostimulants, sequela','Y','0000-00-00 00:00:00'),(166173,10,'T43.606A ','Underdosing of unspecified psychostimulants, initial encounter','Y','0000-00-00 00:00:00'),(166174,10,'T43.606D ','Underdosing of unspecified psychostimulants, subsequent encounter','Y','0000-00-00 00:00:00'),(166175,10,'T43.606S ','Underdosing of unspecified psychostimulants, sequela','Y','0000-00-00 00:00:00'),(166176,10,'T43.611A ','Poisoning by caffeine, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166177,10,'T43.611D ','Poisoning by caffeine, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166178,10,'T43.611S ','Poisoning by caffeine, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166179,10,'T43.612A ','Poisoning by caffeine, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166180,10,'T43.612D ','Poisoning by caffeine, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166181,10,'T43.612S ','Poisoning by caffeine, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166182,10,'T43.613A ','Poisoning by caffeine, assault, initial encounter','Y','0000-00-00 00:00:00'),(166183,10,'T43.613D ','Poisoning by caffeine, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166184,10,'T43.613S ','Poisoning by caffeine, assault, sequela','Y','0000-00-00 00:00:00'),(166185,10,'T43.614A ','Poisoning by caffeine, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166186,10,'T43.614D ','Poisoning by caffeine, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166187,10,'T43.614S ','Poisoning by caffeine, undetermined, sequela','Y','0000-00-00 00:00:00'),(166188,10,'T43.615A ','Adverse effect of caffeine, initial encounter','Y','0000-00-00 00:00:00'),(166189,10,'T43.615D ','Adverse effect of caffeine, subsequent encounter','Y','0000-00-00 00:00:00'),(166190,10,'T43.615S ','Adverse effect of caffeine, sequela','Y','0000-00-00 00:00:00'),(166191,10,'T43.616A ','Underdosing of caffeine, initial encounter','Y','0000-00-00 00:00:00'),(166192,10,'T43.616D ','Underdosing of caffeine, subsequent encounter','Y','0000-00-00 00:00:00'),(166193,10,'T43.616S ','Underdosing of caffeine, sequela','Y','0000-00-00 00:00:00'),(166194,10,'T43.621A ','Poisoning by amphetamines, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166195,10,'T43.621D ','Poisoning by amphetamines, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166196,10,'T43.621S ','Poisoning by amphetamines, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166197,10,'T43.622A ','Poisoning by amphetamines, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166198,10,'T43.622D ','Poisoning by amphetamines, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166199,10,'T43.622S ','Poisoning by amphetamines, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166200,10,'T43.623A ','Poisoning by amphetamines, assault, initial encounter','Y','0000-00-00 00:00:00'),(166201,10,'T43.623D ','Poisoning by amphetamines, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166202,10,'T43.623S ','Poisoning by amphetamines, assault, sequela','Y','0000-00-00 00:00:00'),(166203,10,'T43.624A ','Poisoning by amphetamines, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166204,10,'T43.624D ','Poisoning by amphetamines, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166205,10,'T43.624S ','Poisoning by amphetamines, undetermined, sequela','Y','0000-00-00 00:00:00'),(166206,10,'T43.625A ','Adverse effect of amphetamines, initial encounter','Y','0000-00-00 00:00:00'),(166207,10,'T43.625D ','Adverse effect of amphetamines, subsequent encounter','Y','0000-00-00 00:00:00'),(166208,10,'T43.625S ','Adverse effect of amphetamines, sequela','Y','0000-00-00 00:00:00'),(166209,10,'T43.626A ','Underdosing of amphetamines, initial encounter','Y','0000-00-00 00:00:00'),(166210,10,'T43.626D ','Underdosing of amphetamines, subsequent encounter','Y','0000-00-00 00:00:00'),(166211,10,'T43.626S ','Underdosing of amphetamines, sequela','Y','0000-00-00 00:00:00'),(166212,10,'T43.631A ','Poisoning by methylphenidate, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166213,10,'T43.631D ','Poisoning by methylphenidate, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166214,10,'T43.631S ','Poisoning by methylphenidate, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166215,10,'T43.632A ','Poisoning by methylphenidate, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166216,10,'T43.632D ','Poisoning by methylphenidate, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166217,10,'T43.632S ','Poisoning by methylphenidate, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166218,10,'T43.633A ','Poisoning by methylphenidate, assault, initial encounter','Y','0000-00-00 00:00:00'),(166219,10,'T43.633D ','Poisoning by methylphenidate, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166220,10,'T43.633S ','Poisoning by methylphenidate, assault, sequela','Y','0000-00-00 00:00:00'),(166221,10,'T43.634A ','Poisoning by methylphenidate, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166222,10,'T43.634D ','Poisoning by methylphenidate, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166223,10,'T43.634S ','Poisoning by methylphenidate, undetermined, sequela','Y','0000-00-00 00:00:00'),(166224,10,'T43.635A ','Adverse effect of methylphenidate, initial encounter','Y','0000-00-00 00:00:00'),(166225,10,'T43.635D ','Adverse effect of methylphenidate, subsequent encounter','Y','0000-00-00 00:00:00'),(166226,10,'T43.635S ','Adverse effect of methylphenidate, sequela','Y','0000-00-00 00:00:00'),(166227,10,'T43.636A ','Underdosing of methylphenidate, initial encounter','Y','0000-00-00 00:00:00'),(166228,10,'T43.636D ','Underdosing of methylphenidate, subsequent encounter','Y','0000-00-00 00:00:00'),(166229,10,'T43.636S ','Underdosing of methylphenidate, sequela','Y','0000-00-00 00:00:00'),(166230,10,'T43.641A ','Poisoning by ecstasy, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166231,10,'T43.641D ','Poisoning by ecstasy, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166232,10,'T43.641S ','Poisoning by ecstasy, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166233,10,'T43.642A ','Poisoning by ecstasy, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166234,10,'T43.642D ','Poisoning by ecstasy, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166235,10,'T43.642S ','Poisoning by ecstasy, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166236,10,'T43.643A ','Poisoning by ecstasy, assault, initial encounter','Y','0000-00-00 00:00:00'),(166237,10,'T43.643D ','Poisoning by ecstasy, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166238,10,'T43.643S ','Poisoning by ecstasy, assault, sequela','Y','0000-00-00 00:00:00'),(166239,10,'T43.644A ','Poisoning by ecstasy, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166240,10,'T43.644D ','Poisoning by ecstasy, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166241,10,'T43.644S ','Poisoning by ecstasy, undetermined, sequela','Y','0000-00-00 00:00:00'),(166242,10,'T43.651A ','Poisoning by methamphetamines accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166243,10,'T43.651D ','Poisoning by methamphetamines accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166244,10,'T43.651S ','Poisoning by methamphetamines accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166245,10,'T43.652A ','Poisoning by methamphetamines intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166246,10,'T43.652D ','Poisoning by methamphetamines intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166247,10,'T43.652S ','Poisoning by methamphetamines intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166248,10,'T43.653A ','Poisoning by methamphetamines, assault, initial encounter','Y','0000-00-00 00:00:00'),(166249,10,'T43.653D ','Poisoning by methamphetamines, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166250,10,'T43.653S ','Poisoning by methamphetamines, assault, sequela','Y','0000-00-00 00:00:00'),(166251,10,'T43.654A ','Poisoning by methamphetamines, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166252,10,'T43.654D ','Poisoning by methamphetamines, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166253,10,'T43.654S ','Poisoning by methamphetamines, undetermined, sequela','Y','0000-00-00 00:00:00'),(166254,10,'T43.655A ','Adverse effect of methamphetamines, initial encounter','Y','0000-00-00 00:00:00'),(166255,10,'T43.655D ','Adverse effect of methamphetamines, subsequent encounter','Y','0000-00-00 00:00:00'),(166256,10,'T43.655S ','Adverse effect of methamphetamines, sequela','Y','0000-00-00 00:00:00'),(166257,10,'T43.656A ','Underdosing of methamphetamines, initial encounter','Y','0000-00-00 00:00:00'),(166258,10,'T43.656D ','Underdosing of methamphetamines, subsequent encounter','Y','0000-00-00 00:00:00'),(166259,10,'T43.656S ','Underdosing of methamphetamines, sequela','Y','0000-00-00 00:00:00'),(166260,10,'T43.691A ','Poisoning by other psychostimulants, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166261,10,'T43.691D ','Poisoning by other psychostimulants, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166262,10,'T43.691S ','Poisoning by other psychostimulants, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166263,10,'T43.692A ','Poisoning by other psychostimulants, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166264,10,'T43.692D ','Poisoning by other psychostimulants, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166265,10,'T43.692S ','Poisoning by other psychostimulants, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166266,10,'T43.693A ','Poisoning by other psychostimulants, assault, initial encounter','Y','0000-00-00 00:00:00'),(166267,10,'T43.693D ','Poisoning by other psychostimulants, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166268,10,'T43.693S ','Poisoning by other psychostimulants, assault, sequela','Y','0000-00-00 00:00:00'),(166269,10,'T43.694A ','Poisoning by other psychostimulants, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166270,10,'T43.694D ','Poisoning by other psychostimulants, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166271,10,'T43.694S ','Poisoning by other psychostimulants, undetermined, sequela','Y','0000-00-00 00:00:00'),(166272,10,'T43.695A ','Adverse effect of other psychostimulants, initial encounter','Y','0000-00-00 00:00:00'),(166273,10,'T43.695D ','Adverse effect of other psychostimulants, subsequent encounter','Y','0000-00-00 00:00:00'),(166274,10,'T43.695S ','Adverse effect of other psychostimulants, sequela','Y','0000-00-00 00:00:00'),(166275,10,'T43.696A ','Underdosing of other psychostimulants, initial encounter','Y','0000-00-00 00:00:00'),(166276,10,'T43.696D ','Underdosing of other psychostimulants, subsequent encounter','Y','0000-00-00 00:00:00'),(166277,10,'T43.696S ','Underdosing of other psychostimulants, sequela','Y','0000-00-00 00:00:00'),(166278,10,'T43.8X1A ','Poisoning by other psychotropic drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166279,10,'T43.8X1D ','Poisoning by other psychotropic drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166280,10,'T43.8X1S ','Poisoning by other psychotropic drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166281,10,'T43.8X2A ','Poisoning by other psychotropic drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166282,10,'T43.8X2D ','Poisoning by other psychotropic drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166283,10,'T43.8X2S ','Poisoning by other psychotropic drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166284,10,'T43.8X3A ','Poisoning by other psychotropic drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(166285,10,'T43.8X3D ','Poisoning by other psychotropic drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166286,10,'T43.8X3S ','Poisoning by other psychotropic drugs, assault, sequela','Y','0000-00-00 00:00:00'),(166287,10,'T43.8X4A ','Poisoning by other psychotropic drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166288,10,'T43.8X4D ','Poisoning by other psychotropic drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166289,10,'T43.8X4S ','Poisoning by other psychotropic drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(166290,10,'T43.8X5A ','Adverse effect of other psychotropic drugs, initial encounter','Y','0000-00-00 00:00:00'),(166291,10,'T43.8X5D ','Adverse effect of other psychotropic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166292,10,'T43.8X5S ','Adverse effect of other psychotropic drugs, sequela','Y','0000-00-00 00:00:00'),(166293,10,'T43.8X6A ','Underdosing of other psychotropic drugs, initial encounter','Y','0000-00-00 00:00:00'),(166294,10,'T43.8X6D ','Underdosing of other psychotropic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166295,10,'T43.8X6S ','Underdosing of other psychotropic drugs, sequela','Y','0000-00-00 00:00:00'),(166296,10,'T43.91XA ','Poisoning by unspecified psychotropic drug, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166297,10,'T43.91XD ','Poisoning by unspecified psychotropic drug, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166298,10,'T43.91XS ','Poisoning by unspecified psychotropic drug, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166299,10,'T43.92XA ','Poisoning by unspecified psychotropic drug, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166300,10,'T43.92XD ','Poisoning by unspecified psychotropic drug, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166301,10,'T43.92XS ','Poisoning by unspecified psychotropic drug, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166302,10,'T43.93XA ','Poisoning by unspecified psychotropic drug, assault, initial encounter','Y','0000-00-00 00:00:00'),(166303,10,'T43.93XD ','Poisoning by unspecified psychotropic drug, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166304,10,'T43.93XS ','Poisoning by unspecified psychotropic drug, assault, sequela','Y','0000-00-00 00:00:00'),(166305,10,'T43.94XA ','Poisoning by unspecified psychotropic drug, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166306,10,'T43.94XD ','Poisoning by unspecified psychotropic drug, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166307,10,'T43.94XS ','Poisoning by unspecified psychotropic drug, undetermined, sequela','Y','0000-00-00 00:00:00'),(166308,10,'T43.95XA ','Adverse effect of unspecified psychotropic drug, initial encounter','Y','0000-00-00 00:00:00'),(166309,10,'T43.95XD ','Adverse effect of unspecified psychotropic drug, subsequent encounter','Y','0000-00-00 00:00:00'),(166310,10,'T43.95XS ','Adverse effect of unspecified psychotropic drug, sequela','Y','0000-00-00 00:00:00'),(166311,10,'T43.96XA ','Underdosing of unspecified psychotropic drug, initial encounter','Y','0000-00-00 00:00:00'),(166312,10,'T43.96XD ','Underdosing of unspecified psychotropic drug, subsequent encounter','Y','0000-00-00 00:00:00'),(166313,10,'T43.96XS ','Underdosing of unspecified psychotropic drug, sequela','Y','0000-00-00 00:00:00'),(166314,10,'T44.0X1A ','Poisoning by anticholinesterase agents, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166315,10,'T44.0X1D ','Poisoning by anticholinesterase agents, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166316,10,'T44.0X1S ','Poisoning by anticholinesterase agents, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166317,10,'T44.0X2A ','Poisoning by anticholinesterase agents, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166318,10,'T44.0X2D ','Poisoning by anticholinesterase agents, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166319,10,'T44.0X2S ','Poisoning by anticholinesterase agents, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166320,10,'T44.0X3A ','Poisoning by anticholinesterase agents, assault, initial encounter','Y','0000-00-00 00:00:00'),(166321,10,'T44.0X3D ','Poisoning by anticholinesterase agents, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166322,10,'T44.0X3S ','Poisoning by anticholinesterase agents, assault, sequela','Y','0000-00-00 00:00:00'),(166323,10,'T44.0X4A ','Poisoning by anticholinesterase agents, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166324,10,'T44.0X4D ','Poisoning by anticholinesterase agents, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166325,10,'T44.0X4S ','Poisoning by anticholinesterase agents, undetermined, sequela','Y','0000-00-00 00:00:00'),(166326,10,'T44.0X5A ','Adverse effect of anticholinesterase agents, initial encounter','Y','0000-00-00 00:00:00'),(166327,10,'T44.0X5D ','Adverse effect of anticholinesterase agents, subsequent encounter','Y','0000-00-00 00:00:00'),(166328,10,'T44.0X5S ','Adverse effect of anticholinesterase agents, sequela','Y','0000-00-00 00:00:00'),(166329,10,'T44.0X6A ','Underdosing of anticholinesterase agents, initial encounter','Y','0000-00-00 00:00:00'),(166330,10,'T44.0X6D ','Underdosing of anticholinesterase agents, subsequent encounter','Y','0000-00-00 00:00:00'),(166331,10,'T44.0X6S ','Underdosing of anticholinesterase agents, sequela','Y','0000-00-00 00:00:00'),(166332,10,'T44.1X1A ','Poisoning by other parasympathomimetics [cholinergics], accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166333,10,'T44.1X1D ','Poisoning by other parasympathomimetics [cholinergics], accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166334,10,'T44.1X1S ','Poisoning by other parasympathomimetics [cholinergics], accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166335,10,'T44.1X2A ','Poisoning by other parasympathomimetics [cholinergics], intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166336,10,'T44.1X2D ','Poisoning by other parasympathomimetics [cholinergics], intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166337,10,'T44.1X2S ','Poisoning by other parasympathomimetics [cholinergics], intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166338,10,'T44.1X3A ','Poisoning by other parasympathomimetics [cholinergics], assault, initial encounter','Y','0000-00-00 00:00:00'),(166339,10,'T44.1X3D ','Poisoning by other parasympathomimetics [cholinergics], assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166340,10,'T44.1X3S ','Poisoning by other parasympathomimetics [cholinergics], assault, sequela','Y','0000-00-00 00:00:00'),(166341,10,'T44.1X4A ','Poisoning by other parasympathomimetics [cholinergics], undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166342,10,'T44.1X4D ','Poisoning by other parasympathomimetics [cholinergics], undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166343,10,'T44.1X4S ','Poisoning by other parasympathomimetics [cholinergics], undetermined, sequela','Y','0000-00-00 00:00:00'),(166344,10,'T44.1X5A ','Adverse effect of other parasympathomimetics [cholinergics], initial encounter','Y','0000-00-00 00:00:00'),(166345,10,'T44.1X5D ','Adverse effect of other parasympathomimetics [cholinergics], subsequent encounter','Y','0000-00-00 00:00:00'),(166346,10,'T44.1X5S ','Adverse effect of other parasympathomimetics [cholinergics], sequela','Y','0000-00-00 00:00:00'),(166347,10,'T44.1X6A ','Underdosing of other parasympathomimetics [cholinergics], initial encounter','Y','0000-00-00 00:00:00'),(166348,10,'T44.1X6D ','Underdosing of other parasympathomimetics [cholinergics], subsequent encounter','Y','0000-00-00 00:00:00'),(166349,10,'T44.1X6S ','Underdosing of other parasympathomimetics [cholinergics], sequela','Y','0000-00-00 00:00:00'),(166350,10,'T44.2X1A ','Poisoning by ganglionic blocking drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166351,10,'T44.2X1D ','Poisoning by ganglionic blocking drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166352,10,'T44.2X1S ','Poisoning by ganglionic blocking drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166353,10,'T44.2X2A ','Poisoning by ganglionic blocking drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166354,10,'T44.2X2D ','Poisoning by ganglionic blocking drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166355,10,'T44.2X2S ','Poisoning by ganglionic blocking drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166356,10,'T44.2X3A ','Poisoning by ganglionic blocking drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(166357,10,'T44.2X3D ','Poisoning by ganglionic blocking drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166358,10,'T44.2X3S ','Poisoning by ganglionic blocking drugs, assault, sequela','Y','0000-00-00 00:00:00'),(166359,10,'T44.2X4A ','Poisoning by ganglionic blocking drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166360,10,'T44.2X4D ','Poisoning by ganglionic blocking drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166361,10,'T44.2X4S ','Poisoning by ganglionic blocking drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(166362,10,'T44.2X5A ','Adverse effect of ganglionic blocking drugs, initial encounter','Y','0000-00-00 00:00:00'),(166363,10,'T44.2X5D ','Adverse effect of ganglionic blocking drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166364,10,'T44.2X5S ','Adverse effect of ganglionic blocking drugs, sequela','Y','0000-00-00 00:00:00'),(166365,10,'T44.2X6A ','Underdosing of ganglionic blocking drugs, initial encounter','Y','0000-00-00 00:00:00'),(166366,10,'T44.2X6D ','Underdosing of ganglionic blocking drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166367,10,'T44.2X6S ','Underdosing of ganglionic blocking drugs, sequela','Y','0000-00-00 00:00:00'),(166368,10,'T44.3X1A ','Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166369,10,'T44.3X1D ','Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166370,10,'T44.3X1S ','Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166371,10,'T44.3X2A ','Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166372,10,'T44.3X2D ','Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166373,10,'T44.3X2S ','Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166374,10,'T44.3X3A ','Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, assault, initial encounter','Y','0000-00-00 00:00:00'),(166375,10,'T44.3X3D ','Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166376,10,'T44.3X3S ','Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, assault, sequela','Y','0000-00-00 00:00:00'),(166377,10,'T44.3X4A ','Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166378,10,'T44.3X4D ','Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166379,10,'T44.3X4S ','Poisoning by other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, undetermined, sequela','Y','0000-00-00 00:00:00'),(166380,10,'T44.3X5A ','Adverse effect of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, initial encounter','Y','0000-00-00 00:00:00'),(166381,10,'T44.3X5D ','Adverse effect of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, subsequent encounter','Y','0000-00-00 00:00:00'),(166382,10,'T44.3X5S ','Adverse effect of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, sequela','Y','0000-00-00 00:00:00'),(166383,10,'T44.3X6A ','Underdosing of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, initial encounter','Y','0000-00-00 00:00:00'),(166384,10,'T44.3X6D ','Underdosing of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, subsequent encounter','Y','0000-00-00 00:00:00'),(166385,10,'T44.3X6S ','Underdosing of other parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics, sequela','Y','0000-00-00 00:00:00'),(166386,10,'T44.4X1A ','Poisoning by predominantly alpha-adrenoreceptor agonists, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166387,10,'T44.4X1D ','Poisoning by predominantly alpha-adrenoreceptor agonists, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166388,10,'T44.4X1S ','Poisoning by predominantly alpha-adrenoreceptor agonists, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166389,10,'T44.4X2A ','Poisoning by predominantly alpha-adrenoreceptor agonists, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166390,10,'T44.4X2D ','Poisoning by predominantly alpha-adrenoreceptor agonists, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166391,10,'T44.4X2S ','Poisoning by predominantly alpha-adrenoreceptor agonists, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166392,10,'T44.4X3A ','Poisoning by predominantly alpha-adrenoreceptor agonists, assault, initial encounter','Y','0000-00-00 00:00:00'),(166393,10,'T44.4X3D ','Poisoning by predominantly alpha-adrenoreceptor agonists, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166394,10,'T44.4X3S ','Poisoning by predominantly alpha-adrenoreceptor agonists, assault, sequela','Y','0000-00-00 00:00:00'),(166395,10,'T44.4X4A ','Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166396,10,'T44.4X4D ','Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166397,10,'T44.4X4S ','Poisoning by predominantly alpha-adrenoreceptor agonists, undetermined, sequela','Y','0000-00-00 00:00:00'),(166398,10,'T44.4X5A ','Adverse effect of predominantly alpha-adrenoreceptor agonists, initial encounter','Y','0000-00-00 00:00:00'),(166399,10,'T44.4X5D ','Adverse effect of predominantly alpha-adrenoreceptor agonists, subsequent encounter','Y','0000-00-00 00:00:00'),(166400,10,'T44.4X5S ','Adverse effect of predominantly alpha-adrenoreceptor agonists, sequela','Y','0000-00-00 00:00:00'),(166401,10,'T44.4X6A ','Underdosing of predominantly alpha-adrenoreceptor agonists, initial encounter','Y','0000-00-00 00:00:00'),(166402,10,'T44.4X6D ','Underdosing of predominantly alpha-adrenoreceptor agonists, subsequent encounter','Y','0000-00-00 00:00:00'),(166403,10,'T44.4X6S ','Underdosing of predominantly alpha-adrenoreceptor agonists, sequela','Y','0000-00-00 00:00:00'),(166404,10,'T44.5X1A ','Poisoning by predominantly beta-adrenoreceptor agonists, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166405,10,'T44.5X1D ','Poisoning by predominantly beta-adrenoreceptor agonists, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166406,10,'T44.5X1S ','Poisoning by predominantly beta-adrenoreceptor agonists, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166407,10,'T44.5X2A ','Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166408,10,'T44.5X2D ','Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166409,10,'T44.5X2S ','Poisoning by predominantly beta-adrenoreceptor agonists, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166410,10,'T44.5X3A ','Poisoning by predominantly beta-adrenoreceptor agonists, assault, initial encounter','Y','0000-00-00 00:00:00'),(166411,10,'T44.5X3D ','Poisoning by predominantly beta-adrenoreceptor agonists, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166412,10,'T44.5X3S ','Poisoning by predominantly beta-adrenoreceptor agonists, assault, sequela','Y','0000-00-00 00:00:00'),(166413,10,'T44.5X4A ','Poisoning by predominantly beta-adrenoreceptor agonists, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166414,10,'T44.5X4D ','Poisoning by predominantly beta-adrenoreceptor agonists, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166415,10,'T44.5X4S ','Poisoning by predominantly beta-adrenoreceptor agonists, undetermined, sequela','Y','0000-00-00 00:00:00'),(166416,10,'T44.5X5A ','Adverse effect of predominantly beta-adrenoreceptor agonists, initial encounter','Y','0000-00-00 00:00:00'),(166417,10,'T44.5X5D ','Adverse effect of predominantly beta-adrenoreceptor agonists, subsequent encounter','Y','0000-00-00 00:00:00'),(166418,10,'T44.5X5S ','Adverse effect of predominantly beta-adrenoreceptor agonists, sequela','Y','0000-00-00 00:00:00'),(166419,10,'T44.5X6A ','Underdosing of predominantly beta-adrenoreceptor agonists, initial encounter','Y','0000-00-00 00:00:00'),(166420,10,'T44.5X6D ','Underdosing of predominantly beta-adrenoreceptor agonists, subsequent encounter','Y','0000-00-00 00:00:00'),(166421,10,'T44.5X6S ','Underdosing of predominantly beta-adrenoreceptor agonists, sequela','Y','0000-00-00 00:00:00'),(166422,10,'T44.6X1A ','Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166423,10,'T44.6X1D ','Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166424,10,'T44.6X1S ','Poisoning by alpha-adrenoreceptor antagonists, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166425,10,'T44.6X2A ','Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166426,10,'T44.6X2D ','Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166427,10,'T44.6X2S ','Poisoning by alpha-adrenoreceptor antagonists, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166428,10,'T44.6X3A ','Poisoning by alpha-adrenoreceptor antagonists, assault, initial encounter','Y','0000-00-00 00:00:00'),(166429,10,'T44.6X3D ','Poisoning by alpha-adrenoreceptor antagonists, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166430,10,'T44.6X3S ','Poisoning by alpha-adrenoreceptor antagonists, assault, sequela','Y','0000-00-00 00:00:00'),(166431,10,'T44.6X4A ','Poisoning by alpha-adrenoreceptor antagonists, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166432,10,'T44.6X4D ','Poisoning by alpha-adrenoreceptor antagonists, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166433,10,'T44.6X4S ','Poisoning by alpha-adrenoreceptor antagonists, undetermined, sequela','Y','0000-00-00 00:00:00'),(166434,10,'T44.6X5A ','Adverse effect of alpha-adrenoreceptor antagonists, initial encounter','Y','0000-00-00 00:00:00'),(166435,10,'T44.6X5D ','Adverse effect of alpha-adrenoreceptor antagonists, subsequent encounter','Y','0000-00-00 00:00:00'),(166436,10,'T44.6X5S ','Adverse effect of alpha-adrenoreceptor antagonists, sequela','Y','0000-00-00 00:00:00'),(166437,10,'T44.6X6A ','Underdosing of alpha-adrenoreceptor antagonists, initial encounter','Y','0000-00-00 00:00:00'),(166438,10,'T44.6X6D ','Underdosing of alpha-adrenoreceptor antagonists, subsequent encounter','Y','0000-00-00 00:00:00'),(166439,10,'T44.6X6S ','Underdosing of alpha-adrenoreceptor antagonists, sequela','Y','0000-00-00 00:00:00'),(166440,10,'T44.7X1A ','Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166441,10,'T44.7X1D ','Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166442,10,'T44.7X1S ','Poisoning by beta-adrenoreceptor antagonists, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166443,10,'T44.7X2A ','Poisoning by beta-adrenoreceptor antagonists, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166444,10,'T44.7X2D ','Poisoning by beta-adrenoreceptor antagonists, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166445,10,'T44.7X2S ','Poisoning by beta-adrenoreceptor antagonists, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166446,10,'T44.7X3A ','Poisoning by beta-adrenoreceptor antagonists, assault, initial encounter','Y','0000-00-00 00:00:00'),(166447,10,'T44.7X3D ','Poisoning by beta-adrenoreceptor antagonists, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166448,10,'T44.7X3S ','Poisoning by beta-adrenoreceptor antagonists, assault, sequela','Y','0000-00-00 00:00:00'),(166449,10,'T44.7X4A ','Poisoning by beta-adrenoreceptor antagonists, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166450,10,'T44.7X4D ','Poisoning by beta-adrenoreceptor antagonists, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166451,10,'T44.7X4S ','Poisoning by beta-adrenoreceptor antagonists, undetermined, sequela','Y','0000-00-00 00:00:00'),(166452,10,'T44.7X5A ','Adverse effect of beta-adrenoreceptor antagonists, initial encounter','Y','0000-00-00 00:00:00'),(166453,10,'T44.7X5D ','Adverse effect of beta-adrenoreceptor antagonists, subsequent encounter','Y','0000-00-00 00:00:00'),(166454,10,'T44.7X5S ','Adverse effect of beta-adrenoreceptor antagonists, sequela','Y','0000-00-00 00:00:00'),(166455,10,'T44.7X6A ','Underdosing of beta-adrenoreceptor antagonists, initial encounter','Y','0000-00-00 00:00:00'),(166456,10,'T44.7X6D ','Underdosing of beta-adrenoreceptor antagonists, subsequent encounter','Y','0000-00-00 00:00:00'),(166457,10,'T44.7X6S ','Underdosing of beta-adrenoreceptor antagonists, sequela','Y','0000-00-00 00:00:00'),(166458,10,'T44.8X1A ','Poisoning by centrally-acting and adrenergic-neuron-blocking agents, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166459,10,'T44.8X1D ','Poisoning by centrally-acting and adrenergic-neuron-blocking agents, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166460,10,'T44.8X1S ','Poisoning by centrally-acting and adrenergic-neuron-blocking agents, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166461,10,'T44.8X2A ','Poisoning by centrally-acting and adrenergic-neuron-blocking agents, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166462,10,'T44.8X2D ','Poisoning by centrally-acting and adrenergic-neuron-blocking agents, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166463,10,'T44.8X2S ','Poisoning by centrally-acting and adrenergic-neuron-blocking agents, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166464,10,'T44.8X3A ','Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault, initial encounter','Y','0000-00-00 00:00:00'),(166465,10,'T44.8X3D ','Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166466,10,'T44.8X3S ','Poisoning by centrally-acting and adrenergic-neuron-blocking agents, assault, sequela','Y','0000-00-00 00:00:00'),(166467,10,'T44.8X4A ','Poisoning by centrally-acting and adrenergic-neuron-blocking agents, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166468,10,'T44.8X4D ','Poisoning by centrally-acting and adrenergic-neuron-blocking agents, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166469,10,'T44.8X4S ','Poisoning by centrally-acting and adrenergic-neuron-blocking agents, undetermined, sequela','Y','0000-00-00 00:00:00'),(166470,10,'T44.8X5A ','Adverse effect of centrally-acting and adrenergic-neuron-blocking agents, initial encounter','Y','0000-00-00 00:00:00'),(166471,10,'T44.8X5D ','Adverse effect of centrally-acting and adrenergic-neuron-blocking agents, subsequent encounter','Y','0000-00-00 00:00:00'),(166472,10,'T44.8X5S ','Adverse effect of centrally-acting and adrenergic-neuron-blocking agents, sequela','Y','0000-00-00 00:00:00'),(166473,10,'T44.8X6A ','Underdosing of centrally-acting and adrenergic-neuron-blocking agents, initial encounter','Y','0000-00-00 00:00:00'),(166474,10,'T44.8X6D ','Underdosing of centrally-acting and adrenergic-neuron-blocking agents, subsequent encounter','Y','0000-00-00 00:00:00'),(166475,10,'T44.8X6S ','Underdosing of centrally-acting and adrenergic-neuron-blocking agents, sequela','Y','0000-00-00 00:00:00'),(166476,10,'T44.901A ','Poisoning by unspecified drugs primarily affecting the autonomic nervous system, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166477,10,'T44.901D ','Poisoning by unspecified drugs primarily affecting the autonomic nervous system, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166478,10,'T44.901S ','Poisoning by unspecified drugs primarily affecting the autonomic nervous system, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166479,10,'T44.902A ','Poisoning by unspecified drugs primarily affecting the autonomic nervous system, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166480,10,'T44.902D ','Poisoning by unspecified drugs primarily affecting the autonomic nervous system, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166481,10,'T44.902S ','Poisoning by unspecified drugs primarily affecting the autonomic nervous system, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166482,10,'T44.903A ','Poisoning by unspecified drugs primarily affecting the autonomic nervous system, assault, initial encounter','Y','0000-00-00 00:00:00'),(166483,10,'T44.903D ','Poisoning by unspecified drugs primarily affecting the autonomic nervous system, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166484,10,'T44.903S ','Poisoning by unspecified drugs primarily affecting the autonomic nervous system, assault, sequela','Y','0000-00-00 00:00:00'),(166485,10,'T44.904A ','Poisoning by unspecified drugs primarily affecting the autonomic nervous system, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166486,10,'T44.904D ','Poisoning by unspecified drugs primarily affecting the autonomic nervous system, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166487,10,'T44.904S ','Poisoning by unspecified drugs primarily affecting the autonomic nervous system, undetermined, sequela','Y','0000-00-00 00:00:00'),(166488,10,'T44.905A ','Adverse effect of unspecified drugs primarily affecting the autonomic nervous system, initial encounter','Y','0000-00-00 00:00:00'),(166489,10,'T44.905D ','Adverse effect of unspecified drugs primarily affecting the autonomic nervous system, subsequent encounter','Y','0000-00-00 00:00:00'),(166490,10,'T44.905S ','Adverse effect of unspecified drugs primarily affecting the autonomic nervous system, sequela','Y','0000-00-00 00:00:00'),(166491,10,'T44.906A ','Underdosing of unspecified drugs primarily affecting the autonomic nervous system, initial encounter','Y','0000-00-00 00:00:00'),(166492,10,'T44.906D ','Underdosing of unspecified drugs primarily affecting the autonomic nervous system, subsequent encounter','Y','0000-00-00 00:00:00'),(166493,10,'T44.906S ','Underdosing of unspecified drugs primarily affecting the autonomic nervous system, sequela','Y','0000-00-00 00:00:00'),(166494,10,'T44.991A ','Poisoning by other drug primarily affecting the autonomic nervous system, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166495,10,'T44.991D ','Poisoning by other drug primarily affecting the autonomic nervous system, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166496,10,'T44.991S ','Poisoning by other drug primarily affecting the autonomic nervous system, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166497,10,'T44.992A ','Poisoning by other drug primarily affecting the autonomic nervous system, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166498,10,'T44.992D ','Poisoning by other drug primarily affecting the autonomic nervous system, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166499,10,'T44.992S ','Poisoning by other drug primarily affecting the autonomic nervous system, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166500,10,'T44.993A ','Poisoning by other drug primarily affecting the autonomic nervous system, assault, initial encounter','Y','0000-00-00 00:00:00'),(166501,10,'T44.993D ','Poisoning by other drug primarily affecting the autonomic nervous system, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166502,10,'T44.993S ','Poisoning by other drug primarily affecting the autonomic nervous system, assault, sequela','Y','0000-00-00 00:00:00'),(166503,10,'T44.994A ','Poisoning by other drug primarily affecting the autonomic nervous system, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166504,10,'T44.994D ','Poisoning by other drug primarily affecting the autonomic nervous system, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166505,10,'T44.994S ','Poisoning by other drug primarily affecting the autonomic nervous system, undetermined, sequela','Y','0000-00-00 00:00:00'),(166506,10,'T44.995A ','Adverse effect of other drug primarily affecting the autonomic nervous system, initial encounter','Y','0000-00-00 00:00:00'),(166507,10,'T44.995D ','Adverse effect of other drug primarily affecting the autonomic nervous system, subsequent encounter','Y','0000-00-00 00:00:00'),(166508,10,'T44.995S ','Adverse effect of other drug primarily affecting the autonomic nervous system, sequela','Y','0000-00-00 00:00:00'),(166509,10,'T44.996A ','Underdosing of other drug primarily affecting the autonomic nervous system, initial encounter','Y','0000-00-00 00:00:00'),(166510,10,'T44.996D ','Underdosing of other drug primarily affecting the autonomic nervous system, subsequent encounter','Y','0000-00-00 00:00:00'),(166511,10,'T44.996S ','Underdosing of other drug primarily affecting the autonomic nervous system, sequela','Y','0000-00-00 00:00:00'),(166512,10,'T45.0X1A ','Poisoning by antiallergic and antiemetic drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166513,10,'T45.0X1D ','Poisoning by antiallergic and antiemetic drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166514,10,'T45.0X1S ','Poisoning by antiallergic and antiemetic drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166515,10,'T45.0X2A ','Poisoning by antiallergic and antiemetic drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166516,10,'T45.0X2D ','Poisoning by antiallergic and antiemetic drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166517,10,'T45.0X2S ','Poisoning by antiallergic and antiemetic drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166518,10,'T45.0X3A ','Poisoning by antiallergic and antiemetic drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(166519,10,'T45.0X3D ','Poisoning by antiallergic and antiemetic drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166520,10,'T45.0X3S ','Poisoning by antiallergic and antiemetic drugs, assault, sequela','Y','0000-00-00 00:00:00'),(166521,10,'T45.0X4A ','Poisoning by antiallergic and antiemetic drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166522,10,'T45.0X4D ','Poisoning by antiallergic and antiemetic drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166523,10,'T45.0X4S ','Poisoning by antiallergic and antiemetic drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(166524,10,'T45.0X5A ','Adverse effect of antiallergic and antiemetic drugs, initial encounter','Y','0000-00-00 00:00:00'),(166525,10,'T45.0X5D ','Adverse effect of antiallergic and antiemetic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166526,10,'T45.0X5S ','Adverse effect of antiallergic and antiemetic drugs, sequela','Y','0000-00-00 00:00:00'),(166527,10,'T45.0X6A ','Underdosing of antiallergic and antiemetic drugs, initial encounter','Y','0000-00-00 00:00:00'),(166528,10,'T45.0X6D ','Underdosing of antiallergic and antiemetic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166529,10,'T45.0X6S ','Underdosing of antiallergic and antiemetic drugs, sequela','Y','0000-00-00 00:00:00'),(166530,10,'T45.1X1A ','Poisoning by antineoplastic and immunosuppressive drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166531,10,'T45.1X1D ','Poisoning by antineoplastic and immunosuppressive drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166532,10,'T45.1X1S ','Poisoning by antineoplastic and immunosuppressive drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166533,10,'T45.1X2A ','Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166534,10,'T45.1X2D ','Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166535,10,'T45.1X2S ','Poisoning by antineoplastic and immunosuppressive drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166536,10,'T45.1X3A ','Poisoning by antineoplastic and immunosuppressive drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(166537,10,'T45.1X3D ','Poisoning by antineoplastic and immunosuppressive drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166538,10,'T45.1X3S ','Poisoning by antineoplastic and immunosuppressive drugs, assault, sequela','Y','0000-00-00 00:00:00'),(166539,10,'T45.1X4A ','Poisoning by antineoplastic and immunosuppressive drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166540,10,'T45.1X4D ','Poisoning by antineoplastic and immunosuppressive drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166541,10,'T45.1X4S ','Poisoning by antineoplastic and immunosuppressive drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(166542,10,'T45.1X5A ','Adverse effect of antineoplastic and immunosuppressive drugs, initial encounter','Y','0000-00-00 00:00:00'),(166543,10,'T45.1X5D ','Adverse effect of antineoplastic and immunosuppressive drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166544,10,'T45.1X5S ','Adverse effect of antineoplastic and immunosuppressive drugs, sequela','Y','0000-00-00 00:00:00'),(166545,10,'T45.1X6A ','Underdosing of antineoplastic and immunosuppressive drugs, initial encounter','Y','0000-00-00 00:00:00'),(166546,10,'T45.1X6D ','Underdosing of antineoplastic and immunosuppressive drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166547,10,'T45.1X6S ','Underdosing of antineoplastic and immunosuppressive drugs, sequela','Y','0000-00-00 00:00:00'),(166548,10,'T45.2X1A ','Poisoning by vitamins, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166549,10,'T45.2X1D ','Poisoning by vitamins, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166550,10,'T45.2X1S ','Poisoning by vitamins, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166551,10,'T45.2X2A ','Poisoning by vitamins, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166552,10,'T45.2X2D ','Poisoning by vitamins, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166553,10,'T45.2X2S ','Poisoning by vitamins, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166554,10,'T45.2X3A ','Poisoning by vitamins, assault, initial encounter','Y','0000-00-00 00:00:00'),(166555,10,'T45.2X3D ','Poisoning by vitamins, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166556,10,'T45.2X3S ','Poisoning by vitamins, assault, sequela','Y','0000-00-00 00:00:00'),(166557,10,'T45.2X4A ','Poisoning by vitamins, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166558,10,'T45.2X4D ','Poisoning by vitamins, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166559,10,'T45.2X4S ','Poisoning by vitamins, undetermined, sequela','Y','0000-00-00 00:00:00'),(166560,10,'T45.2X5A ','Adverse effect of vitamins, initial encounter','Y','0000-00-00 00:00:00'),(166561,10,'T45.2X5D ','Adverse effect of vitamins, subsequent encounter','Y','0000-00-00 00:00:00'),(166562,10,'T45.2X5S ','Adverse effect of vitamins, sequela','Y','0000-00-00 00:00:00'),(166563,10,'T45.2X6A ','Underdosing of vitamins, initial encounter','Y','0000-00-00 00:00:00'),(166564,10,'T45.2X6D ','Underdosing of vitamins, subsequent encounter','Y','0000-00-00 00:00:00'),(166565,10,'T45.2X6S ','Underdosing of vitamins, sequela','Y','0000-00-00 00:00:00'),(166566,10,'T45.3X1A ','Poisoning by enzymes, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166567,10,'T45.3X1D ','Poisoning by enzymes, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166568,10,'T45.3X1S ','Poisoning by enzymes, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166569,10,'T45.3X2A ','Poisoning by enzymes, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166570,10,'T45.3X2D ','Poisoning by enzymes, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166571,10,'T45.3X2S ','Poisoning by enzymes, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166572,10,'T45.3X3A ','Poisoning by enzymes, assault, initial encounter','Y','0000-00-00 00:00:00'),(166573,10,'T45.3X3D ','Poisoning by enzymes, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166574,10,'T45.3X3S ','Poisoning by enzymes, assault, sequela','Y','0000-00-00 00:00:00'),(166575,10,'T45.3X4A ','Poisoning by enzymes, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166576,10,'T45.3X4D ','Poisoning by enzymes, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166577,10,'T45.3X4S ','Poisoning by enzymes, undetermined, sequela','Y','0000-00-00 00:00:00'),(166578,10,'T45.3X5A ','Adverse effect of enzymes, initial encounter','Y','0000-00-00 00:00:00'),(166579,10,'T45.3X5D ','Adverse effect of enzymes, subsequent encounter','Y','0000-00-00 00:00:00'),(166580,10,'T45.3X5S ','Adverse effect of enzymes, sequela','Y','0000-00-00 00:00:00'),(166581,10,'T45.3X6A ','Underdosing of enzymes, initial encounter','Y','0000-00-00 00:00:00'),(166582,10,'T45.3X6D ','Underdosing of enzymes, subsequent encounter','Y','0000-00-00 00:00:00'),(166583,10,'T45.3X6S ','Underdosing of enzymes, sequela','Y','0000-00-00 00:00:00'),(166584,10,'T45.4X1A ','Poisoning by iron and its compounds, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166585,10,'T45.4X1D ','Poisoning by iron and its compounds, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166586,10,'T45.4X1S ','Poisoning by iron and its compounds, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166587,10,'T45.4X2A ','Poisoning by iron and its compounds, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166588,10,'T45.4X2D ','Poisoning by iron and its compounds, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166589,10,'T45.4X2S ','Poisoning by iron and its compounds, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166590,10,'T45.4X3A ','Poisoning by iron and its compounds, assault, initial encounter','Y','0000-00-00 00:00:00'),(166591,10,'T45.4X3D ','Poisoning by iron and its compounds, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166592,10,'T45.4X3S ','Poisoning by iron and its compounds, assault, sequela','Y','0000-00-00 00:00:00'),(166593,10,'T45.4X4A ','Poisoning by iron and its compounds, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166594,10,'T45.4X4D ','Poisoning by iron and its compounds, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166595,10,'T45.4X4S ','Poisoning by iron and its compounds, undetermined, sequela','Y','0000-00-00 00:00:00'),(166596,10,'T45.4X5A ','Adverse effect of iron and its compounds, initial encounter','Y','0000-00-00 00:00:00'),(166597,10,'T45.4X5D ','Adverse effect of iron and its compounds, subsequent encounter','Y','0000-00-00 00:00:00'),(166598,10,'T45.4X5S ','Adverse effect of iron and its compounds, sequela','Y','0000-00-00 00:00:00'),(166599,10,'T45.4X6A ','Underdosing of iron and its compounds, initial encounter','Y','0000-00-00 00:00:00'),(166600,10,'T45.4X6D ','Underdosing of iron and its compounds, subsequent encounter','Y','0000-00-00 00:00:00'),(166601,10,'T45.4X6S ','Underdosing of iron and its compounds, sequela','Y','0000-00-00 00:00:00'),(166602,10,'T45.511A ','Poisoning by anticoagulants, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166603,10,'T45.511D ','Poisoning by anticoagulants, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166604,10,'T45.511S ','Poisoning by anticoagulants, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166605,10,'T45.512A ','Poisoning by anticoagulants, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166606,10,'T45.512D ','Poisoning by anticoagulants, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166607,10,'T45.512S ','Poisoning by anticoagulants, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166608,10,'T45.513A ','Poisoning by anticoagulants, assault, initial encounter','Y','0000-00-00 00:00:00'),(166609,10,'T45.513D ','Poisoning by anticoagulants, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166610,10,'T45.513S ','Poisoning by anticoagulants, assault, sequela','Y','0000-00-00 00:00:00'),(166611,10,'T45.514A ','Poisoning by anticoagulants, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166612,10,'T45.514D ','Poisoning by anticoagulants, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166613,10,'T45.514S ','Poisoning by anticoagulants, undetermined, sequela','Y','0000-00-00 00:00:00'),(166614,10,'T45.515A ','Adverse effect of anticoagulants, initial encounter','Y','0000-00-00 00:00:00'),(166615,10,'T45.515D ','Adverse effect of anticoagulants, subsequent encounter','Y','0000-00-00 00:00:00'),(166616,10,'T45.515S ','Adverse effect of anticoagulants, sequela','Y','0000-00-00 00:00:00'),(166617,10,'T45.516A ','Underdosing of anticoagulants, initial encounter','Y','0000-00-00 00:00:00'),(166618,10,'T45.516D ','Underdosing of anticoagulants, subsequent encounter','Y','0000-00-00 00:00:00'),(166619,10,'T45.516S ','Underdosing of anticoagulants, sequela','Y','0000-00-00 00:00:00'),(166620,10,'T45.521A ','Poisoning by antithrombotic drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166621,10,'T45.521D ','Poisoning by antithrombotic drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166622,10,'T45.521S ','Poisoning by antithrombotic drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166623,10,'T45.522A ','Poisoning by antithrombotic drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166624,10,'T45.522D ','Poisoning by antithrombotic drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166625,10,'T45.522S ','Poisoning by antithrombotic drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166626,10,'T45.523A ','Poisoning by antithrombotic drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(166627,10,'T45.523D ','Poisoning by antithrombotic drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166628,10,'T45.523S ','Poisoning by antithrombotic drugs, assault, sequela','Y','0000-00-00 00:00:00'),(166629,10,'T45.524A ','Poisoning by antithrombotic drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166630,10,'T45.524D ','Poisoning by antithrombotic drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166631,10,'T45.524S ','Poisoning by antithrombotic drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(166632,10,'T45.525A ','Adverse effect of antithrombotic drugs, initial encounter','Y','0000-00-00 00:00:00'),(166633,10,'T45.525D ','Adverse effect of antithrombotic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166634,10,'T45.525S ','Adverse effect of antithrombotic drugs, sequela','Y','0000-00-00 00:00:00'),(166635,10,'T45.526A ','Underdosing of antithrombotic drugs, initial encounter','Y','0000-00-00 00:00:00'),(166636,10,'T45.526D ','Underdosing of antithrombotic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166637,10,'T45.526S ','Underdosing of antithrombotic drugs, sequela','Y','0000-00-00 00:00:00'),(166638,10,'T45.601A ','Poisoning by unspecified fibrinolysis-affecting drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166639,10,'T45.601D ','Poisoning by unspecified fibrinolysis-affecting drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166640,10,'T45.601S ','Poisoning by unspecified fibrinolysis-affecting drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166641,10,'T45.602A ','Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166642,10,'T45.602D ','Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166643,10,'T45.602S ','Poisoning by unspecified fibrinolysis-affecting drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166644,10,'T45.603A ','Poisoning by unspecified fibrinolysis-affecting drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(166645,10,'T45.603D ','Poisoning by unspecified fibrinolysis-affecting drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166646,10,'T45.603S ','Poisoning by unspecified fibrinolysis-affecting drugs, assault, sequela','Y','0000-00-00 00:00:00'),(166647,10,'T45.604A ','Poisoning by unspecified fibrinolysis-affecting drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166648,10,'T45.604D ','Poisoning by unspecified fibrinolysis-affecting drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166649,10,'T45.604S ','Poisoning by unspecified fibrinolysis-affecting drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(166650,10,'T45.605A ','Adverse effect of unspecified fibrinolysis-affecting drugs, initial encounter','Y','0000-00-00 00:00:00'),(166651,10,'T45.605D ','Adverse effect of unspecified fibrinolysis-affecting drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166652,10,'T45.605S ','Adverse effect of unspecified fibrinolysis-affecting drugs, sequela','Y','0000-00-00 00:00:00'),(166653,10,'T45.606A ','Underdosing of unspecified fibrinolysis-affecting drugs, initial encounter','Y','0000-00-00 00:00:00'),(166654,10,'T45.606D ','Underdosing of unspecified fibrinolysis-affecting drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166655,10,'T45.606S ','Underdosing of unspecified fibrinolysis-affecting drugs, sequela','Y','0000-00-00 00:00:00'),(166656,10,'T45.611A ','Poisoning by thrombolytic drug, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166657,10,'T45.611D ','Poisoning by thrombolytic drug, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166658,10,'T45.611S ','Poisoning by thrombolytic drug, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166659,10,'T45.612A ','Poisoning by thrombolytic drug, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166660,10,'T45.612D ','Poisoning by thrombolytic drug, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166661,10,'T45.612S ','Poisoning by thrombolytic drug, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166662,10,'T45.613A ','Poisoning by thrombolytic drug, assault, initial encounter','Y','0000-00-00 00:00:00'),(166663,10,'T45.613D ','Poisoning by thrombolytic drug, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166664,10,'T45.613S ','Poisoning by thrombolytic drug, assault, sequela','Y','0000-00-00 00:00:00'),(166665,10,'T45.614A ','Poisoning by thrombolytic drug, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166666,10,'T45.614D ','Poisoning by thrombolytic drug, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166667,10,'T45.614S ','Poisoning by thrombolytic drug, undetermined, sequela','Y','0000-00-00 00:00:00'),(166668,10,'T45.615A ','Adverse effect of thrombolytic drugs, initial encounter','Y','0000-00-00 00:00:00'),(166669,10,'T45.615D ','Adverse effect of thrombolytic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166670,10,'T45.615S ','Adverse effect of thrombolytic drugs, sequela','Y','0000-00-00 00:00:00'),(166671,10,'T45.616A ','Underdosing of thrombolytic drugs, initial encounter','Y','0000-00-00 00:00:00'),(166672,10,'T45.616D ','Underdosing of thrombolytic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166673,10,'T45.616S ','Underdosing of thrombolytic drugs, sequela','Y','0000-00-00 00:00:00'),(166674,10,'T45.621A ','Poisoning by hemostatic drug, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166675,10,'T45.621D ','Poisoning by hemostatic drug, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166676,10,'T45.621S ','Poisoning by hemostatic drug, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166677,10,'T45.622A ','Poisoning by hemostatic drug, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166678,10,'T45.622D ','Poisoning by hemostatic drug, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166679,10,'T45.622S ','Poisoning by hemostatic drug, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166680,10,'T45.623A ','Poisoning by hemostatic drug, assault, initial encounter','Y','0000-00-00 00:00:00'),(166681,10,'T45.623D ','Poisoning by hemostatic drug, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166682,10,'T45.623S ','Poisoning by hemostatic drug, assault, sequela','Y','0000-00-00 00:00:00'),(166683,10,'T45.624A ','Poisoning by hemostatic drug, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166684,10,'T45.624D ','Poisoning by hemostatic drug, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166685,10,'T45.624S ','Poisoning by hemostatic drug, undetermined, sequela','Y','0000-00-00 00:00:00'),(166686,10,'T45.625A ','Adverse effect of hemostatic drug, initial encounter','Y','0000-00-00 00:00:00'),(166687,10,'T45.625D ','Adverse effect of hemostatic drug, subsequent encounter','Y','0000-00-00 00:00:00'),(166688,10,'T45.625S ','Adverse effect of hemostatic drug, sequela','Y','0000-00-00 00:00:00'),(166689,10,'T45.626A ','Underdosing of hemostatic drugs, initial encounter','Y','0000-00-00 00:00:00'),(166690,10,'T45.626D ','Underdosing of hemostatic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166691,10,'T45.626S ','Underdosing of hemostatic drugs, sequela','Y','0000-00-00 00:00:00'),(166692,10,'T45.691A ','Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166693,10,'T45.691D ','Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166694,10,'T45.691S ','Poisoning by other fibrinolysis-affecting drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166695,10,'T45.692A ','Poisoning by other fibrinolysis-affecting drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166696,10,'T45.692D ','Poisoning by other fibrinolysis-affecting drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166697,10,'T45.692S ','Poisoning by other fibrinolysis-affecting drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166698,10,'T45.693A ','Poisoning by other fibrinolysis-affecting drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(166699,10,'T45.693D ','Poisoning by other fibrinolysis-affecting drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166700,10,'T45.693S ','Poisoning by other fibrinolysis-affecting drugs, assault, sequela','Y','0000-00-00 00:00:00'),(166701,10,'T45.694A ','Poisoning by other fibrinolysis-affecting drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166702,10,'T45.694D ','Poisoning by other fibrinolysis-affecting drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166703,10,'T45.694S ','Poisoning by other fibrinolysis-affecting drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(166704,10,'T45.695A ','Adverse effect of other fibrinolysis-affecting drugs, initial encounter','Y','0000-00-00 00:00:00'),(166705,10,'T45.695D ','Adverse effect of other fibrinolysis-affecting drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166706,10,'T45.695S ','Adverse effect of other fibrinolysis-affecting drugs, sequela','Y','0000-00-00 00:00:00'),(166707,10,'T45.696A ','Underdosing of other fibrinolysis-affecting drugs, initial encounter','Y','0000-00-00 00:00:00'),(166708,10,'T45.696D ','Underdosing of other fibrinolysis-affecting drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166709,10,'T45.696S ','Underdosing of other fibrinolysis-affecting drugs, sequela','Y','0000-00-00 00:00:00'),(166710,10,'T45.7X1A ','Poisoning by anticoagulant antagonists, vitamin K and other coagulants, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166711,10,'T45.7X1D ','Poisoning by anticoagulant antagonists, vitamin K and other coagulants, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166712,10,'T45.7X1S ','Poisoning by anticoagulant antagonists, vitamin K and other coagulants, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166713,10,'T45.7X2A ','Poisoning by anticoagulant antagonists, vitamin K and other coagulants, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166714,10,'T45.7X2D ','Poisoning by anticoagulant antagonists, vitamin K and other coagulants, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166715,10,'T45.7X2S ','Poisoning by anticoagulant antagonists, vitamin K and other coagulants, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166716,10,'T45.7X3A ','Poisoning by anticoagulant antagonists, vitamin K and other coagulants, assault, initial encounter','Y','0000-00-00 00:00:00'),(166717,10,'T45.7X3D ','Poisoning by anticoagulant antagonists, vitamin K and other coagulants, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166718,10,'T45.7X3S ','Poisoning by anticoagulant antagonists, vitamin K and other coagulants, assault, sequela','Y','0000-00-00 00:00:00'),(166719,10,'T45.7X4A ','Poisoning by anticoagulant antagonists, vitamin K and other coagulants, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166720,10,'T45.7X4D ','Poisoning by anticoagulant antagonists, vitamin K and other coagulants, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166721,10,'T45.7X4S ','Poisoning by anticoagulant antagonists, vitamin K and other coagulants, undetermined, sequela','Y','0000-00-00 00:00:00'),(166722,10,'T45.7X5A ','Adverse effect of anticoagulant antagonists, vitamin K and other coagulants, initial encounter','Y','0000-00-00 00:00:00'),(166723,10,'T45.7X5D ','Adverse effect of anticoagulant antagonists, vitamin K and other coagulants, subsequent encounter','Y','0000-00-00 00:00:00'),(166724,10,'T45.7X5S ','Adverse effect of anticoagulant antagonists, vitamin K and other coagulants, sequela','Y','0000-00-00 00:00:00'),(166725,10,'T45.7X6A ','Underdosing of anticoagulant antagonist, vitamin K and other coagulants, initial encounter','Y','0000-00-00 00:00:00'),(166726,10,'T45.7X6D ','Underdosing of anticoagulant antagonist, vitamin K and other coagulants, subsequent encounter','Y','0000-00-00 00:00:00'),(166727,10,'T45.7X6S ','Underdosing of anticoagulant antagonist, vitamin K and other coagulants, sequela','Y','0000-00-00 00:00:00'),(166728,10,'T45.8X1A ','Poisoning by other primarily systemic and hematological agents, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166729,10,'T45.8X1D ','Poisoning by other primarily systemic and hematological agents, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166730,10,'T45.8X1S ','Poisoning by other primarily systemic and hematological agents, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166731,10,'T45.8X2A ','Poisoning by other primarily systemic and hematological agents, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166732,10,'T45.8X2D ','Poisoning by other primarily systemic and hematological agents, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166733,10,'T45.8X2S ','Poisoning by other primarily systemic and hematological agents, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166734,10,'T45.8X3A ','Poisoning by other primarily systemic and hematological agents, assault, initial encounter','Y','0000-00-00 00:00:00'),(166735,10,'T45.8X3D ','Poisoning by other primarily systemic and hematological agents, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166736,10,'T45.8X3S ','Poisoning by other primarily systemic and hematological agents, assault, sequela','Y','0000-00-00 00:00:00'),(166737,10,'T45.8X4A ','Poisoning by other primarily systemic and hematological agents, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166738,10,'T45.8X4D ','Poisoning by other primarily systemic and hematological agents, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166739,10,'T45.8X4S ','Poisoning by other primarily systemic and hematological agents, undetermined, sequela','Y','0000-00-00 00:00:00'),(166740,10,'T45.8X5A ','Adverse effect of other primarily systemic and hematological agents, initial encounter','Y','0000-00-00 00:00:00'),(166741,10,'T45.8X5D ','Adverse effect of other primarily systemic and hematological agents, subsequent encounter','Y','0000-00-00 00:00:00'),(166742,10,'T45.8X5S ','Adverse effect of other primarily systemic and hematological agents, sequela','Y','0000-00-00 00:00:00'),(166743,10,'T45.8X6A ','Underdosing of other primarily systemic and hematological agents, initial encounter','Y','0000-00-00 00:00:00'),(166744,10,'T45.8X6D ','Underdosing of other primarily systemic and hematological agents, subsequent encounter','Y','0000-00-00 00:00:00'),(166745,10,'T45.8X6S ','Underdosing of other primarily systemic and hematological agents, sequela','Y','0000-00-00 00:00:00'),(166746,10,'T45.91XA ','Poisoning by unspecified primarily systemic and hematological agent, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166747,10,'T45.91XD ','Poisoning by unspecified primarily systemic and hematological agent, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166748,10,'T45.91XS ','Poisoning by unspecified primarily systemic and hematological agent, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166749,10,'T45.92XA ','Poisoning by unspecified primarily systemic and hematological agent, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166750,10,'T45.92XD ','Poisoning by unspecified primarily systemic and hematological agent, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166751,10,'T45.92XS ','Poisoning by unspecified primarily systemic and hematological agent, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166752,10,'T45.93XA ','Poisoning by unspecified primarily systemic and hematological agent, assault, initial encounter','Y','0000-00-00 00:00:00'),(166753,10,'T45.93XD ','Poisoning by unspecified primarily systemic and hematological agent, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166754,10,'T45.93XS ','Poisoning by unspecified primarily systemic and hematological agent, assault, sequela','Y','0000-00-00 00:00:00'),(166755,10,'T45.94XA ','Poisoning by unspecified primarily systemic and hematological agent, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166756,10,'T45.94XD ','Poisoning by unspecified primarily systemic and hematological agent, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166757,10,'T45.94XS ','Poisoning by unspecified primarily systemic and hematological agent, undetermined, sequela','Y','0000-00-00 00:00:00'),(166758,10,'T45.95XA ','Adverse effect of unspecified primarily systemic and hematological agent, initial encounter','Y','0000-00-00 00:00:00'),(166759,10,'T45.95XD ','Adverse effect of unspecified primarily systemic and hematological agent, subsequent encounter','Y','0000-00-00 00:00:00'),(166760,10,'T45.95XS ','Adverse effect of unspecified primarily systemic and hematological agent, sequela','Y','0000-00-00 00:00:00'),(166761,10,'T45.96XA ','Underdosing of unspecified primarily systemic and hematological agent, initial encounter','Y','0000-00-00 00:00:00'),(166762,10,'T45.96XD ','Underdosing of unspecified primarily systemic and hematological agent, subsequent encounter','Y','0000-00-00 00:00:00'),(166763,10,'T45.96XS ','Underdosing of unspecified primarily systemic and hematological agent, sequela','Y','0000-00-00 00:00:00'),(166764,10,'T46.0X1A ','Poisoning by cardiac-stimulant glycosides and drugs of similar action, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166765,10,'T46.0X1D ','Poisoning by cardiac-stimulant glycosides and drugs of similar action, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166766,10,'T46.0X1S ','Poisoning by cardiac-stimulant glycosides and drugs of similar action, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166767,10,'T46.0X2A ','Poisoning by cardiac-stimulant glycosides and drugs of similar action, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166768,10,'T46.0X2D ','Poisoning by cardiac-stimulant glycosides and drugs of similar action, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166769,10,'T46.0X2S ','Poisoning by cardiac-stimulant glycosides and drugs of similar action, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166770,10,'T46.0X3A ','Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault, initial encounter','Y','0000-00-00 00:00:00'),(166771,10,'T46.0X3D ','Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166772,10,'T46.0X3S ','Poisoning by cardiac-stimulant glycosides and drugs of similar action, assault, sequela','Y','0000-00-00 00:00:00'),(166773,10,'T46.0X4A ','Poisoning by cardiac-stimulant glycosides and drugs of similar action, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166774,10,'T46.0X4D ','Poisoning by cardiac-stimulant glycosides and drugs of similar action, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166775,10,'T46.0X4S ','Poisoning by cardiac-stimulant glycosides and drugs of similar action, undetermined, sequela','Y','0000-00-00 00:00:00'),(166776,10,'T46.0X5A ','Adverse effect of cardiac-stimulant glycosides and drugs of similar action, initial encounter','Y','0000-00-00 00:00:00'),(166777,10,'T46.0X5D ','Adverse effect of cardiac-stimulant glycosides and drugs of similar action, subsequent encounter','Y','0000-00-00 00:00:00'),(166778,10,'T46.0X5S ','Adverse effect of cardiac-stimulant glycosides and drugs of similar action, sequela','Y','0000-00-00 00:00:00'),(166779,10,'T46.0X6A ','Underdosing of cardiac-stimulant glycosides and drugs of similar action, initial encounter','Y','0000-00-00 00:00:00'),(166780,10,'T46.0X6D ','Underdosing of cardiac-stimulant glycosides and drugs of similar action, subsequent encounter','Y','0000-00-00 00:00:00'),(166781,10,'T46.0X6S ','Underdosing of cardiac-stimulant glycosides and drugs of similar action, sequela','Y','0000-00-00 00:00:00'),(166782,10,'T46.1X1A ','Poisoning by calcium-channel blockers, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166783,10,'T46.1X1D ','Poisoning by calcium-channel blockers, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166784,10,'T46.1X1S ','Poisoning by calcium-channel blockers, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166785,10,'T46.1X2A ','Poisoning by calcium-channel blockers, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166786,10,'T46.1X2D ','Poisoning by calcium-channel blockers, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166787,10,'T46.1X2S ','Poisoning by calcium-channel blockers, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166788,10,'T46.1X3A ','Poisoning by calcium-channel blockers, assault, initial encounter','Y','0000-00-00 00:00:00'),(166789,10,'T46.1X3D ','Poisoning by calcium-channel blockers, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166790,10,'T46.1X3S ','Poisoning by calcium-channel blockers, assault, sequela','Y','0000-00-00 00:00:00'),(166791,10,'T46.1X4A ','Poisoning by calcium-channel blockers, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166792,10,'T46.1X4D ','Poisoning by calcium-channel blockers, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166793,10,'T46.1X4S ','Poisoning by calcium-channel blockers, undetermined, sequela','Y','0000-00-00 00:00:00'),(166794,10,'T46.1X5A ','Adverse effect of calcium-channel blockers, initial encounter','Y','0000-00-00 00:00:00'),(166795,10,'T46.1X5D ','Adverse effect of calcium-channel blockers, subsequent encounter','Y','0000-00-00 00:00:00'),(166796,10,'T46.1X5S ','Adverse effect of calcium-channel blockers, sequela','Y','0000-00-00 00:00:00'),(166797,10,'T46.1X6A ','Underdosing of calcium-channel blockers, initial encounter','Y','0000-00-00 00:00:00'),(166798,10,'T46.1X6D ','Underdosing of calcium-channel blockers, subsequent encounter','Y','0000-00-00 00:00:00'),(166799,10,'T46.1X6S ','Underdosing of calcium-channel blockers, sequela','Y','0000-00-00 00:00:00'),(166800,10,'T46.2X1A ','Poisoning by other antidysrhythmic drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166801,10,'T46.2X1D ','Poisoning by other antidysrhythmic drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166802,10,'T46.2X1S ','Poisoning by other antidysrhythmic drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166803,10,'T46.2X2A ','Poisoning by other antidysrhythmic drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166804,10,'T46.2X2D ','Poisoning by other antidysrhythmic drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166805,10,'T46.2X2S ','Poisoning by other antidysrhythmic drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166806,10,'T46.2X3A ','Poisoning by other antidysrhythmic drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(166807,10,'T46.2X3D ','Poisoning by other antidysrhythmic drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166808,10,'T46.2X3S ','Poisoning by other antidysrhythmic drugs, assault, sequela','Y','0000-00-00 00:00:00'),(166809,10,'T46.2X4A ','Poisoning by other antidysrhythmic drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166810,10,'T46.2X4D ','Poisoning by other antidysrhythmic drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166811,10,'T46.2X4S ','Poisoning by other antidysrhythmic drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(166812,10,'T46.2X5A ','Adverse effect of other antidysrhythmic drugs, initial encounter','Y','0000-00-00 00:00:00'),(166813,10,'T46.2X5D ','Adverse effect of other antidysrhythmic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166814,10,'T46.2X5S ','Adverse effect of other antidysrhythmic drugs, sequela','Y','0000-00-00 00:00:00'),(166815,10,'T46.2X6A ','Underdosing of other antidysrhythmic drugs, initial encounter','Y','0000-00-00 00:00:00'),(166816,10,'T46.2X6D ','Underdosing of other antidysrhythmic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166817,10,'T46.2X6S ','Underdosing of other antidysrhythmic drugs, sequela','Y','0000-00-00 00:00:00'),(166818,10,'T46.3X1A ','Poisoning by coronary vasodilators, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166819,10,'T46.3X1D ','Poisoning by coronary vasodilators, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166820,10,'T46.3X1S ','Poisoning by coronary vasodilators, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166821,10,'T46.3X2A ','Poisoning by coronary vasodilators, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166822,10,'T46.3X2D ','Poisoning by coronary vasodilators, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166823,10,'T46.3X2S ','Poisoning by coronary vasodilators, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166824,10,'T46.3X3A ','Poisoning by coronary vasodilators, assault, initial encounter','Y','0000-00-00 00:00:00'),(166825,10,'T46.3X3D ','Poisoning by coronary vasodilators, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166826,10,'T46.3X3S ','Poisoning by coronary vasodilators, assault, sequela','Y','0000-00-00 00:00:00'),(166827,10,'T46.3X4A ','Poisoning by coronary vasodilators, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166828,10,'T46.3X4D ','Poisoning by coronary vasodilators, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166829,10,'T46.3X4S ','Poisoning by coronary vasodilators, undetermined, sequela','Y','0000-00-00 00:00:00'),(166830,10,'T46.3X5A ','Adverse effect of coronary vasodilators, initial encounter','Y','0000-00-00 00:00:00'),(166831,10,'T46.3X5D ','Adverse effect of coronary vasodilators, subsequent encounter','Y','0000-00-00 00:00:00'),(166832,10,'T46.3X5S ','Adverse effect of coronary vasodilators, sequela','Y','0000-00-00 00:00:00'),(166833,10,'T46.3X6A ','Underdosing of coronary vasodilators, initial encounter','Y','0000-00-00 00:00:00'),(166834,10,'T46.3X6D ','Underdosing of coronary vasodilators, subsequent encounter','Y','0000-00-00 00:00:00'),(166835,10,'T46.3X6S ','Underdosing of coronary vasodilators, sequela','Y','0000-00-00 00:00:00'),(166836,10,'T46.4X1A ','Poisoning by angiotensin-converting-enzyme inhibitors, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166837,10,'T46.4X1D ','Poisoning by angiotensin-converting-enzyme inhibitors, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166838,10,'T46.4X1S ','Poisoning by angiotensin-converting-enzyme inhibitors, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166839,10,'T46.4X2A ','Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166840,10,'T46.4X2D ','Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166841,10,'T46.4X2S ','Poisoning by angiotensin-converting-enzyme inhibitors, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166842,10,'T46.4X3A ','Poisoning by angiotensin-converting-enzyme inhibitors, assault, initial encounter','Y','0000-00-00 00:00:00'),(166843,10,'T46.4X3D ','Poisoning by angiotensin-converting-enzyme inhibitors, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166844,10,'T46.4X3S ','Poisoning by angiotensin-converting-enzyme inhibitors, assault, sequela','Y','0000-00-00 00:00:00'),(166845,10,'T46.4X4A ','Poisoning by angiotensin-converting-enzyme inhibitors, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166846,10,'T46.4X4D ','Poisoning by angiotensin-converting-enzyme inhibitors, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166847,10,'T46.4X4S ','Poisoning by angiotensin-converting-enzyme inhibitors, undetermined, sequela','Y','0000-00-00 00:00:00'),(166848,10,'T46.4X5A ','Adverse effect of angiotensin-converting-enzyme inhibitors, initial encounter','Y','0000-00-00 00:00:00'),(166849,10,'T46.4X5D ','Adverse effect of angiotensin-converting-enzyme inhibitors, subsequent encounter','Y','0000-00-00 00:00:00'),(166850,10,'T46.4X5S ','Adverse effect of angiotensin-converting-enzyme inhibitors, sequela','Y','0000-00-00 00:00:00'),(166851,10,'T46.4X6A ','Underdosing of angiotensin-converting-enzyme inhibitors, initial encounter','Y','0000-00-00 00:00:00'),(166852,10,'T46.4X6D ','Underdosing of angiotensin-converting-enzyme inhibitors, subsequent encounter','Y','0000-00-00 00:00:00'),(166853,10,'T46.4X6S ','Underdosing of angiotensin-converting-enzyme inhibitors, sequela','Y','0000-00-00 00:00:00'),(166854,10,'T46.5X1A ','Poisoning by other antihypertensive drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166855,10,'T46.5X1D ','Poisoning by other antihypertensive drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166856,10,'T46.5X1S ','Poisoning by other antihypertensive drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166857,10,'T46.5X2A ','Poisoning by other antihypertensive drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166858,10,'T46.5X2D ','Poisoning by other antihypertensive drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166859,10,'T46.5X2S ','Poisoning by other antihypertensive drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166860,10,'T46.5X3A ','Poisoning by other antihypertensive drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(166861,10,'T46.5X3D ','Poisoning by other antihypertensive drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166862,10,'T46.5X3S ','Poisoning by other antihypertensive drugs, assault, sequela','Y','0000-00-00 00:00:00'),(166863,10,'T46.5X4A ','Poisoning by other antihypertensive drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166864,10,'T46.5X4D ','Poisoning by other antihypertensive drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166865,10,'T46.5X4S ','Poisoning by other antihypertensive drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(166866,10,'T46.5X5A ','Adverse effect of other antihypertensive drugs, initial encounter','Y','0000-00-00 00:00:00'),(166867,10,'T46.5X5D ','Adverse effect of other antihypertensive drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166868,10,'T46.5X5S ','Adverse effect of other antihypertensive drugs, sequela','Y','0000-00-00 00:00:00'),(166869,10,'T46.5X6A ','Underdosing of other antihypertensive drugs, initial encounter','Y','0000-00-00 00:00:00'),(166870,10,'T46.5X6D ','Underdosing of other antihypertensive drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166871,10,'T46.5X6S ','Underdosing of other antihypertensive drugs, sequela','Y','0000-00-00 00:00:00'),(166872,10,'T46.6X1A ','Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166873,10,'T46.6X1D ','Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166874,10,'T46.6X1S ','Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166875,10,'T46.6X2A ','Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166876,10,'T46.6X2D ','Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166877,10,'T46.6X2S ','Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166878,10,'T46.6X3A ','Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(166879,10,'T46.6X3D ','Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166880,10,'T46.6X3S ','Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, assault, sequela','Y','0000-00-00 00:00:00'),(166881,10,'T46.6X4A ','Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166882,10,'T46.6X4D ','Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166883,10,'T46.6X4S ','Poisoning by antihyperlipidemic and antiarteriosclerotic drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(166884,10,'T46.6X5A ','Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs, initial encounter','Y','0000-00-00 00:00:00'),(166885,10,'T46.6X5D ','Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166886,10,'T46.6X5S ','Adverse effect of antihyperlipidemic and antiarteriosclerotic drugs, sequela','Y','0000-00-00 00:00:00'),(166887,10,'T46.6X6A ','Underdosing of antihyperlipidemic and antiarteriosclerotic drugs, initial encounter','Y','0000-00-00 00:00:00'),(166888,10,'T46.6X6D ','Underdosing of antihyperlipidemic and antiarteriosclerotic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166889,10,'T46.6X6S ','Underdosing of antihyperlipidemic and antiarteriosclerotic drugs, sequela','Y','0000-00-00 00:00:00'),(166890,10,'T46.7X1A ','Poisoning by peripheral vasodilators, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166891,10,'T46.7X1D ','Poisoning by peripheral vasodilators, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166892,10,'T46.7X1S ','Poisoning by peripheral vasodilators, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166893,10,'T46.7X2A ','Poisoning by peripheral vasodilators, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166894,10,'T46.7X2D ','Poisoning by peripheral vasodilators, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166895,10,'T46.7X2S ','Poisoning by peripheral vasodilators, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166896,10,'T46.7X3A ','Poisoning by peripheral vasodilators, assault, initial encounter','Y','0000-00-00 00:00:00'),(166897,10,'T46.7X3D ','Poisoning by peripheral vasodilators, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166898,10,'T46.7X3S ','Poisoning by peripheral vasodilators, assault, sequela','Y','0000-00-00 00:00:00'),(166899,10,'T46.7X4A ','Poisoning by peripheral vasodilators, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166900,10,'T46.7X4D ','Poisoning by peripheral vasodilators, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166901,10,'T46.7X4S ','Poisoning by peripheral vasodilators, undetermined, sequela','Y','0000-00-00 00:00:00'),(166902,10,'T46.7X5A ','Adverse effect of peripheral vasodilators, initial encounter','Y','0000-00-00 00:00:00'),(166903,10,'T46.7X5D ','Adverse effect of peripheral vasodilators, subsequent encounter','Y','0000-00-00 00:00:00'),(166904,10,'T46.7X5S ','Adverse effect of peripheral vasodilators, sequela','Y','0000-00-00 00:00:00'),(166905,10,'T46.7X6A ','Underdosing of peripheral vasodilators, initial encounter','Y','0000-00-00 00:00:00'),(166906,10,'T46.7X6D ','Underdosing of peripheral vasodilators, subsequent encounter','Y','0000-00-00 00:00:00'),(166907,10,'T46.7X6S ','Underdosing of peripheral vasodilators, sequela','Y','0000-00-00 00:00:00'),(166908,10,'T46.8X1A ','Poisoning by antivaricose drugs, including sclerosing agents, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166909,10,'T46.8X1D ','Poisoning by antivaricose drugs, including sclerosing agents, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166910,10,'T46.8X1S ','Poisoning by antivaricose drugs, including sclerosing agents, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166911,10,'T46.8X2A ','Poisoning by antivaricose drugs, including sclerosing agents, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166912,10,'T46.8X2D ','Poisoning by antivaricose drugs, including sclerosing agents, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166913,10,'T46.8X2S ','Poisoning by antivaricose drugs, including sclerosing agents, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166914,10,'T46.8X3A ','Poisoning by antivaricose drugs, including sclerosing agents, assault, initial encounter','Y','0000-00-00 00:00:00'),(166915,10,'T46.8X3D ','Poisoning by antivaricose drugs, including sclerosing agents, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166916,10,'T46.8X3S ','Poisoning by antivaricose drugs, including sclerosing agents, assault, sequela','Y','0000-00-00 00:00:00'),(166917,10,'T46.8X4A ','Poisoning by antivaricose drugs, including sclerosing agents, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166918,10,'T46.8X4D ','Poisoning by antivaricose drugs, including sclerosing agents, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166919,10,'T46.8X4S ','Poisoning by antivaricose drugs, including sclerosing agents, undetermined, sequela','Y','0000-00-00 00:00:00'),(166920,10,'T46.8X5A ','Adverse effect of antivaricose drugs, including sclerosing agents, initial encounter','Y','0000-00-00 00:00:00'),(166921,10,'T46.8X5D ','Adverse effect of antivaricose drugs, including sclerosing agents, subsequent encounter','Y','0000-00-00 00:00:00'),(166922,10,'T46.8X5S ','Adverse effect of antivaricose drugs, including sclerosing agents, sequela','Y','0000-00-00 00:00:00'),(166923,10,'T46.8X6A ','Underdosing of antivaricose drugs, including sclerosing agents, initial encounter','Y','0000-00-00 00:00:00'),(166924,10,'T46.8X6D ','Underdosing of antivaricose drugs, including sclerosing agents, subsequent encounter','Y','0000-00-00 00:00:00'),(166925,10,'T46.8X6S ','Underdosing of antivaricose drugs, including sclerosing agents, sequela','Y','0000-00-00 00:00:00'),(166926,10,'T46.901A ','Poisoning by unspecified agents primarily affecting the cardiovascular system, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166927,10,'T46.901D ','Poisoning by unspecified agents primarily affecting the cardiovascular system, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166928,10,'T46.901S ','Poisoning by unspecified agents primarily affecting the cardiovascular system, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166929,10,'T46.902A ','Poisoning by unspecified agents primarily affecting the cardiovascular system, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166930,10,'T46.902D ','Poisoning by unspecified agents primarily affecting the cardiovascular system, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166931,10,'T46.902S ','Poisoning by unspecified agents primarily affecting the cardiovascular system, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166932,10,'T46.903A ','Poisoning by unspecified agents primarily affecting the cardiovascular system, assault, initial encounter','Y','0000-00-00 00:00:00'),(166933,10,'T46.903D ','Poisoning by unspecified agents primarily affecting the cardiovascular system, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166934,10,'T46.903S ','Poisoning by unspecified agents primarily affecting the cardiovascular system, assault, sequela','Y','0000-00-00 00:00:00'),(166935,10,'T46.904A ','Poisoning by unspecified agents primarily affecting the cardiovascular system, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166936,10,'T46.904D ','Poisoning by unspecified agents primarily affecting the cardiovascular system, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166937,10,'T46.904S ','Poisoning by unspecified agents primarily affecting the cardiovascular system, undetermined, sequela','Y','0000-00-00 00:00:00'),(166938,10,'T46.905A ','Adverse effect of unspecified agents primarily affecting the cardiovascular system, initial encounter','Y','0000-00-00 00:00:00'),(166939,10,'T46.905D ','Adverse effect of unspecified agents primarily affecting the cardiovascular system, subsequent encounter','Y','0000-00-00 00:00:00'),(166940,10,'T46.905S ','Adverse effect of unspecified agents primarily affecting the cardiovascular system, sequela','Y','0000-00-00 00:00:00'),(166941,10,'T46.906A ','Underdosing of unspecified agents primarily affecting the cardiovascular system, initial encounter','Y','0000-00-00 00:00:00'),(166942,10,'T46.906D ','Underdosing of unspecified agents primarily affecting the cardiovascular system, subsequent encounter','Y','0000-00-00 00:00:00'),(166943,10,'T46.906S ','Underdosing of unspecified agents primarily affecting the cardiovascular system, sequela','Y','0000-00-00 00:00:00'),(166944,10,'T46.991A ','Poisoning by other agents primarily affecting the cardiovascular system, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166945,10,'T46.991D ','Poisoning by other agents primarily affecting the cardiovascular system, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166946,10,'T46.991S ','Poisoning by other agents primarily affecting the cardiovascular system, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166947,10,'T46.992A ','Poisoning by other agents primarily affecting the cardiovascular system, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166948,10,'T46.992D ','Poisoning by other agents primarily affecting the cardiovascular system, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166949,10,'T46.992S ','Poisoning by other agents primarily affecting the cardiovascular system, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166950,10,'T46.993A ','Poisoning by other agents primarily affecting the cardiovascular system, assault, initial encounter','Y','0000-00-00 00:00:00'),(166951,10,'T46.993D ','Poisoning by other agents primarily affecting the cardiovascular system, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166952,10,'T46.993S ','Poisoning by other agents primarily affecting the cardiovascular system, assault, sequela','Y','0000-00-00 00:00:00'),(166953,10,'T46.994A ','Poisoning by other agents primarily affecting the cardiovascular system, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166954,10,'T46.994D ','Poisoning by other agents primarily affecting the cardiovascular system, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166955,10,'T46.994S ','Poisoning by other agents primarily affecting the cardiovascular system, undetermined, sequela','Y','0000-00-00 00:00:00'),(166956,10,'T46.995A ','Adverse effect of other agents primarily affecting the cardiovascular system, initial encounter','Y','0000-00-00 00:00:00'),(166957,10,'T46.995D ','Adverse effect of other agents primarily affecting the cardiovascular system, subsequent encounter','Y','0000-00-00 00:00:00'),(166958,10,'T46.995S ','Adverse effect of other agents primarily affecting the cardiovascular system, sequela','Y','0000-00-00 00:00:00'),(166959,10,'T46.996A ','Underdosing of other agents primarily affecting the cardiovascular system, initial encounter','Y','0000-00-00 00:00:00'),(166960,10,'T46.996D ','Underdosing of other agents primarily affecting the cardiovascular system, subsequent encounter','Y','0000-00-00 00:00:00'),(166961,10,'T46.996S ','Underdosing of other agents primarily affecting the cardiovascular system, sequela','Y','0000-00-00 00:00:00'),(166962,10,'T47.0X1A ','Poisoning by histamine H2-receptor blockers, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166963,10,'T47.0X1D ','Poisoning by histamine H2-receptor blockers, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166964,10,'T47.0X1S ','Poisoning by histamine H2-receptor blockers, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166965,10,'T47.0X2A ','Poisoning by histamine H2-receptor blockers, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166966,10,'T47.0X2D ','Poisoning by histamine H2-receptor blockers, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166967,10,'T47.0X2S ','Poisoning by histamine H2-receptor blockers, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166968,10,'T47.0X3A ','Poisoning by histamine H2-receptor blockers, assault, initial encounter','Y','0000-00-00 00:00:00'),(166969,10,'T47.0X3D ','Poisoning by histamine H2-receptor blockers, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166970,10,'T47.0X3S ','Poisoning by histamine H2-receptor blockers, assault, sequela','Y','0000-00-00 00:00:00'),(166971,10,'T47.0X4A ','Poisoning by histamine H2-receptor blockers, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166972,10,'T47.0X4D ','Poisoning by histamine H2-receptor blockers, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166973,10,'T47.0X4S ','Poisoning by histamine H2-receptor blockers, undetermined, sequela','Y','0000-00-00 00:00:00'),(166974,10,'T47.0X5A ','Adverse effect of histamine H2-receptor blockers, initial encounter','Y','0000-00-00 00:00:00'),(166975,10,'T47.0X5D ','Adverse effect of histamine H2-receptor blockers, subsequent encounter','Y','0000-00-00 00:00:00'),(166976,10,'T47.0X5S ','Adverse effect of histamine H2-receptor blockers, sequela','Y','0000-00-00 00:00:00'),(166977,10,'T47.0X6A ','Underdosing of histamine H2-receptor blockers, initial encounter','Y','0000-00-00 00:00:00'),(166978,10,'T47.0X6D ','Underdosing of histamine H2-receptor blockers, subsequent encounter','Y','0000-00-00 00:00:00'),(166979,10,'T47.0X6S ','Underdosing of histamine H2-receptor blockers, sequela','Y','0000-00-00 00:00:00'),(166980,10,'T47.1X1A ','Poisoning by other antacids and anti-gastric-secretion drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166981,10,'T47.1X1D ','Poisoning by other antacids and anti-gastric-secretion drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(166982,10,'T47.1X1S ','Poisoning by other antacids and anti-gastric-secretion drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(166983,10,'T47.1X2A ','Poisoning by other antacids and anti-gastric-secretion drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(166984,10,'T47.1X2D ','Poisoning by other antacids and anti-gastric-secretion drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(166985,10,'T47.1X2S ','Poisoning by other antacids and anti-gastric-secretion drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(166986,10,'T47.1X3A ','Poisoning by other antacids and anti-gastric-secretion drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(166987,10,'T47.1X3D ','Poisoning by other antacids and anti-gastric-secretion drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(166988,10,'T47.1X3S ','Poisoning by other antacids and anti-gastric-secretion drugs, assault, sequela','Y','0000-00-00 00:00:00'),(166989,10,'T47.1X4A ','Poisoning by other antacids and anti-gastric-secretion drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(166990,10,'T47.1X4D ','Poisoning by other antacids and anti-gastric-secretion drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(166991,10,'T47.1X4S ','Poisoning by other antacids and anti-gastric-secretion drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(166992,10,'T47.1X5A ','Adverse effect of other antacids and anti-gastric-secretion drugs, initial encounter','Y','0000-00-00 00:00:00'),(166993,10,'T47.1X5D ','Adverse effect of other antacids and anti-gastric-secretion drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166994,10,'T47.1X5S ','Adverse effect of other antacids and anti-gastric-secretion drugs, sequela','Y','0000-00-00 00:00:00'),(166995,10,'T47.1X6A ','Underdosing of other antacids and anti-gastric-secretion drugs, initial encounter','Y','0000-00-00 00:00:00'),(166996,10,'T47.1X6D ','Underdosing of other antacids and anti-gastric-secretion drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(166997,10,'T47.1X6S ','Underdosing of other antacids and anti-gastric-secretion drugs, sequela','Y','0000-00-00 00:00:00'),(166998,10,'T47.2X1A ','Poisoning by stimulant laxatives, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(166999,10,'T47.2X1D ','Poisoning by stimulant laxatives, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167000,10,'T47.2X1S ','Poisoning by stimulant laxatives, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167001,10,'T47.2X2A ','Poisoning by stimulant laxatives, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167002,10,'T47.2X2D ','Poisoning by stimulant laxatives, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167003,10,'T47.2X2S ','Poisoning by stimulant laxatives, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167004,10,'T47.2X3A ','Poisoning by stimulant laxatives, assault, initial encounter','Y','0000-00-00 00:00:00'),(167005,10,'T47.2X3D ','Poisoning by stimulant laxatives, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167006,10,'T47.2X3S ','Poisoning by stimulant laxatives, assault, sequela','Y','0000-00-00 00:00:00'),(167007,10,'T47.2X4A ','Poisoning by stimulant laxatives, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167008,10,'T47.2X4D ','Poisoning by stimulant laxatives, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167009,10,'T47.2X4S ','Poisoning by stimulant laxatives, undetermined, sequela','Y','0000-00-00 00:00:00'),(167010,10,'T47.2X5A ','Adverse effect of stimulant laxatives, initial encounter','Y','0000-00-00 00:00:00'),(167011,10,'T47.2X5D ','Adverse effect of stimulant laxatives, subsequent encounter','Y','0000-00-00 00:00:00'),(167012,10,'T47.2X5S ','Adverse effect of stimulant laxatives, sequela','Y','0000-00-00 00:00:00'),(167013,10,'T47.2X6A ','Underdosing of stimulant laxatives, initial encounter','Y','0000-00-00 00:00:00'),(167014,10,'T47.2X6D ','Underdosing of stimulant laxatives, subsequent encounter','Y','0000-00-00 00:00:00'),(167015,10,'T47.2X6S ','Underdosing of stimulant laxatives, sequela','Y','0000-00-00 00:00:00'),(167016,10,'T47.3X1A ','Poisoning by saline and osmotic laxatives, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167017,10,'T47.3X1D ','Poisoning by saline and osmotic laxatives, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167018,10,'T47.3X1S ','Poisoning by saline and osmotic laxatives, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167019,10,'T47.3X2A ','Poisoning by saline and osmotic laxatives, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167020,10,'T47.3X2D ','Poisoning by saline and osmotic laxatives, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167021,10,'T47.3X2S ','Poisoning by saline and osmotic laxatives, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167022,10,'T47.3X3A ','Poisoning by saline and osmotic laxatives, assault, initial encounter','Y','0000-00-00 00:00:00'),(167023,10,'T47.3X3D ','Poisoning by saline and osmotic laxatives, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167024,10,'T47.3X3S ','Poisoning by saline and osmotic laxatives, assault, sequela','Y','0000-00-00 00:00:00'),(167025,10,'T47.3X4A ','Poisoning by saline and osmotic laxatives, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167026,10,'T47.3X4D ','Poisoning by saline and osmotic laxatives, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167027,10,'T47.3X4S ','Poisoning by saline and osmotic laxatives, undetermined, sequela','Y','0000-00-00 00:00:00'),(167028,10,'T47.3X5A ','Adverse effect of saline and osmotic laxatives, initial encounter','Y','0000-00-00 00:00:00'),(167029,10,'T47.3X5D ','Adverse effect of saline and osmotic laxatives, subsequent encounter','Y','0000-00-00 00:00:00'),(167030,10,'T47.3X5S ','Adverse effect of saline and osmotic laxatives, sequela','Y','0000-00-00 00:00:00'),(167031,10,'T47.3X6A ','Underdosing of saline and osmotic laxatives, initial encounter','Y','0000-00-00 00:00:00'),(167032,10,'T47.3X6D ','Underdosing of saline and osmotic laxatives, subsequent encounter','Y','0000-00-00 00:00:00'),(167033,10,'T47.3X6S ','Underdosing of saline and osmotic laxatives, sequela','Y','0000-00-00 00:00:00'),(167034,10,'T47.4X1A ','Poisoning by other laxatives, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167035,10,'T47.4X1D ','Poisoning by other laxatives, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167036,10,'T47.4X1S ','Poisoning by other laxatives, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167037,10,'T47.4X2A ','Poisoning by other laxatives, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167038,10,'T47.4X2D ','Poisoning by other laxatives, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167039,10,'T47.4X2S ','Poisoning by other laxatives, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167040,10,'T47.4X3A ','Poisoning by other laxatives, assault, initial encounter','Y','0000-00-00 00:00:00'),(167041,10,'T47.4X3D ','Poisoning by other laxatives, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167042,10,'T47.4X3S ','Poisoning by other laxatives, assault, sequela','Y','0000-00-00 00:00:00'),(167043,10,'T47.4X4A ','Poisoning by other laxatives, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167044,10,'T47.4X4D ','Poisoning by other laxatives, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167045,10,'T47.4X4S ','Poisoning by other laxatives, undetermined, sequela','Y','0000-00-00 00:00:00'),(167046,10,'T47.4X5A ','Adverse effect of other laxatives, initial encounter','Y','0000-00-00 00:00:00'),(167047,10,'T47.4X5D ','Adverse effect of other laxatives, subsequent encounter','Y','0000-00-00 00:00:00'),(167048,10,'T47.4X5S ','Adverse effect of other laxatives, sequela','Y','0000-00-00 00:00:00'),(167049,10,'T47.4X6A ','Underdosing of other laxatives, initial encounter','Y','0000-00-00 00:00:00'),(167050,10,'T47.4X6D ','Underdosing of other laxatives, subsequent encounter','Y','0000-00-00 00:00:00'),(167051,10,'T47.4X6S ','Underdosing of other laxatives, sequela','Y','0000-00-00 00:00:00'),(167052,10,'T47.5X1A ','Poisoning by digestants, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167053,10,'T47.5X1D ','Poisoning by digestants, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167054,10,'T47.5X1S ','Poisoning by digestants, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167055,10,'T47.5X2A ','Poisoning by digestants, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167056,10,'T47.5X2D ','Poisoning by digestants, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167057,10,'T47.5X2S ','Poisoning by digestants, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167058,10,'T47.5X3A ','Poisoning by digestants, assault, initial encounter','Y','0000-00-00 00:00:00'),(167059,10,'T47.5X3D ','Poisoning by digestants, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167060,10,'T47.5X3S ','Poisoning by digestants, assault, sequela','Y','0000-00-00 00:00:00'),(167061,10,'T47.5X4A ','Poisoning by digestants, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167062,10,'T47.5X4D ','Poisoning by digestants, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167063,10,'T47.5X4S ','Poisoning by digestants, undetermined, sequela','Y','0000-00-00 00:00:00'),(167064,10,'T47.5X5A ','Adverse effect of digestants, initial encounter','Y','0000-00-00 00:00:00'),(167065,10,'T47.5X5D ','Adverse effect of digestants, subsequent encounter','Y','0000-00-00 00:00:00'),(167066,10,'T47.5X5S ','Adverse effect of digestants, sequela','Y','0000-00-00 00:00:00'),(167067,10,'T47.5X6A ','Underdosing of digestants, initial encounter','Y','0000-00-00 00:00:00'),(167068,10,'T47.5X6D ','Underdosing of digestants, subsequent encounter','Y','0000-00-00 00:00:00'),(167069,10,'T47.5X6S ','Underdosing of digestants, sequela','Y','0000-00-00 00:00:00'),(167070,10,'T47.6X1A ','Poisoning by antidiarrheal drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167071,10,'T47.6X1D ','Poisoning by antidiarrheal drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167072,10,'T47.6X1S ','Poisoning by antidiarrheal drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167073,10,'T47.6X2A ','Poisoning by antidiarrheal drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167074,10,'T47.6X2D ','Poisoning by antidiarrheal drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167075,10,'T47.6X2S ','Poisoning by antidiarrheal drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167076,10,'T47.6X3A ','Poisoning by antidiarrheal drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(167077,10,'T47.6X3D ','Poisoning by antidiarrheal drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167078,10,'T47.6X3S ','Poisoning by antidiarrheal drugs, assault, sequela','Y','0000-00-00 00:00:00'),(167079,10,'T47.6X4A ','Poisoning by antidiarrheal drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167080,10,'T47.6X4D ','Poisoning by antidiarrheal drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167081,10,'T47.6X4S ','Poisoning by antidiarrheal drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(167082,10,'T47.6X5A ','Adverse effect of antidiarrheal drugs, initial encounter','Y','0000-00-00 00:00:00'),(167083,10,'T47.6X5D ','Adverse effect of antidiarrheal drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(167084,10,'T47.6X5S ','Adverse effect of antidiarrheal drugs, sequela','Y','0000-00-00 00:00:00'),(167085,10,'T47.6X6A ','Underdosing of antidiarrheal drugs, initial encounter','Y','0000-00-00 00:00:00'),(167086,10,'T47.6X6D ','Underdosing of antidiarrheal drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(167087,10,'T47.6X6S ','Underdosing of antidiarrheal drugs, sequela','Y','0000-00-00 00:00:00'),(167088,10,'T47.7X1A ','Poisoning by emetics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167089,10,'T47.7X1D ','Poisoning by emetics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167090,10,'T47.7X1S ','Poisoning by emetics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167091,10,'T47.7X2A ','Poisoning by emetics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167092,10,'T47.7X2D ','Poisoning by emetics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167093,10,'T47.7X2S ','Poisoning by emetics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167094,10,'T47.7X3A ','Poisoning by emetics, assault, initial encounter','Y','0000-00-00 00:00:00'),(167095,10,'T47.7X3D ','Poisoning by emetics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167096,10,'T47.7X3S ','Poisoning by emetics, assault, sequela','Y','0000-00-00 00:00:00'),(167097,10,'T47.7X4A ','Poisoning by emetics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167098,10,'T47.7X4D ','Poisoning by emetics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167099,10,'T47.7X4S ','Poisoning by emetics, undetermined, sequela','Y','0000-00-00 00:00:00'),(167100,10,'T47.7X5A ','Adverse effect of emetics, initial encounter','Y','0000-00-00 00:00:00'),(167101,10,'T47.7X5D ','Adverse effect of emetics, subsequent encounter','Y','0000-00-00 00:00:00'),(167102,10,'T47.7X5S ','Adverse effect of emetics, sequela','Y','0000-00-00 00:00:00'),(167103,10,'T47.7X6A ','Underdosing of emetics, initial encounter','Y','0000-00-00 00:00:00'),(167104,10,'T47.7X6D ','Underdosing of emetics, subsequent encounter','Y','0000-00-00 00:00:00'),(167105,10,'T47.7X6S ','Underdosing of emetics, sequela','Y','0000-00-00 00:00:00'),(167106,10,'T47.8X1A ','Poisoning by other agents primarily affecting gastrointestinal system, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167107,10,'T47.8X1D ','Poisoning by other agents primarily affecting gastrointestinal system, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167108,10,'T47.8X1S ','Poisoning by other agents primarily affecting gastrointestinal system, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167109,10,'T47.8X2A ','Poisoning by other agents primarily affecting gastrointestinal system, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167110,10,'T47.8X2D ','Poisoning by other agents primarily affecting gastrointestinal system, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167111,10,'T47.8X2S ','Poisoning by other agents primarily affecting gastrointestinal system, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167112,10,'T47.8X3A ','Poisoning by other agents primarily affecting gastrointestinal system, assault, initial encounter','Y','0000-00-00 00:00:00'),(167113,10,'T47.8X3D ','Poisoning by other agents primarily affecting gastrointestinal system, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167114,10,'T47.8X3S ','Poisoning by other agents primarily affecting gastrointestinal system, assault, sequela','Y','0000-00-00 00:00:00'),(167115,10,'T47.8X4A ','Poisoning by other agents primarily affecting gastrointestinal system, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167116,10,'T47.8X4D ','Poisoning by other agents primarily affecting gastrointestinal system, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167117,10,'T47.8X4S ','Poisoning by other agents primarily affecting gastrointestinal system, undetermined, sequela','Y','0000-00-00 00:00:00'),(167118,10,'T47.8X5A ','Adverse effect of other agents primarily affecting gastrointestinal system, initial encounter','Y','0000-00-00 00:00:00'),(167119,10,'T47.8X5D ','Adverse effect of other agents primarily affecting gastrointestinal system, subsequent encounter','Y','0000-00-00 00:00:00'),(167120,10,'T47.8X5S ','Adverse effect of other agents primarily affecting gastrointestinal system, sequela','Y','0000-00-00 00:00:00'),(167121,10,'T47.8X6A ','Underdosing of other agents primarily affecting gastrointestinal system, initial encounter','Y','0000-00-00 00:00:00'),(167122,10,'T47.8X6D ','Underdosing of other agents primarily affecting gastrointestinal system, subsequent encounter','Y','0000-00-00 00:00:00'),(167123,10,'T47.8X6S ','Underdosing of other agents primarily affecting gastrointestinal system, sequela','Y','0000-00-00 00:00:00'),(167124,10,'T47.91XA ','Poisoning by unspecified agents primarily affecting the gastrointestinal system, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167125,10,'T47.91XD ','Poisoning by unspecified agents primarily affecting the gastrointestinal system, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167126,10,'T47.91XS ','Poisoning by unspecified agents primarily affecting the gastrointestinal system, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167127,10,'T47.92XA ','Poisoning by unspecified agents primarily affecting the gastrointestinal system, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167128,10,'T47.92XD ','Poisoning by unspecified agents primarily affecting the gastrointestinal system, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167129,10,'T47.92XS ','Poisoning by unspecified agents primarily affecting the gastrointestinal system, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167130,10,'T47.93XA ','Poisoning by unspecified agents primarily affecting the gastrointestinal system, assault, initial encounter','Y','0000-00-00 00:00:00'),(167131,10,'T47.93XD ','Poisoning by unspecified agents primarily affecting the gastrointestinal system, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167132,10,'T47.93XS ','Poisoning by unspecified agents primarily affecting the gastrointestinal system, assault, sequela','Y','0000-00-00 00:00:00'),(167133,10,'T47.94XA ','Poisoning by unspecified agents primarily affecting the gastrointestinal system, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167134,10,'T47.94XD ','Poisoning by unspecified agents primarily affecting the gastrointestinal system, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167135,10,'T47.94XS ','Poisoning by unspecified agents primarily affecting the gastrointestinal system, undetermined, sequela','Y','0000-00-00 00:00:00'),(167136,10,'T47.95XA ','Adverse effect of unspecified agents primarily affecting the gastrointestinal system, initial encounter','Y','0000-00-00 00:00:00'),(167137,10,'T47.95XD ','Adverse effect of unspecified agents primarily affecting the gastrointestinal system, subsequent encounter','Y','0000-00-00 00:00:00'),(167138,10,'T47.95XS ','Adverse effect of unspecified agents primarily affecting the gastrointestinal system, sequela','Y','0000-00-00 00:00:00'),(167139,10,'T47.96XA ','Underdosing of unspecified agents primarily affecting the gastrointestinal system, initial encounter','Y','0000-00-00 00:00:00'),(167140,10,'T47.96XD ','Underdosing of unspecified agents primarily affecting the gastrointestinal system, subsequent encounter','Y','0000-00-00 00:00:00'),(167141,10,'T47.96XS ','Underdosing of unspecified agents primarily affecting the gastrointestinal system, sequela','Y','0000-00-00 00:00:00'),(167142,10,'T48.0X1A ','Poisoning by oxytocic drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167143,10,'T48.0X1D ','Poisoning by oxytocic drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167144,10,'T48.0X1S ','Poisoning by oxytocic drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167145,10,'T48.0X2A ','Poisoning by oxytocic drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167146,10,'T48.0X2D ','Poisoning by oxytocic drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167147,10,'T48.0X2S ','Poisoning by oxytocic drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167148,10,'T48.0X3A ','Poisoning by oxytocic drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(167149,10,'T48.0X3D ','Poisoning by oxytocic drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167150,10,'T48.0X3S ','Poisoning by oxytocic drugs, assault, sequela','Y','0000-00-00 00:00:00'),(167151,10,'T48.0X4A ','Poisoning by oxytocic drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167152,10,'T48.0X4D ','Poisoning by oxytocic drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167153,10,'T48.0X4S ','Poisoning by oxytocic drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(167154,10,'T48.0X5A ','Adverse effect of oxytocic drugs, initial encounter','Y','0000-00-00 00:00:00'),(167155,10,'T48.0X5D ','Adverse effect of oxytocic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(167156,10,'T48.0X5S ','Adverse effect of oxytocic drugs, sequela','Y','0000-00-00 00:00:00'),(167157,10,'T48.0X6A ','Underdosing of oxytocic drugs, initial encounter','Y','0000-00-00 00:00:00'),(167158,10,'T48.0X6D ','Underdosing of oxytocic drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(167159,10,'T48.0X6S ','Underdosing of oxytocic drugs, sequela','Y','0000-00-00 00:00:00'),(167160,10,'T48.1X1A ','Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167161,10,'T48.1X1D ','Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167162,10,'T48.1X1S ','Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167163,10,'T48.1X2A ','Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167164,10,'T48.1X2D ','Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167165,10,'T48.1X2S ','Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167166,10,'T48.1X3A ','Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault, initial encounter','Y','0000-00-00 00:00:00'),(167167,10,'T48.1X3D ','Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167168,10,'T48.1X3S ','Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], assault, sequela','Y','0000-00-00 00:00:00'),(167169,10,'T48.1X4A ','Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167170,10,'T48.1X4D ','Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167171,10,'T48.1X4S ','Poisoning by skeletal muscle relaxants [neuromuscular blocking agents], undetermined, sequela','Y','0000-00-00 00:00:00'),(167172,10,'T48.1X5A ','Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents], initial encounter','Y','0000-00-00 00:00:00'),(167173,10,'T48.1X5D ','Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents], subsequent encounter','Y','0000-00-00 00:00:00'),(167174,10,'T48.1X5S ','Adverse effect of skeletal muscle relaxants [neuromuscular blocking agents], sequela','Y','0000-00-00 00:00:00'),(167175,10,'T48.1X6A ','Underdosing of skeletal muscle relaxants [neuromuscular blocking agents], initial encounter','Y','0000-00-00 00:00:00'),(167176,10,'T48.1X6D ','Underdosing of skeletal muscle relaxants [neuromuscular blocking agents], subsequent encounter','Y','0000-00-00 00:00:00'),(167177,10,'T48.1X6S ','Underdosing of skeletal muscle relaxants [neuromuscular blocking agents], sequela','Y','0000-00-00 00:00:00'),(167178,10,'T48.201A ','Poisoning by unspecified drugs acting on muscles, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167179,10,'T48.201D ','Poisoning by unspecified drugs acting on muscles, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167180,10,'T48.201S ','Poisoning by unspecified drugs acting on muscles, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167181,10,'T48.202A ','Poisoning by unspecified drugs acting on muscles, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167182,10,'T48.202D ','Poisoning by unspecified drugs acting on muscles, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167183,10,'T48.202S ','Poisoning by unspecified drugs acting on muscles, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167184,10,'T48.203A ','Poisoning by unspecified drugs acting on muscles, assault, initial encounter','Y','0000-00-00 00:00:00'),(167185,10,'T48.203D ','Poisoning by unspecified drugs acting on muscles, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167186,10,'T48.203S ','Poisoning by unspecified drugs acting on muscles, assault, sequela','Y','0000-00-00 00:00:00'),(167187,10,'T48.204A ','Poisoning by unspecified drugs acting on muscles, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167188,10,'T48.204D ','Poisoning by unspecified drugs acting on muscles, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167189,10,'T48.204S ','Poisoning by unspecified drugs acting on muscles, undetermined, sequela','Y','0000-00-00 00:00:00'),(167190,10,'T48.205A ','Adverse effect of unspecified drugs acting on muscles, initial encounter','Y','0000-00-00 00:00:00'),(167191,10,'T48.205D ','Adverse effect of unspecified drugs acting on muscles, subsequent encounter','Y','0000-00-00 00:00:00'),(167192,10,'T48.205S ','Adverse effect of unspecified drugs acting on muscles, sequela','Y','0000-00-00 00:00:00'),(167193,10,'T48.206A ','Underdosing of unspecified drugs acting on muscles, initial encounter','Y','0000-00-00 00:00:00'),(167194,10,'T48.206D ','Underdosing of unspecified drugs acting on muscles, subsequent encounter','Y','0000-00-00 00:00:00'),(167195,10,'T48.206S ','Underdosing of unspecified drugs acting on muscles, sequela','Y','0000-00-00 00:00:00'),(167196,10,'T48.291A ','Poisoning by other drugs acting on muscles, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167197,10,'T48.291D ','Poisoning by other drugs acting on muscles, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167198,10,'T48.291S ','Poisoning by other drugs acting on muscles, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167199,10,'T48.292A ','Poisoning by other drugs acting on muscles, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167200,10,'T48.292D ','Poisoning by other drugs acting on muscles, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167201,10,'T48.292S ','Poisoning by other drugs acting on muscles, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167202,10,'T48.293A ','Poisoning by other drugs acting on muscles, assault, initial encounter','Y','0000-00-00 00:00:00'),(167203,10,'T48.293D ','Poisoning by other drugs acting on muscles, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167204,10,'T48.293S ','Poisoning by other drugs acting on muscles, assault, sequela','Y','0000-00-00 00:00:00'),(167205,10,'T48.294A ','Poisoning by other drugs acting on muscles, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167206,10,'T48.294D ','Poisoning by other drugs acting on muscles, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167207,10,'T48.294S ','Poisoning by other drugs acting on muscles, undetermined, sequela','Y','0000-00-00 00:00:00'),(167208,10,'T48.295A ','Adverse effect of other drugs acting on muscles, initial encounter','Y','0000-00-00 00:00:00'),(167209,10,'T48.295D ','Adverse effect of other drugs acting on muscles, subsequent encounter','Y','0000-00-00 00:00:00'),(167210,10,'T48.295S ','Adverse effect of other drugs acting on muscles, sequela','Y','0000-00-00 00:00:00'),(167211,10,'T48.296A ','Underdosing of other drugs acting on muscles, initial encounter','Y','0000-00-00 00:00:00'),(167212,10,'T48.296D ','Underdosing of other drugs acting on muscles, subsequent encounter','Y','0000-00-00 00:00:00'),(167213,10,'T48.296S ','Underdosing of other drugs acting on muscles, sequela','Y','0000-00-00 00:00:00'),(167214,10,'T48.3X1A ','Poisoning by antitussives, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167215,10,'T48.3X1D ','Poisoning by antitussives, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167216,10,'T48.3X1S ','Poisoning by antitussives, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167217,10,'T48.3X2A ','Poisoning by antitussives, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167218,10,'T48.3X2D ','Poisoning by antitussives, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167219,10,'T48.3X2S ','Poisoning by antitussives, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167220,10,'T48.3X3A ','Poisoning by antitussives, assault, initial encounter','Y','0000-00-00 00:00:00'),(167221,10,'T48.3X3D ','Poisoning by antitussives, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167222,10,'T48.3X3S ','Poisoning by antitussives, assault, sequela','Y','0000-00-00 00:00:00'),(167223,10,'T48.3X4A ','Poisoning by antitussives, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167224,10,'T48.3X4D ','Poisoning by antitussives, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167225,10,'T48.3X4S ','Poisoning by antitussives, undetermined, sequela','Y','0000-00-00 00:00:00'),(167226,10,'T48.3X5A ','Adverse effect of antitussives, initial encounter','Y','0000-00-00 00:00:00'),(167227,10,'T48.3X5D ','Adverse effect of antitussives, subsequent encounter','Y','0000-00-00 00:00:00'),(167228,10,'T48.3X5S ','Adverse effect of antitussives, sequela','Y','0000-00-00 00:00:00'),(167229,10,'T48.3X6A ','Underdosing of antitussives, initial encounter','Y','0000-00-00 00:00:00'),(167230,10,'T48.3X6D ','Underdosing of antitussives, subsequent encounter','Y','0000-00-00 00:00:00'),(167231,10,'T48.3X6S ','Underdosing of antitussives, sequela','Y','0000-00-00 00:00:00'),(167232,10,'T48.4X1A ','Poisoning by expectorants, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167233,10,'T48.4X1D ','Poisoning by expectorants, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167234,10,'T48.4X1S ','Poisoning by expectorants, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167235,10,'T48.4X2A ','Poisoning by expectorants, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167236,10,'T48.4X2D ','Poisoning by expectorants, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167237,10,'T48.4X2S ','Poisoning by expectorants, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167238,10,'T48.4X3A ','Poisoning by expectorants, assault, initial encounter','Y','0000-00-00 00:00:00'),(167239,10,'T48.4X3D ','Poisoning by expectorants, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167240,10,'T48.4X3S ','Poisoning by expectorants, assault, sequela','Y','0000-00-00 00:00:00'),(167241,10,'T48.4X4A ','Poisoning by expectorants, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167242,10,'T48.4X4D ','Poisoning by expectorants, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167243,10,'T48.4X4S ','Poisoning by expectorants, undetermined, sequela','Y','0000-00-00 00:00:00'),(167244,10,'T48.4X5A ','Adverse effect of expectorants, initial encounter','Y','0000-00-00 00:00:00'),(167245,10,'T48.4X5D ','Adverse effect of expectorants, subsequent encounter','Y','0000-00-00 00:00:00'),(167246,10,'T48.4X5S ','Adverse effect of expectorants, sequela','Y','0000-00-00 00:00:00'),(167247,10,'T48.4X6A ','Underdosing of expectorants, initial encounter','Y','0000-00-00 00:00:00'),(167248,10,'T48.4X6D ','Underdosing of expectorants, subsequent encounter','Y','0000-00-00 00:00:00'),(167249,10,'T48.4X6S ','Underdosing of expectorants, sequela','Y','0000-00-00 00:00:00'),(167250,10,'T48.5X1A ','Poisoning by other anti-common-cold drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167251,10,'T48.5X1D ','Poisoning by other anti-common-cold drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167252,10,'T48.5X1S ','Poisoning by other anti-common-cold drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167253,10,'T48.5X2A ','Poisoning by other anti-common-cold drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167254,10,'T48.5X2D ','Poisoning by other anti-common-cold drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167255,10,'T48.5X2S ','Poisoning by other anti-common-cold drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167256,10,'T48.5X3A ','Poisoning by other anti-common-cold drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(167257,10,'T48.5X3D ','Poisoning by other anti-common-cold drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167258,10,'T48.5X3S ','Poisoning by other anti-common-cold drugs, assault, sequela','Y','0000-00-00 00:00:00'),(167259,10,'T48.5X4A ','Poisoning by other anti-common-cold drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167260,10,'T48.5X4D ','Poisoning by other anti-common-cold drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167261,10,'T48.5X4S ','Poisoning by other anti-common-cold drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(167262,10,'T48.5X5A ','Adverse effect of other anti-common-cold drugs, initial encounter','Y','0000-00-00 00:00:00'),(167263,10,'T48.5X5D ','Adverse effect of other anti-common-cold drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(167264,10,'T48.5X5S ','Adverse effect of other anti-common-cold drugs, sequela','Y','0000-00-00 00:00:00'),(167265,10,'T48.5X6A ','Underdosing of other anti-common-cold drugs, initial encounter','Y','0000-00-00 00:00:00'),(167266,10,'T48.5X6D ','Underdosing of other anti-common-cold drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(167267,10,'T48.5X6S ','Underdosing of other anti-common-cold drugs, sequela','Y','0000-00-00 00:00:00'),(167268,10,'T48.6X1A ','Poisoning by antiasthmatics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167269,10,'T48.6X1D ','Poisoning by antiasthmatics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167270,10,'T48.6X1S ','Poisoning by antiasthmatics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167271,10,'T48.6X2A ','Poisoning by antiasthmatics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167272,10,'T48.6X2D ','Poisoning by antiasthmatics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167273,10,'T48.6X2S ','Poisoning by antiasthmatics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167274,10,'T48.6X3A ','Poisoning by antiasthmatics, assault, initial encounter','Y','0000-00-00 00:00:00'),(167275,10,'T48.6X3D ','Poisoning by antiasthmatics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167276,10,'T48.6X3S ','Poisoning by antiasthmatics, assault, sequela','Y','0000-00-00 00:00:00'),(167277,10,'T48.6X4A ','Poisoning by antiasthmatics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167278,10,'T48.6X4D ','Poisoning by antiasthmatics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167279,10,'T48.6X4S ','Poisoning by antiasthmatics, undetermined, sequela','Y','0000-00-00 00:00:00'),(167280,10,'T48.6X5A ','Adverse effect of antiasthmatics, initial encounter','Y','0000-00-00 00:00:00'),(167281,10,'T48.6X5D ','Adverse effect of antiasthmatics, subsequent encounter','Y','0000-00-00 00:00:00'),(167282,10,'T48.6X5S ','Adverse effect of antiasthmatics, sequela','Y','0000-00-00 00:00:00'),(167283,10,'T48.6X6A ','Underdosing of antiasthmatics, initial encounter','Y','0000-00-00 00:00:00'),(167284,10,'T48.6X6D ','Underdosing of antiasthmatics, subsequent encounter','Y','0000-00-00 00:00:00'),(167285,10,'T48.6X6S ','Underdosing of antiasthmatics, sequela','Y','0000-00-00 00:00:00'),(167286,10,'T48.901A ','Poisoning by unspecified agents primarily acting on the respiratory system, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167287,10,'T48.901D ','Poisoning by unspecified agents primarily acting on the respiratory system, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167288,10,'T48.901S ','Poisoning by unspecified agents primarily acting on the respiratory system, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167289,10,'T48.902A ','Poisoning by unspecified agents primarily acting on the respiratory system, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167290,10,'T48.902D ','Poisoning by unspecified agents primarily acting on the respiratory system, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167291,10,'T48.902S ','Poisoning by unspecified agents primarily acting on the respiratory system, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167292,10,'T48.903A ','Poisoning by unspecified agents primarily acting on the respiratory system, assault, initial encounter','Y','0000-00-00 00:00:00'),(167293,10,'T48.903D ','Poisoning by unspecified agents primarily acting on the respiratory system, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167294,10,'T48.903S ','Poisoning by unspecified agents primarily acting on the respiratory system, assault, sequela','Y','0000-00-00 00:00:00'),(167295,10,'T48.904A ','Poisoning by unspecified agents primarily acting on the respiratory system, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167296,10,'T48.904D ','Poisoning by unspecified agents primarily acting on the respiratory system, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167297,10,'T48.904S ','Poisoning by unspecified agents primarily acting on the respiratory system, undetermined, sequela','Y','0000-00-00 00:00:00'),(167298,10,'T48.905A ','Adverse effect of unspecified agents primarily acting on the respiratory system, initial encounter','Y','0000-00-00 00:00:00'),(167299,10,'T48.905D ','Adverse effect of unspecified agents primarily acting on the respiratory system, subsequent encounter','Y','0000-00-00 00:00:00'),(167300,10,'T48.905S ','Adverse effect of unspecified agents primarily acting on the respiratory system, sequela','Y','0000-00-00 00:00:00'),(167301,10,'T48.906A ','Underdosing of unspecified agents primarily acting on the respiratory system, initial encounter','Y','0000-00-00 00:00:00'),(167302,10,'T48.906D ','Underdosing of unspecified agents primarily acting on the respiratory system, subsequent encounter','Y','0000-00-00 00:00:00'),(167303,10,'T48.906S ','Underdosing of unspecified agents primarily acting on the respiratory system, sequela','Y','0000-00-00 00:00:00'),(167304,10,'T48.991A ','Poisoning by other agents primarily acting on the respiratory system, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167305,10,'T48.991D ','Poisoning by other agents primarily acting on the respiratory system, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167306,10,'T48.991S ','Poisoning by other agents primarily acting on the respiratory system, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167307,10,'T48.992A ','Poisoning by other agents primarily acting on the respiratory system, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167308,10,'T48.992D ','Poisoning by other agents primarily acting on the respiratory system, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167309,10,'T48.992S ','Poisoning by other agents primarily acting on the respiratory system, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167310,10,'T48.993A ','Poisoning by other agents primarily acting on the respiratory system, assault, initial encounter','Y','0000-00-00 00:00:00'),(167311,10,'T48.993D ','Poisoning by other agents primarily acting on the respiratory system, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167312,10,'T48.993S ','Poisoning by other agents primarily acting on the respiratory system, assault, sequela','Y','0000-00-00 00:00:00'),(167313,10,'T48.994A ','Poisoning by other agents primarily acting on the respiratory system, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167314,10,'T48.994D ','Poisoning by other agents primarily acting on the respiratory system, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167315,10,'T48.994S ','Poisoning by other agents primarily acting on the respiratory system, undetermined, sequela','Y','0000-00-00 00:00:00'),(167316,10,'T48.995A ','Adverse effect of other agents primarily acting on the respiratory system, initial encounter','Y','0000-00-00 00:00:00'),(167317,10,'T48.995D ','Adverse effect of other agents primarily acting on the respiratory system, subsequent encounter','Y','0000-00-00 00:00:00'),(167318,10,'T48.995S ','Adverse effect of other agents primarily acting on the respiratory system, sequela','Y','0000-00-00 00:00:00'),(167319,10,'T48.996A ','Underdosing of other agents primarily acting on the respiratory system, initial encounter','Y','0000-00-00 00:00:00'),(167320,10,'T48.996D ','Underdosing of other agents primarily acting on the respiratory system, subsequent encounter','Y','0000-00-00 00:00:00'),(167321,10,'T48.996S ','Underdosing of other agents primarily acting on the respiratory system, sequela','Y','0000-00-00 00:00:00'),(167322,10,'T49.0X1A ','Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167323,10,'T49.0X1D ','Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167324,10,'T49.0X1S ','Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167325,10,'T49.0X2A ','Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167326,10,'T49.0X2D ','Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167327,10,'T49.0X2S ','Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167328,10,'T49.0X3A ','Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, assault, initial encounter','Y','0000-00-00 00:00:00'),(167329,10,'T49.0X3D ','Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167330,10,'T49.0X3S ','Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, assault, sequela','Y','0000-00-00 00:00:00'),(167331,10,'T49.0X4A ','Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167332,10,'T49.0X4D ','Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167333,10,'T49.0X4S ','Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, undetermined, sequela','Y','0000-00-00 00:00:00'),(167334,10,'T49.0X5A ','Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs, initial encounter','Y','0000-00-00 00:00:00'),(167335,10,'T49.0X5D ','Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(167336,10,'T49.0X5S ','Adverse effect of local antifungal, anti-infective and anti-inflammatory drugs, sequela','Y','0000-00-00 00:00:00'),(167337,10,'T49.0X6A ','Underdosing of local antifungal, anti-infective and anti-inflammatory drugs, initial encounter','Y','0000-00-00 00:00:00'),(167338,10,'T49.0X6D ','Underdosing of local antifungal, anti-infective and anti-inflammatory drugs, subsequent encounter','Y','0000-00-00 00:00:00'),(167339,10,'T49.0X6S ','Underdosing of local antifungal, anti-infective and anti-inflammatory drugs, sequela','Y','0000-00-00 00:00:00'),(167340,10,'T49.1X1A ','Poisoning by antipruritics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167341,10,'T49.1X1D ','Poisoning by antipruritics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167342,10,'T49.1X1S ','Poisoning by antipruritics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167343,10,'T49.1X2A ','Poisoning by antipruritics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167344,10,'T49.1X2D ','Poisoning by antipruritics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167345,10,'T49.1X2S ','Poisoning by antipruritics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167346,10,'T49.1X3A ','Poisoning by antipruritics, assault, initial encounter','Y','0000-00-00 00:00:00'),(167347,10,'T49.1X3D ','Poisoning by antipruritics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167348,10,'T49.1X3S ','Poisoning by antipruritics, assault, sequela','Y','0000-00-00 00:00:00'),(167349,10,'T49.1X4A ','Poisoning by antipruritics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167350,10,'T49.1X4D ','Poisoning by antipruritics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167351,10,'T49.1X4S ','Poisoning by antipruritics, undetermined, sequela','Y','0000-00-00 00:00:00'),(167352,10,'T49.1X5A ','Adverse effect of antipruritics, initial encounter','Y','0000-00-00 00:00:00'),(167353,10,'T49.1X5D ','Adverse effect of antipruritics, subsequent encounter','Y','0000-00-00 00:00:00'),(167354,10,'T49.1X5S ','Adverse effect of antipruritics, sequela','Y','0000-00-00 00:00:00'),(167355,10,'T49.1X6A ','Underdosing of antipruritics, initial encounter','Y','0000-00-00 00:00:00'),(167356,10,'T49.1X6D ','Underdosing of antipruritics, subsequent encounter','Y','0000-00-00 00:00:00'),(167357,10,'T49.1X6S ','Underdosing of antipruritics, sequela','Y','0000-00-00 00:00:00'),(167358,10,'T49.2X1A ','Poisoning by local astringents and local detergents, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167359,10,'T49.2X1D ','Poisoning by local astringents and local detergents, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167360,10,'T49.2X1S ','Poisoning by local astringents and local detergents, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167361,10,'T49.2X2A ','Poisoning by local astringents and local detergents, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167362,10,'T49.2X2D ','Poisoning by local astringents and local detergents, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167363,10,'T49.2X2S ','Poisoning by local astringents and local detergents, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167364,10,'T49.2X3A ','Poisoning by local astringents and local detergents, assault, initial encounter','Y','0000-00-00 00:00:00'),(167365,10,'T49.2X3D ','Poisoning by local astringents and local detergents, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167366,10,'T49.2X3S ','Poisoning by local astringents and local detergents, assault, sequela','Y','0000-00-00 00:00:00'),(167367,10,'T49.2X4A ','Poisoning by local astringents and local detergents, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167368,10,'T49.2X4D ','Poisoning by local astringents and local detergents, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167369,10,'T49.2X4S ','Poisoning by local astringents and local detergents, undetermined, sequela','Y','0000-00-00 00:00:00'),(167370,10,'T49.2X5A ','Adverse effect of local astringents and local detergents, initial encounter','Y','0000-00-00 00:00:00'),(167371,10,'T49.2X5D ','Adverse effect of local astringents and local detergents, subsequent encounter','Y','0000-00-00 00:00:00'),(167372,10,'T49.2X5S ','Adverse effect of local astringents and local detergents, sequela','Y','0000-00-00 00:00:00'),(167373,10,'T49.2X6A ','Underdosing of local astringents and local detergents, initial encounter','Y','0000-00-00 00:00:00'),(167374,10,'T49.2X6D ','Underdosing of local astringents and local detergents, subsequent encounter','Y','0000-00-00 00:00:00'),(167375,10,'T49.2X6S ','Underdosing of local astringents and local detergents, sequela','Y','0000-00-00 00:00:00'),(167376,10,'T49.3X1A ','Poisoning by emollients, demulcents and protectants, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167377,10,'T49.3X1D ','Poisoning by emollients, demulcents and protectants, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167378,10,'T49.3X1S ','Poisoning by emollients, demulcents and protectants, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167379,10,'T49.3X2A ','Poisoning by emollients, demulcents and protectants, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167380,10,'T49.3X2D ','Poisoning by emollients, demulcents and protectants, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167381,10,'T49.3X2S ','Poisoning by emollients, demulcents and protectants, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167382,10,'T49.3X3A ','Poisoning by emollients, demulcents and protectants, assault, initial encounter','Y','0000-00-00 00:00:00'),(167383,10,'T49.3X3D ','Poisoning by emollients, demulcents and protectants, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167384,10,'T49.3X3S ','Poisoning by emollients, demulcents and protectants, assault, sequela','Y','0000-00-00 00:00:00'),(167385,10,'T49.3X4A ','Poisoning by emollients, demulcents and protectants, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167386,10,'T49.3X4D ','Poisoning by emollients, demulcents and protectants, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167387,10,'T49.3X4S ','Poisoning by emollients, demulcents and protectants, undetermined, sequela','Y','0000-00-00 00:00:00'),(167388,10,'T49.3X5A ','Adverse effect of emollients, demulcents and protectants, initial encounter','Y','0000-00-00 00:00:00'),(167389,10,'T49.3X5D ','Adverse effect of emollients, demulcents and protectants, subsequent encounter','Y','0000-00-00 00:00:00'),(167390,10,'T49.3X5S ','Adverse effect of emollients, demulcents and protectants, sequela','Y','0000-00-00 00:00:00'),(167391,10,'T49.3X6A ','Underdosing of emollients, demulcents and protectants, initial encounter','Y','0000-00-00 00:00:00'),(167392,10,'T49.3X6D ','Underdosing of emollients, demulcents and protectants, subsequent encounter','Y','0000-00-00 00:00:00'),(167393,10,'T49.3X6S ','Underdosing of emollients, demulcents and protectants, sequela','Y','0000-00-00 00:00:00'),(167394,10,'T49.4X1A ','Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167395,10,'T49.4X1D ','Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167396,10,'T49.4X1S ','Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167397,10,'T49.4X2A ','Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167398,10,'T49.4X2D ','Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167399,10,'T49.4X2S ','Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167400,10,'T49.4X3A ','Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, assault, initial encounter','Y','0000-00-00 00:00:00'),(167401,10,'T49.4X3D ','Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167402,10,'T49.4X3S ','Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, assault, sequela','Y','0000-00-00 00:00:00'),(167403,10,'T49.4X4A ','Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167404,10,'T49.4X4D ','Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167405,10,'T49.4X4S ','Poisoning by keratolytics, keratoplastics, and other hair treatment drugs and preparations, undetermined, sequela','Y','0000-00-00 00:00:00'),(167406,10,'T49.4X5A ','Adverse effect of keratolytics, keratoplastics, and other hair treatment drugs and preparations, initial encounter','Y','0000-00-00 00:00:00'),(167407,10,'T49.4X5D ','Adverse effect of keratolytics, keratoplastics, and other hair treatment drugs and preparations, subsequent encounter','Y','0000-00-00 00:00:00'),(167408,10,'T49.4X5S ','Adverse effect of keratolytics, keratoplastics, and other hair treatment drugs and preparations, sequela','Y','0000-00-00 00:00:00'),(167409,10,'T49.4X6A ','Underdosing of keratolytics, keratoplastics, and other hair treatment drugs and preparations, initial encounter','Y','0000-00-00 00:00:00'),(167410,10,'T49.4X6D ','Underdosing of keratolytics, keratoplastics, and other hair treatment drugs and preparations, subsequent encounter','Y','0000-00-00 00:00:00'),(167411,10,'T49.4X6S ','Underdosing of keratolytics, keratoplastics, and other hair treatment drugs and preparations, sequela','Y','0000-00-00 00:00:00'),(167412,10,'T49.5X1A ','Poisoning by ophthalmological drugs and preparations, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167413,10,'T49.5X1D ','Poisoning by ophthalmological drugs and preparations, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167414,10,'T49.5X1S ','Poisoning by ophthalmological drugs and preparations, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167415,10,'T49.5X2A ','Poisoning by ophthalmological drugs and preparations, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167416,10,'T49.5X2D ','Poisoning by ophthalmological drugs and preparations, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167417,10,'T49.5X2S ','Poisoning by ophthalmological drugs and preparations, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167418,10,'T49.5X3A ','Poisoning by ophthalmological drugs and preparations, assault, initial encounter','Y','0000-00-00 00:00:00'),(167419,10,'T49.5X3D ','Poisoning by ophthalmological drugs and preparations, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167420,10,'T49.5X3S ','Poisoning by ophthalmological drugs and preparations, assault, sequela','Y','0000-00-00 00:00:00'),(167421,10,'T49.5X4A ','Poisoning by ophthalmological drugs and preparations, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167422,10,'T49.5X4D ','Poisoning by ophthalmological drugs and preparations, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167423,10,'T49.5X4S ','Poisoning by ophthalmological drugs and preparations, undetermined, sequela','Y','0000-00-00 00:00:00'),(167424,10,'T49.5X5A ','Adverse effect of ophthalmological drugs and preparations, initial encounter','Y','0000-00-00 00:00:00'),(167425,10,'T49.5X5D ','Adverse effect of ophthalmological drugs and preparations, subsequent encounter','Y','0000-00-00 00:00:00'),(167426,10,'T49.5X5S ','Adverse effect of ophthalmological drugs and preparations, sequela','Y','0000-00-00 00:00:00'),(167427,10,'T49.5X6A ','Underdosing of ophthalmological drugs and preparations, initial encounter','Y','0000-00-00 00:00:00'),(167428,10,'T49.5X6D ','Underdosing of ophthalmological drugs and preparations, subsequent encounter','Y','0000-00-00 00:00:00'),(167429,10,'T49.5X6S ','Underdosing of ophthalmological drugs and preparations, sequela','Y','0000-00-00 00:00:00'),(167430,10,'T49.6X1A ','Poisoning by otorhinolaryngological drugs and preparations, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167431,10,'T49.6X1D ','Poisoning by otorhinolaryngological drugs and preparations, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167432,10,'T49.6X1S ','Poisoning by otorhinolaryngological drugs and preparations, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167433,10,'T49.6X2A ','Poisoning by otorhinolaryngological drugs and preparations, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167434,10,'T49.6X2D ','Poisoning by otorhinolaryngological drugs and preparations, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167435,10,'T49.6X2S ','Poisoning by otorhinolaryngological drugs and preparations, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167436,10,'T49.6X3A ','Poisoning by otorhinolaryngological drugs and preparations, assault, initial encounter','Y','0000-00-00 00:00:00'),(167437,10,'T49.6X3D ','Poisoning by otorhinolaryngological drugs and preparations, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167438,10,'T49.6X3S ','Poisoning by otorhinolaryngological drugs and preparations, assault, sequela','Y','0000-00-00 00:00:00'),(167439,10,'T49.6X4A ','Poisoning by otorhinolaryngological drugs and preparations, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167440,10,'T49.6X4D ','Poisoning by otorhinolaryngological drugs and preparations, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167441,10,'T49.6X4S ','Poisoning by otorhinolaryngological drugs and preparations, undetermined, sequela','Y','0000-00-00 00:00:00'),(167442,10,'T49.6X5A ','Adverse effect of otorhinolaryngological drugs and preparations, initial encounter','Y','0000-00-00 00:00:00'),(167443,10,'T49.6X5D ','Adverse effect of otorhinolaryngological drugs and preparations, subsequent encounter','Y','0000-00-00 00:00:00'),(167444,10,'T49.6X5S ','Adverse effect of otorhinolaryngological drugs and preparations, sequela','Y','0000-00-00 00:00:00'),(167445,10,'T49.6X6A ','Underdosing of otorhinolaryngological drugs and preparations, initial encounter','Y','0000-00-00 00:00:00'),(167446,10,'T49.6X6D ','Underdosing of otorhinolaryngological drugs and preparations, subsequent encounter','Y','0000-00-00 00:00:00'),(167447,10,'T49.6X6S ','Underdosing of otorhinolaryngological drugs and preparations, sequela','Y','0000-00-00 00:00:00'),(167448,10,'T49.7X1A ','Poisoning by dental drugs, topically applied, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167449,10,'T49.7X1D ','Poisoning by dental drugs, topically applied, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167450,10,'T49.7X1S ','Poisoning by dental drugs, topically applied, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167451,10,'T49.7X2A ','Poisoning by dental drugs, topically applied, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167452,10,'T49.7X2D ','Poisoning by dental drugs, topically applied, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167453,10,'T49.7X2S ','Poisoning by dental drugs, topically applied, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167454,10,'T49.7X3A ','Poisoning by dental drugs, topically applied, assault, initial encounter','Y','0000-00-00 00:00:00'),(167455,10,'T49.7X3D ','Poisoning by dental drugs, topically applied, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167456,10,'T49.7X3S ','Poisoning by dental drugs, topically applied, assault, sequela','Y','0000-00-00 00:00:00'),(167457,10,'T49.7X4A ','Poisoning by dental drugs, topically applied, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167458,10,'T49.7X4D ','Poisoning by dental drugs, topically applied, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167459,10,'T49.7X4S ','Poisoning by dental drugs, topically applied, undetermined, sequela','Y','0000-00-00 00:00:00'),(167460,10,'T49.7X5A ','Adverse effect of dental drugs, topically applied, initial encounter','Y','0000-00-00 00:00:00'),(167461,10,'T49.7X5D ','Adverse effect of dental drugs, topically applied, subsequent encounter','Y','0000-00-00 00:00:00'),(167462,10,'T49.7X5S ','Adverse effect of dental drugs, topically applied, sequela','Y','0000-00-00 00:00:00'),(167463,10,'T49.7X6A ','Underdosing of dental drugs, topically applied, initial encounter','Y','0000-00-00 00:00:00'),(167464,10,'T49.7X6D ','Underdosing of dental drugs, topically applied, subsequent encounter','Y','0000-00-00 00:00:00'),(167465,10,'T49.7X6S ','Underdosing of dental drugs, topically applied, sequela','Y','0000-00-00 00:00:00'),(167466,10,'T49.8X1A ','Poisoning by other topical agents, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167467,10,'T49.8X1D ','Poisoning by other topical agents, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167468,10,'T49.8X1S ','Poisoning by other topical agents, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167469,10,'T49.8X2A ','Poisoning by other topical agents, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167470,10,'T49.8X2D ','Poisoning by other topical agents, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167471,10,'T49.8X2S ','Poisoning by other topical agents, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167472,10,'T49.8X3A ','Poisoning by other topical agents, assault, initial encounter','Y','0000-00-00 00:00:00'),(167473,10,'T49.8X3D ','Poisoning by other topical agents, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167474,10,'T49.8X3S ','Poisoning by other topical agents, assault, sequela','Y','0000-00-00 00:00:00'),(167475,10,'T49.8X4A ','Poisoning by other topical agents, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167476,10,'T49.8X4D ','Poisoning by other topical agents, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167477,10,'T49.8X4S ','Poisoning by other topical agents, undetermined, sequela','Y','0000-00-00 00:00:00'),(167478,10,'T49.8X5A ','Adverse effect of other topical agents, initial encounter','Y','0000-00-00 00:00:00'),(167479,10,'T49.8X5D ','Adverse effect of other topical agents, subsequent encounter','Y','0000-00-00 00:00:00'),(167480,10,'T49.8X5S ','Adverse effect of other topical agents, sequela','Y','0000-00-00 00:00:00'),(167481,10,'T49.8X6A ','Underdosing of other topical agents, initial encounter','Y','0000-00-00 00:00:00'),(167482,10,'T49.8X6D ','Underdosing of other topical agents, subsequent encounter','Y','0000-00-00 00:00:00'),(167483,10,'T49.8X6S ','Underdosing of other topical agents, sequela','Y','0000-00-00 00:00:00'),(167484,10,'T49.91XA ','Poisoning by unspecified topical agent, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167485,10,'T49.91XD ','Poisoning by unspecified topical agent, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167486,10,'T49.91XS ','Poisoning by unspecified topical agent, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167487,10,'T49.92XA ','Poisoning by unspecified topical agent, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167488,10,'T49.92XD ','Poisoning by unspecified topical agent, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167489,10,'T49.92XS ','Poisoning by unspecified topical agent, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167490,10,'T49.93XA ','Poisoning by unspecified topical agent, assault, initial encounter','Y','0000-00-00 00:00:00'),(167491,10,'T49.93XD ','Poisoning by unspecified topical agent, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167492,10,'T49.93XS ','Poisoning by unspecified topical agent, assault, sequela','Y','0000-00-00 00:00:00'),(167493,10,'T49.94XA ','Poisoning by unspecified topical agent, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167494,10,'T49.94XD ','Poisoning by unspecified topical agent, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167495,10,'T49.94XS ','Poisoning by unspecified topical agent, undetermined, sequela','Y','0000-00-00 00:00:00'),(167496,10,'T49.95XA ','Adverse effect of unspecified topical agent, initial encounter','Y','0000-00-00 00:00:00'),(167497,10,'T49.95XD ','Adverse effect of unspecified topical agent, subsequent encounter','Y','0000-00-00 00:00:00'),(167498,10,'T49.95XS ','Adverse effect of unspecified topical agent, sequela','Y','0000-00-00 00:00:00'),(167499,10,'T49.96XA ','Underdosing of unspecified topical agent, initial encounter','Y','0000-00-00 00:00:00'),(167500,10,'T49.96XD ','Underdosing of unspecified topical agent, subsequent encounter','Y','0000-00-00 00:00:00'),(167501,10,'T49.96XS ','Underdosing of unspecified topical agent, sequela','Y','0000-00-00 00:00:00'),(167502,10,'T50.0X1A ','Poisoning by mineralocorticoids and their antagonists, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167503,10,'T50.0X1D ','Poisoning by mineralocorticoids and their antagonists, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167504,10,'T50.0X1S ','Poisoning by mineralocorticoids and their antagonists, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167505,10,'T50.0X2A ','Poisoning by mineralocorticoids and their antagonists, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167506,10,'T50.0X2D ','Poisoning by mineralocorticoids and their antagonists, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167507,10,'T50.0X2S ','Poisoning by mineralocorticoids and their antagonists, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167508,10,'T50.0X3A ','Poisoning by mineralocorticoids and their antagonists, assault, initial encounter','Y','0000-00-00 00:00:00'),(167509,10,'T50.0X3D ','Poisoning by mineralocorticoids and their antagonists, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167510,10,'T50.0X3S ','Poisoning by mineralocorticoids and their antagonists, assault, sequela','Y','0000-00-00 00:00:00'),(167511,10,'T50.0X4A ','Poisoning by mineralocorticoids and their antagonists, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167512,10,'T50.0X4D ','Poisoning by mineralocorticoids and their antagonists, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167513,10,'T50.0X4S ','Poisoning by mineralocorticoids and their antagonists, undetermined, sequela','Y','0000-00-00 00:00:00'),(167514,10,'T50.0X5A ','Adverse effect of mineralocorticoids and their antagonists, initial encounter','Y','0000-00-00 00:00:00'),(167515,10,'T50.0X5D ','Adverse effect of mineralocorticoids and their antagonists, subsequent encounter','Y','0000-00-00 00:00:00'),(167516,10,'T50.0X5S ','Adverse effect of mineralocorticoids and their antagonists, sequela','Y','0000-00-00 00:00:00'),(167517,10,'T50.0X6A ','Underdosing of mineralocorticoids and their antagonists, initial encounter','Y','0000-00-00 00:00:00'),(167518,10,'T50.0X6D ','Underdosing of mineralocorticoids and their antagonists, subsequent encounter','Y','0000-00-00 00:00:00'),(167519,10,'T50.0X6S ','Underdosing of mineralocorticoids and their antagonists, sequela','Y','0000-00-00 00:00:00'),(167520,10,'T50.1X1A ','Poisoning by loop [high-ceiling] diuretics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167521,10,'T50.1X1D ','Poisoning by loop [high-ceiling] diuretics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167522,10,'T50.1X1S ','Poisoning by loop [high-ceiling] diuretics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167523,10,'T50.1X2A ','Poisoning by loop [high-ceiling] diuretics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167524,10,'T50.1X2D ','Poisoning by loop [high-ceiling] diuretics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167525,10,'T50.1X2S ','Poisoning by loop [high-ceiling] diuretics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167526,10,'T50.1X3A ','Poisoning by loop [high-ceiling] diuretics, assault, initial encounter','Y','0000-00-00 00:00:00'),(167527,10,'T50.1X3D ','Poisoning by loop [high-ceiling] diuretics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167528,10,'T50.1X3S ','Poisoning by loop [high-ceiling] diuretics, assault, sequela','Y','0000-00-00 00:00:00'),(167529,10,'T50.1X4A ','Poisoning by loop [high-ceiling] diuretics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167530,10,'T50.1X4D ','Poisoning by loop [high-ceiling] diuretics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167531,10,'T50.1X4S ','Poisoning by loop [high-ceiling] diuretics, undetermined, sequela','Y','0000-00-00 00:00:00'),(167532,10,'T50.1X5A ','Adverse effect of loop [high-ceiling] diuretics, initial encounter','Y','0000-00-00 00:00:00'),(167533,10,'T50.1X5D ','Adverse effect of loop [high-ceiling] diuretics, subsequent encounter','Y','0000-00-00 00:00:00'),(167534,10,'T50.1X5S ','Adverse effect of loop [high-ceiling] diuretics, sequela','Y','0000-00-00 00:00:00'),(167535,10,'T50.1X6A ','Underdosing of loop [high-ceiling] diuretics, initial encounter','Y','0000-00-00 00:00:00'),(167536,10,'T50.1X6D ','Underdosing of loop [high-ceiling] diuretics, subsequent encounter','Y','0000-00-00 00:00:00'),(167537,10,'T50.1X6S ','Underdosing of loop [high-ceiling] diuretics, sequela','Y','0000-00-00 00:00:00'),(167538,10,'T50.2X1A ','Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167539,10,'T50.2X1D ','Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167540,10,'T50.2X1S ','Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167541,10,'T50.2X2A ','Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167542,10,'T50.2X2D ','Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167543,10,'T50.2X2S ','Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167544,10,'T50.2X3A ','Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, assault, initial encounter','Y','0000-00-00 00:00:00'),(167545,10,'T50.2X3D ','Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167546,10,'T50.2X3S ','Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, assault, sequela','Y','0000-00-00 00:00:00'),(167547,10,'T50.2X4A ','Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167548,10,'T50.2X4D ','Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167549,10,'T50.2X4S ','Poisoning by carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, undetermined, sequela','Y','0000-00-00 00:00:00'),(167550,10,'T50.2X5A ','Adverse effect of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, initial encounter','Y','0000-00-00 00:00:00'),(167551,10,'T50.2X5D ','Adverse effect of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, subsequent encounter','Y','0000-00-00 00:00:00'),(167552,10,'T50.2X5S ','Adverse effect of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, sequela','Y','0000-00-00 00:00:00'),(167553,10,'T50.2X6A ','Underdosing of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, initial encounter','Y','0000-00-00 00:00:00'),(167554,10,'T50.2X6D ','Underdosing of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, subsequent encounter','Y','0000-00-00 00:00:00'),(167555,10,'T50.2X6S ','Underdosing of carbonic-anhydrase inhibitors, benzothiadiazides and other diuretics, sequela','Y','0000-00-00 00:00:00'),(167556,10,'T50.3X1A ','Poisoning by electrolytic, caloric and water-balance agents, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167557,10,'T50.3X1D ','Poisoning by electrolytic, caloric and water-balance agents, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167558,10,'T50.3X1S ','Poisoning by electrolytic, caloric and water-balance agents, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167559,10,'T50.3X2A ','Poisoning by electrolytic, caloric and water-balance agents, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167560,10,'T50.3X2D ','Poisoning by electrolytic, caloric and water-balance agents, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167561,10,'T50.3X2S ','Poisoning by electrolytic, caloric and water-balance agents, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167562,10,'T50.3X3A ','Poisoning by electrolytic, caloric and water-balance agents, assault, initial encounter','Y','0000-00-00 00:00:00'),(167563,10,'T50.3X3D ','Poisoning by electrolytic, caloric and water-balance agents, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167564,10,'T50.3X3S ','Poisoning by electrolytic, caloric and water-balance agents, assault, sequela','Y','0000-00-00 00:00:00'),(167565,10,'T50.3X4A ','Poisoning by electrolytic, caloric and water-balance agents, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167566,10,'T50.3X4D ','Poisoning by electrolytic, caloric and water-balance agents, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167567,10,'T50.3X4S ','Poisoning by electrolytic, caloric and water-balance agents, undetermined, sequela','Y','0000-00-00 00:00:00'),(167568,10,'T50.3X5A ','Adverse effect of electrolytic, caloric and water-balance agents, initial encounter','Y','0000-00-00 00:00:00'),(167569,10,'T50.3X5D ','Adverse effect of electrolytic, caloric and water-balance agents, subsequent encounter','Y','0000-00-00 00:00:00'),(167570,10,'T50.3X5S ','Adverse effect of electrolytic, caloric and water-balance agents, sequela','Y','0000-00-00 00:00:00'),(167571,10,'T50.3X6A ','Underdosing of electrolytic, caloric and water-balance agents, initial encounter','Y','0000-00-00 00:00:00'),(167572,10,'T50.3X6D ','Underdosing of electrolytic, caloric and water-balance agents, subsequent encounter','Y','0000-00-00 00:00:00'),(167573,10,'T50.3X6S ','Underdosing of electrolytic, caloric and water-balance agents, sequela','Y','0000-00-00 00:00:00'),(167574,10,'T50.4X1A ','Poisoning by drugs affecting uric acid metabolism, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167575,10,'T50.4X1D ','Poisoning by drugs affecting uric acid metabolism, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167576,10,'T50.4X1S ','Poisoning by drugs affecting uric acid metabolism, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167577,10,'T50.4X2A ','Poisoning by drugs affecting uric acid metabolism, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167578,10,'T50.4X2D ','Poisoning by drugs affecting uric acid metabolism, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167579,10,'T50.4X2S ','Poisoning by drugs affecting uric acid metabolism, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167580,10,'T50.4X3A ','Poisoning by drugs affecting uric acid metabolism, assault, initial encounter','Y','0000-00-00 00:00:00'),(167581,10,'T50.4X3D ','Poisoning by drugs affecting uric acid metabolism, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167582,10,'T50.4X3S ','Poisoning by drugs affecting uric acid metabolism, assault, sequela','Y','0000-00-00 00:00:00'),(167583,10,'T50.4X4A ','Poisoning by drugs affecting uric acid metabolism, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167584,10,'T50.4X4D ','Poisoning by drugs affecting uric acid metabolism, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167585,10,'T50.4X4S ','Poisoning by drugs affecting uric acid metabolism, undetermined, sequela','Y','0000-00-00 00:00:00'),(167586,10,'T50.4X5A ','Adverse effect of drugs affecting uric acid metabolism, initial encounter','Y','0000-00-00 00:00:00'),(167587,10,'T50.4X5D ','Adverse effect of drugs affecting uric acid metabolism, subsequent encounter','Y','0000-00-00 00:00:00'),(167588,10,'T50.4X5S ','Adverse effect of drugs affecting uric acid metabolism, sequela','Y','0000-00-00 00:00:00'),(167589,10,'T50.4X6A ','Underdosing of drugs affecting uric acid metabolism, initial encounter','Y','0000-00-00 00:00:00'),(167590,10,'T50.4X6D ','Underdosing of drugs affecting uric acid metabolism, subsequent encounter','Y','0000-00-00 00:00:00'),(167591,10,'T50.4X6S ','Underdosing of drugs affecting uric acid metabolism, sequela','Y','0000-00-00 00:00:00'),(167592,10,'T50.5X1A ','Poisoning by appetite depressants, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167593,10,'T50.5X1D ','Poisoning by appetite depressants, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167594,10,'T50.5X1S ','Poisoning by appetite depressants, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167595,10,'T50.5X2A ','Poisoning by appetite depressants, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167596,10,'T50.5X2D ','Poisoning by appetite depressants, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167597,10,'T50.5X2S ','Poisoning by appetite depressants, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167598,10,'T50.5X3A ','Poisoning by appetite depressants, assault, initial encounter','Y','0000-00-00 00:00:00'),(167599,10,'T50.5X3D ','Poisoning by appetite depressants, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167600,10,'T50.5X3S ','Poisoning by appetite depressants, assault, sequela','Y','0000-00-00 00:00:00'),(167601,10,'T50.5X4A ','Poisoning by appetite depressants, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167602,10,'T50.5X4D ','Poisoning by appetite depressants, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167603,10,'T50.5X4S ','Poisoning by appetite depressants, undetermined, sequela','Y','0000-00-00 00:00:00'),(167604,10,'T50.5X5A ','Adverse effect of appetite depressants, initial encounter','Y','0000-00-00 00:00:00'),(167605,10,'T50.5X5D ','Adverse effect of appetite depressants, subsequent encounter','Y','0000-00-00 00:00:00'),(167606,10,'T50.5X5S ','Adverse effect of appetite depressants, sequela','Y','0000-00-00 00:00:00'),(167607,10,'T50.5X6A ','Underdosing of appetite depressants, initial encounter','Y','0000-00-00 00:00:00'),(167608,10,'T50.5X6D ','Underdosing of appetite depressants, subsequent encounter','Y','0000-00-00 00:00:00'),(167609,10,'T50.5X6S ','Underdosing of appetite depressants, sequela','Y','0000-00-00 00:00:00'),(167610,10,'T50.6X1A ','Poisoning by antidotes and chelating agents, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167611,10,'T50.6X1D ','Poisoning by antidotes and chelating agents, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167612,10,'T50.6X1S ','Poisoning by antidotes and chelating agents, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167613,10,'T50.6X2A ','Poisoning by antidotes and chelating agents, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167614,10,'T50.6X2D ','Poisoning by antidotes and chelating agents, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167615,10,'T50.6X2S ','Poisoning by antidotes and chelating agents, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167616,10,'T50.6X3A ','Poisoning by antidotes and chelating agents, assault, initial encounter','Y','0000-00-00 00:00:00'),(167617,10,'T50.6X3D ','Poisoning by antidotes and chelating agents, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167618,10,'T50.6X3S ','Poisoning by antidotes and chelating agents, assault, sequela','Y','0000-00-00 00:00:00'),(167619,10,'T50.6X4A ','Poisoning by antidotes and chelating agents, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167620,10,'T50.6X4D ','Poisoning by antidotes and chelating agents, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167621,10,'T50.6X4S ','Poisoning by antidotes and chelating agents, undetermined, sequela','Y','0000-00-00 00:00:00'),(167622,10,'T50.6X5A ','Adverse effect of antidotes and chelating agents, initial encounter','Y','0000-00-00 00:00:00'),(167623,10,'T50.6X5D ','Adverse effect of antidotes and chelating agents, subsequent encounter','Y','0000-00-00 00:00:00'),(167624,10,'T50.6X5S ','Adverse effect of antidotes and chelating agents, sequela','Y','0000-00-00 00:00:00'),(167625,10,'T50.6X6A ','Underdosing of antidotes and chelating agents, initial encounter','Y','0000-00-00 00:00:00'),(167626,10,'T50.6X6D ','Underdosing of antidotes and chelating agents, subsequent encounter','Y','0000-00-00 00:00:00'),(167627,10,'T50.6X6S ','Underdosing of antidotes and chelating agents, sequela','Y','0000-00-00 00:00:00'),(167628,10,'T50.7X1A ','Poisoning by analeptics and opioid receptor antagonists, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167629,10,'T50.7X1D ','Poisoning by analeptics and opioid receptor antagonists, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167630,10,'T50.7X1S ','Poisoning by analeptics and opioid receptor antagonists, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167631,10,'T50.7X2A ','Poisoning by analeptics and opioid receptor antagonists, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167632,10,'T50.7X2D ','Poisoning by analeptics and opioid receptor antagonists, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167633,10,'T50.7X2S ','Poisoning by analeptics and opioid receptor antagonists, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167634,10,'T50.7X3A ','Poisoning by analeptics and opioid receptor antagonists, assault, initial encounter','Y','0000-00-00 00:00:00'),(167635,10,'T50.7X3D ','Poisoning by analeptics and opioid receptor antagonists, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167636,10,'T50.7X3S ','Poisoning by analeptics and opioid receptor antagonists, assault, sequela','Y','0000-00-00 00:00:00'),(167637,10,'T50.7X4A ','Poisoning by analeptics and opioid receptor antagonists, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167638,10,'T50.7X4D ','Poisoning by analeptics and opioid receptor antagonists, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167639,10,'T50.7X4S ','Poisoning by analeptics and opioid receptor antagonists, undetermined, sequela','Y','0000-00-00 00:00:00'),(167640,10,'T50.7X5A ','Adverse effect of analeptics and opioid receptor antagonists, initial encounter','Y','0000-00-00 00:00:00'),(167641,10,'T50.7X5D ','Adverse effect of analeptics and opioid receptor antagonists, subsequent encounter','Y','0000-00-00 00:00:00'),(167642,10,'T50.7X5S ','Adverse effect of analeptics and opioid receptor antagonists, sequela','Y','0000-00-00 00:00:00'),(167643,10,'T50.7X6A ','Underdosing of analeptics and opioid receptor antagonists, initial encounter','Y','0000-00-00 00:00:00'),(167644,10,'T50.7X6D ','Underdosing of analeptics and opioid receptor antagonists, subsequent encounter','Y','0000-00-00 00:00:00'),(167645,10,'T50.7X6S ','Underdosing of analeptics and opioid receptor antagonists, sequela','Y','0000-00-00 00:00:00'),(167646,10,'T50.8X1A ','Poisoning by diagnostic agents, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167647,10,'T50.8X1D ','Poisoning by diagnostic agents, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167648,10,'T50.8X1S ','Poisoning by diagnostic agents, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167649,10,'T50.8X2A ','Poisoning by diagnostic agents, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167650,10,'T50.8X2D ','Poisoning by diagnostic agents, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167651,10,'T50.8X2S ','Poisoning by diagnostic agents, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167652,10,'T50.8X3A ','Poisoning by diagnostic agents, assault, initial encounter','Y','0000-00-00 00:00:00'),(167653,10,'T50.8X3D ','Poisoning by diagnostic agents, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167654,10,'T50.8X3S ','Poisoning by diagnostic agents, assault, sequela','Y','0000-00-00 00:00:00'),(167655,10,'T50.8X4A ','Poisoning by diagnostic agents, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167656,10,'T50.8X4D ','Poisoning by diagnostic agents, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167657,10,'T50.8X4S ','Poisoning by diagnostic agents, undetermined, sequela','Y','0000-00-00 00:00:00'),(167658,10,'T50.8X5A ','Adverse effect of diagnostic agents, initial encounter','Y','0000-00-00 00:00:00'),(167659,10,'T50.8X5D ','Adverse effect of diagnostic agents, subsequent encounter','Y','0000-00-00 00:00:00'),(167660,10,'T50.8X5S ','Adverse effect of diagnostic agents, sequela','Y','0000-00-00 00:00:00'),(167661,10,'T50.8X6A ','Underdosing of diagnostic agents, initial encounter','Y','0000-00-00 00:00:00'),(167662,10,'T50.8X6D ','Underdosing of diagnostic agents, subsequent encounter','Y','0000-00-00 00:00:00'),(167663,10,'T50.8X6S ','Underdosing of diagnostic agents, sequela','Y','0000-00-00 00:00:00'),(167664,10,'T50.A11A ','Poisoning by pertussis vaccine, including combinations with a pertussis component, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167665,10,'T50.A11D ','Poisoning by pertussis vaccine, including combinations with a pertussis component, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167666,10,'T50.A11S ','Poisoning by pertussis vaccine, including combinations with a pertussis component, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167667,10,'T50.A12A ','Poisoning by pertussis vaccine, including combinations with a pertussis component, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167668,10,'T50.A12D ','Poisoning by pertussis vaccine, including combinations with a pertussis component, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167669,10,'T50.A12S ','Poisoning by pertussis vaccine, including combinations with a pertussis component, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167670,10,'T50.A13A ','Poisoning by pertussis vaccine, including combinations with a pertussis component, assault, initial encounter','Y','0000-00-00 00:00:00'),(167671,10,'T50.A13D ','Poisoning by pertussis vaccine, including combinations with a pertussis component, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167672,10,'T50.A13S ','Poisoning by pertussis vaccine, including combinations with a pertussis component, assault, sequela','Y','0000-00-00 00:00:00'),(167673,10,'T50.A14A ','Poisoning by pertussis vaccine, including combinations with a pertussis component, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167674,10,'T50.A14D ','Poisoning by pertussis vaccine, including combinations with a pertussis component, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167675,10,'T50.A14S ','Poisoning by pertussis vaccine, including combinations with a pertussis component, undetermined, sequela','Y','0000-00-00 00:00:00'),(167676,10,'T50.A15A ','Adverse effect of pertussis vaccine, including combinations with a pertussis component, initial encounter','Y','0000-00-00 00:00:00'),(167677,10,'T50.A15D ','Adverse effect of pertussis vaccine, including combinations with a pertussis component, subsequent encounter','Y','0000-00-00 00:00:00'),(167678,10,'T50.A15S ','Adverse effect of pertussis vaccine, including combinations with a pertussis component, sequela','Y','0000-00-00 00:00:00'),(167679,10,'T50.A16A ','Underdosing of pertussis vaccine, including combinations with a pertussis component, initial encounter','Y','0000-00-00 00:00:00'),(167680,10,'T50.A16D ','Underdosing of pertussis vaccine, including combinations with a pertussis component, subsequent encounter','Y','0000-00-00 00:00:00'),(167681,10,'T50.A16S ','Underdosing of pertussis vaccine, including combinations with a pertussis component, sequela','Y','0000-00-00 00:00:00'),(167682,10,'T50.A21A ','Poisoning by mixed bacterial vaccines without a pertussis component, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167683,10,'T50.A21D ','Poisoning by mixed bacterial vaccines without a pertussis component, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167684,10,'T50.A21S ','Poisoning by mixed bacterial vaccines without a pertussis component, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167685,10,'T50.A22A ','Poisoning by mixed bacterial vaccines without a pertussis component, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167686,10,'T50.A22D ','Poisoning by mixed bacterial vaccines without a pertussis component, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167687,10,'T50.A22S ','Poisoning by mixed bacterial vaccines without a pertussis component, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167688,10,'T50.A23A ','Poisoning by mixed bacterial vaccines without a pertussis component, assault, initial encounter','Y','0000-00-00 00:00:00'),(167689,10,'T50.A23D ','Poisoning by mixed bacterial vaccines without a pertussis component, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167690,10,'T50.A23S ','Poisoning by mixed bacterial vaccines without a pertussis component, assault, sequela','Y','0000-00-00 00:00:00'),(167691,10,'T50.A24A ','Poisoning by mixed bacterial vaccines without a pertussis component, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167692,10,'T50.A24D ','Poisoning by mixed bacterial vaccines without a pertussis component, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167693,10,'T50.A24S ','Poisoning by mixed bacterial vaccines without a pertussis component, undetermined, sequela','Y','0000-00-00 00:00:00'),(167694,10,'T50.A25A ','Adverse effect of mixed bacterial vaccines without a pertussis component, initial encounter','Y','0000-00-00 00:00:00'),(167695,10,'T50.A25D ','Adverse effect of mixed bacterial vaccines without a pertussis component, subsequent encounter','Y','0000-00-00 00:00:00'),(167696,10,'T50.A25S ','Adverse effect of mixed bacterial vaccines without a pertussis component, sequela','Y','0000-00-00 00:00:00'),(167697,10,'T50.A26A ','Underdosing of mixed bacterial vaccines without a pertussis component, initial encounter','Y','0000-00-00 00:00:00'),(167698,10,'T50.A26D ','Underdosing of mixed bacterial vaccines without a pertussis component, subsequent encounter','Y','0000-00-00 00:00:00'),(167699,10,'T50.A26S ','Underdosing of mixed bacterial vaccines without a pertussis component, sequela','Y','0000-00-00 00:00:00'),(167700,10,'T50.A91A ','Poisoning by other bacterial vaccines, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167701,10,'T50.A91D ','Poisoning by other bacterial vaccines, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167702,10,'T50.A91S ','Poisoning by other bacterial vaccines, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167703,10,'T50.A92A ','Poisoning by other bacterial vaccines, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167704,10,'T50.A92D ','Poisoning by other bacterial vaccines, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167705,10,'T50.A92S ','Poisoning by other bacterial vaccines, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167706,10,'T50.A93A ','Poisoning by other bacterial vaccines, assault, initial encounter','Y','0000-00-00 00:00:00'),(167707,10,'T50.A93D ','Poisoning by other bacterial vaccines, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167708,10,'T50.A93S ','Poisoning by other bacterial vaccines, assault, sequela','Y','0000-00-00 00:00:00'),(167709,10,'T50.A94A ','Poisoning by other bacterial vaccines, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167710,10,'T50.A94D ','Poisoning by other bacterial vaccines, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167711,10,'T50.A94S ','Poisoning by other bacterial vaccines, undetermined, sequela','Y','0000-00-00 00:00:00'),(167712,10,'T50.A95A ','Adverse effect of other bacterial vaccines, initial encounter','Y','0000-00-00 00:00:00'),(167713,10,'T50.A95D ','Adverse effect of other bacterial vaccines, subsequent encounter','Y','0000-00-00 00:00:00'),(167714,10,'T50.A95S ','Adverse effect of other bacterial vaccines, sequela','Y','0000-00-00 00:00:00'),(167715,10,'T50.A96A ','Underdosing of other bacterial vaccines, initial encounter','Y','0000-00-00 00:00:00'),(167716,10,'T50.A96D ','Underdosing of other bacterial vaccines, subsequent encounter','Y','0000-00-00 00:00:00'),(167717,10,'T50.A96S ','Underdosing of other bacterial vaccines, sequela','Y','0000-00-00 00:00:00'),(167718,10,'T50.B11A ','Poisoning by smallpox vaccines, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167719,10,'T50.B11D ','Poisoning by smallpox vaccines, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167720,10,'T50.B11S ','Poisoning by smallpox vaccines, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167721,10,'T50.B12A ','Poisoning by smallpox vaccines, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167722,10,'T50.B12D ','Poisoning by smallpox vaccines, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167723,10,'T50.B12S ','Poisoning by smallpox vaccines, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167724,10,'T50.B13A ','Poisoning by smallpox vaccines, assault, initial encounter','Y','0000-00-00 00:00:00'),(167725,10,'T50.B13D ','Poisoning by smallpox vaccines, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167726,10,'T50.B13S ','Poisoning by smallpox vaccines, assault, sequela','Y','0000-00-00 00:00:00'),(167727,10,'T50.B14A ','Poisoning by smallpox vaccines, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167728,10,'T50.B14D ','Poisoning by smallpox vaccines, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167729,10,'T50.B14S ','Poisoning by smallpox vaccines, undetermined, sequela','Y','0000-00-00 00:00:00'),(167730,10,'T50.B15A ','Adverse effect of smallpox vaccines, initial encounter','Y','0000-00-00 00:00:00'),(167731,10,'T50.B15D ','Adverse effect of smallpox vaccines, subsequent encounter','Y','0000-00-00 00:00:00'),(167732,10,'T50.B15S ','Adverse effect of smallpox vaccines, sequela','Y','0000-00-00 00:00:00'),(167733,10,'T50.B16A ','Underdosing of smallpox vaccines, initial encounter','Y','0000-00-00 00:00:00'),(167734,10,'T50.B16D ','Underdosing of smallpox vaccines, subsequent encounter','Y','0000-00-00 00:00:00'),(167735,10,'T50.B16S ','Underdosing of smallpox vaccines, sequela','Y','0000-00-00 00:00:00'),(167736,10,'T50.B91A ','Poisoning by other viral vaccines, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167737,10,'T50.B91D ','Poisoning by other viral vaccines, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167738,10,'T50.B91S ','Poisoning by other viral vaccines, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167739,10,'T50.B92A ','Poisoning by other viral vaccines, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167740,10,'T50.B92D ','Poisoning by other viral vaccines, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167741,10,'T50.B92S ','Poisoning by other viral vaccines, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167742,10,'T50.B93A ','Poisoning by other viral vaccines, assault, initial encounter','Y','0000-00-00 00:00:00'),(167743,10,'T50.B93D ','Poisoning by other viral vaccines, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167744,10,'T50.B93S ','Poisoning by other viral vaccines, assault, sequela','Y','0000-00-00 00:00:00'),(167745,10,'T50.B94A ','Poisoning by other viral vaccines, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167746,10,'T50.B94D ','Poisoning by other viral vaccines, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167747,10,'T50.B94S ','Poisoning by other viral vaccines, undetermined, sequela','Y','0000-00-00 00:00:00'),(167748,10,'T50.B95A ','Adverse effect of other viral vaccines, initial encounter','Y','0000-00-00 00:00:00'),(167749,10,'T50.B95D ','Adverse effect of other viral vaccines, subsequent encounter','Y','0000-00-00 00:00:00'),(167750,10,'T50.B95S ','Adverse effect of other viral vaccines, sequela','Y','0000-00-00 00:00:00'),(167751,10,'T50.B96A ','Underdosing of other viral vaccines, initial encounter','Y','0000-00-00 00:00:00'),(167752,10,'T50.B96D ','Underdosing of other viral vaccines, subsequent encounter','Y','0000-00-00 00:00:00'),(167753,10,'T50.B96S ','Underdosing of other viral vaccines, sequela','Y','0000-00-00 00:00:00'),(167754,10,'T50.Z11A ','Poisoning by immunoglobulin, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167755,10,'T50.Z11D ','Poisoning by immunoglobulin, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167756,10,'T50.Z11S ','Poisoning by immunoglobulin, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167757,10,'T50.Z12A ','Poisoning by immunoglobulin, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167758,10,'T50.Z12D ','Poisoning by immunoglobulin, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167759,10,'T50.Z12S ','Poisoning by immunoglobulin, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167760,10,'T50.Z13A ','Poisoning by immunoglobulin, assault, initial encounter','Y','0000-00-00 00:00:00'),(167761,10,'T50.Z13D ','Poisoning by immunoglobulin, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167762,10,'T50.Z13S ','Poisoning by immunoglobulin, assault, sequela','Y','0000-00-00 00:00:00'),(167763,10,'T50.Z14A ','Poisoning by immunoglobulin, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167764,10,'T50.Z14D ','Poisoning by immunoglobulin, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167765,10,'T50.Z14S ','Poisoning by immunoglobulin, undetermined, sequela','Y','0000-00-00 00:00:00'),(167766,10,'T50.Z15A ','Adverse effect of immunoglobulin, initial encounter','Y','0000-00-00 00:00:00'),(167767,10,'T50.Z15D ','Adverse effect of immunoglobulin, subsequent encounter','Y','0000-00-00 00:00:00'),(167768,10,'T50.Z15S ','Adverse effect of immunoglobulin, sequela','Y','0000-00-00 00:00:00'),(167769,10,'T50.Z16A ','Underdosing of immunoglobulin, initial encounter','Y','0000-00-00 00:00:00'),(167770,10,'T50.Z16D ','Underdosing of immunoglobulin, subsequent encounter','Y','0000-00-00 00:00:00'),(167771,10,'T50.Z16S ','Underdosing of immunoglobulin, sequela','Y','0000-00-00 00:00:00'),(167772,10,'T50.Z91A ','Poisoning by other vaccines and biological substances, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167773,10,'T50.Z91D ','Poisoning by other vaccines and biological substances, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167774,10,'T50.Z91S ','Poisoning by other vaccines and biological substances, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167775,10,'T50.Z92A ','Poisoning by other vaccines and biological substances, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167776,10,'T50.Z92D ','Poisoning by other vaccines and biological substances, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167777,10,'T50.Z92S ','Poisoning by other vaccines and biological substances, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167778,10,'T50.Z93A ','Poisoning by other vaccines and biological substances, assault, initial encounter','Y','0000-00-00 00:00:00'),(167779,10,'T50.Z93D ','Poisoning by other vaccines and biological substances, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167780,10,'T50.Z93S ','Poisoning by other vaccines and biological substances, assault, sequela','Y','0000-00-00 00:00:00'),(167781,10,'T50.Z94A ','Poisoning by other vaccines and biological substances, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167782,10,'T50.Z94D ','Poisoning by other vaccines and biological substances, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167783,10,'T50.Z94S ','Poisoning by other vaccines and biological substances, undetermined, sequela','Y','0000-00-00 00:00:00'),(167784,10,'T50.Z95A ','Adverse effect of other vaccines and biological substances, initial encounter','Y','0000-00-00 00:00:00'),(167785,10,'T50.Z95D ','Adverse effect of other vaccines and biological substances, subsequent encounter','Y','0000-00-00 00:00:00'),(167786,10,'T50.Z95S ','Adverse effect of other vaccines and biological substances, sequela','Y','0000-00-00 00:00:00'),(167787,10,'T50.Z96A ','Underdosing of other vaccines and biological substances, initial encounter','Y','0000-00-00 00:00:00'),(167788,10,'T50.Z96D ','Underdosing of other vaccines and biological substances, subsequent encounter','Y','0000-00-00 00:00:00'),(167789,10,'T50.Z96S ','Underdosing of other vaccines and biological substances, sequela','Y','0000-00-00 00:00:00'),(167790,10,'T50.901A ','Poisoning by unspecified drugs, medicaments and biological substances, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167791,10,'T50.901D ','Poisoning by unspecified drugs, medicaments and biological substances, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167792,10,'T50.901S ','Poisoning by unspecified drugs, medicaments and biological substances, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167793,10,'T50.902A ','Poisoning by unspecified drugs, medicaments and biological substances, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167794,10,'T50.902D ','Poisoning by unspecified drugs, medicaments and biological substances, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167795,10,'T50.902S ','Poisoning by unspecified drugs, medicaments and biological substances, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167796,10,'T50.903A ','Poisoning by unspecified drugs, medicaments and biological substances, assault, initial encounter','Y','0000-00-00 00:00:00'),(167797,10,'T50.903D ','Poisoning by unspecified drugs, medicaments and biological substances, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167798,10,'T50.903S ','Poisoning by unspecified drugs, medicaments and biological substances, assault, sequela','Y','0000-00-00 00:00:00'),(167799,10,'T50.904A ','Poisoning by unspecified drugs, medicaments and biological substances, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167800,10,'T50.904D ','Poisoning by unspecified drugs, medicaments and biological substances, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167801,10,'T50.904S ','Poisoning by unspecified drugs, medicaments and biological substances, undetermined, sequela','Y','0000-00-00 00:00:00'),(167802,10,'T50.905A ','Adverse effect of unspecified drugs, medicaments and biological substances, initial encounter','Y','0000-00-00 00:00:00'),(167803,10,'T50.905D ','Adverse effect of unspecified drugs, medicaments and biological substances, subsequent encounter','Y','0000-00-00 00:00:00'),(167804,10,'T50.905S ','Adverse effect of unspecified drugs, medicaments and biological substances, sequela','Y','0000-00-00 00:00:00'),(167805,10,'T50.906A ','Underdosing of unspecified drugs, medicaments and biological substances, initial encounter','Y','0000-00-00 00:00:00'),(167806,10,'T50.906D ','Underdosing of unspecified drugs, medicaments and biological substances, subsequent encounter','Y','0000-00-00 00:00:00'),(167807,10,'T50.906S ','Underdosing of unspecified drugs, medicaments and biological substances, sequela','Y','0000-00-00 00:00:00'),(167808,10,'T50.911A ','Poisoning by multiple unspecified drugs, medicaments and biological substances, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167809,10,'T50.911D ','Poisoning by multiple unspecified drugs, medicaments and biological substances, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167810,10,'T50.911S ','Poisoning by multiple unspecified drugs, medicaments and biological substances, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167811,10,'T50.912A ','Poisoning by multiple unspecified drugs, medicaments and biological substances, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167812,10,'T50.912D ','Poisoning by multiple unspecified drugs, medicaments and biological substances, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167813,10,'T50.912S ','Poisoning by multiple unspecified drugs, medicaments and biological substances, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167814,10,'T50.913A ','Poisoning by multiple unspecified drugs, medicaments and biological substances, assault, initial encounter','Y','0000-00-00 00:00:00'),(167815,10,'T50.913D ','Poisoning by multiple unspecified drugs, medicaments and biological substances, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167816,10,'T50.913S ','Poisoning by multiple unspecified drugs, medicaments and biological substances, assault, sequela','Y','0000-00-00 00:00:00'),(167817,10,'T50.914A ','Poisoning by multiple unspecified drugs, medicaments and biological substances, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167818,10,'T50.914D ','Poisoning by multiple unspecified drugs, medicaments and biological substances, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167819,10,'T50.914S ','Poisoning by multiple unspecified drugs, medicaments and biological substances, undetermined, sequela','Y','0000-00-00 00:00:00'),(167820,10,'T50.915A ','Adverse effect of multiple unspecified drugs, medicaments and biological substances, initial encounter','Y','0000-00-00 00:00:00'),(167821,10,'T50.915D ','Adverse effect of multiple unspecified drugs, medicaments and biological substances, subsequent encounter','Y','0000-00-00 00:00:00'),(167822,10,'T50.915S ','Adverse effect of multiple unspecified drugs, medicaments and biological substances, sequela','Y','0000-00-00 00:00:00'),(167823,10,'T50.916A ','Underdosing of multiple unspecified drugs, medicaments and biological substances, initial encounter','Y','0000-00-00 00:00:00'),(167824,10,'T50.916D ','Underdosing of multiple unspecified drugs, medicaments and biological substances, subsequent encounter','Y','0000-00-00 00:00:00'),(167825,10,'T50.916S ','Underdosing of multiple unspecified drugs, medicaments and biological substances, sequela','Y','0000-00-00 00:00:00'),(167826,10,'T50.991A ','Poisoning by other drugs, medicaments and biological substances, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167827,10,'T50.991D ','Poisoning by other drugs, medicaments and biological substances, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167828,10,'T50.991S ','Poisoning by other drugs, medicaments and biological substances, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167829,10,'T50.992A ','Poisoning by other drugs, medicaments and biological substances, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167830,10,'T50.992D ','Poisoning by other drugs, medicaments and biological substances, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167831,10,'T50.992S ','Poisoning by other drugs, medicaments and biological substances, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167832,10,'T50.993A ','Poisoning by other drugs, medicaments and biological substances, assault, initial encounter','Y','0000-00-00 00:00:00'),(167833,10,'T50.993D ','Poisoning by other drugs, medicaments and biological substances, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167834,10,'T50.993S ','Poisoning by other drugs, medicaments and biological substances, assault, sequela','Y','0000-00-00 00:00:00'),(167835,10,'T50.994A ','Poisoning by other drugs, medicaments and biological substances, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167836,10,'T50.994D ','Poisoning by other drugs, medicaments and biological substances, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167837,10,'T50.994S ','Poisoning by other drugs, medicaments and biological substances, undetermined, sequela','Y','0000-00-00 00:00:00'),(167838,10,'T50.995A ','Adverse effect of other drugs, medicaments and biological substances, initial encounter','Y','0000-00-00 00:00:00'),(167839,10,'T50.995D ','Adverse effect of other drugs, medicaments and biological substances, subsequent encounter','Y','0000-00-00 00:00:00'),(167840,10,'T50.995S ','Adverse effect of other drugs, medicaments and biological substances, sequela','Y','0000-00-00 00:00:00'),(167841,10,'T50.996A ','Underdosing of other drugs, medicaments and biological substances, initial encounter','Y','0000-00-00 00:00:00'),(167842,10,'T50.996D ','Underdosing of other drugs, medicaments and biological substances, subsequent encounter','Y','0000-00-00 00:00:00'),(167843,10,'T50.996S ','Underdosing of other drugs, medicaments and biological substances, sequela','Y','0000-00-00 00:00:00'),(167844,10,'T51.0X1A ','Toxic effect of ethanol, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167845,10,'T51.0X1D ','Toxic effect of ethanol, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167846,10,'T51.0X1S ','Toxic effect of ethanol, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167847,10,'T51.0X2A ','Toxic effect of ethanol, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167848,10,'T51.0X2D ','Toxic effect of ethanol, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167849,10,'T51.0X2S ','Toxic effect of ethanol, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167850,10,'T51.0X3A ','Toxic effect of ethanol, assault, initial encounter','Y','0000-00-00 00:00:00'),(167851,10,'T51.0X3D ','Toxic effect of ethanol, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167852,10,'T51.0X3S ','Toxic effect of ethanol, assault, sequela','Y','0000-00-00 00:00:00'),(167853,10,'T51.0X4A ','Toxic effect of ethanol, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167854,10,'T51.0X4D ','Toxic effect of ethanol, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167855,10,'T51.0X4S ','Toxic effect of ethanol, undetermined, sequela','Y','0000-00-00 00:00:00'),(167856,10,'T51.1X1A ','Toxic effect of methanol, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167857,10,'T51.1X1D ','Toxic effect of methanol, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167858,10,'T51.1X1S ','Toxic effect of methanol, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167859,10,'T51.1X2A ','Toxic effect of methanol, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167860,10,'T51.1X2D ','Toxic effect of methanol, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167861,10,'T51.1X2S ','Toxic effect of methanol, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167862,10,'T51.1X3A ','Toxic effect of methanol, assault, initial encounter','Y','0000-00-00 00:00:00'),(167863,10,'T51.1X3D ','Toxic effect of methanol, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167864,10,'T51.1X3S ','Toxic effect of methanol, assault, sequela','Y','0000-00-00 00:00:00'),(167865,10,'T51.1X4A ','Toxic effect of methanol, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167866,10,'T51.1X4D ','Toxic effect of methanol, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167867,10,'T51.1X4S ','Toxic effect of methanol, undetermined, sequela','Y','0000-00-00 00:00:00'),(167868,10,'T51.2X1A ','Toxic effect of 2-Propanol, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167869,10,'T51.2X1D ','Toxic effect of 2-Propanol, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167870,10,'T51.2X1S ','Toxic effect of 2-Propanol, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167871,10,'T51.2X2A ','Toxic effect of 2-Propanol, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167872,10,'T51.2X2D ','Toxic effect of 2-Propanol, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167873,10,'T51.2X2S ','Toxic effect of 2-Propanol, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167874,10,'T51.2X3A ','Toxic effect of 2-Propanol, assault, initial encounter','Y','0000-00-00 00:00:00'),(167875,10,'T51.2X3D ','Toxic effect of 2-Propanol, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167876,10,'T51.2X3S ','Toxic effect of 2-Propanol, assault, sequela','Y','0000-00-00 00:00:00'),(167877,10,'T51.2X4A ','Toxic effect of 2-Propanol, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167878,10,'T51.2X4D ','Toxic effect of 2-Propanol, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167879,10,'T51.2X4S ','Toxic effect of 2-Propanol, undetermined, sequela','Y','0000-00-00 00:00:00'),(167880,10,'T51.3X1A ','Toxic effect of fusel oil, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167881,10,'T51.3X1D ','Toxic effect of fusel oil, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167882,10,'T51.3X1S ','Toxic effect of fusel oil, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167883,10,'T51.3X2A ','Toxic effect of fusel oil, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167884,10,'T51.3X2D ','Toxic effect of fusel oil, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167885,10,'T51.3X2S ','Toxic effect of fusel oil, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167886,10,'T51.3X3A ','Toxic effect of fusel oil, assault, initial encounter','Y','0000-00-00 00:00:00'),(167887,10,'T51.3X3D ','Toxic effect of fusel oil, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167888,10,'T51.3X3S ','Toxic effect of fusel oil, assault, sequela','Y','0000-00-00 00:00:00'),(167889,10,'T51.3X4A ','Toxic effect of fusel oil, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167890,10,'T51.3X4D ','Toxic effect of fusel oil, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167891,10,'T51.3X4S ','Toxic effect of fusel oil, undetermined, sequela','Y','0000-00-00 00:00:00'),(167892,10,'T51.8X1A ','Toxic effect of other alcohols, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167893,10,'T51.8X1D ','Toxic effect of other alcohols, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167894,10,'T51.8X1S ','Toxic effect of other alcohols, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167895,10,'T51.8X2A ','Toxic effect of other alcohols, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167896,10,'T51.8X2D ','Toxic effect of other alcohols, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167897,10,'T51.8X2S ','Toxic effect of other alcohols, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167898,10,'T51.8X3A ','Toxic effect of other alcohols, assault, initial encounter','Y','0000-00-00 00:00:00'),(167899,10,'T51.8X3D ','Toxic effect of other alcohols, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167900,10,'T51.8X3S ','Toxic effect of other alcohols, assault, sequela','Y','0000-00-00 00:00:00'),(167901,10,'T51.8X4A ','Toxic effect of other alcohols, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167902,10,'T51.8X4D ','Toxic effect of other alcohols, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167903,10,'T51.8X4S ','Toxic effect of other alcohols, undetermined, sequela','Y','0000-00-00 00:00:00'),(167904,10,'T51.91XA ','Toxic effect of unspecified alcohol, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167905,10,'T51.91XD ','Toxic effect of unspecified alcohol, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167906,10,'T51.91XS ','Toxic effect of unspecified alcohol, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167907,10,'T51.92XA ','Toxic effect of unspecified alcohol, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167908,10,'T51.92XD ','Toxic effect of unspecified alcohol, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167909,10,'T51.92XS ','Toxic effect of unspecified alcohol, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167910,10,'T51.93XA ','Toxic effect of unspecified alcohol, assault, initial encounter','Y','0000-00-00 00:00:00'),(167911,10,'T51.93XD ','Toxic effect of unspecified alcohol, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167912,10,'T51.93XS ','Toxic effect of unspecified alcohol, assault, sequela','Y','0000-00-00 00:00:00'),(167913,10,'T51.94XA ','Toxic effect of unspecified alcohol, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167914,10,'T51.94XD ','Toxic effect of unspecified alcohol, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167915,10,'T51.94XS ','Toxic effect of unspecified alcohol, undetermined, sequela','Y','0000-00-00 00:00:00'),(167916,10,'T52.0X1A ','Toxic effect of petroleum products, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167917,10,'T52.0X1D ','Toxic effect of petroleum products, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167918,10,'T52.0X1S ','Toxic effect of petroleum products, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167919,10,'T52.0X2A ','Toxic effect of petroleum products, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167920,10,'T52.0X2D ','Toxic effect of petroleum products, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167921,10,'T52.0X2S ','Toxic effect of petroleum products, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167922,10,'T52.0X3A ','Toxic effect of petroleum products, assault, initial encounter','Y','0000-00-00 00:00:00'),(167923,10,'T52.0X3D ','Toxic effect of petroleum products, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167924,10,'T52.0X3S ','Toxic effect of petroleum products, assault, sequela','Y','0000-00-00 00:00:00'),(167925,10,'T52.0X4A ','Toxic effect of petroleum products, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167926,10,'T52.0X4D ','Toxic effect of petroleum products, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167927,10,'T52.0X4S ','Toxic effect of petroleum products, undetermined, sequela','Y','0000-00-00 00:00:00'),(167928,10,'T52.1X1A ','Toxic effect of benzene, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167929,10,'T52.1X1D ','Toxic effect of benzene, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167930,10,'T52.1X1S ','Toxic effect of benzene, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167931,10,'T52.1X2A ','Toxic effect of benzene, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167932,10,'T52.1X2D ','Toxic effect of benzene, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167933,10,'T52.1X2S ','Toxic effect of benzene, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167934,10,'T52.1X3A ','Toxic effect of benzene, assault, initial encounter','Y','0000-00-00 00:00:00'),(167935,10,'T52.1X3D ','Toxic effect of benzene, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167936,10,'T52.1X3S ','Toxic effect of benzene, assault, sequela','Y','0000-00-00 00:00:00'),(167937,10,'T52.1X4A ','Toxic effect of benzene, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167938,10,'T52.1X4D ','Toxic effect of benzene, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167939,10,'T52.1X4S ','Toxic effect of benzene, undetermined, sequela','Y','0000-00-00 00:00:00'),(167940,10,'T52.2X1A ','Toxic effect of homologues of benzene, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167941,10,'T52.2X1D ','Toxic effect of homologues of benzene, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167942,10,'T52.2X1S ','Toxic effect of homologues of benzene, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167943,10,'T52.2X2A ','Toxic effect of homologues of benzene, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167944,10,'T52.2X2D ','Toxic effect of homologues of benzene, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167945,10,'T52.2X2S ','Toxic effect of homologues of benzene, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167946,10,'T52.2X3A ','Toxic effect of homologues of benzene, assault, initial encounter','Y','0000-00-00 00:00:00'),(167947,10,'T52.2X3D ','Toxic effect of homologues of benzene, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167948,10,'T52.2X3S ','Toxic effect of homologues of benzene, assault, sequela','Y','0000-00-00 00:00:00'),(167949,10,'T52.2X4A ','Toxic effect of homologues of benzene, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167950,10,'T52.2X4D ','Toxic effect of homologues of benzene, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167951,10,'T52.2X4S ','Toxic effect of homologues of benzene, undetermined, sequela','Y','0000-00-00 00:00:00'),(167952,10,'T52.3X1A ','Toxic effect of glycols, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167953,10,'T52.3X1D ','Toxic effect of glycols, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167954,10,'T52.3X1S ','Toxic effect of glycols, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167955,10,'T52.3X2A ','Toxic effect of glycols, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167956,10,'T52.3X2D ','Toxic effect of glycols, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167957,10,'T52.3X2S ','Toxic effect of glycols, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167958,10,'T52.3X3A ','Toxic effect of glycols, assault, initial encounter','Y','0000-00-00 00:00:00'),(167959,10,'T52.3X3D ','Toxic effect of glycols, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167960,10,'T52.3X3S ','Toxic effect of glycols, assault, sequela','Y','0000-00-00 00:00:00'),(167961,10,'T52.3X4A ','Toxic effect of glycols, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167962,10,'T52.3X4D ','Toxic effect of glycols, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167963,10,'T52.3X4S ','Toxic effect of glycols, undetermined, sequela','Y','0000-00-00 00:00:00'),(167964,10,'T52.4X1A ','Toxic effect of ketones, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167965,10,'T52.4X1D ','Toxic effect of ketones, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167966,10,'T52.4X1S ','Toxic effect of ketones, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167967,10,'T52.4X2A ','Toxic effect of ketones, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167968,10,'T52.4X2D ','Toxic effect of ketones, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167969,10,'T52.4X2S ','Toxic effect of ketones, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167970,10,'T52.4X3A ','Toxic effect of ketones, assault, initial encounter','Y','0000-00-00 00:00:00'),(167971,10,'T52.4X3D ','Toxic effect of ketones, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167972,10,'T52.4X3S ','Toxic effect of ketones, assault, sequela','Y','0000-00-00 00:00:00'),(167973,10,'T52.4X4A ','Toxic effect of ketones, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167974,10,'T52.4X4D ','Toxic effect of ketones, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167975,10,'T52.4X4S ','Toxic effect of ketones, undetermined, sequela','Y','0000-00-00 00:00:00'),(167976,10,'T52.8X1A ','Toxic effect of other organic solvents, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167977,10,'T52.8X1D ','Toxic effect of other organic solvents, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167978,10,'T52.8X1S ','Toxic effect of other organic solvents, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167979,10,'T52.8X2A ','Toxic effect of other organic solvents, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167980,10,'T52.8X2D ','Toxic effect of other organic solvents, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167981,10,'T52.8X2S ','Toxic effect of other organic solvents, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167982,10,'T52.8X3A ','Toxic effect of other organic solvents, assault, initial encounter','Y','0000-00-00 00:00:00'),(167983,10,'T52.8X3D ','Toxic effect of other organic solvents, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167984,10,'T52.8X3S ','Toxic effect of other organic solvents, assault, sequela','Y','0000-00-00 00:00:00'),(167985,10,'T52.8X4A ','Toxic effect of other organic solvents, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167986,10,'T52.8X4D ','Toxic effect of other organic solvents, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167987,10,'T52.8X4S ','Toxic effect of other organic solvents, undetermined, sequela','Y','0000-00-00 00:00:00'),(167988,10,'T52.91XA ','Toxic effect of unspecified organic solvent, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(167989,10,'T52.91XD ','Toxic effect of unspecified organic solvent, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(167990,10,'T52.91XS ','Toxic effect of unspecified organic solvent, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(167991,10,'T52.92XA ','Toxic effect of unspecified organic solvent, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(167992,10,'T52.92XD ','Toxic effect of unspecified organic solvent, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(167993,10,'T52.92XS ','Toxic effect of unspecified organic solvent, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(167994,10,'T52.93XA ','Toxic effect of unspecified organic solvent, assault, initial encounter','Y','0000-00-00 00:00:00'),(167995,10,'T52.93XD ','Toxic effect of unspecified organic solvent, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(167996,10,'T52.93XS ','Toxic effect of unspecified organic solvent, assault, sequela','Y','0000-00-00 00:00:00'),(167997,10,'T52.94XA ','Toxic effect of unspecified organic solvent, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(167998,10,'T52.94XD ','Toxic effect of unspecified organic solvent, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(167999,10,'T52.94XS ','Toxic effect of unspecified organic solvent, undetermined, sequela','Y','0000-00-00 00:00:00'),(168000,10,'T53.0X1A ','Toxic effect of carbon tetrachloride, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168001,10,'T53.0X1D ','Toxic effect of carbon tetrachloride, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168002,10,'T53.0X1S ','Toxic effect of carbon tetrachloride, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168003,10,'T53.0X2A ','Toxic effect of carbon tetrachloride, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168004,10,'T53.0X2D ','Toxic effect of carbon tetrachloride, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168005,10,'T53.0X2S ','Toxic effect of carbon tetrachloride, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168006,10,'T53.0X3A ','Toxic effect of carbon tetrachloride, assault, initial encounter','Y','0000-00-00 00:00:00'),(168007,10,'T53.0X3D ','Toxic effect of carbon tetrachloride, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168008,10,'T53.0X3S ','Toxic effect of carbon tetrachloride, assault, sequela','Y','0000-00-00 00:00:00'),(168009,10,'T53.0X4A ','Toxic effect of carbon tetrachloride, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168010,10,'T53.0X4D ','Toxic effect of carbon tetrachloride, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168011,10,'T53.0X4S ','Toxic effect of carbon tetrachloride, undetermined, sequela','Y','0000-00-00 00:00:00'),(168012,10,'T53.1X1A ','Toxic effect of chloroform, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168013,10,'T53.1X1D ','Toxic effect of chloroform, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168014,10,'T53.1X1S ','Toxic effect of chloroform, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168015,10,'T53.1X2A ','Toxic effect of chloroform, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168016,10,'T53.1X2D ','Toxic effect of chloroform, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168017,10,'T53.1X2S ','Toxic effect of chloroform, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168018,10,'T53.1X3A ','Toxic effect of chloroform, assault, initial encounter','Y','0000-00-00 00:00:00'),(168019,10,'T53.1X3D ','Toxic effect of chloroform, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168020,10,'T53.1X3S ','Toxic effect of chloroform, assault, sequela','Y','0000-00-00 00:00:00'),(168021,10,'T53.1X4A ','Toxic effect of chloroform, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168022,10,'T53.1X4D ','Toxic effect of chloroform, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168023,10,'T53.1X4S ','Toxic effect of chloroform, undetermined, sequela','Y','0000-00-00 00:00:00'),(168024,10,'T53.2X1A ','Toxic effect of trichloroethylene, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168025,10,'T53.2X1D ','Toxic effect of trichloroethylene, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168026,10,'T53.2X1S ','Toxic effect of trichloroethylene, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168027,10,'T53.2X2A ','Toxic effect of trichloroethylene, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168028,10,'T53.2X2D ','Toxic effect of trichloroethylene, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168029,10,'T53.2X2S ','Toxic effect of trichloroethylene, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168030,10,'T53.2X3A ','Toxic effect of trichloroethylene, assault, initial encounter','Y','0000-00-00 00:00:00'),(168031,10,'T53.2X3D ','Toxic effect of trichloroethylene, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168032,10,'T53.2X3S ','Toxic effect of trichloroethylene, assault, sequela','Y','0000-00-00 00:00:00'),(168033,10,'T53.2X4A ','Toxic effect of trichloroethylene, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168034,10,'T53.2X4D ','Toxic effect of trichloroethylene, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168035,10,'T53.2X4S ','Toxic effect of trichloroethylene, undetermined, sequela','Y','0000-00-00 00:00:00'),(168036,10,'T53.3X1A ','Toxic effect of tetrachloroethylene, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168037,10,'T53.3X1D ','Toxic effect of tetrachloroethylene, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168038,10,'T53.3X1S ','Toxic effect of tetrachloroethylene, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168039,10,'T53.3X2A ','Toxic effect of tetrachloroethylene, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168040,10,'T53.3X2D ','Toxic effect of tetrachloroethylene, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168041,10,'T53.3X2S ','Toxic effect of tetrachloroethylene, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168042,10,'T53.3X3A ','Toxic effect of tetrachloroethylene, assault, initial encounter','Y','0000-00-00 00:00:00'),(168043,10,'T53.3X3D ','Toxic effect of tetrachloroethylene, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168044,10,'T53.3X3S ','Toxic effect of tetrachloroethylene, assault, sequela','Y','0000-00-00 00:00:00'),(168045,10,'T53.3X4A ','Toxic effect of tetrachloroethylene, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168046,10,'T53.3X4D ','Toxic effect of tetrachloroethylene, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168047,10,'T53.3X4S ','Toxic effect of tetrachloroethylene, undetermined, sequela','Y','0000-00-00 00:00:00'),(168048,10,'T53.4X1A ','Toxic effect of dichloromethane, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168049,10,'T53.4X1D ','Toxic effect of dichloromethane, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168050,10,'T53.4X1S ','Toxic effect of dichloromethane, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168051,10,'T53.4X2A ','Toxic effect of dichloromethane, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168052,10,'T53.4X2D ','Toxic effect of dichloromethane, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168053,10,'T53.4X2S ','Toxic effect of dichloromethane, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168054,10,'T53.4X3A ','Toxic effect of dichloromethane, assault, initial encounter','Y','0000-00-00 00:00:00'),(168055,10,'T53.4X3D ','Toxic effect of dichloromethane, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168056,10,'T53.4X3S ','Toxic effect of dichloromethane, assault, sequela','Y','0000-00-00 00:00:00'),(168057,10,'T53.4X4A ','Toxic effect of dichloromethane, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168058,10,'T53.4X4D ','Toxic effect of dichloromethane, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168059,10,'T53.4X4S ','Toxic effect of dichloromethane, undetermined, sequela','Y','0000-00-00 00:00:00'),(168060,10,'T53.5X1A ','Toxic effect of chlorofluorocarbons, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168061,10,'T53.5X1D ','Toxic effect of chlorofluorocarbons, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168062,10,'T53.5X1S ','Toxic effect of chlorofluorocarbons, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168063,10,'T53.5X2A ','Toxic effect of chlorofluorocarbons, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168064,10,'T53.5X2D ','Toxic effect of chlorofluorocarbons, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168065,10,'T53.5X2S ','Toxic effect of chlorofluorocarbons, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168066,10,'T53.5X3A ','Toxic effect of chlorofluorocarbons, assault, initial encounter','Y','0000-00-00 00:00:00'),(168067,10,'T53.5X3D ','Toxic effect of chlorofluorocarbons, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168068,10,'T53.5X3S ','Toxic effect of chlorofluorocarbons, assault, sequela','Y','0000-00-00 00:00:00'),(168069,10,'T53.5X4A ','Toxic effect of chlorofluorocarbons, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168070,10,'T53.5X4D ','Toxic effect of chlorofluorocarbons, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168071,10,'T53.5X4S ','Toxic effect of chlorofluorocarbons, undetermined, sequela','Y','0000-00-00 00:00:00'),(168072,10,'T53.6X1A ','Toxic effect of other halogen derivatives of aliphatic hydrocarbons, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168073,10,'T53.6X1D ','Toxic effect of other halogen derivatives of aliphatic hydrocarbons, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168074,10,'T53.6X1S ','Toxic effect of other halogen derivatives of aliphatic hydrocarbons, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168075,10,'T53.6X2A ','Toxic effect of other halogen derivatives of aliphatic hydrocarbons, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168076,10,'T53.6X2D ','Toxic effect of other halogen derivatives of aliphatic hydrocarbons, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168077,10,'T53.6X2S ','Toxic effect of other halogen derivatives of aliphatic hydrocarbons, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168078,10,'T53.6X3A ','Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault, initial encounter','Y','0000-00-00 00:00:00'),(168079,10,'T53.6X3D ','Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168080,10,'T53.6X3S ','Toxic effect of other halogen derivatives of aliphatic hydrocarbons, assault, sequela','Y','0000-00-00 00:00:00'),(168081,10,'T53.6X4A ','Toxic effect of other halogen derivatives of aliphatic hydrocarbons, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168082,10,'T53.6X4D ','Toxic effect of other halogen derivatives of aliphatic hydrocarbons, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168083,10,'T53.6X4S ','Toxic effect of other halogen derivatives of aliphatic hydrocarbons, undetermined, sequela','Y','0000-00-00 00:00:00'),(168084,10,'T53.7X1A ','Toxic effect of other halogen derivatives of aromatic hydrocarbons, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168085,10,'T53.7X1D ','Toxic effect of other halogen derivatives of aromatic hydrocarbons, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168086,10,'T53.7X1S ','Toxic effect of other halogen derivatives of aromatic hydrocarbons, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168087,10,'T53.7X2A ','Toxic effect of other halogen derivatives of aromatic hydrocarbons, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168088,10,'T53.7X2D ','Toxic effect of other halogen derivatives of aromatic hydrocarbons, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168089,10,'T53.7X2S ','Toxic effect of other halogen derivatives of aromatic hydrocarbons, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168090,10,'T53.7X3A ','Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault, initial encounter','Y','0000-00-00 00:00:00'),(168091,10,'T53.7X3D ','Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168092,10,'T53.7X3S ','Toxic effect of other halogen derivatives of aromatic hydrocarbons, assault, sequela','Y','0000-00-00 00:00:00'),(168093,10,'T53.7X4A ','Toxic effect of other halogen derivatives of aromatic hydrocarbons, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168094,10,'T53.7X4D ','Toxic effect of other halogen derivatives of aromatic hydrocarbons, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168095,10,'T53.7X4S ','Toxic effect of other halogen derivatives of aromatic hydrocarbons, undetermined, sequela','Y','0000-00-00 00:00:00'),(168096,10,'T53.91XA ','Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168097,10,'T53.91XD ','Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168098,10,'T53.91XS ','Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168099,10,'T53.92XA ','Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168100,10,'T53.92XD ','Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168101,10,'T53.92XS ','Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168102,10,'T53.93XA ','Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, assault, initial encounter','Y','0000-00-00 00:00:00'),(168103,10,'T53.93XD ','Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168104,10,'T53.93XS ','Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, assault, sequela','Y','0000-00-00 00:00:00'),(168105,10,'T53.94XA ','Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168106,10,'T53.94XD ','Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168107,10,'T53.94XS ','Toxic effect of unspecified halogen derivatives of aliphatic and aromatic hydrocarbons, undetermined, sequela','Y','0000-00-00 00:00:00'),(168108,10,'T54.0X1A ','Toxic effect of phenol and phenol homologues, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168109,10,'T54.0X1D ','Toxic effect of phenol and phenol homologues, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168110,10,'T54.0X1S ','Toxic effect of phenol and phenol homologues, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168111,10,'T54.0X2A ','Toxic effect of phenol and phenol homologues, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168112,10,'T54.0X2D ','Toxic effect of phenol and phenol homologues, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168113,10,'T54.0X2S ','Toxic effect of phenol and phenol homologues, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168114,10,'T54.0X3A ','Toxic effect of phenol and phenol homologues, assault, initial encounter','Y','0000-00-00 00:00:00'),(168115,10,'T54.0X3D ','Toxic effect of phenol and phenol homologues, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168116,10,'T54.0X3S ','Toxic effect of phenol and phenol homologues, assault, sequela','Y','0000-00-00 00:00:00'),(168117,10,'T54.0X4A ','Toxic effect of phenol and phenol homologues, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168118,10,'T54.0X4D ','Toxic effect of phenol and phenol homologues, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168119,10,'T54.0X4S ','Toxic effect of phenol and phenol homologues, undetermined, sequela','Y','0000-00-00 00:00:00'),(168120,10,'T54.1X1A ','Toxic effect of other corrosive organic compounds, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168121,10,'T54.1X1D ','Toxic effect of other corrosive organic compounds, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168122,10,'T54.1X1S ','Toxic effect of other corrosive organic compounds, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168123,10,'T54.1X2A ','Toxic effect of other corrosive organic compounds, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168124,10,'T54.1X2D ','Toxic effect of other corrosive organic compounds, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168125,10,'T54.1X2S ','Toxic effect of other corrosive organic compounds, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168126,10,'T54.1X3A ','Toxic effect of other corrosive organic compounds, assault, initial encounter','Y','0000-00-00 00:00:00'),(168127,10,'T54.1X3D ','Toxic effect of other corrosive organic compounds, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168128,10,'T54.1X3S ','Toxic effect of other corrosive organic compounds, assault, sequela','Y','0000-00-00 00:00:00'),(168129,10,'T54.1X4A ','Toxic effect of other corrosive organic compounds, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168130,10,'T54.1X4D ','Toxic effect of other corrosive organic compounds, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168131,10,'T54.1X4S ','Toxic effect of other corrosive organic compounds, undetermined, sequela','Y','0000-00-00 00:00:00'),(168132,10,'T54.2X1A ','Toxic effect of corrosive acids and acid-like substances, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168133,10,'T54.2X1D ','Toxic effect of corrosive acids and acid-like substances, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168134,10,'T54.2X1S ','Toxic effect of corrosive acids and acid-like substances, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168135,10,'T54.2X2A ','Toxic effect of corrosive acids and acid-like substances, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168136,10,'T54.2X2D ','Toxic effect of corrosive acids and acid-like substances, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168137,10,'T54.2X2S ','Toxic effect of corrosive acids and acid-like substances, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168138,10,'T54.2X3A ','Toxic effect of corrosive acids and acid-like substances, assault, initial encounter','Y','0000-00-00 00:00:00'),(168139,10,'T54.2X3D ','Toxic effect of corrosive acids and acid-like substances, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168140,10,'T54.2X3S ','Toxic effect of corrosive acids and acid-like substances, assault, sequela','Y','0000-00-00 00:00:00'),(168141,10,'T54.2X4A ','Toxic effect of corrosive acids and acid-like substances, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168142,10,'T54.2X4D ','Toxic effect of corrosive acids and acid-like substances, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168143,10,'T54.2X4S ','Toxic effect of corrosive acids and acid-like substances, undetermined, sequela','Y','0000-00-00 00:00:00'),(168144,10,'T54.3X1A ','Toxic effect of corrosive alkalis and alkali-like substances, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168145,10,'T54.3X1D ','Toxic effect of corrosive alkalis and alkali-like substances, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168146,10,'T54.3X1S ','Toxic effect of corrosive alkalis and alkali-like substances, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168147,10,'T54.3X2A ','Toxic effect of corrosive alkalis and alkali-like substances, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168148,10,'T54.3X2D ','Toxic effect of corrosive alkalis and alkali-like substances, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168149,10,'T54.3X2S ','Toxic effect of corrosive alkalis and alkali-like substances, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168150,10,'T54.3X3A ','Toxic effect of corrosive alkalis and alkali-like substances, assault, initial encounter','Y','0000-00-00 00:00:00'),(168151,10,'T54.3X3D ','Toxic effect of corrosive alkalis and alkali-like substances, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168152,10,'T54.3X3S ','Toxic effect of corrosive alkalis and alkali-like substances, assault, sequela','Y','0000-00-00 00:00:00'),(168153,10,'T54.3X4A ','Toxic effect of corrosive alkalis and alkali-like substances, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168154,10,'T54.3X4D ','Toxic effect of corrosive alkalis and alkali-like substances, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168155,10,'T54.3X4S ','Toxic effect of corrosive alkalis and alkali-like substances, undetermined, sequela','Y','0000-00-00 00:00:00'),(168156,10,'T54.91XA ','Toxic effect of unspecified corrosive substance, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168157,10,'T54.91XD ','Toxic effect of unspecified corrosive substance, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168158,10,'T54.91XS ','Toxic effect of unspecified corrosive substance, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168159,10,'T54.92XA ','Toxic effect of unspecified corrosive substance, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168160,10,'T54.92XD ','Toxic effect of unspecified corrosive substance, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168161,10,'T54.92XS ','Toxic effect of unspecified corrosive substance, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168162,10,'T54.93XA ','Toxic effect of unspecified corrosive substance, assault, initial encounter','Y','0000-00-00 00:00:00'),(168163,10,'T54.93XD ','Toxic effect of unspecified corrosive substance, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168164,10,'T54.93XS ','Toxic effect of unspecified corrosive substance, assault, sequela','Y','0000-00-00 00:00:00'),(168165,10,'T54.94XA ','Toxic effect of unspecified corrosive substance, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168166,10,'T54.94XD ','Toxic effect of unspecified corrosive substance, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168167,10,'T54.94XS ','Toxic effect of unspecified corrosive substance, undetermined, sequela','Y','0000-00-00 00:00:00'),(168168,10,'T55.0X1A ','Toxic effect of soaps, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168169,10,'T55.0X1D ','Toxic effect of soaps, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168170,10,'T55.0X1S ','Toxic effect of soaps, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168171,10,'T55.0X2A ','Toxic effect of soaps, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168172,10,'T55.0X2D ','Toxic effect of soaps, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168173,10,'T55.0X2S ','Toxic effect of soaps, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168174,10,'T55.0X3A ','Toxic effect of soaps, assault, initial encounter','Y','0000-00-00 00:00:00'),(168175,10,'T55.0X3D ','Toxic effect of soaps, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168176,10,'T55.0X3S ','Toxic effect of soaps, assault, sequela','Y','0000-00-00 00:00:00'),(168177,10,'T55.0X4A ','Toxic effect of soaps, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168178,10,'T55.0X4D ','Toxic effect of soaps, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168179,10,'T55.0X4S ','Toxic effect of soaps, undetermined, sequela','Y','0000-00-00 00:00:00'),(168180,10,'T55.1X1A ','Toxic effect of detergents, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168181,10,'T55.1X1D ','Toxic effect of detergents, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168182,10,'T55.1X1S ','Toxic effect of detergents, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168183,10,'T55.1X2A ','Toxic effect of detergents, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168184,10,'T55.1X2D ','Toxic effect of detergents, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168185,10,'T55.1X2S ','Toxic effect of detergents, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168186,10,'T55.1X3A ','Toxic effect of detergents, assault, initial encounter','Y','0000-00-00 00:00:00'),(168187,10,'T55.1X3D ','Toxic effect of detergents, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168188,10,'T55.1X3S ','Toxic effect of detergents, assault, sequela','Y','0000-00-00 00:00:00'),(168189,10,'T55.1X4A ','Toxic effect of detergents, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168190,10,'T55.1X4D ','Toxic effect of detergents, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168191,10,'T55.1X4S ','Toxic effect of detergents, undetermined, sequela','Y','0000-00-00 00:00:00'),(168192,10,'T56.0X1A ','Toxic effect of lead and its compounds, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168193,10,'T56.0X1D ','Toxic effect of lead and its compounds, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168194,10,'T56.0X1S ','Toxic effect of lead and its compounds, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168195,10,'T56.0X2A ','Toxic effect of lead and its compounds, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168196,10,'T56.0X2D ','Toxic effect of lead and its compounds, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168197,10,'T56.0X2S ','Toxic effect of lead and its compounds, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168198,10,'T56.0X3A ','Toxic effect of lead and its compounds, assault, initial encounter','Y','0000-00-00 00:00:00'),(168199,10,'T56.0X3D ','Toxic effect of lead and its compounds, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168200,10,'T56.0X3S ','Toxic effect of lead and its compounds, assault, sequela','Y','0000-00-00 00:00:00'),(168201,10,'T56.0X4A ','Toxic effect of lead and its compounds, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168202,10,'T56.0X4D ','Toxic effect of lead and its compounds, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168203,10,'T56.0X4S ','Toxic effect of lead and its compounds, undetermined, sequela','Y','0000-00-00 00:00:00'),(168204,10,'T56.1X1A ','Toxic effect of mercury and its compounds, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168205,10,'T56.1X1D ','Toxic effect of mercury and its compounds, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168206,10,'T56.1X1S ','Toxic effect of mercury and its compounds, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168207,10,'T56.1X2A ','Toxic effect of mercury and its compounds, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168208,10,'T56.1X2D ','Toxic effect of mercury and its compounds, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168209,10,'T56.1X2S ','Toxic effect of mercury and its compounds, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168210,10,'T56.1X3A ','Toxic effect of mercury and its compounds, assault, initial encounter','Y','0000-00-00 00:00:00'),(168211,10,'T56.1X3D ','Toxic effect of mercury and its compounds, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168212,10,'T56.1X3S ','Toxic effect of mercury and its compounds, assault, sequela','Y','0000-00-00 00:00:00'),(168213,10,'T56.1X4A ','Toxic effect of mercury and its compounds, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168214,10,'T56.1X4D ','Toxic effect of mercury and its compounds, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168215,10,'T56.1X4S ','Toxic effect of mercury and its compounds, undetermined, sequela','Y','0000-00-00 00:00:00'),(168216,10,'T56.2X1A ','Toxic effect of chromium and its compounds, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168217,10,'T56.2X1D ','Toxic effect of chromium and its compounds, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168218,10,'T56.2X1S ','Toxic effect of chromium and its compounds, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168219,10,'T56.2X2A ','Toxic effect of chromium and its compounds, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168220,10,'T56.2X2D ','Toxic effect of chromium and its compounds, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168221,10,'T56.2X2S ','Toxic effect of chromium and its compounds, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168222,10,'T56.2X3A ','Toxic effect of chromium and its compounds, assault, initial encounter','Y','0000-00-00 00:00:00'),(168223,10,'T56.2X3D ','Toxic effect of chromium and its compounds, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168224,10,'T56.2X3S ','Toxic effect of chromium and its compounds, assault, sequela','Y','0000-00-00 00:00:00'),(168225,10,'T56.2X4A ','Toxic effect of chromium and its compounds, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168226,10,'T56.2X4D ','Toxic effect of chromium and its compounds, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168227,10,'T56.2X4S ','Toxic effect of chromium and its compounds, undetermined, sequela','Y','0000-00-00 00:00:00'),(168228,10,'T56.3X1A ','Toxic effect of cadmium and its compounds, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168229,10,'T56.3X1D ','Toxic effect of cadmium and its compounds, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168230,10,'T56.3X1S ','Toxic effect of cadmium and its compounds, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168231,10,'T56.3X2A ','Toxic effect of cadmium and its compounds, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168232,10,'T56.3X2D ','Toxic effect of cadmium and its compounds, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168233,10,'T56.3X2S ','Toxic effect of cadmium and its compounds, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168234,10,'T56.3X3A ','Toxic effect of cadmium and its compounds, assault, initial encounter','Y','0000-00-00 00:00:00'),(168235,10,'T56.3X3D ','Toxic effect of cadmium and its compounds, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168236,10,'T56.3X3S ','Toxic effect of cadmium and its compounds, assault, sequela','Y','0000-00-00 00:00:00'),(168237,10,'T56.3X4A ','Toxic effect of cadmium and its compounds, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168238,10,'T56.3X4D ','Toxic effect of cadmium and its compounds, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168239,10,'T56.3X4S ','Toxic effect of cadmium and its compounds, undetermined, sequela','Y','0000-00-00 00:00:00'),(168240,10,'T56.4X1A ','Toxic effect of copper and its compounds, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168241,10,'T56.4X1D ','Toxic effect of copper and its compounds, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168242,10,'T56.4X1S ','Toxic effect of copper and its compounds, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168243,10,'T56.4X2A ','Toxic effect of copper and its compounds, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168244,10,'T56.4X2D ','Toxic effect of copper and its compounds, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168245,10,'T56.4X2S ','Toxic effect of copper and its compounds, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168246,10,'T56.4X3A ','Toxic effect of copper and its compounds, assault, initial encounter','Y','0000-00-00 00:00:00'),(168247,10,'T56.4X3D ','Toxic effect of copper and its compounds, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168248,10,'T56.4X3S ','Toxic effect of copper and its compounds, assault, sequela','Y','0000-00-00 00:00:00'),(168249,10,'T56.4X4A ','Toxic effect of copper and its compounds, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168250,10,'T56.4X4D ','Toxic effect of copper and its compounds, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168251,10,'T56.4X4S ','Toxic effect of copper and its compounds, undetermined, sequela','Y','0000-00-00 00:00:00'),(168252,10,'T56.5X1A ','Toxic effect of zinc and its compounds, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168253,10,'T56.5X1D ','Toxic effect of zinc and its compounds, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168254,10,'T56.5X1S ','Toxic effect of zinc and its compounds, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168255,10,'T56.5X2A ','Toxic effect of zinc and its compounds, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168256,10,'T56.5X2D ','Toxic effect of zinc and its compounds, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168257,10,'T56.5X2S ','Toxic effect of zinc and its compounds, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168258,10,'T56.5X3A ','Toxic effect of zinc and its compounds, assault, initial encounter','Y','0000-00-00 00:00:00'),(168259,10,'T56.5X3D ','Toxic effect of zinc and its compounds, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168260,10,'T56.5X3S ','Toxic effect of zinc and its compounds, assault, sequela','Y','0000-00-00 00:00:00'),(168261,10,'T56.5X4A ','Toxic effect of zinc and its compounds, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168262,10,'T56.5X4D ','Toxic effect of zinc and its compounds, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168263,10,'T56.5X4S ','Toxic effect of zinc and its compounds, undetermined, sequela','Y','0000-00-00 00:00:00'),(168264,10,'T56.6X1A ','Toxic effect of tin and its compounds, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168265,10,'T56.6X1D ','Toxic effect of tin and its compounds, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168266,10,'T56.6X1S ','Toxic effect of tin and its compounds, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168267,10,'T56.6X2A ','Toxic effect of tin and its compounds, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168268,10,'T56.6X2D ','Toxic effect of tin and its compounds, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168269,10,'T56.6X2S ','Toxic effect of tin and its compounds, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168270,10,'T56.6X3A ','Toxic effect of tin and its compounds, assault, initial encounter','Y','0000-00-00 00:00:00'),(168271,10,'T56.6X3D ','Toxic effect of tin and its compounds, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168272,10,'T56.6X3S ','Toxic effect of tin and its compounds, assault, sequela','Y','0000-00-00 00:00:00'),(168273,10,'T56.6X4A ','Toxic effect of tin and its compounds, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168274,10,'T56.6X4D ','Toxic effect of tin and its compounds, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168275,10,'T56.6X4S ','Toxic effect of tin and its compounds, undetermined, sequela','Y','0000-00-00 00:00:00'),(168276,10,'T56.7X1A ','Toxic effect of beryllium and its compounds, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168277,10,'T56.7X1D ','Toxic effect of beryllium and its compounds, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168278,10,'T56.7X1S ','Toxic effect of beryllium and its compounds, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168279,10,'T56.7X2A ','Toxic effect of beryllium and its compounds, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168280,10,'T56.7X2D ','Toxic effect of beryllium and its compounds, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168281,10,'T56.7X2S ','Toxic effect of beryllium and its compounds, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168282,10,'T56.7X3A ','Toxic effect of beryllium and its compounds, assault, initial encounter','Y','0000-00-00 00:00:00'),(168283,10,'T56.7X3D ','Toxic effect of beryllium and its compounds, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168284,10,'T56.7X3S ','Toxic effect of beryllium and its compounds, assault, sequela','Y','0000-00-00 00:00:00'),(168285,10,'T56.7X4A ','Toxic effect of beryllium and its compounds, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168286,10,'T56.7X4D ','Toxic effect of beryllium and its compounds, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168287,10,'T56.7X4S ','Toxic effect of beryllium and its compounds, undetermined, sequela','Y','0000-00-00 00:00:00'),(168288,10,'T56.811A ','Toxic effect of thallium, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168289,10,'T56.811D ','Toxic effect of thallium, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168290,10,'T56.811S ','Toxic effect of thallium, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168291,10,'T56.812A ','Toxic effect of thallium, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168292,10,'T56.812D ','Toxic effect of thallium, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168293,10,'T56.812S ','Toxic effect of thallium, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168294,10,'T56.813A ','Toxic effect of thallium, assault, initial encounter','Y','0000-00-00 00:00:00'),(168295,10,'T56.813D ','Toxic effect of thallium, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168296,10,'T56.813S ','Toxic effect of thallium, assault, sequela','Y','0000-00-00 00:00:00'),(168297,10,'T56.814A ','Toxic effect of thallium, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168298,10,'T56.814D ','Toxic effect of thallium, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168299,10,'T56.814S ','Toxic effect of thallium, undetermined, sequela','Y','0000-00-00 00:00:00'),(168300,10,'T56.821A ','Toxic effect of gadolinium, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168301,10,'T56.821D ','Toxic effect of gadolinium, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168302,10,'T56.821S ','Toxic effect of gadolinium, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168303,10,'T56.822A ','Toxic effect of gadolinium, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168304,10,'T56.822D ','Toxic effect of gadolinium, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168305,10,'T56.822S ','Toxic effect of gadolinium, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168306,10,'T56.823A ','Toxic effect of gadolinium, assault, initial encounter','Y','0000-00-00 00:00:00'),(168307,10,'T56.823D ','Toxic effect of gadolinium, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168308,10,'T56.823S ','Toxic effect of gadolinium, assault, sequela','Y','0000-00-00 00:00:00'),(168309,10,'T56.824A ','Toxic effect of gadolinium, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168310,10,'T56.824D ','Toxic effect of gadolinium, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168311,10,'T56.824S ','Toxic effect of gadolinium, undetermined, sequela','Y','0000-00-00 00:00:00'),(168312,10,'T56.891A ','Toxic effect of other metals, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168313,10,'T56.891D ','Toxic effect of other metals, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168314,10,'T56.891S ','Toxic effect of other metals, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168315,10,'T56.892A ','Toxic effect of other metals, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168316,10,'T56.892D ','Toxic effect of other metals, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168317,10,'T56.892S ','Toxic effect of other metals, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168318,10,'T56.893A ','Toxic effect of other metals, assault, initial encounter','Y','0000-00-00 00:00:00'),(168319,10,'T56.893D ','Toxic effect of other metals, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168320,10,'T56.893S ','Toxic effect of other metals, assault, sequela','Y','0000-00-00 00:00:00'),(168321,10,'T56.894A ','Toxic effect of other metals, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168322,10,'T56.894D ','Toxic effect of other metals, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168323,10,'T56.894S ','Toxic effect of other metals, undetermined, sequela','Y','0000-00-00 00:00:00'),(168324,10,'T56.91XA ','Toxic effect of unspecified metal, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168325,10,'T56.91XD ','Toxic effect of unspecified metal, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168326,10,'T56.91XS ','Toxic effect of unspecified metal, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168327,10,'T56.92XA ','Toxic effect of unspecified metal, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168328,10,'T56.92XD ','Toxic effect of unspecified metal, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168329,10,'T56.92XS ','Toxic effect of unspecified metal, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168330,10,'T56.93XA ','Toxic effect of unspecified metal, assault, initial encounter','Y','0000-00-00 00:00:00'),(168331,10,'T56.93XD ','Toxic effect of unspecified metal, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168332,10,'T56.93XS ','Toxic effect of unspecified metal, assault, sequela','Y','0000-00-00 00:00:00'),(168333,10,'T56.94XA ','Toxic effect of unspecified metal, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168334,10,'T56.94XD ','Toxic effect of unspecified metal, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168335,10,'T56.94XS ','Toxic effect of unspecified metal, undetermined, sequela','Y','0000-00-00 00:00:00'),(168336,10,'T57.0X1A ','Toxic effect of arsenic and its compounds, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168337,10,'T57.0X1D ','Toxic effect of arsenic and its compounds, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168338,10,'T57.0X1S ','Toxic effect of arsenic and its compounds, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168339,10,'T57.0X2A ','Toxic effect of arsenic and its compounds, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168340,10,'T57.0X2D ','Toxic effect of arsenic and its compounds, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168341,10,'T57.0X2S ','Toxic effect of arsenic and its compounds, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168342,10,'T57.0X3A ','Toxic effect of arsenic and its compounds, assault, initial encounter','Y','0000-00-00 00:00:00'),(168343,10,'T57.0X3D ','Toxic effect of arsenic and its compounds, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168344,10,'T57.0X3S ','Toxic effect of arsenic and its compounds, assault, sequela','Y','0000-00-00 00:00:00'),(168345,10,'T57.0X4A ','Toxic effect of arsenic and its compounds, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168346,10,'T57.0X4D ','Toxic effect of arsenic and its compounds, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168347,10,'T57.0X4S ','Toxic effect of arsenic and its compounds, undetermined, sequela','Y','0000-00-00 00:00:00'),(168348,10,'T57.1X1A ','Toxic effect of phosphorus and its compounds, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168349,10,'T57.1X1D ','Toxic effect of phosphorus and its compounds, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168350,10,'T57.1X1S ','Toxic effect of phosphorus and its compounds, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168351,10,'T57.1X2A ','Toxic effect of phosphorus and its compounds, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168352,10,'T57.1X2D ','Toxic effect of phosphorus and its compounds, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168353,10,'T57.1X2S ','Toxic effect of phosphorus and its compounds, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168354,10,'T57.1X3A ','Toxic effect of phosphorus and its compounds, assault, initial encounter','Y','0000-00-00 00:00:00'),(168355,10,'T57.1X3D ','Toxic effect of phosphorus and its compounds, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168356,10,'T57.1X3S ','Toxic effect of phosphorus and its compounds, assault, sequela','Y','0000-00-00 00:00:00'),(168357,10,'T57.1X4A ','Toxic effect of phosphorus and its compounds, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168358,10,'T57.1X4D ','Toxic effect of phosphorus and its compounds, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168359,10,'T57.1X4S ','Toxic effect of phosphorus and its compounds, undetermined, sequela','Y','0000-00-00 00:00:00'),(168360,10,'T57.2X1A ','Toxic effect of manganese and its compounds, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168361,10,'T57.2X1D ','Toxic effect of manganese and its compounds, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168362,10,'T57.2X1S ','Toxic effect of manganese and its compounds, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168363,10,'T57.2X2A ','Toxic effect of manganese and its compounds, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168364,10,'T57.2X2D ','Toxic effect of manganese and its compounds, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168365,10,'T57.2X2S ','Toxic effect of manganese and its compounds, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168366,10,'T57.2X3A ','Toxic effect of manganese and its compounds, assault, initial encounter','Y','0000-00-00 00:00:00'),(168367,10,'T57.2X3D ','Toxic effect of manganese and its compounds, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168368,10,'T57.2X3S ','Toxic effect of manganese and its compounds, assault, sequela','Y','0000-00-00 00:00:00'),(168369,10,'T57.2X4A ','Toxic effect of manganese and its compounds, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168370,10,'T57.2X4D ','Toxic effect of manganese and its compounds, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168371,10,'T57.2X4S ','Toxic effect of manganese and its compounds, undetermined, sequela','Y','0000-00-00 00:00:00'),(168372,10,'T57.3X1A ','Toxic effect of hydrogen cyanide, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168373,10,'T57.3X1D ','Toxic effect of hydrogen cyanide, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168374,10,'T57.3X1S ','Toxic effect of hydrogen cyanide, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168375,10,'T57.3X2A ','Toxic effect of hydrogen cyanide, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168376,10,'T57.3X2D ','Toxic effect of hydrogen cyanide, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168377,10,'T57.3X2S ','Toxic effect of hydrogen cyanide, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168378,10,'T57.3X3A ','Toxic effect of hydrogen cyanide, assault, initial encounter','Y','0000-00-00 00:00:00'),(168379,10,'T57.3X3D ','Toxic effect of hydrogen cyanide, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168380,10,'T57.3X3S ','Toxic effect of hydrogen cyanide, assault, sequela','Y','0000-00-00 00:00:00'),(168381,10,'T57.3X4A ','Toxic effect of hydrogen cyanide, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168382,10,'T57.3X4D ','Toxic effect of hydrogen cyanide, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168383,10,'T57.3X4S ','Toxic effect of hydrogen cyanide, undetermined, sequela','Y','0000-00-00 00:00:00'),(168384,10,'T57.8X1A ','Toxic effect of other specified inorganic substances, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168385,10,'T57.8X1D ','Toxic effect of other specified inorganic substances, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168386,10,'T57.8X1S ','Toxic effect of other specified inorganic substances, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168387,10,'T57.8X2A ','Toxic effect of other specified inorganic substances, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168388,10,'T57.8X2D ','Toxic effect of other specified inorganic substances, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168389,10,'T57.8X2S ','Toxic effect of other specified inorganic substances, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168390,10,'T57.8X3A ','Toxic effect of other specified inorganic substances, assault, initial encounter','Y','0000-00-00 00:00:00'),(168391,10,'T57.8X3D ','Toxic effect of other specified inorganic substances, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168392,10,'T57.8X3S ','Toxic effect of other specified inorganic substances, assault, sequela','Y','0000-00-00 00:00:00'),(168393,10,'T57.8X4A ','Toxic effect of other specified inorganic substances, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168394,10,'T57.8X4D ','Toxic effect of other specified inorganic substances, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168395,10,'T57.8X4S ','Toxic effect of other specified inorganic substances, undetermined, sequela','Y','0000-00-00 00:00:00'),(168396,10,'T57.91XA ','Toxic effect of unspecified inorganic substance, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168397,10,'T57.91XD ','Toxic effect of unspecified inorganic substance, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168398,10,'T57.91XS ','Toxic effect of unspecified inorganic substance, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168399,10,'T57.92XA ','Toxic effect of unspecified inorganic substance, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168400,10,'T57.92XD ','Toxic effect of unspecified inorganic substance, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168401,10,'T57.92XS ','Toxic effect of unspecified inorganic substance, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168402,10,'T57.93XA ','Toxic effect of unspecified inorganic substance, assault, initial encounter','Y','0000-00-00 00:00:00'),(168403,10,'T57.93XD ','Toxic effect of unspecified inorganic substance, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168404,10,'T57.93XS ','Toxic effect of unspecified inorganic substance, assault, sequela','Y','0000-00-00 00:00:00'),(168405,10,'T57.94XA ','Toxic effect of unspecified inorganic substance, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168406,10,'T57.94XD ','Toxic effect of unspecified inorganic substance, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168407,10,'T57.94XS ','Toxic effect of unspecified inorganic substance, undetermined, sequela','Y','0000-00-00 00:00:00'),(168408,10,'T58.01XA ','Toxic effect of carbon monoxide from motor vehicle exhaust, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168409,10,'T58.01XD ','Toxic effect of carbon monoxide from motor vehicle exhaust, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168410,10,'T58.01XS ','Toxic effect of carbon monoxide from motor vehicle exhaust, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168411,10,'T58.02XA ','Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168412,10,'T58.02XD ','Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168413,10,'T58.02XS ','Toxic effect of carbon monoxide from motor vehicle exhaust, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168414,10,'T58.03XA ','Toxic effect of carbon monoxide from motor vehicle exhaust, assault, initial encounter','Y','0000-00-00 00:00:00'),(168415,10,'T58.03XD ','Toxic effect of carbon monoxide from motor vehicle exhaust, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168416,10,'T58.03XS ','Toxic effect of carbon monoxide from motor vehicle exhaust, assault, sequela','Y','0000-00-00 00:00:00'),(168417,10,'T58.04XA ','Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168418,10,'T58.04XD ','Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168419,10,'T58.04XS ','Toxic effect of carbon monoxide from motor vehicle exhaust, undetermined, sequela','Y','0000-00-00 00:00:00'),(168420,10,'T58.11XA ','Toxic effect of carbon monoxide from utility gas, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168421,10,'T58.11XD ','Toxic effect of carbon monoxide from utility gas, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168422,10,'T58.11XS ','Toxic effect of carbon monoxide from utility gas, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168423,10,'T58.12XA ','Toxic effect of carbon monoxide from utility gas, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168424,10,'T58.12XD ','Toxic effect of carbon monoxide from utility gas, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168425,10,'T58.12XS ','Toxic effect of carbon monoxide from utility gas, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168426,10,'T58.13XA ','Toxic effect of carbon monoxide from utility gas, assault, initial encounter','Y','0000-00-00 00:00:00'),(168427,10,'T58.13XD ','Toxic effect of carbon monoxide from utility gas, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168428,10,'T58.13XS ','Toxic effect of carbon monoxide from utility gas, assault, sequela','Y','0000-00-00 00:00:00'),(168429,10,'T58.14XA ','Toxic effect of carbon monoxide from utility gas, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168430,10,'T58.14XD ','Toxic effect of carbon monoxide from utility gas, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168431,10,'T58.14XS ','Toxic effect of carbon monoxide from utility gas, undetermined, sequela','Y','0000-00-00 00:00:00'),(168432,10,'T58.2X1A ','Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168433,10,'T58.2X1D ','Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168434,10,'T58.2X1S ','Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168435,10,'T58.2X2A ','Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168436,10,'T58.2X2D ','Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168437,10,'T58.2X2S ','Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168438,10,'T58.2X3A ','Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, assault, initial encounter','Y','0000-00-00 00:00:00'),(168439,10,'T58.2X3D ','Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168440,10,'T58.2X3S ','Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, assault, sequela','Y','0000-00-00 00:00:00'),(168441,10,'T58.2X4A ','Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168442,10,'T58.2X4D ','Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168443,10,'T58.2X4S ','Toxic effect of carbon monoxide from incomplete combustion of other domestic fuels, undetermined, sequela','Y','0000-00-00 00:00:00'),(168444,10,'T58.8X1A ','Toxic effect of carbon monoxide from other source, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168445,10,'T58.8X1D ','Toxic effect of carbon monoxide from other source, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168446,10,'T58.8X1S ','Toxic effect of carbon monoxide from other source, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168447,10,'T58.8X2A ','Toxic effect of carbon monoxide from other source, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168448,10,'T58.8X2D ','Toxic effect of carbon monoxide from other source, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168449,10,'T58.8X2S ','Toxic effect of carbon monoxide from other source, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168450,10,'T58.8X3A ','Toxic effect of carbon monoxide from other source, assault, initial encounter','Y','0000-00-00 00:00:00'),(168451,10,'T58.8X3D ','Toxic effect of carbon monoxide from other source, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168452,10,'T58.8X3S ','Toxic effect of carbon monoxide from other source, assault, sequela','Y','0000-00-00 00:00:00'),(168453,10,'T58.8X4A ','Toxic effect of carbon monoxide from other source, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168454,10,'T58.8X4D ','Toxic effect of carbon monoxide from other source, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168455,10,'T58.8X4S ','Toxic effect of carbon monoxide from other source, undetermined, sequela','Y','0000-00-00 00:00:00'),(168456,10,'T58.91XA ','Toxic effect of carbon monoxide from unspecified source, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168457,10,'T58.91XD ','Toxic effect of carbon monoxide from unspecified source, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168458,10,'T58.91XS ','Toxic effect of carbon monoxide from unspecified source, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168459,10,'T58.92XA ','Toxic effect of carbon monoxide from unspecified source, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168460,10,'T58.92XD ','Toxic effect of carbon monoxide from unspecified source, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168461,10,'T58.92XS ','Toxic effect of carbon monoxide from unspecified source, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168462,10,'T58.93XA ','Toxic effect of carbon monoxide from unspecified source, assault, initial encounter','Y','0000-00-00 00:00:00'),(168463,10,'T58.93XD ','Toxic effect of carbon monoxide from unspecified source, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168464,10,'T58.93XS ','Toxic effect of carbon monoxide from unspecified source, assault, sequela','Y','0000-00-00 00:00:00'),(168465,10,'T58.94XA ','Toxic effect of carbon monoxide from unspecified source, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168466,10,'T58.94XD ','Toxic effect of carbon monoxide from unspecified source, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168467,10,'T58.94XS ','Toxic effect of carbon monoxide from unspecified source, undetermined, sequela','Y','0000-00-00 00:00:00'),(168468,10,'T59.0X1A ','Toxic effect of nitrogen oxides, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168469,10,'T59.0X1D ','Toxic effect of nitrogen oxides, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168470,10,'T59.0X1S ','Toxic effect of nitrogen oxides, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168471,10,'T59.0X2A ','Toxic effect of nitrogen oxides, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168472,10,'T59.0X2D ','Toxic effect of nitrogen oxides, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168473,10,'T59.0X2S ','Toxic effect of nitrogen oxides, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168474,10,'T59.0X3A ','Toxic effect of nitrogen oxides, assault, initial encounter','Y','0000-00-00 00:00:00'),(168475,10,'T59.0X3D ','Toxic effect of nitrogen oxides, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168476,10,'T59.0X3S ','Toxic effect of nitrogen oxides, assault, sequela','Y','0000-00-00 00:00:00'),(168477,10,'T59.0X4A ','Toxic effect of nitrogen oxides, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168478,10,'T59.0X4D ','Toxic effect of nitrogen oxides, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168479,10,'T59.0X4S ','Toxic effect of nitrogen oxides, undetermined, sequela','Y','0000-00-00 00:00:00'),(168480,10,'T59.1X1A ','Toxic effect of sulfur dioxide, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168481,10,'T59.1X1D ','Toxic effect of sulfur dioxide, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168482,10,'T59.1X1S ','Toxic effect of sulfur dioxide, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168483,10,'T59.1X2A ','Toxic effect of sulfur dioxide, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168484,10,'T59.1X2D ','Toxic effect of sulfur dioxide, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168485,10,'T59.1X2S ','Toxic effect of sulfur dioxide, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168486,10,'T59.1X3A ','Toxic effect of sulfur dioxide, assault, initial encounter','Y','0000-00-00 00:00:00'),(168487,10,'T59.1X3D ','Toxic effect of sulfur dioxide, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168488,10,'T59.1X3S ','Toxic effect of sulfur dioxide, assault, sequela','Y','0000-00-00 00:00:00'),(168489,10,'T59.1X4A ','Toxic effect of sulfur dioxide, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168490,10,'T59.1X4D ','Toxic effect of sulfur dioxide, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168491,10,'T59.1X4S ','Toxic effect of sulfur dioxide, undetermined, sequela','Y','0000-00-00 00:00:00'),(168492,10,'T59.2X1A ','Toxic effect of formaldehyde, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168493,10,'T59.2X1D ','Toxic effect of formaldehyde, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168494,10,'T59.2X1S ','Toxic effect of formaldehyde, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168495,10,'T59.2X2A ','Toxic effect of formaldehyde, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168496,10,'T59.2X2D ','Toxic effect of formaldehyde, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168497,10,'T59.2X2S ','Toxic effect of formaldehyde, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168498,10,'T59.2X3A ','Toxic effect of formaldehyde, assault, initial encounter','Y','0000-00-00 00:00:00'),(168499,10,'T59.2X3D ','Toxic effect of formaldehyde, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168500,10,'T59.2X3S ','Toxic effect of formaldehyde, assault, sequela','Y','0000-00-00 00:00:00'),(168501,10,'T59.2X4A ','Toxic effect of formaldehyde, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168502,10,'T59.2X4D ','Toxic effect of formaldehyde, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168503,10,'T59.2X4S ','Toxic effect of formaldehyde, undetermined, sequela','Y','0000-00-00 00:00:00'),(168504,10,'T59.3X1A ','Toxic effect of lacrimogenic gas, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168505,10,'T59.3X1D ','Toxic effect of lacrimogenic gas, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168506,10,'T59.3X1S ','Toxic effect of lacrimogenic gas, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168507,10,'T59.3X2A ','Toxic effect of lacrimogenic gas, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168508,10,'T59.3X2D ','Toxic effect of lacrimogenic gas, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168509,10,'T59.3X2S ','Toxic effect of lacrimogenic gas, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168510,10,'T59.3X3A ','Toxic effect of lacrimogenic gas, assault, initial encounter','Y','0000-00-00 00:00:00'),(168511,10,'T59.3X3D ','Toxic effect of lacrimogenic gas, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168512,10,'T59.3X3S ','Toxic effect of lacrimogenic gas, assault, sequela','Y','0000-00-00 00:00:00'),(168513,10,'T59.3X4A ','Toxic effect of lacrimogenic gas, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168514,10,'T59.3X4D ','Toxic effect of lacrimogenic gas, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168515,10,'T59.3X4S ','Toxic effect of lacrimogenic gas, undetermined, sequela','Y','0000-00-00 00:00:00'),(168516,10,'T59.4X1A ','Toxic effect of chlorine gas, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168517,10,'T59.4X1D ','Toxic effect of chlorine gas, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168518,10,'T59.4X1S ','Toxic effect of chlorine gas, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168519,10,'T59.4X2A ','Toxic effect of chlorine gas, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168520,10,'T59.4X2D ','Toxic effect of chlorine gas, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168521,10,'T59.4X2S ','Toxic effect of chlorine gas, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168522,10,'T59.4X3A ','Toxic effect of chlorine gas, assault, initial encounter','Y','0000-00-00 00:00:00'),(168523,10,'T59.4X3D ','Toxic effect of chlorine gas, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168524,10,'T59.4X3S ','Toxic effect of chlorine gas, assault, sequela','Y','0000-00-00 00:00:00'),(168525,10,'T59.4X4A ','Toxic effect of chlorine gas, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168526,10,'T59.4X4D ','Toxic effect of chlorine gas, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168527,10,'T59.4X4S ','Toxic effect of chlorine gas, undetermined, sequela','Y','0000-00-00 00:00:00'),(168528,10,'T59.5X1A ','Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168529,10,'T59.5X1D ','Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168530,10,'T59.5X1S ','Toxic effect of fluorine gas and hydrogen fluoride, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168531,10,'T59.5X2A ','Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168532,10,'T59.5X2D ','Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168533,10,'T59.5X2S ','Toxic effect of fluorine gas and hydrogen fluoride, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168534,10,'T59.5X3A ','Toxic effect of fluorine gas and hydrogen fluoride, assault, initial encounter','Y','0000-00-00 00:00:00'),(168535,10,'T59.5X3D ','Toxic effect of fluorine gas and hydrogen fluoride, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168536,10,'T59.5X3S ','Toxic effect of fluorine gas and hydrogen fluoride, assault, sequela','Y','0000-00-00 00:00:00'),(168537,10,'T59.5X4A ','Toxic effect of fluorine gas and hydrogen fluoride, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168538,10,'T59.5X4D ','Toxic effect of fluorine gas and hydrogen fluoride, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168539,10,'T59.5X4S ','Toxic effect of fluorine gas and hydrogen fluoride, undetermined, sequela','Y','0000-00-00 00:00:00'),(168540,10,'T59.6X1A ','Toxic effect of hydrogen sulfide, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168541,10,'T59.6X1D ','Toxic effect of hydrogen sulfide, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168542,10,'T59.6X1S ','Toxic effect of hydrogen sulfide, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168543,10,'T59.6X2A ','Toxic effect of hydrogen sulfide, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168544,10,'T59.6X2D ','Toxic effect of hydrogen sulfide, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168545,10,'T59.6X2S ','Toxic effect of hydrogen sulfide, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168546,10,'T59.6X3A ','Toxic effect of hydrogen sulfide, assault, initial encounter','Y','0000-00-00 00:00:00'),(168547,10,'T59.6X3D ','Toxic effect of hydrogen sulfide, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168548,10,'T59.6X3S ','Toxic effect of hydrogen sulfide, assault, sequela','Y','0000-00-00 00:00:00'),(168549,10,'T59.6X4A ','Toxic effect of hydrogen sulfide, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168550,10,'T59.6X4D ','Toxic effect of hydrogen sulfide, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168551,10,'T59.6X4S ','Toxic effect of hydrogen sulfide, undetermined, sequela','Y','0000-00-00 00:00:00'),(168552,10,'T59.7X1A ','Toxic effect of carbon dioxide, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168553,10,'T59.7X1D ','Toxic effect of carbon dioxide, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168554,10,'T59.7X1S ','Toxic effect of carbon dioxide, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168555,10,'T59.7X2A ','Toxic effect of carbon dioxide, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168556,10,'T59.7X2D ','Toxic effect of carbon dioxide, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168557,10,'T59.7X2S ','Toxic effect of carbon dioxide, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168558,10,'T59.7X3A ','Toxic effect of carbon dioxide, assault, initial encounter','Y','0000-00-00 00:00:00'),(168559,10,'T59.7X3D ','Toxic effect of carbon dioxide, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168560,10,'T59.7X3S ','Toxic effect of carbon dioxide, assault, sequela','Y','0000-00-00 00:00:00'),(168561,10,'T59.7X4A ','Toxic effect of carbon dioxide, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168562,10,'T59.7X4D ','Toxic effect of carbon dioxide, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168563,10,'T59.7X4S ','Toxic effect of carbon dioxide, undetermined, sequela','Y','0000-00-00 00:00:00'),(168564,10,'T59.811A ','Toxic effect of smoke, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168565,10,'T59.811D ','Toxic effect of smoke, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168566,10,'T59.811S ','Toxic effect of smoke, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168567,10,'T59.812A ','Toxic effect of smoke, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168568,10,'T59.812D ','Toxic effect of smoke, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168569,10,'T59.812S ','Toxic effect of smoke, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168570,10,'T59.813A ','Toxic effect of smoke, assault, initial encounter','Y','0000-00-00 00:00:00'),(168571,10,'T59.813D ','Toxic effect of smoke, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168572,10,'T59.813S ','Toxic effect of smoke, assault, sequela','Y','0000-00-00 00:00:00'),(168573,10,'T59.814A ','Toxic effect of smoke, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168574,10,'T59.814D ','Toxic effect of smoke, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168575,10,'T59.814S ','Toxic effect of smoke, undetermined, sequela','Y','0000-00-00 00:00:00'),(168576,10,'T59.891A ','Toxic effect of other specified gases, fumes and vapors, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168577,10,'T59.891D ','Toxic effect of other specified gases, fumes and vapors, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168578,10,'T59.891S ','Toxic effect of other specified gases, fumes and vapors, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168579,10,'T59.892A ','Toxic effect of other specified gases, fumes and vapors, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168580,10,'T59.892D ','Toxic effect of other specified gases, fumes and vapors, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168581,10,'T59.892S ','Toxic effect of other specified gases, fumes and vapors, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168582,10,'T59.893A ','Toxic effect of other specified gases, fumes and vapors, assault, initial encounter','Y','0000-00-00 00:00:00'),(168583,10,'T59.893D ','Toxic effect of other specified gases, fumes and vapors, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168584,10,'T59.893S ','Toxic effect of other specified gases, fumes and vapors, assault, sequela','Y','0000-00-00 00:00:00'),(168585,10,'T59.894A ','Toxic effect of other specified gases, fumes and vapors, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168586,10,'T59.894D ','Toxic effect of other specified gases, fumes and vapors, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168587,10,'T59.894S ','Toxic effect of other specified gases, fumes and vapors, undetermined, sequela','Y','0000-00-00 00:00:00'),(168588,10,'T59.91XA ','Toxic effect of unspecified gases, fumes and vapors, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168589,10,'T59.91XD ','Toxic effect of unspecified gases, fumes and vapors, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168590,10,'T59.91XS ','Toxic effect of unspecified gases, fumes and vapors, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168591,10,'T59.92XA ','Toxic effect of unspecified gases, fumes and vapors, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168592,10,'T59.92XD ','Toxic effect of unspecified gases, fumes and vapors, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168593,10,'T59.92XS ','Toxic effect of unspecified gases, fumes and vapors, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168594,10,'T59.93XA ','Toxic effect of unspecified gases, fumes and vapors, assault, initial encounter','Y','0000-00-00 00:00:00'),(168595,10,'T59.93XD ','Toxic effect of unspecified gases, fumes and vapors, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168596,10,'T59.93XS ','Toxic effect of unspecified gases, fumes and vapors, assault, sequela','Y','0000-00-00 00:00:00'),(168597,10,'T59.94XA ','Toxic effect of unspecified gases, fumes and vapors, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168598,10,'T59.94XD ','Toxic effect of unspecified gases, fumes and vapors, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168599,10,'T59.94XS ','Toxic effect of unspecified gases, fumes and vapors, undetermined, sequela','Y','0000-00-00 00:00:00'),(168600,10,'T60.0X1A ','Toxic effect of organophosphate and carbamate insecticides, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168601,10,'T60.0X1D ','Toxic effect of organophosphate and carbamate insecticides, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168602,10,'T60.0X1S ','Toxic effect of organophosphate and carbamate insecticides, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168603,10,'T60.0X2A ','Toxic effect of organophosphate and carbamate insecticides, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168604,10,'T60.0X2D ','Toxic effect of organophosphate and carbamate insecticides, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168605,10,'T60.0X2S ','Toxic effect of organophosphate and carbamate insecticides, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168606,10,'T60.0X3A ','Toxic effect of organophosphate and carbamate insecticides, assault, initial encounter','Y','0000-00-00 00:00:00'),(168607,10,'T60.0X3D ','Toxic effect of organophosphate and carbamate insecticides, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168608,10,'T60.0X3S ','Toxic effect of organophosphate and carbamate insecticides, assault, sequela','Y','0000-00-00 00:00:00'),(168609,10,'T60.0X4A ','Toxic effect of organophosphate and carbamate insecticides, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168610,10,'T60.0X4D ','Toxic effect of organophosphate and carbamate insecticides, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168611,10,'T60.0X4S ','Toxic effect of organophosphate and carbamate insecticides, undetermined, sequela','Y','0000-00-00 00:00:00'),(168612,10,'T60.1X1A ','Toxic effect of halogenated insecticides, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168613,10,'T60.1X1D ','Toxic effect of halogenated insecticides, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168614,10,'T60.1X1S ','Toxic effect of halogenated insecticides, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168615,10,'T60.1X2A ','Toxic effect of halogenated insecticides, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168616,10,'T60.1X2D ','Toxic effect of halogenated insecticides, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168617,10,'T60.1X2S ','Toxic effect of halogenated insecticides, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168618,10,'T60.1X3A ','Toxic effect of halogenated insecticides, assault, initial encounter','Y','0000-00-00 00:00:00'),(168619,10,'T60.1X3D ','Toxic effect of halogenated insecticides, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168620,10,'T60.1X3S ','Toxic effect of halogenated insecticides, assault, sequela','Y','0000-00-00 00:00:00'),(168621,10,'T60.1X4A ','Toxic effect of halogenated insecticides, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168622,10,'T60.1X4D ','Toxic effect of halogenated insecticides, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168623,10,'T60.1X4S ','Toxic effect of halogenated insecticides, undetermined, sequela','Y','0000-00-00 00:00:00'),(168624,10,'T60.2X1A ','Toxic effect of other insecticides, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168625,10,'T60.2X1D ','Toxic effect of other insecticides, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168626,10,'T60.2X1S ','Toxic effect of other insecticides, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168627,10,'T60.2X2A ','Toxic effect of other insecticides, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168628,10,'T60.2X2D ','Toxic effect of other insecticides, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168629,10,'T60.2X2S ','Toxic effect of other insecticides, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168630,10,'T60.2X3A ','Toxic effect of other insecticides, assault, initial encounter','Y','0000-00-00 00:00:00'),(168631,10,'T60.2X3D ','Toxic effect of other insecticides, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168632,10,'T60.2X3S ','Toxic effect of other insecticides, assault, sequela','Y','0000-00-00 00:00:00'),(168633,10,'T60.2X4A ','Toxic effect of other insecticides, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168634,10,'T60.2X4D ','Toxic effect of other insecticides, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168635,10,'T60.2X4S ','Toxic effect of other insecticides, undetermined, sequela','Y','0000-00-00 00:00:00'),(168636,10,'T60.3X1A ','Toxic effect of herbicides and fungicides, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168637,10,'T60.3X1D ','Toxic effect of herbicides and fungicides, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168638,10,'T60.3X1S ','Toxic effect of herbicides and fungicides, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168639,10,'T60.3X2A ','Toxic effect of herbicides and fungicides, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168640,10,'T60.3X2D ','Toxic effect of herbicides and fungicides, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168641,10,'T60.3X2S ','Toxic effect of herbicides and fungicides, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168642,10,'T60.3X3A ','Toxic effect of herbicides and fungicides, assault, initial encounter','Y','0000-00-00 00:00:00'),(168643,10,'T60.3X3D ','Toxic effect of herbicides and fungicides, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168644,10,'T60.3X3S ','Toxic effect of herbicides and fungicides, assault, sequela','Y','0000-00-00 00:00:00'),(168645,10,'T60.3X4A ','Toxic effect of herbicides and fungicides, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168646,10,'T60.3X4D ','Toxic effect of herbicides and fungicides, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168647,10,'T60.3X4S ','Toxic effect of herbicides and fungicides, undetermined, sequela','Y','0000-00-00 00:00:00'),(168648,10,'T60.4X1A ','Toxic effect of rodenticides, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168649,10,'T60.4X1D ','Toxic effect of rodenticides, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168650,10,'T60.4X1S ','Toxic effect of rodenticides, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168651,10,'T60.4X2A ','Toxic effect of rodenticides, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168652,10,'T60.4X2D ','Toxic effect of rodenticides, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168653,10,'T60.4X2S ','Toxic effect of rodenticides, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168654,10,'T60.4X3A ','Toxic effect of rodenticides, assault, initial encounter','Y','0000-00-00 00:00:00'),(168655,10,'T60.4X3D ','Toxic effect of rodenticides, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168656,10,'T60.4X3S ','Toxic effect of rodenticides, assault, sequela','Y','0000-00-00 00:00:00'),(168657,10,'T60.4X4A ','Toxic effect of rodenticides, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168658,10,'T60.4X4D ','Toxic effect of rodenticides, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168659,10,'T60.4X4S ','Toxic effect of rodenticides, undetermined, sequela','Y','0000-00-00 00:00:00'),(168660,10,'T60.8X1A ','Toxic effect of other pesticides, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168661,10,'T60.8X1D ','Toxic effect of other pesticides, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168662,10,'T60.8X1S ','Toxic effect of other pesticides, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168663,10,'T60.8X2A ','Toxic effect of other pesticides, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168664,10,'T60.8X2D ','Toxic effect of other pesticides, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168665,10,'T60.8X2S ','Toxic effect of other pesticides, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168666,10,'T60.8X3A ','Toxic effect of other pesticides, assault, initial encounter','Y','0000-00-00 00:00:00'),(168667,10,'T60.8X3D ','Toxic effect of other pesticides, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168668,10,'T60.8X3S ','Toxic effect of other pesticides, assault, sequela','Y','0000-00-00 00:00:00'),(168669,10,'T60.8X4A ','Toxic effect of other pesticides, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168670,10,'T60.8X4D ','Toxic effect of other pesticides, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168671,10,'T60.8X4S ','Toxic effect of other pesticides, undetermined, sequela','Y','0000-00-00 00:00:00'),(168672,10,'T60.91XA ','Toxic effect of unspecified pesticide, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168673,10,'T60.91XD ','Toxic effect of unspecified pesticide, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168674,10,'T60.91XS ','Toxic effect of unspecified pesticide, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168675,10,'T60.92XA ','Toxic effect of unspecified pesticide, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168676,10,'T60.92XD ','Toxic effect of unspecified pesticide, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168677,10,'T60.92XS ','Toxic effect of unspecified pesticide, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168678,10,'T60.93XA ','Toxic effect of unspecified pesticide, assault, initial encounter','Y','0000-00-00 00:00:00'),(168679,10,'T60.93XD ','Toxic effect of unspecified pesticide, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168680,10,'T60.93XS ','Toxic effect of unspecified pesticide, assault, sequela','Y','0000-00-00 00:00:00'),(168681,10,'T60.94XA ','Toxic effect of unspecified pesticide, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168682,10,'T60.94XD ','Toxic effect of unspecified pesticide, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168683,10,'T60.94XS ','Toxic effect of unspecified pesticide, undetermined, sequela','Y','0000-00-00 00:00:00'),(168684,10,'T61.01XA ','Ciguatera fish poisoning, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168685,10,'T61.01XD ','Ciguatera fish poisoning, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168686,10,'T61.01XS ','Ciguatera fish poisoning, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168687,10,'T61.02XA ','Ciguatera fish poisoning, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168688,10,'T61.02XD ','Ciguatera fish poisoning, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168689,10,'T61.02XS ','Ciguatera fish poisoning, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168690,10,'T61.03XA ','Ciguatera fish poisoning, assault, initial encounter','Y','0000-00-00 00:00:00'),(168691,10,'T61.03XD ','Ciguatera fish poisoning, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168692,10,'T61.03XS ','Ciguatera fish poisoning, assault, sequela','Y','0000-00-00 00:00:00'),(168693,10,'T61.04XA ','Ciguatera fish poisoning, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168694,10,'T61.04XD ','Ciguatera fish poisoning, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168695,10,'T61.04XS ','Ciguatera fish poisoning, undetermined, sequela','Y','0000-00-00 00:00:00'),(168696,10,'T61.11XA ','Scombroid fish poisoning, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168697,10,'T61.11XD ','Scombroid fish poisoning, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168698,10,'T61.11XS ','Scombroid fish poisoning, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168699,10,'T61.12XA ','Scombroid fish poisoning, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168700,10,'T61.12XD ','Scombroid fish poisoning, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168701,10,'T61.12XS ','Scombroid fish poisoning, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168702,10,'T61.13XA ','Scombroid fish poisoning, assault, initial encounter','Y','0000-00-00 00:00:00'),(168703,10,'T61.13XD ','Scombroid fish poisoning, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168704,10,'T61.13XS ','Scombroid fish poisoning, assault, sequela','Y','0000-00-00 00:00:00'),(168705,10,'T61.14XA ','Scombroid fish poisoning, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168706,10,'T61.14XD ','Scombroid fish poisoning, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168707,10,'T61.14XS ','Scombroid fish poisoning, undetermined, sequela','Y','0000-00-00 00:00:00'),(168708,10,'T61.771A ','Other fish poisoning, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168709,10,'T61.771D ','Other fish poisoning, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168710,10,'T61.771S ','Other fish poisoning, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168711,10,'T61.772A ','Other fish poisoning, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168712,10,'T61.772D ','Other fish poisoning, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168713,10,'T61.772S ','Other fish poisoning, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168714,10,'T61.773A ','Other fish poisoning, assault, initial encounter','Y','0000-00-00 00:00:00'),(168715,10,'T61.773D ','Other fish poisoning, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168716,10,'T61.773S ','Other fish poisoning, assault, sequela','Y','0000-00-00 00:00:00'),(168717,10,'T61.774A ','Other fish poisoning, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168718,10,'T61.774D ','Other fish poisoning, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168719,10,'T61.774S ','Other fish poisoning, undetermined, sequela','Y','0000-00-00 00:00:00'),(168720,10,'T61.781A ','Other shellfish poisoning, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168721,10,'T61.781D ','Other shellfish poisoning, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168722,10,'T61.781S ','Other shellfish poisoning, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168723,10,'T61.782A ','Other shellfish poisoning, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168724,10,'T61.782D ','Other shellfish poisoning, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168725,10,'T61.782S ','Other shellfish poisoning, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168726,10,'T61.783A ','Other shellfish poisoning, assault, initial encounter','Y','0000-00-00 00:00:00'),(168727,10,'T61.783D ','Other shellfish poisoning, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168728,10,'T61.783S ','Other shellfish poisoning, assault, sequela','Y','0000-00-00 00:00:00'),(168729,10,'T61.784A ','Other shellfish poisoning, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168730,10,'T61.784D ','Other shellfish poisoning, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168731,10,'T61.784S ','Other shellfish poisoning, undetermined, sequela','Y','0000-00-00 00:00:00'),(168732,10,'T61.8X1A ','Toxic effect of other seafood, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168733,10,'T61.8X1D ','Toxic effect of other seafood, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168734,10,'T61.8X1S ','Toxic effect of other seafood, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168735,10,'T61.8X2A ','Toxic effect of other seafood, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168736,10,'T61.8X2D ','Toxic effect of other seafood, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168737,10,'T61.8X2S ','Toxic effect of other seafood, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168738,10,'T61.8X3A ','Toxic effect of other seafood, assault, initial encounter','Y','0000-00-00 00:00:00'),(168739,10,'T61.8X3D ','Toxic effect of other seafood, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168740,10,'T61.8X3S ','Toxic effect of other seafood, assault, sequela','Y','0000-00-00 00:00:00'),(168741,10,'T61.8X4A ','Toxic effect of other seafood, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168742,10,'T61.8X4D ','Toxic effect of other seafood, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168743,10,'T61.8X4S ','Toxic effect of other seafood, undetermined, sequela','Y','0000-00-00 00:00:00'),(168744,10,'T61.91XA ','Toxic effect of unspecified seafood, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168745,10,'T61.91XD ','Toxic effect of unspecified seafood, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168746,10,'T61.91XS ','Toxic effect of unspecified seafood, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168747,10,'T61.92XA ','Toxic effect of unspecified seafood, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168748,10,'T61.92XD ','Toxic effect of unspecified seafood, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168749,10,'T61.92XS ','Toxic effect of unspecified seafood, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168750,10,'T61.93XA ','Toxic effect of unspecified seafood, assault, initial encounter','Y','0000-00-00 00:00:00'),(168751,10,'T61.93XD ','Toxic effect of unspecified seafood, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168752,10,'T61.93XS ','Toxic effect of unspecified seafood, assault, sequela','Y','0000-00-00 00:00:00'),(168753,10,'T61.94XA ','Toxic effect of unspecified seafood, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168754,10,'T61.94XD ','Toxic effect of unspecified seafood, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168755,10,'T61.94XS ','Toxic effect of unspecified seafood, undetermined, sequela','Y','0000-00-00 00:00:00'),(168756,10,'T62.0X1A ','Toxic effect of ingested mushrooms, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168757,10,'T62.0X1D ','Toxic effect of ingested mushrooms, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168758,10,'T62.0X1S ','Toxic effect of ingested mushrooms, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168759,10,'T62.0X2A ','Toxic effect of ingested mushrooms, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168760,10,'T62.0X2D ','Toxic effect of ingested mushrooms, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168761,10,'T62.0X2S ','Toxic effect of ingested mushrooms, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168762,10,'T62.0X3A ','Toxic effect of ingested mushrooms, assault, initial encounter','Y','0000-00-00 00:00:00'),(168763,10,'T62.0X3D ','Toxic effect of ingested mushrooms, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168764,10,'T62.0X3S ','Toxic effect of ingested mushrooms, assault, sequela','Y','0000-00-00 00:00:00'),(168765,10,'T62.0X4A ','Toxic effect of ingested mushrooms, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168766,10,'T62.0X4D ','Toxic effect of ingested mushrooms, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168767,10,'T62.0X4S ','Toxic effect of ingested mushrooms, undetermined, sequela','Y','0000-00-00 00:00:00'),(168768,10,'T62.1X1A ','Toxic effect of ingested berries, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168769,10,'T62.1X1D ','Toxic effect of ingested berries, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168770,10,'T62.1X1S ','Toxic effect of ingested berries, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168771,10,'T62.1X2A ','Toxic effect of ingested berries, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168772,10,'T62.1X2D ','Toxic effect of ingested berries, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168773,10,'T62.1X2S ','Toxic effect of ingested berries, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168774,10,'T62.1X3A ','Toxic effect of ingested berries, assault, initial encounter','Y','0000-00-00 00:00:00'),(168775,10,'T62.1X3D ','Toxic effect of ingested berries, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168776,10,'T62.1X3S ','Toxic effect of ingested berries, assault, sequela','Y','0000-00-00 00:00:00'),(168777,10,'T62.1X4A ','Toxic effect of ingested berries, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168778,10,'T62.1X4D ','Toxic effect of ingested berries, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168779,10,'T62.1X4S ','Toxic effect of ingested berries, undetermined, sequela','Y','0000-00-00 00:00:00'),(168780,10,'T62.2X1A ','Toxic effect of other ingested (parts of) plant(s), accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168781,10,'T62.2X1D ','Toxic effect of other ingested (parts of) plant(s), accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168782,10,'T62.2X1S ','Toxic effect of other ingested (parts of) plant(s), accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168783,10,'T62.2X2A ','Toxic effect of other ingested (parts of) plant(s), intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168784,10,'T62.2X2D ','Toxic effect of other ingested (parts of) plant(s), intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168785,10,'T62.2X2S ','Toxic effect of other ingested (parts of) plant(s), intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168786,10,'T62.2X3A ','Toxic effect of other ingested (parts of) plant(s), assault, initial encounter','Y','0000-00-00 00:00:00'),(168787,10,'T62.2X3D ','Toxic effect of other ingested (parts of) plant(s), assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168788,10,'T62.2X3S ','Toxic effect of other ingested (parts of) plant(s), assault, sequela','Y','0000-00-00 00:00:00'),(168789,10,'T62.2X4A ','Toxic effect of other ingested (parts of) plant(s), undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168790,10,'T62.2X4D ','Toxic effect of other ingested (parts of) plant(s), undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168791,10,'T62.2X4S ','Toxic effect of other ingested (parts of) plant(s), undetermined, sequela','Y','0000-00-00 00:00:00'),(168792,10,'T62.8X1A ','Toxic effect of other specified noxious substances eaten as food, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168793,10,'T62.8X1D ','Toxic effect of other specified noxious substances eaten as food, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168794,10,'T62.8X1S ','Toxic effect of other specified noxious substances eaten as food, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168795,10,'T62.8X2A ','Toxic effect of other specified noxious substances eaten as food, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168796,10,'T62.8X2D ','Toxic effect of other specified noxious substances eaten as food, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168797,10,'T62.8X2S ','Toxic effect of other specified noxious substances eaten as food, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168798,10,'T62.8X3A ','Toxic effect of other specified noxious substances eaten as food, assault, initial encounter','Y','0000-00-00 00:00:00'),(168799,10,'T62.8X3D ','Toxic effect of other specified noxious substances eaten as food, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168800,10,'T62.8X3S ','Toxic effect of other specified noxious substances eaten as food, assault, sequela','Y','0000-00-00 00:00:00'),(168801,10,'T62.8X4A ','Toxic effect of other specified noxious substances eaten as food, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168802,10,'T62.8X4D ','Toxic effect of other specified noxious substances eaten as food, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168803,10,'T62.8X4S ','Toxic effect of other specified noxious substances eaten as food, undetermined, sequela','Y','0000-00-00 00:00:00'),(168804,10,'T62.91XA ','Toxic effect of unspecified noxious substance eaten as food, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168805,10,'T62.91XD ','Toxic effect of unspecified noxious substance eaten as food, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168806,10,'T62.91XS ','Toxic effect of unspecified noxious substance eaten as food, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168807,10,'T62.92XA ','Toxic effect of unspecified noxious substance eaten as food, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168808,10,'T62.92XD ','Toxic effect of unspecified noxious substance eaten as food, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168809,10,'T62.92XS ','Toxic effect of unspecified noxious substance eaten as food, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168810,10,'T62.93XA ','Toxic effect of unspecified noxious substance eaten as food, assault, initial encounter','Y','0000-00-00 00:00:00'),(168811,10,'T62.93XD ','Toxic effect of unspecified noxious substance eaten as food, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168812,10,'T62.93XS ','Toxic effect of unspecified noxious substance eaten as food, assault, sequela','Y','0000-00-00 00:00:00'),(168813,10,'T62.94XA ','Toxic effect of unspecified noxious substance eaten as food, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168814,10,'T62.94XD ','Toxic effect of unspecified noxious substance eaten as food, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168815,10,'T62.94XS ','Toxic effect of unspecified noxious substance eaten as food, undetermined, sequela','Y','0000-00-00 00:00:00'),(168816,10,'T63.001A ','Toxic effect of unspecified snake venom, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168817,10,'T63.001D ','Toxic effect of unspecified snake venom, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168818,10,'T63.001S ','Toxic effect of unspecified snake venom, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168819,10,'T63.002A ','Toxic effect of unspecified snake venom, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168820,10,'T63.002D ','Toxic effect of unspecified snake venom, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168821,10,'T63.002S ','Toxic effect of unspecified snake venom, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168822,10,'T63.003A ','Toxic effect of unspecified snake venom, assault, initial encounter','Y','0000-00-00 00:00:00'),(168823,10,'T63.003D ','Toxic effect of unspecified snake venom, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168824,10,'T63.003S ','Toxic effect of unspecified snake venom, assault, sequela','Y','0000-00-00 00:00:00'),(168825,10,'T63.004A ','Toxic effect of unspecified snake venom, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168826,10,'T63.004D ','Toxic effect of unspecified snake venom, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168827,10,'T63.004S ','Toxic effect of unspecified snake venom, undetermined, sequela','Y','0000-00-00 00:00:00'),(168828,10,'T63.011A ','Toxic effect of rattlesnake venom, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168829,10,'T63.011D ','Toxic effect of rattlesnake venom, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168830,10,'T63.011S ','Toxic effect of rattlesnake venom, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168831,10,'T63.012A ','Toxic effect of rattlesnake venom, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168832,10,'T63.012D ','Toxic effect of rattlesnake venom, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168833,10,'T63.012S ','Toxic effect of rattlesnake venom, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168834,10,'T63.013A ','Toxic effect of rattlesnake venom, assault, initial encounter','Y','0000-00-00 00:00:00'),(168835,10,'T63.013D ','Toxic effect of rattlesnake venom, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168836,10,'T63.013S ','Toxic effect of rattlesnake venom, assault, sequela','Y','0000-00-00 00:00:00'),(168837,10,'T63.014A ','Toxic effect of rattlesnake venom, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168838,10,'T63.014D ','Toxic effect of rattlesnake venom, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168839,10,'T63.014S ','Toxic effect of rattlesnake venom, undetermined, sequela','Y','0000-00-00 00:00:00'),(168840,10,'T63.021A ','Toxic effect of coral snake venom, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168841,10,'T63.021D ','Toxic effect of coral snake venom, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168842,10,'T63.021S ','Toxic effect of coral snake venom, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168843,10,'T63.022A ','Toxic effect of coral snake venom, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168844,10,'T63.022D ','Toxic effect of coral snake venom, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168845,10,'T63.022S ','Toxic effect of coral snake venom, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168846,10,'T63.023A ','Toxic effect of coral snake venom, assault, initial encounter','Y','0000-00-00 00:00:00'),(168847,10,'T63.023D ','Toxic effect of coral snake venom, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168848,10,'T63.023S ','Toxic effect of coral snake venom, assault, sequela','Y','0000-00-00 00:00:00'),(168849,10,'T63.024A ','Toxic effect of coral snake venom, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168850,10,'T63.024D ','Toxic effect of coral snake venom, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168851,10,'T63.024S ','Toxic effect of coral snake venom, undetermined, sequela','Y','0000-00-00 00:00:00'),(168852,10,'T63.031A ','Toxic effect of taipan venom, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168853,10,'T63.031D ','Toxic effect of taipan venom, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168854,10,'T63.031S ','Toxic effect of taipan venom, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168855,10,'T63.032A ','Toxic effect of taipan venom, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168856,10,'T63.032D ','Toxic effect of taipan venom, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168857,10,'T63.032S ','Toxic effect of taipan venom, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168858,10,'T63.033A ','Toxic effect of taipan venom, assault, initial encounter','Y','0000-00-00 00:00:00'),(168859,10,'T63.033D ','Toxic effect of taipan venom, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168860,10,'T63.033S ','Toxic effect of taipan venom, assault, sequela','Y','0000-00-00 00:00:00'),(168861,10,'T63.034A ','Toxic effect of taipan venom, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168862,10,'T63.034D ','Toxic effect of taipan venom, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168863,10,'T63.034S ','Toxic effect of taipan venom, undetermined, sequela','Y','0000-00-00 00:00:00'),(168864,10,'T63.041A ','Toxic effect of cobra venom, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168865,10,'T63.041D ','Toxic effect of cobra venom, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168866,10,'T63.041S ','Toxic effect of cobra venom, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168867,10,'T63.042A ','Toxic effect of cobra venom, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168868,10,'T63.042D ','Toxic effect of cobra venom, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168869,10,'T63.042S ','Toxic effect of cobra venom, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168870,10,'T63.043A ','Toxic effect of cobra venom, assault, initial encounter','Y','0000-00-00 00:00:00'),(168871,10,'T63.043D ','Toxic effect of cobra venom, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168872,10,'T63.043S ','Toxic effect of cobra venom, assault, sequela','Y','0000-00-00 00:00:00'),(168873,10,'T63.044A ','Toxic effect of cobra venom, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168874,10,'T63.044D ','Toxic effect of cobra venom, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168875,10,'T63.044S ','Toxic effect of cobra venom, undetermined, sequela','Y','0000-00-00 00:00:00'),(168876,10,'T63.061A ','Toxic effect of venom of other North and South American snake, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168877,10,'T63.061D ','Toxic effect of venom of other North and South American snake, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168878,10,'T63.061S ','Toxic effect of venom of other North and South American snake, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168879,10,'T63.062A ','Toxic effect of venom of other North and South American snake, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168880,10,'T63.062D ','Toxic effect of venom of other North and South American snake, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168881,10,'T63.062S ','Toxic effect of venom of other North and South American snake, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168882,10,'T63.063A ','Toxic effect of venom of other North and South American snake, assault, initial encounter','Y','0000-00-00 00:00:00'),(168883,10,'T63.063D ','Toxic effect of venom of other North and South American snake, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168884,10,'T63.063S ','Toxic effect of venom of other North and South American snake, assault, sequela','Y','0000-00-00 00:00:00'),(168885,10,'T63.064A ','Toxic effect of venom of other North and South American snake, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168886,10,'T63.064D ','Toxic effect of venom of other North and South American snake, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168887,10,'T63.064S ','Toxic effect of venom of other North and South American snake, undetermined, sequela','Y','0000-00-00 00:00:00'),(168888,10,'T63.071A ','Toxic effect of venom of other Australian snake, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168889,10,'T63.071D ','Toxic effect of venom of other Australian snake, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168890,10,'T63.071S ','Toxic effect of venom of other Australian snake, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168891,10,'T63.072A ','Toxic effect of venom of other Australian snake, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168892,10,'T63.072D ','Toxic effect of venom of other Australian snake, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168893,10,'T63.072S ','Toxic effect of venom of other Australian snake, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168894,10,'T63.073A ','Toxic effect of venom of other Australian snake, assault, initial encounter','Y','0000-00-00 00:00:00'),(168895,10,'T63.073D ','Toxic effect of venom of other Australian snake, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168896,10,'T63.073S ','Toxic effect of venom of other Australian snake, assault, sequela','Y','0000-00-00 00:00:00'),(168897,10,'T63.074A ','Toxic effect of venom of other Australian snake, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168898,10,'T63.074D ','Toxic effect of venom of other Australian snake, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168899,10,'T63.074S ','Toxic effect of venom of other Australian snake, undetermined, sequela','Y','0000-00-00 00:00:00'),(168900,10,'T63.081A ','Toxic effect of venom of other African and Asian snake, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168901,10,'T63.081D ','Toxic effect of venom of other African and Asian snake, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168902,10,'T63.081S ','Toxic effect of venom of other African and Asian snake, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168903,10,'T63.082A ','Toxic effect of venom of other African and Asian snake, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168904,10,'T63.082D ','Toxic effect of venom of other African and Asian snake, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168905,10,'T63.082S ','Toxic effect of venom of other African and Asian snake, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168906,10,'T63.083A ','Toxic effect of venom of other African and Asian snake, assault, initial encounter','Y','0000-00-00 00:00:00'),(168907,10,'T63.083D ','Toxic effect of venom of other African and Asian snake, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168908,10,'T63.083S ','Toxic effect of venom of other African and Asian snake, assault, sequela','Y','0000-00-00 00:00:00'),(168909,10,'T63.084A ','Toxic effect of venom of other African and Asian snake, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168910,10,'T63.084D ','Toxic effect of venom of other African and Asian snake, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168911,10,'T63.084S ','Toxic effect of venom of other African and Asian snake, undetermined, sequela','Y','0000-00-00 00:00:00'),(168912,10,'T63.091A ','Toxic effect of venom of other snake, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168913,10,'T63.091D ','Toxic effect of venom of other snake, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168914,10,'T63.091S ','Toxic effect of venom of other snake, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168915,10,'T63.092A ','Toxic effect of venom of other snake, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168916,10,'T63.092D ','Toxic effect of venom of other snake, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168917,10,'T63.092S ','Toxic effect of venom of other snake, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168918,10,'T63.093A ','Toxic effect of venom of other snake, assault, initial encounter','Y','0000-00-00 00:00:00'),(168919,10,'T63.093D ','Toxic effect of venom of other snake, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168920,10,'T63.093S ','Toxic effect of venom of other snake, assault, sequela','Y','0000-00-00 00:00:00'),(168921,10,'T63.094A ','Toxic effect of venom of other snake, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168922,10,'T63.094D ','Toxic effect of venom of other snake, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168923,10,'T63.094S ','Toxic effect of venom of other snake, undetermined, sequela','Y','0000-00-00 00:00:00'),(168924,10,'T63.111A ','Toxic effect of venom of gila monster, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168925,10,'T63.111D ','Toxic effect of venom of gila monster, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168926,10,'T63.111S ','Toxic effect of venom of gila monster, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168927,10,'T63.112A ','Toxic effect of venom of gila monster, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168928,10,'T63.112D ','Toxic effect of venom of gila monster, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168929,10,'T63.112S ','Toxic effect of venom of gila monster, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168930,10,'T63.113A ','Toxic effect of venom of gila monster, assault, initial encounter','Y','0000-00-00 00:00:00'),(168931,10,'T63.113D ','Toxic effect of venom of gila monster, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168932,10,'T63.113S ','Toxic effect of venom of gila monster, assault, sequela','Y','0000-00-00 00:00:00'),(168933,10,'T63.114A ','Toxic effect of venom of gila monster, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168934,10,'T63.114D ','Toxic effect of venom of gila monster, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168935,10,'T63.114S ','Toxic effect of venom of gila monster, undetermined, sequela','Y','0000-00-00 00:00:00'),(168936,10,'T63.121A ','Toxic effect of venom of other venomous lizard, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168937,10,'T63.121D ','Toxic effect of venom of other venomous lizard, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168938,10,'T63.121S ','Toxic effect of venom of other venomous lizard, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168939,10,'T63.122A ','Toxic effect of venom of other venomous lizard, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168940,10,'T63.122D ','Toxic effect of venom of other venomous lizard, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168941,10,'T63.122S ','Toxic effect of venom of other venomous lizard, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168942,10,'T63.123A ','Toxic effect of venom of other venomous lizard, assault, initial encounter','Y','0000-00-00 00:00:00'),(168943,10,'T63.123D ','Toxic effect of venom of other venomous lizard, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168944,10,'T63.123S ','Toxic effect of venom of other venomous lizard, assault, sequela','Y','0000-00-00 00:00:00'),(168945,10,'T63.124A ','Toxic effect of venom of other venomous lizard, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168946,10,'T63.124D ','Toxic effect of venom of other venomous lizard, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168947,10,'T63.124S ','Toxic effect of venom of other venomous lizard, undetermined, sequela','Y','0000-00-00 00:00:00'),(168948,10,'T63.191A ','Toxic effect of venom of other reptiles, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168949,10,'T63.191D ','Toxic effect of venom of other reptiles, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168950,10,'T63.191S ','Toxic effect of venom of other reptiles, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168951,10,'T63.192A ','Toxic effect of venom of other reptiles, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168952,10,'T63.192D ','Toxic effect of venom of other reptiles, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168953,10,'T63.192S ','Toxic effect of venom of other reptiles, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168954,10,'T63.193A ','Toxic effect of venom of other reptiles, assault, initial encounter','Y','0000-00-00 00:00:00'),(168955,10,'T63.193D ','Toxic effect of venom of other reptiles, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168956,10,'T63.193S ','Toxic effect of venom of other reptiles, assault, sequela','Y','0000-00-00 00:00:00'),(168957,10,'T63.194A ','Toxic effect of venom of other reptiles, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168958,10,'T63.194D ','Toxic effect of venom of other reptiles, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168959,10,'T63.194S ','Toxic effect of venom of other reptiles, undetermined, sequela','Y','0000-00-00 00:00:00'),(168960,10,'T63.2X1A ','Toxic effect of venom of scorpion, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168961,10,'T63.2X1D ','Toxic effect of venom of scorpion, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168962,10,'T63.2X1S ','Toxic effect of venom of scorpion, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168963,10,'T63.2X2A ','Toxic effect of venom of scorpion, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168964,10,'T63.2X2D ','Toxic effect of venom of scorpion, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168965,10,'T63.2X2S ','Toxic effect of venom of scorpion, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168966,10,'T63.2X3A ','Toxic effect of venom of scorpion, assault, initial encounter','Y','0000-00-00 00:00:00'),(168967,10,'T63.2X3D ','Toxic effect of venom of scorpion, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168968,10,'T63.2X3S ','Toxic effect of venom of scorpion, assault, sequela','Y','0000-00-00 00:00:00'),(168969,10,'T63.2X4A ','Toxic effect of venom of scorpion, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168970,10,'T63.2X4D ','Toxic effect of venom of scorpion, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168971,10,'T63.2X4S ','Toxic effect of venom of scorpion, undetermined, sequela','Y','0000-00-00 00:00:00'),(168972,10,'T63.301A ','Toxic effect of unspecified spider venom, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168973,10,'T63.301D ','Toxic effect of unspecified spider venom, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168974,10,'T63.301S ','Toxic effect of unspecified spider venom, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168975,10,'T63.302A ','Toxic effect of unspecified spider venom, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168976,10,'T63.302D ','Toxic effect of unspecified spider venom, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168977,10,'T63.302S ','Toxic effect of unspecified spider venom, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168978,10,'T63.303A ','Toxic effect of unspecified spider venom, assault, initial encounter','Y','0000-00-00 00:00:00'),(168979,10,'T63.303D ','Toxic effect of unspecified spider venom, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168980,10,'T63.303S ','Toxic effect of unspecified spider venom, assault, sequela','Y','0000-00-00 00:00:00'),(168981,10,'T63.304A ','Toxic effect of unspecified spider venom, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168982,10,'T63.304D ','Toxic effect of unspecified spider venom, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168983,10,'T63.304S ','Toxic effect of unspecified spider venom, undetermined, sequela','Y','0000-00-00 00:00:00'),(168984,10,'T63.311A ','Toxic effect of venom of black widow spider, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168985,10,'T63.311D ','Toxic effect of venom of black widow spider, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168986,10,'T63.311S ','Toxic effect of venom of black widow spider, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168987,10,'T63.312A ','Toxic effect of venom of black widow spider, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(168988,10,'T63.312D ','Toxic effect of venom of black widow spider, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(168989,10,'T63.312S ','Toxic effect of venom of black widow spider, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(168990,10,'T63.313A ','Toxic effect of venom of black widow spider, assault, initial encounter','Y','0000-00-00 00:00:00'),(168991,10,'T63.313D ','Toxic effect of venom of black widow spider, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(168992,10,'T63.313S ','Toxic effect of venom of black widow spider, assault, sequela','Y','0000-00-00 00:00:00'),(168993,10,'T63.314A ','Toxic effect of venom of black widow spider, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(168994,10,'T63.314D ','Toxic effect of venom of black widow spider, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(168995,10,'T63.314S ','Toxic effect of venom of black widow spider, undetermined, sequela','Y','0000-00-00 00:00:00'),(168996,10,'T63.321A ','Toxic effect of venom of tarantula, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(168997,10,'T63.321D ','Toxic effect of venom of tarantula, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(168998,10,'T63.321S ','Toxic effect of venom of tarantula, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(168999,10,'T63.322A ','Toxic effect of venom of tarantula, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169000,10,'T63.322D ','Toxic effect of venom of tarantula, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169001,10,'T63.322S ','Toxic effect of venom of tarantula, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169002,10,'T63.323A ','Toxic effect of venom of tarantula, assault, initial encounter','Y','0000-00-00 00:00:00'),(169003,10,'T63.323D ','Toxic effect of venom of tarantula, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169004,10,'T63.323S ','Toxic effect of venom of tarantula, assault, sequela','Y','0000-00-00 00:00:00'),(169005,10,'T63.324A ','Toxic effect of venom of tarantula, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169006,10,'T63.324D ','Toxic effect of venom of tarantula, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169007,10,'T63.324S ','Toxic effect of venom of tarantula, undetermined, sequela','Y','0000-00-00 00:00:00'),(169008,10,'T63.331A ','Toxic effect of venom of brown recluse spider, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169009,10,'T63.331D ','Toxic effect of venom of brown recluse spider, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169010,10,'T63.331S ','Toxic effect of venom of brown recluse spider, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169011,10,'T63.332A ','Toxic effect of venom of brown recluse spider, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169012,10,'T63.332D ','Toxic effect of venom of brown recluse spider, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169013,10,'T63.332S ','Toxic effect of venom of brown recluse spider, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169014,10,'T63.333A ','Toxic effect of venom of brown recluse spider, assault, initial encounter','Y','0000-00-00 00:00:00'),(169015,10,'T63.333D ','Toxic effect of venom of brown recluse spider, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169016,10,'T63.333S ','Toxic effect of venom of brown recluse spider, assault, sequela','Y','0000-00-00 00:00:00'),(169017,10,'T63.334A ','Toxic effect of venom of brown recluse spider, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169018,10,'T63.334D ','Toxic effect of venom of brown recluse spider, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169019,10,'T63.334S ','Toxic effect of venom of brown recluse spider, undetermined, sequela','Y','0000-00-00 00:00:00'),(169020,10,'T63.391A ','Toxic effect of venom of other spider, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169021,10,'T63.391D ','Toxic effect of venom of other spider, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169022,10,'T63.391S ','Toxic effect of venom of other spider, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169023,10,'T63.392A ','Toxic effect of venom of other spider, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169024,10,'T63.392D ','Toxic effect of venom of other spider, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169025,10,'T63.392S ','Toxic effect of venom of other spider, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169026,10,'T63.393A ','Toxic effect of venom of other spider, assault, initial encounter','Y','0000-00-00 00:00:00'),(169027,10,'T63.393D ','Toxic effect of venom of other spider, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169028,10,'T63.393S ','Toxic effect of venom of other spider, assault, sequela','Y','0000-00-00 00:00:00'),(169029,10,'T63.394A ','Toxic effect of venom of other spider, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169030,10,'T63.394D ','Toxic effect of venom of other spider, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169031,10,'T63.394S ','Toxic effect of venom of other spider, undetermined, sequela','Y','0000-00-00 00:00:00'),(169032,10,'T63.411A ','Toxic effect of venom of centipedes and venomous millipedes, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169033,10,'T63.411D ','Toxic effect of venom of centipedes and venomous millipedes, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169034,10,'T63.411S ','Toxic effect of venom of centipedes and venomous millipedes, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169035,10,'T63.412A ','Toxic effect of venom of centipedes and venomous millipedes, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169036,10,'T63.412D ','Toxic effect of venom of centipedes and venomous millipedes, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169037,10,'T63.412S ','Toxic effect of venom of centipedes and venomous millipedes, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169038,10,'T63.413A ','Toxic effect of venom of centipedes and venomous millipedes, assault, initial encounter','Y','0000-00-00 00:00:00'),(169039,10,'T63.413D ','Toxic effect of venom of centipedes and venomous millipedes, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169040,10,'T63.413S ','Toxic effect of venom of centipedes and venomous millipedes, assault, sequela','Y','0000-00-00 00:00:00'),(169041,10,'T63.414A ','Toxic effect of venom of centipedes and venomous millipedes, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169042,10,'T63.414D ','Toxic effect of venom of centipedes and venomous millipedes, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169043,10,'T63.414S ','Toxic effect of venom of centipedes and venomous millipedes, undetermined, sequela','Y','0000-00-00 00:00:00'),(169044,10,'T63.421A ','Toxic effect of venom of ants, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169045,10,'T63.421D ','Toxic effect of venom of ants, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169046,10,'T63.421S ','Toxic effect of venom of ants, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169047,10,'T63.422A ','Toxic effect of venom of ants, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169048,10,'T63.422D ','Toxic effect of venom of ants, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169049,10,'T63.422S ','Toxic effect of venom of ants, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169050,10,'T63.423A ','Toxic effect of venom of ants, assault, initial encounter','Y','0000-00-00 00:00:00'),(169051,10,'T63.423D ','Toxic effect of venom of ants, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169052,10,'T63.423S ','Toxic effect of venom of ants, assault, sequela','Y','0000-00-00 00:00:00'),(169053,10,'T63.424A ','Toxic effect of venom of ants, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169054,10,'T63.424D ','Toxic effect of venom of ants, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169055,10,'T63.424S ','Toxic effect of venom of ants, undetermined, sequela','Y','0000-00-00 00:00:00'),(169056,10,'T63.431A ','Toxic effect of venom of caterpillars, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169057,10,'T63.431D ','Toxic effect of venom of caterpillars, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169058,10,'T63.431S ','Toxic effect of venom of caterpillars, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169059,10,'T63.432A ','Toxic effect of venom of caterpillars, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169060,10,'T63.432D ','Toxic effect of venom of caterpillars, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169061,10,'T63.432S ','Toxic effect of venom of caterpillars, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169062,10,'T63.433A ','Toxic effect of venom of caterpillars, assault, initial encounter','Y','0000-00-00 00:00:00'),(169063,10,'T63.433D ','Toxic effect of venom of caterpillars, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169064,10,'T63.433S ','Toxic effect of venom of caterpillars, assault, sequela','Y','0000-00-00 00:00:00'),(169065,10,'T63.434A ','Toxic effect of venom of caterpillars, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169066,10,'T63.434D ','Toxic effect of venom of caterpillars, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169067,10,'T63.434S ','Toxic effect of venom of caterpillars, undetermined, sequela','Y','0000-00-00 00:00:00'),(169068,10,'T63.441A ','Toxic effect of venom of bees, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169069,10,'T63.441D ','Toxic effect of venom of bees, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169070,10,'T63.441S ','Toxic effect of venom of bees, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169071,10,'T63.442A ','Toxic effect of venom of bees, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169072,10,'T63.442D ','Toxic effect of venom of bees, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169073,10,'T63.442S ','Toxic effect of venom of bees, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169074,10,'T63.443A ','Toxic effect of venom of bees, assault, initial encounter','Y','0000-00-00 00:00:00'),(169075,10,'T63.443D ','Toxic effect of venom of bees, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169076,10,'T63.443S ','Toxic effect of venom of bees, assault, sequela','Y','0000-00-00 00:00:00'),(169077,10,'T63.444A ','Toxic effect of venom of bees, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169078,10,'T63.444D ','Toxic effect of venom of bees, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169079,10,'T63.444S ','Toxic effect of venom of bees, undetermined, sequela','Y','0000-00-00 00:00:00'),(169080,10,'T63.451A ','Toxic effect of venom of hornets, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169081,10,'T63.451D ','Toxic effect of venom of hornets, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169082,10,'T63.451S ','Toxic effect of venom of hornets, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169083,10,'T63.452A ','Toxic effect of venom of hornets, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169084,10,'T63.452D ','Toxic effect of venom of hornets, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169085,10,'T63.452S ','Toxic effect of venom of hornets, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169086,10,'T63.453A ','Toxic effect of venom of hornets, assault, initial encounter','Y','0000-00-00 00:00:00'),(169087,10,'T63.453D ','Toxic effect of venom of hornets, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169088,10,'T63.453S ','Toxic effect of venom of hornets, assault, sequela','Y','0000-00-00 00:00:00'),(169089,10,'T63.454A ','Toxic effect of venom of hornets, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169090,10,'T63.454D ','Toxic effect of venom of hornets, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169091,10,'T63.454S ','Toxic effect of venom of hornets, undetermined, sequela','Y','0000-00-00 00:00:00'),(169092,10,'T63.461A ','Toxic effect of venom of wasps, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169093,10,'T63.461D ','Toxic effect of venom of wasps, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169094,10,'T63.461S ','Toxic effect of venom of wasps, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169095,10,'T63.462A ','Toxic effect of venom of wasps, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169096,10,'T63.462D ','Toxic effect of venom of wasps, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169097,10,'T63.462S ','Toxic effect of venom of wasps, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169098,10,'T63.463A ','Toxic effect of venom of wasps, assault, initial encounter','Y','0000-00-00 00:00:00'),(169099,10,'T63.463D ','Toxic effect of venom of wasps, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169100,10,'T63.463S ','Toxic effect of venom of wasps, assault, sequela','Y','0000-00-00 00:00:00'),(169101,10,'T63.464A ','Toxic effect of venom of wasps, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169102,10,'T63.464D ','Toxic effect of venom of wasps, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169103,10,'T63.464S ','Toxic effect of venom of wasps, undetermined, sequela','Y','0000-00-00 00:00:00'),(169104,10,'T63.481A ','Toxic effect of venom of other arthropod, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169105,10,'T63.481D ','Toxic effect of venom of other arthropod, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169106,10,'T63.481S ','Toxic effect of venom of other arthropod, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169107,10,'T63.482A ','Toxic effect of venom of other arthropod, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169108,10,'T63.482D ','Toxic effect of venom of other arthropod, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169109,10,'T63.482S ','Toxic effect of venom of other arthropod, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169110,10,'T63.483A ','Toxic effect of venom of other arthropod, assault, initial encounter','Y','0000-00-00 00:00:00'),(169111,10,'T63.483D ','Toxic effect of venom of other arthropod, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169112,10,'T63.483S ','Toxic effect of venom of other arthropod, assault, sequela','Y','0000-00-00 00:00:00'),(169113,10,'T63.484A ','Toxic effect of venom of other arthropod, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169114,10,'T63.484D ','Toxic effect of venom of other arthropod, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169115,10,'T63.484S ','Toxic effect of venom of other arthropod, undetermined, sequela','Y','0000-00-00 00:00:00'),(169116,10,'T63.511A ','Toxic effect of contact with stingray, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169117,10,'T63.511D ','Toxic effect of contact with stingray, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169118,10,'T63.511S ','Toxic effect of contact with stingray, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169119,10,'T63.512A ','Toxic effect of contact with stingray, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169120,10,'T63.512D ','Toxic effect of contact with stingray, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169121,10,'T63.512S ','Toxic effect of contact with stingray, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169122,10,'T63.513A ','Toxic effect of contact with stingray, assault, initial encounter','Y','0000-00-00 00:00:00'),(169123,10,'T63.513D ','Toxic effect of contact with stingray, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169124,10,'T63.513S ','Toxic effect of contact with stingray, assault, sequela','Y','0000-00-00 00:00:00'),(169125,10,'T63.514A ','Toxic effect of contact with stingray, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169126,10,'T63.514D ','Toxic effect of contact with stingray, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169127,10,'T63.514S ','Toxic effect of contact with stingray, undetermined, sequela','Y','0000-00-00 00:00:00'),(169128,10,'T63.591A ','Toxic effect of contact with other venomous fish, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169129,10,'T63.591D ','Toxic effect of contact with other venomous fish, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169130,10,'T63.591S ','Toxic effect of contact with other venomous fish, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169131,10,'T63.592A ','Toxic effect of contact with other venomous fish, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169132,10,'T63.592D ','Toxic effect of contact with other venomous fish, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169133,10,'T63.592S ','Toxic effect of contact with other venomous fish, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169134,10,'T63.593A ','Toxic effect of contact with other venomous fish, assault, initial encounter','Y','0000-00-00 00:00:00'),(169135,10,'T63.593D ','Toxic effect of contact with other venomous fish, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169136,10,'T63.593S ','Toxic effect of contact with other venomous fish, assault, sequela','Y','0000-00-00 00:00:00'),(169137,10,'T63.594A ','Toxic effect of contact with other venomous fish, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169138,10,'T63.594D ','Toxic effect of contact with other venomous fish, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169139,10,'T63.594S ','Toxic effect of contact with other venomous fish, undetermined, sequela','Y','0000-00-00 00:00:00'),(169140,10,'T63.611A ','Toxic effect of contact with Portuguese Man-o-war, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169141,10,'T63.611D ','Toxic effect of contact with Portuguese Man-o-war, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169142,10,'T63.611S ','Toxic effect of contact with Portuguese Man-o-war, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169143,10,'T63.612A ','Toxic effect of contact with Portuguese Man-o-war, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169144,10,'T63.612D ','Toxic effect of contact with Portuguese Man-o-war, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169145,10,'T63.612S ','Toxic effect of contact with Portuguese Man-o-war, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169146,10,'T63.613A ','Toxic effect of contact with Portuguese Man-o-war, assault, initial encounter','Y','0000-00-00 00:00:00'),(169147,10,'T63.613D ','Toxic effect of contact with Portuguese Man-o-war, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169148,10,'T63.613S ','Toxic effect of contact with Portuguese Man-o-war, assault, sequela','Y','0000-00-00 00:00:00'),(169149,10,'T63.614A ','Toxic effect of contact with Portuguese Man-o-war, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169150,10,'T63.614D ','Toxic effect of contact with Portuguese Man-o-war, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169151,10,'T63.614S ','Toxic effect of contact with Portuguese Man-o-war, undetermined, sequela','Y','0000-00-00 00:00:00'),(169152,10,'T63.621A ','Toxic effect of contact with other jellyfish, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169153,10,'T63.621D ','Toxic effect of contact with other jellyfish, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169154,10,'T63.621S ','Toxic effect of contact with other jellyfish, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169155,10,'T63.622A ','Toxic effect of contact with other jellyfish, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169156,10,'T63.622D ','Toxic effect of contact with other jellyfish, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169157,10,'T63.622S ','Toxic effect of contact with other jellyfish, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169158,10,'T63.623A ','Toxic effect of contact with other jellyfish, assault, initial encounter','Y','0000-00-00 00:00:00'),(169159,10,'T63.623D ','Toxic effect of contact with other jellyfish, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169160,10,'T63.623S ','Toxic effect of contact with other jellyfish, assault, sequela','Y','0000-00-00 00:00:00'),(169161,10,'T63.624A ','Toxic effect of contact with other jellyfish, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169162,10,'T63.624D ','Toxic effect of contact with other jellyfish, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169163,10,'T63.624S ','Toxic effect of contact with other jellyfish, undetermined, sequela','Y','0000-00-00 00:00:00'),(169164,10,'T63.631A ','Toxic effect of contact with sea anemone, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169165,10,'T63.631D ','Toxic effect of contact with sea anemone, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169166,10,'T63.631S ','Toxic effect of contact with sea anemone, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169167,10,'T63.632A ','Toxic effect of contact with sea anemone, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169168,10,'T63.632D ','Toxic effect of contact with sea anemone, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169169,10,'T63.632S ','Toxic effect of contact with sea anemone, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169170,10,'T63.633A ','Toxic effect of contact with sea anemone, assault, initial encounter','Y','0000-00-00 00:00:00'),(169171,10,'T63.633D ','Toxic effect of contact with sea anemone, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169172,10,'T63.633S ','Toxic effect of contact with sea anemone, assault, sequela','Y','0000-00-00 00:00:00'),(169173,10,'T63.634A ','Toxic effect of contact with sea anemone, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169174,10,'T63.634D ','Toxic effect of contact with sea anemone, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169175,10,'T63.634S ','Toxic effect of contact with sea anemone, undetermined, sequela','Y','0000-00-00 00:00:00'),(169176,10,'T63.691A ','Toxic effect of contact with other venomous marine animals, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169177,10,'T63.691D ','Toxic effect of contact with other venomous marine animals, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169178,10,'T63.691S ','Toxic effect of contact with other venomous marine animals, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169179,10,'T63.692A ','Toxic effect of contact with other venomous marine animals, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169180,10,'T63.692D ','Toxic effect of contact with other venomous marine animals, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169181,10,'T63.692S ','Toxic effect of contact with other venomous marine animals, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169182,10,'T63.693A ','Toxic effect of contact with other venomous marine animals, assault, initial encounter','Y','0000-00-00 00:00:00'),(169183,10,'T63.693D ','Toxic effect of contact with other venomous marine animals, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169184,10,'T63.693S ','Toxic effect of contact with other venomous marine animals, assault, sequela','Y','0000-00-00 00:00:00'),(169185,10,'T63.694A ','Toxic effect of contact with other venomous marine animals, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169186,10,'T63.694D ','Toxic effect of contact with other venomous marine animals, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169187,10,'T63.694S ','Toxic effect of contact with other venomous marine animals, undetermined, sequela','Y','0000-00-00 00:00:00'),(169188,10,'T63.711A ','Toxic effect of contact with venomous marine plant, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169189,10,'T63.711D ','Toxic effect of contact with venomous marine plant, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169190,10,'T63.711S ','Toxic effect of contact with venomous marine plant, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169191,10,'T63.712A ','Toxic effect of contact with venomous marine plant, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169192,10,'T63.712D ','Toxic effect of contact with venomous marine plant, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169193,10,'T63.712S ','Toxic effect of contact with venomous marine plant, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169194,10,'T63.713A ','Toxic effect of contact with venomous marine plant, assault, initial encounter','Y','0000-00-00 00:00:00'),(169195,10,'T63.713D ','Toxic effect of contact with venomous marine plant, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169196,10,'T63.713S ','Toxic effect of contact with venomous marine plant, assault, sequela','Y','0000-00-00 00:00:00'),(169197,10,'T63.714A ','Toxic effect of contact with venomous marine plant, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169198,10,'T63.714D ','Toxic effect of contact with venomous marine plant, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169199,10,'T63.714S ','Toxic effect of contact with venomous marine plant, undetermined, sequela','Y','0000-00-00 00:00:00'),(169200,10,'T63.791A ','Toxic effect of contact with other venomous plant, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169201,10,'T63.791D ','Toxic effect of contact with other venomous plant, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169202,10,'T63.791S ','Toxic effect of contact with other venomous plant, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169203,10,'T63.792A ','Toxic effect of contact with other venomous plant, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169204,10,'T63.792D ','Toxic effect of contact with other venomous plant, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169205,10,'T63.792S ','Toxic effect of contact with other venomous plant, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169206,10,'T63.793A ','Toxic effect of contact with other venomous plant, assault, initial encounter','Y','0000-00-00 00:00:00'),(169207,10,'T63.793D ','Toxic effect of contact with other venomous plant, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169208,10,'T63.793S ','Toxic effect of contact with other venomous plant, assault, sequela','Y','0000-00-00 00:00:00'),(169209,10,'T63.794A ','Toxic effect of contact with other venomous plant, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169210,10,'T63.794D ','Toxic effect of contact with other venomous plant, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169211,10,'T63.794S ','Toxic effect of contact with other venomous plant, undetermined, sequela','Y','0000-00-00 00:00:00'),(169212,10,'T63.811A ','Toxic effect of contact with venomous frog, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169213,10,'T63.811D ','Toxic effect of contact with venomous frog, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169214,10,'T63.811S ','Toxic effect of contact with venomous frog, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169215,10,'T63.812A ','Toxic effect of contact with venomous frog, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169216,10,'T63.812D ','Toxic effect of contact with venomous frog, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169217,10,'T63.812S ','Toxic effect of contact with venomous frog, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169218,10,'T63.813A ','Toxic effect of contact with venomous frog, assault, initial encounter','Y','0000-00-00 00:00:00'),(169219,10,'T63.813D ','Toxic effect of contact with venomous frog, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169220,10,'T63.813S ','Toxic effect of contact with venomous frog, assault, sequela','Y','0000-00-00 00:00:00'),(169221,10,'T63.814A ','Toxic effect of contact with venomous frog, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169222,10,'T63.814D ','Toxic effect of contact with venomous frog, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169223,10,'T63.814S ','Toxic effect of contact with venomous frog, undetermined, sequela','Y','0000-00-00 00:00:00'),(169224,10,'T63.821A ','Toxic effect of contact with venomous toad, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169225,10,'T63.821D ','Toxic effect of contact with venomous toad, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169226,10,'T63.821S ','Toxic effect of contact with venomous toad, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169227,10,'T63.822A ','Toxic effect of contact with venomous toad, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169228,10,'T63.822D ','Toxic effect of contact with venomous toad, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169229,10,'T63.822S ','Toxic effect of contact with venomous toad, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169230,10,'T63.823A ','Toxic effect of contact with venomous toad, assault, initial encounter','Y','0000-00-00 00:00:00'),(169231,10,'T63.823D ','Toxic effect of contact with venomous toad, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169232,10,'T63.823S ','Toxic effect of contact with venomous toad, assault, sequela','Y','0000-00-00 00:00:00'),(169233,10,'T63.824A ','Toxic effect of contact with venomous toad, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169234,10,'T63.824D ','Toxic effect of contact with venomous toad, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169235,10,'T63.824S ','Toxic effect of contact with venomous toad, undetermined, sequela','Y','0000-00-00 00:00:00'),(169236,10,'T63.831A ','Toxic effect of contact with other venomous amphibian, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169237,10,'T63.831D ','Toxic effect of contact with other venomous amphibian, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169238,10,'T63.831S ','Toxic effect of contact with other venomous amphibian, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169239,10,'T63.832A ','Toxic effect of contact with other venomous amphibian, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169240,10,'T63.832D ','Toxic effect of contact with other venomous amphibian, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169241,10,'T63.832S ','Toxic effect of contact with other venomous amphibian, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169242,10,'T63.833A ','Toxic effect of contact with other venomous amphibian, assault, initial encounter','Y','0000-00-00 00:00:00'),(169243,10,'T63.833D ','Toxic effect of contact with other venomous amphibian, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169244,10,'T63.833S ','Toxic effect of contact with other venomous amphibian, assault, sequela','Y','0000-00-00 00:00:00'),(169245,10,'T63.834A ','Toxic effect of contact with other venomous amphibian, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169246,10,'T63.834D ','Toxic effect of contact with other venomous amphibian, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169247,10,'T63.834S ','Toxic effect of contact with other venomous amphibian, undetermined, sequela','Y','0000-00-00 00:00:00'),(169248,10,'T63.891A ','Toxic effect of contact with other venomous animals, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169249,10,'T63.891D ','Toxic effect of contact with other venomous animals, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169250,10,'T63.891S ','Toxic effect of contact with other venomous animals, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169251,10,'T63.892A ','Toxic effect of contact with other venomous animals, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169252,10,'T63.892D ','Toxic effect of contact with other venomous animals, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169253,10,'T63.892S ','Toxic effect of contact with other venomous animals, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169254,10,'T63.893A ','Toxic effect of contact with other venomous animals, assault, initial encounter','Y','0000-00-00 00:00:00'),(169255,10,'T63.893D ','Toxic effect of contact with other venomous animals, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169256,10,'T63.893S ','Toxic effect of contact with other venomous animals, assault, sequela','Y','0000-00-00 00:00:00'),(169257,10,'T63.894A ','Toxic effect of contact with other venomous animals, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169258,10,'T63.894D ','Toxic effect of contact with other venomous animals, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169259,10,'T63.894S ','Toxic effect of contact with other venomous animals, undetermined, sequela','Y','0000-00-00 00:00:00'),(169260,10,'T63.91XA ','Toxic effect of contact with unspecified venomous animal, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169261,10,'T63.91XD ','Toxic effect of contact with unspecified venomous animal, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169262,10,'T63.91XS ','Toxic effect of contact with unspecified venomous animal, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169263,10,'T63.92XA ','Toxic effect of contact with unspecified venomous animal, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169264,10,'T63.92XD ','Toxic effect of contact with unspecified venomous animal, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169265,10,'T63.92XS ','Toxic effect of contact with unspecified venomous animal, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169266,10,'T63.93XA ','Toxic effect of contact with unspecified venomous animal, assault, initial encounter','Y','0000-00-00 00:00:00'),(169267,10,'T63.93XD ','Toxic effect of contact with unspecified venomous animal, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169268,10,'T63.93XS ','Toxic effect of contact with unspecified venomous animal, assault, sequela','Y','0000-00-00 00:00:00'),(169269,10,'T63.94XA ','Toxic effect of contact with unspecified venomous animal, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169270,10,'T63.94XD ','Toxic effect of contact with unspecified venomous animal, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169271,10,'T63.94XS ','Toxic effect of contact with unspecified venomous animal, undetermined, sequela','Y','0000-00-00 00:00:00'),(169272,10,'T64.01XA ','Toxic effect of aflatoxin, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169273,10,'T64.01XD ','Toxic effect of aflatoxin, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169274,10,'T64.01XS ','Toxic effect of aflatoxin, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169275,10,'T64.02XA ','Toxic effect of aflatoxin, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169276,10,'T64.02XD ','Toxic effect of aflatoxin, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169277,10,'T64.02XS ','Toxic effect of aflatoxin, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169278,10,'T64.03XA ','Toxic effect of aflatoxin, assault, initial encounter','Y','0000-00-00 00:00:00'),(169279,10,'T64.03XD ','Toxic effect of aflatoxin, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169280,10,'T64.03XS ','Toxic effect of aflatoxin, assault, sequela','Y','0000-00-00 00:00:00'),(169281,10,'T64.04XA ','Toxic effect of aflatoxin, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169282,10,'T64.04XD ','Toxic effect of aflatoxin, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169283,10,'T64.04XS ','Toxic effect of aflatoxin, undetermined, sequela','Y','0000-00-00 00:00:00'),(169284,10,'T64.81XA ','Toxic effect of other mycotoxin food contaminants, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169285,10,'T64.81XD ','Toxic effect of other mycotoxin food contaminants, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169286,10,'T64.81XS ','Toxic effect of other mycotoxin food contaminants, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169287,10,'T64.82XA ','Toxic effect of other mycotoxin food contaminants, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169288,10,'T64.82XD ','Toxic effect of other mycotoxin food contaminants, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169289,10,'T64.82XS ','Toxic effect of other mycotoxin food contaminants, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169290,10,'T64.83XA ','Toxic effect of other mycotoxin food contaminants, assault, initial encounter','Y','0000-00-00 00:00:00'),(169291,10,'T64.83XD ','Toxic effect of other mycotoxin food contaminants, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169292,10,'T64.83XS ','Toxic effect of other mycotoxin food contaminants, assault, sequela','Y','0000-00-00 00:00:00'),(169293,10,'T64.84XA ','Toxic effect of other mycotoxin food contaminants, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169294,10,'T64.84XD ','Toxic effect of other mycotoxin food contaminants, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169295,10,'T64.84XS ','Toxic effect of other mycotoxin food contaminants, undetermined, sequela','Y','0000-00-00 00:00:00'),(169296,10,'T65.0X1A ','Toxic effect of cyanides, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169297,10,'T65.0X1D ','Toxic effect of cyanides, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169298,10,'T65.0X1S ','Toxic effect of cyanides, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169299,10,'T65.0X2A ','Toxic effect of cyanides, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169300,10,'T65.0X2D ','Toxic effect of cyanides, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169301,10,'T65.0X2S ','Toxic effect of cyanides, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169302,10,'T65.0X3A ','Toxic effect of cyanides, assault, initial encounter','Y','0000-00-00 00:00:00'),(169303,10,'T65.0X3D ','Toxic effect of cyanides, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169304,10,'T65.0X3S ','Toxic effect of cyanides, assault, sequela','Y','0000-00-00 00:00:00'),(169305,10,'T65.0X4A ','Toxic effect of cyanides, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169306,10,'T65.0X4D ','Toxic effect of cyanides, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169307,10,'T65.0X4S ','Toxic effect of cyanides, undetermined, sequela','Y','0000-00-00 00:00:00'),(169308,10,'T65.1X1A ','Toxic effect of strychnine and its salts, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169309,10,'T65.1X1D ','Toxic effect of strychnine and its salts, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169310,10,'T65.1X1S ','Toxic effect of strychnine and its salts, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169311,10,'T65.1X2A ','Toxic effect of strychnine and its salts, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169312,10,'T65.1X2D ','Toxic effect of strychnine and its salts, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169313,10,'T65.1X2S ','Toxic effect of strychnine and its salts, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169314,10,'T65.1X3A ','Toxic effect of strychnine and its salts, assault, initial encounter','Y','0000-00-00 00:00:00'),(169315,10,'T65.1X3D ','Toxic effect of strychnine and its salts, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169316,10,'T65.1X3S ','Toxic effect of strychnine and its salts, assault, sequela','Y','0000-00-00 00:00:00'),(169317,10,'T65.1X4A ','Toxic effect of strychnine and its salts, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169318,10,'T65.1X4D ','Toxic effect of strychnine and its salts, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169319,10,'T65.1X4S ','Toxic effect of strychnine and its salts, undetermined, sequela','Y','0000-00-00 00:00:00'),(169320,10,'T65.211A ','Toxic effect of chewing tobacco, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169321,10,'T65.211D ','Toxic effect of chewing tobacco, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169322,10,'T65.211S ','Toxic effect of chewing tobacco, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169323,10,'T65.212A ','Toxic effect of chewing tobacco, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169324,10,'T65.212D ','Toxic effect of chewing tobacco, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169325,10,'T65.212S ','Toxic effect of chewing tobacco, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169326,10,'T65.213A ','Toxic effect of chewing tobacco, assault, initial encounter','Y','0000-00-00 00:00:00'),(169327,10,'T65.213D ','Toxic effect of chewing tobacco, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169328,10,'T65.213S ','Toxic effect of chewing tobacco, assault, sequela','Y','0000-00-00 00:00:00'),(169329,10,'T65.214A ','Toxic effect of chewing tobacco, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169330,10,'T65.214D ','Toxic effect of chewing tobacco, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169331,10,'T65.214S ','Toxic effect of chewing tobacco, undetermined, sequela','Y','0000-00-00 00:00:00'),(169332,10,'T65.221A ','Toxic effect of tobacco cigarettes, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169333,10,'T65.221D ','Toxic effect of tobacco cigarettes, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169334,10,'T65.221S ','Toxic effect of tobacco cigarettes, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169335,10,'T65.222A ','Toxic effect of tobacco cigarettes, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169336,10,'T65.222D ','Toxic effect of tobacco cigarettes, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169337,10,'T65.222S ','Toxic effect of tobacco cigarettes, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169338,10,'T65.223A ','Toxic effect of tobacco cigarettes, assault, initial encounter','Y','0000-00-00 00:00:00'),(169339,10,'T65.223D ','Toxic effect of tobacco cigarettes, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169340,10,'T65.223S ','Toxic effect of tobacco cigarettes, assault, sequela','Y','0000-00-00 00:00:00'),(169341,10,'T65.224A ','Toxic effect of tobacco cigarettes, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169342,10,'T65.224D ','Toxic effect of tobacco cigarettes, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169343,10,'T65.224S ','Toxic effect of tobacco cigarettes, undetermined, sequela','Y','0000-00-00 00:00:00'),(169344,10,'T65.291A ','Toxic effect of other tobacco and nicotine, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169345,10,'T65.291D ','Toxic effect of other tobacco and nicotine, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169346,10,'T65.291S ','Toxic effect of other tobacco and nicotine, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169347,10,'T65.292A ','Toxic effect of other tobacco and nicotine, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169348,10,'T65.292D ','Toxic effect of other tobacco and nicotine, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169349,10,'T65.292S ','Toxic effect of other tobacco and nicotine, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169350,10,'T65.293A ','Toxic effect of other tobacco and nicotine, assault, initial encounter','Y','0000-00-00 00:00:00'),(169351,10,'T65.293D ','Toxic effect of other tobacco and nicotine, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169352,10,'T65.293S ','Toxic effect of other tobacco and nicotine, assault, sequela','Y','0000-00-00 00:00:00'),(169353,10,'T65.294A ','Toxic effect of other tobacco and nicotine, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169354,10,'T65.294D ','Toxic effect of other tobacco and nicotine, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169355,10,'T65.294S ','Toxic effect of other tobacco and nicotine, undetermined, sequela','Y','0000-00-00 00:00:00'),(169356,10,'T65.3X1A ','Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169357,10,'T65.3X1D ','Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169358,10,'T65.3X1S ','Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169359,10,'T65.3X2A ','Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169360,10,'T65.3X2D ','Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169361,10,'T65.3X2S ','Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169362,10,'T65.3X3A ','Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, assault, initial encounter','Y','0000-00-00 00:00:00'),(169363,10,'T65.3X3D ','Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169364,10,'T65.3X3S ','Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, assault, sequela','Y','0000-00-00 00:00:00'),(169365,10,'T65.3X4A ','Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169366,10,'T65.3X4D ','Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169367,10,'T65.3X4S ','Toxic effect of nitroderivatives and aminoderivatives of benzene and its homologues, undetermined, sequela','Y','0000-00-00 00:00:00'),(169368,10,'T65.4X1A ','Toxic effect of carbon disulfide, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169369,10,'T65.4X1D ','Toxic effect of carbon disulfide, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169370,10,'T65.4X1S ','Toxic effect of carbon disulfide, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169371,10,'T65.4X2A ','Toxic effect of carbon disulfide, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169372,10,'T65.4X2D ','Toxic effect of carbon disulfide, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169373,10,'T65.4X2S ','Toxic effect of carbon disulfide, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169374,10,'T65.4X3A ','Toxic effect of carbon disulfide, assault, initial encounter','Y','0000-00-00 00:00:00'),(169375,10,'T65.4X3D ','Toxic effect of carbon disulfide, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169376,10,'T65.4X3S ','Toxic effect of carbon disulfide, assault, sequela','Y','0000-00-00 00:00:00'),(169377,10,'T65.4X4A ','Toxic effect of carbon disulfide, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169378,10,'T65.4X4D ','Toxic effect of carbon disulfide, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169379,10,'T65.4X4S ','Toxic effect of carbon disulfide, undetermined, sequela','Y','0000-00-00 00:00:00'),(169380,10,'T65.5X1A ','Toxic effect of nitroglycerin and other nitric acids and esters, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169381,10,'T65.5X1D ','Toxic effect of nitroglycerin and other nitric acids and esters, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169382,10,'T65.5X1S ','Toxic effect of nitroglycerin and other nitric acids and esters, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169383,10,'T65.5X2A ','Toxic effect of nitroglycerin and other nitric acids and esters, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169384,10,'T65.5X2D ','Toxic effect of nitroglycerin and other nitric acids and esters, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169385,10,'T65.5X2S ','Toxic effect of nitroglycerin and other nitric acids and esters, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169386,10,'T65.5X3A ','Toxic effect of nitroglycerin and other nitric acids and esters, assault, initial encounter','Y','0000-00-00 00:00:00'),(169387,10,'T65.5X3D ','Toxic effect of nitroglycerin and other nitric acids and esters, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169388,10,'T65.5X3S ','Toxic effect of nitroglycerin and other nitric acids and esters, assault, sequela','Y','0000-00-00 00:00:00'),(169389,10,'T65.5X4A ','Toxic effect of nitroglycerin and other nitric acids and esters, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169390,10,'T65.5X4D ','Toxic effect of nitroglycerin and other nitric acids and esters, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169391,10,'T65.5X4S ','Toxic effect of nitroglycerin and other nitric acids and esters, undetermined, sequela','Y','0000-00-00 00:00:00'),(169392,10,'T65.6X1A ','Toxic effect of paints and dyes, not elsewhere classified, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169393,10,'T65.6X1D ','Toxic effect of paints and dyes, not elsewhere classified, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169394,10,'T65.6X1S ','Toxic effect of paints and dyes, not elsewhere classified, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169395,10,'T65.6X2A ','Toxic effect of paints and dyes, not elsewhere classified, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169396,10,'T65.6X2D ','Toxic effect of paints and dyes, not elsewhere classified, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169397,10,'T65.6X2S ','Toxic effect of paints and dyes, not elsewhere classified, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169398,10,'T65.6X3A ','Toxic effect of paints and dyes, not elsewhere classified, assault, initial encounter','Y','0000-00-00 00:00:00'),(169399,10,'T65.6X3D ','Toxic effect of paints and dyes, not elsewhere classified, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169400,10,'T65.6X3S ','Toxic effect of paints and dyes, not elsewhere classified, assault, sequela','Y','0000-00-00 00:00:00'),(169401,10,'T65.6X4A ','Toxic effect of paints and dyes, not elsewhere classified, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169402,10,'T65.6X4D ','Toxic effect of paints and dyes, not elsewhere classified, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169403,10,'T65.6X4S ','Toxic effect of paints and dyes, not elsewhere classified, undetermined, sequela','Y','0000-00-00 00:00:00'),(169404,10,'T65.811A ','Toxic effect of latex, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169405,10,'T65.811D ','Toxic effect of latex, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169406,10,'T65.811S ','Toxic effect of latex, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169407,10,'T65.812A ','Toxic effect of latex, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169408,10,'T65.812D ','Toxic effect of latex, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169409,10,'T65.812S ','Toxic effect of latex, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169410,10,'T65.813A ','Toxic effect of latex, assault, initial encounter','Y','0000-00-00 00:00:00'),(169411,10,'T65.813D ','Toxic effect of latex, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169412,10,'T65.813S ','Toxic effect of latex, assault, sequela','Y','0000-00-00 00:00:00'),(169413,10,'T65.814A ','Toxic effect of latex, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169414,10,'T65.814D ','Toxic effect of latex, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169415,10,'T65.814S ','Toxic effect of latex, undetermined, sequela','Y','0000-00-00 00:00:00'),(169416,10,'T65.821A ','Toxic effect of harmful algae and algae toxins, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169417,10,'T65.821D ','Toxic effect of harmful algae and algae toxins, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169418,10,'T65.821S ','Toxic effect of harmful algae and algae toxins, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169419,10,'T65.822A ','Toxic effect of harmful algae and algae toxins, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169420,10,'T65.822D ','Toxic effect of harmful algae and algae toxins, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169421,10,'T65.822S ','Toxic effect of harmful algae and algae toxins, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169422,10,'T65.823A ','Toxic effect of harmful algae and algae toxins, assault, initial encounter','Y','0000-00-00 00:00:00'),(169423,10,'T65.823D ','Toxic effect of harmful algae and algae toxins, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169424,10,'T65.823S ','Toxic effect of harmful algae and algae toxins, assault, sequela','Y','0000-00-00 00:00:00'),(169425,10,'T65.824A ','Toxic effect of harmful algae and algae toxins, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169426,10,'T65.824D ','Toxic effect of harmful algae and algae toxins, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169427,10,'T65.824S ','Toxic effect of harmful algae and algae toxins, undetermined, sequela','Y','0000-00-00 00:00:00'),(169428,10,'T65.831A ','Toxic effect of fiberglass, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169429,10,'T65.831D ','Toxic effect of fiberglass, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169430,10,'T65.831S ','Toxic effect of fiberglass, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169431,10,'T65.832A ','Toxic effect of fiberglass, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169432,10,'T65.832D ','Toxic effect of fiberglass, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169433,10,'T65.832S ','Toxic effect of fiberglass, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169434,10,'T65.833A ','Toxic effect of fiberglass, assault, initial encounter','Y','0000-00-00 00:00:00'),(169435,10,'T65.833D ','Toxic effect of fiberglass, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169436,10,'T65.833S ','Toxic effect of fiberglass, assault, sequela','Y','0000-00-00 00:00:00'),(169437,10,'T65.834A ','Toxic effect of fiberglass, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169438,10,'T65.834D ','Toxic effect of fiberglass, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169439,10,'T65.834S ','Toxic effect of fiberglass, undetermined, sequela','Y','0000-00-00 00:00:00'),(169440,10,'T65.891A ','Toxic effect of other specified substances, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169441,10,'T65.891D ','Toxic effect of other specified substances, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169442,10,'T65.891S ','Toxic effect of other specified substances, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169443,10,'T65.892A ','Toxic effect of other specified substances, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169444,10,'T65.892D ','Toxic effect of other specified substances, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169445,10,'T65.892S ','Toxic effect of other specified substances, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169446,10,'T65.893A ','Toxic effect of other specified substances, assault, initial encounter','Y','0000-00-00 00:00:00'),(169447,10,'T65.893D ','Toxic effect of other specified substances, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169448,10,'T65.893S ','Toxic effect of other specified substances, assault, sequela','Y','0000-00-00 00:00:00'),(169449,10,'T65.894A ','Toxic effect of other specified substances, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169450,10,'T65.894D ','Toxic effect of other specified substances, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169451,10,'T65.894S ','Toxic effect of other specified substances, undetermined, sequela','Y','0000-00-00 00:00:00'),(169452,10,'T65.91XA ','Toxic effect of unspecified substance, accidental (unintentional), initial encounter','Y','0000-00-00 00:00:00'),(169453,10,'T65.91XD ','Toxic effect of unspecified substance, accidental (unintentional), subsequent encounter','Y','0000-00-00 00:00:00'),(169454,10,'T65.91XS ','Toxic effect of unspecified substance, accidental (unintentional), sequela','Y','0000-00-00 00:00:00'),(169455,10,'T65.92XA ','Toxic effect of unspecified substance, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169456,10,'T65.92XD ','Toxic effect of unspecified substance, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169457,10,'T65.92XS ','Toxic effect of unspecified substance, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169458,10,'T65.93XA ','Toxic effect of unspecified substance, assault, initial encounter','Y','0000-00-00 00:00:00'),(169459,10,'T65.93XD ','Toxic effect of unspecified substance, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169460,10,'T65.93XS ','Toxic effect of unspecified substance, assault, sequela','Y','0000-00-00 00:00:00'),(169461,10,'T65.94XA ','Toxic effect of unspecified substance, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169462,10,'T65.94XD ','Toxic effect of unspecified substance, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169463,10,'T65.94XS ','Toxic effect of unspecified substance, undetermined, sequela','Y','0000-00-00 00:00:00'),(169464,10,'T66.XXXA ','Radiation sickness, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(169465,10,'T66.XXXD ','Radiation sickness, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(169466,10,'T66.XXXS ','Radiation sickness, unspecified, sequela','Y','0000-00-00 00:00:00'),(169467,10,'T67.01XA ','Heatstroke and sunstroke, initial encounter','Y','0000-00-00 00:00:00'),(169468,10,'T67.01XD ','Heatstroke and sunstroke, subsequent encounter','Y','0000-00-00 00:00:00'),(169469,10,'T67.01XS ','Heatstroke and sunstroke, sequela','Y','0000-00-00 00:00:00'),(169470,10,'T67.02XA ','Exertional heatstroke, initial encounter','Y','0000-00-00 00:00:00'),(169471,10,'T67.02XD ','Exertional heatstroke, subsequent encounter','Y','0000-00-00 00:00:00'),(169472,10,'T67.02XS ','Exertional heatstroke, sequela','Y','0000-00-00 00:00:00'),(169473,10,'T67.09XA ','Other heatstroke and sunstroke, initial encounter','Y','0000-00-00 00:00:00'),(169474,10,'T67.09XD ','Other heatstroke and sunstroke, subsequent encounter','Y','0000-00-00 00:00:00'),(169475,10,'T67.09XS ','Other heatstroke and sunstroke, sequela','Y','0000-00-00 00:00:00'),(169476,10,'T67.1XXA ','Heat syncope, initial encounter','Y','0000-00-00 00:00:00'),(169477,10,'T67.1XXD ','Heat syncope, subsequent encounter','Y','0000-00-00 00:00:00'),(169478,10,'T67.1XXS ','Heat syncope, sequela','Y','0000-00-00 00:00:00'),(169479,10,'T67.2XXA ','Heat cramp, initial encounter','Y','0000-00-00 00:00:00'),(169480,10,'T67.2XXD ','Heat cramp, subsequent encounter','Y','0000-00-00 00:00:00'),(169481,10,'T67.2XXS ','Heat cramp, sequela','Y','0000-00-00 00:00:00'),(169482,10,'T67.3XXA ','Heat exhaustion, anhydrotic, initial encounter','Y','0000-00-00 00:00:00'),(169483,10,'T67.3XXD ','Heat exhaustion, anhydrotic, subsequent encounter','Y','0000-00-00 00:00:00'),(169484,10,'T67.3XXS ','Heat exhaustion, anhydrotic, sequela','Y','0000-00-00 00:00:00'),(169485,10,'T67.4XXA ','Heat exhaustion due to salt depletion, initial encounter','Y','0000-00-00 00:00:00'),(169486,10,'T67.4XXD ','Heat exhaustion due to salt depletion, subsequent encounter','Y','0000-00-00 00:00:00'),(169487,10,'T67.4XXS ','Heat exhaustion due to salt depletion, sequela','Y','0000-00-00 00:00:00'),(169488,10,'T67.5XXA ','Heat exhaustion, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(169489,10,'T67.5XXD ','Heat exhaustion, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(169490,10,'T67.5XXS ','Heat exhaustion, unspecified, sequela','Y','0000-00-00 00:00:00'),(169491,10,'T67.6XXA ','Heat fatigue, transient, initial encounter','Y','0000-00-00 00:00:00'),(169492,10,'T67.6XXD ','Heat fatigue, transient, subsequent encounter','Y','0000-00-00 00:00:00'),(169493,10,'T67.6XXS ','Heat fatigue, transient, sequela','Y','0000-00-00 00:00:00'),(169494,10,'T67.7XXA ','Heat edema, initial encounter','Y','0000-00-00 00:00:00'),(169495,10,'T67.7XXD ','Heat edema, subsequent encounter','Y','0000-00-00 00:00:00'),(169496,10,'T67.7XXS ','Heat edema, sequela','Y','0000-00-00 00:00:00'),(169497,10,'T67.8XXA ','Other effects of heat and light, initial encounter','Y','0000-00-00 00:00:00'),(169498,10,'T67.8XXD ','Other effects of heat and light, subsequent encounter','Y','0000-00-00 00:00:00'),(169499,10,'T67.8XXS ','Other effects of heat and light, sequela','Y','0000-00-00 00:00:00'),(169500,10,'T67.9XXA ','Effect of heat and light, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(169501,10,'T67.9XXD ','Effect of heat and light, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(169502,10,'T67.9XXS ','Effect of heat and light, unspecified, sequela','Y','0000-00-00 00:00:00'),(169503,10,'T68.XXXA ','Hypothermia, initial encounter','Y','0000-00-00 00:00:00'),(169504,10,'T68.XXXD ','Hypothermia, subsequent encounter','Y','0000-00-00 00:00:00'),(169505,10,'T68.XXXS ','Hypothermia, sequela','Y','0000-00-00 00:00:00'),(169506,10,'T69.011A ','Immersion hand, right hand, initial encounter','Y','0000-00-00 00:00:00'),(169507,10,'T69.011D ','Immersion hand, right hand, subsequent encounter','Y','0000-00-00 00:00:00'),(169508,10,'T69.011S ','Immersion hand, right hand, sequela','Y','0000-00-00 00:00:00'),(169509,10,'T69.012A ','Immersion hand, left hand, initial encounter','Y','0000-00-00 00:00:00'),(169510,10,'T69.012D ','Immersion hand, left hand, subsequent encounter','Y','0000-00-00 00:00:00'),(169511,10,'T69.012S ','Immersion hand, left hand, sequela','Y','0000-00-00 00:00:00'),(169512,10,'T69.019A ','Immersion hand, unspecified hand, initial encounter','Y','0000-00-00 00:00:00'),(169513,10,'T69.019D ','Immersion hand, unspecified hand, subsequent encounter','Y','0000-00-00 00:00:00'),(169514,10,'T69.019S ','Immersion hand, unspecified hand, sequela','Y','0000-00-00 00:00:00'),(169515,10,'T69.021A ','Immersion foot, right foot, initial encounter','Y','0000-00-00 00:00:00'),(169516,10,'T69.021D ','Immersion foot, right foot, subsequent encounter','Y','0000-00-00 00:00:00'),(169517,10,'T69.021S ','Immersion foot, right foot, sequela','Y','0000-00-00 00:00:00'),(169518,10,'T69.022A ','Immersion foot, left foot, initial encounter','Y','0000-00-00 00:00:00'),(169519,10,'T69.022D ','Immersion foot, left foot, subsequent encounter','Y','0000-00-00 00:00:00'),(169520,10,'T69.022S ','Immersion foot, left foot, sequela','Y','0000-00-00 00:00:00'),(169521,10,'T69.029A ','Immersion foot, unspecified foot, initial encounter','Y','0000-00-00 00:00:00'),(169522,10,'T69.029D ','Immersion foot, unspecified foot, subsequent encounter','Y','0000-00-00 00:00:00'),(169523,10,'T69.029S ','Immersion foot, unspecified foot, sequela','Y','0000-00-00 00:00:00'),(169524,10,'T69.1XXA ','Chilblains, initial encounter','Y','0000-00-00 00:00:00'),(169525,10,'T69.1XXD ','Chilblains, subsequent encounter','Y','0000-00-00 00:00:00'),(169526,10,'T69.1XXS ','Chilblains, sequela','Y','0000-00-00 00:00:00'),(169527,10,'T69.8XXA ','Other specified effects of reduced temperature, initial encounter','Y','0000-00-00 00:00:00'),(169528,10,'T69.8XXD ','Other specified effects of reduced temperature, subsequent encounter','Y','0000-00-00 00:00:00'),(169529,10,'T69.8XXS ','Other specified effects of reduced temperature, sequela','Y','0000-00-00 00:00:00'),(169530,10,'T69.9XXA ','Effect of reduced temperature, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(169531,10,'T69.9XXD ','Effect of reduced temperature, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(169532,10,'T69.9XXS ','Effect of reduced temperature, unspecified, sequela','Y','0000-00-00 00:00:00'),(169533,10,'T70.0XXA ','Otitic barotrauma, initial encounter','Y','0000-00-00 00:00:00'),(169534,10,'T70.0XXD ','Otitic barotrauma, subsequent encounter','Y','0000-00-00 00:00:00'),(169535,10,'T70.0XXS ','Otitic barotrauma, sequela','Y','0000-00-00 00:00:00'),(169536,10,'T70.1XXA ','Sinus barotrauma, initial encounter','Y','0000-00-00 00:00:00'),(169537,10,'T70.1XXD ','Sinus barotrauma, subsequent encounter','Y','0000-00-00 00:00:00'),(169538,10,'T70.1XXS ','Sinus barotrauma, sequela','Y','0000-00-00 00:00:00'),(169539,10,'T70.20XA ','Unspecified effects of high altitude, initial encounter','Y','0000-00-00 00:00:00'),(169540,10,'T70.20XD ','Unspecified effects of high altitude, subsequent encounter','Y','0000-00-00 00:00:00'),(169541,10,'T70.20XS ','Unspecified effects of high altitude, sequela','Y','0000-00-00 00:00:00'),(169542,10,'T70.29XA ','Other effects of high altitude, initial encounter','Y','0000-00-00 00:00:00'),(169543,10,'T70.29XD ','Other effects of high altitude, subsequent encounter','Y','0000-00-00 00:00:00'),(169544,10,'T70.29XS ','Other effects of high altitude, sequela','Y','0000-00-00 00:00:00'),(169545,10,'T70.3XXA ','Caisson disease [decompression sickness], initial encounter','Y','0000-00-00 00:00:00'),(169546,10,'T70.3XXD ','Caisson disease [decompression sickness], subsequent encounter','Y','0000-00-00 00:00:00'),(169547,10,'T70.3XXS ','Caisson disease [decompression sickness], sequela','Y','0000-00-00 00:00:00'),(169548,10,'T70.4XXA ','Effects of high-pressure fluids, initial encounter','Y','0000-00-00 00:00:00'),(169549,10,'T70.4XXD ','Effects of high-pressure fluids, subsequent encounter','Y','0000-00-00 00:00:00'),(169550,10,'T70.4XXS ','Effects of high-pressure fluids, sequela','Y','0000-00-00 00:00:00'),(169551,10,'T70.8XXA ','Other effects of air pressure and water pressure, initial encounter','Y','0000-00-00 00:00:00'),(169552,10,'T70.8XXD ','Other effects of air pressure and water pressure, subsequent encounter','Y','0000-00-00 00:00:00'),(169553,10,'T70.8XXS ','Other effects of air pressure and water pressure, sequela','Y','0000-00-00 00:00:00'),(169554,10,'T70.9XXA ','Effect of air pressure and water pressure, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(169555,10,'T70.9XXD ','Effect of air pressure and water pressure, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(169556,10,'T70.9XXS ','Effect of air pressure and water pressure, unspecified, sequela','Y','0000-00-00 00:00:00'),(169557,10,'T71.111A ','Asphyxiation due to smothering under pillow, accidental, initial encounter','Y','0000-00-00 00:00:00'),(169558,10,'T71.111D ','Asphyxiation due to smothering under pillow, accidental, subsequent encounter','Y','0000-00-00 00:00:00'),(169559,10,'T71.111S ','Asphyxiation due to smothering under pillow, accidental, sequela','Y','0000-00-00 00:00:00'),(169560,10,'T71.112A ','Asphyxiation due to smothering under pillow, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169561,10,'T71.112D ','Asphyxiation due to smothering under pillow, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169562,10,'T71.112S ','Asphyxiation due to smothering under pillow, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169563,10,'T71.113A ','Asphyxiation due to smothering under pillow, assault, initial encounter','Y','0000-00-00 00:00:00'),(169564,10,'T71.113D ','Asphyxiation due to smothering under pillow, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169565,10,'T71.113S ','Asphyxiation due to smothering under pillow, assault, sequela','Y','0000-00-00 00:00:00'),(169566,10,'T71.114A ','Asphyxiation due to smothering under pillow, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169567,10,'T71.114D ','Asphyxiation due to smothering under pillow, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169568,10,'T71.114S ','Asphyxiation due to smothering under pillow, undetermined, sequela','Y','0000-00-00 00:00:00'),(169569,10,'T71.121A ','Asphyxiation due to plastic bag, accidental, initial encounter','Y','0000-00-00 00:00:00'),(169570,10,'T71.121D ','Asphyxiation due to plastic bag, accidental, subsequent encounter','Y','0000-00-00 00:00:00'),(169571,10,'T71.121S ','Asphyxiation due to plastic bag, accidental, sequela','Y','0000-00-00 00:00:00'),(169572,10,'T71.122A ','Asphyxiation due to plastic bag, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169573,10,'T71.122D ','Asphyxiation due to plastic bag, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169574,10,'T71.122S ','Asphyxiation due to plastic bag, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169575,10,'T71.123A ','Asphyxiation due to plastic bag, assault, initial encounter','Y','0000-00-00 00:00:00'),(169576,10,'T71.123D ','Asphyxiation due to plastic bag, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169577,10,'T71.123S ','Asphyxiation due to plastic bag, assault, sequela','Y','0000-00-00 00:00:00'),(169578,10,'T71.124A ','Asphyxiation due to plastic bag, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169579,10,'T71.124D ','Asphyxiation due to plastic bag, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169580,10,'T71.124S ','Asphyxiation due to plastic bag, undetermined, sequela','Y','0000-00-00 00:00:00'),(169581,10,'T71.131A ','Asphyxiation due to being trapped in bed linens, accidental, initial encounter','Y','0000-00-00 00:00:00'),(169582,10,'T71.131D ','Asphyxiation due to being trapped in bed linens, accidental, subsequent encounter','Y','0000-00-00 00:00:00'),(169583,10,'T71.131S ','Asphyxiation due to being trapped in bed linens, accidental, sequela','Y','0000-00-00 00:00:00'),(169584,10,'T71.132A ','Asphyxiation due to being trapped in bed linens, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169585,10,'T71.132D ','Asphyxiation due to being trapped in bed linens, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169586,10,'T71.132S ','Asphyxiation due to being trapped in bed linens, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169587,10,'T71.133A ','Asphyxiation due to being trapped in bed linens, assault, initial encounter','Y','0000-00-00 00:00:00'),(169588,10,'T71.133D ','Asphyxiation due to being trapped in bed linens, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169589,10,'T71.133S ','Asphyxiation due to being trapped in bed linens, assault, sequela','Y','0000-00-00 00:00:00'),(169590,10,'T71.134A ','Asphyxiation due to being trapped in bed linens, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169591,10,'T71.134D ','Asphyxiation due to being trapped in bed linens, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169592,10,'T71.134S ','Asphyxiation due to being trapped in bed linens, undetermined, sequela','Y','0000-00-00 00:00:00'),(169593,10,'T71.141A ','Asphyxiation due to smothering under another person\'s body (in bed), accidental, initial encounter','Y','0000-00-00 00:00:00'),(169594,10,'T71.141D ','Asphyxiation due to smothering under another person\'s body (in bed), accidental, subsequent encounter','Y','0000-00-00 00:00:00'),(169595,10,'T71.141S ','Asphyxiation due to smothering under another person\'s body (in bed), accidental, sequela','Y','0000-00-00 00:00:00'),(169596,10,'T71.143A ','Asphyxiation due to smothering under another person\'s body (in bed), assault, initial encounter','Y','0000-00-00 00:00:00'),(169597,10,'T71.143D ','Asphyxiation due to smothering under another person\'s body (in bed), assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169598,10,'T71.143S ','Asphyxiation due to smothering under another person\'s body (in bed), assault, sequela','Y','0000-00-00 00:00:00'),(169599,10,'T71.144A ','Asphyxiation due to smothering under another person\'s body (in bed), undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169600,10,'T71.144D ','Asphyxiation due to smothering under another person\'s body (in bed), undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169601,10,'T71.144S ','Asphyxiation due to smothering under another person\'s body (in bed), undetermined, sequela','Y','0000-00-00 00:00:00'),(169602,10,'T71.151A ','Asphyxiation due to smothering in furniture, accidental, initial encounter','Y','0000-00-00 00:00:00'),(169603,10,'T71.151D ','Asphyxiation due to smothering in furniture, accidental, subsequent encounter','Y','0000-00-00 00:00:00'),(169604,10,'T71.151S ','Asphyxiation due to smothering in furniture, accidental, sequela','Y','0000-00-00 00:00:00'),(169605,10,'T71.152A ','Asphyxiation due to smothering in furniture, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169606,10,'T71.152D ','Asphyxiation due to smothering in furniture, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169607,10,'T71.152S ','Asphyxiation due to smothering in furniture, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169608,10,'T71.153A ','Asphyxiation due to smothering in furniture, assault, initial encounter','Y','0000-00-00 00:00:00'),(169609,10,'T71.153D ','Asphyxiation due to smothering in furniture, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169610,10,'T71.153S ','Asphyxiation due to smothering in furniture, assault, sequela','Y','0000-00-00 00:00:00'),(169611,10,'T71.154A ','Asphyxiation due to smothering in furniture, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169612,10,'T71.154D ','Asphyxiation due to smothering in furniture, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169613,10,'T71.154S ','Asphyxiation due to smothering in furniture, undetermined, sequela','Y','0000-00-00 00:00:00'),(169614,10,'T71.161A ','Asphyxiation due to hanging, accidental, initial encounter','Y','0000-00-00 00:00:00'),(169615,10,'T71.161D ','Asphyxiation due to hanging, accidental, subsequent encounter','Y','0000-00-00 00:00:00'),(169616,10,'T71.161S ','Asphyxiation due to hanging, accidental, sequela','Y','0000-00-00 00:00:00'),(169617,10,'T71.162A ','Asphyxiation due to hanging, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169618,10,'T71.162D ','Asphyxiation due to hanging, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169619,10,'T71.162S ','Asphyxiation due to hanging, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169620,10,'T71.163A ','Asphyxiation due to hanging, assault, initial encounter','Y','0000-00-00 00:00:00'),(169621,10,'T71.163D ','Asphyxiation due to hanging, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169622,10,'T71.163S ','Asphyxiation due to hanging, assault, sequela','Y','0000-00-00 00:00:00'),(169623,10,'T71.164A ','Asphyxiation due to hanging, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169624,10,'T71.164D ','Asphyxiation due to hanging, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169625,10,'T71.164S ','Asphyxiation due to hanging, undetermined, sequela','Y','0000-00-00 00:00:00'),(169626,10,'T71.191A ','Asphyxiation due to mechanical threat to breathing due to other causes, accidental, initial encounter','Y','0000-00-00 00:00:00'),(169627,10,'T71.191D ','Asphyxiation due to mechanical threat to breathing due to other causes, accidental, subsequent encounter','Y','0000-00-00 00:00:00'),(169628,10,'T71.191S ','Asphyxiation due to mechanical threat to breathing due to other causes, accidental, sequela','Y','0000-00-00 00:00:00'),(169629,10,'T71.192A ','Asphyxiation due to mechanical threat to breathing due to other causes, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169630,10,'T71.192D ','Asphyxiation due to mechanical threat to breathing due to other causes, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169631,10,'T71.192S ','Asphyxiation due to mechanical threat to breathing due to other causes, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169632,10,'T71.193A ','Asphyxiation due to mechanical threat to breathing due to other causes, assault, initial encounter','Y','0000-00-00 00:00:00'),(169633,10,'T71.193D ','Asphyxiation due to mechanical threat to breathing due to other causes, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169634,10,'T71.193S ','Asphyxiation due to mechanical threat to breathing due to other causes, assault, sequela','Y','0000-00-00 00:00:00'),(169635,10,'T71.194A ','Asphyxiation due to mechanical threat to breathing due to other causes, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169636,10,'T71.194D ','Asphyxiation due to mechanical threat to breathing due to other causes, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169637,10,'T71.194S ','Asphyxiation due to mechanical threat to breathing due to other causes, undetermined, sequela','Y','0000-00-00 00:00:00'),(169638,10,'T71.20XA ','Asphyxiation due to systemic oxygen deficiency due to low oxygen content in ambient air due to unspecified cause, initial encounter','Y','0000-00-00 00:00:00'),(169639,10,'T71.20XD ','Asphyxiation due to systemic oxygen deficiency due to low oxygen content in ambient air due to unspecified cause, subsequent encounter','Y','0000-00-00 00:00:00'),(169640,10,'T71.20XS ','Asphyxiation due to systemic oxygen deficiency due to low oxygen content in ambient air due to unspecified cause, sequela','Y','0000-00-00 00:00:00'),(169641,10,'T71.21XA ','Asphyxiation due to cave-in or falling earth, initial encounter','Y','0000-00-00 00:00:00'),(169642,10,'T71.21XD ','Asphyxiation due to cave-in or falling earth, subsequent encounter','Y','0000-00-00 00:00:00'),(169643,10,'T71.21XS ','Asphyxiation due to cave-in or falling earth, sequela','Y','0000-00-00 00:00:00'),(169644,10,'T71.221A ','Asphyxiation due to being trapped in a car trunk, accidental, initial encounter','Y','0000-00-00 00:00:00'),(169645,10,'T71.221D ','Asphyxiation due to being trapped in a car trunk, accidental, subsequent encounter','Y','0000-00-00 00:00:00'),(169646,10,'T71.221S ','Asphyxiation due to being trapped in a car trunk, accidental, sequela','Y','0000-00-00 00:00:00'),(169647,10,'T71.222A ','Asphyxiation due to being trapped in a car trunk, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169648,10,'T71.222D ','Asphyxiation due to being trapped in a car trunk, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169649,10,'T71.222S ','Asphyxiation due to being trapped in a car trunk, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169650,10,'T71.223A ','Asphyxiation due to being trapped in a car trunk, assault, initial encounter','Y','0000-00-00 00:00:00'),(169651,10,'T71.223D ','Asphyxiation due to being trapped in a car trunk, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169652,10,'T71.223S ','Asphyxiation due to being trapped in a car trunk, assault, sequela','Y','0000-00-00 00:00:00'),(169653,10,'T71.224A ','Asphyxiation due to being trapped in a car trunk, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169654,10,'T71.224D ','Asphyxiation due to being trapped in a car trunk, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169655,10,'T71.224S ','Asphyxiation due to being trapped in a car trunk, undetermined, sequela','Y','0000-00-00 00:00:00'),(169656,10,'T71.231A ','Asphyxiation due to being trapped in a (discarded) refrigerator, accidental, initial encounter','Y','0000-00-00 00:00:00'),(169657,10,'T71.231D ','Asphyxiation due to being trapped in a (discarded) refrigerator, accidental, subsequent encounter','Y','0000-00-00 00:00:00'),(169658,10,'T71.231S ','Asphyxiation due to being trapped in a (discarded) refrigerator, accidental, sequela','Y','0000-00-00 00:00:00'),(169659,10,'T71.232A ','Asphyxiation due to being trapped in a (discarded) refrigerator, intentional self-harm, initial encounter','Y','0000-00-00 00:00:00'),(169660,10,'T71.232D ','Asphyxiation due to being trapped in a (discarded) refrigerator, intentional self-harm, subsequent encounter','Y','0000-00-00 00:00:00'),(169661,10,'T71.232S ','Asphyxiation due to being trapped in a (discarded) refrigerator, intentional self-harm, sequela','Y','0000-00-00 00:00:00'),(169662,10,'T71.233A ','Asphyxiation due to being trapped in a (discarded) refrigerator, assault, initial encounter','Y','0000-00-00 00:00:00'),(169663,10,'T71.233D ','Asphyxiation due to being trapped in a (discarded) refrigerator, assault, subsequent encounter','Y','0000-00-00 00:00:00'),(169664,10,'T71.233S ','Asphyxiation due to being trapped in a (discarded) refrigerator, assault, sequela','Y','0000-00-00 00:00:00'),(169665,10,'T71.234A ','Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined, initial encounter','Y','0000-00-00 00:00:00'),(169666,10,'T71.234D ','Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined, subsequent encounter','Y','0000-00-00 00:00:00'),(169667,10,'T71.234S ','Asphyxiation due to being trapped in a (discarded) refrigerator, undetermined, sequela','Y','0000-00-00 00:00:00'),(169668,10,'T71.29XA ','Asphyxiation due to being trapped in other low oxygen environment, initial encounter','Y','0000-00-00 00:00:00'),(169669,10,'T71.29XD ','Asphyxiation due to being trapped in other low oxygen environment, subsequent encounter','Y','0000-00-00 00:00:00'),(169670,10,'T71.29XS ','Asphyxiation due to being trapped in other low oxygen environment, sequela','Y','0000-00-00 00:00:00'),(169671,10,'T71.9XXA ','Asphyxiation due to unspecified cause, initial encounter','Y','0000-00-00 00:00:00'),(169672,10,'T71.9XXD ','Asphyxiation due to unspecified cause, subsequent encounter','Y','0000-00-00 00:00:00'),(169673,10,'T71.9XXS ','Asphyxiation due to unspecified cause, sequela','Y','0000-00-00 00:00:00'),(169674,10,'T73.0XXA ','Starvation, initial encounter','Y','0000-00-00 00:00:00'),(169675,10,'T73.0XXD ','Starvation, subsequent encounter','Y','0000-00-00 00:00:00'),(169676,10,'T73.0XXS ','Starvation, sequela','Y','0000-00-00 00:00:00'),(169677,10,'T73.1XXA ','Deprivation of water, initial encounter','Y','0000-00-00 00:00:00'),(169678,10,'T73.1XXD ','Deprivation of water, subsequent encounter','Y','0000-00-00 00:00:00'),(169679,10,'T73.1XXS ','Deprivation of water, sequela','Y','0000-00-00 00:00:00'),(169680,10,'T73.2XXA ','Exhaustion due to exposure, initial encounter','Y','0000-00-00 00:00:00'),(169681,10,'T73.2XXD ','Exhaustion due to exposure, subsequent encounter','Y','0000-00-00 00:00:00'),(169682,10,'T73.2XXS ','Exhaustion due to exposure, sequela','Y','0000-00-00 00:00:00'),(169683,10,'T73.3XXA ','Exhaustion due to excessive exertion, initial encounter','Y','0000-00-00 00:00:00'),(169684,10,'T73.3XXD ','Exhaustion due to excessive exertion, subsequent encounter','Y','0000-00-00 00:00:00'),(169685,10,'T73.3XXS ','Exhaustion due to excessive exertion, sequela','Y','0000-00-00 00:00:00'),(169686,10,'T73.8XXA ','Other effects of deprivation, initial encounter','Y','0000-00-00 00:00:00'),(169687,10,'T73.8XXD ','Other effects of deprivation, subsequent encounter','Y','0000-00-00 00:00:00'),(169688,10,'T73.8XXS ','Other effects of deprivation, sequela','Y','0000-00-00 00:00:00'),(169689,10,'T73.9XXA ','Effect of deprivation, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(169690,10,'T73.9XXD ','Effect of deprivation, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(169691,10,'T73.9XXS ','Effect of deprivation, unspecified, sequela','Y','0000-00-00 00:00:00'),(169692,10,'T74.01XA ','Adult neglect or abandonment, confirmed, initial encounter','Y','0000-00-00 00:00:00'),(169693,10,'T74.01XD ','Adult neglect or abandonment, confirmed, subsequent encounter','Y','0000-00-00 00:00:00'),(169694,10,'T74.01XS ','Adult neglect or abandonment, confirmed, sequela','Y','0000-00-00 00:00:00'),(169695,10,'T74.02XA ','Child neglect or abandonment, confirmed, initial encounter','Y','0000-00-00 00:00:00'),(169696,10,'T74.02XD ','Child neglect or abandonment, confirmed, subsequent encounter','Y','0000-00-00 00:00:00'),(169697,10,'T74.02XS ','Child neglect or abandonment, confirmed, sequela','Y','0000-00-00 00:00:00'),(169698,10,'T74.11XA ','Adult physical abuse, confirmed, initial encounter','Y','0000-00-00 00:00:00'),(169699,10,'T74.11XD ','Adult physical abuse, confirmed, subsequent encounter','Y','0000-00-00 00:00:00'),(169700,10,'T74.11XS ','Adult physical abuse, confirmed, sequela','Y','0000-00-00 00:00:00'),(169701,10,'T74.12XA ','Child physical abuse, confirmed, initial encounter','Y','0000-00-00 00:00:00'),(169702,10,'T74.12XD ','Child physical abuse, confirmed, subsequent encounter','Y','0000-00-00 00:00:00'),(169703,10,'T74.12XS ','Child physical abuse, confirmed, sequela','Y','0000-00-00 00:00:00'),(169704,10,'T74.21XA ','Adult sexual abuse, confirmed, initial encounter','Y','0000-00-00 00:00:00'),(169705,10,'T74.21XD ','Adult sexual abuse, confirmed, subsequent encounter','Y','0000-00-00 00:00:00'),(169706,10,'T74.21XS ','Adult sexual abuse, confirmed, sequela','Y','0000-00-00 00:00:00'),(169707,10,'T74.22XA ','Child sexual abuse, confirmed, initial encounter','Y','0000-00-00 00:00:00'),(169708,10,'T74.22XD ','Child sexual abuse, confirmed, subsequent encounter','Y','0000-00-00 00:00:00'),(169709,10,'T74.22XS ','Child sexual abuse, confirmed, sequela','Y','0000-00-00 00:00:00'),(169710,10,'T74.31XA ','Adult psychological abuse, confirmed, initial encounter','Y','0000-00-00 00:00:00'),(169711,10,'T74.31XD ','Adult psychological abuse, confirmed, subsequent encounter','Y','0000-00-00 00:00:00'),(169712,10,'T74.31XS ','Adult psychological abuse, confirmed, sequela','Y','0000-00-00 00:00:00'),(169713,10,'T74.32XA ','Child psychological abuse, confirmed, initial encounter','Y','0000-00-00 00:00:00'),(169714,10,'T74.32XD ','Child psychological abuse, confirmed, subsequent encounter','Y','0000-00-00 00:00:00'),(169715,10,'T74.32XS ','Child psychological abuse, confirmed, sequela','Y','0000-00-00 00:00:00'),(169716,10,'T74.4XXA ','Shaken infant syndrome, initial encounter','Y','0000-00-00 00:00:00'),(169717,10,'T74.4XXD ','Shaken infant syndrome, subsequent encounter','Y','0000-00-00 00:00:00'),(169718,10,'T74.4XXS ','Shaken infant syndrome, sequela','Y','0000-00-00 00:00:00'),(169719,10,'T74.51XA ','Adult forced sexual exploitation, confirmed, initial encounter','Y','0000-00-00 00:00:00'),(169720,10,'T74.51XD ','Adult forced sexual exploitation, confirmed, subsequent encounter','Y','0000-00-00 00:00:00'),(169721,10,'T74.51XS ','Adult forced sexual exploitation, confirmed, sequela','Y','0000-00-00 00:00:00'),(169722,10,'T74.52XA ','Child sexual exploitation, confirmed, initial encounter','Y','0000-00-00 00:00:00'),(169723,10,'T74.52XD ','Child sexual exploitation, confirmed, subsequent encounter','Y','0000-00-00 00:00:00'),(169724,10,'T74.52XS ','Child sexual exploitation, confirmed, sequela','Y','0000-00-00 00:00:00'),(169725,10,'T74.61XA ','Adult forced labor exploitation, confirmed, initial encounter','Y','0000-00-00 00:00:00'),(169726,10,'T74.61XD ','Adult forced labor exploitation, confirmed, subsequent encounter','Y','0000-00-00 00:00:00'),(169727,10,'T74.61XS ','Adult forced labor exploitation, confirmed, sequela','Y','0000-00-00 00:00:00'),(169728,10,'T74.62XA ','Child forced labor exploitation, confirmed, initial encounter','Y','0000-00-00 00:00:00'),(169729,10,'T74.62XD ','Child forced labor exploitation, confirmed, subsequent encounter','Y','0000-00-00 00:00:00'),(169730,10,'T74.62XS ','Child forced labor exploitation, confirmed, sequela','Y','0000-00-00 00:00:00'),(169731,10,'T74.91XA ','Unspecified adult maltreatment, confirmed, initial encounter','Y','0000-00-00 00:00:00'),(169732,10,'T74.91XD ','Unspecified adult maltreatment, confirmed, subsequent encounter','Y','0000-00-00 00:00:00'),(169733,10,'T74.91XS ','Unspecified adult maltreatment, confirmed, sequela','Y','0000-00-00 00:00:00'),(169734,10,'T74.92XA ','Unspecified child maltreatment, confirmed, initial encounter','Y','0000-00-00 00:00:00'),(169735,10,'T74.92XD ','Unspecified child maltreatment, confirmed, subsequent encounter','Y','0000-00-00 00:00:00'),(169736,10,'T74.92XS ','Unspecified child maltreatment, confirmed, sequela','Y','0000-00-00 00:00:00'),(169737,10,'T74.A1XA ','Adult financial abuse, confirmed, initial encounter','Y','0000-00-00 00:00:00'),(169738,10,'T74.A1XD ','Adult financial abuse, confirmed, subsequent encounter','Y','0000-00-00 00:00:00'),(169739,10,'T74.A1XS ','Adult financial abuse, confirmed, sequela','Y','0000-00-00 00:00:00'),(169740,10,'T74.A2XA ','Child financial abuse, confirmed, initial encounter','Y','0000-00-00 00:00:00'),(169741,10,'T74.A2XD ','Child financial abuse, confirmed, subsequent encounter','Y','0000-00-00 00:00:00'),(169742,10,'T74.A2XS ','Child financial abuse, confirmed, sequela','Y','0000-00-00 00:00:00'),(169743,10,'T75.00XA ','Unspecified effects of lightning, initial encounter','Y','0000-00-00 00:00:00'),(169744,10,'T75.00XD ','Unspecified effects of lightning, subsequent encounter','Y','0000-00-00 00:00:00'),(169745,10,'T75.00XS ','Unspecified effects of lightning, sequela','Y','0000-00-00 00:00:00'),(169746,10,'T75.01XA ','Shock due to being struck by lightning, initial encounter','Y','0000-00-00 00:00:00'),(169747,10,'T75.01XD ','Shock due to being struck by lightning, subsequent encounter','Y','0000-00-00 00:00:00'),(169748,10,'T75.01XS ','Shock due to being struck by lightning, sequela','Y','0000-00-00 00:00:00'),(169749,10,'T75.09XA ','Other effects of lightning, initial encounter','Y','0000-00-00 00:00:00'),(169750,10,'T75.09XD ','Other effects of lightning, subsequent encounter','Y','0000-00-00 00:00:00'),(169751,10,'T75.09XS ','Other effects of lightning, sequela','Y','0000-00-00 00:00:00'),(169752,10,'T75.1XXA ','Unspecified effects of drowning and nonfatal submersion, initial encounter','Y','0000-00-00 00:00:00'),(169753,10,'T75.1XXD ','Unspecified effects of drowning and nonfatal submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(169754,10,'T75.1XXS ','Unspecified effects of drowning and nonfatal submersion, sequela','Y','0000-00-00 00:00:00'),(169755,10,'T75.20XA ','Unspecified effects of vibration, initial encounter','Y','0000-00-00 00:00:00'),(169756,10,'T75.20XD ','Unspecified effects of vibration, subsequent encounter','Y','0000-00-00 00:00:00'),(169757,10,'T75.20XS ','Unspecified effects of vibration, sequela','Y','0000-00-00 00:00:00'),(169758,10,'T75.21XA ','Pneumatic hammer syndrome, initial encounter','Y','0000-00-00 00:00:00'),(169759,10,'T75.21XD ','Pneumatic hammer syndrome, subsequent encounter','Y','0000-00-00 00:00:00'),(169760,10,'T75.21XS ','Pneumatic hammer syndrome, sequela','Y','0000-00-00 00:00:00'),(169761,10,'T75.22XA ','Traumatic vasospastic syndrome, initial encounter','Y','0000-00-00 00:00:00'),(169762,10,'T75.22XD ','Traumatic vasospastic syndrome, subsequent encounter','Y','0000-00-00 00:00:00'),(169763,10,'T75.22XS ','Traumatic vasospastic syndrome, sequela','Y','0000-00-00 00:00:00'),(169764,10,'T75.23XA ','Vertigo from infrasound, initial encounter','Y','0000-00-00 00:00:00'),(169765,10,'T75.23XD ','Vertigo from infrasound, subsequent encounter','Y','0000-00-00 00:00:00'),(169766,10,'T75.23XS ','Vertigo from infrasound, sequela','Y','0000-00-00 00:00:00'),(169767,10,'T75.29XA ','Other effects of vibration, initial encounter','Y','0000-00-00 00:00:00'),(169768,10,'T75.29XD ','Other effects of vibration, subsequent encounter','Y','0000-00-00 00:00:00'),(169769,10,'T75.29XS ','Other effects of vibration, sequela','Y','0000-00-00 00:00:00'),(169770,10,'T75.3XXA ','Motion sickness, initial encounter','Y','0000-00-00 00:00:00'),(169771,10,'T75.3XXD ','Motion sickness, subsequent encounter','Y','0000-00-00 00:00:00'),(169772,10,'T75.3XXS ','Motion sickness, sequela','Y','0000-00-00 00:00:00'),(169773,10,'T75.4XXA ','Electrocution, initial encounter','Y','0000-00-00 00:00:00'),(169774,10,'T75.4XXD ','Electrocution, subsequent encounter','Y','0000-00-00 00:00:00'),(169775,10,'T75.4XXS ','Electrocution, sequela','Y','0000-00-00 00:00:00'),(169776,10,'T75.81XA ','Effects of abnormal gravitation [G] forces, initial encounter','Y','0000-00-00 00:00:00'),(169777,10,'T75.81XD ','Effects of abnormal gravitation [G] forces, subsequent encounter','Y','0000-00-00 00:00:00'),(169778,10,'T75.81XS ','Effects of abnormal gravitation [G] forces, sequela','Y','0000-00-00 00:00:00'),(169779,10,'T75.82XA ','Effects of weightlessness, initial encounter','Y','0000-00-00 00:00:00'),(169780,10,'T75.82XD ','Effects of weightlessness, subsequent encounter','Y','0000-00-00 00:00:00'),(169781,10,'T75.82XS ','Effects of weightlessness, sequela','Y','0000-00-00 00:00:00'),(169782,10,'T75.89XA ','Other specified effects of external causes, initial encounter','Y','0000-00-00 00:00:00'),(169783,10,'T75.89XD ','Other specified effects of external causes, subsequent encounter','Y','0000-00-00 00:00:00'),(169784,10,'T75.89XS ','Other specified effects of external causes, sequela','Y','0000-00-00 00:00:00'),(169785,10,'T76.01XA ','Adult neglect or abandonment, suspected, initial encounter','Y','0000-00-00 00:00:00'),(169786,10,'T76.01XD ','Adult neglect or abandonment, suspected, subsequent encounter','Y','0000-00-00 00:00:00'),(169787,10,'T76.01XS ','Adult neglect or abandonment, suspected, sequela','Y','0000-00-00 00:00:00'),(169788,10,'T76.02XA ','Child neglect or abandonment, suspected, initial encounter','Y','0000-00-00 00:00:00'),(169789,10,'T76.02XD ','Child neglect or abandonment, suspected, subsequent encounter','Y','0000-00-00 00:00:00'),(169790,10,'T76.02XS ','Child neglect or abandonment, suspected, sequela','Y','0000-00-00 00:00:00'),(169791,10,'T76.11XA ','Adult physical abuse, suspected, initial encounter','Y','0000-00-00 00:00:00'),(169792,10,'T76.11XD ','Adult physical abuse, suspected, subsequent encounter','Y','0000-00-00 00:00:00'),(169793,10,'T76.11XS ','Adult physical abuse, suspected, sequela','Y','0000-00-00 00:00:00'),(169794,10,'T76.12XA ','Child physical abuse, suspected, initial encounter','Y','0000-00-00 00:00:00'),(169795,10,'T76.12XD ','Child physical abuse, suspected, subsequent encounter','Y','0000-00-00 00:00:00'),(169796,10,'T76.12XS ','Child physical abuse, suspected, sequela','Y','0000-00-00 00:00:00'),(169797,10,'T76.21XA ','Adult sexual abuse, suspected, initial encounter','Y','0000-00-00 00:00:00'),(169798,10,'T76.21XD ','Adult sexual abuse, suspected, subsequent encounter','Y','0000-00-00 00:00:00'),(169799,10,'T76.21XS ','Adult sexual abuse, suspected, sequela','Y','0000-00-00 00:00:00'),(169800,10,'T76.22XA ','Child sexual abuse, suspected, initial encounter','Y','0000-00-00 00:00:00'),(169801,10,'T76.22XD ','Child sexual abuse, suspected, subsequent encounter','Y','0000-00-00 00:00:00'),(169802,10,'T76.22XS ','Child sexual abuse, suspected, sequela','Y','0000-00-00 00:00:00'),(169803,10,'T76.31XA ','Adult psychological abuse, suspected, initial encounter','Y','0000-00-00 00:00:00'),(169804,10,'T76.31XD ','Adult psychological abuse, suspected, subsequent encounter','Y','0000-00-00 00:00:00'),(169805,10,'T76.31XS ','Adult psychological abuse, suspected, sequela','Y','0000-00-00 00:00:00'),(169806,10,'T76.32XA ','Child psychological abuse, suspected, initial encounter','Y','0000-00-00 00:00:00'),(169807,10,'T76.32XD ','Child psychological abuse, suspected, subsequent encounter','Y','0000-00-00 00:00:00'),(169808,10,'T76.32XS ','Child psychological abuse, suspected, sequela','Y','0000-00-00 00:00:00'),(169809,10,'T76.51XA ','Adult forced sexual exploitation, suspected, initial encounter','Y','0000-00-00 00:00:00'),(169810,10,'T76.51XD ','Adult forced sexual exploitation, suspected, subsequent encounter','Y','0000-00-00 00:00:00'),(169811,10,'T76.51XS ','Adult forced sexual exploitation, suspected, sequela','Y','0000-00-00 00:00:00'),(169812,10,'T76.52XA ','Child sexual exploitation, suspected, initial encounter','Y','0000-00-00 00:00:00'),(169813,10,'T76.52XD ','Child sexual exploitation, suspected, subsequent encounter','Y','0000-00-00 00:00:00'),(169814,10,'T76.52XS ','Child sexual exploitation, suspected, sequela','Y','0000-00-00 00:00:00'),(169815,10,'T76.61XA ','Adult forced labor exploitation, suspected, initial encounter','Y','0000-00-00 00:00:00'),(169816,10,'T76.61XD ','Adult forced labor exploitation, suspected, subsequent encounter','Y','0000-00-00 00:00:00'),(169817,10,'T76.61XS ','Adult forced labor exploitation, suspected, sequela','Y','0000-00-00 00:00:00'),(169818,10,'T76.62XA ','Child forced labor exploitation, suspected, initial encounter','Y','0000-00-00 00:00:00'),(169819,10,'T76.62XD ','Child forced labor exploitation, suspected, subsequent encounter','Y','0000-00-00 00:00:00'),(169820,10,'T76.62XS ','Child forced labor exploitation, suspected, sequela','Y','0000-00-00 00:00:00'),(169821,10,'T76.91XA ','Unspecified adult maltreatment, suspected, initial encounter','Y','0000-00-00 00:00:00'),(169822,10,'T76.91XD ','Unspecified adult maltreatment, suspected, subsequent encounter','Y','0000-00-00 00:00:00'),(169823,10,'T76.91XS ','Unspecified adult maltreatment, suspected, sequela','Y','0000-00-00 00:00:00'),(169824,10,'T76.92XA ','Unspecified child maltreatment, suspected, initial encounter','Y','0000-00-00 00:00:00'),(169825,10,'T76.92XD ','Unspecified child maltreatment, suspected, subsequent encounter','Y','0000-00-00 00:00:00'),(169826,10,'T76.92XS ','Unspecified child maltreatment, suspected, sequela','Y','0000-00-00 00:00:00'),(169827,10,'T76.A1XA ','Adult financial abuse, suspected, initial encounter','Y','0000-00-00 00:00:00'),(169828,10,'T76.A1XD ','Adult financial abuse, suspected, subsequent encounter','Y','0000-00-00 00:00:00'),(169829,10,'T76.A1XS ','Adult financial abuse, suspected, sequela','Y','0000-00-00 00:00:00'),(169830,10,'T76.A2XA ','Child financial abuse, suspected, initial encounter','Y','0000-00-00 00:00:00'),(169831,10,'T76.A2XD ','Child financial abuse, suspected, subsequent encounter','Y','0000-00-00 00:00:00'),(169832,10,'T76.A2XS ','Child financial abuse, suspected, sequela','Y','0000-00-00 00:00:00'),(169833,10,'T78.00XA ','Anaphylactic reaction due to unspecified food, initial encounter','Y','0000-00-00 00:00:00'),(169834,10,'T78.00XD ','Anaphylactic reaction due to unspecified food, subsequent encounter','Y','0000-00-00 00:00:00'),(169835,10,'T78.00XS ','Anaphylactic reaction due to unspecified food, sequela','Y','0000-00-00 00:00:00'),(169836,10,'T78.01XA ','Anaphylactic reaction due to peanuts, initial encounter','Y','0000-00-00 00:00:00'),(169837,10,'T78.01XD ','Anaphylactic reaction due to peanuts, subsequent encounter','Y','0000-00-00 00:00:00'),(169838,10,'T78.01XS ','Anaphylactic reaction due to peanuts, sequela','Y','0000-00-00 00:00:00'),(169839,10,'T78.02XA ','Anaphylactic reaction due to shellfish (crustaceans), initial encounter','Y','0000-00-00 00:00:00'),(169840,10,'T78.02XD ','Anaphylactic reaction due to shellfish (crustaceans), subsequent encounter','Y','0000-00-00 00:00:00'),(169841,10,'T78.02XS ','Anaphylactic reaction due to shellfish (crustaceans), sequela','Y','0000-00-00 00:00:00'),(169842,10,'T78.03XA ','Anaphylactic reaction due to other fish, initial encounter','Y','0000-00-00 00:00:00'),(169843,10,'T78.03XD ','Anaphylactic reaction due to other fish, subsequent encounter','Y','0000-00-00 00:00:00'),(169844,10,'T78.03XS ','Anaphylactic reaction due to other fish, sequela','Y','0000-00-00 00:00:00'),(169845,10,'T78.04XA ','Anaphylactic reaction due to fruits and vegetables, initial encounter','Y','0000-00-00 00:00:00'),(169846,10,'T78.04XD ','Anaphylactic reaction due to fruits and vegetables, subsequent encounter','Y','0000-00-00 00:00:00'),(169847,10,'T78.04XS ','Anaphylactic reaction due to fruits and vegetables, sequela','Y','0000-00-00 00:00:00'),(169848,10,'T78.05XA ','Anaphylactic reaction due to tree nuts and seeds, initial encounter','Y','0000-00-00 00:00:00'),(169849,10,'T78.05XD ','Anaphylactic reaction due to tree nuts and seeds, subsequent encounter','Y','0000-00-00 00:00:00'),(169850,10,'T78.05XS ','Anaphylactic reaction due to tree nuts and seeds, sequela','Y','0000-00-00 00:00:00'),(169851,10,'T78.06XA ','Anaphylactic reaction due to food additives, initial encounter','Y','0000-00-00 00:00:00'),(169852,10,'T78.06XD ','Anaphylactic reaction due to food additives, subsequent encounter','Y','0000-00-00 00:00:00'),(169853,10,'T78.06XS ','Anaphylactic reaction due to food additives, sequela','Y','0000-00-00 00:00:00'),(169854,10,'T78.07XA ','Anaphylactic reaction due to milk and dairy products, initial encounter','Y','0000-00-00 00:00:00'),(169855,10,'T78.07XD ','Anaphylactic reaction due to milk and dairy products, subsequent encounter','Y','0000-00-00 00:00:00'),(169856,10,'T78.07XS ','Anaphylactic reaction due to milk and dairy products, sequela','Y','0000-00-00 00:00:00'),(169857,10,'T78.08XA ','Anaphylactic reaction due to eggs, initial encounter','Y','0000-00-00 00:00:00'),(169858,10,'T78.08XD ','Anaphylactic reaction due to eggs, subsequent encounter','Y','0000-00-00 00:00:00'),(169859,10,'T78.08XS ','Anaphylactic reaction due to eggs, sequela','Y','0000-00-00 00:00:00'),(169860,10,'T78.09XA ','Anaphylactic reaction due to other food products, initial encounter','Y','0000-00-00 00:00:00'),(169861,10,'T78.09XD ','Anaphylactic reaction due to other food products, subsequent encounter','Y','0000-00-00 00:00:00'),(169862,10,'T78.09XS ','Anaphylactic reaction due to other food products, sequela','Y','0000-00-00 00:00:00'),(169863,10,'T78.1XXA ','Other adverse food reactions, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(169864,10,'T78.1XXD ','Other adverse food reactions, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(169865,10,'T78.1XXS ','Other adverse food reactions, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(169866,10,'T78.2XXA ','Anaphylactic shock, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(169867,10,'T78.2XXD ','Anaphylactic shock, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(169868,10,'T78.2XXS ','Anaphylactic shock, unspecified, sequela','Y','0000-00-00 00:00:00'),(169869,10,'T78.3XXA ','Angioneurotic edema, initial encounter','Y','0000-00-00 00:00:00'),(169870,10,'T78.3XXD ','Angioneurotic edema, subsequent encounter','Y','0000-00-00 00:00:00'),(169871,10,'T78.3XXS ','Angioneurotic edema, sequela','Y','0000-00-00 00:00:00'),(169872,10,'T78.40XA ','Allergy, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(169873,10,'T78.40XD ','Allergy, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(169874,10,'T78.40XS ','Allergy, unspecified, sequela','Y','0000-00-00 00:00:00'),(169875,10,'T78.41XA ','Arthus phenomenon, initial encounter','Y','0000-00-00 00:00:00'),(169876,10,'T78.41XD ','Arthus phenomenon, subsequent encounter','Y','0000-00-00 00:00:00'),(169877,10,'T78.41XS ','Arthus phenomenon, sequela','Y','0000-00-00 00:00:00'),(169878,10,'T78.49XA ','Other allergy, initial encounter','Y','0000-00-00 00:00:00'),(169879,10,'T78.49XD ','Other allergy, subsequent encounter','Y','0000-00-00 00:00:00'),(169880,10,'T78.49XS ','Other allergy, sequela','Y','0000-00-00 00:00:00'),(169881,10,'T78.8XXA ','Other adverse effects, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(169882,10,'T78.8XXD ','Other adverse effects, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(169883,10,'T78.8XXS ','Other adverse effects, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(169884,10,'T79.0XXA ','Air embolism (traumatic), initial encounter','Y','0000-00-00 00:00:00'),(169885,10,'T79.0XXD ','Air embolism (traumatic), subsequent encounter','Y','0000-00-00 00:00:00'),(169886,10,'T79.0XXS ','Air embolism (traumatic), sequela','Y','0000-00-00 00:00:00'),(169887,10,'T79.1XXA ','Fat embolism (traumatic), initial encounter','Y','0000-00-00 00:00:00'),(169888,10,'T79.1XXD ','Fat embolism (traumatic), subsequent encounter','Y','0000-00-00 00:00:00'),(169889,10,'T79.1XXS ','Fat embolism (traumatic), sequela','Y','0000-00-00 00:00:00'),(169890,10,'T79.2XXA ','Traumatic secondary and recurrent hemorrhage and seroma, initial encounter','Y','0000-00-00 00:00:00'),(169891,10,'T79.2XXD ','Traumatic secondary and recurrent hemorrhage and seroma, subsequent encounter','Y','0000-00-00 00:00:00'),(169892,10,'T79.2XXS ','Traumatic secondary and recurrent hemorrhage and seroma, sequela','Y','0000-00-00 00:00:00'),(169893,10,'T79.4XXA ','Traumatic shock, initial encounter','Y','0000-00-00 00:00:00'),(169894,10,'T79.4XXD ','Traumatic shock, subsequent encounter','Y','0000-00-00 00:00:00'),(169895,10,'T79.4XXS ','Traumatic shock, sequela','Y','0000-00-00 00:00:00'),(169896,10,'T79.5XXA ','Traumatic anuria, initial encounter','Y','0000-00-00 00:00:00'),(169897,10,'T79.5XXD ','Traumatic anuria, subsequent encounter','Y','0000-00-00 00:00:00'),(169898,10,'T79.5XXS ','Traumatic anuria, sequela','Y','0000-00-00 00:00:00'),(169899,10,'T79.6XXA ','Traumatic ischemia of muscle, initial encounter','Y','0000-00-00 00:00:00'),(169900,10,'T79.6XXD ','Traumatic ischemia of muscle, subsequent encounter','Y','0000-00-00 00:00:00'),(169901,10,'T79.6XXS ','Traumatic ischemia of muscle, sequela','Y','0000-00-00 00:00:00'),(169902,10,'T79.7XXA ','Traumatic subcutaneous emphysema, initial encounter','Y','0000-00-00 00:00:00'),(169903,10,'T79.7XXD ','Traumatic subcutaneous emphysema, subsequent encounter','Y','0000-00-00 00:00:00'),(169904,10,'T79.7XXS ','Traumatic subcutaneous emphysema, sequela','Y','0000-00-00 00:00:00'),(169905,10,'T79.A0XA ','Compartment syndrome, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(169906,10,'T79.A0XD ','Compartment syndrome, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(169907,10,'T79.A0XS ','Compartment syndrome, unspecified, sequela','Y','0000-00-00 00:00:00'),(169908,10,'T79.A11A ','Traumatic compartment syndrome of right upper extremity, initial encounter','Y','0000-00-00 00:00:00'),(169909,10,'T79.A11D ','Traumatic compartment syndrome of right upper extremity, subsequent encounter','Y','0000-00-00 00:00:00'),(169910,10,'T79.A11S ','Traumatic compartment syndrome of right upper extremity, sequela','Y','0000-00-00 00:00:00'),(169911,10,'T79.A12A ','Traumatic compartment syndrome of left upper extremity, initial encounter','Y','0000-00-00 00:00:00'),(169912,10,'T79.A12D ','Traumatic compartment syndrome of left upper extremity, subsequent encounter','Y','0000-00-00 00:00:00'),(169913,10,'T79.A12S ','Traumatic compartment syndrome of left upper extremity, sequela','Y','0000-00-00 00:00:00'),(169914,10,'T79.A19A ','Traumatic compartment syndrome of unspecified upper extremity, initial encounter','Y','0000-00-00 00:00:00'),(169915,10,'T79.A19D ','Traumatic compartment syndrome of unspecified upper extremity, subsequent encounter','Y','0000-00-00 00:00:00'),(169916,10,'T79.A19S ','Traumatic compartment syndrome of unspecified upper extremity, sequela','Y','0000-00-00 00:00:00'),(169917,10,'T79.A21A ','Traumatic compartment syndrome of right lower extremity, initial encounter','Y','0000-00-00 00:00:00'),(169918,10,'T79.A21D ','Traumatic compartment syndrome of right lower extremity, subsequent encounter','Y','0000-00-00 00:00:00'),(169919,10,'T79.A21S ','Traumatic compartment syndrome of right lower extremity, sequela','Y','0000-00-00 00:00:00'),(169920,10,'T79.A22A ','Traumatic compartment syndrome of left lower extremity, initial encounter','Y','0000-00-00 00:00:00'),(169921,10,'T79.A22D ','Traumatic compartment syndrome of left lower extremity, subsequent encounter','Y','0000-00-00 00:00:00'),(169922,10,'T79.A22S ','Traumatic compartment syndrome of left lower extremity, sequela','Y','0000-00-00 00:00:00'),(169923,10,'T79.A29A ','Traumatic compartment syndrome of unspecified lower extremity, initial encounter','Y','0000-00-00 00:00:00'),(169924,10,'T79.A29D ','Traumatic compartment syndrome of unspecified lower extremity, subsequent encounter','Y','0000-00-00 00:00:00'),(169925,10,'T79.A29S ','Traumatic compartment syndrome of unspecified lower extremity, sequela','Y','0000-00-00 00:00:00'),(169926,10,'T79.A3XA ','Traumatic compartment syndrome of abdomen, initial encounter','Y','0000-00-00 00:00:00'),(169927,10,'T79.A3XD ','Traumatic compartment syndrome of abdomen, subsequent encounter','Y','0000-00-00 00:00:00'),(169928,10,'T79.A3XS ','Traumatic compartment syndrome of abdomen, sequela','Y','0000-00-00 00:00:00'),(169929,10,'T79.A9XA ','Traumatic compartment syndrome of other sites, initial encounter','Y','0000-00-00 00:00:00'),(169930,10,'T79.A9XD ','Traumatic compartment syndrome of other sites, subsequent encounter','Y','0000-00-00 00:00:00'),(169931,10,'T79.A9XS ','Traumatic compartment syndrome of other sites, sequela','Y','0000-00-00 00:00:00'),(169932,10,'T79.8XXA ','Other early complications of trauma, initial encounter','Y','0000-00-00 00:00:00'),(169933,10,'T79.8XXD ','Other early complications of trauma, subsequent encounter','Y','0000-00-00 00:00:00'),(169934,10,'T79.8XXS ','Other early complications of trauma, sequela','Y','0000-00-00 00:00:00'),(169935,10,'T79.9XXA ','Unspecified early complication of trauma, initial encounter','Y','0000-00-00 00:00:00'),(169936,10,'T79.9XXD ','Unspecified early complication of trauma, subsequent encounter','Y','0000-00-00 00:00:00'),(169937,10,'T79.9XXS ','Unspecified early complication of trauma, sequela','Y','0000-00-00 00:00:00'),(169938,10,'T80.0XXA ','Air embolism following infusion, transfusion and therapeutic injection, initial encounter','Y','0000-00-00 00:00:00'),(169939,10,'T80.0XXD ','Air embolism following infusion, transfusion and therapeutic injection, subsequent encounter','Y','0000-00-00 00:00:00'),(169940,10,'T80.0XXS ','Air embolism following infusion, transfusion and therapeutic injection, sequela','Y','0000-00-00 00:00:00'),(169941,10,'T80.1XXA ','Vascular complications following infusion, transfusion and therapeutic injection, initial encounter','Y','0000-00-00 00:00:00'),(169942,10,'T80.1XXD ','Vascular complications following infusion, transfusion and therapeutic injection, subsequent encounter','Y','0000-00-00 00:00:00'),(169943,10,'T80.1XXS ','Vascular complications following infusion, transfusion and therapeutic injection, sequela','Y','0000-00-00 00:00:00'),(169944,10,'T80.211A ','Bloodstream infection due to central venous catheter, initial encounter','Y','0000-00-00 00:00:00'),(169945,10,'T80.211D ','Bloodstream infection due to central venous catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(169946,10,'T80.211S ','Bloodstream infection due to central venous catheter, sequela','Y','0000-00-00 00:00:00'),(169947,10,'T80.212A ','Local infection due to central venous catheter, initial encounter','Y','0000-00-00 00:00:00'),(169948,10,'T80.212D ','Local infection due to central venous catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(169949,10,'T80.212S ','Local infection due to central venous catheter, sequela','Y','0000-00-00 00:00:00'),(169950,10,'T80.218A ','Other infection due to central venous catheter, initial encounter','Y','0000-00-00 00:00:00'),(169951,10,'T80.218D ','Other infection due to central venous catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(169952,10,'T80.218S ','Other infection due to central venous catheter, sequela','Y','0000-00-00 00:00:00'),(169953,10,'T80.219A ','Unspecified infection due to central venous catheter, initial encounter','Y','0000-00-00 00:00:00'),(169954,10,'T80.219D ','Unspecified infection due to central venous catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(169955,10,'T80.219S ','Unspecified infection due to central venous catheter, sequela','Y','0000-00-00 00:00:00'),(169956,10,'T80.22XA ','Acute infection following transfusion, infusion, or injection of blood and blood products, initial encounter','Y','0000-00-00 00:00:00'),(169957,10,'T80.22XD ','Acute infection following transfusion, infusion, or injection of blood and blood products, subsequent encounter','Y','0000-00-00 00:00:00'),(169958,10,'T80.22XS ','Acute infection following transfusion, infusion, or injection of blood and blood products, sequela','Y','0000-00-00 00:00:00'),(169959,10,'T80.29XA ','Infection following other infusion, transfusion and therapeutic injection, initial encounter','Y','0000-00-00 00:00:00'),(169960,10,'T80.29XD ','Infection following other infusion, transfusion and therapeutic injection, subsequent encounter','Y','0000-00-00 00:00:00'),(169961,10,'T80.29XS ','Infection following other infusion, transfusion and therapeutic injection, sequela','Y','0000-00-00 00:00:00'),(169962,10,'T80.30XA ','ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(169963,10,'T80.30XD ','ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(169964,10,'T80.30XS ','ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, sequela','Y','0000-00-00 00:00:00'),(169965,10,'T80.310A ','ABO incompatibility with acute hemolytic transfusion reaction, initial encounter','Y','0000-00-00 00:00:00'),(169966,10,'T80.310D ','ABO incompatibility with acute hemolytic transfusion reaction, subsequent encounter','Y','0000-00-00 00:00:00'),(169967,10,'T80.310S ','ABO incompatibility with acute hemolytic transfusion reaction, sequela','Y','0000-00-00 00:00:00'),(169968,10,'T80.311A ','ABO incompatibility with delayed hemolytic transfusion reaction, initial encounter','Y','0000-00-00 00:00:00'),(169969,10,'T80.311D ','ABO incompatibility with delayed hemolytic transfusion reaction, subsequent encounter','Y','0000-00-00 00:00:00'),(169970,10,'T80.311S ','ABO incompatibility with delayed hemolytic transfusion reaction, sequela','Y','0000-00-00 00:00:00'),(169971,10,'T80.319A ','ABO incompatibility with hemolytic transfusion reaction, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(169972,10,'T80.319D ','ABO incompatibility with hemolytic transfusion reaction, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(169973,10,'T80.319S ','ABO incompatibility with hemolytic transfusion reaction, unspecified, sequela','Y','0000-00-00 00:00:00'),(169974,10,'T80.39XA ','Other ABO incompatibility reaction due to transfusion of blood or blood products, initial encounter','Y','0000-00-00 00:00:00'),(169975,10,'T80.39XD ','Other ABO incompatibility reaction due to transfusion of blood or blood products, subsequent encounter','Y','0000-00-00 00:00:00'),(169976,10,'T80.39XS ','Other ABO incompatibility reaction due to transfusion of blood or blood products, sequela','Y','0000-00-00 00:00:00'),(169977,10,'T80.40XA ','Rh incompatibility reaction due to transfusion of blood or blood products, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(169978,10,'T80.40XD ','Rh incompatibility reaction due to transfusion of blood or blood products, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(169979,10,'T80.40XS ','Rh incompatibility reaction due to transfusion of blood or blood products, unspecified, sequela','Y','0000-00-00 00:00:00'),(169980,10,'T80.410A ','Rh incompatibility with acute hemolytic transfusion reaction, initial encounter','Y','0000-00-00 00:00:00'),(169981,10,'T80.410D ','Rh incompatibility with acute hemolytic transfusion reaction, subsequent encounter','Y','0000-00-00 00:00:00'),(169982,10,'T80.410S ','Rh incompatibility with acute hemolytic transfusion reaction, sequela','Y','0000-00-00 00:00:00'),(169983,10,'T80.411A ','Rh incompatibility with delayed hemolytic transfusion reaction, initial encounter','Y','0000-00-00 00:00:00'),(169984,10,'T80.411D ','Rh incompatibility with delayed hemolytic transfusion reaction, subsequent encounter','Y','0000-00-00 00:00:00'),(169985,10,'T80.411S ','Rh incompatibility with delayed hemolytic transfusion reaction, sequela','Y','0000-00-00 00:00:00'),(169986,10,'T80.419A ','Rh incompatibility with hemolytic transfusion reaction, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(169987,10,'T80.419D ','Rh incompatibility with hemolytic transfusion reaction, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(169988,10,'T80.419S ','Rh incompatibility with hemolytic transfusion reaction, unspecified, sequela','Y','0000-00-00 00:00:00'),(169989,10,'T80.49XA ','Other Rh incompatibility reaction due to transfusion of blood or blood products, initial encounter','Y','0000-00-00 00:00:00'),(169990,10,'T80.49XD ','Other Rh incompatibility reaction due to transfusion of blood or blood products, subsequent encounter','Y','0000-00-00 00:00:00'),(169991,10,'T80.49XS ','Other Rh incompatibility reaction due to transfusion of blood or blood products, sequela','Y','0000-00-00 00:00:00'),(169992,10,'T80.A0XA ','Non-ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(169993,10,'T80.A0XD ','Non-ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(169994,10,'T80.A0XS ','Non-ABO incompatibility reaction due to transfusion of blood or blood products, unspecified, sequela','Y','0000-00-00 00:00:00'),(169995,10,'T80.A10A ','Non-ABO incompatibility with acute hemolytic transfusion reaction, initial encounter','Y','0000-00-00 00:00:00'),(169996,10,'T80.A10D ','Non-ABO incompatibility with acute hemolytic transfusion reaction, subsequent encounter','Y','0000-00-00 00:00:00'),(169997,10,'T80.A10S ','Non-ABO incompatibility with acute hemolytic transfusion reaction, sequela','Y','0000-00-00 00:00:00'),(169998,10,'T80.A11A ','Non-ABO incompatibility with delayed hemolytic transfusion reaction, initial encounter','Y','0000-00-00 00:00:00'),(169999,10,'T80.A11D ','Non-ABO incompatibility with delayed hemolytic transfusion reaction, subsequent encounter','Y','0000-00-00 00:00:00'),(170000,10,'T80.A11S ','Non-ABO incompatibility with delayed hemolytic transfusion reaction, sequela','Y','0000-00-00 00:00:00'),(170001,10,'T80.A19A ','Non-ABO incompatibility with hemolytic transfusion reaction, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(170002,10,'T80.A19D ','Non-ABO incompatibility with hemolytic transfusion reaction, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(170003,10,'T80.A19S ','Non-ABO incompatibility with hemolytic transfusion reaction, unspecified, sequela','Y','0000-00-00 00:00:00'),(170004,10,'T80.A9XA ','Other non-ABO incompatibility reaction due to transfusion of blood or blood products, initial encounter','Y','0000-00-00 00:00:00'),(170005,10,'T80.A9XD ','Other non-ABO incompatibility reaction due to transfusion of blood or blood products, subsequent encounter','Y','0000-00-00 00:00:00'),(170006,10,'T80.A9XS ','Other non-ABO incompatibility reaction due to transfusion of blood or blood products, sequela','Y','0000-00-00 00:00:00'),(170007,10,'T80.51XA ','Anaphylactic reaction due to administration of blood and blood products, initial encounter','Y','0000-00-00 00:00:00'),(170008,10,'T80.51XD ','Anaphylactic reaction due to administration of blood and blood products, subsequent encounter','Y','0000-00-00 00:00:00'),(170009,10,'T80.51XS ','Anaphylactic reaction due to administration of blood and blood products, sequela','Y','0000-00-00 00:00:00'),(170010,10,'T80.52XA ','Anaphylactic reaction due to vaccination, initial encounter','Y','0000-00-00 00:00:00'),(170011,10,'T80.52XD ','Anaphylactic reaction due to vaccination, subsequent encounter','Y','0000-00-00 00:00:00'),(170012,10,'T80.52XS ','Anaphylactic reaction due to vaccination, sequela','Y','0000-00-00 00:00:00'),(170013,10,'T80.59XA ','Anaphylactic reaction due to other serum, initial encounter','Y','0000-00-00 00:00:00'),(170014,10,'T80.59XD ','Anaphylactic reaction due to other serum, subsequent encounter','Y','0000-00-00 00:00:00'),(170015,10,'T80.59XS ','Anaphylactic reaction due to other serum, sequela','Y','0000-00-00 00:00:00'),(170016,10,'T80.61XA ','Other serum reaction due to administration of blood and blood products, initial encounter','Y','0000-00-00 00:00:00'),(170017,10,'T80.61XD ','Other serum reaction due to administration of blood and blood products, subsequent encounter','Y','0000-00-00 00:00:00'),(170018,10,'T80.61XS ','Other serum reaction due to administration of blood and blood products, sequela','Y','0000-00-00 00:00:00'),(170019,10,'T80.62XA ','Other serum reaction due to vaccination, initial encounter','Y','0000-00-00 00:00:00'),(170020,10,'T80.62XD ','Other serum reaction due to vaccination, subsequent encounter','Y','0000-00-00 00:00:00'),(170021,10,'T80.62XS ','Other serum reaction due to vaccination, sequela','Y','0000-00-00 00:00:00'),(170022,10,'T80.69XA ','Other serum reaction due to other serum, initial encounter','Y','0000-00-00 00:00:00'),(170023,10,'T80.69XD ','Other serum reaction due to other serum, subsequent encounter','Y','0000-00-00 00:00:00'),(170024,10,'T80.69XS ','Other serum reaction due to other serum, sequela','Y','0000-00-00 00:00:00'),(170025,10,'T80.810A ','Extravasation of vesicant antineoplastic chemotherapy, initial encounter','Y','0000-00-00 00:00:00'),(170026,10,'T80.810D ','Extravasation of vesicant antineoplastic chemotherapy, subsequent encounter','Y','0000-00-00 00:00:00'),(170027,10,'T80.810S ','Extravasation of vesicant antineoplastic chemotherapy, sequela','Y','0000-00-00 00:00:00'),(170028,10,'T80.818A ','Extravasation of other vesicant agent, initial encounter','Y','0000-00-00 00:00:00'),(170029,10,'T80.818D ','Extravasation of other vesicant agent, subsequent encounter','Y','0000-00-00 00:00:00'),(170030,10,'T80.818S ','Extravasation of other vesicant agent, sequela','Y','0000-00-00 00:00:00'),(170031,10,'T80.82XA ','Complication of immune effector cellular therapy, initial encounter','Y','0000-00-00 00:00:00'),(170032,10,'T80.82XD ','Complication of immune effector cellular therapy, subsequent encounter','Y','0000-00-00 00:00:00'),(170033,10,'T80.82XS ','Complication of immune effector cellular therapy, sequela','Y','0000-00-00 00:00:00'),(170034,10,'T80.89XA ','Other complications following infusion, transfusion and therapeutic injection, initial encounter','Y','0000-00-00 00:00:00'),(170035,10,'T80.89XD ','Other complications following infusion, transfusion and therapeutic injection, subsequent encounter','Y','0000-00-00 00:00:00'),(170036,10,'T80.89XS ','Other complications following infusion, transfusion and therapeutic injection, sequela','Y','0000-00-00 00:00:00'),(170037,10,'T80.90XA ','Unspecified complication following infusion and therapeutic injection, initial encounter','Y','0000-00-00 00:00:00'),(170038,10,'T80.90XD ','Unspecified complication following infusion and therapeutic injection, subsequent encounter','Y','0000-00-00 00:00:00'),(170039,10,'T80.90XS ','Unspecified complication following infusion and therapeutic injection, sequela','Y','0000-00-00 00:00:00'),(170040,10,'T80.910A ','Acute hemolytic transfusion reaction, unspecified incompatibility, initial encounter','Y','0000-00-00 00:00:00'),(170041,10,'T80.910D ','Acute hemolytic transfusion reaction, unspecified incompatibility, subsequent encounter','Y','0000-00-00 00:00:00'),(170042,10,'T80.910S ','Acute hemolytic transfusion reaction, unspecified incompatibility, sequela','Y','0000-00-00 00:00:00'),(170043,10,'T80.911A ','Delayed hemolytic transfusion reaction, unspecified incompatibility, initial encounter','Y','0000-00-00 00:00:00'),(170044,10,'T80.911D ','Delayed hemolytic transfusion reaction, unspecified incompatibility, subsequent encounter','Y','0000-00-00 00:00:00'),(170045,10,'T80.911S ','Delayed hemolytic transfusion reaction, unspecified incompatibility, sequela','Y','0000-00-00 00:00:00'),(170046,10,'T80.919A ','Hemolytic transfusion reaction, unspecified incompatibility, unspecified as acute or delayed, initial encounter','Y','0000-00-00 00:00:00'),(170047,10,'T80.919D ','Hemolytic transfusion reaction, unspecified incompatibility, unspecified as acute or delayed, subsequent encounter','Y','0000-00-00 00:00:00'),(170048,10,'T80.919S ','Hemolytic transfusion reaction, unspecified incompatibility, unspecified as acute or delayed, sequela','Y','0000-00-00 00:00:00'),(170049,10,'T80.92XA ','Unspecified transfusion reaction, initial encounter','Y','0000-00-00 00:00:00'),(170050,10,'T80.92XD ','Unspecified transfusion reaction, subsequent encounter','Y','0000-00-00 00:00:00'),(170051,10,'T80.92XS ','Unspecified transfusion reaction, sequela','Y','0000-00-00 00:00:00'),(170052,10,'T81.10XA ','Postprocedural shock unspecified, initial encounter','Y','0000-00-00 00:00:00'),(170053,10,'T81.10XD ','Postprocedural shock unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(170054,10,'T81.10XS ','Postprocedural shock unspecified, sequela','Y','0000-00-00 00:00:00'),(170055,10,'T81.11XA ','Postprocedural cardiogenic shock, initial encounter','Y','0000-00-00 00:00:00'),(170056,10,'T81.11XD ','Postprocedural cardiogenic shock, subsequent encounter','Y','0000-00-00 00:00:00'),(170057,10,'T81.11XS ','Postprocedural cardiogenic shock, sequela','Y','0000-00-00 00:00:00'),(170058,10,'T81.12XA ','Postprocedural septic shock, initial encounter','Y','0000-00-00 00:00:00'),(170059,10,'T81.12XD ','Postprocedural septic shock, subsequent encounter','Y','0000-00-00 00:00:00'),(170060,10,'T81.12XS ','Postprocedural septic shock, sequela','Y','0000-00-00 00:00:00'),(170061,10,'T81.19XA ','Other postprocedural shock, initial encounter','Y','0000-00-00 00:00:00'),(170062,10,'T81.19XD ','Other postprocedural shock, subsequent encounter','Y','0000-00-00 00:00:00'),(170063,10,'T81.19XS ','Other postprocedural shock, sequela','Y','0000-00-00 00:00:00'),(170064,10,'T81.30XA ','Disruption of wound, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(170065,10,'T81.30XD ','Disruption of wound, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(170066,10,'T81.30XS ','Disruption of wound, unspecified, sequela','Y','0000-00-00 00:00:00'),(170067,10,'T81.31XA ','Disruption of external operation (surgical) wound, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(170068,10,'T81.31XD ','Disruption of external operation (surgical) wound, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(170069,10,'T81.31XS ','Disruption of external operation (surgical) wound, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(170070,10,'T81.32XA ','Disruption of internal operation (surgical) wound, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(170071,10,'T81.32XD ','Disruption of internal operation (surgical) wound, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(170072,10,'T81.32XS ','Disruption of internal operation (surgical) wound, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(170073,10,'T81.33XA ','Disruption of traumatic injury wound repair, initial encounter','Y','0000-00-00 00:00:00'),(170074,10,'T81.33XD ','Disruption of traumatic injury wound repair, subsequent encounter','Y','0000-00-00 00:00:00'),(170075,10,'T81.33XS ','Disruption of traumatic injury wound repair, sequela','Y','0000-00-00 00:00:00'),(170076,10,'T81.40XA ','Infection following a procedure, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(170077,10,'T81.40XD ','Infection following a procedure, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(170078,10,'T81.40XS ','Infection following a procedure, unspecified, sequela','Y','0000-00-00 00:00:00'),(170079,10,'T81.41XA ','Infection following a procedure, superficial incisional surgical site, initial encounter','Y','0000-00-00 00:00:00'),(170080,10,'T81.41XD ','Infection following a procedure, superficial incisional surgical site, subsequent encounter','Y','0000-00-00 00:00:00'),(170081,10,'T81.41XS ','Infection following a procedure, superficial incisional surgical site, sequela','Y','0000-00-00 00:00:00'),(170082,10,'T81.42XA ','Infection following a procedure, deep incisional surgical site, initial encounter','Y','0000-00-00 00:00:00'),(170083,10,'T81.42XD ','Infection following a procedure, deep incisional surgical site, subsequent encounter','Y','0000-00-00 00:00:00'),(170084,10,'T81.42XS ','Infection following a procedure, deep incisional surgical site, sequela','Y','0000-00-00 00:00:00'),(170085,10,'T81.43XA ','Infection following a procedure, organ and space surgical site, initial encounter','Y','0000-00-00 00:00:00'),(170086,10,'T81.43XD ','Infection following a procedure, organ and space surgical site, subsequent encounter','Y','0000-00-00 00:00:00'),(170087,10,'T81.43XS ','Infection following a procedure, organ and space surgical site, sequela','Y','0000-00-00 00:00:00'),(170088,10,'T81.44XA ','Sepsis following a procedure, initial encounter','Y','0000-00-00 00:00:00'),(170089,10,'T81.44XD ','Sepsis following a procedure, subsequent encounter','Y','0000-00-00 00:00:00'),(170090,10,'T81.44XS ','Sepsis following a procedure, sequela','Y','0000-00-00 00:00:00'),(170091,10,'T81.49XA ','Infection following a procedure, other surgical site, initial encounter','Y','0000-00-00 00:00:00'),(170092,10,'T81.49XD ','Infection following a procedure, other surgical site, subsequent encounter','Y','0000-00-00 00:00:00'),(170093,10,'T81.49XS ','Infection following a procedure, other surgical site, sequela','Y','0000-00-00 00:00:00'),(170094,10,'T81.500A ','Unspecified complication of foreign body accidentally left in body following surgical operation, initial encounter','Y','0000-00-00 00:00:00'),(170095,10,'T81.500D ','Unspecified complication of foreign body accidentally left in body following surgical operation, subsequent encounter','Y','0000-00-00 00:00:00'),(170096,10,'T81.500S ','Unspecified complication of foreign body accidentally left in body following surgical operation, sequela','Y','0000-00-00 00:00:00'),(170097,10,'T81.501A ','Unspecified complication of foreign body accidentally left in body following infusion or transfusion, initial encounter','Y','0000-00-00 00:00:00'),(170098,10,'T81.501D ','Unspecified complication of foreign body accidentally left in body following infusion or transfusion, subsequent encounter','Y','0000-00-00 00:00:00'),(170099,10,'T81.501S ','Unspecified complication of foreign body accidentally left in body following infusion or transfusion, sequela','Y','0000-00-00 00:00:00'),(170100,10,'T81.502A ','Unspecified complication of foreign body accidentally left in body following kidney dialysis, initial encounter','Y','0000-00-00 00:00:00'),(170101,10,'T81.502D ','Unspecified complication of foreign body accidentally left in body following kidney dialysis, subsequent encounter','Y','0000-00-00 00:00:00'),(170102,10,'T81.502S ','Unspecified complication of foreign body accidentally left in body following kidney dialysis, sequela','Y','0000-00-00 00:00:00'),(170103,10,'T81.503A ','Unspecified complication of foreign body accidentally left in body following injection or immunization, initial encounter','Y','0000-00-00 00:00:00'),(170104,10,'T81.503D ','Unspecified complication of foreign body accidentally left in body following injection or immunization, subsequent encounter','Y','0000-00-00 00:00:00'),(170105,10,'T81.503S ','Unspecified complication of foreign body accidentally left in body following injection or immunization, sequela','Y','0000-00-00 00:00:00'),(170106,10,'T81.504A ','Unspecified complication of foreign body accidentally left in body following endoscopic examination, initial encounter','Y','0000-00-00 00:00:00'),(170107,10,'T81.504D ','Unspecified complication of foreign body accidentally left in body following endoscopic examination, subsequent encounter','Y','0000-00-00 00:00:00'),(170108,10,'T81.504S ','Unspecified complication of foreign body accidentally left in body following endoscopic examination, sequela','Y','0000-00-00 00:00:00'),(170109,10,'T81.505A ','Unspecified complication of foreign body accidentally left in body following heart catheterization, initial encounter','Y','0000-00-00 00:00:00'),(170110,10,'T81.505D ','Unspecified complication of foreign body accidentally left in body following heart catheterization, subsequent encounter','Y','0000-00-00 00:00:00'),(170111,10,'T81.505S ','Unspecified complication of foreign body accidentally left in body following heart catheterization, sequela','Y','0000-00-00 00:00:00'),(170112,10,'T81.506A ','Unspecified complication of foreign body accidentally left in body following aspiration, puncture or other catheterization, initial encounter','Y','0000-00-00 00:00:00'),(170113,10,'T81.506D ','Unspecified complication of foreign body accidentally left in body following aspiration, puncture or other catheterization, subsequent encounter','Y','0000-00-00 00:00:00'),(170114,10,'T81.506S ','Unspecified complication of foreign body accidentally left in body following aspiration, puncture or other catheterization, sequela','Y','0000-00-00 00:00:00'),(170115,10,'T81.507A ','Unspecified complication of foreign body accidentally left in body following removal of catheter or packing, initial encounter','Y','0000-00-00 00:00:00'),(170116,10,'T81.507D ','Unspecified complication of foreign body accidentally left in body following removal of catheter or packing, subsequent encounter','Y','0000-00-00 00:00:00'),(170117,10,'T81.507S ','Unspecified complication of foreign body accidentally left in body following removal of catheter or packing, sequela','Y','0000-00-00 00:00:00'),(170118,10,'T81.508A ','Unspecified complication of foreign body accidentally left in body following other procedure, initial encounter','Y','0000-00-00 00:00:00'),(170119,10,'T81.508D ','Unspecified complication of foreign body accidentally left in body following other procedure, subsequent encounter','Y','0000-00-00 00:00:00'),(170120,10,'T81.508S ','Unspecified complication of foreign body accidentally left in body following other procedure, sequela','Y','0000-00-00 00:00:00'),(170121,10,'T81.509A ','Unspecified complication of foreign body accidentally left in body following unspecified procedure, initial encounter','Y','0000-00-00 00:00:00'),(170122,10,'T81.509D ','Unspecified complication of foreign body accidentally left in body following unspecified procedure, subsequent encounter','Y','0000-00-00 00:00:00'),(170123,10,'T81.509S ','Unspecified complication of foreign body accidentally left in body following unspecified procedure, sequela','Y','0000-00-00 00:00:00'),(170124,10,'T81.510A ','Adhesions due to foreign body accidentally left in body following surgical operation, initial encounter','Y','0000-00-00 00:00:00'),(170125,10,'T81.510D ','Adhesions due to foreign body accidentally left in body following surgical operation, subsequent encounter','Y','0000-00-00 00:00:00'),(170126,10,'T81.510S ','Adhesions due to foreign body accidentally left in body following surgical operation, sequela','Y','0000-00-00 00:00:00'),(170127,10,'T81.511A ','Adhesions due to foreign body accidentally left in body following infusion or transfusion, initial encounter','Y','0000-00-00 00:00:00'),(170128,10,'T81.511D ','Adhesions due to foreign body accidentally left in body following infusion or transfusion, subsequent encounter','Y','0000-00-00 00:00:00'),(170129,10,'T81.511S ','Adhesions due to foreign body accidentally left in body following infusion or transfusion, sequela','Y','0000-00-00 00:00:00'),(170130,10,'T81.512A ','Adhesions due to foreign body accidentally left in body following kidney dialysis, initial encounter','Y','0000-00-00 00:00:00'),(170131,10,'T81.512D ','Adhesions due to foreign body accidentally left in body following kidney dialysis, subsequent encounter','Y','0000-00-00 00:00:00'),(170132,10,'T81.512S ','Adhesions due to foreign body accidentally left in body following kidney dialysis, sequela','Y','0000-00-00 00:00:00'),(170133,10,'T81.513A ','Adhesions due to foreign body accidentally left in body following injection or immunization, initial encounter','Y','0000-00-00 00:00:00'),(170134,10,'T81.513D ','Adhesions due to foreign body accidentally left in body following injection or immunization, subsequent encounter','Y','0000-00-00 00:00:00'),(170135,10,'T81.513S ','Adhesions due to foreign body accidentally left in body following injection or immunization, sequela','Y','0000-00-00 00:00:00'),(170136,10,'T81.514A ','Adhesions due to foreign body accidentally left in body following endoscopic examination, initial encounter','Y','0000-00-00 00:00:00'),(170137,10,'T81.514D ','Adhesions due to foreign body accidentally left in body following endoscopic examination, subsequent encounter','Y','0000-00-00 00:00:00'),(170138,10,'T81.514S ','Adhesions due to foreign body accidentally left in body following endoscopic examination, sequela','Y','0000-00-00 00:00:00'),(170139,10,'T81.515A ','Adhesions due to foreign body accidentally left in body following heart catheterization, initial encounter','Y','0000-00-00 00:00:00'),(170140,10,'T81.515D ','Adhesions due to foreign body accidentally left in body following heart catheterization, subsequent encounter','Y','0000-00-00 00:00:00'),(170141,10,'T81.515S ','Adhesions due to foreign body accidentally left in body following heart catheterization, sequela','Y','0000-00-00 00:00:00'),(170142,10,'T81.516A ','Adhesions due to foreign body accidentally left in body following aspiration, puncture or other catheterization, initial encounter','Y','0000-00-00 00:00:00'),(170143,10,'T81.516D ','Adhesions due to foreign body accidentally left in body following aspiration, puncture or other catheterization, subsequent encounter','Y','0000-00-00 00:00:00'),(170144,10,'T81.516S ','Adhesions due to foreign body accidentally left in body following aspiration, puncture or other catheterization, sequela','Y','0000-00-00 00:00:00'),(170145,10,'T81.517A ','Adhesions due to foreign body accidentally left in body following removal of catheter or packing, initial encounter','Y','0000-00-00 00:00:00'),(170146,10,'T81.517D ','Adhesions due to foreign body accidentally left in body following removal of catheter or packing, subsequent encounter','Y','0000-00-00 00:00:00'),(170147,10,'T81.517S ','Adhesions due to foreign body accidentally left in body following removal of catheter or packing, sequela','Y','0000-00-00 00:00:00'),(170148,10,'T81.518A ','Adhesions due to foreign body accidentally left in body following other procedure, initial encounter','Y','0000-00-00 00:00:00'),(170149,10,'T81.518D ','Adhesions due to foreign body accidentally left in body following other procedure, subsequent encounter','Y','0000-00-00 00:00:00'),(170150,10,'T81.518S ','Adhesions due to foreign body accidentally left in body following other procedure, sequela','Y','0000-00-00 00:00:00'),(170151,10,'T81.519A ','Adhesions due to foreign body accidentally left in body following unspecified procedure, initial encounter','Y','0000-00-00 00:00:00'),(170152,10,'T81.519D ','Adhesions due to foreign body accidentally left in body following unspecified procedure, subsequent encounter','Y','0000-00-00 00:00:00'),(170153,10,'T81.519S ','Adhesions due to foreign body accidentally left in body following unspecified procedure, sequela','Y','0000-00-00 00:00:00'),(170154,10,'T81.520A ','Obstruction due to foreign body accidentally left in body following surgical operation, initial encounter','Y','0000-00-00 00:00:00'),(170155,10,'T81.520D ','Obstruction due to foreign body accidentally left in body following surgical operation, subsequent encounter','Y','0000-00-00 00:00:00'),(170156,10,'T81.520S ','Obstruction due to foreign body accidentally left in body following surgical operation, sequela','Y','0000-00-00 00:00:00'),(170157,10,'T81.521A ','Obstruction due to foreign body accidentally left in body following infusion or transfusion, initial encounter','Y','0000-00-00 00:00:00'),(170158,10,'T81.521D ','Obstruction due to foreign body accidentally left in body following infusion or transfusion, subsequent encounter','Y','0000-00-00 00:00:00'),(170159,10,'T81.521S ','Obstruction due to foreign body accidentally left in body following infusion or transfusion, sequela','Y','0000-00-00 00:00:00'),(170160,10,'T81.522A ','Obstruction due to foreign body accidentally left in body following kidney dialysis, initial encounter','Y','0000-00-00 00:00:00'),(170161,10,'T81.522D ','Obstruction due to foreign body accidentally left in body following kidney dialysis, subsequent encounter','Y','0000-00-00 00:00:00'),(170162,10,'T81.522S ','Obstruction due to foreign body accidentally left in body following kidney dialysis, sequela','Y','0000-00-00 00:00:00'),(170163,10,'T81.523A ','Obstruction due to foreign body accidentally left in body following injection or immunization, initial encounter','Y','0000-00-00 00:00:00'),(170164,10,'T81.523D ','Obstruction due to foreign body accidentally left in body following injection or immunization, subsequent encounter','Y','0000-00-00 00:00:00'),(170165,10,'T81.523S ','Obstruction due to foreign body accidentally left in body following injection or immunization, sequela','Y','0000-00-00 00:00:00'),(170166,10,'T81.524A ','Obstruction due to foreign body accidentally left in body following endoscopic examination, initial encounter','Y','0000-00-00 00:00:00'),(170167,10,'T81.524D ','Obstruction due to foreign body accidentally left in body following endoscopic examination, subsequent encounter','Y','0000-00-00 00:00:00'),(170168,10,'T81.524S ','Obstruction due to foreign body accidentally left in body following endoscopic examination, sequela','Y','0000-00-00 00:00:00'),(170169,10,'T81.525A ','Obstruction due to foreign body accidentally left in body following heart catheterization, initial encounter','Y','0000-00-00 00:00:00'),(170170,10,'T81.525D ','Obstruction due to foreign body accidentally left in body following heart catheterization, subsequent encounter','Y','0000-00-00 00:00:00'),(170171,10,'T81.525S ','Obstruction due to foreign body accidentally left in body following heart catheterization, sequela','Y','0000-00-00 00:00:00'),(170172,10,'T81.526A ','Obstruction due to foreign body accidentally left in body following aspiration, puncture or other catheterization, initial encounter','Y','0000-00-00 00:00:00'),(170173,10,'T81.526D ','Obstruction due to foreign body accidentally left in body following aspiration, puncture or other catheterization, subsequent encounter','Y','0000-00-00 00:00:00'),(170174,10,'T81.526S ','Obstruction due to foreign body accidentally left in body following aspiration, puncture or other catheterization, sequela','Y','0000-00-00 00:00:00'),(170175,10,'T81.527A ','Obstruction due to foreign body accidentally left in body following removal of catheter or packing, initial encounter','Y','0000-00-00 00:00:00'),(170176,10,'T81.527D ','Obstruction due to foreign body accidentally left in body following removal of catheter or packing, subsequent encounter','Y','0000-00-00 00:00:00'),(170177,10,'T81.527S ','Obstruction due to foreign body accidentally left in body following removal of catheter or packing, sequela','Y','0000-00-00 00:00:00'),(170178,10,'T81.528A ','Obstruction due to foreign body accidentally left in body following other procedure, initial encounter','Y','0000-00-00 00:00:00'),(170179,10,'T81.528D ','Obstruction due to foreign body accidentally left in body following other procedure, subsequent encounter','Y','0000-00-00 00:00:00'),(170180,10,'T81.528S ','Obstruction due to foreign body accidentally left in body following other procedure, sequela','Y','0000-00-00 00:00:00'),(170181,10,'T81.529A ','Obstruction due to foreign body accidentally left in body following unspecified procedure, initial encounter','Y','0000-00-00 00:00:00'),(170182,10,'T81.529D ','Obstruction due to foreign body accidentally left in body following unspecified procedure, subsequent encounter','Y','0000-00-00 00:00:00'),(170183,10,'T81.529S ','Obstruction due to foreign body accidentally left in body following unspecified procedure, sequela','Y','0000-00-00 00:00:00'),(170184,10,'T81.530A ','Perforation due to foreign body accidentally left in body following surgical operation, initial encounter','Y','0000-00-00 00:00:00'),(170185,10,'T81.530D ','Perforation due to foreign body accidentally left in body following surgical operation, subsequent encounter','Y','0000-00-00 00:00:00'),(170186,10,'T81.530S ','Perforation due to foreign body accidentally left in body following surgical operation, sequela','Y','0000-00-00 00:00:00'),(170187,10,'T81.531A ','Perforation due to foreign body accidentally left in body following infusion or transfusion, initial encounter','Y','0000-00-00 00:00:00'),(170188,10,'T81.531D ','Perforation due to foreign body accidentally left in body following infusion or transfusion, subsequent encounter','Y','0000-00-00 00:00:00'),(170189,10,'T81.531S ','Perforation due to foreign body accidentally left in body following infusion or transfusion, sequela','Y','0000-00-00 00:00:00'),(170190,10,'T81.532A ','Perforation due to foreign body accidentally left in body following kidney dialysis, initial encounter','Y','0000-00-00 00:00:00'),(170191,10,'T81.532D ','Perforation due to foreign body accidentally left in body following kidney dialysis, subsequent encounter','Y','0000-00-00 00:00:00'),(170192,10,'T81.532S ','Perforation due to foreign body accidentally left in body following kidney dialysis, sequela','Y','0000-00-00 00:00:00'),(170193,10,'T81.533A ','Perforation due to foreign body accidentally left in body following injection or immunization, initial encounter','Y','0000-00-00 00:00:00'),(170194,10,'T81.533D ','Perforation due to foreign body accidentally left in body following injection or immunization, subsequent encounter','Y','0000-00-00 00:00:00'),(170195,10,'T81.533S ','Perforation due to foreign body accidentally left in body following injection or immunization, sequela','Y','0000-00-00 00:00:00'),(170196,10,'T81.534A ','Perforation due to foreign body accidentally left in body following endoscopic examination, initial encounter','Y','0000-00-00 00:00:00'),(170197,10,'T81.534D ','Perforation due to foreign body accidentally left in body following endoscopic examination, subsequent encounter','Y','0000-00-00 00:00:00'),(170198,10,'T81.534S ','Perforation due to foreign body accidentally left in body following endoscopic examination, sequela','Y','0000-00-00 00:00:00'),(170199,10,'T81.535A ','Perforation due to foreign body accidentally left in body following heart catheterization, initial encounter','Y','0000-00-00 00:00:00'),(170200,10,'T81.535D ','Perforation due to foreign body accidentally left in body following heart catheterization, subsequent encounter','Y','0000-00-00 00:00:00'),(170201,10,'T81.535S ','Perforation due to foreign body accidentally left in body following heart catheterization, sequela','Y','0000-00-00 00:00:00'),(170202,10,'T81.536A ','Perforation due to foreign body accidentally left in body following aspiration, puncture or other catheterization, initial encounter','Y','0000-00-00 00:00:00'),(170203,10,'T81.536D ','Perforation due to foreign body accidentally left in body following aspiration, puncture or other catheterization, subsequent encounter','Y','0000-00-00 00:00:00'),(170204,10,'T81.536S ','Perforation due to foreign body accidentally left in body following aspiration, puncture or other catheterization, sequela','Y','0000-00-00 00:00:00'),(170205,10,'T81.537A ','Perforation due to foreign body accidentally left in body following removal of catheter or packing, initial encounter','Y','0000-00-00 00:00:00'),(170206,10,'T81.537D ','Perforation due to foreign body accidentally left in body following removal of catheter or packing, subsequent encounter','Y','0000-00-00 00:00:00'),(170207,10,'T81.537S ','Perforation due to foreign body accidentally left in body following removal of catheter or packing, sequela','Y','0000-00-00 00:00:00'),(170208,10,'T81.538A ','Perforation due to foreign body accidentally left in body following other procedure, initial encounter','Y','0000-00-00 00:00:00'),(170209,10,'T81.538D ','Perforation due to foreign body accidentally left in body following other procedure, subsequent encounter','Y','0000-00-00 00:00:00'),(170210,10,'T81.538S ','Perforation due to foreign body accidentally left in body following other procedure, sequela','Y','0000-00-00 00:00:00'),(170211,10,'T81.539A ','Perforation due to foreign body accidentally left in body following unspecified procedure, initial encounter','Y','0000-00-00 00:00:00'),(170212,10,'T81.539D ','Perforation due to foreign body accidentally left in body following unspecified procedure, subsequent encounter','Y','0000-00-00 00:00:00'),(170213,10,'T81.539S ','Perforation due to foreign body accidentally left in body following unspecified procedure, sequela','Y','0000-00-00 00:00:00'),(170214,10,'T81.590A ','Other complications of foreign body accidentally left in body following surgical operation, initial encounter','Y','0000-00-00 00:00:00'),(170215,10,'T81.590D ','Other complications of foreign body accidentally left in body following surgical operation, subsequent encounter','Y','0000-00-00 00:00:00'),(170216,10,'T81.590S ','Other complications of foreign body accidentally left in body following surgical operation, sequela','Y','0000-00-00 00:00:00'),(170217,10,'T81.591A ','Other complications of foreign body accidentally left in body following infusion or transfusion, initial encounter','Y','0000-00-00 00:00:00'),(170218,10,'T81.591D ','Other complications of foreign body accidentally left in body following infusion or transfusion, subsequent encounter','Y','0000-00-00 00:00:00'),(170219,10,'T81.591S ','Other complications of foreign body accidentally left in body following infusion or transfusion, sequela','Y','0000-00-00 00:00:00'),(170220,10,'T81.592A ','Other complications of foreign body accidentally left in body following kidney dialysis, initial encounter','Y','0000-00-00 00:00:00'),(170221,10,'T81.592D ','Other complications of foreign body accidentally left in body following kidney dialysis, subsequent encounter','Y','0000-00-00 00:00:00'),(170222,10,'T81.592S ','Other complications of foreign body accidentally left in body following kidney dialysis, sequela','Y','0000-00-00 00:00:00'),(170223,10,'T81.593A ','Other complications of foreign body accidentally left in body following injection or immunization, initial encounter','Y','0000-00-00 00:00:00'),(170224,10,'T81.593D ','Other complications of foreign body accidentally left in body following injection or immunization, subsequent encounter','Y','0000-00-00 00:00:00'),(170225,10,'T81.593S ','Other complications of foreign body accidentally left in body following injection or immunization, sequela','Y','0000-00-00 00:00:00'),(170226,10,'T81.594A ','Other complications of foreign body accidentally left in body following endoscopic examination, initial encounter','Y','0000-00-00 00:00:00'),(170227,10,'T81.594D ','Other complications of foreign body accidentally left in body following endoscopic examination, subsequent encounter','Y','0000-00-00 00:00:00'),(170228,10,'T81.594S ','Other complications of foreign body accidentally left in body following endoscopic examination, sequela','Y','0000-00-00 00:00:00'),(170229,10,'T81.595A ','Other complications of foreign body accidentally left in body following heart catheterization, initial encounter','Y','0000-00-00 00:00:00'),(170230,10,'T81.595D ','Other complications of foreign body accidentally left in body following heart catheterization, subsequent encounter','Y','0000-00-00 00:00:00'),(170231,10,'T81.595S ','Other complications of foreign body accidentally left in body following heart catheterization, sequela','Y','0000-00-00 00:00:00'),(170232,10,'T81.596A ','Other complications of foreign body accidentally left in body following aspiration, puncture or other catheterization, initial encounter','Y','0000-00-00 00:00:00'),(170233,10,'T81.596D ','Other complications of foreign body accidentally left in body following aspiration, puncture or other catheterization, subsequent encounter','Y','0000-00-00 00:00:00'),(170234,10,'T81.596S ','Other complications of foreign body accidentally left in body following aspiration, puncture or other catheterization, sequela','Y','0000-00-00 00:00:00'),(170235,10,'T81.597A ','Other complications of foreign body accidentally left in body following removal of catheter or packing, initial encounter','Y','0000-00-00 00:00:00'),(170236,10,'T81.597D ','Other complications of foreign body accidentally left in body following removal of catheter or packing, subsequent encounter','Y','0000-00-00 00:00:00'),(170237,10,'T81.597S ','Other complications of foreign body accidentally left in body following removal of catheter or packing, sequela','Y','0000-00-00 00:00:00'),(170238,10,'T81.598A ','Other complications of foreign body accidentally left in body following other procedure, initial encounter','Y','0000-00-00 00:00:00'),(170239,10,'T81.598D ','Other complications of foreign body accidentally left in body following other procedure, subsequent encounter','Y','0000-00-00 00:00:00'),(170240,10,'T81.598S ','Other complications of foreign body accidentally left in body following other procedure, sequela','Y','0000-00-00 00:00:00'),(170241,10,'T81.599A ','Other complications of foreign body accidentally left in body following unspecified procedure, initial encounter','Y','0000-00-00 00:00:00'),(170242,10,'T81.599D ','Other complications of foreign body accidentally left in body following unspecified procedure, subsequent encounter','Y','0000-00-00 00:00:00'),(170243,10,'T81.599S ','Other complications of foreign body accidentally left in body following unspecified procedure, sequela','Y','0000-00-00 00:00:00'),(170244,10,'T81.60XA ','Unspecified acute reaction to foreign substance accidentally left during a procedure, initial encounter','Y','0000-00-00 00:00:00'),(170245,10,'T81.60XD ','Unspecified acute reaction to foreign substance accidentally left during a procedure, subsequent encounter','Y','0000-00-00 00:00:00'),(170246,10,'T81.60XS ','Unspecified acute reaction to foreign substance accidentally left during a procedure, sequela','Y','0000-00-00 00:00:00'),(170247,10,'T81.61XA ','Aseptic peritonitis due to foreign substance accidentally left during a procedure, initial encounter','Y','0000-00-00 00:00:00'),(170248,10,'T81.61XD ','Aseptic peritonitis due to foreign substance accidentally left during a procedure, subsequent encounter','Y','0000-00-00 00:00:00'),(170249,10,'T81.61XS ','Aseptic peritonitis due to foreign substance accidentally left during a procedure, sequela','Y','0000-00-00 00:00:00'),(170250,10,'T81.69XA ','Other acute reaction to foreign substance accidentally left during a procedure, initial encounter','Y','0000-00-00 00:00:00'),(170251,10,'T81.69XD ','Other acute reaction to foreign substance accidentally left during a procedure, subsequent encounter','Y','0000-00-00 00:00:00'),(170252,10,'T81.69XS ','Other acute reaction to foreign substance accidentally left during a procedure, sequela','Y','0000-00-00 00:00:00'),(170253,10,'T81.710A ','Complication of mesenteric artery following a procedure, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(170254,10,'T81.710D ','Complication of mesenteric artery following a procedure, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(170255,10,'T81.710S ','Complication of mesenteric artery following a procedure, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(170256,10,'T81.711A ','Complication of renal artery following a procedure, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(170257,10,'T81.711D ','Complication of renal artery following a procedure, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(170258,10,'T81.711S ','Complication of renal artery following a procedure, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(170259,10,'T81.718A ','Complication of other artery following a procedure, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(170260,10,'T81.718D ','Complication of other artery following a procedure, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(170261,10,'T81.718S ','Complication of other artery following a procedure, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(170262,10,'T81.719A ','Complication of unspecified artery following a procedure, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(170263,10,'T81.719D ','Complication of unspecified artery following a procedure, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(170264,10,'T81.719S ','Complication of unspecified artery following a procedure, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(170265,10,'T81.72XA ','Complication of vein following a procedure, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(170266,10,'T81.72XD ','Complication of vein following a procedure, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(170267,10,'T81.72XS ','Complication of vein following a procedure, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(170268,10,'T81.81XA ','Complication of inhalation therapy, initial encounter','Y','0000-00-00 00:00:00'),(170269,10,'T81.81XD ','Complication of inhalation therapy, subsequent encounter','Y','0000-00-00 00:00:00'),(170270,10,'T81.81XS ','Complication of inhalation therapy, sequela','Y','0000-00-00 00:00:00'),(170271,10,'T81.82XA ','Emphysema (subcutaneous) resulting from a procedure, initial encounter','Y','0000-00-00 00:00:00'),(170272,10,'T81.82XD ','Emphysema (subcutaneous) resulting from a procedure, subsequent encounter','Y','0000-00-00 00:00:00'),(170273,10,'T81.82XS ','Emphysema (subcutaneous) resulting from a procedure, sequela','Y','0000-00-00 00:00:00'),(170274,10,'T81.83XA ','Persistent postprocedural fistula, initial encounter','Y','0000-00-00 00:00:00'),(170275,10,'T81.83XD ','Persistent postprocedural fistula, subsequent encounter','Y','0000-00-00 00:00:00'),(170276,10,'T81.83XS ','Persistent postprocedural fistula, sequela','Y','0000-00-00 00:00:00'),(170277,10,'T81.89XA ','Other complications of procedures, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(170278,10,'T81.89XD ','Other complications of procedures, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(170279,10,'T81.89XS ','Other complications of procedures, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(170280,10,'T81.9XXA ','Unspecified complication of procedure, initial encounter','Y','0000-00-00 00:00:00'),(170281,10,'T81.9XXD ','Unspecified complication of procedure, subsequent encounter','Y','0000-00-00 00:00:00'),(170282,10,'T81.9XXS ','Unspecified complication of procedure, sequela','Y','0000-00-00 00:00:00'),(170283,10,'T82.01XA ','Breakdown (mechanical) of heart valve prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170284,10,'T82.01XD ','Breakdown (mechanical) of heart valve prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170285,10,'T82.01XS ','Breakdown (mechanical) of heart valve prosthesis, sequela','Y','0000-00-00 00:00:00'),(170286,10,'T82.02XA ','Displacement of heart valve prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170287,10,'T82.02XD ','Displacement of heart valve prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170288,10,'T82.02XS ','Displacement of heart valve prosthesis, sequela','Y','0000-00-00 00:00:00'),(170289,10,'T82.03XA ','Leakage of heart valve prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170290,10,'T82.03XD ','Leakage of heart valve prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170291,10,'T82.03XS ','Leakage of heart valve prosthesis, sequela','Y','0000-00-00 00:00:00'),(170292,10,'T82.09XA ','Other mechanical complication of heart valve prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170293,10,'T82.09XD ','Other mechanical complication of heart valve prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170294,10,'T82.09XS ','Other mechanical complication of heart valve prosthesis, sequela','Y','0000-00-00 00:00:00'),(170295,10,'T82.110A ','Breakdown (mechanical) of cardiac electrode, initial encounter','Y','0000-00-00 00:00:00'),(170296,10,'T82.110D ','Breakdown (mechanical) of cardiac electrode, subsequent encounter','Y','0000-00-00 00:00:00'),(170297,10,'T82.110S ','Breakdown (mechanical) of cardiac electrode, sequela','Y','0000-00-00 00:00:00'),(170298,10,'T82.111A ','Breakdown (mechanical) of cardiac pulse generator (battery), initial encounter','Y','0000-00-00 00:00:00'),(170299,10,'T82.111D ','Breakdown (mechanical) of cardiac pulse generator (battery), subsequent encounter','Y','0000-00-00 00:00:00'),(170300,10,'T82.111S ','Breakdown (mechanical) of cardiac pulse generator (battery), sequela','Y','0000-00-00 00:00:00'),(170301,10,'T82.118A ','Breakdown (mechanical) of other cardiac electronic device, initial encounter','Y','0000-00-00 00:00:00'),(170302,10,'T82.118D ','Breakdown (mechanical) of other cardiac electronic device, subsequent encounter','Y','0000-00-00 00:00:00'),(170303,10,'T82.118S ','Breakdown (mechanical) of other cardiac electronic device, sequela','Y','0000-00-00 00:00:00'),(170304,10,'T82.119A ','Breakdown (mechanical) of unspecified cardiac electronic device, initial encounter','Y','0000-00-00 00:00:00'),(170305,10,'T82.119D ','Breakdown (mechanical) of unspecified cardiac electronic device, subsequent encounter','Y','0000-00-00 00:00:00'),(170306,10,'T82.119S ','Breakdown (mechanical) of unspecified cardiac electronic device, sequela','Y','0000-00-00 00:00:00'),(170307,10,'T82.120A ','Displacement of cardiac electrode, initial encounter','Y','0000-00-00 00:00:00'),(170308,10,'T82.120D ','Displacement of cardiac electrode, subsequent encounter','Y','0000-00-00 00:00:00'),(170309,10,'T82.120S ','Displacement of cardiac electrode, sequela','Y','0000-00-00 00:00:00'),(170310,10,'T82.121A ','Displacement of cardiac pulse generator (battery), initial encounter','Y','0000-00-00 00:00:00'),(170311,10,'T82.121D ','Displacement of cardiac pulse generator (battery), subsequent encounter','Y','0000-00-00 00:00:00'),(170312,10,'T82.121S ','Displacement of cardiac pulse generator (battery), sequela','Y','0000-00-00 00:00:00'),(170313,10,'T82.128A ','Displacement of other cardiac electronic device, initial encounter','Y','0000-00-00 00:00:00'),(170314,10,'T82.128D ','Displacement of other cardiac electronic device, subsequent encounter','Y','0000-00-00 00:00:00'),(170315,10,'T82.128S ','Displacement of other cardiac electronic device, sequela','Y','0000-00-00 00:00:00'),(170316,10,'T82.129A ','Displacement of unspecified cardiac electronic device, initial encounter','Y','0000-00-00 00:00:00'),(170317,10,'T82.129D ','Displacement of unspecified cardiac electronic device, subsequent encounter','Y','0000-00-00 00:00:00'),(170318,10,'T82.129S ','Displacement of unspecified cardiac electronic device, sequela','Y','0000-00-00 00:00:00'),(170319,10,'T82.190A ','Other mechanical complication of cardiac electrode, initial encounter','Y','0000-00-00 00:00:00'),(170320,10,'T82.190D ','Other mechanical complication of cardiac electrode, subsequent encounter','Y','0000-00-00 00:00:00'),(170321,10,'T82.190S ','Other mechanical complication of cardiac electrode, sequela','Y','0000-00-00 00:00:00'),(170322,10,'T82.191A ','Other mechanical complication of cardiac pulse generator (battery), initial encounter','Y','0000-00-00 00:00:00'),(170323,10,'T82.191D ','Other mechanical complication of cardiac pulse generator (battery), subsequent encounter','Y','0000-00-00 00:00:00'),(170324,10,'T82.191S ','Other mechanical complication of cardiac pulse generator (battery), sequela','Y','0000-00-00 00:00:00'),(170325,10,'T82.198A ','Other mechanical complication of other cardiac electronic device, initial encounter','Y','0000-00-00 00:00:00'),(170326,10,'T82.198D ','Other mechanical complication of other cardiac electronic device, subsequent encounter','Y','0000-00-00 00:00:00'),(170327,10,'T82.198S ','Other mechanical complication of other cardiac electronic device, sequela','Y','0000-00-00 00:00:00'),(170328,10,'T82.199A ','Other mechanical complication of unspecified cardiac device, initial encounter','Y','0000-00-00 00:00:00'),(170329,10,'T82.199D ','Other mechanical complication of unspecified cardiac device, subsequent encounter','Y','0000-00-00 00:00:00'),(170330,10,'T82.199S ','Other mechanical complication of unspecified cardiac device, sequela','Y','0000-00-00 00:00:00'),(170331,10,'T82.211A ','Breakdown (mechanical) of coronary artery bypass graft, initial encounter','Y','0000-00-00 00:00:00'),(170332,10,'T82.211D ','Breakdown (mechanical) of coronary artery bypass graft, subsequent encounter','Y','0000-00-00 00:00:00'),(170333,10,'T82.211S ','Breakdown (mechanical) of coronary artery bypass graft, sequela','Y','0000-00-00 00:00:00'),(170334,10,'T82.212A ','Displacement of coronary artery bypass graft, initial encounter','Y','0000-00-00 00:00:00'),(170335,10,'T82.212D ','Displacement of coronary artery bypass graft, subsequent encounter','Y','0000-00-00 00:00:00'),(170336,10,'T82.212S ','Displacement of coronary artery bypass graft, sequela','Y','0000-00-00 00:00:00'),(170337,10,'T82.213A ','Leakage of coronary artery bypass graft, initial encounter','Y','0000-00-00 00:00:00'),(170338,10,'T82.213D ','Leakage of coronary artery bypass graft, subsequent encounter','Y','0000-00-00 00:00:00'),(170339,10,'T82.213S ','Leakage of coronary artery bypass graft, sequela','Y','0000-00-00 00:00:00'),(170340,10,'T82.218A ','Other mechanical complication of coronary artery bypass graft, initial encounter','Y','0000-00-00 00:00:00'),(170341,10,'T82.218D ','Other mechanical complication of coronary artery bypass graft, subsequent encounter','Y','0000-00-00 00:00:00'),(170342,10,'T82.218S ','Other mechanical complication of coronary artery bypass graft, sequela','Y','0000-00-00 00:00:00'),(170343,10,'T82.221A ','Breakdown (mechanical) of biological heart valve graft, initial encounter','Y','0000-00-00 00:00:00'),(170344,10,'T82.221D ','Breakdown (mechanical) of biological heart valve graft, subsequent encounter','Y','0000-00-00 00:00:00'),(170345,10,'T82.221S ','Breakdown (mechanical) of biological heart valve graft, sequela','Y','0000-00-00 00:00:00'),(170346,10,'T82.222A ','Displacement of biological heart valve graft, initial encounter','Y','0000-00-00 00:00:00'),(170347,10,'T82.222D ','Displacement of biological heart valve graft, subsequent encounter','Y','0000-00-00 00:00:00'),(170348,10,'T82.222S ','Displacement of biological heart valve graft, sequela','Y','0000-00-00 00:00:00'),(170349,10,'T82.223A ','Leakage of biological heart valve graft, initial encounter','Y','0000-00-00 00:00:00'),(170350,10,'T82.223D ','Leakage of biological heart valve graft, subsequent encounter','Y','0000-00-00 00:00:00'),(170351,10,'T82.223S ','Leakage of biological heart valve graft, sequela','Y','0000-00-00 00:00:00'),(170352,10,'T82.228A ','Other mechanical complication of biological heart valve graft, initial encounter','Y','0000-00-00 00:00:00'),(170353,10,'T82.228D ','Other mechanical complication of biological heart valve graft, subsequent encounter','Y','0000-00-00 00:00:00'),(170354,10,'T82.228S ','Other mechanical complication of biological heart valve graft, sequela','Y','0000-00-00 00:00:00'),(170355,10,'T82.310A ','Breakdown (mechanical) of aortic (bifurcation) graft (replacement), initial encounter','Y','0000-00-00 00:00:00'),(170356,10,'T82.310D ','Breakdown (mechanical) of aortic (bifurcation) graft (replacement), subsequent encounter','Y','0000-00-00 00:00:00'),(170357,10,'T82.310S ','Breakdown (mechanical) of aortic (bifurcation) graft (replacement), sequela','Y','0000-00-00 00:00:00'),(170358,10,'T82.311A ','Breakdown (mechanical) of carotid arterial graft (bypass), initial encounter','Y','0000-00-00 00:00:00'),(170359,10,'T82.311D ','Breakdown (mechanical) of carotid arterial graft (bypass), subsequent encounter','Y','0000-00-00 00:00:00'),(170360,10,'T82.311S ','Breakdown (mechanical) of carotid arterial graft (bypass), sequela','Y','0000-00-00 00:00:00'),(170361,10,'T82.312A ','Breakdown (mechanical) of femoral arterial graft (bypass), initial encounter','Y','0000-00-00 00:00:00'),(170362,10,'T82.312D ','Breakdown (mechanical) of femoral arterial graft (bypass), subsequent encounter','Y','0000-00-00 00:00:00'),(170363,10,'T82.312S ','Breakdown (mechanical) of femoral arterial graft (bypass), sequela','Y','0000-00-00 00:00:00'),(170364,10,'T82.318A ','Breakdown (mechanical) of other vascular grafts, initial encounter','Y','0000-00-00 00:00:00'),(170365,10,'T82.318D ','Breakdown (mechanical) of other vascular grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170366,10,'T82.318S ','Breakdown (mechanical) of other vascular grafts, sequela','Y','0000-00-00 00:00:00'),(170367,10,'T82.319A ','Breakdown (mechanical) of unspecified vascular grafts, initial encounter','Y','0000-00-00 00:00:00'),(170368,10,'T82.319D ','Breakdown (mechanical) of unspecified vascular grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170369,10,'T82.319S ','Breakdown (mechanical) of unspecified vascular grafts, sequela','Y','0000-00-00 00:00:00'),(170370,10,'T82.320A ','Displacement of aortic (bifurcation) graft (replacement), initial encounter','Y','0000-00-00 00:00:00'),(170371,10,'T82.320D ','Displacement of aortic (bifurcation) graft (replacement), subsequent encounter','Y','0000-00-00 00:00:00'),(170372,10,'T82.320S ','Displacement of aortic (bifurcation) graft (replacement), sequela','Y','0000-00-00 00:00:00'),(170373,10,'T82.321A ','Displacement of carotid arterial graft (bypass), initial encounter','Y','0000-00-00 00:00:00'),(170374,10,'T82.321D ','Displacement of carotid arterial graft (bypass), subsequent encounter','Y','0000-00-00 00:00:00'),(170375,10,'T82.321S ','Displacement of carotid arterial graft (bypass), sequela','Y','0000-00-00 00:00:00'),(170376,10,'T82.322A ','Displacement of femoral arterial graft (bypass), initial encounter','Y','0000-00-00 00:00:00'),(170377,10,'T82.322D ','Displacement of femoral arterial graft (bypass), subsequent encounter','Y','0000-00-00 00:00:00'),(170378,10,'T82.322S ','Displacement of femoral arterial graft (bypass), sequela','Y','0000-00-00 00:00:00'),(170379,10,'T82.328A ','Displacement of other vascular grafts, initial encounter','Y','0000-00-00 00:00:00'),(170380,10,'T82.328D ','Displacement of other vascular grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170381,10,'T82.328S ','Displacement of other vascular grafts, sequela','Y','0000-00-00 00:00:00'),(170382,10,'T82.329A ','Displacement of unspecified vascular grafts, initial encounter','Y','0000-00-00 00:00:00'),(170383,10,'T82.329D ','Displacement of unspecified vascular grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170384,10,'T82.329S ','Displacement of unspecified vascular grafts, sequela','Y','0000-00-00 00:00:00'),(170385,10,'T82.330A ','Leakage of aortic (bifurcation) graft (replacement), initial encounter','Y','0000-00-00 00:00:00'),(170386,10,'T82.330D ','Leakage of aortic (bifurcation) graft (replacement), subsequent encounter','Y','0000-00-00 00:00:00'),(170387,10,'T82.330S ','Leakage of aortic (bifurcation) graft (replacement), sequela','Y','0000-00-00 00:00:00'),(170388,10,'T82.331A ','Leakage of carotid arterial graft (bypass), initial encounter','Y','0000-00-00 00:00:00'),(170389,10,'T82.331D ','Leakage of carotid arterial graft (bypass), subsequent encounter','Y','0000-00-00 00:00:00'),(170390,10,'T82.331S ','Leakage of carotid arterial graft (bypass), sequela','Y','0000-00-00 00:00:00'),(170391,10,'T82.332A ','Leakage of femoral arterial graft (bypass), initial encounter','Y','0000-00-00 00:00:00'),(170392,10,'T82.332D ','Leakage of femoral arterial graft (bypass), subsequent encounter','Y','0000-00-00 00:00:00'),(170393,10,'T82.332S ','Leakage of femoral arterial graft (bypass), sequela','Y','0000-00-00 00:00:00'),(170394,10,'T82.338A ','Leakage of other vascular grafts, initial encounter','Y','0000-00-00 00:00:00'),(170395,10,'T82.338D ','Leakage of other vascular grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170396,10,'T82.338S ','Leakage of other vascular grafts, sequela','Y','0000-00-00 00:00:00'),(170397,10,'T82.339A ','Leakage of unspecified vascular graft, initial encounter','Y','0000-00-00 00:00:00'),(170398,10,'T82.339D ','Leakage of unspecified vascular graft, subsequent encounter','Y','0000-00-00 00:00:00'),(170399,10,'T82.339S ','Leakage of unspecified vascular graft, sequela','Y','0000-00-00 00:00:00'),(170400,10,'T82.390A ','Other mechanical complication of aortic (bifurcation) graft (replacement), initial encounter','Y','0000-00-00 00:00:00'),(170401,10,'T82.390D ','Other mechanical complication of aortic (bifurcation) graft (replacement), subsequent encounter','Y','0000-00-00 00:00:00'),(170402,10,'T82.390S ','Other mechanical complication of aortic (bifurcation) graft (replacement), sequela','Y','0000-00-00 00:00:00'),(170403,10,'T82.391A ','Other mechanical complication of carotid arterial graft (bypass), initial encounter','Y','0000-00-00 00:00:00'),(170404,10,'T82.391D ','Other mechanical complication of carotid arterial graft (bypass), subsequent encounter','Y','0000-00-00 00:00:00'),(170405,10,'T82.391S ','Other mechanical complication of carotid arterial graft (bypass), sequela','Y','0000-00-00 00:00:00'),(170406,10,'T82.392A ','Other mechanical complication of femoral arterial graft (bypass), initial encounter','Y','0000-00-00 00:00:00'),(170407,10,'T82.392D ','Other mechanical complication of femoral arterial graft (bypass), subsequent encounter','Y','0000-00-00 00:00:00'),(170408,10,'T82.392S ','Other mechanical complication of femoral arterial graft (bypass), sequela','Y','0000-00-00 00:00:00'),(170409,10,'T82.398A ','Other mechanical complication of other vascular grafts, initial encounter','Y','0000-00-00 00:00:00'),(170410,10,'T82.398D ','Other mechanical complication of other vascular grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170411,10,'T82.398S ','Other mechanical complication of other vascular grafts, sequela','Y','0000-00-00 00:00:00'),(170412,10,'T82.399A ','Other mechanical complication of unspecified vascular grafts, initial encounter','Y','0000-00-00 00:00:00'),(170413,10,'T82.399D ','Other mechanical complication of unspecified vascular grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170414,10,'T82.399S ','Other mechanical complication of unspecified vascular grafts, sequela','Y','0000-00-00 00:00:00'),(170415,10,'T82.41XA ','Breakdown (mechanical) of vascular dialysis catheter, initial encounter','Y','0000-00-00 00:00:00'),(170416,10,'T82.41XD ','Breakdown (mechanical) of vascular dialysis catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170417,10,'T82.41XS ','Breakdown (mechanical) of vascular dialysis catheter, sequela','Y','0000-00-00 00:00:00'),(170418,10,'T82.42XA ','Displacement of vascular dialysis catheter, initial encounter','Y','0000-00-00 00:00:00'),(170419,10,'T82.42XD ','Displacement of vascular dialysis catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170420,10,'T82.42XS ','Displacement of vascular dialysis catheter, sequela','Y','0000-00-00 00:00:00'),(170421,10,'T82.43XA ','Leakage of vascular dialysis catheter, initial encounter','Y','0000-00-00 00:00:00'),(170422,10,'T82.43XD ','Leakage of vascular dialysis catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170423,10,'T82.43XS ','Leakage of vascular dialysis catheter, sequela','Y','0000-00-00 00:00:00'),(170424,10,'T82.49XA ','Other complication of vascular dialysis catheter, initial encounter','Y','0000-00-00 00:00:00'),(170425,10,'T82.49XD ','Other complication of vascular dialysis catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170426,10,'T82.49XS ','Other complication of vascular dialysis catheter, sequela','Y','0000-00-00 00:00:00'),(170427,10,'T82.510A ','Breakdown (mechanical) of surgically created arteriovenous fistula, initial encounter','Y','0000-00-00 00:00:00'),(170428,10,'T82.510D ','Breakdown (mechanical) of surgically created arteriovenous fistula, subsequent encounter','Y','0000-00-00 00:00:00'),(170429,10,'T82.510S ','Breakdown (mechanical) of surgically created arteriovenous fistula, sequela','Y','0000-00-00 00:00:00'),(170430,10,'T82.511A ','Breakdown (mechanical) of surgically created arteriovenous shunt, initial encounter','Y','0000-00-00 00:00:00'),(170431,10,'T82.511D ','Breakdown (mechanical) of surgically created arteriovenous shunt, subsequent encounter','Y','0000-00-00 00:00:00'),(170432,10,'T82.511S ','Breakdown (mechanical) of surgically created arteriovenous shunt, sequela','Y','0000-00-00 00:00:00'),(170433,10,'T82.512A ','Breakdown (mechanical) of artificial heart, initial encounter','Y','0000-00-00 00:00:00'),(170434,10,'T82.512D ','Breakdown (mechanical) of artificial heart, subsequent encounter','Y','0000-00-00 00:00:00'),(170435,10,'T82.512S ','Breakdown (mechanical) of artificial heart, sequela','Y','0000-00-00 00:00:00'),(170436,10,'T82.513A ','Breakdown (mechanical) of balloon (counterpulsation) device, initial encounter','Y','0000-00-00 00:00:00'),(170437,10,'T82.513D ','Breakdown (mechanical) of balloon (counterpulsation) device, subsequent encounter','Y','0000-00-00 00:00:00'),(170438,10,'T82.513S ','Breakdown (mechanical) of balloon (counterpulsation) device, sequela','Y','0000-00-00 00:00:00'),(170439,10,'T82.514A ','Breakdown (mechanical) of infusion catheter, initial encounter','Y','0000-00-00 00:00:00'),(170440,10,'T82.514D ','Breakdown (mechanical) of infusion catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170441,10,'T82.514S ','Breakdown (mechanical) of infusion catheter, sequela','Y','0000-00-00 00:00:00'),(170442,10,'T82.515A ','Breakdown (mechanical) of umbrella device, initial encounter','Y','0000-00-00 00:00:00'),(170443,10,'T82.515D ','Breakdown (mechanical) of umbrella device, subsequent encounter','Y','0000-00-00 00:00:00'),(170444,10,'T82.515S ','Breakdown (mechanical) of umbrella device, sequela','Y','0000-00-00 00:00:00'),(170445,10,'T82.518A ','Breakdown (mechanical) of other cardiac and vascular devices and implants, initial encounter','Y','0000-00-00 00:00:00'),(170446,10,'T82.518D ','Breakdown (mechanical) of other cardiac and vascular devices and implants, subsequent encounter','Y','0000-00-00 00:00:00'),(170447,10,'T82.518S ','Breakdown (mechanical) of other cardiac and vascular devices and implants, sequela','Y','0000-00-00 00:00:00'),(170448,10,'T82.519A ','Breakdown (mechanical) of unspecified cardiac and vascular devices and implants, initial encounter','Y','0000-00-00 00:00:00'),(170449,10,'T82.519D ','Breakdown (mechanical) of unspecified cardiac and vascular devices and implants, subsequent encounter','Y','0000-00-00 00:00:00'),(170450,10,'T82.519S ','Breakdown (mechanical) of unspecified cardiac and vascular devices and implants, sequela','Y','0000-00-00 00:00:00'),(170451,10,'T82.520A ','Displacement of surgically created arteriovenous fistula, initial encounter','Y','0000-00-00 00:00:00'),(170452,10,'T82.520D ','Displacement of surgically created arteriovenous fistula, subsequent encounter','Y','0000-00-00 00:00:00'),(170453,10,'T82.520S ','Displacement of surgically created arteriovenous fistula, sequela','Y','0000-00-00 00:00:00'),(170454,10,'T82.521A ','Displacement of surgically created arteriovenous shunt, initial encounter','Y','0000-00-00 00:00:00'),(170455,10,'T82.521D ','Displacement of surgically created arteriovenous shunt, subsequent encounter','Y','0000-00-00 00:00:00'),(170456,10,'T82.521S ','Displacement of surgically created arteriovenous shunt, sequela','Y','0000-00-00 00:00:00'),(170457,10,'T82.522A ','Displacement of artificial heart, initial encounter','Y','0000-00-00 00:00:00'),(170458,10,'T82.522D ','Displacement of artificial heart, subsequent encounter','Y','0000-00-00 00:00:00'),(170459,10,'T82.522S ','Displacement of artificial heart, sequela','Y','0000-00-00 00:00:00'),(170460,10,'T82.523A ','Displacement of balloon (counterpulsation) device, initial encounter','Y','0000-00-00 00:00:00'),(170461,10,'T82.523D ','Displacement of balloon (counterpulsation) device, subsequent encounter','Y','0000-00-00 00:00:00'),(170462,10,'T82.523S ','Displacement of balloon (counterpulsation) device, sequela','Y','0000-00-00 00:00:00'),(170463,10,'T82.524A ','Displacement of infusion catheter, initial encounter','Y','0000-00-00 00:00:00'),(170464,10,'T82.524D ','Displacement of infusion catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170465,10,'T82.524S ','Displacement of infusion catheter, sequela','Y','0000-00-00 00:00:00'),(170466,10,'T82.525A ','Displacement of umbrella device, initial encounter','Y','0000-00-00 00:00:00'),(170467,10,'T82.525D ','Displacement of umbrella device, subsequent encounter','Y','0000-00-00 00:00:00'),(170468,10,'T82.525S ','Displacement of umbrella device, sequela','Y','0000-00-00 00:00:00'),(170469,10,'T82.528A ','Displacement of other cardiac and vascular devices and implants, initial encounter','Y','0000-00-00 00:00:00'),(170470,10,'T82.528D ','Displacement of other cardiac and vascular devices and implants, subsequent encounter','Y','0000-00-00 00:00:00'),(170471,10,'T82.528S ','Displacement of other cardiac and vascular devices and implants, sequela','Y','0000-00-00 00:00:00'),(170472,10,'T82.529A ','Displacement of unspecified cardiac and vascular devices and implants, initial encounter','Y','0000-00-00 00:00:00'),(170473,10,'T82.529D ','Displacement of unspecified cardiac and vascular devices and implants, subsequent encounter','Y','0000-00-00 00:00:00'),(170474,10,'T82.529S ','Displacement of unspecified cardiac and vascular devices and implants, sequela','Y','0000-00-00 00:00:00'),(170475,10,'T82.530A ','Leakage of surgically created arteriovenous fistula, initial encounter','Y','0000-00-00 00:00:00'),(170476,10,'T82.530D ','Leakage of surgically created arteriovenous fistula, subsequent encounter','Y','0000-00-00 00:00:00'),(170477,10,'T82.530S ','Leakage of surgically created arteriovenous fistula, sequela','Y','0000-00-00 00:00:00'),(170478,10,'T82.531A ','Leakage of surgically created arteriovenous shunt, initial encounter','Y','0000-00-00 00:00:00'),(170479,10,'T82.531D ','Leakage of surgically created arteriovenous shunt, subsequent encounter','Y','0000-00-00 00:00:00'),(170480,10,'T82.531S ','Leakage of surgically created arteriovenous shunt, sequela','Y','0000-00-00 00:00:00'),(170481,10,'T82.532A ','Leakage of artificial heart, initial encounter','Y','0000-00-00 00:00:00'),(170482,10,'T82.532D ','Leakage of artificial heart, subsequent encounter','Y','0000-00-00 00:00:00'),(170483,10,'T82.532S ','Leakage of artificial heart, sequela','Y','0000-00-00 00:00:00'),(170484,10,'T82.533A ','Leakage of balloon (counterpulsation) device, initial encounter','Y','0000-00-00 00:00:00'),(170485,10,'T82.533D ','Leakage of balloon (counterpulsation) device, subsequent encounter','Y','0000-00-00 00:00:00'),(170486,10,'T82.533S ','Leakage of balloon (counterpulsation) device, sequela','Y','0000-00-00 00:00:00'),(170487,10,'T82.534A ','Leakage of infusion catheter, initial encounter','Y','0000-00-00 00:00:00'),(170488,10,'T82.534D ','Leakage of infusion catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170489,10,'T82.534S ','Leakage of infusion catheter, sequela','Y','0000-00-00 00:00:00'),(170490,10,'T82.535A ','Leakage of umbrella device, initial encounter','Y','0000-00-00 00:00:00'),(170491,10,'T82.535D ','Leakage of umbrella device, subsequent encounter','Y','0000-00-00 00:00:00'),(170492,10,'T82.535S ','Leakage of umbrella device, sequela','Y','0000-00-00 00:00:00'),(170493,10,'T82.538A ','Leakage of other cardiac and vascular devices and implants, initial encounter','Y','0000-00-00 00:00:00'),(170494,10,'T82.538D ','Leakage of other cardiac and vascular devices and implants, subsequent encounter','Y','0000-00-00 00:00:00'),(170495,10,'T82.538S ','Leakage of other cardiac and vascular devices and implants, sequela','Y','0000-00-00 00:00:00'),(170496,10,'T82.539A ','Leakage of unspecified cardiac and vascular devices and implants, initial encounter','Y','0000-00-00 00:00:00'),(170497,10,'T82.539D ','Leakage of unspecified cardiac and vascular devices and implants, subsequent encounter','Y','0000-00-00 00:00:00'),(170498,10,'T82.539S ','Leakage of unspecified cardiac and vascular devices and implants, sequela','Y','0000-00-00 00:00:00'),(170499,10,'T82.590A ','Other mechanical complication of surgically created arteriovenous fistula, initial encounter','Y','0000-00-00 00:00:00'),(170500,10,'T82.590D ','Other mechanical complication of surgically created arteriovenous fistula, subsequent encounter','Y','0000-00-00 00:00:00'),(170501,10,'T82.590S ','Other mechanical complication of surgically created arteriovenous fistula, sequela','Y','0000-00-00 00:00:00'),(170502,10,'T82.591A ','Other mechanical complication of surgically created arteriovenous shunt, initial encounter','Y','0000-00-00 00:00:00'),(170503,10,'T82.591D ','Other mechanical complication of surgically created arteriovenous shunt, subsequent encounter','Y','0000-00-00 00:00:00'),(170504,10,'T82.591S ','Other mechanical complication of surgically created arteriovenous shunt, sequela','Y','0000-00-00 00:00:00'),(170505,10,'T82.592A ','Other mechanical complication of artificial heart, initial encounter','Y','0000-00-00 00:00:00'),(170506,10,'T82.592D ','Other mechanical complication of artificial heart, subsequent encounter','Y','0000-00-00 00:00:00'),(170507,10,'T82.592S ','Other mechanical complication of artificial heart, sequela','Y','0000-00-00 00:00:00'),(170508,10,'T82.593A ','Other mechanical complication of balloon (counterpulsation) device, initial encounter','Y','0000-00-00 00:00:00'),(170509,10,'T82.593D ','Other mechanical complication of balloon (counterpulsation) device, subsequent encounter','Y','0000-00-00 00:00:00'),(170510,10,'T82.593S ','Other mechanical complication of balloon (counterpulsation) device, sequela','Y','0000-00-00 00:00:00'),(170511,10,'T82.594A ','Other mechanical complication of infusion catheter, initial encounter','Y','0000-00-00 00:00:00'),(170512,10,'T82.594D ','Other mechanical complication of infusion catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170513,10,'T82.594S ','Other mechanical complication of infusion catheter, sequela','Y','0000-00-00 00:00:00'),(170514,10,'T82.595A ','Other mechanical complication of umbrella device, initial encounter','Y','0000-00-00 00:00:00'),(170515,10,'T82.595D ','Other mechanical complication of umbrella device, subsequent encounter','Y','0000-00-00 00:00:00'),(170516,10,'T82.595S ','Other mechanical complication of umbrella device, sequela','Y','0000-00-00 00:00:00'),(170517,10,'T82.598A ','Other mechanical complication of other cardiac and vascular devices and implants, initial encounter','Y','0000-00-00 00:00:00'),(170518,10,'T82.598D ','Other mechanical complication of other cardiac and vascular devices and implants, subsequent encounter','Y','0000-00-00 00:00:00'),(170519,10,'T82.598S ','Other mechanical complication of other cardiac and vascular devices and implants, sequela','Y','0000-00-00 00:00:00'),(170520,10,'T82.599A ','Other mechanical complication of unspecified cardiac and vascular devices and implants, initial encounter','Y','0000-00-00 00:00:00'),(170521,10,'T82.599D ','Other mechanical complication of unspecified cardiac and vascular devices and implants, subsequent encounter','Y','0000-00-00 00:00:00'),(170522,10,'T82.599S ','Other mechanical complication of unspecified cardiac and vascular devices and implants, sequela','Y','0000-00-00 00:00:00'),(170523,10,'T82.6XXA ','Infection and inflammatory reaction due to cardiac valve prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170524,10,'T82.6XXD ','Infection and inflammatory reaction due to cardiac valve prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170525,10,'T82.6XXS ','Infection and inflammatory reaction due to cardiac valve prosthesis, sequela','Y','0000-00-00 00:00:00'),(170526,10,'T82.7XXA ','Infection and inflammatory reaction due to other cardiac and vascular devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170527,10,'T82.7XXD ','Infection and inflammatory reaction due to other cardiac and vascular devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170528,10,'T82.7XXS ','Infection and inflammatory reaction due to other cardiac and vascular devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170529,10,'T82.817A ','Embolism due to cardiac prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170530,10,'T82.817D ','Embolism due to cardiac prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170531,10,'T82.817S ','Embolism due to cardiac prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170532,10,'T82.818A ','Embolism due to vascular prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170533,10,'T82.818D ','Embolism due to vascular prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170534,10,'T82.818S ','Embolism due to vascular prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170535,10,'T82.827A ','Fibrosis due to cardiac prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170536,10,'T82.827D ','Fibrosis due to cardiac prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170537,10,'T82.827S ','Fibrosis due to cardiac prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170538,10,'T82.828A ','Fibrosis due to vascular prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170539,10,'T82.828D ','Fibrosis due to vascular prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170540,10,'T82.828S ','Fibrosis due to vascular prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170541,10,'T82.837A ','Hemorrhage due to cardiac prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170542,10,'T82.837D ','Hemorrhage due to cardiac prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170543,10,'T82.837S ','Hemorrhage due to cardiac prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170544,10,'T82.838A ','Hemorrhage due to vascular prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170545,10,'T82.838D ','Hemorrhage due to vascular prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170546,10,'T82.838S ','Hemorrhage due to vascular prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170547,10,'T82.847A ','Pain due to cardiac prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170548,10,'T82.847D ','Pain due to cardiac prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170549,10,'T82.847S ','Pain due to cardiac prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170550,10,'T82.848A ','Pain due to vascular prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170551,10,'T82.848D ','Pain due to vascular prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170552,10,'T82.848S ','Pain due to vascular prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170553,10,'T82.855A ','Stenosis of coronary artery stent, initial encounter','Y','0000-00-00 00:00:00'),(170554,10,'T82.855D ','Stenosis of coronary artery stent, subsequent encounter','Y','0000-00-00 00:00:00'),(170555,10,'T82.855S ','Stenosis of coronary artery stent, sequela','Y','0000-00-00 00:00:00'),(170556,10,'T82.856A ','Stenosis of peripheral vascular stent, initial encounter','Y','0000-00-00 00:00:00'),(170557,10,'T82.856D ','Stenosis of peripheral vascular stent, subsequent encounter','Y','0000-00-00 00:00:00'),(170558,10,'T82.856S ','Stenosis of peripheral vascular stent, sequela','Y','0000-00-00 00:00:00'),(170559,10,'T82.857A ','Stenosis of other cardiac prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170560,10,'T82.857D ','Stenosis of other cardiac prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170561,10,'T82.857S ','Stenosis of other cardiac prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170562,10,'T82.858A ','Stenosis of other vascular prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170563,10,'T82.858D ','Stenosis of other vascular prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170564,10,'T82.858S ','Stenosis of other vascular prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170565,10,'T82.867A ','Thrombosis due to cardiac prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170566,10,'T82.867D ','Thrombosis due to cardiac prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170567,10,'T82.867S ','Thrombosis due to cardiac prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170568,10,'T82.868A ','Thrombosis due to vascular prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170569,10,'T82.868D ','Thrombosis due to vascular prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170570,10,'T82.868S ','Thrombosis due to vascular prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170571,10,'T82.897A ','Other specified complication of cardiac prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170572,10,'T82.897D ','Other specified complication of cardiac prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170573,10,'T82.897S ','Other specified complication of cardiac prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170574,10,'T82.898A ','Other specified complication of vascular prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170575,10,'T82.898D ','Other specified complication of vascular prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170576,10,'T82.898S ','Other specified complication of vascular prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170577,10,'T82.9XXA ','Unspecified complication of cardiac and vascular prosthetic device, implant and graft, initial encounter','Y','0000-00-00 00:00:00'),(170578,10,'T82.9XXD ','Unspecified complication of cardiac and vascular prosthetic device, implant and graft, subsequent encounter','Y','0000-00-00 00:00:00'),(170579,10,'T82.9XXS ','Unspecified complication of cardiac and vascular prosthetic device, implant and graft, sequela','Y','0000-00-00 00:00:00'),(170580,10,'T83.010A ','Breakdown (mechanical) of cystostomy catheter, initial encounter','Y','0000-00-00 00:00:00'),(170581,10,'T83.010D ','Breakdown (mechanical) of cystostomy catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170582,10,'T83.010S ','Breakdown (mechanical) of cystostomy catheter, sequela','Y','0000-00-00 00:00:00'),(170583,10,'T83.011A ','Breakdown (mechanical) of indwelling urethral catheter, initial encounter','Y','0000-00-00 00:00:00'),(170584,10,'T83.011D ','Breakdown (mechanical) of indwelling urethral catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170585,10,'T83.011S ','Breakdown (mechanical) of indwelling urethral catheter, sequela','Y','0000-00-00 00:00:00'),(170586,10,'T83.012A ','Breakdown (mechanical) of nephrostomy catheter, initial encounter','Y','0000-00-00 00:00:00'),(170587,10,'T83.012D ','Breakdown (mechanical) of nephrostomy catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170588,10,'T83.012S ','Breakdown (mechanical) of nephrostomy catheter, sequela','Y','0000-00-00 00:00:00'),(170589,10,'T83.018A ','Breakdown (mechanical) of other urinary catheter, initial encounter','Y','0000-00-00 00:00:00'),(170590,10,'T83.018D ','Breakdown (mechanical) of other urinary catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170591,10,'T83.018S ','Breakdown (mechanical) of other urinary catheter, sequela','Y','0000-00-00 00:00:00'),(170592,10,'T83.020A ','Displacement of cystostomy catheter, initial encounter','Y','0000-00-00 00:00:00'),(170593,10,'T83.020D ','Displacement of cystostomy catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170594,10,'T83.020S ','Displacement of cystostomy catheter, sequela','Y','0000-00-00 00:00:00'),(170595,10,'T83.021A ','Displacement of indwelling urethral catheter, initial encounter','Y','0000-00-00 00:00:00'),(170596,10,'T83.021D ','Displacement of indwelling urethral catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170597,10,'T83.021S ','Displacement of indwelling urethral catheter, sequela','Y','0000-00-00 00:00:00'),(170598,10,'T83.022A ','Displacement of nephrostomy catheter, initial encounter','Y','0000-00-00 00:00:00'),(170599,10,'T83.022D ','Displacement of nephrostomy catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170600,10,'T83.022S ','Displacement of nephrostomy catheter, sequela','Y','0000-00-00 00:00:00'),(170601,10,'T83.028A ','Displacement of other urinary catheter, initial encounter','Y','0000-00-00 00:00:00'),(170602,10,'T83.028D ','Displacement of other urinary catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170603,10,'T83.028S ','Displacement of other urinary catheter, sequela','Y','0000-00-00 00:00:00'),(170604,10,'T83.030A ','Leakage of cystostomy catheter, initial encounter','Y','0000-00-00 00:00:00'),(170605,10,'T83.030D ','Leakage of cystostomy catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170606,10,'T83.030S ','Leakage of cystostomy catheter, sequela','Y','0000-00-00 00:00:00'),(170607,10,'T83.031A ','Leakage of indwelling urethral catheter, initial encounter','Y','0000-00-00 00:00:00'),(170608,10,'T83.031D ','Leakage of indwelling urethral catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170609,10,'T83.031S ','Leakage of indwelling urethral catheter, sequela','Y','0000-00-00 00:00:00'),(170610,10,'T83.032A ','Leakage of nephrostomy catheter, initial encounter','Y','0000-00-00 00:00:00'),(170611,10,'T83.032D ','Leakage of nephrostomy catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170612,10,'T83.032S ','Leakage of nephrostomy catheter, sequela','Y','0000-00-00 00:00:00'),(170613,10,'T83.038A ','Leakage of other urinary catheter, initial encounter','Y','0000-00-00 00:00:00'),(170614,10,'T83.038D ','Leakage of other urinary catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170615,10,'T83.038S ','Leakage of other urinary catheter, sequela','Y','0000-00-00 00:00:00'),(170616,10,'T83.090A ','Other mechanical complication of cystostomy catheter, initial encounter','Y','0000-00-00 00:00:00'),(170617,10,'T83.090D ','Other mechanical complication of cystostomy catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170618,10,'T83.090S ','Other mechanical complication of cystostomy catheter, sequela','Y','0000-00-00 00:00:00'),(170619,10,'T83.091A ','Other mechanical complication of indwelling urethral catheter, initial encounter','Y','0000-00-00 00:00:00'),(170620,10,'T83.091D ','Other mechanical complication of indwelling urethral catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170621,10,'T83.091S ','Other mechanical complication of indwelling urethral catheter, sequela','Y','0000-00-00 00:00:00'),(170622,10,'T83.092A ','Other mechanical complication of nephrostomy catheter, initial encounter','Y','0000-00-00 00:00:00'),(170623,10,'T83.092D ','Other mechanical complication of nephrostomy catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170624,10,'T83.092S ','Other mechanical complication of nephrostomy catheter, sequela','Y','0000-00-00 00:00:00'),(170625,10,'T83.098A ','Other mechanical complication of other urinary catheter, initial encounter','Y','0000-00-00 00:00:00'),(170626,10,'T83.098D ','Other mechanical complication of other urinary catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170627,10,'T83.098S ','Other mechanical complication of other urinary catheter, sequela','Y','0000-00-00 00:00:00'),(170628,10,'T83.110A ','Breakdown (mechanical) of urinary electronic stimulator device, initial encounter','Y','0000-00-00 00:00:00'),(170629,10,'T83.110D ','Breakdown (mechanical) of urinary electronic stimulator device, subsequent encounter','Y','0000-00-00 00:00:00'),(170630,10,'T83.110S ','Breakdown (mechanical) of urinary electronic stimulator device, sequela','Y','0000-00-00 00:00:00'),(170631,10,'T83.111A ','Breakdown (mechanical) of implanted urinary sphincter, initial encounter','Y','0000-00-00 00:00:00'),(170632,10,'T83.111D ','Breakdown (mechanical) of implanted urinary sphincter, subsequent encounter','Y','0000-00-00 00:00:00'),(170633,10,'T83.111S ','Breakdown (mechanical) of implanted urinary sphincter, sequela','Y','0000-00-00 00:00:00'),(170634,10,'T83.112A ','Breakdown (mechanical) of indwelling ureteral stent, initial encounter','Y','0000-00-00 00:00:00'),(170635,10,'T83.112D ','Breakdown (mechanical) of indwelling ureteral stent, subsequent encounter','Y','0000-00-00 00:00:00'),(170636,10,'T83.112S ','Breakdown (mechanical) of indwelling ureteral stent, sequela','Y','0000-00-00 00:00:00'),(170637,10,'T83.113A ','Breakdown (mechanical) of other urinary stents, initial encounter','Y','0000-00-00 00:00:00'),(170638,10,'T83.113D ','Breakdown (mechanical) of other urinary stents, subsequent encounter','Y','0000-00-00 00:00:00'),(170639,10,'T83.113S ','Breakdown (mechanical) of other urinary stents, sequela','Y','0000-00-00 00:00:00'),(170640,10,'T83.118A ','Breakdown (mechanical) of other urinary devices and implants, initial encounter','Y','0000-00-00 00:00:00'),(170641,10,'T83.118D ','Breakdown (mechanical) of other urinary devices and implants, subsequent encounter','Y','0000-00-00 00:00:00'),(170642,10,'T83.118S ','Breakdown (mechanical) of other urinary devices and implants, sequela','Y','0000-00-00 00:00:00'),(170643,10,'T83.120A ','Displacement of urinary electronic stimulator device, initial encounter','Y','0000-00-00 00:00:00'),(170644,10,'T83.120D ','Displacement of urinary electronic stimulator device, subsequent encounter','Y','0000-00-00 00:00:00'),(170645,10,'T83.120S ','Displacement of urinary electronic stimulator device, sequela','Y','0000-00-00 00:00:00'),(170646,10,'T83.121A ','Displacement of implanted urinary sphincter, initial encounter','Y','0000-00-00 00:00:00'),(170647,10,'T83.121D ','Displacement of implanted urinary sphincter, subsequent encounter','Y','0000-00-00 00:00:00'),(170648,10,'T83.121S ','Displacement of implanted urinary sphincter, sequela','Y','0000-00-00 00:00:00'),(170649,10,'T83.122A ','Displacement of indwelling ureteral stent, initial encounter','Y','0000-00-00 00:00:00'),(170650,10,'T83.122D ','Displacement of indwelling ureteral stent, subsequent encounter','Y','0000-00-00 00:00:00'),(170651,10,'T83.122S ','Displacement of indwelling ureteral stent, sequela','Y','0000-00-00 00:00:00'),(170652,10,'T83.123A ','Displacement of other urinary stents, initial encounter','Y','0000-00-00 00:00:00'),(170653,10,'T83.123D ','Displacement of other urinary stents, subsequent encounter','Y','0000-00-00 00:00:00'),(170654,10,'T83.123S ','Displacement of other urinary stents, sequela','Y','0000-00-00 00:00:00'),(170655,10,'T83.128A ','Displacement of other urinary devices and implants, initial encounter','Y','0000-00-00 00:00:00'),(170656,10,'T83.128D ','Displacement of other urinary devices and implants, subsequent encounter','Y','0000-00-00 00:00:00'),(170657,10,'T83.128S ','Displacement of other urinary devices and implants, sequela','Y','0000-00-00 00:00:00'),(170658,10,'T83.190A ','Other mechanical complication of urinary electronic stimulator device, initial encounter','Y','0000-00-00 00:00:00'),(170659,10,'T83.190D ','Other mechanical complication of urinary electronic stimulator device, subsequent encounter','Y','0000-00-00 00:00:00'),(170660,10,'T83.190S ','Other mechanical complication of urinary electronic stimulator device, sequela','Y','0000-00-00 00:00:00'),(170661,10,'T83.191A ','Other mechanical complication of implanted urinary sphincter, initial encounter','Y','0000-00-00 00:00:00'),(170662,10,'T83.191D ','Other mechanical complication of implanted urinary sphincter, subsequent encounter','Y','0000-00-00 00:00:00'),(170663,10,'T83.191S ','Other mechanical complication of implanted urinary sphincter, sequela','Y','0000-00-00 00:00:00'),(170664,10,'T83.192A ','Other mechanical complication of indwelling ureteral stent, initial encounter','Y','0000-00-00 00:00:00'),(170665,10,'T83.192D ','Other mechanical complication of indwelling ureteral stent, subsequent encounter','Y','0000-00-00 00:00:00'),(170666,10,'T83.192S ','Other mechanical complication of indwelling ureteral stent, sequela','Y','0000-00-00 00:00:00'),(170667,10,'T83.193A ','Other mechanical complication of other urinary stent, initial encounter','Y','0000-00-00 00:00:00'),(170668,10,'T83.193D ','Other mechanical complication of other urinary stent, subsequent encounter','Y','0000-00-00 00:00:00'),(170669,10,'T83.193S ','Other mechanical complication of other urinary stent, sequela','Y','0000-00-00 00:00:00'),(170670,10,'T83.198A ','Other mechanical complication of other urinary devices and implants, initial encounter','Y','0000-00-00 00:00:00'),(170671,10,'T83.198D ','Other mechanical complication of other urinary devices and implants, subsequent encounter','Y','0000-00-00 00:00:00'),(170672,10,'T83.198S ','Other mechanical complication of other urinary devices and implants, sequela','Y','0000-00-00 00:00:00'),(170673,10,'T83.21XA ','Breakdown (mechanical) of graft of urinary organ, initial encounter','Y','0000-00-00 00:00:00'),(170674,10,'T83.21XD ','Breakdown (mechanical) of graft of urinary organ, subsequent encounter','Y','0000-00-00 00:00:00'),(170675,10,'T83.21XS ','Breakdown (mechanical) of graft of urinary organ, sequela','Y','0000-00-00 00:00:00'),(170676,10,'T83.22XA ','Displacement of graft of urinary organ, initial encounter','Y','0000-00-00 00:00:00'),(170677,10,'T83.22XD ','Displacement of graft of urinary organ, subsequent encounter','Y','0000-00-00 00:00:00'),(170678,10,'T83.22XS ','Displacement of graft of urinary organ, sequela','Y','0000-00-00 00:00:00'),(170679,10,'T83.23XA ','Leakage of graft of urinary organ, initial encounter','Y','0000-00-00 00:00:00'),(170680,10,'T83.23XD ','Leakage of graft of urinary organ, subsequent encounter','Y','0000-00-00 00:00:00'),(170681,10,'T83.23XS ','Leakage of graft of urinary organ, sequela','Y','0000-00-00 00:00:00'),(170682,10,'T83.24XA ','Erosion of graft of urinary organ, initial encounter','Y','0000-00-00 00:00:00'),(170683,10,'T83.24XD ','Erosion of graft of urinary organ, subsequent encounter','Y','0000-00-00 00:00:00'),(170684,10,'T83.24XS ','Erosion of graft of urinary organ, sequela','Y','0000-00-00 00:00:00'),(170685,10,'T83.25XA ','Exposure of graft of urinary organ, initial encounter','Y','0000-00-00 00:00:00'),(170686,10,'T83.25XD ','Exposure of graft of urinary organ, subsequent encounter','Y','0000-00-00 00:00:00'),(170687,10,'T83.25XS ','Exposure of graft of urinary organ, sequela','Y','0000-00-00 00:00:00'),(170688,10,'T83.29XA ','Other mechanical complication of graft of urinary organ, initial encounter','Y','0000-00-00 00:00:00'),(170689,10,'T83.29XD ','Other mechanical complication of graft of urinary organ, subsequent encounter','Y','0000-00-00 00:00:00'),(170690,10,'T83.29XS ','Other mechanical complication of graft of urinary organ, sequela','Y','0000-00-00 00:00:00'),(170691,10,'T83.31XA ','Breakdown (mechanical) of intrauterine contraceptive device, initial encounter','Y','0000-00-00 00:00:00'),(170692,10,'T83.31XD ','Breakdown (mechanical) of intrauterine contraceptive device, subsequent encounter','Y','0000-00-00 00:00:00'),(170693,10,'T83.31XS ','Breakdown (mechanical) of intrauterine contraceptive device, sequela','Y','0000-00-00 00:00:00'),(170694,10,'T83.32XA ','Displacement of intrauterine contraceptive device, initial encounter','Y','0000-00-00 00:00:00'),(170695,10,'T83.32XD ','Displacement of intrauterine contraceptive device, subsequent encounter','Y','0000-00-00 00:00:00'),(170696,10,'T83.32XS ','Displacement of intrauterine contraceptive device, sequela','Y','0000-00-00 00:00:00'),(170697,10,'T83.39XA ','Other mechanical complication of intrauterine contraceptive device, initial encounter','Y','0000-00-00 00:00:00'),(170698,10,'T83.39XD ','Other mechanical complication of intrauterine contraceptive device, subsequent encounter','Y','0000-00-00 00:00:00'),(170699,10,'T83.39XS ','Other mechanical complication of intrauterine contraceptive device, sequela','Y','0000-00-00 00:00:00'),(170700,10,'T83.410A ','Breakdown (mechanical) of implanted penile prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170701,10,'T83.410D ','Breakdown (mechanical) of implanted penile prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170702,10,'T83.410S ','Breakdown (mechanical) of implanted penile prosthesis, sequela','Y','0000-00-00 00:00:00'),(170703,10,'T83.411A ','Breakdown (mechanical) of implanted testicular prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170704,10,'T83.411D ','Breakdown (mechanical) of implanted testicular prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170705,10,'T83.411S ','Breakdown (mechanical) of implanted testicular prosthesis, sequela','Y','0000-00-00 00:00:00'),(170706,10,'T83.418A ','Breakdown (mechanical) of other prosthetic devices, implants and grafts of genital tract, initial encounter','Y','0000-00-00 00:00:00'),(170707,10,'T83.418D ','Breakdown (mechanical) of other prosthetic devices, implants and grafts of genital tract, subsequent encounter','Y','0000-00-00 00:00:00'),(170708,10,'T83.418S ','Breakdown (mechanical) of other prosthetic devices, implants and grafts of genital tract, sequela','Y','0000-00-00 00:00:00'),(170709,10,'T83.420A ','Displacement of implanted penile prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170710,10,'T83.420D ','Displacement of implanted penile prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170711,10,'T83.420S ','Displacement of implanted penile prosthesis, sequela','Y','0000-00-00 00:00:00'),(170712,10,'T83.421A ','Displacement of implanted testicular prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170713,10,'T83.421D ','Displacement of implanted testicular prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170714,10,'T83.421S ','Displacement of implanted testicular prosthesis, sequela','Y','0000-00-00 00:00:00'),(170715,10,'T83.428A ','Displacement of other prosthetic devices, implants and grafts of genital tract, initial encounter','Y','0000-00-00 00:00:00'),(170716,10,'T83.428D ','Displacement of other prosthetic devices, implants and grafts of genital tract, subsequent encounter','Y','0000-00-00 00:00:00'),(170717,10,'T83.428S ','Displacement of other prosthetic devices, implants and grafts of genital tract, sequela','Y','0000-00-00 00:00:00'),(170718,10,'T83.490A ','Other mechanical complication of implanted penile prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170719,10,'T83.490D ','Other mechanical complication of implanted penile prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170720,10,'T83.490S ','Other mechanical complication of implanted penile prosthesis, sequela','Y','0000-00-00 00:00:00'),(170721,10,'T83.491A ','Other mechanical complication of implanted testicular prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170722,10,'T83.491D ','Other mechanical complication of implanted testicular prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170723,10,'T83.491S ','Other mechanical complication of implanted testicular prosthesis, sequela','Y','0000-00-00 00:00:00'),(170724,10,'T83.498A ','Other mechanical complication of other prosthetic devices, implants and grafts of genital tract, initial encounter','Y','0000-00-00 00:00:00'),(170725,10,'T83.498D ','Other mechanical complication of other prosthetic devices, implants and grafts of genital tract, subsequent encounter','Y','0000-00-00 00:00:00'),(170726,10,'T83.498S ','Other mechanical complication of other prosthetic devices, implants and grafts of genital tract, sequela','Y','0000-00-00 00:00:00'),(170727,10,'T83.510A ','Infection and inflammatory reaction due to cystostomy catheter, initial encounter','Y','0000-00-00 00:00:00'),(170728,10,'T83.510D ','Infection and inflammatory reaction due to cystostomy catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170729,10,'T83.510S ','Infection and inflammatory reaction due to cystostomy catheter, sequela','Y','0000-00-00 00:00:00'),(170730,10,'T83.511A ','Infection and inflammatory reaction due to indwelling urethral catheter, initial encounter','Y','0000-00-00 00:00:00'),(170731,10,'T83.511D ','Infection and inflammatory reaction due to indwelling urethral catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170732,10,'T83.511S ','Infection and inflammatory reaction due to indwelling urethral catheter, sequela','Y','0000-00-00 00:00:00'),(170733,10,'T83.512A ','Infection and inflammatory reaction due to nephrostomy catheter, initial encounter','Y','0000-00-00 00:00:00'),(170734,10,'T83.512D ','Infection and inflammatory reaction due to nephrostomy catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170735,10,'T83.512S ','Infection and inflammatory reaction due to nephrostomy catheter, sequela','Y','0000-00-00 00:00:00'),(170736,10,'T83.518A ','Infection and inflammatory reaction due to other urinary catheter, initial encounter','Y','0000-00-00 00:00:00'),(170737,10,'T83.518D ','Infection and inflammatory reaction due to other urinary catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(170738,10,'T83.518S ','Infection and inflammatory reaction due to other urinary catheter, sequela','Y','0000-00-00 00:00:00'),(170739,10,'T83.590A ','Infection and inflammatory reaction due to implanted urinary neurostimulation device, initial encounter','Y','0000-00-00 00:00:00'),(170740,10,'T83.590D ','Infection and inflammatory reaction due to implanted urinary neurostimulation device, subsequent encounter','Y','0000-00-00 00:00:00'),(170741,10,'T83.590S ','Infection and inflammatory reaction due to implanted urinary neurostimulation device, sequela','Y','0000-00-00 00:00:00'),(170742,10,'T83.591A ','Infection and inflammatory reaction due to implanted urinary sphincter, initial encounter','Y','0000-00-00 00:00:00'),(170743,10,'T83.591D ','Infection and inflammatory reaction due to implanted urinary sphincter, subsequent encounter','Y','0000-00-00 00:00:00'),(170744,10,'T83.591S ','Infection and inflammatory reaction due to implanted urinary sphincter, sequela','Y','0000-00-00 00:00:00'),(170745,10,'T83.592A ','Infection and inflammatory reaction due to indwelling ureteral stent, initial encounter','Y','0000-00-00 00:00:00'),(170746,10,'T83.592D ','Infection and inflammatory reaction due to indwelling ureteral stent, subsequent encounter','Y','0000-00-00 00:00:00'),(170747,10,'T83.592S ','Infection and inflammatory reaction due to indwelling ureteral stent, sequela','Y','0000-00-00 00:00:00'),(170748,10,'T83.593A ','Infection and inflammatory reaction due to other urinary stents, initial encounter','Y','0000-00-00 00:00:00'),(170749,10,'T83.593D ','Infection and inflammatory reaction due to other urinary stents, subsequent encounter','Y','0000-00-00 00:00:00'),(170750,10,'T83.593S ','Infection and inflammatory reaction due to other urinary stents, sequela','Y','0000-00-00 00:00:00'),(170751,10,'T83.598A ','Infection and inflammatory reaction due to other prosthetic device, implant and graft in urinary system, initial encounter','Y','0000-00-00 00:00:00'),(170752,10,'T83.598D ','Infection and inflammatory reaction due to other prosthetic device, implant and graft in urinary system, subsequent encounter','Y','0000-00-00 00:00:00'),(170753,10,'T83.598S ','Infection and inflammatory reaction due to other prosthetic device, implant and graft in urinary system, sequela','Y','0000-00-00 00:00:00'),(170754,10,'T83.61XA ','Infection and inflammatory reaction due to implanted penile prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170755,10,'T83.61XD ','Infection and inflammatory reaction due to implanted penile prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170756,10,'T83.61XS ','Infection and inflammatory reaction due to implanted penile prosthesis, sequela','Y','0000-00-00 00:00:00'),(170757,10,'T83.62XA ','Infection and inflammatory reaction due to implanted testicular prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170758,10,'T83.62XD ','Infection and inflammatory reaction due to implanted testicular prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170759,10,'T83.62XS ','Infection and inflammatory reaction due to implanted testicular prosthesis, sequela','Y','0000-00-00 00:00:00'),(170760,10,'T83.69XA ','Infection and inflammatory reaction due to other prosthetic device, implant and graft in genital tract, initial encounter','Y','0000-00-00 00:00:00'),(170761,10,'T83.69XD ','Infection and inflammatory reaction due to other prosthetic device, implant and graft in genital tract, subsequent encounter','Y','0000-00-00 00:00:00'),(170762,10,'T83.69XS ','Infection and inflammatory reaction due to other prosthetic device, implant and graft in genital tract, sequela','Y','0000-00-00 00:00:00'),(170763,10,'T83.711A ','Erosion of implanted vaginal mesh to surrounding organ or tissue, initial encounter','Y','0000-00-00 00:00:00'),(170764,10,'T83.711D ','Erosion of implanted vaginal mesh to surrounding organ or tissue, subsequent encounter','Y','0000-00-00 00:00:00'),(170765,10,'T83.711S ','Erosion of implanted vaginal mesh to surrounding organ or tissue, sequela','Y','0000-00-00 00:00:00'),(170766,10,'T83.712A ','Erosion of implanted urethral mesh to surrounding organ or tissue, initial encounter','Y','0000-00-00 00:00:00'),(170767,10,'T83.712D ','Erosion of implanted urethral mesh to surrounding organ or tissue, subsequent encounter','Y','0000-00-00 00:00:00'),(170768,10,'T83.712S ','Erosion of implanted urethral mesh to surrounding organ or tissue, sequela','Y','0000-00-00 00:00:00'),(170769,10,'T83.713A ','Erosion of implanted urethral bulking agent to surrounding organ or tissue, initial encounter','Y','0000-00-00 00:00:00'),(170770,10,'T83.713D ','Erosion of implanted urethral bulking agent to surrounding organ or tissue, subsequent encounter','Y','0000-00-00 00:00:00'),(170771,10,'T83.713S ','Erosion of implanted urethral bulking agent to surrounding organ or tissue, sequela','Y','0000-00-00 00:00:00'),(170772,10,'T83.714A ','Erosion of implanted ureteral bulking agent to surrounding organ or tissue, initial encounter','Y','0000-00-00 00:00:00'),(170773,10,'T83.714D ','Erosion of implanted ureteral bulking agent to surrounding organ or tissue, subsequent encounter','Y','0000-00-00 00:00:00'),(170774,10,'T83.714S ','Erosion of implanted ureteral bulking agent to surrounding organ or tissue, sequela','Y','0000-00-00 00:00:00'),(170775,10,'T83.718A ','Erosion of other implanted mesh to organ or tissue, initial encounter','Y','0000-00-00 00:00:00'),(170776,10,'T83.718D ','Erosion of other implanted mesh to organ or tissue, subsequent encounter','Y','0000-00-00 00:00:00'),(170777,10,'T83.718S ','Erosion of other implanted mesh to organ or tissue, sequela','Y','0000-00-00 00:00:00'),(170778,10,'T83.719A ','Erosion of other prosthetic materials to surrounding organ or tissue, initial encounter','Y','0000-00-00 00:00:00'),(170779,10,'T83.719D ','Erosion of other prosthetic materials to surrounding organ or tissue, subsequent encounter','Y','0000-00-00 00:00:00'),(170780,10,'T83.719S ','Erosion of other prosthetic materials to surrounding organ or tissue, sequela','Y','0000-00-00 00:00:00'),(170781,10,'T83.721A ','Exposure of implanted vaginal mesh into vagina, initial encounter','Y','0000-00-00 00:00:00'),(170782,10,'T83.721D ','Exposure of implanted vaginal mesh into vagina, subsequent encounter','Y','0000-00-00 00:00:00'),(170783,10,'T83.721S ','Exposure of implanted vaginal mesh into vagina, sequela','Y','0000-00-00 00:00:00'),(170784,10,'T83.722A ','Exposure of implanted urethral mesh into urethra, initial encounter','Y','0000-00-00 00:00:00'),(170785,10,'T83.722D ','Exposure of implanted urethral mesh into urethra, subsequent encounter','Y','0000-00-00 00:00:00'),(170786,10,'T83.722S ','Exposure of implanted urethral mesh into urethra, sequela','Y','0000-00-00 00:00:00'),(170787,10,'T83.723A ','Exposure of implanted urethral bulking agent into urethra, initial encounter','Y','0000-00-00 00:00:00'),(170788,10,'T83.723D ','Exposure of implanted urethral bulking agent into urethra, subsequent encounter','Y','0000-00-00 00:00:00'),(170789,10,'T83.723S ','Exposure of implanted urethral bulking agent into urethra, sequela','Y','0000-00-00 00:00:00'),(170790,10,'T83.724A ','Exposure of implanted ureteral bulking agent into ureter, initial encounter','Y','0000-00-00 00:00:00'),(170791,10,'T83.724D ','Exposure of implanted ureteral bulking agent into ureter, subsequent encounter','Y','0000-00-00 00:00:00'),(170792,10,'T83.724S ','Exposure of implanted ureteral bulking agent into ureter, sequela','Y','0000-00-00 00:00:00'),(170793,10,'T83.728A ','Exposure of other implanted mesh into organ or tissue, initial encounter','Y','0000-00-00 00:00:00'),(170794,10,'T83.728D ','Exposure of other implanted mesh into organ or tissue, subsequent encounter','Y','0000-00-00 00:00:00'),(170795,10,'T83.728S ','Exposure of other implanted mesh into organ or tissue, sequela','Y','0000-00-00 00:00:00'),(170796,10,'T83.729A ','Exposure of other prosthetic materials into organ or tissue, initial encounter','Y','0000-00-00 00:00:00'),(170797,10,'T83.729D ','Exposure of other prosthetic materials into organ or tissue, subsequent encounter','Y','0000-00-00 00:00:00'),(170798,10,'T83.729S ','Exposure of other prosthetic materials into organ or tissue, sequela','Y','0000-00-00 00:00:00'),(170799,10,'T83.79XA ','Other specified complications due to other genitourinary prosthetic materials, initial encounter','Y','0000-00-00 00:00:00'),(170800,10,'T83.79XD ','Other specified complications due to other genitourinary prosthetic materials, subsequent encounter','Y','0000-00-00 00:00:00'),(170801,10,'T83.79XS ','Other specified complications due to other genitourinary prosthetic materials, sequela','Y','0000-00-00 00:00:00'),(170802,10,'T83.81XA ','Embolism due to genitourinary prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170803,10,'T83.81XD ','Embolism due to genitourinary prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170804,10,'T83.81XS ','Embolism due to genitourinary prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170805,10,'T83.82XA ','Fibrosis due to genitourinary prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170806,10,'T83.82XD ','Fibrosis due to genitourinary prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170807,10,'T83.82XS ','Fibrosis due to genitourinary prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170808,10,'T83.83XA ','Hemorrhage due to genitourinary prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170809,10,'T83.83XD ','Hemorrhage due to genitourinary prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170810,10,'T83.83XS ','Hemorrhage due to genitourinary prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170811,10,'T83.84XA ','Pain due to genitourinary prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170812,10,'T83.84XD ','Pain due to genitourinary prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170813,10,'T83.84XS ','Pain due to genitourinary prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170814,10,'T83.85XA ','Stenosis due to genitourinary prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170815,10,'T83.85XD ','Stenosis due to genitourinary prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170816,10,'T83.85XS ','Stenosis due to genitourinary prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170817,10,'T83.86XA ','Thrombosis due to genitourinary prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170818,10,'T83.86XD ','Thrombosis due to genitourinary prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170819,10,'T83.86XS ','Thrombosis due to genitourinary prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170820,10,'T83.89XA ','Other specified complication of genitourinary prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(170821,10,'T83.89XD ','Other specified complication of genitourinary prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(170822,10,'T83.89XS ','Other specified complication of genitourinary prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(170823,10,'T83.9XXA ','Unspecified complication of genitourinary prosthetic device, implant and graft, initial encounter','Y','0000-00-00 00:00:00'),(170824,10,'T83.9XXD ','Unspecified complication of genitourinary prosthetic device, implant and graft, subsequent encounter','Y','0000-00-00 00:00:00'),(170825,10,'T83.9XXS ','Unspecified complication of genitourinary prosthetic device, implant and graft, sequela','Y','0000-00-00 00:00:00'),(170826,10,'T84.010A ','Broken internal right hip prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170827,10,'T84.010D ','Broken internal right hip prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170828,10,'T84.010S ','Broken internal right hip prosthesis, sequela','Y','0000-00-00 00:00:00'),(170829,10,'T84.011A ','Broken internal left hip prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170830,10,'T84.011D ','Broken internal left hip prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170831,10,'T84.011S ','Broken internal left hip prosthesis, sequela','Y','0000-00-00 00:00:00'),(170832,10,'T84.012A ','Broken internal right knee prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170833,10,'T84.012D ','Broken internal right knee prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170834,10,'T84.012S ','Broken internal right knee prosthesis, sequela','Y','0000-00-00 00:00:00'),(170835,10,'T84.013A ','Broken internal left knee prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170836,10,'T84.013D ','Broken internal left knee prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170837,10,'T84.013S ','Broken internal left knee prosthesis, sequela','Y','0000-00-00 00:00:00'),(170838,10,'T84.018A ','Broken internal joint prosthesis, other site, initial encounter','Y','0000-00-00 00:00:00'),(170839,10,'T84.018D ','Broken internal joint prosthesis, other site, subsequent encounter','Y','0000-00-00 00:00:00'),(170840,10,'T84.018S ','Broken internal joint prosthesis, other site, sequela','Y','0000-00-00 00:00:00'),(170841,10,'T84.019A ','Broken internal joint prosthesis, unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(170842,10,'T84.019D ','Broken internal joint prosthesis, unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(170843,10,'T84.019S ','Broken internal joint prosthesis, unspecified site, sequela','Y','0000-00-00 00:00:00'),(170844,10,'T84.020A ','Dislocation of internal right hip prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170845,10,'T84.020D ','Dislocation of internal right hip prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170846,10,'T84.020S ','Dislocation of internal right hip prosthesis, sequela','Y','0000-00-00 00:00:00'),(170847,10,'T84.021A ','Dislocation of internal left hip prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170848,10,'T84.021D ','Dislocation of internal left hip prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170849,10,'T84.021S ','Dislocation of internal left hip prosthesis, sequela','Y','0000-00-00 00:00:00'),(170850,10,'T84.022A ','Instability of internal right knee prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170851,10,'T84.022D ','Instability of internal right knee prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170852,10,'T84.022S ','Instability of internal right knee prosthesis, sequela','Y','0000-00-00 00:00:00'),(170853,10,'T84.023A ','Instability of internal left knee prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170854,10,'T84.023D ','Instability of internal left knee prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170855,10,'T84.023S ','Instability of internal left knee prosthesis, sequela','Y','0000-00-00 00:00:00'),(170856,10,'T84.028A ','Dislocation of other internal joint prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170857,10,'T84.028D ','Dislocation of other internal joint prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170858,10,'T84.028S ','Dislocation of other internal joint prosthesis, sequela','Y','0000-00-00 00:00:00'),(170859,10,'T84.029A ','Dislocation of unspecified internal joint prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170860,10,'T84.029D ','Dislocation of unspecified internal joint prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170861,10,'T84.029S ','Dislocation of unspecified internal joint prosthesis, sequela','Y','0000-00-00 00:00:00'),(170862,10,'T84.030A ','Mechanical loosening of internal right hip prosthetic joint, initial encounter','Y','0000-00-00 00:00:00'),(170863,10,'T84.030D ','Mechanical loosening of internal right hip prosthetic joint, subsequent encounter','Y','0000-00-00 00:00:00'),(170864,10,'T84.030S ','Mechanical loosening of internal right hip prosthetic joint, sequela','Y','0000-00-00 00:00:00'),(170865,10,'T84.031A ','Mechanical loosening of internal left hip prosthetic joint, initial encounter','Y','0000-00-00 00:00:00'),(170866,10,'T84.031D ','Mechanical loosening of internal left hip prosthetic joint, subsequent encounter','Y','0000-00-00 00:00:00'),(170867,10,'T84.031S ','Mechanical loosening of internal left hip prosthetic joint, sequela','Y','0000-00-00 00:00:00'),(170868,10,'T84.032A ','Mechanical loosening of internal right knee prosthetic joint, initial encounter','Y','0000-00-00 00:00:00'),(170869,10,'T84.032D ','Mechanical loosening of internal right knee prosthetic joint, subsequent encounter','Y','0000-00-00 00:00:00'),(170870,10,'T84.032S ','Mechanical loosening of internal right knee prosthetic joint, sequela','Y','0000-00-00 00:00:00'),(170871,10,'T84.033A ','Mechanical loosening of internal left knee prosthetic joint, initial encounter','Y','0000-00-00 00:00:00'),(170872,10,'T84.033D ','Mechanical loosening of internal left knee prosthetic joint, subsequent encounter','Y','0000-00-00 00:00:00'),(170873,10,'T84.033S ','Mechanical loosening of internal left knee prosthetic joint, sequela','Y','0000-00-00 00:00:00'),(170874,10,'T84.038A ','Mechanical loosening of other internal prosthetic joint, initial encounter','Y','0000-00-00 00:00:00'),(170875,10,'T84.038D ','Mechanical loosening of other internal prosthetic joint, subsequent encounter','Y','0000-00-00 00:00:00'),(170876,10,'T84.038S ','Mechanical loosening of other internal prosthetic joint, sequela','Y','0000-00-00 00:00:00'),(170877,10,'T84.039A ','Mechanical loosening of unspecified internal prosthetic joint, initial encounter','Y','0000-00-00 00:00:00'),(170878,10,'T84.039D ','Mechanical loosening of unspecified internal prosthetic joint, subsequent encounter','Y','0000-00-00 00:00:00'),(170879,10,'T84.039S ','Mechanical loosening of unspecified internal prosthetic joint, sequela','Y','0000-00-00 00:00:00'),(170880,10,'T84.050A ','Periprosthetic osteolysis of internal prosthetic right hip joint, initial encounter','Y','0000-00-00 00:00:00'),(170881,10,'T84.050D ','Periprosthetic osteolysis of internal prosthetic right hip joint, subsequent encounter','Y','0000-00-00 00:00:00'),(170882,10,'T84.050S ','Periprosthetic osteolysis of internal prosthetic right hip joint, sequela','Y','0000-00-00 00:00:00'),(170883,10,'T84.051A ','Periprosthetic osteolysis of internal prosthetic left hip joint, initial encounter','Y','0000-00-00 00:00:00'),(170884,10,'T84.051D ','Periprosthetic osteolysis of internal prosthetic left hip joint, subsequent encounter','Y','0000-00-00 00:00:00'),(170885,10,'T84.051S ','Periprosthetic osteolysis of internal prosthetic left hip joint, sequela','Y','0000-00-00 00:00:00'),(170886,10,'T84.052A ','Periprosthetic osteolysis of internal prosthetic right knee joint, initial encounter','Y','0000-00-00 00:00:00'),(170887,10,'T84.052D ','Periprosthetic osteolysis of internal prosthetic right knee joint, subsequent encounter','Y','0000-00-00 00:00:00'),(170888,10,'T84.052S ','Periprosthetic osteolysis of internal prosthetic right knee joint, sequela','Y','0000-00-00 00:00:00'),(170889,10,'T84.053A ','Periprosthetic osteolysis of internal prosthetic left knee joint, initial encounter','Y','0000-00-00 00:00:00'),(170890,10,'T84.053D ','Periprosthetic osteolysis of internal prosthetic left knee joint, subsequent encounter','Y','0000-00-00 00:00:00'),(170891,10,'T84.053S ','Periprosthetic osteolysis of internal prosthetic left knee joint, sequela','Y','0000-00-00 00:00:00'),(170892,10,'T84.058A ','Periprosthetic osteolysis of other internal prosthetic joint, initial encounter','Y','0000-00-00 00:00:00'),(170893,10,'T84.058D ','Periprosthetic osteolysis of other internal prosthetic joint, subsequent encounter','Y','0000-00-00 00:00:00'),(170894,10,'T84.058S ','Periprosthetic osteolysis of other internal prosthetic joint, sequela','Y','0000-00-00 00:00:00'),(170895,10,'T84.059A ','Periprosthetic osteolysis of unspecified internal prosthetic joint, initial encounter','Y','0000-00-00 00:00:00'),(170896,10,'T84.059D ','Periprosthetic osteolysis of unspecified internal prosthetic joint, subsequent encounter','Y','0000-00-00 00:00:00'),(170897,10,'T84.059S ','Periprosthetic osteolysis of unspecified internal prosthetic joint, sequela','Y','0000-00-00 00:00:00'),(170898,10,'T84.060A ','Wear of articular bearing surface of internal prosthetic right hip joint, initial encounter','Y','0000-00-00 00:00:00'),(170899,10,'T84.060D ','Wear of articular bearing surface of internal prosthetic right hip joint, subsequent encounter','Y','0000-00-00 00:00:00'),(170900,10,'T84.060S ','Wear of articular bearing surface of internal prosthetic right hip joint, sequela','Y','0000-00-00 00:00:00'),(170901,10,'T84.061A ','Wear of articular bearing surface of internal prosthetic left hip joint, initial encounter','Y','0000-00-00 00:00:00'),(170902,10,'T84.061D ','Wear of articular bearing surface of internal prosthetic left hip joint, subsequent encounter','Y','0000-00-00 00:00:00'),(170903,10,'T84.061S ','Wear of articular bearing surface of internal prosthetic left hip joint, sequela','Y','0000-00-00 00:00:00'),(170904,10,'T84.062A ','Wear of articular bearing surface of internal prosthetic right knee joint, initial encounter','Y','0000-00-00 00:00:00'),(170905,10,'T84.062D ','Wear of articular bearing surface of internal prosthetic right knee joint, subsequent encounter','Y','0000-00-00 00:00:00'),(170906,10,'T84.062S ','Wear of articular bearing surface of internal prosthetic right knee joint, sequela','Y','0000-00-00 00:00:00'),(170907,10,'T84.063A ','Wear of articular bearing surface of internal prosthetic left knee joint, initial encounter','Y','0000-00-00 00:00:00'),(170908,10,'T84.063D ','Wear of articular bearing surface of internal prosthetic left knee joint, subsequent encounter','Y','0000-00-00 00:00:00'),(170909,10,'T84.063S ','Wear of articular bearing surface of internal prosthetic left knee joint, sequela','Y','0000-00-00 00:00:00'),(170910,10,'T84.068A ','Wear of articular bearing surface of other internal prosthetic joint, initial encounter','Y','0000-00-00 00:00:00'),(170911,10,'T84.068D ','Wear of articular bearing surface of other internal prosthetic joint, subsequent encounter','Y','0000-00-00 00:00:00'),(170912,10,'T84.068S ','Wear of articular bearing surface of other internal prosthetic joint, sequela','Y','0000-00-00 00:00:00'),(170913,10,'T84.069A ','Wear of articular bearing surface of unspecified internal prosthetic joint, initial encounter','Y','0000-00-00 00:00:00'),(170914,10,'T84.069D ','Wear of articular bearing surface of unspecified internal prosthetic joint, subsequent encounter','Y','0000-00-00 00:00:00'),(170915,10,'T84.069S ','Wear of articular bearing surface of unspecified internal prosthetic joint, sequela','Y','0000-00-00 00:00:00'),(170916,10,'T84.090A ','Other mechanical complication of internal right hip prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170917,10,'T84.090D ','Other mechanical complication of internal right hip prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170918,10,'T84.090S ','Other mechanical complication of internal right hip prosthesis, sequela','Y','0000-00-00 00:00:00'),(170919,10,'T84.091A ','Other mechanical complication of internal left hip prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170920,10,'T84.091D ','Other mechanical complication of internal left hip prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170921,10,'T84.091S ','Other mechanical complication of internal left hip prosthesis, sequela','Y','0000-00-00 00:00:00'),(170922,10,'T84.092A ','Other mechanical complication of internal right knee prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170923,10,'T84.092D ','Other mechanical complication of internal right knee prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170924,10,'T84.092S ','Other mechanical complication of internal right knee prosthesis, sequela','Y','0000-00-00 00:00:00'),(170925,10,'T84.093A ','Other mechanical complication of internal left knee prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170926,10,'T84.093D ','Other mechanical complication of internal left knee prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170927,10,'T84.093S ','Other mechanical complication of internal left knee prosthesis, sequela','Y','0000-00-00 00:00:00'),(170928,10,'T84.098A ','Other mechanical complication of other internal joint prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170929,10,'T84.098D ','Other mechanical complication of other internal joint prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170930,10,'T84.098S ','Other mechanical complication of other internal joint prosthesis, sequela','Y','0000-00-00 00:00:00'),(170931,10,'T84.099A ','Other mechanical complication of unspecified internal joint prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(170932,10,'T84.099D ','Other mechanical complication of unspecified internal joint prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(170933,10,'T84.099S ','Other mechanical complication of unspecified internal joint prosthesis, sequela','Y','0000-00-00 00:00:00'),(170934,10,'T84.110A ','Breakdown (mechanical) of internal fixation device of right humerus, initial encounter','Y','0000-00-00 00:00:00'),(170935,10,'T84.110D ','Breakdown (mechanical) of internal fixation device of right humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(170936,10,'T84.110S ','Breakdown (mechanical) of internal fixation device of right humerus, sequela','Y','0000-00-00 00:00:00'),(170937,10,'T84.111A ','Breakdown (mechanical) of internal fixation device of left humerus, initial encounter','Y','0000-00-00 00:00:00'),(170938,10,'T84.111D ','Breakdown (mechanical) of internal fixation device of left humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(170939,10,'T84.111S ','Breakdown (mechanical) of internal fixation device of left humerus, sequela','Y','0000-00-00 00:00:00'),(170940,10,'T84.112A ','Breakdown (mechanical) of internal fixation device of bone of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(170941,10,'T84.112D ','Breakdown (mechanical) of internal fixation device of bone of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(170942,10,'T84.112S ','Breakdown (mechanical) of internal fixation device of bone of right forearm, sequela','Y','0000-00-00 00:00:00'),(170943,10,'T84.113A ','Breakdown (mechanical) of internal fixation device of bone of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(170944,10,'T84.113D ','Breakdown (mechanical) of internal fixation device of bone of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(170945,10,'T84.113S ','Breakdown (mechanical) of internal fixation device of bone of left forearm, sequela','Y','0000-00-00 00:00:00'),(170946,10,'T84.114A ','Breakdown (mechanical) of internal fixation device of right femur, initial encounter','Y','0000-00-00 00:00:00'),(170947,10,'T84.114D ','Breakdown (mechanical) of internal fixation device of right femur, subsequent encounter','Y','0000-00-00 00:00:00'),(170948,10,'T84.114S ','Breakdown (mechanical) of internal fixation device of right femur, sequela','Y','0000-00-00 00:00:00'),(170949,10,'T84.115A ','Breakdown (mechanical) of internal fixation device of left femur, initial encounter','Y','0000-00-00 00:00:00'),(170950,10,'T84.115D ','Breakdown (mechanical) of internal fixation device of left femur, subsequent encounter','Y','0000-00-00 00:00:00'),(170951,10,'T84.115S ','Breakdown (mechanical) of internal fixation device of left femur, sequela','Y','0000-00-00 00:00:00'),(170952,10,'T84.116A ','Breakdown (mechanical) of internal fixation device of bone of right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(170953,10,'T84.116D ','Breakdown (mechanical) of internal fixation device of bone of right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(170954,10,'T84.116S ','Breakdown (mechanical) of internal fixation device of bone of right lower leg, sequela','Y','0000-00-00 00:00:00'),(170955,10,'T84.117A ','Breakdown (mechanical) of internal fixation device of bone of left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(170956,10,'T84.117D ','Breakdown (mechanical) of internal fixation device of bone of left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(170957,10,'T84.117S ','Breakdown (mechanical) of internal fixation device of bone of left lower leg, sequela','Y','0000-00-00 00:00:00'),(170958,10,'T84.119A ','Breakdown (mechanical) of internal fixation device of unspecified bone of limb, initial encounter','Y','0000-00-00 00:00:00'),(170959,10,'T84.119D ','Breakdown (mechanical) of internal fixation device of unspecified bone of limb, subsequent encounter','Y','0000-00-00 00:00:00'),(170960,10,'T84.119S ','Breakdown (mechanical) of internal fixation device of unspecified bone of limb, sequela','Y','0000-00-00 00:00:00'),(170961,10,'T84.120A ','Displacement of internal fixation device of right humerus, initial encounter','Y','0000-00-00 00:00:00'),(170962,10,'T84.120D ','Displacement of internal fixation device of right humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(170963,10,'T84.120S ','Displacement of internal fixation device of right humerus, sequela','Y','0000-00-00 00:00:00'),(170964,10,'T84.121A ','Displacement of internal fixation device of left humerus, initial encounter','Y','0000-00-00 00:00:00'),(170965,10,'T84.121D ','Displacement of internal fixation device of left humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(170966,10,'T84.121S ','Displacement of internal fixation device of left humerus, sequela','Y','0000-00-00 00:00:00'),(170967,10,'T84.122A ','Displacement of internal fixation device of bone of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(170968,10,'T84.122D ','Displacement of internal fixation device of bone of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(170969,10,'T84.122S ','Displacement of internal fixation device of bone of right forearm, sequela','Y','0000-00-00 00:00:00'),(170970,10,'T84.123A ','Displacement of internal fixation device of bone of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(170971,10,'T84.123D ','Displacement of internal fixation device of bone of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(170972,10,'T84.123S ','Displacement of internal fixation device of bone of left forearm, sequela','Y','0000-00-00 00:00:00'),(170973,10,'T84.124A ','Displacement of internal fixation device of right femur, initial encounter','Y','0000-00-00 00:00:00'),(170974,10,'T84.124D ','Displacement of internal fixation device of right femur, subsequent encounter','Y','0000-00-00 00:00:00'),(170975,10,'T84.124S ','Displacement of internal fixation device of right femur, sequela','Y','0000-00-00 00:00:00'),(170976,10,'T84.125A ','Displacement of internal fixation device of left femur, initial encounter','Y','0000-00-00 00:00:00'),(170977,10,'T84.125D ','Displacement of internal fixation device of left femur, subsequent encounter','Y','0000-00-00 00:00:00'),(170978,10,'T84.125S ','Displacement of internal fixation device of left femur, sequela','Y','0000-00-00 00:00:00'),(170979,10,'T84.126A ','Displacement of internal fixation device of bone of right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(170980,10,'T84.126D ','Displacement of internal fixation device of bone of right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(170981,10,'T84.126S ','Displacement of internal fixation device of bone of right lower leg, sequela','Y','0000-00-00 00:00:00'),(170982,10,'T84.127A ','Displacement of internal fixation device of bone of left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(170983,10,'T84.127D ','Displacement of internal fixation device of bone of left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(170984,10,'T84.127S ','Displacement of internal fixation device of bone of left lower leg, sequela','Y','0000-00-00 00:00:00'),(170985,10,'T84.129A ','Displacement of internal fixation device of unspecified bone of limb, initial encounter','Y','0000-00-00 00:00:00'),(170986,10,'T84.129D ','Displacement of internal fixation device of unspecified bone of limb, subsequent encounter','Y','0000-00-00 00:00:00'),(170987,10,'T84.129S ','Displacement of internal fixation device of unspecified bone of limb, sequela','Y','0000-00-00 00:00:00'),(170988,10,'T84.190A ','Other mechanical complication of internal fixation device of right humerus, initial encounter','Y','0000-00-00 00:00:00'),(170989,10,'T84.190D ','Other mechanical complication of internal fixation device of right humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(170990,10,'T84.190S ','Other mechanical complication of internal fixation device of right humerus, sequela','Y','0000-00-00 00:00:00'),(170991,10,'T84.191A ','Other mechanical complication of internal fixation device of left humerus, initial encounter','Y','0000-00-00 00:00:00'),(170992,10,'T84.191D ','Other mechanical complication of internal fixation device of left humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(170993,10,'T84.191S ','Other mechanical complication of internal fixation device of left humerus, sequela','Y','0000-00-00 00:00:00'),(170994,10,'T84.192A ','Other mechanical complication of internal fixation device of bone of right forearm, initial encounter','Y','0000-00-00 00:00:00'),(170995,10,'T84.192D ','Other mechanical complication of internal fixation device of bone of right forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(170996,10,'T84.192S ','Other mechanical complication of internal fixation device of bone of right forearm, sequela','Y','0000-00-00 00:00:00'),(170997,10,'T84.193A ','Other mechanical complication of internal fixation device of bone of left forearm, initial encounter','Y','0000-00-00 00:00:00'),(170998,10,'T84.193D ','Other mechanical complication of internal fixation device of bone of left forearm, subsequent encounter','Y','0000-00-00 00:00:00'),(170999,10,'T84.193S ','Other mechanical complication of internal fixation device of bone of left forearm, sequela','Y','0000-00-00 00:00:00'),(171000,10,'T84.194A ','Other mechanical complication of internal fixation device of right femur, initial encounter','Y','0000-00-00 00:00:00'),(171001,10,'T84.194D ','Other mechanical complication of internal fixation device of right femur, subsequent encounter','Y','0000-00-00 00:00:00'),(171002,10,'T84.194S ','Other mechanical complication of internal fixation device of right femur, sequela','Y','0000-00-00 00:00:00'),(171003,10,'T84.195A ','Other mechanical complication of internal fixation device of left femur, initial encounter','Y','0000-00-00 00:00:00'),(171004,10,'T84.195D ','Other mechanical complication of internal fixation device of left femur, subsequent encounter','Y','0000-00-00 00:00:00'),(171005,10,'T84.195S ','Other mechanical complication of internal fixation device of left femur, sequela','Y','0000-00-00 00:00:00'),(171006,10,'T84.196A ','Other mechanical complication of internal fixation device of bone of right lower leg, initial encounter','Y','0000-00-00 00:00:00'),(171007,10,'T84.196D ','Other mechanical complication of internal fixation device of bone of right lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(171008,10,'T84.196S ','Other mechanical complication of internal fixation device of bone of right lower leg, sequela','Y','0000-00-00 00:00:00'),(171009,10,'T84.197A ','Other mechanical complication of internal fixation device of bone of left lower leg, initial encounter','Y','0000-00-00 00:00:00'),(171010,10,'T84.197D ','Other mechanical complication of internal fixation device of bone of left lower leg, subsequent encounter','Y','0000-00-00 00:00:00'),(171011,10,'T84.197S ','Other mechanical complication of internal fixation device of bone of left lower leg, sequela','Y','0000-00-00 00:00:00'),(171012,10,'T84.199A ','Other mechanical complication of internal fixation device of unspecified bone of limb, initial encounter','Y','0000-00-00 00:00:00'),(171013,10,'T84.199D ','Other mechanical complication of internal fixation device of unspecified bone of limb, subsequent encounter','Y','0000-00-00 00:00:00'),(171014,10,'T84.199S ','Other mechanical complication of internal fixation device of unspecified bone of limb, sequela','Y','0000-00-00 00:00:00'),(171015,10,'T84.210A ','Breakdown (mechanical) of internal fixation device of bones of hand and fingers, initial encounter','Y','0000-00-00 00:00:00'),(171016,10,'T84.210D ','Breakdown (mechanical) of internal fixation device of bones of hand and fingers, subsequent encounter','Y','0000-00-00 00:00:00'),(171017,10,'T84.210S ','Breakdown (mechanical) of internal fixation device of bones of hand and fingers, sequela','Y','0000-00-00 00:00:00'),(171018,10,'T84.213A ','Breakdown (mechanical) of internal fixation device of bones of foot and toes, initial encounter','Y','0000-00-00 00:00:00'),(171019,10,'T84.213D ','Breakdown (mechanical) of internal fixation device of bones of foot and toes, subsequent encounter','Y','0000-00-00 00:00:00'),(171020,10,'T84.213S ','Breakdown (mechanical) of internal fixation device of bones of foot and toes, sequela','Y','0000-00-00 00:00:00'),(171021,10,'T84.216A ','Breakdown (mechanical) of internal fixation device of vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(171022,10,'T84.216D ','Breakdown (mechanical) of internal fixation device of vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(171023,10,'T84.216S ','Breakdown (mechanical) of internal fixation device of vertebrae, sequela','Y','0000-00-00 00:00:00'),(171024,10,'T84.218A ','Breakdown (mechanical) of internal fixation device of other bones, initial encounter','Y','0000-00-00 00:00:00'),(171025,10,'T84.218D ','Breakdown (mechanical) of internal fixation device of other bones, subsequent encounter','Y','0000-00-00 00:00:00'),(171026,10,'T84.218S ','Breakdown (mechanical) of internal fixation device of other bones, sequela','Y','0000-00-00 00:00:00'),(171027,10,'T84.220A ','Displacement of internal fixation device of bones of hand and fingers, initial encounter','Y','0000-00-00 00:00:00'),(171028,10,'T84.220D ','Displacement of internal fixation device of bones of hand and fingers, subsequent encounter','Y','0000-00-00 00:00:00'),(171029,10,'T84.220S ','Displacement of internal fixation device of bones of hand and fingers, sequela','Y','0000-00-00 00:00:00'),(171030,10,'T84.223A ','Displacement of internal fixation device of bones of foot and toes, initial encounter','Y','0000-00-00 00:00:00'),(171031,10,'T84.223D ','Displacement of internal fixation device of bones of foot and toes, subsequent encounter','Y','0000-00-00 00:00:00'),(171032,10,'T84.223S ','Displacement of internal fixation device of bones of foot and toes, sequela','Y','0000-00-00 00:00:00'),(171033,10,'T84.226A ','Displacement of internal fixation device of vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(171034,10,'T84.226D ','Displacement of internal fixation device of vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(171035,10,'T84.226S ','Displacement of internal fixation device of vertebrae, sequela','Y','0000-00-00 00:00:00'),(171036,10,'T84.228A ','Displacement of internal fixation device of other bones, initial encounter','Y','0000-00-00 00:00:00'),(171037,10,'T84.228D ','Displacement of internal fixation device of other bones, subsequent encounter','Y','0000-00-00 00:00:00'),(171038,10,'T84.228S ','Displacement of internal fixation device of other bones, sequela','Y','0000-00-00 00:00:00'),(171039,10,'T84.290A ','Other mechanical complication of internal fixation device of bones of hand and fingers, initial encounter','Y','0000-00-00 00:00:00'),(171040,10,'T84.290D ','Other mechanical complication of internal fixation device of bones of hand and fingers, subsequent encounter','Y','0000-00-00 00:00:00'),(171041,10,'T84.290S ','Other mechanical complication of internal fixation device of bones of hand and fingers, sequela','Y','0000-00-00 00:00:00'),(171042,10,'T84.293A ','Other mechanical complication of internal fixation device of bones of foot and toes, initial encounter','Y','0000-00-00 00:00:00'),(171043,10,'T84.293D ','Other mechanical complication of internal fixation device of bones of foot and toes, subsequent encounter','Y','0000-00-00 00:00:00'),(171044,10,'T84.293S ','Other mechanical complication of internal fixation device of bones of foot and toes, sequela','Y','0000-00-00 00:00:00'),(171045,10,'T84.296A ','Other mechanical complication of internal fixation device of vertebrae, initial encounter','Y','0000-00-00 00:00:00'),(171046,10,'T84.296D ','Other mechanical complication of internal fixation device of vertebrae, subsequent encounter','Y','0000-00-00 00:00:00'),(171047,10,'T84.296S ','Other mechanical complication of internal fixation device of vertebrae, sequela','Y','0000-00-00 00:00:00'),(171048,10,'T84.298A ','Other mechanical complication of internal fixation device of other bones, initial encounter','Y','0000-00-00 00:00:00'),(171049,10,'T84.298D ','Other mechanical complication of internal fixation device of other bones, subsequent encounter','Y','0000-00-00 00:00:00'),(171050,10,'T84.298S ','Other mechanical complication of internal fixation device of other bones, sequela','Y','0000-00-00 00:00:00'),(171051,10,'T84.310A ','Breakdown (mechanical) of electronic bone stimulator, initial encounter','Y','0000-00-00 00:00:00'),(171052,10,'T84.310D ','Breakdown (mechanical) of electronic bone stimulator, subsequent encounter','Y','0000-00-00 00:00:00'),(171053,10,'T84.310S ','Breakdown (mechanical) of electronic bone stimulator, sequela','Y','0000-00-00 00:00:00'),(171054,10,'T84.318A ','Breakdown (mechanical) of other bone devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171055,10,'T84.318D ','Breakdown (mechanical) of other bone devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171056,10,'T84.318S ','Breakdown (mechanical) of other bone devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171057,10,'T84.320A ','Displacement of electronic bone stimulator, initial encounter','Y','0000-00-00 00:00:00'),(171058,10,'T84.320D ','Displacement of electronic bone stimulator, subsequent encounter','Y','0000-00-00 00:00:00'),(171059,10,'T84.320S ','Displacement of electronic bone stimulator, sequela','Y','0000-00-00 00:00:00'),(171060,10,'T84.328A ','Displacement of other bone devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171061,10,'T84.328D ','Displacement of other bone devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171062,10,'T84.328S ','Displacement of other bone devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171063,10,'T84.390A ','Other mechanical complication of electronic bone stimulator, initial encounter','Y','0000-00-00 00:00:00'),(171064,10,'T84.390D ','Other mechanical complication of electronic bone stimulator, subsequent encounter','Y','0000-00-00 00:00:00'),(171065,10,'T84.390S ','Other mechanical complication of electronic bone stimulator, sequela','Y','0000-00-00 00:00:00'),(171066,10,'T84.398A ','Other mechanical complication of other bone devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171067,10,'T84.398D ','Other mechanical complication of other bone devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171068,10,'T84.398S ','Other mechanical complication of other bone devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171069,10,'T84.410A ','Breakdown (mechanical) of muscle and tendon graft, initial encounter','Y','0000-00-00 00:00:00'),(171070,10,'T84.410D ','Breakdown (mechanical) of muscle and tendon graft, subsequent encounter','Y','0000-00-00 00:00:00'),(171071,10,'T84.410S ','Breakdown (mechanical) of muscle and tendon graft, sequela','Y','0000-00-00 00:00:00'),(171072,10,'T84.418A ','Breakdown (mechanical) of other internal orthopedic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171073,10,'T84.418D ','Breakdown (mechanical) of other internal orthopedic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171074,10,'T84.418S ','Breakdown (mechanical) of other internal orthopedic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171075,10,'T84.420A ','Displacement of muscle and tendon graft, initial encounter','Y','0000-00-00 00:00:00'),(171076,10,'T84.420D ','Displacement of muscle and tendon graft, subsequent encounter','Y','0000-00-00 00:00:00'),(171077,10,'T84.420S ','Displacement of muscle and tendon graft, sequela','Y','0000-00-00 00:00:00'),(171078,10,'T84.428A ','Displacement of other internal orthopedic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171079,10,'T84.428D ','Displacement of other internal orthopedic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171080,10,'T84.428S ','Displacement of other internal orthopedic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171081,10,'T84.490A ','Other mechanical complication of muscle and tendon graft, initial encounter','Y','0000-00-00 00:00:00'),(171082,10,'T84.490D ','Other mechanical complication of muscle and tendon graft, subsequent encounter','Y','0000-00-00 00:00:00'),(171083,10,'T84.490S ','Other mechanical complication of muscle and tendon graft, sequela','Y','0000-00-00 00:00:00'),(171084,10,'T84.498A ','Other mechanical complication of other internal orthopedic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171085,10,'T84.498D ','Other mechanical complication of other internal orthopedic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171086,10,'T84.498S ','Other mechanical complication of other internal orthopedic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171087,10,'T84.50XA ','Infection and inflammatory reaction due to unspecified internal joint prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(171088,10,'T84.50XD ','Infection and inflammatory reaction due to unspecified internal joint prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(171089,10,'T84.50XS ','Infection and inflammatory reaction due to unspecified internal joint prosthesis, sequela','Y','0000-00-00 00:00:00'),(171090,10,'T84.51XA ','Infection and inflammatory reaction due to internal right hip prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(171091,10,'T84.51XD ','Infection and inflammatory reaction due to internal right hip prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(171092,10,'T84.51XS ','Infection and inflammatory reaction due to internal right hip prosthesis, sequela','Y','0000-00-00 00:00:00'),(171093,10,'T84.52XA ','Infection and inflammatory reaction due to internal left hip prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(171094,10,'T84.52XD ','Infection and inflammatory reaction due to internal left hip prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(171095,10,'T84.52XS ','Infection and inflammatory reaction due to internal left hip prosthesis, sequela','Y','0000-00-00 00:00:00'),(171096,10,'T84.53XA ','Infection and inflammatory reaction due to internal right knee prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(171097,10,'T84.53XD ','Infection and inflammatory reaction due to internal right knee prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(171098,10,'T84.53XS ','Infection and inflammatory reaction due to internal right knee prosthesis, sequela','Y','0000-00-00 00:00:00'),(171099,10,'T84.54XA ','Infection and inflammatory reaction due to internal left knee prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(171100,10,'T84.54XD ','Infection and inflammatory reaction due to internal left knee prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(171101,10,'T84.54XS ','Infection and inflammatory reaction due to internal left knee prosthesis, sequela','Y','0000-00-00 00:00:00'),(171102,10,'T84.59XA ','Infection and inflammatory reaction due to other internal joint prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(171103,10,'T84.59XD ','Infection and inflammatory reaction due to other internal joint prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(171104,10,'T84.59XS ','Infection and inflammatory reaction due to other internal joint prosthesis, sequela','Y','0000-00-00 00:00:00'),(171105,10,'T84.60XA ','Infection and inflammatory reaction due to internal fixation device of unspecified site, initial encounter','Y','0000-00-00 00:00:00'),(171106,10,'T84.60XD ','Infection and inflammatory reaction due to internal fixation device of unspecified site, subsequent encounter','Y','0000-00-00 00:00:00'),(171107,10,'T84.60XS ','Infection and inflammatory reaction due to internal fixation device of unspecified site, sequela','Y','0000-00-00 00:00:00'),(171108,10,'T84.610A ','Infection and inflammatory reaction due to internal fixation device of right humerus, initial encounter','Y','0000-00-00 00:00:00'),(171109,10,'T84.610D ','Infection and inflammatory reaction due to internal fixation device of right humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(171110,10,'T84.610S ','Infection and inflammatory reaction due to internal fixation device of right humerus, sequela','Y','0000-00-00 00:00:00'),(171111,10,'T84.611A ','Infection and inflammatory reaction due to internal fixation device of left humerus, initial encounter','Y','0000-00-00 00:00:00'),(171112,10,'T84.611D ','Infection and inflammatory reaction due to internal fixation device of left humerus, subsequent encounter','Y','0000-00-00 00:00:00'),(171113,10,'T84.611S ','Infection and inflammatory reaction due to internal fixation device of left humerus, sequela','Y','0000-00-00 00:00:00'),(171114,10,'T84.612A ','Infection and inflammatory reaction due to internal fixation device of right radius, initial encounter','Y','0000-00-00 00:00:00'),(171115,10,'T84.612D ','Infection and inflammatory reaction due to internal fixation device of right radius, subsequent encounter','Y','0000-00-00 00:00:00'),(171116,10,'T84.612S ','Infection and inflammatory reaction due to internal fixation device of right radius, sequela','Y','0000-00-00 00:00:00'),(171117,10,'T84.613A ','Infection and inflammatory reaction due to internal fixation device of left radius, initial encounter','Y','0000-00-00 00:00:00'),(171118,10,'T84.613D ','Infection and inflammatory reaction due to internal fixation device of left radius, subsequent encounter','Y','0000-00-00 00:00:00'),(171119,10,'T84.613S ','Infection and inflammatory reaction due to internal fixation device of left radius, sequela','Y','0000-00-00 00:00:00'),(171120,10,'T84.614A ','Infection and inflammatory reaction due to internal fixation device of right ulna, initial encounter','Y','0000-00-00 00:00:00'),(171121,10,'T84.614D ','Infection and inflammatory reaction due to internal fixation device of right ulna, subsequent encounter','Y','0000-00-00 00:00:00'),(171122,10,'T84.614S ','Infection and inflammatory reaction due to internal fixation device of right ulna, sequela','Y','0000-00-00 00:00:00'),(171123,10,'T84.615A ','Infection and inflammatory reaction due to internal fixation device of left ulna, initial encounter','Y','0000-00-00 00:00:00'),(171124,10,'T84.615D ','Infection and inflammatory reaction due to internal fixation device of left ulna, subsequent encounter','Y','0000-00-00 00:00:00'),(171125,10,'T84.615S ','Infection and inflammatory reaction due to internal fixation device of left ulna, sequela','Y','0000-00-00 00:00:00'),(171126,10,'T84.619A ','Infection and inflammatory reaction due to internal fixation device of unspecified bone of arm, initial encounter','Y','0000-00-00 00:00:00'),(171127,10,'T84.619D ','Infection and inflammatory reaction due to internal fixation device of unspecified bone of arm, subsequent encounter','Y','0000-00-00 00:00:00'),(171128,10,'T84.619S ','Infection and inflammatory reaction due to internal fixation device of unspecified bone of arm, sequela','Y','0000-00-00 00:00:00'),(171129,10,'T84.620A ','Infection and inflammatory reaction due to internal fixation device of right femur, initial encounter','Y','0000-00-00 00:00:00'),(171130,10,'T84.620D ','Infection and inflammatory reaction due to internal fixation device of right femur, subsequent encounter','Y','0000-00-00 00:00:00'),(171131,10,'T84.620S ','Infection and inflammatory reaction due to internal fixation device of right femur, sequela','Y','0000-00-00 00:00:00'),(171132,10,'T84.621A ','Infection and inflammatory reaction due to internal fixation device of left femur, initial encounter','Y','0000-00-00 00:00:00'),(171133,10,'T84.621D ','Infection and inflammatory reaction due to internal fixation device of left femur, subsequent encounter','Y','0000-00-00 00:00:00'),(171134,10,'T84.621S ','Infection and inflammatory reaction due to internal fixation device of left femur, sequela','Y','0000-00-00 00:00:00'),(171135,10,'T84.622A ','Infection and inflammatory reaction due to internal fixation device of right tibia, initial encounter','Y','0000-00-00 00:00:00'),(171136,10,'T84.622D ','Infection and inflammatory reaction due to internal fixation device of right tibia, subsequent encounter','Y','0000-00-00 00:00:00'),(171137,10,'T84.622S ','Infection and inflammatory reaction due to internal fixation device of right tibia, sequela','Y','0000-00-00 00:00:00'),(171138,10,'T84.623A ','Infection and inflammatory reaction due to internal fixation device of left tibia, initial encounter','Y','0000-00-00 00:00:00'),(171139,10,'T84.623D ','Infection and inflammatory reaction due to internal fixation device of left tibia, subsequent encounter','Y','0000-00-00 00:00:00'),(171140,10,'T84.623S ','Infection and inflammatory reaction due to internal fixation device of left tibia, sequela','Y','0000-00-00 00:00:00'),(171141,10,'T84.624A ','Infection and inflammatory reaction due to internal fixation device of right fibula, initial encounter','Y','0000-00-00 00:00:00'),(171142,10,'T84.624D ','Infection and inflammatory reaction due to internal fixation device of right fibula, subsequent encounter','Y','0000-00-00 00:00:00'),(171143,10,'T84.624S ','Infection and inflammatory reaction due to internal fixation device of right fibula, sequela','Y','0000-00-00 00:00:00'),(171144,10,'T84.625A ','Infection and inflammatory reaction due to internal fixation device of left fibula, initial encounter','Y','0000-00-00 00:00:00'),(171145,10,'T84.625D ','Infection and inflammatory reaction due to internal fixation device of left fibula, subsequent encounter','Y','0000-00-00 00:00:00'),(171146,10,'T84.625S ','Infection and inflammatory reaction due to internal fixation device of left fibula, sequela','Y','0000-00-00 00:00:00'),(171147,10,'T84.629A ','Infection and inflammatory reaction due to internal fixation device of unspecified bone of leg, initial encounter','Y','0000-00-00 00:00:00'),(171148,10,'T84.629D ','Infection and inflammatory reaction due to internal fixation device of unspecified bone of leg, subsequent encounter','Y','0000-00-00 00:00:00'),(171149,10,'T84.629S ','Infection and inflammatory reaction due to internal fixation device of unspecified bone of leg, sequela','Y','0000-00-00 00:00:00'),(171150,10,'T84.63XA ','Infection and inflammatory reaction due to internal fixation device of spine, initial encounter','Y','0000-00-00 00:00:00'),(171151,10,'T84.63XD ','Infection and inflammatory reaction due to internal fixation device of spine, subsequent encounter','Y','0000-00-00 00:00:00'),(171152,10,'T84.63XS ','Infection and inflammatory reaction due to internal fixation device of spine, sequela','Y','0000-00-00 00:00:00'),(171153,10,'T84.69XA ','Infection and inflammatory reaction due to internal fixation device of other site, initial encounter','Y','0000-00-00 00:00:00'),(171154,10,'T84.69XD ','Infection and inflammatory reaction due to internal fixation device of other site, subsequent encounter','Y','0000-00-00 00:00:00'),(171155,10,'T84.69XS ','Infection and inflammatory reaction due to internal fixation device of other site, sequela','Y','0000-00-00 00:00:00'),(171156,10,'T84.7XXA ','Infection and inflammatory reaction due to other internal orthopedic prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171157,10,'T84.7XXD ','Infection and inflammatory reaction due to other internal orthopedic prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171158,10,'T84.7XXS ','Infection and inflammatory reaction due to other internal orthopedic prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171159,10,'T84.81XA ','Embolism due to internal orthopedic prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171160,10,'T84.81XD ','Embolism due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171161,10,'T84.81XS ','Embolism due to internal orthopedic prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171162,10,'T84.82XA ','Fibrosis due to internal orthopedic prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171163,10,'T84.82XD ','Fibrosis due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171164,10,'T84.82XS ','Fibrosis due to internal orthopedic prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171165,10,'T84.83XA ','Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171166,10,'T84.83XD ','Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171167,10,'T84.83XS ','Hemorrhage due to internal orthopedic prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171168,10,'T84.84XA ','Pain due to internal orthopedic prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171169,10,'T84.84XD ','Pain due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171170,10,'T84.84XS ','Pain due to internal orthopedic prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171171,10,'T84.85XA ','Stenosis due to internal orthopedic prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171172,10,'T84.85XD ','Stenosis due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171173,10,'T84.85XS ','Stenosis due to internal orthopedic prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171174,10,'T84.86XA ','Thrombosis due to internal orthopedic prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171175,10,'T84.86XD ','Thrombosis due to internal orthopedic prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171176,10,'T84.86XS ','Thrombosis due to internal orthopedic prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171177,10,'T84.89XA ','Other specified complication of internal orthopedic prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171178,10,'T84.89XD ','Other specified complication of internal orthopedic prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171179,10,'T84.89XS ','Other specified complication of internal orthopedic prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171180,10,'T84.9XXA ','Unspecified complication of internal orthopedic prosthetic device, implant and graft, initial encounter','Y','0000-00-00 00:00:00'),(171181,10,'T84.9XXD ','Unspecified complication of internal orthopedic prosthetic device, implant and graft, subsequent encounter','Y','0000-00-00 00:00:00'),(171182,10,'T84.9XXS ','Unspecified complication of internal orthopedic prosthetic device, implant and graft, sequela','Y','0000-00-00 00:00:00'),(171183,10,'T85.01XA ','Breakdown (mechanical) of ventricular intracranial (communicating) shunt, initial encounter','Y','0000-00-00 00:00:00'),(171184,10,'T85.01XD ','Breakdown (mechanical) of ventricular intracranial (communicating) shunt, subsequent encounter','Y','0000-00-00 00:00:00'),(171185,10,'T85.01XS ','Breakdown (mechanical) of ventricular intracranial (communicating) shunt, sequela','Y','0000-00-00 00:00:00'),(171186,10,'T85.02XA ','Displacement of ventricular intracranial (communicating) shunt, initial encounter','Y','0000-00-00 00:00:00'),(171187,10,'T85.02XD ','Displacement of ventricular intracranial (communicating) shunt, subsequent encounter','Y','0000-00-00 00:00:00'),(171188,10,'T85.02XS ','Displacement of ventricular intracranial (communicating) shunt, sequela','Y','0000-00-00 00:00:00'),(171189,10,'T85.03XA ','Leakage of ventricular intracranial (communicating) shunt, initial encounter','Y','0000-00-00 00:00:00'),(171190,10,'T85.03XD ','Leakage of ventricular intracranial (communicating) shunt, subsequent encounter','Y','0000-00-00 00:00:00'),(171191,10,'T85.03XS ','Leakage of ventricular intracranial (communicating) shunt, sequela','Y','0000-00-00 00:00:00'),(171192,10,'T85.09XA ','Other mechanical complication of ventricular intracranial (communicating) shunt, initial encounter','Y','0000-00-00 00:00:00'),(171193,10,'T85.09XD ','Other mechanical complication of ventricular intracranial (communicating) shunt, subsequent encounter','Y','0000-00-00 00:00:00'),(171194,10,'T85.09XS ','Other mechanical complication of ventricular intracranial (communicating) shunt, sequela','Y','0000-00-00 00:00:00'),(171195,10,'T85.110A ','Breakdown (mechanical) of implanted electronic neurostimulator of brain electrode (lead), initial encounter','Y','0000-00-00 00:00:00'),(171196,10,'T85.110D ','Breakdown (mechanical) of implanted electronic neurostimulator of brain electrode (lead), subsequent encounter','Y','0000-00-00 00:00:00'),(171197,10,'T85.110S ','Breakdown (mechanical) of implanted electronic neurostimulator of brain electrode (lead), sequela','Y','0000-00-00 00:00:00'),(171198,10,'T85.111A ','Breakdown (mechanical) of implanted electronic neurostimulator of peripheral nerve electrode (lead), initial encounter','Y','0000-00-00 00:00:00'),(171199,10,'T85.111D ','Breakdown (mechanical) of implanted electronic neurostimulator of peripheral nerve electrode (lead), subsequent encounter','Y','0000-00-00 00:00:00'),(171200,10,'T85.111S ','Breakdown (mechanical) of implanted electronic neurostimulator of peripheral nerve electrode (lead), sequela','Y','0000-00-00 00:00:00'),(171201,10,'T85.112A ','Breakdown (mechanical) of implanted electronic neurostimulator of spinal cord electrode (lead), initial encounter','Y','0000-00-00 00:00:00'),(171202,10,'T85.112D ','Breakdown (mechanical) of implanted electronic neurostimulator of spinal cord electrode (lead), subsequent encounter','Y','0000-00-00 00:00:00'),(171203,10,'T85.112S ','Breakdown (mechanical) of implanted electronic neurostimulator of spinal cord electrode (lead), sequela','Y','0000-00-00 00:00:00'),(171204,10,'T85.113A ','Breakdown (mechanical) of implanted electronic neurostimulator, generator, initial encounter','Y','0000-00-00 00:00:00'),(171205,10,'T85.113D ','Breakdown (mechanical) of implanted electronic neurostimulator, generator, subsequent encounter','Y','0000-00-00 00:00:00'),(171206,10,'T85.113S ','Breakdown (mechanical) of implanted electronic neurostimulator, generator, sequela','Y','0000-00-00 00:00:00'),(171207,10,'T85.118A ','Breakdown (mechanical) of other implanted electronic stimulator of nervous system, initial encounter','Y','0000-00-00 00:00:00'),(171208,10,'T85.118D ','Breakdown (mechanical) of other implanted electronic stimulator of nervous system, subsequent encounter','Y','0000-00-00 00:00:00'),(171209,10,'T85.118S ','Breakdown (mechanical) of other implanted electronic stimulator of nervous system, sequela','Y','0000-00-00 00:00:00'),(171210,10,'T85.120A ','Displacement of implanted electronic neurostimulator of brain electrode (lead), initial encounter','Y','0000-00-00 00:00:00'),(171211,10,'T85.120D ','Displacement of implanted electronic neurostimulator of brain electrode (lead), subsequent encounter','Y','0000-00-00 00:00:00'),(171212,10,'T85.120S ','Displacement of implanted electronic neurostimulator of brain electrode (lead), sequela','Y','0000-00-00 00:00:00'),(171213,10,'T85.121A ','Displacement of implanted electronic neurostimulator of peripheral nerve electrode (lead), initial encounter','Y','0000-00-00 00:00:00'),(171214,10,'T85.121D ','Displacement of implanted electronic neurostimulator of peripheral nerve electrode (lead), subsequent encounter','Y','0000-00-00 00:00:00'),(171215,10,'T85.121S ','Displacement of implanted electronic neurostimulator of peripheral nerve electrode (lead), sequela','Y','0000-00-00 00:00:00'),(171216,10,'T85.122A ','Displacement of implanted electronic neurostimulator of spinal cord electrode (lead), initial encounter','Y','0000-00-00 00:00:00'),(171217,10,'T85.122D ','Displacement of implanted electronic neurostimulator of spinal cord electrode (lead), subsequent encounter','Y','0000-00-00 00:00:00'),(171218,10,'T85.122S ','Displacement of implanted electronic neurostimulator of spinal cord electrode (lead), sequela','Y','0000-00-00 00:00:00'),(171219,10,'T85.123A ','Displacement of implanted electronic neurostimulator, generator, initial encounter','Y','0000-00-00 00:00:00'),(171220,10,'T85.123D ','Displacement of implanted electronic neurostimulator, generator, subsequent encounter','Y','0000-00-00 00:00:00'),(171221,10,'T85.123S ','Displacement of implanted electronic neurostimulator, generator, sequela','Y','0000-00-00 00:00:00'),(171222,10,'T85.128A ','Displacement of other implanted electronic stimulator of nervous system, initial encounter','Y','0000-00-00 00:00:00'),(171223,10,'T85.128D ','Displacement of other implanted electronic stimulator of nervous system, subsequent encounter','Y','0000-00-00 00:00:00'),(171224,10,'T85.128S ','Displacement of other implanted electronic stimulator of nervous system, sequela','Y','0000-00-00 00:00:00'),(171225,10,'T85.190A ','Other mechanical complication of implanted electronic neurostimulator of brain electrode (lead), initial encounter','Y','0000-00-00 00:00:00'),(171226,10,'T85.190D ','Other mechanical complication of implanted electronic neurostimulator of brain electrode (lead), subsequent encounter','Y','0000-00-00 00:00:00'),(171227,10,'T85.190S ','Other mechanical complication of implanted electronic neurostimulator of brain electrode (lead), sequela','Y','0000-00-00 00:00:00'),(171228,10,'T85.191A ','Other mechanical complication of implanted electronic neurostimulator of peripheral nerve electrode (lead), initial encounter','Y','0000-00-00 00:00:00'),(171229,10,'T85.191D ','Other mechanical complication of implanted electronic neurostimulator of peripheral nerve electrode (lead), subsequent encounter','Y','0000-00-00 00:00:00'),(171230,10,'T85.191S ','Other mechanical complication of implanted electronic neurostimulator of peripheral nerve electrode (lead), sequela','Y','0000-00-00 00:00:00'),(171231,10,'T85.192A ','Other mechanical complication of implanted electronic neurostimulator of spinal cord electrode (lead), initial encounter','Y','0000-00-00 00:00:00'),(171232,10,'T85.192D ','Other mechanical complication of implanted electronic neurostimulator of spinal cord electrode (lead), subsequent encounter','Y','0000-00-00 00:00:00'),(171233,10,'T85.192S ','Other mechanical complication of implanted electronic neurostimulator of spinal cord electrode (lead), sequela','Y','0000-00-00 00:00:00'),(171234,10,'T85.193A ','Other mechanical complication of implanted electronic neurostimulator, generator, initial encounter','Y','0000-00-00 00:00:00'),(171235,10,'T85.193D ','Other mechanical complication of implanted electronic neurostimulator, generator, subsequent encounter','Y','0000-00-00 00:00:00'),(171236,10,'T85.193S ','Other mechanical complication of implanted electronic neurostimulator, generator, sequela','Y','0000-00-00 00:00:00'),(171237,10,'T85.199A ','Other mechanical complication of other implanted electronic stimulator of nervous system, initial encounter','Y','0000-00-00 00:00:00'),(171238,10,'T85.199D ','Other mechanical complication of other implanted electronic stimulator of nervous system, subsequent encounter','Y','0000-00-00 00:00:00'),(171239,10,'T85.199S ','Other mechanical complication of other implanted electronic stimulator of nervous system, sequela','Y','0000-00-00 00:00:00'),(171240,10,'T85.21XA ','Breakdown (mechanical) of intraocular lens, initial encounter','Y','0000-00-00 00:00:00'),(171241,10,'T85.21XD ','Breakdown (mechanical) of intraocular lens, subsequent encounter','Y','0000-00-00 00:00:00'),(171242,10,'T85.21XS ','Breakdown (mechanical) of intraocular lens, sequela','Y','0000-00-00 00:00:00'),(171243,10,'T85.22XA ','Displacement of intraocular lens, initial encounter','Y','0000-00-00 00:00:00'),(171244,10,'T85.22XD ','Displacement of intraocular lens, subsequent encounter','Y','0000-00-00 00:00:00'),(171245,10,'T85.22XS ','Displacement of intraocular lens, sequela','Y','0000-00-00 00:00:00'),(171246,10,'T85.29XA ','Other mechanical complication of intraocular lens, initial encounter','Y','0000-00-00 00:00:00'),(171247,10,'T85.29XD ','Other mechanical complication of intraocular lens, subsequent encounter','Y','0000-00-00 00:00:00'),(171248,10,'T85.29XS ','Other mechanical complication of intraocular lens, sequela','Y','0000-00-00 00:00:00'),(171249,10,'T85.310A ','Breakdown (mechanical) of prosthetic orbit of right eye, initial encounter','Y','0000-00-00 00:00:00'),(171250,10,'T85.310D ','Breakdown (mechanical) of prosthetic orbit of right eye, subsequent encounter','Y','0000-00-00 00:00:00'),(171251,10,'T85.310S ','Breakdown (mechanical) of prosthetic orbit of right eye, sequela','Y','0000-00-00 00:00:00'),(171252,10,'T85.311A ','Breakdown (mechanical) of prosthetic orbit of left eye, initial encounter','Y','0000-00-00 00:00:00'),(171253,10,'T85.311D ','Breakdown (mechanical) of prosthetic orbit of left eye, subsequent encounter','Y','0000-00-00 00:00:00'),(171254,10,'T85.311S ','Breakdown (mechanical) of prosthetic orbit of left eye, sequela','Y','0000-00-00 00:00:00'),(171255,10,'T85.318A ','Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171256,10,'T85.318D ','Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171257,10,'T85.318S ','Breakdown (mechanical) of other ocular prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171258,10,'T85.320A ','Displacement of prosthetic orbit of right eye, initial encounter','Y','0000-00-00 00:00:00'),(171259,10,'T85.320D ','Displacement of prosthetic orbit of right eye, subsequent encounter','Y','0000-00-00 00:00:00'),(171260,10,'T85.320S ','Displacement of prosthetic orbit of right eye, sequela','Y','0000-00-00 00:00:00'),(171261,10,'T85.321A ','Displacement of prosthetic orbit of left eye, initial encounter','Y','0000-00-00 00:00:00'),(171262,10,'T85.321D ','Displacement of prosthetic orbit of left eye, subsequent encounter','Y','0000-00-00 00:00:00'),(171263,10,'T85.321S ','Displacement of prosthetic orbit of left eye, sequela','Y','0000-00-00 00:00:00'),(171264,10,'T85.328A ','Displacement of other ocular prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171265,10,'T85.328D ','Displacement of other ocular prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171266,10,'T85.328S ','Displacement of other ocular prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171267,10,'T85.390A ','Other mechanical complication of prosthetic orbit of right eye, initial encounter','Y','0000-00-00 00:00:00'),(171268,10,'T85.390D ','Other mechanical complication of prosthetic orbit of right eye, subsequent encounter','Y','0000-00-00 00:00:00'),(171269,10,'T85.390S ','Other mechanical complication of prosthetic orbit of right eye, sequela','Y','0000-00-00 00:00:00'),(171270,10,'T85.391A ','Other mechanical complication of prosthetic orbit of left eye, initial encounter','Y','0000-00-00 00:00:00'),(171271,10,'T85.391D ','Other mechanical complication of prosthetic orbit of left eye, subsequent encounter','Y','0000-00-00 00:00:00'),(171272,10,'T85.391S ','Other mechanical complication of prosthetic orbit of left eye, sequela','Y','0000-00-00 00:00:00'),(171273,10,'T85.398A ','Other mechanical complication of other ocular prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171274,10,'T85.398D ','Other mechanical complication of other ocular prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171275,10,'T85.398S ','Other mechanical complication of other ocular prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171276,10,'T85.41XA ','Breakdown (mechanical) of breast prosthesis and implant, initial encounter','Y','0000-00-00 00:00:00'),(171277,10,'T85.41XD ','Breakdown (mechanical) of breast prosthesis and implant, subsequent encounter','Y','0000-00-00 00:00:00'),(171278,10,'T85.41XS ','Breakdown (mechanical) of breast prosthesis and implant, sequela','Y','0000-00-00 00:00:00'),(171279,10,'T85.42XA ','Displacement of breast prosthesis and implant, initial encounter','Y','0000-00-00 00:00:00'),(171280,10,'T85.42XD ','Displacement of breast prosthesis and implant, subsequent encounter','Y','0000-00-00 00:00:00'),(171281,10,'T85.42XS ','Displacement of breast prosthesis and implant, sequela','Y','0000-00-00 00:00:00'),(171282,10,'T85.43XA ','Leakage of breast prosthesis and implant, initial encounter','Y','0000-00-00 00:00:00'),(171283,10,'T85.43XD ','Leakage of breast prosthesis and implant, subsequent encounter','Y','0000-00-00 00:00:00'),(171284,10,'T85.43XS ','Leakage of breast prosthesis and implant, sequela','Y','0000-00-00 00:00:00'),(171285,10,'T85.44XA ','Capsular contracture of breast implant, initial encounter','Y','0000-00-00 00:00:00'),(171286,10,'T85.44XD ','Capsular contracture of breast implant, subsequent encounter','Y','0000-00-00 00:00:00'),(171287,10,'T85.44XS ','Capsular contracture of breast implant, sequela','Y','0000-00-00 00:00:00'),(171288,10,'T85.49XA ','Other mechanical complication of breast prosthesis and implant, initial encounter','Y','0000-00-00 00:00:00'),(171289,10,'T85.49XD ','Other mechanical complication of breast prosthesis and implant, subsequent encounter','Y','0000-00-00 00:00:00'),(171290,10,'T85.49XS ','Other mechanical complication of breast prosthesis and implant, sequela','Y','0000-00-00 00:00:00'),(171291,10,'T85.510A ','Breakdown (mechanical) of bile duct prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(171292,10,'T85.510D ','Breakdown (mechanical) of bile duct prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(171293,10,'T85.510S ','Breakdown (mechanical) of bile duct prosthesis, sequela','Y','0000-00-00 00:00:00'),(171294,10,'T85.511A ','Breakdown (mechanical) of esophageal anti-reflux device, initial encounter','Y','0000-00-00 00:00:00'),(171295,10,'T85.511D ','Breakdown (mechanical) of esophageal anti-reflux device, subsequent encounter','Y','0000-00-00 00:00:00'),(171296,10,'T85.511S ','Breakdown (mechanical) of esophageal anti-reflux device, sequela','Y','0000-00-00 00:00:00'),(171297,10,'T85.518A ','Breakdown (mechanical) of other gastrointestinal prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171298,10,'T85.518D ','Breakdown (mechanical) of other gastrointestinal prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171299,10,'T85.518S ','Breakdown (mechanical) of other gastrointestinal prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171300,10,'T85.520A ','Displacement of bile duct prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(171301,10,'T85.520D ','Displacement of bile duct prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(171302,10,'T85.520S ','Displacement of bile duct prosthesis, sequela','Y','0000-00-00 00:00:00'),(171303,10,'T85.521A ','Displacement of esophageal anti-reflux device, initial encounter','Y','0000-00-00 00:00:00'),(171304,10,'T85.521D ','Displacement of esophageal anti-reflux device, subsequent encounter','Y','0000-00-00 00:00:00'),(171305,10,'T85.521S ','Displacement of esophageal anti-reflux device, sequela','Y','0000-00-00 00:00:00'),(171306,10,'T85.528A ','Displacement of other gastrointestinal prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171307,10,'T85.528D ','Displacement of other gastrointestinal prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171308,10,'T85.528S ','Displacement of other gastrointestinal prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171309,10,'T85.590A ','Other mechanical complication of bile duct prosthesis, initial encounter','Y','0000-00-00 00:00:00'),(171310,10,'T85.590D ','Other mechanical complication of bile duct prosthesis, subsequent encounter','Y','0000-00-00 00:00:00'),(171311,10,'T85.590S ','Other mechanical complication of bile duct prosthesis, sequela','Y','0000-00-00 00:00:00'),(171312,10,'T85.591A ','Other mechanical complication of esophageal anti-reflux device, initial encounter','Y','0000-00-00 00:00:00'),(171313,10,'T85.591D ','Other mechanical complication of esophageal anti-reflux device, subsequent encounter','Y','0000-00-00 00:00:00'),(171314,10,'T85.591S ','Other mechanical complication of esophageal anti-reflux device, sequela','Y','0000-00-00 00:00:00'),(171315,10,'T85.598A ','Other mechanical complication of other gastrointestinal prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171316,10,'T85.598D ','Other mechanical complication of other gastrointestinal prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171317,10,'T85.598S ','Other mechanical complication of other gastrointestinal prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171318,10,'T85.610A ','Breakdown (mechanical) of cranial or spinal infusion catheter, initial encounter','Y','0000-00-00 00:00:00'),(171319,10,'T85.610D ','Breakdown (mechanical) of cranial or spinal infusion catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(171320,10,'T85.610S ','Breakdown (mechanical) of cranial or spinal infusion catheter, sequela','Y','0000-00-00 00:00:00'),(171321,10,'T85.611A ','Breakdown (mechanical) of intraperitoneal dialysis catheter, initial encounter','Y','0000-00-00 00:00:00'),(171322,10,'T85.611D ','Breakdown (mechanical) of intraperitoneal dialysis catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(171323,10,'T85.611S ','Breakdown (mechanical) of intraperitoneal dialysis catheter, sequela','Y','0000-00-00 00:00:00'),(171324,10,'T85.612A ','Breakdown (mechanical) of permanent sutures, initial encounter','Y','0000-00-00 00:00:00'),(171325,10,'T85.612D ','Breakdown (mechanical) of permanent sutures, subsequent encounter','Y','0000-00-00 00:00:00'),(171326,10,'T85.612S ','Breakdown (mechanical) of permanent sutures, sequela','Y','0000-00-00 00:00:00'),(171327,10,'T85.613A ','Breakdown (mechanical) of artificial skin graft and decellularized allodermis, initial encounter','Y','0000-00-00 00:00:00'),(171328,10,'T85.613D ','Breakdown (mechanical) of artificial skin graft and decellularized allodermis, subsequent encounter','Y','0000-00-00 00:00:00'),(171329,10,'T85.613S ','Breakdown (mechanical) of artificial skin graft and decellularized allodermis, sequela','Y','0000-00-00 00:00:00'),(171330,10,'T85.614A ','Breakdown (mechanical) of insulin pump, initial encounter','Y','0000-00-00 00:00:00'),(171331,10,'T85.614D ','Breakdown (mechanical) of insulin pump, subsequent encounter','Y','0000-00-00 00:00:00'),(171332,10,'T85.614S ','Breakdown (mechanical) of insulin pump, sequela','Y','0000-00-00 00:00:00'),(171333,10,'T85.615A ','Breakdown (mechanical) of other nervous system device, implant or graft, initial encounter','Y','0000-00-00 00:00:00'),(171334,10,'T85.615D ','Breakdown (mechanical) of other nervous system device, implant or graft, subsequent encounter','Y','0000-00-00 00:00:00'),(171335,10,'T85.615S ','Breakdown (mechanical) of other nervous system device, implant or graft, sequela','Y','0000-00-00 00:00:00'),(171336,10,'T85.618A ','Breakdown (mechanical) of other specified internal prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171337,10,'T85.618D ','Breakdown (mechanical) of other specified internal prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171338,10,'T85.618S ','Breakdown (mechanical) of other specified internal prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171339,10,'T85.620A ','Displacement of cranial or spinal infusion catheter, initial encounter','Y','0000-00-00 00:00:00'),(171340,10,'T85.620D ','Displacement of cranial or spinal infusion catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(171341,10,'T85.620S ','Displacement of cranial or spinal infusion catheter, sequela','Y','0000-00-00 00:00:00'),(171342,10,'T85.621A ','Displacement of intraperitoneal dialysis catheter, initial encounter','Y','0000-00-00 00:00:00'),(171343,10,'T85.621D ','Displacement of intraperitoneal dialysis catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(171344,10,'T85.621S ','Displacement of intraperitoneal dialysis catheter, sequela','Y','0000-00-00 00:00:00'),(171345,10,'T85.622A ','Displacement of permanent sutures, initial encounter','Y','0000-00-00 00:00:00'),(171346,10,'T85.622D ','Displacement of permanent sutures, subsequent encounter','Y','0000-00-00 00:00:00'),(171347,10,'T85.622S ','Displacement of permanent sutures, sequela','Y','0000-00-00 00:00:00'),(171348,10,'T85.623A ','Displacement of artificial skin graft and decellularized allodermis, initial encounter','Y','0000-00-00 00:00:00'),(171349,10,'T85.623D ','Displacement of artificial skin graft and decellularized allodermis, subsequent encounter','Y','0000-00-00 00:00:00'),(171350,10,'T85.623S ','Displacement of artificial skin graft and decellularized allodermis, sequela','Y','0000-00-00 00:00:00'),(171351,10,'T85.624A ','Displacement of insulin pump, initial encounter','Y','0000-00-00 00:00:00'),(171352,10,'T85.624D ','Displacement of insulin pump, subsequent encounter','Y','0000-00-00 00:00:00'),(171353,10,'T85.624S ','Displacement of insulin pump, sequela','Y','0000-00-00 00:00:00'),(171354,10,'T85.625A ','Displacement of other nervous system device, implant or graft, initial encounter','Y','0000-00-00 00:00:00'),(171355,10,'T85.625D ','Displacement of other nervous system device, implant or graft, subsequent encounter','Y','0000-00-00 00:00:00'),(171356,10,'T85.625S ','Displacement of other nervous system device, implant or graft, sequela','Y','0000-00-00 00:00:00'),(171357,10,'T85.628A ','Displacement of other specified internal prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171358,10,'T85.628D ','Displacement of other specified internal prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171359,10,'T85.628S ','Displacement of other specified internal prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171360,10,'T85.630A ','Leakage of cranial or spinal infusion catheter, initial encounter','Y','0000-00-00 00:00:00'),(171361,10,'T85.630D ','Leakage of cranial or spinal infusion catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(171362,10,'T85.630S ','Leakage of cranial or spinal infusion catheter, sequela','Y','0000-00-00 00:00:00'),(171363,10,'T85.631A ','Leakage of intraperitoneal dialysis catheter, initial encounter','Y','0000-00-00 00:00:00'),(171364,10,'T85.631D ','Leakage of intraperitoneal dialysis catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(171365,10,'T85.631S ','Leakage of intraperitoneal dialysis catheter, sequela','Y','0000-00-00 00:00:00'),(171366,10,'T85.633A ','Leakage of insulin pump, initial encounter','Y','0000-00-00 00:00:00'),(171367,10,'T85.633D ','Leakage of insulin pump, subsequent encounter','Y','0000-00-00 00:00:00'),(171368,10,'T85.633S ','Leakage of insulin pump, sequela','Y','0000-00-00 00:00:00'),(171369,10,'T85.635A ','Leakage of other nervous system device, implant or graft, initial encounter','Y','0000-00-00 00:00:00'),(171370,10,'T85.635D ','Leakage of other nervous system device, implant or graft, subsequent encounter','Y','0000-00-00 00:00:00'),(171371,10,'T85.635S ','Leakage of other nervous system device, implant or graft, sequela','Y','0000-00-00 00:00:00'),(171372,10,'T85.638A ','Leakage of other specified internal prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171373,10,'T85.638D ','Leakage of other specified internal prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171374,10,'T85.638S ','Leakage of other specified internal prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171375,10,'T85.690A ','Other mechanical complication of cranial or spinal infusion catheter, initial encounter','Y','0000-00-00 00:00:00'),(171376,10,'T85.690D ','Other mechanical complication of cranial or spinal infusion catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(171377,10,'T85.690S ','Other mechanical complication of cranial or spinal infusion catheter, sequela','Y','0000-00-00 00:00:00'),(171378,10,'T85.691A ','Other mechanical complication of intraperitoneal dialysis catheter, initial encounter','Y','0000-00-00 00:00:00'),(171379,10,'T85.691D ','Other mechanical complication of intraperitoneal dialysis catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(171380,10,'T85.691S ','Other mechanical complication of intraperitoneal dialysis catheter, sequela','Y','0000-00-00 00:00:00'),(171381,10,'T85.692A ','Other mechanical complication of permanent sutures, initial encounter','Y','0000-00-00 00:00:00'),(171382,10,'T85.692D ','Other mechanical complication of permanent sutures, subsequent encounter','Y','0000-00-00 00:00:00'),(171383,10,'T85.692S ','Other mechanical complication of permanent sutures, sequela','Y','0000-00-00 00:00:00'),(171384,10,'T85.693A ','Other mechanical complication of artificial skin graft and decellularized allodermis, initial encounter','Y','0000-00-00 00:00:00'),(171385,10,'T85.693D ','Other mechanical complication of artificial skin graft and decellularized allodermis, subsequent encounter','Y','0000-00-00 00:00:00'),(171386,10,'T85.693S ','Other mechanical complication of artificial skin graft and decellularized allodermis, sequela','Y','0000-00-00 00:00:00'),(171387,10,'T85.694A ','Other mechanical complication of insulin pump, initial encounter','Y','0000-00-00 00:00:00'),(171388,10,'T85.694D ','Other mechanical complication of insulin pump, subsequent encounter','Y','0000-00-00 00:00:00'),(171389,10,'T85.694S ','Other mechanical complication of insulin pump, sequela','Y','0000-00-00 00:00:00'),(171390,10,'T85.695A ','Other mechanical complication of other nervous system device, implant or graft, initial encounter','Y','0000-00-00 00:00:00'),(171391,10,'T85.695D ','Other mechanical complication of other nervous system device, implant or graft, subsequent encounter','Y','0000-00-00 00:00:00'),(171392,10,'T85.695S ','Other mechanical complication of other nervous system device, implant or graft, sequela','Y','0000-00-00 00:00:00'),(171393,10,'T85.698A ','Other mechanical complication of other specified internal prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171394,10,'T85.698D ','Other mechanical complication of other specified internal prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171395,10,'T85.698S ','Other mechanical complication of other specified internal prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171396,10,'T85.71XA ','Infection and inflammatory reaction due to peritoneal dialysis catheter, initial encounter','Y','0000-00-00 00:00:00'),(171397,10,'T85.71XD ','Infection and inflammatory reaction due to peritoneal dialysis catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(171398,10,'T85.71XS ','Infection and inflammatory reaction due to peritoneal dialysis catheter, sequela','Y','0000-00-00 00:00:00'),(171399,10,'T85.72XA ','Infection and inflammatory reaction due to insulin pump, initial encounter','Y','0000-00-00 00:00:00'),(171400,10,'T85.72XD ','Infection and inflammatory reaction due to insulin pump, subsequent encounter','Y','0000-00-00 00:00:00'),(171401,10,'T85.72XS ','Infection and inflammatory reaction due to insulin pump, sequela','Y','0000-00-00 00:00:00'),(171402,10,'T85.730A ','Infection and inflammatory reaction due to ventricular intracranial (communicating) shunt, initial encounter','Y','0000-00-00 00:00:00'),(171403,10,'T85.730D ','Infection and inflammatory reaction due to ventricular intracranial (communicating) shunt, subsequent encounter','Y','0000-00-00 00:00:00'),(171404,10,'T85.730S ','Infection and inflammatory reaction due to ventricular intracranial (communicating) shunt, sequela','Y','0000-00-00 00:00:00'),(171405,10,'T85.731A ','Infection and inflammatory reaction due to implanted electronic neurostimulator of brain, electrode (lead), initial encounter','Y','0000-00-00 00:00:00'),(171406,10,'T85.731D ','Infection and inflammatory reaction due to implanted electronic neurostimulator of brain, electrode (lead), subsequent encounter','Y','0000-00-00 00:00:00'),(171407,10,'T85.731S ','Infection and inflammatory reaction due to implanted electronic neurostimulator of brain, electrode (lead), sequela','Y','0000-00-00 00:00:00'),(171408,10,'T85.732A ','Infection and inflammatory reaction due to implanted electronic neurostimulator of peripheral nerve, electrode (lead), initial encounter','Y','0000-00-00 00:00:00'),(171409,10,'T85.732D ','Infection and inflammatory reaction due to implanted electronic neurostimulator of peripheral nerve, electrode (lead), subsequent encounter','Y','0000-00-00 00:00:00'),(171410,10,'T85.732S ','Infection and inflammatory reaction due to implanted electronic neurostimulator of peripheral nerve, electrode (lead), sequela','Y','0000-00-00 00:00:00'),(171411,10,'T85.733A ','Infection and inflammatory reaction due to implanted electronic neurostimulator of spinal cord, electrode (lead), initial encounter','Y','0000-00-00 00:00:00'),(171412,10,'T85.733D ','Infection and inflammatory reaction due to implanted electronic neurostimulator of spinal cord, electrode (lead), subsequent encounter','Y','0000-00-00 00:00:00'),(171413,10,'T85.733S ','Infection and inflammatory reaction due to implanted electronic neurostimulator of spinal cord, electrode (lead), sequela','Y','0000-00-00 00:00:00'),(171414,10,'T85.734A ','Infection and inflammatory reaction due to implanted electronic neurostimulator, generator, initial encounter','Y','0000-00-00 00:00:00'),(171415,10,'T85.734D ','Infection and inflammatory reaction due to implanted electronic neurostimulator, generator, subsequent encounter','Y','0000-00-00 00:00:00'),(171416,10,'T85.734S ','Infection and inflammatory reaction due to implanted electronic neurostimulator, generator, sequela','Y','0000-00-00 00:00:00'),(171417,10,'T85.735A ','Infection and inflammatory reaction due to cranial or spinal infusion catheter, initial encounter','Y','0000-00-00 00:00:00'),(171418,10,'T85.735D ','Infection and inflammatory reaction due to cranial or spinal infusion catheter, subsequent encounter','Y','0000-00-00 00:00:00'),(171419,10,'T85.735S ','Infection and inflammatory reaction due to cranial or spinal infusion catheter, sequela','Y','0000-00-00 00:00:00'),(171420,10,'T85.738A ','Infection and inflammatory reaction due to other nervous system device, implant or graft, initial encounter','Y','0000-00-00 00:00:00'),(171421,10,'T85.738D ','Infection and inflammatory reaction due to other nervous system device, implant or graft, subsequent encounter','Y','0000-00-00 00:00:00'),(171422,10,'T85.738S ','Infection and inflammatory reaction due to other nervous system device, implant or graft, sequela','Y','0000-00-00 00:00:00'),(171423,10,'T85.79XA ','Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171424,10,'T85.79XD ','Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171425,10,'T85.79XS ','Infection and inflammatory reaction due to other internal prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171426,10,'T85.810A ','Embolism due to nervous system prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171427,10,'T85.810D ','Embolism due to nervous system prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171428,10,'T85.810S ','Embolism due to nervous system prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171429,10,'T85.818A ','Embolism due to other internal prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171430,10,'T85.818D ','Embolism due to other internal prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171431,10,'T85.818S ','Embolism due to other internal prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171432,10,'T85.820A ','Fibrosis due to nervous system prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171433,10,'T85.820D ','Fibrosis due to nervous system prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171434,10,'T85.820S ','Fibrosis due to nervous system prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171435,10,'T85.828A ','Fibrosis due to other internal prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171436,10,'T85.828D ','Fibrosis due to other internal prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171437,10,'T85.828S ','Fibrosis due to other internal prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171438,10,'T85.830A ','Hemorrhage due to nervous system prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171439,10,'T85.830D ','Hemorrhage due to nervous system prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171440,10,'T85.830S ','Hemorrhage due to nervous system prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171441,10,'T85.838A ','Hemorrhage due to other internal prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171442,10,'T85.838D ','Hemorrhage due to other internal prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171443,10,'T85.838S ','Hemorrhage due to other internal prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171444,10,'T85.840A ','Pain due to nervous system prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171445,10,'T85.840D ','Pain due to nervous system prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171446,10,'T85.840S ','Pain due to nervous system prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171447,10,'T85.848A ','Pain due to other internal prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171448,10,'T85.848D ','Pain due to other internal prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171449,10,'T85.848S ','Pain due to other internal prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171450,10,'T85.850A ','Stenosis due to nervous system prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171451,10,'T85.850D ','Stenosis due to nervous system prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171452,10,'T85.850S ','Stenosis due to nervous system prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171453,10,'T85.858A ','Stenosis due to other internal prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171454,10,'T85.858D ','Stenosis due to other internal prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171455,10,'T85.858S ','Stenosis due to other internal prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171456,10,'T85.860A ','Thrombosis due to nervous system prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171457,10,'T85.860D ','Thrombosis due to nervous system prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171458,10,'T85.860S ','Thrombosis due to nervous system prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171459,10,'T85.868A ','Thrombosis due to other internal prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171460,10,'T85.868D ','Thrombosis due to other internal prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171461,10,'T85.868S ','Thrombosis due to other internal prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171462,10,'T85.890A ','Other specified complication of nervous system prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171463,10,'T85.890D ','Other specified complication of nervous system prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171464,10,'T85.890S ','Other specified complication of nervous system prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171465,10,'T85.898A ','Other specified complication of other internal prosthetic devices, implants and grafts, initial encounter','Y','0000-00-00 00:00:00'),(171466,10,'T85.898D ','Other specified complication of other internal prosthetic devices, implants and grafts, subsequent encounter','Y','0000-00-00 00:00:00'),(171467,10,'T85.898S ','Other specified complication of other internal prosthetic devices, implants and grafts, sequela','Y','0000-00-00 00:00:00'),(171468,10,'T85.9XXA ','Unspecified complication of internal prosthetic device, implant and graft, initial encounter','Y','0000-00-00 00:00:00'),(171469,10,'T85.9XXD ','Unspecified complication of internal prosthetic device, implant and graft, subsequent encounter','Y','0000-00-00 00:00:00'),(171470,10,'T85.9XXS ','Unspecified complication of internal prosthetic device, implant and graft, sequela','Y','0000-00-00 00:00:00'),(171471,10,'T86.00 ','Unspecified complication of bone marrow transplant','Y','0000-00-00 00:00:00'),(171472,10,'T86.01 ','Bone marrow transplant rejection','Y','0000-00-00 00:00:00'),(171473,10,'T86.02 ','Bone marrow transplant failure','Y','0000-00-00 00:00:00'),(171474,10,'T86.03 ','Bone marrow transplant infection','Y','0000-00-00 00:00:00'),(171475,10,'T86.09 ','Other complications of bone marrow transplant','Y','0000-00-00 00:00:00'),(171476,10,'T86.10 ','Unspecified complication of kidney transplant','Y','0000-00-00 00:00:00'),(171477,10,'T86.11 ','Kidney transplant rejection','Y','0000-00-00 00:00:00'),(171478,10,'T86.12 ','Kidney transplant failure','Y','0000-00-00 00:00:00'),(171479,10,'T86.13 ','Kidney transplant infection','Y','0000-00-00 00:00:00'),(171480,10,'T86.19 ','Other complication of kidney transplant','Y','0000-00-00 00:00:00'),(171481,10,'T86.20 ','Unspecified complication of heart transplant','Y','0000-00-00 00:00:00'),(171482,10,'T86.21 ','Heart transplant rejection','Y','0000-00-00 00:00:00'),(171483,10,'T86.22 ','Heart transplant failure','Y','0000-00-00 00:00:00'),(171484,10,'T86.23 ','Heart transplant infection','Y','0000-00-00 00:00:00'),(171485,10,'T86.290 ','Cardiac allograft vasculopathy','Y','0000-00-00 00:00:00'),(171486,10,'T86.298 ','Other complications of heart transplant','Y','0000-00-00 00:00:00'),(171487,10,'T86.30 ','Unspecified complication of heart-lung transplant','Y','0000-00-00 00:00:00'),(171488,10,'T86.31 ','Heart-lung transplant rejection','Y','0000-00-00 00:00:00'),(171489,10,'T86.32 ','Heart-lung transplant failure','Y','0000-00-00 00:00:00'),(171490,10,'T86.33 ','Heart-lung transplant infection','Y','0000-00-00 00:00:00'),(171491,10,'T86.39 ','Other complications of heart-lung transplant','Y','0000-00-00 00:00:00'),(171492,10,'T86.40 ','Unspecified complication of liver transplant','Y','0000-00-00 00:00:00'),(171493,10,'T86.41 ','Liver transplant rejection','Y','0000-00-00 00:00:00'),(171494,10,'T86.42 ','Liver transplant failure','Y','0000-00-00 00:00:00'),(171495,10,'T86.43 ','Liver transplant infection','Y','0000-00-00 00:00:00'),(171496,10,'T86.49 ','Other complications of liver transplant','Y','0000-00-00 00:00:00'),(171497,10,'T86.5 ','Complications of stem cell transplant','Y','0000-00-00 00:00:00'),(171498,10,'T86.810 ','Lung transplant rejection','Y','0000-00-00 00:00:00'),(171499,10,'T86.811 ','Lung transplant failure','Y','0000-00-00 00:00:00'),(171500,10,'T86.812 ','Lung transplant infection','Y','0000-00-00 00:00:00'),(171501,10,'T86.818 ','Other complications of lung transplant','Y','0000-00-00 00:00:00'),(171502,10,'T86.819 ','Unspecified complication of lung transplant','Y','0000-00-00 00:00:00'),(171503,10,'T86.820 ','Skin graft (allograft) rejection','Y','0000-00-00 00:00:00'),(171504,10,'T86.821 ','Skin graft (allograft) (autograft) failure','Y','0000-00-00 00:00:00'),(171505,10,'T86.822 ','Skin graft (allograft) (autograft) infection','Y','0000-00-00 00:00:00'),(171506,10,'T86.828 ','Other complications of skin graft (allograft) (autograft)','Y','0000-00-00 00:00:00'),(171507,10,'T86.829 ','Unspecified complication of skin graft (allograft) (autograft)','Y','0000-00-00 00:00:00'),(171508,10,'T86.830 ','Bone graft rejection','Y','0000-00-00 00:00:00'),(171509,10,'T86.831 ','Bone graft failure','Y','0000-00-00 00:00:00'),(171510,10,'T86.832 ','Bone graft infection','Y','0000-00-00 00:00:00'),(171511,10,'T86.838 ','Other complications of bone graft','Y','0000-00-00 00:00:00'),(171512,10,'T86.839 ','Unspecified complication of bone graft','Y','0000-00-00 00:00:00'),(171513,10,'T86.8401 ','Corneal transplant rejection, right eye','Y','0000-00-00 00:00:00'),(171514,10,'T86.8402 ','Corneal transplant rejection, left eye','Y','0000-00-00 00:00:00'),(171515,10,'T86.8403 ','Corneal transplant rejection, bilateral','Y','0000-00-00 00:00:00'),(171516,10,'T86.8409 ','Corneal transplant rejection, unspecified eye','Y','0000-00-00 00:00:00'),(171517,10,'T86.8411 ','Corneal transplant failure, right eye','Y','0000-00-00 00:00:00'),(171518,10,'T86.8412 ','Corneal transplant failure, left eye','Y','0000-00-00 00:00:00'),(171519,10,'T86.8413 ','Corneal transplant failure, bilateral','Y','0000-00-00 00:00:00'),(171520,10,'T86.8419 ','Corneal transplant failure, unspecified eye','Y','0000-00-00 00:00:00'),(171521,10,'T86.8421 ','Corneal transplant infection, right eye','Y','0000-00-00 00:00:00'),(171522,10,'T86.8422 ','Corneal transplant infection, left eye','Y','0000-00-00 00:00:00'),(171523,10,'T86.8423 ','Corneal transplant infection, bilateral','Y','0000-00-00 00:00:00'),(171524,10,'T86.8429 ','Corneal transplant infection, unspecified eye','Y','0000-00-00 00:00:00'),(171525,10,'T86.8481 ','Other complications of corneal transplant, right eye','Y','0000-00-00 00:00:00'),(171526,10,'T86.8482 ','Other complications of corneal transplant, left eye','Y','0000-00-00 00:00:00'),(171527,10,'T86.8483 ','Other complications of corneal transplant, bilateral','Y','0000-00-00 00:00:00'),(171528,10,'T86.8489 ','Other complications of corneal transplant, unspecified eye','Y','0000-00-00 00:00:00'),(171529,10,'T86.8491 ','Unspecified complication of corneal transplant, right eye','Y','0000-00-00 00:00:00'),(171530,10,'T86.8492 ','Unspecified complication of corneal transplant, left eye','Y','0000-00-00 00:00:00'),(171531,10,'T86.8493 ','Unspecified complication of corneal transplant, bilateral','Y','0000-00-00 00:00:00'),(171532,10,'T86.8499 ','Unspecified complication of corneal transplant, unspecified eye','Y','0000-00-00 00:00:00'),(171533,10,'T86.850 ','Intestine transplant rejection','Y','0000-00-00 00:00:00'),(171534,10,'T86.851 ','Intestine transplant failure','Y','0000-00-00 00:00:00'),(171535,10,'T86.852 ','Intestine transplant infection','Y','0000-00-00 00:00:00'),(171536,10,'T86.858 ','Other complications of intestine transplant','Y','0000-00-00 00:00:00'),(171537,10,'T86.859 ','Unspecified complication of intestine transplant','Y','0000-00-00 00:00:00'),(171538,10,'T86.890 ','Other transplanted tissue rejection','Y','0000-00-00 00:00:00'),(171539,10,'T86.891 ','Other transplanted tissue failure','Y','0000-00-00 00:00:00'),(171540,10,'T86.892 ','Other transplanted tissue infection','Y','0000-00-00 00:00:00'),(171541,10,'T86.898 ','Other complications of other transplanted tissue','Y','0000-00-00 00:00:00'),(171542,10,'T86.899 ','Unspecified complication of other transplanted tissue','Y','0000-00-00 00:00:00'),(171543,10,'T86.90 ','Unspecified complication of unspecified transplanted organ and tissue','Y','0000-00-00 00:00:00'),(171544,10,'T86.91 ','Unspecified transplanted organ and tissue rejection','Y','0000-00-00 00:00:00'),(171545,10,'T86.92 ','Unspecified transplanted organ and tissue failure','Y','0000-00-00 00:00:00'),(171546,10,'T86.93 ','Unspecified transplanted organ and tissue infection','Y','0000-00-00 00:00:00'),(171547,10,'T86.99 ','Other complications of unspecified transplanted organ and tissue','Y','0000-00-00 00:00:00'),(171548,10,'T87.0X1 ','Complications of reattached (part of) right upper extremity','Y','0000-00-00 00:00:00'),(171549,10,'T87.0X2 ','Complications of reattached (part of) left upper extremity','Y','0000-00-00 00:00:00'),(171550,10,'T87.0X9 ','Complications of reattached (part of) unspecified upper extremity','Y','0000-00-00 00:00:00'),(171551,10,'T87.1X1 ','Complications of reattached (part of) right lower extremity','Y','0000-00-00 00:00:00'),(171552,10,'T87.1X2 ','Complications of reattached (part of) left lower extremity','Y','0000-00-00 00:00:00'),(171553,10,'T87.1X9 ','Complications of reattached (part of) unspecified lower extremity','Y','0000-00-00 00:00:00'),(171554,10,'T87.2 ','Complications of other reattached body part','Y','0000-00-00 00:00:00'),(171555,10,'T87.30 ','Neuroma of amputation stump, unspecified extremity','Y','0000-00-00 00:00:00'),(171556,10,'T87.31 ','Neuroma of amputation stump, right upper extremity','Y','0000-00-00 00:00:00'),(171557,10,'T87.32 ','Neuroma of amputation stump, left upper extremity','Y','0000-00-00 00:00:00'),(171558,10,'T87.33 ','Neuroma of amputation stump, right lower extremity','Y','0000-00-00 00:00:00'),(171559,10,'T87.34 ','Neuroma of amputation stump, left lower extremity','Y','0000-00-00 00:00:00'),(171560,10,'T87.40 ','Infection of amputation stump, unspecified extremity','Y','0000-00-00 00:00:00'),(171561,10,'T87.41 ','Infection of amputation stump, right upper extremity','Y','0000-00-00 00:00:00'),(171562,10,'T87.42 ','Infection of amputation stump, left upper extremity','Y','0000-00-00 00:00:00'),(171563,10,'T87.43 ','Infection of amputation stump, right lower extremity','Y','0000-00-00 00:00:00'),(171564,10,'T87.44 ','Infection of amputation stump, left lower extremity','Y','0000-00-00 00:00:00'),(171565,10,'T87.50 ','Necrosis of amputation stump, unspecified extremity','Y','0000-00-00 00:00:00'),(171566,10,'T87.51 ','Necrosis of amputation stump, right upper extremity','Y','0000-00-00 00:00:00'),(171567,10,'T87.52 ','Necrosis of amputation stump, left upper extremity','Y','0000-00-00 00:00:00'),(171568,10,'T87.53 ','Necrosis of amputation stump, right lower extremity','Y','0000-00-00 00:00:00'),(171569,10,'T87.54 ','Necrosis of amputation stump, left lower extremity','Y','0000-00-00 00:00:00'),(171570,10,'T87.81 ','Dehiscence of amputation stump','Y','0000-00-00 00:00:00'),(171571,10,'T87.89 ','Other complications of amputation stump','Y','0000-00-00 00:00:00'),(171572,10,'T87.9 ','Unspecified complications of amputation stump','Y','0000-00-00 00:00:00'),(171573,10,'T88.0XXA ','Infection following immunization, initial encounter','Y','0000-00-00 00:00:00'),(171574,10,'T88.0XXD ','Infection following immunization, subsequent encounter','Y','0000-00-00 00:00:00'),(171575,10,'T88.0XXS ','Infection following immunization, sequela','Y','0000-00-00 00:00:00'),(171576,10,'T88.1XXA ','Other complications following immunization, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(171577,10,'T88.1XXD ','Other complications following immunization, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(171578,10,'T88.1XXS ','Other complications following immunization, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(171579,10,'T88.2XXA ','Shock due to anesthesia, initial encounter','Y','0000-00-00 00:00:00'),(171580,10,'T88.2XXD ','Shock due to anesthesia, subsequent encounter','Y','0000-00-00 00:00:00'),(171581,10,'T88.2XXS ','Shock due to anesthesia, sequela','Y','0000-00-00 00:00:00'),(171582,10,'T88.3XXA ','Malignant hyperthermia due to anesthesia, initial encounter','Y','0000-00-00 00:00:00'),(171583,10,'T88.3XXD ','Malignant hyperthermia due to anesthesia, subsequent encounter','Y','0000-00-00 00:00:00'),(171584,10,'T88.3XXS ','Malignant hyperthermia due to anesthesia, sequela','Y','0000-00-00 00:00:00'),(171585,10,'T88.4XXA ','Failed or difficult intubation, initial encounter','Y','0000-00-00 00:00:00'),(171586,10,'T88.4XXD ','Failed or difficult intubation, subsequent encounter','Y','0000-00-00 00:00:00'),(171587,10,'T88.4XXS ','Failed or difficult intubation, sequela','Y','0000-00-00 00:00:00'),(171588,10,'T88.51XA ','Hypothermia following anesthesia, initial encounter','Y','0000-00-00 00:00:00'),(171589,10,'T88.51XD ','Hypothermia following anesthesia, subsequent encounter','Y','0000-00-00 00:00:00'),(171590,10,'T88.51XS ','Hypothermia following anesthesia, sequela','Y','0000-00-00 00:00:00'),(171591,10,'T88.52XA ','Failed moderate sedation during procedure, initial encounter','Y','0000-00-00 00:00:00'),(171592,10,'T88.52XD ','Failed moderate sedation during procedure, subsequent encounter','Y','0000-00-00 00:00:00'),(171593,10,'T88.52XS ','Failed moderate sedation during procedure, sequela','Y','0000-00-00 00:00:00'),(171594,10,'T88.53XA ','Unintended awareness under general anesthesia during procedure, initial encounter','Y','0000-00-00 00:00:00'),(171595,10,'T88.53XD ','Unintended awareness under general anesthesia during procedure, subsequent encounter','Y','0000-00-00 00:00:00'),(171596,10,'T88.53XS ','Unintended awareness under general anesthesia during procedure, sequela','Y','0000-00-00 00:00:00'),(171597,10,'T88.59XA ','Other complications of anesthesia, initial encounter','Y','0000-00-00 00:00:00'),(171598,10,'T88.59XD ','Other complications of anesthesia, subsequent encounter','Y','0000-00-00 00:00:00'),(171599,10,'T88.59XS ','Other complications of anesthesia, sequela','Y','0000-00-00 00:00:00'),(171600,10,'T88.6XXA ','Anaphylactic reaction due to adverse effect of correct drug or medicament properly administered, initial encounter','Y','0000-00-00 00:00:00'),(171601,10,'T88.6XXD ','Anaphylactic reaction due to adverse effect of correct drug or medicament properly administered, subsequent encounter','Y','0000-00-00 00:00:00'),(171602,10,'T88.6XXS ','Anaphylactic reaction due to adverse effect of correct drug or medicament properly administered, sequela','Y','0000-00-00 00:00:00'),(171603,10,'T88.7XXA ','Unspecified adverse effect of drug or medicament, initial encounter','Y','0000-00-00 00:00:00'),(171604,10,'T88.7XXD ','Unspecified adverse effect of drug or medicament, subsequent encounter','Y','0000-00-00 00:00:00'),(171605,10,'T88.7XXS ','Unspecified adverse effect of drug or medicament, sequela','Y','0000-00-00 00:00:00'),(171606,10,'T88.8XXA ','Other specified complications of surgical and medical care, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(171607,10,'T88.8XXD ','Other specified complications of surgical and medical care, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(171608,10,'T88.8XXS ','Other specified complications of surgical and medical care, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(171609,10,'T88.9XXA ','Complication of surgical and medical care, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(171610,10,'T88.9XXD ','Complication of surgical and medical care, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(171611,10,'T88.9XXS ','Complication of surgical and medical care, unspecified, sequela','Y','0000-00-00 00:00:00'),(171612,10,'V00.01XA ','Pedestrian on foot injured in collision with roller-skater, initial encounter','Y','0000-00-00 00:00:00'),(171613,10,'V00.01XD ','Pedestrian on foot injured in collision with roller-skater, subsequent encounter','Y','0000-00-00 00:00:00'),(171614,10,'V00.01XS ','Pedestrian on foot injured in collision with roller-skater, sequela','Y','0000-00-00 00:00:00'),(171615,10,'V00.02XA ','Pedestrian on foot injured in collision with skateboarder, initial encounter','Y','0000-00-00 00:00:00'),(171616,10,'V00.02XD ','Pedestrian on foot injured in collision with skateboarder, subsequent encounter','Y','0000-00-00 00:00:00'),(171617,10,'V00.02XS ','Pedestrian on foot injured in collision with skateboarder, sequela','Y','0000-00-00 00:00:00'),(171618,10,'V00.031A ','Pedestrian on foot injured in collision with rider of standing electric scooter, initial encounter','Y','0000-00-00 00:00:00'),(171619,10,'V00.031D ','Pedestrian on foot injured in collision with rider of standing electric scooter, subsequent encounter','Y','0000-00-00 00:00:00'),(171620,10,'V00.031S ','Pedestrian on foot injured in collision with rider of standing electric scooter, sequela','Y','0000-00-00 00:00:00'),(171621,10,'V00.038A ','Pedestrian on foot injured in collision with rider of other standing micro-mobility pedestrian conveyance, initial encounter','Y','0000-00-00 00:00:00'),(171622,10,'V00.038D ','Pedestrian on foot injured in collision with rider of other standing micro-mobility pedestrian conveyance, subsequent encounter','Y','0000-00-00 00:00:00'),(171623,10,'V00.038S ','Pedestrian on foot injured in collision with rider of other standing micro-mobility pedestrian conveyance, sequela','Y','0000-00-00 00:00:00'),(171624,10,'V00.09XA ','Pedestrian on foot injured in collision with other pedestrian conveyance, initial encounter','Y','0000-00-00 00:00:00'),(171625,10,'V00.09XD ','Pedestrian on foot injured in collision with other pedestrian conveyance, subsequent encounter','Y','0000-00-00 00:00:00'),(171626,10,'V00.09XS ','Pedestrian on foot injured in collision with other pedestrian conveyance, sequela','Y','0000-00-00 00:00:00'),(171627,10,'V00.111A ','Fall from in-line roller-skates, initial encounter','Y','0000-00-00 00:00:00'),(171628,10,'V00.111D ','Fall from in-line roller-skates, subsequent encounter','Y','0000-00-00 00:00:00'),(171629,10,'V00.111S ','Fall from in-line roller-skates, sequela','Y','0000-00-00 00:00:00'),(171630,10,'V00.112A ','In-line roller-skater colliding with stationary object, initial encounter','Y','0000-00-00 00:00:00'),(171631,10,'V00.112D ','In-line roller-skater colliding with stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(171632,10,'V00.112S ','In-line roller-skater colliding with stationary object, sequela','Y','0000-00-00 00:00:00'),(171633,10,'V00.118A ','Other in-line roller-skate accident, initial encounter','Y','0000-00-00 00:00:00'),(171634,10,'V00.118D ','Other in-line roller-skate accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171635,10,'V00.118S ','Other in-line roller-skate accident, sequela','Y','0000-00-00 00:00:00'),(171636,10,'V00.121A ','Fall from non-in-line roller-skates, initial encounter','Y','0000-00-00 00:00:00'),(171637,10,'V00.121D ','Fall from non-in-line roller-skates, subsequent encounter','Y','0000-00-00 00:00:00'),(171638,10,'V00.121S ','Fall from non-in-line roller-skates, sequela','Y','0000-00-00 00:00:00'),(171639,10,'V00.122A ','Non-in-line roller-skater colliding with stationary object, initial encounter','Y','0000-00-00 00:00:00'),(171640,10,'V00.122D ','Non-in-line roller-skater colliding with stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(171641,10,'V00.122S ','Non-in-line roller-skater colliding with stationary object, sequela','Y','0000-00-00 00:00:00'),(171642,10,'V00.128A ','Other non-in-line roller-skating accident, initial encounter','Y','0000-00-00 00:00:00'),(171643,10,'V00.128D ','Other non-in-line roller-skating accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171644,10,'V00.128S ','Other non-in-line roller-skating accident, sequela','Y','0000-00-00 00:00:00'),(171645,10,'V00.131A ','Fall from skateboard, initial encounter','Y','0000-00-00 00:00:00'),(171646,10,'V00.131D ','Fall from skateboard, subsequent encounter','Y','0000-00-00 00:00:00'),(171647,10,'V00.131S ','Fall from skateboard, sequela','Y','0000-00-00 00:00:00'),(171648,10,'V00.132A ','Skateboarder colliding with stationary object, initial encounter','Y','0000-00-00 00:00:00'),(171649,10,'V00.132D ','Skateboarder colliding with stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(171650,10,'V00.132S ','Skateboarder colliding with stationary object, sequela','Y','0000-00-00 00:00:00'),(171651,10,'V00.138A ','Other skateboard accident, initial encounter','Y','0000-00-00 00:00:00'),(171652,10,'V00.138D ','Other skateboard accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171653,10,'V00.138S ','Other skateboard accident, sequela','Y','0000-00-00 00:00:00'),(171654,10,'V00.141A ','Fall from scooter (nonmotorized), initial encounter','Y','0000-00-00 00:00:00'),(171655,10,'V00.141D ','Fall from scooter (nonmotorized), subsequent encounter','Y','0000-00-00 00:00:00'),(171656,10,'V00.141S ','Fall from scooter (nonmotorized), sequela','Y','0000-00-00 00:00:00'),(171657,10,'V00.142A ','Scooter (nonmotorized) colliding with stationary object, initial encounter','Y','0000-00-00 00:00:00'),(171658,10,'V00.142D ','Scooter (nonmotorized) colliding with stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(171659,10,'V00.142S ','Scooter (nonmotorized) colliding with stationary object, sequela','Y','0000-00-00 00:00:00'),(171660,10,'V00.148A ','Other scooter (nonmotorized) accident, initial encounter','Y','0000-00-00 00:00:00'),(171661,10,'V00.148D ','Other scooter (nonmotorized) accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171662,10,'V00.148S ','Other scooter (nonmotorized) accident, sequela','Y','0000-00-00 00:00:00'),(171663,10,'V00.151A ','Fall from heelies, initial encounter','Y','0000-00-00 00:00:00'),(171664,10,'V00.151D ','Fall from heelies, subsequent encounter','Y','0000-00-00 00:00:00'),(171665,10,'V00.151S ','Fall from heelies, sequela','Y','0000-00-00 00:00:00'),(171666,10,'V00.152A ','Heelies colliding with stationary object, initial encounter','Y','0000-00-00 00:00:00'),(171667,10,'V00.152D ','Heelies colliding with stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(171668,10,'V00.152S ','Heelies colliding with stationary object, sequela','Y','0000-00-00 00:00:00'),(171669,10,'V00.158A ','Other heelies accident, initial encounter','Y','0000-00-00 00:00:00'),(171670,10,'V00.158D ','Other heelies accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171671,10,'V00.158S ','Other heelies accident, sequela','Y','0000-00-00 00:00:00'),(171672,10,'V00.181A ','Fall from other rolling-type pedestrian conveyance, initial encounter','Y','0000-00-00 00:00:00'),(171673,10,'V00.181D ','Fall from other rolling-type pedestrian conveyance, subsequent encounter','Y','0000-00-00 00:00:00'),(171674,10,'V00.181S ','Fall from other rolling-type pedestrian conveyance, sequela','Y','0000-00-00 00:00:00'),(171675,10,'V00.182A ','Pedestrian on other rolling-type pedestrian conveyance colliding with stationary object, initial encounter','Y','0000-00-00 00:00:00'),(171676,10,'V00.182D ','Pedestrian on other rolling-type pedestrian conveyance colliding with stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(171677,10,'V00.182S ','Pedestrian on other rolling-type pedestrian conveyance colliding with stationary object, sequela','Y','0000-00-00 00:00:00'),(171678,10,'V00.188A ','Other accident on other rolling-type pedestrian conveyance, initial encounter','Y','0000-00-00 00:00:00'),(171679,10,'V00.188D ','Other accident on other rolling-type pedestrian conveyance, subsequent encounter','Y','0000-00-00 00:00:00'),(171680,10,'V00.188S ','Other accident on other rolling-type pedestrian conveyance, sequela','Y','0000-00-00 00:00:00'),(171681,10,'V00.211A ','Fall from ice-skates, initial encounter','Y','0000-00-00 00:00:00'),(171682,10,'V00.211D ','Fall from ice-skates, subsequent encounter','Y','0000-00-00 00:00:00'),(171683,10,'V00.211S ','Fall from ice-skates, sequela','Y','0000-00-00 00:00:00'),(171684,10,'V00.212A ','Ice-skater colliding with stationary object, initial encounter','Y','0000-00-00 00:00:00'),(171685,10,'V00.212D ','Ice-skater colliding with stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(171686,10,'V00.212S ','Ice-skater colliding with stationary object, sequela','Y','0000-00-00 00:00:00'),(171687,10,'V00.218A ','Other ice-skates accident, initial encounter','Y','0000-00-00 00:00:00'),(171688,10,'V00.218D ','Other ice-skates accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171689,10,'V00.218S ','Other ice-skates accident, sequela','Y','0000-00-00 00:00:00'),(171690,10,'V00.221A ','Fall from sled, initial encounter','Y','0000-00-00 00:00:00'),(171691,10,'V00.221D ','Fall from sled, subsequent encounter','Y','0000-00-00 00:00:00'),(171692,10,'V00.221S ','Fall from sled, sequela','Y','0000-00-00 00:00:00'),(171693,10,'V00.222A ','Sledder colliding with stationary object, initial encounter','Y','0000-00-00 00:00:00'),(171694,10,'V00.222D ','Sledder colliding with stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(171695,10,'V00.222S ','Sledder colliding with stationary object, sequela','Y','0000-00-00 00:00:00'),(171696,10,'V00.228A ','Other sled accident, initial encounter','Y','0000-00-00 00:00:00'),(171697,10,'V00.228D ','Other sled accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171698,10,'V00.228S ','Other sled accident, sequela','Y','0000-00-00 00:00:00'),(171699,10,'V00.281A ','Fall from other gliding-type pedestrian conveyance, initial encounter','Y','0000-00-00 00:00:00'),(171700,10,'V00.281D ','Fall from other gliding-type pedestrian conveyance, subsequent encounter','Y','0000-00-00 00:00:00'),(171701,10,'V00.281S ','Fall from other gliding-type pedestrian conveyance, sequela','Y','0000-00-00 00:00:00'),(171702,10,'V00.282A ','Pedestrian on other gliding-type pedestrian conveyance colliding with stationary object, initial encounter','Y','0000-00-00 00:00:00'),(171703,10,'V00.282D ','Pedestrian on other gliding-type pedestrian conveyance colliding with stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(171704,10,'V00.282S ','Pedestrian on other gliding-type pedestrian conveyance colliding with stationary object, sequela','Y','0000-00-00 00:00:00'),(171705,10,'V00.288A ','Other accident on other gliding-type pedestrian conveyance, initial encounter','Y','0000-00-00 00:00:00'),(171706,10,'V00.288D ','Other accident on other gliding-type pedestrian conveyance, subsequent encounter','Y','0000-00-00 00:00:00'),(171707,10,'V00.288S ','Other accident on other gliding-type pedestrian conveyance, sequela','Y','0000-00-00 00:00:00'),(171708,10,'V00.311A ','Fall from snowboard, initial encounter','Y','0000-00-00 00:00:00'),(171709,10,'V00.311D ','Fall from snowboard, subsequent encounter','Y','0000-00-00 00:00:00'),(171710,10,'V00.311S ','Fall from snowboard, sequela','Y','0000-00-00 00:00:00'),(171711,10,'V00.312A ','Snowboarder colliding with stationary object, initial encounter','Y','0000-00-00 00:00:00'),(171712,10,'V00.312D ','Snowboarder colliding with stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(171713,10,'V00.312S ','Snowboarder colliding with stationary object, sequela','Y','0000-00-00 00:00:00'),(171714,10,'V00.318A ','Other snowboard accident, initial encounter','Y','0000-00-00 00:00:00'),(171715,10,'V00.318D ','Other snowboard accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171716,10,'V00.318S ','Other snowboard accident, sequela','Y','0000-00-00 00:00:00'),(171717,10,'V00.321A ','Fall from snow-skis, initial encounter','Y','0000-00-00 00:00:00'),(171718,10,'V00.321D ','Fall from snow-skis, subsequent encounter','Y','0000-00-00 00:00:00'),(171719,10,'V00.321S ','Fall from snow-skis, sequela','Y','0000-00-00 00:00:00'),(171720,10,'V00.322A ','Snow-skier colliding with stationary object, initial encounter','Y','0000-00-00 00:00:00'),(171721,10,'V00.322D ','Snow-skier colliding with stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(171722,10,'V00.322S ','Snow-skier colliding with stationary object, sequela','Y','0000-00-00 00:00:00'),(171723,10,'V00.328A ','Other snow-ski accident, initial encounter','Y','0000-00-00 00:00:00'),(171724,10,'V00.328D ','Other snow-ski accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171725,10,'V00.328S ','Other snow-ski accident, sequela','Y','0000-00-00 00:00:00'),(171726,10,'V00.381A ','Fall from other flat-bottomed pedestrian conveyance, initial encounter','Y','0000-00-00 00:00:00'),(171727,10,'V00.381D ','Fall from other flat-bottomed pedestrian conveyance, subsequent encounter','Y','0000-00-00 00:00:00'),(171728,10,'V00.381S ','Fall from other flat-bottomed pedestrian conveyance, sequela','Y','0000-00-00 00:00:00'),(171729,10,'V00.382A ','Pedestrian on other flat-bottomed pedestrian conveyance colliding with stationary object, initial encounter','Y','0000-00-00 00:00:00'),(171730,10,'V00.382D ','Pedestrian on other flat-bottomed pedestrian conveyance colliding with stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(171731,10,'V00.382S ','Pedestrian on other flat-bottomed pedestrian conveyance colliding with stationary object, sequela','Y','0000-00-00 00:00:00'),(171732,10,'V00.388A ','Other accident on other flat-bottomed pedestrian conveyance, initial encounter','Y','0000-00-00 00:00:00'),(171733,10,'V00.388D ','Other accident on other flat-bottomed pedestrian conveyance, subsequent encounter','Y','0000-00-00 00:00:00'),(171734,10,'V00.388S ','Other accident on other flat-bottomed pedestrian conveyance, sequela','Y','0000-00-00 00:00:00'),(171735,10,'V00.811A ','Fall from moving wheelchair (powered), initial encounter','Y','0000-00-00 00:00:00'),(171736,10,'V00.811D ','Fall from moving wheelchair (powered), subsequent encounter','Y','0000-00-00 00:00:00'),(171737,10,'V00.811S ','Fall from moving wheelchair (powered), sequela','Y','0000-00-00 00:00:00'),(171738,10,'V00.812A ','Wheelchair (powered) colliding with stationary object, initial encounter','Y','0000-00-00 00:00:00'),(171739,10,'V00.812D ','Wheelchair (powered) colliding with stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(171740,10,'V00.812S ','Wheelchair (powered) colliding with stationary object, sequela','Y','0000-00-00 00:00:00'),(171741,10,'V00.818A ','Other accident with wheelchair (powered), initial encounter','Y','0000-00-00 00:00:00'),(171742,10,'V00.818D ','Other accident with wheelchair (powered), subsequent encounter','Y','0000-00-00 00:00:00'),(171743,10,'V00.818S ','Other accident with wheelchair (powered), sequela','Y','0000-00-00 00:00:00'),(171744,10,'V00.821A ','Fall from baby stroller, initial encounter','Y','0000-00-00 00:00:00'),(171745,10,'V00.821D ','Fall from baby stroller, subsequent encounter','Y','0000-00-00 00:00:00'),(171746,10,'V00.821S ','Fall from baby stroller, sequela','Y','0000-00-00 00:00:00'),(171747,10,'V00.822A ','Baby stroller colliding with stationary object, initial encounter','Y','0000-00-00 00:00:00'),(171748,10,'V00.822D ','Baby stroller colliding with stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(171749,10,'V00.822S ','Baby stroller colliding with stationary object, sequela','Y','0000-00-00 00:00:00'),(171750,10,'V00.828A ','Other accident with baby stroller, initial encounter','Y','0000-00-00 00:00:00'),(171751,10,'V00.828D ','Other accident with baby stroller, subsequent encounter','Y','0000-00-00 00:00:00'),(171752,10,'V00.828S ','Other accident with baby stroller, sequela','Y','0000-00-00 00:00:00'),(171753,10,'V00.831A ','Fall from motorized mobility scooter, initial encounter','Y','0000-00-00 00:00:00'),(171754,10,'V00.831D ','Fall from motorized mobility scooter, subsequent encounter','Y','0000-00-00 00:00:00'),(171755,10,'V00.831S ','Fall from motorized mobility scooter, sequela','Y','0000-00-00 00:00:00'),(171756,10,'V00.832A ','Motorized mobility scooter colliding with stationary object, initial encounter','Y','0000-00-00 00:00:00'),(171757,10,'V00.832D ','Motorized mobility scooter colliding with stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(171758,10,'V00.832S ','Motorized mobility scooter colliding with stationary object, sequela','Y','0000-00-00 00:00:00'),(171759,10,'V00.838A ','Other accident with motorized mobility scooter, initial encounter','Y','0000-00-00 00:00:00'),(171760,10,'V00.838D ','Other accident with motorized mobility scooter, subsequent encounter','Y','0000-00-00 00:00:00'),(171761,10,'V00.838S ','Other accident with motorized mobility scooter, sequela','Y','0000-00-00 00:00:00'),(171762,10,'V00.841A ','Fall from standing electric scooter, initial encounter','Y','0000-00-00 00:00:00'),(171763,10,'V00.841D ','Fall from standing electric scooter, subsequent encounter','Y','0000-00-00 00:00:00'),(171764,10,'V00.841S ','Fall from standing electric scooter, sequela','Y','0000-00-00 00:00:00'),(171765,10,'V00.842A ','Pedestrian on standing electric scooter colliding with stationary object, initial encounter','Y','0000-00-00 00:00:00'),(171766,10,'V00.842D ','Pedestrian on standing electric scooter colliding with stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(171767,10,'V00.842S ','Pedestrian on standing electric scooter colliding with stationary object, sequela','Y','0000-00-00 00:00:00'),(171768,10,'V00.848A ','Other accident with standing micro-mobility pedestrian conveyance, initial encounter','Y','0000-00-00 00:00:00'),(171769,10,'V00.848D ','Other accident with standing micro-mobility pedestrian conveyance, subsequent encounter','Y','0000-00-00 00:00:00'),(171770,10,'V00.848S ','Other accident with standing micro-mobility pedestrian conveyance, sequela','Y','0000-00-00 00:00:00'),(171771,10,'V00.891A ','Fall from other pedestrian conveyance, initial encounter','Y','0000-00-00 00:00:00'),(171772,10,'V00.891D ','Fall from other pedestrian conveyance, subsequent encounter','Y','0000-00-00 00:00:00'),(171773,10,'V00.891S ','Fall from other pedestrian conveyance, sequela','Y','0000-00-00 00:00:00'),(171774,10,'V00.892A ','Pedestrian on other pedestrian conveyance colliding with stationary object, initial encounter','Y','0000-00-00 00:00:00'),(171775,10,'V00.892D ','Pedestrian on other pedestrian conveyance colliding with stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(171776,10,'V00.892S ','Pedestrian on other pedestrian conveyance colliding with stationary object, sequela','Y','0000-00-00 00:00:00'),(171777,10,'V00.898A ','Other accident on other pedestrian conveyance, initial encounter','Y','0000-00-00 00:00:00'),(171778,10,'V00.898D ','Other accident on other pedestrian conveyance, subsequent encounter','Y','0000-00-00 00:00:00'),(171779,10,'V00.898S ','Other accident on other pedestrian conveyance, sequela','Y','0000-00-00 00:00:00'),(171780,10,'V01.00XA ','Pedestrian on foot injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171781,10,'V01.00XD ','Pedestrian on foot injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171782,10,'V01.00XS ','Pedestrian on foot injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171783,10,'V01.01XA ','Pedestrian on roller-skates injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171784,10,'V01.01XD ','Pedestrian on roller-skates injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171785,10,'V01.01XS ','Pedestrian on roller-skates injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171786,10,'V01.02XA ','Pedestrian on skateboard injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171787,10,'V01.02XD ','Pedestrian on skateboard injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171788,10,'V01.02XS ','Pedestrian on skateboard injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171789,10,'V01.031A ','Pedestrian on standing electric scooter injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171790,10,'V01.031D ','Pedestrian on standing electric scooter injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171791,10,'V01.031S ','Pedestrian on standing electric scooter injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171792,10,'V01.038A ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171793,10,'V01.038D ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171794,10,'V01.038S ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171795,10,'V01.09XA ','Pedestrian with other conveyance injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171796,10,'V01.09XD ','Pedestrian with other conveyance injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171797,10,'V01.09XS ','Pedestrian with other conveyance injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171798,10,'V01.10XA ','Pedestrian on foot injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171799,10,'V01.10XD ','Pedestrian on foot injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171800,10,'V01.10XS ','Pedestrian on foot injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171801,10,'V01.11XA ','Pedestrian on roller-skates injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171802,10,'V01.11XD ','Pedestrian on roller-skates injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171803,10,'V01.11XS ','Pedestrian on roller-skates injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171804,10,'V01.12XA ','Pedestrian on skateboard injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171805,10,'V01.12XD ','Pedestrian on skateboard injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171806,10,'V01.12XS ','Pedestrian on skateboard injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171807,10,'V01.131A ','Pedestrian on standing electric scooter injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171808,10,'V01.131D ','Pedestrian on standing electric scooter injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171809,10,'V01.131S ','Pedestrian on standing electric scooter injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171810,10,'V01.138A ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171811,10,'V01.138D ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171812,10,'V01.138S ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171813,10,'V01.19XA ','Pedestrian with other conveyance injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171814,10,'V01.19XD ','Pedestrian with other conveyance injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171815,10,'V01.19XS ','Pedestrian with other conveyance injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171816,10,'V01.90XA ','Pedestrian on foot injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171817,10,'V01.90XD ','Pedestrian on foot injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171818,10,'V01.90XS ','Pedestrian on foot injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171819,10,'V01.91XA ','Pedestrian on roller-skates injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171820,10,'V01.91XD ','Pedestrian on roller-skates injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171821,10,'V01.91XS ','Pedestrian on roller-skates injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171822,10,'V01.92XA ','Pedestrian on skateboard injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171823,10,'V01.92XD ','Pedestrian on skateboard injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171824,10,'V01.92XS ','Pedestrian on skateboard injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171825,10,'V01.931A ','Pedestrian on standing electric scooter injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171826,10,'V01.931D ','Pedestrian on standing electric scooter injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171827,10,'V01.931S ','Pedestrian on standing electric scooter injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171828,10,'V01.938A ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171829,10,'V01.938D ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171830,10,'V01.938S ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171831,10,'V01.99XA ','Pedestrian with other conveyance injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171832,10,'V01.99XD ','Pedestrian with other conveyance injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171833,10,'V01.99XS ','Pedestrian with other conveyance injured in collision with pedal cycle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171834,10,'V02.00XA ','Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171835,10,'V02.00XD ','Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171836,10,'V02.00XS ','Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171837,10,'V02.01XA ','Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171838,10,'V02.01XD ','Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171839,10,'V02.01XS ','Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171840,10,'V02.02XA ','Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171841,10,'V02.02XD ','Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171842,10,'V02.02XS ','Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171843,10,'V02.031A ','Pedestrian on standing electric scooter injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171844,10,'V02.031D ','Pedestrian on standing electric scooter injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171845,10,'V02.031S ','Pedestrian on standing electric scooter injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171846,10,'V02.038A ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171847,10,'V02.038D ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171848,10,'V02.038S ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171849,10,'V02.09XA ','Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171850,10,'V02.09XD ','Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171851,10,'V02.09XS ','Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171852,10,'V02.10XA ','Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171853,10,'V02.10XD ','Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171854,10,'V02.10XS ','Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171855,10,'V02.11XA ','Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171856,10,'V02.11XD ','Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171857,10,'V02.11XS ','Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171858,10,'V02.12XA ','Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171859,10,'V02.12XD ','Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171860,10,'V02.12XS ','Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171861,10,'V02.131A ','Pedestrian on standing electric scooter injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171862,10,'V02.131D ','Pedestrian on standing electric scooter injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171863,10,'V02.131S ','Pedestrian on standing electric scooter injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171864,10,'V02.138A ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171865,10,'V02.138D ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171866,10,'V02.138S ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171867,10,'V02.19XA ','Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171868,10,'V02.19XD ','Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171869,10,'V02.19XS ','Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171870,10,'V02.90XA ','Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171871,10,'V02.90XD ','Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171872,10,'V02.90XS ','Pedestrian on foot injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171873,10,'V02.91XA ','Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171874,10,'V02.91XD ','Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171875,10,'V02.91XS ','Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171876,10,'V02.92XA ','Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171877,10,'V02.92XD ','Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171878,10,'V02.92XS ','Pedestrian on skateboard injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171879,10,'V02.931A ','Pedestrian on standing electric scooter injured in collision with two- or three wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171880,10,'V02.931D ','Pedestrian on standing electric scooter injured in collision with two- or three wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171881,10,'V02.931S ','Pedestrian on standing electric scooter injured in collision with two- or three wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171882,10,'V02.938A ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with two- or three wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171883,10,'V02.938D ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with two- or three wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171884,10,'V02.938S ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with two- or three wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171885,10,'V02.99XA ','Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171886,10,'V02.99XD ','Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171887,10,'V02.99XS ','Pedestrian with other conveyance injured in collision with two- or three-wheeled motor vehicle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171888,10,'V03.00XA ','Pedestrian on foot injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171889,10,'V03.00XD ','Pedestrian on foot injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171890,10,'V03.00XS ','Pedestrian on foot injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171891,10,'V03.01XA ','Pedestrian on roller-skates injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171892,10,'V03.01XD ','Pedestrian on roller-skates injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171893,10,'V03.01XS ','Pedestrian on roller-skates injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171894,10,'V03.02XA ','Pedestrian on skateboard injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171895,10,'V03.02XD ','Pedestrian on skateboard injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171896,10,'V03.02XS ','Pedestrian on skateboard injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171897,10,'V03.031A ','Pedestrian on standing electric scooter injured in collision with car, pick-up or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171898,10,'V03.031D ','Pedestrian on standing electric scooter injured in collision with car, pick-up or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171899,10,'V03.031S ','Pedestrian on standing electric scooter injured in collision with car, pick-up or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171900,10,'V03.038A ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with car, pick-up or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171901,10,'V03.038D ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with car, pick-up or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171902,10,'V03.038S ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with car, pick-up or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171903,10,'V03.09XA ','Pedestrian with other conveyance injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171904,10,'V03.09XD ','Pedestrian with other conveyance injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171905,10,'V03.09XS ','Pedestrian with other conveyance injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171906,10,'V03.10XA ','Pedestrian on foot injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171907,10,'V03.10XD ','Pedestrian on foot injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171908,10,'V03.10XS ','Pedestrian on foot injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171909,10,'V03.11XA ','Pedestrian on roller-skates injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171910,10,'V03.11XD ','Pedestrian on roller-skates injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171911,10,'V03.11XS ','Pedestrian on roller-skates injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171912,10,'V03.12XA ','Pedestrian on skateboard injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171913,10,'V03.12XD ','Pedestrian on skateboard injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171914,10,'V03.12XS ','Pedestrian on skateboard injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171915,10,'V03.131A ','Pedestrian on standing electric scooter injured in collision with car, pick-up or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171916,10,'V03.131D ','Pedestrian on standing electric scooter injured in collision with car, pick-up or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171917,10,'V03.131S ','Pedestrian on standing electric scooter injured in collision with car, pick-up or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171918,10,'V03.138A ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with car, pick-up or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171919,10,'V03.138D ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with car, pick-up or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171920,10,'V03.138S ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with car, pick-up or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171921,10,'V03.19XA ','Pedestrian with other conveyance injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171922,10,'V03.19XD ','Pedestrian with other conveyance injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171923,10,'V03.19XS ','Pedestrian with other conveyance injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171924,10,'V03.90XA ','Pedestrian on foot injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171925,10,'V03.90XD ','Pedestrian on foot injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171926,10,'V03.90XS ','Pedestrian on foot injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171927,10,'V03.91XA ','Pedestrian on roller-skates injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171928,10,'V03.91XD ','Pedestrian on roller-skates injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171929,10,'V03.91XS ','Pedestrian on roller-skates injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171930,10,'V03.92XA ','Pedestrian on skateboard injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171931,10,'V03.92XD ','Pedestrian on skateboard injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171932,10,'V03.92XS ','Pedestrian on skateboard injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171933,10,'V03.931A ','Pedestrian on standing electric scooter injured in collision with car, pick-up or van, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171934,10,'V03.931D ','Pedestrian on standing electric scooter injured in collision with car, pick-up or van, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171935,10,'V03.931S ','Pedestrian on standing electric scooter injured in collision with car, pick-up or van, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171936,10,'V03.938A ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with car, pick-up or van, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171937,10,'V03.938D ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with car, pick-up or van, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171938,10,'V03.938S ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with car, pick-up or van, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171939,10,'V03.99XA ','Pedestrian with other conveyance injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171940,10,'V03.99XD ','Pedestrian with other conveyance injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171941,10,'V03.99XS ','Pedestrian with other conveyance injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171942,10,'V04.00XA ','Pedestrian on foot injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171943,10,'V04.00XD ','Pedestrian on foot injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171944,10,'V04.00XS ','Pedestrian on foot injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171945,10,'V04.01XA ','Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171946,10,'V04.01XD ','Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171947,10,'V04.01XS ','Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171948,10,'V04.02XA ','Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171949,10,'V04.02XD ','Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171950,10,'V04.02XS ','Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171951,10,'V04.031A ','Pedestrian on standing electric scooter injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171952,10,'V04.031D ','Pedestrian on standing electric scooter injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171953,10,'V04.031S ','Pedestrian on standing electric scooter injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171954,10,'V04.038A ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171955,10,'V04.038D ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171956,10,'V04.038S ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171957,10,'V04.09XA ','Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171958,10,'V04.09XD ','Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171959,10,'V04.09XS ','Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171960,10,'V04.10XA ','Pedestrian on foot injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171961,10,'V04.10XD ','Pedestrian on foot injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171962,10,'V04.10XS ','Pedestrian on foot injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171963,10,'V04.11XA ','Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171964,10,'V04.11XD ','Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171965,10,'V04.11XS ','Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171966,10,'V04.12XA ','Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171967,10,'V04.12XD ','Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171968,10,'V04.12XS ','Pedestrian on skateboard injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171969,10,'V04.131A ','Pedestrian on standing electric scooter injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171970,10,'V04.131D ','Pedestrian on standing electric scooter injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171971,10,'V04.131S ','Pedestrian on standing electric scooter injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171972,10,'V04.138A ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171973,10,'V04.138D ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171974,10,'V04.138S ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171975,10,'V04.19XA ','Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171976,10,'V04.19XD ','Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171977,10,'V04.19XS ','Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(171978,10,'V04.90XA ','Pedestrian on foot injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171979,10,'V04.90XD ','Pedestrian on foot injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171980,10,'V04.90XS ','Pedestrian on foot injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171981,10,'V04.91XA ','Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171982,10,'V04.91XD ','Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171983,10,'V04.91XS ','Pedestrian on roller-skates injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171984,10,'V04.92XA ','Pedestrian on skateboard injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171985,10,'V04.92XD ','Pedestrian on skateboard injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171986,10,'V04.92XS ','Pedestrian on skateboard injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171987,10,'V04.931A ','Pedestrian on standing electric scooter injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171988,10,'V04.931D ','Pedestrian on standing electric scooter injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171989,10,'V04.931S ','Pedestrian on standing electric scooter injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171990,10,'V04.938A ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171991,10,'V04.938D ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171992,10,'V04.938S ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171993,10,'V04.99XA ','Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171994,10,'V04.99XD ','Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171995,10,'V04.99XS ','Pedestrian with other conveyance injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171996,10,'V05.00XA ','Pedestrian on foot injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(171997,10,'V05.00XD ','Pedestrian on foot injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(171998,10,'V05.00XS ','Pedestrian on foot injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(171999,10,'V05.01XA ','Pedestrian on roller-skates injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172000,10,'V05.01XD ','Pedestrian on roller-skates injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172001,10,'V05.01XS ','Pedestrian on roller-skates injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172002,10,'V05.02XA ','Pedestrian on skateboard injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172003,10,'V05.02XD ','Pedestrian on skateboard injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172004,10,'V05.02XS ','Pedestrian on skateboard injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172005,10,'V05.031A ','Pedestrian on standing electric scooter injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172006,10,'V05.031D ','Pedestrian on standing electric scooter injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172007,10,'V05.031S ','Pedestrian on standing electric scooter injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172008,10,'V05.038A ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172009,10,'V05.038D ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172010,10,'V05.038S ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172011,10,'V05.09XA ','Pedestrian with other conveyance injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172012,10,'V05.09XD ','Pedestrian with other conveyance injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172013,10,'V05.09XS ','Pedestrian with other conveyance injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172014,10,'V05.10XA ','Pedestrian on foot injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172015,10,'V05.10XD ','Pedestrian on foot injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172016,10,'V05.10XS ','Pedestrian on foot injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172017,10,'V05.11XA ','Pedestrian on roller-skates injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172018,10,'V05.11XD ','Pedestrian on roller-skates injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172019,10,'V05.11XS ','Pedestrian on roller-skates injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172020,10,'V05.12XA ','Pedestrian on skateboard injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172021,10,'V05.12XD ','Pedestrian on skateboard injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172022,10,'V05.12XS ','Pedestrian on skateboard injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172023,10,'V05.131A ','Pedestrian on standing electric scooter injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172024,10,'V05.131D ','Pedestrian on standing electric scooter injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172025,10,'V05.131S ','Pedestrian on standing electric scooter injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172026,10,'V05.138A ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172027,10,'V05.138D ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172028,10,'V05.138S ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172029,10,'V05.19XA ','Pedestrian with other conveyance injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172030,10,'V05.19XD ','Pedestrian with other conveyance injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172031,10,'V05.19XS ','Pedestrian with other conveyance injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172032,10,'V05.90XA ','Pedestrian on foot injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172033,10,'V05.90XD ','Pedestrian on foot injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172034,10,'V05.90XS ','Pedestrian on foot injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172035,10,'V05.91XA ','Pedestrian on roller-skates injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172036,10,'V05.91XD ','Pedestrian on roller-skates injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172037,10,'V05.91XS ','Pedestrian on roller-skates injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172038,10,'V05.92XA ','Pedestrian on skateboard injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172039,10,'V05.92XD ','Pedestrian on skateboard injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172040,10,'V05.92XS ','Pedestrian on skateboard injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172041,10,'V05.931A ','Pedestrian on standing electric scooter injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172042,10,'V05.931D ','Pedestrian on standing electric scooter injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172043,10,'V05.931S ','Pedestrian on standing electric scooter injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172044,10,'V05.938A ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172045,10,'V05.938D ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172046,10,'V05.938S ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172047,10,'V05.99XA ','Pedestrian with other conveyance injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172048,10,'V05.99XD ','Pedestrian with other conveyance injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172049,10,'V05.99XS ','Pedestrian with other conveyance injured in collision with railway train or railway vehicle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172050,10,'V06.00XA ','Pedestrian on foot injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172051,10,'V06.00XD ','Pedestrian on foot injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172052,10,'V06.00XS ','Pedestrian on foot injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172053,10,'V06.01XA ','Pedestrian on roller-skates injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172054,10,'V06.01XD ','Pedestrian on roller-skates injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172055,10,'V06.01XS ','Pedestrian on roller-skates injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172056,10,'V06.02XA ','Pedestrian on skateboard injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172057,10,'V06.02XD ','Pedestrian on skateboard injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172058,10,'V06.02XS ','Pedestrian on skateboard injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172059,10,'V06.031A ','Pedestrian on standing electric scooter injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172060,10,'V06.031D ','Pedestrian on standing electric scooter injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172061,10,'V06.031S ','Pedestrian on standing electric scooter injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172062,10,'V06.038A ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172063,10,'V06.038D ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172064,10,'V06.038S ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172065,10,'V06.09XA ','Pedestrian with other conveyance injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172066,10,'V06.09XD ','Pedestrian with other conveyance injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172067,10,'V06.09XS ','Pedestrian with other conveyance injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172068,10,'V06.10XA ','Pedestrian on foot injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172069,10,'V06.10XD ','Pedestrian on foot injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172070,10,'V06.10XS ','Pedestrian on foot injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172071,10,'V06.11XA ','Pedestrian on roller-skates injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172072,10,'V06.11XD ','Pedestrian on roller-skates injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172073,10,'V06.11XS ','Pedestrian on roller-skates injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172074,10,'V06.12XA ','Pedestrian on skateboard injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172075,10,'V06.12XD ','Pedestrian on skateboard injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172076,10,'V06.12XS ','Pedestrian on skateboard injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172077,10,'V06.131A ','Pedestrian on standing electric scooter injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172078,10,'V06.131D ','Pedestrian on standing electric scooter injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172079,10,'V06.131S ','Pedestrian on standing electric scooter injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172080,10,'V06.138A ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172081,10,'V06.138D ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172082,10,'V06.138S ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172083,10,'V06.19XA ','Pedestrian with other conveyance injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172084,10,'V06.19XD ','Pedestrian with other conveyance injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172085,10,'V06.19XS ','Pedestrian with other conveyance injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172086,10,'V06.90XA ','Pedestrian on foot injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172087,10,'V06.90XD ','Pedestrian on foot injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172088,10,'V06.90XS ','Pedestrian on foot injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172089,10,'V06.91XA ','Pedestrian on roller-skates injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172090,10,'V06.91XD ','Pedestrian on roller-skates injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172091,10,'V06.91XS ','Pedestrian on roller-skates injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172092,10,'V06.92XA ','Pedestrian on skateboard injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172093,10,'V06.92XD ','Pedestrian on skateboard injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172094,10,'V06.92XS ','Pedestrian on skateboard injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172095,10,'V06.931A ','Pedestrian on standing electric scooter injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172096,10,'V06.931D ','Pedestrian on standing electric scooter injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172097,10,'V06.931S ','Pedestrian on standing electric scooter injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172098,10,'V06.938A ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172099,10,'V06.938D ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172100,10,'V06.938S ','Pedestrian on other standing micro-mobility pedestrian conveyance injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172101,10,'V06.99XA ','Pedestrian with other conveyance injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172102,10,'V06.99XD ','Pedestrian with other conveyance injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172103,10,'V06.99XS ','Pedestrian with other conveyance injured in collision with other nonmotor vehicle, unspecified whether traffic or nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172104,10,'V09.00XA ','Pedestrian injured in nontraffic accident involving unspecified motor vehicles, initial encounter','Y','0000-00-00 00:00:00'),(172105,10,'V09.00XD ','Pedestrian injured in nontraffic accident involving unspecified motor vehicles, subsequent encounter','Y','0000-00-00 00:00:00'),(172106,10,'V09.00XS ','Pedestrian injured in nontraffic accident involving unspecified motor vehicles, sequela','Y','0000-00-00 00:00:00'),(172107,10,'V09.01XA ','Pedestrian injured in nontraffic accident involving military vehicle, initial encounter','Y','0000-00-00 00:00:00'),(172108,10,'V09.01XD ','Pedestrian injured in nontraffic accident involving military vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(172109,10,'V09.01XS ','Pedestrian injured in nontraffic accident involving military vehicle, sequela','Y','0000-00-00 00:00:00'),(172110,10,'V09.09XA ','Pedestrian injured in nontraffic accident involving other motor vehicles, initial encounter','Y','0000-00-00 00:00:00'),(172111,10,'V09.09XD ','Pedestrian injured in nontraffic accident involving other motor vehicles, subsequent encounter','Y','0000-00-00 00:00:00'),(172112,10,'V09.09XS ','Pedestrian injured in nontraffic accident involving other motor vehicles, sequela','Y','0000-00-00 00:00:00'),(172113,10,'V09.1XXA ','Pedestrian injured in unspecified nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172114,10,'V09.1XXD ','Pedestrian injured in unspecified nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172115,10,'V09.1XXS ','Pedestrian injured in unspecified nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172116,10,'V09.20XA ','Pedestrian injured in traffic accident involving unspecified motor vehicles, initial encounter','Y','0000-00-00 00:00:00'),(172117,10,'V09.20XD ','Pedestrian injured in traffic accident involving unspecified motor vehicles, subsequent encounter','Y','0000-00-00 00:00:00'),(172118,10,'V09.20XS ','Pedestrian injured in traffic accident involving unspecified motor vehicles, sequela','Y','0000-00-00 00:00:00'),(172119,10,'V09.21XA ','Pedestrian injured in traffic accident involving military vehicle, initial encounter','Y','0000-00-00 00:00:00'),(172120,10,'V09.21XD ','Pedestrian injured in traffic accident involving military vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(172121,10,'V09.21XS ','Pedestrian injured in traffic accident involving military vehicle, sequela','Y','0000-00-00 00:00:00'),(172122,10,'V09.29XA ','Pedestrian injured in traffic accident involving other motor vehicles, initial encounter','Y','0000-00-00 00:00:00'),(172123,10,'V09.29XD ','Pedestrian injured in traffic accident involving other motor vehicles, subsequent encounter','Y','0000-00-00 00:00:00'),(172124,10,'V09.29XS ','Pedestrian injured in traffic accident involving other motor vehicles, sequela','Y','0000-00-00 00:00:00'),(172125,10,'V09.3XXA ','Pedestrian injured in unspecified traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172126,10,'V09.3XXD ','Pedestrian injured in unspecified traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172127,10,'V09.3XXS ','Pedestrian injured in unspecified traffic accident, sequela','Y','0000-00-00 00:00:00'),(172128,10,'V09.9XXA ','Pedestrian injured in unspecified transport accident, initial encounter','Y','0000-00-00 00:00:00'),(172129,10,'V09.9XXD ','Pedestrian injured in unspecified transport accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172130,10,'V09.9XXS ','Pedestrian injured in unspecified transport accident, sequela','Y','0000-00-00 00:00:00'),(172131,10,'V10.0XXA ','Pedal cycle driver injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172132,10,'V10.0XXD ','Pedal cycle driver injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172133,10,'V10.0XXS ','Pedal cycle driver injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172134,10,'V10.1XXA ','Pedal cycle passenger injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172135,10,'V10.1XXD ','Pedal cycle passenger injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172136,10,'V10.1XXS ','Pedal cycle passenger injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172137,10,'V10.2XXA ','Unspecified pedal cyclist injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172138,10,'V10.2XXD ','Unspecified pedal cyclist injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172139,10,'V10.2XXS ','Unspecified pedal cyclist injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172140,10,'V10.3XXA ','Person boarding or alighting a pedal cycle injured in collision with pedestrian or animal, initial encounter','Y','0000-00-00 00:00:00'),(172141,10,'V10.3XXD ','Person boarding or alighting a pedal cycle injured in collision with pedestrian or animal, subsequent encounter','Y','0000-00-00 00:00:00'),(172142,10,'V10.3XXS ','Person boarding or alighting a pedal cycle injured in collision with pedestrian or animal, sequela','Y','0000-00-00 00:00:00'),(172143,10,'V10.4XXA ','Pedal cycle driver injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172144,10,'V10.4XXD ','Pedal cycle driver injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172145,10,'V10.4XXS ','Pedal cycle driver injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172146,10,'V10.5XXA ','Pedal cycle passenger injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172147,10,'V10.5XXD ','Pedal cycle passenger injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172148,10,'V10.5XXS ','Pedal cycle passenger injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172149,10,'V10.9XXA ','Unspecified pedal cyclist injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172150,10,'V10.9XXD ','Unspecified pedal cyclist injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172151,10,'V10.9XXS ','Unspecified pedal cyclist injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172152,10,'V11.0XXA ','Pedal cycle driver injured in collision with other pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172153,10,'V11.0XXD ','Pedal cycle driver injured in collision with other pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172154,10,'V11.0XXS ','Pedal cycle driver injured in collision with other pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172155,10,'V11.1XXA ','Pedal cycle passenger injured in collision with other pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172156,10,'V11.1XXD ','Pedal cycle passenger injured in collision with other pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172157,10,'V11.1XXS ','Pedal cycle passenger injured in collision with other pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172158,10,'V11.2XXA ','Unspecified pedal cyclist injured in collision with other pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172159,10,'V11.2XXD ','Unspecified pedal cyclist injured in collision with other pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172160,10,'V11.2XXS ','Unspecified pedal cyclist injured in collision with other pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172161,10,'V11.3XXA ','Person boarding or alighting a pedal cycle injured in collision with other pedal cycle, initial encounter','Y','0000-00-00 00:00:00'),(172162,10,'V11.3XXD ','Person boarding or alighting a pedal cycle injured in collision with other pedal cycle, subsequent encounter','Y','0000-00-00 00:00:00'),(172163,10,'V11.3XXS ','Person boarding or alighting a pedal cycle injured in collision with other pedal cycle, sequela','Y','0000-00-00 00:00:00'),(172164,10,'V11.4XXA ','Pedal cycle driver injured in collision with other pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172165,10,'V11.4XXD ','Pedal cycle driver injured in collision with other pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172166,10,'V11.4XXS ','Pedal cycle driver injured in collision with other pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172167,10,'V11.5XXA ','Pedal cycle passenger injured in collision with other pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172168,10,'V11.5XXD ','Pedal cycle passenger injured in collision with other pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172169,10,'V11.5XXS ','Pedal cycle passenger injured in collision with other pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172170,10,'V11.9XXA ','Unspecified pedal cyclist injured in collision with other pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172171,10,'V11.9XXD ','Unspecified pedal cyclist injured in collision with other pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172172,10,'V11.9XXS ','Unspecified pedal cyclist injured in collision with other pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172173,10,'V12.0XXA ','Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172174,10,'V12.0XXD ','Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172175,10,'V12.0XXS ','Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172176,10,'V12.1XXA ','Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172177,10,'V12.1XXD ','Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172178,10,'V12.1XXS ','Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172179,10,'V12.2XXA ','Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172180,10,'V12.2XXD ','Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172181,10,'V12.2XXS ','Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172182,10,'V12.3XXA ','Person boarding or alighting a pedal cycle injured in collision with two- or three-wheeled motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(172183,10,'V12.3XXD ','Person boarding or alighting a pedal cycle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(172184,10,'V12.3XXS ','Person boarding or alighting a pedal cycle injured in collision with two- or three-wheeled motor vehicle, sequela','Y','0000-00-00 00:00:00'),(172185,10,'V12.4XXA ','Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172186,10,'V12.4XXD ','Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172187,10,'V12.4XXS ','Pedal cycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172188,10,'V12.5XXA ','Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172189,10,'V12.5XXD ','Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172190,10,'V12.5XXS ','Pedal cycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172191,10,'V12.9XXA ','Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172192,10,'V12.9XXD ','Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172193,10,'V12.9XXS ','Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172194,10,'V13.0XXA ','Pedal cycle driver injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172195,10,'V13.0XXD ','Pedal cycle driver injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172196,10,'V13.0XXS ','Pedal cycle driver injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172197,10,'V13.1XXA ','Pedal cycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172198,10,'V13.1XXD ','Pedal cycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172199,10,'V13.1XXS ','Pedal cycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172200,10,'V13.2XXA ','Unspecified pedal cyclist injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172201,10,'V13.2XXD ','Unspecified pedal cyclist injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172202,10,'V13.2XXS ','Unspecified pedal cyclist injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172203,10,'V13.3XXA ','Person boarding or alighting a pedal cycle injured in collision with car, pick-up truck or van, initial encounter','Y','0000-00-00 00:00:00'),(172204,10,'V13.3XXD ','Person boarding or alighting a pedal cycle injured in collision with car, pick-up truck or van, subsequent encounter','Y','0000-00-00 00:00:00'),(172205,10,'V13.3XXS ','Person boarding or alighting a pedal cycle injured in collision with car, pick-up truck or van, sequela','Y','0000-00-00 00:00:00'),(172206,10,'V13.4XXA ','Pedal cycle driver injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172207,10,'V13.4XXD ','Pedal cycle driver injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172208,10,'V13.4XXS ','Pedal cycle driver injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172209,10,'V13.5XXA ','Pedal cycle passenger injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172210,10,'V13.5XXD ','Pedal cycle passenger injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172211,10,'V13.5XXS ','Pedal cycle passenger injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172212,10,'V13.9XXA ','Unspecified pedal cyclist injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172213,10,'V13.9XXD ','Unspecified pedal cyclist injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172214,10,'V13.9XXS ','Unspecified pedal cyclist injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172215,10,'V14.0XXA ','Pedal cycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172216,10,'V14.0XXD ','Pedal cycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172217,10,'V14.0XXS ','Pedal cycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172218,10,'V14.1XXA ','Pedal cycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172219,10,'V14.1XXD ','Pedal cycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172220,10,'V14.1XXS ','Pedal cycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172221,10,'V14.2XXA ','Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172222,10,'V14.2XXD ','Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172223,10,'V14.2XXS ','Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172224,10,'V14.3XXA ','Person boarding or alighting a pedal cycle injured in collision with heavy transport vehicle or bus, initial encounter','Y','0000-00-00 00:00:00'),(172225,10,'V14.3XXD ','Person boarding or alighting a pedal cycle injured in collision with heavy transport vehicle or bus, subsequent encounter','Y','0000-00-00 00:00:00'),(172226,10,'V14.3XXS ','Person boarding or alighting a pedal cycle injured in collision with heavy transport vehicle or bus, sequela','Y','0000-00-00 00:00:00'),(172227,10,'V14.4XXA ','Pedal cycle driver injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172228,10,'V14.4XXD ','Pedal cycle driver injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172229,10,'V14.4XXS ','Pedal cycle driver injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172230,10,'V14.5XXA ','Pedal cycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172231,10,'V14.5XXD ','Pedal cycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172232,10,'V14.5XXS ','Pedal cycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172233,10,'V14.9XXA ','Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172234,10,'V14.9XXD ','Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172235,10,'V14.9XXS ','Unspecified pedal cyclist injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172236,10,'V15.0XXA ','Pedal cycle driver injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172237,10,'V15.0XXD ','Pedal cycle driver injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172238,10,'V15.0XXS ','Pedal cycle driver injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172239,10,'V15.1XXA ','Pedal cycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172240,10,'V15.1XXD ','Pedal cycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172241,10,'V15.1XXS ','Pedal cycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172242,10,'V15.2XXA ','Unspecified pedal cyclist injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172243,10,'V15.2XXD ','Unspecified pedal cyclist injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172244,10,'V15.2XXS ','Unspecified pedal cyclist injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172245,10,'V15.3XXA ','Person boarding or alighting a pedal cycle injured in collision with railway train or railway vehicle, initial encounter','Y','0000-00-00 00:00:00'),(172246,10,'V15.3XXD ','Person boarding or alighting a pedal cycle injured in collision with railway train or railway vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(172247,10,'V15.3XXS ','Person boarding or alighting a pedal cycle injured in collision with railway train or railway vehicle, sequela','Y','0000-00-00 00:00:00'),(172248,10,'V15.4XXA ','Pedal cycle driver injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172249,10,'V15.4XXD ','Pedal cycle driver injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172250,10,'V15.4XXS ','Pedal cycle driver injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172251,10,'V15.5XXA ','Pedal cycle passenger injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172252,10,'V15.5XXD ','Pedal cycle passenger injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172253,10,'V15.5XXS ','Pedal cycle passenger injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172254,10,'V15.9XXA ','Unspecified pedal cyclist injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172255,10,'V15.9XXD ','Unspecified pedal cyclist injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172256,10,'V15.9XXS ','Unspecified pedal cyclist injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172257,10,'V16.0XXA ','Pedal cycle driver injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172258,10,'V16.0XXD ','Pedal cycle driver injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172259,10,'V16.0XXS ','Pedal cycle driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172260,10,'V16.1XXA ','Pedal cycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172261,10,'V16.1XXD ','Pedal cycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172262,10,'V16.1XXS ','Pedal cycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172263,10,'V16.2XXA ','Unspecified pedal cyclist injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172264,10,'V16.2XXD ','Unspecified pedal cyclist injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172265,10,'V16.2XXS ','Unspecified pedal cyclist injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172266,10,'V16.3XXA ','Person boarding or alighting a pedal cycle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172267,10,'V16.3XXD ','Person boarding or alighting a pedal cycle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172268,10,'V16.3XXS ','Person boarding or alighting a pedal cycle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172269,10,'V16.4XXA ','Pedal cycle driver injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172270,10,'V16.4XXD ','Pedal cycle driver injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172271,10,'V16.4XXS ','Pedal cycle driver injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172272,10,'V16.5XXA ','Pedal cycle passenger injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172273,10,'V16.5XXD ','Pedal cycle passenger injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172274,10,'V16.5XXS ','Pedal cycle passenger injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172275,10,'V16.9XXA ','Unspecified pedal cyclist injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172276,10,'V16.9XXD ','Unspecified pedal cyclist injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172277,10,'V16.9XXS ','Unspecified pedal cyclist injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172278,10,'V17.0XXA ','Pedal cycle driver injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172279,10,'V17.0XXD ','Pedal cycle driver injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172280,10,'V17.0XXS ','Pedal cycle driver injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172281,10,'V17.1XXA ','Pedal cycle passenger injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172282,10,'V17.1XXD ','Pedal cycle passenger injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172283,10,'V17.1XXS ','Pedal cycle passenger injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172284,10,'V17.2XXA ','Unspecified pedal cyclist injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172285,10,'V17.2XXD ','Unspecified pedal cyclist injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172286,10,'V17.2XXS ','Unspecified pedal cyclist injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172287,10,'V17.3XXA ','Person boarding or alighting a pedal cycle injured in collision with fixed or stationary object, initial encounter','Y','0000-00-00 00:00:00'),(172288,10,'V17.3XXD ','Person boarding or alighting a pedal cycle injured in collision with fixed or stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(172289,10,'V17.3XXS ','Person boarding or alighting a pedal cycle injured in collision with fixed or stationary object, sequela','Y','0000-00-00 00:00:00'),(172290,10,'V17.4XXA ','Pedal cycle driver injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172291,10,'V17.4XXD ','Pedal cycle driver injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172292,10,'V17.4XXS ','Pedal cycle driver injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172293,10,'V17.5XXA ','Pedal cycle passenger injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172294,10,'V17.5XXD ','Pedal cycle passenger injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172295,10,'V17.5XXS ','Pedal cycle passenger injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172296,10,'V17.9XXA ','Unspecified pedal cyclist injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172297,10,'V17.9XXD ','Unspecified pedal cyclist injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172298,10,'V17.9XXS ','Unspecified pedal cyclist injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172299,10,'V18.0XXA ','Pedal cycle driver injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172300,10,'V18.0XXD ','Pedal cycle driver injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172301,10,'V18.0XXS ','Pedal cycle driver injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172302,10,'V18.1XXA ','Pedal cycle passenger injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172303,10,'V18.1XXD ','Pedal cycle passenger injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172304,10,'V18.1XXS ','Pedal cycle passenger injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172305,10,'V18.2XXA ','Unspecified pedal cyclist injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172306,10,'V18.2XXD ','Unspecified pedal cyclist injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172307,10,'V18.2XXS ','Unspecified pedal cyclist injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172308,10,'V18.3XXA ','Person boarding or alighting a pedal cycle injured in noncollision transport accident, initial encounter','Y','0000-00-00 00:00:00'),(172309,10,'V18.3XXD ','Person boarding or alighting a pedal cycle injured in noncollision transport accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172310,10,'V18.3XXS ','Person boarding or alighting a pedal cycle injured in noncollision transport accident, sequela','Y','0000-00-00 00:00:00'),(172311,10,'V18.4XXA ','Pedal cycle driver injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172312,10,'V18.4XXD ','Pedal cycle driver injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172313,10,'V18.4XXS ','Pedal cycle driver injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172314,10,'V18.5XXA ','Pedal cycle passenger injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172315,10,'V18.5XXD ','Pedal cycle passenger injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172316,10,'V18.5XXS ','Pedal cycle passenger injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172317,10,'V18.9XXA ','Unspecified pedal cyclist injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172318,10,'V18.9XXD ','Unspecified pedal cyclist injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172319,10,'V18.9XXS ','Unspecified pedal cyclist injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172320,10,'V19.00XA ','Pedal cycle driver injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172321,10,'V19.00XD ','Pedal cycle driver injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172322,10,'V19.00XS ','Pedal cycle driver injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172323,10,'V19.09XA ','Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172324,10,'V19.09XD ','Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172325,10,'V19.09XS ','Pedal cycle driver injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172326,10,'V19.10XA ','Pedal cycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172327,10,'V19.10XD ','Pedal cycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172328,10,'V19.10XS ','Pedal cycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172329,10,'V19.19XA ','Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172330,10,'V19.19XD ','Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172331,10,'V19.19XS ','Pedal cycle passenger injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172332,10,'V19.20XA ','Unspecified pedal cyclist injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172333,10,'V19.20XD ','Unspecified pedal cyclist injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172334,10,'V19.20XS ','Unspecified pedal cyclist injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172335,10,'V19.29XA ','Unspecified pedal cyclist injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172336,10,'V19.29XD ','Unspecified pedal cyclist injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172337,10,'V19.29XS ','Unspecified pedal cyclist injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172338,10,'V19.3XXA ','Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172339,10,'V19.3XXD ','Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172340,10,'V19.3XXS ','Pedal cyclist (driver) (passenger) injured in unspecified nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172341,10,'V19.40XA ','Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172342,10,'V19.40XD ','Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172343,10,'V19.40XS ','Pedal cycle driver injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172344,10,'V19.49XA ','Pedal cycle driver injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172345,10,'V19.49XD ','Pedal cycle driver injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172346,10,'V19.49XS ','Pedal cycle driver injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172347,10,'V19.50XA ','Pedal cycle passenger injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172348,10,'V19.50XD ','Pedal cycle passenger injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172349,10,'V19.50XS ','Pedal cycle passenger injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172350,10,'V19.59XA ','Pedal cycle passenger injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172351,10,'V19.59XD ','Pedal cycle passenger injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172352,10,'V19.59XS ','Pedal cycle passenger injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172353,10,'V19.60XA ','Unspecified pedal cyclist injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172354,10,'V19.60XD ','Unspecified pedal cyclist injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172355,10,'V19.60XS ','Unspecified pedal cyclist injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172356,10,'V19.69XA ','Unspecified pedal cyclist injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172357,10,'V19.69XD ','Unspecified pedal cyclist injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172358,10,'V19.69XS ','Unspecified pedal cyclist injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172359,10,'V19.81XA ','Pedal cyclist (driver) (passenger) injured in transport accident with military vehicle, initial encounter','Y','0000-00-00 00:00:00'),(172360,10,'V19.81XD ','Pedal cyclist (driver) (passenger) injured in transport accident with military vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(172361,10,'V19.81XS ','Pedal cyclist (driver) (passenger) injured in transport accident with military vehicle, sequela','Y','0000-00-00 00:00:00'),(172362,10,'V19.88XA ','Pedal cyclist (driver) (passenger) injured in other specified transport accidents, initial encounter','Y','0000-00-00 00:00:00'),(172363,10,'V19.88XD ','Pedal cyclist (driver) (passenger) injured in other specified transport accidents, subsequent encounter','Y','0000-00-00 00:00:00'),(172364,10,'V19.88XS ','Pedal cyclist (driver) (passenger) injured in other specified transport accidents, sequela','Y','0000-00-00 00:00:00'),(172365,10,'V19.9XXA ','Pedal cyclist (driver) (passenger) injured in unspecified traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172366,10,'V19.9XXD ','Pedal cyclist (driver) (passenger) injured in unspecified traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172367,10,'V19.9XXS ','Pedal cyclist (driver) (passenger) injured in unspecified traffic accident, sequela','Y','0000-00-00 00:00:00'),(172368,10,'V20.01XA ','Electric (assisted) bicycle driver injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172369,10,'V20.01XD ','Electric (assisted) bicycle driver injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172370,10,'V20.01XS ','Electric (assisted) bicycle driver injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172371,10,'V20.09XA ','Other motorcycle driver injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172372,10,'V20.09XD ','Other motorcycle driver injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172373,10,'V20.09XS ','Other motorcycle driver injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172374,10,'V20.11XA ','Electric (assisted) bicycle passenger injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172375,10,'V20.11XD ','Electric (assisted) bicycle passenger injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172376,10,'V20.11XS ','Electric (assisted) bicycle passenger injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172377,10,'V20.19XA ','Other motorcycle passenger injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172378,10,'V20.19XD ','Other motorcycle passenger injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172379,10,'V20.19XS ','Other motorcycle passenger injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172380,10,'V20.21XA ','Unspecified electric (assisted) bicycle rider injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172381,10,'V20.21XD ','Unspecified electric (assisted) bicycle rider injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172382,10,'V20.21XS ','Unspecified electric (assisted) bicycle rider injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172383,10,'V20.29XA ','Unspecified rider of other motorcycle injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172384,10,'V20.29XD ','Unspecified rider of other motorcycle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172385,10,'V20.29XS ','Unspecified rider of other motorcycle injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172386,10,'V20.31XA ','Person boarding or alighting an electric (assisted) bicycle injured in collision with pedestrian or animal, initial encounter','Y','0000-00-00 00:00:00'),(172387,10,'V20.31XD ','Person boarding or alighting an electric (assisted) bicycle injured in collision with pedestrian or animal, subsequent encounter','Y','0000-00-00 00:00:00'),(172388,10,'V20.31XS ','Person boarding or alighting an electric (assisted) bicycle injured in collision with pedestrian or animal, sequela','Y','0000-00-00 00:00:00'),(172389,10,'V20.39XA ','Person boarding or alighting other motorcycle injured in collision with pedestrian or animal, initial encounter','Y','0000-00-00 00:00:00'),(172390,10,'V20.39XD ','Person boarding or alighting other motorcycle injured in collision with pedestrian or animal, subsequent encounter','Y','0000-00-00 00:00:00'),(172391,10,'V20.39XS ','Person boarding or alighting other motorcycle injured in collision with pedestrian or animal, sequela','Y','0000-00-00 00:00:00'),(172392,10,'V20.41XA ','Electric (assisted) bicycle driver injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172393,10,'V20.41XD ','Electric (assisted) bicycle driver injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172394,10,'V20.41XS ','Electric (assisted) bicycle driver injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172395,10,'V20.49XA ','Other motorcycle driver injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172396,10,'V20.49XD ','Other motorcycle driver injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172397,10,'V20.49XS ','Other motorcycle driver injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172398,10,'V20.51XA ','Electric (assisted) bicycle passenger injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172399,10,'V20.51XD ','Electric (assisted) bicycle passenger injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172400,10,'V20.51XS ','Electric (assisted) bicycle passenger injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172401,10,'V20.59XA ','Other motorcycle passenger injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172402,10,'V20.59XD ','Other motorcycle passenger injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172403,10,'V20.59XS ','Other motorcycle passenger injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172404,10,'V20.91XA ','Unspecified electric (assisted) bicycle rider injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172405,10,'V20.91XD ','Unspecified electric (assisted) bicycle rider injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172406,10,'V20.91XS ','Unspecified electric (assisted) bicycle rider injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172407,10,'V20.99XA ','Unspecified rider of other motorcycle injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172408,10,'V20.99XD ','Unspecified rider of other motorcycle injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172409,10,'V20.99XS ','Unspecified rider of other motorcycle injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172410,10,'V21.01XA ','Electric (assisted) bicycle driver injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172411,10,'V21.01XD ','Electric (assisted) bicycle driver injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172412,10,'V21.01XS ','Electric (assisted) bicycle driver injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172413,10,'V21.09XA ','Other motorcycle driver injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172414,10,'V21.09XD ','Other motorcycle driver injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172415,10,'V21.09XS ','Other motorcycle driver injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172416,10,'V21.11XA ','Electric (assisted) bicycle passenger injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172417,10,'V21.11XD ','Electric (assisted) bicycle passenger injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172418,10,'V21.11XS ','Electric (assisted) bicycle passenger injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172419,10,'V21.19XA ','Other motorcycle passenger injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172420,10,'V21.19XD ','Other motorcycle passenger injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172421,10,'V21.19XS ','Other motorcycle passenger injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172422,10,'V21.21XA ','Unspecified electric (assisted) bicycle rider injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172423,10,'V21.21XD ','Unspecified electric (assisted) bicycle rider injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172424,10,'V21.21XS ','Unspecified electric (assisted) bicycle rider injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172425,10,'V21.29XA ','Unspecified rider of other motorcycle injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172426,10,'V21.29XD ','Unspecified rider of other motorcycle injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172427,10,'V21.29XS ','Unspecified rider of other motorcycle injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172428,10,'V21.31XA ','Person boarding or alighting an electric (assisted) bicycle injured in collision with pedal cycle, initial encounter','Y','0000-00-00 00:00:00'),(172429,10,'V21.31XD ','Person boarding or alighting an electric (assisted) bicycle injured in collision with pedal cycle, subsequent encounter','Y','0000-00-00 00:00:00'),(172430,10,'V21.31XS ','Person boarding or alighting an electric (assisted) bicycle injured in collision with pedal cycle, sequela','Y','0000-00-00 00:00:00'),(172431,10,'V21.39XA ','Person boarding or alighting other motorcycle injured in collision with pedal cycle, initial encounter','Y','0000-00-00 00:00:00'),(172432,10,'V21.39XD ','Person boarding or alighting other motorcycle injured in collision with pedal cycle, subsequent encounter','Y','0000-00-00 00:00:00'),(172433,10,'V21.39XS ','Person boarding or alighting other motorcycle injured in collision with pedal cycle, sequela','Y','0000-00-00 00:00:00'),(172434,10,'V21.41XA ','Electric (assisted) bicycle driver injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172435,10,'V21.41XD ','Electric (assisted) bicycle driver injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172436,10,'V21.41XS ','Electric (assisted) bicycle driver injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172437,10,'V21.49XA ','Other motorcycle driver injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172438,10,'V21.49XD ','Other motorcycle driver injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172439,10,'V21.49XS ','Other motorcycle driver injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172440,10,'V21.51XA ','Electric (assisted) bicycle passenger injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172441,10,'V21.51XD ','Electric (assisted) bicycle passenger injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172442,10,'V21.51XS ','Electric (assisted) bicycle passenger injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172443,10,'V21.59XA ','Other motorcycle passenger injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172444,10,'V21.59XD ','Other motorcycle passenger injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172445,10,'V21.59XS ','Other motorcycle passenger injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172446,10,'V21.91XA ','Unspecified electric (assisted) bicycle rider injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172447,10,'V21.91XD ','Unspecified electric (assisted) bicycle rider injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172448,10,'V21.91XS ','Unspecified electric (assisted) bicycle rider injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172449,10,'V21.99XA ','Unspecified rider of other motorcycle injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172450,10,'V21.99XD ','Unspecified rider of other motorcycle injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172451,10,'V21.99XS ','Unspecified rider of other motorcycle injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172452,10,'V22.01XA ','Electric (assisted) bicycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172453,10,'V22.01XD ','Electric (assisted) bicycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172454,10,'V22.01XS ','Electric (assisted) bicycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172455,10,'V22.09XA ','Other motorcycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172456,10,'V22.09XD ','Other motorcycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172457,10,'V22.09XS ','Other motorcycle driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172458,10,'V22.11XA ','Electric (assisted) bicycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172459,10,'V22.11XD ','Electric (assisted) bicycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172460,10,'V22.11XS ','Electric (assisted) bicycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172461,10,'V22.19XA ','Other motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172462,10,'V22.19XD ','Other motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172463,10,'V22.19XS ','Other motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172464,10,'V22.21XA ','Unspecified electric (assisted) bicycle rider injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172465,10,'V22.21XD ','Unspecified electric (assisted) bicycle rider injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172466,10,'V22.21XS ','Unspecified electric (assisted) bicycle rider injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172467,10,'V22.29XA ','Unspecified rider of other motorcycle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172468,10,'V22.29XD ','Unspecified rider of other motorcycle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172469,10,'V22.29XS ','Unspecified rider of other motorcycle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172470,10,'V22.31XA ','Person boarding or alighting an electric (assisted) bicycle injured in collision with two- or three-wheeled motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(172471,10,'V22.31XD ','Person boarding or alighting an electric (assisted) bicycle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(172472,10,'V22.31XS ','Person boarding or alighting an electric (assisted) bicycle injured in collision with two- or three-wheeled motor vehicle, sequela','Y','0000-00-00 00:00:00'),(172473,10,'V22.39XA ','Person boarding or alighting other motorcycle injured in collision with two- or three-wheeled motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(172474,10,'V22.39XD ','Person boarding or alighting other motorcycle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(172475,10,'V22.39XS ','Person boarding or alighting other motorcycle injured in collision with two- or three-wheeled motor vehicle, sequela','Y','0000-00-00 00:00:00'),(172476,10,'V22.41XA ','Electric (assisted) bicycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172477,10,'V22.41XD ','Electric (assisted) bicycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172478,10,'V22.41XS ','Electric (assisted) bicycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172479,10,'V22.49XA ','Other motorcycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172480,10,'V22.49XD ','Other motorcycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172481,10,'V22.49XS ','Other motorcycle driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172482,10,'V22.51XA ','Electric (assisted) bicycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172483,10,'V22.51XD ','Electric (assisted) bicycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172484,10,'V22.51XS ','Electric (assisted) bicycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172485,10,'V22.59XA ','Other motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172486,10,'V22.59XD ','Other motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172487,10,'V22.59XS ','Other motorcycle passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172488,10,'V22.91XA ','Unspecified electric (assisted) bicycle rider injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172489,10,'V22.91XD ','Unspecified electric (assisted) bicycle rider injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172490,10,'V22.91XS ','Unspecified electric (assisted) bicycle rider injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172491,10,'V22.99XA ','Unspecified rider of other motorcycle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172492,10,'V22.99XD ','Unspecified rider of other motorcycle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172493,10,'V22.99XS ','Unspecified rider of other motorcycle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172494,10,'V23.01XA ','Electric (assisted) bicycle driver injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172495,10,'V23.01XD ','Electric (assisted) bicycle driver injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172496,10,'V23.01XS ','Electric (assisted) bicycle driver injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172497,10,'V23.09XA ','Other motorcycle driver injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172498,10,'V23.09XD ','Other motorcycle driver injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172499,10,'V23.09XS ','Other motorcycle driver injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172500,10,'V23.11XA ','Electric (assisted) bicycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172501,10,'V23.11XD ','Electric (assisted) bicycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172502,10,'V23.11XS ','Electric (assisted) bicycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172503,10,'V23.19XA ','Other motorcycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172504,10,'V23.19XD ','Other motorcycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172505,10,'V23.19XS ','Other motorcycle passenger injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172506,10,'V23.21XA ','Unspecified electric (assisted) bicycle rider injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172507,10,'V23.21XD ','Unspecified electric (assisted) bicycle rider injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172508,10,'V23.21XS ','Unspecified electric (assisted) bicycle rider injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172509,10,'V23.29XA ','Unspecified rider of other motorcycle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172510,10,'V23.29XD ','Unspecified rider of other motorcycle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172511,10,'V23.29XS ','Unspecified rider of other motorcycle injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172512,10,'V23.31XA ','Person boarding or alighting an electric (assisted) bicycle injured in collision with car, pick-up truck or van, initial encounter','Y','0000-00-00 00:00:00'),(172513,10,'V23.31XD ','Person boarding or alighting an electric (assisted) bicycle injured in collision with car, pick-up truck or van, subsequent encounter','Y','0000-00-00 00:00:00'),(172514,10,'V23.31XS ','Person boarding or alighting an electric (assisted) bicycle injured in collision with car, pick-up truck or van, sequela','Y','0000-00-00 00:00:00'),(172515,10,'V23.39XA ','Person boarding or alighting other motorcycle injured in collision with car, pick-up truck or van, initial encounter','Y','0000-00-00 00:00:00'),(172516,10,'V23.39XD ','Person boarding or alighting other motorcycle injured in collision with car, pick-up truck or van, subsequent encounter','Y','0000-00-00 00:00:00'),(172517,10,'V23.39XS ','Person boarding or alighting other motorcycle injured in collision with car, pick-up truck or van, sequela','Y','0000-00-00 00:00:00'),(172518,10,'V23.41XA ','Electric (assisted) bicycle driver injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172519,10,'V23.41XD ','Electric (assisted) bicycle driver injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172520,10,'V23.41XS ','Electric (assisted) bicycle driver injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172521,10,'V23.49XA ','Other motorcycle driver injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172522,10,'V23.49XD ','Other motorcycle driver injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172523,10,'V23.49XS ','Other motorcycle driver injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172524,10,'V23.51XA ','Electric (assisted) bicycle passenger injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172525,10,'V23.51XD ','Electric (assisted) bicycle passenger injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172526,10,'V23.51XS ','Electric (assisted) bicycle passenger injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172527,10,'V23.59XA ','Other motorcycle passenger injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172528,10,'V23.59XD ','Other motorcycle passenger injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172529,10,'V23.59XS ','Other motorcycle passenger injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172530,10,'V23.91XA ','Unspecified electric (assisted) bicycle rider injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172531,10,'V23.91XD ','Unspecified electric (assisted) bicycle rider injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172532,10,'V23.91XS ','Unspecified electric (assisted) bicycle rider injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172533,10,'V23.99XA ','Unspecified rider of other motorcycle injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172534,10,'V23.99XD ','Unspecified rider of other motorcycle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172535,10,'V23.99XS ','Unspecified rider of other motorcycle injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172536,10,'V24.01XA ','Electric (assisted) bicycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172537,10,'V24.01XD ','Electric (assisted) bicycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172538,10,'V24.01XS ','Electric (assisted) bicycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172539,10,'V24.09XA ','Other motorcycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172540,10,'V24.09XD ','Other motorcycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172541,10,'V24.09XS ','Other motorcycle driver injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172542,10,'V24.11XA ','Electric (assisted) bicycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172543,10,'V24.11XD ','Electric (assisted) bicycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172544,10,'V24.11XS ','Electric (assisted) bicycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172545,10,'V24.19XA ','Other motorcycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172546,10,'V24.19XD ','Other motorcycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172547,10,'V24.19XS ','Other motorcycle passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172548,10,'V24.21XA ','Unspecified electric (assisted) bicycle rider injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172549,10,'V24.21XD ','Unspecified electric (assisted) bicycle rider injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172550,10,'V24.21XS ','Unspecified electric (assisted) bicycle rider injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172551,10,'V24.29XA ','Unspecified rider of other motorcycle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172552,10,'V24.29XD ','Unspecified rider of other motorcycle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172553,10,'V24.29XS ','Unspecified rider of other motorcycle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172554,10,'V24.31XA ','Person boarding or alighting an electric (assisted) bicycle injured in collision with heavy transport vehicle or bus, initial encounter','Y','0000-00-00 00:00:00'),(172555,10,'V24.31XD ','Person boarding or alighting an electric (assisted) bicycle injured in collision with heavy transport vehicle or bus, subsequent encounter','Y','0000-00-00 00:00:00'),(172556,10,'V24.31XS ','Person boarding or alighting an electric (assisted) bicycle injured in collision with heavy transport vehicle or bus, sequela','Y','0000-00-00 00:00:00'),(172557,10,'V24.39XA ','Person boarding or alighting other motorcycle injured in collision with heavy transport vehicle or bus, initial encounter','Y','0000-00-00 00:00:00'),(172558,10,'V24.39XD ','Person boarding or alighting other motorcycle injured in collision with heavy transport vehicle or bus, subsequent encounter','Y','0000-00-00 00:00:00'),(172559,10,'V24.39XS ','Person boarding or alighting other motorcycle injured in collision with heavy transport vehicle or bus, sequela','Y','0000-00-00 00:00:00'),(172560,10,'V24.41XA ','Electric (assisted) bicycle driver injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172561,10,'V24.41XD ','Electric (assisted) bicycle driver injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172562,10,'V24.41XS ','Electric (assisted) bicycle driver injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172563,10,'V24.49XA ','Other motorcycle driver injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172564,10,'V24.49XD ','Other motorcycle driver injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172565,10,'V24.49XS ','Other motorcycle driver injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172566,10,'V24.51XA ','Electric (assisted) bicycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172567,10,'V24.51XD ','Electric (assisted) bicycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172568,10,'V24.51XS ','Electric (assisted) bicycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172569,10,'V24.59XA ','Other motorcycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172570,10,'V24.59XD ','Other motorcycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172571,10,'V24.59XS ','Other motorcycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172572,10,'V24.91XA ','Unspecified electric (assisted) bicycle rider injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172573,10,'V24.91XD ','Unspecified electric (assisted) bicycle rider injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172574,10,'V24.91XS ','Unspecified electric (assisted) bicycle rider injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172575,10,'V24.99XA ','Unspecified rider of other motorcycle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172576,10,'V24.99XD ','Unspecified rider of other motorcycle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172577,10,'V24.99XS ','Unspecified rider of other motorcycle injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172578,10,'V25.01XA ','Electric (assisted) bicycle driver injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172579,10,'V25.01XD ','Electric (assisted) bicycle driver injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172580,10,'V25.01XS ','Electric (assisted) bicycle driver injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172581,10,'V25.09XA ','Other motorcycle driver injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172582,10,'V25.09XD ','Other motorcycle driver injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172583,10,'V25.09XS ','Other motorcycle driver injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172584,10,'V25.11XA ','Electric (assisted) bicycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172585,10,'V25.11XD ','Electric (assisted) bicycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172586,10,'V25.11XS ','Electric (assisted) bicycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172587,10,'V25.19XA ','Other motorcycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172588,10,'V25.19XD ','Other motorcycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172589,10,'V25.19XS ','Other motorcycle passenger injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172590,10,'V25.21XA ','Unspecified electric (assisted) bicycle rider injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172591,10,'V25.21XD ','Unspecified electric (assisted) bicycle rider injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172592,10,'V25.21XS ','Unspecified electric (assisted) bicycle rider injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172593,10,'V25.29XA ','Unspecified rider of other motorcycle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172594,10,'V25.29XD ','Unspecified rider of other motorcycle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172595,10,'V25.29XS ','Unspecified rider of other motorcycle injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172596,10,'V25.31XA ','Person boarding or alighting an electric (assisted) bicycle injured in collision with railway train or railway vehicle, initial encounter','Y','0000-00-00 00:00:00'),(172597,10,'V25.31XD ','Person boarding or alighting an electric (assisted) bicycle injured in collision with railway train or railway vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(172598,10,'V25.31XS ','Person boarding or alighting an electric (assisted) bicycle injured in collision with railway train or railway vehicle, sequela','Y','0000-00-00 00:00:00'),(172599,10,'V25.39XA ','Person boarding or alighting other motorcycle injured in collision with railway train or railway vehicle, initial encounter','Y','0000-00-00 00:00:00'),(172600,10,'V25.39XD ','Person boarding or alighting other motorcycle injured in collision with railway train or railway vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(172601,10,'V25.39XS ','Person boarding or alighting other motorcycle injured in collision with railway train or railway vehicle, sequela','Y','0000-00-00 00:00:00'),(172602,10,'V25.41XA ','Electric (assisted) bicycle driver injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172603,10,'V25.41XD ','Electric (assisted) bicycle driver injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172604,10,'V25.41XS ','Electric (assisted) bicycle driver injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172605,10,'V25.49XA ','Other motorcycle driver injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172606,10,'V25.49XD ','Other motorcycle driver injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172607,10,'V25.49XS ','Other motorcycle driver injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172608,10,'V25.51XA ','Electric (assisted) bicycle passenger injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172609,10,'V25.51XD ','Electric (assisted) bicycle passenger injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172610,10,'V25.51XS ','Electric (assisted) bicycle passenger injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172611,10,'V25.59XA ','Other motorcycle passenger injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172612,10,'V25.59XD ','Other motorcycle passenger injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172613,10,'V25.59XS ','Other motorcycle passenger injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172614,10,'V25.91XA ','Unspecified electric (assisted) bicycle rider injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172615,10,'V25.91XD ','Unspecified electric (assisted) bicycle rider injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172616,10,'V25.91XS ','Unspecified electric (assisted) bicycle rider injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172617,10,'V25.99XA ','Unspecified rider of other motorcycle injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172618,10,'V25.99XD ','Unspecified rider of other motorcycle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172619,10,'V25.99XS ','Unspecified rider of other motorcycle injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172620,10,'V26.01XA ','Electric (assisted) bicycle driver injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172621,10,'V26.01XD ','Electric (assisted) bicycle driver injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172622,10,'V26.01XS ','Electric (assisted) bicycle driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172623,10,'V26.09XA ','Other motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172624,10,'V26.09XD ','Other motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172625,10,'V26.09XS ','Other motorcycle driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172626,10,'V26.11XA ','Electric (assisted) bicycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172627,10,'V26.11XD ','Electric (assisted) bicycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172628,10,'V26.11XS ','Electric (assisted) bicycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172629,10,'V26.19XA ','Other motorcycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172630,10,'V26.19XD ','Other motorcycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172631,10,'V26.19XS ','Other motorcycle passenger injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172632,10,'V26.21XA ','Unspecified electric (assisted) bicycle rider injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172633,10,'V26.21XD ','Unspecified electric (assisted) bicycle rider injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172634,10,'V26.21XS ','Unspecified electric (assisted) bicycle rider injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172635,10,'V26.29XA ','Unspecified rider of other motorcycle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172636,10,'V26.29XD ','Unspecified rider of other motorcycle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172637,10,'V26.29XS ','Unspecified rider of other motorcycle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172638,10,'V26.31XA ','Person boarding or alighting an electric (assisted) bicycle injured in collision with other nonmotor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(172639,10,'V26.31XD ','Person boarding or alighting an electric (assisted) bicycle injured in collision with other nonmotor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(172640,10,'V26.31XS ','Person boarding or alighting an electric (assisted) bicycle injured in collision with other nonmotor vehicle, sequela','Y','0000-00-00 00:00:00'),(172641,10,'V26.39XA ','Person boarding or alighting other motorcycle injured in collision with other nonmotor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(172642,10,'V26.39XD ','Person boarding or alighting other motorcycle injured in collision with other nonmotor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(172643,10,'V26.39XS ','Person boarding or alighting other motorcycle injured in collision with other nonmotor vehicle, sequela','Y','0000-00-00 00:00:00'),(172644,10,'V26.41XA ','Electric (assisted) bicycle driver injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172645,10,'V26.41XD ','Electric (assisted) bicycle driver injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172646,10,'V26.41XS ','Electric (assisted) bicycle driver injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172647,10,'V26.49XA ','Other motorcycle driver injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172648,10,'V26.49XD ','Other motorcycle driver injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172649,10,'V26.49XS ','Other motorcycle driver injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172650,10,'V26.51XA ','Electric (assisted) bicycle passenger injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172651,10,'V26.51XD ','Electric (assisted) bicycle passenger injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172652,10,'V26.51XS ','Electric (assisted) bicycle passenger injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172653,10,'V26.59XA ','Other motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172654,10,'V26.59XD ','Other motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172655,10,'V26.59XS ','Other motorcycle passenger injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172656,10,'V26.91XA ','Unspecified electric (assisted) bicycle rider injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172657,10,'V26.91XD ','Unspecified electric (assisted) bicycle rider injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172658,10,'V26.91XS ','Unspecified electric (assisted) bicycle rider injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172659,10,'V26.99XA ','Unspecified rider of other motorcycle injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172660,10,'V26.99XD ','Unspecified rider of other motorcycle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172661,10,'V26.99XS ','Unspecified rider of other motorcycle injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172662,10,'V27.01XA ','Electric (assisted) bicycle driver injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172663,10,'V27.01XD ','Electric (assisted) bicycle driver injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172664,10,'V27.01XS ','Electric (assisted) bicycle driver injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172665,10,'V27.09XA ','Other motorcycle driver injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172666,10,'V27.09XD ','Other motorcycle driver injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172667,10,'V27.09XS ','Other motorcycle driver injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172668,10,'V27.11XA ','Electric (assisted) bicycle passenger injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172669,10,'V27.11XD ','Electric (assisted) bicycle passenger injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172670,10,'V27.11XS ','Electric (assisted) bicycle passenger injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172671,10,'V27.19XA ','Other motorcycle passenger injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172672,10,'V27.19XD ','Other motorcycle passenger injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172673,10,'V27.19XS ','Other motorcycle passenger injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172674,10,'V27.21XA ','Unspecified electric (assisted) bicycle rider injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172675,10,'V27.21XD ','Unspecified electric (assisted) bicycle rider injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172676,10,'V27.21XS ','Unspecified electric (assisted) bicycle rider injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172677,10,'V27.29XA ','Unspecified rider of other motorcycle injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172678,10,'V27.29XD ','Unspecified rider of other motorcycle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172679,10,'V27.29XS ','Unspecified rider of other motorcycle injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172680,10,'V27.31XA ','Person boarding or alighting an electric (assisted) bicycle injured in collision with fixed or stationary object, initial encounter','Y','0000-00-00 00:00:00'),(172681,10,'V27.31XD ','Person boarding or alighting an electric (assisted) bicycle injured in collision with fixed or stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(172682,10,'V27.31XS ','Person boarding or alighting an electric (assisted) bicycle injured in collision with fixed or stationary object, sequela','Y','0000-00-00 00:00:00'),(172683,10,'V27.39XA ','Person boarding or alighting other motorcycle injured in collision with fixed or stationary object, initial encounter','Y','0000-00-00 00:00:00'),(172684,10,'V27.39XD ','Person boarding or alighting other motorcycle injured in collision with fixed or stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(172685,10,'V27.39XS ','Person boarding or alighting other motorcycle injured in collision with fixed or stationary object, sequela','Y','0000-00-00 00:00:00'),(172686,10,'V27.41XA ','Electric (assisted) bicycle driver injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172687,10,'V27.41XD ','Electric (assisted) bicycle driver injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172688,10,'V27.41XS ','Electric (assisted) bicycle driver injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172689,10,'V27.49XA ','Other motorcycle driver injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172690,10,'V27.49XD ','Other motorcycle driver injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172691,10,'V27.49XS ','Other motorcycle driver injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172692,10,'V27.51XA ','Electric (assisted) bicycle passenger injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172693,10,'V27.51XD ','Electric (assisted) bicycle passenger injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172694,10,'V27.51XS ','Electric (assisted) bicycle passenger injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172695,10,'V27.59XA ','Other motorcycle passenger injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172696,10,'V27.59XD ','Other motorcycle passenger injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172697,10,'V27.59XS ','Other motorcycle passenger injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172698,10,'V27.91XA ','Unspecified electric (assisted) bicycle rider injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172699,10,'V27.91XD ','Unspecified electric (assisted) bicycle rider injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172700,10,'V27.91XS ','Unspecified electric (assisted) bicycle rider injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172701,10,'V27.99XA ','Unspecified rider of other motorcycle injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172702,10,'V27.99XD ','Unspecified rider of other motorcycle injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172703,10,'V27.99XS ','Unspecified rider of other motorcycle injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172704,10,'V28.01XA ','Electric (assisted) bicycle driver injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172705,10,'V28.01XD ','Electric (assisted) bicycle driver injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172706,10,'V28.01XS ','Electric (assisted) bicycle driver injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172707,10,'V28.09XA ','Other motorcycle driver injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172708,10,'V28.09XD ','Other motorcycle driver injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172709,10,'V28.09XS ','Other motorcycle driver injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172710,10,'V28.11XA ','Electric (assisted) bicycle passenger injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172711,10,'V28.11XD ','Electric (assisted) bicycle passenger injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172712,10,'V28.11XS ','Electric (assisted) bicycle passenger injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172713,10,'V28.19XA ','Other motorcycle passenger injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172714,10,'V28.19XD ','Other motorcycle passenger injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172715,10,'V28.19XS ','Other motorcycle passenger injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172716,10,'V28.21XA ','Unspecified electric (assisted) bicycle rider injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172717,10,'V28.21XD ','Unspecified electric (assisted) bicycle rider injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172718,10,'V28.21XS ','Unspecified electric (assisted) bicycle rider injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172719,10,'V28.29XA ','Unspecified rider of other motorcycle injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172720,10,'V28.29XD ','Unspecified rider of other motorcycle injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172721,10,'V28.29XS ','Unspecified rider of other motorcycle injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172722,10,'V28.31XA ','Person boarding or alighting an electric (assisted) bicycle injured in noncollision transport accident, initial encounter','Y','0000-00-00 00:00:00'),(172723,10,'V28.31XD ','Person boarding or alighting an electric (assisted) bicycle injured in noncollision transport accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172724,10,'V28.31XS ','Person boarding or alighting an electric (assisted) bicycle injured in noncollision transport accident, sequela','Y','0000-00-00 00:00:00'),(172725,10,'V28.39XA ','Person boarding or alighting other motorcycle injured in noncollision transport accident, initial encounter','Y','0000-00-00 00:00:00'),(172726,10,'V28.39XD ','Person boarding or alighting other motorcycle injured in noncollision transport accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172727,10,'V28.39XS ','Person boarding or alighting other motorcycle injured in noncollision transport accident, sequela','Y','0000-00-00 00:00:00'),(172728,10,'V28.41XA ','Electric (assisted) bicycle driver injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172729,10,'V28.41XD ','Electric (assisted) bicycle driver injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172730,10,'V28.41XS ','Electric (assisted) bicycle driver injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172731,10,'V28.49XA ','Other motorcycle driver injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172732,10,'V28.49XD ','Other motorcycle driver injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172733,10,'V28.49XS ','Other motorcycle driver injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172734,10,'V28.51XA ','Electric (assisted) bicycle passenger injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172735,10,'V28.51XD ','Electric (assisted) bicycle passenger injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172736,10,'V28.51XS ','Electric (assisted) bicycle passenger injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172737,10,'V28.59XA ','Other motorcycle passenger injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172738,10,'V28.59XD ','Other motorcycle passenger injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172739,10,'V28.59XS ','Other motorcycle passenger injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172740,10,'V28.91XA ','Unspecified electric (assisted) bicycle rider injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172741,10,'V28.91XD ','Unspecified electric (assisted) bicycle rider injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172742,10,'V28.91XS ','Unspecified electric (assisted) bicycle rider injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172743,10,'V28.99XA ','Unspecified rider of other motorcycle injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172744,10,'V28.99XD ','Unspecified rider of other motorcycle injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172745,10,'V28.99XS ','Unspecified rider of other motorcycle injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172746,10,'V29.001A ','Electric (assisted) bicycle driver injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172747,10,'V29.001D ','Electric (assisted) bicycle driver injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172748,10,'V29.001S ','Electric (assisted) bicycle driver injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172749,10,'V29.008A ','Other motorcycle driver injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172750,10,'V29.008D ','Other motorcycle driver injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172751,10,'V29.008S ','Other motorcycle driver injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172752,10,'V29.091A ','Electric (assisted) bicycle driver injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172753,10,'V29.091D ','Electric (assisted) bicycle driver injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172754,10,'V29.091S ','Electric (assisted) bicycle driver injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172755,10,'V29.098A ','Other motorcycle driver injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172756,10,'V29.098D ','Other motorcycle driver injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172757,10,'V29.098S ','Other motorcycle driver injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172758,10,'V29.101A ','Electric (assisted) bicycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172759,10,'V29.101D ','Electric (assisted) bicycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172760,10,'V29.101S ','Electric (assisted) bicycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172761,10,'V29.108A ','Other motorcycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172762,10,'V29.108D ','Other motorcycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172763,10,'V29.108S ','Other motorcycle passenger injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172764,10,'V29.191A ','Electric (assisted) bicycle passenger injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172765,10,'V29.191D ','Electric (assisted) bicycle passenger injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172766,10,'V29.191S ','Electric (assisted) bicycle passenger injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172767,10,'V29.198A ','Other motorcycle passenger injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172768,10,'V29.198D ','Other motorcycle passenger injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172769,10,'V29.198S ','Other motorcycle passenger injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172770,10,'V29.201A ','Unspecified electric (assisted) bicycle rider injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172771,10,'V29.201D ','Unspecified electric (assisted) bicycle rider injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172772,10,'V29.201S ','Unspecified electric (assisted) bicycle rider injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172773,10,'V29.208A ','Unspecified rider of other motorcycle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172774,10,'V29.208D ','Unspecified rider of other motorcycle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172775,10,'V29.208S ','Unspecified rider of other motorcycle injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172776,10,'V29.291A ','Unspecified electric (assisted) bicycle rider injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172777,10,'V29.291D ','Unspecified electric (assisted) bicycle rider injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172778,10,'V29.291S ','Unspecified electric (assisted) bicycle rider injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172779,10,'V29.298A ','Unspecified rider of other motorcycle injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172780,10,'V29.298D ','Unspecified rider of other motorcycle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172781,10,'V29.298S ','Unspecified rider of other motorcycle injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172782,10,'V29.31XA ','Electric (assisted) bicycle (driver) (passenger) injured in unspecified nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172783,10,'V29.31XD ','Electric (assisted) bicycle (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172784,10,'V29.31XS ','Electric (assisted) bicycle (driver) (passenger) injured in unspecified nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172785,10,'V29.39XA ','Other motorcycle (driver) (passenger) injured in unspecified nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172786,10,'V29.39XD ','Other motorcycle (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172787,10,'V29.39XS ','Other motorcycle (driver) (passenger) injured in unspecified nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172788,10,'V29.401A ','Electric (assisted) bicycle driver injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172789,10,'V29.401D ','Electric (assisted) bicycle driver injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172790,10,'V29.401S ','Electric (assisted) bicycle driver injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172791,10,'V29.408A ','Other motorcycle driver injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172792,10,'V29.408D ','Other motorcycle driver injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172793,10,'V29.408S ','Other motorcycle driver injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172794,10,'V29.491A ','Electric (assisted) bicycle driver injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172795,10,'V29.491D ','Electric (assisted) bicycle driver injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172796,10,'V29.491S ','Electric (assisted) bicycle driver injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172797,10,'V29.498A ','Other motorcycle driver injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172798,10,'V29.498D ','Other motorcycle driver injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172799,10,'V29.498S ','Other motorcycle driver injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172800,10,'V29.501A ','Electric (assisted) bicycle passenger injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172801,10,'V29.501D ','Electric (assisted) bicycle passenger injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172802,10,'V29.501S ','Electric (assisted) bicycle passenger injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172803,10,'V29.508A ','Other motorcycle passenger injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172804,10,'V29.508D ','Other motorcycle passenger injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172805,10,'V29.508S ','Other motorcycle passenger injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172806,10,'V29.591A ','Electric (assisted) bicycle passenger injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172807,10,'V29.591D ','Electric (assisted) bicycle passenger injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172808,10,'V29.591S ','Electric (assisted) bicycle passenger injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172809,10,'V29.598A ','Other motorcycle passenger injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172810,10,'V29.598D ','Other motorcycle passenger injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172811,10,'V29.598S ','Other motorcycle passenger injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172812,10,'V29.601A ','Unspecified electric (assisted) bicycle rider injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172813,10,'V29.601D ','Unspecified electric (assisted) bicycle rider injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172814,10,'V29.601S ','Unspecified electric (assisted) bicycle rider injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172815,10,'V29.608A ','Unspecified rider of other motorcycle injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172816,10,'V29.608D ','Unspecified rider of other motorcycle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172817,10,'V29.608S ','Unspecified rider of other motorcycle injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172818,10,'V29.691A ','Unspecified electric (assisted) bicycle rider injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172819,10,'V29.691D ','Unspecified electric (assisted) bicycle rider injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172820,10,'V29.691S ','Unspecified electric (assisted) bicycle rider injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172821,10,'V29.698A ','Unspecified rider of other motorcycle injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172822,10,'V29.698D ','Unspecified rider of other motorcycle injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172823,10,'V29.698S ','Unspecified rider of other motorcycle injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172824,10,'V29.811A ','Electric (assisted) bicycle rider (driver) (passenger) injured in transport accident with military vehicle, initial encounter','Y','0000-00-00 00:00:00'),(172825,10,'V29.811D ','Electric (assisted) bicycle rider (driver) (passenger) injured in transport accident with military vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(172826,10,'V29.811S ','Electric (assisted) bicycle rider (driver) (passenger) injured in transport accident with military vehicle, sequela','Y','0000-00-00 00:00:00'),(172827,10,'V29.818A ','Rider (driver) (passenger) of other motorcycle injured in transport accident with military vehicle, initial encounter','Y','0000-00-00 00:00:00'),(172828,10,'V29.818D ','Rider (driver) (passenger) of other motorcycle injured in transport accident with military vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(172829,10,'V29.818S ','Rider (driver) (passenger) of other motorcycle injured in transport accident with military vehicle, sequela','Y','0000-00-00 00:00:00'),(172830,10,'V29.881A ','Electric (assisted) bicycle rider (driver) (passenger) injured in other specified transport accidents, initial encounter','Y','0000-00-00 00:00:00'),(172831,10,'V29.881D ','Electric (assisted) bicycle rider (driver) (passenger) injured in other specified transport accidents, subsequent encounter','Y','0000-00-00 00:00:00'),(172832,10,'V29.881S ','Electric (assisted) bicycle rider (driver) (passenger) injured in other specified transport accidents, sequela','Y','0000-00-00 00:00:00'),(172833,10,'V29.888A ','Rider (driver) (passenger) of other motorcycle injured in other specified transport accidents, initial encounter','Y','0000-00-00 00:00:00'),(172834,10,'V29.888D ','Rider (driver) (passenger) of other motorcycle injured in other specified transport accidents, subsequent encounter','Y','0000-00-00 00:00:00'),(172835,10,'V29.888S ','Rider (driver) (passenger) of other motorcycle injured in other specified transport accidents, sequela','Y','0000-00-00 00:00:00'),(172836,10,'V29.91XA ','Electric (assisted) bicycle rider (driver) (passenger) injured in unspecified traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172837,10,'V29.91XD ','Electric (assisted) bicycle rider (driver) (passenger) injured in unspecified traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172838,10,'V29.91XS ','Electric (assisted) bicycle rider (driver) (passenger) injured in unspecified traffic accident, sequela','Y','0000-00-00 00:00:00'),(172839,10,'V29.99XA ','Rider (driver) (passenger) of other motorcycle injured in unspecified traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172840,10,'V29.99XD ','Rider (driver) (passenger) of other motorcycle injured in unspecified traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172841,10,'V29.99XS ','Rider (driver) (passenger) of other motorcycle injured in unspecified traffic accident, sequela','Y','0000-00-00 00:00:00'),(172842,10,'V30.0XXA ','Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172843,10,'V30.0XXD ','Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172844,10,'V30.0XXS ','Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172845,10,'V30.1XXA ','Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172846,10,'V30.1XXD ','Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172847,10,'V30.1XXS ','Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172848,10,'V30.2XXA ','Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172849,10,'V30.2XXD ','Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172850,10,'V30.2XXS ','Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172851,10,'V30.3XXA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172852,10,'V30.3XXD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172853,10,'V30.3XXS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172854,10,'V30.4XXA ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedestrian or animal, initial encounter','Y','0000-00-00 00:00:00'),(172855,10,'V30.4XXD ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedestrian or animal, subsequent encounter','Y','0000-00-00 00:00:00'),(172856,10,'V30.4XXS ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedestrian or animal, sequela','Y','0000-00-00 00:00:00'),(172857,10,'V30.5XXA ','Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172858,10,'V30.5XXD ','Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172859,10,'V30.5XXS ','Driver of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172860,10,'V30.6XXA ','Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172861,10,'V30.6XXD ','Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172862,10,'V30.6XXS ','Passenger in three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172863,10,'V30.7XXA ','Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172864,10,'V30.7XXD ','Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172865,10,'V30.7XXS ','Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172866,10,'V30.9XXA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172867,10,'V30.9XXD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172868,10,'V30.9XXS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172869,10,'V31.0XXA ','Driver of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172870,10,'V31.0XXD ','Driver of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172871,10,'V31.0XXS ','Driver of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172872,10,'V31.1XXA ','Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172873,10,'V31.1XXD ','Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172874,10,'V31.1XXS ','Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172875,10,'V31.2XXA ','Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172876,10,'V31.2XXD ','Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172877,10,'V31.2XXS ','Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172878,10,'V31.3XXA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172879,10,'V31.3XXD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172880,10,'V31.3XXS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172881,10,'V31.4XXA ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedal cycle, initial encounter','Y','0000-00-00 00:00:00'),(172882,10,'V31.4XXD ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedal cycle, subsequent encounter','Y','0000-00-00 00:00:00'),(172883,10,'V31.4XXS ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with pedal cycle, sequela','Y','0000-00-00 00:00:00'),(172884,10,'V31.5XXA ','Driver of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172885,10,'V31.5XXD ','Driver of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172886,10,'V31.5XXS ','Driver of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172887,10,'V31.6XXA ','Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172888,10,'V31.6XXD ','Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172889,10,'V31.6XXS ','Passenger in three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172890,10,'V31.7XXA ','Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172891,10,'V31.7XXD ','Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172892,10,'V31.7XXS ','Person on outside of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172893,10,'V31.9XXA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172894,10,'V31.9XXD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172895,10,'V31.9XXS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172896,10,'V32.0XXA ','Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172897,10,'V32.0XXD ','Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172898,10,'V32.0XXS ','Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172899,10,'V32.1XXA ','Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172900,10,'V32.1XXD ','Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172901,10,'V32.1XXS ','Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172902,10,'V32.2XXA ','Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172903,10,'V32.2XXD ','Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172904,10,'V32.2XXS ','Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172905,10,'V32.3XXA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172906,10,'V32.3XXD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172907,10,'V32.3XXS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172908,10,'V32.4XXA ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(172909,10,'V32.4XXD ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(172910,10,'V32.4XXS ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle, sequela','Y','0000-00-00 00:00:00'),(172911,10,'V32.5XXA ','Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172912,10,'V32.5XXD ','Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172913,10,'V32.5XXS ','Driver of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172914,10,'V32.6XXA ','Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172915,10,'V32.6XXD ','Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172916,10,'V32.6XXS ','Passenger in three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172917,10,'V32.7XXA ','Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172918,10,'V32.7XXD ','Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172919,10,'V32.7XXS ','Person on outside of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172920,10,'V32.9XXA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172921,10,'V32.9XXD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172922,10,'V32.9XXS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172923,10,'V33.0XXA ','Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172924,10,'V33.0XXD ','Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172925,10,'V33.0XXS ','Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172926,10,'V33.1XXA ','Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172927,10,'V33.1XXD ','Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172928,10,'V33.1XXS ','Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172929,10,'V33.2XXA ','Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172930,10,'V33.2XXD ','Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172931,10,'V33.2XXS ','Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172932,10,'V33.3XXA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172933,10,'V33.3XXD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172934,10,'V33.3XXS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172935,10,'V33.4XXA ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with car, pick-up truck or van, initial encounter','Y','0000-00-00 00:00:00'),(172936,10,'V33.4XXD ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with car, pick-up truck or van, subsequent encounter','Y','0000-00-00 00:00:00'),(172937,10,'V33.4XXS ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with car, pick-up truck or van, sequela','Y','0000-00-00 00:00:00'),(172938,10,'V33.5XXA ','Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172939,10,'V33.5XXD ','Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172940,10,'V33.5XXS ','Driver of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172941,10,'V33.6XXA ','Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172942,10,'V33.6XXD ','Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172943,10,'V33.6XXS ','Passenger in three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172944,10,'V33.7XXA ','Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172945,10,'V33.7XXD ','Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172946,10,'V33.7XXS ','Person on outside of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172947,10,'V33.9XXA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172948,10,'V33.9XXD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172949,10,'V33.9XXS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172950,10,'V34.0XXA ','Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172951,10,'V34.0XXD ','Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172952,10,'V34.0XXS ','Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172953,10,'V34.1XXA ','Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172954,10,'V34.1XXD ','Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172955,10,'V34.1XXS ','Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172956,10,'V34.2XXA ','Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172957,10,'V34.2XXD ','Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172958,10,'V34.2XXS ','Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172959,10,'V34.3XXA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172960,10,'V34.3XXD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172961,10,'V34.3XXS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172962,10,'V34.4XXA ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus, initial encounter','Y','0000-00-00 00:00:00'),(172963,10,'V34.4XXD ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus, subsequent encounter','Y','0000-00-00 00:00:00'),(172964,10,'V34.4XXS ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus, sequela','Y','0000-00-00 00:00:00'),(172965,10,'V34.5XXA ','Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172966,10,'V34.5XXD ','Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172967,10,'V34.5XXS ','Driver of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172968,10,'V34.6XXA ','Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172969,10,'V34.6XXD ','Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172970,10,'V34.6XXS ','Passenger in three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172971,10,'V34.7XXA ','Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172972,10,'V34.7XXD ','Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172973,10,'V34.7XXS ','Person on outside of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172974,10,'V34.9XXA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172975,10,'V34.9XXD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172976,10,'V34.9XXS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172977,10,'V35.0XXA ','Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172978,10,'V35.0XXD ','Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172979,10,'V35.0XXS ','Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172980,10,'V35.1XXA ','Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172981,10,'V35.1XXD ','Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172982,10,'V35.1XXS ','Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172983,10,'V35.2XXA ','Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172984,10,'V35.2XXD ','Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172985,10,'V35.2XXS ','Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172986,10,'V35.3XXA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172987,10,'V35.3XXD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172988,10,'V35.3XXS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(172989,10,'V35.4XXA ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with railway train or railway vehicle, initial encounter','Y','0000-00-00 00:00:00'),(172990,10,'V35.4XXD ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with railway train or railway vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(172991,10,'V35.4XXS ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with railway train or railway vehicle, sequela','Y','0000-00-00 00:00:00'),(172992,10,'V35.5XXA ','Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172993,10,'V35.5XXD ','Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172994,10,'V35.5XXS ','Driver of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172995,10,'V35.6XXA ','Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172996,10,'V35.6XXD ','Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(172997,10,'V35.6XXS ','Passenger in three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(172998,10,'V35.7XXA ','Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(172999,10,'V35.7XXD ','Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173000,10,'V35.7XXS ','Person on outside of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173001,10,'V35.9XXA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173002,10,'V35.9XXD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173003,10,'V35.9XXS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173004,10,'V36.0XXA ','Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173005,10,'V36.0XXD ','Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173006,10,'V36.0XXS ','Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173007,10,'V36.1XXA ','Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173008,10,'V36.1XXD ','Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173009,10,'V36.1XXS ','Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173010,10,'V36.2XXA ','Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173011,10,'V36.2XXD ','Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173012,10,'V36.2XXS ','Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173013,10,'V36.3XXA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173014,10,'V36.3XXD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173015,10,'V36.3XXS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173016,10,'V36.4XXA ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with other nonmotor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(173017,10,'V36.4XXD ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with other nonmotor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(173018,10,'V36.4XXS ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with other nonmotor vehicle, sequela','Y','0000-00-00 00:00:00'),(173019,10,'V36.5XXA ','Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173020,10,'V36.5XXD ','Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173021,10,'V36.5XXS ','Driver of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173022,10,'V36.6XXA ','Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173023,10,'V36.6XXD ','Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173024,10,'V36.6XXS ','Passenger in three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173025,10,'V36.7XXA ','Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173026,10,'V36.7XXD ','Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173027,10,'V36.7XXS ','Person on outside of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173028,10,'V36.9XXA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173029,10,'V36.9XXD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173030,10,'V36.9XXS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173031,10,'V37.0XXA ','Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173032,10,'V37.0XXD ','Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173033,10,'V37.0XXS ','Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173034,10,'V37.1XXA ','Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173035,10,'V37.1XXD ','Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173036,10,'V37.1XXS ','Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173037,10,'V37.2XXA ','Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173038,10,'V37.2XXD ','Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173039,10,'V37.2XXS ','Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173040,10,'V37.3XXA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173041,10,'V37.3XXD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173042,10,'V37.3XXS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173043,10,'V37.4XXA ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with fixed or stationary object, initial encounter','Y','0000-00-00 00:00:00'),(173044,10,'V37.4XXD ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with fixed or stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(173045,10,'V37.4XXS ','Person boarding or alighting a three-wheeled motor vehicle injured in collision with fixed or stationary object, sequela','Y','0000-00-00 00:00:00'),(173046,10,'V37.5XXA ','Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173047,10,'V37.5XXD ','Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173048,10,'V37.5XXS ','Driver of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173049,10,'V37.6XXA ','Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173050,10,'V37.6XXD ','Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173051,10,'V37.6XXS ','Passenger in three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173052,10,'V37.7XXA ','Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173053,10,'V37.7XXD ','Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173054,10,'V37.7XXS ','Person on outside of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173055,10,'V37.9XXA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173056,10,'V37.9XXD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173057,10,'V37.9XXS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173058,10,'V38.0XXA ','Driver of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173059,10,'V38.0XXD ','Driver of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173060,10,'V38.0XXS ','Driver of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173061,10,'V38.1XXA ','Passenger in three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173062,10,'V38.1XXD ','Passenger in three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173063,10,'V38.1XXS ','Passenger in three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173064,10,'V38.2XXA ','Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173065,10,'V38.2XXD ','Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173066,10,'V38.2XXS ','Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173067,10,'V38.3XXA ','Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173068,10,'V38.3XXD ','Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173069,10,'V38.3XXS ','Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173070,10,'V38.4XXA ','Person boarding or alighting a three-wheeled motor vehicle injured in noncollision transport accident, initial encounter','Y','0000-00-00 00:00:00'),(173071,10,'V38.4XXD ','Person boarding or alighting a three-wheeled motor vehicle injured in noncollision transport accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173072,10,'V38.4XXS ','Person boarding or alighting a three-wheeled motor vehicle injured in noncollision transport accident, sequela','Y','0000-00-00 00:00:00'),(173073,10,'V38.5XXA ','Driver of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173074,10,'V38.5XXD ','Driver of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173075,10,'V38.5XXS ','Driver of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173076,10,'V38.6XXA ','Passenger in three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173077,10,'V38.6XXD ','Passenger in three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173078,10,'V38.6XXS ','Passenger in three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173079,10,'V38.7XXA ','Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173080,10,'V38.7XXD ','Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173081,10,'V38.7XXS ','Person on outside of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173082,10,'V38.9XXA ','Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173083,10,'V38.9XXD ','Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173084,10,'V38.9XXS ','Unspecified occupant of three-wheeled motor vehicle injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173085,10,'V39.00XA ','Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173086,10,'V39.00XD ','Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173087,10,'V39.00XS ','Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173088,10,'V39.09XA ','Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173089,10,'V39.09XD ','Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173090,10,'V39.09XS ','Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173091,10,'V39.10XA ','Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173092,10,'V39.10XD ','Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173093,10,'V39.10XS ','Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173094,10,'V39.19XA ','Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173095,10,'V39.19XD ','Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173096,10,'V39.19XS ','Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173097,10,'V39.20XA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173098,10,'V39.20XD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173099,10,'V39.20XS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173100,10,'V39.29XA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173101,10,'V39.29XD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173102,10,'V39.29XS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173103,10,'V39.3XXA ','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173104,10,'V39.3XXD ','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173105,10,'V39.3XXS ','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173106,10,'V39.40XA ','Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173107,10,'V39.40XD ','Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173108,10,'V39.40XS ','Driver of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173109,10,'V39.49XA ','Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173110,10,'V39.49XD ','Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173111,10,'V39.49XS ','Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173112,10,'V39.50XA ','Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173113,10,'V39.50XD ','Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173114,10,'V39.50XS ','Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173115,10,'V39.59XA ','Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173116,10,'V39.59XD ','Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173117,10,'V39.59XS ','Passenger in three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173118,10,'V39.60XA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173119,10,'V39.60XD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173120,10,'V39.60XS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173121,10,'V39.69XA ','Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173122,10,'V39.69XD ','Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173123,10,'V39.69XS ','Unspecified occupant of three-wheeled motor vehicle injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173124,10,'V39.81XA ','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in transport accident with military vehicle, initial encounter','Y','0000-00-00 00:00:00'),(173125,10,'V39.81XD ','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in transport accident with military vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(173126,10,'V39.81XS ','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in transport accident with military vehicle, sequela','Y','0000-00-00 00:00:00'),(173127,10,'V39.89XA ','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in other specified transport accidents, initial encounter','Y','0000-00-00 00:00:00'),(173128,10,'V39.89XD ','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in other specified transport accidents, subsequent encounter','Y','0000-00-00 00:00:00'),(173129,10,'V39.89XS ','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in other specified transport accidents, sequela','Y','0000-00-00 00:00:00'),(173130,10,'V39.9XXA ','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173131,10,'V39.9XXD ','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173132,10,'V39.9XXS ','Occupant (driver) (passenger) of three-wheeled motor vehicle injured in unspecified traffic accident, sequela','Y','0000-00-00 00:00:00'),(173133,10,'V40.0XXA ','Car driver injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173134,10,'V40.0XXD ','Car driver injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173135,10,'V40.0XXS ','Car driver injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173136,10,'V40.1XXA ','Car passenger injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173137,10,'V40.1XXD ','Car passenger injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173138,10,'V40.1XXS ','Car passenger injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173139,10,'V40.2XXA ','Person on outside of car injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173140,10,'V40.2XXD ','Person on outside of car injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173141,10,'V40.2XXS ','Person on outside of car injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173142,10,'V40.3XXA ','Unspecified car occupant injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173143,10,'V40.3XXD ','Unspecified car occupant injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173144,10,'V40.3XXS ','Unspecified car occupant injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173145,10,'V40.4XXA ','Person boarding or alighting a car injured in collision with pedestrian or animal, initial encounter','Y','0000-00-00 00:00:00'),(173146,10,'V40.4XXD ','Person boarding or alighting a car injured in collision with pedestrian or animal, subsequent encounter','Y','0000-00-00 00:00:00'),(173147,10,'V40.4XXS ','Person boarding or alighting a car injured in collision with pedestrian or animal, sequela','Y','0000-00-00 00:00:00'),(173148,10,'V40.5XXA ','Car driver injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173149,10,'V40.5XXD ','Car driver injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173150,10,'V40.5XXS ','Car driver injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173151,10,'V40.6XXA ','Car passenger injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173152,10,'V40.6XXD ','Car passenger injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173153,10,'V40.6XXS ','Car passenger injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173154,10,'V40.7XXA ','Person on outside of car injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173155,10,'V40.7XXD ','Person on outside of car injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173156,10,'V40.7XXS ','Person on outside of car injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173157,10,'V40.9XXA ','Unspecified car occupant injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173158,10,'V40.9XXD ','Unspecified car occupant injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173159,10,'V40.9XXS ','Unspecified car occupant injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173160,10,'V41.0XXA ','Car driver injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173161,10,'V41.0XXD ','Car driver injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173162,10,'V41.0XXS ','Car driver injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173163,10,'V41.1XXA ','Car passenger injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173164,10,'V41.1XXD ','Car passenger injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173165,10,'V41.1XXS ','Car passenger injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173166,10,'V41.2XXA ','Person on outside of car injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173167,10,'V41.2XXD ','Person on outside of car injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173168,10,'V41.2XXS ','Person on outside of car injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173169,10,'V41.3XXA ','Unspecified car occupant injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173170,10,'V41.3XXD ','Unspecified car occupant injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173171,10,'V41.3XXS ','Unspecified car occupant injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173172,10,'V41.4XXA ','Person boarding or alighting a car injured in collision with pedal cycle, initial encounter','Y','0000-00-00 00:00:00'),(173173,10,'V41.4XXD ','Person boarding or alighting a car injured in collision with pedal cycle, subsequent encounter','Y','0000-00-00 00:00:00'),(173174,10,'V41.4XXS ','Person boarding or alighting a car injured in collision with pedal cycle, sequela','Y','0000-00-00 00:00:00'),(173175,10,'V41.5XXA ','Car driver injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173176,10,'V41.5XXD ','Car driver injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173177,10,'V41.5XXS ','Car driver injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173178,10,'V41.6XXA ','Car passenger injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173179,10,'V41.6XXD ','Car passenger injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173180,10,'V41.6XXS ','Car passenger injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173181,10,'V41.7XXA ','Person on outside of car injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173182,10,'V41.7XXD ','Person on outside of car injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173183,10,'V41.7XXS ','Person on outside of car injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173184,10,'V41.9XXA ','Unspecified car occupant injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173185,10,'V41.9XXD ','Unspecified car occupant injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173186,10,'V41.9XXS ','Unspecified car occupant injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173187,10,'V42.0XXA ','Car driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173188,10,'V42.0XXD ','Car driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173189,10,'V42.0XXS ','Car driver injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173190,10,'V42.1XXA ','Car passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173191,10,'V42.1XXD ','Car passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173192,10,'V42.1XXS ','Car passenger injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173193,10,'V42.2XXA ','Person on outside of car injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173194,10,'V42.2XXD ','Person on outside of car injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173195,10,'V42.2XXS ','Person on outside of car injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173196,10,'V42.3XXA ','Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173197,10,'V42.3XXD ','Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173198,10,'V42.3XXS ','Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173199,10,'V42.4XXA ','Person boarding or alighting a car injured in collision with two- or three-wheeled motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(173200,10,'V42.4XXD ','Person boarding or alighting a car injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(173201,10,'V42.4XXS ','Person boarding or alighting a car injured in collision with two- or three-wheeled motor vehicle, sequela','Y','0000-00-00 00:00:00'),(173202,10,'V42.5XXA ','Car driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173203,10,'V42.5XXD ','Car driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173204,10,'V42.5XXS ','Car driver injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173205,10,'V42.6XXA ','Car passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173206,10,'V42.6XXD ','Car passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173207,10,'V42.6XXS ','Car passenger injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173208,10,'V42.7XXA ','Person on outside of car injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173209,10,'V42.7XXD ','Person on outside of car injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173210,10,'V42.7XXS ','Person on outside of car injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173211,10,'V42.9XXA ','Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173212,10,'V42.9XXD ','Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173213,10,'V42.9XXS ','Unspecified car occupant injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173214,10,'V43.01XA ','Car driver injured in collision with sport utility vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173215,10,'V43.01XD ','Car driver injured in collision with sport utility vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173216,10,'V43.01XS ','Car driver injured in collision with sport utility vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173217,10,'V43.02XA ','Car driver injured in collision with other type car in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173218,10,'V43.02XD ','Car driver injured in collision with other type car in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173219,10,'V43.02XS ','Car driver injured in collision with other type car in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173220,10,'V43.03XA ','Car driver injured in collision with pick-up truck in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173221,10,'V43.03XD ','Car driver injured in collision with pick-up truck in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173222,10,'V43.03XS ','Car driver injured in collision with pick-up truck in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173223,10,'V43.04XA ','Car driver injured in collision with van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173224,10,'V43.04XD ','Car driver injured in collision with van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173225,10,'V43.04XS ','Car driver injured in collision with van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173226,10,'V43.11XA ','Car passenger injured in collision with sport utility vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173227,10,'V43.11XD ','Car passenger injured in collision with sport utility vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173228,10,'V43.11XS ','Car passenger injured in collision with sport utility vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173229,10,'V43.12XA ','Car passenger injured in collision with other type car in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173230,10,'V43.12XD ','Car passenger injured in collision with other type car in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173231,10,'V43.12XS ','Car passenger injured in collision with other type car in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173232,10,'V43.13XA ','Car passenger injured in collision with pick-up truck in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173233,10,'V43.13XD ','Car passenger injured in collision with pick-up truck in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173234,10,'V43.13XS ','Car passenger injured in collision with pick-up truck in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173235,10,'V43.14XA ','Car passenger injured in collision with van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173236,10,'V43.14XD ','Car passenger injured in collision with van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173237,10,'V43.14XS ','Car passenger injured in collision with van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173238,10,'V43.21XA ','Person on outside of car injured in collision with sport utility vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173239,10,'V43.21XD ','Person on outside of car injured in collision with sport utility vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173240,10,'V43.21XS ','Person on outside of car injured in collision with sport utility vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173241,10,'V43.22XA ','Person on outside of car injured in collision with other type car in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173242,10,'V43.22XD ','Person on outside of car injured in collision with other type car in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173243,10,'V43.22XS ','Person on outside of car injured in collision with other type car in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173244,10,'V43.23XA ','Person on outside of car injured in collision with pick-up truck in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173245,10,'V43.23XD ','Person on outside of car injured in collision with pick-up truck in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173246,10,'V43.23XS ','Person on outside of car injured in collision with pick-up truck in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173247,10,'V43.24XA ','Person on outside of car injured in collision with van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173248,10,'V43.24XD ','Person on outside of car injured in collision with van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173249,10,'V43.24XS ','Person on outside of car injured in collision with van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173250,10,'V43.31XA ','Unspecified car occupant injured in collision with sport utility vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173251,10,'V43.31XD ','Unspecified car occupant injured in collision with sport utility vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173252,10,'V43.31XS ','Unspecified car occupant injured in collision with sport utility vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173253,10,'V43.32XA ','Unspecified car occupant injured in collision with other type car in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173254,10,'V43.32XD ','Unspecified car occupant injured in collision with other type car in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173255,10,'V43.32XS ','Unspecified car occupant injured in collision with other type car in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173256,10,'V43.33XA ','Unspecified car occupant injured in collision with pick-up truck in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173257,10,'V43.33XD ','Unspecified car occupant injured in collision with pick-up truck in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173258,10,'V43.33XS ','Unspecified car occupant injured in collision with pick-up truck in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173259,10,'V43.34XA ','Unspecified car occupant injured in collision with van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173260,10,'V43.34XD ','Unspecified car occupant injured in collision with van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173261,10,'V43.34XS ','Unspecified car occupant injured in collision with van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173262,10,'V43.41XA ','Person boarding or alighting a car injured in collision with sport utility vehicle, initial encounter','Y','0000-00-00 00:00:00'),(173263,10,'V43.41XD ','Person boarding or alighting a car injured in collision with sport utility vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(173264,10,'V43.41XS ','Person boarding or alighting a car injured in collision with sport utility vehicle, sequela','Y','0000-00-00 00:00:00'),(173265,10,'V43.42XA ','Person boarding or alighting a car injured in collision with other type car, initial encounter','Y','0000-00-00 00:00:00'),(173266,10,'V43.42XD ','Person boarding or alighting a car injured in collision with other type car, subsequent encounter','Y','0000-00-00 00:00:00'),(173267,10,'V43.42XS ','Person boarding or alighting a car injured in collision with other type car, sequela','Y','0000-00-00 00:00:00'),(173268,10,'V43.43XA ','Person boarding or alighting a car injured in collision with pick-up truck, initial encounter','Y','0000-00-00 00:00:00'),(173269,10,'V43.43XD ','Person boarding or alighting a car injured in collision with pick-up truck, subsequent encounter','Y','0000-00-00 00:00:00'),(173270,10,'V43.43XS ','Person boarding or alighting a car injured in collision with pick-up truck, sequela','Y','0000-00-00 00:00:00'),(173271,10,'V43.44XA ','Person boarding or alighting a car injured in collision with van, initial encounter','Y','0000-00-00 00:00:00'),(173272,10,'V43.44XD ','Person boarding or alighting a car injured in collision with van, subsequent encounter','Y','0000-00-00 00:00:00'),(173273,10,'V43.44XS ','Person boarding or alighting a car injured in collision with van, sequela','Y','0000-00-00 00:00:00'),(173274,10,'V43.51XA ','Car driver injured in collision with sport utility vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173275,10,'V43.51XD ','Car driver injured in collision with sport utility vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173276,10,'V43.51XS ','Car driver injured in collision with sport utility vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173277,10,'V43.52XA ','Car driver injured in collision with other type car in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173278,10,'V43.52XD ','Car driver injured in collision with other type car in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173279,10,'V43.52XS ','Car driver injured in collision with other type car in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173280,10,'V43.53XA ','Car driver injured in collision with pick-up truck in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173281,10,'V43.53XD ','Car driver injured in collision with pick-up truck in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173282,10,'V43.53XS ','Car driver injured in collision with pick-up truck in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173283,10,'V43.54XA ','Car driver injured in collision with van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173284,10,'V43.54XD ','Car driver injured in collision with van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173285,10,'V43.54XS ','Car driver injured in collision with van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173286,10,'V43.61XA ','Car passenger injured in collision with sport utility vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173287,10,'V43.61XD ','Car passenger injured in collision with sport utility vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173288,10,'V43.61XS ','Car passenger injured in collision with sport utility vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173289,10,'V43.62XA ','Car passenger injured in collision with other type car in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173290,10,'V43.62XD ','Car passenger injured in collision with other type car in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173291,10,'V43.62XS ','Car passenger injured in collision with other type car in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173292,10,'V43.63XA ','Car passenger injured in collision with pick-up truck in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173293,10,'V43.63XD ','Car passenger injured in collision with pick-up truck in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173294,10,'V43.63XS ','Car passenger injured in collision with pick-up truck in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173295,10,'V43.64XA ','Car passenger injured in collision with van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173296,10,'V43.64XD ','Car passenger injured in collision with van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173297,10,'V43.64XS ','Car passenger injured in collision with van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173298,10,'V43.71XA ','Person on outside of car injured in collision with sport utility vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173299,10,'V43.71XD ','Person on outside of car injured in collision with sport utility vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173300,10,'V43.71XS ','Person on outside of car injured in collision with sport utility vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173301,10,'V43.72XA ','Person on outside of car injured in collision with other type car in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173302,10,'V43.72XD ','Person on outside of car injured in collision with other type car in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173303,10,'V43.72XS ','Person on outside of car injured in collision with other type car in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173304,10,'V43.73XA ','Person on outside of car injured in collision with pick-up truck in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173305,10,'V43.73XD ','Person on outside of car injured in collision with pick-up truck in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173306,10,'V43.73XS ','Person on outside of car injured in collision with pick-up truck in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173307,10,'V43.74XA ','Person on outside of car injured in collision with van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173308,10,'V43.74XD ','Person on outside of car injured in collision with van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173309,10,'V43.74XS ','Person on outside of car injured in collision with van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173310,10,'V43.91XA ','Unspecified car occupant injured in collision with sport utility vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173311,10,'V43.91XD ','Unspecified car occupant injured in collision with sport utility vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173312,10,'V43.91XS ','Unspecified car occupant injured in collision with sport utility vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173313,10,'V43.92XA ','Unspecified car occupant injured in collision with other type car in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173314,10,'V43.92XD ','Unspecified car occupant injured in collision with other type car in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173315,10,'V43.92XS ','Unspecified car occupant injured in collision with other type car in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173316,10,'V43.93XA ','Unspecified car occupant injured in collision with pick-up truck in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173317,10,'V43.93XD ','Unspecified car occupant injured in collision with pick-up truck in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173318,10,'V43.93XS ','Unspecified car occupant injured in collision with pick-up truck in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173319,10,'V43.94XA ','Unspecified car occupant injured in collision with van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173320,10,'V43.94XD ','Unspecified car occupant injured in collision with van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173321,10,'V43.94XS ','Unspecified car occupant injured in collision with van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173322,10,'V44.0XXA ','Car driver injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173323,10,'V44.0XXD ','Car driver injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173324,10,'V44.0XXS ','Car driver injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173325,10,'V44.1XXA ','Car passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173326,10,'V44.1XXD ','Car passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173327,10,'V44.1XXS ','Car passenger injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173328,10,'V44.2XXA ','Person on outside of car injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173329,10,'V44.2XXD ','Person on outside of car injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173330,10,'V44.2XXS ','Person on outside of car injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173331,10,'V44.3XXA ','Unspecified car occupant injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173332,10,'V44.3XXD ','Unspecified car occupant injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173333,10,'V44.3XXS ','Unspecified car occupant injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173334,10,'V44.4XXA ','Person boarding or alighting a car injured in collision with heavy transport vehicle or bus, initial encounter','Y','0000-00-00 00:00:00'),(173335,10,'V44.4XXD ','Person boarding or alighting a car injured in collision with heavy transport vehicle or bus, subsequent encounter','Y','0000-00-00 00:00:00'),(173336,10,'V44.4XXS ','Person boarding or alighting a car injured in collision with heavy transport vehicle or bus, sequela','Y','0000-00-00 00:00:00'),(173337,10,'V44.5XXA ','Car driver injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173338,10,'V44.5XXD ','Car driver injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173339,10,'V44.5XXS ','Car driver injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173340,10,'V44.6XXA ','Car passenger injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173341,10,'V44.6XXD ','Car passenger injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173342,10,'V44.6XXS ','Car passenger injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173343,10,'V44.7XXA ','Person on outside of car injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173344,10,'V44.7XXD ','Person on outside of car injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173345,10,'V44.7XXS ','Person on outside of car injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173346,10,'V44.9XXA ','Unspecified car occupant injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173347,10,'V44.9XXD ','Unspecified car occupant injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173348,10,'V44.9XXS ','Unspecified car occupant injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173349,10,'V45.0XXA ','Car driver injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173350,10,'V45.0XXD ','Car driver injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173351,10,'V45.0XXS ','Car driver injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173352,10,'V45.1XXA ','Car passenger injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173353,10,'V45.1XXD ','Car passenger injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173354,10,'V45.1XXS ','Car passenger injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173355,10,'V45.2XXA ','Person on outside of car injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173356,10,'V45.2XXD ','Person on outside of car injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173357,10,'V45.2XXS ','Person on outside of car injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173358,10,'V45.3XXA ','Unspecified car occupant injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173359,10,'V45.3XXD ','Unspecified car occupant injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173360,10,'V45.3XXS ','Unspecified car occupant injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173361,10,'V45.4XXA ','Person boarding or alighting a car injured in collision with railway train or railway vehicle, initial encounter','Y','0000-00-00 00:00:00'),(173362,10,'V45.4XXD ','Person boarding or alighting a car injured in collision with railway train or railway vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(173363,10,'V45.4XXS ','Person boarding or alighting a car injured in collision with railway train or railway vehicle, sequela','Y','0000-00-00 00:00:00'),(173364,10,'V45.5XXA ','Car driver injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173365,10,'V45.5XXD ','Car driver injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173366,10,'V45.5XXS ','Car driver injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173367,10,'V45.6XXA ','Car passenger injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173368,10,'V45.6XXD ','Car passenger injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173369,10,'V45.6XXS ','Car passenger injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173370,10,'V45.7XXA ','Person on outside of car injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173371,10,'V45.7XXD ','Person on outside of car injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173372,10,'V45.7XXS ','Person on outside of car injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173373,10,'V45.9XXA ','Unspecified car occupant injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173374,10,'V45.9XXD ','Unspecified car occupant injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173375,10,'V45.9XXS ','Unspecified car occupant injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173376,10,'V46.0XXA ','Car driver injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173377,10,'V46.0XXD ','Car driver injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173378,10,'V46.0XXS ','Car driver injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173379,10,'V46.1XXA ','Car passenger injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173380,10,'V46.1XXD ','Car passenger injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173381,10,'V46.1XXS ','Car passenger injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173382,10,'V46.2XXA ','Person on outside of car injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173383,10,'V46.2XXD ','Person on outside of car injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173384,10,'V46.2XXS ','Person on outside of car injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173385,10,'V46.3XXA ','Unspecified car occupant injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173386,10,'V46.3XXD ','Unspecified car occupant injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173387,10,'V46.3XXS ','Unspecified car occupant injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173388,10,'V46.4XXA ','Person boarding or alighting a car injured in collision with other nonmotor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(173389,10,'V46.4XXD ','Person boarding or alighting a car injured in collision with other nonmotor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(173390,10,'V46.4XXS ','Person boarding or alighting a car injured in collision with other nonmotor vehicle, sequela','Y','0000-00-00 00:00:00'),(173391,10,'V46.5XXA ','Car driver injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173392,10,'V46.5XXD ','Car driver injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173393,10,'V46.5XXS ','Car driver injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173394,10,'V46.6XXA ','Car passenger injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173395,10,'V46.6XXD ','Car passenger injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173396,10,'V46.6XXS ','Car passenger injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173397,10,'V46.7XXA ','Person on outside of car injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173398,10,'V46.7XXD ','Person on outside of car injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173399,10,'V46.7XXS ','Person on outside of car injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173400,10,'V46.9XXA ','Unspecified car occupant injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173401,10,'V46.9XXD ','Unspecified car occupant injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173402,10,'V46.9XXS ','Unspecified car occupant injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173403,10,'V47.0XXA ','Car driver injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173404,10,'V47.0XXD ','Car driver injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173405,10,'V47.0XXS ','Car driver injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173406,10,'V47.1XXA ','Car passenger injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173407,10,'V47.1XXD ','Car passenger injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173408,10,'V47.1XXS ','Car passenger injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173409,10,'V47.2XXA ','Person on outside of car injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173410,10,'V47.2XXD ','Person on outside of car injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173411,10,'V47.2XXS ','Person on outside of car injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173412,10,'V47.3XXA ','Unspecified car occupant injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173413,10,'V47.3XXD ','Unspecified car occupant injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173414,10,'V47.3XXS ','Unspecified car occupant injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173415,10,'V47.4XXA ','Person boarding or alighting a car injured in collision with fixed or stationary object, initial encounter','Y','0000-00-00 00:00:00'),(173416,10,'V47.4XXD ','Person boarding or alighting a car injured in collision with fixed or stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(173417,10,'V47.4XXS ','Person boarding or alighting a car injured in collision with fixed or stationary object, sequela','Y','0000-00-00 00:00:00'),(173418,10,'V47.5XXA ','Car driver injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173419,10,'V47.5XXD ','Car driver injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173420,10,'V47.5XXS ','Car driver injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173421,10,'V47.6XXA ','Car passenger injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173422,10,'V47.6XXD ','Car passenger injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173423,10,'V47.6XXS ','Car passenger injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173424,10,'V47.7XXA ','Person on outside of car injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173425,10,'V47.7XXD ','Person on outside of car injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173426,10,'V47.7XXS ','Person on outside of car injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173427,10,'V47.9XXA ','Unspecified car occupant injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173428,10,'V47.9XXD ','Unspecified car occupant injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173429,10,'V47.9XXS ','Unspecified car occupant injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173430,10,'V48.0XXA ','Car driver injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173431,10,'V48.0XXD ','Car driver injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173432,10,'V48.0XXS ','Car driver injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173433,10,'V48.1XXA ','Car passenger injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173434,10,'V48.1XXD ','Car passenger injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173435,10,'V48.1XXS ','Car passenger injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173436,10,'V48.2XXA ','Person on outside of car injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173437,10,'V48.2XXD ','Person on outside of car injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173438,10,'V48.2XXS ','Person on outside of car injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173439,10,'V48.3XXA ','Unspecified car occupant injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173440,10,'V48.3XXD ','Unspecified car occupant injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173441,10,'V48.3XXS ','Unspecified car occupant injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173442,10,'V48.4XXA ','Person boarding or alighting a car injured in noncollision transport accident, initial encounter','Y','0000-00-00 00:00:00'),(173443,10,'V48.4XXD ','Person boarding or alighting a car injured in noncollision transport accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173444,10,'V48.4XXS ','Person boarding or alighting a car injured in noncollision transport accident, sequela','Y','0000-00-00 00:00:00'),(173445,10,'V48.5XXA ','Car driver injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173446,10,'V48.5XXD ','Car driver injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173447,10,'V48.5XXS ','Car driver injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173448,10,'V48.6XXA ','Car passenger injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00');
INSERT INTO `icd` VALUES (173449,10,'V48.6XXD ','Car passenger injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173450,10,'V48.6XXS ','Car passenger injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173451,10,'V48.7XXA ','Person on outside of car injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173452,10,'V48.7XXD ','Person on outside of car injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173453,10,'V48.7XXS ','Person on outside of car injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173454,10,'V48.9XXA ','Unspecified car occupant injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173455,10,'V48.9XXD ','Unspecified car occupant injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173456,10,'V48.9XXS ','Unspecified car occupant injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173457,10,'V49.00XA ','Driver injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173458,10,'V49.00XD ','Driver injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173459,10,'V49.00XS ','Driver injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173460,10,'V49.09XA ','Driver injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173461,10,'V49.09XD ','Driver injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173462,10,'V49.09XS ','Driver injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173463,10,'V49.10XA ','Passenger injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173464,10,'V49.10XD ','Passenger injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173465,10,'V49.10XS ','Passenger injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173466,10,'V49.19XA ','Passenger injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173467,10,'V49.19XD ','Passenger injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173468,10,'V49.19XS ','Passenger injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173469,10,'V49.20XA ','Unspecified car occupant injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173470,10,'V49.20XD ','Unspecified car occupant injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173471,10,'V49.20XS ','Unspecified car occupant injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173472,10,'V49.29XA ','Unspecified car occupant injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173473,10,'V49.29XD ','Unspecified car occupant injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173474,10,'V49.29XS ','Unspecified car occupant injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173475,10,'V49.3XXA ','Car occupant (driver) (passenger) injured in unspecified nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173476,10,'V49.3XXD ','Car occupant (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173477,10,'V49.3XXS ','Car occupant (driver) (passenger) injured in unspecified nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173478,10,'V49.40XA ','Driver injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173479,10,'V49.40XD ','Driver injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173480,10,'V49.40XS ','Driver injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173481,10,'V49.49XA ','Driver injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173482,10,'V49.49XD ','Driver injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173483,10,'V49.49XS ','Driver injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173484,10,'V49.50XA ','Passenger injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173485,10,'V49.50XD ','Passenger injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173486,10,'V49.50XS ','Passenger injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173487,10,'V49.59XA ','Passenger injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173488,10,'V49.59XD ','Passenger injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173489,10,'V49.59XS ','Passenger injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173490,10,'V49.60XA ','Unspecified car occupant injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173491,10,'V49.60XD ','Unspecified car occupant injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173492,10,'V49.60XS ','Unspecified car occupant injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173493,10,'V49.69XA ','Unspecified car occupant injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173494,10,'V49.69XD ','Unspecified car occupant injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173495,10,'V49.69XS ','Unspecified car occupant injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173496,10,'V49.81XA ','Car occupant (driver) (passenger) injured in transport accident with military vehicle, initial encounter','Y','0000-00-00 00:00:00'),(173497,10,'V49.81XD ','Car occupant (driver) (passenger) injured in transport accident with military vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(173498,10,'V49.81XS ','Car occupant (driver) (passenger) injured in transport accident with military vehicle, sequela','Y','0000-00-00 00:00:00'),(173499,10,'V49.88XA ','Car occupant (driver) (passenger) injured in other specified transport accidents, initial encounter','Y','0000-00-00 00:00:00'),(173500,10,'V49.88XD ','Car occupant (driver) (passenger) injured in other specified transport accidents, subsequent encounter','Y','0000-00-00 00:00:00'),(173501,10,'V49.88XS ','Car occupant (driver) (passenger) injured in other specified transport accidents, sequela','Y','0000-00-00 00:00:00'),(173502,10,'V49.9XXA ','Car occupant (driver) (passenger) injured in unspecified traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173503,10,'V49.9XXD ','Car occupant (driver) (passenger) injured in unspecified traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173504,10,'V49.9XXS ','Car occupant (driver) (passenger) injured in unspecified traffic accident, sequela','Y','0000-00-00 00:00:00'),(173505,10,'V50.0XXA ','Driver of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173506,10,'V50.0XXD ','Driver of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173507,10,'V50.0XXS ','Driver of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173508,10,'V50.1XXA ','Passenger in pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173509,10,'V50.1XXD ','Passenger in pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173510,10,'V50.1XXS ','Passenger in pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173511,10,'V50.2XXA ','Person on outside of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173512,10,'V50.2XXD ','Person on outside of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173513,10,'V50.2XXS ','Person on outside of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173514,10,'V50.3XXA ','Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173515,10,'V50.3XXD ','Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173516,10,'V50.3XXS ','Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173517,10,'V50.4XXA ','Person boarding or alighting a pick-up truck or van injured in collision with pedestrian or animal, initial encounter','Y','0000-00-00 00:00:00'),(173518,10,'V50.4XXD ','Person boarding or alighting a pick-up truck or van injured in collision with pedestrian or animal, subsequent encounter','Y','0000-00-00 00:00:00'),(173519,10,'V50.4XXS ','Person boarding or alighting a pick-up truck or van injured in collision with pedestrian or animal, sequela','Y','0000-00-00 00:00:00'),(173520,10,'V50.5XXA ','Driver of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173521,10,'V50.5XXD ','Driver of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173522,10,'V50.5XXS ','Driver of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173523,10,'V50.6XXA ','Passenger in pick-up truck or van injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173524,10,'V50.6XXD ','Passenger in pick-up truck or van injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173525,10,'V50.6XXS ','Passenger in pick-up truck or van injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173526,10,'V50.7XXA ','Person on outside of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173527,10,'V50.7XXD ','Person on outside of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173528,10,'V50.7XXS ','Person on outside of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173529,10,'V50.9XXA ','Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173530,10,'V50.9XXD ','Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173531,10,'V50.9XXS ','Unspecified occupant of pick-up truck or van injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173532,10,'V51.0XXA ','Driver of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173533,10,'V51.0XXD ','Driver of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173534,10,'V51.0XXS ','Driver of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173535,10,'V51.1XXA ','Passenger in pick-up truck or van injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173536,10,'V51.1XXD ','Passenger in pick-up truck or van injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173537,10,'V51.1XXS ','Passenger in pick-up truck or van injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173538,10,'V51.2XXA ','Person on outside of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173539,10,'V51.2XXD ','Person on outside of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173540,10,'V51.2XXS ','Person on outside of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173541,10,'V51.3XXA ','Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173542,10,'V51.3XXD ','Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173543,10,'V51.3XXS ','Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173544,10,'V51.4XXA ','Person boarding or alighting a pick-up truck or van injured in collision with pedal cycle, initial encounter','Y','0000-00-00 00:00:00'),(173545,10,'V51.4XXD ','Person boarding or alighting a pick-up truck or van injured in collision with pedal cycle, subsequent encounter','Y','0000-00-00 00:00:00'),(173546,10,'V51.4XXS ','Person boarding or alighting a pick-up truck or van injured in collision with pedal cycle, sequela','Y','0000-00-00 00:00:00'),(173547,10,'V51.5XXA ','Driver of pick-up truck or van injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173548,10,'V51.5XXD ','Driver of pick-up truck or van injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173549,10,'V51.5XXS ','Driver of pick-up truck or van injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173550,10,'V51.6XXA ','Passenger in pick-up truck or van injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173551,10,'V51.6XXD ','Passenger in pick-up truck or van injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173552,10,'V51.6XXS ','Passenger in pick-up truck or van injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173553,10,'V51.7XXA ','Person on outside of pick-up truck or van injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173554,10,'V51.7XXD ','Person on outside of pick-up truck or van injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173555,10,'V51.7XXS ','Person on outside of pick-up truck or van injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173556,10,'V51.9XXA ','Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173557,10,'V51.9XXD ','Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173558,10,'V51.9XXS ','Unspecified occupant of pick-up truck or van injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173559,10,'V52.0XXA ','Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173560,10,'V52.0XXD ','Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173561,10,'V52.0XXS ','Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173562,10,'V52.1XXA ','Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173563,10,'V52.1XXD ','Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173564,10,'V52.1XXS ','Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173565,10,'V52.2XXA ','Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173566,10,'V52.2XXD ','Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173567,10,'V52.2XXS ','Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173568,10,'V52.3XXA ','Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173569,10,'V52.3XXD ','Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173570,10,'V52.3XXS ','Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173571,10,'V52.4XXA ','Person boarding or alighting a pick-up truck or van injured in collision with two- or three-wheeled motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(173572,10,'V52.4XXD ','Person boarding or alighting a pick-up truck or van injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(173573,10,'V52.4XXS ','Person boarding or alighting a pick-up truck or van injured in collision with two- or three-wheeled motor vehicle, sequela','Y','0000-00-00 00:00:00'),(173574,10,'V52.5XXA ','Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173575,10,'V52.5XXD ','Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173576,10,'V52.5XXS ','Driver of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173577,10,'V52.6XXA ','Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173578,10,'V52.6XXD ','Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173579,10,'V52.6XXS ','Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173580,10,'V52.7XXA ','Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173581,10,'V52.7XXD ','Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173582,10,'V52.7XXS ','Person on outside of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173583,10,'V52.9XXA ','Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173584,10,'V52.9XXD ','Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173585,10,'V52.9XXS ','Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173586,10,'V53.0XXA ','Driver of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173587,10,'V53.0XXD ','Driver of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173588,10,'V53.0XXS ','Driver of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173589,10,'V53.1XXA ','Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173590,10,'V53.1XXD ','Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173591,10,'V53.1XXS ','Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173592,10,'V53.2XXA ','Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173593,10,'V53.2XXD ','Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173594,10,'V53.2XXS ','Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173595,10,'V53.3XXA ','Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173596,10,'V53.3XXD ','Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173597,10,'V53.3XXS ','Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173598,10,'V53.4XXA ','Person boarding or alighting a pick-up truck or van injured in collision with car, pick-up truck or van, initial encounter','Y','0000-00-00 00:00:00'),(173599,10,'V53.4XXD ','Person boarding or alighting a pick-up truck or van injured in collision with car, pick-up truck or van, subsequent encounter','Y','0000-00-00 00:00:00'),(173600,10,'V53.4XXS ','Person boarding or alighting a pick-up truck or van injured in collision with car, pick-up truck or van, sequela','Y','0000-00-00 00:00:00'),(173601,10,'V53.5XXA ','Driver of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173602,10,'V53.5XXD ','Driver of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173603,10,'V53.5XXS ','Driver of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173604,10,'V53.6XXA ','Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173605,10,'V53.6XXD ','Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173606,10,'V53.6XXS ','Passenger in pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173607,10,'V53.7XXA ','Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173608,10,'V53.7XXD ','Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173609,10,'V53.7XXS ','Person on outside of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173610,10,'V53.9XXA ','Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173611,10,'V53.9XXD ','Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173612,10,'V53.9XXS ','Unspecified occupant of pick-up truck or van injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173613,10,'V54.0XXA ','Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173614,10,'V54.0XXD ','Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173615,10,'V54.0XXS ','Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173616,10,'V54.1XXA ','Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173617,10,'V54.1XXD ','Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173618,10,'V54.1XXS ','Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173619,10,'V54.2XXA ','Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173620,10,'V54.2XXD ','Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173621,10,'V54.2XXS ','Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173622,10,'V54.3XXA ','Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173623,10,'V54.3XXD ','Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173624,10,'V54.3XXS ','Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173625,10,'V54.4XXA ','Person boarding or alighting a pick-up truck or van injured in collision with heavy transport vehicle or bus, initial encounter','Y','0000-00-00 00:00:00'),(173626,10,'V54.4XXD ','Person boarding or alighting a pick-up truck or van injured in collision with heavy transport vehicle or bus, subsequent encounter','Y','0000-00-00 00:00:00'),(173627,10,'V54.4XXS ','Person boarding or alighting a pick-up truck or van injured in collision with heavy transport vehicle or bus, sequela','Y','0000-00-00 00:00:00'),(173628,10,'V54.5XXA ','Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173629,10,'V54.5XXD ','Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173630,10,'V54.5XXS ','Driver of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173631,10,'V54.6XXA ','Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173632,10,'V54.6XXD ','Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173633,10,'V54.6XXS ','Passenger in pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173634,10,'V54.7XXA ','Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173635,10,'V54.7XXD ','Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173636,10,'V54.7XXS ','Person on outside of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173637,10,'V54.9XXA ','Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173638,10,'V54.9XXD ','Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173639,10,'V54.9XXS ','Unspecified occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173640,10,'V55.0XXA ','Driver of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173641,10,'V55.0XXD ','Driver of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173642,10,'V55.0XXS ','Driver of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173643,10,'V55.1XXA ','Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173644,10,'V55.1XXD ','Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173645,10,'V55.1XXS ','Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173646,10,'V55.2XXA ','Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173647,10,'V55.2XXD ','Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173648,10,'V55.2XXS ','Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173649,10,'V55.3XXA ','Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173650,10,'V55.3XXD ','Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173651,10,'V55.3XXS ','Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173652,10,'V55.4XXA ','Person boarding or alighting a pick-up truck or van injured in collision with railway train or railway vehicle, initial encounter','Y','0000-00-00 00:00:00'),(173653,10,'V55.4XXD ','Person boarding or alighting a pick-up truck or van injured in collision with railway train or railway vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(173654,10,'V55.4XXS ','Person boarding or alighting a pick-up truck or van injured in collision with railway train or railway vehicle, sequela','Y','0000-00-00 00:00:00'),(173655,10,'V55.5XXA ','Driver of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173656,10,'V55.5XXD ','Driver of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173657,10,'V55.5XXS ','Driver of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173658,10,'V55.6XXA ','Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173659,10,'V55.6XXD ','Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173660,10,'V55.6XXS ','Passenger in pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173661,10,'V55.7XXA ','Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173662,10,'V55.7XXD ','Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173663,10,'V55.7XXS ','Person on outside of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173664,10,'V55.9XXA ','Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173665,10,'V55.9XXD ','Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173666,10,'V55.9XXS ','Unspecified occupant of pick-up truck or van injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173667,10,'V56.0XXA ','Driver of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173668,10,'V56.0XXD ','Driver of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173669,10,'V56.0XXS ','Driver of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173670,10,'V56.1XXA ','Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173671,10,'V56.1XXD ','Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173672,10,'V56.1XXS ','Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173673,10,'V56.2XXA ','Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173674,10,'V56.2XXD ','Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173675,10,'V56.2XXS ','Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173676,10,'V56.3XXA ','Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173677,10,'V56.3XXD ','Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173678,10,'V56.3XXS ','Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173679,10,'V56.4XXA ','Person boarding or alighting a pick-up truck or van injured in collision with other nonmotor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(173680,10,'V56.4XXD ','Person boarding or alighting a pick-up truck or van injured in collision with other nonmotor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(173681,10,'V56.4XXS ','Person boarding or alighting a pick-up truck or van injured in collision with other nonmotor vehicle, sequela','Y','0000-00-00 00:00:00'),(173682,10,'V56.5XXA ','Driver of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173683,10,'V56.5XXD ','Driver of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173684,10,'V56.5XXS ','Driver of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173685,10,'V56.6XXA ','Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173686,10,'V56.6XXD ','Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173687,10,'V56.6XXS ','Passenger in pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173688,10,'V56.7XXA ','Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173689,10,'V56.7XXD ','Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173690,10,'V56.7XXS ','Person on outside of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173691,10,'V56.9XXA ','Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173692,10,'V56.9XXD ','Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173693,10,'V56.9XXS ','Unspecified occupant of pick-up truck or van injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173694,10,'V57.0XXA ','Driver of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173695,10,'V57.0XXD ','Driver of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173696,10,'V57.0XXS ','Driver of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173697,10,'V57.1XXA ','Passenger in pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173698,10,'V57.1XXD ','Passenger in pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173699,10,'V57.1XXS ','Passenger in pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173700,10,'V57.2XXA ','Person on outside of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173701,10,'V57.2XXD ','Person on outside of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173702,10,'V57.2XXS ','Person on outside of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173703,10,'V57.3XXA ','Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173704,10,'V57.3XXD ','Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173705,10,'V57.3XXS ','Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173706,10,'V57.4XXA ','Person boarding or alighting a pick-up truck or van injured in collision with fixed or stationary object, initial encounter','Y','0000-00-00 00:00:00'),(173707,10,'V57.4XXD ','Person boarding or alighting a pick-up truck or van injured in collision with fixed or stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(173708,10,'V57.4XXS ','Person boarding or alighting a pick-up truck or van injured in collision with fixed or stationary object, sequela','Y','0000-00-00 00:00:00'),(173709,10,'V57.5XXA ','Driver of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173710,10,'V57.5XXD ','Driver of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173711,10,'V57.5XXS ','Driver of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173712,10,'V57.6XXA ','Passenger in pick-up truck or van injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173713,10,'V57.6XXD ','Passenger in pick-up truck or van injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173714,10,'V57.6XXS ','Passenger in pick-up truck or van injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173715,10,'V57.7XXA ','Person on outside of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173716,10,'V57.7XXD ','Person on outside of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173717,10,'V57.7XXS ','Person on outside of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173718,10,'V57.9XXA ','Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173719,10,'V57.9XXD ','Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173720,10,'V57.9XXS ','Unspecified occupant of pick-up truck or van injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173721,10,'V58.0XXA ','Driver of pick-up truck or van injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173722,10,'V58.0XXD ','Driver of pick-up truck or van injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173723,10,'V58.0XXS ','Driver of pick-up truck or van injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173724,10,'V58.1XXA ','Passenger in pick-up truck or van injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173725,10,'V58.1XXD ','Passenger in pick-up truck or van injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173726,10,'V58.1XXS ','Passenger in pick-up truck or van injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173727,10,'V58.2XXA ','Person on outside of pick-up truck or van injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173728,10,'V58.2XXD ','Person on outside of pick-up truck or van injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173729,10,'V58.2XXS ','Person on outside of pick-up truck or van injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173730,10,'V58.3XXA ','Unspecified occupant of pick-up truck or van injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173731,10,'V58.3XXD ','Unspecified occupant of pick-up truck or van injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173732,10,'V58.3XXS ','Unspecified occupant of pick-up truck or van injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173733,10,'V58.4XXA ','Person boarding or alighting a pick-up truck or van injured in noncollision transport accident, initial encounter','Y','0000-00-00 00:00:00'),(173734,10,'V58.4XXD ','Person boarding or alighting a pick-up truck or van injured in noncollision transport accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173735,10,'V58.4XXS ','Person boarding or alighting a pick-up truck or van injured in noncollision transport accident, sequela','Y','0000-00-00 00:00:00'),(173736,10,'V58.5XXA ','Driver of pick-up truck or van injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173737,10,'V58.5XXD ','Driver of pick-up truck or van injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173738,10,'V58.5XXS ','Driver of pick-up truck or van injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173739,10,'V58.6XXA ','Passenger in pick-up truck or van injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173740,10,'V58.6XXD ','Passenger in pick-up truck or van injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173741,10,'V58.6XXS ','Passenger in pick-up truck or van injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173742,10,'V58.7XXA ','Person on outside of pick-up truck or van injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173743,10,'V58.7XXD ','Person on outside of pick-up truck or van injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173744,10,'V58.7XXS ','Person on outside of pick-up truck or van injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173745,10,'V58.9XXA ','Unspecified occupant of pick-up truck or van injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173746,10,'V58.9XXD ','Unspecified occupant of pick-up truck or van injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173747,10,'V58.9XXS ','Unspecified occupant of pick-up truck or van injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173748,10,'V59.00XA ','Driver of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173749,10,'V59.00XD ','Driver of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173750,10,'V59.00XS ','Driver of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173751,10,'V59.09XA ','Driver of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173752,10,'V59.09XD ','Driver of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173753,10,'V59.09XS ','Driver of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173754,10,'V59.10XA ','Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173755,10,'V59.10XD ','Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173756,10,'V59.10XS ','Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173757,10,'V59.19XA ','Passenger in pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173758,10,'V59.19XD ','Passenger in pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173759,10,'V59.19XS ','Passenger in pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173760,10,'V59.20XA ','Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173761,10,'V59.20XD ','Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173762,10,'V59.20XS ','Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173763,10,'V59.29XA ','Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173764,10,'V59.29XD ','Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173765,10,'V59.29XS ','Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173766,10,'V59.3XXA ','Occupant (driver) (passenger) of pick-up truck or van injured in unspecified nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173767,10,'V59.3XXD ','Occupant (driver) (passenger) of pick-up truck or van injured in unspecified nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173768,10,'V59.3XXS ','Occupant (driver) (passenger) of pick-up truck or van injured in unspecified nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173769,10,'V59.40XA ','Driver of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173770,10,'V59.40XD ','Driver of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173771,10,'V59.40XS ','Driver of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173772,10,'V59.49XA ','Driver of pick-up truck or van injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173773,10,'V59.49XD ','Driver of pick-up truck or van injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173774,10,'V59.49XS ','Driver of pick-up truck or van injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173775,10,'V59.50XA ','Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173776,10,'V59.50XD ','Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173777,10,'V59.50XS ','Passenger in pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173778,10,'V59.59XA ','Passenger in pick-up truck or van injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173779,10,'V59.59XD ','Passenger in pick-up truck or van injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173780,10,'V59.59XS ','Passenger in pick-up truck or van injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173781,10,'V59.60XA ','Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173782,10,'V59.60XD ','Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173783,10,'V59.60XS ','Unspecified occupant of pick-up truck or van injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173784,10,'V59.69XA ','Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173785,10,'V59.69XD ','Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173786,10,'V59.69XS ','Unspecified occupant of pick-up truck or van injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173787,10,'V59.81XA ','Occupant (driver) (passenger) of pick-up truck or van injured in transport accident with military vehicle, initial encounter','Y','0000-00-00 00:00:00'),(173788,10,'V59.81XD ','Occupant (driver) (passenger) of pick-up truck or van injured in transport accident with military vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(173789,10,'V59.81XS ','Occupant (driver) (passenger) of pick-up truck or van injured in transport accident with military vehicle, sequela','Y','0000-00-00 00:00:00'),(173790,10,'V59.88XA ','Occupant (driver) (passenger) of pick-up truck or van injured in other specified transport accidents, initial encounter','Y','0000-00-00 00:00:00'),(173791,10,'V59.88XD ','Occupant (driver) (passenger) of pick-up truck or van injured in other specified transport accidents, subsequent encounter','Y','0000-00-00 00:00:00'),(173792,10,'V59.88XS ','Occupant (driver) (passenger) of pick-up truck or van injured in other specified transport accidents, sequela','Y','0000-00-00 00:00:00'),(173793,10,'V59.9XXA ','Occupant (driver) (passenger) of pick-up truck or van injured in unspecified traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173794,10,'V59.9XXD ','Occupant (driver) (passenger) of pick-up truck or van injured in unspecified traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173795,10,'V59.9XXS ','Occupant (driver) (passenger) of pick-up truck or van injured in unspecified traffic accident, sequela','Y','0000-00-00 00:00:00'),(173796,10,'V60.0XXA ','Driver of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173797,10,'V60.0XXD ','Driver of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173798,10,'V60.0XXS ','Driver of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173799,10,'V60.1XXA ','Passenger in heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173800,10,'V60.1XXD ','Passenger in heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173801,10,'V60.1XXS ','Passenger in heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173802,10,'V60.2XXA ','Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173803,10,'V60.2XXD ','Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173804,10,'V60.2XXS ','Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173805,10,'V60.3XXA ','Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173806,10,'V60.3XXD ','Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173807,10,'V60.3XXS ','Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173808,10,'V60.4XXA ','Person boarding or alighting a heavy transport vehicle injured in collision with pedestrian or animal, initial encounter','Y','0000-00-00 00:00:00'),(173809,10,'V60.4XXD ','Person boarding or alighting a heavy transport vehicle injured in collision with pedestrian or animal, subsequent encounter','Y','0000-00-00 00:00:00'),(173810,10,'V60.4XXS ','Person boarding or alighting a heavy transport vehicle injured in collision with pedestrian or animal, sequela','Y','0000-00-00 00:00:00'),(173811,10,'V60.5XXA ','Driver of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173812,10,'V60.5XXD ','Driver of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173813,10,'V60.5XXS ','Driver of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173814,10,'V60.6XXA ','Passenger in heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173815,10,'V60.6XXD ','Passenger in heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173816,10,'V60.6XXS ','Passenger in heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173817,10,'V60.7XXA ','Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173818,10,'V60.7XXD ','Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173819,10,'V60.7XXS ','Person on outside of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173820,10,'V60.9XXA ','Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173821,10,'V60.9XXD ','Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173822,10,'V60.9XXS ','Unspecified occupant of heavy transport vehicle injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173823,10,'V61.0XXA ','Driver of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173824,10,'V61.0XXD ','Driver of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173825,10,'V61.0XXS ','Driver of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173826,10,'V61.1XXA ','Passenger in heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173827,10,'V61.1XXD ','Passenger in heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173828,10,'V61.1XXS ','Passenger in heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173829,10,'V61.2XXA ','Person on outside of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173830,10,'V61.2XXD ','Person on outside of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173831,10,'V61.2XXS ','Person on outside of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173832,10,'V61.3XXA ','Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173833,10,'V61.3XXD ','Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173834,10,'V61.3XXS ','Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173835,10,'V61.4XXA ','Person boarding or alighting a heavy transport vehicle injured in collision with pedal cycle while boarding or alighting, initial encounter','Y','0000-00-00 00:00:00'),(173836,10,'V61.4XXD ','Person boarding or alighting a heavy transport vehicle injured in collision with pedal cycle while boarding or alighting, subsequent encounter','Y','0000-00-00 00:00:00'),(173837,10,'V61.4XXS ','Person boarding or alighting a heavy transport vehicle injured in collision with pedal cycle while boarding or alighting, sequela','Y','0000-00-00 00:00:00'),(173838,10,'V61.5XXA ','Driver of heavy transport vehicle injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173839,10,'V61.5XXD ','Driver of heavy transport vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173840,10,'V61.5XXS ','Driver of heavy transport vehicle injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173841,10,'V61.6XXA ','Passenger in heavy transport vehicle injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173842,10,'V61.6XXD ','Passenger in heavy transport vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173843,10,'V61.6XXS ','Passenger in heavy transport vehicle injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173844,10,'V61.7XXA ','Person on outside of heavy transport vehicle injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173845,10,'V61.7XXD ','Person on outside of heavy transport vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173846,10,'V61.7XXS ','Person on outside of heavy transport vehicle injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173847,10,'V61.9XXA ','Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173848,10,'V61.9XXD ','Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173849,10,'V61.9XXS ','Unspecified occupant of heavy transport vehicle injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173850,10,'V62.0XXA ','Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173851,10,'V62.0XXD ','Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173852,10,'V62.0XXS ','Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173853,10,'V62.1XXA ','Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173854,10,'V62.1XXD ','Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173855,10,'V62.1XXS ','Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173856,10,'V62.2XXA ','Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173857,10,'V62.2XXD ','Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173858,10,'V62.2XXS ','Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173859,10,'V62.3XXA ','Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173860,10,'V62.3XXD ','Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173861,10,'V62.3XXS ','Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173862,10,'V62.4XXA ','Person boarding or alighting a heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(173863,10,'V62.4XXD ','Person boarding or alighting a heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(173864,10,'V62.4XXS ','Person boarding or alighting a heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle, sequela','Y','0000-00-00 00:00:00'),(173865,10,'V62.5XXA ','Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173866,10,'V62.5XXD ','Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173867,10,'V62.5XXS ','Driver of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173868,10,'V62.6XXA ','Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173869,10,'V62.6XXD ','Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173870,10,'V62.6XXS ','Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173871,10,'V62.7XXA ','Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173872,10,'V62.7XXD ','Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173873,10,'V62.7XXS ','Person on outside of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173874,10,'V62.9XXA ','Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173875,10,'V62.9XXD ','Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173876,10,'V62.9XXS ','Unspecified occupant of heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173877,10,'V63.0XXA ','Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173878,10,'V63.0XXD ','Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173879,10,'V63.0XXS ','Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173880,10,'V63.1XXA ','Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173881,10,'V63.1XXD ','Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173882,10,'V63.1XXS ','Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173883,10,'V63.2XXA ','Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173884,10,'V63.2XXD ','Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173885,10,'V63.2XXS ','Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173886,10,'V63.3XXA ','Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173887,10,'V63.3XXD ','Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173888,10,'V63.3XXS ','Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173889,10,'V63.4XXA ','Person boarding or alighting a heavy transport vehicle injured in collision with car, pick-up truck or van, initial encounter','Y','0000-00-00 00:00:00'),(173890,10,'V63.4XXD ','Person boarding or alighting a heavy transport vehicle injured in collision with car, pick-up truck or van, subsequent encounter','Y','0000-00-00 00:00:00'),(173891,10,'V63.4XXS ','Person boarding or alighting a heavy transport vehicle injured in collision with car, pick-up truck or van, sequela','Y','0000-00-00 00:00:00'),(173892,10,'V63.5XXA ','Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173893,10,'V63.5XXD ','Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173894,10,'V63.5XXS ','Driver of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173895,10,'V63.6XXA ','Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173896,10,'V63.6XXD ','Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173897,10,'V63.6XXS ','Passenger in heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173898,10,'V63.7XXA ','Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173899,10,'V63.7XXD ','Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173900,10,'V63.7XXS ','Person on outside of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173901,10,'V63.9XXA ','Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173902,10,'V63.9XXD ','Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173903,10,'V63.9XXS ','Unspecified occupant of heavy transport vehicle injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173904,10,'V64.0XXA ','Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173905,10,'V64.0XXD ','Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173906,10,'V64.0XXS ','Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173907,10,'V64.1XXA ','Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173908,10,'V64.1XXD ','Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173909,10,'V64.1XXS ','Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173910,10,'V64.2XXA ','Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173911,10,'V64.2XXD ','Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173912,10,'V64.2XXS ','Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173913,10,'V64.3XXA ','Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173914,10,'V64.3XXD ','Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173915,10,'V64.3XXS ','Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173916,10,'V64.4XXA ','Person boarding or alighting a heavy transport vehicle injured in collision with heavy transport vehicle or bus while boarding or alighting, initial encounter','Y','0000-00-00 00:00:00'),(173917,10,'V64.4XXD ','Person boarding or alighting a heavy transport vehicle injured in collision with heavy transport vehicle or bus while boarding or alighting, subsequent encounter','Y','0000-00-00 00:00:00'),(173918,10,'V64.4XXS ','Person boarding or alighting a heavy transport vehicle injured in collision with heavy transport vehicle or bus while boarding or alighting, sequela','Y','0000-00-00 00:00:00'),(173919,10,'V64.5XXA ','Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173920,10,'V64.5XXD ','Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173921,10,'V64.5XXS ','Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173922,10,'V64.6XXA ','Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173923,10,'V64.6XXD ','Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173924,10,'V64.6XXS ','Passenger in heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173925,10,'V64.7XXA ','Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173926,10,'V64.7XXD ','Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173927,10,'V64.7XXS ','Person on outside of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173928,10,'V64.9XXA ','Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173929,10,'V64.9XXD ','Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173930,10,'V64.9XXS ','Unspecified occupant of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173931,10,'V65.0XXA ','Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173932,10,'V65.0XXD ','Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173933,10,'V65.0XXS ','Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173934,10,'V65.1XXA ','Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173935,10,'V65.1XXD ','Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173936,10,'V65.1XXS ','Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173937,10,'V65.2XXA ','Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173938,10,'V65.2XXD ','Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173939,10,'V65.2XXS ','Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173940,10,'V65.3XXA ','Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173941,10,'V65.3XXD ','Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173942,10,'V65.3XXS ','Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173943,10,'V65.4XXA ','Person boarding or alighting a heavy transport vehicle injured in collision with railway train or railway vehicle, initial encounter','Y','0000-00-00 00:00:00'),(173944,10,'V65.4XXD ','Person boarding or alighting a heavy transport vehicle injured in collision with railway train or railway vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(173945,10,'V65.4XXS ','Person boarding or alighting a heavy transport vehicle injured in collision with railway train or railway vehicle, sequela','Y','0000-00-00 00:00:00'),(173946,10,'V65.5XXA ','Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173947,10,'V65.5XXD ','Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173948,10,'V65.5XXS ','Driver of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173949,10,'V65.6XXA ','Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173950,10,'V65.6XXD ','Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173951,10,'V65.6XXS ','Passenger in heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173952,10,'V65.7XXA ','Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173953,10,'V65.7XXD ','Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173954,10,'V65.7XXS ','Person on outside of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173955,10,'V65.9XXA ','Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173956,10,'V65.9XXD ','Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173957,10,'V65.9XXS ','Unspecified occupant of heavy transport vehicle injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173958,10,'V66.0XXA ','Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173959,10,'V66.0XXD ','Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173960,10,'V66.0XXS ','Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173961,10,'V66.1XXA ','Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173962,10,'V66.1XXD ','Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173963,10,'V66.1XXS ','Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173964,10,'V66.2XXA ','Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173965,10,'V66.2XXD ','Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173966,10,'V66.2XXS ','Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173967,10,'V66.3XXA ','Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173968,10,'V66.3XXD ','Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173969,10,'V66.3XXS ','Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173970,10,'V66.4XXA ','Person boarding or alighting a heavy transport vehicle injured in collision with other nonmotor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(173971,10,'V66.4XXD ','Person boarding or alighting a heavy transport vehicle injured in collision with other nonmotor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(173972,10,'V66.4XXS ','Person boarding or alighting a heavy transport vehicle injured in collision with other nonmotor vehicle, sequela','Y','0000-00-00 00:00:00'),(173973,10,'V66.5XXA ','Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173974,10,'V66.5XXD ','Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173975,10,'V66.5XXS ','Driver of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173976,10,'V66.6XXA ','Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173977,10,'V66.6XXD ','Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173978,10,'V66.6XXS ','Passenger in heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173979,10,'V66.7XXA ','Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173980,10,'V66.7XXD ','Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173981,10,'V66.7XXS ','Person on outside of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173982,10,'V66.9XXA ','Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173983,10,'V66.9XXD ','Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173984,10,'V66.9XXS ','Unspecified occupant of heavy transport vehicle injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(173985,10,'V67.0XXA ','Driver of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173986,10,'V67.0XXD ','Driver of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173987,10,'V67.0XXS ','Driver of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173988,10,'V67.1XXA ','Passenger in heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173989,10,'V67.1XXD ','Passenger in heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173990,10,'V67.1XXS ','Passenger in heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173991,10,'V67.2XXA ','Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173992,10,'V67.2XXD ','Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173993,10,'V67.2XXS ','Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173994,10,'V67.3XXA ','Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(173995,10,'V67.3XXD ','Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(173996,10,'V67.3XXS ','Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(173997,10,'V67.4XXA ','Person boarding or alighting a heavy transport vehicle injured in collision with fixed or stationary object, initial encounter','Y','0000-00-00 00:00:00'),(173998,10,'V67.4XXD ','Person boarding or alighting a heavy transport vehicle injured in collision with fixed or stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(173999,10,'V67.4XXS ','Person boarding or alighting a heavy transport vehicle injured in collision with fixed or stationary object, sequela','Y','0000-00-00 00:00:00'),(174000,10,'V67.5XXA ','Driver of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174001,10,'V67.5XXD ','Driver of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174002,10,'V67.5XXS ','Driver of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174003,10,'V67.6XXA ','Passenger in heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174004,10,'V67.6XXD ','Passenger in heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174005,10,'V67.6XXS ','Passenger in heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174006,10,'V67.7XXA ','Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174007,10,'V67.7XXD ','Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174008,10,'V67.7XXS ','Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174009,10,'V67.9XXA ','Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174010,10,'V67.9XXD ','Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174011,10,'V67.9XXS ','Unspecified occupant of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174012,10,'V68.0XXA ','Driver of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174013,10,'V68.0XXD ','Driver of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174014,10,'V68.0XXS ','Driver of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174015,10,'V68.1XXA ','Passenger in heavy transport vehicle injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174016,10,'V68.1XXD ','Passenger in heavy transport vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174017,10,'V68.1XXS ','Passenger in heavy transport vehicle injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174018,10,'V68.2XXA ','Person on outside of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174019,10,'V68.2XXD ','Person on outside of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174020,10,'V68.2XXS ','Person on outside of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174021,10,'V68.3XXA ','Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174022,10,'V68.3XXD ','Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174023,10,'V68.3XXS ','Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174024,10,'V68.4XXA ','Person boarding or alighting a heavy transport vehicle injured in noncollision transport accident, initial encounter','Y','0000-00-00 00:00:00'),(174025,10,'V68.4XXD ','Person boarding or alighting a heavy transport vehicle injured in noncollision transport accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174026,10,'V68.4XXS ','Person boarding or alighting a heavy transport vehicle injured in noncollision transport accident, sequela','Y','0000-00-00 00:00:00'),(174027,10,'V68.5XXA ','Driver of heavy transport vehicle injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174028,10,'V68.5XXD ','Driver of heavy transport vehicle injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174029,10,'V68.5XXS ','Driver of heavy transport vehicle injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174030,10,'V68.6XXA ','Passenger in heavy transport vehicle injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174031,10,'V68.6XXD ','Passenger in heavy transport vehicle injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174032,10,'V68.6XXS ','Passenger in heavy transport vehicle injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174033,10,'V68.7XXA ','Person on outside of heavy transport vehicle injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174034,10,'V68.7XXD ','Person on outside of heavy transport vehicle injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174035,10,'V68.7XXS ','Person on outside of heavy transport vehicle injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174036,10,'V68.9XXA ','Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174037,10,'V68.9XXD ','Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174038,10,'V68.9XXS ','Unspecified occupant of heavy transport vehicle injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174039,10,'V69.00XA ','Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174040,10,'V69.00XD ','Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174041,10,'V69.00XS ','Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174042,10,'V69.09XA ','Driver of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174043,10,'V69.09XD ','Driver of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174044,10,'V69.09XS ','Driver of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174045,10,'V69.10XA ','Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174046,10,'V69.10XD ','Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174047,10,'V69.10XS ','Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174048,10,'V69.19XA ','Passenger in heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174049,10,'V69.19XD ','Passenger in heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174050,10,'V69.19XS ','Passenger in heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174051,10,'V69.20XA ','Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174052,10,'V69.20XD ','Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174053,10,'V69.20XS ','Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174054,10,'V69.29XA ','Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174055,10,'V69.29XD ','Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174056,10,'V69.29XS ','Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174057,10,'V69.3XXA ','Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174058,10,'V69.3XXD ','Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174059,10,'V69.3XXS ','Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174060,10,'V69.40XA ','Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174061,10,'V69.40XD ','Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174062,10,'V69.40XS ','Driver of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174063,10,'V69.49XA ','Driver of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174064,10,'V69.49XD ','Driver of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174065,10,'V69.49XS ','Driver of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174066,10,'V69.50XA ','Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174067,10,'V69.50XD ','Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174068,10,'V69.50XS ','Passenger in heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174069,10,'V69.59XA ','Passenger in heavy transport vehicle injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174070,10,'V69.59XD ','Passenger in heavy transport vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174071,10,'V69.59XS ','Passenger in heavy transport vehicle injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174072,10,'V69.60XA ','Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174073,10,'V69.60XD ','Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174074,10,'V69.60XS ','Unspecified occupant of heavy transport vehicle injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174075,10,'V69.69XA ','Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174076,10,'V69.69XD ','Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174077,10,'V69.69XS ','Unspecified occupant of heavy transport vehicle injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174078,10,'V69.81XA ','Occupant (driver) (passenger) of heavy transport vehicle injured in transport accidents with military vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174079,10,'V69.81XD ','Occupant (driver) (passenger) of heavy transport vehicle injured in transport accidents with military vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174080,10,'V69.81XS ','Occupant (driver) (passenger) of heavy transport vehicle injured in transport accidents with military vehicle, sequela','Y','0000-00-00 00:00:00'),(174081,10,'V69.88XA ','Occupant (driver) (passenger) of heavy transport vehicle injured in other specified transport accidents, initial encounter','Y','0000-00-00 00:00:00'),(174082,10,'V69.88XD ','Occupant (driver) (passenger) of heavy transport vehicle injured in other specified transport accidents, subsequent encounter','Y','0000-00-00 00:00:00'),(174083,10,'V69.88XS ','Occupant (driver) (passenger) of heavy transport vehicle injured in other specified transport accidents, sequela','Y','0000-00-00 00:00:00'),(174084,10,'V69.9XXA ','Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174085,10,'V69.9XXD ','Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174086,10,'V69.9XXS ','Occupant (driver) (passenger) of heavy transport vehicle injured in unspecified traffic accident, sequela','Y','0000-00-00 00:00:00'),(174087,10,'V70.0XXA ','Driver of bus injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174088,10,'V70.0XXD ','Driver of bus injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174089,10,'V70.0XXS ','Driver of bus injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174090,10,'V70.1XXA ','Passenger on bus injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174091,10,'V70.1XXD ','Passenger on bus injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174092,10,'V70.1XXS ','Passenger on bus injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174093,10,'V70.2XXA ','Person on outside of bus injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174094,10,'V70.2XXD ','Person on outside of bus injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174095,10,'V70.2XXS ','Person on outside of bus injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174096,10,'V70.3XXA ','Unspecified occupant of bus injured in collision with pedestrian or animal in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174097,10,'V70.3XXD ','Unspecified occupant of bus injured in collision with pedestrian or animal in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174098,10,'V70.3XXS ','Unspecified occupant of bus injured in collision with pedestrian or animal in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174099,10,'V70.4XXA ','Person boarding or alighting from bus injured in collision with pedestrian or animal, initial encounter','Y','0000-00-00 00:00:00'),(174100,10,'V70.4XXD ','Person boarding or alighting from bus injured in collision with pedestrian or animal, subsequent encounter','Y','0000-00-00 00:00:00'),(174101,10,'V70.4XXS ','Person boarding or alighting from bus injured in collision with pedestrian or animal, sequela','Y','0000-00-00 00:00:00'),(174102,10,'V70.5XXA ','Driver of bus injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174103,10,'V70.5XXD ','Driver of bus injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174104,10,'V70.5XXS ','Driver of bus injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174105,10,'V70.6XXA ','Passenger on bus injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174106,10,'V70.6XXD ','Passenger on bus injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174107,10,'V70.6XXS ','Passenger on bus injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174108,10,'V70.7XXA ','Person on outside of bus injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174109,10,'V70.7XXD ','Person on outside of bus injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174110,10,'V70.7XXS ','Person on outside of bus injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174111,10,'V70.9XXA ','Unspecified occupant of bus injured in collision with pedestrian or animal in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174112,10,'V70.9XXD ','Unspecified occupant of bus injured in collision with pedestrian or animal in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174113,10,'V70.9XXS ','Unspecified occupant of bus injured in collision with pedestrian or animal in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174114,10,'V71.0XXA ','Driver of bus injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174115,10,'V71.0XXD ','Driver of bus injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174116,10,'V71.0XXS ','Driver of bus injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174117,10,'V71.1XXA ','Passenger on bus injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174118,10,'V71.1XXD ','Passenger on bus injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174119,10,'V71.1XXS ','Passenger on bus injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174120,10,'V71.2XXA ','Person on outside of bus injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174121,10,'V71.2XXD ','Person on outside of bus injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174122,10,'V71.2XXS ','Person on outside of bus injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174123,10,'V71.3XXA ','Unspecified occupant of bus injured in collision with pedal cycle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174124,10,'V71.3XXD ','Unspecified occupant of bus injured in collision with pedal cycle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174125,10,'V71.3XXS ','Unspecified occupant of bus injured in collision with pedal cycle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174126,10,'V71.4XXA ','Person boarding or alighting from bus injured in collision with pedal cycle, initial encounter','Y','0000-00-00 00:00:00'),(174127,10,'V71.4XXD ','Person boarding or alighting from bus injured in collision with pedal cycle, subsequent encounter','Y','0000-00-00 00:00:00'),(174128,10,'V71.4XXS ','Person boarding or alighting from bus injured in collision with pedal cycle, sequela','Y','0000-00-00 00:00:00'),(174129,10,'V71.5XXA ','Driver of bus injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174130,10,'V71.5XXD ','Driver of bus injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174131,10,'V71.5XXS ','Driver of bus injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174132,10,'V71.6XXA ','Passenger on bus injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174133,10,'V71.6XXD ','Passenger on bus injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174134,10,'V71.6XXS ','Passenger on bus injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174135,10,'V71.7XXA ','Person on outside of bus injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174136,10,'V71.7XXD ','Person on outside of bus injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174137,10,'V71.7XXS ','Person on outside of bus injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174138,10,'V71.9XXA ','Unspecified occupant of bus injured in collision with pedal cycle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174139,10,'V71.9XXD ','Unspecified occupant of bus injured in collision with pedal cycle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174140,10,'V71.9XXS ','Unspecified occupant of bus injured in collision with pedal cycle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174141,10,'V72.0XXA ','Driver of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174142,10,'V72.0XXD ','Driver of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174143,10,'V72.0XXS ','Driver of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174144,10,'V72.1XXA ','Passenger on bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174145,10,'V72.1XXD ','Passenger on bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174146,10,'V72.1XXS ','Passenger on bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174147,10,'V72.2XXA ','Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174148,10,'V72.2XXD ','Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174149,10,'V72.2XXS ','Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174150,10,'V72.3XXA ','Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174151,10,'V72.3XXD ','Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174152,10,'V72.3XXS ','Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174153,10,'V72.4XXA ','Person boarding or alighting from bus injured in collision with two- or three-wheeled motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174154,10,'V72.4XXD ','Person boarding or alighting from bus injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174155,10,'V72.4XXS ','Person boarding or alighting from bus injured in collision with two- or three-wheeled motor vehicle, sequela','Y','0000-00-00 00:00:00'),(174156,10,'V72.5XXA ','Driver of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174157,10,'V72.5XXD ','Driver of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174158,10,'V72.5XXS ','Driver of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174159,10,'V72.6XXA ','Passenger on bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174160,10,'V72.6XXD ','Passenger on bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174161,10,'V72.6XXS ','Passenger on bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174162,10,'V72.7XXA ','Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174163,10,'V72.7XXD ','Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174164,10,'V72.7XXS ','Person on outside of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174165,10,'V72.9XXA ','Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174166,10,'V72.9XXD ','Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174167,10,'V72.9XXS ','Unspecified occupant of bus injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174168,10,'V73.0XXA ','Driver of bus injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174169,10,'V73.0XXD ','Driver of bus injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174170,10,'V73.0XXS ','Driver of bus injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174171,10,'V73.1XXA ','Passenger on bus injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174172,10,'V73.1XXD ','Passenger on bus injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174173,10,'V73.1XXS ','Passenger on bus injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174174,10,'V73.2XXA ','Person on outside of bus injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174175,10,'V73.2XXD ','Person on outside of bus injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174176,10,'V73.2XXS ','Person on outside of bus injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174177,10,'V73.3XXA ','Unspecified occupant of bus injured in collision with car, pick-up truck or van in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174178,10,'V73.3XXD ','Unspecified occupant of bus injured in collision with car, pick-up truck or van in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174179,10,'V73.3XXS ','Unspecified occupant of bus injured in collision with car, pick-up truck or van in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174180,10,'V73.4XXA ','Person boarding or alighting from bus injured in collision with car, pick-up truck or van, initial encounter','Y','0000-00-00 00:00:00'),(174181,10,'V73.4XXD ','Person boarding or alighting from bus injured in collision with car, pick-up truck or van, subsequent encounter','Y','0000-00-00 00:00:00'),(174182,10,'V73.4XXS ','Person boarding or alighting from bus injured in collision with car, pick-up truck or van, sequela','Y','0000-00-00 00:00:00'),(174183,10,'V73.5XXA ','Driver of bus injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174184,10,'V73.5XXD ','Driver of bus injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174185,10,'V73.5XXS ','Driver of bus injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174186,10,'V73.6XXA ','Passenger on bus injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174187,10,'V73.6XXD ','Passenger on bus injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174188,10,'V73.6XXS ','Passenger on bus injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174189,10,'V73.7XXA ','Person on outside of bus injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174190,10,'V73.7XXD ','Person on outside of bus injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174191,10,'V73.7XXS ','Person on outside of bus injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174192,10,'V73.9XXA ','Unspecified occupant of bus injured in collision with car, pick-up truck or van in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174193,10,'V73.9XXD ','Unspecified occupant of bus injured in collision with car, pick-up truck or van in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174194,10,'V73.9XXS ','Unspecified occupant of bus injured in collision with car, pick-up truck or van in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174195,10,'V74.0XXA ','Driver of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174196,10,'V74.0XXD ','Driver of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174197,10,'V74.0XXS ','Driver of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174198,10,'V74.1XXA ','Passenger on bus injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174199,10,'V74.1XXD ','Passenger on bus injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174200,10,'V74.1XXS ','Passenger on bus injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174201,10,'V74.2XXA ','Person on outside of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174202,10,'V74.2XXD ','Person on outside of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174203,10,'V74.2XXS ','Person on outside of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174204,10,'V74.3XXA ','Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174205,10,'V74.3XXD ','Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174206,10,'V74.3XXS ','Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174207,10,'V74.4XXA ','Person boarding or alighting from bus injured in collision with heavy transport vehicle or bus, initial encounter','Y','0000-00-00 00:00:00'),(174208,10,'V74.4XXD ','Person boarding or alighting from bus injured in collision with heavy transport vehicle or bus, subsequent encounter','Y','0000-00-00 00:00:00'),(174209,10,'V74.4XXS ','Person boarding or alighting from bus injured in collision with heavy transport vehicle or bus, sequela','Y','0000-00-00 00:00:00'),(174210,10,'V74.5XXA ','Driver of bus injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174211,10,'V74.5XXD ','Driver of bus injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174212,10,'V74.5XXS ','Driver of bus injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174213,10,'V74.6XXA ','Passenger on bus injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174214,10,'V74.6XXD ','Passenger on bus injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174215,10,'V74.6XXS ','Passenger on bus injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174216,10,'V74.7XXA ','Person on outside of bus injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174217,10,'V74.7XXD ','Person on outside of bus injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174218,10,'V74.7XXS ','Person on outside of bus injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174219,10,'V74.9XXA ','Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174220,10,'V74.9XXD ','Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174221,10,'V74.9XXS ','Unspecified occupant of bus injured in collision with heavy transport vehicle or bus in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174222,10,'V75.0XXA ','Driver of bus injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174223,10,'V75.0XXD ','Driver of bus injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174224,10,'V75.0XXS ','Driver of bus injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174225,10,'V75.1XXA ','Passenger on bus injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174226,10,'V75.1XXD ','Passenger on bus injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174227,10,'V75.1XXS ','Passenger on bus injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174228,10,'V75.2XXA ','Person on outside of bus injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174229,10,'V75.2XXD ','Person on outside of bus injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174230,10,'V75.2XXS ','Person on outside of bus injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174231,10,'V75.3XXA ','Unspecified occupant of bus injured in collision with railway train or railway vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174232,10,'V75.3XXD ','Unspecified occupant of bus injured in collision with railway train or railway vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174233,10,'V75.3XXS ','Unspecified occupant of bus injured in collision with railway train or railway vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174234,10,'V75.4XXA ','Person boarding or alighting from bus injured in collision with railway train or railway vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174235,10,'V75.4XXD ','Person boarding or alighting from bus injured in collision with railway train or railway vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174236,10,'V75.4XXS ','Person boarding or alighting from bus injured in collision with railway train or railway vehicle, sequela','Y','0000-00-00 00:00:00'),(174237,10,'V75.5XXA ','Driver of bus injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174238,10,'V75.5XXD ','Driver of bus injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174239,10,'V75.5XXS ','Driver of bus injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174240,10,'V75.6XXA ','Passenger on bus injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174241,10,'V75.6XXD ','Passenger on bus injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174242,10,'V75.6XXS ','Passenger on bus injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174243,10,'V75.7XXA ','Person on outside of bus injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174244,10,'V75.7XXD ','Person on outside of bus injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174245,10,'V75.7XXS ','Person on outside of bus injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174246,10,'V75.9XXA ','Unspecified occupant of bus injured in collision with railway train or railway vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174247,10,'V75.9XXD ','Unspecified occupant of bus injured in collision with railway train or railway vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174248,10,'V75.9XXS ','Unspecified occupant of bus injured in collision with railway train or railway vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174249,10,'V76.0XXA ','Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174250,10,'V76.0XXD ','Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174251,10,'V76.0XXS ','Driver of bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174252,10,'V76.1XXA ','Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174253,10,'V76.1XXD ','Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174254,10,'V76.1XXS ','Passenger on bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174255,10,'V76.2XXA ','Person on outside of bus injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174256,10,'V76.2XXD ','Person on outside of bus injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174257,10,'V76.2XXS ','Person on outside of bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174258,10,'V76.3XXA ','Unspecified occupant of bus injured in collision with other nonmotor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174259,10,'V76.3XXD ','Unspecified occupant of bus injured in collision with other nonmotor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174260,10,'V76.3XXS ','Unspecified occupant of bus injured in collision with other nonmotor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174261,10,'V76.4XXA ','Person boarding or alighting from bus injured in collision with other nonmotor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174262,10,'V76.4XXD ','Person boarding or alighting from bus injured in collision with other nonmotor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174263,10,'V76.4XXS ','Person boarding or alighting from bus injured in collision with other nonmotor vehicle, sequela','Y','0000-00-00 00:00:00'),(174264,10,'V76.5XXA ','Driver of bus injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174265,10,'V76.5XXD ','Driver of bus injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174266,10,'V76.5XXS ','Driver of bus injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174267,10,'V76.6XXA ','Passenger on bus injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174268,10,'V76.6XXD ','Passenger on bus injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174269,10,'V76.6XXS ','Passenger on bus injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174270,10,'V76.7XXA ','Person on outside of bus injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174271,10,'V76.7XXD ','Person on outside of bus injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174272,10,'V76.7XXS ','Person on outside of bus injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174273,10,'V76.9XXA ','Unspecified occupant of bus injured in collision with other nonmotor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174274,10,'V76.9XXD ','Unspecified occupant of bus injured in collision with other nonmotor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174275,10,'V76.9XXS ','Unspecified occupant of bus injured in collision with other nonmotor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174276,10,'V77.0XXA ','Driver of bus injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174277,10,'V77.0XXD ','Driver of bus injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174278,10,'V77.0XXS ','Driver of bus injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174279,10,'V77.1XXA ','Passenger on bus injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174280,10,'V77.1XXD ','Passenger on bus injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174281,10,'V77.1XXS ','Passenger on bus injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174282,10,'V77.2XXA ','Person on outside of bus injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174283,10,'V77.2XXD ','Person on outside of bus injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174284,10,'V77.2XXS ','Person on outside of bus injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174285,10,'V77.3XXA ','Unspecified occupant of bus injured in collision with fixed or stationary object in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174286,10,'V77.3XXD ','Unspecified occupant of bus injured in collision with fixed or stationary object in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174287,10,'V77.3XXS ','Unspecified occupant of bus injured in collision with fixed or stationary object in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174288,10,'V77.4XXA ','Person boarding or alighting from bus injured in collision with fixed or stationary object, initial encounter','Y','0000-00-00 00:00:00'),(174289,10,'V77.4XXD ','Person boarding or alighting from bus injured in collision with fixed or stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(174290,10,'V77.4XXS ','Person boarding or alighting from bus injured in collision with fixed or stationary object, sequela','Y','0000-00-00 00:00:00'),(174291,10,'V77.5XXA ','Driver of bus injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174292,10,'V77.5XXD ','Driver of bus injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174293,10,'V77.5XXS ','Driver of bus injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174294,10,'V77.6XXA ','Passenger on bus injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174295,10,'V77.6XXD ','Passenger on bus injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174296,10,'V77.6XXS ','Passenger on bus injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174297,10,'V77.7XXA ','Person on outside of bus injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174298,10,'V77.7XXD ','Person on outside of bus injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174299,10,'V77.7XXS ','Person on outside of bus injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174300,10,'V77.9XXA ','Unspecified occupant of bus injured in collision with fixed or stationary object in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174301,10,'V77.9XXD ','Unspecified occupant of bus injured in collision with fixed or stationary object in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174302,10,'V77.9XXS ','Unspecified occupant of bus injured in collision with fixed or stationary object in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174303,10,'V78.0XXA ','Driver of bus injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174304,10,'V78.0XXD ','Driver of bus injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174305,10,'V78.0XXS ','Driver of bus injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174306,10,'V78.1XXA ','Passenger on bus injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174307,10,'V78.1XXD ','Passenger on bus injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174308,10,'V78.1XXS ','Passenger on bus injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174309,10,'V78.2XXA ','Person on outside of bus injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174310,10,'V78.2XXD ','Person on outside of bus injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174311,10,'V78.2XXS ','Person on outside of bus injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174312,10,'V78.3XXA ','Unspecified occupant of bus injured in noncollision transport accident in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174313,10,'V78.3XXD ','Unspecified occupant of bus injured in noncollision transport accident in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174314,10,'V78.3XXS ','Unspecified occupant of bus injured in noncollision transport accident in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174315,10,'V78.4XXA ','Person boarding or alighting from bus injured in noncollision transport accident, initial encounter','Y','0000-00-00 00:00:00'),(174316,10,'V78.4XXD ','Person boarding or alighting from bus injured in noncollision transport accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174317,10,'V78.4XXS ','Person boarding or alighting from bus injured in noncollision transport accident, sequela','Y','0000-00-00 00:00:00'),(174318,10,'V78.5XXA ','Driver of bus injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174319,10,'V78.5XXD ','Driver of bus injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174320,10,'V78.5XXS ','Driver of bus injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174321,10,'V78.6XXA ','Passenger on bus injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174322,10,'V78.6XXD ','Passenger on bus injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174323,10,'V78.6XXS ','Passenger on bus injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174324,10,'V78.7XXA ','Person on outside of bus injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174325,10,'V78.7XXD ','Person on outside of bus injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174326,10,'V78.7XXS ','Person on outside of bus injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174327,10,'V78.9XXA ','Unspecified occupant of bus injured in noncollision transport accident in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174328,10,'V78.9XXD ','Unspecified occupant of bus injured in noncollision transport accident in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174329,10,'V78.9XXS ','Unspecified occupant of bus injured in noncollision transport accident in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174330,10,'V79.00XA ','Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174331,10,'V79.00XD ','Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174332,10,'V79.00XS ','Driver of bus injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174333,10,'V79.09XA ','Driver of bus injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174334,10,'V79.09XD ','Driver of bus injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174335,10,'V79.09XS ','Driver of bus injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174336,10,'V79.10XA ','Passenger on bus injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174337,10,'V79.10XD ','Passenger on bus injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174338,10,'V79.10XS ','Passenger on bus injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174339,10,'V79.19XA ','Passenger on bus injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174340,10,'V79.19XD ','Passenger on bus injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174341,10,'V79.19XS ','Passenger on bus injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174342,10,'V79.20XA ','Unspecified bus occupant injured in collision with unspecified motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174343,10,'V79.20XD ','Unspecified bus occupant injured in collision with unspecified motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174344,10,'V79.20XS ','Unspecified bus occupant injured in collision with unspecified motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174345,10,'V79.29XA ','Unspecified bus occupant injured in collision with other motor vehicles in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174346,10,'V79.29XD ','Unspecified bus occupant injured in collision with other motor vehicles in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174347,10,'V79.29XS ','Unspecified bus occupant injured in collision with other motor vehicles in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174348,10,'V79.3XXA ','Bus occupant (driver) (passenger) injured in unspecified nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174349,10,'V79.3XXD ','Bus occupant (driver) (passenger) injured in unspecified nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174350,10,'V79.3XXS ','Bus occupant (driver) (passenger) injured in unspecified nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174351,10,'V79.40XA ','Driver of bus injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174352,10,'V79.40XD ','Driver of bus injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174353,10,'V79.40XS ','Driver of bus injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174354,10,'V79.49XA ','Driver of bus injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174355,10,'V79.49XD ','Driver of bus injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174356,10,'V79.49XS ','Driver of bus injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174357,10,'V79.50XA ','Passenger on bus injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174358,10,'V79.50XD ','Passenger on bus injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174359,10,'V79.50XS ','Passenger on bus injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174360,10,'V79.59XA ','Passenger on bus injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174361,10,'V79.59XD ','Passenger on bus injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174362,10,'V79.59XS ','Passenger on bus injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174363,10,'V79.60XA ','Unspecified bus occupant injured in collision with unspecified motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174364,10,'V79.60XD ','Unspecified bus occupant injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174365,10,'V79.60XS ','Unspecified bus occupant injured in collision with unspecified motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174366,10,'V79.69XA ','Unspecified bus occupant injured in collision with other motor vehicles in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174367,10,'V79.69XD ','Unspecified bus occupant injured in collision with other motor vehicles in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174368,10,'V79.69XS ','Unspecified bus occupant injured in collision with other motor vehicles in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174369,10,'V79.81XA ','Bus occupant (driver) (passenger) injured in transport accidents with military vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174370,10,'V79.81XD ','Bus occupant (driver) (passenger) injured in transport accidents with military vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174371,10,'V79.81XS ','Bus occupant (driver) (passenger) injured in transport accidents with military vehicle, sequela','Y','0000-00-00 00:00:00'),(174372,10,'V79.88XA ','Bus occupant (driver) (passenger) injured in other specified transport accidents, initial encounter','Y','0000-00-00 00:00:00'),(174373,10,'V79.88XD ','Bus occupant (driver) (passenger) injured in other specified transport accidents, subsequent encounter','Y','0000-00-00 00:00:00'),(174374,10,'V79.88XS ','Bus occupant (driver) (passenger) injured in other specified transport accidents, sequela','Y','0000-00-00 00:00:00'),(174375,10,'V79.9XXA ','Bus occupant (driver) (passenger) injured in unspecified traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174376,10,'V79.9XXD ','Bus occupant (driver) (passenger) injured in unspecified traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174377,10,'V79.9XXS ','Bus occupant (driver) (passenger) injured in unspecified traffic accident, sequela','Y','0000-00-00 00:00:00'),(174378,10,'V80.010A ','Animal-rider injured by fall from or being thrown from horse in noncollision accident, initial encounter','Y','0000-00-00 00:00:00'),(174379,10,'V80.010D ','Animal-rider injured by fall from or being thrown from horse in noncollision accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174380,10,'V80.010S ','Animal-rider injured by fall from or being thrown from horse in noncollision accident, sequela','Y','0000-00-00 00:00:00'),(174381,10,'V80.018A ','Animal-rider injured by fall from or being thrown from other animal in noncollision accident, initial encounter','Y','0000-00-00 00:00:00'),(174382,10,'V80.018D ','Animal-rider injured by fall from or being thrown from other animal in noncollision accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174383,10,'V80.018S ','Animal-rider injured by fall from or being thrown from other animal in noncollision accident, sequela','Y','0000-00-00 00:00:00'),(174384,10,'V80.02XA ','Occupant of animal-drawn vehicle injured by fall from or being thrown from animal-drawn vehicle in noncollision accident, initial encounter','Y','0000-00-00 00:00:00'),(174385,10,'V80.02XD ','Occupant of animal-drawn vehicle injured by fall from or being thrown from animal-drawn vehicle in noncollision accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174386,10,'V80.02XS ','Occupant of animal-drawn vehicle injured by fall from or being thrown from animal-drawn vehicle in noncollision accident, sequela','Y','0000-00-00 00:00:00'),(174387,10,'V80.11XA ','Animal-rider injured in collision with pedestrian or animal, initial encounter','Y','0000-00-00 00:00:00'),(174388,10,'V80.11XD ','Animal-rider injured in collision with pedestrian or animal, subsequent encounter','Y','0000-00-00 00:00:00'),(174389,10,'V80.11XS ','Animal-rider injured in collision with pedestrian or animal, sequela','Y','0000-00-00 00:00:00'),(174390,10,'V80.12XA ','Occupant of animal-drawn vehicle injured in collision with pedestrian or animal, initial encounter','Y','0000-00-00 00:00:00'),(174391,10,'V80.12XD ','Occupant of animal-drawn vehicle injured in collision with pedestrian or animal, subsequent encounter','Y','0000-00-00 00:00:00'),(174392,10,'V80.12XS ','Occupant of animal-drawn vehicle injured in collision with pedestrian or animal, sequela','Y','0000-00-00 00:00:00'),(174393,10,'V80.21XA ','Animal-rider injured in collision with pedal cycle, initial encounter','Y','0000-00-00 00:00:00'),(174394,10,'V80.21XD ','Animal-rider injured in collision with pedal cycle, subsequent encounter','Y','0000-00-00 00:00:00'),(174395,10,'V80.21XS ','Animal-rider injured in collision with pedal cycle, sequela','Y','0000-00-00 00:00:00'),(174396,10,'V80.22XA ','Occupant of animal-drawn vehicle injured in collision with pedal cycle, initial encounter','Y','0000-00-00 00:00:00'),(174397,10,'V80.22XD ','Occupant of animal-drawn vehicle injured in collision with pedal cycle, subsequent encounter','Y','0000-00-00 00:00:00'),(174398,10,'V80.22XS ','Occupant of animal-drawn vehicle injured in collision with pedal cycle, sequela','Y','0000-00-00 00:00:00'),(174399,10,'V80.31XA ','Animal-rider injured in collision with two- or three-wheeled motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174400,10,'V80.31XD ','Animal-rider injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174401,10,'V80.31XS ','Animal-rider injured in collision with two- or three-wheeled motor vehicle, sequela','Y','0000-00-00 00:00:00'),(174402,10,'V80.32XA ','Occupant of animal-drawn vehicle injured in collision with two- or three-wheeled motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174403,10,'V80.32XD ','Occupant of animal-drawn vehicle injured in collision with two- or three-wheeled motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174404,10,'V80.32XS ','Occupant of animal-drawn vehicle injured in collision with two- or three-wheeled motor vehicle, sequela','Y','0000-00-00 00:00:00'),(174405,10,'V80.41XA ','Animal-rider injured in collision with car, pick-up truck, van, heavy transport vehicle or bus, initial encounter','Y','0000-00-00 00:00:00'),(174406,10,'V80.41XD ','Animal-rider injured in collision with car, pick-up truck, van, heavy transport vehicle or bus, subsequent encounter','Y','0000-00-00 00:00:00'),(174407,10,'V80.41XS ','Animal-rider injured in collision with car, pick-up truck, van, heavy transport vehicle or bus, sequela','Y','0000-00-00 00:00:00'),(174408,10,'V80.42XA ','Occupant of animal-drawn vehicle injured in collision with car, pick-up truck, van, heavy transport vehicle or bus, initial encounter','Y','0000-00-00 00:00:00'),(174409,10,'V80.42XD ','Occupant of animal-drawn vehicle injured in collision with car, pick-up truck, van, heavy transport vehicle or bus, subsequent encounter','Y','0000-00-00 00:00:00'),(174410,10,'V80.42XS ','Occupant of animal-drawn vehicle injured in collision with car, pick-up truck, van, heavy transport vehicle or bus, sequela','Y','0000-00-00 00:00:00'),(174411,10,'V80.51XA ','Animal-rider injured in collision with other specified motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174412,10,'V80.51XD ','Animal-rider injured in collision with other specified motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174413,10,'V80.51XS ','Animal-rider injured in collision with other specified motor vehicle, sequela','Y','0000-00-00 00:00:00'),(174414,10,'V80.52XA ','Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174415,10,'V80.52XD ','Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174416,10,'V80.52XS ','Occupant of animal-drawn vehicle injured in collision with other specified motor vehicle, sequela','Y','0000-00-00 00:00:00'),(174417,10,'V80.61XA ','Animal-rider injured in collision with railway train or railway vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174418,10,'V80.61XD ','Animal-rider injured in collision with railway train or railway vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174419,10,'V80.61XS ','Animal-rider injured in collision with railway train or railway vehicle, sequela','Y','0000-00-00 00:00:00'),(174420,10,'V80.62XA ','Occupant of animal-drawn vehicle injured in collision with railway train or railway vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174421,10,'V80.62XD ','Occupant of animal-drawn vehicle injured in collision with railway train or railway vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174422,10,'V80.62XS ','Occupant of animal-drawn vehicle injured in collision with railway train or railway vehicle, sequela','Y','0000-00-00 00:00:00'),(174423,10,'V80.710A ','Animal-rider injured in collision with other animal being ridden, initial encounter','Y','0000-00-00 00:00:00'),(174424,10,'V80.710D ','Animal-rider injured in collision with other animal being ridden, subsequent encounter','Y','0000-00-00 00:00:00'),(174425,10,'V80.710S ','Animal-rider injured in collision with other animal being ridden, sequela','Y','0000-00-00 00:00:00'),(174426,10,'V80.711A ','Occupant of animal-drawn vehicle injured in collision with animal being ridden, initial encounter','Y','0000-00-00 00:00:00'),(174427,10,'V80.711D ','Occupant of animal-drawn vehicle injured in collision with animal being ridden, subsequent encounter','Y','0000-00-00 00:00:00'),(174428,10,'V80.711S ','Occupant of animal-drawn vehicle injured in collision with animal being ridden, sequela','Y','0000-00-00 00:00:00'),(174429,10,'V80.720A ','Animal-rider injured in collision with animal-drawn vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174430,10,'V80.720D ','Animal-rider injured in collision with animal-drawn vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174431,10,'V80.720S ','Animal-rider injured in collision with animal-drawn vehicle, sequela','Y','0000-00-00 00:00:00'),(174432,10,'V80.721A ','Occupant of animal-drawn vehicle injured in collision with other animal-drawn vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174433,10,'V80.721D ','Occupant of animal-drawn vehicle injured in collision with other animal-drawn vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174434,10,'V80.721S ','Occupant of animal-drawn vehicle injured in collision with other animal-drawn vehicle, sequela','Y','0000-00-00 00:00:00'),(174435,10,'V80.730A ','Animal-rider injured in collision with streetcar, initial encounter','Y','0000-00-00 00:00:00'),(174436,10,'V80.730D ','Animal-rider injured in collision with streetcar, subsequent encounter','Y','0000-00-00 00:00:00'),(174437,10,'V80.730S ','Animal-rider injured in collision with streetcar, sequela','Y','0000-00-00 00:00:00'),(174438,10,'V80.731A ','Occupant of animal-drawn vehicle injured in collision with streetcar, initial encounter','Y','0000-00-00 00:00:00'),(174439,10,'V80.731D ','Occupant of animal-drawn vehicle injured in collision with streetcar, subsequent encounter','Y','0000-00-00 00:00:00'),(174440,10,'V80.731S ','Occupant of animal-drawn vehicle injured in collision with streetcar, sequela','Y','0000-00-00 00:00:00'),(174441,10,'V80.790A ','Animal-rider injured in collision with other nonmotor vehicles, initial encounter','Y','0000-00-00 00:00:00'),(174442,10,'V80.790D ','Animal-rider injured in collision with other nonmotor vehicles, subsequent encounter','Y','0000-00-00 00:00:00'),(174443,10,'V80.790S ','Animal-rider injured in collision with other nonmotor vehicles, sequela','Y','0000-00-00 00:00:00'),(174444,10,'V80.791A ','Occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles, initial encounter','Y','0000-00-00 00:00:00'),(174445,10,'V80.791D ','Occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles, subsequent encounter','Y','0000-00-00 00:00:00'),(174446,10,'V80.791S ','Occupant of animal-drawn vehicle injured in collision with other nonmotor vehicles, sequela','Y','0000-00-00 00:00:00'),(174447,10,'V80.81XA ','Animal-rider injured in collision with fixed or stationary object, initial encounter','Y','0000-00-00 00:00:00'),(174448,10,'V80.81XD ','Animal-rider injured in collision with fixed or stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(174449,10,'V80.81XS ','Animal-rider injured in collision with fixed or stationary object, sequela','Y','0000-00-00 00:00:00'),(174450,10,'V80.82XA ','Occupant of animal-drawn vehicle injured in collision with fixed or stationary object, initial encounter','Y','0000-00-00 00:00:00'),(174451,10,'V80.82XD ','Occupant of animal-drawn vehicle injured in collision with fixed or stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(174452,10,'V80.82XS ','Occupant of animal-drawn vehicle injured in collision with fixed or stationary object, sequela','Y','0000-00-00 00:00:00'),(174453,10,'V80.910A ','Animal-rider injured in transport accident with military vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174454,10,'V80.910D ','Animal-rider injured in transport accident with military vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174455,10,'V80.910S ','Animal-rider injured in transport accident with military vehicle, sequela','Y','0000-00-00 00:00:00'),(174456,10,'V80.918A ','Animal-rider injured in other transport accident, initial encounter','Y','0000-00-00 00:00:00'),(174457,10,'V80.918D ','Animal-rider injured in other transport accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174458,10,'V80.918S ','Animal-rider injured in other transport accident, sequela','Y','0000-00-00 00:00:00'),(174459,10,'V80.919A ','Animal-rider injured in unspecified transport accident, initial encounter','Y','0000-00-00 00:00:00'),(174460,10,'V80.919D ','Animal-rider injured in unspecified transport accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174461,10,'V80.919S ','Animal-rider injured in unspecified transport accident, sequela','Y','0000-00-00 00:00:00'),(174462,10,'V80.920A ','Occupant of animal-drawn vehicle injured in transport accident with military vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174463,10,'V80.920D ','Occupant of animal-drawn vehicle injured in transport accident with military vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174464,10,'V80.920S ','Occupant of animal-drawn vehicle injured in transport accident with military vehicle, sequela','Y','0000-00-00 00:00:00'),(174465,10,'V80.928A ','Occupant of animal-drawn vehicle injured in other transport accident, initial encounter','Y','0000-00-00 00:00:00'),(174466,10,'V80.928D ','Occupant of animal-drawn vehicle injured in other transport accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174467,10,'V80.928S ','Occupant of animal-drawn vehicle injured in other transport accident, sequela','Y','0000-00-00 00:00:00'),(174468,10,'V80.929A ','Occupant of animal-drawn vehicle injured in unspecified transport accident, initial encounter','Y','0000-00-00 00:00:00'),(174469,10,'V80.929D ','Occupant of animal-drawn vehicle injured in unspecified transport accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174470,10,'V80.929S ','Occupant of animal-drawn vehicle injured in unspecified transport accident, sequela','Y','0000-00-00 00:00:00'),(174471,10,'V81.0XXA ','Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174472,10,'V81.0XXD ','Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174473,10,'V81.0XXS ','Occupant of railway train or railway vehicle injured in collision with motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174474,10,'V81.1XXA ','Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174475,10,'V81.1XXD ','Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174476,10,'V81.1XXS ','Occupant of railway train or railway vehicle injured in collision with motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174477,10,'V81.2XXA ','Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock, initial encounter','Y','0000-00-00 00:00:00'),(174478,10,'V81.2XXD ','Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock, subsequent encounter','Y','0000-00-00 00:00:00'),(174479,10,'V81.2XXS ','Occupant of railway train or railway vehicle injured in collision with or hit by rolling stock, sequela','Y','0000-00-00 00:00:00'),(174480,10,'V81.3XXA ','Occupant of railway train or railway vehicle injured in collision with other object, initial encounter','Y','0000-00-00 00:00:00'),(174481,10,'V81.3XXD ','Occupant of railway train or railway vehicle injured in collision with other object, subsequent encounter','Y','0000-00-00 00:00:00'),(174482,10,'V81.3XXS ','Occupant of railway train or railway vehicle injured in collision with other object, sequela','Y','0000-00-00 00:00:00'),(174483,10,'V81.4XXA ','Person injured while boarding or alighting from railway train or railway vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174484,10,'V81.4XXD ','Person injured while boarding or alighting from railway train or railway vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174485,10,'V81.4XXS ','Person injured while boarding or alighting from railway train or railway vehicle, sequela','Y','0000-00-00 00:00:00'),(174486,10,'V81.5XXA ','Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174487,10,'V81.5XXD ','Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174488,10,'V81.5XXS ','Occupant of railway train or railway vehicle injured by fall in railway train or railway vehicle, sequela','Y','0000-00-00 00:00:00'),(174489,10,'V81.6XXA ','Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174490,10,'V81.6XXD ','Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174491,10,'V81.6XXS ','Occupant of railway train or railway vehicle injured by fall from railway train or railway vehicle, sequela','Y','0000-00-00 00:00:00'),(174492,10,'V81.7XXA ','Occupant of railway train or railway vehicle injured in derailment without antecedent collision, initial encounter','Y','0000-00-00 00:00:00'),(174493,10,'V81.7XXD ','Occupant of railway train or railway vehicle injured in derailment without antecedent collision, subsequent encounter','Y','0000-00-00 00:00:00'),(174494,10,'V81.7XXS ','Occupant of railway train or railway vehicle injured in derailment without antecedent collision, sequela','Y','0000-00-00 00:00:00'),(174495,10,'V81.81XA ','Occupant of railway train or railway vehicle injured due to explosion or fire on train, initial encounter','Y','0000-00-00 00:00:00'),(174496,10,'V81.81XD ','Occupant of railway train or railway vehicle injured due to explosion or fire on train, subsequent encounter','Y','0000-00-00 00:00:00'),(174497,10,'V81.81XS ','Occupant of railway train or railway vehicle injured due to explosion or fire on train, sequela','Y','0000-00-00 00:00:00'),(174498,10,'V81.82XA ','Occupant of railway train or railway vehicle injured due to object falling onto train, initial encounter','Y','0000-00-00 00:00:00'),(174499,10,'V81.82XD ','Occupant of railway train or railway vehicle injured due to object falling onto train, subsequent encounter','Y','0000-00-00 00:00:00'),(174500,10,'V81.82XS ','Occupant of railway train or railway vehicle injured due to object falling onto train, sequela','Y','0000-00-00 00:00:00'),(174501,10,'V81.83XA ','Occupant of railway train or railway vehicle injured due to collision with military vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174502,10,'V81.83XD ','Occupant of railway train or railway vehicle injured due to collision with military vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174503,10,'V81.83XS ','Occupant of railway train or railway vehicle injured due to collision with military vehicle, sequela','Y','0000-00-00 00:00:00'),(174504,10,'V81.89XA ','Occupant of railway train or railway vehicle injured due to other specified railway accident, initial encounter','Y','0000-00-00 00:00:00'),(174505,10,'V81.89XD ','Occupant of railway train or railway vehicle injured due to other specified railway accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174506,10,'V81.89XS ','Occupant of railway train or railway vehicle injured due to other specified railway accident, sequela','Y','0000-00-00 00:00:00'),(174507,10,'V81.9XXA ','Occupant of railway train or railway vehicle injured in unspecified railway accident, initial encounter','Y','0000-00-00 00:00:00'),(174508,10,'V81.9XXD ','Occupant of railway train or railway vehicle injured in unspecified railway accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174509,10,'V81.9XXS ','Occupant of railway train or railway vehicle injured in unspecified railway accident, sequela','Y','0000-00-00 00:00:00'),(174510,10,'V82.0XXA ','Occupant of streetcar injured in collision with motor vehicle in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174511,10,'V82.0XXD ','Occupant of streetcar injured in collision with motor vehicle in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174512,10,'V82.0XXS ','Occupant of streetcar injured in collision with motor vehicle in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174513,10,'V82.1XXA ','Occupant of streetcar injured in collision with motor vehicle in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174514,10,'V82.1XXD ','Occupant of streetcar injured in collision with motor vehicle in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174515,10,'V82.1XXS ','Occupant of streetcar injured in collision with motor vehicle in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174516,10,'V82.2XXA ','Occupant of streetcar injured in collision with or hit by rolling stock, initial encounter','Y','0000-00-00 00:00:00'),(174517,10,'V82.2XXD ','Occupant of streetcar injured in collision with or hit by rolling stock, subsequent encounter','Y','0000-00-00 00:00:00'),(174518,10,'V82.2XXS ','Occupant of streetcar injured in collision with or hit by rolling stock, sequela','Y','0000-00-00 00:00:00'),(174519,10,'V82.3XXA ','Occupant of streetcar injured in collision with other object, initial encounter','Y','0000-00-00 00:00:00'),(174520,10,'V82.3XXD ','Occupant of streetcar injured in collision with other object, subsequent encounter','Y','0000-00-00 00:00:00'),(174521,10,'V82.3XXS ','Occupant of streetcar injured in collision with other object, sequela','Y','0000-00-00 00:00:00'),(174522,10,'V82.4XXA ','Person injured while boarding or alighting from streetcar, initial encounter','Y','0000-00-00 00:00:00'),(174523,10,'V82.4XXD ','Person injured while boarding or alighting from streetcar, subsequent encounter','Y','0000-00-00 00:00:00'),(174524,10,'V82.4XXS ','Person injured while boarding or alighting from streetcar, sequela','Y','0000-00-00 00:00:00'),(174525,10,'V82.5XXA ','Occupant of streetcar injured by fall in streetcar, initial encounter','Y','0000-00-00 00:00:00'),(174526,10,'V82.5XXD ','Occupant of streetcar injured by fall in streetcar, subsequent encounter','Y','0000-00-00 00:00:00'),(174527,10,'V82.5XXS ','Occupant of streetcar injured by fall in streetcar, sequela','Y','0000-00-00 00:00:00'),(174528,10,'V82.6XXA ','Occupant of streetcar injured by fall from streetcar, initial encounter','Y','0000-00-00 00:00:00'),(174529,10,'V82.6XXD ','Occupant of streetcar injured by fall from streetcar, subsequent encounter','Y','0000-00-00 00:00:00'),(174530,10,'V82.6XXS ','Occupant of streetcar injured by fall from streetcar, sequela','Y','0000-00-00 00:00:00'),(174531,10,'V82.7XXA ','Occupant of streetcar injured in derailment without antecedent collision, initial encounter','Y','0000-00-00 00:00:00'),(174532,10,'V82.7XXD ','Occupant of streetcar injured in derailment without antecedent collision, subsequent encounter','Y','0000-00-00 00:00:00'),(174533,10,'V82.7XXS ','Occupant of streetcar injured in derailment without antecedent collision, sequela','Y','0000-00-00 00:00:00'),(174534,10,'V82.8XXA ','Occupant of streetcar injured in other specified transport accidents, initial encounter','Y','0000-00-00 00:00:00'),(174535,10,'V82.8XXD ','Occupant of streetcar injured in other specified transport accidents, subsequent encounter','Y','0000-00-00 00:00:00'),(174536,10,'V82.8XXS ','Occupant of streetcar injured in other specified transport accidents, sequela','Y','0000-00-00 00:00:00'),(174537,10,'V82.9XXA ','Occupant of streetcar injured in unspecified traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174538,10,'V82.9XXD ','Occupant of streetcar injured in unspecified traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174539,10,'V82.9XXS ','Occupant of streetcar injured in unspecified traffic accident, sequela','Y','0000-00-00 00:00:00'),(174540,10,'V83.0XXA ','Driver of special industrial vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174541,10,'V83.0XXD ','Driver of special industrial vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174542,10,'V83.0XXS ','Driver of special industrial vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174543,10,'V83.1XXA ','Passenger of special industrial vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174544,10,'V83.1XXD ','Passenger of special industrial vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174545,10,'V83.1XXS ','Passenger of special industrial vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174546,10,'V83.2XXA ','Person on outside of special industrial vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174547,10,'V83.2XXD ','Person on outside of special industrial vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174548,10,'V83.2XXS ','Person on outside of special industrial vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174549,10,'V83.3XXA ','Unspecified occupant of special industrial vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174550,10,'V83.3XXD ','Unspecified occupant of special industrial vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174551,10,'V83.3XXS ','Unspecified occupant of special industrial vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174552,10,'V83.4XXA ','Person injured while boarding or alighting from special industrial vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174553,10,'V83.4XXD ','Person injured while boarding or alighting from special industrial vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174554,10,'V83.4XXS ','Person injured while boarding or alighting from special industrial vehicle, sequela','Y','0000-00-00 00:00:00'),(174555,10,'V83.5XXA ','Driver of special industrial vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174556,10,'V83.5XXD ','Driver of special industrial vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174557,10,'V83.5XXS ','Driver of special industrial vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174558,10,'V83.6XXA ','Passenger of special industrial vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174559,10,'V83.6XXD ','Passenger of special industrial vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174560,10,'V83.6XXS ','Passenger of special industrial vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174561,10,'V83.7XXA ','Person on outside of special industrial vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174562,10,'V83.7XXD ','Person on outside of special industrial vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174563,10,'V83.7XXS ','Person on outside of special industrial vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174564,10,'V83.9XXA ','Unspecified occupant of special industrial vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174565,10,'V83.9XXD ','Unspecified occupant of special industrial vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174566,10,'V83.9XXS ','Unspecified occupant of special industrial vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174567,10,'V84.0XXA ','Driver of special agricultural vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174568,10,'V84.0XXD ','Driver of special agricultural vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174569,10,'V84.0XXS ','Driver of special agricultural vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174570,10,'V84.1XXA ','Passenger of special agricultural vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174571,10,'V84.1XXD ','Passenger of special agricultural vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174572,10,'V84.1XXS ','Passenger of special agricultural vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174573,10,'V84.2XXA ','Person on outside of special agricultural vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174574,10,'V84.2XXD ','Person on outside of special agricultural vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174575,10,'V84.2XXS ','Person on outside of special agricultural vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174576,10,'V84.3XXA ','Unspecified occupant of special agricultural vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174577,10,'V84.3XXD ','Unspecified occupant of special agricultural vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174578,10,'V84.3XXS ','Unspecified occupant of special agricultural vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174579,10,'V84.4XXA ','Person injured while boarding or alighting from special agricultural vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174580,10,'V84.4XXD ','Person injured while boarding or alighting from special agricultural vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174581,10,'V84.4XXS ','Person injured while boarding or alighting from special agricultural vehicle, sequela','Y','0000-00-00 00:00:00'),(174582,10,'V84.5XXA ','Driver of special agricultural vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174583,10,'V84.5XXD ','Driver of special agricultural vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174584,10,'V84.5XXS ','Driver of special agricultural vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174585,10,'V84.6XXA ','Passenger of special agricultural vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174586,10,'V84.6XXD ','Passenger of special agricultural vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174587,10,'V84.6XXS ','Passenger of special agricultural vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174588,10,'V84.7XXA ','Person on outside of special agricultural vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174589,10,'V84.7XXD ','Person on outside of special agricultural vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174590,10,'V84.7XXS ','Person on outside of special agricultural vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174591,10,'V84.9XXA ','Unspecified occupant of special agricultural vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174592,10,'V84.9XXD ','Unspecified occupant of special agricultural vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174593,10,'V84.9XXS ','Unspecified occupant of special agricultural vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174594,10,'V85.0XXA ','Driver of special construction vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174595,10,'V85.0XXD ','Driver of special construction vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174596,10,'V85.0XXS ','Driver of special construction vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174597,10,'V85.1XXA ','Passenger of special construction vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174598,10,'V85.1XXD ','Passenger of special construction vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174599,10,'V85.1XXS ','Passenger of special construction vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174600,10,'V85.2XXA ','Person on outside of special construction vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174601,10,'V85.2XXD ','Person on outside of special construction vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174602,10,'V85.2XXS ','Person on outside of special construction vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174603,10,'V85.3XXA ','Unspecified occupant of special construction vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174604,10,'V85.3XXD ','Unspecified occupant of special construction vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174605,10,'V85.3XXS ','Unspecified occupant of special construction vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174606,10,'V85.4XXA ','Person injured while boarding or alighting from special construction vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174607,10,'V85.4XXD ','Person injured while boarding or alighting from special construction vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174608,10,'V85.4XXS ','Person injured while boarding or alighting from special construction vehicle, sequela','Y','0000-00-00 00:00:00'),(174609,10,'V85.5XXA ','Driver of special construction vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174610,10,'V85.5XXD ','Driver of special construction vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174611,10,'V85.5XXS ','Driver of special construction vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174612,10,'V85.6XXA ','Passenger of special construction vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174613,10,'V85.6XXD ','Passenger of special construction vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174614,10,'V85.6XXS ','Passenger of special construction vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174615,10,'V85.7XXA ','Person on outside of special construction vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174616,10,'V85.7XXD ','Person on outside of special construction vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174617,10,'V85.7XXS ','Person on outside of special construction vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174618,10,'V85.9XXA ','Unspecified occupant of special construction vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174619,10,'V85.9XXD ','Unspecified occupant of special construction vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174620,10,'V85.9XXS ','Unspecified occupant of special construction vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174621,10,'V86.01XA ','Driver of ambulance or fire engine injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174622,10,'V86.01XD ','Driver of ambulance or fire engine injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174623,10,'V86.01XS ','Driver of ambulance or fire engine injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174624,10,'V86.02XA ','Driver of snowmobile injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174625,10,'V86.02XD ','Driver of snowmobile injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174626,10,'V86.02XS ','Driver of snowmobile injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174627,10,'V86.03XA ','Driver of dune buggy injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174628,10,'V86.03XD ','Driver of dune buggy injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174629,10,'V86.03XS ','Driver of dune buggy injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174630,10,'V86.04XA ','Driver of military vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174631,10,'V86.04XD ','Driver of military vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174632,10,'V86.04XS ','Driver of military vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174633,10,'V86.05XA ','Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174634,10,'V86.05XD ','Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174635,10,'V86.05XS ','Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174636,10,'V86.06XA ','Driver of dirt bike or motor/cross bike injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174637,10,'V86.06XD ','Driver of dirt bike or motor/cross bike injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174638,10,'V86.06XS ','Driver of dirt bike or motor/cross bike injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174639,10,'V86.09XA ','Driver of other special all-terrain or other off-road motor vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174640,10,'V86.09XD ','Driver of other special all-terrain or other off-road motor vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174641,10,'V86.09XS ','Driver of other special all-terrain or other off-road motor vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174642,10,'V86.11XA ','Passenger of ambulance or fire engine injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174643,10,'V86.11XD ','Passenger of ambulance or fire engine injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174644,10,'V86.11XS ','Passenger of ambulance or fire engine injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174645,10,'V86.12XA ','Passenger of snowmobile injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174646,10,'V86.12XD ','Passenger of snowmobile injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174647,10,'V86.12XS ','Passenger of snowmobile injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174648,10,'V86.13XA ','Passenger of dune buggy injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174649,10,'V86.13XD ','Passenger of dune buggy injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174650,10,'V86.13XS ','Passenger of dune buggy injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174651,10,'V86.14XA ','Passenger of military vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174652,10,'V86.14XD ','Passenger of military vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174653,10,'V86.14XS ','Passenger of military vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174654,10,'V86.15XA ','Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174655,10,'V86.15XD ','Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174656,10,'V86.15XS ','Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174657,10,'V86.16XA ','Passenger of dirt bike or motor/cross bike injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174658,10,'V86.16XD ','Passenger of dirt bike or motor/cross bike injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174659,10,'V86.16XS ','Passenger of dirt bike or motor/cross bike injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174660,10,'V86.19XA ','Passenger of other special all-terrain or other off-road motor vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174661,10,'V86.19XD ','Passenger of other special all-terrain or other off-road motor vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174662,10,'V86.19XS ','Passenger of other special all-terrain or other off-road motor vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174663,10,'V86.21XA ','Person on outside of ambulance or fire engine injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174664,10,'V86.21XD ','Person on outside of ambulance or fire engine injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174665,10,'V86.21XS ','Person on outside of ambulance or fire engine injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174666,10,'V86.22XA ','Person on outside of snowmobile injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174667,10,'V86.22XD ','Person on outside of snowmobile injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174668,10,'V86.22XS ','Person on outside of snowmobile injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174669,10,'V86.23XA ','Person on outside of dune buggy injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174670,10,'V86.23XD ','Person on outside of dune buggy injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174671,10,'V86.23XS ','Person on outside of dune buggy injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174672,10,'V86.24XA ','Person on outside of military vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174673,10,'V86.24XD ','Person on outside of military vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174674,10,'V86.24XS ','Person on outside of military vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174675,10,'V86.25XA ','Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174676,10,'V86.25XD ','Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174677,10,'V86.25XS ','Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174678,10,'V86.26XA ','Person on outside of dirt bike or motor/cross bike injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174679,10,'V86.26XD ','Person on outside of dirt bike or motor/cross bike injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174680,10,'V86.26XS ','Person on outside of dirt bike or motor/cross bike injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174681,10,'V86.29XA ','Person on outside of other special all-terrain or other off-road motor vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174682,10,'V86.29XD ','Person on outside of other special all-terrain or other off-road motor vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174683,10,'V86.29XS ','Person on outside of other special all-terrain or other off-road motor vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174684,10,'V86.31XA ','Unspecified occupant of ambulance or fire engine injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174685,10,'V86.31XD ','Unspecified occupant of ambulance or fire engine injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174686,10,'V86.31XS ','Unspecified occupant of ambulance or fire engine injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174687,10,'V86.32XA ','Unspecified occupant of snowmobile injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174688,10,'V86.32XD ','Unspecified occupant of snowmobile injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174689,10,'V86.32XS ','Unspecified occupant of snowmobile injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174690,10,'V86.33XA ','Unspecified occupant of dune buggy injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174691,10,'V86.33XD ','Unspecified occupant of dune buggy injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174692,10,'V86.33XS ','Unspecified occupant of dune buggy injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174693,10,'V86.34XA ','Unspecified occupant of military vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174694,10,'V86.34XD ','Unspecified occupant of military vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174695,10,'V86.34XS ','Unspecified occupant of military vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174696,10,'V86.35XA ','Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174697,10,'V86.35XD ','Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174698,10,'V86.35XS ','Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174699,10,'V86.36XA ','Unspecified occupant of dirt bike or motor/cross bike injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174700,10,'V86.36XD ','Unspecified occupant of dirt bike or motor/cross bike injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174701,10,'V86.36XS ','Unspecified occupant of dirt bike or motor/cross bike injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174702,10,'V86.39XA ','Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in traffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174703,10,'V86.39XD ','Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in traffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174704,10,'V86.39XS ','Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in traffic accident, sequela','Y','0000-00-00 00:00:00'),(174705,10,'V86.41XA ','Person injured while boarding or alighting from ambulance or fire engine, initial encounter','Y','0000-00-00 00:00:00'),(174706,10,'V86.41XD ','Person injured while boarding or alighting from ambulance or fire engine, subsequent encounter','Y','0000-00-00 00:00:00'),(174707,10,'V86.41XS ','Person injured while boarding or alighting from ambulance or fire engine, sequela','Y','0000-00-00 00:00:00'),(174708,10,'V86.42XA ','Person injured while boarding or alighting from snowmobile, initial encounter','Y','0000-00-00 00:00:00'),(174709,10,'V86.42XD ','Person injured while boarding or alighting from snowmobile, subsequent encounter','Y','0000-00-00 00:00:00'),(174710,10,'V86.42XS ','Person injured while boarding or alighting from snowmobile, sequela','Y','0000-00-00 00:00:00'),(174711,10,'V86.43XA ','Person injured while boarding or alighting from dune buggy, initial encounter','Y','0000-00-00 00:00:00'),(174712,10,'V86.43XD ','Person injured while boarding or alighting from dune buggy, subsequent encounter','Y','0000-00-00 00:00:00'),(174713,10,'V86.43XS ','Person injured while boarding or alighting from dune buggy, sequela','Y','0000-00-00 00:00:00'),(174714,10,'V86.44XA ','Person injured while boarding or alighting from military vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174715,10,'V86.44XD ','Person injured while boarding or alighting from military vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174716,10,'V86.44XS ','Person injured while boarding or alighting from military vehicle, sequela','Y','0000-00-00 00:00:00'),(174717,10,'V86.45XA ','Person injured while boarding or alighting from a 3- or 4- wheeled all-terrain vehicle (ATV), initial encounter','Y','0000-00-00 00:00:00'),(174718,10,'V86.45XD ','Person injured while boarding or alighting from a 3- or 4- wheeled all-terrain vehicle (ATV), subsequent encounter','Y','0000-00-00 00:00:00'),(174719,10,'V86.45XS ','Person injured while boarding or alighting from a 3- or 4- wheeled all-terrain vehicle (ATV), sequela','Y','0000-00-00 00:00:00'),(174720,10,'V86.46XA ','Person injured while boarding or alighting from a dirt bike or motor/cross bike, initial encounter','Y','0000-00-00 00:00:00'),(174721,10,'V86.46XD ','Person injured while boarding or alighting from a dirt bike or motor/cross bike, subsequent encounter','Y','0000-00-00 00:00:00'),(174722,10,'V86.46XS ','Person injured while boarding or alighting from a dirt bike or motor/cross bike, sequela','Y','0000-00-00 00:00:00'),(174723,10,'V86.49XA ','Person injured while boarding or alighting from other special all-terrain or other off-road motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(174724,10,'V86.49XD ','Person injured while boarding or alighting from other special all-terrain or other off-road motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(174725,10,'V86.49XS ','Person injured while boarding or alighting from other special all-terrain or other off-road motor vehicle, sequela','Y','0000-00-00 00:00:00'),(174726,10,'V86.51XA ','Driver of ambulance or fire engine injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174727,10,'V86.51XD ','Driver of ambulance or fire engine injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174728,10,'V86.51XS ','Driver of ambulance or fire engine injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174729,10,'V86.52XA ','Driver of snowmobile injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174730,10,'V86.52XD ','Driver of snowmobile injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174731,10,'V86.52XS ','Driver of snowmobile injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174732,10,'V86.53XA ','Driver of dune buggy injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174733,10,'V86.53XD ','Driver of dune buggy injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174734,10,'V86.53XS ','Driver of dune buggy injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174735,10,'V86.54XA ','Driver of military vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174736,10,'V86.54XD ','Driver of military vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174737,10,'V86.54XS ','Driver of military vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174738,10,'V86.55XA ','Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174739,10,'V86.55XD ','Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174740,10,'V86.55XS ','Driver of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174741,10,'V86.56XA ','Driver of dirt bike or motor/cross bike injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174742,10,'V86.56XD ','Driver of dirt bike or motor/cross bike injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174743,10,'V86.56XS ','Driver of dirt bike or motor/cross bike injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174744,10,'V86.59XA ','Driver of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174745,10,'V86.59XD ','Driver of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174746,10,'V86.59XS ','Driver of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174747,10,'V86.61XA ','Passenger of ambulance or fire engine injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174748,10,'V86.61XD ','Passenger of ambulance or fire engine injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174749,10,'V86.61XS ','Passenger of ambulance or fire engine injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174750,10,'V86.62XA ','Passenger of snowmobile injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174751,10,'V86.62XD ','Passenger of snowmobile injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174752,10,'V86.62XS ','Passenger of snowmobile injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174753,10,'V86.63XA ','Passenger of dune buggy injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174754,10,'V86.63XD ','Passenger of dune buggy injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174755,10,'V86.63XS ','Passenger of dune buggy injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174756,10,'V86.64XA ','Passenger of military vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174757,10,'V86.64XD ','Passenger of military vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174758,10,'V86.64XS ','Passenger of military vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174759,10,'V86.65XA ','Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174760,10,'V86.65XD ','Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174761,10,'V86.65XS ','Passenger of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174762,10,'V86.66XA ','Passenger of dirt bike or motor/cross bike injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174763,10,'V86.66XD ','Passenger of dirt bike or motor/cross bike injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174764,10,'V86.66XS ','Passenger of dirt bike or motor/cross bike injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174765,10,'V86.69XA ','Passenger of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174766,10,'V86.69XD ','Passenger of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174767,10,'V86.69XS ','Passenger of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174768,10,'V86.71XA ','Person on outside of ambulance or fire engine injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174769,10,'V86.71XD ','Person on outside of ambulance or fire engine injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174770,10,'V86.71XS ','Person on outside of ambulance or fire engine injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174771,10,'V86.72XA ','Person on outside of snowmobile injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174772,10,'V86.72XD ','Person on outside of snowmobile injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174773,10,'V86.72XS ','Person on outside of snowmobile injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174774,10,'V86.73XA ','Person on outside of dune buggy injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174775,10,'V86.73XD ','Person on outside of dune buggy injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174776,10,'V86.73XS ','Person on outside of dune buggy injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174777,10,'V86.74XA ','Person on outside of military vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174778,10,'V86.74XD ','Person on outside of military vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174779,10,'V86.74XS ','Person on outside of military vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174780,10,'V86.75XA ','Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174781,10,'V86.75XD ','Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174782,10,'V86.75XS ','Person on outside of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174783,10,'V86.76XA ','Person on outside of dirt bike or motor/cross bike injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174784,10,'V86.76XD ','Person on outside of dirt bike or motor/cross bike injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174785,10,'V86.76XS ','Person on outside of dirt bike or motor/cross bike injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174786,10,'V86.79XA ','Person on outside of other special all-terrain or other off-road motor vehicles injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174787,10,'V86.79XD ','Person on outside of other special all-terrain or other off-road motor vehicles injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174788,10,'V86.79XS ','Person on outside of other special all-terrain or other off-road motor vehicles injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174789,10,'V86.91XA ','Unspecified occupant of ambulance or fire engine injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174790,10,'V86.91XD ','Unspecified occupant of ambulance or fire engine injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174791,10,'V86.91XS ','Unspecified occupant of ambulance or fire engine injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174792,10,'V86.92XA ','Unspecified occupant of snowmobile injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174793,10,'V86.92XD ','Unspecified occupant of snowmobile injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174794,10,'V86.92XS ','Unspecified occupant of snowmobile injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174795,10,'V86.93XA ','Unspecified occupant of dune buggy injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174796,10,'V86.93XD ','Unspecified occupant of dune buggy injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174797,10,'V86.93XS ','Unspecified occupant of dune buggy injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174798,10,'V86.94XA ','Unspecified occupant of military vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174799,10,'V86.94XD ','Unspecified occupant of military vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174800,10,'V86.94XS ','Unspecified occupant of military vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174801,10,'V86.95XA ','Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174802,10,'V86.95XD ','Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174803,10,'V86.95XS ','Unspecified occupant of 3- or 4- wheeled all-terrain vehicle (ATV) injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174804,10,'V86.96XA ','Unspecified occupant of dirt bike or motor/cross bike injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174805,10,'V86.96XD ','Unspecified occupant of dirt bike or motor/cross bike injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174806,10,'V86.96XS ','Unspecified occupant of dirt bike or motor/cross bike injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174807,10,'V86.99XA ','Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, initial encounter','Y','0000-00-00 00:00:00'),(174808,10,'V86.99XD ','Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174809,10,'V86.99XS ','Unspecified occupant of other special all-terrain or other off-road motor vehicle injured in nontraffic accident, sequela','Y','0000-00-00 00:00:00'),(174810,10,'V87.0XXA ','Person injured in collision between car and two- or three-wheeled powered vehicle (traffic), initial encounter','Y','0000-00-00 00:00:00'),(174811,10,'V87.0XXD ','Person injured in collision between car and two- or three-wheeled powered vehicle (traffic), subsequent encounter','Y','0000-00-00 00:00:00'),(174812,10,'V87.0XXS ','Person injured in collision between car and two- or three-wheeled powered vehicle (traffic), sequela','Y','0000-00-00 00:00:00'),(174813,10,'V87.1XXA ','Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic), initial encounter','Y','0000-00-00 00:00:00'),(174814,10,'V87.1XXD ','Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic), subsequent encounter','Y','0000-00-00 00:00:00'),(174815,10,'V87.1XXS ','Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle (traffic), sequela','Y','0000-00-00 00:00:00'),(174816,10,'V87.2XXA ','Person injured in collision between car and pick-up truck or van (traffic), initial encounter','Y','0000-00-00 00:00:00'),(174817,10,'V87.2XXD ','Person injured in collision between car and pick-up truck or van (traffic), subsequent encounter','Y','0000-00-00 00:00:00'),(174818,10,'V87.2XXS ','Person injured in collision between car and pick-up truck or van (traffic), sequela','Y','0000-00-00 00:00:00'),(174819,10,'V87.3XXA ','Person injured in collision between car and bus (traffic), initial encounter','Y','0000-00-00 00:00:00'),(174820,10,'V87.3XXD ','Person injured in collision between car and bus (traffic), subsequent encounter','Y','0000-00-00 00:00:00'),(174821,10,'V87.3XXS ','Person injured in collision between car and bus (traffic), sequela','Y','0000-00-00 00:00:00'),(174822,10,'V87.4XXA ','Person injured in collision between car and heavy transport vehicle (traffic), initial encounter','Y','0000-00-00 00:00:00'),(174823,10,'V87.4XXD ','Person injured in collision between car and heavy transport vehicle (traffic), subsequent encounter','Y','0000-00-00 00:00:00'),(174824,10,'V87.4XXS ','Person injured in collision between car and heavy transport vehicle (traffic), sequela','Y','0000-00-00 00:00:00'),(174825,10,'V87.5XXA ','Person injured in collision between heavy transport vehicle and bus (traffic), initial encounter','Y','0000-00-00 00:00:00'),(174826,10,'V87.5XXD ','Person injured in collision between heavy transport vehicle and bus (traffic), subsequent encounter','Y','0000-00-00 00:00:00'),(174827,10,'V87.5XXS ','Person injured in collision between heavy transport vehicle and bus (traffic), sequela','Y','0000-00-00 00:00:00'),(174828,10,'V87.6XXA ','Person injured in collision between railway train or railway vehicle and car (traffic), initial encounter','Y','0000-00-00 00:00:00'),(174829,10,'V87.6XXD ','Person injured in collision between railway train or railway vehicle and car (traffic), subsequent encounter','Y','0000-00-00 00:00:00'),(174830,10,'V87.6XXS ','Person injured in collision between railway train or railway vehicle and car (traffic), sequela','Y','0000-00-00 00:00:00'),(174831,10,'V87.7XXA ','Person injured in collision between other specified motor vehicles (traffic), initial encounter','Y','0000-00-00 00:00:00'),(174832,10,'V87.7XXD ','Person injured in collision between other specified motor vehicles (traffic), subsequent encounter','Y','0000-00-00 00:00:00'),(174833,10,'V87.7XXS ','Person injured in collision between other specified motor vehicles (traffic), sequela','Y','0000-00-00 00:00:00'),(174834,10,'V87.8XXA ','Person injured in other specified noncollision transport accidents involving motor vehicle (traffic), initial encounter','Y','0000-00-00 00:00:00'),(174835,10,'V87.8XXD ','Person injured in other specified noncollision transport accidents involving motor vehicle (traffic), subsequent encounter','Y','0000-00-00 00:00:00'),(174836,10,'V87.8XXS ','Person injured in other specified noncollision transport accidents involving motor vehicle (traffic), sequela','Y','0000-00-00 00:00:00'),(174837,10,'V87.9XXA ','Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle (traffic), initial encounter','Y','0000-00-00 00:00:00'),(174838,10,'V87.9XXD ','Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle (traffic), subsequent encounter','Y','0000-00-00 00:00:00'),(174839,10,'V87.9XXS ','Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle (traffic), sequela','Y','0000-00-00 00:00:00'),(174840,10,'V88.0XXA ','Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic, initial encounter','Y','0000-00-00 00:00:00'),(174841,10,'V88.0XXD ','Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic, subsequent encounter','Y','0000-00-00 00:00:00'),(174842,10,'V88.0XXS ','Person injured in collision between car and two- or three-wheeled motor vehicle, nontraffic, sequela','Y','0000-00-00 00:00:00'),(174843,10,'V88.1XXA ','Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic, initial encounter','Y','0000-00-00 00:00:00'),(174844,10,'V88.1XXD ','Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic, subsequent encounter','Y','0000-00-00 00:00:00'),(174845,10,'V88.1XXS ','Person injured in collision between other motor vehicle and two- or three-wheeled motor vehicle, nontraffic, sequela','Y','0000-00-00 00:00:00'),(174846,10,'V88.2XXA ','Person injured in collision between car and pick-up truck or van, nontraffic, initial encounter','Y','0000-00-00 00:00:00'),(174847,10,'V88.2XXD ','Person injured in collision between car and pick-up truck or van, nontraffic, subsequent encounter','Y','0000-00-00 00:00:00'),(174848,10,'V88.2XXS ','Person injured in collision between car and pick-up truck or van, nontraffic, sequela','Y','0000-00-00 00:00:00'),(174849,10,'V88.3XXA ','Person injured in collision between car and bus, nontraffic, initial encounter','Y','0000-00-00 00:00:00'),(174850,10,'V88.3XXD ','Person injured in collision between car and bus, nontraffic, subsequent encounter','Y','0000-00-00 00:00:00'),(174851,10,'V88.3XXS ','Person injured in collision between car and bus, nontraffic, sequela','Y','0000-00-00 00:00:00'),(174852,10,'V88.4XXA ','Person injured in collision between car and heavy transport vehicle, nontraffic, initial encounter','Y','0000-00-00 00:00:00'),(174853,10,'V88.4XXD ','Person injured in collision between car and heavy transport vehicle, nontraffic, subsequent encounter','Y','0000-00-00 00:00:00'),(174854,10,'V88.4XXS ','Person injured in collision between car and heavy transport vehicle, nontraffic, sequela','Y','0000-00-00 00:00:00'),(174855,10,'V88.5XXA ','Person injured in collision between heavy transport vehicle and bus, nontraffic, initial encounter','Y','0000-00-00 00:00:00'),(174856,10,'V88.5XXD ','Person injured in collision between heavy transport vehicle and bus, nontraffic, subsequent encounter','Y','0000-00-00 00:00:00'),(174857,10,'V88.5XXS ','Person injured in collision between heavy transport vehicle and bus, nontraffic, sequela','Y','0000-00-00 00:00:00'),(174858,10,'V88.6XXA ','Person injured in collision between railway train or railway vehicle and car, nontraffic, initial encounter','Y','0000-00-00 00:00:00'),(174859,10,'V88.6XXD ','Person injured in collision between railway train or railway vehicle and car, nontraffic, subsequent encounter','Y','0000-00-00 00:00:00'),(174860,10,'V88.6XXS ','Person injured in collision between railway train or railway vehicle and car, nontraffic, sequela','Y','0000-00-00 00:00:00'),(174861,10,'V88.7XXA ','Person injured in collision between other specified motor vehicle, nontraffic, initial encounter','Y','0000-00-00 00:00:00'),(174862,10,'V88.7XXD ','Person injured in collision between other specified motor vehicle, nontraffic, subsequent encounter','Y','0000-00-00 00:00:00'),(174863,10,'V88.7XXS ','Person injured in collision between other specified motor vehicle, nontraffic, sequela','Y','0000-00-00 00:00:00'),(174864,10,'V88.8XXA ','Person injured in other specified noncollision transport accidents involving motor vehicle, nontraffic, initial encounter','Y','0000-00-00 00:00:00'),(174865,10,'V88.8XXD ','Person injured in other specified noncollision transport accidents involving motor vehicle, nontraffic, subsequent encounter','Y','0000-00-00 00:00:00'),(174866,10,'V88.8XXS ','Person injured in other specified noncollision transport accidents involving motor vehicle, nontraffic, sequela','Y','0000-00-00 00:00:00'),(174867,10,'V88.9XXA ','Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle, nontraffic, initial encounter','Y','0000-00-00 00:00:00'),(174868,10,'V88.9XXD ','Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle, nontraffic, subsequent encounter','Y','0000-00-00 00:00:00'),(174869,10,'V88.9XXS ','Person injured in other specified (collision)(noncollision) transport accidents involving nonmotor vehicle, nontraffic, sequela','Y','0000-00-00 00:00:00'),(174870,10,'V89.0XXA ','Person injured in unspecified motor-vehicle accident, nontraffic, initial encounter','Y','0000-00-00 00:00:00'),(174871,10,'V89.0XXD ','Person injured in unspecified motor-vehicle accident, nontraffic, subsequent encounter','Y','0000-00-00 00:00:00'),(174872,10,'V89.0XXS ','Person injured in unspecified motor-vehicle accident, nontraffic, sequela','Y','0000-00-00 00:00:00'),(174873,10,'V89.1XXA ','Person injured in unspecified nonmotor-vehicle accident, nontraffic, initial encounter','Y','0000-00-00 00:00:00'),(174874,10,'V89.1XXD ','Person injured in unspecified nonmotor-vehicle accident, nontraffic, subsequent encounter','Y','0000-00-00 00:00:00'),(174875,10,'V89.1XXS ','Person injured in unspecified nonmotor-vehicle accident, nontraffic, sequela','Y','0000-00-00 00:00:00'),(174876,10,'V89.2XXA ','Person injured in unspecified motor-vehicle accident, traffic, initial encounter','Y','0000-00-00 00:00:00'),(174877,10,'V89.2XXD ','Person injured in unspecified motor-vehicle accident, traffic, subsequent encounter','Y','0000-00-00 00:00:00'),(174878,10,'V89.2XXS ','Person injured in unspecified motor-vehicle accident, traffic, sequela','Y','0000-00-00 00:00:00'),(174879,10,'V89.3XXA ','Person injured in unspecified nonmotor-vehicle accident, traffic, initial encounter','Y','0000-00-00 00:00:00'),(174880,10,'V89.3XXD ','Person injured in unspecified nonmotor-vehicle accident, traffic, subsequent encounter','Y','0000-00-00 00:00:00'),(174881,10,'V89.3XXS ','Person injured in unspecified nonmotor-vehicle accident, traffic, sequela','Y','0000-00-00 00:00:00'),(174882,10,'V89.9XXA ','Person injured in unspecified vehicle accident, initial encounter','Y','0000-00-00 00:00:00'),(174883,10,'V89.9XXD ','Person injured in unspecified vehicle accident, subsequent encounter','Y','0000-00-00 00:00:00'),(174884,10,'V89.9XXS ','Person injured in unspecified vehicle accident, sequela','Y','0000-00-00 00:00:00'),(174885,10,'V90.00XA ','Drowning and submersion due to merchant ship overturning, initial encounter','Y','0000-00-00 00:00:00'),(174886,10,'V90.00XD ','Drowning and submersion due to merchant ship overturning, subsequent encounter','Y','0000-00-00 00:00:00'),(174887,10,'V90.00XS ','Drowning and submersion due to merchant ship overturning, sequela','Y','0000-00-00 00:00:00'),(174888,10,'V90.01XA ','Drowning and submersion due to passenger ship overturning, initial encounter','Y','0000-00-00 00:00:00'),(174889,10,'V90.01XD ','Drowning and submersion due to passenger ship overturning, subsequent encounter','Y','0000-00-00 00:00:00'),(174890,10,'V90.01XS ','Drowning and submersion due to passenger ship overturning, sequela','Y','0000-00-00 00:00:00'),(174891,10,'V90.02XA ','Drowning and submersion due to fishing boat overturning, initial encounter','Y','0000-00-00 00:00:00'),(174892,10,'V90.02XD ','Drowning and submersion due to fishing boat overturning, subsequent encounter','Y','0000-00-00 00:00:00'),(174893,10,'V90.02XS ','Drowning and submersion due to fishing boat overturning, sequela','Y','0000-00-00 00:00:00'),(174894,10,'V90.03XA ','Drowning and submersion due to other powered watercraft overturning, initial encounter','Y','0000-00-00 00:00:00'),(174895,10,'V90.03XD ','Drowning and submersion due to other powered watercraft overturning, subsequent encounter','Y','0000-00-00 00:00:00'),(174896,10,'V90.03XS ','Drowning and submersion due to other powered watercraft overturning, sequela','Y','0000-00-00 00:00:00'),(174897,10,'V90.04XA ','Drowning and submersion due to sailboat overturning, initial encounter','Y','0000-00-00 00:00:00'),(174898,10,'V90.04XD ','Drowning and submersion due to sailboat overturning, subsequent encounter','Y','0000-00-00 00:00:00'),(174899,10,'V90.04XS ','Drowning and submersion due to sailboat overturning, sequela','Y','0000-00-00 00:00:00'),(174900,10,'V90.05XA ','Drowning and submersion due to canoe or kayak overturning, initial encounter','Y','0000-00-00 00:00:00'),(174901,10,'V90.05XD ','Drowning and submersion due to canoe or kayak overturning, subsequent encounter','Y','0000-00-00 00:00:00'),(174902,10,'V90.05XS ','Drowning and submersion due to canoe or kayak overturning, sequela','Y','0000-00-00 00:00:00'),(174903,10,'V90.06XA ','Drowning and submersion due to (nonpowered) inflatable craft overturning, initial encounter','Y','0000-00-00 00:00:00'),(174904,10,'V90.06XD ','Drowning and submersion due to (nonpowered) inflatable craft overturning, subsequent encounter','Y','0000-00-00 00:00:00'),(174905,10,'V90.06XS ','Drowning and submersion due to (nonpowered) inflatable craft overturning, sequela','Y','0000-00-00 00:00:00'),(174906,10,'V90.08XA ','Drowning and submersion due to other unpowered watercraft overturning, initial encounter','Y','0000-00-00 00:00:00'),(174907,10,'V90.08XD ','Drowning and submersion due to other unpowered watercraft overturning, subsequent encounter','Y','0000-00-00 00:00:00'),(174908,10,'V90.08XS ','Drowning and submersion due to other unpowered watercraft overturning, sequela','Y','0000-00-00 00:00:00'),(174909,10,'V90.09XA ','Drowning and submersion due to unspecified watercraft overturning, initial encounter','Y','0000-00-00 00:00:00'),(174910,10,'V90.09XD ','Drowning and submersion due to unspecified watercraft overturning, subsequent encounter','Y','0000-00-00 00:00:00'),(174911,10,'V90.09XS ','Drowning and submersion due to unspecified watercraft overturning, sequela','Y','0000-00-00 00:00:00'),(174912,10,'V90.10XA ','Drowning and submersion due to merchant ship sinking, initial encounter','Y','0000-00-00 00:00:00'),(174913,10,'V90.10XD ','Drowning and submersion due to merchant ship sinking, subsequent encounter','Y','0000-00-00 00:00:00'),(174914,10,'V90.10XS ','Drowning and submersion due to merchant ship sinking, sequela','Y','0000-00-00 00:00:00'),(174915,10,'V90.11XA ','Drowning and submersion due to passenger ship sinking, initial encounter','Y','0000-00-00 00:00:00'),(174916,10,'V90.11XD ','Drowning and submersion due to passenger ship sinking, subsequent encounter','Y','0000-00-00 00:00:00'),(174917,10,'V90.11XS ','Drowning and submersion due to passenger ship sinking, sequela','Y','0000-00-00 00:00:00'),(174918,10,'V90.12XA ','Drowning and submersion due to fishing boat sinking, initial encounter','Y','0000-00-00 00:00:00'),(174919,10,'V90.12XD ','Drowning and submersion due to fishing boat sinking, subsequent encounter','Y','0000-00-00 00:00:00'),(174920,10,'V90.12XS ','Drowning and submersion due to fishing boat sinking, sequela','Y','0000-00-00 00:00:00'),(174921,10,'V90.13XA ','Drowning and submersion due to other powered watercraft sinking, initial encounter','Y','0000-00-00 00:00:00'),(174922,10,'V90.13XD ','Drowning and submersion due to other powered watercraft sinking, subsequent encounter','Y','0000-00-00 00:00:00'),(174923,10,'V90.13XS ','Drowning and submersion due to other powered watercraft sinking, sequela','Y','0000-00-00 00:00:00'),(174924,10,'V90.14XA ','Drowning and submersion due to sailboat sinking, initial encounter','Y','0000-00-00 00:00:00'),(174925,10,'V90.14XD ','Drowning and submersion due to sailboat sinking, subsequent encounter','Y','0000-00-00 00:00:00'),(174926,10,'V90.14XS ','Drowning and submersion due to sailboat sinking, sequela','Y','0000-00-00 00:00:00'),(174927,10,'V90.15XA ','Drowning and submersion due to canoe or kayak sinking, initial encounter','Y','0000-00-00 00:00:00'),(174928,10,'V90.15XD ','Drowning and submersion due to canoe or kayak sinking, subsequent encounter','Y','0000-00-00 00:00:00'),(174929,10,'V90.15XS ','Drowning and submersion due to canoe or kayak sinking, sequela','Y','0000-00-00 00:00:00'),(174930,10,'V90.16XA ','Drowning and submersion due to (nonpowered) inflatable craft sinking, initial encounter','Y','0000-00-00 00:00:00'),(174931,10,'V90.16XD ','Drowning and submersion due to (nonpowered) inflatable craft sinking, subsequent encounter','Y','0000-00-00 00:00:00'),(174932,10,'V90.16XS ','Drowning and submersion due to (nonpowered) inflatable craft sinking, sequela','Y','0000-00-00 00:00:00'),(174933,10,'V90.18XA ','Drowning and submersion due to other unpowered watercraft sinking, initial encounter','Y','0000-00-00 00:00:00'),(174934,10,'V90.18XD ','Drowning and submersion due to other unpowered watercraft sinking, subsequent encounter','Y','0000-00-00 00:00:00'),(174935,10,'V90.18XS ','Drowning and submersion due to other unpowered watercraft sinking, sequela','Y','0000-00-00 00:00:00'),(174936,10,'V90.19XA ','Drowning and submersion due to unspecified watercraft sinking, initial encounter','Y','0000-00-00 00:00:00'),(174937,10,'V90.19XD ','Drowning and submersion due to unspecified watercraft sinking, subsequent encounter','Y','0000-00-00 00:00:00'),(174938,10,'V90.19XS ','Drowning and submersion due to unspecified watercraft sinking, sequela','Y','0000-00-00 00:00:00'),(174939,10,'V90.20XA ','Drowning and submersion due to falling or jumping from burning merchant ship, initial encounter','Y','0000-00-00 00:00:00'),(174940,10,'V90.20XD ','Drowning and submersion due to falling or jumping from burning merchant ship, subsequent encounter','Y','0000-00-00 00:00:00'),(174941,10,'V90.20XS ','Drowning and submersion due to falling or jumping from burning merchant ship, sequela','Y','0000-00-00 00:00:00'),(174942,10,'V90.21XA ','Drowning and submersion due to falling or jumping from burning passenger ship, initial encounter','Y','0000-00-00 00:00:00'),(174943,10,'V90.21XD ','Drowning and submersion due to falling or jumping from burning passenger ship, subsequent encounter','Y','0000-00-00 00:00:00'),(174944,10,'V90.21XS ','Drowning and submersion due to falling or jumping from burning passenger ship, sequela','Y','0000-00-00 00:00:00'),(174945,10,'V90.22XA ','Drowning and submersion due to falling or jumping from burning fishing boat, initial encounter','Y','0000-00-00 00:00:00'),(174946,10,'V90.22XD ','Drowning and submersion due to falling or jumping from burning fishing boat, subsequent encounter','Y','0000-00-00 00:00:00'),(174947,10,'V90.22XS ','Drowning and submersion due to falling or jumping from burning fishing boat, sequela','Y','0000-00-00 00:00:00'),(174948,10,'V90.23XA ','Drowning and submersion due to falling or jumping from other burning powered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(174949,10,'V90.23XD ','Drowning and submersion due to falling or jumping from other burning powered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(174950,10,'V90.23XS ','Drowning and submersion due to falling or jumping from other burning powered watercraft, sequela','Y','0000-00-00 00:00:00'),(174951,10,'V90.24XA ','Drowning and submersion due to falling or jumping from burning sailboat, initial encounter','Y','0000-00-00 00:00:00'),(174952,10,'V90.24XD ','Drowning and submersion due to falling or jumping from burning sailboat, subsequent encounter','Y','0000-00-00 00:00:00'),(174953,10,'V90.24XS ','Drowning and submersion due to falling or jumping from burning sailboat, sequela','Y','0000-00-00 00:00:00'),(174954,10,'V90.25XA ','Drowning and submersion due to falling or jumping from burning canoe or kayak, initial encounter','Y','0000-00-00 00:00:00'),(174955,10,'V90.25XD ','Drowning and submersion due to falling or jumping from burning canoe or kayak, subsequent encounter','Y','0000-00-00 00:00:00'),(174956,10,'V90.25XS ','Drowning and submersion due to falling or jumping from burning canoe or kayak, sequela','Y','0000-00-00 00:00:00'),(174957,10,'V90.26XA ','Drowning and submersion due to falling or jumping from burning (nonpowered) inflatable craft, initial encounter','Y','0000-00-00 00:00:00'),(174958,10,'V90.26XD ','Drowning and submersion due to falling or jumping from burning (nonpowered) inflatable craft, subsequent encounter','Y','0000-00-00 00:00:00'),(174959,10,'V90.26XS ','Drowning and submersion due to falling or jumping from burning (nonpowered) inflatable craft, sequela','Y','0000-00-00 00:00:00'),(174960,10,'V90.27XA ','Drowning and submersion due to falling or jumping from burning water-skis, initial encounter','Y','0000-00-00 00:00:00'),(174961,10,'V90.27XD ','Drowning and submersion due to falling or jumping from burning water-skis, subsequent encounter','Y','0000-00-00 00:00:00'),(174962,10,'V90.27XS ','Drowning and submersion due to falling or jumping from burning water-skis, sequela','Y','0000-00-00 00:00:00'),(174963,10,'V90.28XA ','Drowning and submersion due to falling or jumping from other burning unpowered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(174964,10,'V90.28XD ','Drowning and submersion due to falling or jumping from other burning unpowered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(174965,10,'V90.28XS ','Drowning and submersion due to falling or jumping from other burning unpowered watercraft, sequela','Y','0000-00-00 00:00:00'),(174966,10,'V90.29XA ','Drowning and submersion due to falling or jumping from unspecified burning watercraft, initial encounter','Y','0000-00-00 00:00:00'),(174967,10,'V90.29XD ','Drowning and submersion due to falling or jumping from unspecified burning watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(174968,10,'V90.29XS ','Drowning and submersion due to falling or jumping from unspecified burning watercraft, sequela','Y','0000-00-00 00:00:00'),(174969,10,'V90.30XA ','Drowning and submersion due to falling or jumping from crushed merchant ship, initial encounter','Y','0000-00-00 00:00:00'),(174970,10,'V90.30XD ','Drowning and submersion due to falling or jumping from crushed merchant ship, subsequent encounter','Y','0000-00-00 00:00:00'),(174971,10,'V90.30XS ','Drowning and submersion due to falling or jumping from crushed merchant ship, sequela','Y','0000-00-00 00:00:00'),(174972,10,'V90.31XA ','Drowning and submersion due to falling or jumping from crushed passenger ship, initial encounter','Y','0000-00-00 00:00:00'),(174973,10,'V90.31XD ','Drowning and submersion due to falling or jumping from crushed passenger ship, subsequent encounter','Y','0000-00-00 00:00:00'),(174974,10,'V90.31XS ','Drowning and submersion due to falling or jumping from crushed passenger ship, sequela','Y','0000-00-00 00:00:00'),(174975,10,'V90.32XA ','Drowning and submersion due to falling or jumping from crushed fishing boat, initial encounter','Y','0000-00-00 00:00:00'),(174976,10,'V90.32XD ','Drowning and submersion due to falling or jumping from crushed fishing boat, subsequent encounter','Y','0000-00-00 00:00:00'),(174977,10,'V90.32XS ','Drowning and submersion due to falling or jumping from crushed fishing boat, sequela','Y','0000-00-00 00:00:00'),(174978,10,'V90.33XA ','Drowning and submersion due to falling or jumping from other crushed powered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(174979,10,'V90.33XD ','Drowning and submersion due to falling or jumping from other crushed powered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(174980,10,'V90.33XS ','Drowning and submersion due to falling or jumping from other crushed powered watercraft, sequela','Y','0000-00-00 00:00:00'),(174981,10,'V90.34XA ','Drowning and submersion due to falling or jumping from crushed sailboat, initial encounter','Y','0000-00-00 00:00:00'),(174982,10,'V90.34XD ','Drowning and submersion due to falling or jumping from crushed sailboat, subsequent encounter','Y','0000-00-00 00:00:00'),(174983,10,'V90.34XS ','Drowning and submersion due to falling or jumping from crushed sailboat, sequela','Y','0000-00-00 00:00:00'),(174984,10,'V90.35XA ','Drowning and submersion due to falling or jumping from crushed canoe or kayak, initial encounter','Y','0000-00-00 00:00:00'),(174985,10,'V90.35XD ','Drowning and submersion due to falling or jumping from crushed canoe or kayak, subsequent encounter','Y','0000-00-00 00:00:00'),(174986,10,'V90.35XS ','Drowning and submersion due to falling or jumping from crushed canoe or kayak, sequela','Y','0000-00-00 00:00:00'),(174987,10,'V90.36XA ','Drowning and submersion due to falling or jumping from crushed (nonpowered) inflatable craft, initial encounter','Y','0000-00-00 00:00:00'),(174988,10,'V90.36XD ','Drowning and submersion due to falling or jumping from crushed (nonpowered) inflatable craft, subsequent encounter','Y','0000-00-00 00:00:00'),(174989,10,'V90.36XS ','Drowning and submersion due to falling or jumping from crushed (nonpowered) inflatable craft, sequela','Y','0000-00-00 00:00:00'),(174990,10,'V90.37XA ','Drowning and submersion due to falling or jumping from crushed water-skis, initial encounter','Y','0000-00-00 00:00:00'),(174991,10,'V90.37XD ','Drowning and submersion due to falling or jumping from crushed water-skis, subsequent encounter','Y','0000-00-00 00:00:00'),(174992,10,'V90.37XS ','Drowning and submersion due to falling or jumping from crushed water-skis, sequela','Y','0000-00-00 00:00:00'),(174993,10,'V90.38XA ','Drowning and submersion due to falling or jumping from other crushed unpowered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(174994,10,'V90.38XD ','Drowning and submersion due to falling or jumping from other crushed unpowered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(174995,10,'V90.38XS ','Drowning and submersion due to falling or jumping from other crushed unpowered watercraft, sequela','Y','0000-00-00 00:00:00'),(174996,10,'V90.39XA ','Drowning and submersion due to falling or jumping from crushed unspecified watercraft, initial encounter','Y','0000-00-00 00:00:00'),(174997,10,'V90.39XD ','Drowning and submersion due to falling or jumping from crushed unspecified watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(174998,10,'V90.39XS ','Drowning and submersion due to falling or jumping from crushed unspecified watercraft, sequela','Y','0000-00-00 00:00:00'),(174999,10,'V90.80XA ','Drowning and submersion due to other accident to merchant ship, initial encounter','Y','0000-00-00 00:00:00'),(175000,10,'V90.80XD ','Drowning and submersion due to other accident to merchant ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175001,10,'V90.80XS ','Drowning and submersion due to other accident to merchant ship, sequela','Y','0000-00-00 00:00:00'),(175002,10,'V90.81XA ','Drowning and submersion due to other accident to passenger ship, initial encounter','Y','0000-00-00 00:00:00'),(175003,10,'V90.81XD ','Drowning and submersion due to other accident to passenger ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175004,10,'V90.81XS ','Drowning and submersion due to other accident to passenger ship, sequela','Y','0000-00-00 00:00:00'),(175005,10,'V90.82XA ','Drowning and submersion due to other accident to fishing boat, initial encounter','Y','0000-00-00 00:00:00'),(175006,10,'V90.82XD ','Drowning and submersion due to other accident to fishing boat, subsequent encounter','Y','0000-00-00 00:00:00'),(175007,10,'V90.82XS ','Drowning and submersion due to other accident to fishing boat, sequela','Y','0000-00-00 00:00:00'),(175008,10,'V90.83XA ','Drowning and submersion due to other accident to other powered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175009,10,'V90.83XD ','Drowning and submersion due to other accident to other powered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175010,10,'V90.83XS ','Drowning and submersion due to other accident to other powered watercraft, sequela','Y','0000-00-00 00:00:00'),(175011,10,'V90.84XA ','Drowning and submersion due to other accident to sailboat, initial encounter','Y','0000-00-00 00:00:00'),(175012,10,'V90.84XD ','Drowning and submersion due to other accident to sailboat, subsequent encounter','Y','0000-00-00 00:00:00'),(175013,10,'V90.84XS ','Drowning and submersion due to other accident to sailboat, sequela','Y','0000-00-00 00:00:00'),(175014,10,'V90.85XA ','Drowning and submersion due to other accident to canoe or kayak, initial encounter','Y','0000-00-00 00:00:00'),(175015,10,'V90.85XD ','Drowning and submersion due to other accident to canoe or kayak, subsequent encounter','Y','0000-00-00 00:00:00'),(175016,10,'V90.85XS ','Drowning and submersion due to other accident to canoe or kayak, sequela','Y','0000-00-00 00:00:00'),(175017,10,'V90.86XA ','Drowning and submersion due to other accident to (nonpowered) inflatable craft, initial encounter','Y','0000-00-00 00:00:00'),(175018,10,'V90.86XD ','Drowning and submersion due to other accident to (nonpowered) inflatable craft, subsequent encounter','Y','0000-00-00 00:00:00'),(175019,10,'V90.86XS ','Drowning and submersion due to other accident to (nonpowered) inflatable craft, sequela','Y','0000-00-00 00:00:00'),(175020,10,'V90.87XA ','Drowning and submersion due to other accident to water-skis, initial encounter','Y','0000-00-00 00:00:00'),(175021,10,'V90.87XD ','Drowning and submersion due to other accident to water-skis, subsequent encounter','Y','0000-00-00 00:00:00'),(175022,10,'V90.87XS ','Drowning and submersion due to other accident to water-skis, sequela','Y','0000-00-00 00:00:00'),(175023,10,'V90.88XA ','Drowning and submersion due to other accident to other unpowered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175024,10,'V90.88XD ','Drowning and submersion due to other accident to other unpowered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175025,10,'V90.88XS ','Drowning and submersion due to other accident to other unpowered watercraft, sequela','Y','0000-00-00 00:00:00'),(175026,10,'V90.89XA ','Drowning and submersion due to other accident to unspecified watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175027,10,'V90.89XD ','Drowning and submersion due to other accident to unspecified watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175028,10,'V90.89XS ','Drowning and submersion due to other accident to unspecified watercraft, sequela','Y','0000-00-00 00:00:00'),(175029,10,'V91.00XA ','Burn due to merchant ship on fire, initial encounter','Y','0000-00-00 00:00:00'),(175030,10,'V91.00XD ','Burn due to merchant ship on fire, subsequent encounter','Y','0000-00-00 00:00:00'),(175031,10,'V91.00XS ','Burn due to merchant ship on fire, sequela','Y','0000-00-00 00:00:00'),(175032,10,'V91.01XA ','Burn due to passenger ship on fire, initial encounter','Y','0000-00-00 00:00:00'),(175033,10,'V91.01XD ','Burn due to passenger ship on fire, subsequent encounter','Y','0000-00-00 00:00:00'),(175034,10,'V91.01XS ','Burn due to passenger ship on fire, sequela','Y','0000-00-00 00:00:00'),(175035,10,'V91.02XA ','Burn due to fishing boat on fire, initial encounter','Y','0000-00-00 00:00:00'),(175036,10,'V91.02XD ','Burn due to fishing boat on fire, subsequent encounter','Y','0000-00-00 00:00:00'),(175037,10,'V91.02XS ','Burn due to fishing boat on fire, sequela','Y','0000-00-00 00:00:00'),(175038,10,'V91.03XA ','Burn due to other powered watercraft on fire, initial encounter','Y','0000-00-00 00:00:00'),(175039,10,'V91.03XD ','Burn due to other powered watercraft on fire, subsequent encounter','Y','0000-00-00 00:00:00'),(175040,10,'V91.03XS ','Burn due to other powered watercraft on fire, sequela','Y','0000-00-00 00:00:00'),(175041,10,'V91.04XA ','Burn due to sailboat on fire, initial encounter','Y','0000-00-00 00:00:00'),(175042,10,'V91.04XD ','Burn due to sailboat on fire, subsequent encounter','Y','0000-00-00 00:00:00'),(175043,10,'V91.04XS ','Burn due to sailboat on fire, sequela','Y','0000-00-00 00:00:00'),(175044,10,'V91.05XA ','Burn due to canoe or kayak on fire, initial encounter','Y','0000-00-00 00:00:00'),(175045,10,'V91.05XD ','Burn due to canoe or kayak on fire, subsequent encounter','Y','0000-00-00 00:00:00'),(175046,10,'V91.05XS ','Burn due to canoe or kayak on fire, sequela','Y','0000-00-00 00:00:00'),(175047,10,'V91.06XA ','Burn due to (nonpowered) inflatable craft on fire, initial encounter','Y','0000-00-00 00:00:00'),(175048,10,'V91.06XD ','Burn due to (nonpowered) inflatable craft on fire, subsequent encounter','Y','0000-00-00 00:00:00'),(175049,10,'V91.06XS ','Burn due to (nonpowered) inflatable craft on fire, sequela','Y','0000-00-00 00:00:00'),(175050,10,'V91.07XA ','Burn due to water-skis on fire, initial encounter','Y','0000-00-00 00:00:00'),(175051,10,'V91.07XD ','Burn due to water-skis on fire, subsequent encounter','Y','0000-00-00 00:00:00'),(175052,10,'V91.07XS ','Burn due to water-skis on fire, sequela','Y','0000-00-00 00:00:00'),(175053,10,'V91.08XA ','Burn due to other unpowered watercraft on fire, initial encounter','Y','0000-00-00 00:00:00'),(175054,10,'V91.08XD ','Burn due to other unpowered watercraft on fire, subsequent encounter','Y','0000-00-00 00:00:00'),(175055,10,'V91.08XS ','Burn due to other unpowered watercraft on fire, sequela','Y','0000-00-00 00:00:00'),(175056,10,'V91.09XA ','Burn due to unspecified watercraft on fire, initial encounter','Y','0000-00-00 00:00:00'),(175057,10,'V91.09XD ','Burn due to unspecified watercraft on fire, subsequent encounter','Y','0000-00-00 00:00:00'),(175058,10,'V91.09XS ','Burn due to unspecified watercraft on fire, sequela','Y','0000-00-00 00:00:00'),(175059,10,'V91.10XA ','Crushed between merchant ship and other watercraft or other object due to collision, initial encounter','Y','0000-00-00 00:00:00'),(175060,10,'V91.10XD ','Crushed between merchant ship and other watercraft or other object due to collision, subsequent encounter','Y','0000-00-00 00:00:00'),(175061,10,'V91.10XS ','Crushed between merchant ship and other watercraft or other object due to collision, sequela','Y','0000-00-00 00:00:00'),(175062,10,'V91.11XA ','Crushed between passenger ship and other watercraft or other object due to collision, initial encounter','Y','0000-00-00 00:00:00'),(175063,10,'V91.11XD ','Crushed between passenger ship and other watercraft or other object due to collision, subsequent encounter','Y','0000-00-00 00:00:00'),(175064,10,'V91.11XS ','Crushed between passenger ship and other watercraft or other object due to collision, sequela','Y','0000-00-00 00:00:00'),(175065,10,'V91.12XA ','Crushed between fishing boat and other watercraft or other object due to collision, initial encounter','Y','0000-00-00 00:00:00'),(175066,10,'V91.12XD ','Crushed between fishing boat and other watercraft or other object due to collision, subsequent encounter','Y','0000-00-00 00:00:00'),(175067,10,'V91.12XS ','Crushed between fishing boat and other watercraft or other object due to collision, sequela','Y','0000-00-00 00:00:00'),(175068,10,'V91.13XA ','Crushed between other powered watercraft and other watercraft or other object due to collision, initial encounter','Y','0000-00-00 00:00:00'),(175069,10,'V91.13XD ','Crushed between other powered watercraft and other watercraft or other object due to collision, subsequent encounter','Y','0000-00-00 00:00:00'),(175070,10,'V91.13XS ','Crushed between other powered watercraft and other watercraft or other object due to collision, sequela','Y','0000-00-00 00:00:00'),(175071,10,'V91.14XA ','Crushed between sailboat and other watercraft or other object due to collision, initial encounter','Y','0000-00-00 00:00:00'),(175072,10,'V91.14XD ','Crushed between sailboat and other watercraft or other object due to collision, subsequent encounter','Y','0000-00-00 00:00:00'),(175073,10,'V91.14XS ','Crushed between sailboat and other watercraft or other object due to collision, sequela','Y','0000-00-00 00:00:00'),(175074,10,'V91.15XA ','Crushed between canoe or kayak and other watercraft or other object due to collision, initial encounter','Y','0000-00-00 00:00:00'),(175075,10,'V91.15XD ','Crushed between canoe or kayak and other watercraft or other object due to collision, subsequent encounter','Y','0000-00-00 00:00:00'),(175076,10,'V91.15XS ','Crushed between canoe or kayak and other watercraft or other object due to collision, sequela','Y','0000-00-00 00:00:00'),(175077,10,'V91.16XA ','Crushed between (nonpowered) inflatable craft and other watercraft or other object due to collision, initial encounter','Y','0000-00-00 00:00:00'),(175078,10,'V91.16XD ','Crushed between (nonpowered) inflatable craft and other watercraft or other object due to collision, subsequent encounter','Y','0000-00-00 00:00:00'),(175079,10,'V91.16XS ','Crushed between (nonpowered) inflatable craft and other watercraft or other object due to collision, sequela','Y','0000-00-00 00:00:00'),(175080,10,'V91.18XA ','Crushed between other unpowered watercraft and other watercraft or other object due to collision, initial encounter','Y','0000-00-00 00:00:00'),(175081,10,'V91.18XD ','Crushed between other unpowered watercraft and other watercraft or other object due to collision, subsequent encounter','Y','0000-00-00 00:00:00'),(175082,10,'V91.18XS ','Crushed between other unpowered watercraft and other watercraft or other object due to collision, sequela','Y','0000-00-00 00:00:00'),(175083,10,'V91.19XA ','Crushed between unspecified watercraft and other watercraft or other object due to collision, initial encounter','Y','0000-00-00 00:00:00'),(175084,10,'V91.19XD ','Crushed between unspecified watercraft and other watercraft or other object due to collision, subsequent encounter','Y','0000-00-00 00:00:00'),(175085,10,'V91.19XS ','Crushed between unspecified watercraft and other watercraft or other object due to collision, sequela','Y','0000-00-00 00:00:00'),(175086,10,'V91.20XA ','Fall due to collision between merchant ship and other watercraft or other object, initial encounter','Y','0000-00-00 00:00:00'),(175087,10,'V91.20XD ','Fall due to collision between merchant ship and other watercraft or other object, subsequent encounter','Y','0000-00-00 00:00:00'),(175088,10,'V91.20XS ','Fall due to collision between merchant ship and other watercraft or other object, sequela','Y','0000-00-00 00:00:00'),(175089,10,'V91.21XA ','Fall due to collision between passenger ship and other watercraft or other object, initial encounter','Y','0000-00-00 00:00:00'),(175090,10,'V91.21XD ','Fall due to collision between passenger ship and other watercraft or other object, subsequent encounter','Y','0000-00-00 00:00:00'),(175091,10,'V91.21XS ','Fall due to collision between passenger ship and other watercraft or other object, sequela','Y','0000-00-00 00:00:00'),(175092,10,'V91.22XA ','Fall due to collision between fishing boat and other watercraft or other object, initial encounter','Y','0000-00-00 00:00:00'),(175093,10,'V91.22XD ','Fall due to collision between fishing boat and other watercraft or other object, subsequent encounter','Y','0000-00-00 00:00:00'),(175094,10,'V91.22XS ','Fall due to collision between fishing boat and other watercraft or other object, sequela','Y','0000-00-00 00:00:00'),(175095,10,'V91.23XA ','Fall due to collision between other powered watercraft and other watercraft or other object, initial encounter','Y','0000-00-00 00:00:00'),(175096,10,'V91.23XD ','Fall due to collision between other powered watercraft and other watercraft or other object, subsequent encounter','Y','0000-00-00 00:00:00'),(175097,10,'V91.23XS ','Fall due to collision between other powered watercraft and other watercraft or other object, sequela','Y','0000-00-00 00:00:00'),(175098,10,'V91.24XA ','Fall due to collision between sailboat and other watercraft or other object, initial encounter','Y','0000-00-00 00:00:00'),(175099,10,'V91.24XD ','Fall due to collision between sailboat and other watercraft or other object, subsequent encounter','Y','0000-00-00 00:00:00'),(175100,10,'V91.24XS ','Fall due to collision between sailboat and other watercraft or other object, sequela','Y','0000-00-00 00:00:00'),(175101,10,'V91.25XA ','Fall due to collision between canoe or kayak and other watercraft or other object, initial encounter','Y','0000-00-00 00:00:00'),(175102,10,'V91.25XD ','Fall due to collision between canoe or kayak and other watercraft or other object, subsequent encounter','Y','0000-00-00 00:00:00'),(175103,10,'V91.25XS ','Fall due to collision between canoe or kayak and other watercraft or other object, sequela','Y','0000-00-00 00:00:00'),(175104,10,'V91.26XA ','Fall due to collision between (nonpowered) inflatable craft and other watercraft or other object, initial encounter','Y','0000-00-00 00:00:00'),(175105,10,'V91.26XD ','Fall due to collision between (nonpowered) inflatable craft and other watercraft or other object, subsequent encounter','Y','0000-00-00 00:00:00'),(175106,10,'V91.26XS ','Fall due to collision between (nonpowered) inflatable craft and other watercraft or other object, sequela','Y','0000-00-00 00:00:00'),(175107,10,'V91.29XA ','Fall due to collision between unspecified watercraft and other watercraft or other object, initial encounter','Y','0000-00-00 00:00:00'),(175108,10,'V91.29XD ','Fall due to collision between unspecified watercraft and other watercraft or other object, subsequent encounter','Y','0000-00-00 00:00:00'),(175109,10,'V91.29XS ','Fall due to collision between unspecified watercraft and other watercraft or other object, sequela','Y','0000-00-00 00:00:00'),(175110,10,'V91.30XA ','Hit or struck by falling object due to accident to merchant ship, initial encounter','Y','0000-00-00 00:00:00'),(175111,10,'V91.30XD ','Hit or struck by falling object due to accident to merchant ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175112,10,'V91.30XS ','Hit or struck by falling object due to accident to merchant ship, sequela','Y','0000-00-00 00:00:00'),(175113,10,'V91.31XA ','Hit or struck by falling object due to accident to passenger ship, initial encounter','Y','0000-00-00 00:00:00'),(175114,10,'V91.31XD ','Hit or struck by falling object due to accident to passenger ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175115,10,'V91.31XS ','Hit or struck by falling object due to accident to passenger ship, sequela','Y','0000-00-00 00:00:00'),(175116,10,'V91.32XA ','Hit or struck by falling object due to accident to fishing boat, initial encounter','Y','0000-00-00 00:00:00'),(175117,10,'V91.32XD ','Hit or struck by falling object due to accident to fishing boat, subsequent encounter','Y','0000-00-00 00:00:00'),(175118,10,'V91.32XS ','Hit or struck by falling object due to accident to fishing boat, sequela','Y','0000-00-00 00:00:00'),(175119,10,'V91.33XA ','Hit or struck by falling object due to accident to other powered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175120,10,'V91.33XD ','Hit or struck by falling object due to accident to other powered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175121,10,'V91.33XS ','Hit or struck by falling object due to accident to other powered watercraft, sequela','Y','0000-00-00 00:00:00'),(175122,10,'V91.34XA ','Hit or struck by falling object due to accident to sailboat, initial encounter','Y','0000-00-00 00:00:00'),(175123,10,'V91.34XD ','Hit or struck by falling object due to accident to sailboat, subsequent encounter','Y','0000-00-00 00:00:00'),(175124,10,'V91.34XS ','Hit or struck by falling object due to accident to sailboat, sequela','Y','0000-00-00 00:00:00'),(175125,10,'V91.35XA ','Hit or struck by falling object due to accident to canoe or kayak, initial encounter','Y','0000-00-00 00:00:00'),(175126,10,'V91.35XD ','Hit or struck by falling object due to accident to canoe or kayak, subsequent encounter','Y','0000-00-00 00:00:00'),(175127,10,'V91.35XS ','Hit or struck by falling object due to accident to canoe or kayak, sequela','Y','0000-00-00 00:00:00'),(175128,10,'V91.36XA ','Hit or struck by falling object due to accident to (nonpowered) inflatable craft, initial encounter','Y','0000-00-00 00:00:00'),(175129,10,'V91.36XD ','Hit or struck by falling object due to accident to (nonpowered) inflatable craft, subsequent encounter','Y','0000-00-00 00:00:00'),(175130,10,'V91.36XS ','Hit or struck by falling object due to accident to (nonpowered) inflatable craft, sequela','Y','0000-00-00 00:00:00'),(175131,10,'V91.37XA ','Hit or struck by falling object due to accident to water-skis, initial encounter','Y','0000-00-00 00:00:00'),(175132,10,'V91.37XD ','Hit or struck by falling object due to accident to water-skis, subsequent encounter','Y','0000-00-00 00:00:00'),(175133,10,'V91.37XS ','Hit or struck by falling object due to accident to water-skis, sequela','Y','0000-00-00 00:00:00'),(175134,10,'V91.38XA ','Hit or struck by falling object due to accident to other unpowered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175135,10,'V91.38XD ','Hit or struck by falling object due to accident to other unpowered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175136,10,'V91.38XS ','Hit or struck by falling object due to accident to other unpowered watercraft, sequela','Y','0000-00-00 00:00:00'),(175137,10,'V91.39XA ','Hit or struck by falling object due to accident to unspecified watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175138,10,'V91.39XD ','Hit or struck by falling object due to accident to unspecified watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175139,10,'V91.39XS ','Hit or struck by falling object due to accident to unspecified watercraft, sequela','Y','0000-00-00 00:00:00'),(175140,10,'V91.80XA ','Other injury due to other accident to merchant ship, initial encounter','Y','0000-00-00 00:00:00'),(175141,10,'V91.80XD ','Other injury due to other accident to merchant ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175142,10,'V91.80XS ','Other injury due to other accident to merchant ship, sequela','Y','0000-00-00 00:00:00'),(175143,10,'V91.81XA ','Other injury due to other accident to passenger ship, initial encounter','Y','0000-00-00 00:00:00'),(175144,10,'V91.81XD ','Other injury due to other accident to passenger ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175145,10,'V91.81XS ','Other injury due to other accident to passenger ship, sequela','Y','0000-00-00 00:00:00'),(175146,10,'V91.82XA ','Other injury due to other accident to fishing boat, initial encounter','Y','0000-00-00 00:00:00'),(175147,10,'V91.82XD ','Other injury due to other accident to fishing boat, subsequent encounter','Y','0000-00-00 00:00:00'),(175148,10,'V91.82XS ','Other injury due to other accident to fishing boat, sequela','Y','0000-00-00 00:00:00'),(175149,10,'V91.83XA ','Other injury due to other accident to other powered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175150,10,'V91.83XD ','Other injury due to other accident to other powered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175151,10,'V91.83XS ','Other injury due to other accident to other powered watercraft, sequela','Y','0000-00-00 00:00:00'),(175152,10,'V91.84XA ','Other injury due to other accident to sailboat, initial encounter','Y','0000-00-00 00:00:00'),(175153,10,'V91.84XD ','Other injury due to other accident to sailboat, subsequent encounter','Y','0000-00-00 00:00:00'),(175154,10,'V91.84XS ','Other injury due to other accident to sailboat, sequela','Y','0000-00-00 00:00:00'),(175155,10,'V91.85XA ','Other injury due to other accident to canoe or kayak, initial encounter','Y','0000-00-00 00:00:00'),(175156,10,'V91.85XD ','Other injury due to other accident to canoe or kayak, subsequent encounter','Y','0000-00-00 00:00:00'),(175157,10,'V91.85XS ','Other injury due to other accident to canoe or kayak, sequela','Y','0000-00-00 00:00:00'),(175158,10,'V91.86XA ','Other injury due to other accident to (nonpowered) inflatable craft, initial encounter','Y','0000-00-00 00:00:00'),(175159,10,'V91.86XD ','Other injury due to other accident to (nonpowered) inflatable craft, subsequent encounter','Y','0000-00-00 00:00:00'),(175160,10,'V91.86XS ','Other injury due to other accident to (nonpowered) inflatable craft, sequela','Y','0000-00-00 00:00:00'),(175161,10,'V91.87XA ','Other injury due to other accident to water-skis, initial encounter','Y','0000-00-00 00:00:00'),(175162,10,'V91.87XD ','Other injury due to other accident to water-skis, subsequent encounter','Y','0000-00-00 00:00:00'),(175163,10,'V91.87XS ','Other injury due to other accident to water-skis, sequela','Y','0000-00-00 00:00:00'),(175164,10,'V91.88XA ','Other injury due to other accident to other unpowered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175165,10,'V91.88XD ','Other injury due to other accident to other unpowered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175166,10,'V91.88XS ','Other injury due to other accident to other unpowered watercraft, sequela','Y','0000-00-00 00:00:00'),(175167,10,'V91.89XA ','Other injury due to other accident to unspecified watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175168,10,'V91.89XD ','Other injury due to other accident to unspecified watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175169,10,'V91.89XS ','Other injury due to other accident to unspecified watercraft, sequela','Y','0000-00-00 00:00:00'),(175170,10,'V92.00XA ','Drowning and submersion due to fall off merchant ship, initial encounter','Y','0000-00-00 00:00:00'),(175171,10,'V92.00XD ','Drowning and submersion due to fall off merchant ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175172,10,'V92.00XS ','Drowning and submersion due to fall off merchant ship, sequela','Y','0000-00-00 00:00:00'),(175173,10,'V92.01XA ','Drowning and submersion due to fall off passenger ship, initial encounter','Y','0000-00-00 00:00:00'),(175174,10,'V92.01XD ','Drowning and submersion due to fall off passenger ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175175,10,'V92.01XS ','Drowning and submersion due to fall off passenger ship, sequela','Y','0000-00-00 00:00:00'),(175176,10,'V92.02XA ','Drowning and submersion due to fall off fishing boat, initial encounter','Y','0000-00-00 00:00:00'),(175177,10,'V92.02XD ','Drowning and submersion due to fall off fishing boat, subsequent encounter','Y','0000-00-00 00:00:00'),(175178,10,'V92.02XS ','Drowning and submersion due to fall off fishing boat, sequela','Y','0000-00-00 00:00:00'),(175179,10,'V92.03XA ','Drowning and submersion due to fall off other powered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175180,10,'V92.03XD ','Drowning and submersion due to fall off other powered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175181,10,'V92.03XS ','Drowning and submersion due to fall off other powered watercraft, sequela','Y','0000-00-00 00:00:00'),(175182,10,'V92.04XA ','Drowning and submersion due to fall off sailboat, initial encounter','Y','0000-00-00 00:00:00'),(175183,10,'V92.04XD ','Drowning and submersion due to fall off sailboat, subsequent encounter','Y','0000-00-00 00:00:00'),(175184,10,'V92.04XS ','Drowning and submersion due to fall off sailboat, sequela','Y','0000-00-00 00:00:00'),(175185,10,'V92.05XA ','Drowning and submersion due to fall off canoe or kayak, initial encounter','Y','0000-00-00 00:00:00'),(175186,10,'V92.05XD ','Drowning and submersion due to fall off canoe or kayak, subsequent encounter','Y','0000-00-00 00:00:00'),(175187,10,'V92.05XS ','Drowning and submersion due to fall off canoe or kayak, sequela','Y','0000-00-00 00:00:00'),(175188,10,'V92.06XA ','Drowning and submersion due to fall off (nonpowered) inflatable craft, initial encounter','Y','0000-00-00 00:00:00'),(175189,10,'V92.06XD ','Drowning and submersion due to fall off (nonpowered) inflatable craft, subsequent encounter','Y','0000-00-00 00:00:00'),(175190,10,'V92.06XS ','Drowning and submersion due to fall off (nonpowered) inflatable craft, sequela','Y','0000-00-00 00:00:00'),(175191,10,'V92.07XA ','Drowning and submersion due to fall off water-skis, initial encounter','Y','0000-00-00 00:00:00'),(175192,10,'V92.07XD ','Drowning and submersion due to fall off water-skis, subsequent encounter','Y','0000-00-00 00:00:00'),(175193,10,'V92.07XS ','Drowning and submersion due to fall off water-skis, sequela','Y','0000-00-00 00:00:00'),(175194,10,'V92.08XA ','Drowning and submersion due to fall off other unpowered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175195,10,'V92.08XD ','Drowning and submersion due to fall off other unpowered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175196,10,'V92.08XS ','Drowning and submersion due to fall off other unpowered watercraft, sequela','Y','0000-00-00 00:00:00'),(175197,10,'V92.09XA ','Drowning and submersion due to fall off unspecified watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175198,10,'V92.09XD ','Drowning and submersion due to fall off unspecified watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175199,10,'V92.09XS ','Drowning and submersion due to fall off unspecified watercraft, sequela','Y','0000-00-00 00:00:00'),(175200,10,'V92.10XA ','Drowning and submersion due to being thrown overboard by motion of merchant ship, initial encounter','Y','0000-00-00 00:00:00'),(175201,10,'V92.10XD ','Drowning and submersion due to being thrown overboard by motion of merchant ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175202,10,'V92.10XS ','Drowning and submersion due to being thrown overboard by motion of merchant ship, sequela','Y','0000-00-00 00:00:00'),(175203,10,'V92.11XA ','Drowning and submersion due to being thrown overboard by motion of passenger ship, initial encounter','Y','0000-00-00 00:00:00'),(175204,10,'V92.11XD ','Drowning and submersion due to being thrown overboard by motion of passenger ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175205,10,'V92.11XS ','Drowning and submersion due to being thrown overboard by motion of passenger ship, sequela','Y','0000-00-00 00:00:00'),(175206,10,'V92.12XA ','Drowning and submersion due to being thrown overboard by motion of fishing boat, initial encounter','Y','0000-00-00 00:00:00'),(175207,10,'V92.12XD ','Drowning and submersion due to being thrown overboard by motion of fishing boat, subsequent encounter','Y','0000-00-00 00:00:00'),(175208,10,'V92.12XS ','Drowning and submersion due to being thrown overboard by motion of fishing boat, sequela','Y','0000-00-00 00:00:00'),(175209,10,'V92.13XA ','Drowning and submersion due to being thrown overboard by motion of other powered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175210,10,'V92.13XD ','Drowning and submersion due to being thrown overboard by motion of other powered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175211,10,'V92.13XS ','Drowning and submersion due to being thrown overboard by motion of other powered watercraft, sequela','Y','0000-00-00 00:00:00'),(175212,10,'V92.14XA ','Drowning and submersion due to being thrown overboard by motion of sailboat, initial encounter','Y','0000-00-00 00:00:00'),(175213,10,'V92.14XD ','Drowning and submersion due to being thrown overboard by motion of sailboat, subsequent encounter','Y','0000-00-00 00:00:00'),(175214,10,'V92.14XS ','Drowning and submersion due to being thrown overboard by motion of sailboat, sequela','Y','0000-00-00 00:00:00'),(175215,10,'V92.15XA ','Drowning and submersion due to being thrown overboard by motion of canoe or kayak, initial encounter','Y','0000-00-00 00:00:00'),(175216,10,'V92.15XD ','Drowning and submersion due to being thrown overboard by motion of canoe or kayak, subsequent encounter','Y','0000-00-00 00:00:00'),(175217,10,'V92.15XS ','Drowning and submersion due to being thrown overboard by motion of canoe or kayak, sequela','Y','0000-00-00 00:00:00'),(175218,10,'V92.16XA ','Drowning and submersion due to being thrown overboard by motion of (nonpowered) inflatable craft, initial encounter','Y','0000-00-00 00:00:00'),(175219,10,'V92.16XD ','Drowning and submersion due to being thrown overboard by motion of (nonpowered) inflatable craft, subsequent encounter','Y','0000-00-00 00:00:00'),(175220,10,'V92.16XS ','Drowning and submersion due to being thrown overboard by motion of (nonpowered) inflatable craft, sequela','Y','0000-00-00 00:00:00'),(175221,10,'V92.19XA ','Drowning and submersion due to being thrown overboard by motion of unspecified watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175222,10,'V92.19XD ','Drowning and submersion due to being thrown overboard by motion of unspecified watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175223,10,'V92.19XS ','Drowning and submersion due to being thrown overboard by motion of unspecified watercraft, sequela','Y','0000-00-00 00:00:00'),(175224,10,'V92.20XA ','Drowning and submersion due to being washed overboard from merchant ship, initial encounter','Y','0000-00-00 00:00:00'),(175225,10,'V92.20XD ','Drowning and submersion due to being washed overboard from merchant ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175226,10,'V92.20XS ','Drowning and submersion due to being washed overboard from merchant ship, sequela','Y','0000-00-00 00:00:00'),(175227,10,'V92.21XA ','Drowning and submersion due to being washed overboard from passenger ship, initial encounter','Y','0000-00-00 00:00:00'),(175228,10,'V92.21XD ','Drowning and submersion due to being washed overboard from passenger ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175229,10,'V92.21XS ','Drowning and submersion due to being washed overboard from passenger ship, sequela','Y','0000-00-00 00:00:00'),(175230,10,'V92.22XA ','Drowning and submersion due to being washed overboard from fishing boat, initial encounter','Y','0000-00-00 00:00:00'),(175231,10,'V92.22XD ','Drowning and submersion due to being washed overboard from fishing boat, subsequent encounter','Y','0000-00-00 00:00:00'),(175232,10,'V92.22XS ','Drowning and submersion due to being washed overboard from fishing boat, sequela','Y','0000-00-00 00:00:00'),(175233,10,'V92.23XA ','Drowning and submersion due to being washed overboard from other powered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175234,10,'V92.23XD ','Drowning and submersion due to being washed overboard from other powered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175235,10,'V92.23XS ','Drowning and submersion due to being washed overboard from other powered watercraft, sequela','Y','0000-00-00 00:00:00'),(175236,10,'V92.24XA ','Drowning and submersion due to being washed overboard from sailboat, initial encounter','Y','0000-00-00 00:00:00'),(175237,10,'V92.24XD ','Drowning and submersion due to being washed overboard from sailboat, subsequent encounter','Y','0000-00-00 00:00:00'),(175238,10,'V92.24XS ','Drowning and submersion due to being washed overboard from sailboat, sequela','Y','0000-00-00 00:00:00'),(175239,10,'V92.25XA ','Drowning and submersion due to being washed overboard from canoe or kayak, initial encounter','Y','0000-00-00 00:00:00'),(175240,10,'V92.25XD ','Drowning and submersion due to being washed overboard from canoe or kayak, subsequent encounter','Y','0000-00-00 00:00:00'),(175241,10,'V92.25XS ','Drowning and submersion due to being washed overboard from canoe or kayak, sequela','Y','0000-00-00 00:00:00'),(175242,10,'V92.26XA ','Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft, initial encounter','Y','0000-00-00 00:00:00'),(175243,10,'V92.26XD ','Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft, subsequent encounter','Y','0000-00-00 00:00:00'),(175244,10,'V92.26XS ','Drowning and submersion due to being washed overboard from (nonpowered) inflatable craft, sequela','Y','0000-00-00 00:00:00'),(175245,10,'V92.27XA ','Drowning and submersion due to being washed overboard from water-skis, initial encounter','Y','0000-00-00 00:00:00'),(175246,10,'V92.27XD ','Drowning and submersion due to being washed overboard from water-skis, subsequent encounter','Y','0000-00-00 00:00:00'),(175247,10,'V92.27XS ','Drowning and submersion due to being washed overboard from water-skis, sequela','Y','0000-00-00 00:00:00'),(175248,10,'V92.28XA ','Drowning and submersion due to being washed overboard from other unpowered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175249,10,'V92.28XD ','Drowning and submersion due to being washed overboard from other unpowered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175250,10,'V92.28XS ','Drowning and submersion due to being washed overboard from other unpowered watercraft, sequela','Y','0000-00-00 00:00:00'),(175251,10,'V92.29XA ','Drowning and submersion due to being washed overboard from unspecified watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175252,10,'V92.29XD ','Drowning and submersion due to being washed overboard from unspecified watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175253,10,'V92.29XS ','Drowning and submersion due to being washed overboard from unspecified watercraft, sequela','Y','0000-00-00 00:00:00'),(175254,10,'V93.00XA ','Burn due to localized fire on board merchant vessel, initial encounter','Y','0000-00-00 00:00:00'),(175255,10,'V93.00XD ','Burn due to localized fire on board merchant vessel, subsequent encounter','Y','0000-00-00 00:00:00'),(175256,10,'V93.00XS ','Burn due to localized fire on board merchant vessel, sequela','Y','0000-00-00 00:00:00'),(175257,10,'V93.01XA ','Burn due to localized fire on board passenger vessel, initial encounter','Y','0000-00-00 00:00:00'),(175258,10,'V93.01XD ','Burn due to localized fire on board passenger vessel, subsequent encounter','Y','0000-00-00 00:00:00'),(175259,10,'V93.01XS ','Burn due to localized fire on board passenger vessel, sequela','Y','0000-00-00 00:00:00'),(175260,10,'V93.02XA ','Burn due to localized fire on board fishing boat, initial encounter','Y','0000-00-00 00:00:00'),(175261,10,'V93.02XD ','Burn due to localized fire on board fishing boat, subsequent encounter','Y','0000-00-00 00:00:00'),(175262,10,'V93.02XS ','Burn due to localized fire on board fishing boat, sequela','Y','0000-00-00 00:00:00'),(175263,10,'V93.03XA ','Burn due to localized fire on board other powered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175264,10,'V93.03XD ','Burn due to localized fire on board other powered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175265,10,'V93.03XS ','Burn due to localized fire on board other powered watercraft, sequela','Y','0000-00-00 00:00:00'),(175266,10,'V93.04XA ','Burn due to localized fire on board sailboat, initial encounter','Y','0000-00-00 00:00:00'),(175267,10,'V93.04XD ','Burn due to localized fire on board sailboat, subsequent encounter','Y','0000-00-00 00:00:00'),(175268,10,'V93.04XS ','Burn due to localized fire on board sailboat, sequela','Y','0000-00-00 00:00:00'),(175269,10,'V93.09XA ','Burn due to localized fire on board unspecified watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175270,10,'V93.09XD ','Burn due to localized fire on board unspecified watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175271,10,'V93.09XS ','Burn due to localized fire on board unspecified watercraft, sequela','Y','0000-00-00 00:00:00'),(175272,10,'V93.10XA ','Other burn on board merchant vessel, initial encounter','Y','0000-00-00 00:00:00'),(175273,10,'V93.10XD ','Other burn on board merchant vessel, subsequent encounter','Y','0000-00-00 00:00:00'),(175274,10,'V93.10XS ','Other burn on board merchant vessel, sequela','Y','0000-00-00 00:00:00'),(175275,10,'V93.11XA ','Other burn on board passenger vessel, initial encounter','Y','0000-00-00 00:00:00'),(175276,10,'V93.11XD ','Other burn on board passenger vessel, subsequent encounter','Y','0000-00-00 00:00:00'),(175277,10,'V93.11XS ','Other burn on board passenger vessel, sequela','Y','0000-00-00 00:00:00'),(175278,10,'V93.12XA ','Other burn on board fishing boat, initial encounter','Y','0000-00-00 00:00:00'),(175279,10,'V93.12XD ','Other burn on board fishing boat, subsequent encounter','Y','0000-00-00 00:00:00'),(175280,10,'V93.12XS ','Other burn on board fishing boat, sequela','Y','0000-00-00 00:00:00'),(175281,10,'V93.13XA ','Other burn on board other powered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175282,10,'V93.13XD ','Other burn on board other powered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175283,10,'V93.13XS ','Other burn on board other powered watercraft, sequela','Y','0000-00-00 00:00:00'),(175284,10,'V93.14XA ','Other burn on board sailboat, initial encounter','Y','0000-00-00 00:00:00'),(175285,10,'V93.14XD ','Other burn on board sailboat, subsequent encounter','Y','0000-00-00 00:00:00'),(175286,10,'V93.14XS ','Other burn on board sailboat, sequela','Y','0000-00-00 00:00:00'),(175287,10,'V93.19XA ','Other burn on board unspecified watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175288,10,'V93.19XD ','Other burn on board unspecified watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175289,10,'V93.19XS ','Other burn on board unspecified watercraft, sequela','Y','0000-00-00 00:00:00'),(175290,10,'V93.20XA ','Heat exposure on board merchant ship, initial encounter','Y','0000-00-00 00:00:00'),(175291,10,'V93.20XD ','Heat exposure on board merchant ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175292,10,'V93.20XS ','Heat exposure on board merchant ship, sequela','Y','0000-00-00 00:00:00'),(175293,10,'V93.21XA ','Heat exposure on board passenger ship, initial encounter','Y','0000-00-00 00:00:00'),(175294,10,'V93.21XD ','Heat exposure on board passenger ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175295,10,'V93.21XS ','Heat exposure on board passenger ship, sequela','Y','0000-00-00 00:00:00'),(175296,10,'V93.22XA ','Heat exposure on board fishing boat, initial encounter','Y','0000-00-00 00:00:00'),(175297,10,'V93.22XD ','Heat exposure on board fishing boat, subsequent encounter','Y','0000-00-00 00:00:00'),(175298,10,'V93.22XS ','Heat exposure on board fishing boat, sequela','Y','0000-00-00 00:00:00'),(175299,10,'V93.23XA ','Heat exposure on board other powered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175300,10,'V93.23XD ','Heat exposure on board other powered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175301,10,'V93.23XS ','Heat exposure on board other powered watercraft, sequela','Y','0000-00-00 00:00:00'),(175302,10,'V93.24XA ','Heat exposure on board sailboat, initial encounter','Y','0000-00-00 00:00:00'),(175303,10,'V93.24XD ','Heat exposure on board sailboat, subsequent encounter','Y','0000-00-00 00:00:00'),(175304,10,'V93.24XS ','Heat exposure on board sailboat, sequela','Y','0000-00-00 00:00:00'),(175305,10,'V93.29XA ','Heat exposure on board unspecified watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175306,10,'V93.29XD ','Heat exposure on board unspecified watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175307,10,'V93.29XS ','Heat exposure on board unspecified watercraft, sequela','Y','0000-00-00 00:00:00'),(175308,10,'V93.30XA ','Fall on board merchant ship, initial encounter','Y','0000-00-00 00:00:00'),(175309,10,'V93.30XD ','Fall on board merchant ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175310,10,'V93.30XS ','Fall on board merchant ship, sequela','Y','0000-00-00 00:00:00'),(175311,10,'V93.31XA ','Fall on board passenger ship, initial encounter','Y','0000-00-00 00:00:00'),(175312,10,'V93.31XD ','Fall on board passenger ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175313,10,'V93.31XS ','Fall on board passenger ship, sequela','Y','0000-00-00 00:00:00'),(175314,10,'V93.32XA ','Fall on board fishing boat, initial encounter','Y','0000-00-00 00:00:00'),(175315,10,'V93.32XD ','Fall on board fishing boat, subsequent encounter','Y','0000-00-00 00:00:00'),(175316,10,'V93.32XS ','Fall on board fishing boat, sequela','Y','0000-00-00 00:00:00'),(175317,10,'V93.33XA ','Fall on board other powered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175318,10,'V93.33XD ','Fall on board other powered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175319,10,'V93.33XS ','Fall on board other powered watercraft, sequela','Y','0000-00-00 00:00:00'),(175320,10,'V93.34XA ','Fall on board sailboat, initial encounter','Y','0000-00-00 00:00:00'),(175321,10,'V93.34XD ','Fall on board sailboat, subsequent encounter','Y','0000-00-00 00:00:00'),(175322,10,'V93.34XS ','Fall on board sailboat, sequela','Y','0000-00-00 00:00:00'),(175323,10,'V93.35XA ','Fall on board canoe or kayak, initial encounter','Y','0000-00-00 00:00:00'),(175324,10,'V93.35XD ','Fall on board canoe or kayak, subsequent encounter','Y','0000-00-00 00:00:00'),(175325,10,'V93.35XS ','Fall on board canoe or kayak, sequela','Y','0000-00-00 00:00:00'),(175326,10,'V93.36XA ','Fall on board (nonpowered) inflatable craft, initial encounter','Y','0000-00-00 00:00:00'),(175327,10,'V93.36XD ','Fall on board (nonpowered) inflatable craft, subsequent encounter','Y','0000-00-00 00:00:00'),(175328,10,'V93.36XS ','Fall on board (nonpowered) inflatable craft, sequela','Y','0000-00-00 00:00:00'),(175329,10,'V93.38XA ','Fall on board other unpowered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175330,10,'V93.38XD ','Fall on board other unpowered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175331,10,'V93.38XS ','Fall on board other unpowered watercraft, sequela','Y','0000-00-00 00:00:00'),(175332,10,'V93.39XA ','Fall on board unspecified watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175333,10,'V93.39XD ','Fall on board unspecified watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175334,10,'V93.39XS ','Fall on board unspecified watercraft, sequela','Y','0000-00-00 00:00:00'),(175335,10,'V93.40XA ','Struck by falling object on merchant ship, initial encounter','Y','0000-00-00 00:00:00'),(175336,10,'V93.40XD ','Struck by falling object on merchant ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175337,10,'V93.40XS ','Struck by falling object on merchant ship, sequela','Y','0000-00-00 00:00:00'),(175338,10,'V93.41XA ','Struck by falling object on passenger ship, initial encounter','Y','0000-00-00 00:00:00'),(175339,10,'V93.41XD ','Struck by falling object on passenger ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175340,10,'V93.41XS ','Struck by falling object on passenger ship, sequela','Y','0000-00-00 00:00:00'),(175341,10,'V93.42XA ','Struck by falling object on fishing boat, initial encounter','Y','0000-00-00 00:00:00'),(175342,10,'V93.42XD ','Struck by falling object on fishing boat, subsequent encounter','Y','0000-00-00 00:00:00'),(175343,10,'V93.42XS ','Struck by falling object on fishing boat, sequela','Y','0000-00-00 00:00:00'),(175344,10,'V93.43XA ','Struck by falling object on other powered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175345,10,'V93.43XD ','Struck by falling object on other powered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175346,10,'V93.43XS ','Struck by falling object on other powered watercraft, sequela','Y','0000-00-00 00:00:00'),(175347,10,'V93.44XA ','Struck by falling object on sailboat, initial encounter','Y','0000-00-00 00:00:00'),(175348,10,'V93.44XD ','Struck by falling object on sailboat, subsequent encounter','Y','0000-00-00 00:00:00'),(175349,10,'V93.44XS ','Struck by falling object on sailboat, sequela','Y','0000-00-00 00:00:00'),(175350,10,'V93.48XA ','Struck by falling object on other unpowered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175351,10,'V93.48XD ','Struck by falling object on other unpowered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175352,10,'V93.48XS ','Struck by falling object on other unpowered watercraft, sequela','Y','0000-00-00 00:00:00'),(175353,10,'V93.49XA ','Struck by falling object on unspecified watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175354,10,'V93.49XD ','Struck by falling object on unspecified watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175355,10,'V93.49XS ','Struck by falling object on unspecified watercraft, sequela','Y','0000-00-00 00:00:00'),(175356,10,'V93.50XA ','Explosion on board merchant ship, initial encounter','Y','0000-00-00 00:00:00'),(175357,10,'V93.50XD ','Explosion on board merchant ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175358,10,'V93.50XS ','Explosion on board merchant ship, sequela','Y','0000-00-00 00:00:00'),(175359,10,'V93.51XA ','Explosion on board passenger ship, initial encounter','Y','0000-00-00 00:00:00'),(175360,10,'V93.51XD ','Explosion on board passenger ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175361,10,'V93.51XS ','Explosion on board passenger ship, sequela','Y','0000-00-00 00:00:00'),(175362,10,'V93.52XA ','Explosion on board fishing boat, initial encounter','Y','0000-00-00 00:00:00'),(175363,10,'V93.52XD ','Explosion on board fishing boat, subsequent encounter','Y','0000-00-00 00:00:00'),(175364,10,'V93.52XS ','Explosion on board fishing boat, sequela','Y','0000-00-00 00:00:00'),(175365,10,'V93.53XA ','Explosion on board other powered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175366,10,'V93.53XD ','Explosion on board other powered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175367,10,'V93.53XS ','Explosion on board other powered watercraft, sequela','Y','0000-00-00 00:00:00'),(175368,10,'V93.54XA ','Explosion on board sailboat, initial encounter','Y','0000-00-00 00:00:00'),(175369,10,'V93.54XD ','Explosion on board sailboat, subsequent encounter','Y','0000-00-00 00:00:00'),(175370,10,'V93.54XS ','Explosion on board sailboat, sequela','Y','0000-00-00 00:00:00'),(175371,10,'V93.59XA ','Explosion on board unspecified watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175372,10,'V93.59XD ','Explosion on board unspecified watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175373,10,'V93.59XS ','Explosion on board unspecified watercraft, sequela','Y','0000-00-00 00:00:00'),(175374,10,'V93.60XA ','Machinery accident on board merchant ship, initial encounter','Y','0000-00-00 00:00:00'),(175375,10,'V93.60XD ','Machinery accident on board merchant ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175376,10,'V93.60XS ','Machinery accident on board merchant ship, sequela','Y','0000-00-00 00:00:00'),(175377,10,'V93.61XA ','Machinery accident on board passenger ship, initial encounter','Y','0000-00-00 00:00:00'),(175378,10,'V93.61XD ','Machinery accident on board passenger ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175379,10,'V93.61XS ','Machinery accident on board passenger ship, sequela','Y','0000-00-00 00:00:00'),(175380,10,'V93.62XA ','Machinery accident on board fishing boat, initial encounter','Y','0000-00-00 00:00:00'),(175381,10,'V93.62XD ','Machinery accident on board fishing boat, subsequent encounter','Y','0000-00-00 00:00:00'),(175382,10,'V93.62XS ','Machinery accident on board fishing boat, sequela','Y','0000-00-00 00:00:00'),(175383,10,'V93.63XA ','Machinery accident on board other powered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175384,10,'V93.63XD ','Machinery accident on board other powered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175385,10,'V93.63XS ','Machinery accident on board other powered watercraft, sequela','Y','0000-00-00 00:00:00'),(175386,10,'V93.64XA ','Machinery accident on board sailboat, initial encounter','Y','0000-00-00 00:00:00'),(175387,10,'V93.64XD ','Machinery accident on board sailboat, subsequent encounter','Y','0000-00-00 00:00:00'),(175388,10,'V93.64XS ','Machinery accident on board sailboat, sequela','Y','0000-00-00 00:00:00'),(175389,10,'V93.69XA ','Machinery accident on board unspecified watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175390,10,'V93.69XD ','Machinery accident on board unspecified watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175391,10,'V93.69XS ','Machinery accident on board unspecified watercraft, sequela','Y','0000-00-00 00:00:00'),(175392,10,'V93.80XA ','Other injury due to other accident on board merchant ship, initial encounter','Y','0000-00-00 00:00:00'),(175393,10,'V93.80XD ','Other injury due to other accident on board merchant ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175394,10,'V93.80XS ','Other injury due to other accident on board merchant ship, sequela','Y','0000-00-00 00:00:00'),(175395,10,'V93.81XA ','Other injury due to other accident on board passenger ship, initial encounter','Y','0000-00-00 00:00:00'),(175396,10,'V93.81XD ','Other injury due to other accident on board passenger ship, subsequent encounter','Y','0000-00-00 00:00:00'),(175397,10,'V93.81XS ','Other injury due to other accident on board passenger ship, sequela','Y','0000-00-00 00:00:00'),(175398,10,'V93.82XA ','Other injury due to other accident on board fishing boat, initial encounter','Y','0000-00-00 00:00:00'),(175399,10,'V93.82XD ','Other injury due to other accident on board fishing boat, subsequent encounter','Y','0000-00-00 00:00:00'),(175400,10,'V93.82XS ','Other injury due to other accident on board fishing boat, sequela','Y','0000-00-00 00:00:00'),(175401,10,'V93.83XA ','Other injury due to other accident on board other powered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175402,10,'V93.83XD ','Other injury due to other accident on board other powered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175403,10,'V93.83XS ','Other injury due to other accident on board other powered watercraft, sequela','Y','0000-00-00 00:00:00'),(175404,10,'V93.84XA ','Other injury due to other accident on board sailboat, initial encounter','Y','0000-00-00 00:00:00'),(175405,10,'V93.84XD ','Other injury due to other accident on board sailboat, subsequent encounter','Y','0000-00-00 00:00:00'),(175406,10,'V93.84XS ','Other injury due to other accident on board sailboat, sequela','Y','0000-00-00 00:00:00'),(175407,10,'V93.85XA ','Other injury due to other accident on board canoe or kayak, initial encounter','Y','0000-00-00 00:00:00'),(175408,10,'V93.85XD ','Other injury due to other accident on board canoe or kayak, subsequent encounter','Y','0000-00-00 00:00:00'),(175409,10,'V93.85XS ','Other injury due to other accident on board canoe or kayak, sequela','Y','0000-00-00 00:00:00'),(175410,10,'V93.86XA ','Other injury due to other accident on board (nonpowered) inflatable craft, initial encounter','Y','0000-00-00 00:00:00'),(175411,10,'V93.86XD ','Other injury due to other accident on board (nonpowered) inflatable craft, subsequent encounter','Y','0000-00-00 00:00:00'),(175412,10,'V93.86XS ','Other injury due to other accident on board (nonpowered) inflatable craft, sequela','Y','0000-00-00 00:00:00'),(175413,10,'V93.87XA ','Other injury due to other accident on board water-skis, initial encounter','Y','0000-00-00 00:00:00'),(175414,10,'V93.87XD ','Other injury due to other accident on board water-skis, subsequent encounter','Y','0000-00-00 00:00:00'),(175415,10,'V93.87XS ','Other injury due to other accident on board water-skis, sequela','Y','0000-00-00 00:00:00'),(175416,10,'V93.88XA ','Other injury due to other accident on board other unpowered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175417,10,'V93.88XD ','Other injury due to other accident on board other unpowered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175418,10,'V93.88XS ','Other injury due to other accident on board other unpowered watercraft, sequela','Y','0000-00-00 00:00:00'),(175419,10,'V93.89XA ','Other injury due to other accident on board unspecified watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175420,10,'V93.89XD ','Other injury due to other accident on board unspecified watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175421,10,'V93.89XS ','Other injury due to other accident on board unspecified watercraft, sequela','Y','0000-00-00 00:00:00'),(175422,10,'V94.0XXA ','Hitting object or bottom of body of water due to fall from watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175423,10,'V94.0XXD ','Hitting object or bottom of body of water due to fall from watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175424,10,'V94.0XXS ','Hitting object or bottom of body of water due to fall from watercraft, sequela','Y','0000-00-00 00:00:00'),(175425,10,'V94.11XA ','Bather struck by powered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175426,10,'V94.11XD ','Bather struck by powered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175427,10,'V94.11XS ','Bather struck by powered watercraft, sequela','Y','0000-00-00 00:00:00'),(175428,10,'V94.12XA ','Bather struck by nonpowered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175429,10,'V94.12XD ','Bather struck by nonpowered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175430,10,'V94.12XS ','Bather struck by nonpowered watercraft, sequela','Y','0000-00-00 00:00:00'),(175431,10,'V94.21XA ','Rider of nonpowered watercraft struck by other nonpowered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175432,10,'V94.21XD ','Rider of nonpowered watercraft struck by other nonpowered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175433,10,'V94.21XS ','Rider of nonpowered watercraft struck by other nonpowered watercraft, sequela','Y','0000-00-00 00:00:00'),(175434,10,'V94.22XA ','Rider of nonpowered watercraft struck by powered watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175435,10,'V94.22XD ','Rider of nonpowered watercraft struck by powered watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175436,10,'V94.22XS ','Rider of nonpowered watercraft struck by powered watercraft, sequela','Y','0000-00-00 00:00:00'),(175437,10,'V94.31XA ','Injury to rider of (inflatable) recreational watercraft being pulled behind other watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175438,10,'V94.31XD ','Injury to rider of (inflatable) recreational watercraft being pulled behind other watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175439,10,'V94.31XS ','Injury to rider of (inflatable) recreational watercraft being pulled behind other watercraft, sequela','Y','0000-00-00 00:00:00'),(175440,10,'V94.32XA ','Injury to rider of non-recreational watercraft being pulled behind other watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175441,10,'V94.32XD ','Injury to rider of non-recreational watercraft being pulled behind other watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175442,10,'V94.32XS ','Injury to rider of non-recreational watercraft being pulled behind other watercraft, sequela','Y','0000-00-00 00:00:00'),(175443,10,'V94.4XXA ','Injury to barefoot water-skier, initial encounter','Y','0000-00-00 00:00:00'),(175444,10,'V94.4XXD ','Injury to barefoot water-skier, subsequent encounter','Y','0000-00-00 00:00:00'),(175445,10,'V94.4XXS ','Injury to barefoot water-skier, sequela','Y','0000-00-00 00:00:00'),(175446,10,'V94.810A ','Civilian watercraft involved in water transport accident with military watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175447,10,'V94.810D ','Civilian watercraft involved in water transport accident with military watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175448,10,'V94.810S ','Civilian watercraft involved in water transport accident with military watercraft, sequela','Y','0000-00-00 00:00:00'),(175449,10,'V94.811A ','Civilian in water injured by military watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175450,10,'V94.811D ','Civilian in water injured by military watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175451,10,'V94.811S ','Civilian in water injured by military watercraft, sequela','Y','0000-00-00 00:00:00'),(175452,10,'V94.818A ','Other water transport accident involving military watercraft, initial encounter','Y','0000-00-00 00:00:00'),(175453,10,'V94.818D ','Other water transport accident involving military watercraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175454,10,'V94.818S ','Other water transport accident involving military watercraft, sequela','Y','0000-00-00 00:00:00'),(175455,10,'V94.89XA ','Other water transport accident, initial encounter','Y','0000-00-00 00:00:00'),(175456,10,'V94.89XD ','Other water transport accident, subsequent encounter','Y','0000-00-00 00:00:00'),(175457,10,'V94.89XS ','Other water transport accident, sequela','Y','0000-00-00 00:00:00'),(175458,10,'V94.9XXA ','Unspecified water transport accident, initial encounter','Y','0000-00-00 00:00:00'),(175459,10,'V94.9XXD ','Unspecified water transport accident, subsequent encounter','Y','0000-00-00 00:00:00'),(175460,10,'V94.9XXS ','Unspecified water transport accident, sequela','Y','0000-00-00 00:00:00'),(175461,10,'V95.00XA ','Unspecified helicopter accident injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175462,10,'V95.00XD ','Unspecified helicopter accident injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175463,10,'V95.00XS ','Unspecified helicopter accident injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175464,10,'V95.01XA ','Helicopter crash injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175465,10,'V95.01XD ','Helicopter crash injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175466,10,'V95.01XS ','Helicopter crash injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175467,10,'V95.02XA ','Forced landing of helicopter injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175468,10,'V95.02XD ','Forced landing of helicopter injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175469,10,'V95.02XS ','Forced landing of helicopter injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175470,10,'V95.03XA ','Helicopter collision injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175471,10,'V95.03XD ','Helicopter collision injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175472,10,'V95.03XS ','Helicopter collision injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175473,10,'V95.04XA ','Helicopter fire injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175474,10,'V95.04XD ','Helicopter fire injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175475,10,'V95.04XS ','Helicopter fire injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175476,10,'V95.05XA ','Helicopter explosion injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175477,10,'V95.05XD ','Helicopter explosion injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175478,10,'V95.05XS ','Helicopter explosion injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175479,10,'V95.09XA ','Other helicopter accident injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175480,10,'V95.09XD ','Other helicopter accident injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175481,10,'V95.09XS ','Other helicopter accident injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175482,10,'V95.10XA ','Unspecified ultralight, microlight or powered-glider accident injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175483,10,'V95.10XD ','Unspecified ultralight, microlight or powered-glider accident injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175484,10,'V95.10XS ','Unspecified ultralight, microlight or powered-glider accident injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175485,10,'V95.11XA ','Ultralight, microlight or powered-glider crash injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175486,10,'V95.11XD ','Ultralight, microlight or powered-glider crash injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175487,10,'V95.11XS ','Ultralight, microlight or powered-glider crash injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175488,10,'V95.12XA ','Forced landing of ultralight, microlight or powered-glider injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175489,10,'V95.12XD ','Forced landing of ultralight, microlight or powered-glider injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175490,10,'V95.12XS ','Forced landing of ultralight, microlight or powered-glider injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175491,10,'V95.13XA ','Ultralight, microlight or powered-glider collision injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175492,10,'V95.13XD ','Ultralight, microlight or powered-glider collision injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175493,10,'V95.13XS ','Ultralight, microlight or powered-glider collision injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175494,10,'V95.14XA ','Ultralight, microlight or powered-glider fire injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175495,10,'V95.14XD ','Ultralight, microlight or powered-glider fire injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175496,10,'V95.14XS ','Ultralight, microlight or powered-glider fire injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175497,10,'V95.15XA ','Ultralight, microlight or powered-glider explosion injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175498,10,'V95.15XD ','Ultralight, microlight or powered-glider explosion injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175499,10,'V95.15XS ','Ultralight, microlight or powered-glider explosion injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175500,10,'V95.19XA ','Other ultralight, microlight or powered-glider accident injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175501,10,'V95.19XD ','Other ultralight, microlight or powered-glider accident injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175502,10,'V95.19XS ','Other ultralight, microlight or powered-glider accident injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175503,10,'V95.20XA ','Unspecified accident to other private fixed-wing aircraft, injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175504,10,'V95.20XD ','Unspecified accident to other private fixed-wing aircraft, injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175505,10,'V95.20XS ','Unspecified accident to other private fixed-wing aircraft, injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175506,10,'V95.21XA ','Other private fixed-wing aircraft crash injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175507,10,'V95.21XD ','Other private fixed-wing aircraft crash injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175508,10,'V95.21XS ','Other private fixed-wing aircraft crash injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175509,10,'V95.22XA ','Forced landing of other private fixed-wing aircraft injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175510,10,'V95.22XD ','Forced landing of other private fixed-wing aircraft injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175511,10,'V95.22XS ','Forced landing of other private fixed-wing aircraft injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175512,10,'V95.23XA ','Other private fixed-wing aircraft collision injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175513,10,'V95.23XD ','Other private fixed-wing aircraft collision injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175514,10,'V95.23XS ','Other private fixed-wing aircraft collision injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175515,10,'V95.24XA ','Other private fixed-wing aircraft fire injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175516,10,'V95.24XD ','Other private fixed-wing aircraft fire injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175517,10,'V95.24XS ','Other private fixed-wing aircraft fire injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175518,10,'V95.25XA ','Other private fixed-wing aircraft explosion injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175519,10,'V95.25XD ','Other private fixed-wing aircraft explosion injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175520,10,'V95.25XS ','Other private fixed-wing aircraft explosion injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175521,10,'V95.29XA ','Other accident to other private fixed-wing aircraft injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175522,10,'V95.29XD ','Other accident to other private fixed-wing aircraft injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175523,10,'V95.29XS ','Other accident to other private fixed-wing aircraft injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175524,10,'V95.30XA ','Unspecified accident to commercial fixed-wing aircraft injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175525,10,'V95.30XD ','Unspecified accident to commercial fixed-wing aircraft injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175526,10,'V95.30XS ','Unspecified accident to commercial fixed-wing aircraft injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175527,10,'V95.31XA ','Commercial fixed-wing aircraft crash injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175528,10,'V95.31XD ','Commercial fixed-wing aircraft crash injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175529,10,'V95.31XS ','Commercial fixed-wing aircraft crash injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175530,10,'V95.32XA ','Forced landing of commercial fixed-wing aircraft injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175531,10,'V95.32XD ','Forced landing of commercial fixed-wing aircraft injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175532,10,'V95.32XS ','Forced landing of commercial fixed-wing aircraft injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175533,10,'V95.33XA ','Commercial fixed-wing aircraft collision injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175534,10,'V95.33XD ','Commercial fixed-wing aircraft collision injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175535,10,'V95.33XS ','Commercial fixed-wing aircraft collision injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175536,10,'V95.34XA ','Commercial fixed-wing aircraft fire injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175537,10,'V95.34XD ','Commercial fixed-wing aircraft fire injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175538,10,'V95.34XS ','Commercial fixed-wing aircraft fire injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175539,10,'V95.35XA ','Commercial fixed-wing aircraft explosion injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175540,10,'V95.35XD ','Commercial fixed-wing aircraft explosion injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175541,10,'V95.35XS ','Commercial fixed-wing aircraft explosion injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175542,10,'V95.39XA ','Other accident to commercial fixed-wing aircraft injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175543,10,'V95.39XD ','Other accident to commercial fixed-wing aircraft injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175544,10,'V95.39XS ','Other accident to commercial fixed-wing aircraft injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175545,10,'V95.40XA ','Unspecified spacecraft accident injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175546,10,'V95.40XD ','Unspecified spacecraft accident injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175547,10,'V95.40XS ','Unspecified spacecraft accident injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175548,10,'V95.41XA ','Spacecraft crash injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175549,10,'V95.41XD ','Spacecraft crash injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175550,10,'V95.41XS ','Spacecraft crash injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175551,10,'V95.42XA ','Forced landing of spacecraft injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175552,10,'V95.42XD ','Forced landing of spacecraft injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175553,10,'V95.42XS ','Forced landing of spacecraft injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175554,10,'V95.43XA ','Spacecraft collision injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175555,10,'V95.43XD ','Spacecraft collision injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175556,10,'V95.43XS ','Spacecraft collision injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175557,10,'V95.44XA ','Spacecraft fire injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175558,10,'V95.44XD ','Spacecraft fire injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175559,10,'V95.44XS ','Spacecraft fire injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175560,10,'V95.45XA ','Spacecraft explosion injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175561,10,'V95.45XD ','Spacecraft explosion injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175562,10,'V95.45XS ','Spacecraft explosion injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175563,10,'V95.49XA ','Other spacecraft accident injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175564,10,'V95.49XD ','Other spacecraft accident injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175565,10,'V95.49XS ','Other spacecraft accident injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175566,10,'V95.8XXA ','Other powered aircraft accidents injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175567,10,'V95.8XXD ','Other powered aircraft accidents injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175568,10,'V95.8XXS ','Other powered aircraft accidents injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175569,10,'V95.9XXA ','Unspecified aircraft accident injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175570,10,'V95.9XXD ','Unspecified aircraft accident injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175571,10,'V95.9XXS ','Unspecified aircraft accident injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175572,10,'V96.00XA ','Unspecified balloon accident injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175573,10,'V96.00XD ','Unspecified balloon accident injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175574,10,'V96.00XS ','Unspecified balloon accident injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175575,10,'V96.01XA ','Balloon crash injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175576,10,'V96.01XD ','Balloon crash injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175577,10,'V96.01XS ','Balloon crash injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175578,10,'V96.02XA ','Forced landing of balloon injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175579,10,'V96.02XD ','Forced landing of balloon injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175580,10,'V96.02XS ','Forced landing of balloon injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175581,10,'V96.03XA ','Balloon collision injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175582,10,'V96.03XD ','Balloon collision injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175583,10,'V96.03XS ','Balloon collision injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175584,10,'V96.04XA ','Balloon fire injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175585,10,'V96.04XD ','Balloon fire injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175586,10,'V96.04XS ','Balloon fire injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175587,10,'V96.05XA ','Balloon explosion injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175588,10,'V96.05XD ','Balloon explosion injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175589,10,'V96.05XS ','Balloon explosion injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175590,10,'V96.09XA ','Other balloon accident injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175591,10,'V96.09XD ','Other balloon accident injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175592,10,'V96.09XS ','Other balloon accident injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175593,10,'V96.10XA ','Unspecified hang-glider accident injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175594,10,'V96.10XD ','Unspecified hang-glider accident injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175595,10,'V96.10XS ','Unspecified hang-glider accident injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175596,10,'V96.11XA ','Hang-glider crash injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175597,10,'V96.11XD ','Hang-glider crash injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175598,10,'V96.11XS ','Hang-glider crash injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175599,10,'V96.12XA ','Forced landing of hang-glider injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175600,10,'V96.12XD ','Forced landing of hang-glider injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175601,10,'V96.12XS ','Forced landing of hang-glider injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175602,10,'V96.13XA ','Hang-glider collision injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175603,10,'V96.13XD ','Hang-glider collision injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175604,10,'V96.13XS ','Hang-glider collision injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175605,10,'V96.14XA ','Hang-glider fire injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175606,10,'V96.14XD ','Hang-glider fire injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175607,10,'V96.14XS ','Hang-glider fire injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175608,10,'V96.15XA ','Hang-glider explosion injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175609,10,'V96.15XD ','Hang-glider explosion injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175610,10,'V96.15XS ','Hang-glider explosion injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175611,10,'V96.19XA ','Other hang-glider accident injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175612,10,'V96.19XD ','Other hang-glider accident injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175613,10,'V96.19XS ','Other hang-glider accident injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175614,10,'V96.20XA ','Unspecified glider (nonpowered) accident injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175615,10,'V96.20XD ','Unspecified glider (nonpowered) accident injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175616,10,'V96.20XS ','Unspecified glider (nonpowered) accident injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175617,10,'V96.21XA ','Glider (nonpowered) crash injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175618,10,'V96.21XD ','Glider (nonpowered) crash injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175619,10,'V96.21XS ','Glider (nonpowered) crash injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175620,10,'V96.22XA ','Forced landing of glider (nonpowered) injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175621,10,'V96.22XD ','Forced landing of glider (nonpowered) injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175622,10,'V96.22XS ','Forced landing of glider (nonpowered) injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175623,10,'V96.23XA ','Glider (nonpowered) collision injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175624,10,'V96.23XD ','Glider (nonpowered) collision injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175625,10,'V96.23XS ','Glider (nonpowered) collision injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175626,10,'V96.24XA ','Glider (nonpowered) fire injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175627,10,'V96.24XD ','Glider (nonpowered) fire injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175628,10,'V96.24XS ','Glider (nonpowered) fire injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175629,10,'V96.25XA ','Glider (nonpowered) explosion injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175630,10,'V96.25XD ','Glider (nonpowered) explosion injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175631,10,'V96.25XS ','Glider (nonpowered) explosion injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175632,10,'V96.29XA ','Other glider (nonpowered) accident injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175633,10,'V96.29XD ','Other glider (nonpowered) accident injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175634,10,'V96.29XS ','Other glider (nonpowered) accident injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175635,10,'V96.8XXA ','Other nonpowered-aircraft accidents injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175636,10,'V96.8XXD ','Other nonpowered-aircraft accidents injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175637,10,'V96.8XXS ','Other nonpowered-aircraft accidents injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175638,10,'V96.9XXA ','Unspecified nonpowered-aircraft accident injuring occupant, initial encounter','Y','0000-00-00 00:00:00'),(175639,10,'V96.9XXD ','Unspecified nonpowered-aircraft accident injuring occupant, subsequent encounter','Y','0000-00-00 00:00:00'),(175640,10,'V96.9XXS ','Unspecified nonpowered-aircraft accident injuring occupant, sequela','Y','0000-00-00 00:00:00'),(175641,10,'V97.0XXA ','Occupant of aircraft injured in other specified air transport accidents, initial encounter','Y','0000-00-00 00:00:00'),(175642,10,'V97.0XXD ','Occupant of aircraft injured in other specified air transport accidents, subsequent encounter','Y','0000-00-00 00:00:00'),(175643,10,'V97.0XXS ','Occupant of aircraft injured in other specified air transport accidents, sequela','Y','0000-00-00 00:00:00'),(175644,10,'V97.1XXA ','Person injured while boarding or alighting from aircraft, initial encounter','Y','0000-00-00 00:00:00'),(175645,10,'V97.1XXD ','Person injured while boarding or alighting from aircraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175646,10,'V97.1XXS ','Person injured while boarding or alighting from aircraft, sequela','Y','0000-00-00 00:00:00'),(175647,10,'V97.21XA ','Parachutist entangled in object, initial encounter','Y','0000-00-00 00:00:00'),(175648,10,'V97.21XD ','Parachutist entangled in object, subsequent encounter','Y','0000-00-00 00:00:00'),(175649,10,'V97.21XS ','Parachutist entangled in object, sequela','Y','0000-00-00 00:00:00'),(175650,10,'V97.22XA ','Parachutist injured on landing, initial encounter','Y','0000-00-00 00:00:00'),(175651,10,'V97.22XD ','Parachutist injured on landing, subsequent encounter','Y','0000-00-00 00:00:00'),(175652,10,'V97.22XS ','Parachutist injured on landing, sequela','Y','0000-00-00 00:00:00'),(175653,10,'V97.29XA ','Other parachutist accident, initial encounter','Y','0000-00-00 00:00:00'),(175654,10,'V97.29XD ','Other parachutist accident, subsequent encounter','Y','0000-00-00 00:00:00'),(175655,10,'V97.29XS ','Other parachutist accident, sequela','Y','0000-00-00 00:00:00'),(175656,10,'V97.31XA ','Hit by object falling from aircraft, initial encounter','Y','0000-00-00 00:00:00'),(175657,10,'V97.31XD ','Hit by object falling from aircraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175658,10,'V97.31XS ','Hit by object falling from aircraft, sequela','Y','0000-00-00 00:00:00'),(175659,10,'V97.32XA ','Injured by rotating propeller, initial encounter','Y','0000-00-00 00:00:00'),(175660,10,'V97.32XD ','Injured by rotating propeller, subsequent encounter','Y','0000-00-00 00:00:00'),(175661,10,'V97.32XS ','Injured by rotating propeller, sequela','Y','0000-00-00 00:00:00'),(175662,10,'V97.33XA ','Sucked into jet engine, initial encounter','Y','0000-00-00 00:00:00'),(175663,10,'V97.33XD ','Sucked into jet engine, subsequent encounter','Y','0000-00-00 00:00:00'),(175664,10,'V97.33XS ','Sucked into jet engine, sequela','Y','0000-00-00 00:00:00'),(175665,10,'V97.39XA ','Other injury to person on ground due to air transport accident, initial encounter','Y','0000-00-00 00:00:00'),(175666,10,'V97.39XD ','Other injury to person on ground due to air transport accident, subsequent encounter','Y','0000-00-00 00:00:00'),(175667,10,'V97.39XS ','Other injury to person on ground due to air transport accident, sequela','Y','0000-00-00 00:00:00'),(175668,10,'V97.810A ','Civilian aircraft involved in air transport accident with military aircraft, initial encounter','Y','0000-00-00 00:00:00'),(175669,10,'V97.810D ','Civilian aircraft involved in air transport accident with military aircraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175670,10,'V97.810S ','Civilian aircraft involved in air transport accident with military aircraft, sequela','Y','0000-00-00 00:00:00'),(175671,10,'V97.811A ','Civilian injured by military aircraft, initial encounter','Y','0000-00-00 00:00:00'),(175672,10,'V97.811D ','Civilian injured by military aircraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175673,10,'V97.811S ','Civilian injured by military aircraft, sequela','Y','0000-00-00 00:00:00'),(175674,10,'V97.818A ','Other air transport accident involving military aircraft, initial encounter','Y','0000-00-00 00:00:00'),(175675,10,'V97.818D ','Other air transport accident involving military aircraft, subsequent encounter','Y','0000-00-00 00:00:00'),(175676,10,'V97.818S ','Other air transport accident involving military aircraft, sequela','Y','0000-00-00 00:00:00'),(175677,10,'V97.89XA ','Other air transport accidents, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(175678,10,'V97.89XD ','Other air transport accidents, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(175679,10,'V97.89XS ','Other air transport accidents, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(175680,10,'V98.0XXA ','Accident to, on or involving cable-car, not on rails, initial encounter','Y','0000-00-00 00:00:00'),(175681,10,'V98.0XXD ','Accident to, on or involving cable-car, not on rails, subsequent encounter','Y','0000-00-00 00:00:00'),(175682,10,'V98.0XXS ','Accident to, on or involving cable-car, not on rails, sequela','Y','0000-00-00 00:00:00'),(175683,10,'V98.1XXA ','Accident to, on or involving land-yacht, initial encounter','Y','0000-00-00 00:00:00'),(175684,10,'V98.1XXD ','Accident to, on or involving land-yacht, subsequent encounter','Y','0000-00-00 00:00:00'),(175685,10,'V98.1XXS ','Accident to, on or involving land-yacht, sequela','Y','0000-00-00 00:00:00'),(175686,10,'V98.2XXA ','Accident to, on or involving ice yacht, initial encounter','Y','0000-00-00 00:00:00'),(175687,10,'V98.2XXD ','Accident to, on or involving ice yacht, subsequent encounter','Y','0000-00-00 00:00:00'),(175688,10,'V98.2XXS ','Accident to, on or involving ice yacht, sequela','Y','0000-00-00 00:00:00'),(175689,10,'V98.3XXA ','Accident to, on or involving ski lift, initial encounter','Y','0000-00-00 00:00:00'),(175690,10,'V98.3XXD ','Accident to, on or involving ski lift, subsequent encounter','Y','0000-00-00 00:00:00'),(175691,10,'V98.3XXS ','Accident to, on or involving ski lift, sequela','Y','0000-00-00 00:00:00'),(175692,10,'V98.8XXA ','Other specified transport accidents, initial encounter','Y','0000-00-00 00:00:00'),(175693,10,'V98.8XXD ','Other specified transport accidents, subsequent encounter','Y','0000-00-00 00:00:00'),(175694,10,'V98.8XXS ','Other specified transport accidents, sequela','Y','0000-00-00 00:00:00'),(175695,10,'V99.XXXA ','Unspecified transport accident, initial encounter','Y','0000-00-00 00:00:00'),(175696,10,'V99.XXXD ','Unspecified transport accident, subsequent encounter','Y','0000-00-00 00:00:00'),(175697,10,'V99.XXXS ','Unspecified transport accident, sequela','Y','0000-00-00 00:00:00'),(175698,10,'W00.0XXA ','Fall on same level due to ice and snow, initial encounter','Y','0000-00-00 00:00:00'),(175699,10,'W00.0XXD ','Fall on same level due to ice and snow, subsequent encounter','Y','0000-00-00 00:00:00'),(175700,10,'W00.0XXS ','Fall on same level due to ice and snow, sequela','Y','0000-00-00 00:00:00'),(175701,10,'W00.1XXA ','Fall from stairs and steps due to ice and snow, initial encounter','Y','0000-00-00 00:00:00'),(175702,10,'W00.1XXD ','Fall from stairs and steps due to ice and snow, subsequent encounter','Y','0000-00-00 00:00:00'),(175703,10,'W00.1XXS ','Fall from stairs and steps due to ice and snow, sequela','Y','0000-00-00 00:00:00'),(175704,10,'W00.2XXA ','Other fall from one level to another due to ice and snow, initial encounter','Y','0000-00-00 00:00:00'),(175705,10,'W00.2XXD ','Other fall from one level to another due to ice and snow, subsequent encounter','Y','0000-00-00 00:00:00'),(175706,10,'W00.2XXS ','Other fall from one level to another due to ice and snow, sequela','Y','0000-00-00 00:00:00'),(175707,10,'W00.9XXA ','Unspecified fall due to ice and snow, initial encounter','Y','0000-00-00 00:00:00'),(175708,10,'W00.9XXD ','Unspecified fall due to ice and snow, subsequent encounter','Y','0000-00-00 00:00:00'),(175709,10,'W00.9XXS ','Unspecified fall due to ice and snow, sequela','Y','0000-00-00 00:00:00'),(175710,10,'W01.0XXA ','Fall on same level from slipping, tripping and stumbling without subsequent striking against object, initial encounter','Y','0000-00-00 00:00:00'),(175711,10,'W01.0XXD ','Fall on same level from slipping, tripping and stumbling without subsequent striking against object, subsequent encounter','Y','0000-00-00 00:00:00'),(175712,10,'W01.0XXS ','Fall on same level from slipping, tripping and stumbling without subsequent striking against object, sequela','Y','0000-00-00 00:00:00'),(175713,10,'W01.10XA ','Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified object, initial encounter','Y','0000-00-00 00:00:00'),(175714,10,'W01.10XD ','Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified object, subsequent encounter','Y','0000-00-00 00:00:00'),(175715,10,'W01.10XS ','Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified object, sequela','Y','0000-00-00 00:00:00'),(175716,10,'W01.110A ','Fall on same level from slipping, tripping and stumbling with subsequent striking against sharp glass, initial encounter','Y','0000-00-00 00:00:00'),(175717,10,'W01.110D ','Fall on same level from slipping, tripping and stumbling with subsequent striking against sharp glass, subsequent encounter','Y','0000-00-00 00:00:00'),(175718,10,'W01.110S ','Fall on same level from slipping, tripping and stumbling with subsequent striking against sharp glass, sequela','Y','0000-00-00 00:00:00'),(175719,10,'W01.111A ','Fall on same level from slipping, tripping and stumbling with subsequent striking against power tool or machine, initial encounter','Y','0000-00-00 00:00:00'),(175720,10,'W01.111D ','Fall on same level from slipping, tripping and stumbling with subsequent striking against power tool or machine, subsequent encounter','Y','0000-00-00 00:00:00'),(175721,10,'W01.111S ','Fall on same level from slipping, tripping and stumbling with subsequent striking against power tool or machine, sequela','Y','0000-00-00 00:00:00'),(175722,10,'W01.118A ','Fall on same level from slipping, tripping and stumbling with subsequent striking against other sharp object, initial encounter','Y','0000-00-00 00:00:00'),(175723,10,'W01.118D ','Fall on same level from slipping, tripping and stumbling with subsequent striking against other sharp object, subsequent encounter','Y','0000-00-00 00:00:00'),(175724,10,'W01.118S ','Fall on same level from slipping, tripping and stumbling with subsequent striking against other sharp object, sequela','Y','0000-00-00 00:00:00'),(175725,10,'W01.119A ','Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified sharp object, initial encounter','Y','0000-00-00 00:00:00'),(175726,10,'W01.119D ','Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified sharp object, subsequent encounter','Y','0000-00-00 00:00:00'),(175727,10,'W01.119S ','Fall on same level from slipping, tripping and stumbling with subsequent striking against unspecified sharp object, sequela','Y','0000-00-00 00:00:00'),(175728,10,'W01.190A ','Fall on same level from slipping, tripping and stumbling with subsequent striking against furniture, initial encounter','Y','0000-00-00 00:00:00'),(175729,10,'W01.190D ','Fall on same level from slipping, tripping and stumbling with subsequent striking against furniture, subsequent encounter','Y','0000-00-00 00:00:00'),(175730,10,'W01.190S ','Fall on same level from slipping, tripping and stumbling with subsequent striking against furniture, sequela','Y','0000-00-00 00:00:00'),(175731,10,'W01.198A ','Fall on same level from slipping, tripping and stumbling with subsequent striking against other object, initial encounter','Y','0000-00-00 00:00:00'),(175732,10,'W01.198D ','Fall on same level from slipping, tripping and stumbling with subsequent striking against other object, subsequent encounter','Y','0000-00-00 00:00:00'),(175733,10,'W01.198S ','Fall on same level from slipping, tripping and stumbling with subsequent striking against other object, sequela','Y','0000-00-00 00:00:00'),(175734,10,'W03.XXXA ','Other fall on same level due to collision with another person, initial encounter','Y','0000-00-00 00:00:00'),(175735,10,'W03.XXXD ','Other fall on same level due to collision with another person, subsequent encounter','Y','0000-00-00 00:00:00'),(175736,10,'W03.XXXS ','Other fall on same level due to collision with another person, sequela','Y','0000-00-00 00:00:00'),(175737,10,'W04.XXXA ','Fall while being carried or supported by other persons, initial encounter','Y','0000-00-00 00:00:00'),(175738,10,'W04.XXXD ','Fall while being carried or supported by other persons, subsequent encounter','Y','0000-00-00 00:00:00'),(175739,10,'W04.XXXS ','Fall while being carried or supported by other persons, sequela','Y','0000-00-00 00:00:00'),(175740,10,'W05.0XXA ','Fall from non-moving wheelchair, initial encounter','Y','0000-00-00 00:00:00'),(175741,10,'W05.0XXD ','Fall from non-moving wheelchair, subsequent encounter','Y','0000-00-00 00:00:00'),(175742,10,'W05.0XXS ','Fall from non-moving wheelchair, sequela','Y','0000-00-00 00:00:00'),(175743,10,'W05.1XXA ','Fall from non-moving nonmotorized scooter, initial encounter','Y','0000-00-00 00:00:00'),(175744,10,'W05.1XXD ','Fall from non-moving nonmotorized scooter, subsequent encounter','Y','0000-00-00 00:00:00'),(175745,10,'W05.1XXS ','Fall from non-moving nonmotorized scooter, sequela','Y','0000-00-00 00:00:00'),(175746,10,'W05.2XXA ','Fall from non-moving motorized mobility scooter, initial encounter','Y','0000-00-00 00:00:00'),(175747,10,'W05.2XXD ','Fall from non-moving motorized mobility scooter, subsequent encounter','Y','0000-00-00 00:00:00'),(175748,10,'W05.2XXS ','Fall from non-moving motorized mobility scooter, sequela','Y','0000-00-00 00:00:00'),(175749,10,'W06.XXXA ','Fall from bed, initial encounter','Y','0000-00-00 00:00:00'),(175750,10,'W06.XXXD ','Fall from bed, subsequent encounter','Y','0000-00-00 00:00:00'),(175751,10,'W06.XXXS ','Fall from bed, sequela','Y','0000-00-00 00:00:00'),(175752,10,'W07.XXXA ','Fall from chair, initial encounter','Y','0000-00-00 00:00:00'),(175753,10,'W07.XXXD ','Fall from chair, subsequent encounter','Y','0000-00-00 00:00:00'),(175754,10,'W07.XXXS ','Fall from chair, sequela','Y','0000-00-00 00:00:00'),(175755,10,'W08.XXXA ','Fall from other furniture, initial encounter','Y','0000-00-00 00:00:00'),(175756,10,'W08.XXXD ','Fall from other furniture, subsequent encounter','Y','0000-00-00 00:00:00'),(175757,10,'W08.XXXS ','Fall from other furniture, sequela','Y','0000-00-00 00:00:00'),(175758,10,'W09.0XXA ','Fall on or from playground slide, initial encounter','Y','0000-00-00 00:00:00'),(175759,10,'W09.0XXD ','Fall on or from playground slide, subsequent encounter','Y','0000-00-00 00:00:00'),(175760,10,'W09.0XXS ','Fall on or from playground slide, sequela','Y','0000-00-00 00:00:00'),(175761,10,'W09.1XXA ','Fall from playground swing, initial encounter','Y','0000-00-00 00:00:00'),(175762,10,'W09.1XXD ','Fall from playground swing, subsequent encounter','Y','0000-00-00 00:00:00'),(175763,10,'W09.1XXS ','Fall from playground swing, sequela','Y','0000-00-00 00:00:00'),(175764,10,'W09.2XXA ','Fall on or from jungle gym, initial encounter','Y','0000-00-00 00:00:00'),(175765,10,'W09.2XXD ','Fall on or from jungle gym, subsequent encounter','Y','0000-00-00 00:00:00'),(175766,10,'W09.2XXS ','Fall on or from jungle gym, sequela','Y','0000-00-00 00:00:00'),(175767,10,'W09.8XXA ','Fall on or from other playground equipment, initial encounter','Y','0000-00-00 00:00:00'),(175768,10,'W09.8XXD ','Fall on or from other playground equipment, subsequent encounter','Y','0000-00-00 00:00:00'),(175769,10,'W09.8XXS ','Fall on or from other playground equipment, sequela','Y','0000-00-00 00:00:00'),(175770,10,'W10.0XXA ','Fall (on)(from) escalator, initial encounter','Y','0000-00-00 00:00:00'),(175771,10,'W10.0XXD ','Fall (on)(from) escalator, subsequent encounter','Y','0000-00-00 00:00:00'),(175772,10,'W10.0XXS ','Fall (on)(from) escalator, sequela','Y','0000-00-00 00:00:00'),(175773,10,'W10.1XXA ','Fall (on)(from) sidewalk curb, initial encounter','Y','0000-00-00 00:00:00'),(175774,10,'W10.1XXD ','Fall (on)(from) sidewalk curb, subsequent encounter','Y','0000-00-00 00:00:00'),(175775,10,'W10.1XXS ','Fall (on)(from) sidewalk curb, sequela','Y','0000-00-00 00:00:00'),(175776,10,'W10.2XXA ','Fall (on)(from) incline, initial encounter','Y','0000-00-00 00:00:00'),(175777,10,'W10.2XXD ','Fall (on)(from) incline, subsequent encounter','Y','0000-00-00 00:00:00'),(175778,10,'W10.2XXS ','Fall (on)(from) incline, sequela','Y','0000-00-00 00:00:00'),(175779,10,'W10.8XXA ','Fall (on) (from) other stairs and steps, initial encounter','Y','0000-00-00 00:00:00'),(175780,10,'W10.8XXD ','Fall (on) (from) other stairs and steps, subsequent encounter','Y','0000-00-00 00:00:00'),(175781,10,'W10.8XXS ','Fall (on) (from) other stairs and steps, sequela','Y','0000-00-00 00:00:00'),(175782,10,'W10.9XXA ','Fall (on) (from) unspecified stairs and steps, initial encounter','Y','0000-00-00 00:00:00'),(175783,10,'W10.9XXD ','Fall (on) (from) unspecified stairs and steps, subsequent encounter','Y','0000-00-00 00:00:00'),(175784,10,'W10.9XXS ','Fall (on) (from) unspecified stairs and steps, sequela','Y','0000-00-00 00:00:00'),(175785,10,'W11.XXXA ','Fall on and from ladder, initial encounter','Y','0000-00-00 00:00:00'),(175786,10,'W11.XXXD ','Fall on and from ladder, subsequent encounter','Y','0000-00-00 00:00:00'),(175787,10,'W11.XXXS ','Fall on and from ladder, sequela','Y','0000-00-00 00:00:00'),(175788,10,'W12.XXXA ','Fall on and from scaffolding, initial encounter','Y','0000-00-00 00:00:00'),(175789,10,'W12.XXXD ','Fall on and from scaffolding, subsequent encounter','Y','0000-00-00 00:00:00'),(175790,10,'W12.XXXS ','Fall on and from scaffolding, sequela','Y','0000-00-00 00:00:00'),(175791,10,'W13.0XXA ','Fall from, out of or through balcony, initial encounter','Y','0000-00-00 00:00:00'),(175792,10,'W13.0XXD ','Fall from, out of or through balcony, subsequent encounter','Y','0000-00-00 00:00:00'),(175793,10,'W13.0XXS ','Fall from, out of or through balcony, sequela','Y','0000-00-00 00:00:00'),(175794,10,'W13.1XXA ','Fall from, out of or through bridge, initial encounter','Y','0000-00-00 00:00:00'),(175795,10,'W13.1XXD ','Fall from, out of or through bridge, subsequent encounter','Y','0000-00-00 00:00:00'),(175796,10,'W13.1XXS ','Fall from, out of or through bridge, sequela','Y','0000-00-00 00:00:00'),(175797,10,'W13.2XXA ','Fall from, out of or through roof, initial encounter','Y','0000-00-00 00:00:00'),(175798,10,'W13.2XXD ','Fall from, out of or through roof, subsequent encounter','Y','0000-00-00 00:00:00'),(175799,10,'W13.2XXS ','Fall from, out of or through roof, sequela','Y','0000-00-00 00:00:00'),(175800,10,'W13.3XXA ','Fall through floor, initial encounter','Y','0000-00-00 00:00:00'),(175801,10,'W13.3XXD ','Fall through floor, subsequent encounter','Y','0000-00-00 00:00:00'),(175802,10,'W13.3XXS ','Fall through floor, sequela','Y','0000-00-00 00:00:00'),(175803,10,'W13.4XXA ','Fall from, out of or through window, initial encounter','Y','0000-00-00 00:00:00'),(175804,10,'W13.4XXD ','Fall from, out of or through window, subsequent encounter','Y','0000-00-00 00:00:00'),(175805,10,'W13.4XXS ','Fall from, out of or through window, sequela','Y','0000-00-00 00:00:00'),(175806,10,'W13.8XXA ','Fall from, out of or through other building or structure, initial encounter','Y','0000-00-00 00:00:00'),(175807,10,'W13.8XXD ','Fall from, out of or through other building or structure, subsequent encounter','Y','0000-00-00 00:00:00'),(175808,10,'W13.8XXS ','Fall from, out of or through other building or structure, sequela','Y','0000-00-00 00:00:00'),(175809,10,'W13.9XXA ','Fall from, out of or through building, not otherwise specified, initial encounter','Y','0000-00-00 00:00:00'),(175810,10,'W13.9XXD ','Fall from, out of or through building, not otherwise specified, subsequent encounter','Y','0000-00-00 00:00:00'),(175811,10,'W13.9XXS ','Fall from, out of or through building, not otherwise specified, sequela','Y','0000-00-00 00:00:00'),(175812,10,'W14.XXXA ','Fall from tree, initial encounter','Y','0000-00-00 00:00:00'),(175813,10,'W14.XXXD ','Fall from tree, subsequent encounter','Y','0000-00-00 00:00:00'),(175814,10,'W14.XXXS ','Fall from tree, sequela','Y','0000-00-00 00:00:00'),(175815,10,'W15.XXXA ','Fall from cliff, initial encounter','Y','0000-00-00 00:00:00'),(175816,10,'W15.XXXD ','Fall from cliff, subsequent encounter','Y','0000-00-00 00:00:00'),(175817,10,'W15.XXXS ','Fall from cliff, sequela','Y','0000-00-00 00:00:00'),(175818,10,'W16.011A ','Fall into swimming pool striking water surface causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175819,10,'W16.011D ','Fall into swimming pool striking water surface causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175820,10,'W16.011S ','Fall into swimming pool striking water surface causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175821,10,'W16.012A ','Fall into swimming pool striking water surface causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175822,10,'W16.012D ','Fall into swimming pool striking water surface causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175823,10,'W16.012S ','Fall into swimming pool striking water surface causing other injury, sequela','Y','0000-00-00 00:00:00'),(175824,10,'W16.021A ','Fall into swimming pool striking bottom causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175825,10,'W16.021D ','Fall into swimming pool striking bottom causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175826,10,'W16.021S ','Fall into swimming pool striking bottom causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175827,10,'W16.022A ','Fall into swimming pool striking bottom causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175828,10,'W16.022D ','Fall into swimming pool striking bottom causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175829,10,'W16.022S ','Fall into swimming pool striking bottom causing other injury, sequela','Y','0000-00-00 00:00:00'),(175830,10,'W16.031A ','Fall into swimming pool striking wall causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175831,10,'W16.031D ','Fall into swimming pool striking wall causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175832,10,'W16.031S ','Fall into swimming pool striking wall causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175833,10,'W16.032A ','Fall into swimming pool striking wall causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175834,10,'W16.032D ','Fall into swimming pool striking wall causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175835,10,'W16.032S ','Fall into swimming pool striking wall causing other injury, sequela','Y','0000-00-00 00:00:00'),(175836,10,'W16.111A ','Fall into natural body of water striking water surface causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175837,10,'W16.111D ','Fall into natural body of water striking water surface causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175838,10,'W16.111S ','Fall into natural body of water striking water surface causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175839,10,'W16.112A ','Fall into natural body of water striking water surface causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175840,10,'W16.112D ','Fall into natural body of water striking water surface causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175841,10,'W16.112S ','Fall into natural body of water striking water surface causing other injury, sequela','Y','0000-00-00 00:00:00'),(175842,10,'W16.121A ','Fall into natural body of water striking bottom causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175843,10,'W16.121D ','Fall into natural body of water striking bottom causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175844,10,'W16.121S ','Fall into natural body of water striking bottom causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175845,10,'W16.122A ','Fall into natural body of water striking bottom causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175846,10,'W16.122D ','Fall into natural body of water striking bottom causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175847,10,'W16.122S ','Fall into natural body of water striking bottom causing other injury, sequela','Y','0000-00-00 00:00:00'),(175848,10,'W16.131A ','Fall into natural body of water striking side causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175849,10,'W16.131D ','Fall into natural body of water striking side causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175850,10,'W16.131S ','Fall into natural body of water striking side causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175851,10,'W16.132A ','Fall into natural body of water striking side causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175852,10,'W16.132D ','Fall into natural body of water striking side causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175853,10,'W16.132S ','Fall into natural body of water striking side causing other injury, sequela','Y','0000-00-00 00:00:00'),(175854,10,'W16.211A ','Fall in (into) filled bathtub causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175855,10,'W16.211D ','Fall in (into) filled bathtub causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175856,10,'W16.211S ','Fall in (into) filled bathtub causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175857,10,'W16.212A ','Fall in (into) filled bathtub causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175858,10,'W16.212D ','Fall in (into) filled bathtub causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175859,10,'W16.212S ','Fall in (into) filled bathtub causing other injury, sequela','Y','0000-00-00 00:00:00'),(175860,10,'W16.221A ','Fall in (into) bucket of water causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175861,10,'W16.221D ','Fall in (into) bucket of water causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175862,10,'W16.221S ','Fall in (into) bucket of water causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175863,10,'W16.222A ','Fall in (into) bucket of water causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175864,10,'W16.222D ','Fall in (into) bucket of water causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175865,10,'W16.222S ','Fall in (into) bucket of water causing other injury, sequela','Y','0000-00-00 00:00:00'),(175866,10,'W16.311A ','Fall into other water striking water surface causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175867,10,'W16.311D ','Fall into other water striking water surface causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175868,10,'W16.311S ','Fall into other water striking water surface causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175869,10,'W16.312A ','Fall into other water striking water surface causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175870,10,'W16.312D ','Fall into other water striking water surface causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175871,10,'W16.312S ','Fall into other water striking water surface causing other injury, sequela','Y','0000-00-00 00:00:00'),(175872,10,'W16.321A ','Fall into other water striking bottom causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175873,10,'W16.321D ','Fall into other water striking bottom causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175874,10,'W16.321S ','Fall into other water striking bottom causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175875,10,'W16.322A ','Fall into other water striking bottom causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175876,10,'W16.322D ','Fall into other water striking bottom causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175877,10,'W16.322S ','Fall into other water striking bottom causing other injury, sequela','Y','0000-00-00 00:00:00'),(175878,10,'W16.331A ','Fall into other water striking wall causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175879,10,'W16.331D ','Fall into other water striking wall causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175880,10,'W16.331S ','Fall into other water striking wall causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175881,10,'W16.332A ','Fall into other water striking wall causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175882,10,'W16.332D ','Fall into other water striking wall causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175883,10,'W16.332S ','Fall into other water striking wall causing other injury, sequela','Y','0000-00-00 00:00:00'),(175884,10,'W16.41XA ','Fall into unspecified water causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175885,10,'W16.41XD ','Fall into unspecified water causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175886,10,'W16.41XS ','Fall into unspecified water causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175887,10,'W16.42XA ','Fall into unspecified water causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175888,10,'W16.42XD ','Fall into unspecified water causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175889,10,'W16.42XS ','Fall into unspecified water causing other injury, sequela','Y','0000-00-00 00:00:00'),(175890,10,'W16.511A ','Jumping or diving into swimming pool striking water surface causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175891,10,'W16.511D ','Jumping or diving into swimming pool striking water surface causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175892,10,'W16.511S ','Jumping or diving into swimming pool striking water surface causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175893,10,'W16.512A ','Jumping or diving into swimming pool striking water surface causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175894,10,'W16.512D ','Jumping or diving into swimming pool striking water surface causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175895,10,'W16.512S ','Jumping or diving into swimming pool striking water surface causing other injury, sequela','Y','0000-00-00 00:00:00'),(175896,10,'W16.521A ','Jumping or diving into swimming pool striking bottom causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175897,10,'W16.521D ','Jumping or diving into swimming pool striking bottom causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175898,10,'W16.521S ','Jumping or diving into swimming pool striking bottom causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175899,10,'W16.522A ','Jumping or diving into swimming pool striking bottom causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175900,10,'W16.522D ','Jumping or diving into swimming pool striking bottom causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175901,10,'W16.522S ','Jumping or diving into swimming pool striking bottom causing other injury, sequela','Y','0000-00-00 00:00:00'),(175902,10,'W16.531A ','Jumping or diving into swimming pool striking wall causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175903,10,'W16.531D ','Jumping or diving into swimming pool striking wall causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175904,10,'W16.531S ','Jumping or diving into swimming pool striking wall causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175905,10,'W16.532A ','Jumping or diving into swimming pool striking wall causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175906,10,'W16.532D ','Jumping or diving into swimming pool striking wall causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175907,10,'W16.532S ','Jumping or diving into swimming pool striking wall causing other injury, sequela','Y','0000-00-00 00:00:00'),(175908,10,'W16.611A ','Jumping or diving into natural body of water striking water surface causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175909,10,'W16.611D ','Jumping or diving into natural body of water striking water surface causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175910,10,'W16.611S ','Jumping or diving into natural body of water striking water surface causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175911,10,'W16.612A ','Jumping or diving into natural body of water striking water surface causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175912,10,'W16.612D ','Jumping or diving into natural body of water striking water surface causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175913,10,'W16.612S ','Jumping or diving into natural body of water striking water surface causing other injury, sequela','Y','0000-00-00 00:00:00'),(175914,10,'W16.621A ','Jumping or diving into natural body of water striking bottom causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175915,10,'W16.621D ','Jumping or diving into natural body of water striking bottom causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175916,10,'W16.621S ','Jumping or diving into natural body of water striking bottom causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175917,10,'W16.622A ','Jumping or diving into natural body of water striking bottom causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175918,10,'W16.622D ','Jumping or diving into natural body of water striking bottom causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175919,10,'W16.622S ','Jumping or diving into natural body of water striking bottom causing other injury, sequela','Y','0000-00-00 00:00:00'),(175920,10,'W16.711A ','Jumping or diving from boat striking water surface causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175921,10,'W16.711D ','Jumping or diving from boat striking water surface causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175922,10,'W16.711S ','Jumping or diving from boat striking water surface causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175923,10,'W16.712A ','Jumping or diving from boat striking water surface causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175924,10,'W16.712D ','Jumping or diving from boat striking water surface causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175925,10,'W16.712S ','Jumping or diving from boat striking water surface causing other injury, sequela','Y','0000-00-00 00:00:00'),(175926,10,'W16.721A ','Jumping or diving from boat striking bottom causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175927,10,'W16.721D ','Jumping or diving from boat striking bottom causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175928,10,'W16.721S ','Jumping or diving from boat striking bottom causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175929,10,'W16.722A ','Jumping or diving from boat striking bottom causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175930,10,'W16.722D ','Jumping or diving from boat striking bottom causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175931,10,'W16.722S ','Jumping or diving from boat striking bottom causing other injury, sequela','Y','0000-00-00 00:00:00'),(175932,10,'W16.811A ','Jumping or diving into other water striking water surface causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175933,10,'W16.811D ','Jumping or diving into other water striking water surface causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175934,10,'W16.811S ','Jumping or diving into other water striking water surface causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175935,10,'W16.812A ','Jumping or diving into other water striking water surface causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175936,10,'W16.812D ','Jumping or diving into other water striking water surface causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175937,10,'W16.812S ','Jumping or diving into other water striking water surface causing other injury, sequela','Y','0000-00-00 00:00:00'),(175938,10,'W16.821A ','Jumping or diving into other water striking bottom causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175939,10,'W16.821D ','Jumping or diving into other water striking bottom causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175940,10,'W16.821S ','Jumping or diving into other water striking bottom causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175941,10,'W16.822A ','Jumping or diving into other water striking bottom causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175942,10,'W16.822D ','Jumping or diving into other water striking bottom causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175943,10,'W16.822S ','Jumping or diving into other water striking bottom causing other injury, sequela','Y','0000-00-00 00:00:00'),(175944,10,'W16.831A ','Jumping or diving into other water striking wall causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175945,10,'W16.831D ','Jumping or diving into other water striking wall causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175946,10,'W16.831S ','Jumping or diving into other water striking wall causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175947,10,'W16.832A ','Jumping or diving into other water striking wall causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175948,10,'W16.832D ','Jumping or diving into other water striking wall causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175949,10,'W16.832S ','Jumping or diving into other water striking wall causing other injury, sequela','Y','0000-00-00 00:00:00'),(175950,10,'W16.91XA ','Jumping or diving into unspecified water causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(175951,10,'W16.91XD ','Jumping or diving into unspecified water causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(175952,10,'W16.91XS ','Jumping or diving into unspecified water causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(175953,10,'W16.92XA ','Jumping or diving into unspecified water causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(175954,10,'W16.92XD ','Jumping or diving into unspecified water causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(175955,10,'W16.92XS ','Jumping or diving into unspecified water causing other injury, sequela','Y','0000-00-00 00:00:00'),(175956,10,'W17.0XXA ','Fall into well, initial encounter','Y','0000-00-00 00:00:00'),(175957,10,'W17.0XXD ','Fall into well, subsequent encounter','Y','0000-00-00 00:00:00'),(175958,10,'W17.0XXS ','Fall into well, sequela','Y','0000-00-00 00:00:00'),(175959,10,'W17.1XXA ','Fall into storm drain or manhole, initial encounter','Y','0000-00-00 00:00:00'),(175960,10,'W17.1XXD ','Fall into storm drain or manhole, subsequent encounter','Y','0000-00-00 00:00:00'),(175961,10,'W17.1XXS ','Fall into storm drain or manhole, sequela','Y','0000-00-00 00:00:00'),(175962,10,'W17.2XXA ','Fall into hole, initial encounter','Y','0000-00-00 00:00:00'),(175963,10,'W17.2XXD ','Fall into hole, subsequent encounter','Y','0000-00-00 00:00:00'),(175964,10,'W17.2XXS ','Fall into hole, sequela','Y','0000-00-00 00:00:00'),(175965,10,'W17.3XXA ','Fall into empty swimming pool, initial encounter','Y','0000-00-00 00:00:00'),(175966,10,'W17.3XXD ','Fall into empty swimming pool, subsequent encounter','Y','0000-00-00 00:00:00'),(175967,10,'W17.3XXS ','Fall into empty swimming pool, sequela','Y','0000-00-00 00:00:00'),(175968,10,'W17.4XXA ','Fall from dock, initial encounter','Y','0000-00-00 00:00:00'),(175969,10,'W17.4XXD ','Fall from dock, subsequent encounter','Y','0000-00-00 00:00:00'),(175970,10,'W17.4XXS ','Fall from dock, sequela','Y','0000-00-00 00:00:00'),(175971,10,'W17.81XA ','Fall down embankment (hill), initial encounter','Y','0000-00-00 00:00:00'),(175972,10,'W17.81XD ','Fall down embankment (hill), subsequent encounter','Y','0000-00-00 00:00:00'),(175973,10,'W17.81XS ','Fall down embankment (hill), sequela','Y','0000-00-00 00:00:00'),(175974,10,'W17.82XA ','Fall from (out of) grocery cart, initial encounter','Y','0000-00-00 00:00:00'),(175975,10,'W17.82XD ','Fall from (out of) grocery cart, subsequent encounter','Y','0000-00-00 00:00:00'),(175976,10,'W17.82XS ','Fall from (out of) grocery cart, sequela','Y','0000-00-00 00:00:00'),(175977,10,'W17.89XA ','Other fall from one level to another, initial encounter','Y','0000-00-00 00:00:00'),(175978,10,'W17.89XD ','Other fall from one level to another, subsequent encounter','Y','0000-00-00 00:00:00'),(175979,10,'W17.89XS ','Other fall from one level to another, sequela','Y','0000-00-00 00:00:00'),(175980,10,'W18.00XA ','Striking against unspecified object with subsequent fall, initial encounter','Y','0000-00-00 00:00:00'),(175981,10,'W18.00XD ','Striking against unspecified object with subsequent fall, subsequent encounter','Y','0000-00-00 00:00:00'),(175982,10,'W18.00XS ','Striking against unspecified object with subsequent fall, sequela','Y','0000-00-00 00:00:00'),(175983,10,'W18.01XA ','Striking against sports equipment with subsequent fall, initial encounter','Y','0000-00-00 00:00:00'),(175984,10,'W18.01XD ','Striking against sports equipment with subsequent fall, subsequent encounter','Y','0000-00-00 00:00:00'),(175985,10,'W18.01XS ','Striking against sports equipment with subsequent fall, sequela','Y','0000-00-00 00:00:00'),(175986,10,'W18.02XA ','Striking against glass with subsequent fall, initial encounter','Y','0000-00-00 00:00:00'),(175987,10,'W18.02XD ','Striking against glass with subsequent fall, subsequent encounter','Y','0000-00-00 00:00:00'),(175988,10,'W18.02XS ','Striking against glass with subsequent fall, sequela','Y','0000-00-00 00:00:00'),(175989,10,'W18.09XA ','Striking against other object with subsequent fall, initial encounter','Y','0000-00-00 00:00:00'),(175990,10,'W18.09XD ','Striking against other object with subsequent fall, subsequent encounter','Y','0000-00-00 00:00:00'),(175991,10,'W18.09XS ','Striking against other object with subsequent fall, sequela','Y','0000-00-00 00:00:00'),(175992,10,'W18.11XA ','Fall from or off toilet without subsequent striking against object, initial encounter','Y','0000-00-00 00:00:00'),(175993,10,'W18.11XD ','Fall from or off toilet without subsequent striking against object, subsequent encounter','Y','0000-00-00 00:00:00'),(175994,10,'W18.11XS ','Fall from or off toilet without subsequent striking against object, sequela','Y','0000-00-00 00:00:00'),(175995,10,'W18.12XA ','Fall from or off toilet with subsequent striking against object, initial encounter','Y','0000-00-00 00:00:00'),(175996,10,'W18.12XD ','Fall from or off toilet with subsequent striking against object, subsequent encounter','Y','0000-00-00 00:00:00'),(175997,10,'W18.12XS ','Fall from or off toilet with subsequent striking against object, sequela','Y','0000-00-00 00:00:00'),(175998,10,'W18.2XXA ','Fall in (into) shower or empty bathtub, initial encounter','Y','0000-00-00 00:00:00'),(175999,10,'W18.2XXD ','Fall in (into) shower or empty bathtub, subsequent encounter','Y','0000-00-00 00:00:00'),(176000,10,'W18.2XXS ','Fall in (into) shower or empty bathtub, sequela','Y','0000-00-00 00:00:00'),(176001,10,'W18.30XA ','Fall on same level, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(176002,10,'W18.30XD ','Fall on same level, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(176003,10,'W18.30XS ','Fall on same level, unspecified, sequela','Y','0000-00-00 00:00:00'),(176004,10,'W18.31XA ','Fall on same level due to stepping on an object, initial encounter','Y','0000-00-00 00:00:00'),(176005,10,'W18.31XD ','Fall on same level due to stepping on an object, subsequent encounter','Y','0000-00-00 00:00:00'),(176006,10,'W18.31XS ','Fall on same level due to stepping on an object, sequela','Y','0000-00-00 00:00:00'),(176007,10,'W18.39XA ','Other fall on same level, initial encounter','Y','0000-00-00 00:00:00'),(176008,10,'W18.39XD ','Other fall on same level, subsequent encounter','Y','0000-00-00 00:00:00'),(176009,10,'W18.39XS ','Other fall on same level, sequela','Y','0000-00-00 00:00:00'),(176010,10,'W18.40XA ','Slipping, tripping and stumbling without falling, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(176011,10,'W18.40XD ','Slipping, tripping and stumbling without falling, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(176012,10,'W18.40XS ','Slipping, tripping and stumbling without falling, unspecified, sequela','Y','0000-00-00 00:00:00'),(176013,10,'W18.41XA ','Slipping, tripping and stumbling without falling due to stepping on object, initial encounter','Y','0000-00-00 00:00:00'),(176014,10,'W18.41XD ','Slipping, tripping and stumbling without falling due to stepping on object, subsequent encounter','Y','0000-00-00 00:00:00'),(176015,10,'W18.41XS ','Slipping, tripping and stumbling without falling due to stepping on object, sequela','Y','0000-00-00 00:00:00'),(176016,10,'W18.42XA ','Slipping, tripping and stumbling without falling due to stepping into hole or opening, initial encounter','Y','0000-00-00 00:00:00'),(176017,10,'W18.42XD ','Slipping, tripping and stumbling without falling due to stepping into hole or opening, subsequent encounter','Y','0000-00-00 00:00:00'),(176018,10,'W18.42XS ','Slipping, tripping and stumbling without falling due to stepping into hole or opening, sequela','Y','0000-00-00 00:00:00'),(176019,10,'W18.43XA ','Slipping, tripping and stumbling without falling due to stepping from one level to another, initial encounter','Y','0000-00-00 00:00:00'),(176020,10,'W18.43XD ','Slipping, tripping and stumbling without falling due to stepping from one level to another, subsequent encounter','Y','0000-00-00 00:00:00'),(176021,10,'W18.43XS ','Slipping, tripping and stumbling without falling due to stepping from one level to another, sequela','Y','0000-00-00 00:00:00'),(176022,10,'W18.49XA ','Other slipping, tripping and stumbling without falling, initial encounter','Y','0000-00-00 00:00:00'),(176023,10,'W18.49XD ','Other slipping, tripping and stumbling without falling, subsequent encounter','Y','0000-00-00 00:00:00'),(176024,10,'W18.49XS ','Other slipping, tripping and stumbling without falling, sequela','Y','0000-00-00 00:00:00'),(176025,10,'W19.XXXA ','Unspecified fall, initial encounter','Y','0000-00-00 00:00:00'),(176026,10,'W19.XXXD ','Unspecified fall, subsequent encounter','Y','0000-00-00 00:00:00'),(176027,10,'W19.XXXS ','Unspecified fall, sequela','Y','0000-00-00 00:00:00'),(176028,10,'W20.0XXA ','Struck by falling object in cave-in, initial encounter','Y','0000-00-00 00:00:00'),(176029,10,'W20.0XXD ','Struck by falling object in cave-in, subsequent encounter','Y','0000-00-00 00:00:00'),(176030,10,'W20.0XXS ','Struck by falling object in cave-in, sequela','Y','0000-00-00 00:00:00'),(176031,10,'W20.1XXA ','Struck by object due to collapse of building, initial encounter','Y','0000-00-00 00:00:00'),(176032,10,'W20.1XXD ','Struck by object due to collapse of building, subsequent encounter','Y','0000-00-00 00:00:00'),(176033,10,'W20.1XXS ','Struck by object due to collapse of building, sequela','Y','0000-00-00 00:00:00'),(176034,10,'W20.8XXA ','Other cause of strike by thrown, projected or falling object, initial encounter','Y','0000-00-00 00:00:00'),(176035,10,'W20.8XXD ','Other cause of strike by thrown, projected or falling object, subsequent encounter','Y','0000-00-00 00:00:00'),(176036,10,'W20.8XXS ','Other cause of strike by thrown, projected or falling object, sequela','Y','0000-00-00 00:00:00'),(176037,10,'W21.00XA ','Struck by hit or thrown ball, unspecified type, initial encounter','Y','0000-00-00 00:00:00'),(176038,10,'W21.00XD ','Struck by hit or thrown ball, unspecified type, subsequent encounter','Y','0000-00-00 00:00:00'),(176039,10,'W21.00XS ','Struck by hit or thrown ball, unspecified type, sequela','Y','0000-00-00 00:00:00'),(176040,10,'W21.01XA ','Struck by football, initial encounter','Y','0000-00-00 00:00:00'),(176041,10,'W21.01XD ','Struck by football, subsequent encounter','Y','0000-00-00 00:00:00'),(176042,10,'W21.01XS ','Struck by football, sequela','Y','0000-00-00 00:00:00'),(176043,10,'W21.02XA ','Struck by soccer ball, initial encounter','Y','0000-00-00 00:00:00'),(176044,10,'W21.02XD ','Struck by soccer ball, subsequent encounter','Y','0000-00-00 00:00:00'),(176045,10,'W21.02XS ','Struck by soccer ball, sequela','Y','0000-00-00 00:00:00'),(176046,10,'W21.03XA ','Struck by baseball, initial encounter','Y','0000-00-00 00:00:00'),(176047,10,'W21.03XD ','Struck by baseball, subsequent encounter','Y','0000-00-00 00:00:00'),(176048,10,'W21.03XS ','Struck by baseball, sequela','Y','0000-00-00 00:00:00'),(176049,10,'W21.04XA ','Struck by golf ball, initial encounter','Y','0000-00-00 00:00:00'),(176050,10,'W21.04XD ','Struck by golf ball, subsequent encounter','Y','0000-00-00 00:00:00'),(176051,10,'W21.04XS ','Struck by golf ball, sequela','Y','0000-00-00 00:00:00'),(176052,10,'W21.05XA ','Struck by basketball, initial encounter','Y','0000-00-00 00:00:00'),(176053,10,'W21.05XD ','Struck by basketball, subsequent encounter','Y','0000-00-00 00:00:00'),(176054,10,'W21.05XS ','Struck by basketball, sequela','Y','0000-00-00 00:00:00'),(176055,10,'W21.06XA ','Struck by volleyball, initial encounter','Y','0000-00-00 00:00:00'),(176056,10,'W21.06XD ','Struck by volleyball, subsequent encounter','Y','0000-00-00 00:00:00'),(176057,10,'W21.06XS ','Struck by volleyball, sequela','Y','0000-00-00 00:00:00'),(176058,10,'W21.07XA ','Struck by softball, initial encounter','Y','0000-00-00 00:00:00'),(176059,10,'W21.07XD ','Struck by softball, subsequent encounter','Y','0000-00-00 00:00:00'),(176060,10,'W21.07XS ','Struck by softball, sequela','Y','0000-00-00 00:00:00'),(176061,10,'W21.09XA ','Struck by other hit or thrown ball, initial encounter','Y','0000-00-00 00:00:00'),(176062,10,'W21.09XD ','Struck by other hit or thrown ball, subsequent encounter','Y','0000-00-00 00:00:00'),(176063,10,'W21.09XS ','Struck by other hit or thrown ball, sequela','Y','0000-00-00 00:00:00'),(176064,10,'W21.11XA ','Struck by baseball bat, initial encounter','Y','0000-00-00 00:00:00'),(176065,10,'W21.11XD ','Struck by baseball bat, subsequent encounter','Y','0000-00-00 00:00:00'),(176066,10,'W21.11XS ','Struck by baseball bat, sequela','Y','0000-00-00 00:00:00'),(176067,10,'W21.12XA ','Struck by tennis racquet, initial encounter','Y','0000-00-00 00:00:00'),(176068,10,'W21.12XD ','Struck by tennis racquet, subsequent encounter','Y','0000-00-00 00:00:00'),(176069,10,'W21.12XS ','Struck by tennis racquet, sequela','Y','0000-00-00 00:00:00'),(176070,10,'W21.13XA ','Struck by golf club, initial encounter','Y','0000-00-00 00:00:00'),(176071,10,'W21.13XD ','Struck by golf club, subsequent encounter','Y','0000-00-00 00:00:00'),(176072,10,'W21.13XS ','Struck by golf club, sequela','Y','0000-00-00 00:00:00'),(176073,10,'W21.19XA ','Struck by other bat, racquet or club, initial encounter','Y','0000-00-00 00:00:00'),(176074,10,'W21.19XD ','Struck by other bat, racquet or club, subsequent encounter','Y','0000-00-00 00:00:00'),(176075,10,'W21.19XS ','Struck by other bat, racquet or club, sequela','Y','0000-00-00 00:00:00'),(176076,10,'W21.210A ','Struck by ice hockey stick, initial encounter','Y','0000-00-00 00:00:00'),(176077,10,'W21.210D ','Struck by ice hockey stick, subsequent encounter','Y','0000-00-00 00:00:00'),(176078,10,'W21.210S ','Struck by ice hockey stick, sequela','Y','0000-00-00 00:00:00'),(176079,10,'W21.211A ','Struck by field hockey stick, initial encounter','Y','0000-00-00 00:00:00'),(176080,10,'W21.211D ','Struck by field hockey stick, subsequent encounter','Y','0000-00-00 00:00:00'),(176081,10,'W21.211S ','Struck by field hockey stick, sequela','Y','0000-00-00 00:00:00'),(176082,10,'W21.220A ','Struck by ice hockey puck, initial encounter','Y','0000-00-00 00:00:00'),(176083,10,'W21.220D ','Struck by ice hockey puck, subsequent encounter','Y','0000-00-00 00:00:00'),(176084,10,'W21.220S ','Struck by ice hockey puck, sequela','Y','0000-00-00 00:00:00'),(176085,10,'W21.221A ','Struck by field hockey puck, initial encounter','Y','0000-00-00 00:00:00'),(176086,10,'W21.221D ','Struck by field hockey puck, subsequent encounter','Y','0000-00-00 00:00:00'),(176087,10,'W21.221S ','Struck by field hockey puck, sequela','Y','0000-00-00 00:00:00'),(176088,10,'W21.31XA ','Struck by shoe cleats, initial encounter','Y','0000-00-00 00:00:00'),(176089,10,'W21.31XD ','Struck by shoe cleats, subsequent encounter','Y','0000-00-00 00:00:00'),(176090,10,'W21.31XS ','Struck by shoe cleats, sequela','Y','0000-00-00 00:00:00'),(176091,10,'W21.32XA ','Struck by skate blades, initial encounter','Y','0000-00-00 00:00:00'),(176092,10,'W21.32XD ','Struck by skate blades, subsequent encounter','Y','0000-00-00 00:00:00'),(176093,10,'W21.32XS ','Struck by skate blades, sequela','Y','0000-00-00 00:00:00'),(176094,10,'W21.39XA ','Struck by other sports foot wear, initial encounter','Y','0000-00-00 00:00:00'),(176095,10,'W21.39XD ','Struck by other sports foot wear, subsequent encounter','Y','0000-00-00 00:00:00'),(176096,10,'W21.39XS ','Struck by other sports foot wear, sequela','Y','0000-00-00 00:00:00'),(176097,10,'W21.4XXA ','Striking against diving board, initial encounter','Y','0000-00-00 00:00:00'),(176098,10,'W21.4XXD ','Striking against diving board, subsequent encounter','Y','0000-00-00 00:00:00'),(176099,10,'W21.4XXS ','Striking against diving board, sequela','Y','0000-00-00 00:00:00'),(176100,10,'W21.81XA ','Striking against or struck by football helmet, initial encounter','Y','0000-00-00 00:00:00'),(176101,10,'W21.81XD ','Striking against or struck by football helmet, subsequent encounter','Y','0000-00-00 00:00:00'),(176102,10,'W21.81XS ','Striking against or struck by football helmet, sequela','Y','0000-00-00 00:00:00'),(176103,10,'W21.89XA ','Striking against or struck by other sports equipment, initial encounter','Y','0000-00-00 00:00:00'),(176104,10,'W21.89XD ','Striking against or struck by other sports equipment, subsequent encounter','Y','0000-00-00 00:00:00'),(176105,10,'W21.89XS ','Striking against or struck by other sports equipment, sequela','Y','0000-00-00 00:00:00'),(176106,10,'W21.9XXA ','Striking against or struck by unspecified sports equipment, initial encounter','Y','0000-00-00 00:00:00'),(176107,10,'W21.9XXD ','Striking against or struck by unspecified sports equipment, subsequent encounter','Y','0000-00-00 00:00:00'),(176108,10,'W21.9XXS ','Striking against or struck by unspecified sports equipment, sequela','Y','0000-00-00 00:00:00'),(176109,10,'W22.01XA ','Walked into wall, initial encounter','Y','0000-00-00 00:00:00'),(176110,10,'W22.01XD ','Walked into wall, subsequent encounter','Y','0000-00-00 00:00:00'),(176111,10,'W22.01XS ','Walked into wall, sequela','Y','0000-00-00 00:00:00'),(176112,10,'W22.02XA ','Walked into lamppost, initial encounter','Y','0000-00-00 00:00:00'),(176113,10,'W22.02XD ','Walked into lamppost, subsequent encounter','Y','0000-00-00 00:00:00'),(176114,10,'W22.02XS ','Walked into lamppost, sequela','Y','0000-00-00 00:00:00'),(176115,10,'W22.03XA ','Walked into furniture, initial encounter','Y','0000-00-00 00:00:00'),(176116,10,'W22.03XD ','Walked into furniture, subsequent encounter','Y','0000-00-00 00:00:00'),(176117,10,'W22.03XS ','Walked into furniture, sequela','Y','0000-00-00 00:00:00'),(176118,10,'W22.041A ','Striking against wall of swimming pool causing drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(176119,10,'W22.041D ','Striking against wall of swimming pool causing drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(176120,10,'W22.041S ','Striking against wall of swimming pool causing drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(176121,10,'W22.042A ','Striking against wall of swimming pool causing other injury, initial encounter','Y','0000-00-00 00:00:00'),(176122,10,'W22.042D ','Striking against wall of swimming pool causing other injury, subsequent encounter','Y','0000-00-00 00:00:00'),(176123,10,'W22.042S ','Striking against wall of swimming pool causing other injury, sequela','Y','0000-00-00 00:00:00'),(176124,10,'W22.09XA ','Striking against other stationary object, initial encounter','Y','0000-00-00 00:00:00'),(176125,10,'W22.09XD ','Striking against other stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(176126,10,'W22.09XS ','Striking against other stationary object, sequela','Y','0000-00-00 00:00:00'),(176127,10,'W22.10XA ','Striking against or struck by unspecified automobile airbag, initial encounter','Y','0000-00-00 00:00:00'),(176128,10,'W22.10XD ','Striking against or struck by unspecified automobile airbag, subsequent encounter','Y','0000-00-00 00:00:00'),(176129,10,'W22.10XS ','Striking against or struck by unspecified automobile airbag, sequela','Y','0000-00-00 00:00:00'),(176130,10,'W22.11XA ','Striking against or struck by driver side automobile airbag, initial encounter','Y','0000-00-00 00:00:00'),(176131,10,'W22.11XD ','Striking against or struck by driver side automobile airbag, subsequent encounter','Y','0000-00-00 00:00:00'),(176132,10,'W22.11XS ','Striking against or struck by driver side automobile airbag, sequela','Y','0000-00-00 00:00:00'),(176133,10,'W22.12XA ','Striking against or struck by front passenger side automobile airbag, initial encounter','Y','0000-00-00 00:00:00'),(176134,10,'W22.12XD ','Striking against or struck by front passenger side automobile airbag, subsequent encounter','Y','0000-00-00 00:00:00'),(176135,10,'W22.12XS ','Striking against or struck by front passenger side automobile airbag, sequela','Y','0000-00-00 00:00:00'),(176136,10,'W22.19XA ','Striking against or struck by other automobile airbag, initial encounter','Y','0000-00-00 00:00:00'),(176137,10,'W22.19XD ','Striking against or struck by other automobile airbag, subsequent encounter','Y','0000-00-00 00:00:00'),(176138,10,'W22.19XS ','Striking against or struck by other automobile airbag, sequela','Y','0000-00-00 00:00:00'),(176139,10,'W22.8XXA ','Striking against or struck by other objects, initial encounter','Y','0000-00-00 00:00:00'),(176140,10,'W22.8XXD ','Striking against or struck by other objects, subsequent encounter','Y','0000-00-00 00:00:00'),(176141,10,'W22.8XXS ','Striking against or struck by other objects, sequela','Y','0000-00-00 00:00:00'),(176142,10,'W23.0XXA ','Caught, crushed, jammed, or pinched between moving objects, initial encounter','Y','0000-00-00 00:00:00'),(176143,10,'W23.0XXD ','Caught, crushed, jammed, or pinched between moving objects, subsequent encounter','Y','0000-00-00 00:00:00'),(176144,10,'W23.0XXS ','Caught, crushed, jammed, or pinched between moving objects, sequela','Y','0000-00-00 00:00:00'),(176145,10,'W23.1XXA ','Caught, crushed, jammed, or pinched between stationary objects, initial encounter','Y','0000-00-00 00:00:00'),(176146,10,'W23.1XXD ','Caught, crushed, jammed, or pinched between stationary objects, subsequent encounter','Y','0000-00-00 00:00:00'),(176147,10,'W23.1XXS ','Caught, crushed, jammed, or pinched between stationary objects, sequela','Y','0000-00-00 00:00:00'),(176148,10,'W23.2XXA ','Caught, crushed, jammed or pinched between a moving and stationary object, initial encounter','Y','0000-00-00 00:00:00'),(176149,10,'W23.2XXD ','Caught, crushed, jammed or pinched between a moving and stationary object, subsequent encounter','Y','0000-00-00 00:00:00'),(176150,10,'W23.2XXS ','Caught, crushed, jammed or pinched between a moving and stationary object, sequela','Y','0000-00-00 00:00:00'),(176151,10,'W24.0XXA ','Contact with lifting devices, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(176152,10,'W24.0XXD ','Contact with lifting devices, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(176153,10,'W24.0XXS ','Contact with lifting devices, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(176154,10,'W24.1XXA ','Contact with transmission devices, not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(176155,10,'W24.1XXD ','Contact with transmission devices, not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(176156,10,'W24.1XXS ','Contact with transmission devices, not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(176157,10,'W25.XXXA ','Contact with sharp glass, initial encounter','Y','0000-00-00 00:00:00'),(176158,10,'W25.XXXD ','Contact with sharp glass, subsequent encounter','Y','0000-00-00 00:00:00'),(176159,10,'W25.XXXS ','Contact with sharp glass, sequela','Y','0000-00-00 00:00:00'),(176160,10,'W26.0XXA ','Contact with knife, initial encounter','Y','0000-00-00 00:00:00'),(176161,10,'W26.0XXD ','Contact with knife, subsequent encounter','Y','0000-00-00 00:00:00'),(176162,10,'W26.0XXS ','Contact with knife, sequela','Y','0000-00-00 00:00:00'),(176163,10,'W26.1XXA ','Contact with sword or dagger, initial encounter','Y','0000-00-00 00:00:00'),(176164,10,'W26.1XXD ','Contact with sword or dagger, subsequent encounter','Y','0000-00-00 00:00:00'),(176165,10,'W26.1XXS ','Contact with sword or dagger, sequela','Y','0000-00-00 00:00:00'),(176166,10,'W26.2XXA ','Contact with edge of stiff paper, initial encounter','Y','0000-00-00 00:00:00'),(176167,10,'W26.2XXD ','Contact with edge of stiff paper, subsequent encounter','Y','0000-00-00 00:00:00'),(176168,10,'W26.2XXS ','Contact with edge of stiff paper, sequela','Y','0000-00-00 00:00:00'),(176169,10,'W26.8XXA ','Contact with other sharp object(s), not elsewhere classified, initial encounter','Y','0000-00-00 00:00:00'),(176170,10,'W26.8XXD ','Contact with other sharp object(s), not elsewhere classified, subsequent encounter','Y','0000-00-00 00:00:00'),(176171,10,'W26.8XXS ','Contact with other sharp object(s), not elsewhere classified, sequela','Y','0000-00-00 00:00:00'),(176172,10,'W26.9XXA ','Contact with unspecified sharp object(s), initial encounter','Y','0000-00-00 00:00:00'),(176173,10,'W26.9XXD ','Contact with unspecified sharp object(s), subsequent encounter','Y','0000-00-00 00:00:00'),(176174,10,'W26.9XXS ','Contact with unspecified sharp object(s), sequela','Y','0000-00-00 00:00:00'),(176175,10,'W27.0XXA ','Contact with workbench tool, initial encounter','Y','0000-00-00 00:00:00'),(176176,10,'W27.0XXD ','Contact with workbench tool, subsequent encounter','Y','0000-00-00 00:00:00'),(176177,10,'W27.0XXS ','Contact with workbench tool, sequela','Y','0000-00-00 00:00:00'),(176178,10,'W27.1XXA ','Contact with garden tool, initial encounter','Y','0000-00-00 00:00:00'),(176179,10,'W27.1XXD ','Contact with garden tool, subsequent encounter','Y','0000-00-00 00:00:00'),(176180,10,'W27.1XXS ','Contact with garden tool, sequela','Y','0000-00-00 00:00:00'),(176181,10,'W27.2XXA ','Contact with scissors, initial encounter','Y','0000-00-00 00:00:00'),(176182,10,'W27.2XXD ','Contact with scissors, subsequent encounter','Y','0000-00-00 00:00:00'),(176183,10,'W27.2XXS ','Contact with scissors, sequela','Y','0000-00-00 00:00:00'),(176184,10,'W27.3XXA ','Contact with needle (sewing), initial encounter','Y','0000-00-00 00:00:00'),(176185,10,'W27.3XXD ','Contact with needle (sewing), subsequent encounter','Y','0000-00-00 00:00:00'),(176186,10,'W27.3XXS ','Contact with needle (sewing), sequela','Y','0000-00-00 00:00:00'),(176187,10,'W27.4XXA ','Contact with kitchen utensil, initial encounter','Y','0000-00-00 00:00:00'),(176188,10,'W27.4XXD ','Contact with kitchen utensil, subsequent encounter','Y','0000-00-00 00:00:00'),(176189,10,'W27.4XXS ','Contact with kitchen utensil, sequela','Y','0000-00-00 00:00:00'),(176190,10,'W27.5XXA ','Contact with paper-cutter, initial encounter','Y','0000-00-00 00:00:00'),(176191,10,'W27.5XXD ','Contact with paper-cutter, subsequent encounter','Y','0000-00-00 00:00:00'),(176192,10,'W27.5XXS ','Contact with paper-cutter, sequela','Y','0000-00-00 00:00:00'),(176193,10,'W27.8XXA ','Contact with other nonpowered hand tool, initial encounter','Y','0000-00-00 00:00:00'),(176194,10,'W27.8XXD ','Contact with other nonpowered hand tool, subsequent encounter','Y','0000-00-00 00:00:00'),(176195,10,'W27.8XXS ','Contact with other nonpowered hand tool, sequela','Y','0000-00-00 00:00:00'),(176196,10,'W28.XXXA ','Contact with powered lawn mower, initial encounter','Y','0000-00-00 00:00:00'),(176197,10,'W28.XXXD ','Contact with powered lawn mower, subsequent encounter','Y','0000-00-00 00:00:00'),(176198,10,'W28.XXXS ','Contact with powered lawn mower, sequela','Y','0000-00-00 00:00:00'),(176199,10,'W29.0XXA ','Contact with powered kitchen appliance, initial encounter','Y','0000-00-00 00:00:00'),(176200,10,'W29.0XXD ','Contact with powered kitchen appliance, subsequent encounter','Y','0000-00-00 00:00:00'),(176201,10,'W29.0XXS ','Contact with powered kitchen appliance, sequela','Y','0000-00-00 00:00:00'),(176202,10,'W29.1XXA ','Contact with electric knife, initial encounter','Y','0000-00-00 00:00:00'),(176203,10,'W29.1XXD ','Contact with electric knife, subsequent encounter','Y','0000-00-00 00:00:00'),(176204,10,'W29.1XXS ','Contact with electric knife, sequela','Y','0000-00-00 00:00:00'),(176205,10,'W29.2XXA ','Contact with other powered household machinery, initial encounter','Y','0000-00-00 00:00:00'),(176206,10,'W29.2XXD ','Contact with other powered household machinery, subsequent encounter','Y','0000-00-00 00:00:00'),(176207,10,'W29.2XXS ','Contact with other powered household machinery, sequela','Y','0000-00-00 00:00:00'),(176208,10,'W29.3XXA ','Contact with powered garden and outdoor hand tools and machinery, initial encounter','Y','0000-00-00 00:00:00'),(176209,10,'W29.3XXD ','Contact with powered garden and outdoor hand tools and machinery, subsequent encounter','Y','0000-00-00 00:00:00'),(176210,10,'W29.3XXS ','Contact with powered garden and outdoor hand tools and machinery, sequela','Y','0000-00-00 00:00:00'),(176211,10,'W29.4XXA ','Contact with nail gun, initial encounter','Y','0000-00-00 00:00:00'),(176212,10,'W29.4XXD ','Contact with nail gun, subsequent encounter','Y','0000-00-00 00:00:00'),(176213,10,'W29.4XXS ','Contact with nail gun, sequela','Y','0000-00-00 00:00:00'),(176214,10,'W29.8XXA ','Contact with other powered hand tools and household machinery, initial encounter','Y','0000-00-00 00:00:00'),(176215,10,'W29.8XXD ','Contact with other powered hand tools and household machinery, subsequent encounter','Y','0000-00-00 00:00:00'),(176216,10,'W29.8XXS ','Contact with other powered hand tools and household machinery, sequela','Y','0000-00-00 00:00:00'),(176217,10,'W30.0XXA ','Contact with combine harvester, initial encounter','Y','0000-00-00 00:00:00'),(176218,10,'W30.0XXD ','Contact with combine harvester, subsequent encounter','Y','0000-00-00 00:00:00'),(176219,10,'W30.0XXS ','Contact with combine harvester, sequela','Y','0000-00-00 00:00:00'),(176220,10,'W30.1XXA ','Contact with power take-off devices (PTO), initial encounter','Y','0000-00-00 00:00:00'),(176221,10,'W30.1XXD ','Contact with power take-off devices (PTO), subsequent encounter','Y','0000-00-00 00:00:00'),(176222,10,'W30.1XXS ','Contact with power take-off devices (PTO), sequela','Y','0000-00-00 00:00:00'),(176223,10,'W30.2XXA ','Contact with hay derrick, initial encounter','Y','0000-00-00 00:00:00'),(176224,10,'W30.2XXD ','Contact with hay derrick, subsequent encounter','Y','0000-00-00 00:00:00'),(176225,10,'W30.2XXS ','Contact with hay derrick, sequela','Y','0000-00-00 00:00:00'),(176226,10,'W30.3XXA ','Contact with grain storage elevator, initial encounter','Y','0000-00-00 00:00:00'),(176227,10,'W30.3XXD ','Contact with grain storage elevator, subsequent encounter','Y','0000-00-00 00:00:00'),(176228,10,'W30.3XXS ','Contact with grain storage elevator, sequela','Y','0000-00-00 00:00:00'),(176229,10,'W30.81XA ','Contact with agricultural transport vehicle in stationary use, initial encounter','Y','0000-00-00 00:00:00'),(176230,10,'W30.81XD ','Contact with agricultural transport vehicle in stationary use, subsequent encounter','Y','0000-00-00 00:00:00'),(176231,10,'W30.81XS ','Contact with agricultural transport vehicle in stationary use, sequela','Y','0000-00-00 00:00:00'),(176232,10,'W30.89XA ','Contact with other specified agricultural machinery, initial encounter','Y','0000-00-00 00:00:00'),(176233,10,'W30.89XD ','Contact with other specified agricultural machinery, subsequent encounter','Y','0000-00-00 00:00:00'),(176234,10,'W30.89XS ','Contact with other specified agricultural machinery, sequela','Y','0000-00-00 00:00:00'),(176235,10,'W30.9XXA ','Contact with unspecified agricultural machinery, initial encounter','Y','0000-00-00 00:00:00'),(176236,10,'W30.9XXD ','Contact with unspecified agricultural machinery, subsequent encounter','Y','0000-00-00 00:00:00'),(176237,10,'W30.9XXS ','Contact with unspecified agricultural machinery, sequela','Y','0000-00-00 00:00:00'),(176238,10,'W31.0XXA ','Contact with mining and earth-drilling machinery, initial encounter','Y','0000-00-00 00:00:00'),(176239,10,'W31.0XXD ','Contact with mining and earth-drilling machinery, subsequent encounter','Y','0000-00-00 00:00:00'),(176240,10,'W31.0XXS ','Contact with mining and earth-drilling machinery, sequela','Y','0000-00-00 00:00:00'),(176241,10,'W31.1XXA ','Contact with metalworking machines, initial encounter','Y','0000-00-00 00:00:00'),(176242,10,'W31.1XXD ','Contact with metalworking machines, subsequent encounter','Y','0000-00-00 00:00:00'),(176243,10,'W31.1XXS ','Contact with metalworking machines, sequela','Y','0000-00-00 00:00:00'),(176244,10,'W31.2XXA ','Contact with powered woodworking and forming machines, initial encounter','Y','0000-00-00 00:00:00'),(176245,10,'W31.2XXD ','Contact with powered woodworking and forming machines, subsequent encounter','Y','0000-00-00 00:00:00'),(176246,10,'W31.2XXS ','Contact with powered woodworking and forming machines, sequela','Y','0000-00-00 00:00:00'),(176247,10,'W31.3XXA ','Contact with prime movers, initial encounter','Y','0000-00-00 00:00:00'),(176248,10,'W31.3XXD ','Contact with prime movers, subsequent encounter','Y','0000-00-00 00:00:00'),(176249,10,'W31.3XXS ','Contact with prime movers, sequela','Y','0000-00-00 00:00:00'),(176250,10,'W31.81XA ','Contact with recreational machinery, initial encounter','Y','0000-00-00 00:00:00'),(176251,10,'W31.81XD ','Contact with recreational machinery, subsequent encounter','Y','0000-00-00 00:00:00'),(176252,10,'W31.81XS ','Contact with recreational machinery, sequela','Y','0000-00-00 00:00:00'),(176253,10,'W31.82XA ','Contact with other commercial machinery, initial encounter','Y','0000-00-00 00:00:00'),(176254,10,'W31.82XD ','Contact with other commercial machinery, subsequent encounter','Y','0000-00-00 00:00:00'),(176255,10,'W31.82XS ','Contact with other commercial machinery, sequela','Y','0000-00-00 00:00:00'),(176256,10,'W31.83XA ','Contact with special construction vehicle in stationary use, initial encounter','Y','0000-00-00 00:00:00'),(176257,10,'W31.83XD ','Contact with special construction vehicle in stationary use, subsequent encounter','Y','0000-00-00 00:00:00'),(176258,10,'W31.83XS ','Contact with special construction vehicle in stationary use, sequela','Y','0000-00-00 00:00:00'),(176259,10,'W31.89XA ','Contact with other specified machinery, initial encounter','Y','0000-00-00 00:00:00'),(176260,10,'W31.89XD ','Contact with other specified machinery, subsequent encounter','Y','0000-00-00 00:00:00'),(176261,10,'W31.89XS ','Contact with other specified machinery, sequela','Y','0000-00-00 00:00:00'),(176262,10,'W31.9XXA ','Contact with unspecified machinery, initial encounter','Y','0000-00-00 00:00:00'),(176263,10,'W31.9XXD ','Contact with unspecified machinery, subsequent encounter','Y','0000-00-00 00:00:00'),(176264,10,'W31.9XXS ','Contact with unspecified machinery, sequela','Y','0000-00-00 00:00:00'),(176265,10,'W32.0XXA ','Accidental handgun discharge, initial encounter','Y','0000-00-00 00:00:00'),(176266,10,'W32.0XXD ','Accidental handgun discharge, subsequent encounter','Y','0000-00-00 00:00:00'),(176267,10,'W32.0XXS ','Accidental handgun discharge, sequela','Y','0000-00-00 00:00:00'),(176268,10,'W32.1XXA ','Accidental handgun malfunction, initial encounter','Y','0000-00-00 00:00:00'),(176269,10,'W32.1XXD ','Accidental handgun malfunction, subsequent encounter','Y','0000-00-00 00:00:00'),(176270,10,'W32.1XXS ','Accidental handgun malfunction, sequela','Y','0000-00-00 00:00:00'),(176271,10,'W33.00XA ','Accidental discharge of unspecified larger firearm, initial encounter','Y','0000-00-00 00:00:00'),(176272,10,'W33.00XD ','Accidental discharge of unspecified larger firearm, subsequent encounter','Y','0000-00-00 00:00:00'),(176273,10,'W33.00XS ','Accidental discharge of unspecified larger firearm, sequela','Y','0000-00-00 00:00:00'),(176274,10,'W33.01XA ','Accidental discharge of shotgun, initial encounter','Y','0000-00-00 00:00:00'),(176275,10,'W33.01XD ','Accidental discharge of shotgun, subsequent encounter','Y','0000-00-00 00:00:00'),(176276,10,'W33.01XS ','Accidental discharge of shotgun, sequela','Y','0000-00-00 00:00:00'),(176277,10,'W33.02XA ','Accidental discharge of hunting rifle, initial encounter','Y','0000-00-00 00:00:00'),(176278,10,'W33.02XD ','Accidental discharge of hunting rifle, subsequent encounter','Y','0000-00-00 00:00:00'),(176279,10,'W33.02XS ','Accidental discharge of hunting rifle, sequela','Y','0000-00-00 00:00:00'),(176280,10,'W33.03XA ','Accidental discharge of machine gun, initial encounter','Y','0000-00-00 00:00:00'),(176281,10,'W33.03XD ','Accidental discharge of machine gun, subsequent encounter','Y','0000-00-00 00:00:00'),(176282,10,'W33.03XS ','Accidental discharge of machine gun, sequela','Y','0000-00-00 00:00:00'),(176283,10,'W33.09XA ','Accidental discharge of other larger firearm, initial encounter','Y','0000-00-00 00:00:00'),(176284,10,'W33.09XD ','Accidental discharge of other larger firearm, subsequent encounter','Y','0000-00-00 00:00:00'),(176285,10,'W33.09XS ','Accidental discharge of other larger firearm, sequela','Y','0000-00-00 00:00:00'),(176286,10,'W33.10XA ','Accidental malfunction of unspecified larger firearm, initial encounter','Y','0000-00-00 00:00:00'),(176287,10,'W33.10XD ','Accidental malfunction of unspecified larger firearm, subsequent encounter','Y','0000-00-00 00:00:00'),(176288,10,'W33.10XS ','Accidental malfunction of unspecified larger firearm, sequela','Y','0000-00-00 00:00:00'),(176289,10,'W33.11XA ','Accidental malfunction of shotgun, initial encounter','Y','0000-00-00 00:00:00'),(176290,10,'W33.11XD ','Accidental malfunction of shotgun, subsequent encounter','Y','0000-00-00 00:00:00'),(176291,10,'W33.11XS ','Accidental malfunction of shotgun, sequela','Y','0000-00-00 00:00:00'),(176292,10,'W33.12XA ','Accidental malfunction of hunting rifle, initial encounter','Y','0000-00-00 00:00:00'),(176293,10,'W33.12XD ','Accidental malfunction of hunting rifle, subsequent encounter','Y','0000-00-00 00:00:00'),(176294,10,'W33.12XS ','Accidental malfunction of hunting rifle, sequela','Y','0000-00-00 00:00:00'),(176295,10,'W33.13XA ','Accidental malfunction of machine gun, initial encounter','Y','0000-00-00 00:00:00'),(176296,10,'W33.13XD ','Accidental malfunction of machine gun, subsequent encounter','Y','0000-00-00 00:00:00'),(176297,10,'W33.13XS ','Accidental malfunction of machine gun, sequela','Y','0000-00-00 00:00:00'),(176298,10,'W33.19XA ','Accidental malfunction of other larger firearm, initial encounter','Y','0000-00-00 00:00:00'),(176299,10,'W33.19XD ','Accidental malfunction of other larger firearm, subsequent encounter','Y','0000-00-00 00:00:00'),(176300,10,'W33.19XS ','Accidental malfunction of other larger firearm, sequela','Y','0000-00-00 00:00:00'),(176301,10,'W34.00XA ','Accidental discharge from unspecified firearms or gun, initial encounter','Y','0000-00-00 00:00:00'),(176302,10,'W34.00XD ','Accidental discharge from unspecified firearms or gun, subsequent encounter','Y','0000-00-00 00:00:00'),(176303,10,'W34.00XS ','Accidental discharge from unspecified firearms or gun, sequela','Y','0000-00-00 00:00:00'),(176304,10,'W34.010A ','Accidental discharge of airgun, initial encounter','Y','0000-00-00 00:00:00'),(176305,10,'W34.010D ','Accidental discharge of airgun, subsequent encounter','Y','0000-00-00 00:00:00'),(176306,10,'W34.010S ','Accidental discharge of airgun, sequela','Y','0000-00-00 00:00:00'),(176307,10,'W34.011A ','Accidental discharge of paintball gun, initial encounter','Y','0000-00-00 00:00:00'),(176308,10,'W34.011D ','Accidental discharge of paintball gun, subsequent encounter','Y','0000-00-00 00:00:00'),(176309,10,'W34.011S ','Accidental discharge of paintball gun, sequela','Y','0000-00-00 00:00:00'),(176310,10,'W34.018A ','Accidental discharge of other gas, air or spring-operated gun, initial encounter','Y','0000-00-00 00:00:00'),(176311,10,'W34.018D ','Accidental discharge of other gas, air or spring-operated gun, subsequent encounter','Y','0000-00-00 00:00:00'),(176312,10,'W34.018S ','Accidental discharge of other gas, air or spring-operated gun, sequela','Y','0000-00-00 00:00:00'),(176313,10,'W34.09XA ','Accidental discharge from other specified firearms, initial encounter','Y','0000-00-00 00:00:00'),(176314,10,'W34.09XD ','Accidental discharge from other specified firearms, subsequent encounter','Y','0000-00-00 00:00:00'),(176315,10,'W34.09XS ','Accidental discharge from other specified firearms, sequela','Y','0000-00-00 00:00:00'),(176316,10,'W34.10XA ','Accidental malfunction from unspecified firearms or gun, initial encounter','Y','0000-00-00 00:00:00'),(176317,10,'W34.10XD ','Accidental malfunction from unspecified firearms or gun, subsequent encounter','Y','0000-00-00 00:00:00'),(176318,10,'W34.10XS ','Accidental malfunction from unspecified firearms or gun, sequela','Y','0000-00-00 00:00:00'),(176319,10,'W34.110A ','Accidental malfunction of airgun, initial encounter','Y','0000-00-00 00:00:00'),(176320,10,'W34.110D ','Accidental malfunction of airgun, subsequent encounter','Y','0000-00-00 00:00:00'),(176321,10,'W34.110S ','Accidental malfunction of airgun, sequela','Y','0000-00-00 00:00:00'),(176322,10,'W34.111A ','Accidental malfunction of paintball gun, initial encounter','Y','0000-00-00 00:00:00'),(176323,10,'W34.111D ','Accidental malfunction of paintball gun, subsequent encounter','Y','0000-00-00 00:00:00'),(176324,10,'W34.111S ','Accidental malfunction of paintball gun, sequela','Y','0000-00-00 00:00:00'),(176325,10,'W34.118A ','Accidental malfunction of other gas, air or spring-operated gun, initial encounter','Y','0000-00-00 00:00:00'),(176326,10,'W34.118D ','Accidental malfunction of other gas, air or spring-operated gun, subsequent encounter','Y','0000-00-00 00:00:00'),(176327,10,'W34.118S ','Accidental malfunction of other gas, air or spring-operated gun, sequela','Y','0000-00-00 00:00:00'),(176328,10,'W34.19XA ','Accidental malfunction from other specified firearms, initial encounter','Y','0000-00-00 00:00:00'),(176329,10,'W34.19XD ','Accidental malfunction from other specified firearms, subsequent encounter','Y','0000-00-00 00:00:00'),(176330,10,'W34.19XS ','Accidental malfunction from other specified firearms, sequela','Y','0000-00-00 00:00:00'),(176331,10,'W35.XXXA ','Explosion and rupture of boiler, initial encounter','Y','0000-00-00 00:00:00'),(176332,10,'W35.XXXD ','Explosion and rupture of boiler, subsequent encounter','Y','0000-00-00 00:00:00'),(176333,10,'W35.XXXS ','Explosion and rupture of boiler, sequela','Y','0000-00-00 00:00:00'),(176334,10,'W36.1XXA ','Explosion and rupture of aerosol can, initial encounter','Y','0000-00-00 00:00:00'),(176335,10,'W36.1XXD ','Explosion and rupture of aerosol can, subsequent encounter','Y','0000-00-00 00:00:00'),(176336,10,'W36.1XXS ','Explosion and rupture of aerosol can, sequela','Y','0000-00-00 00:00:00'),(176337,10,'W36.2XXA ','Explosion and rupture of air tank, initial encounter','Y','0000-00-00 00:00:00'),(176338,10,'W36.2XXD ','Explosion and rupture of air tank, subsequent encounter','Y','0000-00-00 00:00:00'),(176339,10,'W36.2XXS ','Explosion and rupture of air tank, sequela','Y','0000-00-00 00:00:00'),(176340,10,'W36.3XXA ','Explosion and rupture of pressurized-gas tank, initial encounter','Y','0000-00-00 00:00:00'),(176341,10,'W36.3XXD ','Explosion and rupture of pressurized-gas tank, subsequent encounter','Y','0000-00-00 00:00:00'),(176342,10,'W36.3XXS ','Explosion and rupture of pressurized-gas tank, sequela','Y','0000-00-00 00:00:00'),(176343,10,'W36.8XXA ','Explosion and rupture of other gas cylinder, initial encounter','Y','0000-00-00 00:00:00'),(176344,10,'W36.8XXD ','Explosion and rupture of other gas cylinder, subsequent encounter','Y','0000-00-00 00:00:00'),(176345,10,'W36.8XXS ','Explosion and rupture of other gas cylinder, sequela','Y','0000-00-00 00:00:00'),(176346,10,'W36.9XXA ','Explosion and rupture of unspecified gas cylinder, initial encounter','Y','0000-00-00 00:00:00'),(176347,10,'W36.9XXD ','Explosion and rupture of unspecified gas cylinder, subsequent encounter','Y','0000-00-00 00:00:00'),(176348,10,'W36.9XXS ','Explosion and rupture of unspecified gas cylinder, sequela','Y','0000-00-00 00:00:00'),(176349,10,'W37.0XXA ','Explosion of bicycle tire, initial encounter','Y','0000-00-00 00:00:00'),(176350,10,'W37.0XXD ','Explosion of bicycle tire, subsequent encounter','Y','0000-00-00 00:00:00'),(176351,10,'W37.0XXS ','Explosion of bicycle tire, sequela','Y','0000-00-00 00:00:00'),(176352,10,'W37.8XXA ','Explosion and rupture of other pressurized tire, pipe or hose, initial encounter','Y','0000-00-00 00:00:00'),(176353,10,'W37.8XXD ','Explosion and rupture of other pressurized tire, pipe or hose, subsequent encounter','Y','0000-00-00 00:00:00'),(176354,10,'W37.8XXS ','Explosion and rupture of other pressurized tire, pipe or hose, sequela','Y','0000-00-00 00:00:00'),(176355,10,'W38.XXXA ','Explosion and rupture of other specified pressurized devices, initial encounter','Y','0000-00-00 00:00:00'),(176356,10,'W38.XXXD ','Explosion and rupture of other specified pressurized devices, subsequent encounter','Y','0000-00-00 00:00:00'),(176357,10,'W38.XXXS ','Explosion and rupture of other specified pressurized devices, sequela','Y','0000-00-00 00:00:00'),(176358,10,'W39.XXXA ','Discharge of firework, initial encounter','Y','0000-00-00 00:00:00'),(176359,10,'W39.XXXD ','Discharge of firework, subsequent encounter','Y','0000-00-00 00:00:00'),(176360,10,'W39.XXXS ','Discharge of firework, sequela','Y','0000-00-00 00:00:00'),(176361,10,'W40.0XXA ','Explosion of blasting material, initial encounter','Y','0000-00-00 00:00:00'),(176362,10,'W40.0XXD ','Explosion of blasting material, subsequent encounter','Y','0000-00-00 00:00:00'),(176363,10,'W40.0XXS ','Explosion of blasting material, sequela','Y','0000-00-00 00:00:00'),(176364,10,'W40.1XXA ','Explosion of explosive gases, initial encounter','Y','0000-00-00 00:00:00'),(176365,10,'W40.1XXD ','Explosion of explosive gases, subsequent encounter','Y','0000-00-00 00:00:00'),(176366,10,'W40.1XXS ','Explosion of explosive gases, sequela','Y','0000-00-00 00:00:00'),(176367,10,'W40.8XXA ','Explosion of other specified explosive materials, initial encounter','Y','0000-00-00 00:00:00'),(176368,10,'W40.8XXD ','Explosion of other specified explosive materials, subsequent encounter','Y','0000-00-00 00:00:00'),(176369,10,'W40.8XXS ','Explosion of other specified explosive materials, sequela','Y','0000-00-00 00:00:00'),(176370,10,'W40.9XXA ','Explosion of unspecified explosive materials, initial encounter','Y','0000-00-00 00:00:00'),(176371,10,'W40.9XXD ','Explosion of unspecified explosive materials, subsequent encounter','Y','0000-00-00 00:00:00'),(176372,10,'W40.9XXS ','Explosion of unspecified explosive materials, sequela','Y','0000-00-00 00:00:00'),(176373,10,'W42.0XXA ','Exposure to supersonic waves, initial encounter','Y','0000-00-00 00:00:00'),(176374,10,'W42.0XXD ','Exposure to supersonic waves, subsequent encounter','Y','0000-00-00 00:00:00'),(176375,10,'W42.0XXS ','Exposure to supersonic waves, sequela','Y','0000-00-00 00:00:00'),(176376,10,'W42.9XXA ','Exposure to other noise, initial encounter','Y','0000-00-00 00:00:00'),(176377,10,'W42.9XXD ','Exposure to other noise, subsequent encounter','Y','0000-00-00 00:00:00'),(176378,10,'W42.9XXS ','Exposure to other noise, sequela','Y','0000-00-00 00:00:00'),(176379,10,'W44.A0XA ','Battery unspecified, entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176380,10,'W44.A0XD ','Battery unspecified, entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176381,10,'W44.A0XS ','Battery unspecified, entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176382,10,'W44.A1XA ','Button battery entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176383,10,'W44.A1XD ','Button battery entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176384,10,'W44.A1XS ','Button battery entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176385,10,'W44.A9XA ','Other batteries entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176386,10,'W44.A9XD ','Other batteries entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176387,10,'W44.A9XS ','Other batteries entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176388,10,'W44.B0XA ','Plastic object unspecified, entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176389,10,'W44.B0XD ','Plastic object unspecified, entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176390,10,'W44.B0XS ','Plastic object unspecified, entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176391,10,'W44.B1XA ','Plastic bead entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176392,10,'W44.B1XD ','Plastic bead entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176393,10,'W44.B1XS ','Plastic bead entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176394,10,'W44.B2XA ','Plastic coin entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176395,10,'W44.B2XD ','Plastic coin entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176396,10,'W44.B2XS ','Plastic coin entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176397,10,'W44.B3XA ','Plastic toy and toy part entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176398,10,'W44.B3XD ','Plastic toy and toy part entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176399,10,'W44.B3XS ','Plastic toy and toy part entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176400,10,'W44.B4XA ','Plastic jewelry entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176401,10,'W44.B4XD ','Plastic jewelry entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176402,10,'W44.B4XS ','Plastic jewelry entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176403,10,'W44.B5XA ','Plastic bottle entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176404,10,'W44.B5XD ','Plastic bottle entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176405,10,'W44.B5XS ','Plastic bottle entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176406,10,'W44.B9XA ','Other plastic object entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176407,10,'W44.B9XD ','Other plastic object entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176408,10,'W44.B9XS ','Other plastic object entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176409,10,'W44.C0XA ','Glass unspecified, entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176410,10,'W44.C0XD ','Glass unspecified, entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176411,10,'W44.C0XS ','Glass unspecified, entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176412,10,'W44.C1XA ','Sharp glass entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176413,10,'W44.C1XD ','Sharp glass entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176414,10,'W44.C1XS ','Sharp glass entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176415,10,'W44.C2XA ','Intact glass entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176416,10,'W44.C2XD ','Intact glass entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176417,10,'W44.C2XS ','Intact glass entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176418,10,'W44.D0XA ','Magnetic metal object unspecified, entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176419,10,'W44.D0XD ','Magnetic metal object unspecified, entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176420,10,'W44.D0XS ','Magnetic metal object unspecified, entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176421,10,'W44.D1XA ','Magnetic metal bead entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176422,10,'W44.D1XD ','Magnetic metal bead entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176423,10,'W44.D1XS ','Magnetic metal bead entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176424,10,'W44.D2XA ','Magnetic metal coin entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176425,10,'W44.D2XD ','Magnetic metal coin entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176426,10,'W44.D2XS ','Magnetic metal coin entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176427,10,'W44.D3XA ','Magnetic metal toy entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176428,10,'W44.D3XD ','Magnetic metal toy entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176429,10,'W44.D3XS ','Magnetic metal toy entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176430,10,'W44.D4XA ','Magnetic metal jewelry entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176431,10,'W44.D4XD ','Magnetic metal jewelry entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176432,10,'W44.D4XS ','Magnetic metal jewelry entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176433,10,'W44.D9XA ','Other magnetic metal objects entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176434,10,'W44.D9XD ','Other magnetic metal objects entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176435,10,'W44.D9XS ','Other magnetic metal objects entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176436,10,'W44.E0XA ','Non-magnetic metal object unspecified, entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176437,10,'W44.E0XD ','Non-magnetic metal object unspecified, entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176438,10,'W44.E0XS ','Non-magnetic metal object unspecified, entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176439,10,'W44.E1XA ','Non-magnetic metal bead entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176440,10,'W44.E1XD ','Non-magnetic metal bead entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176441,10,'W44.E1XS ','Non-magnetic metal bead entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176442,10,'W44.E2XA ','Non-magnetic metal coin entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176443,10,'W44.E2XD ','Non-magnetic metal coin entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176444,10,'W44.E2XS ','Non-magnetic metal coin entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176445,10,'W44.E3XA ','Non-magnetic metal toy entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176446,10,'W44.E3XD ','Non-magnetic metal toy entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176447,10,'W44.E3XS ','Non-magnetic metal toy entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176448,10,'W44.E4XA ','Non-magnetic metal jewelry entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176449,10,'W44.E4XD ','Non-magnetic metal jewelry entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176450,10,'W44.E4XS ','Non-magnetic metal jewelry entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176451,10,'W44.E9XA ','Other non-magnetic metal objects entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176452,10,'W44.E9XD ','Other non-magnetic metal objects entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176453,10,'W44.E9XS ','Other non-magnetic metal objects entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176454,10,'W44.F0XA ','Objects of natural or organic material unspecified, entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176455,10,'W44.F0XD ','Objects of natural or organic material unspecified, entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176456,10,'W44.F0XS ','Objects of natural or organic material unspecified, entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176457,10,'W44.F1XA ','Bezoar entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176458,10,'W44.F1XD ','Bezoar entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176459,10,'W44.F1XS ','Bezoar entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176460,10,'W44.F2XA ','Rubber band entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176461,10,'W44.F2XD ','Rubber band entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176462,10,'W44.F2XS ','Rubber band entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176463,10,'W44.F3XA ','Food entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176464,10,'W44.F3XD ','Food entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176465,10,'W44.F3XS ','Food entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176466,10,'W44.F4XA ','Insect entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176467,10,'W44.F4XD ','Insect entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176468,10,'W44.F4XS ','Insect entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176469,10,'W44.F9XA ','Other object of natural or organic material, entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176470,10,'W44.F9XD ','Other object of natural or organic material, entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176471,10,'W44.F9XS ','Other object of natural or organic material, entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176472,10,'W44.G0XA ','Other non-organic objects unspecified, entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176473,10,'W44.G0XD ','Other non-organic objects unspecified, entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176474,10,'W44.G0XS ','Other non-organic objects unspecified, entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176475,10,'W44.G1XA ','Audio device entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176476,10,'W44.G1XD ','Audio device entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176477,10,'W44.G1XS ','Audio device entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176478,10,'W44.G2XA ','Combination metal and plastic toy and toy part entering into or through natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176479,10,'W44.G2XD ','Combination metal and plastic toy and toy part entering into or through natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176480,10,'W44.G2XS ','Combination metal and plastic toy and toy part entering into or through natural orifice, sequela','Y','0000-00-00 00:00:00'),(176481,10,'W44.G3XA ','Combination metal and plastic jewelry entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176482,10,'W44.G3XD ','Combination metal and plastic jewelry entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176483,10,'W44.G3XS ','Combination metal and plastic jewelry entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176484,10,'W44.G9XA ','Other non-organic objects entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176485,10,'W44.G9XD ','Other non-organic objects entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176486,10,'W44.G9XS ','Other non-organic objects entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176487,10,'W44.H0XA ','Other sharp object unspecified, entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176488,10,'W44.H0XD ','Other sharp object unspecified, entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176489,10,'W44.H0XS ','Other sharp object unspecified, entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176490,10,'W44.H1XA ','Needle entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176491,10,'W44.H1XD ','Needle entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176492,10,'W44.H1XS ','Needle entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176493,10,'W44.H2XA ','Knife, sword or dagger entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176494,10,'W44.H2XD ','Knife, sword or dagger entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176495,10,'W44.H2XS ','Knife, sword or dagger entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176496,10,'W44.8XXA ','Other foreign body entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176497,10,'W44.8XXD ','Other foreign body entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176498,10,'W44.8XXS ','Other foreign body entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176499,10,'W44.9XXA ','Unspecified foreign body entering into or through a natural orifice, initial encounter','Y','0000-00-00 00:00:00'),(176500,10,'W44.9XXD ','Unspecified foreign body entering into or through a natural orifice, subsequent encounter','Y','0000-00-00 00:00:00'),(176501,10,'W44.9XXS ','Unspecified foreign body entering into or through a natural orifice, sequela','Y','0000-00-00 00:00:00'),(176502,10,'W45.0XXA ','Nail entering through skin, initial encounter','Y','0000-00-00 00:00:00'),(176503,10,'W45.0XXD ','Nail entering through skin, subsequent encounter','Y','0000-00-00 00:00:00'),(176504,10,'W45.0XXS ','Nail entering through skin, sequela','Y','0000-00-00 00:00:00'),(176505,10,'W45.8XXA ','Other foreign body or object entering through skin, initial encounter','Y','0000-00-00 00:00:00'),(176506,10,'W45.8XXD ','Other foreign body or object entering through skin, subsequent encounter','Y','0000-00-00 00:00:00'),(176507,10,'W45.8XXS ','Other foreign body or object entering through skin, sequela','Y','0000-00-00 00:00:00'),(176508,10,'W46.0XXA ','Contact with hypodermic needle, initial encounter','Y','0000-00-00 00:00:00'),(176509,10,'W46.0XXD ','Contact with hypodermic needle, subsequent encounter','Y','0000-00-00 00:00:00'),(176510,10,'W46.0XXS ','Contact with hypodermic needle, sequela','Y','0000-00-00 00:00:00'),(176511,10,'W46.1XXA ','Contact with contaminated hypodermic needle, initial encounter','Y','0000-00-00 00:00:00'),(176512,10,'W46.1XXD ','Contact with contaminated hypodermic needle, subsequent encounter','Y','0000-00-00 00:00:00'),(176513,10,'W46.1XXS ','Contact with contaminated hypodermic needle, sequela','Y','0000-00-00 00:00:00'),(176514,10,'W49.01XA ','Hair causing external constriction, initial encounter','Y','0000-00-00 00:00:00'),(176515,10,'W49.01XD ','Hair causing external constriction, subsequent encounter','Y','0000-00-00 00:00:00'),(176516,10,'W49.01XS ','Hair causing external constriction, sequela','Y','0000-00-00 00:00:00'),(176517,10,'W49.02XA ','String or thread causing external constriction, initial encounter','Y','0000-00-00 00:00:00'),(176518,10,'W49.02XD ','String or thread causing external constriction, subsequent encounter','Y','0000-00-00 00:00:00'),(176519,10,'W49.02XS ','String or thread causing external constriction, sequela','Y','0000-00-00 00:00:00'),(176520,10,'W49.03XA ','Rubber band causing external constriction, initial encounter','Y','0000-00-00 00:00:00'),(176521,10,'W49.03XD ','Rubber band causing external constriction, subsequent encounter','Y','0000-00-00 00:00:00'),(176522,10,'W49.03XS ','Rubber band causing external constriction, sequela','Y','0000-00-00 00:00:00'),(176523,10,'W49.04XA ','Ring or other jewelry causing external constriction, initial encounter','Y','0000-00-00 00:00:00'),(176524,10,'W49.04XD ','Ring or other jewelry causing external constriction, subsequent encounter','Y','0000-00-00 00:00:00'),(176525,10,'W49.04XS ','Ring or other jewelry causing external constriction, sequela','Y','0000-00-00 00:00:00'),(176526,10,'W49.09XA ','Other specified item causing external constriction, initial encounter','Y','0000-00-00 00:00:00'),(176527,10,'W49.09XD ','Other specified item causing external constriction, subsequent encounter','Y','0000-00-00 00:00:00'),(176528,10,'W49.09XS ','Other specified item causing external constriction, sequela','Y','0000-00-00 00:00:00'),(176529,10,'W49.9XXA ','Exposure to other inanimate mechanical forces, initial encounter','Y','0000-00-00 00:00:00'),(176530,10,'W49.9XXD ','Exposure to other inanimate mechanical forces, subsequent encounter','Y','0000-00-00 00:00:00'),(176531,10,'W49.9XXS ','Exposure to other inanimate mechanical forces, sequela','Y','0000-00-00 00:00:00'),(176532,10,'W50.0XXA ','Accidental hit or strike by another person, initial encounter','Y','0000-00-00 00:00:00'),(176533,10,'W50.0XXD ','Accidental hit or strike by another person, subsequent encounter','Y','0000-00-00 00:00:00'),(176534,10,'W50.0XXS ','Accidental hit or strike by another person, sequela','Y','0000-00-00 00:00:00'),(176535,10,'W50.1XXA ','Accidental kick by another person, initial encounter','Y','0000-00-00 00:00:00'),(176536,10,'W50.1XXD ','Accidental kick by another person, subsequent encounter','Y','0000-00-00 00:00:00'),(176537,10,'W50.1XXS ','Accidental kick by another person, sequela','Y','0000-00-00 00:00:00'),(176538,10,'W50.2XXA ','Accidental twist by another person, initial encounter','Y','0000-00-00 00:00:00'),(176539,10,'W50.2XXD ','Accidental twist by another person, subsequent encounter','Y','0000-00-00 00:00:00'),(176540,10,'W50.2XXS ','Accidental twist by another person, sequela','Y','0000-00-00 00:00:00'),(176541,10,'W50.3XXA ','Accidental bite by another person, initial encounter','Y','0000-00-00 00:00:00'),(176542,10,'W50.3XXD ','Accidental bite by another person, subsequent encounter','Y','0000-00-00 00:00:00'),(176543,10,'W50.3XXS ','Accidental bite by another person, sequela','Y','0000-00-00 00:00:00'),(176544,10,'W50.4XXA ','Accidental scratch by another person, initial encounter','Y','0000-00-00 00:00:00'),(176545,10,'W50.4XXD ','Accidental scratch by another person, subsequent encounter','Y','0000-00-00 00:00:00'),(176546,10,'W50.4XXS ','Accidental scratch by another person, sequela','Y','0000-00-00 00:00:00'),(176547,10,'W51.XXXA ','Accidental striking against or bumped into by another person, initial encounter','Y','0000-00-00 00:00:00'),(176548,10,'W51.XXXD ','Accidental striking against or bumped into by another person, subsequent encounter','Y','0000-00-00 00:00:00'),(176549,10,'W51.XXXS ','Accidental striking against or bumped into by another person, sequela','Y','0000-00-00 00:00:00'),(176550,10,'W52.XXXA ','Crushed, pushed or stepped on by crowd or human stampede, initial encounter','Y','0000-00-00 00:00:00'),(176551,10,'W52.XXXD ','Crushed, pushed or stepped on by crowd or human stampede, subsequent encounter','Y','0000-00-00 00:00:00'),(176552,10,'W52.XXXS ','Crushed, pushed or stepped on by crowd or human stampede, sequela','Y','0000-00-00 00:00:00'),(176553,10,'W53.01XA ','Bitten by mouse, initial encounter','Y','0000-00-00 00:00:00'),(176554,10,'W53.01XD ','Bitten by mouse, subsequent encounter','Y','0000-00-00 00:00:00'),(176555,10,'W53.01XS ','Bitten by mouse, sequela','Y','0000-00-00 00:00:00'),(176556,10,'W53.09XA ','Other contact with mouse, initial encounter','Y','0000-00-00 00:00:00'),(176557,10,'W53.09XD ','Other contact with mouse, subsequent encounter','Y','0000-00-00 00:00:00'),(176558,10,'W53.09XS ','Other contact with mouse, sequela','Y','0000-00-00 00:00:00'),(176559,10,'W53.11XA ','Bitten by rat, initial encounter','Y','0000-00-00 00:00:00'),(176560,10,'W53.11XD ','Bitten by rat, subsequent encounter','Y','0000-00-00 00:00:00'),(176561,10,'W53.11XS ','Bitten by rat, sequela','Y','0000-00-00 00:00:00'),(176562,10,'W53.19XA ','Other contact with rat, initial encounter','Y','0000-00-00 00:00:00'),(176563,10,'W53.19XD ','Other contact with rat, subsequent encounter','Y','0000-00-00 00:00:00'),(176564,10,'W53.19XS ','Other contact with rat, sequela','Y','0000-00-00 00:00:00'),(176565,10,'W53.21XA ','Bitten by squirrel, initial encounter','Y','0000-00-00 00:00:00'),(176566,10,'W53.21XD ','Bitten by squirrel, subsequent encounter','Y','0000-00-00 00:00:00'),(176567,10,'W53.21XS ','Bitten by squirrel, sequela','Y','0000-00-00 00:00:00'),(176568,10,'W53.29XA ','Other contact with squirrel, initial encounter','Y','0000-00-00 00:00:00'),(176569,10,'W53.29XD ','Other contact with squirrel, subsequent encounter','Y','0000-00-00 00:00:00'),(176570,10,'W53.29XS ','Other contact with squirrel, sequela','Y','0000-00-00 00:00:00'),(176571,10,'W53.81XA ','Bitten by other rodent, initial encounter','Y','0000-00-00 00:00:00'),(176572,10,'W53.81XD ','Bitten by other rodent, subsequent encounter','Y','0000-00-00 00:00:00'),(176573,10,'W53.81XS ','Bitten by other rodent, sequela','Y','0000-00-00 00:00:00'),(176574,10,'W53.89XA ','Other contact with other rodent, initial encounter','Y','0000-00-00 00:00:00'),(176575,10,'W53.89XD ','Other contact with other rodent, subsequent encounter','Y','0000-00-00 00:00:00'),(176576,10,'W53.89XS ','Other contact with other rodent, sequela','Y','0000-00-00 00:00:00'),(176577,10,'W54.0XXA ','Bitten by dog, initial encounter','Y','0000-00-00 00:00:00'),(176578,10,'W54.0XXD ','Bitten by dog, subsequent encounter','Y','0000-00-00 00:00:00'),(176579,10,'W54.0XXS ','Bitten by dog, sequela','Y','0000-00-00 00:00:00'),(176580,10,'W54.1XXA ','Struck by dog, initial encounter','Y','0000-00-00 00:00:00'),(176581,10,'W54.1XXD ','Struck by dog, subsequent encounter','Y','0000-00-00 00:00:00'),(176582,10,'W54.1XXS ','Struck by dog, sequela','Y','0000-00-00 00:00:00'),(176583,10,'W54.8XXA ','Other contact with dog, initial encounter','Y','0000-00-00 00:00:00'),(176584,10,'W54.8XXD ','Other contact with dog, subsequent encounter','Y','0000-00-00 00:00:00'),(176585,10,'W54.8XXS ','Other contact with dog, sequela','Y','0000-00-00 00:00:00'),(176586,10,'W55.01XA ','Bitten by cat, initial encounter','Y','0000-00-00 00:00:00'),(176587,10,'W55.01XD ','Bitten by cat, subsequent encounter','Y','0000-00-00 00:00:00'),(176588,10,'W55.01XS ','Bitten by cat, sequela','Y','0000-00-00 00:00:00'),(176589,10,'W55.03XA ','Scratched by cat, initial encounter','Y','0000-00-00 00:00:00'),(176590,10,'W55.03XD ','Scratched by cat, subsequent encounter','Y','0000-00-00 00:00:00'),(176591,10,'W55.03XS ','Scratched by cat, sequela','Y','0000-00-00 00:00:00'),(176592,10,'W55.09XA ','Other contact with cat, initial encounter','Y','0000-00-00 00:00:00'),(176593,10,'W55.09XD ','Other contact with cat, subsequent encounter','Y','0000-00-00 00:00:00'),(176594,10,'W55.09XS ','Other contact with cat, sequela','Y','0000-00-00 00:00:00'),(176595,10,'W55.11XA ','Bitten by horse, initial encounter','Y','0000-00-00 00:00:00'),(176596,10,'W55.11XD ','Bitten by horse, subsequent encounter','Y','0000-00-00 00:00:00'),(176597,10,'W55.11XS ','Bitten by horse, sequela','Y','0000-00-00 00:00:00'),(176598,10,'W55.12XA ','Struck by horse, initial encounter','Y','0000-00-00 00:00:00'),(176599,10,'W55.12XD ','Struck by horse, subsequent encounter','Y','0000-00-00 00:00:00'),(176600,10,'W55.12XS ','Struck by horse, sequela','Y','0000-00-00 00:00:00'),(176601,10,'W55.19XA ','Other contact with horse, initial encounter','Y','0000-00-00 00:00:00'),(176602,10,'W55.19XD ','Other contact with horse, subsequent encounter','Y','0000-00-00 00:00:00'),(176603,10,'W55.19XS ','Other contact with horse, sequela','Y','0000-00-00 00:00:00'),(176604,10,'W55.21XA ','Bitten by cow, initial encounter','Y','0000-00-00 00:00:00'),(176605,10,'W55.21XD ','Bitten by cow, subsequent encounter','Y','0000-00-00 00:00:00'),(176606,10,'W55.21XS ','Bitten by cow, sequela','Y','0000-00-00 00:00:00'),(176607,10,'W55.22XA ','Struck by cow, initial encounter','Y','0000-00-00 00:00:00'),(176608,10,'W55.22XD ','Struck by cow, subsequent encounter','Y','0000-00-00 00:00:00'),(176609,10,'W55.22XS ','Struck by cow, sequela','Y','0000-00-00 00:00:00'),(176610,10,'W55.29XA ','Other contact with cow, initial encounter','Y','0000-00-00 00:00:00'),(176611,10,'W55.29XD ','Other contact with cow, subsequent encounter','Y','0000-00-00 00:00:00'),(176612,10,'W55.29XS ','Other contact with cow, sequela','Y','0000-00-00 00:00:00'),(176613,10,'W55.31XA ','Bitten by other hoof stock, initial encounter','Y','0000-00-00 00:00:00'),(176614,10,'W55.31XD ','Bitten by other hoof stock, subsequent encounter','Y','0000-00-00 00:00:00'),(176615,10,'W55.31XS ','Bitten by other hoof stock, sequela','Y','0000-00-00 00:00:00'),(176616,10,'W55.32XA ','Struck by other hoof stock, initial encounter','Y','0000-00-00 00:00:00'),(176617,10,'W55.32XD ','Struck by other hoof stock, subsequent encounter','Y','0000-00-00 00:00:00'),(176618,10,'W55.32XS ','Struck by other hoof stock, sequela','Y','0000-00-00 00:00:00'),(176619,10,'W55.39XA ','Other contact with other hoof stock, initial encounter','Y','0000-00-00 00:00:00'),(176620,10,'W55.39XD ','Other contact with other hoof stock, subsequent encounter','Y','0000-00-00 00:00:00'),(176621,10,'W55.39XS ','Other contact with other hoof stock, sequela','Y','0000-00-00 00:00:00'),(176622,10,'W55.41XA ','Bitten by pig, initial encounter','Y','0000-00-00 00:00:00'),(176623,10,'W55.41XD ','Bitten by pig, subsequent encounter','Y','0000-00-00 00:00:00'),(176624,10,'W55.41XS ','Bitten by pig, sequela','Y','0000-00-00 00:00:00'),(176625,10,'W55.42XA ','Struck by pig, initial encounter','Y','0000-00-00 00:00:00'),(176626,10,'W55.42XD ','Struck by pig, subsequent encounter','Y','0000-00-00 00:00:00'),(176627,10,'W55.42XS ','Struck by pig, sequela','Y','0000-00-00 00:00:00'),(176628,10,'W55.49XA ','Other contact with pig, initial encounter','Y','0000-00-00 00:00:00'),(176629,10,'W55.49XD ','Other contact with pig, subsequent encounter','Y','0000-00-00 00:00:00'),(176630,10,'W55.49XS ','Other contact with pig, sequela','Y','0000-00-00 00:00:00'),(176631,10,'W55.51XA ','Bitten by raccoon, initial encounter','Y','0000-00-00 00:00:00'),(176632,10,'W55.51XD ','Bitten by raccoon, subsequent encounter','Y','0000-00-00 00:00:00'),(176633,10,'W55.51XS ','Bitten by raccoon, sequela','Y','0000-00-00 00:00:00'),(176634,10,'W55.52XA ','Struck by raccoon, initial encounter','Y','0000-00-00 00:00:00'),(176635,10,'W55.52XD ','Struck by raccoon, subsequent encounter','Y','0000-00-00 00:00:00'),(176636,10,'W55.52XS ','Struck by raccoon, sequela','Y','0000-00-00 00:00:00'),(176637,10,'W55.59XA ','Other contact with raccoon, initial encounter','Y','0000-00-00 00:00:00'),(176638,10,'W55.59XD ','Other contact with raccoon, subsequent encounter','Y','0000-00-00 00:00:00'),(176639,10,'W55.59XS ','Other contact with raccoon, sequela','Y','0000-00-00 00:00:00'),(176640,10,'W55.81XA ','Bitten by other mammals, initial encounter','Y','0000-00-00 00:00:00'),(176641,10,'W55.81XD ','Bitten by other mammals, subsequent encounter','Y','0000-00-00 00:00:00'),(176642,10,'W55.81XS ','Bitten by other mammals, sequela','Y','0000-00-00 00:00:00'),(176643,10,'W55.82XA ','Struck by other mammals, initial encounter','Y','0000-00-00 00:00:00'),(176644,10,'W55.82XD ','Struck by other mammals, subsequent encounter','Y','0000-00-00 00:00:00'),(176645,10,'W55.82XS ','Struck by other mammals, sequela','Y','0000-00-00 00:00:00'),(176646,10,'W55.89XA ','Other contact with other mammals, initial encounter','Y','0000-00-00 00:00:00'),(176647,10,'W55.89XD ','Other contact with other mammals, subsequent encounter','Y','0000-00-00 00:00:00'),(176648,10,'W55.89XS ','Other contact with other mammals, sequela','Y','0000-00-00 00:00:00'),(176649,10,'W56.01XA ','Bitten by dolphin, initial encounter','Y','0000-00-00 00:00:00'),(176650,10,'W56.01XD ','Bitten by dolphin, subsequent encounter','Y','0000-00-00 00:00:00'),(176651,10,'W56.01XS ','Bitten by dolphin, sequela','Y','0000-00-00 00:00:00'),(176652,10,'W56.02XA ','Struck by dolphin, initial encounter','Y','0000-00-00 00:00:00'),(176653,10,'W56.02XD ','Struck by dolphin, subsequent encounter','Y','0000-00-00 00:00:00'),(176654,10,'W56.02XS ','Struck by dolphin, sequela','Y','0000-00-00 00:00:00'),(176655,10,'W56.09XA ','Other contact with dolphin, initial encounter','Y','0000-00-00 00:00:00'),(176656,10,'W56.09XD ','Other contact with dolphin, subsequent encounter','Y','0000-00-00 00:00:00'),(176657,10,'W56.09XS ','Other contact with dolphin, sequela','Y','0000-00-00 00:00:00'),(176658,10,'W56.11XA ','Bitten by sea lion, initial encounter','Y','0000-00-00 00:00:00'),(176659,10,'W56.11XD ','Bitten by sea lion, subsequent encounter','Y','0000-00-00 00:00:00'),(176660,10,'W56.11XS ','Bitten by sea lion, sequela','Y','0000-00-00 00:00:00'),(176661,10,'W56.12XA ','Struck by sea lion, initial encounter','Y','0000-00-00 00:00:00'),(176662,10,'W56.12XD ','Struck by sea lion, subsequent encounter','Y','0000-00-00 00:00:00'),(176663,10,'W56.12XS ','Struck by sea lion, sequela','Y','0000-00-00 00:00:00'),(176664,10,'W56.19XA ','Other contact with sea lion, initial encounter','Y','0000-00-00 00:00:00'),(176665,10,'W56.19XD ','Other contact with sea lion, subsequent encounter','Y','0000-00-00 00:00:00'),(176666,10,'W56.19XS ','Other contact with sea lion, sequela','Y','0000-00-00 00:00:00'),(176667,10,'W56.21XA ','Bitten by orca, initial encounter','Y','0000-00-00 00:00:00'),(176668,10,'W56.21XD ','Bitten by orca, subsequent encounter','Y','0000-00-00 00:00:00'),(176669,10,'W56.21XS ','Bitten by orca, sequela','Y','0000-00-00 00:00:00'),(176670,10,'W56.22XA ','Struck by orca, initial encounter','Y','0000-00-00 00:00:00'),(176671,10,'W56.22XD ','Struck by orca, subsequent encounter','Y','0000-00-00 00:00:00'),(176672,10,'W56.22XS ','Struck by orca, sequela','Y','0000-00-00 00:00:00'),(176673,10,'W56.29XA ','Other contact with orca, initial encounter','Y','0000-00-00 00:00:00'),(176674,10,'W56.29XD ','Other contact with orca, subsequent encounter','Y','0000-00-00 00:00:00'),(176675,10,'W56.29XS ','Other contact with orca, sequela','Y','0000-00-00 00:00:00'),(176676,10,'W56.31XA ','Bitten by other marine mammals, initial encounter','Y','0000-00-00 00:00:00'),(176677,10,'W56.31XD ','Bitten by other marine mammals, subsequent encounter','Y','0000-00-00 00:00:00'),(176678,10,'W56.31XS ','Bitten by other marine mammals, sequela','Y','0000-00-00 00:00:00'),(176679,10,'W56.32XA ','Struck by other marine mammals, initial encounter','Y','0000-00-00 00:00:00'),(176680,10,'W56.32XD ','Struck by other marine mammals, subsequent encounter','Y','0000-00-00 00:00:00'),(176681,10,'W56.32XS ','Struck by other marine mammals, sequela','Y','0000-00-00 00:00:00'),(176682,10,'W56.39XA ','Other contact with other marine mammals, initial encounter','Y','0000-00-00 00:00:00'),(176683,10,'W56.39XD ','Other contact with other marine mammals, subsequent encounter','Y','0000-00-00 00:00:00'),(176684,10,'W56.39XS ','Other contact with other marine mammals, sequela','Y','0000-00-00 00:00:00'),(176685,10,'W56.41XA ','Bitten by shark, initial encounter','Y','0000-00-00 00:00:00'),(176686,10,'W56.41XD ','Bitten by shark, subsequent encounter','Y','0000-00-00 00:00:00'),(176687,10,'W56.41XS ','Bitten by shark, sequela','Y','0000-00-00 00:00:00'),(176688,10,'W56.42XA ','Struck by shark, initial encounter','Y','0000-00-00 00:00:00'),(176689,10,'W56.42XD ','Struck by shark, subsequent encounter','Y','0000-00-00 00:00:00'),(176690,10,'W56.42XS ','Struck by shark, sequela','Y','0000-00-00 00:00:00'),(176691,10,'W56.49XA ','Other contact with shark, initial encounter','Y','0000-00-00 00:00:00'),(176692,10,'W56.49XD ','Other contact with shark, subsequent encounter','Y','0000-00-00 00:00:00'),(176693,10,'W56.49XS ','Other contact with shark, sequela','Y','0000-00-00 00:00:00'),(176694,10,'W56.51XA ','Bitten by other fish, initial encounter','Y','0000-00-00 00:00:00'),(176695,10,'W56.51XD ','Bitten by other fish, subsequent encounter','Y','0000-00-00 00:00:00'),(176696,10,'W56.51XS ','Bitten by other fish, sequela','Y','0000-00-00 00:00:00'),(176697,10,'W56.52XA ','Struck by other fish, initial encounter','Y','0000-00-00 00:00:00'),(176698,10,'W56.52XD ','Struck by other fish, subsequent encounter','Y','0000-00-00 00:00:00'),(176699,10,'W56.52XS ','Struck by other fish, sequela','Y','0000-00-00 00:00:00'),(176700,10,'W56.59XA ','Other contact with other fish, initial encounter','Y','0000-00-00 00:00:00'),(176701,10,'W56.59XD ','Other contact with other fish, subsequent encounter','Y','0000-00-00 00:00:00'),(176702,10,'W56.59XS ','Other contact with other fish, sequela','Y','0000-00-00 00:00:00'),(176703,10,'W56.81XA ','Bitten by other nonvenomous marine animals, initial encounter','Y','0000-00-00 00:00:00'),(176704,10,'W56.81XD ','Bitten by other nonvenomous marine animals, subsequent encounter','Y','0000-00-00 00:00:00'),(176705,10,'W56.81XS ','Bitten by other nonvenomous marine animals, sequela','Y','0000-00-00 00:00:00'),(176706,10,'W56.82XA ','Struck by other nonvenomous marine animals, initial encounter','Y','0000-00-00 00:00:00'),(176707,10,'W56.82XD ','Struck by other nonvenomous marine animals, subsequent encounter','Y','0000-00-00 00:00:00'),(176708,10,'W56.82XS ','Struck by other nonvenomous marine animals, sequela','Y','0000-00-00 00:00:00'),(176709,10,'W56.89XA ','Other contact with other nonvenomous marine animals, initial encounter','Y','0000-00-00 00:00:00'),(176710,10,'W56.89XD ','Other contact with other nonvenomous marine animals, subsequent encounter','Y','0000-00-00 00:00:00'),(176711,10,'W56.89XS ','Other contact with other nonvenomous marine animals, sequela','Y','0000-00-00 00:00:00'),(176712,10,'W57.XXXA ','Bitten or stung by nonvenomous insect and other nonvenomous arthropods, initial encounter','Y','0000-00-00 00:00:00'),(176713,10,'W57.XXXD ','Bitten or stung by nonvenomous insect and other nonvenomous arthropods, subsequent encounter','Y','0000-00-00 00:00:00'),(176714,10,'W57.XXXS ','Bitten or stung by nonvenomous insect and other nonvenomous arthropods, sequela','Y','0000-00-00 00:00:00'),(176715,10,'W58.01XA ','Bitten by alligator, initial encounter','Y','0000-00-00 00:00:00'),(176716,10,'W58.01XD ','Bitten by alligator, subsequent encounter','Y','0000-00-00 00:00:00'),(176717,10,'W58.01XS ','Bitten by alligator, sequela','Y','0000-00-00 00:00:00'),(176718,10,'W58.02XA ','Struck by alligator, initial encounter','Y','0000-00-00 00:00:00'),(176719,10,'W58.02XD ','Struck by alligator, subsequent encounter','Y','0000-00-00 00:00:00'),(176720,10,'W58.02XS ','Struck by alligator, sequela','Y','0000-00-00 00:00:00'),(176721,10,'W58.03XA ','Crushed by alligator, initial encounter','Y','0000-00-00 00:00:00'),(176722,10,'W58.03XD ','Crushed by alligator, subsequent encounter','Y','0000-00-00 00:00:00'),(176723,10,'W58.03XS ','Crushed by alligator, sequela','Y','0000-00-00 00:00:00'),(176724,10,'W58.09XA ','Other contact with alligator, initial encounter','Y','0000-00-00 00:00:00'),(176725,10,'W58.09XD ','Other contact with alligator, subsequent encounter','Y','0000-00-00 00:00:00'),(176726,10,'W58.09XS ','Other contact with alligator, sequela','Y','0000-00-00 00:00:00'),(176727,10,'W58.11XA ','Bitten by crocodile, initial encounter','Y','0000-00-00 00:00:00'),(176728,10,'W58.11XD ','Bitten by crocodile, subsequent encounter','Y','0000-00-00 00:00:00'),(176729,10,'W58.11XS ','Bitten by crocodile, sequela','Y','0000-00-00 00:00:00'),(176730,10,'W58.12XA ','Struck by crocodile, initial encounter','Y','0000-00-00 00:00:00'),(176731,10,'W58.12XD ','Struck by crocodile, subsequent encounter','Y','0000-00-00 00:00:00'),(176732,10,'W58.12XS ','Struck by crocodile, sequela','Y','0000-00-00 00:00:00'),(176733,10,'W58.13XA ','Crushed by crocodile, initial encounter','Y','0000-00-00 00:00:00'),(176734,10,'W58.13XD ','Crushed by crocodile, subsequent encounter','Y','0000-00-00 00:00:00'),(176735,10,'W58.13XS ','Crushed by crocodile, sequela','Y','0000-00-00 00:00:00'),(176736,10,'W58.19XA ','Other contact with crocodile, initial encounter','Y','0000-00-00 00:00:00'),(176737,10,'W58.19XD ','Other contact with crocodile, subsequent encounter','Y','0000-00-00 00:00:00'),(176738,10,'W58.19XS ','Other contact with crocodile, sequela','Y','0000-00-00 00:00:00'),(176739,10,'W59.01XA ','Bitten by nonvenomous lizards, initial encounter','Y','0000-00-00 00:00:00'),(176740,10,'W59.01XD ','Bitten by nonvenomous lizards, subsequent encounter','Y','0000-00-00 00:00:00'),(176741,10,'W59.01XS ','Bitten by nonvenomous lizards, sequela','Y','0000-00-00 00:00:00'),(176742,10,'W59.02XA ','Struck by nonvenomous lizards, initial encounter','Y','0000-00-00 00:00:00'),(176743,10,'W59.02XD ','Struck by nonvenomous lizards, subsequent encounter','Y','0000-00-00 00:00:00'),(176744,10,'W59.02XS ','Struck by nonvenomous lizards, sequela','Y','0000-00-00 00:00:00'),(176745,10,'W59.09XA ','Other contact with nonvenomous lizards, initial encounter','Y','0000-00-00 00:00:00'),(176746,10,'W59.09XD ','Other contact with nonvenomous lizards, subsequent encounter','Y','0000-00-00 00:00:00'),(176747,10,'W59.09XS ','Other contact with nonvenomous lizards, sequela','Y','0000-00-00 00:00:00'),(176748,10,'W59.11XA ','Bitten by nonvenomous snake, initial encounter','Y','0000-00-00 00:00:00'),(176749,10,'W59.11XD ','Bitten by nonvenomous snake, subsequent encounter','Y','0000-00-00 00:00:00'),(176750,10,'W59.11XS ','Bitten by nonvenomous snake, sequela','Y','0000-00-00 00:00:00'),(176751,10,'W59.12XA ','Struck by nonvenomous snake, initial encounter','Y','0000-00-00 00:00:00'),(176752,10,'W59.12XD ','Struck by nonvenomous snake, subsequent encounter','Y','0000-00-00 00:00:00'),(176753,10,'W59.12XS ','Struck by nonvenomous snake, sequela','Y','0000-00-00 00:00:00'),(176754,10,'W59.13XA ','Crushed by nonvenomous snake, initial encounter','Y','0000-00-00 00:00:00'),(176755,10,'W59.13XD ','Crushed by nonvenomous snake, subsequent encounter','Y','0000-00-00 00:00:00'),(176756,10,'W59.13XS ','Crushed by nonvenomous snake, sequela','Y','0000-00-00 00:00:00'),(176757,10,'W59.19XA ','Other contact with nonvenomous snake, initial encounter','Y','0000-00-00 00:00:00'),(176758,10,'W59.19XD ','Other contact with nonvenomous snake, subsequent encounter','Y','0000-00-00 00:00:00'),(176759,10,'W59.19XS ','Other contact with nonvenomous snake, sequela','Y','0000-00-00 00:00:00'),(176760,10,'W59.21XA ','Bitten by turtle, initial encounter','Y','0000-00-00 00:00:00'),(176761,10,'W59.21XD ','Bitten by turtle, subsequent encounter','Y','0000-00-00 00:00:00'),(176762,10,'W59.21XS ','Bitten by turtle, sequela','Y','0000-00-00 00:00:00'),(176763,10,'W59.22XA ','Struck by turtle, initial encounter','Y','0000-00-00 00:00:00'),(176764,10,'W59.22XD ','Struck by turtle, subsequent encounter','Y','0000-00-00 00:00:00'),(176765,10,'W59.22XS ','Struck by turtle, sequela','Y','0000-00-00 00:00:00'),(176766,10,'W59.29XA ','Other contact with turtle, initial encounter','Y','0000-00-00 00:00:00'),(176767,10,'W59.29XD ','Other contact with turtle, subsequent encounter','Y','0000-00-00 00:00:00'),(176768,10,'W59.29XS ','Other contact with turtle, sequela','Y','0000-00-00 00:00:00'),(176769,10,'W59.81XA ','Bitten by other nonvenomous reptiles, initial encounter','Y','0000-00-00 00:00:00'),(176770,10,'W59.81XD ','Bitten by other nonvenomous reptiles, subsequent encounter','Y','0000-00-00 00:00:00'),(176771,10,'W59.81XS ','Bitten by other nonvenomous reptiles, sequela','Y','0000-00-00 00:00:00'),(176772,10,'W59.82XA ','Struck by other nonvenomous reptiles, initial encounter','Y','0000-00-00 00:00:00'),(176773,10,'W59.82XD ','Struck by other nonvenomous reptiles, subsequent encounter','Y','0000-00-00 00:00:00'),(176774,10,'W59.82XS ','Struck by other nonvenomous reptiles, sequela','Y','0000-00-00 00:00:00'),(176775,10,'W59.83XA ','Crushed by other nonvenomous reptiles, initial encounter','Y','0000-00-00 00:00:00'),(176776,10,'W59.83XD ','Crushed by other nonvenomous reptiles, subsequent encounter','Y','0000-00-00 00:00:00'),(176777,10,'W59.83XS ','Crushed by other nonvenomous reptiles, sequela','Y','0000-00-00 00:00:00'),(176778,10,'W59.89XA ','Other contact with other nonvenomous reptiles, initial encounter','Y','0000-00-00 00:00:00'),(176779,10,'W59.89XD ','Other contact with other nonvenomous reptiles, subsequent encounter','Y','0000-00-00 00:00:00'),(176780,10,'W59.89XS ','Other contact with other nonvenomous reptiles, sequela','Y','0000-00-00 00:00:00'),(176781,10,'W60.XXXA ','Contact with nonvenomous plant thorns and spines and sharp leaves, initial encounter','Y','0000-00-00 00:00:00'),(176782,10,'W60.XXXD ','Contact with nonvenomous plant thorns and spines and sharp leaves, subsequent encounter','Y','0000-00-00 00:00:00'),(176783,10,'W60.XXXS ','Contact with nonvenomous plant thorns and spines and sharp leaves, sequela','Y','0000-00-00 00:00:00'),(176784,10,'W61.01XA ','Bitten by parrot, initial encounter','Y','0000-00-00 00:00:00'),(176785,10,'W61.01XD ','Bitten by parrot, subsequent encounter','Y','0000-00-00 00:00:00'),(176786,10,'W61.01XS ','Bitten by parrot, sequela','Y','0000-00-00 00:00:00'),(176787,10,'W61.02XA ','Struck by parrot, initial encounter','Y','0000-00-00 00:00:00'),(176788,10,'W61.02XD ','Struck by parrot, subsequent encounter','Y','0000-00-00 00:00:00'),(176789,10,'W61.02XS ','Struck by parrot, sequela','Y','0000-00-00 00:00:00'),(176790,10,'W61.09XA ','Other contact with parrot, initial encounter','Y','0000-00-00 00:00:00'),(176791,10,'W61.09XD ','Other contact with parrot, subsequent encounter','Y','0000-00-00 00:00:00'),(176792,10,'W61.09XS ','Other contact with parrot, sequela','Y','0000-00-00 00:00:00'),(176793,10,'W61.11XA ','Bitten by macaw, initial encounter','Y','0000-00-00 00:00:00'),(176794,10,'W61.11XD ','Bitten by macaw, subsequent encounter','Y','0000-00-00 00:00:00'),(176795,10,'W61.11XS ','Bitten by macaw, sequela','Y','0000-00-00 00:00:00'),(176796,10,'W61.12XA ','Struck by macaw, initial encounter','Y','0000-00-00 00:00:00'),(176797,10,'W61.12XD ','Struck by macaw, subsequent encounter','Y','0000-00-00 00:00:00'),(176798,10,'W61.12XS ','Struck by macaw, sequela','Y','0000-00-00 00:00:00'),(176799,10,'W61.19XA ','Other contact with macaw, initial encounter','Y','0000-00-00 00:00:00'),(176800,10,'W61.19XD ','Other contact with macaw, subsequent encounter','Y','0000-00-00 00:00:00'),(176801,10,'W61.19XS ','Other contact with macaw, sequela','Y','0000-00-00 00:00:00'),(176802,10,'W61.21XA ','Bitten by other psittacines, initial encounter','Y','0000-00-00 00:00:00'),(176803,10,'W61.21XD ','Bitten by other psittacines, subsequent encounter','Y','0000-00-00 00:00:00'),(176804,10,'W61.21XS ','Bitten by other psittacines, sequela','Y','0000-00-00 00:00:00'),(176805,10,'W61.22XA ','Struck by other psittacines, initial encounter','Y','0000-00-00 00:00:00'),(176806,10,'W61.22XD ','Struck by other psittacines, subsequent encounter','Y','0000-00-00 00:00:00'),(176807,10,'W61.22XS ','Struck by other psittacines, sequela','Y','0000-00-00 00:00:00'),(176808,10,'W61.29XA ','Other contact with other psittacines, initial encounter','Y','0000-00-00 00:00:00'),(176809,10,'W61.29XD ','Other contact with other psittacines, subsequent encounter','Y','0000-00-00 00:00:00'),(176810,10,'W61.29XS ','Other contact with other psittacines, sequela','Y','0000-00-00 00:00:00'),(176811,10,'W61.32XA ','Struck by chicken, initial encounter','Y','0000-00-00 00:00:00'),(176812,10,'W61.32XD ','Struck by chicken, subsequent encounter','Y','0000-00-00 00:00:00'),(176813,10,'W61.32XS ','Struck by chicken, sequela','Y','0000-00-00 00:00:00'),(176814,10,'W61.33XA ','Pecked by chicken, initial encounter','Y','0000-00-00 00:00:00'),(176815,10,'W61.33XD ','Pecked by chicken, subsequent encounter','Y','0000-00-00 00:00:00'),(176816,10,'W61.33XS ','Pecked by chicken, sequela','Y','0000-00-00 00:00:00'),(176817,10,'W61.39XA ','Other contact with chicken, initial encounter','Y','0000-00-00 00:00:00'),(176818,10,'W61.39XD ','Other contact with chicken, subsequent encounter','Y','0000-00-00 00:00:00'),(176819,10,'W61.39XS ','Other contact with chicken, sequela','Y','0000-00-00 00:00:00'),(176820,10,'W61.42XA ','Struck by turkey, initial encounter','Y','0000-00-00 00:00:00'),(176821,10,'W61.42XD ','Struck by turkey, subsequent encounter','Y','0000-00-00 00:00:00'),(176822,10,'W61.42XS ','Struck by turkey, sequela','Y','0000-00-00 00:00:00'),(176823,10,'W61.43XA ','Pecked by turkey, initial encounter','Y','0000-00-00 00:00:00'),(176824,10,'W61.43XD ','Pecked by turkey, subsequent encounter','Y','0000-00-00 00:00:00'),(176825,10,'W61.43XS ','Pecked by turkey, sequela','Y','0000-00-00 00:00:00'),(176826,10,'W61.49XA ','Other contact with turkey, initial encounter','Y','0000-00-00 00:00:00'),(176827,10,'W61.49XD ','Other contact with turkey, subsequent encounter','Y','0000-00-00 00:00:00'),(176828,10,'W61.49XS ','Other contact with turkey, sequela','Y','0000-00-00 00:00:00'),(176829,10,'W61.51XA ','Bitten by goose, initial encounter','Y','0000-00-00 00:00:00'),(176830,10,'W61.51XD ','Bitten by goose, subsequent encounter','Y','0000-00-00 00:00:00'),(176831,10,'W61.51XS ','Bitten by goose, sequela','Y','0000-00-00 00:00:00'),(176832,10,'W61.52XA ','Struck by goose, initial encounter','Y','0000-00-00 00:00:00'),(176833,10,'W61.52XD ','Struck by goose, subsequent encounter','Y','0000-00-00 00:00:00'),(176834,10,'W61.52XS ','Struck by goose, sequela','Y','0000-00-00 00:00:00'),(176835,10,'W61.59XA ','Other contact with goose, initial encounter','Y','0000-00-00 00:00:00'),(176836,10,'W61.59XD ','Other contact with goose, subsequent encounter','Y','0000-00-00 00:00:00'),(176837,10,'W61.59XS ','Other contact with goose, sequela','Y','0000-00-00 00:00:00'),(176838,10,'W61.61XA ','Bitten by duck, initial encounter','Y','0000-00-00 00:00:00'),(176839,10,'W61.61XD ','Bitten by duck, subsequent encounter','Y','0000-00-00 00:00:00'),(176840,10,'W61.61XS ','Bitten by duck, sequela','Y','0000-00-00 00:00:00'),(176841,10,'W61.62XA ','Struck by duck, initial encounter','Y','0000-00-00 00:00:00'),(176842,10,'W61.62XD ','Struck by duck, subsequent encounter','Y','0000-00-00 00:00:00'),(176843,10,'W61.62XS ','Struck by duck, sequela','Y','0000-00-00 00:00:00'),(176844,10,'W61.69XA ','Other contact with duck, initial encounter','Y','0000-00-00 00:00:00'),(176845,10,'W61.69XD ','Other contact with duck, subsequent encounter','Y','0000-00-00 00:00:00'),(176846,10,'W61.69XS ','Other contact with duck, sequela','Y','0000-00-00 00:00:00'),(176847,10,'W61.91XA ','Bitten by other birds, initial encounter','Y','0000-00-00 00:00:00'),(176848,10,'W61.91XD ','Bitten by other birds, subsequent encounter','Y','0000-00-00 00:00:00'),(176849,10,'W61.91XS ','Bitten by other birds, sequela','Y','0000-00-00 00:00:00'),(176850,10,'W61.92XA ','Struck by other birds, initial encounter','Y','0000-00-00 00:00:00'),(176851,10,'W61.92XD ','Struck by other birds, subsequent encounter','Y','0000-00-00 00:00:00'),(176852,10,'W61.92XS ','Struck by other birds, sequela','Y','0000-00-00 00:00:00'),(176853,10,'W61.99XA ','Other contact with other birds, initial encounter','Y','0000-00-00 00:00:00'),(176854,10,'W61.99XD ','Other contact with other birds, subsequent encounter','Y','0000-00-00 00:00:00'),(176855,10,'W61.99XS ','Other contact with other birds, sequela','Y','0000-00-00 00:00:00'),(176856,10,'W62.0XXA ','Contact with nonvenomous frogs, initial encounter','Y','0000-00-00 00:00:00'),(176857,10,'W62.0XXD ','Contact with nonvenomous frogs, subsequent encounter','Y','0000-00-00 00:00:00'),(176858,10,'W62.0XXS ','Contact with nonvenomous frogs, sequela','Y','0000-00-00 00:00:00'),(176859,10,'W62.1XXA ','Contact with nonvenomous toads, initial encounter','Y','0000-00-00 00:00:00'),(176860,10,'W62.1XXD ','Contact with nonvenomous toads, subsequent encounter','Y','0000-00-00 00:00:00'),(176861,10,'W62.1XXS ','Contact with nonvenomous toads, sequela','Y','0000-00-00 00:00:00'),(176862,10,'W62.9XXA ','Contact with other nonvenomous amphibians, initial encounter','Y','0000-00-00 00:00:00'),(176863,10,'W62.9XXD ','Contact with other nonvenomous amphibians, subsequent encounter','Y','0000-00-00 00:00:00'),(176864,10,'W62.9XXS ','Contact with other nonvenomous amphibians, sequela','Y','0000-00-00 00:00:00'),(176865,10,'W64.XXXA ','Exposure to other animate mechanical forces, initial encounter','Y','0000-00-00 00:00:00'),(176866,10,'W64.XXXD ','Exposure to other animate mechanical forces, subsequent encounter','Y','0000-00-00 00:00:00'),(176867,10,'W64.XXXS ','Exposure to other animate mechanical forces, sequela','Y','0000-00-00 00:00:00'),(176868,10,'W65.XXXA ','Accidental drowning and submersion while in bath-tub, initial encounter','Y','0000-00-00 00:00:00'),(176869,10,'W65.XXXD ','Accidental drowning and submersion while in bath-tub, subsequent encounter','Y','0000-00-00 00:00:00'),(176870,10,'W65.XXXS ','Accidental drowning and submersion while in bath-tub, sequela','Y','0000-00-00 00:00:00'),(176871,10,'W67.XXXA ','Accidental drowning and submersion while in swimming-pool, initial encounter','Y','0000-00-00 00:00:00'),(176872,10,'W67.XXXD ','Accidental drowning and submersion while in swimming-pool, subsequent encounter','Y','0000-00-00 00:00:00'),(176873,10,'W67.XXXS ','Accidental drowning and submersion while in swimming-pool, sequela','Y','0000-00-00 00:00:00'),(176874,10,'W69.XXXA ','Accidental drowning and submersion while in natural water, initial encounter','Y','0000-00-00 00:00:00'),(176875,10,'W69.XXXD ','Accidental drowning and submersion while in natural water, subsequent encounter','Y','0000-00-00 00:00:00'),(176876,10,'W69.XXXS ','Accidental drowning and submersion while in natural water, sequela','Y','0000-00-00 00:00:00'),(176877,10,'W73.XXXA ','Other specified cause of accidental non-transport drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(176878,10,'W73.XXXD ','Other specified cause of accidental non-transport drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(176879,10,'W73.XXXS ','Other specified cause of accidental non-transport drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(176880,10,'W74.XXXA ','Unspecified cause of accidental drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(176881,10,'W74.XXXD ','Unspecified cause of accidental drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(176882,10,'W74.XXXS ','Unspecified cause of accidental drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(176883,10,'W85.XXXA ','Exposure to electric transmission lines, initial encounter','Y','0000-00-00 00:00:00'),(176884,10,'W85.XXXD ','Exposure to electric transmission lines, subsequent encounter','Y','0000-00-00 00:00:00'),(176885,10,'W85.XXXS ','Exposure to electric transmission lines, sequela','Y','0000-00-00 00:00:00'),(176886,10,'W86.0XXA ','Exposure to domestic wiring and appliances, initial encounter','Y','0000-00-00 00:00:00'),(176887,10,'W86.0XXD ','Exposure to domestic wiring and appliances, subsequent encounter','Y','0000-00-00 00:00:00'),(176888,10,'W86.0XXS ','Exposure to domestic wiring and appliances, sequela','Y','0000-00-00 00:00:00'),(176889,10,'W86.1XXA ','Exposure to industrial wiring, appliances and electrical machinery, initial encounter','Y','0000-00-00 00:00:00'),(176890,10,'W86.1XXD ','Exposure to industrial wiring, appliances and electrical machinery, subsequent encounter','Y','0000-00-00 00:00:00'),(176891,10,'W86.1XXS ','Exposure to industrial wiring, appliances and electrical machinery, sequela','Y','0000-00-00 00:00:00'),(176892,10,'W86.8XXA ','Exposure to other electric current, initial encounter','Y','0000-00-00 00:00:00'),(176893,10,'W86.8XXD ','Exposure to other electric current, subsequent encounter','Y','0000-00-00 00:00:00'),(176894,10,'W86.8XXS ','Exposure to other electric current, sequela','Y','0000-00-00 00:00:00'),(176895,10,'W88.0XXA ','Exposure to X-rays, initial encounter','Y','0000-00-00 00:00:00'),(176896,10,'W88.0XXD ','Exposure to X-rays, subsequent encounter','Y','0000-00-00 00:00:00'),(176897,10,'W88.0XXS ','Exposure to X-rays, sequela','Y','0000-00-00 00:00:00'),(176898,10,'W88.1XXA ','Exposure to radioactive isotopes, initial encounter','Y','0000-00-00 00:00:00'),(176899,10,'W88.1XXD ','Exposure to radioactive isotopes, subsequent encounter','Y','0000-00-00 00:00:00'),(176900,10,'W88.1XXS ','Exposure to radioactive isotopes, sequela','Y','0000-00-00 00:00:00'),(176901,10,'W88.8XXA ','Exposure to other ionizing radiation, initial encounter','Y','0000-00-00 00:00:00'),(176902,10,'W88.8XXD ','Exposure to other ionizing radiation, subsequent encounter','Y','0000-00-00 00:00:00'),(176903,10,'W88.8XXS ','Exposure to other ionizing radiation, sequela','Y','0000-00-00 00:00:00'),(176904,10,'W89.0XXA ','Exposure to welding light (arc), initial encounter','Y','0000-00-00 00:00:00'),(176905,10,'W89.0XXD ','Exposure to welding light (arc), subsequent encounter','Y','0000-00-00 00:00:00'),(176906,10,'W89.0XXS ','Exposure to welding light (arc), sequela','Y','0000-00-00 00:00:00'),(176907,10,'W89.1XXA ','Exposure to tanning bed, initial encounter','Y','0000-00-00 00:00:00'),(176908,10,'W89.1XXD ','Exposure to tanning bed, subsequent encounter','Y','0000-00-00 00:00:00'),(176909,10,'W89.1XXS ','Exposure to tanning bed, sequela','Y','0000-00-00 00:00:00'),(176910,10,'W89.8XXA ','Exposure to other man-made visible and ultraviolet light, initial encounter','Y','0000-00-00 00:00:00'),(176911,10,'W89.8XXD ','Exposure to other man-made visible and ultraviolet light, subsequent encounter','Y','0000-00-00 00:00:00'),(176912,10,'W89.8XXS ','Exposure to other man-made visible and ultraviolet light, sequela','Y','0000-00-00 00:00:00'),(176913,10,'W89.9XXA ','Exposure to unspecified man-made visible and ultraviolet light, initial encounter','Y','0000-00-00 00:00:00'),(176914,10,'W89.9XXD ','Exposure to unspecified man-made visible and ultraviolet light, subsequent encounter','Y','0000-00-00 00:00:00'),(176915,10,'W89.9XXS ','Exposure to unspecified man-made visible and ultraviolet light, sequela','Y','0000-00-00 00:00:00'),(176916,10,'W90.0XXA ','Exposure to radiofrequency, initial encounter','Y','0000-00-00 00:00:00'),(176917,10,'W90.0XXD ','Exposure to radiofrequency, subsequent encounter','Y','0000-00-00 00:00:00'),(176918,10,'W90.0XXS ','Exposure to radiofrequency, sequela','Y','0000-00-00 00:00:00'),(176919,10,'W90.1XXA ','Exposure to infrared radiation, initial encounter','Y','0000-00-00 00:00:00'),(176920,10,'W90.1XXD ','Exposure to infrared radiation, subsequent encounter','Y','0000-00-00 00:00:00'),(176921,10,'W90.1XXS ','Exposure to infrared radiation, sequela','Y','0000-00-00 00:00:00'),(176922,10,'W90.2XXA ','Exposure to laser radiation, initial encounter','Y','0000-00-00 00:00:00'),(176923,10,'W90.2XXD ','Exposure to laser radiation, subsequent encounter','Y','0000-00-00 00:00:00'),(176924,10,'W90.2XXS ','Exposure to laser radiation, sequela','Y','0000-00-00 00:00:00'),(176925,10,'W90.8XXA ','Exposure to other nonionizing radiation, initial encounter','Y','0000-00-00 00:00:00'),(176926,10,'W90.8XXD ','Exposure to other nonionizing radiation, subsequent encounter','Y','0000-00-00 00:00:00'),(176927,10,'W90.8XXS ','Exposure to other nonionizing radiation, sequela','Y','0000-00-00 00:00:00'),(176928,10,'W92.XXXA ','Exposure to excessive heat of man-made origin, initial encounter','Y','0000-00-00 00:00:00'),(176929,10,'W92.XXXD ','Exposure to excessive heat of man-made origin, subsequent encounter','Y','0000-00-00 00:00:00'),(176930,10,'W92.XXXS ','Exposure to excessive heat of man-made origin, sequela','Y','0000-00-00 00:00:00'),(176931,10,'W93.01XA ','Contact with dry ice, initial encounter','Y','0000-00-00 00:00:00'),(176932,10,'W93.01XD ','Contact with dry ice, subsequent encounter','Y','0000-00-00 00:00:00'),(176933,10,'W93.01XS ','Contact with dry ice, sequela','Y','0000-00-00 00:00:00'),(176934,10,'W93.02XA ','Inhalation of dry ice, initial encounter','Y','0000-00-00 00:00:00'),(176935,10,'W93.02XD ','Inhalation of dry ice, subsequent encounter','Y','0000-00-00 00:00:00'),(176936,10,'W93.02XS ','Inhalation of dry ice, sequela','Y','0000-00-00 00:00:00'),(176937,10,'W93.11XA ','Contact with liquid air, initial encounter','Y','0000-00-00 00:00:00'),(176938,10,'W93.11XD ','Contact with liquid air, subsequent encounter','Y','0000-00-00 00:00:00'),(176939,10,'W93.11XS ','Contact with liquid air, sequela','Y','0000-00-00 00:00:00'),(176940,10,'W93.12XA ','Inhalation of liquid air, initial encounter','Y','0000-00-00 00:00:00'),(176941,10,'W93.12XD ','Inhalation of liquid air, subsequent encounter','Y','0000-00-00 00:00:00'),(176942,10,'W93.12XS ','Inhalation of liquid air, sequela','Y','0000-00-00 00:00:00'),(176943,10,'W93.2XXA ','Prolonged exposure in deep freeze unit or refrigerator, initial encounter','Y','0000-00-00 00:00:00'),(176944,10,'W93.2XXD ','Prolonged exposure in deep freeze unit or refrigerator, subsequent encounter','Y','0000-00-00 00:00:00'),(176945,10,'W93.2XXS ','Prolonged exposure in deep freeze unit or refrigerator, sequela','Y','0000-00-00 00:00:00'),(176946,10,'W93.8XXA ','Exposure to other excessive cold of man-made origin, initial encounter','Y','0000-00-00 00:00:00'),(176947,10,'W93.8XXD ','Exposure to other excessive cold of man-made origin, subsequent encounter','Y','0000-00-00 00:00:00'),(176948,10,'W93.8XXS ','Exposure to other excessive cold of man-made origin, sequela','Y','0000-00-00 00:00:00'),(176949,10,'W94.0XXA ','Exposure to prolonged high air pressure, initial encounter','Y','0000-00-00 00:00:00'),(176950,10,'W94.0XXD ','Exposure to prolonged high air pressure, subsequent encounter','Y','0000-00-00 00:00:00'),(176951,10,'W94.0XXS ','Exposure to prolonged high air pressure, sequela','Y','0000-00-00 00:00:00'),(176952,10,'W94.11XA ','Exposure to residence or prolonged visit at high altitude, initial encounter','Y','0000-00-00 00:00:00'),(176953,10,'W94.11XD ','Exposure to residence or prolonged visit at high altitude, subsequent encounter','Y','0000-00-00 00:00:00'),(176954,10,'W94.11XS ','Exposure to residence or prolonged visit at high altitude, sequela','Y','0000-00-00 00:00:00'),(176955,10,'W94.12XA ','Exposure to other prolonged low air pressure, initial encounter','Y','0000-00-00 00:00:00'),(176956,10,'W94.12XD ','Exposure to other prolonged low air pressure, subsequent encounter','Y','0000-00-00 00:00:00'),(176957,10,'W94.12XS ','Exposure to other prolonged low air pressure, sequela','Y','0000-00-00 00:00:00'),(176958,10,'W94.21XA ','Exposure to reduction in atmospheric pressure while surfacing from deep-water diving, initial encounter','Y','0000-00-00 00:00:00'),(176959,10,'W94.21XD ','Exposure to reduction in atmospheric pressure while surfacing from deep-water diving, subsequent encounter','Y','0000-00-00 00:00:00'),(176960,10,'W94.21XS ','Exposure to reduction in atmospheric pressure while surfacing from deep-water diving, sequela','Y','0000-00-00 00:00:00'),(176961,10,'W94.22XA ','Exposure to reduction in atmospheric pressure while surfacing from underground, initial encounter','Y','0000-00-00 00:00:00'),(176962,10,'W94.22XD ','Exposure to reduction in atmospheric pressure while surfacing from underground, subsequent encounter','Y','0000-00-00 00:00:00'),(176963,10,'W94.22XS ','Exposure to reduction in atmospheric pressure while surfacing from underground, sequela','Y','0000-00-00 00:00:00'),(176964,10,'W94.23XA ','Exposure to sudden change in air pressure in aircraft during ascent, initial encounter','Y','0000-00-00 00:00:00'),(176965,10,'W94.23XD ','Exposure to sudden change in air pressure in aircraft during ascent, subsequent encounter','Y','0000-00-00 00:00:00'),(176966,10,'W94.23XS ','Exposure to sudden change in air pressure in aircraft during ascent, sequela','Y','0000-00-00 00:00:00'),(176967,10,'W94.29XA ','Exposure to other rapid changes in air pressure during ascent, initial encounter','Y','0000-00-00 00:00:00'),(176968,10,'W94.29XD ','Exposure to other rapid changes in air pressure during ascent, subsequent encounter','Y','0000-00-00 00:00:00'),(176969,10,'W94.29XS ','Exposure to other rapid changes in air pressure during ascent, sequela','Y','0000-00-00 00:00:00'),(176970,10,'W94.31XA ','Exposure to sudden change in air pressure in aircraft during descent, initial encounter','Y','0000-00-00 00:00:00'),(176971,10,'W94.31XD ','Exposure to sudden change in air pressure in aircraft during descent, subsequent encounter','Y','0000-00-00 00:00:00'),(176972,10,'W94.31XS ','Exposure to sudden change in air pressure in aircraft during descent, sequela','Y','0000-00-00 00:00:00'),(176973,10,'W94.32XA ','Exposure to high air pressure from rapid descent in water, initial encounter','Y','0000-00-00 00:00:00'),(176974,10,'W94.32XD ','Exposure to high air pressure from rapid descent in water, subsequent encounter','Y','0000-00-00 00:00:00'),(176975,10,'W94.32XS ','Exposure to high air pressure from rapid descent in water, sequela','Y','0000-00-00 00:00:00'),(176976,10,'W94.39XA ','Exposure to other rapid changes in air pressure during descent, initial encounter','Y','0000-00-00 00:00:00'),(176977,10,'W94.39XD ','Exposure to other rapid changes in air pressure during descent, subsequent encounter','Y','0000-00-00 00:00:00'),(176978,10,'W94.39XS ','Exposure to other rapid changes in air pressure during descent, sequela','Y','0000-00-00 00:00:00'),(176979,10,'W99.XXXA ','Exposure to other man-made environmental factors, initial encounter','Y','0000-00-00 00:00:00'),(176980,10,'W99.XXXD ','Exposure to other man-made environmental factors, subsequent encounter','Y','0000-00-00 00:00:00'),(176981,10,'W99.XXXS ','Exposure to other man-made environmental factors, sequela','Y','0000-00-00 00:00:00'),(176982,10,'X00.0XXA ','Exposure to flames in uncontrolled fire in building or structure, initial encounter','Y','0000-00-00 00:00:00'),(176983,10,'X00.0XXD ','Exposure to flames in uncontrolled fire in building or structure, subsequent encounter','Y','0000-00-00 00:00:00'),(176984,10,'X00.0XXS ','Exposure to flames in uncontrolled fire in building or structure, sequela','Y','0000-00-00 00:00:00'),(176985,10,'X00.1XXA ','Exposure to smoke in uncontrolled fire in building or structure, initial encounter','Y','0000-00-00 00:00:00'),(176986,10,'X00.1XXD ','Exposure to smoke in uncontrolled fire in building or structure, subsequent encounter','Y','0000-00-00 00:00:00'),(176987,10,'X00.1XXS ','Exposure to smoke in uncontrolled fire in building or structure, sequela','Y','0000-00-00 00:00:00'),(176988,10,'X00.2XXA ','Injury due to collapse of burning building or structure in uncontrolled fire, initial encounter','Y','0000-00-00 00:00:00'),(176989,10,'X00.2XXD ','Injury due to collapse of burning building or structure in uncontrolled fire, subsequent encounter','Y','0000-00-00 00:00:00'),(176990,10,'X00.2XXS ','Injury due to collapse of burning building or structure in uncontrolled fire, sequela','Y','0000-00-00 00:00:00'),(176991,10,'X00.3XXA ','Fall from burning building or structure in uncontrolled fire, initial encounter','Y','0000-00-00 00:00:00'),(176992,10,'X00.3XXD ','Fall from burning building or structure in uncontrolled fire, subsequent encounter','Y','0000-00-00 00:00:00'),(176993,10,'X00.3XXS ','Fall from burning building or structure in uncontrolled fire, sequela','Y','0000-00-00 00:00:00'),(176994,10,'X00.4XXA ','Hit by object from burning building or structure in uncontrolled fire, initial encounter','Y','0000-00-00 00:00:00'),(176995,10,'X00.4XXD ','Hit by object from burning building or structure in uncontrolled fire, subsequent encounter','Y','0000-00-00 00:00:00'),(176996,10,'X00.4XXS ','Hit by object from burning building or structure in uncontrolled fire, sequela','Y','0000-00-00 00:00:00'),(176997,10,'X00.5XXA ','Jump from burning building or structure in uncontrolled fire, initial encounter','Y','0000-00-00 00:00:00'),(176998,10,'X00.5XXD ','Jump from burning building or structure in uncontrolled fire, subsequent encounter','Y','0000-00-00 00:00:00'),(176999,10,'X00.5XXS ','Jump from burning building or structure in uncontrolled fire, sequela','Y','0000-00-00 00:00:00'),(177000,10,'X00.8XXA ','Other exposure to uncontrolled fire in building or structure, initial encounter','Y','0000-00-00 00:00:00'),(177001,10,'X00.8XXD ','Other exposure to uncontrolled fire in building or structure, subsequent encounter','Y','0000-00-00 00:00:00'),(177002,10,'X00.8XXS ','Other exposure to uncontrolled fire in building or structure, sequela','Y','0000-00-00 00:00:00'),(177003,10,'X01.0XXA ','Exposure to flames in uncontrolled fire, not in building or structure, initial encounter','Y','0000-00-00 00:00:00'),(177004,10,'X01.0XXD ','Exposure to flames in uncontrolled fire, not in building or structure, subsequent encounter','Y','0000-00-00 00:00:00'),(177005,10,'X01.0XXS ','Exposure to flames in uncontrolled fire, not in building or structure, sequela','Y','0000-00-00 00:00:00'),(177006,10,'X01.1XXA ','Exposure to smoke in uncontrolled fire, not in building or structure, initial encounter','Y','0000-00-00 00:00:00'),(177007,10,'X01.1XXD ','Exposure to smoke in uncontrolled fire, not in building or structure, subsequent encounter','Y','0000-00-00 00:00:00'),(177008,10,'X01.1XXS ','Exposure to smoke in uncontrolled fire, not in building or structure, sequela','Y','0000-00-00 00:00:00'),(177009,10,'X01.3XXA ','Fall due to uncontrolled fire, not in building or structure, initial encounter','Y','0000-00-00 00:00:00'),(177010,10,'X01.3XXD ','Fall due to uncontrolled fire, not in building or structure, subsequent encounter','Y','0000-00-00 00:00:00'),(177011,10,'X01.3XXS ','Fall due to uncontrolled fire, not in building or structure, sequela','Y','0000-00-00 00:00:00'),(177012,10,'X01.4XXA ','Hit by object due to uncontrolled fire, not in building or structure, initial encounter','Y','0000-00-00 00:00:00'),(177013,10,'X01.4XXD ','Hit by object due to uncontrolled fire, not in building or structure, subsequent encounter','Y','0000-00-00 00:00:00'),(177014,10,'X01.4XXS ','Hit by object due to uncontrolled fire, not in building or structure, sequela','Y','0000-00-00 00:00:00'),(177015,10,'X01.8XXA ','Other exposure to uncontrolled fire, not in building or structure, initial encounter','Y','0000-00-00 00:00:00'),(177016,10,'X01.8XXD ','Other exposure to uncontrolled fire, not in building or structure, subsequent encounter','Y','0000-00-00 00:00:00'),(177017,10,'X01.8XXS ','Other exposure to uncontrolled fire, not in building or structure, sequela','Y','0000-00-00 00:00:00'),(177018,10,'X02.0XXA ','Exposure to flames in controlled fire in building or structure, initial encounter','Y','0000-00-00 00:00:00'),(177019,10,'X02.0XXD ','Exposure to flames in controlled fire in building or structure, subsequent encounter','Y','0000-00-00 00:00:00'),(177020,10,'X02.0XXS ','Exposure to flames in controlled fire in building or structure, sequela','Y','0000-00-00 00:00:00'),(177021,10,'X02.1XXA ','Exposure to smoke in controlled fire in building or structure, initial encounter','Y','0000-00-00 00:00:00'),(177022,10,'X02.1XXD ','Exposure to smoke in controlled fire in building or structure, subsequent encounter','Y','0000-00-00 00:00:00'),(177023,10,'X02.1XXS ','Exposure to smoke in controlled fire in building or structure, sequela','Y','0000-00-00 00:00:00'),(177024,10,'X02.2XXA ','Injury due to collapse of burning building or structure in controlled fire, initial encounter','Y','0000-00-00 00:00:00'),(177025,10,'X02.2XXD ','Injury due to collapse of burning building or structure in controlled fire, subsequent encounter','Y','0000-00-00 00:00:00'),(177026,10,'X02.2XXS ','Injury due to collapse of burning building or structure in controlled fire, sequela','Y','0000-00-00 00:00:00'),(177027,10,'X02.3XXA ','Fall from burning building or structure in controlled fire, initial encounter','Y','0000-00-00 00:00:00'),(177028,10,'X02.3XXD ','Fall from burning building or structure in controlled fire, subsequent encounter','Y','0000-00-00 00:00:00'),(177029,10,'X02.3XXS ','Fall from burning building or structure in controlled fire, sequela','Y','0000-00-00 00:00:00'),(177030,10,'X02.4XXA ','Hit by object from burning building or structure in controlled fire, initial encounter','Y','0000-00-00 00:00:00'),(177031,10,'X02.4XXD ','Hit by object from burning building or structure in controlled fire, subsequent encounter','Y','0000-00-00 00:00:00'),(177032,10,'X02.4XXS ','Hit by object from burning building or structure in controlled fire, sequela','Y','0000-00-00 00:00:00'),(177033,10,'X02.5XXA ','Jump from burning building or structure in controlled fire, initial encounter','Y','0000-00-00 00:00:00'),(177034,10,'X02.5XXD ','Jump from burning building or structure in controlled fire, subsequent encounter','Y','0000-00-00 00:00:00'),(177035,10,'X02.5XXS ','Jump from burning building or structure in controlled fire, sequela','Y','0000-00-00 00:00:00'),(177036,10,'X02.8XXA ','Other exposure to controlled fire in building or structure, initial encounter','Y','0000-00-00 00:00:00'),(177037,10,'X02.8XXD ','Other exposure to controlled fire in building or structure, subsequent encounter','Y','0000-00-00 00:00:00'),(177038,10,'X02.8XXS ','Other exposure to controlled fire in building or structure, sequela','Y','0000-00-00 00:00:00'),(177039,10,'X03.0XXA ','Exposure to flames in controlled fire, not in building or structure, initial encounter','Y','0000-00-00 00:00:00'),(177040,10,'X03.0XXD ','Exposure to flames in controlled fire, not in building or structure, subsequent encounter','Y','0000-00-00 00:00:00'),(177041,10,'X03.0XXS ','Exposure to flames in controlled fire, not in building or structure, sequela','Y','0000-00-00 00:00:00'),(177042,10,'X03.1XXA ','Exposure to smoke in controlled fire, not in building or structure, initial encounter','Y','0000-00-00 00:00:00'),(177043,10,'X03.1XXD ','Exposure to smoke in controlled fire, not in building or structure, subsequent encounter','Y','0000-00-00 00:00:00'),(177044,10,'X03.1XXS ','Exposure to smoke in controlled fire, not in building or structure, sequela','Y','0000-00-00 00:00:00'),(177045,10,'X03.3XXA ','Fall due to controlled fire, not in building or structure, initial encounter','Y','0000-00-00 00:00:00'),(177046,10,'X03.3XXD ','Fall due to controlled fire, not in building or structure, subsequent encounter','Y','0000-00-00 00:00:00'),(177047,10,'X03.3XXS ','Fall due to controlled fire, not in building or structure, sequela','Y','0000-00-00 00:00:00'),(177048,10,'X03.4XXA ','Hit by object due to controlled fire, not in building or structure, initial encounter','Y','0000-00-00 00:00:00'),(177049,10,'X03.4XXD ','Hit by object due to controlled fire, not in building or structure, subsequent encounter','Y','0000-00-00 00:00:00'),(177050,10,'X03.4XXS ','Hit by object due to controlled fire, not in building or structure, sequela','Y','0000-00-00 00:00:00'),(177051,10,'X03.8XXA ','Other exposure to controlled fire, not in building or structure, initial encounter','Y','0000-00-00 00:00:00'),(177052,10,'X03.8XXD ','Other exposure to controlled fire, not in building or structure, subsequent encounter','Y','0000-00-00 00:00:00'),(177053,10,'X03.8XXS ','Other exposure to controlled fire, not in building or structure, sequela','Y','0000-00-00 00:00:00'),(177054,10,'X04.XXXA ','Exposure to ignition of highly flammable material, initial encounter','Y','0000-00-00 00:00:00'),(177055,10,'X04.XXXD ','Exposure to ignition of highly flammable material, subsequent encounter','Y','0000-00-00 00:00:00'),(177056,10,'X04.XXXS ','Exposure to ignition of highly flammable material, sequela','Y','0000-00-00 00:00:00'),(177057,10,'X05.XXXA ','Exposure to ignition or melting of nightwear, initial encounter','Y','0000-00-00 00:00:00'),(177058,10,'X05.XXXD ','Exposure to ignition or melting of nightwear, subsequent encounter','Y','0000-00-00 00:00:00'),(177059,10,'X05.XXXS ','Exposure to ignition or melting of nightwear, sequela','Y','0000-00-00 00:00:00'),(177060,10,'X06.0XXA ','Exposure to ignition of plastic jewelry, initial encounter','Y','0000-00-00 00:00:00'),(177061,10,'X06.0XXD ','Exposure to ignition of plastic jewelry, subsequent encounter','Y','0000-00-00 00:00:00'),(177062,10,'X06.0XXS ','Exposure to ignition of plastic jewelry, sequela','Y','0000-00-00 00:00:00'),(177063,10,'X06.1XXA ','Exposure to melting of plastic jewelry, initial encounter','Y','0000-00-00 00:00:00'),(177064,10,'X06.1XXD ','Exposure to melting of plastic jewelry, subsequent encounter','Y','0000-00-00 00:00:00'),(177065,10,'X06.1XXS ','Exposure to melting of plastic jewelry, sequela','Y','0000-00-00 00:00:00'),(177066,10,'X06.2XXA ','Exposure to ignition of other clothing and apparel, initial encounter','Y','0000-00-00 00:00:00'),(177067,10,'X06.2XXD ','Exposure to ignition of other clothing and apparel, subsequent encounter','Y','0000-00-00 00:00:00'),(177068,10,'X06.2XXS ','Exposure to ignition of other clothing and apparel, sequela','Y','0000-00-00 00:00:00'),(177069,10,'X06.3XXA ','Exposure to melting of other clothing and apparel, initial encounter','Y','0000-00-00 00:00:00'),(177070,10,'X06.3XXD ','Exposure to melting of other clothing and apparel, subsequent encounter','Y','0000-00-00 00:00:00'),(177071,10,'X06.3XXS ','Exposure to melting of other clothing and apparel, sequela','Y','0000-00-00 00:00:00'),(177072,10,'X08.00XA ','Exposure to bed fire due to unspecified burning material, initial encounter','Y','0000-00-00 00:00:00'),(177073,10,'X08.00XD ','Exposure to bed fire due to unspecified burning material, subsequent encounter','Y','0000-00-00 00:00:00'),(177074,10,'X08.00XS ','Exposure to bed fire due to unspecified burning material, sequela','Y','0000-00-00 00:00:00'),(177075,10,'X08.01XA ','Exposure to bed fire due to burning cigarette, initial encounter','Y','0000-00-00 00:00:00'),(177076,10,'X08.01XD ','Exposure to bed fire due to burning cigarette, subsequent encounter','Y','0000-00-00 00:00:00'),(177077,10,'X08.01XS ','Exposure to bed fire due to burning cigarette, sequela','Y','0000-00-00 00:00:00'),(177078,10,'X08.09XA ','Exposure to bed fire due to other burning material, initial encounter','Y','0000-00-00 00:00:00'),(177079,10,'X08.09XD ','Exposure to bed fire due to other burning material, subsequent encounter','Y','0000-00-00 00:00:00'),(177080,10,'X08.09XS ','Exposure to bed fire due to other burning material, sequela','Y','0000-00-00 00:00:00'),(177081,10,'X08.10XA ','Exposure to sofa fire due to unspecified burning material, initial encounter','Y','0000-00-00 00:00:00'),(177082,10,'X08.10XD ','Exposure to sofa fire due to unspecified burning material, subsequent encounter','Y','0000-00-00 00:00:00'),(177083,10,'X08.10XS ','Exposure to sofa fire due to unspecified burning material, sequela','Y','0000-00-00 00:00:00'),(177084,10,'X08.11XA ','Exposure to sofa fire due to burning cigarette, initial encounter','Y','0000-00-00 00:00:00'),(177085,10,'X08.11XD ','Exposure to sofa fire due to burning cigarette, subsequent encounter','Y','0000-00-00 00:00:00'),(177086,10,'X08.11XS ','Exposure to sofa fire due to burning cigarette, sequela','Y','0000-00-00 00:00:00'),(177087,10,'X08.19XA ','Exposure to sofa fire due to other burning material, initial encounter','Y','0000-00-00 00:00:00'),(177088,10,'X08.19XD ','Exposure to sofa fire due to other burning material, subsequent encounter','Y','0000-00-00 00:00:00'),(177089,10,'X08.19XS ','Exposure to sofa fire due to other burning material, sequela','Y','0000-00-00 00:00:00'),(177090,10,'X08.20XA ','Exposure to other furniture fire due to unspecified burning material, initial encounter','Y','0000-00-00 00:00:00'),(177091,10,'X08.20XD ','Exposure to other furniture fire due to unspecified burning material, subsequent encounter','Y','0000-00-00 00:00:00'),(177092,10,'X08.20XS ','Exposure to other furniture fire due to unspecified burning material, sequela','Y','0000-00-00 00:00:00'),(177093,10,'X08.21XA ','Exposure to other furniture fire due to burning cigarette, initial encounter','Y','0000-00-00 00:00:00'),(177094,10,'X08.21XD ','Exposure to other furniture fire due to burning cigarette, subsequent encounter','Y','0000-00-00 00:00:00'),(177095,10,'X08.21XS ','Exposure to other furniture fire due to burning cigarette, sequela','Y','0000-00-00 00:00:00'),(177096,10,'X08.29XA ','Exposure to other furniture fire due to other burning material, initial encounter','Y','0000-00-00 00:00:00'),(177097,10,'X08.29XD ','Exposure to other furniture fire due to other burning material, subsequent encounter','Y','0000-00-00 00:00:00'),(177098,10,'X08.29XS ','Exposure to other furniture fire due to other burning material, sequela','Y','0000-00-00 00:00:00'),(177099,10,'X08.8XXA ','Exposure to other specified smoke, fire and flames, initial encounter','Y','0000-00-00 00:00:00'),(177100,10,'X08.8XXD ','Exposure to other specified smoke, fire and flames, subsequent encounter','Y','0000-00-00 00:00:00'),(177101,10,'X08.8XXS ','Exposure to other specified smoke, fire and flames, sequela','Y','0000-00-00 00:00:00'),(177102,10,'X10.0XXA ','Contact with hot drinks, initial encounter','Y','0000-00-00 00:00:00'),(177103,10,'X10.0XXD ','Contact with hot drinks, subsequent encounter','Y','0000-00-00 00:00:00'),(177104,10,'X10.0XXS ','Contact with hot drinks, sequela','Y','0000-00-00 00:00:00'),(177105,10,'X10.1XXA ','Contact with hot food, initial encounter','Y','0000-00-00 00:00:00'),(177106,10,'X10.1XXD ','Contact with hot food, subsequent encounter','Y','0000-00-00 00:00:00'),(177107,10,'X10.1XXS ','Contact with hot food, sequela','Y','0000-00-00 00:00:00'),(177108,10,'X10.2XXA ','Contact with fats and cooking oils, initial encounter','Y','0000-00-00 00:00:00'),(177109,10,'X10.2XXD ','Contact with fats and cooking oils, subsequent encounter','Y','0000-00-00 00:00:00'),(177110,10,'X10.2XXS ','Contact with fats and cooking oils, sequela','Y','0000-00-00 00:00:00'),(177111,10,'X11.0XXA ','Contact with hot water in bath or tub, initial encounter','Y','0000-00-00 00:00:00'),(177112,10,'X11.0XXD ','Contact with hot water in bath or tub, subsequent encounter','Y','0000-00-00 00:00:00'),(177113,10,'X11.0XXS ','Contact with hot water in bath or tub, sequela','Y','0000-00-00 00:00:00'),(177114,10,'X11.1XXA ','Contact with running hot water, initial encounter','Y','0000-00-00 00:00:00'),(177115,10,'X11.1XXD ','Contact with running hot water, subsequent encounter','Y','0000-00-00 00:00:00'),(177116,10,'X11.1XXS ','Contact with running hot water, sequela','Y','0000-00-00 00:00:00'),(177117,10,'X11.8XXA ','Contact with other hot tap-water, initial encounter','Y','0000-00-00 00:00:00'),(177118,10,'X11.8XXD ','Contact with other hot tap-water, subsequent encounter','Y','0000-00-00 00:00:00'),(177119,10,'X11.8XXS ','Contact with other hot tap-water, sequela','Y','0000-00-00 00:00:00'),(177120,10,'X12.XXXA ','Contact with other hot fluids, initial encounter','Y','0000-00-00 00:00:00'),(177121,10,'X12.XXXD ','Contact with other hot fluids, subsequent encounter','Y','0000-00-00 00:00:00'),(177122,10,'X12.XXXS ','Contact with other hot fluids, sequela','Y','0000-00-00 00:00:00'),(177123,10,'X13.0XXA ','Inhalation of steam and other hot vapors, initial encounter','Y','0000-00-00 00:00:00'),(177124,10,'X13.0XXD ','Inhalation of steam and other hot vapors, subsequent encounter','Y','0000-00-00 00:00:00'),(177125,10,'X13.0XXS ','Inhalation of steam and other hot vapors, sequela','Y','0000-00-00 00:00:00'),(177126,10,'X13.1XXA ','Other contact with steam and other hot vapors, initial encounter','Y','0000-00-00 00:00:00'),(177127,10,'X13.1XXD ','Other contact with steam and other hot vapors, subsequent encounter','Y','0000-00-00 00:00:00'),(177128,10,'X13.1XXS ','Other contact with steam and other hot vapors, sequela','Y','0000-00-00 00:00:00'),(177129,10,'X14.0XXA ','Inhalation of hot air and gases, initial encounter','Y','0000-00-00 00:00:00'),(177130,10,'X14.0XXD ','Inhalation of hot air and gases, subsequent encounter','Y','0000-00-00 00:00:00'),(177131,10,'X14.0XXS ','Inhalation of hot air and gases, sequela','Y','0000-00-00 00:00:00'),(177132,10,'X14.1XXA ','Other contact with hot air and other hot gases, initial encounter','Y','0000-00-00 00:00:00'),(177133,10,'X14.1XXD ','Other contact with hot air and other hot gases, subsequent encounter','Y','0000-00-00 00:00:00'),(177134,10,'X14.1XXS ','Other contact with hot air and other hot gases, sequela','Y','0000-00-00 00:00:00'),(177135,10,'X15.0XXA ','Contact with hot stove (kitchen), initial encounter','Y','0000-00-00 00:00:00'),(177136,10,'X15.0XXD ','Contact with hot stove (kitchen), subsequent encounter','Y','0000-00-00 00:00:00'),(177137,10,'X15.0XXS ','Contact with hot stove (kitchen), sequela','Y','0000-00-00 00:00:00'),(177138,10,'X15.1XXA ','Contact with hot toaster, initial encounter','Y','0000-00-00 00:00:00'),(177139,10,'X15.1XXD ','Contact with hot toaster, subsequent encounter','Y','0000-00-00 00:00:00'),(177140,10,'X15.1XXS ','Contact with hot toaster, sequela','Y','0000-00-00 00:00:00'),(177141,10,'X15.2XXA ','Contact with hotplate, initial encounter','Y','0000-00-00 00:00:00'),(177142,10,'X15.2XXD ','Contact with hotplate, subsequent encounter','Y','0000-00-00 00:00:00'),(177143,10,'X15.2XXS ','Contact with hotplate, sequela','Y','0000-00-00 00:00:00'),(177144,10,'X15.3XXA ','Contact with hot saucepan or skillet, initial encounter','Y','0000-00-00 00:00:00'),(177145,10,'X15.3XXD ','Contact with hot saucepan or skillet, subsequent encounter','Y','0000-00-00 00:00:00'),(177146,10,'X15.3XXS ','Contact with hot saucepan or skillet, sequela','Y','0000-00-00 00:00:00'),(177147,10,'X15.8XXA ','Contact with other hot household appliances, initial encounter','Y','0000-00-00 00:00:00'),(177148,10,'X15.8XXD ','Contact with other hot household appliances, subsequent encounter','Y','0000-00-00 00:00:00'),(177149,10,'X15.8XXS ','Contact with other hot household appliances, sequela','Y','0000-00-00 00:00:00'),(177150,10,'X16.XXXA ','Contact with hot heating appliances, radiators and pipes, initial encounter','Y','0000-00-00 00:00:00'),(177151,10,'X16.XXXD ','Contact with hot heating appliances, radiators and pipes, subsequent encounter','Y','0000-00-00 00:00:00'),(177152,10,'X16.XXXS ','Contact with hot heating appliances, radiators and pipes, sequela','Y','0000-00-00 00:00:00'),(177153,10,'X17.XXXA ','Contact with hot engines, machinery and tools, initial encounter','Y','0000-00-00 00:00:00'),(177154,10,'X17.XXXD ','Contact with hot engines, machinery and tools, subsequent encounter','Y','0000-00-00 00:00:00'),(177155,10,'X17.XXXS ','Contact with hot engines, machinery and tools, sequela','Y','0000-00-00 00:00:00'),(177156,10,'X18.XXXA ','Contact with other hot metals, initial encounter','Y','0000-00-00 00:00:00'),(177157,10,'X18.XXXD ','Contact with other hot metals, subsequent encounter','Y','0000-00-00 00:00:00'),(177158,10,'X18.XXXS ','Contact with other hot metals, sequela','Y','0000-00-00 00:00:00'),(177159,10,'X19.XXXA ','Contact with other heat and hot substances, initial encounter','Y','0000-00-00 00:00:00'),(177160,10,'X19.XXXD ','Contact with other heat and hot substances, subsequent encounter','Y','0000-00-00 00:00:00'),(177161,10,'X19.XXXS ','Contact with other heat and hot substances, sequela','Y','0000-00-00 00:00:00'),(177162,10,'X30.XXXA ','Exposure to excessive natural heat, initial encounter','Y','0000-00-00 00:00:00'),(177163,10,'X30.XXXD ','Exposure to excessive natural heat, subsequent encounter','Y','0000-00-00 00:00:00'),(177164,10,'X30.XXXS ','Exposure to excessive natural heat, sequela','Y','0000-00-00 00:00:00'),(177165,10,'X31.XXXA ','Exposure to excessive natural cold, initial encounter','Y','0000-00-00 00:00:00'),(177166,10,'X31.XXXD ','Exposure to excessive natural cold, subsequent encounter','Y','0000-00-00 00:00:00'),(177167,10,'X31.XXXS ','Exposure to excessive natural cold, sequela','Y','0000-00-00 00:00:00'),(177168,10,'X32.XXXA ','Exposure to sunlight, initial encounter','Y','0000-00-00 00:00:00'),(177169,10,'X32.XXXD ','Exposure to sunlight, subsequent encounter','Y','0000-00-00 00:00:00'),(177170,10,'X32.XXXS ','Exposure to sunlight, sequela','Y','0000-00-00 00:00:00'),(177171,10,'X34.XXXA ','Earthquake, initial encounter','Y','0000-00-00 00:00:00'),(177172,10,'X34.XXXD ','Earthquake, subsequent encounter','Y','0000-00-00 00:00:00'),(177173,10,'X34.XXXS ','Earthquake, sequela','Y','0000-00-00 00:00:00'),(177174,10,'X35.XXXA ','Volcanic eruption, initial encounter','Y','0000-00-00 00:00:00'),(177175,10,'X35.XXXD ','Volcanic eruption, subsequent encounter','Y','0000-00-00 00:00:00'),(177176,10,'X35.XXXS ','Volcanic eruption, sequela','Y','0000-00-00 00:00:00'),(177177,10,'X36.0XXA ','Collapse of dam or man-made structure causing earth movement, initial encounter','Y','0000-00-00 00:00:00'),(177178,10,'X36.0XXD ','Collapse of dam or man-made structure causing earth movement, subsequent encounter','Y','0000-00-00 00:00:00'),(177179,10,'X36.0XXS ','Collapse of dam or man-made structure causing earth movement, sequela','Y','0000-00-00 00:00:00'),(177180,10,'X36.1XXA ','Avalanche, landslide, or mudslide, initial encounter','Y','0000-00-00 00:00:00'),(177181,10,'X36.1XXD ','Avalanche, landslide, or mudslide, subsequent encounter','Y','0000-00-00 00:00:00'),(177182,10,'X36.1XXS ','Avalanche, landslide, or mudslide, sequela','Y','0000-00-00 00:00:00'),(177183,10,'X37.0XXA ','Hurricane, initial encounter','Y','0000-00-00 00:00:00'),(177184,10,'X37.0XXD ','Hurricane, subsequent encounter','Y','0000-00-00 00:00:00'),(177185,10,'X37.0XXS ','Hurricane, sequela','Y','0000-00-00 00:00:00'),(177186,10,'X37.1XXA ','Tornado, initial encounter','Y','0000-00-00 00:00:00'),(177187,10,'X37.1XXD ','Tornado, subsequent encounter','Y','0000-00-00 00:00:00'),(177188,10,'X37.1XXS ','Tornado, sequela','Y','0000-00-00 00:00:00'),(177189,10,'X37.2XXA ','Blizzard (snow)(ice), initial encounter','Y','0000-00-00 00:00:00'),(177190,10,'X37.2XXD ','Blizzard (snow)(ice), subsequent encounter','Y','0000-00-00 00:00:00'),(177191,10,'X37.2XXS ','Blizzard (snow)(ice), sequela','Y','0000-00-00 00:00:00'),(177192,10,'X37.3XXA ','Dust storm, initial encounter','Y','0000-00-00 00:00:00'),(177193,10,'X37.3XXD ','Dust storm, subsequent encounter','Y','0000-00-00 00:00:00'),(177194,10,'X37.3XXS ','Dust storm, sequela','Y','0000-00-00 00:00:00'),(177195,10,'X37.41XA ','Tidal wave due to earthquake or volcanic eruption, initial encounter','Y','0000-00-00 00:00:00'),(177196,10,'X37.41XD ','Tidal wave due to earthquake or volcanic eruption, subsequent encounter','Y','0000-00-00 00:00:00'),(177197,10,'X37.41XS ','Tidal wave due to earthquake or volcanic eruption, sequela','Y','0000-00-00 00:00:00'),(177198,10,'X37.42XA ','Tidal wave due to storm, initial encounter','Y','0000-00-00 00:00:00'),(177199,10,'X37.42XD ','Tidal wave due to storm, subsequent encounter','Y','0000-00-00 00:00:00'),(177200,10,'X37.42XS ','Tidal wave due to storm, sequela','Y','0000-00-00 00:00:00'),(177201,10,'X37.43XA ','Tidal wave due to landslide, initial encounter','Y','0000-00-00 00:00:00'),(177202,10,'X37.43XD ','Tidal wave due to landslide, subsequent encounter','Y','0000-00-00 00:00:00'),(177203,10,'X37.43XS ','Tidal wave due to landslide, sequela','Y','0000-00-00 00:00:00'),(177204,10,'X37.8XXA ','Other cataclysmic storms, initial encounter','Y','0000-00-00 00:00:00'),(177205,10,'X37.8XXD ','Other cataclysmic storms, subsequent encounter','Y','0000-00-00 00:00:00'),(177206,10,'X37.8XXS ','Other cataclysmic storms, sequela','Y','0000-00-00 00:00:00'),(177207,10,'X37.9XXA ','Unspecified cataclysmic storm, initial encounter','Y','0000-00-00 00:00:00'),(177208,10,'X37.9XXD ','Unspecified cataclysmic storm, subsequent encounter','Y','0000-00-00 00:00:00'),(177209,10,'X37.9XXS ','Unspecified cataclysmic storm, sequela','Y','0000-00-00 00:00:00'),(177210,10,'X38.XXXA ','Flood, initial encounter','Y','0000-00-00 00:00:00'),(177211,10,'X38.XXXD ','Flood, subsequent encounter','Y','0000-00-00 00:00:00'),(177212,10,'X38.XXXS ','Flood, sequela','Y','0000-00-00 00:00:00'),(177213,10,'X39.01XA ','Exposure to radon, initial encounter','Y','0000-00-00 00:00:00'),(177214,10,'X39.01XD ','Exposure to radon, subsequent encounter','Y','0000-00-00 00:00:00'),(177215,10,'X39.01XS ','Exposure to radon, sequela','Y','0000-00-00 00:00:00'),(177216,10,'X39.08XA ','Exposure to other natural radiation, initial encounter','Y','0000-00-00 00:00:00'),(177217,10,'X39.08XD ','Exposure to other natural radiation, subsequent encounter','Y','0000-00-00 00:00:00'),(177218,10,'X39.08XS ','Exposure to other natural radiation, sequela','Y','0000-00-00 00:00:00'),(177219,10,'X39.8XXA ','Other exposure to forces of nature, initial encounter','Y','0000-00-00 00:00:00'),(177220,10,'X39.8XXD ','Other exposure to forces of nature, subsequent encounter','Y','0000-00-00 00:00:00'),(177221,10,'X39.8XXS ','Other exposure to forces of nature, sequela','Y','0000-00-00 00:00:00'),(177222,10,'X50.0XXA ','Overexertion from strenuous movement or load, initial encounter','Y','0000-00-00 00:00:00'),(177223,10,'X50.0XXD ','Overexertion from strenuous movement or load, subsequent encounter','Y','0000-00-00 00:00:00'),(177224,10,'X50.0XXS ','Overexertion from strenuous movement or load, sequela','Y','0000-00-00 00:00:00'),(177225,10,'X50.1XXA ','Overexertion from prolonged static or awkward postures, initial encounter','Y','0000-00-00 00:00:00'),(177226,10,'X50.1XXD ','Overexertion from prolonged static or awkward postures, subsequent encounter','Y','0000-00-00 00:00:00'),(177227,10,'X50.1XXS ','Overexertion from prolonged static or awkward postures, sequela','Y','0000-00-00 00:00:00'),(177228,10,'X50.3XXA ','Overexertion from repetitive movements, initial encounter','Y','0000-00-00 00:00:00'),(177229,10,'X50.3XXD ','Overexertion from repetitive movements, subsequent encounter','Y','0000-00-00 00:00:00'),(177230,10,'X50.3XXS ','Overexertion from repetitive movements, sequela','Y','0000-00-00 00:00:00'),(177231,10,'X50.9XXA ','Other and unspecified overexertion or strenuous movements or postures, initial encounter','Y','0000-00-00 00:00:00'),(177232,10,'X50.9XXD ','Other and unspecified overexertion or strenuous movements or postures, subsequent encounter','Y','0000-00-00 00:00:00'),(177233,10,'X50.9XXS ','Other and unspecified overexertion or strenuous movements or postures, sequela','Y','0000-00-00 00:00:00'),(177234,10,'X52.XXXA ','Prolonged stay in weightless environment, initial encounter','Y','0000-00-00 00:00:00'),(177235,10,'X52.XXXD ','Prolonged stay in weightless environment, subsequent encounter','Y','0000-00-00 00:00:00'),(177236,10,'X52.XXXS ','Prolonged stay in weightless environment, sequela','Y','0000-00-00 00:00:00'),(177237,10,'X58.XXXA ','Exposure to other specified factors, initial encounter','Y','0000-00-00 00:00:00'),(177238,10,'X58.XXXD ','Exposure to other specified factors, subsequent encounter','Y','0000-00-00 00:00:00'),(177239,10,'X58.XXXS ','Exposure to other specified factors, sequela','Y','0000-00-00 00:00:00'),(177240,10,'X71.0XXA ','Intentional self-harm by drowning and submersion while in bathtub, initial encounter','Y','0000-00-00 00:00:00'),(177241,10,'X71.0XXD ','Intentional self-harm by drowning and submersion while in bathtub, subsequent encounter','Y','0000-00-00 00:00:00'),(177242,10,'X71.0XXS ','Intentional self-harm by drowning and submersion while in bathtub, sequela','Y','0000-00-00 00:00:00'),(177243,10,'X71.1XXA ','Intentional self-harm by drowning and submersion while in swimming pool, initial encounter','Y','0000-00-00 00:00:00'),(177244,10,'X71.1XXD ','Intentional self-harm by drowning and submersion while in swimming pool, subsequent encounter','Y','0000-00-00 00:00:00'),(177245,10,'X71.1XXS ','Intentional self-harm by drowning and submersion while in swimming pool, sequela','Y','0000-00-00 00:00:00'),(177246,10,'X71.2XXA ','Intentional self-harm by drowning and submersion after jump into swimming pool, initial encounter','Y','0000-00-00 00:00:00'),(177247,10,'X71.2XXD ','Intentional self-harm by drowning and submersion after jump into swimming pool, subsequent encounter','Y','0000-00-00 00:00:00'),(177248,10,'X71.2XXS ','Intentional self-harm by drowning and submersion after jump into swimming pool, sequela','Y','0000-00-00 00:00:00'),(177249,10,'X71.3XXA ','Intentional self-harm by drowning and submersion in natural water, initial encounter','Y','0000-00-00 00:00:00'),(177250,10,'X71.3XXD ','Intentional self-harm by drowning and submersion in natural water, subsequent encounter','Y','0000-00-00 00:00:00'),(177251,10,'X71.3XXS ','Intentional self-harm by drowning and submersion in natural water, sequela','Y','0000-00-00 00:00:00'),(177252,10,'X71.8XXA ','Other intentional self-harm by drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(177253,10,'X71.8XXD ','Other intentional self-harm by drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(177254,10,'X71.8XXS ','Other intentional self-harm by drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(177255,10,'X71.9XXA ','Intentional self-harm by drowning and submersion, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(177256,10,'X71.9XXD ','Intentional self-harm by drowning and submersion, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(177257,10,'X71.9XXS ','Intentional self-harm by drowning and submersion, unspecified, sequela','Y','0000-00-00 00:00:00'),(177258,10,'X72.XXXA ','Intentional self-harm by handgun discharge, initial encounter','Y','0000-00-00 00:00:00'),(177259,10,'X72.XXXD ','Intentional self-harm by handgun discharge, subsequent encounter','Y','0000-00-00 00:00:00'),(177260,10,'X72.XXXS ','Intentional self-harm by handgun discharge, sequela','Y','0000-00-00 00:00:00'),(177261,10,'X73.0XXA ','Intentional self-harm by shotgun discharge, initial encounter','Y','0000-00-00 00:00:00'),(177262,10,'X73.0XXD ','Intentional self-harm by shotgun discharge, subsequent encounter','Y','0000-00-00 00:00:00'),(177263,10,'X73.0XXS ','Intentional self-harm by shotgun discharge, sequela','Y','0000-00-00 00:00:00'),(177264,10,'X73.1XXA ','Intentional self-harm by hunting rifle discharge, initial encounter','Y','0000-00-00 00:00:00'),(177265,10,'X73.1XXD ','Intentional self-harm by hunting rifle discharge, subsequent encounter','Y','0000-00-00 00:00:00'),(177266,10,'X73.1XXS ','Intentional self-harm by hunting rifle discharge, sequela','Y','0000-00-00 00:00:00'),(177267,10,'X73.2XXA ','Intentional self-harm by machine gun discharge, initial encounter','Y','0000-00-00 00:00:00'),(177268,10,'X73.2XXD ','Intentional self-harm by machine gun discharge, subsequent encounter','Y','0000-00-00 00:00:00'),(177269,10,'X73.2XXS ','Intentional self-harm by machine gun discharge, sequela','Y','0000-00-00 00:00:00'),(177270,10,'X73.8XXA ','Intentional self-harm by other larger firearm discharge, initial encounter','Y','0000-00-00 00:00:00'),(177271,10,'X73.8XXD ','Intentional self-harm by other larger firearm discharge, subsequent encounter','Y','0000-00-00 00:00:00'),(177272,10,'X73.8XXS ','Intentional self-harm by other larger firearm discharge, sequela','Y','0000-00-00 00:00:00'),(177273,10,'X73.9XXA ','Intentional self-harm by unspecified larger firearm discharge, initial encounter','Y','0000-00-00 00:00:00'),(177274,10,'X73.9XXD ','Intentional self-harm by unspecified larger firearm discharge, subsequent encounter','Y','0000-00-00 00:00:00'),(177275,10,'X73.9XXS ','Intentional self-harm by unspecified larger firearm discharge, sequela','Y','0000-00-00 00:00:00'),(177276,10,'X74.01XA ','Intentional self-harm by airgun, initial encounter','Y','0000-00-00 00:00:00'),(177277,10,'X74.01XD ','Intentional self-harm by airgun, subsequent encounter','Y','0000-00-00 00:00:00'),(177278,10,'X74.01XS ','Intentional self-harm by airgun, sequela','Y','0000-00-00 00:00:00'),(177279,10,'X74.02XA ','Intentional self-harm by paintball gun, initial encounter','Y','0000-00-00 00:00:00'),(177280,10,'X74.02XD ','Intentional self-harm by paintball gun, subsequent encounter','Y','0000-00-00 00:00:00'),(177281,10,'X74.02XS ','Intentional self-harm by paintball gun, sequela','Y','0000-00-00 00:00:00'),(177282,10,'X74.09XA ','Intentional self-harm by other gas, air or spring-operated gun, initial encounter','Y','0000-00-00 00:00:00'),(177283,10,'X74.09XD ','Intentional self-harm by other gas, air or spring-operated gun, subsequent encounter','Y','0000-00-00 00:00:00'),(177284,10,'X74.09XS ','Intentional self-harm by other gas, air or spring-operated gun, sequela','Y','0000-00-00 00:00:00'),(177285,10,'X74.8XXA ','Intentional self-harm by other firearm discharge, initial encounter','Y','0000-00-00 00:00:00'),(177286,10,'X74.8XXD ','Intentional self-harm by other firearm discharge, subsequent encounter','Y','0000-00-00 00:00:00'),(177287,10,'X74.8XXS ','Intentional self-harm by other firearm discharge, sequela','Y','0000-00-00 00:00:00'),(177288,10,'X74.9XXA ','Intentional self-harm by unspecified firearm discharge, initial encounter','Y','0000-00-00 00:00:00'),(177289,10,'X74.9XXD ','Intentional self-harm by unspecified firearm discharge, subsequent encounter','Y','0000-00-00 00:00:00'),(177290,10,'X74.9XXS ','Intentional self-harm by unspecified firearm discharge, sequela','Y','0000-00-00 00:00:00'),(177291,10,'X75.XXXA ','Intentional self-harm by explosive material, initial encounter','Y','0000-00-00 00:00:00'),(177292,10,'X75.XXXD ','Intentional self-harm by explosive material, subsequent encounter','Y','0000-00-00 00:00:00'),(177293,10,'X75.XXXS ','Intentional self-harm by explosive material, sequela','Y','0000-00-00 00:00:00'),(177294,10,'X76.XXXA ','Intentional self-harm by smoke, fire and flames, initial encounter','Y','0000-00-00 00:00:00'),(177295,10,'X76.XXXD ','Intentional self-harm by smoke, fire and flames, subsequent encounter','Y','0000-00-00 00:00:00'),(177296,10,'X76.XXXS ','Intentional self-harm by smoke, fire and flames, sequela','Y','0000-00-00 00:00:00'),(177297,10,'X77.0XXA ','Intentional self-harm by steam or hot vapors, initial encounter','Y','0000-00-00 00:00:00'),(177298,10,'X77.0XXD ','Intentional self-harm by steam or hot vapors, subsequent encounter','Y','0000-00-00 00:00:00'),(177299,10,'X77.0XXS ','Intentional self-harm by steam or hot vapors, sequela','Y','0000-00-00 00:00:00'),(177300,10,'X77.1XXA ','Intentional self-harm by hot tap water, initial encounter','Y','0000-00-00 00:00:00'),(177301,10,'X77.1XXD ','Intentional self-harm by hot tap water, subsequent encounter','Y','0000-00-00 00:00:00'),(177302,10,'X77.1XXS ','Intentional self-harm by hot tap water, sequela','Y','0000-00-00 00:00:00'),(177303,10,'X77.2XXA ','Intentional self-harm by other hot fluids, initial encounter','Y','0000-00-00 00:00:00'),(177304,10,'X77.2XXD ','Intentional self-harm by other hot fluids, subsequent encounter','Y','0000-00-00 00:00:00'),(177305,10,'X77.2XXS ','Intentional self-harm by other hot fluids, sequela','Y','0000-00-00 00:00:00'),(177306,10,'X77.3XXA ','Intentional self-harm by hot household appliances, initial encounter','Y','0000-00-00 00:00:00'),(177307,10,'X77.3XXD ','Intentional self-harm by hot household appliances, subsequent encounter','Y','0000-00-00 00:00:00'),(177308,10,'X77.3XXS ','Intentional self-harm by hot household appliances, sequela','Y','0000-00-00 00:00:00'),(177309,10,'X77.8XXA ','Intentional self-harm by other hot objects, initial encounter','Y','0000-00-00 00:00:00'),(177310,10,'X77.8XXD ','Intentional self-harm by other hot objects, subsequent encounter','Y','0000-00-00 00:00:00'),(177311,10,'X77.8XXS ','Intentional self-harm by other hot objects, sequela','Y','0000-00-00 00:00:00'),(177312,10,'X77.9XXA ','Intentional self-harm by unspecified hot objects, initial encounter','Y','0000-00-00 00:00:00'),(177313,10,'X77.9XXD ','Intentional self-harm by unspecified hot objects, subsequent encounter','Y','0000-00-00 00:00:00'),(177314,10,'X77.9XXS ','Intentional self-harm by unspecified hot objects, sequela','Y','0000-00-00 00:00:00'),(177315,10,'X78.0XXA ','Intentional self-harm by sharp glass, initial encounter','Y','0000-00-00 00:00:00'),(177316,10,'X78.0XXD ','Intentional self-harm by sharp glass, subsequent encounter','Y','0000-00-00 00:00:00'),(177317,10,'X78.0XXS ','Intentional self-harm by sharp glass, sequela','Y','0000-00-00 00:00:00'),(177318,10,'X78.1XXA ','Intentional self-harm by knife, initial encounter','Y','0000-00-00 00:00:00'),(177319,10,'X78.1XXD ','Intentional self-harm by knife, subsequent encounter','Y','0000-00-00 00:00:00'),(177320,10,'X78.1XXS ','Intentional self-harm by knife, sequela','Y','0000-00-00 00:00:00'),(177321,10,'X78.2XXA ','Intentional self-harm by sword or dagger, initial encounter','Y','0000-00-00 00:00:00'),(177322,10,'X78.2XXD ','Intentional self-harm by sword or dagger, subsequent encounter','Y','0000-00-00 00:00:00'),(177323,10,'X78.2XXS ','Intentional self-harm by sword or dagger, sequela','Y','0000-00-00 00:00:00'),(177324,10,'X78.8XXA ','Intentional self-harm by other sharp object, initial encounter','Y','0000-00-00 00:00:00'),(177325,10,'X78.8XXD ','Intentional self-harm by other sharp object, subsequent encounter','Y','0000-00-00 00:00:00'),(177326,10,'X78.8XXS ','Intentional self-harm by other sharp object, sequela','Y','0000-00-00 00:00:00'),(177327,10,'X78.9XXA ','Intentional self-harm by unspecified sharp object, initial encounter','Y','0000-00-00 00:00:00'),(177328,10,'X78.9XXD ','Intentional self-harm by unspecified sharp object, subsequent encounter','Y','0000-00-00 00:00:00'),(177329,10,'X78.9XXS ','Intentional self-harm by unspecified sharp object, sequela','Y','0000-00-00 00:00:00'),(177330,10,'X79.XXXA ','Intentional self-harm by blunt object, initial encounter','Y','0000-00-00 00:00:00'),(177331,10,'X79.XXXD ','Intentional self-harm by blunt object, subsequent encounter','Y','0000-00-00 00:00:00'),(177332,10,'X79.XXXS ','Intentional self-harm by blunt object, sequela','Y','0000-00-00 00:00:00'),(177333,10,'X80.XXXA ','Intentional self-harm by jumping from a high place, initial encounter','Y','0000-00-00 00:00:00'),(177334,10,'X80.XXXD ','Intentional self-harm by jumping from a high place, subsequent encounter','Y','0000-00-00 00:00:00'),(177335,10,'X80.XXXS ','Intentional self-harm by jumping from a high place, sequela','Y','0000-00-00 00:00:00'),(177336,10,'X81.0XXA ','Intentional self-harm by jumping or lying in front of motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(177337,10,'X81.0XXD ','Intentional self-harm by jumping or lying in front of motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(177338,10,'X81.0XXS ','Intentional self-harm by jumping or lying in front of motor vehicle, sequela','Y','0000-00-00 00:00:00'),(177339,10,'X81.1XXA ','Intentional self-harm by jumping or lying in front of (subway) train, initial encounter','Y','0000-00-00 00:00:00'),(177340,10,'X81.1XXD ','Intentional self-harm by jumping or lying in front of (subway) train, subsequent encounter','Y','0000-00-00 00:00:00'),(177341,10,'X81.1XXS ','Intentional self-harm by jumping or lying in front of (subway) train, sequela','Y','0000-00-00 00:00:00'),(177342,10,'X81.8XXA ','Intentional self-harm by jumping or lying in front of other moving object, initial encounter','Y','0000-00-00 00:00:00'),(177343,10,'X81.8XXD ','Intentional self-harm by jumping or lying in front of other moving object, subsequent encounter','Y','0000-00-00 00:00:00'),(177344,10,'X81.8XXS ','Intentional self-harm by jumping or lying in front of other moving object, sequela','Y','0000-00-00 00:00:00'),(177345,10,'X82.0XXA ','Intentional collision of motor vehicle with other motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(177346,10,'X82.0XXD ','Intentional collision of motor vehicle with other motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(177347,10,'X82.0XXS ','Intentional collision of motor vehicle with other motor vehicle, sequela','Y','0000-00-00 00:00:00'),(177348,10,'X82.1XXA ','Intentional collision of motor vehicle with train, initial encounter','Y','0000-00-00 00:00:00'),(177349,10,'X82.1XXD ','Intentional collision of motor vehicle with train, subsequent encounter','Y','0000-00-00 00:00:00'),(177350,10,'X82.1XXS ','Intentional collision of motor vehicle with train, sequela','Y','0000-00-00 00:00:00'),(177351,10,'X82.2XXA ','Intentional collision of motor vehicle with tree, initial encounter','Y','0000-00-00 00:00:00'),(177352,10,'X82.2XXD ','Intentional collision of motor vehicle with tree, subsequent encounter','Y','0000-00-00 00:00:00'),(177353,10,'X82.2XXS ','Intentional collision of motor vehicle with tree, sequela','Y','0000-00-00 00:00:00'),(177354,10,'X82.8XXA ','Other intentional self-harm by crashing of motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(177355,10,'X82.8XXD ','Other intentional self-harm by crashing of motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(177356,10,'X82.8XXS ','Other intentional self-harm by crashing of motor vehicle, sequela','Y','0000-00-00 00:00:00'),(177357,10,'X83.0XXA ','Intentional self-harm by crashing of aircraft, initial encounter','Y','0000-00-00 00:00:00'),(177358,10,'X83.0XXD ','Intentional self-harm by crashing of aircraft, subsequent encounter','Y','0000-00-00 00:00:00'),(177359,10,'X83.0XXS ','Intentional self-harm by crashing of aircraft, sequela','Y','0000-00-00 00:00:00'),(177360,10,'X83.1XXA ','Intentional self-harm by electrocution, initial encounter','Y','0000-00-00 00:00:00'),(177361,10,'X83.1XXD ','Intentional self-harm by electrocution, subsequent encounter','Y','0000-00-00 00:00:00'),(177362,10,'X83.1XXS ','Intentional self-harm by electrocution, sequela','Y','0000-00-00 00:00:00'),(177363,10,'X83.2XXA ','Intentional self-harm by exposure to extremes of cold, initial encounter','Y','0000-00-00 00:00:00'),(177364,10,'X83.2XXD ','Intentional self-harm by exposure to extremes of cold, subsequent encounter','Y','0000-00-00 00:00:00'),(177365,10,'X83.2XXS ','Intentional self-harm by exposure to extremes of cold, sequela','Y','0000-00-00 00:00:00'),(177366,10,'X83.8XXA ','Intentional self-harm by other specified means, initial encounter','Y','0000-00-00 00:00:00'),(177367,10,'X83.8XXD ','Intentional self-harm by other specified means, subsequent encounter','Y','0000-00-00 00:00:00'),(177368,10,'X83.8XXS ','Intentional self-harm by other specified means, sequela','Y','0000-00-00 00:00:00'),(177369,10,'X92.0XXA ','Assault by drowning and submersion while in bathtub, initial encounter','Y','0000-00-00 00:00:00'),(177370,10,'X92.0XXD ','Assault by drowning and submersion while in bathtub, subsequent encounter','Y','0000-00-00 00:00:00'),(177371,10,'X92.0XXS ','Assault by drowning and submersion while in bathtub, sequela','Y','0000-00-00 00:00:00'),(177372,10,'X92.1XXA ','Assault by drowning and submersion while in swimming pool, initial encounter','Y','0000-00-00 00:00:00'),(177373,10,'X92.1XXD ','Assault by drowning and submersion while in swimming pool, subsequent encounter','Y','0000-00-00 00:00:00'),(177374,10,'X92.1XXS ','Assault by drowning and submersion while in swimming pool, sequela','Y','0000-00-00 00:00:00'),(177375,10,'X92.2XXA ','Assault by drowning and submersion after push into swimming pool, initial encounter','Y','0000-00-00 00:00:00'),(177376,10,'X92.2XXD ','Assault by drowning and submersion after push into swimming pool, subsequent encounter','Y','0000-00-00 00:00:00'),(177377,10,'X92.2XXS ','Assault by drowning and submersion after push into swimming pool, sequela','Y','0000-00-00 00:00:00'),(177378,10,'X92.3XXA ','Assault by drowning and submersion in natural water, initial encounter','Y','0000-00-00 00:00:00'),(177379,10,'X92.3XXD ','Assault by drowning and submersion in natural water, subsequent encounter','Y','0000-00-00 00:00:00'),(177380,10,'X92.3XXS ','Assault by drowning and submersion in natural water, sequela','Y','0000-00-00 00:00:00'),(177381,10,'X92.8XXA ','Other assault by drowning and submersion, initial encounter','Y','0000-00-00 00:00:00'),(177382,10,'X92.8XXD ','Other assault by drowning and submersion, subsequent encounter','Y','0000-00-00 00:00:00'),(177383,10,'X92.8XXS ','Other assault by drowning and submersion, sequela','Y','0000-00-00 00:00:00'),(177384,10,'X92.9XXA ','Assault by drowning and submersion, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(177385,10,'X92.9XXD ','Assault by drowning and submersion, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(177386,10,'X92.9XXS ','Assault by drowning and submersion, unspecified, sequela','Y','0000-00-00 00:00:00'),(177387,10,'X93.XXXA ','Assault by handgun discharge, initial encounter','Y','0000-00-00 00:00:00'),(177388,10,'X93.XXXD ','Assault by handgun discharge, subsequent encounter','Y','0000-00-00 00:00:00'),(177389,10,'X93.XXXS ','Assault by handgun discharge, sequela','Y','0000-00-00 00:00:00'),(177390,10,'X94.0XXA ','Assault by shotgun, initial encounter','Y','0000-00-00 00:00:00'),(177391,10,'X94.0XXD ','Assault by shotgun, subsequent encounter','Y','0000-00-00 00:00:00'),(177392,10,'X94.0XXS ','Assault by shotgun, sequela','Y','0000-00-00 00:00:00'),(177393,10,'X94.1XXA ','Assault by hunting rifle, initial encounter','Y','0000-00-00 00:00:00'),(177394,10,'X94.1XXD ','Assault by hunting rifle, subsequent encounter','Y','0000-00-00 00:00:00'),(177395,10,'X94.1XXS ','Assault by hunting rifle, sequela','Y','0000-00-00 00:00:00'),(177396,10,'X94.2XXA ','Assault by machine gun, initial encounter','Y','0000-00-00 00:00:00'),(177397,10,'X94.2XXD ','Assault by machine gun, subsequent encounter','Y','0000-00-00 00:00:00'),(177398,10,'X94.2XXS ','Assault by machine gun, sequela','Y','0000-00-00 00:00:00'),(177399,10,'X94.8XXA ','Assault by other larger firearm discharge, initial encounter','Y','0000-00-00 00:00:00'),(177400,10,'X94.8XXD ','Assault by other larger firearm discharge, subsequent encounter','Y','0000-00-00 00:00:00'),(177401,10,'X94.8XXS ','Assault by other larger firearm discharge, sequela','Y','0000-00-00 00:00:00'),(177402,10,'X94.9XXA ','Assault by unspecified larger firearm discharge, initial encounter','Y','0000-00-00 00:00:00'),(177403,10,'X94.9XXD ','Assault by unspecified larger firearm discharge, subsequent encounter','Y','0000-00-00 00:00:00'),(177404,10,'X94.9XXS ','Assault by unspecified larger firearm discharge, sequela','Y','0000-00-00 00:00:00'),(177405,10,'X95.01XA ','Assault by airgun discharge, initial encounter','Y','0000-00-00 00:00:00'),(177406,10,'X95.01XD ','Assault by airgun discharge, subsequent encounter','Y','0000-00-00 00:00:00'),(177407,10,'X95.01XS ','Assault by airgun discharge, sequela','Y','0000-00-00 00:00:00'),(177408,10,'X95.02XA ','Assault by paintball gun discharge, initial encounter','Y','0000-00-00 00:00:00'),(177409,10,'X95.02XD ','Assault by paintball gun discharge, subsequent encounter','Y','0000-00-00 00:00:00'),(177410,10,'X95.02XS ','Assault by paintball gun discharge, sequela','Y','0000-00-00 00:00:00'),(177411,10,'X95.09XA ','Assault by other gas, air or spring-operated gun, initial encounter','Y','0000-00-00 00:00:00'),(177412,10,'X95.09XD ','Assault by other gas, air or spring-operated gun, subsequent encounter','Y','0000-00-00 00:00:00'),(177413,10,'X95.09XS ','Assault by other gas, air or spring-operated gun, sequela','Y','0000-00-00 00:00:00'),(177414,10,'X95.8XXA ','Assault by other firearm discharge, initial encounter','Y','0000-00-00 00:00:00'),(177415,10,'X95.8XXD ','Assault by other firearm discharge, subsequent encounter','Y','0000-00-00 00:00:00'),(177416,10,'X95.8XXS ','Assault by other firearm discharge, sequela','Y','0000-00-00 00:00:00'),(177417,10,'X95.9XXA ','Assault by unspecified firearm discharge, initial encounter','Y','0000-00-00 00:00:00'),(177418,10,'X95.9XXD ','Assault by unspecified firearm discharge, subsequent encounter','Y','0000-00-00 00:00:00'),(177419,10,'X95.9XXS ','Assault by unspecified firearm discharge, sequela','Y','0000-00-00 00:00:00'),(177420,10,'X96.0XXA ','Assault by antipersonnel bomb, initial encounter','Y','0000-00-00 00:00:00'),(177421,10,'X96.0XXD ','Assault by antipersonnel bomb, subsequent encounter','Y','0000-00-00 00:00:00'),(177422,10,'X96.0XXS ','Assault by antipersonnel bomb, sequela','Y','0000-00-00 00:00:00'),(177423,10,'X96.1XXA ','Assault by gasoline bomb, initial encounter','Y','0000-00-00 00:00:00'),(177424,10,'X96.1XXD ','Assault by gasoline bomb, subsequent encounter','Y','0000-00-00 00:00:00'),(177425,10,'X96.1XXS ','Assault by gasoline bomb, sequela','Y','0000-00-00 00:00:00'),(177426,10,'X96.2XXA ','Assault by letter bomb, initial encounter','Y','0000-00-00 00:00:00'),(177427,10,'X96.2XXD ','Assault by letter bomb, subsequent encounter','Y','0000-00-00 00:00:00'),(177428,10,'X96.2XXS ','Assault by letter bomb, sequela','Y','0000-00-00 00:00:00'),(177429,10,'X96.3XXA ','Assault by fertilizer bomb, initial encounter','Y','0000-00-00 00:00:00'),(177430,10,'X96.3XXD ','Assault by fertilizer bomb, subsequent encounter','Y','0000-00-00 00:00:00'),(177431,10,'X96.3XXS ','Assault by fertilizer bomb, sequela','Y','0000-00-00 00:00:00'),(177432,10,'X96.4XXA ','Assault by pipe bomb, initial encounter','Y','0000-00-00 00:00:00'),(177433,10,'X96.4XXD ','Assault by pipe bomb, subsequent encounter','Y','0000-00-00 00:00:00'),(177434,10,'X96.4XXS ','Assault by pipe bomb, sequela','Y','0000-00-00 00:00:00'),(177435,10,'X96.8XXA ','Assault by other specified explosive, initial encounter','Y','0000-00-00 00:00:00'),(177436,10,'X96.8XXD ','Assault by other specified explosive, subsequent encounter','Y','0000-00-00 00:00:00'),(177437,10,'X96.8XXS ','Assault by other specified explosive, sequela','Y','0000-00-00 00:00:00'),(177438,10,'X96.9XXA ','Assault by unspecified explosive, initial encounter','Y','0000-00-00 00:00:00'),(177439,10,'X96.9XXD ','Assault by unspecified explosive, subsequent encounter','Y','0000-00-00 00:00:00'),(177440,10,'X96.9XXS ','Assault by unspecified explosive, sequela','Y','0000-00-00 00:00:00'),(177441,10,'X97.XXXA ','Assault by smoke, fire and flames, initial encounter','Y','0000-00-00 00:00:00'),(177442,10,'X97.XXXD ','Assault by smoke, fire and flames, subsequent encounter','Y','0000-00-00 00:00:00'),(177443,10,'X97.XXXS ','Assault by smoke, fire and flames, sequela','Y','0000-00-00 00:00:00'),(177444,10,'X98.0XXA ','Assault by steam or hot vapors, initial encounter','Y','0000-00-00 00:00:00'),(177445,10,'X98.0XXD ','Assault by steam or hot vapors, subsequent encounter','Y','0000-00-00 00:00:00'),(177446,10,'X98.0XXS ','Assault by steam or hot vapors, sequela','Y','0000-00-00 00:00:00'),(177447,10,'X98.1XXA ','Assault by hot tap water, initial encounter','Y','0000-00-00 00:00:00'),(177448,10,'X98.1XXD ','Assault by hot tap water, subsequent encounter','Y','0000-00-00 00:00:00'),(177449,10,'X98.1XXS ','Assault by hot tap water, sequela','Y','0000-00-00 00:00:00'),(177450,10,'X98.2XXA ','Assault by hot fluids, initial encounter','Y','0000-00-00 00:00:00'),(177451,10,'X98.2XXD ','Assault by hot fluids, subsequent encounter','Y','0000-00-00 00:00:00'),(177452,10,'X98.2XXS ','Assault by hot fluids, sequela','Y','0000-00-00 00:00:00'),(177453,10,'X98.3XXA ','Assault by hot household appliances, initial encounter','Y','0000-00-00 00:00:00'),(177454,10,'X98.3XXD ','Assault by hot household appliances, subsequent encounter','Y','0000-00-00 00:00:00'),(177455,10,'X98.3XXS ','Assault by hot household appliances, sequela','Y','0000-00-00 00:00:00'),(177456,10,'X98.8XXA ','Assault by other hot objects, initial encounter','Y','0000-00-00 00:00:00'),(177457,10,'X98.8XXD ','Assault by other hot objects, subsequent encounter','Y','0000-00-00 00:00:00'),(177458,10,'X98.8XXS ','Assault by other hot objects, sequela','Y','0000-00-00 00:00:00'),(177459,10,'X98.9XXA ','Assault by unspecified hot objects, initial encounter','Y','0000-00-00 00:00:00'),(177460,10,'X98.9XXD ','Assault by unspecified hot objects, subsequent encounter','Y','0000-00-00 00:00:00'),(177461,10,'X98.9XXS ','Assault by unspecified hot objects, sequela','Y','0000-00-00 00:00:00'),(177462,10,'X99.0XXA ','Assault by sharp glass, initial encounter','Y','0000-00-00 00:00:00'),(177463,10,'X99.0XXD ','Assault by sharp glass, subsequent encounter','Y','0000-00-00 00:00:00'),(177464,10,'X99.0XXS ','Assault by sharp glass, sequela','Y','0000-00-00 00:00:00'),(177465,10,'X99.1XXA ','Assault by knife, initial encounter','Y','0000-00-00 00:00:00'),(177466,10,'X99.1XXD ','Assault by knife, subsequent encounter','Y','0000-00-00 00:00:00'),(177467,10,'X99.1XXS ','Assault by knife, sequela','Y','0000-00-00 00:00:00'),(177468,10,'X99.2XXA ','Assault by sword or dagger, initial encounter','Y','0000-00-00 00:00:00'),(177469,10,'X99.2XXD ','Assault by sword or dagger, subsequent encounter','Y','0000-00-00 00:00:00'),(177470,10,'X99.2XXS ','Assault by sword or dagger, sequela','Y','0000-00-00 00:00:00'),(177471,10,'X99.8XXA ','Assault by other sharp object, initial encounter','Y','0000-00-00 00:00:00'),(177472,10,'X99.8XXD ','Assault by other sharp object, subsequent encounter','Y','0000-00-00 00:00:00'),(177473,10,'X99.8XXS ','Assault by other sharp object, sequela','Y','0000-00-00 00:00:00'),(177474,10,'X99.9XXA ','Assault by unspecified sharp object, initial encounter','Y','0000-00-00 00:00:00'),(177475,10,'X99.9XXD ','Assault by unspecified sharp object, subsequent encounter','Y','0000-00-00 00:00:00'),(177476,10,'X99.9XXS ','Assault by unspecified sharp object, sequela','Y','0000-00-00 00:00:00'),(177477,10,'Y00.XXXA ','Assault by blunt object, initial encounter','Y','0000-00-00 00:00:00'),(177478,10,'Y00.XXXD ','Assault by blunt object, subsequent encounter','Y','0000-00-00 00:00:00'),(177479,10,'Y00.XXXS ','Assault by blunt object, sequela','Y','0000-00-00 00:00:00'),(177480,10,'Y01.XXXA ','Assault by pushing from high place, initial encounter','Y','0000-00-00 00:00:00'),(177481,10,'Y01.XXXD ','Assault by pushing from high place, subsequent encounter','Y','0000-00-00 00:00:00'),(177482,10,'Y01.XXXS ','Assault by pushing from high place, sequela','Y','0000-00-00 00:00:00'),(177483,10,'Y02.0XXA ','Assault by pushing or placing victim in front of motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(177484,10,'Y02.0XXD ','Assault by pushing or placing victim in front of motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(177485,10,'Y02.0XXS ','Assault by pushing or placing victim in front of motor vehicle, sequela','Y','0000-00-00 00:00:00'),(177486,10,'Y02.1XXA ','Assault by pushing or placing victim in front of (subway) train, initial encounter','Y','0000-00-00 00:00:00'),(177487,10,'Y02.1XXD ','Assault by pushing or placing victim in front of (subway) train, subsequent encounter','Y','0000-00-00 00:00:00'),(177488,10,'Y02.1XXS ','Assault by pushing or placing victim in front of (subway) train, sequela','Y','0000-00-00 00:00:00'),(177489,10,'Y02.8XXA ','Assault by pushing or placing victim in front of other moving object, initial encounter','Y','0000-00-00 00:00:00'),(177490,10,'Y02.8XXD ','Assault by pushing or placing victim in front of other moving object, subsequent encounter','Y','0000-00-00 00:00:00'),(177491,10,'Y02.8XXS ','Assault by pushing or placing victim in front of other moving object, sequela','Y','0000-00-00 00:00:00'),(177492,10,'Y03.0XXA ','Assault by being hit or run over by motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(177493,10,'Y03.0XXD ','Assault by being hit or run over by motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(177494,10,'Y03.0XXS ','Assault by being hit or run over by motor vehicle, sequela','Y','0000-00-00 00:00:00'),(177495,10,'Y03.8XXA ','Other assault by crashing of motor vehicle, initial encounter','Y','0000-00-00 00:00:00'),(177496,10,'Y03.8XXD ','Other assault by crashing of motor vehicle, subsequent encounter','Y','0000-00-00 00:00:00'),(177497,10,'Y03.8XXS ','Other assault by crashing of motor vehicle, sequela','Y','0000-00-00 00:00:00'),(177498,10,'Y04.0XXA ','Assault by unarmed brawl or fight, initial encounter','Y','0000-00-00 00:00:00'),(177499,10,'Y04.0XXD ','Assault by unarmed brawl or fight, subsequent encounter','Y','0000-00-00 00:00:00'),(177500,10,'Y04.0XXS ','Assault by unarmed brawl or fight, sequela','Y','0000-00-00 00:00:00'),(177501,10,'Y04.1XXA ','Assault by human bite, initial encounter','Y','0000-00-00 00:00:00'),(177502,10,'Y04.1XXD ','Assault by human bite, subsequent encounter','Y','0000-00-00 00:00:00'),(177503,10,'Y04.1XXS ','Assault by human bite, sequela','Y','0000-00-00 00:00:00'),(177504,10,'Y04.2XXA ','Assault by strike against or bumped into by another person, initial encounter','Y','0000-00-00 00:00:00'),(177505,10,'Y04.2XXD ','Assault by strike against or bumped into by another person, subsequent encounter','Y','0000-00-00 00:00:00'),(177506,10,'Y04.2XXS ','Assault by strike against or bumped into by another person, sequela','Y','0000-00-00 00:00:00'),(177507,10,'Y04.8XXA ','Assault by other bodily force, initial encounter','Y','0000-00-00 00:00:00'),(177508,10,'Y04.8XXD ','Assault by other bodily force, subsequent encounter','Y','0000-00-00 00:00:00'),(177509,10,'Y04.8XXS ','Assault by other bodily force, sequela','Y','0000-00-00 00:00:00'),(177510,10,'Y07.010 ','Husband, current, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177511,10,'Y07.011 ','Husband, former, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177512,10,'Y07.020 ','Wife, current, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177513,10,'Y07.021 ','Wife, former, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177514,10,'Y07.030 ','Male partner, current, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177515,10,'Y07.031 ','Male partner, former, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177516,10,'Y07.040 ','Female partner, current, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177517,10,'Y07.041 ','Female partner, former, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177518,10,'Y07.050 ','Non-binary partner, current, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177519,10,'Y07.051 ','Non-binary partner, former, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177520,10,'Y07.11 ','Biological father, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177521,10,'Y07.12 ','Biological mother, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177522,10,'Y07.13 ','Adoptive father, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177523,10,'Y07.14 ','Adoptive mother, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177524,10,'Y07.410 ','Brother, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177525,10,'Y07.411 ','Sister, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177526,10,'Y07.420 ','Foster father, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177527,10,'Y07.421 ','Foster mother, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177528,10,'Y07.430 ','Stepfather, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177529,10,'Y07.432 ','Male friend of parent (co-residing in household), perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177530,10,'Y07.433 ','Stepmother, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177531,10,'Y07.434 ','Female friend of parent (co-residing in household), perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177532,10,'Y07.435 ','Stepbrother, perpetrator or maltreatment and neglect','Y','0000-00-00 00:00:00'),(177533,10,'Y07.436 ','Stepsister, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177534,10,'Y07.44 ','Child, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177535,10,'Y07.45 ','Grandchild, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177536,10,'Y07.46 ','Grandparent, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177537,10,'Y07.47 ','Parental sibling, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177538,10,'Y07.490 ','Male cousin, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177539,10,'Y07.491 ','Female cousin, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177540,10,'Y07.499 ','Other family member, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177541,10,'Y07.50 ','Unspecified non-family member, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177542,10,'Y07.510 ','At-home childcare provider, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177543,10,'Y07.511 ','Daycare center childcare provider, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177544,10,'Y07.512 ','At-home adultcare provider, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177545,10,'Y07.513 ','Adultcare center provider, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177546,10,'Y07.519 ','Unspecified daycare provider, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177547,10,'Y07.521 ','Mental health provider, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177548,10,'Y07.528 ','Other therapist or healthcare provider, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177549,10,'Y07.529 ','Unspecified healthcare provider, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177550,10,'Y07.53 ','Teacher or instructor, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177551,10,'Y07.54 ','Acquaintance or friend, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177552,10,'Y07.59 ','Other non-family member, perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177553,10,'Y07.6 ','Multiple perpetrators of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177554,10,'Y07.9 ','Unspecified perpetrator of maltreatment and neglect','Y','0000-00-00 00:00:00'),(177555,10,'Y08.01XA ','Assault by strike by hockey stick, initial encounter','Y','0000-00-00 00:00:00'),(177556,10,'Y08.01XD ','Assault by strike by hockey stick, subsequent encounter','Y','0000-00-00 00:00:00'),(177557,10,'Y08.01XS ','Assault by strike by hockey stick, sequela','Y','0000-00-00 00:00:00'),(177558,10,'Y08.02XA ','Assault by strike by baseball bat, initial encounter','Y','0000-00-00 00:00:00'),(177559,10,'Y08.02XD ','Assault by strike by baseball bat, subsequent encounter','Y','0000-00-00 00:00:00'),(177560,10,'Y08.02XS ','Assault by strike by baseball bat, sequela','Y','0000-00-00 00:00:00'),(177561,10,'Y08.09XA ','Assault by strike by other specified type of sport equipment, initial encounter','Y','0000-00-00 00:00:00'),(177562,10,'Y08.09XD ','Assault by strike by other specified type of sport equipment, subsequent encounter','Y','0000-00-00 00:00:00'),(177563,10,'Y08.09XS ','Assault by strike by other specified type of sport equipment, sequela','Y','0000-00-00 00:00:00'),(177564,10,'Y08.81XA ','Assault by crashing of aircraft, initial encounter','Y','0000-00-00 00:00:00'),(177565,10,'Y08.81XD ','Assault by crashing of aircraft, subsequent encounter','Y','0000-00-00 00:00:00'),(177566,10,'Y08.81XS ','Assault by crashing of aircraft, sequela','Y','0000-00-00 00:00:00'),(177567,10,'Y08.89XA ','Assault by other specified means, initial encounter','Y','0000-00-00 00:00:00'),(177568,10,'Y08.89XD ','Assault by other specified means, subsequent encounter','Y','0000-00-00 00:00:00'),(177569,10,'Y08.89XS ','Assault by other specified means, sequela','Y','0000-00-00 00:00:00'),(177570,10,'Y09','Assault by unspecified means','Y','0000-00-00 00:00:00'),(177571,10,'Y21.0XXA ','Drowning and submersion while in bathtub, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177572,10,'Y21.0XXD ','Drowning and submersion while in bathtub, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177573,10,'Y21.0XXS ','Drowning and submersion while in bathtub, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177574,10,'Y21.1XXA ','Drowning and submersion after fall into bathtub, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177575,10,'Y21.1XXD ','Drowning and submersion after fall into bathtub, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177576,10,'Y21.1XXS ','Drowning and submersion after fall into bathtub, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177577,10,'Y21.2XXA ','Drowning and submersion while in swimming pool, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177578,10,'Y21.2XXD ','Drowning and submersion while in swimming pool, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177579,10,'Y21.2XXS ','Drowning and submersion while in swimming pool, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177580,10,'Y21.3XXA ','Drowning and submersion after fall into swimming pool, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177581,10,'Y21.3XXD ','Drowning and submersion after fall into swimming pool, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177582,10,'Y21.3XXS ','Drowning and submersion after fall into swimming pool, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177583,10,'Y21.4XXA ','Drowning and submersion in natural water, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177584,10,'Y21.4XXD ','Drowning and submersion in natural water, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177585,10,'Y21.4XXS ','Drowning and submersion in natural water, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177586,10,'Y21.8XXA ','Other drowning and submersion, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177587,10,'Y21.8XXD ','Other drowning and submersion, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177588,10,'Y21.8XXS ','Other drowning and submersion, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177589,10,'Y21.9XXA ','Unspecified drowning and submersion, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177590,10,'Y21.9XXD ','Unspecified drowning and submersion, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177591,10,'Y21.9XXS ','Unspecified drowning and submersion, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177592,10,'Y22.XXXA ','Handgun discharge, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177593,10,'Y22.XXXD ','Handgun discharge, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177594,10,'Y22.XXXS ','Handgun discharge, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177595,10,'Y23.0XXA ','Shotgun discharge, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177596,10,'Y23.0XXD ','Shotgun discharge, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177597,10,'Y23.0XXS ','Shotgun discharge, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177598,10,'Y23.1XXA ','Hunting rifle discharge, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177599,10,'Y23.1XXD ','Hunting rifle discharge, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177600,10,'Y23.1XXS ','Hunting rifle discharge, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177601,10,'Y23.2XXA ','Military firearm discharge, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177602,10,'Y23.2XXD ','Military firearm discharge, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177603,10,'Y23.2XXS ','Military firearm discharge, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177604,10,'Y23.3XXA ','Machine gun discharge, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177605,10,'Y23.3XXD ','Machine gun discharge, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177606,10,'Y23.3XXS ','Machine gun discharge, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177607,10,'Y23.8XXA ','Other larger firearm discharge, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177608,10,'Y23.8XXD ','Other larger firearm discharge, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177609,10,'Y23.8XXS ','Other larger firearm discharge, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177610,10,'Y23.9XXA ','Unspecified larger firearm discharge, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177611,10,'Y23.9XXD ','Unspecified larger firearm discharge, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177612,10,'Y23.9XXS ','Unspecified larger firearm discharge, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177613,10,'Y24.0XXA ','Airgun discharge, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177614,10,'Y24.0XXD ','Airgun discharge, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177615,10,'Y24.0XXS ','Airgun discharge, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177616,10,'Y24.8XXA ','Other firearm discharge, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177617,10,'Y24.8XXD ','Other firearm discharge, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177618,10,'Y24.8XXS ','Other firearm discharge, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177619,10,'Y24.9XXA ','Unspecified firearm discharge, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177620,10,'Y24.9XXD ','Unspecified firearm discharge, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177621,10,'Y24.9XXS ','Unspecified firearm discharge, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177622,10,'Y25.XXXA ','Contact with explosive material, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177623,10,'Y25.XXXD ','Contact with explosive material, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177624,10,'Y25.XXXS ','Contact with explosive material, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177625,10,'Y26.XXXA ','Exposure to smoke, fire and flames, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177626,10,'Y26.XXXD ','Exposure to smoke, fire and flames, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177627,10,'Y26.XXXS ','Exposure to smoke, fire and flames, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177628,10,'Y27.0XXA ','Contact with steam and hot vapors, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177629,10,'Y27.0XXD ','Contact with steam and hot vapors, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177630,10,'Y27.0XXS ','Contact with steam and hot vapors, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177631,10,'Y27.1XXA ','Contact with hot tap water, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177632,10,'Y27.1XXD ','Contact with hot tap water, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177633,10,'Y27.1XXS ','Contact with hot tap water, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177634,10,'Y27.2XXA ','Contact with hot fluids, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177635,10,'Y27.2XXD ','Contact with hot fluids, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177636,10,'Y27.2XXS ','Contact with hot fluids, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177637,10,'Y27.3XXA ','Contact with hot household appliance, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177638,10,'Y27.3XXD ','Contact with hot household appliance, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177639,10,'Y27.3XXS ','Contact with hot household appliance, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177640,10,'Y27.8XXA ','Contact with other hot objects, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177641,10,'Y27.8XXD ','Contact with other hot objects, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177642,10,'Y27.8XXS ','Contact with other hot objects, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177643,10,'Y27.9XXA ','Contact with unspecified hot objects, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177644,10,'Y27.9XXD ','Contact with unspecified hot objects, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177645,10,'Y27.9XXS ','Contact with unspecified hot objects, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177646,10,'Y28.0XXA ','Contact with sharp glass, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177647,10,'Y28.0XXD ','Contact with sharp glass, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177648,10,'Y28.0XXS ','Contact with sharp glass, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177649,10,'Y28.1XXA ','Contact with knife, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177650,10,'Y28.1XXD ','Contact with knife, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177651,10,'Y28.1XXS ','Contact with knife, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177652,10,'Y28.2XXA ','Contact with sword or dagger, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177653,10,'Y28.2XXD ','Contact with sword or dagger, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177654,10,'Y28.2XXS ','Contact with sword or dagger, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177655,10,'Y28.8XXA ','Contact with other sharp object, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177656,10,'Y28.8XXD ','Contact with other sharp object, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177657,10,'Y28.8XXS ','Contact with other sharp object, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177658,10,'Y28.9XXA ','Contact with unspecified sharp object, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177659,10,'Y28.9XXD ','Contact with unspecified sharp object, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177660,10,'Y28.9XXS ','Contact with unspecified sharp object, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177661,10,'Y29.XXXA ','Contact with blunt object, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177662,10,'Y29.XXXD ','Contact with blunt object, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177663,10,'Y29.XXXS ','Contact with blunt object, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177664,10,'Y30.XXXA ','Falling, jumping or pushed from a high place, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177665,10,'Y30.XXXD ','Falling, jumping or pushed from a high place, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177666,10,'Y30.XXXS ','Falling, jumping or pushed from a high place, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177667,10,'Y31.XXXA ','Falling, lying or running before or into moving object, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177668,10,'Y31.XXXD ','Falling, lying or running before or into moving object, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177669,10,'Y31.XXXS ','Falling, lying or running before or into moving object, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177670,10,'Y32.XXXA ','Crashing of motor vehicle, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177671,10,'Y32.XXXD ','Crashing of motor vehicle, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177672,10,'Y32.XXXS ','Crashing of motor vehicle, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177673,10,'Y33.XXXA ','Other specified events, undetermined intent, initial encounter','Y','0000-00-00 00:00:00'),(177674,10,'Y33.XXXD ','Other specified events, undetermined intent, subsequent encounter','Y','0000-00-00 00:00:00'),(177675,10,'Y33.XXXS ','Other specified events, undetermined intent, sequela','Y','0000-00-00 00:00:00'),(177676,10,'Y35.001A ','Legal intervention involving unspecified firearm discharge, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177677,10,'Y35.001D ','Legal intervention involving unspecified firearm discharge, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177678,10,'Y35.001S ','Legal intervention involving unspecified firearm discharge, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177679,10,'Y35.002A ','Legal intervention involving unspecified firearm discharge, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177680,10,'Y35.002D ','Legal intervention involving unspecified firearm discharge, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177681,10,'Y35.002S ','Legal intervention involving unspecified firearm discharge, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177682,10,'Y35.003A ','Legal intervention involving unspecified firearm discharge, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177683,10,'Y35.003D ','Legal intervention involving unspecified firearm discharge, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177684,10,'Y35.003S ','Legal intervention involving unspecified firearm discharge, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177685,10,'Y35.009A ','Legal intervention involving unspecified firearm discharge, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177686,10,'Y35.009D ','Legal intervention involving unspecified firearm discharge, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177687,10,'Y35.009S ','Legal intervention involving unspecified firearm discharge, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177688,10,'Y35.011A ','Legal intervention involving injury by machine gun, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177689,10,'Y35.011D ','Legal intervention involving injury by machine gun, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177690,10,'Y35.011S ','Legal intervention involving injury by machine gun, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177691,10,'Y35.012A ','Legal intervention involving injury by machine gun, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177692,10,'Y35.012D ','Legal intervention involving injury by machine gun, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177693,10,'Y35.012S ','Legal intervention involving injury by machine gun, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177694,10,'Y35.013A ','Legal intervention involving injury by machine gun, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177695,10,'Y35.013D ','Legal intervention involving injury by machine gun, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177696,10,'Y35.013S ','Legal intervention involving injury by machine gun, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177697,10,'Y35.019A ','Legal intervention involving injury by machine gun, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177698,10,'Y35.019D ','Legal intervention involving injury by machine gun, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177699,10,'Y35.019S ','Legal intervention involving injury by machine gun, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177700,10,'Y35.021A ','Legal intervention involving injury by handgun, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177701,10,'Y35.021D ','Legal intervention involving injury by handgun, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177702,10,'Y35.021S ','Legal intervention involving injury by handgun, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177703,10,'Y35.022A ','Legal intervention involving injury by handgun, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177704,10,'Y35.022D ','Legal intervention involving injury by handgun, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177705,10,'Y35.022S ','Legal intervention involving injury by handgun, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177706,10,'Y35.023A ','Legal intervention involving injury by handgun, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177707,10,'Y35.023D ','Legal intervention involving injury by handgun, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177708,10,'Y35.023S ','Legal intervention involving injury by handgun, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177709,10,'Y35.029A ','Legal intervention involving injury by handgun, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177710,10,'Y35.029D ','Legal intervention involving injury by handgun, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177711,10,'Y35.029S ','Legal intervention involving injury by handgun, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177712,10,'Y35.031A ','Legal intervention involving injury by rifle pellet, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177713,10,'Y35.031D ','Legal intervention involving injury by rifle pellet, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177714,10,'Y35.031S ','Legal intervention involving injury by rifle pellet, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177715,10,'Y35.032A ','Legal intervention involving injury by rifle pellet, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177716,10,'Y35.032D ','Legal intervention involving injury by rifle pellet, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177717,10,'Y35.032S ','Legal intervention involving injury by rifle pellet, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177718,10,'Y35.033A ','Legal intervention involving injury by rifle pellet, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177719,10,'Y35.033D ','Legal intervention involving injury by rifle pellet, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177720,10,'Y35.033S ','Legal intervention involving injury by rifle pellet, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177721,10,'Y35.039A ','Legal intervention involving injury by rifle pellet, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177722,10,'Y35.039D ','Legal intervention involving injury by rifle pellet, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177723,10,'Y35.039S ','Legal intervention involving injury by rifle pellet, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177724,10,'Y35.041A ','Legal intervention involving injury by rubber bullet, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177725,10,'Y35.041D ','Legal intervention involving injury by rubber bullet, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177726,10,'Y35.041S ','Legal intervention involving injury by rubber bullet, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177727,10,'Y35.042A ','Legal intervention involving injury by rubber bullet, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177728,10,'Y35.042D ','Legal intervention involving injury by rubber bullet, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177729,10,'Y35.042S ','Legal intervention involving injury by rubber bullet, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177730,10,'Y35.043A ','Legal intervention involving injury by rubber bullet, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177731,10,'Y35.043D ','Legal intervention involving injury by rubber bullet, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177732,10,'Y35.043S ','Legal intervention involving injury by rubber bullet, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177733,10,'Y35.049A ','Legal intervention involving injury by rubber bullet, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177734,10,'Y35.049D ','Legal intervention involving injury by rubber bullet, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177735,10,'Y35.049S ','Legal intervention involving injury by rubber bullet, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177736,10,'Y35.091A ','Legal intervention involving other firearm discharge, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177737,10,'Y35.091D ','Legal intervention involving other firearm discharge, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177738,10,'Y35.091S ','Legal intervention involving other firearm discharge, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177739,10,'Y35.092A ','Legal intervention involving other firearm discharge, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177740,10,'Y35.092D ','Legal intervention involving other firearm discharge, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177741,10,'Y35.092S ','Legal intervention involving other firearm discharge, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177742,10,'Y35.093A ','Legal intervention involving other firearm discharge, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177743,10,'Y35.093D ','Legal intervention involving other firearm discharge, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177744,10,'Y35.093S ','Legal intervention involving other firearm discharge, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177745,10,'Y35.099A ','Legal intervention involving other firearm discharge, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177746,10,'Y35.099D ','Legal intervention involving other firearm discharge, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177747,10,'Y35.099S ','Legal intervention involving other firearm discharge, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177748,10,'Y35.101A ','Legal intervention involving unspecified explosives, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177749,10,'Y35.101D ','Legal intervention involving unspecified explosives, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177750,10,'Y35.101S ','Legal intervention involving unspecified explosives, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177751,10,'Y35.102A ','Legal intervention involving unspecified explosives, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177752,10,'Y35.102D ','Legal intervention involving unspecified explosives, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177753,10,'Y35.102S ','Legal intervention involving unspecified explosives, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177754,10,'Y35.103A ','Legal intervention involving unspecified explosives, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177755,10,'Y35.103D ','Legal intervention involving unspecified explosives, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177756,10,'Y35.103S ','Legal intervention involving unspecified explosives, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177757,10,'Y35.109A ','Legal intervention involving unspecified explosives, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177758,10,'Y35.109D ','Legal intervention involving unspecified explosives, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177759,10,'Y35.109S ','Legal intervention involving unspecified explosives, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177760,10,'Y35.111A ','Legal intervention involving injury by dynamite, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177761,10,'Y35.111D ','Legal intervention involving injury by dynamite, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177762,10,'Y35.111S ','Legal intervention involving injury by dynamite, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177763,10,'Y35.112A ','Legal intervention involving injury by dynamite, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177764,10,'Y35.112D ','Legal intervention involving injury by dynamite, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177765,10,'Y35.112S ','Legal intervention involving injury by dynamite, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177766,10,'Y35.113A ','Legal intervention involving injury by dynamite, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177767,10,'Y35.113D ','Legal intervention involving injury by dynamite, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177768,10,'Y35.113S ','Legal intervention involving injury by dynamite, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177769,10,'Y35.119A ','Legal intervention involving injury by dynamite, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177770,10,'Y35.119D ','Legal intervention involving injury by dynamite, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177771,10,'Y35.119S ','Legal intervention involving injury by dynamite, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177772,10,'Y35.121A ','Legal intervention involving injury by explosive shell, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177773,10,'Y35.121D ','Legal intervention involving injury by explosive shell, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177774,10,'Y35.121S ','Legal intervention involving injury by explosive shell, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177775,10,'Y35.122A ','Legal intervention involving injury by explosive shell, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177776,10,'Y35.122D ','Legal intervention involving injury by explosive shell, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177777,10,'Y35.122S ','Legal intervention involving injury by explosive shell, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177778,10,'Y35.123A ','Legal intervention involving injury by explosive shell, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177779,10,'Y35.123D ','Legal intervention involving injury by explosive shell, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177780,10,'Y35.123S ','Legal intervention involving injury by explosive shell, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177781,10,'Y35.129A ','Legal intervention involving injury by explosive shell, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177782,10,'Y35.129D ','Legal intervention involving injury by explosive shell, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177783,10,'Y35.129S ','Legal intervention involving injury by explosive shell, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177784,10,'Y35.191A ','Legal intervention involving other explosives, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177785,10,'Y35.191D ','Legal intervention involving other explosives, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177786,10,'Y35.191S ','Legal intervention involving other explosives, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177787,10,'Y35.192A ','Legal intervention involving other explosives, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177788,10,'Y35.192D ','Legal intervention involving other explosives, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177789,10,'Y35.192S ','Legal intervention involving other explosives, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177790,10,'Y35.193A ','Legal intervention involving other explosives, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177791,10,'Y35.193D ','Legal intervention involving other explosives, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177792,10,'Y35.193S ','Legal intervention involving other explosives, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177793,10,'Y35.199A ','Legal intervention involving other explosives, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177794,10,'Y35.199D ','Legal intervention involving other explosives, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177795,10,'Y35.199S ','Legal intervention involving other explosives, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177796,10,'Y35.201A ','Legal intervention involving unspecified gas, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177797,10,'Y35.201D ','Legal intervention involving unspecified gas, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177798,10,'Y35.201S ','Legal intervention involving unspecified gas, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177799,10,'Y35.202A ','Legal intervention involving unspecified gas, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177800,10,'Y35.202D ','Legal intervention involving unspecified gas, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177801,10,'Y35.202S ','Legal intervention involving unspecified gas, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177802,10,'Y35.203A ','Legal intervention involving unspecified gas, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177803,10,'Y35.203D ','Legal intervention involving unspecified gas, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177804,10,'Y35.203S ','Legal intervention involving unspecified gas, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177805,10,'Y35.209A ','Legal intervention involving unspecified gas, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177806,10,'Y35.209D ','Legal intervention involving unspecified gas, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177807,10,'Y35.209S ','Legal intervention involving unspecified gas, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177808,10,'Y35.211A ','Legal intervention involving injury by tear gas, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177809,10,'Y35.211D ','Legal intervention involving injury by tear gas, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177810,10,'Y35.211S ','Legal intervention involving injury by tear gas, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177811,10,'Y35.212A ','Legal intervention involving injury by tear gas, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177812,10,'Y35.212D ','Legal intervention involving injury by tear gas, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177813,10,'Y35.212S ','Legal intervention involving injury by tear gas, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177814,10,'Y35.213A ','Legal intervention involving injury by tear gas, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177815,10,'Y35.213D ','Legal intervention involving injury by tear gas, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177816,10,'Y35.213S ','Legal intervention involving injury by tear gas, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177817,10,'Y35.219A ','Legal intervention involving injury by tear gas, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177818,10,'Y35.219D ','Legal intervention involving injury by tear gas, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177819,10,'Y35.219S ','Legal intervention involving injury by tear gas, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177820,10,'Y35.291A ','Legal intervention involving other gas, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177821,10,'Y35.291D ','Legal intervention involving other gas, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177822,10,'Y35.291S ','Legal intervention involving other gas, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177823,10,'Y35.292A ','Legal intervention involving other gas, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177824,10,'Y35.292D ','Legal intervention involving other gas, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177825,10,'Y35.292S ','Legal intervention involving other gas, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177826,10,'Y35.293A ','Legal intervention involving other gas, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177827,10,'Y35.293D ','Legal intervention involving other gas, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177828,10,'Y35.293S ','Legal intervention involving other gas, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177829,10,'Y35.299A ','Legal intervention involving other gas, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177830,10,'Y35.299D ','Legal intervention involving other gas, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177831,10,'Y35.299S ','Legal intervention involving other gas, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177832,10,'Y35.301A ','Legal intervention involving unspecified blunt objects, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177833,10,'Y35.301D ','Legal intervention involving unspecified blunt objects, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177834,10,'Y35.301S ','Legal intervention involving unspecified blunt objects, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177835,10,'Y35.302A ','Legal intervention involving unspecified blunt objects, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177836,10,'Y35.302D ','Legal intervention involving unspecified blunt objects, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177837,10,'Y35.302S ','Legal intervention involving unspecified blunt objects, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177838,10,'Y35.303A ','Legal intervention involving unspecified blunt objects, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177839,10,'Y35.303D ','Legal intervention involving unspecified blunt objects, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177840,10,'Y35.303S ','Legal intervention involving unspecified blunt objects, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177841,10,'Y35.309A ','Legal intervention involving unspecified blunt objects, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177842,10,'Y35.309D ','Legal intervention involving unspecified blunt objects, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177843,10,'Y35.309S ','Legal intervention involving unspecified blunt objects, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177844,10,'Y35.311A ','Legal intervention involving baton, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177845,10,'Y35.311D ','Legal intervention involving baton, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177846,10,'Y35.311S ','Legal intervention involving baton, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177847,10,'Y35.312A ','Legal intervention involving baton, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177848,10,'Y35.312D ','Legal intervention involving baton, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177849,10,'Y35.312S ','Legal intervention involving baton, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177850,10,'Y35.313A ','Legal intervention involving baton, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177851,10,'Y35.313D ','Legal intervention involving baton, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177852,10,'Y35.313S ','Legal intervention involving baton, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177853,10,'Y35.319A ','Legal intervention involving baton, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177854,10,'Y35.319D ','Legal intervention involving baton, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177855,10,'Y35.319S ','Legal intervention involving baton, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177856,10,'Y35.391A ','Legal intervention involving other blunt objects, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177857,10,'Y35.391D ','Legal intervention involving other blunt objects, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177858,10,'Y35.391S ','Legal intervention involving other blunt objects, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177859,10,'Y35.392A ','Legal intervention involving other blunt objects, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177860,10,'Y35.392D ','Legal intervention involving other blunt objects, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177861,10,'Y35.392S ','Legal intervention involving other blunt objects, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177862,10,'Y35.393A ','Legal intervention involving other blunt objects, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177863,10,'Y35.393D ','Legal intervention involving other blunt objects, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177864,10,'Y35.393S ','Legal intervention involving other blunt objects, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177865,10,'Y35.399A ','Legal intervention involving other blunt objects, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177866,10,'Y35.399D ','Legal intervention involving other blunt objects, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177867,10,'Y35.399S ','Legal intervention involving other blunt objects, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177868,10,'Y35.401A ','Legal intervention involving unspecified sharp objects, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177869,10,'Y35.401D ','Legal intervention involving unspecified sharp objects, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177870,10,'Y35.401S ','Legal intervention involving unspecified sharp objects, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177871,10,'Y35.402A ','Legal intervention involving unspecified sharp objects, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177872,10,'Y35.402D ','Legal intervention involving unspecified sharp objects, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177873,10,'Y35.402S ','Legal intervention involving unspecified sharp objects, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177874,10,'Y35.403A ','Legal intervention involving unspecified sharp objects, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177875,10,'Y35.403D ','Legal intervention involving unspecified sharp objects, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177876,10,'Y35.403S ','Legal intervention involving unspecified sharp objects, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177877,10,'Y35.409A ','Legal intervention involving unspecified sharp objects, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177878,10,'Y35.409D ','Legal intervention involving unspecified sharp objects, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177879,10,'Y35.409S ','Legal intervention involving unspecified sharp objects, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177880,10,'Y35.411A ','Legal intervention involving bayonet, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177881,10,'Y35.411D ','Legal intervention involving bayonet, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177882,10,'Y35.411S ','Legal intervention involving bayonet, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177883,10,'Y35.412A ','Legal intervention involving bayonet, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177884,10,'Y35.412D ','Legal intervention involving bayonet, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177885,10,'Y35.412S ','Legal intervention involving bayonet, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177886,10,'Y35.413A ','Legal intervention involving bayonet, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177887,10,'Y35.413D ','Legal intervention involving bayonet, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177888,10,'Y35.413S ','Legal intervention involving bayonet, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177889,10,'Y35.419A ','Legal intervention involving bayonet, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177890,10,'Y35.419D ','Legal intervention involving bayonet, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177891,10,'Y35.419S ','Legal intervention involving bayonet, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177892,10,'Y35.491A ','Legal intervention involving other sharp objects, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177893,10,'Y35.491D ','Legal intervention involving other sharp objects, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177894,10,'Y35.491S ','Legal intervention involving other sharp objects, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177895,10,'Y35.492A ','Legal intervention involving other sharp objects, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177896,10,'Y35.492D ','Legal intervention involving other sharp objects, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177897,10,'Y35.492S ','Legal intervention involving other sharp objects, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177898,10,'Y35.493A ','Legal intervention involving other sharp objects, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177899,10,'Y35.493D ','Legal intervention involving other sharp objects, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177900,10,'Y35.493S ','Legal intervention involving other sharp objects, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177901,10,'Y35.499A ','Legal intervention involving other sharp objects, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177902,10,'Y35.499D ','Legal intervention involving other sharp objects, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177903,10,'Y35.499S ','Legal intervention involving other sharp objects, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177904,10,'Y35.811A ','Legal intervention involving manhandling, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177905,10,'Y35.811D ','Legal intervention involving manhandling, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177906,10,'Y35.811S ','Legal intervention involving manhandling, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177907,10,'Y35.812A ','Legal intervention involving manhandling, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177908,10,'Y35.812D ','Legal intervention involving manhandling, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177909,10,'Y35.812S ','Legal intervention involving manhandling, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177910,10,'Y35.813A ','Legal intervention involving manhandling, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177911,10,'Y35.813D ','Legal intervention involving manhandling, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177912,10,'Y35.813S ','Legal intervention involving manhandling, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177913,10,'Y35.819A ','Legal intervention involving manhandling, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177914,10,'Y35.819D ','Legal intervention involving manhandling, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177915,10,'Y35.819S ','Legal intervention involving manhandling, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177916,10,'Y35.831A ','Legal intervention involving a conducted energy device, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177917,10,'Y35.831D ','Legal intervention involving a conducted energy device, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177918,10,'Y35.831S ','Legal intervention involving a conducted energy device, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177919,10,'Y35.832A ','Legal intervention involving a conducted energy device, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177920,10,'Y35.832D ','Legal intervention involving a conducted energy device, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177921,10,'Y35.832S ','Legal intervention involving a conducted energy device, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177922,10,'Y35.833A ','Legal intervention involving a conducted energy device, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177923,10,'Y35.833D ','Legal intervention involving a conducted energy device, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177924,10,'Y35.833S ','Legal intervention involving a conducted energy device, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177925,10,'Y35.839A ','Legal intervention involving a conducted energy device, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177926,10,'Y35.839D ','Legal intervention involving a conducted energy device, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177927,10,'Y35.839S ','Legal intervention involving a conducted energy device, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177928,10,'Y35.891A ','Legal intervention involving other specified means, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177929,10,'Y35.891D ','Legal intervention involving other specified means, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177930,10,'Y35.891S ','Legal intervention involving other specified means, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177931,10,'Y35.892A ','Legal intervention involving other specified means, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177932,10,'Y35.892D ','Legal intervention involving other specified means, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177933,10,'Y35.892S ','Legal intervention involving other specified means, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177934,10,'Y35.893A ','Legal intervention involving other specified means, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177935,10,'Y35.893D ','Legal intervention involving other specified means, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177936,10,'Y35.893S ','Legal intervention involving other specified means, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177937,10,'Y35.899A ','Legal intervention involving other specified means, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177938,10,'Y35.899D ','Legal intervention involving other specified means, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177939,10,'Y35.899S ','Legal intervention involving other specified means, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177940,10,'Y35.91XA ','Legal intervention, means unspecified, law enforcement official injured, initial encounter','Y','0000-00-00 00:00:00'),(177941,10,'Y35.91XD ','Legal intervention, means unspecified, law enforcement official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177942,10,'Y35.91XS ','Legal intervention, means unspecified, law enforcement official injured, sequela','Y','0000-00-00 00:00:00'),(177943,10,'Y35.92XA ','Legal intervention, means unspecified, bystander injured, initial encounter','Y','0000-00-00 00:00:00'),(177944,10,'Y35.92XD ','Legal intervention, means unspecified, bystander injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177945,10,'Y35.92XS ','Legal intervention, means unspecified, bystander injured, sequela','Y','0000-00-00 00:00:00'),(177946,10,'Y35.93XA ','Legal intervention, means unspecified, suspect injured, initial encounter','Y','0000-00-00 00:00:00'),(177947,10,'Y35.93XD ','Legal intervention, means unspecified, suspect injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177948,10,'Y35.93XS ','Legal intervention, means unspecified, suspect injured, sequela','Y','0000-00-00 00:00:00'),(177949,10,'Y35.99XA ','Legal intervention, means unspecified, unspecified person injured, initial encounter','Y','0000-00-00 00:00:00'),(177950,10,'Y35.99XD ','Legal intervention, means unspecified, unspecified person injured, subsequent encounter','Y','0000-00-00 00:00:00'),(177951,10,'Y35.99XS ','Legal intervention, means unspecified, unspecified person injured, sequela','Y','0000-00-00 00:00:00'),(177952,10,'Y36.000A ','War operations involving explosion of unspecified marine weapon, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(177953,10,'Y36.000D ','War operations involving explosion of unspecified marine weapon, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(177954,10,'Y36.000S ','War operations involving explosion of unspecified marine weapon, military personnel, sequela','Y','0000-00-00 00:00:00'),(177955,10,'Y36.001A ','War operations involving explosion of unspecified marine weapon, civilian, initial encounter','Y','0000-00-00 00:00:00'),(177956,10,'Y36.001D ','War operations involving explosion of unspecified marine weapon, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(177957,10,'Y36.001S ','War operations involving explosion of unspecified marine weapon, civilian, sequela','Y','0000-00-00 00:00:00'),(177958,10,'Y36.010A ','War operations involving explosion of depth-charge, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(177959,10,'Y36.010D ','War operations involving explosion of depth-charge, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(177960,10,'Y36.010S ','War operations involving explosion of depth-charge, military personnel, sequela','Y','0000-00-00 00:00:00'),(177961,10,'Y36.011A ','War operations involving explosion of depth-charge, civilian, initial encounter','Y','0000-00-00 00:00:00'),(177962,10,'Y36.011D ','War operations involving explosion of depth-charge, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(177963,10,'Y36.011S ','War operations involving explosion of depth-charge, civilian, sequela','Y','0000-00-00 00:00:00'),(177964,10,'Y36.020A ','War operations involving explosion of marine mine, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(177965,10,'Y36.020D ','War operations involving explosion of marine mine, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(177966,10,'Y36.020S ','War operations involving explosion of marine mine, military personnel, sequela','Y','0000-00-00 00:00:00'),(177967,10,'Y36.021A ','War operations involving explosion of marine mine, civilian, initial encounter','Y','0000-00-00 00:00:00'),(177968,10,'Y36.021D ','War operations involving explosion of marine mine, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(177969,10,'Y36.021S ','War operations involving explosion of marine mine, civilian, sequela','Y','0000-00-00 00:00:00'),(177970,10,'Y36.030A ','War operations involving explosion of sea-based artillery shell, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(177971,10,'Y36.030D ','War operations involving explosion of sea-based artillery shell, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(177972,10,'Y36.030S ','War operations involving explosion of sea-based artillery shell, military personnel, sequela','Y','0000-00-00 00:00:00'),(177973,10,'Y36.031A ','War operations involving explosion of sea-based artillery shell, civilian, initial encounter','Y','0000-00-00 00:00:00'),(177974,10,'Y36.031D ','War operations involving explosion of sea-based artillery shell, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(177975,10,'Y36.031S ','War operations involving explosion of sea-based artillery shell, civilian, sequela','Y','0000-00-00 00:00:00'),(177976,10,'Y36.040A ','War operations involving explosion of torpedo, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(177977,10,'Y36.040D ','War operations involving explosion of torpedo, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(177978,10,'Y36.040S ','War operations involving explosion of torpedo, military personnel, sequela','Y','0000-00-00 00:00:00'),(177979,10,'Y36.041A ','War operations involving explosion of torpedo, civilian, initial encounter','Y','0000-00-00 00:00:00'),(177980,10,'Y36.041D ','War operations involving explosion of torpedo, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(177981,10,'Y36.041S ','War operations involving explosion of torpedo, civilian, sequela','Y','0000-00-00 00:00:00'),(177982,10,'Y36.050A ','War operations involving accidental detonation of onboard marine weapons, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(177983,10,'Y36.050D ','War operations involving accidental detonation of onboard marine weapons, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(177984,10,'Y36.050S ','War operations involving accidental detonation of onboard marine weapons, military personnel, sequela','Y','0000-00-00 00:00:00'),(177985,10,'Y36.051A ','War operations involving accidental detonation of onboard marine weapons, civilian, initial encounter','Y','0000-00-00 00:00:00'),(177986,10,'Y36.051D ','War operations involving accidental detonation of onboard marine weapons, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(177987,10,'Y36.051S ','War operations involving accidental detonation of onboard marine weapons, civilian, sequela','Y','0000-00-00 00:00:00'),(177988,10,'Y36.090A ','War operations involving explosion of other marine weapons, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(177989,10,'Y36.090D ','War operations involving explosion of other marine weapons, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(177990,10,'Y36.090S ','War operations involving explosion of other marine weapons, military personnel, sequela','Y','0000-00-00 00:00:00'),(177991,10,'Y36.091A ','War operations involving explosion of other marine weapons, civilian, initial encounter','Y','0000-00-00 00:00:00'),(177992,10,'Y36.091D ','War operations involving explosion of other marine weapons, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(177993,10,'Y36.091S ','War operations involving explosion of other marine weapons, civilian, sequela','Y','0000-00-00 00:00:00'),(177994,10,'Y36.100A ','War operations involving unspecified destruction of aircraft, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(177995,10,'Y36.100D ','War operations involving unspecified destruction of aircraft, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(177996,10,'Y36.100S ','War operations involving unspecified destruction of aircraft, military personnel, sequela','Y','0000-00-00 00:00:00'),(177997,10,'Y36.101A ','War operations involving unspecified destruction of aircraft, civilian, initial encounter','Y','0000-00-00 00:00:00'),(177998,10,'Y36.101D ','War operations involving unspecified destruction of aircraft, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(177999,10,'Y36.101S ','War operations involving unspecified destruction of aircraft, civilian, sequela','Y','0000-00-00 00:00:00'),(178000,10,'Y36.110A ','War operations involving destruction of aircraft due to enemy fire or explosives, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178001,10,'Y36.110D ','War operations involving destruction of aircraft due to enemy fire or explosives, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178002,10,'Y36.110S ','War operations involving destruction of aircraft due to enemy fire or explosives, military personnel, sequela','Y','0000-00-00 00:00:00'),(178003,10,'Y36.111A ','War operations involving destruction of aircraft due to enemy fire or explosives, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178004,10,'Y36.111D ','War operations involving destruction of aircraft due to enemy fire or explosives, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178005,10,'Y36.111S ','War operations involving destruction of aircraft due to enemy fire or explosives, civilian, sequela','Y','0000-00-00 00:00:00'),(178006,10,'Y36.120A ','War operations involving destruction of aircraft due to collision with other aircraft, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178007,10,'Y36.120D ','War operations involving destruction of aircraft due to collision with other aircraft, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178008,10,'Y36.120S ','War operations involving destruction of aircraft due to collision with other aircraft, military personnel, sequela','Y','0000-00-00 00:00:00'),(178009,10,'Y36.121A ','War operations involving destruction of aircraft due to collision with other aircraft, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178010,10,'Y36.121D ','War operations involving destruction of aircraft due to collision with other aircraft, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178011,10,'Y36.121S ','War operations involving destruction of aircraft due to collision with other aircraft, civilian, sequela','Y','0000-00-00 00:00:00'),(178012,10,'Y36.130A ','War operations involving destruction of aircraft due to onboard fire, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178013,10,'Y36.130D ','War operations involving destruction of aircraft due to onboard fire, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178014,10,'Y36.130S ','War operations involving destruction of aircraft due to onboard fire, military personnel, sequela','Y','0000-00-00 00:00:00'),(178015,10,'Y36.131A ','War operations involving destruction of aircraft due to onboard fire, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178016,10,'Y36.131D ','War operations involving destruction of aircraft due to onboard fire, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178017,10,'Y36.131S ','War operations involving destruction of aircraft due to onboard fire, civilian, sequela','Y','0000-00-00 00:00:00'),(178018,10,'Y36.140A ','War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178019,10,'Y36.140D ','War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178020,10,'Y36.140S ','War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel, sequela','Y','0000-00-00 00:00:00'),(178021,10,'Y36.141A ','War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178022,10,'Y36.141D ','War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178023,10,'Y36.141S ','War operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian, sequela','Y','0000-00-00 00:00:00'),(178024,10,'Y36.190A ','War operations involving other destruction of aircraft, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178025,10,'Y36.190D ','War operations involving other destruction of aircraft, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178026,10,'Y36.190S ','War operations involving other destruction of aircraft, military personnel, sequela','Y','0000-00-00 00:00:00'),(178027,10,'Y36.191A ','War operations involving other destruction of aircraft, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178028,10,'Y36.191D ','War operations involving other destruction of aircraft, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178029,10,'Y36.191S ','War operations involving other destruction of aircraft, civilian, sequela','Y','0000-00-00 00:00:00'),(178030,10,'Y36.200A ','War operations involving unspecified explosion and fragments, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178031,10,'Y36.200D ','War operations involving unspecified explosion and fragments, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178032,10,'Y36.200S ','War operations involving unspecified explosion and fragments, military personnel, sequela','Y','0000-00-00 00:00:00'),(178033,10,'Y36.201A ','War operations involving unspecified explosion and fragments, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178034,10,'Y36.201D ','War operations involving unspecified explosion and fragments, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178035,10,'Y36.201S ','War operations involving unspecified explosion and fragments, civilian, sequela','Y','0000-00-00 00:00:00'),(178036,10,'Y36.210A ','War operations involving explosion of aerial bomb, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178037,10,'Y36.210D ','War operations involving explosion of aerial bomb, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178038,10,'Y36.210S ','War operations involving explosion of aerial bomb, military personnel, sequela','Y','0000-00-00 00:00:00'),(178039,10,'Y36.211A ','War operations involving explosion of aerial bomb, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178040,10,'Y36.211D ','War operations involving explosion of aerial bomb, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178041,10,'Y36.211S ','War operations involving explosion of aerial bomb, civilian, sequela','Y','0000-00-00 00:00:00'),(178042,10,'Y36.220A ','War operations involving explosion of guided missile, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178043,10,'Y36.220D ','War operations involving explosion of guided missile, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178044,10,'Y36.220S ','War operations involving explosion of guided missile, military personnel, sequela','Y','0000-00-00 00:00:00'),(178045,10,'Y36.221A ','War operations involving explosion of guided missile, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178046,10,'Y36.221D ','War operations involving explosion of guided missile, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178047,10,'Y36.221S ','War operations involving explosion of guided missile, civilian, sequela','Y','0000-00-00 00:00:00'),(178048,10,'Y36.230A ','War operations involving explosion of improvised explosive device [IED], military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178049,10,'Y36.230D ','War operations involving explosion of improvised explosive device [IED], military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178050,10,'Y36.230S ','War operations involving explosion of improvised explosive device [IED], military personnel, sequela','Y','0000-00-00 00:00:00'),(178051,10,'Y36.231A ','War operations involving explosion of improvised explosive device [IED], civilian, initial encounter','Y','0000-00-00 00:00:00'),(178052,10,'Y36.231D ','War operations involving explosion of improvised explosive device [IED], civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178053,10,'Y36.231S ','War operations involving explosion of improvised explosive device [IED], civilian, sequela','Y','0000-00-00 00:00:00'),(178054,10,'Y36.240A ','War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178055,10,'Y36.240D ','War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178056,10,'Y36.240S ','War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel, sequela','Y','0000-00-00 00:00:00'),(178057,10,'Y36.241A ','War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178058,10,'Y36.241D ','War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178059,10,'Y36.241S ','War operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, sequela','Y','0000-00-00 00:00:00'),(178060,10,'Y36.250A ','War operations involving fragments from munitions, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178061,10,'Y36.250D ','War operations involving fragments from munitions, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178062,10,'Y36.250S ','War operations involving fragments from munitions, military personnel, sequela','Y','0000-00-00 00:00:00'),(178063,10,'Y36.251A ','War operations involving fragments from munitions, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178064,10,'Y36.251D ','War operations involving fragments from munitions, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178065,10,'Y36.251S ','War operations involving fragments from munitions, civilian, sequela','Y','0000-00-00 00:00:00'),(178066,10,'Y36.260A ','War operations involving fragments of improvised explosive device [IED], military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178067,10,'Y36.260D ','War operations involving fragments of improvised explosive device [IED], military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178068,10,'Y36.260S ','War operations involving fragments of improvised explosive device [IED], military personnel, sequela','Y','0000-00-00 00:00:00'),(178069,10,'Y36.261A ','War operations involving fragments of improvised explosive device [IED], civilian, initial encounter','Y','0000-00-00 00:00:00'),(178070,10,'Y36.261D ','War operations involving fragments of improvised explosive device [IED], civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178071,10,'Y36.261S ','War operations involving fragments of improvised explosive device [IED], civilian, sequela','Y','0000-00-00 00:00:00'),(178072,10,'Y36.270A ','War operations involving fragments from weapons, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178073,10,'Y36.270D ','War operations involving fragments from weapons, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178074,10,'Y36.270S ','War operations involving fragments from weapons, military personnel, sequela','Y','0000-00-00 00:00:00'),(178075,10,'Y36.271A ','War operations involving fragments from weapons, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178076,10,'Y36.271D ','War operations involving fragments from weapons, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178077,10,'Y36.271S ','War operations involving fragments from weapons, civilian, sequela','Y','0000-00-00 00:00:00'),(178078,10,'Y36.290A ','War operations involving other explosions and fragments, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178079,10,'Y36.290D ','War operations involving other explosions and fragments, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178080,10,'Y36.290S ','War operations involving other explosions and fragments, military personnel, sequela','Y','0000-00-00 00:00:00'),(178081,10,'Y36.291A ','War operations involving other explosions and fragments, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178082,10,'Y36.291D ','War operations involving other explosions and fragments, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178083,10,'Y36.291S ','War operations involving other explosions and fragments, civilian, sequela','Y','0000-00-00 00:00:00'),(178084,10,'Y36.300A ','War operations involving unspecified fire, conflagration and hot substance, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178085,10,'Y36.300D ','War operations involving unspecified fire, conflagration and hot substance, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178086,10,'Y36.300S ','War operations involving unspecified fire, conflagration and hot substance, military personnel, sequela','Y','0000-00-00 00:00:00'),(178087,10,'Y36.301A ','War operations involving unspecified fire, conflagration and hot substance, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178088,10,'Y36.301D ','War operations involving unspecified fire, conflagration and hot substance, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178089,10,'Y36.301S ','War operations involving unspecified fire, conflagration and hot substance, civilian, sequela','Y','0000-00-00 00:00:00'),(178090,10,'Y36.310A ','War operations involving gasoline bomb, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178091,10,'Y36.310D ','War operations involving gasoline bomb, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178092,10,'Y36.310S ','War operations involving gasoline bomb, military personnel, sequela','Y','0000-00-00 00:00:00'),(178093,10,'Y36.311A ','War operations involving gasoline bomb, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178094,10,'Y36.311D ','War operations involving gasoline bomb, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178095,10,'Y36.311S ','War operations involving gasoline bomb, civilian, sequela','Y','0000-00-00 00:00:00'),(178096,10,'Y36.320A ','War operations involving incendiary bullet, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178097,10,'Y36.320D ','War operations involving incendiary bullet, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178098,10,'Y36.320S ','War operations involving incendiary bullet, military personnel, sequela','Y','0000-00-00 00:00:00'),(178099,10,'Y36.321A ','War operations involving incendiary bullet, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178100,10,'Y36.321D ','War operations involving incendiary bullet, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178101,10,'Y36.321S ','War operations involving incendiary bullet, civilian, sequela','Y','0000-00-00 00:00:00'),(178102,10,'Y36.330A ','War operations involving flamethrower, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178103,10,'Y36.330D ','War operations involving flamethrower, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178104,10,'Y36.330S ','War operations involving flamethrower, military personnel, sequela','Y','0000-00-00 00:00:00'),(178105,10,'Y36.331A ','War operations involving flamethrower, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178106,10,'Y36.331D ','War operations involving flamethrower, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178107,10,'Y36.331S ','War operations involving flamethrower, civilian, sequela','Y','0000-00-00 00:00:00'),(178108,10,'Y36.390A ','War operations involving other fires, conflagrations and hot substances, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178109,10,'Y36.390D ','War operations involving other fires, conflagrations and hot substances, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178110,10,'Y36.390S ','War operations involving other fires, conflagrations and hot substances, military personnel, sequela','Y','0000-00-00 00:00:00'),(178111,10,'Y36.391A ','War operations involving other fires, conflagrations and hot substances, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178112,10,'Y36.391D ','War operations involving other fires, conflagrations and hot substances, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178113,10,'Y36.391S ','War operations involving other fires, conflagrations and hot substances, civilian, sequela','Y','0000-00-00 00:00:00'),(178114,10,'Y36.410A ','War operations involving rubber bullets, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178115,10,'Y36.410D ','War operations involving rubber bullets, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178116,10,'Y36.410S ','War operations involving rubber bullets, military personnel, sequela','Y','0000-00-00 00:00:00'),(178117,10,'Y36.411A ','War operations involving rubber bullets, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178118,10,'Y36.411D ','War operations involving rubber bullets, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178119,10,'Y36.411S ','War operations involving rubber bullets, civilian, sequela','Y','0000-00-00 00:00:00'),(178120,10,'Y36.420A ','War operations involving firearms pellets, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178121,10,'Y36.420D ','War operations involving firearms pellets, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178122,10,'Y36.420S ','War operations involving firearms pellets, military personnel, sequela','Y','0000-00-00 00:00:00'),(178123,10,'Y36.421A ','War operations involving firearms pellets, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178124,10,'Y36.421D ','War operations involving firearms pellets, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178125,10,'Y36.421S ','War operations involving firearms pellets, civilian, sequela','Y','0000-00-00 00:00:00'),(178126,10,'Y36.430A ','War operations involving other firearms discharge, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178127,10,'Y36.430D ','War operations involving other firearms discharge, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178128,10,'Y36.430S ','War operations involving other firearms discharge, military personnel, sequela','Y','0000-00-00 00:00:00'),(178129,10,'Y36.431A ','War operations involving other firearms discharge, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178130,10,'Y36.431D ','War operations involving other firearms discharge, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178131,10,'Y36.431S ','War operations involving other firearms discharge, civilian, sequela','Y','0000-00-00 00:00:00'),(178132,10,'Y36.440A ','War operations involving unarmed hand to hand combat, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178133,10,'Y36.440D ','War operations involving unarmed hand to hand combat, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178134,10,'Y36.440S ','War operations involving unarmed hand to hand combat, military personnel, sequela','Y','0000-00-00 00:00:00'),(178135,10,'Y36.441A ','War operations involving unarmed hand to hand combat, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178136,10,'Y36.441D ','War operations involving unarmed hand to hand combat, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178137,10,'Y36.441S ','War operations involving unarmed hand to hand combat, civilian, sequela','Y','0000-00-00 00:00:00'),(178138,10,'Y36.450A ','War operations involving combat using blunt or piercing object, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178139,10,'Y36.450D ','War operations involving combat using blunt or piercing object, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178140,10,'Y36.450S ','War operations involving combat using blunt or piercing object, military personnel, sequela','Y','0000-00-00 00:00:00'),(178141,10,'Y36.451A ','War operations involving combat using blunt or piercing object, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178142,10,'Y36.451D ','War operations involving combat using blunt or piercing object, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178143,10,'Y36.451S ','War operations involving combat using blunt or piercing object, civilian, sequela','Y','0000-00-00 00:00:00'),(178144,10,'Y36.460A ','War operations involving intentional restriction of air and airway, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178145,10,'Y36.460D ','War operations involving intentional restriction of air and airway, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178146,10,'Y36.460S ','War operations involving intentional restriction of air and airway, military personnel, sequela','Y','0000-00-00 00:00:00'),(178147,10,'Y36.461A ','War operations involving intentional restriction of air and airway, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178148,10,'Y36.461D ','War operations involving intentional restriction of air and airway, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178149,10,'Y36.461S ','War operations involving intentional restriction of air and airway, civilian, sequela','Y','0000-00-00 00:00:00'),(178150,10,'Y36.470A ','War operations involving unintentional restriction of air and airway, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178151,10,'Y36.470D ','War operations involving unintentional restriction of air and airway, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178152,10,'Y36.470S ','War operations involving unintentional restriction of air and airway, military personnel, sequela','Y','0000-00-00 00:00:00'),(178153,10,'Y36.471A ','War operations involving unintentional restriction of air and airway, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178154,10,'Y36.471D ','War operations involving unintentional restriction of air and airway, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178155,10,'Y36.471S ','War operations involving unintentional restriction of air and airway, civilian, sequela','Y','0000-00-00 00:00:00'),(178156,10,'Y36.490A ','War operations involving other forms of conventional warfare, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178157,10,'Y36.490D ','War operations involving other forms of conventional warfare, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178158,10,'Y36.490S ','War operations involving other forms of conventional warfare, military personnel, sequela','Y','0000-00-00 00:00:00'),(178159,10,'Y36.491A ','War operations involving other forms of conventional warfare, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178160,10,'Y36.491D ','War operations involving other forms of conventional warfare, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178161,10,'Y36.491S ','War operations involving other forms of conventional warfare, civilian, sequela','Y','0000-00-00 00:00:00'),(178162,10,'Y36.500A ','War operations involving unspecified effect of nuclear weapon, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178163,10,'Y36.500D ','War operations involving unspecified effect of nuclear weapon, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178164,10,'Y36.500S ','War operations involving unspecified effect of nuclear weapon, military personnel, sequela','Y','0000-00-00 00:00:00'),(178165,10,'Y36.501A ','War operations involving unspecified effect of nuclear weapon, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178166,10,'Y36.501D ','War operations involving unspecified effect of nuclear weapon, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178167,10,'Y36.501S ','War operations involving unspecified effect of nuclear weapon, civilian, sequela','Y','0000-00-00 00:00:00'),(178168,10,'Y36.510A ','War operations involving direct blast effect of nuclear weapon, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178169,10,'Y36.510D ','War operations involving direct blast effect of nuclear weapon, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178170,10,'Y36.510S ','War operations involving direct blast effect of nuclear weapon, military personnel, sequela','Y','0000-00-00 00:00:00'),(178171,10,'Y36.511A ','War operations involving direct blast effect of nuclear weapon, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178172,10,'Y36.511D ','War operations involving direct blast effect of nuclear weapon, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178173,10,'Y36.511S ','War operations involving direct blast effect of nuclear weapon, civilian, sequela','Y','0000-00-00 00:00:00'),(178174,10,'Y36.520A ','War operations involving indirect blast effect of nuclear weapon, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178175,10,'Y36.520D ','War operations involving indirect blast effect of nuclear weapon, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178176,10,'Y36.520S ','War operations involving indirect blast effect of nuclear weapon, military personnel, sequela','Y','0000-00-00 00:00:00'),(178177,10,'Y36.521A ','War operations involving indirect blast effect of nuclear weapon, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178178,10,'Y36.521D ','War operations involving indirect blast effect of nuclear weapon, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178179,10,'Y36.521S ','War operations involving indirect blast effect of nuclear weapon, civilian, sequela','Y','0000-00-00 00:00:00'),(178180,10,'Y36.530A ','War operations involving thermal radiation effect of nuclear weapon, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178181,10,'Y36.530D ','War operations involving thermal radiation effect of nuclear weapon, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178182,10,'Y36.530S ','War operations involving thermal radiation effect of nuclear weapon, military personnel, sequela','Y','0000-00-00 00:00:00'),(178183,10,'Y36.531A ','War operations involving thermal radiation effect of nuclear weapon, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178184,10,'Y36.531D ','War operations involving thermal radiation effect of nuclear weapon, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178185,10,'Y36.531S ','War operations involving thermal radiation effect of nuclear weapon, civilian, sequela','Y','0000-00-00 00:00:00'),(178186,10,'Y36.540A ','War operation involving nuclear radiation effects of nuclear weapon, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178187,10,'Y36.540D ','War operation involving nuclear radiation effects of nuclear weapon, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178188,10,'Y36.540S ','War operation involving nuclear radiation effects of nuclear weapon, military personnel, sequela','Y','0000-00-00 00:00:00'),(178189,10,'Y36.541A ','War operation involving nuclear radiation effects of nuclear weapon, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178190,10,'Y36.541D ','War operation involving nuclear radiation effects of nuclear weapon, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178191,10,'Y36.541S ','War operation involving nuclear radiation effects of nuclear weapon, civilian, sequela','Y','0000-00-00 00:00:00'),(178192,10,'Y36.590A ','War operation involving other effects of nuclear weapons, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178193,10,'Y36.590D ','War operation involving other effects of nuclear weapons, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178194,10,'Y36.590S ','War operation involving other effects of nuclear weapons, military personnel, sequela','Y','0000-00-00 00:00:00'),(178195,10,'Y36.591A ','War operation involving other effects of nuclear weapons, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178196,10,'Y36.591D ','War operation involving other effects of nuclear weapons, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178197,10,'Y36.591S ','War operation involving other effects of nuclear weapons, civilian, sequela','Y','0000-00-00 00:00:00'),(178198,10,'Y36.6X0A ','War operations involving biological weapons, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178199,10,'Y36.6X0D ','War operations involving biological weapons, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178200,10,'Y36.6X0S ','War operations involving biological weapons, military personnel, sequela','Y','0000-00-00 00:00:00'),(178201,10,'Y36.6X1A ','War operations involving biological weapons, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178202,10,'Y36.6X1D ','War operations involving biological weapons, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178203,10,'Y36.6X1S ','War operations involving biological weapons, civilian, sequela','Y','0000-00-00 00:00:00'),(178204,10,'Y36.7X0A ','War operations involving chemical weapons and other forms of unconventional warfare, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178205,10,'Y36.7X0D ','War operations involving chemical weapons and other forms of unconventional warfare, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178206,10,'Y36.7X0S ','War operations involving chemical weapons and other forms of unconventional warfare, military personnel, sequela','Y','0000-00-00 00:00:00'),(178207,10,'Y36.7X1A ','War operations involving chemical weapons and other forms of unconventional warfare, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178208,10,'Y36.7X1D ','War operations involving chemical weapons and other forms of unconventional warfare, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178209,10,'Y36.7X1S ','War operations involving chemical weapons and other forms of unconventional warfare, civilian, sequela','Y','0000-00-00 00:00:00'),(178210,10,'Y36.810A ','Explosion of mine placed during war operations but exploding after cessation of hostilities, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178211,10,'Y36.810D ','Explosion of mine placed during war operations but exploding after cessation of hostilities, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178212,10,'Y36.810S ','Explosion of mine placed during war operations but exploding after cessation of hostilities, military personnel, sequela','Y','0000-00-00 00:00:00'),(178213,10,'Y36.811A ','Explosion of mine placed during war operations but exploding after cessation of hostilities, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178214,10,'Y36.811D ','Explosion of mine placed during war operations but exploding after cessation of hostilities, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178215,10,'Y36.811S ','Explosion of mine placed during war operations but exploding after cessation of hostilities, civilian, sequela','Y','0000-00-00 00:00:00'),(178216,10,'Y36.820A ','Explosion of bomb placed during war operations but exploding after cessation of hostilities, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178217,10,'Y36.820D ','Explosion of bomb placed during war operations but exploding after cessation of hostilities, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178218,10,'Y36.820S ','Explosion of bomb placed during war operations but exploding after cessation of hostilities, military personnel, sequela','Y','0000-00-00 00:00:00'),(178219,10,'Y36.821A ','Explosion of bomb placed during war operations but exploding after cessation of hostilities, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178220,10,'Y36.821D ','Explosion of bomb placed during war operations but exploding after cessation of hostilities, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178221,10,'Y36.821S ','Explosion of bomb placed during war operations but exploding after cessation of hostilities, civilian, sequela','Y','0000-00-00 00:00:00'),(178222,10,'Y36.880A ','Other war operations occurring after cessation of hostilities, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178223,10,'Y36.880D ','Other war operations occurring after cessation of hostilities, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178224,10,'Y36.880S ','Other war operations occurring after cessation of hostilities, military personnel, sequela','Y','0000-00-00 00:00:00'),(178225,10,'Y36.881A ','Other war operations occurring after cessation of hostilities, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178226,10,'Y36.881D ','Other war operations occurring after cessation of hostilities, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178227,10,'Y36.881S ','Other war operations occurring after cessation of hostilities, civilian, sequela','Y','0000-00-00 00:00:00'),(178228,10,'Y36.890A ','Unspecified war operations occurring after cessation of hostilities, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178229,10,'Y36.890D ','Unspecified war operations occurring after cessation of hostilities, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178230,10,'Y36.890S ','Unspecified war operations occurring after cessation of hostilities, military personnel, sequela','Y','0000-00-00 00:00:00'),(178231,10,'Y36.891A ','Unspecified war operations occurring after cessation of hostilities, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178232,10,'Y36.891D ','Unspecified war operations occurring after cessation of hostilities, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178233,10,'Y36.891S ','Unspecified war operations occurring after cessation of hostilities, civilian, sequela','Y','0000-00-00 00:00:00'),(178234,10,'Y36.90XA ','War operations, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(178235,10,'Y36.90XD ','War operations, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(178236,10,'Y36.90XS ','War operations, unspecified, sequela','Y','0000-00-00 00:00:00'),(178237,10,'Y36.91XA ','War operations involving unspecified weapon of mass destruction [WMD], initial encounter','Y','0000-00-00 00:00:00'),(178238,10,'Y36.91XD ','War operations involving unspecified weapon of mass destruction [WMD], subsequent encounter','Y','0000-00-00 00:00:00'),(178239,10,'Y36.91XS ','War operations involving unspecified weapon of mass destruction [WMD], sequela','Y','0000-00-00 00:00:00'),(178240,10,'Y36.92XA ','War operations involving friendly fire, initial encounter','Y','0000-00-00 00:00:00'),(178241,10,'Y36.92XD ','War operations involving friendly fire, subsequent encounter','Y','0000-00-00 00:00:00'),(178242,10,'Y36.92XS ','War operations involving friendly fire, sequela','Y','0000-00-00 00:00:00'),(178243,10,'Y37.000A ','Military operations involving explosion of unspecified marine weapon, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178244,10,'Y37.000D ','Military operations involving explosion of unspecified marine weapon, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178245,10,'Y37.000S ','Military operations involving explosion of unspecified marine weapon, military personnel, sequela','Y','0000-00-00 00:00:00'),(178246,10,'Y37.001A ','Military operations involving explosion of unspecified marine weapon, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178247,10,'Y37.001D ','Military operations involving explosion of unspecified marine weapon, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178248,10,'Y37.001S ','Military operations involving explosion of unspecified marine weapon, civilian, sequela','Y','0000-00-00 00:00:00'),(178249,10,'Y37.010A ','Military operations involving explosion of depth-charge, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178250,10,'Y37.010D ','Military operations involving explosion of depth-charge, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178251,10,'Y37.010S ','Military operations involving explosion of depth-charge, military personnel, sequela','Y','0000-00-00 00:00:00'),(178252,10,'Y37.011A ','Military operations involving explosion of depth-charge, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178253,10,'Y37.011D ','Military operations involving explosion of depth-charge, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178254,10,'Y37.011S ','Military operations involving explosion of depth-charge, civilian, sequela','Y','0000-00-00 00:00:00'),(178255,10,'Y37.020A ','Military operations involving explosion of marine mine, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178256,10,'Y37.020D ','Military operations involving explosion of marine mine, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178257,10,'Y37.020S ','Military operations involving explosion of marine mine, military personnel, sequela','Y','0000-00-00 00:00:00'),(178258,10,'Y37.021A ','Military operations involving explosion of marine mine, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178259,10,'Y37.021D ','Military operations involving explosion of marine mine, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178260,10,'Y37.021S ','Military operations involving explosion of marine mine, civilian, sequela','Y','0000-00-00 00:00:00'),(178261,10,'Y37.030A ','Military operations involving explosion of sea-based artillery shell, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178262,10,'Y37.030D ','Military operations involving explosion of sea-based artillery shell, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178263,10,'Y37.030S ','Military operations involving explosion of sea-based artillery shell, military personnel, sequela','Y','0000-00-00 00:00:00'),(178264,10,'Y37.031A ','Military operations involving explosion of sea-based artillery shell, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178265,10,'Y37.031D ','Military operations involving explosion of sea-based artillery shell, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178266,10,'Y37.031S ','Military operations involving explosion of sea-based artillery shell, civilian, sequela','Y','0000-00-00 00:00:00'),(178267,10,'Y37.040A ','Military operations involving explosion of torpedo, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178268,10,'Y37.040D ','Military operations involving explosion of torpedo, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178269,10,'Y37.040S ','Military operations involving explosion of torpedo, military personnel, sequela','Y','0000-00-00 00:00:00'),(178270,10,'Y37.041A ','Military operations involving explosion of torpedo, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178271,10,'Y37.041D ','Military operations involving explosion of torpedo, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178272,10,'Y37.041S ','Military operations involving explosion of torpedo, civilian, sequela','Y','0000-00-00 00:00:00'),(178273,10,'Y37.050A ','Military operations involving accidental detonation of onboard marine weapons, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178274,10,'Y37.050D ','Military operations involving accidental detonation of onboard marine weapons, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178275,10,'Y37.050S ','Military operations involving accidental detonation of onboard marine weapons, military personnel, sequela','Y','0000-00-00 00:00:00'),(178276,10,'Y37.051A ','Military operations involving accidental detonation of onboard marine weapons, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178277,10,'Y37.051D ','Military operations involving accidental detonation of onboard marine weapons, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178278,10,'Y37.051S ','Military operations involving accidental detonation of onboard marine weapons, civilian, sequela','Y','0000-00-00 00:00:00'),(178279,10,'Y37.090A ','Military operations involving explosion of other marine weapons, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178280,10,'Y37.090D ','Military operations involving explosion of other marine weapons, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178281,10,'Y37.090S ','Military operations involving explosion of other marine weapons, military personnel, sequela','Y','0000-00-00 00:00:00'),(178282,10,'Y37.091A ','Military operations involving explosion of other marine weapons, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178283,10,'Y37.091D ','Military operations involving explosion of other marine weapons, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178284,10,'Y37.091S ','Military operations involving explosion of other marine weapons, civilian, sequela','Y','0000-00-00 00:00:00'),(178285,10,'Y37.100A ','Military operations involving unspecified destruction of aircraft, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178286,10,'Y37.100D ','Military operations involving unspecified destruction of aircraft, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178287,10,'Y37.100S ','Military operations involving unspecified destruction of aircraft, military personnel, sequela','Y','0000-00-00 00:00:00'),(178288,10,'Y37.101A ','Military operations involving unspecified destruction of aircraft, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178289,10,'Y37.101D ','Military operations involving unspecified destruction of aircraft, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178290,10,'Y37.101S ','Military operations involving unspecified destruction of aircraft, civilian, sequela','Y','0000-00-00 00:00:00'),(178291,10,'Y37.110A ','Military operations involving destruction of aircraft due to enemy fire or explosives, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178292,10,'Y37.110D ','Military operations involving destruction of aircraft due to enemy fire or explosives, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178293,10,'Y37.110S ','Military operations involving destruction of aircraft due to enemy fire or explosives, military personnel, sequela','Y','0000-00-00 00:00:00'),(178294,10,'Y37.111A ','Military operations involving destruction of aircraft due to enemy fire or explosives, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178295,10,'Y37.111D ','Military operations involving destruction of aircraft due to enemy fire or explosives, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178296,10,'Y37.111S ','Military operations involving destruction of aircraft due to enemy fire or explosives, civilian, sequela','Y','0000-00-00 00:00:00'),(178297,10,'Y37.120A ','Military operations involving destruction of aircraft due to collision with other aircraft, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178298,10,'Y37.120D ','Military operations involving destruction of aircraft due to collision with other aircraft, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178299,10,'Y37.120S ','Military operations involving destruction of aircraft due to collision with other aircraft, military personnel, sequela','Y','0000-00-00 00:00:00'),(178300,10,'Y37.121A ','Military operations involving destruction of aircraft due to collision with other aircraft, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178301,10,'Y37.121D ','Military operations involving destruction of aircraft due to collision with other aircraft, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178302,10,'Y37.121S ','Military operations involving destruction of aircraft due to collision with other aircraft, civilian, sequela','Y','0000-00-00 00:00:00'),(178303,10,'Y37.130A ','Military operations involving destruction of aircraft due to onboard fire, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178304,10,'Y37.130D ','Military operations involving destruction of aircraft due to onboard fire, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178305,10,'Y37.130S ','Military operations involving destruction of aircraft due to onboard fire, military personnel, sequela','Y','0000-00-00 00:00:00'),(178306,10,'Y37.131A ','Military operations involving destruction of aircraft due to onboard fire, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178307,10,'Y37.131D ','Military operations involving destruction of aircraft due to onboard fire, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178308,10,'Y37.131S ','Military operations involving destruction of aircraft due to onboard fire, civilian, sequela','Y','0000-00-00 00:00:00'),(178309,10,'Y37.140A ','Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178310,10,'Y37.140D ','Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178311,10,'Y37.140S ','Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, military personnel, sequela','Y','0000-00-00 00:00:00'),(178312,10,'Y37.141A ','Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178313,10,'Y37.141D ','Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178314,10,'Y37.141S ','Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian, sequela','Y','0000-00-00 00:00:00'),(178315,10,'Y37.190A ','Military operations involving other destruction of aircraft, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178316,10,'Y37.190D ','Military operations involving other destruction of aircraft, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178317,10,'Y37.190S ','Military operations involving other destruction of aircraft, military personnel, sequela','Y','0000-00-00 00:00:00'),(178318,10,'Y37.191A ','Military operations involving other destruction of aircraft, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178319,10,'Y37.191D ','Military operations involving other destruction of aircraft, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178320,10,'Y37.191S ','Military operations involving other destruction of aircraft, civilian, sequela','Y','0000-00-00 00:00:00'),(178321,10,'Y37.200A ','Military operations involving unspecified explosion and fragments, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178322,10,'Y37.200D ','Military operations involving unspecified explosion and fragments, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178323,10,'Y37.200S ','Military operations involving unspecified explosion and fragments, military personnel, sequela','Y','0000-00-00 00:00:00'),(178324,10,'Y37.201A ','Military operations involving unspecified explosion and fragments, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178325,10,'Y37.201D ','Military operations involving unspecified explosion and fragments, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178326,10,'Y37.201S ','Military operations involving unspecified explosion and fragments, civilian, sequela','Y','0000-00-00 00:00:00'),(178327,10,'Y37.210A ','Military operations involving explosion of aerial bomb, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178328,10,'Y37.210D ','Military operations involving explosion of aerial bomb, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178329,10,'Y37.210S ','Military operations involving explosion of aerial bomb, military personnel, sequela','Y','0000-00-00 00:00:00'),(178330,10,'Y37.211A ','Military operations involving explosion of aerial bomb, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178331,10,'Y37.211D ','Military operations involving explosion of aerial bomb, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178332,10,'Y37.211S ','Military operations involving explosion of aerial bomb, civilian, sequela','Y','0000-00-00 00:00:00'),(178333,10,'Y37.220A ','Military operations involving explosion of guided missile, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178334,10,'Y37.220D ','Military operations involving explosion of guided missile, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178335,10,'Y37.220S ','Military operations involving explosion of guided missile, military personnel, sequela','Y','0000-00-00 00:00:00'),(178336,10,'Y37.221A ','Military operations involving explosion of guided missile, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178337,10,'Y37.221D ','Military operations involving explosion of guided missile, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178338,10,'Y37.221S ','Military operations involving explosion of guided missile, civilian, sequela','Y','0000-00-00 00:00:00'),(178339,10,'Y37.230A ','Military operations involving explosion of improvised explosive device [IED], military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178340,10,'Y37.230D ','Military operations involving explosion of improvised explosive device [IED], military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178341,10,'Y37.230S ','Military operations involving explosion of improvised explosive device [IED], military personnel, sequela','Y','0000-00-00 00:00:00'),(178342,10,'Y37.231A ','Military operations involving explosion of improvised explosive device [IED], civilian, initial encounter','Y','0000-00-00 00:00:00'),(178343,10,'Y37.231D ','Military operations involving explosion of improvised explosive device [IED], civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178344,10,'Y37.231S ','Military operations involving explosion of improvised explosive device [IED], civilian, sequela','Y','0000-00-00 00:00:00'),(178345,10,'Y37.240A ','Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178346,10,'Y37.240D ','Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178347,10,'Y37.240S ','Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, military personnel, sequela','Y','0000-00-00 00:00:00'),(178348,10,'Y37.241A ','Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178349,10,'Y37.241D ','Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178350,10,'Y37.241S ','Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, sequela','Y','0000-00-00 00:00:00'),(178351,10,'Y37.250A ','Military operations involving fragments from munitions, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178352,10,'Y37.250D ','Military operations involving fragments from munitions, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178353,10,'Y37.250S ','Military operations involving fragments from munitions, military personnel, sequela','Y','0000-00-00 00:00:00'),(178354,10,'Y37.251A ','Military operations involving fragments from munitions, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178355,10,'Y37.251D ','Military operations involving fragments from munitions, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178356,10,'Y37.251S ','Military operations involving fragments from munitions, civilian, sequela','Y','0000-00-00 00:00:00'),(178357,10,'Y37.260A ','Military operations involving fragments of improvised explosive device [IED], military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178358,10,'Y37.260D ','Military operations involving fragments of improvised explosive device [IED], military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178359,10,'Y37.260S ','Military operations involving fragments of improvised explosive device [IED], military personnel, sequela','Y','0000-00-00 00:00:00'),(178360,10,'Y37.261A ','Military operations involving fragments of improvised explosive device [IED], civilian, initial encounter','Y','0000-00-00 00:00:00'),(178361,10,'Y37.261D ','Military operations involving fragments of improvised explosive device [IED], civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178362,10,'Y37.261S ','Military operations involving fragments of improvised explosive device [IED], civilian, sequela','Y','0000-00-00 00:00:00'),(178363,10,'Y37.270A ','Military operations involving fragments from weapons, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178364,10,'Y37.270D ','Military operations involving fragments from weapons, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178365,10,'Y37.270S ','Military operations involving fragments from weapons, military personnel, sequela','Y','0000-00-00 00:00:00'),(178366,10,'Y37.271A ','Military operations involving fragments from weapons, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178367,10,'Y37.271D ','Military operations involving fragments from weapons, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178368,10,'Y37.271S ','Military operations involving fragments from weapons, civilian, sequela','Y','0000-00-00 00:00:00'),(178369,10,'Y37.290A ','Military operations involving other explosions and fragments, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178370,10,'Y37.290D ','Military operations involving other explosions and fragments, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178371,10,'Y37.290S ','Military operations involving other explosions and fragments, military personnel, sequela','Y','0000-00-00 00:00:00'),(178372,10,'Y37.291A ','Military operations involving other explosions and fragments, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178373,10,'Y37.291D ','Military operations involving other explosions and fragments, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178374,10,'Y37.291S ','Military operations involving other explosions and fragments, civilian, sequela','Y','0000-00-00 00:00:00'),(178375,10,'Y37.300A ','Military operations involving unspecified fire, conflagration and hot substance, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178376,10,'Y37.300D ','Military operations involving unspecified fire, conflagration and hot substance, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178377,10,'Y37.300S ','Military operations involving unspecified fire, conflagration and hot substance, military personnel, sequela','Y','0000-00-00 00:00:00'),(178378,10,'Y37.301A ','Military operations involving unspecified fire, conflagration and hot substance, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178379,10,'Y37.301D ','Military operations involving unspecified fire, conflagration and hot substance, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178380,10,'Y37.301S ','Military operations involving unspecified fire, conflagration and hot substance, civilian, sequela','Y','0000-00-00 00:00:00'),(178381,10,'Y37.310A ','Military operations involving gasoline bomb, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178382,10,'Y37.310D ','Military operations involving gasoline bomb, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178383,10,'Y37.310S ','Military operations involving gasoline bomb, military personnel, sequela','Y','0000-00-00 00:00:00'),(178384,10,'Y37.311A ','Military operations involving gasoline bomb, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178385,10,'Y37.311D ','Military operations involving gasoline bomb, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178386,10,'Y37.311S ','Military operations involving gasoline bomb, civilian, sequela','Y','0000-00-00 00:00:00'),(178387,10,'Y37.320A ','Military operations involving incendiary bullet, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178388,10,'Y37.320D ','Military operations involving incendiary bullet, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178389,10,'Y37.320S ','Military operations involving incendiary bullet, military personnel, sequela','Y','0000-00-00 00:00:00'),(178390,10,'Y37.321A ','Military operations involving incendiary bullet, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178391,10,'Y37.321D ','Military operations involving incendiary bullet, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178392,10,'Y37.321S ','Military operations involving incendiary bullet, civilian, sequela','Y','0000-00-00 00:00:00'),(178393,10,'Y37.330A ','Military operations involving flamethrower, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178394,10,'Y37.330D ','Military operations involving flamethrower, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178395,10,'Y37.330S ','Military operations involving flamethrower, military personnel, sequela','Y','0000-00-00 00:00:00'),(178396,10,'Y37.331A ','Military operations involving flamethrower, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178397,10,'Y37.331D ','Military operations involving flamethrower, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178398,10,'Y37.331S ','Military operations involving flamethrower, civilian, sequela','Y','0000-00-00 00:00:00'),(178399,10,'Y37.390A ','Military operations involving other fires, conflagrations and hot substances, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178400,10,'Y37.390D ','Military operations involving other fires, conflagrations and hot substances, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178401,10,'Y37.390S ','Military operations involving other fires, conflagrations and hot substances, military personnel, sequela','Y','0000-00-00 00:00:00'),(178402,10,'Y37.391A ','Military operations involving other fires, conflagrations and hot substances, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178403,10,'Y37.391D ','Military operations involving other fires, conflagrations and hot substances, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178404,10,'Y37.391S ','Military operations involving other fires, conflagrations and hot substances, civilian, sequela','Y','0000-00-00 00:00:00'),(178405,10,'Y37.410A ','Military operations involving rubber bullets, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178406,10,'Y37.410D ','Military operations involving rubber bullets, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178407,10,'Y37.410S ','Military operations involving rubber bullets, military personnel, sequela','Y','0000-00-00 00:00:00'),(178408,10,'Y37.411A ','Military operations involving rubber bullets, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178409,10,'Y37.411D ','Military operations involving rubber bullets, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178410,10,'Y37.411S ','Military operations involving rubber bullets, civilian, sequela','Y','0000-00-00 00:00:00'),(178411,10,'Y37.420A ','Military operations involving firearms pellets, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178412,10,'Y37.420D ','Military operations involving firearms pellets, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178413,10,'Y37.420S ','Military operations involving firearms pellets, military personnel, sequela','Y','0000-00-00 00:00:00'),(178414,10,'Y37.421A ','Military operations involving firearms pellets, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178415,10,'Y37.421D ','Military operations involving firearms pellets, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178416,10,'Y37.421S ','Military operations involving firearms pellets, civilian, sequela','Y','0000-00-00 00:00:00'),(178417,10,'Y37.430A ','Military operations involving other firearms discharge, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178418,10,'Y37.430D ','Military operations involving other firearms discharge, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178419,10,'Y37.430S ','Military operations involving other firearms discharge, military personnel, sequela','Y','0000-00-00 00:00:00'),(178420,10,'Y37.431A ','Military operations involving other firearms discharge, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178421,10,'Y37.431D ','Military operations involving other firearms discharge, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178422,10,'Y37.431S ','Military operations involving other firearms discharge, civilian, sequela','Y','0000-00-00 00:00:00'),(178423,10,'Y37.440A ','Military operations involving unarmed hand to hand combat, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178424,10,'Y37.440D ','Military operations involving unarmed hand to hand combat, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178425,10,'Y37.440S ','Military operations involving unarmed hand to hand combat, military personnel, sequela','Y','0000-00-00 00:00:00'),(178426,10,'Y37.441A ','Military operations involving unarmed hand to hand combat, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178427,10,'Y37.441D ','Military operations involving unarmed hand to hand combat, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178428,10,'Y37.441S ','Military operations involving unarmed hand to hand combat, civilian, sequela','Y','0000-00-00 00:00:00'),(178429,10,'Y37.450A ','Military operations involving combat using blunt or piercing object, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178430,10,'Y37.450D ','Military operations involving combat using blunt or piercing object, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178431,10,'Y37.450S ','Military operations involving combat using blunt or piercing object, military personnel, sequela','Y','0000-00-00 00:00:00'),(178432,10,'Y37.451A ','Military operations involving combat using blunt or piercing object, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178433,10,'Y37.451D ','Military operations involving combat using blunt or piercing object, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178434,10,'Y37.451S ','Military operations involving combat using blunt or piercing object, civilian, sequela','Y','0000-00-00 00:00:00'),(178435,10,'Y37.460A ','Military operations involving intentional restriction of air and airway, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178436,10,'Y37.460D ','Military operations involving intentional restriction of air and airway, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178437,10,'Y37.460S ','Military operations involving intentional restriction of air and airway, military personnel, sequela','Y','0000-00-00 00:00:00'),(178438,10,'Y37.461A ','Military operations involving intentional restriction of air and airway, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178439,10,'Y37.461D ','Military operations involving intentional restriction of air and airway, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178440,10,'Y37.461S ','Military operations involving intentional restriction of air and airway, civilian, sequela','Y','0000-00-00 00:00:00'),(178441,10,'Y37.470A ','Military operations involving unintentional restriction of air and airway, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178442,10,'Y37.470D ','Military operations involving unintentional restriction of air and airway, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178443,10,'Y37.470S ','Military operations involving unintentional restriction of air and airway, military personnel, sequela','Y','0000-00-00 00:00:00'),(178444,10,'Y37.471A ','Military operations involving unintentional restriction of air and airway, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178445,10,'Y37.471D ','Military operations involving unintentional restriction of air and airway, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178446,10,'Y37.471S ','Military operations involving unintentional restriction of air and airway, civilian, sequela','Y','0000-00-00 00:00:00'),(178447,10,'Y37.490A ','Military operations involving other forms of conventional warfare, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178448,10,'Y37.490D ','Military operations involving other forms of conventional warfare, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178449,10,'Y37.490S ','Military operations involving other forms of conventional warfare, military personnel, sequela','Y','0000-00-00 00:00:00'),(178450,10,'Y37.491A ','Military operations involving other forms of conventional warfare, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178451,10,'Y37.491D ','Military operations involving other forms of conventional warfare, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178452,10,'Y37.491S ','Military operations involving other forms of conventional warfare, civilian, sequela','Y','0000-00-00 00:00:00'),(178453,10,'Y37.500A ','Military operations involving unspecified effect of nuclear weapon, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178454,10,'Y37.500D ','Military operations involving unspecified effect of nuclear weapon, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178455,10,'Y37.500S ','Military operations involving unspecified effect of nuclear weapon, military personnel, sequela','Y','0000-00-00 00:00:00'),(178456,10,'Y37.501A ','Military operations involving unspecified effect of nuclear weapon, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178457,10,'Y37.501D ','Military operations involving unspecified effect of nuclear weapon, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178458,10,'Y37.501S ','Military operations involving unspecified effect of nuclear weapon, civilian, sequela','Y','0000-00-00 00:00:00'),(178459,10,'Y37.510A ','Military operations involving direct blast effect of nuclear weapon, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178460,10,'Y37.510D ','Military operations involving direct blast effect of nuclear weapon, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178461,10,'Y37.510S ','Military operations involving direct blast effect of nuclear weapon, military personnel, sequela','Y','0000-00-00 00:00:00'),(178462,10,'Y37.511A ','Military operations involving direct blast effect of nuclear weapon, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178463,10,'Y37.511D ','Military operations involving direct blast effect of nuclear weapon, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178464,10,'Y37.511S ','Military operations involving direct blast effect of nuclear weapon, civilian, sequela','Y','0000-00-00 00:00:00'),(178465,10,'Y37.520A ','Military operations involving indirect blast effect of nuclear weapon, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178466,10,'Y37.520D ','Military operations involving indirect blast effect of nuclear weapon, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178467,10,'Y37.520S ','Military operations involving indirect blast effect of nuclear weapon, military personnel, sequela','Y','0000-00-00 00:00:00'),(178468,10,'Y37.521A ','Military operations involving indirect blast effect of nuclear weapon, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178469,10,'Y37.521D ','Military operations involving indirect blast effect of nuclear weapon, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178470,10,'Y37.521S ','Military operations involving indirect blast effect of nuclear weapon, civilian, sequela','Y','0000-00-00 00:00:00'),(178471,10,'Y37.530A ','Military operations involving thermal radiation effect of nuclear weapon, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178472,10,'Y37.530D ','Military operations involving thermal radiation effect of nuclear weapon, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178473,10,'Y37.530S ','Military operations involving thermal radiation effect of nuclear weapon, military personnel, sequela','Y','0000-00-00 00:00:00'),(178474,10,'Y37.531A ','Military operations involving thermal radiation effect of nuclear weapon, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178475,10,'Y37.531D ','Military operations involving thermal radiation effect of nuclear weapon, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178476,10,'Y37.531S ','Military operations involving thermal radiation effect of nuclear weapon, civilian, sequela','Y','0000-00-00 00:00:00'),(178477,10,'Y37.540A ','Military operation involving nuclear radiation effects of nuclear weapon, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178478,10,'Y37.540D ','Military operation involving nuclear radiation effects of nuclear weapon, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178479,10,'Y37.540S ','Military operation involving nuclear radiation effects of nuclear weapon, military personnel, sequela','Y','0000-00-00 00:00:00'),(178480,10,'Y37.541A ','Military operation involving nuclear radiation effects of nuclear weapon, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178481,10,'Y37.541D ','Military operation involving nuclear radiation effects of nuclear weapon, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178482,10,'Y37.541S ','Military operation involving nuclear radiation effects of nuclear weapon, civilian, sequela','Y','0000-00-00 00:00:00'),(178483,10,'Y37.590A ','Military operation involving other effects of nuclear weapons, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178484,10,'Y37.590D ','Military operation involving other effects of nuclear weapons, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178485,10,'Y37.590S ','Military operation involving other effects of nuclear weapons, military personnel, sequela','Y','0000-00-00 00:00:00'),(178486,10,'Y37.591A ','Military operation involving other effects of nuclear weapons, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178487,10,'Y37.591D ','Military operation involving other effects of nuclear weapons, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178488,10,'Y37.591S ','Military operation involving other effects of nuclear weapons, civilian, sequela','Y','0000-00-00 00:00:00'),(178489,10,'Y37.6X0A ','Military operations involving biological weapons, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178490,10,'Y37.6X0D ','Military operations involving biological weapons, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178491,10,'Y37.6X0S ','Military operations involving biological weapons, military personnel, sequela','Y','0000-00-00 00:00:00'),(178492,10,'Y37.6X1A ','Military operations involving biological weapons, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178493,10,'Y37.6X1D ','Military operations involving biological weapons, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178494,10,'Y37.6X1S ','Military operations involving biological weapons, civilian, sequela','Y','0000-00-00 00:00:00'),(178495,10,'Y37.7X0A ','Military operations involving chemical weapons and other forms of unconventional warfare, military personnel, initial encounter','Y','0000-00-00 00:00:00'),(178496,10,'Y37.7X0D ','Military operations involving chemical weapons and other forms of unconventional warfare, military personnel, subsequent encounter','Y','0000-00-00 00:00:00'),(178497,10,'Y37.7X0S ','Military operations involving chemical weapons and other forms of unconventional warfare, military personnel, sequela','Y','0000-00-00 00:00:00'),(178498,10,'Y37.7X1A ','Military operations involving chemical weapons and other forms of unconventional warfare, civilian, initial encounter','Y','0000-00-00 00:00:00'),(178499,10,'Y37.7X1D ','Military operations involving chemical weapons and other forms of unconventional warfare, civilian, subsequent encounter','Y','0000-00-00 00:00:00'),(178500,10,'Y37.7X1S ','Military operations involving chemical weapons and other forms of unconventional warfare, civilian, sequela','Y','0000-00-00 00:00:00'),(178501,10,'Y37.90XA ','Military operations, unspecified, initial encounter','Y','0000-00-00 00:00:00'),(178502,10,'Y37.90XD ','Military operations, unspecified, subsequent encounter','Y','0000-00-00 00:00:00'),(178503,10,'Y37.90XS ','Military operations, unspecified, sequela','Y','0000-00-00 00:00:00'),(178504,10,'Y37.91XA ','Military operations involving unspecified weapon of mass destruction [WMD], initial encounter','Y','0000-00-00 00:00:00'),(178505,10,'Y37.91XD ','Military operations involving unspecified weapon of mass destruction [WMD], subsequent encounter','Y','0000-00-00 00:00:00'),(178506,10,'Y37.91XS ','Military operations involving unspecified weapon of mass destruction [WMD], sequela','Y','0000-00-00 00:00:00'),(178507,10,'Y37.92XA ','Military operations involving friendly fire, initial encounter','Y','0000-00-00 00:00:00'),(178508,10,'Y37.92XD ','Military operations involving friendly fire, subsequent encounter','Y','0000-00-00 00:00:00'),(178509,10,'Y37.92XS ','Military operations involving friendly fire, sequela','Y','0000-00-00 00:00:00'),(178510,10,'Y38.0X1A ','Terrorism involving explosion of marine weapons, public safety official injured, initial encounter','Y','0000-00-00 00:00:00'),(178511,10,'Y38.0X1D ','Terrorism involving explosion of marine weapons, public safety official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178512,10,'Y38.0X1S ','Terrorism involving explosion of marine weapons, public safety official injured, sequela','Y','0000-00-00 00:00:00'),(178513,10,'Y38.0X2A ','Terrorism involving explosion of marine weapons, civilian injured, initial encounter','Y','0000-00-00 00:00:00'),(178514,10,'Y38.0X2D ','Terrorism involving explosion of marine weapons, civilian injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178515,10,'Y38.0X2S ','Terrorism involving explosion of marine weapons, civilian injured, sequela','Y','0000-00-00 00:00:00'),(178516,10,'Y38.0X3A ','Terrorism involving explosion of marine weapons, terrorist injured, initial encounter','Y','0000-00-00 00:00:00'),(178517,10,'Y38.0X3D ','Terrorism involving explosion of marine weapons, terrorist injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178518,10,'Y38.0X3S ','Terrorism involving explosion of marine weapons, terrorist injured, sequela','Y','0000-00-00 00:00:00'),(178519,10,'Y38.1X1A ','Terrorism involving destruction of aircraft, public safety official injured, initial encounter','Y','0000-00-00 00:00:00'),(178520,10,'Y38.1X1D ','Terrorism involving destruction of aircraft, public safety official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178521,10,'Y38.1X1S ','Terrorism involving destruction of aircraft, public safety official injured, sequela','Y','0000-00-00 00:00:00'),(178522,10,'Y38.1X2A ','Terrorism involving destruction of aircraft, civilian injured, initial encounter','Y','0000-00-00 00:00:00'),(178523,10,'Y38.1X2D ','Terrorism involving destruction of aircraft, civilian injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178524,10,'Y38.1X2S ','Terrorism involving destruction of aircraft, civilian injured, sequela','Y','0000-00-00 00:00:00'),(178525,10,'Y38.1X3A ','Terrorism involving destruction of aircraft, terrorist injured, initial encounter','Y','0000-00-00 00:00:00'),(178526,10,'Y38.1X3D ','Terrorism involving destruction of aircraft, terrorist injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178527,10,'Y38.1X3S ','Terrorism involving destruction of aircraft, terrorist injured, sequela','Y','0000-00-00 00:00:00'),(178528,10,'Y38.2X1A ','Terrorism involving other explosions and fragments, public safety official injured, initial encounter','Y','0000-00-00 00:00:00'),(178529,10,'Y38.2X1D ','Terrorism involving other explosions and fragments, public safety official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178530,10,'Y38.2X1S ','Terrorism involving other explosions and fragments, public safety official injured, sequela','Y','0000-00-00 00:00:00'),(178531,10,'Y38.2X2A ','Terrorism involving other explosions and fragments, civilian injured, initial encounter','Y','0000-00-00 00:00:00'),(178532,10,'Y38.2X2D ','Terrorism involving other explosions and fragments, civilian injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178533,10,'Y38.2X2S ','Terrorism involving other explosions and fragments, civilian injured, sequela','Y','0000-00-00 00:00:00'),(178534,10,'Y38.2X3A ','Terrorism involving other explosions and fragments, terrorist injured, initial encounter','Y','0000-00-00 00:00:00'),(178535,10,'Y38.2X3D ','Terrorism involving other explosions and fragments, terrorist injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178536,10,'Y38.2X3S ','Terrorism involving other explosions and fragments, terrorist injured, sequela','Y','0000-00-00 00:00:00'),(178537,10,'Y38.3X1A ','Terrorism involving fires, conflagration and hot substances, public safety official injured, initial encounter','Y','0000-00-00 00:00:00'),(178538,10,'Y38.3X1D ','Terrorism involving fires, conflagration and hot substances, public safety official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178539,10,'Y38.3X1S ','Terrorism involving fires, conflagration and hot substances, public safety official injured, sequela','Y','0000-00-00 00:00:00'),(178540,10,'Y38.3X2A ','Terrorism involving fires, conflagration and hot substances, civilian injured, initial encounter','Y','0000-00-00 00:00:00'),(178541,10,'Y38.3X2D ','Terrorism involving fires, conflagration and hot substances, civilian injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178542,10,'Y38.3X2S ','Terrorism involving fires, conflagration and hot substances, civilian injured, sequela','Y','0000-00-00 00:00:00'),(178543,10,'Y38.3X3A ','Terrorism involving fires, conflagration and hot substances, terrorist injured, initial encounter','Y','0000-00-00 00:00:00'),(178544,10,'Y38.3X3D ','Terrorism involving fires, conflagration and hot substances, terrorist injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178545,10,'Y38.3X3S ','Terrorism involving fires, conflagration and hot substances, terrorist injured, sequela','Y','0000-00-00 00:00:00'),(178546,10,'Y38.4X1A ','Terrorism involving firearms, public safety official injured, initial encounter','Y','0000-00-00 00:00:00'),(178547,10,'Y38.4X1D ','Terrorism involving firearms, public safety official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178548,10,'Y38.4X1S ','Terrorism involving firearms, public safety official injured, sequela','Y','0000-00-00 00:00:00'),(178549,10,'Y38.4X2A ','Terrorism involving firearms, civilian injured, initial encounter','Y','0000-00-00 00:00:00'),(178550,10,'Y38.4X2D ','Terrorism involving firearms, civilian injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178551,10,'Y38.4X2S ','Terrorism involving firearms, civilian injured, sequela','Y','0000-00-00 00:00:00'),(178552,10,'Y38.4X3A ','Terrorism involving firearms, terrorist injured, initial encounter','Y','0000-00-00 00:00:00'),(178553,10,'Y38.4X3D ','Terrorism involving firearms, terrorist injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178554,10,'Y38.4X3S ','Terrorism involving firearms, terrorist injured, sequela','Y','0000-00-00 00:00:00'),(178555,10,'Y38.5X1A ','Terrorism involving nuclear weapons, public safety official injured, initial encounter','Y','0000-00-00 00:00:00'),(178556,10,'Y38.5X1D ','Terrorism involving nuclear weapons, public safety official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178557,10,'Y38.5X1S ','Terrorism involving nuclear weapons, public safety official injured, sequela','Y','0000-00-00 00:00:00'),(178558,10,'Y38.5X2A ','Terrorism involving nuclear weapons, civilian injured, initial encounter','Y','0000-00-00 00:00:00'),(178559,10,'Y38.5X2D ','Terrorism involving nuclear weapons, civilian injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178560,10,'Y38.5X2S ','Terrorism involving nuclear weapons, civilian injured, sequela','Y','0000-00-00 00:00:00'),(178561,10,'Y38.5X3A ','Terrorism involving nuclear weapons, terrorist injured, initial encounter','Y','0000-00-00 00:00:00'),(178562,10,'Y38.5X3D ','Terrorism involving nuclear weapons, terrorist injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178563,10,'Y38.5X3S ','Terrorism involving nuclear weapons, terrorist injured, sequela','Y','0000-00-00 00:00:00'),(178564,10,'Y38.6X1A ','Terrorism involving biological weapons, public safety official injured, initial encounter','Y','0000-00-00 00:00:00'),(178565,10,'Y38.6X1D ','Terrorism involving biological weapons, public safety official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178566,10,'Y38.6X1S ','Terrorism involving biological weapons, public safety official injured, sequela','Y','0000-00-00 00:00:00'),(178567,10,'Y38.6X2A ','Terrorism involving biological weapons, civilian injured, initial encounter','Y','0000-00-00 00:00:00'),(178568,10,'Y38.6X2D ','Terrorism involving biological weapons, civilian injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178569,10,'Y38.6X2S ','Terrorism involving biological weapons, civilian injured, sequela','Y','0000-00-00 00:00:00'),(178570,10,'Y38.6X3A ','Terrorism involving biological weapons, terrorist injured, initial encounter','Y','0000-00-00 00:00:00'),(178571,10,'Y38.6X3D ','Terrorism involving biological weapons, terrorist injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178572,10,'Y38.6X3S ','Terrorism involving biological weapons, terrorist injured, sequela','Y','0000-00-00 00:00:00'),(178573,10,'Y38.7X1A ','Terrorism involving chemical weapons, public safety official injured, initial encounter','Y','0000-00-00 00:00:00'),(178574,10,'Y38.7X1D ','Terrorism involving chemical weapons, public safety official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178575,10,'Y38.7X1S ','Terrorism involving chemical weapons, public safety official injured, sequela','Y','0000-00-00 00:00:00'),(178576,10,'Y38.7X2A ','Terrorism involving chemical weapons, civilian injured, initial encounter','Y','0000-00-00 00:00:00'),(178577,10,'Y38.7X2D ','Terrorism involving chemical weapons, civilian injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178578,10,'Y38.7X2S ','Terrorism involving chemical weapons, civilian injured, sequela','Y','0000-00-00 00:00:00'),(178579,10,'Y38.7X3A ','Terrorism involving chemical weapons, terrorist injured, initial encounter','Y','0000-00-00 00:00:00'),(178580,10,'Y38.7X3D ','Terrorism involving chemical weapons, terrorist injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178581,10,'Y38.7X3S ','Terrorism involving chemical weapons, terrorist injured, sequela','Y','0000-00-00 00:00:00'),(178582,10,'Y38.80XA ','Terrorism involving unspecified means, initial encounter','Y','0000-00-00 00:00:00'),(178583,10,'Y38.80XD ','Terrorism involving unspecified means, subsequent encounter','Y','0000-00-00 00:00:00'),(178584,10,'Y38.80XS ','Terrorism involving unspecified means, sequela','Y','0000-00-00 00:00:00'),(178585,10,'Y38.811A ','Terrorism involving suicide bomber, public safety official injured, initial encounter','Y','0000-00-00 00:00:00'),(178586,10,'Y38.811D ','Terrorism involving suicide bomber, public safety official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178587,10,'Y38.811S ','Terrorism involving suicide bomber, public safety official injured, sequela','Y','0000-00-00 00:00:00'),(178588,10,'Y38.812A ','Terrorism involving suicide bomber, civilian injured, initial encounter','Y','0000-00-00 00:00:00'),(178589,10,'Y38.812D ','Terrorism involving suicide bomber, civilian injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178590,10,'Y38.812S ','Terrorism involving suicide bomber, civilian injured, sequela','Y','0000-00-00 00:00:00'),(178591,10,'Y38.891A ','Terrorism involving other means, public safety official injured, initial encounter','Y','0000-00-00 00:00:00'),(178592,10,'Y38.891D ','Terrorism involving other means, public safety official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178593,10,'Y38.891S ','Terrorism involving other means, public safety official injured, sequela','Y','0000-00-00 00:00:00'),(178594,10,'Y38.892A ','Terrorism involving other means, civilian injured, initial encounter','Y','0000-00-00 00:00:00'),(178595,10,'Y38.892D ','Terrorism involving other means, civilian injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178596,10,'Y38.892S ','Terrorism involving other means, civilian injured, sequela','Y','0000-00-00 00:00:00'),(178597,10,'Y38.893A ','Terrorism involving other means, terrorist injured, initial encounter','Y','0000-00-00 00:00:00'),(178598,10,'Y38.893D ','Terrorism involving other means, terrorist injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178599,10,'Y38.893S ','Terrorism involving other means, terrorist injured, sequela','Y','0000-00-00 00:00:00'),(178600,10,'Y38.9X1A ','Terrorism, secondary effects, public safety official injured, initial encounter','Y','0000-00-00 00:00:00'),(178601,10,'Y38.9X1D ','Terrorism, secondary effects, public safety official injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178602,10,'Y38.9X1S ','Terrorism, secondary effects, public safety official injured, sequela','Y','0000-00-00 00:00:00'),(178603,10,'Y38.9X2A ','Terrorism, secondary effects, civilian injured, initial encounter','Y','0000-00-00 00:00:00'),(178604,10,'Y38.9X2D ','Terrorism, secondary effects, civilian injured, subsequent encounter','Y','0000-00-00 00:00:00'),(178605,10,'Y38.9X2S ','Terrorism, secondary effects, civilian injured, sequela','Y','0000-00-00 00:00:00'),(178606,10,'Y62.0 ','Failure of sterile precautions during surgical operation','Y','0000-00-00 00:00:00'),(178607,10,'Y62.1 ','Failure of sterile precautions during infusion or transfusion','Y','0000-00-00 00:00:00'),(178608,10,'Y62.2 ','Failure of sterile precautions during kidney dialysis and other perfusion','Y','0000-00-00 00:00:00'),(178609,10,'Y62.3 ','Failure of sterile precautions during injection or immunization','Y','0000-00-00 00:00:00'),(178610,10,'Y62.4 ','Failure of sterile precautions during endoscopic examination','Y','0000-00-00 00:00:00'),(178611,10,'Y62.5 ','Failure of sterile precautions during heart catheterization','Y','0000-00-00 00:00:00'),(178612,10,'Y62.6 ','Failure of sterile precautions during aspiration, puncture and other catheterization','Y','0000-00-00 00:00:00'),(178613,10,'Y62.8 ','Failure of sterile precautions during other surgical and medical care','Y','0000-00-00 00:00:00'),(178614,10,'Y62.9 ','Failure of sterile precautions during unspecified surgical and medical care','Y','0000-00-00 00:00:00'),(178615,10,'Y63.0 ','Excessive amount of blood or other fluid given during transfusion or infusion','Y','0000-00-00 00:00:00'),(178616,10,'Y63.1 ','Incorrect dilution of fluid used during infusion','Y','0000-00-00 00:00:00'),(178617,10,'Y63.2 ','Overdose of radiation given during therapy','Y','0000-00-00 00:00:00'),(178618,10,'Y63.3 ','Inadvertent exposure of patient to radiation during medical care','Y','0000-00-00 00:00:00'),(178619,10,'Y63.4 ','Failure in dosage in electroshock or insulin-shock therapy','Y','0000-00-00 00:00:00'),(178620,10,'Y63.5 ','Inappropriate temperature in local application and packing','Y','0000-00-00 00:00:00'),(178621,10,'Y63.6 ','Underdosing and nonadministration of necessary drug, medicament or biological substance','Y','0000-00-00 00:00:00'),(178622,10,'Y63.8 ','Failure in dosage during other surgical and medical care','Y','0000-00-00 00:00:00'),(178623,10,'Y63.9 ','Failure in dosage during unspecified surgical and medical care','Y','0000-00-00 00:00:00'),(178624,10,'Y64.0 ','Contaminated medical or biological substance, transfused or infused','Y','0000-00-00 00:00:00'),(178625,10,'Y64.1 ','Contaminated medical or biological substance, injected or used for immunization','Y','0000-00-00 00:00:00'),(178626,10,'Y64.8 ','Contaminated medical or biological substance administered by other means','Y','0000-00-00 00:00:00'),(178627,10,'Y64.9 ','Contaminated medical or biological substance administered by unspecified means','Y','0000-00-00 00:00:00'),(178628,10,'Y65.0 ','Mismatched blood in transfusion','Y','0000-00-00 00:00:00'),(178629,10,'Y65.1 ','Wrong fluid used in infusion','Y','0000-00-00 00:00:00'),(178630,10,'Y65.2 ','Failure in suture or ligature during surgical operation','Y','0000-00-00 00:00:00'),(178631,10,'Y65.3 ','Endotracheal tube wrongly placed during anesthetic procedure','Y','0000-00-00 00:00:00'),(178632,10,'Y65.4 ','Failure to introduce or to remove other tube or instrument','Y','0000-00-00 00:00:00'),(178633,10,'Y65.51 ','Performance of wrong procedure (operation) on correct patient','Y','0000-00-00 00:00:00'),(178634,10,'Y65.52 ','Performance of procedure (operation) on patient not scheduled for surgery','Y','0000-00-00 00:00:00'),(178635,10,'Y65.53 ','Performance of correct procedure (operation) on wrong side or body part','Y','0000-00-00 00:00:00'),(178636,10,'Y65.8 ','Other specified misadventures during surgical and medical care','Y','0000-00-00 00:00:00'),(178637,10,'Y66','Nonadministration of surgical and medical care','Y','0000-00-00 00:00:00'),(178638,10,'Y69','Unspecified misadventure during surgical and medical care','Y','0000-00-00 00:00:00'),(178639,10,'Y70.0 ','Diagnostic and monitoring anesthesiology devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178640,10,'Y70.1 ','Therapeutic (nonsurgical) and rehabilitative anesthesiology devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178641,10,'Y70.2 ','Prosthetic and other implants, materials and accessory anesthesiology devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178642,10,'Y70.3 ','Surgical instruments, materials and anesthesiology devices (including sutures) associated with adverse incidents','Y','0000-00-00 00:00:00'),(178643,10,'Y70.8 ','Miscellaneous anesthesiology devices associated with adverse incidents, not elsewhere classified','Y','0000-00-00 00:00:00'),(178644,10,'Y71.0 ','Diagnostic and monitoring cardiovascular devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178645,10,'Y71.1 ','Therapeutic (nonsurgical) and rehabilitative cardiovascular devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178646,10,'Y71.2 ','Prosthetic and other implants, materials and accessory cardiovascular devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178647,10,'Y71.3 ','Surgical instruments, materials and cardiovascular devices (including sutures) associated with adverse incidents','Y','0000-00-00 00:00:00'),(178648,10,'Y71.8 ','Miscellaneous cardiovascular devices associated with adverse incidents, not elsewhere classified','Y','0000-00-00 00:00:00'),(178649,10,'Y72.0 ','Diagnostic and monitoring otorhinolaryngological devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178650,10,'Y72.1 ','Therapeutic (nonsurgical) and rehabilitative otorhinolaryngological devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178651,10,'Y72.2 ','Prosthetic and other implants, materials and accessory otorhinolaryngological devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178652,10,'Y72.3 ','Surgical instruments, materials and otorhinolaryngological devices (including sutures) associated with adverse incidents','Y','0000-00-00 00:00:00'),(178653,10,'Y72.8 ','Miscellaneous otorhinolaryngological devices associated with adverse incidents, not elsewhere classified','Y','0000-00-00 00:00:00'),(178654,10,'Y73.0 ','Diagnostic and monitoring gastroenterology and urology devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178655,10,'Y73.1 ','Therapeutic (nonsurgical) and rehabilitative gastroenterology and urology devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178656,10,'Y73.2 ','Prosthetic and other implants, materials and accessory gastroenterology and urology devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178657,10,'Y73.3 ','Surgical instruments, materials and gastroenterology and urology devices (including sutures) associated with adverse incidents','Y','0000-00-00 00:00:00'),(178658,10,'Y73.8 ','Miscellaneous gastroenterology and urology devices associated with adverse incidents, not elsewhere classified','Y','0000-00-00 00:00:00'),(178659,10,'Y74.0 ','Diagnostic and monitoring general hospital and personal-use devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178660,10,'Y74.1 ','Therapeutic (nonsurgical) and rehabilitative general hospital and personal-use devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178661,10,'Y74.2 ','Prosthetic and other implants, materials and accessory general hospital and personal-use devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178662,10,'Y74.3 ','Surgical instruments, materials and general hospital and personal-use devices (including sutures) associated with adverse incidents','Y','0000-00-00 00:00:00'),(178663,10,'Y74.8 ','Miscellaneous general hospital and personal-use devices associated with adverse incidents, not elsewhere classified','Y','0000-00-00 00:00:00'),(178664,10,'Y75.0 ','Diagnostic and monitoring neurological devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178665,10,'Y75.1 ','Therapeutic (nonsurgical) and rehabilitative neurological devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178666,10,'Y75.2 ','Prosthetic and other implants, materials and neurological devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178667,10,'Y75.3 ','Surgical instruments, materials and neurological devices (including sutures) associated with adverse incidents','Y','0000-00-00 00:00:00'),(178668,10,'Y75.8 ','Miscellaneous neurological devices associated with adverse incidents, not elsewhere classified','Y','0000-00-00 00:00:00'),(178669,10,'Y76.0 ','Diagnostic and monitoring obstetric and gynecological devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178670,10,'Y76.1 ','Therapeutic (nonsurgical) and rehabilitative obstetric and gynecological devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178671,10,'Y76.2 ','Prosthetic and other implants, materials and accessory obstetric and gynecological devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178672,10,'Y76.3 ','Surgical instruments, materials and obstetric and gynecological devices (including sutures) associated with adverse incidents','Y','0000-00-00 00:00:00'),(178673,10,'Y76.8 ','Miscellaneous obstetric and gynecological devices associated with adverse incidents, not elsewhere classified','Y','0000-00-00 00:00:00'),(178674,10,'Y77.0 ','Diagnostic and monitoring ophthalmic devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178675,10,'Y77.11 ','Contact lens associated with adverse incidents','Y','0000-00-00 00:00:00'),(178676,10,'Y77.19 ','Other therapeutic (nonsurgical) and rehabilitative ophthalmic devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178677,10,'Y77.2 ','Prosthetic and other implants, materials and accessory ophthalmic devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178678,10,'Y77.3 ','Surgical instruments, materials and ophthalmic devices (including sutures) associated with adverse incidents','Y','0000-00-00 00:00:00'),(178679,10,'Y77.8 ','Miscellaneous ophthalmic devices associated with adverse incidents, not elsewhere classified','Y','0000-00-00 00:00:00'),(178680,10,'Y78.0 ','Diagnostic and monitoring radiological devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178681,10,'Y78.1 ','Therapeutic (nonsurgical) and rehabilitative radiological devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178682,10,'Y78.2 ','Prosthetic and other implants, materials and accessory radiological devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178683,10,'Y78.3 ','Surgical instruments, materials and radiological devices (including sutures) associated with adverse incidents','Y','0000-00-00 00:00:00'),(178684,10,'Y78.8 ','Miscellaneous radiological devices associated with adverse incidents, not elsewhere classified','Y','0000-00-00 00:00:00'),(178685,10,'Y79.0 ','Diagnostic and monitoring orthopedic devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178686,10,'Y79.1 ','Therapeutic (nonsurgical) and rehabilitative orthopedic devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178687,10,'Y79.2 ','Prosthetic and other implants, materials and accessory orthopedic devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178688,10,'Y79.3 ','Surgical instruments, materials and orthopedic devices (including sutures) associated with adverse incidents','Y','0000-00-00 00:00:00'),(178689,10,'Y79.8 ','Miscellaneous orthopedic devices associated with adverse incidents, not elsewhere classified','Y','0000-00-00 00:00:00'),(178690,10,'Y80.0 ','Diagnostic and monitoring physical medicine devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178691,10,'Y80.1 ','Therapeutic (nonsurgical) and rehabilitative physical medicine devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178692,10,'Y80.2 ','Prosthetic and other implants, materials and accessory physical medicine devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178693,10,'Y80.3 ','Surgical instruments, materials and physical medicine devices (including sutures) associated with adverse incidents','Y','0000-00-00 00:00:00'),(178694,10,'Y80.8 ','Miscellaneous physical medicine devices associated with adverse incidents, not elsewhere classified','Y','0000-00-00 00:00:00'),(178695,10,'Y81.0 ','Diagnostic and monitoring general- and plastic-surgery devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178696,10,'Y81.1 ','Therapeutic (nonsurgical) and rehabilitative general- and plastic-surgery devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178697,10,'Y81.2 ','Prosthetic and other implants, materials and accessory general- and plastic-surgery devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178698,10,'Y81.3 ','Surgical instruments, materials and general- and plastic-surgery devices (including sutures) associated with adverse incidents','Y','0000-00-00 00:00:00'),(178699,10,'Y81.8 ','Miscellaneous general- and plastic-surgery devices associated with adverse incidents, not elsewhere classified','Y','0000-00-00 00:00:00'),(178700,10,'Y82.8 ','Other medical devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178701,10,'Y82.9 ','Unspecified medical devices associated with adverse incidents','Y','0000-00-00 00:00:00'),(178702,10,'Y83.0 ','Surgical operation with transplant of whole organ as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178703,10,'Y83.1 ','Surgical operation with implant of artificial internal device as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178704,10,'Y83.2 ','Surgical operation with anastomosis, bypass or graft as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178705,10,'Y83.3 ','Surgical operation with formation of external stoma as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178706,10,'Y83.4 ','Other reconstructive surgery as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178707,10,'Y83.5 ','Amputation of limb(s) as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178708,10,'Y83.6 ','Removal of other organ (partial) (total) as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178709,10,'Y83.8 ','Other surgical procedures as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178710,10,'Y83.9 ','Surgical procedure, unspecified as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178711,10,'Y84.0 ','Cardiac catheterization as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178712,10,'Y84.1 ','Kidney dialysis as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178713,10,'Y84.2 ','Radiological procedure and radiotherapy as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178714,10,'Y84.3 ','Shock therapy as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178715,10,'Y84.4 ','Aspiration of fluid as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178716,10,'Y84.5 ','Insertion of gastric or duodenal sound as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178717,10,'Y84.6 ','Urinary catheterization as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178718,10,'Y84.7 ','Blood-sampling as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178719,10,'Y84.8 ','Other medical procedures as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178720,10,'Y84.9 ','Medical procedure, unspecified as the cause of abnormal reaction of the patient, or of later complication, without mention of misadventure at the time of the procedure','Y','0000-00-00 00:00:00'),(178721,10,'Y90.0 ','Blood alcohol level of less than 20 mg/100 ml','Y','0000-00-00 00:00:00'),(178722,10,'Y90.1 ','Blood alcohol level of 20-39 mg/100 ml','Y','0000-00-00 00:00:00'),(178723,10,'Y90.2 ','Blood alcohol level of 40-59 mg/100 ml','Y','0000-00-00 00:00:00'),(178724,10,'Y90.3 ','Blood alcohol level of 60-79 mg/100 ml','Y','0000-00-00 00:00:00'),(178725,10,'Y90.4 ','Blood alcohol level of 80-99 mg/100 ml','Y','0000-00-00 00:00:00'),(178726,10,'Y90.5 ','Blood alcohol level of 100-119 mg/100 ml','Y','0000-00-00 00:00:00'),(178727,10,'Y90.6 ','Blood alcohol level of 120-199 mg/100 ml','Y','0000-00-00 00:00:00'),(178728,10,'Y90.7 ','Blood alcohol level of 200-239 mg/100 ml','Y','0000-00-00 00:00:00'),(178729,10,'Y90.8 ','Blood alcohol level of 240 mg/100 ml or more','Y','0000-00-00 00:00:00'),(178730,10,'Y90.9 ','Presence of alcohol in blood, level not specified','Y','0000-00-00 00:00:00'),(178731,10,'Y92.000 ','Kitchen of unspecified non-institutional (private) residence as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178732,10,'Y92.001 ','Dining room of unspecified non-institutional (private) residence as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178733,10,'Y92.002 ','Bathroom of unspecified non-institutional (private) residence as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178734,10,'Y92.003 ','Bedroom of unspecified non-institutional (private) residence as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178735,10,'Y92.007 ','Garden or yard of unspecified non-institutional (private) residence as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178736,10,'Y92.008 ','Other place in unspecified non-institutional (private) residence as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178737,10,'Y92.009 ','Unspecified place in unspecified non-institutional (private) residence as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178738,10,'Y92.010 ','Kitchen of single-family (private) house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178739,10,'Y92.011 ','Dining room of single-family (private) house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178740,10,'Y92.012 ','Bathroom of single-family (private) house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178741,10,'Y92.013 ','Bedroom of single-family (private) house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178742,10,'Y92.014 ','Private driveway to single-family (private) house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178743,10,'Y92.015 ','Private garage of single-family (private) house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178744,10,'Y92.016 ','Swimming-pool in single-family (private) house or garden as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178745,10,'Y92.017 ','Garden or yard in single-family (private) house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178746,10,'Y92.018 ','Other place in single-family (private) house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178747,10,'Y92.019 ','Unspecified place in single-family (private) house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178748,10,'Y92.020 ','Kitchen in mobile home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178749,10,'Y92.021 ','Dining room in mobile home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178750,10,'Y92.022 ','Bathroom in mobile home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178751,10,'Y92.023 ','Bedroom in mobile home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178752,10,'Y92.024 ','Driveway of mobile home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178753,10,'Y92.025 ','Garage of mobile home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178754,10,'Y92.026 ','Swimming-pool of mobile home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178755,10,'Y92.027 ','Garden or yard of mobile home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178756,10,'Y92.028 ','Other place in mobile home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178757,10,'Y92.029 ','Unspecified place in mobile home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178758,10,'Y92.030 ','Kitchen in apartment as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178759,10,'Y92.031 ','Bathroom in apartment as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178760,10,'Y92.032 ','Bedroom in apartment as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178761,10,'Y92.038 ','Other place in apartment as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178762,10,'Y92.039 ','Unspecified place in apartment as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178763,10,'Y92.040 ','Kitchen in boarding-house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178764,10,'Y92.041 ','Bathroom in boarding-house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178765,10,'Y92.042 ','Bedroom in boarding-house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178766,10,'Y92.043 ','Driveway of boarding-house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178767,10,'Y92.044 ','Garage of boarding-house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178768,10,'Y92.045 ','Swimming-pool of boarding-house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178769,10,'Y92.046 ','Garden or yard of boarding-house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178770,10,'Y92.048 ','Other place in boarding-house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178771,10,'Y92.049 ','Unspecified place in boarding-house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178772,10,'Y92.090 ','Kitchen in other non-institutional residence as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178773,10,'Y92.091 ','Bathroom in other non-institutional residence as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178774,10,'Y92.092 ','Bedroom in other non-institutional residence as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178775,10,'Y92.093 ','Driveway of other non-institutional residence as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178776,10,'Y92.094 ','Garage of other non-institutional residence as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178777,10,'Y92.095 ','Swimming-pool of other non-institutional residence as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178778,10,'Y92.096 ','Garden or yard of other non-institutional residence as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178779,10,'Y92.098 ','Other place in other non-institutional residence as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178780,10,'Y92.099 ','Unspecified place in other non-institutional residence as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178781,10,'Y92.10 ','Unspecified residential institution as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178782,10,'Y92.110 ','Kitchen in children\'s home and orphanage as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178783,10,'Y92.111 ','Bathroom in children\'s home and orphanage as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178784,10,'Y92.112 ','Bedroom in children\'s home and orphanage as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178785,10,'Y92.113 ','Driveway of children\'s home and orphanage as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178786,10,'Y92.114 ','Garage of children\'s home and orphanage as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178787,10,'Y92.115 ','Swimming-pool of children\'s home and orphanage as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178788,10,'Y92.116 ','Garden or yard of children\'s home and orphanage as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178789,10,'Y92.118 ','Other place in children\'s home and orphanage as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178790,10,'Y92.119 ','Unspecified place in children\'s home and orphanage as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178791,10,'Y92.120 ','Kitchen in nursing home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178792,10,'Y92.121 ','Bathroom in nursing home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178793,10,'Y92.122 ','Bedroom in nursing home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178794,10,'Y92.123 ','Driveway of nursing home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178795,10,'Y92.124 ','Garage of nursing home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178796,10,'Y92.125 ','Swimming-pool of nursing home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178797,10,'Y92.126 ','Garden or yard of nursing home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178798,10,'Y92.128 ','Other place in nursing home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178799,10,'Y92.129 ','Unspecified place in nursing home as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178800,10,'Y92.130 ','Kitchen on military base as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178801,10,'Y92.131 ','Mess hall on military base as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178802,10,'Y92.133 ','Barracks on military base as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178803,10,'Y92.135 ','Garage on military base as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178804,10,'Y92.136 ','Swimming-pool on military base as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178805,10,'Y92.137 ','Garden or yard on military base as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178806,10,'Y92.138 ','Other place on military base as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178807,10,'Y92.139 ','Unspecified place military base as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178808,10,'Y92.140 ','Kitchen in prison as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178809,10,'Y92.141 ','Dining room in prison as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178810,10,'Y92.142 ','Bathroom in prison as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178811,10,'Y92.143 ','Cell of prison as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178812,10,'Y92.146 ','Swimming-pool of prison as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178813,10,'Y92.147 ','Courtyard of prison as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178814,10,'Y92.148 ','Other place in prison as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178815,10,'Y92.149 ','Unspecified place in prison as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178816,10,'Y92.150 ','Kitchen in reform school as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178817,10,'Y92.151 ','Dining room in reform school as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178818,10,'Y92.152 ','Bathroom in reform school as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178819,10,'Y92.153 ','Bedroom in reform school as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178820,10,'Y92.154 ','Driveway of reform school as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178821,10,'Y92.155 ','Garage of reform school as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178822,10,'Y92.156 ','Swimming-pool of reform school as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178823,10,'Y92.157 ','Garden or yard of reform school as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178824,10,'Y92.158 ','Other place in reform school as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178825,10,'Y92.159 ','Unspecified place in reform school as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178826,10,'Y92.160 ','Kitchen in school dormitory as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178827,10,'Y92.161 ','Dining room in school dormitory as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178828,10,'Y92.162 ','Bathroom in school dormitory as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178829,10,'Y92.163 ','Bedroom in school dormitory as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178830,10,'Y92.168 ','Other place in school dormitory as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178831,10,'Y92.169 ','Unspecified place in school dormitory as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178832,10,'Y92.190 ','Kitchen in other specified residential institution as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178833,10,'Y92.191 ','Dining room in other specified residential institution as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178834,10,'Y92.192 ','Bathroom in other specified residential institution as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178835,10,'Y92.193 ','Bedroom in other specified residential institution as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178836,10,'Y92.194 ','Driveway of other specified residential institution as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178837,10,'Y92.195 ','Garage of other specified residential institution as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178838,10,'Y92.196 ','Pool of other specified residential institution as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178839,10,'Y92.197 ','Garden or yard of other specified residential institution as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178840,10,'Y92.198 ','Other place in other specified residential institution as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178841,10,'Y92.199 ','Unspecified place in other specified residential institution as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178842,10,'Y92.210 ','Daycare center as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178843,10,'Y92.211 ','Elementary school as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178844,10,'Y92.212 ','Middle school as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178845,10,'Y92.213 ','High school as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178846,10,'Y92.214 ','College as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178847,10,'Y92.215 ','Trade school as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178848,10,'Y92.218 ','Other school as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178849,10,'Y92.219 ','Unspecified school as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178850,10,'Y92.22 ','Religious institution as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178851,10,'Y92.230 ','Patient room in hospital as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178852,10,'Y92.231 ','Patient bathroom in hospital as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178853,10,'Y92.232 ','Corridor of hospital as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178854,10,'Y92.233 ','Cafeteria of hospital as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178855,10,'Y92.234 ','Operating room of hospital as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178856,10,'Y92.238 ','Other place in hospital as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178857,10,'Y92.239 ','Unspecified place in hospital as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178858,10,'Y92.240 ','Courthouse as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178859,10,'Y92.241 ','Library as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178860,10,'Y92.242 ','Post office as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178861,10,'Y92.243 ','City hall as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178862,10,'Y92.248 ','Other public administrative building as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178863,10,'Y92.250 ','Art Gallery as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178864,10,'Y92.251 ','Museum as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178865,10,'Y92.252 ','Music hall as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178866,10,'Y92.253 ','Opera house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178867,10,'Y92.254 ','Theater (live) as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178868,10,'Y92.258 ','Other cultural public building as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178869,10,'Y92.26 ','Movie house or cinema as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178870,10,'Y92.29 ','Other specified public building as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178871,10,'Y92.310 ','Basketball court as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178872,10,'Y92.311 ','Squash court as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178873,10,'Y92.312 ','Tennis court as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178874,10,'Y92.318 ','Other athletic court as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178875,10,'Y92.320 ','Baseball field as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178876,10,'Y92.321 ','Football field as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178877,10,'Y92.322 ','Soccer field as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178878,10,'Y92.328 ','Other athletic field as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178879,10,'Y92.330 ','Ice skating rink (indoor) (outdoor) as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178880,10,'Y92.331 ','Roller skating rink as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178881,10,'Y92.34 ','Swimming pool (public) as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178882,10,'Y92.39 ','Other specified sports and athletic area as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178883,10,'Y92.410 ','Unspecified street and highway as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178884,10,'Y92.411 ','Interstate highway as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178885,10,'Y92.412 ','Parkway as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178886,10,'Y92.413 ','State road as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178887,10,'Y92.414 ','Local residential or business street as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178888,10,'Y92.415 ','Exit ramp or entrance ramp of street or highway as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178889,10,'Y92.480 ','Sidewalk as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178890,10,'Y92.481 ','Parking lot as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178891,10,'Y92.482 ','Bike path as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178892,10,'Y92.488 ','Other paved roadways as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178893,10,'Y92.510 ','Bank as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178894,10,'Y92.511 ','Restaurant or cafe as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178895,10,'Y92.512 ','Supermarket, store or market as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178896,10,'Y92.513 ','Shop (commercial) as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178897,10,'Y92.520 ','Airport as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178898,10,'Y92.521 ','Bus station as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178899,10,'Y92.522 ','Railway station as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178900,10,'Y92.523 ','Highway rest stop as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178901,10,'Y92.524 ','Gas station as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178902,10,'Y92.530 ','Ambulatory surgery center as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178903,10,'Y92.531 ','Health care provider office as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178904,10,'Y92.532 ','Urgent care center as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178905,10,'Y92.538 ','Other ambulatory health services establishments as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178906,10,'Y92.59 ','Other trade areas as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178907,10,'Y92.61 ','Building [any] under construction as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178908,10,'Y92.62 ','Dock or shipyard as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178909,10,'Y92.63 ','Factory as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178910,10,'Y92.64 ','Mine or pit as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178911,10,'Y92.65 ','Oil rig as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178912,10,'Y92.69 ','Other specified industrial and construction area as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178913,10,'Y92.71 ','Barn as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178914,10,'Y92.72 ','Chicken coop as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178915,10,'Y92.73 ','Farm field as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178916,10,'Y92.74 ','Orchard as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178917,10,'Y92.79 ','Other farm location as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178918,10,'Y92.810 ','Car as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178919,10,'Y92.811 ','Bus as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178920,10,'Y92.812 ','Truck as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178921,10,'Y92.813 ','Airplane as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178922,10,'Y92.814 ','Boat as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178923,10,'Y92.815 ','Train as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178924,10,'Y92.816 ','Subway car as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178925,10,'Y92.818 ','Other transport vehicle as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178926,10,'Y92.820 ','Desert as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178927,10,'Y92.821 ','Forest as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178928,10,'Y92.828 ','Other wilderness area as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178929,10,'Y92.830 ','Public park as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178930,10,'Y92.831 ','Amusement park as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178931,10,'Y92.832 ','Beach as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178932,10,'Y92.833 ','Campsite as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178933,10,'Y92.834 ','Zoological garden (Zoo) as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178934,10,'Y92.838 ','Other recreation area as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178935,10,'Y92.84 ','Military training ground as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178936,10,'Y92.85 ','Railroad track as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178937,10,'Y92.86 ','Slaughter house as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178938,10,'Y92.89 ','Other specified places as the place of occurrence of the external cause','Y','0000-00-00 00:00:00'),(178939,10,'Y92.9 ','Unspecified place or not applicable','Y','0000-00-00 00:00:00'),(178940,10,'Y93.01 ','Activity, walking, marching and hiking','Y','0000-00-00 00:00:00'),(178941,10,'Y93.02 ','Activity, running','Y','0000-00-00 00:00:00'),(178942,10,'Y93.11 ','Activity, swimming','Y','0000-00-00 00:00:00'),(178943,10,'Y93.12 ','Activity, springboard and platform diving','Y','0000-00-00 00:00:00'),(178944,10,'Y93.13 ','Activity, water polo','Y','0000-00-00 00:00:00'),(178945,10,'Y93.14 ','Activity, water aerobics and water exercise','Y','0000-00-00 00:00:00'),(178946,10,'Y93.15 ','Activity, underwater diving and snorkeling','Y','0000-00-00 00:00:00'),(178947,10,'Y93.16 ','Activity, rowing, canoeing, kayaking, rafting and tubing','Y','0000-00-00 00:00:00'),(178948,10,'Y93.17 ','Activity, water skiing and wake boarding','Y','0000-00-00 00:00:00'),(178949,10,'Y93.18 ','Activity, surfing, windsurfing and boogie boarding','Y','0000-00-00 00:00:00'),(178950,10,'Y93.19 ','Activity, other involving water and watercraft','Y','0000-00-00 00:00:00'),(178951,10,'Y93.21 ','Activity, ice skating','Y','0000-00-00 00:00:00'),(178952,10,'Y93.22 ','Activity, ice hockey','Y','0000-00-00 00:00:00'),(178953,10,'Y93.23 ','Activity, snow (alpine) (downhill) skiing, snowboarding, sledding, tobogganing and snow tubing','Y','0000-00-00 00:00:00'),(178954,10,'Y93.24 ','Activity, cross country skiing','Y','0000-00-00 00:00:00'),(178955,10,'Y93.29 ','Activity, other involving ice and snow','Y','0000-00-00 00:00:00'),(178956,10,'Y93.31 ','Activity, mountain climbing, rock climbing and wall climbing','Y','0000-00-00 00:00:00'),(178957,10,'Y93.32 ','Activity, rappelling','Y','0000-00-00 00:00:00'),(178958,10,'Y93.33 ','Activity, BASE jumping','Y','0000-00-00 00:00:00'),(178959,10,'Y93.34 ','Activity, bungee jumping','Y','0000-00-00 00:00:00'),(178960,10,'Y93.35 ','Activity, hang gliding','Y','0000-00-00 00:00:00'),(178961,10,'Y93.39 ','Activity, other involving climbing, rappelling and jumping off','Y','0000-00-00 00:00:00'),(178962,10,'Y93.41 ','Activity, dancing','Y','0000-00-00 00:00:00'),(178963,10,'Y93.42 ','Activity, yoga','Y','0000-00-00 00:00:00'),(178964,10,'Y93.43 ','Activity, gymnastics','Y','0000-00-00 00:00:00'),(178965,10,'Y93.44 ','Activity, trampolining','Y','0000-00-00 00:00:00'),(178966,10,'Y93.45 ','Activity, cheerleading','Y','0000-00-00 00:00:00'),(178967,10,'Y93.49 ','Activity, other involving dancing and other rhythmic movements','Y','0000-00-00 00:00:00'),(178968,10,'Y93.51 ','Activity, roller skating (inline) and skateboarding','Y','0000-00-00 00:00:00'),(178969,10,'Y93.52 ','Activity, horseback riding','Y','0000-00-00 00:00:00'),(178970,10,'Y93.53 ','Activity, golf','Y','0000-00-00 00:00:00'),(178971,10,'Y93.54 ','Activity, bowling','Y','0000-00-00 00:00:00'),(178972,10,'Y93.55 ','Activity, bike riding','Y','0000-00-00 00:00:00'),(178973,10,'Y93.56 ','Activity, jumping rope','Y','0000-00-00 00:00:00'),(178974,10,'Y93.57 ','Activity, non-running track and field events','Y','0000-00-00 00:00:00'),(178975,10,'Y93.59 ','Activity, other involving other sports and athletics played individually','Y','0000-00-00 00:00:00'),(178976,10,'Y93.61 ','Activity, american tackle football','Y','0000-00-00 00:00:00'),(178977,10,'Y93.62 ','Activity, american flag or touch football','Y','0000-00-00 00:00:00'),(178978,10,'Y93.63 ','Activity, rugby','Y','0000-00-00 00:00:00'),(178979,10,'Y93.64 ','Activity, baseball','Y','0000-00-00 00:00:00'),(178980,10,'Y93.65 ','Activity, lacrosse and field hockey','Y','0000-00-00 00:00:00'),(178981,10,'Y93.66 ','Activity, soccer','Y','0000-00-00 00:00:00'),(178982,10,'Y93.67 ','Activity, basketball','Y','0000-00-00 00:00:00'),(178983,10,'Y93.68 ','Activity, volleyball (beach) (court)','Y','0000-00-00 00:00:00'),(178984,10,'Y93.6A ','Activity, physical games generally associated with school recess, summer camp and children','Y','0000-00-00 00:00:00'),(178985,10,'Y93.69 ','Activity, other involving other sports and athletics played as a team or group','Y','0000-00-00 00:00:00'),(178986,10,'Y93.71 ','Activity, boxing','Y','0000-00-00 00:00:00'),(178987,10,'Y93.72 ','Activity, wrestling','Y','0000-00-00 00:00:00'),(178988,10,'Y93.73 ','Activity, racquet and hand sports','Y','0000-00-00 00:00:00'),(178989,10,'Y93.74 ','Activity, frisbee','Y','0000-00-00 00:00:00'),(178990,10,'Y93.75 ','Activity, martial arts','Y','0000-00-00 00:00:00'),(178991,10,'Y93.79 ','Activity, other specified sports and athletics','Y','0000-00-00 00:00:00'),(178992,10,'Y93.A1 ','Activity, exercise machines primarily for cardiorespiratory conditioning','Y','0000-00-00 00:00:00'),(178993,10,'Y93.A2 ','Activity, calisthenics','Y','0000-00-00 00:00:00'),(178994,10,'Y93.A3 ','Activity, aerobic and step exercise','Y','0000-00-00 00:00:00'),(178995,10,'Y93.A4 ','Activity, circuit training','Y','0000-00-00 00:00:00'),(178996,10,'Y93.A5 ','Activity, obstacle course','Y','0000-00-00 00:00:00'),(178997,10,'Y93.A6 ','Activity, grass drills','Y','0000-00-00 00:00:00'),(178998,10,'Y93.A9 ','Activity, other involving cardiorespiratory exercise','Y','0000-00-00 00:00:00'),(178999,10,'Y93.B1 ','Activity, exercise machines primarily for muscle strengthening','Y','0000-00-00 00:00:00'),(179000,10,'Y93.B2 ','Activity, push-ups, pull-ups, sit-ups','Y','0000-00-00 00:00:00'),(179001,10,'Y93.B3 ','Activity, free weights','Y','0000-00-00 00:00:00'),(179002,10,'Y93.B4 ','Activity, pilates','Y','0000-00-00 00:00:00'),(179003,10,'Y93.B9 ','Activity, other involving muscle strengthening exercises','Y','0000-00-00 00:00:00'),(179004,10,'Y93.C1 ','Activity, computer keyboarding','Y','0000-00-00 00:00:00'),(179005,10,'Y93.C2 ','Activity, hand held interactive electronic device','Y','0000-00-00 00:00:00'),(179006,10,'Y93.C9 ','Activity, other involving computer technology and electronic devices','Y','0000-00-00 00:00:00'),(179007,10,'Y93.D1 ','Activity, knitting and crocheting','Y','0000-00-00 00:00:00'),(179008,10,'Y93.D2 ','Activity, sewing','Y','0000-00-00 00:00:00'),(179009,10,'Y93.D3 ','Activity, furniture building and finishing','Y','0000-00-00 00:00:00'),(179010,10,'Y93.D9 ','Activity, other involving arts and handcrafts','Y','0000-00-00 00:00:00'),(179011,10,'Y93.E1 ','Activity, personal bathing and showering','Y','0000-00-00 00:00:00'),(179012,10,'Y93.E2 ','Activity, laundry','Y','0000-00-00 00:00:00'),(179013,10,'Y93.E3 ','Activity, vacuuming','Y','0000-00-00 00:00:00'),(179014,10,'Y93.E4 ','Activity, ironing','Y','0000-00-00 00:00:00'),(179015,10,'Y93.E5 ','Activity, floor mopping and cleaning','Y','0000-00-00 00:00:00'),(179016,10,'Y93.E6 ','Activity, residential relocation','Y','0000-00-00 00:00:00'),(179017,10,'Y93.E8 ','Activity, other personal hygiene','Y','0000-00-00 00:00:00'),(179018,10,'Y93.E9 ','Activity, other interior property and clothing maintenance','Y','0000-00-00 00:00:00'),(179019,10,'Y93.F1 ','Activity, caregiving, bathing','Y','0000-00-00 00:00:00'),(179020,10,'Y93.F2 ','Activity, caregiving, lifting','Y','0000-00-00 00:00:00'),(179021,10,'Y93.F9 ','Activity, other caregiving','Y','0000-00-00 00:00:00'),(179022,10,'Y93.G1 ','Activity, food preparation and clean up','Y','0000-00-00 00:00:00'),(179023,10,'Y93.G2 ','Activity, grilling and smoking food','Y','0000-00-00 00:00:00'),(179024,10,'Y93.G3 ','Activity, cooking and baking','Y','0000-00-00 00:00:00'),(179025,10,'Y93.G9 ','Activity, other involving cooking and grilling','Y','0000-00-00 00:00:00'),(179026,10,'Y93.H1 ','Activity, digging, shoveling and raking','Y','0000-00-00 00:00:00'),(179027,10,'Y93.H2 ','Activity, gardening and landscaping','Y','0000-00-00 00:00:00'),(179028,10,'Y93.H3 ','Activity, building and construction','Y','0000-00-00 00:00:00'),(179029,10,'Y93.H9 ','Activity, other involving exterior property and land maintenance, building and construction','Y','0000-00-00 00:00:00'),(179030,10,'Y93.I1 ','Activity, roller coaster riding','Y','0000-00-00 00:00:00'),(179031,10,'Y93.I9 ','Activity, other involving external motion','Y','0000-00-00 00:00:00'),(179032,10,'Y93.J1 ','Activity, piano playing','Y','0000-00-00 00:00:00'),(179033,10,'Y93.J2 ','Activity, drum and other percussion instrument playing','Y','0000-00-00 00:00:00'),(179034,10,'Y93.J3 ','Activity, string instrument playing','Y','0000-00-00 00:00:00'),(179035,10,'Y93.J4 ','Activity, winds and brass instrument playing','Y','0000-00-00 00:00:00'),(179036,10,'Y93.K1 ','Activity, walking an animal','Y','0000-00-00 00:00:00'),(179037,10,'Y93.K2 ','Activity, milking an animal','Y','0000-00-00 00:00:00'),(179038,10,'Y93.K3 ','Activity, grooming and shearing an animal','Y','0000-00-00 00:00:00'),(179039,10,'Y93.K9 ','Activity, other involving animal care','Y','0000-00-00 00:00:00'),(179040,10,'Y93.81 ','Activity, refereeing a sports activity','Y','0000-00-00 00:00:00'),(179041,10,'Y93.82 ','Activity, spectator at an event','Y','0000-00-00 00:00:00'),(179042,10,'Y93.83 ','Activity, rough housing and horseplay','Y','0000-00-00 00:00:00'),(179043,10,'Y93.84 ','Activity, sleeping','Y','0000-00-00 00:00:00'),(179044,10,'Y93.85 ','Activity, choking game','Y','0000-00-00 00:00:00'),(179045,10,'Y93.89 ','Activity, other specified','Y','0000-00-00 00:00:00'),(179046,10,'Y93.9 ','Activity, unspecified','Y','0000-00-00 00:00:00'),(179047,10,'Y95','Nosocomial condition','Y','0000-00-00 00:00:00'),(179048,10,'Y99.0 ','Civilian activity done for income or pay','Y','0000-00-00 00:00:00'),(179049,10,'Y99.1 ','Military activity','Y','0000-00-00 00:00:00'),(179050,10,'Y99.2 ','Volunteer activity','Y','0000-00-00 00:00:00'),(179051,10,'Y99.8 ','Other external cause status','Y','0000-00-00 00:00:00'),(179052,10,'Y99.9 ','Unspecified external cause status','Y','0000-00-00 00:00:00'),(179053,10,'Z00.00 ','Encounter for general adult medical examination without abnormal findings','Y','0000-00-00 00:00:00'),(179054,10,'Z00.01 ','Encounter for general adult medical examination with abnormal findings','Y','0000-00-00 00:00:00'),(179055,10,'Z00.110 ','Health examination for newborn under 8 days old','Y','0000-00-00 00:00:00'),(179056,10,'Z00.111 ','Health examination for newborn 8 to 28 days old','Y','0000-00-00 00:00:00'),(179057,10,'Z00.121 ','Encounter for routine child health examination with abnormal findings','Y','0000-00-00 00:00:00'),(179058,10,'Z00.129 ','Encounter for routine child health examination without abnormal findings','Y','0000-00-00 00:00:00'),(179059,10,'Z00.2 ','Encounter for examination for period of rapid growth in childhood','Y','0000-00-00 00:00:00'),(179060,10,'Z00.3 ','Encounter for examination for adolescent development state','Y','0000-00-00 00:00:00'),(179061,10,'Z00.5 ','Encounter for examination of potential donor of organ and tissue','Y','0000-00-00 00:00:00'),(179062,10,'Z00.6 ','Encounter for examination for normal comparison and control in clinical research program','Y','0000-00-00 00:00:00'),(179063,10,'Z00.70 ','Encounter for examination for period of delayed growth in childhood without abnormal findings','Y','0000-00-00 00:00:00'),(179064,10,'Z00.71 ','Encounter for examination for period of delayed growth in childhood with abnormal findings','Y','0000-00-00 00:00:00'),(179065,10,'Z00.8 ','Encounter for other general examination','Y','0000-00-00 00:00:00'),(179066,10,'Z01.00 ','Encounter for examination of eyes and vision without abnormal findings','Y','0000-00-00 00:00:00'),(179067,10,'Z01.01 ','Encounter for examination of eyes and vision with abnormal findings','Y','0000-00-00 00:00:00'),(179068,10,'Z01.020 ','Encounter for examination of eyes and vision following failed vision screening without abnormal findings','Y','0000-00-00 00:00:00'),(179069,10,'Z01.021 ','Encounter for examination of eyes and vision following failed vision screening with abnormal findings','Y','0000-00-00 00:00:00'),(179070,10,'Z01.10 ','Encounter for examination of ears and hearing without abnormal findings','Y','0000-00-00 00:00:00'),(179071,10,'Z01.110 ','Encounter for hearing examination following failed hearing screening','Y','0000-00-00 00:00:00'),(179072,10,'Z01.118 ','Encounter for examination of ears and hearing with other abnormal findings','Y','0000-00-00 00:00:00'),(179073,10,'Z01.12 ','Encounter for hearing conservation and treatment','Y','0000-00-00 00:00:00'),(179074,10,'Z01.20 ','Encounter for dental examination and cleaning without abnormal findings','Y','0000-00-00 00:00:00'),(179075,10,'Z01.21 ','Encounter for dental examination and cleaning with abnormal findings','Y','0000-00-00 00:00:00'),(179076,10,'Z01.30 ','Encounter for examination of blood pressure without abnormal findings','Y','0000-00-00 00:00:00'),(179077,10,'Z01.31 ','Encounter for examination of blood pressure with abnormal findings','Y','0000-00-00 00:00:00'),(179078,10,'Z01.411 ','Encounter for gynecological examination (general) (routine) with abnormal findings','Y','0000-00-00 00:00:00'),(179079,10,'Z01.419 ','Encounter for gynecological examination (general) (routine) without abnormal findings','Y','0000-00-00 00:00:00'),(179080,10,'Z01.42 ','Encounter for cervical smear to confirm findings of recent normal smear following initial abnormal smear','Y','0000-00-00 00:00:00'),(179081,10,'Z01.810 ','Encounter for preprocedural cardiovascular examination','Y','0000-00-00 00:00:00'),(179082,10,'Z01.811 ','Encounter for preprocedural respiratory examination','Y','0000-00-00 00:00:00'),(179083,10,'Z01.812 ','Encounter for preprocedural laboratory examination','Y','0000-00-00 00:00:00'),(179084,10,'Z01.818 ','Encounter for other preprocedural examination','Y','0000-00-00 00:00:00'),(179085,10,'Z01.82 ','Encounter for allergy testing','Y','0000-00-00 00:00:00'),(179086,10,'Z01.83 ','Encounter for blood typing','Y','0000-00-00 00:00:00'),(179087,10,'Z01.84 ','Encounter for antibody response examination','Y','0000-00-00 00:00:00'),(179088,10,'Z01.89 ','Encounter for other specified special examinations','Y','0000-00-00 00:00:00'),(179089,10,'Z02.0 ','Encounter for examination for admission to educational institution','Y','0000-00-00 00:00:00'),(179090,10,'Z02.1 ','Encounter for pre-employment examination','Y','0000-00-00 00:00:00'),(179091,10,'Z02.2 ','Encounter for examination for admission to residential institution','Y','0000-00-00 00:00:00'),(179092,10,'Z02.3 ','Encounter for examination for recruitment to armed forces','Y','0000-00-00 00:00:00'),(179093,10,'Z02.4 ','Encounter for examination for driving license','Y','0000-00-00 00:00:00'),(179094,10,'Z02.5 ','Encounter for examination for participation in sport','Y','0000-00-00 00:00:00'),(179095,10,'Z02.6 ','Encounter for examination for insurance purposes','Y','0000-00-00 00:00:00'),(179096,10,'Z02.71 ','Encounter for disability determination','Y','0000-00-00 00:00:00'),(179097,10,'Z02.79 ','Encounter for issue of other medical certificate','Y','0000-00-00 00:00:00'),(179098,10,'Z02.81 ','Encounter for paternity testing','Y','0000-00-00 00:00:00'),(179099,10,'Z02.82 ','Encounter for adoption services','Y','0000-00-00 00:00:00'),(179100,10,'Z02.83 ','Encounter for blood-alcohol and blood-drug test','Y','0000-00-00 00:00:00'),(179101,10,'Z02.84 ','Encounter for child welfare exam','Y','0000-00-00 00:00:00'),(179102,10,'Z02.89 ','Encounter for other administrative examinations','Y','0000-00-00 00:00:00'),(179103,10,'Z02.9 ','Encounter for administrative examinations, unspecified','Y','0000-00-00 00:00:00'),(179104,10,'Z03.6 ','Encounter for observation for suspected toxic effect from ingested substance ruled out','Y','0000-00-00 00:00:00'),(179105,10,'Z03.71 ','Encounter for suspected problem with amniotic cavity and membrane ruled out','Y','0000-00-00 00:00:00'),(179106,10,'Z03.72 ','Encounter for suspected placental problem ruled out','Y','0000-00-00 00:00:00'),(179107,10,'Z03.73 ','Encounter for suspected fetal anomaly ruled out','Y','0000-00-00 00:00:00'),(179108,10,'Z03.74 ','Encounter for suspected problem with fetal growth ruled out','Y','0000-00-00 00:00:00'),(179109,10,'Z03.75 ','Encounter for suspected cervical shortening ruled out','Y','0000-00-00 00:00:00'),(179110,10,'Z03.79 ','Encounter for other suspected maternal and fetal conditions ruled out','Y','0000-00-00 00:00:00'),(179111,10,'Z03.810 ','Encounter for observation for suspected exposure to anthrax ruled out','Y','0000-00-00 00:00:00'),(179112,10,'Z03.818 ','Encounter for observation for suspected exposure to other biological agents ruled out','Y','0000-00-00 00:00:00'),(179113,10,'Z03.821 ','Encounter for observation for suspected ingested foreign body ruled out','Y','0000-00-00 00:00:00'),(179114,10,'Z03.822 ','Encounter for observation for suspected aspirated (inhaled) foreign body ruled out','Y','0000-00-00 00:00:00'),(179115,10,'Z03.823 ','Encounter for observation for suspected inserted (injected) foreign body ruled out','Y','0000-00-00 00:00:00'),(179116,10,'Z03.83 ','Encounter for observation for suspected conditions related to home physiologic monitoring device ruled out','Y','0000-00-00 00:00:00'),(179117,10,'Z03.89 ','Encounter for observation for other suspected diseases and conditions ruled out','Y','0000-00-00 00:00:00'),(179118,10,'Z04.1 ','Encounter for examination and observation following transport accident','Y','0000-00-00 00:00:00'),(179119,10,'Z04.2 ','Encounter for examination and observation following work accident','Y','0000-00-00 00:00:00'),(179120,10,'Z04.3 ','Encounter for examination and observation following other accident','Y','0000-00-00 00:00:00'),(179121,10,'Z04.41 ','Encounter for examination and observation following alleged adult rape','Y','0000-00-00 00:00:00'),(179122,10,'Z04.42 ','Encounter for examination and observation following alleged child rape','Y','0000-00-00 00:00:00'),(179123,10,'Z04.6 ','Encounter for general psychiatric examination, requested by authority','Y','0000-00-00 00:00:00'),(179124,10,'Z04.71 ','Encounter for examination and observation following alleged adult physical abuse','Y','0000-00-00 00:00:00'),(179125,10,'Z04.72 ','Encounter for examination and observation following alleged child physical abuse','Y','0000-00-00 00:00:00'),(179126,10,'Z04.81 ','Encounter for examination and observation of victim following forced sexual exploitation','Y','0000-00-00 00:00:00'),(179127,10,'Z04.82 ','Encounter for examination and observation of victim following forced labor exploitation','Y','0000-00-00 00:00:00'),(179128,10,'Z04.89 ','Encounter for examination and observation for other specified reasons','Y','0000-00-00 00:00:00'),(179129,10,'Z04.9 ','Encounter for examination and observation for unspecified reason','Y','0000-00-00 00:00:00'),(179130,10,'Z05.0 ','Observation and evaluation of newborn for suspected cardiac condition ruled out','Y','0000-00-00 00:00:00'),(179131,10,'Z05.1 ','Observation and evaluation of newborn for suspected infectious condition ruled out','Y','0000-00-00 00:00:00'),(179132,10,'Z05.2 ','Observation and evaluation of newborn for suspected neurological condition ruled out','Y','0000-00-00 00:00:00'),(179133,10,'Z05.3 ','Observation and evaluation of newborn for suspected respiratory condition ruled out','Y','0000-00-00 00:00:00'),(179134,10,'Z05.41 ','Observation and evaluation of newborn for suspected genetic condition ruled out','Y','0000-00-00 00:00:00'),(179135,10,'Z05.42 ','Observation and evaluation of newborn for suspected metabolic condition ruled out','Y','0000-00-00 00:00:00'),(179136,10,'Z05.43 ','Observation and evaluation of newborn for suspected immunologic condition ruled out','Y','0000-00-00 00:00:00'),(179137,10,'Z05.5 ','Observation and evaluation of newborn for suspected gastrointestinal condition ruled out','Y','0000-00-00 00:00:00'),(179138,10,'Z05.6 ','Observation and evaluation of newborn for suspected genitourinary condition ruled out','Y','0000-00-00 00:00:00'),(179139,10,'Z05.71 ','Observation and evaluation of newborn for suspected skin and subcutaneous tissue condition ruled out','Y','0000-00-00 00:00:00'),(179140,10,'Z05.72 ','Observation and evaluation of newborn for suspected musculoskeletal condition ruled out','Y','0000-00-00 00:00:00'),(179141,10,'Z05.73 ','Observation and evaluation of newborn for suspected connective tissue condition ruled out','Y','0000-00-00 00:00:00'),(179142,10,'Z05.81 ','Observation and evaluation of newborn for suspected condition related to home physiologic monitoring device ruled out','Y','0000-00-00 00:00:00'),(179143,10,'Z05.89 ','Observation and evaluation of newborn for other specified suspected condition ruled out','Y','0000-00-00 00:00:00'),(179144,10,'Z05.9 ','Observation and evaluation of newborn for unspecified suspected condition ruled out','Y','0000-00-00 00:00:00'),(179145,10,'Z08','Encounter for follow-up examination after completed treatment for malignant neoplasm','Y','0000-00-00 00:00:00'),(179146,10,'Z09','Encounter for follow-up examination after completed treatment for conditions other than malignant neoplasm','Y','0000-00-00 00:00:00'),(179147,10,'Z11.0 ','Encounter for screening for intestinal infectious diseases','Y','0000-00-00 00:00:00'),(179148,10,'Z11.1 ','Encounter for screening for respiratory tuberculosis','Y','0000-00-00 00:00:00'),(179149,10,'Z11.2 ','Encounter for screening for other bacterial diseases','Y','0000-00-00 00:00:00'),(179150,10,'Z11.3 ','Encounter for screening for infections with a predominantly sexual mode of transmission','Y','0000-00-00 00:00:00'),(179151,10,'Z11.4 ','Encounter for screening for human immunodeficiency virus [HIV]','Y','0000-00-00 00:00:00'),(179152,10,'Z11.51 ','Encounter for screening for human papillomavirus (HPV)','Y','0000-00-00 00:00:00'),(179153,10,'Z11.52 ','Encounter for screening for COVID-19','Y','0000-00-00 00:00:00'),(179154,10,'Z11.59 ','Encounter for screening for other viral diseases','Y','0000-00-00 00:00:00'),(179155,10,'Z11.6 ','Encounter for screening for other protozoal diseases and helminthiases','Y','0000-00-00 00:00:00'),(179156,10,'Z11.7 ','Encounter for testing for latent tuberculosis infection','Y','0000-00-00 00:00:00'),(179157,10,'Z11.8 ','Encounter for screening for other infectious and parasitic diseases','Y','0000-00-00 00:00:00'),(179158,10,'Z11.9 ','Encounter for screening for infectious and parasitic diseases, unspecified','Y','0000-00-00 00:00:00'),(179159,10,'Z12.0 ','Encounter for screening for malignant neoplasm of stomach','Y','0000-00-00 00:00:00'),(179160,10,'Z12.10 ','Encounter for screening for malignant neoplasm of intestinal tract, unspecified','Y','0000-00-00 00:00:00'),(179161,10,'Z12.11 ','Encounter for screening for malignant neoplasm of colon','Y','0000-00-00 00:00:00'),(179162,10,'Z12.12 ','Encounter for screening for malignant neoplasm of rectum','Y','0000-00-00 00:00:00'),(179163,10,'Z12.13 ','Encounter for screening for malignant neoplasm of small intestine','Y','0000-00-00 00:00:00'),(179164,10,'Z12.2 ','Encounter for screening for malignant neoplasm of respiratory organs','Y','0000-00-00 00:00:00'),(179165,10,'Z12.31 ','Encounter for screening mammogram for malignant neoplasm of breast','Y','0000-00-00 00:00:00'),(179166,10,'Z12.39 ','Encounter for other screening for malignant neoplasm of breast','Y','0000-00-00 00:00:00'),(179167,10,'Z12.4 ','Encounter for screening for malignant neoplasm of cervix','Y','0000-00-00 00:00:00'),(179168,10,'Z12.5 ','Encounter for screening for malignant neoplasm of prostate','Y','0000-00-00 00:00:00'),(179169,10,'Z12.6 ','Encounter for screening for malignant neoplasm of bladder','Y','0000-00-00 00:00:00'),(179170,10,'Z12.71 ','Encounter for screening for malignant neoplasm of testis','Y','0000-00-00 00:00:00'),(179171,10,'Z12.72 ','Encounter for screening for malignant neoplasm of vagina','Y','0000-00-00 00:00:00'),(179172,10,'Z12.73 ','Encounter for screening for malignant neoplasm of ovary','Y','0000-00-00 00:00:00'),(179173,10,'Z12.79 ','Encounter for screening for malignant neoplasm of other genitourinary organs','Y','0000-00-00 00:00:00'),(179174,10,'Z12.81 ','Encounter for screening for malignant neoplasm of oral cavity','Y','0000-00-00 00:00:00'),(179175,10,'Z12.82 ','Encounter for screening for malignant neoplasm of nervous system','Y','0000-00-00 00:00:00'),(179176,10,'Z12.83 ','Encounter for screening for malignant neoplasm of skin','Y','0000-00-00 00:00:00'),(179177,10,'Z12.89 ','Encounter for screening for malignant neoplasm of other sites','Y','0000-00-00 00:00:00'),(179178,10,'Z12.9 ','Encounter for screening for malignant neoplasm, site unspecified','Y','0000-00-00 00:00:00'),(179179,10,'Z13.0 ','Encounter for screening for diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism','Y','0000-00-00 00:00:00'),(179180,10,'Z13.1 ','Encounter for screening for diabetes mellitus','Y','0000-00-00 00:00:00'),(179181,10,'Z13.21 ','Encounter for screening for nutritional disorder','Y','0000-00-00 00:00:00'),(179182,10,'Z13.220 ','Encounter for screening for lipoid disorders','Y','0000-00-00 00:00:00'),(179183,10,'Z13.228 ','Encounter for screening for other metabolic disorders','Y','0000-00-00 00:00:00'),(179184,10,'Z13.29 ','Encounter for screening for other suspected endocrine disorder','Y','0000-00-00 00:00:00'),(179185,10,'Z13.30 ','Encounter for screening examination for mental health and behavioral disorders, unspecified','Y','0000-00-00 00:00:00'),(179186,10,'Z13.31 ','Encounter for screening for depression','Y','0000-00-00 00:00:00'),(179187,10,'Z13.32 ','Encounter for screening for maternal depression','Y','0000-00-00 00:00:00'),(179188,10,'Z13.39 ','Encounter for screening examination for other mental health and behavioral disorders','Y','0000-00-00 00:00:00'),(179189,10,'Z13.40 ','Encounter for screening for unspecified developmental delays','Y','0000-00-00 00:00:00'),(179190,10,'Z13.41 ','Encounter for autism screening','Y','0000-00-00 00:00:00'),(179191,10,'Z13.42 ','Encounter for screening for global developmental delays (milestones)','Y','0000-00-00 00:00:00'),(179192,10,'Z13.49 ','Encounter for screening for other developmental delays','Y','0000-00-00 00:00:00'),(179193,10,'Z13.5 ','Encounter for screening for eye and ear disorders','Y','0000-00-00 00:00:00'),(179194,10,'Z13.6 ','Encounter for screening for cardiovascular disorders','Y','0000-00-00 00:00:00'),(179195,10,'Z13.71 ','Encounter for nonprocreative screening for genetic disease carrier status','Y','0000-00-00 00:00:00'),(179196,10,'Z13.79 ','Encounter for other screening for genetic and chromosomal anomalies','Y','0000-00-00 00:00:00'),(179197,10,'Z13.810 ','Encounter for screening for upper gastrointestinal disorder','Y','0000-00-00 00:00:00'),(179198,10,'Z13.811 ','Encounter for screening for lower gastrointestinal disorder','Y','0000-00-00 00:00:00'),(179199,10,'Z13.818 ','Encounter for screening for other digestive system disorders','Y','0000-00-00 00:00:00'),(179200,10,'Z13.820 ','Encounter for screening for osteoporosis','Y','0000-00-00 00:00:00'),(179201,10,'Z13.828 ','Encounter for screening for other musculoskeletal disorder','Y','0000-00-00 00:00:00'),(179202,10,'Z13.83 ','Encounter for screening for respiratory disorder NEC','Y','0000-00-00 00:00:00'),(179203,10,'Z13.84 ','Encounter for screening for dental disorders','Y','0000-00-00 00:00:00'),(179204,10,'Z13.850 ','Encounter for screening for traumatic brain injury','Y','0000-00-00 00:00:00'),(179205,10,'Z13.858 ','Encounter for screening for other nervous system disorders','Y','0000-00-00 00:00:00'),(179206,10,'Z13.88 ','Encounter for screening for disorder due to exposure to contaminants','Y','0000-00-00 00:00:00'),(179207,10,'Z13.89 ','Encounter for screening for other disorder','Y','0000-00-00 00:00:00'),(179208,10,'Z13.9 ','Encounter for screening, unspecified','Y','0000-00-00 00:00:00'),(179209,10,'Z14.01 ','Asymptomatic hemophilia A carrier','Y','0000-00-00 00:00:00'),(179210,10,'Z14.02 ','Symptomatic hemophilia A carrier','Y','0000-00-00 00:00:00'),(179211,10,'Z14.1 ','Cystic fibrosis carrier','Y','0000-00-00 00:00:00'),(179212,10,'Z14.8 ','Genetic carrier of other disease','Y','0000-00-00 00:00:00'),(179213,10,'Z15.01 ','Genetic susceptibility to malignant neoplasm of breast','Y','0000-00-00 00:00:00'),(179214,10,'Z15.02 ','Genetic susceptibility to malignant neoplasm of ovary','Y','0000-00-00 00:00:00'),(179215,10,'Z15.03 ','Genetic susceptibility to malignant neoplasm of prostate','Y','0000-00-00 00:00:00'),(179216,10,'Z15.04 ','Genetic susceptibility to malignant neoplasm of endometrium','Y','0000-00-00 00:00:00'),(179217,10,'Z15.09 ','Genetic susceptibility to other malignant neoplasm','Y','0000-00-00 00:00:00'),(179218,10,'Z15.81 ','Genetic susceptibility to multiple endocrine neoplasia [MEN]','Y','0000-00-00 00:00:00'),(179219,10,'Z15.89 ','Genetic susceptibility to other disease','Y','0000-00-00 00:00:00'),(179220,10,'Z16.10 ','Resistance to unspecified beta lactam antibiotics','Y','0000-00-00 00:00:00'),(179221,10,'Z16.11 ','Resistance to penicillins','Y','0000-00-00 00:00:00'),(179222,10,'Z16.12 ','Extended spectrum beta lactamase (ESBL) resistance','Y','0000-00-00 00:00:00'),(179223,10,'Z16.13 ','Resistance to carbapenem','Y','0000-00-00 00:00:00'),(179224,10,'Z16.19 ','Resistance to other specified beta lactam antibiotics','Y','0000-00-00 00:00:00'),(179225,10,'Z16.20 ','Resistance to unspecified antibiotic','Y','0000-00-00 00:00:00'),(179226,10,'Z16.21 ','Resistance to vancomycin','Y','0000-00-00 00:00:00'),(179227,10,'Z16.22 ','Resistance to vancomycin related antibiotics','Y','0000-00-00 00:00:00'),(179228,10,'Z16.23 ','Resistance to quinolones and fluoroquinolones','Y','0000-00-00 00:00:00'),(179229,10,'Z16.24 ','Resistance to multiple antibiotics','Y','0000-00-00 00:00:00'),(179230,10,'Z16.29 ','Resistance to other single specified antibiotic','Y','0000-00-00 00:00:00'),(179231,10,'Z16.30 ','Resistance to unspecified antimicrobial drugs','Y','0000-00-00 00:00:00'),(179232,10,'Z16.31 ','Resistance to antiparasitic drug(s)','Y','0000-00-00 00:00:00'),(179233,10,'Z16.32 ','Resistance to antifungal drug(s)','Y','0000-00-00 00:00:00'),(179234,10,'Z16.33 ','Resistance to antiviral drug(s)','Y','0000-00-00 00:00:00'),(179235,10,'Z16.341 ','Resistance to single antimycobacterial drug','Y','0000-00-00 00:00:00'),(179236,10,'Z16.342 ','Resistance to multiple antimycobacterial drugs','Y','0000-00-00 00:00:00'),(179237,10,'Z16.35 ','Resistance to multiple antimicrobial drugs','Y','0000-00-00 00:00:00'),(179238,10,'Z16.39 ','Resistance to other specified antimicrobial drug','Y','0000-00-00 00:00:00'),(179239,10,'Z17.0 ','Estrogen receptor positive status [ER+]','Y','0000-00-00 00:00:00'),(179240,10,'Z17.1 ','Estrogen receptor negative status [ER-]','Y','0000-00-00 00:00:00'),(179241,10,'Z18.01 ','Retained depleted uranium fragments','Y','0000-00-00 00:00:00'),(179242,10,'Z18.09 ','Other retained radioactive fragments','Y','0000-00-00 00:00:00'),(179243,10,'Z18.10 ','Retained metal fragments, unspecified','Y','0000-00-00 00:00:00'),(179244,10,'Z18.11 ','Retained magnetic metal fragments','Y','0000-00-00 00:00:00'),(179245,10,'Z18.12 ','Retained nonmagnetic metal fragments','Y','0000-00-00 00:00:00'),(179246,10,'Z18.2 ','Retained plastic fragments','Y','0000-00-00 00:00:00'),(179247,10,'Z18.31 ','Retained animal quills or spines','Y','0000-00-00 00:00:00'),(179248,10,'Z18.32 ','Retained tooth','Y','0000-00-00 00:00:00'),(179249,10,'Z18.33 ','Retained wood fragments','Y','0000-00-00 00:00:00'),(179250,10,'Z18.39 ','Other retained organic fragments','Y','0000-00-00 00:00:00'),(179251,10,'Z18.81 ','Retained glass fragments','Y','0000-00-00 00:00:00'),(179252,10,'Z18.83 ','Retained stone or crystalline fragments','Y','0000-00-00 00:00:00'),(179253,10,'Z18.89 ','Other specified retained foreign body fragments','Y','0000-00-00 00:00:00'),(179254,10,'Z18.9 ','Retained foreign body fragments, unspecified material','Y','0000-00-00 00:00:00'),(179255,10,'Z19.1 ','Hormone sensitive malignancy status','Y','0000-00-00 00:00:00'),(179256,10,'Z19.2 ','Hormone resistant malignancy status','Y','0000-00-00 00:00:00'),(179257,10,'Z20.01 ','Contact with and (suspected) exposure to intestinal infectious diseases due to Escherichia coli (E. coli)','Y','0000-00-00 00:00:00'),(179258,10,'Z20.09 ','Contact with and (suspected) exposure to other intestinal infectious diseases','Y','0000-00-00 00:00:00'),(179259,10,'Z20.1 ','Contact with and (suspected) exposure to tuberculosis','Y','0000-00-00 00:00:00'),(179260,10,'Z20.2 ','Contact with and (suspected) exposure to infections with a predominantly sexual mode of transmission','Y','0000-00-00 00:00:00'),(179261,10,'Z20.3 ','Contact with and (suspected) exposure to rabies','Y','0000-00-00 00:00:00'),(179262,10,'Z20.4 ','Contact with and (suspected) exposure to rubella','Y','0000-00-00 00:00:00'),(179263,10,'Z20.5 ','Contact with and (suspected) exposure to viral hepatitis','Y','0000-00-00 00:00:00'),(179264,10,'Z20.6 ','Contact with and (suspected) exposure to human immunodeficiency virus [HIV]','Y','0000-00-00 00:00:00'),(179265,10,'Z20.7 ','Contact with and (suspected) exposure to pediculosis, acariasis and other infestations','Y','0000-00-00 00:00:00'),(179266,10,'Z20.810 ','Contact with and (suspected) exposure to anthrax','Y','0000-00-00 00:00:00'),(179267,10,'Z20.811 ','Contact with and (suspected) exposure to meningococcus','Y','0000-00-00 00:00:00'),(179268,10,'Z20.818 ','Contact with and (suspected) exposure to other bacterial communicable diseases','Y','0000-00-00 00:00:00'),(179269,10,'Z20.820 ','Contact with and (suspected) exposure to varicella','Y','0000-00-00 00:00:00'),(179270,10,'Z20.821 ','Contact with and (suspected) exposure to Zika virus','Y','0000-00-00 00:00:00'),(179271,10,'Z20.822 ','Contact with and (suspected) exposure to COVID-19','Y','0000-00-00 00:00:00'),(179272,10,'Z20.828 ','Contact with and (suspected) exposure to other viral communicable diseases','Y','0000-00-00 00:00:00'),(179273,10,'Z20.89 ','Contact with and (suspected) exposure to other communicable diseases','Y','0000-00-00 00:00:00'),(179274,10,'Z20.9 ','Contact with and (suspected) exposure to unspecified communicable disease','Y','0000-00-00 00:00:00'),(179275,10,'Z21','Asymptomatic human immunodeficiency virus [HIV] infection status','Y','0000-00-00 00:00:00'),(179276,10,'Z22.0 ','Carrier of typhoid','Y','0000-00-00 00:00:00'),(179277,10,'Z22.1 ','Carrier of other intestinal infectious diseases','Y','0000-00-00 00:00:00'),(179278,10,'Z22.2 ','Carrier of diphtheria','Y','0000-00-00 00:00:00'),(179279,10,'Z22.31 ','Carrier of bacterial disease due to meningococci','Y','0000-00-00 00:00:00'),(179280,10,'Z22.321 ','Carrier or suspected carrier of Methicillin susceptible Staphylococcus aureus','Y','0000-00-00 00:00:00'),(179281,10,'Z22.322 ','Carrier or suspected carrier of Methicillin resistant Staphylococcus aureus','Y','0000-00-00 00:00:00'),(179282,10,'Z22.330 ','Carrier of Group B streptococcus','Y','0000-00-00 00:00:00'),(179283,10,'Z22.338 ','Carrier of other streptococcus','Y','0000-00-00 00:00:00'),(179284,10,'Z22.340 ','Carrier of carbapenem-resistant Acinetobacter baumannii','Y','0000-00-00 00:00:00'),(179285,10,'Z22.341 ','Carrier of carbapenem-sensitive Acinetobacter baumannii','Y','0000-00-00 00:00:00'),(179286,10,'Z22.349 ','Carrier of Acinetobacter baumannii, unspecified','Y','0000-00-00 00:00:00'),(179287,10,'Z22.350 ','Carrier of carbapenem-resistant Enterobacterales','Y','0000-00-00 00:00:00'),(179288,10,'Z22.358 ','Carrier of other Enterobacterales','Y','0000-00-00 00:00:00'),(179289,10,'Z22.359 ','Carrier of Enterobacterales, unspecified','Y','0000-00-00 00:00:00'),(179290,10,'Z22.39 ','Carrier of other specified bacterial diseases','Y','0000-00-00 00:00:00'),(179291,10,'Z22.4 ','Carrier of infections with a predominantly sexual mode of transmission','Y','0000-00-00 00:00:00'),(179292,10,'Z22.6 ','Carrier of human T-lymphotropic virus type-1 [HTLV-1] infection','Y','0000-00-00 00:00:00'),(179293,10,'Z22.7 ','Latent tuberculosis','Y','0000-00-00 00:00:00'),(179294,10,'Z22.8 ','Carrier of other infectious diseases','Y','0000-00-00 00:00:00'),(179295,10,'Z22.9 ','Carrier of infectious disease, unspecified','Y','0000-00-00 00:00:00'),(179296,10,'Z23','Encounter for immunization','Y','0000-00-00 00:00:00'),(179297,10,'Z28.01 ','Immunization not carried out because of acute illness of patient','Y','0000-00-00 00:00:00'),(179298,10,'Z28.02 ','Immunization not carried out because of chronic illness or condition of patient','Y','0000-00-00 00:00:00'),(179299,10,'Z28.03 ','Immunization not carried out because of immune compromised state of patient','Y','0000-00-00 00:00:00'),(179300,10,'Z28.04 ','Immunization not carried out because of patient allergy to vaccine or component','Y','0000-00-00 00:00:00'),(179301,10,'Z28.09 ','Immunization not carried out because of other contraindication','Y','0000-00-00 00:00:00'),(179302,10,'Z28.1 ','Immunization not carried out because of patient decision for reasons of belief or group pressure','Y','0000-00-00 00:00:00'),(179303,10,'Z28.20 ','Immunization not carried out because of patient decision for unspecified reason','Y','0000-00-00 00:00:00'),(179304,10,'Z28.21 ','Immunization not carried out because of patient refusal','Y','0000-00-00 00:00:00'),(179305,10,'Z28.29 ','Immunization not carried out because of patient decision for other reason','Y','0000-00-00 00:00:00'),(179306,10,'Z28.310 ','Unvaccinated for COVID-19','Y','0000-00-00 00:00:00'),(179307,10,'Z28.311 ','Partially vaccinated for COVID-19','Y','0000-00-00 00:00:00'),(179308,10,'Z28.39 ','Other underimmunization status','Y','0000-00-00 00:00:00'),(179309,10,'Z28.81 ','Immunization not carried out due to patient having had the disease','Y','0000-00-00 00:00:00'),(179310,10,'Z28.82 ','Immunization not carried out because of caregiver refusal','Y','0000-00-00 00:00:00'),(179311,10,'Z28.83 ','Immunization not carried out due to unavailability of vaccine','Y','0000-00-00 00:00:00'),(179312,10,'Z28.89 ','Immunization not carried out for other reason','Y','0000-00-00 00:00:00'),(179313,10,'Z28.9 ','Immunization not carried out for unspecified reason','Y','0000-00-00 00:00:00'),(179314,10,'Z29.11 ','Encounter for prophylactic immunotherapy for respiratory syncytial virus (RSV)','Y','0000-00-00 00:00:00'),(179315,10,'Z29.12 ','Encounter for prophylactic antivenin','Y','0000-00-00 00:00:00'),(179316,10,'Z29.13 ','Encounter for prophylactic Rho(D) immune globulin','Y','0000-00-00 00:00:00'),(179317,10,'Z29.14 ','Encounter for prophylactic rabies immune globin','Y','0000-00-00 00:00:00'),(179318,10,'Z29.3 ','Encounter for prophylactic fluoride administration','Y','0000-00-00 00:00:00'),(179319,10,'Z29.81 ','Encounter for HIV pre-exposure prophylaxis','Y','0000-00-00 00:00:00'),(179320,10,'Z29.89 ','Encounter for other specified prophylactic measures','Y','0000-00-00 00:00:00'),(179321,10,'Z29.9 ','Encounter for prophylactic measures, unspecified','Y','0000-00-00 00:00:00'),(179322,10,'Z30.011 ','Encounter for initial prescription of contraceptive pills','Y','0000-00-00 00:00:00'),(179323,10,'Z30.012 ','Encounter for prescription of emergency contraception','Y','0000-00-00 00:00:00'),(179324,10,'Z30.013 ','Encounter for initial prescription of injectable contraceptive','Y','0000-00-00 00:00:00'),(179325,10,'Z30.014 ','Encounter for initial prescription of intrauterine contraceptive device','Y','0000-00-00 00:00:00'),(179326,10,'Z30.015 ','Encounter for initial prescription of vaginal ring hormonal contraceptive','Y','0000-00-00 00:00:00'),(179327,10,'Z30.016 ','Encounter for initial prescription of transdermal patch hormonal contraceptive device','Y','0000-00-00 00:00:00'),(179328,10,'Z30.017 ','Encounter for initial prescription of implantable subdermal contraceptive','Y','0000-00-00 00:00:00'),(179329,10,'Z30.018 ','Encounter for initial prescription of other contraceptives','Y','0000-00-00 00:00:00'),(179330,10,'Z30.019 ','Encounter for initial prescription of contraceptives, unspecified','Y','0000-00-00 00:00:00'),(179331,10,'Z30.02 ','Counseling and instruction in natural family planning to avoid pregnancy','Y','0000-00-00 00:00:00'),(179332,10,'Z30.09 ','Encounter for other general counseling and advice on contraception','Y','0000-00-00 00:00:00'),(179333,10,'Z30.2 ','Encounter for sterilization','Y','0000-00-00 00:00:00'),(179334,10,'Z30.40 ','Encounter for surveillance of contraceptives, unspecified','Y','0000-00-00 00:00:00'),(179335,10,'Z30.41 ','Encounter for surveillance of contraceptive pills','Y','0000-00-00 00:00:00'),(179336,10,'Z30.42 ','Encounter for surveillance of injectable contraceptive','Y','0000-00-00 00:00:00'),(179337,10,'Z30.430 ','Encounter for insertion of intrauterine contraceptive device','Y','0000-00-00 00:00:00'),(179338,10,'Z30.431 ','Encounter for routine checking of intrauterine contraceptive device','Y','0000-00-00 00:00:00'),(179339,10,'Z30.432 ','Encounter for removal of intrauterine contraceptive device','Y','0000-00-00 00:00:00'),(179340,10,'Z30.433 ','Encounter for removal and reinsertion of intrauterine contraceptive device','Y','0000-00-00 00:00:00'),(179341,10,'Z30.44 ','Encounter for surveillance of vaginal ring hormonal contraceptive device','Y','0000-00-00 00:00:00'),(179342,10,'Z30.45 ','Encounter for surveillance of transdermal patch hormonal contraceptive device','Y','0000-00-00 00:00:00'),(179343,10,'Z30.46 ','Encounter for surveillance of implantable subdermal contraceptive','Y','0000-00-00 00:00:00'),(179344,10,'Z30.49 ','Encounter for surveillance of other contraceptives','Y','0000-00-00 00:00:00'),(179345,10,'Z30.8 ','Encounter for other contraceptive management','Y','0000-00-00 00:00:00'),(179346,10,'Z30.9 ','Encounter for contraceptive management, unspecified','Y','0000-00-00 00:00:00'),(179347,10,'Z31.0 ','Encounter for reversal of previous sterilization','Y','0000-00-00 00:00:00'),(179348,10,'Z31.41 ','Encounter for fertility testing','Y','0000-00-00 00:00:00'),(179349,10,'Z31.42 ','Aftercare following sterilization reversal','Y','0000-00-00 00:00:00'),(179350,10,'Z31.430 ','Encounter of female for testing for genetic disease carrier status for procreative management','Y','0000-00-00 00:00:00'),(179351,10,'Z31.438 ','Encounter for other genetic testing of female for procreative management','Y','0000-00-00 00:00:00'),(179352,10,'Z31.440 ','Encounter of male for testing for genetic disease carrier status for procreative management','Y','0000-00-00 00:00:00'),(179353,10,'Z31.441 ','Encounter for testing of male partner of patient with recurrent pregnancy loss','Y','0000-00-00 00:00:00'),(179354,10,'Z31.448 ','Encounter for other genetic testing of male for procreative management','Y','0000-00-00 00:00:00'),(179355,10,'Z31.49 ','Encounter for other procreative investigation and testing','Y','0000-00-00 00:00:00'),(179356,10,'Z31.5 ','Encounter for procreative genetic counseling','Y','0000-00-00 00:00:00'),(179357,10,'Z31.61 ','Procreative counseling and advice using natural family planning','Y','0000-00-00 00:00:00'),(179358,10,'Z31.62 ','Encounter for fertility preservation counseling','Y','0000-00-00 00:00:00'),(179359,10,'Z31.69 ','Encounter for other general counseling and advice on procreation','Y','0000-00-00 00:00:00'),(179360,10,'Z31.7 ','Encounter for procreative management and counseling for gestational carrier','Y','0000-00-00 00:00:00'),(179361,10,'Z31.81 ','Encounter for male factor infertility in female patient','Y','0000-00-00 00:00:00'),(179362,10,'Z31.82 ','Encounter for Rh incompatibility status','Y','0000-00-00 00:00:00'),(179363,10,'Z31.83 ','Encounter for assisted reproductive fertility procedure cycle','Y','0000-00-00 00:00:00'),(179364,10,'Z31.84 ','Encounter for fertility preservation procedure','Y','0000-00-00 00:00:00'),(179365,10,'Z31.89 ','Encounter for other procreative management','Y','0000-00-00 00:00:00'),(179366,10,'Z31.9 ','Encounter for procreative management, unspecified','Y','0000-00-00 00:00:00'),(179367,10,'Z32.00 ','Encounter for pregnancy test, result unknown','Y','0000-00-00 00:00:00'),(179368,10,'Z32.01 ','Encounter for pregnancy test, result positive','Y','0000-00-00 00:00:00'),(179369,10,'Z32.02 ','Encounter for pregnancy test, result negative','Y','0000-00-00 00:00:00'),(179370,10,'Z32.2 ','Encounter for childbirth instruction','Y','0000-00-00 00:00:00'),(179371,10,'Z32.3 ','Encounter for childcare instruction','Y','0000-00-00 00:00:00'),(179372,10,'Z33.1 ','Pregnant state, incidental','Y','0000-00-00 00:00:00'),(179373,10,'Z33.2 ','Encounter for elective termination of pregnancy','Y','0000-00-00 00:00:00'),(179374,10,'Z33.3 ','Pregnant state, gestational carrier','Y','0000-00-00 00:00:00'),(179375,10,'Z34.00 ','Encounter for supervision of normal first pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(179376,10,'Z34.01 ','Encounter for supervision of normal first pregnancy, first trimester','Y','0000-00-00 00:00:00'),(179377,10,'Z34.02 ','Encounter for supervision of normal first pregnancy, second trimester','Y','0000-00-00 00:00:00'),(179378,10,'Z34.03 ','Encounter for supervision of normal first pregnancy, third trimester','Y','0000-00-00 00:00:00'),(179379,10,'Z34.80 ','Encounter for supervision of other normal pregnancy, unspecified trimester','Y','0000-00-00 00:00:00'),(179380,10,'Z34.81 ','Encounter for supervision of other normal pregnancy, first trimester','Y','0000-00-00 00:00:00'),(179381,10,'Z34.82 ','Encounter for supervision of other normal pregnancy, second trimester','Y','0000-00-00 00:00:00'),(179382,10,'Z34.83 ','Encounter for supervision of other normal pregnancy, third trimester','Y','0000-00-00 00:00:00'),(179383,10,'Z34.90 ','Encounter for supervision of normal pregnancy, unspecified, unspecified trimester','Y','0000-00-00 00:00:00'),(179384,10,'Z34.91 ','Encounter for supervision of normal pregnancy, unspecified, first trimester','Y','0000-00-00 00:00:00'),(179385,10,'Z34.92 ','Encounter for supervision of normal pregnancy, unspecified, second trimester','Y','0000-00-00 00:00:00'),(179386,10,'Z34.93 ','Encounter for supervision of normal pregnancy, unspecified, third trimester','Y','0000-00-00 00:00:00'),(179387,10,'Z36.0 ','Encounter for antenatal screening for chromosomal anomalies','Y','0000-00-00 00:00:00'),(179388,10,'Z36.1 ','Encounter for antenatal screening for raised alphafetoprotein level','Y','0000-00-00 00:00:00'),(179389,10,'Z36.2 ','Encounter for other antenatal screening follow-up','Y','0000-00-00 00:00:00'),(179390,10,'Z36.3 ','Encounter for antenatal screening for malformations','Y','0000-00-00 00:00:00'),(179391,10,'Z36.4 ','Encounter for antenatal screening for fetal growth retardation','Y','0000-00-00 00:00:00'),(179392,10,'Z36.5 ','Encounter for antenatal screening for isoimmunization','Y','0000-00-00 00:00:00'),(179393,10,'Z36.81 ','Encounter for antenatal screening for hydrops fetalis','Y','0000-00-00 00:00:00'),(179394,10,'Z36.82 ','Encounter for antenatal screening for nuchal translucency','Y','0000-00-00 00:00:00'),(179395,10,'Z36.83 ','Encounter for fetal screening for congenital cardiac abnormalities','Y','0000-00-00 00:00:00'),(179396,10,'Z36.84 ','Encounter for antenatal screening for fetal lung maturity','Y','0000-00-00 00:00:00'),(179397,10,'Z36.85 ','Encounter for antenatal screening for Streptococcus B','Y','0000-00-00 00:00:00'),(179398,10,'Z36.86 ','Encounter for antenatal screening for cervical length','Y','0000-00-00 00:00:00'),(179399,10,'Z36.87 ','Encounter for antenatal screening for uncertain dates','Y','0000-00-00 00:00:00'),(179400,10,'Z36.88 ','Encounter for antenatal screening for fetal macrosomia','Y','0000-00-00 00:00:00'),(179401,10,'Z36.89 ','Encounter for other specified antenatal screening','Y','0000-00-00 00:00:00'),(179402,10,'Z36.8A ','Encounter for antenatal screening for other genetic defects','Y','0000-00-00 00:00:00'),(179403,10,'Z36.9 ','Encounter for antenatal screening, unspecified','Y','0000-00-00 00:00:00'),(179404,10,'Z3A.00 ','Weeks of gestation of pregnancy not specified','Y','0000-00-00 00:00:00'),(179405,10,'Z3A.01 ','Less than 8 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179406,10,'Z3A.08 ','8 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179407,10,'Z3A.09 ','9 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179408,10,'Z3A.10 ','10 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179409,10,'Z3A.11 ','11 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179410,10,'Z3A.12 ','12 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179411,10,'Z3A.13 ','13 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179412,10,'Z3A.14 ','14 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179413,10,'Z3A.15 ','15 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179414,10,'Z3A.16 ','16 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179415,10,'Z3A.17 ','17 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179416,10,'Z3A.18 ','18 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179417,10,'Z3A.19 ','19 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179418,10,'Z3A.20 ','20 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179419,10,'Z3A.21 ','21 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179420,10,'Z3A.22 ','22 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179421,10,'Z3A.23 ','23 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179422,10,'Z3A.24 ','24 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179423,10,'Z3A.25 ','25 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179424,10,'Z3A.26 ','26 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179425,10,'Z3A.27 ','27 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179426,10,'Z3A.28 ','28 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179427,10,'Z3A.29 ','29 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179428,10,'Z3A.30 ','30 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179429,10,'Z3A.31 ','31 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179430,10,'Z3A.32 ','32 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179431,10,'Z3A.33 ','33 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179432,10,'Z3A.34 ','34 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179433,10,'Z3A.35 ','35 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179434,10,'Z3A.36 ','36 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179435,10,'Z3A.37 ','37 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179436,10,'Z3A.38 ','38 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179437,10,'Z3A.39 ','39 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179438,10,'Z3A.40 ','40 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179439,10,'Z3A.41 ','41 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179440,10,'Z3A.42 ','42 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179441,10,'Z3A.49 ','Greater than 42 weeks gestation of pregnancy','Y','0000-00-00 00:00:00'),(179442,10,'Z37.0 ','Single live birth','Y','0000-00-00 00:00:00'),(179443,10,'Z37.1 ','Single stillbirth','Y','0000-00-00 00:00:00'),(179444,10,'Z37.2 ','Twins, both liveborn','Y','0000-00-00 00:00:00'),(179445,10,'Z37.3 ','Twins, one liveborn and one stillborn','Y','0000-00-00 00:00:00'),(179446,10,'Z37.4 ','Twins, both stillborn','Y','0000-00-00 00:00:00'),(179447,10,'Z37.50 ','Multiple births, unspecified, all liveborn','Y','0000-00-00 00:00:00'),(179448,10,'Z37.51 ','Triplets, all liveborn','Y','0000-00-00 00:00:00'),(179449,10,'Z37.52 ','Quadruplets, all liveborn','Y','0000-00-00 00:00:00'),(179450,10,'Z37.53 ','Quintuplets, all liveborn','Y','0000-00-00 00:00:00'),(179451,10,'Z37.54 ','Sextuplets, all liveborn','Y','0000-00-00 00:00:00'),(179452,10,'Z37.59 ','Other multiple births, all liveborn','Y','0000-00-00 00:00:00'),(179453,10,'Z37.60 ','Multiple births, unspecified, some liveborn','Y','0000-00-00 00:00:00'),(179454,10,'Z37.61 ','Triplets, some liveborn','Y','0000-00-00 00:00:00'),(179455,10,'Z37.62 ','Quadruplets, some liveborn','Y','0000-00-00 00:00:00'),(179456,10,'Z37.63 ','Quintuplets, some liveborn','Y','0000-00-00 00:00:00'),(179457,10,'Z37.64 ','Sextuplets, some liveborn','Y','0000-00-00 00:00:00'),(179458,10,'Z37.69 ','Other multiple births, some liveborn','Y','0000-00-00 00:00:00'),(179459,10,'Z37.7 ','Other multiple births, all stillborn','Y','0000-00-00 00:00:00'),(179460,10,'Z37.9 ','Outcome of delivery, unspecified','Y','0000-00-00 00:00:00'),(179461,10,'Z38.00 ','Single liveborn infant, delivered vaginally','Y','0000-00-00 00:00:00'),(179462,10,'Z38.01 ','Single liveborn infant, delivered by cesarean','Y','0000-00-00 00:00:00'),(179463,10,'Z38.1 ','Single liveborn infant, born outside hospital','Y','0000-00-00 00:00:00'),(179464,10,'Z38.2 ','Single liveborn infant, unspecified as to place of birth','Y','0000-00-00 00:00:00'),(179465,10,'Z38.30 ','Twin liveborn infant, delivered vaginally','Y','0000-00-00 00:00:00'),(179466,10,'Z38.31 ','Twin liveborn infant, delivered by cesarean','Y','0000-00-00 00:00:00'),(179467,10,'Z38.4 ','Twin liveborn infant, born outside hospital','Y','0000-00-00 00:00:00'),(179468,10,'Z38.5 ','Twin liveborn infant, unspecified as to place of birth','Y','0000-00-00 00:00:00'),(179469,10,'Z38.61 ','Triplet liveborn infant, delivered vaginally','Y','0000-00-00 00:00:00'),(179470,10,'Z38.62 ','Triplet liveborn infant, delivered by cesarean','Y','0000-00-00 00:00:00'),(179471,10,'Z38.63 ','Quadruplet liveborn infant, delivered vaginally','Y','0000-00-00 00:00:00'),(179472,10,'Z38.64 ','Quadruplet liveborn infant, delivered by cesarean','Y','0000-00-00 00:00:00'),(179473,10,'Z38.65 ','Quintuplet liveborn infant, delivered vaginally','Y','0000-00-00 00:00:00'),(179474,10,'Z38.66 ','Quintuplet liveborn infant, delivered by cesarean','Y','0000-00-00 00:00:00'),(179475,10,'Z38.68 ','Other multiple liveborn infant, delivered vaginally','Y','0000-00-00 00:00:00'),(179476,10,'Z38.69 ','Other multiple liveborn infant, delivered by cesarean','Y','0000-00-00 00:00:00'),(179477,10,'Z38.7 ','Other multiple liveborn infant, born outside hospital','Y','0000-00-00 00:00:00'),(179478,10,'Z38.8 ','Other multiple liveborn infant, unspecified as to place of birth','Y','0000-00-00 00:00:00'),(179479,10,'Z39.0 ','Encounter for care and examination of mother immediately after delivery','Y','0000-00-00 00:00:00'),(179480,10,'Z39.1 ','Encounter for care and examination of lactating mother','Y','0000-00-00 00:00:00'),(179481,10,'Z39.2 ','Encounter for routine postpartum follow-up','Y','0000-00-00 00:00:00'),(179482,10,'Z40.00 ','Encounter for prophylactic removal of unspecified organ','Y','0000-00-00 00:00:00'),(179483,10,'Z40.01 ','Encounter for prophylactic removal of breast','Y','0000-00-00 00:00:00'),(179484,10,'Z40.02 ','Encounter for prophylactic removal of ovary(s)','Y','0000-00-00 00:00:00'),(179485,10,'Z40.03 ','Encounter for prophylactic removal of fallopian tube(s)','Y','0000-00-00 00:00:00'),(179486,10,'Z40.09 ','Encounter for prophylactic removal of other organ','Y','0000-00-00 00:00:00'),(179487,10,'Z40.8 ','Encounter for other prophylactic surgery','Y','0000-00-00 00:00:00'),(179488,10,'Z40.9 ','Encounter for prophylactic surgery, unspecified','Y','0000-00-00 00:00:00'),(179489,10,'Z41.1 ','Encounter for cosmetic surgery','Y','0000-00-00 00:00:00'),(179490,10,'Z41.2 ','Encounter for routine and ritual male circumcision','Y','0000-00-00 00:00:00'),(179491,10,'Z41.3 ','Encounter for ear piercing','Y','0000-00-00 00:00:00'),(179492,10,'Z41.8 ','Encounter for other procedures for purposes other than remedying health state','Y','0000-00-00 00:00:00'),(179493,10,'Z41.9 ','Encounter for procedure for purposes other than remedying health state, unspecified','Y','0000-00-00 00:00:00'),(179494,10,'Z42.1 ','Encounter for breast reconstruction following mastectomy','Y','0000-00-00 00:00:00'),(179495,10,'Z42.8 ','Encounter for other plastic and reconstructive surgery following medical procedure or healed injury','Y','0000-00-00 00:00:00'),(179496,10,'Z43.0 ','Encounter for attention to tracheostomy','Y','0000-00-00 00:00:00'),(179497,10,'Z43.1 ','Encounter for attention to gastrostomy','Y','0000-00-00 00:00:00'),(179498,10,'Z43.2 ','Encounter for attention to ileostomy','Y','0000-00-00 00:00:00'),(179499,10,'Z43.3 ','Encounter for attention to colostomy','Y','0000-00-00 00:00:00'),(179500,10,'Z43.4 ','Encounter for attention to other artificial openings of digestive tract','Y','0000-00-00 00:00:00'),(179501,10,'Z43.5 ','Encounter for attention to cystostomy','Y','0000-00-00 00:00:00'),(179502,10,'Z43.6 ','Encounter for attention to other artificial openings of urinary tract','Y','0000-00-00 00:00:00'),(179503,10,'Z43.7 ','Encounter for attention to artificial vagina','Y','0000-00-00 00:00:00'),(179504,10,'Z43.8 ','Encounter for attention to other artificial openings','Y','0000-00-00 00:00:00'),(179505,10,'Z43.9 ','Encounter for attention to unspecified artificial opening','Y','0000-00-00 00:00:00'),(179506,10,'Z44.001 ','Encounter for fitting and adjustment of unspecified right artificial arm','Y','0000-00-00 00:00:00'),(179507,10,'Z44.002 ','Encounter for fitting and adjustment of unspecified left artificial arm','Y','0000-00-00 00:00:00'),(179508,10,'Z44.009 ','Encounter for fitting and adjustment of unspecified artificial arm, unspecified arm','Y','0000-00-00 00:00:00'),(179509,10,'Z44.011 ','Encounter for fitting and adjustment of complete right artificial arm','Y','0000-00-00 00:00:00'),(179510,10,'Z44.012 ','Encounter for fitting and adjustment of complete left artificial arm','Y','0000-00-00 00:00:00'),(179511,10,'Z44.019 ','Encounter for fitting and adjustment of complete artificial arm, unspecified arm','Y','0000-00-00 00:00:00'),(179512,10,'Z44.021 ','Encounter for fitting and adjustment of partial artificial right arm','Y','0000-00-00 00:00:00'),(179513,10,'Z44.022 ','Encounter for fitting and adjustment of partial artificial left arm','Y','0000-00-00 00:00:00'),(179514,10,'Z44.029 ','Encounter for fitting and adjustment of partial artificial arm, unspecified arm','Y','0000-00-00 00:00:00'),(179515,10,'Z44.101 ','Encounter for fitting and adjustment of unspecified right artificial leg','Y','0000-00-00 00:00:00'),(179516,10,'Z44.102 ','Encounter for fitting and adjustment of unspecified left artificial leg','Y','0000-00-00 00:00:00'),(179517,10,'Z44.109 ','Encounter for fitting and adjustment of unspecified artificial leg, unspecified leg','Y','0000-00-00 00:00:00'),(179518,10,'Z44.111 ','Encounter for fitting and adjustment of complete right artificial leg','Y','0000-00-00 00:00:00'),(179519,10,'Z44.112 ','Encounter for fitting and adjustment of complete left artificial leg','Y','0000-00-00 00:00:00'),(179520,10,'Z44.119 ','Encounter for fitting and adjustment of complete artificial leg, unspecified leg','Y','0000-00-00 00:00:00'),(179521,10,'Z44.121 ','Encounter for fitting and adjustment of partial artificial right leg','Y','0000-00-00 00:00:00'),(179522,10,'Z44.122 ','Encounter for fitting and adjustment of partial artificial left leg','Y','0000-00-00 00:00:00'),(179523,10,'Z44.129 ','Encounter for fitting and adjustment of partial artificial leg, unspecified leg','Y','0000-00-00 00:00:00'),(179524,10,'Z44.20 ','Encounter for fitting and adjustment of artificial eye, unspecified','Y','0000-00-00 00:00:00'),(179525,10,'Z44.21 ','Encounter for fitting and adjustment of artificial right eye','Y','0000-00-00 00:00:00'),(179526,10,'Z44.22 ','Encounter for fitting and adjustment of artificial left eye','Y','0000-00-00 00:00:00'),(179527,10,'Z44.30 ','Encounter for fitting and adjustment of external breast prosthesis, unspecified breast','Y','0000-00-00 00:00:00'),(179528,10,'Z44.31 ','Encounter for fitting and adjustment of external right breast prosthesis','Y','0000-00-00 00:00:00'),(179529,10,'Z44.32 ','Encounter for fitting and adjustment of external left breast prosthesis','Y','0000-00-00 00:00:00'),(179530,10,'Z44.8 ','Encounter for fitting and adjustment of other external prosthetic devices','Y','0000-00-00 00:00:00'),(179531,10,'Z44.9 ','Encounter for fitting and adjustment of unspecified external prosthetic device','Y','0000-00-00 00:00:00'),(179532,10,'Z45.010 ','Encounter for checking and testing of cardiac pacemaker pulse generator [battery]','Y','0000-00-00 00:00:00'),(179533,10,'Z45.018 ','Encounter for adjustment and management of other part of cardiac pacemaker','Y','0000-00-00 00:00:00'),(179534,10,'Z45.02 ','Encounter for adjustment and management of automatic implantable cardiac defibrillator','Y','0000-00-00 00:00:00'),(179535,10,'Z45.09 ','Encounter for adjustment and management of other cardiac device','Y','0000-00-00 00:00:00'),(179536,10,'Z45.1 ','Encounter for adjustment and management of infusion pump','Y','0000-00-00 00:00:00'),(179537,10,'Z45.2 ','Encounter for adjustment and management of vascular access device','Y','0000-00-00 00:00:00'),(179538,10,'Z45.31 ','Encounter for adjustment and management of implanted visual substitution device','Y','0000-00-00 00:00:00'),(179539,10,'Z45.320 ','Encounter for adjustment and management of bone conduction device','Y','0000-00-00 00:00:00'),(179540,10,'Z45.321 ','Encounter for adjustment and management of cochlear device','Y','0000-00-00 00:00:00'),(179541,10,'Z45.328 ','Encounter for adjustment and management of other implanted hearing device','Y','0000-00-00 00:00:00'),(179542,10,'Z45.41 ','Encounter for adjustment and management of cerebrospinal fluid drainage device','Y','0000-00-00 00:00:00'),(179543,10,'Z45.42 ','Encounter for adjustment and management of neurostimulator','Y','0000-00-00 00:00:00'),(179544,10,'Z45.49 ','Encounter for adjustment and management of other implanted nervous system device','Y','0000-00-00 00:00:00'),(179545,10,'Z45.811 ','Encounter for adjustment or removal of right breast implant','Y','0000-00-00 00:00:00'),(179546,10,'Z45.812 ','Encounter for adjustment or removal of left breast implant','Y','0000-00-00 00:00:00'),(179547,10,'Z45.819 ','Encounter for adjustment or removal of unspecified breast implant','Y','0000-00-00 00:00:00'),(179548,10,'Z45.82 ','Encounter for adjustment or removal of myringotomy device (stent) (tube)','Y','0000-00-00 00:00:00'),(179549,10,'Z45.89 ','Encounter for adjustment and management of other implanted devices','Y','0000-00-00 00:00:00'),(179550,10,'Z45.9 ','Encounter for adjustment and management of unspecified implanted device','Y','0000-00-00 00:00:00'),(179551,10,'Z46.0 ','Encounter for fitting and adjustment of spectacles and contact lenses','Y','0000-00-00 00:00:00'),(179552,10,'Z46.1 ','Encounter for fitting and adjustment of hearing aid','Y','0000-00-00 00:00:00'),(179553,10,'Z46.2 ','Encounter for fitting and adjustment of other devices related to nervous system and special senses','Y','0000-00-00 00:00:00'),(179554,10,'Z46.3 ','Encounter for fitting and adjustment of dental prosthetic device','Y','0000-00-00 00:00:00'),(179555,10,'Z46.4 ','Encounter for fitting and adjustment of orthodontic device','Y','0000-00-00 00:00:00'),(179556,10,'Z46.51 ','Encounter for fitting and adjustment of gastric lap band','Y','0000-00-00 00:00:00'),(179557,10,'Z46.59 ','Encounter for fitting and adjustment of other gastrointestinal appliance and device','Y','0000-00-00 00:00:00'),(179558,10,'Z46.6 ','Encounter for fitting and adjustment of urinary device','Y','0000-00-00 00:00:00'),(179559,10,'Z46.81 ','Encounter for fitting and adjustment of insulin pump','Y','0000-00-00 00:00:00'),(179560,10,'Z46.82 ','Encounter for fitting and adjustment of non-vascular catheter','Y','0000-00-00 00:00:00'),(179561,10,'Z46.89 ','Encounter for fitting and adjustment of other specified devices','Y','0000-00-00 00:00:00'),(179562,10,'Z46.9 ','Encounter for fitting and adjustment of unspecified device','Y','0000-00-00 00:00:00'),(179563,10,'Z47.1 ','Aftercare following joint replacement surgery','Y','0000-00-00 00:00:00'),(179564,10,'Z47.2 ','Encounter for removal of internal fixation device','Y','0000-00-00 00:00:00'),(179565,10,'Z47.31 ','Aftercare following explantation of shoulder joint prosthesis','Y','0000-00-00 00:00:00'),(179566,10,'Z47.32 ','Aftercare following explantation of hip joint prosthesis','Y','0000-00-00 00:00:00'),(179567,10,'Z47.33 ','Aftercare following explantation of knee joint prosthesis','Y','0000-00-00 00:00:00'),(179568,10,'Z47.81 ','Encounter for orthopedic aftercare following surgical amputation','Y','0000-00-00 00:00:00'),(179569,10,'Z47.82 ','Encounter for orthopedic aftercare following scoliosis surgery','Y','0000-00-00 00:00:00'),(179570,10,'Z47.89 ','Encounter for other orthopedic aftercare','Y','0000-00-00 00:00:00'),(179571,10,'Z48.00 ','Encounter for change or removal of nonsurgical wound dressing','Y','0000-00-00 00:00:00'),(179572,10,'Z48.01 ','Encounter for change or removal of surgical wound dressing','Y','0000-00-00 00:00:00'),(179573,10,'Z48.02 ','Encounter for removal of sutures','Y','0000-00-00 00:00:00'),(179574,10,'Z48.03 ','Encounter for change or removal of drains','Y','0000-00-00 00:00:00'),(179575,10,'Z48.1 ','Encounter for planned postprocedural wound closure','Y','0000-00-00 00:00:00'),(179576,10,'Z48.21 ','Encounter for aftercare following heart transplant','Y','0000-00-00 00:00:00'),(179577,10,'Z48.22 ','Encounter for aftercare following kidney transplant','Y','0000-00-00 00:00:00'),(179578,10,'Z48.23 ','Encounter for aftercare following liver transplant','Y','0000-00-00 00:00:00'),(179579,10,'Z48.24 ','Encounter for aftercare following lung transplant','Y','0000-00-00 00:00:00'),(179580,10,'Z48.280 ','Encounter for aftercare following heart-lung transplant','Y','0000-00-00 00:00:00'),(179581,10,'Z48.288 ','Encounter for aftercare following multiple organ transplant','Y','0000-00-00 00:00:00'),(179582,10,'Z48.290 ','Encounter for aftercare following bone marrow transplant','Y','0000-00-00 00:00:00'),(179583,10,'Z48.298 ','Encounter for aftercare following other organ transplant','Y','0000-00-00 00:00:00'),(179584,10,'Z48.3 ','Aftercare following surgery for neoplasm','Y','0000-00-00 00:00:00'),(179585,10,'Z48.810 ','Encounter for surgical aftercare following surgery on the sense organs','Y','0000-00-00 00:00:00'),(179586,10,'Z48.811 ','Encounter for surgical aftercare following surgery on the nervous system','Y','0000-00-00 00:00:00'),(179587,10,'Z48.812 ','Encounter for surgical aftercare following surgery on the circulatory system','Y','0000-00-00 00:00:00'),(179588,10,'Z48.813 ','Encounter for surgical aftercare following surgery on the respiratory system','Y','0000-00-00 00:00:00'),(179589,10,'Z48.814 ','Encounter for surgical aftercare following surgery on the teeth or oral cavity','Y','0000-00-00 00:00:00'),(179590,10,'Z48.815 ','Encounter for surgical aftercare following surgery on the digestive system','Y','0000-00-00 00:00:00'),(179591,10,'Z48.816 ','Encounter for surgical aftercare following surgery on the genitourinary system','Y','0000-00-00 00:00:00'),(179592,10,'Z48.817 ','Encounter for surgical aftercare following surgery on the skin and subcutaneous tissue','Y','0000-00-00 00:00:00'),(179593,10,'Z48.89 ','Encounter for other specified surgical aftercare','Y','0000-00-00 00:00:00'),(179594,10,'Z49.01 ','Encounter for fitting and adjustment of extracorporeal dialysis catheter','Y','0000-00-00 00:00:00'),(179595,10,'Z49.02 ','Encounter for fitting and adjustment of peritoneal dialysis catheter','Y','0000-00-00 00:00:00'),(179596,10,'Z49.31 ','Encounter for adequacy testing for hemodialysis','Y','0000-00-00 00:00:00'),(179597,10,'Z49.32 ','Encounter for adequacy testing for peritoneal dialysis','Y','0000-00-00 00:00:00'),(179598,10,'Z51.0 ','Encounter for antineoplastic radiation therapy','Y','0000-00-00 00:00:00'),(179599,10,'Z51.11 ','Encounter for antineoplastic chemotherapy','Y','0000-00-00 00:00:00'),(179600,10,'Z51.12 ','Encounter for antineoplastic immunotherapy','Y','0000-00-00 00:00:00'),(179601,10,'Z51.5 ','Encounter for palliative care','Y','0000-00-00 00:00:00'),(179602,10,'Z51.6 ','Encounter for desensitization to allergens','Y','0000-00-00 00:00:00'),(179603,10,'Z51.81 ','Encounter for therapeutic drug level monitoring','Y','0000-00-00 00:00:00'),(179604,10,'Z51.89 ','Encounter for other specified aftercare','Y','0000-00-00 00:00:00'),(179605,10,'Z52.000 ','Unspecified donor, whole blood','Y','0000-00-00 00:00:00'),(179606,10,'Z52.001 ','Unspecified donor, stem cells','Y','0000-00-00 00:00:00'),(179607,10,'Z52.008 ','Unspecified donor, other blood','Y','0000-00-00 00:00:00'),(179608,10,'Z52.010 ','Autologous donor, whole blood','Y','0000-00-00 00:00:00'),(179609,10,'Z52.011 ','Autologous donor, stem cells','Y','0000-00-00 00:00:00'),(179610,10,'Z52.018 ','Autologous donor, other blood','Y','0000-00-00 00:00:00'),(179611,10,'Z52.090 ','Other blood donor, whole blood','Y','0000-00-00 00:00:00'),(179612,10,'Z52.091 ','Other blood donor, stem cells','Y','0000-00-00 00:00:00'),(179613,10,'Z52.098 ','Other blood donor, other blood','Y','0000-00-00 00:00:00'),(179614,10,'Z52.10 ','Skin donor, unspecified','Y','0000-00-00 00:00:00'),(179615,10,'Z52.11 ','Skin donor, autologous','Y','0000-00-00 00:00:00'),(179616,10,'Z52.19 ','Skin donor, other','Y','0000-00-00 00:00:00'),(179617,10,'Z52.20 ','Bone donor, unspecified','Y','0000-00-00 00:00:00'),(179618,10,'Z52.21 ','Bone donor, autologous','Y','0000-00-00 00:00:00'),(179619,10,'Z52.29 ','Bone donor, other','Y','0000-00-00 00:00:00'),(179620,10,'Z52.3 ','Bone marrow donor','Y','0000-00-00 00:00:00'),(179621,10,'Z52.4 ','Kidney donor','Y','0000-00-00 00:00:00'),(179622,10,'Z52.5 ','Cornea donor','Y','0000-00-00 00:00:00'),(179623,10,'Z52.6 ','Liver donor','Y','0000-00-00 00:00:00'),(179624,10,'Z52.810 ','Egg (Oocyte) donor under age 35, anonymous recipient','Y','0000-00-00 00:00:00'),(179625,10,'Z52.811 ','Egg (Oocyte) donor under age 35, designated recipient','Y','0000-00-00 00:00:00'),(179626,10,'Z52.812 ','Egg (Oocyte) donor age 35 and over, anonymous recipient','Y','0000-00-00 00:00:00'),(179627,10,'Z52.813 ','Egg (Oocyte) donor age 35 and over, designated recipient','Y','0000-00-00 00:00:00'),(179628,10,'Z52.819 ','Egg (Oocyte) donor, unspecified','Y','0000-00-00 00:00:00'),(179629,10,'Z52.89 ','Donor of other specified organs or tissues','Y','0000-00-00 00:00:00'),(179630,10,'Z52.9 ','Donor of unspecified organ or tissue','Y','0000-00-00 00:00:00'),(179631,10,'Z53.01 ','Procedure and treatment not carried out due to patient smoking','Y','0000-00-00 00:00:00'),(179632,10,'Z53.09 ','Procedure and treatment not carried out because of other contraindication','Y','0000-00-00 00:00:00'),(179633,10,'Z53.1 ','Procedure and treatment not carried out because of patient\'s decision for reasons of belief and group pressure','Y','0000-00-00 00:00:00'),(179634,10,'Z53.20 ','Procedure and treatment not carried out because of patient\'s decision for unspecified reasons','Y','0000-00-00 00:00:00'),(179635,10,'Z53.21 ','Procedure and treatment not carried out due to patient leaving prior to being seen by health care provider','Y','0000-00-00 00:00:00'),(179636,10,'Z53.29 ','Procedure and treatment not carried out because of patient\'s decision for other reasons','Y','0000-00-00 00:00:00'),(179637,10,'Z53.31 ','Laparoscopic surgical procedure converted to open procedure','Y','0000-00-00 00:00:00'),(179638,10,'Z53.32 ','Thoracoscopic surgical procedure converted to open procedure','Y','0000-00-00 00:00:00'),(179639,10,'Z53.33 ','Arthroscopic surgical procedure converted to open procedure','Y','0000-00-00 00:00:00'),(179640,10,'Z53.39 ','Other specified procedure converted to open procedure','Y','0000-00-00 00:00:00'),(179641,10,'Z53.8 ','Procedure and treatment not carried out for other reasons','Y','0000-00-00 00:00:00'),(179642,10,'Z53.9 ','Procedure and treatment not carried out, unspecified reason','Y','0000-00-00 00:00:00'),(179643,10,'Z55.0 ','Illiteracy and low-level literacy','Y','0000-00-00 00:00:00'),(179644,10,'Z55.1 ','Schooling unavailable and unattainable','Y','0000-00-00 00:00:00'),(179645,10,'Z55.2 ','Failed school examinations','Y','0000-00-00 00:00:00'),(179646,10,'Z55.3 ','Underachievement in school','Y','0000-00-00 00:00:00'),(179647,10,'Z55.4 ','Educational maladjustment and discord with teachers and classmates','Y','0000-00-00 00:00:00'),(179648,10,'Z55.5 ','Less than a high school diploma','Y','0000-00-00 00:00:00'),(179649,10,'Z55.6 ','Problems related to health literacy','Y','0000-00-00 00:00:00'),(179650,10,'Z55.8 ','Other problems related to education and literacy','Y','0000-00-00 00:00:00'),(179651,10,'Z55.9 ','Problems related to education and literacy, unspecified','Y','0000-00-00 00:00:00'),(179652,10,'Z56.0 ','Unemployment, unspecified','Y','0000-00-00 00:00:00'),(179653,10,'Z56.1 ','Change of job','Y','0000-00-00 00:00:00'),(179654,10,'Z56.2 ','Threat of job loss','Y','0000-00-00 00:00:00'),(179655,10,'Z56.3 ','Stressful work schedule','Y','0000-00-00 00:00:00'),(179656,10,'Z56.4 ','Discord with boss and workmates','Y','0000-00-00 00:00:00'),(179657,10,'Z56.5 ','Uncongenial work environment','Y','0000-00-00 00:00:00'),(179658,10,'Z56.6 ','Other physical and mental strain related to work','Y','0000-00-00 00:00:00'),(179659,10,'Z56.81 ','Sexual harassment on the job','Y','0000-00-00 00:00:00'),(179660,10,'Z56.82 ','Military deployment status','Y','0000-00-00 00:00:00'),(179661,10,'Z56.89 ','Other problems related to employment','Y','0000-00-00 00:00:00'),(179662,10,'Z56.9 ','Unspecified problems related to employment','Y','0000-00-00 00:00:00'),(179663,10,'Z57.0 ','Occupational exposure to noise','Y','0000-00-00 00:00:00'),(179664,10,'Z57.1 ','Occupational exposure to radiation','Y','0000-00-00 00:00:00'),(179665,10,'Z57.2 ','Occupational exposure to dust','Y','0000-00-00 00:00:00'),(179666,10,'Z57.31 ','Occupational exposure to environmental tobacco smoke','Y','0000-00-00 00:00:00'),(179667,10,'Z57.39 ','Occupational exposure to other air contaminants','Y','0000-00-00 00:00:00'),(179668,10,'Z57.4 ','Occupational exposure to toxic agents in agriculture','Y','0000-00-00 00:00:00'),(179669,10,'Z57.5 ','Occupational exposure to toxic agents in other industries','Y','0000-00-00 00:00:00'),(179670,10,'Z57.6 ','Occupational exposure to extreme temperature','Y','0000-00-00 00:00:00'),(179671,10,'Z57.7 ','Occupational exposure to vibration','Y','0000-00-00 00:00:00'),(179672,10,'Z57.8 ','Occupational exposure to other risk factors','Y','0000-00-00 00:00:00'),(179673,10,'Z57.9 ','Occupational exposure to unspecified risk factor','Y','0000-00-00 00:00:00'),(179674,10,'Z58.6 ','Inadequate drinking-water supply','Y','0000-00-00 00:00:00'),(179675,10,'Z58.81 ','Basic services unavailable in physical environment','Y','0000-00-00 00:00:00'),(179676,10,'Z58.89 ','Other problems related to physical environment','Y','0000-00-00 00:00:00'),(179677,10,'Z59.00 ','Homelessness unspecified','Y','0000-00-00 00:00:00'),(179678,10,'Z59.01 ','Sheltered homelessness','Y','0000-00-00 00:00:00'),(179679,10,'Z59.02 ','Unsheltered homelessness','Y','0000-00-00 00:00:00'),(179680,10,'Z59.10 ','Inadequate housing, unspecified','Y','0000-00-00 00:00:00'),(179681,10,'Z59.11 ','Inadequate housing environmental temperature','Y','0000-00-00 00:00:00'),(179682,10,'Z59.12 ','Inadequate housing utilities','Y','0000-00-00 00:00:00'),(179683,10,'Z59.19 ','Other inadequate housing','Y','0000-00-00 00:00:00'),(179684,10,'Z59.2 ','Discord with neighbors, lodgers and landlord','Y','0000-00-00 00:00:00'),(179685,10,'Z59.3 ','Problems related to living in residential institution','Y','0000-00-00 00:00:00'),(179686,10,'Z59.41 ','Food insecurity','Y','0000-00-00 00:00:00'),(179687,10,'Z59.48 ','Other specified lack of adequate food','Y','0000-00-00 00:00:00'),(179688,10,'Z59.5 ','Extreme poverty','Y','0000-00-00 00:00:00'),(179689,10,'Z59.6 ','Low income','Y','0000-00-00 00:00:00'),(179690,10,'Z59.7 ','Insufficient social insurance and welfare support','Y','0000-00-00 00:00:00'),(179691,10,'Z59.811 ','Housing instability, housed, with risk of homelessness','Y','0000-00-00 00:00:00'),(179692,10,'Z59.812 ','Housing instability, housed, homelessness in past 12 months','Y','0000-00-00 00:00:00'),(179693,10,'Z59.819 ','Housing instability, housed unspecified','Y','0000-00-00 00:00:00'),(179694,10,'Z59.82 ','Transportation insecurity','Y','0000-00-00 00:00:00'),(179695,10,'Z59.86 ','Financial insecurity','Y','0000-00-00 00:00:00'),(179696,10,'Z59.87 ','Material hardship due to limited financial resources, not elsewhere classified','Y','0000-00-00 00:00:00'),(179697,10,'Z59.89 ','Other problems related to housing and economic circumstances','Y','0000-00-00 00:00:00'),(179698,10,'Z59.9 ','Problem related to housing and economic circumstances, unspecified','Y','0000-00-00 00:00:00'),(179699,10,'Z60.0 ','Problems of adjustment to life-cycle transitions','Y','0000-00-00 00:00:00'),(179700,10,'Z60.2 ','Problems related to living alone','Y','0000-00-00 00:00:00'),(179701,10,'Z60.3 ','Acculturation difficulty','Y','0000-00-00 00:00:00'),(179702,10,'Z60.4 ','Social exclusion and rejection','Y','0000-00-00 00:00:00'),(179703,10,'Z60.5 ','Target of (perceived) adverse discrimination and persecution','Y','0000-00-00 00:00:00'),(179704,10,'Z60.8 ','Other problems related to social environment','Y','0000-00-00 00:00:00'),(179705,10,'Z60.9 ','Problem related to social environment, unspecified','Y','0000-00-00 00:00:00'),(179706,10,'Z62.0 ','Inadequate parental supervision and control','Y','0000-00-00 00:00:00'),(179707,10,'Z62.1 ','Parental overprotection','Y','0000-00-00 00:00:00'),(179708,10,'Z62.21 ','Child in welfare custody','Y','0000-00-00 00:00:00'),(179709,10,'Z62.22 ','Institutional upbringing','Y','0000-00-00 00:00:00'),(179710,10,'Z62.23 ','Child in custody of non-parental relative','Y','0000-00-00 00:00:00'),(179711,10,'Z62.24 ','Child in custody of non-relative guardian','Y','0000-00-00 00:00:00'),(179712,10,'Z62.29 ','Other upbringing away from parents','Y','0000-00-00 00:00:00'),(179713,10,'Z62.3 ','Hostility towards and scapegoating of child','Y','0000-00-00 00:00:00'),(179714,10,'Z62.6 ','Inappropriate (excessive) parental pressure','Y','0000-00-00 00:00:00'),(179715,10,'Z62.810 ','Personal history of physical and sexual abuse in childhood','Y','0000-00-00 00:00:00'),(179716,10,'Z62.811 ','Personal history of psychological abuse in childhood','Y','0000-00-00 00:00:00'),(179717,10,'Z62.812 ','Personal history of neglect in childhood','Y','0000-00-00 00:00:00'),(179718,10,'Z62.813 ','Personal history of forced labor or sexual exploitation in childhood','Y','0000-00-00 00:00:00'),(179719,10,'Z62.814 ','Personal history of child financial abuse','Y','0000-00-00 00:00:00'),(179720,10,'Z62.815 ','Personal history of intimate partner abuse in childhood','Y','0000-00-00 00:00:00'),(179721,10,'Z62.819 ','Personal history of unspecified abuse in childhood','Y','0000-00-00 00:00:00'),(179722,10,'Z62.820 ','Parent-biological child conflict','Y','0000-00-00 00:00:00'),(179723,10,'Z62.821 ','Parent-adopted child conflict','Y','0000-00-00 00:00:00'),(179724,10,'Z62.822 ','Parent-foster child conflict','Y','0000-00-00 00:00:00'),(179725,10,'Z62.823 ','Parent-step child conflict','Y','0000-00-00 00:00:00'),(179726,10,'Z62.831 ','Non-parental relative-child conflict','Y','0000-00-00 00:00:00'),(179727,10,'Z62.832 ','Non-relative guardian-child conflict','Y','0000-00-00 00:00:00'),(179728,10,'Z62.833 ','Group home staff-child conflict','Y','0000-00-00 00:00:00'),(179729,10,'Z62.890 ','Parent-child estrangement NEC','Y','0000-00-00 00:00:00'),(179730,10,'Z62.891 ','Sibling rivalry','Y','0000-00-00 00:00:00'),(179731,10,'Z62.892 ','Runaway [from current living environment]','Y','0000-00-00 00:00:00'),(179732,10,'Z62.898 ','Other specified problems related to upbringing','Y','0000-00-00 00:00:00'),(179733,10,'Z62.9 ','Problem related to upbringing, unspecified','Y','0000-00-00 00:00:00'),(179734,10,'Z63.0 ','Problems in relationship with spouse or partner','Y','0000-00-00 00:00:00'),(179735,10,'Z63.1 ','Problems in relationship with in-laws','Y','0000-00-00 00:00:00'),(179736,10,'Z63.31 ','Absence of family member due to military deployment','Y','0000-00-00 00:00:00'),(179737,10,'Z63.32 ','Other absence of family member','Y','0000-00-00 00:00:00'),(179738,10,'Z63.4 ','Disappearance and death of family member','Y','0000-00-00 00:00:00'),(179739,10,'Z63.5 ','Disruption of family by separation and divorce','Y','0000-00-00 00:00:00'),(179740,10,'Z63.6 ','Dependent relative needing care at home','Y','0000-00-00 00:00:00'),(179741,10,'Z63.71 ','Stress on family due to return of family member from military deployment','Y','0000-00-00 00:00:00'),(179742,10,'Z63.72 ','Alcoholism and drug addiction in family','Y','0000-00-00 00:00:00'),(179743,10,'Z63.79 ','Other stressful life events affecting family and household','Y','0000-00-00 00:00:00'),(179744,10,'Z63.8 ','Other specified problems related to primary support group','Y','0000-00-00 00:00:00'),(179745,10,'Z63.9 ','Problem related to primary support group, unspecified','Y','0000-00-00 00:00:00'),(179746,10,'Z64.0 ','Problems related to unwanted pregnancy','Y','0000-00-00 00:00:00'),(179747,10,'Z64.1 ','Problems related to multiparity','Y','0000-00-00 00:00:00'),(179748,10,'Z64.4 ','Discord with counselors','Y','0000-00-00 00:00:00'),(179749,10,'Z65.0 ','Conviction in civil and criminal proceedings without imprisonment','Y','0000-00-00 00:00:00'),(179750,10,'Z65.1 ','Imprisonment and other incarceration','Y','0000-00-00 00:00:00'),(179751,10,'Z65.2 ','Problems related to release from prison','Y','0000-00-00 00:00:00'),(179752,10,'Z65.3 ','Problems related to other legal circumstances','Y','0000-00-00 00:00:00'),(179753,10,'Z65.4 ','Victim of crime and terrorism','Y','0000-00-00 00:00:00'),(179754,10,'Z65.5 ','Exposure to disaster, war and other hostilities','Y','0000-00-00 00:00:00'),(179755,10,'Z65.8 ','Other specified problems related to psychosocial circumstances','Y','0000-00-00 00:00:00'),(179756,10,'Z65.9 ','Problem related to unspecified psychosocial circumstances','Y','0000-00-00 00:00:00'),(179757,10,'Z66','Do not resuscitate','Y','0000-00-00 00:00:00'),(179758,10,'Z67.10 ','Type A blood, Rh positive','Y','0000-00-00 00:00:00'),(179759,10,'Z67.11 ','Type A blood, Rh negative','Y','0000-00-00 00:00:00'),(179760,10,'Z67.20 ','Type B blood, Rh positive','Y','0000-00-00 00:00:00'),(179761,10,'Z67.21 ','Type B blood, Rh negative','Y','0000-00-00 00:00:00'),(179762,10,'Z67.30 ','Type AB blood, Rh positive','Y','0000-00-00 00:00:00'),(179763,10,'Z67.31 ','Type AB blood, Rh negative','Y','0000-00-00 00:00:00'),(179764,10,'Z67.40 ','Type O blood, Rh positive','Y','0000-00-00 00:00:00'),(179765,10,'Z67.41 ','Type O blood, Rh negative','Y','0000-00-00 00:00:00'),(179766,10,'Z67.90 ','Unspecified blood type, Rh positive','Y','0000-00-00 00:00:00'),(179767,10,'Z67.91 ','Unspecified blood type, Rh negative','Y','0000-00-00 00:00:00'),(179768,10,'Z68.1 ','Body mass index [BMI] 19.9 or less, adult','Y','0000-00-00 00:00:00'),(179769,10,'Z68.20 ','Body mass index [BMI] 20.0-20.9, adult','Y','0000-00-00 00:00:00'),(179770,10,'Z68.21 ','Body mass index [BMI] 21.0-21.9, adult','Y','0000-00-00 00:00:00'),(179771,10,'Z68.22 ','Body mass index [BMI] 22.0-22.9, adult','Y','0000-00-00 00:00:00'),(179772,10,'Z68.23 ','Body mass index [BMI] 23.0-23.9, adult','Y','0000-00-00 00:00:00'),(179773,10,'Z68.24 ','Body mass index [BMI] 24.0-24.9, adult','Y','0000-00-00 00:00:00'),(179774,10,'Z68.25 ','Body mass index [BMI] 25.0-25.9, adult','Y','0000-00-00 00:00:00'),(179775,10,'Z68.26 ','Body mass index [BMI] 26.0-26.9, adult','Y','0000-00-00 00:00:00'),(179776,10,'Z68.27 ','Body mass index [BMI] 27.0-27.9, adult','Y','0000-00-00 00:00:00'),(179777,10,'Z68.28 ','Body mass index [BMI] 28.0-28.9, adult','Y','0000-00-00 00:00:00'),(179778,10,'Z68.29 ','Body mass index [BMI] 29.0-29.9, adult','Y','0000-00-00 00:00:00'),(179779,10,'Z68.30 ','Body mass index [BMI] 30.0-30.9, adult','Y','0000-00-00 00:00:00'),(179780,10,'Z68.31 ','Body mass index [BMI] 31.0-31.9, adult','Y','0000-00-00 00:00:00'),(179781,10,'Z68.32 ','Body mass index [BMI] 32.0-32.9, adult','Y','0000-00-00 00:00:00'),(179782,10,'Z68.33 ','Body mass index [BMI] 33.0-33.9, adult','Y','0000-00-00 00:00:00'),(179783,10,'Z68.34 ','Body mass index [BMI] 34.0-34.9, adult','Y','0000-00-00 00:00:00'),(179784,10,'Z68.35 ','Body mass index [BMI] 35.0-35.9, adult','Y','0000-00-00 00:00:00'),(179785,10,'Z68.36 ','Body mass index [BMI] 36.0-36.9, adult','Y','0000-00-00 00:00:00'),(179786,10,'Z68.37 ','Body mass index [BMI] 37.0-37.9, adult','Y','0000-00-00 00:00:00'),(179787,10,'Z68.38 ','Body mass index [BMI] 38.0-38.9, adult','Y','0000-00-00 00:00:00'),(179788,10,'Z68.39 ','Body mass index [BMI] 39.0-39.9, adult','Y','0000-00-00 00:00:00'),(179789,10,'Z68.41 ','Body mass index [BMI] 40.0-44.9, adult','Y','0000-00-00 00:00:00'),(179790,10,'Z68.42 ','Body mass index [BMI] 45.0-49.9, adult','Y','0000-00-00 00:00:00'),(179791,10,'Z68.43 ','Body mass index [BMI] 50.0-59.9, adult','Y','0000-00-00 00:00:00'),(179792,10,'Z68.44 ','Body mass index [BMI] 60.0-69.9, adult','Y','0000-00-00 00:00:00'),(179793,10,'Z68.45 ','Body mass index [BMI] 70 or greater, adult','Y','0000-00-00 00:00:00'),(179794,10,'Z68.51 ','Body mass index [BMI] pediatric, less than 5th percentile for age','Y','0000-00-00 00:00:00'),(179795,10,'Z68.52 ','Body mass index [BMI] pediatric, 5th percentile to less than 85th percentile for age','Y','0000-00-00 00:00:00'),(179796,10,'Z68.53 ','Body mass index [BMI] pediatric, 85th percentile to less than 95th percentile for age','Y','0000-00-00 00:00:00'),(179797,10,'Z68.54 ','Body mass index [BMI] pediatric, greater than or equal to 95th percentile for age','Y','0000-00-00 00:00:00'),(179798,10,'Z69.010 ','Encounter for mental health services for victim of parental child abuse','Y','0000-00-00 00:00:00'),(179799,10,'Z69.011 ','Encounter for mental health services for perpetrator of parental child abuse','Y','0000-00-00 00:00:00'),(179800,10,'Z69.020 ','Encounter for mental health services for victim of non-parental child abuse','Y','0000-00-00 00:00:00'),(179801,10,'Z69.021 ','Encounter for mental health services for perpetrator of non-parental child abuse','Y','0000-00-00 00:00:00'),(179802,10,'Z69.11 ','Encounter for mental health services for victim of spousal or partner abuse','Y','0000-00-00 00:00:00'),(179803,10,'Z69.12 ','Encounter for mental health services for perpetrator of spousal or partner abuse','Y','0000-00-00 00:00:00'),(179804,10,'Z69.81 ','Encounter for mental health services for victim of other abuse','Y','0000-00-00 00:00:00'),(179805,10,'Z69.82 ','Encounter for mental health services for perpetrator of other abuse','Y','0000-00-00 00:00:00'),(179806,10,'Z70.0 ','Counseling related to sexual attitude','Y','0000-00-00 00:00:00'),(179807,10,'Z70.1 ','Counseling related to patient\'s sexual behavior and orientation','Y','0000-00-00 00:00:00'),(179808,10,'Z70.2 ','Counseling related to sexual behavior and orientation of third party','Y','0000-00-00 00:00:00'),(179809,10,'Z70.3 ','Counseling related to combined concerns regarding sexual attitude, behavior and orientation','Y','0000-00-00 00:00:00'),(179810,10,'Z70.8 ','Other sex counseling','Y','0000-00-00 00:00:00'),(179811,10,'Z70.9 ','Sex counseling, unspecified','Y','0000-00-00 00:00:00'),(179812,10,'Z71.0 ','Person encountering health services to consult on behalf of another person','Y','0000-00-00 00:00:00'),(179813,10,'Z71.1 ','Person with feared health complaint in whom no diagnosis is made','Y','0000-00-00 00:00:00'),(179814,10,'Z71.2 ','Person consulting for explanation of examination or test findings','Y','0000-00-00 00:00:00'),(179815,10,'Z71.3 ','Dietary counseling and surveillance','Y','0000-00-00 00:00:00'),(179816,10,'Z71.41 ','Alcohol abuse counseling and surveillance of alcoholic','Y','0000-00-00 00:00:00'),(179817,10,'Z71.42 ','Counseling for family member of alcoholic','Y','0000-00-00 00:00:00'),(179818,10,'Z71.51 ','Drug abuse counseling and surveillance of drug abuser','Y','0000-00-00 00:00:00'),(179819,10,'Z71.52 ','Counseling for family member of drug abuser','Y','0000-00-00 00:00:00'),(179820,10,'Z71.6 ','Tobacco abuse counseling','Y','0000-00-00 00:00:00'),(179821,10,'Z71.7 ','Human immunodeficiency virus [HIV] counseling','Y','0000-00-00 00:00:00'),(179822,10,'Z71.81 ','Spiritual or religious counseling','Y','0000-00-00 00:00:00'),(179823,10,'Z71.82 ','Exercise counseling','Y','0000-00-00 00:00:00'),(179824,10,'Z71.83 ','Encounter for nonprocreative genetic counseling','Y','0000-00-00 00:00:00'),(179825,10,'Z71.84 ','Encounter for health counseling related to travel','Y','0000-00-00 00:00:00'),(179826,10,'Z71.85 ','Encounter for immunization safety counseling','Y','0000-00-00 00:00:00'),(179827,10,'Z71.87 ','Encounter for pediatric-to-adult transition counseling','Y','0000-00-00 00:00:00'),(179828,10,'Z71.88 ','Encounter for counseling for socioeconomic factors','Y','0000-00-00 00:00:00'),(179829,10,'Z71.89 ','Other specified counseling','Y','0000-00-00 00:00:00'),(179830,10,'Z71.9 ','Counseling, unspecified','Y','0000-00-00 00:00:00'),(179831,10,'Z72.0 ','Tobacco use','Y','0000-00-00 00:00:00'),(179832,10,'Z72.3 ','Lack of physical exercise','Y','0000-00-00 00:00:00'),(179833,10,'Z72.4 ','Inappropriate diet and eating habits','Y','0000-00-00 00:00:00'),(179834,10,'Z72.51 ','High risk heterosexual behavior','Y','0000-00-00 00:00:00'),(179835,10,'Z72.52 ','High risk homosexual behavior','Y','0000-00-00 00:00:00'),(179836,10,'Z72.53 ','High risk bisexual behavior','Y','0000-00-00 00:00:00'),(179837,10,'Z72.6 ','Gambling and betting','Y','0000-00-00 00:00:00'),(179838,10,'Z72.810 ','Child and adolescent antisocial behavior','Y','0000-00-00 00:00:00'),(179839,10,'Z72.811 ','Adult antisocial behavior','Y','0000-00-00 00:00:00'),(179840,10,'Z72.820 ','Sleep deprivation','Y','0000-00-00 00:00:00'),(179841,10,'Z72.821 ','Inadequate sleep hygiene','Y','0000-00-00 00:00:00'),(179842,10,'Z72.823 ','Risk of suffocation (smothering) under another while sleeping','Y','0000-00-00 00:00:00'),(179843,10,'Z72.89 ','Other problems related to lifestyle','Y','0000-00-00 00:00:00'),(179844,10,'Z72.9 ','Problem related to lifestyle, unspecified','Y','0000-00-00 00:00:00'),(179845,10,'Z73.0 ','Burn-out','Y','0000-00-00 00:00:00'),(179846,10,'Z73.1 ','Type A behavior pattern','Y','0000-00-00 00:00:00'),(179847,10,'Z73.2 ','Lack of relaxation and leisure','Y','0000-00-00 00:00:00'),(179848,10,'Z73.3 ','Stress, not elsewhere classified','Y','0000-00-00 00:00:00'),(179849,10,'Z73.4 ','Inadequate social skills, not elsewhere classified','Y','0000-00-00 00:00:00'),(179850,10,'Z73.5 ','Social role conflict, not elsewhere classified','Y','0000-00-00 00:00:00'),(179851,10,'Z73.6 ','Limitation of activities due to disability','Y','0000-00-00 00:00:00'),(179852,10,'Z73.810 ','Behavioral insomnia of childhood, sleep-onset association type','Y','0000-00-00 00:00:00'),(179853,10,'Z73.811 ','Behavioral insomnia of childhood, limit setting type','Y','0000-00-00 00:00:00'),(179854,10,'Z73.812 ','Behavioral insomnia of childhood, combined type','Y','0000-00-00 00:00:00'),(179855,10,'Z73.819 ','Behavioral insomnia of childhood, unspecified type','Y','0000-00-00 00:00:00'),(179856,10,'Z73.82 ','Dual sensory impairment','Y','0000-00-00 00:00:00'),(179857,10,'Z73.89 ','Other problems related to life management difficulty','Y','0000-00-00 00:00:00'),(179858,10,'Z73.9 ','Problem related to life management difficulty, unspecified','Y','0000-00-00 00:00:00'),(179859,10,'Z74.01 ','Bed confinement status','Y','0000-00-00 00:00:00'),(179860,10,'Z74.09 ','Other reduced mobility','Y','0000-00-00 00:00:00'),(179861,10,'Z74.1 ','Need for assistance with personal care','Y','0000-00-00 00:00:00'),(179862,10,'Z74.2 ','Need for assistance at home and no other household member able to render care','Y','0000-00-00 00:00:00'),(179863,10,'Z74.3 ','Need for continuous supervision','Y','0000-00-00 00:00:00'),(179864,10,'Z74.8 ','Other problems related to care provider dependency','Y','0000-00-00 00:00:00'),(179865,10,'Z74.9 ','Problem related to care provider dependency, unspecified','Y','0000-00-00 00:00:00'),(179866,10,'Z75.0 ','Medical services not available in home','Y','0000-00-00 00:00:00'),(179867,10,'Z75.1 ','Person awaiting admission to adequate facility elsewhere','Y','0000-00-00 00:00:00'),(179868,10,'Z75.2 ','Other waiting period for investigation and treatment','Y','0000-00-00 00:00:00'),(179869,10,'Z75.3 ','Unavailability and inaccessibility of health-care facilities','Y','0000-00-00 00:00:00'),(179870,10,'Z75.4 ','Unavailability and inaccessibility of other helping agencies','Y','0000-00-00 00:00:00'),(179871,10,'Z75.5 ','Holiday relief care','Y','0000-00-00 00:00:00'),(179872,10,'Z75.8 ','Other problems related to medical facilities and other health care','Y','0000-00-00 00:00:00'),(179873,10,'Z75.9 ','Unspecified problem related to medical facilities and other health care','Y','0000-00-00 00:00:00'),(179874,10,'Z76.0 ','Encounter for issue of repeat prescription','Y','0000-00-00 00:00:00'),(179875,10,'Z76.1 ','Encounter for health supervision and care of foundling','Y','0000-00-00 00:00:00'),(179876,10,'Z76.2 ','Encounter for health supervision and care of other healthy infant and child','Y','0000-00-00 00:00:00'),(179877,10,'Z76.3 ','Healthy person accompanying sick person','Y','0000-00-00 00:00:00'),(179878,10,'Z76.4 ','Other boarder to healthcare facility','Y','0000-00-00 00:00:00'),(179879,10,'Z76.5 ','Malingerer [conscious simulation]','Y','0000-00-00 00:00:00'),(179880,10,'Z76.81 ','Expectant parent(s) prebirth pediatrician visit','Y','0000-00-00 00:00:00'),(179881,10,'Z76.82 ','Awaiting organ transplant status','Y','0000-00-00 00:00:00'),(179882,10,'Z76.89 ','Persons encountering health services in other specified circumstances','Y','0000-00-00 00:00:00'),(179883,10,'Z77.010 ','Contact with and (suspected) exposure to arsenic','Y','0000-00-00 00:00:00'),(179884,10,'Z77.011 ','Contact with and (suspected) exposure to lead','Y','0000-00-00 00:00:00'),(179885,10,'Z77.012 ','Contact with and (suspected) exposure to uranium','Y','0000-00-00 00:00:00'),(179886,10,'Z77.018 ','Contact with and (suspected) exposure to other hazardous metals','Y','0000-00-00 00:00:00'),(179887,10,'Z77.020 ','Contact with and (suspected) exposure to aromatic amines','Y','0000-00-00 00:00:00'),(179888,10,'Z77.021 ','Contact with and (suspected) exposure to benzene','Y','0000-00-00 00:00:00'),(179889,10,'Z77.028 ','Contact with and (suspected) exposure to other hazardous aromatic compounds','Y','0000-00-00 00:00:00'),(179890,10,'Z77.090 ','Contact with and (suspected) exposure to asbestos','Y','0000-00-00 00:00:00'),(179891,10,'Z77.098 ','Contact with and (suspected) exposure to other hazardous, chiefly nonmedicinal, chemicals','Y','0000-00-00 00:00:00'),(179892,10,'Z77.110 ','Contact with and (suspected) exposure to air pollution','Y','0000-00-00 00:00:00'),(179893,10,'Z77.111 ','Contact with and (suspected) exposure to water pollution','Y','0000-00-00 00:00:00'),(179894,10,'Z77.112 ','Contact with and (suspected) exposure to soil pollution','Y','0000-00-00 00:00:00'),(179895,10,'Z77.118 ','Contact with and (suspected) exposure to other environmental pollution','Y','0000-00-00 00:00:00'),(179896,10,'Z77.120 ','Contact with and (suspected) exposure to mold (toxic)','Y','0000-00-00 00:00:00'),(179897,10,'Z77.121 ','Contact with and (suspected) exposure to harmful algae and algae toxins','Y','0000-00-00 00:00:00'),(179898,10,'Z77.122 ','Contact with and (suspected) exposure to noise','Y','0000-00-00 00:00:00'),(179899,10,'Z77.123 ','Contact with and (suspected) exposure to radon and other naturally occurring radiation','Y','0000-00-00 00:00:00'),(179900,10,'Z77.128 ','Contact with and (suspected) exposure to other hazards in the physical environment','Y','0000-00-00 00:00:00'),(179901,10,'Z77.21 ','Contact with and (suspected) exposure to potentially hazardous body fluids','Y','0000-00-00 00:00:00'),(179902,10,'Z77.22 ','Contact with and (suspected) exposure to environmental tobacco smoke (acute) (chronic)','Y','0000-00-00 00:00:00'),(179903,10,'Z77.29 ','Contact with and (suspected) exposure to other hazardous substances','Y','0000-00-00 00:00:00'),(179904,10,'Z77.9 ','Other contact with and (suspected) exposures hazardous to health','Y','0000-00-00 00:00:00'),(179905,10,'Z78.0 ','Asymptomatic menopausal state','Y','0000-00-00 00:00:00'),(179906,10,'Z78.1 ','Physical restraint status','Y','0000-00-00 00:00:00'),(179907,10,'Z78.9 ','Other specified health status','Y','0000-00-00 00:00:00'),(179908,10,'Z79.01 ','Long term (current) use of anticoagulants','Y','0000-00-00 00:00:00'),(179909,10,'Z79.02 ','Long term (current) use of antithrombotics/antiplatelets','Y','0000-00-00 00:00:00'),(179910,10,'Z79.1 ','Long term (current) use of non-steroidal anti-inflammatories (NSAID)','Y','0000-00-00 00:00:00'),(179911,10,'Z79.2 ','Long term (current) use of antibiotics','Y','0000-00-00 00:00:00'),(179912,10,'Z79.3 ','Long term (current) use of hormonal contraceptives','Y','0000-00-00 00:00:00'),(179913,10,'Z79.4 ','Long term (current) use of insulin','Y','0000-00-00 00:00:00'),(179914,10,'Z79.51 ','Long term (current) use of inhaled steroids','Y','0000-00-00 00:00:00'),(179915,10,'Z79.52 ','Long term (current) use of systemic steroids','Y','0000-00-00 00:00:00'),(179916,10,'Z79.60 ','Long term (current) use of unspecified immunomodulators and immunosuppressants','Y','0000-00-00 00:00:00'),(179917,10,'Z79.61 ','Long term (current) use of immunomodulator','Y','0000-00-00 00:00:00'),(179918,10,'Z79.620 ','Long term (current) use of immunosuppressive biologic','Y','0000-00-00 00:00:00'),(179919,10,'Z79.621 ','Long term (current) use of calcineurin inhibitor','Y','0000-00-00 00:00:00'),(179920,10,'Z79.622 ','Long term (current) use of Janus kinase inhibitor','Y','0000-00-00 00:00:00'),(179921,10,'Z79.623 ','Long term (current) use of mammalian target of rapamycin (mTOR) inhibitor','Y','0000-00-00 00:00:00'),(179922,10,'Z79.624 ','Long term (current) use of inhibitors of nucleotide synthesis','Y','0000-00-00 00:00:00'),(179923,10,'Z79.630 ','Long term (current) use of alkylating agent','Y','0000-00-00 00:00:00'),(179924,10,'Z79.631 ','Long term (current) use of antimetabolite agent','Y','0000-00-00 00:00:00'),(179925,10,'Z79.632 ','Long term (current) use of antitumor antibiotic','Y','0000-00-00 00:00:00'),(179926,10,'Z79.633 ','Long term (current) use of mitotic inhibitor','Y','0000-00-00 00:00:00'),(179927,10,'Z79.634 ','Long term (current) use of topoisomerase inhibitor','Y','0000-00-00 00:00:00'),(179928,10,'Z79.64 ','Long term (current) use of myelosuppressive agent','Y','0000-00-00 00:00:00'),(179929,10,'Z79.69 ','Long term (current) use of other immunomodulators and immunosuppressants','Y','0000-00-00 00:00:00'),(179930,10,'Z79.810 ','Long term (current) use of selective estrogen receptor modulators (SERMs)','Y','0000-00-00 00:00:00'),(179931,10,'Z79.811 ','Long term (current) use of aromatase inhibitors','Y','0000-00-00 00:00:00'),(179932,10,'Z79.818 ','Long term (current) use of other agents affecting estrogen receptors and estrogen levels','Y','0000-00-00 00:00:00'),(179933,10,'Z79.82 ','Long term (current) use of aspirin','Y','0000-00-00 00:00:00'),(179934,10,'Z79.83 ','Long term (current) use of bisphosphonates','Y','0000-00-00 00:00:00'),(179935,10,'Z79.84 ','Long term (current) use of oral hypoglycemic drugs','Y','0000-00-00 00:00:00'),(179936,10,'Z79.85 ','Long-term (current) use of injectable non-insulin antidiabetic drugs','Y','0000-00-00 00:00:00'),(179937,10,'Z79.890 ','Hormone replacement therapy','Y','0000-00-00 00:00:00'),(179938,10,'Z79.891 ','Long term (current) use of opiate analgesic','Y','0000-00-00 00:00:00'),(179939,10,'Z79.899 ','Other long term (current) drug therapy','Y','0000-00-00 00:00:00'),(179940,10,'Z80.0 ','Family history of malignant neoplasm of digestive organs','Y','0000-00-00 00:00:00'),(179941,10,'Z80.1 ','Family history of malignant neoplasm of trachea, bronchus and lung','Y','0000-00-00 00:00:00'),(179942,10,'Z80.2 ','Family history of malignant neoplasm of other respiratory and intrathoracic organs','Y','0000-00-00 00:00:00'),(179943,10,'Z80.3 ','Family history of malignant neoplasm of breast','Y','0000-00-00 00:00:00'),(179944,10,'Z80.41 ','Family history of malignant neoplasm of ovary','Y','0000-00-00 00:00:00'),(179945,10,'Z80.42 ','Family history of malignant neoplasm of prostate','Y','0000-00-00 00:00:00'),(179946,10,'Z80.43 ','Family history of malignant neoplasm of testis','Y','0000-00-00 00:00:00'),(179947,10,'Z80.49 ','Family history of malignant neoplasm of other genital organs','Y','0000-00-00 00:00:00'),(179948,10,'Z80.51 ','Family history of malignant neoplasm of kidney','Y','0000-00-00 00:00:00'),(179949,10,'Z80.52 ','Family history of malignant neoplasm of bladder','Y','0000-00-00 00:00:00'),(179950,10,'Z80.59 ','Family history of malignant neoplasm of other urinary tract organ','Y','0000-00-00 00:00:00'),(179951,10,'Z80.6 ','Family history of leukemia','Y','0000-00-00 00:00:00'),(179952,10,'Z80.7 ','Family history of other malignant neoplasms of lymphoid, hematopoietic and related tissues','Y','0000-00-00 00:00:00'),(179953,10,'Z80.8 ','Family history of malignant neoplasm of other organs or systems','Y','0000-00-00 00:00:00'),(179954,10,'Z80.9 ','Family history of malignant neoplasm, unspecified','Y','0000-00-00 00:00:00'),(179955,10,'Z81.0 ','Family history of intellectual disabilities','Y','0000-00-00 00:00:00'),(179956,10,'Z81.1 ','Family history of alcohol abuse and dependence','Y','0000-00-00 00:00:00'),(179957,10,'Z81.2 ','Family history of tobacco abuse and dependence','Y','0000-00-00 00:00:00'),(179958,10,'Z81.3 ','Family history of other psychoactive substance abuse and dependence','Y','0000-00-00 00:00:00'),(179959,10,'Z81.4 ','Family history of other substance abuse and dependence','Y','0000-00-00 00:00:00'),(179960,10,'Z81.8 ','Family history of other mental and behavioral disorders','Y','0000-00-00 00:00:00'),(179961,10,'Z82.0 ','Family history of epilepsy and other diseases of the nervous system','Y','0000-00-00 00:00:00'),(179962,10,'Z82.1 ','Family history of blindness and visual loss','Y','0000-00-00 00:00:00'),(179963,10,'Z82.2 ','Family history of deafness and hearing loss','Y','0000-00-00 00:00:00'),(179964,10,'Z82.3 ','Family history of stroke','Y','0000-00-00 00:00:00'),(179965,10,'Z82.41 ','Family history of sudden cardiac death','Y','0000-00-00 00:00:00'),(179966,10,'Z82.49 ','Family history of ischemic heart disease and other diseases of the circulatory system','Y','0000-00-00 00:00:00'),(179967,10,'Z82.5 ','Family history of asthma and other chronic lower respiratory diseases','Y','0000-00-00 00:00:00'),(179968,10,'Z82.61 ','Family history of arthritis','Y','0000-00-00 00:00:00'),(179969,10,'Z82.62 ','Family history of osteoporosis','Y','0000-00-00 00:00:00'),(179970,10,'Z82.69 ','Family history of other diseases of the musculoskeletal system and connective tissue','Y','0000-00-00 00:00:00'),(179971,10,'Z82.71 ','Family history of polycystic kidney','Y','0000-00-00 00:00:00'),(179972,10,'Z82.79 ','Family history of other congenital malformations, deformations and chromosomal abnormalities','Y','0000-00-00 00:00:00'),(179973,10,'Z82.8 ','Family history of other disabilities and chronic diseases leading to disablement, not elsewhere classified','Y','0000-00-00 00:00:00'),(179974,10,'Z83.0 ','Family history of human immunodeficiency virus [HIV] disease','Y','0000-00-00 00:00:00'),(179975,10,'Z83.1 ','Family history of other infectious and parasitic diseases','Y','0000-00-00 00:00:00'),(179976,10,'Z83.2 ','Family history of diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism','Y','0000-00-00 00:00:00'),(179977,10,'Z83.3 ','Family history of diabetes mellitus','Y','0000-00-00 00:00:00'),(179978,10,'Z83.41 ','Family history of multiple endocrine neoplasia [MEN] syndrome','Y','0000-00-00 00:00:00'),(179979,10,'Z83.42 ','Family history of familial hypercholesterolemia','Y','0000-00-00 00:00:00'),(179980,10,'Z83.430 ','Family history of elevated lipoprotein(a)','Y','0000-00-00 00:00:00'),(179981,10,'Z83.438 ','Family history of other disorder of lipoprotein metabolism and other lipidemia','Y','0000-00-00 00:00:00'),(179982,10,'Z83.49 ','Family history of other endocrine, nutritional and metabolic diseases','Y','0000-00-00 00:00:00'),(179983,10,'Z83.511 ','Family history of glaucoma','Y','0000-00-00 00:00:00'),(179984,10,'Z83.518 ','Family history of other specified eye disorder','Y','0000-00-00 00:00:00'),(179985,10,'Z83.52 ','Family history of ear disorders','Y','0000-00-00 00:00:00'),(179986,10,'Z83.6 ','Family history of other diseases of the respiratory system','Y','0000-00-00 00:00:00'),(179987,10,'Z83.710 ','Family history of adenomatous and serrated polyps','Y','0000-00-00 00:00:00'),(179988,10,'Z83.711 ','Family history of hyperplastic colon polyps','Y','0000-00-00 00:00:00'),(179989,10,'Z83.718 ','Other family history of colon polyps','Y','0000-00-00 00:00:00'),(179990,10,'Z83.719 ','Family history of colon polyps, unspecified','Y','0000-00-00 00:00:00'),(179991,10,'Z83.79 ','Family history of other diseases of the digestive system','Y','0000-00-00 00:00:00'),(179992,10,'Z84.0 ','Family history of diseases of the skin and subcutaneous tissue','Y','0000-00-00 00:00:00'),(179993,10,'Z84.1 ','Family history of disorders of kidney and ureter','Y','0000-00-00 00:00:00'),(179994,10,'Z84.2 ','Family history of other diseases of the genitourinary system','Y','0000-00-00 00:00:00'),(179995,10,'Z84.3 ','Family history of consanguinity','Y','0000-00-00 00:00:00'),(179996,10,'Z84.81 ','Family history of carrier of genetic disease','Y','0000-00-00 00:00:00'),(179997,10,'Z84.82 ','Family history of sudden infant death syndrome','Y','0000-00-00 00:00:00'),(179998,10,'Z84.89 ','Family history of other specified conditions','Y','0000-00-00 00:00:00'),(179999,10,'Z85.00 ','Personal history of malignant neoplasm of unspecified digestive organ','Y','0000-00-00 00:00:00'),(180000,10,'Z85.01 ','Personal history of malignant neoplasm of esophagus','Y','0000-00-00 00:00:00'),(180001,10,'Z85.020 ','Personal history of malignant carcinoid tumor of stomach','Y','0000-00-00 00:00:00'),(180002,10,'Z85.028 ','Personal history of other malignant neoplasm of stomach','Y','0000-00-00 00:00:00'),(180003,10,'Z85.030 ','Personal history of malignant carcinoid tumor of large intestine','Y','0000-00-00 00:00:00'),(180004,10,'Z85.038 ','Personal history of other malignant neoplasm of large intestine','Y','0000-00-00 00:00:00'),(180005,10,'Z85.040 ','Personal history of malignant carcinoid tumor of rectum','Y','0000-00-00 00:00:00'),(180006,10,'Z85.048 ','Personal history of other malignant neoplasm of rectum, rectosigmoid junction, and anus','Y','0000-00-00 00:00:00'),(180007,10,'Z85.05 ','Personal history of malignant neoplasm of liver','Y','0000-00-00 00:00:00'),(180008,10,'Z85.060 ','Personal history of malignant carcinoid tumor of small intestine','Y','0000-00-00 00:00:00'),(180009,10,'Z85.068 ','Personal history of other malignant neoplasm of small intestine','Y','0000-00-00 00:00:00'),(180010,10,'Z85.07 ','Personal history of malignant neoplasm of pancreas','Y','0000-00-00 00:00:00'),(180011,10,'Z85.09 ','Personal history of malignant neoplasm of other digestive organs','Y','0000-00-00 00:00:00'),(180012,10,'Z85.110 ','Personal history of malignant carcinoid tumor of bronchus and lung','Y','0000-00-00 00:00:00'),(180013,10,'Z85.118 ','Personal history of other malignant neoplasm of bronchus and lung','Y','0000-00-00 00:00:00'),(180014,10,'Z85.12 ','Personal history of malignant neoplasm of trachea','Y','0000-00-00 00:00:00'),(180015,10,'Z85.20 ','Personal history of malignant neoplasm of unspecified respiratory organ','Y','0000-00-00 00:00:00'),(180016,10,'Z85.21 ','Personal history of malignant neoplasm of larynx','Y','0000-00-00 00:00:00'),(180017,10,'Z85.22 ','Personal history of malignant neoplasm of nasal cavities, middle ear, and accessory sinuses','Y','0000-00-00 00:00:00'),(180018,10,'Z85.230 ','Personal history of malignant carcinoid tumor of thymus','Y','0000-00-00 00:00:00'),(180019,10,'Z85.238 ','Personal history of other malignant neoplasm of thymus','Y','0000-00-00 00:00:00'),(180020,10,'Z85.29 ','Personal history of malignant neoplasm of other respiratory and intrathoracic organs','Y','0000-00-00 00:00:00'),(180021,10,'Z85.3 ','Personal history of malignant neoplasm of breast','Y','0000-00-00 00:00:00'),(180022,10,'Z85.40 ','Personal history of malignant neoplasm of unspecified female genital organ','Y','0000-00-00 00:00:00'),(180023,10,'Z85.41 ','Personal history of malignant neoplasm of cervix uteri','Y','0000-00-00 00:00:00'),(180024,10,'Z85.42 ','Personal history of malignant neoplasm of other parts of uterus','Y','0000-00-00 00:00:00'),(180025,10,'Z85.43 ','Personal history of malignant neoplasm of ovary','Y','0000-00-00 00:00:00'),(180026,10,'Z85.44 ','Personal history of malignant neoplasm of other female genital organs','Y','0000-00-00 00:00:00'),(180027,10,'Z85.45 ','Personal history of malignant neoplasm of unspecified male genital organ','Y','0000-00-00 00:00:00'),(180028,10,'Z85.46 ','Personal history of malignant neoplasm of prostate','Y','0000-00-00 00:00:00'),(180029,10,'Z85.47 ','Personal history of malignant neoplasm of testis','Y','0000-00-00 00:00:00'),(180030,10,'Z85.48 ','Personal history of malignant neoplasm of epididymis','Y','0000-00-00 00:00:00'),(180031,10,'Z85.49 ','Personal history of malignant neoplasm of other male genital organs','Y','0000-00-00 00:00:00'),(180032,10,'Z85.50 ','Personal history of malignant neoplasm of unspecified urinary tract organ','Y','0000-00-00 00:00:00'),(180033,10,'Z85.51 ','Personal history of malignant neoplasm of bladder','Y','0000-00-00 00:00:00'),(180034,10,'Z85.520 ','Personal history of malignant carcinoid tumor of kidney','Y','0000-00-00 00:00:00'),(180035,10,'Z85.528 ','Personal history of other malignant neoplasm of kidney','Y','0000-00-00 00:00:00'),(180036,10,'Z85.53 ','Personal history of malignant neoplasm of renal pelvis','Y','0000-00-00 00:00:00'),(180037,10,'Z85.54 ','Personal history of malignant neoplasm of ureter','Y','0000-00-00 00:00:00'),(180038,10,'Z85.59 ','Personal history of malignant neoplasm of other urinary tract organ','Y','0000-00-00 00:00:00'),(180039,10,'Z85.6 ','Personal history of leukemia','Y','0000-00-00 00:00:00'),(180040,10,'Z85.71 ','Personal history of Hodgkin lymphoma','Y','0000-00-00 00:00:00'),(180041,10,'Z85.72 ','Personal history of non-Hodgkin lymphomas','Y','0000-00-00 00:00:00'),(180042,10,'Z85.79 ','Personal history of other malignant neoplasms of lymphoid, hematopoietic and related tissues','Y','0000-00-00 00:00:00'),(180043,10,'Z85.810 ','Personal history of malignant neoplasm of tongue','Y','0000-00-00 00:00:00'),(180044,10,'Z85.818 ','Personal history of malignant neoplasm of other sites of lip, oral cavity, and pharynx','Y','0000-00-00 00:00:00'),(180045,10,'Z85.819 ','Personal history of malignant neoplasm of unspecified site of lip, oral cavity, and pharynx','Y','0000-00-00 00:00:00'),(180046,10,'Z85.820 ','Personal history of malignant melanoma of skin','Y','0000-00-00 00:00:00'),(180047,10,'Z85.821 ','Personal history of Merkel cell carcinoma','Y','0000-00-00 00:00:00'),(180048,10,'Z85.828 ','Personal history of other malignant neoplasm of skin','Y','0000-00-00 00:00:00'),(180049,10,'Z85.830 ','Personal history of malignant neoplasm of bone','Y','0000-00-00 00:00:00'),(180050,10,'Z85.831 ','Personal history of malignant neoplasm of soft tissue','Y','0000-00-00 00:00:00'),(180051,10,'Z85.840 ','Personal history of malignant neoplasm of eye','Y','0000-00-00 00:00:00'),(180052,10,'Z85.841 ','Personal history of malignant neoplasm of brain','Y','0000-00-00 00:00:00'),(180053,10,'Z85.848 ','Personal history of malignant neoplasm of other parts of nervous tissue','Y','0000-00-00 00:00:00'),(180054,10,'Z85.850 ','Personal history of malignant neoplasm of thyroid','Y','0000-00-00 00:00:00'),(180055,10,'Z85.858 ','Personal history of malignant neoplasm of other endocrine glands','Y','0000-00-00 00:00:00'),(180056,10,'Z85.89 ','Personal history of malignant neoplasm of other organs and systems','Y','0000-00-00 00:00:00'),(180057,10,'Z85.9 ','Personal history of malignant neoplasm, unspecified','Y','0000-00-00 00:00:00'),(180058,10,'Z86.000 ','Personal history of in-situ neoplasm of breast','Y','0000-00-00 00:00:00'),(180059,10,'Z86.001 ','Personal history of in-situ neoplasm of cervix uteri','Y','0000-00-00 00:00:00'),(180060,10,'Z86.002 ','Personal history of in-situ neoplasm of other and unspecified genital organs','Y','0000-00-00 00:00:00'),(180061,10,'Z86.003 ','Personal history of in-situ neoplasm of oral cavity, esophagus and stomach','Y','0000-00-00 00:00:00'),(180062,10,'Z86.004 ','Personal history of in-situ neoplasm of other and unspecified digestive organs','Y','0000-00-00 00:00:00'),(180063,10,'Z86.005 ','Personal history of in-situ neoplasm of middle ear and respiratory system','Y','0000-00-00 00:00:00'),(180064,10,'Z86.006 ','Personal history of melanoma in-situ','Y','0000-00-00 00:00:00'),(180065,10,'Z86.007 ','Personal history of in-situ neoplasm of skin','Y','0000-00-00 00:00:00'),(180066,10,'Z86.008 ','Personal history of in-situ neoplasm of other site','Y','0000-00-00 00:00:00'),(180067,10,'Z86.010 ','Personal history of colonic polyps','Y','0000-00-00 00:00:00'),(180068,10,'Z86.011 ','Personal history of benign neoplasm of the brain','Y','0000-00-00 00:00:00'),(180069,10,'Z86.012 ','Personal history of benign carcinoid tumor','Y','0000-00-00 00:00:00'),(180070,10,'Z86.018 ','Personal history of other benign neoplasm','Y','0000-00-00 00:00:00'),(180071,10,'Z86.03 ','Personal history of neoplasm of uncertain behavior','Y','0000-00-00 00:00:00'),(180072,10,'Z86.11 ','Personal history of tuberculosis','Y','0000-00-00 00:00:00'),(180073,10,'Z86.12 ','Personal history of poliomyelitis','Y','0000-00-00 00:00:00'),(180074,10,'Z86.13 ','Personal history of malaria','Y','0000-00-00 00:00:00'),(180075,10,'Z86.14 ','Personal history of Methicillin resistant Staphylococcus aureus infection','Y','0000-00-00 00:00:00'),(180076,10,'Z86.15 ','Personal history of latent tuberculosis infection','Y','0000-00-00 00:00:00'),(180077,10,'Z86.16 ','Personal history of COVID-19','Y','0000-00-00 00:00:00'),(180078,10,'Z86.19 ','Personal history of other infectious and parasitic diseases','Y','0000-00-00 00:00:00'),(180079,10,'Z86.2 ','Personal history of diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism','Y','0000-00-00 00:00:00'),(180080,10,'Z86.31 ','Personal history of diabetic foot ulcer','Y','0000-00-00 00:00:00'),(180081,10,'Z86.32 ','Personal history of gestational diabetes','Y','0000-00-00 00:00:00'),(180082,10,'Z86.39 ','Personal history of other endocrine, nutritional and metabolic disease','Y','0000-00-00 00:00:00'),(180083,10,'Z86.51 ','Personal history of combat and operational stress reaction','Y','0000-00-00 00:00:00'),(180084,10,'Z86.59 ','Personal history of other mental and behavioral disorders','Y','0000-00-00 00:00:00'),(180085,10,'Z86.61 ','Personal history of infections of the central nervous system','Y','0000-00-00 00:00:00'),(180086,10,'Z86.69 ','Personal history of other diseases of the nervous system and sense organs','Y','0000-00-00 00:00:00'),(180087,10,'Z86.711 ','Personal history of pulmonary embolism','Y','0000-00-00 00:00:00'),(180088,10,'Z86.718 ','Personal history of other venous thrombosis and embolism','Y','0000-00-00 00:00:00'),(180089,10,'Z86.72 ','Personal history of thrombophlebitis','Y','0000-00-00 00:00:00'),(180090,10,'Z86.73 ','Personal history of transient ischemic attack (TIA), and cerebral infarction without residual deficits','Y','0000-00-00 00:00:00'),(180091,10,'Z86.74 ','Personal history of sudden cardiac arrest','Y','0000-00-00 00:00:00'),(180092,10,'Z86.79 ','Personal history of other diseases of the circulatory system','Y','0000-00-00 00:00:00'),(180093,10,'Z87.01 ','Personal history of pneumonia (recurrent)','Y','0000-00-00 00:00:00'),(180094,10,'Z87.09 ','Personal history of other diseases of the respiratory system','Y','0000-00-00 00:00:00'),(180095,10,'Z87.11 ','Personal history of peptic ulcer disease','Y','0000-00-00 00:00:00'),(180096,10,'Z87.19 ','Personal history of other diseases of the digestive system','Y','0000-00-00 00:00:00'),(180097,10,'Z87.2 ','Personal history of diseases of the skin and subcutaneous tissue','Y','0000-00-00 00:00:00'),(180098,10,'Z87.310 ','Personal history of (healed) osteoporosis fracture','Y','0000-00-00 00:00:00'),(180099,10,'Z87.311 ','Personal history of (healed) other pathological fracture','Y','0000-00-00 00:00:00'),(180100,10,'Z87.312 ','Personal history of (healed) stress fracture','Y','0000-00-00 00:00:00'),(180101,10,'Z87.39 ','Personal history of other diseases of the musculoskeletal system and connective tissue','Y','0000-00-00 00:00:00'),(180102,10,'Z87.410 ','Personal history of cervical dysplasia','Y','0000-00-00 00:00:00'),(180103,10,'Z87.411 ','Personal history of vaginal dysplasia','Y','0000-00-00 00:00:00'),(180104,10,'Z87.412 ','Personal history of vulvar dysplasia','Y','0000-00-00 00:00:00'),(180105,10,'Z87.42 ','Personal history of other diseases of the female genital tract','Y','0000-00-00 00:00:00'),(180106,10,'Z87.430 ','Personal history of prostatic dysplasia','Y','0000-00-00 00:00:00'),(180107,10,'Z87.438 ','Personal history of other diseases of male genital organs','Y','0000-00-00 00:00:00'),(180108,10,'Z87.440 ','Personal history of urinary (tract) infections','Y','0000-00-00 00:00:00'),(180109,10,'Z87.441 ','Personal history of nephrotic syndrome','Y','0000-00-00 00:00:00'),(180110,10,'Z87.442 ','Personal history of urinary calculi','Y','0000-00-00 00:00:00'),(180111,10,'Z87.448 ','Personal history of other diseases of urinary system','Y','0000-00-00 00:00:00'),(180112,10,'Z87.51 ','Personal history of pre-term labor','Y','0000-00-00 00:00:00'),(180113,10,'Z87.59 ','Personal history of other complications of pregnancy, childbirth and the puerperium','Y','0000-00-00 00:00:00'),(180114,10,'Z87.61 ','Personal history of (corrected) necrotizing enterocolitis of newborn','Y','0000-00-00 00:00:00'),(180115,10,'Z87.68 ','Personal history of other (corrected) conditions arising in the perinatal period','Y','0000-00-00 00:00:00'),(180116,10,'Z87.710 ','Personal history of (corrected) hypospadias','Y','0000-00-00 00:00:00'),(180117,10,'Z87.718 ','Personal history of other specified (corrected) congenital malformations of genitourinary system','Y','0000-00-00 00:00:00'),(180118,10,'Z87.720 ','Personal history of (corrected) congenital malformations of eye','Y','0000-00-00 00:00:00'),(180119,10,'Z87.721 ','Personal history of (corrected) congenital malformations of ear','Y','0000-00-00 00:00:00'),(180120,10,'Z87.728 ','Personal history of other specified (corrected) congenital malformations of nervous system and sense organs','Y','0000-00-00 00:00:00'),(180121,10,'Z87.730 ','Personal history of (corrected) cleft lip and palate','Y','0000-00-00 00:00:00'),(180122,10,'Z87.731 ','Personal history of (corrected) tracheoesophageal fistula or atresia','Y','0000-00-00 00:00:00'),(180123,10,'Z87.732 ','Personal history of (corrected) persistent cloaca or cloacal malformations','Y','0000-00-00 00:00:00'),(180124,10,'Z87.738 ','Personal history of other specified (corrected) congenital malformations of digestive system','Y','0000-00-00 00:00:00'),(180125,10,'Z87.74 ','Personal history of (corrected) congenital malformations of heart and circulatory system','Y','0000-00-00 00:00:00'),(180126,10,'Z87.75 ','Personal history of (corrected) congenital malformations of respiratory system','Y','0000-00-00 00:00:00'),(180127,10,'Z87.760 ','Personal history of (corrected) congenital diaphragmatic hernia or other congenital diaphragm malformations','Y','0000-00-00 00:00:00'),(180128,10,'Z87.761 ','Personal history of (corrected) gastroschisis','Y','0000-00-00 00:00:00'),(180129,10,'Z87.762 ','Personal history of (corrected) prune belly malformation','Y','0000-00-00 00:00:00'),(180130,10,'Z87.763 ','Personal history of other (corrected) congenital abdominal wall malformations','Y','0000-00-00 00:00:00'),(180131,10,'Z87.768 ','Personal history of other specified (corrected) congenital malformations of integument, limbs and musculoskeletal system','Y','0000-00-00 00:00:00'),(180132,10,'Z87.790 ','Personal history of (corrected) congenital malformations of face and neck','Y','0000-00-00 00:00:00'),(180133,10,'Z87.798 ','Personal history of other (corrected) congenital malformations','Y','0000-00-00 00:00:00'),(180134,10,'Z87.81 ','Personal history of (healed) traumatic fracture','Y','0000-00-00 00:00:00'),(180135,10,'Z87.820 ','Personal history of traumatic brain injury','Y','0000-00-00 00:00:00'),(180136,10,'Z87.821 ','Personal history of retained foreign body fully removed','Y','0000-00-00 00:00:00'),(180137,10,'Z87.828 ','Personal history of other (healed) physical injury and trauma','Y','0000-00-00 00:00:00'),(180138,10,'Z87.890 ','Personal history of sex reassignment','Y','0000-00-00 00:00:00'),(180139,10,'Z87.891 ','Personal history of nicotine dependence','Y','0000-00-00 00:00:00'),(180140,10,'Z87.892 ','Personal history of anaphylaxis','Y','0000-00-00 00:00:00'),(180141,10,'Z87.898 ','Personal history of other specified conditions','Y','0000-00-00 00:00:00'),(180142,10,'Z88.0 ','Allergy status to penicillin','Y','0000-00-00 00:00:00'),(180143,10,'Z88.1 ','Allergy status to other antibiotic agents','Y','0000-00-00 00:00:00'),(180144,10,'Z88.2 ','Allergy status to sulfonamides','Y','0000-00-00 00:00:00'),(180145,10,'Z88.3 ','Allergy status to other anti-infective agents','Y','0000-00-00 00:00:00'),(180146,10,'Z88.4 ','Allergy status to anesthetic agent','Y','0000-00-00 00:00:00'),(180147,10,'Z88.5 ','Allergy status to narcotic agent','Y','0000-00-00 00:00:00'),(180148,10,'Z88.6 ','Allergy status to analgesic agent','Y','0000-00-00 00:00:00'),(180149,10,'Z88.7 ','Allergy status to serum and vaccine','Y','0000-00-00 00:00:00'),(180150,10,'Z88.8 ','Allergy status to other drugs, medicaments and biological substances','Y','0000-00-00 00:00:00'),(180151,10,'Z88.9 ','Allergy status to unspecified drugs, medicaments and biological substances','Y','0000-00-00 00:00:00'),(180152,10,'Z89.011 ','Acquired absence of right thumb','Y','0000-00-00 00:00:00'),(180153,10,'Z89.012 ','Acquired absence of left thumb','Y','0000-00-00 00:00:00'),(180154,10,'Z89.019 ','Acquired absence of unspecified thumb','Y','0000-00-00 00:00:00'),(180155,10,'Z89.021 ','Acquired absence of right finger(s)','Y','0000-00-00 00:00:00'),(180156,10,'Z89.022 ','Acquired absence of left finger(s)','Y','0000-00-00 00:00:00'),(180157,10,'Z89.029 ','Acquired absence of unspecified finger(s)','Y','0000-00-00 00:00:00'),(180158,10,'Z89.111 ','Acquired absence of right hand','Y','0000-00-00 00:00:00'),(180159,10,'Z89.112 ','Acquired absence of left hand','Y','0000-00-00 00:00:00'),(180160,10,'Z89.119 ','Acquired absence of unspecified hand','Y','0000-00-00 00:00:00'),(180161,10,'Z89.121 ','Acquired absence of right wrist','Y','0000-00-00 00:00:00'),(180162,10,'Z89.122 ','Acquired absence of left wrist','Y','0000-00-00 00:00:00'),(180163,10,'Z89.129 ','Acquired absence of unspecified wrist','Y','0000-00-00 00:00:00'),(180164,10,'Z89.201 ','Acquired absence of right upper limb, unspecified level','Y','0000-00-00 00:00:00'),(180165,10,'Z89.202 ','Acquired absence of left upper limb, unspecified level','Y','0000-00-00 00:00:00'),(180166,10,'Z89.209 ','Acquired absence of unspecified upper limb, unspecified level','Y','0000-00-00 00:00:00'),(180167,10,'Z89.211 ','Acquired absence of right upper limb below elbow','Y','0000-00-00 00:00:00'),(180168,10,'Z89.212 ','Acquired absence of left upper limb below elbow','Y','0000-00-00 00:00:00'),(180169,10,'Z89.219 ','Acquired absence of unspecified upper limb below elbow','Y','0000-00-00 00:00:00'),(180170,10,'Z89.221 ','Acquired absence of right upper limb above elbow','Y','0000-00-00 00:00:00'),(180171,10,'Z89.222 ','Acquired absence of left upper limb above elbow','Y','0000-00-00 00:00:00'),(180172,10,'Z89.229 ','Acquired absence of unspecified upper limb above elbow','Y','0000-00-00 00:00:00'),(180173,10,'Z89.231 ','Acquired absence of right shoulder','Y','0000-00-00 00:00:00'),(180174,10,'Z89.232 ','Acquired absence of left shoulder','Y','0000-00-00 00:00:00'),(180175,10,'Z89.239 ','Acquired absence of unspecified shoulder','Y','0000-00-00 00:00:00'),(180176,10,'Z89.411 ','Acquired absence of right great toe','Y','0000-00-00 00:00:00'),(180177,10,'Z89.412 ','Acquired absence of left great toe','Y','0000-00-00 00:00:00'),(180178,10,'Z89.419 ','Acquired absence of unspecified great toe','Y','0000-00-00 00:00:00'),(180179,10,'Z89.421 ','Acquired absence of other right toe(s)','Y','0000-00-00 00:00:00'),(180180,10,'Z89.422 ','Acquired absence of other left toe(s)','Y','0000-00-00 00:00:00'),(180181,10,'Z89.429 ','Acquired absence of other toe(s), unspecified side','Y','0000-00-00 00:00:00'),(180182,10,'Z89.431 ','Acquired absence of right foot','Y','0000-00-00 00:00:00'),(180183,10,'Z89.432 ','Acquired absence of left foot','Y','0000-00-00 00:00:00'),(180184,10,'Z89.439 ','Acquired absence of unspecified foot','Y','0000-00-00 00:00:00'),(180185,10,'Z89.441 ','Acquired absence of right ankle','Y','0000-00-00 00:00:00'),(180186,10,'Z89.442 ','Acquired absence of left ankle','Y','0000-00-00 00:00:00'),(180187,10,'Z89.449 ','Acquired absence of unspecified ankle','Y','0000-00-00 00:00:00'),(180188,10,'Z89.511 ','Acquired absence of right leg below knee','Y','0000-00-00 00:00:00'),(180189,10,'Z89.512 ','Acquired absence of left leg below knee','Y','0000-00-00 00:00:00'),(180190,10,'Z89.519 ','Acquired absence of unspecified leg below knee','Y','0000-00-00 00:00:00'),(180191,10,'Z89.521 ','Acquired absence of right knee','Y','0000-00-00 00:00:00'),(180192,10,'Z89.522 ','Acquired absence of left knee','Y','0000-00-00 00:00:00'),(180193,10,'Z89.529 ','Acquired absence of unspecified knee','Y','0000-00-00 00:00:00'),(180194,10,'Z89.611 ','Acquired absence of right leg above knee','Y','0000-00-00 00:00:00'),(180195,10,'Z89.612 ','Acquired absence of left leg above knee','Y','0000-00-00 00:00:00'),(180196,10,'Z89.619 ','Acquired absence of unspecified leg above knee','Y','0000-00-00 00:00:00'),(180197,10,'Z89.621 ','Acquired absence of right hip joint','Y','0000-00-00 00:00:00'),(180198,10,'Z89.622 ','Acquired absence of left hip joint','Y','0000-00-00 00:00:00'),(180199,10,'Z89.629 ','Acquired absence of unspecified hip joint','Y','0000-00-00 00:00:00'),(180200,10,'Z89.9 ','Acquired absence of limb, unspecified','Y','0000-00-00 00:00:00'),(180201,10,'Z90.01 ','Acquired absence of eye','Y','0000-00-00 00:00:00'),(180202,10,'Z90.02 ','Acquired absence of larynx','Y','0000-00-00 00:00:00'),(180203,10,'Z90.09 ','Acquired absence of other part of head and neck','Y','0000-00-00 00:00:00'),(180204,10,'Z90.10 ','Acquired absence of unspecified breast and nipple','Y','0000-00-00 00:00:00'),(180205,10,'Z90.11 ','Acquired absence of right breast and nipple','Y','0000-00-00 00:00:00'),(180206,10,'Z90.12 ','Acquired absence of left breast and nipple','Y','0000-00-00 00:00:00'),(180207,10,'Z90.13 ','Acquired absence of bilateral breasts and nipples','Y','0000-00-00 00:00:00'),(180208,10,'Z90.2 ','Acquired absence of lung [part of]','Y','0000-00-00 00:00:00'),(180209,10,'Z90.3 ','Acquired absence of stomach [part of]','Y','0000-00-00 00:00:00'),(180210,10,'Z90.410 ','Acquired total absence of pancreas','Y','0000-00-00 00:00:00'),(180211,10,'Z90.411 ','Acquired partial absence of pancreas','Y','0000-00-00 00:00:00'),(180212,10,'Z90.49 ','Acquired absence of other specified parts of digestive tract','Y','0000-00-00 00:00:00'),(180213,10,'Z90.5 ','Acquired absence of kidney','Y','0000-00-00 00:00:00'),(180214,10,'Z90.6 ','Acquired absence of other parts of urinary tract','Y','0000-00-00 00:00:00'),(180215,10,'Z90.710 ','Acquired absence of both cervix and uterus','Y','0000-00-00 00:00:00'),(180216,10,'Z90.711 ','Acquired absence of uterus with remaining cervical stump','Y','0000-00-00 00:00:00'),(180217,10,'Z90.712 ','Acquired absence of cervix with remaining uterus','Y','0000-00-00 00:00:00'),(180218,10,'Z90.721 ','Acquired absence of ovaries, unilateral','Y','0000-00-00 00:00:00'),(180219,10,'Z90.722 ','Acquired absence of ovaries, bilateral','Y','0000-00-00 00:00:00'),(180220,10,'Z90.79 ','Acquired absence of other genital organ(s)','Y','0000-00-00 00:00:00'),(180221,10,'Z90.81 ','Acquired absence of spleen','Y','0000-00-00 00:00:00'),(180222,10,'Z90.89 ','Acquired absence of other organs','Y','0000-00-00 00:00:00'),(180223,10,'Z91.010 ','Allergy to peanuts','Y','0000-00-00 00:00:00'),(180224,10,'Z91.011 ','Allergy to milk products','Y','0000-00-00 00:00:00'),(180225,10,'Z91.012 ','Allergy to eggs','Y','0000-00-00 00:00:00'),(180226,10,'Z91.013 ','Allergy to seafood','Y','0000-00-00 00:00:00'),(180227,10,'Z91.014 ','Allergy to mammalian meats','Y','0000-00-00 00:00:00'),(180228,10,'Z91.018 ','Allergy to other foods','Y','0000-00-00 00:00:00'),(180229,10,'Z91.02 ','Food additives allergy status','Y','0000-00-00 00:00:00'),(180230,10,'Z91.030 ','Bee allergy status','Y','0000-00-00 00:00:00'),(180231,10,'Z91.038 ','Other insect allergy status','Y','0000-00-00 00:00:00'),(180232,10,'Z91.040 ','Latex allergy status','Y','0000-00-00 00:00:00'),(180233,10,'Z91.041 ','Radiographic dye allergy status','Y','0000-00-00 00:00:00'),(180234,10,'Z91.048 ','Other nonmedicinal substance allergy status','Y','0000-00-00 00:00:00'),(180235,10,'Z91.09 ','Other allergy status, other than to drugs and biological substances','Y','0000-00-00 00:00:00'),(180236,10,'Z91.110 ','Patient\'s noncompliance with dietary regimen due to financial hardship','Y','0000-00-00 00:00:00'),(180237,10,'Z91.118 ','Patient\'s noncompliance with dietary regimen for other reason','Y','0000-00-00 00:00:00'),(180238,10,'Z91.119 ','Patient\'s noncompliance with dietary regimen due to unspecified reason','Y','0000-00-00 00:00:00'),(180239,10,'Z91.120 ','Patient\'s intentional underdosing of medication regimen due to financial hardship','Y','0000-00-00 00:00:00'),(180240,10,'Z91.128 ','Patient\'s intentional underdosing of medication regimen for other reason','Y','0000-00-00 00:00:00'),(180241,10,'Z91.130 ','Patient\'s unintentional underdosing of medication regimen due to age-related debility','Y','0000-00-00 00:00:00'),(180242,10,'Z91.138 ','Patient\'s unintentional underdosing of medication regimen for other reason','Y','0000-00-00 00:00:00'),(180243,10,'Z91.141 ','Patient\'s other noncompliance with medication regimen due to financial hardship','Y','0000-00-00 00:00:00'),(180244,10,'Z91.148 ','Patient\'s other noncompliance with medication regimen for other reason','Y','0000-00-00 00:00:00'),(180245,10,'Z91.151 ','Patient\'s noncompliance with renal dialysis due to financial hardship','Y','0000-00-00 00:00:00'),(180246,10,'Z91.158 ','Patient\'s noncompliance with renal dialysis for other reason','Y','0000-00-00 00:00:00'),(180247,10,'Z91.190 ','Patient\'s noncompliance with other medical treatment and regimen due to financial hardship','Y','0000-00-00 00:00:00'),(180248,10,'Z91.198 ','Patient\'s noncompliance with other medical treatment and regimen for other reason','Y','0000-00-00 00:00:00'),(180249,10,'Z91.199 ','Patient\'s noncompliance with other medical treatment and regimen due to unspecified reason','Y','0000-00-00 00:00:00'),(180250,10,'Z91.A10 ','Caregiver\'s noncompliance with patient\'s dietary regimen due to financial hardship','Y','0000-00-00 00:00:00'),(180251,10,'Z91.A18 ','Caregiver\'s noncompliance with patient\'s dietary regimen for other reason','Y','0000-00-00 00:00:00'),(180252,10,'Z91.A20 ','Caregiver\'s intentional underdosing of patient\'s medication regimen due to financial hardship','Y','0000-00-00 00:00:00'),(180253,10,'Z91.A28 ','Caregiver\'s intentional underdosing of medication regimen for other reason','Y','0000-00-00 00:00:00'),(180254,10,'Z91.A3 ','Caregiver\'s unintentional underdosing of patient\'s medication regimen','Y','0000-00-00 00:00:00'),(180255,10,'Z91.A41 ','Caregiver\'s other noncompliance with patient\'s medication regimen due to financial hardship','Y','0000-00-00 00:00:00'),(180256,10,'Z91.A48 ','Caregiver\'s other noncompliance with patient\'s medication regimen for other reason','Y','0000-00-00 00:00:00'),(180257,10,'Z91.A51 ','Caregiver\'s noncompliance with patient\'s renal dialysis due to financial hardship','Y','0000-00-00 00:00:00'),(180258,10,'Z91.A58 ','Caregiver\'s noncompliance with patient\'s renal dialysis for other reason','Y','0000-00-00 00:00:00'),(180259,10,'Z91.A91 ','Caregiver\'s noncompliance with patient\'s other medical treatment and regimen due to financial hardship','Y','0000-00-00 00:00:00'),(180260,10,'Z91.A98 ','Caregiver\'s noncompliance with patient\'s other medical treatment and regimen for other reason','Y','0000-00-00 00:00:00'),(180261,10,'Z91.410 ','Personal history of adult physical and sexual abuse','Y','0000-00-00 00:00:00'),(180262,10,'Z91.411 ','Personal history of adult psychological abuse','Y','0000-00-00 00:00:00'),(180263,10,'Z91.412 ','Personal history of adult neglect','Y','0000-00-00 00:00:00'),(180264,10,'Z91.413 ','Personal history of adult financial abuse','Y','0000-00-00 00:00:00'),(180265,10,'Z91.414 ','Personal history of adult intimate partner abuse','Y','0000-00-00 00:00:00'),(180266,10,'Z91.419 ','Personal history of unspecified adult abuse','Y','0000-00-00 00:00:00'),(180267,10,'Z91.42 ','Personal history of forced labor or sexual exploitation','Y','0000-00-00 00:00:00'),(180268,10,'Z91.49 ','Other personal history of psychological trauma, not elsewhere classified','Y','0000-00-00 00:00:00'),(180269,10,'Z91.51 ','Personal history of suicidal behavior','Y','0000-00-00 00:00:00'),(180270,10,'Z91.52 ','Personal history of nonsuicidal self-harm','Y','0000-00-00 00:00:00'),(180271,10,'Z91.81 ','History of falling','Y','0000-00-00 00:00:00'),(180272,10,'Z91.82 ','Personal history of military deployment','Y','0000-00-00 00:00:00'),(180273,10,'Z91.83 ','Wandering in diseases classified elsewhere','Y','0000-00-00 00:00:00'),(180274,10,'Z91.841 ','Risk for dental caries, low','Y','0000-00-00 00:00:00'),(180275,10,'Z91.842 ','Risk for dental caries, moderate','Y','0000-00-00 00:00:00'),(180276,10,'Z91.843 ','Risk for dental caries, high','Y','0000-00-00 00:00:00'),(180277,10,'Z91.849 ','Unspecified risk for dental caries','Y','0000-00-00 00:00:00'),(180278,10,'Z91.85 ','Personal history of military service','Y','0000-00-00 00:00:00'),(180279,10,'Z91.89 ','Other specified personal risk factors, not elsewhere classified','Y','0000-00-00 00:00:00'),(180280,10,'Z92.0 ','Personal history of contraception','Y','0000-00-00 00:00:00'),(180281,10,'Z92.21 ','Personal history of antineoplastic chemotherapy','Y','0000-00-00 00:00:00'),(180282,10,'Z92.22 ','Personal history of monoclonal drug therapy','Y','0000-00-00 00:00:00'),(180283,10,'Z92.23 ','Personal history of estrogen therapy','Y','0000-00-00 00:00:00'),(180284,10,'Z92.240 ','Personal history of inhaled steroid therapy','Y','0000-00-00 00:00:00'),(180285,10,'Z92.241 ','Personal history of systemic steroid therapy','Y','0000-00-00 00:00:00'),(180286,10,'Z92.25 ','Personal history of immunosuppression therapy','Y','0000-00-00 00:00:00'),(180287,10,'Z92.29 ','Personal history of other drug therapy','Y','0000-00-00 00:00:00'),(180288,10,'Z92.3 ','Personal history of irradiation','Y','0000-00-00 00:00:00'),(180289,10,'Z92.81 ','Personal history of extracorporeal membrane oxygenation (ECMO)','Y','0000-00-00 00:00:00'),(180290,10,'Z92.82 ','Status post administration of tPA (rtPA) in a different facility within the last 24 hours prior to admission to current facility','Y','0000-00-00 00:00:00'),(180291,10,'Z92.83 ','Personal history of failed moderate sedation','Y','0000-00-00 00:00:00'),(180292,10,'Z92.84 ','Personal history of unintended awareness under general anesthesia','Y','0000-00-00 00:00:00'),(180293,10,'Z92.850 ','Personal history of Chimeric Antigen Receptor T-cell therapy','Y','0000-00-00 00:00:00'),(180294,10,'Z92.858 ','Personal history of other cellular therapy','Y','0000-00-00 00:00:00'),(180295,10,'Z92.859 ','Personal history of cellular therapy, unspecified','Y','0000-00-00 00:00:00'),(180296,10,'Z92.86 ','Personal history of gene therapy','Y','0000-00-00 00:00:00'),(180297,10,'Z92.89 ','Personal history of other medical treatment','Y','0000-00-00 00:00:00'),(180298,10,'Z93.0 ','Tracheostomy status','Y','0000-00-00 00:00:00'),(180299,10,'Z93.1 ','Gastrostomy status','Y','0000-00-00 00:00:00'),(180300,10,'Z93.2 ','Ileostomy status','Y','0000-00-00 00:00:00'),(180301,10,'Z93.3 ','Colostomy status','Y','0000-00-00 00:00:00'),(180302,10,'Z93.4 ','Other artificial openings of gastrointestinal tract status','Y','0000-00-00 00:00:00'),(180303,10,'Z93.50 ','Unspecified cystostomy status','Y','0000-00-00 00:00:00'),(180304,10,'Z93.51 ','Cutaneous-vesicostomy status','Y','0000-00-00 00:00:00'),(180305,10,'Z93.52 ','Appendico-vesicostomy status','Y','0000-00-00 00:00:00'),(180306,10,'Z93.59 ','Other cystostomy status','Y','0000-00-00 00:00:00'),(180307,10,'Z93.6 ','Other artificial openings of urinary tract status','Y','0000-00-00 00:00:00'),(180308,10,'Z93.8 ','Other artificial opening status','Y','0000-00-00 00:00:00'),(180309,10,'Z93.9 ','Artificial opening status, unspecified','Y','0000-00-00 00:00:00'),(180310,10,'Z94.0 ','Kidney transplant status','Y','0000-00-00 00:00:00'),(180311,10,'Z94.1 ','Heart transplant status','Y','0000-00-00 00:00:00'),(180312,10,'Z94.2 ','Lung transplant status','Y','0000-00-00 00:00:00'),(180313,10,'Z94.3 ','Heart and lungs transplant status','Y','0000-00-00 00:00:00'),(180314,10,'Z94.4 ','Liver transplant status','Y','0000-00-00 00:00:00'),(180315,10,'Z94.5 ','Skin transplant status','Y','0000-00-00 00:00:00'),(180316,10,'Z94.6 ','Bone transplant status','Y','0000-00-00 00:00:00'),(180317,10,'Z94.7 ','Corneal transplant status','Y','0000-00-00 00:00:00'),(180318,10,'Z94.81 ','Bone marrow transplant status','Y','0000-00-00 00:00:00'),(180319,10,'Z94.82 ','Intestine transplant status','Y','0000-00-00 00:00:00'),(180320,10,'Z94.83 ','Pancreas transplant status','Y','0000-00-00 00:00:00'),(180321,10,'Z94.84 ','Stem cells transplant status','Y','0000-00-00 00:00:00'),(180322,10,'Z94.89 ','Other transplanted organ and tissue status','Y','0000-00-00 00:00:00'),(180323,10,'Z94.9 ','Transplanted organ and tissue status, unspecified','Y','0000-00-00 00:00:00'),(180324,10,'Z95.0 ','Presence of cardiac pacemaker','Y','0000-00-00 00:00:00'),(180325,10,'Z95.1 ','Presence of aortocoronary bypass graft','Y','0000-00-00 00:00:00'),(180326,10,'Z95.2 ','Presence of prosthetic heart valve','Y','0000-00-00 00:00:00'),(180327,10,'Z95.3 ','Presence of xenogenic heart valve','Y','0000-00-00 00:00:00'),(180328,10,'Z95.4 ','Presence of other heart-valve replacement','Y','0000-00-00 00:00:00'),(180329,10,'Z95.5 ','Presence of coronary angioplasty implant and graft','Y','0000-00-00 00:00:00'),(180330,10,'Z95.810 ','Presence of automatic (implantable) cardiac defibrillator','Y','0000-00-00 00:00:00'),(180331,10,'Z95.811 ','Presence of heart assist device','Y','0000-00-00 00:00:00'),(180332,10,'Z95.812 ','Presence of fully implantable artificial heart','Y','0000-00-00 00:00:00'),(180333,10,'Z95.818 ','Presence of other cardiac implants and grafts','Y','0000-00-00 00:00:00'),(180334,10,'Z95.820 ','Peripheral vascular angioplasty status with implants and grafts','Y','0000-00-00 00:00:00'),(180335,10,'Z95.828 ','Presence of other vascular implants and grafts','Y','0000-00-00 00:00:00'),(180336,10,'Z95.9 ','Presence of cardiac and vascular implant and graft, unspecified','Y','0000-00-00 00:00:00'),(180337,10,'Z96.0 ','Presence of urogenital implants','Y','0000-00-00 00:00:00'),(180338,10,'Z96.1 ','Presence of intraocular lens','Y','0000-00-00 00:00:00'),(180339,10,'Z96.20 ','Presence of otological and audiological implant, unspecified','Y','0000-00-00 00:00:00'),(180340,10,'Z96.21 ','Cochlear implant status','Y','0000-00-00 00:00:00'),(180341,10,'Z96.22 ','Myringotomy tube(s) status','Y','0000-00-00 00:00:00'),(180342,10,'Z96.29 ','Presence of other otological and audiological implants','Y','0000-00-00 00:00:00'),(180343,10,'Z96.3 ','Presence of artificial larynx','Y','0000-00-00 00:00:00'),(180344,10,'Z96.41 ','Presence of insulin pump (external) (internal)','Y','0000-00-00 00:00:00'),(180345,10,'Z96.49 ','Presence of other endocrine implants','Y','0000-00-00 00:00:00'),(180346,10,'Z96.5 ','Presence of tooth-root and mandibular implants','Y','0000-00-00 00:00:00'),(180347,10,'Z96.60 ','Presence of unspecified orthopedic joint implant','Y','0000-00-00 00:00:00'),(180348,10,'Z96.611 ','Presence of right artificial shoulder joint','Y','0000-00-00 00:00:00'),(180349,10,'Z96.612 ','Presence of left artificial shoulder joint','Y','0000-00-00 00:00:00'),(180350,10,'Z96.619 ','Presence of unspecified artificial shoulder joint','Y','0000-00-00 00:00:00'),(180351,10,'Z96.621 ','Presence of right artificial elbow joint','Y','0000-00-00 00:00:00'),(180352,10,'Z96.622 ','Presence of left artificial elbow joint','Y','0000-00-00 00:00:00'),(180353,10,'Z96.629 ','Presence of unspecified artificial elbow joint','Y','0000-00-00 00:00:00'),(180354,10,'Z96.631 ','Presence of right artificial wrist joint','Y','0000-00-00 00:00:00'),(180355,10,'Z96.632 ','Presence of left artificial wrist joint','Y','0000-00-00 00:00:00'),(180356,10,'Z96.639 ','Presence of unspecified artificial wrist joint','Y','0000-00-00 00:00:00'),(180357,10,'Z96.641 ','Presence of right artificial hip joint','Y','0000-00-00 00:00:00'),(180358,10,'Z96.642 ','Presence of left artificial hip joint','Y','0000-00-00 00:00:00'),(180359,10,'Z96.643 ','Presence of artificial hip joint, bilateral','Y','0000-00-00 00:00:00'),(180360,10,'Z96.649 ','Presence of unspecified artificial hip joint','Y','0000-00-00 00:00:00'),(180361,10,'Z96.651 ','Presence of right artificial knee joint','Y','0000-00-00 00:00:00'),(180362,10,'Z96.652 ','Presence of left artificial knee joint','Y','0000-00-00 00:00:00'),(180363,10,'Z96.653 ','Presence of artificial knee joint, bilateral','Y','0000-00-00 00:00:00'),(180364,10,'Z96.659 ','Presence of unspecified artificial knee joint','Y','0000-00-00 00:00:00'),(180365,10,'Z96.661 ','Presence of right artificial ankle joint','Y','0000-00-00 00:00:00'),(180366,10,'Z96.662 ','Presence of left artificial ankle joint','Y','0000-00-00 00:00:00'),(180367,10,'Z96.669 ','Presence of unspecified artificial ankle joint','Y','0000-00-00 00:00:00'),(180368,10,'Z96.691 ','Finger-joint replacement of right hand','Y','0000-00-00 00:00:00'),(180369,10,'Z96.692 ','Finger-joint replacement of left hand','Y','0000-00-00 00:00:00'),(180370,10,'Z96.693 ','Finger-joint replacement, bilateral','Y','0000-00-00 00:00:00'),(180371,10,'Z96.698 ','Presence of other orthopedic joint implants','Y','0000-00-00 00:00:00'),(180372,10,'Z96.7 ','Presence of other bone and tendon implants','Y','0000-00-00 00:00:00'),(180373,10,'Z96.81 ','Presence of artificial skin','Y','0000-00-00 00:00:00'),(180374,10,'Z96.82 ','Presence of neurostimulator','Y','0000-00-00 00:00:00'),(180375,10,'Z96.89 ','Presence of other specified functional implants','Y','0000-00-00 00:00:00'),(180376,10,'Z96.9 ','Presence of functional implant, unspecified','Y','0000-00-00 00:00:00'),(180377,10,'Z97.0 ','Presence of artificial eye','Y','0000-00-00 00:00:00'),(180378,10,'Z97.10 ','Presence of artificial limb (complete) (partial), unspecified','Y','0000-00-00 00:00:00'),(180379,10,'Z97.11 ','Presence of artificial right arm (complete) (partial)','Y','0000-00-00 00:00:00'),(180380,10,'Z97.12 ','Presence of artificial left arm (complete) (partial)','Y','0000-00-00 00:00:00'),(180381,10,'Z97.13 ','Presence of artificial right leg (complete) (partial)','Y','0000-00-00 00:00:00'),(180382,10,'Z97.14 ','Presence of artificial left leg (complete) (partial)','Y','0000-00-00 00:00:00'),(180383,10,'Z97.15 ','Presence of artificial arms, bilateral (complete) (partial)','Y','0000-00-00 00:00:00'),(180384,10,'Z97.16 ','Presence of artificial legs, bilateral (complete) (partial)','Y','0000-00-00 00:00:00'),(180385,10,'Z97.2 ','Presence of dental prosthetic device (complete) (partial)','Y','0000-00-00 00:00:00'),(180386,10,'Z97.3 ','Presence of spectacles and contact lenses','Y','0000-00-00 00:00:00'),(180387,10,'Z97.4 ','Presence of external hearing-aid','Y','0000-00-00 00:00:00'),(180388,10,'Z97.5 ','Presence of (intrauterine) contraceptive device','Y','0000-00-00 00:00:00'),(180389,10,'Z97.8 ','Presence of other specified devices','Y','0000-00-00 00:00:00'),(180390,10,'Z98.0 ','Intestinal bypass and anastomosis status','Y','0000-00-00 00:00:00'),(180391,10,'Z98.1 ','Arthrodesis status','Y','0000-00-00 00:00:00'),(180392,10,'Z98.2 ','Presence of cerebrospinal fluid drainage device','Y','0000-00-00 00:00:00'),(180393,10,'Z98.3 ','Post therapeutic collapse of lung status','Y','0000-00-00 00:00:00'),(180394,10,'Z98.41 ','Cataract extraction status, right eye','Y','0000-00-00 00:00:00'),(180395,10,'Z98.42 ','Cataract extraction status, left eye','Y','0000-00-00 00:00:00'),(180396,10,'Z98.49 ','Cataract extraction status, unspecified eye','Y','0000-00-00 00:00:00'),(180397,10,'Z98.51 ','Tubal ligation status','Y','0000-00-00 00:00:00'),(180398,10,'Z98.52 ','Vasectomy status','Y','0000-00-00 00:00:00'),(180399,10,'Z98.61 ','Coronary angioplasty status','Y','0000-00-00 00:00:00'),(180400,10,'Z98.62 ','Peripheral vascular angioplasty status','Y','0000-00-00 00:00:00'),(180401,10,'Z98.810 ','Dental sealant status','Y','0000-00-00 00:00:00'),(180402,10,'Z98.811 ','Dental restoration status','Y','0000-00-00 00:00:00'),(180403,10,'Z98.818 ','Other dental procedure status','Y','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `icd` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `imei_master`
--

DROP TABLE IF EXISTS `imei_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `imei_master` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `name` varchar(40) NOT NULL,
  `serial_number` varchar(30) NOT NULL,
  `merchant_id` varchar(30) NOT NULL,
  `imei_number` varchar(30) NOT NULL,
  `hardware_id` varchar(30) NOT NULL,
  `merchant_store_pos_code` varchar(30) NOT NULL,
  `is_active` enum('N','Y') NOT NULL DEFAULT 'Y',
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `modified_by` varchar(20) NOT NULL,
  `modified_date` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `imei_master`
--

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

--
-- Table structure for table `insurance_ratecard_mapping`
--

DROP TABLE IF EXISTS `insurance_ratecard_mapping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `insurance_ratecard_mapping` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `ins_cd` varchar(4) NOT NULL,
  `rate_master_detail_id` int(11) NOT NULL,
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(20) NOT NULL,
  `lastmodified_date` datetime NOT NULL,
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`ins_cd`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `insurance_ratecard_mapping`
--

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

--
-- Table structure for table `insurance_tpa_master`
--

DROP TABLE IF EXISTS `insurance_tpa_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `insurance_tpa_master` (
  `company_id` tinyint(4) NOT NULL,
  `master_cd` varchar(6) NOT NULL,
  `agency_code` varchar(4) NOT NULL,
  `agency_type` enum('I','C') NOT NULL DEFAULT 'I' COMMENT 'insurance or corporate',
  `agency_ledger_code` varchar(5) NOT NULL,
  `name` varchar(50) NOT NULL,
  `rate_master_detail_id` int(11) NOT NULL,
  `pan_number` varchar(10) NOT NULL,
  `credit_period_indays` int(11) NOT NULL,
  `address1` varchar(200) NOT NULL,
  `address2` varchar(200) NOT NULL,
  `address3` varchar(200) NOT NULL,
  `city` varchar(30) NOT NULL,
  `state` varchar(15) NOT NULL,
  `pin` varchar(6) NOT NULL,
  `country` varchar(50) NOT NULL,
  `primary_no` varchar(20) NOT NULL,
  `secondary_no` varchar(20) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(20) NOT NULL,
  `lastmodified_date` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`master_cd`,`agency_code`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `insurance_tpa_master`
--

LOCK TABLES `insurance_tpa_master` WRITE;
/*!40000 ALTER TABLE `insurance_tpa_master` DISABLE KEYS */;
INSERT INTO `insurance_tpa_master` VALUES (0,'INS','1','I','','SBI GENERAL INSURANCE COMPANY LIMITED',0,'',0,'','','','','','','','','','Y','achal','2020-12-01 15:22:41','parth','2021-09-07 10:17:14'),(0,'INS','10','I','','IFFCO-TOKYO',0,'',0,'','','','','','','','','','Y','sooraj','2022-01-31 13:07:16','','0000-00-00 00:00:00'),(0,'INS','11','I','','TATA AIG GENARAL INSURANCE COMPANY LTD.',0,'',0,'','','','','','','','','','Y','sooraj','2022-02-04 09:16:54','','0000-00-00 00:00:00'),(0,'INS','12','I','','HDFC ARGO',0,'',0,'','','','','','','','','','Y','sooraj','2022-02-07 10:34:21','','0000-00-00 00:00:00'),(0,'INS','13','I','','BAJAJ ALLIANZ GENERAL INSURANCE COMPANY LIMITED',0,'',0,'','','','','','','','','','Y','surajm','2022-03-12 16:34:24','','0000-00-00 00:00:00'),(0,'INS','14','I','','FAMILY HEALTH PLAN LTD.',0,'',0,'','','','','','','','','','Y','surajm','2022-03-14 09:55:24','','0000-00-00 00:00:00'),(0,'INS','15','I','','NIVA ( MAX ) BUPA ',0,'',0,'','','','','','','','','','Y','pritesh','2022-03-23 17:01:10','','0000-00-00 00:00:00'),(0,'INS','16','I','','MANIPAL CIGNA',0,'',0,'','','','','','','','','','Y','vismay','2022-04-14 10:44:15','','0000-00-00 00:00:00'),(0,'INS','18','I','','RELIANCE GENERAL INSURANCE',0,'',0,'','','','','','','','','','Y','surajm','2022-06-16 20:03:46','','0000-00-00 00:00:00'),(0,'INS','19','I','','ACKO GENERAL INSURANCE',0,'',0,'','','','','','','','','','Y','nileshprajapati','2022-06-20 10:08:45','','0000-00-00 00:00:00'),(0,'INS','2','I','','THE UNITED INDIA INSURANCE COMPANY LIMITED',0,'',0,'24','WHITES ROAD ','','CHENNAI','TAMILNADU','600014','','','','Y','parth','2021-08-13 12:33:08','parth','2021-08-13 12:34:43'),(0,'INS','21','I','','MEDI ASSIST',0,'',0,'','','','','','','','','','Y','nileshprajapati','2022-08-01 20:31:47','','0000-00-00 00:00:00'),(0,'INS','22','I','','CHOLAMANDALAM MS GENERAL INSU. ',0,'',0,'','','','','','','','','','Y','surajm','2022-09-04 07:29:22','','0000-00-00 00:00:00'),(0,'INS','23','I','','MANIPAL CIGNA HEALTH INSURANCE',0,'',0,'','','','','','','','','','Y','surajm','2022-09-07 22:55:50','','0000-00-00 00:00:00'),(0,'INS','24','I','','VOLO HEALTH CARE TPA',0,'',0,'','','','','','','','','','Y','vishal','2025-11-06 10:05:06','','0000-00-00 00:00:00'),(0,'INS','3','I','','NEW INDIA ASSSURANCE COMPANY LIMITED',0,'',0,'87, M.','G. ROAD','FORT','MUMBAI','','400001','','','','Y','vj','2021-08-14 10:25:36','','0000-00-00 00:00:00'),(0,'INS','4','I','','THE ORIENTAL INSURANCE COMPANY LIMITED',0,'',0,'A - 25/27 ','ASAF ALI ROAD','','NEW DELHI','','110002','','','','Y','vj','2021-08-14 10:27:14','','0000-00-00 00:00:00'),(0,'INS','5','I','','NATIONAL INSURANCE COMPANY LIMITED',0,'',0,'3, MIDDLETON STEET','','','KOLKATA WEST BENGAL ','','700071','','','','Y','vj','2021-08-14 10:31:15','','0000-00-00 00:00:00'),(0,'INS','6','I','','ICICI LUMBARD',0,'',0,'','','','','','','','','','Y','rakeshg','2021-08-18 12:12:46','','0000-00-00 00:00:00'),(0,'INS','7','I','','ADITYA BIRLA',0,'',0,'','','','','','','','','','Y','rakeshg','2021-08-20 21:50:41','','0000-00-00 00:00:00'),(0,'INS','8','I','','CARE HEALTH INSURANCE LIMITED',0,'',0,'UNIT NO 604-607, 6TH FLOOR, TOWER C,','UNITECH CYBER PARK,',' SECTOR 39, GURGAON','GURGAON','Haryana','122001','','','','Y','yatin','2021-09-22 12:12:57','','0000-00-00 00:00:00'),(0,'INS','9','I','','STAR HEALTH AND ALLIED INSURANCE CO LTD',0,'',0,' NO 1,','NEW TANK STREET, VALLUVARKOTTAM HIGH ROAD,','NUNGAMBAKKAM,','CHENNAI','Tamil Nadu','600034','','','','Y','yatin','2021-11-26 12:18:24','','0000-00-00 00:00:00'),(0,'TPA','1','I','','PARAMOUNT HEALTH SERVICES & INSURANCE TPA PVT. LTD',0,'',0,'PLOT NO A 442','ROAD NO 28, MIDC INDUSTRIAL AREA, WAGLE ESTATE','RAM NAGAR NEAR VITTHAL RUKHMANI MANDIR','THANE','MAHARASHTRA','400604','','0226644460','','Y','parth','2021-08-13 12:39:28','','0000-00-00 00:00:00'),(0,'TPA','10','I','','VIDAL HEALTH INSURANCE TPA PVT. LTD',0,'',0,'TOWER 2, 1ST FLOOR, SJR I PARK,','PLOT NO. 13,14,15.','EPIP ZONE, WHITEFIELD','BANGALORE','','560066','','','','Y','vj','2021-08-13 16:33:19','','0000-00-00 00:00:00'),(0,'TPA','11','I','','ANYUTA INSURANCE TPA IN HEALTH CARE PVT. LTD ',0,'',0,'NO. 31/18, MAIN ROAD, LOYOLA LAYOUT','WARD NO. 111','SHANTHALA TOWN','BANGALORE','','560047','','','','Y','vj','2021-08-13 16:38:07','','0000-00-00 00:00:00'),(0,'TPA','12','I','','EAST WEST ASSIST INSURANCE TPA PVT. LTD ',0,'',0,'404 & 602 DLF PLACE','SAKET, 4TH FLOOR, MALL OFFICE BLOCK','DISTRICT CENTRE, SAKET','NEW DELHI','','110017','','','','Y','vj','2021-08-13 16:41:12','','0000-00-00 00:00:00'),(0,'TPA','13','I','','MEDSAVE HEALTH INSURANCE TPA LIMITED.',0,'',0,'F - 701A, LADO SARAI','BEHIND GOLF COURSE','MEHRAULI','NEW DELHI','','110030','','','','Y','vj','2021-08-13 16:43:09','','0000-00-00 00:00:00'),(0,'TPA','14','I','','GENINS INDIA INSURANCE TPA LIMITED',0,'',0,'D - 34','GROUND FLOOR','SECTOR - 2','NOIDA','','201301','','','','Y','vj','2021-08-13 16:44:36','','0000-00-00 00:00:00'),(0,'TPA','15','I','','ALANKIT INSURANCE TPA LIMITED',0,'',0,'FLAT NOS. ','201 FLOOR, ','VIKAS SURYA MALL','ROHINI','','110085','','','','Y','vj','2021-08-13 16:46:10','vj','2021-08-13 16:46:40'),(0,'TPA','16','I','','HEALTH INDIA INSURANCE TPA SERVICES PVT. LTD',0,'',0,'ANAND COMMERCIAL CO. COMPOUND','103 - B L B S MARG','GANDHI NAGAR, VIKHROLI','MUMBAI','','','','','','Y','vj','2021-08-13 16:49:41','','0000-00-00 00:00:00'),(0,'TPA','17','I','','GOOD HEALTH INSURANCE TPA LIMITD',0,'',0,'8 - 2 - 1/8/1, S.V.R. TOWERS','4TH FLOOR, SRINAGAR COLONY ROAD','PANJAGUTTA','HYDERABAD','','500082','','','','Y','vj','2021-08-13 16:52:44','','0000-00-00 00:00:00'),(0,'TPA','18','I','','VIPUL MEDCORP INSURANCE TPA PVT. LTD',0,'',0,'515','UDYOG VIHAR','PHASE V','GURGAON','','122016','','','','Y','vj','2021-08-13 16:54:14','','0000-00-00 00:00:00'),(0,'TPA','19','I','','PARK MEDICLAIM INSURANCE TPA PVT. LTD ',0,'',0,'702','VIKRANT TOWER','RAJENDRA PLACE','NEW DELHI','','110008','','','','Y','vj','2021-08-13 16:55:47','','0000-00-00 00:00:00'),(0,'TPA','2','I','','UNITED HEALTH CARE PAREKH INSURANCE TPA PVT. LTD',0,'',0,'3A GUNDECHA ENCLAVE','KHERANI ROAD ','SAKI NAKA, ANDHERI','MUMBAI ','','400072','','','','Y','vj','2021-08-13 16:00:18','vj','2021-08-13 16:02:41'),(0,'TPA','20','I','','SAFEWAY INSURANCE TPA PVT. LTD',0,'',0,'815','VISHWASADAN ','DISTRICT CENTRE, JANAKPURI','NEW DELHI','','110005','','','','Y','vj','2021-08-13 16:57:48','','0000-00-00 00:00:00'),(0,'TPA','21','I','','ANMOL MEDICARE INSURANCE TPA LIMITED',0,'',0,'NO. 3, 2ND FLOOR, NBCC HOUSE, NEAR SHAJANAND ','COLLEGE, OPP. ','STOCK EXCHANGE, AMBAVADI','AHMEDABAD','gujarat','380015','','','','Y','vj','2021-08-13 17:01:08','','0000-00-00 00:00:00'),(0,'TPA','22','I','','GRAND INSURANCE TPA PRIVATE LIMITED',0,'',0,'45 A ','HINDUSTAN PARK','P,S. : GARIGHAT','KOLKATA','','700029','','','','Y','vj','2021-08-13 17:21:30','vj','2021-08-13 17:22:26'),(0,'TPA','23','I','','ROTHSHIELD INSURANCE TPA LIMITED',0,'',0,'402 ','RAHEJA CHAMBERS','NARIMAN POINT','MUMBAI','','400020','','','','Y','vj','2021-08-13 17:23:35','','0000-00-00 00:00:00'),(0,'TPA','24','I','','ERICSON INSURANCE TPA PRIVATE LIMITED',0,'',0,'11 - C','CORPORATE PARK','ST ROAD CHEMBUR','MUMBAI','','400071','','','','Y','vj','2021-08-13 17:24:59','','0000-00-00 00:00:00'),(0,'TPA','25','I','','HEALTH INSURANCE TPA OF INDIA LIMITED',0,'',0,'','','','','','','','','','Y','vj','2021-08-13 17:26:46','','0000-00-00 00:00:00'),(0,'TPA','3','I','','MEDI ASSIST INSURANCETPA PVT. LTD',0,'',0,'TOWER D. 4TH FLOOR ','IBC KNOWLEDGE PARK','4/1, BANNERGHATLA ROAD','BANGALORE','','560026','','','','Y','vj','2021-08-13 16:12:23','','0000-00-00 00:00:00'),(0,'TPA','4','I','','MDINDIA HEALTH INSURANCE TPA PVT. LTD .',0,'',0,'S.NO. 46/1 E-SPACE','A-2 BUILDING','3RD FLOOR, PUNE-NAGAR ROAD, VADGAONSHERI','PUNE','','411014','','','','Y','vj','2021-08-13 16:15:41','','0000-00-00 00:00:00'),(0,'TPA','5','I','','E-MEDITEK HEALTH INSURANCE TPA PVT. LTD ',0,'',0,'577','UDYOG VIHAR','PHASE - V, GURGAON','HARYANA','','122016','','','','Y','vj','2021-08-13 16:18:13','','0000-00-00 00:00:00'),(0,'TPA','6','I','','HERITAGE HEALTH INSURANCE TPA PVT. LTD',0,'',0,'CAO','NICCO HOUSE ( 5TH FLOOR )','2, HARE STREET','KOLKATA','','700001','','','','Y','vj','2021-08-13 16:20:23','','0000-00-00 00:00:00'),(0,'TPA','7','I','','FOCUS HEALTH INSURANCE (TPA) PVT. LTD ',0,'',0,'B - 127','FIRST FLOOR','SECTOR - 2','NOIDA','','201301','','','','Y','vj','2021-08-13 16:22:35','','0000-00-00 00:00:00'),(0,'TPA','8','I','','FAMILY HEALTH PLAN INSURANCE TPA LTD',0,'',0,'GROUND FLOOR, F1 SRINILAYA','CYBER SPAZIO ROAD NO. 02 ','BANJARA HILLS','HYDERABAD','','500034','','','','Y','vj','2021-08-13 16:25:25','','0000-00-00 00:00:00'),(0,'TPA','9','I','','RAKSHA HEALTH INSURANCE TPA PVT. LTD',0,'',0,'C/O ESCORTS CORPORATE CENTRE','15/5, MATHURA ROAD','FARIDABAD','HARYANA','','121003','','','','Y','vj','2021-08-13 16:27:26','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `insurance_tpa_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `insurance_tpa_relation_master`
--

DROP TABLE IF EXISTS `insurance_tpa_relation_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `insurance_tpa_relation_master` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `ins_code` varchar(4) NOT NULL,
  `tpa_code` varchar(4) NOT NULL,
  `CreatedBy` varchar(50) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(50) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `insurance_tpa_relation_master`
--

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

--
-- Table structure for table `ipd`
--

DROP TABLE IF EXISTS `ipd`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ipd` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `fyear` varchar(4) NOT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `opd_reg_id` bigint(20) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `dept_cat` varchar(10) NOT NULL,
  `dept_id` varchar(5) NOT NULL,
  `doctor_id` int(11) NOT NULL,
  `admit_date` date NOT NULL,
  `admit_time` time NOT NULL,
  `discharge_date` date NOT NULL,
  `discharge_time` time NOT NULL,
  `relative_name` varchar(22) NOT NULL,
  `relation_type` varchar(15) NOT NULL,
  `relative_phone` varchar(22) NOT NULL,
  `ref_doctor_text` varchar(20) DEFAULT NULL COMMENT 'value will be store as enter',
  `admition_remarks` varchar(200) NOT NULL,
  `cancle_remark` varchar(100) NOT NULL,
  `cancle` varchar(1) NOT NULL,
  `discharge_remark` varchar(30) NOT NULL,
  `ipd_cancel_remark` varchar(40) NOT NULL,
  `contact_no` bigint(20) NOT NULL,
  `diagnosis` varchar(100) NOT NULL,
  `doctor_name` varchar(20) NOT NULL,
  `operation_detail` varchar(100) NOT NULL,
  `operation_remark` varchar(50) NOT NULL,
  `operated_by` varchar(20) NOT NULL,
  `operation_date` date NOT NULL,
  `admited_by` varchar(20) NOT NULL,
  `discharge_by` varchar(20) NOT NULL,
  `discharge_type` varchar(20) NOT NULL,
  `is_ffs_discharge_completed` enum('Y','N') NOT NULL DEFAULT 'N',
  `is_pharmacy_ffs_completed` enum('Y','N') NOT NULL DEFAULT 'N',
  `payment_by` enum('P','S') NOT NULL DEFAULT 'P' COMMENT 'P - Patient, S - Sponsor',
  `mediclaim` varchar(1) NOT NULL,
  `cashless` varchar(1) NOT NULL,
  `insurance_company` varchar(6) NOT NULL,
  `insurance_TPA` varchar(6) NOT NULL,
  `insurance_claim_no` varchar(40) NOT NULL,
  `insurance_aproval_date` date NOT NULL,
  `ins_id_card_no` varchar(30) NOT NULL,
  `policy_no` varchar(30) NOT NULL,
  `user_name` varchar(30) NOT NULL,
  `last_update_date` date NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`fyear`,`ipd_reg_id`) USING BTREE,
  KEY `discharge_date` (`discharge_date`),
  KEY `discharge_date_2` (`discharge_date`),
  KEY `ipd_reg_id` (`ipd_reg_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ipd`
--

LOCK TABLES `ipd` WRITE;
/*!40000 ALTER TABLE `ipd` DISABLE KEYS */;
INSERT INTO `ipd` VALUES (0,0,'2526',1,0,21,'D27','D27',4,'2025-10-04','13:45:00','2025-10-09','09:50:00','CHANDRESHBHAI ','SON','','','','','','','',8866502272,'','','','','','0000-00-00','reception','vishal','1','N','N','P','N','','','','','0000-00-00','','','','0000-00-00','reception','2025-10-08 10:57:38','vishal','2025-10-09 10:05:28'),(0,0,'2526',2,0,28,'D27','D27',8,'2025-10-04','18:00:00','2025-10-10','11:00:00','LALITBHAI ','SON','','','','','','','',9427238124,'','','','','','0000-00-00','reception','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','reception','2025-10-08 11:12:41','vishal','2025-10-10 21:23:12'),(0,0,'2526',3,0,34,'D27','D27',4,'2025-10-03','10:00:00','2025-10-09','11:50:00','BHIMABHAI ','SON','','','','','','','',9427259171,'','','','','','0000-00-00','reception','vishal','1','N','N','P','N','','','','','0000-00-00','','','','0000-00-00','reception','2025-10-08 11:24:24','vishal','2025-10-09 12:01:54'),(0,0,'2526',4,0,37,'D02','D02',3,'2025-10-07','13:00:00','2025-10-08','11:25:00','PANKAJBHAI ','SELF','','','','','','','',8866124561,'','','','','','0000-00-00','reception','riya','1','N','N','P','N','','','','','0000-00-00','','','','0000-00-00','reception','2025-10-08 11:29:13','riya','2025-10-08 11:33:35'),(0,0,'2526',5,0,48,'D27','D27',4,'2025-10-06','11:00:00','2025-10-14','15:30:00','HETALBEN ','DAUGHTER','','','','','','','',6355179949,'','','','','','0000-00-00','riya','riya','4','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-08 11:50:36','riya','2025-10-14 15:24:27'),(0,0,'2526',6,0,51,'D14','D14',7,'2025-10-03','18:30:00','2025-10-08','18:00:00','SHAILESHBHAI ','HUSBAND','','','','','','','',9879531102,'','','','','','0000-00-00','riya','vishal','1','N','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-08 11:56:05','vishal','2025-10-08 18:45:34'),(0,0,'2526',7,0,56,'D27','D27',5,'2025-10-07','11:15:00','2025-10-11','12:15:00','PRADIPSINH','HUSBAND','','','','','','','',9426443543,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-08 12:07:46','vishal','2025-10-11 12:24:00'),(0,0,'2526',8,0,60,'D27','D27',5,'2025-10-06','13:30:00','2025-10-10','12:05:00','UPENDRABHAI ','BROTHER','','','','','','','',9712415556,'','','','','','0000-00-00','riya','vishal','1','N','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-08 12:11:01','vishal','2025-10-10 21:22:04'),(0,0,'2526',9,0,62,'D27','D27',4,'2025-10-06','12:15:00','2025-10-10','11:30:00','HITENBHAI ','HUSBAND','','','','','','','',9712013777,'','','','','','0000-00-00','riya','vishal','1','N','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-08 12:13:52','vishal','2025-10-10 21:21:33'),(0,0,'2526',10,0,63,'D02','D02',3,'2025-10-07','10:55:00','2025-10-13','12:10:00','BHOJABHAI ','BROTHER','','','','','','','',6355602522,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-08 12:20:02','vishal','2025-10-13 13:06:24'),(0,0,'2526',11,0,66,'D27','D27',4,'2025-10-08','12:00:00','2025-10-11','12:30:00','SAGARBHAI ','SON','','','','','','','',8866218357,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-08 12:23:43','vishal','2025-10-11 14:36:27'),(0,0,'2526',12,16,16,'D27','D27',4,'2025-10-08','19:20:00','2025-10-11','18:30:00','ARVINDBHAI','','9979095089','','','','','','',9979095089,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','vishal','2025-10-08','vishal','2025-10-08 19:24:21','vishal','2025-10-11 18:42:14'),(0,0,'2526',13,0,162,'D02','D02',3,'2025-10-09','09:15:00','2025-10-09','19:15:00','','','','','','','','','',9898369677,'','','','','','0000-00-00','vishal','vishal','1','N','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-09 09:35:58','vishal','2025-10-09 19:26:58'),(0,0,'2526',14,0,165,'D02','D02',3,'2025-10-09','09:30:00','2025-10-10','11:15:00','SHAKTISINH','BROTHER','9925555555','','','','','','',9925555555,'','','','','','0000-00-00','vishal','vishal','1','N','N','P','Y','N','12','','','0000-00-00','','','vishal','2025-10-09','vishal','2025-10-09 09:49:18','vishal','2025-10-27 19:41:59'),(0,0,'2526',15,150,161,'D27','D27',4,'2025-10-09','11:15:00','2025-10-11','11:10:00','VIRENDRABHAI','','9825354568','','','','','','',9825354568,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-09 11:18:34','vishal','2025-10-11 11:50:58'),(0,0,'2526',16,166,179,'D27','D27',4,'2025-10-09','12:30:00','2025-10-15','11:30:00','RAMBHAI','HUSBAND','9924445600','','','','','','',9924445600,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-09 12:33:11','vishal','2025-10-15 11:50:01'),(0,0,'2526',17,116,127,'D02','D02',3,'2025-10-09','14:30:00','2025-10-16','18:06:00','BHARTIBEN','','9426961652','','','','','','',9426961652,'','','','','','0000-00-00','vishal','riya','3','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-09 14:36:28','riya','2025-10-16 19:04:52'),(0,0,'2526',18,0,239,'D02','D02',3,'2025-10-09','18:00:00','2025-10-18','12:30:00','JAYDEEPBHAI ','SON','','','','','','','',8780664418,'','','','','','0000-00-00','vishal','riya','3','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-09 18:00:34','riya','2025-10-18 13:25:11'),(0,0,'2526',19,0,249,'D27','D27',4,'2025-10-08','14:00:00','2025-10-10','11:30:00','MAYANKBHAI ','SON','','','','','','','',8238059559,'','','','','','0000-00-00','vishal','vishal','1','N','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-09 18:19:11','vishal','2025-10-10 21:20:58'),(0,0,'2526',20,0,273,'D27','D27',4,'2025-10-09','20:00:00','2025-10-11','10:00:00','JAYPALBHAI ','SON','','','','','','','',9173076305,'','','','','','0000-00-00','vishal','vishal','4','N','N','P','N','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-09 20:04:52','vishal','2025-10-11 09:58:44'),(0,0,'2526',21,0,274,'D27','D27',4,'2025-10-09','23:00:00','2025-10-18','11:15:00','PARESHBHAI ','BROTHER','','','','','','','',9904594472,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-09 23:06:49','riya','2025-10-18 11:42:09'),(0,0,'2526',22,0,385,'D03','D03',6,'2025-10-10','19:20:00','2025-10-14','12:45:00','KISHANBHAI ','SON','8866122383','','','','','','',8866122383,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-10 19:21:47','riya','2025-10-14 12:52:12'),(0,0,'2526',23,0,388,'D02','D02',3,'2025-09-30','09:00:00','2025-09-30','04:36:00','SANJAYBHAI','HUSBAND','8980582201','','','','','','',8980582201,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-10 19:36:40','vishal','2025-10-10 19:43:57'),(0,0,'2526',24,259,276,'D02','D02',3,'2025-10-10','20:30:00','2025-10-13','12:10:00','HEMANGIBEN','','8460611712','','','','','','',8460611712,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-10 20:35:54','vishal','2025-10-13 13:07:08'),(0,0,'2526',25,0,392,'D27','D27',4,'2025-10-10','03:45:00','2025-11-01','12:15:00','','','9909871127','','','','','','',9909871127,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','vishal','2025-10-19','vishal','2025-10-10 21:06:54','vishal','2025-11-01 13:17:35'),(0,0,'2526',26,0,393,'D27','D27',5,'2025-10-10','11:45:00','2025-10-13','11:30:00','','','8283398276','','','','','','',8283398276,'','','','','','0000-00-00','vishal','reception','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-10 21:10:26','reception','2025-10-13 11:21:26'),(0,0,'2526',27,276,292,'D27','D27',4,'2025-10-10','12:40:00','2025-10-14','19:10:00','','','','','','','','','',9408359458,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-10 21:14:01','riya','2025-10-14 19:08:28'),(0,0,'2526',28,0,394,'D27','D27',5,'2025-10-10','14:30:00','2025-10-12','11:30:00','','','','','','','','','',9664580252,'','','','','','0000-00-00','vishal','vishal','4','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-10 21:53:07','vishal','2025-10-12 10:46:02'),(0,0,'2526',29,305,321,'D02','D02',3,'2025-10-11','09:00:00','2025-10-11','19:15:00','DIPAKBHAI','BROTHER','8849370698','','','','','','',8849370698,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-11 09:25:22','vishal','2025-10-11 19:52:45'),(0,0,'2526',30,221,234,'D02','D02',3,'2025-10-11','08:00:00','2025-10-12','13:15:00','KALPESHBHAI','','9428253623','','','','','','',9428253623,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-11 09:39:44','vishal','2025-10-12 12:59:23'),(0,0,'2526',31,211,224,'D02','D02',3,'2025-10-11','09:15:00','2025-10-12','09:40:00','DHIRUBHAI','','9978938438','','','','','','',9978938438,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-11 09:45:46','vishal','2025-10-12 09:57:36'),(0,0,'2526',32,0,403,'D02','D02',3,'2025-10-11','09:00:00','2025-10-13','17:05:00','SMITBHAI','SON','7016174558','','','','','','',7016174558,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','Y','12','','RC-HS25-1519916','0000-00-00','','','vishal','2025-10-13','vishal','2025-10-11 10:01:01','vishal','2025-10-13 17:10:33'),(0,0,'2526',33,270,286,'D02','D02',3,'2025-10-11','09:30:00','2025-10-12','12:45:00','HARDIKBHAI','HUSBAND','9624302823','','','','','','',9624302823,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','N','2','','','0000-00-00','','','','0000-00-00','vishal','2025-10-11 10:17:57','vishal','2025-10-12 13:00:01'),(0,0,'2526',34,131,142,'D27','D27',5,'2025-10-11','11:40:00','2025-10-16','11:35:00','BHAVESHBHAI','','9909298450','','','','','','',9909298450,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-11 11:45:07','vishal','2025-10-16 11:58:03'),(0,0,'2526',35,21,22,'D27','D27',4,'2025-10-11','12:00:00','2025-10-13','22:30:00','HIRENBHAI ','','9426998707','','','','','','',9426998707,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-11 12:02:49','riya','2025-10-13 22:49:19'),(0,0,'2526',36,60,71,'D27','D27',4,'2025-10-11','14:10:00','2025-10-15','11:25:00','VIPULBHAI','FATHER','9879771777','','','','','','',9879771777,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-11 14:11:10','vishal','2025-10-15 11:50:39'),(0,0,'2526',37,407,429,'D27','D27',4,'2025-10-11','13:30:00','2025-10-11','11:00:00','KAUSHIKBHAI','SON','9824814008','','','','','','',9824814008,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-11 14:19:58','vishal','2025-10-11 21:17:25'),(0,0,'2526',38,0,452,'D27','D27',4,'2025-10-11','17:00:00','2025-10-25','19:00:00','JIGNESHBHAI','','9998173061','','','','','','',9998173061,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','vishal','2025-10-19','vishal','2025-10-11 17:33:27','riya','2025-10-25 19:02:35'),(0,0,'2526',39,0,464,'D27','D27',4,'2025-10-11','19:15:00','2025-10-13','22:30:00','MANSUKHBHAI','HUSBAND','','','','','','','',9427263725,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-11 19:21:56','riya','2025-10-13 22:43:37'),(0,0,'2526',40,0,465,'D27','D27',5,'2025-10-11','22:00:00','2025-10-13','20:05:00','AARTIBEN ','WIFE','9638198006','','','','','','',9638198006,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','Y','N','8','','','0000-00-00','','','','0000-00-00','vishal','2025-10-11 22:22:07','riya','2025-10-13 20:12:11'),(0,0,'2526',41,0,467,'D27','D27',5,'2025-10-12','11:00:00','2025-10-14','12:00:00','SHAILESHBHAI','','9016956412','','','','','','',9016956412,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-12 11:06:05','riya','2025-10-14 12:08:42'),(0,0,'2526',42,40,44,'D27','D27',4,'2025-10-12','12:45:00','2025-10-12','21:30:00','HARPALSINH ','SON','9825386986','','','','','','',9825386986,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','vishal','2025-10-12','vishal','2025-10-12 12:54:14','vishal','2025-10-12 21:33:08'),(0,0,'2526',43,370,387,'D02','D02',3,'2025-10-13','09:30:00','2025-10-13','17:05:00','MAHESHBHAI','','6351349933','','','','','','',6351349933,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-13 09:38:44','vishal','2025-10-13 17:13:33'),(0,0,'2526',44,481,507,'D27','D27',4,'2025-10-13','11:30:00','2025-10-16','09:00:00','SANJAYBHAI','SON','7575803861','','','','','','',7575803861,'','','','','','0000-00-00','reception','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','reception','2025-10-13 11:46:29','vishal','2025-10-16 08:53:29'),(0,0,'2526',45,0,545,'D02','D02',42,'2025-10-04','09:30:00','2025-10-05','10:00:00','','','','','','','','','',9825313813,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','N','6','','','0000-00-00','','','vishal','2025-10-13','vishal','2025-10-13 16:09:56','vishal','2025-10-13 16:57:57'),(0,0,'2526',46,0,582,'D27','D27',8,'2025-10-13','18:40:00','2025-10-16','11:10:00','JAYESHBHAI','SON','','','','','','','',9824846030,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-13 18:42:07','vishal','2025-10-16 11:19:52'),(0,0,'2526',47,0,602,'D27','D27',4,'2025-09-25','12:15:00','2025-09-26','11:15:00','','','','','','','','','',8769379174,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','riya','2025-10-13 19:32:07','riya','2025-10-13 20:50:53'),(0,0,'2526',48,0,165,'D02','D02',3,'2025-10-09','09:30:00','2025-10-10','11:15:00','','','','','','','','','',9925555555,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','riya','2025-10-13 21:36:04','riya','2025-10-13 21:47:40'),(0,0,'2526',49,0,605,'D02','D02',3,'2025-10-06','10:00:00','2025-10-07','13:00:00','','','','','','','','','',9924278703,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','riya','2025-10-13 21:58:40','riya','2025-10-13 22:12:39'),(0,0,'2526',50,0,606,'D27','D27',5,'2025-10-13','22:24:00','2025-10-16','11:20:00','HARDIKBHAI ','HUSBAND','','','','','','','',9974911818,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','Y','10','','2025101400528.A1','0000-00-00','','','vishal','2025-10-16','riya','2025-10-13 22:26:30','vishal','2025-10-16 11:31:40'),(0,0,'2526',51,0,607,'D02','D02',3,'2025-10-13','22:34:00','2025-10-14','20:30:00','MUKESHBHAI ','HUSBAND','','','','','','','',6351458202,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-13 22:36:35','vishal','2025-10-14 21:06:08'),(0,0,'2526',52,431,454,'D02','D02',3,'2025-10-14','09:03:00','2025-10-14','21:00:00','MOHITBHAI','HUSBAND','','','','','','','',7405670370,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-14 09:05:16','vishal','2025-10-14 19:42:03'),(0,0,'2526',53,0,388,'D02','D02',3,'2025-09-30','09:00:00','2025-09-30','04:36:00','','','','','','','','','',8980582201,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','riya','2025-10-14 09:20:50','riya','2025-10-14 09:40:39'),(0,0,'2526',54,482,508,'D02','D02',3,'2025-10-14','09:30:00','2025-10-15','10:30:00','MANVEERBHAI','SISTER IN LAW','','','','','','','',7600062852,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','Y','13','','OC-26-1002-8403-00540024','0000-00-00','','','vishal','2025-10-15','riya','2025-10-14 09:57:04','vishal','2025-10-15 10:38:09'),(0,0,'2526',55,0,66,'D02','D02',3,'2025-10-14','10:00:00','2025-10-15','12:30:00','','','','','','','','','',8866218357,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','riya','2025-10-14 10:13:28','vishal','2025-10-15 12:33:55'),(0,0,'2526',56,595,625,'D02','D02',3,'2025-10-14','10:48:00','2025-10-15','12:00:00','VISHALBHAI ','BROTHER','','','','','','','',9662709095,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-14 10:49:41','vishal','2025-10-15 12:42:05'),(0,0,'2526',57,0,388,'D02','D02',3,'2025-09-30','09:00:00','2025-09-30','16:36:00','','','','','','','','','',8980582201,'','','','','','0000-00-00','riya','riya','1','N','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','riya','2025-10-14 12:49:00','riya','2025-10-14 12:50:55'),(0,0,'2526',58,619,649,'D02','D02',3,'2025-10-14','13:27:00','2025-10-15','14:30:00','HARISINH DODIYA','FATHER','','','','','','','',9638733633,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','riya','2025-10-14 13:35:47','vishal','2025-10-15 12:39:13'),(0,0,'2526',59,0,714,'D27','D27',4,'2025-10-14','21:30:00','2025-10-16','12:10:00','NIKUNJBHAI ','','8460375589','','','','','','',8460375589,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-14 21:50:36','vishal','2025-10-16 12:30:35'),(0,0,'2526',60,0,720,'D02','D02',3,'2025-10-15','09:00:00','2025-10-16','18:05:00','BURHANBHAI','','8160446435','','','','','','',8160446435,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-15 09:25:23','riya','2025-10-16 18:11:16'),(0,0,'2526',61,451,477,'D02','D02',3,'2025-10-15','11:25:00','2025-10-16','18:00:00','SANDEEPBHAI ','','8160510062','','','','','','',8160510062,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','vishal','2025-10-15','vishal','2025-10-15 11:28:12','riya','2025-10-16 18:15:20'),(0,0,'2526',62,721,752,'D27','D27',4,'2025-10-15','13:23:00','2025-10-17','09:00:00','URVESHBHAI','SON','9510441266','','','','','','',9510441266,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','vishal','2025-10-15','vishal','2025-10-15 13:29:27','vishal','2025-10-17 09:29:21'),(0,0,'2526',63,0,780,'D27','D27',4,'2025-10-15','17:00:00','2025-10-18','12:30:00','RAJIBEN','WIFE','9724571370','','','','','','',9909652320,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','riya','2025-10-15','riya','2025-10-15 17:10:52','riya','2025-10-18 12:20:28'),(0,0,'2526',64,769,800,'D27','D27',5,'2025-10-15','22:00:00','2025-10-18','15:00:00','KHUSHIBEN ','DAUGHTER','9408270096','','','','','','',9408270096,'','','','','','0000-00-00','vishal','riya','4','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-16 08:26:11','riya','2025-10-18 14:07:06'),(0,0,'2526',65,709,740,'D27','D27',4,'2025-10-15','22:30:00','2025-10-20','11:30:00','VIJAYBHAI ','SON','8460122551','','','','','','',8460122551,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-16 09:07:59','vishal','2025-10-20 11:32:15'),(0,0,'2526',66,0,879,'D27','D27',5,'2025-10-16','13:50:00','2025-10-18','17:30:00','ANITABEN ','DAUGHTER','9979856554','','','','','','',9979856554,'','','','','','0000-00-00','vishal','riya','4','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-16 14:11:22','riya','2025-10-18 16:56:13'),(0,0,'2526',67,0,933,'D27','D27',5,'2025-10-16','21:00:00','2025-10-18','13:00:00','SELF','','','','','','','','',9909264554,'','','','','','0000-00-00','riya','riya','4','Y','N','P','Y','N','9','','','0000-00-00','','','riya','2025-10-16','riya','2025-10-16 21:50:22','riya','2025-10-18 12:23:22'),(0,0,'2526',68,938,969,'D27','D27',4,'2025-10-17','13:00:00','2025-10-18','03:45:00','DINESHBHAI','SON','9974842023','','','','','','',9974842023,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-17 13:06:01','riya','2025-10-18 16:05:01'),(0,0,'2526',69,0,987,'D27','D27',8,'2025-10-17','14:00:00','2025-10-22','11:00:00','ASHRAFBEN','','9879688865','','','','','','',9879688865,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-17 14:04:50','vishal','2025-10-22 10:54:17'),(0,0,'2526',70,0,989,'D27','D27',8,'2025-10-17','15:00:00','2025-10-25','11:40:00','DHAVALBHAI','SON','9712709029','','','','','','',9712709029,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-17 15:08:19','riya','2025-10-25 11:49:53'),(0,0,'2526',71,0,1040,'D27','D27',4,'2025-10-17','20:50:00','2025-10-22','13:00:00','SUNNYBHAI ','BROTHER','','','','','','','',9825417063,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','Y','N','6','','','0000-00-00','','','','0000-00-00','riya','2025-10-17 20:55:33','vishal','2025-10-22 13:20:21'),(0,0,'2526',72,0,1047,'D02','D02',70,'2025-10-18','09:30:00','2025-10-20','11:00:00','HARSH BHAI','SON','','','','','','','',8780022872,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-18 09:48:58','vishal','2025-10-20 11:19:15'),(0,0,'2526',73,879,911,'D02','D02',3,'2025-10-18','12:00:00','2025-10-18','18:00:00','ABHAYBHAI ','SON','','','','','','','',9033343144,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','riya','2025-10-18 12:12:56','riya','2025-10-18 18:13:35'),(0,0,'2526',74,0,1093,'D02','D02',3,'2025-10-18','15:00:00','2025-10-19','10:40:00','ARUNABEN','MOTHER','','','','','','','',8160751519,'','','','','','0000-00-00','riya','reception','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-18 15:49:26','reception','2025-10-19 10:40:34'),(0,0,'2526',75,0,1095,'D03','D03',6,'2025-10-18','17:27:00','2025-10-19','10:40:00','SUJITBHAI','BROTHER','','','','','','','',7698393294,'','','','','','0000-00-00','riya','reception','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-18 17:30:22','reception','2025-10-19 10:43:16'),(0,0,'2526',76,0,1101,'D27','D27',4,'2025-10-18','20:30:00','2025-10-18','22:00:00','ANJALIBEN ','DAUGHTER IN LAW','','','','','','','',6354747416,'','','','','','0000-00-00','riya','riya','4','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-18 20:31:43','riya','2025-10-18 22:01:58'),(0,0,'2526',77,0,1102,'D02','D02',78,'2025-10-19','02:30:00','2025-10-23','08:00:00','GOVINDBHAI','SON','9033598182','','','','','','',9033598182,'','','','','','0000-00-00','vishal','vishal','3','Y','N','P','','','','','','0000-00-00','','','vishal','2025-10-19','reception','2025-10-19 10:14:48','vishal','2025-10-23 08:43:26'),(0,0,'2526',78,0,1103,'D27','D27',4,'2025-10-19','10:15:00','2025-10-28','11:30:00','HIMANSHUBHAI','SON','9737811911','','','','','','',9737811911,'','','','','','0000-00-00','reception','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','reception','2025-10-19 10:35:30','riya','2025-10-28 11:38:30'),(0,0,'2526',79,0,1104,'D27','D27',4,'2025-10-20','08:00:00','2025-10-23','20:30:00','SIEEHESH','SON','9898278783','','','','','','',9898278783,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-20 11:09:16','vishal','2025-10-23 20:06:32'),(0,0,'2526',80,0,1105,'D27','D27',5,'2025-10-20','17:00:00','2025-10-21','15:00:00','HARIKRISHNABHAI','HUSBAND','9601861849','','','','','','',9601861849,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-20 19:39:00','vishal','2025-10-21 15:10:58'),(0,0,'2526',81,951,982,'D27','D27',4,'2025-10-21','13:45:00','2025-10-25','13:00:00','GAURANGBHAI','SON','9099400800','','','','','','',9099400800,'','','','','','0000-00-00','vishal','vishal','4','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-21 14:01:59','vishal','2025-10-25 13:01:06'),(0,0,'2526',82,0,1107,'D27','D27',5,'2025-10-22','23:30:00','2025-10-28','12:50:00','NAIMISHBHAI','','9376643750','','','','','','',9376643750,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','vishal','2025-10-23','vishal','2025-10-23 10:39:29','riya','2025-10-28 13:13:59'),(0,0,'2526',83,1067,1106,'D02','D02',3,'2025-10-23','13:15:00','2025-10-24','11:30:00','RAGHUBHAI ','HUSBAND','9898933000','','','','','','',9898933000,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-23 13:17:40','riya','2025-10-24 11:30:41'),(0,0,'2526',84,1004,1036,'D02','D02',3,'2025-10-23','13:30:00','2025-10-24','11:30:00','RAKHIBEN','WIFE','9537397151','','','','','','',9537397151,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-23 13:31:53','riya','2025-10-24 11:29:11'),(0,0,'2526',85,0,1151,'D02','D02',70,'2025-10-23','19:15:00','2025-10-25','10:15:00','PRAVINBHAI ','BROTHER','9879613718','','','','','','',9879613718,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-23 19:30:53','riya','2025-10-25 10:18:21'),(0,0,'2526',86,0,1152,'D27','D27',5,'2025-10-23','20:00:00','2025-10-29','18:20:00','DISHA KOTHARI','DAUGHTER','7878215189','','','','','','',7878215189,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','Y','N','','','','0000-00-00','','','riya','2025-10-25','vishal','2025-10-23 20:20:17','vishal','2025-10-29 18:26:18'),(0,0,'2526',87,0,1158,'D02','D02',3,'2025-10-24','09:30:00','2025-10-26','09:10:00','SHWETANG','HUSBAND','','','','','','','',8460084900,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','Y','12','','RC-HS25-15222178','0000-00-00','','','riya','2025-10-26','riya','2025-10-24 09:36:43','riya','2025-10-26 10:20:14'),(0,0,'2526',88,1140,1180,'D02','D02',3,'2025-10-24','14:47:00','2025-10-25','14:45:00','HITESHBHAI','SON','','','','','','','',9426832990,'','','','','','0000-00-00','riya','riya','4','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-24 14:48:00','riya','2025-10-25 12:31:24'),(0,0,'2526',89,1002,1034,'D27','D27',4,'2025-10-24','19:18:00','2025-10-26','12:05:00','KIRITSINH BHATTI','FATHER','','','','','','','',6355929933,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-24 19:18:55','riya','2025-10-26 12:29:54'),(0,0,'2526',90,1134,1174,'D27','D27',5,'2025-10-24','19:47:00','2025-10-27','18:05:00','REKHABEN','WIFE','','','','','','','',9723791011,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','riya','2025-10-27','riya','2025-10-24 19:49:15','riya','2025-10-27 18:08:24'),(0,0,'2526',91,1139,1179,'D02','D02',3,'2025-10-24','20:16:00','2025-10-29','11:30:00','MADHJAVBHAI ','SON','','','','','','','',8980554949,'','','','','','0000-00-00','riya','riya','4','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-24 20:17:57','riya','2025-10-29 12:02:04'),(0,0,'2526',92,1149,1189,'D02','D02',3,'2025-10-25','09:37:00','2025-10-27','12:30:00','JAYENDRABHAI','FATHER','','','','','','','',9173168524,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','Y','12','','RC-HS25-15225513','0000-00-00','','','riya','2025-10-27','riya','2025-10-25 09:39:47','riya','2025-10-27 13:11:28'),(0,0,'2526',93,1156,1195,'D27','D27',4,'2025-10-25','19:22:00','2025-10-29','20:15:00','SNEHAL PATTNI','WIFE','','','','','','','',7574917711,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-25 19:24:03','vishal','2025-10-29 20:22:18'),(0,0,'2526',94,0,1253,'D27','D27',5,'2025-10-25','23:00:00','2025-10-27','12:45:00','DHRUV','SON','','','','','','','',9925284314,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-26 10:43:28','riya','2025-10-27 13:07:57'),(0,0,'2526',95,0,1254,'D27','D27',5,'2025-10-26','11:15:00','2025-10-27','11:30:00','JORAVARSINH GOHIL','HUSBAND','','','','','','','',9638517353,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-26 11:27:14','riya','2025-10-27 11:54:30'),(0,0,'2526',96,184,197,'D27','D27',4,'2025-10-26','12:17:00','2025-10-27','21:15:00','RAMESHBHAI ','HUSBAND','','','','','','','',9974376299,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-26 12:18:42','vishal','2025-10-27 21:17:31'),(0,0,'2526',97,1133,1173,'D02','D02',3,'2025-10-27','09:57:00','2025-10-27','17:00:00','VAIBHAVBHAI','SON','','','','','','','',9099662233,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-27 09:58:19','riya','2025-10-27 16:36:58'),(0,0,'2526',98,1223,1264,'D02','D02',3,'2025-10-27','10:48:00','2025-10-29','11:00:00','DIPAKBHAI ','HUSBAND','','','','','','','',9537977234,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-27 10:49:47','riya','2025-10-29 11:17:57'),(0,0,'2526',99,0,1295,'D02','D02',3,'2025-10-27','11:25:00','2025-10-29','17:45:00','SUNILBHAI VAGHERA','BROTHER','','','','','','','',9725783546,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','Y','N','7','','','0000-00-00','','','','0000-00-00','riya','2025-10-27 11:28:57','vishal','2025-10-29 18:06:39'),(0,0,'2526',100,1235,1276,'D27','D27',4,'2025-10-27','11:43:00','2025-10-29','12:15:00','CHETANBHAI','SON','','','','','','','',9726371737,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-27 11:44:28','riya','2025-10-29 12:37:39'),(0,0,'2526',101,627,657,'D27','D27',4,'2025-10-27','09:30:00','2025-10-28','15:30:00','SUNILBHAI ','HUSBAND','','','','','','','',9712999234,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','N','4','','','0000-00-00','','','','0000-00-00','riya','2025-10-27 13:19:46','riya','2025-10-28 15:15:40'),(0,0,'2526',102,0,1360,'D27','D27',4,'2025-10-27','19:45:00','2025-10-31','12:00:00','DR FALGUNI TRIVEDI','DAUGHTER','9879462636','','','','','','',9879462636,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','vishal','2025-10-27','vishal','2025-10-27 20:06:14','vishal','2025-10-31 12:13:49'),(0,0,'2526',103,1307,1346,'D02','D02',3,'2025-10-28','11:45:00','2025-10-30','11:50:00','BHARATBHAI ','SON','','','','','','','',9998544738,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-28 11:51:11','riya','2025-10-30 11:53:15'),(0,0,'2526',104,1343,1383,'D02','D02',3,'2025-10-28','12:30:00','2025-11-04','17:00:00','RAJESHBHAI PAREKH','FATHER','','','','','','','',9574402545,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-28 12:28:35','vishal','2025-11-04 17:09:01'),(0,0,'2526',105,1368,1408,'D02','D02',3,'2025-10-28','13:50:00','2025-11-03','12:00:00','SHAILESHBHAI ','BROTHER IN LAW','','','','','','','',9023866303,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-28 13:48:54','vishal','2025-11-03 12:35:03'),(0,0,'2526',106,0,1410,'D27','D27',4,'2025-10-28','14:00:00','2025-10-29','14:40:00','MAHESHBHAI ','SON','','','','','','','',9624722953,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','riya','2025-10-28','riya','2025-10-28 14:05:20','riya','2025-10-29 14:46:17'),(0,0,'2526',107,1363,1403,'D27','D27',4,'2025-10-28','15:26:00','2025-11-01','13:00:00','KRINABEN ','DAUGHTER','','','','','','','',8866812553,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','N','','','','0000-00-00','','','vishal','2025-11-01','riya','2025-10-28 15:29:16','vishal','2025-11-01 13:02:51'),(0,0,'2526',108,0,1456,'D27','D27',4,'2025-10-29','06:30:00','2025-11-01','11:20:00','BHARATBHAI ','HUSBAND','','','','','','','',9824127799,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','Y','N','9','','','0000-00-00','','','','0000-00-00','riya','2025-10-29 09:40:51','vishal','2025-11-01 11:58:02'),(0,0,'2526',109,1454,1495,'D27','D27',4,'2025-10-30','09:40:00','2025-10-31','21:00:00','VIRALBHAI ','SON','','','','','','','',9909440034,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-30 09:40:40','riya','2025-10-31 21:13:25'),(0,0,'2526',110,0,1575,'D27','D27',5,'2025-10-30','12:40:00','2025-10-30','18:30:00','VISHAL BHAI ','SON','','','','','','','',7069884426,'','','','','','0000-00-00','riya','riya','4','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-30 12:43:19','riya','2025-10-30 18:33:36'),(0,0,'2526',111,1514,1555,'D27','D27',4,'2025-10-30','12:50:00','2025-11-01','15:00:00','SAGAR','GRAND SON','','','','','','','',9825457159,'','','','','','0000-00-00','vishal','vishal','4','Y','N','P','N','','','','','0000-00-00','','','vishal','2025-10-31','riya','2025-10-30 12:55:32','vishal','2025-11-01 15:17:16'),(0,0,'2526',112,1532,1573,'D27','D27',5,'2025-10-30','13:52:00','2025-11-03','12:00:00','DHAVAL BHAI ','BROTHER','','','','','','','',8460116780,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','Y','N','8','','','0000-00-00','','','riya','2025-10-30','riya','2025-10-30 13:55:03','vishal','2025-11-03 12:30:06'),(0,0,'2526',113,0,1580,'D27','D27',5,'2025-10-30','13:56:00','2025-11-03','12:00:00','HASMUKHBHAI ','FATHER','','','','','','','',9879236861,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-30 13:58:09','vishal','2025-11-03 12:23:58'),(0,0,'2526',114,0,1581,'D27','D27',4,'2025-10-30','14:00:00','2025-10-31','14:30:00','JALPESHBHAI ','FATHER','','','','','','','',9825313813,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','Y','N','6','','','0000-00-00','','','','0000-00-00','riya','2025-10-30 14:21:16','vishal','2025-10-31 12:14:59'),(0,0,'2526',115,0,1616,'D03','D03',6,'2025-10-30','20:30:00','2025-10-31','17:30:00','SUKHDEVBHAI','BROTHER','7359757075','','','','','','',7359757075,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-30 22:22:38','vishal','2025-10-31 17:31:35'),(0,0,'2526',116,1206,1245,'D02','D02',3,'2025-10-31','09:15:00','2025-11-02','17:20:00','MITULBHAI','SON','7016169615','','','','','','',7016169615,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','Y','N','22','','','0000-00-00','','','riya','2025-11-02','vishal','2025-10-31 09:47:33','vishal','2025-11-03 18:09:49'),(0,0,'2526',117,0,1641,'D27','D27',4,'2025-10-31','10:45:00','2025-11-05','09:00:00','MUKESHBHAI','SON','9825128848','','','','','','',9825128848,'','','','','','0000-00-00','vishal','riya','7','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-31 11:04:58','riya','2025-11-05 09:26:03'),(0,0,'2526',118,0,1647,'D27','D27',4,'2025-10-31','07:00:00','2025-11-02','11:00:00','DHIRENDRABHAI','SON','9824295032','','','','','','',9824295032,'','','','','','0000-00-00','vishal','riya','7','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-31 11:30:00','riya','2025-11-02 11:04:19'),(0,0,'2526',119,1635,1680,'D02','D02',3,'2025-10-31','14:34:00','2025-11-02','09:45:00','VIPULBHAI','','7698672826','','','','','','',7698672826,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-10-31 14:38:07','riya','2025-11-02 09:39:34'),(0,0,'2526',120,0,1729,'D27','D27',4,'2025-10-31','20:45:00','2025-11-07','12:30:00','MAHESHBHAI','FATHER','9913552721','','','','','','',9913552721,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-10-31 21:08:03','riya','2025-11-07 12:50:45'),(0,0,'2526',121,0,1772,'D27','D27',4,'2025-11-01','12:00:00','2025-11-08','09:00:00','FARUKBHAI','SON','9624242216','','','','','','',9624242216,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','vishal','2025-11-01','vishal','2025-11-01 12:19:42','vishal','2025-11-08 08:57:46'),(0,0,'2526',122,0,1788,'D02','D02',3,'2025-11-01','18:00:00','2025-11-02','17:20:00','YOGIRAJSINH','HUSBAND','8469304537','','','','','','',8469304537,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-01 18:17:46','riya','2025-11-02 17:33:19'),(0,0,'2526',123,0,1790,'D27','D27',4,'2025-11-01','20:00:00','2025-11-01','20:19:00','HEENABEN','MOTHER','','','','','','','',8200176407,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-01 19:52:30','riya','2025-11-01 20:22:47'),(0,0,'2526',124,0,1795,'D14','D14',7,'2025-11-02','13:00:00','2025-11-03','18:55:00','RAMESHBHAI ','BROTHER','','','','','','','',9586579517,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','riya','2025-11-02','riya','2025-11-02 13:04:43','vishal','2025-11-03 19:01:30'),(0,0,'2526',125,1719,1763,'D02','D02',3,'2025-11-03','09:54:00','2025-11-04','11:15:00','','','','','','','','','',9426987911,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','N','4','','','0000-00-00','','','','0000-00-00','vishal','2025-11-03 09:57:51','vishal','2025-11-04 11:16:02'),(0,0,'2526',126,1658,1703,'D27','D27',5,'2025-11-02','23:00:00','2025-11-04','18:50:00','AJAYBHAI ','','9737777734','','','','','','',9737777734,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-03 11:07:01','vishal','2025-11-04 19:01:19'),(0,0,'2526',127,0,1846,'D27','D27',5,'2025-11-03','13:00:00','2025-11-07','11:50:00','GHANSHYAMBHAI','','9574596017','','','','','','',9574596017,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-03 13:04:41','riya','2025-11-07 12:09:36'),(0,0,'2526',128,0,1917,'D27','D27',5,'2025-11-04','12:00:00','2025-11-05','19:30:00','SHANTABEN','DAUGHTER','9824957623','','','','','','',9824957623,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-04 12:33:11','vishal','2025-11-05 19:56:18'),(0,0,'2526',129,0,1920,'D03','D03',6,'2025-11-04','16:15:00','2025-11-06','09:30:00','KANTILAL','FATHER','9427495938','','','','','','',9427495938,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','Y','12','','RC-HS25-15248265','0000-00-00','','','vishal','2025-11-06','vishal','2025-11-04 16:37:02','vishal','2025-11-06 12:41:07'),(0,0,'2526',130,0,1943,'D02','D02',3,'2025-11-05','09:30:00','2025-11-05','21:00:00','DIVYESHBHAI','HUSBAND','','','','','','','',9429550637,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','Y','N','12','','','0000-00-00','','','riya','2025-11-05','riya','2025-11-05 09:29:10','vishal','2025-11-05 21:00:40'),(0,0,'2526',131,0,2030,'D02','D02',3,'2025-11-06','09:20:00','2025-11-07','18:30:00','VELJIBHAI','FATHER','','','','','','','',9712358734,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-06 09:26:01','riya','2025-11-07 18:55:10'),(0,0,'2526',132,0,2031,'D02','D02',3,'2025-11-06','09:30:00','2025-11-07','10:15:00','RAKESHBHAI','HUSBAND','','','','','','','',9898563295,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','Y','13','','OC-26-2201-8403-0000036','0000-00-00','','','riya','2025-11-07','vishal','2025-11-06 09:37:05','riya','2025-11-07 10:36:39'),(0,0,'2526',133,0,2035,'D02','D02',3,'2025-11-06','10:00:00','2025-11-07','10:20:00','SAHDEVSINH GOHIL','','','','','','','','',9727631314,'','','','','','0000-00-00','riya','riya','1','N','N','P','Y','Y','24','','163869','0000-00-00','','','riya','2025-11-07','vishal','2025-11-06 10:07:28','riya','2025-11-07 10:35:46'),(0,0,'2526',134,0,2063,'D27','D27',5,'2025-11-06','13:00:00','2025-11-09','10:30:00','JAYDEEPBHAI','SON','','','','','','','',9662635554,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','Y','12','','RC-HS25-15252848','0000-00-00','','','riya','2025-11-09','vishal','2025-11-06 13:17:15','riya','2025-11-09 10:38:13'),(0,0,'2526',135,0,2064,'D02','D02',42,'2025-11-06','15:00:00','2025-11-08','11:35:00','HAMIRBHAI','SON','','','','','','','',9879334458,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','riya','2025-11-07','vishal','2025-11-06 15:10:23','vishal','2025-11-08 11:47:55'),(0,0,'2526',136,0,2078,'D27','D27',5,'2025-11-06','18:00:00','2025-11-09','10:35:00','PRAVEENABEN','','9712375674','','','','','','',9712375674,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-06 18:22:07','riya','2025-11-09 10:38:58'),(0,0,'2526',137,0,2089,'D27','D27',4,'2025-09-28','09:57:00','2025-10-02','16:10:00','VINAYBHAI','SON','9106653626','','','','','','',9106653626,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-06 19:15:31','vishal','2025-11-06 19:34:41'),(0,0,'2526',138,2073,2127,'D02','D02',3,'2025-11-07','13:33:00','2025-11-11','11:55:00','MALAVBHAI','BROTHER','','','','','','','',7359171917,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-07 13:35:40','riya','2025-11-11 12:02:01'),(0,0,'2526',139,1976,2024,'D02','D02',3,'2025-11-08','09:45:00','2025-11-09','11:15:00','KRISHNABEN ','','9558915578','','','','','','',9558915578,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-08 09:57:37','riya','2025-11-09 11:56:31'),(0,0,'2526',140,2137,2188,'D02','D02',3,'2025-11-08','13:15:00','2025-11-10','11:10:00','AHMADBHAI','SON','9033522522','','','','','','',9033522522,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-08 13:28:34','riya','2025-11-10 11:17:34'),(0,0,'2526',141,0,2195,'D03','D03',6,'2025-11-08','18:00:00','2025-11-09','11:45:00','KANUBHAI','FRIEND','','','','','','','',6352315302,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-08 17:55:37','riya','2025-11-09 12:46:36'),(0,0,'2526',142,0,2198,'D03','D03',6,'2025-11-08','19:00:00','2025-11-09','20:00:00','BINDIYABEN ','WIFE','','','','','','','',9714863632,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','riya','2025-11-08 19:11:39','riya','2025-11-09 17:42:53'),(0,0,'2526',143,0,2201,'D27','D27',8,'2025-11-09','01:00:00','2025-11-20','10:30:00','KARSHANBHAI','FATHER','','','','','','','',9974545506,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-09 08:43:20','riya','2025-11-20 10:37:01'),(0,0,'2526',144,0,2209,'D02','D02',3,'2025-11-10','09:30:00','2025-11-11','10:15:00','MILANBHAI','FATHER','','','','','','','',9879964447,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','Y','12','','RC-HS-25-15257235','0000-00-00','','','riya','2025-11-11','riya','2025-11-10 09:46:33','riya','2025-11-11 10:01:39'),(0,0,'2526',145,0,2241,'D27','D27',4,'2025-11-10','13:00:00','2025-11-14','19:15:00','DIGVIJAYSINH','SON','','','','','','','',9824097079,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-10 13:10:07','vishal','2025-11-14 19:18:17'),(0,0,'2526',146,0,2243,'D27','D27',4,'2025-11-10','15:30:00','2025-12-01','22:00:00','KAUMIL VORA','SON','','','','','','','',9909065434,'','','','','','0000-00-00','riya','riya','4','N','N','P','N','','','','','0000-00-00','','','riya','2025-12-01','riya','2025-11-10 15:31:27','riya','2025-12-01 22:17:26'),(0,0,'2526',147,951,982,'D27','D27',4,'2025-11-10','21:00:00','2025-11-13','17:40:00','GAURANG PATEL','SON','9099400800','','','','','','',9099400800,'','','','','','0000-00-00','riya','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-10 21:14:10','riya','2025-11-13 17:40:48'),(0,0,'2526',148,0,2302,'D03','D03',6,'2025-11-11','12:58:00','2025-11-12','11:30:00','GAURAVBHAI','SON','','','','','','','',9726824700,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-11 12:59:46','vishal','2025-11-12 11:28:46'),(0,0,'2526',149,2247,2304,'D02','D02',3,'2025-11-11','14:30:00','2025-11-17','10:00:00','KULDEEPSINH','SON','9574555545','','','','','','',9574555545,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-11 18:14:12','riya','2025-11-17 10:00:17'),(0,0,'2526',150,0,2384,'D02','D02',3,'2025-11-12','13:00:00','2025-11-15','11:20:00','JIVANBHAI','FATHER','9879376531','','','','','','',9879376531,'','','','','','0000-00-00','vishal','riya','3','Y','N','P','','','','','','0000-00-00','','','vishal','2025-11-12','vishal','2025-11-12 13:44:51','riya','2025-11-15 11:25:24'),(0,0,'2526',151,2310,2367,'D02','D02',3,'2025-11-12','14:30:00','2025-11-13','15:30:00','BHAVDEEPBHAI','BROTHER','8238682486','','','','','','',8238682486,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','Y','12','','RC-5S25-15264894','0000-00-00','','','riya','2025-11-13','vishal','2025-11-12 15:10:16','riya','2025-11-13 12:33:55'),(0,0,'2526',152,0,2424,'D27','D27',4,'2025-11-12','19:00:00','2025-11-15','09:00:00','RAJENDRABHAI','SON','9799931066','','','','','','',9799931066,'','','','','','0000-00-00','vishal','riya','7','Y','N','P','Y','N','21','','','0000-00-00','','','','0000-00-00','vishal','2025-11-12 19:12:44','riya','2025-11-15 09:21:34'),(0,0,'2526',153,2329,2385,'D02','D02',3,'2025-11-12','20:15:00','2025-11-15','11:10:00','RANJEETSINH','HUSBAND','8758749736','','','','','','',8758749736,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-12 20:29:31','riya','2025-11-15 11:12:26'),(0,0,'2526',154,0,2438,'D27','D27',4,'2025-11-13','03:00:00','2025-11-13','10:33:50','RAJENDRABHAI','SON','','','','','','','REQUEST BY RIYABEN',9799931066,'','','','','','0000-00-00','riya','thims','','N','N','P','Y','N','5','','','0000-00-00','','','','0000-00-00','riya','2025-11-13 09:33:24','thims','2025-11-13 10:33:50'),(0,0,'2526',155,0,2439,'D27','D27',4,'2025-11-13','03:00:00','2025-11-13','13:00:00','DIPENBHAI','HUSBAND','','','','','','','',9879880453,'','','','','','0000-00-00','riya','riya','7','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-13 09:43:44','riya','2025-11-13 13:18:52'),(0,0,'2526',156,0,2499,'D27','D27',4,'2025-11-13','19:00:00','2025-11-15','19:00:00','PRAKASHBHAI','BROTHER','9825181706','','','','','','',9825181706,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','N','8','','','0000-00-00','','','','0000-00-00','vishal','2025-11-13 19:35:15','vishal','2025-11-15 18:59:57'),(0,0,'2526',157,0,2504,'D02','D02',3,'2025-11-14','09:30:00','2025-11-16','07:55:00','MANISHBHAI ','BROTHER','','','','','','','',9725645380,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','Y','N','3','','','0000-00-00','','','','0000-00-00','riya','2025-11-14 09:53:21','vishal','2025-11-16 07:48:27'),(0,0,'2526',158,0,2506,'D27','D27',4,'2025-11-14','00:05:00','2025-11-16','19:35:00','MALDEBHAI','HUSBAND','8849363180','','','','','','',9925819542,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-14 10:17:30','riya','2025-11-16 19:41:00'),(0,0,'2526',159,0,2539,'D27','D27',4,'2025-11-14','13:36:00','2025-11-22','13:00:00','AJAYBHAI ','SON','','','','','','','',9106568378,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-14 13:38:55','riya','2025-11-22 13:00:26'),(0,0,'2526',160,0,2573,'D27','D27',4,'2025-11-15','10:00:00','2025-11-18','22:30:00','KANCHANBEN','MOTHER','','','','','','','',9316569839,'','','','','','0000-00-00','riya','vishal','4','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-15 10:02:28','vishal','2025-11-18 23:05:53'),(0,0,'2526',161,0,2607,'D27','D27',4,'2025-11-16','09:00:00','2025-11-20','12:15:00','SACHINBHAI ','SON','','','','','','','',9033428572,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-16 10:20:48','riya','2025-11-20 12:55:34'),(0,0,'2526',162,0,2608,'D27','D27',4,'2025-11-16','10:00:00','2025-11-17','12:15:00','KETANKUMAR','SON','','','','','','','',9925210134,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-16 10:34:04','riya','2025-11-17 12:48:47'),(0,0,'2526',163,0,2611,'D27','D27',4,'2025-11-16','17:30:00','2025-11-23','12:25:00','ZUBERBHAI','HUSBAND','','','','','','','',9879251520,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-16 17:32:45','riya','2025-11-23 12:44:13'),(0,0,'2526',164,0,2612,'D27','D27',4,'2025-11-16','18:20:00','2025-11-20','20:20:00','NAINISHBHAI ','SON IN LAW','','','','','','','',9328090002,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-16 18:19:04','vishal','2025-11-20 20:55:43'),(0,0,'2526',165,0,2633,'D02','D02',70,'2025-11-17','13:00:00','2025-11-26','13:15:00','SAMSUDIN DELA','SON','','','','','','','',6351449493,'','','','','','0000-00-00','riya','riya','3','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-17 12:59:52','riya','2025-11-26 13:30:13'),(0,0,'2526',166,0,2651,'D27','D27',4,'2025-11-17','20:15:00','2025-11-19','14:10:00','DEVENDRABHAI ','UNCLE','9879108107','','','','','','',9879108107,'','','','','','0000-00-00','riya','riya','1','N','N','P','Y','Y','15','','1296099','0000-00-00','','','riya','2025-11-19','vishal','2025-11-17 20:35:53','riya','2025-11-19 14:24:09'),(0,0,'2526',167,0,2660,'D02','D02',3,'2025-11-18','11:00:00','2025-11-20','12:50:00','KAMLESH VARA','BROTHER','','','','','','','',9724270204,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-18 10:55:38','riya','2025-11-20 13:25:05'),(0,0,'2526',168,0,2673,'D27','D27',5,'2025-11-18','13:00:00','2025-11-20','12:30:00','RINABEN','BHABHI','','','','','','','',9925456688,'','','','','','0000-00-00','riya','riya','3','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-18 13:08:49','riya','2025-11-20 12:35:24'),(0,0,'2526',169,0,2675,'D27','D27',4,'2025-11-18','13:15:00','2025-11-20','12:10:00','KISHANBHAI','SON','','','','','','','',8347740777,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-18 13:20:17','riya','2025-11-20 12:10:50'),(0,0,'2526',170,0,2676,'D27','D27',4,'2025-11-18','13:15:00','2025-11-19','14:20:00','KISHANBHAI','HUSBAND','','','','','','','',8347740777,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','N','11','','','0000-00-00','','','vishal','2025-11-21','riya','2025-11-18 13:22:06','vishal','2025-11-21 11:49:01'),(0,0,'2526',171,0,2685,'D02','D02',78,'2025-11-18','17:00:00','2025-12-02','15:30:00','NILAYBHAI','FATHER','9909146762','','','','','','',9909146762,'','','','','','0000-00-00','riya','riya','1','N','N','P','Y','Y','13','','OG-26-1919-8403-0000087','0000-00-00','','','riya','2025-12-02','vishal','2025-11-18 18:01:03','riya','2025-12-02 15:44:06'),(0,0,'2526',172,0,2691,'D27','D27',4,'2025-11-18','21:30:00','2025-11-23','10:15:00','CHANDRASHEKHARBHAI','SON','9979880997','','','','','','',9979880997,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','N','21','','','0000-00-00','','','riya','2025-11-18','vishal','2025-11-18 22:02:28','riya','2025-11-23 10:27:54'),(0,0,'2526',173,0,2693,'D02','D02',3,'2025-11-19','09:30:00','2025-11-20','11:25:00','BHARATSINH DABHI','FATHER','','','','','','','',9033390099,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-19 09:28:36','riya','2025-11-20 11:34:28'),(0,0,'2526',174,0,2699,'D27','D27',4,'2025-11-19','10:15:00','2025-11-24','21:00:00','LAKHANBHAI','BROTHER','','','','','','','',9979741501,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-19 10:17:01','vishal','2025-11-24 21:16:00'),(0,0,'2526',175,0,2705,'D02','D02',3,'2025-11-19','10:50:00','2025-11-20','11:15:00','JAYDEEPBHAI','SON','','','','','','','',9265684815,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','Y','','','RC-HS25-15278369','0000-00-00','','','riya','2025-11-20','riya','2025-11-19 10:51:11','riya','2025-11-20 10:22:36'),(0,0,'2526',176,0,2776,'D02','D02',3,'2025-11-20','09:30:00','2025-11-20','18:25:00','PUNJABHAI','SON','','','','','','','',9601784397,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-20 09:33:43','vishal','2025-11-20 19:01:29'),(0,0,'2526',177,0,2779,'D27','D27',4,'2025-11-20','03:00:00','2025-11-21','18:30:00','KRISHNA','DAUGHTER','','','','','','','',8780576565,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-20 09:55:22','vishal','2025-11-21 18:30:33'),(0,0,'2526',178,0,2780,'D02','D02',42,'2025-11-20','10:00:00','2025-12-01','11:30:00','AYUSH SAGPARIYA','GRAND SON','','','','','','','',7433809327,'','','','','','0000-00-00','riya','thims','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-20 10:07:37','thims','2025-12-01 16:41:42'),(0,0,'2526',179,0,2834,'D27','D27',4,'2025-11-20','22:40:00','2025-11-30','11:45:00','VIPULBHAI','BROTHER','9979564206','','','','','','',9979564206,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-20 22:58:44','vishal','2025-11-30 11:52:57'),(0,0,'2526',180,0,2860,'D27','D27',5,'2025-11-21','11:00:00','2025-11-22','15:45:00','RUCHITBHAI','','9558596168','','','','','','',9558596168,'','','','','','0000-00-00','vishal','riya','7','Y','N','P','','','','','','0000-00-00','','','vishal','2025-11-21','vishal','2025-11-21 12:31:00','riya','2025-11-22 15:12:29'),(0,0,'2526',181,0,2866,'D27','D27',4,'2025-11-21','15:00:00','2025-12-03','13:40:00','PIYUSHBHAI','','9825801140','','','','','','',9825801140,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','N','21','','','0000-00-00','','','riya','2025-11-23','vishal','2025-11-21 15:17:16','riya','2025-12-03 14:11:55'),(0,0,'2526',182,0,2893,'D27','D27',4,'2025-11-21','22:00:00','2025-11-24','12:00:00','HIRENBHAI','SON','','','','','','','',7698773123,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','N','3','','','0000-00-00','','','','0000-00-00','riya','2025-11-22 09:47:41','riya','2025-11-24 12:12:13'),(0,0,'2526',183,0,2897,'D27','D27',4,'2025-11-22','09:30:00','2025-11-27','13:30:00','MADHAV BOLIYA','GRAND SON','','','','','','','',9664581078,'','','','','','0000-00-00','riya','riya','7','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-22 10:05:48','riya','2025-11-27 13:58:06'),(0,0,'2526',184,0,2899,'D27','D27',4,'2025-11-22','10:30:00','2025-11-25','12:00:00','NILESHBHAI','SON','','','','','','','',9428035809,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-22 10:34:30','vishal','2025-11-25 12:13:54'),(0,0,'2526',185,0,2932,'D27','D27',4,'2025-11-23','03:00:00','2025-11-24','21:00:00','SAILESHBHAI','SON','','','','','','','',9925209059,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-23 09:56:29','vishal','2025-11-24 21:07:23'),(0,0,'2526',186,0,2933,'D27','D27',5,'2025-11-23','01:30:00','2025-11-24','12:00:00','HEENABEN ','DAUGHTER IN LAW','','','','','','','',9712870202,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-23 10:09:37','riya','2025-11-24 12:11:29'),(0,0,'2526',187,0,2937,'D27','D27',4,'2025-11-23','15:00:00','0000-00-00','00:00:00','JITENBHAI','BROTHER','','','','','','','',9924109690,'','','','','','0000-00-00','riya','','','N','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-23 15:21:02','','0000-00-00 00:00:00'),(0,0,'2526',188,0,2938,'D27','D27',4,'2025-11-23','18:30:00','2025-11-24','19:15:00','DHAIRYARAJ VED','FATHER','','','','','','','',7572870581,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','N','10','','','0000-00-00','','','vishal','2025-11-24','riya','2025-11-23 18:24:37','vishal','2025-11-24 19:08:31'),(0,0,'2526',189,0,2939,'D27','D27',4,'2025-11-23','20:30:00','2025-11-26','11:25:00','SANJAYBHAI','UNCLE','','','','','','','',9723267797,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-23 20:37:38','vishal','2025-11-26 11:57:05'),(0,0,'2526',190,0,2940,'D02','D02',3,'2025-11-24','08:50:00','2025-11-25','12:00:00','NILESHBHAI','HUSBAND','','','','','','','',9904029458,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','riya','2025-11-24','riya','2025-11-24 08:51:26','vishal','2025-11-25 11:58:56'),(0,0,'2526',191,0,2956,'D02','D02',3,'2025-11-24','10:30:00','2025-12-01','11:30:00','KETANBHAI ','SON','','','','','','','',9662600700,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-24 10:38:56','riya','2025-12-01 11:40:14'),(0,0,'2526',192,0,2959,'D02','D02',3,'2025-11-24','11:00:00','2025-11-26','12:15:00','VINABEN','MOTHER','','','','','','','',9824212481,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-24 11:00:46','vishal','2025-11-26 12:22:34'),(0,0,'2526',193,0,2985,'D27','D27',4,'2025-11-24','13:00:00','2025-11-25','14:00:00','NIMISHBHAI','SON','','','','','','','',9898612702,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-24 12:59:35','vishal','2025-11-25 14:00:07'),(0,0,'2526',194,0,2612,'D27','D27',4,'2025-11-24','18:15:00','2025-11-27','12:00:00','NAIMISHBHAI','','9328090002','','','','','','',9328090002,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-24 18:23:14','riya','2025-11-27 12:19:24'),(0,0,'2526',195,0,3018,'D02','D02',3,'2025-09-30','09:00:00','2025-09-30','17:15:00','','','','','','','','','',9033151312,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-24 19:54:45','vishal','2025-11-24 19:58:47'),(0,0,'2526',196,0,3021,'D27','D27',5,'2025-11-25','05:00:00','2025-11-26','11:25:00','VIRALBHAI','','9825482269','','','','','','',9825482269,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','vishal','2025-11-25','vishal','2025-11-25 09:08:51','vishal','2025-11-26 11:56:37'),(0,0,'2526',197,1388,393,'D27','D27',5,'2025-11-24','22:30:00','2025-11-28','12:15:00','HITESHBHAI','SON','9725899998','','','','','','',9725899998,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','N','','','','0000-00-00','','','vishal','2025-11-25','vishal','2025-11-25 09:43:42','vishal','2025-11-28 12:22:41'),(0,0,'2526',198,2711,2782,'D02','D02',3,'2025-11-25','09:45:00','2025-11-27','19:00:00','SHAILESHBHAI','','8160021405','','','','','','',8160021405,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','Y','N','8','','','0000-00-00','','','','0000-00-00','vishal','2025-11-25 09:58:58','riya','2025-11-27 19:10:17'),(0,0,'2526',199,2323,2380,'D02','D02',3,'2025-11-25','09:50:00','2025-11-26','18:30:00','HARDIKBHAI','','7096594787','','','','','','',7096594787,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','vishal','2025-11-25','vishal','2025-11-25 10:15:47','riya','2025-11-26 18:41:34'),(0,0,'2526',200,0,3077,'D02','D02',3,'2025-11-25','19:30:00','2025-11-28','10:30:00','DEVAYATBHAI ','HUSBAND','','','','','','','',9638400001,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-25 19:27:40','vishal','2025-11-28 11:03:28'),(0,0,'2526',201,2928,3005,'D27','D27',4,'2025-11-26','09:50:00','2025-11-27','20:30:00','CHANDRESHBHAI','BROTHER','8000000896','','','','','','',8000000896,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-26 09:52:18','riya','2025-11-27 20:48:23'),(0,0,'2526',202,2903,2980,'D02','D02',3,'2025-11-26','10:00:00','2025-11-27','19:00:00','MEHULBHAI ','SON','9737417560','','','','','','',9737417560,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-26 10:12:07','riya','2025-11-27 19:09:28'),(0,0,'2526',203,0,3085,'D27','D27',4,'2025-11-26','10:15:00','2025-12-03','19:30:00','EQBALBHAI','SON','8153890089','','','','','','',8153890089,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-26 10:29:44','vishal','2025-12-03 19:32:09'),(0,0,'2526',204,0,3111,'D03','D03',6,'2025-11-26','14:30:00','2025-11-26','18:30:00','PRUTHVIRAJSINH','BROTHER','9723400001','','','','','','',9723400001,'','','','','','0000-00-00','riya','riya','7','Y','N','P','','','','','','0000-00-00','','','riya','2025-11-26','riya','2025-11-26 14:41:00','riya','2025-11-26 18:37:22'),(0,0,'2526',205,0,3141,'D02','D02',3,'2025-11-26','20:30:00','2025-11-27','09:15:00','DIPAKBHAI','SON','','','','','','','',9601455560,'','','','','','0000-00-00','riya','riya','7','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-26 20:49:12','riya','2025-11-27 09:18:19'),(0,0,'2526',206,0,3142,'D27','D27',4,'2025-11-26','20:40:00','2025-11-27','13:40:00','JAYBHAI','SON','','','','','','','',8200059857,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-26 21:01:26','riya','2025-11-27 13:31:41'),(0,0,'2526',207,0,3143,'D27','D27',4,'2025-11-26','21:20:00','2025-11-29','10:15:00','JAYESHBHAI','SON','','','','','','','',9825830441,'','','','','','0000-00-00','riya','vishal','1','N','N','P','Y','Y','13','','OG-26-2204-6021-0000157','0000-00-00','','','riya','2025-11-28','riya','2025-11-26 21:30:29','vishal','2025-11-29 10:16:28'),(0,0,'2526',208,0,3149,'D27','D27',4,'2025-11-27','03:00:00','2025-11-27','12:05:00','SMITABEN ','WIFE','','','','','','','',6355060656,'','','','','','0000-00-00','riya','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-27 09:34:15','riya','2025-11-27 12:27:39'),(0,0,'2526',209,0,3151,'D27','D27',4,'2025-11-27','02:00:00','2025-11-30','13:50:00','CHIRAGBHAI','HUSBAND','','','','','','','',9913377207,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-27 09:44:06','vishal','2025-11-30 13:57:14'),(0,0,'2526',210,0,3182,'D02','D02',78,'2025-11-27','15:00:00','2025-11-29','09:30:00','ARMAN','SON','','','','','','','',7016919092,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-27 15:21:54','vishal','2025-11-29 09:35:54'),(0,0,'2526',211,0,3186,'D27','D27',4,'2025-11-27','17:00:00','2025-11-29','11:15:00','YAGNIKBHAI','BROTHER','','','','','','','',9925129974,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-27 17:03:05','vishal','2025-11-29 11:21:50'),(0,0,'2526',212,407,429,'D27','D27',4,'2025-11-27','23:00:00','2025-11-28','02:10:00','KAUSHIKBHAI','SON','9824814008','','','','','','',9824814008,'','','','','','0000-00-00','vishal','vishal','5','Y','N','P','Y','N','9','','','0000-00-00','','','','0000-00-00','vishal','2025-11-27 23:20:25','vishal','2025-11-28 02:26:03'),(0,0,'2526',213,0,3287,'D02','D02',3,'2025-11-28','21:30:00','2025-12-01','11:40:00','VISWARAJ ','SON','','','','','','','',9033815583,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-11-28 21:35:42','riya','2025-12-01 11:50:49'),(0,0,'2526',214,3217,3303,'D27','D27',5,'2025-11-29','11:30:00','2025-11-29','20:40:00','ASHISHBHAI','FRIEND','9824160360','','','','','','',9824160360,'','','','','','0000-00-00','vishal','vishal','4','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-29 11:32:29','vishal','2025-11-29 20:54:56'),(0,0,'2526',215,0,3336,'D27','D27',4,'2025-11-29','13:30:00','2025-12-02','14:35:00','KRIPALSINH','SON','9033008900','','','','','','',9033008900,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-29 13:36:49','riya','2025-12-02 14:44:45'),(0,0,'2526',216,3208,3295,'D02','D02',3,'2025-11-29','14:00:00','2025-11-30','18:00:00','KARANBHAI','SON','','','','','','','',9998488863,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-29 14:07:09','vishal','2025-11-30 18:04:09'),(0,0,'2526',217,0,3343,'D27','D27',4,'2025-11-29','21:00:00','2025-12-01','13:30:00','HARVIBEN','SISTER','9904031270','','','','','','',9904031270,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-29 21:12:18','riya','2025-12-01 13:36:36'),(0,0,'2526',218,0,3345,'D27','D27',5,'2025-11-30','10:30:00','2025-12-11','12:45:00','ROHITBHAI','BROTHER','8076106942','','','','','','',8076106942,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-30 11:04:41','riya','2025-12-11 13:46:50'),(0,0,'2526',219,0,3346,'D27','D27',4,'2025-11-29','22:30:00','2025-12-01','18:45:00','GAURAVBHAI','BROTHER','8460503614','','','','','','',8460503614,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','Y','N','11','','','0000-00-00','','','','0000-00-00','vishal','2025-11-30 11:13:40','riya','2025-12-01 18:50:12'),(0,0,'2526',220,0,3347,'D02','D02',3,'2025-11-30','11:15:00','2025-12-02','19:30:00','KULDEEPBHAI','SON','9081247978','','','','','','',9081247978,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-30 11:45:27','vishal','2025-12-02 19:47:20'),(0,0,'2526',221,0,3349,'D02','D02',3,'2025-11-30','13:30:00','2025-12-04','20:05:00','PANKAJBHAI','HUSBAND','9328569527','','','','','','',9328569527,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-30 13:46:17','riya','2025-12-04 20:11:49'),(0,0,'2526',222,0,3350,'D02','D02',3,'2025-11-30','17:00:00','2025-12-13','14:20:00','SATYADEEPSINH','SON','9824646801','','','','','','',9824646801,'','','','','','0000-00-00','vishal','riya','7','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-11-30 17:46:28','riya','2025-12-13 14:20:56'),(0,0,'2526',223,0,3361,'D02','D02',3,'2025-12-01','09:30:00','2025-12-03','10:30:00','DISHABEN','DAUGHTER','','','','','','','',9427456448,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','N','','','','0000-00-00','','','riya','2025-12-01','riya','2025-12-01 10:17:31','riya','2025-12-03 10:47:41'),(0,0,'2526',224,0,3383,'D27','D27',4,'2025-12-01','12:00:00','2025-12-06','12:05:00','ANKURBHAI','SON','','','','','','','',9558528139,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','riya','2025-12-01 12:06:01','riya','2025-12-06 12:52:44'),(0,0,'2526',225,0,3400,'D27','D27',5,'2025-12-01','14:00:00','2025-12-11','13:00:00','SAMIR PANDYA','SON','','','','','','','',7016794300,'','','','','','0000-00-00','riya','vishal','1','N','N','P','Y','Y','13','','OC-26-1002-6021-00007779','0000-00-00','','','riya','2025-12-11','riya','2025-12-01 14:06:40','vishal','2025-12-11 18:09:23'),(0,0,'2526',226,0,3401,'D02','D02',3,'2025-12-01','14:30:00','2025-12-05','10:35:00','BHIKHABHAI ','DAUGHTER','','','','','','','',9913405252,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-01 14:24:31','vishal','2025-12-05 11:12:07'),(0,0,'2526',227,0,3403,'D27','D27',4,'2025-12-01','14:00:00','2025-12-02','14:00:00','HATINBHAI','BROTHER','','','','','','','',9825105092,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-01 14:48:55','riya','2025-12-02 14:03:32'),(0,0,'2526',228,0,3404,'D27','D27',4,'2025-12-01','15:00:00','2025-12-05','12:30:00','YASH BHAI','','','','','','','','',9624655150,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-01 15:17:16','vishal','2025-12-05 12:40:29'),(0,0,'2526',229,3305,3394,'D02','D02',3,'2025-12-01','17:50:00','2025-12-03','20:30:00','RADHIKABEN','SISTER','9724379377','','','','','','',9724379377,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','','','','','','0000-00-00','','','riya','2025-12-01','riya','2025-12-01 17:48:38','vishal','2025-12-03 20:40:06'),(0,0,'2526',230,0,3427,'D02','D02',42,'2025-12-01','18:30:00','2025-12-03','20:45:00','ASHWINBHAI','SON','9879896996','','','','','','',9879896996,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-01 18:34:27','vishal','2025-12-03 20:54:38'),(0,0,'2526',231,0,3438,'D02','D02',3,'2025-12-02','09:30:00','2025-12-03','10:15:00','VISHALBHAI','HUSBAND','','','','','','','',8160036450,'','','','','','0000-00-00','riya','riya','1','N','N','P','Y','Y','13','','OC-26-1002-8441-00010268','0000-00-00','','','riya','2025-12-03','riya','2025-12-02 09:39:14','riya','2025-12-03 10:29:49'),(0,0,'2526',232,0,3440,'D27','D27',4,'2025-12-02','10:00:00','2025-12-04','11:20:00','TEJASH','SON','','','','','','','',9924912200,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-02 10:00:10','riya','2025-12-04 11:25:48'),(0,0,'2526',233,0,3444,'D27','D27',4,'2025-12-02','10:15:00','2025-12-05','12:30:00','JALPABEN ','WIFE','','','','','','','',9904031270,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-02 10:22:43','vishal','2025-12-05 12:56:15'),(0,0,'2526',234,0,3447,'D02','D02',3,'2025-12-02','10:30:00','2025-12-02','16:45:00','NAROTTAMBHAI ','FATHER','','','','','','','',9714161412,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-02 10:33:56','riya','2025-12-02 16:48:34'),(0,0,'2526',235,0,3480,'D27','D27',4,'2025-12-02','13:30:00','2025-12-04','16:15:00','RIDHHI KESARIYA','DAUGHTER','','','','','','','',7574996427,'','','','','','0000-00-00','vishal','riya','7','Y','N','P','N','','','','','0000-00-00','','','vishal','2025-12-03','riya','2025-12-02 13:43:38','riya','2025-12-04 16:39:26'),(0,0,'2526',236,3406,3501,'D27','D27',4,'2025-12-02','19:50:00','2025-12-05','11:15:00','DIPAKBHAI','','8460675948','','','','','','',8460675948,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-02 19:58:07','vishal','2025-12-05 11:22:03'),(0,0,'2526',237,0,3506,'D27','D27',4,'2025-12-02','20:00:00','2025-12-05','07:00:00','DURGESHBHAI','BROTHER','6351943586','','','','','','',6351943586,'','','','','','0000-00-00','vishal','vishal','4','Y','N','P','','','','','','0000-00-00','','','vishal','2025-12-02','vishal','2025-12-02 20:34:56','vishal','2025-12-05 12:49:55'),(0,0,'2526',238,0,3510,'D27','D27',5,'2025-12-03','09:15:00','2025-12-08','12:15:00','NAYANKUMAR','SON IN LAW','','','','','','','',9328292517,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-03 09:36:53','riya','2025-12-08 12:14:30'),(0,0,'2526',239,0,3543,'D27','D27',4,'2025-12-03','15:30:00','2025-12-04','11:35:00','RAJUBHAI','SON','','','','','','','',9898989809,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-03 15:28:01','riya','2025-12-04 11:47:24'),(0,0,'2526',240,0,3544,'D14','D14',7,'2025-12-03','15:45:00','2025-12-04','06:10:00','MERUBEN','WIFE','','','','','','','',7383667688,'','','','','','0000-00-00','riya','vishal','5','Y','N','P','N','','','','','0000-00-00','','','riya','2025-12-03','riya','2025-12-03 16:13:30','vishal','2025-12-04 07:15:42'),(0,0,'2526',241,0,3583,'D27','D27',5,'2025-12-03','18:30:00','2025-12-08','11:50:00','VASANTBHAI','HUSBAND','8320836279','','','','','','',8320836279,'','','','','','0000-00-00','riya','riya','1','N','N','P','Y','Y','15','','1308510','0000-00-00','','','riya','2025-12-08','vishal','2025-12-03 18:41:17','riya','2025-12-08 11:59:15'),(0,0,'2526',242,0,3598,'D27','D27',4,'2025-12-04','10:00:00','2025-12-06','19:00:00','RENUKABEN','MOTHER','','','','','','','',9825550580,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','N','9','','','0000-00-00','','','riya','2025-12-04','riya','2025-12-04 10:06:46','riya','2025-12-06 19:22:50'),(0,0,'2526',243,0,3601,'D27','D27',4,'2025-12-04','01:00:00','2025-12-22','17:00:00','MAHESHBHAI','HUSBAND','','','','','','','',9913354582,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-04 10:50:53','riya','2025-12-22 16:53:26'),(0,0,'2526',244,0,3621,'D27','D27',4,'2025-12-04','12:20:00','2025-12-06','12:00:00','KARSHAN BHAI','HUSBAND','','','','','','','',9898211633,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-04 12:21:58','riya','2025-12-06 12:08:01'),(0,0,'2526',245,0,3630,'D27','D27',4,'2025-12-04','15:00:00','2025-12-12','19:00:00','JITESHBHAI','GRAND SON','','','','','','','',8000035515,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-04 14:57:47','vishal','2025-12-12 18:21:23'),(0,0,'2526',246,0,3631,'D02','D02',3,'2025-12-04','15:40:00','2025-12-04','21:30:00','DIVYESH NIMAVAT','','','','','','','','',8469366608,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-04 15:42:49','riya','2025-12-04 21:38:53'),(0,0,'2526',247,0,3636,'D02','D02',42,'2025-12-04','17:00:00','2025-12-09','09:35:00','HIMANSHUBHAI','SON','9898262870','','','','','','',9898262870,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-04 17:18:32','vishal','2025-12-09 09:52:46'),(0,0,'2526',248,3525,3627,'D02','D02',3,'2025-12-05','09:00:00','2025-12-05','18:25:00','PARAGBHAI','','9106242961','','','','','','',9106242961,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-05 09:57:37','vishal','2025-12-05 18:37:34'),(0,0,'2526',249,0,3698,'D27','D27',5,'2025-12-05','17:00:00','2025-12-06','13:00:00','HITESHBHAI','SON','9725899998','','','','','','',9725899998,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','Y','N','3','','','0000-00-00','','','','0000-00-00','vishal','2025-12-05 18:12:44','riya','2025-12-06 13:08:29'),(0,0,'2526',250,0,3700,'D27','D27',5,'2025-12-05','17:30:00','2025-12-11','12:55:00','VISHRUTBHAI','HUSBAND','9409080442','','','','','','',9409080442,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-05 18:22:20','riya','2025-12-11 13:35:43'),(0,0,'2526',251,0,3706,'D02','D02',42,'2025-12-05','17:30:00','2025-12-10','11:30:00','BHAVYESHBHAI','SON','9974477801','','','','','','',9974477801,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-05 18:44:36','riya','2025-12-10 11:54:50'),(0,0,'2526',252,0,3719,'D02','D02',3,'2025-12-05','20:30:00','2025-12-08','13:15:00','ISMAILBHAI','FATHER','9825076784','','','','','','',9825076784,'','','','','','0000-00-00','riya','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-05 20:53:01','riya','2025-12-08 13:20:26'),(0,0,'2526',253,0,3720,'D27','D27',4,'2025-12-05','20:30:00','2025-12-08','20:25:00','HITESHBHAI','','9924810087','','','','','','',9924810087,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-05 21:04:00','vishal','2025-12-08 20:56:24'),(0,0,'2526',254,0,3721,'D02','D02',3,'2025-12-06','10:00:00','2025-12-07','20:00:00','BHARATBHAI','FATHER','','','','','','','',9426421564,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-06 10:02:14','vishal','2025-12-07 19:22:57'),(0,0,'2526',255,0,3764,'D27','D27',4,'2025-12-07','16:30:00','2025-12-11','11:20:00','MILANBHAI','SON','9904172900','','','','','','',9904172900,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-07 16:48:26','riya','2025-12-11 13:19:19'),(0,0,'2526',256,0,3765,'D27','D27',5,'2025-12-07','23:30:00','2025-12-10','20:00:00','JAYANTKUMAR','HUSBAND','8866573768','','','','','','',8866573768,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','Y','N','22','','','0000-00-00','','','riya','2025-12-08','vishal','2025-12-07 23:59:52','vishal','2025-12-10 20:44:14'),(0,0,'2526',257,0,3778,'D02','D02',3,'2025-12-08','09:30:00','2025-12-09','13:30:00','TRUPTIBEN','WIFE','','','','','','','',9825107074,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','riya','2025-12-08 09:34:50','vishal','2025-12-09 13:52:18'),(0,0,'2526',258,0,3780,'D27','D27',4,'2025-12-08','03:30:00','2025-12-11','11:20:00','KEYURBHAI','SON','','','','','','','',9725495553,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-08 09:47:50','riya','2025-12-11 13:11:11'),(0,0,'2526',259,0,3824,'D27','D27',5,'2025-12-08','12:30:00','2025-12-17','12:15:00','SATYA BETAI','DAUGHTER','','','','','','','',9768141783,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','riya','2025-12-08 12:36:57','vishal','2025-12-17 13:30:46'),(0,0,'2526',260,0,3827,'D27','D27',4,'2025-12-08','13:00:00','2025-12-13','12:48:00','ARUNBHAI','SON IN LAW','','','','','','','',9879242252,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','N','','','','','0000-00-00','','','vishal','2025-12-09','riya','2025-12-08 13:06:07','riya','2025-12-13 12:48:34'),(0,0,'2526',261,0,3863,'D27','D27',5,'2025-12-08','18:00:00','2025-12-14','11:00:00','KARTIKBHAI','SON','8128611343','','','','','','',8128611343,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-08 18:56:38','riya','2025-12-14 11:12:26'),(0,0,'2526',262,3730,3833,'D02','D02',3,'2025-12-08','18:45:00','2025-12-11','11:30:00','HIRENBHAI','','9979866204','','','','','','',9979866204,'','','','','','0000-00-00','vishal','riya','7','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-08 19:14:51','riya','2025-12-11 12:53:45'),(0,0,'2526',263,0,3871,'D27','D27',5,'2025-12-09','01:00:00','2025-12-10','20:45:00','DIPAKBHAI','SON','9687837212','','','','','','',9687837212,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','N','21','','','0000-00-00','','','','0000-00-00','vishal','2025-12-09 09:23:24','vishal','2025-12-10 21:01:18'),(0,0,'2526',264,594,624,'D27','D27',4,'2025-12-08','22:15:00','2025-12-09','13:00:00','MEHULBHAI ','SON','8511111341','','','','','','',8511111341,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-09 09:33:35','vishal','2025-12-09 12:54:46'),(0,0,'2526',265,3790,3894,'D27','D27',4,'2025-12-09','13:00:00','2025-12-10','13:00:00','RAJENDRABHAI','BROTHER','8460460031','','','','','','',8460460031,'','','','','','0000-00-00','vishal','riya','2','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-09 13:24:21','riya','2025-12-10 12:51:17'),(0,0,'2526',266,0,3906,'D27','D27',4,'2025-12-09','16:00:00','2025-12-12','14:41:00','KETKIBEN ','DAUGHTER','','','','','','','',9429043162,'','','','','','0000-00-00','riya','riya','5','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-09 16:15:02','riya','2025-12-12 14:49:10'),(0,0,'2526',267,0,3912,'D14','D14',7,'2025-12-09','17:30:00','2025-12-13','10:59:00','KANTIBHAI','HUSBAND','','','','','','','',9687120430,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-09 17:39:45','riya','2025-12-13 11:00:00'),(0,0,'2526',268,0,3938,'D27','D27',4,'2025-12-09','19:30:00','2025-12-11','11:30:00','OM BHAI','GRAND SON','','','','','','','',8849066390,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-09 20:28:36','riya','2025-12-11 12:55:44'),(0,0,'2526',269,0,3939,'D27','D27',4,'2025-12-09','21:15:00','2025-12-10','17:00:00','AVNI CHAUHAN','SISTER','','','','','','','',9265670717,'','','','','','0000-00-00','riya','riya','5','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-09 21:16:04','riya','2025-12-10 17:44:40'),(0,0,'2526',270,0,3941,'D02','D02',3,'2025-12-10','09:30:00','2025-12-10','20:00:00','BHAVISHA','WIFE','','','','','','','',8780634451,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-10 09:36:35','vishal','2025-12-10 20:28:19'),(0,0,'2526',271,0,3943,'D02','D02',3,'2025-12-10','10:00:00','2025-12-10','20:00:00','RINKI TANTI','MOTHER','','','','','','','',8107260313,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-10 10:05:37','vishal','2025-12-10 20:23:49'),(0,0,'2526',272,0,3977,'D27','D27',5,'2025-12-10','13:00:00','2025-12-11','16:00:00','GEETABEN','SISTER IN LAW','','','','','','','',9904468335,'','','','','','0000-00-00','riya','riya','7','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-10 12:56:33','riya','2025-12-11 16:09:24'),(0,0,'2526',273,0,4001,'D27','D27',4,'2025-12-10','18:30:00','2025-12-13','14:15:00','AMITBHAI','SON','9427252083','','','','','','',9427252083,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','Y','N','3','','','0000-00-00','','','','0000-00-00','vishal','2025-12-10 18:37:51','riya','2025-12-13 18:07:43'),(0,0,'2526',274,0,4010,'D02','D02',78,'2025-12-10','22:15:00','2025-12-15','16:00:00','ABHIJEETBHAI','SON','9664714734','','','','','','',9664714734,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','N','1','','','0000-00-00','','','riya','2025-12-15','vishal','2025-12-10 22:51:18','riya','2025-12-15 16:08:23'),(0,0,'2526',275,4002,4109,'D02','D02',42,'2025-12-12','18:30:00','2025-12-14','11:30:00','JAYESHBHAI','SON','9979176727','','','','','','',9979176727,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-12 18:52:09','riya','2025-12-14 12:09:33'),(0,0,'2526',276,0,4123,'D27','D27',4,'2025-12-12','19:00:00','2025-12-13','20:00:00','KUNALBHAI','FRIEND','9714500077','','','','','','',9714500077,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','Y','N','8','','','0000-00-00','','','','0000-00-00','vishal','2025-12-12 19:13:30','riya','2025-12-13 18:12:35'),(0,0,'2526',277,4016,4124,'D27','D27',5,'2025-12-12','19:50:00','2025-12-17','12:10:00','BHAVIKBHAI ','SON','9998779577','','','','','','',9998779577,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-12 19:48:35','vishal','2025-12-17 12:19:10'),(0,0,'2526',278,3980,4087,'D27','D27',4,'2025-12-13','09:53:00','2025-12-14','12:00:00','','','','','','','','','',9909012332,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','N','','','','0000-00-00','','','riya','2025-12-13','riya','2025-12-13 09:55:42','riya','2025-12-14 12:38:05'),(0,0,'2526',279,3053,3134,'D02','D02',3,'2025-12-13','10:19:00','2025-12-14','11:00:00','','','','','','','','','',8780486381,'','','','','','0000-00-00','riya','riya','1','N','N','P','Y','Y','24','','1680943','0000-00-00','','','riya','2025-12-14','riya','2025-12-13 10:20:18','riya','2025-12-14 11:04:51'),(0,0,'2526',280,3999,4106,'D27','D27',4,'2025-12-13','10:27:00','2025-12-14','17:00:00','','','','','','','','','',7567794748,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-13 10:28:18','vishal','2025-12-14 17:28:20'),(0,0,'2526',281,0,4157,'D27','D27',4,'2025-12-13','01:00:00','2025-12-13','12:00:00','','','','','','','','','',8238967997,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-13 12:32:09','riya','2025-12-13 14:44:39'),(0,0,'2526',282,4033,4140,'D02','D02',3,'2025-12-13','21:19:00','2025-12-16','12:50:00','','','','','','','','','',9580255555,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-13 21:21:36','vishal','2025-12-16 12:19:24'),(0,0,'2526',283,0,4171,'D02','D02',42,'2025-12-14','01:00:00','2025-12-14','17:00:00','VIJAYBHAI','HUSBAND','','','','','','','',9879638111,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-14 10:59:11','vishal','2025-12-14 16:39:22'),(0,0,'2526',284,0,4172,'D02','D02',42,'2025-12-14','11:30:00','2025-12-19','14:21:00','MAYURBHAI','SON','','','','','','','',9033700777,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-14 11:30:38','riya','2025-12-19 14:22:02'),(0,0,'2526',285,0,4173,'D02','D02',78,'2025-12-14','12:50:00','2025-12-22','13:50:00','PARESHBHAI','SON','','','','','','','',9099312018,'','','','','','0000-00-00','riya','riya','4','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-14 12:58:31','riya','2025-12-22 14:51:32'),(0,0,'2526',286,4000,4107,'D03','D03',6,'2025-12-14','17:00:00','2025-12-17','14:00:00','JITENBHAI','HUSBAND','9824229609','','','','','','',9824229609,'','','','','','0000-00-00','vishal','vishal','1','N','N','P','Y','Y','12','','RC-HS25--15327337','0000-00-00','','','vishal','2025-12-17','vishal','2025-12-14 17:21:28','vishal','2025-12-17 14:26:10'),(0,0,'2526',287,0,4174,'D27','D27',4,'2025-12-14','21:00:00','2025-12-15','21:45:00','DHARMESHBHAI','HUSBAND','9824369885','','','','','','',9824369885,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','N','3','','','0000-00-00','','','','0000-00-00','vishal','2025-12-14 21:17:46','vishal','2025-12-15 21:09:11'),(0,0,'2526',288,0,4189,'D02','D02',3,'2025-12-15','11:00:00','2025-12-16','11:30:00','KALPESHBHAI BODAR','','','','','','','','',9725275153,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','Y','N','11','','','0000-00-00','','','riya','2025-12-15','riya','2025-12-15 11:04:38','vishal','2025-12-16 11:09:42'),(0,0,'2526',289,0,4222,'D02','D02',3,'2025-12-15','12:30:00','2025-12-17','13:30:00','SMITABEN','WIFE','','','','','','','',9825314600,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-15 12:33:13','vishal','2025-12-17 13:58:45'),(0,0,'2526',290,0,4227,'D03','D03',6,'2025-12-15','13:30:00','2025-12-17','12:30:00','ABHISEKHBHAI ','BROTHER','','','','','','','',7572857852,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-15 13:30:36','vishal','2025-12-17 13:35:21'),(0,0,'2526',291,0,4228,'D02','D02',3,'2025-12-15','14:40:00','2025-12-15','17:40:46','YUVRAJSINH','GRANDSON','','','','','','','REQUEST BY VISHALBHAI',8980855253,'','','','','','0000-00-00','riya','thims','','N','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-15 15:00:09','thims','2025-12-15 17:40:46'),(0,0,'2526',292,0,4229,'D27','D27',4,'2025-12-15','15:00:00','2025-12-16','17:15:00','TEJASHBHAI','MOTHER','','','','','','','',9724641157,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-15 15:26:43','vishal','2025-12-16 15:06:59'),(0,0,'2526',293,0,4233,'D14','D14',7,'2025-12-15','17:00:00','2025-12-16','12:50:00','RAMNIKBHAI','BROTHER','9825208688','','','','','','',9825208688,'','','','','','0000-00-00','riya','riya','5','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','riya','2025-12-15 17:14:21','riya','2025-12-16 13:09:51'),(0,0,'2526',294,0,3719,'D02','D02',3,'2025-12-16','09:30:00','2025-12-16','17:55:00','SHARMINBEN','','9825076784','','','','','','',9825076784,'','','','','','0000-00-00','vishal','riya','1','Y','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-16 09:35:42','riya','2025-12-16 17:45:48'),(0,0,'2526',295,0,4260,'D27','D27',4,'2025-12-16','00:05:00','2025-12-16','07:10:00','SELF','SELF','7405210324','','','','','','',7405210324,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-16 09:56:42','vishal','2025-12-16 19:30:33'),(0,0,'2526',296,0,4262,'D27','D27',4,'2025-12-16','02:30:00','2025-12-16','19:10:00','JAIMINBHAI','SON','9898724248','','','','','','',9898724248,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','N','4','','','0000-00-00','','','vishal','2025-12-16','vishal','2025-12-16 10:02:46','vishal','2025-12-16 19:29:13'),(0,0,'2526',297,4056,4163,'D02','D02',3,'2025-12-16','10:40:00','0000-00-00','00:00:00','BHARATBHAI','SON','6351964798','','','','','','',6351964798,'','','','','','0000-00-00','vishal','','','N','N','P','','','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-16 10:39:32','','0000-00-00 00:00:00'),(0,0,'2526',298,0,4301,'D02','D02',42,'2025-12-16','15:30:00','2025-12-20','17:30:00','RAHULBHAI','SON','9913324246','','','','','','',9913324246,'','','','','','0000-00-00','riya','riya','1','Y','N','P','','N','','','','0000-00-00','','','','0000-00-00','riya','2025-12-16 15:45:00','riya','2025-12-20 18:02:19'),(0,0,'2526',299,4209,4323,'D27','D27',5,'2025-12-16','20:20:00','2025-12-19','19:00:00','KARSHANBHAI','SON','6352355007','','','','','','',6352355007,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','N','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-16 20:21:25','vishal','2025-12-19 19:09:27'),(0,0,'2526',300,0,4325,'D27','D27',4,'2025-12-16','21:00:00','2025-12-17','18:51:00','CHIRAGBHAI','FATHER','9925474275','','','','','','',9925474275,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-16 21:05:47','vishal','2025-12-17 18:54:56'),(0,0,'2526',301,4206,4320,'D27','D27',5,'2025-12-17','10:15:00','2025-12-20','12:25:00','HETALBEN ','WIFE','9925233256','','','','','','',9925233256,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','N','12','','','0000-00-00','','','riya','2025-12-20','vishal','2025-12-17 10:23:24','riya','2025-12-20 13:51:13'),(0,0,'2526',302,4269,4384,'D27','D27',5,'2025-12-17','20:30:00','2025-12-20','13:41:00','KRUNALBHAI','SON','7698796488','','','','','','',7698796488,'','','','','','0000-00-00','vishal','riya','7','Y','N','P','','N','','','','0000-00-00','','','vishal','2025-12-17','vishal','2025-12-17 20:35:24','riya','2025-12-20 13:41:25'),(0,0,'2526',303,4268,4383,'D02','D02',3,'2025-12-17','23:16:00','2025-12-18','19:55:00','','','','','','','','','',9723517654,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','N','','','','0000-00-00','','','','0000-00-00','riya','2025-12-18 11:18:17','vishal','2025-12-18 20:20:55'),(0,0,'2526',304,0,4405,'D02','D02',3,'2025-12-18','09:00:00','2025-12-20','11:40:00','','','','','','','','','',9265098097,'','','','','','0000-00-00','riya','riya','1','Y','N','P','Y','N','3','','','0000-00-00','','','','0000-00-00','riya','2025-12-18 11:28:20','riya','2025-12-20 14:14:34'),(0,0,'2526',305,0,4452,'D27','D27',5,'2025-12-18','19:50:00','2025-12-20','12:36:00','TUSHARBHAI','SON','9879015753','','','','','','',9879015753,'','','','','','0000-00-00','vishal','riya','7','Y','N','P','','N','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-18 19:56:26','riya','2025-12-20 12:36:13'),(0,0,'2526',306,0,4453,'D27','D27',4,'2025-12-18','19:30:00','2025-12-19','20:40:00','TEJASBHAI','HUSBAND','9724641157','','','','','','',9724641157,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-18 20:25:35','vishal','2025-12-19 20:30:03'),(0,0,'2526',307,2738,2808,'D02','D02',3,'2025-12-19','10:00:00','2025-12-19','19:30:00','NIKUNJBHAI ','SON','7046221999','','','','','','',9426457800,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','Y','N','1','','','0000-00-00','','','','0000-00-00','riya','2025-12-19 10:08:08','vishal','2025-12-19 19:31:42'),(0,0,'2526',308,0,4467,'D02','D02',3,'2025-12-19','10:00:00','2025-12-19','15:20:00','DEVANIBEN VADHADIYA ','WIFE ','9033983796','','','','','','',9033983796,'','','','','','0000-00-00','riya','riya','1','N','N','P','Y','Y','15','','1320558','0000-00-00','','','riya','2025-12-19','riya','2025-12-19 11:14:01','riya','2025-12-19 16:26:31'),(0,0,'2526',309,0,4484,'D27','D27',4,'2025-12-19','12:00:00','2025-12-23','16:30:00','KULDEEPBHAI ','SON','9712369305','','','','','','',9712369305,'','','','','','0000-00-00','riya','vishal','1','N','N','P','N','N','','','','0000-00-00','','','','0000-00-00','riya','2025-12-19 12:26:03','vishal','2025-12-23 16:55:57'),(0,0,'2526',310,0,4490,'D02','D02',3,'2025-12-19','15:38:00','2025-12-23','12:15:00','PRAKASHBHAI ','SON ','93276957093','','','','','','',93276957093,'','','','','','0000-00-00','riya','riya','4','Y','N','P','N','N','','','','0000-00-00','','','','0000-00-00','riya','2025-12-19 15:49:52','riya','2025-12-23 13:15:19'),(0,0,'2526',311,0,4515,'D02','D02',42,'2025-12-19','21:00:00','2025-12-22','21:00:00','PRATIKBHAI','','7069960499','','','','','','',7069960499,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','Y','N','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-19 21:12:23','vishal','2025-12-22 20:57:43'),(0,0,'2526',312,0,4541,'D27','D27',4,'2025-12-20','14:30:00','2025-12-22','12:30:00','SOHILBHAI ','SON ','7984535851','','','','','','',7984535851,'','','','','','0000-00-00','riya','riya','4','Y','N','P','N','N','','','','0000-00-00','','','','0000-00-00','riya','2025-12-20 14:42:00','riya','2025-12-22 13:25:23'),(0,0,'2526',313,2680,2749,'D27','D27',4,'2025-12-20','12:30:00','0000-00-00','00:00:00','PARESHBHAI ','HUSBAND',' 9825536099','','','','','','',9825536099,'','','','','','0000-00-00','riya','','','N','N','P','Y','N','11','','','0000-00-00','','','','0000-00-00','riya','2025-12-20 16:39:45','','0000-00-00 00:00:00'),(0,0,'2526',314,4224,4339,'D03','D03',6,'2025-12-20','20:54:00','2025-12-22','12:20:00','VITHALBHAI ','SON ','8238384500','','','','','','',9904736303,'','','','','','0000-00-00','riya','riya','1','Y','N','P','N','N','','','','0000-00-00','','','','0000-00-00','riya','2025-12-20 20:56:14','riya','2025-12-22 13:16:11'),(0,0,'2526',315,0,4550,'D02','D02',3,'2025-12-21','14:00:00','2025-12-23','11:05:00','RAMESHBHAI','SON','9978099865','','','','','','',9978099865,'','','','','','0000-00-00','vishal','riya','4','Y','N','P','','N','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-21 20:26:45','riya','2025-12-23 11:43:16'),(0,0,'2526',316,4172,4285,'D27','D27',4,'2025-12-21','18:00:00','2025-12-23','16:45:00','AVNIBEN ','DAUGHTER','8849364494','','','','','','',8849364494,'','','','','','0000-00-00','vishal','vishal','1','Y','N','P','','N','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-21 20:37:59','vishal','2025-12-23 16:56:43'),(0,0,'2526',317,0,3698,'D27','D27',5,'2025-12-21','19:00:00','0000-00-00','00:00:00','','','','','','','','','',9725899998,'','','','','','0000-00-00','vishal','','','N','N','P','Y','N','3','','','0000-00-00','','','','0000-00-00','vishal','2025-12-21 20:52:07','','0000-00-00 00:00:00'),(0,0,'2526',318,0,4558,'D27','D27',4,'2025-12-22','02:00:00','0000-00-00','00:00:00','KARANBHAI ','BROTHER ','9974254003','','','','','','',9974254003,'','','','','','0000-00-00','riya','','','N','N','P','N','N','','','','0000-00-00','','','','0000-00-00','riya','2025-12-22 09:37:42','','0000-00-00 00:00:00'),(0,0,'2526',319,0,4560,'D02','D02',3,'2025-12-22','09:00:00','2025-12-23','12:30:00','SNEHALBHAI  SHETH ','HUSBAND ','9426343244','','','','','','',9426343244,'','','','','','0000-00-00','riya','riya','1','N','N','P','Y','Y','1','','91307745','0000-00-00','','','riya','2025-12-23','riya','2025-12-22 09:55:05','riya','2025-12-23 12:33:33'),(0,0,'2526',320,0,4564,'D02','D02',3,'2025-12-22','10:00:00','2025-12-22','18:15:00','RANJANBEN ','MOTHER ','8866958104','','','','','','',8866958104,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','N','','','','0000-00-00','','','','0000-00-00','riya','2025-12-22 10:07:35','vishal','2025-12-22 18:20:57'),(0,0,'2526',321,0,4588,'D27','D27',4,'2025-12-21','23:00:00','2025-12-22','18:45:00','VISHALBHAI ','HUSBNAD ','9898992005','','','','','','',9898992005,'','','','','','0000-00-00','vishal','vishal','4','Y','N','P','N','N','','','','0000-00-00','','','vishal','2025-12-22','riya','2025-12-22 11:33:06','vishal','2025-12-22 18:55:09'),(0,0,'2526',322,0,4593,'D27','D27',5,'2025-12-22','11:40:00','0000-00-00','00:00:00','MANISHBHAI ','SON ','9924580838','','','','','','',9924580838,'','','','','','0000-00-00','riya','','','N','N','P','N','N','','','','0000-00-00','','','','0000-00-00','riya','2025-12-22 11:52:42','','0000-00-00 00:00:00'),(0,0,'2526',323,0,4598,'D27','D27',5,'2025-12-22','12:02:00','0000-00-00','00:00:00','NIRAVBHAI ','SON ','9898006342','','','','','','',9898006342,'','','','','','0000-00-00','riya','','','N','N','P','N','N','','','','0000-00-00','','','','0000-00-00','riya','2025-12-22 12:12:07','','0000-00-00 00:00:00'),(0,0,'2526',324,0,4600,'D02','D02',3,'2025-12-22','12:19:00','2025-12-22','19:40:00','SATUBHA ','SON ','98246468014','','','','','','',9824646801,'','','','','','0000-00-00','riya','vishal','1','Y','N','P','N','N','','','','0000-00-00','','','','0000-00-00','riya','2025-12-22 12:22:55','vishal','2025-12-22 19:50:55'),(0,0,'2526',325,0,4611,'D27','D27',4,'2025-12-22','16:20:00','0000-00-00','00:00:00','HARSHILBHAI ','SON ','7984386730','','','','','','',7984386730,'','','','','','0000-00-00','riya','','','N','N','P','N','N','','','','0000-00-00','','','','0000-00-00','riya','2025-12-22 16:25:05','','0000-00-00 00:00:00'),(0,0,'2526',326,0,4617,'D02','D02',3,'2025-12-22','17:30:00','0000-00-00','00:00:00','MILANBHAI','HUSBAND','9904172900','','','','','','',9904172900,'','','','','','0000-00-00','vishal','','','N','N','P','Y','Y','12','','','0000-00-00','','','vishal','2025-12-22','vishal','2025-12-22 17:40:16','','0000-00-00 00:00:00'),(0,0,'2526',327,4496,4622,'D02','D02',3,'2025-12-22','21:30:00','0000-00-00','00:00:00','AKSHAYBHAI','','9334903807','','','','','','',9334903807,'','','','','','0000-00-00','vishal','','','N','N','P','','N','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-22 21:41:35','','0000-00-00 00:00:00'),(0,0,'2526',328,0,4645,'D02','D02',3,'2025-12-22','22:00:00','0000-00-00','00:00:00','NARESHBHAI','','9998563578','','','','','','',9998563578,'','','','','','0000-00-00','vishal','','','N','N','P','','N','','','','0000-00-00','','','','0000-00-00','vishal','2025-12-22 22:11:13','','0000-00-00 00:00:00'),(0,0,'2526',329,0,3601,'D27','D27',4,'2025-12-23','02:00:00','0000-00-00','00:00:00','DARSHAN ','SON','9913354582','','','','','','',9913354582,'','','','','','0000-00-00','riya','','','N','N','P','N','N','','','','0000-00-00','','','riya','2025-12-23','riya','2025-12-23 10:59:04','riya','2025-12-23 11:26:43');
/*!40000 ALTER TABLE `ipd` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `job_category_master`
--

DROP TABLE IF EXISTS `job_category_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `job_category_master` (
  `job_category_id` tinyint(4) NOT NULL AUTO_INCREMENT,
  `business_entity_code` char(2) NOT NULL DEFAULT 'H',
  `job_category_name` varchar(25) NOT NULL,
  `probation_duration` tinyint(4) DEFAULT NULL,
  `notice_period` tinyint(4) DEFAULT NULL,
  `emp_id_start` int(11) NOT NULL,
  `emp_id_end` int(11) NOT NULL,
  `last_emp_id` int(11) NOT NULL,
  `job_category_is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`job_category_id`),
  UNIQUE KEY `job_category_name` (`job_category_name`,`business_entity_code`) USING BTREE,
  KEY `FK_jobcategory_created_user` (`created_by`),
  KEY `FK_jobcategory_lastmodified_user` (`lastmodified_by`),
  KEY `business_entity_code` (`business_entity_code`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `job_category_master`
--

LOCK TABLES `job_category_master` WRITE;
/*!40000 ALTER TABLE `job_category_master` DISABLE KEYS */;
INSERT INTO `job_category_master` VALUES (1,'H','Employee',NULL,NULL,0,0,0,'Y','thims','2019-02-23 00:00:00',NULL,NULL),(2,'H','Trainee',NULL,NULL,0,0,0,'Y','thims','2019-02-23 00:00:00',NULL,NULL),(3,'H','Doctor',NULL,NULL,0,0,0,'Y','thims','2019-02-23 00:00:00',NULL,NULL);
/*!40000 ALTER TABLE `job_category_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `job_title_master`
--

DROP TABLE IF EXISTS `job_title_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `job_title_master` (
  `job_title_id` tinyint(4) NOT NULL AUTO_INCREMENT,
  `job_title_name` varchar(50) NOT NULL,
  `job_title_is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `job_notice_period` int(11) NOT NULL DEFAULT '30' COMMENT 'notice period in day',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`job_title_id`),
  UNIQUE KEY `job_title_name` (`job_title_name`) USING BTREE,
  KEY `FK_jobtitle_created_user` (`created_by`),
  KEY `FK_jobtitle_lastmodified_user` (`lastmodified_by`)
) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `job_title_master`
--

LOCK TABLES `job_title_master` WRITE;
/*!40000 ALTER TABLE `job_title_master` DISABLE KEYS */;
INSERT INTO `job_title_master` VALUES (1,'Head Of Operations & Medical Services','Y',60,'thims','2019-02-23 00:00:00','kinjal','2019-09-28 12:11:56'),(2,'Assistant-  Accountant / HR','Y',30,'thims','2019-02-23 00:00:00',NULL,NULL),(3,'Manager- Hr','Y',60,'thims','2019-02-23 00:00:00','kinjal','2020-06-04 10:06:00'),(4,'Executive','Y',60,'thims','2019-02-23 00:00:00','kinjal','2019-09-28 12:12:01'),(5,'CCO','Y',30,'thims','2019-02-23 00:00:00',NULL,NULL),(6,'Technician','Y',30,'thims','2019-02-23 00:00:00',NULL,NULL),(7,'Nurse Assistant','Y',30,'thims','2019-02-23 00:00:00',NULL,NULL),(8,'Sr. Executive','Y',30,'thims','2019-02-23 00:00:00',NULL,NULL),(9,'Sr. Technician','Y',30,'thims','2019-02-23 00:00:00',NULL,NULL),(10,'ANS','Y',30,'thims','2019-02-23 00:00:00',NULL,NULL),(11,'Assistant Technician','Y',30,'thims','2019-02-23 00:00:00',NULL,NULL),(12,'Unit Head','Y',60,'thims','2019-02-23 00:00:00','kinjal','2020-06-04 10:06:11'),(13,'Staff Nurse- OT','Y',30,'thims','2019-02-23 00:00:00',NULL,NULL),(14,'Assistant','Y',30,'thims','2019-02-23 00:00:00',NULL,NULL),(15,'Staff Nurse','Y',30,'thims','2019-02-23 00:00:00',NULL,NULL),(16,'Trainee - Pharmacy','Y',30,'thims','2019-02-23 00:00:00',NULL,NULL),(17,'Trainee - Staff Nurse','Y',30,'thims','2019-02-23 00:00:00',NULL,NULL),(18,'Trainee- Technician','Y',30,'thims','2019-02-23 00:00:00',NULL,NULL),(19,'Consultant','Y',30,'thims','2019-02-23 00:00:00',NULL,NULL),(20,'Ans & Clinical Educator','Y',60,'thims','2019-04-20 13:58:34','kinjal','2020-06-04 10:06:26'),(21,'Radiographer','N',30,'thims','2019-04-20 13:58:51','kinjal','2020-06-04 10:06:58'),(22,'Pharmacist','Y',30,'thims','2019-04-20 14:01:51',NULL,NULL),(23,'Incharge- Ot','Y',30,'thims','2019-04-20 14:02:22',NULL,NULL),(24,'Ot Attendant','Y',30,'thims','2019-04-20 14:02:37',NULL,NULL),(25,'Sr Staff Nurse','Y',30,'thims','2019-04-20 14:03:41',NULL,NULL),(26,'Head','Y',30,'thims','2019-04-20 14:04:15','kinjal','2019-05-29 16:59:07'),(27,'Incharge','Y',30,'thims','2019-04-20 14:04:44',NULL,NULL),(28,'Dietician','Y',30,'thims','2019-04-20 14:04:54',NULL,NULL),(29,'Phelebotomist & Lab Assis','Y',30,'thims','2019-04-20 14:05:03',NULL,NULL),(30,'Trainee - Operation','Y',30,'thims','2019-04-20 15:23:40',NULL,NULL),(31,'Trainee - Laboratory','Y',30,'thims','2019-04-20 15:24:40',NULL,NULL),(32,'Clinical Care Officer','Y',15,'thims','2019-04-20 16:38:33','kinjal','2020-02-05 17:56:08'),(33,'Medical Officer','Y',30,'thims','2019-04-20 16:38:53',NULL,NULL),(34,'Physiotherapist','Y',30,'thims','2019-04-20 16:39:04',NULL,NULL),(35,'Dentist','Y',30,'thims','2019-04-20 16:39:27',NULL,NULL),(36,'Assistant Manager','Y',60,'kinjal','2019-05-01 16:57:54','kinjal','2019-09-28 12:11:49'),(37,'Trainee- Ops','Y',30,'kinjal','2019-05-03 10:17:39',NULL,NULL),(38,'Trainee- Accounts','Y',30,'kinjal','2019-05-03 10:17:56',NULL,NULL),(39,'Medical Transcriptionist','Y',30,'kinjal','2019-05-27 11:02:44',NULL,NULL),(40,'Driver','Y',30,'kinjal','2019-06-22 16:21:26',NULL,NULL),(41,'Front Desk Executive','Y',30,'kinjal','2019-07-11 11:55:24',NULL,NULL),(42,'Ip Coordinator','Y',30,'kinjal','2019-11-01 18:10:49','kinjal','2020-01-10 12:50:32'),(43,'Security Guard','Y',30,'kinjal','2019-11-01 18:11:01',NULL,NULL),(44,'Patient Care Attendant','Y',30,'kinjal','2019-11-01 18:11:21',NULL,NULL),(45,'Lab- Coordinator','Y',30,'kinjal','2019-11-21 12:07:13',NULL,NULL),(46,'Dep Medical Administrator','Y',60,'kinjal','2019-11-25 12:20:19','kinjal','2020-06-04 10:07:41'),(47,'Head- Purchase & Clinical','Y',60,'kinjal','2019-12-07 11:26:57',NULL,NULL),(48,'Manager','Y',60,'kinjal','2020-01-10 11:11:12','kinjal','2020-06-04 10:07:50'),(49,'Coordinator','Y',1,'kinjal','2020-03-05 11:22:53',NULL,NULL),(50,'Engineer','Y',60,'kinjal','2020-03-05 12:23:38','kinjal','2020-06-04 10:08:02'),(51,'Clinical Pharmacist','Y',1,'kinjal','2020-03-19 16:27:32',NULL,NULL),(52,'Sr Pharmacist','Y',1,'kinjal','2020-06-04 10:05:44',NULL,NULL),(53,'Physician Assistant','Y',1,'kinjal','2020-06-15 12:15:16',NULL,NULL),(54,'Nurse Supervisor','Y',1,'kinjal','2020-06-19 10:11:24',NULL,NULL),(55,'Icn','Y',1,'kinjal','2020-06-26 15:26:55','kinjal','2020-06-26 15:27:51'),(56,'Pgro','Y',1,'kinjal','2020-07-15 11:18:18',NULL,NULL),(57,'Admin Officer','Y',2,'kinjal','2020-07-20 16:15:50',NULL,NULL),(58,'Jr. Executive','Y',1,'kinjal','2020-07-21 17:06:56',NULL,NULL),(59,'Fire Man','Y',1,'kinjal','2020-12-23 12:26:57',NULL,NULL),(60,'Housekeeper','Y',1,'kinjal','2021-05-20 17:43:49',NULL,NULL);
/*!40000 ALTER TABLE `job_title_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `kit_master_detail`
--

DROP TABLE IF EXISTS `kit_master_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `kit_master_detail` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `kit_id` int(11) NOT NULL,
  `product_code` varchar(100) NOT NULL,
  `drug_id` int(11) NOT NULL,
  `product_qty` int(11) NOT NULL,
  `CreatedBy` varchar(50) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(50) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `kit_master_detail`
--

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

--
-- Table structure for table `kit_master_header`
--

DROP TABLE IF EXISTS `kit_master_header`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `kit_master_header` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `kit_id` int(11) NOT NULL AUTO_INCREMENT,
  `kit_name` varchar(200) NOT NULL,
  `kit_type` enum('PHA','GEN') NOT NULL DEFAULT 'PHA' COMMENT 'Kit for pharamcy or general store',
  `CreatedBy` varchar(50) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(50) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`kit_id`),
  UNIQUE KEY `kit_name` (`company_id`,`branch_id`,`kit_name`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `kit_master_header`
--

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

--
-- Table structure for table `kpi_information`
--

DROP TABLE IF EXISTS `kpi_information`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `kpi_information` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `kpi` varchar(50) NOT NULL,
  `abbrev` varchar(5) NOT NULL,
  `defination` text NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `kpi` (`kpi`,`abbrev`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `kpi_information`
--

LOCK TABLES `kpi_information` WRITE;
/*!40000 ALTER TABLE `kpi_information` DISABLE KEYS */;
INSERT INTO `kpi_information` VALUES (1,'Bed Occupancy Rate','BOR','Bed Occupancy Rate is the percentage of bed occupied by patients out of total bed in the hospital for a given period','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(2,'Average Length Of Stay','ALOS','Average Length of Stay is the average period (in days) in hospital per patient admitted','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(3,'Bed Turn Over Interval','BTOI','Bed Turnover interval is the average length of time (in days) that elapses between the discharge of one inpatient and the admission of the next inpatient to the same bed at specialty level/significant facility, over any period of time.','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(4,'Daily Average OP Attendance','DAOA','Daily Average OP Attendance is the daily average of the OP patient for a given period','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(5,'Average OP Attendance Per Patient','AOAPP','Average OP Attendance per Patient is number of times (average) same or old patient visiting during the given period (i.e. ration of Total OP Patient and New OP Patient) ','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(6,'Average Revenue Per Occupied Bed','ARPOB','Average Revenue Per Occupied Bed is Avarage of Inpatient Revenue and Occupied Bed Days','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `kpi_information` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lab_request`
--

DROP TABLE IF EXISTS `lab_request`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lab_request` (
  `lab_req_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `test_id` int(11) NOT NULL,
  `service_req_id` int(11) NOT NULL,
  `fyear` int(11) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `req_date` date NOT NULL,
  `req_time` time NOT NULL,
  `opd_reg_id` bigint(20) NOT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `service_cd` varchar(8) NOT NULL,
  `test_grp_cd` varchar(10) NOT NULL,
  `doctor_id` int(11) NOT NULL COMMENT 'pathologist doctor id',
  `request_division` enum('W','I','O','P') NOT NULL COMMENT 'I-IP Bill, O-OP BIll, W-Ward,P - IP Patient Care',
  `remark` text NOT NULL,
  `flag` enum('R','U','D','P') NOT NULL DEFAULT 'R',
  `is_approved` enum('Y','N') NOT NULL DEFAULT 'N',
  `approved_by` varchar(20) NOT NULL,
  `approved_datetime` datetime NOT NULL,
  `print_datetime` datetime NOT NULL,
  `is_mail_sent` enum('N','Y') NOT NULL DEFAULT 'N',
  `is_whatsapp_msg_sent` enum('Y','N') NOT NULL DEFAULT 'N',
  `sample_collectedBy` varchar(50) NOT NULL,
  `sample_Datetime` datetime NOT NULL,
  `CreatedBy` varchar(20) DEFAULT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`lab_req_id`),
  KEY `req_date` (`req_date`),
  KEY `test_id` (`test_id`),
  KEY `flag` (`flag`),
  KEY `fyear` (`fyear`)
) ENGINE=InnoDB AUTO_INCREMENT=132 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lab_request`
--

LOCK TABLES `lab_request` WRITE;
/*!40000 ALTER TABLE `lab_request` DISABLE KEYS */;
INSERT INTO `lab_request` VALUES (1,0,0,1,163,2526,121,'2025-10-08','18:11:47',110,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-08 18:11:47','','0000-00-00 00:00:00'),(2,0,0,2,164,2526,120,'2025-10-08','18:12:16',109,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-08 18:12:16','','0000-00-00 00:00:00'),(3,0,0,3,233,2526,162,'2025-10-09','09:12:55',149,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','shweta','2025-10-09 09:12:55','','0000-00-00 00:00:00'),(4,0,0,4,264,2526,163,'2025-10-09','11:02:48',150,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-10-09 11:02:48','','0000-00-00 00:00:00'),(5,0,0,5,271,2526,188,'2025-10-09','11:04:14',172,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-09 11:04:14','','0000-00-00 00:00:00'),(6,0,0,6,278,2526,171,'2025-10-09','11:19:35',155,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-09 11:19:35','','0000-00-00 00:00:00'),(7,0,0,7,286,2526,198,'2025-10-09','11:30:46',181,0,'LAB0817','68',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-10-09 11:30:46','','0000-00-00 00:00:00'),(8,0,0,8,458,2526,327,'2025-10-10','11:51:42',295,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-10-10 11:51:42','','0000-00-00 00:00:00'),(9,0,0,9,476,2526,338,'2025-10-10','12:58:31',306,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-10 12:58:31','','0000-00-00 00:00:00'),(10,0,0,10,495,2526,345,'2025-10-10','14:01:28',313,0,'LAB0817','68',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-10-10 14:01:28','','0000-00-00 00:00:00'),(11,0,0,11,534,2526,380,'2025-10-10','17:54:59',346,0,'LAB0817','68',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-10-10 17:54:59','','0000-00-00 00:00:00'),(12,0,0,12,866,2526,454,'2025-10-11','11:37:46',403,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-10-11 11:37:46','','0000-00-00 00:00:00'),(13,0,0,13,940,2526,476,'2025-10-11','13:03:58',373,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-10-11 13:03:58','','0000-00-00 00:00:00'),(14,0,0,14,1713,2526,549,'2025-10-13','11:10:55',474,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-10-13 11:10:55','','0000-00-00 00:00:00'),(15,0,0,15,1735,2526,563,'2025-10-13','11:36:43',487,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-10-13 11:36:43','','0000-00-00 00:00:00'),(16,0,0,16,1750,2526,567,'2025-10-13','11:47:47',490,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-13 11:47:47','','0000-00-00 00:00:00'),(17,0,0,17,1814,2526,592,'2025-10-13','13:08:42',514,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','manshi','2025-10-13 13:08:42','','0000-00-00 00:00:00'),(18,0,0,18,2006,2526,644,'2025-10-13','18:48:19',555,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-13 18:48:19','','0000-00-00 00:00:00'),(19,0,0,19,2263,2526,677,'2025-10-14','08:52:23',577,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','shweta','2025-10-14 08:52:23','','0000-00-00 00:00:00'),(20,0,0,20,2268,2526,678,'2025-10-14','08:54:48',578,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','shweta','2025-10-14 08:54:48','','0000-00-00 00:00:00'),(21,0,0,21,2279,2526,681,'2025-10-14','09:00:09',581,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','shweta','2025-10-14 09:00:09','','0000-00-00 00:00:00'),(22,0,0,22,2452,2526,723,'2025-10-14','12:54:21',616,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-10-14 12:54:21','','0000-00-00 00:00:00'),(23,0,0,23,2587,2526,804,'2025-10-15','09:13:09',685,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','priyanshi','2025-10-15 09:13:09','','0000-00-00 00:00:00'),(24,0,0,24,2594,2526,807,'2025-10-15','09:15:48',688,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','priyanshi','2025-10-15 09:15:48','','0000-00-00 00:00:00'),(25,0,0,25,2607,2526,812,'2025-10-15','09:39:52',181,0,'LAB0817','68',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','priyanshi','2025-10-15 09:39:52','','0000-00-00 00:00:00'),(26,0,0,26,2848,2526,893,'2025-10-15','18:22:01',757,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-15 18:22:01','','0000-00-00 00:00:00'),(27,0,0,27,2866,2526,910,'2025-10-15','18:40:09',769,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-15 18:40:09','','0000-00-00 00:00:00'),(28,0,0,28,3155,2526,1029,'2025-10-16','18:39:05',870,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-16 18:39:05','','0000-00-00 00:00:00'),(29,0,0,29,3170,2526,1055,'2025-10-16','18:57:32',890,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-16 18:57:32','','0000-00-00 00:00:00'),(30,0,0,30,3337,2526,1126,'2025-10-17','12:18:28',946,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-17 12:18:28','','0000-00-00 00:00:00'),(31,0,0,31,3610,2526,1191,'2025-10-17','18:49:03',992,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-10-17 18:49:03','','0000-00-00 00:00:00'),(32,0,0,32,3678,2526,1226,'2025-10-18','10:34:07',191,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-18 10:34:07','','0000-00-00 00:00:00'),(33,0,0,33,4210,2526,1306,'2025-10-23','11:54:42',1072,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','shweta','2025-10-23 11:54:42','','0000-00-00 00:00:00'),(34,0,0,34,4216,2526,1307,'2025-10-23','11:58:37',1073,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','shweta','2025-10-23 11:58:37','','0000-00-00 00:00:00'),(35,0,0,35,4230,2526,1311,'2025-10-23','12:08:22',1077,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-10-23 12:08:22','','0000-00-00 00:00:00'),(36,0,0,36,4244,2526,1316,'2025-10-23','12:22:31',1081,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-10-23 12:22:31','','0000-00-00 00:00:00'),(37,0,0,37,4316,2526,1332,'2025-10-23','12:50:47',1090,0,'LAB0817','68',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','shweta','2025-10-23 12:50:47','','0000-00-00 00:00:00'),(38,0,0,38,4443,2526,1346,'2025-10-23','17:45:18',1100,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-10-23 17:45:18','','0000-00-00 00:00:00'),(39,0,0,39,4489,2526,1353,'2025-10-23','18:48:11',1106,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-10-23 18:48:11','','0000-00-00 00:00:00'),(40,0,0,40,4509,2526,1359,'2025-10-23','19:09:32',1110,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-10-23 19:09:32','','0000-00-00 00:00:00'),(41,0,0,41,4514,2526,1361,'2025-10-23','19:15:15',1112,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-10-23 19:15:15','','0000-00-00 00:00:00'),(42,0,0,42,4652,2526,1429,'2025-10-24','18:48:53',1156,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-10-24 18:48:53','','0000-00-00 00:00:00'),(43,0,0,43,5004,2526,1511,'2025-10-27','09:03:47',1216,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-10-27 09:03:47','','0000-00-00 00:00:00'),(44,0,0,44,5518,2526,1713,'2025-10-28','12:40:43',1363,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-28 12:40:43','','0000-00-00 00:00:00'),(45,0,0,45,5612,2526,1741,'2025-10-28','18:04:10',1384,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-28 18:04:10','','0000-00-00 00:00:00'),(46,0,0,46,5615,2526,1742,'2025-10-28','18:04:29',1385,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-28 18:04:29','','0000-00-00 00:00:00'),(47,0,0,47,5627,2526,1732,'2025-10-28','18:25:11',1375,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-28 18:25:11','','0000-00-00 00:00:00'),(48,0,0,48,5640,2526,1768,'2025-10-28','19:01:40',1405,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-28 19:01:40','','0000-00-00 00:00:00'),(49,0,0,49,5648,2526,1769,'2025-10-28','19:38:52',1406,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-28 19:38:52','','0000-00-00 00:00:00'),(50,0,0,50,5668,2526,1779,'2025-10-29','08:59:20',1413,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-10-29 08:59:20','','0000-00-00 00:00:00'),(51,0,0,51,5673,2526,1780,'2025-10-29','09:02:18',1414,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-10-29 09:02:18','','0000-00-00 00:00:00'),(52,0,0,52,5795,2526,1807,'2025-10-29','11:48:17',400,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-10-29 11:48:17','','0000-00-00 00:00:00'),(53,0,0,53,5957,2526,1885,'2025-10-30','09:07:08',1499,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-10-30 09:07:08','','0000-00-00 00:00:00'),(54,0,0,54,6083,2526,1917,'2025-10-30','12:16:09',1520,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-10-30 12:16:09','','0000-00-00 00:00:00'),(55,0,0,55,6353,2526,2058,'2025-10-31','13:28:17',1630,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-31 13:28:17','','0000-00-00 00:00:00'),(56,0,0,56,6482,2526,2096,'2025-10-31','18:12:23',1658,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-31 18:12:23','','0000-00-00 00:00:00'),(57,0,0,57,6524,2526,2114,'2025-10-31','18:37:54',1667,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-31 18:37:54','','0000-00-00 00:00:00'),(58,0,0,58,6536,2526,2116,'2025-10-31','18:56:45',1668,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-10-31 18:56:45','','0000-00-00 00:00:00'),(59,0,0,59,6611,2526,2161,'2025-11-01','10:58:44',1702,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-11-01 10:58:44','','0000-00-00 00:00:00'),(60,0,0,60,6688,2526,2194,'2025-11-01','12:35:52',1728,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-11-01 12:35:52','','0000-00-00 00:00:00'),(61,0,0,61,6689,2526,2194,'2025-11-01','12:35:56',1728,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-11-01 12:35:56','','0000-00-00 00:00:00'),(62,0,0,62,6992,2526,2266,'2025-11-03','11:23:49',1776,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','shweta','2025-11-03 11:23:49','','0000-00-00 00:00:00'),(63,0,0,63,7153,2526,2351,'2025-11-03','19:30:23',1838,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-11-03 19:30:23','','0000-00-00 00:00:00'),(64,0,0,64,7349,2526,2410,'2025-11-04','18:07:43',1883,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-11-04 18:07:43','','0000-00-00 00:00:00'),(65,0,0,65,7437,2526,2449,'2025-11-05','11:19:47',1904,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-11-05 11:19:47','','0000-00-00 00:00:00'),(66,0,0,66,7583,2526,2549,'2025-11-05','19:39:53',110,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-11-05 19:39:53','','0000-00-00 00:00:00'),(67,0,0,67,7584,2526,2548,'2025-11-05','19:40:01',109,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-11-05 19:40:01','','0000-00-00 00:00:00'),(68,0,0,68,7649,2526,2569,'2025-11-06','11:12:43',861,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-11-06 11:12:43','','0000-00-00 00:00:00'),(69,0,0,69,8385,2526,2809,'2025-11-08','19:51:02',2146,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-11-08 19:51:02','','0000-00-00 00:00:00'),(70,0,0,70,8426,2526,2813,'2025-11-09','11:59:34',2148,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-11-09 11:59:34','','0000-00-00 00:00:00'),(71,0,0,71,8645,2526,2921,'2025-11-11','09:23:53',2022,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-11-11 09:23:53','','0000-00-00 00:00:00'),(72,0,0,72,8857,2526,3020,'2025-11-11','18:56:24',2262,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-11-11 18:56:24','','0000-00-00 00:00:00'),(73,0,0,73,8882,2526,3056,'2025-11-12','08:49:42',2287,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-11-12 08:49:42','','0000-00-00 00:00:00'),(74,0,0,74,9301,2526,3224,'2025-11-13','13:54:09',2401,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','priyanshi','2025-11-13 13:54:09','','0000-00-00 00:00:00'),(75,0,0,75,9356,2526,3264,'2025-11-13','18:36:58',2427,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','priyanshi','2025-11-13 18:36:58','','0000-00-00 00:00:00'),(76,0,0,76,9514,2526,3349,'2025-11-14','14:28:32',2447,0,'LAB0817','68',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','shweta','2025-11-14 14:28:32','','0000-00-00 00:00:00'),(77,0,0,77,9924,2526,3478,'2025-11-17','09:42:09',2554,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-11-17 09:42:09','','0000-00-00 00:00:00'),(78,0,0,78,10145,2526,3554,'2025-11-18','09:09:22',2591,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-11-18 09:09:22','','0000-00-00 00:00:00'),(79,0,0,79,10710,2526,3781,'2025-11-20','11:13:05',2723,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-11-20 11:13:05','','0000-00-00 00:00:00'),(80,0,0,80,10746,2526,3760,'2025-11-20','11:35:20',2707,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-11-20 11:35:20','','0000-00-00 00:00:00'),(81,0,0,81,11075,2526,3908,'2025-11-21','14:10:54',1585,0,'LAB0817','68',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-11-21 14:10:54','','0000-00-00 00:00:00'),(82,0,0,82,11505,2526,4016,'2025-11-23','12:33:43',2862,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-11-23 12:33:43','','0000-00-00 00:00:00'),(83,0,0,83,11593,2526,4022,'2025-11-24','09:22:39',2864,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-11-24 09:22:39','','0000-00-00 00:00:00'),(84,0,0,84,12196,2526,4156,'2025-11-25','08:48:19',2941,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-11-25 08:48:19','','0000-00-00 00:00:00'),(85,0,0,85,12787,2526,4319,'2025-11-26','18:17:11',3038,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-11-26 18:17:11','','0000-00-00 00:00:00'),(86,0,0,86,12993,2526,4390,'2025-11-27','11:24:49',3086,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-11-27 11:24:49','','0000-00-00 00:00:00'),(87,0,0,87,13054,2526,4398,'2025-11-27','12:22:10',3090,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-11-27 12:22:10','','0000-00-00 00:00:00'),(88,0,0,88,13224,2526,4425,'2025-11-27','18:21:24',3104,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-11-27 18:21:24','','0000-00-00 00:00:00'),(89,0,0,89,13225,2526,4426,'2025-11-27','18:21:52',3105,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-11-27 18:21:52','','0000-00-00 00:00:00'),(90,0,0,90,13287,2526,4470,'2025-11-28','08:52:37',3128,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-11-28 08:52:37','','0000-00-00 00:00:00'),(91,0,0,91,13375,2526,4502,'2025-11-28','11:58:38',3144,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-11-28 11:58:38','','0000-00-00 00:00:00'),(92,0,0,92,13427,2526,4534,'2025-11-28','14:25:40',3168,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-11-28 14:25:40','','0000-00-00 00:00:00'),(93,0,0,93,13576,2526,4573,'2025-11-28','18:33:59',110,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-11-28 18:33:59','','0000-00-00 00:00:00'),(94,0,0,94,13899,2526,4692,'2025-11-30','12:05:37',3262,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-11-30 12:05:37','','0000-00-00 00:00:00'),(95,0,0,95,14053,2526,4699,'2025-12-01','09:26:52',3266,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-12-01 09:26:52','','0000-00-00 00:00:00'),(96,0,0,96,14208,2526,4769,'2025-12-01','13:16:34',1781,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-12-01 13:16:34','','0000-00-00 00:00:00'),(97,0,0,97,14721,2526,4945,'2025-12-02','18:21:00',3397,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-12-02 18:21:00','','0000-00-00 00:00:00'),(98,0,0,98,14846,2526,4979,'2025-12-03','11:13:29',3415,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-12-03 11:13:29','','0000-00-00 00:00:00'),(99,0,0,99,14882,2526,5011,'2025-12-03','11:56:16',3432,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-12-03 11:56:16','','0000-00-00 00:00:00'),(100,0,0,100,14950,2526,5041,'2025-12-03','16:31:06',3447,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-12-03 16:31:06','','0000-00-00 00:00:00'),(101,0,0,101,15047,2526,5095,'2025-12-03','19:13:18',3487,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-12-03 19:13:18','','0000-00-00 00:00:00'),(102,0,0,102,15136,2526,5108,'2025-12-04','08:42:34',3494,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-12-04 08:42:34','','0000-00-00 00:00:00'),(103,0,0,103,15203,2526,5112,'2025-12-04','11:19:15',3497,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-12-04 11:19:15','','0000-00-00 00:00:00'),(104,0,0,104,15402,2526,5189,'2025-12-04','18:25:32',3542,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-12-04 18:25:32','','0000-00-00 00:00:00'),(105,0,0,105,15426,2526,5192,'2025-12-04','18:34:44',3018,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-12-04 18:34:44','','0000-00-00 00:00:00'),(106,0,0,106,15444,2526,5201,'2025-12-04','19:07:52',3546,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-12-04 19:07:52','','0000-00-00 00:00:00'),(107,0,0,107,15467,2526,5216,'2025-12-05','08:40:40',3553,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-12-05 08:40:40','','0000-00-00 00:00:00'),(108,0,0,108,15913,2526,5387,'2025-12-06','12:33:20',3638,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-12-06 12:33:20','','0000-00-00 00:00:00'),(109,0,0,109,15927,2526,5398,'2025-12-06','13:09:42',3646,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-12-06 13:09:42','','0000-00-00 00:00:00'),(110,0,0,110,16183,2526,5436,'2025-12-08','09:00:03',3668,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-12-08 09:00:03','','0000-00-00 00:00:00'),(111,0,0,111,16191,2526,5438,'2025-12-08','09:05:12',3670,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-12-08 09:05:12','','0000-00-00 00:00:00'),(112,0,0,112,17129,2526,5742,'2025-12-10','10:30:08',3839,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-12-10 10:30:08','','0000-00-00 00:00:00'),(113,0,0,113,17269,2526,5798,'2025-12-10','15:01:04',3873,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-12-10 15:01:04','','0000-00-00 00:00:00'),(114,0,0,114,17741,2526,5935,'2025-12-11','19:25:19',1658,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-12-11 19:25:19','','0000-00-00 00:00:00'),(115,0,0,115,17781,2526,5950,'2025-12-12','08:40:31',3961,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-12-12 08:40:31','','0000-00-00 00:00:00'),(116,0,0,116,17962,2526,6030,'2025-12-12','18:16:19',306,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-12-12 18:16:19','','0000-00-00 00:00:00'),(117,0,0,117,18034,2526,6066,'2025-12-12','20:29:13',4022,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','priyanshi','2025-12-12 20:29:13','','0000-00-00 00:00:00'),(118,0,0,118,18046,2526,6067,'2025-12-13','08:39:18',4023,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-12-13 08:39:18','','0000-00-00 00:00:00'),(119,0,0,119,18433,2526,6171,'2025-12-15','09:17:27',4067,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-12-15 09:17:27','','0000-00-00 00:00:00'),(120,0,0,120,18576,2526,6255,'2025-12-15','13:32:01',4113,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','urvashi','2025-12-15 13:32:01','','0000-00-00 00:00:00'),(121,0,0,121,18828,2526,6370,'2025-12-16','11:45:16',4168,0,'LAB0446','1012',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','drashti','2025-12-16 11:45:16','','0000-00-00 00:00:00'),(122,0,0,122,19149,2526,6480,'2025-12-17','11:22:51',4224,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','shweta','2025-12-17 11:22:51','','0000-00-00 00:00:00'),(123,0,0,123,19590,2526,6680,'2025-12-18','18:58:13',4330,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-12-18 18:58:13','','0000-00-00 00:00:00'),(124,0,0,124,19669,2526,6708,'2025-12-19','08:53:32',4339,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-12-19 08:53:32','','0000-00-00 00:00:00'),(125,0,0,125,19971,2526,6845,'2025-12-20','08:50:53',4398,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','priyanshi','2025-12-20 08:50:53','','0000-00-00 00:00:00'),(126,0,0,126,20011,2526,6855,'2025-12-20','11:18:17',4404,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','priyanshi','2025-12-20 11:18:17','','0000-00-00 00:00:00'),(127,0,0,127,20054,2526,6875,'2025-12-20','12:42:19',4418,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-12-20 12:42:19','','0000-00-00 00:00:00'),(128,0,0,128,20275,2526,6902,'2025-12-22','09:10:13',4433,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-12-22 09:10:13','','0000-00-00 00:00:00'),(129,0,0,129,20283,2526,6904,'2025-12-22','09:14:18',4434,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-12-22 09:14:18','','0000-00-00 00:00:00'),(130,0,0,130,20288,2526,6905,'2025-12-22','09:17:22',3755,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','reception','2025-12-22 09:17:22','','0000-00-00 00:00:00'),(131,0,0,131,20360,2526,6941,'2025-12-22','10:56:47',4454,0,'LAB0792','45',0,'O','','R','N','','0000-00-00 00:00:00','0000-00-00 00:00:00','N','N','','0000-00-00 00:00:00','janvi','2025-12-22 10:56:47','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `lab_request` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `languages`
--

DROP TABLE IF EXISTS `languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `languages` (
  `company_id` tinyint(4) NOT NULL,
  `language_tag` varchar(10) NOT NULL COMMENT 'BCP 47 language tag',
  `patient_language_YN` enum('Y','N') NOT NULL DEFAULT 'N',
  `patient_language_code` varchar(6) NOT NULL,
  `language_seq_op` varchar(3) NOT NULL,
  `language` varchar(50) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  PRIMARY KEY (`company_id`,`language_tag`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `languages`
--

LOCK TABLES `languages` WRITE;
/*!40000 ALTER TABLE `languages` DISABLE KEYS */;
INSERT INTO `languages` VALUES (0,'ar-IN','N','ARA','99','Arabic','N'),(0,'bn-IN','N','BAN','99','Bangla','N'),(0,'en-IN','Y','ENG','3','English (India)','Y'),(0,'gu-IN','Y','GUJ','1','Gujarati','Y'),(0,'hi-IN','Y','HIN','2','Hindi','Y'),(0,'kn-IN','N','KAN','99','Kannada','N'),(0,'kok-IN','N','KON','99','Konkani','N'),(0,'ks-IN','N','KAS','99','Kashmiri','N'),(0,'ml-IN','N','MAL','99','Malayalam','N'),(0,'mr-IN','N','MAR','99','Marathi','N'),(0,'ne-IN','N','NEP','99','Nepali','N'),(0,'or-IN','N','ODI','99','Odia','N'),(0,'pa-IN','N','PUN','99','Punjabi','N'),(0,'pa_Arab-IN','N','PUA','99','Punjabi (Arabic)','N'),(0,'sd-IN','N','SIN','99','Sindhi','N'),(0,'ta-IN','N','TAM','99','Tamil','N'),(0,'te-IN','N','TEL','99','Telugu','N'),(0,'ur-IN','N','URD','99','Urdu','N');
/*!40000 ALTER TABLE `languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `last_transaction_number`
--

DROP TABLE IF EXISTS `last_transaction_number`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `last_transaction_number` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `trn_type` char(8) NOT NULL,
  `business_entity_code` char(6) NOT NULL,
  `trn_fyear` smallint(6) NOT NULL,
  `trn_id` int(11) NOT NULL COMMENT 'Stores last transaction number for given fyear and type',
  PRIMARY KEY (`company_id`,`branch_id`,`trn_type`,`business_entity_code`,`trn_fyear`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `last_transaction_number`
--

LOCK TABLES `last_transaction_number` WRITE;
/*!40000 ALTER TABLE `last_transaction_number` DISABLE KEYS */;
INSERT INTO `last_transaction_number` VALUES (0,0,'A','',1819,1),(0,0,'CC','',1819,1),(0,0,'CN','',1819,0),(0,0,'CN','',1920,0),(0,0,'CSN','',2021,0),(0,0,'CSNR','',2021,0),(0,0,'DC','',2021,0),(0,0,'DCR','',2021,0),(0,0,'DRBILL','',2223,0),(0,0,'DRBILL','',2526,332),(0,0,'DT','',2324,0),(0,0,'EX','',2021,0),(0,0,'GA','',1819,0),(0,0,'GAT_NO','',2122,0),(0,0,'GCR','',2223,0),(0,0,'GIN','',1819,0),(0,0,'GINR','',1819,0),(0,0,'GPV','',0,0),(0,0,'GRN','',1819,0),(0,0,'GRNR','',1819,0),(0,0,'GRRN','',1819,0),(0,0,'GTTS','',1819,0),(0,0,'I','',1819,0),(0,0,'IPBILL','',2223,0),(0,0,'IPBILL','',2526,316),(0,0,'IPREG','',1819,329),(0,0,'IR','',1819,0),(0,0,'LABBIL','',1920,0),(0,0,'LABIPB','',2324,0),(0,0,'LINEN','',2122,0),(0,0,'LN_EOL','',2021,0),(0,0,'LN_Gat','',2021,0),(0,0,'LN_IL','',2021,0),(0,0,'LN_IW','',2021,0),(0,0,'LN_RL','',2021,0),(0,0,'LN_RW','',2021,0),(0,0,'MIPBIL','',2324,0),(0,0,'MOPBIL','',2324,0),(0,0,'MR','',2021,0),(0,0,'OPBILL','',0,0),(0,0,'OPBILL','',2223,0),(0,0,'OPBILL','',2526,7900),(0,0,'OPREG','',2223,4567),(0,0,'P','',1819,0),(0,0,'PEX','',2021,0),(0,0,'PHR','',0,0),(0,0,'PO','H',2021,0),(0,0,'PO','IP',2021,0),(0,0,'PO','P',2021,0),(0,0,'PPV','',0,0),(0,0,'PR','',1819,0),(0,0,'RCPTNO','',2223,0),(0,0,'RCPTNO','',2526,8756),(0,0,'S','',1819,0),(0,0,'TESTID','',2122,131),(0,0,'TRF','',2122,0);
/*!40000 ALTER TABLE `last_transaction_number` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `last_transaction_number_datewise`
--

DROP TABLE IF EXISTS `last_transaction_number_datewise`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `last_transaction_number_datewise` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `trn_type` char(8) NOT NULL,
  `business_entity_code` char(6) NOT NULL,
  `trn_date` date NOT NULL,
  `trn_id` bigint(20) NOT NULL COMMENT 'Stores last transaction number for given date (yyyymmdd0001)',
  PRIMARY KEY (`company_id`,`branch_id`,`trn_type`,`business_entity_code`,`trn_date`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `last_transaction_number_datewise`
--

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

--
-- Table structure for table `leave_configuration`
--

DROP TABLE IF EXISTS `leave_configuration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `leave_configuration` (
  `leave_configuration_id` int(11) NOT NULL AUTO_INCREMENT,
  `leave_type_id` tinyint(2) NOT NULL,
  `leave_entitlement` int(11) NOT NULL,
  `leave_effective_from` date NOT NULL,
  `created_by` varchar(15) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  `temp` int(5) NOT NULL,
  PRIMARY KEY (`leave_configuration_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `leave_configuration`
--

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

--
-- Table structure for table `leave_entitlement_monthly`
--

DROP TABLE IF EXISTS `leave_entitlement_monthly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `leave_entitlement_monthly` (
  `leave_entitlement_monthly_id` int(11) NOT NULL AUTO_INCREMENT,
  `employee_id` int(11) NOT NULL,
  `leave_month` date NOT NULL,
  `leave_type_id` tinyint(1) NOT NULL,
  `op_balance` float NOT NULL,
  `new_leaves` float NOT NULL,
  `leave_taken` float NOT NULL,
  `cl_balance` float NOT NULL,
  `entitlement_laps` float NOT NULL COMMENT 'The opening balance is calculated after reducing these laps days. So, it is for information. ',
  `data_type` enum('C','A') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'C' COMMENT 'C means Calculated\r\nA means Added',
  `lastmodified_by` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `lastmodified_date` datetime NOT NULL,
  PRIMARY KEY (`leave_entitlement_monthly_id`),
  KEY `leave_month` (`leave_month`),
  KEY `employee_id` (`employee_id`,`leave_type_id`,`leave_month`) USING BTREE,
  KEY `leave_month_2` (`leave_month`),
  KEY `employee_id_2` (`employee_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `leave_entitlement_monthly`
--

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

--
-- Table structure for table `leave_period`
--

DROP TABLE IF EXISTS `leave_period`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `leave_period` (
  `id` tinyint(1) NOT NULL,
  `start_day` tinyint(4) NOT NULL,
  `start_month` tinyint(4) NOT NULL,
  `leave_month_start_date` tinyint(4) NOT NULL DEFAULT '1',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `FK_leave_period_createduser` (`created_by`),
  KEY `FK_leave_period_lastmodifieduser` (`lastmodified_by`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `leave_period`
--

LOCK TABLES `leave_period` WRITE;
/*!40000 ALTER TABLE `leave_period` DISABLE KEYS */;
INSERT INTO `leave_period` VALUES (1,1,1,1,'thims','2024-07-10 05:52:52',NULL,NULL);
/*!40000 ALTER TABLE `leave_period` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `leave_rules`
--

DROP TABLE IF EXISTS `leave_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `leave_rules` (
  `rule_id` int(11) NOT NULL AUTO_INCREMENT,
  `leave_type_id` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Enter like CTC,per_hour,stipend',
  `salary_type_id` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `leave_short_code` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `category` varchar(15) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'We are not using this column. (7-9-23)',
  `gender` enum('M','F','A') COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'M-Male, F-Female, A- All',
  `matirial_status` enum('S','M','A') COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'S-Single, M-Married, A-All. Default All.',
  `count_per_year` int(11) NOT NULL COMMENT 'Number of leaves given per year',
  `accrual_flag` enum('Y','N') COLLATE utf8_unicode_ci NOT NULL COMMENT 'Y - Leave accrual to be allowed.Balance maintained when Y',
  `accrue_from` enum('DOJ','DOC') COLLATE utf8_unicode_ci NOT NULL COMMENT 'Whether accrual to be done as per joining or as per confirmation. Accrual will not happen in emplpoyee not conformed for DOC.',
  `accrue_frequency` enum('M','Y') COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'M-Monthy, Y-Yearly',
  `accrue_frequency_when` enum('LP','J') COLLATE utf8_unicode_ci DEFAULT 'LP' COMMENT 'When yearly whether to accrue as per leave year or as per year based on joining month.',
  `accrre_when` enum('S','E') COLLATE utf8_unicode_ci NOT NULL,
  `accrue_days` int(11) NOT NULL COMMENT 'Number of leaves to be added per year',
  `accrue_frequency_year1` enum('M','Y') COLLATE utf8_unicode_ci NOT NULL COMMENT 'Accrue frequency in the 1st year of employee joining.',
  `accrre_when_year1` enum('S','E') COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Start of End of frequency in the 1st year of employee joining',
  `accrue_days_year1` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Number of days to be accrued in the 1st year of joining',
  `accrue_days_apply_year1` enum('F','Q','M','H','E') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'M' COMMENT 'This column is used to apply accrue days for first year and applicable only when the accrual is yearly. F means Full Q means quarterly H means Half Year M means Monthly and E means Manual Entry',
  `carry_limit` int(11) NOT NULL COMMENT 'Limit for carry forward the balance in the next year / Month(leave year or joining year in case of year)',
  `carry_forward` enum('M','Y') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Y' COMMENT 'Whether carry forward to happen every month or every year. ',
  `encash_limit` int(11) NOT NULL COMMENT 'Limit for encashing the balance. if 0 then encashment not allowed.',
  `allowed_in_probation` enum('Y','N') COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Whether leaves can be allowed in probation period?',
  `Allowed_ater_months` int(11) NOT NULL COMMENT 'After how many months, the leaves can be taken after joining',
  `week_days_between_leaves` enum('I','E') COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Whether weekends between leaves to be included as leaves or excluded?',
  `holidays_between_leaves` enum('I','E') COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Whether holidays falling in between the consecutive leaves included as leaves or excluded?',
  `maximum_in_month` int(11) NOT NULL COMMENT 'Maximum number of leaves allowed in one calendar month.',
  `cont_days_allowed_Minimum` int(11) NOT NULL COMMENT 'Minimum how many continuous days of leaves allowed. ',
  `cont_days_allowed_Maximum` int(11) NOT NULL COMMENT 'Maximum how many continuous days of leaves allowed. ',
  `advance_allowed` enum('Y','N') COLLATE utf8_unicode_ci NOT NULL COMMENT 'Can the leave be applied in advance if there is no balance?',
  `backdated_upto_days` int(11) NOT NULL COMMENT 'Maximum how many days backdated leaves allowed?',
  `partial_days_allowed` enum('Y','N') COLLATE utf8_unicode_ci NOT NULL COMMENT 'Half day allowed for this leave type?',
  `CreatedBy` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`rule_id`),
  UNIQUE KEY `leave_type_id` (`leave_type_id`,`category`,`gender`,`matirial_status`),
  KEY `accrual_flag` (`accrual_flag`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `leave_rules`
--

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

--
-- Table structure for table `leave_type_master`
--

DROP TABLE IF EXISTS `leave_type_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `leave_type_master` (
  `leave_type_id` tinyint(4) NOT NULL AUTO_INCREMENT,
  `leave_type_name` varchar(30) NOT NULL,
  `Code` varchar(4) NOT NULL,
  `leave_type_is_situational` enum('Y','N') NOT NULL DEFAULT 'N',
  `leave_type_is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`leave_type_id`),
  UNIQUE KEY `leave_type_name` (`leave_type_name`),
  KEY `FK_leavetype_created_user` (`created_by`),
  KEY `FK_leavetype_lastmodified_user` (`lastmodified_by`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `leave_type_master`
--

LOCK TABLES `leave_type_master` WRITE;
/*!40000 ALTER TABLE `leave_type_master` DISABLE KEYS */;
INSERT INTO `leave_type_master` VALUES (1,'Lop','','N','Y','thims','2019-02-26 18:01:28',NULL,NULL),(2,'Compensatory Off','','Y','Y','kinjal','2019-02-27 15:08:50',NULL,NULL),(3,'Optional','','Y','Y','kinjal','2019-02-27 15:09:14',NULL,NULL),(4,'PL','','N','Y','kinjal','2019-05-23 14:29:18','thims','2019-06-13 00:00:00'),(5,'CL','','N','Y','thims','2019-06-13 00:00:00',NULL,NULL),(6,'SL','','N','Y','thims','2019-06-13 00:00:00',NULL,NULL);
/*!40000 ALTER TABLE `leave_type_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lis_instrument_code_mapping`
--

DROP TABLE IF EXISTS `lis_instrument_code_mapping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lis_instrument_code_mapping` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `LIS_Code` varchar(10) NOT NULL,
  `instrument_name` varchar(50) NOT NULL,
  `Instrument_Code` varchar(50) NOT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) NOT NULL,
  `lastmodified_date` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lis_instrument_code_mapping`
--

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

--
-- Table structure for table `ln_transaction_detail`
--

DROP TABLE IF EXISTS `ln_transaction_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ln_transaction_detail` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `Trn_FYear` varchar(10) NOT NULL,
  `Trn_Type` varchar(6) NOT NULL,
  `Trn_No` int(11) NOT NULL,
  `Trn_No_Sr_No` int(11) NOT NULL,
  `Product_ID` int(11) NOT NULL,
  `Product_Batch` varchar(40) NOT NULL,
  `Trn_Qty` int(11) NOT NULL,
  `Ret_Qty` int(11) NOT NULL,
  `Trn_Cr_Db` char(1) NOT NULL,
  `Trn_Remark` varchar(25) NOT NULL,
  `Created_By` varchar(10) NOT NULL,
  `Created_Date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `Last_Modified_By` varchar(10) NOT NULL,
  `Last_Modified_Date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ln_transaction_detail`
--

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

--
-- Table structure for table `manufacturer_master`
--

DROP TABLE IF EXISTS `manufacturer_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `manufacturer_master` (
  `company_id` tinyint(4) NOT NULL,
  `manufacturer_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  `manufacturer_code` varchar(10) DEFAULT NULL COMMENT 'Short name or abbreviation',
  `manufacturer_name` varchar(50) NOT NULL,
  `manufacturer_email` varchar(50) DEFAULT NULL,
  `manufacturer_phone` varchar(15) DEFAULT NULL,
  `manufacturer_website_url` varchar(100) DEFAULT NULL,
  `manufacturer_type` enum('GEN','PHA') NOT NULL COMMENT 'PHA - Pharmacy, GEN - General Store',
  `manufacturer_is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`manufacturer_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2109 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `manufacturer_master`
--

LOCK TABLES `manufacturer_master` WRITE;
/*!40000 ALTER TABLE `manufacturer_master` DISABLE KEYS */;
INSERT INTO `manufacturer_master` VALUES (0,1,'UNISON','UNISON',NULL,NULL,NULL,'GEN','Y','thims','2019-01-05 09:14:13',NULL,NULL),(0,2,'MANKIND','MANKIND',NULL,NULL,NULL,'GEN','Y','thims','2019-01-05 09:14:13',NULL,NULL),(0,3,'CIPLA ','CIPLA LTD',NULL,NULL,NULL,'GEN','Y','pharma','2019-01-07 10:53:04',NULL,NULL),(0,5,NULL,'3M INDIA LIMITED.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,13,NULL,'ABBOTT INDIA LIMITED',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,20,NULL,'ACRON PHARMAC. F8/G19',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,29,NULL,'AEGIS.,(A DIVISION OF PARAS IMPEX)',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,37,NULL,'AJANTA PHARMA LIMITED.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,39,NULL,'AKUMENTIS HEALTHCARE LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,43,NULL,'ALBERT DAVID PVT LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,44,NULL,'ALCHEM INTERNATIONAL LIMITED.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,46,NULL,'ALEMBIC LIMITED.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,49,NULL,'ALKEM LABORAT.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,50,NULL,'ALLERGAN INDIA PRIVATE LIMITED.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,52,NULL,'ALLKIND',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,78,NULL,'APEX LABORATORIES P.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,84,NULL,'APPLE DENT ORAL CARE PVT F8/P20/S10',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,94,NULL,'ARISE BIOCARE PVT.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,95,NULL,'ARISTO PHARMACEUTICALS PVT.LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,104,NULL,'ARVIND LABORATORIES PVT.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,105,NULL,'ASCENT INDUSTRIES',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,106,NULL,'ASCORE.GUJARAT.HIMKAR.SHALG.SR.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,113,NULL,'ASTRAZENECA PHARMA INDIA LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,122,NULL,'ATUL WIFER.LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,144,NULL,'B.BRAUN LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,152,NULL,'BARD.SDN.BHD.(MALAYASIA)',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,159,NULL,'BAYER PHARMACEUTICALS PVT.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,160,NULL,'BD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,161,NULL,'BECTON DICKINSON INDIA (P) LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,173,NULL,'BHARAT BIOTECH INTER.LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,179,NULL,'BIOCHEM PHARMACEUTICAL I.LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,197,NULL,'BLUE CROSS LABORATORIES LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,198,NULL,'BOEHRINGER INGELHEIM INDIA PVT.LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,203,NULL,'BONSAI PHARMACEUTICALS',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,207,NULL,'BRAUN',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,208,NULL,'BRAUN MEDICAL (INDIA) PVT.LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,214,NULL,'BRISK SURGICALS COTTON LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,218,NULL,'BSN MEDICAL PVT.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,224,NULL,'CADILA PHARMACEUTICALS LIMITED',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,253,NULL,'CIPLA LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,257,NULL,'CLARIS LIFESCIEN. LTD. F8/O31/SF2',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,260,NULL,'COLGATE-PALMOLIVE (INDIA) LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,262,NULL,'COLOPLAST A/S',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,266,NULL,'CONCEPT PHARMACEUTICALS LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,273,NULL,'CORE PHARMA',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,275,NULL,'CORONA REMEDIES PVT.LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,281,NULL,'CRATUS LIFE CARE',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,288,NULL,'CURATIO HEALTH CARE PVT.LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,290,NULL,'CUREILL PHARMA',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,297,NULL,'DABUR INDIA LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,303,NULL,'DANISH',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,320,NULL,'DENIS CHEM LAB LIMITED.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,325,NULL,'DEPSONS PHARMA',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,328,NULL,'DERMOCARE L.(GUJ.) PVT.LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,331,NULL,'DEVON INNOVATIONS P.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,336,NULL,'DIAL LATEX LTD  (GLOVES)',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,341,NULL,'DISPOVAN',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,342,NULL,'DIVINE HEALTH CARE',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,354,NULL,'DR REDDY\'S LABORATORIES LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,359,NULL,'DR.MOREPEN LIMITED',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,372,NULL,'DYNA SURGICALS',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,373,NULL,'DYNAMIC TECHNO MED.P.LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,374,NULL,'EAST INDIA P.WORKS LIMITED',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,379,NULL,'ELDER PHARMACEUTICALS LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,380,NULL,'ELI LILLY AND C.(INDIA) P.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,385,NULL,'EMCURE PHARMACEUTICALS LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,386,NULL,'EMERCK (INDIA)LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,394,NULL,'ERIS LIFESCIENCES PVT.LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,398,NULL,'ETHICON (J&J)',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,407,NULL,'FAR WEST',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,408,NULL,'FDC LIMITED.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,418,NULL,'FKB',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,419,NULL,'FLAMINGO PHARMACEUTICALS',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,428,NULL,'FOURRTS (I) LABO.PVT.LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,429,NULL,'FRANCO-INDIAN (P)(R) PVT.LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,430,NULL,'FRESENIUS KABI INDIA PVT.LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,442,NULL,'GENERAL(COMMON)              +',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,449,NULL,'GERMAN REMEDIES',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,455,NULL,'GLAND PHARMA LIMITED.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,456,NULL,'GLAXOSMITHKLINE ASIA P.LIMITED (ENO)',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,457,NULL,'GLAXOSMITHKLINE CONSUMER H.LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,458,NULL,'GLAXOSMITHKLINE P.LIMITED.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,459,NULL,'GLENMARK PHARMA LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,467,NULL,'GODREJ CONSUMER PRODUCTS LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,492,NULL,'HBC LIFESCIENSES (P) LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,501,NULL,'HEMANT SURGICAL IND.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,506,NULL,'HETERO HEALTHCARE LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,515,NULL,'HINDUSTAN SYRINGES & M.D.LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,516,NULL,'HINDUSTAN UNILEVER LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,540,NULL,'INDOCO REMEDY\'S',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,542,NULL,'INGA LAB (P) LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,549,NULL,'INTAS PHARMA (NRI)',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,550,NULL,'INTAS PHARMACEUTICALS LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,551,NULL,'INTERSURGICAL',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,553,NULL,'INVIDA INDIA PRIVATE LIMITED',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,554,NULL,'IPCA LABORATORIES LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,559,NULL,'J K ANSELL LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,560,NULL,'J L MORISON (INDIA) LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,563,NULL,'J.B.CHEMICALS & P.LTD.(UNIQUE)',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,567,NULL,'JAGSONPAL PHARMACEUTICAL LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,572,NULL,'JAWA LAB',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,580,NULL,'JMS SINGAPORE PTE LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,583,NULL,'JOHNSON & JOHNSON LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,588,NULL,'JUGGAT PHARMA (JAGDALE I.LTD.)',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,607,NULL,'KEHR SURGICAL LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,609,NULL,'KEPLER HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,612,NULL,'KHANDELWAL LABORATORIES PVT LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,617,NULL,'KINGS PHARMA ',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,619,'','KIRTI TELNET','accounts@kirti.co.in',NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34','sagarv','2019-06-22 17:07:38'),(0,622,NULL,'KLM LAB.PVT.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,633,NULL,'KRISHNA HEALTHCARE',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,644,NULL,'LA RENON HEALTHCARE PVT.LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,657,NULL,'LEEFORD HEALTHCARE LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,678,NULL,'LIVA HEALTHCARE LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,688,NULL,'LUPIN LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,696,NULL,'MACLEODS PHARMA LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,709,NULL,'MANKA',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,710,NULL,'MANKIND PHARMA PVT.LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,716,NULL,'MARK (INDIA) COSMED PVT.LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,718,NULL,'MARTIN HARRIS',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,721,NULL,'MATRIX',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,724,NULL,'MCNEIL &ARGUS PHARMACEUTICALS LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,733,NULL,'MEDICA',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,735,NULL,'MEDICARE PVT LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,741,NULL,'MEDIKIT PRODUCTS',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,746,NULL,'MEDITECH DEVICES',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,747,NULL,'MEDITEK',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,749,NULL,'MEDIZON BIOTECH',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,758,NULL,'MEHTA UNANI PHARMACY & C.P.LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,763,NULL,'MERCURY LABORATORIES LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,767,NULL,'MEYER ORGANIC.P.LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,770,NULL,'MICRO LABS LIMITED.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,778,NULL,'MODI MUNDI PHARMA LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,783,NULL,'MONO CHEM LABO',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,784,NULL,'MOREPEN LABORATORIES LIMITED.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,789,NULL,'MSD PHARMACEUTICALS PVT.LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,802,NULL,'NAMAS PHARMACEUTICALS ',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,819,NULL,'NEO CARDIAB CARE',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,821,NULL,'NEON LABORATORIES LIMITED.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,832,NULL,'NIKKO',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,843,NULL,'NOBEL HYGIENE PVT.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,847,NULL,'NOVARTIS INDIA LIMITED',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,852,NULL,'NUCLEUS INC.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,854,NULL,'NULIFE PHARMA.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,868,NULL,'OMEGA PHARMACEUTICALS',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,869,NULL,'OMRON HEALTHCARE CO.,LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,876,NULL,'ORDAIN HEALTH CARE P.LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,892,NULL,'OZONE PHARMACEUTICALS LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,912,NULL,'PARMIN REMEDIES',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,920,NULL,'PENPOL PRODUCTS',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,926,NULL,'PFIZER LIMITED.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,930,NULL,'PHARMIN REMEDIES',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,939,'PIL','PSYCHOTROPIC INDIA LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34','kinnari','2019-03-14 08:45:06'),(0,957,NULL,'PRIMEWEAR (INDIA)',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,958,NULL,'PRINCE CARE',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,969,NULL,'QUE PHARMA PVT.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,981,NULL,'RANBAXY LABORATORIES LIMITED.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,985,NULL,'RAPTAKOS,BRETT & CO.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,988,NULL,'RATHI LABO PVT LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,991,NULL,'RECKITT BENCKISER (INDIA) LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1001,NULL,'RELIANCE LIFE SCIENCES P.LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1021,NULL,'ROMSONS SCI.& SUR IND P.LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1029,NULL,'RPG LIFE SCIENCES LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1032,NULL,'RUDRAXA',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1042,NULL,'SAFE',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1047,NULL,'SAMARTH LIFE SCIENCES PVT.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1048,NULL,'SAMI DIRECT',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1052,NULL,'SANOFI PASTEUR INDIA PVT.LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1053,NULL,'SANOFI SYNTHELABO(INDIA) LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1068,NULL,'SEARLE',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1078,NULL,'SERDIA PHARMACEUTICALS (INDIA) PVT.LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1079,NULL,'SERUM INSTITUTE OF INDIA LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1080,NULL,'SERVE PHARMACEUTICALS',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1103,NULL,'SHREE UMIYA SURGICAL P.L',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1108,NULL,'SHREYA LIFE SCIENCES PVT.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1112,NULL,'SIGMA LABORATORIES',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1122,NULL,'SKYMAX LABORATORIS.PVT.L',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1146,NULL,'SRI GOPAL KRISHNA LABS.L',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1153,NULL,'STEADFAST MEDISHIELD PVT',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1157,NULL,'STIEFEL INDIA PRIVATE LIMITED.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1164,NULL,'SUN PHARMACEUTICAL IND.LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1169,NULL,'SUNWAYS (INDIA) PVT.LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1175,NULL,'SURGE BIOTECH PVT.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1176,NULL,'SURGICALS',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1177,NULL,'SURGICARE BIOMEDS',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1178,NULL,'SURGIWEAR LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1192,NULL,'SYSTOPIC LAB. P. LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1194,NULL,'TABLETS (I) LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1199,NULL,'TELEFLEX MEDICAL PVT LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1204,NULL,'THE HIMALAYA DRUG COMPANY.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1205,NULL,'THE PROCTER & GAMBLE COMPANY.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1208,NULL,'THEMIS PHARMACEUTICALS',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1217,NULL,'TORQUE PHARMACEUTICALS PVT LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1218,NULL,'TORRENT PHARMACEUTICALS LTD C06/T07',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1221,NULL,'TRIPADA HEALTHCARE',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1225,NULL,'TROIKAA PHARMACEUTICALS LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1235,NULL,'UNI VISION',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1236,NULL,'UNICHARM INDIA PVT.LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1237,NULL,'UNICHEM LABORATORIES LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1238,NULL,'UNICURE REMEDIES PVT. LTD',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1243,NULL,'UNISON PHARMA',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1253,NULL,'USPRAY',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1254,NULL,'USV LIMITED.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1268,NULL,'VHB LIFE SCIENCES LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1282,NULL,'VISCO REHBI.AID.P.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1284,NULL,'VISSCO',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1290,NULL,'VOTARY LAB',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1291,NULL,'WALLACE PHARMACEUTICALS P.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1296,NULL,'WEST-COAST P.WORKS LTD.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1302,NULL,'WIN-MEDICARE PVT.LTD.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1307,NULL,'WOCKHARDT LIMITED.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1309,NULL,'WYETH LIMITED.',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1333,NULL,'ZYDUS WELLNESS LIMITED.,',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1334,NULL,'ZYLONE HEALTHCARE',NULL,NULL,NULL,'GEN','Y','thims','2019-01-08 10:30:34',NULL,NULL),(0,1336,'','ROMSONS MEDICONS','cus.care@romsons.com','915622344083',NULL,'GEN','Y','kinnari','2019-01-12 15:48:02',NULL,NULL),(0,1337,'ANHIL PARE','ANHIL PARENTERALS PVT. LTD',NULL,NULL,NULL,'GEN','Y','kinnari','2019-01-19 11:40:39',NULL,NULL),(0,1338,'GLOMED HEA','GLOMED HEALTHCARE P.LTD',NULL,NULL,NULL,'GEN','Y','kinnari','2019-01-19 14:16:03',NULL,NULL),(0,1339,'SAI MEGACU','SAI MEGACURE HYGIENE',NULL,NULL,NULL,'GEN','Y','kinnari','2019-01-19 14:29:24',NULL,NULL),(0,1341,'NOVO MEDI ','NOVO MEDI SCIENCE PVT LTD',NULL,NULL,NULL,'GEN','Y','kinnari','2019-01-24 12:39:55',NULL,NULL),(0,1342,'SARA HEALT','SARA HEALTH CARE PVT LTD',NULL,NULL,NULL,'GEN','Y','jitendra','2019-02-05 13:04:22',NULL,NULL),(0,1344,'PRIYA PHAR','PRIYA PHARMACEUTICAL',NULL,NULL,NULL,'GEN','Y','kinnari','2019-03-05 17:56:18',NULL,NULL),(0,1345,'REGAIN LAB','REGAIN LABORATORY',NULL,NULL,NULL,'GEN','Y','kinnari','2019-03-14 09:27:46',NULL,NULL),(0,1346,'','KURIZON ',NULL,NULL,NULL,'GEN','Y','harsh','2019-05-02 10:54:16',NULL,NULL),(0,1347,'','ZYDUS CORZA',NULL,NULL,NULL,'GEN','Y','harsh','2019-05-02 13:09:35',NULL,NULL),(0,1349,'','LG',NULL,NULL,NULL,'GEN','Y','rajanikant','2019-06-13 15:17:39',NULL,NULL),(0,1350,'','NAVIN SURGICAL COMPANY','navinsurgical@gmail.com','9825986188',NULL,'GEN','Y','sagarv','2019-06-19 13:17:19',NULL,NULL),(0,1351,'','ALPHA ENTERPRISE','alpha93@ymail.com','8866045969',NULL,'GEN','Y','sagarv','2019-06-20 17:10:08',NULL,NULL),(0,1352,'','NIDHI MEDITECH SYSTEMS','info@nidhimeditech.com',NULL,NULL,'GEN','Y','sagarv','2019-06-20 17:16:12',NULL,NULL),(0,1353,'','THE HARITI ENTERPRISE ','TEJAS.PITHADIA@GMAIL.COM','9227610955',NULL,'GEN','Y','sagarv','2019-06-21 12:59:19',NULL,NULL),(0,1354,'','RATHI HEALTH CARE',NULL,'9723467560',NULL,'GEN','Y','sagarv','2019-06-21 13:58:36',NULL,NULL),(0,1355,'','PATHOHUB BIOMEDICAL LLP','pathohub@outlook.com','7567246266',NULL,'GEN','Y','sagarv','2019-06-21 15:06:03',NULL,NULL),(0,1356,'','PRINTERCARE','printercareahd@yahoo.com','9428045676',NULL,'GEN','Y','sagarv','2019-06-22 17:18:25',NULL,NULL),(0,1357,'','ANIRUDH AGRO INDUSTRIES',NULL,NULL,NULL,'GEN','Y','sagarv','2019-06-23 09:57:30',NULL,NULL),(0,1358,'','ICON DIAGNOSTICS','icondiagnostics01@gmail.com','9904153380',NULL,'GEN','Y','sagarv','2019-06-23 10:10:24',NULL,NULL),(0,1359,'','PRISHA ASSOCIATES','prishaassociates28@gmail.com','9825940668',NULL,'GEN','Y','sagarv','2019-06-23 11:21:14',NULL,NULL),(0,1360,'','SHRI LALSHAH PAPERS PVT LTD','info@lalshah.com','9825571171',NULL,'GEN','Y','sagarv','2019-06-23 11:27:13',NULL,NULL),(0,1361,'','D.Z. ENTERPRISES',NULL,'8460509035',NULL,'GEN','Y','sagarv','2019-06-23 11:35:01',NULL,NULL),(0,1362,'','NEELKANTH ENTERPRISE','drharshangpatel@gmail.com',NULL,NULL,'GEN','Y','sagarv','2019-06-23 11:52:32',NULL,NULL),(0,1363,'','KRISHNA PAPERS CO.','krishnapapersco@yahoo.co.in','07922142556',NULL,'GEN','Y','sagarv','2019-06-23 12:47:24',NULL,NULL),(0,1364,'','RAJSUN INTERNATIONAL',NULL,'7069660011',NULL,'GEN','Y','sagarv','2019-06-23 14:41:30',NULL,NULL),(0,1365,'','UNNAT MEDICAL AGENCIES',NULL,'7878421128',NULL,'GEN','Y','sagarv','2019-06-23 15:11:45',NULL,NULL),(0,1366,'','VED MEDICAL SERVICES','vedsunil2010@gmail.com','9727826259',NULL,'GEN','Y','sagarv','2019-06-23 15:20:20',NULL,NULL),(0,1367,'','LAB MEDICA SYSTEMS PVT.LTD.','backoffice.labmedica@gmail.com',NULL,NULL,'GEN','Y','sagarv','2019-06-24 14:14:09',NULL,NULL),(0,1368,'','VIRAL ENTERPRISE',NULL,'9825305228',NULL,'GEN','Y','sagarv','2019-06-24 15:37:23',NULL,NULL),(0,1369,'','NATIONAL ENTERPRISE',NULL,'9428106507',NULL,'GEN','Y','sagarv','2019-06-26 11:58:36',NULL,NULL),(0,1370,'','SHIDH MEDICAL EQUIPMENT','shidhequipments@gmail.com','8866213992',NULL,'GEN','Y','sagarv','2019-06-26 12:08:35',NULL,NULL),(0,1371,'','BRIGHT LIQUID SOAP','blsbhagyesh@gmail.com','9426353315',NULL,'GEN','Y','sagarv','2019-06-26 12:25:10',NULL,NULL),(0,1372,'','AADESHWAR ENTERPRISE','enterprise.aadeshwar@gmail.com','9904612934',NULL,'GEN','Y','sagarv','2019-06-26 12:49:37',NULL,NULL),(0,1373,'','ARIHANT TOOLS AND HARDWARE','arihant.tools@yahoo.com','07922173598',NULL,'GEN','Y','sagarv','2019-06-26 13:05:38',NULL,NULL),(0,1374,'','SEJAL TRADING COMPANY','sejaltrading7155@gmail.com','9925019416',NULL,'GEN','Y','sagarv','2019-06-26 13:13:54',NULL,NULL),(0,1375,'','NICO INDUSTRIAL SOLUTIONS ','taslim.chhipa@gmail.com','08460004211',NULL,'GEN','Y','sagarv','2019-06-26 13:23:25',NULL,NULL),(0,1376,'','SHRI SWAMINARAYAN SARVOPARI SIDDHANT UTTEJAK MANDA','ssd@in.smvs.org',NULL,NULL,'GEN','Y','sagarv','2019-06-26 13:39:05',NULL,NULL),(0,1377,'','JAY KHODIYAR HEALTHCARE',NULL,'937785770004',NULL,'GEN','Y','sagarv','2019-06-26 15:37:58',NULL,NULL),(0,1378,'','NATIONAL PHARMA','acc.nationalpharma@gmail.com','9824499322',NULL,'GEN','Y','sagarv','2019-06-28 12:52:37',NULL,NULL),(0,1379,'','PATHOS INDIA',NULL,NULL,NULL,'GEN','Y','sagarv','2019-06-28 13:02:11',NULL,NULL),(0,1380,'','SHIV DENTAL LABORATORY',NULL,'7383441024',NULL,'GEN','Y','sagarv','2019-06-28 16:37:07',NULL,NULL),(0,1381,'','MS LIFESCIENCES',NULL,'9099960041',NULL,'GEN','Y','sagarv','2019-06-29 13:02:29',NULL,NULL),(0,1382,'','PROTON POLYMER','protonpolymer@yahoo.com',NULL,NULL,'GEN','Y','sagarv','2019-06-30 11:26:46',NULL,NULL),(0,1383,'','SHREE SAI INDUSTRIES','rbarvaliya61@gmail.com','9375259039',NULL,'GEN','Y','sagarv','2019-06-30 12:11:18',NULL,NULL),(0,1384,'','SHREE MAHAVIR STATIONERY MART','mahavirstationers@yahoo.com','07926583561',NULL,'GEN','Y','sagarv','2019-06-30 12:23:25',NULL,NULL),(0,1385,'','NANO THERAPEUTICS PVT LTD','info@nano-therapeutics.net','8866050898',NULL,'GEN','Y','sagarv','2019-07-02 16:50:53',NULL,NULL),(0,1386,'','LINEN ENTERPRISE','linenenterprize@gmail.com','9725697453',NULL,'GEN','Y','sagarv','2019-07-02 17:04:50',NULL,NULL),(0,1387,'','VARDAINEE ENTERPRISE','ve5885@gmail.com','9825333200',NULL,'GEN','Y','sagarv','2019-07-03 10:04:59',NULL,NULL),(0,1388,'','SHITAL SURGICAL CO.',NULL,'9427072939',NULL,'GEN','Y','sagarv','2019-07-03 11:02:21',NULL,NULL),(0,1389,'','PARVATI TRADERS',NULL,'9898598219',NULL,'GEN','Y','sagarv','2019-07-03 11:44:30',NULL,NULL),(0,1390,'','KRISHNA ENTERPRISE','krishnaenterprise777@gmail.com','9825721772',NULL,'GEN','Y','sagarv','2019-07-03 11:54:12',NULL,NULL),(0,1391,'','BHARATKUMAR & CO',NULL,'9427308103',NULL,'GEN','Y','sagarv','2019-07-03 12:20:52',NULL,NULL),(0,1392,'','AKASH CERAMICS PVT.LTD','info@dakshinamurti.com','0792763272170',NULL,'GEN','Y','sagarv','2019-07-03 13:07:36',NULL,NULL),(0,1393,'','MARUTI PRINTER','marutiprinter77@gmail.com','9909510130',NULL,'GEN','Y','sagarv','2019-07-03 13:20:43',NULL,NULL),(0,1394,'','CASS ASSOCIATES','cass4374@gmail.com',NULL,NULL,'GEN','Y','sagarv','2019-07-03 15:16:09',NULL,NULL),(0,1395,'','CASS ASSOCIATES','cass4374@gmail.com',NULL,NULL,'GEN','Y','sagarv','2019-07-03 15:16:09',NULL,NULL),(0,1396,'','CAREGROUP SIGHT SOLUTION LLP','branch.ahmedabad@caregroupiol.com',NULL,NULL,'GEN','Y','sagarv','2019-07-05 13:18:14',NULL,NULL),(0,1397,'','SHREEJI PLASTIC','shreejiplastic@gmail.com','9824381300',NULL,'GEN','Y','sagarv','2019-07-05 13:29:18',NULL,NULL),(0,1398,'','DISHA WAVES INFONET PRIVATE LIMITED','account@dishawaves.com',NULL,NULL,'GEN','Y','sagarv','2019-07-06 15:54:16',NULL,NULL),(0,1399,'','JAYTECH VISION',NULL,'9726466104',NULL,'GEN','Y','sagarv','2019-07-06 17:32:17',NULL,NULL),(0,1400,'','N. DESAI PAPERS PVT. LTD.','info@ndesai.com','07927543957',NULL,'GEN','Y','sagarv','2019-07-11 13:33:02',NULL,NULL),(0,1401,'','SHREEJI MEDIQUIP PVT LTD','shreejimediquip@gmail.com',NULL,NULL,'GEN','Y','sagarv','2019-07-13 13:04:43',NULL,NULL),(0,1402,'','VIHOTKRUPA SONA MARKETING','vks.natubhai@gmail.com','9327038041',NULL,'GEN','Y','sagarv','2019-07-13 13:34:10',NULL,NULL),(0,1403,'','SUPER TRADERS','supertraders28@gmail.com','07923211417',NULL,'GEN','Y','sagarv','2019-07-13 13:41:45',NULL,NULL),(0,1404,'','MAHAVIR TRADERS',NULL,'9824993702',NULL,'GEN','Y','sagarv','2019-07-15 10:13:37',NULL,NULL),(0,1405,'','PRINTTECH PRINTERS','info.printertechprinters@gmail.com',NULL,NULL,'GEN','Y','sagarv','2019-07-15 10:59:51',NULL,NULL),(0,1406,'','SAMVED MEDI CHANNEL',NULL,'9712978181',NULL,'GEN','Y','sagarv','2019-07-18 16:06:11',NULL,NULL),(0,1407,'','DAIMOND STATIONERY AND XEROX','daimondprint31@gmail.com','7283880411',NULL,'GEN','Y','sagarv','2019-07-19 13:16:00',NULL,NULL),(0,1408,'','MEDICARE HYGIENE LIMITED','medica@medicarehygiene.in','07926934081',NULL,'GEN','Y','sagarv','2019-07-20 15:31:09',NULL,NULL),(0,1409,'','REAL HYGIENE PVT. LTD','realindia1@yahoo.co.in','9825349603',NULL,'GEN','Y','sagarv','2019-07-21 12:37:02',NULL,NULL),(0,1410,'','MERCK SPECIALITIES PRIVETE LIMITED',NULL,NULL,NULL,'GEN','Y','sagar','2019-07-29 23:37:20',NULL,NULL),(0,1411,'','REDSON LABORATORIES PVT LTD',NULL,NULL,NULL,'GEN','Y','sagar','2019-07-31 20:35:54',NULL,NULL),(0,1412,'','OM ENDOSURGICALS','kdalia42@gmail.com','9825018130',NULL,'GEN','Y','sagarv','2019-08-01 17:36:27',NULL,NULL),(0,1413,'AHMEDABAD','ADITYA PHARMACEUTICALS',NULL,NULL,NULL,'GEN','Y','SAGAR','2019-08-02 21:06:46',NULL,NULL),(0,1414,'','OM SURGICAL','Piyushomsurgical@gmail.com','9924636066',NULL,'GEN','Y','sagarv','2019-08-03 14:51:37',NULL,NULL),(0,1415,'','ZYMECK','info@zymeck.com','9925009854',NULL,'GEN','Y','sagarv','2019-08-06 16:00:09',NULL,NULL),(0,1416,'','DAGA FINMARK INDIA LIMITED','clenex@rediffmail.com','9727750666',NULL,'GEN','Y','sagarv','2019-08-10 14:33:38',NULL,NULL),(0,1417,'','SHREE RANG GLASS - 2017-2020','info@shreerangglass.com',NULL,NULL,'GEN','Y','sagarv','2019-08-10 14:57:18',NULL,NULL),(0,1418,'','APPASAMY ASSOCIATES','sales_pon@appasamy.com','9543381487',NULL,'GEN','Y','sagarv','2019-08-14 11:51:05',NULL,NULL),(0,1419,'','BAER ZYDUS PHARMA PVT LTD',NULL,NULL,NULL,'GEN','Y','sagar','2019-08-14 20:55:09',NULL,NULL),(0,1420,'','NILKANTH LAMINATION & PRINTING',NULL,'9979017326',NULL,'GEN','Y','sagarv','2019-08-16 14:18:00',NULL,NULL),(0,1421,'','OMKAR PRINT AND PACKAGING','omkarpackaging@gmail.com','9824169375',NULL,'GEN','Y','sagarv','2019-08-16 14:26:18',NULL,NULL),(0,1422,'','PANCHAL PRINTERS ',NULL,NULL,NULL,'GEN','Y','sagarv','2019-08-16 14:36:52',NULL,NULL),(0,1423,'','NAVAKAR ENTERPRISE','cgvora996@gmail.com','9327022555',NULL,'GEN','Y','sagarv','2019-08-16 14:42:36',NULL,NULL),(0,1424,'','SHRI SARASWATI BOOK BINDING WORKS',NULL,'9726275945',NULL,'GEN','Y','sagarv','2019-08-16 14:50:22',NULL,NULL),(0,1425,'','BALAJI FILE PRODUCTS','balajifielproducts@yahoo.com',NULL,NULL,'GEN','Y','sagarv','2019-08-16 16:09:22',NULL,NULL),(0,1426,'','SANDERI PLYWOOD & HADWARE','sanderipnh2017@gmail.com','9662943024',NULL,'GEN','Y','sagarv','2019-08-17 12:57:03',NULL,NULL),(0,1427,'','ZYDUS ZIVA ',NULL,NULL,NULL,'GEN','Y','sagar','2019-08-17 20:38:27',NULL,NULL),(0,1428,'','BRITISH BIOLOGICALS',NULL,NULL,NULL,'GEN','Y','sagar','2019-08-20 20:47:35',NULL,NULL),(0,1429,'','ARISE ENTERPRISE','write2arise@gmail.com','8160213318',NULL,'GEN','Y','sagarv','2019-08-22 15:59:00',NULL,NULL),(0,1430,'','OSKAR DIGITAL SYSTEM','oskardigitalsystem@gmail.com','9825428025',NULL,'GEN','Y','sagarv','2019-08-23 14:56:31',NULL,NULL),(0,1431,'','AIMIL PHARMACEUTICALS INDIA LTD',NULL,NULL,NULL,'GEN','Y','sagar','2019-08-26 23:24:02',NULL,NULL),(0,1432,'','SANOFI -SYNTHELABO PVY ,LTD.',NULL,NULL,NULL,'GEN','Y','sagar','2019-08-29 23:39:56',NULL,NULL),(0,1433,'','EXCEL HEALTHCARE',NULL,'8758965505',NULL,'GEN','Y','sagarv','2019-09-05 10:36:28',NULL,NULL),(0,1434,'','ZESTA CARE','zestacare@yahoo.co.in','07940041879',NULL,'GEN','Y','nitin','2019-09-07 10:06:14',NULL,NULL),(0,1435,'','MICROLINK SOLUTIONS PVT. LTD.','accounts@microlink.co.in',NULL,NULL,'GEN','Y','sagarv','2019-09-07 10:20:24',NULL,NULL),(0,1436,'','MANGAL PAPERS PVT LTD','accounts@mangalpaper.com',NULL,NULL,'GEN','Y','sagarv','2019-09-07 10:47:19',NULL,NULL),(0,1437,'','SHREE VINAYAK','vinayakcard9@gmail.com','7383368409',NULL,'GEN','Y','sagarv','2019-09-07 11:08:37',NULL,NULL),(0,1438,'','LIVYON OHARMA ',NULL,NULL,NULL,'GEN','Y','sagar','2019-09-08 00:44:38',NULL,NULL),(0,1439,'','VANDAN DISTRIBUTORS ','vandan1011@yahoo.in','9428460003',NULL,'GEN','Y','sagarv','2019-09-09 16:38:41',NULL,NULL),(0,1440,'','SRUSHTI SURGICAL',NULL,'9825500795',NULL,'GEN','Y','sagarv','2019-09-09 17:14:05',NULL,NULL),(0,1441,'','NEO VISION HEALTHCARE',NULL,NULL,NULL,'GEN','Y','sagar','2019-09-12 01:56:44',NULL,NULL),(0,1442,'','SHAYONA BIOMEDICAL','shayonabiomedical@gmail.com','9879072373',NULL,'GEN','Y','sagarv','2019-09-13 10:22:14',NULL,NULL),(0,1443,'','ALOK KUMAR SINGH',NULL,'7874723088',NULL,'GEN','Y','sagarv','2019-09-13 12:33:27',NULL,NULL),(0,1444,'','NIDHI HEALTH CARE ','info@nidhimeditech.com',NULL,NULL,'GEN','Y','sagarv','2019-09-13 12:58:50',NULL,NULL),(0,1445,'','SHREE SAI CORPORATION',NULL,'9727367259',NULL,'GEN','Y','sagarv','2019-09-13 13:13:20',NULL,NULL),(0,1446,'','GUJARAT ENTERPRISE ',NULL,'8000656667',NULL,'GEN','Y','sagarv','2019-09-14 11:31:38',NULL,NULL),(0,1447,'','UMA TRADERS',NULL,'9913202034',NULL,'GEN','Y','sagarv','2019-09-18 10:50:14',NULL,NULL),(0,1448,'','ASIAN WATER SOLUTION',NULL,'9909290299',NULL,'GEN','Y','sagarv','2019-09-18 11:02:54',NULL,NULL),(0,1449,'','DARSHAN SALES & MARKETING','darshanmrkt@yahoo.com','9377333678',NULL,'GEN','Y','sagarv','2019-09-18 11:13:35',NULL,NULL),(0,1450,'','HUMAN HEALTH REMEDIES ','MUKESH_DJS@YAHOO.COM','76000082062',NULL,'GEN','Y','sagar','2019-09-19 04:40:56',NULL,NULL),(0,1451,'','J.K.DISTRIBUTORS',NULL,'9327074028',NULL,'GEN','Y','sagarv','2019-09-19 12:41:58',NULL,NULL),(0,1452,'','KUBIC INDIA SPLUTIONS LLP','accounts@kubicindia.com',NULL,NULL,'GEN','Y','sagarv','2019-09-22 10:50:41',NULL,NULL),(0,1453,'','CAPITAL FLEX BANNERS','capitalflaxbanner@gmail.com',NULL,NULL,'GEN','Y','sagarv','2019-09-22 11:12:49',NULL,NULL),(0,1454,'','S K SPECIALITY & MEDIPLANT','skspeciality@gmail.com','9825512666',NULL,'GEN','Y','sagarv','2019-09-22 11:44:21',NULL,NULL),(0,1455,'','RAJ BARCODE SYSTEMS PVT.LTD.','sales@rajbarcode.com','07926581261',NULL,'GEN','Y','sagarv','2019-09-22 15:45:17',NULL,NULL),(0,1456,'','DHRUVI PHARMA PVT LTD',NULL,NULL,NULL,'GEN','Y','sagarv','2019-09-24 15:06:27',NULL,NULL),(0,1457,'','ABAJ ELECTRONICS PVT.LTD',NULL,'7567246266',NULL,'GEN','Y','pranav','2019-09-25 11:48:33',NULL,NULL),(0,1458,'','VIRAJ RANG UDHYOG',NULL,NULL,NULL,'GEN','Y','pranav','2019-09-26 12:03:54',NULL,NULL),(0,1459,'','DIVINE INDUSTRIES',NULL,NULL,NULL,'GEN','Y','pranav','2019-09-26 12:04:07',NULL,NULL),(0,1460,'','MIT GRAFIK PVT LTD',NULL,NULL,NULL,'GEN','Y','pranav','2019-09-26 12:04:27',NULL,NULL),(0,1461,'','TECHSMITH SOLUTIONS PVT LTD',NULL,NULL,NULL,'GEN','Y','pranav','2019-09-26 12:04:39',NULL,NULL),(0,1462,'','MATULYA SURGICAL',NULL,NULL,NULL,'GEN','Y','pranav','2019-09-26 13:58:02',NULL,NULL),(0,1463,'','COOLIN SYSTEM',NULL,NULL,NULL,'GEN','Y','pranav','2019-09-27 12:50:07',NULL,NULL),(0,1464,'','MODI MEDITECH DEVICES',NULL,NULL,NULL,'GEN','Y','pranav','2019-09-27 17:00:11',NULL,NULL),(0,1465,'','OM MEDICS',NULL,'0040031149',NULL,'GEN','Y','sagarv','2019-10-03 14:19:16',NULL,NULL),(0,1466,'','VEER MARKETING','veermarketing77@yahoo.com','9898167785',NULL,'GEN','Y','sagarv','2019-10-03 16:08:28',NULL,NULL),(0,1467,'','CLASSIC INTERIORS',NULL,NULL,NULL,'GEN','Y','pranav','2019-10-04 16:13:37',NULL,NULL),(0,1468,'','RAJ BARCODE SYSTEMS PVT. LTD',NULL,NULL,NULL,'GEN','Y','pranav','2019-10-04 16:40:17',NULL,NULL),(0,1469,'','VISHRUTI INTERNATIONAL','VISHRUTI_INTERNATIONAL@YAHOO.COM','9825047889',NULL,'GEN','Y','pranav','2019-10-05 13:46:26',NULL,NULL),(0,1470,'','JANSHAKTI INDUSTRIES','accounts@janshaktiindia.com','9904590787',NULL,'GEN','Y','pranav','2019-10-05 13:51:34',NULL,NULL),(0,1471,'','HEMCARE ENTERPRISE','maheshhemcare@gmail.com','9924457420',NULL,'GEN','Y','sagarv','2019-10-05 18:35:31',NULL,NULL),(0,1472,'','ASHOK TRADERS','ashok.agrawal12@yahoo.com','7383315197',NULL,'GEN','Y','pranav','2019-10-09 18:31:42',NULL,NULL),(0,1473,'','NIDHI COSMETICS PRIVATE LIMITED','nidhicosmetics@gmail.com','9978645680',NULL,'GEN','Y','sagarv','2019-10-12 15:21:36',NULL,NULL),(0,1474,'','GHANSHYAM ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2019-10-21 10:10:43',NULL,NULL),(0,1475,'','RAVI FOOTWARE',NULL,'9825196137',NULL,'GEN','Y','pranav','2019-10-23 09:52:33',NULL,NULL),(0,1476,'','BNM ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2019-10-25 12:25:45',NULL,NULL),(0,1477,'','NAVPAD',NULL,'9909923335',NULL,'GEN','Y','pranav','2019-10-25 14:16:31',NULL,NULL),(0,1478,'','DHARM BHAKTI GRUH UDHAYOG',NULL,NULL,NULL,'GEN','Y','pranav','2019-11-06 11:43:18',NULL,NULL),(0,1479,'','SHRI HARI HEALTH SCIENCES PVT.LTD.',NULL,NULL,NULL,'GEN','Y','pranav','2019-11-06 11:54:38',NULL,NULL),(0,1480,'','COMPUBRAIN INTERNETICS PVT.LTD',NULL,NULL,NULL,'GEN','Y','pranav','2019-11-06 12:07:36',NULL,NULL),(0,1481,'','SHRI SWAMINARAYAN SARVOPARI SIDDHANT UTTEJAKMANDAL',NULL,NULL,NULL,'GEN','Y','pranav','2019-11-06 12:11:51',NULL,NULL),(0,1482,'','AIRCON REF.MFG.CO.',NULL,NULL,NULL,'GEN','Y','pranav','2019-11-06 15:28:01',NULL,NULL),(0,1483,'','PROTOS ENGINEERING CO PVT LTD',NULL,NULL,NULL,'GEN','Y','pranav','2019-11-06 15:34:17',NULL,NULL),(0,1484,'','ARIHANT AGENCY',NULL,NULL,NULL,'GEN','Y','pranav','2019-11-08 09:59:16',NULL,NULL),(0,1485,'','J.K ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2019-11-13 10:31:06',NULL,NULL),(0,1486,'','SUN ENTERPRISES',NULL,NULL,NULL,'GEN','Y','pranav','2019-11-16 13:12:31',NULL,NULL),(0,1487,'','PRINT OFFSET',NULL,'9978443223',NULL,'GEN','Y','pranav','2019-11-19 17:42:03',NULL,NULL),(0,1488,'','SAHAJ SURGICAL',NULL,NULL,NULL,'GEN','Y','pranav','2019-11-19 17:46:36',NULL,NULL),(0,1489,'','ARWA STATIONERY MART',NULL,NULL,NULL,'GEN','Y','pranav','2019-11-21 17:45:23',NULL,NULL),(0,1490,'','THE DEVANI GROUP',NULL,'6352644185',NULL,'GEN','Y','pranav','2019-11-22 09:44:11',NULL,NULL),(0,1491,'','P.MANUBHAI MEDICAL & PROVISION STORES',NULL,NULL,NULL,'GEN','Y','pranav','2019-11-23 09:57:58',NULL,NULL),(0,1492,'','ANAND V. DATANIYA',NULL,NULL,NULL,'GEN','Y','pranav','2019-11-23 15:19:24',NULL,NULL),(0,1493,'','BEST TECHNOLOGY SALES & SERVICE',NULL,NULL,NULL,'GEN','Y','pranav','2019-11-23 16:24:36',NULL,NULL),(0,1494,'','SHREE RANG GLASS',NULL,NULL,NULL,'GEN','Y','pranav','2019-11-23 16:40:38',NULL,NULL),(0,1495,'','KARMA STEEL CO. (AMAZON.IN)',NULL,NULL,NULL,'GEN','Y','pranav','2019-11-26 11:39:01',NULL,NULL),(0,1496,'','H.SHAH & CO.',NULL,'9825196679',NULL,'GEN','Y','pranav','2019-11-30 09:48:50',NULL,NULL),(0,1497,'','WALTER BUSHNELL ',NULL,NULL,NULL,'GEN','Y','sagar','2019-12-02 21:16:35',NULL,NULL),(0,1498,'','WHITE CROSS CORPORATION',NULL,NULL,NULL,'GEN','Y','pranav','2019-12-05 12:16:10',NULL,NULL),(0,1499,'','ARPAN GLOBLE',NULL,NULL,NULL,'GEN','Y','pranav','2019-12-05 12:33:37',NULL,NULL),(0,1500,'','MEDIQUIP SALES PVT LTD.',NULL,NULL,NULL,'GEN','Y','pranav','2019-12-05 17:09:58',NULL,NULL),(0,1501,'','AUSSIN INTENSIVE CARE PVT. LTD.',NULL,NULL,NULL,'GEN','Y','pranav','2019-12-16 16:10:11',NULL,NULL),(0,1502,'','HIMSON PLASTIC AGENCY',NULL,NULL,NULL,'GEN','Y','pranav','2019-12-16 17:07:51',NULL,NULL),(0,1503,'','KARL STORZ ENDOSCOPY INDIA PVT.LTD.',NULL,NULL,NULL,'GEN','Y','pranav','2019-12-18 11:40:20',NULL,NULL),(0,1504,'','MS 1 POINT SOLUTION',NULL,NULL,NULL,'GEN','Y','pranav','2019-12-21 10:02:56',NULL,NULL),(0,1505,'','THE UNIQUE ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2019-12-21 13:01:13',NULL,NULL),(0,1506,'','UNNATI TRADERS',NULL,NULL,NULL,'GEN','Y','pranav','2019-12-23 16:37:11',NULL,NULL),(0,1507,'','LINCOLYN PHARMA',NULL,NULL,NULL,'GEN','Y','bhoomiba','2019-12-25 17:35:58',NULL,NULL),(0,1508,'','LINCOLYN PHARMA',NULL,NULL,NULL,'GEN','Y','bhoomiba','2019-12-25 17:38:21',NULL,NULL),(0,1509,'','SIDDHI VINAYAK HEALTHCARE',NULL,NULL,NULL,'GEN','Y','pranav','2019-12-26 10:16:11',NULL,NULL),(0,1510,'','SWAMINARAYAN ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2019-12-26 10:19:35',NULL,NULL),(0,1511,'','MEHRA EYETECH PRIVATE LIMITED',NULL,NULL,NULL,'GEN','Y','pranav','2019-12-26 10:30:40',NULL,NULL),(0,1512,'','OM TIMBER',NULL,NULL,NULL,'GEN','Y','pranav','2019-12-26 10:38:19',NULL,NULL),(0,1513,'','SHREENATHJI FURNITURE',NULL,NULL,NULL,'GEN','Y','pranav','2019-12-26 14:26:26',NULL,NULL),(0,1514,'','SUN',NULL,NULL,NULL,'GEN','Y','pranav','2019-12-26 14:46:56',NULL,NULL),(0,1515,'','SUN INDUSTRIES',NULL,NULL,NULL,'GEN','Y','pranav','2019-12-26 14:47:05',NULL,NULL),(0,1516,'','JAY AMBE POLYMERS',NULL,NULL,NULL,'GEN','Y','pranav','2019-12-27 15:40:47',NULL,NULL),(0,1517,'','MICRON ELECTRONIC WEIGHING SYSTEMS',NULL,NULL,NULL,'GEN','Y','pranav','2019-12-28 13:00:30',NULL,NULL),(0,1518,'','ROYAL INTERIOR COLLECTION',NULL,NULL,NULL,'GEN','Y','pranav','2020-01-06 11:21:24',NULL,NULL),(0,1519,'','GHANSHYAM INDUSTRIES',NULL,'9825039811',NULL,'GEN','Y','pranav','2020-01-06 11:28:47',NULL,NULL),(0,1520,'','ASIAN SAFES',NULL,'9879666400',NULL,'GEN','Y','pranav','2020-01-06 11:32:46',NULL,NULL),(0,1521,'','M/S.V.N.AGRAWAL',NULL,NULL,NULL,'GEN','Y','pranav','2020-01-06 11:46:02',NULL,NULL),(0,1522,'','URBAN JUNGGLE PVT.LTD',NULL,NULL,NULL,'GEN','Y','pranav','2020-01-06 12:02:04',NULL,NULL),(0,1523,'','SHREE SATYANAM LASERTECH',NULL,'9824426969',NULL,'GEN','Y','pranav','2020-01-06 15:44:40',NULL,NULL),(0,1524,'PHARMACEUT','PHARMACEUTICALS PVT.LTD.',NULL,NULL,NULL,'GEN','Y','mihir','2020-01-08 16:59:53',NULL,NULL),(0,1525,'','UMANG MARKETING',NULL,NULL,NULL,'GEN','Y','pranav','2020-01-09 09:57:45',NULL,NULL),(0,1526,'PRAMUKH','PRAMUKH SPORTS',NULL,NULL,NULL,'GEN','Y','pranav','2020-01-09 11:11:11',NULL,NULL),(0,1527,'DIPESHVARI','DIPESHVARI ZEROX & STATIONARY',NULL,NULL,NULL,'GEN','Y','pranav','2020-01-09 11:15:12',NULL,NULL),(0,1528,'APSARA','APSARA BAG WORKS',NULL,NULL,NULL,'GEN','Y','pranav','2020-01-13 11:12:21',NULL,NULL),(0,1529,'ASHMI','ASHMI ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2020-01-13 11:19:00',NULL,NULL),(0,1530,'BITTU','BITTU TRADING',NULL,NULL,NULL,'GEN','Y','pranav','2020-01-13 11:25:14',NULL,NULL),(0,1531,'VINAYAK','VINAYAK CARD',NULL,NULL,NULL,'GEN','Y','pranav','2020-01-17 17:07:46',NULL,NULL),(0,1532,'ARPAN','ARPAN SUBHASHCHANDRA SHAH',NULL,NULL,NULL,'GEN','Y','pranav','2020-01-18 12:17:49',NULL,NULL),(0,1533,'DIKSHA','DIKSHA ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2020-01-18 12:30:41',NULL,NULL),(0,1534,'','N.R.ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2020-01-21 09:54:02',NULL,NULL),(0,1535,'NETRA','NETRA ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2020-01-22 16:23:05',NULL,NULL),(0,1536,'LIFE','LIFE LINE SURGICHEM(INDIA)PVT.LTD.',NULL,NULL,NULL,'GEN','Y','pranav','2020-01-22 17:00:59',NULL,NULL),(0,1537,'NEXUS','NEXUS MEDICAL SYSTEMS',NULL,NULL,NULL,'GEN','Y','pranav','2020-01-24 09:59:57',NULL,NULL),(0,1538,'BHOGILAL','BHOGILAL & SONS',NULL,NULL,NULL,'GEN','Y','pranav','2020-01-27 09:51:00',NULL,NULL),(0,1539,'CONVATE','CONVATE ',NULL,NULL,NULL,'GEN','Y','sagar','2020-02-01 19:22:35',NULL,NULL),(0,1540,'','R.S.ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2020-02-03 12:29:00',NULL,NULL),(0,1541,'VISIONARY','VISIONARY HEALTHCARE',NULL,NULL,NULL,'GEN','Y','pranav','2020-02-03 12:51:54',NULL,NULL),(0,1542,'PRABHAT','PRABHAT PHARMA DISTRIBUTORS',NULL,NULL,NULL,'GEN','Y','narendra','2020-02-05 17:18:20',NULL,NULL),(0,1543,'BOMBAY','BOMBAY FIRE SAFETY',NULL,NULL,NULL,'GEN','Y','pranav','2020-02-08 15:29:55',NULL,NULL),(0,1544,'CLOUDTAIL','CLOUDTAIL INDIA PRIVATE LIMITED(AMAZON.IN)',NULL,NULL,NULL,'GEN','Y','pranav','2020-02-11 12:34:12',NULL,NULL),(0,1545,'SHUBHAM','SHUBHAM ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2020-02-12 15:09:53',NULL,NULL),(0,1546,'RUSHABH','RUSHABH CHEMIST',NULL,NULL,NULL,'GEN','Y','pranav','2020-02-15 12:07:19',NULL,NULL),(0,1547,'NOVOGENE','NOVOGENE LIFESCIENCES PRIVATE LIMITED',NULL,NULL,NULL,'GEN','Y','pranav','2020-02-17 09:50:50',NULL,NULL),(0,1548,'SAKARIA','SAKARIA PLASTICS',NULL,NULL,NULL,'GEN','Y','pranav','2020-02-18 17:38:43',NULL,NULL),(0,1549,'BHUPI','BHUPI OPTICALS',NULL,NULL,NULL,'GEN','Y','pranav','2020-02-20 09:56:01',NULL,NULL),(0,1550,'CARE','CARE PHARMA',NULL,NULL,NULL,'GEN','Y','pranav','2020-02-21 09:37:49',NULL,NULL),(0,1551,'','BOEHRINGER INGELHEIM INDIA PVT LTD',NULL,NULL,NULL,'GEN','Y','vikram','2020-02-21 15:29:48',NULL,NULL),(0,1552,'','PORTEX',NULL,NULL,NULL,'GEN','Y','vikram','2020-02-23 15:28:55',NULL,NULL),(0,1553,'KABIR','KABIR TECHNOLIGIES PVT.LTD',NULL,NULL,NULL,'GEN','Y','pranav','2020-02-26 16:06:12',NULL,NULL),(0,1554,'JAY','JAY AMBE ELECTRIC WORKS',NULL,NULL,NULL,'GEN','Y','pranav','2020-03-03 09:35:01',NULL,NULL),(0,1555,'NICO','NICO INDUSTRIAL SOLUTIONS',NULL,NULL,NULL,'GEN','Y','pranav','2020-03-03 14:21:31',NULL,NULL),(0,1556,'DHRUVESHA','DHRUVESHA SIGN',NULL,NULL,NULL,'GEN','Y','pranav','2020-03-03 16:50:43',NULL,NULL),(0,1557,'SHREE','SHREE SWAMINARAYAN TRADERS',NULL,NULL,NULL,'GEN','Y','pranav','2020-03-04 09:33:36',NULL,NULL),(0,1558,'GIRIVARYA','GIRIVARYA EXPORT',NULL,NULL,NULL,'GEN','Y','pranav','2020-03-09 09:38:48',NULL,NULL),(0,1559,'R.KUMAR','R.KUMAR METALS',NULL,NULL,NULL,'GEN','Y','pranav','2020-03-09 10:40:09',NULL,NULL),(0,1560,'ZUVENTUS','ZUVENTUS ',NULL,NULL,NULL,'GEN','Y','sagar','2020-03-09 23:17:41',NULL,NULL),(0,1561,'','LIFESTAR PHARMA PVT LTD',NULL,NULL,NULL,'GEN','Y','jignesh','2020-03-12 18:09:05',NULL,NULL),(0,1562,'SHREE','SHREE VARAHI MEDICAL AND SURGICAL',NULL,'9328867833',NULL,'GEN','Y','parth','2020-03-17 12:19:35',NULL,NULL),(0,1563,'VIEW','VIEW LABORATORIES ',NULL,NULL,NULL,'GEN','Y','pranav','2020-03-19 16:27:04',NULL,NULL),(0,1564,'R','R H P MEDICAL SERVICES',NULL,NULL,NULL,'GEN','Y','pranav','2020-04-07 10:33:32',NULL,NULL),(0,1565,'SURGI','SURGI WORLD HEALTHCARE SYSTEMS',NULL,NULL,NULL,'GEN','Y','pranav','2020-05-12 09:41:08',NULL,NULL),(0,1566,'VELVET','VELVET MEDITEX',NULL,NULL,NULL,'GEN','Y','pranav','2020-05-12 09:42:11',NULL,NULL),(0,1567,'SL','SAMARTH LIFESICENCE PVT LTD',NULL,NULL,NULL,'GEN','Y','jignesh','2020-05-20 16:51:34',NULL,NULL),(0,1568,'','NUTRICIA INTERNATIONAL PVT.LTD.',NULL,NULL,NULL,'GEN','Y','vikram','2020-05-21 17:41:40',NULL,NULL),(0,1569,'HEALTHIUM ','HEALTHIUM MEDTECH PVT LTD',NULL,NULL,NULL,'GEN','Y','jignesh','2020-05-22 15:22:41',NULL,NULL),(0,1570,'SAHAJANAND','SAHAJANAND TRADERS',NULL,NULL,NULL,'GEN','Y','pranav','2020-05-25 11:13:42',NULL,NULL),(0,1571,'ANGLO','ANGLO-FRENCH DRUG',NULL,NULL,NULL,'GEN','Y','jignesh','2020-05-26 08:54:20',NULL,NULL),(0,1572,'SHREE','SHREE MAHAVIR STATIONERY MART',NULL,NULL,NULL,'GEN','Y','pranav','2020-05-26 11:38:56',NULL,NULL),(0,1573,'NUTR','NUTRICIA',NULL,NULL,NULL,'GEN','Y','jignesh','2020-05-28 16:26:17',NULL,NULL),(0,1574,'NUTRICIA I','NUTRICIA INTERNATIONAL PVT LTD',NULL,NULL,NULL,'GEN','Y','jignesh','2020-05-28 16:27:18',NULL,NULL),(0,1575,'SMVS','SMVS KOTHAR',NULL,NULL,NULL,'GEN','Y','pranav','2020-06-01 15:04:14',NULL,NULL),(0,1576,'SAI','SAI ELECTRICALS',NULL,'9624164220',NULL,'GEN','Y','pranav','2020-06-04 15:29:29',NULL,NULL),(0,1577,'GHANSHYAM','GHANSHYAM ELECTRICALS',NULL,'9427508777',NULL,'GEN','Y','pranav','2020-06-04 15:47:21',NULL,NULL),(0,1578,'CELON','CELON LABS',NULL,NULL,NULL,'GEN','Y','sagar','2020-06-05 19:50:18',NULL,NULL),(0,1579,'MSN LABORA','MSN LABORATORISE PVT LTD',NULL,NULL,NULL,'GEN','Y','jignesh','2020-06-08 15:45:16',NULL,NULL),(0,1580,'BR PHARMAC','BR PHARMACEUTICALS PVT LTD',NULL,NULL,NULL,'GEN','Y','jignesh','2020-06-08 16:04:43',NULL,NULL),(0,1581,'MEDIMARK B','MEDIMARK BIOTECH',NULL,NULL,NULL,'GEN','Y','jignesh','2020-06-08 16:26:18',NULL,NULL),(0,1582,'E-WEBLINK','E-WEBLINK SYSTEMS & CLOUD CONSULTING PVT.LTD',NULL,NULL,NULL,'GEN','Y','pranav','2020-06-09 16:56:52',NULL,NULL),(0,1583,'MANISH PHA','MANISH PHARMASUTICALS LTD',NULL,NULL,NULL,'GEN','Y','jignesh','2020-06-10 17:01:03',NULL,NULL),(0,1584,'J H PHARAM','J H PHARAMACEUTICALS',NULL,NULL,NULL,'GEN','Y','jignesh','2020-06-11 17:16:55',NULL,NULL),(0,1585,'FLAGSHIP I','FLAGSHIP INTERNATIONAL',NULL,NULL,NULL,'GEN','Y','jignesh','2020-06-13 16:17:08',NULL,NULL),(0,1586,'KAVYA','KAVYA ART',NULL,'9998686740',NULL,'GEN','Y','pranav','2020-06-16 12:35:44',NULL,NULL),(0,1587,'ARPIT','ARPIT TRADERS',NULL,NULL,NULL,'GEN','Y','pranav','2020-06-17 12:06:19',NULL,NULL),(0,1588,'','GLAND PHARMA LTD',NULL,NULL,NULL,'GEN','Y','jignesh','2020-06-17 17:28:15',NULL,NULL),(0,1589,'K.M.C.','K.M.C. CURTAIN & MATTRESS',NULL,NULL,NULL,'GEN','Y','pranav','2020-06-18 16:14:55',NULL,NULL),(0,1590,'SHREE','SHREE SALASAR SOLUTION',NULL,NULL,NULL,'GEN','Y','pranav','2020-06-19 14:36:41',NULL,NULL),(0,1591,'','ATOPIC DERMOCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','jignesh','2020-06-19 17:04:03',NULL,NULL),(0,1592,'','MANEESH PHAMACEUTICALS LTD',NULL,NULL,NULL,'GEN','Y','divyang','2020-06-20 15:11:00',NULL,NULL),(0,1593,'SHAKTI','SHAKTI MARKETING',NULL,NULL,NULL,'GEN','Y','pranav','2020-06-22 16:11:07',NULL,NULL),(0,1594,'VAIBHAV','VAIBHAV GARMENT',NULL,'7226057428',NULL,'GEN','Y','pranav','2020-06-25 12:34:24',NULL,NULL),(0,1595,'VISHW','VISHW ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2020-06-25 12:38:12',NULL,NULL),(0,1596,'SLIVERLINE','SLIVERLINE MEDI-TECH PVT.LTD.',NULL,'9998004194',NULL,'GEN','Y','pranav','2020-06-25 12:46:18',NULL,NULL),(0,1597,'ABAJ','ABAJ STORAGE SOLUTIONS',NULL,NULL,NULL,'GEN','Y','pranav','2020-06-29 16:45:13',NULL,NULL),(0,1598,'NOVA NORDI','NOVA NORDISK PRODUCAO',NULL,NULL,NULL,'GEN','Y','jignesh','2020-07-01 14:26:03',NULL,NULL),(0,1599,'KAVYA','KAVYA PROTECTIVE EQUIPMENT',NULL,'8849413590',NULL,'GEN','Y','pranav','2020-07-02 10:21:11',NULL,NULL),(0,1600,'LEXER PHAR','LEXER PHARMACEUTICAL',NULL,NULL,NULL,'GEN','Y','jignesh','2020-07-02 15:52:34',NULL,NULL),(0,1601,'UMA','UMA TOOLS TRADERS',NULL,NULL,NULL,'GEN','Y','pranav','2020-07-03 12:24:16',NULL,NULL),(0,1602,'KRISHNA','KRISHNA ELECTRONICS',NULL,NULL,NULL,'GEN','Y','pranav','2020-07-03 12:27:58',NULL,NULL),(0,1603,'PERPETUAL ','PERPETUAL PHARMACEUTICALS',NULL,NULL,NULL,'GEN','Y','jignesh','2020-07-03 14:04:23',NULL,NULL),(0,1604,'NAVKAR','NAVKAR ENTERPRISE',NULL,'9327022555',NULL,'GEN','Y','pranav','2020-07-04 09:47:54',NULL,NULL),(0,1605,'SHREE','SHREE SALASAR SOLUTION',NULL,'9099019753',NULL,'GEN','Y','pranav','2020-07-07 09:38:53',NULL,NULL),(0,1606,'UMIYA','UMIYA ELECTRICALS',NULL,NULL,NULL,'GEN','Y','pranav','2020-07-07 11:14:51',NULL,NULL),(0,1607,'EARTH','EARTH SYSCOM PRIVATE LIMITED',NULL,NULL,NULL,'GEN','Y','pranav','2020-07-08 10:50:41',NULL,NULL),(0,1608,'','AMAZON',NULL,NULL,NULL,'GEN','Y','pranav','2020-07-08 15:20:55',NULL,NULL),(0,1609,'COVIDIEN M','COVIDIEN MADE IN USA',NULL,NULL,NULL,'GEN','Y','divyang','2020-07-09 12:01:32',NULL,NULL),(0,1610,'HUMAN BIOL','HUMAN BIOLOGICALS INSTITUTE',NULL,NULL,NULL,'GEN','Y','jignesh','2020-07-09 17:06:24',NULL,NULL),(0,1611,'PURE &CURE','PURE &CURE HEALTH CARE PVT LTD ',NULL,NULL,NULL,'GEN','Y','jignesh','2020-07-10 16:36:49',NULL,NULL),(0,1612,'SUCHI','SUCHI COMMUNICATION',NULL,'9426050612',NULL,'GEN','Y','pranav','2020-07-15 09:15:41',NULL,NULL),(0,1613,'PHARMTAK O','PHARMTAK OPHTHALMICS PVT LTD',NULL,NULL,NULL,'GEN','Y','jignesh','2020-07-16 11:56:20',NULL,NULL),(0,1614,'RANCHO','RANCHO ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2020-07-17 13:06:06',NULL,NULL),(0,1615,'DHRUVI','DHRUVI PHARMA PVT.LTD.',NULL,NULL,NULL,'GEN','Y','pranav','2020-07-23 10:42:22',NULL,NULL),(0,1616,'JETHVA','JETHVA GHANSHYAM',NULL,NULL,NULL,'GEN','Y','pranav','2020-07-23 11:17:24',NULL,NULL),(0,1617,'GUFIC','GUFIC  BIOSCIENCES LIMITED ',NULL,NULL,NULL,'GEN','Y','sagar','2020-07-23 20:35:22',NULL,NULL),(0,1618,'BSL','BASIL LIFESCIENCES',NULL,NULL,NULL,'GEN','Y','vikram','2020-07-27 18:18:23',NULL,NULL),(0,1619,'TRISTAR','TRISTAR ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2020-07-29 10:07:30',NULL,NULL),(0,1620,'','R.K.PLASTICS',NULL,NULL,NULL,'GEN','Y','pranav','2020-07-29 10:26:03',NULL,NULL),(0,1621,'GHANSHYAM','GHANSHYAM PLASTIC WORLD',NULL,NULL,NULL,'GEN','Y','pranav','2020-07-29 10:31:13',NULL,NULL),(0,1622,'','GLOWDERMA LAB PVT. LTD ',NULL,NULL,NULL,'GEN','Y','sagar','2020-07-29 13:18:00',NULL,NULL),(0,1623,'RENENTECH','RENENTECH LABORATORIES PVT.LTD.',NULL,NULL,NULL,'GEN','Y','pranav','2020-07-29 14:14:21',NULL,NULL),(0,1624,'','NA',NULL,NULL,NULL,'GEN','Y','VIKRAM','2020-07-29 14:19:47',NULL,NULL),(0,1625,'','BLIZE BIOTECH ',NULL,NULL,NULL,'GEN','Y','sagar','2020-07-30 10:33:15',NULL,NULL),(0,1626,'','HOLLISTER',NULL,NULL,NULL,'GEN','Y','sagar','2020-07-30 10:39:33',NULL,NULL),(0,1627,'GOKUL','GOKUL GARMENTS',NULL,'7226057428',NULL,'GEN','Y','pranav','2020-07-30 14:26:58',NULL,NULL),(0,1628,'ASHA','ASHA TRADERS',NULL,'9825031148',NULL,'GEN','Y','pranav','2020-08-01 10:04:35',NULL,NULL),(0,1629,'MOMAI','MOMAI STATIONERY AND XEROX',NULL,'8758678123',NULL,'GEN','Y','pranav','2020-08-01 10:52:48',NULL,NULL),(0,1630,'','XCURE PHARMACEUTICALS',NULL,NULL,NULL,'GEN','Y','divyang','2020-08-04 10:33:37',NULL,NULL),(0,1631,'AARAV','AARAV ENTERPRISE',NULL,'9904521573',NULL,'GEN','Y','pranav','2020-08-05 11:37:10',NULL,NULL),(0,1632,'','ETHINEXT PHARMA ',NULL,NULL,NULL,'GEN','Y','sagar','2020-08-05 19:18:17',NULL,NULL),(0,1633,'','MYLAN ',NULL,NULL,NULL,'GEN','Y','mihir','2020-08-08 14:32:46',NULL,NULL),(0,1634,'','URIHK',NULL,NULL,NULL,'GEN','Y','mihir','2020-08-10 15:01:10',NULL,NULL),(0,1635,'HARI','HARI GEETA FURNITURE',NULL,NULL,NULL,'GEN','Y','pranav','2020-08-13 10:32:29',NULL,NULL),(0,1636,'BSVL','BHARAT SERUM AND VACCINES LIMITED',NULL,NULL,NULL,'GEN','Y','vikram','2020-08-13 12:12:57',NULL,NULL),(0,1637,'SWASTIK','SWASTIK ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2020-08-19 13:15:40',NULL,NULL),(0,1638,'MARUTI','MARUTI LIFE CARE',NULL,'9725000789',NULL,'GEN','Y','pranav','2020-08-21 12:32:03',NULL,NULL),(0,1639,'SHAYM','SHAYM MEDICAL AGENCY',NULL,'9376149712',NULL,'GEN','Y','pranav','2020-08-21 12:35:58',NULL,NULL),(0,1640,'SHYAM','SHYAM MEDICAL AGENCY',NULL,'9376149712',NULL,'GEN','Y','pranav','2020-08-21 12:38:07',NULL,NULL),(0,1641,'RAJVI','RAJVI ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2020-08-21 18:03:24',NULL,NULL),(0,1642,'BLURANGE','BLURANGE PHARMACEUTICALS',NULL,'9924118591',NULL,'GEN','Y','pranav','2020-08-22 09:31:24',NULL,NULL),(0,1643,'','DELCURE LIFE SCINCES LTD',NULL,NULL,NULL,'GEN','Y','mihir','2020-08-27 17:19:36',NULL,NULL),(0,1644,'','SAFFRON ',NULL,NULL,NULL,'GEN','Y','divyang','2020-09-01 14:17:31',NULL,NULL),(0,1645,'AMBICA','AMBICA TRADING CO.',NULL,'9924297320',NULL,'GEN','Y','pranav','2020-09-03 16:51:03',NULL,NULL),(0,1646,'JK','JK ASSOCIATES',NULL,'9825024050',NULL,'GEN','Y','pranav','2020-09-07 17:00:28',NULL,NULL),(0,1647,'POOJA','POOJA PHOTO FRAMING',NULL,'9824020651',NULL,'GEN','Y','pranav','2020-09-08 09:12:45',NULL,NULL),(0,1648,'KOPRAN','KOPRAN LABORATORIES LTD ',NULL,NULL,NULL,'GEN','Y','sagar','2020-09-08 09:27:19',NULL,NULL),(0,1649,'SHAKSHI','SHAKSHI SALES',NULL,'9825549591',NULL,'GEN','Y','pranav','2020-09-10 09:57:19',NULL,NULL),(0,1650,'','MARKET',NULL,'1234567890',NULL,'GEN','Y','pranav','2020-09-10 12:37:00','pranav','2020-09-10 12:37:54'),(0,1651,'MARKET(PLA','MARKET(PLASTIC BAG)',NULL,NULL,NULL,'GEN','Y','pranav','2020-09-10 12:39:13',NULL,NULL),(0,1652,'NEW','NEW BOMBAY SHOES',NULL,'9714419942',NULL,'GEN','Y','pranav','2020-09-12 09:40:47',NULL,NULL),(0,1653,'DHRUV','DHRUV MARKETING',NULL,'9879081288',NULL,'GEN','Y','pranav','2020-09-12 09:42:47',NULL,NULL),(0,1654,'','PANACEA  BIOTEC PHARMA LTD',NULL,NULL,NULL,'GEN','Y','divyang','2020-09-12 15:52:16',NULL,NULL),(0,1655,'','HIMALAYA ',NULL,NULL,NULL,'GEN','Y','mihir','2020-09-16 19:04:28',NULL,NULL),(0,1656,'LIFESTAR','LIFESTAR PHARMA P.LTD.',NULL,NULL,NULL,'GEN','Y','mihir','2020-09-19 10:29:07',NULL,NULL),(0,1657,'PUSHPA','PUSHPA SALES PVT.LTD.',NULL,NULL,NULL,'GEN','Y','pranav','2020-09-22 12:18:28',NULL,NULL),(0,1658,'AIROX','AIROX TECHNOLOGIES PVT.LTD',NULL,'9764634964',NULL,'GEN','Y','pranav','2020-09-23 12:30:55',NULL,NULL),(0,1659,'SHREE','SHREE SWAMINARAYAN SARVOPARI SIDDHANT UTTEJAK MAND',NULL,NULL,NULL,'GEN','Y','pranav','2020-09-24 09:37:29',NULL,NULL),(0,1660,'SMIT','SMIT REMEDIES',NULL,'9377522422',NULL,'GEN','Y','pranav','2020-09-25 09:49:16',NULL,NULL),(0,1661,'SHREEJI','SHREEJI PHARMADEAL PRIVATE LIMITED',NULL,'9824069974',NULL,'GEN','Y','pranav','2020-09-25 09:54:40',NULL,NULL),(0,1662,'JAYHIND','JAYHIND STEEL SYNDICATE',NULL,'07927543252',NULL,'GEN','Y','pranav','2020-09-25 09:59:08',NULL,NULL),(0,1663,'SHRI','SHRI HARI ART',NULL,'8460792197',NULL,'GEN','Y','pranav','2020-09-26 09:30:43',NULL,NULL),(0,1664,'CONCORD','CONCORD BIOTECH LTD.',NULL,NULL,NULL,'GEN','Y','mihir','2020-09-26 16:46:14',NULL,NULL),(0,1665,'SMITHS','SMITHS MEDICAL CZECH REPUBLIC','CSINDIA@SMITHS-MEDICAL.COM','9724304361',NULL,'GEN','Y','mihir','2020-10-01 10:56:23',NULL,NULL),(0,1666,'SI','SUTURE INDIA',NULL,NULL,NULL,'GEN','Y','vikram','2020-10-03 12:50:44',NULL,NULL),(0,1667,'','GENO PHARMACEUTICAL',NULL,NULL,NULL,'GEN','Y','jimit','2020-10-04 13:16:59',NULL,NULL),(0,1668,'','CENTAUR PHARMACEUTICALS LTD',NULL,NULL,NULL,'GEN','Y','jimit','2020-10-05 09:40:39',NULL,NULL),(0,1669,'','G D PHARMACEUTICALS PVT LTD',NULL,NULL,NULL,'GEN','Y','sagar','2020-10-05 16:17:42',NULL,NULL),(0,1670,'','SAIBLISS HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','sagar','2020-10-05 16:42:20',NULL,NULL),(0,1671,'EURASIA','EURASIA HEALTH CARE LLP',NULL,NULL,NULL,'GEN','Y','mihir','2020-10-06 15:35:12',NULL,NULL),(0,1672,'STOE','STOE LIFE PRIVATE LIMITED',NULL,NULL,NULL,'GEN','Y','pranav','2020-10-06 16:40:41',NULL,NULL),(0,1673,'OSIA','OSIA SUPER MALL',NULL,NULL,NULL,'GEN','Y','pranav','2020-10-08 13:44:16',NULL,NULL),(0,1674,'','M.Z.ENTERPRISE',NULL,'9173913518',NULL,'GEN','Y','pranav','2020-10-08 15:16:37',NULL,NULL),(0,1675,'SHIVAM','SHIVAM PLASTIC',NULL,'9374282808',NULL,'GEN','Y','pranav','2020-10-10 16:31:29',NULL,NULL),(0,1676,'AMEE','AMEE PHARMA CHEM',NULL,'07926612147',NULL,'GEN','Y','pranav','2020-10-10 16:32:51',NULL,NULL),(0,1677,'MATIAS','MATIAS HEALTHCARE P.LTD.',NULL,NULL,NULL,'GEN','Y','mihir','2020-10-12 19:10:12',NULL,NULL),(0,1678,'LIFECARE','LIFECARE NEURO PRODUCTS LTD.',NULL,NULL,NULL,'GEN','Y','mihir','2020-10-12 19:20:28',NULL,NULL),(0,1679,'AJANTA','AJANTA METALS','ajantametals@gmail.com','9727753446',NULL,'GEN','Y','pranav','2020-10-13 09:51:05',NULL,NULL),(0,1680,'RESPICARE','RESPICARE SOLUTIONS','enquiry@respicare.co.in','02222005405',NULL,'GEN','Y','divyang','2020-10-14 15:47:14',NULL,NULL),(0,1681,'DISCOVERY',' MANKIND PHARMA LTD',NULL,NULL,NULL,'GEN','Y','divyang','2020-10-14 17:39:30',NULL,NULL),(0,1682,'MADIFORS','MADIFORS HELTHCARE P.LTD.',NULL,NULL,NULL,'GEN','Y','divyang','2020-10-14 17:45:03',NULL,NULL),(0,1683,'HEALTHKRAF','HEALTHKRAFT',NULL,'07948000763',NULL,'GEN','Y','pranav','2020-10-15 09:17:48',NULL,NULL),(0,1684,'SHLOK','SHLOK FIRE AND SAFETY SOLUTIONS',NULL,NULL,NULL,'GEN','Y','pranav','2020-10-15 15:53:04',NULL,NULL),(0,1685,'BERGER','BERGER PAINTS INDIA',NULL,NULL,NULL,'GEN','Y','pranav','2020-10-15 16:06:34',NULL,NULL),(0,1686,'LALAN','LALAN AIR PRODUCTS',NULL,NULL,NULL,'GEN','Y','pranav','2020-10-15 16:13:01',NULL,NULL),(0,1687,'JIYA','JIYA SURGICHEM PVT.LTD','INFO@JIYASURGICHEM.COM','9904088113',NULL,'GEN','Y','pranav','2020-10-17 09:16:59',NULL,NULL),(0,1688,'PHONE','PHONE WALE',NULL,NULL,NULL,'GEN','Y','pranav','2020-10-17 11:21:27',NULL,NULL),(0,1689,'DORA','DORA MEDICAL TRADING',NULL,NULL,NULL,'GEN','Y','mihir','2020-10-17 11:50:31',NULL,NULL),(0,1690,'SYNEURON','SYNEURON HEALTHCARE.',NULL,NULL,NULL,'GEN','Y','divyang','2020-10-21 16:09:05',NULL,NULL),(0,1691,'RAJDEEP','RAJDEEP INDUSTRIES',NULL,'9824019233',NULL,'GEN','Y','pranav','2020-10-22 12:35:03',NULL,NULL),(0,1692,'MEDITREX','MEDITREX PHARMA',NULL,NULL,NULL,'GEN','Y','divyang','2020-10-22 17:24:55',NULL,NULL),(0,1693,'AALOKIT','AALOKIT INDUSTRIES',NULL,NULL,NULL,'GEN','Y','pranav','2020-10-23 15:21:06',NULL,NULL),(0,1694,'PHAMED','PHAMED LTD.',NULL,NULL,NULL,'GEN','Y','divyang','2020-10-26 18:14:10',NULL,NULL),(0,1695,'VIDAKEM','VIDAKEM LIFECIENCES P. LTD.',NULL,NULL,NULL,'GEN','Y','divyang','2020-10-27 19:54:28',NULL,NULL),(0,1696,'CONVERGE','CONVERGE BIOTECH PVT LTD ',NULL,NULL,NULL,'GEN','Y','sagar','2020-10-28 20:29:26',NULL,NULL),(0,1697,'ALPHA','ALPHA ENTERPRISE',NULL,'8866045969',NULL,'GEN','Y','pranav','2020-10-30 11:39:05',NULL,NULL),(0,1698,'HELIOS','HELIOS LABORATORIES',NULL,NULL,NULL,'GEN','Y','Viresh','2020-11-04 15:51:51',NULL,NULL),(0,1699,'KRUSHNA','KRUSHNA TRADERS',NULL,'9904246101',NULL,'GEN','Y','pranav','2020-11-05 14:19:49',NULL,NULL),(0,1700,'RAVI','RAVI INFOSYS',NULL,'9824499783',NULL,'GEN','Y','pranav','2020-11-07 10:03:38',NULL,NULL),(0,1701,'','DR.LAPTOP',NULL,'8758743397',NULL,'GEN','Y','pranav','2020-11-07 10:11:30',NULL,NULL),(0,1702,'VIRCHOW','VIRCHOW BIOTECH PVT LTD',NULL,NULL,NULL,'GEN','Y','viresh','2020-11-10 15:23:02',NULL,NULL),(0,1703,'EVEREST','EVEREST WATER SOLUTION',NULL,'9173821157',NULL,'GEN','Y','pranav','2020-11-11 09:15:33',NULL,NULL),(0,1704,'ALTEUS','ALTEUS BIOGENICS PVT.LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2020-11-12 20:14:26',NULL,NULL),(0,1705,'SAINATH','SAINATH SALES AGENCY',NULL,'9825066410',NULL,'GEN','Y','pranav','2020-11-16 08:06:04',NULL,NULL),(0,1706,'UNITED','UNITED CRITICARE PVT.LTD.',NULL,NULL,NULL,'GEN','Y','divyang','2020-11-17 15:22:53',NULL,NULL),(0,1707,'ORTHOFIX','ORTHOFIX IMPLANTS',NULL,NULL,NULL,'GEN','Y','viresh','2020-11-21 19:52:25',NULL,NULL),(0,1708,'VISION','VISION HEALTHCARE&CONSULTANT',NULL,NULL,NULL,'GEN','Y','viresh','2020-11-23 12:34:47',NULL,NULL),(0,1709,'VERSATILE','VERSATILE CLOUD TECH',NULL,NULL,NULL,'GEN','Y','viresh','2020-11-23 16:51:59',NULL,NULL),(0,1710,'MEDI','MEDI SAFE INTERNATIONAL',NULL,NULL,NULL,'GEN','Y','viresh','2020-11-27 14:16:10',NULL,NULL),(0,1711,'INDIA','INDIA MEDTRONIC P. LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2020-11-28 11:51:04',NULL,NULL),(0,1712,'HELSERIN','HELSE PHARMCEUTICALS',NULL,NULL,NULL,'GEN','Y','viresh','2020-11-30 17:09:27',NULL,NULL),(0,1713,'EVENTIA','EVENTIA PHAMACEUTICALS',NULL,NULL,NULL,'GEN','Y','viresh','2020-12-04 18:45:49',NULL,NULL),(0,1714,'HCM','HCM SURGICAL PVT.LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2020-12-05 20:27:48',NULL,NULL),(0,1715,'INVITROMED','INVITROMED DEVICES',NULL,'9879001309',NULL,'GEN','Y','pranav','2020-12-11 10:07:31',NULL,NULL),(0,1716,'MIDMARK','MIDMARK (INDIA) PRIVATE LIMITED',NULL,'02602562406',NULL,'GEN','Y','pranav','2020-12-11 10:30:31',NULL,NULL),(0,1717,'AJINKYA','AJINKYA AGENCIES',NULL,'7779001504',NULL,'GEN','Y','pranav','2020-12-12 11:56:18',NULL,NULL),(0,1718,'','LABORATOIRES GRIFFON PVT LTD',NULL,NULL,NULL,'GEN','Y','viresh','2020-12-14 18:54:54',NULL,NULL),(0,1719,'','FORGE PHARMACEUTICAL',NULL,NULL,NULL,'GEN','Y','viresh','2020-12-16 17:42:11',NULL,NULL),(0,1720,'ENOCLOT','ROSELABS BIOSCINCE LTD',NULL,NULL,NULL,'GEN','Y','viresh','2020-12-19 18:41:50',NULL,NULL),(0,1721,'','CURE N CURE PHARMACEUTICALS',NULL,NULL,NULL,'GEN','Y','viresh','2020-12-21 18:34:46',NULL,NULL),(0,1722,'FERRING','FERRING PHARMACEUTICALS PVT. LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2020-12-23 16:53:46',NULL,NULL),(0,1723,'BENNET','BENNET PHARMACEUTICALS LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2020-12-28 14:36:04',NULL,NULL),(0,1724,'LYKA','LYKA HELTHCRE LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2020-12-28 18:32:16',NULL,NULL),(0,1725,'MARKET','MARKET',NULL,NULL,NULL,'GEN','Y','pranav','2020-12-30 14:23:31','pranav','2020-12-30 14:24:16'),(0,1726,'MARKET','MARKET (CASH)',NULL,NULL,NULL,'GEN','Y','pranav','2020-12-30 14:25:32',NULL,NULL),(0,1727,'V.S.AGARAV','V.S.AGARVAL',NULL,'9327003283',NULL,'GEN','Y','pranav','2020-12-30 14:27:03',NULL,NULL),(0,1728,'','ZEUS ORTHOCARE PVT.LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2020-12-31 12:15:45',NULL,NULL),(0,1729,'SIMA','SIMA ENTERPRISE',NULL,NULL,NULL,'GEN','Y','viresh','2020-12-31 18:56:51',NULL,NULL),(0,1730,'GENNOVA','GENNOVA BIOPHARMACEUTICALS LTD',NULL,NULL,NULL,'GEN','Y','viresh','2021-01-05 18:11:02',NULL,NULL),(0,1731,'PROMINENT','PROMINENT HEALTHCARE',NULL,'9998848031',NULL,'GEN','Y','pranav','2021-01-06 09:10:18',NULL,NULL),(0,1732,'GLOBAL','GLOBAL SURGITECH EQUIPMENTS',NULL,NULL,NULL,'GEN','Y','narendra1','2021-01-06 17:20:38',NULL,NULL),(0,1733,'ADITYA','ADITYA UNIFORMS PVT.LTD.',NULL,'9428111145',NULL,'GEN','Y','pranav','2021-01-08 09:17:09',NULL,NULL),(0,1734,'PAL','PAL ENTERPRISES',NULL,NULL,NULL,'GEN','Y','viresh','2021-01-09 18:22:59',NULL,NULL),(0,1735,'','MEPROMAX LIFESCIENCES P.LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2021-01-11 16:54:26',NULL,NULL),(0,1736,'JAIVIK','JAIVIK ELECTRICALS',NULL,'9426356044',NULL,'GEN','Y','pranav','2021-01-12 16:11:54',NULL,NULL),(0,1737,'','BARD INDIA HEALTHCARE P.LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2021-01-19 12:55:33',NULL,NULL),(0,1738,'HARSH','HARSH LIFE SCIENCE PVT LTD',NULL,NULL,NULL,'GEN','Y','viresh','2021-01-23 15:49:13',NULL,NULL),(0,1739,'','MADINAL LIFESCIENCES',NULL,NULL,NULL,'GEN','Y','viresh','2021-01-23 19:16:47',NULL,NULL),(0,1740,'RAJSUN','RAJSUN INNOVATIONS LLP',NULL,'7069660011',NULL,'GEN','Y','pranav','2021-01-27 11:54:08',NULL,NULL),(0,1741,'SWAMINARAY','SWAMINARAYAN PLYWOOD & HARDWARE',NULL,'9998000644',NULL,'GEN','Y','pranav','2021-02-02 09:17:00',NULL,NULL),(0,1742,'ALCON','ALCON LABORATORIES (INDIA) PRIVATE LIMITED',NULL,'08040064600',NULL,'GEN','Y','pranav','2021-02-03 10:42:14',NULL,NULL),(0,1743,'TYNOR','TYNOR ORTHOTICS PVT.LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2021-02-11 18:46:05',NULL,NULL),(0,1744,'','EISAI PHARMACEUTICALS I. P.LTD',NULL,NULL,NULL,'GEN','Y','viresh','2021-02-15 18:50:34',NULL,NULL),(0,1745,'NOVARTIS','NOVARTIS HEALTHCARE P LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2021-02-20 19:38:28',NULL,NULL),(0,1746,'HI-TECH','HI-TECH SURGICAL SYSTEMS LLP',NULL,'7710074000',NULL,'GEN','Y','pranav','2021-03-01 10:11:08',NULL,NULL),(0,1747,'WESTERN','WESTERN TRADING COMPANY',NULL,'9825006579',NULL,'GEN','Y','pranav','2021-03-01 10:36:18',NULL,NULL),(0,1748,'SAHIL','SAHIL INDUSTRIES',NULL,'9426412531',NULL,'GEN','Y','pranav','2021-03-02 15:50:01',NULL,NULL),(0,1749,'GRAVITY','GRAVITY ADVERTISIGNING AND DESIGNING',NULL,NULL,NULL,'GEN','Y','pranav','2021-03-03 16:30:33',NULL,NULL),(0,1750,'','ETHICARE REMEDIES',NULL,NULL,NULL,'GEN','Y','viresh','2021-03-03 18:52:37',NULL,NULL),(0,1751,'','PAN HEALTHCARE PVT.LTD',NULL,NULL,NULL,'GEN','Y','viresh','2021-03-03 20:21:09',NULL,NULL),(0,1752,'','PAN HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','viresh','2021-03-04 19:37:32',NULL,NULL),(0,1753,'LORD\'S','LORD\'S SHOES',NULL,'9879212430',NULL,'GEN','Y','pranav','2021-03-05 16:14:10',NULL,NULL),(0,1754,'','ORTHO MAX',NULL,NULL,NULL,'GEN','Y','viresh','2021-03-06 10:35:38',NULL,NULL),(0,1755,'','MICROGEN HYGLENE P.LTD',NULL,NULL,NULL,'GEN','Y','viresh','2021-03-06 19:16:06',NULL,NULL),(0,1756,'','BOSTON',NULL,NULL,NULL,'GEN','Y','viresh','2021-03-08 17:37:32',NULL,NULL),(0,1757,'','CURIOUS BIOTECH',NULL,NULL,NULL,'GEN','Y','viresh','2021-03-10 19:00:14',NULL,NULL),(0,1758,'','A D SURGICAL',NULL,NULL,NULL,'GEN','Y','viresh','2021-03-11 13:34:28',NULL,NULL),(0,1759,'VEDICS','VEDICS MEDICARE',NULL,'07948002372',NULL,'GEN','Y','pranav','2021-03-14 09:58:37',NULL,NULL),(0,1760,'','SMITH & NEPHEW HELTHCARE PVT. LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2021-03-14 11:27:54',NULL,NULL),(0,1761,'BDR','BDR PHARMACEUTICALS INT.PVT.LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2021-03-17 16:52:02',NULL,NULL),(0,1762,'SANI','SANI ENTERPRISE',NULL,'9662694521',NULL,'GEN','Y','pranav','2021-03-24 10:16:02',NULL,NULL),(0,1763,'','BIOZEN HEALTHCARE',NULL,NULL,NULL,'GEN','Y','viresh','2021-03-26 20:15:26',NULL,NULL),(0,1764,'','DERMACARE SURGICALS P.LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2021-03-27 19:10:15',NULL,NULL),(0,1765,'LAB','LAB MEDICA SYSTEMS PVT.LTD',NULL,NULL,NULL,'GEN','Y','pranav','2021-03-30 14:48:33',NULL,NULL),(0,1766,'LAB','LAB MEDICA SYSTEMS PVT.LTD',NULL,'07926574383',NULL,'GEN','Y','pranav','2021-03-31 13:40:32',NULL,NULL),(0,1767,'','LIN CARE MAHILA GRIHA UDHYOG CO.',NULL,'9979769818',NULL,'GEN','Y','pranav','2021-03-31 16:34:11',NULL,NULL),(0,1768,'','HELAX HEALTH CARE PVT.LTD.',NULL,NULL,NULL,'GEN','Y','vikram','2021-03-31 17:34:46',NULL,NULL),(0,1769,'','MPHIA HEALTHCARE',NULL,NULL,NULL,'GEN','Y','vikram','2021-03-31 17:35:37',NULL,NULL),(0,1770,'COVALENT','COVALENT HEALTHCARE',NULL,NULL,NULL,'GEN','Y','viresh','2021-03-31 21:38:44',NULL,NULL),(0,1771,'OLSKI','OLCARE LABORATORIES',NULL,NULL,NULL,'GEN','Y','viresh','2021-03-31 21:45:08',NULL,NULL),(0,1772,'','BIOCON BIOLOGICS INDIA LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2021-03-31 22:10:37',NULL,NULL),(0,1773,'','CHIRON SURGIMED LLP',NULL,NULL,NULL,'GEN','Y','viresh','2021-04-01 21:47:35',NULL,NULL),(0,1774,'INDIAN','INDIAN SAFETY SOLUTION',NULL,NULL,NULL,'GEN','Y','pranav','2021-04-07 17:30:41',NULL,NULL),(0,1775,'','ATOPIC LABORATORIES PVT LTD',NULL,NULL,NULL,'GEN','Y','viresh','2021-04-08 14:12:19',NULL,NULL),(0,1776,'Z','Z PLUS DISPOSABLE PRIVATE LIMITED',NULL,'9054406593',NULL,'GEN','Y','pranav','2021-04-09 11:59:01',NULL,NULL),(0,1777,'','AYUNUTRA PHARMACEUTICAL',NULL,NULL,NULL,'GEN','Y','viresh','2021-04-09 17:28:21',NULL,NULL),(0,1778,'HONESTATTV','HONESTATTVA IT SOLUTIONS PVT.LTD',NULL,NULL,NULL,'GEN','Y','pranav','2021-04-12 15:18:46',NULL,NULL),(0,1779,'SAINATH','SAINATH SALES AGENCY',NULL,NULL,NULL,'GEN','Y','pranav','2021-04-12 17:30:11',NULL,NULL),(0,1780,'','AKUMS DRUGS & PHARMACEUTICALS LTD',NULL,NULL,NULL,'GEN','Y','viresh','2021-04-15 15:59:38',NULL,NULL),(0,1781,'','VYGON VALUE LIFE',NULL,NULL,NULL,'GEN','Y','viresh','2021-04-15 16:48:38',NULL,NULL),(0,1782,'','SHREE BHAVANI PHARMACEUTICALS',NULL,NULL,NULL,'GEN','Y','viresh','2021-04-21 11:21:28',NULL,NULL),(0,1783,'GANESH','GANESH MEDICARE',NULL,'9825616310',NULL,'GEN','Y','pranav','2021-04-22 12:06:53',NULL,NULL),(0,1784,'SHREE','SHREE RAM MARKETING',NULL,'9909142093',NULL,'GEN','Y','pranav','2021-04-22 13:23:23',NULL,NULL),(0,1785,'','NATCO PHARMA LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2021-04-26 17:03:17',NULL,NULL),(0,1786,'','VARENYM HEALTHCARE P. LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2021-04-28 16:09:43',NULL,NULL),(0,1787,'','EXOTICA REFRESH',NULL,NULL,NULL,'GEN','Y','viresh','2021-04-28 18:57:01',NULL,NULL),(0,1788,'','VARDHMAN ENTERPRISE',NULL,NULL,NULL,'GEN','Y','viresh','2021-04-30 11:12:13',NULL,NULL),(0,1789,'LAXMI','LAXMI BIOTECH ',NULL,'9428688317',NULL,'GEN','Y','pranav','2021-04-30 11:27:19',NULL,NULL),(0,1790,'','BHARAT PARENTERALS LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2021-04-30 18:32:25',NULL,NULL),(0,1791,'','TREATWELL PHARMA',NULL,NULL,NULL,'GEN','Y','viresh','2021-05-01 13:11:13',NULL,NULL),(0,1792,'TITHI','TITHI ASSOCIATES',NULL,'9974490569',NULL,'GEN','Y','pranav','2021-05-03 10:46:14',NULL,NULL),(0,1793,'XENON','XENON PHARMA PVT. LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2021-05-03 12:46:45',NULL,NULL),(0,1794,'','SAFECON LIFESCIENCES PVT.LTD.',NULL,NULL,NULL,'GEN','Y','viresh','2021-05-03 12:52:26',NULL,NULL),(0,1795,'DEV','DEV ENTERPRISE',NULL,'9909861112',NULL,'GEN','Y','pranav','2021-05-04 10:28:10',NULL,NULL),(0,1796,'','LIFE-O-LINE TECHNOLOGIST',NULL,NULL,NULL,'GEN','Y','viresh','2021-05-04 11:22:38',NULL,NULL),(0,1797,'','LIFE-O-LINE TECNOLOGIST',NULL,NULL,NULL,'GEN','Y','viresh','2021-05-04 12:36:00',NULL,NULL),(0,1798,'','KAYVEE ',NULL,NULL,NULL,'GEN','Y','viresh','2021-05-05 19:48:25',NULL,NULL),(0,1799,'PROTECH','PROTECH TELELINKS',NULL,NULL,NULL,'GEN','Y','vikram','2021-05-06 17:06:42',NULL,NULL),(0,1800,'GILEAD','GILEAD SCIENCES INC',NULL,NULL,NULL,'GEN','Y','viresh','2021-05-07 17:46:37',NULL,NULL),(0,1801,'AKSHAYA','AKSHAYA ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2021-05-10 14:24:07',NULL,NULL),(0,1802,'','6IPAIN HELTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-05-10 22:47:19',NULL,NULL),(0,1803,'AAN','AAN PHARMA PVT LTD',NULL,NULL,NULL,'GEN','Y','viresh','2021-05-11 19:39:41',NULL,NULL),(0,1804,'PCI','PHARMA CORP.INC.(P) LTD.',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-05-12 15:43:10',NULL,NULL),(0,1805,'NEWPEX','NEWPEX ENTERPRISE',NULL,'9879522746',NULL,'GEN','Y','pranav','2021-05-12 15:57:11',NULL,NULL),(0,1806,'PHP','PHP LIFESCIENCES LLP',NULL,NULL,NULL,'GEN','Y','viresh','2021-05-12 18:36:33',NULL,NULL),(0,1807,'','ZYDUS HEALTHCARE LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-05-13 19:25:50',NULL,NULL),(0,1808,'JYOTI','JYOTI CNC AUTOMATION LIMITED',NULL,NULL,NULL,'GEN','Y','pranav','2021-05-20 11:22:00',NULL,NULL),(0,1809,'','SYNGENE INTI LTD',NULL,NULL,NULL,'GEN','Y','viresh','2021-05-20 15:56:50',NULL,NULL),(0,1810,'BAYER','BAYER ZYDUS PHARMA PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-05-27 10:47:03',NULL,NULL),(0,1811,'ICON','ICON LIFE SCIENES',NULL,NULL,NULL,'GEN','Y','viresh','2021-05-27 18:01:07',NULL,NULL),(0,1812,'','LUMEN SURGICALS',NULL,NULL,NULL,'GEN','Y','viresh','2021-05-29 11:33:13',NULL,NULL),(0,1813,'','SYDLER REMEDIES PVT LTD',NULL,NULL,NULL,'GEN','Y','viresh','2021-05-31 14:24:06',NULL,NULL),(0,1814,'RBC','RBC DIAGNOSTICS',NULL,NULL,NULL,'GEN','Y','pranav','2021-06-02 11:59:37',NULL,NULL),(0,1815,'GALDERMA','GALDERMA INDIA PVT LTD',NULL,NULL,NULL,'GEN','Y','viresh','2021-06-02 17:12:44',NULL,NULL),(0,1816,'CELAGENEX','CELATENEX RESEARCH (I) PVT LTD',NULL,NULL,NULL,'GEN','Y','viresh','2021-06-04 17:06:31',NULL,NULL),(0,1817,'','VITAL HEALTHCARE SDN.BHD.',NULL,NULL,NULL,'GEN','Y','viresh','2021-06-08 20:06:03',NULL,NULL),(0,1818,'','DKT INDIA',NULL,NULL,NULL,'GEN','Y','viresh','2021-06-10 12:32:03',NULL,NULL),(0,1819,'BIOID','BIOID TECHNOLOGIES',NULL,NULL,NULL,'GEN','Y','pranav','2021-06-11 09:42:53',NULL,NULL),(0,1820,'JYOT','JYOT SURGICAL',NULL,NULL,NULL,'GEN','Y','pranav','2021-06-11 09:55:58',NULL,NULL),(0,1821,'','PROCTER & GAMBLE HEALTH LTD',NULL,NULL,NULL,'GEN','Y','viresh','2021-06-14 19:10:36',NULL,NULL),(0,1822,'VEERA','VEERA HEALTHCARE',NULL,'8000866429',NULL,'GEN','Y','pranav','2021-06-16 09:56:56',NULL,NULL),(0,1823,'DRESS','DRESS CODE UNIFORM',NULL,NULL,NULL,'GEN','Y','pranav','2021-06-16 10:10:43',NULL,NULL),(0,1824,'LIFECARE','LIFECARE BIOSCIENCES P LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-06-16 11:35:15',NULL,NULL),(0,1825,'AHA','AHA CARE SOLUTIONS',NULL,NULL,NULL,'GEN','Y','pranav','2021-06-16 16:24:03',NULL,NULL),(0,1826,'','MEGACURE HYGIENE',NULL,NULL,NULL,'GEN','Y','viresh','2021-06-18 18:29:06',NULL,NULL),(0,1827,'AMANTA','AMANTA HEALTH CARE LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-06-22 15:59:30',NULL,NULL),(0,1828,'ACULIFE','ACULIFE HEALTH CARE P. LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-06-22 16:06:05',NULL,NULL),(0,1829,'','VITABIOTICS',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-06-22 17:13:03',NULL,NULL),(0,1830,'JAY','JAY SOMNATH HEALTHCARE',NULL,'9998969548',NULL,'GEN','Y','pranav','2021-06-23 12:58:50',NULL,NULL),(0,1831,'RAJESHWARI','RAJESHWARI STEEL ART',NULL,NULL,NULL,'GEN','Y','pranav','2021-06-23 13:03:40',NULL,NULL),(0,1832,'UMAROSE','UMAROSE NURSERY & FARM',NULL,NULL,NULL,'GEN','Y','pranav','2021-06-24 10:23:53',NULL,NULL),(0,1833,'RMTPL','RADHE MEDTECH P LTD.',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-06-24 19:17:59',NULL,NULL),(0,1834,'LAXMI','LAXMI VASAN BHANDAR',NULL,NULL,NULL,'GEN','Y','pranav','2021-06-29 13:52:37',NULL,NULL),(0,1835,'','CELAGENEX RESEARCH (I) P. LTD.',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-06-29 17:41:07',NULL,NULL),(0,1836,'','AISHWARYA HEALTHCARE',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-07-08 17:29:49',NULL,NULL),(0,1837,'','JM LIFESCIENCES PVT.LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-07-12 19:37:49',NULL,NULL),(0,1838,'','SURETECH',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-07-13 19:28:50',NULL,NULL),(0,1839,'','STERI - WELL (INDIA)',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-07-13 19:36:21',NULL,NULL),(0,1840,'AZTEC','AZTEC ENTERPRISE',NULL,'9825553716',NULL,'GEN','Y','pranav','2021-07-14 10:28:58',NULL,NULL),(0,1841,'KAILASH','KAILASH TRADERS',NULL,NULL,NULL,'GEN','Y','pranav','2021-07-14 10:48:02',NULL,NULL),(0,1842,'','ORTHOFLEX MEDISYS(I) P.LTD.',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-07-14 17:40:57',NULL,NULL),(0,1843,'','FLAGSHIP BIOTECH INTERNATIONAL P. LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-07-15 13:36:04',NULL,NULL),(0,1844,'','J & J DEP',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-07-17 12:29:08',NULL,NULL),(0,1845,'','SHREE SWAMINARAYAN ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2021-07-19 10:19:48',NULL,NULL),(0,1846,'','HARSH HEALTH CARE',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-07-19 10:40:35',NULL,NULL),(0,1847,'','LOTUS SURGICALS PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-07-20 14:38:37',NULL,NULL),(0,1848,'','VISION HEALTHCARE',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-07-21 16:26:18',NULL,NULL),(0,1849,'','HUDSON RESPIRATORY CARE',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-07-22 10:54:33',NULL,NULL),(0,1850,'','THEMIS MEDICARE LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-07-22 16:15:16',NULL,NULL),(0,1851,'','ACME PHARMACEUTICALS',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-07-23 18:46:32',NULL,NULL),(0,1852,'','KWALITY PHARMACEUTICALS LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-07-25 10:43:51',NULL,NULL),(0,1853,'CURIS','CURIS ENTERPRISE',NULL,'9825290889',NULL,'GEN','Y','pranav','2021-07-27 13:39:27',NULL,NULL),(0,1854,'LOTUS','LOTUS LABEL INDEUSTRIES',NULL,NULL,NULL,'GEN','Y','pranav','2021-07-29 10:11:11',NULL,NULL),(0,1855,'','BAXTER PHARMACEUTICALS I PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-07-29 15:36:39',NULL,NULL),(0,1856,'DHRUVESHA','DHRUVESHA SIGN',NULL,'9327055800',NULL,'GEN','Y','pranav','2021-08-05 11:51:20',NULL,NULL),(0,1857,'GLOWDERMA','GLOWDERMA LAB PVT. LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-08-10 11:38:44',NULL,NULL),(0,1858,'SMART','SMART LABORATORIES PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-08-13 18:13:52',NULL,NULL),(0,1859,'OUT','OUT COUNTRY FASHIONS',NULL,'9724338877',NULL,'GEN','Y','pranav','2021-08-24 10:14:36',NULL,NULL),(0,1860,'','GERRYSUN PHARMACEUTICAL',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-08-24 20:04:16',NULL,NULL),(0,1861,'CHASE','CHASE INNOVATIONS',NULL,'9227722408',NULL,'GEN','Y','pranav','2021-08-27 09:10:44',NULL,NULL),(0,1862,'BONZER','BONZER PACKAGING',NULL,'9978078779',NULL,'GEN','Y','pranav','2021-08-27 09:36:31',NULL,NULL),(0,1863,'RESMED','RESMED INDIA PVT.LTD.',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-08-27 11:29:24',NULL,NULL),(0,1864,'AZKKA','AZKKA PHARMACEUTICALS P.LTD.',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-08-27 21:27:45',NULL,NULL),(0,1865,'','DIVINE LABORATORIES PVT. LTD.',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-09-01 15:20:39',NULL,NULL),(0,1866,'','B.J.ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2021-09-02 09:51:54',NULL,NULL),(0,1867,'TRION','TRION PHARMA INDIA  LLP',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-09-02 20:40:37',NULL,NULL),(0,1868,'SANOFI','SANOFI INDIA LTD.',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-09-04 16:43:36',NULL,NULL),(0,1869,'ICPA','ICPA HEALTH PRODUCTS LTD.',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-09-04 17:09:09',NULL,NULL),(0,1870,'MAHARAJA','MAHARAJA TRADING CO.',NULL,NULL,NULL,'GEN','Y','pranav','2021-09-05 12:09:59',NULL,NULL),(0,1871,'VISION','VISION PHARMA',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-09-08 18:48:47',NULL,NULL),(0,1872,'MAYUR','MAYUR MEDICAL AGENCY PVT.LTD',NULL,NULL,NULL,'GEN','Y','pranav','2021-09-10 16:26:37',NULL,NULL),(0,1873,'RUSAN','RUSAN PHARMA LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-09-14 11:05:45',NULL,NULL),(0,1874,'JAY','JAY GURUDEV ASSOCIATES',NULL,'8128981106',NULL,'GEN','Y','pranav','2021-09-16 10:18:33',NULL,NULL),(0,1875,'','KCI MEDICAL INDIA PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-09-17 11:49:00',NULL,NULL),(0,1876,'','KCI MEDICAL I.PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-09-17 11:49:41',NULL,NULL),(0,1877,'','ZEE LIFECARE',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-09-17 18:15:56',NULL,NULL),(0,1878,'','ZEE LIFECARE',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-09-17 18:17:45',NULL,NULL),(0,1879,'','SHREEJI ENTERPRISE  (ODHAV)',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-09-20 15:50:27',NULL,NULL),(0,1880,'','AZILE PHARMA',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-09-21 13:21:09',NULL,NULL),(0,1881,'','MERIDIAN ENTERPRISES PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-09-23 16:11:17',NULL,NULL),(0,1882,'','TEJ ENTERPRISE',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-09-24 17:55:00',NULL,NULL),(0,1883,'ORACLE','ORACLE MEDICAL DEVICES',NULL,NULL,NULL,'GEN','Y','pranav','2021-09-27 09:59:41',NULL,NULL),(0,1884,'JOY','JOY ELECTRONICS',NULL,NULL,NULL,'GEN','Y','pranav','2021-09-27 10:42:15',NULL,NULL),(0,1885,'SUDIR','SUDIR SALES & SERVICES LIMITED',NULL,NULL,NULL,'GEN','Y','pranav','2021-10-01 11:14:39',NULL,NULL),(0,1886,'SG','SG HEALTH CARE',NULL,NULL,NULL,'GEN','Y','pranav','2021-10-06 09:51:36',NULL,NULL),(0,1887,'ITONE','ITONE INDIA INC',NULL,NULL,NULL,'GEN','Y','pranav','2021-10-10 09:57:50',NULL,NULL),(0,1888,'PRIMELIFE','PRIMELIFE NPRODUCTS',NULL,'9898654978',NULL,'GEN','Y','pranav','2021-10-11 10:36:52',NULL,NULL),(0,1889,'NEXTGEN','NEXTGEN HEALTH CARE',NULL,NULL,NULL,'GEN','Y','DIVYANG','2021-10-12 18:14:50',NULL,NULL),(0,1890,'LIVINE','LIVINE MEDICARE',NULL,NULL,NULL,'GEN','Y','pranav','2021-10-19 13:11:12',NULL,NULL),(0,1891,'MERIL','MERIL ENDO SURGERY PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-10-19 17:37:47',NULL,NULL),(0,1892,'UMIYA','UMIYA GRAPHIC & PRINTING',NULL,'8200203511',NULL,'GEN','Y','pranav','2021-10-24 09:27:07',NULL,NULL),(0,1893,'DEV','DEV OMEX MEDICAL',NULL,NULL,NULL,'GEN','Y','pranav','2021-10-24 09:32:53',NULL,NULL),(0,1894,'ARROW','ARROW INTERNATIONAL, INC.',NULL,NULL,NULL,'GEN','Y','DIVYANG','2021-10-29 19:19:09',NULL,NULL),(0,1895,'VENUS','VENUS REMEDIES LTD.',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-11-01 13:41:20',NULL,NULL),(0,1896,'WORLD','WORLD TIME (SEC.21)',NULL,NULL,NULL,'GEN','Y','pranav','2021-11-03 09:35:32',NULL,NULL),(0,1897,'BHAKTI','BHAKTI GRUH UDHYOG',NULL,NULL,NULL,'GEN','Y','pranav','2021-11-12 09:38:56',NULL,NULL),(0,1898,'NOVO','NOVO NORDISK INDIA PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-11-12 18:19:21',NULL,NULL),(0,1899,'KURIZON','KURIZON HEALTHCARE PVT LTD.',NULL,NULL,NULL,'GEN','Y','DIVYANG','2021-11-13 09:16:53',NULL,NULL),(0,1900,'','MEDREICH LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-11-15 16:44:18',NULL,NULL),(0,1901,'','BLUELINE HEALTH CARE',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-11-15 18:44:58',NULL,NULL),(0,1902,'MODERN','MODERN MOTORS',NULL,NULL,NULL,'GEN','Y','pranav','2021-11-18 16:40:41',NULL,NULL),(0,1903,'LIFE','LIFE AID SURGICAL',NULL,NULL,NULL,'GEN','Y','pranav','2021-11-20 12:03:49',NULL,NULL),(0,1904,'SAMYAK','SAMYAK ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2021-11-22 15:27:10',NULL,NULL),(0,1905,'EZ LIFE','EZ LIFE',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-11-23 18:07:37',NULL,NULL),(0,1906,'','SHIV ENTERPRISE',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-11-24 14:07:26',NULL,NULL),(0,1907,'R','R R ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2021-11-26 14:37:12',NULL,NULL),(0,1908,'','KIDNEY KARE',NULL,NULL,NULL,'GEN','Y','vikram','2021-11-27 11:42:19',NULL,NULL),(0,1909,'','FORTUNE',NULL,NULL,NULL,'GEN','Y','vikram','2021-11-27 14:17:52',NULL,NULL),(0,1910,'JAI','JAI GANESH STATIONERS',NULL,'7043576477',NULL,'GEN','Y','pranav','2021-11-30 10:22:01',NULL,NULL),(0,1911,'','TERUMO INDIA PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-11-30 13:34:11',NULL,NULL),(0,1912,'','FRESENIUS KABI INDIA PVT.LTD.',NULL,NULL,NULL,'GEN','Y','DIVYANG','2021-12-03 12:23:03',NULL,NULL),(0,1913,'','GENX PHARMA LTD',NULL,NULL,NULL,'GEN','Y','DIVYANG','2021-12-03 13:13:21',NULL,NULL),(0,1914,'','BIOLOGICAL E LTD',NULL,NULL,NULL,'GEN','Y','DIVYANG','2021-12-03 14:06:30',NULL,NULL),(0,1915,'PHARMED','PHARMED LTD.',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-12-06 12:35:52',NULL,NULL),(0,1916,'','SKL',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-12-08 18:16:30',NULL,NULL),(0,1917,'OAKNET','OAKNET HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-12-10 14:11:15',NULL,NULL),(0,1918,'','HEMAVATI TRADERS PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-12-13 13:56:34',NULL,NULL),(0,1919,'','CAREWIN PHARMACEUTICALS(GUJ.) P.LT',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-12-13 18:33:33',NULL,NULL),(0,1920,'VAISHVI','VAISHVI TRADING CO.',NULL,NULL,NULL,'GEN','Y','pranav','2021-12-15 10:32:10',NULL,NULL),(0,1921,'ST.GEORGE','ST.GEORGE ENGINEERING',NULL,NULL,NULL,'GEN','Y','pranav','2021-12-15 10:37:36',NULL,NULL),(0,1922,'TECHNO','TECHNO GAS SYSTEMS PVT.LTD',NULL,NULL,NULL,'GEN','Y','pranav','2021-12-15 10:40:21',NULL,NULL),(0,1923,'','MARTIN & BROWN BIO-SCIENCES',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-12-15 16:32:12',NULL,NULL),(0,1924,'DIVYA','DIVYA POLY PACK',NULL,NULL,NULL,'GEN','Y','pranav','2021-12-17 10:01:44',NULL,NULL),(0,1925,'','SUNDYOTA NUMANDIS PHARMACEU.P LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-12-17 18:38:12',NULL,NULL),(0,1926,'URMI','URMI FOOTWEAR (LORD\'S SHOES)',NULL,NULL,NULL,'GEN','Y','pranav','2021-12-22 10:16:33',NULL,NULL),(0,1927,'','YASH ENTERPRISE',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-12-22 11:55:06',NULL,NULL),(0,1928,'','AADITYA ENTERPRISES',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-12-23 15:42:12',NULL,NULL),(0,1929,'GSK','GSK PHARMACEUTICALS LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-12-24 16:20:02',NULL,NULL),(0,1930,'','KANJI SHAVJI PAREKH (CULCUTTA) P LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-12-28 18:09:07',NULL,NULL),(0,1931,'CANIXA','CANIXA LIFE SCIENCES PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2021-12-31 17:45:33',NULL,NULL),(0,1932,'JAY','JAY WATER MANAGEMENT PVT LTD',NULL,NULL,NULL,'GEN','Y','pranav','2022-01-03 11:01:23',NULL,NULL),(0,1933,'MEMBRANES','MEMBRANES AND WATER SOLUTION',NULL,NULL,NULL,'GEN','Y','pranav','2022-01-04 09:31:45',NULL,NULL),(0,1934,'','CROMA',NULL,NULL,NULL,'GEN','Y','pranav','2022-01-04 10:18:55',NULL,NULL),(0,1935,'KIDNEY','KIDNEY CARE',NULL,NULL,NULL,'GEN','Y','pranav','2022-01-04 10:32:52',NULL,NULL),(0,1936,'JYOTI','JYOTI SPORTS CO',NULL,NULL,NULL,'GEN','Y','pranav','2022-01-06 14:34:08',NULL,NULL),(0,1937,'','MULTI HEALTH CARE',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-01-07 09:41:12',NULL,NULL),(0,1938,'','EASY',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-01-07 11:47:59',NULL,NULL),(0,1939,'','ASPIRE MEDITECH',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-01-07 19:55:20',NULL,NULL),(0,1940,'GLOVES','ANSELL HEALTHCARE EUROPE N.V.INTERNATIONAL',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-01-10 09:55:59',NULL,NULL),(0,1941,'','KMS MANUFACTURING COMPANY',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-01-12 09:34:34',NULL,NULL),(0,1942,'MAMTA','MAMTA ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2022-01-12 11:24:14',NULL,NULL),(0,1943,'','STANFORD LABORATORIES PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-01-12 13:13:45',NULL,NULL),(0,1944,'','VISION PHARMA',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-01-18 18:28:18',NULL,NULL),(0,1945,'','MORVIN',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-01-19 14:09:10',NULL,NULL),(0,1946,'SUBSET','SUBSET SYSTEMS',NULL,NULL,NULL,'GEN','Y','pranav','2022-01-21 14:19:14',NULL,NULL),(0,1947,'R','R H HEALTHCARE',NULL,NULL,NULL,'GEN','Y','pranav','2022-01-21 15:39:48',NULL,NULL),(0,1948,'','PLASMAGEN BIOSCIENCES PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-01-22 13:02:12',NULL,NULL),(0,1949,'ORISON','ORISON DRUGS',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-01-22 17:20:13',NULL,NULL),(0,1950,'SANZYME','SANZYME (P) LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-01-24 16:55:23',NULL,NULL),(0,1951,'KHODAL','KHODAL FIBRE GLASS',NULL,NULL,NULL,'GEN','Y','pranav','2022-01-29 10:00:43',NULL,NULL),(0,1952,'','NUTRAGENIX HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-01-31 12:02:37',NULL,NULL),(0,1953,'HEALTH','HEALTH WARE PRIVATE LIMITED',NULL,NULL,NULL,'GEN','Y','pranav','2022-02-01 16:01:26',NULL,NULL),(0,1954,'','MEDWIN',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-02-07 19:04:06',NULL,NULL),(0,1955,'','SANKALP DISTRIBUTORS (NAVRANGPURA)',NULL,NULL,NULL,'GEN','Y','pranav','2022-02-10 09:54:44',NULL,NULL),(0,1956,'J','J BIPINCHANDRA AND CO',NULL,NULL,NULL,'GEN','Y','pranav','2022-02-10 10:15:27',NULL,NULL),(0,1957,'','SWASTIK HEALTHCARE',NULL,NULL,NULL,'GEN','Y','divyang','2022-02-11 13:11:21',NULL,NULL),(0,1958,'','LIFE O LIFE TECHNOLOGIST',NULL,NULL,NULL,'GEN','Y','divyang','2022-02-11 17:58:31',NULL,NULL),(0,1959,'KARNAVATI','KARNAVATI TIMBER CORPORATION',NULL,NULL,NULL,'GEN','Y','pranav','2022-02-14 09:58:51',NULL,NULL),(0,1960,'ZENOVA','ZENOVA BIO NUTRITION PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-02-15 14:32:33',NULL,NULL),(0,1961,'SHREE','SHREE SWAMINARAYAN HARDWARE',NULL,NULL,NULL,'GEN','Y','pranav','2022-02-16 11:14:13',NULL,NULL),(0,1962,'','STARMED',NULL,NULL,NULL,'GEN','Y','vikram','2022-02-18 17:38:16',NULL,NULL),(0,1963,'','CENTRAL DRUGS & PHARMACEUTICALS',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-02-18 18:59:01',NULL,NULL),(0,1964,'NICHOLAS','NICHOLAS HEALTHCARE LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-02-19 14:08:10',NULL,NULL),(0,1965,'SPLANG','SPLANG ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2022-02-22 09:26:16',NULL,NULL),(0,1966,'','ESQUIRE DRUG HOUSE',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-02-24 14:34:05',NULL,NULL),(0,1967,'ONE','ONE TOUCH SOLUTION',NULL,'8758965505',NULL,'GEN','Y','pranav','2022-03-05 09:18:42',NULL,NULL),(0,1968,'MEDAX','MEDAX MEDICAL DEVICES I.PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-03-07 11:28:38',NULL,NULL),(0,1969,'METER','METER CENTRE',NULL,NULL,NULL,'GEN','Y','pranav','2022-03-07 15:36:51',NULL,NULL),(0,1970,'COLOGENESI','COLOGENESIS HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-03-08 10:53:40',NULL,NULL),(0,1971,'','HEALTHKRAFT (20-22)',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-03-08 12:42:46',NULL,NULL),(0,1972,'','GLOBUS',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-03-11 16:40:41',NULL,NULL),(0,1973,'MEDITECH','MEDITECH SERVICES',NULL,NULL,NULL,'GEN','Y','pranav','2022-03-14 16:21:21',NULL,NULL),(0,1974,'PACE','PACE BIOTECH',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-03-24 15:59:40',NULL,NULL),(0,1975,'','GNOSIS PHARMACEUTICALS P LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-03-25 18:06:58',NULL,NULL),(0,1976,'','BRAHMANI ENTERPRISE',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-03-28 13:32:08',NULL,NULL),(0,1977,'PARMAR','PARMAR BAG REPAIRS',NULL,NULL,NULL,'GEN','Y','pranav','2022-03-28 15:48:56',NULL,NULL),(0,1978,'SURPLUS','SURPLUS ITEM MARCH 2022',NULL,NULL,NULL,'GEN','Y','pranav','2022-03-29 15:13:50',NULL,NULL),(0,1979,'NAVRATNA','NAVRATNA HARDWARE',NULL,NULL,NULL,'GEN','Y','pranav','2022-04-06 11:16:24',NULL,NULL),(0,1980,'','EO GAS CHEMICAL INDUCATOR',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-04-11 19:21:55',NULL,NULL),(0,1981,'','PHARMATAK OPHTHALMICS (I) PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-04-14 11:13:36',NULL,NULL),(0,1982,'','METRO GOLEN',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-04-15 17:29:26',NULL,NULL),(0,1983,'FAVNOX','FAVNOX PHARMACEUTICALS PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-04-16 17:35:13',NULL,NULL),(0,1984,'','SOL DERMA PHARMACEUTICALS PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-04-22 18:42:23',NULL,NULL),(0,1985,'UNIFIT','UNIFIT CREATION',NULL,NULL,NULL,'GEN','Y','pranav','2022-04-26 13:51:29',NULL,NULL),(0,1986,'SURUSTAP','SURU INTERNATIONAL PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-04-27 18:47:09',NULL,NULL),(0,1987,'','KVEZAL HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-04-29 18:06:16',NULL,NULL),(0,1988,'','BROWNDOVE HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-04-30 14:33:25',NULL,NULL),(0,1989,'','ROYAL SURGICALS',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-05-07 16:17:19',NULL,NULL),(0,1990,'','ELICAD PHARMACEUTICALS PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-05-10 15:51:23',NULL,NULL),(0,1991,'MH','MEDISHRI HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-05-12 14:00:56',NULL,NULL),(0,1992,'MH','MEDISHRI HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-05-12 14:00:48',NULL,NULL),(0,1993,'','MEDISHRI HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-05-12 14:01:20',NULL,NULL),(0,1994,'','MEDISHRI HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-05-12 14:01:23',NULL,NULL),(0,1995,'','MEDISHRI HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-05-12 14:01:19',NULL,NULL),(0,1996,'','MEDISHRI HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-05-12 14:01:03',NULL,NULL),(0,1997,'','MEDISHRI HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-05-12 14:01:37',NULL,NULL),(0,1998,'','MEDISHRI HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-05-12 14:01:37',NULL,NULL),(0,1999,'','T.M. THAKORE PHARMACEUTICAL LABORATORIES',NULL,NULL,NULL,'GEN','Y','ALPA','2022-05-19 15:31:44',NULL,NULL),(0,2000,'','ALTUS SURGICAL (P) LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-05-23 19:40:24',NULL,NULL),(0,2001,'AJIT','AJIT TRADING CO',NULL,NULL,NULL,'GEN','Y','pranav','2022-05-27 12:38:55',NULL,NULL),(0,2002,'','STELLEX HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-05-28 15:18:11',NULL,NULL),(0,2003,'','MAGNET LAB PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-06-01 19:39:11',NULL,NULL),(0,2004,'','SHAILI ENDOSCOPY',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-06-03 11:53:32',NULL,NULL),(0,2005,'KAIZEN','KAIZEN HOSPITAL SOLUTIONS',NULL,NULL,NULL,'GEN','Y','pranav','2022-06-08 09:22:42',NULL,NULL),(0,2006,'WELLMAN','WELLMAN GROUP',NULL,NULL,NULL,'GEN','Y','pranav','2022-06-08 10:38:49',NULL,NULL),(0,2007,'KRISHNA','KRISHNA INTERIORS',NULL,NULL,NULL,'GEN','Y','pranav','2022-06-08 10:49:30',NULL,NULL),(0,2008,'GOODLUCK','GOODLUCK POWER SOLUTION',NULL,NULL,NULL,'GEN','Y','pranav','2022-06-08 10:55:39',NULL,NULL),(0,2009,'','SAI ENTERPRISES',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-06-08 18:57:37',NULL,NULL),(0,2010,'','A.MENARINI INDIA PVT LTD.',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-06-09 14:32:07',NULL,NULL),(0,2011,'CENEFOM','CENEFOM CORP.',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-06-14 11:14:07',NULL,NULL),(0,2012,'SWATI','SWATI ELECTRONICS',NULL,'9974099177',NULL,'GEN','Y','pranav','2022-06-17 11:46:17',NULL,NULL),(0,2013,'','J.N.CHEMICALS',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-06-20 18:30:19',NULL,NULL),(0,2014,'','CAREFUSION',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-06-21 11:08:30',NULL,NULL),(0,2015,'','AUTUS HEALTH CARE',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-06-21 17:20:58',NULL,NULL),(0,2016,'SYSTEM','SYSTEM ELEKTRONICS',NULL,NULL,NULL,'GEN','Y','pranav','2022-06-22 09:34:55',NULL,NULL),(0,2017,'TEVOS','TEVOS PHARMACEUTICALS',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-06-22 12:16:02',NULL,NULL),(0,2018,'VENUS','VENUS ENTERPRISE',NULL,NULL,NULL,'GEN','Y','pranav','2022-06-23 09:41:21',NULL,NULL),(0,2019,'','ASTRA-IDL LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-06-23 16:40:52',NULL,NULL),(0,2020,'MAHAKALI','MAHAKALI HARDWARE',NULL,NULL,NULL,'GEN','Y','pranav','2022-06-25 09:37:00',NULL,NULL),(0,2021,'VEER','VEER ENTERPRISE',NULL,'9662223180',NULL,'GEN','Y','pranav','2022-06-28 09:19:13',NULL,NULL),(0,2022,'','SHRUSHTI SURGICAL',NULL,NULL,NULL,'GEN','Y','BHUMIT','2022-06-28 16:53:19',NULL,NULL),(0,2023,'GLS','GLS PHARMA',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-06-30 20:23:40',NULL,NULL),(0,2024,'WIPRO','WIPRO GE HEALTHCARE PRIVATE LIMITED',NULL,NULL,NULL,'GEN','Y','pranav','2022-07-03 11:00:13',NULL,NULL),(0,2025,'','ZYDUS CELEXA',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-07-04 13:53:41',NULL,NULL),(0,2026,'ADORABLE','ADORABLE ENTERPRISE',NULL,'9712916010',NULL,'GEN','Y','pranav','2022-07-05 09:40:18',NULL,NULL),(0,2027,'CHAMPION','CHAMPION COATINGS PVT LTD',NULL,NULL,NULL,'GEN','Y','pranav','2022-07-05 16:33:51',NULL,NULL),(0,2028,'HI','HI TECH POWERFIELD PRIVATE LIMITED',NULL,NULL,NULL,'GEN','Y','pranav','2022-07-05 16:52:07',NULL,NULL),(0,2029,'HI','HI TECH ENGINEERS',NULL,NULL,NULL,'GEN','Y','pranav','2022-07-09 09:22:07',NULL,NULL),(0,2030,'ROMSONS','ROMSONS GROUP PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-07-09 13:04:35',NULL,NULL),(0,2031,'GITA','GITA STEEL FURNITURE',NULL,NULL,NULL,'GEN','Y','pranav','2022-07-09 13:39:06',NULL,NULL),(0,2032,'','UNS',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-07-12 16:37:45',NULL,NULL),(0,2033,'MEDINNOVA','MEDINNOVA SYSTEMS PVT LTD',NULL,NULL,NULL,'GEN','Y','pranav','2022-07-14 12:51:32',NULL,NULL),(0,2034,'','MEDCURIS HEALTHCARE',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-07-15 10:51:48',NULL,NULL),(0,2035,'TAPSI','TAPSI ELECTRO MEDICAL SYSTEMS & SERVICES',NULL,'9824547350',NULL,'GEN','Y','pranav','2022-07-17 08:48:53',NULL,NULL),(0,2036,'','SHLOK FIRE AND SAFETY SOLUTIONS',NULL,NULL,NULL,'GEN','Y','pranav','2022-07-19 13:37:10',NULL,NULL),(0,2037,'GENIUS','GENIUS SURGICAL & SCIENTIFIC SYNDICATE',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-07-19 18:16:10',NULL,NULL),(0,2038,'SAI','SAI PLY LAM',NULL,'07926890654',NULL,'GEN','Y','pranav','2022-07-20 11:57:37',NULL,NULL),(0,2039,'','ALIVE',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-07-20 19:22:19',NULL,NULL),(0,2040,'SIMANDHAR','SIMANDHAR OPTICAL',NULL,NULL,NULL,'GEN','Y','pranav','2022-07-21 13:50:20',NULL,NULL),(0,2041,'SHREE','SHREE LABH SOLUTION',NULL,'8963838511',NULL,'GEN','Y','pranav','2022-07-21 13:53:36',NULL,NULL),(0,2042,'NULIFE','MRK HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-07-23 18:17:37',NULL,NULL),(0,2043,'','CORAZON',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-07-26 10:03:14',NULL,NULL),(0,2044,'','SHIVAY MEDITECH',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-07-28 18:51:03',NULL,NULL),(0,2045,'JYOT','JYOT INFOTECH',NULL,NULL,NULL,'GEN','Y','pranav','2022-07-29 09:32:48',NULL,NULL),(0,2046,'','LORDCENT & TORCENT HEALTHCARE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-07-30 18:20:43',NULL,NULL),(0,2047,'','HEALING PHARMA',NULL,NULL,NULL,'GEN','Y','ALPA','2022-08-03 12:19:41',NULL,NULL),(0,2048,'','SIGNATURE PHYTOCHEMICAL INDUSTRIES',NULL,NULL,NULL,'GEN','Y','ALPA','2022-08-04 16:38:33',NULL,NULL),(0,2049,'','GROUP PHARMACEUTICALS LTD',NULL,NULL,NULL,'GEN','Y','ALPA','2022-08-04 19:27:53',NULL,NULL),(0,2050,'','RUDLEY LIFE SCIENCE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-08-05 17:34:57',NULL,NULL),(0,2051,'','RIDLEY LIFE SCIENCE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-08-05 17:36:39',NULL,NULL),(0,2052,'','MANGALDEEP ENGINEERING COMPANY',NULL,NULL,NULL,'GEN','Y','pranav','2022-08-06 12:48:12',NULL,NULL),(0,2053,'','NILKANTH POLY PLAST PVT LTD',NULL,NULL,NULL,'GEN','Y','pranav','2022-08-10 13:49:52',NULL,NULL),(0,2054,'','GAYATRI INDUSTRIES',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-08-12 17:21:57',NULL,NULL),(0,2055,'','M/S.MANILAL CHAKUBHAI',NULL,NULL,NULL,'GEN','Y','pranav','2022-08-13 08:49:14',NULL,NULL),(0,2056,'','FRIMLINE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-08-24 16:05:01',NULL,NULL),(0,2057,'','VALUE MED SOLUTIONS',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-09-02 18:27:55',NULL,NULL),(0,2058,'','TETARIYA',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-09-05 17:05:07',NULL,NULL),(0,2059,'SOLVIX','SOLVIX PHARMA',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-09-07 12:40:58',NULL,NULL),(0,2060,'','WINDLAS BIOTECH PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-09-08 17:46:51',NULL,NULL),(0,2061,'','SHALG PHARMACEUTICALS',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-09-09 20:52:14',NULL,NULL),(0,2062,'','PLEDGE LIFE SCIENCE',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-09-11 11:56:04',NULL,NULL),(0,2063,'MOX','MOXICIP',NULL,NULL,NULL,'GEN','Y','divyang','2022-09-12 16:22:59',NULL,NULL),(0,2064,'IGNYX','IGNYX PHARMACEUTICALS',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-09-13 16:35:32',NULL,NULL),(0,2065,'JUBILANT','JUBILANT GENERICS',NULL,NULL,NULL,'GEN','Y','divyang','2022-09-13 17:22:30',NULL,NULL),(0,2066,'','ORBUS NEICH',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-09-17 19:21:57',NULL,NULL),(0,2067,'','MAQUET',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-09-20 16:37:29',NULL,NULL),(0,2068,'','HI-TORQUE',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-09-22 15:33:23',NULL,NULL),(0,2069,'','ASAHI NEOS',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-09-23 12:32:35',NULL,NULL),(0,2070,'','COUNTRY OF ORIGIN INDIA',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-09-23 14:55:27',NULL,NULL),(0,2071,'','SHIVAY ORTHOTECH',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-09-26 11:55:59',NULL,NULL),(0,2072,'ASAHI','ASAHI INTECC CO. LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-09-27 15:54:25',NULL,NULL),(0,2073,'','ULTIMASTER',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-09-28 16:29:11',NULL,NULL),(0,2074,'','WELNNOVATE BIOSOLUTIONS PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-09-29 11:56:53',NULL,NULL),(0,2075,'PULSE','PULSE NUTRI SCIENCE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-09-29 15:53:20',NULL,NULL),(0,2076,'','RELISYS MEDICAL DEVICES LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-09-30 13:42:09',NULL,NULL),(0,2077,'','CORDIS',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-10-04 17:06:23',NULL,NULL),(0,2078,'','UNITED BIOCEUTICALS PVT.LTD.',NULL,NULL,NULL,'GEN','Y','ALPA','2022-10-06 13:40:30',NULL,NULL),(0,2079,'ABBOTT','ABBOTT VASCULAR',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-10-07 13:41:24',NULL,NULL),(0,2080,'','PHOENIX MEDITECH',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-10-08 19:43:09',NULL,NULL),(0,2081,'ANG','ANG HEALTHCARE (I) PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-10-10 20:29:30',NULL,NULL),(0,2082,'','JENBURKT PHARMACEUTICALS LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-10-13 20:44:13',NULL,NULL),(0,2083,'','R A SURGICAL',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-10-14 12:53:21',NULL,NULL),(0,2084,'','OTSUKA PHARMACEUTICAL I. PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-10-14 15:09:54',NULL,NULL),(0,2085,'','IMPOTEL GLOBAL HEALTHCARE LLP',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-10-14 18:55:14',NULL,NULL),(0,2086,'','COAX BIOREMEDIS PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-10-24 16:54:52',NULL,NULL),(0,2087,'','RELINCE',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-11-01 08:57:47',NULL,NULL),(0,2088,'','MERIT',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-11-03 18:28:59',NULL,NULL),(0,2089,'','FRESENIUS MEDICAL CARE',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-11-08 15:49:45',NULL,NULL),(0,2090,'NESTLE','NESTLE INDIA LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-11-08 16:23:46',NULL,NULL),(0,2091,'','AXON MEDICAL SOLUTIONS PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-11-12 11:29:54',NULL,NULL),(0,2092,'','TERUMO',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-11-22 15:02:20',NULL,NULL),(0,2093,'','ORSIRO',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-11-22 15:22:11',NULL,NULL),(0,2094,'','SAHAJANAND MEDICAL TECHNOLOGIES PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-11-23 17:52:06',NULL,NULL),(0,2095,'','WINHEAL HEALTHCARE LLP',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-11-25 14:07:00',NULL,NULL),(0,2096,'','NASCENT LIFESCIENCE PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-11-26 10:48:42',NULL,NULL),(0,2097,'','OMROSS PHARMA',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-11-29 12:43:15',NULL,NULL),(0,2098,'ZYDUS','ZYDUS LIFESCINCES LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-12-05 14:30:55',NULL,NULL),(0,2099,'','SOLAX PHARMA',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-12-12 17:35:26',NULL,NULL),(0,2100,'','ANTILA LIFESCIENCES PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-12-13 16:47:36',NULL,NULL),(0,2101,'','SCEPTRE MEDICAL DEVICES PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-12-15 13:07:04',NULL,NULL),(0,2102,'','NORGARM MEDICAMENTS PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-12-16 11:28:07',NULL,NULL),(0,2103,'','STERIMED SURGICALS INDIA PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-12-20 12:32:42',NULL,NULL),(0,2104,'','EXEMED PHARMACEUTICS',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-12-22 11:48:17',NULL,NULL),(0,2105,'','EXEMED PHARMACEUTICALS',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-12-22 11:51:45',NULL,NULL),(0,2106,'','GROW LONGA BIOSCIENCE',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-12-24 19:30:08',NULL,NULL),(0,2107,'','INFALLIBLE PHARMA PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2022-12-27 15:14:15',NULL,NULL),(0,2108,'','THEO PHARMA PVT LTD',NULL,NULL,NULL,'GEN','Y','VIRESH','2023-01-03 14:40:47',NULL,NULL);
/*!40000 ALTER TABLE `manufacturer_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `material_request_detail`
--

DROP TABLE IF EXISTS `material_request_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `material_request_detail` (
  `mr_fyear` smallint(6) NOT NULL,
  `mr_id` int(11) NOT NULL,
  `mr_sr_no` smallint(6) NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `stock_uom` tinyint(3) unsigned NOT NULL,
  `requested_quantity` int(11) NOT NULL DEFAULT '0',
  `approved_quantity` int(11) NOT NULL DEFAULT '0',
  `issued_quantity` int(11) NOT NULL DEFAULT '0',
  `created_by` varchar(10) CHARACTER SET latin1 NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) CHARACTER SET latin1 DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  UNIQUE KEY `mr_fyear` (`mr_fyear`,`mr_id`,`mr_sr_no`),
  KEY `FK_mr_detail_productid` (`product_id`),
  KEY `FK_mr_detail_suom` (`stock_uom`),
  KEY `FK_mr_detail_createdby` (`created_by`),
  KEY `FK_mr_detail_lastmodifiedby` (`lastmodified_by`),
  CONSTRAINT `FK_mr_detail_productid` FOREIGN KEY (`product_id`) REFERENCES `product_master` (`product_id`),
  CONSTRAINT `FK_mr_detail_suom` FOREIGN KEY (`stock_uom`) REFERENCES `unit_master` (`unit_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `material_request_detail`
--

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

--
-- Table structure for table `material_request_header`
--

DROP TABLE IF EXISTS `material_request_header`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `material_request_header` (
  `mr_fyear` smallint(6) NOT NULL,
  `store_code` varchar(6) CHARACTER SET latin1 NOT NULL,
  `mr_id` int(11) NOT NULL,
  `mr_date` date NOT NULL,
  `mr_status` char(1) COLLATE utf8_unicode_ci NOT NULL COMMENT 'P - Partially Saved, U - Un approved, T - Cancelled, A - Approved',
  `department_id` tinyint(3) unsigned NOT NULL,
  `remarks` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `approved_by` varchar(10) CHARACTER SET latin1 DEFAULT NULL,
  `approved_date` datetime DEFAULT NULL,
  `created_by` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  UNIQUE KEY `mr_fyear` (`mr_fyear`,`store_code`,`mr_id`),
  KEY `FK_mr_header_deptid` (`department_id`),
  CONSTRAINT `FK_mr_header_deptid` FOREIGN KEY (`department_id`) REFERENCES `department_master` (`department_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `material_request_header`
--

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

--
-- Table structure for table `meal_combo_master`
--

DROP TABLE IF EXISTS `meal_combo_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `meal_combo_master` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `meal_combo_code` varchar(6) NOT NULL COMMENT 'From general master selection',
  `shift` enum('F','S') NOT NULL COMMENT 'F / S (First Half / Second Half)',
  `meal_code` varchar(4) NOT NULL COMMENT 'From Meal Master',
  `CreatedBy` varchar(10) NOT NULL COMMENT 'User id who created the record',
  `CreatedDate` datetime NOT NULL COMMENT 'Date and time at which the record inserted in the table',
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL COMMENT 'updated',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `meal_combo_master`
--

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

--
-- Table structure for table `meal_combo_request`
--

DROP TABLE IF EXISTS `meal_combo_request`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `meal_combo_request` (
  `meal_request_id` int(11) NOT NULL AUTO_INCREMENT,
  `ip_id` bigint(20) NOT NULL,
  `meal_date` date NOT NULL,
  `meal_shift` enum('F','S') NOT NULL COMMENT 'F / S  (First Half / Second Half)',
  `active` enum('Y','N') NOT NULL,
  `meal_combo_code` varchar(6) NOT NULL COMMENT 'From meal_combo_master',
  `diet_type` varchar(6) NOT NULL COMMENT 'From diet master (general master with master_cd = ‘DIETYP’',
  `instruction` varchar(20) NOT NULL,
  `status` int(11) NOT NULL,
  `CreatedBy` varchar(10) NOT NULL COMMENT 'User id who created the record',
  `CreatedDate` datetime NOT NULL COMMENT 'Date and time at which the record inserted in the table',
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL COMMENT 'Date and time at which the record updated',
  PRIMARY KEY (`meal_request_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `meal_combo_request`
--

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

--
-- Table structure for table `meal_combo_request_detail`
--

DROP TABLE IF EXISTS `meal_combo_request_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `meal_combo_request_detail` (
  `meal_request_id` int(11) NOT NULL,
  `time_seq` smallint(6) NOT NULL,
  `meal_code_planned` varchar(4) NOT NULL,
  `meal_code_requested` varchar(4) NOT NULL,
  `meal_code_actual` varchar(4) NOT NULL COMMENT 'From meal_master',
  `meal_price` float NOT NULL COMMENT 'From meal master for meal_code_actual',
  `CreatedBy` varchar(10) NOT NULL COMMENT 'User id who created the record',
  `CreatedDate` datetime NOT NULL COMMENT 'Date and time at which the record inserted in the table',
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL COMMENT 'Date and time at which the record updated',
  PRIMARY KEY (`meal_request_id`,`time_seq`,`meal_code_planned`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `meal_combo_request_detail`
--

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

--
-- Table structure for table `meal_master`
--

DROP TABLE IF EXISTS `meal_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `meal_master` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `meal_code` varchar(4) NOT NULL,
  `meal_description` varchar(15) NOT NULL COMMENT 'Unique',
  `from_time` time NOT NULL,
  `to_time` time NOT NULL,
  `price` float NOT NULL,
  `active` enum('Y','N') NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL COMMENT 'Date and time at which the record inserted in the table',
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL COMMENT 'Date and time at which the record updated',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `meal_master`
--

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

--
-- Table structure for table `media_opcare`
--

DROP TABLE IF EXISTS `media_opcare`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `media_opcare` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `dept_id` varchar(6) NOT NULL,
  `media_type` varchar(20) NOT NULL COMMENT 'image,video',
  `image_category` enum('I','D') NOT NULL COMMENT 'I - Ilustrative / Generic image, D - Diagnosis/ Patient specific image ',
  `image_name` varchar(40) NOT NULL,
  `image_url` text NOT NULL COMMENT 'file name(abc.png)',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_opcare`
--

LOCK TABLES `media_opcare` WRITE;
/*!40000 ALTER TABLE `media_opcare` DISABLE KEYS */;
INSERT INTO `media_opcare` VALUES (1,0,0,'D12','image','D','Before USG','BEFORE_USG.jpeg'),(2,0,0,'D12','image','D','Before XRAY','BEFORE_XRAY.jpeg'),(3,0,0,'D12','image','D','BPH Treatment','BPH_TREATMENT.jpeg'),(4,0,0,'D12','image','D','CSIC','CSIC.jpeg'),(5,0,0,'D12','image','D','DJ Stent','DJ_STENT.jpeg'),(6,0,0,'D12','image','D','DJ Stent Detail','DJ_STENT_DETAIL.jpeg'),(7,0,0,'D12','image','D','For BPH','FOR_BPH.jpeg'),(8,0,0,'D12','image','D','Infertility','INFERTILITY.jpeg'),(9,0,0,'D12','image','D','Operation Detail','OPERATION_DETAIL.jpeg'),(10,0,0,'D12','image','D','Post GB','POST_GB.jpeg'),(11,0,0,'D12','image','D','Post Hernia','POST_HERNIA.jpeg'),(12,0,0,'D12','image','D','Stone','STONE.jpeg'),(13,0,0,'D12','image','D','Stone 2','STONE_2.jpeg'),(14,0,0,'D12','image','D','Stone 3','STONE_3.jpeg'),(15,0,0,'D12','image','D','Stone General','STONE_GENERAL.jpeg'),(16,0,0,'D12','image','D','Stone Surgery Detail','STONE_SURGERY_DETAIL.jpeg'),(17,0,0,'D12','image','D','Stricture Urethra','STRICTURE_URETHRA.jpeg');
/*!40000 ALTER TABLE `media_opcare` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `medicin_reco`
--

DROP TABLE IF EXISTS `medicin_reco`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `medicin_reco` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `medi_order` int(11) NOT NULL,
  `mr_id` int(11) NOT NULL,
  `m_cd` varchar(11) NOT NULL,
  `mr_date` date NOT NULL,
  `m_duration` int(11) NOT NULL,
  `m_qty` int(11) NOT NULL,
  `m_dose` varchar(11) NOT NULL,
  `dose_unit` varchar(20) NOT NULL,
  `frq_id` int(11) NOT NULL,
  `m_start_time` text NOT NULL,
  `d_datetime` datetime NOT NULL,
  `m_days` int(11) NOT NULL,
  `m_inst` varchar(100) CHARACTER SET utf8 NOT NULL,
  `active` varchar(1) NOT NULL,
  `user_id` varchar(10) NOT NULL,
  `CreatedBy` varchar(30) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(30) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  `drug_adm` varchar(30) NOT NULL COMMENT 'Drug Administration',
  PRIMARY KEY (`mr_id`),
  KEY `visit_id` (`visit_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `medicin_reco`
--

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

--
-- Table structure for table `medicine_dose_inst_detail`
--

DROP TABLE IF EXISTS `medicine_dose_inst_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `medicine_dose_inst_detail` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `medicine_code` varchar(6) COLLATE utf8_unicode_ci NOT NULL,
  `sr_no` int(11) NOT NULL,
  `dept_id` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
  `dose` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
  `dose_unit` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `frequency` varchar(2) COLLATE utf8_unicode_ci NOT NULL,
  `duration` smallint(6) NOT NULL,
  `instruction` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`medicine_code`,`sr_no`,`dept_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `medicine_dose_inst_detail`
--

LOCK TABLES `medicine_dose_inst_detail` WRITE;
/*!40000 ALTER TABLE `medicine_dose_inst_detail` DISABLE KEYS */;
INSERT INTO `medicine_dose_inst_detail` VALUES (0,0,'51183',1,'','.5-0-.5','','Dy',30,'7'),(0,0,'51184',1,'','0-0-.5','','Dy',10,'7'),(0,0,'51185',1,'','1-0-0','','Dy',10,'7'),(0,0,'51186',1,'','1-0-1','','Dy',30,'7'),(0,0,'51187',1,'','','','Dy',10,'381'),(0,0,'51188',1,'','1-0-0','','Dy',30,'7'),(0,0,'51189',1,'','1-0-0','','Dy',30,'7'),(0,0,'51190',1,'','.5-0-.5','','Dy',30,'7'),(0,0,'51191',1,'','1-0-0','','Dy',0,'168'),(0,0,'51192',1,'','0-0-1','','Dy',10,'7'),(0,0,'51193',1,'','0-0-1','','Dy',10,'7'),(0,0,'51194',1,'','1-0-0','','Dy',30,'7'),(0,0,'51195',1,'','','','Dy',0,'380'),(0,0,'51196',1,'','','','Dy',30,'380'),(0,0,'51197',1,'','1-0-1','','Dy',30,'7'),(0,0,'51198',1,'','0-0-1','','Dy',10,'7'),(0,0,'51199',1,'','1-0-1','','Dy',5,'7'),(0,0,'51200',1,'','0-0-1','','Dy',10,'7'),(0,0,'51201',1,'','1-0-0','','Dy',30,'7'),(0,0,'51202',1,'','1-0-0','','Dy',10,'7'),(0,0,'51203',1,'','1-0-0','','Wk',6,'309'),(0,0,'51204',1,'','1-0-1','','Dy',5,'7'),(0,0,'51205',1,'','1-0-1','','Dy',5,'7'),(0,0,'51206',1,'','1-1-1','','Dy',5,'383'),(0,0,'51207',1,'','1-0-1','','Dy',5,'7'),(0,0,'51208',1,'','0-0-1','','Dy',10,'7'),(0,0,'51209',1,'','.5-0-1','','Dy',5,'7'),(0,0,'51210',1,'','1-0-0','','Dy',30,'7'),(0,0,'51211',1,'','.5-0-.5','','Dy',30,'7'),(0,0,'51212',1,'','1-1-1','','Dy',6,'385'),(0,0,'51213',1,'','0-1-1','','Dy',90,'388'),(0,0,'51214',1,'','0-1-1','','Dy',90,'353'),(0,0,'51214',2,'','1-0-1','','Dy',90,'5'),(0,0,'51215',1,'','1-0-0','','Dy',10,'7'),(0,0,'51216',1,'','','','Dy',30,'381'),(0,0,'51217',1,'','1-0-0','','Dy',0,'7'),(0,0,'51218',1,'','1-0-1','','Dy',5,'7'),(0,0,'51218',1,'D27','1-0-0','','Dy',3,'7'),(0,0,'51219',1,'','1-0-0','','Dy',30,'386'),(0,0,'51220',1,'','1-0-1','','Dy',5,'7'),(0,0,'51221',1,'','1-0-1','','Dy',7,'17'),(0,0,'51221',2,'','1-0-0','','Dy',7,'17'),(0,0,'51222',1,'','0-0-1','','Dy',90,'7'),(0,0,'51223',1,'','1-0-0','','Dy',90,'16'),(0,0,'51224',1,'','1-0-0','','Dy',0,'7'),(0,0,'51225',1,'','0-0-1','','Dy',10,'7'),(0,0,'51226',1,'','.5-0-1','','Dy',5,'7'),(0,0,'51227',1,'','1-1-1','','Dy',5,'387'),(0,0,'51228',1,'','1-0-0','','Dy',90,'16'),(0,0,'51229',1,'','1-0-1','','Dy',7,'17'),(0,0,'51229',2,'','1-0-0','','Dy',7,'17'),(0,0,'51230',1,'','0-1-0','','Dy',7,'7'),(0,0,'51231',1,'','0-0-1','','Dy',90,'7'),(0,0,'51232',1,'','0-0-1','','Dy',7,'7'),(0,0,'51233',1,'','0-0-.5','','Dy',0,'9'),(0,0,'51234',1,'','0-0-1','','Dy',10,'9'),(0,0,'51235',1,'','1-0-0','','Dy',0,'17'),(0,0,'51236',1,'','0-0-1','','Dy',90,'7'),(0,0,'51237',1,'','0-0-1','','Dy',60,'7'),(0,0,'51238',1,'','0-0-1','','Dy',10,''),(0,0,'51239',1,'','1-0-0','','Dy',10,'17'),(0,0,'51240',1,'','1-0-0','','Dy',90,'7'),(0,0,'51241',1,'','1-0-0','','Dy',90,'16'),(0,0,'51242',1,'','0-1-0','','Dy',90,'7'),(0,0,'51243',1,'','1-0-0','','Dy',90,'392'),(0,0,'51244',1,'','0-0-1','','Dy',10,'7'),(0,0,'51245',1,'','1-1-1','','Dy',7,'383'),(0,0,'51246',1,'','1-1-1','','Dy',7,'7'),(0,0,'51247',1,'','1-0-1','','Dy',30,'7'),(0,0,'51248',1,'','1-0-0','','Wk',8,'7'),(0,0,'51249',1,'','0-1-0','','Dy',90,'7'),(0,0,'51250',1,'','0-0-1','','Dy',30,'7'),(0,0,'51251',1,'','','5 ML MORNI','Dy',5,''),(0,0,'51251',1,'D27','','','Dy',5,'286'),(0,0,'51252',1,'','1-1-1','5ml','Dy',5,'7'),(0,0,'51253',1,'','0-1-0','','Dy',3,'17'),(0,0,'51254',1,'','0-0-1','','Dy',90,'7'),(0,0,'51255',1,'','0-0-1','5ml','Dy',5,'67'),(0,0,'51256',1,'','1-1-1','5ml','Dy',5,'7'),(0,0,'51257',1,'','0-1-0','','Dy',90,'7'),(0,0,'51258',1,'','1-0-0','','Dy',10,'7'),(0,0,'51259',1,'','1-1-1','','Dy',90,'7'),(0,0,'51259',2,'','1-0-1','','Dy',90,'7'),(0,0,'51259',3,'','0-0-1','','Dy',90,'7'),(0,0,'51260',1,'','1-0-0','','Dy',30,'7'),(0,0,'51261',1,'','0-0-1','','Dy',30,'7'),(0,0,'51262',1,'','0-0-1','','Dy',10,'7'),(0,0,'51263',1,'','1-1-1','','Dy',30,'7'),(0,0,'51264',1,'','1-0-1','','Dy',5,'7'),(0,0,'51265',1,'','1-0-0','','Dy',10,'7'),(0,0,'51266',1,'','1-1-1','','Dy',5,'60'),(0,0,'51267',1,'','1-0-0','','Dy',7,'7'),(0,0,'51268',1,'','1-1-1','','Dy',7,'7'),(0,0,'51269',1,'','0-1-0','','Dy',7,'7'),(0,0,'51269',2,'','1-0-1','','Dy',7,'7'),(0,0,'51270',1,'','1-0-1','','Dy',5,'7'),(0,0,'51271',1,'','1-0-1','','Dy',5,'7'),(0,0,'51272',1,'','1-0-0','','Dy',0,''),(0,0,'51273',1,'','0-0-1','','Dy',90,'7'),(0,0,'51274',1,'','.5-0-.5','','Dy',30,'7'),(0,0,'51275',1,'','1-1-1','','Dy',5,'60'),(0,0,'51276',1,'','1-0-0','','Dy',10,'7'),(0,0,'51277',1,'','1-1-1','','Dy',7,'18'),(0,0,'51278',1,'','0-1-0','','Dy',90,'7'),(0,0,'51279',1,'','0-0-1','','Dy',30,'7'),(0,0,'51280',1,'','1-0-0','','Dy',90,'7'),(0,0,'51281',1,'','1-0-1','','Dy',7,'7'),(0,0,'51282',1,'','1-0-1','','Dy',7,'7'),(0,0,'51283',1,'','1-0-0','','Dy',30,'7'),(0,0,'51284',1,'','1-0-0','','Dy',10,'7'),(0,0,'51285',1,'','0-0-1','','Dy',90,'7'),(0,0,'51286',1,'','0-0-1','','Dy',90,'7'),(0,0,'51287',1,'','1-0-0','','Dy',10,'7'),(0,0,'51288',1,'','1-0-0','','Dy',0,'7'),(0,0,'51289',1,'','0-0-1','','Dy',0,'7'),(0,0,'51290',1,'','1-0-0','','Dy',10,'7'),(0,0,'51291',1,'','1-1-1','','Dy',10,'18'),(0,0,'51292',1,'','1-1-1','','Dy',7,'7'),(0,0,'51293',1,'','1-1-1','5 ML ','Dy',7,'17'),(0,0,'51294',1,'','','','Dy',30,'380'),(0,0,'51295',1,'','','','Dy',30,'380'),(0,0,'51296',1,'D27','1-0-0','','Dy',0,''),(0,0,'51297',1,'D27','0-0-1','','Dy',30,'7'),(0,0,'51298',1,'','1-0-1','','Dy',5,'7'),(0,0,'51299',1,'D27','1-0-1','','Dy',7,'7'),(0,0,'51300',1,'D27','','','Dy',5,''),(0,0,'51301',1,'D27','0.5-0-0.5','','Dy',60,'7'),(0,0,'51302',1,'D27','1-0-1','','Dy',5,'7'),(0,0,'51303',1,'D27','0-1-0','','Dy',5,'7'),(0,0,'51304',1,'D27','1-0-0','','Dy',5,'7'),(0,0,'51305',1,'D27','1-0-0','','Dy',90,'7'),(0,0,'51306',1,'D27','0-1-0','','Dy',90,'7'),(0,0,'51307',1,'D27','','28 U - 18 ','Dy',60,'353'),(0,0,'51308',1,'D27','1-0-0','','Dy',90,'16'),(0,0,'51309',1,'','0-0-1','','Dy',90,'7'),(0,0,'51310',1,'','0-0-1','','Dy',90,'7'),(0,0,'51311',1,'','0-1-1','','Dy',90,'388'),(0,0,'51312',1,'','0-1-1','','Dy',90,'353'),(0,0,'51312',2,'','1-0-1','','Dy',90,'388'),(0,0,'51313',1,'','0-0-1','','Dy',90,'7'),(0,0,'51314',1,'','0-0-1','','Dy',90,'7'),(0,0,'51315',1,'','0-0-1','','Dy',90,'7'),(0,0,'51316',1,'','0-1-0','','Dy',90,'191'),(0,0,'51317',1,'D27','1-0-0','','Dy',0,'7'),(0,0,'51318',1,'D27','1-0-1','','Dy',7,'7'),(0,0,'51319',1,'D27','1-0-1','','Dy',0,''),(0,0,'51320',1,'D27','1-0-1','','Dy',0,''),(0,0,'51321',1,'D27','1-0-1','','Dy',5,'7'),(0,0,'51322',1,'','1-0-0','','Dy',0,'7'),(0,0,'51323',1,'D27','1-0-0','','Dy',15,'7'),(0,0,'51324',1,'','0-0-1','','Dy',10,'7'),(0,0,'51325',1,'D27','0-1-0','','Dy',90,'7'),(0,0,'51326',1,'D27','0-0-1','','Dy',30,'7'),(0,0,'51327',1,'','10-10-10','','Dy',5,'392'),(0,0,'51328',1,'D27','0-0-1','','Dy',90,'7'),(0,0,'51329',1,'D27','1-0-0','','Dy',90,'16'),(0,0,'51330',1,'D27','0-0-1','','Dy',90,'17'),(0,0,'51331',1,'D27','0-0-1','','Dy',90,'7'),(0,0,'51332',1,'D27','1-1-1','','Dy',7,'7'),(0,0,'51333',1,'','1-0-0','','Dy',30,'7'),(0,0,'51334',1,'','0-0-1','','Dy',30,'7'),(0,0,'51335',1,'','1-1-1','','Dy',90,'7'),(0,0,'51336',1,'','0-0-1','','Dy',90,'7'),(0,0,'51337',1,'D27','1-0-0','','Dy',30,'7'),(0,0,'51338',1,'D27','1-1-1','','Dy',90,'7'),(0,0,'51339',1,'','0-1-0','','Dy',90,'7'),(0,0,'51340',1,'D27','0.5-0-0.5','','Dy',30,'7'),(0,0,'51341',1,'D27','1-1-1','','Dy',90,'7'),(0,0,'51342',1,'','1-0-1','','Dy',90,'7'),(0,0,'51343',1,'','0-1-1','','Dy',90,'388'),(0,0,'51344',1,'','0-1-1','','Dy',90,'388'),(0,0,'51345',1,'D27','0-0-1','','Dy',90,'7'),(0,0,'51346',1,'D27','1-0-0','','Dy',90,'7'),(0,0,'51347',1,'D27','0-1-0','','Dy',90,'191'),(0,0,'51347',2,'D27','0-1-1','','Dy',90,'353'),(0,0,'51348',1,'D27','1-0-0','','Dy',90,'7'),(0,0,'51349',1,'D27','1-0-0','','Dy',0,''),(0,0,'51350',1,'D27','0-0-1','','Dy',0,''),(0,0,'51351',1,'','1-1-1','','Dy',30,'7'),(0,0,'51352',1,'D27','0-0-1','','Dy',30,'7'),(0,0,'51353',1,'D27','0-1-0','','Dy',30,'7'),(0,0,'51354',1,'D27','0-0-1','','Dy',90,'7'),(0,0,'51355',1,'','0-0-1','','Dy',30,'7'),(0,0,'51355',2,'','1-0-1','','Dy',30,'7'),(0,0,'51356',1,'','0-0-2','','Dy',90,'7'),(0,0,'51357',1,'D27','1-0-1','','Dy',90,'7'),(0,0,'51358',1,'D27','1-0-0','','Dy',30,'7'),(0,0,'51359',1,'D27','1-0-0','','Dy',30,'7'),(0,0,'51360',1,'D27','1-0-0','','Dy',90,'7'),(0,0,'51361',1,'','','','Dy',0,'390'),(0,0,'51362',1,'','1-0-0','','Dy',7,'388'),(0,0,'51362',1,'D27','1-0-0','','Dy',10,'388'),(0,0,'51363',1,'','10-10-10','','Dy',5,'388'),(0,0,'51363',1,'D27','','5ML TDS','Dy',5,'388'),(0,0,'51364',1,'','','1.5 GM ','Dy',5,'277'),(0,0,'51364',2,'','','3.0 GM','Dy',0,'277'),(0,0,'51365',1,'','','1 GM','Dy',0,'272'),(0,0,'51365',2,'','','500 MG ','Dy',0,'272'),(0,0,'51365',3,'','','1GM','Dy',0,'277'),(0,0,'51366',1,'','','500MG ','Dy',0,'104'),(0,0,'51367',1,'D27','0-0-1','','Dy',90,'7'),(0,0,'51368',1,'D27','0-0-1','','Dy',90,'7'),(0,0,'51369',1,'D27','1-0-1','','Dy',90,'7'),(0,0,'51370',1,'D27','0-0-1','','Dy',7,'17'),(0,0,'51371',1,'D27','0-0-.5','','Dy',90,'7'),(0,0,'51372',1,'D27','1-0-1','','Dy',7,'7'),(0,0,'51373',1,'D27','1-0-0','','Dy',10,'7'),(0,0,'51374',1,'D27','1-0-0','','Dy',7,'388'),(0,0,'51375',1,'D27','1-0-0','','Dy',180,'16'),(0,0,'51375',2,'D27','1-0-0','','Dy',90,'16'),(0,0,'51376',1,'D27','0-1-0','','Dy',0,'388'),(0,0,'51377',1,'D27','0-0-1','','Dy',0,'60'),(0,0,'51378',1,'','','100ML','Dy',0,'247'),(0,0,'51379',1,'','1-0-1','','Dy',7,'7'),(0,0,'51380',1,'','1-1-1','','Dy',7,'7'),(0,0,'51381',1,'','1-0-0','','Dy',90,'7'),(0,0,'51382',1,'','1-0-1','','Dy',5,'7'),(0,0,'51383',1,'D27','1-0-1','','Dy',5,'7'),(0,0,'51384',1,'D27','1-0-1','','Dy',10,'7'),(0,0,'51385',1,'','1-0-0','','Dy',90,'7'),(0,0,'51386',1,'','0-0-1','','Dy',90,'388'),(0,0,'51387',1,'','20-0-0','','Dy',90,'16'),(0,0,'51388',1,'','1-0-0','','Dy',90,'7'),(0,0,'51389',1,'','0-1-0','','Dy',90,'191'),(0,0,'51390',1,'','','','Dy',0,''),(0,0,'51391',1,'D27','1-0-1','','Dy',0,'7'),(0,0,'51392',1,'D27','','2 SCOOP BD','Dy',0,''),(0,0,'51393',1,'','','','Dy',0,'354'),(0,0,'51394',1,'','','','Dy',0,'247'),(0,0,'51395',1,'D27','0-0-1','','Dy',30,'7'),(0,0,'51396',1,'D27','1-0-1','','Dy',5,'7'),(0,0,'51397',1,'D27','','','Dy',0,''),(0,0,'51397',2,'D27','','','Dy',0,''),(0,0,'51398',1,'D27','','','Dy',0,''),(0,0,'51398',2,'D27','','','Dy',0,''),(0,0,'51399',1,'D27','1-0-0','','Dy',0,'388'),(0,0,'51400',1,'D27','0-0-1','','Dy',90,'7'),(0,0,'51401',1,'D27','1-0-0','','Dy',0,''),(0,0,'51402',1,'D27','0-1-0','','Dy',7,'7'),(0,0,'51403',1,'D27','1-1-1','','Dy',5,'7'),(0,0,'51404',1,'D27','1-0-0','','Dy',60,'7'),(0,0,'51405',1,'D27','0-1-1','','Dy',90,'7'),(0,0,'51406',1,'D27','0-1-0','','Dy',90,'7'),(0,0,'51407',1,'D27','1-1-1','','Dy',90,'7'),(0,0,'51408',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51409',1,'D27','0-1-0','','Dy',0,'392'),(0,0,'51410',1,'D27','1-0-0','','Dy',100,'16'),(0,0,'51411',1,'D27','0-1-0','','Dy',90,'16'),(0,0,'51412',1,'D27','1-0-0','','Dy',90,'7'),(0,0,'51413',1,'','0-1-1','','Dy',90,'388'),(0,0,'51413',1,'D27','0-1-1','','Dy',90,'353'),(0,0,'51414',1,'','1-0-0','','Dy',30,'7'),(0,0,'51414',1,'D27','1-0-0','','Dy',30,'7'),(0,0,'51415',1,'','.5-0-.5','','Dy',30,'7'),(0,0,'51416',1,'D27','1-0-1','','Dy',5,'7'),(0,0,'51417',1,'D27','1-0-0','','Dy',30,'7'),(0,0,'51418',1,'','.5-.5-.5','','Dy',5,'7'),(0,0,'51419',1,'D27','1-0-1','','Dy',0,'388'),(0,0,'51420',1,'D27','1-0-1','','Dy',0,'392'),(0,0,'51421',1,'D27','1-1-0','','Dy',0,'392'),(0,0,'51422',1,'D27','1-0-0','','Dy',0,'388'),(0,0,'51423',1,'D27','1-0-0','','Dy',0,''),(0,0,'51424',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51425',1,'D27','0-1-0','','Dy',0,'392'),(0,0,'51426',1,'D27','0-1-0','','Dy',0,'392'),(0,0,'51427',1,'D27','0-0-1','','Dy',0,'388'),(0,0,'51428',1,'D27','4-0-0','','Dy',0,'388'),(0,0,'51429',1,'D27','0-1-0','','Dy',0,'392'),(0,0,'51430',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51431',1,'D27','0-0-15','','Dy',0,''),(0,0,'51432',1,'D27','1-1-1','','Dy',7,'7'),(0,0,'51433',1,'D27','','','Dy',0,'232'),(0,0,'51434',1,'D27','1-0-1','','Dy',7,'7'),(0,0,'51435',1,'D27','0-1-0','','Dy',0,'392'),(0,0,'51436',1,'D27','0-0-1','','Dy',7,'7'),(0,0,'51437',1,'D27','0-0-25','','Dy',0,'392'),(0,0,'51438',1,'','1-1-1','','Dy',7,'7'),(0,0,'51439',1,'','0-0-1','','Dy',10,'7'),(0,0,'51440',1,'','1-0-1','','Dy',5,'7'),(0,0,'51441',1,'','','','Dy',0,'395'),(0,0,'51442',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51443',1,'D27','0-0-1','','Dy',0,'388'),(0,0,'51444',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51445',1,'D27','1-0-0','','Dy',0,'388'),(0,0,'51446',1,'','0-0-1','','Dy',0,'7'),(0,0,'51447',1,'','0-0-1','5ml','Dy',5,'7'),(0,0,'51448',1,'','1-0-0','5ml','Dy',5,'7'),(0,0,'51449',1,'','1-1-1','','Dy',7,'397'),(0,0,'51450',1,'D27','1-0-1','','Dy',0,'388'),(0,0,'51451',1,'D27','0-0-1','','Dy',0,'388'),(0,0,'51452',1,'D27','1-0-0','','Dy',0,''),(0,0,'51453',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51454',1,'D27','1-1-1','','Dy',0,''),(0,0,'51455',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51456',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51457',1,'D27','1-0-1','','Dy',0,'392'),(0,0,'51458',1,'D27','0-0-1','','Dy',0,'392'),(0,0,'51459',1,'D27','0-0-1','','Dy',0,'392'),(0,0,'51460',1,'','0-0-1','','Dy',0,'398'),(0,0,'51461',1,'','','','Dy',0,'383'),(0,0,'51462',1,'','1-0-0','','Dy',0,'7'),(0,0,'51463',1,'','0-36-10','','Dy',90,'17'),(0,0,'51464',1,'','0-1-1','','Dy',90,'7'),(0,0,'51465',1,'','1-0-0','','Dy',90,'388'),(0,0,'51466',1,'','','','Dy',0,'385'),(0,0,'51467',1,'','0-1-0','','Dy',10,'392'),(0,0,'51468',1,'','0-1-0','','Dy',90,'392'),(0,0,'51469',1,'','0-1-0','','Dy',0,'392'),(0,0,'51470',1,'','1-0-0','','Dy',0,'392'),(0,0,'51471',1,'','1-0-1','','Dy',90,''),(0,0,'51472',1,'','0-0-1','','Dy',7,'392'),(0,0,'51473',1,'','1-1-1','','Dy',90,'392'),(0,0,'51474',1,'','0-1-0','','Dy',0,'388'),(0,0,'51475',1,'','0-0-1','','Dy',90,'392'),(0,0,'51476',1,'','1-0-1','','Dy',5,'392'),(0,0,'51477',1,'','1-0-0','','Dy',0,'168'),(0,0,'51478',1,'','1-0-1','','Dy',0,'388'),(0,0,'51479',1,'','10-10-10','','Dy',0,'388'),(0,0,'51480',1,'','1-1-1','','Dy',5,'388'),(0,0,'51481',1,'','0-1-0','','Dy',0,'392'),(0,0,'51482',1,'','0-0-1','','Dy',90,'392'),(0,0,'51483',1,'','1-0-0','','Dy',0,'392'),(0,0,'51484',1,'','0-1-1','','Dy',90,'388'),(0,0,'51485',1,'','0-0-1','','Dy',90,'392'),(0,0,'51486',1,'','1-0-0','','Dy',90,'392'),(0,0,'51487',1,'','1-0-0','','Dy',90,'392'),(0,0,'51488',1,'','0-0-22','','Dy',0,'271'),(0,0,'51489',1,'','12-12-12','','Dy',0,'388'),(0,0,'51490',1,'D27','1-0-0','','Dy',100,'16'),(0,0,'51491',1,'','1-1-1','','Dy',90,'388'),(0,0,'51492',1,'','0-24-12','','Dy',0,'388'),(0,0,'51493',1,'D27','2-0-0','','Dy',90,'388'),(0,0,'51494',1,'','1-0-0','','Dy',90,''),(0,0,'51495',1,'','1-0-1','','Dy',90,'7'),(0,0,'51495',2,'','0-0-1','','Dy',90,'7'),(0,0,'51496',1,'','1-0-0','','Dy',90,'7'),(0,0,'51497',1,'','1-0-0','','Dy',90,'7'),(0,0,'51498',1,'','1-0-1','','Dy',7,'7'),(0,0,'51499',1,'','1-0-1','','Dy',15,'7'),(0,0,'51500',1,'','10-10-10','','Dy',5,'7'),(0,0,'51501',1,'','1-1-1','','Dy',7,'388'),(0,0,'51502',1,'','.5-0-.5','','Dy',10,'7'),(0,0,'51503',1,'','1-1-1','','Dy',0,'392'),(0,0,'51504',1,'','1-0-0','','Dy',0,'392'),(0,0,'51505',1,'','0-0-1','','Dy',90,'392'),(0,0,'51506',1,'','1-0-0','','Dy',0,'168'),(0,0,'51507',1,'','1-0-0','','Dy',100,'16'),(0,0,'51508',1,'','0-0-1','','Dy',30,'7'),(0,0,'51509',1,'','0-0-2','','Dy',0,'7'),(0,0,'51510',1,'','0-1-0','','Dy',90,'191'),(0,0,'51511',1,'','0-0-1','','Dy',90,'388'),(0,0,'51512',1,'','0-1-0','','Dy',90,'388'),(0,0,'51513',1,'','0-1-0','','Dy',30,'7'),(0,0,'51514',1,'','1-1-1','','Dy',5,'388'),(0,0,'51515',1,'','1-0-0','','Dy',7,'7'),(0,0,'51516',1,'','1-0-1','','Dy',10,'7'),(0,0,'51517',1,'','1-0-0','','Dy',10,'7'),(0,0,'51518',1,'','0-0-1','','Dy',15,'7'),(0,0,'51519',1,'','1-0-0','','Dy',90,'7'),(0,0,'51520',1,'','1-0-0','','Dy',30,'7'),(0,0,'51521',1,'','0-0-1','','Dy',90,''),(0,0,'51522',1,'','0-0-1','','Dy',15,'7'),(0,0,'51523',1,'','36-0-24','4','Dy',690,'388'),(0,0,'51524',1,'','0-1-0','','Dy',90,''),(0,0,'51525',1,'','0-0-1','','Dy',0,''),(0,0,'51526',1,'','1-0-1','','Dy',15,'7'),(0,0,'51528',1,'','0-0-1','','Dy',10,'7'),(0,0,'51529',1,'','1-0-1','','Dy',5,''),(0,0,'51530',1,'','1-0-0','','Dy',90,'16'),(0,0,'51531',1,'','0-0-20','','Dy',90,'271'),(0,0,'51532',1,'','20-30-14','','Dy',90,'388'),(0,0,'51533',1,'','1-0-1','','Dy',7,'7'),(0,0,'51534',1,'','1-0-0','','Dy',5,'7'),(0,0,'51535',1,'','0-0-1','','Dy',90,'7'),(0,0,'51536',1,'','1-0-0','','Wk',90,'7'),(0,0,'51537',1,'','1-0-0','','Dy',90,'7'),(0,0,'51538',1,'','1-0-0','','Dy',90,'392'),(0,0,'51539',1,'','1-1-1','','Dy',0,'392'),(0,0,'51540',1,'','0-0-1','','Dy',90,'7'),(0,0,'51540',1,'GEN','1-0-0','','Dy',90,'7'),(0,0,'51541',1,'','0-0-1','','Dy',3,'7'),(0,0,'51542',1,'','1-1-1','','Dy',90,'7'),(0,0,'51543',1,'','0-0-1','','Dy',30,'7'),(0,0,'51544',1,'','1-0-0','','Dy',90,'16'),(0,0,'51545',1,'','1-0-1','','Dy',90,'7'),(0,0,'51546',1,'','','','Dy',5,'18'),(0,0,'51547',1,'','1-0-0','','Dy',0,'7'),(0,0,'51548',1,'','1-0-0','','Dy',90,'7'),(0,0,'51549',1,'','1-1-1','','Dy',5,'7'),(0,0,'51550',1,'','1-0-0','','Dy',90,'388'),(0,0,'51551',1,'','0-24-12','4','Dy',90,'388'),(0,0,'51552',1,'','12-26-16','4','Dy',90,'388'),(0,0,'51553',1,'','1-1-1','','Dy',30,'7'),(0,0,'51554',1,'','1-0-1','','Dy',90,'7'),(0,0,'51555',1,'','0-1-0','','Dy',9,'7'),(0,0,'51556',1,'','1-1-1','','Dy',30,'7'),(0,0,'51557',1,'','1-1-1','','Dy',30,'7'),(0,0,'51558',1,'','1-0-0','','Dy',30,'7'),(0,0,'51559',1,'','10-10-10','','Dy',30,'7'),(0,0,'51560',1,'','1-0-0','','Dy',90,'7'),(0,0,'51561',1,'','0-0-26','','Dy',90,'271'),(0,0,'51562',1,'','1-0-0','','Dy',90,'388'),(0,0,'51563',1,'','0-0-1','','Dy',0,'392'),(0,0,'51563',1,'GEN','0-0-1','','Dy',90,'7'),(0,0,'51564',1,'','0-0-1','','Dy',10,'7'),(0,0,'51565',1,'','0-0-1','','Dy',90,'7'),(0,0,'51566',1,'','1-1-1','','Dy',7,'7'),(0,0,'51567',1,'','1-1-1','','Dy',7,'18'),(0,0,'51568',1,'','1-0-0','8','Wk',8,''),(0,0,'51569',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51570',1,'D27','1-0-1','','Dy',0,'392'),(0,0,'51571',1,'','1-0-0','','Dy',90,'7'),(0,0,'51572',1,'','0-1-1','','Dy',90,'388'),(0,0,'51572',2,'','0-1-0','','Dy',90,'388'),(0,0,'51573',1,'','0-0-1','','Dy',90,'388'),(0,0,'51574',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51575',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51576',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51577',1,'D27','1-0-1','','Dy',0,'392'),(0,0,'51578',1,'D27','0-1-0','','Dy',0,'392'),(0,0,'51579',1,'D27','1-0-1','','Dy',0,'392'),(0,0,'51580',1,'','1-0-1','','Dy',60,'7'),(0,0,'51581',1,'','1-0-1','','Dy',60,'7'),(0,0,'51582',1,'D27','1-0-1','','Dy',0,'392'),(0,0,'51583',1,'D27','0-1-0','','Dy',0,'392'),(0,0,'51584',1,'','1-0-0','','Dy',30,'7'),(0,0,'51585',1,'','1-1-1','','Dy',10,'7'),(0,0,'51586',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51587',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51588',1,'D27','0-0-1','','Dy',0,'392'),(0,0,'51589',1,'D27','0-1-0','','Dy',0,''),(0,0,'51590',1,'','1-1-1','','Dy',7,'7'),(0,0,'51591',1,'','1-0-0','','Dy',90,'7'),(0,0,'51592',1,'','0-0-1','','Dy',10,'7'),(0,0,'51593',1,'D27','1-1-1','','Dy',0,''),(0,0,'51594',1,'','0-0-1','','Dy',90,'7'),(0,0,'51595',1,'','1-1-1','','Dy',0,'18'),(0,0,'51596',1,'','1-0-1','','Dy',10,'7'),(0,0,'51597',1,'D27','0-1-0','','Dy',0,'392'),(0,0,'51598',1,'D27','0-0-1','','Dy',0,'392'),(0,0,'51599',1,'D27','1-1-1','','Dy',0,'388'),(0,0,'51600',1,'D27','0-0-1','','Dy',0,'392'),(0,0,'51601',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51602',1,'','0-0-1','','Dy',90,'7'),(0,0,'51603',1,'','1-0-0','','Dy',10,'168'),(0,0,'51604',1,'','1-0-1','','Dy',60,'7'),(0,0,'51605',1,'','0-1-0','','Dy',0,''),(0,0,'51606',1,'','1-0-1','','Dy',90,'7'),(0,0,'51607',1,'D27','0-0-1','','Dy',0,'388'),(0,0,'51608',1,'D27','0-1-0','','Dy',0,'392'),(0,0,'51609',1,'','1-0-1','','Dy',7,'7'),(0,0,'51610',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51611',1,'','','','Dy',5,'18'),(0,0,'51612',1,'D27','0-0-30','','Dy',0,''),(0,0,'51613',1,'D27','1-0-1','','Dy',0,'392'),(0,0,'51614',1,'D27','5-5-5','','Dy',0,''),(0,0,'51615',1,'D27','','','Dy',0,'309'),(0,0,'51616',1,'D27','0-0-1','','Dy',0,'392'),(0,0,'51617',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51618',1,'','1-0-0','','Dy',30,'7'),(0,0,'51619',1,'D27','0-1-0','','Dy',0,'392'),(0,0,'51620',1,'D27','0-0-1','','Dy',0,'392'),(0,0,'51621',1,'D27','1-0-1','','Dy',0,'392'),(0,0,'51622',1,'D27','1-0-1','','Dy',0,'392'),(0,0,'51623',1,'D27','1-0-1','','Dy',0,'392'),(0,0,'51624',1,'','0-0-1','','Dy',10,'7'),(0,0,'51625',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51626',1,'D27','0-0-1','','Dy',0,'392'),(0,0,'51627',1,'','0-0-1','','Dy',90,'7'),(0,0,'51628',1,'','1-0-1','','Dy',5,'7'),(0,0,'51629',1,'','1-1-1','','Dy',5,'7'),(0,0,'51630',1,'','1-0-0','','Dy',90,'7'),(0,0,'51631',1,'','1-0-0','','Dy',60,'7'),(0,0,'51632',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51633',1,'','0-1-0','','Dy',90,'7'),(0,0,'51633',2,'','0-0-1','','Dy',90,'7'),(0,0,'51634',1,'','0-0-1','','Dy',60,'7'),(0,0,'51635',1,'D27','0-0-1','','Dy',0,'392'),(0,0,'51636',1,'D27','5-5-5','','Dy',0,'392'),(0,0,'51638',1,'D27','1-0-1','','Dy',0,'392'),(0,0,'51639',1,'GEN','0-0-1','','Dy',90,'7'),(0,0,'51640',1,'GEN','1-0-1','','Dy',10,'7'),(0,0,'51641',1,'GEN','1-1-1','','Dy',90,'7'),(0,0,'51641',2,'GEN','1-0-1','','Dy',90,'7'),(0,0,'51641',3,'GEN','0-0-1','','Dy',90,'7'),(0,0,'51642',1,'GEN','1-1-1','','Dy',5,'247'),(0,0,'51643',1,'GEN','1-0-1','','Dy',90,'7'),(0,0,'51644',1,'GEN','1-0-0','','Dy',30,'7'),(0,0,'51645',1,'GEN','1-0-0','','Dy',10,'7'),(0,0,'51646',1,'D27','0-0-1','','Dy',90,'392'),(0,0,'51647',1,'D27','1-0-1','','Dy',0,'392'),(0,0,'51648',1,'D27','1-0-1','','Dy',0,'392'),(0,0,'51649',1,'GEN','0-1-0','','Dy',90,'7'),(0,0,'51650',1,'D27','0-1-0','','Dy',0,'392'),(0,0,'51651',1,'D27','0-1-0','','Dy',0,'388'),(0,0,'51652',1,'D27','1-0-0','','Dy',0,'392'),(0,0,'51653',1,'GEN','1-0-0','','Dy',30,'168'),(0,0,'51654',1,'GEN','0-1-0','','Dy',30,'7'),(0,0,'51655',1,'GEN','1-0-1','','Dy',3,'7');
/*!40000 ALTER TABLE `medicine_dose_inst_detail` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `medicine_master`
--

DROP TABLE IF EXISTS `medicine_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `medicine_master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `item_type` varchar(4) NOT NULL,
  `code` varchar(6) NOT NULL,
  `mapping_id` int(10) unsigned NOT NULL COMMENT 'Mapping product_master.product_id',
  `product_name` varchar(100) NOT NULL,
  `dept_id` varchar(5) NOT NULL,
  `drug_cd` int(10) unsigned NOT NULL,
  `drugs` varchar(40) NOT NULL,
  `generic` varchar(50) NOT NULL,
  `packing_size` int(11) NOT NULL,
  `unit` varchar(10) NOT NULL,
  `pack_stock` float NOT NULL,
  `loose_stock` float NOT NULL,
  `cost_price` float NOT NULL,
  `M.R.P` float NOT NULL,
  `pp` float NOT NULL,
  `sp` float NOT NULL,
  `tax` float NOT NULL,
  `cess` float NOT NULL,
  `m_dose` varchar(10) NOT NULL,
  `medi_dose_duration` smallint(6) NOT NULL,
  `dose_unit` varchar(10) NOT NULL,
  `frequency` varchar(2) NOT NULL,
  `company` varchar(10) NOT NULL,
  `hsn_code` int(11) NOT NULL,
  `i_or_p` char(1) NOT NULL DEFAULT 'P' COMMENT ' I-issue, p-prescribe',
  `medi_instruction` varchar(30) NOT NULL,
  `tappering_dose` char(1) NOT NULL,
  `tappering_dose_option` smallint(6) NOT NULL,
  `is_auto_created` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Indicates, whether it is created through trigger or manually created.',
  `is_auto_updated` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Indicates, whether it is updated through trigger or manually updated.',
  `active` enum('Y','N') NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) DEFAULT NULL,
  `LastModifiedDate` datetime DEFAULT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`code`),
  UNIQUE KEY `product_name` (`product_name`,`unit`),
  KEY `idx_code` (`code`),
  KEY `ix_mm_active_ip_code` (`active`,`i_or_p`,`code`),
  KEY `ix_mm_product_name` (`product_name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `medicine_master`
--

LOCK TABLES `medicine_master` WRITE;
/*!40000 ALTER TABLE `medicine_master` DISABLE KEYS */;
INSERT INTO `medicine_master` VALUES (0,0,'M','51183',0,'MEGA 400','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-08 11:00:02','darshan','2025-10-11 09:50:08'),(0,0,'M','51184',0,'DILIGAN 25MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-08 11:30:35','darshan','2025-10-11 09:51:02'),(0,0,'M','51185',0,'RIBOVIT PLUS','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-08 11:31:43','darshan','2025-10-13 11:47:25'),(0,0,'M','51186',0,'GIBIK 40MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-08 11:32:59','darshan','2025-10-11 09:51:17'),(0,0,'M','51187',0,'ACUMETIL-MD','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-08 11:34:24','darshan','2025-11-29 14:34:52'),(0,0,'M','51188',0,'VERTIEND 24MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 09:51:52',NULL,NULL),(0,0,'M','51189',0,'VERTIEND 16MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 09:52:25',NULL,NULL),(0,0,'M','51190',0,'XLJIO','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 09:52:51',NULL,NULL),(0,0,'M','51191',0,'R-GOLD-20','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 09:53:31',NULL,NULL),(0,0,'M','51192',0,'INDERAL-F 5','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 10:01:20',NULL,NULL),(0,0,'M','51193',0,'FLUZY 5MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 10:01:52',NULL,NULL),(0,0,'M','51194',0,'BD-PLUS','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 10:03:38',NULL,NULL),(0,0,'M','51195',0,'NAPROSYN 250MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 10:06:51','darshan','2025-10-30 10:46:52'),(0,0,'M','51196',0,'NAXIN 250','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 10:08:58','darshan','2025-10-13 10:55:38'),(0,0,'M','51197',0,'GIBI 60MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 10:09:31',NULL,NULL),(0,0,'M','51198',0,'ADINOFOL-P','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 10:46:23',NULL,NULL),(0,0,'M','51199',0,'FLEXILOR 8MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 10:46:57',NULL,NULL),(0,0,'M','51200',0,'PREGAFUR-NTM','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 10:54:07',NULL,NULL),(0,0,'M','51201',0,'INDERAL 10MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 10:57:18',NULL,NULL),(0,0,'M','51202',0,'ARGIFAST-L','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 10:57:56',NULL,NULL),(0,0,'M','51203',0,'D3MAX 60K','',0,'','',0,'SYRUP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 10:59:02',NULL,NULL),(0,0,'M','51204',0,'CLAVOL 625MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 11:02:13',NULL,NULL),(0,0,'M','51205',0,'DYNAPAR','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 11:02:40',NULL,NULL),(0,0,'M','51206',0,'OLBIOTIC PLUS EAR DROPS','',0,'','',0,'DROP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 11:03:35','darshan','2025-10-11 11:07:28'),(0,0,'M','51207',0,'CLARIGUARD 250MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 11:08:15',NULL,NULL),(0,0,'M','51208',0,'VERTICARE 25MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 11:32:21',NULL,NULL),(0,0,'M','51209',0,'DIOMINIC-DCA','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 11:34:59',NULL,NULL),(0,0,'M','51210',0,'SELGIN 5MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 11:43:17',NULL,NULL),(0,0,'M','51211',0,'BILCOTIV','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-11 11:43:43',NULL,NULL),(0,0,'M','51212',0,'ZAFLART 6MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','Y',6,0,0,'Y','darshan','2025-10-11 12:16:40','darshan','2025-10-13 13:14:04'),(0,0,'M','51213',0,'STAGLIM M2','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 10:37:01','drarchit','2025-11-11 11:41:40'),(0,0,'M','51214',0,'STAGLIM M1','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 10:38:04',NULL,NULL),(0,0,'M','51215',0,'LEUKOMIN_FX','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-13 10:40:34',NULL,NULL),(0,0,'M','51216',0,'DIZIKIND-MD','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-13 10:52:48',NULL,NULL),(0,0,'M','51217',0,'ECOSPIN-AV(75/10)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-13 10:53:31','darshan','2025-10-27 17:34:39'),(0,0,'M','51218',0,'AZ-1 250MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-13 10:54:08','darshan','2025-10-29 19:14:59'),(0,0,'M','51219',0,'MBSON-SL','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-13 10:55:07','darshan','2025-10-13 12:40:35'),(0,0,'M','51220',0,'ZERONAC P','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 11:09:35',NULL,NULL),(0,0,'M','51221',0,'KRIRAB DSR ','',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 11:10:19',NULL,NULL),(0,0,'M','51222',0,'STATEL 4O MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 11:17:31',NULL,NULL),(0,0,'M','51223',0,'DAPAVEL -L (10/5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 11:18:12',NULL,NULL),(0,0,'M','51224',0,'INDOCAP-SR 75','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-13 12:42:22',NULL,NULL),(0,0,'M','51225',0,'METIXOL','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-13 12:45:47',NULL,NULL),(0,0,'M','51226',0,'SINAREST','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-13 13:00:35',NULL,NULL),(0,0,'M','51227',0,'SINAREST NASAL SPRAY','',0,'','',0,'SPRAY',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-13 13:03:12','darshan','2025-10-13 13:07:56'),(0,0,'M','51228',0,'DAPARYL 10MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 13:04:39',NULL,NULL),(0,0,'M','51229',0,'DOMPAN','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 13:42:25',NULL,NULL),(0,0,'M','51230',0,'APTIPRED 8 MG ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 13:45:26',NULL,NULL),(0,0,'M','51231',0,'BISOWIN -T (40/5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 13:50:55',NULL,NULL),(0,0,'M','51232',0,'MONTICOP','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 13:52:28',NULL,NULL),(0,0,'M','51233',0,'MELOSET 3MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-13 17:28:14',NULL,NULL),(0,0,'M','51234',0,'CLONZA  0.25MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-13 17:36:30',NULL,NULL),(0,0,'M','51235',0,'SIDIA 100MG ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 18:13:58',NULL,NULL),(0,0,'M','51236',0,'MAXGALIP AT','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 18:22:58','drarchit','2025-11-11 11:37:06'),(0,0,'M','51237',0,'URIMAX (0.4)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 18:23:36',NULL,NULL),(0,0,'M','51238',0,'CREMALEX 10MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 18:27:01',NULL,NULL),(0,0,'M','51239',0,'NEXPROFAST (40)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 18:34:42',NULL,NULL),(0,0,'M','51240',0,'TORESIS PLUS 10MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 18:50:27',NULL,NULL),(0,0,'M','51241',0,'DAPAVEL-S (10/100)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 18:51:01',NULL,NULL),(0,0,'M','51242',0,'LIPITAS GOLD (10)','',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 18:51:30',NULL,NULL),(0,0,'M','51243',0,'BISOBIS (5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 18:52:18','drarchit','2025-11-24 18:57:12'),(0,0,'M','51244',0,'DIABENERV','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 18:55:52',NULL,NULL),(0,0,'M','51245',0,'OTIFLOX EAR DROPS','',0,'','',0,'DROP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-13 19:00:50',NULL,NULL),(0,0,'M','51246',0,'DX 30 MG ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 19:05:47',NULL,NULL),(0,0,'M','51247',0,'PULMOCLEAR ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 19:09:07',NULL,NULL),(0,0,'M','51248',0,'PLUSS D3 (60K) ','',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 19:12:42',NULL,NULL),(0,0,'M','51249',0,'TRICIUM HD ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 19:13:07','drarchit','2025-10-17 11:16:23'),(0,0,'M','51250',0,'SILDOCIN (8)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 19:13:34',NULL,NULL),(0,0,'M','51251',0,'KOLTUS -C ','D27',0,'','',0,'SYRUP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-13 19:23:56','drarchit','2025-10-30 18:25:39'),(0,0,'M','51252',0,'IBUGESIC PLUS','',0,'','',0,'SYRUP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-14 10:57:32',NULL,NULL),(0,0,'M','51253',0,'VSL # 3','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-14 10:58:33',NULL,NULL),(0,0,'M','51254',0,'LIPITAS (40)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-14 10:59:26',NULL,NULL),(0,0,'M','51255',0,'ZYCOLD ','',0,'','',0,'SYRUP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-14 11:00:48',NULL,NULL),(0,0,'M','51256',0,'SYRUP SINAREST','',0,'','',0,'SYRUP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-14 11:02:26',NULL,NULL),(0,0,'M','51257',0,'ECOSPRIN 150 MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-14 11:02:33',NULL,NULL),(0,0,'M','51258',0,'ECOSPRIN GOLD(10)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-14 11:03:00','darshan','2025-10-15 17:31:51'),(0,0,'M','51259',0,'LEVIPIL (500 MG )','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-14 11:03:34',NULL,NULL),(0,0,'M','51260',0,'TPRESIS 20 MG ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-14 11:21:14',NULL,NULL),(0,0,'M','51261',0,'FEBUSTAT 940 )','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-14 11:21:46',NULL,NULL),(0,0,'M','51262',0,'KRINAP ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-14 11:24:10',NULL,NULL),(0,0,'M','51263',0,'SOBIOSID (500)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-14 11:27:03',NULL,NULL),(0,0,'M','51264',0,'XOXE ','',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-14 11:38:26',NULL,NULL),(0,0,'M','51265',0,'MULTI-58','',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-14 12:41:23',NULL,NULL),(0,0,'M','51266',0,'LIMCEE 500MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-14 12:42:12',NULL,NULL),(0,0,'M','51267',0,'BETAVERT OD 24 MG ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-14 12:51:40',NULL,NULL),(0,0,'M','51268',0,'STUGERON PLUS','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-14 12:52:05',NULL,NULL),(0,0,'M','51269',0,'CORTISTA (6 MG )','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-14 12:52:45',NULL,NULL),(0,0,'M','51270',0,'ZOSTUM-O 200MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-14 13:03:57',NULL,NULL),(0,0,'M','51271',0,'ENZOFLAM-CT','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-14 13:04:24',NULL,NULL),(0,0,'M','51272',0,'AMLODAC AT (5/50)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-14 18:57:10',NULL,NULL),(0,0,'M','51273',0,'CORTEL -H (80/12.5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-14 18:57:43',NULL,NULL),(0,0,'M','51274',0,'MGD3','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-15 11:12:29',NULL,NULL),(0,0,'M','51275',0,'ALEX COUGH LOGENZES','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-15 14:10:31',NULL,NULL),(0,0,'M','51276',0,'REBAGEN OTIC','',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-15 20:03:01',NULL,NULL),(0,0,'M','51277',0,'NYASON','',0,'','',0,'OINT',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-15 20:03:43',NULL,NULL),(0,0,'M','51278',0,'ROSULESS A (75/10)','',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-16 11:17:04',NULL,NULL),(0,0,'M','51279',0,'VIMGRAM','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-16 11:17:31',NULL,NULL),(0,0,'M','51280',0,'BISOWIN (5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-16 11:20:19',NULL,NULL),(0,0,'M','51281',0,'ZOCEF (250)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-16 11:23:18',NULL,NULL),(0,0,'M','51282',0,'ZOCEF -CV (250)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-16 11:23:47',NULL,NULL),(0,0,'M','51283',0,'KPVERT 24MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-16 11:28:57',NULL,NULL),(0,0,'M','51284',0,'OTOCAP','',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-16 18:45:15',NULL,NULL),(0,0,'M','51285',0,'TELMICAF MT (40/50)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-16 19:36:24',NULL,NULL),(0,0,'M','51286',0,'TELMICAD MT (40/50)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-16 19:37:23',NULL,NULL),(0,0,'M','51287',0,'PLACIDA','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-16 19:58:05',NULL,NULL),(0,0,'M','51288',0,'SOBISIS 500 MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-17 10:57:15',NULL,NULL),(0,0,'M','51289',0,'MBSURE-NP','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-24 13:29:47',NULL,NULL),(0,0,'M','51290',0,'FOLE 150MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-24 19:10:03',NULL,NULL),(0,0,'M','51291',0,'CANDID MOUTH PAINT','',0,'','',0,'SOL',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-24 19:10:47',NULL,NULL),(0,0,'M','51292',0,'CETZINE COLD','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-27 10:47:55',NULL,NULL),(0,0,'M','51293',0,'LUPITUSS ','',0,'','',0,'SYRUP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-27 10:48:42',NULL,NULL),(0,0,'M','51294',0,'SNAPIT','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-27 12:31:25',NULL,NULL),(0,0,'M','51295',0,'NAPROSYN 500MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-27 12:31:52',NULL,NULL),(0,0,'M','51296',0,'TELSAR 40','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-10-28 11:22:23',NULL,NULL),(0,0,'M','51297',0,'ZEPTAS (0.5)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 11:49:07',NULL,NULL),(0,0,'M','51298',0,'KRIMOX -CV (625)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 11:51:18',NULL,NULL),(0,0,'M','51299',0,'ETOLOK TH (60/4)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 12:02:30',NULL,NULL),(0,0,'M','51300',0,'ERVADOL GEL','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 12:03:04',NULL,NULL),(0,0,'M','51301',0,'ARNEY 50 ','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 12:20:33',NULL,NULL),(0,0,'M','51302',0,'FLUVIR (75 MG )','D27',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 12:25:01',NULL,NULL),(0,0,'M','51303',0,'IVEPRED 8 MG ','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 12:25:52',NULL,NULL),(0,0,'M','51304',0,'ETOLOK (90)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 12:26:46',NULL,NULL),(0,0,'M','51305',0,'RCINEX (600MG )','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 12:41:41',NULL,NULL),(0,0,'M','51306',0,'BLONG','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 12:42:07',NULL,NULL),(0,0,'M','51307',0,'H. MIXTARD (30 /700','D27',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 12:51:24',NULL,NULL),(0,0,'M','51308',0,'SITASON-D (10/100)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 12:52:15',NULL,NULL),(0,0,'M','51309',0,'OPVAST GOLD (10)','',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 12:59:09',NULL,NULL),(0,0,'M','51310',0,'OPVAST GOLD (20)','',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 12:59:36',NULL,NULL),(0,0,'M','51311',0,'OPGLIM MP1','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 13:05:45','drarchit','2025-11-11 11:49:21'),(0,0,'M','51312',0,'OPGLIM MP2 ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 13:06:36','drarchit','2025-11-20 18:45:06'),(0,0,'M','51313',0,'OPVAST (10)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 13:13:02',NULL,NULL),(0,0,'M','51314',0,'OPVAST (20)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 13:17:29',NULL,NULL),(0,0,'M','51315',0,'OPVAST (40)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 13:18:23',NULL,NULL),(0,0,'M','51316',0,'VILMUR 100 OD ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 13:35:48',NULL,NULL),(0,0,'M','51317',0,'EMPACOOL L 25','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-10-28 18:06:31',NULL,NULL),(0,0,'M','51318',0,'GABAPIN (100MG)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 18:11:23',NULL,NULL),(0,0,'M','51319',0,'GIMMY M 2','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-10-28 18:11:26',NULL,NULL),(0,0,'M','51320',0,'GIMMY M 1','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-10-28 18:12:15',NULL,NULL),(0,0,'M','51321',0,'ZIFI (200)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 18:17:04',NULL,NULL),(0,0,'M','51322',0,'MONTEY-F','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-28 18:18:37',NULL,NULL),(0,0,'M','51323',0,'PROLOMET-XL (25)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 18:18:56',NULL,NULL),(0,0,'M','51324',0,'PRESTA-M ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 18:29:44',NULL,NULL),(0,0,'M','51325',0,'OBIMET SR (500)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 18:47:39',NULL,NULL),(0,0,'M','51326',0,'ATIVAN (1)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 18:48:28',NULL,NULL),(0,0,'M','51327',0,'RESWAS','',0,'','',0,'SYRUP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 18:53:18','drarchit','2025-11-11 13:08:26'),(0,0,'M','51328',0,'LIPITAS (5)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 18:58:59',NULL,NULL),(0,0,'M','51329',0,'GLIMEFINE M2 ','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 19:05:24',NULL,NULL),(0,0,'M','51330',0,'GLIMEFINE M1 ','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 19:06:55',NULL,NULL),(0,0,'M','51331',0,'VELTUM (0.40','D27',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 19:07:47',NULL,NULL),(0,0,'M','51332',0,'BENZ','D27',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 19:20:27',NULL,NULL),(0,0,'M','51333',0,'INDERAL  20-LA','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 19:26:41','darshan','2025-10-30 17:36:41'),(0,0,'M','51334',0,'SIBELIUM (5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 19:27:10',NULL,NULL),(0,0,'M','51335',0,'MAXICHECK (0.3)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 19:44:55',NULL,NULL),(0,0,'M','51336',0,'FEBUSTAT (40 )','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 19:45:20',NULL,NULL),(0,0,'M','51337',0,'BIFOLATE','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 19:47:31',NULL,NULL),(0,0,'M','51338',0,'MOXICHECK (0.3)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-28 19:48:11',NULL,NULL),(0,0,'M','51339',0,'CLAVIX (75)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 11:39:59',NULL,NULL),(0,0,'M','51340',0,'IMDUR (30)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 11:41:03',NULL,NULL),(0,0,'M','51341',0,'SOBIOSIS (500)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 12:00:37',NULL,NULL),(0,0,'M','51342',0,'KETOADD ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 12:01:23',NULL,NULL),(0,0,'M','51343',0,'APRIGLIM MV2','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 12:26:11','drarchit','2025-11-11 11:45:48'),(0,0,'M','51344',0,'PIOSYS (15)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 12:26:44','drarchit','2025-11-11 11:45:21'),(0,0,'M','51345',0,'CORTEL (80)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 12:37:49',NULL,NULL),(0,0,'M','51346',0,'NEBICARD SM (5+2.5)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 12:38:42',NULL,NULL),(0,0,'M','51347',0,'METRIDE PLUS (2)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 12:39:49',NULL,NULL),(0,0,'M','51348',0,'TORKID (10)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 12:40:53',NULL,NULL),(0,0,'M','51349',0,'TELMICON M25','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-10-29 12:46:06',NULL,NULL),(0,0,'M','51350',0,'ECOTOR 10','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-10-29 12:46:46',NULL,NULL),(0,0,'M','51351',0,'CORDARONE -X (100)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 13:01:53',NULL,NULL),(0,0,'M','51352',0,'CORTEL (20)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 13:03:42',NULL,NULL),(0,0,'M','51353',0,'ECOSPRIN AV (150/20)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 13:04:26',NULL,NULL),(0,0,'M','51354',0,'URITIN (0.4)','D27',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 13:11:43',NULL,NULL),(0,0,'M','51355',0,'APIXAGRESS (5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 13:13:08',NULL,NULL),(0,0,'M','51356',0,'ACITROM 4 MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 13:16:15','drarchit','2025-11-12 11:19:35'),(0,0,'M','51357',0,'DILZEM (30)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 13:19:06',NULL,NULL),(0,0,'M','51358',0,'PROLOMET-XL (50)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 13:20:00',NULL,NULL),(0,0,'M','51359',0,'DYTOR (5)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 13:20:53',NULL,NULL),(0,0,'M','51360',0,'CALAPTIN SR 120','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 13:33:10',NULL,NULL),(0,0,'M','51361',0,'RCC ','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 18:07:49','drarchit','2025-10-29 18:17:10'),(0,0,'M','51362',0,'ULPAN L','',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 18:13:47','drarchit','2025-11-11 11:51:17'),(0,0,'M','51363',0,'ULPAN RFT','',0,'','',0,'SYRUP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 18:14:51','drarchit','2025-11-11 11:55:55'),(0,0,'M','51364',0,'UNITREX-S ','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 18:18:24',NULL,NULL),(0,0,'M','51365',0,'MEZOR ','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 18:19:45',NULL,NULL),(0,0,'M','51366',0,'MIKACIN ','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 18:25:16',NULL,NULL),(0,0,'M','51367',0,'DILZEM CR 60','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 18:46:06',NULL,NULL),(0,0,'M','51368',0,'CORTEL-M (40/50)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 18:56:06',NULL,NULL),(0,0,'M','51369',0,'SYNDOPA PLUS ','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 18:56:57',NULL,NULL),(0,0,'M','51370',0,'VONO (20)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 19:12:19',NULL,NULL),(0,0,'M','51371',0,'QUETAN (25)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 19:13:33',NULL,NULL),(0,0,'M','51372',0,'ERVADOL SPAS ','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 19:29:25',NULL,NULL),(0,0,'M','51373',0,'BETACAP PLUS (40/10)','D27',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 19:30:21',NULL,NULL),(0,0,'M','51374',0,'ULPAN DSR ','D27',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 19:35:02',NULL,NULL),(0,0,'M','51375',0,'THYRONORM (100)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-29 19:41:13',NULL,NULL),(0,0,'M','51376',0,'DAPACOOL-S','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-10-30 11:23:37',NULL,NULL),(0,0,'M','51377',0,'VOGLYSON 0.3','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-10-30 11:24:39',NULL,NULL),(0,0,'M','51378',0,'METROGYL ','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 11:25:19',NULL,NULL),(0,0,'M','51379',0,'METROGY  ER (600)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 11:31:28','drarchit','2025-11-21 12:19:23'),(0,0,'M','51380',0,'ENUFF','',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 11:31:49',NULL,NULL),(0,0,'M','51381',0,'CORTEL-H (40/12.5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 11:49:55',NULL,NULL),(0,0,'M','51382',0,'PROZIL MD ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 11:50:39',NULL,NULL),(0,0,'M','51383',0,'XOXE (250)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 11:59:40',NULL,NULL),(0,0,'M','51384',0,'AFASHMA SR (200)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 12:00:36',NULL,NULL),(0,0,'M','51385',0,'NEBICARD (10)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 12:18:08',NULL,NULL),(0,0,'M','51386',0,'METRIDE PLUS (1MG )','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 12:32:46',NULL,NULL),(0,0,'M','51387',0,'GLARITUS ','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 12:33:21',NULL,NULL),(0,0,'M','51388',0,'TELSARTAN TRIO','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 12:38:30',NULL,NULL),(0,0,'M','51389',0,'TRIOBIMET 2 MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 12:39:20',NULL,NULL),(0,0,'M','51390',0,'NS /RL ALTERNATE','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 13:16:48',NULL,NULL),(0,0,'M','51391',0,'CLARIBID (500)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 13:29:02',NULL,NULL),(0,0,'M','51392',0,'ENSURE PROTEIN','D27',0,'','',0,'POWDER',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 13:35:56',NULL,NULL),(0,0,'M','51393',0,'PANTODAC','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 13:43:05',NULL,NULL),(0,0,'M','51394',0,'VOMISET','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 13:43:24',NULL,NULL),(0,0,'M','51395',0,'DIVALGRESS (250)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 13:50:50',NULL,NULL),(0,0,'M','51396',0,'NABLIS -D ','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 13:51:51',NULL,NULL),(0,0,'M','51397',0,'CLEXANE (0.6)','D27',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 13:59:37',NULL,NULL),(0,0,'M','51398',0,'NEBULISATION DUOLIN BUDECORT 1:1 DILUTION','D27',0,'','',0,'OTH',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 14:00:44',NULL,NULL),(0,0,'M','51399',0,'SAIPAN-L','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-10-30 18:01:17',NULL,NULL),(0,0,'M','51400',0,'LEVIGRESS (250)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 18:35:10',NULL,NULL),(0,0,'M','51401',0,'DAPARL-M (10/500)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 18:46:17',NULL,NULL),(0,0,'M','51402',0,'OMNACRTIL 40 MG ','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 19:07:49',NULL,NULL),(0,0,'M','51403',0,'LANOL ER (650)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 19:38:55',NULL,NULL),(0,0,'M','51404',0,'PAH (20)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-30 19:40:59',NULL,NULL),(0,0,'M','51405',0,'GLIMSTAR M4 ','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-31 11:33:38',NULL,NULL),(0,0,'M','51406',0,'ZAVA OD (100)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-31 11:37:31',NULL,NULL),(0,0,'M','51407',0,'VOGS (0.3)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-31 11:38:44',NULL,NULL),(0,0,'M','51408',0,'TELSAR 20','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-10-31 12:12:53',NULL,NULL),(0,0,'M','51409',0,'ECOTOR AS 10/75','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-10-31 12:13:40',NULL,NULL),(0,0,'M','51410',0,'THYRONORM (125)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-31 12:21:47',NULL,NULL),(0,0,'M','51411',0,'TENEBITE (20)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-31 12:40:06',NULL,NULL),(0,0,'M','51412',0,'LUPIHEME','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-31 13:06:13',NULL,NULL),(0,0,'M','51413',0,'GLIMSON M2','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-31 13:31:23','drarchit','2025-11-11 11:49:49'),(0,0,'M','51414',0,'NICOGLOW','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-31 18:22:40','drarchit','2025-10-31 18:23:18'),(0,0,'M','51415',0,'COGNIDYN PLUS','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-10-31 19:08:38',NULL,NULL),(0,0,'M','51416',0,'GLYCOLATE 2MG','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-31 20:12:01',NULL,NULL),(0,0,'M','51417',0,'AMLODAC 5 MG','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-10-31 20:13:00',NULL,NULL),(0,0,'M','51418',0,'VOPERON-P','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-11-01 10:39:45',NULL,NULL),(0,0,'M','51419',0,'OBIMET GX 3','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-01 10:58:45',NULL,NULL),(0,0,'M','51420',0,'BISOBIS 2.5','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-01 11:03:57',NULL,NULL),(0,0,'M','51421',0,'TORKID 20','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-01 11:04:48',NULL,NULL),(0,0,'M','51422',0,'MAC RD','D27',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-01 11:06:30',NULL,NULL),(0,0,'M','51423',0,'PROTIHIR','D27',0,'','',0,'POWDER',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-01 11:07:39',NULL,NULL),(0,0,'M','51424',0,'CC BEST-T 10/40','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-01 11:16:12',NULL,NULL),(0,0,'M','51425',0,'CV ROZ ASP 10/75','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-01 11:17:05',NULL,NULL),(0,0,'M','51426',0,'TAMWELL 0.4','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-01 11:18:09',NULL,NULL),(0,0,'M','51427',0,'THYROX 100 MIGM','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-01 11:19:16',NULL,NULL),(0,0,'M','51428',0,'AKT 4','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-01 11:21:02',NULL,NULL),(0,0,'M','51429',0,'FDSON MP','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-01 11:23:34',NULL,NULL),(0,0,'M','51430',0,'TELMICON LN 10','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-01 11:33:12',NULL,NULL),(0,0,'M','51431',0,'SAMFIBER','D27',0,'','',0,'POWDER',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-01 11:36:18',NULL,NULL),(0,0,'M','51432',0,'CHYMORAL FORTE','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-01 11:59:54',NULL,NULL),(0,0,'M','51433',0,'T.T.','D27',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-01 12:00:29',NULL,NULL),(0,0,'M','51434',0,'LINOX (600)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-01 12:24:08',NULL,NULL),(0,0,'M','51435',0,'VITNEURIN  CZS','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-01 12:43:37',NULL,NULL),(0,0,'M','51436',0,'OLAGRESS 5MG','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-01 13:17:11',NULL,NULL),(0,0,'M','51437',0,'PEGCLEAR','D27',0,'','',0,'SYRUP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-01 13:17:18',NULL,NULL),(0,0,'M','51438',0,'FLUTANA','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-01 13:18:13',NULL,NULL),(0,0,'M','51439',0,'PBREN-NT','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-11-03 10:45:37',NULL,NULL),(0,0,'M','51440',0,'ZERODOL-TH 8','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-11-03 10:47:20',NULL,NULL),(0,0,'M','51441',0,'SUMASELF NASAL SPRAY','',0,'','',0,'SPRAY',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-11-03 10:52:02','darshan','2025-11-03 10:54:47'),(0,0,'M','51442',0,'TORKID PLUS 10','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-03 12:06:54',NULL,NULL),(0,0,'M','51443',0,'THYRONEED 50','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-03 12:08:41',NULL,NULL),(0,0,'M','51444',0,'HYPONAT-O 15','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-03 12:09:31',NULL,NULL),(0,0,'M','51445',0,'PANTODAC DSR','D27',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-03 12:10:23',NULL,NULL),(0,0,'M','51446',0,'ZYRTEK','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-11-03 17:07:36',NULL,NULL),(0,0,'M','51447',0,'ZYRCOLD','',0,'','',0,'SYRUP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-11-04 19:10:38','darshan','2025-11-04 19:10:54'),(0,0,'M','51448',0,'AZEE 200MG','',0,'','',0,'SYRUP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-11-04 19:12:29',NULL,NULL),(0,0,'M','51449',0,'ALPAGON GEL','',0,'','',0,'OINT',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-11-05 10:47:17',NULL,NULL),(0,0,'M','51450',0,'FORSON SR 500','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-05 11:23:30',NULL,NULL),(0,0,'M','51451',0,'THYRONEED 75','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-05 11:24:19',NULL,NULL),(0,0,'M','51452',0,'BETADINE 10 %','D27',0,'','',0,'SOL',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-05 12:28:36',NULL,NULL),(0,0,'M','51453',0,'ECAL PLUS','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-05 13:23:35',NULL,NULL),(0,0,'M','51454',0,'METROGYL DG ','D27',0,'','',0,'OINT',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-05 13:24:54',NULL,NULL),(0,0,'M','51455',0,'TELSART AMH','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-05 19:15:44',NULL,NULL),(0,0,'M','51456',0,'FEBURIC 40','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-06 11:17:05',NULL,NULL),(0,0,'M','51457',0,'SODACON 500','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-06 11:17:43',NULL,NULL),(0,0,'M','51458',0,'TRIKA 0.25','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-06 18:55:59',NULL,NULL),(0,0,'M','51459',0,'ECOTRIL PLUS','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-06 19:03:37',NULL,NULL),(0,0,'M','51460',0,'ISABGUL','',0,'','',0,'POWDER',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-11-07 12:04:56',NULL,NULL),(0,0,'M','51461',0,'OLEV EAR DROPS','',0,'','',0,'DROP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-11-10 17:29:52',NULL,NULL),(0,0,'M','51462',0,'PRAZOPRESS XL (5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 11:27:59',NULL,NULL),(0,0,'M','51463',0,'WOSULLLIN (30/70) CARTRIDGE','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 11:29:48','drarchit','2025-11-11 11:37:41'),(0,0,'M','51464',0,'GLUCOBAY (50)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 11:31:02',NULL,NULL),(0,0,'M','51465',0,'LINABITE (5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 11:43:22',NULL,NULL),(0,0,'M','51466',0,'PREDMET 4MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',6,0,0,'Y','darshan','2025-11-11 11:55:51',NULL,NULL),(0,0,'M','51467',0,'HEALTH OK','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 12:00:27',NULL,NULL),(0,0,'M','51468',0,'SHELCAL HD','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 12:05:09',NULL,NULL),(0,0,'M','51469',0,'APTIPRED 4 MG ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 12:10:44',NULL,NULL),(0,0,'M','51470',0,'DERIPHYLLIN OD (300)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 12:11:55',NULL,NULL),(0,0,'M','51471',0,'FORACORT ROTACAPS','',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 12:32:06',NULL,NULL),(0,0,'M','51472',0,'AIR (180)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 12:32:26',NULL,NULL),(0,0,'M','51473',0,'ARKAMINE (100 MCG)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 12:43:35',NULL,NULL),(0,0,'M','51474',0,'METRIDE (2)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 12:49:36',NULL,NULL),(0,0,'M','51475',0,'CORTEL (40)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 12:50:34',NULL,NULL),(0,0,'M','51476',0,'ZERODOL (100 MG)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 12:57:58',NULL,NULL),(0,0,'M','51477',0,'THYRONORM (50)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 13:10:56',NULL,NULL),(0,0,'M','51478',0,'RANTAC (150)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 13:11:47',NULL,NULL),(0,0,'M','51479',0,'DIGERAFT','',0,'','',0,'SYRUP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 13:13:12',NULL,NULL),(0,0,'M','51480',0,'ZOFER MD (8)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 13:13:49',NULL,NULL),(0,0,'M','51481',0,'OMNACRTIL 5 MG ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 13:14:51',NULL,NULL),(0,0,'M','51482',0,'LIPITAS (10)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 13:17:56',NULL,NULL),(0,0,'M','51483',0,'CORBIS (2.5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 13:22:31',NULL,NULL),(0,0,'M','51484',0,'GLIMEFINE M2 FORTE','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 13:25:02',NULL,NULL),(0,0,'M','51485',0,'ROSULESS GOLD (20)','',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 13:25:52',NULL,NULL),(0,0,'M','51486',0,'BISOPRIDE T (40/5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 13:26:35',NULL,NULL),(0,0,'M','51487',0,'DERIPHYLLIN RETARD (300)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 13:29:13',NULL,NULL),(0,0,'M','51488',0,'BASALOG','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 14:11:47',NULL,NULL),(0,0,'M','51489',0,'HUMAN ATRAPID','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 14:12:32',NULL,NULL),(0,0,'M','51490',0,'THYRONORM 25 MCG','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 18:46:15',NULL,NULL),(0,0,'M','51491',0,'CREON (10000)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 18:57:23',NULL,NULL),(0,0,'M','51492',0,'H. MIXTARD (30 /70)','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 18:58:40',NULL,NULL),(0,0,'M','51493',0,'FORECOX','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 19:09:51',NULL,NULL),(0,0,'M','51494',0,'NEBICARE-H (40/12.5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-11 19:24:03',NULL,NULL),(0,0,'M','51495',0,'LACOSAM (100)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-12 11:33:50',NULL,NULL),(0,0,'M','51496',0,'SILTOZ (100)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-12 12:28:20',NULL,NULL),(0,0,'M','51497',0,'TELMIRIDE (40)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-12 12:38:08',NULL,NULL),(0,0,'M','51498',0,'AQUAZDIE (12.5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-12 12:46:57',NULL,NULL),(0,0,'M','51499',0,'ITRASON (200)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-12 13:00:37',NULL,NULL),(0,0,'M','51500',0,'URIMAC KM ','',0,'','',0,'SYRUP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-12 13:11:39',NULL,NULL),(0,0,'M','51501',0,'UNIENZME ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-12 13:16:41',NULL,NULL),(0,0,'M','51502',0,'DAN-MR','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-11-12 18:26:00',NULL,NULL),(0,0,'M','51503',0,'HCQ (200) ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-12 18:35:58',NULL,NULL),(0,0,'M','51504',0,'LEFNO (20)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-12 18:36:31',NULL,NULL),(0,0,'M','51505',0,'ROSUSON (10)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-12 18:42:03',NULL,NULL),(0,0,'M','51506',0,'THYRONORM (150)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-12 19:06:55',NULL,NULL),(0,0,'M','51507',0,'ELTROXIN 100 MCG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-12 20:05:59',NULL,NULL),(0,0,'M','51508',0,'ATIVAN (2)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-12 20:42:29',NULL,NULL),(0,0,'M','51509',0,'H.ACTRAPID 50 UNITS + INJ NS 50 ML ','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-13 11:11:41',NULL,NULL),(0,0,'M','51510',0,'METIUM TRIO (2)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-13 11:16:44',NULL,NULL),(0,0,'M','51511',0,'METIUM TRIO (1)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-13 11:17:13',NULL,NULL),(0,0,'M','51512',0,'ZAVA (50)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-13 11:17:43',NULL,NULL),(0,0,'M','51513',0,'OTSKI','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-13 11:32:18',NULL,NULL),(0,0,'M','51514',0,'HEPTADIN 4 MG ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-13 11:48:40',NULL,NULL),(0,0,'M','51515',0,'JAKSEAS 5 MG ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-13 12:03:02',NULL,NULL),(0,0,'M','51516',0,'HCQ (300MG)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-13 12:03:31',NULL,NULL),(0,0,'M','51517',0,'NEUROKIND GOLD ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-13 12:17:53',NULL,NULL),(0,0,'M','51518',0,'LIBOTRYP DS 25/10','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-13 12:35:25',NULL,NULL),(0,0,'M','51519',0,'TORESIS PLUS (20)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-13 12:50:56',NULL,NULL),(0,0,'M','51520',0,'TONOFOLIC-Z','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-11-13 13:15:27','darshan','2025-11-13 13:20:13'),(0,0,'M','51521',0,'LIPITAZ-EZ (10)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-13 13:33:22',NULL,NULL),(0,0,'M','51522',0,'PEMIPEXOL (1)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-13 18:22:46',NULL,NULL),(0,0,'M','51523',0,'H. INSULIN (30/70)','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-13 18:41:23',NULL,NULL),(0,0,'M','51524',0,'DYNAGLIPT (20)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-13 18:47:25',NULL,NULL),(0,0,'M','51525',0,'DEPLATT CV','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-13 19:26:32',NULL,NULL),(0,0,'M','51526',0,'THAYA B','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-13 19:38:46',NULL,NULL),(0,0,'M','51527',0,'NEFCM (1000MG) IN 100 ML NS IV OVER 1 HR AFTER NORMAL SKIN TEST','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-14 11:02:11',NULL,NULL),(0,0,'M','51528',0,'CLOBA (5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-14 12:20:56',NULL,NULL),(0,0,'M','51529',0,'K- BIND ','',0,'','',0,'SACHET',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-14 12:37:12','drarchit','2025-11-14 12:40:00'),(0,0,'M','51530',0,'THYRONROM (75)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-14 18:25:38',NULL,NULL),(0,0,'M','51531',0,'LANCTUS 100 IU','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-14 18:30:42',NULL,NULL),(0,0,'M','51532',0,'H. ACTRAPID ','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-14 18:31:15',NULL,NULL),(0,0,'M','51533',0,'XOXE (500)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-14 18:40:52',NULL,NULL),(0,0,'M','51534',0,'LOXOF 500 MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-14 18:42:26',NULL,NULL),(0,0,'M','51535',0,'ROSUSON-F (10)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-14 19:49:31',NULL,NULL),(0,0,'M','51536',0,'FOLITREX (10)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-15 11:34:50',NULL,NULL),(0,0,'M','51537',0,'FOLVITE (5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-15 11:36:16',NULL,NULL),(0,0,'M','51538',0,'C UDP (20)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-15 11:53:28',NULL,NULL),(0,0,'M','51539',0,'SOBISIS FORTE (2 GM)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-15 11:54:30',NULL,NULL),(0,0,'M','51540',0,'TELMIKAA - MT (40/5)','GEN',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-19 12:55:59','drarchit','2025-12-19 19:11:50'),(0,0,'M','51541',0,'BENDY PLUS','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-19 13:33:23',NULL,NULL),(0,0,'M','51542',0,'MOXIVAS (0.3)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-19 18:30:11',NULL,NULL),(0,0,'M','51543',0,'TRYPTOMER (10)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-19 18:37:36',NULL,NULL),(0,0,'M','51544',0,'DGSON (10)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-19 18:45:07',NULL,NULL),(0,0,'M','51545',0,'LEVIGRESS (500)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-20 12:02:53',NULL,NULL),(0,0,'M','51546',0,'CANDID  L/A','',0,'','',0,'LOTION',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-20 12:08:15',NULL,NULL),(0,0,'M','51547',0,'IOPAR-SR 250MG','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-11-20 18:33:41',NULL,NULL),(0,0,'M','51548',0,'AZORAN (50)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-20 19:10:44',NULL,NULL),(0,0,'M','51549',0,'TRENEXA (500)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-21 11:59:12',NULL,NULL),(0,0,'M','51550',0,'DAPARYL-L (10/5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-21 12:04:17',NULL,NULL),(0,0,'M','51551',0,'XULIN (30/70)','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-21 12:22:07',NULL,NULL),(0,0,'M','51552',0,'XSULIN-R','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-21 12:25:53',NULL,NULL),(0,0,'M','51553',0,'TEDOMET PLUS ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-21 12:48:57',NULL,NULL),(0,0,'M','51554',0,'PACITANE (2)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-21 12:49:38',NULL,NULL),(0,0,'M','51555',0,'OPTOR-ASP (150/20)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-21 12:54:31',NULL,NULL),(0,0,'M','51556',0,'RIFAFIX (550)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-21 13:07:47',NULL,NULL),(0,0,'M','51557',0,'HEPAMERZ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-21 13:08:35',NULL,NULL),(0,0,'M','51558',0,'CARDIVAS (3.125)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-21 13:10:04',NULL,NULL),(0,0,'M','51559',0,'LOOZ ','',0,'','',0,'SYRUP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-21 13:11:04',NULL,NULL),(0,0,'M','51560',0,'LIPITAS-EZ (10)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-21 13:35:52',NULL,NULL),(0,0,'M','51561',0,'XGLAR CARTIDGE ','',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-22 13:03:43',NULL,NULL),(0,0,'M','51562',0,'CYRA (20)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-24 12:12:39',NULL,NULL),(0,0,'M','51563',0,'APTIFRESH FM','GEN',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-24 18:56:01','drarchit','2025-12-20 11:53:57'),(0,0,'M','51564',0,'PRULINK (1)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-25 12:28:07',NULL,NULL),(0,0,'M','51565',0,'UNISTAR (150/20)','',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-25 12:53:54',NULL,NULL),(0,0,'M','51566',0,'ACIVIR (800)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-25 19:15:15',NULL,NULL),(0,0,'M','51567',0,'ZENACORT','',0,'','',0,'OINT',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-11-26 17:49:11',NULL,NULL),(0,0,'M','51568',0,'FOLITREX (15)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-26 18:51:54',NULL,NULL),(0,0,'M','51569',0,'TELPAX CM 50','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-27 12:56:23',NULL,NULL),(0,0,'M','51570',0,'OMIBET 0.5','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-27 18:23:27',NULL,NULL),(0,0,'M','51571',0,'OMNACORTIL 10 MG ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-27 19:17:10',NULL,NULL),(0,0,'M','51572',0,'GLIMSON MP2 ','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-27 20:28:13',NULL,NULL),(0,0,'M','51573',0,'GLIMSON MP1','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-11-27 20:28:38',NULL,NULL),(0,0,'M','51574',0,'TELMIRIDE MT 50','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-28 18:50:09',NULL,NULL),(0,0,'M','51575',0,'TELMICON TRIO','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-29 12:03:47',NULL,NULL),(0,0,'M','51576',0,'RECOTOR-F 10','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-29 12:05:26',NULL,NULL),(0,0,'M','51577',0,'DIOZYME','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-11-29 13:11:58',NULL,NULL),(0,0,'M','51578',0,'ECOTOR GOLD 10','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-01 11:25:09',NULL,NULL),(0,0,'M','51579',0,'KORANDIL 5MG','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-01 11:26:35',NULL,NULL),(0,0,'M','51580',0,'XYGREL (90)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-01 11:48:03',NULL,NULL),(0,0,'M','51581',0,'BRIVASURE (50)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-01 11:49:36',NULL,NULL),(0,0,'M','51582',0,'NIDITAB 0.3','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-01 18:29:13',NULL,NULL),(0,0,'M','51583',0,'C UDP 10','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-01 18:31:03',NULL,NULL),(0,0,'M','51584',0,'NICROAN 0D (10)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-01 19:04:28',NULL,NULL),(0,0,'M','51585',0,'URSOCOL (300)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-01 20:28:30',NULL,NULL),(0,0,'M','51586',0,'TELMICON-LN 10','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-02 11:46:39',NULL,NULL),(0,0,'M','51587',0,'ECOTOR 20','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-02 11:57:25',NULL,NULL),(0,0,'M','51588',0,'MYOZINC AO','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-02 11:58:19',NULL,NULL),(0,0,'M','51589',0,'ECOSPRIN 75','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-02 12:14:25',NULL,NULL),(0,0,'M','51590',0,'ULTRACET SEMI','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-02 13:10:22',NULL,NULL),(0,0,'M','51591',0,'THYROCAP (5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-02 18:13:06',NULL,NULL),(0,0,'M','51592',0,'ZOLFRESH (10)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-02 18:31:28',NULL,NULL),(0,0,'M','51593',0,'ADDKAY','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-02 18:37:20',NULL,NULL),(0,0,'M','51594',0,'ROSUSON (5)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-02 18:58:34',NULL,NULL),(0,0,'M','51595',0,'METROGYL-DG ORAL GEL','',0,'','',0,'OTH',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-12-02 19:52:27',NULL,NULL),(0,0,'M','51596',0,'CONTRAPOLE','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-02 20:06:41',NULL,NULL),(0,0,'M','51597',0,'FEBIRED ','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-03 18:42:39',NULL,NULL),(0,0,'M','51598',0,'ANTI THYROX 5','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-03 18:57:54',NULL,NULL),(0,0,'M','51599',0,'ZORYL 1MG','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-04 11:24:30',NULL,NULL),(0,0,'M','51600',0,'L DIO 1-M','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-04 11:28:06',NULL,NULL),(0,0,'M','51601',0,'ANTI THYROX 10','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-04 12:19:14',NULL,NULL),(0,0,'M','51602',0,'LIPITAS GOLD (20)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-04 19:24:34',NULL,NULL),(0,0,'M','51603',0,'OFFGERD','',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-12-05 10:53:21',NULL,NULL),(0,0,'M','51604',0,'SACUNEW (50)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-05 13:16:07',NULL,NULL),(0,0,'M','51605',0,'DEPLATT A (75/150)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-05 19:09:24',NULL,NULL),(0,0,'M','51606',0,'LABETOLOL (100)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-05 19:42:52',NULL,NULL),(0,0,'M','51607',0,'THYROX 50 MCG','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-06 12:41:33',NULL,NULL),(0,0,'M','51608',0,'DOXOMAX OD','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-06 12:44:32',NULL,NULL),(0,0,'M','51609',0,'CHOLYSTERAMINE SACHET 4 GM','',0,'','',0,'SACHET',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-08 19:26:21',NULL,NULL),(0,0,'M','51610',0,'NICARDIA SM (5+2.5)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-09 11:40:04',NULL,NULL),(0,0,'M','51611',0,'ACIVIR','',0,'','',0,'OINT',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-09 19:12:35',NULL,NULL),(0,0,'M','51612',0,'CREMAFFIN PLUS ','D27',0,'','',0,'SOL',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-09 19:25:37',NULL,NULL),(0,0,'M','51613',0,'CEFICOOL CV 325','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-10 18:34:07',NULL,NULL),(0,0,'M','51614',0,'RESPICURE D','D27',0,'','',0,'SYRUP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-10 18:38:03',NULL,NULL),(0,0,'M','51615',0,'VITANOVA D3 DG','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-10 18:46:19',NULL,NULL),(0,0,'M','51616',0,'UBICAR','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-10 18:48:11',NULL,NULL),(0,0,'M','51617',0,'FURTEL-H','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-10 19:35:58',NULL,NULL),(0,0,'M','51618',0,'NUTRITUS','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-11 13:01:13',NULL,NULL),(0,0,'M','51619',0,'EZITHRO 500','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-11 18:59:14',NULL,NULL),(0,0,'M','51620',0,'PHILFREE 5','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-11 19:01:05',NULL,NULL),(0,0,'M','51621',0,'AUGPEN 625','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-11 19:04:38',NULL,NULL),(0,0,'M','51622',0,'SERADASE AP','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-11 19:05:12',NULL,NULL),(0,0,'M','51623',0,'CEFICOOL 200','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-11 20:02:09',NULL,NULL),(0,0,'M','51624',0,'NERVISUN-NT','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','darshan','2025-12-12 17:33:47',NULL,NULL),(0,0,'M','51625',0,'GABANEURON NT 100','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-12 18:45:20',NULL,NULL),(0,0,'M','51626',0,'PREGAFUR- M 75','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-12 18:58:06',NULL,NULL),(0,0,'M','51627',0,'ACITROM (1)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-12 19:52:12',NULL,NULL),(0,0,'M','51628',0,'XOXE CV (250)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-13 11:38:38',NULL,NULL),(0,0,'M','51629',0,'FLUOFF','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-13 11:39:20',NULL,NULL),(0,0,'M','51630',0,'LASILACTONE (10/50)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-13 11:50:04',NULL,NULL),(0,0,'M','51631',0,'COBADEX -CZS','',0,'','',0,'CAP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-13 11:50:57',NULL,NULL),(0,0,'M','51632',0,'TELSAR-AMH','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-13 12:07:51',NULL,NULL),(0,0,'M','51633',0,'OPTOR ASP (150)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-16 11:41:00',NULL,NULL),(0,0,'M','51634',0,'LIPITAS (20)','',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-16 12:57:39',NULL,NULL),(0,0,'M','51635',0,'CARTIQUINE 300','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-16 13:24:15',NULL,NULL),(0,0,'M','51636',0,'BROZADEX','D27',0,'','',0,'SYRUP',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-16 19:08:34',NULL,NULL),(0,0,'M','51637',0,'ATARAX','D27',0,'','',0,'LOTION',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-17 12:33:34',NULL,NULL),(0,0,'M','51638',0,'BETAHIST FORTE 16 ','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-17 19:34:32',NULL,NULL),(0,0,'M','51639',0,'DIVARON (250)','GEN',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-18 12:43:17',NULL,NULL),(0,0,'M','51640',0,'TIZIFOX (50)','GEN',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-18 12:54:29',NULL,NULL),(0,0,'M','51641',0,'LEVIHOP (500)','GEN',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-18 12:58:13',NULL,NULL),(0,0,'M','51642',0,'INJ LEVIHOP','GEN',0,'','',0,'INJ',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-18 12:59:39',NULL,NULL),(0,0,'M','51643',0,'BRIVAYES (50)','GEN',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-18 13:00:30',NULL,NULL),(0,0,'M','51644',0,'MIGHOP-PLUS ','GEN',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-18 13:01:23',NULL,NULL),(0,0,'M','51645',0,'MIGHOP LS','GEN',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-18 13:01:41',NULL,NULL),(0,0,'M','51646',0,'CORTEL A (40+5)','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-19 12:00:27',NULL,NULL),(0,0,'M','51647',0,'ORNIFLOX','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-19 19:29:07',NULL,NULL),(0,0,'M','51648',0,'CYCLOPAM','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-19 19:31:01',NULL,NULL),(0,0,'M','51649',0,'SHELCAL XT','GEN',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-20 11:07:10',NULL,NULL),(0,0,'M','51650',0,'FEBURIC 20 ','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-20 12:49:56',NULL,NULL),(0,0,'M','51651',0,'OBIMET GX 0.5','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-22 18:30:03',NULL,NULL),(0,0,'M','51652',0,'TELMIDOR 40','D27',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drjayant','2025-12-22 18:36:20',NULL,NULL),(0,0,'M','51653',0,'THYROCAB (10)','GEN',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-22 18:48:14',NULL,NULL),(0,0,'M','51654',0,'INDERAL (20)','GEN',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-22 18:48:40',NULL,NULL),(0,0,'M','51655',0,'RIFAXYGYL-M','GEN',0,'','',0,'TAB',0,0,0,0,0,0,0,0,'',0,'','','',0,'P','','N',0,0,0,'Y','drarchit','2025-12-23 12:47:44',NULL,NULL);
/*!40000 ALTER TABLE `medicine_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `medicine_stock`
--

DROP TABLE IF EXISTS `medicine_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `medicine_stock` (
  `item_cd` varchar(10) NOT NULL,
  `item_type` varchar(2) NOT NULL,
  `category` varchar(10) NOT NULL,
  `item_batch` varchar(15) NOT NULL,
  `year` int(11) NOT NULL,
  `pack_stock` float NOT NULL,
  `loose_stock` int(11) NOT NULL,
  `batch_exp` varchar(5) NOT NULL,
  `vat` float NOT NULL,
  `cess` float NOT NULL,
  `med_price` float NOT NULL,
  `purch_price` float NOT NULL,
  `sale_price` float NOT NULL,
  `mrp` float NOT NULL,
  `opening_stock` float NOT NULL,
  `opening_price` float NOT NULL,
  PRIMARY KEY (`item_cd`,`item_batch`,`year`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `medicine_stock`
--

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

--
-- Table structure for table `medicine_transaction`
--

DROP TABLE IF EXISTS `medicine_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `medicine_transaction` (
  `index` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `trn_type` varchar(4) NOT NULL,
  `trn_id` int(11) NOT NULL,
  `trn_no` varchar(10) NOT NULL,
  `trn_year` int(11) NOT NULL,
  `medi_trn_sr_no` smallint(6) NOT NULL,
  `indent_date` date NOT NULL,
  `item_cd` varchar(10) NOT NULL,
  `product_id` int(11) NOT NULL COMMENT 'mapping id from medicine master',
  `original_product_id` int(11) NOT NULL,
  `item_type` varchar(15) NOT NULL,
  `drug_adm` varchar(10) NOT NULL COMMENT 'drug administration',
  `item_batch` varchar(15) NOT NULL,
  `batch_exp` varchar(5) NOT NULL,
  `pack_quantity` varchar(10) NOT NULL,
  `free_quantity` int(11) NOT NULL,
  `loose_quantity` int(11) NOT NULL,
  `issue_qty` int(11) NOT NULL,
  `original_req_qty` int(11) NOT NULL,
  `discount` float NOT NULL,
  `tapering_dose` int(11) NOT NULL,
  `dose` varchar(20) NOT NULL,
  `dose_unit` varchar(20) NOT NULL,
  `frequency` varchar(3) NOT NULL COMMENT 'day,week,month,year,TM',
  `no_of_times` int(11) NOT NULL COMMENT 'to calculate qty',
  `packing_size` int(11) NOT NULL,
  `price` float NOT NULL,
  `mrp` float NOT NULL,
  `patient_rate` float NOT NULL,
  `pack_price` float NOT NULL,
  `loose_price` float NOT NULL,
  `vat` float NOT NULL,
  `Cess` float NOT NULL,
  `opening_stock` int(11) NOT NULL,
  `inst` varchar(100) NOT NULL,
  `issue_med` varchar(1) NOT NULL,
  `i_or_p` char(1) NOT NULL COMMENT 'I-issue, p-prescribe',
  `issuedBy` varchar(15) DEFAULT NULL,
  `issuedDate` datetime DEFAULT NULL,
  `CreatedBy` varchar(15) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(15) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`index`),
  UNIQUE KEY `index` (`index`,`trn_type`,`trn_id`,`trn_year`),
  UNIQUE KEY `index_2` (`index`,`company_id`,`branch_id`,`trn_type`,`trn_id`,`trn_year`),
  UNIQUE KEY `index_3` (`index`,`company_id`,`branch_id`,`trn_type`,`trn_id`,`trn_year`),
  KEY `trn_no` (`trn_no`),
  KEY `idx_trn` (`trn_id`,`trn_type`,`trn_year`,`i_or_p`,`item_cd`,`medi_trn_sr_no`)
) ENGINE=InnoDB AUTO_INCREMENT=12200 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `medicine_transaction`
--

LOCK TABLES `medicine_transaction` WRITE;
/*!40000 ALTER TABLE `medicine_transaction` DISABLE KEYS */;
INSERT INTO `medicine_transaction` VALUES (2,0,0,'I',3,'I000003',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,0,0,0,0,0,'0','','Dy',30,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'darshan','2025-10-08 11:35:49','','0000-00-00 00:00:00'),(3,0,0,'I',3,'I000003',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'.5','','Dy',30,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'darshan','2025-10-08 11:35:49','','0000-00-00 00:00:00'),(4,0,0,'I',3,'I000003',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,30,0,0,0,0,'1','','Dy',30,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'darshan','2025-10-08 11:35:49','','0000-00-00 00:00:00'),(5,0,0,'I',4,'I000004',2526,0,'0000-00-00','47403',48389,0,'TAB','','','','INF',0,10,0,0,0,0,'1-0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(6,0,0,'I',4,'I000004',2526,0,'0000-00-00','49471',52459,0,'TAB','','','','INF',0,10,0,0,0,0,'1-0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'5','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(7,0,0,'I',4,'I000004',2526,0,'0000-00-00','37294',37294,0,'TAB','','','','INF',0,10,0,0,0,0,'1-0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(8,0,0,'I',4,'I000004',2526,0,'0000-00-00','41444',41444,0,'TAB','','','','INF',0,15,0,0,0,0,'1-1-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(9,0,0,'I',4,'I000004',2526,0,'0000-00-00','16758',16758,0,'TAB','','','','INF',0,10,0,0,0,0,'1-0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(11,0,0,'I',18,'I000018',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,0,0,0,0,0,'.5','','Dy',0,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'darshan','2025-10-10 11:27:59','','0000-00-00 00:00:00'),(12,0,0,'I',19,'I000019',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,0,0,0,0,0,'.5','','Dy',0,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'darshan','2025-10-10 12:59:37','','0000-00-00 00:00:00'),(16,0,0,'I',22,'I000022',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,0,0,0,0,0,'.5','','Dy',0,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'darshan','2025-10-10 14:47:20','','0000-00-00 00:00:00'),(18,0,0,'I',23,'I000023',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,0,0,0,0,0,'.5','','Dy',0,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'darshan','2025-10-10 17:35:47','','0000-00-00 00:00:00'),(20,0,0,'I',25,'I000025',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,0,0,0,0,0,'','','Dy',0,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'darshan','2025-10-10 18:36:13','darshan','2025-10-10 18:36:45'),(21,0,0,'I',25,'I000025',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-1','','Dy',0,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-10 18:36:30','darshan','2025-10-10 18:36:45'),(22,0,0,'I',27,'I000027',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 09:54:09','darshan','2025-10-11 11:28:57'),(23,0,0,'I',28,'I000028',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 10:04:38','','0000-00-00 00:00:00'),(24,0,0,'I',28,'I000028',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 10:04:38','','0000-00-00 00:00:00'),(25,0,0,'I',29,'I000029',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 10:24:42','','0000-00-00 00:00:00'),(26,0,0,'I',29,'I000029',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 10:24:42','','0000-00-00 00:00:00'),(27,0,0,'I',30,'I000030',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 10:29:28','darshan','2025-10-11 10:29:38'),(28,0,0,'I',30,'I000030',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 10:29:28','darshan','2025-10-11 10:29:38'),(29,0,0,'I',31,'I000031',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 10:47:50','','0000-00-00 00:00:00'),(30,0,0,'I',31,'I000031',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 10:47:50','','0000-00-00 00:00:00'),(31,0,0,'I',32,'I000032',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 10:55:35','','0000-00-00 00:00:00'),(32,0,0,'I',32,'I000032',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 10:55:35','','0000-00-00 00:00:00'),(33,0,0,'I',32,'I000032',2526,3,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 10:55:35','','0000-00-00 00:00:00'),(34,0,0,'I',32,'I000032',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'341','','P',NULL,NULL,'darshan','2025-10-11 10:55:35','','0000-00-00 00:00:00'),(35,0,0,'I',33,'I000033',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 11:04:34','','0000-00-00 00:00:00'),(36,0,0,'I',33,'I000033',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 11:04:34','','0000-00-00 00:00:00'),(37,0,0,'I',33,'I000033',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-11 11:04:34','','0000-00-00 00:00:00'),(38,0,0,'I',33,'I000033',2526,4,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'63','','P',NULL,NULL,'darshan','2025-10-11 11:04:34','','0000-00-00 00:00:00'),(40,0,0,'I',34,'I000034',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-11 11:07:37','darshan','2025-10-11 11:11:48'),(41,0,0,'I',34,'I000034',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 11:10:37','darshan','2025-10-11 11:11:48'),(42,0,0,'I',34,'I000034',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'156','','P',NULL,NULL,'darshan','2025-10-11 11:10:37','darshan','2025-10-11 11:11:48'),(43,0,0,'I',27,'I000027',2526,2,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 11:28:57','','0000-00-00 00:00:00'),(44,0,0,'I',36,'I000036',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 11:33:41','','0000-00-00 00:00:00'),(45,0,0,'I',36,'I000036',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 11:33:41','','0000-00-00 00:00:00'),(46,0,0,'I',36,'I000036',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-11 11:33:41','','0000-00-00 00:00:00'),(47,0,0,'I',37,'I000037',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 11:40:58','darshan','2025-10-11 11:44:27'),(48,0,0,'I',37,'I000037',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 11:40:58','darshan','2025-10-11 11:44:27'),(49,0,0,'I',37,'I000037',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 11:44:27','','0000-00-00 00:00:00'),(50,0,0,'I',39,'I000039',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 11:51:23','darshan','2025-10-11 12:14:22'),(51,0,0,'I',39,'I000039',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 11:51:23','darshan','2025-10-11 12:14:22'),(52,0,0,'I',39,'I000039',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-11 11:51:23','darshan','2025-10-11 12:14:22'),(53,0,0,'I',40,'I000040',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:04:01','','0000-00-00 00:00:00'),(54,0,0,'I',41,'I000041',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,0,'','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-10-11 12:22:54','','0000-00-00 00:00:00'),(55,0,0,'I',41,'I000041',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:22:54','','0000-00-00 00:00:00'),(56,0,0,'I',41,'I000041',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:22:54','','0000-00-00 00:00:00'),(57,0,0,'I',41,'I000041',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-11 12:22:54','','0000-00-00 00:00:00'),(58,0,0,'I',42,'I000042',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:25:42','','0000-00-00 00:00:00'),(59,0,0,'I',42,'I000042',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:25:42','','0000-00-00 00:00:00'),(60,0,0,'I',43,'I000043',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:30:19','darshan','2025-10-11 12:30:34'),(61,0,0,'I',43,'I000043',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:30:19','darshan','2025-10-11 12:30:34'),(62,0,0,'I',43,'I000043',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-11 12:30:19','darshan','2025-10-11 12:30:34'),(63,0,0,'I',44,'I000044',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:36:42','','0000-00-00 00:00:00'),(64,0,0,'I',44,'I000044',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:36:42','','0000-00-00 00:00:00'),(65,0,0,'I',44,'I000044',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-11 12:36:42','','0000-00-00 00:00:00'),(66,0,0,'I',45,'I000045',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:41:06','darshan','2025-10-11 12:41:13'),(67,0,0,'I',45,'I000045',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:41:13','','0000-00-00 00:00:00'),(68,0,0,'I',46,'I000046',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:45:50','','0000-00-00 00:00:00'),(69,0,0,'I',46,'I000046',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:45:50','','0000-00-00 00:00:00'),(70,0,0,'I',46,'I000046',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:45:50','','0000-00-00 00:00:00'),(71,0,0,'I',46,'I000046',2526,4,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:45:50','','0000-00-00 00:00:00'),(72,0,0,'I',47,'I000047',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:54:25','darshan','2025-10-11 12:54:54'),(73,0,0,'I',47,'I000047',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:54:54','','0000-00-00 00:00:00'),(74,0,0,'I',47,'I000047',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:54:54','','0000-00-00 00:00:00'),(75,0,0,'I',47,'I000047',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-11 12:54:54','','0000-00-00 00:00:00'),(76,0,0,'I',48,'I000048',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:58:52','','0000-00-00 00:00:00'),(77,0,0,'I',48,'I000048',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:58:52','','0000-00-00 00:00:00'),(78,0,0,'I',48,'I000048',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-11 12:58:52','','0000-00-00 00:00:00'),(79,0,0,'I',48,'I000048',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-11 12:58:52','','0000-00-00 00:00:00'),(80,0,0,'I',51,'I000051',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 10:50:18','darshan','2025-10-13 10:51:25'),(81,0,0,'I',51,'I000051',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 10:50:18','darshan','2025-10-13 10:51:25'),(82,0,0,'I',51,'I000051',2526,3,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 10:50:18','darshan','2025-10-13 10:51:25'),(83,0,0,'I',51,'I000051',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-13 10:51:07','darshan','2025-10-13 10:51:25'),(84,0,0,'I',51,'I000051',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'156','','P',NULL,NULL,'darshan','2025-10-13 10:51:07','darshan','2025-10-13 10:51:25'),(85,0,0,'I',52,'I000052',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 10:58:23','darshan','2025-10-13 10:58:43'),(86,0,0,'I',53,'I000053',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-13 11:02:34','darshan','2025-10-13 11:03:46'),(87,0,0,'I',53,'I000053',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 11:02:34','darshan','2025-10-13 11:03:46'),(88,0,0,'I',53,'I000053',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-13 11:03:11','darshan','2025-10-13 11:03:46'),(89,0,0,'I',53,'I000053',2526,4,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 11:03:46','','0000-00-00 00:00:00'),(90,0,0,'I',55,'I000055',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 11:24:39','darshan','2025-10-13 11:25:02'),(91,0,0,'I',55,'I000055',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 11:24:39','darshan','2025-10-13 11:25:02'),(93,0,0,'I',55,'I000055',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 11:25:02','','0000-00-00 00:00:00'),(94,0,0,'I',54,'I000054',2526,1,'0000-00-00','51220',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-13 11:31:22','','0000-00-00 00:00:00'),(95,0,0,'I',54,'I000054',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-13 11:31:22','','0000-00-00 00:00:00'),(96,0,0,'I',56,'I000056',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 11:37:39','darshan','2025-10-13 11:41:54'),(97,0,0,'I',56,'I000056',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-13 11:37:58','darshan','2025-10-13 11:41:54'),(98,0,0,'I',57,'I000057',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 11:45:22','','0000-00-00 00:00:00'),(99,0,0,'I',57,'I000057',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 11:45:22','','0000-00-00 00:00:00'),(100,0,0,'I',59,'I000059',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 12:25:23','darshan','2025-10-13 12:25:56'),(101,0,0,'I',59,'I000059',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 12:25:23','darshan','2025-10-13 12:25:56'),(102,0,0,'I',59,'I000059',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 12:25:56','','0000-00-00 00:00:00'),(103,0,0,'I',59,'I000059',2526,4,'0000-00-00','51219',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 12:25:56','','0000-00-00 00:00:00'),(104,0,0,'I',60,'I000060',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 12:37:03','','0000-00-00 00:00:00'),(105,0,0,'I',60,'I000060',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 12:37:03','','0000-00-00 00:00:00'),(106,0,0,'I',60,'I000060',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-10-13 12:37:03','','0000-00-00 00:00:00'),(107,0,0,'I',62,'I000062',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 12:45:07','darshan','2025-10-13 12:46:25'),(108,0,0,'I',62,'I000062',2526,2,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 12:46:25','','0000-00-00 00:00:00'),(109,0,0,'I',62,'I000062',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 12:46:25','','0000-00-00 00:00:00'),(110,0,0,'I',63,'I000063',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 12:53:16','','0000-00-00 00:00:00'),(111,0,0,'I',63,'I000063',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 12:53:16','','0000-00-00 00:00:00'),(112,0,0,'I',63,'I000063',2526,3,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 12:53:16','','0000-00-00 00:00:00'),(113,0,0,'I',63,'I000063',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-13 12:53:16','','0000-00-00 00:00:00'),(114,0,0,'I',64,'I000064',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 12:57:58','darshan','2025-10-13 12:58:09'),(115,0,0,'I',64,'I000064',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 12:57:58','darshan','2025-10-13 12:58:09'),(117,0,0,'I',64,'I000064',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 12:58:09','','0000-00-00 00:00:00'),(118,0,0,'I',61,'I000061',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 13:02:18','darshan','2025-10-13 13:04:27'),(119,0,0,'I',61,'I000061',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 13:02:18','darshan','2025-10-13 13:04:27'),(120,0,0,'I',61,'I000061',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'264','','P',NULL,NULL,'darshan','2025-10-13 13:04:27','','0000-00-00 00:00:00'),(121,0,0,'I',61,'I000061',2526,4,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-10-13 13:04:27','','0000-00-00 00:00:00'),(122,0,0,'I',61,'I000061',2526,5,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 13:04:27','','0000-00-00 00:00:00'),(123,0,0,'I',61,'I000061',2526,6,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-13 13:04:27','','0000-00-00 00:00:00'),(124,0,0,'I',65,'I000065',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 13:11:20','darshan','2025-10-13 13:11:27'),(125,0,0,'I',65,'I000065',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 13:11:27','','0000-00-00 00:00:00'),(126,0,0,'I',66,'I000066',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 13:17:29','darshan','2025-10-13 13:17:50'),(127,0,0,'I',66,'I000066',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 13:17:29','darshan','2025-10-13 13:17:50'),(128,0,0,'I',66,'I000066',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 13:17:29','darshan','2025-10-13 13:17:50'),(129,0,0,'I',66,'I000066',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-13 13:17:50','','0000-00-00 00:00:00'),(130,0,0,'I',67,'I000067',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 13:20:19','','0000-00-00 00:00:00'),(131,0,0,'I',68,'I000068',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 13:22:56','','0000-00-00 00:00:00'),(132,0,0,'I',69,'I000069',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,50,0,0,0,0,'.5-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 13:25:44','','0000-00-00 00:00:00'),(133,0,0,'I',70,'I000070',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 13:28:18','darshan','2025-10-13 13:28:36'),(134,0,0,'I',70,'I000070',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 13:28:18','darshan','2025-10-13 13:28:36'),(135,0,0,'I',70,'I000070',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-13 13:28:36','','0000-00-00 00:00:00'),(136,0,0,'I',71,'I000071',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 13:43:45','darshan','2025-10-13 13:44:02'),(137,0,0,'I',71,'I000071',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 13:43:45','darshan','2025-10-13 13:44:02'),(138,0,0,'I',71,'I000071',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-13 13:44:02','','0000-00-00 00:00:00'),(139,0,0,'I',73,'I000073',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:03:39','darshan','2025-10-13 14:04:21'),(140,0,0,'I',73,'I000073',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:03:47','darshan','2025-10-13 14:04:21'),(141,0,0,'I',73,'I000073',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-13 14:03:56','darshan','2025-10-13 14:04:21'),(142,0,0,'I',74,'I000074',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:07:35','darshan','2025-10-13 14:07:54'),(143,0,0,'I',74,'I000074',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:07:39','darshan','2025-10-13 14:07:54'),(144,0,0,'I',74,'I000074',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:07:54','','0000-00-00 00:00:00'),(145,0,0,'I',74,'I000074',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-13 14:07:54','','0000-00-00 00:00:00'),(146,0,0,'I',75,'I000075',2526,1,'0000-00-00','51215',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:10:55','','0000-00-00 00:00:00'),(147,0,0,'I',75,'I000075',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:10:55','','0000-00-00 00:00:00'),(148,0,0,'I',76,'I000076',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',180,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-13 14:14:29','','0000-00-00 00:00:00'),(149,0,0,'I',76,'I000076',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-13 14:14:29','','0000-00-00 00:00:00'),(150,0,0,'I',77,'I000077',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:17:55','','0000-00-00 00:00:00'),(151,0,0,'I',77,'I000077',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:17:55','','0000-00-00 00:00:00'),(152,0,0,'I',77,'I000077',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:17:55','','0000-00-00 00:00:00'),(153,0,0,'I',78,'I000078',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-10-13 14:20:55','','0000-00-00 00:00:00'),(154,0,0,'I',79,'I000079',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:23:10','','0000-00-00 00:00:00'),(155,0,0,'I',79,'I000079',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:23:10','','0000-00-00 00:00:00'),(156,0,0,'I',80,'I000080',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:29:09','darshan','2025-10-13 14:29:26'),(157,0,0,'I',80,'I000080',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:29:18','darshan','2025-10-13 14:29:26'),(158,0,0,'I',80,'I000080',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-13 14:29:18','darshan','2025-10-13 14:29:26'),(159,0,0,'I',81,'I000081',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:33:44','','0000-00-00 00:00:00'),(160,0,0,'I',81,'I000081',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:33:44','','0000-00-00 00:00:00'),(161,0,0,'I',81,'I000081',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:33:44','','0000-00-00 00:00:00'),(162,0,0,'I',81,'I000081',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-13 14:33:44','','0000-00-00 00:00:00'),(163,0,0,'I',82,'I000082',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:41:39','darshan','2025-10-13 14:54:17'),(164,0,0,'I',82,'I000082',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:41:50','darshan','2025-10-13 14:54:17'),(165,0,0,'I',82,'I000082',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:41:50','darshan','2025-10-13 14:54:17'),(166,0,0,'I',83,'I000083',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:47:38','darshan','2025-10-13 14:47:56'),(167,0,0,'I',83,'I000083',2526,2,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-13 14:47:56','','0000-00-00 00:00:00'),(168,0,0,'I',84,'I000084',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:52:56','','0000-00-00 00:00:00'),(169,0,0,'I',84,'I000084',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 14:52:56','','0000-00-00 00:00:00'),(170,0,0,'I',84,'I000084',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-13 14:52:56','','0000-00-00 00:00:00'),(171,0,0,'I',82,'I000082',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-13 14:54:17','','0000-00-00 00:00:00'),(172,0,0,'I',85,'I000085',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 15:02:57','','0000-00-00 00:00:00'),(173,0,0,'I',85,'I000085',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 15:02:57','','0000-00-00 00:00:00'),(174,0,0,'I',86,'I000086',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 15:13:35','darshan','2025-10-13 15:13:55'),(175,0,0,'I',86,'I000086',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 15:13:47','darshan','2025-10-13 15:13:55'),(176,0,0,'I',86,'I000086',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-13 15:13:47','darshan','2025-10-13 15:13:55'),(177,0,0,'I',86,'I000086',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 15:13:47','darshan','2025-10-13 15:13:55'),(178,0,0,'I',87,'I000087',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 15:20:14','darshan','2025-10-13 15:20:39'),(179,0,0,'I',87,'I000087',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 15:20:14','darshan','2025-10-13 15:20:39'),(181,0,0,'I',87,'I000087',2526,3,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-13 15:20:14','darshan','2025-10-13 15:20:39'),(182,0,0,'I',87,'I000087',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 15:20:39','','0000-00-00 00:00:00'),(183,0,0,'I',88,'I000088',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 15:25:11','','0000-00-00 00:00:00'),(184,0,0,'I',88,'I000088',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 15:25:11','','0000-00-00 00:00:00'),(185,0,0,'I',88,'I000088',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-13 15:25:11','','0000-00-00 00:00:00'),(186,0,0,'I',88,'I000088',2526,4,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 15:25:11','','0000-00-00 00:00:00'),(187,0,0,'I',89,'I000089',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 15:46:00','','0000-00-00 00:00:00'),(188,0,0,'I',89,'I000089',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 15:46:00','','0000-00-00 00:00:00'),(189,0,0,'I',90,'I000090',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 17:19:09','','0000-00-00 00:00:00'),(190,0,0,'I',90,'I000090',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 17:19:09','','0000-00-00 00:00:00'),(191,0,0,'I',91,'I000091',2526,1,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-13 17:29:44','darshan','2025-10-13 17:30:10'),(192,0,0,'I',91,'I000091',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 17:29:44','darshan','2025-10-13 17:30:10'),(193,0,0,'I',91,'I000091',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 17:30:10','','0000-00-00 00:00:00'),(194,0,0,'I',92,'I000092',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 17:35:30','darshan','2025-10-13 17:38:14'),(195,0,0,'I',92,'I000092',2526,2,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-13 17:38:14','','0000-00-00 00:00:00'),(196,0,0,'I',92,'I000092',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-13 17:38:14','','0000-00-00 00:00:00'),(197,0,0,'I',92,'I000092',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 17:38:14','','0000-00-00 00:00:00'),(198,0,0,'I',92,'I000092',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-13 17:38:14','','0000-00-00 00:00:00'),(199,0,0,'I',93,'I000093',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 17:51:42','','0000-00-00 00:00:00'),(200,0,0,'I',94,'I000094',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 17:55:13','','0000-00-00 00:00:00'),(201,0,0,'I',94,'I000094',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 17:55:13','','0000-00-00 00:00:00'),(202,0,0,'I',94,'I000094',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-13 17:55:13','','0000-00-00 00:00:00'),(203,0,0,'I',95,'I000095',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:02:54','','0000-00-00 00:00:00'),(204,0,0,'I',95,'I000095',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:02:54','','0000-00-00 00:00:00'),(205,0,0,'I',97,'I000097',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:07:23','darshan','2025-10-13 18:08:15'),(206,0,0,'I',97,'I000097',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:07:23','darshan','2025-10-13 18:08:15'),(207,0,0,'I',97,'I000097',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:08:05','darshan','2025-10-13 18:08:15'),(208,0,0,'I',97,'I000097',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-13 18:08:05','darshan','2025-10-13 18:08:15'),(209,0,0,'I',98,'I000098',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:10:22','','0000-00-00 00:00:00'),(210,0,0,'I',98,'I000098',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:10:22','','0000-00-00 00:00:00'),(211,0,0,'I',99,'I000099',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:14:56','','0000-00-00 00:00:00'),(212,0,0,'I',99,'I000099',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:14:56','','0000-00-00 00:00:00'),(213,0,0,'I',99,'I000099',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:14:56','','0000-00-00 00:00:00'),(214,0,0,'I',100,'I000100',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:18:57','','0000-00-00 00:00:00'),(215,0,0,'I',101,'I000101',2526,1,'0000-00-00','51237',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-13 18:24:11','drarchit','2025-10-13 18:24:47'),(216,0,0,'I',101,'I000101',2526,2,'0000-00-00','51236',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-13 18:24:34','drarchit','2025-10-13 18:24:47'),(217,0,0,'I',102,'I000102',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:30:09','','0000-00-00 00:00:00'),(218,0,0,'I',102,'I000102',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:30:09','','0000-00-00 00:00:00'),(219,0,0,'I',102,'I000102',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:30:09','','0000-00-00 00:00:00'),(220,0,0,'I',104,'I000104',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:47:53','','0000-00-00 00:00:00'),(221,0,0,'I',104,'I000104',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:47:53','','0000-00-00 00:00:00'),(222,0,0,'I',105,'I000105',2526,1,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-13 18:55:23','drarchit','2025-10-13 18:56:17'),(223,0,0,'I',105,'I000105',2526,2,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-13 18:55:23','drarchit','2025-10-13 18:56:17'),(224,0,0,'I',105,'I000105',2526,3,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-13 18:55:23','drarchit','2025-10-13 18:56:17'),(225,0,0,'I',105,'I000105',2526,4,'0000-00-00','51214',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-10-13 18:55:23','drarchit','2025-10-13 18:56:17'),(226,0,0,'I',105,'I000105',2526,5,'0000-00-00','51242',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-13 18:55:23','drarchit','2025-10-13 18:56:17'),(227,0,0,'I',105,'I000105',2526,6,'0000-00-00','51244',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-13 18:56:17','','0000-00-00 00:00:00'),(228,0,0,'I',106,'I000106',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:56:46','','0000-00-00 00:00:00'),(229,0,0,'I',106,'I000106',2526,2,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-13 18:56:46','','0000-00-00 00:00:00'),(230,0,0,'I',107,'I000107',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:59:28','','0000-00-00 00:00:00'),(231,0,0,'I',107,'I000107',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 18:59:28','','0000-00-00 00:00:00'),(232,0,0,'I',107,'I000107',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-10-13 18:59:28','','0000-00-00 00:00:00'),(233,0,0,'I',107,'I000107',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-13 18:59:28','','0000-00-00 00:00:00'),(234,0,0,'I',108,'I000108',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 19:09:10','darshan','2025-10-13 19:09:26'),(235,0,0,'I',108,'I000108',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 19:09:26','','0000-00-00 00:00:00'),(236,0,0,'I',109,'I000109',2526,1,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-13 19:14:18','','0000-00-00 00:00:00'),(237,0,0,'I',109,'I000109',2526,2,'0000-00-00','51249',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-13 19:14:18','','0000-00-00 00:00:00'),(238,0,0,'I',109,'I000109',2526,3,'0000-00-00','51250',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-13 19:14:18','','0000-00-00 00:00:00'),(239,0,0,'I',110,'I000110',2526,1,'0000-00-00','51226',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 19:14:32','','0000-00-00 00:00:00'),(240,0,0,'I',110,'I000110',2526,2,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-10-13 19:14:32','','0000-00-00 00:00:00'),(241,0,0,'I',111,'I000111',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-10-13 19:32:32','','0000-00-00 00:00:00'),(242,0,0,'I',112,'I000112',2526,1,'0000-00-00','51214',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-13 19:35:33','','0000-00-00 00:00:00'),(243,0,0,'I',112,'I000112',2526,2,'0000-00-00','51223',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-13 19:35:33','','0000-00-00 00:00:00'),(244,0,0,'I',112,'I000112',2526,3,'0000-00-00','51244',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-13 19:35:33','','0000-00-00 00:00:00'),(245,0,0,'I',113,'I000113',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 19:45:24','','0000-00-00 00:00:00'),(246,0,0,'I',113,'I000113',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 19:45:24','','0000-00-00 00:00:00'),(247,0,0,'I',113,'I000113',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 19:45:24','','0000-00-00 00:00:00'),(248,0,0,'I',113,'I000113',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-13 19:45:24','','0000-00-00 00:00:00'),(249,0,0,'I',114,'I000114',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 19:49:55','darshan','2025-10-13 19:50:08'),(250,0,0,'I',114,'I000114',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 19:50:08','','0000-00-00 00:00:00'),(251,0,0,'I',115,'I000115',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 19:53:46','darshan','2025-10-13 19:53:52'),(252,0,0,'I',116,'I000116',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 19:59:25','','0000-00-00 00:00:00'),(253,0,0,'I',116,'I000116',2526,2,'0000-00-00','51190',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 19:59:25','','0000-00-00 00:00:00'),(254,0,0,'I',116,'I000116',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 19:59:25','','0000-00-00 00:00:00'),(255,0,0,'I',117,'I000117',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 20:08:34','','0000-00-00 00:00:00'),(256,0,0,'I',117,'I000117',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 20:08:34','','0000-00-00 00:00:00'),(257,0,0,'I',118,'I000118',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 20:13:34','darshan','2025-10-13 20:13:48'),(258,0,0,'I',118,'I000118',2526,2,'0000-00-00','51190',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 20:13:34','darshan','2025-10-13 20:13:48'),(259,0,0,'I',118,'I000118',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 20:13:34','darshan','2025-10-13 20:13:48'),(260,0,0,'I',119,'I000119',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 20:23:48','darshan','2025-10-13 20:24:50'),(261,0,0,'I',119,'I000119',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 20:23:48','darshan','2025-10-13 20:24:50'),(262,0,0,'I',119,'I000119',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-13 20:23:48','darshan','2025-10-13 20:24:50'),(263,0,0,'I',119,'I000119',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-13 20:24:50','','0000-00-00 00:00:00'),(264,0,0,'I',119,'I000119',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-13 20:24:50','','0000-00-00 00:00:00'),(265,0,0,'I',120,'I000120',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 10:54:14','','0000-00-00 00:00:00'),(266,0,0,'I',120,'I000120',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-14 10:54:14','','0000-00-00 00:00:00'),(267,0,0,'I',121,'I000121',2526,1,'0000-00-00','51257',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-14 11:04:42','','0000-00-00 00:00:00'),(268,0,0,'I',121,'I000121',2526,2,'0000-00-00','51259',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-14 11:04:42','','0000-00-00 00:00:00'),(269,0,0,'I',121,'I000121',2526,3,'0000-00-00','51254',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-14 11:04:42','','0000-00-00 00:00:00'),(270,0,0,'I',121,'I000121',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-14 11:04:42','','0000-00-00 00:00:00'),(272,0,0,'I',122,'I000122',2526,1,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-14 11:19:10','darshan','2025-10-14 11:19:43'),(273,0,0,'I',122,'I000122',2526,2,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 11:19:43','','0000-00-00 00:00:00'),(274,0,0,'I',122,'I000122',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 11:19:43','','0000-00-00 00:00:00'),(275,0,0,'I',122,'I000122',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-14 11:19:43','','0000-00-00 00:00:00'),(276,0,0,'I',123,'I000123',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 11:24:09','','0000-00-00 00:00:00'),(277,0,0,'I',123,'I000123',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 11:24:09','','0000-00-00 00:00:00'),(278,0,0,'I',123,'I000123',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-14 11:24:09','','0000-00-00 00:00:00'),(279,0,0,'I',124,'I000124',2526,1,'0000-00-00','51262',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-14 11:24:56','','0000-00-00 00:00:00'),(280,0,0,'I',124,'I000124',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-14 11:24:56','','0000-00-00 00:00:00'),(281,0,0,'I',124,'I000124',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-14 11:24:56','','0000-00-00 00:00:00'),(282,0,0,'I',125,'I000125',2526,1,'0000-00-00','51264',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-14 11:39:25','','0000-00-00 00:00:00'),(283,0,0,'I',125,'I000125',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-14 11:39:25','','0000-00-00 00:00:00'),(284,0,0,'I',125,'I000125',2526,3,'0000-00-00','51230',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-14 11:39:25','','0000-00-00 00:00:00'),(285,0,0,'I',126,'I000126',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 11:43:24','','0000-00-00 00:00:00'),(286,0,0,'I',126,'I000126',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-14 11:43:24','','0000-00-00 00:00:00'),(287,0,0,'I',127,'I000127',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 11:46:58','','0000-00-00 00:00:00'),(288,0,0,'I',127,'I000127',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-14 11:46:58','','0000-00-00 00:00:00'),(289,0,0,'I',128,'I000128',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 11:51:51','','0000-00-00 00:00:00'),(290,0,0,'I',128,'I000128',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 11:51:51','','0000-00-00 00:00:00'),(291,0,0,'I',129,'I000129',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 11:55:49','darshan','2025-10-14 11:56:09'),(292,0,0,'I',129,'I000129',2526,2,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-14 11:55:49','darshan','2025-10-14 11:56:09'),(293,0,0,'I',129,'I000129',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 11:56:09','','0000-00-00 00:00:00'),(294,0,0,'I',129,'I000129',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-14 11:56:09','','0000-00-00 00:00:00'),(295,0,0,'I',131,'I000131',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 12:07:03','darshan','2025-10-14 12:07:22'),(296,0,0,'I',131,'I000131',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 12:07:03','darshan','2025-10-14 12:07:22'),(297,0,0,'I',131,'I000131',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 12:07:22','','0000-00-00 00:00:00'),(298,0,0,'I',132,'I000132',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 12:22:15','darshan','2025-10-14 12:22:24'),(299,0,0,'I',132,'I000132',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 12:22:15','darshan','2025-10-14 12:22:24'),(300,0,0,'I',132,'I000132',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 12:22:15','darshan','2025-10-14 12:22:24'),(301,0,0,'I',132,'I000132',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-14 12:22:15','darshan','2025-10-14 12:22:24'),(302,0,0,'I',133,'I000133',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 12:39:52','','0000-00-00 00:00:00'),(303,0,0,'I',133,'I000133',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 12:39:52','','0000-00-00 00:00:00'),(304,0,0,'I',133,'I000133',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 12:39:52','','0000-00-00 00:00:00'),(305,0,0,'I',134,'I000134',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:00:29','','0000-00-00 00:00:00'),(306,0,0,'I',134,'I000134',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:00:29','','0000-00-00 00:00:00'),(307,0,0,'I',134,'I000134',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-10-14 13:00:29','','0000-00-00 00:00:00'),(308,0,0,'I',134,'I000134',2526,4,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:00:29','','0000-00-00 00:00:00'),(309,0,0,'I',134,'I000134',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-14 13:00:29','','0000-00-00 00:00:00'),(310,0,0,'I',135,'I000135',2526,1,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:03:12','darshan','2025-10-14 13:05:32'),(311,0,0,'I',135,'I000135',2526,2,'0000-00-00','51270',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:05:32','','0000-00-00 00:00:00'),(312,0,0,'I',135,'I000135',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:05:32','','0000-00-00 00:00:00'),(313,0,0,'I',135,'I000135',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-14 13:05:32','','0000-00-00 00:00:00'),(314,0,0,'I',136,'I000136',2526,1,'0000-00-00','51267',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-14 13:07:47','','0000-00-00 00:00:00'),(315,0,0,'I',136,'I000136',2526,2,'0000-00-00','51268',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-14 13:07:47','','0000-00-00 00:00:00'),(316,0,0,'I',136,'I000136',2526,3,'0000-00-00','51269',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-14 13:07:47','','0000-00-00 00:00:00'),(317,0,0,'I',136,'I000136',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-14 13:07:47','','0000-00-00 00:00:00'),(318,0,0,'I',137,'I000137',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:12:27','','0000-00-00 00:00:00'),(319,0,0,'I',137,'I000137',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:12:27','','0000-00-00 00:00:00'),(320,0,0,'I',138,'I000138',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:16:53','darshan','2025-10-14 13:17:01'),(322,0,0,'I',138,'I000138',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:16:53','darshan','2025-10-14 13:17:01'),(323,0,0,'I',139,'I000139',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:19:31','darshan','2025-10-14 13:19:58'),(324,0,0,'I',139,'I000139',2526,2,'0000-00-00','51234',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-14 13:19:58','','0000-00-00 00:00:00'),(325,0,0,'I',139,'I000139',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-14 13:19:58','','0000-00-00 00:00:00'),(326,0,0,'I',140,'I000140',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-14 13:22:25','darshan','2025-10-14 13:22:58'),(327,0,0,'I',140,'I000140',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:22:25','darshan','2025-10-14 13:22:58'),(328,0,0,'I',140,'I000140',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:22:25','darshan','2025-10-14 13:22:58'),(329,0,0,'I',141,'I000141',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:27:35','darshan','2025-10-14 13:27:51'),(330,0,0,'I',141,'I000141',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:27:39','darshan','2025-10-14 13:27:51'),(331,0,0,'I',141,'I000141',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-14 13:27:51','','0000-00-00 00:00:00'),(332,0,0,'I',142,'I000142',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:40:03','','0000-00-00 00:00:00'),(333,0,0,'I',142,'I000142',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:40:03','','0000-00-00 00:00:00'),(334,0,0,'I',143,'I000143',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:44:29','','0000-00-00 00:00:00'),(335,0,0,'I',143,'I000143',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:44:29','','0000-00-00 00:00:00'),(336,0,0,'I',144,'I000144',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:51:14','','0000-00-00 00:00:00'),(337,0,0,'I',144,'I000144',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:51:14','','0000-00-00 00:00:00'),(338,0,0,'I',145,'I000145',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:57:42','','0000-00-00 00:00:00'),(339,0,0,'I',145,'I000145',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:57:42','','0000-00-00 00:00:00'),(340,0,0,'I',145,'I000145',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 13:57:42','','0000-00-00 00:00:00'),(341,0,0,'I',146,'I000146',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 14:03:51','','0000-00-00 00:00:00'),(342,0,0,'I',146,'I000146',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 14:03:51','','0000-00-00 00:00:00'),(343,0,0,'I',146,'I000146',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-14 14:03:51','','0000-00-00 00:00:00'),(344,0,0,'I',147,'I000147',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 14:08:13','','0000-00-00 00:00:00'),(345,0,0,'I',147,'I000147',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-14 14:08:13','','0000-00-00 00:00:00'),(346,0,0,'I',148,'I000148',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 14:11:43','darshan','2025-10-14 14:11:56'),(347,0,0,'I',148,'I000148',2526,2,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-14 14:11:56','','0000-00-00 00:00:00'),(348,0,0,'I',149,'I000149',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 14:22:53','darshan','2025-10-14 14:23:02'),(349,0,0,'I',149,'I000149',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 14:22:53','darshan','2025-10-14 14:23:02'),(350,0,0,'I',149,'I000149',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-14 14:23:02','','0000-00-00 00:00:00'),(351,0,0,'I',150,'I000150',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 14:30:04','darshan','2025-10-14 14:33:55'),(352,0,0,'I',150,'I000150',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 14:30:04','darshan','2025-10-14 14:33:55'),(353,0,0,'I',150,'I000150',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 14:30:04','darshan','2025-10-14 14:33:55'),(354,0,0,'I',150,'I000150',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-14 14:30:04','darshan','2025-10-14 14:33:55'),(355,0,0,'I',150,'I000150',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-14 14:33:55','','0000-00-00 00:00:00'),(356,0,0,'I',151,'I000151',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 14:46:47','','0000-00-00 00:00:00'),(357,0,0,'I',151,'I000151',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 14:46:47','','0000-00-00 00:00:00'),(358,0,0,'I',152,'I000152',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 17:22:43','','0000-00-00 00:00:00'),(359,0,0,'I',152,'I000152',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 17:22:43','','0000-00-00 00:00:00'),(360,0,0,'I',153,'I000153',2526,1,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 17:38:06','darshan','2025-10-14 17:38:29'),(362,0,0,'I',153,'I000153',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 17:38:06','darshan','2025-10-14 17:38:29'),(363,0,0,'I',153,'I000153',2526,3,'0000-00-00','51198',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 17:38:29','','0000-00-00 00:00:00'),(364,0,0,'I',154,'I000154',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 18:07:36','','0000-00-00 00:00:00'),(365,0,0,'I',154,'I000154',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 18:07:36','','0000-00-00 00:00:00'),(366,0,0,'I',154,'I000154',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-10-14 18:07:36','','0000-00-00 00:00:00'),(367,0,0,'I',154,'I000154',2526,4,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 18:07:36','','0000-00-00 00:00:00'),(368,0,0,'I',155,'I000155',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 18:20:32','','0000-00-00 00:00:00'),(369,0,0,'I',155,'I000155',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 18:20:32','','0000-00-00 00:00:00'),(370,0,0,'I',156,'I000156',2526,1,'0000-00-00','51215',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 18:23:47','darshan','2025-10-14 18:24:00'),(371,0,0,'I',156,'I000156',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 18:23:47','darshan','2025-10-14 18:24:00'),(372,0,0,'I',157,'I000157',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 18:37:33','','0000-00-00 00:00:00'),(373,0,0,'I',157,'I000157',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 18:37:33','','0000-00-00 00:00:00'),(374,0,0,'I',157,'I000157',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-14 18:37:33','','0000-00-00 00:00:00'),(375,0,0,'I',158,'I000158',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 18:41:30','','0000-00-00 00:00:00'),(376,0,0,'I',158,'I000158',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 18:41:30','','0000-00-00 00:00:00'),(377,0,0,'I',158,'I000158',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 18:41:30','','0000-00-00 00:00:00'),(378,0,0,'I',159,'I000159',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-10-14 18:44:31','','0000-00-00 00:00:00'),(379,0,0,'I',160,'I000160',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 18:49:15','','0000-00-00 00:00:00'),(380,0,0,'I',160,'I000160',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 18:49:15','','0000-00-00 00:00:00'),(381,0,0,'I',160,'I000160',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-14 18:49:15','','0000-00-00 00:00:00'),(382,0,0,'I',161,'I000161',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 18:53:06','','0000-00-00 00:00:00'),(383,0,0,'I',161,'I000161',2526,2,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-14 18:53:06','','0000-00-00 00:00:00'),(384,0,0,'I',162,'I000162',2526,1,'0000-00-00','51270',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 18:56:21','','0000-00-00 00:00:00'),(385,0,0,'I',162,'I000162',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 18:56:21','','0000-00-00 00:00:00'),(386,0,0,'I',162,'I000162',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 18:56:21','','0000-00-00 00:00:00'),(387,0,0,'I',162,'I000162',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-14 18:56:21','','0000-00-00 00:00:00'),(388,0,0,'I',163,'I000163',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:03:31','darshan','2025-10-14 19:48:34'),(389,0,0,'I',163,'I000163',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:03:31','darshan','2025-10-14 19:48:34'),(390,0,0,'I',163,'I000163',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:03:31','darshan','2025-10-14 19:48:34'),(391,0,0,'I',163,'I000163',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-14 19:03:31','darshan','2025-10-14 19:48:34'),(392,0,0,'I',164,'I000164',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:07:12','','0000-00-00 00:00:00'),(393,0,0,'I',164,'I000164',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:07:12','','0000-00-00 00:00:00'),(394,0,0,'I',165,'I000165',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:10:29','','0000-00-00 00:00:00'),(395,0,0,'I',166,'I000166',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:12:53','','0000-00-00 00:00:00'),(396,0,0,'I',167,'I000167',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:15:54','darshan','2025-10-14 19:16:30'),(397,0,0,'I',167,'I000167',2526,2,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-14 19:15:54','darshan','2025-10-14 19:16:30'),(398,0,0,'I',167,'I000167',2526,3,'0000-00-00','51198',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:16:00','darshan','2025-10-14 19:16:30'),(399,0,0,'I',167,'I000167',2526,4,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:16:30','','0000-00-00 00:00:00'),(400,0,0,'I',168,'I000168',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:33:18','darshan','2025-10-14 19:33:42'),(401,0,0,'I',168,'I000168',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:33:42','','0000-00-00 00:00:00'),(402,0,0,'I',168,'I000168',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-14 19:33:42','','0000-00-00 00:00:00'),(403,0,0,'I',168,'I000168',2526,4,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:33:42','','0000-00-00 00:00:00'),(404,0,0,'I',169,'I000169',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:41:17','','0000-00-00 00:00:00'),(405,0,0,'I',169,'I000169',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:41:17','','0000-00-00 00:00:00'),(406,0,0,'I',169,'I000169',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:41:17','','0000-00-00 00:00:00'),(407,0,0,'I',169,'I000169',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-14 19:41:17','','0000-00-00 00:00:00'),(408,0,0,'I',170,'I000170',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:51:30','','0000-00-00 00:00:00'),(409,0,0,'I',170,'I000170',2526,2,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:51:30','','0000-00-00 00:00:00'),(410,0,0,'I',171,'I000171',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:58:05','','0000-00-00 00:00:00'),(411,0,0,'I',171,'I000171',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:58:05','','0000-00-00 00:00:00'),(412,0,0,'I',171,'I000171',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 19:58:05','','0000-00-00 00:00:00'),(413,0,0,'I',171,'I000171',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-14 19:58:05','','0000-00-00 00:00:00'),(414,0,0,'I',172,'I000172',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 20:12:33','','0000-00-00 00:00:00'),(415,0,0,'I',172,'I000172',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 20:12:33','','0000-00-00 00:00:00'),(416,0,0,'I',172,'I000172',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 20:12:33','','0000-00-00 00:00:00'),(417,0,0,'I',172,'I000172',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-14 20:12:33','','0000-00-00 00:00:00'),(418,0,0,'I',173,'I000173',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 20:16:37','','0000-00-00 00:00:00'),(419,0,0,'I',173,'I000173',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 20:16:37','','0000-00-00 00:00:00'),(420,0,0,'I',174,'I000174',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 20:23:23','','0000-00-00 00:00:00'),(421,0,0,'I',174,'I000174',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 20:23:23','','0000-00-00 00:00:00'),(422,0,0,'I',174,'I000174',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-14 20:23:23','','0000-00-00 00:00:00'),(423,0,0,'I',174,'I000174',2526,4,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 20:23:23','','0000-00-00 00:00:00'),(424,0,0,'I',175,'I000175',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 20:28:55','','0000-00-00 00:00:00'),(425,0,0,'I',175,'I000175',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-14 20:28:55','','0000-00-00 00:00:00'),(426,0,0,'I',175,'I000175',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-14 20:28:55','','0000-00-00 00:00:00'),(427,0,0,'I',176,'I000176',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 11:06:32','','0000-00-00 00:00:00'),(428,0,0,'I',177,'I000177',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 11:13:06','','0000-00-00 00:00:00'),(429,0,0,'I',178,'I000178',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,90,0,0,0,0,'.5-0-0','','Dy',180,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 11:17:55','','0000-00-00 00:00:00'),(430,0,0,'I',179,'I000179',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-15 11:23:43','','0000-00-00 00:00:00'),(431,0,0,'I',179,'I000179',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 11:23:43','','0000-00-00 00:00:00'),(432,0,0,'I',179,'I000179',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-15 11:23:43','','0000-00-00 00:00:00'),(433,0,0,'I',180,'I000180',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 11:43:20','','0000-00-00 00:00:00'),(434,0,0,'I',180,'I000180',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-15 11:43:20','','0000-00-00 00:00:00'),(435,0,0,'I',180,'I000180',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 11:43:20','','0000-00-00 00:00:00'),(436,0,0,'I',181,'I000181',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 11:59:07','darshan','2025-10-15 11:59:37'),(437,0,0,'I',181,'I000181',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 11:59:37','','0000-00-00 00:00:00'),(438,0,0,'I',181,'I000181',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 11:59:37','','0000-00-00 00:00:00'),(439,0,0,'I',182,'I000182',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 12:04:20','darshan','2025-10-15 12:05:14'),(440,0,0,'I',182,'I000182',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 12:04:20','darshan','2025-10-15 12:05:14'),(441,0,0,'I',182,'I000182',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 12:04:20','darshan','2025-10-15 12:05:14'),(442,0,0,'I',182,'I000182',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-15 12:05:14','','0000-00-00 00:00:00'),(443,0,0,'I',183,'I000183',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 12:36:46','darshan','2025-10-15 12:37:10'),(444,0,0,'I',183,'I000183',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 12:36:46','darshan','2025-10-15 12:37:10'),(445,0,0,'I',183,'I000183',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 12:37:10','','0000-00-00 00:00:00'),(446,0,0,'I',183,'I000183',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-15 12:37:10','','0000-00-00 00:00:00'),(447,0,0,'I',184,'I000184',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 12:45:29','','0000-00-00 00:00:00'),(448,0,0,'I',184,'I000184',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 12:45:29','','0000-00-00 00:00:00'),(449,0,0,'I',184,'I000184',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 12:45:29','','0000-00-00 00:00:00'),(450,0,0,'I',184,'I000184',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 12:45:29','','0000-00-00 00:00:00'),(451,0,0,'I',185,'I000185',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 13:05:48','darshan','2025-10-15 13:07:04'),(452,0,0,'I',185,'I000185',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 13:05:48','darshan','2025-10-15 13:07:04'),(453,0,0,'I',185,'I000185',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-15 13:05:48','darshan','2025-10-15 13:07:04'),(454,0,0,'I',185,'I000185',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'341','','P',NULL,NULL,'darshan','2025-10-15 13:07:04','','0000-00-00 00:00:00'),(456,0,0,'I',186,'I000186',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 13:12:34','','0000-00-00 00:00:00'),(457,0,0,'I',187,'I000187',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 13:16:43','','0000-00-00 00:00:00'),(458,0,0,'I',188,'I000188',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 13:30:44','','0000-00-00 00:00:00'),(459,0,0,'I',188,'I000188',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 13:30:44','','0000-00-00 00:00:00'),(460,0,0,'I',188,'I000188',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-15 13:30:44','','0000-00-00 00:00:00'),(461,0,0,'I',190,'I000190',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 13:43:41','','0000-00-00 00:00:00'),(462,0,0,'I',190,'I000190',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 13:43:41','','0000-00-00 00:00:00'),(463,0,0,'I',190,'I000190',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 13:43:41','','0000-00-00 00:00:00'),(464,0,0,'I',191,'I000191',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 13:52:42','darshan','2025-10-15 13:52:57'),(465,0,0,'I',191,'I000191',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 13:52:42','darshan','2025-10-15 13:52:57'),(466,0,0,'I',191,'I000191',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 13:52:42','darshan','2025-10-15 13:52:57'),(467,0,0,'I',192,'I000192',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 13:56:55','','0000-00-00 00:00:00'),(468,0,0,'I',192,'I000192',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 13:56:55','','0000-00-00 00:00:00'),(469,0,0,'I',192,'I000192',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 13:56:55','','0000-00-00 00:00:00'),(470,0,0,'I',192,'I000192',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-15 13:56:55','','0000-00-00 00:00:00'),(471,0,0,'I',193,'I000193',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 14:03:26','darshan','2025-10-15 14:03:47'),(472,0,0,'I',193,'I000193',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 14:03:26','darshan','2025-10-15 14:03:47'),(473,0,0,'I',193,'I000193',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,1,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-15 14:03:26','darshan','2025-10-15 14:03:47'),(474,0,0,'I',193,'I000193',2526,4,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-10-15 14:03:26','darshan','2025-10-15 14:03:47'),(475,0,0,'I',194,'I000194',2526,1,'0000-00-00','51270',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 14:09:43','darshan','2025-10-15 14:11:22'),(476,0,0,'I',194,'I000194',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 14:09:43','darshan','2025-10-15 14:11:22'),(477,0,0,'I',194,'I000194',2526,3,'0000-00-00','51275',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'darshan','2025-10-15 14:11:22','','0000-00-00 00:00:00'),(478,0,0,'I',194,'I000194',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-15 14:11:22','','0000-00-00 00:00:00'),(479,0,0,'I',194,'I000194',2526,5,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 14:11:22','','0000-00-00 00:00:00'),(480,0,0,'I',189,'I000189',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 14:17:14','','0000-00-00 00:00:00'),(481,0,0,'I',189,'I000189',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 14:17:14','','0000-00-00 00:00:00'),(482,0,0,'I',195,'I000195',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 14:29:22','','0000-00-00 00:00:00'),(483,0,0,'I',195,'I000195',2526,2,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-10-15 14:29:22','','0000-00-00 00:00:00'),(484,0,0,'I',195,'I000195',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 14:29:22','','0000-00-00 00:00:00'),(485,0,0,'I',195,'I000195',2526,4,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 14:29:22','','0000-00-00 00:00:00'),(486,0,0,'I',195,'I000195',2526,5,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 14:29:22','','0000-00-00 00:00:00'),(487,0,0,'I',195,'I000195',2526,6,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-15 14:29:22','','0000-00-00 00:00:00'),(488,0,0,'I',196,'I000196',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 17:17:19','','0000-00-00 00:00:00'),(489,0,0,'I',196,'I000196',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 17:17:19','','0000-00-00 00:00:00'),(490,0,0,'I',197,'I000197',2526,1,'0000-00-00','51258',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 17:27:32','darshan','2025-10-15 17:29:04'),(491,0,0,'I',197,'I000197',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 17:27:32','darshan','2025-10-15 17:29:04'),(492,0,0,'I',197,'I000197',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-15 17:29:04','','0000-00-00 00:00:00'),(493,0,0,'I',198,'I000198',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 17:38:07','','0000-00-00 00:00:00'),(494,0,0,'I',198,'I000198',2526,2,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 17:38:07','','0000-00-00 00:00:00'),(495,0,0,'I',198,'I000198',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 17:38:07','','0000-00-00 00:00:00'),(496,0,0,'I',198,'I000198',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 17:38:07','','0000-00-00 00:00:00'),(497,0,0,'I',198,'I000198',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-15 17:38:07','','0000-00-00 00:00:00'),(498,0,0,'I',199,'I000199',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-15 17:48:39','','0000-00-00 00:00:00'),(499,0,0,'I',199,'I000199',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 17:48:39','','0000-00-00 00:00:00'),(500,0,0,'I',199,'I000199',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 17:48:39','','0000-00-00 00:00:00'),(501,0,0,'I',199,'I000199',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-15 17:48:39','','0000-00-00 00:00:00'),(502,0,0,'I',199,'I000199',2526,5,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 17:48:39','','0000-00-00 00:00:00'),(503,0,0,'I',200,'I000200',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 17:56:19','','0000-00-00 00:00:00'),(504,0,0,'I',200,'I000200',2526,2,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-10-15 17:56:19','','0000-00-00 00:00:00'),(505,0,0,'I',200,'I000200',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-15 17:56:19','','0000-00-00 00:00:00'),(506,0,0,'I',200,'I000200',2526,4,'0000-00-00','51215',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 17:56:19','','0000-00-00 00:00:00'),(507,0,0,'I',200,'I000200',2526,5,'0000-00-00','51194',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 17:56:19','','0000-00-00 00:00:00'),(508,0,0,'I',201,'I000201',2526,1,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-10-15 18:02:28','darshan','2025-10-15 18:02:34'),(509,0,0,'I',202,'I000202',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 18:07:40','','0000-00-00 00:00:00'),(510,0,0,'I',202,'I000202',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 18:07:40','','0000-00-00 00:00:00'),(511,0,0,'I',202,'I000202',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 18:07:40','','0000-00-00 00:00:00'),(512,0,0,'I',205,'I000205',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 18:12:45','darshan','2025-10-15 18:13:18'),(513,0,0,'I',205,'I000205',2526,2,'0000-00-00','51190',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-15 18:13:18','','0000-00-00 00:00:00'),(514,0,0,'I',206,'I000206',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 18:26:33','darshan','2025-10-15 18:26:42'),(515,0,0,'I',206,'I000206',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 18:26:33','darshan','2025-10-15 18:26:42'),(516,0,0,'I',206,'I000206',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-15 18:26:42','','0000-00-00 00:00:00'),(517,0,0,'I',208,'I000208',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 18:30:40','darshan','2025-10-15 18:31:35'),(518,0,0,'I',208,'I000208',2526,2,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-15 18:31:22','darshan','2025-10-15 18:31:35'),(519,0,0,'I',208,'I000208',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 18:31:22','darshan','2025-10-15 18:31:35'),(520,0,0,'I',208,'I000208',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-15 18:31:35','','0000-00-00 00:00:00'),(521,0,0,'I',209,'I000209',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 18:36:05','darshan','2025-10-15 18:36:30'),(522,0,0,'I',209,'I000209',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 18:36:30','','0000-00-00 00:00:00'),(523,0,0,'I',209,'I000209',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 18:36:30','','0000-00-00 00:00:00'),(524,0,0,'I',210,'I000210',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 18:40:17','','0000-00-00 00:00:00'),(525,0,0,'I',210,'I000210',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 18:40:17','','0000-00-00 00:00:00'),(526,0,0,'I',211,'I000211',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 18:54:47','darshan','2025-10-15 18:55:21'),(527,0,0,'I',211,'I000211',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 18:54:59','darshan','2025-10-15 18:55:21'),(528,0,0,'I',211,'I000211',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-15 18:55:21','','0000-00-00 00:00:00'),(529,0,0,'I',211,'I000211',2526,4,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 18:55:21','','0000-00-00 00:00:00'),(530,0,0,'I',212,'I000212',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 19:01:41','','0000-00-00 00:00:00'),(531,0,0,'I',214,'I000214',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 19:15:37','','0000-00-00 00:00:00'),(532,0,0,'I',214,'I000214',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 19:15:37','','0000-00-00 00:00:00'),(533,0,0,'I',214,'I000214',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 19:15:37','','0000-00-00 00:00:00'),(534,0,0,'I',214,'I000214',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-15 19:15:37','','0000-00-00 00:00:00'),(535,0,0,'I',215,'I000215',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 19:21:01','','0000-00-00 00:00:00'),(536,0,0,'I',215,'I000215',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 19:21:01','','0000-00-00 00:00:00'),(537,0,0,'I',215,'I000215',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 19:21:01','','0000-00-00 00:00:00'),(538,0,0,'I',215,'I000215',2526,4,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 19:21:01','','0000-00-00 00:00:00'),(539,0,0,'I',215,'I000215',2526,5,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 19:21:01','','0000-00-00 00:00:00'),(540,0,0,'I',215,'I000215',2526,6,'0000-00-00','51275',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'darshan','2025-10-15 19:21:01','','0000-00-00 00:00:00'),(541,0,0,'I',215,'I000215',2526,7,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-15 19:21:01','','0000-00-00 00:00:00'),(542,0,0,'I',216,'I000216',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 19:27:05','darshan','2025-10-15 19:27:28'),(543,0,0,'I',216,'I000216',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 19:27:05','darshan','2025-10-15 19:27:28'),(544,0,0,'I',217,'I000217',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 19:38:03','','0000-00-00 00:00:00'),(545,0,0,'I',217,'I000217',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 19:38:03','','0000-00-00 00:00:00'),(546,0,0,'I',217,'I000217',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 19:38:03','','0000-00-00 00:00:00'),(547,0,0,'I',217,'I000217',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-15 19:38:03','','0000-00-00 00:00:00'),(548,0,0,'I',218,'I000218',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 19:53:28','','0000-00-00 00:00:00'),(549,0,0,'I',218,'I000218',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 19:53:28','','0000-00-00 00:00:00'),(550,0,0,'I',218,'I000218',2526,3,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-15 19:53:28','','0000-00-00 00:00:00'),(551,0,0,'I',218,'I000218',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-15 19:53:28','','0000-00-00 00:00:00'),(552,0,0,'I',218,'I000218',2526,5,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 19:53:28','','0000-00-00 00:00:00'),(553,0,0,'I',219,'I000219',2526,1,'0000-00-00','51276',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 20:04:28','','0000-00-00 00:00:00'),(554,0,0,'I',219,'I000219',2526,2,'0000-00-00','51277',0,0,'OINT','','','','',0,1,0,0,0,0,'1-1-1','','Dy',20,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'darshan','2025-10-15 20:04:28','','0000-00-00 00:00:00'),(555,0,0,'I',219,'I000219',2526,3,'0000-00-00','51265',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 20:04:28','','0000-00-00 00:00:00'),(556,0,0,'I',220,'I000220',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 20:14:33','','0000-00-00 00:00:00'),(557,0,0,'I',220,'I000220',2526,2,'0000-00-00','51189',0,0,'TAB','','','','',0,45,0,0,0,0,'0-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-15 20:14:33','','0000-00-00 00:00:00'),(558,0,0,'I',220,'I000220',2526,3,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-15 20:14:33','','0000-00-00 00:00:00'),(559,0,0,'I',221,'I000221',2526,1,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 11:05:30','','0000-00-00 00:00:00'),(560,0,0,'I',221,'I000221',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 11:05:30','','0000-00-00 00:00:00'),(561,0,0,'I',221,'I000221',2526,3,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-16 11:05:30','','0000-00-00 00:00:00'),(562,0,0,'I',222,'I000222',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 11:08:20','','0000-00-00 00:00:00'),(563,0,0,'I',222,'I000222',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-16 11:08:20','','0000-00-00 00:00:00'),(564,0,0,'I',223,'I000223',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-16 11:16:22','drarchit','2025-10-16 11:18:15'),(565,0,0,'I',223,'I000223',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-16 11:17:56','drarchit','2025-10-16 11:18:15'),(566,0,0,'I',223,'I000223',2526,3,'0000-00-00','51279',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-16 11:18:06','drarchit','2025-10-16 11:18:15'),(567,0,0,'I',224,'I000224',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-16 11:25:20','','0000-00-00 00:00:00'),(568,0,0,'I',224,'I000224',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 11:25:20','','0000-00-00 00:00:00'),(569,0,0,'I',224,'I000224',2526,3,'0000-00-00','51274',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 11:25:20','','0000-00-00 00:00:00'),(570,0,0,'I',225,'I000225',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 11:29:38','','0000-00-00 00:00:00'),(571,0,0,'I',225,'I000225',2526,2,'0000-00-00','51283',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 11:29:38','','0000-00-00 00:00:00'),(572,0,0,'I',226,'I000226',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 11:38:46','','0000-00-00 00:00:00'),(573,0,0,'I',226,'I000226',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 11:38:46','','0000-00-00 00:00:00'),(574,0,0,'I',226,'I000226',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 11:38:46','','0000-00-00 00:00:00'),(575,0,0,'I',226,'I000226',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-16 11:38:46','','0000-00-00 00:00:00'),(576,0,0,'I',227,'I000227',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 11:44:26','','0000-00-00 00:00:00'),(577,0,0,'I',227,'I000227',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 11:44:26','','0000-00-00 00:00:00'),(578,0,0,'I',227,'I000227',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 11:44:26','','0000-00-00 00:00:00'),(579,0,0,'I',228,'I000228',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 11:58:49','','0000-00-00 00:00:00'),(580,0,0,'I',228,'I000228',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 11:58:49','','0000-00-00 00:00:00'),(581,0,0,'I',228,'I000228',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-10-16 11:58:49','','0000-00-00 00:00:00'),(582,0,0,'I',228,'I000228',2526,4,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 11:58:49','','0000-00-00 00:00:00'),(583,0,0,'I',229,'I000229',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 12:17:28','','0000-00-00 00:00:00'),(584,0,0,'I',230,'I000230',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 12:30:31','','0000-00-00 00:00:00'),(585,0,0,'I',230,'I000230',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-16 12:30:31','','0000-00-00 00:00:00'),(586,0,0,'I',231,'I000231',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 12:33:46','','0000-00-00 00:00:00'),(587,0,0,'I',231,'I000231',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 12:33:46','','0000-00-00 00:00:00'),(588,0,0,'I',231,'I000231',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 12:33:46','','0000-00-00 00:00:00'),(589,0,0,'I',232,'I000232',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 12:51:32','','0000-00-00 00:00:00'),(590,0,0,'I',232,'I000232',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 12:51:32','','0000-00-00 00:00:00'),(591,0,0,'I',233,'I000233',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 12:54:44','darshan','2025-10-16 12:55:49'),(592,0,0,'I',233,'I000233',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 12:54:44','darshan','2025-10-16 12:55:49'),(593,0,0,'I',233,'I000233',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-16 12:54:44','darshan','2025-10-16 12:55:49'),(594,0,0,'I',233,'I000233',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-16 12:54:44','darshan','2025-10-16 12:55:49'),(595,0,0,'I',234,'I000234',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 13:04:25','','0000-00-00 00:00:00'),(596,0,0,'I',234,'I000234',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 13:04:25','','0000-00-00 00:00:00'),(597,0,0,'I',235,'I000235',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,90,0,0,0,0,'.5-0-.5','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 13:36:12','','0000-00-00 00:00:00'),(598,0,0,'I',235,'I000235',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 13:36:12','','0000-00-00 00:00:00'),(599,0,0,'I',236,'I000236',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 13:39:42','darshan','2025-10-16 13:40:10'),(600,0,0,'I',236,'I000236',2526,2,'0000-00-00','51190',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 13:40:10','','0000-00-00 00:00:00'),(601,0,0,'I',236,'I000236',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 13:40:10','','0000-00-00 00:00:00'),(602,0,0,'I',237,'I000237',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 13:44:41','','0000-00-00 00:00:00'),(603,0,0,'I',237,'I000237',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 13:44:41','','0000-00-00 00:00:00'),(604,0,0,'I',237,'I000237',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 13:44:41','','0000-00-00 00:00:00'),(605,0,0,'I',238,'I000238',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 13:49:12','darshan','2025-10-16 13:49:41'),(606,0,0,'I',238,'I000238',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 13:49:12','darshan','2025-10-16 13:49:41'),(607,0,0,'I',238,'I000238',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 13:49:12','darshan','2025-10-16 13:49:41'),(608,0,0,'I',238,'I000238',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-16 13:49:41','','0000-00-00 00:00:00'),(609,0,0,'I',239,'I000239',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 13:59:59','','0000-00-00 00:00:00'),(610,0,0,'I',239,'I000239',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 13:59:59','','0000-00-00 00:00:00'),(611,0,0,'I',239,'I000239',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-16 13:59:59','','0000-00-00 00:00:00'),(612,0,0,'I',240,'I000240',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 14:03:54','','0000-00-00 00:00:00'),(613,0,0,'I',240,'I000240',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 14:03:54','','0000-00-00 00:00:00'),(614,0,0,'I',240,'I000240',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-16 14:03:54','','0000-00-00 00:00:00'),(615,0,0,'I',241,'I000241',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 14:09:57','','0000-00-00 00:00:00'),(616,0,0,'I',241,'I000241',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 14:09:57','','0000-00-00 00:00:00'),(617,0,0,'I',242,'I000242',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 14:11:29','darshan','2025-10-16 14:13:43'),(618,0,0,'I',242,'I000242',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 14:11:29','darshan','2025-10-16 14:13:43'),(619,0,0,'I',242,'I000242',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 14:11:29','darshan','2025-10-16 14:13:43'),(620,0,0,'I',243,'I000243',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 14:15:49','darshan','2025-10-16 14:16:03'),(621,0,0,'I',243,'I000243',2526,2,'0000-00-00','51190',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 14:16:03','','0000-00-00 00:00:00'),(622,0,0,'I',244,'I000244',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 14:24:25','','0000-00-00 00:00:00'),(623,0,0,'I',244,'I000244',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-16 14:24:25','','0000-00-00 00:00:00'),(624,0,0,'I',245,'I000245',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 14:29:15','','0000-00-00 00:00:00'),(625,0,0,'I',245,'I000245',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 14:29:15','','0000-00-00 00:00:00'),(626,0,0,'I',245,'I000245',2526,3,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-16 14:29:15','','0000-00-00 00:00:00'),(627,0,0,'I',245,'I000245',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,5,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-16 14:29:15','','0000-00-00 00:00:00'),(628,0,0,'I',246,'I000246',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 14:45:59','darshan','2025-10-16 14:46:17'),(629,0,0,'I',246,'I000246',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 14:45:59','darshan','2025-10-16 14:46:17'),(630,0,0,'I',246,'I000246',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-16 14:46:17','','0000-00-00 00:00:00'),(631,0,0,'I',246,'I000246',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 14:46:17','','0000-00-00 00:00:00'),(632,0,0,'I',247,'I000247',2526,1,'0000-00-00','51191',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-16 14:53:47','','0000-00-00 00:00:00'),(633,0,0,'I',247,'I000247',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 14:53:47','','0000-00-00 00:00:00'),(634,0,0,'I',247,'I000247',2526,3,'0000-00-00','51283',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 14:53:47','','0000-00-00 00:00:00'),(635,0,0,'I',248,'I000248',2526,1,'0000-00-00','51233',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-16 15:10:48','darshan','2025-10-16 15:11:36'),(636,0,0,'I',248,'I000248',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 15:11:36','','0000-00-00 00:00:00'),(637,0,0,'I',248,'I000248',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 15:11:36','','0000-00-00 00:00:00'),(638,0,0,'I',248,'I000248',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 15:11:36','','0000-00-00 00:00:00'),(639,0,0,'I',249,'I000249',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 15:13:45','','0000-00-00 00:00:00'),(640,0,0,'I',249,'I000249',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 15:13:45','','0000-00-00 00:00:00'),(641,0,0,'I',249,'I000249',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 15:13:45','','0000-00-00 00:00:00'),(642,0,0,'I',250,'I000250',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 15:22:04','','0000-00-00 00:00:00'),(643,0,0,'I',250,'I000250',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 15:22:04','','0000-00-00 00:00:00'),(644,0,0,'I',250,'I000250',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-16 15:22:04','','0000-00-00 00:00:00'),(645,0,0,'I',250,'I000250',2526,4,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 15:22:04','','0000-00-00 00:00:00'),(646,0,0,'I',251,'I000251',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 17:24:07','','0000-00-00 00:00:00'),(647,0,0,'I',251,'I000251',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 17:24:07','','0000-00-00 00:00:00'),(648,0,0,'I',251,'I000251',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 17:24:07','','0000-00-00 00:00:00'),(649,0,0,'I',251,'I000251',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-16 17:24:07','','0000-00-00 00:00:00'),(650,0,0,'I',251,'I000251',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-16 17:24:07','','0000-00-00 00:00:00'),(651,0,0,'I',252,'I000252',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-16 17:28:00','darshan','2025-10-16 17:28:41'),(652,0,0,'I',252,'I000252',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 17:28:00','darshan','2025-10-16 17:28:41'),(653,0,0,'I',252,'I000252',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 17:28:41','','0000-00-00 00:00:00'),(654,0,0,'I',253,'I000253',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 17:41:48','','0000-00-00 00:00:00'),(655,0,0,'I',253,'I000253',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 17:41:48','','0000-00-00 00:00:00'),(656,0,0,'I',254,'I000254',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 17:47:58','','0000-00-00 00:00:00'),(657,0,0,'I',254,'I000254',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 17:47:58','','0000-00-00 00:00:00'),(658,0,0,'I',255,'I000255',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 17:57:57','','0000-00-00 00:00:00'),(659,0,0,'I',256,'I000256',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 18:13:22','','0000-00-00 00:00:00'),(660,0,0,'I',257,'I000257',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 18:19:23','','0000-00-00 00:00:00'),(661,0,0,'I',257,'I000257',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-16 18:19:23','','0000-00-00 00:00:00'),(662,0,0,'I',257,'I000257',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 18:19:23','','0000-00-00 00:00:00'),(663,0,0,'I',258,'I000258',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 18:34:15','','0000-00-00 00:00:00'),(664,0,0,'I',258,'I000258',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 18:34:15','','0000-00-00 00:00:00'),(665,0,0,'I',259,'I000259',2526,1,'0000-00-00','51267',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 18:43:33','darshan','2025-10-16 18:45:50'),(666,0,0,'I',259,'I000259',2526,2,'0000-00-00','51284',0,0,'CAP','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 18:45:50','','0000-00-00 00:00:00'),(667,0,0,'I',260,'I000260',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 18:51:07','','0000-00-00 00:00:00'),(668,0,0,'I',260,'I000260',2526,2,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 18:51:07','','0000-00-00 00:00:00'),(669,0,0,'I',260,'I000260',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-10-16 18:51:07','','0000-00-00 00:00:00'),(670,0,0,'I',261,'I000261',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 18:57:23','','0000-00-00 00:00:00'),(671,0,0,'I',261,'I000261',2526,2,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-10-16 18:57:23','','0000-00-00 00:00:00'),(672,0,0,'I',261,'I000261',2526,3,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 18:57:23','','0000-00-00 00:00:00'),(673,0,0,'I',261,'I000261',2526,4,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-10-16 18:57:23','','0000-00-00 00:00:00'),(674,0,0,'I',261,'I000261',2526,5,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 18:57:23','','0000-00-00 00:00:00'),(675,0,0,'I',261,'I000261',2526,6,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-16 18:57:23','','0000-00-00 00:00:00'),(676,0,0,'I',262,'I000262',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:03:23','','0000-00-00 00:00:00'),(677,0,0,'I',262,'I000262',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:03:23','','0000-00-00 00:00:00'),(678,0,0,'I',262,'I000262',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:03:23','','0000-00-00 00:00:00'),(679,0,0,'I',263,'I000263',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:09:09','darshan','2025-10-16 19:13:06'),(680,0,0,'I',263,'I000263',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:09:44','darshan','2025-10-16 19:13:06'),(681,0,0,'I',264,'I000264',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:17:02','darshan','2025-10-16 19:17:24'),(682,0,0,'I',264,'I000264',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:17:24','','0000-00-00 00:00:00'),(683,0,0,'I',265,'I000265',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:20:18','','0000-00-00 00:00:00'),(684,0,0,'I',265,'I000265',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:20:18','','0000-00-00 00:00:00'),(685,0,0,'I',265,'I000265',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-16 19:20:18','','0000-00-00 00:00:00'),(686,0,0,'I',266,'I000266',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:23:32','darshan','2025-10-16 19:23:36'),(687,0,0,'I',266,'I000266',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:23:32','darshan','2025-10-16 19:23:36'),(688,0,0,'I',267,'I000267',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:27:19','','0000-00-00 00:00:00'),(689,0,0,'I',267,'I000267',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:27:19','','0000-00-00 00:00:00'),(690,0,0,'I',268,'I000268',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:30:12','','0000-00-00 00:00:00'),(691,0,0,'I',268,'I000268',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:30:12','','0000-00-00 00:00:00'),(692,0,0,'I',269,'I000269',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-16 19:38:41','drarchit','2025-10-16 19:38:48'),(693,0,0,'I',269,'I000269',2526,2,'0000-00-00','51214',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-10-16 19:38:41','drarchit','2025-10-16 19:38:48'),(694,0,0,'I',269,'I000269',2526,3,'0000-00-00','51286',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-16 19:38:41','drarchit','2025-10-16 19:38:48'),(695,0,0,'I',270,'I000270',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:41:08','','0000-00-00 00:00:00'),(696,0,0,'I',270,'I000270',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:41:08','','0000-00-00 00:00:00'),(697,0,0,'I',270,'I000270',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-16 19:41:08','','0000-00-00 00:00:00'),(698,0,0,'I',270,'I000270',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:41:08','','0000-00-00 00:00:00'),(699,0,0,'I',271,'I000271',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:44:55','darshan','2025-10-16 19:45:15'),(700,0,0,'I',271,'I000271',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:44:55','darshan','2025-10-16 19:45:15'),(701,0,0,'I',271,'I000271',2526,3,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:45:15','','0000-00-00 00:00:00'),(702,0,0,'I',272,'I000272',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:49:22','darshan','2025-10-16 19:49:48'),(703,0,0,'I',272,'I000272',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:49:48','','0000-00-00 00:00:00'),(704,0,0,'I',272,'I000272',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:49:48','','0000-00-00 00:00:00'),(705,0,0,'I',273,'I000273',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:52:56','darshan','2025-10-16 19:53:20'),(706,0,0,'I',273,'I000273',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:52:56','darshan','2025-10-16 19:53:20'),(707,0,0,'I',273,'I000273',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:52:56','darshan','2025-10-16 19:53:20'),(708,0,0,'I',274,'I000274',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:59:29','','0000-00-00 00:00:00'),(709,0,0,'I',274,'I000274',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:59:29','','0000-00-00 00:00:00'),(710,0,0,'I',274,'I000274',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:59:29','','0000-00-00 00:00:00'),(711,0,0,'I',274,'I000274',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 19:59:29','','0000-00-00 00:00:00'),(712,0,0,'I',274,'I000274',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-16 19:59:29','','0000-00-00 00:00:00'),(713,0,0,'I',274,'I000274',2526,6,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-16 19:59:29','','0000-00-00 00:00:00'),(714,0,0,'I',275,'I000275',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 20:01:46','','0000-00-00 00:00:00'),(715,0,0,'I',276,'I000276',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 20:04:21','','0000-00-00 00:00:00'),(716,0,0,'I',276,'I000276',2526,2,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-10-16 20:04:21','','0000-00-00 00:00:00'),(717,0,0,'I',276,'I000276',2526,3,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 20:04:21','','0000-00-00 00:00:00'),(718,0,0,'I',276,'I000276',2526,4,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 20:04:21','','0000-00-00 00:00:00'),(719,0,0,'I',277,'I000277',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 20:29:08','','0000-00-00 00:00:00'),(720,0,0,'I',277,'I000277',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-16 20:29:08','','0000-00-00 00:00:00'),(721,0,0,'I',277,'I000277',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-16 20:29:08','','0000-00-00 00:00:00'),(722,0,0,'I',277,'I000277',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-16 20:29:08','','0000-00-00 00:00:00'),(723,0,0,'I',278,'I000278',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 10:44:19','','0000-00-00 00:00:00'),(724,0,0,'I',279,'I000279',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 10:47:43','darshan','2025-10-17 10:47:48'),(725,0,0,'I',279,'I000279',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 10:47:43','darshan','2025-10-17 10:47:48'),(726,0,0,'I',280,'I000280',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-17 10:56:19','drarchit','2025-10-17 10:57:45'),(728,0,0,'I',280,'I000280',2526,2,'0000-00-00','51288',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-17 10:57:45','','0000-00-00 00:00:00'),(729,0,0,'I',281,'I000281',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 11:16:55','','0000-00-00 00:00:00'),(730,0,0,'I',281,'I000281',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 11:16:55','','0000-00-00 00:00:00'),(731,0,0,'I',281,'I000281',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 11:16:55','','0000-00-00 00:00:00'),(732,0,0,'I',282,'I000282',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 11:19:58','darshan','2025-10-17 11:20:07'),(733,0,0,'I',282,'I000282',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-17 11:19:58','darshan','2025-10-17 11:20:07'),(734,0,0,'I',283,'I000283',2526,1,'0000-00-00','51283',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-17 11:29:09','','0000-00-00 00:00:00'),(735,0,0,'I',284,'I000284',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 11:46:55','darshan','2025-10-17 11:47:04'),(736,0,0,'I',284,'I000284',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 11:46:55','darshan','2025-10-17 11:47:04'),(737,0,0,'I',285,'I000285',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 11:52:44','','0000-00-00 00:00:00'),(738,0,0,'I',285,'I000285',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 11:52:44','','0000-00-00 00:00:00'),(739,0,0,'I',285,'I000285',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 11:52:44','','0000-00-00 00:00:00'),(740,0,0,'I',286,'I000286',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 11:57:16','darshan','2025-10-17 11:57:47'),(741,0,0,'I',286,'I000286',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 11:57:32','darshan','2025-10-17 11:57:47'),(742,0,0,'I',287,'I000287',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-17 12:01:35','','0000-00-00 00:00:00'),(743,0,0,'I',287,'I000287',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 12:01:35','','0000-00-00 00:00:00'),(744,0,0,'I',287,'I000287',2526,3,'0000-00-00','51287',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-17 12:01:35','','0000-00-00 00:00:00'),(745,0,0,'I',288,'I000288',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 12:09:26','darshan','2025-10-17 12:10:02'),(746,0,0,'I',288,'I000288',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-17 12:09:26','darshan','2025-10-17 12:10:02'),(747,0,0,'I',288,'I000288',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-17 12:10:02','','0000-00-00 00:00:00'),(748,0,0,'I',289,'I000289',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 12:16:31','','0000-00-00 00:00:00'),(749,0,0,'I',290,'I000290',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 12:20:16','','0000-00-00 00:00:00'),(750,0,0,'I',290,'I000290',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 12:20:16','','0000-00-00 00:00:00'),(751,0,0,'I',291,'I000291',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:11:35','','0000-00-00 00:00:00'),(752,0,0,'I',291,'I000291',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:11:35','','0000-00-00 00:00:00'),(753,0,0,'I',291,'I000291',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:11:35','','0000-00-00 00:00:00'),(754,0,0,'I',292,'I000292',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:17:58','','0000-00-00 00:00:00'),(755,0,0,'I',292,'I000292',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:17:58','','0000-00-00 00:00:00'),(756,0,0,'I',293,'I000293',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:22:07','','0000-00-00 00:00:00'),(757,0,0,'I',293,'I000293',2526,2,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:22:07','','0000-00-00 00:00:00'),(758,0,0,'I',294,'I000294',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:25:35','','0000-00-00 00:00:00'),(759,0,0,'I',294,'I000294',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-17 13:25:35','','0000-00-00 00:00:00'),(760,0,0,'I',295,'I000295',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:29:06','','0000-00-00 00:00:00'),(761,0,0,'I',295,'I000295',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:29:06','','0000-00-00 00:00:00'),(762,0,0,'I',296,'I000296',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:33:41','','0000-00-00 00:00:00'),(763,0,0,'I',296,'I000296',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:33:41','','0000-00-00 00:00:00'),(764,0,0,'I',297,'I000297',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:40:58','','0000-00-00 00:00:00'),(765,0,0,'I',297,'I000297',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:40:58','','0000-00-00 00:00:00'),(766,0,0,'I',297,'I000297',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-17 13:40:58','','0000-00-00 00:00:00'),(767,0,0,'I',298,'I000298',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:44:50','','0000-00-00 00:00:00'),(768,0,0,'I',298,'I000298',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:44:50','','0000-00-00 00:00:00'),(769,0,0,'I',299,'I000299',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:48:07','darshan','2025-10-17 13:48:44'),(770,0,0,'I',299,'I000299',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:48:31','darshan','2025-10-17 13:48:44'),(771,0,0,'I',300,'I000300',2526,1,'0000-00-00','51197',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:53:19','darshan','2025-10-17 13:54:21'),(772,0,0,'I',300,'I000300',2526,2,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:53:19','darshan','2025-10-17 13:54:21'),(773,0,0,'I',300,'I000300',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,5,0,0,0,0,'.5-0-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:53:19','darshan','2025-10-17 13:54:21'),(774,0,0,'I',300,'I000300',2526,4,'0000-00-00','51275',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'darshan','2025-10-17 13:54:21','','0000-00-00 00:00:00'),(775,0,0,'I',300,'I000300',2526,5,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 13:54:21','','0000-00-00 00:00:00'),(776,0,0,'I',301,'I000301',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 14:03:44','','0000-00-00 00:00:00'),(777,0,0,'I',301,'I000301',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 14:03:44','','0000-00-00 00:00:00'),(778,0,0,'I',301,'I000301',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 14:03:44','','0000-00-00 00:00:00'),(779,0,0,'I',301,'I000301',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-17 14:03:44','','0000-00-00 00:00:00'),(780,0,0,'I',302,'I000302',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 14:17:57','darshan','2025-10-17 14:18:14'),(781,0,0,'I',302,'I000302',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 14:17:57','darshan','2025-10-17 14:18:14'),(782,0,0,'I',302,'I000302',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-17 14:17:57','darshan','2025-10-17 14:18:14'),(783,0,0,'I',302,'I000302',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-17 14:17:57','darshan','2025-10-17 14:18:14'),(784,0,0,'I',303,'I000303',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 14:21:42','','0000-00-00 00:00:00'),(785,0,0,'I',303,'I000303',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 14:21:42','','0000-00-00 00:00:00'),(786,0,0,'I',303,'I000303',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 14:21:42','','0000-00-00 00:00:00'),(787,0,0,'I',304,'I000304',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 14:58:55','','0000-00-00 00:00:00'),(788,0,0,'I',304,'I000304',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 14:58:55','','0000-00-00 00:00:00'),(789,0,0,'I',305,'I000305',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 15:02:21','','0000-00-00 00:00:00'),(790,0,0,'I',305,'I000305',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 15:02:21','','0000-00-00 00:00:00'),(791,0,0,'I',306,'I000306',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 15:05:43','darshan','2025-10-17 15:06:24'),(792,0,0,'I',306,'I000306',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 15:05:43','darshan','2025-10-17 15:06:24'),(793,0,0,'I',306,'I000306',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 15:05:43','darshan','2025-10-17 15:06:24'),(794,0,0,'I',306,'I000306',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-17 15:06:07','darshan','2025-10-17 15:06:24'),(795,0,0,'I',306,'I000306',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-17 15:06:07','darshan','2025-10-17 15:06:24'),(796,0,0,'I',307,'I000307',2526,1,'0000-00-00','51209',0,0,'TAB','','','','',0,7,0,0,0,0,'.5-0-.5','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 15:10:39','','0000-00-00 00:00:00'),(797,0,0,'I',307,'I000307',2526,2,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 15:10:39','','0000-00-00 00:00:00'),(798,0,0,'I',308,'I000308',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 17:30:26','','0000-00-00 00:00:00'),(799,0,0,'I',308,'I000308',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 17:30:26','','0000-00-00 00:00:00'),(800,0,0,'I',309,'I000309',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 17:43:59','','0000-00-00 00:00:00'),(801,0,0,'I',309,'I000309',2526,2,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 17:43:59','','0000-00-00 00:00:00'),(802,0,0,'I',310,'I000310',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 17:52:03','','0000-00-00 00:00:00'),(803,0,0,'I',310,'I000310',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-17 17:52:03','','0000-00-00 00:00:00'),(804,0,0,'I',310,'I000310',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-17 17:52:03','','0000-00-00 00:00:00'),(805,0,0,'I',310,'I000310',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-17 17:52:03','','0000-00-00 00:00:00'),(806,0,0,'I',311,'I000311',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 17:57:52','','0000-00-00 00:00:00'),(807,0,0,'I',311,'I000311',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 17:57:52','','0000-00-00 00:00:00'),(808,0,0,'I',311,'I000311',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 17:57:52','','0000-00-00 00:00:00'),(809,0,0,'I',311,'I000311',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-17 17:57:52','','0000-00-00 00:00:00'),(810,0,0,'I',312,'I000312',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 18:10:58','','0000-00-00 00:00:00'),(811,0,0,'I',313,'I000313',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 18:22:02','','0000-00-00 00:00:00'),(812,0,0,'I',313,'I000313',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 18:22:02','','0000-00-00 00:00:00'),(813,0,0,'I',313,'I000313',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 18:22:02','','0000-00-00 00:00:00'),(814,0,0,'I',313,'I000313',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-17 18:22:02','','0000-00-00 00:00:00'),(815,0,0,'I',314,'I000314',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,120,0,0,0,0,'.5-0-.5','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 18:25:30','','0000-00-00 00:00:00'),(816,0,0,'I',315,'I000315',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-17 18:28:49','','0000-00-00 00:00:00'),(817,0,0,'I',316,'I000316',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 18:29:24','darshan','2025-10-17 18:29:29'),(818,0,0,'I',316,'I000316',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 18:29:24','darshan','2025-10-17 18:29:29'),(819,0,0,'I',317,'I000317',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 18:39:02','','0000-00-00 00:00:00'),(820,0,0,'I',317,'I000317',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-17 18:39:02','','0000-00-00 00:00:00'),(821,0,0,'I',318,'I000318',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 18:56:21','','0000-00-00 00:00:00'),(822,0,0,'I',318,'I000318',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 18:56:21','','0000-00-00 00:00:00'),(823,0,0,'I',318,'I000318',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-17 18:56:21','','0000-00-00 00:00:00'),(824,0,0,'I',319,'I000319',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 18:59:23','','0000-00-00 00:00:00'),(825,0,0,'I',319,'I000319',2526,2,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-10-17 18:59:23','','0000-00-00 00:00:00'),(826,0,0,'I',319,'I000319',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 18:59:23','','0000-00-00 00:00:00'),(827,0,0,'I',319,'I000319',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-17 18:59:23','','0000-00-00 00:00:00'),(828,0,0,'I',320,'I000320',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-17 19:01:13','','0000-00-00 00:00:00'),(829,0,0,'I',320,'I000320',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-17 19:01:13','','0000-00-00 00:00:00'),(831,0,0,'I',321,'I000321',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 19:03:32','darshan','2025-10-17 19:04:07'),(832,0,0,'I',321,'I000321',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 19:04:07','','0000-00-00 00:00:00'),(833,0,0,'I',321,'I000321',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 19:04:07','','0000-00-00 00:00:00'),(834,0,0,'I',322,'I000322',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 19:17:41','darshan','2025-10-17 19:17:44'),(835,0,0,'I',322,'I000322',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 19:17:41','darshan','2025-10-17 19:17:44'),(836,0,0,'I',323,'I000323',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 19:23:43','darshan','2025-10-17 19:26:03'),(837,0,0,'I',323,'I000323',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 19:23:43','darshan','2025-10-17 19:26:03'),(838,0,0,'I',323,'I000323',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-17 19:26:03','','0000-00-00 00:00:00'),(839,0,0,'I',324,'I000324',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 19:33:55','','0000-00-00 00:00:00'),(840,0,0,'I',324,'I000324',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 19:33:55','','0000-00-00 00:00:00'),(841,0,0,'I',324,'I000324',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-17 19:33:55','','0000-00-00 00:00:00'),(842,0,0,'I',325,'I000325',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 19:37:09','','0000-00-00 00:00:00'),(843,0,0,'I',326,'I000326',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-10-17 19:43:30','','0000-00-00 00:00:00'),(844,0,0,'I',326,'I000326',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 19:43:30','','0000-00-00 00:00:00'),(845,0,0,'I',326,'I000326',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-17 19:43:30','','0000-00-00 00:00:00'),(846,0,0,'I',326,'I000326',2526,4,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 19:43:30','','0000-00-00 00:00:00'),(847,0,0,'I',326,'I000326',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-17 19:43:30','','0000-00-00 00:00:00'),(848,0,0,'I',327,'I000327',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 19:48:48','','0000-00-00 00:00:00'),(849,0,0,'I',327,'I000327',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 19:48:48','','0000-00-00 00:00:00'),(850,0,0,'I',327,'I000327',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 19:48:48','','0000-00-00 00:00:00'),(851,0,0,'I',327,'I000327',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-17 19:48:48','','0000-00-00 00:00:00'),(852,0,0,'I',328,'I000328',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 19:54:10','','0000-00-00 00:00:00'),(853,0,0,'I',328,'I000328',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 19:54:10','','0000-00-00 00:00:00'),(854,0,0,'I',328,'I000328',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-17 19:54:10','','0000-00-00 00:00:00'),(855,0,0,'I',329,'I000329',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 20:05:12','','0000-00-00 00:00:00'),(856,0,0,'I',329,'I000329',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 20:05:12','','0000-00-00 00:00:00'),(857,0,0,'I',330,'I000330',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 20:10:37','','0000-00-00 00:00:00'),(858,0,0,'I',330,'I000330',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 20:10:37','','0000-00-00 00:00:00'),(859,0,0,'I',330,'I000330',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-10-17 20:10:37','','0000-00-00 00:00:00'),(860,0,0,'I',330,'I000330',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-17 20:10:37','','0000-00-00 00:00:00'),(861,0,0,'I',331,'I000331',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 20:17:49','darshan','2025-10-17 20:18:09'),(862,0,0,'I',331,'I000331',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 20:18:09','','0000-00-00 00:00:00'),(863,0,0,'I',331,'I000331',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,0,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-17 20:18:09','','0000-00-00 00:00:00'),(864,0,0,'I',332,'I000332',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 20:20:43','darshan','2025-10-17 20:21:18'),(865,0,0,'I',332,'I000332',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 20:21:18','','0000-00-00 00:00:00'),(866,0,0,'I',332,'I000332',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-17 20:21:18','','0000-00-00 00:00:00'),(867,0,0,'I',333,'I000333',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 20:26:00','','0000-00-00 00:00:00'),(868,0,0,'I',333,'I000333',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 20:26:00','','0000-00-00 00:00:00'),(869,0,0,'I',333,'I000333',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-17 20:26:00','','0000-00-00 00:00:00'),(870,0,0,'I',333,'I000333',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-17 20:26:00','','0000-00-00 00:00:00'),(871,0,0,'I',334,'I000334',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 11:06:33','darshan','2025-10-18 12:29:19'),(872,0,0,'I',334,'I000334',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 11:06:33','darshan','2025-10-18 12:29:19'),(873,0,0,'I',335,'I000335',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 11:09:44','darshan','2025-10-18 11:10:14'),(874,0,0,'I',335,'I000335',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 11:09:44','darshan','2025-10-18 11:10:14'),(875,0,0,'I',335,'I000335',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 11:10:14','','0000-00-00 00:00:00'),(876,0,0,'I',336,'I000336',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 11:24:29','','0000-00-00 00:00:00'),(877,0,0,'I',336,'I000336',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 11:24:29','','0000-00-00 00:00:00'),(878,0,0,'I',336,'I000336',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-18 11:24:29','','0000-00-00 00:00:00'),(879,0,0,'I',336,'I000336',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 11:24:29','','0000-00-00 00:00:00'),(880,0,0,'I',337,'I000337',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 11:27:02','','0000-00-00 00:00:00'),(881,0,0,'I',337,'I000337',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 11:27:02','','0000-00-00 00:00:00'),(882,0,0,'I',337,'I000337',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-18 11:27:02','','0000-00-00 00:00:00'),(883,0,0,'I',338,'I000338',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 11:31:13','','0000-00-00 00:00:00'),(884,0,0,'I',338,'I000338',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 11:31:13','','0000-00-00 00:00:00'),(885,0,0,'I',338,'I000338',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 11:31:13','','0000-00-00 00:00:00'),(886,0,0,'I',339,'I000339',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 11:36:26','darshan','2025-10-18 11:36:33'),(887,0,0,'I',339,'I000339',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 11:36:26','darshan','2025-10-18 11:36:33'),(888,0,0,'I',340,'I000340',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 12:06:00','','0000-00-00 00:00:00'),(889,0,0,'I',340,'I000340',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 12:06:00','','0000-00-00 00:00:00'),(890,0,0,'I',341,'I000341',2526,1,'0000-00-00','51276',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 12:25:04','','0000-00-00 00:00:00'),(891,0,0,'I',341,'I000341',2526,2,'0000-00-00','51287',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-18 12:25:04','','0000-00-00 00:00:00'),(892,0,0,'I',341,'I000341',2526,3,'0000-00-00','51277',0,0,'OINT','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'darshan','2025-10-18 12:25:04','','0000-00-00 00:00:00'),(893,0,0,'I',342,'I000342',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 12:28:04','','0000-00-00 00:00:00'),(894,0,0,'I',342,'I000342',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 12:28:04','','0000-00-00 00:00:00'),(895,0,0,'I',342,'I000342',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 12:28:04','','0000-00-00 00:00:00'),(896,0,0,'I',342,'I000342',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-18 12:28:04','','0000-00-00 00:00:00'),(897,0,0,'I',342,'I000342',2526,5,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-18 12:28:04','','0000-00-00 00:00:00'),(898,0,0,'I',334,'I000334',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 12:29:19','','0000-00-00 00:00:00'),(899,0,0,'I',343,'I000343',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 12:31:29','','0000-00-00 00:00:00'),(900,0,0,'I',343,'I000343',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-18 12:31:29','','0000-00-00 00:00:00'),(901,0,0,'I',344,'I000344',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 12:39:26','darshan','2025-10-18 12:39:32'),(902,0,0,'I',344,'I000344',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 12:39:26','darshan','2025-10-18 12:39:32'),(903,0,0,'I',344,'I000344',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-18 12:39:26','darshan','2025-10-18 12:39:32'),(904,0,0,'I',346,'I000346',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 12:54:12','','0000-00-00 00:00:00'),(905,0,0,'I',346,'I000346',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 12:54:12','','0000-00-00 00:00:00'),(906,0,0,'I',346,'I000346',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-18 12:54:12','','0000-00-00 00:00:00'),(907,0,0,'I',347,'I000347',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 12:57:53','','0000-00-00 00:00:00'),(908,0,0,'I',347,'I000347',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-18 12:57:53','','0000-00-00 00:00:00'),(909,0,0,'I',348,'I000348',2526,1,'0000-00-00','51283',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:00:32','','0000-00-00 00:00:00'),(910,0,0,'I',348,'I000348',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:00:32','','0000-00-00 00:00:00'),(911,0,0,'I',348,'I000348',2526,3,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-18 13:00:32','','0000-00-00 00:00:00'),(912,0,0,'I',348,'I000348',2526,4,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:00:32','','0000-00-00 00:00:00'),(913,0,0,'I',349,'I000349',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:07:34','','0000-00-00 00:00:00'),(914,0,0,'I',349,'I000349',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:07:34','','0000-00-00 00:00:00'),(915,0,0,'I',349,'I000349',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-18 13:07:34','','0000-00-00 00:00:00'),(916,0,0,'I',350,'I000350',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:12:38','','0000-00-00 00:00:00'),(917,0,0,'I',350,'I000350',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:12:38','','0000-00-00 00:00:00'),(918,0,0,'I',350,'I000350',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:12:38','','0000-00-00 00:00:00'),(919,0,0,'I',350,'I000350',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-18 13:12:38','','0000-00-00 00:00:00'),(920,0,0,'I',351,'I000351',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:16:21','','0000-00-00 00:00:00'),(921,0,0,'I',352,'I000352',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:19:02','darshan','2025-10-18 13:19:05'),(922,0,0,'I',353,'I000353',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:21:36','','0000-00-00 00:00:00'),(923,0,0,'I',353,'I000353',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:21:36','','0000-00-00 00:00:00'),(924,0,0,'I',354,'I000354',2526,1,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-18 13:35:20','','0000-00-00 00:00:00'),(925,0,0,'I',354,'I000354',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:35:20','','0000-00-00 00:00:00'),(926,0,0,'I',354,'I000354',2526,3,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:35:20','','0000-00-00 00:00:00'),(927,0,0,'I',354,'I000354',2526,4,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:35:20','','0000-00-00 00:00:00'),(928,0,0,'I',354,'I000354',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-18 13:35:20','','0000-00-00 00:00:00'),(929,0,0,'I',355,'I000355',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:40:40','','0000-00-00 00:00:00'),(930,0,0,'I',355,'I000355',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:40:40','','0000-00-00 00:00:00'),(931,0,0,'I',355,'I000355',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-18 13:40:40','','0000-00-00 00:00:00'),(932,0,0,'I',356,'I000356',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:47:45','','0000-00-00 00:00:00'),(933,0,0,'I',356,'I000356',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:47:45','','0000-00-00 00:00:00'),(934,0,0,'I',357,'I000357',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:52:25','','0000-00-00 00:00:00'),(935,0,0,'I',357,'I000357',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:52:25','','0000-00-00 00:00:00'),(936,0,0,'I',357,'I000357',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-18 13:52:25','','0000-00-00 00:00:00'),(937,0,0,'I',358,'I000358',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:59:58','darshan','2025-10-18 14:00:07'),(938,0,0,'I',358,'I000358',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 13:59:58','darshan','2025-10-18 14:00:07'),(939,0,0,'I',358,'I000358',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-18 13:59:58','darshan','2025-10-18 14:00:07'),(940,0,0,'I',358,'I000358',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-18 14:00:07','','0000-00-00 00:00:00'),(941,0,0,'I',359,'I000359',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 14:03:09','','0000-00-00 00:00:00'),(942,0,0,'I',360,'I000360',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 14:07:03','darshan','2025-10-18 14:07:38'),(943,0,0,'I',360,'I000360',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 14:07:03','darshan','2025-10-18 14:07:38'),(944,0,0,'I',360,'I000360',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 14:07:03','darshan','2025-10-18 14:07:38'),(945,0,0,'I',360,'I000360',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-18 14:07:38','','0000-00-00 00:00:00'),(946,0,0,'I',361,'I000361',2526,1,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-18 14:12:31','darshan','2025-10-18 14:13:07'),(947,0,0,'I',361,'I000361',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 14:13:07','','0000-00-00 00:00:00'),(948,0,0,'I',361,'I000361',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-18 14:13:07','','0000-00-00 00:00:00'),(949,0,0,'I',362,'I000362',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 14:18:40','','0000-00-00 00:00:00'),(950,0,0,'I',362,'I000362',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 14:18:40','','0000-00-00 00:00:00'),(951,0,0,'I',363,'I000363',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 14:34:31','','0000-00-00 00:00:00'),(952,0,0,'I',364,'I000364',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 14:50:16','','0000-00-00 00:00:00'),(953,0,0,'I',364,'I000364',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 14:50:16','','0000-00-00 00:00:00'),(954,0,0,'I',364,'I000364',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-18 14:50:16','','0000-00-00 00:00:00'),(955,0,0,'I',365,'I000365',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 14:52:10','','0000-00-00 00:00:00'),(956,0,0,'I',365,'I000365',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 14:52:10','','0000-00-00 00:00:00'),(957,0,0,'I',365,'I000365',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 14:52:10','','0000-00-00 00:00:00'),(958,0,0,'I',365,'I000365',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-18 14:52:10','','0000-00-00 00:00:00'),(959,0,0,'I',366,'I000366',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 14:55:44','darshan','2025-10-18 14:56:17'),(960,0,0,'I',366,'I000366',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 14:56:17','','0000-00-00 00:00:00'),(961,0,0,'I',366,'I000366',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-18 14:56:17','','0000-00-00 00:00:00'),(962,0,0,'I',367,'I000367',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 15:00:40','','0000-00-00 00:00:00'),(963,0,0,'I',367,'I000367',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 15:00:40','','0000-00-00 00:00:00'),(964,0,0,'I',367,'I000367',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 15:00:40','','0000-00-00 00:00:00'),(965,0,0,'I',368,'I000368',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 15:08:06','darshan','2025-10-18 15:08:15'),(966,0,0,'I',368,'I000368',2526,2,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 15:08:06','darshan','2025-10-18 15:08:15'),(967,0,0,'I',368,'I000368',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-18 15:08:15','','0000-00-00 00:00:00'),(968,0,0,'I',369,'I000369',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 15:17:06','','0000-00-00 00:00:00'),(969,0,0,'I',369,'I000369',2526,2,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 15:17:06','','0000-00-00 00:00:00'),(970,0,0,'I',369,'I000369',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-10-18 15:17:06','','0000-00-00 00:00:00'),(971,0,0,'I',369,'I000369',2526,4,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-18 15:17:06','','0000-00-00 00:00:00'),(972,0,0,'I',371,'I000371',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-23 18:08:48','','0000-00-00 00:00:00'),(973,0,0,'I',371,'I000371',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-23 18:08:48','','0000-00-00 00:00:00'),(974,0,0,'I',372,'I000372',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-23 18:30:44','darshan','2025-10-23 18:31:09'),(975,0,0,'I',372,'I000372',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-23 18:31:09','','0000-00-00 00:00:00'),(976,0,0,'I',372,'I000372',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-23 18:31:09','','0000-00-00 00:00:00'),(977,0,0,'I',372,'I000372',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-23 18:31:09','','0000-00-00 00:00:00'),(978,0,0,'I',372,'I000372',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-23 18:31:09','','0000-00-00 00:00:00'),(979,0,0,'I',373,'I000373',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-23 18:41:05','','0000-00-00 00:00:00'),(980,0,0,'I',373,'I000373',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-23 18:41:05','','0000-00-00 00:00:00'),(981,0,0,'I',374,'I000374',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-23 18:55:41','','0000-00-00 00:00:00'),(982,0,0,'I',374,'I000374',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-23 18:55:41','','0000-00-00 00:00:00'),(983,0,0,'I',374,'I000374',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-23 18:55:41','','0000-00-00 00:00:00'),(984,0,0,'I',374,'I000374',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-23 18:55:41','','0000-00-00 00:00:00'),(985,0,0,'I',375,'I000375',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-23 19:23:06','darshan','2025-10-23 19:23:18'),(986,0,0,'I',375,'I000375',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-23 19:23:18','','0000-00-00 00:00:00'),(987,0,0,'I',377,'I000377',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 10:49:06','darshan','2025-10-24 10:49:49'),(988,0,0,'I',377,'I000377',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-24 10:49:06','darshan','2025-10-24 10:49:49'),(989,0,0,'I',377,'I000377',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 10:49:49','','0000-00-00 00:00:00'),(990,0,0,'I',377,'I000377',2526,4,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 10:49:49','','0000-00-00 00:00:00'),(991,0,0,'I',378,'I000378',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 10:59:41','','0000-00-00 00:00:00'),(992,0,0,'I',378,'I000378',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 10:59:41','','0000-00-00 00:00:00'),(994,0,0,'I',379,'I000379',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 11:05:15','darshan','2025-10-24 11:06:05'),(995,0,0,'I',379,'I000379',2526,2,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-24 11:05:15','darshan','2025-10-24 11:06:05'),(996,0,0,'I',380,'I000380',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 11:13:31','','0000-00-00 00:00:00'),(997,0,0,'I',381,'I000381',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 11:55:11','','0000-00-00 00:00:00'),(998,0,0,'I',381,'I000381',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 11:55:11','','0000-00-00 00:00:00'),(999,0,0,'I',381,'I000381',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-24 11:55:11','','0000-00-00 00:00:00'),(1000,0,0,'I',382,'I000382',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-10-24 12:01:45','darshan','2025-10-24 12:45:47'),(1001,0,0,'I',382,'I000382',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 12:01:45','darshan','2025-10-24 12:45:47'),(1002,0,0,'I',382,'I000382',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 12:01:45','darshan','2025-10-24 12:45:47'),(1003,0,0,'I',382,'I000382',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 12:01:45','darshan','2025-10-24 12:45:47'),(1004,0,0,'I',383,'I000383',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 12:08:41','','0000-00-00 00:00:00'),(1005,0,0,'I',383,'I000383',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-24 12:08:41','','0000-00-00 00:00:00'),(1006,0,0,'I',384,'I000384',2526,1,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-24 12:44:08','','0000-00-00 00:00:00'),(1007,0,0,'I',384,'I000384',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 12:44:08','','0000-00-00 00:00:00'),(1008,0,0,'I',384,'I000384',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 12:44:08','','0000-00-00 00:00:00'),(1009,0,0,'I',384,'I000384',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-24 12:44:08','','0000-00-00 00:00:00'),(1010,0,0,'I',384,'I000384',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-24 12:44:08','','0000-00-00 00:00:00'),(1011,0,0,'I',384,'I000384',2526,6,'0000-00-00','51193',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 12:44:08','','0000-00-00 00:00:00'),(1012,0,0,'I',382,'I000382',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-24 12:45:47','','0000-00-00 00:00:00'),(1013,0,0,'I',385,'I000385',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 13:04:24','','0000-00-00 00:00:00'),(1014,0,0,'I',385,'I000385',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 13:04:24','','0000-00-00 00:00:00'),(1015,0,0,'I',385,'I000385',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 13:04:24','','0000-00-00 00:00:00'),(1016,0,0,'I',385,'I000385',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-24 13:04:24','','0000-00-00 00:00:00'),(1017,0,0,'I',386,'I000386',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-10-24 13:25:17','','0000-00-00 00:00:00'),(1018,0,0,'I',386,'I000386',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 13:25:17','','0000-00-00 00:00:00'),(1019,0,0,'I',386,'I000386',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-24 13:25:17','','0000-00-00 00:00:00'),(1020,0,0,'I',386,'I000386',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-24 13:25:17','','0000-00-00 00:00:00'),(1021,0,0,'I',386,'I000386',2526,5,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 13:25:17','','0000-00-00 00:00:00'),(1022,0,0,'I',387,'I000387',2526,1,'0000-00-00','51289',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 13:30:13','','0000-00-00 00:00:00'),(1023,0,0,'I',388,'I000388',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 13:47:14','darshan','2025-10-24 13:47:22'),(1024,0,0,'I',388,'I000388',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 13:47:22','','0000-00-00 00:00:00'),(1025,0,0,'I',389,'I000389',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 17:20:22','','0000-00-00 00:00:00'),(1026,0,0,'I',389,'I000389',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 17:20:22','','0000-00-00 00:00:00'),(1027,0,0,'I',389,'I000389',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-24 17:20:22','','0000-00-00 00:00:00'),(1028,0,0,'I',390,'I000390',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 17:33:14','darshan','2025-10-24 17:33:38'),(1030,0,0,'I',390,'I000390',2526,2,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-24 17:33:14','darshan','2025-10-24 17:33:38'),(1031,0,0,'I',390,'I000390',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 17:33:38','','0000-00-00 00:00:00'),(1032,0,0,'I',391,'I000391',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 17:57:56','','0000-00-00 00:00:00'),(1033,0,0,'I',391,'I000391',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 17:57:56','','0000-00-00 00:00:00'),(1034,0,0,'I',392,'I000392',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 18:36:01','','0000-00-00 00:00:00'),(1035,0,0,'I',392,'I000392',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 18:36:01','','0000-00-00 00:00:00'),(1036,0,0,'I',393,'I000393',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 18:49:26','','0000-00-00 00:00:00'),(1037,0,0,'I',394,'I000394',2526,1,'0000-00-00','51290',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 19:11:23','','0000-00-00 00:00:00'),(1038,0,0,'I',394,'I000394',2526,2,'0000-00-00','51291',0,0,'SOL','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'darshan','2025-10-24 19:11:23','','0000-00-00 00:00:00'),(1039,0,0,'I',395,'I000395',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 19:14:19','','0000-00-00 00:00:00'),(1040,0,0,'I',395,'I000395',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 19:14:19','','0000-00-00 00:00:00'),(1041,0,0,'I',395,'I000395',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 19:14:19','','0000-00-00 00:00:00'),(1042,0,0,'I',396,'I000396',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 19:22:03','','0000-00-00 00:00:00'),(1043,0,0,'I',396,'I000396',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 19:22:03','','0000-00-00 00:00:00'),(1044,0,0,'I',396,'I000396',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 19:22:03','','0000-00-00 00:00:00'),(1045,0,0,'I',396,'I000396',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-24 19:22:03','','0000-00-00 00:00:00'),(1046,0,0,'I',398,'I000398',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 19:40:26','','0000-00-00 00:00:00'),(1047,0,0,'I',398,'I000398',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 19:40:26','','0000-00-00 00:00:00'),(1048,0,0,'I',398,'I000398',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-24 19:40:26','','0000-00-00 00:00:00'),(1049,0,0,'I',398,'I000398',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-24 19:40:26','','0000-00-00 00:00:00'),(1050,0,0,'I',399,'I000399',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 10:38:32','','0000-00-00 00:00:00'),(1051,0,0,'I',400,'I000400',2526,1,'0000-00-00','51289',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 11:05:38','darshan','2025-10-25 11:06:06'),(1052,0,0,'I',400,'I000400',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 11:06:06','','0000-00-00 00:00:00'),(1053,0,0,'I',400,'I000400',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 11:06:06','','0000-00-00 00:00:00'),(1054,0,0,'I',400,'I000400',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-25 11:06:06','','0000-00-00 00:00:00'),(1055,0,0,'I',401,'I000401',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 11:12:00','darshan','2025-10-25 11:13:04'),(1056,0,0,'I',401,'I000401',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 11:12:00','darshan','2025-10-25 11:13:04'),(1057,0,0,'I',401,'I000401',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-25 11:12:00','darshan','2025-10-25 11:13:04'),(1058,0,0,'I',402,'I000402',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 11:31:20','','0000-00-00 00:00:00'),(1059,0,0,'I',403,'I000403',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 11:35:44','','0000-00-00 00:00:00'),(1060,0,0,'I',403,'I000403',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,25,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-25 11:35:44','','0000-00-00 00:00:00'),(1061,0,0,'I',403,'I000403',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 11:35:44','','0000-00-00 00:00:00'),(1062,0,0,'I',403,'I000403',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-25 11:35:44','','0000-00-00 00:00:00'),(1063,0,0,'I',404,'I000404',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-25 11:44:09','','0000-00-00 00:00:00'),(1064,0,0,'I',404,'I000404',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 11:44:09','','0000-00-00 00:00:00'),(1065,0,0,'I',405,'I000405',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 11:49:51','darshan','2025-10-25 11:50:50'),(1066,0,0,'I',405,'I000405',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 11:49:51','darshan','2025-10-25 11:50:50'),(1067,0,0,'I',405,'I000405',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 11:50:03','darshan','2025-10-25 11:50:50'),(1068,0,0,'I',406,'I000406',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 11:56:34','darshan','2025-10-25 12:58:08'),(1069,0,0,'I',406,'I000406',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 11:56:34','darshan','2025-10-25 12:58:08'),(1070,0,0,'I',406,'I000406',2526,3,'0000-00-00','51275',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'darshan','2025-10-25 11:56:34','darshan','2025-10-25 12:58:08'),(1071,0,0,'I',406,'I000406',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-25 11:56:34','darshan','2025-10-25 12:58:08'),(1072,0,0,'I',407,'I000407',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:00:18','','0000-00-00 00:00:00'),(1073,0,0,'I',407,'I000407',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-25 12:00:18','','0000-00-00 00:00:00'),(1074,0,0,'I',407,'I000407',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:00:18','','0000-00-00 00:00:00'),(1075,0,0,'I',408,'I000408',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:14:03','darshan','2025-10-25 12:14:48'),(1076,0,0,'I',408,'I000408',2526,2,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:14:28','darshan','2025-10-25 12:14:48'),(1077,0,0,'I',408,'I000408',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:14:48','','0000-00-00 00:00:00'),(1078,0,0,'I',409,'I000409',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:26:45','darshan','2025-10-25 13:37:37'),(1079,0,0,'I',409,'I000409',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:26:45','darshan','2025-10-25 13:37:37'),(1080,0,0,'I',410,'I000410',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:32:45','darshan','2025-10-25 12:33:14'),(1081,0,0,'I',410,'I000410',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:33:14','','0000-00-00 00:00:00'),(1082,0,0,'I',410,'I000410',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:33:14','','0000-00-00 00:00:00'),(1083,0,0,'I',410,'I000410',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-25 12:33:14','','0000-00-00 00:00:00'),(1084,0,0,'I',411,'I000411',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:43:31','','0000-00-00 00:00:00'),(1085,0,0,'I',411,'I000411',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:43:31','','0000-00-00 00:00:00'),(1086,0,0,'I',411,'I000411',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:43:31','','0000-00-00 00:00:00'),(1087,0,0,'I',411,'I000411',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-25 12:43:31','','0000-00-00 00:00:00'),(1088,0,0,'I',412,'I000412',2526,1,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:48:05','','0000-00-00 00:00:00'),(1089,0,0,'I',412,'I000412',2526,2,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-25 12:48:05','','0000-00-00 00:00:00'),(1090,0,0,'I',412,'I000412',2526,3,'0000-00-00','51225',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:48:05','','0000-00-00 00:00:00'),(1091,0,0,'I',412,'I000412',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:48:05','','0000-00-00 00:00:00'),(1092,0,0,'I',412,'I000412',2526,5,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-25 12:48:05','','0000-00-00 00:00:00'),(1093,0,0,'I',413,'I000413',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:55:35','darshan','2025-10-25 12:56:08'),(1094,0,0,'I',413,'I000413',2526,2,'0000-00-00','51192',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:55:35','darshan','2025-10-25 12:56:08'),(1095,0,0,'I',413,'I000413',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:56:08','','0000-00-00 00:00:00'),(1096,0,0,'I',413,'I000413',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-25 12:56:08','','0000-00-00 00:00:00'),(1097,0,0,'I',406,'I000406',2526,5,'0000-00-00','51194',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:58:08','','0000-00-00 00:00:00'),(1098,0,0,'I',406,'I000406',2526,6,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 12:58:08','','0000-00-00 00:00:00'),(1099,0,0,'I',414,'I000414',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 13:01:06','','0000-00-00 00:00:00'),(1100,0,0,'I',414,'I000414',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 13:01:06','','0000-00-00 00:00:00'),(1101,0,0,'I',414,'I000414',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-25 13:01:06','','0000-00-00 00:00:00'),(1102,0,0,'I',415,'I000415',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 13:13:23','darshan','2025-10-25 13:13:45'),(1103,0,0,'I',415,'I000415',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 13:13:23','darshan','2025-10-25 13:13:45'),(1104,0,0,'I',415,'I000415',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-25 13:13:45','','0000-00-00 00:00:00'),(1105,0,0,'I',415,'I000415',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-25 13:13:45','','0000-00-00 00:00:00'),(1106,0,0,'I',416,'I000416',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 13:18:18','','0000-00-00 00:00:00'),(1107,0,0,'I',416,'I000416',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 13:18:18','','0000-00-00 00:00:00'),(1108,0,0,'I',416,'I000416',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 13:18:18','','0000-00-00 00:00:00'),(1109,0,0,'I',417,'I000417',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 13:33:01','darshan','2025-10-25 13:33:39'),(1110,0,0,'I',417,'I000417',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 13:33:24','darshan','2025-10-25 13:33:39'),(1111,0,0,'I',417,'I000417',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-25 13:33:24','darshan','2025-10-25 13:33:39'),(1112,0,0,'I',418,'I000418',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 13:46:49','','0000-00-00 00:00:00'),(1113,0,0,'I',418,'I000418',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 13:46:49','','0000-00-00 00:00:00'),(1114,0,0,'I',419,'I000419',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 13:57:06','','0000-00-00 00:00:00'),(1115,0,0,'I',419,'I000419',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 13:57:06','','0000-00-00 00:00:00'),(1116,0,0,'I',420,'I000420',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 14:02:38','','0000-00-00 00:00:00'),(1117,0,0,'I',420,'I000420',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-25 14:02:38','','0000-00-00 00:00:00'),(1118,0,0,'I',420,'I000420',2526,3,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-25 14:02:38','','0000-00-00 00:00:00'),(1119,0,0,'I',422,'I000422',2526,1,'0000-00-00','51264',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-27 10:47:08','drarchit','2025-10-27 10:50:34'),(1120,0,0,'I',422,'I000422',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-27 10:49:57','drarchit','2025-10-27 10:50:34'),(1121,0,0,'I',422,'I000422',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-27 10:49:57','drarchit','2025-10-27 10:50:34'),(1122,0,0,'I',422,'I000422',2526,4,'0000-00-00','51293',0,0,'SYRUP','','','','',0,1,0,0,0,0,'1-1-1','5 ML ','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-27 10:49:57','drarchit','2025-10-27 10:50:34'),(1123,0,0,'I',424,'I000424',2526,1,'0000-00-00','51270',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 11:04:38','','0000-00-00 00:00:00'),(1124,0,0,'I',424,'I000424',2526,2,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-10-27 11:04:38','','0000-00-00 00:00:00'),(1125,0,0,'I',424,'I000424',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 11:04:38','','0000-00-00 00:00:00'),(1126,0,0,'I',424,'I000424',2526,4,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 11:04:38','','0000-00-00 00:00:00'),(1127,0,0,'I',425,'I000425',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 11:07:39','','0000-00-00 00:00:00'),(1128,0,0,'I',426,'I000426',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 11:11:29','','0000-00-00 00:00:00'),(1129,0,0,'I',426,'I000426',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 11:11:29','','0000-00-00 00:00:00'),(1130,0,0,'I',427,'I000427',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 11:46:14','','0000-00-00 00:00:00'),(1131,0,0,'I',428,'I000428',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 11:57:04','','0000-00-00 00:00:00'),(1132,0,0,'I',428,'I000428',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 11:57:04','','0000-00-00 00:00:00'),(1133,0,0,'I',428,'I000428',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-27 11:57:04','','0000-00-00 00:00:00'),(1134,0,0,'I',429,'I000429',2526,1,'0000-00-00','51276',0,0,'CAP','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 12:00:45','','0000-00-00 00:00:00'),(1135,0,0,'I',429,'I000429',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 12:00:45','','0000-00-00 00:00:00'),(1136,0,0,'I',429,'I000429',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-27 12:00:45','','0000-00-00 00:00:00'),(1137,0,0,'I',430,'I000430',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 12:24:45','darshan','2025-10-27 12:25:14'),(1138,0,0,'I',430,'I000430',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 12:24:55','darshan','2025-10-27 12:25:14'),(1139,0,0,'I',430,'I000430',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-27 12:24:55','darshan','2025-10-27 12:25:14'),(1140,0,0,'I',430,'I000430',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,0,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-27 12:25:14','','0000-00-00 00:00:00'),(1141,0,0,'I',431,'I000431',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 12:29:24','darshan','2025-10-27 12:32:33'),(1142,0,0,'I',431,'I000431',2526,2,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 12:29:24','darshan','2025-10-27 12:32:33'),(1143,0,0,'I',431,'I000431',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 12:29:24','darshan','2025-10-27 12:32:33'),(1145,0,0,'I',431,'I000431',2526,4,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-27 12:32:33','','0000-00-00 00:00:00'),(1146,0,0,'I',432,'I000432',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-10-27 12:40:30','','0000-00-00 00:00:00'),(1147,0,0,'I',432,'I000432',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 12:40:30','','0000-00-00 00:00:00'),(1148,0,0,'I',432,'I000432',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 12:40:30','','0000-00-00 00:00:00'),(1149,0,0,'I',432,'I000432',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-27 12:40:30','','0000-00-00 00:00:00'),(1150,0,0,'I',433,'I000433',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:02:11','','0000-00-00 00:00:00'),(1151,0,0,'I',433,'I000433',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:02:11','','0000-00-00 00:00:00'),(1152,0,0,'I',434,'I000434',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:11:51','darshan','2025-10-27 13:55:41'),(1153,0,0,'I',434,'I000434',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:11:51','darshan','2025-10-27 13:55:41'),(1154,0,0,'I',435,'I000435',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:15:05','','0000-00-00 00:00:00'),(1155,0,0,'I',435,'I000435',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:15:05','','0000-00-00 00:00:00'),(1156,0,0,'I',436,'I000436',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:21:13','','0000-00-00 00:00:00'),(1157,0,0,'I',436,'I000436',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:21:13','','0000-00-00 00:00:00'),(1158,0,0,'I',437,'I000437',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-27 13:26:12','darshan','2025-10-27 13:26:52'),(1159,0,0,'I',437,'I000437',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:26:12','darshan','2025-10-27 13:26:52'),(1160,0,0,'I',437,'I000437',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:26:12','darshan','2025-10-27 13:26:52'),(1161,0,0,'I',437,'I000437',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-27 13:26:52','','0000-00-00 00:00:00'),(1162,0,0,'I',438,'I000438',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:31:14','','0000-00-00 00:00:00'),(1163,0,0,'I',438,'I000438',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:31:14','','0000-00-00 00:00:00'),(1164,0,0,'I',439,'I000439',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:36:00','darshan','2025-10-27 13:36:50'),(1165,0,0,'I',439,'I000439',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,25,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:36:00','darshan','2025-10-27 13:36:50'),(1166,0,0,'I',439,'I000439',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,25,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:36:00','darshan','2025-10-27 13:36:50'),(1167,0,0,'I',439,'I000439',2526,4,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:36:50','','0000-00-00 00:00:00'),(1168,0,0,'I',439,'I000439',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-27 13:36:50','','0000-00-00 00:00:00'),(1169,0,0,'I',440,'I000440',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:40:32','darshan','2025-10-27 13:40:52'),(1170,0,0,'I',440,'I000440',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:40:32','darshan','2025-10-27 13:40:52'),(1171,0,0,'I',440,'I000440',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:40:52','','0000-00-00 00:00:00'),(1172,0,0,'I',440,'I000440',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-27 13:40:52','','0000-00-00 00:00:00'),(1173,0,0,'I',441,'I000441',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:44:13','','0000-00-00 00:00:00'),(1174,0,0,'I',441,'I000441',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:44:13','','0000-00-00 00:00:00'),(1175,0,0,'I',434,'I000434',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,30,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:55:41','','0000-00-00 00:00:00'),(1176,0,0,'I',434,'I000434',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-27 13:55:41','','0000-00-00 00:00:00'),(1177,0,0,'I',442,'I000442',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:59:34','','0000-00-00 00:00:00'),(1178,0,0,'I',442,'I000442',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 13:59:34','','0000-00-00 00:00:00'),(1179,0,0,'I',443,'I000443',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 14:08:44','','0000-00-00 00:00:00'),(1180,0,0,'I',443,'I000443',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 14:08:44','','0000-00-00 00:00:00'),(1181,0,0,'I',443,'I000443',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 14:08:44','','0000-00-00 00:00:00'),(1182,0,0,'I',443,'I000443',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'341','','P',NULL,NULL,'darshan','2025-10-27 14:08:44','','0000-00-00 00:00:00'),(1183,0,0,'I',443,'I000443',2526,5,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-27 14:08:44','','0000-00-00 00:00:00'),(1184,0,0,'I',444,'I000444',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 14:12:06','darshan','2025-10-27 14:12:25'),(1185,0,0,'I',445,'I000445',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 14:17:57','','0000-00-00 00:00:00'),(1186,0,0,'I',445,'I000445',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 14:17:57','','0000-00-00 00:00:00'),(1187,0,0,'I',446,'I000446',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 14:54:55','','0000-00-00 00:00:00'),(1188,0,0,'I',446,'I000446',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 14:54:55','','0000-00-00 00:00:00'),(1189,0,0,'I',446,'I000446',2526,3,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-10-27 14:54:55','','0000-00-00 00:00:00'),(1190,0,0,'I',447,'I000447',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 14:57:15','darshan','2025-10-27 14:57:38'),(1191,0,0,'I',447,'I000447',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 14:57:15','darshan','2025-10-27 14:57:38'),(1192,0,0,'I',448,'I000448',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-27 17:03:08','','0000-00-00 00:00:00'),(1193,0,0,'I',448,'I000448',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 17:03:08','','0000-00-00 00:00:00'),(1194,0,0,'I',449,'I000449',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 17:22:12','','0000-00-00 00:00:00'),(1195,0,0,'I',449,'I000449',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 17:22:12','','0000-00-00 00:00:00'),(1196,0,0,'I',449,'I000449',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 17:22:12','','0000-00-00 00:00:00'),(1198,0,0,'I',450,'I000450',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 17:32:49','darshan','2025-10-27 17:33:37'),(1200,0,0,'I',450,'I000450',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 17:32:49','darshan','2025-10-27 17:33:37'),(1201,0,0,'I',450,'I000450',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-27 17:32:49','darshan','2025-10-27 17:33:37'),(1205,0,0,'I',451,'I000451',2526,1,'0000-00-00','51215',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 17:36:29','darshan','2025-10-27 17:37:34'),(1206,0,0,'I',451,'I000451',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 17:36:29','darshan','2025-10-27 17:37:34'),(1207,0,0,'I',451,'I000451',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 17:36:29','darshan','2025-10-27 17:37:34'),(1209,0,0,'I',451,'I000451',2526,4,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 17:37:02','darshan','2025-10-27 17:37:34'),(1210,0,0,'I',451,'I000451',2526,5,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 17:37:34','','0000-00-00 00:00:00'),(1211,0,0,'I',452,'I000452',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 17:51:37','','0000-00-00 00:00:00'),(1212,0,0,'I',452,'I000452',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 17:51:37','','0000-00-00 00:00:00'),(1213,0,0,'I',453,'I000453',2526,1,'0000-00-00','51191',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-27 18:16:44','','0000-00-00 00:00:00'),(1214,0,0,'I',453,'I000453',2526,2,'0000-00-00','51215',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 18:16:44','','0000-00-00 00:00:00'),(1215,0,0,'I',453,'I000453',2526,3,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 18:16:44','','0000-00-00 00:00:00'),(1216,0,0,'I',454,'I000454',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 18:25:41','darshan','2025-10-27 18:25:49'),(1217,0,0,'I',454,'I000454',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 18:25:41','darshan','2025-10-27 18:25:49'),(1218,0,0,'I',455,'I000455',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 18:34:16','','0000-00-00 00:00:00'),(1219,0,0,'I',455,'I000455',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 18:34:16','','0000-00-00 00:00:00'),(1220,0,0,'I',455,'I000455',2526,3,'0000-00-00','51194',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 18:34:16','','0000-00-00 00:00:00'),(1221,0,0,'I',456,'I000456',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 18:42:38','darshan','2025-10-27 18:42:54'),(1222,0,0,'I',456,'I000456',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 18:42:38','darshan','2025-10-27 18:42:54'),(1223,0,0,'I',456,'I000456',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 18:42:54','','0000-00-00 00:00:00'),(1224,0,0,'I',457,'I000457',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 18:48:26','darshan','2025-10-27 18:48:56'),(1225,0,0,'I',457,'I000457',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 18:48:56','','0000-00-00 00:00:00'),(1226,0,0,'I',457,'I000457',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 18:48:56','','0000-00-00 00:00:00'),(1227,0,0,'I',458,'I000458',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-10-27 18:53:20','darshan','2025-10-27 18:54:05'),(1228,0,0,'I',458,'I000458',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 18:53:20','darshan','2025-10-27 18:54:05'),(1229,0,0,'I',458,'I000458',2526,3,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 18:53:20','darshan','2025-10-27 18:54:05'),(1230,0,0,'I',458,'I000458',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-27 18:53:20','darshan','2025-10-27 18:54:05'),(1231,0,0,'I',458,'I000458',2526,5,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 18:54:05','','0000-00-00 00:00:00'),(1232,0,0,'I',458,'I000458',2526,6,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-10-27 18:54:05','','0000-00-00 00:00:00'),(1233,0,0,'I',459,'I000459',2526,1,'0000-00-00','51275',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'darshan','2025-10-27 18:59:40','darshan','2025-10-27 19:00:16'),(1234,0,0,'I',459,'I000459',2526,2,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 18:59:40','darshan','2025-10-27 19:00:16'),(1235,0,0,'I',459,'I000459',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 19:00:16','','0000-00-00 00:00:00'),(1236,0,0,'I',459,'I000459',2526,4,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 19:00:16','','0000-00-00 00:00:00'),(1237,0,0,'I',459,'I000459',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-27 19:00:16','','0000-00-00 00:00:00'),(1238,0,0,'I',461,'I000461',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 19:07:56','','0000-00-00 00:00:00'),(1239,0,0,'I',461,'I000461',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 19:07:56','','0000-00-00 00:00:00'),(1240,0,0,'I',461,'I000461',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-27 19:07:56','','0000-00-00 00:00:00'),(1241,0,0,'I',462,'I000462',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 19:20:16','','0000-00-00 00:00:00'),(1242,0,0,'I',462,'I000462',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 19:20:16','','0000-00-00 00:00:00'),(1243,0,0,'I',463,'I000463',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-27 19:30:24','darshan','2025-10-27 19:30:54'),(1244,0,0,'I',463,'I000463',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 19:30:24','darshan','2025-10-27 19:30:54'),(1245,0,0,'I',463,'I000463',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 19:30:24','darshan','2025-10-27 19:30:54'),(1246,0,0,'I',463,'I000463',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 19:30:54','','0000-00-00 00:00:00'),(1247,0,0,'I',464,'I000464',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 19:37:10','','0000-00-00 00:00:00'),(1248,0,0,'I',464,'I000464',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 19:37:10','','0000-00-00 00:00:00'),(1249,0,0,'I',464,'I000464',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-27 19:37:10','','0000-00-00 00:00:00'),(1250,0,0,'I',464,'I000464',2526,4,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-1-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 19:37:10','','0000-00-00 00:00:00'),(1251,0,0,'I',465,'I000465',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 19:45:21','','0000-00-00 00:00:00'),(1252,0,0,'I',465,'I000465',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 19:45:21','','0000-00-00 00:00:00'),(1253,0,0,'I',466,'I000466',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 19:48:03','','0000-00-00 00:00:00'),(1254,0,0,'I',466,'I000466',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 19:48:03','','0000-00-00 00:00:00'),(1255,0,0,'I',467,'I000467',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-10-27 19:59:08','','0000-00-00 00:00:00'),(1256,0,0,'I',460,'I000460',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 20:11:29','','0000-00-00 00:00:00'),(1257,0,0,'I',460,'I000460',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 20:11:29','','0000-00-00 00:00:00'),(1258,0,0,'I',468,'I000468',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 20:25:35','darshan','2025-10-27 20:26:02'),(1259,0,0,'I',468,'I000468',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 20:25:35','darshan','2025-10-27 20:26:02'),(1261,0,0,'I',469,'I000469',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 20:40:10','darshan','2025-10-27 20:40:21'),(1262,0,0,'I',469,'I000469',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 20:40:10','darshan','2025-10-27 20:40:21'),(1263,0,0,'I',469,'I000469',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-27 20:40:10','darshan','2025-10-27 20:40:21'),(1264,0,0,'I',469,'I000469',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-27 20:40:21','','0000-00-00 00:00:00'),(1265,0,0,'I',470,'I000470',2526,0,'0000-00-00','51264',0,0,'CAP','','','','INF',0,10,0,0,0,0,'1-0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(1266,0,0,'I',470,'I000470',2526,0,'0000-00-00','51239',0,0,'TAB','','','','INF',0,5,0,0,0,0,'1-0-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(1267,0,0,'I',471,'I000471',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,150,0,0,0,0,'1-0-1','','Dy',75,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 11:10:27','','0000-00-00 00:00:00'),(1268,0,0,'I',471,'I000471',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 11:10:27','','0000-00-00 00:00:00'),(1269,0,0,'I',473,'I000473',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-28 11:27:05','','0000-00-00 00:00:00'),(1270,0,0,'I',473,'I000473',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 11:27:05','','0000-00-00 00:00:00'),(1271,0,0,'I',473,'I000473',2526,3,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 11:27:05','','0000-00-00 00:00:00'),(1272,0,0,'I',474,'I000474',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 11:38:37','darshan','2025-10-28 11:39:15'),(1273,0,0,'I',474,'I000474',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-28 11:38:37','darshan','2025-10-28 11:39:15'),(1274,0,0,'I',475,'I000475',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 11:43:33','','0000-00-00 00:00:00'),(1278,0,0,'I',477,'I000477',2526,1,'0000-00-00','51190',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',90,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-28 11:57:03','','0000-00-00 00:00:00'),(1279,0,0,'I',477,'I000477',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 11:57:03','','0000-00-00 00:00:00'),(1280,0,0,'I',479,'I000479',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 12:03:06','darshan','2025-10-28 12:03:20'),(1281,0,0,'I',479,'I000479',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 12:03:06','darshan','2025-10-28 12:03:20'),(1282,0,0,'I',479,'I000479',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-28 12:03:06','darshan','2025-10-28 12:03:20'),(1283,0,0,'I',479,'I000479',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-28 12:03:20','','0000-00-00 00:00:00'),(1284,0,0,'I',478,'I000478',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 12:03:43','','0000-00-00 00:00:00'),(1285,0,0,'I',478,'I000478',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-28 12:03:43','','0000-00-00 00:00:00'),(1286,0,0,'I',478,'I000478',2526,3,'0000-00-00','51300',0,0,'TAB','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'drarchit','2025-10-28 12:03:43','','0000-00-00 00:00:00'),(1287,0,0,'I',480,'I000480',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 12:08:51','','0000-00-00 00:00:00'),(1288,0,0,'I',480,'I000480',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 12:08:51','','0000-00-00 00:00:00'),(1289,0,0,'I',480,'I000480',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 12:08:51','','0000-00-00 00:00:00'),(1290,0,0,'I',480,'I000480',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-28 12:08:51','','0000-00-00 00:00:00'),(1291,0,0,'I',481,'I000481',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 12:13:59','','0000-00-00 00:00:00'),(1292,0,0,'I',482,'I000482',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 12:14:20','','0000-00-00 00:00:00'),(1293,0,0,'I',483,'I000483',2526,1,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 12:19:19','drarchit','2025-10-28 12:21:08'),(1294,0,0,'I',483,'I000483',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-28 12:19:53','drarchit','2025-10-28 12:21:08'),(1295,0,0,'I',483,'I000483',2526,3,'0000-00-00','51242',0,0,'CAP','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 12:19:53','drarchit','2025-10-28 12:21:08'),(1296,0,0,'I',483,'I000483',2526,4,'0000-00-00','51301',0,0,'TAB','','','','',0,90,0,0,0,0,'0.5-0-0.5','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 12:21:08','','0000-00-00 00:00:00'),(1297,0,0,'I',483,'I000483',2526,5,'0000-00-00','51297',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 12:21:08','','0000-00-00 00:00:00'),(1298,0,0,'I',484,'I000484',2526,1,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-28 12:26:24','drarchit','2025-10-28 12:28:16'),(1299,0,0,'I',484,'I000484',2526,2,'0000-00-00','51303',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 12:26:24','drarchit','2025-10-28 12:28:16'),(1300,0,0,'I',484,'I000484',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 12:27:13','drarchit','2025-10-28 12:28:16'),(1301,0,0,'I',484,'I000484',2526,4,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 12:27:13','drarchit','2025-10-28 12:28:16'),(1303,0,0,'I',484,'I000484',2526,5,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-10-28 12:27:46','drarchit','2025-10-28 12:28:16'),(1304,0,0,'I',484,'I000484',2526,6,'0000-00-00','51264',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 12:28:16','','0000-00-00 00:00:00'),(1305,0,0,'I',485,'I000485',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 12:40:50','','0000-00-00 00:00:00'),(1306,0,0,'I',486,'I000486',2526,1,'0000-00-00','51305',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 12:42:13','drarchit','2025-10-28 12:42:55'),(1307,0,0,'I',486,'I000486',2526,2,'0000-00-00','51306',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 12:42:55','','0000-00-00 00:00:00'),(1308,0,0,'I',486,'I000486',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-28 12:42:55','','0000-00-00 00:00:00'),(1309,0,0,'I',486,'I000486',2526,4,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 12:42:55','','0000-00-00 00:00:00'),(1310,0,0,'I',486,'I000486',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 12:42:55','','0000-00-00 00:00:00'),(1311,0,0,'I',487,'I000487',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 12:45:06','','0000-00-00 00:00:00'),(1312,0,0,'I',489,'I000489',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 12:50:34','darshan','2025-10-28 12:50:42'),(1313,0,0,'I',489,'I000489',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 12:50:34','darshan','2025-10-28 12:50:42'),(1314,0,0,'I',488,'I000488',2526,1,'0000-00-00','51307',0,0,'INJ','','','','',0,1,0,0,0,0,'','28 U - 18 ','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-10-28 12:51:42','drarchit','2025-10-28 12:53:23'),(1315,0,0,'I',488,'I000488',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-28 12:53:00','drarchit','2025-10-28 12:53:23'),(1316,0,0,'I',488,'I000488',2526,3,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-10-28 12:53:00','drarchit','2025-10-28 12:53:23'),(1317,0,0,'I',488,'I000488',2526,4,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-28 12:53:00','drarchit','2025-10-28 12:53:23'),(1318,0,0,'I',488,'I000488',2526,5,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 12:53:15','drarchit','2025-10-28 12:53:23'),(1319,0,0,'I',490,'I000490',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 13:10:43','','0000-00-00 00:00:00'),(1320,0,0,'I',490,'I000490',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 13:10:43','','0000-00-00 00:00:00'),(1321,0,0,'I',491,'I000491',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 13:11:48','','0000-00-00 00:00:00'),(1322,0,0,'I',492,'I000492',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 13:15:23','','0000-00-00 00:00:00'),(1323,0,0,'I',493,'I000493',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 13:28:27','','0000-00-00 00:00:00'),(1324,0,0,'I',493,'I000493',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 13:28:27','','0000-00-00 00:00:00'),(1325,0,0,'I',493,'I000493',2526,3,'0000-00-00','51294',0,0,'TAB','','','','',0,5,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-28 13:28:27','','0000-00-00 00:00:00'),(1326,0,0,'I',493,'I000493',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-28 13:28:27','','0000-00-00 00:00:00'),(1327,0,0,'I',494,'I000494',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 13:32:45','','0000-00-00 00:00:00'),(1328,0,0,'I',494,'I000494',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 13:32:45','','0000-00-00 00:00:00'),(1329,0,0,'I',495,'I000495',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 14:04:32','','0000-00-00 00:00:00'),(1330,0,0,'I',495,'I000495',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 14:04:32','','0000-00-00 00:00:00'),(1331,0,0,'I',496,'I000496',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-28 14:09:08','','0000-00-00 00:00:00'),(1332,0,0,'I',496,'I000496',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 14:09:08','','0000-00-00 00:00:00'),(1333,0,0,'I',496,'I000496',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 14:09:08','','0000-00-00 00:00:00'),(1334,0,0,'I',496,'I000496',2526,4,'0000-00-00','51233',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-28 14:09:08','','0000-00-00 00:00:00'),(1335,0,0,'I',496,'I000496',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-28 14:09:08','','0000-00-00 00:00:00'),(1336,0,0,'I',497,'I000497',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 14:13:31','darshan','2025-10-28 14:13:38'),(1337,0,0,'I',497,'I000497',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 14:13:31','darshan','2025-10-28 14:13:38'),(1338,0,0,'I',497,'I000497',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,0,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-28 14:13:31','darshan','2025-10-28 14:13:38'),(1339,0,0,'I',498,'I000498',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 14:21:17','darshan','2025-10-28 14:21:27'),(1340,0,0,'I',498,'I000498',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 14:21:17','darshan','2025-10-28 14:21:27'),(1341,0,0,'I',498,'I000498',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-28 14:21:17','darshan','2025-10-28 14:21:27'),(1342,0,0,'I',499,'I000499',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 14:30:04','','0000-00-00 00:00:00'),(1343,0,0,'I',499,'I000499',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 14:30:04','','0000-00-00 00:00:00'),(1344,0,0,'I',499,'I000499',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-28 14:30:04','','0000-00-00 00:00:00'),(1345,0,0,'I',500,'I000500',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 14:46:55','','0000-00-00 00:00:00'),(1346,0,0,'I',500,'I000500',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 14:46:55','','0000-00-00 00:00:00'),(1347,0,0,'I',500,'I000500',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 14:46:55','','0000-00-00 00:00:00'),(1348,0,0,'I',500,'I000500',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-28 14:46:55','','0000-00-00 00:00:00'),(1349,0,0,'I',501,'I000501',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 17:26:24','','0000-00-00 00:00:00'),(1350,0,0,'I',501,'I000501',2526,2,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-28 17:26:24','','0000-00-00 00:00:00'),(1351,0,0,'I',502,'I000502',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 17:33:25','','0000-00-00 00:00:00'),(1352,0,0,'I',503,'I000503',2526,1,'0000-00-00','51283',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 17:44:24','','0000-00-00 00:00:00'),(1353,0,0,'I',503,'I000503',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 17:44:24','','0000-00-00 00:00:00'),(1354,0,0,'I',503,'I000503',2526,3,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 17:44:24','','0000-00-00 00:00:00'),(1355,0,0,'I',504,'I000504',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 17:54:24','','0000-00-00 00:00:00'),(1356,0,0,'I',504,'I000504',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 17:54:24','','0000-00-00 00:00:00'),(1357,0,0,'I',504,'I000504',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 17:54:24','','0000-00-00 00:00:00'),(1358,0,0,'I',507,'I000507',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:07:01','darshan','2025-10-28 18:07:14'),(1359,0,0,'I',507,'I000507',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:07:01','darshan','2025-10-28 18:07:14'),(1360,0,0,'I',507,'I000507',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:07:01','darshan','2025-10-28 18:07:14'),(1361,0,0,'I',507,'I000507',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-28 18:07:01','darshan','2025-10-28 18:07:14'),(1362,0,0,'I',507,'I000507',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-28 18:07:14','','0000-00-00 00:00:00'),(1363,0,0,'I',508,'I000508',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:10:11','','0000-00-00 00:00:00'),(1364,0,0,'I',509,'I000509',2526,1,'0000-00-00','51220',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 18:10:21','drarchit','2025-10-28 18:11:33'),(1365,0,0,'I',509,'I000509',2526,2,'0000-00-00','51249',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 18:10:21','drarchit','2025-10-28 18:11:33'),(1366,0,0,'I',509,'I000509',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-28 18:10:21','drarchit','2025-10-28 18:11:33'),(1367,0,0,'I',509,'I000509',2526,4,'0000-00-00','51318',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 18:11:33','','0000-00-00 00:00:00'),(1368,0,0,'I',510,'I000510',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:14:58','','0000-00-00 00:00:00'),(1369,0,0,'I',510,'I000510',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:14:58','','0000-00-00 00:00:00'),(1370,0,0,'I',510,'I000510',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:14:58','','0000-00-00 00:00:00'),(1371,0,0,'I',510,'I000510',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-28 18:14:58','','0000-00-00 00:00:00'),(1372,0,0,'I',476,'I000476',2526,1,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-28 18:15:18','drarchit','2025-10-28 18:19:13'),(1375,0,0,'I',511,'I000511',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:18:09','darshan','2025-10-28 18:19:03'),(1376,0,0,'I',511,'I000511',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:18:09','darshan','2025-10-28 18:19:03'),(1377,0,0,'I',511,'I000511',2526,3,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-10-28 18:18:09','darshan','2025-10-28 18:19:03'),(1378,0,0,'I',476,'I000476',2526,2,'0000-00-00','51321',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 18:18:14','drarchit','2025-10-28 18:19:13'),(1379,0,0,'I',476,'I000476',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 18:18:14','drarchit','2025-10-28 18:19:13'),(1380,0,0,'I',476,'I000476',2526,4,'0000-00-00','51262',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 18:18:14','drarchit','2025-10-28 18:19:13'),(1381,0,0,'I',511,'I000511',2526,4,'0000-00-00','51322',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:19:03','','0000-00-00 00:00:00'),(1382,0,0,'I',476,'I000476',2526,5,'0000-00-00','51323',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 18:19:13','','0000-00-00 00:00:00'),(1383,0,0,'I',512,'I000512',2526,1,'0000-00-00','51289',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:23:24','','0000-00-00 00:00:00'),(1384,0,0,'I',512,'I000512',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:23:24','','0000-00-00 00:00:00'),(1385,0,0,'I',512,'I000512',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:23:24','','0000-00-00 00:00:00'),(1386,0,0,'I',513,'I000513',2526,1,'0000-00-00','51220',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 18:29:18','drarchit','2025-10-28 18:30:32'),(1387,0,0,'I',513,'I000513',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-28 18:29:18','drarchit','2025-10-28 18:30:32'),(1388,0,0,'I',513,'I000513',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 18:30:32','','0000-00-00 00:00:00'),(1389,0,0,'I',513,'I000513',2526,4,'0000-00-00','51318',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 18:30:32','','0000-00-00 00:00:00'),(1390,0,0,'I',514,'I000514',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:34:03','','0000-00-00 00:00:00'),(1391,0,0,'I',514,'I000514',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:34:03','','0000-00-00 00:00:00'),(1392,0,0,'I',515,'I000515',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:42:09','darshan','2025-10-28 18:42:19'),(1393,0,0,'I',515,'I000515',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:42:19','','0000-00-00 00:00:00'),(1394,0,0,'I',516,'I000516',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-28 18:46:52','drarchit','2025-10-28 18:49:02'),(1396,0,0,'I',516,'I000516',2526,2,'0000-00-00','51286',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 18:47:14','drarchit','2025-10-28 18:49:02'),(1397,0,0,'I',516,'I000516',2526,3,'0000-00-00','51258',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 18:47:59','drarchit','2025-10-28 18:49:02'),(1398,0,0,'I',516,'I000516',2526,4,'0000-00-00','51326',0,0,'TAB','','','','',0,8,0,0,0,0,'0-0-0.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 18:48:40','drarchit','2025-10-28 18:49:02'),(1399,0,0,'I',516,'I000516',2526,5,'0000-00-00','51325',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 18:49:02','','0000-00-00 00:00:00'),(1400,0,0,'I',517,'I000517',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:50:43','','0000-00-00 00:00:00'),(1401,0,0,'I',517,'I000517',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 18:50:43','','0000-00-00 00:00:00'),(1403,0,0,'I',518,'I000518',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 18:52:54','drarchit','2025-10-28 18:54:03'),(1404,0,0,'I',518,'I000518',2526,2,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 18:52:54','drarchit','2025-10-28 18:54:03'),(1405,0,0,'I',518,'I000518',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-28 18:53:40','drarchit','2025-10-28 18:54:03'),(1406,0,0,'I',518,'I000518',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-10-28 18:54:03','','0000-00-00 00:00:00'),(1407,0,0,'I',518,'I000518',2526,5,'0000-00-00','51269',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 18:54:03','','0000-00-00 00:00:00'),(1408,0,0,'I',519,'I000519',2526,1,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-28 18:58:37','drarchit','2025-10-28 19:01:14'),(1409,0,0,'I',519,'I000519',2526,2,'0000-00-00','51328',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:01:14','','0000-00-00 00:00:00'),(1410,0,0,'I',520,'I000520',2526,1,'0000-00-00','51328',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:04:47','drarchit','2025-10-28 19:08:01'),(1411,0,0,'I',521,'I000521',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 19:06:21','','0000-00-00 00:00:00'),(1412,0,0,'I',520,'I000520',2526,2,'0000-00-00','51329',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-28 19:06:21','drarchit','2025-10-28 19:08:01'),(1413,0,0,'I',520,'I000520',2526,3,'0000-00-00','51330',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-28 19:07:24','drarchit','2025-10-28 19:08:01'),(1414,0,0,'I',520,'I000520',2526,4,'0000-00-00','51331',0,0,'CAP','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:08:01','','0000-00-00 00:00:00'),(1415,0,0,'I',522,'I000522',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:13:12','drarchit','2025-10-28 19:13:49'),(1416,0,0,'I',522,'I000522',2526,2,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:13:12','drarchit','2025-10-28 19:13:49'),(1417,0,0,'I',522,'I000522',2526,3,'0000-00-00','51313',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:13:49','','0000-00-00 00:00:00'),(1418,0,0,'I',523,'I000523',2526,1,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:19:37','drarchit','2025-10-28 19:21:02'),(1419,0,0,'I',524,'I000524',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-10-28 19:19:41','','0000-00-00 00:00:00'),(1420,0,0,'I',523,'I000523',2526,2,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-10-28 19:20:01','drarchit','2025-10-28 19:21:02'),(1421,0,0,'I',523,'I000523',2526,3,'0000-00-00','51332',0,0,'CAP','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:21:02','','0000-00-00 00:00:00'),(1422,0,0,'I',523,'I000523',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-28 19:21:02','','0000-00-00 00:00:00'),(1423,0,0,'I',523,'I000523',2526,5,'0000-00-00','51230',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:21:02','','0000-00-00 00:00:00'),(1424,0,0,'I',525,'I000525',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:27:54','','0000-00-00 00:00:00'),(1425,0,0,'I',525,'I000525',2526,2,'0000-00-00','51334',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:27:54','','0000-00-00 00:00:00'),(1426,0,0,'I',526,'I000526',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:35:56','drarchit','2025-10-28 19:51:22'),(1428,0,0,'I',527,'I000527',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 19:36:46','darshan','2025-10-28 19:37:06'),(1429,0,0,'I',527,'I000527',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-28 19:36:46','darshan','2025-10-28 19:37:06'),(1430,0,0,'I',527,'I000527',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 19:36:46','darshan','2025-10-28 19:37:06'),(1431,0,0,'I',526,'I000526',2526,2,'0000-00-00','51318',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:36:55','drarchit','2025-10-28 19:51:22'),(1433,0,0,'I',526,'I000526',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-28 19:36:55','drarchit','2025-10-28 19:51:22'),(1434,0,0,'I',526,'I000526',2526,5,'0000-00-00','51244',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:37:55','drarchit','2025-10-28 19:51:22'),(1435,0,0,'I',528,'I000528',2526,1,'0000-00-00','51279',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:39:39','','0000-00-00 00:00:00'),(1436,0,0,'I',529,'I000529',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 19:40:12','darshan','2025-10-28 19:40:30'),(1437,0,0,'I',529,'I000529',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 19:40:30','','0000-00-00 00:00:00'),(1438,0,0,'I',529,'I000529',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-28 19:40:30','','0000-00-00 00:00:00'),(1439,0,0,'I',530,'I000530',2526,1,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-28 19:44:20','drarchit','2025-10-28 19:48:21'),(1440,0,0,'I',530,'I000530',2526,2,'0000-00-00','51242',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:44:20','drarchit','2025-10-28 19:48:21'),(1441,0,0,'I',530,'I000530',2526,3,'0000-00-00','51336',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:47:13','drarchit','2025-10-28 19:48:21'),(1442,0,0,'I',530,'I000530',2526,4,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-28 19:47:13','drarchit','2025-10-28 19:48:21'),(1443,0,0,'I',530,'I000530',2526,5,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:47:13','drarchit','2025-10-28 19:48:21'),(1444,0,0,'I',530,'I000530',2526,6,'0000-00-00','51337',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:47:43','drarchit','2025-10-28 19:48:21'),(1445,0,0,'I',530,'I000530',2526,7,'0000-00-00','51338',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:48:21','','0000-00-00 00:00:00'),(1446,0,0,'I',531,'I000531',2526,1,'0000-00-00','51329',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-28 19:56:12','','0000-00-00 00:00:00'),(1447,0,0,'I',531,'I000531',2526,2,'0000-00-00','51248',0,0,'CAP','','','','',0,12,0,0,0,0,'1-0-0','','Wk',12,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:56:12','','0000-00-00 00:00:00'),(1448,0,0,'I',531,'I000531',2526,3,'0000-00-00','51286',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:56:12','','0000-00-00 00:00:00'),(1449,0,0,'I',531,'I000531',2526,4,'0000-00-00','51219',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-10-28 19:56:12','','0000-00-00 00:00:00'),(1450,0,0,'I',531,'I000531',2526,5,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-28 19:56:12','','0000-00-00 00:00:00'),(1451,0,0,'I',532,'I000532',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 10:59:00','','0000-00-00 00:00:00'),(1452,0,0,'I',533,'I000533',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 11:04:42','','0000-00-00 00:00:00'),(1453,0,0,'I',533,'I000533',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 11:04:42','','0000-00-00 00:00:00'),(1454,0,0,'I',534,'I000534',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 11:14:17','','0000-00-00 00:00:00'),(1455,0,0,'I',534,'I000534',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 11:14:17','','0000-00-00 00:00:00'),(1456,0,0,'I',534,'I000534',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 11:14:17','','0000-00-00 00:00:00'),(1457,0,0,'I',535,'I000535',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 11:18:46','darshan','2025-10-29 11:19:10'),(1458,0,0,'I',535,'I000535',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-29 11:18:46','darshan','2025-10-29 11:19:10'),(1459,0,0,'I',536,'I000536',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-10-29 11:27:54','darshan','2025-10-29 11:28:42'),(1462,0,0,'I',536,'I000536',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 11:27:54','darshan','2025-10-29 11:28:42'),(1463,0,0,'I',536,'I000536',2526,3,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 11:28:42','','0000-00-00 00:00:00'),(1464,0,0,'I',537,'I000537',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 11:33:04','','0000-00-00 00:00:00'),(1465,0,0,'I',537,'I000537',2526,2,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 11:33:04','','0000-00-00 00:00:00'),(1466,0,0,'I',537,'I000537',2526,3,'0000-00-00','51301',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 11:33:04','','0000-00-00 00:00:00'),(1467,0,0,'I',537,'I000537',2526,4,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 11:33:04','','0000-00-00 00:00:00'),(1468,0,0,'I',538,'I000538',2526,1,'0000-00-00','51289',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 11:36:56','','0000-00-00 00:00:00'),(1469,0,0,'I',538,'I000538',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 11:36:56','','0000-00-00 00:00:00'),(1470,0,0,'I',539,'I000539',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-29 11:39:26','drarchit','2025-10-29 11:41:41'),(1471,0,0,'I',539,'I000539',2526,2,'0000-00-00','51214',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-10-29 11:39:26','drarchit','2025-10-29 11:41:41'),(1472,0,0,'I',539,'I000539',2526,3,'0000-00-00','51240',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 11:39:26','drarchit','2025-10-29 11:41:41'),(1473,0,0,'I',539,'I000539',2526,4,'0000-00-00','51257',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 11:39:26','drarchit','2025-10-29 11:41:41'),(1474,0,0,'I',539,'I000539',2526,5,'0000-00-00','51339',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 11:40:29','drarchit','2025-10-29 11:41:41'),(1475,0,0,'I',539,'I000539',2526,6,'0000-00-00','51340',0,0,'TAB','','','','',0,30,0,0,0,0,'0.5-0-0.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 11:41:41','','0000-00-00 00:00:00'),(1476,0,0,'I',539,'I000539',2526,7,'0000-00-00','51254',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 11:41:41','','0000-00-00 00:00:00'),(1477,0,0,'I',539,'I000539',2526,8,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 11:41:41','','0000-00-00 00:00:00'),(1478,0,0,'I',540,'I000540',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-29 11:44:00','','0000-00-00 00:00:00'),(1479,0,0,'I',540,'I000540',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 11:44:00','','0000-00-00 00:00:00'),(1480,0,0,'I',540,'I000540',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 11:44:00','','0000-00-00 00:00:00'),(1481,0,0,'I',540,'I000540',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-29 11:44:00','','0000-00-00 00:00:00'),(1482,0,0,'I',541,'I000541',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 11:53:51','','0000-00-00 00:00:00'),(1483,0,0,'I',542,'I000542',2526,1,'0000-00-00','51235',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 12:00:17','drarchit','2025-10-29 12:01:49'),(1484,0,0,'I',542,'I000542',2526,2,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 12:00:17','drarchit','2025-10-29 12:01:49'),(1486,0,0,'I',542,'I000542',2526,3,'0000-00-00','51341',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:01:03','drarchit','2025-10-29 12:01:49'),(1487,0,0,'I',542,'I000542',2526,4,'0000-00-00','51342',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:01:49','','0000-00-00 00:00:00'),(1488,0,0,'I',543,'I000543',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 12:03:03','darshan','2025-10-29 12:03:56'),(1489,0,0,'I',543,'I000543',2526,2,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 12:03:12','darshan','2025-10-29 12:03:56'),(1490,0,0,'I',543,'I000543',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',120,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-29 12:03:56','','0000-00-00 00:00:00'),(1491,0,0,'I',543,'I000543',2526,4,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 12:03:56','','0000-00-00 00:00:00'),(1492,0,0,'I',544,'I000544',2526,1,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:09:34','drarchit','2025-10-29 12:09:48'),(1493,0,0,'I',544,'I000544',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 12:09:34','drarchit','2025-10-29 12:09:48'),(1494,0,0,'I',544,'I000544',2526,3,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:09:34','drarchit','2025-10-29 12:09:48'),(1495,0,0,'I',545,'I000545',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 12:09:38','','0000-00-00 00:00:00'),(1496,0,0,'I',545,'I000545',2526,2,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-29 12:09:38','','0000-00-00 00:00:00'),(1497,0,0,'I',545,'I000545',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 12:09:38','','0000-00-00 00:00:00'),(1498,0,0,'I',544,'I000544',2526,4,'0000-00-00','51279',0,0,'TAB','','','','',0,31,0,0,0,0,'0-0-1','','Dy',31,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:09:48','','0000-00-00 00:00:00'),(1499,0,0,'I',546,'I000546',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-1','','Dy',0,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-10-29 12:11:52','','0000-00-00 00:00:00'),(1500,0,0,'I',547,'I000547',2526,1,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:16:13','drarchit','2025-10-29 12:16:51'),(1501,0,0,'I',547,'I000547',2526,2,'0000-00-00','51269',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:16:13','drarchit','2025-10-29 12:16:51'),(1502,0,0,'I',547,'I000547',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 12:16:13','drarchit','2025-10-29 12:16:51'),(1503,0,0,'I',547,'I000547',2526,4,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:16:13','drarchit','2025-10-29 12:16:51'),(1504,0,0,'I',547,'I000547',2526,5,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:16:51','','0000-00-00 00:00:00'),(1505,0,0,'I',548,'I000548',2526,1,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-10-29 12:27:24','','0000-00-00 00:00:00'),(1506,0,0,'I',548,'I000548',2526,2,'0000-00-00','51344',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-10-29 12:27:24','','0000-00-00 00:00:00'),(1507,0,0,'I',548,'I000548',2526,3,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-29 12:27:24','','0000-00-00 00:00:00'),(1508,0,0,'I',549,'I000549',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:31:00','drarchit','2025-10-29 12:31:22'),(1509,0,0,'I',549,'I000549',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:31:00','drarchit','2025-10-29 12:31:22'),(1510,0,0,'I',549,'I000549',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 12:31:00','drarchit','2025-10-29 12:31:22'),(1511,0,0,'I',549,'I000549',2526,4,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:31:00','drarchit','2025-10-29 12:31:22'),(1512,0,0,'I',549,'I000549',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,2,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-10-29 12:31:00','drarchit','2025-10-29 12:31:22'),(1513,0,0,'I',549,'I000549',2526,6,'0000-00-00','51279',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:31:00','drarchit','2025-10-29 12:31:22'),(1514,0,0,'I',549,'I000549',2526,7,'0000-00-00','51297',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:31:17','drarchit','2025-10-29 12:31:22'),(1515,0,0,'I',550,'I000550',2526,1,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:40:28','drarchit','2025-10-29 12:42:26'),(1516,0,0,'I',551,'I000551',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 12:40:46','','0000-00-00 00:00:00'),(1517,0,0,'I',550,'I000550',2526,3,'0000-00-00','51348',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:41:23','drarchit','2025-10-29 12:42:26'),(1518,0,0,'I',550,'I000550',2526,2,'0000-00-00','51346',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:41:23','drarchit','2025-10-29 12:42:26'),(1519,0,0,'I',550,'I000550',2526,4,'0000-00-00','51347',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-10-29 12:42:26','','0000-00-00 00:00:00'),(1520,0,0,'I',550,'I000550',2526,5,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-10-29 12:42:26','','0000-00-00 00:00:00'),(1521,0,0,'I',550,'I000550',2526,6,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-29 12:42:26','','0000-00-00 00:00:00'),(1522,0,0,'I',550,'I000550',2526,7,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:42:26','','0000-00-00 00:00:00'),(1523,0,0,'I',553,'I000553',2526,1,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:45:35','','0000-00-00 00:00:00'),(1524,0,0,'I',553,'I000553',2526,2,'0000-00-00','51247',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:45:35','','0000-00-00 00:00:00'),(1525,0,0,'I',553,'I000553',2526,3,'0000-00-00','51303',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:45:35','','0000-00-00 00:00:00'),(1526,0,0,'I',553,'I000553',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 12:45:35','','0000-00-00 00:00:00'),(1527,0,0,'I',553,'I000553',2526,5,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:45:35','','0000-00-00 00:00:00'),(1528,0,0,'I',553,'I000553',2526,6,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-10-29 12:45:35','','0000-00-00 00:00:00'),(1529,0,0,'I',552,'I000552',2526,1,'0000-00-00','51349',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-0','','Dy',0,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-10-29 12:46:20','drjayant','2025-10-29 12:46:56'),(1530,0,0,'I',552,'I000552',2526,2,'0000-00-00','51350',0,0,'TAB','','','','',0,0,0,0,0,0,'0-0-1','','Dy',0,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-10-29 12:46:56','','0000-00-00 00:00:00'),(1531,0,0,'I',554,'I000554',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 12:50:26','darshan','2025-10-29 12:51:20'),(1532,0,0,'I',554,'I000554',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 12:50:56','darshan','2025-10-29 12:51:20'),(1533,0,0,'I',554,'I000554',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 12:50:56','darshan','2025-10-29 12:51:20'),(1534,0,0,'I',554,'I000554',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-29 12:50:56','darshan','2025-10-29 12:51:20'),(1535,0,0,'I',555,'I000555',2526,1,'0000-00-00','51305',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:51:36','','0000-00-00 00:00:00'),(1536,0,0,'I',555,'I000555',2526,2,'0000-00-00','51306',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:51:36','','0000-00-00 00:00:00'),(1537,0,0,'I',555,'I000555',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 12:51:36','','0000-00-00 00:00:00'),(1538,0,0,'I',556,'I000556',2526,1,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:55:01','drarchit','2025-10-29 12:56:17'),(1539,0,0,'I',556,'I000556',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:55:01','drarchit','2025-10-29 12:56:17'),(1540,0,0,'I',556,'I000556',2526,3,'0000-00-00','51247',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:55:01','drarchit','2025-10-29 12:56:17'),(1542,0,0,'I',556,'I000556',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-10-29 12:55:01','drarchit','2025-10-29 12:56:17'),(1543,0,0,'I',557,'I000557',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 12:55:03','darshan','2025-10-29 12:55:25'),(1544,0,0,'I',556,'I000556',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 12:56:17','','0000-00-00 00:00:00'),(1545,0,0,'I',556,'I000556',2526,6,'0000-00-00','51217',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:56:17','','0000-00-00 00:00:00'),(1546,0,0,'I',556,'I000556',2526,7,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:56:17','','0000-00-00 00:00:00'),(1547,0,0,'I',556,'I000556',2526,8,'0000-00-00','51301',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 12:56:17','','0000-00-00 00:00:00'),(1548,0,0,'I',556,'I000556',2526,9,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 12:56:17','','0000-00-00 00:00:00'),(1550,0,0,'I',559,'I000559',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 13:01:36','darshan','2025-10-29 13:01:57'),(1551,0,0,'I',559,'I000559',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 13:01:57','','0000-00-00 00:00:00'),(1552,0,0,'I',558,'I000558',2526,1,'0000-00-00','51351',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 13:03:21','drarchit','2025-10-29 13:04:37'),(1553,0,0,'I',558,'I000558',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 13:03:21','drarchit','2025-10-29 13:04:37'),(1554,0,0,'I',558,'I000558',2526,3,'0000-00-00','51348',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 13:03:21','drarchit','2025-10-29 13:04:37'),(1555,0,0,'I',558,'I000558',2526,4,'0000-00-00','51352',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 13:04:00','drarchit','2025-10-29 13:04:37'),(1556,0,0,'I',558,'I000558',2526,5,'0000-00-00','51353',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 13:04:37','','0000-00-00 00:00:00'),(1557,0,0,'I',560,'I000560',2526,1,'0000-00-00','51329',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-10-29 13:11:18','drarchit','2025-10-29 13:11:50'),(1558,0,0,'I',560,'I000560',2526,2,'0000-00-00','51330',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 13:11:18','drarchit','2025-10-29 13:11:50'),(1559,0,0,'I',560,'I000560',2526,3,'0000-00-00','51354',0,0,'CAP','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 13:11:50','','0000-00-00 00:00:00'),(1560,0,0,'I',561,'I000561',2526,1,'0000-00-00','51356',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 13:18:37','drarchit','2025-10-29 13:21:09'),(1561,0,0,'I',561,'I000561',2526,2,'0000-00-00','51357',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 13:20:31','drarchit','2025-10-29 13:21:09'),(1562,0,0,'I',561,'I000561',2526,3,'0000-00-00','51358',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 13:20:31','drarchit','2025-10-29 13:21:09'),(1563,0,0,'I',561,'I000561',2526,4,'0000-00-00','51359',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 13:21:04','drarchit','2025-10-29 13:21:09'),(1564,0,0,'I',562,'I000562',2526,1,'0000-00-00','51259',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 13:32:51','drarchit','2025-10-29 13:33:40'),(1565,0,0,'I',562,'I000562',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 13:32:51','drarchit','2025-10-29 13:33:40'),(1566,0,0,'I',562,'I000562',2526,3,'0000-00-00','51355',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 13:32:51','drarchit','2025-10-29 13:33:40'),(1567,0,0,'I',562,'I000562',2526,4,'0000-00-00','51360',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 13:33:40','','0000-00-00 00:00:00'),(1568,0,0,'I',563,'I000563',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 13:34:59','','0000-00-00 00:00:00'),(1569,0,0,'I',564,'I000564',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 13:46:13','','0000-00-00 00:00:00'),(1570,0,0,'I',564,'I000564',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 13:46:13','','0000-00-00 00:00:00'),(1571,0,0,'I',564,'I000564',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 13:46:13','','0000-00-00 00:00:00'),(1572,0,0,'I',564,'I000564',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-29 13:46:13','','0000-00-00 00:00:00'),(1573,0,0,'I',565,'I000565',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 13:56:29','','0000-00-00 00:00:00'),(1574,0,0,'I',565,'I000565',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 13:56:29','','0000-00-00 00:00:00'),(1575,0,0,'I',565,'I000565',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 13:56:29','','0000-00-00 00:00:00'),(1576,0,0,'I',565,'I000565',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-29 13:56:29','','0000-00-00 00:00:00'),(1577,0,0,'I',566,'I000566',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 14:11:43','','0000-00-00 00:00:00'),(1578,0,0,'I',566,'I000566',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 14:11:43','','0000-00-00 00:00:00'),(1579,0,0,'I',566,'I000566',2526,3,'0000-00-00','51224',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 14:11:43','','0000-00-00 00:00:00'),(1580,0,0,'I',566,'I000566',2526,4,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-29 14:11:43','','0000-00-00 00:00:00'),(1581,0,0,'I',567,'I000567',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 14:14:46','','0000-00-00 00:00:00'),(1582,0,0,'I',568,'I000568',2526,0,'0000-00-00','51229',0,0,'TAB','','','','INF',0,15,0,0,0,0,'1-0-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(1583,0,0,'I',568,'I000568',2526,0,'0000-00-00','51357',0,0,'TAB','','','','INF',0,45,0,0,0,0,'1-1-1-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(1584,0,0,'I',568,'I000568',2526,0,'0000-00-00','51278',0,0,'CAP','','','','INF',0,15,0,0,0,0,'0-1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(1585,0,0,'I',569,'I000569',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 17:26:58','','0000-00-00 00:00:00'),(1586,0,0,'I',569,'I000569',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-29 17:26:58','','0000-00-00 00:00:00'),(1587,0,0,'I',570,'I000570',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 17:40:12','','0000-00-00 00:00:00'),(1588,0,0,'I',570,'I000570',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-29 17:40:12','','0000-00-00 00:00:00'),(1589,0,0,'I',570,'I000570',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 17:40:12','','0000-00-00 00:00:00'),(1590,0,0,'I',571,'I000571',2526,1,'0000-00-00','51334',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 17:54:20','darshan','2025-10-29 17:54:39'),(1591,0,0,'I',571,'I000571',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 17:54:20','darshan','2025-10-29 17:54:39'),(1592,0,0,'I',571,'I000571',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 17:54:20','darshan','2025-10-29 17:54:39'),(1593,0,0,'I',571,'I000571',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-29 17:54:20','darshan','2025-10-29 17:54:39'),(1594,0,0,'I',572,'I000572',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 17:57:14','','0000-00-00 00:00:00'),(1595,0,0,'I',573,'I000573',2526,1,'0000-00-00','51320',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-10-29 18:02:13','drjayant','2025-10-29 18:02:24'),(1596,0,0,'I',573,'I000573',2526,2,'0000-00-00','51350',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-10-29 18:02:13','drjayant','2025-10-29 18:02:24'),(1598,0,0,'I',575,'I000575',2526,1,'0000-00-00','51262',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 18:13:21','drarchit','2025-10-29 18:15:13'),(1599,0,0,'I',575,'I000575',2526,2,'0000-00-00','51304',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 18:13:21','drarchit','2025-10-29 18:15:13'),(1600,0,0,'I',575,'I000575',2526,3,'0000-00-00','51362',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-10-29 18:14:06','drarchit','2025-10-29 18:15:13'),(1601,0,0,'I',575,'I000575',2526,4,'0000-00-00','51363',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','5ML TDS','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-10-29 18:15:13','','0000-00-00 00:00:00'),(1603,0,0,'I',576,'I000576',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 18:24:19','','0000-00-00 00:00:00'),(1604,0,0,'I',576,'I000576',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-29 18:24:19','','0000-00-00 00:00:00'),(1605,0,0,'I',577,'I000577',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 18:28:15','darshan','2025-10-29 18:28:33'),(1606,0,0,'I',577,'I000577',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-29 18:28:15','darshan','2025-10-29 18:28:33'),(1607,0,0,'I',579,'I000579',2526,1,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 18:33:40','drarchit','2025-10-29 18:34:17'),(1608,0,0,'I',579,'I000579',2526,2,'0000-00-00','51253',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 18:33:40','drarchit','2025-10-29 18:34:17'),(1609,0,0,'I',579,'I000579',2526,3,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 18:34:17','','0000-00-00 00:00:00'),(1610,0,0,'I',579,'I000579',2526,4,'0000-00-00','51219',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-10-29 18:34:17','','0000-00-00 00:00:00'),(1611,0,0,'I',580,'I000580',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 18:48:42','drarchit','2025-11-15 12:35:04'),(1612,0,0,'I',580,'I000580',2526,2,'0000-00-00','51214',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-10-29 18:48:42','drarchit','2025-11-15 12:35:04'),(1613,0,0,'I',580,'I000580',2526,3,'0000-00-00','51240',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 18:48:42','drarchit','2025-11-15 12:35:04'),(1614,0,0,'I',580,'I000580',2526,4,'0000-00-00','51358',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 18:48:42','drarchit','2025-11-15 12:35:04'),(1615,0,0,'I',580,'I000580',2526,5,'0000-00-00','51367',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 18:48:42','drarchit','2025-11-15 12:35:04'),(1616,0,0,'I',580,'I000580',2526,6,'0000-00-00','51336',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 18:48:42','drarchit','2025-11-15 12:35:04'),(1617,0,0,'I',580,'I000580',2526,7,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 18:48:42','drarchit','2025-11-15 12:35:04'),(1618,0,0,'I',580,'I000580',2526,8,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 18:48:42','drarchit','2025-11-15 12:35:04'),(1619,0,0,'I',580,'I000580',2526,9,'0000-00-00','51321',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 18:48:42','drarchit','2025-11-15 12:35:04'),(1620,0,0,'I',580,'I000580',2526,10,'0000-00-00','51337',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 18:48:42','drarchit','2025-11-15 12:35:04'),(1621,0,0,'I',581,'I000581',2526,1,'0000-00-00','51329',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-10-29 18:55:00','drarchit','2025-10-29 18:57:33'),(1622,0,0,'I',581,'I000581',2526,2,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-29 18:55:00','drarchit','2025-10-29 18:57:33'),(1623,0,0,'I',581,'I000581',2526,3,'0000-00-00','51313',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 18:57:33','','0000-00-00 00:00:00'),(1624,0,0,'I',581,'I000581',2526,4,'0000-00-00','51369',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 18:57:33','','0000-00-00 00:00:00'),(1625,0,0,'I',581,'I000581',2526,5,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 18:57:33','','0000-00-00 00:00:00'),(1626,0,0,'I',582,'I000582',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 18:58:11','','0000-00-00 00:00:00'),(1627,0,0,'I',582,'I000582',2526,2,'0000-00-00','51190',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 18:58:11','','0000-00-00 00:00:00'),(1628,0,0,'I',582,'I000582',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 18:58:11','','0000-00-00 00:00:00'),(1629,0,0,'I',583,'I000583',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 19:02:43','','0000-00-00 00:00:00'),(1630,0,0,'I',583,'I000583',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 19:02:43','','0000-00-00 00:00:00'),(1631,0,0,'I',583,'I000583',2526,3,'0000-00-00','51263',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 19:02:43','','0000-00-00 00:00:00'),(1632,0,0,'I',584,'I000584',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 19:03:34','','0000-00-00 00:00:00'),(1633,0,0,'I',584,'I000584',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 19:03:34','','0000-00-00 00:00:00'),(1634,0,0,'I',584,'I000584',2526,3,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-29 19:03:34','','0000-00-00 00:00:00'),(1635,0,0,'I',574,'I000574',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-10-29 19:11:49','drarchit','2025-10-29 19:14:12'),(1636,0,0,'I',574,'I000574',2526,2,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 19:11:49','drarchit','2025-10-29 19:14:12'),(1637,0,0,'I',574,'I000574',2526,3,'0000-00-00','51264',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 19:13:05','drarchit','2025-10-29 19:14:12'),(1638,0,0,'I',574,'I000574',2526,4,'0000-00-00','51217',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 19:13:05','drarchit','2025-10-29 19:14:12'),(1639,0,0,'I',585,'I000585',2526,1,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 19:13:41','darshan','2025-10-29 19:14:28'),(1640,0,0,'I',585,'I000585',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 19:13:41','darshan','2025-10-29 19:14:28'),(1641,0,0,'I',585,'I000585',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-29 19:13:41','darshan','2025-10-29 19:14:28'),(1642,0,0,'I',574,'I000574',2526,5,'0000-00-00','51370',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 19:14:12','','0000-00-00 00:00:00'),(1643,0,0,'I',574,'I000574',2526,6,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 19:14:12','','0000-00-00 00:00:00'),(1644,0,0,'I',586,'I000586',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 19:18:28','','0000-00-00 00:00:00'),(1645,0,0,'I',586,'I000586',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 19:18:28','','0000-00-00 00:00:00'),(1646,0,0,'I',586,'I000586',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 19:18:28','','0000-00-00 00:00:00'),(1647,0,0,'I',586,'I000586',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 19:18:28','','0000-00-00 00:00:00'),(1652,0,0,'I',587,'I000587',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-10-29 19:20:43','drarchit','2025-10-29 19:23:30'),(1653,0,0,'I',587,'I000587',2526,2,'0000-00-00','51370',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 19:21:06','drarchit','2025-10-29 19:23:30'),(1654,0,0,'I',587,'I000587',2526,3,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 19:22:22','drarchit','2025-10-29 19:23:30'),(1655,0,0,'I',587,'I000587',2526,4,'0000-00-00','51321',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 19:22:51','drarchit','2025-10-29 19:23:30'),(1657,0,0,'I',587,'I000587',2526,5,'0000-00-00','51238',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-0.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 19:23:30','','0000-00-00 00:00:00'),(1658,0,0,'I',588,'I000588',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 19:26:20','darshan','2025-10-29 19:26:33'),(1659,0,0,'I',588,'I000588',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 19:26:33','','0000-00-00 00:00:00'),(1660,0,0,'I',589,'I000589',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-10-29 19:29:00','drarchit','2025-10-29 19:30:37'),(1661,0,0,'I',589,'I000589',2526,2,'0000-00-00','51370',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-29 19:29:00','drarchit','2025-10-29 19:30:37'),(1662,0,0,'I',590,'I000590',2526,1,'0000-00-00','51233',0,0,'TAB','','','','',0,23,0,0,0,0,'0-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-29 19:30:12','','0000-00-00 00:00:00'),(1663,0,0,'I',590,'I000590',2526,2,'0000-00-00','51192',0,0,'TAB','','','','',0,25,0,0,0,0,'0-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-29 19:30:12','','0000-00-00 00:00:00'),(1664,0,0,'I',590,'I000590',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 19:30:12','','0000-00-00 00:00:00'),(1665,0,0,'I',590,'I000590',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 19:30:12','','0000-00-00 00:00:00'),(1666,0,0,'I',589,'I000589',2526,3,'0000-00-00','51372',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 19:30:37','','0000-00-00 00:00:00'),(1667,0,0,'I',589,'I000589',2526,4,'0000-00-00','51373',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 19:30:37','','0000-00-00 00:00:00'),(1668,0,0,'I',591,'I000591',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 19:34:43','drarchit','2025-10-29 19:35:28'),(1669,0,0,'I',591,'I000591',2526,2,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 19:34:43','drarchit','2025-10-29 19:35:28'),(1670,0,0,'I',591,'I000591',2526,3,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 19:34:43','drarchit','2025-10-29 19:35:28'),(1671,0,0,'I',591,'I000591',2526,4,'0000-00-00','51374',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-10-29 19:35:28','','0000-00-00 00:00:00'),(1672,0,0,'I',591,'I000591',2526,5,'0000-00-00','51292',0,0,'TAB','','','','',0,9,0,0,0,0,'1-1-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-29 19:35:28','','0000-00-00 00:00:00'),(1673,0,0,'I',592,'I000592',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-10-29 19:38:25','','0000-00-00 00:00:00'),(1674,0,0,'I',592,'I000592',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 19:38:25','','0000-00-00 00:00:00'),(1675,0,0,'I',592,'I000592',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-29 19:38:25','','0000-00-00 00:00:00'),(1676,0,0,'I',592,'I000592',2526,4,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 19:38:25','','0000-00-00 00:00:00'),(1677,0,0,'I',592,'I000592',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-29 19:38:25','','0000-00-00 00:00:00'),(1678,0,0,'I',592,'I000592',2526,6,'0000-00-00','51217',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 19:38:25','','0000-00-00 00:00:00'),(1679,0,0,'I',593,'I000593',2526,1,'0000-00-00','51375',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-0','','Dy',180,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-29 19:41:59','','0000-00-00 00:00:00'),(1680,0,0,'I',594,'I000594',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 19:50:18','','0000-00-00 00:00:00'),(1681,0,0,'I',594,'I000594',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 19:50:18','','0000-00-00 00:00:00'),(1682,0,0,'I',594,'I000594',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 19:50:18','','0000-00-00 00:00:00'),(1683,0,0,'I',594,'I000594',2526,4,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-29 19:50:18','','0000-00-00 00:00:00'),(1684,0,0,'I',595,'I000595',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 20:01:31','','0000-00-00 00:00:00'),(1685,0,0,'I',595,'I000595',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 20:01:31','','0000-00-00 00:00:00'),(1686,0,0,'I',596,'I000596',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 20:13:07','','0000-00-00 00:00:00'),(1687,0,0,'I',596,'I000596',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 20:13:07','','0000-00-00 00:00:00'),(1688,0,0,'I',597,'I000597',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-29 20:18:10','','0000-00-00 00:00:00'),(1689,0,0,'I',598,'I000598',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 10:45:45','','0000-00-00 00:00:00'),(1690,0,0,'I',598,'I000598',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 10:45:45','','0000-00-00 00:00:00'),(1691,0,0,'I',598,'I000598',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-30 10:45:45','','0000-00-00 00:00:00'),(1692,0,0,'I',598,'I000598',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 10:45:45','','0000-00-00 00:00:00'),(1693,0,0,'I',599,'I000599',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 11:06:52','','0000-00-00 00:00:00'),(1694,0,0,'I',599,'I000599',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 11:06:52','','0000-00-00 00:00:00'),(1695,0,0,'I',599,'I000599',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 11:06:52','','0000-00-00 00:00:00'),(1696,0,0,'I',600,'I000600',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 11:13:17','','0000-00-00 00:00:00'),(1697,0,0,'I',600,'I000600',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-30 11:13:17','','0000-00-00 00:00:00'),(1698,0,0,'I',601,'I000601',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 11:18:36','','0000-00-00 00:00:00'),(1699,0,0,'I',601,'I000601',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-30 11:18:36','','0000-00-00 00:00:00'),(1700,0,0,'I',602,'I000602',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-10-30 11:23:01','drjayant','2025-10-30 11:27:12'),(1701,0,0,'I',602,'I000602',2526,2,'0000-00-00','51296',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-10-30 11:23:01','drjayant','2025-10-30 11:27:12'),(1702,0,0,'I',602,'I000602',2526,3,'0000-00-00','51376',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-10-30 11:24:02','drjayant','2025-10-30 11:27:12'),(1703,0,0,'I',602,'I000602',2526,4,'0000-00-00','51377',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'drjayant','2025-10-30 11:25:38','drjayant','2025-10-30 11:27:12'),(1704,0,0,'I',602,'I000602',2526,5,'0000-00-00','51350',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-10-30 11:25:38','drjayant','2025-10-30 11:27:12'),(1705,0,0,'I',603,'I000603',2526,1,'0000-00-00','51321',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 11:30:30','drarchit','2025-10-30 11:32:30'),(1706,0,0,'I',603,'I000603',2526,2,'0000-00-00','51379',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','600 MG','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 11:32:30','','0000-00-00 00:00:00'),(1707,0,0,'I',603,'I000603',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-30 11:32:30','','0000-00-00 00:00:00'),(1708,0,0,'I',603,'I000603',2526,4,'0000-00-00','51253',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-30 11:32:30','','0000-00-00 00:00:00'),(1709,0,0,'I',603,'I000603',2526,5,'0000-00-00','51372',0,0,'TAB','','','','',0,4,0,0,0,0,'1-0-1','','Dy',2,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 11:32:30','','0000-00-00 00:00:00'),(1710,0,0,'I',604,'I000604',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 11:39:05','','0000-00-00 00:00:00'),(1711,0,0,'I',604,'I000604',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'0-.5-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 11:39:05','','0000-00-00 00:00:00'),(1712,0,0,'I',605,'I000605',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 11:42:40','','0000-00-00 00:00:00'),(1713,0,0,'I',605,'I000605',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 11:42:40','','0000-00-00 00:00:00'),(1714,0,0,'I',605,'I000605',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 11:42:40','','0000-00-00 00:00:00'),(1715,0,0,'I',606,'I000606',2526,1,'0000-00-00','51381',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 11:50:17','drarchit','2025-10-30 11:50:52'),(1716,0,0,'I',606,'I000606',2526,2,'0000-00-00','51382',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 11:50:52','','0000-00-00 00:00:00'),(1717,0,0,'I',607,'I000607',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 11:55:49','darshan','2025-10-30 11:55:58'),(1718,0,0,'I',607,'I000607',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 11:55:49','darshan','2025-10-30 11:55:58'),(1719,0,0,'I',607,'I000607',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-30 11:55:49','darshan','2025-10-30 11:55:58'),(1720,0,0,'I',607,'I000607',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-30 11:55:58','','0000-00-00 00:00:00'),(1721,0,0,'I',608,'I000608',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-30 11:59:12','drarchit','2025-10-30 12:00:54'),(1722,0,0,'I',608,'I000608',2526,2,'0000-00-00','51214',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-10-30 11:59:12','drarchit','2025-10-30 12:00:54'),(1723,0,0,'I',608,'I000608',2526,3,'0000-00-00','51231',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 11:59:12','drarchit','2025-10-30 12:00:54'),(1724,0,0,'I',608,'I000608',2526,4,'0000-00-00','51238',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 11:59:12','drarchit','2025-10-30 12:00:54'),(1725,0,0,'I',608,'I000608',2526,5,'0000-00-00','51264',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 11:59:12','drarchit','2025-10-30 12:00:54'),(1726,0,0,'I',608,'I000608',2526,6,'0000-00-00','51303',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 12:00:06','drarchit','2025-10-30 12:00:54'),(1727,0,0,'I',608,'I000608',2526,7,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 12:00:06','drarchit','2025-10-30 12:00:54'),(1728,0,0,'I',609,'I000609',2526,1,'0000-00-00','51215',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 12:00:44','','0000-00-00 00:00:00'),(1729,0,0,'I',609,'I000609',2526,2,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-10-30 12:00:44','','0000-00-00 00:00:00'),(1730,0,0,'I',609,'I000609',2526,3,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 12:00:44','','0000-00-00 00:00:00'),(1731,0,0,'I',609,'I000609',2526,4,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 12:00:44','','0000-00-00 00:00:00'),(1732,0,0,'I',608,'I000608',2526,8,'0000-00-00','51384',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 12:00:54','','0000-00-00 00:00:00'),(1733,0,0,'I',610,'I000610',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 12:04:40','darshan','2025-10-30 12:04:56'),(1734,0,0,'I',610,'I000610',2526,2,'0000-00-00','51190',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 12:04:40','darshan','2025-10-30 12:04:56'),(1735,0,0,'I',610,'I000610',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 12:04:40','darshan','2025-10-30 12:04:56'),(1736,0,0,'I',610,'I000610',2526,4,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 12:04:40','darshan','2025-10-30 12:04:56'),(1737,0,0,'I',611,'I000611',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-0','','Dy',0,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-10-30 12:15:05','','0000-00-00 00:00:00'),(1738,0,0,'I',611,'I000611',2526,2,'0000-00-00','51320',0,0,'TAB','','','','',0,0,0,0,0,0,'0-0-1','','Dy',0,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-10-30 12:15:05','','0000-00-00 00:00:00'),(1739,0,0,'I',612,'I000612',2526,1,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 12:19:30','','0000-00-00 00:00:00'),(1740,0,0,'I',612,'I000612',2526,2,'0000-00-00','51385',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 12:19:30','','0000-00-00 00:00:00'),(1741,0,0,'I',612,'I000612',2526,3,'0000-00-00','51359',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 12:19:30','','0000-00-00 00:00:00'),(1742,0,0,'I',612,'I000612',2526,4,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 12:19:30','','0000-00-00 00:00:00'),(1743,0,0,'I',613,'I000613',2526,1,'0000-00-00','51346',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 12:22:13','','0000-00-00 00:00:00'),(1744,0,0,'I',613,'I000613',2526,2,'0000-00-00','51299',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 12:22:13','','0000-00-00 00:00:00'),(1745,0,0,'I',614,'I000614',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 12:28:33','','0000-00-00 00:00:00'),(1746,0,0,'I',614,'I000614',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-30 12:28:33','','0000-00-00 00:00:00'),(1755,0,0,'I',616,'I000616',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 12:37:58','','0000-00-00 00:00:00'),(1756,0,0,'I',616,'I000616',2526,2,'0000-00-00','51271',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 12:37:58','','0000-00-00 00:00:00'),(1757,0,0,'I',616,'I000616',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 12:37:58','','0000-00-00 00:00:00'),(1758,0,0,'I',616,'I000616',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-30 12:37:58','','0000-00-00 00:00:00'),(1759,0,0,'I',616,'I000616',2526,5,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 12:37:58','','0000-00-00 00:00:00'),(1760,0,0,'I',615,'I000615',2526,1,'0000-00-00','51388',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 12:40:33','','0000-00-00 00:00:00'),(1761,0,0,'I',615,'I000615',2526,2,'0000-00-00','51389',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-10-30 12:40:33','','0000-00-00 00:00:00'),(1762,0,0,'I',615,'I000615',2526,3,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-30 12:40:33','','0000-00-00 00:00:00'),(1763,0,0,'I',615,'I000615',2526,4,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-10-30 12:40:33','','0000-00-00 00:00:00'),(1764,0,0,'I',615,'I000615',2526,5,'0000-00-00','51324',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 12:40:33','','0000-00-00 00:00:00'),(1765,0,0,'I',617,'I000617',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 12:44:13','','0000-00-00 00:00:00'),(1766,0,0,'I',617,'I000617',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 12:44:13','','0000-00-00 00:00:00'),(1767,0,0,'I',618,'I000618',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 12:48:07','','0000-00-00 00:00:00'),(1768,0,0,'I',619,'I000619',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 12:55:12','','0000-00-00 00:00:00'),(1769,0,0,'I',619,'I000619',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 12:55:12','','0000-00-00 00:00:00'),(1770,0,0,'I',620,'I000620',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 13:00:08','','0000-00-00 00:00:00'),(1771,0,0,'I',620,'I000620',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 13:00:08','','0000-00-00 00:00:00'),(1772,0,0,'I',621,'I000621',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 13:09:33','','0000-00-00 00:00:00'),(1773,0,0,'I',621,'I000621',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 13:09:33','','0000-00-00 00:00:00'),(1774,0,0,'I',621,'I000621',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 13:09:33','','0000-00-00 00:00:00'),(1775,0,0,'I',621,'I000621',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-30 13:09:33','','0000-00-00 00:00:00'),(1779,0,0,'I',622,'I000622',2526,1,'0000-00-00','51269',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:12:36','drarchit','2025-10-30 13:13:37'),(1780,0,0,'I',622,'I000622',2526,2,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:12:36','drarchit','2025-10-30 13:13:37'),(1781,0,0,'I',622,'I000622',2526,3,'0000-00-00','51279',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:13:34','drarchit','2025-10-30 13:13:37'),(1782,0,0,'I',622,'I000622',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:13:34','drarchit','2025-10-30 13:13:37'),(1783,0,0,'I',622,'I000622',2526,5,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:13:34','drarchit','2025-10-30 13:13:37'),(1784,0,0,'I',622,'I000622',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-10-30 13:13:34','drarchit','2025-10-30 13:13:37'),(1785,0,0,'I',623,'I000623',2526,1,'0000-00-00','51364',0,0,'INJ','','','','',0,1,0,0,0,0,'','1.5 GM ','Dy',5,0,0,0,0,0,0,0,0,0,'277','','P',NULL,NULL,'drarchit','2025-10-30 13:16:03','drarchit','2025-10-30 14:02:09'),(1786,0,0,'I',623,'I000623',2526,2,'0000-00-00','51378',0,0,'INJ','','','','',0,1,0,0,0,0,'','100ML','Dy',5,0,0,0,0,0,0,0,0,0,'247','','P',NULL,NULL,'drarchit','2025-10-30 13:16:03','drarchit','2025-10-30 14:02:09'),(1787,0,0,'I',624,'I000624',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:18:06','drarchit','2025-10-30 13:18:14'),(1788,0,0,'I',624,'I000624',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-30 13:18:06','drarchit','2025-10-30 13:18:14'),(1789,0,0,'I',624,'I000624',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:18:06','drarchit','2025-10-30 13:18:14'),(1790,0,0,'I',624,'I000624',2526,4,'0000-00-00','51303',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:18:06','drarchit','2025-10-30 13:18:14'),(1791,0,0,'I',624,'I000624',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-10-30 13:18:06','drarchit','2025-10-30 13:18:14'),(1792,0,0,'I',624,'I000624',2526,6,'0000-00-00','51384',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:18:06','drarchit','2025-10-30 13:18:14'),(1793,0,0,'I',625,'I000625',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 13:20:48','','0000-00-00 00:00:00'),(1794,0,0,'I',625,'I000625',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 13:20:48','','0000-00-00 00:00:00'),(1795,0,0,'I',625,'I000625',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 13:20:48','','0000-00-00 00:00:00'),(1796,0,0,'I',625,'I000625',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-30 13:20:48','','0000-00-00 00:00:00'),(1797,0,0,'I',626,'I000626',2526,1,'0000-00-00','51289',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 13:25:11','','0000-00-00 00:00:00'),(1798,0,0,'I',626,'I000626',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 13:25:11','','0000-00-00 00:00:00'),(1799,0,0,'I',626,'I000626',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 13:25:11','','0000-00-00 00:00:00'),(1800,0,0,'I',626,'I000626',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-30 13:25:11','','0000-00-00 00:00:00'),(1801,0,0,'I',627,'I000627',2526,1,'0000-00-00','51364',0,0,'INJ','','','','',0,1,0,0,0,0,'','1.5 GM ','Dy',5,0,0,0,0,0,0,0,0,0,'277','','P',NULL,NULL,'drarchit','2025-10-30 13:28:31','drarchit','2025-10-30 13:45:54'),(1802,0,0,'I',628,'I000628',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 13:30:59','','0000-00-00 00:00:00'),(1803,0,0,'I',628,'I000628',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 13:30:59','','0000-00-00 00:00:00'),(1804,0,0,'I',628,'I000628',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 13:30:59','','0000-00-00 00:00:00'),(1805,0,0,'I',628,'I000628',2526,4,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-30 13:30:59','','0000-00-00 00:00:00'),(1806,0,0,'I',628,'I000628',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-30 13:30:59','','0000-00-00 00:00:00'),(1807,0,0,'I',629,'I000629',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:31:33','drarchit','2025-10-30 13:36:31'),(1808,0,0,'I',629,'I000629',2526,2,'0000-00-00','51259',0,0,'TAB','','','','',0,45,0,0,0,0,'1-1-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:31:33','drarchit','2025-10-30 13:36:31'),(1809,0,0,'I',629,'I000629',2526,3,'0000-00-00','51229',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-30 13:34:12','drarchit','2025-10-30 13:36:31'),(1810,0,0,'I',629,'I000629',2526,4,'0000-00-00','51222',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:34:12','drarchit','2025-10-30 13:36:31'),(1811,0,0,'I',629,'I000629',2526,5,'0000-00-00','51238',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-0.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:34:12','drarchit','2025-10-30 13:36:31'),(1812,0,0,'I',629,'I000629',2526,6,'0000-00-00','51392',0,0,'POWDER','','','','',0,1,0,0,0,0,'','2 SCOOP BD','Dy',5,0,0,0,0,0,0,0,0,0,'292','','P',NULL,NULL,'drarchit','2025-10-30 13:36:07','drarchit','2025-10-30 13:36:31'),(1813,0,0,'I',627,'I000627',2526,2,'0000-00-00','51391',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-1','','Dy',0,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:42:35','drarchit','2025-10-30 13:45:54'),(1814,0,0,'I',627,'I000627',2526,3,'0000-00-00','51393',0,0,'INJ','','','','',0,0,0,0,0,0,'','','Dy',0,0,0,0,0,0,0,0,0,0,'354','','P',NULL,NULL,'drarchit','2025-10-30 13:45:54','','0000-00-00 00:00:00'),(1815,0,0,'I',627,'I000627',2526,4,'0000-00-00','51394',0,0,'INJ','','','','',0,0,0,0,0,0,'','','Dy',0,0,0,0,0,0,0,0,0,0,'247','','P',NULL,NULL,'drarchit','2025-10-30 13:45:54','','0000-00-00 00:00:00'),(1816,0,0,'I',627,'I000627',2526,5,'0000-00-00','51303',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:45:54','','0000-00-00 00:00:00'),(1817,0,0,'I',627,'I000627',2526,6,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-10-30 13:45:54','','0000-00-00 00:00:00'),(1818,0,0,'I',627,'I000627',2526,7,'0000-00-00','51390',0,0,'INJ','','','','',0,1,0,0,0,0,'','','Dy',0,0,0,0,0,0,0,0,0,0,'367','','P',NULL,NULL,'drarchit','2025-10-30 13:45:54','','0000-00-00 00:00:00'),(1819,0,0,'I',630,'I000630',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 13:49:22','','0000-00-00 00:00:00'),(1820,0,0,'I',630,'I000630',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 13:49:22','','0000-00-00 00:00:00'),(1821,0,0,'I',630,'I000630',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 13:49:22','','0000-00-00 00:00:00'),(1822,0,0,'I',630,'I000630',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-30 13:49:22','','0000-00-00 00:00:00'),(1823,0,0,'I',631,'I000631',2526,1,'0000-00-00','51373',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:50:24','drarchit','2025-10-30 13:52:12'),(1824,0,0,'I',631,'I000631',2526,2,'0000-00-00','51395',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:51:28','drarchit','2025-10-30 13:52:12'),(1825,0,0,'I',631,'I000631',2526,3,'0000-00-00','51396',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:52:12','','0000-00-00 00:00:00'),(1826,0,0,'I',623,'I000623',2526,3,'0000-00-00','51393',0,0,'INJ','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'354','','P',NULL,NULL,'drarchit','2025-10-30 13:55:54','drarchit','2025-10-30 14:02:09'),(1827,0,0,'I',623,'I000623',2526,4,'0000-00-00','51394',0,0,'INJ','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'247','','P',NULL,NULL,'drarchit','2025-10-30 13:55:54','drarchit','2025-10-30 14:02:09'),(1828,0,0,'I',623,'I000623',2526,5,'0000-00-00','51390',0,0,'INJ','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'393','','P',NULL,NULL,'drarchit','2025-10-30 13:55:54','drarchit','2025-10-30 14:02:09'),(1829,0,0,'I',623,'I000623',2526,6,'0000-00-00','51257',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:58:31','drarchit','2025-10-30 14:02:09'),(1830,0,0,'I',623,'I000623',2526,7,'0000-00-00','51339',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:58:31','drarchit','2025-10-30 14:02:09'),(1831,0,0,'I',623,'I000623',2526,8,'0000-00-00','51254',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 13:58:31','drarchit','2025-10-30 14:02:09'),(1832,0,0,'I',623,'I000623',2526,9,'0000-00-00','51398',0,0,'OTH','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'394','','P',NULL,NULL,'drarchit','2025-10-30 14:01:21','drarchit','2025-10-30 14:02:09'),(1833,0,0,'I',632,'I000632',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-30 17:13:55','','0000-00-00 00:00:00'),(1834,0,0,'I',632,'I000632',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 17:13:55','','0000-00-00 00:00:00'),(1835,0,0,'I',632,'I000632',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 17:13:55','','0000-00-00 00:00:00'),(1840,0,0,'I',634,'I000634',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 17:38:43','darshan','2025-10-30 17:39:18'),(1842,0,0,'I',634,'I000634',2526,2,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-30 17:39:18','','0000-00-00 00:00:00'),(1843,0,0,'I',636,'I000636',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-10-30 18:00:33','','0000-00-00 00:00:00'),(1844,0,0,'I',636,'I000636',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:00:33','','0000-00-00 00:00:00'),(1845,0,0,'I',636,'I000636',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:00:33','','0000-00-00 00:00:00'),(1846,0,0,'I',635,'I000635',2526,1,'0000-00-00','51296',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-10-30 18:00:50','drjayant','2025-10-30 18:01:48'),(1847,0,0,'I',635,'I000635',2526,2,'0000-00-00','51399',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-10-30 18:01:48','','0000-00-00 00:00:00'),(1848,0,0,'I',637,'I000637',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:04:14','','0000-00-00 00:00:00'),(1849,0,0,'I',637,'I000637',2526,2,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-30 18:04:14','','0000-00-00 00:00:00'),(1850,0,0,'I',638,'I000638',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:09:34','darshan','2025-10-30 18:09:51'),(1851,0,0,'I',638,'I000638',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:09:34','darshan','2025-10-30 18:09:51'),(1852,0,0,'I',638,'I000638',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:09:34','darshan','2025-10-30 18:09:51'),(1853,0,0,'I',633,'I000633',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:15:49','darshan','2025-10-30 18:16:10'),(1854,0,0,'I',633,'I000633',2526,2,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-30 18:15:49','darshan','2025-10-30 18:16:10'),(1855,0,0,'I',633,'I000633',2526,3,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:15:49','darshan','2025-10-30 18:16:10'),(1856,0,0,'I',639,'I000639',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:18:56','','0000-00-00 00:00:00'),(1857,0,0,'I',639,'I000639',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:18:56','','0000-00-00 00:00:00'),(1858,0,0,'I',639,'I000639',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:18:56','','0000-00-00 00:00:00'),(1859,0,0,'I',639,'I000639',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-30 18:18:56','','0000-00-00 00:00:00'),(1860,0,0,'I',640,'I000640',2526,1,'0000-00-00','51338',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 18:20:21','','0000-00-00 00:00:00'),(1861,0,0,'I',640,'I000640',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 18:20:21','','0000-00-00 00:00:00'),(1862,0,0,'I',640,'I000640',2526,3,'0000-00-00','51381',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 18:20:21','','0000-00-00 00:00:00'),(1863,0,0,'I',640,'I000640',2526,4,'0000-00-00','51232',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 18:20:21','','0000-00-00 00:00:00'),(1864,0,0,'I',640,'I000640',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-30 18:20:21','','0000-00-00 00:00:00'),(1865,0,0,'I',641,'I000641',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:21:52','','0000-00-00 00:00:00'),(1866,0,0,'I',641,'I000641',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:21:52','','0000-00-00 00:00:00'),(1867,0,0,'I',641,'I000641',2526,3,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-30 18:21:52','','0000-00-00 00:00:00'),(1868,0,0,'I',641,'I000641',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-30 18:21:52','','0000-00-00 00:00:00'),(1869,0,0,'I',642,'I000642',2526,1,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 18:25:05','drarchit','2025-10-30 18:26:01'),(1870,0,0,'I',642,'I000642',2526,2,'0000-00-00','51269',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 18:25:05','drarchit','2025-10-30 18:26:01'),(1871,0,0,'I',642,'I000642',2526,3,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 18:25:05','drarchit','2025-10-30 18:26:01'),(1872,0,0,'I',642,'I000642',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 18:25:05','drarchit','2025-10-30 18:26:01'),(1875,0,0,'I',642,'I000642',2526,5,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-10-30 18:25:51','drarchit','2025-10-30 18:26:01'),(1876,0,0,'I',643,'I000643',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:25:54','','0000-00-00 00:00:00'),(1877,0,0,'I',644,'I000644',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:28:43','','0000-00-00 00:00:00'),(1878,0,0,'I',645,'I000645',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:33:01','','0000-00-00 00:00:00'),(1879,0,0,'I',645,'I000645',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:33:01','','0000-00-00 00:00:00'),(1880,0,0,'I',645,'I000645',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,5,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-30 18:33:01','','0000-00-00 00:00:00'),(1881,0,0,'I',645,'I000645',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-30 18:33:01','','0000-00-00 00:00:00'),(1882,0,0,'I',646,'I000646',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 18:35:39','','0000-00-00 00:00:00'),(1883,0,0,'I',646,'I000646',2526,2,'0000-00-00','51346',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 18:35:39','','0000-00-00 00:00:00'),(1884,0,0,'I',646,'I000646',2526,3,'0000-00-00','51400',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 18:35:39','','0000-00-00 00:00:00'),(1885,0,0,'I',647,'I000647',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:39:30','darshan','2025-10-30 18:39:39'),(1886,0,0,'I',647,'I000647',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:39:30','darshan','2025-10-30 18:39:39'),(1888,0,0,'I',648,'I000648',2526,1,'0000-00-00','51401',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-30 18:47:14','drarchit','2025-10-30 18:48:07'),(1889,0,0,'I',648,'I000648',2526,2,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 18:47:14','drarchit','2025-10-30 18:48:07'),(1890,0,0,'I',648,'I000648',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 18:47:14','drarchit','2025-10-30 18:48:07'),(1891,0,0,'I',649,'I000649',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:50:33','','0000-00-00 00:00:00'),(1892,0,0,'I',649,'I000649',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:50:33','','0000-00-00 00:00:00'),(1893,0,0,'I',649,'I000649',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:50:33','','0000-00-00 00:00:00'),(1894,0,0,'I',649,'I000649',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-30 18:50:33','','0000-00-00 00:00:00'),(1895,0,0,'I',650,'I000650',2526,1,'0000-00-00','51349',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-0','','Dy',0,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-10-30 18:51:34','','0000-00-00 00:00:00'),(1896,0,0,'I',651,'I000651',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-10-30 18:53:47','','0000-00-00 00:00:00'),(1897,0,0,'I',652,'I000652',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:57:53','','0000-00-00 00:00:00'),(1898,0,0,'I',652,'I000652',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 18:57:53','','0000-00-00 00:00:00'),(1899,0,0,'I',653,'I000653',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 19:01:34','','0000-00-00 00:00:00'),(1900,0,0,'I',653,'I000653',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 19:01:34','','0000-00-00 00:00:00'),(1901,0,0,'I',653,'I000653',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-30 19:01:34','','0000-00-00 00:00:00'),(1902,0,0,'I',653,'I000653',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 19:01:34','','0000-00-00 00:00:00'),(1903,0,0,'I',654,'I000654',2526,1,'0000-00-00','51239',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-30 19:07:24','drarchit','2025-10-30 19:09:44'),(1904,0,0,'I',654,'I000654',2526,2,'0000-00-00','51297',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 19:07:24','drarchit','2025-10-30 19:09:44'),(1905,0,0,'I',654,'I000654',2526,3,'0000-00-00','51402',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 19:09:02','drarchit','2025-10-30 19:09:44'),(1906,0,0,'I',654,'I000654',2526,4,'0000-00-00','51359',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 19:09:02','drarchit','2025-10-30 19:09:44'),(1908,0,0,'I',654,'I000654',2526,5,'0000-00-00','51363',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','5ML TDS','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-10-30 19:09:44','','0000-00-00 00:00:00'),(1909,0,0,'I',655,'I000655',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 19:11:17','','0000-00-00 00:00:00'),(1910,0,0,'I',655,'I000655',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 19:11:17','','0000-00-00 00:00:00'),(1911,0,0,'I',655,'I000655',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 19:11:17','','0000-00-00 00:00:00'),(1912,0,0,'I',655,'I000655',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-30 19:11:17','','0000-00-00 00:00:00'),(1914,0,0,'I',656,'I000656',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 19:14:25','darshan','2025-10-30 19:15:21'),(1916,0,0,'I',656,'I000656',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-30 19:14:25','darshan','2025-10-30 19:15:21'),(1918,0,0,'I',656,'I000656',2526,5,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 19:14:25','darshan','2025-10-30 19:15:21'),(1919,0,0,'I',656,'I000656',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 19:14:28','darshan','2025-10-30 19:15:21'),(1920,0,0,'I',657,'I000657',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 19:18:42','','0000-00-00 00:00:00'),(1921,0,0,'I',657,'I000657',2526,2,'0000-00-00','51303',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 19:18:42','','0000-00-00 00:00:00'),(1922,0,0,'I',657,'I000657',2526,3,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-10-30 19:18:42','','0000-00-00 00:00:00'),(1923,0,0,'I',657,'I000657',2526,4,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 19:18:42','','0000-00-00 00:00:00'),(1924,0,0,'I',657,'I000657',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 19:18:42','','0000-00-00 00:00:00'),(1925,0,0,'I',658,'I000658',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 19:25:03','','0000-00-00 00:00:00'),(1926,0,0,'I',658,'I000658',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 19:25:03','','0000-00-00 00:00:00'),(1927,0,0,'I',659,'I000659',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 19:38:17','drarchit','2025-10-30 19:41:44'),(1928,0,0,'I',659,'I000659',2526,2,'0000-00-00','51403',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 19:40:35','drarchit','2025-10-30 19:41:44'),(1929,0,0,'I',659,'I000659',2526,3,'0000-00-00','51384',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 19:40:35','drarchit','2025-10-30 19:41:44'),(1930,0,0,'I',659,'I000659',2526,4,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-10-30 19:40:35','drarchit','2025-10-30 19:41:44'),(1931,0,0,'I',659,'I000659',2526,5,'0000-00-00','51222',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 19:40:35','drarchit','2025-10-30 19:41:44'),(1932,0,0,'I',659,'I000659',2526,6,'0000-00-00','51404',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 19:41:33','drarchit','2025-10-30 19:41:44'),(1933,0,0,'I',659,'I000659',2526,7,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-30 19:41:44','','0000-00-00 00:00:00'),(1934,0,0,'I',659,'I000659',2526,8,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-10-30 19:41:44','','0000-00-00 00:00:00'),(1935,0,0,'I',660,'I000660',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 19:47:05','','0000-00-00 00:00:00'),(1936,0,0,'I',660,'I000660',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 19:47:05','','0000-00-00 00:00:00'),(1937,0,0,'I',660,'I000660',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-30 19:47:05','','0000-00-00 00:00:00'),(1938,0,0,'I',660,'I000660',2526,4,'0000-00-00','51217',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-30 19:47:05','','0000-00-00 00:00:00'),(1939,0,0,'I',662,'I000662',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 11:14:12','','0000-00-00 00:00:00'),(1940,0,0,'I',663,'I000663',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-31 11:33:12','drarchit','2025-10-31 11:34:14'),(1941,0,0,'I',663,'I000663',2526,2,'0000-00-00','51286',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 11:33:12','drarchit','2025-10-31 11:34:14'),(1942,0,0,'I',663,'I000663',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 11:33:12','drarchit','2025-10-31 11:34:14'),(1943,0,0,'I',663,'I000663',2526,4,'0000-00-00','51344',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-10-31 11:33:12','drarchit','2025-10-31 11:34:14'),(1944,0,0,'I',663,'I000663',2526,5,'0000-00-00','51290',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 11:34:14','','0000-00-00 00:00:00'),(1945,0,0,'I',664,'I000664',2526,1,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-31 11:37:02','drarchit','2025-10-31 11:39:17'),(1946,0,0,'I',664,'I000664',2526,2,'0000-00-00','51389',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-10-31 11:37:02','drarchit','2025-10-31 11:39:17'),(1947,0,0,'I',664,'I000664',2526,3,'0000-00-00','51406',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 11:37:57','drarchit','2025-10-31 11:39:17'),(1948,0,0,'I',664,'I000664',2526,4,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 11:37:57','drarchit','2025-10-31 11:39:17'),(1949,0,0,'I',664,'I000664',2526,5,'0000-00-00','51237',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 11:39:17','','0000-00-00 00:00:00'),(1950,0,0,'I',664,'I000664',2526,6,'0000-00-00','51407',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 11:39:17','','0000-00-00 00:00:00'),(1951,0,0,'I',665,'I000665',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 11:39:21','darshan','2025-10-31 11:40:10'),(1952,0,0,'I',665,'I000665',2526,2,'0000-00-00','51334',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 11:39:21','darshan','2025-10-31 11:40:10'),(1954,0,0,'I',665,'I000665',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-31 11:40:10','','0000-00-00 00:00:00'),(1959,0,0,'I',668,'I000668',2526,2,'0000-00-00','51322',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 11:43:33','darshan','2025-10-31 11:43:51'),(1960,0,0,'I',669,'I000669',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 11:59:52','','0000-00-00 00:00:00'),(1961,0,0,'I',669,'I000669',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-31 11:59:52','','0000-00-00 00:00:00'),(1962,0,0,'I',669,'I000669',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 11:59:52','','0000-00-00 00:00:00'),(1963,0,0,'I',670,'I000670',2526,1,'0000-00-00','51352',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:02:00','','0000-00-00 00:00:00'),(1964,0,0,'I',670,'I000670',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:02:00','','0000-00-00 00:00:00'),(1965,0,0,'I',671,'I000671',2526,1,'0000-00-00','51408',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-10-31 12:13:12','drjayant','2025-10-31 12:13:56'),(1966,0,0,'I',671,'I000671',2526,2,'0000-00-00','51409',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-10-31 12:13:56','','0000-00-00 00:00:00'),(1967,0,0,'I',672,'I000672',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:16:08','','0000-00-00 00:00:00'),(1968,0,0,'I',672,'I000672',2526,2,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:16:08','','0000-00-00 00:00:00'),(1969,0,0,'I',672,'I000672',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-31 12:16:08','','0000-00-00 00:00:00'),(1970,0,0,'I',672,'I000672',2526,4,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:16:08','','0000-00-00 00:00:00'),(1971,0,0,'I',672,'I000672',2526,5,'0000-00-00','51230',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:16:08','','0000-00-00 00:00:00'),(1972,0,0,'I',672,'I000672',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-10-31 12:16:08','','0000-00-00 00:00:00'),(1973,0,0,'I',673,'I000673',2526,1,'0000-00-00','51381',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:20:51','drarchit','2025-10-31 12:22:47'),(1974,0,0,'I',673,'I000673',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:20:51','drarchit','2025-10-31 12:22:47'),(1975,0,0,'I',673,'I000673',2526,3,'0000-00-00','51410',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-31 12:22:47','','0000-00-00 00:00:00'),(1976,0,0,'I',673,'I000673',2526,4,'0000-00-00','51249',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:22:47','','0000-00-00 00:00:00'),(1977,0,0,'I',673,'I000673',2526,5,'0000-00-00','51279',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:22:47','','0000-00-00 00:00:00'),(1978,0,0,'I',674,'I000674',2526,1,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:28:17','','0000-00-00 00:00:00'),(1979,0,0,'I',674,'I000674',2526,2,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-10-31 12:28:17','','0000-00-00 00:00:00'),(1980,0,0,'I',674,'I000674',2526,3,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:28:17','','0000-00-00 00:00:00'),(1981,0,0,'I',674,'I000674',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-31 12:28:17','','0000-00-00 00:00:00'),(1982,0,0,'I',674,'I000674',2526,5,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:28:17','','0000-00-00 00:00:00'),(1983,0,0,'I',674,'I000674',2526,6,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:28:17','','0000-00-00 00:00:00'),(1984,0,0,'I',675,'I000675',2526,1,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:32:43','','0000-00-00 00:00:00'),(1985,0,0,'I',675,'I000675',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-31 12:32:43','','0000-00-00 00:00:00'),(1986,0,0,'I',676,'I000676',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 12:33:35','','0000-00-00 00:00:00'),(1987,0,0,'I',676,'I000676',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 12:33:35','','0000-00-00 00:00:00'),(1988,0,0,'I',677,'I000677',2526,1,'0000-00-00','51230',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:35:27','drarchit','2025-10-31 12:35:53'),(1989,0,0,'I',677,'I000677',2526,2,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:35:27','drarchit','2025-10-31 12:35:53'),(1990,0,0,'I',677,'I000677',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:35:27','drarchit','2025-10-31 12:35:53'),(1991,0,0,'I',677,'I000677',2526,4,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:35:27','drarchit','2025-10-31 12:35:53'),(1992,0,0,'I',677,'I000677',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-31 12:35:27','drarchit','2025-10-31 12:35:53'),(1993,0,0,'I',677,'I000677',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-10-31 12:35:27','drarchit','2025-10-31 12:35:53'),(1994,0,0,'I',678,'I000678',2526,1,'0000-00-00','51381',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:39:43','drarchit','2025-10-31 12:40:24'),(1995,0,0,'I',678,'I000678',2526,2,'0000-00-00','51411',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-31 12:40:24','','0000-00-00 00:00:00'),(1996,0,0,'I',679,'I000679',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 12:44:56','darshan','2025-10-31 12:45:12'),(1997,0,0,'I',679,'I000679',2526,2,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-31 12:44:56','darshan','2025-10-31 12:45:12'),(1998,0,0,'I',679,'I000679',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 12:44:56','darshan','2025-10-31 12:45:12'),(1999,0,0,'I',679,'I000679',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 12:44:56','darshan','2025-10-31 12:45:12'),(2000,0,0,'I',680,'I000680',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:58:04','drarchit','2025-10-31 12:59:02'),(2001,0,0,'I',680,'I000680',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-31 12:59:02','','0000-00-00 00:00:00'),(2002,0,0,'I',680,'I000680',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:59:02','','0000-00-00 00:00:00'),(2003,0,0,'I',680,'I000680',2526,4,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:59:02','','0000-00-00 00:00:00'),(2004,0,0,'I',680,'I000680',2526,5,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 12:59:02','','0000-00-00 00:00:00'),(2005,0,0,'I',680,'I000680',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-10-31 12:59:02','','0000-00-00 00:00:00'),(2006,0,0,'I',661,'I000661',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:02:29','','0000-00-00 00:00:00'),(2007,0,0,'I',661,'I000661',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:02:29','','0000-00-00 00:00:00'),(2008,0,0,'I',661,'I000661',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:02:29','','0000-00-00 00:00:00'),(2009,0,0,'I',661,'I000661',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-31 13:02:29','','0000-00-00 00:00:00'),(2010,0,0,'I',682,'I000682',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:06:51','','0000-00-00 00:00:00'),(2011,0,0,'I',682,'I000682',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:06:51','','0000-00-00 00:00:00'),(2013,0,0,'I',681,'I000681',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 13:08:23','drarchit','2025-10-31 13:08:54'),(2014,0,0,'I',681,'I000681',2526,2,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 13:08:23','drarchit','2025-10-31 13:08:54'),(2015,0,0,'I',681,'I000681',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 13:08:23','drarchit','2025-10-31 13:08:54'),(2016,0,0,'I',681,'I000681',2526,4,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 13:08:23','drarchit','2025-10-31 13:08:54'),(2017,0,0,'I',681,'I000681',2526,5,'0000-00-00','51375',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-31 13:08:23','drarchit','2025-10-31 13:08:54'),(2018,0,0,'I',681,'I000681',2526,6,'0000-00-00','51412',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 13:08:54','','0000-00-00 00:00:00'),(2019,0,0,'I',683,'I000683',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:18:55','','0000-00-00 00:00:00'),(2020,0,0,'I',683,'I000683',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:18:55','','0000-00-00 00:00:00'),(2021,0,0,'I',683,'I000683',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:18:55','','0000-00-00 00:00:00'),(2022,0,0,'I',683,'I000683',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-31 13:18:55','','0000-00-00 00:00:00'),(2024,0,0,'I',684,'I000684',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-10-31 13:19:31','drarchit','2025-10-31 13:20:38'),(2025,0,0,'I',684,'I000684',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 13:20:18','drarchit','2025-10-31 13:20:38'),(2026,0,0,'I',684,'I000684',2526,3,'0000-00-00','51236',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 13:20:18','drarchit','2025-10-31 13:20:38'),(2027,0,0,'I',684,'I000684',2526,4,'0000-00-00','51279',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 13:20:18','drarchit','2025-10-31 13:20:38'),(2028,0,0,'I',684,'I000684',2526,5,'0000-00-00','51217',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 13:20:18','drarchit','2025-10-31 13:20:38'),(2029,0,0,'I',685,'I000685',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:28:21','','0000-00-00 00:00:00'),(2030,0,0,'I',685,'I000685',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:28:21','','0000-00-00 00:00:00'),(2031,0,0,'I',685,'I000685',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-31 13:28:21','','0000-00-00 00:00:00'),(2032,0,0,'I',686,'I000686',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-31 13:30:47','drarchit','2025-10-31 13:31:32'),(2033,0,0,'I',686,'I000686',2526,2,'0000-00-00','51413',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-10-31 13:31:32','','0000-00-00 00:00:00'),(2034,0,0,'I',687,'I000687',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:32:15','darshan','2025-10-31 13:32:24'),(2035,0,0,'I',687,'I000687',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:32:15','darshan','2025-10-31 13:32:24'),(2036,0,0,'I',687,'I000687',2526,3,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:32:15','darshan','2025-10-31 13:32:24'),(2037,0,0,'I',687,'I000687',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-31 13:32:15','darshan','2025-10-31 13:32:24'),(2038,0,0,'I',687,'I000687',2526,5,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:32:24','','0000-00-00 00:00:00'),(2039,0,0,'I',688,'I000688',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 13:35:18','drarchit','2025-10-31 13:35:27'),(2040,0,0,'I',688,'I000688',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 13:35:18','drarchit','2025-10-31 13:35:27'),(2041,0,0,'I',688,'I000688',2526,3,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-10-31 13:35:18','drarchit','2025-10-31 13:35:27'),(2042,0,0,'I',688,'I000688',2526,4,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-31 13:35:18','drarchit','2025-10-31 13:35:27'),(2043,0,0,'I',688,'I000688',2526,5,'0000-00-00','51406',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 13:35:18','drarchit','2025-10-31 13:35:27'),(2044,0,0,'I',688,'I000688',2526,6,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-31 13:35:18','drarchit','2025-10-31 13:35:27'),(2046,0,0,'I',688,'I000688',2526,7,'0000-00-00','51370',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-31 13:35:27','','0000-00-00 00:00:00'),(2047,0,0,'I',689,'I000689',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:36:44','','0000-00-00 00:00:00'),(2048,0,0,'I',689,'I000689',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:36:44','','0000-00-00 00:00:00'),(2049,0,0,'I',689,'I000689',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:36:44','','0000-00-00 00:00:00'),(2050,0,0,'I',689,'I000689',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-31 13:36:44','','0000-00-00 00:00:00'),(2051,0,0,'I',690,'I000690',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:40:03','','0000-00-00 00:00:00'),(2052,0,0,'I',690,'I000690',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:40:03','','0000-00-00 00:00:00'),(2053,0,0,'I',691,'I000691',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:47:29','','0000-00-00 00:00:00'),(2054,0,0,'I',691,'I000691',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:47:29','','0000-00-00 00:00:00'),(2055,0,0,'I',691,'I000691',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:47:29','','0000-00-00 00:00:00'),(2056,0,0,'I',691,'I000691',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-31 13:47:29','','0000-00-00 00:00:00'),(2057,0,0,'I',691,'I000691',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-31 13:47:29','','0000-00-00 00:00:00'),(2058,0,0,'I',692,'I000692',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:50:17','','0000-00-00 00:00:00'),(2059,0,0,'I',693,'I000693',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:59:20','','0000-00-00 00:00:00'),(2060,0,0,'I',693,'I000693',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 13:59:20','','0000-00-00 00:00:00'),(2061,0,0,'I',693,'I000693',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-31 13:59:20','','0000-00-00 00:00:00'),(2062,0,0,'I',694,'I000694',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-10-31 14:01:36','','0000-00-00 00:00:00'),(2063,0,0,'I',694,'I000694',2526,2,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:01:36','','0000-00-00 00:00:00'),(2064,0,0,'I',694,'I000694',2526,3,'0000-00-00','51322',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:01:36','','0000-00-00 00:00:00'),(2065,0,0,'I',694,'I000694',2526,4,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-10-31 14:01:36','','0000-00-00 00:00:00'),(2066,0,0,'I',694,'I000694',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-31 14:01:36','','0000-00-00 00:00:00'),(2067,0,0,'I',695,'I000695',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:04:35','','0000-00-00 00:00:00'),(2068,0,0,'I',695,'I000695',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:04:35','','0000-00-00 00:00:00'),(2069,0,0,'I',695,'I000695',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:04:35','','0000-00-00 00:00:00'),(2070,0,0,'I',695,'I000695',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-31 14:04:35','','0000-00-00 00:00:00'),(2071,0,0,'I',696,'I000696',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:16:25','','0000-00-00 00:00:00'),(2072,0,0,'I',696,'I000696',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:16:25','','0000-00-00 00:00:00'),(2073,0,0,'I',697,'I000697',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:21:51','','0000-00-00 00:00:00'),(2074,0,0,'I',697,'I000697',2526,2,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:21:51','','0000-00-00 00:00:00'),(2075,0,0,'I',697,'I000697',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:21:51','','0000-00-00 00:00:00'),(2076,0,0,'I',698,'I000698',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-10-31 14:27:05','','0000-00-00 00:00:00'),(2077,0,0,'I',698,'I000698',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:27:05','','0000-00-00 00:00:00'),(2078,0,0,'I',698,'I000698',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-31 14:27:05','','0000-00-00 00:00:00'),(2079,0,0,'I',698,'I000698',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-31 14:27:05','','0000-00-00 00:00:00'),(2080,0,0,'I',698,'I000698',2526,5,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:27:05','','0000-00-00 00:00:00'),(2081,0,0,'I',699,'I000699',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:32:36','','0000-00-00 00:00:00'),(2082,0,0,'I',699,'I000699',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:32:36','','0000-00-00 00:00:00'),(2083,0,0,'I',700,'I000700',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-31 14:35:10','','0000-00-00 00:00:00'),(2084,0,0,'I',700,'I000700',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:35:10','','0000-00-00 00:00:00'),(2085,0,0,'I',701,'I000701',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:40:13','','0000-00-00 00:00:00'),(2086,0,0,'I',701,'I000701',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:40:13','','0000-00-00 00:00:00'),(2087,0,0,'I',702,'I000702',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:43:38','darshan','2025-10-31 14:43:44'),(2088,0,0,'I',702,'I000702',2526,2,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-31 14:43:38','darshan','2025-10-31 14:43:44'),(2089,0,0,'I',702,'I000702',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:43:38','darshan','2025-10-31 14:43:44'),(2090,0,0,'I',702,'I000702',2526,4,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:43:38','darshan','2025-10-31 14:43:44'),(2091,0,0,'I',703,'I000703',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:47:48','darshan','2025-10-31 14:47:54'),(2092,0,0,'I',703,'I000703',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:47:48','darshan','2025-10-31 14:47:54'),(2093,0,0,'I',704,'I000704',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:56:11','','0000-00-00 00:00:00'),(2094,0,0,'I',704,'I000704',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 14:56:11','','0000-00-00 00:00:00'),(2095,0,0,'I',705,'I000705',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 15:09:57','darshan','2025-10-31 15:10:16'),(2096,0,0,'I',705,'I000705',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 15:09:57','darshan','2025-10-31 15:10:16'),(2097,0,0,'I',705,'I000705',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 15:10:16','','0000-00-00 00:00:00'),(2098,0,0,'I',706,'I000706',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 15:13:31','','0000-00-00 00:00:00'),(2099,0,0,'I',706,'I000706',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 15:13:31','','0000-00-00 00:00:00'),(2100,0,0,'I',707,'I000707',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 17:12:27','darshan','2025-10-31 17:13:03'),(2101,0,0,'I',707,'I000707',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 17:13:03','','0000-00-00 00:00:00'),(2102,0,0,'I',707,'I000707',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 17:13:03','','0000-00-00 00:00:00'),(2103,0,0,'I',707,'I000707',2526,4,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-31 17:13:03','','0000-00-00 00:00:00'),(2104,0,0,'I',708,'I000708',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 17:16:22','darshan','2025-10-31 17:16:44'),(2107,0,0,'I',708,'I000708',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-10-31 17:16:44','','0000-00-00 00:00:00'),(2108,0,0,'I',709,'I000709',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 17:21:13','','0000-00-00 00:00:00'),(2109,0,0,'I',709,'I000709',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-10-31 17:21:13','','0000-00-00 00:00:00'),(2110,0,0,'I',709,'I000709',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 17:21:13','','0000-00-00 00:00:00'),(2111,0,0,'I',710,'I000710',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 17:25:22','darshan','2025-10-31 17:26:20'),(2112,0,0,'I',710,'I000710',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 17:25:22','darshan','2025-10-31 17:26:20'),(2113,0,0,'I',710,'I000710',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 17:25:22','darshan','2025-10-31 17:26:20'),(2114,0,0,'I',711,'I000711',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 17:29:52','','0000-00-00 00:00:00'),(2115,0,0,'I',712,'I000712',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 17:41:42','','0000-00-00 00:00:00'),(2116,0,0,'I',712,'I000712',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 17:41:42','','0000-00-00 00:00:00'),(2117,0,0,'I',712,'I000712',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,5,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-31 17:41:42','','0000-00-00 00:00:00'),(2118,0,0,'I',713,'I000713',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 18:01:19','','0000-00-00 00:00:00'),(2119,0,0,'I',713,'I000713',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 18:01:19','','0000-00-00 00:00:00'),(2120,0,0,'I',713,'I000713',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 18:01:19','','0000-00-00 00:00:00'),(2121,0,0,'I',713,'I000713',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-31 18:01:19','','0000-00-00 00:00:00'),(2122,0,0,'I',714,'I000714',2526,1,'0000-00-00','51219',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-10-31 18:21:47','drarchit','2025-10-31 18:23:39'),(2123,0,0,'I',714,'I000714',2526,2,'0000-00-00','51248',0,0,'CAP','','','','',0,56,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 18:22:12','drarchit','2025-10-31 18:23:39'),(2124,0,0,'I',714,'I000714',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 18:22:12','drarchit','2025-10-31 18:23:39'),(2125,0,0,'I',714,'I000714',2526,4,'0000-00-00','51412',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 18:22:12','drarchit','2025-10-31 18:23:39'),(2126,0,0,'I',715,'I000715',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 18:22:50','','0000-00-00 00:00:00'),(2127,0,0,'I',715,'I000715',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 18:22:50','','0000-00-00 00:00:00'),(2128,0,0,'I',715,'I000715',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-31 18:22:50','','0000-00-00 00:00:00'),(2129,0,0,'I',714,'I000714',2526,5,'0000-00-00','51414',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 18:23:39','','0000-00-00 00:00:00'),(2130,0,0,'I',716,'I000716',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 18:29:51','','0000-00-00 00:00:00'),(2131,0,0,'I',716,'I000716',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 18:29:51','','0000-00-00 00:00:00'),(2132,0,0,'I',717,'I000717',2526,1,'0000-00-00','51273',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 18:31:15','','0000-00-00 00:00:00'),(2133,0,0,'I',717,'I000717',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-31 18:31:15','','0000-00-00 00:00:00'),(2134,0,0,'I',717,'I000717',2526,3,'0000-00-00','51338',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 18:31:15','','0000-00-00 00:00:00'),(2135,0,0,'I',719,'I000719',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-1','','Dy',0,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-10-31 18:37:45','drjayant','2025-10-31 18:48:28'),(2136,0,0,'I',719,'I000719',2526,2,'0000-00-00','51376',0,0,'TAB','','','','',0,0,0,0,0,0,'0-1-0','','Dy',0,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-10-31 18:37:45','drjayant','2025-10-31 18:48:28'),(2137,0,0,'I',720,'I000720',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-10-31 18:37:57','drarchit','2025-10-31 18:38:31'),(2138,0,0,'I',720,'I000720',2526,2,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-10-31 18:38:31','','0000-00-00 00:00:00'),(2139,0,0,'I',720,'I000720',2526,3,'0000-00-00','51299',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 18:38:31','','0000-00-00 00:00:00'),(2140,0,0,'I',720,'I000720',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-31 18:38:31','','0000-00-00 00:00:00'),(2141,0,0,'I',721,'I000721',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 18:45:56','','0000-00-00 00:00:00'),(2142,0,0,'I',721,'I000721',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 18:45:56','','0000-00-00 00:00:00'),(2143,0,0,'I',719,'I000719',2526,3,'0000-00-00','51409',0,0,'TAB','','','','',0,0,0,0,0,0,'0-0-1','','Dy',0,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-10-31 18:48:07','drjayant','2025-10-31 18:48:28'),(2144,0,0,'I',719,'I000719',2526,4,'0000-00-00','51296',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-0','','Dy',0,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-10-31 18:48:07','drjayant','2025-10-31 18:48:28'),(2145,0,0,'I',722,'I000722',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 18:55:12','','0000-00-00 00:00:00'),(2146,0,0,'I',722,'I000722',2526,2,'0000-00-00','51262',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 18:55:12','','0000-00-00 00:00:00'),(2147,0,0,'I',722,'I000722',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-31 18:55:12','','0000-00-00 00:00:00'),(2148,0,0,'I',723,'I000723',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 18:56:56','','0000-00-00 00:00:00'),(2149,0,0,'I',724,'I000724',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:03:23','darshan','2025-10-31 19:04:13'),(2150,0,0,'I',724,'I000724',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:04:13','','0000-00-00 00:00:00'),(2151,0,0,'I',725,'I000725',2526,1,'0000-00-00','51415',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:09:25','','0000-00-00 00:00:00'),(2152,0,0,'I',725,'I000725',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:09:25','','0000-00-00 00:00:00'),(2153,0,0,'I',725,'I000725',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:09:25','','0000-00-00 00:00:00'),(2154,0,0,'I',726,'I000726',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:22:05','darshan','2025-10-31 19:22:36'),(2155,0,0,'I',726,'I000726',2526,2,'0000-00-00','51275',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'darshan','2025-10-31 19:22:05','darshan','2025-10-31 19:22:36'),(2156,0,0,'I',726,'I000726',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:22:36','','0000-00-00 00:00:00'),(2157,0,0,'I',726,'I000726',2526,4,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:22:36','','0000-00-00 00:00:00'),(2158,0,0,'I',726,'I000726',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-31 19:22:36','','0000-00-00 00:00:00'),(2159,0,0,'I',727,'I000727',2526,1,'0000-00-00','51229',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-31 19:25:16','drarchit','2025-10-31 19:25:30'),(2160,0,0,'I',727,'I000727',2526,2,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-10-31 19:25:16','drarchit','2025-10-31 19:25:30'),(2161,0,0,'I',727,'I000727',2526,3,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 19:25:30','','0000-00-00 00:00:00'),(2162,0,0,'I',728,'I000728',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:26:08','','0000-00-00 00:00:00'),(2163,0,0,'I',728,'I000728',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:26:08','','0000-00-00 00:00:00'),(2164,0,0,'I',729,'I000729',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:29:34','','0000-00-00 00:00:00'),(2165,0,0,'I',730,'I000730',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:40:24','','0000-00-00 00:00:00'),(2166,0,0,'I',730,'I000730',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:40:24','','0000-00-00 00:00:00'),(2167,0,0,'I',730,'I000730',2526,3,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:40:24','','0000-00-00 00:00:00'),(2168,0,0,'I',730,'I000730',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-31 19:40:24','','0000-00-00 00:00:00'),(2169,0,0,'I',730,'I000730',2526,5,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:40:24','','0000-00-00 00:00:00'),(2170,0,0,'I',731,'I000731',2526,1,'0000-00-00','51190',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:43:20','','0000-00-00 00:00:00'),(2171,0,0,'I',731,'I000731',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:43:20','','0000-00-00 00:00:00'),(2172,0,0,'I',732,'I000732',2526,1,'0000-00-00','51190',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:49:58','','0000-00-00 00:00:00'),(2173,0,0,'I',732,'I000732',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:49:58','','0000-00-00 00:00:00'),(2174,0,0,'I',733,'I000733',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:55:08','','0000-00-00 00:00:00'),(2175,0,0,'I',733,'I000733',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 19:55:08','','0000-00-00 00:00:00'),(2176,0,0,'I',734,'I000734',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:06:41','','0000-00-00 00:00:00'),(2177,0,0,'I',734,'I000734',2526,2,'0000-00-00','51234',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-10-31 20:06:41','','0000-00-00 00:00:00'),(2179,0,0,'I',736,'I000736',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:09:25','','0000-00-00 00:00:00'),(2180,0,0,'I',736,'I000736',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:09:25','','0000-00-00 00:00:00'),(2181,0,0,'I',735,'I000735',2526,1,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-10-31 20:11:30','drarchit','2025-10-31 20:13:25'),(2182,0,0,'I',735,'I000735',2526,2,'0000-00-00','51262',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 20:11:30','drarchit','2025-10-31 20:13:25'),(2183,0,0,'I',735,'I000735',2526,3,'0000-00-00','51231',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 20:11:30','drarchit','2025-10-31 20:13:25'),(2184,0,0,'I',735,'I000735',2526,4,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 20:11:30','drarchit','2025-10-31 20:13:25'),(2185,0,0,'I',735,'I000735',2526,5,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-10-31 20:11:30','drarchit','2025-10-31 20:13:25'),(2186,0,0,'I',735,'I000735',2526,6,'0000-00-00','51416',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 20:12:17','drarchit','2025-10-31 20:13:25'),(2187,0,0,'I',737,'I000737',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:13:05','','0000-00-00 00:00:00'),(2188,0,0,'I',737,'I000737',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:13:05','','0000-00-00 00:00:00'),(2189,0,0,'I',735,'I000735',2526,7,'0000-00-00','51417',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-10-31 20:13:25','','0000-00-00 00:00:00'),(2190,0,0,'I',738,'I000738',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:17:04','','0000-00-00 00:00:00'),(2191,0,0,'I',738,'I000738',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:17:04','','0000-00-00 00:00:00'),(2192,0,0,'I',738,'I000738',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-10-31 20:17:04','','0000-00-00 00:00:00'),(2193,0,0,'I',739,'I000739',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:21:03','','0000-00-00 00:00:00'),(2194,0,0,'I',739,'I000739',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:21:03','','0000-00-00 00:00:00'),(2195,0,0,'I',740,'I000740',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:24:41','','0000-00-00 00:00:00'),(2196,0,0,'I',740,'I000740',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:24:41','','0000-00-00 00:00:00'),(2197,0,0,'I',741,'I000741',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:33:06','','0000-00-00 00:00:00'),(2198,0,0,'I',741,'I000741',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:33:06','','0000-00-00 00:00:00'),(2199,0,0,'I',741,'I000741',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:33:06','','0000-00-00 00:00:00'),(2200,0,0,'I',742,'I000742',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:40:17','','0000-00-00 00:00:00'),(2201,0,0,'I',743,'I000743',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:45:52','','0000-00-00 00:00:00'),(2202,0,0,'I',743,'I000743',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:45:52','','0000-00-00 00:00:00'),(2203,0,0,'I',743,'I000743',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:45:52','','0000-00-00 00:00:00'),(2204,0,0,'I',743,'I000743',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-10-31 20:45:52','','0000-00-00 00:00:00'),(2205,0,0,'I',744,'I000744',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 20:47:59','darshan','2025-10-31 20:48:02'),(2206,0,0,'I',745,'I000745',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 21:06:53','','0000-00-00 00:00:00'),(2207,0,0,'I',745,'I000745',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-10-31 21:06:53','','0000-00-00 00:00:00'),(2208,0,0,'I',745,'I000745',2526,3,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-10-31 21:06:53','','0000-00-00 00:00:00'),(2209,0,0,'I',746,'I000746',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 10:41:14','darshan','2025-11-01 10:41:34'),(2210,0,0,'I',746,'I000746',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-01 10:41:14','darshan','2025-11-01 10:41:34'),(2212,0,0,'I',747,'I000747',2526,2,'0000-00-00','51376',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-01 11:03:27','drjayant','2025-11-01 11:08:32'),(2213,0,0,'I',747,'I000747',2526,3,'0000-00-00','51420',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-01 11:04:19','drjayant','2025-11-01 11:08:32'),(2214,0,0,'I',747,'I000747',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-01 11:05:59','drjayant','2025-11-01 11:08:32'),(2215,0,0,'I',747,'I000747',2526,4,'0000-00-00','51421',0,0,'TAB','','','','',0,180,0,0,0,0,'1-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-01 11:05:59','drjayant','2025-11-01 11:08:32'),(2216,0,0,'I',747,'I000747',2526,5,'0000-00-00','51409',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-01 11:05:59','drjayant','2025-11-01 11:08:32'),(2217,0,0,'I',748,'I000748',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 11:06:20','','0000-00-00 00:00:00'),(2218,0,0,'I',748,'I000748',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 11:06:20','','0000-00-00 00:00:00'),(2219,0,0,'I',748,'I000748',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 11:06:20','','0000-00-00 00:00:00'),(2220,0,0,'I',747,'I000747',2526,6,'0000-00-00','51422',0,0,'CAP','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-01 11:07:12','drjayant','2025-11-01 11:08:32'),(2221,0,0,'I',747,'I000747',2526,7,'0000-00-00','51377',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'drjayant','2025-11-01 11:07:12','drjayant','2025-11-01 11:08:32'),(2222,0,0,'I',747,'I000747',2526,8,'0000-00-00','51423',0,0,'POWDER','','','','',0,2,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-11-01 11:07:57','drjayant','2025-11-01 11:08:32'),(2223,0,0,'I',749,'I000749',2526,1,'0000-00-00','51424',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-01 11:16:35','drjayant','2025-11-01 13:17:30'),(2224,0,0,'I',749,'I000749',2526,2,'0000-00-00','51425',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-01 11:17:23','drjayant','2025-11-01 13:17:30'),(2225,0,0,'I',749,'I000749',2526,3,'0000-00-00','51426',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-01 11:18:29','drjayant','2025-11-01 13:17:30'),(2226,0,0,'I',749,'I000749',2526,4,'0000-00-00','51427',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-01 11:20:21','drjayant','2025-11-01 13:17:30'),(2227,0,0,'I',749,'I000749',2526,5,'0000-00-00','51428',0,0,'TAB','','','','',0,60,0,0,0,0,'4-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-01 11:23:04','drjayant','2025-11-01 13:17:30'),(2228,0,0,'I',749,'I000749',2526,6,'0000-00-00','51422',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-01 11:23:04','drjayant','2025-11-01 13:17:30'),(2229,0,0,'I',749,'I000749',2526,7,'0000-00-00','51429',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-01 11:24:04','drjayant','2025-11-01 13:17:30'),(2230,0,0,'I',749,'I000749',2526,8,'0000-00-00','51423',0,0,'POWDER','','','','',0,1,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-11-01 11:24:04','drjayant','2025-11-01 13:17:30'),(2231,0,0,'I',750,'I000750',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 11:25:08','','0000-00-00 00:00:00'),(2232,0,0,'I',751,'I000751',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-01 11:28:00','drjayant','2025-11-01 12:45:54'),(2233,0,0,'I',751,'I000751',2526,2,'0000-00-00','51376',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-01 11:28:00','drjayant','2025-11-01 12:45:54'),(2234,0,0,'I',752,'I000752',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 11:28:32','','0000-00-00 00:00:00'),(2235,0,0,'I',752,'I000752',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-01 11:28:32','','0000-00-00 00:00:00'),(2236,0,0,'I',754,'I000754',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 11:34:00','','0000-00-00 00:00:00'),(2237,0,0,'I',754,'I000754',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 11:34:00','','0000-00-00 00:00:00'),(2238,0,0,'I',754,'I000754',2526,3,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-01 11:34:00','','0000-00-00 00:00:00'),(2239,0,0,'I',754,'I000754',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-01 11:34:00','','0000-00-00 00:00:00'),(2240,0,0,'I',753,'I000753',2526,1,'0000-00-00','51430',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-01 11:34:56','drjayant','2025-11-01 11:36:53'),(2241,0,0,'I',753,'I000753',2526,2,'0000-00-00','51320',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-01 11:34:56','drjayant','2025-11-01 11:36:53'),(2242,0,0,'I',753,'I000753',2526,3,'0000-00-00','51376',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-01 11:34:56','drjayant','2025-11-01 11:36:53'),(2243,0,0,'I',753,'I000753',2526,4,'0000-00-00','51409',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-01 11:34:56','drjayant','2025-11-01 11:36:53'),(2244,0,0,'I',753,'I000753',2526,5,'0000-00-00','51422',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-01 11:34:56','drjayant','2025-11-01 11:36:53'),(2245,0,0,'I',753,'I000753',2526,6,'0000-00-00','51431',0,0,'POWDER','','','','',0,2,0,0,0,0,'0-0-15','','Dy',60,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-11-01 11:36:53','','0000-00-00 00:00:00'),(2246,0,0,'I',755,'I000755',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 11:38:47','','0000-00-00 00:00:00'),(2247,0,0,'I',755,'I000755',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 11:38:47','','0000-00-00 00:00:00'),(2248,0,0,'I',755,'I000755',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 11:38:47','','0000-00-00 00:00:00'),(2249,0,0,'I',755,'I000755',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-01 11:38:47','','0000-00-00 00:00:00'),(2250,0,0,'I',756,'I000756',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 11:55:18','darshan','2025-11-01 11:55:45'),(2251,0,0,'I',756,'I000756',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 11:55:18','darshan','2025-11-01 11:55:45'),(2252,0,0,'I',756,'I000756',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,0,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-01 11:55:45','','0000-00-00 00:00:00'),(2253,0,0,'I',757,'I000757',2526,1,'0000-00-00','51296',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-11-01 11:58:18','drjayant','2025-11-01 11:58:42'),(2254,0,0,'I',757,'I000757',2526,2,'0000-00-00','51422',0,0,'CAP','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-01 11:58:42','','0000-00-00 00:00:00'),(2255,0,0,'I',758,'I000758',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 11:59:14','drarchit','2025-11-01 12:00:40'),(2256,0,0,'I',758,'I000758',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-01 11:59:14','drarchit','2025-11-01 12:00:40'),(2257,0,0,'I',758,'I000758',2526,3,'0000-00-00','51220',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 11:59:14','drarchit','2025-11-01 12:00:40'),(2258,0,0,'I',758,'I000758',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 11:59:37','drarchit','2025-11-01 12:00:40'),(2259,0,0,'I',758,'I000758',2526,5,'0000-00-00','51432',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 12:00:06','drarchit','2025-11-01 12:00:40'),(2260,0,0,'I',758,'I000758',2526,6,'0000-00-00','51433',0,0,'INJ','','','','',0,1,0,0,0,0,'','','Dy',1,0,0,0,0,0,0,0,0,0,'232','','P',NULL,NULL,'drarchit','2025-11-01 12:00:37','drarchit','2025-11-01 12:00:40'),(2261,0,0,'I',759,'I000759',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 12:01:39','','0000-00-00 00:00:00'),(2262,0,0,'I',759,'I000759',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 12:01:39','','0000-00-00 00:00:00'),(2263,0,0,'I',759,'I000759',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-01 12:01:39','','0000-00-00 00:00:00'),(2264,0,0,'I',759,'I000759',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-01 12:01:39','','0000-00-00 00:00:00'),(2265,0,0,'I',760,'I000760',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 12:07:54','','0000-00-00 00:00:00'),(2266,0,0,'I',760,'I000760',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 12:07:54','','0000-00-00 00:00:00'),(2269,0,0,'I',761,'I000761',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 12:13:20','drarchit','2025-11-01 12:13:45'),(2270,0,0,'I',761,'I000761',2526,2,'0000-00-00','51373',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 12:13:45','','0000-00-00 00:00:00'),(2271,0,0,'I',761,'I000761',2526,3,'0000-00-00','51396',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 12:13:45','','0000-00-00 00:00:00'),(2272,0,0,'I',762,'I000762',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 12:23:45','drarchit','2025-11-01 12:32:16'),(2273,0,0,'I',762,'I000762',2526,2,'0000-00-00','51434',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 12:25:33','drarchit','2025-11-01 12:32:16'),(2274,0,0,'I',762,'I000762',2526,3,'0000-00-00','51432',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 12:25:33','drarchit','2025-11-01 12:32:16'),(2275,0,0,'I',762,'I000762',2526,4,'0000-00-00','51344',0,0,'TAB','','','','',0,20,0,0,0,0,'0-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-11-01 12:25:33','drarchit','2025-11-01 12:32:16'),(2276,0,0,'I',763,'I000763',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 12:30:50','','0000-00-00 00:00:00'),(2277,0,0,'I',763,'I000763',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 12:30:50','','0000-00-00 00:00:00'),(2278,0,0,'I',762,'I000762',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-01 12:32:16','','0000-00-00 00:00:00'),(2279,0,0,'I',764,'I000764',2526,1,'0000-00-00','51373',0,0,'CAP','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 12:33:38','drarchit','2025-11-01 12:34:08'),(2280,0,0,'I',764,'I000764',2526,2,'0000-00-00','51396',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 12:33:38','drarchit','2025-11-01 12:34:08'),(2281,0,0,'I',764,'I000764',2526,3,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 12:34:08','','0000-00-00 00:00:00'),(2282,0,0,'I',764,'I000764',2526,4,'0000-00-00','51219',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-11-01 12:34:08','','0000-00-00 00:00:00'),(2284,0,0,'I',751,'I000751',2526,3,'0000-00-00','51435',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-01 12:45:38','drjayant','2025-11-01 12:45:54'),(2285,0,0,'I',766,'I000766',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 12:53:41','darshan','2025-11-01 12:54:06'),(2286,0,0,'I',766,'I000766',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 12:53:41','darshan','2025-11-01 12:54:06'),(2287,0,0,'I',766,'I000766',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 12:54:06','','0000-00-00 00:00:00'),(2288,0,0,'I',767,'I000767',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',180,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-01 12:59:39','','0000-00-00 00:00:00'),(2289,0,0,'I',767,'I000767',2526,2,'0000-00-00','51191',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-01 12:59:39','','0000-00-00 00:00:00'),(2290,0,0,'I',768,'I000768',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-1-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:04:21','darshan','2025-11-01 13:04:58'),(2291,0,0,'I',768,'I000768',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:04:54','darshan','2025-11-01 13:04:58'),(2292,0,0,'I',769,'I000769',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:08:06','','0000-00-00 00:00:00'),(2293,0,0,'I',769,'I000769',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:08:06','','0000-00-00 00:00:00'),(2294,0,0,'I',769,'I000769',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:08:06','','0000-00-00 00:00:00'),(2295,0,0,'I',770,'I000770',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:12:47','','0000-00-00 00:00:00'),(2296,0,0,'I',770,'I000770',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,90,0,0,0,0,'.5-0-.5','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:12:47','','0000-00-00 00:00:00'),(2297,0,0,'I',770,'I000770',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-01 13:12:47','','0000-00-00 00:00:00'),(2298,0,0,'I',771,'I000771',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-01 13:16:49','drarchit','2025-11-01 13:19:07'),(2299,0,0,'I',771,'I000771',2526,2,'0000-00-00','51253',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-01 13:16:49','drarchit','2025-11-01 13:19:07'),(2300,0,0,'I',771,'I000771',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 13:16:49','drarchit','2025-11-01 13:19:07'),(2301,0,0,'I',771,'I000771',2526,4,'0000-00-00','51301',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 13:16:49','drarchit','2025-11-01 13:19:07'),(2302,0,0,'I',771,'I000771',2526,5,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-01 13:16:49','drarchit','2025-11-01 13:19:07'),(2303,0,0,'I',749,'I000749',2526,9,'0000-00-00','51437',0,0,'SYRUP','','','','',0,0,0,0,0,0,'0-0-25','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-01 13:17:30','','0000-00-00 00:00:00'),(2304,0,0,'I',772,'I000772',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,18,0,0,0,0,'.5-0-0','','Dy',35,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:17:42','darshan','2025-11-01 13:18:05'),(2305,0,0,'I',772,'I000772',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:17:42','darshan','2025-11-01 13:18:05'),(2306,0,0,'I',771,'I000771',2526,6,'0000-00-00','51238',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-11-01 13:19:07','','0000-00-00 00:00:00'),(2307,0,0,'I',771,'I000771',2526,7,'0000-00-00','51436',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 13:19:07','','0000-00-00 00:00:00'),(2308,0,0,'I',773,'I000773',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 13:21:59','','0000-00-00 00:00:00'),(2309,0,0,'I',773,'I000773',2526,2,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 13:21:59','','0000-00-00 00:00:00'),(2310,0,0,'I',773,'I000773',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-01 13:21:59','','0000-00-00 00:00:00'),(2311,0,0,'I',773,'I000773',2526,4,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 13:21:59','','0000-00-00 00:00:00'),(2312,0,0,'I',773,'I000773',2526,5,'0000-00-00','51384',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 13:21:59','','0000-00-00 00:00:00'),(2313,0,0,'I',773,'I000773',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-11-01 13:21:59','','0000-00-00 00:00:00'),(2314,0,0,'I',773,'I000773',2526,7,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 13:21:59','','0000-00-00 00:00:00'),(2315,0,0,'I',774,'I000774',2526,1,'0000-00-00','51334',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:22:47','','0000-00-00 00:00:00'),(2316,0,0,'I',774,'I000774',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:22:47','','0000-00-00 00:00:00'),(2318,0,0,'I',775,'I000775',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:28:37','darshan','2025-11-01 13:29:13'),(2319,0,0,'I',775,'I000775',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:29:13','','0000-00-00 00:00:00'),(2320,0,0,'I',775,'I000775',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:29:13','','0000-00-00 00:00:00'),(2321,0,0,'I',776,'I000776',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:32:19','','0000-00-00 00:00:00'),(2322,0,0,'I',776,'I000776',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:32:19','','0000-00-00 00:00:00'),(2323,0,0,'I',777,'I000777',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 13:38:36','drarchit','2025-11-01 13:43:35'),(2324,0,0,'I',778,'I000778',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-01 13:39:19','','0000-00-00 00:00:00'),(2325,0,0,'I',778,'I000778',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:39:19','','0000-00-00 00:00:00'),(2326,0,0,'I',778,'I000778',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:39:19','','0000-00-00 00:00:00'),(2327,0,0,'I',777,'I000777',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,10,0,0,0,0,'0-1-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 13:43:35','','0000-00-00 00:00:00'),(2328,0,0,'I',779,'I000779',2526,1,'0000-00-00','51220',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-01 13:45:27','drarchit','2025-11-01 13:45:47'),(2332,0,0,'I',779,'I000779',2526,2,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-01 13:45:47','','0000-00-00 00:00:00'),(2333,0,0,'I',779,'I000779',2526,3,'0000-00-00','51363',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','5ML TDS','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-01 13:45:47','','0000-00-00 00:00:00'),(2334,0,0,'I',780,'I000780',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:47:47','darshan','2025-11-01 13:48:01'),(2336,0,0,'I',780,'I000780',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:48:01','','0000-00-00 00:00:00'),(2337,0,0,'I',781,'I000781',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:54:39','darshan','2025-11-01 14:55:29'),(2338,0,0,'I',781,'I000781',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:54:50','darshan','2025-11-01 14:55:29'),(2339,0,0,'I',782,'I000782',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:59:29','','0000-00-00 00:00:00'),(2340,0,0,'I',782,'I000782',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:59:29','','0000-00-00 00:00:00'),(2341,0,0,'I',782,'I000782',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:59:29','','0000-00-00 00:00:00'),(2342,0,0,'I',782,'I000782',2526,4,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 13:59:29','','0000-00-00 00:00:00'),(2343,0,0,'I',783,'I000783',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 14:08:36','','0000-00-00 00:00:00'),(2344,0,0,'I',783,'I000783',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 14:08:36','','0000-00-00 00:00:00'),(2345,0,0,'I',784,'I000784',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 14:12:14','darshan','2025-11-01 14:12:41'),(2346,0,0,'I',784,'I000784',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 14:12:41','','0000-00-00 00:00:00'),(2347,0,0,'I',784,'I000784',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 14:12:41','','0000-00-00 00:00:00'),(2348,0,0,'I',784,'I000784',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-01 14:12:41','','0000-00-00 00:00:00'),(2349,0,0,'I',785,'I000785',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 14:20:39','','0000-00-00 00:00:00'),(2350,0,0,'I',785,'I000785',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 14:20:39','','0000-00-00 00:00:00'),(2351,0,0,'I',785,'I000785',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-01 14:20:39','','0000-00-00 00:00:00'),(2352,0,0,'I',786,'I000786',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 14:23:29','darshan','2025-11-01 14:23:41'),(2353,0,0,'I',786,'I000786',2526,2,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 14:23:29','darshan','2025-11-01 14:23:41'),(2354,0,0,'I',786,'I000786',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 14:23:41','','0000-00-00 00:00:00'),(2355,0,0,'I',787,'I000787',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,18,0,0,0,6,'1-1-1','','Dy',9,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-01 14:39:21','darshan','2025-11-01 14:40:15'),(2356,0,0,'I',787,'I000787',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 14:40:15','','0000-00-00 00:00:00'),(2357,0,0,'I',787,'I000787',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 14:40:15','','0000-00-00 00:00:00'),(2358,0,0,'I',787,'I000787',2526,4,'0000-00-00','51217',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 14:40:15','','0000-00-00 00:00:00'),(2359,0,0,'I',787,'I000787',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-01 14:40:15','','0000-00-00 00:00:00'),(2360,0,0,'I',788,'I000788',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 14:44:13','','0000-00-00 00:00:00'),(2361,0,0,'I',788,'I000788',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 14:44:13','','0000-00-00 00:00:00'),(2362,0,0,'I',781,'I000781',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-01 14:55:29','','0000-00-00 00:00:00'),(2363,0,0,'I',789,'I000789',2526,1,'0000-00-00','51322',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 14:59:15','','0000-00-00 00:00:00'),(2364,0,0,'I',789,'I000789',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 14:59:15','','0000-00-00 00:00:00'),(2365,0,0,'I',789,'I000789',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 14:59:15','','0000-00-00 00:00:00'),(2366,0,0,'I',790,'I000790',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 15:03:35','','0000-00-00 00:00:00'),(2367,0,0,'I',790,'I000790',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-01 15:03:35','','0000-00-00 00:00:00'),(2368,0,0,'I',791,'I000791',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 10:56:55','darshan','2025-11-03 10:58:16'),(2369,0,0,'I',791,'I000791',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 10:56:55','darshan','2025-11-03 10:58:16'),(2370,0,0,'I',791,'I000791',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 10:56:55','darshan','2025-11-03 10:58:16'),(2371,0,0,'I',792,'I000792',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 11:09:06','darshan','2025-12-19 10:52:53'),(2372,0,0,'I',792,'I000792',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 11:09:32','darshan','2025-12-19 10:52:53'),(2373,0,0,'I',792,'I000792',2526,3,'0000-00-00','51624',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 11:10:22','darshan','2025-12-19 10:52:53'),(2374,0,0,'I',793,'I000793',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 11:25:12','darshan','2025-11-03 11:25:42'),(2375,0,0,'I',793,'I000793',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 11:25:12','darshan','2025-11-03 11:25:42'),(2376,0,0,'I',793,'I000793',2526,3,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 11:25:12','darshan','2025-11-03 11:25:42'),(2377,0,0,'I',793,'I000793',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 11:25:12','darshan','2025-11-03 11:25:42'),(2379,0,0,'I',794,'I000794',2526,1,'0000-00-00','51296',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-03 11:25:28','drjayant','2025-11-03 11:27:26'),(2380,0,0,'I',794,'I000794',2526,2,'0000-00-00','51317',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-11-03 11:25:28','drjayant','2025-11-03 11:27:26'),(2381,0,0,'I',794,'I000794',2526,3,'0000-00-00','51409',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-03 11:25:28','drjayant','2025-11-03 11:27:26'),(2382,0,0,'I',793,'I000793',2526,5,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-03 11:25:42','','0000-00-00 00:00:00'),(2383,0,0,'I',795,'I000795',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 11:28:42','','0000-00-00 00:00:00'),(2384,0,0,'I',796,'I000796',2526,1,'0000-00-00','51440',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 11:35:19','','0000-00-00 00:00:00'),(2385,0,0,'I',796,'I000796',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 11:35:19','','0000-00-00 00:00:00'),(2386,0,0,'I',796,'I000796',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-03 11:35:19','','0000-00-00 00:00:00'),(2387,0,0,'I',797,'I000797',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:01:56','','0000-00-00 00:00:00'),(2388,0,0,'I',797,'I000797',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:01:56','','0000-00-00 00:00:00'),(2389,0,0,'I',797,'I000797',2526,3,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:01:56','','0000-00-00 00:00:00'),(2390,0,0,'I',797,'I000797',2526,4,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-03 12:01:56','','0000-00-00 00:00:00'),(2391,0,0,'I',798,'I000798',2526,1,'0000-00-00','51430',0,0,'TAB','','','','',0,120,0,0,0,0,'0-0-1','','Dy',120,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-03 12:06:32','drjayant','2025-11-03 12:10:44'),(2392,0,0,'I',799,'I000799',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:07:32','','0000-00-00 00:00:00'),(2393,0,0,'I',799,'I000799',2526,2,'0000-00-00','51190',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-03 12:07:32','','0000-00-00 00:00:00'),(2394,0,0,'I',799,'I000799',2526,3,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:07:32','','0000-00-00 00:00:00'),(2395,0,0,'I',798,'I000798',2526,2,'0000-00-00','51317',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-11-03 12:08:08','drjayant','2025-11-03 12:10:44'),(2396,0,0,'I',798,'I000798',2526,3,'0000-00-00','51442',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-03 12:08:08','drjayant','2025-11-03 12:10:44'),(2397,0,0,'I',798,'I000798',2526,4,'0000-00-00','51443',0,0,'TAB','','','','',0,120,0,0,0,0,'0-0-1','','Dy',120,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-03 12:09:02','drjayant','2025-11-03 12:10:44'),(2398,0,0,'I',798,'I000798',2526,5,'0000-00-00','51444',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-03 12:09:49','drjayant','2025-11-03 12:10:44'),(2399,0,0,'I',798,'I000798',2526,6,'0000-00-00','51445',0,0,'CAP','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-03 12:10:44','','0000-00-00 00:00:00'),(2400,0,0,'I',800,'I000800',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:11:15','','0000-00-00 00:00:00'),(2401,0,0,'I',800,'I000800',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:11:15','','0000-00-00 00:00:00'),(2402,0,0,'I',800,'I000800',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:11:15','','0000-00-00 00:00:00'),(2403,0,0,'I',800,'I000800',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:11:15','','0000-00-00 00:00:00'),(2404,0,0,'I',801,'I000801',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:14:48','','0000-00-00 00:00:00'),(2405,0,0,'I',801,'I000801',2526,2,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-03 12:14:48','','0000-00-00 00:00:00'),(2406,0,0,'I',802,'I000802',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:17:44','darshan','2025-11-03 12:19:21'),(2407,0,0,'I',802,'I000802',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:17:44','darshan','2025-11-03 12:19:21'),(2408,0,0,'I',802,'I000802',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:17:44','darshan','2025-11-03 12:19:21'),(2409,0,0,'I',802,'I000802',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:19:21','','0000-00-00 00:00:00'),(2410,0,0,'I',802,'I000802',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-03 12:19:21','','0000-00-00 00:00:00'),(2411,0,0,'I',803,'I000803',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:23:36','','0000-00-00 00:00:00'),(2412,0,0,'I',803,'I000803',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:23:36','','0000-00-00 00:00:00'),(2413,0,0,'I',803,'I000803',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:23:36','','0000-00-00 00:00:00'),(2414,0,0,'I',803,'I000803',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:23:36','','0000-00-00 00:00:00'),(2415,0,0,'I',804,'I000804',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:30:06','','0000-00-00 00:00:00'),(2416,0,0,'I',804,'I000804',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:30:06','','0000-00-00 00:00:00'),(2417,0,0,'I',804,'I000804',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-03 12:30:06','','0000-00-00 00:00:00'),(2418,0,0,'I',805,'I000805',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:37:28','','0000-00-00 00:00:00'),(2419,0,0,'I',805,'I000805',2526,2,'0000-00-00','51415',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:37:28','','0000-00-00 00:00:00'),(2420,0,0,'I',806,'I000806',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:41:52','','0000-00-00 00:00:00'),(2422,0,0,'I',807,'I000807',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-03 12:46:04','','0000-00-00 00:00:00'),(2423,0,0,'I',807,'I000807',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:46:04','','0000-00-00 00:00:00'),(2424,0,0,'I',808,'I000808',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:57:58','','0000-00-00 00:00:00'),(2425,0,0,'I',808,'I000808',2526,2,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:57:58','','0000-00-00 00:00:00'),(2426,0,0,'I',808,'I000808',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 12:57:58','','0000-00-00 00:00:00'),(2427,0,0,'I',808,'I000808',2526,4,'0000-00-00','51275',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'darshan','2025-11-03 12:57:58','','0000-00-00 00:00:00'),(2428,0,0,'I',808,'I000808',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-03 12:57:58','','0000-00-00 00:00:00'),(2429,0,0,'I',809,'I000809',2526,1,'0000-00-00','51215',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:02:31','','0000-00-00 00:00:00'),(2430,0,0,'I',809,'I000809',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:02:31','','0000-00-00 00:00:00'),(2431,0,0,'I',810,'I000810',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:07:19','darshan','2025-11-03 13:08:03'),(2432,0,0,'I',810,'I000810',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:07:19','darshan','2025-11-03 13:08:03'),(2433,0,0,'I',810,'I000810',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:08:03','','0000-00-00 00:00:00'),(2434,0,0,'I',810,'I000810',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-03 13:08:03','','0000-00-00 00:00:00'),(2435,0,0,'I',811,'I000811',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:11:20','','0000-00-00 00:00:00'),(2436,0,0,'I',812,'I000812',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,25,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-03 13:15:19','','0000-00-00 00:00:00'),(2437,0,0,'I',812,'I000812',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:15:19','','0000-00-00 00:00:00'),(2438,0,0,'I',812,'I000812',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:15:19','','0000-00-00 00:00:00'),(2439,0,0,'I',813,'I000813',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,23,0,0,0,0,'0-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:23:00','darshan','2025-11-03 13:23:24'),(2440,0,0,'I',813,'I000813',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:23:00','darshan','2025-11-03 13:23:24'),(2441,0,0,'I',813,'I000813',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-03 13:23:00','darshan','2025-11-03 13:23:24'),(2442,0,0,'I',813,'I000813',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-03 13:23:24','','0000-00-00 00:00:00'),(2443,0,0,'I',814,'I000814',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:28:07','darshan','2025-11-03 13:29:08'),(2444,0,0,'I',814,'I000814',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:28:07','darshan','2025-11-03 13:29:08'),(2445,0,0,'I',814,'I000814',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-03 13:29:08','','0000-00-00 00:00:00'),(2446,0,0,'I',815,'I000815',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:33:32','darshan','2025-11-03 13:34:01'),(2447,0,0,'I',815,'I000815',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:34:01','','0000-00-00 00:00:00'),(2450,0,0,'I',816,'I000816',2526,1,'0000-00-00','51209',0,0,'TAB','','','','',0,5,0,0,0,0,'.5-0-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:36:58','darshan','2025-11-03 13:37:26'),(2451,0,0,'I',817,'I000817',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:48:59','','0000-00-00 00:00:00'),(2452,0,0,'I',817,'I000817',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:48:59','','0000-00-00 00:00:00'),(2453,0,0,'I',817,'I000817',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-03 13:48:59','','0000-00-00 00:00:00'),(2454,0,0,'I',817,'I000817',2526,4,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:48:59','','0000-00-00 00:00:00'),(2455,0,0,'I',818,'I000818',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:55:11','','0000-00-00 00:00:00'),(2456,0,0,'I',818,'I000818',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 13:55:11','','0000-00-00 00:00:00'),(2457,0,0,'I',819,'I000819',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 14:01:48','','0000-00-00 00:00:00'),(2458,0,0,'I',819,'I000819',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 14:01:48','','0000-00-00 00:00:00'),(2459,0,0,'I',819,'I000819',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 14:01:48','','0000-00-00 00:00:00'),(2460,0,0,'I',820,'I000820',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 14:06:13','','0000-00-00 00:00:00'),(2461,0,0,'I',820,'I000820',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 14:06:13','','0000-00-00 00:00:00'),(2462,0,0,'I',821,'I000821',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 14:27:51','','0000-00-00 00:00:00'),(2463,0,0,'I',821,'I000821',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 14:27:51','','0000-00-00 00:00:00'),(2464,0,0,'I',821,'I000821',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-03 14:27:51','','0000-00-00 00:00:00'),(2465,0,0,'I',822,'I000822',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-03 14:33:34','','0000-00-00 00:00:00'),(2466,0,0,'I',822,'I000822',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 14:33:34','','0000-00-00 00:00:00'),(2467,0,0,'I',822,'I000822',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-11-03 14:33:34','','0000-00-00 00:00:00'),(2468,0,0,'I',822,'I000822',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 14:33:34','','0000-00-00 00:00:00'),(2469,0,0,'I',822,'I000822',2526,5,'0000-00-00','51215',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 14:33:34','','0000-00-00 00:00:00'),(2470,0,0,'I',823,'I000823',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 14:42:31','','0000-00-00 00:00:00'),(2471,0,0,'I',823,'I000823',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 14:42:31','','0000-00-00 00:00:00'),(2472,0,0,'I',823,'I000823',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 14:42:31','','0000-00-00 00:00:00'),(2473,0,0,'I',824,'I000824',2526,1,'0000-00-00','51322',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 17:07:12','darshan','2025-11-03 17:08:16'),(2474,0,0,'I',824,'I000824',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 17:07:12','darshan','2025-11-03 17:08:16'),(2475,0,0,'I',824,'I000824',2526,3,'0000-00-00','51446',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 17:08:16','','0000-00-00 00:00:00'),(2476,0,0,'I',825,'I000825',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 17:10:54','darshan','2025-11-03 17:11:05'),(2477,0,0,'I',825,'I000825',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 17:10:54','darshan','2025-11-03 17:11:05'),(2479,0,0,'I',826,'I000826',2526,1,'0000-00-00','51267',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 17:27:39','','0000-00-00 00:00:00'),(2480,0,0,'I',827,'I000827',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 17:31:46','','0000-00-00 00:00:00'),(2481,0,0,'I',827,'I000827',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-03 17:31:46','','0000-00-00 00:00:00'),(2482,0,0,'I',827,'I000827',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 17:31:46','','0000-00-00 00:00:00'),(2483,0,0,'I',828,'I000828',2526,1,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-03 17:41:17','','0000-00-00 00:00:00'),(2484,0,0,'I',829,'I000829',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 17:45:31','','0000-00-00 00:00:00'),(2485,0,0,'I',830,'I000830',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 17:52:16','','0000-00-00 00:00:00'),(2486,0,0,'I',830,'I000830',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 17:52:16','','0000-00-00 00:00:00'),(2487,0,0,'I',830,'I000830',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 17:52:16','','0000-00-00 00:00:00'),(2488,0,0,'I',830,'I000830',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-03 17:52:16','','0000-00-00 00:00:00'),(2489,0,0,'I',831,'I000831',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 18:12:16','','0000-00-00 00:00:00'),(2490,0,0,'I',831,'I000831',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 18:12:16','','0000-00-00 00:00:00'),(2491,0,0,'I',832,'I000832',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 18:28:19','','0000-00-00 00:00:00'),(2492,0,0,'I',832,'I000832',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 18:28:19','','0000-00-00 00:00:00'),(2493,0,0,'I',833,'I000833',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 18:34:28','','0000-00-00 00:00:00'),(2494,0,0,'I',834,'I000834',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-03 18:37:07','darshan','2025-11-03 18:38:04'),(2495,0,0,'I',834,'I000834',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 18:37:07','darshan','2025-11-03 18:38:04'),(2496,0,0,'I',834,'I000834',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 18:37:07','darshan','2025-11-03 18:38:04'),(2498,0,0,'I',834,'I000834',2526,4,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 18:38:04','','0000-00-00 00:00:00'),(2499,0,0,'I',835,'I000835',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 18:51:32','','0000-00-00 00:00:00'),(2500,0,0,'I',835,'I000835',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 18:51:32','','0000-00-00 00:00:00'),(2501,0,0,'I',835,'I000835',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-03 18:51:32','','0000-00-00 00:00:00'),(2502,0,0,'I',836,'I000836',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,75,0,0,0,0,'1-0-0','','Dy',75,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 18:54:01','','0000-00-00 00:00:00'),(2503,0,0,'I',837,'I000837',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 19:00:08','','0000-00-00 00:00:00'),(2504,0,0,'I',837,'I000837',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 19:00:08','','0000-00-00 00:00:00'),(2505,0,0,'I',838,'I000838',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 19:17:57','','0000-00-00 00:00:00'),(2506,0,0,'I',838,'I000838',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 19:17:57','','0000-00-00 00:00:00'),(2507,0,0,'I',838,'I000838',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 19:17:57','','0000-00-00 00:00:00'),(2508,0,0,'I',838,'I000838',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-03 19:17:57','','0000-00-00 00:00:00'),(2509,0,0,'I',840,'I000840',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 19:31:29','','0000-00-00 00:00:00'),(2510,0,0,'I',840,'I000840',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 19:31:29','','0000-00-00 00:00:00'),(2511,0,0,'I',840,'I000840',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-03 19:31:29','','0000-00-00 00:00:00'),(2512,0,0,'I',841,'I000841',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 19:35:54','','0000-00-00 00:00:00'),(2513,0,0,'I',841,'I000841',2526,2,'0000-00-00','51190',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 19:35:54','','0000-00-00 00:00:00'),(2514,0,0,'I',842,'I000842',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-03 19:43:10','darshan','2025-11-03 19:44:23'),(2515,0,0,'I',842,'I000842',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 19:43:10','darshan','2025-11-03 19:44:23'),(2516,0,0,'I',842,'I000842',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 19:44:23','','0000-00-00 00:00:00'),(2517,0,0,'I',843,'I000843',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 19:48:50','','0000-00-00 00:00:00'),(2518,0,0,'I',844,'I000844',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 20:03:36','','0000-00-00 00:00:00'),(2519,0,0,'I',844,'I000844',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 20:03:36','','0000-00-00 00:00:00'),(2520,0,0,'I',844,'I000844',2526,3,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-03 20:03:36','','0000-00-00 00:00:00'),(2521,0,0,'I',845,'I000845',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 20:12:54','darshan','2025-11-03 20:13:05'),(2522,0,0,'I',845,'I000845',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-03 20:12:54','darshan','2025-11-03 20:13:05'),(2523,0,0,'I',845,'I000845',2526,3,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-03 20:12:54','darshan','2025-11-03 20:13:05'),(2524,0,0,'I',845,'I000845',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-03 20:13:05','','0000-00-00 00:00:00'),(2525,0,0,'I',846,'I000846',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 10:35:27','darshan','2025-11-04 10:35:44'),(2526,0,0,'I',846,'I000846',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 10:35:44','','0000-00-00 00:00:00'),(2527,0,0,'I',847,'I000847',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-04 10:38:59','darshan','2025-11-04 10:39:26'),(2528,0,0,'I',847,'I000847',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 10:38:59','darshan','2025-11-04 10:39:26'),(2529,0,0,'I',847,'I000847',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 10:39:26','','0000-00-00 00:00:00'),(2530,0,0,'I',848,'I000848',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 11:11:31','','0000-00-00 00:00:00'),(2531,0,0,'I',848,'I000848',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 11:11:31','','0000-00-00 00:00:00'),(2532,0,0,'I',848,'I000848',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-04 11:11:31','','0000-00-00 00:00:00'),(2533,0,0,'I',849,'I000849',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 11:15:21','','0000-00-00 00:00:00'),(2534,0,0,'I',849,'I000849',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 11:15:21','','0000-00-00 00:00:00'),(2535,0,0,'I',849,'I000849',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-04 11:15:21','','0000-00-00 00:00:00'),(2536,0,0,'I',849,'I000849',2526,4,'0000-00-00','51322',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 11:15:21','','0000-00-00 00:00:00'),(2537,0,0,'I',849,'I000849',2526,5,'0000-00-00','51266',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'darshan','2025-11-04 11:15:21','','0000-00-00 00:00:00'),(2538,0,0,'I',850,'I000850',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 11:18:28','','0000-00-00 00:00:00'),(2539,0,0,'I',850,'I000850',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 11:18:28','','0000-00-00 00:00:00'),(2540,0,0,'I',850,'I000850',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-04 11:18:28','','0000-00-00 00:00:00'),(2541,0,0,'I',851,'I000851',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-04 11:36:31','darshan','2025-11-04 11:36:34'),(2542,0,0,'I',852,'I000852',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 11:58:35','darshan','2025-11-04 11:58:53'),(2543,0,0,'I',852,'I000852',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 11:58:53','','0000-00-00 00:00:00'),(2544,0,0,'I',853,'I000853',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 12:06:11','darshan','2025-11-04 12:06:18'),(2545,0,0,'I',853,'I000853',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 12:06:11','darshan','2025-11-04 12:06:18'),(2546,0,0,'I',853,'I000853',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 12:06:11','darshan','2025-11-04 12:06:18'),(2547,0,0,'I',853,'I000853',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-04 12:06:18','','0000-00-00 00:00:00'),(2548,0,0,'I',854,'I000854',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 12:10:16','','0000-00-00 00:00:00'),(2549,0,0,'I',854,'I000854',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 12:10:16','','0000-00-00 00:00:00'),(2550,0,0,'I',854,'I000854',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-04 12:10:16','','0000-00-00 00:00:00'),(2551,0,0,'I',854,'I000854',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-04 12:10:16','','0000-00-00 00:00:00'),(2552,0,0,'I',855,'I000855',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-04 12:12:57','darshan','2025-11-04 12:13:24'),(2553,0,0,'I',855,'I000855',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 12:12:57','darshan','2025-11-04 12:13:24'),(2554,0,0,'I',855,'I000855',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-04 12:12:57','darshan','2025-11-04 12:13:24'),(2555,0,0,'I',855,'I000855',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-04 12:13:24','','0000-00-00 00:00:00'),(2556,0,0,'I',856,'I000856',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 12:26:46','darshan','2025-11-04 12:27:07'),(2557,0,0,'I',856,'I000856',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-04 12:27:07','','0000-00-00 00:00:00'),(2558,0,0,'I',857,'I000857',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 12:32:57','darshan','2025-11-04 12:33:24'),(2559,0,0,'I',857,'I000857',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 12:32:57','darshan','2025-11-04 12:33:24'),(2560,0,0,'I',857,'I000857',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 12:32:57','darshan','2025-11-04 12:33:24'),(2561,0,0,'I',857,'I000857',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 12:32:57','darshan','2025-11-04 12:33:24'),(2562,0,0,'I',857,'I000857',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-04 12:33:24','','0000-00-00 00:00:00'),(2563,0,0,'I',858,'I000858',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 12:38:52','darshan','2025-11-04 12:39:41'),(2564,0,0,'I',858,'I000858',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 12:38:52','darshan','2025-11-04 12:39:41'),(2567,0,0,'I',858,'I000858',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 12:38:52','darshan','2025-11-04 12:39:41'),(2568,0,0,'I',859,'I000859',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 12:44:58','','0000-00-00 00:00:00'),(2569,0,0,'I',859,'I000859',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 12:44:58','','0000-00-00 00:00:00'),(2570,0,0,'I',859,'I000859',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-04 12:44:58','','0000-00-00 00:00:00'),(2571,0,0,'I',859,'I000859',2526,4,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 12:44:58','','0000-00-00 00:00:00'),(2572,0,0,'I',860,'I000860',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 13:28:32','darshan','2025-11-04 13:28:40'),(2573,0,0,'I',860,'I000860',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 13:28:32','darshan','2025-11-04 13:28:40'),(2574,0,0,'I',861,'I000861',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-04 13:31:04','darshan','2025-11-04 13:31:13'),(2575,0,0,'I',861,'I000861',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 13:31:04','darshan','2025-11-04 13:31:13'),(2576,0,0,'I',861,'I000861',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-04 13:31:04','darshan','2025-11-04 13:31:13'),(2577,0,0,'I',861,'I000861',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-04 13:31:04','darshan','2025-11-04 13:31:13'),(2578,0,0,'I',861,'I000861',2526,5,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 13:31:04','darshan','2025-11-04 13:31:13'),(2579,0,0,'I',862,'I000862',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 13:33:15','','0000-00-00 00:00:00'),(2580,0,0,'I',862,'I000862',2526,2,'0000-00-00','51189',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 13:33:15','','0000-00-00 00:00:00'),(2581,0,0,'I',863,'I000863',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 13:37:06','','0000-00-00 00:00:00'),(2582,0,0,'I',863,'I000863',2526,2,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 13:37:06','','0000-00-00 00:00:00'),(2583,0,0,'I',863,'I000863',2526,3,'0000-00-00','51194',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 13:37:06','','0000-00-00 00:00:00'),(2584,0,0,'I',863,'I000863',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-04 13:37:06','','0000-00-00 00:00:00'),(2585,0,0,'I',864,'I000864',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 13:55:52','darshan','2025-11-04 13:56:12'),(2586,0,0,'I',864,'I000864',2526,2,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 13:55:52','darshan','2025-11-04 13:56:12'),(2587,0,0,'I',864,'I000864',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 13:55:52','darshan','2025-11-04 13:56:12'),(2588,0,0,'I',864,'I000864',2526,4,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-04 13:55:52','darshan','2025-11-04 13:56:12'),(2589,0,0,'I',865,'I000865',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 14:04:32','','0000-00-00 00:00:00'),(2590,0,0,'I',865,'I000865',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 14:04:32','','0000-00-00 00:00:00'),(2591,0,0,'I',866,'I000866',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 14:10:31','darshan','2025-11-04 14:13:10'),(2592,0,0,'I',866,'I000866',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 14:10:31','darshan','2025-11-04 14:13:10'),(2593,0,0,'I',866,'I000866',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 14:10:31','darshan','2025-11-04 14:13:10'),(2594,0,0,'I',866,'I000866',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-04 14:10:31','darshan','2025-11-04 14:13:10'),(2600,0,0,'I',867,'I000867',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 14:29:05','darshan','2025-11-04 14:29:30'),(2601,0,0,'I',867,'I000867',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 14:29:05','darshan','2025-11-04 14:29:30'),(2602,0,0,'I',867,'I000867',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 14:29:05','darshan','2025-11-04 14:29:30'),(2603,0,0,'I',868,'I000868',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 17:22:30','','0000-00-00 00:00:00'),(2604,0,0,'I',868,'I000868',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 17:22:30','','0000-00-00 00:00:00'),(2605,0,0,'I',869,'I000869',2526,1,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 17:25:40','','0000-00-00 00:00:00'),(2606,0,0,'I',869,'I000869',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 17:25:40','','0000-00-00 00:00:00'),(2607,0,0,'I',870,'I000870',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,0,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-04 17:30:55','darshan','2025-11-04 17:31:19'),(2608,0,0,'I',870,'I000870',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 17:30:55','darshan','2025-11-04 17:31:19'),(2609,0,0,'I',870,'I000870',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 17:30:55','darshan','2025-11-04 17:31:19'),(2610,0,0,'I',871,'I000871',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 17:35:43','darshan','2025-11-04 17:36:08'),(2611,0,0,'I',871,'I000871',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 17:36:08','','0000-00-00 00:00:00'),(2612,0,0,'I',871,'I000871',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 17:36:08','','0000-00-00 00:00:00'),(2613,0,0,'I',872,'I000872',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 17:39:52','darshan','2025-11-04 17:40:55'),(2614,0,0,'I',872,'I000872',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 17:39:52','darshan','2025-11-04 17:40:55'),(2615,0,0,'I',872,'I000872',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 17:39:52','darshan','2025-11-04 17:40:55'),(2616,0,0,'I',872,'I000872',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 17:40:55','','0000-00-00 00:00:00'),(2617,0,0,'I',872,'I000872',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,0,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-04 17:40:55','','0000-00-00 00:00:00'),(2618,0,0,'I',873,'I000873',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 17:48:44','','0000-00-00 00:00:00'),(2619,0,0,'I',873,'I000873',2526,2,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 17:48:44','','0000-00-00 00:00:00'),(2620,0,0,'I',873,'I000873',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-04 17:48:44','','0000-00-00 00:00:00'),(2621,0,0,'I',874,'I000874',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,50,0,0,0,0,'.5-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 17:55:35','','0000-00-00 00:00:00'),(2622,0,0,'I',875,'I000875',2526,1,'0000-00-00','51349',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-04 17:57:15','drjayant','2025-11-04 18:03:00'),(2623,0,0,'I',875,'I000875',2526,2,'0000-00-00','51319',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-11-04 18:02:40','drjayant','2025-11-04 18:03:00'),(2624,0,0,'I',875,'I000875',2526,3,'0000-00-00','51350',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-11-04 18:03:00','','0000-00-00 00:00:00'),(2625,0,0,'I',876,'I000876',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 18:03:38','darshan','2025-11-04 18:04:06'),(2626,0,0,'I',876,'I000876',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 18:04:06','','0000-00-00 00:00:00'),(2627,0,0,'I',876,'I000876',2526,3,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-04 18:04:06','','0000-00-00 00:00:00'),(2628,0,0,'I',877,'I000877',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-04 18:13:09','','0000-00-00 00:00:00'),(2629,0,0,'I',878,'I000878',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 18:20:15','darshan','2025-11-04 18:27:30'),(2630,0,0,'I',878,'I000878',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 18:20:15','darshan','2025-11-04 18:27:30'),(2631,0,0,'I',878,'I000878',2526,3,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-04 18:20:15','darshan','2025-11-04 18:27:30'),(2633,0,0,'I',879,'I000879',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 18:29:35','darshan','2025-11-04 18:30:35'),(2634,0,0,'I',879,'I000879',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 18:29:35','darshan','2025-11-04 18:30:35'),(2637,0,0,'I',880,'I000880',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 18:51:15','darshan','2025-11-04 18:52:03'),(2638,0,0,'I',880,'I000880',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 18:52:03','','0000-00-00 00:00:00'),(2639,0,0,'I',880,'I000880',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 18:52:03','','0000-00-00 00:00:00'),(2640,0,0,'I',881,'I000881',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 18:54:38','darshan','2025-11-04 18:55:20'),(2641,0,0,'I',881,'I000881',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 18:54:38','darshan','2025-11-04 18:55:20'),(2644,0,0,'I',881,'I000881',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 18:55:04','darshan','2025-11-04 18:55:20'),(2645,0,0,'I',881,'I000881',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-04 18:55:20','','0000-00-00 00:00:00'),(2646,0,0,'I',882,'I000882',2526,1,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 18:57:20','','0000-00-00 00:00:00'),(2647,0,0,'I',882,'I000882',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 18:57:20','','0000-00-00 00:00:00'),(2648,0,0,'I',882,'I000882',2526,3,'0000-00-00','51322',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 18:57:20','','0000-00-00 00:00:00'),(2649,0,0,'I',883,'I000883',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-04 19:03:11','','0000-00-00 00:00:00'),(2650,0,0,'I',883,'I000883',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 19:03:11','','0000-00-00 00:00:00'),(2651,0,0,'I',883,'I000883',2526,3,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 19:03:11','','0000-00-00 00:00:00'),(2652,0,0,'I',883,'I000883',2526,4,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 19:03:11','','0000-00-00 00:00:00'),(2653,0,0,'I',883,'I000883',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-04 19:03:11','','0000-00-00 00:00:00'),(2654,0,0,'I',884,'I000884',2526,1,'0000-00-00','51256',0,0,'SYRUP','','','','',0,1,0,0,0,0,'1-1-1','5ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 19:08:18','darshan','2025-11-04 19:08:43'),(2655,0,0,'I',884,'I000884',2526,2,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-04 19:08:43','','0000-00-00 00:00:00'),(2656,0,0,'I',885,'I000885',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 19:14:33','darshan','2025-11-04 19:15:10'),(2657,0,0,'I',885,'I000885',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 19:14:33','darshan','2025-11-04 19:15:10'),(2659,0,0,'I',885,'I000885',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 19:14:50','darshan','2025-11-04 19:15:10'),(2660,0,0,'I',886,'I000886',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 19:30:50','','0000-00-00 00:00:00'),(2661,0,0,'I',886,'I000886',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,5,0,0,0,0,'.5-0-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 19:30:50','','0000-00-00 00:00:00'),(2662,0,0,'I',886,'I000886',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-11-04 19:30:50','','0000-00-00 00:00:00'),(2663,0,0,'I',886,'I000886',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-04 19:30:50','','0000-00-00 00:00:00'),(2664,0,0,'I',886,'I000886',2526,5,'0000-00-00','51447',0,0,'SYRUP','','','','',0,1,0,0,0,0,'0-0-1','7ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 19:30:50','','0000-00-00 00:00:00'),(2665,0,0,'I',887,'I000887',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 19:38:16','darshan','2025-11-04 19:39:16'),(2667,0,0,'I',887,'I000887',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 19:38:38','darshan','2025-11-04 19:39:16'),(2668,0,0,'I',887,'I000887',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 19:38:45','darshan','2025-11-04 19:39:16'),(2669,0,0,'I',887,'I000887',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 19:39:16','','0000-00-00 00:00:00'),(2670,0,0,'I',888,'I000888',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 19:43:10','darshan','2025-11-04 19:43:52'),(2671,0,0,'I',888,'I000888',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 19:43:36','darshan','2025-11-04 19:43:52'),(2672,0,0,'I',888,'I000888',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 19:43:36','darshan','2025-11-04 19:43:52'),(2673,0,0,'I',888,'I000888',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-04 19:43:52','','0000-00-00 00:00:00'),(2674,0,0,'I',889,'I000889',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 20:11:37','darshan','2025-11-04 20:11:48'),(2675,0,0,'I',889,'I000889',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 20:11:37','darshan','2025-11-04 20:11:48'),(2676,0,0,'I',889,'I000889',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 20:11:37','darshan','2025-11-04 20:11:48'),(2677,0,0,'I',889,'I000889',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-04 20:11:37','darshan','2025-11-04 20:11:48'),(2678,0,0,'I',890,'I000890',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 20:28:03','darshan','2025-11-04 20:28:34'),(2679,0,0,'I',890,'I000890',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 20:28:15','darshan','2025-11-04 20:28:34'),(2680,0,0,'I',890,'I000890',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-04 20:28:15','darshan','2025-11-04 20:28:34'),(2681,0,0,'I',890,'I000890',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-04 20:28:15','darshan','2025-11-04 20:28:34'),(2682,0,0,'I',891,'I000891',2526,1,'0000-00-00','51186',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 10:40:21','darshan','2025-11-05 10:40:48'),(2683,0,0,'I',891,'I000891',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-05 10:40:48','','0000-00-00 00:00:00'),(2684,0,0,'I',892,'I000892',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,50,0,0,0,0,'.5-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 10:43:33','darshan','2025-11-05 10:43:55'),(2685,0,0,'I',892,'I000892',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 10:43:33','darshan','2025-11-05 10:43:55'),(2686,0,0,'I',894,'I000894',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 10:49:49','darshan','2025-11-05 10:49:57'),(2687,0,0,'I',894,'I000894',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 10:49:49','darshan','2025-11-05 10:49:57'),(2688,0,0,'I',895,'I000895',2526,1,'0000-00-00','51430',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-05 11:05:38','drjayant','2025-11-05 13:25:52'),(2689,0,0,'I',895,'I000895',2526,2,'0000-00-00','51409',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-05 11:05:38','drjayant','2025-11-05 13:25:52'),(2690,0,0,'I',896,'I000896',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-05 11:13:51','darshan','2025-11-05 11:14:17'),(2691,0,0,'I',896,'I000896',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 11:13:51','darshan','2025-11-05 11:14:17'),(2692,0,0,'I',896,'I000896',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 11:13:51','darshan','2025-11-05 11:14:17'),(2694,0,0,'I',898,'I000898',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 11:23:42','','0000-00-00 00:00:00'),(2695,0,0,'I',898,'I000898',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-05 11:23:42','','0000-00-00 00:00:00'),(2696,0,0,'I',898,'I000898',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 11:23:42','','0000-00-00 00:00:00'),(2697,0,0,'I',897,'I000897',2526,1,'0000-00-00','51450',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-05 11:24:40','drjayant','2025-11-05 11:30:36'),(2698,0,0,'I',897,'I000897',2526,2,'0000-00-00','51451',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-05 11:24:40','drjayant','2025-11-05 11:30:36'),(2699,0,0,'I',899,'I000899',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 11:27:07','darshan','2025-11-05 11:27:22'),(2700,0,0,'I',899,'I000899',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 11:27:07','darshan','2025-11-05 11:27:22'),(2701,0,0,'I',899,'I000899',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 11:27:22','','0000-00-00 00:00:00'),(2702,0,0,'I',900,'I000900',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 11:32:16','','0000-00-00 00:00:00'),(2704,0,0,'I',902,'I000902',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,50,0,0,0,0,'.5-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 11:45:14','','0000-00-00 00:00:00'),(2705,0,0,'I',902,'I000902',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 11:45:14','','0000-00-00 00:00:00'),(2706,0,0,'I',903,'I000903',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 11:58:30','','0000-00-00 00:00:00'),(2707,0,0,'I',903,'I000903',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 11:58:30','','0000-00-00 00:00:00'),(2708,0,0,'I',904,'I000904',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 12:10:32','','0000-00-00 00:00:00'),(2709,0,0,'I',905,'I000905',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 12:14:15','darshan','2025-11-05 12:15:20'),(2710,0,0,'I',901,'I000901',2526,1,'0000-00-00','51450',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-05 12:27:59','drjayant','2025-11-05 12:29:08'),(2711,0,0,'I',901,'I000901',2526,2,'0000-00-00','51452',0,0,'SOL','','','','',0,1,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-11-05 12:28:53','drjayant','2025-11-05 12:29:08'),(2712,0,0,'I',906,'I000906',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 12:30:38','','0000-00-00 00:00:00'),(2713,0,0,'I',906,'I000906',2526,2,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 12:30:38','','0000-00-00 00:00:00'),(2714,0,0,'I',906,'I000906',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 12:30:38','','0000-00-00 00:00:00'),(2715,0,0,'I',907,'I000907',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 12:41:07','','0000-00-00 00:00:00'),(2716,0,0,'I',907,'I000907',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 12:41:07','','0000-00-00 00:00:00'),(2717,0,0,'I',907,'I000907',2526,3,'0000-00-00','51190',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-05 12:41:07','','0000-00-00 00:00:00'),(2718,0,0,'I',908,'I000908',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 12:44:48','','0000-00-00 00:00:00'),(2719,0,0,'I',909,'I000909',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 12:47:38','','0000-00-00 00:00:00'),(2720,0,0,'I',909,'I000909',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 12:47:38','','0000-00-00 00:00:00'),(2721,0,0,'I',910,'I000910',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 12:56:52','','0000-00-00 00:00:00'),(2722,0,0,'I',910,'I000910',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-05 12:56:52','','0000-00-00 00:00:00'),(2723,0,0,'I',910,'I000910',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 12:56:52','','0000-00-00 00:00:00'),(2724,0,0,'I',910,'I000910',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 12:56:52','','0000-00-00 00:00:00'),(2725,0,0,'I',911,'I000911',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-05 12:59:25','','0000-00-00 00:00:00'),(2726,0,0,'I',911,'I000911',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 12:59:25','','0000-00-00 00:00:00'),(2727,0,0,'I',911,'I000911',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-11-05 12:59:25','','0000-00-00 00:00:00'),(2728,0,0,'I',911,'I000911',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 12:59:25','','0000-00-00 00:00:00'),(2729,0,0,'I',911,'I000911',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-05 12:59:25','','0000-00-00 00:00:00'),(2730,0,0,'I',893,'I000893',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:08:37','','0000-00-00 00:00:00'),(2731,0,0,'I',893,'I000893',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:08:37','','0000-00-00 00:00:00'),(2732,0,0,'I',912,'I000912',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:17:41','','0000-00-00 00:00:00'),(2733,0,0,'I',912,'I000912',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:17:41','','0000-00-00 00:00:00'),(2734,0,0,'I',912,'I000912',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:17:41','','0000-00-00 00:00:00'),(2735,0,0,'I',912,'I000912',2526,4,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:17:41','','0000-00-00 00:00:00'),(2736,0,0,'I',912,'I000912',2526,5,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:17:41','','0000-00-00 00:00:00'),(2737,0,0,'I',913,'I000913',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:22:02','','0000-00-00 00:00:00'),(2738,0,0,'I',895,'I000895',2526,3,'0000-00-00','51435',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-05 13:23:04','drjayant','2025-11-05 13:25:52'),(2739,0,0,'I',895,'I000895',2526,4,'0000-00-00','51453',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-05 13:24:01','drjayant','2025-11-05 13:25:52'),(2740,0,0,'I',895,'I000895',2526,5,'0000-00-00','51454',0,0,'OINT','','','','',0,1,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-11-05 13:25:10','drjayant','2025-11-05 13:25:52'),(2741,0,0,'I',895,'I000895',2526,6,'0000-00-00','51422',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-05 13:25:52','','0000-00-00 00:00:00'),(2742,0,0,'I',914,'I000914',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:28:09','','0000-00-00 00:00:00'),(2743,0,0,'I',914,'I000914',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:28:09','','0000-00-00 00:00:00'),(2744,0,0,'I',915,'I000915',2526,1,'0000-00-00','51448',0,0,'SYRUP','','','','',0,1,0,0,0,0,'1-0-0','3 ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:32:01','','0000-00-00 00:00:00'),(2745,0,0,'I',915,'I000915',2526,2,'0000-00-00','51256',0,0,'SYRUP','','','','',0,1,0,0,0,0,'1-1-1','5ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:32:01','','0000-00-00 00:00:00'),(2746,0,0,'I',915,'I000915',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-05 13:32:01','','0000-00-00 00:00:00'),(2747,0,0,'I',916,'I000916',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:35:59','','0000-00-00 00:00:00'),(2748,0,0,'I',916,'I000916',2526,2,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:35:59','','0000-00-00 00:00:00'),(2749,0,0,'I',916,'I000916',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:35:59','','0000-00-00 00:00:00'),(2750,0,0,'I',917,'I000917',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:49:48','','0000-00-00 00:00:00'),(2751,0,0,'I',917,'I000917',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:49:48','','0000-00-00 00:00:00'),(2752,0,0,'I',917,'I000917',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:49:48','','0000-00-00 00:00:00'),(2753,0,0,'I',918,'I000918',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,25,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-05 13:57:18','darshan','2025-11-05 13:58:07'),(2754,0,0,'I',918,'I000918',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:57:18','darshan','2025-11-05 13:58:07'),(2755,0,0,'I',918,'I000918',2526,3,'0000-00-00','51289',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:57:18','darshan','2025-11-05 13:58:07'),(2757,0,0,'I',918,'I000918',2526,4,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 13:57:50','darshan','2025-11-05 13:58:07'),(2758,0,0,'I',919,'I000919',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 14:22:01','darshan','2025-11-05 14:22:29'),(2759,0,0,'I',919,'I000919',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 14:22:29','','0000-00-00 00:00:00'),(2760,0,0,'I',919,'I000919',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 14:22:29','','0000-00-00 00:00:00'),(2761,0,0,'I',920,'I000920',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-05 14:25:33','darshan','2025-11-05 14:26:09'),(2762,0,0,'I',920,'I000920',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 14:25:33','darshan','2025-11-05 14:26:09'),(2763,0,0,'I',920,'I000920',2526,3,'0000-00-00','51208',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 14:25:33','darshan','2025-11-05 14:26:09'),(2764,0,0,'I',920,'I000920',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 14:26:09','','0000-00-00 00:00:00'),(2765,0,0,'I',921,'I000921',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 14:58:22','','0000-00-00 00:00:00'),(2766,0,0,'I',921,'I000921',2526,2,'0000-00-00','51256',0,0,'SYRUP','','','','',0,1,0,0,0,0,'1-1-1','5ml','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 14:58:22','','0000-00-00 00:00:00'),(2767,0,0,'I',921,'I000921',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 14:58:22','','0000-00-00 00:00:00'),(2769,0,0,'I',922,'I000922',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 17:32:54','darshan','2025-11-05 17:33:21'),(2770,0,0,'I',922,'I000922',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 17:32:54','darshan','2025-11-05 17:33:21'),(2771,0,0,'I',922,'I000922',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-05 17:32:54','darshan','2025-11-05 17:33:21'),(2772,0,0,'I',922,'I000922',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 17:33:21','','0000-00-00 00:00:00'),(2773,0,0,'I',923,'I000923',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,70,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 17:37:35','','0000-00-00 00:00:00'),(2774,0,0,'I',924,'I000924',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 17:41:01','','0000-00-00 00:00:00'),(2775,0,0,'I',924,'I000924',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 17:41:01','','0000-00-00 00:00:00'),(2776,0,0,'I',925,'I000925',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 17:47:02','','0000-00-00 00:00:00'),(2777,0,0,'I',925,'I000925',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 17:47:02','','0000-00-00 00:00:00'),(2778,0,0,'I',925,'I000925',2526,3,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-05 17:47:02','','0000-00-00 00:00:00'),(2779,0,0,'I',925,'I000925',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-05 17:47:02','','0000-00-00 00:00:00'),(2780,0,0,'I',926,'I000926',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-05 17:50:52','darshan','2025-11-05 17:51:04'),(2781,0,0,'I',926,'I000926',2526,2,'0000-00-00','51189',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 17:50:52','darshan','2025-11-05 17:51:04'),(2782,0,0,'I',926,'I000926',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 17:50:52','darshan','2025-11-05 17:51:04'),(2783,0,0,'I',927,'I000927',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 17:59:20','','0000-00-00 00:00:00'),(2784,0,0,'I',927,'I000927',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 17:59:20','','0000-00-00 00:00:00'),(2785,0,0,'I',928,'I000928',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 18:14:12','','0000-00-00 00:00:00'),(2786,0,0,'I',928,'I000928',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 18:14:12','','0000-00-00 00:00:00'),(2787,0,0,'I',928,'I000928',2526,3,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 18:14:12','','0000-00-00 00:00:00'),(2788,0,0,'I',929,'I000929',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-11-05 18:28:31','','0000-00-00 00:00:00'),(2789,0,0,'I',929,'I000929',2526,2,'0000-00-00','51376',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-05 18:28:31','','0000-00-00 00:00:00'),(2790,0,0,'I',930,'I000930',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 18:38:40','darshan','2025-11-05 18:39:12'),(2791,0,0,'I',930,'I000930',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-05 18:38:40','darshan','2025-11-05 18:39:12'),(2793,0,0,'I',931,'I000931',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 18:47:07','','0000-00-00 00:00:00'),(2794,0,0,'I',931,'I000931',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 18:47:07','','0000-00-00 00:00:00'),(2795,0,0,'I',931,'I000931',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 18:47:07','','0000-00-00 00:00:00'),(2796,0,0,'I',932,'I000932',2526,1,'0000-00-00','51320',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-05 18:50:18','','0000-00-00 00:00:00'),(2797,0,0,'I',932,'I000932',2526,2,'0000-00-00','51376',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-05 18:50:18','','0000-00-00 00:00:00'),(2798,0,0,'I',933,'I000933',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 18:52:09','darshan','2025-11-05 18:52:39'),(2799,0,0,'I',933,'I000933',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 18:52:09','darshan','2025-11-05 18:52:39'),(2800,0,0,'I',933,'I000933',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 18:52:09','darshan','2025-11-05 18:52:39'),(2802,0,0,'I',934,'I000934',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 18:55:51','','0000-00-00 00:00:00'),(2803,0,0,'I',934,'I000934',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 18:55:51','','0000-00-00 00:00:00'),(2804,0,0,'I',935,'I000935',2526,1,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-05 19:06:51','darshan','2025-11-05 19:07:07'),(2805,0,0,'I',935,'I000935',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 19:06:51','darshan','2025-11-05 19:07:07'),(2806,0,0,'I',936,'I000936',2526,1,'0000-00-00','51455',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-05 19:16:11','','0000-00-00 00:00:00'),(2807,0,0,'I',936,'I000936',2526,2,'0000-00-00','51350',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-11-05 19:16:11','','0000-00-00 00:00:00'),(2808,0,0,'I',937,'I000937',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 19:24:54','','0000-00-00 00:00:00'),(2809,0,0,'I',937,'I000937',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 19:24:54','','0000-00-00 00:00:00'),(2810,0,0,'I',937,'I000937',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-05 19:24:54','','0000-00-00 00:00:00'),(2811,0,0,'I',938,'I000938',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 19:31:22','darshan','2025-11-05 19:31:43'),(2812,0,0,'I',938,'I000938',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 19:31:22','darshan','2025-11-05 19:31:43'),(2813,0,0,'I',938,'I000938',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-05 19:31:22','darshan','2025-11-05 19:31:43'),(2814,0,0,'I',938,'I000938',2526,4,'0000-00-00','51201',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 19:31:43','','0000-00-00 00:00:00'),(2815,0,0,'I',939,'I000939',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 19:37:40','','0000-00-00 00:00:00'),(2816,0,0,'I',939,'I000939',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 19:37:40','','0000-00-00 00:00:00'),(2817,0,0,'I',939,'I000939',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 19:37:40','','0000-00-00 00:00:00'),(2818,0,0,'I',939,'I000939',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-05 19:37:40','','0000-00-00 00:00:00'),(2819,0,0,'I',940,'I000940',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 19:43:19','','0000-00-00 00:00:00'),(2820,0,0,'I',940,'I000940',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 19:43:19','','0000-00-00 00:00:00'),(2821,0,0,'I',941,'I000941',2526,1,'0000-00-00','51277',0,0,'OINT','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'darshan','2025-11-05 19:51:09','','0000-00-00 00:00:00'),(2822,0,0,'I',941,'I000941',2526,2,'0000-00-00','51276',0,0,'CAP','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 19:51:09','','0000-00-00 00:00:00'),(2823,0,0,'I',942,'I000942',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 19:59:22','','0000-00-00 00:00:00'),(2824,0,0,'I',942,'I000942',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 19:59:22','','0000-00-00 00:00:00'),(2825,0,0,'I',942,'I000942',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 19:59:22','','0000-00-00 00:00:00'),(2826,0,0,'I',942,'I000942',2526,4,'0000-00-00','51275',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'darshan','2025-11-05 19:59:22','','0000-00-00 00:00:00'),(2827,0,0,'I',942,'I000942',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-05 19:59:22','','0000-00-00 00:00:00'),(2828,0,0,'I',943,'I000943',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 20:04:16','darshan','2025-11-05 20:04:33'),(2829,0,0,'I',943,'I000943',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 20:04:16','darshan','2025-11-05 20:04:33'),(2830,0,0,'I',943,'I000943',2526,3,'0000-00-00','51219',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'darshan','2025-11-05 20:04:33','','0000-00-00 00:00:00'),(2831,0,0,'I',944,'I000944',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-05 20:19:37','','0000-00-00 00:00:00'),(2832,0,0,'I',945,'I000945',2526,1,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 10:48:15','darshan','2025-11-06 10:48:57'),(2835,0,0,'I',945,'I000945',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 10:48:15','darshan','2025-11-06 10:48:57'),(2836,0,0,'I',945,'I000945',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,30,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 10:48:34','darshan','2025-11-06 10:48:57'),(2837,0,0,'I',946,'I000946',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 10:53:30','','0000-00-00 00:00:00'),(2838,0,0,'I',946,'I000946',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 10:53:30','','0000-00-00 00:00:00'),(2839,0,0,'I',947,'I000947',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-06 10:58:06','','0000-00-00 00:00:00'),(2840,0,0,'I',947,'I000947',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 10:58:06','','0000-00-00 00:00:00'),(2841,0,0,'I',947,'I000947',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 10:58:06','','0000-00-00 00:00:00'),(2842,0,0,'I',947,'I000947',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-06 10:58:06','','0000-00-00 00:00:00'),(2843,0,0,'I',948,'I000948',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 11:14:56','','0000-00-00 00:00:00'),(2844,0,0,'I',949,'I000949',2526,1,'0000-00-00','51376',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-06 11:16:39','drjayant','2025-11-06 11:18:21'),(2845,0,0,'I',949,'I000949',2526,2,'0000-00-00','51420',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-06 11:16:39','drjayant','2025-11-06 11:18:21'),(2846,0,0,'I',949,'I000949',2526,3,'0000-00-00','51421',0,0,'TAB','','','','',0,120,0,0,0,0,'1-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-06 11:16:39','drjayant','2025-11-06 11:18:21'),(2847,0,0,'I',949,'I000949',2526,4,'0000-00-00','51409',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-06 11:16:39','drjayant','2025-11-06 11:18:21'),(2848,0,0,'I',949,'I000949',2526,5,'0000-00-00','51456',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-06 11:17:15','drjayant','2025-11-06 11:18:21'),(2849,0,0,'I',949,'I000949',2526,6,'0000-00-00','51457',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-06 11:18:21','','0000-00-00 00:00:00'),(2850,0,0,'I',949,'I000949',2526,7,'0000-00-00','51307',0,0,'INJ','','','','',0,1,0,0,0,0,'','28 U - 18 ','Dy',60,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drjayant','2025-11-06 11:18:21','','0000-00-00 00:00:00'),(2851,0,0,'I',950,'I000950',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 11:20:20','','0000-00-00 00:00:00'),(2852,0,0,'I',950,'I000950',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 11:20:20','','0000-00-00 00:00:00'),(2853,0,0,'I',951,'I000951',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 11:24:01','','0000-00-00 00:00:00'),(2854,0,0,'I',951,'I000951',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 11:24:01','','0000-00-00 00:00:00'),(2855,0,0,'I',951,'I000951',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-06 11:24:01','','0000-00-00 00:00:00'),(2856,0,0,'I',952,'I000952',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-06 11:29:41','darshan','2025-11-06 11:30:28'),(2857,0,0,'I',952,'I000952',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 11:29:41','darshan','2025-11-06 11:30:28'),(2858,0,0,'I',952,'I000952',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 11:29:41','darshan','2025-11-06 11:30:28'),(2859,0,0,'I',952,'I000952',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-06 11:29:41','darshan','2025-11-06 11:30:28'),(2860,0,0,'I',953,'I000953',2526,1,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 11:53:06','','0000-00-00 00:00:00'),(2861,0,0,'I',953,'I000953',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 11:53:06','','0000-00-00 00:00:00'),(2862,0,0,'I',953,'I000953',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 11:53:06','','0000-00-00 00:00:00'),(2863,0,0,'I',954,'I000954',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 12:02:22','','0000-00-00 00:00:00'),(2864,0,0,'I',954,'I000954',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 12:02:22','','0000-00-00 00:00:00'),(2865,0,0,'I',955,'I000955',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 12:06:06','darshan','2025-11-06 12:06:25'),(2866,0,0,'I',955,'I000955',2526,2,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-06 12:06:06','darshan','2025-11-06 12:06:25'),(2867,0,0,'I',955,'I000955',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 12:06:25','','0000-00-00 00:00:00'),(2868,0,0,'I',956,'I000956',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-06 12:14:13','','0000-00-00 00:00:00'),(2869,0,0,'I',956,'I000956',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 12:14:13','','0000-00-00 00:00:00'),(2870,0,0,'I',956,'I000956',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 12:14:13','','0000-00-00 00:00:00'),(2871,0,0,'I',956,'I000956',2526,4,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 12:14:13','','0000-00-00 00:00:00'),(2872,0,0,'I',957,'I000957',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 12:18:44','','0000-00-00 00:00:00'),(2873,0,0,'I',957,'I000957',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 12:18:44','','0000-00-00 00:00:00'),(2874,0,0,'I',957,'I000957',2526,3,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-06 12:18:44','','0000-00-00 00:00:00'),(2875,0,0,'I',957,'I000957',2526,4,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 12:18:44','','0000-00-00 00:00:00'),(2876,0,0,'I',958,'I000958',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 12:23:00','','0000-00-00 00:00:00'),(2877,0,0,'I',958,'I000958',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 12:23:00','','0000-00-00 00:00:00'),(2878,0,0,'I',958,'I000958',2526,3,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-06 12:23:00','','0000-00-00 00:00:00'),(2879,0,0,'I',958,'I000958',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 12:23:00','','0000-00-00 00:00:00'),(2880,0,0,'I',958,'I000958',2526,5,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 12:23:00','','0000-00-00 00:00:00'),(2881,0,0,'I',959,'I000959',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 12:48:13','','0000-00-00 00:00:00'),(2882,0,0,'I',959,'I000959',2526,2,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-06 12:48:13','','0000-00-00 00:00:00'),(2883,0,0,'I',960,'I000960',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 12:57:01','','0000-00-00 00:00:00'),(2884,0,0,'I',960,'I000960',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 12:57:01','','0000-00-00 00:00:00'),(2885,0,0,'I',960,'I000960',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-06 12:57:01','','0000-00-00 00:00:00'),(2886,0,0,'I',961,'I000961',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,50,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 13:16:25','darshan','2025-11-06 13:17:10'),(2887,0,0,'I',961,'I000961',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 13:16:25','darshan','2025-11-06 13:17:10'),(2888,0,0,'I',961,'I000961',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 13:16:25','darshan','2025-11-06 13:17:10'),(2889,0,0,'I',961,'I000961',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-06 13:16:25','darshan','2025-11-06 13:17:10'),(2890,0,0,'I',962,'I000962',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 13:23:01','','0000-00-00 00:00:00'),(2891,0,0,'I',963,'I000963',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 13:34:43','','0000-00-00 00:00:00'),(2892,0,0,'I',963,'I000963',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 13:34:43','','0000-00-00 00:00:00'),(2893,0,0,'I',964,'I000964',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 13:37:27','','0000-00-00 00:00:00'),(2894,0,0,'I',964,'I000964',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 13:37:27','','0000-00-00 00:00:00'),(2895,0,0,'I',965,'I000965',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 13:45:07','','0000-00-00 00:00:00'),(2896,0,0,'I',965,'I000965',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 13:45:07','','0000-00-00 00:00:00'),(2897,0,0,'I',965,'I000965',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 13:45:07','','0000-00-00 00:00:00'),(2898,0,0,'I',966,'I000966',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 13:53:09','','0000-00-00 00:00:00'),(2899,0,0,'I',966,'I000966',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 13:53:09','','0000-00-00 00:00:00'),(2900,0,0,'I',967,'I000967',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 14:07:19','darshan','2025-11-06 14:08:04'),(2901,0,0,'I',967,'I000967',2526,2,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-06 14:07:19','darshan','2025-11-06 14:08:04'),(2902,0,0,'I',967,'I000967',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-06 14:08:04','','0000-00-00 00:00:00'),(2903,0,0,'I',967,'I000967',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-06 14:08:04','','0000-00-00 00:00:00'),(2904,0,0,'I',967,'I000967',2526,5,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 14:08:04','','0000-00-00 00:00:00'),(2905,0,0,'I',968,'I000968',2526,1,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 14:11:10','','0000-00-00 00:00:00'),(2906,0,0,'I',968,'I000968',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 14:11:10','','0000-00-00 00:00:00'),(2907,0,0,'I',969,'I000969',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 14:17:46','darshan','2025-11-06 14:18:17'),(2908,0,0,'I',969,'I000969',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 14:18:11','darshan','2025-11-06 14:18:17'),(2909,0,0,'I',969,'I000969',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 14:18:11','darshan','2025-11-06 14:18:17'),(2910,0,0,'I',969,'I000969',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-06 14:18:11','darshan','2025-11-06 14:18:17'),(2911,0,0,'I',970,'I000970',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 14:28:26','','0000-00-00 00:00:00'),(2912,0,0,'I',970,'I000970',2526,2,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-06 14:28:26','','0000-00-00 00:00:00'),(2913,0,0,'I',970,'I000970',2526,3,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 14:28:26','','0000-00-00 00:00:00'),(2914,0,0,'I',970,'I000970',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-06 14:28:26','','0000-00-00 00:00:00'),(2915,0,0,'I',971,'I000971',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-0','','Dy',80,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 17:21:20','','0000-00-00 00:00:00'),(2916,0,0,'I',972,'I000972',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 17:27:31','darshan','2025-11-06 17:28:05'),(2917,0,0,'I',972,'I000972',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 17:27:31','darshan','2025-11-06 17:28:05'),(2918,0,0,'I',972,'I000972',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 17:28:05','','0000-00-00 00:00:00'),(2919,0,0,'I',972,'I000972',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-06 17:28:05','','0000-00-00 00:00:00'),(2920,0,0,'I',973,'I000973',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 17:33:46','darshan','2025-11-06 17:34:05'),(2921,0,0,'I',973,'I000973',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-06 17:33:46','darshan','2025-11-06 17:34:05'),(2922,0,0,'I',974,'I000974',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 17:55:55','','0000-00-00 00:00:00'),(2923,0,0,'I',974,'I000974',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 17:55:55','','0000-00-00 00:00:00'),(2924,0,0,'I',974,'I000974',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-06 17:55:55','','0000-00-00 00:00:00'),(2925,0,0,'I',974,'I000974',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-06 17:55:55','','0000-00-00 00:00:00'),(2926,0,0,'I',975,'I000975',2526,1,'0000-00-00','51408',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-0','','Dy',0,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-06 18:05:55','','0000-00-00 00:00:00'),(2927,0,0,'I',976,'I000976',2526,1,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 18:11:32','darshan','2025-11-06 18:11:43'),(2928,0,0,'I',976,'I000976',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 18:11:32','darshan','2025-11-06 18:11:43'),(2929,0,0,'I',976,'I000976',2526,3,'0000-00-00','51209',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 18:11:32','darshan','2025-11-06 18:11:43'),(2930,0,0,'I',976,'I000976',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-06 18:11:32','darshan','2025-11-06 18:11:43'),(2931,0,0,'I',976,'I000976',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-06 18:11:43','','0000-00-00 00:00:00'),(2932,0,0,'I',977,'I000977',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 18:34:41','','0000-00-00 00:00:00'),(2933,0,0,'I',977,'I000977',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 18:34:41','','0000-00-00 00:00:00'),(2934,0,0,'I',977,'I000977',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 18:34:41','','0000-00-00 00:00:00'),(2935,0,0,'I',977,'I000977',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-06 18:34:41','','0000-00-00 00:00:00'),(2936,0,0,'I',978,'I000978',2526,1,'0000-00-00','51349',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-06 18:37:35','','0000-00-00 00:00:00'),(2937,0,0,'I',978,'I000978',2526,2,'0000-00-00','51425',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-06 18:37:35','','0000-00-00 00:00:00'),(2938,0,0,'I',978,'I000978',2526,3,'0000-00-00','51422',0,0,'CAP','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-06 18:37:35','','0000-00-00 00:00:00'),(2939,0,0,'I',979,'I000979',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 18:41:51','darshan','2025-11-06 18:44:24'),(2940,0,0,'I',979,'I000979',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 18:41:51','darshan','2025-11-06 18:44:24'),(2941,0,0,'I',979,'I000979',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 18:41:51','darshan','2025-11-06 18:44:24'),(2942,0,0,'I',979,'I000979',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-06 18:41:51','darshan','2025-11-06 18:44:24'),(2943,0,0,'I',979,'I000979',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-06 18:44:24','','0000-00-00 00:00:00'),(2944,0,0,'I',980,'I000980',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 18:53:21','darshan','2025-11-06 18:56:38'),(2945,0,0,'I',980,'I000980',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 18:53:21','darshan','2025-11-06 18:56:38'),(2946,0,0,'I',981,'I000981',2526,1,'0000-00-00','51296',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-0','','Dy',0,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-06 18:55:27','drjayant','2025-11-06 18:56:22'),(2947,0,0,'I',981,'I000981',2526,2,'0000-00-00','51233',0,0,'TAB','','','','',0,0,0,0,0,0,'0-1-0','','Dy',0,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'drjayant','2025-11-06 18:55:27','drjayant','2025-11-06 18:56:22'),(2948,0,0,'I',981,'I000981',2526,3,'0000-00-00','51458',0,0,'TAB','','','','',0,0,0,0,0,0,'0-0-1','','Dy',0,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-06 18:56:22','','0000-00-00 00:00:00'),(2949,0,0,'I',982,'I000982',2526,1,'0000-00-00','51443',0,0,'TAB','','','','',0,120,0,0,0,0,'0-0-1','','Dy',120,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-06 19:03:12','drjayant','2025-11-06 19:04:06'),(2950,0,0,'I',982,'I000982',2526,2,'0000-00-00','51459',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-06 19:04:06','','0000-00-00 00:00:00'),(2951,0,0,'I',983,'I000983',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 19:04:25','','0000-00-00 00:00:00'),(2952,0,0,'I',983,'I000983',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 19:04:25','','0000-00-00 00:00:00'),(2953,0,0,'I',984,'I000984',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 19:12:24','','0000-00-00 00:00:00'),(2954,0,0,'I',984,'I000984',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 19:12:24','','0000-00-00 00:00:00'),(2955,0,0,'I',984,'I000984',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 19:12:24','','0000-00-00 00:00:00'),(2956,0,0,'I',984,'I000984',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-06 19:12:24','','0000-00-00 00:00:00'),(2957,0,0,'I',985,'I000985',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 19:17:04','','0000-00-00 00:00:00'),(2958,0,0,'I',985,'I000985',2526,2,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 19:17:04','','0000-00-00 00:00:00'),(2959,0,0,'I',986,'I000986',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 19:30:27','','0000-00-00 00:00:00'),(2960,0,0,'I',986,'I000986',2526,2,'0000-00-00','51287',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-06 19:30:27','','0000-00-00 00:00:00'),(2961,0,0,'I',987,'I000987',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 19:52:01','','0000-00-00 00:00:00'),(2962,0,0,'I',987,'I000987',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 19:52:01','','0000-00-00 00:00:00'),(2963,0,0,'I',987,'I000987',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 19:52:01','','0000-00-00 00:00:00'),(2964,0,0,'I',987,'I000987',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-06 19:52:01','','0000-00-00 00:00:00'),(2965,0,0,'I',988,'I000988',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 20:00:59','','0000-00-00 00:00:00'),(2966,0,0,'I',988,'I000988',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 20:00:59','','0000-00-00 00:00:00'),(2967,0,0,'I',988,'I000988',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-06 20:00:59','','0000-00-00 00:00:00'),(2968,0,0,'I',989,'I000989',2526,1,'0000-00-00','51289',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 10:49:40','','0000-00-00 00:00:00'),(2969,0,0,'I',989,'I000989',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 10:49:40','','0000-00-00 00:00:00'),(2970,0,0,'I',990,'I000990',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 11:05:59','','0000-00-00 00:00:00'),(2971,0,0,'I',990,'I000990',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 11:05:59','','0000-00-00 00:00:00'),(2972,0,0,'I',990,'I000990',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 11:05:59','','0000-00-00 00:00:00'),(2973,0,0,'I',991,'I000991',2526,1,'0000-00-00','51455',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-0','','Dy',0,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-07 11:14:48','','0000-00-00 00:00:00'),(2974,0,0,'I',992,'I000992',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 11:22:54','','0000-00-00 00:00:00'),(2975,0,0,'I',992,'I000992',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 11:22:54','','0000-00-00 00:00:00'),(2976,0,0,'I',992,'I000992',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 11:22:54','','0000-00-00 00:00:00'),(2977,0,0,'I',992,'I000992',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-07 11:22:54','','0000-00-00 00:00:00'),(2978,0,0,'I',993,'I000993',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 11:27:23','darshan','2025-11-07 11:28:39'),(2979,0,0,'I',993,'I000993',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-07 11:27:23','darshan','2025-11-07 11:28:39'),(2980,0,0,'I',993,'I000993',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 11:27:23','darshan','2025-11-07 11:28:39'),(2981,0,0,'I',993,'I000993',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-07 11:28:39','','0000-00-00 00:00:00'),(2982,0,0,'I',994,'I000994',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 11:33:44','','0000-00-00 00:00:00'),(2983,0,0,'I',994,'I000994',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 11:33:44','','0000-00-00 00:00:00'),(2984,0,0,'I',995,'I000995',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 11:38:00','darshan','2025-11-07 11:38:15'),(2985,0,0,'I',995,'I000995',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-07 11:38:00','darshan','2025-11-07 11:38:15'),(2986,0,0,'I',996,'I000996',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 12:00:23','darshan','2025-11-07 12:02:08'),(2987,0,0,'I',997,'I000997',2526,1,'0000-00-00','51376',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-07 12:00:30','','0000-00-00 00:00:00'),(2988,0,0,'I',997,'I000997',2526,2,'0000-00-00','51307',0,0,'INJ','','','','',0,1,0,0,0,0,'','28 U - 18 ','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drjayant','2025-11-07 12:00:30','','0000-00-00 00:00:00'),(2989,0,0,'I',996,'I000996',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 12:00:40','darshan','2025-11-07 12:02:08'),(2991,0,0,'I',998,'I000998',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 12:09:38','','0000-00-00 00:00:00'),(2992,0,0,'I',998,'I000998',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 12:09:38','','0000-00-00 00:00:00'),(2993,0,0,'I',998,'I000998',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 12:09:38','','0000-00-00 00:00:00'),(2994,0,0,'I',998,'I000998',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-07 12:09:38','','0000-00-00 00:00:00'),(2995,0,0,'I',999,'I000999',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 12:30:02','','0000-00-00 00:00:00'),(2996,0,0,'I',999,'I000999',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 12:30:02','','0000-00-00 00:00:00'),(2997,0,0,'I',999,'I000999',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-07 12:30:02','','0000-00-00 00:00:00'),(2998,0,0,'I',1000,'I001000',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 12:33:48','','0000-00-00 00:00:00'),(2999,0,0,'I',1000,'I001000',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 12:33:48','','0000-00-00 00:00:00'),(3000,0,0,'I',1001,'I001001',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 12:40:29','','0000-00-00 00:00:00'),(3001,0,0,'I',1001,'I001001',2526,2,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 12:40:29','','0000-00-00 00:00:00'),(3002,0,0,'I',1001,'I001001',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 12:40:29','','0000-00-00 00:00:00'),(3003,0,0,'I',1002,'I001002',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 12:53:30','','0000-00-00 00:00:00'),(3004,0,0,'I',1003,'I001003',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:00:15','','0000-00-00 00:00:00'),(3005,0,0,'I',1003,'I001003',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:00:15','','0000-00-00 00:00:00'),(3006,0,0,'I',1003,'I001003',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:00:15','','0000-00-00 00:00:00'),(3007,0,0,'I',1003,'I001003',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-07 13:00:15','','0000-00-00 00:00:00'),(3008,0,0,'I',1004,'I001004',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:04:30','darshan','2025-11-07 13:04:59'),(3009,0,0,'I',1004,'I001004',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:04:30','darshan','2025-11-07 13:04:59'),(3010,0,0,'I',1004,'I001004',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:04:59','','0000-00-00 00:00:00'),(3011,0,0,'I',1005,'I001005',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:07:49','darshan','2025-11-07 13:07:52'),(3012,0,0,'I',1005,'I001005',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:07:49','darshan','2025-11-07 13:07:52'),(3013,0,0,'I',1005,'I001005',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-07 13:07:49','darshan','2025-11-07 13:07:52'),(3014,0,0,'I',1006,'I001006',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:12:05','darshan','2025-11-07 13:12:33'),(3015,0,0,'I',1006,'I001006',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:12:33','','0000-00-00 00:00:00'),(3016,0,0,'I',1006,'I001006',2526,3,'0000-00-00','51194',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:12:33','','0000-00-00 00:00:00'),(3017,0,0,'I',1006,'I001006',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-07 13:12:33','','0000-00-00 00:00:00'),(3018,0,0,'I',1007,'I001007',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:24:29','darshan','2025-11-07 13:25:01'),(3019,0,0,'I',1007,'I001007',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:24:29','darshan','2025-11-07 13:25:01'),(3020,0,0,'I',1007,'I001007',2526,3,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-07 13:25:01','','0000-00-00 00:00:00'),(3021,0,0,'I',1007,'I001007',2526,4,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:25:01','','0000-00-00 00:00:00'),(3022,0,0,'I',1008,'I001008',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:28:34','darshan','2025-11-07 13:29:16'),(3023,0,0,'I',1008,'I001008',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:29:16','','0000-00-00 00:00:00'),(3024,0,0,'I',1008,'I001008',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:29:16','','0000-00-00 00:00:00'),(3025,0,0,'I',1009,'I001009',2526,1,'0000-00-00','51224',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:34:43','darshan','2025-11-07 13:35:16'),(3026,0,0,'I',1009,'I001009',2526,2,'0000-00-00','51192',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:34:43','darshan','2025-11-07 13:35:16'),(3027,0,0,'I',1009,'I001009',2526,3,'0000-00-00','51294',0,0,'TAB','','','','',0,5,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-07 13:34:43','darshan','2025-11-07 13:35:16'),(3028,0,0,'I',1009,'I001009',2526,4,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:34:43','darshan','2025-11-07 13:35:16'),(3029,0,0,'I',1009,'I001009',2526,5,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-07 13:35:16','','0000-00-00 00:00:00'),(3030,0,0,'I',1010,'I001010',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:57:14','','0000-00-00 00:00:00'),(3031,0,0,'I',1010,'I001010',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 13:57:14','','0000-00-00 00:00:00'),(3032,0,0,'I',1011,'I001011',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 14:21:16','','0000-00-00 00:00:00'),(3033,0,0,'I',1011,'I001011',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 14:21:16','','0000-00-00 00:00:00'),(3034,0,0,'I',1012,'I001012',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 14:26:01','','0000-00-00 00:00:00'),(3035,0,0,'I',1012,'I001012',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 14:26:01','','0000-00-00 00:00:00'),(3036,0,0,'I',1012,'I001012',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 14:26:01','','0000-00-00 00:00:00'),(3037,0,0,'I',1012,'I001012',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-07 14:26:01','','0000-00-00 00:00:00'),(3038,0,0,'I',1012,'I001012',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-07 14:26:01','','0000-00-00 00:00:00'),(3039,0,0,'I',1013,'I001013',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 14:34:46','','0000-00-00 00:00:00'),(3040,0,0,'I',1013,'I001013',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 14:34:46','','0000-00-00 00:00:00'),(3041,0,0,'I',1013,'I001013',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-07 14:34:46','','0000-00-00 00:00:00'),(3042,0,0,'I',1014,'I001014',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,50,0,0,0,0,'.5-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 17:11:47','','0000-00-00 00:00:00'),(3043,0,0,'I',1015,'I001015',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 17:15:12','darshan','2025-11-07 17:15:19'),(3044,0,0,'I',1015,'I001015',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 17:15:19','','0000-00-00 00:00:00'),(3045,0,0,'I',1016,'I001016',2526,1,'0000-00-00','51277',0,0,'OINT','','','','',0,2,0,0,0,0,'1-1-1','','Dy',15,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'darshan','2025-11-07 17:17:11','','0000-00-00 00:00:00'),(3046,0,0,'I',1016,'I001016',2526,2,'0000-00-00','51276',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 17:17:11','','0000-00-00 00:00:00'),(3047,0,0,'I',1016,'I001016',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 17:17:11','','0000-00-00 00:00:00'),(3048,0,0,'I',1018,'I001018',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 17:34:20','darshan','2025-11-20 14:23:18'),(3049,0,0,'I',1018,'I001018',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 17:34:20','darshan','2025-11-20 14:23:18'),(3050,0,0,'I',1019,'I001019',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 17:36:38','darshan','2025-11-07 17:36:52'),(3051,0,0,'I',1019,'I001019',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 17:36:38','darshan','2025-11-07 17:36:52'),(3052,0,0,'I',1020,'I001020',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 17:43:41','','0000-00-00 00:00:00'),(3053,0,0,'I',1020,'I001020',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 17:43:41','','0000-00-00 00:00:00'),(3054,0,0,'I',1020,'I001020',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 17:43:41','','0000-00-00 00:00:00'),(3055,0,0,'I',1021,'I001021',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 17:47:19','','0000-00-00 00:00:00'),(3056,0,0,'I',1021,'I001021',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 17:47:19','','0000-00-00 00:00:00'),(3057,0,0,'I',1021,'I001021',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-07 17:47:19','','0000-00-00 00:00:00'),(3058,0,0,'I',1022,'I001022',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:05:29','darshan','2025-11-07 18:05:41'),(3059,0,0,'I',1022,'I001022',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-07 18:05:29','darshan','2025-11-07 18:05:41'),(3060,0,0,'I',1023,'I001023',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:08:36','','0000-00-00 00:00:00'),(3061,0,0,'I',1023,'I001023',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:08:36','','0000-00-00 00:00:00'),(3062,0,0,'I',1023,'I001023',2526,3,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-07 18:08:36','','0000-00-00 00:00:00'),(3063,0,0,'I',1024,'I001024',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:11:15','darshan','2025-11-07 18:11:59'),(3064,0,0,'I',1024,'I001024',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:11:59','','0000-00-00 00:00:00'),(3065,0,0,'I',1024,'I001024',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:11:59','','0000-00-00 00:00:00'),(3066,0,0,'I',1024,'I001024',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:11:59','','0000-00-00 00:00:00'),(3067,0,0,'I',1024,'I001024',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-07 18:11:59','','0000-00-00 00:00:00'),(3068,0,0,'I',1017,'I001017',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:16:43','','0000-00-00 00:00:00'),(3069,0,0,'I',1017,'I001017',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:16:43','','0000-00-00 00:00:00'),(3070,0,0,'I',1025,'I001025',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:32:27','','0000-00-00 00:00:00'),(3071,0,0,'I',1025,'I001025',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:32:27','','0000-00-00 00:00:00'),(3072,0,0,'I',1025,'I001025',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,0,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-07 18:32:27','','0000-00-00 00:00:00'),(3073,0,0,'I',1026,'I001026',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:36:03','','0000-00-00 00:00:00'),(3074,0,0,'I',1026,'I001026',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:36:03','','0000-00-00 00:00:00'),(3075,0,0,'I',1026,'I001026',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:36:03','','0000-00-00 00:00:00'),(3076,0,0,'I',1026,'I001026',2526,4,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:36:03','','0000-00-00 00:00:00'),(3080,0,0,'I',1027,'I001027',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:39:04','darshan','2025-11-07 18:39:34'),(3081,0,0,'I',1027,'I001027',2526,2,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-07 18:39:04','darshan','2025-11-07 18:39:34'),(3082,0,0,'I',1027,'I001027',2526,3,'0000-00-00','51217',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:39:04','darshan','2025-11-07 18:39:34'),(3083,0,0,'I',1027,'I001027',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:39:34','','0000-00-00 00:00:00'),(3084,0,0,'I',1028,'I001028',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:44:43','','0000-00-00 00:00:00'),(3085,0,0,'I',1028,'I001028',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:44:43','','0000-00-00 00:00:00'),(3086,0,0,'I',1028,'I001028',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-07 18:44:43','','0000-00-00 00:00:00'),(3087,0,0,'I',1028,'I001028',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-07 18:44:43','','0000-00-00 00:00:00'),(3088,0,0,'I',1028,'I001028',2526,5,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-07 18:44:43','','0000-00-00 00:00:00'),(3089,0,0,'I',1029,'I001029',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:49:17','','0000-00-00 00:00:00'),(3090,0,0,'I',1029,'I001029',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:49:17','','0000-00-00 00:00:00'),(3091,0,0,'I',1030,'I001030',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 18:54:28','darshan','2025-11-07 18:54:51'),(3092,0,0,'I',1030,'I001030',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-07 18:54:28','darshan','2025-11-07 18:54:51'),(3093,0,0,'I',1031,'I001031',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-07 19:00:14','','0000-00-00 00:00:00'),(3094,0,0,'I',1031,'I001031',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 19:00:14','','0000-00-00 00:00:00'),(3095,0,0,'I',1031,'I001031',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 19:00:14','','0000-00-00 00:00:00'),(3096,0,0,'I',1032,'I001032',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 19:07:06','darshan','2025-11-07 19:07:22'),(3097,0,0,'I',1032,'I001032',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-07 19:07:06','darshan','2025-11-07 19:07:22'),(3098,0,0,'I',1033,'I001033',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 19:12:19','darshan','2025-11-07 19:12:41'),(3099,0,0,'I',1033,'I001033',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 19:12:19','darshan','2025-11-07 19:12:41'),(3101,0,0,'I',1033,'I001033',2526,3,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-07 19:12:41','','0000-00-00 00:00:00'),(3102,0,0,'I',1034,'I001034',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 19:15:57','darshan','2025-11-07 19:16:08'),(3103,0,0,'I',1034,'I001034',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 19:16:08','','0000-00-00 00:00:00'),(3104,0,0,'I',1035,'I001035',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-07 19:22:16','','0000-00-00 00:00:00'),(3105,0,0,'I',1035,'I001035',2526,2,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 19:22:16','','0000-00-00 00:00:00'),(3106,0,0,'I',1035,'I001035',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 19:22:16','','0000-00-00 00:00:00'),(3107,0,0,'I',1035,'I001035',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-07 19:22:16','','0000-00-00 00:00:00'),(3108,0,0,'I',1036,'I001036',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-07 19:27:42','','0000-00-00 00:00:00'),(3109,0,0,'I',1036,'I001036',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 19:27:42','','0000-00-00 00:00:00'),(3110,0,0,'I',1036,'I001036',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-07 19:27:42','','0000-00-00 00:00:00'),(3111,0,0,'I',1037,'I001037',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 19:31:11','darshan','2025-11-07 19:31:22'),(3112,0,0,'I',1037,'I001037',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 19:31:11','darshan','2025-11-07 19:31:22'),(3113,0,0,'I',1037,'I001037',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 19:31:11','darshan','2025-11-07 19:31:22'),(3114,0,0,'I',1037,'I001037',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-07 19:31:22','','0000-00-00 00:00:00'),(3115,0,0,'I',1038,'I001038',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 19:33:48','darshan','2025-11-07 19:34:25'),(3116,0,0,'I',1038,'I001038',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 19:34:25','','0000-00-00 00:00:00'),(3117,0,0,'I',1038,'I001038',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-07 19:34:25','','0000-00-00 00:00:00'),(3118,0,0,'I',1038,'I001038',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-07 19:34:25','','0000-00-00 00:00:00'),(3119,0,0,'I',1039,'I001039',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 10:44:17','darshan','2025-11-08 10:44:27'),(3120,0,0,'I',1039,'I001039',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 10:44:17','darshan','2025-11-08 10:44:27'),(3121,0,0,'I',1039,'I001039',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 10:44:17','darshan','2025-11-08 10:44:27'),(3122,0,0,'I',1039,'I001039',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,0,0,0,0,0,'','','Dy',45,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-08 10:44:17','darshan','2025-11-08 10:44:27'),(3123,0,0,'I',1040,'I001040',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-08 10:48:19','','0000-00-00 00:00:00'),(3124,0,0,'I',1040,'I001040',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 10:48:19','','0000-00-00 00:00:00'),(3125,0,0,'I',1040,'I001040',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 10:48:19','','0000-00-00 00:00:00'),(3126,0,0,'I',1040,'I001040',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 10:48:19','','0000-00-00 00:00:00'),(3127,0,0,'I',1041,'I001041',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 11:10:59','','0000-00-00 00:00:00'),(3128,0,0,'I',1041,'I001041',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 11:10:59','','0000-00-00 00:00:00'),(3129,0,0,'I',1041,'I001041',2526,3,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 11:10:59','','0000-00-00 00:00:00'),(3130,0,0,'I',1041,'I001041',2526,4,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 11:10:59','','0000-00-00 00:00:00'),(3131,0,0,'I',1041,'I001041',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',45,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-08 11:10:59','','0000-00-00 00:00:00'),(3132,0,0,'I',1042,'I001042',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-08 11:15:28','','0000-00-00 00:00:00'),(3133,0,0,'I',1042,'I001042',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 11:15:28','','0000-00-00 00:00:00'),(3134,0,0,'I',1042,'I001042',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 11:15:28','','0000-00-00 00:00:00'),(3135,0,0,'I',1043,'I001043',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 11:19:06','','0000-00-00 00:00:00'),(3136,0,0,'I',1044,'I001044',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 11:22:09','darshan','2025-11-08 11:22:28'),(3137,0,0,'I',1044,'I001044',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-08 11:22:09','darshan','2025-11-08 11:22:28'),(3138,0,0,'I',1045,'I001045',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 11:40:35','','0000-00-00 00:00:00'),(3139,0,0,'I',1045,'I001045',2526,2,'0000-00-00','51189',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 11:40:35','','0000-00-00 00:00:00'),(3140,0,0,'I',1046,'I001046',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 11:45:14','','0000-00-00 00:00:00'),(3141,0,0,'I',1046,'I001046',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 11:45:14','','0000-00-00 00:00:00'),(3142,0,0,'I',1046,'I001046',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 11:45:14','','0000-00-00 00:00:00'),(3143,0,0,'I',1046,'I001046',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-08 11:45:14','','0000-00-00 00:00:00'),(3144,0,0,'I',1047,'I001047',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 11:57:02','darshan','2025-11-08 11:57:31'),(3145,0,0,'I',1047,'I001047',2526,2,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 11:57:31','','0000-00-00 00:00:00'),(3146,0,0,'I',1047,'I001047',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 11:57:31','','0000-00-00 00:00:00'),(3147,0,0,'I',1048,'I001048',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 12:01:15','','0000-00-00 00:00:00'),(3148,0,0,'I',1048,'I001048',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 12:01:15','','0000-00-00 00:00:00'),(3149,0,0,'I',1048,'I001048',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 12:01:15','','0000-00-00 00:00:00'),(3150,0,0,'I',1049,'I001049',2526,1,'0000-00-00','51289',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 12:15:59','darshan','2025-11-08 12:16:03'),(3151,0,0,'I',1049,'I001049',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 12:15:59','darshan','2025-11-08 12:16:03'),(3152,0,0,'I',1049,'I001049',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 12:15:59','darshan','2025-11-08 12:16:03'),(3153,0,0,'I',1049,'I001049',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 12:15:59','darshan','2025-11-08 12:16:03'),(3154,0,0,'I',1050,'I001050',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,2,0,0,0,0,'1-1-1','','Dy',20,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-08 12:27:37','','0000-00-00 00:00:00'),(3155,0,0,'I',1050,'I001050',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 12:27:37','','0000-00-00 00:00:00'),(3156,0,0,'I',1050,'I001050',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 12:27:37','','0000-00-00 00:00:00'),(3157,0,0,'I',1051,'I001051',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 12:50:10','','0000-00-00 00:00:00'),(3158,0,0,'I',1051,'I001051',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 12:50:10','','0000-00-00 00:00:00'),(3159,0,0,'I',1051,'I001051',2526,3,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-08 12:50:10','','0000-00-00 00:00:00'),(3160,0,0,'I',1052,'I001052',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:04:55','','0000-00-00 00:00:00'),(3161,0,0,'I',1052,'I001052',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:04:55','','0000-00-00 00:00:00'),(3162,0,0,'I',1052,'I001052',2526,3,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:04:55','','0000-00-00 00:00:00'),(3163,0,0,'I',1052,'I001052',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-08 13:04:55','','0000-00-00 00:00:00'),(3164,0,0,'I',1053,'I001053',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,40,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:07:26','','0000-00-00 00:00:00'),(3165,0,0,'I',1053,'I001053',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:07:26','','0000-00-00 00:00:00'),(3166,0,0,'I',1053,'I001053',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:07:26','','0000-00-00 00:00:00'),(3167,0,0,'I',1053,'I001053',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-08 13:07:26','','0000-00-00 00:00:00'),(3168,0,0,'I',1054,'I001054',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:11:18','','0000-00-00 00:00:00'),(3169,0,0,'I',1054,'I001054',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:11:18','','0000-00-00 00:00:00'),(3170,0,0,'I',1054,'I001054',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:11:18','','0000-00-00 00:00:00'),(3171,0,0,'I',1055,'I001055',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:17:39','darshan','2025-11-08 13:17:46'),(3172,0,0,'I',1055,'I001055',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:17:39','darshan','2025-11-08 13:17:46'),(3173,0,0,'I',1055,'I001055',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:17:39','darshan','2025-11-08 13:17:46'),(3174,0,0,'I',1055,'I001055',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-08 13:17:39','darshan','2025-11-08 13:17:46'),(3175,0,0,'I',1056,'I001056',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:29:44','','0000-00-00 00:00:00'),(3176,0,0,'I',1056,'I001056',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:29:44','','0000-00-00 00:00:00'),(3177,0,0,'I',1056,'I001056',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:29:44','','0000-00-00 00:00:00'),(3178,0,0,'I',1056,'I001056',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-08 13:29:44','','0000-00-00 00:00:00'),(3179,0,0,'I',1057,'I001057',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:41:05','darshan','2025-11-08 13:41:21'),(3180,0,0,'I',1057,'I001057',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:41:21','','0000-00-00 00:00:00'),(3181,0,0,'I',1057,'I001057',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-08 13:41:21','','0000-00-00 00:00:00'),(3182,0,0,'I',1058,'I001058',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:45:20','','0000-00-00 00:00:00'),(3183,0,0,'I',1058,'I001058',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:45:20','','0000-00-00 00:00:00'),(3184,0,0,'I',1058,'I001058',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-08 13:45:20','','0000-00-00 00:00:00'),(3185,0,0,'I',1059,'I001059',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:48:16','','0000-00-00 00:00:00'),(3186,0,0,'I',1059,'I001059',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:48:16','','0000-00-00 00:00:00'),(3187,0,0,'I',1059,'I001059',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:48:16','','0000-00-00 00:00:00'),(3188,0,0,'I',1059,'I001059',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:48:16','','0000-00-00 00:00:00'),(3189,0,0,'I',1060,'I001060',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:54:10','darshan','2025-11-08 13:54:28'),(3190,0,0,'I',1060,'I001060',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 13:54:10','darshan','2025-11-08 13:54:28'),(3191,0,0,'I',1060,'I001060',2526,3,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-08 13:54:10','darshan','2025-11-08 13:54:28'),(3192,0,0,'I',1061,'I001061',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 14:05:37','','0000-00-00 00:00:00'),(3193,0,0,'I',1061,'I001061',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 14:05:37','','0000-00-00 00:00:00'),(3194,0,0,'I',1062,'I001062',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 14:11:30','','0000-00-00 00:00:00'),(3195,0,0,'I',1063,'I001063',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 14:23:40','','0000-00-00 00:00:00'),(3196,0,0,'I',1063,'I001063',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 14:23:40','','0000-00-00 00:00:00'),(3197,0,0,'I',1063,'I001063',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-08 14:23:40','','0000-00-00 00:00:00'),(3198,0,0,'I',1064,'I001064',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 14:43:10','','0000-00-00 00:00:00'),(3199,0,0,'I',1064,'I001064',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 14:43:10','','0000-00-00 00:00:00'),(3200,0,0,'I',1065,'I001065',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 15:05:08','','0000-00-00 00:00:00'),(3201,0,0,'I',1065,'I001065',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 15:05:08','','0000-00-00 00:00:00'),(3202,0,0,'I',1065,'I001065',2526,3,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-08 15:05:08','','0000-00-00 00:00:00'),(3203,0,0,'I',1065,'I001065',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-08 15:05:08','','0000-00-00 00:00:00'),(3204,0,0,'I',1066,'I001066',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-08 15:16:00','darshan','2025-11-08 15:34:54'),(3205,0,0,'I',1066,'I001066',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 15:16:00','darshan','2025-11-08 15:34:54'),(3206,0,0,'I',1066,'I001066',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-08 15:16:00','darshan','2025-11-08 15:34:54'),(3207,0,0,'I',1066,'I001066',2526,4,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-08 15:16:00','darshan','2025-11-08 15:34:54'),(3208,0,0,'I',1066,'I001066',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-08 15:16:00','darshan','2025-11-08 15:34:54'),(3209,0,0,'I',1067,'I001067',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 11:04:11','darshan','2025-11-10 11:06:14'),(3210,0,0,'I',1067,'I001067',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 11:04:11','darshan','2025-11-10 11:06:14'),(3211,0,0,'I',1067,'I001067',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 11:04:11','darshan','2025-11-10 11:06:14'),(3212,0,0,'I',1067,'I001067',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 11:06:14','','0000-00-00 00:00:00'),(3213,0,0,'I',1068,'I001068',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 11:13:37','darshan','2025-11-10 11:13:52'),(3214,0,0,'I',1068,'I001068',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-10 11:13:37','darshan','2025-11-10 11:13:52'),(3218,0,0,'I',1069,'I001069',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 11:20:24','darshan','2025-11-10 11:22:01'),(3219,0,0,'I',1069,'I001069',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-10 11:20:24','darshan','2025-11-10 11:22:01'),(3220,0,0,'I',1070,'I001070',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 11:33:50','darshan','2025-11-10 11:33:53'),(3221,0,0,'I',1071,'I001071',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 11:40:39','','0000-00-00 00:00:00'),(3222,0,0,'I',1071,'I001071',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 11:40:39','','0000-00-00 00:00:00'),(3223,0,0,'I',1071,'I001071',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 11:40:39','','0000-00-00 00:00:00'),(3224,0,0,'I',1071,'I001071',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-10 11:40:39','','0000-00-00 00:00:00'),(3225,0,0,'I',1072,'I001072',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 11:44:00','darshan','2025-11-10 11:44:59'),(3226,0,0,'I',1072,'I001072',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 11:44:00','darshan','2025-11-10 11:44:59'),(3227,0,0,'I',1072,'I001072',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 11:44:00','darshan','2025-11-10 11:44:59'),(3228,0,0,'I',1072,'I001072',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',45,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-10 11:44:00','darshan','2025-11-10 11:44:59'),(3229,0,0,'I',1073,'I001073',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 11:49:17','','0000-00-00 00:00:00'),(3230,0,0,'I',1074,'I001074',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 12:00:21','darshan','2025-11-10 12:00:32'),(3231,0,0,'I',1074,'I001074',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 12:00:29','darshan','2025-11-10 12:00:32'),(3232,0,0,'I',1075,'I001075',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 12:04:09','darshan','2025-11-10 12:05:04'),(3233,0,0,'I',1075,'I001075',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 12:04:09','darshan','2025-11-10 12:05:04'),(3234,0,0,'I',1076,'I001076',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 12:08:39','darshan','2025-11-10 12:09:49'),(3235,0,0,'I',1076,'I001076',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 12:08:39','darshan','2025-11-10 12:09:49'),(3236,0,0,'I',1076,'I001076',2526,3,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-10 12:09:49','','0000-00-00 00:00:00'),(3237,0,0,'I',1076,'I001076',2526,4,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 12:09:49','','0000-00-00 00:00:00'),(3238,0,0,'I',1077,'I001077',2526,1,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-10 12:31:18','','0000-00-00 00:00:00'),(3239,0,0,'I',1077,'I001077',2526,2,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-10 12:31:18','','0000-00-00 00:00:00'),(3240,0,0,'I',1078,'I001078',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,50,0,0,0,0,'1-0-0','','Dy',50,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 12:40:08','','0000-00-00 00:00:00'),(3241,0,0,'I',1078,'I001078',2526,2,'0000-00-00','51234',0,0,'TAB','','','','',0,50,0,0,0,0,'0-0-1','','Dy',50,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-10 12:40:08','','0000-00-00 00:00:00'),(3242,0,0,'I',1078,'I001078',2526,3,'0000-00-00','51194',0,0,'TAB','','','','',0,50,0,0,0,0,'1-0-0','','Dy',50,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 12:40:08','','0000-00-00 00:00:00'),(3243,0,0,'I',1079,'I001079',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 12:53:13','','0000-00-00 00:00:00'),(3244,0,0,'I',1079,'I001079',2526,2,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-10 12:53:13','','0000-00-00 00:00:00'),(3246,0,0,'I',1080,'I001080',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 12:54:43','darshan','2025-11-10 12:55:02'),(3248,0,0,'I',1080,'I001080',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 12:54:43','darshan','2025-11-10 12:55:02'),(3249,0,0,'I',1080,'I001080',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 12:55:02','','0000-00-00 00:00:00'),(3250,0,0,'I',1081,'I001081',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:09:14','darshan','2025-11-10 13:09:42'),(3251,0,0,'I',1081,'I001081',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-10 13:09:14','darshan','2025-11-10 13:09:42'),(3252,0,0,'I',1082,'I001082',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-10 13:14:19','darshan','2025-11-10 13:14:49'),(3254,0,0,'I',1082,'I001082',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:14:19','darshan','2025-11-10 13:14:49'),(3255,0,0,'I',1082,'I001082',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:14:49','','0000-00-00 00:00:00'),(3256,0,0,'I',1083,'I001083',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:19:17','','0000-00-00 00:00:00'),(3257,0,0,'I',1083,'I001083',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:19:17','','0000-00-00 00:00:00'),(3258,0,0,'I',1084,'I001084',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:31:06','','0000-00-00 00:00:00'),(3259,0,0,'I',1084,'I001084',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:31:06','','0000-00-00 00:00:00'),(3260,0,0,'I',1085,'I001085',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:34:48','','0000-00-00 00:00:00'),(3261,0,0,'I',1085,'I001085',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:34:48','','0000-00-00 00:00:00'),(3262,0,0,'I',1085,'I001085',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:34:48','','0000-00-00 00:00:00'),(3263,0,0,'I',1085,'I001085',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,40,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-10 13:34:48','','0000-00-00 00:00:00'),(3264,0,0,'I',1086,'I001086',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:40:08','','0000-00-00 00:00:00'),(3265,0,0,'I',1086,'I001086',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:40:08','','0000-00-00 00:00:00'),(3266,0,0,'I',1086,'I001086',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-10 13:40:08','','0000-00-00 00:00:00'),(3267,0,0,'I',1087,'I001087',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:50:10','darshan','2025-11-10 13:50:20'),(3268,0,0,'I',1087,'I001087',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:50:10','darshan','2025-11-10 13:50:20'),(3269,0,0,'I',1088,'I001088',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:54:11','','0000-00-00 00:00:00'),(3270,0,0,'I',1088,'I001088',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:54:11','','0000-00-00 00:00:00'),(3271,0,0,'I',1088,'I001088',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:54:11','','0000-00-00 00:00:00'),(3272,0,0,'I',1088,'I001088',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-10 13:54:11','','0000-00-00 00:00:00'),(3273,0,0,'I',1088,'I001088',2526,5,'0000-00-00','51277',0,0,'OINT','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'darshan','2025-11-10 13:54:11','','0000-00-00 00:00:00'),(3274,0,0,'I',1089,'I001089',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:55:59','','0000-00-00 00:00:00'),(3275,0,0,'I',1089,'I001089',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 13:55:59','','0000-00-00 00:00:00'),(3276,0,0,'I',1090,'I001090',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 14:11:39','','0000-00-00 00:00:00'),(3277,0,0,'I',1090,'I001090',2526,2,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-10 14:11:39','','0000-00-00 00:00:00'),(3278,0,0,'I',1090,'I001090',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-10 14:11:39','','0000-00-00 00:00:00'),(3279,0,0,'I',1090,'I001090',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-10 14:11:39','','0000-00-00 00:00:00'),(3280,0,0,'I',1090,'I001090',2526,5,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 14:11:39','','0000-00-00 00:00:00'),(3281,0,0,'I',1091,'I001091',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-10 14:14:31','','0000-00-00 00:00:00'),(3282,0,0,'I',1091,'I001091',2526,2,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 14:14:31','','0000-00-00 00:00:00'),(3283,0,0,'I',1091,'I001091',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 14:14:31','','0000-00-00 00:00:00'),(3284,0,0,'I',1091,'I001091',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-10 14:14:31','','0000-00-00 00:00:00'),(3285,0,0,'I',1092,'I001092',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 14:20:45','darshan','2025-11-10 14:21:17'),(3286,0,0,'I',1092,'I001092',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 14:21:17','','0000-00-00 00:00:00'),(3287,0,0,'I',1093,'I001093',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 14:27:33','','0000-00-00 00:00:00'),(3288,0,0,'I',1093,'I001093',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 14:27:33','','0000-00-00 00:00:00'),(3289,0,0,'I',1093,'I001093',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 14:27:33','','0000-00-00 00:00:00'),(3290,0,0,'I',1093,'I001093',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-10 14:27:33','','0000-00-00 00:00:00'),(3291,0,0,'I',1094,'I001094',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 17:17:59','','0000-00-00 00:00:00'),(3292,0,0,'I',1094,'I001094',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 17:17:59','','0000-00-00 00:00:00'),(3293,0,0,'I',1095,'I001095',2526,1,'0000-00-00','51270',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 17:27:02','darshan','2025-11-10 17:28:28'),(3294,0,0,'I',1095,'I001095',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 17:27:02','darshan','2025-11-10 17:28:28'),(3295,0,0,'I',1095,'I001095',2526,3,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-10 17:27:02','darshan','2025-11-10 17:28:28'),(3296,0,0,'I',1095,'I001095',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-10 17:27:02','darshan','2025-11-10 17:28:28'),(3297,0,0,'I',1096,'I001096',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 17:31:42','','0000-00-00 00:00:00'),(3298,0,0,'I',1097,'I001097',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 17:34:45','darshan','2025-11-10 17:35:02'),(3299,0,0,'I',1097,'I001097',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-10 17:35:02','','0000-00-00 00:00:00'),(3300,0,0,'I',1098,'I001098',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 18:17:52','','0000-00-00 00:00:00'),(3301,0,0,'I',1098,'I001098',2526,2,'0000-00-00','51334',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 18:17:52','','0000-00-00 00:00:00'),(3302,0,0,'I',1098,'I001098',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 18:17:52','','0000-00-00 00:00:00'),(3303,0,0,'I',1098,'I001098',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-10 18:17:52','','0000-00-00 00:00:00'),(3304,0,0,'I',1099,'I001099',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 18:33:23','darshan','2025-11-10 18:34:05'),(3305,0,0,'I',1099,'I001099',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 18:33:23','darshan','2025-11-10 18:34:05'),(3306,0,0,'I',1099,'I001099',2526,3,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 18:34:05','','0000-00-00 00:00:00'),(3307,0,0,'I',1099,'I001099',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-10 18:34:05','','0000-00-00 00:00:00'),(3308,0,0,'I',1100,'I001100',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-10 18:38:15','darshan','2025-11-10 18:38:53'),(3309,0,0,'I',1100,'I001100',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 18:38:15','darshan','2025-11-10 18:38:53'),(3311,0,0,'I',1101,'I001101',2526,1,'0000-00-00','51224',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 18:43:20','darshan','2025-11-10 18:43:54'),(3312,0,0,'I',1101,'I001101',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 18:43:20','darshan','2025-11-10 18:43:54'),(3313,0,0,'I',1101,'I001101',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 18:43:20','darshan','2025-11-10 18:43:54'),(3314,0,0,'I',1101,'I001101',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-10 18:43:30','darshan','2025-11-10 18:43:54'),(3315,0,0,'I',1101,'I001101',2526,5,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-10 18:43:54','','0000-00-00 00:00:00'),(3316,0,0,'I',1102,'I001102',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 18:58:57','','0000-00-00 00:00:00'),(3317,0,0,'I',1103,'I001103',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 19:03:49','','0000-00-00 00:00:00'),(3318,0,0,'I',1103,'I001103',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 19:03:49','','0000-00-00 00:00:00'),(3319,0,0,'I',1104,'I001104',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 19:16:23','','0000-00-00 00:00:00'),(3320,0,0,'I',1104,'I001104',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 19:16:23','','0000-00-00 00:00:00'),(3321,0,0,'I',1104,'I001104',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-10 19:16:23','','0000-00-00 00:00:00'),(3322,0,0,'I',1105,'I001105',2526,1,'0000-00-00','51448',0,0,'SYRUP','','','','',0,1,0,0,0,0,'1-0-0','3 ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 19:33:21','darshan','2025-11-10 19:33:42'),(3323,0,0,'I',1105,'I001105',2526,2,'0000-00-00','51256',0,0,'SYRUP','','','','',0,1,0,0,0,0,'1-1-1','5ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 19:33:21','darshan','2025-11-10 19:33:42'),(3324,0,0,'I',1105,'I001105',2526,3,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-10 19:33:21','darshan','2025-11-10 19:33:42'),(3325,0,0,'I',1106,'I001106',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 19:45:48','','0000-00-00 00:00:00'),(3326,0,0,'I',1106,'I001106',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 19:45:48','','0000-00-00 00:00:00'),(3327,0,0,'I',1107,'I001107',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 19:56:39','darshan','2025-11-10 19:56:45'),(3328,0,0,'I',1108,'I001108',2526,1,'0000-00-00','51224',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 19:59:33','','0000-00-00 00:00:00'),(3329,0,0,'I',1108,'I001108',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 19:59:33','','0000-00-00 00:00:00'),(3330,0,0,'I',1108,'I001108',2526,3,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 19:59:33','','0000-00-00 00:00:00'),(3331,0,0,'I',1108,'I001108',2526,4,'0000-00-00','51294',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-10 19:59:33','','0000-00-00 00:00:00'),(3332,0,0,'I',1108,'I001108',2526,5,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 19:59:33','','0000-00-00 00:00:00'),(3333,0,0,'I',1109,'I001109',2526,1,'0000-00-00','51447',0,0,'SYRUP','','','','',0,1,0,0,0,0,'0-0-1','3ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-10 20:30:29','','0000-00-00 00:00:00'),(3334,0,0,'I',1110,'I001110',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 10:55:43','','0000-00-00 00:00:00'),(3335,0,0,'I',1110,'I001110',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-11 10:55:43','','0000-00-00 00:00:00'),(3336,0,0,'I',1111,'I001111',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 10:58:20','','0000-00-00 00:00:00'),(3337,0,0,'I',1111,'I001111',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 10:58:20','','0000-00-00 00:00:00'),(3338,0,0,'I',1112,'I001112',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 11:12:47','darshan','2025-11-11 11:13:14'),(3339,0,0,'I',1112,'I001112',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-11 11:12:47','darshan','2025-11-11 11:13:14'),(3341,0,0,'I',1112,'I001112',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-11 11:13:14','','0000-00-00 00:00:00'),(3342,0,0,'I',1114,'I001114',2526,1,'0000-00-00','51286',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 11:23:41','drarchit','2025-11-11 12:23:20'),(3343,0,0,'I',1114,'I001114',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 11:23:41','drarchit','2025-11-11 12:23:20'),(3344,0,0,'I',1115,'I001115',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 11:24:31','drarchit','2025-11-11 11:26:04'),(3345,0,0,'I',1115,'I001115',2526,2,'0000-00-00','51214',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-11 11:24:38','drarchit','2025-11-11 11:26:04'),(3346,0,0,'I',1115,'I001115',2526,3,'0000-00-00','51231',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 11:25:22','drarchit','2025-11-11 11:26:04'),(3347,0,0,'I',1115,'I001115',2526,4,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 11:26:04','','0000-00-00 00:00:00'),(3348,0,0,'I',1115,'I001115',2526,5,'0000-00-00','51324',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 11:26:04','','0000-00-00 00:00:00'),(3349,0,0,'I',1116,'I001116',2526,1,'0000-00-00','51462',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 11:28:22','drarchit','2025-11-11 11:43:55'),(3350,0,0,'I',1116,'I001116',2526,2,'0000-00-00','51463',0,0,'INJ','','','','',0,4,0,0,0,0,'40-0-20','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 11:30:09','drarchit','2025-11-11 11:43:55'),(3351,0,0,'I',1116,'I001116',2526,3,'0000-00-00','51338',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 11:30:09','drarchit','2025-11-11 11:43:55'),(3352,0,0,'I',1116,'I001116',2526,4,'0000-00-00','51464',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 11:31:22','drarchit','2025-11-11 11:43:55'),(3353,0,0,'I',1116,'I001116',2526,5,'0000-00-00','51236',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 11:36:53','drarchit','2025-11-11 11:43:55'),(3354,0,0,'I',1117,'I001117',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 11:39:26','drarchit','2025-11-11 11:50:53'),(3356,0,0,'I',1118,'I001118',2526,1,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-11 11:40:51','drarchit','2025-11-11 12:03:29'),(3358,0,0,'I',1119,'I001119',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 11:42:51','darshan','2025-11-11 11:43:09'),(3359,0,0,'I',1119,'I001119',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-11 11:42:51','darshan','2025-11-11 11:43:09'),(3360,0,0,'I',1116,'I001116',2526,6,'0000-00-00','51465',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 11:43:41','drarchit','2025-11-11 11:43:55'),(3362,0,0,'I',1120,'I001120',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 11:49:08','','0000-00-00 00:00:00'),(3363,0,0,'I',1117,'I001117',2526,2,'0000-00-00','51267',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 11:50:30','drarchit','2025-11-11 11:50:53'),(3364,0,0,'I',1117,'I001117',2526,3,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 11:50:53','','0000-00-00 00:00:00'),(3365,0,0,'I',1122,'I001122',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 11:53:17','','0000-00-00 00:00:00'),(3366,0,0,'I',1122,'I001122',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 11:53:17','','0000-00-00 00:00:00'),(3368,0,0,'I',1123,'I001123',2526,2,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 11:54:28','drarchit','2025-11-11 11:55:02'),(3369,0,0,'I',1123,'I001123',2526,1,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 11:54:28','drarchit','2025-11-11 11:55:02'),(3370,0,0,'I',1123,'I001123',2526,3,'0000-00-00','51363',0,0,'SYRUP','','','','',0,1,0,0,0,0,'5-5-5','5ML TDS','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 11:55:02','','0000-00-00 00:00:00'),(3371,0,0,'I',1124,'I001124',2526,1,'0000-00-00','51466',0,0,'TAB','','','','',0,12,0,0,0,6,'','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-11 11:57:27','','0000-00-00 00:00:00'),(3372,0,0,'I',1124,'I001124',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 11:57:27','','0000-00-00 00:00:00'),(3373,0,0,'I',1124,'I001124',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,30,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 11:57:27','','0000-00-00 00:00:00'),(3374,0,0,'I',1124,'I001124',2526,4,'0000-00-00','51276',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 11:57:27','','0000-00-00 00:00:00'),(3375,0,0,'I',1124,'I001124',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-11 11:57:27','','0000-00-00 00:00:00'),(3377,0,0,'I',1121,'I001121',2526,1,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 11:58:54','drarchit','2025-11-11 11:59:37'),(3379,0,0,'I',1121,'I001121',2526,2,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 11:59:00','drarchit','2025-11-11 11:59:37'),(3380,0,0,'I',1121,'I001121',2526,3,'0000-00-00','51432',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 11:59:06','drarchit','2025-11-11 11:59:37'),(3381,0,0,'I',1125,'I001125',2526,1,'0000-00-00','51400',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:01:39','drarchit','2025-11-11 18:24:58'),(3382,0,0,'I',1125,'I001125',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:02:22','drarchit','2025-11-11 18:24:58'),(3383,0,0,'I',1125,'I001125',2526,3,'0000-00-00','51346',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:02:22','drarchit','2025-11-11 18:24:58'),(3385,0,0,'I',1118,'I001118',2526,2,'0000-00-00','51389',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 12:03:29','','0000-00-00 00:00:00'),(3387,0,0,'I',1126,'I001126',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:03:53','darshan','2025-11-11 12:04:30'),(3388,0,0,'I',1126,'I001126',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-11 12:03:53','darshan','2025-11-11 12:04:30'),(3389,0,0,'I',1126,'I001126',2526,3,'0000-00-00','51276',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:04:06','darshan','2025-11-11 12:04:30'),(3390,0,0,'I',1125,'I001125',2526,4,'0000-00-00','51214',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-11-11 12:04:44','drarchit','2025-11-11 18:24:58'),(3392,0,0,'I',1125,'I001125',2526,5,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:06:10','drarchit','2025-11-11 18:24:58'),(3394,0,0,'I',1127,'I001127',2526,1,'0000-00-00','51230',0,0,'TAB','','','','',0,10,0,0,0,0,'0-1-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:09:20','drarchit','2025-11-11 12:12:04'),(3395,0,0,'I',1127,'I001127',2526,2,'0000-00-00','51232',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:09:20','drarchit','2025-11-11 12:12:04'),(3396,0,0,'I',1127,'I001127',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 12:09:46','drarchit','2025-11-11 12:12:04'),(3397,0,0,'I',1127,'I001127',2526,4,'0000-00-00','51470',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 12:12:04','','0000-00-00 00:00:00'),(3398,0,0,'I',1128,'I001128',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:12:21','darshan','2025-11-11 12:12:34'),(3399,0,0,'I',1128,'I001128',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-11 12:12:21','darshan','2025-11-11 12:12:34'),(3400,0,0,'I',1129,'I001129',2526,1,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:13:49','drarchit','2025-11-11 13:58:47'),(3401,0,0,'I',1129,'I001129',2526,2,'0000-00-00','51217',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:15:50','drarchit','2025-11-11 13:58:47'),(3403,0,0,'I',1129,'I001129',2526,3,'0000-00-00','51214',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-11-11 12:15:50','drarchit','2025-11-11 13:58:47'),(3409,0,0,'I',1131,'I001131',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:16:38','','0000-00-00 00:00:00'),(3410,0,0,'I',1131,'I001131',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:16:38','','0000-00-00 00:00:00'),(3411,0,0,'I',1131,'I001131',2526,3,'0000-00-00','51194',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:16:38','','0000-00-00 00:00:00'),(3412,0,0,'I',1130,'I001130',2526,1,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 12:17:48','drarchit','2025-11-11 12:18:29'),(3413,0,0,'I',1130,'I001130',2526,2,'0000-00-00','51262',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:18:11','drarchit','2025-11-11 12:18:29'),(3415,0,0,'I',1130,'I001130',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:18:29','','0000-00-00 00:00:00'),(3416,0,0,'I',1113,'I001113',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:21:13','drarchit','2025-11-11 12:21:28'),(3417,0,0,'I',1113,'I001113',2526,2,'0000-00-00','51290',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:21:23','drarchit','2025-11-11 12:21:28'),(3418,0,0,'I',1113,'I001113',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 12:21:23','drarchit','2025-11-11 12:21:28'),(3419,0,0,'I',1114,'I001114',2526,3,'0000-00-00','51436',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:23:20','','0000-00-00 00:00:00'),(3420,0,0,'I',1114,'I001114',2526,4,'0000-00-00','51467',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 12:23:20','','0000-00-00 00:00:00'),(3421,0,0,'I',1114,'I001114',2526,5,'0000-00-00','51220',0,0,'TAB','','','','',0,5,0,0,0,0,'','','Dy',0,0,0,0,0,0,0,0,0,0,'341','','P',NULL,NULL,'drarchit','2025-11-11 12:23:20','','0000-00-00 00:00:00'),(3422,0,0,'I',1132,'I001132',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 12:24:17','drarchit','2025-11-11 18:12:04'),(3426,0,0,'I',1132,'I001132',2526,3,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-11 12:24:42','drarchit','2025-11-11 18:12:04'),(3428,0,0,'I',1133,'I001133',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:25:23','darshan','2025-11-11 12:26:49'),(3429,0,0,'I',1133,'I001133',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:25:23','darshan','2025-11-11 12:26:49'),(3430,0,0,'I',1133,'I001133',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-11 12:26:49','','0000-00-00 00:00:00'),(3431,0,0,'I',1134,'I001134',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:31:01','','0000-00-00 00:00:00'),(3432,0,0,'I',1134,'I001134',2526,2,'0000-00-00','51190',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:31:01','','0000-00-00 00:00:00'),(3433,0,0,'I',1134,'I001134',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,40,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-11 12:31:01','','0000-00-00 00:00:00'),(3434,0,0,'I',1134,'I001134',2526,4,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-11 12:31:01','','0000-00-00 00:00:00'),(3435,0,0,'I',1135,'I001135',2526,1,'0000-00-00','51247',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:31:31','drarchit','2025-11-11 12:32:38'),(3436,0,0,'I',1135,'I001135',2526,2,'0000-00-00','51472',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 12:32:31','drarchit','2025-11-11 12:32:38'),(3437,0,0,'I',1135,'I001135',2526,3,'0000-00-00','51471',0,0,'CAP','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-11-11 12:32:38','','0000-00-00 00:00:00'),(3438,0,0,'I',1136,'I001136',2526,1,'0000-00-00','51272',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 12:35:36','drarchit','2025-11-11 12:39:37'),(3439,0,0,'I',1136,'I001136',2526,2,'0000-00-00','51462',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:35:36','drarchit','2025-11-11 12:39:37'),(3440,0,0,'I',1136,'I001136',2526,3,'0000-00-00','51456',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 12:35:36','drarchit','2025-11-11 12:39:37'),(3441,0,0,'I',1136,'I001136',2526,4,'0000-00-00','51288',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:35:36','drarchit','2025-11-11 12:39:37'),(3442,0,0,'I',1136,'I001136',2526,5,'0000-00-00','51307',0,0,'INJ','','','','',0,1,0,0,0,0,'0-20-10','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-11-11 12:35:36','drarchit','2025-11-11 12:39:37'),(3444,0,0,'I',1138,'I001138',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:42:27','','0000-00-00 00:00:00'),(3445,0,0,'I',1138,'I001138',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-11 12:42:27','','0000-00-00 00:00:00'),(3446,0,0,'I',1138,'I001138',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:42:27','','0000-00-00 00:00:00'),(3447,0,0,'I',1138,'I001138',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:42:27','','0000-00-00 00:00:00'),(3448,0,0,'I',1137,'I001137',2526,1,'0000-00-00','51473',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 12:45:16','drarchit','2025-11-11 13:01:59'),(3449,0,0,'I',1139,'I001139',2526,1,'0000-00-00','51236',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:46:06','','0000-00-00 00:00:00'),(3450,0,0,'I',1139,'I001139',2526,2,'0000-00-00','51304',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:46:06','','0000-00-00 00:00:00'),(3451,0,0,'I',1139,'I001139',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 12:46:06','','0000-00-00 00:00:00'),(3452,0,0,'I',1140,'I001140',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:47:14','','0000-00-00 00:00:00'),(3453,0,0,'I',1140,'I001140',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:47:14','','0000-00-00 00:00:00'),(3454,0,0,'I',1140,'I001140',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:47:14','','0000-00-00 00:00:00'),(3466,0,0,'I',1143,'I001143',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:50:58','darshan','2025-11-11 12:51:10'),(3467,0,0,'I',1142,'I001142',2526,1,'0000-00-00','51475',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 12:51:05','drarchit','2025-11-11 13:19:16'),(3468,0,0,'I',1142,'I001142',2526,2,'0000-00-00','51348',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:51:05','drarchit','2025-11-11 13:19:16'),(3469,0,0,'I',1142,'I001142',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:51:05','drarchit','2025-11-11 13:19:16'),(3470,0,0,'I',1142,'I001142',2526,4,'0000-00-00','51235',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 12:51:05','drarchit','2025-11-11 13:19:16'),(3471,0,0,'I',1143,'I001143',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:51:10','','0000-00-00 00:00:00'),(3472,0,0,'I',1142,'I001142',2526,5,'0000-00-00','51474',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 12:52:41','drarchit','2025-11-11 13:19:16'),(3473,0,0,'I',1142,'I001142',2526,6,'0000-00-00','51236',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:52:41','drarchit','2025-11-11 13:19:16'),(3474,0,0,'I',1142,'I001142',2526,7,'0000-00-00','51336',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:52:41','drarchit','2025-11-11 13:19:16'),(3475,0,0,'I',1144,'I001144',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:53:21','darshan','2025-11-11 12:53:28'),(3476,0,0,'I',1144,'I001144',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:53:21','darshan','2025-11-11 12:53:28'),(3477,0,0,'I',1144,'I001144',2526,3,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:53:21','darshan','2025-11-11 12:53:28'),(3478,0,0,'I',1145,'I001145',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:57:04','drarchit','2025-11-11 12:57:12'),(3479,0,0,'I',1145,'I001145',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 12:57:04','drarchit','2025-11-11 12:57:12'),(3481,0,0,'I',1145,'I001145',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:57:04','drarchit','2025-11-11 12:57:12'),(3482,0,0,'I',1145,'I001145',2526,4,'0000-00-00','51467',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 12:57:12','','0000-00-00 00:00:00'),(3484,0,0,'I',1146,'I001146',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-11 12:58:58','','0000-00-00 00:00:00'),(3485,0,0,'I',1146,'I001146',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:58:58','','0000-00-00 00:00:00'),(3486,0,0,'I',1146,'I001146',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:58:58','','0000-00-00 00:00:00'),(3487,0,0,'I',1146,'I001146',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 12:58:58','','0000-00-00 00:00:00'),(3488,0,0,'I',1137,'I001137',2526,2,'0000-00-00','51373',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 12:59:25','drarchit','2025-11-11 13:01:59'),(3490,0,0,'I',1137,'I001137',2526,3,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:01:24','drarchit','2025-11-11 13:01:59'),(3491,0,0,'I',1137,'I001137',2526,4,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 13:01:24','drarchit','2025-11-11 13:01:59'),(3492,0,0,'I',1137,'I001137',2526,5,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 13:01:59','','0000-00-00 00:00:00'),(3493,0,0,'I',1147,'I001147',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 13:04:21','','0000-00-00 00:00:00'),(3494,0,0,'I',1147,'I001147',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 13:04:21','','0000-00-00 00:00:00'),(3495,0,0,'I',1147,'I001147',2526,3,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-11 13:04:21','','0000-00-00 00:00:00'),(3496,0,0,'I',1148,'I001148',2526,1,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 13:08:03','drarchit','2025-11-11 13:08:51'),(3497,0,0,'I',1148,'I001148',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 13:08:03','drarchit','2025-11-11 13:08:51'),(3498,0,0,'I',1149,'I001149',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 13:08:11','','0000-00-00 00:00:00'),(3499,0,0,'I',1148,'I001148',2526,2,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:08:51','','0000-00-00 00:00:00'),(3500,0,0,'I',1148,'I001148',2526,3,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:08:51','','0000-00-00 00:00:00'),(3501,0,0,'I',1148,'I001148',2526,4,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:08:51','','0000-00-00 00:00:00'),(3502,0,0,'I',1150,'I001150',2526,1,'0000-00-00','51477',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'drarchit','2025-11-11 13:11:22','drarchit','2025-11-11 13:23:32'),(3503,0,0,'I',1150,'I001150',2526,2,'0000-00-00','51273',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:11:22','drarchit','2025-11-11 13:23:32'),(3504,0,0,'I',1150,'I001150',2526,3,'0000-00-00','51243',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 13:11:22','drarchit','2025-11-11 13:23:32'),(3506,0,0,'I',1141,'I001141',2526,1,'0000-00-00','51374',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 13:12:43','drarchit','2025-11-11 13:13:56'),(3507,0,0,'I',1141,'I001141',2526,2,'0000-00-00','51479',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 13:13:25','drarchit','2025-11-11 13:13:56'),(3508,0,0,'I',1141,'I001141',2526,3,'0000-00-00','51480',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 13:13:56','','0000-00-00 00:00:00'),(3509,0,0,'I',1150,'I001150',2526,4,'0000-00-00','51478',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 13:14:32','drarchit','2025-11-11 13:23:32'),(3511,0,0,'I',1151,'I001151',2526,1,'0000-00-00','51286',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:17:37','drarchit','2025-11-11 13:18:02'),(3512,0,0,'I',1151,'I001151',2526,2,'0000-00-00','51482',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 13:18:02','','0000-00-00 00:00:00'),(3513,0,0,'I',1142,'I001142',2526,8,'0000-00-00','51244',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:19:03','drarchit','2025-11-11 13:19:16'),(3514,0,0,'I',1152,'I001152',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 13:21:01','darshan','2025-11-11 13:21:19'),(3515,0,0,'I',1152,'I001152',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 13:21:01','darshan','2025-11-11 13:21:19'),(3516,0,0,'I',1152,'I001152',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-11 13:21:19','','0000-00-00 00:00:00'),(3517,0,0,'I',1154,'I001154',2526,1,'0000-00-00','51477',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'drarchit','2025-11-11 13:22:14','drarchit','2025-11-11 13:38:15'),(3519,0,0,'I',1150,'I001150',2526,5,'0000-00-00','51290',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:23:32','','0000-00-00 00:00:00'),(3520,0,0,'I',1156,'I001156',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 13:25:01','','0000-00-00 00:00:00'),(3521,0,0,'I',1156,'I001156',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 13:25:01','','0000-00-00 00:00:00'),(3522,0,0,'I',1156,'I001156',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-11 13:25:01','','0000-00-00 00:00:00'),(3523,0,0,'I',1155,'I001155',2526,1,'0000-00-00','51484',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 13:25:15','drarchit','2025-11-11 13:41:28'),(3524,0,0,'I',1155,'I001155',2526,2,'0000-00-00','51485',0,0,'CAP','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 13:25:59','drarchit','2025-11-11 13:41:28'),(3525,0,0,'I',1155,'I001155',2526,3,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-11 13:26:13','drarchit','2025-11-11 13:41:28'),(3526,0,0,'I',1155,'I001155',2526,4,'0000-00-00','51486',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 13:27:00','drarchit','2025-11-11 13:41:28'),(3527,0,0,'I',1157,'I001157',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:28:02','drarchit','2025-11-11 13:29:27'),(3528,0,0,'I',1157,'I001157',2526,2,'0000-00-00','51217',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:28:02','drarchit','2025-11-11 13:29:27'),(3529,0,0,'I',1157,'I001157',2526,3,'0000-00-00','51477',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'drarchit','2025-11-11 13:28:50','drarchit','2025-11-11 13:29:27'),(3530,0,0,'I',1157,'I001157',2526,4,'0000-00-00','51288',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:28:50','drarchit','2025-11-11 13:29:27'),(3531,0,0,'I',1157,'I001157',2526,5,'0000-00-00','51342',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:28:50','drarchit','2025-11-11 13:29:27'),(3532,0,0,'I',1157,'I001157',2526,6,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:28:50','drarchit','2025-11-11 13:29:27'),(3533,0,0,'I',1157,'I001157',2526,7,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:28:50','drarchit','2025-11-11 13:29:27'),(3534,0,0,'I',1157,'I001157',2526,8,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'5-5-5','5 ML MORNI','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 13:28:50','drarchit','2025-11-11 13:29:27'),(3535,0,0,'I',1157,'I001157',2526,9,'0000-00-00','51487',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 13:29:19','drarchit','2025-11-11 13:29:27'),(3536,0,0,'I',1158,'I001158',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 13:33:11','','0000-00-00 00:00:00'),(3537,0,0,'I',1158,'I001158',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 13:33:11','','0000-00-00 00:00:00'),(3538,0,0,'I',1158,'I001158',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 13:33:11','','0000-00-00 00:00:00'),(3539,0,0,'I',1158,'I001158',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-11 13:33:11','','0000-00-00 00:00:00'),(3540,0,0,'I',1159,'I001159',2526,1,'0000-00-00','51487',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 13:33:28','','0000-00-00 00:00:00'),(3541,0,0,'I',1159,'I001159',2526,2,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:33:28','','0000-00-00 00:00:00'),(3542,0,0,'I',1159,'I001159',2526,3,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 13:33:28','','0000-00-00 00:00:00'),(3543,0,0,'I',1154,'I001154',2526,2,'0000-00-00','51420',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 13:38:15','','0000-00-00 00:00:00'),(3544,0,0,'I',1154,'I001154',2526,3,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:38:15','','0000-00-00 00:00:00'),(3545,0,0,'I',1154,'I001154',2526,4,'0000-00-00','51372',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:38:15','','0000-00-00 00:00:00'),(3546,0,0,'I',1154,'I001154',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 13:38:15','','0000-00-00 00:00:00'),(3547,0,0,'I',1154,'I001154',2526,6,'0000-00-00','51437',0,0,'SYRUP','','','','',0,1,0,0,0,0,'0-0-25','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 13:38:15','','0000-00-00 00:00:00'),(3548,0,0,'I',1155,'I001155',2526,5,'0000-00-00','51279',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:41:28','','0000-00-00 00:00:00'),(3549,0,0,'I',1160,'I001160',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 13:46:19','','0000-00-00 00:00:00'),(3550,0,0,'I',1160,'I001160',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 13:46:19','','0000-00-00 00:00:00'),(3551,0,0,'I',1160,'I001160',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 13:46:19','','0000-00-00 00:00:00'),(3552,0,0,'I',1160,'I001160',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-11 13:46:19','','0000-00-00 00:00:00'),(3553,0,0,'I',1160,'I001160',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-11 13:46:19','','0000-00-00 00:00:00'),(3554,0,0,'I',1161,'I001161',2526,1,'0000-00-00','51487',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 13:48:49','','0000-00-00 00:00:00'),(3555,0,0,'I',1161,'I001161',2526,2,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:48:49','','0000-00-00 00:00:00'),(3556,0,0,'I',1162,'I001162',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-11 13:49:14','','0000-00-00 00:00:00'),(3557,0,0,'I',1162,'I001162',2526,2,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 13:49:14','','0000-00-00 00:00:00'),(3558,0,0,'I',1162,'I001162',2526,3,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 13:49:14','','0000-00-00 00:00:00'),(3559,0,0,'I',1162,'I001162',2526,4,'0000-00-00','51226',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 13:49:14','','0000-00-00 00:00:00'),(3560,0,0,'I',1162,'I001162',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-11 13:49:14','','0000-00-00 00:00:00'),(3561,0,0,'I',1163,'I001163',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:50:22','','0000-00-00 00:00:00'),(3562,0,0,'I',1163,'I001163',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 13:50:22','','0000-00-00 00:00:00'),(3563,0,0,'I',1163,'I001163',2526,3,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:50:22','','0000-00-00 00:00:00'),(3564,0,0,'I',1163,'I001163',2526,4,'0000-00-00','51279',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:50:22','','0000-00-00 00:00:00'),(3565,0,0,'I',1164,'I001164',2526,1,'0000-00-00','51273',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:54:09','drarchit','2025-11-11 13:54:59'),(3566,0,0,'I',1164,'I001164',2526,2,'0000-00-00','51482',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 13:54:09','drarchit','2025-11-11 13:54:59'),(3568,0,0,'I',1164,'I001164',2526,3,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:54:09','drarchit','2025-11-11 13:54:59'),(3569,0,0,'I',1164,'I001164',2526,4,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:54:09','drarchit','2025-11-11 13:54:59'),(3570,0,0,'I',1164,'I001164',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 13:54:09','drarchit','2025-11-11 13:54:59'),(3571,0,0,'I',1164,'I001164',2526,6,'0000-00-00','51473',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 13:54:59','','0000-00-00 00:00:00'),(3572,0,0,'I',1164,'I001164',2526,7,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 13:54:59','','0000-00-00 00:00:00'),(3573,0,0,'I',1164,'I001164',2526,8,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:54:59','','0000-00-00 00:00:00'),(3574,0,0,'I',1129,'I001129',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 13:58:14','drarchit','2025-11-11 13:58:47'),(3576,0,0,'I',1129,'I001129',2526,5,'0000-00-00','51286',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:58:14','drarchit','2025-11-11 13:58:47'),(3577,0,0,'I',1129,'I001129',2526,6,'0000-00-00','51238',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 13:58:43','drarchit','2025-11-11 13:58:47'),(3578,0,0,'I',1165,'I001165',2526,1,'0000-00-00','51214',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'5','','P',NULL,NULL,'drarchit','2025-11-11 14:04:16','drarchit','2025-11-11 14:04:33'),(3579,0,0,'I',1165,'I001165',2526,2,'0000-00-00','51286',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 14:04:33','','0000-00-00 00:00:00'),(3581,0,0,'I',1167,'I001167',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 14:11:17','','0000-00-00 00:00:00'),(3582,0,0,'I',1167,'I001167',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 14:11:17','','0000-00-00 00:00:00'),(3583,0,0,'I',1167,'I001167',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 14:11:17','','0000-00-00 00:00:00'),(3584,0,0,'I',1167,'I001167',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-11 14:11:17','','0000-00-00 00:00:00'),(3585,0,0,'I',1166,'I001166',2526,2,'0000-00-00','51488',0,0,'INJ','','','','',0,4,0,0,0,0,'0-0-22','','Dy',90,0,0,0,0,0,0,0,0,0,'271','','P',NULL,NULL,'drarchit','2025-11-11 14:12:06','drarchit','2025-11-11 14:14:33'),(3586,0,0,'I',1166,'I001166',2526,1,'0000-00-00','51489',0,0,'INJ','','','','',0,4,0,0,0,0,'12-12-12','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 14:14:33','','0000-00-00 00:00:00'),(3587,0,0,'I',1166,'I001166',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 14:14:33','','0000-00-00 00:00:00'),(3588,0,0,'I',1166,'I001166',2526,4,'0000-00-00','51222',0,0,'TAB','','','','',0,45,0,0,0,0,'0-0-0.5','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 14:14:33','','0000-00-00 00:00:00'),(3589,0,0,'I',1166,'I001166',2526,5,'0000-00-00','51410',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-11 14:14:33','','0000-00-00 00:00:00'),(3590,0,0,'I',1168,'I001168',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 14:45:34','','0000-00-00 00:00:00'),(3591,0,0,'I',1168,'I001168',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 14:45:34','','0000-00-00 00:00:00'),(3592,0,0,'I',1169,'I001169',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 17:12:58','','0000-00-00 00:00:00'),(3593,0,0,'I',1169,'I001169',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 17:12:58','','0000-00-00 00:00:00'),(3594,0,0,'I',1169,'I001169',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 17:12:58','','0000-00-00 00:00:00'),(3595,0,0,'I',1169,'I001169',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-11 17:12:58','','0000-00-00 00:00:00'),(3596,0,0,'I',1170,'I001170',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 17:15:40','darshan','2025-11-11 17:16:04'),(3597,0,0,'I',1170,'I001170',2526,2,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-11 17:15:40','darshan','2025-11-11 17:16:04'),(3598,0,0,'I',1170,'I001170',2526,3,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 17:16:04','','0000-00-00 00:00:00'),(3599,0,0,'I',1170,'I001170',2526,4,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 17:16:04','','0000-00-00 00:00:00'),(3600,0,0,'I',1171,'I001171',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 17:41:34','','0000-00-00 00:00:00'),(3601,0,0,'I',1172,'I001172',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 17:47:48','darshan','2025-11-11 17:48:15'),(3602,0,0,'I',1172,'I001172',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 17:47:48','darshan','2025-11-11 17:48:15'),(3603,0,0,'I',1172,'I001172',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-11 17:48:15','','0000-00-00 00:00:00'),(3604,0,0,'I',1173,'I001173',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 17:58:22','','0000-00-00 00:00:00'),(3605,0,0,'I',1173,'I001173',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 17:58:22','','0000-00-00 00:00:00'),(3606,0,0,'I',1173,'I001173',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 17:58:22','','0000-00-00 00:00:00'),(3607,0,0,'I',1173,'I001173',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-11 17:58:22','','0000-00-00 00:00:00'),(3608,0,0,'I',1174,'I001174',2526,1,'0000-00-00','51230',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:00:10','','0000-00-00 00:00:00'),(3609,0,0,'I',1174,'I001174',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 18:00:10','','0000-00-00 00:00:00'),(3610,0,0,'I',1174,'I001174',2526,3,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:00:10','','0000-00-00 00:00:00'),(3611,0,0,'I',1174,'I001174',2526,4,'0000-00-00','51332',0,0,'CAP','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:00:10','','0000-00-00 00:00:00'),(3612,0,0,'I',1174,'I001174',2526,5,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-11-11 18:00:10','','0000-00-00 00:00:00'),(3613,0,0,'I',1175,'I001175',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 18:02:15','darshan','2025-11-11 18:07:24'),(3614,0,0,'I',1175,'I001175',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 18:02:15','darshan','2025-11-11 18:07:24'),(3615,0,0,'I',1175,'I001175',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 18:02:15','darshan','2025-11-11 18:07:24'),(3616,0,0,'I',1175,'I001175',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 18:02:15','darshan','2025-11-11 18:07:24'),(3617,0,0,'I',1175,'I001175',2526,5,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-11 18:02:30','darshan','2025-11-11 18:07:24'),(3618,0,0,'I',1132,'I001132',2526,4,'0000-00-00','51286',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:10:09','drarchit','2025-11-11 18:12:04'),(3619,0,0,'I',1132,'I001132',2526,5,'0000-00-00','51374',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 18:11:33','drarchit','2025-11-11 18:12:04'),(3620,0,0,'I',1132,'I001132',2526,6,'0000-00-00','51238',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-11-11 18:11:33','drarchit','2025-11-11 18:12:04'),(3621,0,0,'I',1132,'I001132',2526,7,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:11:33','drarchit','2025-11-11 18:12:04'),(3622,0,0,'I',1132,'I001132',2526,8,'0000-00-00','51487',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 18:11:33','drarchit','2025-11-11 18:12:04'),(3623,0,0,'I',1132,'I001132',2526,9,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 18:11:33','drarchit','2025-11-11 18:12:04'),(3625,0,0,'I',1132,'I001132',2526,10,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:12:04','','0000-00-00 00:00:00'),(3626,0,0,'I',1176,'I001176',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 18:19:13','','0000-00-00 00:00:00'),(3627,0,0,'I',1176,'I001176',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 18:19:13','','0000-00-00 00:00:00'),(3628,0,0,'I',1176,'I001176',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 18:19:13','','0000-00-00 00:00:00'),(3629,0,0,'I',1176,'I001176',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-11 18:19:13','','0000-00-00 00:00:00'),(3632,0,0,'I',1178,'I001178',2526,1,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:21:38','','0000-00-00 00:00:00'),(3633,0,0,'I',1178,'I001178',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 18:21:38','','0000-00-00 00:00:00'),(3634,0,0,'I',1179,'I001179',2526,1,'0000-00-00','51373',0,0,'CAP','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:29:35','','0000-00-00 00:00:00'),(3635,0,0,'I',1179,'I001179',2526,2,'0000-00-00','51395',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:29:35','','0000-00-00 00:00:00'),(3636,0,0,'I',1179,'I001179',2526,3,'0000-00-00','51396',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:29:35','','0000-00-00 00:00:00'),(3637,0,0,'I',1179,'I001179',2526,4,'0000-00-00','51297',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:29:35','','0000-00-00 00:00:00'),(3638,0,0,'I',1180,'I001180',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 18:32:17','','0000-00-00 00:00:00'),(3639,0,0,'I',1180,'I001180',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 18:32:17','','0000-00-00 00:00:00'),(3640,0,0,'I',1180,'I001180',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-11 18:32:17','','0000-00-00 00:00:00'),(3641,0,0,'I',1181,'I001181',2526,1,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:33:11','drarchit','2025-11-11 18:33:19'),(3642,0,0,'I',1181,'I001181',2526,2,'0000-00-00','51329',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 18:33:11','drarchit','2025-11-11 18:33:19'),(3643,0,0,'I',1181,'I001181',2526,3,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-11 18:33:19','','0000-00-00 00:00:00'),(3644,0,0,'I',1182,'I001182',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:37:52','','0000-00-00 00:00:00'),(3645,0,0,'I',1182,'I001182',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:37:52','','0000-00-00 00:00:00'),(3646,0,0,'I',1182,'I001182',2526,3,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 18:37:52','','0000-00-00 00:00:00'),(3647,0,0,'I',1182,'I001182',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 18:37:52','','0000-00-00 00:00:00'),(3648,0,0,'I',1182,'I001182',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 18:37:52','','0000-00-00 00:00:00'),(3649,0,0,'I',1182,'I001182',2526,6,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:37:52','','0000-00-00 00:00:00'),(3650,0,0,'I',1183,'I001183',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-11 18:38:02','','0000-00-00 00:00:00'),(3651,0,0,'I',1184,'I001184',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-11 18:40:08','','0000-00-00 00:00:00'),(3652,0,0,'I',1184,'I001184',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 18:40:08','','0000-00-00 00:00:00'),(3653,0,0,'I',1184,'I001184',2526,3,'0000-00-00','51194',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 18:40:08','','0000-00-00 00:00:00'),(3654,0,0,'I',1185,'I001185',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:40:57','','0000-00-00 00:00:00'),(3655,0,0,'I',1185,'I001185',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 18:40:57','','0000-00-00 00:00:00'),(3656,0,0,'I',1185,'I001185',2526,3,'0000-00-00','51262',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:40:57','','0000-00-00 00:00:00'),(3657,0,0,'I',1186,'I001186',2526,1,'0000-00-00','51389',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-11 18:45:50','drarchit','2025-11-11 19:20:08'),(3658,0,0,'I',1186,'I001186',2526,2,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:45:50','drarchit','2025-11-11 19:20:08'),(3659,0,0,'I',1187,'I001187',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 18:49:50','','0000-00-00 00:00:00'),(3660,0,0,'I',1187,'I001187',2526,2,'0000-00-00','51475',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 18:49:50','','0000-00-00 00:00:00'),(3661,0,0,'I',1189,'I001189',2526,1,'0000-00-00','51491',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 18:58:04','drarchit','2025-11-11 18:59:46'),(3663,0,0,'I',1189,'I001189',2526,2,'0000-00-00','51492',0,0,'INJ','','','','',0,1,0,0,0,0,'0-28-12','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 18:59:46','','0000-00-00 00:00:00'),(3664,0,0,'I',1189,'I001189',2526,3,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 18:59:46','','0000-00-00 00:00:00'),(3665,0,0,'I',1188,'I001188',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 19:02:11','drarchit','2025-11-11 19:02:44'),(3666,0,0,'I',1188,'I001188',2526,2,'0000-00-00','51220',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 19:02:11','drarchit','2025-11-11 19:02:44'),(3667,0,0,'I',1188,'I001188',2526,3,'0000-00-00','51238',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 19:02:11','drarchit','2025-11-11 19:02:44'),(3668,0,0,'I',1188,'I001188',2526,4,'0000-00-00','51330',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 19:02:11','drarchit','2025-11-11 19:02:44'),(3669,0,0,'I',1188,'I001188',2526,5,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 19:02:11','drarchit','2025-11-11 19:02:44'),(3670,0,0,'I',1188,'I001188',2526,6,'0000-00-00','51272',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 19:02:44','','0000-00-00 00:00:00'),(3671,0,0,'I',1190,'I001190',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 19:03:40','darshan','2025-11-11 19:03:58'),(3672,0,0,'I',1190,'I001190',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-11 19:03:40','darshan','2025-11-11 19:03:58'),(3673,0,0,'I',1190,'I001190',2526,3,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 19:03:40','darshan','2025-11-11 19:03:58'),(3674,0,0,'I',1190,'I001190',2526,4,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 19:03:40','darshan','2025-11-11 19:03:58'),(3675,0,0,'I',1191,'I001191',2526,1,'0000-00-00','51363',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 19:05:35','drarchit','2025-11-11 19:05:43'),(3676,0,0,'I',1191,'I001191',2526,2,'0000-00-00','51239',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 19:05:35','drarchit','2025-11-11 19:05:43'),(3677,0,0,'I',1191,'I001191',2526,3,'0000-00-00','51436',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 19:05:35','drarchit','2025-11-11 19:05:43'),(3678,0,0,'I',1191,'I001191',2526,4,'0000-00-00','51372',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 19:05:35','drarchit','2025-11-11 19:05:43'),(3679,0,0,'I',1191,'I001191',2526,5,'0000-00-00','51279',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 19:05:43','','0000-00-00 00:00:00'),(3680,0,0,'I',1192,'I001192',2526,1,'0000-00-00','51493',0,0,'TAB','','','','',0,180,0,0,0,0,'2-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 19:10:25','','0000-00-00 00:00:00'),(3681,0,0,'I',1192,'I001192',2526,2,'0000-00-00','51306',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 19:10:25','','0000-00-00 00:00:00'),(3682,0,0,'I',1177,'I001177',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-11 19:12:32','drarchit','2025-11-11 19:12:48'),(3683,0,0,'I',1177,'I001177',2526,2,'0000-00-00','51389',0,0,'TAB','','','','',0,40,0,0,0,0,'0-1-1','','Dy',20,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-11 19:12:32','drarchit','2025-11-11 19:12:48'),(3684,0,0,'I',1177,'I001177',2526,3,'0000-00-00','51407',0,0,'TAB','','','','',0,60,0,0,0,0,'1-1-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 19:12:48','','0000-00-00 00:00:00'),(3685,0,0,'I',1186,'I001186',2526,3,'0000-00-00','51490',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-11 19:14:49','drarchit','2025-11-11 19:20:08'),(3686,0,0,'I',1186,'I001186',2526,4,'0000-00-00','51407',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 19:14:49','drarchit','2025-11-11 19:20:08'),(3687,0,0,'I',1186,'I001186',2526,5,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-11 19:14:49','drarchit','2025-11-11 19:20:08'),(3688,0,0,'I',1186,'I001186',2526,6,'0000-00-00','51406',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 19:14:49','drarchit','2025-11-11 19:20:08'),(3689,0,0,'I',1186,'I001186',2526,7,'0000-00-00','51383',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 19:14:49','drarchit','2025-11-11 19:20:08'),(3690,0,0,'I',1186,'I001186',2526,8,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 19:14:49','drarchit','2025-11-11 19:20:08'),(3691,0,0,'I',1186,'I001186',2526,9,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 19:14:49','drarchit','2025-11-11 19:20:08'),(3692,0,0,'I',1193,'I001193',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 19:19:16','','0000-00-00 00:00:00'),(3693,0,0,'I',1193,'I001193',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 19:19:16','','0000-00-00 00:00:00'),(3694,0,0,'I',1195,'I001195',2526,1,'0000-00-00','51494',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 19:25:13','','0000-00-00 00:00:00'),(3695,0,0,'I',1195,'I001195',2526,2,'0000-00-00','51325',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 19:25:13','','0000-00-00 00:00:00'),(3696,0,0,'I',1195,'I001195',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 19:25:13','','0000-00-00 00:00:00'),(3697,0,0,'I',1196,'I001196',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 19:27:37','','0000-00-00 00:00:00'),(3698,0,0,'I',1196,'I001196',2526,2,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 19:27:37','','0000-00-00 00:00:00'),(3699,0,0,'I',1196,'I001196',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 19:27:37','','0000-00-00 00:00:00'),(3700,0,0,'I',1196,'I001196',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-11 19:27:37','','0000-00-00 00:00:00'),(3701,0,0,'I',1197,'I001197',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 19:28:42','','0000-00-00 00:00:00'),(3702,0,0,'I',1197,'I001197',2526,2,'0000-00-00','51228',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-11 19:28:42','','0000-00-00 00:00:00'),(3703,0,0,'I',1197,'I001197',2526,3,'0000-00-00','51456',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 19:28:42','','0000-00-00 00:00:00'),(3704,0,0,'I',1198,'I001198',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 19:33:14','','0000-00-00 00:00:00'),(3705,0,0,'I',1199,'I001199',2526,1,'0000-00-00','51276',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 19:34:04','darshan','2025-11-11 19:35:22'),(3706,0,0,'I',1199,'I001199',2526,2,'0000-00-00','51211',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 19:34:09','darshan','2025-11-11 19:35:22'),(3707,0,0,'I',1199,'I001199',2526,3,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 19:35:22','','0000-00-00 00:00:00'),(3708,0,0,'I',1199,'I001199',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 19:35:22','','0000-00-00 00:00:00'),(3709,0,0,'I',1199,'I001199',2526,5,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 19:35:22','','0000-00-00 00:00:00'),(3710,0,0,'I',1199,'I001199',2526,6,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-11 19:35:22','','0000-00-00 00:00:00'),(3711,0,0,'I',1200,'I001200',2526,1,'0000-00-00','51223',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-11 19:37:42','drarchit','2025-11-11 19:38:28'),(3712,0,0,'I',1200,'I001200',2526,2,'0000-00-00','51389',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-11 19:37:42','drarchit','2025-11-11 19:38:28'),(3713,0,0,'I',1201,'I001201',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 19:38:00','','0000-00-00 00:00:00'),(3715,0,0,'I',1201,'I001201',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 19:38:00','','0000-00-00 00:00:00'),(3716,0,0,'I',1200,'I001200',2526,3,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 19:38:28','','0000-00-00 00:00:00'),(3717,0,0,'I',1203,'I001203',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 19:48:46','','0000-00-00 00:00:00'),(3718,0,0,'I',1203,'I001203',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 19:48:46','','0000-00-00 00:00:00'),(3719,0,0,'I',1203,'I001203',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-11 19:48:46','','0000-00-00 00:00:00'),(3720,0,0,'I',1204,'I001204',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-11 19:50:50','darshan','2025-11-11 20:00:27'),(3721,0,0,'I',1204,'I001204',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 19:50:50','darshan','2025-11-11 20:00:27'),(3722,0,0,'I',1205,'I001205',2526,1,'0000-00-00','51232',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 20:00:12','','0000-00-00 00:00:00'),(3723,0,0,'I',1205,'I001205',2526,2,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 20:00:12','','0000-00-00 00:00:00'),(3724,0,0,'I',1205,'I001205',2526,3,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 20:00:12','','0000-00-00 00:00:00'),(3725,0,0,'I',1205,'I001205',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 20:00:12','','0000-00-00 00:00:00'),(3726,0,0,'I',1205,'I001205',2526,5,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 20:00:12','','0000-00-00 00:00:00'),(3727,0,0,'I',1205,'I001205',2526,6,'0000-00-00','51220',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 20:00:12','','0000-00-00 00:00:00'),(3728,0,0,'I',1204,'I001204',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-11 20:00:27','','0000-00-00 00:00:00'),(3729,0,0,'I',1204,'I001204',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-11 20:00:27','','0000-00-00 00:00:00'),(3730,0,0,'I',1204,'I001204',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-11 20:00:27','','0000-00-00 00:00:00'),(3731,0,0,'I',1206,'I001206',2526,1,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 20:10:39','','0000-00-00 00:00:00'),(3732,0,0,'I',1206,'I001206',2526,2,'0000-00-00','51332',0,0,'CAP','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 20:10:39','','0000-00-00 00:00:00'),(3733,0,0,'I',1206,'I001206',2526,3,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 20:10:39','','0000-00-00 00:00:00'),(3734,0,0,'I',1206,'I001206',2526,4,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-11-11 20:10:39','','0000-00-00 00:00:00'),(3735,0,0,'I',1206,'I001206',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 20:10:39','','0000-00-00 00:00:00'),(3736,0,0,'I',1207,'I001207',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 20:12:35','','0000-00-00 00:00:00'),(3737,0,0,'I',1207,'I001207',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 20:12:35','','0000-00-00 00:00:00'),(3738,0,0,'I',1207,'I001207',2526,3,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-11 20:12:35','','0000-00-00 00:00:00'),(3739,0,0,'I',1207,'I001207',2526,4,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-11-11 20:12:35','','0000-00-00 00:00:00'),(3740,0,0,'I',1207,'I001207',2526,5,'0000-00-00','51476',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 20:12:35','','0000-00-00 00:00:00'),(3741,0,0,'I',1209,'I001209',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 20:16:36','','0000-00-00 00:00:00'),(3742,0,0,'I',1209,'I001209',2526,2,'0000-00-00','51267',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 20:16:36','','0000-00-00 00:00:00'),(3743,0,0,'I',1209,'I001209',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-11 20:16:36','','0000-00-00 00:00:00'),(3744,0,0,'I',1210,'I001210',2526,1,'0000-00-00','51482',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-11 20:19:50','drarchit','2025-11-11 20:20:08'),(3745,0,0,'I',1210,'I001210',2526,2,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-11 20:19:50','drarchit','2025-11-11 20:20:08'),(3746,0,0,'I',1210,'I001210',2526,3,'0000-00-00','51219',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-11-11 20:19:50','drarchit','2025-11-11 20:20:08'),(3747,0,0,'I',1211,'I001211',2526,1,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'0-.5-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 11:02:06','','0000-00-00 00:00:00'),(3748,0,0,'I',1212,'I001212',2526,1,'0000-00-00','51313',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:04:37','drarchit','2025-11-12 11:05:27'),(3749,0,0,'I',1212,'I001212',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:04:37','drarchit','2025-11-12 11:05:27'),(3750,0,0,'I',1212,'I001212',2526,3,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-12 11:04:37','drarchit','2025-11-12 11:05:27'),(3752,0,0,'I',1213,'I001213',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 11:13:24','darshan','2025-11-12 11:14:26'),(3753,0,0,'I',1213,'I001213',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 11:13:24','darshan','2025-11-12 11:14:26'),(3755,0,0,'I',1214,'I001214',2526,1,'0000-00-00','51356',0,0,'TAB','','','','',0,180,0,0,0,0,'0-0-2','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:20:43','','0000-00-00 00:00:00'),(3756,0,0,'I',1214,'I001214',2526,2,'0000-00-00','51367',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:20:43','','0000-00-00 00:00:00'),(3757,0,0,'I',1214,'I001214',2526,3,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:20:43','','0000-00-00 00:00:00'),(3758,0,0,'I',1215,'I001215',2526,1,'0000-00-00','51487',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-12 11:24:44','drarchit','2025-11-12 11:25:10'),(3759,0,0,'I',1215,'I001215',2526,2,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:24:44','drarchit','2025-11-12 11:25:10'),(3760,0,0,'I',1215,'I001215',2526,3,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:25:10','','0000-00-00 00:00:00'),(3761,0,0,'I',1215,'I001215',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 11:25:10','','0000-00-00 00:00:00'),(3762,0,0,'I',1215,'I001215',2526,5,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:25:10','','0000-00-00 00:00:00'),(3763,0,0,'I',1215,'I001215',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-12 11:25:10','','0000-00-00 00:00:00'),(3764,0,0,'I',1217,'I001217',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 11:34:02','','0000-00-00 00:00:00'),(3766,0,0,'I',1216,'I001216',2526,1,'0000-00-00','51259',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:35:04','drarchit','2025-11-12 11:36:35'),(3767,0,0,'I',1216,'I001216',2526,2,'0000-00-00','51385',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:36:18','drarchit','2025-11-12 11:36:35'),(3768,0,0,'I',1216,'I001216',2526,3,'0000-00-00','51353',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:36:18','drarchit','2025-11-12 11:36:35'),(3769,0,0,'I',1216,'I001216',2526,4,'0000-00-00','51473',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-12 11:36:18','drarchit','2025-11-12 11:36:35'),(3770,0,0,'I',1216,'I001216',2526,5,'0000-00-00','51273',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:36:18','drarchit','2025-11-12 11:36:35'),(3771,0,0,'I',1216,'I001216',2526,6,'0000-00-00','51462',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:36:18','drarchit','2025-11-12 11:36:35'),(3772,0,0,'I',1216,'I001216',2526,7,'0000-00-00','51336',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:36:18','drarchit','2025-11-12 11:36:35'),(3773,0,0,'I',1218,'I001218',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 11:37:42','','0000-00-00 00:00:00'),(3774,0,0,'I',1219,'I001219',2526,1,'0000-00-00','51235',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 11:39:39','drarchit','2025-11-12 11:43:54'),(3775,0,0,'I',1219,'I001219',2526,2,'0000-00-00','51239',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 11:39:47','drarchit','2025-11-12 11:43:54'),(3776,0,0,'I',1219,'I001219',2526,3,'0000-00-00','51412',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:42:43','drarchit','2025-11-12 11:43:54'),(3777,0,0,'I',1219,'I001219',2526,4,'0000-00-00','51370',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 11:42:43','drarchit','2025-11-12 11:43:54'),(3778,0,0,'I',1219,'I001219',2526,5,'0000-00-00','51217',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:43:54','','0000-00-00 00:00:00'),(3779,0,0,'I',1220,'I001220',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 11:51:14','','0000-00-00 00:00:00'),(3780,0,0,'I',1220,'I001220',2526,2,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-11-12 11:51:14','','0000-00-00 00:00:00'),(3781,0,0,'I',1220,'I001220',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 11:51:14','','0000-00-00 00:00:00'),(3782,0,0,'I',1220,'I001220',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-12 11:51:14','','0000-00-00 00:00:00'),(3783,0,0,'I',1220,'I001220',2526,5,'0000-00-00','51215',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 11:51:14','','0000-00-00 00:00:00'),(3784,0,0,'I',1221,'I001221',2526,1,'0000-00-00','51304',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:53:38','drarchit','2025-11-12 11:55:35'),(3786,0,0,'I',1221,'I001221',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 11:53:38','drarchit','2025-11-12 11:55:35'),(3787,0,0,'I',1221,'I001221',2526,3,'0000-00-00','51318',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:53:52','drarchit','2025-11-12 11:55:35'),(3788,0,0,'I',1221,'I001221',2526,4,'0000-00-00','51358',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 11:55:17','drarchit','2025-11-12 11:55:35'),(3789,0,0,'I',1221,'I001221',2526,5,'0000-00-00','51330',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 11:55:17','drarchit','2025-11-12 11:55:35'),(3790,0,0,'I',1221,'I001221',2526,6,'0000-00-00','51468',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-12 11:55:35','','0000-00-00 00:00:00'),(3791,0,0,'I',1222,'I001222',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:01:37','','0000-00-00 00:00:00'),(3792,0,0,'I',1222,'I001222',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:01:37','','0000-00-00 00:00:00'),(3793,0,0,'I',1222,'I001222',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-12 12:01:37','','0000-00-00 00:00:00'),(3794,0,0,'I',1222,'I001222',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-12 12:01:37','','0000-00-00 00:00:00'),(3795,0,0,'I',1223,'I001223',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-12 12:09:08','darshan','2025-11-12 12:09:51'),(3796,0,0,'I',1223,'I001223',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:09:08','darshan','2025-11-12 12:09:51'),(3798,0,0,'I',1223,'I001223',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,23,0,0,0,0,'0-.5-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:09:08','darshan','2025-11-12 12:09:51'),(3799,0,0,'I',1224,'I001224',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:12:38','','0000-00-00 00:00:00'),(3800,0,0,'I',1225,'I001225',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,5,0,0,0,0,'.5-0-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:13:45','darshan','2025-11-12 12:14:48'),(3801,0,0,'I',1225,'I001225',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,7,0,0,0,0,'.5-0-.5','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:13:45','darshan','2025-11-12 12:14:48'),(3802,0,0,'I',1225,'I001225',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,0,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-11-12 12:13:45','darshan','2025-11-12 12:14:48'),(3804,0,0,'I',1225,'I001225',2526,5,'0000-00-00','51447',0,0,'SYRUP','','','','',0,0,0,0,0,0,'0-0-1','7ml','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:13:45','darshan','2025-11-12 12:14:48'),(3805,0,0,'I',1226,'I001226',2526,1,'0000-00-00','51276',0,0,'CAP','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:19:32','','0000-00-00 00:00:00'),(3806,0,0,'I',1226,'I001226',2526,2,'0000-00-00','51277',0,0,'OINT','','','','',0,1,0,0,0,0,'1-1-1','','Dy',15,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'darshan','2025-11-12 12:19:32','','0000-00-00 00:00:00'),(3807,0,0,'I',1226,'I001226',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-12 12:19:32','','0000-00-00 00:00:00'),(3808,0,0,'I',1227,'I001227',2526,1,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 12:21:54','','0000-00-00 00:00:00'),(3809,0,0,'I',1227,'I001227',2526,2,'0000-00-00','51411',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-12 12:21:54','','0000-00-00 00:00:00'),(3810,0,0,'I',1227,'I001227',2526,3,'0000-00-00','51338',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 12:21:54','','0000-00-00 00:00:00'),(3811,0,0,'I',1227,'I001227',2526,4,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 12:21:54','','0000-00-00 00:00:00'),(3812,0,0,'I',1227,'I001227',2526,5,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-12 12:21:54','','0000-00-00 00:00:00'),(3813,0,0,'I',1228,'I001228',2526,1,'0000-00-00','51283',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:23:08','','0000-00-00 00:00:00'),(3814,0,0,'I',1228,'I001228',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:23:08','','0000-00-00 00:00:00'),(3815,0,0,'I',1228,'I001228',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:23:08','','0000-00-00 00:00:00'),(3816,0,0,'I',1228,'I001228',2526,4,'0000-00-00','51198',0,0,'TAB','','','','',0,0,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:23:08','','0000-00-00 00:00:00'),(3817,0,0,'I',1229,'I001229',2526,1,'0000-00-00','51240',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 12:26:05','drarchit','2025-11-12 12:29:01'),(3818,0,0,'I',1229,'I001229',2526,2,'0000-00-00','51239',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 12:26:05','drarchit','2025-11-12 12:29:01'),(3820,0,0,'I',1230,'I001230',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:26:29','','0000-00-00 00:00:00'),(3821,0,0,'I',1229,'I001229',2526,3,'0000-00-00','51231',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 12:27:35','drarchit','2025-11-12 12:29:01'),(3822,0,0,'I',1229,'I001229',2526,4,'0000-00-00','51235',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 12:27:35','drarchit','2025-11-12 12:29:01'),(3823,0,0,'I',1229,'I001229',2526,5,'0000-00-00','51492',0,0,'INJ','','','','',0,1,0,0,0,0,'30-0-14','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-12 12:27:35','drarchit','2025-11-12 12:29:01'),(3824,0,0,'I',1229,'I001229',2526,6,'0000-00-00','51496',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 12:29:01','','0000-00-00 00:00:00'),(3825,0,0,'I',1231,'I001231',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:33:35','','0000-00-00 00:00:00'),(3826,0,0,'I',1231,'I001231',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:33:35','','0000-00-00 00:00:00'),(3827,0,0,'I',1232,'I001232',2526,1,'0000-00-00','51477',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'drarchit','2025-11-12 12:37:24','drarchit','2025-11-12 12:39:16'),(3828,0,0,'I',1232,'I001232',2526,2,'0000-00-00','51304',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 12:37:24','drarchit','2025-11-12 12:39:16'),(3829,0,0,'I',1232,'I001232',2526,3,'0000-00-00','51318',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 12:37:41','drarchit','2025-11-12 12:39:16'),(3830,0,0,'I',1233,'I001233',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:37:58','darshan','2025-11-12 12:38:06'),(3831,0,0,'I',1233,'I001233',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:37:58','darshan','2025-11-12 12:38:06'),(3832,0,0,'I',1233,'I001233',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-12 12:37:58','darshan','2025-11-12 12:38:06'),(3834,0,0,'I',1233,'I001233',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-12 12:38:06','','0000-00-00 00:00:00'),(3835,0,0,'I',1232,'I001232',2526,4,'0000-00-00','51497',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 12:39:16','','0000-00-00 00:00:00'),(3836,0,0,'I',1232,'I001232',2526,5,'0000-00-00','51468',0,0,'TAB','','','','',0,100,0,0,0,0,'0-1-0','','Dy',100,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-12 12:39:16','','0000-00-00 00:00:00'),(3837,0,0,'I',1232,'I001232',2526,6,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 12:39:16','','0000-00-00 00:00:00'),(3838,0,0,'I',1234,'I001234',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:41:26','darshan','2025-11-12 12:41:54'),(3839,0,0,'I',1234,'I001234',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:41:26','darshan','2025-11-12 12:41:54'),(3840,0,0,'I',1234,'I001234',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:41:26','darshan','2025-11-12 12:41:54'),(3841,0,0,'I',1234,'I001234',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-12 12:41:26','darshan','2025-11-12 12:41:54'),(3842,0,0,'I',1234,'I001234',2526,5,'0000-00-00','51193',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:41:54','','0000-00-00 00:00:00'),(3843,0,0,'I',1235,'I001235',2526,1,'0000-00-00','51269',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 12:46:35','drarchit','2025-11-12 12:47:14'),(3844,0,0,'I',1235,'I001235',2526,2,'0000-00-00','51237',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 12:46:35','drarchit','2025-11-12 12:47:14'),(3845,0,0,'I',1235,'I001235',2526,3,'0000-00-00','51372',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 12:46:35','drarchit','2025-11-12 12:47:14'),(3846,0,0,'I',1235,'I001235',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 12:46:35','drarchit','2025-11-12 12:47:14'),(3847,0,0,'I',1235,'I001235',2526,5,'0000-00-00','51498',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 12:47:14','','0000-00-00 00:00:00'),(3848,0,0,'I',1236,'I001236',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:47:54','darshan','2025-11-12 12:48:23'),(3849,0,0,'I',1236,'I001236',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:47:54','darshan','2025-11-12 12:48:23'),(3850,0,0,'I',1236,'I001236',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:48:23','','0000-00-00 00:00:00'),(3851,0,0,'I',1236,'I001236',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:48:23','','0000-00-00 00:00:00'),(3852,0,0,'I',1237,'I001237',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:50:28','','0000-00-00 00:00:00'),(3853,0,0,'I',1237,'I001237',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:50:28','','0000-00-00 00:00:00'),(3854,0,0,'I',1237,'I001237',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:50:28','','0000-00-00 00:00:00'),(3855,0,0,'I',1237,'I001237',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',45,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-12 12:50:28','','0000-00-00 00:00:00'),(3856,0,0,'I',1238,'I001238',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-12 12:56:23','darshan','2025-11-12 12:57:20'),(3857,0,0,'I',1238,'I001238',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:56:23','darshan','2025-11-12 12:57:20'),(3858,0,0,'I',1238,'I001238',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,15,0,0,0,0,'0-.5-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 12:56:23','darshan','2025-11-12 12:57:20'),(3860,0,0,'I',1239,'I001239',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 12:57:05','','0000-00-00 00:00:00'),(3861,0,0,'I',1239,'I001239',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 12:57:05','','0000-00-00 00:00:00'),(3862,0,0,'I',1239,'I001239',2526,3,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-12 12:57:05','','0000-00-00 00:00:00'),(3863,0,0,'I',1239,'I001239',2526,4,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-12 12:57:05','','0000-00-00 00:00:00'),(3864,0,0,'I',1239,'I001239',2526,5,'0000-00-00','51262',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 12:57:05','','0000-00-00 00:00:00'),(3865,0,0,'I',1238,'I001238',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-12 12:57:20','','0000-00-00 00:00:00'),(3866,0,0,'I',1240,'I001240',2526,1,'0000-00-00','51499',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 13:01:29','drarchit','2025-11-12 13:03:12'),(3867,0,0,'I',1241,'I001241',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 13:01:56','darshan','2025-11-12 13:07:46'),(3868,0,0,'I',1241,'I001241',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 13:01:56','darshan','2025-11-12 13:07:46'),(3869,0,0,'I',1241,'I001241',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 13:02:42','darshan','2025-11-12 13:07:46'),(3870,0,0,'I',1241,'I001241',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-12 13:02:42','darshan','2025-11-12 13:07:46'),(3871,0,0,'I',1241,'I001241',2526,5,'0000-00-00','51283',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 13:02:42','darshan','2025-11-12 13:07:46'),(3872,0,0,'I',1240,'I001240',2526,2,'0000-00-00','51230',0,0,'TAB','','','','',0,15,0,0,0,0,'0-1-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 13:03:06','drarchit','2025-11-12 13:03:12'),(3873,0,0,'I',1240,'I001240',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 13:03:06','drarchit','2025-11-12 13:03:12'),(3874,0,0,'I',1240,'I001240',2526,4,'0000-00-00','51487',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-12 13:03:06','drarchit','2025-11-12 13:03:12'),(3875,0,0,'I',1240,'I001240',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 13:03:06','drarchit','2025-11-12 13:03:12'),(3876,0,0,'I',1240,'I001240',2526,6,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 13:03:06','drarchit','2025-11-12 13:03:12'),(3877,0,0,'I',1242,'I001242',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 13:11:02','drarchit','2025-11-12 13:12:10'),(3878,0,0,'I',1242,'I001242',2526,2,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-12 13:11:02','drarchit','2025-11-12 13:12:10'),(3880,0,0,'I',1242,'I001242',2526,3,'0000-00-00','51480',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-12 13:11:02','drarchit','2025-11-12 13:12:10'),(3881,0,0,'I',1242,'I001242',2526,4,'0000-00-00','51372',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 13:11:14','drarchit','2025-11-12 13:12:10'),(3882,0,0,'I',1242,'I001242',2526,5,'0000-00-00','51500',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 13:12:10','','0000-00-00 00:00:00'),(3883,0,0,'I',1243,'I001243',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 13:12:49','','0000-00-00 00:00:00'),(3884,0,0,'I',1243,'I001243',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 13:12:49','','0000-00-00 00:00:00'),(3885,0,0,'I',1243,'I001243',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-11-12 13:12:49','','0000-00-00 00:00:00'),(3886,0,0,'I',1243,'I001243',2526,4,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-12 13:12:49','','0000-00-00 00:00:00'),(3887,0,0,'I',1243,'I001243',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-12 13:12:49','','0000-00-00 00:00:00'),(3888,0,0,'I',1244,'I001244',2526,1,'0000-00-00','51304',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 13:16:10','drarchit','2025-11-12 13:17:02'),(3889,0,0,'I',1244,'I001244',2526,2,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-12 13:16:10','drarchit','2025-11-12 13:17:02'),(3890,0,0,'I',1244,'I001244',2526,3,'0000-00-00','51501',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-12 13:17:02','','0000-00-00 00:00:00'),(3891,0,0,'I',1244,'I001244',2526,4,'0000-00-00','51253',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 13:17:02','','0000-00-00 00:00:00'),(3893,0,0,'I',1245,'I001245',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 13:21:01','darshan','2025-11-12 13:22:10'),(3895,0,0,'I',1245,'I001245',2526,2,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 13:21:17','darshan','2025-11-12 13:22:10'),(3896,0,0,'I',1245,'I001245',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 13:21:47','darshan','2025-11-12 13:22:10'),(3898,0,0,'I',1245,'I001245',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-12 13:22:10','','0000-00-00 00:00:00'),(3899,0,0,'I',1246,'I001246',2526,1,'0000-00-00','51346',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 13:24:34','drarchit','2025-11-12 13:24:37'),(3900,0,0,'I',1246,'I001246',2526,2,'0000-00-00','51338',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 13:24:34','drarchit','2025-11-12 13:24:37'),(3901,0,0,'I',1246,'I001246',2526,3,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 13:24:34','drarchit','2025-11-12 13:24:37'),(3903,0,0,'I',1247,'I001247',2526,1,'0000-00-00','51284',0,0,'CAP','','','','',0,0,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-12 13:29:14','darshan','2025-11-12 13:30:09'),(3904,0,0,'I',1247,'I001247',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 13:30:01','darshan','2025-11-12 13:30:09'),(3905,0,0,'I',1247,'I001247',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 13:30:01','darshan','2025-11-12 13:30:09'),(3906,0,0,'I',1247,'I001247',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 13:30:01','darshan','2025-11-12 13:30:09'),(3907,0,0,'I',1248,'I001248',2526,1,'0000-00-00','51321',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 13:43:56','','0000-00-00 00:00:00'),(3908,0,0,'I',1248,'I001248',2526,2,'0000-00-00','51379',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','600 MG','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 13:43:56','','0000-00-00 00:00:00'),(3909,0,0,'I',1248,'I001248',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 13:43:56','','0000-00-00 00:00:00'),(3910,0,0,'I',1248,'I001248',2526,4,'0000-00-00','51380',0,0,'CAP','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 13:43:56','','0000-00-00 00:00:00'),(3911,0,0,'I',1248,'I001248',2526,5,'0000-00-00','51480',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-12 13:43:56','','0000-00-00 00:00:00'),(3912,0,0,'I',1249,'I001249',2526,1,'0000-00-00','51283',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 17:04:49','darshan','2025-11-12 17:05:27'),(3915,0,0,'I',1249,'I001249',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 17:04:49','darshan','2025-11-12 17:05:27'),(3916,0,0,'I',1250,'I001250',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 17:27:44','','0000-00-00 00:00:00'),(3917,0,0,'I',1250,'I001250',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 17:27:44','','0000-00-00 00:00:00'),(3918,0,0,'I',1250,'I001250',2526,3,'0000-00-00','51287',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-12 17:27:44','','0000-00-00 00:00:00'),(3919,0,0,'I',1251,'I001251',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 17:30:33','','0000-00-00 00:00:00'),(3920,0,0,'I',1251,'I001251',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 17:30:33','','0000-00-00 00:00:00'),(3921,0,0,'I',1252,'I001252',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 17:33:07','darshan','2025-11-12 17:34:08'),(3922,0,0,'I',1252,'I001252',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 17:33:07','darshan','2025-11-12 17:34:08'),(3923,0,0,'I',1252,'I001252',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 17:33:07','darshan','2025-11-12 17:34:08'),(3925,0,0,'I',1253,'I001253',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 17:39:30','darshan','2025-11-12 17:39:31'),(3926,0,0,'I',1254,'I001254',2526,1,'0000-00-00','51252',0,0,'SYRUP','','','','',0,1,0,0,0,0,'1-1-1','5ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 17:53:11','','0000-00-00 00:00:00'),(3927,0,0,'I',1254,'I001254',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 17:53:11','','0000-00-00 00:00:00'),(3928,0,0,'I',1254,'I001254',2526,3,'0000-00-00','51447',0,0,'SYRUP','','','','',0,1,0,0,0,0,'0-0-1','5ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 17:53:11','','0000-00-00 00:00:00'),(3929,0,0,'I',1255,'I001255',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 17:59:45','','0000-00-00 00:00:00'),(3930,0,0,'I',1255,'I001255',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 17:59:45','','0000-00-00 00:00:00'),(3931,0,0,'I',1255,'I001255',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 17:59:45','','0000-00-00 00:00:00'),(3932,0,0,'I',1255,'I001255',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-12 17:59:45','','0000-00-00 00:00:00'),(3933,0,0,'I',1255,'I001255',2526,5,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-12 17:59:45','','0000-00-00 00:00:00'),(3934,0,0,'I',1256,'I001256',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 18:04:31','darshan','2025-11-12 18:04:35'),(3935,0,0,'I',1256,'I001256',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-12 18:04:31','darshan','2025-11-12 18:04:35'),(3936,0,0,'I',1256,'I001256',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 18:04:31','darshan','2025-11-12 18:04:35'),(3937,0,0,'I',1257,'I001257',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 18:24:10','','0000-00-00 00:00:00'),(3938,0,0,'I',1258,'I001258',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 18:30:13','','0000-00-00 00:00:00'),(3939,0,0,'I',1258,'I001258',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 18:30:13','','0000-00-00 00:00:00'),(3940,0,0,'I',1258,'I001258',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-12 18:30:13','','0000-00-00 00:00:00'),(3941,0,0,'I',1259,'I001259',2526,1,'0000-00-00','51353',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 18:31:49','','0000-00-00 00:00:00'),(3942,0,0,'I',1259,'I001259',2526,2,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 18:31:49','','0000-00-00 00:00:00'),(3943,0,0,'I',1260,'I001260',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-12 18:35:38','drarchit','2025-11-12 18:37:39'),(3944,0,0,'I',1260,'I001260',2526,2,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 18:35:38','drarchit','2025-11-12 18:37:39'),(3945,0,0,'I',1260,'I001260',2526,3,'0000-00-00','51503',0,0,'TAB','','','','',0,0,0,0,0,0,'1-1-1','','Dy',0,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-12 18:36:11','drarchit','2025-11-12 18:37:39'),(3946,0,0,'I',1260,'I001260',2526,4,'0000-00-00','51504',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-0','','Dy',0,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-12 18:37:39','','0000-00-00 00:00:00'),(3947,0,0,'I',1261,'I001261',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-12 18:38:42','','0000-00-00 00:00:00'),(3948,0,0,'I',1261,'I001261',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 18:38:42','','0000-00-00 00:00:00'),(3949,0,0,'I',1262,'I001262',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-12 18:39:26','drarchit','2025-11-12 20:02:19'),(3950,0,0,'I',1262,'I001262',2526,2,'0000-00-00','51389',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-12 18:39:26','drarchit','2025-11-12 20:02:19'),(3951,0,0,'I',1262,'I001262',2526,3,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 18:39:26','drarchit','2025-11-12 20:02:19'),(3952,0,0,'I',1262,'I001262',2526,4,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 18:39:26','drarchit','2025-11-12 20:02:19'),(3953,0,0,'I',1263,'I001263',2526,1,'0000-00-00','51347',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-12 18:41:43','drarchit','2025-11-12 18:42:58'),(3954,0,0,'I',1263,'I001263',2526,2,'0000-00-00','51505',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-12 18:42:08','drarchit','2025-11-12 18:42:58'),(3955,0,0,'I',1263,'I001263',2526,3,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 18:42:48','drarchit','2025-11-12 18:42:58'),(3956,0,0,'I',1263,'I001263',2526,4,'0000-00-00','51239',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 18:42:48','drarchit','2025-11-12 18:42:58'),(3957,0,0,'I',1263,'I001263',2526,5,'0000-00-00','51300',0,0,'TAB','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'drarchit','2025-11-12 18:42:48','drarchit','2025-11-12 18:42:58'),(3958,0,0,'I',1264,'I001264',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 18:55:57','drarchit','2025-11-12 20:13:12'),(3959,0,0,'I',1264,'I001264',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 18:55:57','drarchit','2025-11-12 20:13:12'),(3961,0,0,'I',1265,'I001265',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 18:58:34','','0000-00-00 00:00:00'),(3962,0,0,'I',1265,'I001265',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 18:58:34','','0000-00-00 00:00:00'),(3963,0,0,'I',1265,'I001265',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 18:58:34','','0000-00-00 00:00:00'),(3964,0,0,'I',1265,'I001265',2526,4,'0000-00-00','51186',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 18:58:34','','0000-00-00 00:00:00'),(3965,0,0,'I',1265,'I001265',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-12 18:58:34','','0000-00-00 00:00:00'),(3966,0,0,'I',1266,'I001266',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 19:02:27','','0000-00-00 00:00:00'),(3967,0,0,'I',1266,'I001266',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 19:02:27','','0000-00-00 00:00:00'),(3968,0,0,'I',1266,'I001266',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 19:02:27','','0000-00-00 00:00:00'),(3969,0,0,'I',1266,'I001266',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-12 19:02:27','','0000-00-00 00:00:00'),(3970,0,0,'I',1267,'I001267',2526,1,'0000-00-00','51235',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 19:03:54','drarchit','2025-11-12 19:04:46'),(3971,0,0,'I',1267,'I001267',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 19:03:54','drarchit','2025-11-12 19:04:46'),(3972,0,0,'I',1267,'I001267',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 19:04:46','','0000-00-00 00:00:00'),(3973,0,0,'I',1267,'I001267',2526,4,'0000-00-00','51239',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 19:04:46','','0000-00-00 00:00:00'),(3974,0,0,'I',1267,'I001267',2526,5,'0000-00-00','51288',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 19:04:46','','0000-00-00 00:00:00'),(3975,0,0,'I',1267,'I001267',2526,6,'0000-00-00','51412',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 19:04:46','','0000-00-00 00:00:00'),(3977,0,0,'I',1269,'I001269',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 19:07:45','','0000-00-00 00:00:00'),(3978,0,0,'I',1269,'I001269',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 19:07:45','','0000-00-00 00:00:00'),(3979,0,0,'I',1269,'I001269',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 19:07:45','','0000-00-00 00:00:00'),(3980,0,0,'I',1269,'I001269',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 19:07:45','','0000-00-00 00:00:00'),(3981,0,0,'I',1269,'I001269',2526,5,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 19:07:45','','0000-00-00 00:00:00'),(3982,0,0,'I',1268,'I001268',2526,1,'0000-00-00','51506',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'drarchit','2025-11-12 19:08:32','','0000-00-00 00:00:00'),(3983,0,0,'I',1268,'I001268',2526,2,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 19:08:32','','0000-00-00 00:00:00'),(3984,0,0,'I',1270,'I001270',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 19:11:41','darshan','2025-11-12 19:12:34'),(3986,0,0,'I',1270,'I001270',2526,2,'0000-00-00','51234',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-12 19:11:41','darshan','2025-11-12 19:12:34'),(3987,0,0,'I',1270,'I001270',2526,3,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-12 19:12:34','','0000-00-00 00:00:00'),(3988,0,0,'I',1271,'I001271',2526,1,'0000-00-00','51337',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 19:13:09','drarchit','2025-11-12 19:14:54'),(3989,0,0,'I',1271,'I001271',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 19:14:54','','0000-00-00 00:00:00'),(3990,0,0,'I',1271,'I001271',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,10,0,0,0,0,'0-1-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 19:14:54','','0000-00-00 00:00:00'),(3991,0,0,'I',1272,'I001272',2526,1,'0000-00-00','51475',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-12 19:18:53','','0000-00-00 00:00:00'),(3992,0,0,'I',1272,'I001272',2526,2,'0000-00-00','51279',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 19:18:53','','0000-00-00 00:00:00'),(3993,0,0,'I',1272,'I001272',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 19:18:53','','0000-00-00 00:00:00'),(3994,0,0,'I',1273,'I001273',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 19:22:24','darshan','2025-11-12 19:24:13'),(3995,0,0,'I',1273,'I001273',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 19:22:52','darshan','2025-11-12 19:24:13'),(3996,0,0,'I',1273,'I001273',2526,3,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-12 19:22:52','darshan','2025-11-12 19:24:13'),(3997,0,0,'I',1273,'I001273',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-12 19:22:52','darshan','2025-11-12 19:24:13'),(3998,0,0,'I',1274,'I001274',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-12 19:26:45','drarchit','2025-11-12 19:26:58'),(3999,0,0,'I',1274,'I001274',2526,2,'0000-00-00','51279',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 19:26:45','drarchit','2025-11-12 19:26:58'),(4000,0,0,'I',1274,'I001274',2526,3,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 19:26:55','drarchit','2025-11-12 19:26:58'),(4001,0,0,'I',1275,'I001275',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 19:29:50','darshan','2025-11-12 19:29:54'),(4002,0,0,'I',1275,'I001275',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 19:29:50','darshan','2025-11-12 19:29:54'),(4003,0,0,'I',1275,'I001275',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-12 19:29:50','darshan','2025-11-12 19:29:54'),(4004,0,0,'I',1275,'I001275',2526,4,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-11-12 19:29:50','darshan','2025-11-12 19:29:54'),(4005,0,0,'I',1275,'I001275',2526,5,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 19:29:50','darshan','2025-11-12 19:29:54'),(4006,0,0,'I',1276,'I001276',2526,1,'0000-00-00','51273',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 19:44:03','drarchit','2025-11-13 19:31:29'),(4007,0,0,'I',1276,'I001276',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 19:44:03','drarchit','2025-11-13 19:31:29'),(4008,0,0,'I',1276,'I001276',2526,3,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 19:44:03','drarchit','2025-11-13 19:31:29'),(4009,0,0,'I',1277,'I001277',2526,1,'0000-00-00','51336',0,0,'TAB','','','','',0,100,0,0,0,0,'0-0-1','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 19:52:25','','0000-00-00 00:00:00'),(4010,0,0,'I',1277,'I001277',2526,2,'0000-00-00','51404',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 19:52:25','','0000-00-00 00:00:00'),(4011,0,0,'I',1277,'I001277',2526,3,'0000-00-00','51490',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-12 19:52:25','','0000-00-00 00:00:00'),(4012,0,0,'I',1277,'I001277',2526,4,'0000-00-00','51243',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 19:52:25','','0000-00-00 00:00:00'),(4013,0,0,'I',1277,'I001277',2526,5,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 19:52:25','','0000-00-00 00:00:00'),(4014,0,0,'I',1277,'I001277',2526,6,'0000-00-00','51253',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 19:52:25','','0000-00-00 00:00:00'),(4015,0,0,'I',1277,'I001277',2526,7,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 19:52:25','','0000-00-00 00:00:00'),(4016,0,0,'I',1278,'I001278',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 19:59:07','darshan','2025-11-12 19:59:29'),(4017,0,0,'I',1278,'I001278',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 19:59:07','darshan','2025-11-12 19:59:29'),(4018,0,0,'I',1278,'I001278',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 19:59:07','darshan','2025-11-12 19:59:29'),(4019,0,0,'I',1278,'I001278',2526,4,'0000-00-00','51275',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'darshan','2025-11-12 19:59:07','darshan','2025-11-12 19:59:29'),(4020,0,0,'I',1278,'I001278',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-12 19:59:07','darshan','2025-11-12 19:59:29'),(4021,0,0,'I',1262,'I001262',2526,5,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:02:19','','0000-00-00 00:00:00'),(4022,0,0,'I',1262,'I001262',2526,6,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:02:19','','0000-00-00 00:00:00'),(4023,0,0,'I',1262,'I001262',2526,7,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 20:02:19','','0000-00-00 00:00:00'),(4024,0,0,'I',1262,'I001262',2526,8,'0000-00-00','51407',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:02:19','','0000-00-00 00:00:00'),(4025,0,0,'I',1280,'I001280',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,100,0,0,0,0,'0-1-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:05:20','drarchit','2025-11-12 20:06:49'),(4026,0,0,'I',1280,'I001280',2526,2,'0000-00-00','51368',0,0,'TAB','','','','',0,100,0,0,0,0,'0-0-1','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:05:20','drarchit','2025-11-12 20:06:49'),(4027,0,0,'I',1281,'I001281',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-12 20:06:28','','0000-00-00 00:00:00'),(4028,0,0,'I',1281,'I001281',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 20:06:28','','0000-00-00 00:00:00'),(4029,0,0,'I',1281,'I001281',2526,3,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 20:06:28','','0000-00-00 00:00:00'),(4030,0,0,'I',1281,'I001281',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-12 20:06:28','','0000-00-00 00:00:00'),(4031,0,0,'I',1281,'I001281',2526,5,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-11-12 20:06:28','','0000-00-00 00:00:00'),(4032,0,0,'I',1281,'I001281',2526,6,'0000-00-00','51215',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 20:06:28','','0000-00-00 00:00:00'),(4033,0,0,'I',1280,'I001280',2526,3,'0000-00-00','51507',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-12 20:06:49','','0000-00-00 00:00:00'),(4034,0,0,'I',1280,'I001280',2526,4,'0000-00-00','51228',0,0,'TAB','','','','',0,100,0,0,0,0,'0-1-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-12 20:06:49','','0000-00-00 00:00:00'),(4035,0,0,'I',1282,'I001282',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,100,0,0,0,0,'0-1-0','','Dy',100,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-12 20:09:48','','0000-00-00 00:00:00'),(4036,0,0,'I',1282,'I001282',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,100,0,0,0,0,'0-0-1','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:09:48','','0000-00-00 00:00:00'),(4037,0,0,'I',1282,'I001282',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,100,0,0,0,0,'0-1-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:09:48','','0000-00-00 00:00:00'),(4038,0,0,'I',1283,'I001283',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-12 20:10:34','','0000-00-00 00:00:00'),(4039,0,0,'I',1283,'I001283',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 20:10:34','','0000-00-00 00:00:00'),(4040,0,0,'I',1283,'I001283',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 20:10:34','','0000-00-00 00:00:00'),(4041,0,0,'I',1264,'I001264',2526,3,'0000-00-00','51214',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-12 20:12:32','drarchit','2025-11-12 20:13:12'),(4042,0,0,'I',1264,'I001264',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:12:32','drarchit','2025-11-12 20:13:12'),(4043,0,0,'I',1264,'I001264',2526,5,'0000-00-00','51244',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:13:12','','0000-00-00 00:00:00'),(4044,0,0,'I',1284,'I001284',2526,1,'0000-00-00','51230',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:17:10','','0000-00-00 00:00:00'),(4045,0,0,'I',1284,'I001284',2526,2,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-12 20:17:10','','0000-00-00 00:00:00'),(4046,0,0,'I',1284,'I001284',2526,3,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:17:10','','0000-00-00 00:00:00'),(4047,0,0,'I',1284,'I001284',2526,4,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-11-12 20:17:10','','0000-00-00 00:00:00'),(4048,0,0,'I',1284,'I001284',2526,5,'0000-00-00','51436',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:17:10','','0000-00-00 00:00:00'),(4049,0,0,'I',1284,'I001284',2526,6,'0000-00-00','51232',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:17:10','','0000-00-00 00:00:00'),(4050,0,0,'I',1285,'I001285',2526,1,'0000-00-00','51286',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:35:43','drarchit','2025-11-12 20:36:01'),(4051,0,0,'I',1285,'I001285',2526,2,'0000-00-00','51389',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-12 20:35:43','drarchit','2025-11-12 20:36:01'),(4052,0,0,'I',1285,'I001285',2526,3,'0000-00-00','51412',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:36:01','','0000-00-00 00:00:00'),(4053,0,0,'I',1286,'I001286',2526,1,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:42:00','drarchit','2025-11-12 20:43:53'),(4055,0,0,'I',1286,'I001286',2526,2,'0000-00-00','51304',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:42:00','drarchit','2025-11-12 20:43:53'),(4056,0,0,'I',1286,'I001286',2526,3,'0000-00-00','51508',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:43:19','drarchit','2025-11-12 20:43:53'),(4057,0,0,'I',1286,'I001286',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 20:43:51','drarchit','2025-11-12 20:43:53'),(4058,0,0,'I',1287,'I001287',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 20:45:15','','0000-00-00 00:00:00'),(4059,0,0,'I',1287,'I001287',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 20:45:15','','0000-00-00 00:00:00'),(4060,0,0,'I',1287,'I001287',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-12 20:45:15','','0000-00-00 00:00:00'),(4061,0,0,'I',1287,'I001287',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-12 20:45:15','','0000-00-00 00:00:00'),(4062,0,0,'I',1287,'I001287',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-12 20:45:15','','0000-00-00 00:00:00'),(4063,0,0,'I',1288,'I001288',2526,1,'0000-00-00','51239',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 20:50:38','drarchit','2025-11-12 20:51:24'),(4064,0,0,'I',1288,'I001288',2526,2,'0000-00-00','51370',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-12 20:50:38','drarchit','2025-11-12 20:51:24'),(4065,0,0,'I',1288,'I001288',2526,3,'0000-00-00','51195',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:50:38','drarchit','2025-11-12 20:51:24'),(4066,0,0,'I',1288,'I001288',2526,4,'0000-00-00','51373',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:51:24','','0000-00-00 00:00:00'),(4067,0,0,'I',1288,'I001288',2526,5,'0000-00-00','51395',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-12 20:51:24','','0000-00-00 00:00:00'),(4068,0,0,'I',1288,'I001288',2526,6,'0000-00-00','51238',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-0.5','','Dy',10,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-11-12 20:51:24','','0000-00-00 00:00:00'),(4069,0,0,'I',1289,'I001289',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 10:49:57','darshan','2025-11-13 10:50:42'),(4070,0,0,'I',1289,'I001289',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-13 10:49:57','darshan','2025-11-13 10:50:42'),(4071,0,0,'I',1289,'I001289',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-13 10:50:42','','0000-00-00 00:00:00'),(4072,0,0,'I',1290,'I001290',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 10:54:15','darshan','2025-11-13 10:54:57'),(4073,0,0,'I',1290,'I001290',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 10:54:15','darshan','2025-11-13 10:54:57'),(4074,0,0,'I',1290,'I001290',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-13 10:54:15','darshan','2025-11-13 10:54:57'),(4075,0,0,'I',1290,'I001290',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 10:54:15','darshan','2025-11-13 10:54:57'),(4077,0,0,'I',1291,'I001291',2526,1,'0000-00-00','51190',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 10:59:32','darshan','2025-11-13 11:00:13'),(4078,0,0,'I',1291,'I001291',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 11:00:13','','0000-00-00 00:00:00'),(4079,0,0,'I',1291,'I001291',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-13 11:00:13','','0000-00-00 00:00:00'),(4080,0,0,'I',1292,'I001292',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 11:05:05','darshan','2025-11-13 11:07:01'),(4081,0,0,'I',1292,'I001292',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 11:05:05','darshan','2025-11-13 11:07:01'),(4083,0,0,'I',1293,'I001293',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:05:42','','0000-00-00 00:00:00'),(4084,0,0,'I',1293,'I001293',2526,2,'0000-00-00','51367',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:05:42','','0000-00-00 00:00:00'),(4085,0,0,'I',1293,'I001293',2526,3,'0000-00-00','51420',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-13 11:05:42','','0000-00-00 00:00:00'),(4086,0,0,'I',1292,'I001292',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 11:05:50','darshan','2025-11-13 11:07:01'),(4087,0,0,'I',1292,'I001292',2526,4,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 11:07:01','','0000-00-00 00:00:00'),(4088,0,0,'I',1292,'I001292',2526,5,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-13 11:07:01','','0000-00-00 00:00:00'),(4090,0,0,'I',1295,'I001295',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 11:13:18','','0000-00-00 00:00:00'),(4091,0,0,'I',1295,'I001295',2526,2,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-13 11:13:18','','0000-00-00 00:00:00'),(4092,0,0,'I',1296,'I001296',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-13 11:14:40','drarchit','2025-11-13 11:18:16'),(4093,0,0,'I',1296,'I001296',2526,2,'0000-00-00','51512',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-13 11:18:16','','0000-00-00 00:00:00'),(4094,0,0,'I',1296,'I001296',2526,3,'0000-00-00','51510',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-13 11:18:16','','0000-00-00 00:00:00'),(4095,0,0,'I',1296,'I001296',2526,4,'0000-00-00','51511',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-13 11:18:16','','0000-00-00 00:00:00'),(4096,0,0,'I',1297,'I001297',2526,1,'0000-00-00','51257',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:20:30','','0000-00-00 00:00:00'),(4097,0,0,'I',1297,'I001297',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:20:30','','0000-00-00 00:00:00'),(4098,0,0,'I',1297,'I001297',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-13 11:20:30','','0000-00-00 00:00:00'),(4099,0,0,'I',1298,'I001298',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:24:55','drarchit','2025-11-13 11:25:39'),(4100,0,0,'I',1298,'I001298',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-13 11:24:55','drarchit','2025-11-13 11:25:39'),(4101,0,0,'I',1298,'I001298',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:24:55','drarchit','2025-11-13 11:25:39'),(4102,0,0,'I',1298,'I001298',2526,4,'0000-00-00','51354',0,0,'CAP','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:24:55','drarchit','2025-11-13 11:25:39'),(4103,0,0,'I',1298,'I001298',2526,5,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:24:55','drarchit','2025-11-13 11:25:39'),(4104,0,0,'I',1298,'I001298',2526,6,'0000-00-00','51487',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-13 11:25:39','','0000-00-00 00:00:00'),(4105,0,0,'I',1298,'I001298',2526,7,'0000-00-00','51279',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:25:39','','0000-00-00 00:00:00'),(4106,0,0,'I',1298,'I001298',2526,8,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:25:39','','0000-00-00 00:00:00'),(4107,0,0,'I',1298,'I001298',2526,9,'0000-00-00','51403',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:25:39','','0000-00-00 00:00:00'),(4108,0,0,'I',1298,'I001298',2526,10,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-13 11:25:39','','0000-00-00 00:00:00'),(4109,0,0,'I',1299,'I001299',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 11:28:30','','0000-00-00 00:00:00'),(4110,0,0,'I',1299,'I001299',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 11:28:30','','0000-00-00 00:00:00'),(4111,0,0,'I',1299,'I001299',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 11:28:30','','0000-00-00 00:00:00'),(4112,0,0,'I',1300,'I001300',2526,1,'0000-00-00','51487',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-13 11:31:22','drarchit','2025-11-13 11:35:32'),(4113,0,0,'I',1300,'I001300',2526,2,'0000-00-00','51353',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:31:22','drarchit','2025-11-13 11:35:32'),(4114,0,0,'I',1300,'I001300',2526,3,'0000-00-00','51235',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-13 11:31:22','drarchit','2025-11-13 11:35:32'),(4115,0,0,'I',1300,'I001300',2526,4,'0000-00-00','51214',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-11-13 11:31:22','drarchit','2025-11-13 11:35:32'),(4116,0,0,'I',1301,'I001301',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 11:31:33','darshan','2025-11-13 11:32:26'),(4117,0,0,'I',1301,'I001301',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 11:31:33','darshan','2025-11-13 11:32:26'),(4118,0,0,'I',1301,'I001301',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 11:31:33','darshan','2025-11-13 11:32:26'),(4119,0,0,'I',1301,'I001301',2526,4,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 11:31:33','darshan','2025-11-13 11:32:26'),(4120,0,0,'I',1300,'I001300',2526,5,'0000-00-00','51404',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:32:01','drarchit','2025-11-13 11:35:32'),(4121,0,0,'I',1300,'I001300',2526,6,'0000-00-00','51359',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:32:01','drarchit','2025-11-13 11:35:32'),(4123,0,0,'I',1301,'I001301',2526,5,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-13 11:32:26','','0000-00-00 00:00:00'),(4124,0,0,'I',1300,'I001300',2526,7,'0000-00-00','51429',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-13 11:32:38','drarchit','2025-11-13 11:35:32'),(4125,0,0,'I',1300,'I001300',2526,8,'0000-00-00','51513',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:32:38','drarchit','2025-11-13 11:35:32'),(4126,0,0,'I',1300,'I001300',2526,9,'0000-00-00','51239',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-13 11:35:32','','0000-00-00 00:00:00'),(4127,0,0,'I',1300,'I001300',2526,10,'0000-00-00','51508',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:35:32','','0000-00-00 00:00:00'),(4128,0,0,'I',1302,'I001302',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:41:19','drarchit','2025-11-13 11:43:06'),(4129,0,0,'I',1302,'I001302',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-13 11:41:19','drarchit','2025-11-13 11:43:06'),(4130,0,0,'I',1302,'I001302',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:41:19','drarchit','2025-11-13 11:43:06'),(4131,0,0,'I',1302,'I001302',2526,4,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:41:19','drarchit','2025-11-13 11:43:06'),(4132,0,0,'I',1302,'I001302',2526,5,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:41:19','drarchit','2025-11-13 11:43:06'),(4133,0,0,'I',1302,'I001302',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-13 11:41:19','drarchit','2025-11-13 11:43:06'),(4134,0,0,'I',1303,'I001303',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-13 11:46:02','darshan','2025-11-13 11:46:38'),(4135,0,0,'I',1303,'I001303',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 11:46:38','','0000-00-00 00:00:00'),(4136,0,0,'I',1303,'I001303',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 11:46:38','','0000-00-00 00:00:00'),(4137,0,0,'I',1303,'I001303',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-13 11:46:38','','0000-00-00 00:00:00'),(4138,0,0,'I',1304,'I001304',2526,1,'0000-00-00','51262',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:47:54','drarchit','2025-11-13 11:49:19'),(4139,0,0,'I',1304,'I001304',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-13 11:47:54','drarchit','2025-11-13 11:49:19'),(4141,0,0,'I',1304,'I001304',2526,3,'0000-00-00','51514',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-13 11:49:19','','0000-00-00 00:00:00'),(4142,0,0,'I',1305,'I001305',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 11:53:35','darshan','2025-11-13 11:53:55'),(4143,0,0,'I',1305,'I001305',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-13 11:53:35','darshan','2025-11-13 11:53:55'),(4145,0,0,'I',1306,'I001306',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:54:43','','0000-00-00 00:00:00'),(4146,0,0,'I',1306,'I001306',2526,2,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:54:43','','0000-00-00 00:00:00'),(4147,0,0,'I',1306,'I001306',2526,3,'0000-00-00','51237',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:54:43','','0000-00-00 00:00:00'),(4148,0,0,'I',1306,'I001306',2526,4,'0000-00-00','51279',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:54:43','','0000-00-00 00:00:00'),(4149,0,0,'I',1306,'I001306',2526,5,'0000-00-00','51513',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 11:54:43','','0000-00-00 00:00:00'),(4150,0,0,'I',1307,'I001307',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 11:58:31','darshan','2025-11-13 11:58:50'),(4151,0,0,'I',1307,'I001307',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-13 11:58:31','darshan','2025-11-13 11:58:50'),(4152,0,0,'I',1307,'I001307',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 11:58:31','darshan','2025-11-13 11:58:50'),(4153,0,0,'I',1307,'I001307',2526,4,'0000-00-00','51233',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-13 11:58:31','darshan','2025-11-13 11:58:50'),(4154,0,0,'I',1307,'I001307',2526,5,'0000-00-00','51460',0,0,'POWDER','','','','',0,1,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'398','','P',NULL,NULL,'darshan','2025-11-13 11:58:50','','0000-00-00 00:00:00'),(4155,0,0,'I',1309,'I001309',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 12:03:27','','0000-00-00 00:00:00'),(4156,0,0,'I',1309,'I001309',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 12:03:27','','0000-00-00 00:00:00'),(4157,0,0,'I',1309,'I001309',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-13 12:03:27','','0000-00-00 00:00:00'),(4158,0,0,'I',1308,'I001308',2526,1,'0000-00-00','51515',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 12:04:25','','0000-00-00 00:00:00'),(4159,0,0,'I',1308,'I001308',2526,2,'0000-00-00','51516',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 12:04:25','','0000-00-00 00:00:00'),(4160,0,0,'I',1308,'I001308',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-13 12:04:25','','0000-00-00 00:00:00'),(4161,0,0,'I',1308,'I001308',2526,4,'0000-00-00','51469',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-13 12:04:25','','0000-00-00 00:00:00'),(4162,0,0,'I',1308,'I001308',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 12:04:25','','0000-00-00 00:00:00'),(4163,0,0,'I',1310,'I001310',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 12:07:50','','0000-00-00 00:00:00'),(4164,0,0,'I',1310,'I001310',2526,2,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-11-13 12:07:50','','0000-00-00 00:00:00'),(4165,0,0,'I',1310,'I001310',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 12:07:50','','0000-00-00 00:00:00'),(4166,0,0,'I',1310,'I001310',2526,4,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 12:07:50','','0000-00-00 00:00:00'),(4167,0,0,'I',1310,'I001310',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-13 12:07:50','','0000-00-00 00:00:00'),(4168,0,0,'I',1311,'I001311',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-13 12:11:40','','0000-00-00 00:00:00'),(4169,0,0,'I',1311,'I001311',2526,2,'0000-00-00','51214',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-13 12:11:40','','0000-00-00 00:00:00'),(4170,0,0,'I',1311,'I001311',2526,3,'0000-00-00','51482',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-13 12:11:40','','0000-00-00 00:00:00'),(4171,0,0,'I',1311,'I001311',2526,4,'0000-00-00','51279',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 12:11:40','','0000-00-00 00:00:00'),(4172,0,0,'I',1313,'I001313',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 12:17:14','darshan','2025-11-13 12:17:30'),(4173,0,0,'I',1313,'I001313',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-13 12:17:14','darshan','2025-11-13 12:17:30'),(4174,0,0,'I',1312,'I001312',2526,1,'0000-00-00','51517',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 12:18:49','','0000-00-00 00:00:00'),(4175,0,0,'I',1312,'I001312',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-13 12:18:49','','0000-00-00 00:00:00'),(4176,0,0,'I',1312,'I001312',2526,3,'0000-00-00','51288',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 12:18:49','','0000-00-00 00:00:00'),(4177,0,0,'I',1314,'I001314',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-13 12:35:59','drarchit','2025-11-13 12:36:12'),(4178,0,0,'I',1314,'I001314',2526,2,'0000-00-00','51518',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 12:35:59','drarchit','2025-11-13 12:36:12'),(4179,0,0,'I',1314,'I001314',2526,3,'0000-00-00','51372',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 12:35:59','drarchit','2025-11-13 12:36:12'),(4180,0,0,'I',1314,'I001314',2526,4,'0000-00-00','51501',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-13 12:35:59','drarchit','2025-11-13 12:36:12'),(4181,0,0,'I',1315,'I001315',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 12:37:23','darshan','2025-11-13 12:37:45'),(4182,0,0,'I',1315,'I001315',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 12:37:23','darshan','2025-11-13 12:37:45'),(4184,0,0,'I',1315,'I001315',2526,3,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-13 12:37:45','','0000-00-00 00:00:00'),(4185,0,0,'I',1316,'I001316',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 12:41:10','darshan','2025-11-13 12:42:33'),(4186,0,0,'I',1316,'I001316',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 12:41:10','darshan','2025-11-13 12:42:33'),(4187,0,0,'I',1316,'I001316',2526,3,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-13 12:41:10','darshan','2025-11-13 12:42:33'),(4188,0,0,'I',1316,'I001316',2526,4,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 12:41:10','darshan','2025-11-13 12:42:33'),(4189,0,0,'I',1316,'I001316',2526,5,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 12:42:33','','0000-00-00 00:00:00'),(4190,0,0,'I',1316,'I001316',2526,6,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 12:42:33','','0000-00-00 00:00:00'),(4191,0,0,'I',1317,'I001317',2526,1,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-13 12:47:18','','0000-00-00 00:00:00'),(4192,0,0,'I',1317,'I001317',2526,2,'0000-00-00','51223',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-13 12:47:18','','0000-00-00 00:00:00'),(4193,0,0,'I',1317,'I001317',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 12:47:18','','0000-00-00 00:00:00'),(4194,0,0,'I',1317,'I001317',2526,4,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 12:47:18','','0000-00-00 00:00:00'),(4195,0,0,'I',1317,'I001317',2526,5,'0000-00-00','51406',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 12:47:18','','0000-00-00 00:00:00'),(4196,0,0,'I',1318,'I001318',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 12:49:54','drarchit','2025-11-13 12:51:22'),(4197,0,0,'I',1318,'I001318',2526,2,'0000-00-00','51420',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-13 12:49:54','drarchit','2025-11-13 12:51:22'),(4198,0,0,'I',1318,'I001318',2526,3,'0000-00-00','51336',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 12:49:54','drarchit','2025-11-13 12:51:22'),(4199,0,0,'I',1318,'I001318',2526,4,'0000-00-00','51519',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 12:51:22','','0000-00-00 00:00:00'),(4200,0,0,'I',1318,'I001318',2526,5,'0000-00-00','51518',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 12:51:22','','0000-00-00 00:00:00'),(4201,0,0,'I',1319,'I001319',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-13 12:55:08','','0000-00-00 00:00:00'),(4202,0,0,'I',1319,'I001319',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 12:55:08','','0000-00-00 00:00:00'),(4203,0,0,'I',1319,'I001319',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 12:55:08','','0000-00-00 00:00:00'),(4204,0,0,'I',1319,'I001319',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-13 12:55:08','','0000-00-00 00:00:00'),(4205,0,0,'I',1319,'I001319',2526,5,'0000-00-00','51333',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 12:55:08','','0000-00-00 00:00:00'),(4206,0,0,'I',1319,'I001319',2526,6,'0000-00-00','51277',0,0,'OINT','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'darshan','2025-11-13 12:55:08','','0000-00-00 00:00:00'),(4207,0,0,'I',1320,'I001320',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 12:55:32','','0000-00-00 00:00:00'),(4208,0,0,'I',1320,'I001320',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 12:55:32','','0000-00-00 00:00:00'),(4209,0,0,'I',1320,'I001320',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-13 12:55:32','','0000-00-00 00:00:00'),(4210,0,0,'I',1320,'I001320',2526,4,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 12:55:32','','0000-00-00 00:00:00'),(4211,0,0,'I',1320,'I001320',2526,5,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-13 12:55:32','','0000-00-00 00:00:00'),(4212,0,0,'I',1320,'I001320',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-13 12:55:32','','0000-00-00 00:00:00'),(4213,0,0,'I',1322,'I001322',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 13:07:43','','0000-00-00 00:00:00'),(4214,0,0,'I',1322,'I001322',2526,2,'0000-00-00','51389',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-13 13:07:43','','0000-00-00 00:00:00'),(4215,0,0,'I',1323,'I001323',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 13:12:29','','0000-00-00 00:00:00'),(4216,0,0,'I',1323,'I001323',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 13:12:29','','0000-00-00 00:00:00'),(4217,0,0,'I',1324,'I001324',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-13 13:16:58','darshan','2025-11-13 13:17:41'),(4218,0,0,'I',1324,'I001324',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 13:16:58','darshan','2025-11-13 13:17:41'),(4219,0,0,'I',1324,'I001324',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 13:16:58','darshan','2025-11-13 13:17:41'),(4222,0,0,'I',1325,'I001325',2526,1,'0000-00-00','51520',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 13:19:38','','0000-00-00 00:00:00'),(4223,0,0,'I',1325,'I001325',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 13:19:38','','0000-00-00 00:00:00'),(4224,0,0,'I',1325,'I001325',2526,3,'0000-00-00','51277',0,0,'OINT','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'darshan','2025-11-13 13:19:38','','0000-00-00 00:00:00'),(4225,0,0,'I',1326,'I001326',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 13:23:38','darshan','2025-11-13 13:23:44'),(4226,0,0,'I',1326,'I001326',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 13:23:38','darshan','2025-11-13 13:23:44'),(4227,0,0,'I',1326,'I001326',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-13 13:23:38','darshan','2025-11-13 13:23:44'),(4228,0,0,'I',1327,'I001327',2526,1,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 13:26:58','','0000-00-00 00:00:00'),(4229,0,0,'I',1327,'I001327',2526,2,'0000-00-00','51325',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 13:26:58','','0000-00-00 00:00:00'),(4231,0,0,'I',1328,'I001328',2526,1,'0000-00-00','51521',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 13:33:53','','0000-00-00 00:00:00'),(4232,0,0,'I',1328,'I001328',2526,2,'0000-00-00','51297',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 13:33:53','','0000-00-00 00:00:00'),(4233,0,0,'I',1329,'I001329',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 13:35:12','darshan','2025-11-13 13:35:19'),(4234,0,0,'I',1329,'I001329',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 13:35:12','darshan','2025-11-13 13:35:19'),(4235,0,0,'I',1329,'I001329',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-13 13:35:12','darshan','2025-11-13 13:35:19'),(4236,0,0,'I',1330,'I001330',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 13:43:43','','0000-00-00 00:00:00'),(4237,0,0,'I',1330,'I001330',2526,2,'0000-00-00','51338',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 13:43:43','','0000-00-00 00:00:00'),(4238,0,0,'I',1330,'I001330',2526,3,'0000-00-00','51468',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-13 13:43:43','','0000-00-00 00:00:00'),(4239,0,0,'I',1294,'I001294',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 13:48:34','','0000-00-00 00:00:00'),(4240,0,0,'I',1294,'I001294',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-13 13:48:34','','0000-00-00 00:00:00'),(4241,0,0,'I',1294,'I001294',2526,3,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 13:48:34','','0000-00-00 00:00:00'),(4242,0,0,'I',1294,'I001294',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-13 13:48:34','','0000-00-00 00:00:00'),(4243,0,0,'I',1294,'I001294',2526,5,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 13:48:34','','0000-00-00 00:00:00'),(4244,0,0,'I',1331,'I001331',2526,1,'0000-00-00','51257',0,0,'TAB','','','','',0,0,0,0,0,0,'0-2-0','','Dy',0,0,0,0,0,0,0,0,0,0,'13','','P',NULL,NULL,'drarchit','2025-11-13 13:54:55','','0000-00-00 00:00:00'),(4245,0,0,'I',1331,'I001331',2526,2,'0000-00-00','51339',0,0,'TAB','','','','',0,0,0,0,0,0,'0-1-0','','Dy',0,0,0,0,0,0,0,0,0,0,'13','','P',NULL,NULL,'drarchit','2025-11-13 13:54:55','','0000-00-00 00:00:00'),(4246,0,0,'I',1331,'I001331',2526,3,'0000-00-00','51254',0,0,'TAB','','','','',0,0,0,0,0,0,'0-0-1','','Dy',0,0,0,0,0,0,0,0,0,0,'13','','P',NULL,NULL,'drarchit','2025-11-13 13:54:55','','0000-00-00 00:00:00'),(4247,0,0,'I',1332,'I001332',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 14:04:33','','0000-00-00 00:00:00'),(4248,0,0,'I',1333,'I001333',2526,1,'0000-00-00','51223',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-13 14:05:04','drarchit','2025-11-13 14:05:46'),(4249,0,0,'I',1333,'I001333',2526,2,'0000-00-00','51389',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-13 14:05:04','drarchit','2025-11-13 14:05:46'),(4250,0,0,'I',1333,'I001333',2526,3,'0000-00-00','51407',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 14:05:04','drarchit','2025-11-13 14:05:46'),(4251,0,0,'I',1333,'I001333',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-13 14:05:46','','0000-00-00 00:00:00'),(4252,0,0,'I',1333,'I001333',2526,5,'0000-00-00','51515',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 14:05:46','','0000-00-00 00:00:00'),(4253,0,0,'I',1333,'I001333',2526,6,'0000-00-00','51516',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 14:05:46','','0000-00-00 00:00:00'),(4254,0,0,'I',1333,'I001333',2526,7,'0000-00-00','51304',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 14:05:46','','0000-00-00 00:00:00'),(4255,0,0,'I',1334,'I001334',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 14:08:32','','0000-00-00 00:00:00'),(4256,0,0,'I',1334,'I001334',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 14:08:32','','0000-00-00 00:00:00'),(4257,0,0,'I',1335,'I001335',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 14:14:26','','0000-00-00 00:00:00'),(4258,0,0,'I',1335,'I001335',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 14:14:26','','0000-00-00 00:00:00'),(4259,0,0,'I',1335,'I001335',2526,3,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-13 14:14:26','','0000-00-00 00:00:00'),(4260,0,0,'I',1336,'I001336',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 14:16:22','darshan','2025-11-13 14:16:38'),(4261,0,0,'I',1336,'I001336',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 14:16:22','darshan','2025-11-13 14:16:38'),(4262,0,0,'I',1336,'I001336',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-13 14:16:38','','0000-00-00 00:00:00'),(4263,0,0,'I',1337,'I001337',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 14:22:55','darshan','2025-11-13 14:22:59'),(4264,0,0,'I',1338,'I001338',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 14:29:15','','0000-00-00 00:00:00'),(4265,0,0,'I',1338,'I001338',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 14:29:15','','0000-00-00 00:00:00'),(4266,0,0,'I',1338,'I001338',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 14:29:15','','0000-00-00 00:00:00'),(4267,0,0,'I',1338,'I001338',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-13 14:29:15','','0000-00-00 00:00:00'),(4268,0,0,'I',1338,'I001338',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-13 14:29:15','','0000-00-00 00:00:00'),(4269,0,0,'I',1339,'I001339',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 17:05:26','darshan','2025-11-13 17:05:40'),(4270,0,0,'I',1339,'I001339',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-13 17:05:26','darshan','2025-11-13 17:05:40'),(4271,0,0,'I',1340,'I001340',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 17:17:12','','0000-00-00 00:00:00'),(4272,0,0,'I',1340,'I001340',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 17:17:12','','0000-00-00 00:00:00'),(4273,0,0,'I',1340,'I001340',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 17:17:12','','0000-00-00 00:00:00'),(4274,0,0,'I',1340,'I001340',2526,4,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-13 17:17:12','','0000-00-00 00:00:00'),(4275,0,0,'I',1341,'I001341',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 17:20:14','darshan','2025-11-13 17:20:34'),(4276,0,0,'I',1341,'I001341',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 17:20:14','darshan','2025-11-13 17:20:34'),(4277,0,0,'I',1341,'I001341',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 17:20:14','darshan','2025-11-13 17:20:34'),(4278,0,0,'I',1341,'I001341',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-13 17:20:34','','0000-00-00 00:00:00'),(4279,0,0,'I',1342,'I001342',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 17:23:52','darshan','2025-11-13 17:24:30'),(4280,0,0,'I',1342,'I001342',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 17:23:52','darshan','2025-11-13 17:24:30'),(4281,0,0,'I',1342,'I001342',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 17:23:52','darshan','2025-11-13 17:24:30'),(4282,0,0,'I',1342,'I001342',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-13 17:23:52','darshan','2025-11-13 17:24:30'),(4283,0,0,'I',1342,'I001342',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-13 17:24:30','','0000-00-00 00:00:00'),(4284,0,0,'I',1342,'I001342',2526,6,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-13 17:24:30','','0000-00-00 00:00:00'),(4285,0,0,'I',1343,'I001343',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 17:27:08','','0000-00-00 00:00:00'),(4286,0,0,'I',1343,'I001343',2526,2,'0000-00-00','51234',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-13 17:27:08','','0000-00-00 00:00:00'),(4287,0,0,'I',1344,'I001344',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-13 18:00:10','','0000-00-00 00:00:00'),(4288,0,0,'I',1344,'I001344',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 18:00:10','','0000-00-00 00:00:00'),(4289,0,0,'I',1345,'I001345',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 18:12:42','','0000-00-00 00:00:00'),(4290,0,0,'I',1346,'I001346',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 18:15:47','','0000-00-00 00:00:00'),(4291,0,0,'I',1347,'I001347',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 18:20:09','darshan','2025-11-13 18:20:26'),(4292,0,0,'I',1347,'I001347',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 18:20:09','darshan','2025-11-13 18:20:26'),(4293,0,0,'I',1347,'I001347',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 18:20:18','darshan','2025-11-13 18:20:26'),(4294,0,0,'I',1347,'I001347',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-13 18:20:18','darshan','2025-11-13 18:20:26'),(4295,0,0,'I',1321,'I001321',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 18:22:05','drarchit','2025-11-13 18:23:00'),(4296,0,0,'I',1321,'I001321',2526,2,'0000-00-00','51362',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-13 18:22:05','drarchit','2025-11-13 18:23:00'),(4297,0,0,'I',1321,'I001321',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 18:22:05','drarchit','2025-11-13 18:23:00'),(4298,0,0,'I',1321,'I001321',2526,4,'0000-00-00','51522',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 18:23:00','','0000-00-00 00:00:00'),(4299,0,0,'I',1348,'I001348',2526,1,'0000-00-00','51420',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-13 18:26:30','drarchit','2025-11-13 18:29:23'),(4300,0,0,'I',1348,'I001348',2526,2,'0000-00-00','51301',0,0,'TAB','','','','',0,30,0,0,0,0,'0.5-0-0.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 18:26:30','drarchit','2025-11-13 18:29:23'),(4301,0,0,'I',1348,'I001348',2526,3,'0000-00-00','51519',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 18:26:30','drarchit','2025-11-13 18:29:23'),(4302,0,0,'I',1349,'I001349',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 18:27:07','','0000-00-00 00:00:00'),(4303,0,0,'I',1349,'I001349',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 18:27:07','','0000-00-00 00:00:00'),(4304,0,0,'I',1349,'I001349',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-13 18:27:07','','0000-00-00 00:00:00'),(4305,0,0,'I',1348,'I001348',2526,4,'0000-00-00','51278',0,0,'CAP','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 18:29:23','','0000-00-00 00:00:00'),(4306,0,0,'I',1350,'I001350',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 18:31:38','darshan','2025-11-13 18:32:08'),(4307,0,0,'I',1350,'I001350',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 18:32:08','','0000-00-00 00:00:00'),(4308,0,0,'I',1350,'I001350',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 18:32:08','','0000-00-00 00:00:00'),(4309,0,0,'I',1350,'I001350',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-13 18:32:08','','0000-00-00 00:00:00'),(4310,0,0,'I',1351,'I001351',2526,1,'0000-00-00','51223',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-13 18:40:01','drarchit','2025-11-13 18:41:59'),(4311,0,0,'I',1351,'I001351',2526,2,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-13 18:40:01','drarchit','2025-11-13 18:41:59'),(4312,0,0,'I',1351,'I001351',2526,3,'0000-00-00','51406',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 18:40:01','drarchit','2025-11-13 18:41:59'),(4313,0,0,'I',1352,'I001352',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 18:40:20','darshan','2025-11-13 18:40:44'),(4314,0,0,'I',1352,'I001352',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 18:40:20','darshan','2025-11-13 18:40:44'),(4315,0,0,'I',1352,'I001352',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 18:40:20','darshan','2025-11-13 18:40:44'),(4316,0,0,'I',1352,'I001352',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-13 18:40:44','','0000-00-00 00:00:00'),(4317,0,0,'I',1351,'I001351',2526,4,'0000-00-00','51523',0,0,'INJ','','','','',0,1,0,0,0,0,'36-0-24','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-13 18:41:44','drarchit','2025-11-13 18:41:59'),(4318,0,0,'I',1353,'I001353',2526,1,'0000-00-00','51329',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-13 18:45:49','drarchit','2025-11-13 19:33:50'),(4319,0,0,'I',1353,'I001353',2526,2,'0000-00-00','51524',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-13 18:48:21','drarchit','2025-11-13 19:33:50'),(4320,0,0,'I',1354,'I001354',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-13 18:54:08','','0000-00-00 00:00:00'),(4321,0,0,'I',1354,'I001354',2526,2,'0000-00-00','51270',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 18:54:08','','0000-00-00 00:00:00'),(4322,0,0,'I',1354,'I001354',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 18:54:08','','0000-00-00 00:00:00'),(4323,0,0,'I',1354,'I001354',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-13 18:54:08','','0000-00-00 00:00:00'),(4324,0,0,'I',1355,'I001355',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 19:00:39','','0000-00-00 00:00:00'),(4325,0,0,'I',1355,'I001355',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 19:00:39','','0000-00-00 00:00:00'),(4326,0,0,'I',1355,'I001355',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 19:00:39','','0000-00-00 00:00:00'),(4327,0,0,'I',1355,'I001355',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-13 19:00:39','','0000-00-00 00:00:00'),(4328,0,0,'I',1356,'I001356',2526,1,'0000-00-00','51517',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:01:26','drarchit','2025-11-13 19:09:27'),(4329,0,0,'I',1356,'I001356',2526,2,'0000-00-00','51513',0,0,'TAB','','','','',0,10,0,0,0,0,'0-1-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:01:26','drarchit','2025-11-13 19:09:27'),(4330,0,0,'I',1356,'I001356',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-13 19:01:26','drarchit','2025-11-13 19:09:27'),(4331,0,0,'I',1357,'I001357',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 19:25:12','','0000-00-00 00:00:00'),(4332,0,0,'I',1357,'I001357',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 19:25:12','','0000-00-00 00:00:00'),(4333,0,0,'I',1357,'I001357',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 19:25:12','','0000-00-00 00:00:00'),(4334,0,0,'I',1357,'I001357',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-13 19:25:12','','0000-00-00 00:00:00'),(4335,0,0,'I',1358,'I001358',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-13 19:26:01','','0000-00-00 00:00:00'),(4336,0,0,'I',1359,'I001359',2526,1,'0000-00-00','51525',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:27:46','','0000-00-00 00:00:00'),(4337,0,0,'I',1359,'I001359',2526,2,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:27:46','','0000-00-00 00:00:00'),(4338,0,0,'I',1359,'I001359',2526,3,'0000-00-00','51477',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'drarchit','2025-11-13 19:27:46','','0000-00-00 00:00:00'),(4339,0,0,'I',1359,'I001359',2526,4,'0000-00-00','51468',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-13 19:27:46','','0000-00-00 00:00:00'),(4340,0,0,'I',1359,'I001359',2526,5,'0000-00-00','51299',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:27:46','','0000-00-00 00:00:00'),(4341,0,0,'I',1360,'I001360',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-13 19:28:41','darshan','2025-11-13 19:29:09'),(4342,0,0,'I',1360,'I001360',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 19:28:41','darshan','2025-11-13 19:29:09'),(4343,0,0,'I',1360,'I001360',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 19:28:41','darshan','2025-11-13 19:29:09'),(4346,0,0,'I',1276,'I001276',2526,4,'0000-00-00','51477',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'drarchit','2025-11-13 19:31:29','','0000-00-00 00:00:00'),(4347,0,0,'I',1361,'I001361',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 19:31:57','darshan','2025-11-13 19:32:05'),(4348,0,0,'I',1353,'I001353',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:33:50','','0000-00-00 00:00:00'),(4349,0,0,'I',1362,'I001362',2526,1,'0000-00-00','51267',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:38:25','drarchit','2025-11-13 19:39:06'),(4350,0,0,'I',1362,'I001362',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-13 19:38:25','drarchit','2025-11-13 19:39:06'),(4351,0,0,'I',1362,'I001362',2526,3,'0000-00-00','51521',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:38:25','drarchit','2025-11-13 19:39:06'),(4353,0,0,'I',1363,'I001363',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 19:38:35','darshan','2025-11-13 19:39:37'),(4354,0,0,'I',1363,'I001363',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 19:38:35','darshan','2025-11-13 19:39:37'),(4355,0,0,'I',1363,'I001363',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-13 19:38:46','darshan','2025-11-13 19:39:37'),(4356,0,0,'I',1362,'I001362',2526,4,'0000-00-00','51526',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:39:06','','0000-00-00 00:00:00'),(4357,0,0,'I',1364,'I001364',2526,1,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:45:43','','0000-00-00 00:00:00'),(4358,0,0,'I',1364,'I001364',2526,2,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:45:43','','0000-00-00 00:00:00'),(4359,0,0,'I',1364,'I001364',2526,3,'0000-00-00','51392',0,0,'POWDER','','','','',0,1,0,0,0,0,'','2 SCOOP BD','Dy',0,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-11-13 19:45:43','','0000-00-00 00:00:00'),(4360,0,0,'I',1365,'I001365',2526,1,'0000-00-00','51257',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:50:24','drarchit','2025-11-13 19:51:30'),(4361,0,0,'I',1365,'I001365',2526,2,'0000-00-00','51254',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:50:24','drarchit','2025-11-13 19:51:30'),(4362,0,0,'I',1365,'I001365',2526,3,'0000-00-00','51237',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:51:30','','0000-00-00 00:00:00'),(4363,0,0,'I',1365,'I001365',2526,4,'0000-00-00','51231',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:51:30','','0000-00-00 00:00:00'),(4364,0,0,'I',1365,'I001365',2526,5,'0000-00-00','51417',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:51:30','','0000-00-00 00:00:00'),(4365,0,0,'I',1365,'I001365',2526,6,'0000-00-00','51318',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:51:30','','0000-00-00 00:00:00'),(4366,0,0,'I',1366,'I001366',2526,1,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:56:56','drarchit','2025-11-13 19:57:19'),(4367,0,0,'I',1366,'I001366',2526,2,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:56:56','drarchit','2025-11-13 19:57:19'),(4368,0,0,'I',1366,'I001366',2526,3,'0000-00-00','51332',0,0,'CAP','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-13 19:56:56','drarchit','2025-11-13 19:57:19'),(4369,0,0,'I',1366,'I001366',2526,4,'0000-00-00','51487',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-13 19:56:56','drarchit','2025-11-13 19:57:19'),(4370,0,0,'I',1366,'I001366',2526,5,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-13 19:56:56','drarchit','2025-11-13 19:57:19'),(4371,0,0,'I',1367,'I001367',2526,1,'0000-00-00','51527',0,0,'INJ','','','','',0,1,0,0,0,0,'','','Dy',1,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-11-14 11:02:52','drarchit','2025-11-14 11:03:37'),(4372,0,0,'I',1367,'I001367',2526,2,'0000-00-00','51412',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 11:03:37','','0000-00-00 00:00:00'),(4373,0,0,'I',1367,'I001367',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 11:03:37','','0000-00-00 00:00:00'),(4374,0,0,'I',1367,'I001367',2526,4,'0000-00-00','51219',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-11-14 11:03:37','','0000-00-00 00:00:00'),(4376,0,0,'I',1368,'I001368',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 11:21:24','darshan','2025-11-14 11:21:51'),(4379,0,0,'I',1368,'I001368',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 11:21:24','darshan','2025-11-14 11:21:51'),(4380,0,0,'I',1369,'I001369',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 11:25:55','darshan','2025-11-14 11:26:00'),(4381,0,0,'I',1369,'I001369',2526,2,'0000-00-00','51382',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',0,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-14 11:25:55','darshan','2025-11-14 11:26:00'),(4382,0,0,'I',1370,'I001370',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,50,0,0,0,0,'.5-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 11:29:03','','0000-00-00 00:00:00'),(4383,0,0,'I',1371,'I001371',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 11:34:09','','0000-00-00 00:00:00'),(4385,0,0,'I',1372,'I001372',2526,1,'0000-00-00','51353',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 11:38:43','','0000-00-00 00:00:00'),(4386,0,0,'I',1372,'I001372',2526,2,'0000-00-00','51259',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 11:38:43','','0000-00-00 00:00:00'),(4387,0,0,'I',1373,'I001373',2526,1,'0000-00-00','51262',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 11:43:28','','0000-00-00 00:00:00'),(4388,0,0,'I',1373,'I001373',2526,2,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-14 11:43:28','','0000-00-00 00:00:00'),(4389,0,0,'I',1373,'I001373',2526,3,'0000-00-00','51517',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 11:43:28','','0000-00-00 00:00:00'),(4390,0,0,'I',1374,'I001374',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 11:43:28','','0000-00-00 00:00:00'),(4391,0,0,'I',1374,'I001374',2526,2,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-14 11:43:28','','0000-00-00 00:00:00'),(4392,0,0,'I',1375,'I001375',2526,1,'0000-00-00','51233',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-14 11:58:46','darshan','2025-11-14 11:59:06'),(4393,0,0,'I',1375,'I001375',2526,2,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 11:58:46','darshan','2025-11-14 11:59:06'),(4394,0,0,'I',1375,'I001375',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 11:58:46','darshan','2025-11-14 11:59:06'),(4396,0,0,'I',1376,'I001376',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 12:05:29','darshan','2025-11-14 12:05:59'),(4397,0,0,'I',1376,'I001376',2526,2,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-14 12:05:29','darshan','2025-11-14 12:05:59'),(4398,0,0,'I',1376,'I001376',2526,3,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-14 12:05:59','','0000-00-00 00:00:00'),(4399,0,0,'I',1377,'I001377',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 12:16:40','darshan','2025-11-14 12:17:29'),(4400,0,0,'I',1377,'I001377',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 12:16:40','darshan','2025-11-14 12:17:29'),(4401,0,0,'I',1377,'I001377',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-14 12:17:29','','0000-00-00 00:00:00'),(4402,0,0,'I',1378,'I001378',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 12:19:52','darshan','2025-11-14 12:20:20'),(4403,0,0,'I',1378,'I001378',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-14 12:19:52','darshan','2025-11-14 12:20:20'),(4406,0,0,'I',1379,'I001379',2526,1,'0000-00-00','51528',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 12:21:07','drarchit','2025-11-14 12:21:33'),(4407,0,0,'I',1379,'I001379',2526,2,'0000-00-00','51244',0,0,'TAB','','','','',0,10,0,0,0,0,'0-1-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 12:21:33','','0000-00-00 00:00:00'),(4408,0,0,'I',1380,'I001380',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 12:28:06','','0000-00-00 00:00:00'),(4409,0,0,'I',1380,'I001380',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 12:28:06','','0000-00-00 00:00:00'),(4410,0,0,'I',1380,'I001380',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-14 12:28:06','','0000-00-00 00:00:00'),(4411,0,0,'I',1381,'I001381',2526,1,'0000-00-00','51482',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-14 12:35:49','drarchit','2025-11-14 12:41:49'),(4412,0,0,'I',1381,'I001381',2526,2,'0000-00-00','51341',0,0,'TAB','','','','',0,30,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 12:36:38','drarchit','2025-11-14 12:41:49'),(4413,0,0,'I',1382,'I001382',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 12:42:29','darshan','2025-11-14 12:43:01'),(4414,0,0,'I',1382,'I001382',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 12:42:48','darshan','2025-11-14 12:43:01'),(4415,0,0,'I',1382,'I001382',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 12:42:48','darshan','2025-11-14 12:43:01'),(4416,0,0,'I',1382,'I001382',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-14 12:43:01','','0000-00-00 00:00:00'),(4417,0,0,'I',1383,'I001383',2526,1,'0000-00-00','51482',0,0,'TAB','','','','',0,180,0,0,0,0,'0-0-1','','Dy',180,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-14 12:48:53','','0000-00-00 00:00:00'),(4418,0,0,'I',1383,'I001383',2526,2,'0000-00-00','51518',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 12:48:53','','0000-00-00 00:00:00'),(4419,0,0,'I',1383,'I001383',2526,3,'0000-00-00','51501',0,0,'TAB','','','','',0,30,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-14 12:48:53','','0000-00-00 00:00:00'),(4420,0,0,'I',1383,'I001383',2526,4,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-14 12:48:53','','0000-00-00 00:00:00'),(4421,0,0,'I',1384,'I001384',2526,1,'0000-00-00','51262',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 12:51:44','','0000-00-00 00:00:00'),(4422,0,0,'I',1385,'I001385',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 13:07:04','drarchit','2025-11-14 13:07:46'),(4423,0,0,'I',1385,'I001385',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-14 13:07:04','drarchit','2025-11-14 13:07:46'),(4424,0,0,'I',1385,'I001385',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 13:07:04','drarchit','2025-11-14 13:07:46'),(4425,0,0,'I',1385,'I001385',2526,4,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 13:07:04','drarchit','2025-11-14 13:07:46'),(4426,0,0,'I',1385,'I001385',2526,5,'0000-00-00','51487',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-14 13:07:46','','0000-00-00 00:00:00'),(4427,0,0,'I',1385,'I001385',2526,6,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-11-14 13:07:46','','0000-00-00 00:00:00'),(4428,0,0,'I',1386,'I001386',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-14 13:12:55','drarchit','2025-11-14 13:13:30'),(4429,0,0,'I',1387,'I001387',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-14 13:13:22','darshan','2025-11-14 13:13:53'),(4430,0,0,'I',1387,'I001387',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 13:13:22','darshan','2025-11-14 13:13:53'),(4432,0,0,'I',1386,'I001386',2526,2,'0000-00-00','51372',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 13:13:30','','0000-00-00 00:00:00'),(4433,0,0,'I',1386,'I001386',2526,3,'0000-00-00','51501',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-14 13:13:30','','0000-00-00 00:00:00'),(4434,0,0,'I',1386,'I001386',2526,4,'0000-00-00','51518',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 13:13:30','','0000-00-00 00:00:00'),(4435,0,0,'I',1389,'I001389',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 13:21:48','darshan','2025-11-14 13:22:01'),(4436,0,0,'I',1389,'I001389',2526,2,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-14 13:21:48','darshan','2025-11-14 13:22:01'),(4437,0,0,'I',1389,'I001389',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 13:21:48','darshan','2025-11-14 13:22:01'),(4438,0,0,'I',1389,'I001389',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 13:21:48','darshan','2025-11-14 13:22:01'),(4439,0,0,'I',1389,'I001389',2526,5,'0000-00-00','51199',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 13:21:48','darshan','2025-11-14 13:22:01'),(4440,0,0,'I',1389,'I001389',2526,6,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-14 13:22:01','','0000-00-00 00:00:00'),(4441,0,0,'I',1390,'I001390',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 13:35:58','','0000-00-00 00:00:00'),(4442,0,0,'I',1390,'I001390',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 13:35:58','','0000-00-00 00:00:00'),(4443,0,0,'I',1390,'I001390',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-14 13:35:58','','0000-00-00 00:00:00'),(4444,0,0,'I',1391,'I001391',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 13:38:35','','0000-00-00 00:00:00'),(4445,0,0,'I',1392,'I001392',2526,1,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-14 13:48:58','drarchit','2025-11-14 13:52:03'),(4446,0,0,'I',1392,'I001392',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-14 13:48:58','drarchit','2025-11-14 13:52:03'),(4448,0,0,'I',1392,'I001392',2526,3,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 13:52:03','','0000-00-00 00:00:00'),(4449,0,0,'I',1392,'I001392',2526,4,'0000-00-00','51406',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 13:52:03','','0000-00-00 00:00:00'),(4450,0,0,'I',1392,'I001392',2526,5,'0000-00-00','51324',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 13:52:03','','0000-00-00 00:00:00'),(4451,0,0,'I',1392,'I001392',2526,6,'0000-00-00','51244',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 13:52:03','','0000-00-00 00:00:00'),(4452,0,0,'I',1393,'I001393',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 13:58:52','','0000-00-00 00:00:00'),(4453,0,0,'I',1393,'I001393',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-14 13:58:52','','0000-00-00 00:00:00'),(4454,0,0,'I',1393,'I001393',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 13:58:52','','0000-00-00 00:00:00'),(4455,0,0,'I',1393,'I001393',2526,4,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 13:58:52','','0000-00-00 00:00:00'),(4456,0,0,'I',1394,'I001394',2526,1,'0000-00-00','51217',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 14:01:58','','0000-00-00 00:00:00'),(4457,0,0,'I',1394,'I001394',2526,2,'0000-00-00','51235',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-14 14:01:58','','0000-00-00 00:00:00'),(4458,0,0,'I',1394,'I001394',2526,3,'0000-00-00','51463',0,0,'INJ','','','','',0,4,0,0,0,0,'0-28-10','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-14 14:01:58','','0000-00-00 00:00:00'),(4459,0,0,'I',1394,'I001394',2526,4,'0000-00-00','51519',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 14:01:58','','0000-00-00 00:00:00'),(4460,0,0,'I',1394,'I001394',2526,5,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-14 14:01:58','','0000-00-00 00:00:00'),(4461,0,0,'I',1394,'I001394',2526,6,'0000-00-00','51352',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 14:01:58','','0000-00-00 00:00:00'),(4462,0,0,'I',1394,'I001394',2526,7,'0000-00-00','51267',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 14:01:58','','0000-00-00 00:00:00'),(4463,0,0,'I',1395,'I001395',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 17:44:58','darshan','2025-11-14 17:45:07'),(4464,0,0,'I',1395,'I001395',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 17:44:58','darshan','2025-11-14 17:45:07'),(4465,0,0,'I',1395,'I001395',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 17:44:58','darshan','2025-11-14 17:45:07'),(4466,0,0,'I',1395,'I001395',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-14 17:45:07','','0000-00-00 00:00:00'),(4467,0,0,'I',1396,'I001396',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 17:58:42','','0000-00-00 00:00:00'),(4468,0,0,'I',1396,'I001396',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 17:58:42','','0000-00-00 00:00:00'),(4469,0,0,'I',1397,'I001397',2526,1,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-14 18:18:13','','0000-00-00 00:00:00'),(4470,0,0,'I',1397,'I001397',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-14 18:18:13','','0000-00-00 00:00:00'),(4471,0,0,'I',1397,'I001397',2526,3,'0000-00-00','51338',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 18:18:13','','0000-00-00 00:00:00'),(4472,0,0,'I',1397,'I001397',2526,4,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 18:18:13','','0000-00-00 00:00:00'),(4473,0,0,'I',1397,'I001397',2526,5,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 18:18:13','','0000-00-00 00:00:00'),(4474,0,0,'I',1398,'I001398',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,120,0,0,0,0,'.5-0-.5','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 18:19:46','darshan','2025-11-14 18:20:13'),(4475,0,0,'I',1398,'I001398',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 18:19:46','darshan','2025-11-14 18:20:13'),(4476,0,0,'I',1398,'I001398',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 18:19:46','darshan','2025-11-14 18:20:13'),(4477,0,0,'I',1398,'I001398',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,20,0,0,0,0,'','','Dy',120,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-14 18:20:13','','0000-00-00 00:00:00'),(4478,0,0,'I',1399,'I001399',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 18:22:57','darshan','2025-11-14 18:23:21'),(4479,0,0,'I',1399,'I001399',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 18:22:57','darshan','2025-11-14 18:23:21'),(4481,0,0,'I',1399,'I001399',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 18:22:57','darshan','2025-11-14 18:23:21'),(4482,0,0,'I',1400,'I001400',2526,1,'0000-00-00','51451',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-14 18:24:55','drarchit','2025-11-14 18:26:34'),(4484,0,0,'I',1401,'I001401',2526,1,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 18:26:27','darshan','2025-11-14 18:27:07'),(4487,0,0,'I',1401,'I001401',2526,2,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-14 18:26:27','darshan','2025-11-14 18:27:07'),(4488,0,0,'I',1400,'I001400',2526,2,'0000-00-00','51228',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-14 18:26:34','','0000-00-00 00:00:00'),(4489,0,0,'I',1400,'I001400',2526,3,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 18:26:34','','0000-00-00 00:00:00'),(4490,0,0,'I',1401,'I001401',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 18:27:07','','0000-00-00 00:00:00'),(4491,0,0,'I',1402,'I001402',2526,1,'0000-00-00','51258',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 18:30:00','drarchit','2025-11-14 18:32:03'),(4492,0,0,'I',1402,'I001402',2526,2,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-14 18:30:00','drarchit','2025-11-14 18:32:03'),(4493,0,0,'I',1402,'I001402',2526,3,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 18:31:39','drarchit','2025-11-14 18:32:03'),(4494,0,0,'I',1402,'I001402',2526,4,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-14 18:31:39','drarchit','2025-11-14 18:32:03'),(4495,0,0,'I',1403,'I001403',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 18:31:54','','0000-00-00 00:00:00'),(4496,0,0,'I',1403,'I001403',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 18:31:54','','0000-00-00 00:00:00'),(4497,0,0,'I',1402,'I001402',2526,5,'0000-00-00','51532',0,0,'INJ','','','','',0,1,0,0,0,0,'20-30-14','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-14 18:32:03','','0000-00-00 00:00:00'),(4498,0,0,'I',1402,'I001402',2526,6,'0000-00-00','51531',0,0,'INJ','','','','',0,1,0,0,0,0,'0-0-20','','Dy',90,0,0,0,0,0,0,0,0,0,'271','','P',NULL,NULL,'drarchit','2025-11-14 18:32:03','','0000-00-00 00:00:00'),(4499,0,0,'I',1404,'I001404',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-14 18:36:15','drarchit','2025-11-14 18:37:41'),(4500,0,0,'I',1404,'I001404',2526,2,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 18:36:15','drarchit','2025-11-14 18:37:41'),(4501,0,0,'I',1404,'I001404',2526,3,'0000-00-00','51238',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-11-14 18:36:52','drarchit','2025-11-14 18:37:41'),(4502,0,0,'I',1404,'I001404',2526,4,'0000-00-00','51248',0,0,'CAP','','','','',0,56,0,0,0,0,'0-1-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 18:36:52','drarchit','2025-11-14 18:37:41'),(4503,0,0,'I',1404,'I001404',2526,5,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-14 18:36:52','drarchit','2025-11-14 18:37:41'),(4504,0,0,'I',1405,'I001405',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 18:38:17','darshan','2025-11-14 18:38:27'),(4506,0,0,'I',1405,'I001405',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 18:38:17','darshan','2025-11-14 18:38:27'),(4507,0,0,'I',1405,'I001405',2526,4,'0000-00-00','51382',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 18:38:17','darshan','2025-11-14 18:38:27'),(4508,0,0,'I',1405,'I001405',2526,2,'0000-00-00','51189',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 18:38:27','','0000-00-00 00:00:00'),(4510,0,0,'I',1406,'I001406',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 18:40:47','darshan','2025-11-14 18:41:07'),(4511,0,0,'I',1406,'I001406',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 18:40:47','darshan','2025-11-14 18:41:07'),(4513,0,0,'I',1407,'I001407',2526,1,'0000-00-00','51533',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 18:41:59','drarchit','2025-11-14 19:49:47'),(4519,0,0,'I',1408,'I001408',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 18:43:44','','0000-00-00 00:00:00'),(4521,0,0,'I',1409,'I001409',2526,1,'0000-00-00','51244',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 18:52:56','','0000-00-00 00:00:00'),(4522,0,0,'I',1410,'I001410',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 18:55:34','','0000-00-00 00:00:00'),(4523,0,0,'I',1411,'I001411',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 19:03:24','','0000-00-00 00:00:00'),(4524,0,0,'I',1411,'I001411',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 19:03:24','','0000-00-00 00:00:00'),(4525,0,0,'I',1411,'I001411',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 19:03:24','','0000-00-00 00:00:00'),(4526,0,0,'I',1412,'I001412',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 19:08:25','darshan','2025-11-14 19:14:05'),(4527,0,0,'I',1412,'I001412',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 19:08:25','darshan','2025-11-14 19:14:05'),(4528,0,0,'I',1412,'I001412',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 19:08:25','darshan','2025-11-14 19:14:05'),(4529,0,0,'I',1412,'I001412',2526,4,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-14 19:14:05','','0000-00-00 00:00:00'),(4530,0,0,'I',1414,'I001414',2526,1,'0000-00-00','51214',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-14 19:18:44','','0000-00-00 00:00:00'),(4531,0,0,'I',1414,'I001414',2526,2,'0000-00-00','51268',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 19:18:44','','0000-00-00 00:00:00'),(4532,0,0,'I',1415,'I001415',2526,1,'0000-00-00','51353',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 19:21:42','','0000-00-00 00:00:00'),(4533,0,0,'I',1415,'I001415',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 19:21:42','','0000-00-00 00:00:00'),(4534,0,0,'I',1415,'I001415',2526,3,'0000-00-00','51223',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-14 19:21:42','','0000-00-00 00:00:00'),(4535,0,0,'I',1415,'I001415',2526,4,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-14 19:21:42','','0000-00-00 00:00:00'),(4536,0,0,'I',1415,'I001415',2526,5,'0000-00-00','51219',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-11-14 19:21:42','','0000-00-00 00:00:00'),(4537,0,0,'I',1416,'I001416',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 19:25:55','darshan','2025-11-14 19:26:05'),(4538,0,0,'I',1416,'I001416',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 19:26:05','','0000-00-00 00:00:00'),(4539,0,0,'I',1417,'I001417',2526,1,'0000-00-00','51389',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-14 19:26:43','','0000-00-00 00:00:00'),(4540,0,0,'I',1417,'I001417',2526,2,'0000-00-00','51477',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-14 19:26:43','','0000-00-00 00:00:00'),(4541,0,0,'I',1417,'I001417',2526,3,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 19:26:43','','0000-00-00 00:00:00'),(4542,0,0,'I',1417,'I001417',2526,4,'0000-00-00','51219',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-11-14 19:26:43','','0000-00-00 00:00:00'),(4543,0,0,'I',1417,'I001417',2526,5,'0000-00-00','51383',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 19:26:43','','0000-00-00 00:00:00'),(4544,0,0,'I',1417,'I001417',2526,6,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-14 19:26:43','','0000-00-00 00:00:00'),(4545,0,0,'I',1418,'I001418',2526,1,'0000-00-00','51302',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 19:31:37','drarchit','2025-11-14 19:32:00'),(4546,0,0,'I',1418,'I001418',2526,2,'0000-00-00','51469',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-14 19:31:37','drarchit','2025-11-14 19:32:00'),(4547,0,0,'I',1418,'I001418',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-14 19:31:37','drarchit','2025-11-14 19:32:00'),(4548,0,0,'I',1418,'I001418',2526,4,'0000-00-00','51220',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 19:31:37','drarchit','2025-11-14 19:32:00'),(4549,0,0,'I',1418,'I001418',2526,5,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 19:31:37','drarchit','2025-11-14 19:32:00'),(4550,0,0,'I',1418,'I001418',2526,6,'0000-00-00','51267',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 19:32:00','','0000-00-00 00:00:00'),(4551,0,0,'I',1419,'I001419',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 19:38:42','darshan','2025-11-14 19:39:41'),(4552,0,0,'I',1419,'I001419',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 19:38:42','darshan','2025-11-14 19:39:41'),(4553,0,0,'I',1419,'I001419',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-14 19:38:42','darshan','2025-11-14 19:39:41'),(4554,0,0,'I',1419,'I001419',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-14 19:39:41','','0000-00-00 00:00:00'),(4555,0,0,'I',1420,'I001420',2526,1,'0000-00-00','51214',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-14 19:42:10','','0000-00-00 00:00:00'),(4556,0,0,'I',1420,'I001420',2526,2,'0000-00-00','51475',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-14 19:42:10','','0000-00-00 00:00:00'),(4557,0,0,'I',1420,'I001420',2526,3,'0000-00-00','51505',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-14 19:42:10','','0000-00-00 00:00:00'),(4558,0,0,'I',1421,'I001421',2526,1,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 19:46:29','','0000-00-00 00:00:00'),(4559,0,0,'I',1421,'I001421',2526,2,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 19:46:29','','0000-00-00 00:00:00'),(4560,0,0,'I',1421,'I001421',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 19:46:29','','0000-00-00 00:00:00'),(4561,0,0,'I',1422,'I001422',2526,1,'0000-00-00','51326',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 19:50:28','','0000-00-00 00:00:00'),(4562,0,0,'I',1422,'I001422',2526,2,'0000-00-00','51233',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'drarchit','2025-11-14 19:50:28','','0000-00-00 00:00:00'),(4563,0,0,'I',1422,'I001422',2526,3,'0000-00-00','51535',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 19:50:28','','0000-00-00 00:00:00'),(4564,0,0,'I',1423,'I001423',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 19:57:00','','0000-00-00 00:00:00'),(4565,0,0,'I',1423,'I001423',2526,2,'0000-00-00','51231',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 19:57:00','','0000-00-00 00:00:00'),(4566,0,0,'I',1423,'I001423',2526,3,'0000-00-00','51474',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-14 19:57:00','','0000-00-00 00:00:00'),(4567,0,0,'I',1423,'I001423',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 19:57:00','','0000-00-00 00:00:00'),(4568,0,0,'I',1423,'I001423',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-14 19:57:00','','0000-00-00 00:00:00'),(4569,0,0,'I',1423,'I001423',2526,6,'0000-00-00','51517',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 19:57:00','','0000-00-00 00:00:00'),(4570,0,0,'I',1424,'I001424',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-14 20:01:41','','0000-00-00 00:00:00'),(4571,0,0,'I',1424,'I001424',2526,2,'0000-00-00','51239',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-14 20:01:41','','0000-00-00 00:00:00'),(4572,0,0,'I',1425,'I001425',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 11:04:40','','0000-00-00 00:00:00'),(4573,0,0,'I',1425,'I001425',2526,2,'0000-00-00','51287',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-15 11:04:40','','0000-00-00 00:00:00'),(4574,0,0,'I',1426,'I001426',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 11:08:49','','0000-00-00 00:00:00'),(4575,0,0,'I',1426,'I001426',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 11:08:49','','0000-00-00 00:00:00'),(4576,0,0,'I',1427,'I001427',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 11:10:39','darshan','2025-11-15 11:10:58'),(4577,0,0,'I',1427,'I001427',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 11:10:39','darshan','2025-11-15 11:10:58'),(4579,0,0,'I',1427,'I001427',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 11:10:39','darshan','2025-11-15 11:10:58'),(4580,0,0,'I',1428,'I001428',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-15 11:14:40','','0000-00-00 00:00:00'),(4581,0,0,'I',1428,'I001428',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 11:14:40','','0000-00-00 00:00:00'),(4582,0,0,'I',1429,'I001429',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-15 11:14:48','','0000-00-00 00:00:00'),(4583,0,0,'I',1429,'I001429',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-15 11:14:48','','0000-00-00 00:00:00'),(4584,0,0,'I',1429,'I001429',2526,3,'0000-00-00','51517',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-15 11:14:48','','0000-00-00 00:00:00'),(4585,0,0,'I',1429,'I001429',2526,4,'0000-00-00','51513',0,0,'TAB','','','','',0,10,0,0,0,0,'0-1-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-15 11:14:48','','0000-00-00 00:00:00'),(4586,0,0,'I',1429,'I001429',2526,5,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-15 11:14:48','','0000-00-00 00:00:00'),(4587,0,0,'I',1430,'I001430',2526,1,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-15 11:25:14','','0000-00-00 00:00:00'),(4588,0,0,'I',1430,'I001430',2526,2,'0000-00-00','51247',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-15 11:25:14','','0000-00-00 00:00:00'),(4589,0,0,'I',1430,'I001430',2526,3,'0000-00-00','51468',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-15 11:25:14','','0000-00-00 00:00:00'),(4590,0,0,'I',1431,'I001431',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 11:26:00','','0000-00-00 00:00:00'),(4591,0,0,'I',1431,'I001431',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 11:26:00','','0000-00-00 00:00:00'),(4592,0,0,'I',1432,'I001432',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 11:28:16','darshan','2025-11-15 11:28:37'),(4593,0,0,'I',1432,'I001432',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-15 11:28:16','darshan','2025-11-15 11:28:37'),(4594,0,0,'I',1433,'I001433',2526,1,'0000-00-00','51257',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-15 11:33:43','drarchit','2025-11-15 11:37:49'),(4595,0,0,'I',1433,'I001433',2526,2,'0000-00-00','51516',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-15 11:33:43','drarchit','2025-11-15 11:37:49'),(4596,0,0,'I',1433,'I001433',2526,3,'0000-00-00','51375',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-0','','Dy',180,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-15 11:33:43','drarchit','2025-11-15 11:37:49'),(4597,0,0,'I',1433,'I001433',2526,4,'0000-00-00','51478',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-15 11:33:43','drarchit','2025-11-15 11:37:49'),(4598,0,0,'I',1433,'I001433',2526,5,'0000-00-00','51504',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-15 11:33:43','drarchit','2025-11-15 11:37:49'),(4599,0,0,'I',1433,'I001433',2526,6,'0000-00-00','51536',0,0,'TAB','','','','',0,12,0,0,0,0,'1-0-0','','Wk',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-15 11:35:52','drarchit','2025-11-15 11:37:49'),(4600,0,0,'I',1434,'I001434',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 11:36:50','darshan','2025-11-15 11:37:24'),(4601,0,0,'I',1434,'I001434',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 11:36:50','darshan','2025-11-15 11:37:24'),(4602,0,0,'I',1434,'I001434',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 11:36:50','darshan','2025-11-15 11:37:24'),(4603,0,0,'I',1433,'I001433',2526,7,'0000-00-00','51355',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-15 11:37:10','drarchit','2025-11-15 11:37:49'),(4604,0,0,'I',1434,'I001434',2526,4,'0000-00-00','51287',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-15 11:37:24','','0000-00-00 00:00:00'),(4605,0,0,'I',1435,'I001435',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 11:39:15','darshan','2025-11-15 11:40:26'),(4606,0,0,'I',1435,'I001435',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-15 11:39:15','darshan','2025-11-15 11:40:26'),(4607,0,0,'I',1436,'I001436',2526,1,'0000-00-00','51373',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-15 11:44:35','','0000-00-00 00:00:00'),(4608,0,0,'I',1436,'I001436',2526,2,'0000-00-00','51395',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-15 11:44:35','','0000-00-00 00:00:00'),(4609,0,0,'I',1436,'I001436',2526,3,'0000-00-00','51396',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'156','','P',NULL,NULL,'drarchit','2025-11-15 11:44:35','','0000-00-00 00:00:00'),(4610,0,0,'I',1436,'I001436',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,15,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'203','','P',NULL,NULL,'drarchit','2025-11-15 11:44:35','','0000-00-00 00:00:00'),(4611,0,0,'I',1437,'I001437',2526,1,'0000-00-00','51237',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-15 11:51:25','drarchit','2025-11-15 11:55:05'),(4614,0,0,'I',1437,'I001437',2526,2,'0000-00-00','51492',0,0,'INJ','','','','',0,1,0,0,0,0,'0-16-4','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-15 11:53:09','drarchit','2025-11-15 11:55:05'),(4615,0,0,'I',1437,'I001437',2526,3,'0000-00-00','51353',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-15 11:53:09','drarchit','2025-11-15 11:55:05'),(4616,0,0,'I',1437,'I001437',2526,4,'0000-00-00','51538',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-15 11:54:01','drarchit','2025-11-15 11:55:05'),(4617,0,0,'I',1437,'I001437',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-15 11:54:01','drarchit','2025-11-15 11:55:05'),(4618,0,0,'I',1437,'I001437',2526,6,'0000-00-00','51539',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-15 11:55:05','','0000-00-00 00:00:00'),(4619,0,0,'I',1438,'I001438',2526,1,'0000-00-00','51273',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-15 12:00:19','drarchit','2025-11-15 12:00:37'),(4620,0,0,'I',1438,'I001438',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-15 12:00:19','drarchit','2025-11-15 12:00:37'),(4621,0,0,'I',1438,'I001438',2526,3,'0000-00-00','51338',0,0,'TAB','','','','',0,180,0,0,0,0,'1-1-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-15 12:00:19','drarchit','2025-11-15 12:00:37'),(4622,0,0,'I',1439,'I001439',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 12:03:52','darshan','2025-11-15 12:04:26'),(4623,0,0,'I',1439,'I001439',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,25,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-15 12:03:52','darshan','2025-11-15 12:04:26'),(4624,0,0,'I',1439,'I001439',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 12:03:52','darshan','2025-11-15 12:04:26'),(4626,0,0,'I',1439,'I001439',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-15 12:04:26','','0000-00-00 00:00:00'),(4627,0,0,'I',1440,'I001440',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 12:06:47','darshan','2025-11-15 12:08:02'),(4628,0,0,'I',1440,'I001440',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 12:06:47','darshan','2025-11-15 12:08:02'),(4629,0,0,'I',1440,'I001440',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 12:06:47','darshan','2025-11-15 12:08:02'),(4631,0,0,'I',1440,'I001440',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 12:08:02','','0000-00-00 00:00:00'),(4632,0,0,'I',1442,'I001442',2526,1,'0000-00-00','51215',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 12:20:51','darshan','2025-11-15 12:21:05'),(4633,0,0,'I',1443,'I001443',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 12:24:34','','0000-00-00 00:00:00'),(4634,0,0,'I',1443,'I001443',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 12:24:34','','0000-00-00 00:00:00'),(4635,0,0,'I',1443,'I001443',2526,3,'0000-00-00','51287',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 12:24:34','','0000-00-00 00:00:00'),(4636,0,0,'I',1443,'I001443',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 12:24:34','','0000-00-00 00:00:00'),(4637,0,0,'I',1444,'I001444',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 12:35:37','darshan','2025-11-15 12:36:14'),(4638,0,0,'I',1444,'I001444',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-15 12:35:37','darshan','2025-11-15 12:36:14'),(4639,0,0,'I',1445,'I001445',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 12:46:26','','0000-00-00 00:00:00'),(4640,0,0,'I',1445,'I001445',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 12:46:26','','0000-00-00 00:00:00'),(4641,0,0,'I',1445,'I001445',2526,3,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-15 12:46:26','','0000-00-00 00:00:00'),(4642,0,0,'I',1445,'I001445',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-15 12:46:26','','0000-00-00 00:00:00'),(4643,0,0,'I',1446,'I001446',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 12:58:57','','0000-00-00 00:00:00'),(4644,0,0,'I',1446,'I001446',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 12:58:57','','0000-00-00 00:00:00'),(4645,0,0,'I',1447,'I001447',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:02:54','darshan','2025-11-15 13:03:14'),(4646,0,0,'I',1447,'I001447',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:03:14','','0000-00-00 00:00:00'),(4647,0,0,'I',1447,'I001447',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:03:14','','0000-00-00 00:00:00'),(4648,0,0,'I',1448,'I001448',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:10:38','darshan','2025-11-15 13:10:44'),(4649,0,0,'I',1448,'I001448',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:10:38','darshan','2025-11-15 13:10:44'),(4650,0,0,'I',1449,'I001449',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:15:29','darshan','2025-11-15 13:16:34'),(4651,0,0,'I',1449,'I001449',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:15:29','darshan','2025-11-15 13:16:34'),(4652,0,0,'I',1449,'I001449',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:15:29','darshan','2025-11-15 13:16:34'),(4653,0,0,'I',1449,'I001449',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-15 13:15:41','darshan','2025-11-15 13:16:34'),(4654,0,0,'I',1450,'I001450',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:24:49','','0000-00-00 00:00:00'),(4655,0,0,'I',1450,'I001450',2526,2,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-15 13:24:49','','0000-00-00 00:00:00'),(4656,0,0,'I',1451,'I001451',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:29:27','darshan','2025-11-15 13:29:48'),(4657,0,0,'I',1451,'I001451',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:29:48','','0000-00-00 00:00:00'),(4658,0,0,'I',1452,'I001452',2526,1,'0000-00-00','51270',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:32:39','darshan','2025-11-15 13:32:48'),(4659,0,0,'I',1452,'I001452',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:32:39','darshan','2025-11-15 13:32:48'),(4660,0,0,'I',1452,'I001452',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:32:39','darshan','2025-11-15 13:32:48'),(4661,0,0,'I',1452,'I001452',2526,4,'0000-00-00','51266',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'darshan','2025-11-15 13:32:39','darshan','2025-11-15 13:32:48'),(4662,0,0,'I',1452,'I001452',2526,5,'0000-00-00','51194',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:32:48','','0000-00-00 00:00:00'),(4663,0,0,'I',1453,'I001453',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:41:39','','0000-00-00 00:00:00'),(4664,0,0,'I',1453,'I001453',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:41:39','','0000-00-00 00:00:00'),(4665,0,0,'I',1453,'I001453',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-15 13:41:39','','0000-00-00 00:00:00'),(4666,0,0,'I',1453,'I001453',2526,4,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:41:39','','0000-00-00 00:00:00'),(4667,0,0,'I',1454,'I001454',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:49:53','darshan','2025-11-15 13:49:56'),(4668,0,0,'I',1454,'I001454',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:49:53','darshan','2025-11-15 13:49:56'),(4669,0,0,'I',1455,'I001455',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:56:20','darshan','2025-11-15 14:26:14'),(4670,0,0,'I',1455,'I001455',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-15 13:56:20','darshan','2025-11-15 14:26:14'),(4671,0,0,'I',1455,'I001455',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-15 13:56:20','darshan','2025-11-15 14:26:14'),(4672,0,0,'I',1455,'I001455',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-15 13:56:20','darshan','2025-11-15 14:26:14'),(4673,0,0,'I',1455,'I001455',2526,5,'0000-00-00','51212',0,0,'TAB','','','','',0,6,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-15 14:26:14','','0000-00-00 00:00:00'),(4674,0,0,'I',1456,'I001456',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 11:05:47','','0000-00-00 00:00:00'),(4675,0,0,'I',1456,'I001456',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 11:05:47','','0000-00-00 00:00:00'),(4676,0,0,'I',1456,'I001456',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,0,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 11:05:47','','0000-00-00 00:00:00'),(4677,0,0,'I',1456,'I001456',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-17 11:05:47','','0000-00-00 00:00:00'),(4678,0,0,'I',1457,'I001457',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 11:09:01','','0000-00-00 00:00:00'),(4679,0,0,'I',1457,'I001457',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 11:09:01','','0000-00-00 00:00:00'),(4680,0,0,'I',1457,'I001457',2526,3,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-17 11:09:01','','0000-00-00 00:00:00'),(4681,0,0,'I',1458,'I001458',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 11:11:07','darshan','2025-11-17 11:11:28'),(4682,0,0,'I',1458,'I001458',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-17 11:11:07','darshan','2025-11-17 11:11:28'),(4683,0,0,'I',1459,'I001459',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 11:15:50','darshan','2025-11-17 11:16:33'),(4687,0,0,'I',1459,'I001459',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 11:15:50','darshan','2025-11-17 11:16:33'),(4688,0,0,'I',1460,'I001460',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 11:22:29','','0000-00-00 00:00:00'),(4689,0,0,'I',1460,'I001460',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 11:22:29','','0000-00-00 00:00:00'),(4690,0,0,'I',1460,'I001460',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 11:22:29','','0000-00-00 00:00:00'),(4691,0,0,'I',1460,'I001460',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-17 11:22:29','','0000-00-00 00:00:00'),(4692,0,0,'I',1461,'I001461',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 11:23:47','darshan','2025-11-17 11:26:15'),(4693,0,0,'I',1461,'I001461',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-17 11:23:47','darshan','2025-11-17 11:26:15'),(4694,0,0,'I',1462,'I001462',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 11:40:46','','0000-00-00 00:00:00'),(4695,0,0,'I',1462,'I001462',2526,2,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-17 11:40:46','','0000-00-00 00:00:00'),(4696,0,0,'I',1462,'I001462',2526,3,'0000-00-00','51194',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-17 11:40:46','','0000-00-00 00:00:00'),(4697,0,0,'I',1463,'I001463',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 11:52:12','','0000-00-00 00:00:00'),(4698,0,0,'I',1463,'I001463',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 11:52:12','','0000-00-00 00:00:00'),(4699,0,0,'I',1463,'I001463',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 11:52:12','','0000-00-00 00:00:00'),(4700,0,0,'I',1463,'I001463',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-17 11:52:12','','0000-00-00 00:00:00'),(4701,0,0,'I',1464,'I001464',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-17 12:10:02','','0000-00-00 00:00:00'),(4702,0,0,'I',1464,'I001464',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 12:10:02','','0000-00-00 00:00:00'),(4703,0,0,'I',1464,'I001464',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 12:10:02','','0000-00-00 00:00:00'),(4704,0,0,'I',1464,'I001464',2526,4,'0000-00-00','51276',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 12:10:02','','0000-00-00 00:00:00'),(4705,0,0,'I',1464,'I001464',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-17 12:10:02','','0000-00-00 00:00:00'),(4706,0,0,'I',1465,'I001465',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 12:11:46','darshan','2025-11-17 12:12:19'),(4707,0,0,'I',1465,'I001465',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 12:11:46','darshan','2025-11-17 12:12:19'),(4708,0,0,'I',1466,'I001466',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 12:14:43','darshan','2025-11-17 12:15:21'),(4709,0,0,'I',1466,'I001466',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-17 12:14:43','darshan','2025-11-17 12:15:21'),(4710,0,0,'I',1467,'I001467',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 12:18:34','darshan','2025-11-17 12:18:58'),(4711,0,0,'I',1467,'I001467',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 12:18:34','darshan','2025-11-17 12:18:58'),(4712,0,0,'I',1467,'I001467',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 12:18:34','darshan','2025-11-17 12:18:58'),(4714,0,0,'I',1468,'I001468',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 12:22:31','','0000-00-00 00:00:00'),(4715,0,0,'I',1468,'I001468',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 12:22:31','','0000-00-00 00:00:00'),(4716,0,0,'I',1468,'I001468',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 12:22:31','','0000-00-00 00:00:00'),(4717,0,0,'I',1469,'I001469',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 12:35:04','darshan','2025-11-17 12:35:21'),(4718,0,0,'I',1469,'I001469',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 12:35:21','','0000-00-00 00:00:00'),(4719,0,0,'I',1470,'I001470',2526,1,'0000-00-00','51233',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-17 12:51:15','','0000-00-00 00:00:00'),(4720,0,0,'I',1470,'I001470',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 12:51:15','','0000-00-00 00:00:00'),(4721,0,0,'I',1470,'I001470',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 12:51:15','','0000-00-00 00:00:00'),(4723,0,0,'I',1471,'I001471',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 12:56:42','darshan','2025-11-17 12:57:09'),(4725,0,0,'I',1471,'I001471',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 12:56:42','darshan','2025-11-17 12:57:09'),(4727,0,0,'I',1472,'I001472',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,75,0,0,0,0,'.5-0-.5','','Dy',75,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:03:17','','0000-00-00 00:00:00'),(4728,0,0,'I',1472,'I001472',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:03:17','','0000-00-00 00:00:00'),(4729,0,0,'I',1473,'I001473',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,50,0,0,0,0,'.5-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:05:13','','0000-00-00 00:00:00'),(4730,0,0,'I',1474,'I001474',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:13:44','darshan','2025-11-17 13:13:55'),(4731,0,0,'I',1474,'I001474',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:13:55','','0000-00-00 00:00:00'),(4732,0,0,'I',1475,'I001475',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:18:03','darshan','2025-11-17 13:18:16'),(4733,0,0,'I',1475,'I001475',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:18:03','darshan','2025-11-17 13:18:16'),(4734,0,0,'I',1475,'I001475',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-17 13:18:16','','0000-00-00 00:00:00'),(4735,0,0,'I',1476,'I001476',2526,1,'0000-00-00','51267',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:24:32','','0000-00-00 00:00:00'),(4736,0,0,'I',1476,'I001476',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:24:32','','0000-00-00 00:00:00'),(4737,0,0,'I',1477,'I001477',2526,1,'0000-00-00','51283',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:34:46','darshan','2025-11-17 13:35:10'),(4738,0,0,'I',1477,'I001477',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:34:46','darshan','2025-11-17 13:35:10'),(4739,0,0,'I',1477,'I001477',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:34:46','darshan','2025-11-17 13:35:10'),(4740,0,0,'I',1477,'I001477',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-17 13:34:46','darshan','2025-11-17 13:35:10'),(4741,0,0,'I',1477,'I001477',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-17 13:35:10','','0000-00-00 00:00:00'),(4742,0,0,'I',1478,'I001478',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:44:02','darshan','2025-11-17 13:44:12'),(4743,0,0,'I',1478,'I001478',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:44:02','darshan','2025-11-17 13:44:12'),(4744,0,0,'I',1478,'I001478',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:44:02','darshan','2025-11-17 13:44:12'),(4745,0,0,'I',1478,'I001478',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-17 13:44:12','','0000-00-00 00:00:00'),(4746,0,0,'I',1479,'I001479',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:46:45','darshan','2025-11-17 13:48:18'),(4747,0,0,'I',1479,'I001479',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:46:45','darshan','2025-11-17 13:48:18'),(4748,0,0,'I',1479,'I001479',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:48:18','','0000-00-00 00:00:00'),(4749,0,0,'I',1479,'I001479',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-17 13:48:18','','0000-00-00 00:00:00'),(4750,0,0,'I',1480,'I001480',2526,1,'0000-00-00','51289',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:53:42','','0000-00-00 00:00:00'),(4751,0,0,'I',1480,'I001480',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:53:42','','0000-00-00 00:00:00'),(4752,0,0,'I',1481,'I001481',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 13:55:57','','0000-00-00 00:00:00'),(4753,0,0,'I',1482,'I001482',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-17 14:06:24','','0000-00-00 00:00:00'),(4754,0,0,'I',1482,'I001482',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 14:06:24','','0000-00-00 00:00:00'),(4755,0,0,'I',1482,'I001482',2526,3,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 14:06:24','','0000-00-00 00:00:00'),(4756,0,0,'I',1482,'I001482',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-17 14:06:24','','0000-00-00 00:00:00'),(4757,0,0,'I',1483,'I001483',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-17 14:09:36','darshan','2025-11-17 14:11:52'),(4759,0,0,'I',1483,'I001483',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 14:09:36','darshan','2025-11-17 14:11:52'),(4760,0,0,'I',1483,'I001483',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-17 14:11:43','darshan','2025-11-17 14:11:52'),(4761,0,0,'I',1483,'I001483',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-17 14:11:52','','0000-00-00 00:00:00'),(4762,0,0,'I',1484,'I001484',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-17 14:16:20','darshan','2025-11-17 14:18:32'),(4763,0,0,'I',1484,'I001484',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 14:16:20','darshan','2025-11-17 14:18:32'),(4764,0,0,'I',1484,'I001484',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 14:16:20','darshan','2025-11-17 14:18:32'),(4765,0,0,'I',1484,'I001484',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-17 14:16:20','darshan','2025-11-17 14:18:32'),(4766,0,0,'I',1484,'I001484',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-17 14:16:20','darshan','2025-11-17 14:18:32'),(4767,0,0,'I',1485,'I001485',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 17:16:13','darshan','2025-11-17 17:18:51'),(4768,0,0,'I',1485,'I001485',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-17 17:16:13','darshan','2025-11-17 17:18:51'),(4769,0,0,'I',1486,'I001486',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-17 17:22:27','','0000-00-00 00:00:00'),(4770,0,0,'I',1486,'I001486',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 17:22:27','','0000-00-00 00:00:00'),(4771,0,0,'I',1486,'I001486',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 17:22:27','','0000-00-00 00:00:00'),(4772,0,0,'I',1487,'I001487',2526,1,'0000-00-00','51440',0,0,'TAB','','','','',0,7,0,0,0,0,'.5-0-.5','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 17:36:45','','0000-00-00 00:00:00'),(4773,0,0,'I',1487,'I001487',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 17:36:45','','0000-00-00 00:00:00'),(4774,0,0,'I',1488,'I001488',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 18:02:53','','0000-00-00 00:00:00'),(4775,0,0,'I',1488,'I001488',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 18:02:53','','0000-00-00 00:00:00'),(4776,0,0,'I',1488,'I001488',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 18:02:53','','0000-00-00 00:00:00'),(4777,0,0,'I',1488,'I001488',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,40,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-17 18:02:53','','0000-00-00 00:00:00'),(4778,0,0,'I',1489,'I001489',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 18:24:35','darshan','2025-11-17 18:24:47'),(4779,0,0,'I',1489,'I001489',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,4,0,0,0,0,'1-0-0','','Wk',4,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-17 18:24:47','','0000-00-00 00:00:00'),(4780,0,0,'I',1490,'I001490',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 18:27:48','darshan','2025-11-17 18:28:33'),(4781,0,0,'I',1490,'I001490',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 18:27:48','darshan','2025-11-17 18:28:33'),(4783,0,0,'I',1490,'I001490',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,25,0,0,0,0,'0-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-17 18:28:20','darshan','2025-11-17 18:28:33'),(4784,0,0,'I',1491,'I001491',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-17 18:32:25','','0000-00-00 00:00:00'),(4785,0,0,'I',1491,'I001491',2526,2,'0000-00-00','51215',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 18:32:25','','0000-00-00 00:00:00'),(4786,0,0,'I',1491,'I001491',2526,3,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 18:32:25','','0000-00-00 00:00:00'),(4787,0,0,'I',1491,'I001491',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 18:32:25','','0000-00-00 00:00:00'),(4788,0,0,'I',1491,'I001491',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-17 18:32:25','','0000-00-00 00:00:00'),(4789,0,0,'I',1492,'I001492',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 18:46:31','darshan','2025-11-17 18:46:39'),(4790,0,0,'I',1492,'I001492',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 18:46:31','darshan','2025-11-17 18:46:39'),(4791,0,0,'I',1492,'I001492',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 18:46:31','darshan','2025-11-17 18:46:39'),(4792,0,0,'I',1492,'I001492',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-17 18:46:31','darshan','2025-11-17 18:46:39'),(4793,0,0,'I',1493,'I001493',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 18:57:49','','0000-00-00 00:00:00'),(4794,0,0,'I',1493,'I001493',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 18:57:49','','0000-00-00 00:00:00'),(4795,0,0,'I',1493,'I001493',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 18:57:49','','0000-00-00 00:00:00'),(4796,0,0,'I',1493,'I001493',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-17 18:57:49','','0000-00-00 00:00:00'),(4797,0,0,'I',1494,'I001494',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 19:21:05','','0000-00-00 00:00:00'),(4798,0,0,'I',1494,'I001494',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 19:21:05','','0000-00-00 00:00:00'),(4799,0,0,'I',1495,'I001495',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 19:24:56','darshan','2025-11-17 19:25:14'),(4800,0,0,'I',1495,'I001495',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 19:25:14','','0000-00-00 00:00:00'),(4801,0,0,'I',1495,'I001495',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-17 19:25:14','','0000-00-00 00:00:00'),(4802,0,0,'I',1496,'I001496',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 19:28:23','darshan','2025-11-17 19:28:36'),(4803,0,0,'I',1496,'I001496',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-17 19:28:23','darshan','2025-11-17 19:28:36'),(4804,0,0,'I',1497,'I001497',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 19:39:42','','0000-00-00 00:00:00'),(4805,0,0,'I',1497,'I001497',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 19:39:42','','0000-00-00 00:00:00'),(4806,0,0,'I',1497,'I001497',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 19:39:42','','0000-00-00 00:00:00'),(4807,0,0,'I',1497,'I001497',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-17 19:39:42','','0000-00-00 00:00:00'),(4808,0,0,'I',1498,'I001498',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 19:48:25','','0000-00-00 00:00:00'),(4809,0,0,'I',1498,'I001498',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 19:48:25','','0000-00-00 00:00:00'),(4810,0,0,'I',1498,'I001498',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 19:48:25','','0000-00-00 00:00:00'),(4811,0,0,'I',1498,'I001498',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-17 19:48:25','','0000-00-00 00:00:00'),(4812,0,0,'I',1499,'I001499',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 19:54:53','darshan','2025-11-17 19:55:16'),(4813,0,0,'I',1499,'I001499',2526,2,'0000-00-00','51334',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 19:54:53','darshan','2025-11-17 19:55:16'),(4814,0,0,'I',1499,'I001499',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 19:54:53','darshan','2025-11-17 19:55:16'),(4815,0,0,'I',1499,'I001499',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-17 19:55:16','','0000-00-00 00:00:00'),(4816,0,0,'I',1499,'I001499',2526,5,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-17 19:55:16','','0000-00-00 00:00:00'),(4817,0,0,'I',1500,'I001500',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 20:03:10','','0000-00-00 00:00:00'),(4818,0,0,'I',1500,'I001500',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 20:03:10','','0000-00-00 00:00:00'),(4819,0,0,'I',1501,'I001501',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 20:05:16','darshan','2025-11-17 20:06:14'),(4820,0,0,'I',1501,'I001501',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 20:05:16','darshan','2025-11-17 20:06:14'),(4821,0,0,'I',1501,'I001501',2526,3,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 20:05:16','darshan','2025-11-17 20:06:14'),(4822,0,0,'I',1501,'I001501',2526,4,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-17 20:06:14','','0000-00-00 00:00:00'),(4823,0,0,'I',1502,'I001502',2526,1,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 10:47:40','','0000-00-00 00:00:00'),(4824,0,0,'I',1503,'I001503',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'darshan','2025-11-18 10:50:56','','0000-00-00 00:00:00'),(4825,0,0,'I',1503,'I001503',2526,2,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 10:50:56','','0000-00-00 00:00:00'),(4826,0,0,'I',1505,'I001505',2526,1,'0000-00-00','51289',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 11:04:58','darshan','2025-11-18 11:05:56'),(4827,0,0,'I',1505,'I001505',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 11:04:58','darshan','2025-11-18 11:05:56'),(4828,0,0,'I',1506,'I001506',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 11:20:23','','0000-00-00 00:00:00'),(4829,0,0,'I',1506,'I001506',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-18 11:20:23','','0000-00-00 00:00:00'),(4830,0,0,'I',1507,'I001507',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 11:30:36','darshan','2025-11-18 11:31:24'),(4831,0,0,'I',1507,'I001507',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-18 11:30:36','darshan','2025-11-18 11:31:24'),(4833,0,0,'I',1508,'I001508',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 11:45:57','darshan','2025-11-18 11:46:35'),(4834,0,0,'I',1508,'I001508',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 11:45:57','darshan','2025-11-18 11:46:35'),(4835,0,0,'I',1508,'I001508',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-18 11:46:24','darshan','2025-11-18 11:46:35'),(4836,0,0,'I',1509,'I001509',2526,1,'0000-00-00','51215',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 11:54:54','darshan','2025-11-18 11:55:31'),(4837,0,0,'I',1509,'I001509',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 11:54:54','darshan','2025-11-18 11:55:31'),(4838,0,0,'I',1509,'I001509',2526,3,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 11:54:54','darshan','2025-11-18 11:55:31'),(4840,0,0,'I',1509,'I001509',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-18 11:54:54','darshan','2025-11-18 11:55:31'),(4844,0,0,'I',1510,'I001510',2526,1,'0000-00-00','51219',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'darshan','2025-11-18 12:02:08','','0000-00-00 00:00:00'),(4845,0,0,'I',1511,'I001511',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 12:12:46','darshan','2025-11-18 12:13:11'),(4846,0,0,'I',1512,'I001512',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 12:23:34','darshan','2025-11-18 12:23:52'),(4847,0,0,'I',1512,'I001512',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 12:23:34','darshan','2025-11-18 12:23:52'),(4848,0,0,'I',1512,'I001512',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 12:23:34','darshan','2025-11-18 12:23:52'),(4849,0,0,'I',1512,'I001512',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-18 12:23:34','darshan','2025-11-18 12:23:52'),(4850,0,0,'I',1504,'I001504',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 12:34:45','','0000-00-00 00:00:00'),(4851,0,0,'I',1504,'I001504',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 12:34:45','','0000-00-00 00:00:00'),(4852,0,0,'I',1504,'I001504',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 12:34:45','','0000-00-00 00:00:00'),(4853,0,0,'I',1504,'I001504',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-18 12:34:45','','0000-00-00 00:00:00'),(4854,0,0,'I',1513,'I001513',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 12:54:31','','0000-00-00 00:00:00'),(4855,0,0,'I',1513,'I001513',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 12:54:31','','0000-00-00 00:00:00'),(4856,0,0,'I',1514,'I001514',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 13:08:57','darshan','2025-11-18 13:09:26'),(4857,0,0,'I',1514,'I001514',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 13:08:57','darshan','2025-11-18 13:09:26'),(4859,0,0,'I',1515,'I001515',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 13:17:11','','0000-00-00 00:00:00'),(4860,0,0,'I',1515,'I001515',2526,2,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-18 13:17:11','','0000-00-00 00:00:00'),(4861,0,0,'I',1516,'I001516',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 13:33:39','','0000-00-00 00:00:00'),(4862,0,0,'I',1516,'I001516',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 13:33:39','','0000-00-00 00:00:00'),(4864,0,0,'I',1517,'I001517',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 13:37:21','darshan','2025-11-18 13:37:38'),(4865,0,0,'I',1517,'I001517',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 13:37:21','darshan','2025-11-18 13:37:38'),(4868,0,0,'I',1518,'I001518',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 13:46:29','','0000-00-00 00:00:00'),(4869,0,0,'I',1518,'I001518',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 13:46:29','','0000-00-00 00:00:00'),(4870,0,0,'I',1519,'I001519',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 14:02:38','darshan','2025-11-18 14:06:01'),(4871,0,0,'I',1519,'I001519',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 14:02:38','darshan','2025-11-18 14:06:01'),(4872,0,0,'I',1519,'I001519',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-18 14:02:38','darshan','2025-11-18 14:06:01'),(4873,0,0,'I',1520,'I001520',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 14:22:17','','0000-00-00 00:00:00'),(4874,0,0,'I',1520,'I001520',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 14:22:17','','0000-00-00 00:00:00'),(4875,0,0,'I',1521,'I001521',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 17:23:13','','0000-00-00 00:00:00'),(4876,0,0,'I',1522,'I001522',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 17:32:41','darshan','2025-11-18 17:32:44'),(4877,0,0,'I',1522,'I001522',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 17:32:41','darshan','2025-11-18 17:32:44'),(4878,0,0,'I',1523,'I001523',2526,1,'0000-00-00','51190',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 17:41:14','','0000-00-00 00:00:00'),(4879,0,0,'I',1523,'I001523',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 17:41:14','','0000-00-00 00:00:00'),(4880,0,0,'I',1523,'I001523',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 17:41:14','','0000-00-00 00:00:00'),(4881,0,0,'I',1524,'I001524',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-18 17:49:15','','0000-00-00 00:00:00'),(4882,0,0,'I',1524,'I001524',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 17:49:15','','0000-00-00 00:00:00'),(4883,0,0,'I',1524,'I001524',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 17:49:15','','0000-00-00 00:00:00'),(4884,0,0,'I',1525,'I001525',2526,1,'0000-00-00','51202',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 17:59:38','','0000-00-00 00:00:00'),(4885,0,0,'I',1525,'I001525',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 17:59:38','','0000-00-00 00:00:00'),(4886,0,0,'I',1525,'I001525',2526,3,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-18 17:59:38','','0000-00-00 00:00:00'),(4887,0,0,'I',1526,'I001526',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 18:06:22','','0000-00-00 00:00:00'),(4888,0,0,'I',1526,'I001526',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 18:06:22','','0000-00-00 00:00:00'),(4889,0,0,'I',1527,'I001527',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 18:10:41','darshan','2025-11-18 18:11:30'),(4890,0,0,'I',1527,'I001527',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 18:10:41','darshan','2025-11-18 18:11:30'),(4891,0,0,'I',1528,'I001528',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 18:34:33','','0000-00-00 00:00:00'),(4892,0,0,'I',1528,'I001528',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-18 18:34:33','','0000-00-00 00:00:00'),(4893,0,0,'I',1529,'I001529',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,50,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-18 18:57:57','','0000-00-00 00:00:00'),(4894,0,0,'I',1529,'I001529',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 18:57:57','','0000-00-00 00:00:00'),(4895,0,0,'I',1530,'I001530',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 19:02:28','','0000-00-00 00:00:00'),(4896,0,0,'I',1530,'I001530',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 19:02:28','','0000-00-00 00:00:00'),(4897,0,0,'I',1531,'I001531',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 19:05:10','darshan','2025-11-18 19:13:54'),(4898,0,0,'I',1531,'I001531',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 19:05:10','darshan','2025-11-18 19:13:54'),(4899,0,0,'I',1531,'I001531',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 19:05:10','darshan','2025-11-18 19:13:54'),(4900,0,0,'I',1531,'I001531',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-18 19:05:10','darshan','2025-11-18 19:13:54'),(4901,0,0,'I',1531,'I001531',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-18 19:05:29','darshan','2025-11-18 19:13:54'),(4902,0,0,'I',1532,'I001532',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 19:34:42','darshan','2025-11-18 19:37:04'),(4903,0,0,'I',1532,'I001532',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 19:34:42','darshan','2025-11-18 19:37:04'),(4904,0,0,'I',1532,'I001532',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-18 19:34:42','darshan','2025-11-18 19:37:04'),(4905,0,0,'I',1532,'I001532',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-18 19:34:42','darshan','2025-11-18 19:37:04'),(4906,0,0,'I',1533,'I001533',2526,1,'0000-00-00','51283',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 10:43:01','','0000-00-00 00:00:00'),(4907,0,0,'I',1533,'I001533',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 10:43:01','','0000-00-00 00:00:00'),(4908,0,0,'I',1533,'I001533',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 10:43:01','','0000-00-00 00:00:00'),(4909,0,0,'I',1533,'I001533',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-19 10:43:01','','0000-00-00 00:00:00'),(4910,0,0,'I',1534,'I001534',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 10:50:52','','0000-00-00 00:00:00'),(4911,0,0,'I',1534,'I001534',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 10:50:52','','0000-00-00 00:00:00'),(4912,0,0,'I',1534,'I001534',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 10:50:52','','0000-00-00 00:00:00'),(4913,0,0,'I',1534,'I001534',2526,4,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 10:50:52','','0000-00-00 00:00:00'),(4914,0,0,'I',1535,'I001535',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:01:26','darshan','2025-11-19 12:55:41'),(4915,0,0,'I',1535,'I001535',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:01:26','darshan','2025-11-19 12:55:41'),(4916,0,0,'I',1535,'I001535',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:01:26','darshan','2025-11-19 12:55:41'),(4917,0,0,'I',1535,'I001535',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-19 11:01:26','darshan','2025-11-19 12:55:41'),(4918,0,0,'I',1535,'I001535',2526,5,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-19 11:01:26','darshan','2025-11-19 12:55:41'),(4919,0,0,'I',1536,'I001536',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:04:16','','0000-00-00 00:00:00'),(4920,0,0,'I',1536,'I001536',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:04:16','','0000-00-00 00:00:00'),(4921,0,0,'I',1536,'I001536',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:04:16','','0000-00-00 00:00:00'),(4922,0,0,'I',1537,'I001537',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:17:47','','0000-00-00 00:00:00'),(4923,0,0,'I',1537,'I001537',2526,2,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-19 11:17:47','','0000-00-00 00:00:00'),(4924,0,0,'I',1537,'I001537',2526,3,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:17:47','','0000-00-00 00:00:00'),(4925,0,0,'I',1537,'I001537',2526,4,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:17:47','','0000-00-00 00:00:00'),(4926,0,0,'I',1537,'I001537',2526,5,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:17:47','','0000-00-00 00:00:00'),(4927,0,0,'I',1538,'I001538',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:24:09','darshan','2025-11-19 11:24:38'),(4928,0,0,'I',1538,'I001538',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-19 11:24:09','darshan','2025-11-19 11:24:38'),(4929,0,0,'I',1539,'I001539',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:28:13','','0000-00-00 00:00:00'),(4930,0,0,'I',1539,'I001539',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:28:13','','0000-00-00 00:00:00'),(4931,0,0,'I',1540,'I001540',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:31:41','darshan','2025-11-19 11:32:05'),(4932,0,0,'I',1540,'I001540',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:31:41','darshan','2025-11-19 11:32:05'),(4935,0,0,'I',1541,'I001541',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:36:20','darshan','2025-11-19 11:37:56'),(4936,0,0,'I',1541,'I001541',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-19 11:36:20','darshan','2025-11-19 11:37:56'),(4938,0,0,'I',1542,'I001542',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 11:50:01','','0000-00-00 00:00:00'),(4939,0,0,'I',1542,'I001542',2526,2,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 11:50:01','','0000-00-00 00:00:00'),(4940,0,0,'I',1542,'I001542',2526,3,'0000-00-00','51352',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 11:50:01','','0000-00-00 00:00:00'),(4941,0,0,'I',1543,'I001543',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:51:24','','0000-00-00 00:00:00'),(4942,0,0,'I',1543,'I001543',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:51:24','','0000-00-00 00:00:00'),(4943,0,0,'I',1543,'I001543',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-19 11:51:24','','0000-00-00 00:00:00'),(4945,0,0,'I',1544,'I001544',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:53:22','darshan','2025-11-19 11:53:36'),(4947,0,0,'I',1545,'I001545',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 11:56:07','','0000-00-00 00:00:00'),(4948,0,0,'I',1546,'I001546',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 12:01:04','','0000-00-00 00:00:00'),(4949,0,0,'I',1546,'I001546',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 12:01:04','','0000-00-00 00:00:00'),(4950,0,0,'I',1546,'I001546',2526,3,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-19 12:01:04','','0000-00-00 00:00:00'),(4951,0,0,'I',1546,'I001546',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-19 12:01:04','','0000-00-00 00:00:00'),(4952,0,0,'I',1546,'I001546',2526,5,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-11-19 12:01:04','','0000-00-00 00:00:00'),(4953,0,0,'I',1547,'I001547',2526,1,'0000-00-00','51289',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 12:17:51','darshan','2025-11-19 12:18:01'),(4954,0,0,'I',1547,'I001547',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-19 12:17:51','darshan','2025-11-19 12:18:01'),(4955,0,0,'I',1548,'I001548',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-19 12:21:16','','0000-00-00 00:00:00'),(4956,0,0,'I',1548,'I001548',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 12:21:16','','0000-00-00 00:00:00'),(4957,0,0,'I',1548,'I001548',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-19 12:21:16','','0000-00-00 00:00:00'),(4958,0,0,'I',1548,'I001548',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 12:21:16','','0000-00-00 00:00:00'),(4959,0,0,'I',1549,'I001549',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-19 12:25:43','','0000-00-00 00:00:00'),(4960,0,0,'I',1549,'I001549',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 12:25:43','','0000-00-00 00:00:00'),(4961,0,0,'I',1550,'I001550',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-19 12:33:19','','0000-00-00 00:00:00'),(4962,0,0,'I',1550,'I001550',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,25,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-19 12:33:19','','0000-00-00 00:00:00'),(4963,0,0,'I',1550,'I001550',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,50,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 12:33:19','','0000-00-00 00:00:00'),(4964,0,0,'I',1550,'I001550',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-19 12:33:19','','0000-00-00 00:00:00'),(4965,0,0,'I',1550,'I001550',2526,5,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-1-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 12:33:19','','0000-00-00 00:00:00'),(4966,0,0,'I',1551,'I001551',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 12:44:24','darshan','2025-11-19 12:44:32'),(4967,0,0,'I',1551,'I001551',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 12:44:24','darshan','2025-11-19 12:44:32'),(4968,0,0,'I',1552,'I001552',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 12:48:11','','0000-00-00 00:00:00'),(4969,0,0,'I',1552,'I001552',2526,2,'0000-00-00','51262',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 12:48:11','','0000-00-00 00:00:00'),(4970,0,0,'I',1552,'I001552',2526,3,'0000-00-00','51371',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 12:48:11','','0000-00-00 00:00:00'),(4971,0,0,'I',1553,'I001553',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 12:49:56','darshan','2025-11-19 12:50:11'),(4972,0,0,'I',1553,'I001553',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'341','','P',NULL,NULL,'darshan','2025-11-19 12:49:56','darshan','2025-11-19 12:50:11'),(4973,0,0,'I',1553,'I001553',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-19 12:49:56','darshan','2025-11-19 12:50:11'),(4974,0,0,'I',1554,'I001554',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-19 12:55:09','drarchit','2025-11-19 12:57:10'),(4975,0,0,'I',1554,'I001554',2526,2,'0000-00-00','51329',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-19 12:55:09','drarchit','2025-11-19 12:57:10'),(4976,0,0,'I',1554,'I001554',2526,3,'0000-00-00','51285',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 12:56:49','drarchit','2025-11-19 12:57:10'),(4977,0,0,'I',1554,'I001554',2526,4,'0000-00-00','51487',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-19 12:56:49','drarchit','2025-11-19 12:57:10'),(4978,0,0,'I',1554,'I001554',2526,5,'0000-00-00','51220',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 12:57:10','','0000-00-00 00:00:00'),(4979,0,0,'I',1555,'I001555',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,50,0,0,0,0,'.5-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 12:59:10','','0000-00-00 00:00:00'),(4980,0,0,'I',1556,'I001556',2526,1,'0000-00-00','51224',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 13:02:26','darshan','2025-11-19 13:02:46'),(4981,0,0,'I',1556,'I001556',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 13:02:26','darshan','2025-11-19 13:02:46'),(4982,0,0,'I',1556,'I001556',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 13:02:26','darshan','2025-11-19 13:02:46'),(4983,0,0,'I',1556,'I001556',2526,4,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-19 13:02:46','','0000-00-00 00:00:00'),(4984,0,0,'I',1557,'I001557',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-19 13:09:18','drarchit','2025-11-19 13:09:44'),(4985,0,0,'I',1557,'I001557',2526,2,'0000-00-00','51214',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-19 13:09:18','drarchit','2025-11-19 13:09:44'),(4986,0,0,'I',1557,'I001557',2526,3,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:09:44','','0000-00-00 00:00:00'),(4987,0,0,'I',1558,'I001558',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 13:13:24','darshan','2025-11-19 13:14:04'),(4988,0,0,'I',1558,'I001558',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 13:13:24','darshan','2025-11-19 13:14:04'),(4989,0,0,'I',1558,'I001558',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 13:13:24','darshan','2025-11-19 13:14:04'),(4991,0,0,'I',1559,'I001559',2526,1,'0000-00-00','51273',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:16:02','drarchit','2025-11-19 13:16:31'),(4992,0,0,'I',1559,'I001559',2526,2,'0000-00-00','51482',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-19 13:16:02','drarchit','2025-11-19 13:16:31'),(4993,0,0,'I',1559,'I001559',2526,3,'0000-00-00','51473',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-19 13:16:02','drarchit','2025-11-19 13:16:31'),(4994,0,0,'I',1559,'I001559',2526,4,'0000-00-00','51279',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:16:31','','0000-00-00 00:00:00'),(4995,0,0,'I',1560,'I001560',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 13:20:38','','0000-00-00 00:00:00'),(4996,0,0,'I',1560,'I001560',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 13:20:38','','0000-00-00 00:00:00'),(4997,0,0,'I',1560,'I001560',2526,3,'0000-00-00','51194',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 13:20:38','','0000-00-00 00:00:00'),(4998,0,0,'I',1560,'I001560',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-19 13:20:38','','0000-00-00 00:00:00'),(4999,0,0,'I',1561,'I001561',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:23:13','','0000-00-00 00:00:00'),(5000,0,0,'I',1561,'I001561',2526,2,'0000-00-00','51310',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:23:13','','0000-00-00 00:00:00'),(5001,0,0,'I',1562,'I001562',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:25:39','drarchit','2025-11-19 13:26:32'),(5002,0,0,'I',1562,'I001562',2526,2,'0000-00-00','51469',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-19 13:26:32','','0000-00-00 00:00:00'),(5003,0,0,'I',1562,'I001562',2526,3,'0000-00-00','51248',0,0,'CAP','','','','',0,56,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:26:32','','0000-00-00 00:00:00'),(5004,0,0,'I',1562,'I001562',2526,4,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:26:32','','0000-00-00 00:00:00'),(5005,0,0,'I',1562,'I001562',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 13:26:32','','0000-00-00 00:00:00'),(5006,0,0,'I',1563,'I001563',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-19 13:30:35','','0000-00-00 00:00:00'),(5007,0,0,'I',1563,'I001563',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 13:30:35','','0000-00-00 00:00:00'),(5008,0,0,'I',1563,'I001563',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 13:30:35','','0000-00-00 00:00:00'),(5009,0,0,'I',1563,'I001563',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 13:30:35','','0000-00-00 00:00:00'),(5010,0,0,'I',1563,'I001563',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-19 13:30:35','','0000-00-00 00:00:00'),(5011,0,0,'I',1564,'I001564',2526,1,'0000-00-00','51239',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 13:32:35','drarchit','2025-11-19 13:33:38'),(5012,0,0,'I',1564,'I001564',2526,2,'0000-00-00','51541',0,0,'TAB','','','','',0,3,0,0,0,0,'0-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:33:38','','0000-00-00 00:00:00'),(5013,0,0,'I',1565,'I001565',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:36:36','drarchit','2025-11-19 13:37:06'),(5014,0,0,'I',1565,'I001565',2526,2,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:37:02','drarchit','2025-11-19 13:37:06'),(5015,0,0,'I',1566,'I001566',2526,1,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:40:21','drarchit','2025-11-19 13:40:25'),(5016,0,0,'I',1566,'I001566',2526,2,'0000-00-00','51219',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-11-19 13:40:21','drarchit','2025-11-19 13:40:25'),(5017,0,0,'I',1566,'I001566',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 13:40:21','drarchit','2025-11-19 13:40:25'),(5018,0,0,'I',1566,'I001566',2526,4,'0000-00-00','51262',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:40:21','drarchit','2025-11-19 13:40:25'),(5019,0,0,'I',1567,'I001567',2526,1,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:45:32','drarchit','2025-11-19 13:45:58'),(5020,0,0,'I',1567,'I001567',2526,2,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:45:32','drarchit','2025-11-19 13:45:58'),(5021,0,0,'I',1567,'I001567',2526,3,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:45:32','drarchit','2025-11-19 13:45:58'),(5023,0,0,'I',1567,'I001567',2526,4,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-19 13:45:32','drarchit','2025-11-19 13:45:58'),(5024,0,0,'I',1567,'I001567',2526,5,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-11-19 13:45:58','','0000-00-00 00:00:00'),(5025,0,0,'I',1567,'I001567',2526,6,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 13:45:58','','0000-00-00 00:00:00'),(5026,0,0,'I',1568,'I001568',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 13:46:32','','0000-00-00 00:00:00'),(5027,0,0,'I',1569,'I001569',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-19 13:49:58','drarchit','2025-11-20 14:59:45'),(5028,0,0,'I',1569,'I001569',2526,2,'0000-00-00','51347',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-19 13:49:58','drarchit','2025-11-20 14:59:45'),(5029,0,0,'I',1569,'I001569',2526,3,'0000-00-00','51386',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-19 13:49:58','drarchit','2025-11-20 14:59:45'),(5030,0,0,'I',1569,'I001569',2526,4,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:49:58','drarchit','2025-11-20 14:59:45'),(5031,0,0,'I',1569,'I001569',2526,5,'0000-00-00','51387',0,0,'INJ','','','','',0,4,0,0,0,0,'0-0-14','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-19 13:49:58','drarchit','2025-11-20 14:59:45'),(5032,0,0,'I',1570,'I001570',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 13:53:29','','0000-00-00 00:00:00'),(5033,0,0,'I',1570,'I001570',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 13:53:29','','0000-00-00 00:00:00'),(5034,0,0,'I',1570,'I001570',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-19 13:53:29','','0000-00-00 00:00:00'),(5035,0,0,'I',1571,'I001571',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:57:51','','0000-00-00 00:00:00'),(5036,0,0,'I',1571,'I001571',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:57:51','','0000-00-00 00:00:00'),(5037,0,0,'I',1571,'I001571',2526,3,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-19 13:57:51','','0000-00-00 00:00:00'),(5038,0,0,'I',1571,'I001571',2526,4,'0000-00-00','51389',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-19 13:57:51','','0000-00-00 00:00:00'),(5039,0,0,'I',1571,'I001571',2526,5,'0000-00-00','51407',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:57:51','','0000-00-00 00:00:00'),(5040,0,0,'I',1571,'I001571',2526,6,'0000-00-00','51406',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 13:57:51','','0000-00-00 00:00:00'),(5041,0,0,'I',1572,'I001572',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 14:06:10','darshan','2025-11-19 14:06:53'),(5042,0,0,'I',1572,'I001572',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 14:06:10','darshan','2025-11-19 14:06:53'),(5043,0,0,'I',1572,'I001572',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-19 14:06:10','darshan','2025-11-19 14:06:53'),(5044,0,0,'I',1572,'I001572',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 14:06:53','','0000-00-00 00:00:00'),(5045,0,0,'I',1572,'I001572',2526,5,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-19 14:06:53','','0000-00-00 00:00:00'),(5046,0,0,'I',1573,'I001573',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 14:09:10','darshan','2025-11-19 14:11:48'),(5047,0,0,'I',1573,'I001573',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 14:09:10','darshan','2025-11-19 14:11:48'),(5049,0,0,'I',1574,'I001574',2526,1,'0000-00-00','51230',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 14:11:33','','0000-00-00 00:00:00'),(5050,0,0,'I',1574,'I001574',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 14:11:33','','0000-00-00 00:00:00'),(5051,0,0,'I',1574,'I001574',2526,3,'0000-00-00','51487',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-19 14:11:33','','0000-00-00 00:00:00'),(5052,0,0,'I',1574,'I001574',2526,4,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 14:11:33','','0000-00-00 00:00:00'),(5053,0,0,'I',1576,'I001576',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-19 17:06:03','darshan','2025-11-19 17:06:27'),(5054,0,0,'I',1576,'I001576',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 17:06:03','darshan','2025-11-19 17:06:27'),(5057,0,0,'I',1577,'I001577',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 17:14:05','darshan','2025-11-19 17:14:31'),(5058,0,0,'I',1577,'I001577',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 17:14:05','darshan','2025-11-19 17:14:31'),(5059,0,0,'I',1577,'I001577',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 17:14:05','darshan','2025-11-19 17:14:31'),(5060,0,0,'I',1577,'I001577',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',0,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-19 17:14:31','','0000-00-00 00:00:00'),(5061,0,0,'I',1578,'I001578',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 17:18:51','','0000-00-00 00:00:00'),(5062,0,0,'I',1578,'I001578',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 17:18:51','','0000-00-00 00:00:00'),(5063,0,0,'I',1579,'I001579',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 17:30:26','','0000-00-00 00:00:00'),(5064,0,0,'I',1579,'I001579',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 17:30:26','','0000-00-00 00:00:00'),(5065,0,0,'I',1580,'I001580',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 17:33:49','','0000-00-00 00:00:00'),(5066,0,0,'I',1580,'I001580',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 17:33:49','','0000-00-00 00:00:00'),(5067,0,0,'I',1580,'I001580',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-19 17:33:49','','0000-00-00 00:00:00'),(5068,0,0,'I',1580,'I001580',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-19 17:33:49','','0000-00-00 00:00:00'),(5069,0,0,'I',1581,'I001581',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 17:42:15','darshan','2025-11-19 17:43:20'),(5070,0,0,'I',1581,'I001581',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 17:42:15','darshan','2025-11-19 17:43:20'),(5071,0,0,'I',1582,'I001582',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 17:53:23','','0000-00-00 00:00:00'),(5072,0,0,'I',1582,'I001582',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 17:53:23','','0000-00-00 00:00:00'),(5073,0,0,'I',1582,'I001582',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-19 17:53:23','','0000-00-00 00:00:00'),(5074,0,0,'I',1582,'I001582',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 17:53:23','','0000-00-00 00:00:00'),(5076,0,0,'I',1583,'I001583',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 17:55:26','darshan','2025-11-19 17:55:45'),(5077,0,0,'I',1583,'I001583',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,45,0,0,0,0,'1-1-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 17:55:26','darshan','2025-11-19 17:55:45'),(5078,0,0,'I',1583,'I001583',2526,3,'0000-00-00','51276',0,0,'CAP','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 17:55:26','darshan','2025-11-19 17:55:45'),(5080,0,0,'I',1584,'I001584',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 18:05:46','darshan','2025-11-19 18:06:47'),(5081,0,0,'I',1584,'I001584',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-19 18:05:46','darshan','2025-11-19 18:06:47'),(5082,0,0,'I',1584,'I001584',2526,3,'0000-00-00','51219',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'darshan','2025-11-19 18:06:47','','0000-00-00 00:00:00'),(5083,0,0,'I',1585,'I001585',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 18:11:45','darshan','2025-11-19 18:13:24'),(5084,0,0,'I',1585,'I001585',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 18:11:45','darshan','2025-11-19 18:13:24'),(5085,0,0,'I',1585,'I001585',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-19 18:13:24','','0000-00-00 00:00:00'),(5086,0,0,'I',1586,'I001586',2526,1,'0000-00-00','51229',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 18:20:52','drarchit','2025-11-19 18:21:02'),(5087,0,0,'I',1586,'I001586',2526,2,'0000-00-00','51279',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:20:52','drarchit','2025-11-19 18:21:02'),(5088,0,0,'I',1586,'I001586',2526,3,'0000-00-00','51480',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-19 18:20:52','drarchit','2025-11-19 18:21:02'),(5089,0,0,'I',1587,'I001587',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:28:32','drarchit','2025-11-19 18:31:14'),(5090,0,0,'I',1587,'I001587',2526,2,'0000-00-00','51400',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:28:32','drarchit','2025-11-19 18:31:14'),(5091,0,0,'I',1587,'I001587',2526,3,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-19 18:28:32','drarchit','2025-11-19 18:31:14'),(5092,0,0,'I',1587,'I001587',2526,4,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:29:12','drarchit','2025-11-19 18:31:14'),(5093,0,0,'I',1587,'I001587',2526,5,'0000-00-00','51344',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-19 18:29:12','drarchit','2025-11-19 18:31:14'),(5094,0,0,'I',1587,'I001587',2526,6,'0000-00-00','51542',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:30:45','drarchit','2025-11-19 18:31:14'),(5096,0,0,'I',1587,'I001587',2526,7,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:30:45','drarchit','2025-11-19 18:31:14'),(5097,0,0,'I',1587,'I001587',2526,8,'0000-00-00','51232',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:31:14','','0000-00-00 00:00:00'),(5098,0,0,'I',1588,'I001588',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 18:33:32','darshan','2025-11-19 18:34:17'),(5099,0,0,'I',1588,'I001588',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 18:34:17','','0000-00-00 00:00:00'),(5100,0,0,'I',1588,'I001588',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 18:34:17','','0000-00-00 00:00:00'),(5101,0,0,'I',1588,'I001588',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-19 18:34:17','','0000-00-00 00:00:00'),(5102,0,0,'I',1589,'I001589',2526,1,'0000-00-00','51373',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:37:07','drarchit','2025-11-19 18:37:52'),(5104,0,0,'I',1589,'I001589',2526,2,'0000-00-00','51396',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:37:07','drarchit','2025-11-19 18:37:52'),(5105,0,0,'I',1589,'I001589',2526,3,'0000-00-00','51370',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 18:37:07','drarchit','2025-11-19 18:37:52'),(5106,0,0,'I',1589,'I001589',2526,4,'0000-00-00','51395',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:37:07','drarchit','2025-11-19 18:37:52'),(5107,0,0,'I',1589,'I001589',2526,5,'0000-00-00','51543',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:37:52','','0000-00-00 00:00:00'),(5108,0,0,'I',1590,'I001590',2526,1,'0000-00-00','51487',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-19 18:41:49','','0000-00-00 00:00:00'),(5109,0,0,'I',1590,'I001590',2526,2,'0000-00-00','51217',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:41:49','','0000-00-00 00:00:00'),(5110,0,0,'I',1590,'I001590',2526,3,'0000-00-00','51222',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:41:49','','0000-00-00 00:00:00'),(5111,0,0,'I',1590,'I001590',2526,4,'0000-00-00','51232',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:41:49','','0000-00-00 00:00:00'),(5112,0,0,'I',1590,'I001590',2526,5,'0000-00-00','51298',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:41:49','','0000-00-00 00:00:00'),(5113,0,0,'I',1590,'I001590',2526,6,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 18:41:49','','0000-00-00 00:00:00'),(5114,0,0,'I',1590,'I001590',2526,7,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:41:49','','0000-00-00 00:00:00'),(5115,0,0,'I',1591,'I001591',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 18:42:29','','0000-00-00 00:00:00'),(5116,0,0,'I',1591,'I001591',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 18:42:29','','0000-00-00 00:00:00'),(5117,0,0,'I',1592,'I001592',2526,1,'0000-00-00','51389',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-19 18:44:43','drarchit','2025-11-19 18:45:15'),(5118,0,0,'I',1592,'I001592',2526,2,'0000-00-00','51544',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-19 18:45:15','','0000-00-00 00:00:00'),(5119,0,0,'I',1593,'I001593',2526,1,'0000-00-00','51228',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-19 18:49:55','','0000-00-00 00:00:00'),(5120,0,0,'I',1593,'I001593',2526,2,'0000-00-00','51347',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-11-19 18:49:55','','0000-00-00 00:00:00'),(5121,0,0,'I',1593,'I001593',2526,3,'0000-00-00','51353',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:49:55','','0000-00-00 00:00:00'),(5122,0,0,'I',1593,'I001593',2526,4,'0000-00-00','51286',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:49:55','','0000-00-00 00:00:00'),(5123,0,0,'I',1593,'I001593',2526,5,'0000-00-00','51324',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:49:55','','0000-00-00 00:00:00'),(5124,0,0,'I',1594,'I001594',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-19 18:52:34','','0000-00-00 00:00:00'),(5125,0,0,'I',1594,'I001594',2526,2,'0000-00-00','51352',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:52:34','','0000-00-00 00:00:00'),(5126,0,0,'I',1594,'I001594',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:52:34','','0000-00-00 00:00:00'),(5127,0,0,'I',1594,'I001594',2526,4,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-19 18:52:34','','0000-00-00 00:00:00'),(5128,0,0,'I',1595,'I001595',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 18:54:31','darshan','2025-11-19 18:54:59'),(5129,0,0,'I',1595,'I001595',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 18:54:31','darshan','2025-11-19 18:54:59'),(5131,0,0,'I',1596,'I001596',2526,1,'0000-00-00','51480',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-19 18:54:40','','0000-00-00 00:00:00'),(5132,0,0,'I',1596,'I001596',2526,2,'0000-00-00','51239',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 18:54:40','','0000-00-00 00:00:00'),(5133,0,0,'I',1597,'I001597',2526,1,'0000-00-00','51240',0,0,'TAB','','','','',0,30,0,0,0,0,'0.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:58:29','drarchit','2025-11-19 18:59:07'),(5134,0,0,'I',1597,'I001597',2526,2,'0000-00-00','51404',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:58:29','drarchit','2025-11-19 18:59:07'),(5135,0,0,'I',1597,'I001597',2526,3,'0000-00-00','51222',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:58:29','drarchit','2025-11-19 18:59:07'),(5136,0,0,'I',1597,'I001597',2526,4,'0000-00-00','51250',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:58:29','drarchit','2025-11-19 18:59:07'),(5137,0,0,'I',1597,'I001597',2526,5,'0000-00-00','51375',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-19 18:58:29','drarchit','2025-11-19 18:59:07'),(5138,0,0,'I',1597,'I001597',2526,6,'0000-00-00','51367',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:58:29','drarchit','2025-11-19 18:59:07'),(5139,0,0,'I',1597,'I001597',2526,7,'0000-00-00','51278',0,0,'CAP','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 18:58:52','drarchit','2025-11-19 18:59:07'),(5140,0,0,'I',1597,'I001597',2526,8,'0000-00-00','51361',0,0,'INJ','','','','',0,1,0,0,0,0,'','','Dy',1,0,0,0,0,0,0,0,0,0,'390','','P',NULL,NULL,'drarchit','2025-11-19 18:59:07','','0000-00-00 00:00:00'),(5141,0,0,'I',1598,'I001598',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 18:59:28','','0000-00-00 00:00:00'),(5142,0,0,'I',1599,'I001599',2526,1,'0000-00-00','51475',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-19 19:01:50','drarchit','2025-11-19 19:17:43'),(5143,0,0,'I',1599,'I001599',2526,2,'0000-00-00','51330',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 19:01:50','drarchit','2025-11-19 19:17:43'),(5144,0,0,'I',1599,'I001599',2526,3,'0000-00-00','51328',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:01:50','drarchit','2025-11-19 19:17:43'),(5145,0,0,'I',1600,'I001600',2526,1,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:03:32','','0000-00-00 00:00:00'),(5146,0,0,'I',1600,'I001600',2526,2,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:03:32','','0000-00-00 00:00:00'),(5147,0,0,'I',1600,'I001600',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 19:03:32','','0000-00-00 00:00:00'),(5148,0,0,'I',1600,'I001600',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:03:32','','0000-00-00 00:00:00'),(5149,0,0,'I',1600,'I001600',2526,5,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:03:32','','0000-00-00 00:00:00'),(5150,0,0,'I',1600,'I001600',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-19 19:03:32','','0000-00-00 00:00:00'),(5151,0,0,'I',1601,'I001601',2526,1,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:07:13','drarchit','2025-11-19 19:07:21'),(5152,0,0,'I',1601,'I001601',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 19:07:13','drarchit','2025-11-19 19:07:21'),(5153,0,0,'I',1601,'I001601',2526,3,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:07:13','drarchit','2025-11-19 19:07:21'),(5154,0,0,'I',1601,'I001601',2526,4,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:07:13','drarchit','2025-11-19 19:07:21'),(5155,0,0,'I',1601,'I001601',2526,5,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-11-19 19:07:13','drarchit','2025-11-19 19:07:21'),(5156,0,0,'I',1601,'I001601',2526,6,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:07:21','','0000-00-00 00:00:00'),(5157,0,0,'I',1602,'I001602',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 19:11:27','darshan','2025-11-19 19:11:39'),(5158,0,0,'I',1602,'I001602',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-19 19:11:27','darshan','2025-11-19 19:11:39'),(5159,0,0,'I',1603,'I001603',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-19 19:14:13','','0000-00-00 00:00:00'),(5160,0,0,'I',1603,'I001603',2526,2,'0000-00-00','51472',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-19 19:14:13','','0000-00-00 00:00:00'),(5161,0,0,'I',1603,'I001603',2526,3,'0000-00-00','51541',0,0,'TAB','','','','',0,3,0,0,0,0,'0-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:14:13','','0000-00-00 00:00:00'),(5162,0,0,'I',1604,'I001604',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 19:16:52','darshan','2025-11-19 19:17:00'),(5163,0,0,'I',1604,'I001604',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-19 19:16:52','darshan','2025-11-19 19:17:00'),(5164,0,0,'I',1604,'I001604',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-19 19:16:52','darshan','2025-11-19 19:17:00'),(5165,0,0,'I',1604,'I001604',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-19 19:16:52','darshan','2025-11-19 19:17:00'),(5167,0,0,'I',1605,'I001605',2526,1,'0000-00-00','51389',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-19 19:22:09','drarchit','2025-11-19 19:24:20'),(5168,0,0,'I',1605,'I001605',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-19 19:22:09','drarchit','2025-11-19 19:24:20'),(5169,0,0,'I',1605,'I001605',2526,3,'0000-00-00','51231',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:24:20','','0000-00-00 00:00:00'),(5170,0,0,'I',1605,'I001605',2526,4,'0000-00-00','51278',0,0,'CAP','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:24:20','','0000-00-00 00:00:00'),(5171,0,0,'I',1605,'I001605',2526,5,'0000-00-00','51406',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:24:20','','0000-00-00 00:00:00'),(5172,0,0,'I',1605,'I001605',2526,6,'0000-00-00','51383',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:24:20','','0000-00-00 00:00:00'),(5173,0,0,'I',1605,'I001605',2526,7,'0000-00-00','51290',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:24:20','','0000-00-00 00:00:00'),(5174,0,0,'I',1606,'I001606',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:28:30','drarchit','2025-11-19 19:29:27'),(5175,0,0,'I',1606,'I001606',2526,2,'0000-00-00','51230',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:28:30','drarchit','2025-11-19 19:29:27'),(5177,0,0,'I',1606,'I001606',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:29:06','drarchit','2025-11-19 19:29:27'),(5178,0,0,'I',1606,'I001606',2526,4,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-19 19:29:06','drarchit','2025-11-19 19:29:27'),(5179,0,0,'I',1606,'I001606',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-19 19:29:27','','0000-00-00 00:00:00'),(5180,0,0,'I',1606,'I001606',2526,6,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:29:27','','0000-00-00 00:00:00'),(5181,0,0,'I',1607,'I001607',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:33:06','','0000-00-00 00:00:00'),(5182,0,0,'I',1607,'I001607',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 19:33:06','','0000-00-00 00:00:00'),(5183,0,0,'I',1607,'I001607',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:33:06','','0000-00-00 00:00:00'),(5184,0,0,'I',1607,'I001607',2526,4,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-19 19:33:06','','0000-00-00 00:00:00'),(5185,0,0,'I',1607,'I001607',2526,5,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-11-19 19:33:06','','0000-00-00 00:00:00'),(5186,0,0,'I',1607,'I001607',2526,6,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:33:06','','0000-00-00 00:00:00'),(5187,0,0,'I',1608,'I001608',2526,1,'0000-00-00','51373',0,0,'CAP','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:36:21','drarchit','2025-11-19 19:36:52'),(5188,0,0,'I',1608,'I001608',2526,2,'0000-00-00','51396',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:36:52','','0000-00-00 00:00:00'),(5189,0,0,'I',1608,'I001608',2526,3,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:36:52','','0000-00-00 00:00:00'),(5190,0,0,'I',1608,'I001608',2526,4,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:36:52','','0000-00-00 00:00:00'),(5191,0,0,'I',1608,'I001608',2526,5,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:36:52','','0000-00-00 00:00:00'),(5192,0,0,'I',1608,'I001608',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-19 19:36:52','','0000-00-00 00:00:00'),(5193,0,0,'I',1609,'I001609',2526,1,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:42:16','','0000-00-00 00:00:00'),(5194,0,0,'I',1609,'I001609',2526,2,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:42:16','','0000-00-00 00:00:00'),(5195,0,0,'I',1610,'I001610',2526,1,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 19:44:58','drarchit','2025-11-19 19:45:36'),(5196,0,0,'I',1610,'I001610',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:44:58','drarchit','2025-11-19 19:45:36'),(5197,0,0,'I',1610,'I001610',2526,3,'0000-00-00','51273',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:44:58','drarchit','2025-11-19 19:45:36'),(5198,0,0,'I',1610,'I001610',2526,4,'0000-00-00','51269',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:45:36','','0000-00-00 00:00:00'),(5199,0,0,'I',1610,'I001610',2526,5,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:45:36','','0000-00-00 00:00:00'),(5200,0,0,'I',1610,'I001610',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-19 19:45:36','','0000-00-00 00:00:00'),(5201,0,0,'I',1610,'I001610',2526,7,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 19:45:36','','0000-00-00 00:00:00'),(5202,0,0,'I',1611,'I001611',2526,1,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 19:48:21','','0000-00-00 00:00:00'),(5203,0,0,'I',1611,'I001611',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:48:21','','0000-00-00 00:00:00'),(5204,0,0,'I',1612,'I001612',2526,1,'0000-00-00','51492',0,0,'INJ','','','','',0,1,0,0,0,0,'0-28-18','','Dy',0,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-19 19:54:49','drarchit','2025-11-19 19:57:15'),(5205,0,0,'I',1612,'I001612',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-19 19:54:49','drarchit','2025-11-19 19:57:15'),(5206,0,0,'I',1612,'I001612',2526,3,'0000-00-00','51353',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:54:49','drarchit','2025-11-19 19:57:15'),(5207,0,0,'I',1612,'I001612',2526,4,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-19 19:57:02','drarchit','2025-11-19 19:57:15'),(5208,0,0,'I',1612,'I001612',2526,5,'0000-00-00','51290',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 19:57:02','drarchit','2025-11-19 19:57:15'),(5209,0,0,'I',1612,'I001612',2526,6,'0000-00-00','51472',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-19 19:57:15','','0000-00-00 00:00:00'),(5210,0,0,'I',1613,'I001613',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-19 20:08:50','','0000-00-00 00:00:00'),(5211,0,0,'I',1613,'I001613',2526,2,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-19 20:08:50','','0000-00-00 00:00:00'),(5212,0,0,'I',1613,'I001613',2526,3,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 20:08:50','','0000-00-00 00:00:00'),(5213,0,0,'I',1614,'I001614',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 20:16:50','','0000-00-00 00:00:00'),(5214,0,0,'I',1614,'I001614',2526,2,'0000-00-00','51517',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 20:16:50','','0000-00-00 00:00:00'),(5215,0,0,'I',1614,'I001614',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 20:16:50','','0000-00-00 00:00:00'),(5216,0,0,'I',1614,'I001614',2526,4,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 20:16:50','','0000-00-00 00:00:00'),(5217,0,0,'I',1615,'I001615',2526,1,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 20:34:11','','0000-00-00 00:00:00'),(5218,0,0,'I',1615,'I001615',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 20:34:11','','0000-00-00 00:00:00'),(5219,0,0,'I',1615,'I001615',2526,3,'0000-00-00','51220',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 20:34:11','','0000-00-00 00:00:00'),(5220,0,0,'I',1615,'I001615',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-19 20:34:11','','0000-00-00 00:00:00'),(5221,0,0,'I',1615,'I001615',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-19 20:34:11','','0000-00-00 00:00:00'),(5222,0,0,'I',1616,'I001616',2526,1,'0000-00-00','51475',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-20 11:14:51','drarchit','2025-11-20 11:15:12'),(5223,0,0,'I',1616,'I001616',2526,2,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-20 11:14:51','drarchit','2025-11-20 11:15:12'),(5224,0,0,'I',1616,'I001616',2526,3,'0000-00-00','51370',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-20 11:14:51','drarchit','2025-11-20 11:15:12'),(5226,0,0,'I',1616,'I001616',2526,4,'0000-00-00','51518',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 11:15:12','','0000-00-00 00:00:00'),(5228,0,0,'I',1617,'I001617',2526,1,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-20 11:17:50','drarchit','2025-11-20 11:18:06'),(5229,0,0,'I',1617,'I001617',2526,2,'0000-00-00','51220',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 11:18:06','','0000-00-00 00:00:00'),(5230,0,0,'I',1617,'I001617',2526,3,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-20 11:18:06','','0000-00-00 00:00:00');
INSERT INTO `medicine_transaction` VALUES (5231,0,0,'I',1618,'I001618',2526,1,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 11:34:23','drarchit','2025-11-20 12:13:37'),(5232,0,0,'I',1618,'I001618',2526,2,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 11:34:23','drarchit','2025-11-20 12:13:37'),(5233,0,0,'I',1618,'I001618',2526,3,'0000-00-00','51375',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-20 11:34:23','drarchit','2025-11-20 12:13:37'),(5234,0,0,'I',1618,'I001618',2526,4,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 11:34:23','drarchit','2025-11-20 12:13:37'),(5235,0,0,'I',1618,'I001618',2526,5,'0000-00-00','51272',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-11-20 11:34:23','drarchit','2025-11-20 12:13:37'),(5236,0,0,'I',1619,'I001619',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 11:39:45','darshan','2025-11-20 11:41:11'),(5237,0,0,'I',1619,'I001619',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 11:39:45','darshan','2025-11-20 11:41:11'),(5239,0,0,'I',1620,'I001620',2526,1,'0000-00-00','51249',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 11:40:21','','0000-00-00 00:00:00'),(5240,0,0,'I',1620,'I001620',2526,2,'0000-00-00','51517',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 11:40:21','','0000-00-00 00:00:00'),(5241,0,0,'I',1620,'I001620',2526,3,'0000-00-00','51513',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 11:40:21','','0000-00-00 00:00:00'),(5242,0,0,'I',1620,'I001620',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 11:40:21','','0000-00-00 00:00:00'),(5243,0,0,'I',1619,'I001619',2526,3,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 11:41:11','','0000-00-00 00:00:00'),(5244,0,0,'I',1619,'I001619',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-20 11:41:11','','0000-00-00 00:00:00'),(5245,0,0,'I',1621,'I001621',2526,1,'0000-00-00','51223',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-20 11:43:20','drarchit','2025-11-20 11:48:08'),(5246,0,0,'I',1621,'I001621',2526,2,'0000-00-00','51309',0,0,'CAP','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 11:43:20','drarchit','2025-11-20 11:48:08'),(5247,0,0,'I',1621,'I001621',2526,3,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 11:43:20','drarchit','2025-11-20 11:48:08'),(5248,0,0,'I',1622,'I001622',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 11:45:54','darshan','2025-11-20 11:46:09'),(5249,0,0,'I',1622,'I001622',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 11:45:54','darshan','2025-11-20 11:46:09'),(5251,0,0,'I',1623,'I001623',2526,1,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-20 11:49:02','','0000-00-00 00:00:00'),(5252,0,0,'I',1623,'I001623',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-20 11:49:02','','0000-00-00 00:00:00'),(5253,0,0,'I',1623,'I001623',2526,3,'0000-00-00','51512',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-20 11:49:02','','0000-00-00 00:00:00'),(5255,0,0,'I',1624,'I001624',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 11:50:13','darshan','2025-11-20 11:50:35'),(5256,0,0,'I',1624,'I001624',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-20 11:50:35','','0000-00-00 00:00:00'),(5257,0,0,'I',1625,'I001625',2526,1,'0000-00-00','51368',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 11:54:32','','0000-00-00 00:00:00'),(5258,0,0,'I',1625,'I001625',2526,2,'0000-00-00','51538',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-20 11:54:32','','0000-00-00 00:00:00'),(5259,0,0,'I',1625,'I001625',2526,3,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-20 11:54:32','','0000-00-00 00:00:00'),(5260,0,0,'I',1626,'I001626',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 11:56:57','darshan','2025-11-20 11:57:15'),(5264,0,0,'I',1626,'I001626',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 11:56:57','darshan','2025-11-20 11:57:15'),(5267,0,0,'I',1627,'I001627',2526,1,'0000-00-00','51545',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 12:04:15','','0000-00-00 00:00:00'),(5268,0,0,'I',1627,'I001627',2526,2,'0000-00-00','51526',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 12:04:15','','0000-00-00 00:00:00'),(5269,0,0,'I',1627,'I001627',2526,3,'0000-00-00','51383',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 12:04:15','','0000-00-00 00:00:00'),(5270,0,0,'I',1627,'I001627',2526,4,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-20 12:04:15','','0000-00-00 00:00:00'),(5271,0,0,'I',1628,'I001628',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-20 12:07:29','drarchit','2025-11-20 12:09:52'),(5272,0,0,'I',1628,'I001628',2526,2,'0000-00-00','51346',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 12:07:29','drarchit','2025-11-20 12:09:52'),(5273,0,0,'I',1628,'I001628',2526,3,'0000-00-00','51214',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-20 12:07:29','drarchit','2025-11-20 12:09:52'),(5275,0,0,'I',1628,'I001628',2526,4,'0000-00-00','51290',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 12:07:29','drarchit','2025-11-20 12:09:52'),(5276,0,0,'I',1628,'I001628',2526,5,'0000-00-00','51546',0,0,'LOTION','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'drarchit','2025-11-20 12:08:45','drarchit','2025-11-20 12:09:52'),(5277,0,0,'I',1628,'I001628',2526,6,'0000-00-00','51505',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-20 12:08:45','drarchit','2025-11-20 12:09:52'),(5278,0,0,'I',1618,'I001618',2526,6,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 12:13:37','','0000-00-00 00:00:00'),(5279,0,0,'I',1618,'I001618',2526,7,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-20 12:13:37','','0000-00-00 00:00:00'),(5280,0,0,'I',1629,'I001629',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 12:14:09','','0000-00-00 00:00:00'),(5281,0,0,'I',1630,'I001630',2526,1,'0000-00-00','51373',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 12:21:31','drarchit','2025-11-20 12:21:59'),(5283,0,0,'I',1630,'I001630',2526,2,'0000-00-00','51396',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 12:21:31','drarchit','2025-11-20 12:21:59'),(5284,0,0,'I',1630,'I001630',2526,3,'0000-00-00','51262',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 12:21:31','drarchit','2025-11-20 12:21:59'),(5285,0,0,'I',1630,'I001630',2526,4,'0000-00-00','51249',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 12:21:59','','0000-00-00 00:00:00'),(5286,0,0,'I',1631,'I001631',2526,1,'0000-00-00','51487',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-20 12:30:08','drarchit','2025-11-20 12:31:36'),(5287,0,0,'I',1631,'I001631',2526,2,'0000-00-00','51230',0,0,'TAB','','','','',0,10,0,0,0,0,'0-1-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 12:30:08','drarchit','2025-11-20 12:31:36'),(5288,0,0,'I',1631,'I001631',2526,3,'0000-00-00','51232',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 12:31:14','drarchit','2025-11-20 12:31:36'),(5290,0,0,'I',1631,'I001631',2526,4,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 12:31:36','','0000-00-00 00:00:00'),(5291,0,0,'I',1632,'I001632',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 12:33:46','','0000-00-00 00:00:00'),(5292,0,0,'I',1632,'I001632',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 12:33:46','','0000-00-00 00:00:00'),(5293,0,0,'I',1632,'I001632',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-20 12:33:46','','0000-00-00 00:00:00'),(5294,0,0,'I',1633,'I001633',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 12:37:12','darshan','2025-11-20 12:37:47'),(5295,0,0,'I',1633,'I001633',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 12:37:47','','0000-00-00 00:00:00'),(5296,0,0,'I',1633,'I001633',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-20 12:37:47','','0000-00-00 00:00:00'),(5297,0,0,'I',1633,'I001633',2526,4,'0000-00-00','51322',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 12:37:47','','0000-00-00 00:00:00'),(5298,0,0,'I',1634,'I001634',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 12:41:18','','0000-00-00 00:00:00'),(5299,0,0,'I',1634,'I001634',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 12:41:18','','0000-00-00 00:00:00'),(5300,0,0,'I',1635,'I001635',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 12:52:08','','0000-00-00 00:00:00'),(5301,0,0,'I',1635,'I001635',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 12:52:08','','0000-00-00 00:00:00'),(5302,0,0,'I',1635,'I001635',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-20 12:52:08','','0000-00-00 00:00:00'),(5303,0,0,'I',1636,'I001636',2526,1,'0000-00-00','51366',0,0,'INJ','','','','',0,5,0,0,0,0,'','500MG ','Dy',5,0,0,0,0,0,0,0,0,0,'354','','P',NULL,NULL,'drarchit','2025-11-20 12:56:42','','0000-00-00 00:00:00'),(5304,0,0,'I',1636,'I001636',2526,2,'0000-00-00','51500',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 12:56:42','','0000-00-00 00:00:00'),(5305,0,0,'I',1636,'I001636',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-20 12:56:42','','0000-00-00 00:00:00'),(5306,0,0,'I',1637,'I001637',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 13:04:47','','0000-00-00 00:00:00'),(5307,0,0,'I',1637,'I001637',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-20 13:04:47','','0000-00-00 00:00:00'),(5308,0,0,'I',1637,'I001637',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 13:04:47','','0000-00-00 00:00:00'),(5309,0,0,'I',1637,'I001637',2526,4,'0000-00-00','51269',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 13:04:47','','0000-00-00 00:00:00'),(5310,0,0,'I',1637,'I001637',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-20 13:04:47','','0000-00-00 00:00:00'),(5311,0,0,'I',1638,'I001638',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 13:13:33','darshan','2025-11-20 13:14:15'),(5312,0,0,'I',1638,'I001638',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-20 13:13:33','darshan','2025-11-20 13:14:15'),(5314,0,0,'I',1638,'I001638',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 13:13:33','darshan','2025-11-20 13:14:15'),(5315,0,0,'I',1639,'I001639',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-20 13:16:05','drarchit','2025-11-20 13:16:53'),(5316,0,0,'I',1639,'I001639',2526,2,'0000-00-00','51492',0,0,'INJ','','','','',0,3,0,0,0,0,'24-0-12','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-20 13:16:05','drarchit','2025-11-20 13:16:53'),(5317,0,0,'I',1639,'I001639',2526,3,'0000-00-00','51407',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 13:16:05','drarchit','2025-11-20 13:16:53'),(5318,0,0,'I',1640,'I001640',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 13:19:22','','0000-00-00 00:00:00'),(5319,0,0,'I',1640,'I001640',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 13:19:22','','0000-00-00 00:00:00'),(5320,0,0,'I',1641,'I001641',2526,1,'0000-00-00','51257',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 13:28:20','','0000-00-00 00:00:00'),(5324,0,0,'I',1643,'I001643',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 13:36:35','darshan','2025-11-20 13:36:44'),(5325,0,0,'I',1643,'I001643',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 13:36:35','darshan','2025-11-20 13:36:44'),(5326,0,0,'I',1643,'I001643',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-20 13:36:44','','0000-00-00 00:00:00'),(5327,0,0,'I',1644,'I001644',2526,1,'0000-00-00','51304',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 13:37:37','','0000-00-00 00:00:00'),(5328,0,0,'I',1644,'I001644',2526,2,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-20 13:37:37','','0000-00-00 00:00:00'),(5329,0,0,'I',1644,'I001644',2526,3,'0000-00-00','51501',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-20 13:37:37','','0000-00-00 00:00:00'),(5330,0,0,'I',1645,'I001645',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,180,0,0,0,0,'0-1-0','','Dy',180,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 13:47:56','','0000-00-00 00:00:00'),(5331,0,0,'I',1645,'I001645',2526,2,'0000-00-00','51375',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-0','','Dy',180,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-20 13:47:56','','0000-00-00 00:00:00'),(5332,0,0,'I',1645,'I001645',2526,3,'0000-00-00','51243',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-0','','Dy',180,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-20 13:47:56','','0000-00-00 00:00:00'),(5333,0,0,'I',1645,'I001645',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,180,0,0,0,0,'1-0-0','','Dy',180,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-20 13:47:56','','0000-00-00 00:00:00'),(5334,0,0,'I',1646,'I001646',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 13:49:48','darshan','2025-11-20 13:51:04'),(5335,0,0,'I',1646,'I001646',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 13:49:48','darshan','2025-11-20 13:51:04'),(5336,0,0,'I',1646,'I001646',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-20 13:49:48','darshan','2025-11-20 13:51:04'),(5337,0,0,'I',1646,'I001646',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-20 13:51:04','','0000-00-00 00:00:00'),(5338,0,0,'I',1647,'I001647',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 13:54:32','','0000-00-00 00:00:00'),(5339,0,0,'I',1647,'I001647',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 13:54:32','','0000-00-00 00:00:00'),(5340,0,0,'I',1647,'I001647',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-20 13:54:32','','0000-00-00 00:00:00'),(5342,0,0,'I',1648,'I001648',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 14:01:30','darshan','2025-11-20 14:01:42'),(5343,0,0,'I',1648,'I001648',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 14:01:42','','0000-00-00 00:00:00'),(5344,0,0,'I',1649,'I001649',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 14:03:29','','0000-00-00 00:00:00'),(5345,0,0,'I',1649,'I001649',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-20 14:03:29','','0000-00-00 00:00:00'),(5346,0,0,'I',1649,'I001649',2526,3,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 14:03:29','','0000-00-00 00:00:00'),(5347,0,0,'I',1649,'I001649',2526,4,'0000-00-00','51300',0,0,'TAB','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'drarchit','2025-11-20 14:03:29','','0000-00-00 00:00:00'),(5348,0,0,'I',1650,'I001650',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 14:10:16','','0000-00-00 00:00:00'),(5349,0,0,'I',1650,'I001650',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 14:10:16','','0000-00-00 00:00:00'),(5350,0,0,'I',1650,'I001650',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 14:10:16','','0000-00-00 00:00:00'),(5351,0,0,'I',1650,'I001650',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-20 14:10:16','','0000-00-00 00:00:00'),(5352,0,0,'I',1650,'I001650',2526,5,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-20 14:10:16','','0000-00-00 00:00:00'),(5353,0,0,'I',1651,'I001651',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-20 14:15:55','darshan','2025-11-20 14:16:15'),(5354,0,0,'I',1651,'I001651',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 14:15:55','darshan','2025-11-20 14:16:15'),(5356,0,0,'I',1652,'I001652',2526,1,'0000-00-00','51353',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 14:16:37','drarchit','2025-11-20 14:18:14'),(5357,0,0,'I',1652,'I001652',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-20 14:16:37','drarchit','2025-11-20 14:18:14'),(5358,0,0,'I',1652,'I001652',2526,3,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 14:16:56','drarchit','2025-11-20 14:18:14'),(5359,0,0,'I',1652,'I001652',2526,4,'0000-00-00','51324',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 14:16:56','drarchit','2025-11-20 14:18:14'),(5360,0,0,'I',1652,'I001652',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-20 14:16:56','drarchit','2025-11-20 14:18:14'),(5361,0,0,'I',1652,'I001652',2526,6,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 14:17:57','drarchit','2025-11-20 14:18:14'),(5364,0,0,'I',1653,'I001653',2526,2,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-20 14:22:43','drarchit','2025-11-20 14:23:24'),(5365,0,0,'I',1653,'I001653',2526,3,'0000-00-00','51267',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 14:22:43','drarchit','2025-11-20 14:23:24'),(5366,0,0,'I',1653,'I001653',2526,4,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 14:22:43','drarchit','2025-11-20 14:23:24'),(5367,0,0,'I',1653,'I001653',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 14:22:43','drarchit','2025-11-20 14:23:24'),(5368,0,0,'I',1018,'I001018',2526,3,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 14:22:49','darshan','2025-11-20 14:23:18'),(5370,0,0,'I',1018,'I001018',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-20 14:23:18','','0000-00-00 00:00:00'),(5371,0,0,'I',1654,'I001654',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 14:27:46','','0000-00-00 00:00:00'),(5372,0,0,'I',1654,'I001654',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 14:27:46','','0000-00-00 00:00:00'),(5373,0,0,'I',1654,'I001654',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-20 14:27:46','','0000-00-00 00:00:00'),(5374,0,0,'I',1654,'I001654',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-20 14:27:46','','0000-00-00 00:00:00'),(5375,0,0,'I',1655,'I001655',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 17:23:10','','0000-00-00 00:00:00'),(5376,0,0,'I',1656,'I001656',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 17:27:08','','0000-00-00 00:00:00'),(5377,0,0,'I',1656,'I001656',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 17:27:08','','0000-00-00 00:00:00'),(5378,0,0,'I',1656,'I001656',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-11-20 17:27:08','','0000-00-00 00:00:00'),(5379,0,0,'I',1656,'I001656',2526,4,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 17:27:08','','0000-00-00 00:00:00'),(5380,0,0,'I',1657,'I001657',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 17:48:59','darshan','2025-11-20 19:13:50'),(5381,0,0,'I',1658,'I001658',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 17:53:59','darshan','2025-11-20 17:54:41'),(5382,0,0,'I',1658,'I001658',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-20 17:53:59','darshan','2025-11-20 17:54:41'),(5383,0,0,'I',1659,'I001659',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-20 17:58:11','','0000-00-00 00:00:00'),(5384,0,0,'I',1659,'I001659',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 17:58:11','','0000-00-00 00:00:00'),(5385,0,0,'I',1660,'I001660',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 18:07:06','','0000-00-00 00:00:00'),(5386,0,0,'I',1660,'I001660',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 18:07:06','','0000-00-00 00:00:00'),(5387,0,0,'I',1661,'I001661',2526,1,'0000-00-00','51242',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 18:18:44','','0000-00-00 00:00:00'),(5388,0,0,'I',1661,'I001661',2526,2,'0000-00-00','51273',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 18:18:44','','0000-00-00 00:00:00'),(5389,0,0,'I',1661,'I001661',2526,3,'0000-00-00','51236',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 18:18:44','','0000-00-00 00:00:00'),(5390,0,0,'I',1662,'I001662',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 18:19:25','darshan','2025-11-20 18:19:42'),(5391,0,0,'I',1662,'I001662',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 18:19:42','','0000-00-00 00:00:00'),(5392,0,0,'I',1662,'I001662',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-20 18:19:42','','0000-00-00 00:00:00'),(5393,0,0,'I',1664,'I001664',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 18:28:31','','0000-00-00 00:00:00'),(5394,0,0,'I',1664,'I001664',2526,2,'0000-00-00','51234',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-20 18:28:31','','0000-00-00 00:00:00'),(5395,0,0,'I',1663,'I001663',2526,7,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 18:29:41','drarchit','2025-11-20 18:30:48'),(5396,0,0,'I',1663,'I001663',2526,0,'0000-00-00','51280',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 18:29:41','drarchit','2025-11-20 18:30:48'),(5402,0,0,'I',1663,'I001663',2526,0,'0000-00-00','51304',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 18:30:32','drarchit','2025-11-20 18:30:48'),(5403,0,0,'I',1663,'I001663',2526,0,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-20 18:30:32','drarchit','2025-11-20 18:30:48'),(5404,0,0,'I',1663,'I001663',2526,0,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-20 18:30:32','drarchit','2025-11-20 18:30:48'),(5408,0,0,'I',1665,'I001665',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 18:31:29','darshan','2025-11-20 18:34:20'),(5409,0,0,'I',1665,'I001665',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 18:31:29','darshan','2025-11-20 18:34:20'),(5410,0,0,'I',1665,'I001665',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 18:31:29','darshan','2025-11-20 18:34:20'),(5411,0,0,'I',1665,'I001665',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-20 18:31:29','darshan','2025-11-20 18:34:20'),(5412,0,0,'I',1665,'I001665',2526,5,'0000-00-00','51547',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 18:34:20','','0000-00-00 00:00:00'),(5413,0,0,'I',1665,'I001665',2526,6,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-20 18:34:20','','0000-00-00 00:00:00'),(5414,0,0,'I',1666,'I001666',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 18:35:59','drarchit','2025-11-20 18:36:34'),(5415,0,0,'I',1666,'I001666',2526,2,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 18:35:59','drarchit','2025-11-20 18:36:34'),(5416,0,0,'I',1666,'I001666',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 18:35:59','drarchit','2025-11-20 18:36:34'),(5417,0,0,'I',1666,'I001666',2526,6,'0000-00-00','51487',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-20 18:35:59','drarchit','2025-11-20 18:36:34'),(5418,0,0,'I',1666,'I001666',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-20 18:36:34','','0000-00-00 00:00:00'),(5419,0,0,'I',1666,'I001666',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-20 18:36:34','','0000-00-00 00:00:00'),(5420,0,0,'I',1667,'I001667',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 18:40:30','','0000-00-00 00:00:00'),(5421,0,0,'I',1668,'I001668',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 18:44:56','darshan','2025-11-20 18:46:22'),(5422,0,0,'I',1668,'I001668',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 18:44:56','darshan','2025-11-20 18:46:22'),(5423,0,0,'I',1668,'I001668',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 18:44:56','darshan','2025-11-20 18:46:22'),(5425,0,0,'I',1669,'I001669',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 18:59:28','','0000-00-00 00:00:00'),(5426,0,0,'I',1669,'I001669',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 18:59:28','','0000-00-00 00:00:00'),(5427,0,0,'I',1669,'I001669',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 18:59:28','','0000-00-00 00:00:00'),(5428,0,0,'I',1670,'I001670',2526,1,'0000-00-00','51273',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 18:59:33','drarchit','2025-11-20 18:59:48'),(5429,0,0,'I',1670,'I001670',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-20 18:59:33','drarchit','2025-11-20 18:59:48'),(5430,0,0,'I',1670,'I001670',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 18:59:33','drarchit','2025-11-20 18:59:48'),(5431,0,0,'I',1670,'I001670',2526,4,'0000-00-00','51262',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 18:59:33','drarchit','2025-11-20 18:59:48'),(5432,0,0,'I',1671,'I001671',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-20 19:01:53','darshan','2025-11-20 19:02:34'),(5433,0,0,'I',1671,'I001671',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 19:01:53','darshan','2025-11-20 19:02:34'),(5434,0,0,'I',1671,'I001671',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 19:01:53','darshan','2025-11-20 19:02:34'),(5438,0,0,'I',1672,'I001672',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 19:05:04','darshan','2025-11-20 19:05:48'),(5441,0,0,'I',1673,'I001673',2526,1,'0000-00-00','51545',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 19:10:17','drarchit','2025-11-20 19:11:03'),(5442,0,0,'I',1673,'I001673',2526,2,'0000-00-00','51548',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 19:11:03','','0000-00-00 00:00:00'),(5443,0,0,'I',1673,'I001673',2526,3,'0000-00-00','51481',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-20 19:11:03','','0000-00-00 00:00:00'),(5444,0,0,'I',1657,'I001657',2526,2,'0000-00-00','51219',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'darshan','2025-11-20 19:13:50','','0000-00-00 00:00:00'),(5445,0,0,'I',1657,'I001657',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-20 19:13:50','','0000-00-00 00:00:00'),(5446,0,0,'I',1674,'I001674',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 19:17:53','','0000-00-00 00:00:00'),(5447,0,0,'I',1674,'I001674',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 19:17:53','','0000-00-00 00:00:00'),(5448,0,0,'I',1674,'I001674',2526,3,'0000-00-00','51322',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 19:17:53','','0000-00-00 00:00:00'),(5450,0,0,'I',1675,'I001675',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 19:20:49','darshan','2025-11-20 19:21:35'),(5453,0,0,'I',1675,'I001675',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 19:21:35','','0000-00-00 00:00:00'),(5454,0,0,'I',1676,'I001676',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 19:27:03','','0000-00-00 00:00:00'),(5455,0,0,'I',1676,'I001676',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 19:27:03','','0000-00-00 00:00:00'),(5456,0,0,'I',1677,'I001677',2526,1,'0000-00-00','51440',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 19:30:09','drarchit','2025-11-20 19:30:24'),(5457,0,0,'I',1677,'I001677',2526,2,'0000-00-00','51239',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-20 19:30:09','drarchit','2025-11-20 19:30:24'),(5460,0,0,'I',1678,'I001678',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 19:38:44','','0000-00-00 00:00:00'),(5461,0,0,'I',1678,'I001678',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 19:38:44','','0000-00-00 00:00:00'),(5462,0,0,'I',1678,'I001678',2526,3,'0000-00-00','51198',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 19:38:44','','0000-00-00 00:00:00'),(5463,0,0,'I',1678,'I001678',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-20 19:38:44','','0000-00-00 00:00:00'),(5464,0,0,'I',1679,'I001679',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 19:46:54','darshan','2025-11-20 19:48:03'),(5465,0,0,'I',1679,'I001679',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 19:46:54','darshan','2025-11-20 19:48:03'),(5466,0,0,'I',1679,'I001679',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 19:48:03','','0000-00-00 00:00:00'),(5467,0,0,'I',1680,'I001680',2526,1,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-20 20:10:31','','0000-00-00 00:00:00'),(5468,0,0,'I',1680,'I001680',2526,2,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 20:10:31','','0000-00-00 00:00:00'),(5469,0,0,'I',1680,'I001680',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-20 20:10:31','','0000-00-00 00:00:00'),(5470,0,0,'I',1681,'I001681',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 20:34:35','','0000-00-00 00:00:00'),(5471,0,0,'I',1681,'I001681',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-20 20:34:35','','0000-00-00 00:00:00'),(5472,0,0,'I',1682,'I001682',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 10:52:35','darshan','2025-11-21 10:53:08'),(5473,0,0,'I',1682,'I001682',2526,2,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 10:52:35','darshan','2025-11-21 10:53:08'),(5475,0,0,'I',1682,'I001682',2526,3,'0000-00-00','51219',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'darshan','2025-11-21 10:53:08','','0000-00-00 00:00:00'),(5476,0,0,'I',1683,'I001683',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-21 11:19:35','','0000-00-00 00:00:00'),(5477,0,0,'I',1683,'I001683',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 11:19:35','','0000-00-00 00:00:00'),(5478,0,0,'I',1683,'I001683',2526,3,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 11:19:35','','0000-00-00 00:00:00'),(5479,0,0,'I',1684,'I001684',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-21 11:42:44','darshan','2025-11-21 13:19:11'),(5480,0,0,'I',1684,'I001684',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,50,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-21 11:42:44','darshan','2025-11-21 13:19:11'),(5481,0,0,'I',1684,'I001684',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 11:42:44','darshan','2025-11-21 13:19:11'),(5483,0,0,'I',1685,'I001685',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 11:50:44','darshan','2025-11-21 11:50:54'),(5484,0,0,'I',1685,'I001685',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 11:50:54','','0000-00-00 00:00:00'),(5485,0,0,'I',1686,'I001686',2526,1,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 11:54:10','','0000-00-00 00:00:00'),(5486,0,0,'I',1687,'I001687',2526,1,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 11:58:16','drarchit','2025-11-21 11:59:40'),(5487,0,0,'I',1687,'I001687',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 11:58:36','drarchit','2025-11-21 11:59:40'),(5488,0,0,'I',1687,'I001687',2526,3,'0000-00-00','51538',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-21 11:58:36','drarchit','2025-11-21 11:59:40'),(5489,0,0,'I',1687,'I001687',2526,4,'0000-00-00','51549',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 11:59:40','','0000-00-00 00:00:00'),(5490,0,0,'I',1688,'I001688',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-21 12:03:35','drarchit','2025-11-21 12:04:37'),(5491,0,0,'I',1688,'I001688',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:03:35','drarchit','2025-11-21 12:04:37'),(5492,0,0,'I',1688,'I001688',2526,3,'0000-00-00','51505',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-21 12:03:35','drarchit','2025-11-21 12:04:37'),(5494,0,0,'I',1688,'I001688',2526,4,'0000-00-00','51550',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-21 12:04:37','','0000-00-00 00:00:00'),(5495,0,0,'I',1689,'I001689',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:14:50','darshan','2025-11-21 12:15:17'),(5496,0,0,'I',1689,'I001689',2526,2,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:14:50','darshan','2025-11-21 12:15:17'),(5497,0,0,'I',1689,'I001689',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:14:50','darshan','2025-11-21 12:15:17'),(5498,0,0,'I',1689,'I001689',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:14:50','darshan','2025-11-21 12:15:17'),(5499,0,0,'I',1689,'I001689',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,0,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-21 12:14:50','darshan','2025-11-21 12:15:17'),(5500,0,0,'I',1690,'I001690',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:17:53','darshan','2025-11-21 12:18:31'),(5501,0,0,'I',1690,'I001690',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:17:53','darshan','2025-11-21 12:18:31'),(5502,0,0,'I',1690,'I001690',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:18:31','','0000-00-00 00:00:00'),(5503,0,0,'I',1690,'I001690',2526,4,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:18:31','','0000-00-00 00:00:00'),(5504,0,0,'I',1691,'I001691',2526,1,'0000-00-00','51321',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:19:01','drarchit','2025-11-21 12:20:05'),(5505,0,0,'I',1691,'I001691',2526,2,'0000-00-00','51379',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:19:58','drarchit','2025-11-21 12:20:05'),(5506,0,0,'I',1691,'I001691',2526,3,'0000-00-00','51362',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-21 12:19:58','drarchit','2025-11-21 12:20:05'),(5507,0,0,'I',1691,'I001691',2526,4,'0000-00-00','51501',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-21 12:19:58','drarchit','2025-11-21 12:20:05'),(5508,0,0,'I',1691,'I001691',2526,5,'0000-00-00','51253',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-21 12:20:05','','0000-00-00 00:00:00'),(5509,0,0,'I',1692,'I001692',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:21:45','','0000-00-00 00:00:00'),(5510,0,0,'I',1692,'I001692',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:21:45','','0000-00-00 00:00:00'),(5511,0,0,'I',1692,'I001692',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-21 12:21:45','','0000-00-00 00:00:00'),(5512,0,0,'I',1692,'I001692',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-21 12:21:45','','0000-00-00 00:00:00'),(5513,0,0,'I',1693,'I001693',2526,1,'0000-00-00','51230',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:23:19','drarchit','2025-11-21 12:24:25'),(5514,0,0,'I',1694,'I001694',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:24:12','','0000-00-00 00:00:00'),(5515,0,0,'I',1694,'I001694',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-21 12:24:12','','0000-00-00 00:00:00'),(5517,0,0,'I',1693,'I001693',2526,2,'0000-00-00','51298',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:24:17','drarchit','2025-11-21 12:24:25'),(5518,0,0,'I',1693,'I001693',2526,3,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:24:17','drarchit','2025-11-21 12:24:25'),(5519,0,0,'I',1693,'I001693',2526,4,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-11-21 12:24:17','drarchit','2025-11-21 12:24:25'),(5520,0,0,'I',1693,'I001693',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-21 12:24:17','drarchit','2025-11-21 12:24:25'),(5521,0,0,'I',1693,'I001693',2526,6,'0000-00-00','51297',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:24:17','drarchit','2025-11-21 12:24:25'),(5522,0,0,'I',1695,'I001695',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:27:57','','0000-00-00 00:00:00'),(5523,0,0,'I',1695,'I001695',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:27:57','','0000-00-00 00:00:00'),(5524,0,0,'I',1695,'I001695',2526,3,'0000-00-00','51230',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:27:57','','0000-00-00 00:00:00'),(5525,0,0,'I',1695,'I001695',2526,4,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-11-21 12:27:57','','0000-00-00 00:00:00'),(5526,0,0,'I',1695,'I001695',2526,5,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:27:57','','0000-00-00 00:00:00'),(5527,0,0,'I',1695,'I001695',2526,6,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-21 12:27:57','','0000-00-00 00:00:00'),(5528,0,0,'I',1696,'I001696',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:28:30','','0000-00-00 00:00:00'),(5529,0,0,'I',1696,'I001696',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,25,0,0,0,0,'1-0-0','','Dy',50,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-21 12:28:30','','0000-00-00 00:00:00'),(5530,0,0,'I',1697,'I001697',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:34:58','','0000-00-00 00:00:00'),(5531,0,0,'I',1697,'I001697',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:34:58','','0000-00-00 00:00:00'),(5532,0,0,'I',1697,'I001697',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-21 12:34:58','','0000-00-00 00:00:00'),(5533,0,0,'I',1698,'I001698',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,100,0,0,0,0,'.5-0-.5','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:38:07','','0000-00-00 00:00:00'),(5534,0,0,'I',1698,'I001698',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:38:07','','0000-00-00 00:00:00'),(5535,0,0,'I',1698,'I001698',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-21 12:38:07','','0000-00-00 00:00:00'),(5536,0,0,'I',1698,'I001698',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-21 12:38:07','','0000-00-00 00:00:00'),(5537,0,0,'I',1699,'I001699',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-21 12:38:35','','0000-00-00 00:00:00'),(5538,0,0,'I',1699,'I001699',2526,2,'0000-00-00','51214',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-11-21 12:38:35','','0000-00-00 00:00:00'),(5539,0,0,'I',1699,'I001699',2526,3,'0000-00-00','51324',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:38:35','','0000-00-00 00:00:00'),(5540,0,0,'I',1699,'I001699',2526,4,'0000-00-00','51244',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:38:35','','0000-00-00 00:00:00'),(5541,0,0,'I',1700,'I001700',2526,1,'0000-00-00','51237',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:48:15','drarchit','2025-11-21 12:50:44'),(5543,0,0,'I',1700,'I001700',2526,3,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:48:15','drarchit','2025-11-21 12:50:44'),(5545,0,0,'I',1701,'I001701',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:49:18','darshan','2025-11-21 12:49:31'),(5546,0,0,'I',1701,'I001701',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:49:18','darshan','2025-11-21 12:49:31'),(5547,0,0,'I',1701,'I001701',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 12:49:18','darshan','2025-11-21 12:49:31'),(5548,0,0,'I',1701,'I001701',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-21 12:49:31','','0000-00-00 00:00:00'),(5549,0,0,'I',1700,'I001700',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-21 12:50:44','','0000-00-00 00:00:00'),(5550,0,0,'I',1700,'I001700',2526,4,'0000-00-00','51553',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:50:44','','0000-00-00 00:00:00'),(5551,0,0,'I',1700,'I001700',2526,5,'0000-00-00','51554',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:50:44','','0000-00-00 00:00:00'),(5552,0,0,'I',1702,'I001702',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:59:42','drarchit','2025-11-21 12:59:59'),(5553,0,0,'I',1702,'I001702',2526,2,'0000-00-00','51341',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:59:42','drarchit','2025-11-21 12:59:59'),(5554,0,0,'I',1702,'I001702',2526,3,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-21 12:59:42','drarchit','2025-11-21 12:59:59'),(5556,0,0,'I',1702,'I001702',2526,4,'0000-00-00','51412',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:59:42','drarchit','2025-11-21 12:59:59'),(5557,0,0,'I',1702,'I001702',2526,5,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 12:59:42','drarchit','2025-11-21 12:59:59'),(5558,0,0,'I',1702,'I001702',2526,6,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-21 12:59:59','','0000-00-00 00:00:00'),(5559,0,0,'I',1703,'I001703',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 13:00:44','darshan','2025-11-21 13:01:14'),(5560,0,0,'I',1703,'I001703',2526,2,'0000-00-00','51334',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 13:00:44','darshan','2025-11-21 13:01:14'),(5561,0,0,'I',1703,'I001703',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,5,0,0,0,0,'.5-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 13:01:14','','0000-00-00 00:00:00'),(5562,0,0,'I',1703,'I001703',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-21 13:01:14','','0000-00-00 00:00:00'),(5563,0,0,'I',1704,'I001704',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 13:06:34','','0000-00-00 00:00:00'),(5564,0,0,'I',1704,'I001704',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 13:06:34','','0000-00-00 00:00:00'),(5565,0,0,'I',1704,'I001704',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 13:06:34','','0000-00-00 00:00:00'),(5566,0,0,'I',1705,'I001705',2526,1,'0000-00-00','51558',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 13:13:34','','0000-00-00 00:00:00'),(5567,0,0,'I',1705,'I001705',2526,2,'0000-00-00','51239',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-21 13:13:34','','0000-00-00 00:00:00'),(5568,0,0,'I',1705,'I001705',2526,3,'0000-00-00','51435',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-21 13:13:34','','0000-00-00 00:00:00'),(5569,0,0,'I',1705,'I001705',2526,4,'0000-00-00','51557',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 13:13:34','','0000-00-00 00:00:00'),(5570,0,0,'I',1705,'I001705',2526,5,'0000-00-00','51559',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 13:13:34','','0000-00-00 00:00:00'),(5571,0,0,'I',1705,'I001705',2526,6,'0000-00-00','51556',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 13:13:34','','0000-00-00 00:00:00'),(5572,0,0,'I',1706,'I001706',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-21 13:18:27','drarchit','2025-11-21 13:19:46'),(5573,0,0,'I',1706,'I001706',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 13:18:27','drarchit','2025-11-21 13:19:46'),(5574,0,0,'I',1706,'I001706',2526,3,'0000-00-00','51236',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 13:18:27','drarchit','2025-11-21 13:19:46'),(5576,0,0,'I',1706,'I001706',2526,4,'0000-00-00','51217',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 13:18:27','drarchit','2025-11-21 13:19:46'),(5577,0,0,'I',1706,'I001706',2526,5,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-21 13:19:46','','0000-00-00 00:00:00'),(5578,0,0,'I',1706,'I001706',2526,6,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 13:19:46','','0000-00-00 00:00:00'),(5579,0,0,'I',1706,'I001706',2526,7,'0000-00-00','51244',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 13:19:46','','0000-00-00 00:00:00'),(5580,0,0,'I',1706,'I001706',2526,8,'0000-00-00','51436',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 13:19:46','','0000-00-00 00:00:00'),(5581,0,0,'I',1707,'I001707',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-21 13:22:55','','0000-00-00 00:00:00'),(5582,0,0,'I',1707,'I001707',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 13:22:55','','0000-00-00 00:00:00'),(5583,0,0,'I',1708,'I001708',2526,1,'0000-00-00','51415',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 13:28:16','','0000-00-00 00:00:00'),(5584,0,0,'I',1708,'I001708',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 13:28:16','','0000-00-00 00:00:00'),(5585,0,0,'I',1708,'I001708',2526,3,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 13:28:16','','0000-00-00 00:00:00'),(5586,0,0,'I',1709,'I001709',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 13:31:47','','0000-00-00 00:00:00'),(5587,0,0,'I',1709,'I001709',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 13:31:47','','0000-00-00 00:00:00'),(5588,0,0,'I',1710,'I001710',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-21 13:34:55','drarchit','2025-11-21 13:36:11'),(5589,0,0,'I',1710,'I001710',2526,2,'0000-00-00','51273',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 13:35:23','drarchit','2025-11-21 13:36:11'),(5590,0,0,'I',1710,'I001710',2526,3,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-21 13:35:23','drarchit','2025-11-21 13:36:11'),(5591,0,0,'I',1710,'I001710',2526,4,'0000-00-00','51560',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 13:36:11','','0000-00-00 00:00:00'),(5592,0,0,'I',1711,'I001711',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 13:51:44','','0000-00-00 00:00:00'),(5593,0,0,'I',1711,'I001711',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 13:51:44','','0000-00-00 00:00:00'),(5594,0,0,'I',1711,'I001711',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 13:51:44','','0000-00-00 00:00:00'),(5595,0,0,'I',1712,'I001712',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 17:19:30','','0000-00-00 00:00:00'),(5596,0,0,'I',1712,'I001712',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 17:19:30','','0000-00-00 00:00:00'),(5597,0,0,'I',1712,'I001712',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',120,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-21 17:19:30','','0000-00-00 00:00:00'),(5598,0,0,'I',1712,'I001712',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',120,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-21 17:19:30','','0000-00-00 00:00:00'),(5599,0,0,'I',1713,'I001713',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 17:49:23','','0000-00-00 00:00:00'),(5600,0,0,'I',1713,'I001713',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 17:49:23','','0000-00-00 00:00:00'),(5601,0,0,'I',1714,'I001714',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 18:01:38','darshan','2025-11-21 18:02:47'),(5602,0,0,'I',1714,'I001714',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 18:01:38','darshan','2025-11-21 18:02:47'),(5603,0,0,'I',1714,'I001714',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 18:01:38','darshan','2025-11-21 18:02:47'),(5605,0,0,'I',1714,'I001714',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 18:02:47','','0000-00-00 00:00:00'),(5606,0,0,'I',1715,'I001715',2526,1,'0000-00-00','51545',0,0,'TAB','','','','',0,240,0,0,0,0,'1-0-1','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 18:08:41','drarchit','2025-11-21 18:09:17'),(5607,0,0,'I',1715,'I001715',2526,2,'0000-00-00','51304',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 18:09:17','','0000-00-00 00:00:00'),(5608,0,0,'I',1716,'I001716',2526,1,'0000-00-00','51521',0,0,'TAB','','','','',0,180,0,0,0,0,'0-0-1','','Dy',180,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 18:15:44','','0000-00-00 00:00:00'),(5609,0,0,'I',1717,'I001717',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 18:18:03','darshan','2025-11-21 18:18:20'),(5610,0,0,'I',1717,'I001717',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-21 18:18:20','','0000-00-00 00:00:00'),(5611,0,0,'I',1718,'I001718',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 18:22:30','','0000-00-00 00:00:00'),(5612,0,0,'I',1718,'I001718',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 18:22:30','','0000-00-00 00:00:00'),(5613,0,0,'I',1718,'I001718',2526,3,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 18:22:30','','0000-00-00 00:00:00'),(5614,0,0,'I',1719,'I001719',2526,1,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 18:28:11','','0000-00-00 00:00:00'),(5615,0,0,'I',1719,'I001719',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-21 18:28:11','','0000-00-00 00:00:00'),(5616,0,0,'I',1719,'I001719',2526,3,'0000-00-00','51473',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-21 18:28:11','','0000-00-00 00:00:00'),(5617,0,0,'I',1720,'I001720',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 18:32:48','','0000-00-00 00:00:00'),(5618,0,0,'I',1720,'I001720',2526,2,'0000-00-00','51287',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-21 18:32:48','','0000-00-00 00:00:00'),(5619,0,0,'I',1720,'I001720',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-21 18:32:48','','0000-00-00 00:00:00'),(5620,0,0,'I',1721,'I001721',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 18:49:08','','0000-00-00 00:00:00'),(5621,0,0,'I',1721,'I001721',2526,2,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 18:49:08','','0000-00-00 00:00:00'),(5622,0,0,'I',1721,'I001721',2526,3,'0000-00-00','51432',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 18:49:08','','0000-00-00 00:00:00'),(5623,0,0,'I',1721,'I001721',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-21 18:49:08','','0000-00-00 00:00:00'),(5624,0,0,'I',1722,'I001722',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 18:50:51','darshan','2025-11-21 18:51:16'),(5625,0,0,'I',1722,'I001722',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-21 18:50:51','darshan','2025-11-21 18:51:16'),(5626,0,0,'I',1722,'I001722',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 18:50:51','darshan','2025-11-21 18:51:16'),(5627,0,0,'I',1723,'I001723',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 18:53:13','darshan','2025-11-21 18:53:33'),(5628,0,0,'I',1723,'I001723',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 18:53:13','darshan','2025-11-21 18:53:33'),(5629,0,0,'I',1723,'I001723',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 18:53:13','darshan','2025-11-21 18:53:33'),(5631,0,0,'I',1724,'I001724',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 18:58:18','','0000-00-00 00:00:00'),(5632,0,0,'I',1724,'I001724',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 18:58:18','','0000-00-00 00:00:00'),(5633,0,0,'I',1724,'I001724',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 18:58:18','','0000-00-00 00:00:00'),(5634,0,0,'I',1724,'I001724',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-21 18:58:18','','0000-00-00 00:00:00'),(5635,0,0,'I',1725,'I001725',2526,1,'0000-00-00','51310',0,0,'CAP','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:03:04','drarchit','2025-11-21 19:03:42'),(5636,0,0,'I',1725,'I001725',2526,2,'0000-00-00','51231',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:03:04','drarchit','2025-11-21 19:03:42'),(5637,0,0,'I',1725,'I001725',2526,3,'0000-00-00','51519',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:03:04','drarchit','2025-11-21 19:03:42'),(5638,0,0,'I',1725,'I001725',2526,4,'0000-00-00','51223',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-21 19:03:04','drarchit','2025-11-21 19:03:42'),(5639,0,0,'I',1725,'I001725',2526,5,'0000-00-00','51261',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:03:42','','0000-00-00 00:00:00'),(5640,0,0,'I',1725,'I001725',2526,6,'0000-00-00','51341',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:03:42','','0000-00-00 00:00:00'),(5642,0,0,'I',1726,'I001726',2526,1,'0000-00-00','51215',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 19:04:17','darshan','2025-11-21 19:04:48'),(5644,0,0,'I',1726,'I001726',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 19:04:17','darshan','2025-11-21 19:04:48'),(5646,0,0,'I',1727,'I001727',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 19:08:01','darshan','2025-11-21 19:08:30'),(5647,0,0,'I',1727,'I001727',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-21 19:08:01','darshan','2025-11-21 19:08:30'),(5648,0,0,'I',1642,'I001642',2526,1,'0000-00-00','51498',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:09:20','','0000-00-00 00:00:00'),(5649,0,0,'I',1642,'I001642',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-21 19:09:20','','0000-00-00 00:00:00'),(5650,0,0,'I',1642,'I001642',2526,3,'0000-00-00','51269',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:09:20','','0000-00-00 00:00:00'),(5651,0,0,'I',1642,'I001642',2526,4,'0000-00-00','51372',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:09:20','','0000-00-00 00:00:00'),(5652,0,0,'I',1728,'I001728',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-21 19:15:54','drarchit','2025-11-21 19:16:44'),(5653,0,0,'I',1728,'I001728',2526,2,'0000-00-00','51214',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-11-21 19:15:54','drarchit','2025-11-21 19:16:44'),(5654,0,0,'I',1728,'I001728',2526,3,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:16:44','','0000-00-00 00:00:00'),(5655,0,0,'I',1728,'I001728',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-21 19:16:44','','0000-00-00 00:00:00'),(5656,0,0,'I',1729,'I001729',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 19:21:38','','0000-00-00 00:00:00'),(5657,0,0,'I',1729,'I001729',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 19:21:38','','0000-00-00 00:00:00'),(5658,0,0,'I',1730,'I001730',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 19:26:33','darshan','2025-11-21 19:30:17'),(5659,0,0,'I',1730,'I001730',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 19:26:33','darshan','2025-11-21 19:30:17'),(5660,0,0,'I',1730,'I001730',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 19:26:33','darshan','2025-11-21 19:30:17'),(5661,0,0,'I',1730,'I001730',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-21 19:26:33','darshan','2025-11-21 19:30:17'),(5662,0,0,'I',1730,'I001730',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-21 19:30:17','','0000-00-00 00:00:00'),(5663,0,0,'I',1731,'I001731',2526,1,'0000-00-00','51352',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:34:41','','0000-00-00 00:00:00'),(5664,0,0,'I',1731,'I001731',2526,2,'0000-00-00','51530',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-21 19:34:41','','0000-00-00 00:00:00'),(5665,0,0,'I',1732,'I001732',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:39:46','drarchit','2025-11-21 19:40:53'),(5666,0,0,'I',1732,'I001732',2526,2,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:39:46','drarchit','2025-11-21 19:40:53'),(5667,0,0,'I',1732,'I001732',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:40:47','drarchit','2025-11-21 19:40:53'),(5668,0,0,'I',1732,'I001732',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:40:47','drarchit','2025-11-21 19:40:53'),(5669,0,0,'I',1733,'I001733',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:45:53','drarchit','2025-11-21 19:48:36'),(5670,0,0,'I',1733,'I001733',2526,2,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-21 19:45:53','drarchit','2025-11-21 19:48:36'),(5671,0,0,'I',1733,'I001733',2526,3,'0000-00-00','51308',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-21 19:45:53','drarchit','2025-11-21 19:48:36'),(5672,0,0,'I',1733,'I001733',2526,4,'0000-00-00','51214',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-21 19:45:53','drarchit','2025-11-21 19:48:36'),(5673,0,0,'I',1733,'I001733',2526,5,'0000-00-00','51240',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:47:42','drarchit','2025-11-21 19:48:36'),(5674,0,0,'I',1733,'I001733',2526,6,'0000-00-00','51536',0,0,'TAB','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:47:42','drarchit','2025-11-21 19:48:36'),(5675,0,0,'I',1733,'I001733',2526,7,'0000-00-00','51516',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:47:42','drarchit','2025-11-21 19:48:36'),(5676,0,0,'I',1733,'I001733',2526,8,'0000-00-00','51230',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:47:42','drarchit','2025-11-21 19:48:36'),(5678,0,0,'I',1733,'I001733',2526,9,'0000-00-00','51480',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-21 19:48:18','drarchit','2025-11-21 19:48:36'),(5679,0,0,'I',1734,'I001734',2526,1,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 19:49:16','darshan','2025-11-21 19:49:29'),(5680,0,0,'I',1734,'I001734',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 19:49:16','darshan','2025-11-21 19:49:29'),(5681,0,0,'I',1734,'I001734',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-21 19:49:16','darshan','2025-11-21 19:49:29'),(5682,0,0,'I',1734,'I001734',2526,4,'0000-00-00','51271',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-21 19:49:29','','0000-00-00 00:00:00'),(5683,0,0,'I',1735,'I001735',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:55:09','drarchit','2025-11-21 19:55:20'),(5684,0,0,'I',1735,'I001735',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-21 19:55:09','drarchit','2025-11-21 19:55:20'),(5685,0,0,'I',1735,'I001735',2526,3,'0000-00-00','51487',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-21 19:55:09','drarchit','2025-11-21 19:55:20'),(5686,0,0,'I',1735,'I001735',2526,4,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:55:09','drarchit','2025-11-21 19:55:20'),(5687,0,0,'I',1735,'I001735',2526,5,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-11-21 19:55:09','drarchit','2025-11-21 19:55:20'),(5688,0,0,'I',1735,'I001735',2526,6,'0000-00-00','51403',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:55:09','drarchit','2025-11-21 19:55:20'),(5689,0,0,'I',1735,'I001735',2526,7,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-21 19:55:20','','0000-00-00 00:00:00'),(5690,0,0,'I',1736,'I001736',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,150,0,0,0,0,'1-0-1','','Dy',75,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 10:44:12','','0000-00-00 00:00:00'),(5691,0,0,'I',1737,'I001737',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 10:46:39','darshan','2025-11-22 10:47:01'),(5692,0,0,'I',1737,'I001737',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-22 10:46:39','darshan','2025-11-22 10:47:01'),(5693,0,0,'I',1737,'I001737',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 10:46:39','darshan','2025-11-22 10:47:01'),(5694,0,0,'I',1738,'I001738',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-22 10:51:03','','0000-00-00 00:00:00'),(5695,0,0,'I',1738,'I001738',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 10:51:03','','0000-00-00 00:00:00'),(5696,0,0,'I',1738,'I001738',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 10:51:03','','0000-00-00 00:00:00'),(5697,0,0,'I',1739,'I001739',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 11:01:03','','0000-00-00 00:00:00'),(5698,0,0,'I',1739,'I001739',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 11:01:03','','0000-00-00 00:00:00'),(5699,0,0,'I',1739,'I001739',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 11:01:03','','0000-00-00 00:00:00'),(5700,0,0,'I',1739,'I001739',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-22 11:01:03','','0000-00-00 00:00:00'),(5701,0,0,'I',1740,'I001740',2526,1,'0000-00-00','51229',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-22 11:11:10','drarchit','2025-11-22 11:18:04'),(5702,0,0,'I',1741,'I001741',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 11:17:18','','0000-00-00 00:00:00'),(5703,0,0,'I',1740,'I001740',2526,2,'0000-00-00','51472',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-22 11:17:43','drarchit','2025-11-22 11:18:04'),(5704,0,0,'I',1740,'I001740',2526,3,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 11:17:43','drarchit','2025-11-22 11:18:04'),(5705,0,0,'I',1740,'I001740',2526,4,'0000-00-00','51541',0,0,'TAB','','','','',0,3,0,0,0,0,'0-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 11:18:04','','0000-00-00 00:00:00'),(5706,0,0,'I',1742,'I001742',2526,1,'0000-00-00','51364',0,0,'INJ','','','','',0,10,0,0,0,0,'','1.5 GM ','Dy',5,0,0,0,0,0,0,0,0,0,'277','','P',NULL,NULL,'drarchit','2025-11-22 11:25:07','drarchit','2025-11-22 11:25:50'),(5707,0,0,'I',1742,'I001742',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 11:25:07','drarchit','2025-11-22 11:25:50'),(5708,0,0,'I',1742,'I001742',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-22 11:25:07','drarchit','2025-11-22 11:25:50'),(5709,0,0,'I',1742,'I001742',2526,4,'0000-00-00','51403',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 11:25:07','drarchit','2025-11-22 11:25:50'),(5710,0,0,'I',1742,'I001742',2526,5,'0000-00-00','51480',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-22 11:25:07','drarchit','2025-11-22 11:25:50'),(5711,0,0,'I',1742,'I001742',2526,6,'0000-00-00','51517',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 11:25:50','','0000-00-00 00:00:00'),(5712,0,0,'I',1743,'I001743',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 11:36:47','','0000-00-00 00:00:00'),(5713,0,0,'I',1743,'I001743',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 11:36:47','','0000-00-00 00:00:00'),(5714,0,0,'I',1743,'I001743',2526,3,'0000-00-00','51190',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 11:36:47','','0000-00-00 00:00:00'),(5715,0,0,'I',1743,'I001743',2526,4,'0000-00-00','51186',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 11:36:47','','0000-00-00 00:00:00'),(5716,0,0,'I',1743,'I001743',2526,5,'0000-00-00','51234',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-22 11:36:47','','0000-00-00 00:00:00'),(5717,0,0,'I',1744,'I001744',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 11:42:40','darshan','2025-11-22 11:43:08'),(5718,0,0,'I',1744,'I001744',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-22 11:42:40','darshan','2025-11-22 11:43:08'),(5719,0,0,'I',1744,'I001744',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 11:43:08','','0000-00-00 00:00:00'),(5720,0,0,'I',1745,'I001745',2526,1,'0000-00-00','51337',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 11:45:32','drarchit','2025-11-22 11:47:48'),(5721,0,0,'I',1745,'I001745',2526,2,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-22 11:45:32','drarchit','2025-11-22 11:47:48'),(5723,0,0,'I',1745,'I001745',2526,3,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 11:47:48','','0000-00-00 00:00:00'),(5724,0,0,'I',1745,'I001745',2526,4,'0000-00-00','51412',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 11:47:48','','0000-00-00 00:00:00'),(5725,0,0,'I',1746,'I001746',2526,1,'0000-00-00','51526',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 11:52:13','','0000-00-00 00:00:00'),(5726,0,0,'I',1746,'I001746',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-22 11:52:13','','0000-00-00 00:00:00'),(5727,0,0,'I',1746,'I001746',2526,3,'0000-00-00','51326',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 11:52:13','','0000-00-00 00:00:00'),(5728,0,0,'I',1746,'I001746',2526,4,'0000-00-00','51279',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 11:52:13','','0000-00-00 00:00:00'),(5729,0,0,'I',1746,'I001746',2526,5,'0000-00-00','51259',0,0,'TAB','','','','',0,45,0,0,0,0,'1-1-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 11:52:13','','0000-00-00 00:00:00'),(5730,0,0,'I',1746,'I001746',2526,6,'0000-00-00','51249',0,0,'TAB','','','','',0,15,0,0,0,0,'0-1-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 11:52:13','','0000-00-00 00:00:00'),(5731,0,0,'I',1746,'I001746',2526,7,'0000-00-00','51324',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 11:52:13','','0000-00-00 00:00:00'),(5732,0,0,'I',1747,'I001747',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 11:55:46','','0000-00-00 00:00:00'),(5733,0,0,'I',1747,'I001747',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 11:55:46','','0000-00-00 00:00:00'),(5734,0,0,'I',1747,'I001747',2526,3,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-22 11:55:46','','0000-00-00 00:00:00'),(5735,0,0,'I',1747,'I001747',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-22 11:55:46','','0000-00-00 00:00:00'),(5736,0,0,'I',1747,'I001747',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-22 11:55:46','','0000-00-00 00:00:00'),(5737,0,0,'I',1748,'I001748',2526,1,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-22 12:01:25','','0000-00-00 00:00:00'),(5738,0,0,'I',1748,'I001748',2526,2,'0000-00-00','51276',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 12:01:25','','0000-00-00 00:00:00'),(5739,0,0,'I',1748,'I001748',2526,3,'0000-00-00','51277',0,0,'OINT','','','','',0,2,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'darshan','2025-11-22 12:01:25','','0000-00-00 00:00:00'),(5740,0,0,'I',1748,'I001748',2526,4,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 12:01:25','','0000-00-00 00:00:00'),(5741,0,0,'I',1749,'I001749',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-22 12:08:22','','0000-00-00 00:00:00'),(5742,0,0,'I',1749,'I001749',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 12:08:22','','0000-00-00 00:00:00'),(5743,0,0,'I',1749,'I001749',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-22 12:08:22','','0000-00-00 00:00:00'),(5744,0,0,'I',1749,'I001749',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-22 12:08:22','','0000-00-00 00:00:00'),(5745,0,0,'I',1749,'I001749',2526,5,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 12:08:22','','0000-00-00 00:00:00'),(5746,0,0,'I',1750,'I001750',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 12:23:12','darshan','2025-11-22 12:24:20'),(5747,0,0,'I',1750,'I001750',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 12:23:12','darshan','2025-11-22 12:24:20'),(5748,0,0,'I',1750,'I001750',2526,3,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 12:24:20','','0000-00-00 00:00:00'),(5749,0,0,'I',1750,'I001750',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-22 12:24:20','','0000-00-00 00:00:00'),(5750,0,0,'I',1750,'I001750',2526,5,'0000-00-00','51547',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 12:24:20','','0000-00-00 00:00:00'),(5751,0,0,'I',1751,'I001751',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 12:28:40','','0000-00-00 00:00:00'),(5752,0,0,'I',1751,'I001751',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 12:28:40','','0000-00-00 00:00:00'),(5753,0,0,'I',1753,'I001753',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-22 12:32:26','','0000-00-00 00:00:00'),(5755,0,0,'I',1752,'I001752',2526,1,'0000-00-00','51442',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-22 12:33:30','','0000-00-00 00:00:00'),(5756,0,0,'I',1754,'I001754',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 12:37:54','darshan','2025-11-22 12:38:36'),(5757,0,0,'I',1754,'I001754',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 12:38:36','','0000-00-00 00:00:00'),(5758,0,0,'I',1754,'I001754',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-11-22 12:38:36','','0000-00-00 00:00:00'),(5759,0,0,'I',1754,'I001754',2526,4,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 12:38:36','','0000-00-00 00:00:00'),(5760,0,0,'I',1754,'I001754',2526,5,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-22 12:38:36','','0000-00-00 00:00:00'),(5761,0,0,'I',1754,'I001754',2526,6,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-22 12:38:36','','0000-00-00 00:00:00'),(5762,0,0,'I',1755,'I001755',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 12:42:58','','0000-00-00 00:00:00'),(5763,0,0,'I',1756,'I001756',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 12:48:38','','0000-00-00 00:00:00'),(5764,0,0,'I',1756,'I001756',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 12:48:38','','0000-00-00 00:00:00'),(5765,0,0,'I',1756,'I001756',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 12:48:38','','0000-00-00 00:00:00'),(5766,0,0,'I',1756,'I001756',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-22 12:48:38','','0000-00-00 00:00:00'),(5767,0,0,'I',1756,'I001756',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-22 12:48:38','','0000-00-00 00:00:00'),(5768,0,0,'I',1757,'I001757',2526,1,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-22 12:49:31','drarchit','2025-11-22 12:50:53'),(5769,0,0,'I',1757,'I001757',2526,2,'0000-00-00','51310',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 12:49:31','drarchit','2025-11-22 12:50:53'),(5770,0,0,'I',1757,'I001757',2526,3,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 12:50:53','','0000-00-00 00:00:00'),(5771,0,0,'I',1757,'I001757',2526,4,'0000-00-00','51214',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-22 12:50:53','','0000-00-00 00:00:00'),(5772,0,0,'I',1758,'I001758',2526,1,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 12:55:11','','0000-00-00 00:00:00'),(5773,0,0,'I',1758,'I001758',2526,2,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-22 12:55:11','','0000-00-00 00:00:00'),(5774,0,0,'I',1758,'I001758',2526,3,'0000-00-00','51550',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-22 12:55:11','','0000-00-00 00:00:00'),(5775,0,0,'I',1758,'I001758',2526,4,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 12:55:11','','0000-00-00 00:00:00'),(5776,0,0,'I',1759,'I001759',2526,1,'0000-00-00','51421',0,0,'TAB','','','','',0,180,0,0,0,0,'1-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-22 12:58:58','drarchit','2025-11-22 13:04:13'),(5777,0,0,'I',1759,'I001759',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 12:58:58','drarchit','2025-11-22 13:04:13'),(5778,0,0,'I',1759,'I001759',2526,3,'0000-00-00','51272',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 12:59:19','drarchit','2025-11-22 13:04:13'),(5779,0,0,'I',1759,'I001759',2526,4,'0000-00-00','51338',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 13:01:11','drarchit','2025-11-22 13:04:13'),(5780,0,0,'I',1759,'I001759',2526,5,'0000-00-00','51341',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 13:01:11','drarchit','2025-11-22 13:04:13'),(5781,0,0,'I',1759,'I001759',2526,6,'0000-00-00','51464',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 13:01:11','drarchit','2025-11-22 13:04:13'),(5783,0,0,'I',1759,'I001759',2526,7,'0000-00-00','51532',0,0,'INJ','','','','',0,4,0,0,0,0,'22-36-18','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-22 13:02:30','drarchit','2025-11-22 13:04:13'),(5784,0,0,'I',1759,'I001759',2526,8,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-22 13:03:01','drarchit','2025-11-22 13:04:13'),(5785,0,0,'I',1759,'I001759',2526,9,'0000-00-00','51561',0,0,'INJ','','','','',0,2,0,0,0,0,'0-0-26','','Dy',90,0,0,0,0,0,0,0,0,0,'271','','P',NULL,NULL,'drarchit','2025-11-22 13:04:13','','0000-00-00 00:00:00'),(5786,0,0,'I',1760,'I001760',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-22 13:05:16','','0000-00-00 00:00:00'),(5787,0,0,'I',1760,'I001760',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 13:05:16','','0000-00-00 00:00:00'),(5788,0,0,'I',1760,'I001760',2526,3,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 13:05:16','','0000-00-00 00:00:00'),(5789,0,0,'I',1760,'I001760',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-22 13:05:16','','0000-00-00 00:00:00'),(5790,0,0,'I',1761,'I001761',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 13:17:18','','0000-00-00 00:00:00'),(5791,0,0,'I',1761,'I001761',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-22 13:17:18','','0000-00-00 00:00:00'),(5792,0,0,'I',1761,'I001761',2526,3,'0000-00-00','51406',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 13:17:18','','0000-00-00 00:00:00'),(5793,0,0,'I',1761,'I001761',2526,4,'0000-00-00','51510',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-22 13:17:18','','0000-00-00 00:00:00'),(5794,0,0,'I',1761,'I001761',2526,5,'0000-00-00','51352',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 13:17:18','','0000-00-00 00:00:00'),(5795,0,0,'I',1761,'I001761',2526,6,'0000-00-00','51407',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 13:17:18','','0000-00-00 00:00:00'),(5796,0,0,'I',1762,'I001762',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 13:23:20','darshan','2025-11-22 13:40:34'),(5797,0,0,'I',1762,'I001762',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 13:23:43','darshan','2025-11-22 13:40:34'),(5798,0,0,'I',1763,'I001763',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 13:25:32','darshan','2025-11-22 13:25:39'),(5799,0,0,'I',1763,'I001763',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 13:25:39','','0000-00-00 00:00:00'),(5800,0,0,'I',1764,'I001764',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 13:27:09','darshan','2025-11-22 13:31:57'),(5801,0,0,'I',1764,'I001764',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 13:27:09','darshan','2025-11-22 13:31:57'),(5802,0,0,'I',1765,'I001765',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 13:27:44','','0000-00-00 00:00:00'),(5803,0,0,'I',1765,'I001765',2526,2,'0000-00-00','51220',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 13:27:44','','0000-00-00 00:00:00'),(5804,0,0,'I',1765,'I001765',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-22 13:27:44','','0000-00-00 00:00:00'),(5805,0,0,'I',1765,'I001765',2526,4,'0000-00-00','51436',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 13:27:44','','0000-00-00 00:00:00'),(5806,0,0,'I',1765,'I001765',2526,5,'0000-00-00','51232',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 13:27:44','','0000-00-00 00:00:00'),(5807,0,0,'I',1764,'I001764',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-22 13:27:58','darshan','2025-11-22 13:31:57'),(5808,0,0,'I',1764,'I001764',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-22 13:27:58','darshan','2025-11-22 13:31:57'),(5809,0,0,'I',1766,'I001766',2526,1,'0000-00-00','51324',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 13:37:45','drarchit','2025-11-22 13:37:56'),(5810,0,0,'I',1766,'I001766',2526,2,'0000-00-00','51214',0,0,'TAB','','','','',0,15,0,0,0,0,'0-1-0','','Dy',15,0,0,0,0,0,0,0,0,0,'5','','P',NULL,NULL,'drarchit','2025-11-22 13:37:45','drarchit','2025-11-22 13:37:56'),(5811,0,0,'I',1766,'I001766',2526,3,'0000-00-00','51373',0,0,'CAP','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 13:37:45','drarchit','2025-11-22 13:37:56'),(5812,0,0,'I',1766,'I001766',2526,4,'0000-00-00','51396',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 13:37:45','drarchit','2025-11-22 13:37:56'),(5813,0,0,'I',1766,'I001766',2526,5,'0000-00-00','51244',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 13:37:56','','0000-00-00 00:00:00'),(5814,0,0,'I',1767,'I001767',2526,1,'0000-00-00','51337',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 13:40:42','','0000-00-00 00:00:00'),(5815,0,0,'I',1767,'I001767',2526,2,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 13:40:42','','0000-00-00 00:00:00'),(5816,0,0,'I',1767,'I001767',2526,3,'0000-00-00','51238',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-11-22 13:40:42','','0000-00-00 00:00:00'),(5817,0,0,'I',1767,'I001767',2526,4,'0000-00-00','51269',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-22 13:40:42','','0000-00-00 00:00:00'),(5818,0,0,'I',1767,'I001767',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-22 13:40:42','','0000-00-00 00:00:00'),(5819,0,0,'I',1768,'I001768',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 10:44:03','','0000-00-00 00:00:00'),(5820,0,0,'I',1768,'I001768',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-24 10:44:03','','0000-00-00 00:00:00'),(5821,0,0,'I',1768,'I001768',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 10:44:03','','0000-00-00 00:00:00'),(5822,0,0,'I',1769,'I001769',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 10:46:44','darshan','2025-11-24 10:47:10'),(5823,0,0,'I',1769,'I001769',2526,2,'0000-00-00','51287',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-24 10:47:10','','0000-00-00 00:00:00'),(5824,0,0,'I',1770,'I001770',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 11:01:18','darshan','2025-11-24 11:01:35'),(5825,0,0,'I',1770,'I001770',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-24 11:01:18','darshan','2025-11-24 11:01:35'),(5827,0,0,'I',1771,'I001771',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 11:05:54','darshan','2025-11-24 11:07:03'),(5829,0,0,'I',1771,'I001771',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 11:05:54','darshan','2025-11-24 11:07:03'),(5830,0,0,'I',1771,'I001771',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-24 11:07:03','','0000-00-00 00:00:00'),(5832,0,0,'I',1772,'I001772',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 11:11:25','darshan','2025-11-24 11:11:56'),(5833,0,0,'I',1772,'I001772',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-24 11:11:56','','0000-00-00 00:00:00'),(5834,0,0,'I',1773,'I001773',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 11:16:22','darshan','2025-11-24 11:18:00'),(5836,0,0,'I',1773,'I001773',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,50,0,0,0,0,'.5-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 11:16:22','darshan','2025-11-24 11:18:00'),(5837,0,0,'I',1773,'I001773',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 11:16:22','darshan','2025-11-24 11:18:00'),(5839,0,0,'I',1773,'I001773',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-24 11:17:39','darshan','2025-11-24 11:18:00'),(5840,0,0,'I',1774,'I001774',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 11:22:45','darshan','2025-11-24 11:23:40'),(5841,0,0,'I',1774,'I001774',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 11:22:45','darshan','2025-11-24 11:23:40'),(5842,0,0,'I',1774,'I001774',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 11:22:45','darshan','2025-11-24 11:23:40'),(5843,0,0,'I',1775,'I001775',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 11:44:20','darshan','2025-11-24 11:44:43'),(5844,0,0,'I',1775,'I001775',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-24 11:44:20','darshan','2025-11-24 11:44:43'),(5845,0,0,'I',1776,'I001776',2526,1,'0000-00-00','51381',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 11:50:09','','0000-00-00 00:00:00'),(5846,0,0,'I',1776,'I001776',2526,2,'0000-00-00','51505',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-24 11:50:09','','0000-00-00 00:00:00'),(5847,0,0,'I',1776,'I001776',2526,3,'0000-00-00','51244',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 11:50:09','','0000-00-00 00:00:00'),(5848,0,0,'I',1777,'I001777',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 11:54:01','','0000-00-00 00:00:00'),(5849,0,0,'I',1777,'I001777',2526,2,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-24 11:54:01','','0000-00-00 00:00:00'),(5850,0,0,'I',1777,'I001777',2526,3,'0000-00-00','51403',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 11:54:01','','0000-00-00 00:00:00'),(5851,0,0,'I',1777,'I001777',2526,4,'0000-00-00','51480',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-24 11:54:01','','0000-00-00 00:00:00'),(5852,0,0,'I',1777,'I001777',2526,5,'0000-00-00','51500',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 11:54:01','','0000-00-00 00:00:00'),(5853,0,0,'I',1779,'I001779',2526,1,'0000-00-00','51214',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-11-24 12:00:00','','0000-00-00 00:00:00'),(5854,0,0,'I',1779,'I001779',2526,2,'0000-00-00','51228',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-24 12:00:00','','0000-00-00 00:00:00'),(5855,0,0,'I',1779,'I001779',2526,3,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:00:00','','0000-00-00 00:00:00'),(5856,0,0,'I',1779,'I001779',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-24 12:00:00','','0000-00-00 00:00:00'),(5857,0,0,'I',1780,'I001780',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 12:00:16','darshan','2025-11-24 12:02:36'),(5858,0,0,'I',1780,'I001780',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 12:00:16','darshan','2025-11-24 12:02:36'),(5859,0,0,'I',1781,'I001781',2526,1,'0000-00-00','51373',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:03:02','drarchit','2025-11-24 12:03:30'),(5860,0,0,'I',1781,'I001781',2526,2,'0000-00-00','51396',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:03:30','','0000-00-00 00:00:00'),(5861,0,0,'I',1781,'I001781',2526,3,'0000-00-00','51262',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:03:30','','0000-00-00 00:00:00'),(5862,0,0,'I',1782,'I001782',2526,1,'0000-00-00','51355',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:12:13','drarchit','2025-11-24 12:13:12'),(5863,0,0,'I',1782,'I001782',2526,2,'0000-00-00','51259',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:12:13','drarchit','2025-11-24 12:13:12'),(5864,0,0,'I',1782,'I001782',2526,3,'0000-00-00','51562',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-24 12:12:54','drarchit','2025-11-24 12:13:12'),(5865,0,0,'I',1782,'I001782',2526,4,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:13:12','','0000-00-00 00:00:00'),(5866,0,0,'I',1782,'I001782',2526,5,'0000-00-00','51396',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:13:12','','0000-00-00 00:00:00'),(5867,0,0,'I',1783,'I001783',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 12:18:49','','0000-00-00 00:00:00'),(5868,0,0,'I',1783,'I001783',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 12:18:49','','0000-00-00 00:00:00'),(5869,0,0,'I',1784,'I001784',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 12:21:43','','0000-00-00 00:00:00'),(5870,0,0,'I',1784,'I001784',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 12:21:43','','0000-00-00 00:00:00'),(5871,0,0,'I',1785,'I001785',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:23:33','','0000-00-00 00:00:00'),(5872,0,0,'I',1785,'I001785',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-24 12:23:33','','0000-00-00 00:00:00'),(5873,0,0,'I',1785,'I001785',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:23:33','','0000-00-00 00:00:00'),(5874,0,0,'I',1785,'I001785',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-24 12:23:33','','0000-00-00 00:00:00'),(5875,0,0,'I',1785,'I001785',2526,5,'0000-00-00','51230',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:23:33','','0000-00-00 00:00:00'),(5876,0,0,'I',1785,'I001785',2526,6,'0000-00-00','51217',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:23:33','','0000-00-00 00:00:00'),(5877,0,0,'I',1786,'I001786',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,25,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-24 12:25:17','darshan','2025-11-24 12:26:13'),(5879,0,0,'I',1786,'I001786',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 12:25:17','darshan','2025-11-24 12:26:13'),(5880,0,0,'I',1787,'I001787',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:26:41','drarchit','2025-11-24 12:28:42'),(5881,0,0,'I',1787,'I001787',2526,2,'0000-00-00','51217',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:26:41','drarchit','2025-11-24 12:28:42'),(5882,0,0,'I',1787,'I001787',2526,3,'0000-00-00','51477',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-24 12:26:41','drarchit','2025-11-24 12:28:42'),(5883,0,0,'I',1787,'I001787',2526,4,'0000-00-00','51288',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:26:41','drarchit','2025-11-24 12:28:42'),(5884,0,0,'I',1787,'I001787',2526,5,'0000-00-00','51342',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:26:41','drarchit','2025-11-24 12:28:42'),(5889,0,0,'I',1787,'I001787',2526,6,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:28:42','','0000-00-00 00:00:00'),(5890,0,0,'I',1787,'I001787',2526,7,'0000-00-00','51487',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-24 12:28:42','','0000-00-00 00:00:00'),(5891,0,0,'I',1787,'I001787',2526,8,'0000-00-00','51232',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:28:42','','0000-00-00 00:00:00'),(5892,0,0,'I',1788,'I001788',2526,1,'0000-00-00','51230',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:32:05','','0000-00-00 00:00:00'),(5893,0,0,'I',1788,'I001788',2526,2,'0000-00-00','51232',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:32:05','','0000-00-00 00:00:00'),(5894,0,0,'I',1788,'I001788',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-24 12:32:05','','0000-00-00 00:00:00'),(5895,0,0,'I',1788,'I001788',2526,4,'0000-00-00','51487',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-24 12:32:05','','0000-00-00 00:00:00'),(5896,0,0,'I',1788,'I001788',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-24 12:32:05','','0000-00-00 00:00:00'),(5897,0,0,'I',1789,'I001789',2526,1,'0000-00-00','51548',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:39:12','drarchit','2025-11-24 12:39:37'),(5898,0,0,'I',1789,'I001789',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-24 12:39:12','drarchit','2025-11-24 12:39:37'),(5900,0,0,'I',1789,'I001789',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:39:12','drarchit','2025-11-24 12:39:37'),(5901,0,0,'I',1789,'I001789',2526,4,'0000-00-00','51487',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-24 12:39:12','drarchit','2025-11-24 12:39:37'),(5902,0,0,'I',1789,'I001789',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-24 12:39:12','drarchit','2025-11-24 12:39:37'),(5903,0,0,'I',1789,'I001789',2526,6,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:39:12','drarchit','2025-11-24 12:39:37'),(5904,0,0,'I',1789,'I001789',2526,7,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:39:12','drarchit','2025-11-24 12:39:37'),(5905,0,0,'I',1789,'I001789',2526,8,'0000-00-00','51402',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:39:37','','0000-00-00 00:00:00'),(5906,0,0,'I',1790,'I001790',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 12:43:11','darshan','2025-11-24 12:43:33'),(5907,0,0,'I',1790,'I001790',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 12:43:11','darshan','2025-11-24 12:43:33'),(5908,0,0,'I',1790,'I001790',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-24 12:43:11','darshan','2025-11-24 12:43:33'),(5909,0,0,'I',1790,'I001790',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-24 12:43:11','darshan','2025-11-24 12:43:33'),(5910,0,0,'I',1791,'I001791',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 12:46:10','darshan','2025-11-24 12:46:32'),(5911,0,0,'I',1791,'I001791',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 12:46:10','darshan','2025-11-24 12:46:32'),(5913,0,0,'I',1791,'I001791',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-24 12:46:10','darshan','2025-11-24 12:46:32'),(5914,0,0,'I',1792,'I001792',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 12:53:18','','0000-00-00 00:00:00'),(5915,0,0,'I',1793,'I001793',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 13:00:35','darshan','2025-11-24 13:05:14'),(5916,0,0,'I',1793,'I001793',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 13:00:35','darshan','2025-11-24 13:05:14'),(5917,0,0,'I',1793,'I001793',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-24 13:00:35','darshan','2025-11-24 13:05:14'),(5918,0,0,'I',1794,'I001794',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-24 13:08:02','','0000-00-00 00:00:00'),(5919,0,0,'I',1794,'I001794',2526,2,'0000-00-00','51189',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 13:08:02','','0000-00-00 00:00:00'),(5920,0,0,'I',1795,'I001795',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 13:11:04','','0000-00-00 00:00:00'),(5921,0,0,'I',1796,'I001796',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-24 13:20:16','','0000-00-00 00:00:00'),(5922,0,0,'I',1796,'I001796',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 13:20:16','','0000-00-00 00:00:00'),(5923,0,0,'I',1796,'I001796',2526,3,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 13:20:16','','0000-00-00 00:00:00'),(5924,0,0,'I',1796,'I001796',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-24 13:20:16','','0000-00-00 00:00:00'),(5925,0,0,'I',1796,'I001796',2526,5,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 13:20:16','','0000-00-00 00:00:00'),(5926,0,0,'I',1797,'I001797',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 13:31:54','','0000-00-00 00:00:00'),(5927,0,0,'I',1797,'I001797',2526,2,'0000-00-00','51229',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-24 13:31:54','','0000-00-00 00:00:00'),(5928,0,0,'I',1797,'I001797',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 13:31:54','','0000-00-00 00:00:00'),(5929,0,0,'I',1797,'I001797',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 13:31:54','','0000-00-00 00:00:00'),(5930,0,0,'I',1797,'I001797',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-24 13:31:54','','0000-00-00 00:00:00'),(5931,0,0,'I',1798,'I001798',2526,1,'0000-00-00','51324',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 13:38:45','drarchit','2025-11-24 13:39:18'),(5932,0,0,'I',1798,'I001798',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-24 13:38:45','drarchit','2025-11-24 13:39:18'),(5933,0,0,'I',1798,'I001798',2526,3,'0000-00-00','51343',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-1','','Dy',15,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-24 13:38:45','drarchit','2025-11-24 13:39:18'),(5934,0,0,'I',1798,'I001798',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-24 13:39:18','','0000-00-00 00:00:00'),(5935,0,0,'I',1798,'I001798',2526,5,'0000-00-00','51278',0,0,'CAP','','','','',0,15,0,0,0,0,'0-1-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 13:39:18','','0000-00-00 00:00:00'),(5936,0,0,'I',1798,'I001798',2526,6,'0000-00-00','51222',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 13:39:18','','0000-00-00 00:00:00'),(5937,0,0,'I',1799,'I001799',2526,1,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 13:42:04','darshan','2025-11-24 13:42:38'),(5938,0,0,'I',1799,'I001799',2526,2,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-24 13:42:04','darshan','2025-11-24 13:42:38'),(5939,0,0,'I',1799,'I001799',2526,3,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-24 13:42:04','darshan','2025-11-24 13:42:38'),(5940,0,0,'I',1799,'I001799',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 13:42:04','darshan','2025-11-24 13:42:38'),(5942,0,0,'I',1800,'I001800',2526,1,'0000-00-00','51475',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-24 13:44:47','','0000-00-00 00:00:00'),(5943,0,0,'I',1800,'I001800',2526,2,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 13:44:47','','0000-00-00 00:00:00'),(5944,0,0,'I',1800,'I001800',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-24 13:44:47','','0000-00-00 00:00:00'),(5945,0,0,'I',1801,'I001801',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 13:52:27','','0000-00-00 00:00:00'),(5946,0,0,'I',1801,'I001801',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 13:52:27','','0000-00-00 00:00:00'),(5947,0,0,'I',1801,'I001801',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-24 13:52:27','','0000-00-00 00:00:00'),(5948,0,0,'I',1802,'I001802',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 14:01:58','darshan','2025-11-24 14:02:18'),(5949,0,0,'I',1802,'I001802',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 14:02:18','','0000-00-00 00:00:00'),(5950,0,0,'I',1802,'I001802',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 14:02:18','','0000-00-00 00:00:00'),(5951,0,0,'I',1802,'I001802',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-24 14:02:18','','0000-00-00 00:00:00'),(5952,0,0,'I',1803,'I001803',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 14:06:24','','0000-00-00 00:00:00'),(5953,0,0,'I',1803,'I001803',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 14:06:24','','0000-00-00 00:00:00'),(5954,0,0,'I',1804,'I001804',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 14:10:04','darshan','2025-11-24 14:13:08'),(5955,0,0,'I',1804,'I001804',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 14:10:04','darshan','2025-11-24 14:13:08'),(5956,0,0,'I',1804,'I001804',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-24 14:10:04','darshan','2025-11-24 14:13:08'),(5957,0,0,'I',1804,'I001804',2526,4,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 14:10:04','darshan','2025-11-24 14:13:08'),(5958,0,0,'I',1805,'I001805',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 14:26:17','darshan','2025-11-24 14:26:22'),(5959,0,0,'I',1805,'I001805',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 14:26:17','darshan','2025-11-24 14:26:22'),(5960,0,0,'I',1806,'I001806',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 14:34:20','darshan','2025-11-24 14:35:51'),(5961,0,0,'I',1806,'I001806',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 14:34:20','darshan','2025-11-24 14:35:51'),(5962,0,0,'I',1806,'I001806',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-24 14:34:20','darshan','2025-11-24 14:35:51'),(5963,0,0,'I',1806,'I001806',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-24 14:34:20','darshan','2025-11-24 14:35:51'),(5964,0,0,'I',1807,'I001807',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 14:38:36','','0000-00-00 00:00:00'),(5965,0,0,'I',1807,'I001807',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 14:38:36','','0000-00-00 00:00:00'),(5966,0,0,'I',1807,'I001807',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-24 14:38:36','','0000-00-00 00:00:00'),(5967,0,0,'I',1807,'I001807',2526,4,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 14:38:36','','0000-00-00 00:00:00'),(5968,0,0,'I',1808,'I001808',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 14:44:54','','0000-00-00 00:00:00'),(5969,0,0,'I',1808,'I001808',2526,2,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 14:44:54','','0000-00-00 00:00:00'),(5970,0,0,'I',1809,'I001809',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 17:02:35','darshan','2025-11-24 17:03:40'),(5971,0,0,'I',1809,'I001809',2526,2,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-24 17:02:35','darshan','2025-11-24 17:03:40'),(5972,0,0,'I',1809,'I001809',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 17:02:35','darshan','2025-11-24 17:03:40'),(5974,0,0,'I',1809,'I001809',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-24 17:03:40','','0000-00-00 00:00:00'),(5975,0,0,'I',1810,'I001810',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 17:20:31','','0000-00-00 00:00:00'),(5976,0,0,'I',1810,'I001810',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 17:20:31','','0000-00-00 00:00:00'),(5977,0,0,'I',1811,'I001811',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-24 17:23:38','darshan','2025-11-24 17:24:12'),(5978,0,0,'I',1811,'I001811',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 17:23:38','darshan','2025-11-24 17:24:12'),(5980,0,0,'I',1811,'I001811',2526,3,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 17:23:38','darshan','2025-11-24 17:24:12'),(5981,0,0,'I',1811,'I001811',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-24 17:23:38','darshan','2025-11-24 17:24:12'),(5982,0,0,'I',1812,'I001812',2526,1,'0000-00-00','51224',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 17:31:51','','0000-00-00 00:00:00'),(5983,0,0,'I',1812,'I001812',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 17:31:51','','0000-00-00 00:00:00'),(5984,0,0,'I',1812,'I001812',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 17:31:51','','0000-00-00 00:00:00'),(5985,0,0,'I',1812,'I001812',2526,4,'0000-00-00','51294',0,0,'TAB','','','','',0,5,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-24 17:31:51','','0000-00-00 00:00:00'),(5987,0,0,'I',1813,'I001813',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 17:59:21','darshan','2025-11-24 18:00:11'),(5989,0,0,'I',1813,'I001813',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 18:00:04','darshan','2025-11-24 18:00:11'),(5990,0,0,'I',1814,'I001814',2526,1,'0000-00-00','51243',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-24 18:06:40','','0000-00-00 00:00:00'),(5991,0,0,'I',1814,'I001814',2526,2,'0000-00-00','51341',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 18:06:40','','0000-00-00 00:00:00'),(5992,0,0,'I',1814,'I001814',2526,3,'0000-00-00','51412',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 18:06:40','','0000-00-00 00:00:00'),(5993,0,0,'I',1814,'I001814',2526,4,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-24 18:06:40','','0000-00-00 00:00:00'),(5994,0,0,'I',1814,'I001814',2526,5,'0000-00-00','51519',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 18:06:40','','0000-00-00 00:00:00'),(5995,0,0,'I',1814,'I001814',2526,6,'0000-00-00','51475',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-24 18:06:40','','0000-00-00 00:00:00'),(5996,0,0,'I',1814,'I001814',2526,7,'0000-00-00','51492',0,0,'INJ','','','','',0,3,0,0,0,0,'16-0-6','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-24 18:06:40','','0000-00-00 00:00:00'),(5997,0,0,'I',1815,'I001815',2526,1,'0000-00-00','51276',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-24 18:08:00','darshan','2025-11-24 18:08:53'),(5998,0,0,'I',1815,'I001815',2526,2,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-24 18:08:00','darshan','2025-11-24 18:08:53'),(6000,0,0,'I',1816,'I001816',2526,1,'0000-00-00','51391',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 18:09:35','drarchit','2025-11-24 18:09:52'),(6001,0,0,'I',1816,'I001816',2526,4,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 18:09:35','drarchit','2025-11-24 18:09:52'),(6002,0,0,'I',1816,'I001816',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-24 18:09:35','drarchit','2025-11-24 18:09:52'),(6003,0,0,'I',1816,'I001816',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 18:09:35','drarchit','2025-11-24 18:09:52'),(6004,0,0,'I',1816,'I001816',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-24 18:09:52','','0000-00-00 00:00:00'),(6005,0,0,'I',1817,'I001817',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 18:12:55','','0000-00-00 00:00:00'),(6006,0,0,'I',1817,'I001817',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 18:12:55','','0000-00-00 00:00:00'),(6007,0,0,'I',1817,'I001817',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-24 18:12:55','','0000-00-00 00:00:00'),(6008,0,0,'I',1818,'I001818',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 18:25:21','darshan','2025-11-24 18:25:50'),(6009,0,0,'I',1818,'I001818',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 18:25:50','','0000-00-00 00:00:00'),(6010,0,0,'I',1818,'I001818',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 18:25:50','','0000-00-00 00:00:00'),(6011,0,0,'I',1818,'I001818',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-24 18:25:50','','0000-00-00 00:00:00'),(6012,0,0,'I',1819,'I001819',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 18:30:31','','0000-00-00 00:00:00'),(6013,0,0,'I',1819,'I001819',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 18:30:31','','0000-00-00 00:00:00'),(6014,0,0,'I',1819,'I001819',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 18:30:31','','0000-00-00 00:00:00'),(6015,0,0,'I',1819,'I001819',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-24 18:30:31','','0000-00-00 00:00:00'),(6017,0,0,'I',1820,'I001820',2526,1,'0000-00-00','51244',0,0,'TAB','','','','',0,10,0,0,0,0,'0-1-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 18:32:49','drarchit','2025-11-24 18:33:03'),(6018,0,0,'I',1820,'I001820',2526,2,'0000-00-00','51324',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 18:33:03','','0000-00-00 00:00:00'),(6019,0,0,'I',1821,'I001821',2526,1,'0000-00-00','51477',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'drarchit','2025-11-24 18:41:32','drarchit','2025-11-24 18:43:50'),(6020,0,0,'I',1821,'I001821',2526,2,'0000-00-00','51420',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-24 18:41:32','drarchit','2025-11-24 18:43:50'),(6025,0,0,'I',1822,'I001822',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-24 18:44:47','darshan','2025-11-24 19:25:38'),(6026,0,0,'I',1822,'I001822',2526,2,'0000-00-00','51215',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 18:44:47','darshan','2025-11-24 19:25:38'),(6027,0,0,'I',1824,'I001824',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 18:55:46','darshan','2025-11-24 18:56:01'),(6028,0,0,'I',1824,'I001824',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 18:55:46','darshan','2025-11-24 18:56:01'),(6029,0,0,'I',1824,'I001824',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 18:56:01','','0000-00-00 00:00:00'),(6030,0,0,'I',1823,'I001823',2526,1,'0000-00-00','51563',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-24 18:56:18','drarchit','2025-11-24 18:57:53'),(6033,0,0,'I',1823,'I001823',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-24 18:57:53','','0000-00-00 00:00:00'),(6034,0,0,'I',1825,'I001825',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 19:07:16','darshan','2025-11-24 19:07:42'),(6035,0,0,'I',1825,'I001825',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 19:07:16','darshan','2025-11-24 19:07:42'),(6038,0,0,'I',1826,'I001826',2526,1,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 19:15:32','drarchit','2025-11-24 19:16:12'),(6039,0,0,'I',1826,'I001826',2526,2,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 19:16:12','','0000-00-00 00:00:00'),(6040,0,0,'I',1826,'I001826',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-24 19:16:12','','0000-00-00 00:00:00'),(6041,0,0,'I',1826,'I001826',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-24 19:16:12','','0000-00-00 00:00:00'),(6042,0,0,'I',1826,'I001826',2526,5,'0000-00-00','51487',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-24 19:16:12','','0000-00-00 00:00:00'),(6044,0,0,'I',1822,'I001822',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-24 19:25:38','','0000-00-00 00:00:00'),(6045,0,0,'I',1822,'I001822',2526,5,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 19:25:38','','0000-00-00 00:00:00'),(6046,0,0,'I',1822,'I001822',2526,6,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 19:25:38','','0000-00-00 00:00:00'),(6047,0,0,'I',1828,'I001828',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 19:36:27','','0000-00-00 00:00:00'),(6048,0,0,'I',1828,'I001828',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 19:36:27','','0000-00-00 00:00:00'),(6049,0,0,'I',1828,'I001828',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-24 19:36:27','','0000-00-00 00:00:00'),(6050,0,0,'I',1828,'I001828',2526,4,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-11-24 19:36:27','','0000-00-00 00:00:00'),(6051,0,0,'I',1828,'I001828',2526,5,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-24 19:36:27','','0000-00-00 00:00:00'),(6052,0,0,'I',1829,'I001829',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-24 19:42:02','drarchit','2025-11-24 19:43:01'),(6053,0,0,'I',1829,'I001829',2526,2,'0000-00-00','51370',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-24 19:42:02','drarchit','2025-11-24 19:43:01'),(6054,0,0,'I',1829,'I001829',2526,3,'0000-00-00','51321',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 19:42:02','drarchit','2025-11-24 19:43:01'),(6055,0,0,'I',1829,'I001829',2526,5,'0000-00-00','51363',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-24 19:42:02','drarchit','2025-11-24 19:43:01'),(6056,0,0,'I',1829,'I001829',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 19:42:02','drarchit','2025-11-24 19:43:01'),(6057,0,0,'I',1830,'I001830',2526,1,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 19:45:19','','0000-00-00 00:00:00'),(6058,0,0,'I',1830,'I001830',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-24 19:45:19','','0000-00-00 00:00:00'),(6059,0,0,'I',1830,'I001830',2526,3,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-24 19:45:19','','0000-00-00 00:00:00'),(6060,0,0,'I',1830,'I001830',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-24 19:45:19','','0000-00-00 00:00:00'),(6061,0,0,'I',1831,'I001831',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 10:43:59','darshan','2025-11-25 10:44:54'),(6062,0,0,'I',1831,'I001831',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 10:43:59','darshan','2025-11-25 10:44:54'),(6064,0,0,'I',1831,'I001831',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 10:44:54','','0000-00-00 00:00:00'),(6065,0,0,'I',1832,'I001832',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 10:50:41','darshan','2025-11-25 10:51:01'),(6066,0,0,'I',1832,'I001832',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 10:50:41','darshan','2025-11-25 10:51:01'),(6067,0,0,'I',1832,'I001832',2526,3,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 10:50:41','darshan','2025-11-25 10:51:01'),(6069,0,0,'I',1833,'I001833',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 11:01:47','darshan','2025-11-25 11:02:17'),(6070,0,0,'I',1833,'I001833',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 11:01:59','darshan','2025-11-25 11:02:17'),(6071,0,0,'I',1833,'I001833',2526,3,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-25 11:02:17','','0000-00-00 00:00:00'),(6072,0,0,'I',1834,'I001834',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 11:10:36','darshan','2025-11-25 11:11:09'),(6073,0,0,'I',1834,'I001834',2526,2,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,0,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-25 11:10:36','darshan','2025-11-25 11:11:09'),(6074,0,0,'I',1834,'I001834',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 11:10:36','darshan','2025-11-25 11:11:09'),(6078,0,0,'I',1834,'I001834',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-25 11:11:09','','0000-00-00 00:00:00'),(6079,0,0,'I',1836,'I001836',2526,1,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-25 11:29:11','darshan','2025-11-25 11:29:37'),(6080,0,0,'I',1836,'I001836',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 11:29:11','darshan','2025-11-25 11:29:37'),(6081,0,0,'I',1837,'I001837',2526,1,'0000-00-00','51197',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 11:41:00','darshan','2025-11-25 11:41:41'),(6082,0,0,'I',1837,'I001837',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 11:41:00','darshan','2025-11-25 11:41:41'),(6083,0,0,'I',1837,'I001837',2526,3,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-25 11:41:41','','0000-00-00 00:00:00'),(6084,0,0,'I',1838,'I001838',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 11:47:27','darshan','2025-11-25 11:48:02'),(6085,0,0,'I',1838,'I001838',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 11:47:27','darshan','2025-11-25 11:48:02'),(6086,0,0,'I',1838,'I001838',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 11:47:27','darshan','2025-11-25 11:48:02'),(6088,0,0,'I',1839,'I001839',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 11:53:10','','0000-00-00 00:00:00'),(6089,0,0,'I',1839,'I001839',2526,2,'0000-00-00','51190',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 11:53:10','','0000-00-00 00:00:00'),(6090,0,0,'I',1839,'I001839',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 11:53:10','','0000-00-00 00:00:00'),(6091,0,0,'I',1839,'I001839',2526,4,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 11:53:10','','0000-00-00 00:00:00'),(6092,0,0,'I',1840,'I001840',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 12:01:38','','0000-00-00 00:00:00'),(6093,0,0,'I',1841,'I001841',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 12:10:44','drarchit','2025-11-25 12:11:45'),(6095,0,0,'I',1841,'I001841',2526,2,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 12:11:14','drarchit','2025-11-25 12:11:45'),(6096,0,0,'I',1841,'I001841',2526,3,'0000-00-00','51296',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 12:11:45','','0000-00-00 00:00:00'),(6097,0,0,'I',1842,'I001842',2526,1,'0000-00-00','51375',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-25 12:18:26','drarchit','2025-11-25 12:19:43'),(6098,0,0,'I',1842,'I001842',2526,2,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 12:18:26','drarchit','2025-11-25 12:19:43'),(6099,0,0,'I',1842,'I001842',2526,3,'0000-00-00','51244',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 12:19:43','','0000-00-00 00:00:00'),(6100,0,0,'I',1843,'I001843',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 12:23:34','darshan','2025-11-25 12:24:02'),(6101,0,0,'I',1844,'I001844',2526,1,'0000-00-00','51297',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 12:27:28','drarchit','2025-11-25 12:29:07'),(6102,0,0,'I',1844,'I001844',2526,2,'0000-00-00','51238',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 12:27:28','drarchit','2025-11-25 12:29:07'),(6103,0,0,'I',1844,'I001844',2526,3,'0000-00-00','51564',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 12:29:07','','0000-00-00 00:00:00'),(6104,0,0,'I',1844,'I001844',2526,4,'0000-00-00','51396',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 12:29:07','','0000-00-00 00:00:00'),(6105,0,0,'I',1845,'I001845',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 12:32:37','','0000-00-00 00:00:00'),(6106,0,0,'I',1846,'I001846',2526,1,'0000-00-00','51346',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 12:35:21','','0000-00-00 00:00:00'),(6107,0,0,'I',1847,'I001847',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 12:41:43','','0000-00-00 00:00:00'),(6108,0,0,'I',1847,'I001847',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-25 12:41:43','','0000-00-00 00:00:00'),(6109,0,0,'I',1847,'I001847',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 12:41:43','','0000-00-00 00:00:00'),(6110,0,0,'I',1847,'I001847',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 12:41:43','','0000-00-00 00:00:00'),(6111,0,0,'I',1847,'I001847',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-25 12:41:43','','0000-00-00 00:00:00'),(6112,0,0,'I',1848,'I001848',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-25 12:51:10','','0000-00-00 00:00:00'),(6113,0,0,'I',1848,'I001848',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 12:51:10','','0000-00-00 00:00:00'),(6114,0,0,'I',1849,'I001849',2526,1,'0000-00-00','51243',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-25 12:53:09','drarchit','2025-11-25 12:54:19'),(6115,0,0,'I',1849,'I001849',2526,2,'0000-00-00','51565',0,0,'CAP','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 12:54:19','','0000-00-00 00:00:00'),(6116,0,0,'I',1849,'I001849',2526,3,'0000-00-00','51239',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-25 12:54:19','','0000-00-00 00:00:00'),(6117,0,0,'I',1850,'I001850',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 12:55:51','','0000-00-00 00:00:00'),(6118,0,0,'I',1850,'I001850',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 12:55:51','','0000-00-00 00:00:00'),(6119,0,0,'I',1850,'I001850',2526,3,'0000-00-00','51189',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 12:55:51','','0000-00-00 00:00:00'),(6120,0,0,'I',1850,'I001850',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-25 12:55:51','','0000-00-00 00:00:00'),(6121,0,0,'I',1851,'I001851',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 13:03:58','','0000-00-00 00:00:00'),(6122,0,0,'I',1851,'I001851',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 13:03:58','','0000-00-00 00:00:00'),(6123,0,0,'I',1851,'I001851',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 13:03:58','','0000-00-00 00:00:00'),(6124,0,0,'I',1851,'I001851',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-25 13:03:58','','0000-00-00 00:00:00'),(6125,0,0,'I',1852,'I001852',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 13:08:19','','0000-00-00 00:00:00'),(6126,0,0,'I',1853,'I001853',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 13:13:19','darshan','2025-11-25 13:13:40'),(6127,0,0,'I',1853,'I001853',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-25 13:13:19','darshan','2025-11-25 13:13:40'),(6129,0,0,'I',1854,'I001854',2526,1,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 13:13:34','drarchit','2025-11-25 13:13:46'),(6130,0,0,'I',1854,'I001854',2526,2,'0000-00-00','51337',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 13:13:34','drarchit','2025-11-25 13:13:46'),(6131,0,0,'I',1854,'I001854',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-25 13:13:34','drarchit','2025-11-25 13:13:46'),(6132,0,0,'I',1854,'I001854',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-25 13:13:34','drarchit','2025-11-25 13:13:46'),(6133,0,0,'I',1854,'I001854',2526,5,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 13:13:46','','0000-00-00 00:00:00'),(6134,0,0,'I',1855,'I001855',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 13:17:27','','0000-00-00 00:00:00'),(6135,0,0,'I',1855,'I001855',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-25 13:17:27','','0000-00-00 00:00:00'),(6136,0,0,'I',1855,'I001855',2526,3,'0000-00-00','51517',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 13:17:27','','0000-00-00 00:00:00'),(6137,0,0,'I',1856,'I001856',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 13:22:49','','0000-00-00 00:00:00'),(6138,0,0,'I',1856,'I001856',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 13:22:49','','0000-00-00 00:00:00'),(6139,0,0,'I',1856,'I001856',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-25 13:22:49','','0000-00-00 00:00:00'),(6140,0,0,'I',1857,'I001857',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 13:40:48','','0000-00-00 00:00:00'),(6141,0,0,'I',1857,'I001857',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-25 13:40:48','','0000-00-00 00:00:00'),(6142,0,0,'I',1857,'I001857',2526,3,'0000-00-00','51403',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 13:40:48','','0000-00-00 00:00:00'),(6143,0,0,'I',1857,'I001857',2526,4,'0000-00-00','51231',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 13:40:48','','0000-00-00 00:00:00'),(6144,0,0,'I',1857,'I001857',2526,5,'0000-00-00','51500',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 13:40:48','','0000-00-00 00:00:00'),(6145,0,0,'I',1858,'I001858',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 13:41:27','','0000-00-00 00:00:00'),(6146,0,0,'I',1858,'I001858',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 13:41:27','','0000-00-00 00:00:00'),(6148,0,0,'I',1859,'I001859',2526,1,'0000-00-00','51560',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 13:42:46','drarchit','2025-11-25 13:43:07'),(6149,0,0,'I',1859,'I001859',2526,2,'0000-00-00','51244',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 13:43:07','','0000-00-00 00:00:00'),(6150,0,0,'I',1860,'I001860',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 17:22:59','darshan','2025-11-25 17:23:20'),(6152,0,0,'I',1860,'I001860',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 17:22:59','darshan','2025-11-25 17:23:20'),(6154,0,0,'I',1861,'I001861',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 17:28:43','','0000-00-00 00:00:00'),(6155,0,0,'I',1861,'I001861',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 17:28:43','','0000-00-00 00:00:00'),(6156,0,0,'I',1862,'I001862',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 18:15:37','','0000-00-00 00:00:00'),(6157,0,0,'I',1863,'I001863',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 18:18:35','','0000-00-00 00:00:00'),(6158,0,0,'I',1864,'I001864',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 18:21:50','darshan','2025-11-25 18:22:08'),(6159,0,0,'I',1864,'I001864',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 18:21:50','darshan','2025-11-25 18:22:08'),(6160,0,0,'I',1866,'I001866',2526,1,'0000-00-00','51306',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 18:26:51','','0000-00-00 00:00:00'),(6161,0,0,'I',1866,'I001866',2526,2,'0000-00-00','51305',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 18:26:51','','0000-00-00 00:00:00'),(6162,0,0,'I',1867,'I001867',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 18:30:02','','0000-00-00 00:00:00'),(6163,0,0,'I',1867,'I001867',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-25 18:30:02','','0000-00-00 00:00:00'),(6164,0,0,'I',1868,'I001868',2526,1,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 18:39:13','','0000-00-00 00:00:00'),(6165,0,0,'I',1868,'I001868',2526,2,'0000-00-00','51538',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-25 18:39:13','','0000-00-00 00:00:00'),(6166,0,0,'I',1868,'I001868',2526,3,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-25 18:39:13','','0000-00-00 00:00:00'),(6167,0,0,'I',1868,'I001868',2526,4,'0000-00-00','51297',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 18:39:13','','0000-00-00 00:00:00'),(6168,0,0,'I',1870,'I001870',2526,1,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 18:45:54','','0000-00-00 00:00:00'),(6169,0,0,'I',1870,'I001870',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 18:45:54','','0000-00-00 00:00:00'),(6170,0,0,'I',1870,'I001870',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,1010,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-25 18:45:54','','0000-00-00 00:00:00'),(6171,0,0,'I',1871,'I001871',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 18:57:28','','0000-00-00 00:00:00'),(6172,0,0,'I',1871,'I001871',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 18:57:28','','0000-00-00 00:00:00'),(6173,0,0,'I',1871,'I001871',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 18:57:28','','0000-00-00 00:00:00'),(6174,0,0,'I',1871,'I001871',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-25 18:57:28','','0000-00-00 00:00:00'),(6175,0,0,'I',1872,'I001872',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 18:58:20','','0000-00-00 00:00:00'),(6176,0,0,'I',1872,'I001872',2526,2,'0000-00-00','51473',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-25 18:58:20','','0000-00-00 00:00:00'),(6177,0,0,'I',1872,'I001872',2526,3,'0000-00-00','51239',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-25 18:58:20','','0000-00-00 00:00:00'),(6178,0,0,'I',1873,'I001873',2526,1,'0000-00-00','51214',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-11-25 19:03:36','','0000-00-00 00:00:00'),(6179,0,0,'I',1873,'I001873',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 19:03:36','','0000-00-00 00:00:00'),(6180,0,0,'I',1873,'I001873',2526,3,'0000-00-00','51507',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-25 19:03:36','','0000-00-00 00:00:00'),(6181,0,0,'I',1873,'I001873',2526,4,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 19:03:36','','0000-00-00 00:00:00'),(6182,0,0,'I',1874,'I001874',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 19:06:06','','0000-00-00 00:00:00'),(6183,0,0,'I',1874,'I001874',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 19:06:06','','0000-00-00 00:00:00'),(6184,0,0,'I',1874,'I001874',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 19:06:06','','0000-00-00 00:00:00'),(6185,0,0,'I',1874,'I001874',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-25 19:06:06','','0000-00-00 00:00:00'),(6186,0,0,'I',1875,'I001875',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-25 19:10:10','drarchit','2025-11-25 19:10:48'),(6187,0,0,'I',1875,'I001875',2526,2,'0000-00-00','51238',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 19:10:10','drarchit','2025-11-25 19:10:48'),(6188,0,0,'I',1875,'I001875',2526,3,'0000-00-00','51228',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-25 19:10:10','drarchit','2025-11-25 19:10:48'),(6189,0,0,'I',1875,'I001875',2526,4,'0000-00-00','51310',0,0,'CAP','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 19:10:10','drarchit','2025-11-25 19:10:48'),(6190,0,0,'I',1875,'I001875',2526,5,'0000-00-00','51243',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-25 19:10:10','drarchit','2025-11-25 19:10:48'),(6191,0,0,'I',1875,'I001875',2526,6,'0000-00-00','51214',0,0,'TAB','','','','',0,120,0,0,0,0,'0-1-1','','Dy',60,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-11-25 19:10:48','','0000-00-00 00:00:00'),(6192,0,0,'I',1876,'I001876',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 19:13:27','darshan','2025-11-25 19:14:05'),(6193,0,0,'I',1876,'I001876',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 19:13:27','darshan','2025-11-25 19:14:05'),(6194,0,0,'I',1878,'I001878',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 19:17:57','drarchit','2025-11-25 19:18:23'),(6195,0,0,'I',1878,'I001878',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-25 19:17:57','drarchit','2025-11-25 19:18:23'),(6196,0,0,'I',1878,'I001878',2526,3,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-25 19:17:57','drarchit','2025-11-25 19:18:23'),(6197,0,0,'I',1878,'I001878',2526,4,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 19:18:23','','0000-00-00 00:00:00'),(6198,0,0,'I',1878,'I001878',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-25 19:18:23','','0000-00-00 00:00:00'),(6199,0,0,'I',1879,'I001879',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 19:20:10','darshan','2025-11-25 19:20:21'),(6200,0,0,'I',1879,'I001879',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 19:20:21','','0000-00-00 00:00:00'),(6201,0,0,'I',1877,'I001877',2526,1,'0000-00-00','51566',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 19:26:36','drarchit','2025-11-25 19:27:47'),(6202,0,0,'I',1877,'I001877',2526,2,'0000-00-00','51517',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 19:26:36','drarchit','2025-11-25 19:27:47'),(6203,0,0,'I',1877,'I001877',2526,3,'0000-00-00','51324',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 19:26:36','drarchit','2025-11-25 19:27:47'),(6204,0,0,'I',1877,'I001877',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-25 19:26:36','drarchit','2025-11-25 19:27:47'),(6205,0,0,'I',1877,'I001877',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 19:26:36','drarchit','2025-11-25 19:27:47'),(6206,0,0,'I',1877,'I001877',2526,6,'0000-00-00','51278',0,0,'CAP','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 19:27:47','','0000-00-00 00:00:00'),(6207,0,0,'I',1880,'I001880',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 19:28:10','','0000-00-00 00:00:00'),(6208,0,0,'I',1880,'I001880',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 19:28:10','','0000-00-00 00:00:00'),(6209,0,0,'I',1881,'I001881',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-25 19:34:09','','0000-00-00 00:00:00'),(6210,0,0,'I',1882,'I001882',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 19:36:39','darshan','2025-11-25 19:36:42'),(6211,0,0,'I',1882,'I001882',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 19:36:39','darshan','2025-11-25 19:36:42'),(6212,0,0,'I',1883,'I001883',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 19:47:10','','0000-00-00 00:00:00'),(6213,0,0,'I',1883,'I001883',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 19:47:10','','0000-00-00 00:00:00'),(6214,0,0,'I',1884,'I001884',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-25 20:09:23','darshan','2025-11-25 20:12:52'),(6215,0,0,'I',1884,'I001884',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 20:09:23','darshan','2025-11-25 20:12:52'),(6216,0,0,'I',1884,'I001884',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 20:12:52','','0000-00-00 00:00:00'),(6217,0,0,'I',1884,'I001884',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-25 20:12:52','','0000-00-00 00:00:00'),(6218,0,0,'I',1884,'I001884',2526,5,'0000-00-00','51197',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-25 20:12:52','','0000-00-00 00:00:00'),(6219,0,0,'I',1885,'I001885',2526,1,'0000-00-00','51487',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-25 20:55:27','drarchit','2025-11-25 20:55:53'),(6220,0,0,'I',1885,'I001885',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-25 20:55:27','drarchit','2025-11-25 20:55:53'),(6221,0,0,'I',1885,'I001885',2526,3,'0000-00-00','51232',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 20:55:27','drarchit','2025-11-25 20:55:53'),(6222,0,0,'I',1885,'I001885',2526,4,'0000-00-00','51262',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 20:55:27','drarchit','2025-11-25 20:55:53'),(6223,0,0,'I',1885,'I001885',2526,5,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-25 20:55:53','','0000-00-00 00:00:00'),(6224,0,0,'I',1886,'I001886',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 10:49:21','darshan','2025-11-26 10:49:50'),(6225,0,0,'I',1886,'I001886',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 10:49:21','darshan','2025-11-26 10:49:50'),(6227,0,0,'I',1886,'I001886',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-26 10:49:21','darshan','2025-11-26 10:49:50'),(6228,0,0,'I',1886,'I001886',2526,4,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 10:49:50','','0000-00-00 00:00:00'),(6229,0,0,'I',1887,'I001887',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 10:57:46','','0000-00-00 00:00:00'),(6230,0,0,'I',1887,'I001887',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 10:57:46','','0000-00-00 00:00:00'),(6231,0,0,'I',1887,'I001887',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-26 10:57:46','','0000-00-00 00:00:00'),(6232,0,0,'I',1887,'I001887',2526,4,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-11-26 10:57:46','','0000-00-00 00:00:00'),(6233,0,0,'I',1887,'I001887',2526,5,'0000-00-00','51215',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 10:57:46','','0000-00-00 00:00:00'),(6234,0,0,'I',1888,'I001888',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 11:04:31','darshan','2025-11-26 11:05:21'),(6235,0,0,'I',1888,'I001888',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-26 11:04:31','darshan','2025-11-26 11:05:21'),(6236,0,0,'I',1888,'I001888',2526,3,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 11:05:21','','0000-00-00 00:00:00'),(6237,0,0,'I',1889,'I001889',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 11:13:45','','0000-00-00 00:00:00'),(6238,0,0,'I',1889,'I001889',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 11:13:45','','0000-00-00 00:00:00'),(6239,0,0,'I',1889,'I001889',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-26 11:13:45','','0000-00-00 00:00:00'),(6240,0,0,'I',1890,'I001890',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 11:19:45','','0000-00-00 00:00:00'),(6241,0,0,'I',1890,'I001890',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 11:19:45','','0000-00-00 00:00:00'),(6242,0,0,'I',1891,'I001891',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 11:24:31','darshan','2025-11-26 11:24:44'),(6243,0,0,'I',1891,'I001891',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 11:24:31','darshan','2025-11-26 11:24:44'),(6247,0,0,'I',1892,'I001892',2526,1,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 11:27:07','drarchit','2025-11-26 11:27:47'),(6248,0,0,'I',1892,'I001892',2526,2,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 11:27:15','drarchit','2025-11-26 11:27:47'),(6249,0,0,'I',1892,'I001892',2526,3,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-26 11:27:47','','0000-00-00 00:00:00'),(6250,0,0,'I',1892,'I001892',2526,4,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 11:27:47','','0000-00-00 00:00:00'),(6251,0,0,'I',1892,'I001892',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-26 11:27:47','','0000-00-00 00:00:00'),(6252,0,0,'I',1892,'I001892',2526,6,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 11:27:47','','0000-00-00 00:00:00'),(6253,0,0,'I',1893,'I001893',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 11:29:11','','0000-00-00 00:00:00'),(6254,0,0,'I',1894,'I001894',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 11:31:43','drarchit','2025-11-26 11:50:12'),(6255,0,0,'I',1895,'I001895',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 11:34:20','','0000-00-00 00:00:00'),(6256,0,0,'I',1895,'I001895',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 11:34:20','','0000-00-00 00:00:00'),(6257,0,0,'I',1895,'I001895',2526,3,'0000-00-00','51269',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 11:34:20','','0000-00-00 00:00:00'),(6258,0,0,'I',1895,'I001895',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-26 11:34:20','','0000-00-00 00:00:00'),(6259,0,0,'I',1895,'I001895',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-26 11:34:20','','0000-00-00 00:00:00'),(6260,0,0,'I',1897,'I001897',2526,1,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-26 11:39:24','','0000-00-00 00:00:00'),(6261,0,0,'I',1897,'I001897',2526,2,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-26 11:39:24','','0000-00-00 00:00:00'),(6262,0,0,'I',1897,'I001897',2526,3,'0000-00-00','51387',0,0,'INJ','','','','',0,2,0,0,0,0,'0-0-6','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-26 11:39:24','','0000-00-00 00:00:00'),(6263,0,0,'I',1898,'I001898',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 11:47:01','','0000-00-00 00:00:00'),(6264,0,0,'I',1898,'I001898',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 11:47:01','','0000-00-00 00:00:00'),(6265,0,0,'I',1898,'I001898',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-26 11:47:01','','0000-00-00 00:00:00'),(6266,0,0,'I',1894,'I001894',2526,2,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 11:50:12','','0000-00-00 00:00:00'),(6267,0,0,'I',1894,'I001894',2526,3,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 11:50:12','','0000-00-00 00:00:00'),(6268,0,0,'I',1894,'I001894',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-26 11:50:12','','0000-00-00 00:00:00'),(6269,0,0,'I',1894,'I001894',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-26 11:50:12','','0000-00-00 00:00:00'),(6270,0,0,'I',1894,'I001894',2526,6,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 11:50:12','','0000-00-00 00:00:00'),(6271,0,0,'I',1894,'I001894',2526,7,'0000-00-00','51297',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 11:50:12','','0000-00-00 00:00:00'),(6272,0,0,'I',1899,'I001899',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 11:57:34','','0000-00-00 00:00:00'),(6274,0,0,'I',1900,'I001900',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 12:03:56','darshan','2025-11-26 12:04:40'),(6275,0,0,'I',1900,'I001900',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 12:03:56','darshan','2025-11-26 12:04:40'),(6278,0,0,'I',1900,'I001900',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 12:04:40','','0000-00-00 00:00:00'),(6279,0,0,'I',1901,'I001901',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 12:17:02','drarchit','2025-11-26 12:17:58'),(6280,0,0,'I',1901,'I001901',2526,2,'0000-00-00','51434',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 12:17:02','drarchit','2025-11-26 12:17:58'),(6281,0,0,'I',1901,'I001901',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-26 12:17:02','drarchit','2025-11-26 12:17:58'),(6282,0,0,'I',1901,'I001901',2526,4,'0000-00-00','51432',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 12:17:02','drarchit','2025-11-26 12:17:58'),(6283,0,0,'I',1901,'I001901',2526,5,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 12:17:02','drarchit','2025-11-26 12:17:58'),(6284,0,0,'I',1901,'I001901',2526,6,'0000-00-00','51412',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 12:17:42','drarchit','2025-11-26 12:17:58'),(6285,0,0,'I',1901,'I001901',2526,7,'0000-00-00','51337',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 12:17:58','','0000-00-00 00:00:00'),(6286,0,0,'I',1902,'I001902',2526,1,'0000-00-00','51321',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 12:33:26','drarchit','2025-11-26 12:34:41'),(6287,0,0,'I',1902,'I001902',2526,2,'0000-00-00','51379',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 12:34:41','','0000-00-00 00:00:00'),(6288,0,0,'I',1902,'I001902',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-26 12:34:41','','0000-00-00 00:00:00'),(6289,0,0,'I',1902,'I001902',2526,4,'0000-00-00','51372',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 12:34:41','','0000-00-00 00:00:00'),(6290,0,0,'I',1902,'I001902',2526,5,'0000-00-00','51253',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-26 12:34:41','','0000-00-00 00:00:00'),(6291,0,0,'I',1902,'I001902',2526,6,'0000-00-00','51380',0,0,'CAP','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 12:34:41','','0000-00-00 00:00:00'),(6292,0,0,'I',1903,'I001903',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 12:36:08','','0000-00-00 00:00:00'),(6293,0,0,'I',1903,'I001903',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 12:36:08','','0000-00-00 00:00:00'),(6294,0,0,'I',1904,'I001904',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,25,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-26 12:42:08','','0000-00-00 00:00:00'),(6295,0,0,'I',1904,'I001904',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 12:42:08','','0000-00-00 00:00:00'),(6296,0,0,'I',1904,'I001904',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 12:42:08','','0000-00-00 00:00:00'),(6297,0,0,'I',1904,'I001904',2526,4,'0000-00-00','51265',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 12:42:08','','0000-00-00 00:00:00'),(6299,0,0,'I',1906,'I001906',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 12:45:16','darshan','2025-11-26 12:45:53'),(6300,0,0,'I',1906,'I001906',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 12:45:16','darshan','2025-11-26 12:45:53'),(6301,0,0,'I',1906,'I001906',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-26 12:45:53','','0000-00-00 00:00:00'),(6302,0,0,'I',1906,'I001906',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-26 12:45:53','','0000-00-00 00:00:00'),(6303,0,0,'I',1907,'I001907',2526,1,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-26 12:57:24','darshan','2025-11-26 12:58:13'),(6304,0,0,'I',1907,'I001907',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 12:57:24','darshan','2025-11-26 12:58:13'),(6305,0,0,'I',1907,'I001907',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-26 12:57:24','darshan','2025-11-26 12:58:13'),(6308,0,0,'I',1907,'I001907',2526,4,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 12:57:24','darshan','2025-11-26 12:58:13'),(6309,0,0,'I',1908,'I001908',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 13:13:47','','0000-00-00 00:00:00'),(6310,0,0,'I',1908,'I001908',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 13:13:47','','0000-00-00 00:00:00'),(6311,0,0,'I',1909,'I001909',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-26 13:17:14','drarchit','2025-11-26 13:20:33'),(6312,0,0,'I',1909,'I001909',2526,2,'0000-00-00','51558',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 13:17:14','drarchit','2025-11-26 13:20:33'),(6313,0,0,'I',1909,'I001909',2526,3,'0000-00-00','51355',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 13:17:49','drarchit','2025-11-26 13:20:33'),(6314,0,0,'I',1909,'I001909',2526,4,'0000-00-00','51250',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 13:19:47','drarchit','2025-11-26 13:20:33'),(6315,0,0,'I',1909,'I001909',2526,5,'0000-00-00','51481',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-26 13:19:47','drarchit','2025-11-26 13:20:33'),(6316,0,0,'I',1909,'I001909',2526,6,'0000-00-00','51548',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 13:19:47','drarchit','2025-11-26 13:20:33'),(6318,0,0,'I',1909,'I001909',2526,7,'0000-00-00','51324',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 13:20:33','','0000-00-00 00:00:00'),(6319,0,0,'I',1909,'I001909',2526,8,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 13:20:33','','0000-00-00 00:00:00'),(6320,0,0,'I',1910,'I001910',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 13:30:49','','0000-00-00 00:00:00'),(6321,0,0,'I',1910,'I001910',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 13:30:49','','0000-00-00 00:00:00'),(6322,0,0,'I',1910,'I001910',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 13:30:49','','0000-00-00 00:00:00'),(6323,0,0,'I',1910,'I001910',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 13:30:49','','0000-00-00 00:00:00'),(6324,0,0,'I',1911,'I001911',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 13:54:24','darshan','2025-11-26 13:54:36'),(6325,0,0,'I',1911,'I001911',2526,2,'0000-00-00','51190',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 13:54:24','darshan','2025-11-26 13:54:36'),(6326,0,0,'I',1911,'I001911',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 13:54:24','darshan','2025-11-26 13:54:36'),(6327,0,0,'I',1912,'I001912',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 13:55:24','drarchit','2025-11-26 13:56:48'),(6328,0,0,'I',1912,'I001912',2526,2,'0000-00-00','51259',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 13:55:24','drarchit','2025-11-26 13:56:48'),(6330,0,0,'I',1912,'I001912',2526,4,'0000-00-00','51229',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-26 13:55:24','drarchit','2025-11-26 13:56:48'),(6331,0,0,'I',1912,'I001912',2526,5,'0000-00-00','51238',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-0.5','','Dy',10,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-11-26 13:56:02','drarchit','2025-11-26 13:56:48'),(6332,0,0,'I',1912,'I001912',2526,3,'0000-00-00','51231',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 13:56:48','','0000-00-00 00:00:00'),(6333,0,0,'I',1912,'I001912',2526,6,'0000-00-00','51467',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-26 13:56:48','','0000-00-00 00:00:00'),(6334,0,0,'I',1913,'I001913',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,25,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 17:00:47','darshan','2025-11-26 17:02:07'),(6336,0,0,'I',1913,'I001913',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 17:00:47','darshan','2025-11-26 17:02:07'),(6337,0,0,'I',1913,'I001913',2526,3,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',0,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-26 17:02:07','','0000-00-00 00:00:00'),(6338,0,0,'I',1914,'I001914',2526,1,'0000-00-00','51211',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 17:06:26','','0000-00-00 00:00:00'),(6339,0,0,'I',1914,'I001914',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 17:06:26','','0000-00-00 00:00:00'),(6340,0,0,'I',1915,'I001915',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 17:15:30','darshan','2025-11-26 17:16:07'),(6341,0,0,'I',1915,'I001915',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 17:15:30','darshan','2025-11-26 17:16:07'),(6342,0,0,'I',1915,'I001915',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 17:15:30','darshan','2025-11-26 17:16:07'),(6344,0,0,'I',1916,'I001916',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 17:46:27','darshan','2025-11-26 17:47:02'),(6345,0,0,'I',1916,'I001916',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 17:46:27','darshan','2025-11-26 17:47:02'),(6346,0,0,'I',1916,'I001916',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-26 17:46:27','darshan','2025-11-26 17:47:02'),(6347,0,0,'I',1916,'I001916',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-26 17:47:02','','0000-00-00 00:00:00'),(6349,0,0,'I',1917,'I001917',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:03:23','drarchit','2025-11-26 18:03:50'),(6350,0,0,'I',1917,'I001917',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-26 18:03:23','drarchit','2025-11-26 18:03:50'),(6351,0,0,'I',1917,'I001917',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:03:23','drarchit','2025-11-26 18:03:50'),(6352,0,0,'I',1917,'I001917',2526,4,'0000-00-00','51517',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:03:50','','0000-00-00 00:00:00'),(6353,0,0,'I',1917,'I001917',2526,5,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:03:50','','0000-00-00 00:00:00'),(6354,0,0,'I',1918,'I001918',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:07:25','','0000-00-00 00:00:00'),(6355,0,0,'I',1918,'I001918',2526,2,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:07:25','','0000-00-00 00:00:00'),(6356,0,0,'I',1918,'I001918',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-26 18:07:25','','0000-00-00 00:00:00'),(6357,0,0,'I',1919,'I001919',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 18:09:25','darshan','2025-11-26 18:11:05'),(6359,0,0,'I',1919,'I001919',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 18:09:40','darshan','2025-11-26 18:11:05'),(6360,0,0,'I',1919,'I001919',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-26 18:10:37','darshan','2025-11-26 18:11:05'),(6361,0,0,'I',1920,'I001920',2526,1,'0000-00-00','51232',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:10:52','','0000-00-00 00:00:00'),(6362,0,0,'I',1920,'I001920',2526,2,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-26 18:10:52','','0000-00-00 00:00:00'),(6363,0,0,'I',1920,'I001920',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-26 18:10:52','','0000-00-00 00:00:00'),(6364,0,0,'I',1920,'I001920',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:10:52','','0000-00-00 00:00:00'),(6365,0,0,'I',1920,'I001920',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-26 18:10:52','','0000-00-00 00:00:00'),(6366,0,0,'I',1920,'I001920',2526,6,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:10:52','','0000-00-00 00:00:00'),(6367,0,0,'I',1921,'I001921',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 18:15:20','','0000-00-00 00:00:00'),(6368,0,0,'I',1921,'I001921',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 18:15:20','','0000-00-00 00:00:00'),(6369,0,0,'I',1922,'I001922',2526,1,'0000-00-00','51321',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:18:28','drarchit','2025-11-26 18:19:11'),(6370,0,0,'I',1922,'I001922',2526,2,'0000-00-00','51379',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:18:28','drarchit','2025-11-26 18:19:11'),(6371,0,0,'I',1922,'I001922',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-26 18:18:28','drarchit','2025-11-26 18:19:11'),(6372,0,0,'I',1922,'I001922',2526,4,'0000-00-00','51380',0,0,'CAP','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:18:28','drarchit','2025-11-26 18:19:11'),(6373,0,0,'I',1922,'I001922',2526,5,'0000-00-00','51253',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-26 18:19:11','','0000-00-00 00:00:00'),(6374,0,0,'I',1922,'I001922',2526,6,'0000-00-00','51372',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:19:11','','0000-00-00 00:00:00'),(6375,0,0,'I',1923,'I001923',2526,1,'0000-00-00','51404',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:27:47','drarchit','2025-11-26 18:29:49'),(6376,0,0,'I',1923,'I001923',2526,2,'0000-00-00','51487',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-26 18:27:47','drarchit','2025-11-26 18:29:49'),(6377,0,0,'I',1923,'I001923',2526,3,'0000-00-00','51235',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-26 18:27:47','drarchit','2025-11-26 18:29:49'),(6378,0,0,'I',1923,'I001923',2526,4,'0000-00-00','51214',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-26 18:27:47','drarchit','2025-11-26 18:29:49'),(6380,0,0,'I',1923,'I001923',2526,5,'0000-00-00','51555',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:29:49','','0000-00-00 00:00:00'),(6381,0,0,'I',1923,'I001923',2526,6,'0000-00-00','51239',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-26 18:29:49','','0000-00-00 00:00:00'),(6382,0,0,'I',1923,'I001923',2526,7,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:29:49','','0000-00-00 00:00:00'),(6383,0,0,'I',1923,'I001923',2526,8,'0000-00-00','51262',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:29:49','','0000-00-00 00:00:00'),(6384,0,0,'I',1923,'I001923',2526,9,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-26 18:29:49','','0000-00-00 00:00:00'),(6385,0,0,'I',1923,'I001923',2526,10,'0000-00-00','51534',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:29:49','','0000-00-00 00:00:00'),(6386,0,0,'I',1924,'I001924',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 18:31:14','darshan','2025-11-26 18:31:17'),(6387,0,0,'I',1925,'I001925',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:36:27','','0000-00-00 00:00:00'),(6388,0,0,'I',1925,'I001925',2526,2,'0000-00-00','51473',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-26 18:36:27','','0000-00-00 00:00:00'),(6389,0,0,'I',1926,'I001926',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 18:40:45','','0000-00-00 00:00:00'),(6390,0,0,'I',1926,'I001926',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 18:40:45','','0000-00-00 00:00:00'),(6391,0,0,'I',1926,'I001926',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-26 18:40:45','','0000-00-00 00:00:00'),(6392,0,0,'I',1927,'I001927',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:44:17','drarchit','2025-11-26 18:44:41'),(6393,0,0,'I',1927,'I001927',2526,2,'0000-00-00','51219',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-11-26 18:44:17','drarchit','2025-11-26 18:44:41'),(6394,0,0,'I',1927,'I001927',2526,3,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:44:17','drarchit','2025-11-26 18:44:41'),(6395,0,0,'I',1927,'I001927',2526,4,'0000-00-00','51527',0,0,'INJ','','','','',0,1,0,0,0,0,'','','Dy',1,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-11-26 18:44:41','','0000-00-00 00:00:00'),(6396,0,0,'I',1928,'I001928',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 18:47:41','','0000-00-00 00:00:00'),(6397,0,0,'I',1929,'I001929',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-26 18:51:06','drarchit','2025-11-26 18:52:52'),(6398,0,0,'I',1929,'I001929',2526,2,'0000-00-00','51568',0,0,'TAB','','','','',0,4,0,0,0,0,'1-0-0','','Wk',4,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:52:36','drarchit','2025-11-26 18:52:52'),(6399,0,0,'I',1929,'I001929',2526,3,'0000-00-00','51516',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:52:36','drarchit','2025-11-26 18:52:52'),(6400,0,0,'I',1929,'I001929',2526,4,'0000-00-00','51343',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-26 18:52:36','drarchit','2025-11-26 18:52:52'),(6401,0,0,'I',1929,'I001929',2526,5,'0000-00-00','51537',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:52:52','','0000-00-00 00:00:00'),(6402,0,0,'I',1930,'I001930',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:57:14','','0000-00-00 00:00:00'),(6403,0,0,'I',1930,'I001930',2526,2,'0000-00-00','51219',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-11-26 18:57:14','','0000-00-00 00:00:00'),(6404,0,0,'I',1930,'I001930',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:57:14','','0000-00-00 00:00:00'),(6405,0,0,'I',1930,'I001930',2526,4,'0000-00-00','51530',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-26 18:57:14','','0000-00-00 00:00:00'),(6406,0,0,'I',1930,'I001930',2526,5,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 18:57:14','','0000-00-00 00:00:00'),(6407,0,0,'I',1931,'I001931',2526,1,'0000-00-00','51373',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 19:03:06','','0000-00-00 00:00:00'),(6408,0,0,'I',1931,'I001931',2526,2,'0000-00-00','51395',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 19:03:06','','0000-00-00 00:00:00'),(6409,0,0,'I',1931,'I001931',2526,3,'0000-00-00','51219',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-11-26 19:03:06','','0000-00-00 00:00:00'),(6410,0,0,'I',1931,'I001931',2526,4,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 19:03:06','','0000-00-00 00:00:00'),(6411,0,0,'I',1931,'I001931',2526,5,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 19:03:06','','0000-00-00 00:00:00'),(6412,0,0,'I',1931,'I001931',2526,6,'0000-00-00','51268',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 19:03:06','','0000-00-00 00:00:00'),(6413,0,0,'I',1931,'I001931',2526,7,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-26 19:03:06','','0000-00-00 00:00:00'),(6414,0,0,'I',1931,'I001931',2526,8,'0000-00-00','51396',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 19:03:06','','0000-00-00 00:00:00'),(6415,0,0,'I',1932,'I001932',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-26 19:09:42','','0000-00-00 00:00:00'),(6416,0,0,'I',1932,'I001932',2526,2,'0000-00-00','51381',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 19:09:42','','0000-00-00 00:00:00'),(6417,0,0,'I',1932,'I001932',2526,3,'0000-00-00','51413',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-26 19:09:42','','0000-00-00 00:00:00'),(6418,0,0,'I',1932,'I001932',2526,4,'0000-00-00','51353',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 19:09:42','','0000-00-00 00:00:00'),(6419,0,0,'I',1933,'I001933',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-26 19:15:46','','0000-00-00 00:00:00'),(6420,0,0,'I',1933,'I001933',2526,2,'0000-00-00','51389',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-26 19:15:46','','0000-00-00 00:00:00'),(6421,0,0,'I',1933,'I001933',2526,3,'0000-00-00','51535',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 19:15:46','','0000-00-00 00:00:00'),(6422,0,0,'I',1934,'I001934',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 19:15:53','darshan','2025-11-26 19:16:29'),(6423,0,0,'I',1934,'I001934',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 19:15:53','darshan','2025-11-26 19:16:29'),(6424,0,0,'I',1934,'I001934',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-26 19:15:53','darshan','2025-11-26 19:16:29'),(6425,0,0,'I',1935,'I001935',2526,1,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 19:23:22','drarchit','2025-11-26 19:23:59'),(6426,0,0,'I',1935,'I001935',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 19:23:22','drarchit','2025-11-26 19:23:59'),(6427,0,0,'I',1935,'I001935',2526,3,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-26 19:23:59','','0000-00-00 00:00:00'),(6428,0,0,'I',1935,'I001935',2526,4,'0000-00-00','51389',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-26 19:23:59','','0000-00-00 00:00:00'),(6429,0,0,'I',1935,'I001935',2526,5,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-26 19:23:59','','0000-00-00 00:00:00'),(6430,0,0,'I',1936,'I001936',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 19:29:24','','0000-00-00 00:00:00'),(6431,0,0,'I',1936,'I001936',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-26 19:29:24','','0000-00-00 00:00:00'),(6432,0,0,'I',1936,'I001936',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 19:29:24','','0000-00-00 00:00:00'),(6433,0,0,'I',1936,'I001936',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 19:29:24','','0000-00-00 00:00:00'),(6434,0,0,'I',1936,'I001936',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-26 19:29:24','','0000-00-00 00:00:00'),(6435,0,0,'I',1937,'I001937',2526,1,'0000-00-00','51412',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 19:36:50','drarchit','2025-11-26 19:37:44'),(6436,0,0,'I',1937,'I001937',2526,2,'0000-00-00','51530',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-26 19:37:44','','0000-00-00 00:00:00'),(6437,0,0,'I',1938,'I001938',2526,1,'0000-00-00','51217',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 20:02:46','','0000-00-00 00:00:00'),(6438,0,0,'I',1938,'I001938',2526,2,'0000-00-00','51223',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-26 20:02:46','','0000-00-00 00:00:00'),(6439,0,0,'I',1938,'I001938',2526,3,'0000-00-00','51519',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 20:02:46','','0000-00-00 00:00:00'),(6440,0,0,'I',1938,'I001938',2526,4,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-26 20:02:46','','0000-00-00 00:00:00'),(6441,0,0,'I',1938,'I001938',2526,5,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-26 20:02:46','','0000-00-00 00:00:00'),(6442,0,0,'I',1939,'I001939',2526,1,'0000-00-00','51375',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-26 20:19:00','drarchit','2025-11-26 20:19:09'),(6443,0,0,'I',1939,'I001939',2526,2,'0000-00-00','51382',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'229','','P',NULL,NULL,'drarchit','2025-11-26 20:19:00','drarchit','2025-11-26 20:19:09'),(6444,0,0,'I',1940,'I001940',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 10:48:06','darshan','2025-11-27 10:48:26'),(6445,0,0,'I',1940,'I001940',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-27 10:48:06','darshan','2025-11-27 10:48:26'),(6446,0,0,'I',1941,'I001941',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 10:52:24','','0000-00-00 00:00:00'),(6447,0,0,'I',1941,'I001941',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 10:52:24','','0000-00-00 00:00:00'),(6448,0,0,'I',1941,'I001941',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 10:52:24','','0000-00-00 00:00:00'),(6449,0,0,'I',1941,'I001941',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-27 10:52:24','','0000-00-00 00:00:00'),(6451,0,0,'I',1942,'I001942',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 10:56:35','darshan','2025-11-27 10:56:55'),(6452,0,0,'I',1942,'I001942',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 10:56:35','darshan','2025-11-27 10:56:55'),(6454,0,0,'I',1943,'I001943',2526,1,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 11:04:45','','0000-00-00 00:00:00'),(6455,0,0,'I',1943,'I001943',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-27 11:04:45','','0000-00-00 00:00:00'),(6456,0,0,'I',1943,'I001943',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 11:04:45','','0000-00-00 00:00:00'),(6457,0,0,'I',1944,'I001944',2526,1,'0000-00-00','51540',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 11:32:13','drarchit','2025-11-27 11:34:20'),(6459,0,0,'I',1944,'I001944',2526,2,'0000-00-00','51228',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-27 11:32:13','drarchit','2025-11-27 11:34:20'),(6460,0,0,'I',1945,'I001945',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-27 11:41:45','darshan','2025-11-27 11:42:31'),(6461,0,0,'I',1945,'I001945',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 11:41:45','darshan','2025-11-27 11:42:31'),(6462,0,0,'I',1945,'I001945',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 11:41:45','darshan','2025-11-27 11:42:31'),(6463,0,0,'I',1945,'I001945',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-27 11:41:45','darshan','2025-11-27 11:42:31'),(6465,0,0,'I',1947,'I001947',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 11:46:55','','0000-00-00 00:00:00'),(6466,0,0,'I',1947,'I001947',2526,2,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',90,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-27 11:46:55','','0000-00-00 00:00:00'),(6467,0,0,'I',1947,'I001947',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',90,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-27 11:46:55','','0000-00-00 00:00:00'),(6468,0,0,'I',1948,'I001948',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 11:50:30','','0000-00-00 00:00:00'),(6469,0,0,'I',1948,'I001948',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 11:50:30','','0000-00-00 00:00:00'),(6470,0,0,'I',1948,'I001948',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',90,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-27 11:50:30','','0000-00-00 00:00:00'),(6472,0,0,'I',1949,'I001949',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 11:53:09','darshan','2025-11-27 11:53:47'),(6473,0,0,'I',1949,'I001949',2526,2,'0000-00-00','51233',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-27 11:53:09','darshan','2025-11-27 11:53:47'),(6475,0,0,'I',1949,'I001949',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-27 11:53:47','','0000-00-00 00:00:00'),(6476,0,0,'I',1950,'I001950',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 11:58:22','','0000-00-00 00:00:00'),(6478,0,0,'I',1951,'I001951',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 12:13:06','','0000-00-00 00:00:00'),(6479,0,0,'I',1951,'I001951',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 12:13:06','','0000-00-00 00:00:00'),(6480,0,0,'I',1952,'I001952',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 12:18:23','','0000-00-00 00:00:00'),(6481,0,0,'I',1952,'I001952',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 12:18:23','','0000-00-00 00:00:00'),(6482,0,0,'I',1952,'I001952',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 12:18:23','','0000-00-00 00:00:00'),(6483,0,0,'I',1952,'I001952',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-27 12:18:23','','0000-00-00 00:00:00'),(6484,0,0,'I',1953,'I001953',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 12:19:09','drarchit','2025-11-27 12:19:20'),(6485,0,0,'I',1953,'I001953',2526,2,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-27 12:19:09','drarchit','2025-11-27 12:19:20'),(6486,0,0,'I',1953,'I001953',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-27 12:19:09','drarchit','2025-11-27 12:19:20'),(6487,0,0,'I',1953,'I001953',2526,4,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 12:19:20','','0000-00-00 00:00:00'),(6488,0,0,'I',1954,'I001954',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 12:24:02','','0000-00-00 00:00:00'),(6489,0,0,'I',1954,'I001954',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 12:24:02','','0000-00-00 00:00:00'),(6490,0,0,'I',1954,'I001954',2526,3,'0000-00-00','51211',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 12:24:02','','0000-00-00 00:00:00'),(6491,0,0,'I',1954,'I001954',2526,4,'0000-00-00','51276',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 12:24:02','','0000-00-00 00:00:00'),(6492,0,0,'I',1956,'I001956',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 12:30:03','darshan','2025-11-27 12:32:10'),(6493,0,0,'I',1956,'I001956',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 12:32:10','','0000-00-00 00:00:00'),(6494,0,0,'I',1956,'I001956',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 12:32:10','','0000-00-00 00:00:00'),(6495,0,0,'I',1956,'I001956',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-27 12:32:10','','0000-00-00 00:00:00'),(6496,0,0,'I',1956,'I001956',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-27 12:32:10','','0000-00-00 00:00:00'),(6497,0,0,'I',1957,'I001957',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 12:44:50','darshan','2025-11-27 12:45:22'),(6498,0,0,'I',1957,'I001957',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 12:45:22','','0000-00-00 00:00:00'),(6499,0,0,'I',1957,'I001957',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 12:45:22','','0000-00-00 00:00:00'),(6500,0,0,'I',1959,'I001959',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-27 12:57:21','darshan','2025-11-27 12:57:42'),(6501,0,0,'I',1959,'I001959',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 12:57:21','darshan','2025-11-27 12:57:42'),(6502,0,0,'I',1959,'I001959',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-27 12:57:21','darshan','2025-11-27 12:57:42'),(6503,0,0,'I',1959,'I001959',2526,4,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 12:57:21','darshan','2025-11-27 12:57:42'),(6504,0,0,'I',1959,'I001959',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-27 12:57:42','','0000-00-00 00:00:00'),(6505,0,0,'I',1955,'I001955',2526,1,'0000-00-00','51217',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 12:58:26','drarchit','2025-11-27 12:58:35'),(6506,0,0,'I',1955,'I001955',2526,2,'0000-00-00','51519',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 12:58:26','drarchit','2025-11-27 12:58:35'),(6507,0,0,'I',1955,'I001955',2526,3,'0000-00-00','51338',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 12:58:26','drarchit','2025-11-27 12:58:35'),(6508,0,0,'I',1955,'I001955',2526,4,'0000-00-00','51345',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 12:58:26','drarchit','2025-11-27 12:58:35'),(6509,0,0,'I',1955,'I001955',2526,5,'0000-00-00','51243',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-27 12:58:26','drarchit','2025-11-27 12:58:35'),(6510,0,0,'I',1955,'I001955',2526,6,'0000-00-00','51538',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-27 12:58:26','drarchit','2025-11-27 12:58:35'),(6511,0,0,'I',1960,'I001960',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 13:06:00','','0000-00-00 00:00:00'),(6512,0,0,'I',1960,'I001960',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 13:06:00','','0000-00-00 00:00:00'),(6513,0,0,'I',1961,'I001961',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 13:10:35','darshan','2025-11-27 13:11:32'),(6514,0,0,'I',1961,'I001961',2526,2,'0000-00-00','51276',0,0,'CAP','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 13:10:35','darshan','2025-11-27 13:11:32'),(6515,0,0,'I',1961,'I001961',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-27 13:10:35','darshan','2025-11-27 13:11:32'),(6516,0,0,'I',1961,'I001961',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 13:10:35','darshan','2025-11-27 13:11:32'),(6517,0,0,'I',1962,'I001962',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 13:19:02','','0000-00-00 00:00:00'),(6518,0,0,'I',1962,'I001962',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 13:19:02','','0000-00-00 00:00:00'),(6519,0,0,'I',1962,'I001962',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-27 13:19:02','','0000-00-00 00:00:00'),(6520,0,0,'I',1963,'I001963',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 13:24:23','','0000-00-00 00:00:00'),(6521,0,0,'I',1963,'I001963',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 13:24:23','','0000-00-00 00:00:00'),(6522,0,0,'I',1963,'I001963',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-27 13:24:23','','0000-00-00 00:00:00'),(6523,0,0,'I',1963,'I001963',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-27 13:24:23','','0000-00-00 00:00:00'),(6524,0,0,'I',1964,'I001964',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 13:32:33','','0000-00-00 00:00:00'),(6525,0,0,'I',1964,'I001964',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 13:32:33','','0000-00-00 00:00:00'),(6526,0,0,'I',1964,'I001964',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-27 13:32:33','','0000-00-00 00:00:00'),(6527,0,0,'I',1964,'I001964',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-27 13:32:33','','0000-00-00 00:00:00'),(6530,0,0,'I',1966,'I001966',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 13:36:11','','0000-00-00 00:00:00'),(6531,0,0,'I',1967,'I001967',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 13:39:58','','0000-00-00 00:00:00'),(6532,0,0,'I',1967,'I001967',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 13:39:58','','0000-00-00 00:00:00'),(6533,0,0,'I',1967,'I001967',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-27 13:39:58','','0000-00-00 00:00:00'),(6538,0,0,'I',1965,'I001965',2526,0,'0000-00-00','51231',0,0,'TAB','ORAL','','','INF',0,14,0,0,0,0,'0-0-0-1','','Dy',14,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(6539,0,0,'I',1965,'I001965',2526,0,'0000-00-00','51473',0,0,'TAB','ORAL','','','INF',0,45,0,0,0,0,'1-1-1-0','','Dy',14,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(6540,0,0,'I',1965,'I001965',2526,0,'0000-00-00','51374',0,0,'CAP','ORAL','','','INF',0,5,0,0,0,0,'1-0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(6541,0,0,'I',1965,'I001965',2526,0,'0000-00-00','51383',0,0,'TAB','ORAL','','','INF',0,10,0,0,0,0,'1-0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(6542,0,0,'I',1968,'I001968',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 14:01:17','','0000-00-00 00:00:00'),(6543,0,0,'I',1968,'I001968',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 14:01:17','','0000-00-00 00:00:00'),(6544,0,0,'I',1969,'I001969',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 14:07:10','','0000-00-00 00:00:00'),(6545,0,0,'I',1969,'I001969',2526,2,'0000-00-00','51192',0,0,'TAB','','','','',0,25,0,0,0,0,'0-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-27 14:07:10','','0000-00-00 00:00:00'),(6546,0,0,'I',1969,'I001969',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 14:07:10','','0000-00-00 00:00:00'),(6547,0,0,'I',1970,'I001970',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 14:13:28','','0000-00-00 00:00:00'),(6548,0,0,'I',1970,'I001970',2526,2,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-27 14:13:28','','0000-00-00 00:00:00'),(6549,0,0,'I',1970,'I001970',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-27 14:13:28','','0000-00-00 00:00:00'),(6550,0,0,'I',1970,'I001970',2526,4,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 14:13:28','','0000-00-00 00:00:00'),(6551,0,0,'I',1970,'I001970',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-27 14:13:28','','0000-00-00 00:00:00'),(6552,0,0,'I',1971,'I001971',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-27 14:25:53','','0000-00-00 00:00:00'),(6553,0,0,'I',1971,'I001971',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 14:25:53','','0000-00-00 00:00:00'),(6554,0,0,'I',1971,'I001971',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-27 14:25:53','','0000-00-00 00:00:00'),(6555,0,0,'I',1971,'I001971',2526,4,'0000-00-00','51284',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 14:25:53','','0000-00-00 00:00:00'),(6556,0,0,'I',1971,'I001971',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-27 14:25:53','','0000-00-00 00:00:00'),(6557,0,0,'I',1971,'I001971',2526,6,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 14:25:53','','0000-00-00 00:00:00'),(6558,0,0,'I',1972,'I001972',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 17:11:00','darshan','2025-11-27 17:11:26'),(6559,0,0,'I',1972,'I001972',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-27 17:11:00','darshan','2025-11-27 17:11:26'),(6560,0,0,'I',1973,'I001973',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 17:17:25','darshan','2025-11-27 17:20:04'),(6561,0,0,'I',1973,'I001973',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 17:17:25','darshan','2025-11-27 17:20:04'),(6564,0,0,'I',1974,'I001974',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 17:22:24','darshan','2025-11-27 17:23:07'),(6565,0,0,'I',1974,'I001974',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 17:22:24','darshan','2025-11-27 17:23:07'),(6568,0,0,'I',1974,'I001974',2526,3,'0000-00-00','51219',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'darshan','2025-11-27 17:22:48','darshan','2025-11-27 17:23:07'),(6569,0,0,'I',1975,'I001975',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 17:26:34','','0000-00-00 00:00:00'),(6570,0,0,'I',1975,'I001975',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 17:26:34','','0000-00-00 00:00:00'),(6571,0,0,'I',1975,'I001975',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-11-27 17:26:34','','0000-00-00 00:00:00'),(6572,0,0,'I',1976,'I001976',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 17:41:18','','0000-00-00 00:00:00'),(6573,0,0,'I',1976,'I001976',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 17:41:18','','0000-00-00 00:00:00'),(6574,0,0,'I',1976,'I001976',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 17:41:18','','0000-00-00 00:00:00'),(6575,0,0,'I',1976,'I001976',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-27 17:41:18','','0000-00-00 00:00:00'),(6576,0,0,'I',1977,'I001977',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 17:51:52','','0000-00-00 00:00:00'),(6577,0,0,'I',1978,'I001978',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 18:07:22','darshan','2025-11-27 18:09:31'),(6578,0,0,'I',1978,'I001978',2526,2,'0000-00-00','51190',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-27 18:07:22','darshan','2025-11-27 18:09:31'),(6579,0,0,'I',1979,'I001979',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:13:43','drarchit','2025-11-27 18:14:31'),(6580,0,0,'I',1979,'I001979',2526,2,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:13:43','drarchit','2025-11-27 18:14:31'),(6581,0,0,'I',1979,'I001979',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:14:31','','0000-00-00 00:00:00'),(6582,0,0,'I',1979,'I001979',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-27 18:14:31','','0000-00-00 00:00:00'),(6583,0,0,'I',1979,'I001979',2526,5,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:14:31','','0000-00-00 00:00:00'),(6584,0,0,'I',1979,'I001979',2526,6,'0000-00-00','51219',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-11-27 18:14:31','','0000-00-00 00:00:00'),(6585,0,0,'I',1979,'I001979',2526,7,'0000-00-00','51249',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:14:31','','0000-00-00 00:00:00'),(6586,0,0,'I',1946,'I001946',2526,1,'0000-00-00','51248',0,0,'CAP','','','','',0,12,0,0,0,0,'1-0-0','','Wk',12,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:16:41','drarchit','2025-11-27 18:17:20'),(6587,0,0,'I',1946,'I001946',2526,2,'0000-00-00','51337',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:17:20','','0000-00-00 00:00:00'),(6588,0,0,'I',1946,'I001946',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:17:20','','0000-00-00 00:00:00'),(6589,0,0,'I',1980,'I001980',2526,1,'0000-00-00','51412',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:20:34','drarchit','2025-11-27 18:21:05'),(6590,0,0,'I',1980,'I001980',2526,2,'0000-00-00','51219',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-11-27 18:20:34','drarchit','2025-11-27 18:21:05'),(6591,0,0,'I',1980,'I001980',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:20:34','drarchit','2025-11-27 18:21:05'),(6592,0,0,'I',1980,'I001980',2526,4,'0000-00-00','51248',0,0,'CAP','','','','',0,12,0,0,0,0,'1-0-0','','Wk',12,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:20:34','drarchit','2025-11-27 18:21:05'),(6593,0,0,'I',1981,'I001981',2526,1,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 18:20:50','','0000-00-00 00:00:00'),(6594,0,0,'I',1981,'I001981',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 18:20:50','','0000-00-00 00:00:00'),(6595,0,0,'I',1981,'I001981',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 18:20:50','','0000-00-00 00:00:00'),(6596,0,0,'I',1981,'I001981',2526,4,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 18:20:50','','0000-00-00 00:00:00'),(6597,0,0,'I',1981,'I001981',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-27 18:20:50','','0000-00-00 00:00:00'),(6598,0,0,'I',1980,'I001980',2526,5,'0000-00-00','51527',0,0,'INJ','','','','',0,1,0,0,0,0,'','','Dy',1,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-11-27 18:21:05','','0000-00-00 00:00:00'),(6599,0,0,'I',1982,'I001982',2526,1,'0000-00-00','51296',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-11-27 18:22:47','drjayant','2025-11-27 18:24:10'),(6600,0,0,'I',1982,'I001982',2526,2,'0000-00-00','51425',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-27 18:24:10','','0000-00-00 00:00:00'),(6601,0,0,'I',1983,'I001983',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-27 18:29:05','','0000-00-00 00:00:00'),(6602,0,0,'I',1983,'I001983',2526,2,'0000-00-00','51389',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-27 18:29:05','','0000-00-00 00:00:00'),(6603,0,0,'I',1983,'I001983',2526,3,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-27 18:29:05','','0000-00-00 00:00:00'),(6604,0,0,'I',1983,'I001983',2526,4,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:29:05','','0000-00-00 00:00:00'),(6605,0,0,'I',1983,'I001983',2526,5,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:29:05','','0000-00-00 00:00:00'),(6606,0,0,'I',1984,'I001984',2526,1,'0000-00-00','51424',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-27 18:29:07','','0000-00-00 00:00:00'),(6607,0,0,'I',1984,'I001984',2526,2,'0000-00-00','51320',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-11-27 18:29:07','','0000-00-00 00:00:00'),(6608,0,0,'I',1984,'I001984',2526,3,'0000-00-00','51350',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-11-27 18:29:07','','0000-00-00 00:00:00'),(6612,0,0,'I',1985,'I001985',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-27 18:35:42','','0000-00-00 00:00:00'),(6613,0,0,'I',1986,'I001986',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:42:42','','0000-00-00 00:00:00'),(6614,0,0,'I',1986,'I001986',2526,2,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-27 18:42:42','','0000-00-00 00:00:00'),(6615,0,0,'I',1986,'I001986',2526,3,'0000-00-00','51299',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:42:42','','0000-00-00 00:00:00'),(6616,0,0,'I',1986,'I001986',2526,4,'0000-00-00','51267',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:42:42','','0000-00-00 00:00:00'),(6617,0,0,'I',1987,'I001987',2526,1,'0000-00-00','51321',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:53:43','','0000-00-00 00:00:00'),(6618,0,0,'I',1987,'I001987',2526,2,'0000-00-00','51379',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:53:43','','0000-00-00 00:00:00'),(6619,0,0,'I',1987,'I001987',2526,3,'0000-00-00','51374',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-27 18:53:43','','0000-00-00 00:00:00'),(6620,0,0,'I',1987,'I001987',2526,4,'0000-00-00','51267',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:53:43','','0000-00-00 00:00:00'),(6621,0,0,'I',1987,'I001987',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 18:53:43','','0000-00-00 00:00:00'),(6622,0,0,'I',1988,'I001988',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 19:01:02','drarchit','2025-11-27 19:01:26'),(6623,0,0,'I',1988,'I001988',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-27 19:01:02','drarchit','2025-11-27 19:01:26'),(6625,0,0,'I',1988,'I001988',2526,3,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 19:01:02','drarchit','2025-11-27 19:01:26'),(6626,0,0,'I',1988,'I001988',2526,4,'0000-00-00','51219',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-11-27 19:01:07','drarchit','2025-11-27 19:01:26'),(6627,0,0,'I',1989,'I001989',2526,1,'0000-00-00','51329',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-27 19:07:53','drarchit','2025-11-27 19:10:07'),(6628,0,0,'I',1989,'I001989',2526,2,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 19:08:54','drarchit','2025-11-27 19:10:07'),(6629,0,0,'I',1989,'I001989',2526,3,'0000-00-00','51353',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 19:08:54','drarchit','2025-11-27 19:10:07'),(6633,0,0,'I',1989,'I001989',2526,4,'0000-00-00','51279',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 19:09:40','drarchit','2025-11-27 19:10:07'),(6634,0,0,'I',1989,'I001989',2526,5,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 19:09:40','drarchit','2025-11-27 19:10:07'),(6635,0,0,'I',1989,'I001989',2526,6,'0000-00-00','51462',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 19:10:07','','0000-00-00 00:00:00'),(6636,0,0,'I',1990,'I001990',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-27 19:11:49','','0000-00-00 00:00:00'),(6637,0,0,'I',1991,'I001991',2526,1,'0000-00-00','51571',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 19:18:51','drarchit','2025-11-27 19:19:06'),(6638,0,0,'I',1991,'I001991',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-27 19:18:51','drarchit','2025-11-27 19:19:06'),(6639,0,0,'I',1991,'I001991',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 19:18:51','drarchit','2025-11-27 19:19:06'),(6640,0,0,'I',1991,'I001991',2526,4,'0000-00-00','51249',0,0,'TAB','','','','',0,15,0,0,0,0,'0-1-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 19:18:51','drarchit','2025-11-27 19:19:06'),(6641,0,0,'I',1991,'I001991',2526,5,'0000-00-00','51248',0,0,'CAP','','','','',0,4,0,0,0,0,'1-0-0','','Wk',4,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 19:18:51','drarchit','2025-11-27 19:19:06'),(6642,0,0,'I',1992,'I001992',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 19:20:04','darshan','2025-11-27 19:21:03'),(6643,0,0,'I',1992,'I001992',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 19:20:04','darshan','2025-11-27 19:21:03'),(6644,0,0,'I',1992,'I001992',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-27 19:20:04','darshan','2025-11-27 19:21:03'),(6645,0,0,'I',1992,'I001992',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 19:20:04','darshan','2025-11-27 19:21:03'),(6646,0,0,'I',1992,'I001992',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-27 19:20:04','darshan','2025-11-27 19:21:03'),(6647,0,0,'I',1993,'I001993',2526,1,'0000-00-00','51469',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-27 19:25:51','','0000-00-00 00:00:00'),(6648,0,0,'I',1993,'I001993',2526,2,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 19:25:51','','0000-00-00 00:00:00'),(6649,0,0,'I',1993,'I001993',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-27 19:25:51','','0000-00-00 00:00:00'),(6650,0,0,'I',1993,'I001993',2526,4,'0000-00-00','51300',0,0,'TAB','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'drarchit','2025-11-27 19:25:51','','0000-00-00 00:00:00'),(6651,0,0,'I',1994,'I001994',2526,1,'0000-00-00','51410',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-27 19:29:01','','0000-00-00 00:00:00'),(6652,0,0,'I',1994,'I001994',2526,2,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 19:29:01','','0000-00-00 00:00:00'),(6653,0,0,'I',1994,'I001994',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 19:29:01','','0000-00-00 00:00:00'),(6654,0,0,'I',1994,'I001994',2526,4,'0000-00-00','51219',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-11-27 19:29:01','','0000-00-00 00:00:00'),(6655,0,0,'I',1995,'I001995',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 19:30:03','','0000-00-00 00:00:00'),(6656,0,0,'I',1995,'I001995',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 19:30:03','','0000-00-00 00:00:00'),(6657,0,0,'I',1995,'I001995',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-27 19:30:03','','0000-00-00 00:00:00'),(6658,0,0,'I',1997,'I001997',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 20:23:12','','0000-00-00 00:00:00'),(6659,0,0,'I',1997,'I001997',2526,2,'0000-00-00','51374',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-27 20:23:12','','0000-00-00 00:00:00'),(6660,0,0,'I',1997,'I001997',2526,3,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 20:23:12','','0000-00-00 00:00:00'),(6661,0,0,'I',1997,'I001997',2526,4,'0000-00-00','51517',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 20:23:12','','0000-00-00 00:00:00'),(6662,0,0,'I',1998,'I001998',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-27 20:27:31','drarchit','2025-11-27 20:29:13'),(6663,0,0,'I',1998,'I001998',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-27 20:27:31','drarchit','2025-11-27 20:29:13'),(6664,0,0,'I',1998,'I001998',2526,3,'0000-00-00','51572',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-27 20:29:13','','0000-00-00 00:00:00'),(6665,0,0,'I',1998,'I001998',2526,4,'0000-00-00','51573',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-27 20:29:13','','0000-00-00 00:00:00'),(6666,0,0,'I',1999,'I001999',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 10:51:45','','0000-00-00 00:00:00'),(6667,0,0,'I',1999,'I001999',2526,2,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',20,0,0,0,0,0,0,0,0,0,'402','','P',NULL,NULL,'darshan','2025-11-28 10:51:45','','0000-00-00 00:00:00'),(6668,0,0,'I',2000,'I002000',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-28 10:54:57','darshan','2025-11-28 10:55:27'),(6669,0,0,'I',2000,'I002000',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 10:54:57','darshan','2025-11-28 10:55:27'),(6670,0,0,'I',2000,'I002000',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 10:54:57','darshan','2025-11-28 10:55:27'),(6673,0,0,'I',2001,'I002001',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,90,0,0,0,0,'.5-0-.5','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 11:09:01','','0000-00-00 00:00:00'),(6674,0,0,'I',2001,'I002001',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 11:09:01','','0000-00-00 00:00:00'),(6675,0,0,'I',2002,'I002002',2526,1,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-28 11:15:13','','0000-00-00 00:00:00'),(6676,0,0,'I',2002,'I002002',2526,2,'0000-00-00','51517',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 11:15:13','','0000-00-00 00:00:00'),(6677,0,0,'I',2002,'I002002',2526,3,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 11:15:13','','0000-00-00 00:00:00'),(6678,0,0,'I',2003,'I002003',2526,1,'0000-00-00','51349',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-0','','Dy',0,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-11-28 11:31:45','','0000-00-00 00:00:00'),(6679,0,0,'I',2004,'I002004',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 11:38:51','darshan','2025-11-28 13:51:26'),(6680,0,0,'I',2004,'I002004',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 11:38:51','darshan','2025-11-28 13:51:26'),(6681,0,0,'I',2004,'I002004',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 11:38:51','darshan','2025-11-28 13:51:26'),(6682,0,0,'I',2005,'I002005',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 11:41:25','darshan','2025-11-28 11:43:19'),(6683,0,0,'I',2005,'I002005',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 11:41:25','darshan','2025-11-28 11:43:19'),(6684,0,0,'I',2005,'I002005',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 11:41:25','darshan','2025-11-28 11:43:19'),(6686,0,0,'I',2005,'I002005',2526,4,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 11:41:44','darshan','2025-11-28 11:43:19'),(6688,0,0,'I',2006,'I002006',2526,1,'0000-00-00','51348',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 11:43:19','drarchit','2025-11-28 11:44:14'),(6689,0,0,'I',2006,'I002006',2526,2,'0000-00-00','51336',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 11:43:19','drarchit','2025-11-28 11:44:14'),(6691,0,0,'I',2006,'I002006',2526,3,'0000-00-00','51492',0,0,'INJ','','','','',0,4,0,0,0,0,'0-22-12','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-28 11:44:14','','0000-00-00 00:00:00'),(6692,0,0,'I',2006,'I002006',2526,4,'0000-00-00','51538',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-28 11:44:14','','0000-00-00 00:00:00'),(6694,0,0,'I',2007,'I002007',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 11:48:08','darshan','2025-11-28 11:48:42'),(6695,0,0,'I',2007,'I002007',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 11:48:08','darshan','2025-11-28 11:48:42'),(6698,0,0,'I',2007,'I002007',2526,3,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 11:48:29','darshan','2025-11-28 11:48:42'),(6699,0,0,'I',2008,'I002008',2526,1,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 11:50:06','','0000-00-00 00:00:00'),(6700,0,0,'I',2008,'I002008',2526,2,'0000-00-00','51505',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-28 11:50:06','','0000-00-00 00:00:00'),(6701,0,0,'I',2008,'I002008',2526,3,'0000-00-00','51413',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-11-28 11:50:06','','0000-00-00 00:00:00'),(6702,0,0,'I',2008,'I002008',2526,4,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-28 11:50:06','','0000-00-00 00:00:00'),(6703,0,0,'I',2009,'I002009',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 11:51:18','darshan','2025-11-28 11:51:52'),(6704,0,0,'I',2009,'I002009',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 11:51:18','darshan','2025-11-28 11:51:52'),(6705,0,0,'I',2009,'I002009',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-28 11:51:18','darshan','2025-11-28 11:51:52'),(6707,0,0,'I',2010,'I002010',2526,1,'0000-00-00','51455',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-0','','Dy',0,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-28 11:55:27','','0000-00-00 00:00:00'),(6708,0,0,'I',2010,'I002010',2526,2,'0000-00-00','51350',0,0,'TAB','','','','',0,0,0,0,0,0,'0-0-1','','Dy',0,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-11-28 11:55:27','','0000-00-00 00:00:00'),(6709,0,0,'I',2011,'I002011',2526,1,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 11:57:17','drarchit','2025-11-28 12:03:15'),(6710,0,0,'I',2012,'I002012',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 12:00:06','','0000-00-00 00:00:00'),(6711,0,0,'I',2012,'I002012',2526,2,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-28 12:00:06','','0000-00-00 00:00:00'),(6712,0,0,'I',2012,'I002012',2526,3,'0000-00-00','51403',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 12:00:06','','0000-00-00 00:00:00'),(6713,0,0,'I',2012,'I002012',2526,4,'0000-00-00','51389',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-28 12:00:06','','0000-00-00 00:00:00'),(6714,0,0,'I',2012,'I002012',2526,5,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-28 12:00:06','','0000-00-00 00:00:00'),(6715,0,0,'I',2012,'I002012',2526,6,'0000-00-00','51406',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 12:00:06','','0000-00-00 00:00:00'),(6716,0,0,'I',2012,'I002012',2526,7,'0000-00-00','51407',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 12:00:06','','0000-00-00 00:00:00'),(6717,0,0,'I',2012,'I002012',2526,8,'0000-00-00','51482',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-28 12:00:06','','0000-00-00 00:00:00'),(6718,0,0,'I',2013,'I002013',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 12:00:31','darshan','2025-11-28 13:59:39'),(6719,0,0,'I',2013,'I002013',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 12:00:31','darshan','2025-11-28 13:59:39'),(6720,0,0,'I',2013,'I002013',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 12:00:31','darshan','2025-11-28 13:59:39'),(6721,0,0,'I',2013,'I002013',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-28 12:00:31','darshan','2025-11-28 13:59:39'),(6722,0,0,'I',2011,'I002011',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 12:03:15','','0000-00-00 00:00:00'),(6723,0,0,'I',2011,'I002011',2526,3,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-28 12:03:15','','0000-00-00 00:00:00'),(6724,0,0,'I',2011,'I002011',2526,4,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 12:03:15','','0000-00-00 00:00:00'),(6725,0,0,'I',2011,'I002011',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-28 12:03:15','','0000-00-00 00:00:00'),(6726,0,0,'I',2011,'I002011',2526,6,'0000-00-00','51272',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 12:03:15','','0000-00-00 00:00:00'),(6727,0,0,'I',2014,'I002014',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 12:03:20','darshan','2025-11-28 12:03:53'),(6728,0,0,'I',2014,'I002014',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-28 12:03:20','darshan','2025-11-28 12:03:53'),(6729,0,0,'I',2014,'I002014',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 12:03:20','darshan','2025-11-28 12:03:53'),(6732,0,0,'I',2015,'I002015',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-28 12:15:57','darshan','2025-11-28 12:16:50'),(6733,0,0,'I',2015,'I002015',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 12:15:57','darshan','2025-11-28 12:16:50'),(6734,0,0,'I',2015,'I002015',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 12:15:57','darshan','2025-11-28 12:16:50'),(6735,0,0,'I',2016,'I002016',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-28 12:18:54','','0000-00-00 00:00:00'),(6736,0,0,'I',2016,'I002016',2526,2,'0000-00-00','51214',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-11-28 12:18:54','','0000-00-00 00:00:00'),(6737,0,0,'I',2016,'I002016',2526,3,'0000-00-00','51352',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 12:18:54','','0000-00-00 00:00:00'),(6739,0,0,'I',2017,'I002017',2526,1,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 12:22:11','','0000-00-00 00:00:00'),(6740,0,0,'I',2017,'I002017',2526,2,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 12:22:11','','0000-00-00 00:00:00'),(6741,0,0,'I',2017,'I002017',2526,3,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 12:22:11','','0000-00-00 00:00:00'),(6742,0,0,'I',2017,'I002017',2526,4,'0000-00-00','51487',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-28 12:22:11','','0000-00-00 00:00:00'),(6743,0,0,'I',2017,'I002017',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-28 12:22:11','','0000-00-00 00:00:00'),(6744,0,0,'I',2017,'I002017',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-28 12:22:11','','0000-00-00 00:00:00'),(6745,0,0,'I',2018,'I002018',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 12:22:26','darshan','2025-11-28 12:23:35'),(6747,0,0,'I',2018,'I002018',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 12:22:26','darshan','2025-11-28 12:23:35'),(6749,0,0,'I',2018,'I002018',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 12:23:35','','0000-00-00 00:00:00'),(6750,0,0,'I',2019,'I002019',2526,1,'0000-00-00','51487',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-28 12:41:03','drarchit','2025-11-28 12:41:59'),(6752,0,0,'I',2019,'I002019',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-28 12:41:39','drarchit','2025-11-28 12:41:59'),(6753,0,0,'I',2019,'I002019',2526,3,'0000-00-00','51571',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 12:41:59','','0000-00-00 00:00:00'),(6754,0,0,'I',2019,'I002019',2526,4,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 12:41:59','','0000-00-00 00:00:00'),(6755,0,0,'I',2020,'I002020',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 13:02:40','','0000-00-00 00:00:00'),(6756,0,0,'I',2020,'I002020',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 13:02:40','','0000-00-00 00:00:00'),(6757,0,0,'I',2020,'I002020',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 13:02:40','','0000-00-00 00:00:00'),(6758,0,0,'I',2021,'I002021',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 13:07:04','darshan','2025-11-28 13:07:20'),(6761,0,0,'I',2022,'I002022',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 13:12:51','darshan','2025-11-28 13:12:59'),(6762,0,0,'I',2022,'I002022',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 13:12:51','darshan','2025-11-28 13:12:59'),(6763,0,0,'I',2022,'I002022',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-28 13:12:51','darshan','2025-11-28 13:12:59'),(6764,0,0,'I',2022,'I002022',2526,4,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 13:12:51','darshan','2025-11-28 13:12:59'),(6765,0,0,'I',2023,'I002023',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-28 13:40:58','','0000-00-00 00:00:00'),(6766,0,0,'I',2023,'I002023',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 13:40:58','','0000-00-00 00:00:00'),(6767,0,0,'I',2024,'I002024',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 13:43:18','','0000-00-00 00:00:00'),(6768,0,0,'I',2025,'I002025',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 13:49:10','','0000-00-00 00:00:00'),(6769,0,0,'I',2025,'I002025',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 13:49:10','','0000-00-00 00:00:00'),(6770,0,0,'I',2025,'I002025',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 13:49:10','','0000-00-00 00:00:00'),(6771,0,0,'I',2025,'I002025',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-28 13:49:10','','0000-00-00 00:00:00'),(6772,0,0,'I',2004,'I002004',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,0,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-28 13:51:26','','0000-00-00 00:00:00'),(6773,0,0,'I',2026,'I002026',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 13:53:15','darshan','2025-11-28 13:53:54'),(6774,0,0,'I',2026,'I002026',2526,2,'0000-00-00','51190',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 13:53:15','darshan','2025-11-28 13:53:54'),(6775,0,0,'I',2026,'I002026',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 13:53:15','darshan','2025-11-28 13:53:54'),(6777,0,0,'I',2026,'I002026',2526,4,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 13:53:54','','0000-00-00 00:00:00'),(6778,0,0,'I',2027,'I002027',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 14:02:32','','0000-00-00 00:00:00'),(6779,0,0,'I',2027,'I002027',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 14:02:32','','0000-00-00 00:00:00'),(6780,0,0,'I',2027,'I002027',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 14:02:32','','0000-00-00 00:00:00'),(6781,0,0,'I',2027,'I002027',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-28 14:02:32','','0000-00-00 00:00:00'),(6782,0,0,'I',2027,'I002027',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-28 14:02:32','','0000-00-00 00:00:00'),(6783,0,0,'I',2028,'I002028',2526,1,'0000-00-00','51277',0,0,'OINT','','','','',0,2,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'darshan','2025-11-28 14:12:16','darshan','2025-11-28 14:12:28'),(6784,0,0,'I',2028,'I002028',2526,2,'0000-00-00','51276',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 14:12:16','darshan','2025-11-28 14:12:28'),(6785,0,0,'I',2029,'I002029',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 14:35:40','darshan','2025-11-28 14:36:16'),(6786,0,0,'I',2029,'I002029',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 14:35:40','darshan','2025-11-28 14:36:16'),(6787,0,0,'I',2030,'I002030',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 14:46:54','','0000-00-00 00:00:00'),(6788,0,0,'I',2030,'I002030',2526,2,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 14:46:54','','0000-00-00 00:00:00'),(6789,0,0,'I',2030,'I002030',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-28 14:46:54','','0000-00-00 00:00:00'),(6793,0,0,'I',2032,'I002032',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 17:06:55','','0000-00-00 00:00:00'),(6794,0,0,'I',2032,'I002032',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 17:06:55','','0000-00-00 00:00:00'),(6795,0,0,'I',2032,'I002032',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 17:06:55','','0000-00-00 00:00:00'),(6796,0,0,'I',2033,'I002033',2526,1,'0000-00-00','51418',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 17:12:02','','0000-00-00 00:00:00'),(6797,0,0,'I',2035,'I002035',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-11-28 17:48:16','darshan','2025-11-28 17:49:42'),(6798,0,0,'I',2035,'I002035',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 17:49:36','darshan','2025-11-28 17:49:42'),(6799,0,0,'I',2035,'I002035',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-28 17:49:36','darshan','2025-11-28 17:49:42'),(6800,0,0,'I',2035,'I002035',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 17:49:36','darshan','2025-11-28 17:49:42'),(6801,0,0,'I',2036,'I002036',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-28 18:12:30','darshan','2025-11-28 18:13:05'),(6802,0,0,'I',2036,'I002036',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 18:12:30','darshan','2025-11-28 18:13:05'),(6804,0,0,'I',2037,'I002037',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 18:18:09','darshan','2025-11-28 18:18:21'),(6805,0,0,'I',2037,'I002037',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 18:18:21','','0000-00-00 00:00:00'),(6806,0,0,'I',2038,'I002038',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 18:18:46','','0000-00-00 00:00:00'),(6807,0,0,'I',2038,'I002038',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-28 18:18:46','','0000-00-00 00:00:00'),(6808,0,0,'I',2038,'I002038',2526,3,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 18:18:46','','0000-00-00 00:00:00'),(6809,0,0,'I',2038,'I002038',2526,4,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 18:18:46','','0000-00-00 00:00:00'),(6810,0,0,'I',2039,'I002039',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 18:24:31','','0000-00-00 00:00:00'),(6811,0,0,'I',2039,'I002039',2526,2,'0000-00-00','51434',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 18:24:31','','0000-00-00 00:00:00'),(6812,0,0,'I',2039,'I002039',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-28 18:24:31','','0000-00-00 00:00:00'),(6813,0,0,'I',2039,'I002039',2526,4,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 18:24:31','','0000-00-00 00:00:00'),(6816,0,0,'I',2041,'I002041',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 18:29:00','','0000-00-00 00:00:00'),(6817,0,0,'I',2041,'I002041',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 18:29:00','','0000-00-00 00:00:00'),(6818,0,0,'I',2041,'I002041',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 18:29:00','','0000-00-00 00:00:00'),(6819,0,0,'I',2041,'I002041',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 18:29:00','','0000-00-00 00:00:00'),(6820,0,0,'I',2041,'I002041',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-28 18:29:00','','0000-00-00 00:00:00'),(6821,0,0,'I',2040,'I002040',2526,1,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-28 18:29:41','drarchit','2025-11-28 18:29:47'),(6822,0,0,'I',2040,'I002040',2526,2,'0000-00-00','51379',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 18:29:41','drarchit','2025-11-28 18:29:47'),(6823,0,0,'I',2040,'I002040',2526,3,'0000-00-00','51436',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 18:29:41','drarchit','2025-11-28 18:29:47'),(6824,0,0,'I',2040,'I002040',2526,4,'0000-00-00','51370',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-28 18:29:41','drarchit','2025-11-28 18:29:47'),(6825,0,0,'I',2042,'I002042',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 18:33:47','','0000-00-00 00:00:00'),(6826,0,0,'I',2042,'I002042',2526,2,'0000-00-00','51418',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 18:33:47','','0000-00-00 00:00:00'),(6827,0,0,'I',2042,'I002042',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-28 18:33:47','','0000-00-00 00:00:00'),(6828,0,0,'I',2042,'I002042',2526,4,'0000-00-00','51215',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 18:33:47','','0000-00-00 00:00:00'),(6829,0,0,'I',2043,'I002043',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 18:43:19','','0000-00-00 00:00:00'),(6830,0,0,'I',2043,'I002043',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 18:43:19','','0000-00-00 00:00:00'),(6831,0,0,'I',2043,'I002043',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 18:43:19','','0000-00-00 00:00:00'),(6832,0,0,'I',2043,'I002043',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-28 18:43:19','','0000-00-00 00:00:00'),(6833,0,0,'I',2044,'I002044',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-28 18:49:25','drjayant','2025-11-28 18:51:08'),(6834,0,0,'I',2044,'I002044',2526,2,'0000-00-00','51409',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-28 18:49:25','drjayant','2025-11-28 18:51:08'),(6835,0,0,'I',2044,'I002044',2526,3,'0000-00-00','51574',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-28 18:51:08','','0000-00-00 00:00:00'),(6836,0,0,'I',2044,'I002044',2526,4,'0000-00-00','51544',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drjayant','2025-11-28 18:51:08','','0000-00-00 00:00:00'),(6837,0,0,'I',2045,'I002045',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 18:51:43','','0000-00-00 00:00:00'),(6838,0,0,'I',2045,'I002045',2526,2,'0000-00-00','51267',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 18:51:43','','0000-00-00 00:00:00'),(6839,0,0,'I',2031,'I002031',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 18:59:26','darshan','2025-11-28 18:59:34'),(6840,0,0,'I',2031,'I002031',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 18:59:26','darshan','2025-11-28 18:59:34'),(6841,0,0,'I',2031,'I002031',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 18:59:26','darshan','2025-11-28 18:59:34'),(6842,0,0,'I',2031,'I002031',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-28 18:59:26','darshan','2025-11-28 18:59:34'),(6843,0,0,'I',2046,'I002046',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-28 19:03:40','drarchit','2025-11-28 19:04:46'),(6844,0,0,'I',2046,'I002046',2526,2,'0000-00-00','51343',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-28 19:03:40','drarchit','2025-11-28 19:04:46'),(6846,0,0,'I',2046,'I002046',2526,3,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 19:03:40','drarchit','2025-11-28 19:04:46'),(6847,0,0,'I',2046,'I002046',2526,4,'0000-00-00','51417',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 19:03:40','drarchit','2025-11-28 19:04:46'),(6848,0,0,'I',2046,'I002046',2526,5,'0000-00-00','51505',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-28 19:04:46','','0000-00-00 00:00:00'),(6849,0,0,'I',2047,'I002047',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 19:07:32','drarchit','2025-11-28 19:08:47'),(6850,0,0,'I',2047,'I002047',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-28 19:08:47','','0000-00-00 00:00:00'),(6851,0,0,'I',2047,'I002047',2526,3,'0000-00-00','51436',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 19:08:47','','0000-00-00 00:00:00'),(6852,0,0,'I',2048,'I002048',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 19:10:05','darshan','2025-11-28 19:10:46'),(6853,0,0,'I',2048,'I002048',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 19:10:05','darshan','2025-11-28 19:10:46'),(6855,0,0,'I',2048,'I002048',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-28 19:10:05','darshan','2025-11-28 19:10:46'),(6856,0,0,'I',2048,'I002048',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-11-28 19:10:46','','0000-00-00 00:00:00'),(6857,0,0,'I',2049,'I002049',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 19:12:43','darshan','2025-11-28 19:13:22'),(6858,0,0,'I',2049,'I002049',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 19:12:43','darshan','2025-11-28 19:13:22'),(6860,0,0,'I',2049,'I002049',2526,3,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 19:13:00','darshan','2025-11-28 19:13:22'),(6861,0,0,'I',2050,'I002050',2526,1,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 19:17:10','drarchit','2025-11-28 19:17:38'),(6862,0,0,'I',2050,'I002050',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-28 19:17:10','drarchit','2025-11-28 19:17:38'),(6863,0,0,'I',2050,'I002050',2526,3,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-28 19:17:10','drarchit','2025-11-28 19:17:38'),(6864,0,0,'I',2050,'I002050',2526,4,'0000-00-00','51269',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 19:17:10','drarchit','2025-11-28 19:17:38'),(6865,0,0,'I',2050,'I002050',2526,5,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 19:17:10','drarchit','2025-11-28 19:17:38'),(6866,0,0,'I',2051,'I002051',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 19:26:04','darshan','2025-12-05 18:43:16'),(6867,0,0,'I',2051,'I002051',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 19:26:04','darshan','2025-12-05 18:43:16'),(6868,0,0,'I',2052,'I002052',2526,1,'0000-00-00','51310',0,0,'CAP','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 19:27:59','drarchit','2025-11-28 19:28:52'),(6869,0,0,'I',2052,'I002052',2526,2,'0000-00-00','51550',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-28 19:27:59','drarchit','2025-11-28 19:28:52'),(6870,0,0,'I',2052,'I002052',2526,3,'0000-00-00','51389',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-11-28 19:27:59','drarchit','2025-11-28 19:28:52'),(6871,0,0,'I',2052,'I002052',2526,4,'0000-00-00','51407',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 19:28:30','drarchit','2025-11-28 19:28:52'),(6872,0,0,'I',2052,'I002052',2526,5,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-28 19:28:30','drarchit','2025-11-28 19:28:52'),(6873,0,0,'I',2052,'I002052',2526,6,'0000-00-00','51406',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 19:28:30','drarchit','2025-11-28 19:28:52'),(6874,0,0,'I',2053,'I002053',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 19:31:45','','0000-00-00 00:00:00'),(6875,0,0,'I',2053,'I002053',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 19:31:45','','0000-00-00 00:00:00'),(6876,0,0,'I',2054,'I002054',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 19:36:52','drarchit','2025-11-28 19:37:06'),(6877,0,0,'I',2054,'I002054',2526,2,'0000-00-00','51432',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 19:36:52','drarchit','2025-11-28 19:37:06'),(6878,0,0,'I',2054,'I002054',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 19:36:52','drarchit','2025-11-28 19:37:06'),(6879,0,0,'I',2054,'I002054',2526,4,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 19:36:52','drarchit','2025-11-28 19:37:06'),(6880,0,0,'I',2054,'I002054',2526,5,'0000-00-00','51375',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-28 19:36:52','drarchit','2025-11-28 19:37:06'),(6882,0,0,'I',2055,'I002055',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 19:43:25','','0000-00-00 00:00:00'),(6883,0,0,'I',2056,'I002056',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 19:49:35','','0000-00-00 00:00:00'),(6884,0,0,'I',2056,'I002056',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 19:49:35','','0000-00-00 00:00:00'),(6885,0,0,'I',2056,'I002056',2526,3,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-28 19:49:35','','0000-00-00 00:00:00'),(6887,0,0,'I',2057,'I002057',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-28 19:57:29','drarchit','2025-11-28 19:58:34'),(6890,0,0,'I',2058,'I002058',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 19:57:45','','0000-00-00 00:00:00'),(6891,0,0,'I',2058,'I002058',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 19:57:45','','0000-00-00 00:00:00'),(6892,0,0,'I',2058,'I002058',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-28 19:57:45','','0000-00-00 00:00:00'),(6893,0,0,'I',2057,'I002057',2526,2,'0000-00-00','51550',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-11-28 19:58:34','','0000-00-00 00:00:00'),(6894,0,0,'I',2057,'I002057',2526,3,'0000-00-00','51244',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-28 19:58:34','','0000-00-00 00:00:00'),(6895,0,0,'I',2059,'I002059',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 20:17:34','','0000-00-00 00:00:00'),(6896,0,0,'I',2059,'I002059',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 20:17:34','','0000-00-00 00:00:00'),(6897,0,0,'I',2059,'I002059',2526,3,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-28 20:17:34','','0000-00-00 00:00:00'),(6898,0,0,'I',2060,'I002060',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,90,0,0,0,0,'.5-0-.5','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 20:20:58','','0000-00-00 00:00:00'),(6899,0,0,'I',2060,'I002060',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 20:20:58','','0000-00-00 00:00:00'),(6900,0,0,'I',2061,'I002061',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 20:24:04','darshan','2025-11-28 20:24:14'),(6901,0,0,'I',2061,'I002061',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 20:24:04','darshan','2025-11-28 20:24:14'),(6902,0,0,'I',2061,'I002061',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-28 20:24:04','darshan','2025-11-28 20:24:14'),(6903,0,0,'I',2061,'I002061',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-28 20:24:14','','0000-00-00 00:00:00'),(6904,0,0,'I',2062,'I002062',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 10:53:13','darshan','2025-11-29 10:54:06'),(6905,0,0,'I',2062,'I002062',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 10:53:13','darshan','2025-11-29 10:54:06'),(6906,0,0,'I',2062,'I002062',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 10:53:13','darshan','2025-11-29 10:54:06'),(6907,0,0,'I',2062,'I002062',2526,4,'0000-00-00','51294',0,0,'TAB','','','','',0,5,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-29 10:53:13','darshan','2025-11-29 10:54:06'),(6908,0,0,'I',2063,'I002063',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-29 11:17:00','darshan','2025-11-29 11:17:58'),(6909,0,0,'I',2063,'I002063',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 11:17:00','darshan','2025-11-29 11:17:58'),(6910,0,0,'I',2063,'I002063',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 11:17:00','darshan','2025-11-29 11:17:58'),(6911,0,0,'I',2063,'I002063',2526,4,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 11:17:00','darshan','2025-11-29 11:17:58'),(6912,0,0,'I',2064,'I002064',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 11:32:26','drarchit','2025-11-29 11:32:31'),(6913,0,0,'I',2064,'I002064',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-29 11:32:26','drarchit','2025-11-29 11:32:31'),(6914,0,0,'I',2064,'I002064',2526,3,'0000-00-00','51487',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-29 11:32:26','drarchit','2025-11-29 11:32:31'),(6915,0,0,'I',2064,'I002064',2526,4,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 11:32:26','drarchit','2025-11-29 11:32:31'),(6916,0,0,'I',2064,'I002064',2526,5,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 11:32:26','drarchit','2025-11-29 11:32:31'),(6917,0,0,'I',2064,'I002064',2526,6,'0000-00-00','51471',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-11-29 11:32:26','drarchit','2025-11-29 11:32:31'),(6918,0,0,'I',2064,'I002064',2526,7,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-29 11:32:26','drarchit','2025-11-29 11:32:31'),(6919,0,0,'I',2065,'I002065',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 11:35:53','','0000-00-00 00:00:00'),(6920,0,0,'I',2065,'I002065',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 11:35:53','','0000-00-00 00:00:00'),(6921,0,0,'I',2065,'I002065',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-29 11:35:53','','0000-00-00 00:00:00'),(6922,0,0,'I',2066,'I002066',2526,1,'0000-00-00','51351',0,0,'TAB','','','','',0,180,0,0,0,0,'1-1-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 11:37:32','drarchit','2025-11-29 11:38:11'),(6923,0,0,'I',2066,'I002066',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-29 11:37:32','drarchit','2025-11-29 11:38:11'),(6924,0,0,'I',2066,'I002066',2526,3,'0000-00-00','51348',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 11:37:32','drarchit','2025-11-29 11:38:11'),(6925,0,0,'I',2066,'I002066',2526,4,'0000-00-00','51352',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 11:37:32','drarchit','2025-11-29 11:38:11'),(6926,0,0,'I',2066,'I002066',2526,5,'0000-00-00','51353',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 11:37:32','drarchit','2025-11-29 11:38:11'),(6927,0,0,'I',2067,'I002067',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 11:53:44','darshan','2025-11-29 11:54:05'),(6929,0,0,'I',2067,'I002067',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 11:53:44','darshan','2025-11-29 11:54:05'),(6931,0,0,'I',2068,'I002068',2526,1,'0000-00-00','51320',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-29 11:58:23','drjayant','2025-11-29 11:58:54'),(6932,0,0,'I',2068,'I002068',2526,2,'0000-00-00','51317',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-11-29 11:58:54','','0000-00-00 00:00:00'),(6933,0,0,'I',2068,'I002068',2526,3,'0000-00-00','51422',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-29 11:58:54','','0000-00-00 00:00:00'),(6934,0,0,'I',2070,'I002070',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 12:04:52','','0000-00-00 00:00:00'),(6935,0,0,'I',2070,'I002070',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-29 12:04:52','','0000-00-00 00:00:00'),(6936,0,0,'I',2070,'I002070',2526,3,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 12:04:52','','0000-00-00 00:00:00'),(6937,0,0,'I',2070,'I002070',2526,4,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 12:04:52','','0000-00-00 00:00:00'),(6938,0,0,'I',2069,'I002069',2526,1,'0000-00-00','51575',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-29 12:04:56','drjayant','2025-11-29 12:06:10'),(6939,0,0,'I',2069,'I002069',2526,2,'0000-00-00','51257',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-11-29 12:04:56','drjayant','2025-11-29 12:06:10'),(6940,0,0,'I',2069,'I002069',2526,3,'0000-00-00','51576',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-29 12:06:10','','0000-00-00 00:00:00'),(6941,0,0,'I',2069,'I002069',2526,4,'0000-00-00','51376',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-29 12:06:10','','0000-00-00 00:00:00'),(6942,0,0,'I',2071,'I002071',2526,1,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-29 12:09:43','drarchit','2025-11-29 12:10:00'),(6943,0,0,'I',2071,'I002071',2526,2,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 12:09:43','drarchit','2025-11-29 12:10:00'),(6944,0,0,'I',2071,'I002071',2526,3,'0000-00-00','51571',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 12:09:43','drarchit','2025-11-29 12:10:00'),(6945,0,0,'I',2071,'I002071',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-29 12:09:43','drarchit','2025-11-29 12:10:00'),(6946,0,0,'I',2071,'I002071',2526,5,'0000-00-00','51332',0,0,'CAP','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 12:10:00','','0000-00-00 00:00:00'),(6947,0,0,'I',2072,'I002072',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 12:12:18','','0000-00-00 00:00:00'),(6948,0,0,'I',2072,'I002072',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 12:12:18','','0000-00-00 00:00:00'),(6949,0,0,'I',2072,'I002072',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-29 12:12:18','','0000-00-00 00:00:00'),(6950,0,0,'I',2072,'I002072',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-29 12:12:18','','0000-00-00 00:00:00'),(6951,0,0,'I',2072,'I002072',2526,5,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 12:12:18','','0000-00-00 00:00:00'),(6952,0,0,'I',2073,'I002073',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-29 12:12:34','darshan','2025-11-29 12:13:34'),(6953,0,0,'I',2073,'I002073',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 12:12:34','darshan','2025-11-29 12:13:34'),(6955,0,0,'I',2074,'I002074',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 12:18:22','','0000-00-00 00:00:00'),(6956,0,0,'I',2074,'I002074',2526,2,'0000-00-00','51530',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-11-29 12:18:22','','0000-00-00 00:00:00'),(6957,0,0,'I',2074,'I002074',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 12:18:22','','0000-00-00 00:00:00'),(6958,0,0,'I',2075,'I002075',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-11-29 12:21:49','','0000-00-00 00:00:00'),(6959,0,0,'I',2076,'I002076',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 12:24:25','','0000-00-00 00:00:00'),(6960,0,0,'I',2076,'I002076',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 12:24:25','','0000-00-00 00:00:00'),(6961,0,0,'I',2076,'I002076',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-29 12:24:25','','0000-00-00 00:00:00'),(6962,0,0,'I',2077,'I002077',2526,1,'0000-00-00','51420',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-29 12:31:34','','0000-00-00 00:00:00'),(6963,0,0,'I',2077,'I002077',2526,2,'0000-00-00','51555',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 12:31:34','','0000-00-00 00:00:00'),(6964,0,0,'I',2077,'I002077',2526,3,'0000-00-00','51545',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 12:31:34','','0000-00-00 00:00:00'),(6965,0,0,'I',2077,'I002077',2526,4,'0000-00-00','51238',0,0,'TAB','','','','',0,3,0,0,0,0,'0-0-0.5','','Dy',5,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-11-29 12:31:34','','0000-00-00 00:00:00'),(6966,0,0,'I',2078,'I002078',2526,1,'0000-00-00','51229',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-29 12:40:57','drarchit','2025-11-29 12:41:03'),(6967,0,0,'I',2078,'I002078',2526,2,'0000-00-00','51467',0,0,'TAB','','','','',0,10,0,0,0,0,'0-1-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-29 12:40:57','drarchit','2025-11-29 12:41:03'),(6968,0,0,'I',2079,'I002079',2526,1,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 12:42:48','','0000-00-00 00:00:00'),(6969,0,0,'I',2079,'I002079',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-29 12:42:48','','0000-00-00 00:00:00'),(6970,0,0,'I',2080,'I002080',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 12:45:37','darshan','2025-11-29 12:46:13'),(6971,0,0,'I',2080,'I002080',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 12:45:47','darshan','2025-11-29 12:46:13'),(6972,0,0,'I',2080,'I002080',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 12:46:13','','0000-00-00 00:00:00'),(6973,0,0,'I',2080,'I002080',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-29 12:46:13','','0000-00-00 00:00:00'),(6974,0,0,'I',2081,'I002081',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 12:48:50','','0000-00-00 00:00:00'),(6975,0,0,'I',2081,'I002081',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 12:48:50','','0000-00-00 00:00:00'),(6976,0,0,'I',2081,'I002081',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 12:48:50','','0000-00-00 00:00:00'),(6977,0,0,'I',2082,'I002082',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-29 12:50:38','drjayant','2025-11-29 13:16:17'),(6978,0,0,'I',2082,'I002082',2526,2,'0000-00-00','51376',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-29 12:50:38','drjayant','2025-11-29 13:16:17'),(6979,0,0,'I',2083,'I002083',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 12:54:44','darshan','2025-11-29 12:55:16'),(6981,0,0,'I',2083,'I002083',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 12:54:44','darshan','2025-11-29 12:55:16'),(6983,0,0,'I',2083,'I002083',2526,3,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 12:55:16','','0000-00-00 00:00:00'),(6984,0,0,'I',2084,'I002084',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 12:55:56','','0000-00-00 00:00:00'),(6985,0,0,'I',2084,'I002084',2526,2,'0000-00-00','51297',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 12:55:56','','0000-00-00 00:00:00'),(6986,0,0,'I',2085,'I002085',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-11-29 12:57:59','darshan','2025-11-29 12:58:46'),(6988,0,0,'I',2085,'I002085',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 12:57:59','darshan','2025-11-29 12:58:46'),(6989,0,0,'I',2085,'I002085',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-11-29 12:58:25','darshan','2025-11-29 12:58:46'),(6990,0,0,'I',2085,'I002085',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-29 12:58:46','','0000-00-00 00:00:00'),(6991,0,0,'I',2086,'I002086',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:00:06','darshan','2025-11-29 13:00:43'),(6992,0,0,'I',2086,'I002086',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:00:06','darshan','2025-11-29 13:00:43'),(6994,0,0,'I',2086,'I002086',2526,3,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-29 13:00:06','darshan','2025-11-29 13:00:43'),(6995,0,0,'I',2086,'I002086',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:00:06','darshan','2025-11-29 13:00:43'),(6996,0,0,'I',2086,'I002086',2526,5,'0000-00-00','51547',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:00:43','','0000-00-00 00:00:00'),(6997,0,0,'I',2087,'I002087',2526,1,'0000-00-00','51239',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-29 13:01:30','','0000-00-00 00:00:00'),(6998,0,0,'I',2087,'I002087',2526,2,'0000-00-00','51468',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-29 13:01:30','','0000-00-00 00:00:00'),(6999,0,0,'I',2087,'I002087',2526,3,'0000-00-00','51371',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 13:01:30','','0000-00-00 00:00:00'),(7000,0,0,'I',2087,'I002087',2526,4,'0000-00-00','51287',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 13:01:30','','0000-00-00 00:00:00'),(7001,0,0,'I',2087,'I002087',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 13:01:30','','0000-00-00 00:00:00'),(7002,0,0,'I',2087,'I002087',2526,6,'0000-00-00','51279',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 13:01:30','','0000-00-00 00:00:00'),(7003,0,0,'I',2088,'I002088',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:05:22','','0000-00-00 00:00:00'),(7004,0,0,'I',2088,'I002088',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:05:22','','0000-00-00 00:00:00'),(7005,0,0,'I',2089,'I002089',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 13:08:55','','0000-00-00 00:00:00'),(7006,0,0,'I',2089,'I002089',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-11-29 13:08:55','','0000-00-00 00:00:00'),(7007,0,0,'I',2089,'I002089',2526,3,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 13:08:55','','0000-00-00 00:00:00'),(7008,0,0,'I',2089,'I002089',2526,4,'0000-00-00','51337',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 13:08:55','','0000-00-00 00:00:00'),(7009,0,0,'I',2089,'I002089',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-29 13:08:55','','0000-00-00 00:00:00'),(7010,0,0,'I',2089,'I002089',2526,6,'0000-00-00','51487',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-11-29 13:08:55','','0000-00-00 00:00:00'),(7011,0,0,'I',2090,'I002090',2526,1,'0000-00-00','51320',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-29 13:10:38','drjayant','2025-11-29 13:34:34'),(7013,0,0,'I',2090,'I002090',2526,3,'0000-00-00','51422',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-29 13:10:38','drjayant','2025-11-29 13:34:34'),(7014,0,0,'I',2091,'I002091',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 13:10:55','drarchit','2025-11-29 13:11:11'),(7015,0,0,'I',2091,'I002091',2526,2,'0000-00-00','51545',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-11-29 13:10:55','drarchit','2025-11-29 13:11:11'),(7016,0,0,'I',2090,'I002090',2526,2,'0000-00-00','51376',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-11-29 13:11:21','drjayant','2025-11-29 13:34:34'),(7017,0,0,'I',2090,'I002090',2526,4,'0000-00-00','51577',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-29 13:12:18','drjayant','2025-11-29 13:34:34'),(7018,0,0,'I',2093,'I002093',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:22:26','','0000-00-00 00:00:00'),(7019,0,0,'I',2093,'I002093',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:22:26','','0000-00-00 00:00:00'),(7020,0,0,'I',2093,'I002093',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:22:26','','0000-00-00 00:00:00'),(7021,0,0,'I',2094,'I002094',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:33:16','','0000-00-00 00:00:00'),(7022,0,0,'I',2094,'I002094',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:33:16','','0000-00-00 00:00:00'),(7023,0,0,'I',2094,'I002094',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:33:16','','0000-00-00 00:00:00'),(7024,0,0,'I',2094,'I002094',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-11-29 13:33:16','','0000-00-00 00:00:00'),(7025,0,0,'I',2094,'I002094',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-29 13:33:16','','0000-00-00 00:00:00'),(7026,0,0,'I',2095,'I002095',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:35:01','','0000-00-00 00:00:00'),(7027,0,0,'I',2096,'I002096',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:40:54','','0000-00-00 00:00:00'),(7028,0,0,'I',2096,'I002096',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:40:54','','0000-00-00 00:00:00'),(7029,0,0,'I',2096,'I002096',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:40:54','','0000-00-00 00:00:00'),(7030,0,0,'I',2097,'I002097',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:44:31','','0000-00-00 00:00:00'),(7031,0,0,'I',2097,'I002097',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:44:31','','0000-00-00 00:00:00'),(7032,0,0,'I',2098,'I002098',2526,1,'0000-00-00','51349',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-11-29 13:46:53','','0000-00-00 00:00:00'),(7033,0,0,'I',2098,'I002098',2526,2,'0000-00-00','51409',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-11-29 13:46:53','','0000-00-00 00:00:00'),(7034,0,0,'I',2099,'I002099',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 13:54:02','','0000-00-00 00:00:00'),(7035,0,0,'I',2100,'I002100',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 14:01:15','darshan','2025-11-29 14:01:34'),(7036,0,0,'I',2100,'I002100',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 14:01:34','','0000-00-00 00:00:00'),(7037,0,0,'I',2100,'I002100',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 14:01:34','','0000-00-00 00:00:00'),(7038,0,0,'I',2100,'I002100',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-29 14:01:34','','0000-00-00 00:00:00'),(7039,0,0,'I',2101,'I002101',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 14:08:16','','0000-00-00 00:00:00'),(7040,0,0,'I',2101,'I002101',2526,2,'0000-00-00','51460',0,0,'POWDER','','','','',0,1,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'398','','P',NULL,NULL,'darshan','2025-11-29 14:08:16','','0000-00-00 00:00:00'),(7041,0,0,'I',2102,'I002102',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 14:16:17','darshan','2025-11-29 14:16:31'),(7043,0,0,'I',2102,'I002102',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 14:16:17','darshan','2025-11-29 14:16:31'),(7044,0,0,'I',2102,'I002102',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-29 14:16:31','','0000-00-00 00:00:00'),(7045,0,0,'I',2103,'I002103',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 14:20:37','','0000-00-00 00:00:00'),(7046,0,0,'I',2103,'I002103',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 14:20:37','','0000-00-00 00:00:00'),(7047,0,0,'I',2103,'I002103',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 14:20:37','','0000-00-00 00:00:00'),(7048,0,0,'I',2103,'I002103',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-29 14:20:37','','0000-00-00 00:00:00'),(7049,0,0,'I',2104,'I002104',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 14:25:59','','0000-00-00 00:00:00'),(7050,0,0,'I',2104,'I002104',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 14:25:59','','0000-00-00 00:00:00'),(7051,0,0,'I',2104,'I002104',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 14:25:59','','0000-00-00 00:00:00'),(7052,0,0,'I',2104,'I002104',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-11-29 14:25:59','','0000-00-00 00:00:00'),(7053,0,0,'I',2105,'I002105',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 14:40:21','darshan','2025-11-29 14:41:59'),(7054,0,0,'I',2105,'I002105',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 14:41:59','','0000-00-00 00:00:00'),(7055,0,0,'I',2106,'I002106',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 14:49:21','darshan','2025-11-29 15:02:57'),(7056,0,0,'I',2106,'I002106',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 14:49:21','darshan','2025-11-29 15:02:57'),(7057,0,0,'I',2106,'I002106',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-11-29 14:49:21','darshan','2025-11-29 15:02:57'),(7058,0,0,'I',2107,'I002107',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 10:41:44','darshan','2025-12-01 10:42:27'),(7059,0,0,'I',2107,'I002107',2526,2,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-01 10:42:27','','0000-00-00 00:00:00'),(7060,0,0,'I',2107,'I002107',2526,3,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 10:42:27','','0000-00-00 00:00:00'),(7061,0,0,'I',2108,'I002108',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 10:45:08','darshan','2025-12-01 10:46:41'),(7062,0,0,'I',2108,'I002108',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 10:45:08','darshan','2025-12-01 10:46:41'),(7063,0,0,'I',2108,'I002108',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 10:45:08','darshan','2025-12-01 10:46:41'),(7067,0,0,'I',2108,'I002108',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-01 10:46:41','','0000-00-00 00:00:00'),(7068,0,0,'I',2109,'I002109',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 10:57:43','darshan','2025-12-01 10:57:59'),(7069,0,0,'I',2109,'I002109',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 10:57:43','darshan','2025-12-01 10:57:59'),(7071,0,0,'I',2110,'I002110',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 11:00:49','darshan','2025-12-01 11:01:35'),(7072,0,0,'I',2110,'I002110',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 11:00:49','darshan','2025-12-01 11:01:35'),(7074,0,0,'I',2110,'I002110',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 11:01:17','darshan','2025-12-01 11:01:35'),(7075,0,0,'I',2110,'I002110',2526,4,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-01 11:01:35','','0000-00-00 00:00:00'),(7076,0,0,'I',2111,'I002111',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 11:05:18','darshan','2025-12-01 11:05:44'),(7077,0,0,'I',2111,'I002111',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-01 11:05:18','darshan','2025-12-01 11:05:44'),(7078,0,0,'I',2112,'I002112',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 11:09:17','darshan','2025-12-01 11:09:58'),(7079,0,0,'I',2112,'I002112',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 11:09:17','darshan','2025-12-01 11:09:58'),(7080,0,0,'I',2112,'I002112',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 11:09:17','darshan','2025-12-01 11:09:58'),(7081,0,0,'I',2113,'I002113',2526,1,'0000-00-00','51349',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-01 11:18:14','drjayant','2025-12-01 11:18:50'),(7082,0,0,'I',2113,'I002113',2526,2,'0000-00-00','51399',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-01 11:18:50','','0000-00-00 00:00:00'),(7083,0,0,'I',2113,'I002113',2526,3,'0000-00-00','51459',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-01 11:18:50','','0000-00-00 00:00:00'),(7084,0,0,'I',2114,'I002114',2526,1,'0000-00-00','51381',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 11:22:14','','0000-00-00 00:00:00'),(7085,0,0,'I',2114,'I002114',2526,2,'0000-00-00','51336',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 11:22:14','','0000-00-00 00:00:00'),(7086,0,0,'I',2114,'I002114',2526,3,'0000-00-00','51219',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-12-01 11:22:14','','0000-00-00 00:00:00'),(7087,0,0,'I',2114,'I002114',2526,4,'0000-00-00','51359',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 11:22:14','','0000-00-00 00:00:00'),(7088,0,0,'I',2114,'I002114',2526,5,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 11:22:14','','0000-00-00 00:00:00'),(7089,0,0,'I',2115,'I002115',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 11:22:47','darshan','2025-12-01 11:22:59'),(7090,0,0,'I',2115,'I002115',2526,2,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',90,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-01 11:22:59','','0000-00-00 00:00:00'),(7091,0,0,'I',2116,'I002116',2526,1,'0000-00-00','51578',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-01 11:25:55','drjayant','2025-12-01 14:06:50'),(7092,0,0,'I',2116,'I002116',2526,2,'0000-00-00','51420',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-01 11:25:55','drjayant','2025-12-01 14:06:50'),(7093,0,0,'I',2116,'I002116',2526,3,'0000-00-00','51579',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-01 11:27:30','drjayant','2025-12-01 14:06:50'),(7094,0,0,'I',2116,'I002116',2526,4,'0000-00-00','51442',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-01 11:27:30','drjayant','2025-12-01 14:06:50'),(7095,0,0,'I',2116,'I002116',2526,5,'0000-00-00','51422',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-01 11:27:30','drjayant','2025-12-01 14:06:50'),(7096,0,0,'I',2116,'I002116',2526,6,'0000-00-00','51426',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-01 11:27:30','drjayant','2025-12-01 14:06:50'),(7097,0,0,'I',2117,'I002117',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 11:29:31','','0000-00-00 00:00:00'),(7098,0,0,'I',2117,'I002117',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 11:29:31','','0000-00-00 00:00:00'),(7099,0,0,'I',2117,'I002117',2526,3,'0000-00-00','51403',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 11:29:31','','0000-00-00 00:00:00'),(7100,0,0,'I',2117,'I002117',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-01 11:29:31','','0000-00-00 00:00:00'),(7101,0,0,'I',2118,'I002118',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 11:38:13','darshan','2025-12-01 11:38:30'),(7102,0,0,'I',2118,'I002118',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-01 11:38:13','darshan','2025-12-01 11:38:30'),(7104,0,0,'I',2119,'I002119',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 11:47:24','drarchit','2025-12-01 11:51:28'),(7105,0,0,'I',2120,'I002120',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 11:47:58','','0000-00-00 00:00:00'),(7106,0,0,'I',2120,'I002120',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 11:47:58','','0000-00-00 00:00:00'),(7107,0,0,'I',2120,'I002120',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-01 11:47:58','','0000-00-00 00:00:00'),(7108,0,0,'I',2120,'I002120',2526,4,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-01 11:47:58','','0000-00-00 00:00:00'),(7109,0,0,'I',2120,'I002120',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-01 11:47:58','','0000-00-00 00:00:00'),(7110,0,0,'I',2119,'I002119',2526,2,'0000-00-00','51580',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 11:48:24','drarchit','2025-12-01 11:51:28'),(7111,0,0,'I',2119,'I002119',2526,3,'0000-00-00','51550',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-01 11:48:39','drarchit','2025-12-01 11:51:28'),(7112,0,0,'I',2119,'I002119',2526,4,'0000-00-00','51354',0,0,'CAP','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 11:48:51','drarchit','2025-12-01 11:51:28'),(7113,0,0,'I',2121,'I002121',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 11:50:58','darshan','2025-12-01 11:51:21'),(7115,0,0,'I',2121,'I002121',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 11:50:58','darshan','2025-12-01 11:51:21'),(7117,0,0,'I',2119,'I002119',2526,5,'0000-00-00','51581',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 11:51:02','drarchit','2025-12-01 11:51:28'),(7118,0,0,'I',2119,'I002119',2526,6,'0000-00-00','51389',0,0,'TAB','','','','',0,120,0,0,0,0,'0-1-1','','Dy',60,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-12-01 11:51:02','drarchit','2025-12-01 11:51:28'),(7120,0,0,'I',2119,'I002119',2526,7,'0000-00-00','51243',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 11:51:28','','0000-00-00 00:00:00'),(7122,0,0,'I',2122,'I002122',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 12:02:16','darshan','2025-12-01 12:02:37'),(7123,0,0,'I',2122,'I002122',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 12:02:16','darshan','2025-12-01 12:02:37'),(7125,0,0,'I',2123,'I002123',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 12:07:05','','0000-00-00 00:00:00'),(7127,0,0,'I',2124,'I002124',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-01 12:14:03','drarchit','2025-12-01 12:14:26'),(7128,0,0,'I',2124,'I002124',2526,2,'0000-00-00','51475',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 12:14:03','drarchit','2025-12-01 12:14:26'),(7129,0,0,'I',2124,'I002124',2526,3,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-01 12:14:03','drarchit','2025-12-01 12:14:26'),(7131,0,0,'I',2125,'I002125',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 12:14:14','darshan','2025-12-01 12:14:42'),(7132,0,0,'I',2125,'I002125',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 12:14:14','darshan','2025-12-01 12:14:42'),(7135,0,0,'I',2124,'I002124',2526,4,'0000-00-00','51347',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-12-01 12:14:26','','0000-00-00 00:00:00'),(7136,0,0,'I',2126,'I002126',2526,1,'0000-00-00','51217',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 12:18:03','drarchit','2025-12-01 12:18:23'),(7137,0,0,'I',2126,'I002126',2526,2,'0000-00-00','51356',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 12:18:03','drarchit','2025-12-01 12:18:23'),(7138,0,0,'I',2126,'I002126',2526,3,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 12:18:03','drarchit','2025-12-01 12:18:23'),(7139,0,0,'I',2126,'I002126',2526,4,'0000-00-00','51239',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-01 12:18:03','drarchit','2025-12-01 12:18:23'),(7140,0,0,'I',2127,'I002127',2526,1,'0000-00-00','51220',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 12:24:30','drarchit','2025-12-01 12:25:07'),(7141,0,0,'I',2127,'I002127',2526,2,'0000-00-00','51304',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 12:24:30','drarchit','2025-12-01 12:25:07'),(7142,0,0,'I',2127,'I002127',2526,3,'0000-00-00','51374',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-01 12:25:07','','0000-00-00 00:00:00'),(7143,0,0,'I',2127,'I002127',2526,4,'0000-00-00','51300',0,0,'TAB','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'drarchit','2025-12-01 12:25:07','','0000-00-00 00:00:00'),(7144,0,0,'I',2127,'I002127',2526,5,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 12:25:07','','0000-00-00 00:00:00'),(7145,0,0,'I',2128,'I002128',2526,1,'0000-00-00','51440',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 12:38:59','','0000-00-00 00:00:00'),(7146,0,0,'I',2128,'I002128',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 12:38:59','','0000-00-00 00:00:00'),(7147,0,0,'I',2128,'I002128',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-01 12:38:59','','0000-00-00 00:00:00'),(7148,0,0,'I',2128,'I002128',2526,4,'0000-00-00','51449',0,0,'OINT','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'397','','P',NULL,NULL,'darshan','2025-12-01 12:38:59','','0000-00-00 00:00:00'),(7149,0,0,'I',2129,'I002129',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 12:43:36','darshan','2025-12-01 12:43:45'),(7150,0,0,'I',2129,'I002129',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 12:43:36','darshan','2025-12-01 12:43:45'),(7151,0,0,'I',2129,'I002129',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-01 12:43:36','darshan','2025-12-01 12:43:45'),(7152,0,0,'I',2130,'I002130',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 12:54:09','','0000-00-00 00:00:00'),(7153,0,0,'I',2130,'I002130',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 12:54:09','','0000-00-00 00:00:00'),(7154,0,0,'I',2130,'I002130',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-01 12:54:09','','0000-00-00 00:00:00'),(7155,0,0,'I',2131,'I002131',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 12:59:27','','0000-00-00 00:00:00'),(7156,0,0,'I',2131,'I002131',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 12:59:27','','0000-00-00 00:00:00'),(7157,0,0,'I',2132,'I002132',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:02:46','drarchit','2025-12-01 13:02:55'),(7158,0,0,'I',2132,'I002132',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:02:46','drarchit','2025-12-01 13:02:55'),(7160,0,0,'I',2132,'I002132',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-01 13:02:46','drarchit','2025-12-01 13:02:55'),(7161,0,0,'I',2132,'I002132',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 13:02:46','drarchit','2025-12-01 13:02:55'),(7162,0,0,'I',2133,'I002133',2526,1,'0000-00-00','51530',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-01 13:06:37','drarchit','2025-12-01 13:09:00'),(7164,0,0,'I',2133,'I002133',2526,2,'0000-00-00','51492',0,0,'INJ','','','','',0,1,0,0,0,0,'12-0-8','','Dy',3,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-01 13:06:37','drarchit','2025-12-01 13:09:00'),(7165,0,0,'I',2133,'I002133',2526,3,'0000-00-00','51243',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 13:06:37','drarchit','2025-12-01 13:09:00'),(7167,0,0,'I',2133,'I002133',2526,4,'0000-00-00','51263',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:08:05','drarchit','2025-12-01 13:09:00'),(7168,0,0,'I',2133,'I002133',2526,5,'0000-00-00','51475',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 13:09:00','','0000-00-00 00:00:00'),(7169,0,0,'I',2133,'I002133',2526,6,'0000-00-00','51384',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:09:00','','0000-00-00 00:00:00'),(7170,0,0,'I',2134,'I002134',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:13:22','drarchit','2025-12-01 13:13:35'),(7171,0,0,'I',2134,'I002134',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:13:22','drarchit','2025-12-01 13:13:35'),(7172,0,0,'I',2134,'I002134',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-01 13:13:22','drarchit','2025-12-01 13:13:35'),(7173,0,0,'I',2134,'I002134',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 13:13:35','','0000-00-00 00:00:00'),(7174,0,0,'I',2135,'I002135',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-01 13:16:59','','0000-00-00 00:00:00'),(7175,0,0,'I',2135,'I002135',2526,2,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-01 13:16:59','','0000-00-00 00:00:00'),(7176,0,0,'I',2135,'I002135',2526,3,'0000-00-00','51407',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:16:59','','0000-00-00 00:00:00'),(7177,0,0,'I',2135,'I002135',2526,4,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:16:59','','0000-00-00 00:00:00'),(7178,0,0,'I',2136,'I002136',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-01 13:17:58','','0000-00-00 00:00:00'),(7179,0,0,'I',2136,'I002136',2526,2,'0000-00-00','51296',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-01 13:17:58','','0000-00-00 00:00:00'),(7180,0,0,'I',2136,'I002136',2526,3,'0000-00-00','51451',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-01 13:17:58','','0000-00-00 00:00:00'),(7181,0,0,'I',2137,'I002137',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 13:22:18','darshan','2025-12-01 13:22:24'),(7182,0,0,'I',2137,'I002137',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 13:22:18','darshan','2025-12-01 13:22:24'),(7183,0,0,'I',2137,'I002137',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 13:22:18','darshan','2025-12-01 13:22:24'),(7184,0,0,'I',2138,'I002138',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:23:10','','0000-00-00 00:00:00'),(7185,0,0,'I',2138,'I002138',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:23:10','','0000-00-00 00:00:00'),(7186,0,0,'I',2138,'I002138',2526,3,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 13:23:10','','0000-00-00 00:00:00'),(7187,0,0,'I',2138,'I002138',2526,4,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:23:10','','0000-00-00 00:00:00'),(7188,0,0,'I',2138,'I002138',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 13:23:10','','0000-00-00 00:00:00'),(7189,0,0,'I',2138,'I002138',2526,6,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-01 13:23:10','','0000-00-00 00:00:00'),(7190,0,0,'I',2139,'I002139',2526,1,'0000-00-00','51375',0,0,'TAB','','','','',0,900,0,0,0,0,'1-0-0','','Dy',900,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-01 13:31:32','','0000-00-00 00:00:00'),(7191,0,0,'I',2139,'I002139',2526,2,'0000-00-00','51338',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:31:32','','0000-00-00 00:00:00'),(7192,0,0,'I',2139,'I002139',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:31:32','','0000-00-00 00:00:00'),(7193,0,0,'I',2139,'I002139',2526,4,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:31:32','','0000-00-00 00:00:00'),(7194,0,0,'I',2139,'I002139',2526,5,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:31:32','','0000-00-00 00:00:00'),(7195,0,0,'I',2139,'I002139',2526,6,'0000-00-00','51304',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:31:32','','0000-00-00 00:00:00'),(7196,0,0,'I',2140,'I002140',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 13:36:11','darshan','2025-12-01 13:36:19'),(7197,0,0,'I',2140,'I002140',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 13:36:11','darshan','2025-12-01 13:36:19'),(7198,0,0,'I',2140,'I002140',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 13:36:11','darshan','2025-12-01 13:36:19'),(7199,0,0,'I',2141,'I002141',2526,1,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:41:11','drarchit','2025-12-01 13:41:27'),(7200,0,0,'I',2141,'I002141',2526,2,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:41:11','drarchit','2025-12-01 13:41:27'),(7201,0,0,'I',2141,'I002141',2526,3,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:41:11','drarchit','2025-12-01 13:41:27'),(7202,0,0,'I',2141,'I002141',2526,4,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 13:41:27','','0000-00-00 00:00:00'),(7203,0,0,'I',2141,'I002141',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 13:41:27','','0000-00-00 00:00:00'),(7204,0,0,'I',2141,'I002141',2526,6,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-01 13:41:27','','0000-00-00 00:00:00'),(7205,0,0,'I',2142,'I002142',2526,1,'0000-00-00','51487',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 13:44:59','','0000-00-00 00:00:00'),(7206,0,0,'I',2143,'I002143',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 13:46:44','','0000-00-00 00:00:00'),(7207,0,0,'I',2143,'I002143',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 13:46:44','','0000-00-00 00:00:00'),(7208,0,0,'I',2143,'I002143',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-01 13:46:44','','0000-00-00 00:00:00'),(7209,0,0,'I',2144,'I002144',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 13:54:56','','0000-00-00 00:00:00'),(7210,0,0,'I',2144,'I002144',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-01 13:54:56','','0000-00-00 00:00:00'),(7211,0,0,'I',2144,'I002144',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 13:54:56','','0000-00-00 00:00:00'),(7212,0,0,'I',2145,'I002145',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 14:00:21','','0000-00-00 00:00:00'),(7213,0,0,'I',2145,'I002145',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 14:00:21','','0000-00-00 00:00:00'),(7214,0,0,'I',2146,'I002146',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 14:03:14','','0000-00-00 00:00:00'),(7215,0,0,'I',2147,'I002147',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 14:20:25','','0000-00-00 00:00:00'),(7216,0,0,'I',2147,'I002147',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 14:20:25','','0000-00-00 00:00:00'),(7217,0,0,'I',2147,'I002147',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-01 14:20:25','','0000-00-00 00:00:00'),(7218,0,0,'I',2148,'I002148',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 14:22:08','','0000-00-00 00:00:00'),(7219,0,0,'I',2148,'I002148',2526,2,'0000-00-00','51418',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 14:22:08','','0000-00-00 00:00:00'),(7220,0,0,'I',2149,'I002149',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 14:35:00','darshan','2025-12-01 14:35:16'),(7221,0,0,'I',2149,'I002149',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 14:35:00','darshan','2025-12-01 14:35:16'),(7222,0,0,'I',2149,'I002149',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-01 14:35:16','','0000-00-00 00:00:00'),(7223,0,0,'I',2150,'I002150',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 14:40:14','darshan','2025-12-01 14:43:56'),(7224,0,0,'I',2150,'I002150',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 14:40:14','darshan','2025-12-01 14:43:56'),(7226,0,0,'I',2151,'I002151',2526,1,'0000-00-00','51289',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 14:45:55','darshan','2025-12-01 14:47:27'),(7227,0,0,'I',2151,'I002151',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,75,0,0,0,0,'.5-0-.5','','Dy',75,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 14:45:55','darshan','2025-12-01 14:47:27'),(7228,0,0,'I',2151,'I002151',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 14:45:55','darshan','2025-12-01 14:47:27'),(7230,0,0,'I',2151,'I002151',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-01 14:47:27','','0000-00-00 00:00:00'),(7231,0,0,'I',2152,'I002152',2526,1,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 17:06:15','','0000-00-00 00:00:00'),(7232,0,0,'I',2153,'I002153',2526,1,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-01 17:16:51','','0000-00-00 00:00:00'),(7233,0,0,'I',2153,'I002153',2526,2,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 17:16:51','','0000-00-00 00:00:00'),(7234,0,0,'I',2153,'I002153',2526,3,'0000-00-00','51418',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 17:16:51','','0000-00-00 00:00:00'),(7235,0,0,'I',2153,'I002153',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-01 17:16:51','','0000-00-00 00:00:00'),(7236,0,0,'I',2154,'I002154',2526,1,'0000-00-00','51211',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 17:24:53','darshan','2025-12-01 17:25:50'),(7237,0,0,'I',2154,'I002154',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 17:24:53','darshan','2025-12-01 17:25:50'),(7238,0,0,'I',2154,'I002154',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-01 17:24:53','darshan','2025-12-01 17:25:50'),(7239,0,0,'I',2155,'I002155',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 17:30:27','darshan','2025-12-01 17:30:45'),(7240,0,0,'I',2155,'I002155',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-01 17:30:27','darshan','2025-12-01 17:30:45'),(7242,0,0,'I',2156,'I002156',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 17:34:52','','0000-00-00 00:00:00'),(7243,0,0,'I',2156,'I002156',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 17:34:52','','0000-00-00 00:00:00'),(7244,0,0,'I',2156,'I002156',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-01 17:34:52','','0000-00-00 00:00:00'),(7245,0,0,'I',2156,'I002156',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-01 17:34:52','','0000-00-00 00:00:00'),(7246,0,0,'I',2157,'I002157',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 17:37:51','darshan','2025-12-01 17:40:48'),(7247,0,0,'I',2157,'I002157',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 17:37:51','darshan','2025-12-01 17:40:48'),(7248,0,0,'I',2157,'I002157',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-01 17:40:48','','0000-00-00 00:00:00'),(7249,0,0,'I',2158,'I002158',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 17:45:31','','0000-00-00 00:00:00'),(7250,0,0,'I',2158,'I002158',2526,2,'0000-00-00','51287',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-01 17:45:31','','0000-00-00 00:00:00'),(7251,0,0,'I',2158,'I002158',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 17:45:31','','0000-00-00 00:00:00'),(7252,0,0,'I',2158,'I002158',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-01 17:45:31','','0000-00-00 00:00:00'),(7253,0,0,'I',2159,'I002159',2526,1,'0000-00-00','51224',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 17:57:07','darshan','2025-12-01 17:58:54'),(7254,0,0,'I',2159,'I002159',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 17:57:07','darshan','2025-12-01 17:58:54'),(7255,0,0,'I',2159,'I002159',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 17:57:07','darshan','2025-12-01 17:58:54'),(7256,0,0,'I',2159,'I002159',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-01 17:57:07','darshan','2025-12-01 17:58:54'),(7258,0,0,'I',2159,'I002159',2526,5,'0000-00-00','51449',0,0,'OINT','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'397','','P',NULL,NULL,'darshan','2025-12-01 17:58:19','darshan','2025-12-01 17:58:54'),(7259,0,0,'I',2159,'I002159',2526,6,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-01 17:58:54','','0000-00-00 00:00:00'),(7261,0,0,'I',2160,'I002160',2526,1,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 18:13:24','drarchit','2025-12-01 18:13:54'),(7262,0,0,'I',2160,'I002160',2526,2,'0000-00-00','51362',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-01 18:13:30','drarchit','2025-12-01 18:13:54'),(7263,0,0,'I',2160,'I002160',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 18:13:54','','0000-00-00 00:00:00'),(7264,0,0,'I',2161,'I002161',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 18:17:15','darshan','2025-12-01 18:17:54'),(7265,0,0,'I',2161,'I002161',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-01 18:17:15','darshan','2025-12-01 18:17:54'),(7266,0,0,'I',2162,'I002162',2526,1,'0000-00-00','51258',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 18:17:59','drarchit','2025-12-01 18:20:02'),(7267,0,0,'I',2162,'I002162',2526,2,'0000-00-00','51545',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 18:17:59','drarchit','2025-12-01 18:20:02'),(7268,0,0,'I',2162,'I002162',2526,3,'0000-00-00','51239',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-01 18:18:22','drarchit','2025-12-01 18:20:02'),(7269,0,0,'I',2162,'I002162',2526,4,'0000-00-00','51243',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 18:20:02','','0000-00-00 00:00:00'),(7270,0,0,'I',2163,'I002163',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-01 18:25:25','darshan','2025-12-01 18:25:34'),(7271,0,0,'I',2163,'I002163',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 18:25:25','darshan','2025-12-01 18:25:34'),(7272,0,0,'I',2163,'I002163',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-01 18:25:25','darshan','2025-12-01 18:25:34'),(7273,0,0,'I',2163,'I002163',2526,4,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 18:25:25','darshan','2025-12-01 18:25:34'),(7274,0,0,'I',2163,'I002163',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-01 18:25:25','darshan','2025-12-01 18:25:34'),(7275,0,0,'I',2164,'I002164',2526,1,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 18:25:45','','0000-00-00 00:00:00'),(7276,0,0,'I',2164,'I002164',2526,2,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 18:25:45','','0000-00-00 00:00:00'),(7277,0,0,'I',2164,'I002164',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-01 18:25:45','','0000-00-00 00:00:00'),(7278,0,0,'I',2164,'I002164',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 18:25:45','','0000-00-00 00:00:00'),(7279,0,0,'I',2165,'I002165',2526,1,'0000-00-00','51582',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-01 18:30:13','drjayant','2025-12-01 18:32:33'),(7280,0,0,'I',2166,'I002166',2526,1,'0000-00-00','51359',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 18:32:04','','0000-00-00 00:00:00'),(7281,0,0,'I',2165,'I002165',2526,2,'0000-00-00','51583',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-01 18:32:33','','0000-00-00 00:00:00'),(7282,0,0,'I',2165,'I002165',2526,3,'0000-00-00','51320',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-01 18:32:33','','0000-00-00 00:00:00'),(7283,0,0,'I',2165,'I002165',2526,4,'0000-00-00','51350',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-01 18:32:33','','0000-00-00 00:00:00'),(7284,0,0,'I',2167,'I002167',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 18:32:48','darshan','2025-12-01 18:33:03'),(7286,0,0,'I',2167,'I002167',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 18:32:48','darshan','2025-12-01 18:33:03'),(7288,0,0,'I',2168,'I002168',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 18:37:37','','0000-00-00 00:00:00'),(7289,0,0,'I',2168,'I002168',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 18:37:37','','0000-00-00 00:00:00'),(7290,0,0,'I',2168,'I002168',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 18:37:37','','0000-00-00 00:00:00'),(7291,0,0,'I',2168,'I002168',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-01 18:37:37','','0000-00-00 00:00:00'),(7293,0,0,'I',2169,'I002169',2526,1,'0000-00-00','51338',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 18:50:15','drarchit','2025-12-01 18:50:47'),(7294,0,0,'I',2169,'I002169',2526,2,'0000-00-00','51345',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 18:50:15','drarchit','2025-12-01 18:50:47'),(7295,0,0,'I',2170,'I002170',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 18:50:35','darshan','2025-12-01 18:52:09'),(7296,0,0,'I',2169,'I002169',2526,3,'0000-00-00','51371',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 18:50:47','','0000-00-00 00:00:00'),(7297,0,0,'I',2169,'I002169',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 18:50:47','','0000-00-00 00:00:00'),(7298,0,0,'I',2169,'I002169',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-01 18:50:47','','0000-00-00 00:00:00'),(7299,0,0,'I',2170,'I002170',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 18:52:09','','0000-00-00 00:00:00'),(7300,0,0,'I',2170,'I002170',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 18:52:09','','0000-00-00 00:00:00'),(7301,0,0,'I',2171,'I002171',2526,1,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 18:54:54','','0000-00-00 00:00:00'),(7302,0,0,'I',2171,'I002171',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 18:54:54','','0000-00-00 00:00:00'),(7303,0,0,'I',2171,'I002171',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-01 18:54:54','','0000-00-00 00:00:00'),(7304,0,0,'I',2172,'I002172',2526,1,'0000-00-00','51262',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 18:56:16','drarchit','2025-12-01 18:56:50'),(7305,0,0,'I',2172,'I002172',2526,2,'0000-00-00','51530',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-01 18:56:16','drarchit','2025-12-01 18:56:50'),(7307,0,0,'I',2172,'I002172',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 18:56:16','drarchit','2025-12-01 18:56:50'),(7308,0,0,'I',2172,'I002172',2526,4,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 18:56:50','','0000-00-00 00:00:00'),(7309,0,0,'I',2172,'I002172',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-01 18:56:50','','0000-00-00 00:00:00'),(7310,0,0,'I',2173,'I002173',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 18:58:35','','0000-00-00 00:00:00'),(7311,0,0,'I',2173,'I002173',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 18:58:35','','0000-00-00 00:00:00'),(7312,0,0,'I',2174,'I002174',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:03:54','drarchit','2025-12-01 19:12:38'),(7313,0,0,'I',2174,'I002174',2526,2,'0000-00-00','51550',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-01 19:03:54','drarchit','2025-12-01 19:12:38'),(7315,0,0,'I',2174,'I002174',2526,3,'0000-00-00','51217',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:03:54','drarchit','2025-12-01 19:12:38'),(7316,0,0,'I',2174,'I002174',2526,4,'0000-00-00','51584',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:05:19','drarchit','2025-12-01 19:12:38'),(7317,0,0,'I',2174,'I002174',2526,5,'0000-00-00','51297',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:05:19','drarchit','2025-12-01 19:12:38'),(7318,0,0,'I',2174,'I002174',2526,6,'0000-00-00','51473',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 19:05:59','drarchit','2025-12-01 19:12:38'),(7319,0,0,'I',2174,'I002174',2526,7,'0000-00-00','51240',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0.5-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:05:59','drarchit','2025-12-01 19:12:38'),(7320,0,0,'I',2174,'I002174',2526,8,'0000-00-00','51249',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:06:08','drarchit','2025-12-01 19:12:38'),(7321,0,0,'I',2175,'I002175',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:08:49','drarchit','2025-12-01 19:09:13'),(7322,0,0,'I',2175,'I002175',2526,2,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:08:49','drarchit','2025-12-01 19:09:13'),(7323,0,0,'I',2175,'I002175',2526,3,'0000-00-00','51337',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:08:49','drarchit','2025-12-01 19:09:13'),(7325,0,0,'I',2175,'I002175',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-01 19:08:49','drarchit','2025-12-01 19:09:13'),(7326,0,0,'I',2175,'I002175',2526,5,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-12-01 19:09:13','','0000-00-00 00:00:00'),(7327,0,0,'I',2176,'I002176',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 19:10:13','darshan','2025-12-01 19:22:12'),(7328,0,0,'I',2176,'I002176',2526,2,'0000-00-00','51234',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-01 19:10:27','darshan','2025-12-01 19:22:12'),(7329,0,0,'I',2177,'I002177',2526,1,'0000-00-00','51349',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-01 19:10:38','','0000-00-00 00:00:00'),(7330,0,0,'I',2177,'I002177',2526,2,'0000-00-00','51424',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-01 19:10:38','','0000-00-00 00:00:00'),(7331,0,0,'I',2177,'I002177',2526,3,'0000-00-00','51319',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-12-01 19:10:38','','0000-00-00 00:00:00'),(7332,0,0,'I',2177,'I002177',2526,4,'0000-00-00','51350',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-01 19:10:38','','0000-00-00 00:00:00'),(7333,0,0,'I',2174,'I002174',2526,9,'0000-00-00','51214',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-01 19:12:32','drarchit','2025-12-01 19:12:38'),(7334,0,0,'I',2178,'I002178',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 19:12:53','darshan','2025-12-01 19:13:05'),(7335,0,0,'I',2178,'I002178',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 19:12:53','darshan','2025-12-01 19:13:05'),(7336,0,0,'I',2179,'I002179',2526,1,'0000-00-00','51249',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:17:34','drarchit','2025-12-01 19:18:47'),(7337,0,0,'I',2179,'I002179',2526,2,'0000-00-00','51248',0,0,'CAP','','','','',0,12,0,0,0,0,'1-0-0','','Wk',12,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:17:34','drarchit','2025-12-01 19:18:47'),(7338,0,0,'I',2179,'I002179',2526,3,'0000-00-00','51297',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:18:25','drarchit','2025-12-01 19:18:47'),(7339,0,0,'I',2179,'I002179',2526,4,'0000-00-00','51560',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:18:25','drarchit','2025-12-01 19:18:47'),(7340,0,0,'I',2179,'I002179',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:18:25','drarchit','2025-12-01 19:18:47'),(7341,0,0,'I',2180,'I002180',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:24:18','drarchit','2025-12-01 19:26:27'),(7344,0,0,'I',2181,'I002181',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 19:24:44','darshan','2025-12-01 19:25:34'),(7345,0,0,'I',2181,'I002181',2526,3,'0000-00-00','51205',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 19:24:44','darshan','2025-12-01 19:25:34'),(7346,0,0,'I',2181,'I002181',2526,2,'0000-00-00','51275',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'darshan','2025-12-01 19:24:44','darshan','2025-12-01 19:25:34'),(7347,0,0,'I',2181,'I002181',2526,4,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 19:24:44','darshan','2025-12-01 19:25:34'),(7348,0,0,'I',2181,'I002181',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-01 19:24:44','darshan','2025-12-01 19:25:34'),(7349,0,0,'I',2180,'I002180',2526,2,'0000-00-00','51475',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 19:26:14','drarchit','2025-12-01 19:26:27'),(7351,0,0,'I',2180,'I002180',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:26:14','drarchit','2025-12-01 19:26:27'),(7352,0,0,'I',2180,'I002180',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-01 19:26:14','drarchit','2025-12-01 19:26:27'),(7353,0,0,'I',2180,'I002180',2526,6,'0000-00-00','51262',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:26:14','drarchit','2025-12-01 19:26:27'),(7354,0,0,'I',2182,'I002182',2526,1,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:29:04','','0000-00-00 00:00:00'),(7355,0,0,'I',2182,'I002182',2526,2,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:29:04','','0000-00-00 00:00:00'),(7356,0,0,'I',2182,'I002182',2526,3,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-12-01 19:29:04','','0000-00-00 00:00:00'),(7357,0,0,'I',2182,'I002182',2526,4,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:29:04','','0000-00-00 00:00:00'),(7358,0,0,'I',2182,'I002182',2526,5,'0000-00-00','51332',0,0,'CAP','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:29:04','','0000-00-00 00:00:00'),(7359,0,0,'I',2182,'I002182',2526,6,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-01 19:29:04','','0000-00-00 00:00:00'),(7360,0,0,'I',2183,'I002183',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 19:31:42','darshan','2025-12-01 19:32:04'),(7361,0,0,'I',2183,'I002183',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,5,0,0,0,0,'.5-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 19:31:42','darshan','2025-12-01 19:32:04'),(7363,0,0,'I',2184,'I002184',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:32:00','drarchit','2025-12-01 19:32:19'),(7364,0,0,'I',2184,'I002184',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:32:00','drarchit','2025-12-01 19:32:19'),(7365,0,0,'I',2184,'I002184',2526,3,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 19:32:00','drarchit','2025-12-01 19:32:19'),(7366,0,0,'I',2184,'I002184',2526,4,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:32:00','drarchit','2025-12-01 19:32:19'),(7367,0,0,'I',2184,'I002184',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-01 19:32:00','drarchit','2025-12-01 19:32:19'),(7368,0,0,'I',2184,'I002184',2526,6,'0000-00-00','51269',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:32:19','','0000-00-00 00:00:00'),(7369,0,0,'I',2185,'I002185',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 19:38:27','','0000-00-00 00:00:00'),(7370,0,0,'I',2185,'I002185',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 19:38:27','','0000-00-00 00:00:00'),(7371,0,0,'I',2186,'I002186',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:43:06','drarchit','2025-12-01 19:43:31'),(7372,0,0,'I',2186,'I002186',2526,2,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:43:06','drarchit','2025-12-01 19:43:31'),(7373,0,0,'I',2186,'I002186',2526,3,'0000-00-00','51475',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 19:43:06','drarchit','2025-12-01 19:43:31'),(7374,0,0,'I',2186,'I002186',2526,4,'0000-00-00','51545',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:43:06','drarchit','2025-12-01 19:43:31'),(7375,0,0,'I',2187,'I002187',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 19:43:26','','0000-00-00 00:00:00'),(7376,0,0,'I',2187,'I002187',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 19:43:26','','0000-00-00 00:00:00'),(7377,0,0,'I',2187,'I002187',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-01 19:43:26','','0000-00-00 00:00:00'),(7378,0,0,'I',2186,'I002186',2526,5,'0000-00-00','51341',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:43:31','','0000-00-00 00:00:00'),(7379,0,0,'I',2188,'I002188',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 19:52:46','darshan','2025-12-01 19:53:22'),(7380,0,0,'I',2188,'I002188',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 19:52:46','darshan','2025-12-01 19:53:22'),(7381,0,0,'I',2188,'I002188',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-01 19:53:22','','0000-00-00 00:00:00'),(7382,0,0,'I',2189,'I002189',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:54:01','','0000-00-00 00:00:00'),(7383,0,0,'I',2189,'I002189',2526,2,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-01 19:54:01','','0000-00-00 00:00:00'),(7384,0,0,'I',2189,'I002189',2526,3,'0000-00-00','51279',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:54:01','','0000-00-00 00:00:00'),(7385,0,0,'I',2189,'I002189',2526,4,'0000-00-00','51232',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 19:54:01','','0000-00-00 00:00:00'),(7386,0,0,'I',2189,'I002189',2526,5,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 19:54:01','','0000-00-00 00:00:00'),(7387,0,0,'I',2190,'I002190',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 20:00:35','','0000-00-00 00:00:00'),(7388,0,0,'I',2190,'I002190',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 20:00:35','','0000-00-00 00:00:00'),(7389,0,0,'I',2190,'I002190',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 20:00:35','','0000-00-00 00:00:00'),(7390,0,0,'I',2191,'I002191',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 20:00:54','','0000-00-00 00:00:00'),(7391,0,0,'I',2191,'I002191',2526,2,'0000-00-00','51367',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 20:00:54','','0000-00-00 00:00:00'),(7392,0,0,'I',2191,'I002191',2526,3,'0000-00-00','51351',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 20:00:54','','0000-00-00 00:00:00'),(7393,0,0,'I',2191,'I002191',2526,4,'0000-00-00','51375',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-01 20:00:54','','0000-00-00 00:00:00'),(7394,0,0,'I',2191,'I002191',2526,5,'0000-00-00','51229',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-01 20:00:54','','0000-00-00 00:00:00'),(7395,0,0,'I',2191,'I002191',2526,6,'0000-00-00','51240',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 20:00:54','','0000-00-00 00:00:00'),(7396,0,0,'I',2191,'I002191',2526,7,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 20:00:54','','0000-00-00 00:00:00'),(7397,0,0,'I',2191,'I002191',2526,8,'0000-00-00','51371',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 20:00:54','','0000-00-00 00:00:00'),(7398,0,0,'I',2192,'I002192',2526,1,'0000-00-00','51267',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-01 20:06:36','darshan','2025-12-01 20:06:57'),(7399,0,0,'I',2192,'I002192',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-01 20:06:36','darshan','2025-12-01 20:06:57'),(7400,0,0,'I',2193,'I002193',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-01 20:07:07','','0000-00-00 00:00:00'),(7401,0,0,'I',2193,'I002193',2526,2,'0000-00-00','51337',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 20:07:07','','0000-00-00 00:00:00'),(7402,0,0,'I',2193,'I002193',2526,3,'0000-00-00','51501',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-01 20:07:07','','0000-00-00 00:00:00'),(7403,0,0,'I',2193,'I002193',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 20:07:07','','0000-00-00 00:00:00'),(7404,0,0,'I',2194,'I002194',2526,1,'0000-00-00','51467',0,0,'TAB','','','','',0,10,0,0,0,0,'0-1-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 20:13:10','drarchit','2025-12-01 20:28:51'),(7405,0,0,'I',2194,'I002194',2526,2,'0000-00-00','51229',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-01 20:13:10','drarchit','2025-12-01 20:28:51'),(7406,0,0,'I',2195,'I002195',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-01 20:14:24','drarchit','2025-12-01 20:15:44'),(7409,0,0,'I',2195,'I002195',2526,2,'0000-00-00','51279',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 20:14:55','drarchit','2025-12-01 20:15:44'),(7410,0,0,'I',2195,'I002195',2526,3,'0000-00-00','51484',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-01 20:15:15','drarchit','2025-12-01 20:15:44'),(7411,0,0,'I',2195,'I002195',2526,4,'0000-00-00','51321',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 20:15:44','','0000-00-00 00:00:00'),(7412,0,0,'I',2195,'I002195',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-01 20:15:44','','0000-00-00 00:00:00'),(7413,0,0,'I',2196,'I002196',2526,1,'0000-00-00','51232',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 20:18:57','','0000-00-00 00:00:00'),(7414,0,0,'I',2196,'I002196',2526,2,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 20:18:57','','0000-00-00 00:00:00'),(7415,0,0,'I',2196,'I002196',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-01 20:18:57','','0000-00-00 00:00:00'),(7416,0,0,'I',2197,'I002197',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-01 20:24:20','','0000-00-00 00:00:00'),(7417,0,0,'I',2197,'I002197',2526,2,'0000-00-00','51329',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-01 20:24:20','','0000-00-00 00:00:00'),(7418,0,0,'I',2197,'I002197',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 20:24:20','','0000-00-00 00:00:00'),(7419,0,0,'I',2197,'I002197',2526,4,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 20:24:20','','0000-00-00 00:00:00'),(7420,0,0,'I',2197,'I002197',2526,5,'0000-00-00','51475',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-01 20:24:20','','0000-00-00 00:00:00'),(7421,0,0,'I',2194,'I002194',2526,3,'0000-00-00','51585',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-01 20:28:51','','0000-00-00 00:00:00'),(7422,0,0,'I',2198,'I002198',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 10:43:13','','0000-00-00 00:00:00'),(7424,0,0,'I',2199,'I002199',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 10:46:15','darshan','2025-12-02 10:46:34'),(7425,0,0,'I',2199,'I002199',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 10:46:15','darshan','2025-12-02 10:46:34'),(7426,0,0,'I',2200,'I002200',2526,1,'0000-00-00','51527',0,0,'INJ','','','','',0,1,0,0,0,0,'','','Dy',1,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-12-02 11:09:04','','0000-00-00 00:00:00'),(7427,0,0,'I',2200,'I002200',2526,2,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 11:09:04','','0000-00-00 00:00:00'),(7428,0,0,'I',2200,'I002200',2526,3,'0000-00-00','51219',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-12-02 11:09:04','','0000-00-00 00:00:00'),(7429,0,0,'I',2200,'I002200',2526,4,'0000-00-00','51412',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 11:09:04','','0000-00-00 00:00:00'),(7430,0,0,'I',2201,'I002201',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-02 11:11:52','','0000-00-00 00:00:00'),(7431,0,0,'I',2201,'I002201',2526,2,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:11:52','','0000-00-00 00:00:00'),(7432,0,0,'I',2201,'I002201',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-02 11:11:52','','0000-00-00 00:00:00'),(7433,0,0,'I',2201,'I002201',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-02 11:11:52','','0000-00-00 00:00:00'),(7434,0,0,'I',2201,'I002201',2526,5,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:11:52','','0000-00-00 00:00:00'),(7435,0,0,'I',2201,'I002201',2526,6,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:11:52','','0000-00-00 00:00:00'),(7436,0,0,'I',2202,'I002202',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:15:05','darshan','2025-12-02 11:15:54'),(7437,0,0,'I',2202,'I002202',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:15:05','darshan','2025-12-02 11:15:54'),(7438,0,0,'I',2202,'I002202',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:15:05','darshan','2025-12-02 11:15:54'),(7442,0,0,'I',2203,'I002203',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 11:17:36','drarchit','2025-12-02 11:18:25'),(7443,0,0,'I',2203,'I002203',2526,2,'0000-00-00','51269',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 11:17:36','drarchit','2025-12-02 11:18:25'),(7444,0,0,'I',2203,'I002203',2526,3,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-02 11:17:36','drarchit','2025-12-02 11:18:25'),(7445,0,0,'I',2203,'I002203',2526,4,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 11:17:36','drarchit','2025-12-02 11:18:25'),(7446,0,0,'I',2203,'I002203',2526,5,'0000-00-00','51292',0,0,'TAB','','','','',0,9,0,0,0,0,'1-1-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 11:18:25','','0000-00-00 00:00:00'),(7447,0,0,'I',2203,'I002203',2526,6,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-02 11:18:25','','0000-00-00 00:00:00'),(7448,0,0,'I',2204,'I002204',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:19:53','','0000-00-00 00:00:00'),(7449,0,0,'I',2205,'I002205',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:26:42','','0000-00-00 00:00:00'),(7450,0,0,'I',2205,'I002205',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:26:42','','0000-00-00 00:00:00'),(7451,0,0,'I',2206,'I002206',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 11:29:46','','0000-00-00 00:00:00'),(7452,0,0,'I',2206,'I002206',2526,2,'0000-00-00','51500',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 11:29:46','','0000-00-00 00:00:00'),(7453,0,0,'I',2207,'I002207',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:31:19','','0000-00-00 00:00:00'),(7454,0,0,'I',2207,'I002207',2526,2,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-02 11:31:19','','0000-00-00 00:00:00'),(7455,0,0,'I',2207,'I002207',2526,3,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:31:19','','0000-00-00 00:00:00'),(7456,0,0,'I',2207,'I002207',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-02 11:31:19','','0000-00-00 00:00:00'),(7457,0,0,'I',2207,'I002207',2526,5,'0000-00-00','51215',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:31:19','','0000-00-00 00:00:00'),(7458,0,0,'I',2208,'I002208',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:36:37','darshan','2025-12-02 11:37:39'),(7459,0,0,'I',2208,'I002208',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:36:37','darshan','2025-12-02 11:37:39'),(7460,0,0,'I',2208,'I002208',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:36:37','darshan','2025-12-02 11:37:39'),(7461,0,0,'I',2208,'I002208',2526,4,'0000-00-00','51277',0,0,'OINT','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'darshan','2025-12-02 11:37:39','','0000-00-00 00:00:00'),(7462,0,0,'I',2209,'I002209',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:40:59','','0000-00-00 00:00:00'),(7463,0,0,'I',2209,'I002209',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:40:59','','0000-00-00 00:00:00'),(7464,0,0,'I',2211,'I002211',2526,1,'0000-00-00','51235',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-02 11:54:06','drarchit','2025-12-02 11:54:28'),(7465,0,0,'I',2211,'I002211',2526,2,'0000-00-00','51324',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 11:54:06','drarchit','2025-12-02 11:54:28'),(7466,0,0,'I',2211,'I002211',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 11:54:06','drarchit','2025-12-02 11:54:28'),(7467,0,0,'I',2211,'I002211',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-02 11:54:28','','0000-00-00 00:00:00'),(7468,0,0,'I',2212,'I002212',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:54:49','','0000-00-00 00:00:00'),(7469,0,0,'I',2212,'I002212',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:54:49','','0000-00-00 00:00:00'),(7470,0,0,'I',2212,'I002212',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-02 11:54:49','','0000-00-00 00:00:00'),(7471,0,0,'I',2214,'I002214',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:57:30','darshan','2025-12-02 11:58:05'),(7472,0,0,'I',2214,'I002214',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:57:30','darshan','2025-12-02 11:58:05'),(7473,0,0,'I',2214,'I002214',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 11:57:30','darshan','2025-12-02 11:58:05'),(7474,0,0,'I',2214,'I002214',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-02 11:57:30','darshan','2025-12-02 11:58:05'),(7475,0,0,'I',2215,'I002215',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 11:57:57','','0000-00-00 00:00:00'),(7476,0,0,'I',2215,'I002215',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-02 11:57:57','','0000-00-00 00:00:00'),(7477,0,0,'I',2215,'I002215',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 11:57:57','','0000-00-00 00:00:00'),(7478,0,0,'I',2215,'I002215',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-02 11:57:57','','0000-00-00 00:00:00'),(7479,0,0,'I',2215,'I002215',2526,5,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 11:57:57','','0000-00-00 00:00:00'),(7480,0,0,'I',2215,'I002215',2526,6,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 11:57:57','','0000-00-00 00:00:00'),(7481,0,0,'I',2213,'I002213',2526,1,'0000-00-00','51587',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-02 11:57:57','drjayant','2025-12-02 11:59:05'),(7482,0,0,'I',2213,'I002213',2526,2,'0000-00-00','51588',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-02 11:59:05','','0000-00-00 00:00:00'),(7483,0,0,'I',2216,'I002216',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-02 12:04:49','drarchit','2025-12-02 12:05:18'),(7484,0,0,'I',2216,'I002216',2526,2,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-02 12:04:49','drarchit','2025-12-02 12:05:18'),(7485,0,0,'I',2216,'I002216',2526,3,'0000-00-00','51352',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 12:04:49','drarchit','2025-12-02 12:05:18'),(7486,0,0,'I',2216,'I002216',2526,4,'0000-00-00','51217',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 12:04:49','drarchit','2025-12-02 12:05:18'),(7487,0,0,'I',2216,'I002216',2526,5,'0000-00-00','51499',0,0,'TAB','','','','',0,42,0,0,0,0,'1-0-1','','Dy',21,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 12:04:49','drarchit','2025-12-02 12:05:18'),(7488,0,0,'I',2216,'I002216',2526,6,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 12:04:49','drarchit','2025-12-02 12:05:18'),(7489,0,0,'I',2216,'I002216',2526,7,'0000-00-00','51218',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 12:04:49','drarchit','2025-12-02 12:05:18'),(7490,0,0,'I',2216,'I002216',2526,8,'0000-00-00','51221',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-02 12:04:49','drarchit','2025-12-02 12:05:18'),(7491,0,0,'I',2216,'I002216',2526,9,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-02 12:05:18','','0000-00-00 00:00:00'),(7492,0,0,'I',2217,'I002217',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 12:09:34','','0000-00-00 00:00:00'),(7494,0,0,'I',2218,'I002218',2526,1,'0000-00-00','51276',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 12:12:03','darshan','2025-12-02 12:13:11'),(7497,0,0,'I',2218,'I002218',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 12:12:48','darshan','2025-12-02 12:13:11'),(7498,0,0,'I',2218,'I002218',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-02 12:13:11','','0000-00-00 00:00:00'),(7499,0,0,'I',2220,'I002220',2526,1,'0000-00-00','51230',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 12:14:20','drarchit','2025-12-02 12:15:00'),(7500,0,0,'I',2220,'I002220',2526,2,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 12:14:20','drarchit','2025-12-02 12:15:00'),(7501,0,0,'I',2220,'I002220',2526,3,'0000-00-00','51332',0,0,'CAP','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 12:14:31','drarchit','2025-12-02 12:15:00'),(7502,0,0,'I',2220,'I002220',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-02 12:14:31','drarchit','2025-12-02 12:15:00'),(7503,0,0,'I',2220,'I002220',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-02 12:15:00','','0000-00-00 00:00:00'),(7504,0,0,'I',2220,'I002220',2526,6,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 12:15:00','','0000-00-00 00:00:00'),(7505,0,0,'I',2219,'I002219',2526,1,'0000-00-00','51589',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-02 12:16:01','','0000-00-00 00:00:00'),(7506,0,0,'I',2219,'I002219',2526,2,'0000-00-00','51562',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-02 12:16:01','','0000-00-00 00:00:00'),(7507,0,0,'I',2219,'I002219',2526,3,'0000-00-00','51376',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-02 12:16:01','','0000-00-00 00:00:00'),(7508,0,0,'I',2219,'I002219',2526,4,'0000-00-00','51583',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-02 12:16:01','','0000-00-00 00:00:00'),(7509,0,0,'I',2221,'I002221',2526,1,'0000-00-00','51396',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 12:22:18','drarchit','2025-12-02 12:22:37'),(7510,0,0,'I',2221,'I002221',2526,2,'0000-00-00','51373',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 12:22:18','drarchit','2025-12-02 12:22:37'),(7511,0,0,'I',2221,'I002221',2526,3,'0000-00-00','51395',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 12:22:18','drarchit','2025-12-02 12:22:37'),(7512,0,0,'I',2222,'I002222',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,90,0,0,0,0,'.5-0-.5','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 12:25:36','','0000-00-00 00:00:00'),(7513,0,0,'I',2222,'I002222',2526,2,'0000-00-00','51187',0,0,'TAB','','','','',0,20,0,0,0,0,'','','Dy',90,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-02 12:25:36','','0000-00-00 00:00:00'),(7514,0,0,'I',2223,'I002223',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 12:30:35','darshan','2025-12-02 12:31:57'),(7515,0,0,'I',2223,'I002223',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 12:31:57','','0000-00-00 00:00:00'),(7516,0,0,'I',2223,'I002223',2526,3,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 12:31:57','','0000-00-00 00:00:00'),(7517,0,0,'I',2223,'I002223',2526,4,'0000-00-00','51208',0,0,'TAB','','','','',0,0,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 12:31:57','','0000-00-00 00:00:00'),(7518,0,0,'I',2224,'I002224',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 12:36:39','','0000-00-00 00:00:00'),(7519,0,0,'I',2224,'I002224',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 12:36:39','','0000-00-00 00:00:00'),(7520,0,0,'I',2225,'I002225',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 12:40:41','','0000-00-00 00:00:00'),(7521,0,0,'I',2225,'I002225',2526,2,'0000-00-00','51190',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 12:40:41','','0000-00-00 00:00:00'),(7522,0,0,'I',2225,'I002225',2526,3,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 12:40:41','','0000-00-00 00:00:00'),(7523,0,0,'I',2226,'I002226',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,90,0,0,0,0,'.5-0-.5','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 12:45:03','','0000-00-00 00:00:00'),(7524,0,0,'I',2226,'I002226',2526,2,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-02 12:45:03','','0000-00-00 00:00:00'),(7525,0,0,'I',2227,'I002227',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 12:49:53','','0000-00-00 00:00:00'),(7526,0,0,'I',2227,'I002227',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 12:49:53','','0000-00-00 00:00:00'),(7527,0,0,'I',2227,'I002227',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-02 12:49:53','','0000-00-00 00:00:00'),(7528,0,0,'I',2227,'I002227',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-02 12:49:53','','0000-00-00 00:00:00'),(7529,0,0,'I',2228,'I002228',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 12:49:56','darshan','2025-12-02 12:50:15'),(7530,0,0,'I',2228,'I002228',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 12:49:56','darshan','2025-12-02 12:50:15'),(7531,0,0,'I',2228,'I002228',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-02 12:49:56','darshan','2025-12-02 12:50:15'),(7532,0,0,'I',2229,'I002229',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 13:00:53','','0000-00-00 00:00:00'),(7533,0,0,'I',2229,'I002229',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 13:00:53','','0000-00-00 00:00:00'),(7534,0,0,'I',2229,'I002229',2526,3,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-02 13:00:53','','0000-00-00 00:00:00'),(7535,0,0,'I',2229,'I002229',2526,4,'0000-00-00','51269',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 13:00:53','','0000-00-00 00:00:00'),(7536,0,0,'I',2229,'I002229',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-02 13:00:53','','0000-00-00 00:00:00'),(7537,0,0,'I',2230,'I002230',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 13:05:51','','0000-00-00 00:00:00'),(7538,0,0,'I',2230,'I002230',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 13:05:51','','0000-00-00 00:00:00'),(7539,0,0,'I',2230,'I002230',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-02 13:05:51','','0000-00-00 00:00:00'),(7541,0,0,'I',2231,'I002231',2526,1,'0000-00-00','51209',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 13:08:46','darshan','2025-12-02 13:09:25'),(7543,0,0,'I',2231,'I002231',2526,2,'0000-00-00','51215',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 13:08:46','darshan','2025-12-02 13:09:25'),(7546,0,0,'I',2232,'I002232',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 13:08:53','drarchit','2025-12-02 13:11:02'),(7547,0,0,'I',2232,'I002232',2526,2,'0000-00-00','51590',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 13:11:02','','0000-00-00 00:00:00'),(7548,0,0,'I',2232,'I002232',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-02 13:11:02','','0000-00-00 00:00:00'),(7549,0,0,'I',2233,'I002233',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-02 13:22:01','','0000-00-00 00:00:00'),(7550,0,0,'I',2233,'I002233',2526,2,'0000-00-00','51370',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-02 13:22:01','','0000-00-00 00:00:00'),(7551,0,0,'I',2233,'I002233',2526,3,'0000-00-00','51479',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-02 13:22:01','','0000-00-00 00:00:00'),(7552,0,0,'I',2233,'I002233',2526,4,'0000-00-00','51231',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 13:22:01','','0000-00-00 00:00:00'),(7553,0,0,'I',2233,'I002233',2526,5,'0000-00-00','51505',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-02 13:22:01','','0000-00-00 00:00:00'),(7554,0,0,'I',2233,'I002233',2526,6,'0000-00-00','51490',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-02 13:22:01','','0000-00-00 00:00:00'),(7555,0,0,'I',2233,'I002233',2526,7,'0000-00-00','51501',0,0,'TAB','','','','',0,30,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-02 13:22:01','','0000-00-00 00:00:00'),(7556,0,0,'I',2234,'I002234',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-02 13:27:33','darshan','2025-12-02 13:28:05'),(7557,0,0,'I',2234,'I002234',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 13:27:33','darshan','2025-12-02 13:28:05'),(7558,0,0,'I',2234,'I002234',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 13:27:42','darshan','2025-12-02 13:28:05'),(7559,0,0,'I',2234,'I002234',2526,4,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 13:28:05','','0000-00-00 00:00:00'),(7560,0,0,'I',2234,'I002234',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-02 13:28:05','','0000-00-00 00:00:00'),(7561,0,0,'I',2235,'I002235',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 13:33:42','darshan','2025-12-02 13:34:14'),(7562,0,0,'I',2235,'I002235',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 13:33:42','darshan','2025-12-02 13:34:14'),(7563,0,0,'I',2235,'I002235',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 13:33:42','darshan','2025-12-02 13:34:14'),(7564,0,0,'I',2235,'I002235',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-02 13:34:14','','0000-00-00 00:00:00'),(7565,0,0,'I',2236,'I002236',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 13:44:53','darshan','2025-12-02 13:45:16'),(7566,0,0,'I',2236,'I002236',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 13:44:57','darshan','2025-12-02 13:45:16'),(7567,0,0,'I',2236,'I002236',2526,3,'0000-00-00','51194',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 13:45:16','','0000-00-00 00:00:00'),(7568,0,0,'I',2237,'I002237',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 13:49:26','','0000-00-00 00:00:00'),(7569,0,0,'I',2237,'I002237',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 13:49:26','','0000-00-00 00:00:00'),(7570,0,0,'I',2238,'I002238',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 13:59:43','','0000-00-00 00:00:00'),(7571,0,0,'I',2238,'I002238',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 13:59:43','','0000-00-00 00:00:00'),(7572,0,0,'I',2239,'I002239',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 14:11:04','','0000-00-00 00:00:00'),(7573,0,0,'I',2239,'I002239',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 14:11:04','','0000-00-00 00:00:00'),(7576,0,0,'I',2240,'I002240',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 14:14:12','darshan','2025-12-02 14:14:38'),(7577,0,0,'I',2240,'I002240',2526,2,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-02 14:14:38','','0000-00-00 00:00:00'),(7578,0,0,'I',2241,'I002241',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 14:15:54','','0000-00-00 00:00:00'),(7579,0,0,'I',2241,'I002241',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 14:15:54','','0000-00-00 00:00:00'),(7580,0,0,'I',2241,'I002241',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 14:15:54','','0000-00-00 00:00:00'),(7581,0,0,'I',2242,'I002242',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 17:16:29','darshan','2025-12-02 17:17:22'),(7582,0,0,'I',2242,'I002242',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 17:17:22','','0000-00-00 00:00:00'),(7583,0,0,'I',2243,'I002243',2526,1,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-02 17:24:47','','0000-00-00 00:00:00'),(7584,0,0,'I',2243,'I002243',2526,2,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 17:24:47','','0000-00-00 00:00:00'),(7585,0,0,'I',2243,'I002243',2526,3,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 17:24:47','','0000-00-00 00:00:00'),(7586,0,0,'I',2243,'I002243',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-02 17:24:47','','0000-00-00 00:00:00'),(7587,0,0,'I',2244,'I002244',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 17:42:39','','0000-00-00 00:00:00'),(7588,0,0,'I',2244,'I002244',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 17:42:39','','0000-00-00 00:00:00'),(7589,0,0,'I',2244,'I002244',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 17:42:39','','0000-00-00 00:00:00'),(7590,0,0,'I',2244,'I002244',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-02 17:42:39','','0000-00-00 00:00:00'),(7592,0,0,'I',2245,'I002245',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 17:49:22','darshan','2025-12-02 17:49:34'),(7593,0,0,'I',2246,'I002246',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 17:56:14','','0000-00-00 00:00:00'),(7594,0,0,'I',2247,'I002247',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 18:05:49','','0000-00-00 00:00:00'),(7595,0,0,'I',2247,'I002247',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 18:05:49','','0000-00-00 00:00:00'),(7596,0,0,'I',2247,'I002247',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 18:05:49','','0000-00-00 00:00:00'),(7597,0,0,'I',2247,'I002247',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-02 18:05:49','','0000-00-00 00:00:00'),(7598,0,0,'I',2248,'I002248',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 18:11:21','darshan','2025-12-02 18:12:05'),(7599,0,0,'I',2248,'I002248',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 18:11:21','darshan','2025-12-02 18:12:05'),(7600,0,0,'I',2248,'I002248',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-02 18:11:21','darshan','2025-12-02 18:12:05'),(7602,0,0,'I',2248,'I002248',2526,5,'0000-00-00','51215',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 18:11:21','darshan','2025-12-02 18:12:05'),(7603,0,0,'I',2249,'I002249',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:12:15','drarchit','2025-12-02 18:14:27'),(7605,0,0,'I',2249,'I002249',2526,3,'0000-00-00','51228',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-02 18:12:15','drarchit','2025-12-02 18:14:27'),(7606,0,0,'I',2249,'I002249',2526,4,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:12:15','drarchit','2025-12-02 18:14:27'),(7607,0,0,'I',2249,'I002249',2526,5,'0000-00-00','51338',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:12:15','drarchit','2025-12-02 18:14:27'),(7608,0,0,'I',2249,'I002249',2526,6,'0000-00-00','51591',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:13:31','drarchit','2025-12-02 18:14:27'),(7609,0,0,'I',2250,'I002250',2526,1,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:17:50','drarchit','2025-12-02 18:17:58'),(7610,0,0,'I',2250,'I002250',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-02 18:17:50','drarchit','2025-12-02 18:17:58'),(7611,0,0,'I',2250,'I002250',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:17:50','drarchit','2025-12-02 18:17:58'),(7612,0,0,'I',2250,'I002250',2526,4,'0000-00-00','51348',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:17:50','drarchit','2025-12-02 18:17:58'),(7613,0,0,'I',2250,'I002250',2526,5,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:17:50','drarchit','2025-12-02 18:17:58'),(7614,0,0,'I',2251,'I002251',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 18:22:13','darshan','2025-12-02 18:22:24'),(7615,0,0,'I',2251,'I002251',2526,2,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-02 18:22:24','','0000-00-00 00:00:00'),(7616,0,0,'I',2252,'I002252',2526,1,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:24:38','','0000-00-00 00:00:00'),(7617,0,0,'I',2252,'I002252',2526,2,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:24:38','','0000-00-00 00:00:00'),(7618,0,0,'I',2252,'I002252',2526,3,'0000-00-00','51436',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:24:38','','0000-00-00 00:00:00'),(7619,0,0,'I',2253,'I002253',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 18:25:49','','0000-00-00 00:00:00'),(7620,0,0,'I',2253,'I002253',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 18:25:49','','0000-00-00 00:00:00'),(7621,0,0,'I',2254,'I002254',2526,1,'0000-00-00','51426',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-02 18:26:44','drjayant','2025-12-03 12:57:25'),(7622,0,0,'I',2255,'I002255',2526,1,'0000-00-00','51349',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-02 18:30:24','drjayant','2025-12-02 18:32:56'),(7623,0,0,'I',2256,'I002256',2526,1,'0000-00-00','51360',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:30:57','drarchit','2025-12-02 18:31:50'),(7624,0,0,'I',2256,'I002256',2526,2,'0000-00-00','51242',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:30:57','drarchit','2025-12-02 18:31:50'),(7625,0,0,'I',2256,'I002256',2526,3,'0000-00-00','51375',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-0','','Dy',180,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-02 18:30:57','drarchit','2025-12-02 18:31:50'),(7626,0,0,'I',2256,'I002256',2526,4,'0000-00-00','51519',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:30:57','drarchit','2025-12-02 18:31:50'),(7627,0,0,'I',2256,'I002256',2526,5,'0000-00-00','51384',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:30:57','drarchit','2025-12-02 18:31:50'),(7628,0,0,'I',2256,'I002256',2526,6,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:30:57','drarchit','2025-12-02 18:31:50'),(7629,0,0,'I',2256,'I002256',2526,7,'0000-00-00','51592',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:31:50','','0000-00-00 00:00:00'),(7630,0,0,'I',2255,'I002255',2526,2,'0000-00-00','51320',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-02 18:32:01','drjayant','2025-12-02 18:32:56'),(7631,0,0,'I',2255,'I002255',2526,3,'0000-00-00','51409',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-02 18:32:01','drjayant','2025-12-02 18:32:56'),(7632,0,0,'I',2255,'I002255',2526,4,'0000-00-00','51443',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-02 18:32:56','','0000-00-00 00:00:00'),(7633,0,0,'I',2257,'I002257',2526,1,'0000-00-00','51571',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-02 18:36:54','drjayant','2025-12-02 18:37:48'),(7634,0,0,'I',2257,'I002257',2526,2,'0000-00-00','51593',0,0,'TAB','','','','',0,0,0,0,0,0,'1-1-1','','Dy',0,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-02 18:37:48','','0000-00-00 00:00:00'),(7635,0,0,'I',2258,'I002258',2526,1,'0000-00-00','51381',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:47:04','','0000-00-00 00:00:00'),(7636,0,0,'I',2258,'I002258',2526,2,'0000-00-00','51436',0,0,'TAB','','','','',0,45,0,0,0,0,'0-0-0.5','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:47:04','','0000-00-00 00:00:00'),(7637,0,0,'I',2258,'I002258',2526,3,'0000-00-00','51501',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-02 18:47:04','','0000-00-00 00:00:00'),(7638,0,0,'I',2259,'I002259',2526,1,'0000-00-00','51230',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:52:01','drarchit','2025-12-02 18:52:31'),(7639,0,0,'I',2259,'I002259',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-02 18:52:01','drarchit','2025-12-02 18:52:31'),(7640,0,0,'I',2259,'I002259',2526,3,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-02 18:52:01','drarchit','2025-12-02 18:52:31'),(7641,0,0,'I',2259,'I002259',2526,4,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:52:01','drarchit','2025-12-02 18:52:31'),(7642,0,0,'I',2259,'I002259',2526,5,'0000-00-00','51332',0,0,'CAP','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:52:01','drarchit','2025-12-02 18:52:31'),(7643,0,0,'I',2259,'I002259',2526,6,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:52:31','','0000-00-00 00:00:00'),(7644,0,0,'I',2260,'I002260',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 18:55:33','darshan','2025-12-02 18:56:32'),(7645,0,0,'I',2260,'I002260',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 18:55:33','darshan','2025-12-02 18:56:32'),(7646,0,0,'I',2260,'I002260',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 18:55:33','darshan','2025-12-02 18:56:32'),(7648,0,0,'I',2260,'I002260',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-02 18:56:32','','0000-00-00 00:00:00'),(7649,0,0,'I',2261,'I002261',2526,1,'0000-00-00','51484',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-02 18:57:39','drarchit','2025-12-02 18:59:25'),(7650,0,0,'I',2261,'I002261',2526,2,'0000-00-00','51594',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 18:59:25','','0000-00-00 00:00:00'),(7651,0,0,'I',2261,'I002261',2526,3,'0000-00-00','51475',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-02 18:59:25','','0000-00-00 00:00:00'),(7652,0,0,'I',2262,'I002262',2526,1,'0000-00-00','51284',0,0,'CAP','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 19:02:08','','0000-00-00 00:00:00'),(7653,0,0,'I',2262,'I002262',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 19:02:08','','0000-00-00 00:00:00'),(7654,0,0,'I',2262,'I002262',2526,3,'0000-00-00','51267',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 19:02:08','','0000-00-00 00:00:00'),(7655,0,0,'I',2263,'I002263',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-0','','Dy',180,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-02 19:03:16','drarchit','2025-12-06 13:04:59'),(7656,0,0,'I',2264,'I002264',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 19:08:32','darshan','2025-12-02 19:08:50'),(7657,0,0,'I',2264,'I002264',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-02 19:08:32','darshan','2025-12-02 19:08:50'),(7658,0,0,'I',2265,'I002265',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 19:17:49','','0000-00-00 00:00:00'),(7659,0,0,'I',2266,'I002266',2526,1,'0000-00-00','51533',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 19:27:15','','0000-00-00 00:00:00'),(7660,0,0,'I',2266,'I002266',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-02 19:27:15','','0000-00-00 00:00:00'),(7661,0,0,'I',2266,'I002266',2526,3,'0000-00-00','51500',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 19:27:15','','0000-00-00 00:00:00'),(7662,0,0,'I',2266,'I002266',2526,4,'0000-00-00','51403',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 19:27:15','','0000-00-00 00:00:00'),(7663,0,0,'I',2267,'I002267',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-02 19:30:03','drjayant','2025-12-02 19:30:22'),(7664,0,0,'I',2268,'I002268',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-02 19:37:51','','0000-00-00 00:00:00'),(7665,0,0,'I',2268,'I002268',2526,2,'0000-00-00','51214',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-12-02 19:37:51','','0000-00-00 00:00:00'),(7666,0,0,'I',2268,'I002268',2526,3,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 19:37:51','','0000-00-00 00:00:00'),(7667,0,0,'I',2268,'I002268',2526,4,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 19:37:51','','0000-00-00 00:00:00'),(7668,0,0,'I',2268,'I002268',2526,5,'0000-00-00','51519',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 19:37:51','','0000-00-00 00:00:00'),(7669,0,0,'I',2268,'I002268',2526,6,'0000-00-00','51301',0,0,'TAB','','','','',0,90,0,0,0,0,'0.5-0-0.5','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 19:37:51','','0000-00-00 00:00:00'),(7671,0,0,'I',2269,'I002269',2526,1,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-02 19:41:56','drarchit','2025-12-02 19:42:07'),(7672,0,0,'I',2269,'I002269',2526,2,'0000-00-00','51472',0,0,'TAB','','','','',0,3,0,0,0,0,'0-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-02 19:41:56','drarchit','2025-12-02 19:42:07'),(7673,0,0,'I',2269,'I002269',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 19:41:56','drarchit','2025-12-02 19:42:07'),(7674,0,0,'I',2269,'I002269',2526,4,'0000-00-00','51269',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 19:41:56','drarchit','2025-12-02 19:42:07'),(7675,0,0,'I',2270,'I002270',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 19:46:35','','0000-00-00 00:00:00'),(7676,0,0,'I',2270,'I002270',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 19:46:35','','0000-00-00 00:00:00'),(7677,0,0,'I',2270,'I002270',2526,3,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-02 19:46:35','','0000-00-00 00:00:00'),(7678,0,0,'I',2270,'I002270',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 19:46:35','','0000-00-00 00:00:00'),(7679,0,0,'I',2271,'I002271',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 19:46:37','darshan','2025-12-02 19:46:51'),(7680,0,0,'I',2271,'I002271',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-02 19:46:37','darshan','2025-12-02 19:46:51'),(7681,0,0,'I',2271,'I002271',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-02 19:46:37','darshan','2025-12-02 19:46:51'),(7682,0,0,'I',2272,'I002272',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 19:51:50','','0000-00-00 00:00:00'),(7683,0,0,'I',2272,'I002272',2526,2,'0000-00-00','51229',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-02 19:51:50','','0000-00-00 00:00:00'),(7684,0,0,'I',2272,'I002272',2526,3,'0000-00-00','51500',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 19:51:50','','0000-00-00 00:00:00'),(7685,0,0,'I',2272,'I002272',2526,4,'0000-00-00','51480',0,0,'TAB','','','','',0,6,0,0,0,0,'1-1-1','','Dy',2,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-02 19:51:50','','0000-00-00 00:00:00'),(7686,0,0,'I',2272,'I002272',2526,5,'0000-00-00','51220',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 19:51:50','','0000-00-00 00:00:00'),(7687,0,0,'I',2273,'I002273',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 19:57:54','drarchit','2025-12-02 19:58:38'),(7688,0,0,'I',2273,'I002273',2526,2,'0000-00-00','51324',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 19:57:54','drarchit','2025-12-02 19:58:38'),(7689,0,0,'I',2273,'I002273',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-02 19:58:38','','0000-00-00 00:00:00'),(7690,0,0,'I',2274,'I002274',2526,1,'0000-00-00','51239',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-02 20:01:45','drarchit','2025-12-02 20:02:20'),(7692,0,0,'I',2274,'I002274',2526,2,'0000-00-00','51370',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-02 20:02:20','','0000-00-00 00:00:00'),(7693,0,0,'I',2274,'I002274',2526,3,'0000-00-00','51563',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-02 20:02:20','','0000-00-00 00:00:00'),(7694,0,0,'I',2274,'I002274',2526,4,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-02 20:02:20','','0000-00-00 00:00:00'),(7695,0,0,'I',2275,'I002275',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 10:42:38','','0000-00-00 00:00:00'),(7696,0,0,'I',2275,'I002275',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 10:42:38','','0000-00-00 00:00:00'),(7697,0,0,'I',2275,'I002275',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 10:42:38','','0000-00-00 00:00:00'),(7698,0,0,'I',2275,'I002275',2526,4,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-03 10:42:38','','0000-00-00 00:00:00'),(7699,0,0,'I',2276,'I002276',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 10:48:00','darshan','2025-12-03 10:48:51'),(7700,0,0,'I',2276,'I002276',2526,2,'0000-00-00','51289',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 10:48:51','','0000-00-00 00:00:00'),(7701,0,0,'I',2276,'I002276',2526,3,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-03 10:48:51','','0000-00-00 00:00:00'),(7702,0,0,'I',2277,'I002277',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-03 10:53:10','darshan','2025-12-03 10:53:47'),(7703,0,0,'I',2277,'I002277',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 10:53:10','darshan','2025-12-03 10:53:47'),(7705,0,0,'I',2277,'I002277',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-03 10:53:10','darshan','2025-12-03 10:53:47'),(7706,0,0,'I',2277,'I002277',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 10:53:47','','0000-00-00 00:00:00'),(7707,0,0,'I',2278,'I002278',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-03 11:03:59','darshan','2025-12-03 12:05:34'),(7708,0,0,'I',2278,'I002278',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 11:03:59','darshan','2025-12-03 12:05:34'),(7709,0,0,'I',2278,'I002278',2526,3,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 11:03:59','darshan','2025-12-03 12:05:34'),(7710,0,0,'I',2278,'I002278',2526,4,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-03 11:03:59','darshan','2025-12-03 12:05:34'),(7711,0,0,'I',2278,'I002278',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-03 11:03:59','darshan','2025-12-03 12:05:34'),(7712,0,0,'I',2279,'I002279',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-03 11:06:31','darshan','2025-12-03 11:07:17'),(7713,0,0,'I',2279,'I002279',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 11:06:31','darshan','2025-12-03 11:07:17'),(7714,0,0,'I',2279,'I002279',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 11:06:31','darshan','2025-12-03 11:07:17'),(7716,0,0,'I',2280,'I002280',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 11:23:07','darshan','2025-12-03 11:24:29'),(7717,0,0,'I',2280,'I002280',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 11:23:07','darshan','2025-12-03 11:24:29'),(7718,0,0,'I',2280,'I002280',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-03 11:23:07','darshan','2025-12-03 11:24:29'),(7719,0,0,'I',2280,'I002280',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-03 11:24:29','','0000-00-00 00:00:00'),(7720,0,0,'I',2282,'I002282',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 11:35:17','','0000-00-00 00:00:00'),(7721,0,0,'I',2282,'I002282',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 11:35:17','','0000-00-00 00:00:00'),(7722,0,0,'I',2282,'I002282',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 11:35:17','','0000-00-00 00:00:00'),(7723,0,0,'I',2282,'I002282',2526,4,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-03 11:35:17','','0000-00-00 00:00:00'),(7724,0,0,'I',2283,'I002283',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 11:38:35','','0000-00-00 00:00:00'),(7725,0,0,'I',2283,'I002283',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 11:38:35','','0000-00-00 00:00:00'),(7726,0,0,'I',2283,'I002283',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 11:38:35','','0000-00-00 00:00:00'),(7727,0,0,'I',2283,'I002283',2526,4,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-03 11:38:35','','0000-00-00 00:00:00'),(7728,0,0,'I',2284,'I002284',2526,1,'0000-00-00','51297',0,0,'TAB','','','','',0,3,0,0,0,0,'0-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 11:42:08','','0000-00-00 00:00:00'),(7729,0,0,'I',2285,'I002285',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-03 11:42:47','','0000-00-00 00:00:00'),(7730,0,0,'I',2285,'I002285',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 11:42:47','','0000-00-00 00:00:00'),(7731,0,0,'I',2286,'I002286',2526,1,'0000-00-00','51575',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-03 11:43:35','drjayant','2025-12-03 11:46:47'),(7732,0,0,'I',2286,'I002286',2526,2,'0000-00-00','51320',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-03 11:43:35','drjayant','2025-12-03 11:46:47'),(7733,0,0,'I',2287,'I002287',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-03 11:53:22','','0000-00-00 00:00:00'),(7734,0,0,'I',2287,'I002287',2526,2,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 11:53:22','','0000-00-00 00:00:00'),(7735,0,0,'I',2287,'I002287',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-03 11:53:22','','0000-00-00 00:00:00'),(7736,0,0,'I',2288,'I002288',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 11:54:29','darshan','2025-12-03 13:09:54'),(7737,0,0,'I',2288,'I002288',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 11:54:29','darshan','2025-12-03 13:09:54'),(7738,0,0,'I',2288,'I002288',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-03 11:54:29','darshan','2025-12-03 13:09:54'),(7739,0,0,'I',2289,'I002289',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 11:56:51','','0000-00-00 00:00:00'),(7740,0,0,'I',2289,'I002289',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-03 11:56:51','','0000-00-00 00:00:00'),(7741,0,0,'I',2289,'I002289',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 11:56:51','','0000-00-00 00:00:00'),(7742,0,0,'I',2289,'I002289',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-03 11:56:51','','0000-00-00 00:00:00'),(7743,0,0,'I',2289,'I002289',2526,5,'0000-00-00','51269',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 11:56:51','','0000-00-00 00:00:00'),(7745,0,0,'I',2290,'I002290',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-03 11:59:29','darshan','2025-12-03 12:00:00'),(7746,0,0,'I',2290,'I002290',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 11:59:29','darshan','2025-12-03 12:00:00'),(7748,0,0,'I',2290,'I002290',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 12:00:00','','0000-00-00 00:00:00'),(7749,0,0,'I',2292,'I002292',2526,1,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-03 12:03:26','darshan','2025-12-03 12:03:42'),(7750,0,0,'I',2292,'I002292',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 12:03:26','darshan','2025-12-03 12:03:42'),(7751,0,0,'I',2292,'I002292',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 12:03:26','darshan','2025-12-03 12:03:42'),(7752,0,0,'I',2292,'I002292',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-03 12:03:26','darshan','2025-12-03 12:03:42'),(7753,0,0,'I',2293,'I002293',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 12:17:17','drarchit','2025-12-03 12:17:48'),(7754,0,0,'I',2293,'I002293',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 12:17:17','drarchit','2025-12-03 12:17:48'),(7755,0,0,'I',2293,'I002293',2526,3,'0000-00-00','51269',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 12:17:17','drarchit','2025-12-03 12:17:48'),(7757,0,0,'I',2293,'I002293',2526,4,'0000-00-00','51220',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 12:17:48','','0000-00-00 00:00:00'),(7758,0,0,'I',2294,'I002294',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 12:17:55','','0000-00-00 00:00:00'),(7759,0,0,'I',2294,'I002294',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 12:17:55','','0000-00-00 00:00:00'),(7760,0,0,'I',2294,'I002294',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 12:17:55','','0000-00-00 00:00:00'),(7761,0,0,'I',2294,'I002294',2526,4,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-03 12:17:55','','0000-00-00 00:00:00'),(7762,0,0,'I',2295,'I002295',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 12:22:36','','0000-00-00 00:00:00'),(7763,0,0,'I',2295,'I002295',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 12:22:36','','0000-00-00 00:00:00'),(7764,0,0,'I',2295,'I002295',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 12:22:36','','0000-00-00 00:00:00'),(7765,0,0,'I',2297,'I002297',2526,1,'0000-00-00','51519',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 12:33:11','drarchit','2025-12-03 12:33:16'),(7766,0,0,'I',2297,'I002297',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 12:33:11','drarchit','2025-12-03 12:33:16'),(7767,0,0,'I',2297,'I002297',2526,3,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-03 12:33:11','drarchit','2025-12-03 12:33:16'),(7768,0,0,'I',2297,'I002297',2526,4,'0000-00-00','51508',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 12:33:11','drarchit','2025-12-03 12:33:16'),(7769,0,0,'I',2298,'I002298',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 12:39:16','darshan','2025-12-03 12:39:55'),(7770,0,0,'I',2298,'I002298',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 12:39:16','darshan','2025-12-03 12:39:55'),(7771,0,0,'I',2299,'I002299',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 12:45:52','drarchit','2025-12-03 12:46:02'),(7772,0,0,'I',2299,'I002299',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-03 12:45:52','drarchit','2025-12-03 12:46:02'),(7773,0,0,'I',2299,'I002299',2526,3,'0000-00-00','51214',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-12-03 12:45:52','drarchit','2025-12-03 12:46:02'),(7774,0,0,'I',2299,'I002299',2526,4,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 12:45:52','drarchit','2025-12-03 12:46:02'),(7775,0,0,'I',2299,'I002299',2526,5,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-03 12:45:52','drarchit','2025-12-03 12:46:02'),(7776,0,0,'I',2299,'I002299',2526,6,'0000-00-00','51240',0,0,'TAB','','','','',0,45,0,0,0,0,'0.5-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 12:45:52','drarchit','2025-12-03 12:46:02'),(7777,0,0,'I',2299,'I002299',2526,7,'0000-00-00','51221',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-03 12:46:02','','0000-00-00 00:00:00'),(7778,0,0,'I',2301,'I002301',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 12:49:26','darshan','2025-12-03 12:49:37'),(7779,0,0,'I',2301,'I002301',2526,2,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-03 12:49:37','','0000-00-00 00:00:00'),(7780,0,0,'I',2301,'I002301',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 12:49:37','','0000-00-00 00:00:00'),(7781,0,0,'I',2300,'I002300',2526,1,'0000-00-00','51561',0,0,'INJ','','','','',0,1,0,0,0,0,'0-0-20','','Dy',90,0,0,0,0,0,0,0,0,0,'271','','P',NULL,NULL,'drarchit','2025-12-03 12:50:29','drarchit','2025-12-03 12:50:45'),(7782,0,0,'I',2300,'I002300',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-03 12:50:29','drarchit','2025-12-03 12:50:45'),(7783,0,0,'I',2300,'I002300',2526,3,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 12:50:29','drarchit','2025-12-03 12:50:45'),(7784,0,0,'I',2300,'I002300',2526,4,'0000-00-00','51389',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-12-03 12:50:29','drarchit','2025-12-03 12:50:45'),(7785,0,0,'I',2300,'I002300',2526,5,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 12:50:29','drarchit','2025-12-03 12:50:45'),(7786,0,0,'I',2303,'I002303',2526,1,'0000-00-00','51215',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 12:53:57','','0000-00-00 00:00:00'),(7787,0,0,'I',2303,'I002303',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'0-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 12:53:57','','0000-00-00 00:00:00'),(7788,0,0,'I',2302,'I002302',2526,1,'0000-00-00','51477',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'drarchit','2025-12-03 12:54:19','','0000-00-00 00:00:00'),(7789,0,0,'I',2302,'I002302',2526,2,'0000-00-00','51468',0,0,'TAB','','','','',0,100,0,0,0,0,'0-1-0','','Dy',100,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-03 12:54:19','','0000-00-00 00:00:00'),(7790,0,0,'I',2302,'I002302',2526,3,'0000-00-00','51337',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 12:54:19','','0000-00-00 00:00:00'),(7791,0,0,'I',2304,'I002304',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 12:56:55','','0000-00-00 00:00:00'),(7792,0,0,'I',2304,'I002304',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 12:56:55','','0000-00-00 00:00:00'),(7793,0,0,'I',2304,'I002304',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 12:56:55','','0000-00-00 00:00:00'),(7794,0,0,'I',2304,'I002304',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-03 12:56:55','','0000-00-00 00:00:00'),(7795,0,0,'I',2306,'I002306',2526,1,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-03 13:02:14','','0000-00-00 00:00:00'),(7796,0,0,'I',2306,'I002306',2526,2,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 13:02:14','','0000-00-00 00:00:00'),(7797,0,0,'I',2306,'I002306',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 13:02:14','','0000-00-00 00:00:00'),(7798,0,0,'I',2306,'I002306',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 13:02:14','','0000-00-00 00:00:00'),(7799,0,0,'I',2307,'I002307',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-03 13:03:35','drarchit','2025-12-03 13:04:20'),(7800,0,0,'I',2307,'I002307',2526,2,'0000-00-00','51381',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 13:03:35','drarchit','2025-12-03 13:04:20'),(7802,0,0,'I',2307,'I002307',2526,3,'0000-00-00','51406',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 13:03:35','drarchit','2025-12-03 13:04:20'),(7803,0,0,'I',2307,'I002307',2526,4,'0000-00-00','51561',0,0,'INJ','','','','',0,1,0,0,0,0,'0-0-26','','Dy',90,0,0,0,0,0,0,0,0,0,'271','','P',NULL,NULL,'drarchit','2025-12-03 13:03:35','drarchit','2025-12-03 13:04:20'),(7805,0,0,'I',2307,'I002307',2526,6,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-03 13:04:20','','0000-00-00 00:00:00'),(7806,0,0,'I',2308,'I002308',2526,1,'0000-00-00','51373',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 13:06:50','','0000-00-00 00:00:00'),(7807,0,0,'I',2308,'I002308',2526,2,'0000-00-00','51395',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 13:06:50','','0000-00-00 00:00:00'),(7808,0,0,'I',2308,'I002308',2526,3,'0000-00-00','51396',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 13:06:50','','0000-00-00 00:00:00'),(7809,0,0,'I',2308,'I002308',2526,4,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 13:06:50','','0000-00-00 00:00:00'),(7810,0,0,'I',2309,'I002309',2526,1,'0000-00-00','51571',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 13:09:35','drarchit','2025-12-03 13:11:11'),(7811,0,0,'I',2309,'I002309',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-03 13:09:35','drarchit','2025-12-03 13:11:11'),(7812,0,0,'I',2309,'I002309',2526,3,'0000-00-00','51262',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 13:09:35','drarchit','2025-12-03 13:11:11'),(7813,0,0,'I',2288,'I002288',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 13:09:54','','0000-00-00 00:00:00'),(7814,0,0,'I',2309,'I002309',2526,4,'0000-00-00','51517',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 13:11:11','','0000-00-00 00:00:00'),(7815,0,0,'I',2309,'I002309',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 13:11:11','','0000-00-00 00:00:00'),(7816,0,0,'I',2310,'I002310',2526,1,'0000-00-00','51321',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 13:15:40','','0000-00-00 00:00:00'),(7817,0,0,'I',2310,'I002310',2526,2,'0000-00-00','51379',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 13:15:40','','0000-00-00 00:00:00'),(7818,0,0,'I',2310,'I002310',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-03 13:15:40','','0000-00-00 00:00:00'),(7819,0,0,'I',2310,'I002310',2526,4,'0000-00-00','51501',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-03 13:15:40','','0000-00-00 00:00:00'),(7820,0,0,'I',2311,'I002311',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 13:18:34','drarchit','2025-12-03 13:19:01'),(7821,0,0,'I',2311,'I002311',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 13:18:34','drarchit','2025-12-03 13:19:01'),(7822,0,0,'I',2311,'I002311',2526,3,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-03 13:18:34','drarchit','2025-12-03 13:19:01'),(7823,0,0,'I',2311,'I002311',2526,4,'0000-00-00','51389',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-12-03 13:18:34','drarchit','2025-12-03 13:19:01'),(7824,0,0,'I',2311,'I002311',2526,5,'0000-00-00','51407',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 13:18:34','drarchit','2025-12-03 13:19:01'),(7825,0,0,'I',2311,'I002311',2526,6,'0000-00-00','51406',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 13:18:34','drarchit','2025-12-03 13:19:01'),(7826,0,0,'I',2312,'I002312',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 13:22:12','','0000-00-00 00:00:00'),(7827,0,0,'I',2312,'I002312',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 13:22:12','','0000-00-00 00:00:00'),(7828,0,0,'I',2312,'I002312',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 13:22:12','','0000-00-00 00:00:00'),(7829,0,0,'I',2312,'I002312',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-03 13:22:12','','0000-00-00 00:00:00'),(7830,0,0,'I',2313,'I002313',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-03 13:45:16','darshan','2025-12-03 13:45:42'),(7831,0,0,'I',2313,'I002313',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 13:45:16','darshan','2025-12-03 13:45:42'),(7833,0,0,'I',2314,'I002314',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 13:50:28','darshan','2025-12-03 13:50:38'),(7834,0,0,'I',2314,'I002314',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 13:50:28','darshan','2025-12-03 13:50:38'),(7835,0,0,'I',2314,'I002314',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 13:50:28','darshan','2025-12-03 13:50:38'),(7836,0,0,'I',2314,'I002314',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-03 13:50:28','darshan','2025-12-03 13:50:38'),(7837,0,0,'I',2315,'I002315',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 17:00:43','darshan','2025-12-03 17:01:12'),(7838,0,0,'I',2315,'I002315',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 17:00:43','darshan','2025-12-03 17:01:12'),(7839,0,0,'I',2315,'I002315',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 17:00:43','darshan','2025-12-03 17:01:12'),(7841,0,0,'I',2316,'I002316',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 17:08:20','darshan','2025-12-03 17:09:18'),(7842,0,0,'I',2316,'I002316',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 17:08:20','darshan','2025-12-03 17:09:18'),(7843,0,0,'I',2316,'I002316',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 17:08:20','darshan','2025-12-03 17:09:18'),(7844,0,0,'I',2316,'I002316',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-03 17:08:20','darshan','2025-12-03 17:09:18'),(7845,0,0,'I',2316,'I002316',2526,5,'0000-00-00','51217',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 17:09:18','','0000-00-00 00:00:00'),(7846,0,0,'I',2317,'I002317',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 17:32:42','darshan','2025-12-03 17:33:15'),(7847,0,0,'I',2317,'I002317',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 17:32:42','darshan','2025-12-03 17:33:15'),(7848,0,0,'I',2317,'I002317',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 17:32:42','darshan','2025-12-03 17:33:15'),(7849,0,0,'I',2318,'I002318',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 17:42:05','','0000-00-00 00:00:00'),(7850,0,0,'I',2318,'I002318',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 17:42:05','','0000-00-00 00:00:00'),(7851,0,0,'I',2318,'I002318',2526,3,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 17:42:05','','0000-00-00 00:00:00'),(7852,0,0,'I',2318,'I002318',2526,4,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 17:42:05','','0000-00-00 00:00:00'),(7853,0,0,'I',2319,'I002319',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 17:54:53','','0000-00-00 00:00:00'),(7854,0,0,'I',2319,'I002319',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 17:54:53','','0000-00-00 00:00:00'),(7855,0,0,'I',2319,'I002319',2526,3,'0000-00-00','51190',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 17:54:53','','0000-00-00 00:00:00'),(7856,0,0,'I',2319,'I002319',2526,4,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 17:54:53','','0000-00-00 00:00:00'),(7857,0,0,'I',2320,'I002320',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 18:09:25','darshan','2025-12-03 18:09:54'),(7858,0,0,'I',2320,'I002320',2526,2,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 18:09:25','darshan','2025-12-03 18:09:54'),(7859,0,0,'I',2320,'I002320',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 18:09:25','darshan','2025-12-03 18:09:54'),(7861,0,0,'I',2321,'I002321',2526,1,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-03 18:18:03','drarchit','2025-12-03 18:19:19'),(7862,0,0,'I',2321,'I002321',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-03 18:18:03','drarchit','2025-12-03 18:19:19'),(7863,0,0,'I',2321,'I002321',2526,3,'0000-00-00','51512',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-03 18:18:03','drarchit','2025-12-03 18:19:19'),(7865,0,0,'I',2321,'I002321',2526,4,'0000-00-00','51492',0,0,'INJ','','','','',0,2,0,0,0,0,'24-0-10','','Dy',4,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-03 18:19:14','drarchit','2025-12-03 18:19:19'),(7866,0,0,'I',2322,'I002322',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:27:47','drarchit','2025-12-03 18:32:12'),(7867,0,0,'I',2322,'I002322',2526,2,'0000-00-00','51355',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:30:28','drarchit','2025-12-03 18:32:12'),(7868,0,0,'I',2322,'I002322',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:30:46','drarchit','2025-12-03 18:32:12'),(7870,0,0,'I',2322,'I002322',2526,4,'0000-00-00','51341',0,0,'TAB','','','','',0,180,0,0,0,0,'1-1-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:31:29','drarchit','2025-12-03 18:32:12'),(7871,0,0,'I',2322,'I002322',2526,5,'0000-00-00','51412',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:31:29','drarchit','2025-12-03 18:32:12'),(7873,0,0,'I',2323,'I002323',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 18:36:27','','0000-00-00 00:00:00'),(7874,0,0,'I',2323,'I002323',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 18:36:27','','0000-00-00 00:00:00'),(7875,0,0,'I',2324,'I002324',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:36:58','drarchit','2025-12-03 18:37:49'),(7876,0,0,'I',2324,'I002324',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:36:58','drarchit','2025-12-03 18:37:49'),(7877,0,0,'I',2324,'I002324',2526,3,'0000-00-00','51403',0,0,'TAB','','','','',0,5,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'49','','P',NULL,NULL,'drarchit','2025-12-03 18:36:58','drarchit','2025-12-03 18:37:49'),(7878,0,0,'I',2324,'I002324',2526,4,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-03 18:36:58','drarchit','2025-12-03 18:37:49'),(7879,0,0,'I',2324,'I002324',2526,5,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:36:58','drarchit','2025-12-03 18:37:49'),(7880,0,0,'I',2324,'I002324',2526,6,'0000-00-00','51492',0,0,'INJ','','','','',0,5,0,0,0,0,'20-36-18','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-03 18:36:58','drarchit','2025-12-03 18:37:49'),(7881,0,0,'I',2324,'I002324',2526,7,'0000-00-00','51387',0,0,'INJ','','','','',0,3,0,0,0,0,'0-0-24','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-03 18:36:58','drarchit','2025-12-03 18:37:49'),(7883,0,0,'I',2324,'I002324',2526,8,'0000-00-00','51389',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-12-03 18:37:49','','0000-00-00 00:00:00'),(7884,0,0,'I',2324,'I002324',2526,9,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-03 18:37:49','','0000-00-00 00:00:00'),(7885,0,0,'I',2325,'I002325',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 18:39:34','','0000-00-00 00:00:00'),(7886,0,0,'I',2325,'I002325',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 18:39:34','','0000-00-00 00:00:00'),(7887,0,0,'I',2326,'I002326',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:41:23','drarchit','2025-12-03 18:42:06'),(7888,0,0,'I',2326,'I002326',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:42:06','','0000-00-00 00:00:00'),(7889,0,0,'I',2326,'I002326',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:42:06','','0000-00-00 00:00:00'),(7890,0,0,'I',2326,'I002326',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-03 18:42:06','','0000-00-00 00:00:00'),(7891,0,0,'I',2326,'I002326',2526,5,'0000-00-00','51269',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:42:06','','0000-00-00 00:00:00'),(7892,0,0,'I',2326,'I002326',2526,6,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-03 18:42:06','','0000-00-00 00:00:00'),(7893,0,0,'I',2327,'I002327',2526,1,'0000-00-00','51350',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-03 18:42:15','drjayant','2025-12-03 18:43:02'),(7894,0,0,'I',2327,'I002327',2526,2,'0000-00-00','51450',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-03 18:42:15','drjayant','2025-12-03 18:43:02'),(7895,0,0,'I',2327,'I002327',2526,3,'0000-00-00','51597',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-03 18:42:55','drjayant','2025-12-03 18:43:02'),(7896,0,0,'I',2328,'I002328',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 18:43:25','','0000-00-00 00:00:00'),(7897,0,0,'I',2328,'I002328',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 18:43:25','','0000-00-00 00:00:00'),(7898,0,0,'I',2328,'I002328',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 18:43:25','','0000-00-00 00:00:00'),(7899,0,0,'I',2329,'I002329',2526,1,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-03 18:45:27','drarchit','2025-12-03 18:45:37'),(7900,0,0,'I',2329,'I002329',2526,2,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:45:27','drarchit','2025-12-03 18:45:37'),(7901,0,0,'I',2329,'I002329',2526,3,'0000-00-00','51332',0,0,'CAP','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:45:27','drarchit','2025-12-03 18:45:37'),(7902,0,0,'I',2329,'I002329',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-03 18:45:27','drarchit','2025-12-03 18:45:37'),(7903,0,0,'I',2329,'I002329',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-03 18:45:37','','0000-00-00 00:00:00'),(7904,0,0,'I',2330,'I002330',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 18:48:35','','0000-00-00 00:00:00'),(7905,0,0,'I',2330,'I002330',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 18:48:35','','0000-00-00 00:00:00'),(7906,0,0,'I',2330,'I002330',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 18:48:35','','0000-00-00 00:00:00'),(7907,0,0,'I',2330,'I002330',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-03 18:48:35','','0000-00-00 00:00:00'),(7909,0,0,'I',2331,'I002331',2526,1,'0000-00-00','51332',0,0,'CAP','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:49:29','drarchit','2025-12-03 18:51:28'),(7911,0,0,'I',2331,'I002331',2526,2,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:50:14','drarchit','2025-12-03 18:51:28'),(7912,0,0,'I',2331,'I002331',2526,3,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-03 18:50:14','drarchit','2025-12-03 18:51:28'),(7913,0,0,'I',2331,'I002331',2526,4,'0000-00-00','51230',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:50:47','drarchit','2025-12-03 18:51:28'),(7914,0,0,'I',2331,'I002331',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-03 18:50:47','drarchit','2025-12-03 18:51:28'),(7915,0,0,'I',2331,'I002331',2526,6,'0000-00-00','51297',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:51:28','','0000-00-00 00:00:00'),(7916,0,0,'I',2332,'I002332',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:54:58','','0000-00-00 00:00:00'),(7917,0,0,'I',2332,'I002332',2526,2,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:54:58','','0000-00-00 00:00:00'),(7918,0,0,'I',2332,'I002332',2526,3,'0000-00-00','51487',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-03 18:54:58','','0000-00-00 00:00:00'),(7919,0,0,'I',2332,'I002332',2526,4,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 18:54:58','','0000-00-00 00:00:00'),(7920,0,0,'I',2332,'I002332',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-03 18:54:58','','0000-00-00 00:00:00'),(7921,0,0,'I',2332,'I002332',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-03 18:54:58','','0000-00-00 00:00:00'),(7922,0,0,'I',2333,'I002333',2526,1,'0000-00-00','51349',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-03 18:57:01','drjayant','2025-12-03 18:59:10'),(7923,0,0,'I',2333,'I002333',2526,2,'0000-00-00','51598',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-03 18:58:31','drjayant','2025-12-03 18:59:10'),(7924,0,0,'I',2333,'I002333',2526,3,'0000-00-00','51409',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-03 18:58:31','drjayant','2025-12-03 18:59:10'),(7925,0,0,'I',2333,'I002333',2526,4,'0000-00-00','51367',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-03 18:59:10','','0000-00-00 00:00:00'),(7926,0,0,'I',2334,'I002334',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:00:28','','0000-00-00 00:00:00'),(7927,0,0,'I',2334,'I002334',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:00:28','','0000-00-00 00:00:00'),(7928,0,0,'I',2335,'I002335',2526,1,'0000-00-00','51468',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-03 19:03:19','','0000-00-00 00:00:00'),(7929,0,0,'I',2335,'I002335',2526,2,'0000-00-00','51279',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 19:03:19','','0000-00-00 00:00:00'),(7930,0,0,'I',2335,'I002335',2526,3,'0000-00-00','51248',0,0,'CAP','','','','',0,28,0,0,0,0,'1-0-0','','Wk',4,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 19:03:19','','0000-00-00 00:00:00'),(7931,0,0,'I',2335,'I002335',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 19:03:19','','0000-00-00 00:00:00'),(7932,0,0,'I',2336,'I002336',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:08:25','','0000-00-00 00:00:00'),(7933,0,0,'I',2336,'I002336',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:08:25','','0000-00-00 00:00:00'),(7934,0,0,'I',2337,'I002337',2526,1,'0000-00-00','51536',0,0,'TAB','','','','',0,12,0,0,0,0,'1-0-0','','Wk',12,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 19:09:28','','0000-00-00 00:00:00'),(7935,0,0,'I',2337,'I002337',2526,2,'0000-00-00','51537',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 19:09:28','','0000-00-00 00:00:00'),(7936,0,0,'I',2337,'I002337',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 19:09:28','','0000-00-00 00:00:00'),(7937,0,0,'I',2337,'I002337',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 19:09:28','','0000-00-00 00:00:00'),(7938,0,0,'I',2338,'I002338',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:10:01','darshan','2025-12-03 19:11:51'),(7939,0,0,'I',2338,'I002338',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:10:01','darshan','2025-12-03 19:11:51'),(7940,0,0,'I',2339,'I002339',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-03 19:14:54','drjayant','2025-12-03 19:16:22'),(7941,0,0,'I',2339,'I002339',2526,2,'0000-00-00','51349',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-03 19:14:54','drjayant','2025-12-03 19:16:22'),(7942,0,0,'I',2339,'I002339',2526,3,'0000-00-00','51376',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-03 19:16:22','','0000-00-00 00:00:00'),(7943,0,0,'I',2340,'I002340',2526,1,'0000-00-00','51560',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 19:20:14','','0000-00-00 00:00:00'),(7944,0,0,'I',2340,'I002340',2526,2,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-03 19:20:14','','0000-00-00 00:00:00'),(7945,0,0,'I',2341,'I002341',2526,1,'0000-00-00','51597',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-03 19:20:27','','0000-00-00 00:00:00'),(7946,0,0,'I',2342,'I002342',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:26:02','','0000-00-00 00:00:00'),(7947,0,0,'I',2342,'I002342',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:26:02','','0000-00-00 00:00:00'),(7948,0,0,'I',2342,'I002342',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:26:02','','0000-00-00 00:00:00'),(7949,0,0,'I',2342,'I002342',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-03 19:26:02','','0000-00-00 00:00:00'),(7950,0,0,'I',2343,'I002343',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 19:27:47','drarchit','2025-12-03 19:28:34'),(7952,0,0,'I',2343,'I002343',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-03 19:27:47','drarchit','2025-12-03 19:28:34'),(7953,0,0,'I',2343,'I002343',2526,3,'0000-00-00','51214',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-03 19:27:47','drarchit','2025-12-03 19:28:34'),(7954,0,0,'I',2343,'I002343',2526,4,'0000-00-00','51240',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 19:27:47','drarchit','2025-12-03 19:28:34'),(7955,0,0,'I',2343,'I002343',2526,5,'0000-00-00','51536',0,0,'TAB','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 19:27:47','drarchit','2025-12-03 19:28:34'),(7956,0,0,'I',2343,'I002343',2526,6,'0000-00-00','51516',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 19:27:47','drarchit','2025-12-03 19:28:34'),(7959,0,0,'I',2343,'I002343',2526,7,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-03 19:28:34','','0000-00-00 00:00:00'),(7960,0,0,'I',2343,'I002343',2526,8,'0000-00-00','51304',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 19:28:34','','0000-00-00 00:00:00'),(7961,0,0,'I',2343,'I002343',2526,9,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-03 19:28:34','','0000-00-00 00:00:00'),(7962,0,0,'I',2344,'I002344',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:31:39','','0000-00-00 00:00:00'),(7963,0,0,'I',2344,'I002344',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:31:39','','0000-00-00 00:00:00'),(7964,0,0,'I',2344,'I002344',2526,3,'0000-00-00','51322',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:31:39','','0000-00-00 00:00:00'),(7965,0,0,'I',2344,'I002344',2526,4,'0000-00-00','51275',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'darshan','2025-12-03 19:31:39','','0000-00-00 00:00:00'),(7966,0,0,'I',2345,'I002345',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-03 19:38:12','darshan','2025-12-03 19:39:05'),(7967,0,0,'I',2345,'I002345',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:38:12','darshan','2025-12-03 19:39:05'),(7968,0,0,'I',2345,'I002345',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-03 19:38:12','darshan','2025-12-03 19:39:05'),(7970,0,0,'I',2346,'I002346',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-03 19:42:44','darshan','2025-12-03 19:43:18'),(7971,0,0,'I',2346,'I002346',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:42:44','darshan','2025-12-03 19:43:18'),(7972,0,0,'I',2346,'I002346',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-03 19:43:18','','0000-00-00 00:00:00'),(7973,0,0,'I',2346,'I002346',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:43:18','','0000-00-00 00:00:00'),(7974,0,0,'I',2346,'I002346',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-03 19:43:18','','0000-00-00 00:00:00'),(7975,0,0,'I',2347,'I002347',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:48:49','darshan','2025-12-03 19:49:12'),(7976,0,0,'I',2347,'I002347',2526,2,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-03 19:49:12','','0000-00-00 00:00:00'),(7977,0,0,'I',2348,'I002348',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:56:31','','0000-00-00 00:00:00'),(7978,0,0,'I',2348,'I002348',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:56:31','','0000-00-00 00:00:00'),(7979,0,0,'I',2348,'I002348',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 19:56:31','','0000-00-00 00:00:00'),(7980,0,0,'I',2348,'I002348',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-03 19:56:31','','0000-00-00 00:00:00'),(7981,0,0,'I',2349,'I002349',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 20:00:04','','0000-00-00 00:00:00'),(7982,0,0,'I',2349,'I002349',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 20:00:04','','0000-00-00 00:00:00'),(7983,0,0,'I',2349,'I002349',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 20:00:04','','0000-00-00 00:00:00'),(7984,0,0,'I',2350,'I002350',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 20:02:02','','0000-00-00 00:00:00'),(7985,0,0,'I',2350,'I002350',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 20:02:02','','0000-00-00 00:00:00'),(7986,0,0,'I',2350,'I002350',2526,3,'0000-00-00','51271',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-03 20:02:02','','0000-00-00 00:00:00'),(7987,0,0,'I',2350,'I002350',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-03 20:02:02','','0000-00-00 00:00:00'),(7988,0,0,'I',2351,'I002351',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 10:50:11','darshan','2025-12-04 10:50:22'),(7991,0,0,'I',2352,'I002352',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-04 11:00:21','darshan','2025-12-04 11:00:54'),(7992,0,0,'I',2352,'I002352',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 11:00:21','darshan','2025-12-04 11:00:54'),(7993,0,0,'I',2352,'I002352',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 11:00:21','darshan','2025-12-04 11:00:54'),(7995,0,0,'I',2353,'I002353',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 11:05:17','darshan','2025-12-04 11:05:40'),(7996,0,0,'I',2353,'I002353',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 11:05:17','darshan','2025-12-04 11:05:40'),(7997,0,0,'I',2354,'I002354',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 11:21:54','','0000-00-00 00:00:00'),(7998,0,0,'I',2354,'I002354',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 11:21:54','','0000-00-00 00:00:00'),(7999,0,0,'I',2354,'I002354',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-04 11:21:54','','0000-00-00 00:00:00'),(8000,0,0,'I',2354,'I002354',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-04 11:21:54','','0000-00-00 00:00:00'),(8001,0,0,'I',2355,'I002355',2526,1,'0000-00-00','51582',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-04 11:23:58','drjayant','2025-12-04 11:28:37'),(8002,0,0,'I',2355,'I002355',2526,2,'0000-00-00','51583',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-04 11:23:58','drjayant','2025-12-04 11:28:37'),(8003,0,0,'I',2356,'I002356',2526,1,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 11:27:27','','0000-00-00 00:00:00'),(8004,0,0,'I',2356,'I002356',2526,2,'0000-00-00','51473',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-04 11:27:27','','0000-00-00 00:00:00'),(8005,0,0,'I',2355,'I002355',2526,3,'0000-00-00','51599',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-04 11:27:38','drjayant','2025-12-04 11:28:37'),(8006,0,0,'I',2355,'I002355',2526,4,'0000-00-00','51317',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-04 11:27:38','drjayant','2025-12-04 11:28:37'),(8007,0,0,'I',2355,'I002355',2526,5,'0000-00-00','51409',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-04 11:27:38','drjayant','2025-12-04 11:28:37'),(8008,0,0,'I',2355,'I002355',2526,6,'0000-00-00','51348',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-04 11:27:38','drjayant','2025-12-04 11:28:37'),(8009,0,0,'I',2355,'I002355',2526,7,'0000-00-00','51426',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-04 11:27:38','drjayant','2025-12-04 11:28:37'),(8010,0,0,'I',2355,'I002355',2526,8,'0000-00-00','51457',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-04 11:27:38','drjayant','2025-12-04 11:28:37'),(8011,0,0,'I',2355,'I002355',2526,9,'0000-00-00','51600',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-04 11:28:37','','0000-00-00 00:00:00'),(8012,0,0,'I',2357,'I002357',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 11:35:10','','0000-00-00 00:00:00'),(8013,0,0,'I',2357,'I002357',2526,2,'0000-00-00','51284',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 11:35:10','','0000-00-00 00:00:00'),(8014,0,0,'I',2358,'I002358',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 11:38:51','darshan','2025-12-04 11:39:05'),(8015,0,0,'I',2358,'I002358',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 11:38:51','darshan','2025-12-04 11:39:05'),(8016,0,0,'I',2359,'I002359',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 11:41:45','','0000-00-00 00:00:00'),(8017,0,0,'I',2359,'I002359',2526,2,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-04 11:41:45','','0000-00-00 00:00:00'),(8018,0,0,'I',2360,'I002360',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 11:49:32','darshan','2025-12-04 11:50:40'),(8019,0,0,'I',2360,'I002360',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 11:49:32','darshan','2025-12-04 11:50:40'),(8020,0,0,'I',2360,'I002360',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-04 11:49:32','darshan','2025-12-04 11:50:40'),(8021,0,0,'I',2361,'I002361',2526,1,'0000-00-00','51558',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 11:50:15','drarchit','2025-12-04 11:51:21'),(8023,0,0,'I',2360,'I002360',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'400','','P',NULL,NULL,'darshan','2025-12-04 11:50:40','','0000-00-00 00:00:00'),(8024,0,0,'I',2361,'I002361',2526,2,'0000-00-00','51519',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 11:51:21','','0000-00-00 00:00:00'),(8025,0,0,'I',2361,'I002361',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-04 11:51:21','','0000-00-00 00:00:00'),(8026,0,0,'I',2361,'I002361',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 11:51:21','','0000-00-00 00:00:00'),(8027,0,0,'I',2361,'I002361',2526,5,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 11:51:21','','0000-00-00 00:00:00'),(8028,0,0,'I',2361,'I002361',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-04 11:51:21','','0000-00-00 00:00:00'),(8030,0,0,'I',2362,'I002362',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 11:58:40','darshan','2025-12-04 11:59:12'),(8031,0,0,'I',2362,'I002362',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 11:58:40','darshan','2025-12-04 11:59:12'),(8032,0,0,'I',2362,'I002362',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 11:58:40','darshan','2025-12-04 11:59:12'),(8033,0,0,'I',2362,'I002362',2526,4,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 11:59:12','','0000-00-00 00:00:00'),(8034,0,0,'I',2363,'I002363',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:03:05','drarchit','2025-12-04 12:03:35'),(8035,0,0,'I',2363,'I002363',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:03:05','drarchit','2025-12-04 12:03:35'),(8036,0,0,'I',2363,'I002363',2526,3,'0000-00-00','51269',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:03:05','drarchit','2025-12-04 12:03:35'),(8037,0,0,'I',2363,'I002363',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:03:35','','0000-00-00 00:00:00'),(8038,0,0,'I',2363,'I002363',2526,5,'0000-00-00','51374',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-04 12:03:35','','0000-00-00 00:00:00'),(8039,0,0,'I',2363,'I002363',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-04 12:03:35','','0000-00-00 00:00:00'),(8040,0,0,'I',2364,'I002364',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 12:05:29','','0000-00-00 00:00:00'),(8041,0,0,'I',2364,'I002364',2526,2,'0000-00-00','51189',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 12:05:29','','0000-00-00 00:00:00'),(8042,0,0,'I',2364,'I002364',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-04 12:05:29','','0000-00-00 00:00:00'),(8043,0,0,'I',2365,'I002365',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:13:00','','0000-00-00 00:00:00'),(8044,0,0,'I',2365,'I002365',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:13:00','','0000-00-00 00:00:00'),(8045,0,0,'I',2365,'I002365',2526,3,'0000-00-00','51269',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:13:00','','0000-00-00 00:00:00'),(8046,0,0,'I',2365,'I002365',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-04 12:13:00','','0000-00-00 00:00:00'),(8047,0,0,'I',2365,'I002365',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-04 12:13:00','','0000-00-00 00:00:00'),(8048,0,0,'I',2366,'I002366',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 12:13:08','','0000-00-00 00:00:00'),(8049,0,0,'I',2366,'I002366',2526,2,'0000-00-00','51211',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 12:13:08','','0000-00-00 00:00:00'),(8050,0,0,'I',2366,'I002366',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 12:13:08','','0000-00-00 00:00:00'),(8051,0,0,'I',2366,'I002366',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-04 12:13:08','','0000-00-00 00:00:00'),(8052,0,0,'I',2367,'I002367',2526,1,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:16:18','drarchit','2025-12-04 12:17:04'),(8053,0,0,'I',2367,'I002367',2526,2,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:16:18','drarchit','2025-12-04 12:17:04'),(8054,0,0,'I',2367,'I002367',2526,3,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-12-04 12:16:18','drarchit','2025-12-04 12:17:04'),(8055,0,0,'I',2367,'I002367',2526,4,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:16:18','drarchit','2025-12-04 12:17:04'),(8056,0,0,'I',2367,'I002367',2526,5,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:17:04','','0000-00-00 00:00:00'),(8057,0,0,'I',2367,'I002367',2526,6,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:17:04','','0000-00-00 00:00:00'),(8058,0,0,'I',2367,'I002367',2526,7,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-04 12:17:04','','0000-00-00 00:00:00'),(8059,0,0,'I',2368,'I002368',2526,1,'0000-00-00','51601',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-04 12:20:09','','0000-00-00 00:00:00'),(8060,0,0,'I',2368,'I002368',2526,2,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-04 12:20:09','','0000-00-00 00:00:00'),(8061,0,0,'I',2369,'I002369',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:22:18','drarchit','2025-12-04 12:22:33'),(8062,0,0,'I',2369,'I002369',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:22:18','drarchit','2025-12-04 12:22:33'),(8063,0,0,'I',2369,'I002369',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-04 12:22:18','drarchit','2025-12-04 12:22:33'),(8064,0,0,'I',2369,'I002369',2526,4,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:22:18','drarchit','2025-12-04 12:22:33'),(8065,0,0,'I',2369,'I002369',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-04 12:22:18','drarchit','2025-12-04 12:22:33'),(8066,0,0,'I',2369,'I002369',2526,6,'0000-00-00','51487',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-04 12:22:33','','0000-00-00 00:00:00'),(8067,0,0,'I',2370,'I002370',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:24:48','','0000-00-00 00:00:00'),(8068,0,0,'I',2370,'I002370',2526,2,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-04 12:24:48','','0000-00-00 00:00:00'),(8069,0,0,'I',2370,'I002370',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:24:48','','0000-00-00 00:00:00'),(8070,0,0,'I',2370,'I002370',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-04 12:24:48','','0000-00-00 00:00:00'),(8071,0,0,'I',2370,'I002370',2526,5,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:24:48','','0000-00-00 00:00:00'),(8072,0,0,'I',2371,'I002371',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-04 12:28:21','','0000-00-00 00:00:00'),(8073,0,0,'I',2371,'I002371',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 12:28:21','','0000-00-00 00:00:00'),(8074,0,0,'I',2371,'I002371',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 12:28:21','','0000-00-00 00:00:00'),(8075,0,0,'I',2371,'I002371',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-04 12:28:21','','0000-00-00 00:00:00'),(8076,0,0,'I',2372,'I002372',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:28:22','drarchit','2025-12-04 12:28:23'),(8077,0,0,'I',2372,'I002372',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:28:22','drarchit','2025-12-04 12:28:23'),(8078,0,0,'I',2372,'I002372',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-04 12:28:22','drarchit','2025-12-04 12:28:23'),(8079,0,0,'I',2372,'I002372',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'drarchit','2025-12-04 12:28:22','drarchit','2025-12-04 12:28:23'),(8080,0,0,'I',2372,'I002372',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-04 12:28:22','drarchit','2025-12-04 12:28:23'),(8081,0,0,'I',2373,'I002373',2526,1,'0000-00-00','51373',0,0,'CAP','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:31:03','drarchit','2025-12-04 12:33:00'),(8082,0,0,'I',2373,'I002373',2526,2,'0000-00-00','51395',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:31:03','drarchit','2025-12-04 12:33:00'),(8083,0,0,'I',2373,'I002373',2526,3,'0000-00-00','51396',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:31:03','drarchit','2025-12-04 12:33:00'),(8084,0,0,'I',2373,'I002373',2526,4,'0000-00-00','51297',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:31:03','drarchit','2025-12-04 12:33:00'),(8085,0,0,'I',2374,'I002374',2526,1,'0000-00-00','51374',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-04 12:36:19','','0000-00-00 00:00:00'),(8086,0,0,'I',2374,'I002374',2526,2,'0000-00-00','51372',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:36:19','','0000-00-00 00:00:00'),(8087,0,0,'I',2375,'I002375',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-04 12:40:44','drjayant','2025-12-04 12:42:00'),(8088,0,0,'I',2375,'I002375',2526,2,'0000-00-00','51317',0,0,'TAB','','','','',0,10,0,0,0,0,'0-1-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-04 12:41:15','drjayant','2025-12-04 12:42:00'),(8089,0,0,'I',2375,'I002375',2526,3,'0000-00-00','51457',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-04 12:42:00','','0000-00-00 00:00:00'),(8090,0,0,'I',2376,'I002376',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:48:03','','0000-00-00 00:00:00'),(8091,0,0,'I',2376,'I002376',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:48:03','','0000-00-00 00:00:00'),(8092,0,0,'I',2376,'I002376',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-04 12:48:03','','0000-00-00 00:00:00'),(8093,0,0,'I',2376,'I002376',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:48:03','','0000-00-00 00:00:00'),(8094,0,0,'I',2376,'I002376',2526,5,'0000-00-00','51269',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 12:48:03','','0000-00-00 00:00:00'),(8095,0,0,'I',2377,'I002377',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 12:56:27','','0000-00-00 00:00:00'),(8096,0,0,'I',2377,'I002377',2526,2,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-04 12:56:27','','0000-00-00 00:00:00'),(8097,0,0,'I',2378,'I002378',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 13:01:32','','0000-00-00 00:00:00'),(8098,0,0,'I',2379,'I002379',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 13:04:35','','0000-00-00 00:00:00'),(8099,0,0,'I',2381,'I002381',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-04 13:07:50','','0000-00-00 00:00:00'),(8100,0,0,'I',2381,'I002381',2526,2,'0000-00-00','51370',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-04 13:07:50','','0000-00-00 00:00:00'),(8101,0,0,'I',2381,'I002381',2526,3,'0000-00-00','51363',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-04 13:07:50','','0000-00-00 00:00:00'),(8102,0,0,'I',2382,'I002382',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 13:07:59','darshan','2025-12-04 13:08:37'),(8103,0,0,'I',2382,'I002382',2526,2,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-04 13:07:59','darshan','2025-12-04 13:08:37'),(8104,0,0,'I',2382,'I002382',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 13:07:59','darshan','2025-12-04 13:08:37'),(8106,0,0,'I',2384,'I002384',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 13:26:12','darshan','2025-12-04 13:26:32'),(8108,0,0,'I',2384,'I002384',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 13:26:12','darshan','2025-12-04 13:26:32'),(8109,0,0,'I',2385,'I002385',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 13:28:36','darshan','2025-12-04 13:28:58'),(8110,0,0,'I',2385,'I002385',2526,2,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-04 13:28:36','darshan','2025-12-04 13:28:58'),(8111,0,0,'I',2385,'I002385',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 13:28:36','darshan','2025-12-04 13:28:58'),(8112,0,0,'I',2385,'I002385',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 13:28:58','','0000-00-00 00:00:00'),(8113,0,0,'I',2385,'I002385',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-04 13:28:58','','0000-00-00 00:00:00'),(8114,0,0,'I',2386,'I002386',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 13:39:00','','0000-00-00 00:00:00'),(8115,0,0,'I',2386,'I002386',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 13:39:00','','0000-00-00 00:00:00'),(8116,0,0,'I',2387,'I002387',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 13:44:52','','0000-00-00 00:00:00'),(8117,0,0,'I',2387,'I002387',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 13:44:52','','0000-00-00 00:00:00'),(8118,0,0,'I',2387,'I002387',2526,3,'0000-00-00','51266',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'darshan','2025-12-04 13:44:52','','0000-00-00 00:00:00'),(8119,0,0,'I',2387,'I002387',2526,4,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 13:44:52','','0000-00-00 00:00:00'),(8121,0,0,'I',2388,'I002388',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 17:08:00','darshan','2025-12-04 17:08:51'),(8122,0,0,'I',2388,'I002388',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 17:08:00','darshan','2025-12-04 17:08:51'),(8123,0,0,'I',2388,'I002388',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-04 17:08:51','','0000-00-00 00:00:00'),(8125,0,0,'I',2389,'I002389',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 17:13:26','darshan','2025-12-04 17:14:05'),(8128,0,0,'I',2389,'I002389',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 17:13:26','darshan','2025-12-04 17:14:05'),(8129,0,0,'I',2390,'I002390',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 17:56:16','darshan','2025-12-04 17:56:32'),(8130,0,0,'I',2390,'I002390',2526,2,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 17:56:16','darshan','2025-12-04 17:56:32'),(8131,0,0,'I',2391,'I002391',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 18:01:33','','0000-00-00 00:00:00'),(8132,0,0,'I',2391,'I002391',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 18:01:33','','0000-00-00 00:00:00'),(8133,0,0,'I',2391,'I002391',2526,3,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 18:01:33','','0000-00-00 00:00:00'),(8135,0,0,'I',2392,'I002392',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 18:04:45','darshan','2025-12-04 18:08:59'),(8136,0,0,'I',2392,'I002392',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 18:04:45','darshan','2025-12-04 18:08:59'),(8138,0,0,'I',2393,'I002393',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 18:05:32','darshan','2025-12-04 18:05:57'),(8139,0,0,'I',2393,'I002393',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 18:05:32','darshan','2025-12-04 18:05:57'),(8140,0,0,'I',2393,'I002393',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 18:05:32','darshan','2025-12-04 18:05:57'),(8142,0,0,'I',2393,'I002393',2526,4,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 18:05:57','','0000-00-00 00:00:00'),(8143,0,0,'I',2395,'I002395',2526,1,'0000-00-00','51536',0,0,'TAB','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 18:19:36','','0000-00-00 00:00:00'),(8144,0,0,'I',2395,'I002395',2526,2,'0000-00-00','51537',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 18:19:36','','0000-00-00 00:00:00'),(8145,0,0,'I',2395,'I002395',2526,3,'0000-00-00','51516',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 18:19:36','','0000-00-00 00:00:00'),(8146,0,0,'I',2395,'I002395',2526,4,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 18:19:36','','0000-00-00 00:00:00'),(8147,0,0,'I',2395,'I002395',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-04 18:19:36','','0000-00-00 00:00:00'),(8148,0,0,'I',2395,'I002395',2526,6,'0000-00-00','51220',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 18:19:36','','0000-00-00 00:00:00'),(8149,0,0,'I',2396,'I002396',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 18:23:28','','0000-00-00 00:00:00'),(8150,0,0,'I',2396,'I002396',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 18:23:28','','0000-00-00 00:00:00'),(8151,0,0,'I',2399,'I002399',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 18:27:40','darshan','2025-12-04 18:28:14'),(8152,0,0,'I',2399,'I002399',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 18:27:40','darshan','2025-12-04 18:28:14'),(8154,0,0,'I',2401,'I002401',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 18:35:25','','0000-00-00 00:00:00'),(8155,0,0,'I',2397,'I002397',2526,1,'0000-00-00','51545',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 18:36:55','','0000-00-00 00:00:00'),(8156,0,0,'I',2397,'I002397',2526,2,'0000-00-00','51417',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 18:36:55','','0000-00-00 00:00:00'),(8157,0,0,'I',2397,'I002397',2526,3,'0000-00-00','51485',0,0,'CAP','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-04 18:36:55','','0000-00-00 00:00:00'),(8158,0,0,'I',2397,'I002397',2526,4,'0000-00-00','51351',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 18:36:55','','0000-00-00 00:00:00'),(8159,0,0,'I',2397,'I002397',2526,5,'0000-00-00','51239',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-04 18:36:55','','0000-00-00 00:00:00'),(8160,0,0,'I',2397,'I002397',2526,6,'0000-00-00','51214',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-12-04 18:36:55','','0000-00-00 00:00:00'),(8161,0,0,'I',2397,'I002397',2526,7,'0000-00-00','51243',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-04 18:36:55','','0000-00-00 00:00:00'),(8162,0,0,'I',2400,'I002400',2526,1,'0000-00-00','51432',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 18:44:55','drarchit','2025-12-04 18:45:07'),(8163,0,0,'I',2400,'I002400',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-04 18:44:55','drarchit','2025-12-04 18:45:07'),(8164,0,0,'I',2400,'I002400',2526,3,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 18:44:55','drarchit','2025-12-04 18:45:07'),(8166,0,0,'I',2402,'I002402',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-04 18:47:19','','0000-00-00 00:00:00'),(8167,0,0,'I',2402,'I002402',2526,2,'0000-00-00','51271',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 18:47:19','','0000-00-00 00:00:00'),(8168,0,0,'I',2402,'I002402',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-04 18:47:19','','0000-00-00 00:00:00'),(8169,0,0,'I',2402,'I002402',2526,4,'0000-00-00','51322',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 18:47:19','','0000-00-00 00:00:00'),(8170,0,0,'I',2402,'I002402',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-04 18:47:19','','0000-00-00 00:00:00'),(8171,0,0,'I',2402,'I002402',2526,6,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 18:47:19','','0000-00-00 00:00:00'),(8172,0,0,'I',2403,'I002403',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 18:51:42','drarchit','2025-12-04 18:52:31'),(8173,0,0,'I',2403,'I002403',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-04 18:51:42','drarchit','2025-12-04 18:52:31'),(8174,0,0,'I',2403,'I002403',2526,3,'0000-00-00','51384',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 18:51:42','drarchit','2025-12-04 18:52:31'),(8175,0,0,'I',2403,'I002403',2526,4,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 18:51:42','drarchit','2025-12-04 18:52:31'),(8176,0,0,'I',2403,'I002403',2526,5,'0000-00-00','51493',0,0,'TAB','','','','',0,45,0,0,0,0,'1.5-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-04 18:52:31','','0000-00-00 00:00:00'),(8177,0,0,'I',2403,'I002403',2526,6,'0000-00-00','51306',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 18:52:31','','0000-00-00 00:00:00'),(8178,0,0,'I',2404,'I002404',2526,1,'0000-00-00','51240',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 18:57:25','drarchit','2025-12-04 18:58:11'),(8180,0,0,'I',2404,'I002404',2526,2,'0000-00-00','51384',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 18:58:11','','0000-00-00 00:00:00'),(8181,0,0,'I',2404,'I002404',2526,3,'0000-00-00','51231',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 18:58:11','','0000-00-00 00:00:00'),(8182,0,0,'I',2404,'I002404',2526,4,'0000-00-00','51278',0,0,'CAP','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 18:58:11','','0000-00-00 00:00:00'),(8183,0,0,'I',2404,'I002404',2526,5,'0000-00-00','51474',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-04 18:58:11','','0000-00-00 00:00:00'),(8184,0,0,'I',2404,'I002404',2526,6,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-04 18:58:11','','0000-00-00 00:00:00'),(8185,0,0,'I',2405,'I002405',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:01:54','','0000-00-00 00:00:00'),(8186,0,0,'I',2405,'I002405',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:01:54','','0000-00-00 00:00:00'),(8187,0,0,'I',2407,'I002407',2526,1,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:05:32','','0000-00-00 00:00:00'),(8188,0,0,'I',2407,'I002407',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:05:32','','0000-00-00 00:00:00'),(8189,0,0,'I',2408,'I002408',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:06:46','','0000-00-00 00:00:00'),(8190,0,0,'I',2408,'I002408',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:06:46','','0000-00-00 00:00:00'),(8191,0,0,'I',2408,'I002408',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-04 19:06:46','','0000-00-00 00:00:00'),(8192,0,0,'I',2409,'I002409',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,25,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:09:22','darshan','2025-12-04 19:10:03'),(8195,0,0,'I',2409,'I002409',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:09:22','darshan','2025-12-04 19:10:03'),(8196,0,0,'I',2410,'I002410',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 19:11:11','','0000-00-00 00:00:00'),(8197,0,0,'I',2410,'I002410',2526,2,'0000-00-00','51341',0,0,'TAB','','','','',0,45,0,0,0,0,'1-1-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 19:11:11','','0000-00-00 00:00:00'),(8198,0,0,'I',2410,'I002410',2526,3,'0000-00-00','51506',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'drarchit','2025-12-04 19:11:11','','0000-00-00 00:00:00'),(8199,0,0,'I',2410,'I002410',2526,4,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-04 19:11:11','','0000-00-00 00:00:00'),(8204,0,0,'I',2411,'I002411',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:13:10','darshan','2025-12-04 19:13:28'),(8205,0,0,'I',2411,'I002411',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:13:28','','0000-00-00 00:00:00'),(8208,0,0,'I',2413,'I002413',2526,1,'0000-00-00','51477',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'drarchit','2025-12-04 19:18:43','drarchit','2025-12-04 19:18:51'),(8209,0,0,'I',2413,'I002413',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 19:18:43','drarchit','2025-12-04 19:18:51'),(8210,0,0,'I',2413,'I002413',2526,3,'0000-00-00','51594',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 19:18:43','drarchit','2025-12-04 19:18:51'),(8211,0,0,'I',2413,'I002413',2526,4,'0000-00-00','51244',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 19:18:43','drarchit','2025-12-04 19:18:51'),(8212,0,0,'I',2413,'I002413',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 19:18:51','','0000-00-00 00:00:00'),(8213,0,0,'I',2412,'I002412',2526,1,'0000-00-00','51602',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 19:25:57','','0000-00-00 00:00:00'),(8214,0,0,'I',2412,'I002412',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-04 19:25:57','','0000-00-00 00:00:00'),(8215,0,0,'I',2412,'I002412',2526,3,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 19:25:57','','0000-00-00 00:00:00'),(8216,0,0,'I',2412,'I002412',2526,4,'0000-00-00','51550',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-04 19:25:57','','0000-00-00 00:00:00'),(8217,0,0,'I',2414,'I002414',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:27:06','darshan','2025-12-04 19:27:47'),(8218,0,0,'I',2414,'I002414',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:27:06','darshan','2025-12-04 19:27:47'),(8219,0,0,'I',2414,'I002414',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-04 19:27:06','darshan','2025-12-04 19:27:47'),(8220,0,0,'I',2414,'I002414',2526,4,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:27:06','darshan','2025-12-04 19:27:47'),(8221,0,0,'I',2414,'I002414',2526,5,'0000-00-00','51270',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:27:06','darshan','2025-12-04 19:27:47'),(8222,0,0,'I',2398,'I002398',2526,1,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 19:29:59','drarchit','2025-12-04 19:30:41'),(8223,0,0,'I',2398,'I002398',2526,2,'0000-00-00','51332',0,0,'CAP','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 19:30:33','drarchit','2025-12-04 19:30:41'),(8225,0,0,'I',2398,'I002398',2526,3,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 19:30:33','drarchit','2025-12-04 19:30:41'),(8226,0,0,'I',2398,'I002398',2526,4,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-12-04 19:30:33','drarchit','2025-12-04 19:30:41'),(8227,0,0,'I',2398,'I002398',2526,5,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 19:30:33','drarchit','2025-12-04 19:30:41'),(8228,0,0,'I',2398,'I002398',2526,6,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-04 19:30:41','','0000-00-00 00:00:00'),(8229,0,0,'I',2415,'I002415',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:31:09','','0000-00-00 00:00:00'),(8230,0,0,'I',2415,'I002415',2526,2,'0000-00-00','51270',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:31:09','','0000-00-00 00:00:00'),(8231,0,0,'I',2415,'I002415',2526,3,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:31:09','','0000-00-00 00:00:00'),(8232,0,0,'I',2415,'I002415',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-04 19:31:09','','0000-00-00 00:00:00'),(8233,0,0,'I',2415,'I002415',2526,5,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:31:09','','0000-00-00 00:00:00'),(8234,0,0,'I',2417,'I002417',2526,1,'0000-00-00','51289',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:36:27','','0000-00-00 00:00:00'),(8235,0,0,'I',2417,'I002417',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:36:27','','0000-00-00 00:00:00'),(8236,0,0,'I',2417,'I002417',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-04 19:36:27','','0000-00-00 00:00:00'),(8237,0,0,'I',2417,'I002417',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-04 19:36:27','','0000-00-00 00:00:00'),(8238,0,0,'I',2417,'I002417',2526,5,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:36:27','','0000-00-00 00:00:00'),(8239,0,0,'I',2417,'I002417',2526,6,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:36:27','','0000-00-00 00:00:00'),(8240,0,0,'I',2418,'I002418',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:39:27','','0000-00-00 00:00:00'),(8241,0,0,'I',2418,'I002418',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-04 19:39:27','','0000-00-00 00:00:00'),(8242,0,0,'I',2419,'I002419',2526,1,'0000-00-00','51297',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 20:13:45','drarchit','2025-12-04 20:15:32'),(8243,0,0,'I',2419,'I002419',2526,2,'0000-00-00','51231',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-04 20:15:32','','0000-00-00 00:00:00'),(8244,0,0,'I',2419,'I002419',2526,3,'0000-00-00','51583',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-04 20:15:32','','0000-00-00 00:00:00'),(8245,0,0,'I',2420,'I002420',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 10:52:50','darshan','2025-12-05 10:54:01'),(8246,0,0,'I',2420,'I002420',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 10:52:50','darshan','2025-12-05 10:54:01'),(8247,0,0,'I',2420,'I002420',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 10:52:50','darshan','2025-12-05 10:54:01'),(8248,0,0,'I',2420,'I002420',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-05 10:52:50','darshan','2025-12-05 10:54:01'),(8249,0,0,'I',2420,'I002420',2526,5,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-05 10:52:50','darshan','2025-12-05 10:54:01'),(8250,0,0,'I',2420,'I002420',2526,6,'0000-00-00','51603',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-05 10:54:01','','0000-00-00 00:00:00'),(8251,0,0,'I',2421,'I002421',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 10:57:46','darshan','2025-12-05 10:57:58'),(8252,0,0,'I',2421,'I002421',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 10:57:46','darshan','2025-12-05 10:57:58'),(8253,0,0,'I',2421,'I002421',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-05 10:57:58','','0000-00-00 00:00:00'),(8254,0,0,'I',2422,'I002422',2526,1,'0000-00-00','51289',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 11:03:45','darshan','2025-12-05 11:05:53'),(8255,0,0,'I',2422,'I002422',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 11:05:45','darshan','2025-12-05 11:05:53'),(8256,0,0,'I',2422,'I002422',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-.1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-05 11:05:45','darshan','2025-12-05 11:05:53'),(8257,0,0,'I',2422,'I002422',2526,4,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-05 11:05:45','darshan','2025-12-05 11:05:53'),(8258,0,0,'I',2422,'I002422',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-05 11:05:45','darshan','2025-12-05 11:05:53'),(8259,0,0,'I',2422,'I002422',2526,6,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 11:05:53','','0000-00-00 00:00:00'),(8260,0,0,'I',2423,'I002423',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 11:22:20','','0000-00-00 00:00:00'),(8261,0,0,'I',2425,'I002425',2526,1,'0000-00-00','51356',0,0,'TAB','','','','',0,180,0,0,0,0,'0-0-2','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 11:30:29','','0000-00-00 00:00:00'),(8262,0,0,'I',2425,'I002425',2526,2,'0000-00-00','51367',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 11:30:29','','0000-00-00 00:00:00'),(8263,0,0,'I',2425,'I002425',2526,3,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 11:30:29','','0000-00-00 00:00:00'),(8264,0,0,'I',2425,'I002425',2526,4,'0000-00-00','51266',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'drarchit','2025-12-05 11:30:29','','0000-00-00 00:00:00'),(8265,0,0,'I',2426,'I002426',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 11:34:09','','0000-00-00 00:00:00'),(8266,0,0,'I',2426,'I002426',2526,2,'0000-00-00','51538',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-05 11:34:09','','0000-00-00 00:00:00'),(8267,0,0,'I',2426,'I002426',2526,3,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 11:34:09','','0000-00-00 00:00:00'),(8268,0,0,'I',2426,'I002426',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-05 11:34:09','','0000-00-00 00:00:00'),(8269,0,0,'I',2424,'I002424',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 11:36:55','','0000-00-00 00:00:00'),(8270,0,0,'I',2424,'I002424',2526,2,'0000-00-00','51420',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-05 11:36:55','','0000-00-00 00:00:00'),(8271,0,0,'I',2424,'I002424',2526,3,'0000-00-00','51267',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 11:36:55','','0000-00-00 00:00:00'),(8272,0,0,'I',2424,'I002424',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-05 11:36:55','','0000-00-00 00:00:00'),(8273,0,0,'I',2427,'I002427',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 11:40:18','','0000-00-00 00:00:00'),(8274,0,0,'I',2427,'I002427',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 11:40:18','','0000-00-00 00:00:00'),(8275,0,0,'I',2427,'I002427',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 11:40:18','','0000-00-00 00:00:00'),(8276,0,0,'I',2427,'I002427',2526,4,'0000-00-00','51219',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'darshan','2025-12-05 11:40:18','','0000-00-00 00:00:00'),(8277,0,0,'I',2428,'I002428',2526,1,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 11:41:33','','0000-00-00 00:00:00'),(8278,0,0,'I',2428,'I002428',2526,2,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-05 11:41:33','','0000-00-00 00:00:00'),(8279,0,0,'I',2428,'I002428',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 11:41:33','','0000-00-00 00:00:00'),(8280,0,0,'I',2428,'I002428',2526,4,'0000-00-00','51374',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-05 11:41:33','','0000-00-00 00:00:00'),(8281,0,0,'I',2428,'I002428',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-05 11:41:33','','0000-00-00 00:00:00'),(8282,0,0,'I',2429,'I002429',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-05 11:45:57','','0000-00-00 00:00:00'),(8283,0,0,'I',2429,'I002429',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 11:45:57','','0000-00-00 00:00:00'),(8284,0,0,'I',2430,'I002430',2526,1,'0000-00-00','51242',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 11:54:00','','0000-00-00 00:00:00'),(8285,0,0,'I',2430,'I002430',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 11:54:00','','0000-00-00 00:00:00'),(8286,0,0,'I',2430,'I002430',2526,3,'0000-00-00','51545',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 11:54:00','','0000-00-00 00:00:00'),(8287,0,0,'I',2431,'I002431',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 11:55:39','darshan','2025-12-05 11:55:59'),(8289,0,0,'I',2431,'I002431',2526,2,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-05 11:55:39','darshan','2025-12-05 11:55:59'),(8290,0,0,'I',2432,'I002432',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 11:56:34','','0000-00-00 00:00:00'),(8291,0,0,'I',2432,'I002432',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 11:56:34','','0000-00-00 00:00:00'),(8292,0,0,'I',2432,'I002432',2526,3,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-05 11:56:34','','0000-00-00 00:00:00'),(8293,0,0,'I',2432,'I002432',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 11:56:34','','0000-00-00 00:00:00'),(8294,0,0,'I',2432,'I002432',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-05 11:56:34','','0000-00-00 00:00:00'),(8295,0,0,'I',2433,'I002433',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 12:12:13','','0000-00-00 00:00:00'),(8296,0,0,'I',2433,'I002433',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 12:12:13','','0000-00-00 00:00:00'),(8297,0,0,'I',2433,'I002433',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 12:12:13','','0000-00-00 00:00:00'),(8298,0,0,'I',2435,'I002435',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 12:32:24','darshan','2025-12-05 12:32:40'),(8299,0,0,'I',2435,'I002435',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-05 12:32:24','darshan','2025-12-05 12:32:40'),(8300,0,0,'I',2436,'I002436',2526,1,'0000-00-00','51304',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 12:34:33','drarchit','2025-12-05 12:35:25'),(8302,0,0,'I',2436,'I002436',2526,2,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-12-05 12:34:59','drarchit','2025-12-05 12:35:25'),(8303,0,0,'I',2436,'I002436',2526,3,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-05 12:34:59','drarchit','2025-12-05 12:35:25'),(8304,0,0,'I',2436,'I002436',2526,4,'0000-00-00','51374',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-05 12:34:59','drarchit','2025-12-05 12:35:25'),(8305,0,0,'I',2436,'I002436',2526,5,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 12:35:25','','0000-00-00 00:00:00'),(8306,0,0,'I',2436,'I002436',2526,6,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 12:35:25','','0000-00-00 00:00:00'),(8307,0,0,'I',2437,'I002437',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 12:35:36','darshan','2025-12-05 12:36:07'),(8308,0,0,'I',2437,'I002437',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 12:35:36','darshan','2025-12-05 12:36:07'),(8309,0,0,'I',2437,'I002437',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 12:35:36','darshan','2025-12-05 12:36:07'),(8312,0,0,'I',2437,'I002437',2526,4,'0000-00-00','51233',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-05 12:36:07','','0000-00-00 00:00:00'),(8313,0,0,'I',2438,'I002438',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 12:40:32','','0000-00-00 00:00:00'),(8314,0,0,'I',2438,'I002438',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 12:40:32','','0000-00-00 00:00:00'),(8315,0,0,'I',2439,'I002439',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 12:42:41','','0000-00-00 00:00:00'),(8316,0,0,'I',2439,'I002439',2526,2,'0000-00-00','51220',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 12:42:41','','0000-00-00 00:00:00'),(8317,0,0,'I',2439,'I002439',2526,3,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 12:42:41','','0000-00-00 00:00:00'),(8318,0,0,'I',2439,'I002439',2526,4,'0000-00-00','51300',0,0,'TAB','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'drarchit','2025-12-05 12:42:41','','0000-00-00 00:00:00'),(8319,0,0,'I',2440,'I002440',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 12:43:39','','0000-00-00 00:00:00'),(8320,0,0,'I',2440,'I002440',2526,2,'0000-00-00','51418',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 12:43:39','','0000-00-00 00:00:00'),(8321,0,0,'I',2440,'I002440',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-05 12:43:39','','0000-00-00 00:00:00'),(8322,0,0,'I',2441,'I002441',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-05 12:47:34','','0000-00-00 00:00:00'),(8323,0,0,'I',2442,'I002442',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 12:48:00','','0000-00-00 00:00:00'),(8324,0,0,'I',2442,'I002442',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 12:48:00','','0000-00-00 00:00:00'),(8325,0,0,'I',2442,'I002442',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 12:48:00','','0000-00-00 00:00:00'),(8326,0,0,'I',2443,'I002443',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 12:52:46','','0000-00-00 00:00:00'),(8327,0,0,'I',2443,'I002443',2526,2,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 12:52:46','','0000-00-00 00:00:00'),(8328,0,0,'I',2443,'I002443',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-05 12:52:46','','0000-00-00 00:00:00'),(8329,0,0,'I',2444,'I002444',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 13:04:33','','0000-00-00 00:00:00'),(8330,0,0,'I',2444,'I002444',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 13:04:33','','0000-00-00 00:00:00'),(8331,0,0,'I',2444,'I002444',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 13:04:33','','0000-00-00 00:00:00'),(8332,0,0,'I',2444,'I002444',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-05 13:04:33','','0000-00-00 00:00:00'),(8333,0,0,'I',2445,'I002445',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 13:09:12','','0000-00-00 00:00:00'),(8334,0,0,'I',2445,'I002445',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 13:09:12','','0000-00-00 00:00:00'),(8335,0,0,'I',2445,'I002445',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,0,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-05 13:09:12','','0000-00-00 00:00:00'),(8336,0,0,'I',2446,'I002446',2526,1,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 13:12:46','','0000-00-00 00:00:00'),(8337,0,0,'I',2446,'I002446',2526,2,'0000-00-00','51297',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 13:12:46','','0000-00-00 00:00:00'),(8338,0,0,'I',2446,'I002446',2526,3,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-05 13:12:46','','0000-00-00 00:00:00'),(8339,0,0,'I',2447,'I002447',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 13:14:53','','0000-00-00 00:00:00'),(8340,0,0,'I',2447,'I002447',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 13:14:53','','0000-00-00 00:00:00'),(8341,0,0,'I',2447,'I002447',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-05 13:14:53','','0000-00-00 00:00:00'),(8342,0,0,'I',2448,'I002448',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-05 13:30:31','','0000-00-00 00:00:00'),(8343,0,0,'I',2448,'I002448',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 13:30:31','','0000-00-00 00:00:00'),(8344,0,0,'I',2448,'I002448',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 13:30:31','','0000-00-00 00:00:00'),(8345,0,0,'I',2448,'I002448',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-05 13:30:31','','0000-00-00 00:00:00'),(8346,0,0,'I',2448,'I002448',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-05 13:30:31','','0000-00-00 00:00:00'),(8347,0,0,'I',2449,'I002449',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 13:41:55','darshan','2025-12-05 13:42:09'),(8348,0,0,'I',2449,'I002449',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 13:41:55','darshan','2025-12-05 13:42:09'),(8349,0,0,'I',2449,'I002449',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-05 13:41:55','darshan','2025-12-05 13:42:09'),(8350,0,0,'I',2449,'I002449',2526,4,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 13:42:09','','0000-00-00 00:00:00'),(8351,0,0,'I',2434,'I002434',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 13:53:06','darshan','2025-12-05 13:53:19'),(8352,0,0,'I',2434,'I002434',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 13:53:19','','0000-00-00 00:00:00'),(8353,0,0,'I',2450,'I002450',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 14:03:55','','0000-00-00 00:00:00'),(8354,0,0,'I',2450,'I002450',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 14:03:55','','0000-00-00 00:00:00'),(8355,0,0,'I',2451,'I002451',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 14:12:19','','0000-00-00 00:00:00'),(8356,0,0,'I',2451,'I002451',2526,2,'0000-00-00','51418',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 14:12:19','','0000-00-00 00:00:00'),(8357,0,0,'I',2451,'I002451',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-05 14:12:19','','0000-00-00 00:00:00'),(8358,0,0,'I',2452,'I002452',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-05 14:14:08','','0000-00-00 00:00:00'),(8359,0,0,'I',2452,'I002452',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 14:14:08','','0000-00-00 00:00:00'),(8360,0,0,'I',2452,'I002452',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-05 14:14:08','','0000-00-00 00:00:00'),(8361,0,0,'I',2452,'I002452',2526,4,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 14:14:08','','0000-00-00 00:00:00'),(8362,0,0,'I',2452,'I002452',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-05 14:14:08','','0000-00-00 00:00:00'),(8363,0,0,'I',2453,'I002453',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 17:22:13','darshan','2025-12-05 17:22:35'),(8364,0,0,'I',2453,'I002453',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 17:22:13','darshan','2025-12-05 17:22:35'),(8366,0,0,'I',2454,'I002454',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 17:33:55','darshan','2025-12-05 17:34:23'),(8369,0,0,'I',2454,'I002454',2526,2,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 17:33:55','darshan','2025-12-05 17:34:23'),(8371,0,0,'I',2454,'I002454',2526,3,'0000-00-00','51276',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 17:34:23','','0000-00-00 00:00:00'),(8372,0,0,'I',2455,'I002455',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 17:39:51','','0000-00-00 00:00:00'),(8373,0,0,'I',2455,'I002455',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 17:39:51','','0000-00-00 00:00:00'),(8374,0,0,'I',2456,'I002456',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 17:47:03','darshan','2025-12-05 17:47:30'),(8375,0,0,'I',2456,'I002456',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 17:47:03','darshan','2025-12-05 17:47:30'),(8378,0,0,'I',2456,'I002456',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-05 17:47:03','darshan','2025-12-05 17:47:30'),(8379,0,0,'I',2457,'I002457',2526,1,'0000-00-00','51418',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 17:53:04','','0000-00-00 00:00:00'),(8380,0,0,'I',2458,'I002458',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 17:55:43','','0000-00-00 00:00:00'),(8381,0,0,'I',2458,'I002458',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 17:55:43','','0000-00-00 00:00:00'),(8382,0,0,'I',2458,'I002458',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 17:55:43','','0000-00-00 00:00:00'),(8383,0,0,'I',2458,'I002458',2526,4,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-05 17:55:43','','0000-00-00 00:00:00'),(8384,0,0,'I',2459,'I002459',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 18:01:07','','0000-00-00 00:00:00'),(8385,0,0,'I',2460,'I002460',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 18:09:39','','0000-00-00 00:00:00'),(8386,0,0,'I',2460,'I002460',2526,2,'0000-00-00','51418',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 18:09:39','','0000-00-00 00:00:00'),(8387,0,0,'I',2460,'I002460',2526,3,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-05 18:09:39','','0000-00-00 00:00:00'),(8388,0,0,'I',2461,'I002461',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 18:15:12','','0000-00-00 00:00:00'),(8389,0,0,'I',2461,'I002461',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 18:15:12','','0000-00-00 00:00:00'),(8390,0,0,'I',2461,'I002461',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 18:15:12','','0000-00-00 00:00:00'),(8391,0,0,'I',2461,'I002461',2526,4,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-05 18:15:12','','0000-00-00 00:00:00'),(8392,0,0,'I',2461,'I002461',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-05 18:15:12','','0000-00-00 00:00:00'),(8393,0,0,'I',2462,'I002462',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 18:17:42','darshan','2025-12-05 18:18:16'),(8394,0,0,'I',2462,'I002462',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-05 18:17:42','darshan','2025-12-05 18:18:16'),(8396,0,0,'I',2463,'I002463',2526,1,'0000-00-00','51332',0,0,'CAP','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 18:19:41','','0000-00-00 00:00:00'),(8397,0,0,'I',2463,'I002463',2526,2,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 18:19:41','','0000-00-00 00:00:00'),(8398,0,0,'I',2463,'I002463',2526,3,'0000-00-00','51230',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 18:19:41','','0000-00-00 00:00:00'),(8399,0,0,'I',2463,'I002463',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-05 18:19:41','','0000-00-00 00:00:00'),(8400,0,0,'I',2463,'I002463',2526,5,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-12-05 18:19:41','','0000-00-00 00:00:00'),(8401,0,0,'I',2463,'I002463',2526,6,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 18:19:41','','0000-00-00 00:00:00'),(8402,0,0,'I',2464,'I002464',2526,1,'0000-00-00','51448',0,0,'SYRUP','','','','',0,1,0,0,0,0,'1-0-0','5ml','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 18:27:25','','0000-00-00 00:00:00'),(8403,0,0,'I',2464,'I002464',2526,2,'0000-00-00','51256',0,0,'SYRUP','','','','',0,1,0,0,0,0,'1-1-1','5ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 18:27:25','','0000-00-00 00:00:00'),(8404,0,0,'I',2464,'I002464',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-05 18:27:25','','0000-00-00 00:00:00'),(8405,0,0,'I',2465,'I002465',2526,1,'0000-00-00','51334',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 18:32:17','','0000-00-00 00:00:00'),(8406,0,0,'I',2465,'I002465',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 18:32:17','','0000-00-00 00:00:00'),(8408,0,0,'I',2467,'I002467',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 18:36:59','','0000-00-00 00:00:00'),(8409,0,0,'I',2467,'I002467',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 18:36:59','','0000-00-00 00:00:00'),(8410,0,0,'I',2467,'I002467',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-05 18:36:59','','0000-00-00 00:00:00'),(8411,0,0,'I',2468,'I002468',2526,1,'0000-00-00','51349',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-12-05 18:41:36','','0000-00-00 00:00:00'),(8412,0,0,'I',2051,'I002051',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 18:43:16','','0000-00-00 00:00:00'),(8413,0,0,'I',2469,'I002469',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 18:48:17','darshan','2025-12-05 18:48:28'),(8414,0,0,'I',2469,'I002469',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 18:48:17','darshan','2025-12-05 18:48:28'),(8416,0,0,'I',2466,'I002466',2526,1,'0000-00-00','51338',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 18:59:49','drarchit','2025-12-05 19:00:52'),(8417,0,0,'I',2466,'I002466',2526,2,'0000-00-00','51367',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 18:59:49','drarchit','2025-12-05 19:00:52'),(8418,0,0,'I',2466,'I002466',2526,3,'0000-00-00','51353',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 18:59:49','drarchit','2025-12-05 19:00:52'),(8420,0,0,'I',2466,'I002466',2526,4,'0000-00-00','51519',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:00:34','drarchit','2025-12-05 19:00:52'),(8421,0,0,'I',2466,'I002466',2526,5,'0000-00-00','51492',0,0,'INJ','','','','',0,2,0,0,0,0,'0-28-16','','Dy',4,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-05 19:00:34','drarchit','2025-12-05 19:00:52'),(8422,0,0,'I',2466,'I002466',2526,6,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-05 19:00:52','','0000-00-00 00:00:00'),(8423,0,0,'I',2470,'I002470',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 19:05:19','darshan','2025-12-05 19:05:42'),(8424,0,0,'I',2470,'I002470',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 19:05:42','','0000-00-00 00:00:00'),(8425,0,0,'I',2470,'I002470',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-05 19:05:42','','0000-00-00 00:00:00'),(8426,0,0,'I',2472,'I002472',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 19:09:07','darshan','2025-12-05 19:09:49'),(8427,0,0,'I',2472,'I002472',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 19:09:07','darshan','2025-12-05 19:09:49'),(8428,0,0,'I',2472,'I002472',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 19:09:07','darshan','2025-12-05 19:09:49'),(8430,0,0,'I',2471,'I002471',2526,1,'0000-00-00','51482',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-05 19:10:04','','0000-00-00 00:00:00'),(8431,0,0,'I',2471,'I002471',2526,2,'0000-00-00','51605',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:10:04','','0000-00-00 00:00:00'),(8432,0,0,'I',2471,'I002471',2526,3,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:10:04','','0000-00-00 00:00:00'),(8433,0,0,'I',2471,'I002471',2526,4,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:10:04','','0000-00-00 00:00:00'),(8434,0,0,'I',2473,'I002473',2526,1,'0000-00-00','51388',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:14:28','','0000-00-00 00:00:00'),(8435,0,0,'I',2474,'I002474',2526,1,'0000-00-00','51217',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:18:05','','0000-00-00 00:00:00'),(8436,0,0,'I',2474,'I002474',2526,2,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:18:05','','0000-00-00 00:00:00'),(8437,0,0,'I',2474,'I002474',2526,3,'0000-00-00','51301',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:18:05','','0000-00-00 00:00:00'),(8438,0,0,'I',2474,'I002474',2526,4,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-05 19:18:05','','0000-00-00 00:00:00'),(8439,0,0,'I',2474,'I002474',2526,5,'0000-00-00','51487',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-05 19:18:05','','0000-00-00 00:00:00'),(8440,0,0,'I',2475,'I002475',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-05 19:21:04','drarchit','2025-12-05 19:21:27'),(8441,0,0,'I',2475,'I002475',2526,2,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-05 19:21:04','drarchit','2025-12-05 19:21:27'),(8443,0,0,'I',2476,'I002476',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 19:22:32','darshan','2025-12-05 19:22:53'),(8444,0,0,'I',2476,'I002476',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 19:22:32','darshan','2025-12-05 19:22:53'),(8445,0,0,'I',2476,'I002476',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-05 19:22:53','','0000-00-00 00:00:00'),(8446,0,0,'I',2477,'I002477',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:25:46','','0000-00-00 00:00:00'),(8447,0,0,'I',2477,'I002477',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:25:46','','0000-00-00 00:00:00'),(8448,0,0,'I',2477,'I002477',2526,3,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:25:46','','0000-00-00 00:00:00'),(8449,0,0,'I',2477,'I002477',2526,4,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:25:46','','0000-00-00 00:00:00'),(8450,0,0,'I',2477,'I002477',2526,5,'0000-00-00','51262',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:25:46','','0000-00-00 00:00:00'),(8451,0,0,'I',2477,'I002477',2526,6,'0000-00-00','51362',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-05 19:25:46','','0000-00-00 00:00:00'),(8452,0,0,'I',2478,'I002478',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 19:27:43','darshan','2025-12-05 19:28:59'),(8453,0,0,'I',2478,'I002478',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 19:27:43','darshan','2025-12-05 19:28:59'),(8456,0,0,'I',2479,'I002479',2526,1,'0000-00-00','51248',0,0,'CAP','','','','',0,4,0,0,0,0,'1-0-0','','Wk',4,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:34:47','','0000-00-00 00:00:00'),(8457,0,0,'I',2479,'I002479',2526,2,'0000-00-00','51219',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-12-05 19:34:47','','0000-00-00 00:00:00'),(8458,0,0,'I',2479,'I002479',2526,3,'0000-00-00','51314',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:34:47','','0000-00-00 00:00:00'),(8459,0,0,'I',2480,'I002480',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 19:36:35','','0000-00-00 00:00:00'),(8460,0,0,'I',2480,'I002480',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 19:36:35','','0000-00-00 00:00:00'),(8461,0,0,'I',2480,'I002480',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 19:36:35','','0000-00-00 00:00:00'),(8462,0,0,'I',2480,'I002480',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-05 19:36:35','','0000-00-00 00:00:00'),(8463,0,0,'I',2480,'I002480',2526,5,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 19:36:35','','0000-00-00 00:00:00'),(8464,0,0,'I',2481,'I002481',2526,1,'0000-00-00','51545',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:42:20','drarchit','2025-12-05 19:43:11'),(8465,0,0,'I',2482,'I002482',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 19:42:56','','0000-00-00 00:00:00'),(8466,0,0,'I',2482,'I002482',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 19:42:56','','0000-00-00 00:00:00'),(8467,0,0,'I',2482,'I002482',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 19:42:56','','0000-00-00 00:00:00'),(8468,0,0,'I',2481,'I002481',2526,2,'0000-00-00','51606',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:43:11','','0000-00-00 00:00:00'),(8469,0,0,'I',2483,'I002483',2526,1,'0000-00-00','51384',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:46:45','drarchit','2025-12-08 20:33:14'),(8470,0,0,'I',2483,'I002483',2526,2,'0000-00-00','51309',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:47:15','drarchit','2025-12-08 20:33:14'),(8471,0,0,'I',2484,'I002484',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',3,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-05 19:53:32','','0000-00-00 00:00:00'),(8472,0,0,'I',2485,'I002485',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 19:57:38','','0000-00-00 00:00:00'),(8473,0,0,'I',2485,'I002485',2526,2,'0000-00-00','51418',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-05 19:57:38','','0000-00-00 00:00:00'),(8474,0,0,'I',2485,'I002485',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-05 19:57:38','','0000-00-00 00:00:00'),(8475,0,0,'I',2485,'I002485',2526,4,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-05 19:57:38','','0000-00-00 00:00:00'),(8476,0,0,'I',2486,'I002486',2526,1,'0000-00-00','51473',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-05 19:57:41','drarchit','2025-12-05 19:58:33'),(8477,0,0,'I',2486,'I002486',2526,2,'0000-00-00','51346',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:58:28','drarchit','2025-12-05 19:58:33'),(8478,0,0,'I',2486,'I002486',2526,3,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 19:58:28','drarchit','2025-12-05 19:58:33'),(8479,0,0,'I',2486,'I002486',2526,4,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-05 19:58:28','drarchit','2025-12-05 19:58:33'),(8480,0,0,'I',2487,'I002487',2526,1,'0000-00-00','51412',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 20:05:29','','0000-00-00 00:00:00'),(8481,0,0,'I',2487,'I002487',2526,2,'0000-00-00','51436',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-05 20:05:29','','0000-00-00 00:00:00'),(8482,0,0,'I',2488,'I002488',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 10:59:25','darshan','2025-12-06 11:01:05'),(8483,0,0,'I',2488,'I002488',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 10:59:25','darshan','2025-12-06 11:01:05'),(8484,0,0,'I',2488,'I002488',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 10:59:25','darshan','2025-12-06 11:01:05'),(8485,0,0,'I',2488,'I002488',2526,4,'0000-00-00','51219',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'darshan','2025-12-06 11:01:05','','0000-00-00 00:00:00'),(8486,0,0,'I',2488,'I002488',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-06 11:01:05','','0000-00-00 00:00:00'),(8487,0,0,'I',2489,'I002489',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 11:05:44','darshan','2025-12-06 11:06:15'),(8488,0,0,'I',2489,'I002489',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 11:05:44','darshan','2025-12-06 11:06:15'),(8489,0,0,'I',2490,'I002490',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 11:13:03','','0000-00-00 00:00:00'),(8490,0,0,'I',2490,'I002490',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 11:13:03','','0000-00-00 00:00:00'),(8491,0,0,'I',2490,'I002490',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 11:13:03','','0000-00-00 00:00:00'),(8492,0,0,'I',2490,'I002490',2526,4,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 11:13:03','','0000-00-00 00:00:00'),(8493,0,0,'I',2491,'I002491',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 11:16:59','','0000-00-00 00:00:00'),(8494,0,0,'I',2491,'I002491',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 11:16:59','','0000-00-00 00:00:00'),(8495,0,0,'I',2491,'I002491',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 11:16:59','','0000-00-00 00:00:00'),(8496,0,0,'I',2492,'I002492',2526,1,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 11:35:11','drarchit','2025-12-06 11:35:49'),(8497,0,0,'I',2492,'I002492',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 11:35:11','drarchit','2025-12-06 11:35:49'),(8498,0,0,'I',2493,'I002493',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 11:35:41','darshan','2025-12-06 11:36:19'),(8499,0,0,'I',2493,'I002493',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 11:35:41','darshan','2025-12-06 11:36:19'),(8501,0,0,'I',2492,'I002492',2526,3,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-06 11:35:49','','0000-00-00 00:00:00'),(8502,0,0,'I',2492,'I002492',2526,4,'0000-00-00','51299',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 11:35:49','','0000-00-00 00:00:00'),(8503,0,0,'I',2492,'I002492',2526,5,'0000-00-00','51218',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 11:35:49','','0000-00-00 00:00:00'),(8504,0,0,'I',2492,'I002492',2526,6,'0000-00-00','51476',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-06 11:35:49','','0000-00-00 00:00:00'),(8505,0,0,'I',2494,'I002494',2526,1,'0000-00-00','51289',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-06 11:42:53','darshan','2025-12-06 11:43:20'),(8506,0,0,'I',2494,'I002494',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 11:42:53','darshan','2025-12-06 11:43:20'),(8507,0,0,'I',2494,'I002494',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 11:42:53','darshan','2025-12-06 11:43:20'),(8508,0,0,'I',2494,'I002494',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-06 11:43:20','','0000-00-00 00:00:00'),(8509,0,0,'I',2495,'I002495',2526,1,'0000-00-00','51279',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 11:48:57','','0000-00-00 00:00:00'),(8510,0,0,'I',2496,'I002496',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 11:56:58','','0000-00-00 00:00:00'),(8511,0,0,'I',2496,'I002496',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 11:56:58','','0000-00-00 00:00:00'),(8512,0,0,'I',2497,'I002497',2526,1,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 11:58:16','','0000-00-00 00:00:00'),(8513,0,0,'I',2497,'I002497',2526,2,'0000-00-00','51230',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 11:58:16','','0000-00-00 00:00:00'),(8514,0,0,'I',2497,'I002497',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 11:58:16','','0000-00-00 00:00:00'),(8515,0,0,'I',2497,'I002497',2526,4,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-06 11:58:16','','0000-00-00 00:00:00'),(8516,0,0,'I',2497,'I002497',2526,5,'0000-00-00','51487',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-06 11:58:16','','0000-00-00 00:00:00'),(8517,0,0,'I',2499,'I002499',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:00:37','darshan','2025-12-06 12:00:53'),(8518,0,0,'I',2499,'I002499',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:00:37','darshan','2025-12-06 12:00:53'),(8519,0,0,'I',2499,'I002499',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:00:37','darshan','2025-12-06 12:00:53'),(8520,0,0,'I',2500,'I002500',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:06:14','','0000-00-00 00:00:00'),(8521,0,0,'I',2501,'I002501',2526,1,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 12:06:20','','0000-00-00 00:00:00'),(8522,0,0,'I',2501,'I002501',2526,2,'0000-00-00','51480',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-06 12:06:20','','0000-00-00 00:00:00'),(8523,0,0,'I',2502,'I002502',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-06 12:19:19','','0000-00-00 00:00:00'),(8524,0,0,'I',2502,'I002502',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:19:19','','0000-00-00 00:00:00'),(8525,0,0,'I',2502,'I002502',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:19:19','','0000-00-00 00:00:00'),(8526,0,0,'I',2503,'I002503',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:19:53','darshan','2025-12-06 12:20:06'),(8527,0,0,'I',2503,'I002503',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:19:53','darshan','2025-12-06 12:20:06'),(8528,0,0,'I',2504,'I002504',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:24:20','darshan','2025-12-06 12:25:53'),(8529,0,0,'I',2504,'I002504',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-06 12:24:20','darshan','2025-12-06 12:25:53'),(8530,0,0,'I',2504,'I002504',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:24:20','darshan','2025-12-06 12:25:53'),(8532,0,0,'I',2505,'I002505',2526,1,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 12:26:06','drarchit','2025-12-06 12:26:18'),(8533,0,0,'I',2505,'I002505',2526,2,'0000-00-00','51442',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-06 12:26:18','','0000-00-00 00:00:00'),(8534,0,0,'I',2506,'I002506',2526,1,'0000-00-00','51334',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:31:02','darshan','2025-12-06 12:31:16'),(8535,0,0,'I',2506,'I002506',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:31:02','darshan','2025-12-06 12:31:16'),(8536,0,0,'I',2506,'I002506',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:31:02','darshan','2025-12-06 12:31:16'),(8537,0,0,'I',2506,'I002506',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:31:02','darshan','2025-12-06 12:31:16'),(8538,0,0,'I',2506,'I002506',2526,5,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-06 12:31:16','','0000-00-00 00:00:00'),(8539,0,0,'I',2507,'I002507',2526,1,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-06 12:31:25','','0000-00-00 00:00:00'),(8540,0,0,'I',2507,'I002507',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-06 12:31:25','','0000-00-00 00:00:00'),(8541,0,0,'I',2507,'I002507',2526,3,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 12:31:25','','0000-00-00 00:00:00'),(8542,0,0,'I',2507,'I002507',2526,4,'0000-00-00','51332',0,0,'CAP','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 12:31:25','','0000-00-00 00:00:00'),(8543,0,0,'I',2508,'I002508',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:35:17','darshan','2025-12-06 12:35:41'),(8544,0,0,'I',2508,'I002508',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:35:17','darshan','2025-12-06 12:35:41'),(8545,0,0,'I',2508,'I002508',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:35:17','darshan','2025-12-06 12:35:41'),(8546,0,0,'I',2509,'I002509',2526,1,'0000-00-00','51409',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-06 12:40:39','drjayant','2025-12-06 13:24:28'),(8547,0,0,'I',2509,'I002509',2526,2,'0000-00-00','51575',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-06 12:40:39','drjayant','2025-12-06 13:24:28'),(8548,0,0,'I',2510,'I002510',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-06 12:41:50','','0000-00-00 00:00:00'),(8549,0,0,'I',2510,'I002510',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 12:41:50','','0000-00-00 00:00:00'),(8550,0,0,'I',2510,'I002510',2526,3,'0000-00-00','51475',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-06 12:41:50','','0000-00-00 00:00:00'),(8551,0,0,'I',2510,'I002510',2526,4,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-06 12:41:50','','0000-00-00 00:00:00'),(8552,0,0,'I',2509,'I002509',2526,3,'0000-00-00','51607',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-06 12:41:52','drjayant','2025-12-06 13:24:28'),(8553,0,0,'I',2511,'I002511',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:42:08','','0000-00-00 00:00:00'),(8554,0,0,'I',2509,'I002509',2526,4,'0000-00-00','51445',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-06 12:44:00','drjayant','2025-12-06 13:24:28'),(8555,0,0,'I',2509,'I002509',2526,5,'0000-00-00','51319',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-06 12:44:00','drjayant','2025-12-06 13:24:28'),(8556,0,0,'I',2509,'I002509',2526,6,'0000-00-00','51317',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-06 12:44:00','drjayant','2025-12-06 13:24:28'),(8557,0,0,'I',2509,'I002509',2526,7,'0000-00-00','51608',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-06 12:46:01','drjayant','2025-12-06 13:24:28'),(8558,0,0,'I',2509,'I002509',2526,8,'0000-00-00','51488',0,0,'INJ','','','','',0,1,0,0,0,0,'20-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-06 12:46:01','drjayant','2025-12-06 13:24:28'),(8559,0,0,'I',2509,'I002509',2526,9,'0000-00-00','51459',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-06 12:46:01','drjayant','2025-12-06 13:24:28'),(8561,0,0,'I',2512,'I002512',2526,1,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 12:47:37','','0000-00-00 00:00:00'),(8562,0,0,'I',2512,'I002512',2526,2,'0000-00-00','51262',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 12:47:37','','0000-00-00 00:00:00'),(8563,0,0,'I',2512,'I002512',2526,3,'0000-00-00','51517',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 12:47:37','','0000-00-00 00:00:00'),(8564,0,0,'I',2512,'I002512',2526,4,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 12:47:37','','0000-00-00 00:00:00'),(8565,0,0,'I',2513,'I002513',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 12:57:49','','0000-00-00 00:00:00'),(8566,0,0,'I',2514,'I002514',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-06 13:07:43','','0000-00-00 00:00:00'),(8567,0,0,'I',2515,'I002515',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 13:08:28','','0000-00-00 00:00:00'),(8568,0,0,'I',2515,'I002515',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 13:08:28','','0000-00-00 00:00:00'),(8569,0,0,'I',2515,'I002515',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 13:08:28','','0000-00-00 00:00:00'),(8570,0,0,'I',2516,'I002516',2526,1,'0000-00-00','51422',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-06 13:11:30','','0000-00-00 00:00:00'),(8571,0,0,'I',2516,'I002516',2526,2,'0000-00-00','51562',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-06 13:11:30','','0000-00-00 00:00:00'),(8572,0,0,'I',2517,'I002517',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 13:12:34','drarchit','2025-12-06 13:12:44'),(8573,0,0,'I',2517,'I002517',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-06 13:12:34','drarchit','2025-12-06 13:12:44'),(8574,0,0,'I',2517,'I002517',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 13:12:34','drarchit','2025-12-06 13:12:44'),(8575,0,0,'I',2517,'I002517',2526,4,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-06 13:12:34','drarchit','2025-12-06 13:12:44'),(8576,0,0,'I',2517,'I002517',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-06 13:12:34','drarchit','2025-12-06 13:12:44'),(8577,0,0,'I',2517,'I002517',2526,6,'0000-00-00','51219',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-12-06 13:12:44','','0000-00-00 00:00:00'),(8578,0,0,'I',2518,'I002518',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 13:15:30','darshan','2025-12-06 13:17:19'),(8579,0,0,'I',2518,'I002518',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 13:15:30','darshan','2025-12-06 13:17:19'),(8580,0,0,'I',2518,'I002518',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 13:15:30','darshan','2025-12-06 13:17:19'),(8583,0,0,'I',2519,'I002519',2526,1,'0000-00-00','51321',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 13:17:16','drarchit','2025-12-06 13:17:31'),(8584,0,0,'I',2519,'I002519',2526,2,'0000-00-00','51379',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 13:17:16','drarchit','2025-12-06 13:17:31'),(8585,0,0,'I',2519,'I002519',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-06 13:17:16','drarchit','2025-12-06 13:17:31'),(8586,0,0,'I',2519,'I002519',2526,4,'0000-00-00','51380',0,0,'CAP','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 13:17:16','drarchit','2025-12-06 13:17:31'),(8587,0,0,'I',2519,'I002519',2526,5,'0000-00-00','51372',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 13:17:31','','0000-00-00 00:00:00'),(8588,0,0,'I',2520,'I002520',2526,1,'0000-00-00','51217',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 13:20:29','drarchit','2025-12-06 13:20:44'),(8589,0,0,'I',2520,'I002520',2526,2,'0000-00-00','51214',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'5','','P',NULL,NULL,'drarchit','2025-12-06 13:20:29','drarchit','2025-12-06 13:20:44'),(8590,0,0,'I',2520,'I002520',2526,3,'0000-00-00','51528',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-06 13:20:44','','0000-00-00 00:00:00'),(8591,0,0,'I',2521,'I002521',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 13:22:35','darshan','2025-12-06 13:22:55'),(8592,0,0,'I',2521,'I002521',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 13:22:35','darshan','2025-12-06 13:22:55'),(8593,0,0,'I',2521,'I002521',2526,3,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-06 13:22:55','','0000-00-00 00:00:00'),(8594,0,0,'I',2522,'I002522',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 13:29:30','','0000-00-00 00:00:00'),(8595,0,0,'I',2522,'I002522',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 13:29:30','','0000-00-00 00:00:00'),(8596,0,0,'I',2523,'I002523',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 13:41:05','darshan','2025-12-06 14:22:30'),(8597,0,0,'I',2524,'I002524',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 13:52:05','darshan','2025-12-06 13:52:10'),(8598,0,0,'I',2524,'I002524',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 13:52:05','darshan','2025-12-06 13:52:10'),(8599,0,0,'I',2524,'I002524',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,4,0,0,0,0,'1-0-0','','Wk',4,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-06 13:52:05','darshan','2025-12-06 13:52:10'),(8600,0,0,'I',2525,'I002525',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 14:00:10','','0000-00-00 00:00:00'),(8601,0,0,'I',2525,'I002525',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 14:00:10','','0000-00-00 00:00:00'),(8603,0,0,'I',2526,'I002526',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 14:05:14','darshan','2025-12-06 14:05:49'),(8604,0,0,'I',2526,'I002526',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 14:05:14','darshan','2025-12-06 14:05:49'),(8606,0,0,'I',2527,'I002527',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 14:14:08','darshan','2025-12-06 14:14:35'),(8607,0,0,'I',2527,'I002527',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 14:14:08','darshan','2025-12-06 14:14:35'),(8608,0,0,'I',2527,'I002527',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 14:14:08','darshan','2025-12-06 14:14:35'),(8609,0,0,'I',2527,'I002527',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-06 14:14:08','darshan','2025-12-06 14:14:35'),(8610,0,0,'I',2527,'I002527',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-06 14:14:35','','0000-00-00 00:00:00'),(8611,0,0,'I',2523,'I002523',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 14:22:30','','0000-00-00 00:00:00'),(8612,0,0,'I',2523,'I002523',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 14:22:30','','0000-00-00 00:00:00'),(8613,0,0,'I',2523,'I002523',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-06 14:22:30','','0000-00-00 00:00:00'),(8614,0,0,'I',2523,'I002523',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-06 14:22:30','','0000-00-00 00:00:00'),(8615,0,0,'I',2528,'I002528',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 14:26:20','','0000-00-00 00:00:00'),(8616,0,0,'I',2528,'I002528',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 14:26:20','','0000-00-00 00:00:00'),(8617,0,0,'I',2529,'I002529',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 14:37:36','darshan','2025-12-06 14:38:29'),(8618,0,0,'I',2529,'I002529',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 14:38:15','darshan','2025-12-06 14:38:29'),(8619,0,0,'I',2529,'I002529',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 14:38:15','darshan','2025-12-06 14:38:29'),(8620,0,0,'I',2529,'I002529',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-06 14:38:15','darshan','2025-12-06 14:38:29'),(8621,0,0,'I',2530,'I002530',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 14:41:31','','0000-00-00 00:00:00'),(8622,0,0,'I',2530,'I002530',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-06 14:41:31','','0000-00-00 00:00:00'),(8623,0,0,'I',2531,'I002531',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-08 10:45:14','darshan','2025-12-08 10:45:27'),(8624,0,0,'I',2531,'I002531',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 10:45:14','darshan','2025-12-08 10:45:27'),(8625,0,0,'I',2531,'I002531',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-08 10:45:14','darshan','2025-12-08 10:45:27'),(8626,0,0,'I',2531,'I002531',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-08 10:45:27','','0000-00-00 00:00:00'),(8627,0,0,'I',2532,'I002532',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 10:50:56','darshan','2025-12-08 10:51:23'),(8628,0,0,'I',2532,'I002532',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 10:50:56','darshan','2025-12-08 10:51:23'),(8630,0,0,'I',2533,'I002533',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 11:23:02','','0000-00-00 00:00:00'),(8631,0,0,'I',2533,'I002533',2526,2,'0000-00-00','51289',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 11:23:02','','0000-00-00 00:00:00'),(8632,0,0,'I',2533,'I002533',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 11:23:02','','0000-00-00 00:00:00'),(8633,0,0,'I',2534,'I002534',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 11:28:44','darshan','2025-12-08 11:29:52'),(8634,0,0,'I',2534,'I002534',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,25,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 11:29:52','','0000-00-00 00:00:00'),(8635,0,0,'I',2534,'I002534',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,0,0,0,0,0,'','','Dy',45,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-08 11:29:52','','0000-00-00 00:00:00'),(8636,0,0,'I',2534,'I002534',2526,4,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 11:29:52','','0000-00-00 00:00:00'),(8639,0,0,'I',2535,'I002535',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 11:31:29','drarchit','2025-12-08 11:32:06'),(8640,0,0,'I',2535,'I002535',2526,2,'0000-00-00','51583',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-08 11:32:06','','0000-00-00 00:00:00'),(8641,0,0,'I',2536,'I002536',2526,1,'0000-00-00','51249',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 11:35:58','drarchit','2025-12-08 11:36:14'),(8642,0,0,'I',2536,'I002536',2526,2,'0000-00-00','51248',0,0,'CAP','','','','',0,28,0,0,0,0,'1-0-0','','Wk',4,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 11:35:58','drarchit','2025-12-08 11:36:14'),(8643,0,0,'I',2536,'I002536',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 11:35:58','drarchit','2025-12-08 11:36:14'),(8644,0,0,'I',2536,'I002536',2526,4,'0000-00-00','51487',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-08 11:35:58','drarchit','2025-12-08 11:36:14'),(8645,0,0,'I',2536,'I002536',2526,5,'0000-00-00','51471',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-12-08 11:35:58','drarchit','2025-12-08 11:36:14'),(8646,0,0,'I',2536,'I002536',2526,6,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-08 11:36:14','','0000-00-00 00:00:00'),(8647,0,0,'I',2537,'I002537',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 11:40:44','drarchit','2025-12-08 11:41:24'),(8648,0,0,'I',2537,'I002537',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 11:40:44','drarchit','2025-12-08 11:41:24'),(8649,0,0,'I',2537,'I002537',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-08 11:40:44','drarchit','2025-12-08 11:41:24'),(8650,0,0,'I',2537,'I002537',2526,4,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-08 11:40:50','drarchit','2025-12-08 11:41:24'),(8651,0,0,'I',2537,'I002537',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-08 11:41:08','drarchit','2025-12-08 11:41:24'),(8652,0,0,'I',2537,'I002537',2526,6,'0000-00-00','51297',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 11:41:24','','0000-00-00 00:00:00'),(8653,0,0,'I',2538,'I002538',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 11:42:20','darshan','2025-12-08 11:42:40'),(8654,0,0,'I',2538,'I002538',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 11:42:20','darshan','2025-12-08 11:42:40'),(8655,0,0,'I',2538,'I002538',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-08 11:42:20','darshan','2025-12-08 11:42:40'),(8656,0,0,'I',2538,'I002538',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-08 11:42:40','','0000-00-00 00:00:00'),(8657,0,0,'I',2539,'I002539',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 11:51:22','drarchit','2025-12-08 11:51:32'),(8658,0,0,'I',2539,'I002539',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 11:51:22','drarchit','2025-12-08 11:51:32'),(8659,0,0,'I',2539,'I002539',2526,3,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 11:51:22','drarchit','2025-12-08 11:51:32'),(8660,0,0,'I',2539,'I002539',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-08 11:51:22','drarchit','2025-12-08 11:51:32'),(8661,0,0,'I',2539,'I002539',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 11:51:22','drarchit','2025-12-08 11:51:32'),(8662,0,0,'I',2540,'I002540',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 11:58:43','darshan','2025-12-08 13:22:44'),(8663,0,0,'I',2540,'I002540',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 11:58:43','darshan','2025-12-08 13:22:44'),(8664,0,0,'I',2541,'I002541',2526,1,'0000-00-00','51484',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-08 12:05:07','','0000-00-00 00:00:00'),(8665,0,0,'I',2541,'I002541',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 12:05:07','','0000-00-00 00:00:00'),(8667,0,0,'I',2542,'I002542',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:06:48','darshan','2025-12-08 12:08:40'),(8668,0,0,'I',2542,'I002542',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:06:48','darshan','2025-12-08 12:08:40'),(8670,0,0,'I',2542,'I002542',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:07:09','darshan','2025-12-08 12:08:40'),(8671,0,0,'I',2543,'I002543',2526,1,'0000-00-00','51280',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 12:08:39','','0000-00-00 00:00:00'),(8672,0,0,'I',2543,'I002543',2526,2,'0000-00-00','51309',0,0,'CAP','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 12:08:39','','0000-00-00 00:00:00'),(8673,0,0,'I',2543,'I002543',2526,3,'0000-00-00','51401',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-12-08 12:08:39','','0000-00-00 00:00:00'),(8674,0,0,'I',2542,'I002542',2526,4,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:08:40','','0000-00-00 00:00:00'),(8675,0,0,'I',2544,'I002544',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:13:10','','0000-00-00 00:00:00'),(8676,0,0,'I',2544,'I002544',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:13:10','','0000-00-00 00:00:00'),(8677,0,0,'I',2544,'I002544',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-08 12:13:10','','0000-00-00 00:00:00'),(8678,0,0,'I',2545,'I002545',2526,1,'0000-00-00','51481',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-08 12:13:43','','0000-00-00 00:00:00'),(8679,0,0,'I',2545,'I002545',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-08 12:13:43','','0000-00-00 00:00:00'),(8680,0,0,'I',2546,'I002546',2526,1,'0000-00-00','51321',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 12:20:43','','0000-00-00 00:00:00'),(8681,0,0,'I',2546,'I002546',2526,2,'0000-00-00','51379',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 12:20:43','','0000-00-00 00:00:00'),(8682,0,0,'I',2546,'I002546',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-08 12:20:43','','0000-00-00 00:00:00'),(8683,0,0,'I',2546,'I002546',2526,4,'0000-00-00','51253',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-08 12:20:43','','0000-00-00 00:00:00'),(8684,0,0,'I',2546,'I002546',2526,5,'0000-00-00','51380',0,0,'CAP','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 12:20:43','','0000-00-00 00:00:00'),(8685,0,0,'I',2547,'I002547',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:23:43','darshan','2025-12-08 12:24:09'),(8686,0,0,'I',2547,'I002547',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:23:43','darshan','2025-12-08 12:24:09'),(8688,0,0,'I',2547,'I002547',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:24:09','','0000-00-00 00:00:00'),(8689,0,0,'I',2548,'I002548',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:28:30','darshan','2025-12-08 12:29:03'),(8691,0,0,'I',2548,'I002548',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:28:30','darshan','2025-12-08 12:29:03'),(8692,0,0,'I',2548,'I002548',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-08 12:28:30','darshan','2025-12-08 12:29:03'),(8693,0,0,'I',2548,'I002548',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:29:03','','0000-00-00 00:00:00'),(8694,0,0,'I',2549,'I002549',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 12:30:15','drarchit','2025-12-08 12:30:31'),(8695,0,0,'I',2549,'I002549',2526,2,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 12:30:15','drarchit','2025-12-08 12:30:31'),(8696,0,0,'I',2549,'I002549',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-08 12:30:15','drarchit','2025-12-08 12:30:31'),(8697,0,0,'I',2549,'I002549',2526,4,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 12:30:15','drarchit','2025-12-08 12:30:31'),(8698,0,0,'I',2549,'I002549',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-08 12:30:15','drarchit','2025-12-08 12:30:31'),(8699,0,0,'I',2549,'I002549',2526,6,'0000-00-00','51262',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 12:30:31','','0000-00-00 00:00:00'),(8700,0,0,'I',2550,'I002550',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:33:46','','0000-00-00 00:00:00'),(8701,0,0,'I',2550,'I002550',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:33:46','','0000-00-00 00:00:00'),(8702,0,0,'I',2550,'I002550',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-08 12:33:46','','0000-00-00 00:00:00'),(8703,0,0,'I',2550,'I002550',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:33:46','','0000-00-00 00:00:00'),(8704,0,0,'I',2550,'I002550',2526,5,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:33:46','','0000-00-00 00:00:00'),(8705,0,0,'I',2551,'I002551',2526,1,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-08 12:33:54','drarchit','2025-12-08 12:35:43'),(8706,0,0,'I',2551,'I002551',2526,2,'0000-00-00','51545',0,0,'TAB','','','','',0,30,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 12:35:43','','0000-00-00 00:00:00'),(8707,0,0,'I',2551,'I002551',2526,3,'0000-00-00','51371',0,0,'TAB','','','','',0,15,0,0,0,0,'0.5-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 12:35:43','','0000-00-00 00:00:00'),(8708,0,0,'I',2551,'I002551',2526,4,'0000-00-00','51279',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 12:35:43','','0000-00-00 00:00:00'),(8709,0,0,'I',2551,'I002551',2526,5,'0000-00-00','51337',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 12:35:43','','0000-00-00 00:00:00'),(8710,0,0,'I',2551,'I002551',2526,6,'0000-00-00','51384',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 12:35:43','','0000-00-00 00:00:00'),(8711,0,0,'I',2552,'I002552',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:42:05','darshan','2025-12-08 14:05:12'),(8712,0,0,'I',2552,'I002552',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:42:22','darshan','2025-12-08 14:05:12'),(8713,0,0,'I',2552,'I002552',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-08 12:42:22','darshan','2025-12-08 14:05:12'),(8714,0,0,'I',2553,'I002553',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:45:54','','0000-00-00 00:00:00'),(8715,0,0,'I',2553,'I002553',2526,2,'0000-00-00','51418',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-.5-.5','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:45:54','','0000-00-00 00:00:00'),(8716,0,0,'I',2553,'I002553',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-08 12:45:54','','0000-00-00 00:00:00'),(8717,0,0,'I',2553,'I002553',2526,4,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-08 12:45:54','','0000-00-00 00:00:00'),(8718,0,0,'I',2554,'I002554',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:57:03','','0000-00-00 00:00:00'),(8719,0,0,'I',2554,'I002554',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:57:03','','0000-00-00 00:00:00'),(8720,0,0,'I',2554,'I002554',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 12:57:03','','0000-00-00 00:00:00'),(8721,0,0,'I',2554,'I002554',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-08 12:57:03','','0000-00-00 00:00:00'),(8722,0,0,'I',2555,'I002555',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:00:47','darshan','2025-12-08 13:01:14'),(8723,0,0,'I',2555,'I002555',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:00:47','darshan','2025-12-08 13:01:14'),(8724,0,0,'I',2555,'I002555',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:00:47','darshan','2025-12-08 13:01:14'),(8725,0,0,'I',2556,'I002556',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:04:27','darshan','2025-12-08 13:05:05'),(8726,0,0,'I',2556,'I002556',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:04:27','darshan','2025-12-08 13:05:05'),(8728,0,0,'I',2556,'I002556',2526,4,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:05:05','','0000-00-00 00:00:00'),(8729,0,0,'I',2557,'I002557',2526,1,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-08 13:05:11','','0000-00-00 00:00:00'),(8730,0,0,'I',2557,'I002557',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-08 13:05:11','','0000-00-00 00:00:00'),(8731,0,0,'I',2557,'I002557',2526,3,'0000-00-00','51324',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:05:11','','0000-00-00 00:00:00'),(8732,0,0,'I',2557,'I002557',2526,4,'0000-00-00','51273',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:05:11','','0000-00-00 00:00:00'),(8733,0,0,'I',2557,'I002557',2526,5,'0000-00-00','51272',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:05:11','','0000-00-00 00:00:00'),(8734,0,0,'I',2557,'I002557',2526,6,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:05:11','','0000-00-00 00:00:00'),(8735,0,0,'I',2557,'I002557',2526,7,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-08 13:05:11','','0000-00-00 00:00:00'),(8736,0,0,'I',2558,'I002558',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:08:33','darshan','2025-12-08 13:08:52'),(8737,0,0,'I',2559,'I002559',2526,1,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:08:35','drarchit','2025-12-08 13:09:05'),(8738,0,0,'I',2559,'I002559',2526,2,'0000-00-00','51480',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-08 13:08:35','drarchit','2025-12-08 13:09:05'),(8739,0,0,'I',2559,'I002559',2526,3,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-08 13:08:35','drarchit','2025-12-08 13:09:05'),(8742,0,0,'I',2559,'I002559',2526,4,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:08:35','drarchit','2025-12-08 13:09:05'),(8743,0,0,'I',2558,'I002558',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:08:44','darshan','2025-12-08 13:08:52'),(8744,0,0,'I',2558,'I002558',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-08 13:08:52','','0000-00-00 00:00:00'),(8746,0,0,'I',2559,'I002559',2526,5,'0000-00-00','51269',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:08:56','drarchit','2025-12-08 13:09:05'),(8747,0,0,'I',2559,'I002559',2526,6,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:09:05','','0000-00-00 00:00:00'),(8748,0,0,'I',2560,'I002560',2526,1,'0000-00-00','51239',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-08 13:11:00','drarchit','2025-12-08 13:11:04'),(8749,0,0,'I',2560,'I002560',2526,2,'0000-00-00','51491',0,0,'TAB','','','','',0,45,0,0,0,0,'1-1-1','','Dy',15,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-08 13:11:00','drarchit','2025-12-08 13:11:04'),(8750,0,0,'I',2560,'I002560',2526,3,'0000-00-00','51279',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:11:00','drarchit','2025-12-08 13:11:04'),(8751,0,0,'I',2561,'I002561',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-08 13:12:04','darshan','2025-12-08 13:12:48'),(8752,0,0,'I',2561,'I002561',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:12:04','darshan','2025-12-08 13:12:48'),(8753,0,0,'I',2561,'I002561',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:12:04','darshan','2025-12-08 13:12:48'),(8755,0,0,'I',2561,'I002561',2526,4,'0000-00-00','51183',0,0,'TAB','','','','',0,90,0,0,0,0,'.5-0-.5','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:12:15','darshan','2025-12-08 13:12:48'),(8756,0,0,'I',2562,'I002562',2526,1,'0000-00-00','51321',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:14:59','','0000-00-00 00:00:00'),(8757,0,0,'I',2562,'I002562',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:14:59','','0000-00-00 00:00:00'),(8758,0,0,'I',2562,'I002562',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-08 13:14:59','','0000-00-00 00:00:00'),(8759,0,0,'I',2562,'I002562',2526,4,'0000-00-00','51403',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:14:59','','0000-00-00 00:00:00'),(8760,0,0,'I',2562,'I002562',2526,5,'0000-00-00','51480',0,0,'TAB','','','','',0,9,0,0,0,0,'1-1-1','','Dy',3,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-08 13:14:59','','0000-00-00 00:00:00'),(8761,0,0,'I',2540,'I002540',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:22:44','','0000-00-00 00:00:00'),(8762,0,0,'I',2540,'I002540',2526,4,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:22:44','','0000-00-00 00:00:00'),(8763,0,0,'I',2563,'I002563',2526,1,'0000-00-00','51384',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:24:06','','0000-00-00 00:00:00'),(8764,0,0,'I',2563,'I002563',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-08 13:24:06','','0000-00-00 00:00:00'),(8765,0,0,'I',2563,'I002563',2526,3,'0000-00-00','51533',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:24:06','','0000-00-00 00:00:00'),(8766,0,0,'I',2563,'I002563',2526,4,'0000-00-00','51534',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:24:06','','0000-00-00 00:00:00'),(8767,0,0,'I',2563,'I002563',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:24:06','','0000-00-00 00:00:00'),(8768,0,0,'I',2563,'I002563',2526,6,'0000-00-00','51279',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:24:06','','0000-00-00 00:00:00'),(8769,0,0,'I',2564,'I002564',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:27:47','','0000-00-00 00:00:00'),(8770,0,0,'I',2564,'I002564',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-08 13:27:47','','0000-00-00 00:00:00'),(8771,0,0,'I',2564,'I002564',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:27:47','','0000-00-00 00:00:00'),(8772,0,0,'I',2564,'I002564',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:27:47','','0000-00-00 00:00:00'),(8773,0,0,'I',2564,'I002564',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-08 13:27:47','','0000-00-00 00:00:00'),(8774,0,0,'I',2565,'I002565',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:30:13','drarchit','2025-12-08 13:30:38'),(8775,0,0,'I',2565,'I002565',2526,2,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:30:13','drarchit','2025-12-08 13:30:38'),(8776,0,0,'I',2565,'I002565',2526,3,'0000-00-00','51374',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-08 13:30:13','drarchit','2025-12-08 13:30:38'),(8777,0,0,'I',2565,'I002565',2526,4,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-12-08 13:30:29','drarchit','2025-12-08 13:30:38'),(8778,0,0,'I',2565,'I002565',2526,5,'0000-00-00','51232',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:30:38','','0000-00-00 00:00:00'),(8779,0,0,'I',2566,'I002566',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:35:47','darshan','2025-12-08 13:36:06'),(8780,0,0,'I',2566,'I002566',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:35:47','darshan','2025-12-08 13:36:06'),(8781,0,0,'I',2566,'I002566',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-08 13:35:47','darshan','2025-12-08 13:36:06'),(8782,0,0,'I',2566,'I002566',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-08 13:36:06','','0000-00-00 00:00:00'),(8783,0,0,'I',2567,'I002567',2526,1,'0000-00-00','51230',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:43:27','','0000-00-00 00:00:00'),(8784,0,0,'I',2567,'I002567',2526,2,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:43:27','','0000-00-00 00:00:00'),(8785,0,0,'I',2567,'I002567',2526,3,'0000-00-00','51332',0,0,'CAP','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:43:27','','0000-00-00 00:00:00'),(8786,0,0,'I',2567,'I002567',2526,4,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-12-08 13:43:27','','0000-00-00 00:00:00'),(8787,0,0,'I',2567,'I002567',2526,5,'0000-00-00','51326',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 13:43:27','','0000-00-00 00:00:00'),(8788,0,0,'I',2567,'I002567',2526,6,'0000-00-00','51374',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-08 13:43:27','','0000-00-00 00:00:00'),(8789,0,0,'I',2568,'I002568',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:52:44','','0000-00-00 00:00:00'),(8790,0,0,'I',2568,'I002568',2526,2,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-08 13:52:44','','0000-00-00 00:00:00'),(8791,0,0,'I',2568,'I002568',2526,3,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:52:44','','0000-00-00 00:00:00'),(8793,0,0,'I',2569,'I002569',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:56:09','darshan','2025-12-08 13:56:17'),(8794,0,0,'I',2569,'I002569',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:56:09','darshan','2025-12-08 13:56:17'),(8795,0,0,'I',2569,'I002569',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-08 13:56:09','darshan','2025-12-08 13:56:17'),(8796,0,0,'I',2570,'I002570',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 13:59:21','','0000-00-00 00:00:00'),(8797,0,0,'I',2570,'I002570',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-08 13:59:21','','0000-00-00 00:00:00'),(8798,0,0,'I',2571,'I002571',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:03:23','','0000-00-00 00:00:00'),(8799,0,0,'I',2571,'I002571',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:03:23','','0000-00-00 00:00:00'),(8800,0,0,'I',2552,'I002552',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:05:12','','0000-00-00 00:00:00'),(8801,0,0,'I',2572,'I002572',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:07:09','','0000-00-00 00:00:00'),(8802,0,0,'I',2573,'I002573',2526,1,'0000-00-00','51289',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:10:05','','0000-00-00 00:00:00'),(8803,0,0,'I',2573,'I002573',2526,2,'0000-00-00','51333',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:10:05','','0000-00-00 00:00:00'),(8804,0,0,'I',2573,'I002573',2526,3,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-08 14:10:05','','0000-00-00 00:00:00'),(8805,0,0,'I',2573,'I002573',2526,4,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:10:05','','0000-00-00 00:00:00'),(8806,0,0,'I',2574,'I002574',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:14:07','','0000-00-00 00:00:00'),(8807,0,0,'I',2574,'I002574',2526,2,'0000-00-00','51334',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:14:07','','0000-00-00 00:00:00'),(8808,0,0,'I',2574,'I002574',2526,3,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:14:07','','0000-00-00 00:00:00'),(8809,0,0,'I',2574,'I002574',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-08 14:14:07','','0000-00-00 00:00:00'),(8810,0,0,'I',2575,'I002575',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:31:14','darshan','2025-12-08 14:31:25'),(8811,0,0,'I',2575,'I002575',2526,2,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-08 14:31:14','darshan','2025-12-08 14:31:25'),(8812,0,0,'I',2575,'I002575',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:31:14','darshan','2025-12-08 14:31:25'),(8813,0,0,'I',2576,'I002576',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:33:10','','0000-00-00 00:00:00'),(8814,0,0,'I',2576,'I002576',2526,2,'0000-00-00','51252',0,0,'SYRUP','','','','',0,1,0,0,0,0,'1-1-1','5ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:33:10','','0000-00-00 00:00:00'),(8815,0,0,'I',2576,'I002576',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-08 14:33:10','','0000-00-00 00:00:00'),(8817,0,0,'I',2577,'I002577',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:35:38','darshan','2025-12-08 14:35:55'),(8818,0,0,'I',2577,'I002577',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:35:55','','0000-00-00 00:00:00'),(8819,0,0,'I',2578,'I002578',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:49:33','','0000-00-00 00:00:00'),(8820,0,0,'I',2578,'I002578',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:49:33','','0000-00-00 00:00:00'),(8821,0,0,'I',2578,'I002578',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 14:49:33','','0000-00-00 00:00:00'),(8822,0,0,'I',2578,'I002578',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-08 14:49:33','','0000-00-00 00:00:00'),(8823,0,0,'I',2579,'I002579',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 15:04:15','darshan','2025-12-08 15:04:34'),(8824,0,0,'I',2579,'I002579',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 15:04:15','darshan','2025-12-08 15:04:34'),(8825,0,0,'I',2579,'I002579',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 15:04:15','darshan','2025-12-08 15:04:34'),(8826,0,0,'I',2579,'I002579',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-08 15:04:34','','0000-00-00 00:00:00'),(8827,0,0,'I',2580,'I002580',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 17:03:43','darshan','2025-12-08 17:04:24'),(8828,0,0,'I',2580,'I002580',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 17:03:43','darshan','2025-12-08 17:04:24'),(8829,0,0,'I',2580,'I002580',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 17:03:43','darshan','2025-12-08 17:04:24'),(8831,0,0,'I',2580,'I002580',2526,4,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 17:04:07','darshan','2025-12-08 17:04:24'),(8832,0,0,'I',2581,'I002581',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-08 17:07:39','darshan','2025-12-08 17:07:56'),(8833,0,0,'I',2581,'I002581',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 17:07:39','darshan','2025-12-08 17:07:56'),(8835,0,0,'I',2582,'I002582',2526,1,'0000-00-00','51322',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 17:49:57','','0000-00-00 00:00:00'),(8836,0,0,'I',2582,'I002582',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 17:49:57','','0000-00-00 00:00:00'),(8837,0,0,'I',2583,'I002583',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-08 17:54:14','','0000-00-00 00:00:00'),(8838,0,0,'I',2583,'I002583',2526,2,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 17:54:14','','0000-00-00 00:00:00'),(8839,0,0,'I',2583,'I002583',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-08 17:54:14','','0000-00-00 00:00:00'),(8840,0,0,'I',2583,'I002583',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 17:54:14','','0000-00-00 00:00:00'),(8841,0,0,'I',2583,'I002583',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-08 17:54:14','','0000-00-00 00:00:00'),(8842,0,0,'I',2583,'I002583',2526,6,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 17:54:14','','0000-00-00 00:00:00'),(8843,0,0,'I',2584,'I002584',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 17:57:50','','0000-00-00 00:00:00'),(8844,0,0,'I',2584,'I002584',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-08 17:57:50','','0000-00-00 00:00:00'),(8845,0,0,'I',2585,'I002585',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 18:04:42','','0000-00-00 00:00:00'),(8846,0,0,'I',2585,'I002585',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 18:04:42','','0000-00-00 00:00:00'),(8847,0,0,'I',2586,'I002586',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:09:26','drarchit','2025-12-08 18:10:57'),(8849,0,0,'I',2586,'I002586',2526,2,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:10:57','','0000-00-00 00:00:00'),(8850,0,0,'I',2586,'I002586',2526,3,'0000-00-00','51238',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-12-08 18:10:57','','0000-00-00 00:00:00'),(8851,0,0,'I',2587,'I002587',2526,1,'0000-00-00','51219',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-12-08 18:13:30','','0000-00-00 00:00:00'),(8852,0,0,'I',2587,'I002587',2526,2,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:13:30','','0000-00-00 00:00:00'),(8853,0,0,'I',2587,'I002587',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:13:30','','0000-00-00 00:00:00'),(8854,0,0,'I',2588,'I002588',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:17:04','','0000-00-00 00:00:00'),(8855,0,0,'I',2588,'I002588',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:17:04','','0000-00-00 00:00:00'),(8856,0,0,'I',2588,'I002588',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-08 18:17:04','','0000-00-00 00:00:00'),(8857,0,0,'I',2588,'I002588',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-08 18:17:04','','0000-00-00 00:00:00'),(8858,0,0,'I',2588,'I002588',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:17:04','','0000-00-00 00:00:00'),(8859,0,0,'I',2589,'I002589',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 18:19:10','','0000-00-00 00:00:00'),(8860,0,0,'I',2589,'I002589',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 18:19:10','','0000-00-00 00:00:00'),(8861,0,0,'I',2590,'I002590',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 18:28:06','','0000-00-00 00:00:00'),(8862,0,0,'I',2590,'I002590',2526,2,'0000-00-00','51418',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 18:28:06','','0000-00-00 00:00:00'),(8863,0,0,'I',2590,'I002590',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-08 18:28:06','','0000-00-00 00:00:00'),(8864,0,0,'I',2590,'I002590',2526,4,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-08 18:28:06','','0000-00-00 00:00:00'),(8865,0,0,'I',2591,'I002591',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 18:32:12','','0000-00-00 00:00:00'),(8866,0,0,'I',2591,'I002591',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 18:32:12','','0000-00-00 00:00:00'),(8867,0,0,'I',2592,'I002592',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:36:44','drarchit','2025-12-08 18:36:51'),(8868,0,0,'I',2592,'I002592',2526,2,'0000-00-00','51352',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:36:44','drarchit','2025-12-08 18:36:51'),(8869,0,0,'I',2592,'I002592',2526,3,'0000-00-00','51297',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:36:51','','0000-00-00 00:00:00'),(8870,0,0,'I',2593,'I002593',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 18:37:55','','0000-00-00 00:00:00'),(8871,0,0,'I',2593,'I002593',2526,2,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',100,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-08 18:37:55','','0000-00-00 00:00:00'),(8872,0,0,'I',2594,'I002594',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:41:46','','0000-00-00 00:00:00'),(8873,0,0,'I',2594,'I002594',2526,2,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:41:46','','0000-00-00 00:00:00'),(8874,0,0,'I',2594,'I002594',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-08 18:41:46','','0000-00-00 00:00:00'),(8875,0,0,'I',2595,'I002595',2526,1,'0000-00-00','51258',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:45:13','drarchit','2025-12-08 18:45:49'),(8876,0,0,'I',2595,'I002595',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-08 18:45:29','drarchit','2025-12-08 18:45:49'),(8877,0,0,'I',2595,'I002595',2526,3,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-08 18:45:49','','0000-00-00 00:00:00'),(8878,0,0,'I',2595,'I002595',2526,4,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:45:49','','0000-00-00 00:00:00'),(8879,0,0,'I',2596,'I002596',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 18:47:01','','0000-00-00 00:00:00'),(8880,0,0,'I',2596,'I002596',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 18:47:01','','0000-00-00 00:00:00'),(8881,0,0,'I',2597,'I002597',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:52:05','drarchit','2025-12-08 18:52:40'),(8882,0,0,'I',2597,'I002597',2526,2,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-08 18:52:40','','0000-00-00 00:00:00'),(8883,0,0,'I',2597,'I002597',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:52:40','','0000-00-00 00:00:00'),(8884,0,0,'I',2597,'I002597',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:52:40','','0000-00-00 00:00:00'),(8885,0,0,'I',2597,'I002597',2526,5,'0000-00-00','51469',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-08 18:52:40','','0000-00-00 00:00:00'),(8886,0,0,'I',2598,'I002598',2526,1,'0000-00-00','51334',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 18:53:19','','0000-00-00 00:00:00'),(8887,0,0,'I',2599,'I002599',2526,1,'0000-00-00','51334',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 18:57:29','darshan','2025-12-08 18:57:37'),(8888,0,0,'I',2599,'I002599',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 18:57:29','darshan','2025-12-08 18:57:37'),(8890,0,0,'I',2599,'I002599',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 18:57:37','','0000-00-00 00:00:00'),(8891,0,0,'I',2600,'I002600',2526,1,'0000-00-00','51382',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:59:43','','0000-00-00 00:00:00'),(8892,0,0,'I',2600,'I002600',2526,2,'0000-00-00','51517',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 18:59:43','','0000-00-00 00:00:00'),(8893,0,0,'I',2601,'I002601',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 19:07:01','darshan','2025-12-08 19:07:38'),(8894,0,0,'I',2601,'I002601',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 19:07:01','darshan','2025-12-08 19:07:38'),(8895,0,0,'I',2601,'I002601',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 19:07:01','darshan','2025-12-08 19:07:38'),(8896,0,0,'I',2601,'I002601',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-08 19:07:01','darshan','2025-12-08 19:07:38'),(8897,0,0,'I',2602,'I002602',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 19:19:32','','0000-00-00 00:00:00'),(8898,0,0,'I',2602,'I002602',2526,2,'0000-00-00','51403',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 19:19:32','','0000-00-00 00:00:00'),(8899,0,0,'I',2602,'I002602',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-08 19:19:32','','0000-00-00 00:00:00'),(8900,0,0,'I',2603,'I002603',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 19:26:05','','0000-00-00 00:00:00'),(8901,0,0,'I',2603,'I002603',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 19:26:05','','0000-00-00 00:00:00'),(8902,0,0,'I',2604,'I002604',2526,1,'0000-00-00','51585',0,0,'TAB','','','','',0,30,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 19:26:59','','0000-00-00 00:00:00'),(8903,0,0,'I',2604,'I002604',2526,2,'0000-00-00','51556',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 19:26:59','','0000-00-00 00:00:00'),(8904,0,0,'I',2604,'I002604',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-08 19:26:59','','0000-00-00 00:00:00'),(8905,0,0,'I',2604,'I002604',2526,4,'0000-00-00','51609',0,0,'SACHET','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 19:26:59','','0000-00-00 00:00:00'),(8906,0,0,'I',2605,'I002605',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 19:29:34','drarchit','2025-12-08 19:30:04'),(8908,0,0,'I',2605,'I002605',2526,2,'0000-00-00','51374',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-08 19:29:34','drarchit','2025-12-08 19:30:04'),(8909,0,0,'I',2605,'I002605',2526,3,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 19:29:34','drarchit','2025-12-08 19:30:04'),(8910,0,0,'I',2605,'I002605',2526,4,'0000-00-00','51232',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 19:29:54','drarchit','2025-12-08 19:30:04'),(8911,0,0,'I',2605,'I002605',2526,5,'0000-00-00','51269',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 19:30:04','','0000-00-00 00:00:00'),(8912,0,0,'I',2606,'I002606',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 19:31:40','','0000-00-00 00:00:00'),(8913,0,0,'I',2606,'I002606',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 19:31:40','','0000-00-00 00:00:00'),(8914,0,0,'I',2606,'I002606',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-08 19:31:40','','0000-00-00 00:00:00'),(8915,0,0,'I',2606,'I002606',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-08 19:31:40','','0000-00-00 00:00:00'),(8916,0,0,'I',2607,'I002607',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 19:41:01','darshan','2025-12-08 19:41:28'),(8917,0,0,'I',2607,'I002607',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 19:41:28','','0000-00-00 00:00:00'),(8918,0,0,'I',2608,'I002608',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 19:49:35','','0000-00-00 00:00:00'),(8919,0,0,'I',2608,'I002608',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 19:49:35','','0000-00-00 00:00:00'),(8920,0,0,'I',2608,'I002608',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 19:49:35','','0000-00-00 00:00:00'),(8921,0,0,'I',2608,'I002608',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-08 19:49:35','','0000-00-00 00:00:00'),(8922,0,0,'I',2609,'I002609',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 19:54:24','darshan','2025-12-08 19:54:34'),(8923,0,0,'I',2609,'I002609',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 19:54:24','darshan','2025-12-08 19:54:34'),(8924,0,0,'I',2609,'I002609',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 19:54:24','darshan','2025-12-08 19:54:34'),(8925,0,0,'I',2609,'I002609',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-08 19:54:34','','0000-00-00 00:00:00'),(8927,0,0,'I',2610,'I002610',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 20:02:05','darshan','2025-12-08 20:02:08'),(8928,0,0,'I',2611,'I002611',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 20:22:49','','0000-00-00 00:00:00'),(8929,0,0,'I',2611,'I002611',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-08 20:22:49','','0000-00-00 00:00:00'),(8930,0,0,'I',2611,'I002611',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 20:22:49','','0000-00-00 00:00:00'),(8931,0,0,'I',2611,'I002611',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 20:22:49','','0000-00-00 00:00:00'),(8932,0,0,'I',2611,'I002611',2526,5,'0000-00-00','51269',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 20:22:49','','0000-00-00 00:00:00'),(8933,0,0,'I',2611,'I002611',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-08 20:22:49','','0000-00-00 00:00:00'),(8934,0,0,'I',2612,'I002612',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 20:26:54','','0000-00-00 00:00:00'),(8935,0,0,'I',2612,'I002612',2526,2,'0000-00-00','51384',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 20:26:54','','0000-00-00 00:00:00'),(8936,0,0,'I',2612,'I002612',2526,3,'0000-00-00','51222',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 20:26:54','','0000-00-00 00:00:00'),(8937,0,0,'I',2612,'I002612',2526,4,'0000-00-00','51278',0,0,'CAP','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 20:26:54','','0000-00-00 00:00:00'),(8938,0,0,'I',2612,'I002612',2526,5,'0000-00-00','51240',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 20:26:54','','0000-00-00 00:00:00'),(8939,0,0,'I',2612,'I002612',2526,6,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 20:26:54','','0000-00-00 00:00:00'),(8940,0,0,'I',2612,'I002612',2526,7,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-08 20:26:54','','0000-00-00 00:00:00'),(8941,0,0,'I',2613,'I002613',2526,1,'0000-00-00','51334',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 20:30:43','darshan','2025-12-08 20:31:26'),(8942,0,0,'I',2613,'I002613',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 20:30:43','darshan','2025-12-08 20:31:26'),(8943,0,0,'I',2613,'I002613',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 20:30:43','darshan','2025-12-08 20:31:26'),(8944,0,0,'I',2613,'I002613',2526,4,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-08 20:31:26','','0000-00-00 00:00:00'),(8945,0,0,'I',2614,'I002614',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 10:49:31','','0000-00-00 00:00:00'),(8946,0,0,'I',2615,'I002615',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 10:59:34','darshan','2025-12-09 11:00:02'),(8947,0,0,'I',2615,'I002615',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 10:59:34','darshan','2025-12-09 11:00:02'),(8949,0,0,'I',2615,'I002615',2526,3,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 11:00:02','','0000-00-00 00:00:00'),(8950,0,0,'I',2615,'I002615',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-09 11:00:02','','0000-00-00 00:00:00'),(8951,0,0,'I',2616,'I002616',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-09 11:04:18','darshan','2025-12-09 11:06:14'),(8952,0,0,'I',2616,'I002616',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 11:04:18','darshan','2025-12-09 11:06:14'),(8953,0,0,'I',2616,'I002616',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 11:04:18','darshan','2025-12-09 11:06:14'),(8954,0,0,'I',2616,'I002616',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-09 11:04:18','darshan','2025-12-09 11:06:14'),(8955,0,0,'I',2616,'I002616',2526,5,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-09 11:04:18','darshan','2025-12-09 11:06:14'),(8956,0,0,'I',2617,'I002617',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 11:10:20','darshan','2025-12-09 11:11:49'),(8957,0,0,'I',2617,'I002617',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 11:11:25','darshan','2025-12-09 11:11:49'),(8958,0,0,'I',2617,'I002617',2526,3,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-09 11:11:25','darshan','2025-12-09 11:11:49'),(8959,0,0,'I',2617,'I002617',2526,4,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-09 11:11:25','darshan','2025-12-09 11:11:49'),(8960,0,0,'I',2617,'I002617',2526,5,'0000-00-00','51322',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 11:11:25','darshan','2025-12-09 11:11:49'),(8961,0,0,'I',2617,'I002617',2526,6,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-09 11:11:25','darshan','2025-12-09 11:11:49'),(8962,0,0,'I',2617,'I002617',2526,7,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-09 11:11:49','','0000-00-00 00:00:00'),(8963,0,0,'I',2618,'I002618',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 11:21:52','darshan','2025-12-09 11:22:21'),(8964,0,0,'I',2618,'I002618',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 11:21:52','darshan','2025-12-09 11:22:21'),(8965,0,0,'I',2618,'I002618',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-09 11:22:21','','0000-00-00 00:00:00'),(8966,0,0,'I',2619,'I002619',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-09 11:25:25','darshan','2025-12-09 11:25:47'),(8967,0,0,'I',2619,'I002619',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 11:25:25','darshan','2025-12-09 11:25:47'),(8968,0,0,'I',2619,'I002619',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-09 11:25:47','','0000-00-00 00:00:00'),(8969,0,0,'I',2620,'I002620',2526,1,'0000-00-00','51518',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 11:33:50','drarchit','2025-12-09 11:35:44'),(8970,0,0,'I',2620,'I002620',2526,2,'0000-00-00','51556',0,0,'TAB','','','','',0,45,0,0,0,0,'1-1-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 11:35:22','drarchit','2025-12-09 11:35:44'),(8971,0,0,'I',2620,'I002620',2526,3,'0000-00-00','51362',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-09 11:35:22','drarchit','2025-12-09 11:35:44'),(8972,0,0,'I',2620,'I002620',2526,4,'0000-00-00','51372',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 11:35:44','','0000-00-00 00:00:00'),(8973,0,0,'I',2621,'I002621',2526,1,'0000-00-00','51329',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-09 11:39:31','drarchit','2025-12-09 11:41:03'),(8974,0,0,'I',2621,'I002621',2526,2,'0000-00-00','51610',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-09 11:41:03','','0000-00-00 00:00:00'),(8975,0,0,'I',2621,'I002621',2526,3,'0000-00-00','51505',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-09 11:41:03','','0000-00-00 00:00:00'),(8976,0,0,'I',2621,'I002621',2526,4,'0000-00-00','51490',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-09 11:41:03','','0000-00-00 00:00:00'),(8977,0,0,'I',2621,'I002621',2526,5,'0000-00-00','51544',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-09 11:41:03','','0000-00-00 00:00:00'),(8978,0,0,'I',2621,'I002621',2526,6,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 11:41:03','','0000-00-00 00:00:00'),(8979,0,0,'I',2621,'I002621',2526,7,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-09 11:41:03','','0000-00-00 00:00:00'),(8980,0,0,'I',2622,'I002622',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 11:52:37','','0000-00-00 00:00:00'),(8981,0,0,'I',2622,'I002622',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 11:52:37','','0000-00-00 00:00:00'),(8982,0,0,'I',2622,'I002622',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-09 11:52:37','','0000-00-00 00:00:00'),(8983,0,0,'I',2622,'I002622',2526,4,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 11:52:37','','0000-00-00 00:00:00'),(8984,0,0,'I',2623,'I002623',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-09 12:05:01','drarchit','2025-12-09 12:08:10'),(8985,0,0,'I',2623,'I002623',2526,2,'0000-00-00','51343',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-09 12:05:01','drarchit','2025-12-09 12:08:10'),(8986,0,0,'I',2623,'I002623',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 12:05:01','drarchit','2025-12-09 12:08:10'),(8987,0,0,'I',2623,'I002623',2526,4,'0000-00-00','51222',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 12:05:01','drarchit','2025-12-09 12:08:10'),(8988,0,0,'I',2624,'I002624',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 12:08:13','','0000-00-00 00:00:00'),(8989,0,0,'I',2624,'I002624',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 12:08:13','','0000-00-00 00:00:00'),(8990,0,0,'I',2624,'I002624',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 12:08:13','','0000-00-00 00:00:00'),(8991,0,0,'I',2624,'I002624',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-09 12:08:13','','0000-00-00 00:00:00'),(8992,0,0,'I',2627,'I002627',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 12:25:42','','0000-00-00 00:00:00'),(8993,0,0,'I',2627,'I002627',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-09 12:25:42','','0000-00-00 00:00:00'),(8994,0,0,'I',2627,'I002627',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 12:25:42','','0000-00-00 00:00:00'),(8995,0,0,'I',2627,'I002627',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 12:25:42','','0000-00-00 00:00:00'),(8996,0,0,'I',2627,'I002627',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-09 12:25:42','','0000-00-00 00:00:00'),(8997,0,0,'I',2627,'I002627',2526,6,'0000-00-00','51297',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 12:25:42','','0000-00-00 00:00:00'),(8998,0,0,'I',2628,'I002628',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 12:27:40','','0000-00-00 00:00:00'),(8999,0,0,'I',2629,'I002629',2526,1,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 12:35:19','','0000-00-00 00:00:00'),(9000,0,0,'I',2629,'I002629',2526,2,'0000-00-00','51322',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 12:35:19','','0000-00-00 00:00:00'),(9001,0,0,'I',2629,'I002629',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-09 12:35:19','','0000-00-00 00:00:00'),(9002,0,0,'I',2630,'I002630',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 12:37:53','','0000-00-00 00:00:00'),(9003,0,0,'I',2630,'I002630',2526,2,'0000-00-00','51334',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 12:37:53','','0000-00-00 00:00:00'),(9004,0,0,'I',2631,'I002631',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 12:40:13','','0000-00-00 00:00:00'),(9005,0,0,'I',2631,'I002631',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 12:40:13','','0000-00-00 00:00:00'),(9006,0,0,'I',2632,'I002632',2526,1,'0000-00-00','51549',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 12:46:45','drarchit','2025-12-09 12:47:22'),(9007,0,0,'I',2632,'I002632',2526,2,'0000-00-00','51231',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 12:46:45','drarchit','2025-12-09 12:47:22'),(9008,0,0,'I',2632,'I002632',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-09 12:46:45','drarchit','2025-12-09 12:47:22'),(9009,0,0,'I',2632,'I002632',2526,4,'0000-00-00','51482',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-09 12:46:45','drarchit','2025-12-09 12:47:22'),(9010,0,0,'I',2632,'I002632',2526,5,'0000-00-00','51384',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 12:47:22','','0000-00-00 00:00:00'),(9011,0,0,'I',2633,'I002633',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 12:58:29','darshan','2025-12-09 12:58:40'),(9012,0,0,'I',2633,'I002633',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 12:58:29','darshan','2025-12-09 12:58:40'),(9013,0,0,'I',2634,'I002634',2526,1,'0000-00-00','51545',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 13:01:48','','0000-00-00 00:00:00'),(9014,0,0,'I',2634,'I002634',2526,2,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 13:01:48','','0000-00-00 00:00:00'),(9015,0,0,'I',2634,'I002634',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 13:01:48','','0000-00-00 00:00:00'),(9016,0,0,'I',2634,'I002634',2526,4,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 13:01:48','','0000-00-00 00:00:00'),(9017,0,0,'I',2634,'I002634',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-09 13:01:48','','0000-00-00 00:00:00'),(9018,0,0,'I',2635,'I002635',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:05:17','','0000-00-00 00:00:00'),(9019,0,0,'I',2635,'I002635',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:05:17','','0000-00-00 00:00:00'),(9022,0,0,'I',2636,'I002636',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:16:34','darshan','2025-12-09 13:17:30'),(9023,0,0,'I',2636,'I002636',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:16:34','darshan','2025-12-09 13:17:30'),(9024,0,0,'I',2636,'I002636',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:16:34','darshan','2025-12-09 13:17:30'),(9026,0,0,'I',2636,'I002636',2526,4,'0000-00-00','51294',0,0,'TAB','','','','',0,5,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-09 13:17:30','','0000-00-00 00:00:00'),(9027,0,0,'I',2637,'I002637',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:19:34','','0000-00-00 00:00:00'),(9028,0,0,'I',2638,'I002638',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:22:30','','0000-00-00 00:00:00'),(9029,0,0,'I',2638,'I002638',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:22:30','','0000-00-00 00:00:00'),(9030,0,0,'I',2639,'I002639',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:26:25','','0000-00-00 00:00:00'),(9031,0,0,'I',2639,'I002639',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:26:25','','0000-00-00 00:00:00'),(9032,0,0,'I',2640,'I002640',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-09 13:29:52','','0000-00-00 00:00:00'),(9033,0,0,'I',2640,'I002640',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:29:52','','0000-00-00 00:00:00'),(9034,0,0,'I',2640,'I002640',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:29:52','','0000-00-00 00:00:00'),(9035,0,0,'I',2641,'I002641',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:35:17','','0000-00-00 00:00:00'),(9036,0,0,'I',2641,'I002641',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:35:17','','0000-00-00 00:00:00'),(9037,0,0,'I',2641,'I002641',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:35:17','','0000-00-00 00:00:00'),(9038,0,0,'I',2641,'I002641',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-09 13:35:17','','0000-00-00 00:00:00'),(9039,0,0,'I',2642,'I002642',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:52:36','darshan','2025-12-09 13:52:48'),(9040,0,0,'I',2642,'I002642',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:52:36','darshan','2025-12-09 13:52:48'),(9041,0,0,'I',2642,'I002642',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:52:36','darshan','2025-12-09 13:52:48'),(9042,0,0,'I',2642,'I002642',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-09 13:52:36','darshan','2025-12-09 13:52:48'),(9043,0,0,'I',2643,'I002643',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:58:31','','0000-00-00 00:00:00'),(9044,0,0,'I',2643,'I002643',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:58:31','','0000-00-00 00:00:00'),(9045,0,0,'I',2643,'I002643',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 13:58:31','','0000-00-00 00:00:00'),(9046,0,0,'I',2643,'I002643',2526,4,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-09 13:58:31','','0000-00-00 00:00:00'),(9047,0,0,'I',2643,'I002643',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-09 13:58:31','','0000-00-00 00:00:00'),(9048,0,0,'I',2644,'I002644',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 14:02:42','darshan','2025-12-09 14:02:47'),(9049,0,0,'I',2644,'I002644',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 14:02:42','darshan','2025-12-09 14:02:47'),(9050,0,0,'I',2644,'I002644',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-09 14:02:42','darshan','2025-12-09 14:02:47'),(9051,0,0,'I',2645,'I002645',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 14:10:10','darshan','2025-12-09 14:39:07'),(9052,0,0,'I',2646,'I002646',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 14:16:23','','0000-00-00 00:00:00'),(9053,0,0,'I',2646,'I002646',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 14:16:23','','0000-00-00 00:00:00'),(9054,0,0,'I',2647,'I002647',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 14:24:19','','0000-00-00 00:00:00'),(9055,0,0,'I',2647,'I002647',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 14:24:19','','0000-00-00 00:00:00'),(9056,0,0,'I',2647,'I002647',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-09 14:24:19','','0000-00-00 00:00:00'),(9057,0,0,'I',2648,'I002648',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 14:33:03','','0000-00-00 00:00:00'),(9058,0,0,'I',2648,'I002648',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 14:33:03','','0000-00-00 00:00:00'),(9059,0,0,'I',2648,'I002648',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-09 14:33:03','','0000-00-00 00:00:00'),(9060,0,0,'I',2649,'I002649',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:02:53','darshan','2025-12-09 17:03:48'),(9061,0,0,'I',2649,'I002649',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:02:53','darshan','2025-12-09 17:03:48'),(9064,0,0,'I',2649,'I002649',2526,3,'0000-00-00','51440',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:03:18','darshan','2025-12-09 17:03:48'),(9065,0,0,'I',2649,'I002649',2526,4,'0000-00-00','51449',0,0,'OINT','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'397','','P',NULL,NULL,'darshan','2025-12-09 17:03:48','','0000-00-00 00:00:00'),(9066,0,0,'I',2650,'I002650',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:08:43','','0000-00-00 00:00:00'),(9067,0,0,'I',2650,'I002650',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:08:43','','0000-00-00 00:00:00'),(9068,0,0,'I',2650,'I002650',2526,3,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-09 17:08:43','','0000-00-00 00:00:00'),(9069,0,0,'I',2651,'I002651',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:22:21','','0000-00-00 00:00:00'),(9070,0,0,'I',2651,'I002651',2526,2,'0000-00-00','51189',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:22:21','','0000-00-00 00:00:00'),(9071,0,0,'I',2651,'I002651',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:22:21','','0000-00-00 00:00:00'),(9072,0,0,'I',2651,'I002651',2526,4,'0000-00-00','51287',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-09 17:22:21','','0000-00-00 00:00:00'),(9073,0,0,'I',2652,'I002652',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:26:44','darshan','2025-12-09 17:27:12'),(9074,0,0,'I',2652,'I002652',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:26:44','darshan','2025-12-09 17:27:12'),(9075,0,0,'I',2652,'I002652',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-09 17:27:12','','0000-00-00 00:00:00'),(9076,0,0,'I',2653,'I002653',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:32:14','','0000-00-00 00:00:00'),(9077,0,0,'I',2653,'I002653',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:32:14','','0000-00-00 00:00:00'),(9078,0,0,'I',2653,'I002653',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:32:14','','0000-00-00 00:00:00'),(9079,0,0,'I',2653,'I002653',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-09 17:32:14','','0000-00-00 00:00:00'),(9080,0,0,'I',2654,'I002654',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:35:45','darshan','2025-12-09 17:36:17'),(9081,0,0,'I',2654,'I002654',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-09 17:35:45','darshan','2025-12-09 17:36:17'),(9082,0,0,'I',2654,'I002654',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:35:45','darshan','2025-12-09 17:36:17'),(9084,0,0,'I',2655,'I002655',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:42:45','','0000-00-00 00:00:00'),(9085,0,0,'I',2655,'I002655',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:42:45','','0000-00-00 00:00:00'),(9086,0,0,'I',2655,'I002655',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:42:45','','0000-00-00 00:00:00'),(9087,0,0,'I',2655,'I002655',2526,4,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:42:45','','0000-00-00 00:00:00'),(9089,0,0,'I',2656,'I002656',2526,1,'0000-00-00','51322',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:48:48','darshan','2025-12-09 17:49:42'),(9091,0,0,'I',2656,'I002656',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:48:48','darshan','2025-12-09 17:49:42'),(9092,0,0,'I',2656,'I002656',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:48:48','darshan','2025-12-09 17:49:42'),(9093,0,0,'I',2657,'I002657',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 17:55:34','','0000-00-00 00:00:00'),(9095,0,0,'I',2658,'I002658',2526,2,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 18:06:13','darshan','2025-12-09 18:06:52'),(9096,0,0,'I',2658,'I002658',2526,3,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 18:06:13','darshan','2025-12-09 18:06:52'),(9097,0,0,'I',2658,'I002658',2526,4,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 18:06:13','darshan','2025-12-09 18:06:52'),(9098,0,0,'I',2658,'I002658',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-09 18:06:13','darshan','2025-12-09 18:06:52'),(9099,0,0,'I',2659,'I002659',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 18:12:43','','0000-00-00 00:00:00'),(9100,0,0,'I',2659,'I002659',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-09 18:12:43','','0000-00-00 00:00:00'),(9101,0,0,'I',2660,'I002660',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 18:13:24','','0000-00-00 00:00:00'),(9102,0,0,'I',2660,'I002660',2526,2,'0000-00-00','51269',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 18:13:24','','0000-00-00 00:00:00'),(9103,0,0,'I',2660,'I002660',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-09 18:13:24','','0000-00-00 00:00:00'),(9104,0,0,'I',2660,'I002660',2526,4,'0000-00-00','51249',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 18:13:24','','0000-00-00 00:00:00'),(9105,0,0,'I',2660,'I002660',2526,5,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 18:13:24','','0000-00-00 00:00:00'),(9107,0,0,'I',2661,'I002661',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 18:15:05','darshan','2025-12-09 18:16:24'),(9109,0,0,'I',2662,'I002662',2526,1,'0000-00-00','51468',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-09 18:15:09','','0000-00-00 00:00:00'),(9110,0,0,'I',2662,'I002662',2526,2,'0000-00-00','51248',0,0,'CAP','','','','',0,12,0,0,0,0,'1-0-0','','Wk',12,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 18:15:09','','0000-00-00 00:00:00'),(9111,0,0,'I',2662,'I002662',2526,3,'0000-00-00','51297',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 18:15:09','','0000-00-00 00:00:00'),(9112,0,0,'I',2662,'I002662',2526,4,'0000-00-00','51279',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 18:15:09','','0000-00-00 00:00:00'),(9113,0,0,'I',2661,'I002661',2526,2,'0000-00-00','51333',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 18:16:24','','0000-00-00 00:00:00'),(9114,0,0,'I',2661,'I002661',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-09 18:16:24','','0000-00-00 00:00:00'),(9115,0,0,'I',2663,'I002663',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 18:19:28','drarchit','2025-12-09 18:21:25'),(9116,0,0,'I',2663,'I002663',2526,2,'0000-00-00','51269',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 18:19:28','drarchit','2025-12-09 18:21:25'),(9117,0,0,'I',2664,'I002664',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 18:21:02','darshan','2025-12-09 18:21:44'),(9118,0,0,'I',2664,'I002664',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 18:21:02','darshan','2025-12-09 18:21:44'),(9119,0,0,'I',2664,'I002664',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 18:21:02','darshan','2025-12-09 18:21:44'),(9120,0,0,'I',2663,'I002663',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 18:21:04','drarchit','2025-12-09 18:21:25'),(9121,0,0,'I',2663,'I002663',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 18:21:04','drarchit','2025-12-09 18:21:25'),(9122,0,0,'I',2663,'I002663',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-09 18:21:04','drarchit','2025-12-09 18:21:25'),(9123,0,0,'I',2663,'I002663',2526,6,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-09 18:21:25','','0000-00-00 00:00:00'),(9124,0,0,'I',2664,'I002664',2526,4,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 18:21:30','darshan','2025-12-09 18:21:44'),(9125,0,0,'I',2664,'I002664',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-09 18:21:44','','0000-00-00 00:00:00'),(9126,0,0,'I',2665,'I002665',2526,1,'0000-00-00','51487',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-09 18:27:08','drarchit','2025-12-09 18:28:18'),(9127,0,0,'I',2665,'I002665',2526,2,'0000-00-00','51239',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-09 18:27:08','drarchit','2025-12-09 18:28:18'),(9128,0,0,'I',2665,'I002665',2526,3,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 18:27:08','drarchit','2025-12-09 18:28:18'),(9129,0,0,'I',2665,'I002665',2526,4,'0000-00-00','51471',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-12-09 18:28:10','drarchit','2025-12-09 18:28:18'),(9130,0,0,'I',2665,'I002665',2526,5,'0000-00-00','51297',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 18:28:10','drarchit','2025-12-09 18:28:18'),(9131,0,0,'I',2665,'I002665',2526,6,'0000-00-00','51370',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-09 18:28:18','','0000-00-00 00:00:00'),(9132,0,0,'I',2666,'I002666',2526,1,'0000-00-00','51430',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-09 18:34:39','','0000-00-00 00:00:00'),(9133,0,0,'I',2666,'I002666',2526,2,'0000-00-00','51409',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-09 18:34:39','','0000-00-00 00:00:00'),(9134,0,0,'I',2667,'I002667',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 18:52:10','drarchit','2025-12-09 18:53:25'),(9135,0,0,'I',2668,'I002668',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 18:52:46','','0000-00-00 00:00:00'),(9136,0,0,'I',2668,'I002668',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 18:52:46','','0000-00-00 00:00:00'),(9137,0,0,'I',2668,'I002668',2526,3,'0000-00-00','51252',0,0,'SYRUP','','','','',0,1,0,0,0,0,'0-0-0','5ml','Dy',20,0,0,0,0,0,0,0,0,0,'156','','P',NULL,NULL,'darshan','2025-12-09 18:52:46','','0000-00-00 00:00:00'),(9138,0,0,'I',2667,'I002667',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 18:52:48','drarchit','2025-12-09 18:53:25'),(9139,0,0,'I',2667,'I002667',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 18:53:17','drarchit','2025-12-09 18:53:25'),(9140,0,0,'I',2667,'I002667',2526,4,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 18:53:17','drarchit','2025-12-09 18:53:25'),(9141,0,0,'I',2667,'I002667',2526,5,'0000-00-00','51292',0,0,'TAB','','','','',0,9,0,0,0,0,'1-1-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 18:53:25','','0000-00-00 00:00:00'),(9142,0,0,'I',2669,'I002669',2526,1,'0000-00-00','51276',0,0,'CAP','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:03:32','darshan','2025-12-09 19:04:10'),(9145,0,0,'I',2671,'I002671',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:11:14','darshan','2025-12-09 19:11:33'),(9146,0,0,'I',2671,'I002671',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:11:14','darshan','2025-12-09 19:11:33'),(9147,0,0,'I',2671,'I002671',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:11:14','darshan','2025-12-09 19:11:33'),(9148,0,0,'I',2671,'I002671',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-09 19:11:14','darshan','2025-12-09 19:11:33'),(9149,0,0,'I',2671,'I002671',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-09 19:11:33','','0000-00-00 00:00:00'),(9150,0,0,'I',2672,'I002672',2526,1,'0000-00-00','51566',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 19:11:43','drarchit','2025-12-09 19:12:55'),(9151,0,0,'I',2672,'I002672',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-09 19:11:43','drarchit','2025-12-09 19:12:55'),(9152,0,0,'I',2672,'I002672',2526,3,'0000-00-00','51517',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 19:11:43','drarchit','2025-12-09 19:12:55'),(9153,0,0,'I',2672,'I002672',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 19:11:43','drarchit','2025-12-09 19:12:55'),(9154,0,0,'I',2672,'I002672',2526,5,'0000-00-00','51324',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 19:11:43','drarchit','2025-12-09 19:12:55'),(9155,0,0,'I',2672,'I002672',2526,6,'0000-00-00','51611',0,0,'OINT','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'drarchit','2025-12-09 19:12:55','','0000-00-00 00:00:00'),(9156,0,0,'I',2674,'I002674',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:15:29','darshan','2025-12-09 19:15:38'),(9157,0,0,'I',2674,'I002674',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:15:29','darshan','2025-12-09 19:15:38'),(9158,0,0,'I',2674,'I002674',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:15:29','darshan','2025-12-09 19:15:38'),(9159,0,0,'I',2674,'I002674',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-09 19:15:38','','0000-00-00 00:00:00'),(9160,0,0,'I',2675,'I002675',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-09 19:20:31','darshan','2025-12-09 19:21:23'),(9161,0,0,'I',2675,'I002675',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:20:31','darshan','2025-12-09 19:21:23'),(9163,0,0,'I',2675,'I002675',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:20:31','darshan','2025-12-09 19:21:23'),(9164,0,0,'I',2676,'I002676',2526,1,'0000-00-00','51296',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-09 19:23:19','drjayant','2025-12-09 19:26:50'),(9165,0,0,'I',2676,'I002676',2526,2,'0000-00-00','51409',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-09 19:23:19','drjayant','2025-12-09 19:26:50'),(9166,0,0,'I',2676,'I002676',2526,3,'0000-00-00','51443',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-09 19:23:19','drjayant','2025-12-09 19:26:50'),(9167,0,0,'I',2676,'I002676',2526,4,'0000-00-00','51422',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-09 19:23:19','drjayant','2025-12-09 19:26:50'),(9168,0,0,'I',2676,'I002676',2526,5,'0000-00-00','51508',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-09 19:24:27','drjayant','2025-12-09 19:26:50'),(9169,0,0,'I',2677,'I002677',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:26:08','darshan','2025-12-09 19:26:35'),(9170,0,0,'I',2677,'I002677',2526,2,'0000-00-00','51189',0,0,'TAB','','','','',0,45,0,0,0,0,'0-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:26:08','darshan','2025-12-09 19:26:35'),(9171,0,0,'I',2676,'I002676',2526,6,'0000-00-00','51247',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-09 19:26:50','','0000-00-00 00:00:00'),(9172,0,0,'I',2676,'I002676',2526,7,'0000-00-00','51453',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-09 19:26:50','','0000-00-00 00:00:00'),(9173,0,0,'I',2678,'I002678',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 19:30:25','','0000-00-00 00:00:00'),(9174,0,0,'I',2678,'I002678',2526,2,'0000-00-00','51329',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-09 19:30:25','','0000-00-00 00:00:00'),(9175,0,0,'I',2678,'I002678',2526,3,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-09 19:30:25','','0000-00-00 00:00:00'),(9176,0,0,'I',2678,'I002678',2526,4,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-09 19:30:25','','0000-00-00 00:00:00'),(9177,0,0,'I',2679,'I002679',2526,3,'0000-00-00','51571',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 19:32:28','drarchit','2025-12-09 19:33:44'),(9178,0,0,'I',2680,'I002680',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:32:30','darshan','2025-12-09 19:32:42'),(9179,0,0,'I',2680,'I002680',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:32:30','darshan','2025-12-09 19:32:42'),(9180,0,0,'I',2680,'I002680',2526,3,'0000-00-00','51245',0,0,'DROP','','','','',0,2,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-09 19:32:30','darshan','2025-12-09 19:32:42'),(9181,0,0,'I',2680,'I002680',2526,4,'0000-00-00','51322',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:32:30','darshan','2025-12-09 19:32:42'),(9182,0,0,'I',2680,'I002680',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-09 19:32:42','','0000-00-00 00:00:00'),(9183,0,0,'I',2679,'I002679',2526,1,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-09 19:33:10','drarchit','2025-12-09 19:33:44'),(9184,0,0,'I',2679,'I002679',2526,2,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 19:33:10','drarchit','2025-12-09 19:33:44'),(9186,0,0,'I',2679,'I002679',2526,4,'0000-00-00','51436',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 19:33:10','drarchit','2025-12-09 19:33:44'),(9187,0,0,'I',2679,'I002679',2526,5,'0000-00-00','51332',0,0,'CAP','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 19:33:44','','0000-00-00 00:00:00'),(9188,0,0,'I',2682,'I002682',2526,1,'0000-00-00','51309',0,0,'CAP','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 19:36:54','','0000-00-00 00:00:00'),(9189,0,0,'I',2682,'I002682',2526,2,'0000-00-00','51545',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 19:36:54','','0000-00-00 00:00:00'),(9191,0,0,'I',2683,'I002683',2526,1,'0000-00-00','51214',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-09 19:41:40','drarchit','2025-12-09 19:42:55'),(9192,0,0,'I',2683,'I002683',2526,2,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-09 19:42:36','drarchit','2025-12-09 19:42:55'),(9194,0,0,'I',2683,'I002683',2526,3,'0000-00-00','51583',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-09 19:42:55','','0000-00-00 00:00:00'),(9195,0,0,'I',2684,'I002684',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:43:46','','0000-00-00 00:00:00'),(9196,0,0,'I',2684,'I002684',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:43:46','','0000-00-00 00:00:00'),(9197,0,0,'I',2685,'I002685',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:48:37','','0000-00-00 00:00:00'),(9198,0,0,'I',2685,'I002685',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:48:37','','0000-00-00 00:00:00'),(9199,0,0,'I',2685,'I002685',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:48:37','','0000-00-00 00:00:00'),(9200,0,0,'I',2686,'I002686',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:52:18','','0000-00-00 00:00:00'),(9201,0,0,'I',2686,'I002686',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:52:18','','0000-00-00 00:00:00'),(9202,0,0,'I',2687,'I002687',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:55:52','darshan','2025-12-15 20:40:04'),(9203,0,0,'I',2687,'I002687',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:55:52','darshan','2025-12-15 20:40:04'),(9204,0,0,'I',2687,'I002687',2526,3,'0000-00-00','51275',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'darshan','2025-12-09 19:56:33','darshan','2025-12-15 20:40:04'),(9205,0,0,'I',2687,'I002687',2526,4,'0000-00-00','51322',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 19:56:33','darshan','2025-12-15 20:40:04'),(9206,0,0,'I',2687,'I002687',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-09 19:56:33','darshan','2025-12-15 20:40:04'),(9207,0,0,'I',2688,'I002688',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 20:15:00','','0000-00-00 00:00:00'),(9208,0,0,'I',2688,'I002688',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 20:15:00','','0000-00-00 00:00:00'),(9209,0,0,'I',2688,'I002688',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 20:15:00','','0000-00-00 00:00:00'),(9210,0,0,'I',2688,'I002688',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-09 20:15:00','','0000-00-00 00:00:00'),(9211,0,0,'I',2689,'I002689',2526,1,'0000-00-00','51276',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 20:19:39','','0000-00-00 00:00:00'),(9212,0,0,'I',2689,'I002689',2526,2,'0000-00-00','51277',0,0,'OINT','','','','',0,1,0,0,0,0,'1-1-1','','Dy',20,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'darshan','2025-12-09 20:19:39','','0000-00-00 00:00:00'),(9213,0,0,'I',2689,'I002689',2526,3,'0000-00-00','51265',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 20:19:39','','0000-00-00 00:00:00'),(9214,0,0,'I',2690,'I002690',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 20:27:15','','0000-00-00 00:00:00'),(9215,0,0,'I',2690,'I002690',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-09 20:27:15','','0000-00-00 00:00:00'),(9216,0,0,'I',2691,'I002691',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-10 10:54:18','','0000-00-00 00:00:00'),(9217,0,0,'I',2691,'I002691',2526,2,'0000-00-00','51211',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 10:54:18','','0000-00-00 00:00:00'),(9218,0,0,'I',2692,'I002692',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 10:58:28','darshan','2025-12-10 10:58:48'),(9219,0,0,'I',2692,'I002692',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 10:58:28','darshan','2025-12-10 10:58:48'),(9220,0,0,'I',2693,'I002693',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 11:04:05','','0000-00-00 00:00:00'),(9221,0,0,'I',2693,'I002693',2526,2,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-10 11:04:05','','0000-00-00 00:00:00'),(9222,0,0,'I',2693,'I002693',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 11:04:05','','0000-00-00 00:00:00'),(9223,0,0,'I',2694,'I002694',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 11:07:16','darshan','2025-12-10 11:08:31'),(9224,0,0,'I',2694,'I002694',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 11:07:16','darshan','2025-12-10 11:08:31'),(9225,0,0,'I',2694,'I002694',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 11:07:59','darshan','2025-12-10 11:08:31'),(9226,0,0,'I',2694,'I002694',2526,4,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-10 11:08:31','','0000-00-00 00:00:00'),(9228,0,0,'I',2695,'I002695',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 11:15:05','darshan','2025-12-10 11:15:19'),(9230,0,0,'I',2696,'I002696',2526,1,'0000-00-00','51244',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 11:17:28','','0000-00-00 00:00:00'),(9231,0,0,'I',2696,'I002696',2526,2,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 11:17:28','','0000-00-00 00:00:00'),(9232,0,0,'I',2696,'I002696',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 11:17:28','','0000-00-00 00:00:00'),(9233,0,0,'I',2696,'I002696',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 11:17:28','','0000-00-00 00:00:00'),(9234,0,0,'I',2696,'I002696',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-10 11:17:28','','0000-00-00 00:00:00'),(9235,0,0,'I',2696,'I002696',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-10 11:17:28','','0000-00-00 00:00:00'),(9236,0,0,'I',2697,'I002697',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 11:17:30','darshan','2025-12-10 11:17:58'),(9237,0,0,'I',2697,'I002697',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 11:17:30','darshan','2025-12-10 11:17:58'),(9238,0,0,'I',2697,'I002697',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 11:17:30','darshan','2025-12-10 11:17:58'),(9239,0,0,'I',2697,'I002697',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-10 11:17:30','darshan','2025-12-10 11:17:58'),(9240,0,0,'I',2698,'I002698',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 11:24:30','','0000-00-00 00:00:00'),(9241,0,0,'I',2698,'I002698',2526,2,'0000-00-00','51324',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 11:24:30','','0000-00-00 00:00:00'),(9242,0,0,'I',2698,'I002698',2526,3,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-10 11:24:30','','0000-00-00 00:00:00'),(9243,0,0,'I',2698,'I002698',2526,4,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 11:24:30','','0000-00-00 00:00:00'),(9244,0,0,'I',2698,'I002698',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-10 11:24:30','','0000-00-00 00:00:00'),(9245,0,0,'I',2698,'I002698',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-10 11:24:30','','0000-00-00 00:00:00'),(9247,0,0,'I',2699,'I002699',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 11:29:21','darshan','2025-12-10 11:30:59'),(9249,0,0,'I',2699,'I002699',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 11:29:21','darshan','2025-12-10 11:30:59'),(9251,0,0,'I',2699,'I002699',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-10 11:30:59','','0000-00-00 00:00:00'),(9252,0,0,'I',2700,'I002700',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 11:36:40','drarchit','2025-12-10 11:36:51'),(9253,0,0,'I',2700,'I002700',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 11:36:40','drarchit','2025-12-10 11:36:51'),(9254,0,0,'I',2700,'I002700',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-10 11:36:40','drarchit','2025-12-10 11:36:51'),(9256,0,0,'I',2700,'I002700',2526,4,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 11:36:51','','0000-00-00 00:00:00'),(9257,0,0,'I',2701,'I002701',2526,1,'0000-00-00','51296',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-10 11:38:18','drjayant','2025-12-10 11:40:23'),(9258,0,0,'I',2701,'I002701',2526,2,'0000-00-00','51399',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-10 11:39:30','drjayant','2025-12-10 11:40:23'),(9259,0,0,'I',2701,'I002701',2526,3,'0000-00-00','51453',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-10 11:39:30','drjayant','2025-12-10 11:40:23'),(9260,0,0,'I',2701,'I002701',2526,4,'0000-00-00','51459',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-10 11:39:30','drjayant','2025-12-10 11:40:23'),(9261,0,0,'I',2702,'I002702',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 11:40:40','','0000-00-00 00:00:00'),(9262,0,0,'I',2703,'I002703',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 11:48:42','','0000-00-00 00:00:00'),(9263,0,0,'I',2704,'I002704',2526,1,'0000-00-00','51211',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:02:55','darshan','2025-12-10 12:03:06'),(9264,0,0,'I',2705,'I002705',2526,1,'0000-00-00','51224',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:06:36','','0000-00-00 00:00:00'),(9265,0,0,'I',2705,'I002705',2526,2,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:06:36','','0000-00-00 00:00:00'),(9266,0,0,'I',2705,'I002705',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:06:36','','0000-00-00 00:00:00'),(9267,0,0,'I',2705,'I002705',2526,4,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-10 12:06:36','','0000-00-00 00:00:00'),(9268,0,0,'I',2706,'I002706',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:18:58','darshan','2025-12-10 12:19:19'),(9269,0,0,'I',2706,'I002706',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:18:58','darshan','2025-12-10 12:19:19'),(9270,0,0,'I',2706,'I002706',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:18:58','darshan','2025-12-10 12:19:19'),(9273,0,0,'I',2707,'I002707',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 12:30:33','drarchit','2025-12-10 12:30:52'),(9274,0,0,'I',2707,'I002707',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-10 12:30:33','drarchit','2025-12-10 12:30:52'),(9275,0,0,'I',2707,'I002707',2526,3,'0000-00-00','51219',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-12-10 12:30:33','drarchit','2025-12-10 12:30:52'),(9276,0,0,'I',2707,'I002707',2526,4,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 12:30:33','drarchit','2025-12-10 12:30:52'),(9277,0,0,'I',2707,'I002707',2526,5,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 12:30:33','drarchit','2025-12-10 12:30:52'),(9278,0,0,'I',2707,'I002707',2526,6,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 12:30:33','drarchit','2025-12-10 12:30:52'),(9279,0,0,'I',2707,'I002707',2526,7,'0000-00-00','51297',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 12:30:52','','0000-00-00 00:00:00'),(9280,0,0,'I',2708,'I002708',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:31:10','','0000-00-00 00:00:00'),(9281,0,0,'I',2708,'I002708',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:31:10','','0000-00-00 00:00:00'),(9282,0,0,'I',2708,'I002708',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-10 12:31:10','','0000-00-00 00:00:00'),(9283,0,0,'I',2709,'I002709',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:36:17','','0000-00-00 00:00:00'),(9284,0,0,'I',2709,'I002709',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:36:17','','0000-00-00 00:00:00'),(9285,0,0,'I',2709,'I002709',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:36:17','','0000-00-00 00:00:00'),(9286,0,0,'I',2709,'I002709',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-10 12:36:17','','0000-00-00 00:00:00'),(9287,0,0,'I',2710,'I002710',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:40:57','','0000-00-00 00:00:00'),(9288,0,0,'I',2710,'I002710',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:40:57','','0000-00-00 00:00:00'),(9289,0,0,'I',2710,'I002710',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:40:57','','0000-00-00 00:00:00'),(9290,0,0,'I',2710,'I002710',2526,4,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-10 12:40:57','','0000-00-00 00:00:00'),(9291,0,0,'I',2711,'I002711',2526,1,'0000-00-00','51358',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 12:44:08','drarchit','2025-12-10 12:44:43'),(9292,0,0,'I',2711,'I002711',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 12:44:43','','0000-00-00 00:00:00'),(9293,0,0,'I',2711,'I002711',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 12:44:43','','0000-00-00 00:00:00'),(9294,0,0,'I',2711,'I002711',2526,4,'0000-00-00','51337',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 12:44:43','','0000-00-00 00:00:00'),(9295,0,0,'I',2712,'I002712',2526,1,'0000-00-00','51186',0,0,'TAB','','','','',0,150,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:44:50','','0000-00-00 00:00:00'),(9296,0,0,'I',2712,'I002712',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:44:50','','0000-00-00 00:00:00'),(9297,0,0,'I',2712,'I002712',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,25,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-10 12:44:50','','0000-00-00 00:00:00'),(9298,0,0,'I',2713,'I002713',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-10 12:52:41','','0000-00-00 00:00:00'),(9299,0,0,'I',2713,'I002713',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:52:41','','0000-00-00 00:00:00'),(9300,0,0,'I',2713,'I002713',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-10 12:52:41','','0000-00-00 00:00:00'),(9301,0,0,'I',2713,'I002713',2526,4,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 12:52:41','','0000-00-00 00:00:00'),(9302,0,0,'I',2713,'I002713',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-10 12:52:41','','0000-00-00 00:00:00'),(9303,0,0,'I',2714,'I002714',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-10 13:00:43','','0000-00-00 00:00:00'),(9304,0,0,'I',2714,'I002714',2526,2,'0000-00-00','51479',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-10 13:00:43','','0000-00-00 00:00:00'),(9305,0,0,'I',2714,'I002714',2526,3,'0000-00-00','51436',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 13:00:43','','0000-00-00 00:00:00'),(9306,0,0,'I',2715,'I002715',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 13:02:39','','0000-00-00 00:00:00'),(9307,0,0,'I',2716,'I002716',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 13:27:35','','0000-00-00 00:00:00'),(9308,0,0,'I',2716,'I002716',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 13:27:35','','0000-00-00 00:00:00'),(9309,0,0,'I',2716,'I002716',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-10 13:27:35','','0000-00-00 00:00:00'),(9310,0,0,'I',2716,'I002716',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-10 13:27:35','','0000-00-00 00:00:00'),(9311,0,0,'I',2717,'I002717',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 13:30:35','darshan','2025-12-10 13:35:57'),(9312,0,0,'I',2717,'I002717',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 13:30:35','darshan','2025-12-10 13:35:57'),(9313,0,0,'I',2717,'I002717',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 13:30:35','darshan','2025-12-10 13:35:57'),(9314,0,0,'I',2717,'I002717',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-10 13:30:35','darshan','2025-12-10 13:35:57'),(9315,0,0,'I',2718,'I002718',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 13:40:20','darshan','2025-12-10 13:40:52'),(9317,0,0,'I',2718,'I002718',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 13:40:20','darshan','2025-12-10 13:40:52'),(9320,0,0,'I',2719,'I002719',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 13:45:55','','0000-00-00 00:00:00'),(9321,0,0,'I',2719,'I002719',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 13:45:55','','0000-00-00 00:00:00'),(9322,0,0,'I',2719,'I002719',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 13:45:55','','0000-00-00 00:00:00'),(9323,0,0,'I',2719,'I002719',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-10 13:45:55','','0000-00-00 00:00:00'),(9324,0,0,'I',2720,'I002720',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 13:50:17','darshan','2025-12-10 13:50:50'),(9325,0,0,'I',2720,'I002720',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 13:50:17','darshan','2025-12-10 13:50:50'),(9326,0,0,'I',2720,'I002720',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 13:50:50','','0000-00-00 00:00:00'),(9327,0,0,'I',2721,'I002721',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 13:55:08','darshan','2025-12-10 14:28:40'),(9328,0,0,'I',2721,'I002721',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 13:55:08','darshan','2025-12-10 14:28:40'),(9329,0,0,'I',2721,'I002721',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 13:55:08','darshan','2025-12-10 14:28:40'),(9330,0,0,'I',2721,'I002721',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-10 13:55:08','darshan','2025-12-10 14:28:40'),(9331,0,0,'I',2722,'I002722',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 14:24:59','','0000-00-00 00:00:00'),(9332,0,0,'I',2722,'I002722',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 14:24:59','','0000-00-00 00:00:00'),(9333,0,0,'I',2722,'I002722',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 14:24:59','','0000-00-00 00:00:00'),(9334,0,0,'I',2723,'I002723',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 14:33:11','darshan','2025-12-10 14:34:11'),(9335,0,0,'I',2723,'I002723',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-10 14:33:11','darshan','2025-12-10 14:34:11'),(9338,0,0,'I',2724,'I002724',2526,1,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 14:37:58','darshan','2025-12-10 14:38:11'),(9339,0,0,'I',2724,'I002724',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-10 14:37:58','darshan','2025-12-10 14:38:11'),(9340,0,0,'I',2725,'I002725',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 17:10:21','darshan','2025-12-10 17:11:07'),(9341,0,0,'I',2725,'I002725',2526,2,'0000-00-00','51287',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-10 17:10:21','darshan','2025-12-10 17:11:07'),(9342,0,0,'I',2725,'I002725',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 17:10:21','darshan','2025-12-10 17:11:07'),(9344,0,0,'I',2726,'I002726',2526,1,'0000-00-00','51466',0,0,'TAB','','','','',0,12,0,0,0,6,'','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-10 17:13:48','darshan','2025-12-10 17:14:44'),(9345,0,0,'I',2726,'I002726',2526,2,'0000-00-00','51322',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 17:13:48','darshan','2025-12-10 17:14:44'),(9346,0,0,'I',2726,'I002726',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 17:13:48','darshan','2025-12-10 17:14:44'),(9348,0,0,'I',2726,'I002726',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-10 17:13:48','darshan','2025-12-10 17:14:44'),(9349,0,0,'I',2727,'I002727',2526,1,'0000-00-00','51224',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 17:29:02','darshan','2025-12-10 17:30:04'),(9351,0,0,'I',2727,'I002727',2526,2,'0000-00-00','51333',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 17:29:02','darshan','2025-12-10 17:30:04'),(9353,0,0,'I',2727,'I002727',2526,3,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 17:29:02','darshan','2025-12-10 17:30:04'),(9354,0,0,'I',2727,'I002727',2526,4,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 17:29:32','darshan','2025-12-10 17:30:04'),(9355,0,0,'I',2727,'I002727',2526,5,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 17:29:40','darshan','2025-12-10 17:30:04'),(9356,0,0,'I',2728,'I002728',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 17:49:38','darshan','2025-12-10 17:50:25'),(9357,0,0,'I',2728,'I002728',2526,2,'0000-00-00','51211',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 17:49:38','darshan','2025-12-10 17:50:25'),(9358,0,0,'I',2728,'I002728',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 17:49:38','darshan','2025-12-10 17:50:25'),(9359,0,0,'I',2728,'I002728',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-10 17:50:25','','0000-00-00 00:00:00'),(9360,0,0,'I',2728,'I002728',2526,5,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 17:50:25','','0000-00-00 00:00:00'),(9361,0,0,'I',2729,'I002729',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 17:58:06','','0000-00-00 00:00:00'),(9362,0,0,'I',2729,'I002729',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 17:58:06','','0000-00-00 00:00:00'),(9363,0,0,'I',2729,'I002729',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 17:58:06','','0000-00-00 00:00:00'),(9364,0,0,'I',2729,'I002729',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-10 17:58:06','','0000-00-00 00:00:00'),(9365,0,0,'I',2730,'I002730',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 18:01:39','darshan','2025-12-10 18:02:14'),(9366,0,0,'I',2730,'I002730',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 18:01:39','darshan','2025-12-10 18:02:14'),(9367,0,0,'I',2730,'I002730',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-10 18:02:14','','0000-00-00 00:00:00'),(9368,0,0,'I',2731,'I002731',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 18:24:47','','0000-00-00 00:00:00'),(9369,0,0,'I',2731,'I002731',2526,2,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 18:24:47','','0000-00-00 00:00:00'),(9370,0,0,'I',2731,'I002731',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-10 18:24:47','','0000-00-00 00:00:00'),(9371,0,0,'I',2732,'I002732',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 18:27:02','','0000-00-00 00:00:00'),(9372,0,0,'I',2732,'I002732',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 18:27:02','','0000-00-00 00:00:00'),(9373,0,0,'I',2732,'I002732',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 18:27:02','','0000-00-00 00:00:00'),(9374,0,0,'I',2732,'I002732',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-10 18:27:02','','0000-00-00 00:00:00'),(9375,0,0,'I',2732,'I002732',2526,5,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 18:27:02','','0000-00-00 00:00:00'),(9376,0,0,'I',2733,'I002733',2526,1,'0000-00-00','51356',0,0,'TAB','','','','',0,180,0,0,0,0,'0-0-2','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 18:27:24','','0000-00-00 00:00:00'),(9377,0,0,'I',2734,'I002734',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 18:31:58','darshan','2025-12-10 18:32:30'),(9378,0,0,'I',2734,'I002734',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 18:31:58','darshan','2025-12-10 18:32:30'),(9381,0,0,'I',2735,'I002735',2526,1,'0000-00-00','51428',0,0,'TAB','','','','',0,240,0,0,0,0,'4-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-10 18:32:12','drjayant','2025-12-10 18:38:20'),(9382,0,0,'I',2735,'I002735',2526,2,'0000-00-00','51422',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-10 18:32:12','drjayant','2025-12-10 18:38:20'),(9383,0,0,'I',2735,'I002735',2526,3,'0000-00-00','51608',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-10 18:32:12','drjayant','2025-12-10 18:38:20'),(9384,0,0,'I',2735,'I002735',2526,4,'0000-00-00','51423',0,0,'POWDER','','','','',0,3,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-12-10 18:32:12','drjayant','2025-12-10 18:38:20'),(9385,0,0,'I',2735,'I002735',2526,5,'0000-00-00','51435',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-10 18:32:12','drjayant','2025-12-10 18:38:20'),(9386,0,0,'I',2736,'I002736',2526,1,'0000-00-00','51241',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-10 18:32:40','drarchit','2025-12-10 18:33:57'),(9387,0,0,'I',2736,'I002736',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 18:32:40','drarchit','2025-12-10 18:33:57'),(9388,0,0,'I',2736,'I002736',2526,3,'0000-00-00','51213',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-10 18:32:40','drarchit','2025-12-10 18:33:57'),(9389,0,0,'I',2736,'I002736',2526,4,'0000-00-00','51406',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 18:33:34','drarchit','2025-12-10 18:33:57'),(9390,0,0,'I',2736,'I002736',2526,5,'0000-00-00','51387',0,0,'INJ','','','','',0,1,0,0,0,0,'0-0-24','','Dy',30,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-10 18:33:34','drarchit','2025-12-10 18:33:57'),(9391,0,0,'I',2736,'I002736',2526,6,'0000-00-00','51237',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 18:33:57','','0000-00-00 00:00:00'),(9393,0,0,'I',2735,'I002735',2526,6,'0000-00-00','51320',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-10 18:36:15','drjayant','2025-12-10 18:38:20'),(9394,0,0,'I',2735,'I002735',2526,7,'0000-00-00','51613',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-10 18:36:34','drjayant','2025-12-10 18:38:20'),(9395,0,0,'I',2737,'I002737',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 18:37:14','','0000-00-00 00:00:00'),(9396,0,0,'I',2737,'I002737',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 18:37:14','','0000-00-00 00:00:00'),(9397,0,0,'I',2737,'I002737',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 18:37:14','','0000-00-00 00:00:00'),(9398,0,0,'I',2737,'I002737',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-10 18:37:14','','0000-00-00 00:00:00'),(9399,0,0,'I',2735,'I002735',2526,8,'0000-00-00','51614',0,0,'SYRUP','','','','',0,2,0,0,0,0,'5-5-5','','Dy',0,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-12-10 18:38:20','','0000-00-00 00:00:00'),(9400,0,0,'I',2738,'I002738',2526,1,'0000-00-00','51353',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 18:40:26','','0000-00-00 00:00:00'),(9401,0,0,'I',2738,'I002738',2526,2,'0000-00-00','51429',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-10 18:40:26','','0000-00-00 00:00:00'),(9402,0,0,'I',2739,'I002739',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-10 18:41:36','darshan','2025-12-10 18:42:12'),(9403,0,0,'I',2739,'I002739',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 18:41:36','darshan','2025-12-10 18:42:12'),(9404,0,0,'I',2739,'I002739',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 18:42:12','','0000-00-00 00:00:00'),(9405,0,0,'I',2739,'I002739',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-10 18:42:12','','0000-00-00 00:00:00'),(9406,0,0,'I',2740,'I002740',2526,1,'0000-00-00','51597',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-10 18:45:40','drjayant','2025-12-10 18:48:51'),(9407,0,0,'I',2741,'I002741',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 18:46:49','','0000-00-00 00:00:00'),(9408,0,0,'I',2741,'I002741',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 18:46:49','','0000-00-00 00:00:00'),(9409,0,0,'I',2740,'I002740',2526,2,'0000-00-00','51615',0,0,'TAB','','','','',0,4,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'drjayant','2025-12-10 18:47:42','drjayant','2025-12-10 18:48:51'),(9410,0,0,'I',2742,'I002742',2526,1,'0000-00-00','51353',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 18:47:43','','0000-00-00 00:00:00'),(9411,0,0,'I',2742,'I002742',2526,2,'0000-00-00','51339',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 18:47:43','','0000-00-00 00:00:00'),(9412,0,0,'I',2740,'I002740',2526,3,'0000-00-00','51422',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-10 18:48:39','drjayant','2025-12-10 18:48:51'),(9413,0,0,'I',2740,'I002740',2526,4,'0000-00-00','51616',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-10 18:48:39','drjayant','2025-12-10 18:48:51'),(9414,0,0,'I',2743,'I002743',2526,1,'0000-00-00','51321',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 18:55:20','drarchit','2025-12-10 18:55:34'),(9415,0,0,'I',2743,'I002743',2526,2,'0000-00-00','51379',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 18:55:20','drarchit','2025-12-10 18:55:34'),(9416,0,0,'I',2743,'I002743',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 18:55:20','drarchit','2025-12-10 18:55:34'),(9417,0,0,'I',2743,'I002743',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 18:55:20','drarchit','2025-12-10 18:55:34'),(9418,0,0,'I',2743,'I002743',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-10 18:55:20','drarchit','2025-12-10 18:55:34'),(9420,0,0,'I',2743,'I002743',2526,6,'0000-00-00','51374',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-10 18:55:34','','0000-00-00 00:00:00'),(9421,0,0,'I',2744,'I002744',2526,1,'0000-00-00','51408',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-10 18:55:37','drjayant','2025-12-11 13:16:48'),(9422,0,0,'I',2745,'I002745',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-10 19:00:18','darshan','2025-12-10 19:00:52'),(9423,0,0,'I',2745,'I002745',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 19:00:18','darshan','2025-12-10 19:00:52'),(9424,0,0,'I',2745,'I002745',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 19:00:18','darshan','2025-12-10 19:00:52'),(9426,0,0,'I',2746,'I002746',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-10 19:11:02','drarchit','2025-12-10 19:12:55'),(9428,0,0,'I',2746,'I002746',2526,2,'0000-00-00','51214',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-10 19:12:55','','0000-00-00 00:00:00'),(9429,0,0,'I',2746,'I002746',2526,3,'0000-00-00','51475',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-10 19:12:55','','0000-00-00 00:00:00'),(9430,0,0,'I',2746,'I002746',2526,4,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 19:12:55','','0000-00-00 00:00:00'),(9431,0,0,'I',2746,'I002746',2526,5,'0000-00-00','51218',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 19:12:55','','0000-00-00 00:00:00'),(9432,0,0,'I',2746,'I002746',2526,6,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-10 19:12:55','','0000-00-00 00:00:00'),(9433,0,0,'I',2746,'I002746',2526,7,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 19:12:55','','0000-00-00 00:00:00'),(9434,0,0,'I',2747,'I002747',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 19:19:56','darshan','2025-12-10 19:20:07'),(9436,0,0,'I',2748,'I002748',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 19:25:09','','0000-00-00 00:00:00'),(9437,0,0,'I',2748,'I002748',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 19:25:09','','0000-00-00 00:00:00'),(9438,0,0,'I',2748,'I002748',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 19:25:09','','0000-00-00 00:00:00'),(9439,0,0,'I',2748,'I002748',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-10 19:25:09','','0000-00-00 00:00:00'),(9440,0,0,'I',2673,'I002673',2526,1,'0000-00-00','51617',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-10 19:38:02','','0000-00-00 00:00:00'),(9441,0,0,'I',2673,'I002673',2526,2,'0000-00-00','51319',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-10 19:38:02','','0000-00-00 00:00:00'),(9442,0,0,'I',2673,'I002673',2526,3,'0000-00-00','51409',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-10 19:38:02','','0000-00-00 00:00:00'),(9443,0,0,'I',2673,'I002673',2526,4,'0000-00-00','51422',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-10 19:38:02','','0000-00-00 00:00:00'),(9444,0,0,'I',2673,'I002673',2526,5,'0000-00-00','51435',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-10 19:38:02','','0000-00-00 00:00:00'),(9445,0,0,'I',2749,'I002749',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 19:47:12','darshan','2025-12-10 19:47:54'),(9446,0,0,'I',2749,'I002749',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 19:47:12','darshan','2025-12-10 19:47:54'),(9447,0,0,'I',2749,'I002749',2526,3,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 19:47:12','darshan','2025-12-10 19:47:54'),(9448,0,0,'I',2749,'I002749',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-10 19:47:12','darshan','2025-12-10 19:47:54'),(9449,0,0,'I',2750,'I002750',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 19:47:40','drarchit','2025-12-10 20:14:09'),(9451,0,0,'I',2750,'I002750',2526,2,'0000-00-00','51273',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 19:48:53','drarchit','2025-12-10 20:14:09'),(9452,0,0,'I',2750,'I002750',2526,3,'0000-00-00','51272',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 19:48:53','drarchit','2025-12-10 20:14:09'),(9453,0,0,'I',2751,'I002751',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 19:56:16','','0000-00-00 00:00:00'),(9454,0,0,'I',2751,'I002751',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-10 19:56:16','','0000-00-00 00:00:00'),(9455,0,0,'I',2751,'I002751',2526,3,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-10 19:56:16','','0000-00-00 00:00:00'),(9456,0,0,'I',2750,'I002750',2526,4,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-10 20:14:09','','0000-00-00 00:00:00'),(9457,0,0,'I',2750,'I002750',2526,5,'0000-00-00','51480',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-10 20:14:09','','0000-00-00 00:00:00'),(9458,0,0,'I',2750,'I002750',2526,6,'0000-00-00','51412',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-10 20:14:09','','0000-00-00 00:00:00'),(9459,0,0,'I',2753,'I002753',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 10:48:13','darshan','2025-12-11 10:48:43'),(9461,0,0,'I',2754,'I002754',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 11:04:44','','0000-00-00 00:00:00'),(9462,0,0,'I',2755,'I002755',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-11 11:24:07','darshan','2025-12-11 11:24:57'),(9463,0,0,'I',2755,'I002755',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 11:24:07','darshan','2025-12-11 11:24:57'),(9464,0,0,'I',2755,'I002755',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 11:24:07','darshan','2025-12-11 11:24:57'),(9465,0,0,'I',2756,'I002756',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-11 11:31:21','','0000-00-00 00:00:00'),(9466,0,0,'I',2757,'I002757',2526,1,'0000-00-00','51409',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-11 11:38:45','','0000-00-00 00:00:00'),(9467,0,0,'I',2757,'I002757',2526,2,'0000-00-00','51588',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-11 11:38:45','','0000-00-00 00:00:00'),(9468,0,0,'I',2758,'I002758',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 11:39:29','darshan','2025-12-11 11:40:45'),(9469,0,0,'I',2758,'I002758',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,50,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 11:39:29','darshan','2025-12-11 11:40:45'),(9470,0,0,'I',2758,'I002758',2526,3,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-11 11:40:45','','0000-00-00 00:00:00'),(9471,0,0,'I',2759,'I002759',2526,1,'0000-00-00','51309',0,0,'CAP','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 11:41:23','','0000-00-00 00:00:00'),(9472,0,0,'I',2759,'I002759',2526,2,'0000-00-00','51545',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 11:41:23','','0000-00-00 00:00:00'),(9473,0,0,'I',2759,'I002759',2526,3,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 11:41:23','','0000-00-00 00:00:00'),(9474,0,0,'I',2760,'I002760',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 11:45:37','','0000-00-00 00:00:00'),(9475,0,0,'I',2760,'I002760',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 11:45:37','','0000-00-00 00:00:00'),(9476,0,0,'I',2760,'I002760',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-11 11:45:37','','0000-00-00 00:00:00'),(9477,0,0,'I',2760,'I002760',2526,4,'0000-00-00','51384',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 11:45:37','','0000-00-00 00:00:00'),(9478,0,0,'I',2760,'I002760',2526,5,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 11:45:37','','0000-00-00 00:00:00'),(9479,0,0,'I',2760,'I002760',2526,6,'0000-00-00','51505',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-11 11:45:37','','0000-00-00 00:00:00'),(9480,0,0,'I',2760,'I002760',2526,7,'0000-00-00','51490',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-11 11:45:37','','0000-00-00 00:00:00'),(9481,0,0,'I',2760,'I002760',2526,8,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 11:45:37','','0000-00-00 00:00:00'),(9482,0,0,'I',2761,'I002761',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-11 11:45:47','darshan','2025-12-11 11:46:21'),(9483,0,0,'I',2761,'I002761',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 11:45:47','darshan','2025-12-11 11:46:21'),(9484,0,0,'I',2761,'I002761',2526,3,'0000-00-00','51194',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-11 11:45:47','darshan','2025-12-11 11:46:21'),(9485,0,0,'I',2762,'I002762',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 11:50:28','','0000-00-00 00:00:00'),(9486,0,0,'I',2762,'I002762',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 11:50:28','','0000-00-00 00:00:00'),(9487,0,0,'I',2762,'I002762',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 11:50:28','','0000-00-00 00:00:00'),(9488,0,0,'I',2762,'I002762',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-11 11:50:28','','0000-00-00 00:00:00'),(9489,0,0,'I',2763,'I002763',2526,1,'0000-00-00','51487',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-11 11:51:38','','0000-00-00 00:00:00'),(9490,0,0,'I',2763,'I002763',2526,2,'0000-00-00','51269',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 11:51:38','','0000-00-00 00:00:00'),(9491,0,0,'I',2763,'I002763',2526,3,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 11:51:38','','0000-00-00 00:00:00'),(9492,0,0,'I',2763,'I002763',2526,4,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-11 11:51:38','','0000-00-00 00:00:00'),(9493,0,0,'I',2763,'I002763',2526,5,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-12-11 11:51:38','','0000-00-00 00:00:00'),(9494,0,0,'I',2763,'I002763',2526,6,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 11:51:38','','0000-00-00 00:00:00'),(9495,0,0,'I',2764,'I002764',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 11:55:19','darshan','2025-12-11 11:55:36'),(9496,0,0,'I',2764,'I002764',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-11 11:55:19','darshan','2025-12-11 11:55:36'),(9497,0,0,'I',2765,'I002765',2526,1,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-11 11:57:26','','0000-00-00 00:00:00'),(9498,0,0,'I',2765,'I002765',2526,2,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-11 11:57:26','','0000-00-00 00:00:00'),(9499,0,0,'I',2765,'I002765',2526,3,'0000-00-00','51406',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 11:57:26','','0000-00-00 00:00:00'),(9500,0,0,'I',2765,'I002765',2526,4,'0000-00-00','51525',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 11:57:26','','0000-00-00 00:00:00'),(9501,0,0,'I',2765,'I002765',2526,5,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-11 11:57:26','','0000-00-00 00:00:00'),(9502,0,0,'I',2765,'I002765',2526,6,'0000-00-00','51279',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 11:57:26','','0000-00-00 00:00:00'),(9504,0,0,'I',2766,'I002766',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-11 11:59:23','darshan','2025-12-11 12:00:15'),(9505,0,0,'I',2766,'I002766',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 11:59:23','darshan','2025-12-11 12:00:15'),(9506,0,0,'I',2766,'I002766',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 11:59:23','darshan','2025-12-11 12:00:15'),(9507,0,0,'I',2766,'I002766',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-11 11:59:23','darshan','2025-12-11 12:00:15'),(9508,0,0,'I',2767,'I002767',2526,1,'0000-00-00','51266',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'drarchit','2025-12-11 12:01:17','','0000-00-00 00:00:00'),(9509,0,0,'I',2767,'I002767',2526,2,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:01:17','','0000-00-00 00:00:00'),(9510,0,0,'I',2767,'I002767',2526,3,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:01:17','','0000-00-00 00:00:00'),(9511,0,0,'I',2767,'I002767',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-11 12:01:17','','0000-00-00 00:00:00'),(9512,0,0,'I',2767,'I002767',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:01:17','','0000-00-00 00:00:00'),(9513,0,0,'I',2768,'I002768',2526,1,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:05:35','drarchit','2025-12-11 12:06:56'),(9515,0,0,'I',2768,'I002768',2526,2,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-12-11 12:05:35','drarchit','2025-12-11 12:06:56'),(9516,0,0,'I',2768,'I002768',2526,3,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:05:41','drarchit','2025-12-11 12:06:56'),(9517,0,0,'I',2769,'I002769',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 12:05:53','','0000-00-00 00:00:00'),(9518,0,0,'I',2769,'I002769',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 12:05:53','','0000-00-00 00:00:00'),(9519,0,0,'I',2768,'I002768',2526,4,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:06:47','drarchit','2025-12-11 12:06:56'),(9520,0,0,'I',2768,'I002768',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:06:56','','0000-00-00 00:00:00'),(9521,0,0,'I',2770,'I002770',2526,1,'0000-00-00','51467',0,0,'TAB','','','','',0,10,0,0,0,0,'0-1-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-11 12:09:51','','0000-00-00 00:00:00'),(9522,0,0,'I',2770,'I002770',2526,2,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:09:51','','0000-00-00 00:00:00'),(9523,0,0,'I',2770,'I002770',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-11 12:09:51','','0000-00-00 00:00:00'),(9524,0,0,'I',2771,'I002771',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 12:11:38','darshan','2025-12-11 12:12:15'),(9525,0,0,'I',2771,'I002771',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 12:12:15','','0000-00-00 00:00:00'),(9526,0,0,'I',2771,'I002771',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 12:12:15','','0000-00-00 00:00:00'),(9527,0,0,'I',2772,'I002772',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 12:19:19','','0000-00-00 00:00:00'),(9528,0,0,'I',2772,'I002772',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 12:19:19','','0000-00-00 00:00:00'),(9529,0,0,'I',2773,'I002773',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 12:22:52','darshan','2025-12-11 12:23:34'),(9530,0,0,'I',2773,'I002773',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 12:22:52','darshan','2025-12-11 12:23:34'),(9532,0,0,'I',2773,'I002773',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-11 12:22:52','darshan','2025-12-11 12:23:34'),(9533,0,0,'I',2774,'I002774',2526,1,'0000-00-00','51463',0,0,'INJ','','','','',0,3,0,0,0,0,'0-28-12','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-11 12:33:56','drarchit','2025-12-11 12:34:05'),(9534,0,0,'I',2774,'I002774',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-11 12:33:56','drarchit','2025-12-11 12:34:05'),(9536,0,0,'I',2774,'I002774',2526,3,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-11 12:34:05','','0000-00-00 00:00:00'),(9537,0,0,'I',2775,'I002775',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 12:38:27','','0000-00-00 00:00:00'),(9538,0,0,'I',2775,'I002775',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 12:38:27','','0000-00-00 00:00:00'),(9539,0,0,'I',2775,'I002775',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 12:38:27','','0000-00-00 00:00:00'),(9540,0,0,'I',2775,'I002775',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-11 12:38:27','','0000-00-00 00:00:00'),(9541,0,0,'I',2776,'I002776',2526,1,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:38:58','drarchit','2025-12-11 12:39:39'),(9542,0,0,'I',2776,'I002776',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-11 12:38:58','drarchit','2025-12-11 12:39:39'),(9543,0,0,'I',2776,'I002776',2526,3,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:38:58','drarchit','2025-12-11 12:39:39'),(9544,0,0,'I',2776,'I002776',2526,4,'0000-00-00','51232',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:38:58','drarchit','2025-12-11 12:39:39'),(9545,0,0,'I',2776,'I002776',2526,5,'0000-00-00','51487',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-11 12:38:58','drarchit','2025-12-11 12:39:39'),(9546,0,0,'I',2776,'I002776',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-11 12:39:39','','0000-00-00 00:00:00'),(9547,0,0,'I',2777,'I002777',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:43:40','','0000-00-00 00:00:00'),(9548,0,0,'I',2777,'I002777',2526,2,'0000-00-00','51286',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:43:40','','0000-00-00 00:00:00'),(9549,0,0,'I',2777,'I002777',2526,3,'0000-00-00','51412',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:43:40','','0000-00-00 00:00:00'),(9550,0,0,'I',2777,'I002777',2526,4,'0000-00-00','51240',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:43:40','','0000-00-00 00:00:00'),(9551,0,0,'I',2778,'I002778',2526,1,'0000-00-00','51442',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-11 12:51:47','drarchit','2025-12-11 12:51:56'),(9552,0,0,'I',2778,'I002778',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-11 12:51:47','drarchit','2025-12-11 12:51:56'),(9553,0,0,'I',2778,'I002778',2526,3,'0000-00-00','51250',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:51:47','drarchit','2025-12-11 12:51:56'),(9554,0,0,'I',2778,'I002778',2526,4,'0000-00-00','51228',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-11 12:51:47','drarchit','2025-12-11 12:51:56'),(9555,0,0,'I',2778,'I002778',2526,5,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:51:56','','0000-00-00 00:00:00'),(9557,0,0,'I',2779,'I002779',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 12:53:20','darshan','2025-12-11 12:54:43'),(9558,0,0,'I',2779,'I002779',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,25,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-11 12:53:20','darshan','2025-12-11 12:54:43'),(9559,0,0,'I',2779,'I002779',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',45,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-11 12:53:20','darshan','2025-12-11 12:54:43'),(9560,0,0,'I',2779,'I002779',2526,4,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-11 12:54:22','darshan','2025-12-11 12:54:43'),(9561,0,0,'I',2779,'I002779',2526,5,'0000-00-00','51224',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 12:54:43','','0000-00-00 00:00:00'),(9562,0,0,'I',2780,'I002780',2526,1,'0000-00-00','51450',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-11 12:56:46','drjayant','2025-12-12 18:59:17'),(9565,0,0,'I',2781,'I002781',2526,1,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:58:51','','0000-00-00 00:00:00'),(9566,0,0,'I',2781,'I002781',2526,2,'0000-00-00','51286',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 12:58:51','','0000-00-00 00:00:00'),(9567,0,0,'I',2780,'I002780',2526,2,'0000-00-00','51422',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-11 13:00:09','drjayant','2025-12-12 18:59:17'),(9568,0,0,'I',2782,'I002782',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 13:00:46','drarchit','2025-12-11 13:07:01'),(9569,0,0,'I',2782,'I002782',2526,2,'0000-00-00','51618',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 13:01:31','drarchit','2025-12-11 13:07:01'),(9570,0,0,'I',2783,'I002783',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 13:06:22','','0000-00-00 00:00:00'),(9571,0,0,'I',2783,'I002783',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 13:06:22','','0000-00-00 00:00:00'),(9572,0,0,'I',2783,'I002783',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 13:06:22','','0000-00-00 00:00:00'),(9573,0,0,'I',2782,'I002782',2526,3,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 13:07:01','','0000-00-00 00:00:00'),(9574,0,0,'I',2744,'I002744',2526,2,'0000-00-00','51319',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-11 13:16:48','','0000-00-00 00:00:00'),(9575,0,0,'I',2744,'I002744',2526,3,'0000-00-00','51587',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-11 13:16:48','','0000-00-00 00:00:00'),(9577,0,0,'I',2784,'I002784',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 13:20:29','darshan','2025-12-11 13:20:49'),(9579,0,0,'I',2785,'I002785',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,110,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 13:23:39','','0000-00-00 00:00:00'),(9580,0,0,'I',2785,'I002785',2526,2,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-11 13:23:39','','0000-00-00 00:00:00'),(9582,0,0,'I',2786,'I002786',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 13:35:29','darshan','2025-12-11 13:36:08'),(9584,0,0,'I',2786,'I002786',2526,2,'0000-00-00','51233',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-11 13:35:29','darshan','2025-12-11 13:36:08'),(9585,0,0,'I',2786,'I002786',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-11 13:35:29','darshan','2025-12-11 13:36:08'),(9586,0,0,'I',2787,'I002787',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-11 13:47:43','','0000-00-00 00:00:00'),(9587,0,0,'I',2787,'I002787',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 13:47:43','','0000-00-00 00:00:00'),(9588,0,0,'I',2787,'I002787',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 13:47:43','','0000-00-00 00:00:00'),(9589,0,0,'I',2787,'I002787',2526,4,'0000-00-00','51322',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 13:47:43','','0000-00-00 00:00:00'),(9590,0,0,'I',2787,'I002787',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-11 13:47:43','','0000-00-00 00:00:00'),(9591,0,0,'I',2788,'I002788',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 13:54:37','darshan','2025-12-11 13:59:20'),(9592,0,0,'I',2788,'I002788',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 13:54:37','darshan','2025-12-11 13:59:20'),(9593,0,0,'I',2788,'I002788',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-11 13:54:37','darshan','2025-12-11 13:59:20'),(9594,0,0,'I',2788,'I002788',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-11 13:54:37','darshan','2025-12-11 13:59:20'),(9595,0,0,'I',2789,'I002789',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 14:10:35','','0000-00-00 00:00:00'),(9596,0,0,'I',2789,'I002789',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 14:10:35','','0000-00-00 00:00:00'),(9597,0,0,'I',2790,'I002790',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,120,0,0,0,0,'.5-0-.5','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 17:07:05','darshan','2025-12-11 17:07:21'),(9598,0,0,'I',2790,'I002790',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 17:07:05','darshan','2025-12-11 17:07:21'),(9599,0,0,'I',2790,'I002790',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-11 17:07:21','','0000-00-00 00:00:00'),(9600,0,0,'I',2792,'I002792',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 17:35:46','darshan','2025-12-11 19:22:13'),(9601,0,0,'I',2792,'I002792',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 17:35:46','darshan','2025-12-11 19:22:13'),(9602,0,0,'I',2792,'I002792',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 17:35:46','darshan','2025-12-11 19:22:13'),(9603,0,0,'I',2792,'I002792',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-11 17:35:46','darshan','2025-12-11 19:22:13'),(9604,0,0,'I',2793,'I002793',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 17:44:09','darshan','2025-12-11 17:44:37'),(9606,0,0,'I',2794,'I002794',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-11 17:49:46','','0000-00-00 00:00:00'),(9607,0,0,'I',2794,'I002794',2526,2,'0000-00-00','51215',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 17:49:46','','0000-00-00 00:00:00'),(9608,0,0,'I',2794,'I002794',2526,3,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 17:49:46','','0000-00-00 00:00:00'),(9609,0,0,'I',2794,'I002794',2526,4,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 17:49:46','','0000-00-00 00:00:00'),(9610,0,0,'I',2794,'I002794',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-11 17:49:46','','0000-00-00 00:00:00'),(9612,0,0,'I',2795,'I002795',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 17:59:10','darshan','2025-12-11 17:59:43'),(9614,0,0,'I',2795,'I002795',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 17:59:10','darshan','2025-12-11 17:59:43'),(9615,0,0,'I',2796,'I002796',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:02:29','darshan','2025-12-11 18:02:52'),(9616,0,0,'I',2796,'I002796',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:02:29','darshan','2025-12-11 18:02:52'),(9617,0,0,'I',2796,'I002796',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-11 18:02:52','','0000-00-00 00:00:00'),(9618,0,0,'I',2797,'I002797',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:10:27','','0000-00-00 00:00:00'),(9619,0,0,'I',2797,'I002797',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:10:27','','0000-00-00 00:00:00'),(9620,0,0,'I',2798,'I002798',2526,1,'0000-00-00','51536',0,0,'TAB','','','','',0,4,0,0,0,0,'1-0-0','','Wk',4,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 18:18:46','','0000-00-00 00:00:00'),(9621,0,0,'I',2798,'I002798',2526,2,'0000-00-00','51537',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 18:18:46','','0000-00-00 00:00:00'),(9622,0,0,'I',2798,'I002798',2526,3,'0000-00-00','51571',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 18:18:46','','0000-00-00 00:00:00'),(9623,0,0,'I',2798,'I002798',2526,4,'0000-00-00','51516',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 18:18:46','','0000-00-00 00:00:00'),(9624,0,0,'I',2798,'I002798',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 18:18:46','','0000-00-00 00:00:00'),(9625,0,0,'I',2799,'I002799',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:19:45','','0000-00-00 00:00:00'),(9626,0,0,'I',2799,'I002799',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:19:45','','0000-00-00 00:00:00'),(9627,0,0,'I',2800,'I002800',2526,1,'0000-00-00','51224',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:24:38','darshan','2025-12-11 18:25:20'),(9628,0,0,'I',2800,'I002800',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:24:38','darshan','2025-12-11 18:25:20'),(9629,0,0,'I',2800,'I002800',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:24:38','darshan','2025-12-11 18:25:20'),(9630,0,0,'I',2800,'I002800',2526,4,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:25:20','','0000-00-00 00:00:00'),(9631,0,0,'I',2800,'I002800',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,0,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-11 18:25:20','','0000-00-00 00:00:00'),(9632,0,0,'I',2801,'I002801',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:32:29','','0000-00-00 00:00:00'),(9633,0,0,'I',2801,'I002801',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:32:29','','0000-00-00 00:00:00'),(9634,0,0,'I',2801,'I002801',2526,3,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-11 18:32:29','','0000-00-00 00:00:00'),(9635,0,0,'I',2801,'I002801',2526,4,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:32:29','','0000-00-00 00:00:00'),(9636,0,0,'I',2802,'I002802',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-11 18:36:15','','0000-00-00 00:00:00'),(9637,0,0,'I',2802,'I002802',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:36:15','','0000-00-00 00:00:00'),(9638,0,0,'I',2802,'I002802',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:36:15','','0000-00-00 00:00:00'),(9639,0,0,'I',2803,'I002803',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 18:41:03','','0000-00-00 00:00:00'),(9640,0,0,'I',2803,'I002803',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-11 18:41:03','','0000-00-00 00:00:00'),(9641,0,0,'I',2803,'I002803',2526,3,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 18:41:03','','0000-00-00 00:00:00'),(9642,0,0,'I',2803,'I002803',2526,4,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 18:41:03','','0000-00-00 00:00:00'),(9643,0,0,'I',2803,'I002803',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 18:41:03','','0000-00-00 00:00:00'),(9644,0,0,'I',2803,'I002803',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-11 18:41:03','','0000-00-00 00:00:00'),(9645,0,0,'I',2804,'I002804',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:42:54','darshan','2025-12-11 18:44:44'),(9646,0,0,'I',2804,'I002804',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-11 18:42:54','darshan','2025-12-11 18:44:44'),(9647,0,0,'I',2804,'I002804',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:42:54','darshan','2025-12-11 18:44:44'),(9650,0,0,'I',2804,'I002804',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:44:44','','0000-00-00 00:00:00'),(9651,0,0,'I',2805,'I002805',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-11 18:46:13','drarchit','2025-12-11 18:46:53'),(9652,0,0,'I',2805,'I002805',2526,2,'0000-00-00','51219',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-12-11 18:46:53','','0000-00-00 00:00:00'),(9653,0,0,'I',2806,'I002806',2526,1,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-11 18:50:00','drarchit','2025-12-11 18:50:37'),(9654,0,0,'I',2806,'I002806',2526,2,'0000-00-00','51242',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 18:50:00','drarchit','2025-12-11 18:50:37'),(9655,0,0,'I',2806,'I002806',2526,3,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-11 18:50:00','drarchit','2025-12-11 18:50:37'),(9656,0,0,'I',2806,'I002806',2526,4,'0000-00-00','51248',0,0,'CAP','','','','',0,4,0,0,0,0,'1-0-0','','Wk',4,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 18:50:37','','0000-00-00 00:00:00'),(9657,0,0,'I',2807,'I002807',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:55:04','','0000-00-00 00:00:00'),(9658,0,0,'I',2807,'I002807',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:55:04','','0000-00-00 00:00:00'),(9659,0,0,'I',2807,'I002807',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 18:55:04','','0000-00-00 00:00:00'),(9660,0,0,'I',2807,'I002807',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-11 18:55:04','','0000-00-00 00:00:00'),(9661,0,0,'I',2808,'I002808',2526,1,'0000-00-00','51619',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-11 19:00:33','drjayant','2025-12-11 19:01:26'),(9662,0,0,'I',2808,'I002808',2526,2,'0000-00-00','51422',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-11 19:00:33','drjayant','2025-12-11 19:01:26'),(9663,0,0,'I',2808,'I002808',2526,3,'0000-00-00','51302',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-11 19:00:33','drjayant','2025-12-11 19:01:26'),(9664,0,0,'I',2808,'I002808',2526,4,'0000-00-00','51209',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-11 19:00:33','drjayant','2025-12-11 19:01:26'),(9665,0,0,'I',2808,'I002808',2526,5,'0000-00-00','51435',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-11 19:00:33','drjayant','2025-12-11 19:01:26'),(9666,0,0,'I',2808,'I002808',2526,6,'0000-00-00','51620',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-11 19:01:26','','0000-00-00 00:00:00'),(9667,0,0,'I',2809,'I002809',2526,1,'0000-00-00','51296',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-11 19:03:57','drjayant','2025-12-11 19:57:27'),(9668,0,0,'I',2809,'I002809',2526,2,'0000-00-00','51320',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-11 19:03:57','drjayant','2025-12-11 19:57:27'),(9669,0,0,'I',2809,'I002809',2526,3,'0000-00-00','51422',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-11 19:03:57','drjayant','2025-12-11 19:57:27'),(9670,0,0,'I',2809,'I002809',2526,4,'0000-00-00','51409',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-11 19:03:57','drjayant','2025-12-11 19:57:27'),(9672,0,0,'I',2791,'I002791',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 19:08:12','darshan','2025-12-11 19:08:27'),(9673,0,0,'I',2791,'I002791',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 19:08:12','darshan','2025-12-11 19:08:27'),(9674,0,0,'I',2791,'I002791',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-11 19:08:27','','0000-00-00 00:00:00'),(9675,0,0,'I',2810,'I002810',2526,1,'0000-00-00','51373',0,0,'CAP','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 19:19:25','','0000-00-00 00:00:00'),(9676,0,0,'I',2810,'I002810',2526,2,'0000-00-00','51395',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 19:19:25','','0000-00-00 00:00:00'),(9677,0,0,'I',2810,'I002810',2526,3,'0000-00-00','51396',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 19:19:25','','0000-00-00 00:00:00'),(9678,0,0,'I',2792,'I002792',2526,5,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-11 19:22:13','','0000-00-00 00:00:00'),(9679,0,0,'I',2811,'I002811',2526,1,'0000-00-00','51550',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-11 19:34:28','drarchit','2025-12-11 19:35:00'),(9680,0,0,'I',2811,'I002811',2526,2,'0000-00-00','51384',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 19:34:28','drarchit','2025-12-11 19:35:00'),(9681,0,0,'I',2811,'I002811',2526,3,'0000-00-00','51592',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 19:34:28','drarchit','2025-12-11 19:35:00'),(9682,0,0,'I',2811,'I002811',2526,4,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 19:34:46','drarchit','2025-12-11 19:35:00'),(9683,0,0,'I',2811,'I002811',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 19:35:00','','0000-00-00 00:00:00'),(9684,0,0,'I',2811,'I002811',2526,6,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-11 19:35:00','','0000-00-00 00:00:00'),(9685,0,0,'I',2812,'I002812',2526,1,'0000-00-00','51267',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 19:39:30','drarchit','2025-12-11 19:39:39'),(9686,0,0,'I',2812,'I002812',2526,2,'0000-00-00','51268',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 19:39:30','drarchit','2025-12-11 19:39:39'),(9687,0,0,'I',2812,'I002812',2526,3,'0000-00-00','51269',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 19:39:30','drarchit','2025-12-11 19:39:39'),(9688,0,0,'I',2812,'I002812',2526,4,'0000-00-00','51517',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 19:39:30','drarchit','2025-12-11 19:39:39'),(9689,0,0,'I',2812,'I002812',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-11 19:39:30','drarchit','2025-12-11 19:39:39'),(9690,0,0,'I',2813,'I002813',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 19:54:47','darshan','2025-12-11 19:55:00'),(9691,0,0,'I',2813,'I002813',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 19:54:47','darshan','2025-12-11 19:55:00'),(9692,0,0,'I',2809,'I002809',2526,5,'0000-00-00','51597',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-11 19:57:27','','0000-00-00 00:00:00'),(9693,0,0,'I',2809,'I002809',2526,6,'0000-00-00','51621',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-11 19:57:27','','0000-00-00 00:00:00'),(9694,0,0,'I',2809,'I002809',2526,7,'0000-00-00','51622',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-11 19:57:27','','0000-00-00 00:00:00'),(9695,0,0,'I',2814,'I002814',2526,1,'0000-00-00','51448',0,0,'SYRUP','','','','',0,1,0,0,0,0,'1-0-0','3 ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 19:57:38','','0000-00-00 00:00:00'),(9696,0,0,'I',2814,'I002814',2526,2,'0000-00-00','51252',0,0,'SYRUP','','','','',0,1,0,0,0,0,'1-1-1','5ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 19:57:38','','0000-00-00 00:00:00'),(9697,0,0,'I',2814,'I002814',2526,3,'0000-00-00','51447',0,0,'SYRUP','','','','',0,1,0,0,0,0,'0-0-1','5ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-11 19:57:38','','0000-00-00 00:00:00'),(9698,0,0,'I',2815,'I002815',2526,1,'0000-00-00','51623',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-11 20:02:35','drjayant','2025-12-11 20:02:54'),(9699,0,0,'I',2815,'I002815',2526,2,'0000-00-00','51403',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-11 20:02:35','drjayant','2025-12-11 20:02:54'),(9700,0,0,'I',2815,'I002815',2526,3,'0000-00-00','51435',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-11 20:02:35','drjayant','2025-12-11 20:02:54'),(9701,0,0,'I',2815,'I002815',2526,4,'0000-00-00','51422',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-11 20:02:54','','0000-00-00 00:00:00'),(9702,0,0,'I',2816,'I002816',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 20:04:23','','0000-00-00 00:00:00'),(9703,0,0,'I',2816,'I002816',2526,2,'0000-00-00','51263',0,0,'TAB','','','','',0,30,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 20:04:23','','0000-00-00 00:00:00'),(9704,0,0,'I',2816,'I002816',2526,3,'0000-00-00','51324',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 20:04:23','','0000-00-00 00:00:00'),(9705,0,0,'I',2816,'I002816',2526,4,'0000-00-00','51244',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 20:04:23','','0000-00-00 00:00:00'),(9706,0,0,'I',2816,'I002816',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-11 20:04:23','','0000-00-00 00:00:00'),(9707,0,0,'I',2817,'I002817',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-12 10:46:54','darshan','2025-12-12 10:48:01'),(9708,0,0,'I',2817,'I002817',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 10:46:54','darshan','2025-12-12 10:48:01'),(9709,0,0,'I',2817,'I002817',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 10:46:54','darshan','2025-12-12 10:48:01'),(9710,0,0,'I',2817,'I002817',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-12 10:48:01','','0000-00-00 00:00:00'),(9711,0,0,'I',2818,'I002818',2526,1,'0000-00-00','51191',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-12 10:53:11','darshan','2025-12-12 10:53:42'),(9712,0,0,'I',2818,'I002818',2526,2,'0000-00-00','51215',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 10:53:11','darshan','2025-12-12 10:53:42'),(9713,0,0,'I',2818,'I002818',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 10:53:11','darshan','2025-12-12 10:53:42'),(9715,0,0,'I',2819,'I002819',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 10:56:48','darshan','2025-12-12 10:57:06'),(9716,0,0,'I',2819,'I002819',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-12 10:56:48','darshan','2025-12-12 10:57:06'),(9717,0,0,'I',2820,'I002820',2526,1,'0000-00-00','51538',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-12 11:12:01','drarchit','2025-12-12 11:12:22'),(9718,0,0,'I',2820,'I002820',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 11:12:01','drarchit','2025-12-12 11:12:22'),(9719,0,0,'I',2820,'I002820',2526,3,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 11:12:01','drarchit','2025-12-12 11:12:22'),(9720,0,0,'I',2820,'I002820',2526,4,'0000-00-00','51341',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 11:12:01','drarchit','2025-12-12 11:12:22'),(9721,0,0,'I',2820,'I002820',2526,5,'0000-00-00','51214',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-12 11:12:01','drarchit','2025-12-12 11:12:22'),(9722,0,0,'I',2820,'I002820',2526,6,'0000-00-00','51359',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 11:12:01','drarchit','2025-12-12 11:12:22'),(9723,0,0,'I',2820,'I002820',2526,7,'0000-00-00','51237',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 11:12:01','drarchit','2025-12-12 11:12:22'),(9724,0,0,'I',2820,'I002820',2526,8,'0000-00-00','51338',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 11:12:01','drarchit','2025-12-12 11:12:22'),(9725,0,0,'I',2820,'I002820',2526,9,'0000-00-00','51223',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-12 11:12:01','drarchit','2025-12-12 11:12:22'),(9726,0,0,'I',2821,'I002821',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 11:31:06','darshan','2025-12-12 11:31:29'),(9728,0,0,'I',2821,'I002821',2526,2,'0000-00-00','51234',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-12 11:31:15','darshan','2025-12-12 11:31:29'),(9729,0,0,'I',2821,'I002821',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-12 11:31:29','','0000-00-00 00:00:00'),(9730,0,0,'I',2822,'I002822',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 11:34:45','darshan','2025-12-12 11:35:18'),(9731,0,0,'I',2822,'I002822',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 11:34:45','darshan','2025-12-12 11:35:18'),(9732,0,0,'I',2822,'I002822',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 11:34:45','darshan','2025-12-12 11:35:18'),(9734,0,0,'I',2822,'I002822',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-12 11:35:00','darshan','2025-12-12 11:35:18'),(9735,0,0,'I',2822,'I002822',2526,5,'0000-00-00','51219',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'darshan','2025-12-12 11:35:18','','0000-00-00 00:00:00'),(9736,0,0,'I',2823,'I002823',2526,1,'0000-00-00','51223',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-12 11:36:35','drarchit','2025-12-12 11:37:28'),(9737,0,0,'I',2823,'I002823',2526,2,'0000-00-00','51389',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-12-12 11:36:35','drarchit','2025-12-12 11:37:28'),(9741,0,0,'I',2823,'I002823',2526,3,'0000-00-00','51516',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 11:36:35','drarchit','2025-12-12 11:37:28'),(9743,0,0,'I',2824,'I002824',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-12 11:36:53','drjayant','2025-12-15 12:32:51'),(9744,0,0,'I',2824,'I002824',2526,2,'0000-00-00','51296',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-12 11:36:53','drjayant','2025-12-15 12:32:51'),(9745,0,0,'I',2823,'I002823',2526,4,'0000-00-00','51536',0,0,'TAB','','','','',0,12,0,0,0,0,'1-0-0','','Wk',12,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 11:37:23','drarchit','2025-12-12 11:37:28'),(9746,0,0,'I',2823,'I002823',2526,5,'0000-00-00','51537',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 11:37:23','drarchit','2025-12-12 11:37:28'),(9747,0,0,'I',2825,'I002825',2526,1,'0000-00-00','51575',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-12 11:39:31','','0000-00-00 00:00:00'),(9748,0,0,'I',2826,'I002826',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 11:51:57','','0000-00-00 00:00:00'),(9749,0,0,'I',2826,'I002826',2526,2,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 11:51:57','','0000-00-00 00:00:00'),(9750,0,0,'I',2827,'I002827',2526,1,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 11:52:26','','0000-00-00 00:00:00'),(9751,0,0,'I',2827,'I002827',2526,2,'0000-00-00','51332',0,0,'CAP','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 11:52:26','','0000-00-00 00:00:00'),(9752,0,0,'I',2827,'I002827',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-12 11:52:26','','0000-00-00 00:00:00'),(9753,0,0,'I',2827,'I002827',2526,4,'0000-00-00','51480',0,0,'TAB','','','','',0,9,0,0,0,0,'1-1-1','','Dy',3,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-12 11:52:26','','0000-00-00 00:00:00'),(9754,0,0,'I',2827,'I002827',2526,5,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-12-12 11:52:26','','0000-00-00 00:00:00'),(9755,0,0,'I',2827,'I002827',2526,6,'0000-00-00','51230',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 11:52:26','','0000-00-00 00:00:00'),(9756,0,0,'I',2828,'I002828',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 11:54:15','darshan','2025-12-12 11:54:36'),(9757,0,0,'I',2829,'I002829',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 11:55:52','darshan','2025-12-12 11:56:53'),(9758,0,0,'I',2829,'I002829',2526,2,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-12 11:55:52','darshan','2025-12-12 11:56:53'),(9759,0,0,'I',2829,'I002829',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 11:55:52','darshan','2025-12-12 11:56:53'),(9760,0,0,'I',2829,'I002829',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-12 11:55:52','darshan','2025-12-12 11:56:53'),(9761,0,0,'I',2829,'I002829',2526,5,'0000-00-00','51322',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 11:55:52','darshan','2025-12-12 11:56:53'),(9762,0,0,'I',2829,'I002829',2526,6,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-12 11:56:53','','0000-00-00 00:00:00'),(9763,0,0,'I',2830,'I002830',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:01:20','darshan','2025-12-12 12:01:30'),(9764,0,0,'I',2830,'I002830',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:01:20','darshan','2025-12-12 12:01:30'),(9765,0,0,'I',2831,'I002831',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:11:39','darshan','2025-12-12 12:12:24'),(9766,0,0,'I',2831,'I002831',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:11:39','darshan','2025-12-12 12:12:24'),(9767,0,0,'I',2831,'I002831',2526,3,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-12 12:11:39','darshan','2025-12-12 12:12:24'),(9768,0,0,'I',2831,'I002831',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-12 12:11:39','darshan','2025-12-12 12:12:24'),(9769,0,0,'I',2831,'I002831',2526,5,'0000-00-00','51322',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:12:24','','0000-00-00 00:00:00'),(9770,0,0,'I',2832,'I002832',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:15:57','darshan','2025-12-12 12:16:41'),(9771,0,0,'I',2832,'I002832',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:15:57','darshan','2025-12-12 12:16:41'),(9772,0,0,'I',2832,'I002832',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:15:57','darshan','2025-12-12 12:16:41'),(9775,0,0,'I',2833,'I002833',2526,1,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-12 12:17:54','drarchit','2025-12-12 12:18:35'),(9776,0,0,'I',2833,'I002833',2526,2,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 12:17:54','drarchit','2025-12-12 12:18:35'),(9777,0,0,'I',2833,'I002833',2526,3,'0000-00-00','51343',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-12 12:17:54','drarchit','2025-12-12 12:18:35'),(9778,0,0,'I',2833,'I002833',2526,4,'0000-00-00','51477',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'drarchit','2025-12-12 12:18:35','','0000-00-00 00:00:00'),(9779,0,0,'I',2833,'I002833',2526,5,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-12 12:18:35','','0000-00-00 00:00:00'),(9780,0,0,'I',2834,'I002834',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:23:22','','0000-00-00 00:00:00'),(9781,0,0,'I',2835,'I002835',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-12 12:23:52','','0000-00-00 00:00:00'),(9782,0,0,'I',2835,'I002835',2526,2,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 12:23:52','','0000-00-00 00:00:00'),(9783,0,0,'I',2836,'I002836',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-12 12:27:06','darshan','2025-12-12 12:27:33'),(9784,0,0,'I',2836,'I002836',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:27:06','darshan','2025-12-12 12:27:33'),(9785,0,0,'I',2836,'I002836',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:27:06','darshan','2025-12-12 12:27:33'),(9786,0,0,'I',2836,'I002836',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:27:33','','0000-00-00 00:00:00'),(9792,0,0,'I',2838,'I002838',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:30:01','darshan','2025-12-12 12:30:13'),(9793,0,0,'I',2838,'I002838',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-12 12:30:01','darshan','2025-12-12 12:30:13'),(9794,0,0,'I',2839,'I002839',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:34:48','','0000-00-00 00:00:00'),(9795,0,0,'I',2839,'I002839',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:34:48','','0000-00-00 00:00:00'),(9796,0,0,'I',2839,'I002839',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:34:48','','0000-00-00 00:00:00'),(9797,0,0,'I',2839,'I002839',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-12 12:34:48','','0000-00-00 00:00:00'),(9798,0,0,'I',2839,'I002839',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-12 12:34:48','','0000-00-00 00:00:00'),(9799,0,0,'I',2840,'I002840',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:38:04','darshan','2025-12-12 12:38:23'),(9801,0,0,'I',2840,'I002840',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:38:04','darshan','2025-12-12 12:38:23'),(9803,0,0,'I',2841,'I002841',2526,1,'0000-00-00','51321',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 12:39:09','','0000-00-00 00:00:00'),(9804,0,0,'I',2841,'I002841',2526,2,'0000-00-00','51379',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 12:39:09','','0000-00-00 00:00:00'),(9805,0,0,'I',2841,'I002841',2526,3,'0000-00-00','51380',0,0,'CAP','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 12:39:09','','0000-00-00 00:00:00'),(9806,0,0,'I',2841,'I002841',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-12 12:39:09','','0000-00-00 00:00:00'),(9808,0,0,'I',2842,'I002842',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:40:56','darshan','2025-12-12 12:41:42'),(9810,0,0,'I',2842,'I002842',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:41:15','darshan','2025-12-12 12:41:42'),(9811,0,0,'I',2843,'I002843',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:46:34','','0000-00-00 00:00:00'),(9812,0,0,'I',2843,'I002843',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 12:46:34','','0000-00-00 00:00:00'),(9813,0,0,'I',2844,'I002844',2526,1,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-12 12:48:34','drarchit','2025-12-12 12:48:53'),(9814,0,0,'I',2844,'I002844',2526,2,'0000-00-00','51389',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-12-12 12:48:34','drarchit','2025-12-12 12:48:53'),(9815,0,0,'I',2844,'I002844',2526,3,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 12:48:34','drarchit','2025-12-12 12:48:53'),(9816,0,0,'I',2844,'I002844',2526,4,'0000-00-00','51406',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 12:48:34','drarchit','2025-12-12 12:48:53'),(9819,0,0,'I',2844,'I002844',2526,5,'0000-00-00','51407',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 12:48:53','','0000-00-00 00:00:00'),(9820,0,0,'I',2845,'I002845',2526,1,'0000-00-00','51550',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-12 12:51:06','drarchit','2025-12-12 12:51:26'),(9821,0,0,'I',2845,'I002845',2526,2,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-12 12:51:26','','0000-00-00 00:00:00'),(9822,0,0,'I',2845,'I002845',2526,3,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 12:51:26','','0000-00-00 00:00:00'),(9823,0,0,'I',2845,'I002845',2526,4,'0000-00-00','51313',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 12:51:26','','0000-00-00 00:00:00'),(9824,0,0,'I',2846,'I002846',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 12:57:49','drarchit','2025-12-12 12:57:58'),(9825,0,0,'I',2846,'I002846',2526,2,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 12:57:49','drarchit','2025-12-12 12:57:58'),(9826,0,0,'I',2846,'I002846',2526,3,'0000-00-00','51232',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 12:57:49','drarchit','2025-12-12 12:57:58'),(9827,0,0,'I',2846,'I002846',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-12 12:57:58','','0000-00-00 00:00:00'),(9828,0,0,'I',2846,'I002846',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-12 12:57:58','','0000-00-00 00:00:00'),(9829,0,0,'I',2847,'I002847',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-12 13:01:04','','0000-00-00 00:00:00'),(9830,0,0,'I',2847,'I002847',2526,2,'0000-00-00','51312',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-12-12 13:01:04','','0000-00-00 00:00:00'),(9831,0,0,'I',2847,'I002847',2526,3,'0000-00-00','51407',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 13:01:04','','0000-00-00 00:00:00'),(9832,0,0,'I',2847,'I002847',2526,4,'0000-00-00','51406',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 13:01:04','','0000-00-00 00:00:00'),(9833,0,0,'I',2847,'I002847',2526,5,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 13:01:04','','0000-00-00 00:00:00'),(9834,0,0,'I',2847,'I002847',2526,6,'0000-00-00','51219',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-12-12 13:01:04','','0000-00-00 00:00:00'),(9835,0,0,'I',2847,'I002847',2526,7,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 13:01:04','','0000-00-00 00:00:00'),(9836,0,0,'I',2847,'I002847',2526,8,'0000-00-00','51267',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 13:01:04','','0000-00-00 00:00:00'),(9837,0,0,'I',2848,'I002848',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 13:04:23','','0000-00-00 00:00:00'),(9838,0,0,'I',2848,'I002848',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 13:04:23','','0000-00-00 00:00:00'),(9839,0,0,'I',2848,'I002848',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 13:04:23','','0000-00-00 00:00:00'),(9840,0,0,'I',2848,'I002848',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-12 13:04:23','','0000-00-00 00:00:00'),(9841,0,0,'I',2849,'I002849',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 13:08:02','','0000-00-00 00:00:00'),(9842,0,0,'I',2849,'I002849',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 13:08:02','','0000-00-00 00:00:00'),(9843,0,0,'I',2850,'I002850',2526,1,'0000-00-00','51349',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-0','','Dy',0,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-12-12 13:14:00','','0000-00-00 00:00:00'),(9844,0,0,'I',2851,'I002851',2526,1,'0000-00-00','51466',0,0,'TAB','','','','',0,12,0,0,0,6,'','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-12 13:34:29','darshan','2025-12-12 13:35:27'),(9845,0,0,'I',2851,'I002851',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 13:34:29','darshan','2025-12-12 13:35:27'),(9846,0,0,'I',2851,'I002851',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 13:34:29','darshan','2025-12-12 13:35:27'),(9848,0,0,'I',2851,'I002851',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-12 13:34:29','darshan','2025-12-12 13:35:27'),(9849,0,0,'I',2851,'I002851',2526,5,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 13:35:19','darshan','2025-12-12 13:35:27'),(9850,0,0,'I',2851,'I002851',2526,6,'0000-00-00','51197',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 13:35:27','','0000-00-00 00:00:00'),(9851,0,0,'I',2852,'I002852',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 13:54:50','','0000-00-00 00:00:00'),(9852,0,0,'I',2852,'I002852',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 13:54:50','','0000-00-00 00:00:00'),(9853,0,0,'I',2852,'I002852',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 13:54:50','','0000-00-00 00:00:00'),(9854,0,0,'I',2853,'I002853',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 17:08:44','darshan','2025-12-12 17:08:54'),(9855,0,0,'I',2853,'I002853',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 17:08:44','darshan','2025-12-12 17:08:54'),(9856,0,0,'I',2854,'I002854',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 17:13:05','','0000-00-00 00:00:00'),(9857,0,0,'I',2854,'I002854',2526,2,'0000-00-00','51334',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 17:13:05','','0000-00-00 00:00:00'),(9858,0,0,'I',2855,'I002855',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,90,0,0,0,0,'.5-0-.5','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 17:37:36','darshan','2025-12-12 17:37:56'),(9859,0,0,'I',2855,'I002855',2526,2,'0000-00-00','51196',0,0,'TAB','','','','',0,15,0,0,0,0,'','','Dy',90,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-12 17:37:36','darshan','2025-12-12 17:37:56'),(9860,0,0,'I',2855,'I002855',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',90,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-12 17:37:36','darshan','2025-12-12 17:37:56'),(9861,0,0,'I',2855,'I002855',2526,4,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 17:37:41','darshan','2025-12-12 17:37:56'),(9862,0,0,'I',2856,'I002856',2526,1,'0000-00-00','51624',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 17:41:18','','0000-00-00 00:00:00'),(9863,0,0,'I',2857,'I002857',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:00:27','','0000-00-00 00:00:00'),(9864,0,0,'I',2857,'I002857',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:00:27','','0000-00-00 00:00:00'),(9865,0,0,'I',2858,'I002858',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:03:22','darshan','2025-12-12 18:03:33'),(9866,0,0,'I',2858,'I002858',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:03:22','darshan','2025-12-12 18:03:33'),(9867,0,0,'I',2859,'I002859',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-12 18:07:30','','0000-00-00 00:00:00'),(9868,0,0,'I',2859,'I002859',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:07:30','','0000-00-00 00:00:00'),(9869,0,0,'I',2859,'I002859',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:07:30','','0000-00-00 00:00:00'),(9870,0,0,'I',2860,'I002860',2526,1,'0000-00-00','51498',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 18:10:11','','0000-00-00 00:00:00'),(9871,0,0,'I',2860,'I002860',2526,2,'0000-00-00','51354',0,0,'CAP','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 18:10:11','','0000-00-00 00:00:00'),(9872,0,0,'I',2860,'I002860',2526,3,'0000-00-00','51372',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 18:10:11','','0000-00-00 00:00:00'),(9873,0,0,'I',2860,'I002860',2526,4,'0000-00-00','51269',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 18:10:11','','0000-00-00 00:00:00'),(9874,0,0,'I',2860,'I002860',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-12 18:10:11','','0000-00-00 00:00:00'),(9875,0,0,'I',2861,'I002861',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:14:03','darshan','2025-12-12 18:14:28'),(9876,0,0,'I',2861,'I002861',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:14:03','darshan','2025-12-12 18:14:28'),(9877,0,0,'I',2861,'I002861',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:14:03','darshan','2025-12-12 18:14:28'),(9879,0,0,'I',2862,'I002862',2526,1,'0000-00-00','51267',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 18:14:20','drarchit','2025-12-12 18:14:28'),(9880,0,0,'I',2862,'I002862',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-12 18:14:20','drarchit','2025-12-12 18:14:28'),(9881,0,0,'I',2862,'I002862',2526,3,'0000-00-00','51219',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-12-12 18:14:20','drarchit','2025-12-12 18:14:28'),(9882,0,0,'I',2861,'I002861',2526,4,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-1-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:14:28','','0000-00-00 00:00:00'),(9883,0,0,'I',2861,'I002861',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-12 18:14:28','','0000-00-00 00:00:00'),(9884,0,0,'I',2863,'I002863',2526,1,'0000-00-00','51506',0,0,'TAB','','','','',0,200,0,0,0,0,'2-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'drarchit','2025-12-12 18:31:51','drarchit','2025-12-12 18:33:38'),(9885,0,0,'I',2863,'I002863',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 18:32:25','drarchit','2025-12-12 18:33:38'),(9887,0,0,'I',2863,'I002863',2526,3,'0000-00-00','51594',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 18:33:38','','0000-00-00 00:00:00'),(9888,0,0,'I',2863,'I002863',2526,4,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 18:33:38','','0000-00-00 00:00:00'),(9889,0,0,'I',2864,'I002864',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:34:07','','0000-00-00 00:00:00'),(9890,0,0,'I',2864,'I002864',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:34:07','','0000-00-00 00:00:00'),(9891,0,0,'I',2865,'I002865',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:38:19','','0000-00-00 00:00:00'),(9892,0,0,'I',2865,'I002865',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:38:19','','0000-00-00 00:00:00'),(9893,0,0,'I',2865,'I002865',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-12 18:38:19','','0000-00-00 00:00:00'),(9894,0,0,'I',2866,'I002866',2526,1,'0000-00-00','51602',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 18:40:47','','0000-00-00 00:00:00'),(9895,0,0,'I',2866,'I002866',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-12 18:40:47','','0000-00-00 00:00:00'),(9896,0,0,'I',2866,'I002866',2526,3,'0000-00-00','51484',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-12 18:40:47','','0000-00-00 00:00:00'),(9897,0,0,'I',2866,'I002866',2526,4,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 18:40:47','','0000-00-00 00:00:00'),(9898,0,0,'I',2867,'I002867',2526,1,'0000-00-00','51296',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-12 18:44:36','drjayant','2025-12-12 18:45:41'),(9899,0,0,'I',2867,'I002867',2526,2,'0000-00-00','51409',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-12 18:44:36','drjayant','2025-12-12 18:45:41'),(9900,0,0,'I',2867,'I002867',2526,3,'0000-00-00','51376',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-12 18:44:36','drjayant','2025-12-12 18:45:41'),(9901,0,0,'I',2867,'I002867',2526,4,'0000-00-00','51320',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-12 18:44:36','drjayant','2025-12-12 18:45:41'),(9902,0,0,'I',2867,'I002867',2526,5,'0000-00-00','51625',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-12 18:45:41','','0000-00-00 00:00:00'),(9904,0,0,'I',2868,'I002868',2526,1,'0000-00-00','51535',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 18:48:10','drarchit','2025-12-12 18:49:49'),(9905,0,0,'I',2868,'I002868',2526,2,'0000-00-00','51477',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'drarchit','2025-12-12 18:48:10','drarchit','2025-12-12 18:49:49'),(9906,0,0,'I',2868,'I002868',2526,3,'0000-00-00','51273',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 18:48:54','drarchit','2025-12-12 18:49:49'),(9907,0,0,'I',2868,'I002868',2526,4,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-12 18:48:54','drarchit','2025-12-12 18:49:49'),(9908,0,0,'I',2868,'I002868',2526,5,'0000-00-00','51237',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 18:48:54','drarchit','2025-12-12 18:49:49'),(9909,0,0,'I',2869,'I002869',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:49:19','','0000-00-00 00:00:00'),(9910,0,0,'I',2869,'I002869',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:49:19','','0000-00-00 00:00:00'),(9911,0,0,'I',2869,'I002869',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-12 18:49:19','','0000-00-00 00:00:00'),(9912,0,0,'I',2868,'I002868',2526,6,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 18:49:49','','0000-00-00 00:00:00'),(9913,0,0,'I',2870,'I002870',2526,1,'0000-00-00','51619',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-12 18:51:20','','0000-00-00 00:00:00'),(9914,0,0,'I',2870,'I002870',2526,2,'0000-00-00','51422',0,0,'CAP','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-12 18:51:20','','0000-00-00 00:00:00'),(9915,0,0,'I',2870,'I002870',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-12 18:51:20','','0000-00-00 00:00:00'),(9916,0,0,'I',2870,'I002870',2526,4,'0000-00-00','51600',0,0,'TAB','','','','',0,3,0,0,0,0,'0-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-12 18:51:20','','0000-00-00 00:00:00'),(9917,0,0,'I',2870,'I002870',2526,5,'0000-00-00','51435',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-12 18:51:20','','0000-00-00 00:00:00'),(9918,0,0,'I',2870,'I002870',2526,6,'0000-00-00','51614',0,0,'SYRUP','','','','',0,1,0,0,0,0,'5-5-5','','Dy',3,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-12-12 18:51:20','','0000-00-00 00:00:00'),(9919,0,0,'I',2871,'I002871',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:53:14','','0000-00-00 00:00:00'),(9920,0,0,'I',2871,'I002871',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:53:14','','0000-00-00 00:00:00'),(9921,0,0,'I',2872,'I002872',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 18:56:44','','0000-00-00 00:00:00'),(9922,0,0,'I',2872,'I002872',2526,2,'0000-00-00','51412',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 18:56:44','','0000-00-00 00:00:00'),(9923,0,0,'I',2872,'I002872',2526,3,'0000-00-00','51359',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 18:56:44','','0000-00-00 00:00:00'),(9924,0,0,'I',2872,'I002872',2526,4,'0000-00-00','51329',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-12 18:56:44','','0000-00-00 00:00:00'),(9925,0,0,'I',2872,'I002872',2526,5,'0000-00-00','51297',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 18:56:44','','0000-00-00 00:00:00'),(9926,0,0,'I',2780,'I002780',2526,3,'0000-00-00','51430',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-12 18:57:37','drjayant','2025-12-12 18:59:17'),(9927,0,0,'I',2780,'I002780',2526,4,'0000-00-00','51589',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-12 18:57:37','drjayant','2025-12-12 18:59:17'),(9928,0,0,'I',2780,'I002780',2526,5,'0000-00-00','51576',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-12 18:57:37','drjayant','2025-12-12 18:59:17'),(9929,0,0,'I',2780,'I002780',2526,6,'0000-00-00','51597',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-12 18:59:17','','0000-00-00 00:00:00'),(9930,0,0,'I',2780,'I002780',2526,7,'0000-00-00','51626',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-12 18:59:17','','0000-00-00 00:00:00'),(9931,0,0,'I',2873,'I002873',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-12 18:59:26','','0000-00-00 00:00:00'),(9932,0,0,'I',2873,'I002873',2526,2,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:59:26','','0000-00-00 00:00:00'),(9933,0,0,'I',2873,'I002873',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 18:59:26','','0000-00-00 00:00:00'),(9934,0,0,'I',2874,'I002874',2526,1,'0000-00-00','51273',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:03:18','','0000-00-00 00:00:00'),(9935,0,0,'I',2874,'I002874',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-12 19:03:18','','0000-00-00 00:00:00'),(9936,0,0,'I',2875,'I002875',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-12 19:06:16','drjayant','2025-12-12 19:06:36'),(9937,0,0,'I',2875,'I002875',2526,2,'0000-00-00','51376',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-12 19:06:16','drjayant','2025-12-12 19:06:36'),(9938,0,0,'I',2875,'I002875',2526,3,'0000-00-00','51296',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-12 19:06:16','drjayant','2025-12-12 19:06:36'),(9939,0,0,'I',2875,'I002875',2526,4,'0000-00-00','51576',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-12 19:06:16','drjayant','2025-12-12 19:06:36'),(9940,0,0,'I',2876,'I002876',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-12 19:07:04','darshan','2025-12-12 19:07:30'),(9941,0,0,'I',2876,'I002876',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 19:07:20','darshan','2025-12-12 19:07:30'),(9942,0,0,'I',2876,'I002876',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 19:07:20','darshan','2025-12-12 19:07:30'),(9944,0,0,'I',2877,'I002877',2526,2,'0000-00-00','51484',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-12 19:10:10','drarchit','2025-12-12 19:10:37'),(9945,0,0,'I',2877,'I002877',2526,3,'0000-00-00','51228',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-12 19:10:10','drarchit','2025-12-12 19:10:37'),(9946,0,0,'I',2877,'I002877',2526,4,'0000-00-00','51248',0,0,'CAP','','','','',0,12,0,0,0,0,'1-0-0','','Wk',12,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:10:10','drarchit','2025-12-12 19:10:37'),(9947,0,0,'I',2877,'I002877',2526,5,'0000-00-00','51219',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-12-12 19:10:10','drarchit','2025-12-12 19:10:37'),(9948,0,0,'I',2877,'I002877',2526,6,'0000-00-00','51590',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:10:10','drarchit','2025-12-12 19:10:37'),(9949,0,0,'I',2878,'I002878',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 19:11:58','','0000-00-00 00:00:00'),(9950,0,0,'I',2878,'I002878',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 19:11:58','','0000-00-00 00:00:00'),(9951,0,0,'I',2879,'I002879',2526,1,'0000-00-00','51617',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-12 19:12:02','','0000-00-00 00:00:00'),(9952,0,0,'I',2880,'I002880',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 19:16:34','darshan','2025-12-12 19:16:46'),(9953,0,0,'I',2880,'I002880',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 19:16:34','darshan','2025-12-12 19:16:46'),(9954,0,0,'I',2880,'I002880',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 19:16:34','darshan','2025-12-12 19:16:46'),(9955,0,0,'I',2880,'I002880',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-12 19:16:46','','0000-00-00 00:00:00'),(9956,0,0,'I',2881,'I002881',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:21:58','','0000-00-00 00:00:00'),(9957,0,0,'I',2881,'I002881',2526,2,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-12 19:21:58','','0000-00-00 00:00:00'),(9958,0,0,'I',2881,'I002881',2526,3,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:21:58','','0000-00-00 00:00:00'),(9959,0,0,'I',2881,'I002881',2526,4,'0000-00-00','51517',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:21:58','','0000-00-00 00:00:00'),(9960,0,0,'I',2881,'I002881',2526,5,'0000-00-00','51384',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:21:58','','0000-00-00 00:00:00'),(9961,0,0,'I',2882,'I002882',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 19:23:46','','0000-00-00 00:00:00'),(9962,0,0,'I',2882,'I002882',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 19:23:46','','0000-00-00 00:00:00'),(9963,0,0,'I',2883,'I002883',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-12 19:27:35','darshan','2025-12-12 19:27:54'),(9964,0,0,'I',2883,'I002883',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 19:27:35','darshan','2025-12-12 19:27:54'),(9965,0,0,'I',2883,'I002883',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 19:27:35','darshan','2025-12-12 19:27:54'),(9966,0,0,'I',2883,'I002883',2526,4,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-12 19:27:35','darshan','2025-12-12 19:27:54'),(9967,0,0,'I',2883,'I002883',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-12 19:27:35','darshan','2025-12-12 19:27:54'),(9968,0,0,'I',2883,'I002883',2526,6,'0000-00-00','51322',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 19:27:54','','0000-00-00 00:00:00'),(9969,0,0,'I',2884,'I002884',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:28:25','drarchit','2025-12-12 19:28:41'),(9970,0,0,'I',2884,'I002884',2526,2,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:28:25','drarchit','2025-12-12 19:28:41'),(9973,0,0,'I',2884,'I002884',2526,3,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-12 19:28:41','','0000-00-00 00:00:00'),(9974,0,0,'I',2885,'I002885',2526,1,'0000-00-00','51286',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:31:14','drarchit','2025-12-12 19:31:55'),(9975,0,0,'I',2885,'I002885',2526,2,'0000-00-00','51389',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-12-12 19:31:14','drarchit','2025-12-12 19:31:55'),(9977,0,0,'I',2885,'I002885',2526,3,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:31:55','','0000-00-00 00:00:00'),(9978,0,0,'I',2885,'I002885',2526,4,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:31:55','','0000-00-00 00:00:00'),(9979,0,0,'I',2885,'I002885',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-12 19:31:55','','0000-00-00 00:00:00'),(9980,0,0,'I',2886,'I002886',2526,1,'0000-00-00','51373',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:36:02','','0000-00-00 00:00:00'),(9981,0,0,'I',2886,'I002886',2526,2,'0000-00-00','51395',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:36:02','','0000-00-00 00:00:00'),(9982,0,0,'I',2886,'I002886',2526,3,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-12 19:36:02','','0000-00-00 00:00:00'),(9983,0,0,'I',2886,'I002886',2526,4,'0000-00-00','51372',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:36:02','','0000-00-00 00:00:00'),(9984,0,0,'I',2887,'I002887',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 19:39:26','darshan','2025-12-12 19:39:42'),(9986,0,0,'I',2887,'I002887',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 19:39:42','','0000-00-00 00:00:00'),(9987,0,0,'I',2888,'I002888',2526,1,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:40:38','','0000-00-00 00:00:00'),(9988,0,0,'I',2888,'I002888',2526,2,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:40:38','','0000-00-00 00:00:00'),(9989,0,0,'I',2888,'I002888',2526,3,'0000-00-00','51571',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:40:38','','0000-00-00 00:00:00'),(9990,0,0,'I',2888,'I002888',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-12 19:40:38','','0000-00-00 00:00:00'),(9991,0,0,'I',2888,'I002888',2526,5,'0000-00-00','51332',0,0,'CAP','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:40:38','','0000-00-00 00:00:00'),(9992,0,0,'I',2888,'I002888',2526,6,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-12 19:40:38','','0000-00-00 00:00:00'),(9993,0,0,'I',2889,'I002889',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-12 19:42:35','darshan','2025-12-12 19:43:20'),(9994,0,0,'I',2889,'I002889',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 19:42:35','darshan','2025-12-12 19:43:20'),(9995,0,0,'I',2889,'I002889',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 19:42:35','darshan','2025-12-12 19:43:20'),(9996,0,0,'I',2890,'I002890',2526,1,'0000-00-00','51273',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:45:54','','0000-00-00 00:00:00'),(9997,0,0,'I',2890,'I002890',2526,2,'0000-00-00','51237',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:45:54','','0000-00-00 00:00:00'),(9998,0,0,'I',2890,'I002890',2526,3,'0000-00-00','51555',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:45:54','','0000-00-00 00:00:00'),(9999,0,0,'I',2890,'I002890',2526,4,'0000-00-00','51272',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:45:54','','0000-00-00 00:00:00'),(10000,0,0,'I',2892,'I002892',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 19:50:06','','0000-00-00 00:00:00'),(10001,0,0,'I',2891,'I002891',2526,1,'0000-00-00','51505',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-12 19:50:21','drarchit','2025-12-12 19:52:45'),(10002,0,0,'I',2891,'I002891',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-12 19:50:21','drarchit','2025-12-12 19:52:45'),(10003,0,0,'I',2891,'I002891',2526,3,'0000-00-00','51367',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:51:09','drarchit','2025-12-12 19:52:45'),(10004,0,0,'I',2891,'I002891',2526,4,'0000-00-00','51627',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 19:52:45','','0000-00-00 00:00:00'),(10005,0,0,'I',2893,'I002893',2526,1,'0000-00-00','51387',0,0,'INJ','','','','',0,1,0,0,0,0,'20-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-12 20:06:54','','0000-00-00 00:00:00'),(10006,0,0,'I',2893,'I002893',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-12 20:06:54','','0000-00-00 00:00:00'),(10007,0,0,'I',2893,'I002893',2526,3,'0000-00-00','51507',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-12 20:06:54','','0000-00-00 00:00:00'),(10008,0,0,'I',2893,'I002893',2526,4,'0000-00-00','51389',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'191','','P',NULL,NULL,'drarchit','2025-12-12 20:06:54','','0000-00-00 00:00:00'),(10009,0,0,'I',2893,'I002893',2526,5,'0000-00-00','51407',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 20:06:54','','0000-00-00 00:00:00'),(10010,0,0,'I',2894,'I002894',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-12 20:07:56','','0000-00-00 00:00:00'),(10011,0,0,'I',2895,'I002895',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 20:12:12','drarchit','2025-12-12 20:12:41'),(10012,0,0,'I',2895,'I002895',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 20:12:12','drarchit','2025-12-12 20:12:41'),(10013,0,0,'I',2895,'I002895',2526,3,'0000-00-00','51219',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-12-12 20:12:12','drarchit','2025-12-12 20:12:41'),(10014,0,0,'I',2895,'I002895',2526,4,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-12 20:12:41','','0000-00-00 00:00:00'),(10015,0,0,'I',2896,'I002896',2526,1,'0000-00-00','51624',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 10:54:05','darshan','2025-12-13 10:56:05'),(10016,0,0,'I',2896,'I002896',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 10:54:05','darshan','2025-12-13 10:56:05'),(10018,0,0,'I',2896,'I002896',2526,3,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 10:54:05','darshan','2025-12-13 10:56:05'),(10019,0,0,'I',2896,'I002896',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-13 10:54:05','darshan','2025-12-13 10:56:05'),(10020,0,0,'I',2896,'I002896',2526,5,'0000-00-00','51224',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 10:56:05','','0000-00-00 00:00:00'),(10021,0,0,'I',2897,'I002897',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 10:59:50','darshan','2025-12-13 11:00:15'),(10022,0,0,'I',2897,'I002897',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-13 10:59:50','darshan','2025-12-13 11:00:15'),(10023,0,0,'I',2898,'I002898',2526,1,'0000-00-00','51466',0,0,'TAB','','','','',0,12,0,0,0,6,'','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-13 11:16:37','darshan','2025-12-13 11:17:10'),(10024,0,0,'I',2898,'I002898',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 11:16:37','darshan','2025-12-13 11:17:10'),(10025,0,0,'I',2898,'I002898',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-13 11:16:37','darshan','2025-12-13 11:17:10'),(10026,0,0,'I',2898,'I002898',2526,4,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 11:16:37','darshan','2025-12-13 11:17:10'),(10027,0,0,'I',2898,'I002898',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-13 11:16:37','darshan','2025-12-13 11:17:10'),(10028,0,0,'I',2898,'I002898',2526,6,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-13 11:17:10','','0000-00-00 00:00:00'),(10029,0,0,'I',2899,'I002899',2526,1,'0000-00-00','51338',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 11:18:38','','0000-00-00 00:00:00'),(10030,0,0,'I',2899,'I002899',2526,2,'0000-00-00','51421',0,0,'TAB','','','','',0,60,0,0,0,0,'1-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-13 11:18:38','','0000-00-00 00:00:00'),(10031,0,0,'I',2899,'I002899',2526,3,'0000-00-00','51538',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-13 11:18:38','','0000-00-00 00:00:00'),(10032,0,0,'I',2899,'I002899',2526,4,'0000-00-00','51464',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 11:18:38','','0000-00-00 00:00:00'),(10033,0,0,'I',2899,'I002899',2526,5,'0000-00-00','51492',0,0,'INJ','','','','',0,4,0,0,0,0,'0-26-16','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-13 11:18:38','','0000-00-00 00:00:00'),(10034,0,0,'I',2900,'I002900',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 11:20:33','darshan','2025-12-13 11:21:21'),(10036,0,0,'I',2900,'I002900',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 11:20:33','darshan','2025-12-13 11:21:21'),(10038,0,0,'I',2900,'I002900',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 11:20:55','darshan','2025-12-13 11:21:21'),(10039,0,0,'I',2901,'I002901',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-13 11:26:41','','0000-00-00 00:00:00'),(10040,0,0,'I',2902,'I002902',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-13 11:30:12','drjayant','2025-12-13 12:15:47'),(10041,0,0,'I',2902,'I002902',2526,2,'0000-00-00','51376',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-13 11:30:12','drjayant','2025-12-13 12:15:47'),(10042,0,0,'I',2902,'I002902',2526,3,'0000-00-00','51576',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-13 11:30:12','drjayant','2025-12-13 12:15:47'),(10043,0,0,'I',2903,'I002903',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 11:30:27','darshan','2025-12-13 11:30:50'),(10044,0,0,'I',2903,'I002903',2526,2,'0000-00-00','51624',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 11:30:27','darshan','2025-12-13 11:30:50'),(10045,0,0,'I',2903,'I002903',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 11:30:27','darshan','2025-12-13 11:30:50'),(10046,0,0,'I',2904,'I002904',2526,1,'0000-00-00','51628',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 11:39:04','drarchit','2025-12-13 11:39:53'),(10047,0,0,'I',2904,'I002904',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-13 11:39:04','drarchit','2025-12-13 11:39:53'),(10048,0,0,'I',2904,'I002904',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 11:39:53','','0000-00-00 00:00:00'),(10049,0,0,'I',2904,'I002904',2526,4,'0000-00-00','51629',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 11:39:53','','0000-00-00 00:00:00'),(10050,0,0,'I',2904,'I002904',2526,5,'0000-00-00','51269',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 11:39:53','','0000-00-00 00:00:00'),(10051,0,0,'I',2904,'I002904',2526,6,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-13 11:39:53','','0000-00-00 00:00:00'),(10052,0,0,'I',2905,'I002905',2526,1,'0000-00-00','51575',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-13 11:40:19','','0000-00-00 00:00:00'),(10053,0,0,'I',2905,'I002905',2526,2,'0000-00-00','51587',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-13 11:40:19','','0000-00-00 00:00:00'),(10054,0,0,'I',2906,'I002906',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 11:43:08','darshan','2025-12-13 13:16:22'),(10055,0,0,'I',2906,'I002906',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 11:43:08','darshan','2025-12-13 13:16:22'),(10056,0,0,'I',2907,'I002907',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-13 11:48:41','','0000-00-00 00:00:00'),(10057,0,0,'I',2907,'I002907',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 11:48:41','','0000-00-00 00:00:00'),(10058,0,0,'I',2907,'I002907',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-13 11:48:41','','0000-00-00 00:00:00'),(10059,0,0,'I',2907,'I002907',2526,4,'0000-00-00','51271',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 11:48:41','','0000-00-00 00:00:00'),(10060,0,0,'I',2907,'I002907',2526,5,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 11:48:41','','0000-00-00 00:00:00'),(10061,0,0,'I',2907,'I002907',2526,6,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-13 11:48:41','','0000-00-00 00:00:00'),(10062,0,0,'I',2908,'I002908',2526,1,'0000-00-00','51558',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 11:49:05','drarchit','2025-12-13 11:51:43'),(10063,0,0,'I',2908,'I002908',2526,2,'0000-00-00','51239',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-13 11:49:28','drarchit','2025-12-13 11:51:43'),(10064,0,0,'I',2908,'I002908',2526,3,'0000-00-00','51630',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 11:50:18','drarchit','2025-12-13 11:51:43'),(10065,0,0,'I',2908,'I002908',2526,4,'0000-00-00','51631',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 11:51:43','','0000-00-00 00:00:00'),(10066,0,0,'I',2908,'I002908',2526,5,'0000-00-00','51223',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-13 11:51:43','','0000-00-00 00:00:00'),(10067,0,0,'I',2908,'I002908',2526,6,'0000-00-00','51484',0,0,'TAB','','','','',0,120,0,0,0,0,'0-1-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-13 11:51:43','','0000-00-00 00:00:00'),(10068,0,0,'I',2908,'I002908',2526,7,'0000-00-00','51324',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 11:51:43','','0000-00-00 00:00:00'),(10069,0,0,'I',2909,'I002909',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 11:52:28','darshan','2025-12-13 11:53:48'),(10070,0,0,'I',2909,'I002909',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 11:52:28','darshan','2025-12-13 11:53:48'),(10071,0,0,'I',2909,'I002909',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 11:52:28','darshan','2025-12-13 11:53:48'),(10072,0,0,'I',2909,'I002909',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-13 11:53:48','','0000-00-00 00:00:00'),(10073,0,0,'I',2910,'I002910',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:05:04','drarchit','2025-12-13 12:05:11'),(10074,0,0,'I',2910,'I002910',2526,2,'0000-00-00','51300',0,0,'TAB','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'drarchit','2025-12-13 12:05:04','drarchit','2025-12-13 12:05:11'),(10075,0,0,'I',2910,'I002910',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-13 12:05:04','drarchit','2025-12-13 12:05:11'),(10076,0,0,'I',2910,'I002910',2526,4,'0000-00-00','51297',0,0,'TAB','','','','',0,3,0,0,0,0,'0-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:05:11','','0000-00-00 00:00:00'),(10077,0,0,'I',2912,'I002912',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 12:07:38','','0000-00-00 00:00:00'),(10078,0,0,'I',2912,'I002912',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 12:07:38','','0000-00-00 00:00:00'),(10079,0,0,'I',2912,'I002912',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-13 12:07:38','','0000-00-00 00:00:00'),(10080,0,0,'I',2913,'I002913',2526,1,'0000-00-00','51628',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:08:33','','0000-00-00 00:00:00'),(10081,0,0,'I',2913,'I002913',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-13 12:08:33','','0000-00-00 00:00:00'),(10082,0,0,'I',2913,'I002913',2526,3,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-13 12:08:33','','0000-00-00 00:00:00'),(10083,0,0,'I',2913,'I002913',2526,4,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:08:33','','0000-00-00 00:00:00'),(10084,0,0,'I',2913,'I002913',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-13 12:08:33','','0000-00-00 00:00:00'),(10085,0,0,'I',2913,'I002913',2526,6,'0000-00-00','51480',0,0,'TAB','','','','',0,9,0,0,0,0,'1-1-1','','Dy',3,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-13 12:08:33','','0000-00-00 00:00:00'),(10086,0,0,'I',2913,'I002913',2526,7,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:08:33','','0000-00-00 00:00:00'),(10087,0,0,'I',2911,'I002911',2526,1,'0000-00-00','51632',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-13 12:09:15','drjayant','2025-12-13 12:09:37'),(10088,0,0,'I',2911,'I002911',2526,2,'0000-00-00','51409',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-13 12:09:15','drjayant','2025-12-13 12:09:37'),(10089,0,0,'I',2911,'I002911',2526,3,'0000-00-00','51443',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-13 12:09:37','','0000-00-00 00:00:00'),(10090,0,0,'I',2914,'I002914',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 12:11:07','','0000-00-00 00:00:00'),(10091,0,0,'I',2914,'I002914',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 12:11:07','','0000-00-00 00:00:00'),(10092,0,0,'I',2914,'I002914',2526,3,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-13 12:11:07','','0000-00-00 00:00:00'),(10093,0,0,'I',2902,'I002902',2526,4,'0000-00-00','51588',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-13 12:15:47','','0000-00-00 00:00:00'),(10095,0,0,'I',2915,'I002915',2526,1,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:19:57','drarchit','2025-12-13 12:20:39'),(10096,0,0,'I',2915,'I002915',2526,2,'0000-00-00','51332',0,0,'CAP','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:19:57','drarchit','2025-12-13 12:20:39'),(10097,0,0,'I',2915,'I002915',2526,3,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-12-13 12:19:57','drarchit','2025-12-13 12:20:39'),(10098,0,0,'I',2915,'I002915',2526,4,'0000-00-00','51326',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:19:57','drarchit','2025-12-13 12:20:39'),(10099,0,0,'I',2915,'I002915',2526,5,'0000-00-00','51374',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-13 12:19:57','drarchit','2025-12-13 12:20:39'),(10100,0,0,'I',2915,'I002915',2526,6,'0000-00-00','51232',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:20:39','','0000-00-00 00:00:00'),(10101,0,0,'I',2916,'I002916',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-13 12:23:05','darshan','2025-12-13 12:23:37'),(10102,0,0,'I',2916,'I002916',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 12:23:05','darshan','2025-12-13 12:23:37'),(10104,0,0,'I',2917,'I002917',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,5,0,0,0,0,'.5-0-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 12:28:28','darshan','2025-12-13 12:28:36'),(10105,0,0,'I',2917,'I002917',2526,2,'0000-00-00','51252',0,0,'SYRUP','','','','',0,1,0,0,0,0,'1-1-1','8 ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 12:28:28','darshan','2025-12-13 12:28:36'),(10106,0,0,'I',2917,'I002917',2526,3,'0000-00-00','51245',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-13 12:28:28','darshan','2025-12-13 12:28:36'),(10107,0,0,'I',2917,'I002917',2526,4,'0000-00-00','51447',0,0,'SYRUP','','','','',0,1,0,0,0,0,'0-0-1','8 ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 12:28:28','darshan','2025-12-13 12:28:36'),(10108,0,0,'I',2918,'I002918',2526,1,'0000-00-00','51563',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-13 12:29:22','','0000-00-00 00:00:00'),(10109,0,0,'I',2918,'I002918',2526,2,'0000-00-00','51304',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:29:22','','0000-00-00 00:00:00'),(10110,0,0,'I',2919,'I002919',2526,1,'0000-00-00','51628',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:34:41','drarchit','2025-12-13 12:35:35'),(10111,0,0,'I',2919,'I002919',2526,2,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:34:41','drarchit','2025-12-13 12:35:35'),(10112,0,0,'I',2919,'I002919',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-13 12:34:41','drarchit','2025-12-13 12:35:35'),(10114,0,0,'I',2920,'I002920',2526,1,'0000-00-00','51349',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-13 12:35:30','drjayant','2025-12-13 12:36:27'),(10115,0,0,'I',2920,'I002920',2526,2,'0000-00-00','51409',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-13 12:35:30','drjayant','2025-12-13 12:36:27'),(10116,0,0,'I',2920,'I002920',2526,3,'0000-00-00','51376',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-13 12:35:30','drjayant','2025-12-13 12:36:27'),(10117,0,0,'I',2920,'I002920',2526,4,'0000-00-00','51422',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-13 12:35:30','drjayant','2025-12-13 12:36:27'),(10118,0,0,'I',2919,'I002919',2526,4,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:35:35','','0000-00-00 00:00:00'),(10119,0,0,'I',2920,'I002920',2526,5,'0000-00-00','51459',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-13 12:36:27','','0000-00-00 00:00:00'),(10120,0,0,'I',2921,'I002921',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 12:40:30','','0000-00-00 00:00:00'),(10121,0,0,'I',2921,'I002921',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 12:40:30','','0000-00-00 00:00:00'),(10122,0,0,'I',2921,'I002921',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 12:40:30','','0000-00-00 00:00:00'),(10123,0,0,'I',2921,'I002921',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-13 12:40:30','','0000-00-00 00:00:00'),(10124,0,0,'I',2922,'I002922',2526,1,'0000-00-00','51429',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-13 12:43:24','drarchit','2025-12-13 12:43:39'),(10125,0,0,'I',2922,'I002922',2526,2,'0000-00-00','51436',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-0.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:43:24','drarchit','2025-12-13 12:43:39'),(10126,0,0,'I',2922,'I002922',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:43:39','','0000-00-00 00:00:00'),(10127,0,0,'I',2923,'I002923',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-13 12:52:16','drarchit','2025-12-13 12:52:22'),(10128,0,0,'I',2923,'I002923',2526,2,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-13 12:52:16','drarchit','2025-12-13 12:52:22'),(10129,0,0,'I',2923,'I002923',2526,3,'0000-00-00','51407',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:52:16','drarchit','2025-12-13 12:52:22'),(10131,0,0,'I',2923,'I002923',2526,5,'0000-00-00','51217',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:52:16','drarchit','2025-12-13 12:52:22'),(10132,0,0,'I',2923,'I002923',2526,6,'0000-00-00','51238',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:52:16','drarchit','2025-12-13 12:52:22'),(10133,0,0,'I',2923,'I002923',2526,7,'0000-00-00','51564',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:52:16','drarchit','2025-12-13 12:52:22'),(10134,0,0,'I',2924,'I002924',2526,1,'0000-00-00','51466',0,0,'TAB','','','','',0,12,0,0,0,6,'','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-13 12:53:42','darshan','2025-12-13 12:54:13'),(10135,0,0,'I',2924,'I002924',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 12:53:42','darshan','2025-12-13 12:54:13'),(10136,0,0,'I',2924,'I002924',2526,3,'0000-00-00','51211',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 12:53:42','darshan','2025-12-13 12:54:13'),(10137,0,0,'I',2924,'I002924',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-13 12:53:42','darshan','2025-12-13 12:54:13'),(10138,0,0,'I',2837,'I002837',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-13 12:56:54','drarchit','2025-12-13 12:58:38'),(10140,0,0,'I',2925,'I002925',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 12:57:52','','0000-00-00 00:00:00'),(10141,0,0,'I',2925,'I002925',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 12:57:52','','0000-00-00 00:00:00'),(10142,0,0,'I',2925,'I002925',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-13 12:57:52','','0000-00-00 00:00:00'),(10143,0,0,'I',2925,'I002925',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-13 12:57:52','','0000-00-00 00:00:00'),(10144,0,0,'I',2837,'I002837',2526,2,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-13 12:58:25','drarchit','2025-12-13 12:58:38'),(10145,0,0,'I',2837,'I002837',2526,3,'0000-00-00','51532',0,0,'INJ','','','','',0,4,0,0,0,0,'22-30-22','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-13 12:58:25','drarchit','2025-12-13 12:58:38'),(10146,0,0,'I',2837,'I002837',2526,4,'0000-00-00','51387',0,0,'INJ','','','','',0,2,0,0,0,0,'0-0-30','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-13 12:58:25','drarchit','2025-12-13 12:58:38'),(10147,0,0,'I',2837,'I002837',2526,5,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 12:58:25','drarchit','2025-12-13 12:58:38'),(10148,0,0,'I',2926,'I002926',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 13:02:37','darshan','2025-12-13 13:03:05'),(10149,0,0,'I',2926,'I002926',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 13:02:37','darshan','2025-12-13 13:03:05'),(10150,0,0,'I',2926,'I002926',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 13:03:05','','0000-00-00 00:00:00'),(10151,0,0,'I',2926,'I002926',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-13 13:03:05','','0000-00-00 00:00:00'),(10153,0,0,'I',2927,'I002927',2526,1,'0000-00-00','51473',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-13 13:05:47','drarchit','2025-12-13 13:07:30'),(10154,0,0,'I',2927,'I002927',2526,2,'0000-00-00','51273',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 13:07:30','','0000-00-00 00:00:00'),(10155,0,0,'I',2927,'I002927',2526,3,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-13 13:07:30','','0000-00-00 00:00:00'),(10156,0,0,'I',2927,'I002927',2526,4,'0000-00-00','51462',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 13:07:30','','0000-00-00 00:00:00'),(10157,0,0,'I',2927,'I002927',2526,5,'0000-00-00','51223',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-13 13:07:30','','0000-00-00 00:00:00'),(10158,0,0,'I',2927,'I002927',2526,6,'0000-00-00','51312',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-12-13 13:07:30','','0000-00-00 00:00:00'),(10159,0,0,'I',2927,'I002927',2526,7,'0000-00-00','51406',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 13:07:30','','0000-00-00 00:00:00'),(10160,0,0,'I',2906,'I002906',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-13 13:16:22','','0000-00-00 00:00:00'),(10161,0,0,'I',2928,'I002928',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 13:20:08','','0000-00-00 00:00:00'),(10162,0,0,'I',2928,'I002928',2526,2,'0000-00-00','51629',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 13:20:08','','0000-00-00 00:00:00'),(10163,0,0,'I',2928,'I002928',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-13 13:20:08','','0000-00-00 00:00:00'),(10164,0,0,'I',2928,'I002928',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-13 13:20:08','','0000-00-00 00:00:00'),(10165,0,0,'I',2928,'I002928',2526,5,'0000-00-00','51269',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 13:20:08','','0000-00-00 00:00:00'),(10166,0,0,'I',2929,'I002929',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-13 13:22:09','','0000-00-00 00:00:00'),(10167,0,0,'I',2930,'I002930',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 13:27:37','','0000-00-00 00:00:00'),(10168,0,0,'I',2930,'I002930',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 13:27:37','','0000-00-00 00:00:00'),(10169,0,0,'I',2930,'I002930',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-13 13:27:37','','0000-00-00 00:00:00'),(10170,0,0,'I',2931,'I002931',2526,1,'0000-00-00','51296',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-13 13:33:36','','0000-00-00 00:00:00'),(10171,0,0,'I',2931,'I002931',2526,2,'0000-00-00','51442',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-13 13:33:36','','0000-00-00 00:00:00'),(10172,0,0,'I',2931,'I002931',2526,3,'0000-00-00','51409',0,0,'TAB','','','','',0,15,0,0,0,0,'0-1-0','','Dy',15,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-13 13:33:36','','0000-00-00 00:00:00'),(10173,0,0,'I',2931,'I002931',2526,4,'0000-00-00','51444',0,0,'TAB','','','','',0,15,0,0,0,0,'0-1-0','','Dy',15,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-13 13:33:36','','0000-00-00 00:00:00'),(10174,0,0,'I',2931,'I002931',2526,5,'0000-00-00','51422',0,0,'CAP','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-13 13:33:36','','0000-00-00 00:00:00'),(10175,0,0,'I',2932,'I002932',2526,1,'0000-00-00','51469',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-13 13:36:18','drarchit','2025-12-13 13:37:33'),(10176,0,0,'I',2932,'I002932',2526,2,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 13:36:18','drarchit','2025-12-13 13:37:33'),(10177,0,0,'I',2932,'I002932',2526,3,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-13 13:37:25','drarchit','2025-12-13 13:37:33'),(10178,0,0,'I',2932,'I002932',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-13 13:37:33','','0000-00-00 00:00:00'),(10179,0,0,'I',2933,'I002933',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 13:40:53','','0000-00-00 00:00:00'),(10180,0,0,'I',2933,'I002933',2526,2,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-13 13:40:53','','0000-00-00 00:00:00'),(10181,0,0,'I',2933,'I002933',2526,3,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 13:40:53','','0000-00-00 00:00:00'),(10182,0,0,'I',2933,'I002933',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-13 13:40:53','','0000-00-00 00:00:00'),(10183,0,0,'I',2934,'I002934',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 13:53:59','','0000-00-00 00:00:00'),(10184,0,0,'I',2934,'I002934',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 13:53:59','','0000-00-00 00:00:00'),(10185,0,0,'I',2934,'I002934',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-13 13:53:59','','0000-00-00 00:00:00'),(10186,0,0,'I',2935,'I002935',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 14:06:35','','0000-00-00 00:00:00'),(10187,0,0,'I',2935,'I002935',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 14:06:35','','0000-00-00 00:00:00'),(10188,0,0,'I',2935,'I002935',2526,3,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-13 14:06:35','','0000-00-00 00:00:00'),(10189,0,0,'I',2936,'I002936',2526,1,'0000-00-00','51224',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 14:10:10','darshan','2025-12-13 14:11:31'),(10190,0,0,'I',2936,'I002936',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 14:10:10','darshan','2025-12-13 14:11:31'),(10191,0,0,'I',2936,'I002936',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 14:10:10','darshan','2025-12-13 14:11:31'),(10193,0,0,'I',2936,'I002936',2526,4,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-13 14:11:31','','0000-00-00 00:00:00'),(10194,0,0,'I',2937,'I002937',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 14:15:10','','0000-00-00 00:00:00'),(10195,0,0,'I',2937,'I002937',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 14:15:10','','0000-00-00 00:00:00'),(10196,0,0,'I',2938,'I002938',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 14:20:47','','0000-00-00 00:00:00'),(10197,0,0,'I',2938,'I002938',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 14:20:47','','0000-00-00 00:00:00'),(10198,0,0,'I',2938,'I002938',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 14:20:47','','0000-00-00 00:00:00'),(10199,0,0,'I',2939,'I002939',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 14:28:30','','0000-00-00 00:00:00'),(10200,0,0,'I',2939,'I002939',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 14:28:30','','0000-00-00 00:00:00'),(10201,0,0,'I',2940,'I002940',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 14:33:29','','0000-00-00 00:00:00'),(10202,0,0,'I',2940,'I002940',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-13 14:33:29','','0000-00-00 00:00:00'),(10203,0,0,'I',2941,'I002941',2526,1,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 11:03:24','','0000-00-00 00:00:00'),(10204,0,0,'I',2941,'I002941',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 11:03:24','','0000-00-00 00:00:00'),(10205,0,0,'I',2941,'I002941',2526,3,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 11:03:24','','0000-00-00 00:00:00'),(10206,0,0,'I',2942,'I002942',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 11:08:54','darshan','2025-12-15 11:09:58'),(10207,0,0,'I',2942,'I002942',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 11:08:54','darshan','2025-12-15 11:09:58'),(10208,0,0,'I',2942,'I002942',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 11:09:58','','0000-00-00 00:00:00'),(10210,0,0,'I',2943,'I002943',2526,1,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-15 11:16:25','','0000-00-00 00:00:00'),(10211,0,0,'I',2943,'I002943',2526,2,'0000-00-00','51538',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-15 11:16:25','','0000-00-00 00:00:00'),(10212,0,0,'I',2943,'I002943',2526,3,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 11:16:25','','0000-00-00 00:00:00'),(10213,0,0,'I',2943,'I002943',2526,4,'0000-00-00','51473',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-15 11:16:25','','0000-00-00 00:00:00'),(10214,0,0,'I',2943,'I002943',2526,5,'0000-00-00','51336',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 11:16:25','','0000-00-00 00:00:00'),(10215,0,0,'I',2943,'I002943',2526,6,'0000-00-00','51328',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 11:16:25','','0000-00-00 00:00:00'),(10216,0,0,'I',2944,'I002944',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 11:19:18','darshan','2025-12-15 11:19:35'),(10217,0,0,'I',2944,'I002944',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-15 11:19:18','darshan','2025-12-15 11:19:35'),(10218,0,0,'I',2945,'I002945',2526,1,'0000-00-00','51493',0,0,'TAB','','','','',0,90,0,0,0,0,'1.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-15 11:23:23','drarchit','2025-12-15 11:24:04'),(10219,0,0,'I',2945,'I002945',2526,2,'0000-00-00','51306',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 11:23:23','drarchit','2025-12-15 11:24:04'),(10220,0,0,'I',2945,'I002945',2526,3,'0000-00-00','51487',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-15 11:23:23','drarchit','2025-12-15 11:24:04'),(10221,0,0,'I',2945,'I002945',2526,4,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-15 11:24:04','','0000-00-00 00:00:00'),(10222,0,0,'I',2945,'I002945',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-15 11:24:04','','0000-00-00 00:00:00'),(10223,0,0,'I',2945,'I002945',2526,6,'0000-00-00','51290',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-0','','Dy',14,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 11:24:04','','0000-00-00 00:00:00'),(10224,0,0,'I',2945,'I002945',2526,7,'0000-00-00','51472',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-15 11:24:04','','0000-00-00 00:00:00'),(10225,0,0,'I',2946,'I002946',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 11:24:21','darshan','2025-12-15 11:24:36'),(10226,0,0,'I',2946,'I002946',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-15 11:24:21','darshan','2025-12-15 11:24:36'),(10228,0,0,'I',2948,'I002948',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 11:33:44','drarchit','2025-12-15 11:34:10'),(10229,0,0,'I',2948,'I002948',2526,2,'0000-00-00','51273',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 11:33:44','drarchit','2025-12-15 11:34:10'),(10230,0,0,'I',2948,'I002948',2526,3,'0000-00-00','51385',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 11:33:44','drarchit','2025-12-15 11:34:10'),(10231,0,0,'I',2948,'I002948',2526,4,'0000-00-00','51348',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 11:33:44','drarchit','2025-12-15 11:34:10'),(10232,0,0,'I',2948,'I002948',2526,5,'0000-00-00','51382',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 11:34:10','','0000-00-00 00:00:00'),(10233,0,0,'I',2950,'I002950',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 11:42:58','darshan','2025-12-15 11:43:41'),(10234,0,0,'I',2950,'I002950',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 11:42:58','darshan','2025-12-15 11:43:41'),(10235,0,0,'I',2950,'I002950',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',45,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-15 11:42:58','darshan','2025-12-15 11:43:41'),(10241,0,0,'I',2952,'I002952',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 11:55:57','','0000-00-00 00:00:00'),(10242,0,0,'I',2952,'I002952',2526,2,'0000-00-00','51352',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 11:55:57','','0000-00-00 00:00:00'),(10243,0,0,'I',2952,'I002952',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 11:55:57','','0000-00-00 00:00:00'),(10244,0,0,'I',2952,'I002952',2526,4,'0000-00-00','51517',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 11:55:57','','0000-00-00 00:00:00'),(10245,0,0,'I',2952,'I002952',2526,5,'0000-00-00','51267',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 11:55:57','','0000-00-00 00:00:00'),(10246,0,0,'I',2953,'I002953',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 11:56:34','darshan','2025-12-15 11:57:02'),(10247,0,0,'I',2953,'I002953',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 11:56:34','darshan','2025-12-15 11:57:02'),(10250,0,0,'I',2954,'I002954',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 11:59:14','drarchit','2025-12-15 12:02:44'),(10251,0,0,'I',2954,'I002954',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-15 11:59:14','drarchit','2025-12-15 12:02:44'),(10252,0,0,'I',2954,'I002954',2526,3,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 12:02:38','drarchit','2025-12-15 12:02:44'),(10253,0,0,'I',2954,'I002954',2526,4,'0000-00-00','51300',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'drarchit','2025-12-15 12:02:38','drarchit','2025-12-15 12:02:44'),(10254,0,0,'I',2955,'I002955',2526,1,'0000-00-00','51628',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 12:06:29','drarchit','2025-12-15 12:07:30'),(10255,0,0,'I',2955,'I002955',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-15 12:06:57','drarchit','2025-12-15 12:07:30'),(10256,0,0,'I',2955,'I002955',2526,3,'0000-00-00','51337',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 12:06:57','drarchit','2025-12-15 12:07:30'),(10258,0,0,'I',2955,'I002955',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 12:07:30','','0000-00-00 00:00:00'),(10259,0,0,'I',2955,'I002955',2526,5,'0000-00-00','51280',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 12:07:30','','0000-00-00 00:00:00'),(10260,0,0,'I',2955,'I002955',2526,6,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 12:07:30','','0000-00-00 00:00:00'),(10261,0,0,'I',2956,'I002956',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 12:17:09','darshan','2025-12-15 12:17:25'),(10264,0,0,'I',2956,'I002956',2526,2,'0000-00-00','51234',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-15 12:17:25','','0000-00-00 00:00:00'),(10265,0,0,'I',2957,'I002957',2526,1,'0000-00-00','51624',0,0,'TAB','','','','',0,40,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 12:29:40','darshan','2025-12-15 12:30:06'),(10266,0,0,'I',2957,'I002957',2526,2,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 12:29:40','darshan','2025-12-15 12:30:06'),(10267,0,0,'I',2957,'I002957',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 12:29:40','darshan','2025-12-15 12:30:06'),(10268,0,0,'I',2824,'I002824',2526,3,'0000-00-00','51317',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-15 12:32:11','drjayant','2025-12-15 12:32:51'),(10269,0,0,'I',2824,'I002824',2526,4,'0000-00-00','51409',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-15 12:32:11','drjayant','2025-12-15 12:32:51'),(10270,0,0,'I',2824,'I002824',2526,5,'0000-00-00','51377',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'drjayant','2025-12-15 12:32:11','drjayant','2025-12-15 12:32:51'),(10271,0,0,'I',2824,'I002824',2526,6,'0000-00-00','51597',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-15 12:32:51','','0000-00-00 00:00:00'),(10272,0,0,'I',2958,'I002958',2526,1,'0000-00-00','51624',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 12:38:47','','0000-00-00 00:00:00'),(10273,0,0,'I',2958,'I002958',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 12:38:47','','0000-00-00 00:00:00'),(10274,0,0,'I',2958,'I002958',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 12:38:47','','0000-00-00 00:00:00'),(10275,0,0,'I',2958,'I002958',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-15 12:38:47','','0000-00-00 00:00:00'),(10276,0,0,'I',2949,'I002949',2526,1,'0000-00-00','51419',0,0,'TAB','','','','',0,180,0,0,0,0,'1-1-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-15 12:40:51','drjayant','2025-12-15 12:41:43'),(10277,0,0,'I',2949,'I002949',2526,2,'0000-00-00','51317',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-15 12:40:51','drjayant','2025-12-15 12:41:43'),(10278,0,0,'I',2949,'I002949',2526,3,'0000-00-00','51377',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'drjayant','2025-12-15 12:40:51','drjayant','2025-12-15 12:41:43'),(10287,0,0,'I',2959,'I002959',2526,1,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-15 12:43:29','drarchit','2025-12-15 12:44:01'),(10288,0,0,'I',2959,'I002959',2526,2,'0000-00-00','51232',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 12:43:56','drarchit','2025-12-15 12:44:01'),(10289,0,0,'I',2959,'I002959',2526,3,'0000-00-00','51436',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 12:43:56','drarchit','2025-12-15 12:44:01'),(10290,0,0,'I',2959,'I002959',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-15 12:44:01','','0000-00-00 00:00:00'),(10291,0,0,'I',2960,'I002960',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 12:52:21','darshan','2025-12-15 12:52:40'),(10292,0,0,'I',2960,'I002960',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 12:52:21','darshan','2025-12-15 12:52:40'),(10294,0,0,'I',2961,'I002961',2526,1,'0000-00-00','51247',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-15 12:55:02','drjayant','2025-12-15 14:08:13'),(10295,0,0,'I',2961,'I002961',2526,2,'0000-00-00','51445',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-15 12:55:02','drjayant','2025-12-15 14:08:13'),(10297,0,0,'I',2961,'I002961',2526,4,'0000-00-00','51409',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-15 12:55:02','drjayant','2025-12-15 14:08:13'),(10298,0,0,'I',2962,'I002962',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 12:56:33','darshan','2025-12-15 12:56:59'),(10300,0,0,'I',2962,'I002962',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 12:56:33','darshan','2025-12-15 12:56:59'),(10301,0,0,'I',2963,'I002963',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:01:29','','0000-00-00 00:00:00'),(10302,0,0,'I',2963,'I002963',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:01:29','','0000-00-00 00:00:00'),(10304,0,0,'I',2964,'I002964',2526,1,'0000-00-00','51276',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:07:05','darshan','2025-12-15 13:07:31'),(10305,0,0,'I',2964,'I002964',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:07:05','darshan','2025-12-15 13:07:31'),(10306,0,0,'I',2964,'I002964',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:07:31','','0000-00-00 00:00:00'),(10307,0,0,'I',2965,'I002965',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:10:23','','0000-00-00 00:00:00'),(10308,0,0,'I',2965,'I002965',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:10:23','','0000-00-00 00:00:00'),(10309,0,0,'I',2965,'I002965',2526,3,'0000-00-00','51265',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:10:23','','0000-00-00 00:00:00'),(10310,0,0,'I',2966,'I002966',2526,1,'0000-00-00','51498',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 13:13:11','drarchit','2025-12-15 13:16:15'),(10311,0,0,'I',2966,'I002966',2526,2,'0000-00-00','51372',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 13:15:21','drarchit','2025-12-15 13:16:15'),(10313,0,0,'I',2966,'I002966',2526,3,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-15 13:16:15','','0000-00-00 00:00:00'),(10314,0,0,'I',2966,'I002966',2526,4,'0000-00-00','51543',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 13:16:15','','0000-00-00 00:00:00'),(10315,0,0,'I',2967,'I002967',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:17:59','','0000-00-00 00:00:00'),(10316,0,0,'I',2967,'I002967',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:17:59','','0000-00-00 00:00:00'),(10317,0,0,'I',2947,'I002947',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 13:20:36','','0000-00-00 00:00:00'),(10318,0,0,'I',2947,'I002947',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-15 13:20:36','','0000-00-00 00:00:00'),(10319,0,0,'I',2947,'I002947',2526,3,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 13:20:36','','0000-00-00 00:00:00'),(10320,0,0,'I',2947,'I002947',2526,4,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'drarchit','2025-12-15 13:20:36','','0000-00-00 00:00:00'),(10321,0,0,'I',2968,'I002968',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:22:46','','0000-00-00 00:00:00'),(10322,0,0,'I',2968,'I002968',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:22:46','','0000-00-00 00:00:00'),(10323,0,0,'I',2969,'I002969',2526,1,'0000-00-00','51320',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-15 13:33:10','drjayant','2025-12-15 13:37:07'),(10324,0,0,'I',2969,'I002969',2526,2,'0000-00-00','51376',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-15 13:33:10','drjayant','2025-12-15 13:37:07'),(10325,0,0,'I',2969,'I002969',2526,3,'0000-00-00','51349',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-15 13:33:10','drjayant','2025-12-15 13:37:07'),(10326,0,0,'I',2970,'I002970',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:36:33','darshan','2025-12-15 13:37:11'),(10327,0,0,'I',2970,'I002970',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:36:33','darshan','2025-12-15 13:37:11'),(10328,0,0,'I',2970,'I002970',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-15 13:37:11','','0000-00-00 00:00:00'),(10329,0,0,'I',2971,'I002971',2526,1,'0000-00-00','51349',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-0','','Dy',0,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-12-15 13:41:09','','0000-00-00 00:00:00'),(10330,0,0,'I',2972,'I002972',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:41:17','','0000-00-00 00:00:00'),(10331,0,0,'I',2972,'I002972',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:41:17','','0000-00-00 00:00:00'),(10332,0,0,'I',2972,'I002972',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:41:17','','0000-00-00 00:00:00'),(10333,0,0,'I',2973,'I002973',2526,1,'0000-00-00','51296',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-12-15 13:43:08','','0000-00-00 00:00:00'),(10334,0,0,'I',2974,'I002974',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:45:11','darshan','2025-12-15 13:45:27'),(10335,0,0,'I',2974,'I002974',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:45:11','darshan','2025-12-15 13:45:27'),(10336,0,0,'I',2974,'I002974',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:45:11','darshan','2025-12-15 13:45:27'),(10337,0,0,'I',2974,'I002974',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-15 13:45:27','','0000-00-00 00:00:00'),(10338,0,0,'I',2961,'I002961',2526,5,'0000-00-00','51404',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-15 13:58:23','drjayant','2025-12-15 14:08:13'),(10339,0,0,'I',2975,'I002975',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:59:14','','0000-00-00 00:00:00'),(10340,0,0,'I',2975,'I002975',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 13:59:14','','0000-00-00 00:00:00'),(10341,0,0,'I',2961,'I002961',2526,6,'0000-00-00','51562',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-15 14:00:31','drjayant','2025-12-15 14:08:13'),(10342,0,0,'I',2976,'I002976',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 14:01:08','','0000-00-00 00:00:00'),(10343,0,0,'I',2976,'I002976',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 14:01:08','','0000-00-00 00:00:00'),(10344,0,0,'I',2977,'I002977',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 14:06:17','darshan','2025-12-15 14:06:25'),(10345,0,0,'I',2977,'I002977',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 14:06:17','darshan','2025-12-15 14:06:25'),(10346,0,0,'I',2961,'I002961',2526,7,'0000-00-00','51600',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-15 14:08:05','drjayant','2025-12-15 14:08:13'),(10347,0,0,'I',2978,'I002978',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 14:13:56','','0000-00-00 00:00:00'),(10348,0,0,'I',2978,'I002978',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 14:13:56','','0000-00-00 00:00:00'),(10349,0,0,'I',2978,'I002978',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-15 14:13:56','','0000-00-00 00:00:00'),(10350,0,0,'I',2979,'I002979',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 17:24:53','','0000-00-00 00:00:00'),(10351,0,0,'I',2979,'I002979',2526,2,'0000-00-00','51333',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 17:24:53','','0000-00-00 00:00:00'),(10352,0,0,'I',2979,'I002979',2526,3,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-15 17:24:53','','0000-00-00 00:00:00'),(10353,0,0,'I',2980,'I002980',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-15 17:32:45','darshan','2025-12-15 17:33:24'),(10354,0,0,'I',2980,'I002980',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 17:32:45','darshan','2025-12-15 17:33:24'),(10356,0,0,'I',2980,'I002980',2526,3,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-15 17:33:24','','0000-00-00 00:00:00'),(10357,0,0,'I',2981,'I002981',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-15 17:40:42','','0000-00-00 00:00:00'),(10358,0,0,'I',2981,'I002981',2526,2,'0000-00-00','51271',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 17:40:42','','0000-00-00 00:00:00'),(10359,0,0,'I',2981,'I002981',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-15 17:40:42','','0000-00-00 00:00:00'),(10360,0,0,'I',2981,'I002981',2526,4,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 17:40:42','','0000-00-00 00:00:00'),(10361,0,0,'I',2981,'I002981',2526,5,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 17:40:42','','0000-00-00 00:00:00'),(10362,0,0,'I',2982,'I002982',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,12,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 17:45:26','darshan','2025-12-15 17:46:55'),(10363,0,0,'I',2982,'I002982',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 17:45:26','darshan','2025-12-15 17:46:55'),(10364,0,0,'I',2982,'I002982',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 17:45:26','darshan','2025-12-15 17:46:55'),(10365,0,0,'I',2982,'I002982',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-15 17:45:26','darshan','2025-12-15 17:46:55'),(10366,0,0,'I',2982,'I002982',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-15 17:45:26','darshan','2025-12-15 17:46:55'),(10367,0,0,'I',2983,'I002983',2526,1,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-15 17:49:46','darshan','2025-12-15 17:50:34'),(10368,0,0,'I',2983,'I002983',2526,2,'0000-00-00','51624',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 17:49:46','darshan','2025-12-15 17:50:34'),(10370,0,0,'I',2985,'I002985',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 18:11:55','darshan','2025-12-15 18:12:18'),(10371,0,0,'I',2985,'I002985',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 18:11:55','darshan','2025-12-15 18:12:18'),(10372,0,0,'I',2985,'I002985',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-15 18:12:18','','0000-00-00 00:00:00'),(10373,0,0,'I',2951,'I002951',2526,1,'0000-00-00','51487',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-15 18:25:13','drarchit','2025-12-15 18:27:04'),(10374,0,0,'I',2951,'I002951',2526,2,'0000-00-00','51404',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:26:51','drarchit','2025-12-15 18:27:04'),(10375,0,0,'I',2951,'I002951',2526,3,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:26:51','drarchit','2025-12-15 18:27:04'),(10376,0,0,'I',2951,'I002951',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-15 18:26:51','drarchit','2025-12-15 18:27:04'),(10377,0,0,'I',2951,'I002951',2526,5,'0000-00-00','51519',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0.5-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:26:51','drarchit','2025-12-15 18:27:04'),(10378,0,0,'I',2951,'I002951',2526,6,'0000-00-00','51278',0,0,'CAP','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:26:51','drarchit','2025-12-15 18:27:04'),(10379,0,0,'I',2951,'I002951',2526,7,'0000-00-00','51471',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-12-15 18:27:04','','0000-00-00 00:00:00'),(10380,0,0,'I',2986,'I002986',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,25,0,0,0,0,'0-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-15 18:27:09','darshan','2025-12-15 18:27:44'),(10381,0,0,'I',2986,'I002986',2526,2,'0000-00-00','51189',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 18:27:09','darshan','2025-12-15 18:27:44'),(10382,0,0,'I',2986,'I002986',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 18:27:09','darshan','2025-12-15 18:27:44'),(10384,0,0,'I',2987,'I002987',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:32:20','','0000-00-00 00:00:00'),(10385,0,0,'I',2987,'I002987',2526,2,'0000-00-00','51231',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:32:20','','0000-00-00 00:00:00'),(10386,0,0,'I',2987,'I002987',2526,3,'0000-00-00','51359',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:32:20','','0000-00-00 00:00:00'),(10387,0,0,'I',2987,'I002987',2526,4,'0000-00-00','51584',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:32:20','','0000-00-00 00:00:00'),(10388,0,0,'I',2988,'I002988',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:35:40','','0000-00-00 00:00:00'),(10389,0,0,'I',2988,'I002988',2526,2,'0000-00-00','51629',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:35:40','','0000-00-00 00:00:00'),(10390,0,0,'I',2988,'I002988',2526,3,'0000-00-00','51374',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-15 18:35:40','','0000-00-00 00:00:00'),(10391,0,0,'I',2988,'I002988',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:35:40','','0000-00-00 00:00:00'),(10392,0,0,'I',2988,'I002988',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-15 18:35:40','','0000-00-00 00:00:00'),(10393,0,0,'I',2988,'I002988',2526,6,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:35:40','','0000-00-00 00:00:00'),(10394,0,0,'I',2989,'I002989',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 18:39:22','','0000-00-00 00:00:00'),(10395,0,0,'I',2989,'I002989',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 18:39:22','','0000-00-00 00:00:00'),(10396,0,0,'I',2989,'I002989',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 18:39:22','','0000-00-00 00:00:00'),(10397,0,0,'I',2989,'I002989',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-15 18:39:22','','0000-00-00 00:00:00'),(10398,0,0,'I',2990,'I002990',2526,1,'0000-00-00','51488',0,0,'INJ','','','','',0,1,0,0,0,0,'0-0-22','','Dy',90,0,0,0,0,0,0,0,0,0,'271','','P',NULL,NULL,'drjayant','2025-12-15 18:39:57','','0000-00-00 00:00:00'),(10399,0,0,'I',2990,'I002990',2526,2,'0000-00-00','51532',0,0,'INJ','','','','',0,1,0,0,0,0,'20-30-14','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-15 18:39:57','','0000-00-00 00:00:00'),(10400,0,0,'I',2991,'I002991',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:42:29','drarchit','2025-12-15 18:43:31'),(10401,0,0,'I',2991,'I002991',2526,2,'0000-00-00','51354',0,0,'CAP','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:42:29','drarchit','2025-12-15 18:43:31'),(10402,0,0,'I',2991,'I002991',2526,3,'0000-00-00','51555',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:42:29','drarchit','2025-12-15 18:43:31'),(10403,0,0,'I',2991,'I002991',2526,4,'0000-00-00','51384',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:42:29','drarchit','2025-12-15 18:43:31'),(10404,0,0,'I',2991,'I002991',2526,5,'0000-00-00','51263',0,0,'TAB','','','','',0,45,0,0,0,0,'1-1-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:42:53','drarchit','2025-12-15 18:43:31'),(10405,0,0,'I',2991,'I002991',2526,6,'0000-00-00','51584',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:43:31','','0000-00-00 00:00:00'),(10406,0,0,'I',2992,'I002992',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:48:35','','0000-00-00 00:00:00'),(10407,0,0,'I',2992,'I002992',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-15 18:48:35','','0000-00-00 00:00:00'),(10408,0,0,'I',2992,'I002992',2526,3,'0000-00-00','51347',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-12-15 18:48:35','','0000-00-00 00:00:00'),(10409,0,0,'I',2992,'I002992',2526,4,'0000-00-00','51406',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:48:35','','0000-00-00 00:00:00'),(10410,0,0,'I',2992,'I002992',2526,5,'0000-00-00','51280',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:48:35','','0000-00-00 00:00:00'),(10411,0,0,'I',2993,'I002993',2526,1,'0000-00-00','51312',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-12-15 18:51:58','drarchit','2025-12-15 18:52:34'),(10412,0,0,'I',2993,'I002993',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-15 18:51:58','drarchit','2025-12-15 18:52:34'),(10413,0,0,'I',2993,'I002993',2526,3,'0000-00-00','51407',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:51:58','drarchit','2025-12-15 18:52:34'),(10414,0,0,'I',2993,'I002993',2526,4,'0000-00-00','51406',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:52:34','','0000-00-00 00:00:00'),(10415,0,0,'I',2994,'I002994',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 18:53:57','darshan','2025-12-15 18:54:10'),(10416,0,0,'I',2994,'I002994',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 18:54:10','','0000-00-00 00:00:00'),(10417,0,0,'I',2995,'I002995',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 18:57:42','','0000-00-00 00:00:00'),(10418,0,0,'I',2996,'I002996',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 19:01:43','darshan','2025-12-15 19:02:15'),(10419,0,0,'I',2996,'I002996',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 19:01:43','darshan','2025-12-15 19:02:15'),(10420,0,0,'I',2996,'I002996',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 19:01:55','darshan','2025-12-15 19:02:15'),(10421,0,0,'I',2984,'I002984',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 19:07:02','','0000-00-00 00:00:00'),(10422,0,0,'I',2984,'I002984',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 19:07:02','','0000-00-00 00:00:00'),(10423,0,0,'I',2984,'I002984',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 19:07:02','','0000-00-00 00:00:00'),(10424,0,0,'I',2984,'I002984',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-15 19:07:02','','0000-00-00 00:00:00'),(10425,0,0,'I',2997,'I002997',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-15 19:12:47','','0000-00-00 00:00:00'),(10426,0,0,'I',2997,'I002997',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-15 19:12:47','','0000-00-00 00:00:00'),(10427,0,0,'I',2997,'I002997',2526,3,'0000-00-00','51338',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 19:12:47','','0000-00-00 00:00:00'),(10428,0,0,'I',2997,'I002997',2526,4,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 19:12:47','','0000-00-00 00:00:00'),(10429,0,0,'I',2997,'I002997',2526,5,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 19:12:47','','0000-00-00 00:00:00'),(10431,0,0,'I',2997,'I002997',2526,7,'0000-00-00','51555',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 19:12:47','','0000-00-00 00:00:00'),(10432,0,0,'I',2998,'I002998',2526,1,'0000-00-00','51628',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 19:17:02','','0000-00-00 00:00:00'),(10433,0,0,'I',2998,'I002998',2526,2,'0000-00-00','51534',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 19:17:02','','0000-00-00 00:00:00'),(10434,0,0,'I',2998,'I002998',2526,3,'0000-00-00','51487',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-15 19:17:02','','0000-00-00 00:00:00'),(10435,0,0,'I',2998,'I002998',2526,4,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-15 19:17:02','','0000-00-00 00:00:00'),(10436,0,0,'I',2999,'I002999',2526,1,'0000-00-00','51384',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 19:21:01','','0000-00-00 00:00:00'),(10437,0,0,'I',2999,'I002999',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-15 19:21:01','','0000-00-00 00:00:00'),(10438,0,0,'I',2999,'I002999',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 19:21:01','','0000-00-00 00:00:00'),(10439,0,0,'I',3000,'I003000',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 19:23:28','','0000-00-00 00:00:00'),(10440,0,0,'I',3000,'I003000',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 19:23:28','','0000-00-00 00:00:00'),(10441,0,0,'I',3001,'I003001',2526,1,'0000-00-00','51487',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-15 19:27:23','','0000-00-00 00:00:00'),(10442,0,0,'I',3001,'I003001',2526,2,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 19:27:23','','0000-00-00 00:00:00'),(10443,0,0,'I',3002,'I003002',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 19:28:22','','0000-00-00 00:00:00'),(10444,0,0,'I',3002,'I003002',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 19:28:22','','0000-00-00 00:00:00'),(10445,0,0,'I',3002,'I003002',2526,3,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 19:28:22','','0000-00-00 00:00:00'),(10446,0,0,'I',3003,'I003003',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 19:31:17','drarchit','2025-12-15 19:31:41'),(10447,0,0,'I',3003,'I003003',2526,2,'0000-00-00','51358',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 19:31:17','drarchit','2025-12-15 19:31:41'),(10449,0,0,'I',3003,'I003003',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 19:31:17','drarchit','2025-12-15 19:31:41'),(10451,0,0,'I',3003,'I003003',2526,4,'0000-00-00','51269',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 19:31:41','','0000-00-00 00:00:00'),(10452,0,0,'I',3003,'I003003',2526,5,'0000-00-00','51219',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-12-15 19:31:41','','0000-00-00 00:00:00'),(10453,0,0,'I',3003,'I003003',2526,6,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 19:31:41','','0000-00-00 00:00:00'),(10454,0,0,'I',3004,'I003004',2526,1,'0000-00-00','51558',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 19:34:41','','0000-00-00 00:00:00'),(10455,0,0,'I',3005,'I003005',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 19:35:07','','0000-00-00 00:00:00'),(10456,0,0,'I',3005,'I003005',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 19:35:07','','0000-00-00 00:00:00'),(10457,0,0,'I',3006,'I003006',2526,1,'0000-00-00','51628',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 19:39:33','','0000-00-00 00:00:00'),(10458,0,0,'I',3006,'I003006',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-15 19:39:33','','0000-00-00 00:00:00'),(10459,0,0,'I',3006,'I003006',2526,3,'0000-00-00','51629',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 19:39:33','','0000-00-00 00:00:00'),(10460,0,0,'I',3006,'I003006',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 19:39:33','','0000-00-00 00:00:00'),(10461,0,0,'I',3006,'I003006',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-15 19:39:33','','0000-00-00 00:00:00'),(10462,0,0,'I',3007,'I003007',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 19:42:48','darshan','2025-12-15 19:42:54'),(10463,0,0,'I',3007,'I003007',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 19:42:48','darshan','2025-12-15 19:42:54'),(10465,0,0,'I',3008,'I003008',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 19:45:53','darshan','2025-12-15 19:46:31'),(10467,0,0,'I',3008,'I003008',2526,2,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-15 19:45:53','darshan','2025-12-15 19:46:31'),(10471,0,0,'I',3010,'I003010',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 20:03:44','','0000-00-00 00:00:00'),(10472,0,0,'I',3010,'I003010',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 20:03:44','','0000-00-00 00:00:00'),(10473,0,0,'I',3010,'I003010',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-15 20:03:44','','0000-00-00 00:00:00'),(10474,0,0,'I',3011,'I003011',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-15 20:05:40','','0000-00-00 00:00:00'),(10475,0,0,'I',3011,'I003011',2526,2,'0000-00-00','51370',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-15 20:05:40','','0000-00-00 00:00:00'),(10476,0,0,'I',3011,'I003011',2526,3,'0000-00-00','51372',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-15 20:05:40','','0000-00-00 00:00:00'),(10477,0,0,'I',3012,'I003012',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 20:26:44','','0000-00-00 00:00:00'),(10478,0,0,'I',3012,'I003012',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 20:26:44','','0000-00-00 00:00:00'),(10479,0,0,'I',3013,'I003013',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 20:27:49','','0000-00-00 00:00:00'),(10480,0,0,'I',3013,'I003013',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 20:27:49','','0000-00-00 00:00:00'),(10481,0,0,'I',3014,'I003014',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 20:33:40','darshan','2025-12-15 20:33:59'),(10482,0,0,'I',3014,'I003014',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 20:33:40','darshan','2025-12-15 20:33:59'),(10483,0,0,'I',3014,'I003014',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-15 20:33:59','','0000-00-00 00:00:00'),(10484,0,0,'I',3015,'I003015',2526,1,'0000-00-00','51198',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 20:37:13','','0000-00-00 00:00:00'),(10485,0,0,'I',3015,'I003015',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 20:37:13','','0000-00-00 00:00:00'),(10486,0,0,'I',2687,'I002687',2526,6,'0000-00-00','51271',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 20:40:04','','0000-00-00 00:00:00'),(10487,0,0,'I',3016,'I003016',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 20:42:04','darshan','2025-12-15 20:42:08'),(10488,0,0,'I',3016,'I003016',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 20:42:04','darshan','2025-12-15 20:42:08'),(10489,0,0,'I',3016,'I003016',2526,3,'0000-00-00','51275',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'darshan','2025-12-15 20:42:04','darshan','2025-12-15 20:42:08'),(10490,0,0,'I',3016,'I003016',2526,4,'0000-00-00','51322',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 20:42:04','darshan','2025-12-15 20:42:08'),(10491,0,0,'I',3016,'I003016',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-15 20:42:04','darshan','2025-12-15 20:42:08'),(10492,0,0,'I',3016,'I003016',2526,6,'0000-00-00','51271',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-15 20:42:04','darshan','2025-12-15 20:42:08'),(10493,0,0,'I',3017,'I003017',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 10:51:33','darshan','2025-12-16 10:52:38'),(10494,0,0,'I',3017,'I003017',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 10:51:33','darshan','2025-12-16 10:52:38'),(10495,0,0,'I',3017,'I003017',2526,3,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 10:52:38','','0000-00-00 00:00:00'),(10496,0,0,'I',3017,'I003017',2526,4,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 10:52:38','','0000-00-00 00:00:00'),(10497,0,0,'I',3017,'I003017',2526,5,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-16 10:52:38','','0000-00-00 00:00:00'),(10498,0,0,'I',3018,'I003018',2526,1,'0000-00-00','51200',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-16 10:55:34','darshan','2025-12-16 10:56:01'),(10499,0,0,'I',3018,'I003018',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 10:55:34','darshan','2025-12-16 10:56:01'),(10501,0,0,'I',3018,'I003018',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 10:55:34','darshan','2025-12-16 10:56:01'),(10502,0,0,'I',3019,'I003019',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 11:16:53','darshan','2025-12-16 12:54:16'),(10503,0,0,'I',3019,'I003019',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 11:16:53','darshan','2025-12-16 12:54:16'),(10504,0,0,'I',3019,'I003019',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 11:16:53','darshan','2025-12-16 12:54:16'),(10505,0,0,'I',3020,'I003020',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 11:20:36','darshan','2025-12-16 11:21:30'),(10506,0,0,'I',3020,'I003020',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 11:20:36','darshan','2025-12-16 11:21:30'),(10508,0,0,'I',3020,'I003020',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-16 11:21:16','darshan','2025-12-16 11:21:30'),(10509,0,0,'I',3021,'I003021',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 11:34:43','darshan','2025-12-16 11:35:02'),(10510,0,0,'I',3021,'I003021',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 11:34:43','darshan','2025-12-16 11:35:02'),(10511,0,0,'I',3022,'I003022',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:35:25','drarchit','2025-12-16 12:24:20'),(10512,0,0,'I',3022,'I003022',2526,2,'0000-00-00','51359',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:35:25','drarchit','2025-12-16 12:24:20'),(10513,0,0,'I',3022,'I003022',2526,3,'0000-00-00','51298',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:35:25','drarchit','2025-12-16 12:24:20'),(10514,0,0,'I',3022,'I003022',2526,4,'0000-00-00','51432',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:35:25','drarchit','2025-12-16 12:24:20'),(10515,0,0,'I',3022,'I003022',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-16 11:35:25','drarchit','2025-12-16 12:24:20'),(10516,0,0,'I',3022,'I003022',2526,6,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:35:25','drarchit','2025-12-16 12:24:20'),(10517,0,0,'I',3023,'I003023',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:38:26','','0000-00-00 00:00:00'),(10518,0,0,'I',3023,'I003023',2526,2,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:38:26','','0000-00-00 00:00:00'),(10519,0,0,'I',3023,'I003023',2526,3,'0000-00-00','51545',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:38:26','','0000-00-00 00:00:00'),(10520,0,0,'I',3023,'I003023',2526,4,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-16 11:38:26','','0000-00-00 00:00:00'),(10521,0,0,'I',3023,'I003023',2526,5,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-16 11:38:26','','0000-00-00 00:00:00'),(10522,0,0,'I',3023,'I003023',2526,6,'0000-00-00','51280',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:38:26','','0000-00-00 00:00:00'),(10523,0,0,'I',3023,'I003023',2526,7,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:38:26','','0000-00-00 00:00:00'),(10524,0,0,'I',3023,'I003023',2526,8,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-16 11:38:26','','0000-00-00 00:00:00'),(10525,0,0,'I',3024,'I003024',2526,1,'0000-00-00','51624',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 11:39:56','darshan','2025-12-16 11:39:58'),(10526,0,0,'I',3024,'I003024',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 11:39:56','darshan','2025-12-16 11:39:58'),(10527,0,0,'I',3024,'I003024',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 11:39:56','darshan','2025-12-16 11:39:58'),(10528,0,0,'I',3026,'I003026',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 11:44:30','darshan','2025-12-16 11:44:48'),(10529,0,0,'I',3026,'I003026',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 11:44:30','darshan','2025-12-16 11:44:48'),(10530,0,0,'I',3026,'I003026',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 11:44:48','','0000-00-00 00:00:00'),(10531,0,0,'I',3025,'I003025',2526,1,'0000-00-00','51259',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:46:01','','0000-00-00 00:00:00'),(10532,0,0,'I',3025,'I003025',2526,2,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:46:01','','0000-00-00 00:00:00'),(10533,0,0,'I',3025,'I003025',2526,3,'0000-00-00','51243',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-16 11:46:01','','0000-00-00 00:00:00'),(10534,0,0,'I',3025,'I003025',2526,4,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:46:01','','0000-00-00 00:00:00'),(10535,0,0,'I',3025,'I003025',2526,5,'0000-00-00','51538',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-16 11:46:01','','0000-00-00 00:00:00'),(10536,0,0,'I',3027,'I003027',2526,1,'0000-00-00','51487',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-16 11:53:55','drarchit','2025-12-16 11:54:39'),(10537,0,0,'I',3027,'I003027',2526,2,'0000-00-00','51404',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:53:55','drarchit','2025-12-16 11:54:39'),(10538,0,0,'I',3027,'I003027',2526,3,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-16 11:53:55','drarchit','2025-12-16 11:54:39'),(10539,0,0,'I',3027,'I003027',2526,4,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:53:55','drarchit','2025-12-16 11:54:39'),(10540,0,0,'I',3027,'I003027',2526,5,'0000-00-00','51555',0,0,'TAB','','','','',0,9,0,0,0,0,'0-1-0','','Dy',9,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:53:55','drarchit','2025-12-16 11:54:39'),(10541,0,0,'I',3027,'I003027',2526,6,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:54:39','','0000-00-00 00:00:00'),(10542,0,0,'I',3027,'I003027',2526,7,'0000-00-00','51262',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:54:39','','0000-00-00 00:00:00'),(10543,0,0,'I',3028,'I003028',2526,1,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:59:10','drarchit','2025-12-16 11:59:44'),(10544,0,0,'I',3028,'I003028',2526,2,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:59:10','drarchit','2025-12-16 11:59:44'),(10545,0,0,'I',3028,'I003028',2526,3,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:59:10','drarchit','2025-12-16 11:59:44'),(10546,0,0,'I',3028,'I003028',2526,4,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-16 11:59:10','drarchit','2025-12-16 11:59:44'),(10547,0,0,'I',3028,'I003028',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-16 11:59:10','drarchit','2025-12-16 11:59:44'),(10549,0,0,'I',3028,'I003028',2526,6,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 11:59:44','','0000-00-00 00:00:00'),(10550,0,0,'I',3029,'I003029',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 12:05:12','darshan','2025-12-16 12:05:39'),(10551,0,0,'I',3029,'I003029',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 12:05:12','darshan','2025-12-16 12:05:39'),(10552,0,0,'I',3029,'I003029',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-16 12:05:12','darshan','2025-12-16 12:05:39'),(10553,0,0,'I',3030,'I003030',2526,1,'0000-00-00','51430',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 12:06:35','drjayant','2025-12-16 12:08:18'),(10554,0,0,'I',3030,'I003030',2526,2,'0000-00-00','51607',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-16 12:06:35','drjayant','2025-12-16 12:08:18'),(10555,0,0,'I',3030,'I003030',2526,3,'0000-00-00','51576',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 12:07:37','drjayant','2025-12-16 12:08:18'),(10556,0,0,'I',3031,'I003031',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-16 12:07:43','darshan','2025-12-16 12:08:04'),(10557,0,0,'I',3031,'I003031',2526,2,'0000-00-00','51189',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 12:07:43','darshan','2025-12-16 12:08:04'),(10559,0,0,'I',3030,'I003030',2526,4,'0000-00-00','51459',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 12:08:18','','0000-00-00 00:00:00'),(10560,0,0,'I',3030,'I003030',2526,5,'0000-00-00','51233',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'drjayant','2025-12-16 12:08:18','','0000-00-00 00:00:00'),(10561,0,0,'I',3032,'I003032',2526,1,'0000-00-00','51458',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-16 12:12:18','','0000-00-00 00:00:00'),(10562,0,0,'I',3032,'I003032',2526,2,'0000-00-00','51542',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 12:12:18','','0000-00-00 00:00:00'),(10563,0,0,'I',3032,'I003032',2526,3,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 12:12:18','','0000-00-00 00:00:00'),(10564,0,0,'I',3032,'I003032',2526,4,'0000-00-00','51346',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 12:12:18','','0000-00-00 00:00:00'),(10565,0,0,'I',3032,'I003032',2526,5,'0000-00-00','51336',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 12:12:18','','0000-00-00 00:00:00'),(10566,0,0,'I',3032,'I003032',2526,6,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 12:12:18','','0000-00-00 00:00:00'),(10567,0,0,'I',3032,'I003032',2526,7,'0000-00-00','51324',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 12:12:18','','0000-00-00 00:00:00'),(10568,0,0,'I',3033,'I003033',2526,1,'0000-00-00','51477',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'drarchit','2025-12-16 12:16:50','drarchit','2025-12-16 12:17:39'),(10569,0,0,'I',3033,'I003033',2526,2,'0000-00-00','51373',0,0,'CAP','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 12:16:50','drarchit','2025-12-16 12:17:39'),(10571,0,0,'I',3033,'I003033',2526,3,'0000-00-00','51395',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 12:17:31','drarchit','2025-12-16 12:17:39'),(10572,0,0,'I',3033,'I003033',2526,4,'0000-00-00','51396',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 12:17:31','drarchit','2025-12-16 12:17:39'),(10573,0,0,'I',3034,'I003034',2526,1,'0000-00-00','51195',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 12:20:36','drarchit','2025-12-16 12:21:21'),(10574,0,0,'I',3034,'I003034',2526,2,'0000-00-00','51239',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-16 12:21:21','','0000-00-00 00:00:00'),(10575,0,0,'I',3035,'I003035',2526,1,'0000-00-00','51625',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 12:27:04','drjayant','2025-12-16 12:27:13'),(10576,0,0,'I',3035,'I003035',2526,2,'0000-00-00','51349',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 12:27:04','drjayant','2025-12-16 12:27:13'),(10577,0,0,'I',3035,'I003035',2526,3,'0000-00-00','51588',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 12:27:04','drjayant','2025-12-16 12:27:13'),(10578,0,0,'I',3035,'I003035',2526,4,'0000-00-00','51453',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 12:27:04','drjayant','2025-12-16 12:27:13'),(10579,0,0,'I',3036,'I003036',2526,1,'0000-00-00','51246',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 12:36:22','drarchit','2025-12-16 12:36:30'),(10581,0,0,'I',3036,'I003036',2526,2,'0000-00-00','51436',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 12:36:22','drarchit','2025-12-16 12:36:30'),(10582,0,0,'I',3036,'I003036',2526,3,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-12-16 12:36:22','drarchit','2025-12-16 12:36:30'),(10583,0,0,'I',3036,'I003036',2526,4,'0000-00-00','51266',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'drarchit','2025-12-16 12:36:22','drarchit','2025-12-16 12:36:30'),(10584,0,0,'I',3036,'I003036',2526,5,'0000-00-00','51230',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 12:36:22','drarchit','2025-12-16 12:36:30'),(10585,0,0,'I',3036,'I003036',2526,6,'0000-00-00','51374',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-16 12:36:22','drarchit','2025-12-16 12:36:30'),(10586,0,0,'I',3036,'I003036',2526,7,'0000-00-00','51629',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 12:36:30','','0000-00-00 00:00:00'),(10587,0,0,'I',3037,'I003037',2526,1,'0000-00-00','51624',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 12:41:05','','0000-00-00 00:00:00'),(10588,0,0,'I',3037,'I003037',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 12:41:05','','0000-00-00 00:00:00'),(10589,0,0,'I',3037,'I003037',2526,3,'0000-00-00','51194',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 12:41:05','','0000-00-00 00:00:00'),(10590,0,0,'I',3009,'I003009',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 12:44:32','drarchit','2025-12-16 12:45:30'),(10591,0,0,'I',3009,'I003009',2526,2,'0000-00-00','51535',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 12:45:30','','0000-00-00 00:00:00'),(10592,0,0,'I',3009,'I003009',2526,3,'0000-00-00','51413',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-16 12:45:30','','0000-00-00 00:00:00'),(10593,0,0,'I',3038,'I003038',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 12:47:06','darshan','2025-12-16 12:47:17'),(10595,0,0,'I',3019,'I003019',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-16 12:54:16','','0000-00-00 00:00:00'),(10596,0,0,'I',3019,'I003019',2526,5,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-16 12:54:16','','0000-00-00 00:00:00'),(10597,0,0,'I',3039,'I003039',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 12:57:07','drarchit','2025-12-16 12:57:56'),(10598,0,0,'I',3039,'I003039',2526,2,'0000-00-00','51634',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 12:57:56','','0000-00-00 00:00:00'),(10599,0,0,'I',3040,'I003040',2526,1,'0000-00-00','51628',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 13:00:22','','0000-00-00 00:00:00'),(10600,0,0,'I',3040,'I003040',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-16 13:00:22','','0000-00-00 00:00:00'),(10601,0,0,'I',3040,'I003040',2526,3,'0000-00-00','51629',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 13:00:22','','0000-00-00 00:00:00'),(10602,0,0,'I',3040,'I003040',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 13:00:22','','0000-00-00 00:00:00'),(10603,0,0,'I',3040,'I003040',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-16 13:00:22','','0000-00-00 00:00:00'),(10604,0,0,'I',3040,'I003040',2526,6,'0000-00-00','51269',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 13:00:22','','0000-00-00 00:00:00'),(10605,0,0,'I',3041,'I003041',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 13:02:51','','0000-00-00 00:00:00'),(10606,0,0,'I',3041,'I003041',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 13:02:51','','0000-00-00 00:00:00'),(10607,0,0,'I',3041,'I003041',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 13:02:51','','0000-00-00 00:00:00');
INSERT INTO `medicine_transaction` VALUES (10608,0,0,'I',3041,'I003041',2526,4,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-16 13:02:51','','0000-00-00 00:00:00'),(10609,0,0,'I',3042,'I003042',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 13:06:58','','0000-00-00 00:00:00'),(10610,0,0,'I',3042,'I003042',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 13:06:58','','0000-00-00 00:00:00'),(10611,0,0,'I',3042,'I003042',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-16 13:06:58','','0000-00-00 00:00:00'),(10612,0,0,'I',3043,'I003043',2526,1,'0000-00-00','51220',0,0,'TAB','','','','',0,5,0,0,0,0,'0.5-0-0.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 13:10:12','','0000-00-00 00:00:00'),(10613,0,0,'I',3043,'I003043',2526,2,'0000-00-00','51229',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-16 13:10:12','','0000-00-00 00:00:00'),(10614,0,0,'I',3044,'I003044',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 13:10:58','darshan','2025-12-16 13:11:22'),(10615,0,0,'I',3044,'I003044',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 13:10:58','darshan','2025-12-16 13:11:22'),(10616,0,0,'I',3044,'I003044',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-16 13:11:22','','0000-00-00 00:00:00'),(10617,0,0,'I',3045,'I003045',2526,1,'0000-00-00','51349',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 13:18:45','drjayant','2025-12-16 13:19:05'),(10618,0,0,'I',3045,'I003045',2526,2,'0000-00-00','51350',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 13:18:45','drjayant','2025-12-16 13:19:05'),(10619,0,0,'I',3046,'I003046',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-16 13:22:01','','0000-00-00 00:00:00'),(10620,0,0,'I',3046,'I003046',2526,2,'0000-00-00','51312',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-12-16 13:22:01','','0000-00-00 00:00:00'),(10621,0,0,'I',3046,'I003046',2526,3,'0000-00-00','51555',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 13:22:01','','0000-00-00 00:00:00'),(10622,0,0,'I',3046,'I003046',2526,4,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-16 13:22:01','','0000-00-00 00:00:00'),(10623,0,0,'I',3047,'I003047',2526,1,'0000-00-00','51601',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 13:23:18','drjayant','2025-12-16 13:33:20'),(10624,0,0,'I',3047,'I003047',2526,2,'0000-00-00','51430',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 13:23:18','drjayant','2025-12-16 13:33:20'),(10625,0,0,'I',3047,'I003047',2526,3,'0000-00-00','51409',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 13:23:18','drjayant','2025-12-16 13:33:20'),(10626,0,0,'I',3047,'I003047',2526,4,'0000-00-00','51422',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-16 13:23:18','drjayant','2025-12-16 13:33:20'),(10627,0,0,'I',3048,'I003048',2526,1,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 13:25:48','','0000-00-00 00:00:00'),(10628,0,0,'I',3048,'I003048',2526,2,'0000-00-00','51239',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-16 13:25:48','','0000-00-00 00:00:00'),(10629,0,0,'I',3048,'I003048',2526,3,'0000-00-00','51480',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-16 13:25:48','','0000-00-00 00:00:00'),(10630,0,0,'I',3048,'I003048',2526,4,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 13:25:48','','0000-00-00 00:00:00'),(10631,0,0,'I',3049,'I003049',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 13:27:19','','0000-00-00 00:00:00'),(10632,0,0,'I',3049,'I003049',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 13:27:19','','0000-00-00 00:00:00'),(10633,0,0,'I',3049,'I003049',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 13:27:19','','0000-00-00 00:00:00'),(10634,0,0,'I',3049,'I003049',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-16 13:27:19','','0000-00-00 00:00:00'),(10636,0,0,'I',3047,'I003047',2526,6,'0000-00-00','51625',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 13:28:04','drjayant','2025-12-16 13:33:20'),(10637,0,0,'I',3047,'I003047',2526,7,'0000-00-00','51635',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 13:28:04','drjayant','2025-12-16 13:33:20'),(10638,0,0,'I',3050,'I003050',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 14:03:42','','0000-00-00 00:00:00'),(10639,0,0,'I',3050,'I003050',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 14:03:42','','0000-00-00 00:00:00'),(10640,0,0,'I',3050,'I003050',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-16 14:03:42','','0000-00-00 00:00:00'),(10641,0,0,'I',3051,'I003051',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 14:14:12','','0000-00-00 00:00:00'),(10642,0,0,'I',3051,'I003051',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 14:14:12','','0000-00-00 00:00:00'),(10643,0,0,'I',3052,'I003052',2526,1,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-16 14:31:44','','0000-00-00 00:00:00'),(10644,0,0,'I',3053,'I003053',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 17:18:43','','0000-00-00 00:00:00'),(10646,0,0,'I',3054,'I003054',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 17:43:39','darshan','2025-12-16 17:44:15'),(10648,0,0,'I',3054,'I003054',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 17:43:39','darshan','2025-12-16 17:44:15'),(10649,0,0,'I',3054,'I003054',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 17:43:39','darshan','2025-12-16 17:44:15'),(10652,0,0,'I',3055,'I003055',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 17:58:17','darshan','2025-12-16 17:58:41'),(10653,0,0,'I',3055,'I003055',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 17:58:17','darshan','2025-12-16 17:58:41'),(10657,0,0,'I',3056,'I003056',2526,1,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 18:02:58','','0000-00-00 00:00:00'),(10658,0,0,'I',3056,'I003056',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 18:02:58','','0000-00-00 00:00:00'),(10659,0,0,'I',3057,'I003057',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 18:14:36','','0000-00-00 00:00:00'),(10660,0,0,'I',3057,'I003057',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 18:14:36','','0000-00-00 00:00:00'),(10661,0,0,'I',3057,'I003057',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-16 18:14:36','','0000-00-00 00:00:00'),(10662,0,0,'I',3058,'I003058',2526,1,'0000-00-00','51624',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 18:18:57','','0000-00-00 00:00:00'),(10663,0,0,'I',3058,'I003058',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 18:18:57','','0000-00-00 00:00:00'),(10664,0,0,'I',3058,'I003058',2526,3,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 18:18:57','','0000-00-00 00:00:00'),(10665,0,0,'I',3059,'I003059',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-16 18:21:11','darshan','2025-12-16 18:21:47'),(10666,0,0,'I',3059,'I003059',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 18:21:11','darshan','2025-12-16 18:21:47'),(10667,0,0,'I',3059,'I003059',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 18:21:11','darshan','2025-12-16 18:21:47'),(10668,0,0,'I',3060,'I003060',2526,1,'0000-00-00','51273',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 18:21:21','','0000-00-00 00:00:00'),(10669,0,0,'I',3060,'I003060',2526,2,'0000-00-00','51324',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 18:21:21','','0000-00-00 00:00:00'),(10670,0,0,'I',3060,'I003060',2526,3,'0000-00-00','51272',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-12-16 18:21:21','','0000-00-00 00:00:00'),(10671,0,0,'I',3061,'I003061',2526,1,'0000-00-00','51263',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 18:29:20','','0000-00-00 00:00:00'),(10672,0,0,'I',3061,'I003061',2526,2,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 18:29:20','','0000-00-00 00:00:00'),(10673,0,0,'I',3061,'I003061',2526,3,'0000-00-00','51384',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 18:29:20','','0000-00-00 00:00:00'),(10674,0,0,'I',3061,'I003061',2526,4,'0000-00-00','51231',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 18:29:20','','0000-00-00 00:00:00'),(10675,0,0,'I',3061,'I003061',2526,5,'0000-00-00','51354',0,0,'CAP','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 18:29:20','','0000-00-00 00:00:00'),(10676,0,0,'I',3061,'I003061',2526,6,'0000-00-00','51235',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-16 18:29:20','','0000-00-00 00:00:00'),(10677,0,0,'I',3062,'I003062',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 18:37:12','darshan','2025-12-16 18:37:37'),(10678,0,0,'I',3062,'I003062',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 18:37:12','darshan','2025-12-16 18:37:37'),(10679,0,0,'I',3062,'I003062',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 18:37:12','darshan','2025-12-16 18:37:37'),(10680,0,0,'I',3062,'I003062',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-16 18:37:12','darshan','2025-12-16 18:37:37'),(10681,0,0,'I',3062,'I003062',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-16 18:37:37','','0000-00-00 00:00:00'),(10683,0,0,'I',3063,'I003063',2526,1,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 18:37:52','drarchit','2025-12-16 18:39:52'),(10684,0,0,'I',3063,'I003063',2526,2,'0000-00-00','51324',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 18:39:52','','0000-00-00 00:00:00'),(10685,0,0,'I',3063,'I003063',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-16 18:39:52','','0000-00-00 00:00:00'),(10686,0,0,'I',3064,'I003064',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 18:43:15','drarchit','2025-12-16 18:43:24'),(10687,0,0,'I',3064,'I003064',2526,2,'0000-00-00','51473',0,0,'TAB','','','','',0,180,0,0,0,0,'1-1-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-16 18:43:15','drarchit','2025-12-16 18:43:24'),(10688,0,0,'I',3064,'I003064',2526,3,'0000-00-00','51538',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-16 18:43:15','drarchit','2025-12-16 18:43:24'),(10689,0,0,'I',3064,'I003064',2526,4,'0000-00-00','51262',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 18:43:15','drarchit','2025-12-16 18:43:24'),(10690,0,0,'I',3064,'I003064',2526,5,'0000-00-00','51396',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'25','','P',NULL,NULL,'drarchit','2025-12-16 18:43:15','drarchit','2025-12-16 18:43:24'),(10691,0,0,'I',3066,'I003066',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 18:46:41','','0000-00-00 00:00:00'),(10692,0,0,'I',3066,'I003066',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 18:46:41','','0000-00-00 00:00:00'),(10693,0,0,'I',3065,'I003065',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 18:48:52','','0000-00-00 00:00:00'),(10694,0,0,'I',3067,'I003067',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 18:51:56','','0000-00-00 00:00:00'),(10695,0,0,'I',3067,'I003067',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-16 18:51:56','','0000-00-00 00:00:00'),(10696,0,0,'I',3067,'I003067',2526,3,'0000-00-00','51297',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 18:51:56','','0000-00-00 00:00:00'),(10697,0,0,'I',3068,'I003068',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 18:53:05','','0000-00-00 00:00:00'),(10698,0,0,'I',3068,'I003068',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 18:53:05','','0000-00-00 00:00:00'),(10699,0,0,'I',3068,'I003068',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 18:53:05','','0000-00-00 00:00:00'),(10700,0,0,'I',3068,'I003068',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 18:53:05','','0000-00-00 00:00:00'),(10701,0,0,'I',3069,'I003069',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-16 18:59:28','','0000-00-00 00:00:00'),(10702,0,0,'I',3069,'I003069',2526,2,'0000-00-00','51480',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-16 18:59:28','','0000-00-00 00:00:00'),(10703,0,0,'I',3069,'I003069',2526,3,'0000-00-00','51363',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-16 18:59:28','','0000-00-00 00:00:00'),(10704,0,0,'I',3069,'I003069',2526,4,'0000-00-00','51372',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 18:59:28','','0000-00-00 00:00:00'),(10706,0,0,'I',3071,'I003071',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 19:04:57','','0000-00-00 00:00:00'),(10707,0,0,'I',3071,'I003071',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 19:04:57','','0000-00-00 00:00:00'),(10708,0,0,'I',3071,'I003071',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-16 19:04:57','','0000-00-00 00:00:00'),(10709,0,0,'I',3072,'I003072',2526,1,'0000-00-00','51619',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 19:07:53','drjayant','2025-12-16 19:08:48'),(10710,0,0,'I',3072,'I003072',2526,2,'0000-00-00','51422',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-16 19:07:53','drjayant','2025-12-16 19:08:48'),(10711,0,0,'I',3072,'I003072',2526,3,'0000-00-00','51302',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-16 19:07:53','drjayant','2025-12-16 19:08:48'),(10712,0,0,'I',3072,'I003072',2526,4,'0000-00-00','51247',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-16 19:07:53','drjayant','2025-12-16 19:08:48'),(10713,0,0,'I',3072,'I003072',2526,5,'0000-00-00','51600',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 19:07:53','drjayant','2025-12-16 19:08:48'),(10714,0,0,'I',3072,'I003072',2526,6,'0000-00-00','51435',0,0,'TAB','','','','',0,0,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 19:07:53','drjayant','2025-12-16 19:08:48'),(10715,0,0,'I',3072,'I003072',2526,7,'0000-00-00','51636',0,0,'SYRUP','','','','',0,0,0,0,0,0,'5-5-5','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 19:08:48','','0000-00-00 00:00:00'),(10716,0,0,'I',3073,'I003073',2526,1,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 19:09:59','drarchit','2025-12-16 19:10:11'),(10717,0,0,'I',3073,'I003073',2526,2,'0000-00-00','51266',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'drarchit','2025-12-16 19:09:59','drarchit','2025-12-16 19:10:11'),(10718,0,0,'I',3073,'I003073',2526,3,'0000-00-00','51269',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 19:09:59','drarchit','2025-12-16 19:10:11'),(10719,0,0,'I',3073,'I003073',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-16 19:10:11','','0000-00-00 00:00:00'),(10720,0,0,'I',3074,'I003074',2526,1,'0000-00-00','51624',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 19:10:15','','0000-00-00 00:00:00'),(10721,0,0,'I',3074,'I003074',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 19:10:15','','0000-00-00 00:00:00'),(10722,0,0,'I',3074,'I003074',2526,3,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-16 19:10:15','','0000-00-00 00:00:00'),(10723,0,0,'I',3074,'I003074',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-16 19:10:15','','0000-00-00 00:00:00'),(10727,0,0,'I',3075,'I003075',2526,1,'0000-00-00','51442',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-16 19:15:12','','0000-00-00 00:00:00'),(10728,0,0,'I',3075,'I003075',2526,2,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 19:15:12','','0000-00-00 00:00:00'),(10729,0,0,'I',3075,'I003075',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 19:15:12','','0000-00-00 00:00:00'),(10730,0,0,'I',3075,'I003075',2526,4,'0000-00-00','51456',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-16 19:15:12','','0000-00-00 00:00:00'),(10731,0,0,'I',3076,'I003076',2526,1,'0000-00-00','51621',0,0,'TAB','','','','',0,0,0,0,0,0,'1-0-1','','Dy',0,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-16 19:17:46','','0000-00-00 00:00:00'),(10732,0,0,'I',3077,'I003077',2526,1,'0000-00-00','51235',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-16 19:19:35','drarchit','2025-12-16 19:21:13'),(10733,0,0,'I',3077,'I003077',2526,2,'0000-00-00','51492',0,0,'INJ','','','','',0,3,0,0,0,0,'24-0-16','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-16 19:19:35','drarchit','2025-12-16 19:21:13'),(10734,0,0,'I',3077,'I003077',2526,3,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-16 19:21:13','','0000-00-00 00:00:00'),(10735,0,0,'I',3077,'I003077',2526,4,'0000-00-00','51348',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 19:21:13','','0000-00-00 00:00:00'),(10736,0,0,'I',3077,'I003077',2526,5,'0000-00-00','51477',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'drarchit','2025-12-16 19:21:13','','0000-00-00 00:00:00'),(10737,0,0,'I',3077,'I003077',2526,6,'0000-00-00','51456',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-16 19:21:13','','0000-00-00 00:00:00'),(10738,0,0,'I',3077,'I003077',2526,7,'0000-00-00','51238',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-0.5','','Dy',10,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-12-16 19:21:13','','0000-00-00 00:00:00'),(10739,0,0,'I',3078,'I003078',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-16 19:22:07','darshan','2025-12-16 19:22:38'),(10740,0,0,'I',3078,'I003078',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 19:22:07','darshan','2025-12-16 19:22:38'),(10742,0,0,'I',3078,'I003078',2526,3,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 19:22:32','darshan','2025-12-16 19:22:38'),(10743,0,0,'I',3078,'I003078',2526,4,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 19:22:38','','0000-00-00 00:00:00'),(10744,0,0,'I',3079,'I003079',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 19:37:13','darshan','2025-12-16 19:37:28'),(10745,0,0,'I',3079,'I003079',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 19:37:13','darshan','2025-12-16 19:37:28'),(10746,0,0,'I',3079,'I003079',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 19:37:13','darshan','2025-12-16 19:37:28'),(10747,0,0,'I',3079,'I003079',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-16 19:37:28','','0000-00-00 00:00:00'),(10748,0,0,'I',3080,'I003080',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 19:39:35','drarchit','2025-12-16 19:41:39'),(10749,0,0,'I',3080,'I003080',2526,2,'0000-00-00','51341',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 19:39:35','drarchit','2025-12-16 19:41:39'),(10750,0,0,'I',3080,'I003080',2526,3,'0000-00-00','51359',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 19:39:35','drarchit','2025-12-16 19:41:39'),(10751,0,0,'I',3080,'I003080',2526,4,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-16 19:39:35','drarchit','2025-12-16 19:41:39'),(10752,0,0,'I',3080,'I003080',2526,5,'0000-00-00','51590',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 19:41:39','','0000-00-00 00:00:00'),(10753,0,0,'I',3081,'I003081',2526,1,'0000-00-00','51324',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 19:52:40','drarchit','2025-12-16 19:53:09'),(10754,0,0,'I',3081,'I003081',2526,2,'0000-00-00','51304',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 19:52:40','drarchit','2025-12-16 19:53:09'),(10755,0,0,'I',3081,'I003081',2526,3,'0000-00-00','51278',0,0,'CAP','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 19:52:40','drarchit','2025-12-16 19:53:09'),(10756,0,0,'I',3081,'I003081',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-16 19:53:09','','0000-00-00 00:00:00'),(10757,0,0,'I',3082,'I003082',2526,1,'0000-00-00','51354',0,0,'CAP','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 19:56:09','drarchit','2025-12-16 19:56:40'),(10758,0,0,'I',3083,'I003083',2526,1,'0000-00-00','51436',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 19:59:58','','0000-00-00 00:00:00'),(10759,0,0,'I',3083,'I003083',2526,2,'0000-00-00','51248',0,0,'CAP','','','','',0,12,0,0,0,0,'1-0-0','','Wk',12,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 19:59:58','','0000-00-00 00:00:00'),(10760,0,0,'I',3083,'I003083',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-16 19:59:58','','0000-00-00 00:00:00'),(10761,0,0,'I',3083,'I003083',2526,4,'0000-00-00','51468',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-16 19:59:58','','0000-00-00 00:00:00'),(10762,0,0,'I',3083,'I003083',2526,5,'0000-00-00','51219',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-12-16 19:59:58','','0000-00-00 00:00:00'),(10763,0,0,'I',3083,'I003083',2526,6,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-16 19:59:58','','0000-00-00 00:00:00'),(10764,0,0,'I',3084,'I003084',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 20:01:03','','0000-00-00 00:00:00'),(10765,0,0,'I',3084,'I003084',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 20:01:03','','0000-00-00 00:00:00'),(10766,0,0,'I',3084,'I003084',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-16 20:01:03','','0000-00-00 00:00:00'),(10767,0,0,'I',3084,'I003084',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-16 20:01:03','','0000-00-00 00:00:00'),(10768,0,0,'I',3085,'I003085',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 20:04:09','','0000-00-00 00:00:00'),(10769,0,0,'I',3085,'I003085',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 20:04:09','','0000-00-00 00:00:00'),(10770,0,0,'I',3085,'I003085',2526,3,'0000-00-00','51322',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 20:04:09','','0000-00-00 00:00:00'),(10771,0,0,'I',3085,'I003085',2526,4,'0000-00-00','51265',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 20:04:09','','0000-00-00 00:00:00'),(10772,0,0,'I',3085,'I003085',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-16 20:04:09','','0000-00-00 00:00:00'),(10773,0,0,'I',3086,'I003086',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 20:14:10','','0000-00-00 00:00:00'),(10774,0,0,'I',3086,'I003086',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-16 20:14:10','','0000-00-00 00:00:00'),(10775,0,0,'I',3087,'I003087',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 10:59:37','','0000-00-00 00:00:00'),(10776,0,0,'I',3087,'I003087',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 10:59:37','','0000-00-00 00:00:00'),(10778,0,0,'I',3088,'I003088',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:00:58','darshan','2025-12-17 11:01:16'),(10780,0,0,'I',3088,'I003088',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:01:16','','0000-00-00 00:00:00'),(10781,0,0,'I',3089,'I003089',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:12:47','','0000-00-00 00:00:00'),(10782,0,0,'I',3089,'I003089',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:12:47','','0000-00-00 00:00:00'),(10783,0,0,'I',3089,'I003089',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:12:47','','0000-00-00 00:00:00'),(10784,0,0,'I',3090,'I003090',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-17 11:14:56','darshan','2025-12-17 11:15:28'),(10785,0,0,'I',3090,'I003090',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:14:56','darshan','2025-12-17 11:15:28'),(10788,0,0,'I',3091,'I003091',2526,1,'0000-00-00','51561',0,0,'INJ','','','','',0,1,0,0,0,0,'26-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'271','','P',NULL,NULL,'drarchit','2025-12-17 11:20:00','drarchit','2025-12-17 11:22:56'),(10789,0,0,'I',3091,'I003091',2526,2,'0000-00-00','51532',0,0,'INJ','','','','',0,3,0,0,0,0,'0-30-18','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-17 11:20:00','drarchit','2025-12-17 11:22:56'),(10790,0,0,'I',3091,'I003091',2526,3,'0000-00-00','51223',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-17 11:20:00','drarchit','2025-12-17 11:22:56'),(10791,0,0,'I',3091,'I003091',2526,4,'0000-00-00','51464',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 11:20:00','drarchit','2025-12-17 11:22:56'),(10792,0,0,'I',3091,'I003091',2526,5,'0000-00-00','51248',0,0,'CAP','','','','',0,12,0,0,0,0,'1-0-0','','Wk',12,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 11:22:56','','0000-00-00 00:00:00'),(10793,0,0,'I',3091,'I003091',2526,6,'0000-00-00','51257',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 11:22:56','','0000-00-00 00:00:00'),(10794,0,0,'I',3091,'I003091',2526,7,'0000-00-00','51505',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-17 11:22:56','','0000-00-00 00:00:00'),(10795,0,0,'I',3092,'I003092',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:30:32','','0000-00-00 00:00:00'),(10796,0,0,'I',3092,'I003092',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:30:32','','0000-00-00 00:00:00'),(10797,0,0,'I',3092,'I003092',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:30:32','','0000-00-00 00:00:00'),(10798,0,0,'I',3092,'I003092',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-17 11:30:32','','0000-00-00 00:00:00'),(10799,0,0,'I',3092,'I003092',2526,5,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:30:32','','0000-00-00 00:00:00'),(10800,0,0,'I',3093,'I003093',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-17 11:40:49','darshan','2025-12-17 11:41:07'),(10801,0,0,'I',3093,'I003093',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:40:49','darshan','2025-12-17 11:41:07'),(10802,0,0,'I',3093,'I003093',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:40:49','darshan','2025-12-17 11:41:07'),(10804,0,0,'I',3094,'I003094',2526,1,'0000-00-00','51349',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-12-17 11:42:26','','0000-00-00 00:00:00'),(10805,0,0,'I',3094,'I003094',2526,2,'0000-00-00','51576',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-17 11:42:26','','0000-00-00 00:00:00'),(10807,0,0,'I',3095,'I003095',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-17 11:44:06','darshan','2025-12-17 11:45:28'),(10808,0,0,'I',3095,'I003095',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:44:06','darshan','2025-12-17 11:45:28'),(10810,0,0,'I',3095,'I003095',2526,3,'0000-00-00','51283',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:44:06','darshan','2025-12-17 11:45:28'),(10811,0,0,'I',3096,'I003096',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-17 11:48:41','darshan','2025-12-17 11:49:11'),(10812,0,0,'I',3096,'I003096',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:48:41','darshan','2025-12-17 11:49:11'),(10813,0,0,'I',3096,'I003096',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:48:41','darshan','2025-12-17 11:49:11'),(10814,0,0,'I',3096,'I003096',2526,4,'0000-00-00','51265',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:48:41','darshan','2025-12-17 11:49:11'),(10815,0,0,'I',3097,'I003097',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-17 11:52:37','darshan','2025-12-17 11:53:04'),(10816,0,0,'I',3097,'I003097',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:52:37','darshan','2025-12-17 11:53:04'),(10817,0,0,'I',3097,'I003097',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:52:37','darshan','2025-12-17 11:53:04'),(10819,0,0,'I',3098,'I003098',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 11:54:45','drarchit','2025-12-17 11:55:10'),(10820,0,0,'I',3098,'I003098',2526,2,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 11:54:45','drarchit','2025-12-17 11:55:10'),(10821,0,0,'I',3098,'I003098',2526,3,'0000-00-00','51421',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-17 11:54:45','drarchit','2025-12-17 11:55:10'),(10822,0,0,'I',3098,'I003098',2526,4,'0000-00-00','51473',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-17 11:54:45','drarchit','2025-12-17 11:55:10'),(10823,0,0,'I',3099,'I003099',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:56:58','darshan','2025-12-17 11:58:17'),(10824,0,0,'I',3099,'I003099',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:56:58','darshan','2025-12-17 11:58:17'),(10825,0,0,'I',3099,'I003099',2526,3,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-17 11:56:58','darshan','2025-12-17 11:58:17'),(10828,0,0,'I',3099,'I003099',2526,4,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 11:58:17','','0000-00-00 00:00:00'),(10829,0,0,'I',3100,'I003100',2526,1,'0000-00-00','51247',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 12:00:10','drarchit','2025-12-17 12:00:26'),(10830,0,0,'I',3100,'I003100',2526,2,'0000-00-00','51471',0,0,'CAP','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-12-17 12:00:10','drarchit','2025-12-17 12:00:26'),(10831,0,0,'I',3100,'I003100',2526,3,'0000-00-00','51238',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-12-17 12:00:10','drarchit','2025-12-17 12:00:26'),(10834,0,0,'I',3101,'I003101',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-17 12:02:47','','0000-00-00 00:00:00'),(10835,0,0,'I',3101,'I003101',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 12:02:47','','0000-00-00 00:00:00'),(10836,0,0,'I',3101,'I003101',2526,3,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 12:02:47','','0000-00-00 00:00:00'),(10837,0,0,'I',3101,'I003101',2526,4,'0000-00-00','51277',0,0,'OINT','','','','',0,2,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'darshan','2025-12-17 12:02:47','','0000-00-00 00:00:00'),(10838,0,0,'I',3101,'I003101',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-17 12:02:47','','0000-00-00 00:00:00'),(10839,0,0,'I',3102,'I003102',2526,1,'0000-00-00','51283',0,0,'TAB','','','','',0,0,0,0,0,0,'0-0-.5','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 12:13:59','darshan','2025-12-17 12:14:52'),(10840,0,0,'I',3102,'I003102',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 12:14:52','','0000-00-00 00:00:00'),(10841,0,0,'I',3102,'I003102',2526,3,'0000-00-00','51184',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 12:14:52','','0000-00-00 00:00:00'),(10842,0,0,'I',3103,'I003103',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-17 12:32:30','drjayant','2025-12-17 12:34:10'),(10843,0,0,'I',3103,'I003103',2526,2,'0000-00-00','51376',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-17 12:32:30','drjayant','2025-12-17 12:34:10'),(10844,0,0,'I',3103,'I003103',2526,3,'0000-00-00','51422',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-17 12:32:30','drjayant','2025-12-17 12:34:10'),(10845,0,0,'I',3103,'I003103',2526,4,'0000-00-00','51409',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-17 12:32:30','drjayant','2025-12-17 12:34:10'),(10846,0,0,'I',3104,'I003104',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 12:33:00','','0000-00-00 00:00:00'),(10847,0,0,'I',3104,'I003104',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 12:33:00','','0000-00-00 00:00:00'),(10848,0,0,'I',3103,'I003103',2526,5,'0000-00-00','51600',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-17 12:33:09','drjayant','2025-12-17 12:34:10'),(10849,0,0,'I',3103,'I003103',2526,6,'0000-00-00','51637',0,0,'LOTION','','','','',0,1,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-12-17 12:34:10','','0000-00-00 00:00:00'),(10850,0,0,'I',3105,'I003105',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 12:37:01','darshan','2025-12-17 12:37:36'),(10852,0,0,'I',3105,'I003105',2526,2,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-17 12:37:01','darshan','2025-12-17 12:37:36'),(10853,0,0,'I',3106,'I003106',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 12:46:04','darshan','2025-12-17 12:46:22'),(10854,0,0,'I',3106,'I003106',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 12:46:04','darshan','2025-12-17 12:46:22'),(10855,0,0,'I',3106,'I003106',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 12:46:04','darshan','2025-12-17 12:46:22'),(10856,0,0,'I',3106,'I003106',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-17 12:46:04','darshan','2025-12-17 12:46:22'),(10857,0,0,'I',3107,'I003107',2526,1,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 12:48:44','drarchit','2025-12-17 12:50:15'),(10858,0,0,'I',3107,'I003107',2526,2,'0000-00-00','51368',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 12:48:44','drarchit','2025-12-17 12:50:15'),(10859,0,0,'I',3107,'I003107',2526,3,'0000-00-00','51367',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 12:48:44','drarchit','2025-12-17 12:50:15'),(10860,0,0,'I',3107,'I003107',2526,4,'0000-00-00','51355',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 12:50:15','','0000-00-00 00:00:00'),(10861,0,0,'I',3108,'I003108',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 12:56:06','','0000-00-00 00:00:00'),(10862,0,0,'I',3108,'I003108',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 12:56:06','','0000-00-00 00:00:00'),(10863,0,0,'I',3110,'I003110',2526,1,'0000-00-00','51466',0,0,'TAB','','','','',0,12,0,0,0,6,'','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-17 12:59:38','darshan','2025-12-17 13:00:06'),(10864,0,0,'I',3110,'I003110',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 12:59:38','darshan','2025-12-17 13:00:06'),(10866,0,0,'I',3110,'I003110',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 12:59:38','darshan','2025-12-17 13:00:06'),(10867,0,0,'I',3110,'I003110',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-17 12:59:38','darshan','2025-12-17 13:00:06'),(10868,0,0,'I',3111,'I003111',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 13:07:35','','0000-00-00 00:00:00'),(10869,0,0,'I',3111,'I003111',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-17 13:07:35','','0000-00-00 00:00:00'),(10870,0,0,'I',3111,'I003111',2526,3,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 13:07:35','','0000-00-00 00:00:00'),(10871,0,0,'I',3112,'I003112',2526,1,'0000-00-00','51320',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-17 13:10:45','drjayant','2025-12-17 13:12:47'),(10872,0,0,'I',3112,'I003112',2526,2,'0000-00-00','51399',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-17 13:10:45','drjayant','2025-12-17 13:12:47'),(10873,0,0,'I',3112,'I003112',2526,3,'0000-00-00','51619',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-17 13:12:47','','0000-00-00 00:00:00'),(10874,0,0,'I',3112,'I003112',2526,4,'0000-00-00','51422',0,0,'CAP','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-17 13:12:47','','0000-00-00 00:00:00'),(10875,0,0,'I',3112,'I003112',2526,5,'0000-00-00','51302',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-17 13:12:47','','0000-00-00 00:00:00'),(10876,0,0,'I',3112,'I003112',2526,6,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-17 13:12:47','','0000-00-00 00:00:00'),(10877,0,0,'I',3112,'I003112',2526,7,'0000-00-00','51620',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-17 13:12:47','','0000-00-00 00:00:00'),(10878,0,0,'I',3112,'I003112',2526,8,'0000-00-00','51636',0,0,'SYRUP','','','','',0,1,0,0,0,0,'5-5-5','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-17 13:12:47','','0000-00-00 00:00:00'),(10879,0,0,'I',3113,'I003113',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 13:21:43','','0000-00-00 00:00:00'),(10880,0,0,'I',3114,'I003114',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 13:28:11','','0000-00-00 00:00:00'),(10881,0,0,'I',3114,'I003114',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 13:28:11','','0000-00-00 00:00:00'),(10882,0,0,'I',3115,'I003115',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 13:32:10','darshan','2025-12-17 13:32:31'),(10883,0,0,'I',3115,'I003115',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-17 13:32:10','darshan','2025-12-17 13:32:31'),(10884,0,0,'I',3116,'I003116',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 13:37:39','','0000-00-00 00:00:00'),(10885,0,0,'I',3116,'I003116',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 13:37:39','','0000-00-00 00:00:00'),(10886,0,0,'I',3117,'I003117',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 14:26:59','','0000-00-00 00:00:00'),(10887,0,0,'I',3117,'I003117',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 14:26:59','','0000-00-00 00:00:00'),(10888,0,0,'I',3117,'I003117',2526,3,'0000-00-00','51295',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-17 14:26:59','','0000-00-00 00:00:00'),(10889,0,0,'I',3117,'I003117',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 14:26:59','','0000-00-00 00:00:00'),(10890,0,0,'I',3118,'I003118',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 17:17:43','darshan','2025-12-17 17:18:51'),(10891,0,0,'I',3118,'I003118',2526,2,'0000-00-00','51190',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 17:17:43','darshan','2025-12-17 17:18:51'),(10892,0,0,'I',3118,'I003118',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 17:17:43','darshan','2025-12-17 17:18:51'),(10893,0,0,'I',3118,'I003118',2526,4,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-17 17:18:51','','0000-00-00 00:00:00'),(10894,0,0,'I',3119,'I003119',2526,1,'0000-00-00','51277',0,0,'OINT','','','','',0,2,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'darshan','2025-12-17 17:42:25','darshan','2025-12-17 18:13:47'),(10895,0,0,'I',3120,'I003120',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 17:43:36','darshan','2025-12-17 17:43:43'),(10897,0,0,'I',3121,'I003121',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 17:47:38','','0000-00-00 00:00:00'),(10898,0,0,'I',3121,'I003121',2526,2,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 17:47:38','','0000-00-00 00:00:00'),(10899,0,0,'I',3119,'I003119',2526,2,'0000-00-00','51276',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 18:13:47','','0000-00-00 00:00:00'),(10900,0,0,'I',3119,'I003119',2526,3,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 18:13:47','','0000-00-00 00:00:00'),(10901,0,0,'I',3119,'I003119',2526,4,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 18:13:47','','0000-00-00 00:00:00'),(10902,0,0,'I',3119,'I003119',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-17 18:13:47','','0000-00-00 00:00:00'),(10903,0,0,'I',3122,'I003122',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 18:20:58','darshan','2025-12-17 18:21:30'),(10904,0,0,'I',3122,'I003122',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 18:20:58','darshan','2025-12-17 18:21:30'),(10905,0,0,'I',3122,'I003122',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 18:20:58','darshan','2025-12-17 18:21:30'),(10907,0,0,'I',3122,'I003122',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-17 18:21:30','','0000-00-00 00:00:00'),(10908,0,0,'I',3123,'I003123',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-17 18:21:34','drjayant','2025-12-17 19:20:38'),(10909,0,0,'I',3124,'I003124',2526,1,'0000-00-00','51347',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-12-17 18:26:41','drarchit','2025-12-17 19:22:31'),(10910,0,0,'I',3124,'I003124',2526,2,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 18:27:30','drarchit','2025-12-17 19:22:31'),(10911,0,0,'I',3124,'I003124',2526,3,'0000-00-00','51538',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-17 18:27:30','drarchit','2025-12-17 19:22:31'),(10912,0,0,'I',3125,'I003125',2526,1,'0000-00-00','51376',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-17 18:29:36','','0000-00-00 00:00:00'),(10913,0,0,'I',3123,'I003123',2526,2,'0000-00-00','51376',0,0,'TAB','','','','',0,15,0,0,0,0,'0-1-0','','Dy',15,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-17 18:32:16','drjayant','2025-12-17 19:20:38'),(10914,0,0,'I',3126,'I003126',2526,1,'0000-00-00','51550',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-17 18:33:55','drarchit','2025-12-17 18:37:10'),(10915,0,0,'I',3126,'I003126',2526,2,'0000-00-00','51485',0,0,'CAP','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-17 18:33:55','drarchit','2025-12-17 18:37:10'),(10916,0,0,'I',3126,'I003126',2526,3,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-17 18:33:55','drarchit','2025-12-17 18:37:10'),(10917,0,0,'I',3126,'I003126',2526,4,'0000-00-00','51528',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 18:35:26','drarchit','2025-12-17 18:37:10'),(10918,0,0,'I',3126,'I003126',2526,5,'0000-00-00','51237',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 18:37:10','','0000-00-00 00:00:00'),(10919,0,0,'I',3126,'I003126',2526,6,'0000-00-00','51387',0,0,'INJ','','','','',0,1,0,0,0,0,'0-0-10','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-17 18:37:10','','0000-00-00 00:00:00'),(10920,0,0,'I',3126,'I003126',2526,7,'0000-00-00','51532',0,0,'INJ','','','','',0,1,0,0,0,0,'18-30-16','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-17 18:37:10','','0000-00-00 00:00:00'),(10921,0,0,'I',3127,'I003127',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 18:40:01','','0000-00-00 00:00:00'),(10922,0,0,'I',3127,'I003127',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 18:40:01','','0000-00-00 00:00:00'),(10923,0,0,'I',3127,'I003127',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 18:40:01','','0000-00-00 00:00:00'),(10924,0,0,'I',3127,'I003127',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-17 18:40:01','','0000-00-00 00:00:00'),(10925,0,0,'I',3128,'I003128',2526,1,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 18:43:45','drarchit','2025-12-17 18:45:09'),(10926,0,0,'I',3128,'I003128',2526,2,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 18:44:54','drarchit','2025-12-17 18:45:09'),(10927,0,0,'I',3128,'I003128',2526,3,'0000-00-00','51563',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-17 18:44:54','drarchit','2025-12-17 18:45:09'),(10928,0,0,'I',3128,'I003128',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-17 18:44:54','drarchit','2025-12-17 18:45:09'),(10929,0,0,'I',3128,'I003128',2526,5,'0000-00-00','51467',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-17 18:44:54','drarchit','2025-12-17 18:45:09'),(10930,0,0,'I',3128,'I003128',2526,6,'0000-00-00','51412',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 18:45:09','','0000-00-00 00:00:00'),(10931,0,0,'I',3129,'I003129',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 18:46:23','','0000-00-00 00:00:00'),(10932,0,0,'I',3129,'I003129',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 18:46:23','','0000-00-00 00:00:00'),(10933,0,0,'I',3129,'I003129',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 18:46:23','','0000-00-00 00:00:00'),(10934,0,0,'I',3129,'I003129',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-17 18:46:23','','0000-00-00 00:00:00'),(10935,0,0,'I',3129,'I003129',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-17 18:46:23','','0000-00-00 00:00:00'),(10936,0,0,'I',3130,'I003130',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 18:50:50','darshan','2025-12-17 18:51:18'),(10937,0,0,'I',3130,'I003130',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 18:50:50','darshan','2025-12-17 18:51:18'),(10938,0,0,'I',3130,'I003130',2526,3,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 18:50:50','darshan','2025-12-17 18:51:18'),(10939,0,0,'I',3131,'I003131',2526,1,'0000-00-00','51373',0,0,'CAP','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 18:51:03','drarchit','2025-12-17 18:51:15'),(10940,0,0,'I',3131,'I003131',2526,2,'0000-00-00','51396',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'25','','P',NULL,NULL,'drarchit','2025-12-17 18:51:03','drarchit','2025-12-17 18:51:15'),(10942,0,0,'I',3131,'I003131',2526,3,'0000-00-00','51395',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 18:51:15','','0000-00-00 00:00:00'),(10943,0,0,'I',3130,'I003130',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-17 18:51:18','','0000-00-00 00:00:00'),(10944,0,0,'I',3130,'I003130',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-17 18:51:18','','0000-00-00 00:00:00'),(10945,0,0,'I',3132,'I003132',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 18:53:52','darshan','2025-12-17 18:54:48'),(10947,0,0,'I',3132,'I003132',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 18:53:52','darshan','2025-12-17 18:54:48'),(10949,0,0,'I',3132,'I003132',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-17 18:54:48','','0000-00-00 00:00:00'),(10950,0,0,'I',3133,'I003133',2526,1,'0000-00-00','51619',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-17 18:54:52','','0000-00-00 00:00:00'),(10951,0,0,'I',3133,'I003133',2526,2,'0000-00-00','51422',0,0,'CAP','','','','',0,3,0,0,0,0,'1-0-0','','Dy',3,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-17 18:54:52','','0000-00-00 00:00:00'),(10952,0,0,'I',3133,'I003133',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-17 18:54:52','','0000-00-00 00:00:00'),(10953,0,0,'I',3133,'I003133',2526,4,'0000-00-00','51600',0,0,'TAB','','','','',0,3,0,0,0,0,'0-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-17 18:54:52','','0000-00-00 00:00:00'),(10954,0,0,'I',3133,'I003133',2526,5,'0000-00-00','51435',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-17 18:54:52','','0000-00-00 00:00:00'),(10955,0,0,'I',3133,'I003133',2526,6,'0000-00-00','51614',0,0,'SYRUP','','','','',0,1,0,0,0,0,'5-5-5','','Dy',3,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-12-17 18:54:52','','0000-00-00 00:00:00'),(10957,0,0,'I',3134,'I003134',2526,1,'0000-00-00','51628',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:01:28','','0000-00-00 00:00:00'),(10958,0,0,'I',3134,'I003134',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:01:28','','0000-00-00 00:00:00'),(10959,0,0,'I',3134,'I003134',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-17 19:01:28','','0000-00-00 00:00:00'),(10960,0,0,'I',3134,'I003134',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:01:28','','0000-00-00 00:00:00'),(10961,0,0,'I',3134,'I003134',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-17 19:01:28','','0000-00-00 00:00:00'),(10962,0,0,'I',3135,'I003135',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 19:05:44','','0000-00-00 00:00:00'),(10963,0,0,'I',3135,'I003135',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 19:05:44','','0000-00-00 00:00:00'),(10964,0,0,'I',3135,'I003135',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-17 19:05:44','','0000-00-00 00:00:00'),(10965,0,0,'I',3136,'I003136',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 19:10:00','','0000-00-00 00:00:00'),(10966,0,0,'I',3136,'I003136',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 19:10:00','','0000-00-00 00:00:00'),(10967,0,0,'I',3136,'I003136',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 19:10:00','','0000-00-00 00:00:00'),(10968,0,0,'I',3136,'I003136',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-17 19:10:00','','0000-00-00 00:00:00'),(10969,0,0,'I',3138,'I003138',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 19:15:30','','0000-00-00 00:00:00'),(10970,0,0,'I',3139,'I003139',2526,1,'0000-00-00','51321',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:18:14','','0000-00-00 00:00:00'),(10971,0,0,'I',3139,'I003139',2526,2,'0000-00-00','51379',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:18:14','','0000-00-00 00:00:00'),(10972,0,0,'I',3139,'I003139',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-17 19:18:14','','0000-00-00 00:00:00'),(10973,0,0,'I',3139,'I003139',2526,4,'0000-00-00','51380',0,0,'CAP','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:18:14','','0000-00-00 00:00:00'),(10974,0,0,'I',3139,'I003139',2526,5,'0000-00-00','51372',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:18:14','','0000-00-00 00:00:00'),(10975,0,0,'I',3123,'I003123',2526,3,'0000-00-00','51296',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-17 19:19:38','drjayant','2025-12-17 19:20:38'),(10976,0,0,'I',3123,'I003123',2526,4,'0000-00-00','51426',0,0,'TAB','','','','',0,15,0,0,0,0,'0-1-0','','Dy',15,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-17 19:19:38','drjayant','2025-12-17 19:20:38'),(10977,0,0,'I',3123,'I003123',2526,5,'0000-00-00','51201',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-17 19:19:38','drjayant','2025-12-17 19:20:38'),(10978,0,0,'I',3140,'I003140',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 19:20:08','','0000-00-00 00:00:00'),(10979,0,0,'I',3140,'I003140',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 19:20:08','','0000-00-00 00:00:00'),(10980,0,0,'I',3140,'I003140',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-17 19:20:08','','0000-00-00 00:00:00'),(10981,0,0,'I',3140,'I003140',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 19:20:08','','0000-00-00 00:00:00'),(10982,0,0,'I',3141,'I003141',2526,1,'0000-00-00','51628',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:20:13','drarchit','2025-12-17 19:20:48'),(10983,0,0,'I',3141,'I003141',2526,2,'0000-00-00','51396',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:20:13','drarchit','2025-12-17 19:20:48'),(10984,0,0,'I',3123,'I003123',2526,6,'0000-00-00','51409',0,0,'TAB','','','','',0,15,0,0,0,0,'0-1-0','','Dy',15,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-17 19:20:38','','0000-00-00 00:00:00'),(10986,0,0,'I',3141,'I003141',2526,3,'0000-00-00','51373',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:20:40','drarchit','2025-12-17 19:20:48'),(10987,0,0,'I',3141,'I003141',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:20:40','drarchit','2025-12-17 19:20:48'),(10988,0,0,'I',3124,'I003124',2526,4,'0000-00-00','51228',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-17 19:22:31','','0000-00-00 00:00:00'),(10989,0,0,'I',3142,'I003142',2526,1,'0000-00-00','51324',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:27:13','drarchit','2025-12-17 19:27:35'),(10990,0,0,'I',3142,'I003142',2526,2,'0000-00-00','51262',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:27:35','','0000-00-00 00:00:00'),(10991,0,0,'I',3142,'I003142',2526,3,'0000-00-00','51219',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-12-17 19:27:35','','0000-00-00 00:00:00'),(10992,0,0,'I',3143,'I003143',2526,1,'0000-00-00','51628',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:32:58','','0000-00-00 00:00:00'),(10993,0,0,'I',3143,'I003143',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-17 19:32:58','','0000-00-00 00:00:00'),(10994,0,0,'I',3143,'I003143',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:32:58','','0000-00-00 00:00:00'),(10995,0,0,'I',3143,'I003143',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-17 19:32:58','','0000-00-00 00:00:00'),(10996,0,0,'I',3143,'I003143',2526,5,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:32:58','','0000-00-00 00:00:00'),(10997,0,0,'I',3144,'I003144',2526,1,'0000-00-00','51638',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-17 19:35:03','drjayant','2025-12-17 19:37:44'),(10998,0,0,'I',3144,'I003144',2526,2,'0000-00-00','51382',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-17 19:35:03','drjayant','2025-12-17 19:37:44'),(10999,0,0,'I',3144,'I003144',2526,3,'0000-00-00','51422',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-17 19:35:03','drjayant','2025-12-17 19:37:44'),(11000,0,0,'I',3145,'I003145',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-17 19:37:24','','0000-00-00 00:00:00'),(11001,0,0,'I',3145,'I003145',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 19:37:24','','0000-00-00 00:00:00'),(11002,0,0,'I',3145,'I003145',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 19:37:24','','0000-00-00 00:00:00'),(11003,0,0,'I',3145,'I003145',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-17 19:37:24','','0000-00-00 00:00:00'),(11004,0,0,'I',3145,'I003145',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-17 19:37:24','','0000-00-00 00:00:00'),(11005,0,0,'I',3146,'I003146',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 19:43:26','darshan','2025-12-17 19:43:33'),(11006,0,0,'I',3146,'I003146',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 19:43:26','darshan','2025-12-17 19:43:33'),(11007,0,0,'I',3146,'I003146',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-17 19:43:26','darshan','2025-12-17 19:43:33'),(11008,0,0,'I',3146,'I003146',2526,4,'0000-00-00','51265',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 19:43:26','darshan','2025-12-17 19:43:33'),(11009,0,0,'I',3147,'I003147',2526,1,'0000-00-00','51628',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:45:10','','0000-00-00 00:00:00'),(11010,0,0,'I',3147,'I003147',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-17 19:45:10','','0000-00-00 00:00:00'),(11011,0,0,'I',3147,'I003147',2526,3,'0000-00-00','51403',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:45:10','','0000-00-00 00:00:00'),(11012,0,0,'I',3147,'I003147',2526,4,'0000-00-00','51500',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:45:10','','0000-00-00 00:00:00'),(11013,0,0,'I',3148,'I003148',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-17 19:51:39','drarchit','2025-12-17 19:52:15'),(11014,0,0,'I',3148,'I003148',2526,2,'0000-00-00','51370',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-17 19:51:39','drarchit','2025-12-17 19:52:15'),(11016,0,0,'I',3148,'I003148',2526,3,'0000-00-00','51518',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 19:52:15','','0000-00-00 00:00:00'),(11017,0,0,'I',3148,'I003148',2526,4,'0000-00-00','51480',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-17 19:52:15','','0000-00-00 00:00:00'),(11018,0,0,'I',3149,'I003149',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 19:55:56','','0000-00-00 00:00:00'),(11019,0,0,'I',3149,'I003149',2526,2,'0000-00-00','51234',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-17 19:55:56','','0000-00-00 00:00:00'),(11020,0,0,'I',3149,'I003149',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-17 19:55:56','','0000-00-00 00:00:00'),(11021,0,0,'I',3150,'I003150',2526,1,'0000-00-00','51409',0,0,'TAB','','','','',0,0,0,0,0,0,'0-1-0','','Dy',0,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-17 19:56:18','','0000-00-00 00:00:00'),(11022,0,0,'I',3151,'I003151',2526,1,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-17 19:58:05','','0000-00-00 00:00:00'),(11023,0,0,'I',3152,'I003152',2526,1,'0000-00-00','51566',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 20:06:46','','0000-00-00 00:00:00'),(11024,0,0,'I',3152,'I003152',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-17 20:06:46','','0000-00-00 00:00:00'),(11025,0,0,'I',3152,'I003152',2526,3,'0000-00-00','51337',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 20:06:46','','0000-00-00 00:00:00'),(11026,0,0,'I',3152,'I003152',2526,4,'0000-00-00','51279',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 20:06:46','','0000-00-00 00:00:00'),(11027,0,0,'I',3152,'I003152',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 20:06:46','','0000-00-00 00:00:00'),(11029,0,0,'I',3154,'I003154',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-17 20:17:36','drarchit','2025-12-17 20:18:42'),(11031,0,0,'I',3154,'I003154',2526,2,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 20:17:36','drarchit','2025-12-17 20:18:42'),(11032,0,0,'I',3154,'I003154',2526,3,'0000-00-00','51240',0,0,'TAB','','','','',0,45,0,0,0,0,'0.5-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 20:17:36','drarchit','2025-12-17 20:18:42'),(11033,0,0,'I',3154,'I003154',2526,4,'0000-00-00','51353',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 20:17:36','drarchit','2025-12-17 20:18:42'),(11034,0,0,'I',3154,'I003154',2526,5,'0000-00-00','51324',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-17 20:17:36','drarchit','2025-12-17 20:18:42'),(11035,0,0,'I',3154,'I003154',2526,6,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-17 20:18:42','','0000-00-00 00:00:00'),(11036,0,0,'I',3155,'I003155',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 10:43:59','','0000-00-00 00:00:00'),(11037,0,0,'I',3155,'I003155',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 10:43:59','','0000-00-00 00:00:00'),(11038,0,0,'I',3156,'I003156',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 10:50:17','darshan','2025-12-18 10:50:31'),(11039,0,0,'I',3156,'I003156',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 10:50:17','darshan','2025-12-18 10:50:31'),(11040,0,0,'I',3157,'I003157',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-18 10:50:59','','0000-00-00 00:00:00'),(11041,0,0,'I',3157,'I003157',2526,2,'0000-00-00','51572',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-18 10:50:59','','0000-00-00 00:00:00'),(11042,0,0,'I',3157,'I003157',2526,3,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-18 10:50:59','','0000-00-00 00:00:00'),(11043,0,0,'I',3157,'I003157',2526,4,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 10:50:59','','0000-00-00 00:00:00'),(11044,0,0,'I',3157,'I003157',2526,5,'0000-00-00','51382',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 10:50:59','','0000-00-00 00:00:00'),(11045,0,0,'I',3158,'I003158',2526,1,'0000-00-00','51628',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 10:55:38','drarchit','2025-12-18 10:55:42'),(11046,0,0,'I',3158,'I003158',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-18 10:55:38','drarchit','2025-12-18 10:55:42'),(11047,0,0,'I',3158,'I003158',2526,3,'0000-00-00','51337',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 10:55:38','drarchit','2025-12-18 10:55:42'),(11049,0,0,'I',3158,'I003158',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 10:55:42','','0000-00-00 00:00:00'),(11050,0,0,'I',3159,'I003159',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 10:56:47','darshan','2025-12-18 10:57:40'),(11051,0,0,'I',3159,'I003159',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-18 10:56:47','darshan','2025-12-18 10:57:40'),(11052,0,0,'I',3159,'I003159',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 10:56:47','darshan','2025-12-18 10:57:40'),(11053,0,0,'I',3159,'I003159',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-18 10:56:47','darshan','2025-12-18 10:57:40'),(11054,0,0,'I',3159,'I003159',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',40,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-18 10:56:47','darshan','2025-12-18 10:57:40'),(11055,0,0,'I',3160,'I003160',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-18 11:07:59','darshan','2025-12-18 11:08:29'),(11056,0,0,'I',3160,'I003160',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 11:07:59','darshan','2025-12-18 11:08:29'),(11057,0,0,'I',3160,'I003160',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-18 11:07:59','darshan','2025-12-18 11:08:29'),(11058,0,0,'I',3160,'I003160',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 11:08:29','','0000-00-00 00:00:00'),(11059,0,0,'I',3161,'I003161',2526,1,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 11:08:50','drarchit','2025-12-18 11:09:14'),(11060,0,0,'I',3161,'I003161',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-18 11:08:50','drarchit','2025-12-18 11:09:14'),(11061,0,0,'I',3161,'I003161',2526,3,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 11:08:50','drarchit','2025-12-18 11:09:14'),(11062,0,0,'I',3161,'I003161',2526,4,'0000-00-00','51232',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 11:09:14','','0000-00-00 00:00:00'),(11063,0,0,'I',3161,'I003161',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-18 11:09:14','','0000-00-00 00:00:00'),(11064,0,0,'I',3162,'I003162',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 11:11:28','darshan','2025-12-18 11:11:39'),(11065,0,0,'I',3162,'I003162',2526,2,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-18 11:11:28','darshan','2025-12-18 11:11:39'),(11066,0,0,'I',3162,'I003162',2526,3,'0000-00-00','51194',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-18 11:11:28','darshan','2025-12-18 11:11:39'),(11068,0,0,'I',3163,'I003163',2526,2,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-18 11:17:11','drarchit','2025-12-18 11:18:03'),(11069,0,0,'I',3163,'I003163',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 11:17:37','drarchit','2025-12-18 11:18:03'),(11070,0,0,'I',3163,'I003163',2526,3,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 11:17:37','drarchit','2025-12-18 11:18:03'),(11071,0,0,'I',3163,'I003163',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-18 11:17:37','drarchit','2025-12-18 11:18:03'),(11073,0,0,'I',3163,'I003163',2526,5,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 11:18:03','','0000-00-00 00:00:00'),(11074,0,0,'I',3163,'I003163',2526,6,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-12-18 11:18:03','','0000-00-00 00:00:00'),(11075,0,0,'I',3164,'I003164',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 11:20:35','','0000-00-00 00:00:00'),(11076,0,0,'I',3164,'I003164',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 11:20:35','','0000-00-00 00:00:00'),(11077,0,0,'I',3165,'I003165',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 11:23:25','','0000-00-00 00:00:00'),(11078,0,0,'I',3166,'I003166',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 11:26:29','darshan','2025-12-18 11:26:59'),(11079,0,0,'I',3166,'I003166',2526,2,'0000-00-00','51189',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 11:26:59','','0000-00-00 00:00:00'),(11080,0,0,'I',3167,'I003167',2526,1,'0000-00-00','51586',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-18 11:27:53','','0000-00-00 00:00:00'),(11081,0,0,'I',3167,'I003167',2526,2,'0000-00-00','51350',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-18 11:27:53','','0000-00-00 00:00:00'),(11082,0,0,'I',3167,'I003167',2526,3,'0000-00-00','51443',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-18 11:27:53','','0000-00-00 00:00:00'),(11083,0,0,'I',3167,'I003167',2526,4,'0000-00-00','51422',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-18 11:27:53','','0000-00-00 00:00:00'),(11089,0,0,'I',3169,'I003169',2526,1,'0000-00-00','51276',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 11:48:51','darshan','2025-12-18 11:49:07'),(11090,0,0,'I',3169,'I003169',2526,2,'0000-00-00','51277',0,0,'OINT','','','','',0,2,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'darshan','2025-12-18 11:48:51','darshan','2025-12-18 11:49:07'),(11091,0,0,'I',3169,'I003169',2526,3,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 11:48:51','darshan','2025-12-18 11:49:07'),(11092,0,0,'I',3169,'I003169',2526,4,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-18 11:48:51','darshan','2025-12-18 11:49:07'),(11093,0,0,'I',3169,'I003169',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-18 11:48:51','darshan','2025-12-18 11:49:07'),(11094,0,0,'I',3170,'I003170',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 11:49:50','drarchit','2025-12-18 11:49:58'),(11095,0,0,'I',3170,'I003170',2526,2,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 11:49:50','drarchit','2025-12-18 11:49:58'),(11096,0,0,'I',3170,'I003170',2526,3,'0000-00-00','51214',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-18 11:49:50','drarchit','2025-12-18 11:49:58'),(11097,0,0,'I',3170,'I003170',2526,4,'0000-00-00','51396',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 11:49:58','','0000-00-00 00:00:00'),(11098,0,0,'I',3171,'I003171',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 11:54:12','darshan','2025-12-18 11:54:39'),(11099,0,0,'I',3171,'I003171',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-18 11:54:12','darshan','2025-12-18 11:54:39'),(11100,0,0,'I',3171,'I003171',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 11:54:12','darshan','2025-12-18 11:54:39'),(11103,0,0,'I',3172,'I003172',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 11:55:36','','0000-00-00 00:00:00'),(11104,0,0,'I',3172,'I003172',2526,2,'0000-00-00','51545',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 11:55:36','','0000-00-00 00:00:00'),(11105,0,0,'I',3172,'I003172',2526,3,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-18 11:55:36','','0000-00-00 00:00:00'),(11106,0,0,'I',3172,'I003172',2526,4,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-18 11:55:36','','0000-00-00 00:00:00'),(11107,0,0,'I',3172,'I003172',2526,5,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 11:55:36','','0000-00-00 00:00:00'),(11108,0,0,'I',3173,'I003173',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 12:12:13','darshan','2025-12-18 12:12:50'),(11109,0,0,'I',3173,'I003173',2526,2,'0000-00-00','51624',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 12:12:13','darshan','2025-12-18 12:12:50'),(11110,0,0,'I',3173,'I003173',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 12:12:13','darshan','2025-12-18 12:12:50'),(11111,0,0,'I',3174,'I003174',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 12:19:12','','0000-00-00 00:00:00'),(11112,0,0,'I',3174,'I003174',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-18 12:19:12','','0000-00-00 00:00:00'),(11113,0,0,'I',3175,'I003175',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 12:24:11','','0000-00-00 00:00:00'),(11114,0,0,'I',3175,'I003175',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 12:24:11','','0000-00-00 00:00:00'),(11115,0,0,'I',3175,'I003175',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 12:24:11','','0000-00-00 00:00:00'),(11116,0,0,'I',3175,'I003175',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-18 12:24:11','','0000-00-00 00:00:00'),(11117,0,0,'I',3176,'I003176',2526,1,'0000-00-00','51589',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-12-18 12:26:33','','0000-00-00 00:00:00'),(11118,0,0,'I',3176,'I003176',2526,2,'0000-00-00','51587',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-18 12:26:33','','0000-00-00 00:00:00'),(11119,0,0,'I',3177,'I003177',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-18 12:28:12','darshan','2025-12-18 12:28:58'),(11120,0,0,'I',3177,'I003177',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 12:28:12','darshan','2025-12-18 12:28:58'),(11121,0,0,'I',3177,'I003177',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 12:28:12','darshan','2025-12-18 12:28:58'),(11123,0,0,'I',3177,'I003177',2526,4,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-18 12:28:58','','0000-00-00 00:00:00'),(11124,0,0,'I',3178,'I003178',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 12:32:43','','0000-00-00 00:00:00'),(11125,0,0,'I',3178,'I003178',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 12:32:43','','0000-00-00 00:00:00'),(11126,0,0,'I',3178,'I003178',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-18 12:32:43','','0000-00-00 00:00:00'),(11127,0,0,'I',3178,'I003178',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-18 12:32:43','','0000-00-00 00:00:00'),(11128,0,0,'I',3179,'I003179',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 12:39:16','','0000-00-00 00:00:00'),(11129,0,0,'I',3179,'I003179',2526,2,'0000-00-00','51286',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 12:39:16','','0000-00-00 00:00:00'),(11130,0,0,'I',3179,'I003179',2526,3,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 12:39:16','','0000-00-00 00:00:00'),(11131,0,0,'I',3179,'I003179',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-18 12:39:16','','0000-00-00 00:00:00'),(11132,0,0,'I',3179,'I003179',2526,5,'0000-00-00','51297',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 12:39:16','','0000-00-00 00:00:00'),(11133,0,0,'I',3180,'I003180',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-18 12:40:44','','0000-00-00 00:00:00'),(11134,0,0,'I',3181,'I003181',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 13:00:03','','0000-00-00 00:00:00'),(11135,0,0,'I',3181,'I003181',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 13:00:03','','0000-00-00 00:00:00'),(11136,0,0,'I',3182,'I003182',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 13:04:37','','0000-00-00 00:00:00'),(11137,0,0,'I',3182,'I003182',2526,2,'0000-00-00','51194',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 13:04:37','','0000-00-00 00:00:00'),(11138,0,0,'I',3183,'I003183',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 13:11:02','','0000-00-00 00:00:00'),(11139,0,0,'I',3183,'I003183',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 13:11:02','','0000-00-00 00:00:00'),(11140,0,0,'I',3184,'I003184',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,25,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-18 13:12:48','darshan','2025-12-18 13:13:06'),(11141,0,0,'I',3184,'I003184',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,45,0,0,0,0,'1-0-0','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 13:12:48','darshan','2025-12-18 13:13:06'),(11142,0,0,'I',3184,'I003184',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 13:12:48','darshan','2025-12-18 13:13:06'),(11143,0,0,'I',3168,'I003168',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 13:17:47','','0000-00-00 00:00:00'),(11144,0,0,'I',3168,'I003168',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 13:17:47','','0000-00-00 00:00:00'),(11145,0,0,'I',3185,'I003185',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 13:19:52','','0000-00-00 00:00:00'),(11146,0,0,'I',3186,'I003186',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 13:25:34','','0000-00-00 00:00:00'),(11147,0,0,'I',3186,'I003186',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 13:25:34','','0000-00-00 00:00:00'),(11148,0,0,'I',3186,'I003186',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 13:25:34','','0000-00-00 00:00:00'),(11149,0,0,'I',3186,'I003186',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 13:25:34','','0000-00-00 00:00:00'),(11150,0,0,'I',3187,'I003187',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 17:26:20','','0000-00-00 00:00:00'),(11151,0,0,'I',3187,'I003187',2526,2,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 17:26:20','','0000-00-00 00:00:00'),(11152,0,0,'I',3188,'I003188',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 17:32:29','darshan','2025-12-18 17:32:41'),(11153,0,0,'I',3188,'I003188',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-18 17:32:29','darshan','2025-12-18 17:32:41'),(11154,0,0,'I',3189,'I003189',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 17:35:54','darshan','2025-12-18 17:38:00'),(11156,0,0,'I',3189,'I003189',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 17:35:54','darshan','2025-12-18 17:38:00'),(11158,0,0,'I',3189,'I003189',2526,3,'0000-00-00','51198',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 17:37:16','darshan','2025-12-18 17:38:00'),(11159,0,0,'I',3189,'I003189',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-18 17:38:00','','0000-00-00 00:00:00'),(11160,0,0,'I',3189,'I003189',2526,5,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 17:38:00','','0000-00-00 00:00:00'),(11161,0,0,'I',3189,'I003189',2526,6,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 17:38:00','','0000-00-00 00:00:00'),(11162,0,0,'I',3190,'I003190',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 17:42:31','darshan','2025-12-18 17:42:40'),(11163,0,0,'I',3190,'I003190',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 17:42:31','darshan','2025-12-18 17:42:40'),(11164,0,0,'I',3190,'I003190',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 17:42:31','darshan','2025-12-18 17:42:40'),(11165,0,0,'I',3190,'I003190',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-18 17:42:31','darshan','2025-12-18 17:42:40'),(11166,0,0,'I',3190,'I003190',2526,5,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-18 17:42:31','darshan','2025-12-18 17:42:40'),(11167,0,0,'I',3191,'I003191',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 17:56:22','darshan','2025-12-18 17:57:18'),(11169,0,0,'I',3191,'I003191',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,45,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 17:56:22','darshan','2025-12-18 17:57:18'),(11172,0,0,'I',3192,'I003192',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 17:59:03','darshan','2025-12-18 17:59:34'),(11173,0,0,'I',3192,'I003192',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 17:59:03','darshan','2025-12-18 17:59:34'),(11174,0,0,'I',3192,'I003192',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 17:59:34','','0000-00-00 00:00:00'),(11175,0,0,'I',3193,'I003193',2526,1,'0000-00-00','51415',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 18:03:12','','0000-00-00 00:00:00'),(11176,0,0,'I',3194,'I003194',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 18:06:02','darshan','2025-12-18 18:06:05'),(11177,0,0,'I',3195,'I003195',2526,1,'0000-00-00','51532',0,0,'INJ','','','','',0,1,0,0,0,0,'20-20-10','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-18 18:19:50','drjayant','2025-12-18 18:20:54'),(11178,0,0,'I',3196,'I003196',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,8,0,0,0,0,'0-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 18:22:49','','0000-00-00 00:00:00'),(11179,0,0,'I',3196,'I003196',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 18:22:49','','0000-00-00 00:00:00'),(11180,0,0,'I',3196,'I003196',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 18:22:49','','0000-00-00 00:00:00'),(11181,0,0,'I',3197,'I003197',2526,1,'0000-00-00','51232',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 18:24:36','drarchit','2025-12-18 18:26:13'),(11182,0,0,'I',3197,'I003197',2526,2,'0000-00-00','51384',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 18:26:13','','0000-00-00 00:00:00'),(11183,0,0,'I',3197,'I003197',2526,3,'0000-00-00','51269',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 18:26:13','','0000-00-00 00:00:00'),(11184,0,0,'I',3198,'I003198',2526,1,'0000-00-00','51329',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-18 18:32:10','drarchit','2025-12-18 18:33:18'),(11185,0,0,'I',3198,'I003198',2526,2,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-18 18:33:18','','0000-00-00 00:00:00'),(11186,0,0,'I',3198,'I003198',2526,3,'0000-00-00','51410',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-18 18:33:18','','0000-00-00 00:00:00'),(11187,0,0,'I',3198,'I003198',2526,4,'0000-00-00','51505',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-18 18:33:18','','0000-00-00 00:00:00'),(11188,0,0,'I',3198,'I003198',2526,5,'0000-00-00','51324',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 18:33:18','','0000-00-00 00:00:00'),(11189,0,0,'I',3199,'I003199',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-18 18:33:32','drjayant','2025-12-19 11:29:20'),(11191,0,0,'I',3200,'I003200',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-0','','Dy',80,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 18:35:23','','0000-00-00 00:00:00'),(11192,0,0,'I',3201,'I003201',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-18 18:36:50','drarchit','2025-12-18 18:37:03'),(11193,0,0,'I',3201,'I003201',2526,2,'0000-00-00','51214',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-18 18:36:50','drarchit','2025-12-18 18:37:03'),(11194,0,0,'I',3201,'I003201',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 18:36:50','drarchit','2025-12-18 18:37:03'),(11195,0,0,'I',3202,'I003202',2526,1,'0000-00-00','51313',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 18:40:57','drarchit','2025-12-18 18:41:45'),(11196,0,0,'I',3203,'I003203',2526,1,'0000-00-00','51575',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-18 18:41:41','drjayant','2025-12-19 11:36:43'),(11197,0,0,'I',3203,'I003203',2526,2,'0000-00-00','51409',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-18 18:41:41','drjayant','2025-12-19 11:36:43'),(11198,0,0,'I',3203,'I003203',2526,3,'0000-00-00','51320',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-18 18:41:41','drjayant','2025-12-19 11:36:43'),(11199,0,0,'I',3203,'I003203',2526,4,'0000-00-00','51376',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-18 18:41:41','drjayant','2025-12-19 11:36:43'),(11200,0,0,'I',3202,'I003202',2526,2,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 18:41:45','','0000-00-00 00:00:00'),(11201,0,0,'I',3202,'I003202',2526,3,'0000-00-00','51411',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-18 18:41:45','','0000-00-00 00:00:00'),(11203,0,0,'I',3205,'I003205',2526,1,'0000-00-00','51448',0,0,'SYRUP','','','','',0,1,0,0,0,0,'1-0-0','4ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 18:50:14','','0000-00-00 00:00:00'),(11204,0,0,'I',3205,'I003205',2526,2,'0000-00-00','51252',0,0,'SYRUP','','','','',0,1,0,0,0,0,'1-1-1','5ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 18:50:14','','0000-00-00 00:00:00'),(11205,0,0,'I',3205,'I003205',2526,3,'0000-00-00','51447',0,0,'SYRUP','','','','',0,1,0,0,0,0,'0-0-1','5ml','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 18:50:14','','0000-00-00 00:00:00'),(11207,0,0,'I',3206,'I003206',2526,1,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-18 18:51:19','drarchit','2025-12-18 18:51:53'),(11208,0,0,'I',3206,'I003206',2526,2,'0000-00-00','51230',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 18:51:53','','0000-00-00 00:00:00'),(11209,0,0,'I',3206,'I003206',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 18:51:53','','0000-00-00 00:00:00'),(11210,0,0,'I',3206,'I003206',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-18 18:51:53','','0000-00-00 00:00:00'),(11211,0,0,'I',3207,'I003207',2526,1,'0000-00-00','51376',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-18 18:52:44','','0000-00-00 00:00:00'),(11212,0,0,'I',3207,'I003207',2526,2,'0000-00-00','51450',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-18 18:52:44','','0000-00-00 00:00:00'),(11213,0,0,'I',3207,'I003207',2526,3,'0000-00-00','51409',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-18 18:52:44','','0000-00-00 00:00:00'),(11214,0,0,'I',3208,'I003208',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 18:54:31','darshan','2025-12-18 18:55:34'),(11215,0,0,'I',3208,'I003208',2526,2,'0000-00-00','51190',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-18 18:54:31','darshan','2025-12-18 18:55:34'),(11216,0,0,'I',3208,'I003208',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 18:54:31','darshan','2025-12-18 18:55:34'),(11218,0,0,'I',3209,'I003209',2526,1,'0000-00-00','51628',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 18:54:39','drarchit','2025-12-18 18:56:07'),(11219,0,0,'I',3209,'I003209',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-18 18:54:39','drarchit','2025-12-18 18:56:07'),(11220,0,0,'I',3209,'I003209',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 18:54:39','drarchit','2025-12-18 18:56:07'),(11221,0,0,'I',3208,'I003208',2526,4,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-18 18:55:34','','0000-00-00 00:00:00'),(11222,0,0,'I',3209,'I003209',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-18 18:56:07','','0000-00-00 00:00:00'),(11223,0,0,'I',3209,'I003209',2526,5,'0000-00-00','51324',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 18:56:07','','0000-00-00 00:00:00'),(11224,0,0,'I',3210,'I003210',2526,1,'0000-00-00','51578',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-18 19:00:37','','0000-00-00 00:00:00'),(11225,0,0,'I',3210,'I003210',2526,2,'0000-00-00','51430',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-18 19:00:37','','0000-00-00 00:00:00'),(11226,0,0,'I',3210,'I003210',2526,3,'0000-00-00','51320',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-18 19:00:37','','0000-00-00 00:00:00'),(11227,0,0,'I',3210,'I003210',2526,4,'0000-00-00','51625',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-18 19:00:37','','0000-00-00 00:00:00'),(11228,0,0,'I',3210,'I003210',2526,5,'0000-00-00','51588',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-18 19:00:37','','0000-00-00 00:00:00'),(11229,0,0,'I',3211,'I003211',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 19:01:37','','0000-00-00 00:00:00'),(11230,0,0,'I',3211,'I003211',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 19:01:37','','0000-00-00 00:00:00'),(11231,0,0,'I',3212,'I003212',2526,1,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 19:05:06','','0000-00-00 00:00:00'),(11232,0,0,'I',3212,'I003212',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 19:05:06','','0000-00-00 00:00:00'),(11233,0,0,'I',3212,'I003212',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 19:05:06','','0000-00-00 00:00:00'),(11237,0,0,'I',3213,'I003213',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 19:09:18','darshan','2025-12-18 19:10:00'),(11239,0,0,'I',3213,'I003213',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 19:09:57','darshan','2025-12-18 19:10:00'),(11240,0,0,'I',3214,'I003214',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:11:01','drarchit','2025-12-18 19:11:41'),(11241,0,0,'I',3214,'I003214',2526,2,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-18 19:11:13','drarchit','2025-12-18 19:11:41'),(11242,0,0,'I',3214,'I003214',2526,3,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:11:13','drarchit','2025-12-18 19:11:41'),(11243,0,0,'I',3214,'I003214',2526,4,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:11:41','','0000-00-00 00:00:00'),(11244,0,0,'I',3215,'I003215',2526,1,'0000-00-00','51429',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-18 19:15:36','','0000-00-00 00:00:00'),(11245,0,0,'I',3215,'I003215',2526,2,'0000-00-00','51535',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:15:36','','0000-00-00 00:00:00'),(11246,0,0,'I',3216,'I003216',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 19:18:34','','0000-00-00 00:00:00'),(11247,0,0,'I',3216,'I003216',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 19:18:34','','0000-00-00 00:00:00'),(11248,0,0,'I',3216,'I003216',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-18 19:18:34','','0000-00-00 00:00:00'),(11250,0,0,'I',3217,'I003217',2526,1,'0000-00-00','51605',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:22:55','drarchit','2025-12-18 19:23:38'),(11251,0,0,'I',3217,'I003217',2526,2,'0000-00-00','51254',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:22:55','drarchit','2025-12-18 19:23:38'),(11252,0,0,'I',3217,'I003217',2526,3,'0000-00-00','51420',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-18 19:23:38','','0000-00-00 00:00:00'),(11253,0,0,'I',3218,'I003218',2526,1,'0000-00-00','51353',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:26:21','','0000-00-00 00:00:00'),(11254,0,0,'I',3218,'I003218',2526,2,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-18 19:26:21','','0000-00-00 00:00:00'),(11255,0,0,'I',3218,'I003218',2526,3,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:26:21','','0000-00-00 00:00:00'),(11256,0,0,'I',3218,'I003218',2526,4,'0000-00-00','51263',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:26:21','','0000-00-00 00:00:00'),(11257,0,0,'I',3218,'I003218',2526,5,'0000-00-00','51342',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:26:21','','0000-00-00 00:00:00'),(11258,0,0,'I',3219,'I003219',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:29:01','drarchit','2025-12-18 19:29:35'),(11259,0,0,'I',3219,'I003219',2526,2,'0000-00-00','51355',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:29:01','drarchit','2025-12-18 19:29:35'),(11261,0,0,'I',3219,'I003219',2526,3,'0000-00-00','51301',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:29:01','drarchit','2025-12-18 19:29:35'),(11262,0,0,'I',3219,'I003219',2526,4,'0000-00-00','51468',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-18 19:29:01','drarchit','2025-12-18 19:29:35'),(11263,0,0,'I',3219,'I003219',2526,5,'0000-00-00','51336',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:29:01','drarchit','2025-12-18 19:29:35'),(11264,0,0,'I',3219,'I003219',2526,6,'0000-00-00','51230',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:29:01','drarchit','2025-12-18 19:29:35'),(11265,0,0,'I',3219,'I003219',2526,7,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:29:23','drarchit','2025-12-18 19:29:35'),(11266,0,0,'I',3219,'I003219',2526,8,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-18 19:29:23','drarchit','2025-12-18 19:29:35'),(11267,0,0,'I',3219,'I003219',2526,9,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-18 19:29:35','','0000-00-00 00:00:00'),(11268,0,0,'I',3220,'I003220',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 19:30:52','','0000-00-00 00:00:00'),(11269,0,0,'I',3220,'I003220',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 19:30:52','','0000-00-00 00:00:00'),(11270,0,0,'I',3220,'I003220',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-18 19:30:52','','0000-00-00 00:00:00'),(11271,0,0,'I',3221,'I003221',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:31:11','drarchit','2025-12-18 19:33:15'),(11272,0,0,'I',3221,'I003221',2526,2,'0000-00-00','51519',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:31:11','drarchit','2025-12-18 19:33:15'),(11273,0,0,'I',3221,'I003221',2526,3,'0000-00-00','51355',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:32:28','drarchit','2025-12-18 19:33:15'),(11274,0,0,'I',3221,'I003221',2526,4,'0000-00-00','51487',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-18 19:32:28','drarchit','2025-12-18 19:33:15'),(11275,0,0,'I',3221,'I003221',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-18 19:32:28','drarchit','2025-12-18 19:33:15'),(11276,0,0,'I',3221,'I003221',2526,6,'0000-00-00','51404',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:32:28','drarchit','2025-12-18 19:33:15'),(11279,0,0,'I',3221,'I003221',2526,7,'0000-00-00','51228',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-18 19:33:15','','0000-00-00 00:00:00'),(11280,0,0,'I',3221,'I003221',2526,8,'0000-00-00','51238',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:33:15','','0000-00-00 00:00:00'),(11281,0,0,'I',3222,'I003222',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 19:35:40','','0000-00-00 00:00:00'),(11282,0,0,'I',3222,'I003222',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 19:35:40','','0000-00-00 00:00:00'),(11283,0,0,'I',3222,'I003222',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-18 19:35:40','','0000-00-00 00:00:00'),(11284,0,0,'I',3223,'I003223',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 19:47:31','darshan','2025-12-18 19:47:48'),(11285,0,0,'I',3223,'I003223',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 19:47:31','darshan','2025-12-18 19:47:48'),(11287,0,0,'I',3224,'I003224',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 19:58:26','','0000-00-00 00:00:00'),(11288,0,0,'I',3224,'I003224',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 19:58:26','','0000-00-00 00:00:00'),(11289,0,0,'I',3224,'I003224',2526,3,'0000-00-00','51322',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 19:58:26','','0000-00-00 00:00:00'),(11290,0,0,'I',3224,'I003224',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-18 19:58:26','','0000-00-00 00:00:00'),(11291,0,0,'I',3224,'I003224',2526,5,'0000-00-00','51266',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'darshan','2025-12-18 19:58:26','','0000-00-00 00:00:00'),(11292,0,0,'I',3225,'I003225',2526,1,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-18 19:59:08','drarchit','2025-12-18 19:59:42'),(11293,0,0,'I',3226,'I003226',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 20:01:21','darshan','2025-12-18 20:01:35'),(11294,0,0,'I',3226,'I003226',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-18 20:01:30','darshan','2025-12-18 20:01:35'),(11295,0,0,'I',3226,'I003226',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-18 20:01:30','darshan','2025-12-18 20:01:35'),(11296,0,0,'I',3227,'I003227',2526,1,'0000-00-00','51624',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 10:44:15','darshan','2025-12-19 10:47:35'),(11297,0,0,'I',3227,'I003227',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 10:44:15','darshan','2025-12-19 10:47:35'),(11298,0,0,'I',3227,'I003227',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 10:44:15','darshan','2025-12-19 10:47:35'),(11299,0,0,'I',3228,'I003228',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 10:53:31','darshan','2025-12-19 10:53:36'),(11300,0,0,'I',3228,'I003228',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 10:53:31','darshan','2025-12-19 10:53:36'),(11301,0,0,'I',3228,'I003228',2526,3,'0000-00-00','51624',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 10:53:31','darshan','2025-12-19 10:53:36'),(11302,0,0,'I',3229,'I003229',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 10:59:45','darshan','2025-12-19 10:59:57'),(11303,0,0,'I',3229,'I003229',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 10:59:45','darshan','2025-12-19 10:59:57'),(11304,0,0,'I',3229,'I003229',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-19 10:59:57','','0000-00-00 00:00:00'),(11305,0,0,'I',3230,'I003230',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-19 11:02:30','darshan','2025-12-19 11:03:36'),(11306,0,0,'I',3230,'I003230',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 11:02:30','darshan','2025-12-19 11:03:36'),(11309,0,0,'I',3230,'I003230',2526,3,'0000-00-00','51186',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 11:02:46','darshan','2025-12-19 11:03:36'),(11310,0,0,'I',3230,'I003230',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 11:03:27','darshan','2025-12-19 11:03:36'),(11311,0,0,'I',3231,'I003231',2526,1,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 11:06:43','drarchit','2025-12-19 11:07:10'),(11313,0,0,'I',3232,'I003232',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-19 11:17:11','darshan','2025-12-19 11:17:59'),(11314,0,0,'I',3232,'I003232',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 11:17:11','darshan','2025-12-19 11:17:59'),(11316,0,0,'I',3232,'I003232',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 11:17:11','darshan','2025-12-19 11:17:59'),(11318,0,0,'I',3232,'I003232',2526,4,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 11:17:59','','0000-00-00 00:00:00'),(11319,0,0,'I',3233,'I003233',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 11:19:50','','0000-00-00 00:00:00'),(11320,0,0,'I',3233,'I003233',2526,2,'0000-00-00','51214',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-19 11:19:50','','0000-00-00 00:00:00'),(11321,0,0,'I',3233,'I003233',2526,3,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-19 11:19:50','','0000-00-00 00:00:00'),(11322,0,0,'I',3233,'I003233',2526,4,'0000-00-00','51301',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 11:19:50','','0000-00-00 00:00:00'),(11323,0,0,'I',3233,'I003233',2526,5,'0000-00-00','51359',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 11:19:50','','0000-00-00 00:00:00'),(11324,0,0,'I',3233,'I003233',2526,6,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-19 11:19:50','','0000-00-00 00:00:00'),(11325,0,0,'I',3199,'I003199',2526,2,'0000-00-00','51349',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-19 11:28:11','drjayant','2025-12-19 11:29:20'),(11326,0,0,'I',3199,'I003199',2526,3,'0000-00-00','51409',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-19 11:28:11','drjayant','2025-12-19 11:29:20'),(11327,0,0,'I',3199,'I003199',2526,4,'0000-00-00','51426',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-19 11:28:11','drjayant','2025-12-19 11:29:20'),(11328,0,0,'I',3234,'I003234',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-19 11:30:53','darshan','2025-12-19 11:31:29'),(11329,0,0,'I',3234,'I003234',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 11:30:53','darshan','2025-12-19 11:31:29'),(11330,0,0,'I',3234,'I003234',2526,3,'0000-00-00','51188',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 11:30:53','darshan','2025-12-19 11:31:29'),(11332,0,0,'I',3204,'I003204',2526,1,'0000-00-00','51409',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-19 11:32:27','drjayant','2025-12-19 11:33:11'),(11333,0,0,'I',3235,'I003235',2526,1,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 11:38:38','','0000-00-00 00:00:00'),(11334,0,0,'I',3235,'I003235',2526,2,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-19 11:38:38','','0000-00-00 00:00:00'),(11335,0,0,'I',3235,'I003235',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 11:38:38','','0000-00-00 00:00:00'),(11336,0,0,'I',3237,'I003237',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 11:42:21','darshan','2025-12-19 13:12:06'),(11337,0,0,'I',3237,'I003237',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 11:42:21','darshan','2025-12-19 13:12:06'),(11338,0,0,'I',3237,'I003237',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 11:42:21','darshan','2025-12-19 13:12:06'),(11339,0,0,'I',3237,'I003237',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 11:42:21','darshan','2025-12-19 13:12:06'),(11340,0,0,'I',3238,'I003238',2526,1,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-19 11:42:47','','0000-00-00 00:00:00'),(11341,0,0,'I',3238,'I003238',2526,2,'0000-00-00','51324',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 11:42:47','','0000-00-00 00:00:00'),(11342,0,0,'I',3238,'I003238',2526,3,'0000-00-00','51220',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 11:42:47','','0000-00-00 00:00:00'),(11343,0,0,'I',3239,'I003239',2526,1,'0000-00-00','51629',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 11:45:58','drarchit','2025-12-19 11:46:42'),(11344,0,0,'I',3239,'I003239',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 11:45:58','drarchit','2025-12-19 11:46:42'),(11345,0,0,'I',3239,'I003239',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-19 11:46:42','','0000-00-00 00:00:00'),(11346,0,0,'I',3239,'I003239',2526,4,'0000-00-00','51269',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 11:46:42','','0000-00-00 00:00:00'),(11347,0,0,'I',3239,'I003239',2526,5,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 11:46:42','','0000-00-00 00:00:00'),(11348,0,0,'I',3239,'I003239',2526,6,'0000-00-00','51249',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 11:46:42','','0000-00-00 00:00:00'),(11349,0,0,'I',3240,'I003240',2526,1,'0000-00-00','51273',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 11:49:12','','0000-00-00 00:00:00'),(11350,0,0,'I',3240,'I003240',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-19 11:49:12','','0000-00-00 00:00:00'),(11351,0,0,'I',3241,'I003241',2526,1,'0000-00-00','51349',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-12-19 11:52:32','','0000-00-00 00:00:00'),(11352,0,0,'I',3241,'I003241',2526,2,'0000-00-00','51451',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-19 11:52:32','','0000-00-00 00:00:00'),(11353,0,0,'I',3236,'I003236',2526,1,'0000-00-00','51354',0,0,'CAP','','','','',0,180,0,0,0,0,'0-0-1','','Dy',180,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 11:55:23','','0000-00-00 00:00:00'),(11354,0,0,'I',3236,'I003236',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,180,0,0,0,0,'0-1-0','','Dy',180,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 11:55:23','','0000-00-00 00:00:00'),(11355,0,0,'I',3242,'I003242',2526,1,'0000-00-00','51455',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-19 11:57:12','drjayant','2025-12-19 11:58:04'),(11356,0,0,'I',3242,'I003242',2526,2,'0000-00-00','51430',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-19 11:57:12','drjayant','2025-12-19 11:58:04'),(11357,0,0,'I',3242,'I003242',2526,3,'0000-00-00','51409',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-19 11:57:12','drjayant','2025-12-19 11:58:04'),(11358,0,0,'I',3242,'I003242',2526,4,'0000-00-00','51422',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-19 11:57:56','drjayant','2025-12-19 11:58:04'),(11359,0,0,'I',3242,'I003242',2526,5,'0000-00-00','51239',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drjayant','2025-12-19 11:57:56','drjayant','2025-12-19 11:58:04'),(11361,0,0,'I',3243,'I003243',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 11:58:23','darshan','2025-12-19 11:58:56'),(11362,0,0,'I',3243,'I003243',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 11:58:40','darshan','2025-12-19 11:58:56'),(11363,0,0,'I',3244,'I003244',2526,1,'0000-00-00','51646',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-19 12:00:41','drarchit','2025-12-19 12:03:05'),(11366,0,0,'I',3244,'I003244',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 12:01:29','drarchit','2025-12-19 12:03:05'),(11367,0,0,'I',3244,'I003244',2526,3,'0000-00-00','51375',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-0','','Dy',180,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-19 12:01:29','drarchit','2025-12-19 12:03:05'),(11368,0,0,'I',3244,'I003244',2526,4,'0000-00-00','51235',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-19 12:01:29','drarchit','2025-12-19 12:03:05'),(11369,0,0,'I',3245,'I003245',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:02:06','darshan','2025-12-19 12:02:42'),(11370,0,0,'I',3245,'I003245',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:02:06','darshan','2025-12-19 12:02:42'),(11371,0,0,'I',3245,'I003245',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-19 12:02:06','darshan','2025-12-19 12:02:42'),(11373,0,0,'I',3244,'I003244',2526,5,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-19 12:02:56','drarchit','2025-12-19 12:03:05'),(11374,0,0,'I',3244,'I003244',2526,6,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 12:02:56','drarchit','2025-12-19 12:03:05'),(11375,0,0,'I',3244,'I003244',2526,7,'0000-00-00','51472',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-19 12:02:56','drarchit','2025-12-19 12:03:05'),(11376,0,0,'I',3247,'I003247',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:04:52','darshan','2025-12-19 12:05:13'),(11377,0,0,'I',3247,'I003247',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:04:52','darshan','2025-12-19 12:05:13'),(11379,0,0,'I',3247,'I003247',2526,3,'0000-00-00','51334',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:05:13','','0000-00-00 00:00:00'),(11380,0,0,'I',3246,'I003246',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-19 12:05:17','drarchit','2025-12-19 12:06:28'),(11381,0,0,'I',3246,'I003246',2526,2,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-19 12:05:17','drarchit','2025-12-19 12:06:28'),(11382,0,0,'I',3246,'I003246',2526,3,'0000-00-00','51406',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 12:05:17','drarchit','2025-12-19 12:06:28'),(11383,0,0,'I',3246,'I003246',2526,4,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 12:05:17','drarchit','2025-12-19 12:06:28'),(11384,0,0,'I',3246,'I003246',2526,5,'0000-00-00','51375',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-19 12:05:17','drarchit','2025-12-19 12:06:28'),(11385,0,0,'I',3246,'I003246',2526,6,'0000-00-00','51505',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-19 12:05:17','drarchit','2025-12-19 12:06:28'),(11386,0,0,'I',3248,'I003248',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:09:42','','0000-00-00 00:00:00'),(11387,0,0,'I',3248,'I003248',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:09:42','','0000-00-00 00:00:00'),(11388,0,0,'I',3248,'I003248',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-19 12:09:42','','0000-00-00 00:00:00'),(11389,0,0,'I',3249,'I003249',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-0','','Dy',180,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 12:10:54','','0000-00-00 00:00:00'),(11390,0,0,'I',3250,'I003250',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:13:37','darshan','2025-12-19 12:14:28'),(11391,0,0,'I',3250,'I003250',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:13:37','darshan','2025-12-19 12:14:28'),(11392,0,0,'I',3250,'I003250',2526,3,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:13:37','darshan','2025-12-19 12:14:28'),(11394,0,0,'I',3250,'I003250',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-19 12:14:05','darshan','2025-12-19 12:14:28'),(11395,0,0,'I',3251,'I003251',2526,1,'0000-00-00','51417',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 12:14:06','drarchit','2025-12-19 12:14:44'),(11398,0,0,'I',3251,'I003251',2526,2,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 12:14:44','','0000-00-00 00:00:00'),(11399,0,0,'I',3251,'I003251',2526,3,'0000-00-00','51267',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 12:14:44','','0000-00-00 00:00:00'),(11400,0,0,'I',3251,'I003251',2526,4,'0000-00-00','51268',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 12:14:44','','0000-00-00 00:00:00'),(11401,0,0,'I',3251,'I003251',2526,5,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-19 12:14:44','','0000-00-00 00:00:00'),(11402,0,0,'I',3252,'I003252',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:20:44','','0000-00-00 00:00:00'),(11403,0,0,'I',3253,'I003253',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:22:42','darshan','2025-12-19 12:23:57'),(11405,0,0,'I',3253,'I003253',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:22:42','darshan','2025-12-19 12:23:57'),(11407,0,0,'I',3253,'I003253',2526,3,'0000-00-00','51547',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:23:12','darshan','2025-12-19 12:23:57'),(11408,0,0,'I',3253,'I003253',2526,4,'0000-00-00','51234',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-19 12:23:39','darshan','2025-12-19 12:23:57'),(11409,0,0,'I',3254,'I003254',2526,1,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 12:31:01','','0000-00-00 00:00:00'),(11410,0,0,'I',3254,'I003254',2526,2,'0000-00-00','51396',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 12:31:01','','0000-00-00 00:00:00'),(11411,0,0,'I',3255,'I003255',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:34:01','','0000-00-00 00:00:00'),(11412,0,0,'I',3256,'I003256',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:39:15','','0000-00-00 00:00:00'),(11413,0,0,'I',3256,'I003256',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:39:15','','0000-00-00 00:00:00'),(11414,0,0,'I',3256,'I003256',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-19 12:39:15','','0000-00-00 00:00:00'),(11415,0,0,'I',3257,'I003257',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:45:02','','0000-00-00 00:00:00'),(11416,0,0,'I',3257,'I003257',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:45:02','','0000-00-00 00:00:00'),(11417,0,0,'I',3257,'I003257',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-19 12:45:02','','0000-00-00 00:00:00'),(11418,0,0,'I',3257,'I003257',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-19 12:45:02','','0000-00-00 00:00:00'),(11419,0,0,'I',3257,'I003257',2526,5,'0000-00-00','51202',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:45:02','','0000-00-00 00:00:00'),(11420,0,0,'I',3258,'I003258',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:49:20','','0000-00-00 00:00:00'),(11421,0,0,'I',3259,'I003259',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:52:46','','0000-00-00 00:00:00'),(11422,0,0,'I',3259,'I003259',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:52:46','','0000-00-00 00:00:00'),(11423,0,0,'I',3259,'I003259',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:52:46','','0000-00-00 00:00:00'),(11424,0,0,'I',3259,'I003259',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-19 12:52:46','','0000-00-00 00:00:00'),(11425,0,0,'I',3260,'I003260',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-19 12:55:28','drarchit','2025-12-19 12:56:15'),(11426,0,0,'I',3260,'I003260',2526,2,'0000-00-00','51278',0,0,'CAP','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 12:56:04','drarchit','2025-12-19 12:56:15'),(11427,0,0,'I',3260,'I003260',2526,3,'0000-00-00','51231',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 12:56:04','drarchit','2025-12-19 12:56:15'),(11428,0,0,'I',3261,'I003261',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:57:03','darshan','2025-12-19 12:57:13'),(11429,0,0,'I',3261,'I003261',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:57:03','darshan','2025-12-19 12:57:13'),(11430,0,0,'I',3261,'I003261',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 12:57:03','darshan','2025-12-19 12:57:13'),(11431,0,0,'I',3261,'I003261',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',15,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-19 12:57:03','darshan','2025-12-19 12:57:13'),(11432,0,0,'I',3263,'I003263',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-1','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:02:54','darshan','2025-12-19 13:03:18'),(11433,0,0,'I',3263,'I003263',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:02:54','darshan','2025-12-19 13:03:18'),(11434,0,0,'I',3263,'I003263',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:02:54','darshan','2025-12-19 13:03:18'),(11435,0,0,'I',3263,'I003263',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',45,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-19 13:02:54','darshan','2025-12-19 13:03:18'),(11442,0,0,'I',3264,'I003264',2526,1,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 13:11:07','','0000-00-00 00:00:00'),(11443,0,0,'I',3264,'I003264',2526,2,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 13:11:07','','0000-00-00 00:00:00'),(11444,0,0,'I',3264,'I003264',2526,3,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-19 13:11:07','','0000-00-00 00:00:00'),(11445,0,0,'I',3237,'I003237',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-19 13:12:06','','0000-00-00 00:00:00'),(11447,0,0,'I',3265,'I003265',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-1','','Dy',50,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:24:05','darshan','2025-12-19 13:24:34'),(11448,0,0,'I',3265,'I003265',2526,2,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:24:05','darshan','2025-12-19 13:24:34'),(11452,0,0,'I',3266,'I003266',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:27:43','darshan','2025-12-19 13:28:09'),(11453,0,0,'I',3266,'I003266',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:27:43','darshan','2025-12-19 13:28:09'),(11454,0,0,'I',3266,'I003266',2526,3,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:28:09','','0000-00-00 00:00:00'),(11455,0,0,'I',3266,'I003266',2526,4,'0000-00-00','51205',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:28:09','','0000-00-00 00:00:00'),(11456,0,0,'I',3266,'I003266',2526,5,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-19 13:28:09','','0000-00-00 00:00:00'),(11457,0,0,'I',3266,'I003266',2526,6,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-19 13:28:09','','0000-00-00 00:00:00'),(11458,0,0,'I',3267,'I003267',2526,1,'0000-00-00','51334',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:31:37','darshan','2025-12-19 13:31:43'),(11459,0,0,'I',3267,'I003267',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:31:37','darshan','2025-12-19 13:31:43'),(11460,0,0,'I',3267,'I003267',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:31:43','','0000-00-00 00:00:00'),(11461,0,0,'I',3262,'I003262',2526,1,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 13:33:37','drarchit','2025-12-19 13:34:04'),(11462,0,0,'I',3262,'I003262',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-19 13:33:37','drarchit','2025-12-19 13:34:04'),(11463,0,0,'I',3262,'I003262',2526,3,'0000-00-00','51628',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 13:34:04','','0000-00-00 00:00:00'),(11464,0,0,'I',3268,'I003268',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:38:25','','0000-00-00 00:00:00'),(11465,0,0,'I',3268,'I003268',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:38:25','','0000-00-00 00:00:00'),(11466,0,0,'I',3269,'I003269',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-19 13:41:50','darshan','2025-12-19 13:42:36'),(11467,0,0,'I',3269,'I003269',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:41:50','darshan','2025-12-19 13:42:36'),(11468,0,0,'I',3269,'I003269',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:41:50','darshan','2025-12-19 13:42:36'),(11470,0,0,'I',3269,'I003269',2526,4,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-19 13:42:05','darshan','2025-12-19 13:42:36'),(11471,0,0,'I',3270,'I003270',2526,1,'0000-00-00','51234',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-19 13:51:28','darshan','2025-12-19 18:46:20'),(11472,0,0,'I',3271,'I003271',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:54:10','','0000-00-00 00:00:00'),(11473,0,0,'I',3271,'I003271',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:54:10','','0000-00-00 00:00:00'),(11474,0,0,'I',3271,'I003271',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 13:54:10','','0000-00-00 00:00:00'),(11475,0,0,'I',3271,'I003271',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-19 13:54:10','','0000-00-00 00:00:00'),(11476,0,0,'I',3272,'I003272',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 14:04:11','','0000-00-00 00:00:00'),(11477,0,0,'I',3272,'I003272',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 14:04:11','','0000-00-00 00:00:00'),(11478,0,0,'I',3273,'I003273',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 14:10:37','','0000-00-00 00:00:00'),(11479,0,0,'I',3273,'I003273',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 14:10:37','','0000-00-00 00:00:00'),(11480,0,0,'I',3274,'I003274',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 14:12:45','darshan','2025-12-19 14:13:17'),(11484,0,0,'I',3275,'I003275',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-19 14:31:29','darshan','2025-12-19 14:32:04'),(11485,0,0,'I',3275,'I003275',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 14:31:29','darshan','2025-12-19 14:32:04'),(11488,0,0,'I',3276,'I003276',2526,1,'0000-00-00','51270',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 17:21:45','','0000-00-00 00:00:00'),(11489,0,0,'I',3276,'I003276',2526,2,'0000-00-00','51418',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 17:21:45','','0000-00-00 00:00:00'),(11490,0,0,'I',3276,'I003276',2526,3,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 17:21:45','','0000-00-00 00:00:00'),(11491,0,0,'I',3276,'I003276',2526,4,'0000-00-00','51466',0,0,'TAB','','','','',0,12,0,0,0,6,'','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-19 17:21:45','','0000-00-00 00:00:00'),(11492,0,0,'I',3276,'I003276',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-19 17:21:45','','0000-00-00 00:00:00'),(11493,0,0,'I',3277,'I003277',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 17:24:08','darshan','2025-12-19 17:24:43'),(11494,0,0,'I',3277,'I003277',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-19 17:24:08','darshan','2025-12-19 17:24:43'),(11497,0,0,'I',3278,'I003278',2526,1,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 17:31:01','darshan','2025-12-19 17:32:40'),(11498,0,0,'I',3278,'I003278',2526,2,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-19 17:31:01','darshan','2025-12-19 17:32:40'),(11499,0,0,'I',3278,'I003278',2526,3,'0000-00-00','51274',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 17:31:01','darshan','2025-12-19 17:32:40'),(11500,0,0,'I',3278,'I003278',2526,4,'0000-00-00','51216',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-19 17:32:20','darshan','2025-12-19 17:32:40'),(11501,0,0,'I',3278,'I003278',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-19 17:32:20','darshan','2025-12-19 17:32:40'),(11502,0,0,'I',3279,'I003279',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 17:37:12','darshan','2025-12-19 17:37:43'),(11503,0,0,'I',3279,'I003279',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 17:37:12','darshan','2025-12-19 17:37:43'),(11504,0,0,'I',3279,'I003279',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-19 17:37:12','darshan','2025-12-19 17:37:43'),(11505,0,0,'I',3280,'I003280',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 17:42:41','darshan','2025-12-19 17:43:00'),(11506,0,0,'I',3280,'I003280',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 17:42:41','darshan','2025-12-19 17:43:00'),(11508,0,0,'I',3281,'I003281',2526,1,'0000-00-00','51322',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 17:51:40','','0000-00-00 00:00:00'),(11509,0,0,'I',3282,'I003282',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:10:08','','0000-00-00 00:00:00'),(11510,0,0,'I',3282,'I003282',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:10:08','','0000-00-00 00:00:00'),(11511,0,0,'I',3283,'I003283',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:13:20','','0000-00-00 00:00:00'),(11512,0,0,'I',3283,'I003283',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-19 18:13:20','','0000-00-00 00:00:00'),(11513,0,0,'I',3284,'I003284',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:16:10','darshan','2025-12-19 18:16:36'),(11514,0,0,'I',3284,'I003284',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:16:10','darshan','2025-12-19 18:16:36'),(11515,0,0,'I',3284,'I003284',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:16:10','darshan','2025-12-19 18:16:36'),(11517,0,0,'I',3284,'I003284',2526,4,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:16:33','darshan','2025-12-19 18:16:36'),(11518,0,0,'I',3285,'I003285',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:19:05','darshan','2025-12-19 18:19:22'),(11519,0,0,'I',3285,'I003285',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-19 18:19:05','darshan','2025-12-19 18:19:22'),(11521,0,0,'I',3286,'I003286',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 18:23:25','','0000-00-00 00:00:00'),(11522,0,0,'I',3286,'I003286',2526,2,'0000-00-00','51219',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-12-19 18:23:25','','0000-00-00 00:00:00'),(11523,0,0,'I',3287,'I003287',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:26:51','','0000-00-00 00:00:00'),(11524,0,0,'I',3287,'I003287',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:26:51','','0000-00-00 00:00:00'),(11525,0,0,'I',3288,'I003288',2526,1,'0000-00-00','51482',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-19 18:28:35','drarchit','2025-12-19 18:28:49'),(11526,0,0,'I',3288,'I003288',2526,2,'0000-00-00','51585',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 18:28:35','drarchit','2025-12-19 18:28:49'),(11527,0,0,'I',3289,'I003289',2526,1,'0000-00-00','51277',0,0,'OINT','','','','',0,2,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'darshan','2025-12-19 18:31:23','','0000-00-00 00:00:00'),(11528,0,0,'I',3289,'I003289',2526,2,'0000-00-00','51276',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:31:23','','0000-00-00 00:00:00'),(11529,0,0,'I',3289,'I003289',2526,3,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:31:23','','0000-00-00 00:00:00'),(11530,0,0,'I',3289,'I003289',2526,4,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:31:23','','0000-00-00 00:00:00'),(11531,0,0,'I',3290,'I003290',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:37:15','darshan','2025-12-19 18:37:23'),(11532,0,0,'I',3290,'I003290',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-19 18:37:15','darshan','2025-12-19 18:37:23'),(11533,0,0,'I',3290,'I003290',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:37:15','darshan','2025-12-19 18:37:23'),(11534,0,0,'I',3291,'I003291',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:40:41','darshan','2025-12-19 18:40:49'),(11535,0,0,'I',3291,'I003291',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:40:41','darshan','2025-12-19 18:40:49'),(11536,0,0,'I',3291,'I003291',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-19 18:40:49','','0000-00-00 00:00:00'),(11537,0,0,'I',3292,'I003292',2526,1,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-19 18:43:59','','0000-00-00 00:00:00'),(11538,0,0,'I',3292,'I003292',2526,2,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-19 18:43:59','','0000-00-00 00:00:00'),(11539,0,0,'I',3270,'I003270',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:46:20','','0000-00-00 00:00:00'),(11540,0,0,'I',3270,'I003270',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:46:20','','0000-00-00 00:00:00'),(11541,0,0,'I',3270,'I003270',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-19 18:46:20','','0000-00-00 00:00:00'),(11542,0,0,'I',3293,'I003293',2526,1,'0000-00-00','51487',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-19 18:48:08','drarchit','2025-12-19 18:49:26'),(11543,0,0,'I',3293,'I003293',2526,2,'0000-00-00','51217',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 18:48:08','drarchit','2025-12-19 18:49:26'),(11544,0,0,'I',3293,'I003293',2526,3,'0000-00-00','51222',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 18:48:08','drarchit','2025-12-19 18:49:26'),(11550,0,0,'I',3293,'I003293',2526,4,'0000-00-00','51230',0,0,'TAB','','','','',0,7,0,0,0,0,'0-1-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 18:49:26','','0000-00-00 00:00:00'),(11551,0,0,'I',3293,'I003293',2526,5,'0000-00-00','51549',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 18:49:26','','0000-00-00 00:00:00'),(11552,0,0,'I',3293,'I003293',2526,6,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-19 18:49:26','','0000-00-00 00:00:00'),(11553,0,0,'I',3137,'I003137',2526,1,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-19 18:53:19','','0000-00-00 00:00:00'),(11554,0,0,'I',3137,'I003137',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-19 18:53:19','','0000-00-00 00:00:00'),(11555,0,0,'I',3137,'I003137',2526,3,'0000-00-00','51646',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-19 18:53:19','','0000-00-00 00:00:00'),(11556,0,0,'I',3294,'I003294',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:57:23','','0000-00-00 00:00:00'),(11557,0,0,'I',3294,'I003294',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:57:23','','0000-00-00 00:00:00'),(11558,0,0,'I',3294,'I003294',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:57:23','','0000-00-00 00:00:00'),(11559,0,0,'I',3294,'I003294',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-19 18:57:23','','0000-00-00 00:00:00'),(11560,0,0,'I',3296,'I003296',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 18:59:44','darshan','2025-12-19 19:00:30'),(11562,0,0,'I',3296,'I003296',2526,2,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-19 19:00:30','','0000-00-00 00:00:00'),(11563,0,0,'I',3296,'I003296',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',60,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-19 19:00:30','','0000-00-00 00:00:00'),(11564,0,0,'I',3297,'I003297',2526,1,'0000-00-00','51550',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-19 19:01:21','','0000-00-00 00:00:00'),(11565,0,0,'I',3297,'I003297',2526,2,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 19:01:21','','0000-00-00 00:00:00'),(11566,0,0,'I',3297,'I003297',2526,3,'0000-00-00','51482',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-19 19:01:21','','0000-00-00 00:00:00'),(11567,0,0,'I',3297,'I003297',2526,4,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-19 19:01:21','','0000-00-00 00:00:00'),(11568,0,0,'I',3297,'I003297',2526,5,'0000-00-00','51354',0,0,'CAP','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 19:01:21','','0000-00-00 00:00:00'),(11569,0,0,'I',3298,'I003298',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 19:04:17','','0000-00-00 00:00:00'),(11570,0,0,'I',3298,'I003298',2526,2,'0000-00-00','51333',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 19:04:17','','0000-00-00 00:00:00'),(11571,0,0,'I',3298,'I003298',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 19:04:17','','0000-00-00 00:00:00'),(11572,0,0,'I',3298,'I003298',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-19 19:04:17','','0000-00-00 00:00:00'),(11573,0,0,'I',3299,'I003299',2526,1,'0000-00-00','51410',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-19 19:05:54','','0000-00-00 00:00:00'),(11574,0,0,'I',3299,'I003299',2526,2,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-19 19:05:54','','0000-00-00 00:00:00'),(11575,0,0,'I',3299,'I003299',2526,3,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 19:05:54','','0000-00-00 00:00:00'),(11576,0,0,'I',3300,'I003300',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 19:09:45','','0000-00-00 00:00:00'),(11577,0,0,'I',3300,'I003300',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 19:09:45','','0000-00-00 00:00:00'),(11578,0,0,'I',3300,'I003300',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 19:09:45','','0000-00-00 00:00:00'),(11579,0,0,'I',3300,'I003300',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-19 19:09:45','','0000-00-00 00:00:00'),(11580,0,0,'I',3301,'I003301',2526,1,'0000-00-00','51540',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 19:12:19','','0000-00-00 00:00:00'),(11581,0,0,'I',3301,'I003301',2526,2,'0000-00-00','51505',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-19 19:12:19','','0000-00-00 00:00:00'),(11582,0,0,'I',3302,'I003302',2526,1,'0000-00-00','51591',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 19:16:19','drarchit','2025-12-19 19:16:22'),(11583,0,0,'I',3302,'I003302',2526,2,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 19:16:19','drarchit','2025-12-19 19:16:22'),(11584,0,0,'I',3303,'I003303',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 19:18:44','','0000-00-00 00:00:00'),(11585,0,0,'I',3303,'I003303',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 19:18:44','','0000-00-00 00:00:00'),(11586,0,0,'I',3303,'I003303',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-19 19:18:44','','0000-00-00 00:00:00'),(11587,0,0,'I',3303,'I003303',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-19 19:18:44','','0000-00-00 00:00:00'),(11589,0,0,'I',3304,'I003304',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 19:21:25','darshan','2025-12-19 19:21:46'),(11591,0,0,'I',3304,'I003304',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 19:21:25','darshan','2025-12-19 19:21:46'),(11593,0,0,'I',3305,'I003305',2526,1,'0000-00-00','51239',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-19 19:26:43','drarchit','2025-12-19 19:27:08'),(11594,0,0,'I',3305,'I003305',2526,2,'0000-00-00','51370',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-19 19:26:43','drarchit','2025-12-19 19:27:08'),(11595,0,0,'I',3305,'I003305',2526,3,'0000-00-00','51480',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-19 19:27:08','','0000-00-00 00:00:00'),(11596,0,0,'I',3305,'I003305',2526,4,'0000-00-00','51479',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-19 19:27:08','','0000-00-00 00:00:00'),(11597,0,0,'I',3306,'I003306',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 19:27:56','darshan','2025-12-19 20:04:59'),(11598,0,0,'I',3306,'I003306',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 19:27:56','darshan','2025-12-19 20:04:59'),(11599,0,0,'I',3307,'I003307',2526,1,'0000-00-00','51613',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-19 19:29:50','drjayant','2025-12-19 19:31:15'),(11600,0,0,'I',3307,'I003307',2526,2,'0000-00-00','51445',0,0,'CAP','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-19 19:29:50','drjayant','2025-12-19 19:31:15'),(11601,0,0,'I',3307,'I003307',2526,3,'0000-00-00','51648',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-19 19:31:15','','0000-00-00 00:00:00'),(11602,0,0,'I',3308,'I003308',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 19:33:57','','0000-00-00 00:00:00'),(11603,0,0,'I',3308,'I003308',2526,2,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 19:33:57','','0000-00-00 00:00:00'),(11604,0,0,'I',3308,'I003308',2526,3,'0000-00-00','51195',0,0,'TAB','','','','',0,9,0,0,0,0,'1-1-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 19:33:57','','0000-00-00 00:00:00'),(11605,0,0,'I',3308,'I003308',2526,4,'0000-00-00','51222',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 19:33:57','','0000-00-00 00:00:00'),(11606,0,0,'I',3309,'I003309',2526,1,'0000-00-00','51619',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-19 19:36:14','','0000-00-00 00:00:00'),(11607,0,0,'I',3309,'I003309',2526,2,'0000-00-00','51422',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-19 19:36:14','','0000-00-00 00:00:00'),(11608,0,0,'I',3309,'I003309',2526,3,'0000-00-00','51600',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-19 19:36:14','','0000-00-00 00:00:00'),(11609,0,0,'I',3309,'I003309',2526,4,'0000-00-00','51435',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-19 19:36:14','','0000-00-00 00:00:00'),(11610,0,0,'I',3309,'I003309',2526,5,'0000-00-00','51614',0,0,'SYRUP','','','','',0,1,0,0,0,0,'5-5-5','','Dy',3,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-12-19 19:36:14','','0000-00-00 00:00:00'),(11611,0,0,'I',3310,'I003310',2526,1,'0000-00-00','51353',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 19:39:38','','0000-00-00 00:00:00'),(11612,0,0,'I',3310,'I003310',2526,2,'0000-00-00','51324',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 19:39:38','','0000-00-00 00:00:00'),(11613,0,0,'I',3310,'I003310',2526,3,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 19:39:38','','0000-00-00 00:00:00'),(11614,0,0,'I',3310,'I003310',2526,4,'0000-00-00','51272',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-19 19:39:38','','0000-00-00 00:00:00'),(11615,0,0,'I',3311,'I003311',2526,1,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-19 19:41:43','','0000-00-00 00:00:00'),(11616,0,0,'I',3312,'I003312',2526,1,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 19:48:08','darshan','2025-12-19 19:48:46'),(11617,0,0,'I',3312,'I003312',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 19:48:46','','0000-00-00 00:00:00'),(11618,0,0,'I',3312,'I003312',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-19 19:48:46','','0000-00-00 00:00:00'),(11619,0,0,'I',3313,'I003313',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 19:58:12','','0000-00-00 00:00:00'),(11620,0,0,'I',3313,'I003313',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 19:58:12','','0000-00-00 00:00:00'),(11621,0,0,'I',3314,'I003314',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,8,0,0,0,0,'0-0-.5','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 20:00:15','darshan','2025-12-19 20:01:24'),(11622,0,0,'I',3314,'I003314',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,15,0,0,0,0,'.5-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 20:00:15','darshan','2025-12-19 20:01:24'),(11624,0,0,'I',3306,'I003306',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 20:04:53','darshan','2025-12-19 20:04:59'),(11625,0,0,'I',3315,'I003315',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-19 20:40:29','darshan','2025-12-19 20:41:19'),(11626,0,0,'I',3315,'I003315',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 20:40:29','darshan','2025-12-19 20:41:19'),(11627,0,0,'I',3315,'I003315',2526,3,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 20:40:29','darshan','2025-12-19 20:41:19'),(11628,0,0,'I',3315,'I003315',2526,4,'0000-00-00','51215',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-19 20:41:19','','0000-00-00 00:00:00'),(11629,0,0,'I',3315,'I003315',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-19 20:41:19','','0000-00-00 00:00:00'),(11630,0,0,'I',3316,'I003316',2526,1,'0000-00-00','51404',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:06:39','drarchit','2025-12-20 11:09:26'),(11631,0,0,'I',3316,'I003316',2526,2,'0000-00-00','51235',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-20 11:06:39','drarchit','2025-12-20 11:09:26'),(11632,0,0,'I',3316,'I003316',2526,3,'0000-00-00','51555',0,0,'TAB','','','','',0,9,0,0,0,0,'0-1-0','','Dy',9,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:06:39','drarchit','2025-12-20 11:09:26'),(11633,0,0,'I',3316,'I003316',2526,4,'0000-00-00','51239',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-20 11:06:39','drarchit','2025-12-20 11:09:26'),(11634,0,0,'I',3316,'I003316',2526,5,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-20 11:06:39','drarchit','2025-12-20 11:09:26'),(11635,0,0,'I',3316,'I003316',2526,6,'0000-00-00','51240',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:06:39','drarchit','2025-12-20 11:09:26'),(11636,0,0,'I',3316,'I003316',2526,7,'0000-00-00','51412',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:08:55','drarchit','2025-12-20 11:09:26'),(11637,0,0,'I',3316,'I003316',2526,8,'0000-00-00','51214',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-20 11:08:55','drarchit','2025-12-20 11:09:26'),(11638,0,0,'I',3316,'I003316',2526,9,'0000-00-00','51253',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-20 11:08:55','drarchit','2025-12-20 11:09:26'),(11639,0,0,'I',3317,'I003317',2526,1,'0000-00-00','51405',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:24:48','','0000-00-00 00:00:00'),(11640,0,0,'I',3317,'I003317',2526,2,'0000-00-00','51308',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-20 11:24:48','','0000-00-00 00:00:00'),(11641,0,0,'I',3317,'I003317',2526,3,'0000-00-00','51344',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-20 11:24:48','','0000-00-00 00:00:00'),(11642,0,0,'I',3317,'I003317',2526,4,'0000-00-00','51407',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:24:48','','0000-00-00 00:00:00'),(11643,0,0,'I',3317,'I003317',2526,5,'0000-00-00','51406',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:24:48','','0000-00-00 00:00:00'),(11644,0,0,'I',3317,'I003317',2526,6,'0000-00-00','51475',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-20 11:24:48','','0000-00-00 00:00:00'),(11645,0,0,'I',3317,'I003317',2526,7,'0000-00-00','51372',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:24:48','','0000-00-00 00:00:00'),(11646,0,0,'I',3317,'I003317',2526,8,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-20 11:24:48','','0000-00-00 00:00:00'),(11647,0,0,'I',3318,'I003318',2526,1,'0000-00-00','51542',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:32:35','','0000-00-00 00:00:00'),(11648,0,0,'I',3318,'I003318',2526,2,'0000-00-00','51309',0,0,'CAP','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:32:35','','0000-00-00 00:00:00'),(11649,0,0,'I',3318,'I003318',2526,3,'0000-00-00','51273',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:32:35','','0000-00-00 00:00:00'),(11650,0,0,'I',3318,'I003318',2526,4,'0000-00-00','51272',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:32:35','','0000-00-00 00:00:00'),(11651,0,0,'I',3318,'I003318',2526,5,'0000-00-00','51641',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:32:35','','0000-00-00 00:00:00'),(11652,0,0,'I',3319,'I003319',2526,1,'0000-00-00','51319',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-20 11:33:52','','0000-00-00 00:00:00'),(11653,0,0,'I',3319,'I003319',2526,2,'0000-00-00','51409',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-20 11:33:52','','0000-00-00 00:00:00'),(11654,0,0,'I',3320,'I003320',2526,1,'0000-00-00','51321',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:41:14','','0000-00-00 00:00:00'),(11655,0,0,'I',3320,'I003320',2526,2,'0000-00-00','51379',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:41:14','','0000-00-00 00:00:00'),(11656,0,0,'I',3320,'I003320',2526,3,'0000-00-00','51372',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:41:14','','0000-00-00 00:00:00'),(11657,0,0,'I',3320,'I003320',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-20 11:41:14','','0000-00-00 00:00:00'),(11658,0,0,'I',3320,'I003320',2526,5,'0000-00-00','51380',0,0,'CAP','','','','',0,9,0,0,0,0,'1-1-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:41:14','','0000-00-00 00:00:00'),(11659,0,0,'I',3321,'I003321',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:47:51','','0000-00-00 00:00:00'),(11660,0,0,'I',3321,'I003321',2526,2,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:47:51','','0000-00-00 00:00:00'),(11661,0,0,'I',3321,'I003321',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-20 11:47:51','','0000-00-00 00:00:00'),(11662,0,0,'I',3322,'I003322',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:53:36','drarchit','2025-12-20 11:55:59'),(11663,0,0,'I',3322,'I003322',2526,2,'0000-00-00','51563',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:55:59','','0000-00-00 00:00:00'),(11664,0,0,'I',3322,'I003322',2526,3,'0000-00-00','51396',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'25','','P',NULL,NULL,'drarchit','2025-12-20 11:55:59','','0000-00-00 00:00:00'),(11665,0,0,'I',3322,'I003322',2526,4,'0000-00-00','51239',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-20 11:55:59','','0000-00-00 00:00:00'),(11666,0,0,'I',3322,'I003322',2526,5,'0000-00-00','51382',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 11:55:59','','0000-00-00 00:00:00'),(11667,0,0,'I',3322,'I003322',2526,6,'0000-00-00','51467',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-20 11:55:59','','0000-00-00 00:00:00'),(11668,0,0,'I',3323,'I003323',2526,1,'0000-00-00','51384',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:09:13','drarchit','2025-12-20 12:10:00'),(11670,0,0,'I',3323,'I003323',2526,2,'0000-00-00','51517',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:10:00','','0000-00-00 00:00:00'),(11671,0,0,'I',3323,'I003323',2526,3,'0000-00-00','51629',0,0,'TAB','','','','',0,9,0,0,0,0,'1-1-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:10:00','','0000-00-00 00:00:00'),(11672,0,0,'I',3325,'I003325',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:22:12','','0000-00-00 00:00:00'),(11673,0,0,'I',3325,'I003325',2526,2,'0000-00-00','51217',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:22:12','','0000-00-00 00:00:00'),(11674,0,0,'I',3325,'I003325',2526,3,'0000-00-00','51618',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:22:12','','0000-00-00 00:00:00'),(11675,0,0,'I',3325,'I003325',2526,4,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-20 12:22:12','','0000-00-00 00:00:00'),(11676,0,0,'I',3326,'I003326',2526,1,'0000-00-00','51302',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-20 12:24:46','drjayant','2025-12-20 12:25:53'),(11677,0,0,'I',3326,'I003326',2526,2,'0000-00-00','51600',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-20 12:24:46','drjayant','2025-12-20 12:25:53'),(11678,0,0,'I',3326,'I003326',2526,3,'0000-00-00','51435',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-20 12:24:46','drjayant','2025-12-20 12:25:53'),(11679,0,0,'I',3326,'I003326',2526,4,'0000-00-00','51614',0,0,'SYRUP','','','','',0,1,0,0,0,0,'5-5-5','','Dy',5,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-12-20 12:24:46','drjayant','2025-12-20 12:25:53'),(11680,0,0,'I',3326,'I003326',2526,5,'0000-00-00','51292',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-20 12:25:53','','0000-00-00 00:00:00'),(11681,0,0,'I',3327,'I003327',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:27:08','drarchit','2025-12-20 12:27:20'),(11682,0,0,'I',3327,'I003327',2526,2,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-20 12:27:08','drarchit','2025-12-20 12:27:20'),(11683,0,0,'I',3327,'I003327',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:27:20','','0000-00-00 00:00:00'),(11684,0,0,'I',3328,'I003328',2526,1,'0000-00-00','51534',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:32:53','','0000-00-00 00:00:00'),(11685,0,0,'I',3328,'I003328',2526,2,'0000-00-00','51571',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:32:53','','0000-00-00 00:00:00'),(11686,0,0,'I',3328,'I003328',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:32:53','','0000-00-00 00:00:00'),(11687,0,0,'I',3328,'I003328',2526,4,'0000-00-00','51239',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-20 12:32:53','','0000-00-00 00:00:00'),(11688,0,0,'I',3328,'I003328',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:32:53','','0000-00-00 00:00:00'),(11689,0,0,'I',3329,'I003329',2526,1,'0000-00-00','51230',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:36:27','drarchit','2025-12-20 12:36:37'),(11690,0,0,'I',3329,'I003329',2526,2,'0000-00-00','51487',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-20 12:36:27','drarchit','2025-12-20 12:36:37'),(11691,0,0,'I',3329,'I003329',2526,3,'0000-00-00','51232',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:36:27','drarchit','2025-12-20 12:36:37'),(11692,0,0,'I',3329,'I003329',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-20 12:36:27','drarchit','2025-12-20 12:36:37'),(11693,0,0,'I',3329,'I003329',2526,5,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-20 12:36:27','drarchit','2025-12-20 12:36:37'),(11694,0,0,'I',3329,'I003329',2526,6,'0000-00-00','51471',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drarchit','2025-12-20 12:36:27','drarchit','2025-12-20 12:36:37'),(11695,0,0,'I',3330,'I003330',2526,1,'0000-00-00','51628',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:40:11','','0000-00-00 00:00:00'),(11696,0,0,'I',3330,'I003330',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-20 12:40:11','','0000-00-00 00:00:00'),(11697,0,0,'I',3330,'I003330',2526,3,'0000-00-00','51403',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:40:11','','0000-00-00 00:00:00'),(11698,0,0,'I',3330,'I003330',2526,4,'0000-00-00','51517',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:40:11','','0000-00-00 00:00:00'),(11699,0,0,'I',3324,'I003324',2526,1,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:43:29','drarchit','2025-12-20 12:43:52'),(11700,0,0,'I',3324,'I003324',2526,2,'0000-00-00','51339',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:43:52','','0000-00-00 00:00:00'),(11701,0,0,'I',3324,'I003324',2526,3,'0000-00-00','51382',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:43:52','','0000-00-00 00:00:00'),(11702,0,0,'I',3331,'I003331',2526,1,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-20 12:48:26','','0000-00-00 00:00:00'),(11703,0,0,'I',3331,'I003331',2526,2,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:48:26','','0000-00-00 00:00:00'),(11704,0,0,'I',3331,'I003331',2526,3,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-20 12:48:26','','0000-00-00 00:00:00'),(11705,0,0,'I',3331,'I003331',2526,4,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:48:26','','0000-00-00 00:00:00'),(11706,0,0,'I',3331,'I003331',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:48:26','','0000-00-00 00:00:00'),(11707,0,0,'I',3332,'I003332',2526,1,'0000-00-00','51296',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-20 12:49:26','drjayant','2025-12-20 12:50:46'),(11708,0,0,'I',3332,'I003332',2526,2,'0000-00-00','51582',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-20 12:49:26','drjayant','2025-12-20 12:50:46'),(11709,0,0,'I',3332,'I003332',2526,3,'0000-00-00','51443',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-20 12:49:26','drjayant','2025-12-20 12:50:46'),(11710,0,0,'I',3332,'I003332',2526,4,'0000-00-00','51409',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-20 12:49:26','drjayant','2025-12-20 12:50:46'),(11711,0,0,'I',3332,'I003332',2526,5,'0000-00-00','51650',0,0,'TAB','','','','',0,60,0,0,0,0,'0-1-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-20 12:50:46','','0000-00-00 00:00:00'),(11712,0,0,'I',3333,'I003333',2526,1,'0000-00-00','51396',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:53:00','','0000-00-00 00:00:00'),(11713,0,0,'I',3333,'I003333',2526,2,'0000-00-00','51373',0,0,'CAP','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:53:00','','0000-00-00 00:00:00'),(11714,0,0,'I',3334,'I003334',2526,1,'0000-00-00','51336',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:57:24','drarchit','2025-12-20 12:58:20'),(11716,0,0,'I',3334,'I003334',2526,2,'0000-00-00','51375',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-20 12:57:24','drarchit','2025-12-20 12:58:20'),(11718,0,0,'I',3334,'I003334',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:57:24','drarchit','2025-12-20 12:58:20'),(11719,0,0,'I',3334,'I003334',2526,4,'0000-00-00','51240',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:57:24','drarchit','2025-12-20 12:58:20'),(11722,0,0,'I',3334,'I003334',2526,5,'0000-00-00','51231',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 12:58:20','','0000-00-00 00:00:00'),(11723,0,0,'I',3335,'I003335',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 13:00:45','','0000-00-00 00:00:00'),(11724,0,0,'I',3335,'I003335',2526,2,'0000-00-00','51530',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-20 13:00:45','','0000-00-00 00:00:00'),(11725,0,0,'I',3336,'I003336',2526,1,'0000-00-00','51487',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-20 13:03:30','','0000-00-00 00:00:00'),(11726,0,0,'I',3336,'I003336',2526,2,'0000-00-00','51618',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 13:03:30','','0000-00-00 00:00:00'),(11727,0,0,'I',3336,'I003336',2526,3,'0000-00-00','51239',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-20 13:03:30','','0000-00-00 00:00:00'),(11728,0,0,'I',3336,'I003336',2526,4,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-20 13:03:30','','0000-00-00 00:00:00'),(11730,0,0,'I',3337,'I003337',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 10:44:54','darshan','2025-12-22 10:45:18'),(11731,0,0,'I',3337,'I003337',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 10:44:54','darshan','2025-12-22 10:45:18'),(11732,0,0,'I',3337,'I003337',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 10:45:18','','0000-00-00 00:00:00'),(11733,0,0,'I',3337,'I003337',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-22 10:45:18','','0000-00-00 00:00:00'),(11734,0,0,'I',3338,'I003338',2526,1,'0000-00-00','51268',0,0,'TAB','','','','',0,21,0,0,0,0,'1-1-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 10:56:37','drarchit','2025-12-22 10:57:05'),(11735,0,0,'I',3338,'I003338',2526,2,'0000-00-00','51267',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 10:56:37','drarchit','2025-12-22 10:57:05'),(11736,0,0,'I',3338,'I003338',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-22 10:56:37','drarchit','2025-12-22 10:57:05'),(11738,0,0,'I',3338,'I003338',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 10:57:05','','0000-00-00 00:00:00'),(11739,0,0,'I',3339,'I003339',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 10:57:52','darshan','2025-12-22 10:58:46'),(11740,0,0,'I',3339,'I003339',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 10:57:52','darshan','2025-12-22 10:58:46'),(11741,0,0,'I',3339,'I003339',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 10:57:52','darshan','2025-12-22 10:58:46'),(11743,0,0,'I',3339,'I003339',2526,4,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 10:58:34','darshan','2025-12-22 10:58:46'),(11744,0,0,'I',3339,'I003339',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-22 10:58:46','','0000-00-00 00:00:00'),(11745,0,0,'I',3341,'I003341',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 11:03:30','','0000-00-00 00:00:00'),(11746,0,0,'I',3341,'I003341',2526,2,'0000-00-00','51199',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 11:03:30','','0000-00-00 00:00:00'),(11747,0,0,'I',3341,'I003341',2526,3,'0000-00-00','51322',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 11:03:30','','0000-00-00 00:00:00'),(11748,0,0,'I',3341,'I003341',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-22 11:03:30','','0000-00-00 00:00:00'),(11749,0,0,'I',3340,'I003340',2526,1,'0000-00-00','51628',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 11:04:28','drarchit','2025-12-22 11:04:58'),(11750,0,0,'I',3340,'I003340',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-22 11:04:28','drarchit','2025-12-22 11:04:58'),(11751,0,0,'I',3340,'I003340',2526,3,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 11:04:28','drarchit','2025-12-22 11:04:58'),(11752,0,0,'I',3340,'I003340',2526,4,'0000-00-00','51480',0,0,'TAB','','','','',0,9,0,0,0,0,'1-1-1','','Dy',3,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-22 11:04:28','drarchit','2025-12-22 11:04:58'),(11753,0,0,'I',3340,'I003340',2526,5,'0000-00-00','51517',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 11:04:58','','0000-00-00 00:00:00'),(11754,0,0,'I',3342,'I003342',2526,1,'0000-00-00','51345',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 11:10:07','drarchit','2025-12-22 11:10:47'),(11755,0,0,'I',3342,'I003342',2526,2,'0000-00-00','51338',0,0,'TAB','','','','',0,270,0,0,0,0,'1-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 11:10:07','drarchit','2025-12-22 11:10:47'),(11756,0,0,'I',3342,'I003342',2526,3,'0000-00-00','51385',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 11:10:07','drarchit','2025-12-22 11:10:47'),(11757,0,0,'I',3342,'I003342',2526,4,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-22 11:10:22','drarchit','2025-12-22 11:10:47'),(11758,0,0,'I',3342,'I003342',2526,5,'0000-00-00','51462',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 11:10:47','','0000-00-00 00:00:00'),(11759,0,0,'I',3342,'I003342',2526,6,'0000-00-00','51442',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-22 11:10:47','','0000-00-00 00:00:00'),(11761,0,0,'I',3344,'I003344',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 11:15:35','darshan','2025-12-22 11:15:50'),(11762,0,0,'I',3344,'I003344',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 11:15:35','darshan','2025-12-22 11:15:50'),(11763,0,0,'I',3345,'I003345',2526,1,'0000-00-00','51430',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-22 11:19:27','drjayant','2025-12-22 13:18:57'),(11764,0,0,'I',3345,'I003345',2526,2,'0000-00-00','51350',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-22 11:19:27','drjayant','2025-12-22 13:18:57'),(11766,0,0,'I',3346,'I003346',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 11:25:41','darshan','2025-12-22 11:26:10'),(11769,0,0,'I',3347,'I003347',2526,1,'0000-00-00','51628',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 11:29:40','','0000-00-00 00:00:00'),(11770,0,0,'I',3347,'I003347',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-22 11:29:40','','0000-00-00 00:00:00'),(11771,0,0,'I',3347,'I003347',2526,3,'0000-00-00','51629',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 11:29:40','','0000-00-00 00:00:00'),(11772,0,0,'I',3347,'I003347',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-22 11:29:40','','0000-00-00 00:00:00'),(11773,0,0,'I',3347,'I003347',2526,5,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 11:29:40','','0000-00-00 00:00:00'),(11774,0,0,'I',3348,'I003348',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',45,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 11:31:05','','0000-00-00 00:00:00'),(11775,0,0,'I',3348,'I003348',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 11:31:05','','0000-00-00 00:00:00'),(11776,0,0,'I',3349,'I003349',2526,1,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 11:41:29','','0000-00-00 00:00:00'),(11777,0,0,'I',3349,'I003349',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,100,0,0,0,0,'0-0-1','','Dy',100,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 11:41:29','','0000-00-00 00:00:00'),(11778,0,0,'I',3349,'I003349',2526,3,'0000-00-00','51505',0,0,'TAB','','','','',0,100,0,0,0,0,'0-0-1','','Dy',100,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-22 11:41:29','','0000-00-00 00:00:00'),(11779,0,0,'I',3349,'I003349',2526,4,'0000-00-00','51490',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-22 11:41:29','','0000-00-00 00:00:00'),(11780,0,0,'I',3350,'I003350',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 11:46:15','darshan','2025-12-22 11:46:27'),(11782,0,0,'I',3351,'I003351',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 11:49:19','darshan','2025-12-22 11:49:45'),(11783,0,0,'I',3351,'I003351',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 11:49:19','darshan','2025-12-22 11:49:45'),(11784,0,0,'I',3352,'I003352',2526,1,'0000-00-00','51558',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 11:50:44','drarchit','2025-12-22 11:51:29'),(11785,0,0,'I',3352,'I003352',2526,2,'0000-00-00','51228',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-22 11:50:44','drarchit','2025-12-22 11:51:29'),(11786,0,0,'I',3352,'I003352',2526,3,'0000-00-00','51352',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 11:50:44','drarchit','2025-12-22 11:51:29'),(11787,0,0,'I',3352,'I003352',2526,4,'0000-00-00','51631',0,0,'CAP','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 11:50:44','drarchit','2025-12-22 11:51:29'),(11789,0,0,'I',3353,'I003353',2526,1,'0000-00-00','51638',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-22 12:00:44','','0000-00-00 00:00:00'),(11790,0,0,'I',3353,'I003353',2526,2,'0000-00-00','51382',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-22 12:00:44','','0000-00-00 00:00:00'),(11791,0,0,'I',3353,'I003353',2526,3,'0000-00-00','51445',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-22 12:00:44','','0000-00-00 00:00:00'),(11792,0,0,'I',3353,'I003353',2526,4,'0000-00-00','51435',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-22 12:00:44','','0000-00-00 00:00:00'),(11793,0,0,'I',3354,'I003354',2526,1,'0000-00-00','51215',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 12:11:23','','0000-00-00 00:00:00'),(11794,0,0,'I',3354,'I003354',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 12:11:23','','0000-00-00 00:00:00'),(11795,0,0,'I',3355,'I003355',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 12:14:33','darshan','2025-12-22 12:14:54'),(11796,0,0,'I',3355,'I003355',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 12:14:33','darshan','2025-12-22 12:14:54'),(11798,0,0,'I',3355,'I003355',2526,3,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-22 12:14:54','','0000-00-00 00:00:00'),(11799,0,0,'I',3356,'I003356',2526,1,'0000-00-00','51362',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-22 12:20:44','','0000-00-00 00:00:00'),(11800,0,0,'I',3356,'I003356',2526,2,'0000-00-00','51491',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-22 12:20:44','','0000-00-00 00:00:00'),(11801,0,0,'I',3357,'I003357',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 12:24:29','darshan','2025-12-22 14:07:32'),(11802,0,0,'I',3358,'I003358',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 12:35:23','','0000-00-00 00:00:00'),(11803,0,0,'I',3358,'I003358',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 12:35:23','','0000-00-00 00:00:00'),(11804,0,0,'I',3358,'I003358',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-22 12:35:23','','0000-00-00 00:00:00'),(11805,0,0,'I',3359,'I003359',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 12:37:25','','0000-00-00 00:00:00'),(11806,0,0,'I',3359,'I003359',2526,2,'0000-00-00','51538',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-22 12:37:25','','0000-00-00 00:00:00'),(11807,0,0,'I',3359,'I003359',2526,3,'0000-00-00','51353',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 12:37:25','','0000-00-00 00:00:00'),(11808,0,0,'I',3360,'I003360',2526,1,'0000-00-00','51287',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-22 12:39:05','darshan','2025-12-22 12:39:46'),(11809,0,0,'I',3360,'I003360',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 12:39:46','','0000-00-00 00:00:00'),(11810,0,0,'I',3361,'I003361',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 12:46:34','','0000-00-00 00:00:00'),(11811,0,0,'I',3361,'I003361',2526,2,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 12:46:34','','0000-00-00 00:00:00'),(11812,0,0,'I',3361,'I003361',2526,3,'0000-00-00','51226',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 12:46:34','','0000-00-00 00:00:00'),(11813,0,0,'I',3362,'I003362',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 12:50:30','darshan','2025-12-22 12:51:00'),(11814,0,0,'I',3362,'I003362',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 12:51:00','','0000-00-00 00:00:00'),(11815,0,0,'I',3362,'I003362',2526,3,'0000-00-00','51275',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'60','','P',NULL,NULL,'darshan','2025-12-22 12:51:00','','0000-00-00 00:00:00'),(11816,0,0,'I',3362,'I003362',2526,4,'0000-00-00','51265',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 12:51:00','','0000-00-00 00:00:00'),(11817,0,0,'I',3362,'I003362',2526,5,'0000-00-00','51191',0,0,'TAB','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-22 12:51:00','','0000-00-00 00:00:00'),(11818,0,0,'I',3363,'I003363',2526,1,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 12:59:52','','0000-00-00 00:00:00'),(11819,0,0,'I',3363,'I003363',2526,2,'0000-00-00','51332',0,0,'CAP','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 12:59:52','','0000-00-00 00:00:00'),(11820,0,0,'I',3363,'I003363',2526,3,'0000-00-00','51628',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 12:59:52','','0000-00-00 00:00:00'),(11821,0,0,'I',3363,'I003363',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-22 12:59:52','','0000-00-00 00:00:00'),(11822,0,0,'I',3364,'I003364',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 13:00:08','darshan','2025-12-22 13:00:15'),(11823,0,0,'I',3364,'I003364',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 13:00:15','','0000-00-00 00:00:00'),(11825,0,0,'I',3365,'I003365',2526,2,'0000-00-00','51271',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 13:02:12','darshan','2025-12-22 13:02:50'),(11826,0,0,'I',3365,'I003365',2526,3,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',10,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-22 13:02:12','darshan','2025-12-22 13:02:50'),(11827,0,0,'I',3365,'I003365',2526,4,'0000-00-00','51209',0,0,'TAB','','','','',0,11,0,0,0,0,'.5-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 13:02:12','darshan','2025-12-22 13:02:50'),(11828,0,0,'I',3365,'I003365',2526,5,'0000-00-00','51322',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 13:02:12','darshan','2025-12-22 13:02:50'),(11829,0,0,'I',3365,'I003365',2526,1,'0000-00-00','51466',0,0,'TAB','','','','',0,12,0,0,0,6,'','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-22 13:02:15','darshan','2025-12-22 13:02:50'),(11830,0,0,'I',3366,'I003366',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,90,0,0,0,0,'.5-0-0','','Dy',180,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 13:06:46','','0000-00-00 00:00:00'),(11831,0,0,'I',3366,'I003366',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 13:06:46','','0000-00-00 00:00:00'),(11832,0,0,'I',3366,'I003366',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-22 13:06:46','','0000-00-00 00:00:00'),(11833,0,0,'I',3367,'I003367',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 13:13:10','','0000-00-00 00:00:00'),(11834,0,0,'I',3367,'I003367',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 13:13:10','','0000-00-00 00:00:00'),(11835,0,0,'I',3367,'I003367',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-22 13:13:10','','0000-00-00 00:00:00'),(11836,0,0,'I',3368,'I003368',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 13:22:30','','0000-00-00 00:00:00'),(11837,0,0,'I',3368,'I003368',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 13:22:30','','0000-00-00 00:00:00'),(11838,0,0,'I',3368,'I003368',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 13:22:30','','0000-00-00 00:00:00'),(11839,0,0,'I',3368,'I003368',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-22 13:22:30','','0000-00-00 00:00:00'),(11840,0,0,'I',3369,'I003369',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 13:32:44','','0000-00-00 00:00:00'),(11841,0,0,'I',3369,'I003369',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 13:32:44','','0000-00-00 00:00:00'),(11842,0,0,'I',3369,'I003369',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-22 13:32:44','','0000-00-00 00:00:00'),(11843,0,0,'I',3369,'I003369',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-22 13:32:44','','0000-00-00 00:00:00'),(11844,0,0,'I',3370,'I003370',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 13:45:11','','0000-00-00 00:00:00'),(11845,0,0,'I',3370,'I003370',2526,2,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-22 13:45:11','','0000-00-00 00:00:00'),(11846,0,0,'I',3370,'I003370',2526,3,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 13:45:11','','0000-00-00 00:00:00'),(11847,0,0,'I',3370,'I003370',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-22 13:45:11','','0000-00-00 00:00:00'),(11848,0,0,'I',3370,'I003370',2526,5,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-22 13:45:11','','0000-00-00 00:00:00'),(11849,0,0,'I',3371,'I003371',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 13:56:31','','0000-00-00 00:00:00'),(11850,0,0,'I',3371,'I003371',2526,2,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-22 13:56:31','','0000-00-00 00:00:00'),(11851,0,0,'I',3371,'I003371',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 13:56:31','','0000-00-00 00:00:00'),(11852,0,0,'I',3371,'I003371',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-22 13:56:31','','0000-00-00 00:00:00'),(11853,0,0,'I',3357,'I003357',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 14:07:32','','0000-00-00 00:00:00'),(11854,0,0,'I',3357,'I003357',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 14:07:32','','0000-00-00 00:00:00'),(11855,0,0,'I',3357,'I003357',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-22 14:07:32','','0000-00-00 00:00:00'),(11856,0,0,'I',3372,'I003372',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 14:14:37','','0000-00-00 00:00:00'),(11857,0,0,'I',3372,'I003372',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 14:14:37','','0000-00-00 00:00:00'),(11858,0,0,'I',3372,'I003372',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-22 14:14:37','','0000-00-00 00:00:00'),(11859,0,0,'I',3373,'I003373',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 14:18:39','','0000-00-00 00:00:00'),(11860,0,0,'I',3373,'I003373',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 14:18:39','','0000-00-00 00:00:00'),(11861,0,0,'I',3374,'I003374',2526,1,'0000-00-00','51184',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 14:27:09','darshan','2025-12-22 14:27:15'),(11862,0,0,'I',3374,'I003374',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 14:27:09','darshan','2025-12-22 14:27:15'),(11863,0,0,'I',3374,'I003374',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-22 14:27:09','darshan','2025-12-22 14:27:15'),(11864,0,0,'I',3374,'I003374',2526,4,'0000-00-00','51197',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 14:27:09','darshan','2025-12-22 14:27:15'),(11865,0,0,'I',3375,'I003375',2526,1,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 14:39:05','darshan','2025-12-22 14:39:11'),(11866,0,0,'I',3375,'I003375',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 14:39:05','darshan','2025-12-22 14:39:11'),(11867,0,0,'I',3375,'I003375',2526,3,'0000-00-00','51202',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 14:39:05','darshan','2025-12-22 14:39:11'),(11868,0,0,'I',3376,'I003376',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 14:48:22','','0000-00-00 00:00:00'),(11869,0,0,'I',3376,'I003376',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 14:48:22','','0000-00-00 00:00:00'),(11870,0,0,'I',3377,'I003377',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 14:53:33','darshan','2025-12-22 14:53:58'),(11871,0,0,'I',3377,'I003377',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 14:53:33','darshan','2025-12-22 14:53:58'),(11872,0,0,'I',3377,'I003377',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-22 14:53:33','darshan','2025-12-22 14:53:58'),(11873,0,0,'I',3377,'I003377',2526,4,'0000-00-00','51460',0,0,'POWDER','','','','',0,1,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'398','','P',NULL,NULL,'darshan','2025-12-22 14:53:58','','0000-00-00 00:00:00'),(11874,0,0,'I',3378,'I003378',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 15:01:47','','0000-00-00 00:00:00'),(11875,0,0,'I',3378,'I003378',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 15:01:47','','0000-00-00 00:00:00'),(11876,0,0,'I',3379,'I003379',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 15:19:23','','0000-00-00 00:00:00'),(11877,0,0,'I',3379,'I003379',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 15:19:23','','0000-00-00 00:00:00'),(11878,0,0,'I',3380,'I003380',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 17:10:39','darshan','2025-12-22 17:10:50'),(11880,0,0,'I',3381,'I003381',2526,1,'0000-00-00','51624',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 17:13:32','darshan','2025-12-22 17:13:58'),(11881,0,0,'I',3381,'I003381',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 17:13:58','','0000-00-00 00:00:00'),(11882,0,0,'I',3381,'I003381',2526,3,'0000-00-00','51201',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 17:13:58','','0000-00-00 00:00:00'),(11883,0,0,'I',3382,'I003382',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 17:16:04','darshan','2025-12-22 17:16:26'),(11884,0,0,'I',3382,'I003382',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-22 17:16:04','darshan','2025-12-22 17:16:26'),(11885,0,0,'I',3383,'I003383',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 17:19:04','darshan','2025-12-22 17:19:17'),(11886,0,0,'I',3383,'I003383',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-22 17:19:04','darshan','2025-12-22 17:19:17'),(11887,0,0,'I',3384,'I003384',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-22 17:33:45','darshan','2025-12-22 17:39:49'),(11888,0,0,'I',3384,'I003384',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 17:33:45','darshan','2025-12-22 17:39:49'),(11889,0,0,'I',3384,'I003384',2526,3,'0000-00-00','51624',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 17:33:45','darshan','2025-12-22 17:39:49'),(11890,0,0,'I',3384,'I003384',2526,4,'0000-00-00','51193',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 17:33:45','darshan','2025-12-22 17:39:49'),(11891,0,0,'I',3385,'I003385',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 17:42:37','darshan','2025-12-22 17:42:58'),(11892,0,0,'I',3385,'I003385',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-22 17:42:37','darshan','2025-12-22 17:42:58'),(11893,0,0,'I',3386,'I003386',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 17:53:10','darshan','2025-12-22 17:53:53'),(11895,0,0,'I',3386,'I003386',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-22 17:53:10','darshan','2025-12-22 17:53:53'),(11897,0,0,'I',3386,'I003386',2526,3,'0000-00-00','51197',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 17:53:53','','0000-00-00 00:00:00'),(11898,0,0,'I',3387,'I003387',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 18:04:23','darshan','2025-12-22 18:04:52'),(11899,0,0,'I',3387,'I003387',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-22 18:04:23','darshan','2025-12-22 18:04:52'),(11900,0,0,'I',3388,'I003388',2526,1,'0000-00-00','51320',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-22 18:04:36','','0000-00-00 00:00:00'),(11901,0,0,'I',3388,'I003388',2526,2,'0000-00-00','51399',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-22 18:04:36','','0000-00-00 00:00:00'),(11902,0,0,'I',3388,'I003388',2526,3,'0000-00-00','51619',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-22 18:04:36','','0000-00-00 00:00:00'),(11903,0,0,'I',3388,'I003388',2526,4,'0000-00-00','51422',0,0,'CAP','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-22 18:04:36','','0000-00-00 00:00:00'),(11904,0,0,'I',3388,'I003388',2526,5,'0000-00-00','51302',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-22 18:04:36','','0000-00-00 00:00:00'),(11905,0,0,'I',3388,'I003388',2526,6,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-22 18:04:36','','0000-00-00 00:00:00'),(11906,0,0,'I',3388,'I003388',2526,7,'0000-00-00','51620',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-22 18:04:36','','0000-00-00 00:00:00'),(11907,0,0,'I',3388,'I003388',2526,8,'0000-00-00','51636',0,0,'SYRUP','','','','',0,1,0,0,0,0,'5-5-5','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-22 18:04:36','','0000-00-00 00:00:00'),(11908,0,0,'I',3387,'I003387',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-22 18:04:52','','0000-00-00 00:00:00'),(11909,0,0,'I',3390,'I003390',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 18:13:43','','0000-00-00 00:00:00'),(11910,0,0,'I',3390,'I003390',2526,2,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 18:13:43','','0000-00-00 00:00:00'),(11911,0,0,'I',3390,'I003390',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-22 18:13:43','','0000-00-00 00:00:00'),(11912,0,0,'I',3389,'I003389',2526,1,'0000-00-00','51243',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-22 18:15:11','drjayant','2025-12-22 18:15:21'),(11913,0,0,'I',3391,'I003391',2526,1,'0000-00-00','51189',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 18:17:32','','0000-00-00 00:00:00'),(11914,0,0,'I',3392,'I003392',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,80,0,0,0,0,'1-0-1','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 18:19:55','darshan','2025-12-22 18:20:29'),(11915,0,0,'I',3392,'I003392',2526,2,'0000-00-00','51198',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 18:20:04','darshan','2025-12-22 18:20:29'),(11916,0,0,'I',3392,'I003392',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-22 18:20:29','','0000-00-00 00:00:00'),(11917,0,0,'I',3393,'I003393',2526,1,'0000-00-00','51248',0,0,'CAP','','','','',0,12,0,0,0,0,'1-0-0','','Wk',12,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 18:22:36','','0000-00-00 00:00:00'),(11918,0,0,'I',3393,'I003393',2526,2,'0000-00-00','51482',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-22 18:22:36','','0000-00-00 00:00:00'),(11919,0,0,'I',3393,'I003393',2526,3,'0000-00-00','51249',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 18:22:36','','0000-00-00 00:00:00'),(11920,0,0,'I',3394,'I003394',2526,1,'0000-00-00','51320',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-12-22 18:24:55','','0000-00-00 00:00:00'),(11921,0,0,'I',3394,'I003394',2526,2,'0000-00-00','51376',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-22 18:24:55','','0000-00-00 00:00:00'),(11922,0,0,'I',3395,'I003395',2526,1,'0000-00-00','51628',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 18:27:25','','0000-00-00 00:00:00'),(11923,0,0,'I',3395,'I003395',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-22 18:27:25','','0000-00-00 00:00:00'),(11924,0,0,'I',3395,'I003395',2526,3,'0000-00-00','51292',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 18:27:25','','0000-00-00 00:00:00'),(11925,0,0,'I',3395,'I003395',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-22 18:27:25','','0000-00-00 00:00:00'),(11926,0,0,'I',3395,'I003395',2526,5,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 18:27:25','','0000-00-00 00:00:00'),(11927,0,0,'I',3397,'I003397',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 18:32:46','','0000-00-00 00:00:00'),(11928,0,0,'I',3397,'I003397',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 18:32:46','','0000-00-00 00:00:00'),(11929,0,0,'I',3396,'I003396',2526,1,'0000-00-00','51651',0,0,'TAB','','','','',0,20,0,0,0,0,'0-1-0','','Dy',20,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-22 18:33:13','drjayant','2025-12-22 18:36:46'),(11930,0,0,'I',3396,'I003396',2526,2,'0000-00-00','51376',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-22 18:33:13','drjayant','2025-12-22 18:36:46'),(11931,0,0,'I',3396,'I003396',2526,3,'0000-00-00','51409',0,0,'TAB','','','','',0,20,0,0,0,0,'0-1-0','','Dy',20,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-22 18:33:13','drjayant','2025-12-22 18:36:46'),(11932,0,0,'I',3396,'I003396',2526,4,'0000-00-00','51423',0,0,'POWDER','','','','',0,1,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-12-22 18:33:13','drjayant','2025-12-22 18:36:46'),(11933,0,0,'I',3396,'I003396',2526,5,'0000-00-00','51435',0,0,'TAB','','','','',0,20,0,0,0,0,'0-1-0','','Dy',20,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-22 18:33:13','drjayant','2025-12-22 18:36:46'),(11934,0,0,'I',3396,'I003396',2526,6,'0000-00-00','51437',0,0,'SYRUP','','','','',0,1,0,0,0,0,'0-0-25','','Dy',20,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-22 18:33:13','drjayant','2025-12-22 18:36:46'),(11936,0,0,'I',3398,'I003398',2526,1,'0000-00-00','51321',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 18:34:10','drarchit','2025-12-22 18:35:00'),(11937,0,0,'I',3398,'I003398',2526,2,'0000-00-00','51379',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 18:34:10','drarchit','2025-12-22 18:35:00'),(11939,0,0,'I',3398,'I003398',2526,3,'0000-00-00','51220',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 18:35:00','','0000-00-00 00:00:00'),(11940,0,0,'I',3398,'I003398',2526,4,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 18:35:00','','0000-00-00 00:00:00'),(11941,0,0,'I',3396,'I003396',2526,7,'0000-00-00','51652',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-22 18:36:46','','0000-00-00 00:00:00'),(11942,0,0,'I',3396,'I003396',2526,8,'0000-00-00','51613',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-22 18:36:46','','0000-00-00 00:00:00'),(11943,0,0,'I',3399,'I003399',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 18:43:43','','0000-00-00 00:00:00'),(11944,0,0,'I',3399,'I003399',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 18:43:43','','0000-00-00 00:00:00'),(11945,0,0,'I',3400,'I003400',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 18:47:05','darshan','2025-12-22 18:47:17'),(11946,0,0,'I',3400,'I003400',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-22 18:47:05','darshan','2025-12-22 18:47:17'),(11947,0,0,'I',3401,'I003401',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 18:47:36','drarchit','2025-12-22 19:03:26'),(11948,0,0,'I',3402,'I003402',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 18:50:22','darshan','2025-12-22 18:50:37'),(11949,0,0,'I',3402,'I003402',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Dy',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-22 18:50:22','darshan','2025-12-22 18:50:37'),(11952,0,0,'I',3403,'I003403',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 18:51:55','','0000-00-00 00:00:00'),(11953,0,0,'I',3404,'I003404',2526,1,'0000-00-00','51619',0,0,'TAB','','','','',0,3,0,0,0,0,'0-1-0','','Dy',3,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-22 18:54:00','drjayant','2025-12-22 19:39:59'),(11954,0,0,'I',3404,'I003404',2526,2,'0000-00-00','51422',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-22 18:54:00','drjayant','2025-12-22 19:39:59'),(11955,0,0,'I',3405,'I003405',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 18:55:13','','0000-00-00 00:00:00'),(11956,0,0,'I',3405,'I003405',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 18:55:13','','0000-00-00 00:00:00'),(11957,0,0,'I',3406,'I003406',2526,1,'0000-00-00','51420',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-22 18:55:31','','0000-00-00 00:00:00'),(11958,0,0,'I',3407,'I003407',2526,1,'0000-00-00','51222',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 19:00:46','drarchit','2025-12-22 19:01:35'),(11959,0,0,'I',3407,'I003407',2526,2,'0000-00-00','51396',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 19:00:46','drarchit','2025-12-22 19:01:35'),(11960,0,0,'I',3407,'I003407',2526,3,'0000-00-00','51248',0,0,'CAP','','','','',0,28,0,0,0,0,'1-0-0','','Wk',4,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 19:01:35','','0000-00-00 00:00:00'),(11961,0,0,'I',3407,'I003407',2526,4,'0000-00-00','51219',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-12-22 19:01:35','','0000-00-00 00:00:00'),(11962,0,0,'I',3408,'I003408',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 19:02:10','','0000-00-00 00:00:00'),(11963,0,0,'I',3408,'I003408',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-22 19:02:10','','0000-00-00 00:00:00'),(11964,0,0,'I',3401,'I003401',2526,2,'0000-00-00','51653',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'drarchit','2025-12-22 19:03:21','drarchit','2025-12-22 19:03:26'),(11965,0,0,'I',3409,'I003409',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 19:06:56','','0000-00-00 00:00:00'),(11966,0,0,'I',3409,'I003409',2526,2,'0000-00-00','51185',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 19:06:56','','0000-00-00 00:00:00'),(11967,0,0,'I',3410,'I003410',2526,1,'0000-00-00','51630',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 19:08:06','','0000-00-00 00:00:00'),(11968,0,0,'I',3410,'I003410',2526,2,'0000-00-00','51556',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 19:08:06','','0000-00-00 00:00:00'),(11969,0,0,'I',3410,'I003410',2526,3,'0000-00-00','51557',0,0,'TAB','','','','',0,90,0,0,0,0,'1-1-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 19:08:06','','0000-00-00 00:00:00'),(11970,0,0,'I',3410,'I003410',2526,4,'0000-00-00','51435',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-22 19:08:06','','0000-00-00 00:00:00'),(11971,0,0,'I',3410,'I003410',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-22 19:08:06','','0000-00-00 00:00:00'),(11972,0,0,'I',3410,'I003410',2526,6,'0000-00-00','51559',0,0,'SYRUP','','','','',0,1,0,0,0,0,'0-0-30','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 19:08:06','','0000-00-00 00:00:00'),(11973,0,0,'I',3411,'I003411',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 19:15:19','darshan','2025-12-22 19:15:28'),(11974,0,0,'I',3411,'I003411',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 19:15:19','darshan','2025-12-22 19:15:28'),(11975,0,0,'I',3411,'I003411',2526,3,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 19:15:19','darshan','2025-12-22 19:15:28'),(11976,0,0,'I',3411,'I003411',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-22 19:15:28','','0000-00-00 00:00:00'),(11977,0,0,'I',3412,'I003412',2526,1,'0000-00-00','51231',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 19:15:38','drarchit','2025-12-22 19:15:57'),(11978,0,0,'I',3412,'I003412',2526,2,'0000-00-00','51297',0,0,'TAB','','','','',0,7,0,0,0,0,'0-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 19:15:38','drarchit','2025-12-22 19:15:57'),(11979,0,0,'I',3412,'I003412',2526,3,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 19:15:57','','0000-00-00 00:00:00'),(11980,0,0,'I',3412,'I003412',2526,4,'0000-00-00','51221',0,0,'CAP','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-22 19:15:57','','0000-00-00 00:00:00'),(11981,0,0,'I',3413,'I003413',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 19:28:40','','0000-00-00 00:00:00'),(11982,0,0,'I',3413,'I003413',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 19:28:40','','0000-00-00 00:00:00'),(11983,0,0,'I',3413,'I003413',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-22 19:28:40','','0000-00-00 00:00:00'),(11984,0,0,'I',3414,'I003414',2526,1,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 19:31:00','','0000-00-00 00:00:00'),(11985,0,0,'I',3414,'I003414',2526,2,'0000-00-00','51482',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-22 19:31:00','','0000-00-00 00:00:00'),(11986,0,0,'I',3414,'I003414',2526,3,'0000-00-00','51223',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-22 19:31:00','','0000-00-00 00:00:00'),(11987,0,0,'I',3414,'I003414',2526,4,'0000-00-00','51492',0,0,'INJ','','','','',0,1,0,0,0,0,'22-0-12','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-22 19:31:00','','0000-00-00 00:00:00'),(11988,0,0,'I',3414,'I003414',2526,5,'0000-00-00','51410',0,0,'TAB','','','','',0,100,0,0,0,0,'1-0-0','','Dy',100,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-22 19:31:00','','0000-00-00 00:00:00'),(11989,0,0,'I',3416,'I003416',2526,1,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 19:39:06','','0000-00-00 00:00:00'),(11990,0,0,'I',3416,'I003416',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 19:39:06','','0000-00-00 00:00:00'),(11991,0,0,'I',3416,'I003416',2526,3,'0000-00-00','51234',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-22 19:39:06','','0000-00-00 00:00:00'),(11992,0,0,'I',3417,'I003417',2526,1,'0000-00-00','51235',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-22 19:39:24','drarchit','2025-12-22 19:40:13'),(11993,0,0,'I',3417,'I003417',2526,2,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-22 19:39:24','drarchit','2025-12-22 19:40:13'),(11994,0,0,'I',3417,'I003417',2526,3,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 19:39:24','drarchit','2025-12-22 19:40:13'),(11996,0,0,'I',3404,'I003404',2526,3,'0000-00-00','51620',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-22 19:39:31','drjayant','2025-12-22 19:39:59'),(11997,0,0,'I',3404,'I003404',2526,4,'0000-00-00','51302',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drjayant','2025-12-22 19:39:31','drjayant','2025-12-22 19:39:59'),(11998,0,0,'I',3404,'I003404',2526,5,'0000-00-00','51435',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-22 19:39:31','drjayant','2025-12-22 19:39:59'),(11999,0,0,'I',3404,'I003404',2526,6,'0000-00-00','51614',0,0,'SYRUP','','','','',0,1,0,0,0,0,'5-5-5','','Dy',5,0,0,0,0,0,0,0,0,0,'','','P',NULL,NULL,'drjayant','2025-12-22 19:39:59','','0000-00-00 00:00:00'),(12000,0,0,'I',3417,'I003417',2526,4,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 19:40:13','','0000-00-00 00:00:00'),(12001,0,0,'I',3417,'I003417',2526,5,'0000-00-00','51221',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-22 19:40:13','','0000-00-00 00:00:00'),(12002,0,0,'I',3418,'I003418',2526,1,'0000-00-00','51353',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 19:49:58','','0000-00-00 00:00:00'),(12003,0,0,'I',3418,'I003418',2526,2,'0000-00-00','51540',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 19:49:58','','0000-00-00 00:00:00'),(12004,0,0,'I',3418,'I003418',2526,3,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 19:49:58','','0000-00-00 00:00:00'),(12005,0,0,'I',3419,'I003419',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 19:54:39','','0000-00-00 00:00:00'),(12006,0,0,'I',3419,'I003419',2526,2,'0000-00-00','51225',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 19:54:39','','0000-00-00 00:00:00'),(12007,0,0,'I',3420,'I003420',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 19:57:45','','0000-00-00 00:00:00'),(12008,0,0,'I',3420,'I003420',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-22 19:57:45','','0000-00-00 00:00:00'),(12009,0,0,'I',3421,'I003421',2526,1,'0000-00-00','51545',0,0,'TAB','','','','',0,180,0,0,0,0,'1-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 20:09:47','drarchit','2025-12-22 20:10:45'),(12010,0,0,'I',3421,'I003421',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 20:10:24','drarchit','2025-12-22 20:10:45'),(12011,0,0,'I',3421,'I003421',2526,3,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 20:10:24','drarchit','2025-12-22 20:10:45'),(12012,0,0,'I',3421,'I003421',2526,4,'0000-00-00','51436',0,0,'TAB','','','','',0,30,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 20:10:24','drarchit','2025-12-22 20:10:45'),(12013,0,0,'I',3421,'I003421',2526,5,'0000-00-00','51353',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 20:10:45','','0000-00-00 00:00:00'),(12014,0,0,'I',3422,'I003422',2526,1,'0000-00-00','51213',0,0,'TAB','','','','',0,30,0,0,0,0,'0-1-0','','Dy',30,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-22 20:18:53','','0000-00-00 00:00:00'),(12015,0,0,'I',3422,'I003422',2526,2,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-22 20:18:53','','0000-00-00 00:00:00'),(12026,0,0,'I',3424,'I003424',2526,0,'0000-00-00','51290',0,0,'TAB','','','','INF',0,4,0,0,0,0,'1-0-1-0','','Dy',2,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(12027,0,0,'I',3424,'I003424',2526,0,'0000-00-00','51337',0,0,'TAB','','','','INF',0,5,0,0,0,0,'0-1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(12028,0,0,'I',3424,'I003424',2526,0,'0000-00-00','51445',0,0,'CAP','','','','INF',0,5,0,0,0,0,'1-0-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(12029,0,0,'I',3424,'I003424',2526,0,'0000-00-00','51545',0,0,'TAB','','','','INF',0,15,0,0,0,0,'1-1-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(12030,0,0,'I',3424,'I003424',2526,0,'0000-00-00','51480',0,0,'TAB','','','','INF',0,15,0,0,0,0,'1-1-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(12032,0,0,'I',3425,'I003425',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 10:59:42','darshan','2025-12-23 11:00:16'),(12033,0,0,'I',3426,'I003426',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 11:03:27','darshan','2025-12-23 11:03:55'),(12034,0,0,'I',3426,'I003426',2526,2,'0000-00-00','51189',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 11:03:55','','0000-00-00 00:00:00'),(12035,0,0,'I',3427,'I003427',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 11:09:33','','0000-00-00 00:00:00'),(12036,0,0,'I',3427,'I003427',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 11:09:33','','0000-00-00 00:00:00'),(12037,0,0,'I',3427,'I003427',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-23 11:09:33','','0000-00-00 00:00:00'),(12038,0,0,'I',3428,'I003428',2526,1,'0000-00-00','51349',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-23 11:13:55','drjayant','2025-12-23 11:15:11'),(12040,0,0,'I',3428,'I003428',2526,3,'0000-00-00','51607',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drjayant','2025-12-23 11:13:55','drjayant','2025-12-23 11:15:11'),(12041,0,0,'I',3428,'I003428',2526,2,'0000-00-00','51350',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-23 11:15:11','','0000-00-00 00:00:00'),(12042,0,0,'I',3429,'I003429',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 11:19:00','darshan','2025-12-23 11:19:15'),(12043,0,0,'I',3429,'I003429',2526,2,'0000-00-00','51203',0,0,'SYRUP','','','','',0,6,0,0,0,0,'1-0-0','','Wk',6,0,0,0,0,0,0,0,0,0,'309','','P',NULL,NULL,'darshan','2025-12-23 11:19:00','darshan','2025-12-23 11:19:15'),(12044,0,0,'I',3430,'I003430',2526,1,'0000-00-00','51241',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-23 11:21:25','','0000-00-00 00:00:00'),(12045,0,0,'I',3430,'I003430',2526,2,'0000-00-00','51213',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-23 11:21:25','','0000-00-00 00:00:00'),(12046,0,0,'I',3430,'I003430',2526,3,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 11:21:25','','0000-00-00 00:00:00'),(12047,0,0,'I',3430,'I003430',2526,4,'0000-00-00','51236',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 11:21:25','','0000-00-00 00:00:00'),(12048,0,0,'I',3431,'I003431',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 11:27:00','','0000-00-00 00:00:00'),(12049,0,0,'I',3431,'I003431',2526,2,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-23 11:27:00','','0000-00-00 00:00:00'),(12050,0,0,'I',3431,'I003431',2526,3,'0000-00-00','51340',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 11:27:00','','0000-00-00 00:00:00'),(12051,0,0,'I',3431,'I003431',2526,4,'0000-00-00','51308',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'16','','P',NULL,NULL,'drarchit','2025-12-23 11:27:00','','0000-00-00 00:00:00'),(12052,0,0,'I',3431,'I003431',2526,5,'0000-00-00','51343',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-23 11:27:00','','0000-00-00 00:00:00'),(12053,0,0,'I',3432,'I003432',2526,1,'0000-00-00','51569',0,0,'TAB','','','','',0,0,0,0,0,0,'0-0-1','','Dy',0,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drjayant','2025-12-23 11:30:10','drjayant','2025-12-23 11:33:25'),(12054,0,0,'I',3433,'I003433',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 11:32:11','','0000-00-00 00:00:00'),(12055,0,0,'I',3433,'I003433',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 11:32:11','','0000-00-00 00:00:00'),(12056,0,0,'I',3433,'I003433',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,20,0,0,0,0,'.5-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 11:32:11','','0000-00-00 00:00:00'),(12057,0,0,'I',3433,'I003433',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-23 11:32:11','','0000-00-00 00:00:00'),(12058,0,0,'I',3433,'I003433',2526,5,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',20,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-23 11:32:11','','0000-00-00 00:00:00'),(12059,0,0,'I',3434,'I003434',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 11:37:29','','0000-00-00 00:00:00'),(12060,0,0,'I',3434,'I003434',2526,2,'0000-00-00','51221',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-23 11:37:29','','0000-00-00 00:00:00'),(12061,0,0,'I',3434,'I003434',2526,3,'0000-00-00','51262',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 11:37:29','','0000-00-00 00:00:00'),(12062,0,0,'I',3435,'I003435',2526,1,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 11:37:42','darshan','2025-12-23 11:38:09'),(12063,0,0,'I',3435,'I003435',2526,2,'0000-00-00','51205',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-.5-.5','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 11:37:42','darshan','2025-12-23 11:38:09'),(12064,0,0,'I',3435,'I003435',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-23 11:37:42','darshan','2025-12-23 11:38:09'),(12065,0,0,'I',3435,'I003435',2526,4,'0000-00-00','51227',0,0,'SPRAY','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'387','','P',NULL,NULL,'darshan','2025-12-23 11:37:42','darshan','2025-12-23 11:38:09'),(12066,0,0,'I',3435,'I003435',2526,5,'0000-00-00','51322',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 11:38:09','','0000-00-00 00:00:00'),(12067,0,0,'I',3436,'I003436',2526,1,'0000-00-00','51354',0,0,'CAP','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 11:55:33','','0000-00-00 00:00:00'),(12068,0,0,'I',3437,'I003437',2526,1,'0000-00-00','51204',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 11:56:54','','0000-00-00 00:00:00'),(12069,0,0,'I',3437,'I003437',2526,2,'0000-00-00','51209',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 11:56:54','','0000-00-00 00:00:00'),(12070,0,0,'I',3437,'I003437',2526,3,'0000-00-00','51206',0,0,'DROP','','','','',0,1,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'383','','P',NULL,NULL,'darshan','2025-12-23 11:56:54','','0000-00-00 00:00:00'),(12071,0,0,'I',3437,'I003437',2526,4,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-23 11:56:54','','0000-00-00 00:00:00'),(12072,0,0,'I',3438,'I003438',2526,1,'0000-00-00','51298',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 11:57:55','drarchit','2025-12-23 11:58:19'),(12073,0,0,'I',3438,'I003438',2526,2,'0000-00-00','51629',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 11:57:55','drarchit','2025-12-23 11:58:19'),(12074,0,0,'I',3438,'I003438',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-23 11:57:55','drarchit','2025-12-23 11:58:19'),(12075,0,0,'I',3438,'I003438',2526,4,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 11:57:55','drarchit','2025-12-23 11:58:19'),(12076,0,0,'I',3438,'I003438',2526,5,'0000-00-00','51269',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 11:57:55','drarchit','2025-12-23 11:58:19'),(12078,0,0,'I',3438,'I003438',2526,6,'0000-00-00','51368',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 11:58:11','drarchit','2025-12-23 11:58:19'),(12079,0,0,'I',3439,'I003439',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 11:58:55','darshan','2025-12-23 11:59:21'),(12081,0,0,'I',3439,'I003439',2526,2,'0000-00-00','51189',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 11:59:21','','0000-00-00 00:00:00'),(12082,0,0,'I',3440,'I003440',2526,1,'0000-00-00','51218',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:00:15','drarchit','2025-12-23 12:00:18'),(12083,0,0,'I',3440,'I003440',2526,2,'0000-00-00','51629',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:00:15','drarchit','2025-12-23 12:00:18'),(12084,0,0,'I',3440,'I003440',2526,3,'0000-00-00','51221',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-23 12:00:15','drarchit','2025-12-23 12:00:18'),(12085,0,0,'I',3440,'I003440',2526,4,'0000-00-00','51327',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-23 12:00:15','drarchit','2025-12-23 12:00:18'),(12086,0,0,'I',3440,'I003440',2526,5,'0000-00-00','51304',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:00:15','drarchit','2025-12-23 12:00:18'),(12087,0,0,'I',3441,'I003441',2526,1,'0000-00-00','51299',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:03:29','drarchit','2025-12-23 12:03:33'),(12088,0,0,'I',3441,'I003441',2526,2,'0000-00-00','51362',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-23 12:03:29','drarchit','2025-12-23 12:03:33'),(12089,0,0,'I',3441,'I003441',2526,3,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:03:29','drarchit','2025-12-23 12:03:33'),(12090,0,0,'I',3441,'I003441',2526,4,'0000-00-00','51297',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:03:29','drarchit','2025-12-23 12:03:33'),(12092,0,0,'I',3442,'I003442',2526,1,'0000-00-00','51226',0,0,'TAB','','','','',0,8,0,0,0,0,'.5-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 12:11:48','darshan','2025-12-23 12:12:34'),(12094,0,0,'I',3442,'I003442',2526,2,'0000-00-00','51207',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 12:11:48','darshan','2025-12-23 12:12:34'),(12095,0,0,'I',3442,'I003442',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-23 12:11:48','darshan','2025-12-23 12:12:34'),(12097,0,0,'I',3442,'I003442',2526,4,'0000-00-00','51215',0,0,'TAB','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 12:12:34','','0000-00-00 00:00:00'),(12098,0,0,'I',3443,'I003443',2526,1,'0000-00-00','51235',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-23 12:14:21','','0000-00-00 00:00:00'),(12099,0,0,'I',3443,'I003443',2526,2,'0000-00-00','51222',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:14:21','','0000-00-00 00:00:00'),(12100,0,0,'I',3443,'I003443',2526,3,'0000-00-00','51406',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:14:21','','0000-00-00 00:00:00'),(12101,0,0,'I',3443,'I003443',2526,4,'0000-00-00','51312',0,0,'TAB','','','','',0,180,0,0,0,0,'0-1-1','','Dy',90,0,0,0,0,0,0,0,0,0,'353','','P',NULL,NULL,'drarchit','2025-12-23 12:14:21','','0000-00-00 00:00:00'),(12102,0,0,'I',3443,'I003443',2526,5,'0000-00-00','51239',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-23 12:14:21','','0000-00-00 00:00:00'),(12103,0,0,'I',3443,'I003443',2526,6,'0000-00-00','51238',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:14:21','','0000-00-00 00:00:00'),(12104,0,0,'I',3444,'I003444',2526,1,'0000-00-00','51192',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 12:16:59','','0000-00-00 00:00:00'),(12105,0,0,'I',3444,'I003444',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 12:16:59','','0000-00-00 00:00:00'),(12106,0,0,'I',3444,'I003444',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-23 12:16:59','','0000-00-00 00:00:00'),(12107,0,0,'I',3444,'I003444',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-23 12:16:59','','0000-00-00 00:00:00'),(12108,0,0,'I',3445,'I003445',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:25:45','','0000-00-00 00:00:00'),(12109,0,0,'I',3445,'I003445',2526,2,'0000-00-00','51273',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:25:45','','0000-00-00 00:00:00'),(12110,0,0,'I',3445,'I003445',2526,3,'0000-00-00','51477',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'drarchit','2025-12-23 12:25:45','','0000-00-00 00:00:00'),(12111,0,0,'I',3445,'I003445',2526,4,'0000-00-00','51354',0,0,'CAP','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:25:45','','0000-00-00 00:00:00'),(12112,0,0,'I',3446,'I003446',2526,1,'0000-00-00','51624',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-.5','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 12:37:16','darshan','2025-12-23 12:37:40'),(12113,0,0,'I',3446,'I003446',2526,2,'0000-00-00','51201',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-0','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 12:37:16','darshan','2025-12-23 12:37:40'),(12114,0,0,'I',3446,'I003446',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 12:37:16','darshan','2025-12-23 12:37:40'),(12115,0,0,'I',3446,'I003446',2526,4,'0000-00-00','51202',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 12:37:40','','0000-00-00 00:00:00'),(12116,0,0,'I',3446,'I003446',2526,5,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-23 12:37:40','','0000-00-00 00:00:00'),(12117,0,0,'I',3447,'I003447',2526,1,'0000-00-00','51555',0,0,'TAB','','','','',0,90,0,0,0,0,'0-1-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:40:34','drarchit','2025-12-23 12:42:22'),(12118,0,0,'I',3447,'I003447',2526,2,'0000-00-00','51235',0,0,'TAB','','','','',0,90,0,0,0,0,'0-0-1','','Dy',90,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-23 12:40:34','drarchit','2025-12-23 12:42:22'),(12119,0,0,'I',3447,'I003447',2526,3,'0000-00-00','51213',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-23 12:40:34','drarchit','2025-12-23 12:42:22'),(12120,0,0,'I',3447,'I003447',2526,4,'0000-00-00','51243',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-23 12:40:34','drarchit','2025-12-23 12:42:22'),(12121,0,0,'I',3447,'I003447',2526,5,'0000-00-00','51383',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:40:34','drarchit','2025-12-23 12:42:22'),(12122,0,0,'I',3447,'I003447',2526,6,'0000-00-00','51500',0,0,'SYRUP','','','','',0,1,0,0,0,0,'10-10-10','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:40:34','drarchit','2025-12-23 12:42:22'),(12123,0,0,'I',3447,'I003447',2526,7,'0000-00-00','51290',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:40:34','drarchit','2025-12-23 12:42:22'),(12124,0,0,'I',3447,'I003447',2526,8,'0000-00-00','51546',0,0,'LOTION','','','','',0,1,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'18','','P',NULL,NULL,'drarchit','2025-12-23 12:40:34','drarchit','2025-12-23 12:42:22'),(12125,0,0,'I',3447,'I003447',2526,9,'0000-00-00','51221',0,0,'CAP','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-23 12:40:34','drarchit','2025-12-23 12:42:22'),(12126,0,0,'I',3447,'I003447',2526,10,'0000-00-00','51584',0,0,'TAB','','','','',0,90,0,0,0,0,'1-0-0','','Dy',90,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:41:08','drarchit','2025-12-23 12:42:22'),(12127,0,0,'I',3448,'I003448',2526,1,'0000-00-00','51297',0,0,'TAB','','','','',0,5,0,0,0,0,'0-0-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:46:12','drarchit','2025-12-23 12:48:23'),(12128,0,0,'I',3448,'I003448',2526,2,'0000-00-00','51362',0,0,'CAP','','','','',0,5,0,0,0,0,'1-0-0','','Dy',5,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-23 12:46:24','drarchit','2025-12-23 12:48:23'),(12130,0,0,'I',3448,'I003448',2526,3,'0000-00-00','51655',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:47:58','drarchit','2025-12-23 12:48:23'),(12131,0,0,'I',3448,'I003448',2526,4,'0000-00-00','51195',0,0,'TAB','','','','',0,9,0,0,0,0,'1-1-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 12:48:23','','0000-00-00 00:00:00'),(12132,0,0,'I',3449,'I003449',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,40,0,0,0,0,'.5-0-.5','','Dy',40,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 12:49:02','darshan','2025-12-23 12:50:00'),(12135,0,0,'I',3449,'I003449',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 12:49:23','darshan','2025-12-23 12:50:00'),(12136,0,0,'I',3449,'I003449',2526,3,'0000-00-00','51233',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'9','','P',NULL,NULL,'darshan','2025-12-23 12:50:00','','0000-00-00 00:00:00'),(12137,0,0,'I',3450,'I003450',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 12:51:56','darshan','2025-12-23 12:52:14'),(12138,0,0,'I',3450,'I003450',2526,2,'0000-00-00','51189',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 12:52:14','','0000-00-00 00:00:00'),(12139,0,0,'I',3451,'I003451',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 12:55:48','darshan','2025-12-23 12:55:55'),(12140,0,0,'I',3451,'I003451',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,20,0,0,0,0,'0-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 12:55:48','darshan','2025-12-23 12:55:55'),(12141,0,0,'I',3451,'I003451',2526,3,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-23 12:55:48','darshan','2025-12-23 12:55:55'),(12142,0,0,'I',3451,'I003451',2526,4,'0000-00-00','51210',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 12:55:55','','0000-00-00 00:00:00'),(12143,0,0,'I',3452,'I003452',2526,1,'0000-00-00','51248',0,0,'CAP','','','','',0,8,0,0,0,0,'1-0-0','','Wk',8,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 13:09:50','','0000-00-00 00:00:00'),(12144,0,0,'I',3452,'I003452',2526,2,'0000-00-00','51412',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 13:09:50','','0000-00-00 00:00:00'),(12145,0,0,'I',3452,'I003452',2526,3,'0000-00-00','51304',0,0,'TAB','','','','',0,14,0,0,0,0,'1-0-1','','Dy',7,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 13:09:50','','0000-00-00 00:00:00'),(12146,0,0,'I',3452,'I003452',2526,4,'0000-00-00','51219',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'386','','P',NULL,NULL,'drarchit','2025-12-23 13:09:50','','0000-00-00 00:00:00'),(12147,0,0,'I',3452,'I003452',2526,5,'0000-00-00','51239',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'17','','P',NULL,NULL,'drarchit','2025-12-23 13:09:50','','0000-00-00 00:00:00'),(12148,0,0,'I',3453,'I003453',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 13:10:29','','0000-00-00 00:00:00'),(12149,0,0,'I',3453,'I003453',2526,2,'0000-00-00','51225',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',30,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-23 13:10:29','','0000-00-00 00:00:00'),(12150,0,0,'I',3453,'I003453',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 13:10:29','','0000-00-00 00:00:00'),(12151,0,0,'I',3453,'I003453',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-23 13:10:29','','0000-00-00 00:00:00'),(12152,0,0,'I',3454,'I003454',2526,1,'0000-00-00','51469',0,0,'TAB','','','','',0,5,0,0,0,0,'0-1-0','','Dy',5,0,0,0,0,0,0,0,0,0,'392','','P',NULL,NULL,'drarchit','2025-12-23 13:13:16','drarchit','2025-12-23 13:15:33'),(12153,0,0,'I',3454,'I003454',2526,2,'0000-00-00','51374',0,0,'CAP','','','','',0,7,0,0,0,0,'1-0-0','','Dy',7,0,0,0,0,0,0,0,0,0,'388','','P',NULL,NULL,'drarchit','2025-12-23 13:13:16','drarchit','2025-12-23 13:15:33'),(12155,0,0,'I',3454,'I003454',2526,3,'0000-00-00','51251',0,0,'SYRUP','','','','',0,1,0,0,0,0,'','','Dy',5,0,0,0,0,0,0,0,0,0,'286','','P',NULL,NULL,'drarchit','2025-12-23 13:15:33','','0000-00-00 00:00:00'),(12156,0,0,'I',3454,'I003454',2526,4,'0000-00-00','51298',0,0,'TAB','','','','',0,6,0,0,0,0,'1-0-1','','Dy',3,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 13:15:33','','0000-00-00 00:00:00'),(12157,0,0,'I',3454,'I003454',2526,5,'0000-00-00','51246',0,0,'TAB','','','','',0,15,0,0,0,0,'1-1-1','','Dy',5,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'drarchit','2025-12-23 13:15:33','','0000-00-00 00:00:00'),(12158,0,0,'I',3455,'I003455',2526,1,'0000-00-00','51201',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 13:23:43','','0000-00-00 00:00:00'),(12159,0,0,'I',3455,'I003455',2526,2,'0000-00-00','51334',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 13:23:43','','0000-00-00 00:00:00'),(12160,0,0,'I',3455,'I003455',2526,3,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-23 13:23:43','','0000-00-00 00:00:00'),(12161,0,0,'I',3455,'I003455',2526,4,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 13:23:43','','0000-00-00 00:00:00'),(12162,0,0,'I',3456,'I003456',2526,1,'0000-00-00','51212',0,0,'TAB','','','','',0,12,0,0,0,6,'1-1-1','','Dy',6,0,0,0,0,0,0,0,0,0,'385','','P',NULL,NULL,'darshan','2025-12-23 13:31:28','darshan','2025-12-23 13:32:07'),(12163,0,0,'I',3456,'I003456',2526,2,'0000-00-00','51208',0,0,'TAB','','','','',0,10,0,0,0,0,'0-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 13:31:43','darshan','2025-12-23 13:32:07'),(12164,0,0,'I',3456,'I003456',2526,3,'0000-00-00','51191',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'168','','P',NULL,NULL,'darshan','2025-12-23 13:31:43','darshan','2025-12-23 13:32:07'),(12165,0,0,'I',3456,'I003456',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',10,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-23 13:32:07','','0000-00-00 00:00:00'),(12166,0,0,'I',3456,'I003456',2526,5,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 13:32:07','','0000-00-00 00:00:00'),(12167,0,0,'I',3457,'I003457',2526,1,'0000-00-00','51333',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-0','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 13:48:06','','0000-00-00 00:00:00'),(12168,0,0,'I',3457,'I003457',2526,2,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 13:48:06','','0000-00-00 00:00:00'),(12169,0,0,'I',3457,'I003457',2526,3,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 13:48:06','','0000-00-00 00:00:00'),(12170,0,0,'I',3457,'I003457',2526,4,'0000-00-00','51187',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'381','','P',NULL,NULL,'darshan','2025-12-23 13:48:06','','0000-00-00 00:00:00'),(12171,0,0,'I',3457,'I003457',2526,5,'0000-00-00','51195',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-23 13:48:06','','0000-00-00 00:00:00'),(12172,0,0,'I',3458,'I003458',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 13:56:15','','0000-00-00 00:00:00'),(12173,0,0,'I',3458,'I003458',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,10,0,0,0,0,'1-0-0','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 13:56:15','','0000-00-00 00:00:00'),(12174,0,0,'I',3459,'I003459',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-1','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 14:02:56','darshan','2025-12-23 14:02:59'),(12175,0,0,'I',3459,'I003459',2526,2,'0000-00-00','51183',0,0,'TAB','','','','',0,10,0,0,0,0,'.5-0-.5','','Dy',10,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 14:02:56','darshan','2025-12-23 14:02:59'),(12176,0,0,'I',3460,'I003460',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,75,0,0,0,0,'1-0-0','','Dy',75,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 14:13:01','','0000-00-00 00:00:00'),(12177,0,0,'I',3460,'I003460',2526,2,'0000-00-00','51189',0,0,'TAB','','','','',0,60,0,0,0,0,'0-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 14:13:01','','0000-00-00 00:00:00'),(12178,0,0,'I',3461,'I003461',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-.5','','Dy',30,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 14:16:20','darshan','2025-12-23 14:16:46'),(12179,0,0,'I',3461,'I003461',2526,2,'0000-00-00','51333',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 14:16:20','darshan','2025-12-23 14:16:46'),(12180,0,0,'I',3461,'I003461',2526,3,'0000-00-00','51193',0,0,'TAB','','','','',0,15,0,0,0,0,'0-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 14:16:20','darshan','2025-12-23 14:16:46'),(12181,0,0,'I',3461,'I003461',2526,4,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-23 14:16:46','','0000-00-00 00:00:00'),(12182,0,0,'I',3462,'I003462',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,30,0,0,0,0,'1-0-1','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 14:38:18','','0000-00-00 00:00:00'),(12183,0,0,'I',3462,'I003462',2526,2,'0000-00-00','51265',0,0,'CAP','','','','',0,15,0,0,0,0,'1-0-0','','Dy',15,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 14:38:18','','0000-00-00 00:00:00'),(12184,0,0,'I',3463,'I003463',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 14:44:18','','0000-00-00 00:00:00'),(12185,0,0,'I',3463,'I003463',2526,2,'0000-00-00','51186',0,0,'TAB','','','','',0,60,0,0,0,0,'1-1-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 14:44:18','','0000-00-00 00:00:00'),(12186,0,0,'I',3464,'I003464',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-0','','Dy',120,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 14:52:02','','0000-00-00 00:00:00'),(12187,0,0,'I',3464,'I003464',2526,2,'0000-00-00','51196',0,0,'TAB','','','','',0,10,0,0,0,0,'','','Dy',30,0,0,0,0,0,0,0,0,0,'380','','P',NULL,NULL,'darshan','2025-12-23 14:52:02','','0000-00-00 00:00:00'),(12188,0,0,'I',3465,'I003465',2526,1,'0000-00-00','51188',0,0,'TAB','','','','',0,120,0,0,0,0,'1-0-1','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 17:23:37','darshan','2025-12-23 17:24:12'),(12191,0,0,'I',3466,'I003466',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,60,0,0,0,0,'.5-0-.5','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 17:27:08','','0000-00-00 00:00:00'),(12192,0,0,'I',3467,'I003467',2526,1,'0000-00-00','51183',0,0,'TAB','','','','',0,30,0,0,0,0,'.5-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 17:31:07','darshan','2025-12-23 17:31:33'),(12193,0,0,'I',3467,'I003467',2526,2,'0000-00-00','51188',0,0,'TAB','','','','',0,60,0,0,0,0,'1-0-0','','Dy',60,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 17:31:07','darshan','2025-12-23 17:31:33'),(12195,0,0,'I',3467,'I003467',2526,3,'0000-00-00','51287',0,0,'TAB','','','','',0,10,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'384','','P',NULL,NULL,'darshan','2025-12-23 17:31:33','','0000-00-00 00:00:00'),(12196,0,0,'I',3468,'I003468',2526,1,'0000-00-00','51185',0,0,'TAB','','','','',0,20,0,0,0,0,'1-0-0','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 17:43:08','darshan','2025-12-23 17:46:17'),(12198,0,0,'I',3468,'I003468',2526,2,'0000-00-00','51197',0,0,'TAB','','','','',0,40,0,0,0,0,'1-0-1','','Dy',20,0,0,0,0,0,0,0,0,0,'7','','P',NULL,NULL,'darshan','2025-12-23 17:43:08','darshan','2025-12-23 17:46:17');
/*!40000 ALTER TABLE `medicine_transaction` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `medicine_transaction_header`
--

DROP TABLE IF EXISTS `medicine_transaction_header`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `medicine_transaction_header` (
  `index` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `trn_type` varchar(4) NOT NULL,
  `trn_year` int(11) NOT NULL,
  `trn_id` int(11) NOT NULL,
  `trn_no` varchar(10) NOT NULL,
  `trn_date` date NOT NULL,
  `visit_id` int(11) NOT NULL,
  `room_id` varchar(6) NOT NULL,
  `bill_no` varchar(10) NOT NULL,
  `bill_date` date NOT NULL,
  `party_cd` varchar(5) NOT NULL,
  `div_cd` varchar(4) NOT NULL,
  `total` int(11) NOT NULL,
  `credit` int(11) NOT NULL,
  `adjustment` int(11) NOT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `opd_reg_id` bigint(20) NOT NULL,
  `remark` varchar(50) NOT NULL,
  `receipt_no` varchar(20) NOT NULL,
  `symptoms` varchar(500) NOT NULL,
  `diagnosis` varchar(500) NOT NULL,
  `issue_med` varchar(1) NOT NULL,
  `is_printed` enum('N','Y') NOT NULL DEFAULT 'N',
  `user_id` varchar(20) NOT NULL,
  `CreatedBy` varchar(15) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(15) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`index`),
  UNIQUE KEY `trn_type` (`trn_type`,`trn_year`,`trn_id`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`trn_type`,`trn_year`,`trn_id`),
  KEY `trn_no` (`trn_no`),
  KEY `trn_type_2` (`trn_type`),
  KEY `visit_id` (`visit_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3469 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `medicine_transaction_header`
--

LOCK TABLES `medicine_transaction_header` WRITE;
/*!40000 ALTER TABLE `medicine_transaction_header` DISABLE KEYS */;
INSERT INTO `medicine_transaction_header` VALUES (1,0,0,'I',2526,1,'I000001','2025-10-08',13,'','','0000-00-00','','',0,0,0,0,13,'','165','','','','N','darshan','darshan','2025-10-08 10:57:47','','0000-00-00 00:00:00'),(2,0,0,'I',2526,2,'I000002','2025-10-08',4,'','','0000-00-00','','',0,0,0,0,4,'','165','','','','N','drjayant','drjayant','2025-10-08 11:18:24','','0000-00-00 00:00:00'),(3,0,0,'I',2526,3,'I000003','2025-10-08',10,'','','0000-00-00','','',0,0,0,0,10,'','165','','','','N','darshan','darshan','2025-10-08 11:29:21','','0000-00-00 00:00:00'),(4,0,0,'I',2526,4,'I000004','0000-00-00',37,'','','0000-00-00','','',0,0,0,0,0,'','165','','','','N','mo','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(5,0,0,'I',2526,5,'I000005','2025-10-08',35,'','','0000-00-00','','',0,0,0,0,32,'','165','','','','N','drarchit','drarchit','2025-10-08 11:52:56','','0000-00-00 00:00:00'),(6,0,0,'I',2526,6,'I000006','2025-10-08',9,'','','0000-00-00','','',0,0,0,0,9,'','165','','','','N','drjayant','drjayant','2025-10-08 12:56:35','','0000-00-00 00:00:00'),(7,0,0,'I',2526,7,'I000007','2025-10-08',120,'','','0000-00-00','','',0,0,0,0,109,'','165','','','','N','drjayant','drjayant','2025-10-08 18:14:55','','0000-00-00 00:00:00'),(8,0,0,'I',2526,8,'I000008','2025-10-08',118,'','','0000-00-00','','',0,0,0,0,107,'','165','','','','N','drarchit','drarchit','2025-10-08 18:33:18','','0000-00-00 00:00:00'),(9,0,0,'I',2526,9,'I000009','2025-10-09',166,'','','0000-00-00','','',0,0,0,0,151,'','165','','','','N','darshan','darshan','2025-10-09 10:46:02','','0000-00-00 00:00:00'),(10,0,0,'I',2526,10,'I000010','2025-10-09',163,'','','0000-00-00','','',0,0,0,0,150,'','165','','','','N','drarchit','drarchit','2025-10-09 10:58:41','','0000-00-00 00:00:00'),(11,0,0,'I',2526,11,'I000011','0000-00-00',34,'','','0000-00-00','','',0,0,0,0,0,'','165','','','','N','mo','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(12,0,0,'I',2526,12,'I000012','0000-00-00',34,'','','0000-00-00','','',0,0,0,0,0,'','165','','','','N','mo','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(13,0,0,'I',2526,13,'I000013','2025-10-09',219,'','','0000-00-00','','',0,0,0,0,201,'','165','','','','N','darshan','darshan','2025-10-09 14:23:31','','0000-00-00 00:00:00'),(14,0,0,'I',2526,14,'I000014','2025-10-09',275,'','','0000-00-00','','',0,0,0,0,250,'','165','','','','N','darshan','darshan','2025-10-09 20:35:13','','0000-00-00 00:00:00'),(15,0,0,'I',2526,15,'I000015','2025-10-10',28,'','','0000-00-00','','',0,0,0,0,0,'','165','','','','N','mo','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(16,0,0,'I',2526,16,'I000016','2025-10-10',288,'','','0000-00-00','','',0,0,0,0,261,'','165','','','','N','drarchit','drarchit','2025-10-10 11:25:42','','0000-00-00 00:00:00'),(17,0,0,'I',2526,17,'I000017','2025-10-10',285,'','','0000-00-00','','',0,0,0,0,258,'','165','','','','N','thims','thims','2025-10-10 11:25:51','','0000-00-00 00:00:00'),(18,0,0,'I',2526,18,'I000018','2025-10-10',294,'','','0000-00-00','','',0,0,0,0,263,'','165','','','','N','darshan','darshan','2025-10-10 11:27:48','','0000-00-00 00:00:00'),(19,0,0,'I',2526,19,'I000019','2025-10-10',326,'','','0000-00-00','','',0,0,0,0,294,'','165','','','','N','darshan','darshan','2025-10-10 12:59:37','','0000-00-00 00:00:00'),(20,0,0,'I',2526,20,'I000020','2025-10-10',338,'','','0000-00-00','','',0,0,0,0,306,'','165','','','','N','drjayant','drjayant','2025-10-10 13:08:41','','0000-00-00 00:00:00'),(21,0,0,'I',2526,21,'I000021','2025-10-10',332,'','','0000-00-00','','',0,0,0,0,300,'','165','','','','N','darshan','darshan','2025-10-10 13:15:50','','0000-00-00 00:00:00'),(22,0,0,'I',2526,22,'I000022','2025-10-10',341,'','','0000-00-00','','',0,0,0,0,309,'','165','','','','N','darshan','darshan','2025-10-10 14:18:05','','0000-00-00 00:00:00'),(23,0,0,'I',2526,23,'I000023','2025-10-10',352,'','','0000-00-00','','',0,0,0,0,319,'','165','','','','N','darshan','darshan','2025-10-10 17:32:48','','0000-00-00 00:00:00'),(24,0,0,'I',2526,24,'I000024','2025-10-10',363,'','','0000-00-00','','',0,0,0,0,330,'','165','','','','N','darshan','darshan','2025-10-10 17:58:03','','0000-00-00 00:00:00'),(25,0,0,'I',2526,25,'I000025','2025-10-10',377,'','','0000-00-00','','',0,0,0,0,344,'','165','','','','N','darshan','darshan','2025-10-10 18:36:13','','0000-00-00 00:00:00'),(26,0,0,'I',2526,26,'I000026','2025-10-10',383,'','','0000-00-00','','',0,0,0,0,349,'','165','','','','N','darshan','darshan','2025-10-10 19:10:35','','0000-00-00 00:00:00'),(27,0,0,'I',2526,27,'I000027','2025-10-11',421,'','','0000-00-00','','',0,0,0,0,376,'','165','','','','N','darshan','darshan','2025-10-11 09:54:09','','0000-00-00 00:00:00'),(28,0,0,'I',2526,28,'I000028','2025-10-11',424,'','','0000-00-00','','',0,0,0,0,378,'','165','','','','N','darshan','darshan','2025-10-11 10:04:38','','0000-00-00 00:00:00'),(29,0,0,'I',2526,29,'I000029','2025-10-11',429,'','','0000-00-00','','',0,0,0,0,381,'','165','','','','N','darshan','darshan','2025-10-11 10:24:42','','0000-00-00 00:00:00'),(30,0,0,'I',2526,30,'I000030','2025-10-11',433,'','','0000-00-00','','',0,0,0,0,384,'','165','','','','N','darshan','darshan','2025-10-11 10:29:28','','0000-00-00 00:00:00'),(31,0,0,'I',2526,31,'I000031','2025-10-11',438,'','','0000-00-00','','',0,0,0,0,388,'','165','','','','N','darshan','darshan','2025-10-11 10:45:38','','0000-00-00 00:00:00'),(32,0,0,'I',2526,32,'I000032','2025-10-11',440,'','','0000-00-00','','',0,0,0,0,390,'','165','','','','N','darshan','darshan','2025-10-11 10:55:35','','0000-00-00 00:00:00'),(33,0,0,'I',2526,33,'I000033','2025-10-11',441,'','','0000-00-00','','',0,0,0,0,391,'','165','','','','N','darshan','darshan','2025-10-11 11:04:34','','0000-00-00 00:00:00'),(34,0,0,'I',2526,34,'I000034','2025-10-11',443,'','','0000-00-00','','',0,0,0,0,393,'','165','','','','N','darshan','darshan','2025-10-11 11:07:36','','0000-00-00 00:00:00'),(35,0,0,'I',2526,35,'I000035','2025-10-11',447,'','','0000-00-00','','',0,0,0,0,131,'','165','','','','N','drjayant','drjayant','2025-10-11 11:22:53','','0000-00-00 00:00:00'),(36,0,0,'I',2526,36,'I000036','2025-10-11',445,'','','0000-00-00','','',0,0,0,0,395,'','165','','','','N','darshan','darshan','2025-10-11 11:33:41','','0000-00-00 00:00:00'),(37,0,0,'I',2526,37,'I000037','2025-10-11',448,'','','0000-00-00','','',0,0,0,0,397,'','165','','','','N','darshan','darshan','2025-10-11 11:40:58','','0000-00-00 00:00:00'),(38,0,0,'I',2526,38,'I000038','2025-10-11',457,'','','0000-00-00','','',0,0,0,0,242,'','165','','','','N','drjayant','drjayant','2025-10-11 11:43:40','','0000-00-00 00:00:00'),(39,0,0,'I',2526,39,'I000039','2025-10-11',425,'','','0000-00-00','','',0,0,0,0,379,'','165','','','','N','darshan','darshan','2025-10-11 11:51:23','','0000-00-00 00:00:00'),(40,0,0,'I',2526,40,'I000040','2025-10-11',437,'','','0000-00-00','','',0,0,0,0,387,'','165','','','','N','darshan','darshan','2025-10-11 12:04:01','','0000-00-00 00:00:00'),(41,0,0,'I',2526,41,'I000041','2025-10-11',444,'','','0000-00-00','','',0,0,0,0,394,'','165','','','','N','darshan','darshan','2025-10-11 12:22:54','','0000-00-00 00:00:00'),(42,0,0,'I',2526,42,'I000042','2025-10-11',469,'','','0000-00-00','','',0,0,0,0,416,'','165','','','','N','darshan','darshan','2025-10-11 12:25:42','','0000-00-00 00:00:00'),(43,0,0,'I',2526,43,'I000043','2025-10-11',471,'','','0000-00-00','','',0,0,0,0,417,'','165','','','','N','darshan','darshan','2025-10-11 12:30:19','','0000-00-00 00:00:00'),(44,0,0,'I',2526,44,'I000044','2025-10-11',453,'','','0000-00-00','','',0,0,0,0,402,'','165','','','','N','darshan','darshan','2025-10-11 12:36:42','','0000-00-00 00:00:00'),(45,0,0,'I',2526,45,'I000045','2025-10-11',452,'','','0000-00-00','','',0,0,0,0,401,'','165','','','','N','darshan','darshan','2025-10-11 12:41:06','','0000-00-00 00:00:00'),(46,0,0,'I',2526,46,'I000046','2025-10-11',478,'','','0000-00-00','','',0,0,0,0,421,'','165','','','','N','darshan','darshan','2025-10-11 12:45:50','','0000-00-00 00:00:00'),(47,0,0,'I',2526,47,'I000047','2025-10-11',455,'','','0000-00-00','','',0,0,0,0,404,'','165','','','','N','darshan','darshan','2025-10-11 12:54:25','','0000-00-00 00:00:00'),(48,0,0,'I',2526,48,'I000048','2025-10-11',481,'','','0000-00-00','','',0,0,0,0,424,'','165','','','','N','darshan','darshan','2025-10-11 12:58:52','','0000-00-00 00:00:00'),(49,0,0,'I',2526,49,'I000049','2025-10-11',422,'','','0000-00-00','','',0,0,0,0,0,'','165','','','','N','mo','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(50,0,0,'I',2526,50,'I000050','2025-10-13',511,'','','0000-00-00','','',0,0,0,0,442,'','165','','','','N','drarchit','drarchit','2025-10-13 10:48:13','','0000-00-00 00:00:00'),(51,0,0,'I',2526,51,'I000051','2025-10-13',522,'','','0000-00-00','','',0,0,0,0,450,'','165','','','','N','darshan','darshan','2025-10-13 10:50:18','','0000-00-00 00:00:00'),(52,0,0,'I',2526,52,'I000052','2025-10-13',531,'','','0000-00-00','','',0,0,0,0,458,'','165','','','','N','darshan','darshan','2025-10-13 10:58:23','','0000-00-00 00:00:00'),(53,0,0,'I',2526,53,'I000053','2025-10-13',538,'','','0000-00-00','','',0,0,0,0,465,'','165','','','','N','darshan','darshan','2025-10-13 11:02:34','','0000-00-00 00:00:00'),(54,0,0,'I',2526,54,'I000054','2025-10-13',549,'','','0000-00-00','','',0,0,0,0,474,'','165','','','','N','drarchit','drarchit','2025-10-13 11:08:52','','0000-00-00 00:00:00'),(55,0,0,'I',2526,55,'I000055','2025-10-13',526,'','','0000-00-00','','',0,0,0,0,454,'','165','','','','N','darshan','darshan','2025-10-13 11:24:39','','0000-00-00 00:00:00'),(56,0,0,'I',2526,56,'I000056','2025-10-13',517,'','','0000-00-00','','',0,0,0,0,447,'','165','','','','N','darshan','darshan','2025-10-13 11:37:39','','0000-00-00 00:00:00'),(57,0,0,'I',2526,57,'I000057','2025-10-13',530,'','','0000-00-00','','',0,0,0,0,457,'','165','','','','N','darshan','darshan','2025-10-13 11:45:22','','0000-00-00 00:00:00'),(58,0,0,'I',2526,58,'I000058','2025-10-13',583,'','','0000-00-00','','',0,0,0,0,505,'','165','','','','N','drjayant','drjayant','2025-10-13 12:18:36','','0000-00-00 00:00:00'),(59,0,0,'I',2526,59,'I000059','2025-10-13',528,'','','0000-00-00','','',0,0,0,0,455,'','165','','','','N','darshan','darshan','2025-10-13 12:25:23','','0000-00-00 00:00:00'),(60,0,0,'I',2526,60,'I000060','2025-10-13',529,'','','0000-00-00','','',0,0,0,0,456,'','165','','','','N','darshan','darshan','2025-10-13 12:37:03','','0000-00-00 00:00:00'),(61,0,0,'I',2526,61,'I000061','2025-10-13',532,'','','0000-00-00','','',0,0,0,0,459,'','165','','','','N','darshan','darshan','2025-10-13 12:39:25','','0000-00-00 00:00:00'),(62,0,0,'I',2526,62,'I000062','2025-10-13',535,'','','0000-00-00','','',0,0,0,0,462,'','165','','','','N','darshan','darshan','2025-10-13 12:45:07','','0000-00-00 00:00:00'),(63,0,0,'I',2526,63,'I000063','2025-10-13',514,'','','0000-00-00','','',0,0,0,0,445,'','165','','','','N','darshan','darshan','2025-10-13 12:53:16','','0000-00-00 00:00:00'),(64,0,0,'I',2526,64,'I000064','2025-10-13',533,'','','0000-00-00','','',0,0,0,0,460,'','165','','','','N','darshan','darshan','2025-10-13 12:57:58','','0000-00-00 00:00:00'),(65,0,0,'I',2526,65,'I000065','2025-10-13',515,'','','0000-00-00','','',0,0,0,0,446,'','165','','','','N','darshan','darshan','2025-10-13 13:11:20','','0000-00-00 00:00:00'),(66,0,0,'I',2526,66,'I000066','2025-10-13',573,'','','0000-00-00','','',0,0,0,0,496,'','165','','','','N','darshan','darshan','2025-10-13 13:17:29','','0000-00-00 00:00:00'),(67,0,0,'I',2526,67,'I000067','2025-10-13',565,'','','0000-00-00','','',0,0,0,0,488,'','165','','','','N','darshan','darshan','2025-10-13 13:20:19','','0000-00-00 00:00:00'),(68,0,0,'I',2526,68,'I000068','2025-10-13',550,'','','0000-00-00','','',0,0,0,0,475,'','165','','','','N','darshan','darshan','2025-10-13 13:22:56','','0000-00-00 00:00:00'),(69,0,0,'I',2526,69,'I000069','2025-10-13',540,'','','0000-00-00','','',0,0,0,0,467,'','165','','','','N','darshan','darshan','2025-10-13 13:25:44','','0000-00-00 00:00:00'),(70,0,0,'I',2526,70,'I000070','2025-10-13',578,'','','0000-00-00','','',0,0,0,0,500,'','165','','','','N','darshan','darshan','2025-10-13 13:28:18','','0000-00-00 00:00:00'),(71,0,0,'I',2526,71,'I000071','2025-10-13',587,'','','0000-00-00','','',0,0,0,0,509,'','165','','','','N','darshan','darshan','2025-10-13 13:43:45','','0000-00-00 00:00:00'),(72,0,0,'I',2526,72,'I000072','2025-10-13',572,'','','0000-00-00','','',0,0,0,0,495,'','165','','','','N','drarchit','drarchit','2025-10-13 13:44:51','','0000-00-00 00:00:00'),(73,0,0,'I',2526,73,'I000073','2025-10-13',547,'','','0000-00-00','','',0,0,0,0,473,'','165','','','','N','darshan','darshan','2025-10-13 14:03:39','','0000-00-00 00:00:00'),(74,0,0,'I',2526,74,'I000074','2025-10-13',544,'','','0000-00-00','','',0,0,0,0,470,'','165','','','','N','darshan','darshan','2025-10-13 14:07:35','','0000-00-00 00:00:00'),(75,0,0,'I',2526,75,'I000075','2025-10-13',545,'','','0000-00-00','','',0,0,0,0,471,'','165','','','','N','darshan','darshan','2025-10-13 14:10:55','','0000-00-00 00:00:00'),(76,0,0,'I',2526,76,'I000076','2025-10-13',594,'','','0000-00-00','','',0,0,0,0,516,'','165','','','','N','darshan','darshan','2025-10-13 14:14:29','','0000-00-00 00:00:00'),(77,0,0,'I',2526,77,'I000077','2025-10-13',539,'','','0000-00-00','','',0,0,0,0,466,'','165','','','','N','darshan','darshan','2025-10-13 14:17:55','','0000-00-00 00:00:00'),(78,0,0,'I',2526,78,'I000078','2025-10-13',552,'','','0000-00-00','','',0,0,0,0,477,'','165','','','','N','darshan','darshan','2025-10-13 14:20:55','','0000-00-00 00:00:00'),(79,0,0,'I',2526,79,'I000079','2025-10-13',584,'','','0000-00-00','','',0,0,0,0,506,'','165','','','','N','darshan','darshan','2025-10-13 14:23:10','','0000-00-00 00:00:00'),(80,0,0,'I',2526,80,'I000080','2025-10-13',534,'','','0000-00-00','','',0,0,0,0,461,'','165','','','','N','darshan','darshan','2025-10-13 14:29:09','','0000-00-00 00:00:00'),(81,0,0,'I',2526,81,'I000081','2025-10-13',588,'','','0000-00-00','','',0,0,0,0,510,'','165','','','','N','darshan','darshan','2025-10-13 14:33:44','','0000-00-00 00:00:00'),(82,0,0,'I',2526,82,'I000082','2025-10-13',521,'','','0000-00-00','','',0,0,0,0,449,'','165','','','','N','darshan','darshan','2025-10-13 14:41:39','','0000-00-00 00:00:00'),(83,0,0,'I',2526,83,'I000083','2025-10-13',596,'','','0000-00-00','','',0,0,0,0,518,'','165','','','','N','darshan','darshan','2025-10-13 14:47:38','','0000-00-00 00:00:00'),(84,0,0,'I',2526,84,'I000084','2025-10-13',543,'','','0000-00-00','','',0,0,0,0,469,'','165','','','','N','darshan','darshan','2025-10-13 14:52:56','','0000-00-00 00:00:00'),(85,0,0,'I',2526,85,'I000085','2025-10-13',525,'','','0000-00-00','','',0,0,0,0,453,'','165','','','','N','darshan','darshan','2025-10-13 15:02:57','','0000-00-00 00:00:00'),(86,0,0,'I',2526,86,'I000086','2025-10-13',585,'','','0000-00-00','','',0,0,0,0,507,'','165','','','','N','darshan','darshan','2025-10-13 15:13:35','','0000-00-00 00:00:00'),(87,0,0,'I',2526,87,'I000087','2025-10-13',546,'','','0000-00-00','','',0,0,0,0,472,'','165','','','','N','darshan','darshan','2025-10-13 15:20:14','','0000-00-00 00:00:00'),(88,0,0,'I',2526,88,'I000088','2025-10-13',591,'','','0000-00-00','','',0,0,0,0,513,'','165','','','','N','darshan','darshan','2025-10-13 15:25:11','','0000-00-00 00:00:00'),(89,0,0,'I',2526,89,'I000089','2025-10-13',589,'','','0000-00-00','','',0,0,0,0,511,'','165','','','','N','darshan','darshan','2025-10-13 15:46:00','','0000-00-00 00:00:00'),(90,0,0,'I',2526,90,'I000090','2025-10-13',603,'','','0000-00-00','','',0,0,0,0,523,'','165','','','','N','darshan','darshan','2025-10-13 17:19:09','','0000-00-00 00:00:00'),(91,0,0,'I',2526,91,'I000091','2025-10-13',602,'','','0000-00-00','','',0,0,0,0,522,'','165','','','','N','darshan','darshan','2025-10-13 17:27:07','','0000-00-00 00:00:00'),(92,0,0,'I',2526,92,'I000092','2025-10-13',604,'','','0000-00-00','','',0,0,0,0,524,'','165','','','','N','darshan','darshan','2025-10-13 17:35:30','','0000-00-00 00:00:00'),(93,0,0,'I',2526,93,'I000093','2025-10-13',611,'','','0000-00-00','','',0,0,0,0,530,'','165','','','','N','darshan','darshan','2025-10-13 17:51:42','','0000-00-00 00:00:00'),(94,0,0,'I',2526,94,'I000094','2025-10-13',612,'','','0000-00-00','','',0,0,0,0,531,'','165','','','','N','darshan','darshan','2025-10-13 17:55:13','','0000-00-00 00:00:00'),(95,0,0,'I',2526,95,'I000095','2025-10-13',381,'','','0000-00-00','','',0,0,0,0,347,'','165','','','','N','darshan','darshan','2025-10-13 18:02:54','','0000-00-00 00:00:00'),(96,0,0,'I',2526,96,'I000096','2025-10-13',613,'','','0000-00-00','','',0,0,0,0,100,'','165','','','','N','drjayant','drjayant','2025-10-13 18:06:44','','0000-00-00 00:00:00'),(97,0,0,'I',2526,97,'I000097','2025-10-13',607,'','','0000-00-00','','',0,0,0,0,526,'','165','','','','N','darshan','darshan','2025-10-13 18:07:23','','0000-00-00 00:00:00'),(98,0,0,'I',2526,98,'I000098','2025-10-13',610,'','','0000-00-00','','',0,0,0,0,529,'','165','','','','N','darshan','darshan','2025-10-13 18:10:22','','0000-00-00 00:00:00'),(99,0,0,'I',2526,99,'I000099','2025-10-13',582,'','','0000-00-00','','',0,0,0,0,504,'','165','','','','N','darshan','darshan','2025-10-13 18:14:56','','0000-00-00 00:00:00'),(100,0,0,'I',2526,100,'I000100','2025-10-13',616,'','','0000-00-00','','',0,0,0,0,534,'','165','','','','N','darshan','darshan','2025-10-13 18:18:57','','0000-00-00 00:00:00'),(101,0,0,'I',2526,101,'I000101','2025-10-13',634,'','','0000-00-00','','',0,0,0,0,550,'','165','','','','N','drarchit','drarchit','2025-10-13 18:22:15','','0000-00-00 00:00:00'),(102,0,0,'I',2526,102,'I000102','2025-10-13',599,'','','0000-00-00','','',0,0,0,0,520,'','165','','','','N','darshan','darshan','2025-10-13 18:30:09','','0000-00-00 00:00:00'),(103,0,0,'I',2526,103,'I000103','2025-10-13',644,'','','0000-00-00','','',0,0,0,0,555,'','165','','','','N','drjayant','drjayant','2025-10-13 18:44:06','','0000-00-00 00:00:00'),(104,0,0,'I',2526,104,'I000104','2025-10-13',631,'','','0000-00-00','','',0,0,0,0,547,'','165','','','','N','darshan','darshan','2025-10-13 18:47:53','','0000-00-00 00:00:00'),(105,0,0,'I',2526,105,'I000105','2025-10-13',618,'','','0000-00-00','','',0,0,0,0,535,'','165','','','','N','drarchit','drarchit','2025-10-13 18:54:35','','0000-00-00 00:00:00'),(106,0,0,'I',2526,106,'I000106','2025-10-13',614,'','','0000-00-00','','',0,0,0,0,532,'','165','','','','N','darshan','darshan','2025-10-13 18:56:46','','0000-00-00 00:00:00'),(107,0,0,'I',2526,107,'I000107','2025-10-13',622,'','','0000-00-00','','',0,0,0,0,539,'','165','','','','N','darshan','darshan','2025-10-13 18:59:28','','0000-00-00 00:00:00'),(108,0,0,'I',2526,108,'I000108','2025-10-13',600,'','','0000-00-00','','',0,0,0,0,521,'','165','','','','N','darshan','darshan','2025-10-13 19:09:10','','0000-00-00 00:00:00'),(109,0,0,'I',2526,109,'I000109','2025-10-13',615,'','','0000-00-00','','',0,0,0,0,533,'','165','','','','N','drarchit','drarchit','2025-10-13 19:11:55','','0000-00-00 00:00:00'),(110,0,0,'I',2526,110,'I000110','2025-10-13',640,'','','0000-00-00','','',0,0,0,0,134,'','165','','','','N','darshan','darshan','2025-10-13 19:14:32','','0000-00-00 00:00:00'),(111,0,0,'I',2526,111,'I000111','2025-10-13',625,'','','0000-00-00','','',0,0,0,0,542,'','165','','','','N','darshan','darshan','2025-10-13 19:32:32','','0000-00-00 00:00:00'),(112,0,0,'I',2526,112,'I000112','2025-10-13',656,'','','0000-00-00','','',0,0,0,0,563,'','165','','','','N','drarchit','drarchit','2025-10-13 19:35:33','','0000-00-00 00:00:00'),(113,0,0,'I',2526,113,'I000113','2025-10-13',608,'','','0000-00-00','','',0,0,0,0,527,'','165','','','','N','darshan','darshan','2025-10-13 19:45:24','','0000-00-00 00:00:00'),(114,0,0,'I',2526,114,'I000114','2025-10-13',654,'','','0000-00-00','','',0,0,0,0,562,'','165','','','','N','darshan','darshan','2025-10-13 19:49:55','','0000-00-00 00:00:00'),(115,0,0,'I',2526,115,'I000115','2025-10-13',657,'','','0000-00-00','','',0,0,0,0,564,'','165','','','','N','darshan','darshan','2025-10-13 19:53:46','','0000-00-00 00:00:00'),(116,0,0,'I',2526,116,'I000116','2025-10-13',619,'','','0000-00-00','','',0,0,0,0,536,'','165','','','','N','darshan','darshan','2025-10-13 19:59:25','','0000-00-00 00:00:00'),(117,0,0,'I',2526,117,'I000117','2025-10-13',650,'','','0000-00-00','','',0,0,0,0,558,'','165','','','','N','darshan','darshan','2025-10-13 20:08:34','','0000-00-00 00:00:00'),(118,0,0,'I',2526,118,'I000118','2025-10-13',648,'','','0000-00-00','','',0,0,0,0,557,'','165','','','','N','darshan','darshan','2025-10-13 20:13:34','','0000-00-00 00:00:00'),(119,0,0,'I',2526,119,'I000119','2025-10-13',658,'','','0000-00-00','','',0,0,0,0,565,'','165','','','','N','darshan','darshan','2025-10-13 20:23:48','','0000-00-00 00:00:00'),(120,0,0,'I',2526,120,'I000120','2025-10-14',685,'','','0000-00-00','','',0,0,0,0,583,'','165','','','','N','darshan','darshan','2025-10-14 10:54:14','','0000-00-00 00:00:00'),(121,0,0,'I',2526,121,'I000121','2025-10-14',689,'','','0000-00-00','','',0,0,0,0,586,'','165','','','','N','drarchit','drarchit','2025-10-14 11:04:42','','0000-00-00 00:00:00'),(122,0,0,'I',2526,122,'I000122','2025-10-14',693,'','','0000-00-00','','',0,0,0,0,589,'','165','','','','N','darshan','darshan','2025-10-14 11:18:33','','0000-00-00 00:00:00'),(123,0,0,'I',2526,123,'I000123','2025-10-14',696,'','','0000-00-00','','',0,0,0,0,592,'','165','','','','N','darshan','darshan','2025-10-14 11:24:09','','0000-00-00 00:00:00'),(124,0,0,'I',2526,124,'I000124','2025-10-14',708,'','','0000-00-00','','',0,0,0,0,601,'','165','','','','N','drarchit','drarchit','2025-10-14 11:24:56','','0000-00-00 00:00:00'),(125,0,0,'I',2526,125,'I000125','2025-10-14',712,'','','0000-00-00','','',0,0,0,0,605,'','165','','','','N','drarchit','drarchit','2025-10-14 11:38:01','','0000-00-00 00:00:00'),(126,0,0,'I',2526,126,'I000126','2025-10-14',692,'','','0000-00-00','','',0,0,0,0,588,'','165','','','','N','darshan','darshan','2025-10-14 11:43:24','','0000-00-00 00:00:00'),(127,0,0,'I',2526,127,'I000127','2025-10-14',705,'','','0000-00-00','','',0,0,0,0,599,'','165','','','','N','darshan','darshan','2025-10-14 11:46:58','','0000-00-00 00:00:00'),(128,0,0,'I',2526,128,'I000128','2025-10-14',695,'','','0000-00-00','','',0,0,0,0,591,'','165','','','','N','darshan','darshan','2025-10-14 11:51:51','','0000-00-00 00:00:00'),(129,0,0,'I',2526,129,'I000129','2025-10-14',700,'','','0000-00-00','','',0,0,0,0,596,'','165','','','','N','darshan','darshan','2025-10-14 11:55:49','','0000-00-00 00:00:00'),(130,0,0,'I',2526,130,'I000130','2025-10-14',717,'','','0000-00-00','','',0,0,0,0,610,'','165','','','','N','drarchit','drarchit','2025-10-14 12:05:22','','0000-00-00 00:00:00'),(131,0,0,'I',2526,131,'I000131','2025-10-14',713,'','','0000-00-00','','',0,0,0,0,606,'','165','','','','N','darshan','darshan','2025-10-14 12:07:03','','0000-00-00 00:00:00'),(132,0,0,'I',2526,132,'I000132','2025-10-14',709,'','','0000-00-00','','',0,0,0,0,602,'','165','','','','N','darshan','darshan','2025-10-14 12:22:15','','0000-00-00 00:00:00'),(133,0,0,'I',2526,133,'I000133','2025-10-14',706,'','','0000-00-00','','',0,0,0,0,171,'','165','','','','N','darshan','darshan','2025-10-14 12:39:52','','0000-00-00 00:00:00'),(134,0,0,'I',2526,134,'I000134','2025-10-14',711,'','','0000-00-00','','',0,0,0,0,604,'','165','','','','N','darshan','darshan','2025-10-14 13:00:29','','0000-00-00 00:00:00'),(135,0,0,'I',2526,135,'I000135','2025-10-14',721,'','','0000-00-00','','',0,0,0,0,614,'','165','','','','N','darshan','darshan','2025-10-14 13:03:12','','0000-00-00 00:00:00'),(136,0,0,'I',2526,136,'I000136','2025-10-14',725,'','','0000-00-00','','',0,0,0,0,618,'','165','','','','N','drarchit','drarchit','2025-10-14 13:07:47','','0000-00-00 00:00:00'),(137,0,0,'I',2526,137,'I000137','2025-10-14',686,'','','0000-00-00','','',0,0,0,0,584,'','165','','','','N','darshan','darshan','2025-10-14 13:12:27','','0000-00-00 00:00:00'),(138,0,0,'I',2526,138,'I000138','2025-10-14',727,'','','0000-00-00','','',0,0,0,0,620,'','165','','','','N','darshan','darshan','2025-10-14 13:16:53','','0000-00-00 00:00:00'),(139,0,0,'I',2526,139,'I000139','2025-10-14',731,'','','0000-00-00','','',0,0,0,0,624,'','165','','','','N','darshan','darshan','2025-10-14 13:19:31','','0000-00-00 00:00:00'),(140,0,0,'I',2526,140,'I000140','2025-10-14',732,'','','0000-00-00','','',0,0,0,0,625,'','165','','','','N','darshan','darshan','2025-10-14 13:22:25','','0000-00-00 00:00:00'),(141,0,0,'I',2526,141,'I000141','2025-10-14',688,'','','0000-00-00','','',0,0,0,0,585,'','165','','','','N','darshan','darshan','2025-10-14 13:27:35','','0000-00-00 00:00:00'),(142,0,0,'I',2526,142,'I000142','2025-10-14',697,'','','0000-00-00','','',0,0,0,0,593,'','165','','','','N','darshan','darshan','2025-10-14 13:40:03','','0000-00-00 00:00:00'),(143,0,0,'I',2526,143,'I000143','2025-10-14',718,'','','0000-00-00','','',0,0,0,0,611,'','165','','','','N','darshan','darshan','2025-10-14 13:44:29','','0000-00-00 00:00:00'),(144,0,0,'I',2526,144,'I000144','2025-10-14',512,'','','0000-00-00','','',0,0,0,0,443,'','165','','','','N','darshan','darshan','2025-10-14 13:51:14','','0000-00-00 00:00:00'),(145,0,0,'I',2526,145,'I000145','2025-10-14',740,'','','0000-00-00','','',0,0,0,0,632,'','165','','','','N','darshan','darshan','2025-10-14 13:57:42','','0000-00-00 00:00:00'),(146,0,0,'I',2526,146,'I000146','2025-10-14',703,'','','0000-00-00','','',0,0,0,0,597,'','165','','','','N','darshan','darshan','2025-10-14 14:03:51','','0000-00-00 00:00:00'),(147,0,0,'I',2526,147,'I000147','2025-10-14',735,'','','0000-00-00','','',0,0,0,0,628,'','165','','','','N','darshan','darshan','2025-10-14 14:08:13','','0000-00-00 00:00:00'),(148,0,0,'I',2526,148,'I000148','2025-10-14',739,'','','0000-00-00','','',0,0,0,0,631,'','165','','','','N','darshan','darshan','2025-10-14 14:11:43','','0000-00-00 00:00:00'),(149,0,0,'I',2526,149,'I000149','2025-10-14',720,'','','0000-00-00','','',0,0,0,0,613,'','165','','','','N','darshan','darshan','2025-10-14 14:22:53','','0000-00-00 00:00:00'),(150,0,0,'I',2526,150,'I000150','2025-10-14',742,'','','0000-00-00','','',0,0,0,0,250,'','165','','','','N','darshan','darshan','2025-10-14 14:30:04','','0000-00-00 00:00:00'),(151,0,0,'I',2526,151,'I000151','2025-10-14',714,'','','0000-00-00','','',0,0,0,0,607,'','165','','','','N','darshan','darshan','2025-10-14 14:46:47','','0000-00-00 00:00:00'),(152,0,0,'I',2526,152,'I000152','2025-10-14',747,'','','0000-00-00','','',0,0,0,0,636,'','165','','','','N','darshan','darshan','2025-10-14 17:22:43','','0000-00-00 00:00:00'),(153,0,0,'I',2526,153,'I000153','2025-10-14',752,'','','0000-00-00','','',0,0,0,0,641,'','165','','','','N','darshan','darshan','2025-10-14 17:38:06','','0000-00-00 00:00:00'),(154,0,0,'I',2526,154,'I000154','2025-10-14',753,'','','0000-00-00','','',0,0,0,0,642,'','165','','','','N','darshan','darshan','2025-10-14 18:07:36','','0000-00-00 00:00:00'),(155,0,0,'I',2526,155,'I000155','2025-10-14',758,'','','0000-00-00','','',0,0,0,0,647,'','165','','','','N','darshan','darshan','2025-10-14 18:20:32','','0000-00-00 00:00:00'),(156,0,0,'I',2526,156,'I000156','2025-10-14',764,'','','0000-00-00','','',0,0,0,0,652,'','165','','','','N','darshan','darshan','2025-10-14 18:23:47','','0000-00-00 00:00:00'),(157,0,0,'I',2526,157,'I000157','2025-10-14',751,'','','0000-00-00','','',0,0,0,0,640,'','165','','','','N','darshan','darshan','2025-10-14 18:37:33','','0000-00-00 00:00:00'),(158,0,0,'I',2526,158,'I000158','2025-10-14',773,'','','0000-00-00','','',0,0,0,0,660,'','165','','','','N','darshan','darshan','2025-10-14 18:41:30','','0000-00-00 00:00:00'),(159,0,0,'I',2526,159,'I000159','2025-10-14',776,'','','0000-00-00','','',0,0,0,0,662,'','165','','','','N','darshan','darshan','2025-10-14 18:44:31','','0000-00-00 00:00:00'),(160,0,0,'I',2526,160,'I000160','2025-10-14',736,'','','0000-00-00','','',0,0,0,0,629,'','165','','','','N','darshan','darshan','2025-10-14 18:48:44','','0000-00-00 00:00:00'),(161,0,0,'I',2526,161,'I000161','2025-10-14',754,'','','0000-00-00','','',0,0,0,0,643,'','165','','','','N','darshan','darshan','2025-10-14 18:53:06','','0000-00-00 00:00:00'),(162,0,0,'I',2526,162,'I000162','2025-10-14',761,'','','0000-00-00','','',0,0,0,0,649,'','165','','','','N','darshan','darshan','2025-10-14 18:56:21','','0000-00-00 00:00:00'),(163,0,0,'I',2526,163,'I000163','2025-10-14',749,'','','0000-00-00','','',0,0,0,0,638,'','165','','','','N','darshan','darshan','2025-10-14 19:02:45','','0000-00-00 00:00:00'),(164,0,0,'I',2526,164,'I000164','2025-10-14',780,'','','0000-00-00','','',0,0,0,0,666,'','165','','','','N','darshan','darshan','2025-10-14 19:07:12','','0000-00-00 00:00:00'),(165,0,0,'I',2526,165,'I000165','2025-10-14',774,'','','0000-00-00','','',0,0,0,0,661,'','165','','','','N','darshan','darshan','2025-10-14 19:10:29','','0000-00-00 00:00:00'),(166,0,0,'I',2526,166,'I000166','2025-10-14',783,'','','0000-00-00','','',0,0,0,0,669,'','165','','','','N','darshan','darshan','2025-10-14 19:12:53','','0000-00-00 00:00:00'),(167,0,0,'I',2526,167,'I000167','2025-10-14',762,'','','0000-00-00','','',0,0,0,0,650,'','165','','','','N','darshan','darshan','2025-10-14 19:15:54','','0000-00-00 00:00:00'),(168,0,0,'I',2526,168,'I000168','2025-10-14',750,'','','0000-00-00','','',0,0,0,0,639,'','165','','','','N','darshan','darshan','2025-10-14 19:33:18','','0000-00-00 00:00:00'),(169,0,0,'I',2526,169,'I000169','2025-10-14',767,'','','0000-00-00','','',0,0,0,0,655,'','165','','','','N','darshan','darshan','2025-10-14 19:41:17','','0000-00-00 00:00:00'),(170,0,0,'I',2526,170,'I000170','2025-10-14',769,'','','0000-00-00','','',0,0,0,0,657,'','165','','','','N','darshan','darshan','2025-10-14 19:51:30','','0000-00-00 00:00:00'),(171,0,0,'I',2526,171,'I000171','2025-10-14',748,'','','0000-00-00','','',0,0,0,0,637,'','165','','','','N','darshan','darshan','2025-10-14 19:58:05','','0000-00-00 00:00:00'),(172,0,0,'I',2526,172,'I000172','2025-10-14',779,'','','0000-00-00','','',0,0,0,0,665,'','165','','','','N','darshan','darshan','2025-10-14 20:12:33','','0000-00-00 00:00:00'),(173,0,0,'I',2526,173,'I000173','2025-10-14',792,'','','0000-00-00','','',0,0,0,0,677,'','165','','','','N','darshan','darshan','2025-10-14 20:16:37','','0000-00-00 00:00:00'),(174,0,0,'I',2526,174,'I000174','2025-10-14',795,'','','0000-00-00','','',0,0,0,0,679,'','165','','','','N','darshan','darshan','2025-10-14 20:23:23','','0000-00-00 00:00:00'),(175,0,0,'I',2526,175,'I000175','2025-10-14',765,'','','0000-00-00','','',0,0,0,0,653,'','165','','','','N','darshan','darshan','2025-10-14 20:28:55','','0000-00-00 00:00:00'),(176,0,0,'I',2526,176,'I000176','2025-10-15',805,'','','0000-00-00','','',0,0,0,0,686,'','165','','','','N','darshan','darshan','2025-10-15 11:06:06','','0000-00-00 00:00:00'),(177,0,0,'I',2526,177,'I000177','2025-10-15',813,'','','0000-00-00','','',0,0,0,0,691,'','165','','','','N','darshan','darshan','2025-10-15 11:13:06','','0000-00-00 00:00:00'),(178,0,0,'I',2526,178,'I000178','2025-10-15',806,'','','0000-00-00','','',0,0,0,0,687,'','165','','','','N','darshan','darshan','2025-10-15 11:17:55','','0000-00-00 00:00:00'),(179,0,0,'I',2526,179,'I000179','2025-10-15',820,'','','0000-00-00','','',0,0,0,0,697,'','165','','','','N','darshan','darshan','2025-10-15 11:23:43','','0000-00-00 00:00:00'),(180,0,0,'I',2526,180,'I000180','2025-10-15',832,'','','0000-00-00','','',0,0,0,0,706,'','165','','','','N','darshan','darshan','2025-10-15 11:43:20','','0000-00-00 00:00:00'),(181,0,0,'I',2526,181,'I000181','2025-10-15',825,'','','0000-00-00','','',0,0,0,0,701,'','165','','','','N','darshan','darshan','2025-10-15 11:59:07','','0000-00-00 00:00:00'),(182,0,0,'I',2526,182,'I000182','2025-10-15',843,'','','0000-00-00','','',0,0,0,0,715,'','165','','','','N','darshan','darshan','2025-10-15 12:04:20','','0000-00-00 00:00:00'),(183,0,0,'I',2526,183,'I000183','2025-10-15',849,'','','0000-00-00','','',0,0,0,0,720,'','165','','','','N','darshan','darshan','2025-10-15 12:36:17','','0000-00-00 00:00:00'),(184,0,0,'I',2526,184,'I000184','2025-10-15',837,'','','0000-00-00','','',0,0,0,0,710,'','165','','','','N','darshan','darshan','2025-10-15 12:45:29','','0000-00-00 00:00:00'),(185,0,0,'I',2526,185,'I000185','2025-10-15',811,'','','0000-00-00','','',0,0,0,0,690,'','165','','','','N','darshan','darshan','2025-10-15 13:05:48','','0000-00-00 00:00:00'),(186,0,0,'I',2526,186,'I000186','2025-10-15',859,'','','0000-00-00','','',0,0,0,0,728,'','165','','','','N','darshan','darshan','2025-10-15 13:12:18','','0000-00-00 00:00:00'),(187,0,0,'I',2526,187,'I000187','2025-10-15',851,'','','0000-00-00','','',0,0,0,0,722,'','165','','','','N','darshan','darshan','2025-10-15 13:16:43','','0000-00-00 00:00:00'),(188,0,0,'I',2526,188,'I000188','2025-10-15',824,'','','0000-00-00','','',0,0,0,0,700,'','165','','','','N','darshan','darshan','2025-10-15 13:30:44','','0000-00-00 00:00:00'),(189,0,0,'I',2526,189,'I000189','2025-10-15',823,'','','0000-00-00','','',0,0,0,0,699,'','165','','','','N','darshan','darshan','2025-10-15 13:41:37','','0000-00-00 00:00:00'),(190,0,0,'I',2526,190,'I000190','2025-10-15',844,'','','0000-00-00','','',0,0,0,0,716,'','165','','','','N','darshan','darshan','2025-10-15 13:43:41','','0000-00-00 00:00:00'),(191,0,0,'I',2526,191,'I000191','2025-10-15',863,'','','0000-00-00','','',0,0,0,0,732,'','165','','','','N','darshan','darshan','2025-10-15 13:52:42','','0000-00-00 00:00:00'),(192,0,0,'I',2526,192,'I000192','2025-10-15',856,'','','0000-00-00','','',0,0,0,0,726,'','165','','','','N','darshan','darshan','2025-10-15 13:56:55','','0000-00-00 00:00:00'),(193,0,0,'I',2526,193,'I000193','2025-10-15',808,'','','0000-00-00','','',0,0,0,0,689,'','165','','','','N','darshan','darshan','2025-10-15 14:03:26','','0000-00-00 00:00:00'),(194,0,0,'I',2526,194,'I000194','2025-10-15',870,'','','0000-00-00','','',0,0,0,0,738,'','165','','','','N','darshan','darshan','2025-10-15 14:09:43','','0000-00-00 00:00:00'),(195,0,0,'I',2526,195,'I000195','2025-10-15',819,'','','0000-00-00','','',0,0,0,0,79,'','165','','','','N','darshan','darshan','2025-10-15 14:27:16','','0000-00-00 00:00:00'),(196,0,0,'I',2526,196,'I000196','2025-10-15',876,'','','0000-00-00','','',0,0,0,0,743,'','165','','','','N','darshan','darshan','2025-10-15 17:17:19','','0000-00-00 00:00:00'),(197,0,0,'I',2526,197,'I000197','2025-10-15',838,'','','0000-00-00','','',0,0,0,0,711,'','165','','','','N','darshan','darshan','2025-10-15 17:27:32','','0000-00-00 00:00:00'),(198,0,0,'I',2526,198,'I000198','2025-10-15',879,'','','0000-00-00','','',0,0,0,0,746,'','165','','','','N','darshan','darshan','2025-10-15 17:38:07','','0000-00-00 00:00:00'),(199,0,0,'I',2526,199,'I000199','2025-10-15',881,'','','0000-00-00','','',0,0,0,0,748,'','165','','','','N','darshan','darshan','2025-10-15 17:48:39','','0000-00-00 00:00:00'),(200,0,0,'I',2526,200,'I000200','2025-10-15',875,'','','0000-00-00','','',0,0,0,0,742,'','165','','','','N','darshan','darshan','2025-10-15 17:56:19','','0000-00-00 00:00:00'),(201,0,0,'I',2526,201,'I000201','2025-10-15',883,'','','0000-00-00','','',0,0,0,0,749,'','165','','','','N','darshan','darshan','2025-10-15 18:02:28','','0000-00-00 00:00:00'),(202,0,0,'I',2526,202,'I000202','2025-10-15',885,'','','0000-00-00','','',0,0,0,0,750,'','165','','','','N','darshan','darshan','2025-10-15 18:07:40','','0000-00-00 00:00:00'),(203,0,0,'I',2526,203,'I000203','2025-10-15',888,'','','0000-00-00','','',0,0,0,0,753,'','165','','','','N','drjayant','drjayant','2025-10-15 18:08:15','','0000-00-00 00:00:00'),(204,0,0,'I',2526,204,'I000204','2025-10-15',891,'','','0000-00-00','','',0,0,0,0,245,'','165','','','','N','drjayant','drjayant','2025-10-15 18:12:15','','0000-00-00 00:00:00'),(205,0,0,'I',2526,205,'I000205','2025-10-15',886,'','','0000-00-00','','',0,0,0,0,751,'','165','','','','N','darshan','darshan','2025-10-15 18:12:45','','0000-00-00 00:00:00'),(206,0,0,'I',2526,206,'I000206','2025-10-15',894,'','','0000-00-00','','',0,0,0,0,758,'','165','','','','N','darshan','darshan','2025-10-15 18:26:33','','0000-00-00 00:00:00'),(207,0,0,'I',2526,207,'I000207','2025-10-15',899,'','','0000-00-00','','',0,0,0,0,9,'','165','','','','N','drjayant','drjayant','2025-10-15 18:27:05','','0000-00-00 00:00:00'),(208,0,0,'I',2526,208,'I000208','2025-10-15',897,'','','0000-00-00','','',0,0,0,0,760,'','165','','','','N','darshan','darshan','2025-10-15 18:30:40','','0000-00-00 00:00:00'),(209,0,0,'I',2526,209,'I000209','2025-10-15',902,'','','0000-00-00','','',0,0,0,0,762,'','165','','','','N','darshan','darshan','2025-10-15 18:36:05','','0000-00-00 00:00:00'),(210,0,0,'I',2526,210,'I000210','2025-10-15',880,'','','0000-00-00','','',0,0,0,0,747,'','165','','','','N','darshan','darshan','2025-10-15 18:40:17','','0000-00-00 00:00:00'),(211,0,0,'I',2526,211,'I000211','2025-10-15',874,'','','0000-00-00','','',0,0,0,0,741,'','165','','','','N','darshan','darshan','2025-10-15 18:54:47','','0000-00-00 00:00:00'),(212,0,0,'I',2526,212,'I000212','2025-10-15',904,'','','0000-00-00','','',0,0,0,0,764,'','165','','','','N','darshan','darshan','2025-10-15 19:01:41','','0000-00-00 00:00:00'),(213,0,0,'I',2526,213,'I000213','2025-10-15',919,'','','0000-00-00','','',0,0,0,0,242,'','165','','','','N','drjayant','drjayant','2025-10-15 19:13:32','','0000-00-00 00:00:00'),(214,0,0,'I',2526,214,'I000214','2025-10-15',890,'','','0000-00-00','','',0,0,0,0,755,'','165','','','','N','darshan','darshan','2025-10-15 19:15:37','','0000-00-00 00:00:00'),(215,0,0,'I',2526,215,'I000215','2025-10-15',918,'','','0000-00-00','','',0,0,0,0,776,'','165','','','','N','darshan','darshan','2025-10-15 19:21:01','','0000-00-00 00:00:00'),(216,0,0,'I',2526,216,'I000216','2025-10-15',907,'','','0000-00-00','','',0,0,0,0,766,'','165','','','','N','darshan','darshan','2025-10-15 19:27:05','','0000-00-00 00:00:00'),(217,0,0,'I',2526,217,'I000217','2025-10-15',906,'','','0000-00-00','','',0,0,0,0,765,'','165','','','','N','darshan','darshan','2025-10-15 19:38:03','','0000-00-00 00:00:00'),(218,0,0,'I',2526,218,'I000218','2025-10-15',916,'','','0000-00-00','','',0,0,0,0,774,'','165','','','','N','darshan','darshan','2025-10-15 19:53:28','','0000-00-00 00:00:00'),(219,0,0,'I',2526,219,'I000219','2025-10-15',923,'','','0000-00-00','','',0,0,0,0,779,'','165','','','','N','darshan','darshan','2025-10-15 20:02:20','','0000-00-00 00:00:00'),(220,0,0,'I',2526,220,'I000220','2025-10-15',928,'','','0000-00-00','','',0,0,0,0,784,'','165','','','','N','darshan','darshan','2025-10-15 20:14:33','','0000-00-00 00:00:00'),(221,0,0,'I',2526,221,'I000221','2025-10-16',948,'','','0000-00-00','','',0,0,0,0,798,'','165','','','','N','darshan','darshan','2025-10-16 11:05:30','','0000-00-00 00:00:00'),(222,0,0,'I',2526,222,'I000222','2025-10-16',943,'','','0000-00-00','','',0,0,0,0,793,'','165','','','','N','darshan','darshan','2025-10-16 11:08:20','','0000-00-00 00:00:00'),(223,0,0,'I',2526,223,'I000223','2025-10-16',958,'','','0000-00-00','','',0,0,0,0,807,'','165','','','','N','drarchit','drarchit','2025-10-16 11:16:11','','0000-00-00 00:00:00'),(224,0,0,'I',2526,224,'I000224','2025-10-16',954,'','','0000-00-00','','',0,0,0,0,803,'','165','','','','N','darshan','darshan','2025-10-16 11:25:20','','0000-00-00 00:00:00'),(225,0,0,'I',2526,225,'I000225','2025-10-16',955,'','','0000-00-00','','',0,0,0,0,804,'','165','','','','N','darshan','darshan','2025-10-16 11:29:38','','0000-00-00 00:00:00'),(226,0,0,'I',2526,226,'I000226','2025-10-16',940,'','','0000-00-00','','',0,0,0,0,791,'','165','','','','N','darshan','darshan','2025-10-16 11:36:52','','0000-00-00 00:00:00'),(227,0,0,'I',2526,227,'I000227','2025-10-16',942,'','','0000-00-00','','',0,0,0,0,792,'','165','','','','N','darshan','darshan','2025-10-16 11:44:26','','0000-00-00 00:00:00'),(228,0,0,'I',2526,228,'I000228','2025-10-16',952,'','','0000-00-00','','',0,0,0,0,391,'','165','','','','N','darshan','darshan','2025-10-16 11:58:49','','0000-00-00 00:00:00'),(229,0,0,'I',2526,229,'I000229','2025-10-16',951,'','','0000-00-00','','',0,0,0,0,801,'','165','','','','N','darshan','darshan','2025-10-16 12:16:05','','0000-00-00 00:00:00'),(230,0,0,'I',2526,230,'I000230','2025-10-16',945,'','','0000-00-00','','',0,0,0,0,795,'','165','','','','N','darshan','darshan','2025-10-16 12:30:31','','0000-00-00 00:00:00'),(231,0,0,'I',2526,231,'I000231','2025-10-16',949,'','','0000-00-00','','',0,0,0,0,799,'','165','','','','N','darshan','darshan','2025-10-16 12:33:46','','0000-00-00 00:00:00'),(232,0,0,'I',2526,232,'I000232','2025-10-16',982,'','','0000-00-00','','',0,0,0,0,828,'','165','','','','N','darshan','darshan','2025-10-16 12:51:32','','0000-00-00 00:00:00'),(233,0,0,'I',2526,233,'I000233','2025-10-16',977,'','','0000-00-00','','',0,0,0,0,823,'','165','','','','N','darshan','darshan','2025-10-16 12:54:44','','0000-00-00 00:00:00'),(234,0,0,'I',2526,234,'I000234','2025-10-16',950,'','','0000-00-00','','',0,0,0,0,800,'','165','','','','N','darshan','darshan','2025-10-16 13:04:25','','0000-00-00 00:00:00'),(235,0,0,'I',2526,235,'I000235','2025-10-16',957,'','','0000-00-00','','',0,0,0,0,806,'','165','','','','N','darshan','darshan','2025-10-16 13:36:12','','0000-00-00 00:00:00'),(236,0,0,'I',2526,236,'I000236','2025-10-16',961,'','','0000-00-00','','',0,0,0,0,810,'','165','','','','N','darshan','darshan','2025-10-16 13:39:42','','0000-00-00 00:00:00'),(237,0,0,'I',2526,237,'I000237','2025-10-16',963,'','','0000-00-00','','',0,0,0,0,812,'','165','','','','N','darshan','darshan','2025-10-16 13:44:41','','0000-00-00 00:00:00'),(238,0,0,'I',2526,238,'I000238','2025-10-16',944,'','','0000-00-00','','',0,0,0,0,794,'','165','','','','N','darshan','darshan','2025-10-16 13:49:12','','0000-00-00 00:00:00'),(239,0,0,'I',2526,239,'I000239','2025-10-16',970,'','','0000-00-00','','',0,0,0,0,817,'','165','','','','N','darshan','darshan','2025-10-16 13:59:59','','0000-00-00 00:00:00'),(240,0,0,'I',2526,240,'I000240','2025-10-16',981,'','','0000-00-00','','',0,0,0,0,827,'','165','','','','N','darshan','darshan','2025-10-16 14:03:54','','0000-00-00 00:00:00'),(241,0,0,'I',2526,241,'I000241','2025-10-16',976,'','','0000-00-00','','',0,0,0,0,822,'','165','','','','N','darshan','darshan','2025-10-16 14:09:57','','0000-00-00 00:00:00'),(242,0,0,'I',2526,242,'I000242','2025-10-16',946,'','','0000-00-00','','',0,0,0,0,796,'','165','','','','N','darshan','darshan','2025-10-16 14:11:29','','0000-00-00 00:00:00'),(243,0,0,'I',2526,243,'I000243','2025-10-16',983,'','','0000-00-00','','',0,0,0,0,829,'','165','','','','N','darshan','darshan','2025-10-16 14:15:49','','0000-00-00 00:00:00'),(244,0,0,'I',2526,244,'I000244','2025-10-16',984,'','','0000-00-00','','',0,0,0,0,830,'','165','','','','N','darshan','darshan','2025-10-16 14:24:25','','0000-00-00 00:00:00'),(245,0,0,'I',2526,245,'I000245','2025-10-16',986,'','','0000-00-00','','',0,0,0,0,832,'','165','','','','N','darshan','darshan','2025-10-16 14:29:15','','0000-00-00 00:00:00'),(246,0,0,'I',2526,246,'I000246','2025-10-16',965,'','','0000-00-00','','',0,0,0,0,813,'','165','','','','N','darshan','darshan','2025-10-16 14:45:59','','0000-00-00 00:00:00'),(247,0,0,'I',2526,247,'I000247','2025-10-16',1005,'','','0000-00-00','','',0,0,0,0,848,'','165','','','','N','darshan','darshan','2025-10-16 14:53:47','','0000-00-00 00:00:00'),(248,0,0,'I',2526,248,'I000248','2025-10-16',996,'','','0000-00-00','','',0,0,0,0,842,'','165','','','','N','darshan','darshan','2025-10-16 15:10:48','','0000-00-00 00:00:00'),(249,0,0,'I',2526,249,'I000249','2025-10-16',992,'','','0000-00-00','','',0,0,0,0,838,'','165','','','','N','darshan','darshan','2025-10-16 15:13:45','','0000-00-00 00:00:00'),(250,0,0,'I',2526,250,'I000250','2025-10-16',953,'','','0000-00-00','','',0,0,0,0,802,'','165','','','','N','darshan','darshan','2025-10-16 15:22:04','','0000-00-00 00:00:00'),(251,0,0,'I',2526,251,'I000251','2025-10-16',1007,'','','0000-00-00','','',0,0,0,0,850,'','165','','','','N','darshan','darshan','2025-10-16 17:24:07','','0000-00-00 00:00:00'),(252,0,0,'I',2526,252,'I000252','2025-10-16',1009,'','','0000-00-00','','',0,0,0,0,852,'','165','','','','N','darshan','darshan','2025-10-16 17:28:00','','0000-00-00 00:00:00'),(253,0,0,'I',2526,253,'I000253','2025-10-16',1012,'','','0000-00-00','','',0,0,0,0,855,'','165','','','','N','darshan','darshan','2025-10-16 17:41:48','','0000-00-00 00:00:00'),(254,0,0,'I',2526,254,'I000254','2025-10-16',1013,'','','0000-00-00','','',0,0,0,0,856,'','165','','','','N','darshan','darshan','2025-10-16 17:47:58','','0000-00-00 00:00:00'),(255,0,0,'I',2526,255,'I000255','2025-10-16',1021,'','','0000-00-00','','',0,0,0,0,863,'','165','','','','N','darshan','darshan','2025-10-16 17:57:57','','0000-00-00 00:00:00'),(256,0,0,'I',2526,256,'I000256','2025-10-16',1011,'','','0000-00-00','','',0,0,0,0,854,'','165','','','','N','darshan','darshan','2025-10-16 18:13:22','','0000-00-00 00:00:00'),(257,0,0,'I',2526,257,'I000257','2025-10-16',1030,'','','0000-00-00','','',0,0,0,0,871,'','165','','','','N','darshan','darshan','2025-10-16 18:19:23','','0000-00-00 00:00:00'),(258,0,0,'I',2526,258,'I000258','2025-10-16',1017,'','','0000-00-00','','',0,0,0,0,860,'','165','','','','N','darshan','darshan','2025-10-16 18:34:15','','0000-00-00 00:00:00'),(259,0,0,'I',2526,259,'I000259','2025-10-16',920,'','','0000-00-00','','',0,0,0,0,777,'','165','','','','N','darshan','darshan','2025-10-16 18:43:33','','0000-00-00 00:00:00'),(260,0,0,'I',2526,260,'I000260','2025-10-16',1022,'','','0000-00-00','','',0,0,0,0,864,'','165','','','','N','darshan','darshan','2025-10-16 18:51:07','','0000-00-00 00:00:00'),(261,0,0,'I',2526,261,'I000261','2025-10-16',1023,'','','0000-00-00','','',0,0,0,0,865,'','165','','','','N','darshan','darshan','2025-10-16 18:57:23','','0000-00-00 00:00:00'),(262,0,0,'I',2526,262,'I000262','2025-10-16',1026,'','','0000-00-00','','',0,0,0,0,867,'','165','','','','N','darshan','darshan','2025-10-16 19:03:23','','0000-00-00 00:00:00'),(263,0,0,'I',2526,263,'I000263','2025-10-16',1028,'','','0000-00-00','','',0,0,0,0,869,'','165','','','','N','darshan','darshan','2025-10-16 19:09:09','','0000-00-00 00:00:00'),(264,0,0,'I',2526,264,'I000264','2025-10-16',1052,'','','0000-00-00','','',0,0,0,0,888,'','165','','','','N','darshan','darshan','2025-10-16 19:17:02','','0000-00-00 00:00:00'),(265,0,0,'I',2526,265,'I000265','2025-10-16',1056,'','','0000-00-00','','',0,0,0,0,891,'','165','','','','N','darshan','darshan','2025-10-16 19:20:18','','0000-00-00 00:00:00'),(266,0,0,'I',2526,266,'I000266','2025-10-16',1014,'','','0000-00-00','','',0,0,0,0,857,'','165','','','','N','darshan','darshan','2025-10-16 19:23:32','','0000-00-00 00:00:00'),(267,0,0,'I',2526,267,'I000267','2025-10-16',1015,'','','0000-00-00','','',0,0,0,0,858,'','165','','','','N','darshan','darshan','2025-10-16 19:27:19','','0000-00-00 00:00:00'),(268,0,0,'I',2526,268,'I000268','2025-10-16',1031,'','','0000-00-00','','',0,0,0,0,872,'','165','','','','N','darshan','darshan','2025-10-16 19:30:12','','0000-00-00 00:00:00'),(269,0,0,'I',2526,269,'I000269','2025-10-16',1059,'','','0000-00-00','','',0,0,0,0,893,'','165','','','','N','drarchit','drarchit','2025-10-16 19:38:41','','0000-00-00 00:00:00'),(270,0,0,'I',2526,270,'I000270','2025-10-16',1039,'','','0000-00-00','','',0,0,0,0,880,'','165','','','','N','darshan','darshan','2025-10-16 19:41:08','','0000-00-00 00:00:00'),(271,0,0,'I',2526,271,'I000271','2025-10-16',1045,'','','0000-00-00','','',0,0,0,0,883,'','165','','','','N','darshan','darshan','2025-10-16 19:44:55','','0000-00-00 00:00:00'),(272,0,0,'I',2526,272,'I000272','2025-10-16',1034,'','','0000-00-00','','',0,0,0,0,875,'','165','','','','N','darshan','darshan','2025-10-16 19:49:22','','0000-00-00 00:00:00'),(273,0,0,'I',2526,273,'I000273','2025-10-16',1046,'','','0000-00-00','','',0,0,0,0,884,'','165','','','','N','darshan','darshan','2025-10-16 19:52:56','','0000-00-00 00:00:00'),(274,0,0,'I',2526,274,'I000274','2025-10-16',1047,'','','0000-00-00','','',0,0,0,0,885,'','165','','','','N','darshan','darshan','2025-10-16 19:57:35','','0000-00-00 00:00:00'),(275,0,0,'I',2526,275,'I000275','2025-10-16',1053,'','','0000-00-00','','',0,0,0,0,889,'','165','','','','N','darshan','darshan','2025-10-16 20:01:46','','0000-00-00 00:00:00'),(276,0,0,'I',2526,276,'I000276','2025-10-16',997,'','','0000-00-00','','',0,0,0,0,843,'','165','','','','N','darshan','darshan','2025-10-16 20:04:21','','0000-00-00 00:00:00'),(277,0,0,'I',2526,277,'I000277','2025-10-16',1061,'','','0000-00-00','','',0,0,0,0,895,'','165','','','','N','darshan','darshan','2025-10-16 20:29:08','','0000-00-00 00:00:00'),(278,0,0,'I',2526,278,'I000278','2025-10-17',1082,'','','0000-00-00','','',0,0,0,0,909,'','165','','','','N','darshan','darshan','2025-10-17 10:44:19','','0000-00-00 00:00:00'),(279,0,0,'I',2526,279,'I000279','2025-10-17',1084,'','','0000-00-00','','',0,0,0,0,207,'','165','','','','N','darshan','darshan','2025-10-17 10:47:43','','0000-00-00 00:00:00'),(280,0,0,'I',2526,280,'I000280','2025-10-17',1078,'','','0000-00-00','','',0,0,0,0,905,'','165','','','','N','drarchit','drarchit','2025-10-17 10:55:11','','0000-00-00 00:00:00'),(281,0,0,'I',2526,281,'I000281','2025-10-17',1097,'','','0000-00-00','','',0,0,0,0,921,'','165','','','','N','darshan','darshan','2025-10-17 11:16:55','','0000-00-00 00:00:00'),(282,0,0,'I',2526,282,'I000282','2025-10-17',1098,'','','0000-00-00','','',0,0,0,0,922,'','165','','','','N','darshan','darshan','2025-10-17 11:19:58','','0000-00-00 00:00:00'),(283,0,0,'I',2526,283,'I000283','2025-10-17',1102,'','','0000-00-00','','',0,0,0,0,926,'','165','','','','N','darshan','darshan','2025-10-17 11:29:09','','0000-00-00 00:00:00'),(284,0,0,'I',2526,284,'I000284','2025-10-17',1086,'','','0000-00-00','','',0,0,0,0,912,'','165','','','','N','darshan','darshan','2025-10-17 11:46:55','','0000-00-00 00:00:00'),(285,0,0,'I',2526,285,'I000285','2025-10-17',1093,'','','0000-00-00','','',0,0,0,0,917,'','165','','','','N','darshan','darshan','2025-10-17 11:52:44','','0000-00-00 00:00:00'),(286,0,0,'I',2526,286,'I000286','2025-10-17',1103,'','','0000-00-00','','',0,0,0,0,927,'','165','','','','N','darshan','darshan','2025-10-17 11:57:16','','0000-00-00 00:00:00'),(287,0,0,'I',2526,287,'I000287','2025-10-17',1094,'','','0000-00-00','','',0,0,0,0,918,'','165','','','','N','darshan','darshan','2025-10-17 12:01:35','','0000-00-00 00:00:00'),(288,0,0,'I',2526,288,'I000288','2025-10-17',1117,'','','0000-00-00','','',0,0,0,0,939,'','165','','','','N','darshan','darshan','2025-10-17 12:09:26','','0000-00-00 00:00:00'),(289,0,0,'I',2526,289,'I000289','2025-10-17',1118,'','','0000-00-00','','',0,0,0,0,940,'','165','','','','N','darshan','darshan','2025-10-17 12:16:31','','0000-00-00 00:00:00'),(290,0,0,'I',2526,290,'I000290','2025-10-17',1112,'','','0000-00-00','','',0,0,0,0,934,'','165','','','','N','darshan','darshan','2025-10-17 12:20:16','','0000-00-00 00:00:00'),(291,0,0,'I',2526,291,'I000291','2025-10-17',1101,'','','0000-00-00','','',0,0,0,0,925,'','165','','','','N','darshan','darshan','2025-10-17 13:11:35','','0000-00-00 00:00:00'),(292,0,0,'I',2526,292,'I000292','2025-10-17',1088,'','','0000-00-00','','',0,0,0,0,913,'','165','','','','N','darshan','darshan','2025-10-17 13:17:58','','0000-00-00 00:00:00'),(293,0,0,'I',2526,293,'I000293','2025-10-17',1132,'','','0000-00-00','','',0,0,0,0,950,'','165','','','','N','darshan','darshan','2025-10-17 13:22:07','','0000-00-00 00:00:00'),(294,0,0,'I',2526,294,'I000294','2025-10-17',1104,'','','0000-00-00','','',0,0,0,0,928,'','165','','','','N','darshan','darshan','2025-10-17 13:25:35','','0000-00-00 00:00:00'),(295,0,0,'I',2526,295,'I000295','2025-10-17',1105,'','','0000-00-00','','',0,0,0,0,929,'','165','','','','N','darshan','darshan','2025-10-17 13:29:06','','0000-00-00 00:00:00'),(296,0,0,'I',2526,296,'I000296','2025-10-17',1113,'','','0000-00-00','','',0,0,0,0,935,'','165','','','','N','darshan','darshan','2025-10-17 13:33:41','','0000-00-00 00:00:00'),(297,0,0,'I',2526,297,'I000297','2025-10-17',1085,'','','0000-00-00','','',0,0,0,0,911,'','165','','','','N','darshan','darshan','2025-10-17 13:40:58','','0000-00-00 00:00:00'),(298,0,0,'I',2526,298,'I000298','2025-10-17',1095,'','','0000-00-00','','',0,0,0,0,919,'','165','','','','N','darshan','darshan','2025-10-17 13:44:50','','0000-00-00 00:00:00'),(299,0,0,'I',2526,299,'I000299','2025-10-17',1115,'','','0000-00-00','','',0,0,0,0,937,'','165','','','','N','darshan','darshan','2025-10-17 13:48:07','','0000-00-00 00:00:00'),(300,0,0,'I',2526,300,'I000300','2025-10-17',1121,'','','0000-00-00','','',0,0,0,0,943,'','165','','','','N','darshan','darshan','2025-10-17 13:53:19','','0000-00-00 00:00:00'),(301,0,0,'I',2526,301,'I000301','2025-10-17',1129,'','','0000-00-00','','',0,0,0,0,947,'','165','','','','N','darshan','darshan','2025-10-17 14:03:44','','0000-00-00 00:00:00'),(302,0,0,'I',2526,302,'I000302','2025-10-17',1100,'','','0000-00-00','','',0,0,0,0,924,'','165','','','','N','darshan','darshan','2025-10-17 14:17:57','','0000-00-00 00:00:00'),(303,0,0,'I',2526,303,'I000303','2025-10-17',1131,'','','0000-00-00','','',0,0,0,0,949,'','165','','','','N','darshan','darshan','2025-10-17 14:21:42','','0000-00-00 00:00:00'),(304,0,0,'I',2526,304,'I000304','2025-10-17',1137,'','','0000-00-00','','',0,0,0,0,953,'','165','','','','N','darshan','darshan','2025-10-17 14:58:55','','0000-00-00 00:00:00'),(305,0,0,'I',2526,305,'I000305','2025-10-17',1146,'','','0000-00-00','','',0,0,0,0,956,'','165','','','','N','darshan','darshan','2025-10-17 15:02:21','','0000-00-00 00:00:00'),(306,0,0,'I',2526,306,'I000306','2025-10-17',1136,'','','0000-00-00','','',0,0,0,0,952,'','165','','','','N','darshan','darshan','2025-10-17 15:05:43','','0000-00-00 00:00:00'),(307,0,0,'I',2526,307,'I000307','2025-10-17',1139,'','','0000-00-00','','',0,0,0,0,277,'','165','','','','N','darshan','darshan','2025-10-17 15:10:39','','0000-00-00 00:00:00'),(308,0,0,'I',2526,308,'I000308','2025-10-17',1158,'','','0000-00-00','','',0,0,0,0,967,'','165','','','','N','darshan','darshan','2025-10-17 17:30:26','','0000-00-00 00:00:00'),(309,0,0,'I',2526,309,'I000309','2025-10-17',1155,'','','0000-00-00','','',0,0,0,0,964,'','165','','','','N','darshan','darshan','2025-10-17 17:43:59','','0000-00-00 00:00:00'),(310,0,0,'I',2526,310,'I000310','2025-10-17',1165,'','','0000-00-00','','',0,0,0,0,971,'','165','','','','N','darshan','darshan','2025-10-17 17:52:03','','0000-00-00 00:00:00'),(311,0,0,'I',2526,311,'I000311','2025-10-17',1156,'','','0000-00-00','','',0,0,0,0,965,'','165','','','','N','darshan','darshan','2025-10-17 17:57:52','','0000-00-00 00:00:00'),(312,0,0,'I',2526,312,'I000312','2025-10-17',1166,'','','0000-00-00','','',0,0,0,0,972,'','165','','','','N','darshan','darshan','2025-10-17 18:10:58','','0000-00-00 00:00:00'),(313,0,0,'I',2526,313,'I000313','2025-10-17',1152,'','','0000-00-00','','',0,0,0,0,961,'','165','','','','N','darshan','darshan','2025-10-17 18:22:02','','0000-00-00 00:00:00'),(314,0,0,'I',2526,314,'I000314','2025-10-17',1169,'','','0000-00-00','','',0,0,0,0,974,'','165','','','','N','darshan','darshan','2025-10-17 18:25:14','','0000-00-00 00:00:00'),(315,0,0,'I',2526,315,'I000315','2025-10-17',1182,'','','0000-00-00','','',0,0,0,0,986,'','165','','','','N','drarchit','drarchit','2025-10-17 18:28:49','','0000-00-00 00:00:00'),(316,0,0,'I',2526,316,'I000316','2025-10-17',1174,'','','0000-00-00','','',0,0,0,0,979,'','165','','','','N','darshan','darshan','2025-10-17 18:29:24','','0000-00-00 00:00:00'),(317,0,0,'I',2526,317,'I000317','2025-10-17',1187,'','','0000-00-00','','',0,0,0,0,201,'','165','','','','N','darshan','darshan','2025-10-17 18:39:02','','0000-00-00 00:00:00'),(318,0,0,'I',2526,318,'I000318','2025-10-17',1123,'','','0000-00-00','','',0,0,0,0,945,'','165','','','','N','darshan','darshan','2025-10-17 18:56:21','','0000-00-00 00:00:00'),(319,0,0,'I',2526,319,'I000319','2025-10-17',1180,'','','0000-00-00','','',0,0,0,0,984,'','165','','','','N','darshan','darshan','2025-10-17 18:59:23','','0000-00-00 00:00:00'),(320,0,0,'I',2526,320,'I000320','2025-10-17',1184,'','','0000-00-00','','',0,0,0,0,988,'','165','','','','N','drarchit','drarchit','2025-10-17 19:01:13','','0000-00-00 00:00:00'),(321,0,0,'I',2526,321,'I000321','2025-10-17',1195,'','','0000-00-00','','',0,0,0,0,995,'','165','','','','N','darshan','darshan','2025-10-17 19:03:32','','0000-00-00 00:00:00'),(322,0,0,'I',2526,322,'I000322','2025-10-17',1160,'','','0000-00-00','','',0,0,0,0,968,'','165','','','','N','darshan','darshan','2025-10-17 19:17:41','','0000-00-00 00:00:00'),(323,0,0,'I',2526,323,'I000323','2025-10-17',1173,'','','0000-00-00','','',0,0,0,0,978,'','165','','','','N','darshan','darshan','2025-10-17 19:23:43','','0000-00-00 00:00:00'),(324,0,0,'I',2526,324,'I000324','2025-10-17',1019,'','','0000-00-00','','',0,0,0,0,862,'','165','','','','N','darshan','darshan','2025-10-17 19:33:55','','0000-00-00 00:00:00'),(325,0,0,'I',2526,325,'I000325','2025-10-17',1204,'','','0000-00-00','','',0,0,0,0,1000,'','165','','','','N','darshan','darshan','2025-10-17 19:37:09','','0000-00-00 00:00:00'),(326,0,0,'I',2526,326,'I000326','2025-10-17',1178,'','','0000-00-00','','',0,0,0,0,982,'','165','','','','N','darshan','darshan','2025-10-17 19:43:30','','0000-00-00 00:00:00'),(327,0,0,'I',2526,327,'I000327','2025-10-17',1170,'','','0000-00-00','','',0,0,0,0,975,'','165','','','','N','darshan','darshan','2025-10-17 19:48:48','','0000-00-00 00:00:00'),(328,0,0,'I',2526,328,'I000328','2025-10-17',1175,'','','0000-00-00','','',0,0,0,0,980,'','165','','','','N','darshan','darshan','2025-10-17 19:54:10','','0000-00-00 00:00:00'),(329,0,0,'I',2526,329,'I000329','2025-10-17',1194,'','','0000-00-00','','',0,0,0,0,994,'','165','','','','N','darshan','darshan','2025-10-17 20:05:12','','0000-00-00 00:00:00'),(330,0,0,'I',2526,330,'I000330','2025-10-17',1181,'','','0000-00-00','','',0,0,0,0,985,'','165','','','','N','darshan','darshan','2025-10-17 20:10:37','','0000-00-00 00:00:00'),(331,0,0,'I',2526,331,'I000331','2025-10-17',1186,'','','0000-00-00','','',0,0,0,0,990,'','165','','','','N','darshan','darshan','2025-10-17 20:17:49','','0000-00-00 00:00:00'),(332,0,0,'I',2526,332,'I000332','2025-10-17',1197,'','','0000-00-00','','',0,0,0,0,996,'','165','','','','N','darshan','darshan','2025-10-17 20:20:43','','0000-00-00 00:00:00'),(333,0,0,'I',2526,333,'I000333','2025-10-17',1212,'','','0000-00-00','','',0,0,0,0,1007,'','165','','','','N','darshan','darshan','2025-10-17 20:26:00','','0000-00-00 00:00:00'),(334,0,0,'I',2526,334,'I000334','2025-10-18',1223,'','','0000-00-00','','',0,0,0,0,1016,'','165','','','','N','darshan','darshan','2025-10-18 11:06:33','','0000-00-00 00:00:00'),(335,0,0,'I',2526,335,'I000335','2025-10-18',1218,'','','0000-00-00','','',0,0,0,0,1012,'','165','','','','N','darshan','darshan','2025-10-18 11:09:44','','0000-00-00 00:00:00'),(336,0,0,'I',2526,336,'I000336','2025-10-18',1232,'','','0000-00-00','','',0,0,0,0,1022,'','165','','','','N','darshan','darshan','2025-10-18 11:24:29','','0000-00-00 00:00:00'),(337,0,0,'I',2526,337,'I000337','2025-10-18',1231,'','','0000-00-00','','',0,0,0,0,1021,'','165','','','','N','darshan','darshan','2025-10-18 11:27:02','','0000-00-00 00:00:00'),(338,0,0,'I',2526,338,'I000338','2025-10-18',1219,'','','0000-00-00','','',0,0,0,0,1013,'','165','','','','N','darshan','darshan','2025-10-18 11:31:13','','0000-00-00 00:00:00'),(339,0,0,'I',2526,339,'I000339','2025-10-18',1221,'','','0000-00-00','','',0,0,0,0,1014,'','165','','','','N','darshan','darshan','2025-10-18 11:36:26','','0000-00-00 00:00:00'),(340,0,0,'I',2526,340,'I000340','2025-10-18',1244,'','','0000-00-00','','',0,0,0,0,1031,'','165','','','','N','darshan','darshan','2025-10-18 12:06:00','','0000-00-00 00:00:00'),(341,0,0,'I',2526,341,'I000341','2025-10-18',1238,'','','0000-00-00','','',0,0,0,0,1026,'','165','','','','N','darshan','darshan','2025-10-18 12:25:04','','0000-00-00 00:00:00'),(342,0,0,'I',2526,342,'I000342','2025-10-18',1247,'','','0000-00-00','','',0,0,0,0,1032,'','165','','','','N','darshan','darshan','2025-10-18 12:28:04','','0000-00-00 00:00:00'),(343,0,0,'I',2526,343,'I000343','2025-10-18',1236,'','','0000-00-00','','',0,0,0,0,76,'','165','','','','N','darshan','darshan','2025-10-18 12:31:29','','0000-00-00 00:00:00'),(344,0,0,'I',2526,344,'I000344','2025-10-18',1237,'','','0000-00-00','','',0,0,0,0,1025,'','165','','','','N','darshan','darshan','2025-10-18 12:39:26','','0000-00-00 00:00:00'),(345,0,0,'I',2526,345,'I000345','2025-10-18',1072,'','','0000-00-00','','',0,0,0,0,0,'','165','','','','N','mo','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(346,0,0,'I',2526,346,'I000346','2025-10-18',1198,'','','0000-00-00','','',0,0,0,0,997,'','165','','','','N','darshan','darshan','2025-10-18 12:54:12','','0000-00-00 00:00:00'),(347,0,0,'I',2526,347,'I000347','2025-10-18',1256,'','','0000-00-00','','',0,0,0,0,1041,'','165','','','','N','darshan','darshan','2025-10-18 12:57:53','','0000-00-00 00:00:00'),(348,0,0,'I',2526,348,'I000348','2025-10-18',1217,'','','0000-00-00','','',0,0,0,0,1011,'','165','','','','N','darshan','darshan','2025-10-18 13:00:32','','0000-00-00 00:00:00'),(349,0,0,'I',2526,349,'I000349','2025-10-18',1240,'','','0000-00-00','','',0,0,0,0,1028,'','165','','','','N','darshan','darshan','2025-10-18 13:07:34','','0000-00-00 00:00:00'),(350,0,0,'I',2526,350,'I000350','2025-10-18',1234,'','','0000-00-00','','',0,0,0,0,1024,'','165','','','','N','darshan','darshan','2025-10-18 13:12:38','','0000-00-00 00:00:00'),(351,0,0,'I',2526,351,'I000351','2025-10-18',1265,'','','0000-00-00','','',0,0,0,0,1050,'','165','','','','N','darshan','darshan','2025-10-18 13:16:21','','0000-00-00 00:00:00'),(352,0,0,'I',2526,352,'I000352','2025-10-18',1261,'','','0000-00-00','','',0,0,0,0,1046,'','165','','','','N','darshan','darshan','2025-10-18 13:19:02','','0000-00-00 00:00:00'),(353,0,0,'I',2526,353,'I000353','2025-10-18',1268,'','','0000-00-00','','',0,0,0,0,1051,'','165','','','','N','darshan','darshan','2025-10-18 13:21:36','','0000-00-00 00:00:00'),(354,0,0,'I',2526,354,'I000354','2025-10-18',1251,'','','0000-00-00','','',0,0,0,0,1036,'','165','','','','N','darshan','darshan','2025-10-18 13:35:20','','0000-00-00 00:00:00'),(355,0,0,'I',2526,355,'I000355','2025-10-18',1252,'','','0000-00-00','','',0,0,0,0,1037,'','165','','','','N','darshan','darshan','2025-10-18 13:40:40','','0000-00-00 00:00:00'),(356,0,0,'I',2526,356,'I000356','2025-10-18',1253,'','','0000-00-00','','',0,0,0,0,1038,'','165','','','','N','darshan','darshan','2025-10-18 13:47:45','','0000-00-00 00:00:00'),(357,0,0,'I',2526,357,'I000357','2025-10-18',1239,'','','0000-00-00','','',0,0,0,0,1027,'','165','','','','N','darshan','darshan','2025-10-18 13:52:25','','0000-00-00 00:00:00'),(358,0,0,'I',2526,358,'I000358','2025-10-18',1254,'','','0000-00-00','','',0,0,0,0,1039,'','165','','','','N','darshan','darshan','2025-10-18 13:59:58','','0000-00-00 00:00:00'),(359,0,0,'I',2526,359,'I000359','2025-10-18',1255,'','','0000-00-00','','',0,0,0,0,1040,'','165','','','','N','darshan','darshan','2025-10-18 14:03:09','','0000-00-00 00:00:00'),(360,0,0,'I',2526,360,'I000360','2025-10-18',1225,'','','0000-00-00','','',0,0,0,0,1017,'','165','','','','N','darshan','darshan','2025-10-18 14:07:03','','0000-00-00 00:00:00'),(361,0,0,'I',2526,361,'I000361','2025-10-18',1257,'','','0000-00-00','','',0,0,0,0,1042,'','165','','','','N','darshan','darshan','2025-10-18 14:12:31','','0000-00-00 00:00:00'),(362,0,0,'I',2526,362,'I000362','2025-10-18',1259,'','','0000-00-00','','',0,0,0,0,1044,'','165','','','','N','darshan','darshan','2025-10-18 14:18:40','','0000-00-00 00:00:00'),(363,0,0,'I',2526,363,'I000363','2025-10-18',1260,'','','0000-00-00','','',0,0,0,0,1045,'','165','','','','N','darshan','darshan','2025-10-18 14:34:31','','0000-00-00 00:00:00'),(364,0,0,'I',2526,364,'I000364','2025-10-18',1270,'','','0000-00-00','','',0,0,0,0,1053,'','165','','','','N','darshan','darshan','2025-10-18 14:50:16','','0000-00-00 00:00:00'),(365,0,0,'I',2526,365,'I000365','2025-10-18',1233,'','','0000-00-00','','',0,0,0,0,1023,'','165','','','','N','darshan','darshan','2025-10-18 14:52:10','','0000-00-00 00:00:00'),(366,0,0,'I',2526,366,'I000366','2025-10-18',1263,'','','0000-00-00','','',0,0,0,0,1048,'','165','','','','N','darshan','darshan','2025-10-18 14:55:44','','0000-00-00 00:00:00'),(367,0,0,'I',2526,367,'I000367','2025-10-18',1271,'','','0000-00-00','','',0,0,0,0,1054,'','165','','','','N','darshan','darshan','2025-10-18 15:00:40','','0000-00-00 00:00:00'),(368,0,0,'I',2526,368,'I000368','2025-10-18',1272,'','','0000-00-00','','',0,0,0,0,1055,'','165','','','','N','darshan','darshan','2025-10-18 15:08:06','','0000-00-00 00:00:00'),(369,0,0,'I',2526,369,'I000369','2025-10-18',1277,'','','0000-00-00','','',0,0,0,0,1058,'','165','','','','N','darshan','darshan','2025-10-18 15:17:06','','0000-00-00 00:00:00'),(370,0,0,'I',2526,370,'I000370','2025-10-19',1279,'','','0000-00-00','','',0,0,0,0,0,'','165','','','','N','mo','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(371,0,0,'I',2526,371,'I000371','2025-10-23',1345,'','','0000-00-00','','',0,0,0,0,1099,'','165','','','','N','darshan','darshan','2025-10-23 18:08:48','','0000-00-00 00:00:00'),(372,0,0,'I',2526,372,'I000372','2025-10-23',1342,'','','0000-00-00','','',0,0,0,0,1096,'','165','','','','N','darshan','darshan','2025-10-23 18:30:44','','0000-00-00 00:00:00'),(373,0,0,'I',2526,373,'I000373','2025-10-23',1344,'','','0000-00-00','','',0,0,0,0,1098,'','165','','','','N','darshan','darshan','2025-10-23 18:41:05','','0000-00-00 00:00:00'),(374,0,0,'I',2526,374,'I000374','2025-10-23',1343,'','','0000-00-00','','',0,0,0,0,1097,'','165','','','','N','darshan','darshan','2025-10-23 18:55:41','','0000-00-00 00:00:00'),(375,0,0,'I',2526,375,'I000375','2025-10-23',1347,'','','0000-00-00','','',0,0,0,0,1101,'','165','','','','N','darshan','darshan','2025-10-23 19:23:06','','0000-00-00 00:00:00'),(376,0,0,'I',2526,376,'I000376','2025-10-24',1339,'','','0000-00-00','','',0,0,0,0,0,'','165','','','','N','mo','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(377,0,0,'I',2526,377,'I000377','2025-10-24',1368,'','','0000-00-00','','',0,0,0,0,1117,'','165','','','','N','darshan','darshan','2025-10-24 10:49:06','','0000-00-00 00:00:00'),(378,0,0,'I',2526,378,'I000378','2025-10-24',1371,'','','0000-00-00','','',0,0,0,0,1118,'','165','','','','N','darshan','darshan','2025-10-24 10:59:41','','0000-00-00 00:00:00'),(379,0,0,'I',2526,379,'I000379','2025-10-24',1372,'','','0000-00-00','','',0,0,0,0,1119,'','165','','','','N','darshan','darshan','2025-10-24 11:05:15','','0000-00-00 00:00:00'),(380,0,0,'I',2526,380,'I000380','2025-10-24',1373,'','','0000-00-00','','',0,0,0,0,1120,'','165','','','','N','darshan','darshan','2025-10-24 11:13:31','','0000-00-00 00:00:00'),(381,0,0,'I',2526,381,'I000381','2025-10-24',1382,'','','0000-00-00','','',0,0,0,0,1128,'','165','','','','N','darshan','darshan','2025-10-24 11:55:11','','0000-00-00 00:00:00'),(382,0,0,'I',2526,382,'I000382','2025-10-24',1383,'','','0000-00-00','','',0,0,0,0,1129,'','165','','','','N','darshan','darshan','2025-10-24 11:59:54','','0000-00-00 00:00:00'),(383,0,0,'I',2526,383,'I000383','2025-10-24',1384,'','','0000-00-00','','',0,0,0,0,340,'','165','','','','N','darshan','darshan','2025-10-24 12:08:41','','0000-00-00 00:00:00'),(384,0,0,'I',2526,384,'I000384','2025-10-24',1396,'','','0000-00-00','','',0,0,0,0,1137,'','165','','','','N','darshan','darshan','2025-10-24 12:44:08','','0000-00-00 00:00:00'),(385,0,0,'I',2526,385,'I000385','2025-10-24',1385,'','','0000-00-00','','',0,0,0,0,1130,'','165','','','','N','darshan','darshan','2025-10-24 13:04:24','','0000-00-00 00:00:00'),(386,0,0,'I',2526,386,'I000386','2025-10-24',1394,'','','0000-00-00','','',0,0,0,0,1135,'','165','','','','N','darshan','darshan','2025-10-24 13:25:17','','0000-00-00 00:00:00'),(387,0,0,'I',2526,387,'I000387','2025-10-24',1401,'','','0000-00-00','','',0,0,0,0,424,'','165','','','','N','darshan','darshan','2025-10-24 13:28:55','','0000-00-00 00:00:00'),(388,0,0,'I',2526,388,'I000388','2025-10-24',1395,'','','0000-00-00','','',0,0,0,0,1136,'','165','','','','N','darshan','darshan','2025-10-24 13:47:14','','0000-00-00 00:00:00'),(389,0,0,'I',2526,389,'I000389','2025-10-24',1406,'','','0000-00-00','','',0,0,0,0,1141,'','165','','','','N','darshan','darshan','2025-10-24 17:20:22','','0000-00-00 00:00:00'),(390,0,0,'I',2526,390,'I000390','2025-10-24',1409,'','','0000-00-00','','',0,0,0,0,1144,'','165','','','','N','darshan','darshan','2025-10-24 17:33:14','','0000-00-00 00:00:00'),(391,0,0,'I',2526,391,'I000391','2025-10-24',1408,'','','0000-00-00','','',0,0,0,0,1143,'','165','','','','N','darshan','darshan','2025-10-24 17:57:56','','0000-00-00 00:00:00'),(392,0,0,'I',2526,392,'I000392','2025-10-24',1423,'','','0000-00-00','','',0,0,0,0,362,'','165','','','','N','darshan','darshan','2025-10-24 18:36:01','','0000-00-00 00:00:00'),(393,0,0,'I',2526,393,'I000393','2025-10-24',1415,'','','0000-00-00','','',0,0,0,0,1146,'','165','','','','N','darshan','darshan','2025-10-24 18:49:26','','0000-00-00 00:00:00'),(394,0,0,'I',2526,394,'I000394','2025-10-24',1427,'','','0000-00-00','','',0,0,0,0,1154,'','165','','','','N','darshan','darshan','2025-10-24 19:09:26','','0000-00-00 00:00:00'),(395,0,0,'I',2526,395,'I000395','2025-10-24',1416,'','','0000-00-00','','',0,0,0,0,1147,'','165','','','','N','darshan','darshan','2025-10-24 19:14:19','','0000-00-00 00:00:00'),(396,0,0,'I',2526,396,'I000396','2025-10-24',1426,'','','0000-00-00','','',0,0,0,0,1153,'','165','','','','N','darshan','darshan','2025-10-24 19:21:03','','0000-00-00 00:00:00'),(397,0,0,'I',2526,397,'I000397','2025-10-24',1435,'','','0000-00-00','','',0,0,0,0,1161,'','165','','','','N','drjayant','drjayant','2025-10-24 19:33:41','','0000-00-00 00:00:00'),(398,0,0,'I',2526,398,'I000398','2025-10-24',1420,'','','0000-00-00','','',0,0,0,0,1089,'','165','','','','N','darshan','darshan','2025-10-24 19:40:26','','0000-00-00 00:00:00'),(399,0,0,'I',2526,399,'I000399','2025-10-25',1445,'','','0000-00-00','','',0,0,0,0,1167,'','165','','','','N','darshan','darshan','2025-10-25 10:38:32','','0000-00-00 00:00:00'),(400,0,0,'I',2526,400,'I000400','2025-10-25',1448,'','','0000-00-00','','',0,0,0,0,1170,'','165','','','','N','darshan','darshan','2025-10-25 11:05:38','','0000-00-00 00:00:00'),(401,0,0,'I',2526,401,'I000401','2025-10-25',1449,'','','0000-00-00','','',0,0,0,0,1171,'','165','','','','N','darshan','darshan','2025-10-25 11:12:00','','0000-00-00 00:00:00'),(402,0,0,'I',2526,402,'I000402','2025-10-25',1452,'','','0000-00-00','','',0,0,0,0,1174,'','165','','','','N','darshan','darshan','2025-10-25 11:31:20','','0000-00-00 00:00:00'),(403,0,0,'I',2526,403,'I000403','2025-10-25',1451,'','','0000-00-00','','',0,0,0,0,1173,'','165','','','','N','darshan','darshan','2025-10-25 11:35:44','','0000-00-00 00:00:00'),(404,0,0,'I',2526,404,'I000404','2025-10-25',1455,'','','0000-00-00','','',0,0,0,0,1177,'','165','','','','N','darshan','darshan','2025-10-25 11:44:09','','0000-00-00 00:00:00'),(405,0,0,'I',2526,405,'I000405','2025-10-25',1461,'','','0000-00-00','','',0,0,0,0,1183,'','165','','','','N','darshan','darshan','2025-10-25 11:49:51','','0000-00-00 00:00:00'),(406,0,0,'I',2526,406,'I000406','2025-10-25',1457,'','','0000-00-00','','',0,0,0,0,1179,'','165','','','','N','darshan','darshan','2025-10-25 11:56:34','','0000-00-00 00:00:00'),(407,0,0,'I',2526,407,'I000407','2025-10-25',1463,'','','0000-00-00','','',0,0,0,0,1185,'','165','','','','N','darshan','darshan','2025-10-25 12:00:18','','0000-00-00 00:00:00'),(408,0,0,'I',2526,408,'I000408','2025-10-25',1466,'','','0000-00-00','','',0,0,0,0,1188,'','165','','','','N','darshan','darshan','2025-10-25 12:14:03','','0000-00-00 00:00:00'),(409,0,0,'I',2526,409,'I000409','2025-10-25',1469,'','','0000-00-00','','',0,0,0,0,1191,'','165','','','','N','darshan','darshan','2025-10-25 12:26:45','','0000-00-00 00:00:00'),(410,0,0,'I',2526,410,'I000410','2025-10-25',1446,'','','0000-00-00','','',0,0,0,0,1168,'','165','','','','N','darshan','darshan','2025-10-25 12:32:45','','0000-00-00 00:00:00'),(411,0,0,'I',2526,411,'I000411','2025-10-25',1470,'','','0000-00-00','','',0,0,0,0,1192,'','165','','','','N','darshan','darshan','2025-10-25 12:43:31','','0000-00-00 00:00:00'),(412,0,0,'I',2526,412,'I000412','2025-10-25',1472,'','','0000-00-00','','',0,0,0,0,1194,'','165','','','','N','darshan','darshan','2025-10-25 12:48:05','','0000-00-00 00:00:00'),(413,0,0,'I',2526,413,'I000413','2025-10-25',1447,'','','0000-00-00','','',0,0,0,0,1169,'','165','','','','N','darshan','darshan','2025-10-25 12:55:35','','0000-00-00 00:00:00'),(414,0,0,'I',2526,414,'I000414','2025-10-25',1453,'','','0000-00-00','','',0,0,0,0,1175,'','165','','','','N','darshan','darshan','2025-10-25 13:01:06','','0000-00-00 00:00:00'),(415,0,0,'I',2526,415,'I000415','2025-10-25',1464,'','','0000-00-00','','',0,0,0,0,1186,'','165','','','','N','darshan','darshan','2025-10-25 13:13:23','','0000-00-00 00:00:00'),(416,0,0,'I',2526,416,'I000416','2025-10-25',1475,'','','0000-00-00','','',0,0,0,0,1196,'','165','','','','N','darshan','darshan','2025-10-25 13:18:18','','0000-00-00 00:00:00'),(417,0,0,'I',2526,417,'I000417','2025-10-25',1479,'','','0000-00-00','','',0,0,0,0,216,'','165','','','','N','darshan','darshan','2025-10-25 13:33:01','','0000-00-00 00:00:00'),(418,0,0,'I',2526,418,'I000418','2025-10-25',1468,'','','0000-00-00','','',0,0,0,0,1190,'','165','','','','N','darshan','darshan','2025-10-25 13:46:49','','0000-00-00 00:00:00'),(419,0,0,'I',2526,419,'I000419','2025-10-25',1481,'','','0000-00-00','','',0,0,0,0,1199,'','165','','','','N','darshan','darshan','2025-10-25 13:57:06','','0000-00-00 00:00:00'),(420,0,0,'I',2526,420,'I000420','2025-10-25',1467,'','','0000-00-00','','',0,0,0,0,1189,'','165','','','','N','darshan','darshan','2025-10-25 14:02:38','','0000-00-00 00:00:00'),(421,0,0,'I',2526,421,'I000421','2025-10-25',1484,'','','0000-00-00','','',0,0,0,0,1202,'','165','','','','N','darshan','darshan','2025-10-25 14:23:31','','0000-00-00 00:00:00'),(422,0,0,'I',2526,422,'I000422','2025-10-27',1508,'','','0000-00-00','','',0,0,0,0,1214,'','165','','','','N','drarchit','drarchit','2025-10-27 10:47:08','','0000-00-00 00:00:00'),(423,0,0,'I',2526,423,'I000423','2025-10-27',1518,'','','0000-00-00','','',0,0,0,0,1222,'','165','','','','N','drarchit','drarchit','2025-10-27 10:57:34','','0000-00-00 00:00:00'),(424,0,0,'I',2526,424,'I000424','2025-10-27',1531,'','','0000-00-00','','',0,0,0,0,865,'','165','','','','N','darshan','darshan','2025-10-27 11:04:38','','0000-00-00 00:00:00'),(425,0,0,'I',2526,425,'I000425','2025-10-27',1524,'','','0000-00-00','','',0,0,0,0,1226,'','165','','','','N','darshan','darshan','2025-10-27 11:07:39','','0000-00-00 00:00:00'),(426,0,0,'I',2526,426,'I000426','2025-10-27',1534,'','','0000-00-00','','',0,0,0,0,1234,'','165','','','','N','darshan','darshan','2025-10-27 11:11:29','','0000-00-00 00:00:00'),(427,0,0,'I',2526,427,'I000427','2025-10-27',1556,'','','0000-00-00','','',0,0,0,0,1250,'','165','','','','N','darshan','darshan','2025-10-27 11:46:14','','0000-00-00 00:00:00'),(428,0,0,'I',2526,428,'I000428','2025-10-27',1528,'','','0000-00-00','','',0,0,0,0,1229,'','165','','','','N','darshan','darshan','2025-10-27 11:57:04','','0000-00-00 00:00:00'),(429,0,0,'I',2526,429,'I000429','2025-10-27',1568,'','','0000-00-00','','',0,0,0,0,1257,'','165','','','','N','darshan','darshan','2025-10-27 12:00:45','','0000-00-00 00:00:00'),(430,0,0,'I',2526,430,'I000430','2025-10-27',1570,'','','0000-00-00','','',0,0,0,0,1258,'','165','','','','N','darshan','darshan','2025-10-27 12:24:45','','0000-00-00 00:00:00'),(431,0,0,'I',2526,431,'I000431','2025-10-27',1538,'','','0000-00-00','','',0,0,0,0,1237,'','165','','','','N','darshan','darshan','2025-10-27 12:29:24','','0000-00-00 00:00:00'),(432,0,0,'I',2526,432,'I000432','2025-10-27',1544,'','','0000-00-00','','',0,0,0,0,1242,'','165','','','','N','darshan','darshan','2025-10-27 12:40:30','','0000-00-00 00:00:00'),(433,0,0,'I',2526,433,'I000433','2025-10-27',1527,'','','0000-00-00','','',0,0,0,0,1228,'','165','','','','N','darshan','darshan','2025-10-27 13:02:11','','0000-00-00 00:00:00'),(434,0,0,'I',2526,434,'I000434','2025-10-27',1553,'','','0000-00-00','','',0,0,0,0,1248,'','165','','','','N','darshan','darshan','2025-10-27 13:11:51','','0000-00-00 00:00:00'),(435,0,0,'I',2526,435,'I000435','2025-10-27',1551,'','','0000-00-00','','',0,0,0,0,1247,'','165','','','','N','darshan','darshan','2025-10-27 13:15:05','','0000-00-00 00:00:00'),(436,0,0,'I',2526,436,'I000436','2025-10-27',1554,'','','0000-00-00','','',0,0,0,0,1249,'','165','','','','N','darshan','darshan','2025-10-27 13:21:13','','0000-00-00 00:00:00'),(437,0,0,'I',2526,437,'I000437','2025-10-27',1561,'','','0000-00-00','','',0,0,0,0,1253,'','165','','','','N','darshan','darshan','2025-10-27 13:26:12','','0000-00-00 00:00:00'),(438,0,0,'I',2526,438,'I000438','2025-10-27',1540,'','','0000-00-00','','',0,0,0,0,1239,'','165','','','','N','darshan','darshan','2025-10-27 13:31:14','','0000-00-00 00:00:00'),(439,0,0,'I',2526,439,'I000439','2025-10-27',1591,'','','0000-00-00','','',0,0,0,0,1272,'','165','','','','N','darshan','darshan','2025-10-27 13:36:00','','0000-00-00 00:00:00'),(440,0,0,'I',2526,440,'I000440','2025-10-27',1529,'','','0000-00-00','','',0,0,0,0,1230,'','165','','','','N','darshan','darshan','2025-10-27 13:40:32','','0000-00-00 00:00:00'),(441,0,0,'I',2526,441,'I000441','2025-10-27',1560,'','','0000-00-00','','',0,0,0,0,1252,'','165','','','','N','darshan','darshan','2025-10-27 13:44:13','','0000-00-00 00:00:00'),(442,0,0,'I',2526,442,'I000442','2025-10-27',1533,'','','0000-00-00','','',0,0,0,0,1233,'','165','','','','N','darshan','darshan','2025-10-27 13:59:34','','0000-00-00 00:00:00'),(443,0,0,'I',2526,443,'I000443','2025-10-27',1541,'','','0000-00-00','','',0,0,0,0,1240,'','165','','','','N','darshan','darshan','2025-10-27 14:08:44','','0000-00-00 00:00:00'),(444,0,0,'I',2526,444,'I000444','2025-10-27',1597,'','','0000-00-00','','',0,0,0,0,1275,'','165','','','','N','darshan','darshan','2025-10-27 14:12:06','','0000-00-00 00:00:00'),(445,0,0,'I',2526,445,'I000445','2025-10-27',1586,'','','0000-00-00','','',0,0,0,0,1269,'','165','','','','N','darshan','darshan','2025-10-27 14:17:57','','0000-00-00 00:00:00'),(446,0,0,'I',2526,446,'I000446','2025-10-27',1600,'','','0000-00-00','','',0,0,0,0,1277,'','165','','','','N','darshan','darshan','2025-10-27 14:54:55','','0000-00-00 00:00:00'),(447,0,0,'I',2526,447,'I000447','2025-10-27',1587,'','','0000-00-00','','',0,0,0,0,1270,'','165','','','','N','darshan','darshan','2025-10-27 14:57:15','','0000-00-00 00:00:00'),(448,0,0,'I',2526,448,'I000448','2025-10-27',1607,'','','0000-00-00','','',0,0,0,0,1282,'','165','','','','N','darshan','darshan','2025-10-27 17:03:08','','0000-00-00 00:00:00'),(449,0,0,'I',2526,449,'I000449','2025-10-27',1610,'','','0000-00-00','','',0,0,0,0,1284,'','165','','','','N','darshan','darshan','2025-10-27 17:22:12','','0000-00-00 00:00:00'),(450,0,0,'I',2526,450,'I000450','2025-10-27',1609,'','','0000-00-00','','',0,0,0,0,982,'','165','','','','N','darshan','darshan','2025-10-27 17:32:49','','0000-00-00 00:00:00'),(451,0,0,'I',2526,451,'I000451','2025-10-27',1612,'','','0000-00-00','','',0,0,0,0,79,'','165','','','','N','darshan','darshan','2025-10-27 17:36:29','','0000-00-00 00:00:00'),(452,0,0,'I',2526,452,'I000452','2025-10-27',1614,'','','0000-00-00','','',0,0,0,0,1286,'','165','','','','N','darshan','darshan','2025-10-27 17:51:37','','0000-00-00 00:00:00'),(453,0,0,'I',2526,453,'I000453','2025-10-27',1621,'','','0000-00-00','','',0,0,0,0,1290,'','165','','','','N','darshan','darshan','2025-10-27 18:16:44','','0000-00-00 00:00:00'),(454,0,0,'I',2526,454,'I000454','2025-10-27',1606,'','','0000-00-00','','',0,0,0,0,1281,'','165','','','','N','darshan','darshan','2025-10-27 18:25:41','','0000-00-00 00:00:00'),(455,0,0,'I',2526,455,'I000455','2025-10-27',1624,'','','0000-00-00','','',0,0,0,0,1292,'','165','','','','N','darshan','darshan','2025-10-27 18:34:16','','0000-00-00 00:00:00'),(456,0,0,'I',2526,456,'I000456','2025-10-27',1629,'','','0000-00-00','','',0,0,0,0,1295,'','165','','','','N','darshan','darshan','2025-10-27 18:42:38','','0000-00-00 00:00:00'),(457,0,0,'I',2526,457,'I000457','2025-10-27',1632,'','','0000-00-00','','',0,0,0,0,1298,'','165','','','','N','darshan','darshan','2025-10-27 18:48:26','','0000-00-00 00:00:00'),(458,0,0,'I',2526,458,'I000458','2025-10-27',1602,'','','0000-00-00','','',0,0,0,0,1278,'','165','','','','N','darshan','darshan','2025-10-27 18:53:20','','0000-00-00 00:00:00'),(459,0,0,'I',2526,459,'I000459','2025-10-27',1633,'','','0000-00-00','','',0,0,0,0,1299,'','165','','','','N','darshan','darshan','2025-10-27 18:59:40','','0000-00-00 00:00:00'),(460,0,0,'I',2526,460,'I000460','2025-10-27',1641,'','','0000-00-00','','',0,0,0,0,1306,'','165','','','','N','darshan','darshan','2025-10-27 19:01:07','','0000-00-00 00:00:00'),(461,0,0,'I',2526,461,'I000461','2025-10-27',1608,'','','0000-00-00','','',0,0,0,0,1283,'','165','','','','N','darshan','darshan','2025-10-27 19:07:56','','0000-00-00 00:00:00'),(462,0,0,'I',2526,462,'I000462','2025-10-27',1613,'','','0000-00-00','','',0,0,0,0,1285,'','165','','','','N','darshan','darshan','2025-10-27 19:20:16','','0000-00-00 00:00:00'),(463,0,0,'I',2526,463,'I000463','2025-10-27',1649,'','','0000-00-00','','',0,0,0,0,1312,'','165','','','','N','darshan','darshan','2025-10-27 19:30:24','','0000-00-00 00:00:00'),(464,0,0,'I',2526,464,'I000464','2025-10-27',1617,'','','0000-00-00','','',0,0,0,0,1287,'','165','','','','N','darshan','darshan','2025-10-27 19:37:10','','0000-00-00 00:00:00'),(465,0,0,'I',2526,465,'I000465','2025-10-27',1622,'','','0000-00-00','','',0,0,0,0,1291,'','165','','','','N','darshan','darshan','2025-10-27 19:45:21','','0000-00-00 00:00:00'),(466,0,0,'I',2526,466,'I000466','2025-10-27',1644,'','','0000-00-00','','',0,0,0,0,1308,'','165','','','','N','darshan','darshan','2025-10-27 19:48:03','','0000-00-00 00:00:00'),(467,0,0,'I',2526,467,'I000467','2025-10-27',1646,'','','0000-00-00','','',0,0,0,0,1310,'','165','','','','N','darshan','darshan','2025-10-27 19:59:08','','0000-00-00 00:00:00'),(468,0,0,'I',2526,468,'I000468','2025-10-27',1651,'','','0000-00-00','','',0,0,0,0,1314,'','165','','','','N','darshan','darshan','2025-10-27 20:25:35','','0000-00-00 00:00:00'),(469,0,0,'I',2526,469,'I000469','2025-10-27',1654,'','','0000-00-00','','',0,0,0,0,1315,'','165','','','','N','darshan','darshan','2025-10-27 20:40:10','','0000-00-00 00:00:00'),(470,0,0,'I',2526,470,'I000470','0000-00-00',1506,'','','0000-00-00','','',0,0,0,0,0,'','165','','','','N','mo','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(471,0,0,'I',2526,471,'I000471','2025-10-28',1664,'','','0000-00-00','','',0,0,0,0,1324,'','165','','','','N','darshan','darshan','2025-10-28 11:10:27','','0000-00-00 00:00:00'),(472,0,0,'I',2526,472,'I000472','2025-10-28',1670,'','','0000-00-00','','',0,0,0,0,1330,'','165','','','','N','drjayant','drjayant','2025-10-28 11:21:57','','0000-00-00 00:00:00'),(473,0,0,'I',2526,473,'I000473','2025-10-28',1680,'','','0000-00-00','','',0,0,0,0,1338,'','165','','','','N','darshan','darshan','2025-10-28 11:27:05','','0000-00-00 00:00:00'),(474,0,0,'I',2526,474,'I000474','2025-10-28',1683,'','','0000-00-00','','',0,0,0,0,521,'','165','','','','N','darshan','darshan','2025-10-28 11:38:37','','0000-00-00 00:00:00'),(475,0,0,'I',2526,475,'I000475','2025-10-28',1684,'','','0000-00-00','','',0,0,0,0,1340,'','165','','','','N','darshan','darshan','2025-10-28 11:43:33','','0000-00-00 00:00:00'),(476,0,0,'I',2526,476,'I000476','2025-10-28',1677,'','','0000-00-00','','',0,0,0,0,1337,'','165','','','','N','drarchit','drarchit','2025-10-28 11:48:33','','0000-00-00 00:00:00'),(477,0,0,'I',2526,477,'I000477','2025-10-28',1691,'','','0000-00-00','','',0,0,0,0,1346,'','165','','','','N','darshan','darshan','2025-10-28 11:57:03','','0000-00-00 00:00:00'),(478,0,0,'I',2526,478,'I000478','2025-10-28',1678,'','','0000-00-00','','',0,0,0,0,43,'','165','','','','N','drarchit','drarchit','2025-10-28 12:01:45','','0000-00-00 00:00:00'),(479,0,0,'I',2526,479,'I000479','2025-10-28',1695,'','','0000-00-00','','',0,0,0,0,1349,'','165','','','','N','darshan','darshan','2025-10-28 12:03:06','','0000-00-00 00:00:00'),(480,0,0,'I',2526,480,'I000480','2025-10-28',1696,'','','0000-00-00','','',0,0,0,0,1350,'','165','','','','N','darshan','darshan','2025-10-28 12:08:51','','0000-00-00 00:00:00'),(481,0,0,'I',2526,481,'I000481','2025-10-28',1681,'','','0000-00-00','','',0,0,0,0,1339,'','165','','','','N','drarchit','drarchit','2025-10-28 12:13:59','','0000-00-00 00:00:00'),(482,0,0,'I',2526,482,'I000482','2025-10-28',1697,'','','0000-00-00','','',0,0,0,0,1351,'','165','','','','N','darshan','darshan','2025-10-28 12:14:20','','0000-00-00 00:00:00'),(483,0,0,'I',2526,483,'I000483','2025-10-28',1692,'','','0000-00-00','','',0,0,0,0,1347,'','165','','','','N','drarchit','drarchit','2025-10-28 12:19:19','','0000-00-00 00:00:00'),(484,0,0,'I',2526,484,'I000484','2025-10-28',1701,'','','0000-00-00','','',0,0,0,0,1354,'','165','','','','N','drarchit','drarchit','2025-10-28 12:24:28','','0000-00-00 00:00:00'),(485,0,0,'I',2526,485,'I000485','2025-10-28',1706,'','','0000-00-00','','',0,0,0,0,1357,'','165','','','','N','darshan','darshan','2025-10-28 12:40:50','','0000-00-00 00:00:00'),(486,0,0,'I',2526,486,'I000486','2025-10-28',1698,'','','0000-00-00','','',0,0,0,0,1352,'','165','','','','N','drarchit','drarchit','2025-10-28 12:41:15','','0000-00-00 00:00:00'),(487,0,0,'I',2526,487,'I000487','2025-10-28',1710,'','','0000-00-00','','',0,0,0,0,1361,'','165','','','','N','darshan','darshan','2025-10-28 12:45:06','','0000-00-00 00:00:00'),(488,0,0,'I',2526,488,'I000488','2025-10-28',1702,'','','0000-00-00','','',0,0,0,0,1355,'','165','','','','N','drarchit','drarchit','2025-10-28 12:48:01','','0000-00-00 00:00:00'),(489,0,0,'I',2526,489,'I000489','2025-10-28',1667,'','','0000-00-00','','',0,0,0,0,1327,'','165','','','','N','darshan','darshan','2025-10-28 12:50:34','','0000-00-00 00:00:00'),(490,0,0,'I',2526,490,'I000490','2025-10-28',1716,'','','0000-00-00','','',0,0,0,0,191,'','165','','','','N','drarchit','drarchit','2025-10-28 13:10:43','','0000-00-00 00:00:00'),(491,0,0,'I',2526,491,'I000491','2025-10-28',1714,'','','0000-00-00','','',0,0,0,0,1364,'','165','','','','N','darshan','darshan','2025-10-28 13:11:48','','0000-00-00 00:00:00'),(492,0,0,'I',2526,492,'I000492','2025-10-28',1717,'','','0000-00-00','','',0,0,0,0,1366,'','165','','','','N','drarchit','drarchit','2025-10-28 13:15:23','','0000-00-00 00:00:00'),(493,0,0,'I',2526,493,'I000493','2025-10-28',1666,'','','0000-00-00','','',0,0,0,0,1326,'','165','','','','N','darshan','darshan','2025-10-28 13:28:27','','0000-00-00 00:00:00'),(494,0,0,'I',2526,494,'I000494','2025-10-28',1675,'','','0000-00-00','','',0,0,0,0,1335,'','165','','','','N','darshan','darshan','2025-10-28 13:32:45','','0000-00-00 00:00:00'),(495,0,0,'I',2526,495,'I000495','2025-10-28',1693,'','','0000-00-00','','',0,0,0,0,1348,'','165','','','','N','darshan','darshan','2025-10-28 14:04:32','','0000-00-00 00:00:00'),(496,0,0,'I',2526,496,'I000496','2025-10-28',1722,'','','0000-00-00','','',0,0,0,0,1369,'','165','','','','N','darshan','darshan','2025-10-28 14:09:08','','0000-00-00 00:00:00'),(497,0,0,'I',2526,497,'I000497','2025-10-28',1699,'','','0000-00-00','','',0,0,0,0,1353,'','165','','','','N','darshan','darshan','2025-10-28 14:13:31','','0000-00-00 00:00:00'),(498,0,0,'I',2526,498,'I000498','2025-10-28',1703,'','','0000-00-00','','',0,0,0,0,1356,'','165','','','','N','darshan','darshan','2025-10-28 14:21:17','','0000-00-00 00:00:00'),(499,0,0,'I',2526,499,'I000499','2025-10-28',1715,'','','0000-00-00','','',0,0,0,0,1365,'','165','','','','N','darshan','darshan','2025-10-28 14:30:04','','0000-00-00 00:00:00'),(500,0,0,'I',2526,500,'I000500','2025-10-28',1720,'','','0000-00-00','','',0,0,0,0,1367,'','165','','','','N','darshan','darshan','2025-10-28 14:46:55','','0000-00-00 00:00:00'),(501,0,0,'I',2526,501,'I000501','2025-10-28',1729,'','','0000-00-00','','',0,0,0,0,1372,'','165','','','','N','darshan','darshan','2025-10-28 17:26:24','','0000-00-00 00:00:00'),(502,0,0,'I',2526,502,'I000502','2025-10-28',1730,'','','0000-00-00','','',0,0,0,0,1373,'','165','','','','N','darshan','darshan','2025-10-28 17:33:25','','0000-00-00 00:00:00'),(503,0,0,'I',2526,503,'I000503','2025-10-28',1731,'','','0000-00-00','','',0,0,0,0,1374,'','165','','','','N','darshan','darshan','2025-10-28 17:44:24','','0000-00-00 00:00:00'),(504,0,0,'I',2526,504,'I000504','2025-10-28',1733,'','','0000-00-00','','',0,0,0,0,1376,'','165','','','','N','darshan','darshan','2025-10-28 17:54:24','','0000-00-00 00:00:00'),(505,0,0,'I',2526,505,'I000505','2025-10-28',1734,'','','0000-00-00','','',0,0,0,0,1377,'','165','','','','N','drjayant','drjayant','2025-10-28 17:55:57','','0000-00-00 00:00:00'),(506,0,0,'I',2526,506,'I000506','2025-10-28',1741,'','','0000-00-00','','',0,0,0,0,1384,'','165','','','','N','drjayant','drjayant','2025-10-28 18:05:42','','0000-00-00 00:00:00'),(507,0,0,'I',2526,507,'I000507','2025-10-28',1735,'','','0000-00-00','','',0,0,0,0,1378,'','165','','','','N','darshan','darshan','2025-10-28 18:07:01','','0000-00-00 00:00:00'),(508,0,0,'I',2526,508,'I000508','2025-10-28',1736,'','','0000-00-00','','',0,0,0,0,1379,'','165','','','','N','darshan','darshan','2025-10-28 18:10:11','','0000-00-00 00:00:00'),(509,0,0,'I',2526,509,'I000509','2025-10-28',1709,'','','0000-00-00','','',0,0,0,0,1360,'','165','','','','N','drarchit','drarchit','2025-10-28 18:10:21','','0000-00-00 00:00:00'),(510,0,0,'I',2526,510,'I000510','2025-10-28',1740,'','','0000-00-00','','',0,0,0,0,1383,'','165','','','','N','darshan','darshan','2025-10-28 18:14:58','','0000-00-00 00:00:00'),(511,0,0,'I',2526,511,'I000511','2025-10-28',1743,'','','0000-00-00','','',0,0,0,0,1386,'','165','','','','N','darshan','darshan','2025-10-28 18:18:09','','0000-00-00 00:00:00'),(512,0,0,'I',2526,512,'I000512','2025-10-28',1746,'','','0000-00-00','','',0,0,0,0,1389,'','165','','','','N','darshan','darshan','2025-10-28 18:23:24','','0000-00-00 00:00:00'),(513,0,0,'I',2526,513,'I000513','2025-10-28',1739,'','','0000-00-00','','',0,0,0,0,1382,'','165','','','','N','drarchit','drarchit','2025-10-28 18:29:18','','0000-00-00 00:00:00'),(514,0,0,'I',2526,514,'I000514','2025-10-28',1744,'','','0000-00-00','','',0,0,0,0,1387,'','165','','','','N','darshan','darshan','2025-10-28 18:34:03','','0000-00-00 00:00:00'),(515,0,0,'I',2526,515,'I000515','2025-10-28',1728,'','','0000-00-00','','',0,0,0,0,1371,'','165','','','','N','darshan','darshan','2025-10-28 18:42:09','','0000-00-00 00:00:00'),(516,0,0,'I',2526,516,'I000516','2025-10-28',1732,'','','0000-00-00','','',0,0,0,0,1375,'','165','','','','N','drarchit','drarchit','2025-10-28 18:46:52','','0000-00-00 00:00:00'),(517,0,0,'I',2526,517,'I000517','2025-10-28',1750,'','','0000-00-00','','',0,0,0,0,597,'','165','','','','N','darshan','darshan','2025-10-28 18:50:43','','0000-00-00 00:00:00'),(518,0,0,'I',2526,518,'I000518','2025-10-28',1738,'','','0000-00-00','','',0,0,0,0,1381,'','165','','','','N','drarchit','drarchit','2025-10-28 18:52:31','','0000-00-00 00:00:00'),(519,0,0,'I',2526,519,'I000519','2025-10-28',1753,'','','0000-00-00','','',0,0,0,0,1394,'','165','','','','N','drarchit','drarchit','2025-10-28 18:58:37','','0000-00-00 00:00:00'),(520,0,0,'I',2526,520,'I000520','2025-10-28',1752,'','','0000-00-00','','',0,0,0,0,1393,'','165','','','','N','drarchit','drarchit','2025-10-28 19:04:47','','0000-00-00 00:00:00'),(521,0,0,'I',2526,521,'I000521','2025-10-28',1756,'','','0000-00-00','','',0,0,0,0,1396,'','165','','','','N','darshan','darshan','2025-10-28 19:06:21','','0000-00-00 00:00:00'),(522,0,0,'I',2526,522,'I000522','2025-10-28',1749,'','','0000-00-00','','',0,0,0,0,1392,'','165','','','','N','drarchit','drarchit','2025-10-28 19:13:12','','0000-00-00 00:00:00'),(523,0,0,'I',2526,523,'I000523','2025-10-28',1761,'','','0000-00-00','','',0,0,0,0,1400,'','165','','','','N','drarchit','drarchit','2025-10-28 19:19:37','','0000-00-00 00:00:00'),(524,0,0,'I',2526,524,'I000524','2025-10-28',1757,'','','0000-00-00','','',0,0,0,0,1397,'','165','','','','N','darshan','darshan','2025-10-28 19:19:41','','0000-00-00 00:00:00'),(525,0,0,'I',2526,525,'I000525','2025-10-28',1766,'','','0000-00-00','','',0,0,0,0,1404,'','165','','','','N','drarchit','drarchit','2025-10-28 19:27:54','','0000-00-00 00:00:00'),(526,0,0,'I',2526,526,'I000526','2025-10-28',1769,'','','0000-00-00','','',0,0,0,0,1406,'','165','','','','N','drarchit','drarchit','2025-10-28 19:35:56','','0000-00-00 00:00:00'),(527,0,0,'I',2526,527,'I000527','2025-10-28',1771,'','','0000-00-00','','',0,0,0,0,1408,'','165','','','','N','darshan','darshan','2025-10-28 19:36:46','','0000-00-00 00:00:00'),(528,0,0,'I',2526,528,'I000528','2025-10-28',1767,'','','0000-00-00','','',0,0,0,0,1079,'','165','','','','N','drarchit','drarchit','2025-10-28 19:39:39','','0000-00-00 00:00:00'),(529,0,0,'I',2526,529,'I000529','2025-10-28',1772,'','','0000-00-00','','',0,0,0,0,1409,'','165','','','','N','darshan','darshan','2025-10-28 19:40:12','','0000-00-00 00:00:00'),(530,0,0,'I',2526,530,'I000530','2025-10-28',1773,'','','0000-00-00','','',0,0,0,0,240,'','165','','','','N','drarchit','drarchit','2025-10-28 19:44:20','','0000-00-00 00:00:00'),(531,0,0,'I',2526,531,'I000531','2025-10-28',1775,'','','0000-00-00','','',0,0,0,0,1410,'','165','','','','N','drarchit','drarchit','2025-10-28 19:55:12','','0000-00-00 00:00:00'),(532,0,0,'I',2526,532,'I000532','2025-10-29',1784,'','','0000-00-00','','',0,0,0,0,1416,'','165','','','','N','darshan','darshan','2025-10-29 10:58:42','','0000-00-00 00:00:00'),(533,0,0,'I',2526,533,'I000533','2025-10-29',1786,'','','0000-00-00','','',0,0,0,0,1418,'','165','','','','N','darshan','darshan','2025-10-29 11:04:42','','0000-00-00 00:00:00'),(534,0,0,'I',2526,534,'I000534','2025-10-29',1796,'','','0000-00-00','','',0,0,0,0,1425,'','165','','','','N','darshan','darshan','2025-10-29 11:14:17','','0000-00-00 00:00:00'),(535,0,0,'I',2526,535,'I000535','2025-10-29',1790,'','','0000-00-00','','',0,0,0,0,607,'','165','','','','N','darshan','darshan','2025-10-29 11:18:46','','0000-00-00 00:00:00'),(536,0,0,'I',2526,536,'I000536','2025-10-29',1787,'','','0000-00-00','','',0,0,0,0,1419,'','165','','','','N','darshan','darshan','2025-10-29 11:27:54','','0000-00-00 00:00:00'),(537,0,0,'I',2526,537,'I000537','2025-10-29',1802,'','','0000-00-00','','',0,0,0,0,1430,'','165','','','','N','drarchit','drarchit','2025-10-29 11:33:04','','0000-00-00 00:00:00'),(538,0,0,'I',2526,538,'I000538','2025-10-29',1789,'','','0000-00-00','','',0,0,0,0,1421,'','165','','','','N','darshan','darshan','2025-10-29 11:36:56','','0000-00-00 00:00:00'),(539,0,0,'I',2526,539,'I000539','2025-10-29',1804,'','','0000-00-00','','',0,0,0,0,1085,'','165','','','','N','drarchit','drarchit','2025-10-29 11:39:26','','0000-00-00 00:00:00'),(540,0,0,'I',2526,540,'I000540','2025-10-29',1810,'','','0000-00-00','','',0,0,0,0,1436,'','165','','','','N','darshan','darshan','2025-10-29 11:44:00','','0000-00-00 00:00:00'),(541,0,0,'I',2526,541,'I000541','2025-10-29',1798,'','','0000-00-00','','',0,0,0,0,1426,'','165','','','','N','darshan','darshan','2025-10-29 11:53:51','','0000-00-00 00:00:00'),(542,0,0,'I',2526,542,'I000542','2025-10-29',1807,'','','0000-00-00','','',0,0,0,0,400,'','165','','','','N','drarchit','drarchit','2025-10-29 12:00:17','','0000-00-00 00:00:00'),(543,0,0,'I',2526,543,'I000543','2025-10-29',1800,'','','0000-00-00','','',0,0,0,0,1428,'','165','','','','N','darshan','darshan','2025-10-29 12:03:03','','0000-00-00 00:00:00'),(544,0,0,'I',2526,544,'I000544','2025-10-29',1820,'','','0000-00-00','','',0,0,0,0,1445,'','165','','','','N','drarchit','drarchit','2025-10-29 12:09:34','','0000-00-00 00:00:00'),(545,0,0,'I',2526,545,'I000545','2025-10-29',1801,'','','0000-00-00','','',0,0,0,0,1429,'','165','','','','N','darshan','darshan','2025-10-29 12:09:38','','0000-00-00 00:00:00'),(546,0,0,'I',2526,546,'I000546','2025-10-29',1812,'','','0000-00-00','','',0,0,0,0,1437,'','165','','','','N','drjayant','drjayant','2025-10-29 12:11:52','','0000-00-00 00:00:00'),(547,0,0,'I',2526,547,'I000547','2025-10-29',1825,'','','0000-00-00','','',0,0,0,0,1450,'','165','','','','N','drarchit','drarchit','2025-10-29 12:16:13','','0000-00-00 00:00:00'),(548,0,0,'I',2526,548,'I000548','2025-10-29',1814,'','','0000-00-00','','',0,0,0,0,1439,'','165','','','','N','drarchit','drarchit','2025-10-29 12:25:22','','0000-00-00 00:00:00'),(549,0,0,'I',2526,549,'I000549','2025-10-29',1816,'','','0000-00-00','','',0,0,0,0,1441,'','165','','','','N','drarchit','drarchit','2025-10-29 12:31:00','','0000-00-00 00:00:00'),(550,0,0,'I',2526,550,'I000550','2025-10-29',1818,'','','0000-00-00','','',0,0,0,0,1443,'','165','','','','N','drarchit','drarchit','2025-10-29 12:37:29','','0000-00-00 00:00:00'),(551,0,0,'I',2526,551,'I000551','2025-10-29',1824,'','','0000-00-00','','',0,0,0,0,1449,'','165','','','','N','darshan','darshan','2025-10-29 12:40:46','','0000-00-00 00:00:00'),(552,0,0,'I',2526,552,'I000552','2025-10-29',1830,'','','0000-00-00','','',0,0,0,0,1453,'','165','','','','N','drjayant','drjayant','2025-10-29 12:45:01','','0000-00-00 00:00:00'),(553,0,0,'I',2526,553,'I000553','2025-10-29',1817,'','','0000-00-00','','',0,0,0,0,1442,'','165','','','','N','drarchit','drarchit','2025-10-29 12:45:35','','0000-00-00 00:00:00'),(554,0,0,'I',2526,554,'I000554','2025-10-29',1712,'','','0000-00-00','','',0,0,0,0,1362,'','165','','','','N','darshan','darshan','2025-10-29 12:50:26','','0000-00-00 00:00:00'),(555,0,0,'I',2526,555,'I000555','2025-10-29',1819,'','','0000-00-00','','',0,0,0,0,1444,'','165','','','','N','drarchit','drarchit','2025-10-29 12:51:36','','0000-00-00 00:00:00'),(556,0,0,'I',2526,556,'I000556','2025-10-29',1791,'','','0000-00-00','','',0,0,0,0,1422,'','165','','','','N','drarchit','drarchit','2025-10-29 12:55:01','','0000-00-00 00:00:00'),(557,0,0,'I',2526,557,'I000557','2025-10-29',1827,'','','0000-00-00','','',0,0,0,0,1451,'','165','','','','N','darshan','darshan','2025-10-29 12:55:03','','0000-00-00 00:00:00'),(558,0,0,'I',2526,558,'I000558','2025-10-29',1793,'','','0000-00-00','','',0,0,0,0,1424,'','165','','','','N','drarchit','drarchit','2025-10-29 13:01:21','','0000-00-00 00:00:00'),(559,0,0,'I',2526,559,'I000559','2025-10-29',1834,'','','0000-00-00','','',0,0,0,0,1457,'','165','','','','N','darshan','darshan','2025-10-29 13:01:36','','0000-00-00 00:00:00'),(560,0,0,'I',2526,560,'I000560','2025-10-29',1809,'','','0000-00-00','','',0,0,0,0,1435,'','165','','','','N','drarchit','drarchit','2025-10-29 13:11:18','','0000-00-00 00:00:00'),(561,0,0,'I',2526,561,'I000561','2025-10-29',1832,'','','0000-00-00','','',0,0,0,0,1455,'','165','','','','N','drarchit','drarchit','2025-10-29 13:18:37','','0000-00-00 00:00:00'),(562,0,0,'I',2526,562,'I000562','2025-10-29',1838,'','','0000-00-00','','',0,0,0,0,1461,'','165','','','','N','drarchit','drarchit','2025-10-29 13:32:51','','0000-00-00 00:00:00'),(563,0,0,'I',2526,563,'I000563','2025-10-29',1835,'','','0000-00-00','','',0,0,0,0,1458,'','165','','','','N','darshan','darshan','2025-10-29 13:34:59','','0000-00-00 00:00:00'),(564,0,0,'I',2526,564,'I000564','2025-10-29',1813,'','','0000-00-00','','',0,0,0,0,1438,'','165','','','','N','darshan','darshan','2025-10-29 13:46:13','','0000-00-00 00:00:00'),(565,0,0,'I',2526,565,'I000565','2025-10-29',1836,'','','0000-00-00','','',0,0,0,0,1459,'','165','','','','N','darshan','darshan','2025-10-29 13:56:29','','0000-00-00 00:00:00'),(566,0,0,'I',2526,566,'I000566','2025-10-29',1783,'','','0000-00-00','','',0,0,0,0,880,'','165','','','','N','darshan','darshan','2025-10-29 14:11:43','','0000-00-00 00:00:00'),(567,0,0,'I',2526,567,'I000567','2025-10-29',1837,'','','0000-00-00','','',0,0,0,0,1460,'','165','','','','N','darshan','darshan','2025-10-29 14:14:46','','0000-00-00 00:00:00'),(568,0,0,'I',2526,568,'I000568','0000-00-00',1724,'','','0000-00-00','','',0,0,0,0,0,'','165','','','','N','mo','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(569,0,0,'I',2526,569,'I000569','2025-10-29',1842,'','','0000-00-00','','',0,0,0,0,1465,'','165','','','','N','darshan','darshan','2025-10-29 17:26:58','','0000-00-00 00:00:00'),(570,0,0,'I',2526,570,'I000570','2025-10-29',1841,'','','0000-00-00','','',0,0,0,0,1464,'','165','','','','N','darshan','darshan','2025-10-29 17:40:12','','0000-00-00 00:00:00'),(571,0,0,'I',2526,571,'I000571','2025-10-29',1848,'','','0000-00-00','','',0,0,0,0,1471,'','165','','','','N','darshan','darshan','2025-10-29 17:54:20','','0000-00-00 00:00:00'),(572,0,0,'I',2526,572,'I000572','2025-10-29',1847,'','','0000-00-00','','',0,0,0,0,1470,'','165','','','','N','darshan','darshan','2025-10-29 17:57:14','','0000-00-00 00:00:00'),(573,0,0,'I',2526,573,'I000573','2025-10-29',1856,'','','0000-00-00','','',0,0,0,0,1478,'','165','','','','N','drjayant','drjayant','2025-10-29 18:02:13','','0000-00-00 00:00:00'),(574,0,0,'I',2526,574,'I000574','2025-10-29',1858,'','','0000-00-00','','',0,0,0,0,1480,'','165','','','','N','drarchit','drarchit','2025-10-29 18:09:05','','0000-00-00 00:00:00'),(575,0,0,'I',2526,575,'I000575','2025-10-29',1788,'','','0000-00-00','','',0,0,0,0,1420,'','165','','','','N','drarchit','drarchit','2025-10-29 18:13:21','','0000-00-00 00:00:00'),(576,0,0,'I',2526,576,'I000576','2025-10-29',1859,'','','0000-00-00','','',0,0,0,0,593,'','165','','','','N','darshan','darshan','2025-10-29 18:24:19','','0000-00-00 00:00:00'),(577,0,0,'I',2526,577,'I000577','2025-10-29',1854,'','','0000-00-00','','',0,0,0,0,919,'','165','','','','N','darshan','darshan','2025-10-29 18:28:15','','0000-00-00 00:00:00'),(578,0,0,'I',2526,578,'I000578','2025-10-29',1865,'','','0000-00-00','','',0,0,0,0,1485,'','165','','','','N','drjayant','drjayant','2025-10-29 18:30:46','','0000-00-00 00:00:00'),(579,0,0,'I',2526,579,'I000579','2025-10-29',1823,'','','0000-00-00','','',0,0,0,0,1448,'','165','','','','N','drarchit','drarchit','2025-10-29 18:33:40','','0000-00-00 00:00:00'),(580,0,0,'I',2526,580,'I000580','2025-10-29',1872,'','','0000-00-00','','',0,0,0,0,1490,'','165','','','','N','drarchit','drarchit','2025-10-29 18:45:41','','0000-00-00 00:00:00'),(581,0,0,'I',2526,581,'I000581','2025-10-29',1868,'','','0000-00-00','','',0,0,0,0,1488,'','165','','','','N','drarchit','drarchit','2025-10-29 18:55:00','','0000-00-00 00:00:00'),(582,0,0,'I',2526,582,'I000582','2025-10-29',1857,'','','0000-00-00','','',0,0,0,0,1479,'','165','','','','N','darshan','darshan','2025-10-29 18:58:11','','0000-00-00 00:00:00'),(583,0,0,'I',2526,583,'I000583','2025-10-29',1871,'','','0000-00-00','','',0,0,0,0,1489,'','165','','','','N','drarchit','drarchit','2025-10-29 19:02:43','','0000-00-00 00:00:00'),(584,0,0,'I',2526,584,'I000584','2025-10-29',1839,'','','0000-00-00','','',0,0,0,0,1462,'','165','','','','N','darshan','darshan','2025-10-29 19:03:34','','0000-00-00 00:00:00'),(585,0,0,'I',2526,585,'I000585','2025-10-29',1860,'','','0000-00-00','','',0,0,0,0,1481,'','165','','','','N','darshan','darshan','2025-10-29 19:13:41','','0000-00-00 00:00:00'),(586,0,0,'I',2526,586,'I000586','2025-10-29',1845,'','','0000-00-00','','',0,0,0,0,1468,'','165','','','','N','darshan','darshan','2025-10-29 19:18:28','','0000-00-00 00:00:00'),(587,0,0,'I',2526,587,'I000587','2025-10-29',1846,'','','0000-00-00','','',0,0,0,0,1469,'','165','','','','N','drarchit','drarchit','2025-10-29 19:20:37','','0000-00-00 00:00:00'),(588,0,0,'I',2526,588,'I000588','2025-10-29',1849,'','','0000-00-00','','',0,0,0,0,1472,'','165','','','','N','darshan','darshan','2025-10-29 19:26:20','','0000-00-00 00:00:00'),(589,0,0,'I',2526,589,'I000589','2025-10-29',1873,'','','0000-00-00','','',0,0,0,0,1491,'','165','','','','N','drarchit','drarchit','2025-10-29 19:29:00','','0000-00-00 00:00:00'),(590,0,0,'I',2526,590,'I000590','2025-10-29',1876,'','','0000-00-00','','',0,0,0,0,1493,'','165','','','','N','darshan','darshan','2025-10-29 19:30:12','','0000-00-00 00:00:00'),(591,0,0,'I',2526,591,'I000591','2025-10-29',1874,'','','0000-00-00','','',0,0,0,0,1492,'','165','','','','N','drarchit','drarchit','2025-10-29 19:34:43','','0000-00-00 00:00:00'),(592,0,0,'I',2526,592,'I000592','2025-10-29',1855,'','','0000-00-00','','',0,0,0,0,1477,'','165','','','','N','darshan','darshan','2025-10-29 19:38:25','','0000-00-00 00:00:00'),(593,0,0,'I',2526,593,'I000593','2025-10-29',1877,'','','0000-00-00','','',0,0,0,0,1494,'','165','','','','N','drarchit','drarchit','2025-10-29 19:40:17','','0000-00-00 00:00:00'),(594,0,0,'I',2526,594,'I000594','2025-10-29',1850,'','','0000-00-00','','',0,0,0,0,1473,'','165','','','','N','darshan','darshan','2025-10-29 19:50:18','','0000-00-00 00:00:00'),(595,0,0,'I',2526,595,'I000595','2025-10-29',1851,'','','0000-00-00','','',0,0,0,0,1474,'','165','','','','N','darshan','darshan','2025-10-29 20:01:31','','0000-00-00 00:00:00'),(596,0,0,'I',2526,596,'I000596','2025-10-29',1880,'','','0000-00-00','','',0,0,0,0,562,'','165','','','','N','darshan','darshan','2025-10-29 20:13:07','','0000-00-00 00:00:00'),(597,0,0,'I',2526,597,'I000597','2025-10-29',1883,'','','0000-00-00','','',0,0,0,0,1497,'','165','','','','N','darshan','darshan','2025-10-29 20:18:10','','0000-00-00 00:00:00'),(598,0,0,'I',2526,598,'I000598','2025-10-30',1886,'','','0000-00-00','','',0,0,0,0,1500,'','165','','','','N','darshan','darshan','2025-10-30 10:45:45','','0000-00-00 00:00:00'),(599,0,0,'I',2526,599,'I000599','2025-10-30',1895,'','','0000-00-00','','',0,0,0,0,1505,'','165','','','','N','darshan','darshan','2025-10-30 11:06:52','','0000-00-00 00:00:00'),(600,0,0,'I',2526,600,'I000600','2025-10-30',1893,'','','0000-00-00','','',0,0,0,0,699,'','165','','','','N','darshan','darshan','2025-10-30 11:13:17','','0000-00-00 00:00:00'),(601,0,0,'I',2526,601,'I000601','2025-10-30',1894,'','','0000-00-00','','',0,0,0,0,300,'','165','','','','N','darshan','darshan','2025-10-30 11:18:36','','0000-00-00 00:00:00'),(602,0,0,'I',2526,602,'I000602','2025-10-30',1900,'','','0000-00-00','','',0,0,0,0,757,'','165','','','','N','drjayant','drjayant','2025-10-30 11:23:01','','0000-00-00 00:00:00'),(603,0,0,'I',2526,603,'I000603','2025-10-30',1906,'','','0000-00-00','','',0,0,0,0,1512,'','165','','','','N','drarchit','drarchit','2025-10-30 11:30:30','','0000-00-00 00:00:00'),(604,0,0,'I',2526,604,'I000604','2025-10-30',1896,'','','0000-00-00','','',0,0,0,0,1506,'','165','','','','N','darshan','darshan','2025-10-30 11:39:05','','0000-00-00 00:00:00'),(605,0,0,'I',2526,605,'I000605','2025-10-30',1899,'','','0000-00-00','','',0,0,0,0,1508,'','165','','','','N','darshan','darshan','2025-10-30 11:42:40','','0000-00-00 00:00:00'),(606,0,0,'I',2526,606,'I000606','2025-10-30',1911,'','','0000-00-00','','',0,0,0,0,1515,'','165','','','','N','drarchit','drarchit','2025-10-30 11:49:28','','0000-00-00 00:00:00'),(607,0,0,'I',2526,607,'I000607','2025-10-30',1913,'','','0000-00-00','','',0,0,0,0,1516,'','165','','','','N','darshan','darshan','2025-10-30 11:55:49','','0000-00-00 00:00:00'),(608,0,0,'I',2526,608,'I000608','2025-10-30',1910,'','','0000-00-00','','',0,0,0,0,773,'','165','','','','N','drarchit','drarchit','2025-10-30 11:59:12','','0000-00-00 00:00:00'),(609,0,0,'I',2526,609,'I000609','2025-10-30',1889,'','','0000-00-00','','',0,0,0,0,1501,'','165','','','','N','darshan','darshan','2025-10-30 12:00:44','','0000-00-00 00:00:00'),(610,0,0,'I',2526,610,'I000610','2025-10-30',1897,'','','0000-00-00','','',0,0,0,0,1507,'','165','','','','N','darshan','darshan','2025-10-30 12:04:40','','0000-00-00 00:00:00'),(611,0,0,'I',2526,611,'I000611','2025-10-30',1924,'','','0000-00-00','','',0,0,0,0,1526,'','165','','','','N','drjayant','drjayant','2025-10-30 12:15:05','','0000-00-00 00:00:00'),(612,0,0,'I',2526,612,'I000612','2025-10-30',1921,'','','0000-00-00','','',0,0,0,0,1524,'','165','','','','N','drarchit','drarchit','2025-10-30 12:19:30','','0000-00-00 00:00:00'),(613,0,0,'I',2526,613,'I000613','2025-10-30',1922,'','','0000-00-00','','',0,0,0,0,1525,'','165','','','','N','drarchit','drarchit','2025-10-30 12:22:13','','0000-00-00 00:00:00'),(614,0,0,'I',2526,614,'I000614','2025-10-30',1887,'','','0000-00-00','','',0,0,0,0,469,'','165','','','','N','darshan','darshan','2025-10-30 12:28:33','','0000-00-00 00:00:00'),(615,0,0,'I',2526,615,'I000615','2025-10-30',1917,'','','0000-00-00','','',0,0,0,0,1520,'','165','','','','N','drarchit','drarchit','2025-10-30 12:31:54','','0000-00-00 00:00:00'),(616,0,0,'I',2526,616,'I000616','2025-10-30',1915,'','','0000-00-00','','',0,0,0,0,1518,'','165','','','','N','darshan','darshan','2025-10-30 12:37:58','','0000-00-00 00:00:00'),(617,0,0,'I',2526,617,'I000617','2025-10-30',1891,'','','0000-00-00','','',0,0,0,0,1503,'','165','','','','N','darshan','darshan','2025-10-30 12:44:13','','0000-00-00 00:00:00'),(618,0,0,'I',2526,618,'I000618','2025-10-30',1901,'','','0000-00-00','','',0,0,0,0,1509,'','165','','','','N','darshan','darshan','2025-10-30 12:48:07','','0000-00-00 00:00:00'),(619,0,0,'I',2526,619,'I000619','2025-10-30',1909,'','','0000-00-00','','',0,0,0,0,292,'','165','','','','N','darshan','darshan','2025-10-30 12:55:12','','0000-00-00 00:00:00'),(620,0,0,'I',2526,620,'I000620','2025-10-30',1930,'','','0000-00-00','','',0,0,0,0,1531,'','165','','','','N','darshan','darshan','2025-10-30 13:00:08','','0000-00-00 00:00:00'),(621,0,0,'I',2526,621,'I000621','2025-10-30',1933,'','','0000-00-00','','',0,0,0,0,1534,'','165','','','','N','darshan','darshan','2025-10-30 13:09:33','','0000-00-00 00:00:00'),(622,0,0,'I',2526,622,'I000622','2025-10-30',1928,'','','0000-00-00','','',0,0,0,0,1529,'','165','','','','N','drarchit','drarchit','2025-10-30 13:11:50','','0000-00-00 00:00:00'),(623,0,0,'I',2526,623,'I000623','2025-10-30',1908,'','','0000-00-00','','',0,0,0,0,1514,'','165','','','','N','drarchit','drarchit','2025-10-30 13:16:03','','0000-00-00 00:00:00'),(624,0,0,'I',2526,624,'I000624','2025-10-30',1905,'','','0000-00-00','','',0,0,0,0,1511,'','165','','','','N','drarchit','drarchit','2025-10-30 13:18:06','','0000-00-00 00:00:00'),(625,0,0,'I',2526,625,'I000625','2025-10-30',1892,'','','0000-00-00','','',0,0,0,0,1504,'','165','','','','N','darshan','darshan','2025-10-30 13:20:48','','0000-00-00 00:00:00'),(626,0,0,'I',2526,626,'I000626','2025-10-30',1929,'','','0000-00-00','','',0,0,0,0,1530,'','165','','','','N','darshan','darshan','2025-10-30 13:25:11','','0000-00-00 00:00:00'),(627,0,0,'I',2526,627,'I000627','2025-10-30',1938,'','','0000-00-00','','',0,0,0,0,1537,'','165','','','','N','drarchit','drarchit','2025-10-30 13:28:31','','0000-00-00 00:00:00'),(628,0,0,'I',2526,628,'I000628','2025-10-30',1903,'','','0000-00-00','','',0,0,0,0,1510,'','165','','','','N','darshan','darshan','2025-10-30 13:30:59','','0000-00-00 00:00:00'),(629,0,0,'I',2526,629,'I000629','2025-10-30',1932,'','','0000-00-00','','',0,0,0,0,1533,'','165','','','','N','drarchit','drarchit','2025-10-30 13:31:33','','0000-00-00 00:00:00'),(630,0,0,'I',2526,630,'I000630','2025-10-30',1920,'','','0000-00-00','','',0,0,0,0,1523,'','165','','','','N','darshan','darshan','2025-10-30 13:49:22','','0000-00-00 00:00:00'),(631,0,0,'I',2526,631,'I000631','2025-10-30',1939,'','','0000-00-00','','',0,0,0,0,1538,'','165','','','','N','drarchit','drarchit','2025-10-30 13:50:24','','0000-00-00 00:00:00'),(632,0,0,'I',2526,632,'I000632','2025-10-30',1943,'','','0000-00-00','','',0,0,0,0,294,'','165','','','','N','darshan','darshan','2025-10-30 17:13:55','','0000-00-00 00:00:00'),(633,0,0,'I',2526,633,'I000633','2025-10-30',1946,'','','0000-00-00','','',0,0,0,0,1540,'','165','','','','N','darshan','darshan','2025-10-30 17:29:33','','0000-00-00 00:00:00'),(634,0,0,'I',2526,634,'I000634','2025-10-30',1947,'','','0000-00-00','','',0,0,0,0,1541,'','165','','','','N','darshan','darshan','2025-10-30 17:38:43','','0000-00-00 00:00:00'),(635,0,0,'I',2526,635,'I000635','2025-10-30',1959,'','','0000-00-00','','',0,0,0,0,753,'','165','','','','N','drjayant','drjayant','2025-10-30 17:51:54','','0000-00-00 00:00:00'),(636,0,0,'I',2526,636,'I000636','2025-10-30',1948,'','','0000-00-00','','',0,0,0,0,1542,'','165','','','','N','darshan','darshan','2025-10-30 18:00:33','','0000-00-00 00:00:00'),(637,0,0,'I',2526,637,'I000637','2025-10-30',1955,'','','0000-00-00','','',0,0,0,0,1547,'','165','','','','N','darshan','darshan','2025-10-30 18:04:14','','0000-00-00 00:00:00'),(638,0,0,'I',2526,638,'I000638','2025-10-30',1957,'','','0000-00-00','','',0,0,0,0,1549,'','165','','','','N','darshan','darshan','2025-10-30 18:09:34','','0000-00-00 00:00:00'),(639,0,0,'I',2526,639,'I000639','2025-10-30',1950,'','','0000-00-00','','',0,0,0,0,1544,'','165','','','','N','darshan','darshan','2025-10-30 18:18:56','','0000-00-00 00:00:00'),(640,0,0,'I',2526,640,'I000640','2025-10-30',1960,'','','0000-00-00','','',0,0,0,0,1551,'','165','','','','N','drarchit','drarchit','2025-10-30 18:19:29','','0000-00-00 00:00:00'),(641,0,0,'I',2526,641,'I000641','2025-10-30',1949,'','','0000-00-00','','',0,0,0,0,1543,'','165','','','','N','darshan','darshan','2025-10-30 18:21:52','','0000-00-00 00:00:00'),(642,0,0,'I',2526,642,'I000642','2025-10-30',1966,'','','0000-00-00','','',0,0,0,0,1556,'','165','','','','N','drarchit','drarchit','2025-10-30 18:25:05','','0000-00-00 00:00:00'),(643,0,0,'I',2526,643,'I000643','2025-10-30',1963,'','','0000-00-00','','',0,0,0,0,1554,'','165','','','','N','darshan','darshan','2025-10-30 18:25:54','','0000-00-00 00:00:00'),(644,0,0,'I',2526,644,'I000644','2025-10-30',1951,'','','0000-00-00','','',0,0,0,0,1545,'','165','','','','N','darshan','darshan','2025-10-30 18:28:43','','0000-00-00 00:00:00'),(645,0,0,'I',2526,645,'I000645','2025-10-30',1952,'','','0000-00-00','','',0,0,0,0,1546,'','165','','','','N','darshan','darshan','2025-10-30 18:33:01','','0000-00-00 00:00:00'),(646,0,0,'I',2526,646,'I000646','2025-10-30',1968,'','','0000-00-00','','',0,0,0,0,1558,'','165','','','','N','drarchit','drarchit','2025-10-30 18:34:08','','0000-00-00 00:00:00'),(647,0,0,'I',2526,647,'I000647','2025-10-30',1953,'','','0000-00-00','','',0,0,0,0,911,'','165','','','','N','darshan','darshan','2025-10-30 18:39:30','','0000-00-00 00:00:00'),(648,0,0,'I',2526,648,'I000648','2025-10-30',1970,'','','0000-00-00','','',0,0,0,0,1560,'','165','','','','N','drarchit','drarchit','2025-10-30 18:45:43','','0000-00-00 00:00:00'),(649,0,0,'I',2526,649,'I000649','2025-10-30',1958,'','','0000-00-00','','',0,0,0,0,1550,'','165','','','','N','darshan','darshan','2025-10-30 18:50:33','','0000-00-00 00:00:00'),(650,0,0,'I',2526,650,'I000650','2025-10-30',1971,'','','0000-00-00','','',0,0,0,0,1561,'','165','','','','N','drjayant','drjayant','2025-10-30 18:51:34','','0000-00-00 00:00:00'),(651,0,0,'I',2526,651,'I000651','2025-10-30',1961,'','','0000-00-00','','',0,0,0,0,1552,'','165','','','','N','darshan','darshan','2025-10-30 18:53:47','','0000-00-00 00:00:00'),(652,0,0,'I',2526,652,'I000652','2025-10-30',1852,'','','0000-00-00','','',0,0,0,0,1475,'','165','','','','N','darshan','darshan','2025-10-30 18:57:53','','0000-00-00 00:00:00'),(653,0,0,'I',2526,653,'I000653','2025-10-30',1964,'','','0000-00-00','','',0,0,0,0,1555,'','165','','','','N','darshan','darshan','2025-10-30 19:01:34','','0000-00-00 00:00:00'),(654,0,0,'I',2526,654,'I000654','2025-10-30',1923,'','','0000-00-00','','',0,0,0,0,951,'','165','','','','N','drarchit','drarchit','2025-10-30 19:07:24','','0000-00-00 00:00:00'),(655,0,0,'I',2526,655,'I000655','2025-10-30',1944,'','','0000-00-00','','',0,0,0,0,1539,'','165','','','','N','darshan','darshan','2025-10-30 19:11:17','','0000-00-00 00:00:00'),(656,0,0,'I',2526,656,'I000656','2025-10-30',1965,'','','0000-00-00','','',0,0,0,0,1179,'','165','','','','N','darshan','darshan','2025-10-30 19:14:25','','0000-00-00 00:00:00'),(657,0,0,'I',2526,657,'I000657','2025-10-30',1870,'','','0000-00-00','','',0,0,0,0,976,'','165','','','','N','drarchit','drarchit','2025-10-30 19:18:42','','0000-00-00 00:00:00'),(658,0,0,'I',2526,658,'I000658','2025-10-30',1956,'','','0000-00-00','','',0,0,0,0,1548,'','165','','','','N','darshan','darshan','2025-10-30 19:25:03','','0000-00-00 00:00:00'),(659,0,0,'I',2526,659,'I000659','2025-10-30',1983,'','','0000-00-00','','',0,0,0,0,427,'','165','','','','N','drarchit','drarchit','2025-10-30 19:38:17','','0000-00-00 00:00:00'),(660,0,0,'I',2526,660,'I000660','2025-10-30',1969,'','','0000-00-00','','',0,0,0,0,1559,'','165','','','','N','darshan','darshan','2025-10-30 19:47:05','','0000-00-00 00:00:00'),(661,0,0,'I',2526,661,'I000661','2025-10-31',1994,'','','0000-00-00','','',0,0,0,0,1578,'','165','','','','N','darshan','darshan','2025-10-31 11:08:40','','0000-00-00 00:00:00'),(662,0,0,'I',2526,662,'I000662','2025-10-31',2003,'','','0000-00-00','','',0,0,0,0,1583,'','165','','','','N','darshan','darshan','2025-10-31 11:14:12','','0000-00-00 00:00:00'),(663,0,0,'I',2526,663,'I000663','2025-10-31',2008,'','','0000-00-00','','',0,0,0,0,1588,'','165','','','','N','drarchit','drarchit','2025-10-31 11:33:12','','0000-00-00 00:00:00'),(664,0,0,'I',2526,664,'I000664','2025-10-31',2007,'','','0000-00-00','','',0,0,0,0,1587,'','165','','','','N','drarchit','drarchit','2025-10-31 11:37:02','','0000-00-00 00:00:00'),(665,0,0,'I',2526,665,'I000665','2025-10-31',1991,'','','0000-00-00','','',0,0,0,0,1575,'','165','','','','N','darshan','darshan','2025-10-31 11:39:21','','0000-00-00 00:00:00'),(666,0,0,'I',2526,666,'I000666','2025-10-31',2025,'','','0000-00-00','','',0,0,0,0,1236,'','165','','','','N','drjayant','drjayant','2025-10-31 11:41:12','','0000-00-00 00:00:00'),(667,0,0,'I',2526,667,'I000667','2025-10-31',1992,'','','0000-00-00','','',0,0,0,0,1576,'','165','','','','N','darshan','darshan','2025-10-31 11:41:35','','0000-00-00 00:00:00'),(668,0,0,'I',2526,668,'I000668','2025-10-31',1997,'','','0000-00-00','','',0,0,0,0,1242,'','165','','','','N','darshan','darshan','2025-10-31 11:42:58','','0000-00-00 00:00:00'),(669,0,0,'I',2526,669,'I000669','2025-10-31',2014,'','','0000-00-00','','',0,0,0,0,1593,'','165','','','','N','darshan','darshan','2025-10-31 11:59:52','','0000-00-00 00:00:00'),(670,0,0,'I',2526,670,'I000670','2025-10-31',2023,'','','0000-00-00','','',0,0,0,0,988,'','165','','','','N','drarchit','drarchit','2025-10-31 12:02:00','','0000-00-00 00:00:00'),(671,0,0,'I',2526,671,'I000671','2025-10-31',2042,'','','0000-00-00','','',0,0,0,0,1616,'','165','','','','N','drjayant','drjayant','2025-10-31 12:12:30','','0000-00-00 00:00:00'),(672,0,0,'I',2526,672,'I000672','2025-10-31',2011,'','','0000-00-00','','',0,0,0,0,1590,'','165','','','','N','drarchit','drarchit','2025-10-31 12:16:08','','0000-00-00 00:00:00'),(673,0,0,'I',2526,673,'I000673','2025-10-31',2030,'','','0000-00-00','','',0,0,0,0,1605,'','165','','','','N','drarchit','drarchit','2025-10-31 12:20:51','','0000-00-00 00:00:00'),(674,0,0,'I',2526,674,'I000674','2025-10-31',2033,'','','0000-00-00','','',0,0,0,0,1608,'','165','','','','N','drarchit','drarchit','2025-10-31 12:28:17','','0000-00-00 00:00:00'),(675,0,0,'I',2526,675,'I000675','2025-10-31',2029,'','','0000-00-00','','',0,0,0,0,1604,'','165','','','','N','drarchit','drarchit','2025-10-31 12:32:43','','0000-00-00 00:00:00'),(676,0,0,'I',2526,676,'I000676','2025-10-31',2035,'','','0000-00-00','','',0,0,0,0,1610,'','165','','','','N','darshan','darshan','2025-10-31 12:33:35','','0000-00-00 00:00:00'),(677,0,0,'I',2526,677,'I000677','2025-10-31',2036,'','','0000-00-00','','',0,0,0,0,1611,'','165','','','','N','drarchit','drarchit','2025-10-31 12:35:27','','0000-00-00 00:00:00'),(678,0,0,'I',2526,678,'I000678','2025-10-31',2041,'','','0000-00-00','','',0,0,0,0,1615,'','165','','','','N','drarchit','drarchit','2025-10-31 12:39:43','','0000-00-00 00:00:00'),(679,0,0,'I',2526,679,'I000679','2025-10-31',2039,'','','0000-00-00','','',0,0,0,0,1613,'','165','','','','N','darshan','darshan','2025-10-31 12:44:56','','0000-00-00 00:00:00'),(680,0,0,'I',2526,680,'I000680','2025-10-31',2031,'','','0000-00-00','','',0,0,0,0,1606,'','165','','','','N','drarchit','drarchit','2025-10-31 12:58:04','','0000-00-00 00:00:00'),(681,0,0,'I',2526,681,'I000681','2025-10-31',1979,'','','0000-00-00','','',0,0,0,0,1568,'','165','','','','N','drarchit','drarchit','2025-10-31 13:05:47','','0000-00-00 00:00:00'),(682,0,0,'I',2526,682,'I000682','2025-10-31',2012,'','','0000-00-00','','',0,0,0,0,1591,'','165','','','','N','darshan','darshan','2025-10-31 13:06:51','','0000-00-00 00:00:00'),(683,0,0,'I',2526,683,'I000683','2025-10-31',1996,'','','0000-00-00','','',0,0,0,0,1579,'','165','','','','N','darshan','darshan','2025-10-31 13:18:55','','0000-00-00 00:00:00'),(684,0,0,'I',2526,684,'I000684','2025-10-31',2057,'','','0000-00-00','','',0,0,0,0,1629,'','165','','','','N','drarchit','drarchit','2025-10-31 13:19:10','','0000-00-00 00:00:00'),(685,0,0,'I',2526,685,'I000685','2025-10-31',2049,'','','0000-00-00','','',0,0,0,0,1622,'','165','','','','N','darshan','darshan','2025-10-31 13:28:21','','0000-00-00 00:00:00'),(686,0,0,'I',2526,686,'I000686','2025-10-31',2058,'','','0000-00-00','','',0,0,0,0,1630,'','165','','','','N','drarchit','drarchit','2025-10-31 13:30:24','','0000-00-00 00:00:00'),(687,0,0,'I',2526,687,'I000687','2025-10-31',2053,'','','0000-00-00','','',0,0,0,0,1626,'','165','','','','N','darshan','darshan','2025-10-31 13:32:15','','0000-00-00 00:00:00'),(688,0,0,'I',2526,688,'I000688','2025-10-31',2044,'','','0000-00-00','','',0,0,0,0,1618,'','165','','','','N','drarchit','drarchit','2025-10-31 13:34:03','','0000-00-00 00:00:00'),(689,0,0,'I',2526,689,'I000689','2025-10-31',2016,'','','0000-00-00','','',0,0,0,0,1595,'','165','','','','N','darshan','darshan','2025-10-31 13:36:44','','0000-00-00 00:00:00'),(690,0,0,'I',2526,690,'I000690','2025-10-31',2021,'','','0000-00-00','','',0,0,0,0,1599,'','165','','','','N','darshan','darshan','2025-10-31 13:40:03','','0000-00-00 00:00:00'),(691,0,0,'I',2526,691,'I000691','2025-10-31',2019,'','','0000-00-00','','',0,0,0,0,1597,'','165','','','','N','darshan','darshan','2025-10-31 13:47:29','','0000-00-00 00:00:00'),(692,0,0,'I',2526,692,'I000692','2025-10-31',2055,'','','0000-00-00','','',0,0,0,0,1628,'','165','','','','N','darshan','darshan','2025-10-31 13:50:17','','0000-00-00 00:00:00'),(693,0,0,'I',2526,693,'I000693','2025-10-31',2024,'','','0000-00-00','','',0,0,0,0,1601,'','165','','','','N','darshan','darshan','2025-10-31 13:59:20','','0000-00-00 00:00:00'),(694,0,0,'I',2526,694,'I000694','2025-10-31',2000,'','','0000-00-00','','',0,0,0,0,985,'','165','','','','N','darshan','darshan','2025-10-31 14:01:36','','0000-00-00 00:00:00'),(695,0,0,'I',2526,695,'I000695','2025-10-31',1998,'','','0000-00-00','','',0,0,0,0,1580,'','165','','','','N','darshan','darshan','2025-10-31 14:04:35','','0000-00-00 00:00:00'),(696,0,0,'I',2526,696,'I000696','2025-10-31',1999,'','','0000-00-00','','',0,0,0,0,1581,'','165','','','','N','darshan','darshan','2025-10-31 14:16:25','','0000-00-00 00:00:00'),(697,0,0,'I',2526,697,'I000697','2025-10-31',2051,'','','0000-00-00','','',0,0,0,0,1624,'','165','','','','N','darshan','darshan','2025-10-31 14:21:51','','0000-00-00 00:00:00'),(698,0,0,'I',2526,698,'I000698','2025-10-31',2034,'','','0000-00-00','','',0,0,0,0,1609,'','165','','','','N','darshan','darshan','2025-10-31 14:27:05','','0000-00-00 00:00:00'),(699,0,0,'I',2526,699,'I000699','2025-10-31',2037,'','','0000-00-00','','',0,0,0,0,1612,'','165','','','','N','darshan','darshan','2025-10-31 14:32:36','','0000-00-00 00:00:00'),(700,0,0,'I',2526,700,'I000700','2025-10-31',2062,'','','0000-00-00','','',0,0,0,0,1634,'','165','','','','N','darshan','darshan','2025-10-31 14:35:10','','0000-00-00 00:00:00'),(701,0,0,'I',2526,701,'I000701','2025-10-31',2043,'','','0000-00-00','','',0,0,0,0,1617,'','165','','','','N','darshan','darshan','2025-10-31 14:40:13','','0000-00-00 00:00:00'),(702,0,0,'I',2526,702,'I000702','2025-10-31',2046,'','','0000-00-00','','',0,0,0,0,1620,'','165','','','','N','darshan','darshan','2025-10-31 14:43:38','','0000-00-00 00:00:00'),(703,0,0,'I',2526,703,'I000703','2025-10-31',2048,'','','0000-00-00','','',0,0,0,0,1028,'','165','','','','N','darshan','darshan','2025-10-31 14:47:48','','0000-00-00 00:00:00'),(704,0,0,'I',2526,704,'I000704','2025-10-31',2056,'','','0000-00-00','','',0,0,0,0,331,'','165','','','','N','darshan','darshan','2025-10-31 14:53:27','','0000-00-00 00:00:00'),(705,0,0,'I',2526,705,'I000705','2025-10-31',2059,'','','0000-00-00','','',0,0,0,0,1631,'','165','','','','N','darshan','darshan','2025-10-31 15:09:57','','0000-00-00 00:00:00'),(706,0,0,'I',2526,706,'I000706','2025-10-31',2064,'','','0000-00-00','','',0,0,0,0,1636,'','165','','','','N','darshan','darshan','2025-10-31 15:13:31','','0000-00-00 00:00:00'),(707,0,0,'I',2526,707,'I000707','2025-10-31',2071,'','','0000-00-00','','',0,0,0,0,1641,'','165','','','','N','darshan','darshan','2025-10-31 17:12:27','','0000-00-00 00:00:00'),(708,0,0,'I',2526,708,'I000708','2025-10-31',2066,'','','0000-00-00','','',0,0,0,0,585,'','165','','','','N','darshan','darshan','2025-10-31 17:16:22','','0000-00-00 00:00:00'),(709,0,0,'I',2526,709,'I000709','2025-10-31',2068,'','','0000-00-00','','',0,0,0,0,1638,'','165','','','','N','darshan','darshan','2025-10-31 17:21:13','','0000-00-00 00:00:00'),(710,0,0,'I',2526,710,'I000710','2025-10-31',2075,'','','0000-00-00','','',0,0,0,0,1644,'','165','','','','N','darshan','darshan','2025-10-31 17:25:22','','0000-00-00 00:00:00'),(711,0,0,'I',2526,711,'I000711','2025-10-31',2077,'','','0000-00-00','','',0,0,0,0,1645,'','165','','','','N','darshan','darshan','2025-10-31 17:29:52','','0000-00-00 00:00:00'),(712,0,0,'I',2526,712,'I000712','2025-10-31',2081,'','','0000-00-00','','',0,0,0,0,1647,'','165','','','','N','darshan','darshan','2025-10-31 17:41:42','','0000-00-00 00:00:00'),(713,0,0,'I',2526,713,'I000713','2025-10-31',1981,'','','0000-00-00','','',0,0,0,0,1569,'','165','','','','N','darshan','darshan','2025-10-31 18:01:19','','0000-00-00 00:00:00'),(714,0,0,'I',2526,714,'I000714','2025-10-31',2095,'','','0000-00-00','','',0,0,0,0,1657,'','165','','','','N','drarchit','drarchit','2025-10-31 18:21:47','','0000-00-00 00:00:00'),(715,0,0,'I',2526,715,'I000715','2025-10-31',2009,'','','0000-00-00','','',0,0,0,0,1589,'','165','','','','N','darshan','darshan','2025-10-31 18:22:50','','0000-00-00 00:00:00'),(716,0,0,'I',2526,716,'I000716','2025-10-31',2103,'','','0000-00-00','','',0,0,0,0,350,'','165','','','','N','darshan','darshan','2025-10-31 18:29:51','','0000-00-00 00:00:00'),(717,0,0,'I',2526,717,'I000717','2025-10-31',2102,'','','0000-00-00','','',0,0,0,0,627,'','165','','','','N','drarchit','drarchit','2025-10-31 18:31:15','','0000-00-00 00:00:00'),(718,0,0,'I',2526,718,'I000718','2025-10-31',2113,'','','0000-00-00','','',0,0,0,0,1134,'','165','','','','N','drjayant','drjayant','2025-10-31 18:34:16','','0000-00-00 00:00:00'),(719,0,0,'I',2526,719,'I000719','2025-10-31',2114,'','','0000-00-00','','',0,0,0,0,1667,'','165','','','','N','drjayant','drjayant','2025-10-31 18:37:45','','0000-00-00 00:00:00'),(720,0,0,'I',2526,720,'I000720','2025-10-31',2112,'','','0000-00-00','','',0,0,0,0,1666,'','165','','','','N','drarchit','drarchit','2025-10-31 18:37:57','','0000-00-00 00:00:00'),(721,0,0,'I',2526,721,'I000721','2025-10-31',2082,'','','0000-00-00','','',0,0,0,0,1648,'','165','','','','N','darshan','darshan','2025-10-31 18:45:56','','0000-00-00 00:00:00'),(722,0,0,'I',2526,722,'I000722','2025-10-31',2123,'','','0000-00-00','','',0,0,0,0,1674,'','165','','','','N','drarchit','drarchit','2025-10-31 18:55:12','','0000-00-00 00:00:00'),(723,0,0,'I',2526,723,'I000723','2025-10-31',2085,'','','0000-00-00','','',0,0,0,0,1651,'','165','','','','N','darshan','darshan','2025-10-31 18:56:56','','0000-00-00 00:00:00'),(724,0,0,'I',2526,724,'I000724','2025-10-31',2084,'','','0000-00-00','','',0,0,0,0,1650,'','165','','','','N','darshan','darshan','2025-10-31 19:03:23','','0000-00-00 00:00:00'),(725,0,0,'I',2526,725,'I000725','2025-10-31',2111,'','','0000-00-00','','',0,0,0,0,1665,'','165','','','','N','darshan','darshan','2025-10-31 19:08:07','','0000-00-00 00:00:00'),(726,0,0,'I',2526,726,'I000726','2025-10-31',2109,'','','0000-00-00','','',0,0,0,0,1664,'','165','','','','N','darshan','darshan','2025-10-31 19:22:05','','0000-00-00 00:00:00'),(727,0,0,'I',2526,727,'I000727','2025-10-31',2126,'','','0000-00-00','','',0,0,0,0,1677,'','165','','','','N','drarchit','drarchit','2025-10-31 19:24:34','','0000-00-00 00:00:00'),(728,0,0,'I',2526,728,'I000728','2025-10-31',2087,'','','0000-00-00','','',0,0,0,0,416,'','165','','','','N','darshan','darshan','2025-10-31 19:26:08','','0000-00-00 00:00:00'),(729,0,0,'I',2526,729,'I000729','2025-10-31',2098,'','','0000-00-00','','',0,0,0,0,1659,'','165','','','','N','darshan','darshan','2025-10-31 19:29:34','','0000-00-00 00:00:00'),(730,0,0,'I',2526,730,'I000730','2025-10-31',2017,'','','0000-00-00','','',0,0,0,0,1596,'','165','','','','N','darshan','darshan','2025-10-31 19:40:24','','0000-00-00 00:00:00'),(731,0,0,'I',2526,731,'I000731','2025-10-31',2105,'','','0000-00-00','','',0,0,0,0,213,'','165','','','','N','darshan','darshan','2025-10-31 19:43:20','','0000-00-00 00:00:00'),(732,0,0,'I',2526,732,'I000732','2025-10-31',2128,'','','0000-00-00','','',0,0,0,0,1679,'','165','','','','N','darshan','darshan','2025-10-31 19:49:58','','0000-00-00 00:00:00'),(733,0,0,'I',2526,733,'I000733','2025-10-31',2088,'','','0000-00-00','','',0,0,0,0,1653,'','165','','','','N','darshan','darshan','2025-10-31 19:55:08','','0000-00-00 00:00:00'),(734,0,0,'I',2526,734,'I000734','2025-10-31',2093,'','','0000-00-00','','',0,0,0,0,885,'','165','','','','N','darshan','darshan','2025-10-31 20:06:41','','0000-00-00 00:00:00'),(735,0,0,'I',2526,735,'I000735','2025-10-31',2121,'','','0000-00-00','','',0,0,0,0,1672,'','165','','','','N','drarchit','drarchit','2025-10-31 20:09:24','','0000-00-00 00:00:00'),(736,0,0,'I',2526,736,'I000736','2025-10-31',2083,'','','0000-00-00','','',0,0,0,0,1649,'','165','','','','N','darshan','darshan','2025-10-31 20:09:25','','0000-00-00 00:00:00'),(737,0,0,'I',2526,737,'I000737','2025-10-31',2094,'','','0000-00-00','','',0,0,0,0,975,'','165','','','','N','darshan','darshan','2025-10-31 20:13:05','','0000-00-00 00:00:00'),(738,0,0,'I',2526,738,'I000738','2025-10-31',2099,'','','0000-00-00','','',0,0,0,0,1660,'','165','','','','N','darshan','darshan','2025-10-31 20:17:04','','0000-00-00 00:00:00'),(739,0,0,'I',2526,739,'I000739','2025-10-31',2124,'','','0000-00-00','','',0,0,0,0,1675,'','165','','','','N','darshan','darshan','2025-10-31 20:21:03','','0000-00-00 00:00:00'),(740,0,0,'I',2526,740,'I000740','2025-10-31',2108,'','','0000-00-00','','',0,0,0,0,1663,'','165','','','','N','darshan','darshan','2025-10-31 20:24:41','','0000-00-00 00:00:00'),(741,0,0,'I',2526,741,'I000741','2025-10-31',2115,'','','0000-00-00','','',0,0,0,0,875,'','165','','','','N','darshan','darshan','2025-10-31 20:33:06','','0000-00-00 00:00:00'),(742,0,0,'I',2526,742,'I000742','2025-10-31',2125,'','','0000-00-00','','',0,0,0,0,1676,'','165','','','','N','darshan','darshan','2025-10-31 20:40:17','','0000-00-00 00:00:00'),(743,0,0,'I',2526,743,'I000743','2025-10-31',2127,'','','0000-00-00','','',0,0,0,0,1678,'','165','','','','N','darshan','darshan','2025-10-31 20:45:52','','0000-00-00 00:00:00'),(744,0,0,'I',2526,744,'I000744','2025-10-31',2129,'','','0000-00-00','','',0,0,0,0,1680,'','165','','','','N','darshan','darshan','2025-10-31 20:47:59','','0000-00-00 00:00:00'),(745,0,0,'I',2526,745,'I000745','2025-10-31',2134,'','','0000-00-00','','',0,0,0,0,1683,'','165','','','','N','darshan','darshan','2025-10-31 21:06:53','','0000-00-00 00:00:00'),(746,0,0,'I',2526,746,'I000746','2025-11-01',2143,'','','0000-00-00','','',0,0,0,0,913,'','165','','','','N','darshan','darshan','2025-11-01 10:41:14','','0000-00-00 00:00:00'),(747,0,0,'I',2526,747,'I000747','2025-11-01',2161,'','','0000-00-00','','',0,0,0,0,1702,'','165','','','','N','drjayant','drjayant','2025-11-01 10:58:06','','0000-00-00 00:00:00'),(748,0,0,'I',2526,748,'I000748','2025-11-01',2141,'','','0000-00-00','','',0,0,0,0,1689,'','165','','','','N','darshan','darshan','2025-11-01 11:06:20','','0000-00-00 00:00:00'),(749,0,0,'I',2526,749,'I000749','2025-11-01',2165,'','','0000-00-00','','',0,0,0,0,1705,'','165','','','','N','drjayant','drjayant','2025-11-01 11:15:40','','0000-00-00 00:00:00'),(750,0,0,'I',2526,750,'I000750','2025-11-01',2151,'','','0000-00-00','','',0,0,0,0,1696,'','165','','','','N','darshan','darshan','2025-11-01 11:25:08','','0000-00-00 00:00:00'),(751,0,0,'I',2526,751,'I000751','2025-11-01',2172,'','','0000-00-00','','',0,0,0,0,1710,'','165','','','','N','drjayant','drjayant','2025-11-01 11:28:00','','0000-00-00 00:00:00'),(752,0,0,'I',2526,752,'I000752','2025-11-01',2156,'','','0000-00-00','','',0,0,0,0,800,'','165','','','','N','darshan','darshan','2025-11-01 11:28:32','','0000-00-00 00:00:00'),(753,0,0,'I',2526,753,'I000753','2025-11-01',2174,'','','0000-00-00','','',0,0,0,0,1712,'','165','','','','N','drjayant','drjayant','2025-11-01 11:32:48','','0000-00-00 00:00:00'),(754,0,0,'I',2526,754,'I000754','2025-11-01',2138,'','','0000-00-00','','',0,0,0,0,1686,'','165','','','','N','darshan','darshan','2025-11-01 11:34:00','','0000-00-00 00:00:00'),(755,0,0,'I',2526,755,'I000755','2025-11-01',2086,'','','0000-00-00','','',0,0,0,0,1652,'','165','','','','N','darshan','darshan','2025-11-01 11:38:47','','0000-00-00 00:00:00'),(756,0,0,'I',2526,756,'I000756','2025-11-01',2145,'','','0000-00-00','','',0,0,0,0,1691,'','165','','','','N','darshan','darshan','2025-11-01 11:55:18','','0000-00-00 00:00:00'),(757,0,0,'I',2526,757,'I000757','2025-11-01',2162,'','','0000-00-00','','',0,0,0,0,1261,'','165','','','','N','drjayant','drjayant','2025-11-01 11:58:18','','0000-00-00 00:00:00'),(758,0,0,'I',2526,758,'I000758','2025-11-01',2175,'','','0000-00-00','','',0,0,0,0,1713,'','165','','','','N','drarchit','drarchit','2025-11-01 11:59:14','','0000-00-00 00:00:00'),(759,0,0,'I',2526,759,'I000759','2025-11-01',2032,'','','0000-00-00','','',0,0,0,0,1607,'','165','','','','N','darshan','darshan','2025-11-01 12:01:39','','0000-00-00 00:00:00'),(760,0,0,'I',2526,760,'I000760','2025-11-01',2150,'','','0000-00-00','','',0,0,0,0,1695,'','165','','','','N','darshan','darshan','2025-11-01 12:07:54','','0000-00-00 00:00:00'),(761,0,0,'I',2526,761,'I000761','2025-11-01',2180,'','','0000-00-00','','',0,0,0,0,1718,'','165','','','','N','drarchit','drarchit','2025-11-01 12:11:31','','0000-00-00 00:00:00'),(762,0,0,'I',2526,762,'I000762','2025-11-01',2181,'','','0000-00-00','','',0,0,0,0,1719,'','165','','','','N','drarchit','drarchit','2025-11-01 12:23:45','','0000-00-00 00:00:00'),(763,0,0,'I',2526,763,'I000763','2025-11-01',2166,'','','0000-00-00','','',0,0,0,0,1706,'','165','','','','N','darshan','darshan','2025-11-01 12:30:50','','0000-00-00 00:00:00'),(764,0,0,'I',2526,764,'I000764','2025-11-01',2189,'','','0000-00-00','','',0,0,0,0,1724,'','165','','','','N','drarchit','drarchit','2025-11-01 12:33:38','','0000-00-00 00:00:00'),(765,0,0,'I',2526,765,'I000765','2025-11-01',2199,'','','0000-00-00','','',0,0,0,0,1732,'','165','','','','N','drjayant','drjayant','2025-11-01 12:51:55','','0000-00-00 00:00:00'),(766,0,0,'I',2526,766,'I000766','2025-11-01',2184,'','','0000-00-00','','',0,0,0,0,1720,'','165','','','','N','darshan','darshan','2025-11-01 12:53:41','','0000-00-00 00:00:00'),(767,0,0,'I',2526,767,'I000767','2025-11-01',2188,'','','0000-00-00','','',0,0,0,0,1723,'','165','','','','N','darshan','darshan','2025-11-01 12:59:39','','0000-00-00 00:00:00'),(768,0,0,'I',2526,768,'I000768','2025-11-01',2190,'','','0000-00-00','','',0,0,0,0,1725,'','165','','','','N','darshan','darshan','2025-11-01 13:04:21','','0000-00-00 00:00:00'),(769,0,0,'I',2526,769,'I000769','2025-11-01',2197,'','','0000-00-00','','',0,0,0,0,1730,'','165','','','','N','darshan','darshan','2025-11-01 13:08:06','','0000-00-00 00:00:00'),(770,0,0,'I',2526,770,'I000770','2025-11-01',2152,'','','0000-00-00','','',0,0,0,0,1697,'','165','','','','N','darshan','darshan','2025-11-01 13:12:47','','0000-00-00 00:00:00'),(771,0,0,'I',2526,771,'I000771','2025-11-01',2164,'','','0000-00-00','','',0,0,0,0,1704,'','165','','','','N','drarchit','drarchit','2025-11-01 13:16:49','','0000-00-00 00:00:00'),(772,0,0,'I',2526,772,'I000772','2025-11-01',2157,'','','0000-00-00','','',0,0,0,0,1698,'','165','','','','N','darshan','darshan','2025-11-01 13:17:42','','0000-00-00 00:00:00'),(773,0,0,'I',2526,773,'I000773','2025-11-01',2179,'','','0000-00-00','','',0,0,0,0,1717,'','165','','','','N','drarchit','drarchit','2025-11-01 13:21:59','','0000-00-00 00:00:00'),(774,0,0,'I',2526,774,'I000774','2025-11-01',2159,'','','0000-00-00','','',0,0,0,0,1700,'','165','','','','N','darshan','darshan','2025-11-01 13:22:47','','0000-00-00 00:00:00'),(775,0,0,'I',2526,775,'I000775','2025-11-01',2168,'','','0000-00-00','','',0,0,0,0,1707,'','165','','','','N','darshan','darshan','2025-11-01 13:28:37','','0000-00-00 00:00:00'),(776,0,0,'I',2526,776,'I000776','2025-11-01',2146,'','','0000-00-00','','',0,0,0,0,1692,'','165','','','','N','darshan','darshan','2025-11-01 13:32:19','','0000-00-00 00:00:00'),(777,0,0,'I',2526,777,'I000777','2025-11-01',2200,'','','0000-00-00','','',0,0,0,0,1733,'','165','','','','N','drarchit','drarchit','2025-11-01 13:38:36','','0000-00-00 00:00:00'),(778,0,0,'I',2526,778,'I000778','2025-11-01',2202,'','','0000-00-00','','',0,0,0,0,1735,'','165','','','','N','darshan','darshan','2025-11-01 13:39:19','','0000-00-00 00:00:00'),(779,0,0,'I',2526,779,'I000779','2025-11-01',2171,'','','0000-00-00','','',0,0,0,0,1709,'','165','','','','N','drarchit','drarchit','2025-11-01 13:45:27','','0000-00-00 00:00:00'),(780,0,0,'I',2526,780,'I000780','2025-11-01',2139,'','','0000-00-00','','',0,0,0,0,1687,'','165','','','','N','darshan','darshan','2025-11-01 13:47:47','','0000-00-00 00:00:00'),(781,0,0,'I',2526,781,'I000781','2025-11-01',2203,'','','0000-00-00','','',0,0,0,0,1736,'','165','','','','N','darshan','darshan','2025-11-01 13:54:39','','0000-00-00 00:00:00'),(782,0,0,'I',2526,782,'I000782','2025-11-01',2142,'','','0000-00-00','','',0,0,0,0,1690,'','165','','','','N','darshan','darshan','2025-11-01 13:59:29','','0000-00-00 00:00:00'),(783,0,0,'I',2526,783,'I000783','2025-11-01',2191,'','','0000-00-00','','',0,0,0,0,1726,'','165','','','','N','darshan','darshan','2025-11-01 14:08:36','','0000-00-00 00:00:00'),(784,0,0,'I',2526,784,'I000784','2025-11-01',2147,'','','0000-00-00','','',0,0,0,0,1693,'','165','','','','N','darshan','darshan','2025-11-01 14:12:14','','0000-00-00 00:00:00'),(785,0,0,'I',2526,785,'I000785','2025-11-01',2176,'','','0000-00-00','','',0,0,0,0,1714,'','165','','','','N','darshan','darshan','2025-11-01 14:20:39','','0000-00-00 00:00:00'),(786,0,0,'I',2526,786,'I000786','2025-11-01',2192,'','','0000-00-00','','',0,0,0,0,376,'','165','','','','N','darshan','darshan','2025-11-01 14:23:29','','0000-00-00 00:00:00'),(787,0,0,'I',2526,787,'I000787','2025-11-01',2201,'','','0000-00-00','','',0,0,0,0,1734,'','165','','','','N','darshan','darshan','2025-11-01 14:39:21','','0000-00-00 00:00:00'),(788,0,0,'I',2526,788,'I000788','2025-11-01',2186,'','','0000-00-00','','',0,0,0,0,1721,'','165','','','','N','darshan','darshan','2025-11-01 14:44:13','','0000-00-00 00:00:00'),(789,0,0,'I',2526,789,'I000789','2025-11-01',2206,'','','0000-00-00','','',0,0,0,0,738,'','165','','','','N','darshan','darshan','2025-11-01 14:59:15','','0000-00-00 00:00:00'),(790,0,0,'I',2526,790,'I000790','2025-11-01',2198,'','','0000-00-00','','',0,0,0,0,1731,'','165','','','','N','darshan','darshan','2025-11-01 15:03:35','','0000-00-00 00:00:00'),(791,0,0,'I',2526,791,'I000791','2025-11-03',2230,'','','0000-00-00','','',0,0,0,0,1752,'','165','','','','N','darshan','darshan','2025-11-03 10:52:42','','0000-00-00 00:00:00'),(792,0,0,'I',2526,792,'I000792','2025-11-03',2229,'','','0000-00-00','','',0,0,0,0,1751,'','165','','','','N','darshan','darshan','2025-11-03 11:09:06','','0000-00-00 00:00:00'),(793,0,0,'I',2526,793,'I000793','2025-11-03',2239,'','','0000-00-00','','',0,0,0,0,1757,'','165','','','','N','darshan','darshan','2025-11-03 11:25:12','','0000-00-00 00:00:00'),(794,0,0,'I',2526,794,'I000794','2025-11-03',2266,'','','0000-00-00','','',0,0,0,0,1776,'','165','','','','N','drjayant','drjayant','2025-11-03 11:25:28','','0000-00-00 00:00:00'),(795,0,0,'I',2526,795,'I000795','2025-11-03',2259,'','','0000-00-00','','',0,0,0,0,1770,'','165','','','','N','darshan','darshan','2025-11-03 11:28:42','','0000-00-00 00:00:00'),(796,0,0,'I',2526,796,'I000796','2025-11-03',2091,'','','0000-00-00','','',0,0,0,0,1655,'','165','','','','N','darshan','darshan','2025-11-03 11:35:19','','0000-00-00 00:00:00'),(797,0,0,'I',2526,797,'I000797','2025-11-03',2267,'','','0000-00-00','','',0,0,0,0,1777,'','165','','','','N','darshan','darshan','2025-11-03 12:01:56','','0000-00-00 00:00:00'),(798,0,0,'I',2526,798,'I000798','2025-11-03',2274,'','','0000-00-00','','',0,0,0,0,1782,'','165','','','','N','drjayant','drjayant','2025-11-03 12:06:32','','0000-00-00 00:00:00'),(799,0,0,'I',2526,799,'I000799','2025-11-03',2248,'','','0000-00-00','','',0,0,0,0,1761,'','165','','','','N','darshan','darshan','2025-11-03 12:07:32','','0000-00-00 00:00:00'),(800,0,0,'I',2526,800,'I000800','2025-11-03',2251,'','','0000-00-00','','',0,0,0,0,1764,'','165','','','','N','darshan','darshan','2025-11-03 12:11:15','','0000-00-00 00:00:00'),(801,0,0,'I',2526,801,'I000801','2025-11-03',2252,'','','0000-00-00','','',0,0,0,0,1765,'','165','','','','N','darshan','darshan','2025-11-03 12:14:48','','0000-00-00 00:00:00'),(802,0,0,'I',2526,802,'I000802','2025-11-03',2257,'','','0000-00-00','','',0,0,0,0,1284,'','165','','','','N','darshan','darshan','2025-11-03 12:17:44','','0000-00-00 00:00:00'),(803,0,0,'I',2526,803,'I000803','2025-11-03',2261,'','','0000-00-00','','',0,0,0,0,1772,'','165','','','','N','darshan','darshan','2025-11-03 12:23:36','','0000-00-00 00:00:00'),(804,0,0,'I',2526,804,'I000804','2025-11-03',2276,'','','0000-00-00','','',0,0,0,0,1783,'','165','','','','N','darshan','darshan','2025-11-03 12:30:06','','0000-00-00 00:00:00'),(805,0,0,'I',2526,805,'I000805','2025-11-03',2279,'','','0000-00-00','','',0,0,0,0,1785,'','165','','','','N','darshan','darshan','2025-11-03 12:37:28','','0000-00-00 00:00:00'),(806,0,0,'I',2526,806,'I000806','2025-11-03',2284,'','','0000-00-00','','',0,0,0,0,1788,'','165','','','','N','darshan','darshan','2025-11-03 12:41:52','','0000-00-00 00:00:00'),(807,0,0,'I',2526,807,'I000807','2025-11-03',2291,'','','0000-00-00','','',0,0,0,0,1794,'','165','','','','N','darshan','darshan','2025-11-03 12:45:21','','0000-00-00 00:00:00'),(808,0,0,'I',2526,808,'I000808','2025-11-03',2269,'','','0000-00-00','','',0,0,0,0,1299,'','165','','','','N','darshan','darshan','2025-11-03 12:57:58','','0000-00-00 00:00:00'),(809,0,0,'I',2526,809,'I000809','2025-11-03',2271,'','','0000-00-00','','',0,0,0,0,1779,'','165','','','','N','darshan','darshan','2025-11-03 13:02:31','','0000-00-00 00:00:00'),(810,0,0,'I',2526,810,'I000810','2025-11-03',2293,'','','0000-00-00','','',0,0,0,0,1796,'','165','','','','N','darshan','darshan','2025-11-03 13:07:19','','0000-00-00 00:00:00'),(811,0,0,'I',2526,811,'I000811','2025-11-03',2296,'','','0000-00-00','','',0,0,0,0,1799,'','165','','','','N','darshan','darshan','2025-11-03 13:11:20','','0000-00-00 00:00:00'),(812,0,0,'I',2526,812,'I000812','2025-11-03',2286,'','','0000-00-00','','',0,0,0,0,1790,'','165','','','','N','darshan','darshan','2025-11-03 13:15:19','','0000-00-00 00:00:00'),(813,0,0,'I',2526,813,'I000813','2025-11-03',2272,'','','0000-00-00','','',0,0,0,0,1780,'','165','','','','N','darshan','darshan','2025-11-03 13:23:00','','0000-00-00 00:00:00'),(814,0,0,'I',2526,814,'I000814','2025-11-03',2241,'','','0000-00-00','','',0,0,0,0,1758,'','165','','','','N','darshan','darshan','2025-11-03 13:28:07','','0000-00-00 00:00:00'),(815,0,0,'I',2526,815,'I000815','2025-11-03',2278,'','','0000-00-00','','',0,0,0,0,1784,'','165','','','','N','darshan','darshan','2025-11-03 13:33:32','','0000-00-00 00:00:00'),(816,0,0,'I',2526,816,'I000816','2025-11-03',2282,'','','0000-00-00','','',0,0,0,0,1419,'','165','','','','N','darshan','darshan','2025-11-03 13:36:58','','0000-00-00 00:00:00'),(817,0,0,'I',2526,817,'I000817','2025-11-03',2245,'','','0000-00-00','','',0,0,0,0,1759,'','165','','','','N','darshan','darshan','2025-11-03 13:48:59','','0000-00-00 00:00:00'),(818,0,0,'I',2526,818,'I000818','2025-11-03',2254,'','','0000-00-00','','',0,0,0,0,1767,'','165','','','','N','darshan','darshan','2025-11-03 13:55:11','','0000-00-00 00:00:00'),(819,0,0,'I',2526,819,'I000819','2025-11-03',2285,'','','0000-00-00','','',0,0,0,0,1789,'','165','','','','N','darshan','darshan','2025-11-03 14:01:48','','0000-00-00 00:00:00'),(820,0,0,'I',2526,820,'I000820','2025-11-03',2268,'','','0000-00-00','','',0,0,0,0,1778,'','165','','','','N','darshan','darshan','2025-11-03 14:06:13','','0000-00-00 00:00:00'),(821,0,0,'I',2526,821,'I000821','2025-11-03',2297,'','','0000-00-00','','',0,0,0,0,1800,'','165','','','','N','darshan','darshan','2025-11-03 14:27:51','','0000-00-00 00:00:00'),(822,0,0,'I',2526,822,'I000822','2025-11-03',2262,'','','0000-00-00','','',0,0,0,0,1773,'','165','','','','N','darshan','darshan','2025-11-03 14:33:34','','0000-00-00 00:00:00'),(823,0,0,'I',2526,823,'I000823','2025-11-03',2294,'','','0000-00-00','','',0,0,0,0,1797,'','165','','','','N','darshan','darshan','2025-11-03 14:42:31','','0000-00-00 00:00:00'),(824,0,0,'I',2526,824,'I000824','2025-11-03',2306,'','','0000-00-00','','',0,0,0,0,1807,'','165','','','','N','darshan','darshan','2025-11-03 17:07:12','','0000-00-00 00:00:00'),(825,0,0,'I',2526,825,'I000825','2025-11-03',2307,'','','0000-00-00','','',0,0,0,0,978,'','165','','','','N','darshan','darshan','2025-11-03 17:10:54','','0000-00-00 00:00:00'),(826,0,0,'I',2526,826,'I000826','2025-11-03',2309,'','','0000-00-00','','',0,0,0,0,1809,'','165','','','','N','darshan','darshan','2025-11-03 17:27:39','','0000-00-00 00:00:00'),(827,0,0,'I',2526,827,'I000827','2025-11-03',2311,'','','0000-00-00','','',0,0,0,0,1811,'','165','','','','N','darshan','darshan','2025-11-03 17:31:46','','0000-00-00 00:00:00'),(828,0,0,'I',2526,828,'I000828','2025-11-03',2312,'','','0000-00-00','','',0,0,0,0,1812,'','165','','','','N','darshan','darshan','2025-11-03 17:41:17','','0000-00-00 00:00:00'),(829,0,0,'I',2526,829,'I000829','2025-11-03',2304,'','','0000-00-00','','',0,0,0,0,1805,'','165','','','','N','darshan','darshan','2025-11-03 17:45:31','','0000-00-00 00:00:00'),(830,0,0,'I',2526,830,'I000830','2025-11-03',2313,'','','0000-00-00','','',0,0,0,0,1813,'','165','','','','N','darshan','darshan','2025-11-03 17:52:16','','0000-00-00 00:00:00'),(831,0,0,'I',2526,831,'I000831','2025-11-03',2308,'','','0000-00-00','','',0,0,0,0,1808,'','165','','','','N','darshan','darshan','2025-11-03 18:12:16','','0000-00-00 00:00:00'),(832,0,0,'I',2526,832,'I000832','2025-11-03',2305,'','','0000-00-00','','',0,0,0,0,1806,'','165','','','','N','darshan','darshan','2025-11-03 18:28:19','','0000-00-00 00:00:00'),(833,0,0,'I',2526,833,'I000833','2025-11-03',2325,'','','0000-00-00','','',0,0,0,0,1821,'','165','','','','N','darshan','darshan','2025-11-03 18:34:28','','0000-00-00 00:00:00'),(834,0,0,'I',2526,834,'I000834','2025-11-03',2320,'','','0000-00-00','','',0,0,0,0,527,'','165','','','','N','darshan','darshan','2025-11-03 18:37:07','','0000-00-00 00:00:00'),(835,0,0,'I',2526,835,'I000835','2025-11-03',2322,'','','0000-00-00','','',0,0,0,0,1819,'','165','','','','N','darshan','darshan','2025-11-03 18:51:32','','0000-00-00 00:00:00'),(836,0,0,'I',2526,836,'I000836','2025-11-03',2323,'','','0000-00-00','','',0,0,0,0,1820,'','165','','','','N','darshan','darshan','2025-11-03 18:54:01','','0000-00-00 00:00:00'),(837,0,0,'I',2526,837,'I000837','2025-11-03',2338,'','','0000-00-00','','',0,0,0,0,1831,'','165','','','','N','darshan','darshan','2025-11-03 19:00:08','','0000-00-00 00:00:00'),(838,0,0,'I',2526,838,'I000838','2025-11-03',2316,'','','0000-00-00','','',0,0,0,0,1815,'','165','','','','N','darshan','darshan','2025-11-03 19:17:57','','0000-00-00 00:00:00'),(839,0,0,'I',2526,839,'I000839','2025-11-03',2351,'','','0000-00-00','','',0,0,0,0,1838,'','165','','','','N','drjayant','drjayant','2025-11-03 19:30:35','','0000-00-00 00:00:00'),(840,0,0,'I',2526,840,'I000840','2025-11-03',2331,'','','0000-00-00','','',0,0,0,0,1825,'','165','','','','N','darshan','darshan','2025-11-03 19:31:29','','0000-00-00 00:00:00'),(841,0,0,'I',2526,841,'I000841','2025-11-03',2330,'','','0000-00-00','','',0,0,0,0,328,'','165','','','','N','darshan','darshan','2025-11-03 19:35:54','','0000-00-00 00:00:00'),(842,0,0,'I',2526,842,'I000842','2025-11-03',2333,'','','0000-00-00','','',0,0,0,0,1827,'','165','','','','N','darshan','darshan','2025-11-03 19:43:10','','0000-00-00 00:00:00'),(843,0,0,'I',2526,843,'I000843','2025-11-03',2341,'','','0000-00-00','','',0,0,0,0,1833,'','165','','','','N','darshan','darshan','2025-11-03 19:48:50','','0000-00-00 00:00:00'),(844,0,0,'I',2526,844,'I000844','2025-11-03',2342,'','','0000-00-00','','',0,0,0,0,1834,'','165','','','','N','darshan','darshan','2025-11-03 20:03:36','','0000-00-00 00:00:00'),(845,0,0,'I',2526,845,'I000845','2025-11-03',2354,'','','0000-00-00','','',0,0,0,0,1841,'','165','','','','N','darshan','darshan','2025-11-03 20:12:54','','0000-00-00 00:00:00'),(846,0,0,'I',2526,846,'I000846','2025-11-04',2357,'','','0000-00-00','','',0,0,0,0,1843,'','165','','','','N','darshan','darshan','2025-11-04 10:35:27','','0000-00-00 00:00:00'),(847,0,0,'I',2526,847,'I000847','2025-11-04',2358,'','','0000-00-00','','',0,0,0,0,1844,'','165','','','','N','darshan','darshan','2025-11-04 10:38:59','','0000-00-00 00:00:00'),(848,0,0,'I',2526,848,'I000848','2025-11-04',2363,'','','0000-00-00','','',0,0,0,0,629,'','165','','','','N','darshan','darshan','2025-11-04 11:11:31','','0000-00-00 00:00:00'),(849,0,0,'I',2526,849,'I000849','2025-11-04',2364,'','','0000-00-00','','',0,0,0,0,1849,'','165','','','','N','darshan','darshan','2025-11-04 11:15:21','','0000-00-00 00:00:00'),(850,0,0,'I',2526,850,'I000850','2025-11-04',2370,'','','0000-00-00','','',0,0,0,0,1854,'','165','','','','N','darshan','darshan','2025-11-04 11:18:28','','0000-00-00 00:00:00'),(851,0,0,'I',2526,851,'I000851','2025-11-04',2366,'','','0000-00-00','','',0,0,0,0,1552,'','165','','','','N','darshan','darshan','2025-11-04 11:36:31','','0000-00-00 00:00:00'),(852,0,0,'I',2526,852,'I000852','2025-11-04',2381,'','','0000-00-00','','',0,0,0,0,1864,'','165','','','','N','darshan','darshan','2025-11-04 11:58:35','','0000-00-00 00:00:00'),(853,0,0,'I',2526,853,'I000853','2025-11-04',2368,'','','0000-00-00','','',0,0,0,0,1852,'','165','','','','N','darshan','darshan','2025-11-04 12:06:11','','0000-00-00 00:00:00'),(854,0,0,'I',2526,854,'I000854','2025-11-04',2376,'','','0000-00-00','','',0,0,0,0,1859,'','165','','','','N','darshan','darshan','2025-11-04 12:10:16','','0000-00-00 00:00:00'),(855,0,0,'I',2526,855,'I000855','2025-11-04',2378,'','','0000-00-00','','',0,0,0,0,1861,'','165','','','','N','darshan','darshan','2025-11-04 12:12:57','','0000-00-00 00:00:00'),(856,0,0,'I',2526,856,'I000856','2025-11-04',2388,'','','0000-00-00','','',0,0,0,0,1191,'','165','','','','N','darshan','darshan','2025-11-04 12:26:46','','0000-00-00 00:00:00'),(857,0,0,'I',2526,857,'I000857','2025-11-04',2365,'','','0000-00-00','','',0,0,0,0,1850,'','165','','','','N','darshan','darshan','2025-11-04 12:32:57','','0000-00-00 00:00:00'),(858,0,0,'I',2526,858,'I000858','2025-11-04',2374,'','','0000-00-00','','',0,0,0,0,774,'','165','','','','N','darshan','darshan','2025-11-04 12:38:52','','0000-00-00 00:00:00'),(859,0,0,'I',2526,859,'I000859','2025-11-04',2359,'','','0000-00-00','','',0,0,0,0,1845,'','165','','','','N','darshan','darshan','2025-11-04 12:44:58','','0000-00-00 00:00:00'),(860,0,0,'I',2526,860,'I000860','2025-11-04',2389,'','','0000-00-00','','',0,0,0,0,1869,'','165','','','','N','darshan','darshan','2025-11-04 13:28:32','','0000-00-00 00:00:00'),(861,0,0,'I',2526,861,'I000861','2025-11-04',2373,'','','0000-00-00','','',0,0,0,0,1857,'','165','','','','N','darshan','darshan','2025-11-04 13:31:04','','0000-00-00 00:00:00'),(862,0,0,'I',2526,862,'I000862','2025-11-04',2394,'','','0000-00-00','','',0,0,0,0,1873,'','165','','','','N','darshan','darshan','2025-11-04 13:33:15','','0000-00-00 00:00:00'),(863,0,0,'I',2526,863,'I000863','2025-11-04',2367,'','','0000-00-00','','',0,0,0,0,1851,'','165','','','','N','darshan','darshan','2025-11-04 13:37:06','','0000-00-00 00:00:00'),(864,0,0,'I',2526,864,'I000864','2025-11-04',2379,'','','0000-00-00','','',0,0,0,0,1862,'','165','','','','N','darshan','darshan','2025-11-04 13:55:52','','0000-00-00 00:00:00'),(865,0,0,'I',2526,865,'I000865','2025-11-04',2384,'','','0000-00-00','','',0,0,0,0,1866,'','165','','','','N','darshan','darshan','2025-11-04 14:04:32','','0000-00-00 00:00:00'),(866,0,0,'I',2526,866,'I000866','2025-11-04',2393,'','','0000-00-00','','',0,0,0,0,1872,'','165','','','','N','darshan','darshan','2025-11-04 14:10:31','','0000-00-00 00:00:00'),(867,0,0,'I',2526,867,'I000867','2025-11-04',2386,'','','0000-00-00','','',0,0,0,0,1734,'','165','','','','N','darshan','darshan','2025-11-04 14:28:30','','0000-00-00 00:00:00'),(868,0,0,'I',2526,868,'I000868','2025-11-04',2397,'','','0000-00-00','','',0,0,0,0,1874,'','165','','','','N','darshan','darshan','2025-11-04 17:22:30','','0000-00-00 00:00:00'),(869,0,0,'I',2526,869,'I000869','2025-11-04',2398,'','','0000-00-00','','',0,0,0,0,1875,'','165','','','','N','darshan','darshan','2025-11-04 17:25:40','','0000-00-00 00:00:00'),(870,0,0,'I',2526,870,'I000870','2025-11-04',2399,'','','0000-00-00','','',0,0,0,0,1542,'','165','','','','N','darshan','darshan','2025-11-04 17:30:55','','0000-00-00 00:00:00'),(871,0,0,'I',2526,871,'I000871','2025-11-04',2401,'','','0000-00-00','','',0,0,0,0,1876,'','165','','','','N','darshan','darshan','2025-11-04 17:35:43','','0000-00-00 00:00:00'),(872,0,0,'I',2526,872,'I000872','2025-11-04',2402,'','','0000-00-00','','',0,0,0,0,520,'','165','','','','N','darshan','darshan','2025-11-04 17:39:52','','0000-00-00 00:00:00'),(873,0,0,'I',2526,873,'I000873','2025-11-04',2404,'','','0000-00-00','','',0,0,0,0,1877,'','165','','','','N','darshan','darshan','2025-11-04 17:48:44','','0000-00-00 00:00:00'),(874,0,0,'I',2526,874,'I000874','2025-11-04',2405,'','','0000-00-00','','',0,0,0,0,1878,'','165','','','','N','darshan','darshan','2025-11-04 17:55:35','','0000-00-00 00:00:00'),(875,0,0,'I',2526,875,'I000875','2025-11-04',2391,'','','0000-00-00','','',0,0,0,0,1871,'','165','','','','N','drjayant','drjayant','2025-11-04 17:57:15','','0000-00-00 00:00:00'),(876,0,0,'I',2526,876,'I000876','2025-11-04',2406,'','','0000-00-00','','',0,0,0,0,1879,'','165','','','','N','darshan','darshan','2025-11-04 18:03:38','','0000-00-00 00:00:00'),(877,0,0,'I',2526,877,'I000877','2025-11-04',2409,'','','0000-00-00','','',0,0,0,0,1882,'','165','','','','N','darshan','darshan','2025-11-04 18:13:09','','0000-00-00 00:00:00'),(878,0,0,'I',2526,878,'I000878','2025-11-04',2385,'','','0000-00-00','','',0,0,0,0,1867,'','165','','','','N','darshan','darshan','2025-11-04 18:20:15','','0000-00-00 00:00:00'),(879,0,0,'I',2526,879,'I000879','2025-11-04',2414,'','','0000-00-00','','',0,0,0,0,1129,'','165','','','','N','darshan','darshan','2025-11-04 18:29:35','','0000-00-00 00:00:00'),(880,0,0,'I',2526,880,'I000880','2025-11-04',2418,'','','0000-00-00','','',0,0,0,0,1886,'','165','','','','N','darshan','darshan','2025-11-04 18:51:15','','0000-00-00 00:00:00'),(881,0,0,'I',2526,881,'I000881','2025-11-04',2422,'','','0000-00-00','','',0,0,0,0,690,'','165','','','','N','darshan','darshan','2025-11-04 18:54:38','','0000-00-00 00:00:00'),(882,0,0,'I',2526,882,'I000882','2025-11-04',2408,'','','0000-00-00','','',0,0,0,0,1881,'','165','','','','N','darshan','darshan','2025-11-04 18:57:20','','0000-00-00 00:00:00'),(883,0,0,'I',2526,883,'I000883','2025-11-04',2421,'','','0000-00-00','','',0,0,0,0,1888,'','165','','','','N','darshan','darshan','2025-11-04 19:03:11','','0000-00-00 00:00:00'),(884,0,0,'I',2526,884,'I000884','2025-11-04',2424,'','','0000-00-00','','',0,0,0,0,1890,'','165','','','','N','darshan','darshan','2025-11-04 19:08:18','','0000-00-00 00:00:00'),(885,0,0,'I',2526,885,'I000885','2025-11-04',2427,'','','0000-00-00','','',0,0,0,0,862,'','165','','','','N','darshan','darshan','2025-11-04 19:14:30','','0000-00-00 00:00:00'),(886,0,0,'I',2526,886,'I000886','2025-11-04',2328,'','','0000-00-00','','',0,0,0,0,1824,'','165','','','','N','darshan','darshan','2025-11-04 19:30:50','','0000-00-00 00:00:00'),(887,0,0,'I',2526,887,'I000887','2025-11-04',2430,'','','0000-00-00','','',0,0,0,0,766,'','165','','','','N','darshan','darshan','2025-11-04 19:38:16','','0000-00-00 00:00:00'),(888,0,0,'I',2526,888,'I000888','2025-11-04',2416,'','','0000-00-00','','',0,0,0,0,1885,'','165','','','','N','darshan','darshan','2025-11-04 19:43:10','','0000-00-00 00:00:00'),(889,0,0,'I',2526,889,'I000889','2025-11-04',2425,'','','0000-00-00','','',0,0,0,0,1891,'','165','','','','N','darshan','darshan','2025-11-04 20:11:37','','0000-00-00 00:00:00'),(890,0,0,'I',2526,890,'I000890','2025-11-04',2433,'','','0000-00-00','','',0,0,0,0,1894,'','165','','','','N','darshan','darshan','2025-11-04 20:28:03','','0000-00-00 00:00:00'),(891,0,0,'I',2526,891,'I000891','2025-11-05',2439,'','','0000-00-00','','',0,0,0,0,1897,'','165','','','','N','darshan','darshan','2025-11-05 10:40:21','','0000-00-00 00:00:00'),(892,0,0,'I',2526,892,'I000892','2025-11-05',2443,'','','0000-00-00','','',0,0,0,0,1900,'','165','','','','N','darshan','darshan','2025-11-05 10:43:33','','0000-00-00 00:00:00'),(893,0,0,'I',2526,893,'I000893','2025-11-05',2442,'','','0000-00-00','','',0,0,0,0,1899,'','165','','','','N','darshan','darshan','2025-11-05 10:46:05','','0000-00-00 00:00:00'),(894,0,0,'I',2526,894,'I000894','2025-11-05',2440,'','','0000-00-00','','',0,0,0,0,591,'','165','','','','N','darshan','darshan','2025-11-05 10:49:49','','0000-00-00 00:00:00'),(895,0,0,'I',2526,895,'I000895','2025-11-05',2445,'','','0000-00-00','','',0,0,0,0,1902,'','165','','','','N','drjayant','drjayant','2025-11-05 11:05:38','','0000-00-00 00:00:00'),(896,0,0,'I',2526,896,'I000896','2025-11-05',2446,'','','0000-00-00','','',0,0,0,0,470,'','165','','','','N','darshan','darshan','2025-11-05 11:13:51','','0000-00-00 00:00:00'),(897,0,0,'I',2526,897,'I000897','2025-11-05',2449,'','','0000-00-00','','',0,0,0,0,1904,'','165','','','','N','drjayant','drjayant','2025-11-05 11:23:01','','0000-00-00 00:00:00'),(898,0,0,'I',2526,898,'I000898','2025-11-05',2448,'','','0000-00-00','','',0,0,0,0,1903,'','165','','','','N','darshan','darshan','2025-11-05 11:23:42','','0000-00-00 00:00:00'),(899,0,0,'I',2526,899,'I000899','2025-11-05',2450,'','','0000-00-00','','',0,0,0,0,457,'','165','','','','N','darshan','darshan','2025-11-05 11:27:07','','0000-00-00 00:00:00'),(900,0,0,'I',2526,900,'I000900','2025-11-05',2460,'','','0000-00-00','','',0,0,0,0,1911,'','165','','','','N','darshan','darshan','2025-11-05 11:32:16','','0000-00-00 00:00:00'),(901,0,0,'I',2526,901,'I000901','2025-11-05',2467,'','','0000-00-00','','',0,0,0,0,1917,'','165','','','','N','drjayant','drjayant','2025-11-05 11:41:26','','0000-00-00 00:00:00'),(902,0,0,'I',2526,902,'I000902','2025-11-05',2464,'','','0000-00-00','','',0,0,0,0,1915,'','165','','','','N','darshan','darshan','2025-11-05 11:45:14','','0000-00-00 00:00:00'),(903,0,0,'I',2526,903,'I000903','2025-11-05',2452,'','','0000-00-00','','',0,0,0,0,1906,'','165','','','','N','darshan','darshan','2025-11-05 11:58:30','','0000-00-00 00:00:00'),(904,0,0,'I',2526,904,'I000904','2025-11-05',2454,'','','0000-00-00','','',0,0,0,0,1907,'','165','','','','N','darshan','darshan','2025-11-05 12:10:32','','0000-00-00 00:00:00'),(905,0,0,'I',2526,905,'I000905','2025-11-05',2466,'','','0000-00-00','','',0,0,0,0,1916,'','165','','','','N','darshan','darshan','2025-11-05 12:14:15','','0000-00-00 00:00:00'),(906,0,0,'I',2526,906,'I000906','2025-11-05',2456,'','','0000-00-00','','',0,0,0,0,461,'','165','','','','N','darshan','darshan','2025-11-05 12:30:38','','0000-00-00 00:00:00'),(907,0,0,'I',2526,907,'I000907','2025-11-05',2478,'','','0000-00-00','','',0,0,0,0,1927,'','165','','','','N','darshan','darshan','2025-11-05 12:41:07','','0000-00-00 00:00:00'),(908,0,0,'I',2526,908,'I000908','2025-11-05',2482,'','','0000-00-00','','',0,0,0,0,1931,'','165','','','','N','darshan','darshan','2025-11-05 12:44:48','','0000-00-00 00:00:00'),(909,0,0,'I',2526,909,'I000909','2025-11-05',2457,'','','0000-00-00','','',0,0,0,0,1908,'','165','','','','N','darshan','darshan','2025-11-05 12:47:38','','0000-00-00 00:00:00'),(910,0,0,'I',2526,910,'I000910','2025-11-05',2459,'','','0000-00-00','','',0,0,0,0,1910,'','165','','','','N','darshan','darshan','2025-11-05 12:56:52','','0000-00-00 00:00:00'),(911,0,0,'I',2526,911,'I000911','2025-11-05',2444,'','','0000-00-00','','',0,0,0,0,1901,'','165','','','','N','darshan','darshan','2025-11-05 12:59:25','','0000-00-00 00:00:00'),(912,0,0,'I',2526,912,'I000912','2025-11-05',2484,'','','0000-00-00','','',0,0,0,0,1932,'','165','','','','N','darshan','darshan','2025-11-05 13:17:41','','0000-00-00 00:00:00'),(913,0,0,'I',2526,913,'I000913','2025-11-05',2486,'','','0000-00-00','','',0,0,0,0,1934,'','165','','','','N','darshan','darshan','2025-11-05 13:22:02','','0000-00-00 00:00:00'),(914,0,0,'I',2526,914,'I000914','2025-11-05',2462,'','','0000-00-00','','',0,0,0,0,1913,'','165','','','','N','darshan','darshan','2025-11-05 13:28:09','','0000-00-00 00:00:00'),(915,0,0,'I',2526,915,'I000915','2025-11-05',2461,'','','0000-00-00','','',0,0,0,0,1912,'','165','','','','N','darshan','darshan','2025-11-05 13:32:01','','0000-00-00 00:00:00'),(916,0,0,'I',2526,916,'I000916','2025-11-05',2476,'','','0000-00-00','','',0,0,0,0,1925,'','165','','','','N','darshan','darshan','2025-11-05 13:35:59','','0000-00-00 00:00:00'),(917,0,0,'I',2526,917,'I000917','2025-11-05',2463,'','','0000-00-00','','',0,0,0,0,1914,'','165','','','','N','darshan','darshan','2025-11-05 13:49:48','','0000-00-00 00:00:00'),(918,0,0,'I',2526,918,'I000918','2025-11-05',2480,'','','0000-00-00','','',0,0,0,0,1929,'','165','','','','N','darshan','darshan','2025-11-05 13:57:18','','0000-00-00 00:00:00'),(919,0,0,'I',2526,919,'I000919','2025-11-05',2488,'','','0000-00-00','','',0,0,0,0,1935,'','165','','','','N','darshan','darshan','2025-11-05 14:22:01','','0000-00-00 00:00:00'),(920,0,0,'I',2526,920,'I000920','2025-11-05',2493,'','','0000-00-00','','',0,0,0,0,1939,'','165','','','','N','darshan','darshan','2025-11-05 14:25:33','','0000-00-00 00:00:00'),(921,0,0,'I',2526,921,'I000921','2025-11-05',2458,'','','0000-00-00','','',0,0,0,0,1909,'','165','','','','N','darshan','darshan','2025-11-05 14:58:22','','0000-00-00 00:00:00'),(922,0,0,'I',2526,922,'I000922','2025-11-05',2498,'','','0000-00-00','','',0,0,0,0,655,'','165','','','','N','darshan','darshan','2025-11-05 17:32:54','','0000-00-00 00:00:00'),(923,0,0,'I',2526,923,'I000923','2025-11-05',2500,'','','0000-00-00','','',0,0,0,0,1943,'','165','','','','N','darshan','darshan','2025-11-05 17:37:35','','0000-00-00 00:00:00'),(924,0,0,'I',2526,924,'I000924','2025-11-05',2501,'','','0000-00-00','','',0,0,0,0,94,'','165','','','','N','darshan','darshan','2025-11-05 17:41:01','','0000-00-00 00:00:00'),(925,0,0,'I',2526,925,'I000925','2025-11-05',2503,'','','0000-00-00','','',0,0,0,0,1945,'','165','','','','N','darshan','darshan','2025-11-05 17:47:02','','0000-00-00 00:00:00'),(926,0,0,'I',2526,926,'I000926','2025-11-05',2506,'','','0000-00-00','','',0,0,0,0,1947,'','165','','','','N','darshan','darshan','2025-11-05 17:50:52','','0000-00-00 00:00:00'),(927,0,0,'I',2526,927,'I000927','2025-11-05',2507,'','','0000-00-00','','',0,0,0,0,1948,'','165','','','','N','darshan','darshan','2025-11-05 17:59:20','','0000-00-00 00:00:00'),(928,0,0,'I',2526,928,'I000928','2025-11-05',2513,'','','0000-00-00','','',0,0,0,0,1952,'','165','','','','N','darshan','darshan','2025-11-05 18:14:12','','0000-00-00 00:00:00'),(929,0,0,'I',2526,929,'I000929','2025-11-05',2525,'','','0000-00-00','','',0,0,0,0,1962,'','165','','','','N','drjayant','drjayant','2025-11-05 18:28:31','','0000-00-00 00:00:00'),(930,0,0,'I',2526,930,'I000930','2025-11-05',2512,'','','0000-00-00','','',0,0,0,0,1281,'','165','','','','N','darshan','darshan','2025-11-05 18:38:40','','0000-00-00 00:00:00'),(931,0,0,'I',2526,931,'I000931','2025-11-05',2504,'','','0000-00-00','','',0,0,0,0,1946,'','165','','','','N','darshan','darshan','2025-11-05 18:47:07','','0000-00-00 00:00:00'),(932,0,0,'I',2526,932,'I000932','2025-11-05',2533,'','','0000-00-00','','',0,0,0,0,1966,'','165','','','','N','drjayant','drjayant','2025-11-05 18:50:18','','0000-00-00 00:00:00'),(933,0,0,'I',2526,933,'I000933','2025-11-05',2508,'','','0000-00-00','','',0,0,0,0,1678,'','165','','','','N','darshan','darshan','2025-11-05 18:52:09','','0000-00-00 00:00:00'),(934,0,0,'I',2526,934,'I000934','2025-11-05',2537,'','','0000-00-00','','',0,0,0,0,1969,'','165','','','','N','darshan','darshan','2025-11-05 18:55:51','','0000-00-00 00:00:00'),(935,0,0,'I',2526,935,'I000935','2025-11-05',2516,'','','0000-00-00','','',0,0,0,0,1954,'','165','','','','N','darshan','darshan','2025-11-05 19:06:51','','0000-00-00 00:00:00'),(936,0,0,'I',2526,936,'I000936','2025-11-05',2539,'','','0000-00-00','','',0,0,0,0,1034,'','165','','','','N','drjayant','drjayant','2025-11-05 19:15:20','','0000-00-00 00:00:00'),(937,0,0,'I',2526,937,'I000937','2025-11-05',2542,'','','0000-00-00','','',0,0,0,0,1000,'','165','','','','N','darshan','darshan','2025-11-05 19:24:54','','0000-00-00 00:00:00'),(938,0,0,'I',2526,938,'I000938','2025-11-05',2317,'','','0000-00-00','','',0,0,0,0,1816,'','165','','','','N','darshan','darshan','2025-11-05 19:31:22','','0000-00-00 00:00:00'),(939,0,0,'I',2526,939,'I000939','2025-11-05',2529,'','','0000-00-00','','',0,0,0,0,1965,'','165','','','','N','darshan','darshan','2025-11-05 19:37:40','','0000-00-00 00:00:00'),(940,0,0,'I',2526,940,'I000940','2025-11-05',2509,'','','0000-00-00','','',0,0,0,0,1949,'','165','','','','N','darshan','darshan','2025-11-05 19:43:19','','0000-00-00 00:00:00'),(941,0,0,'I',2526,941,'I000941','2025-11-05',2534,'','','0000-00-00','','',0,0,0,0,1967,'','165','','','','N','darshan','darshan','2025-11-05 19:51:09','','0000-00-00 00:00:00'),(942,0,0,'I',2526,942,'I000942','2025-11-05',2546,'','','0000-00-00','','',0,0,0,0,1975,'','165','','','','N','darshan','darshan','2025-11-05 19:59:22','','0000-00-00 00:00:00'),(943,0,0,'I',2526,943,'I000943','2025-11-05',2540,'','','0000-00-00','','',0,0,0,0,1970,'','165','','','','N','darshan','darshan','2025-11-05 20:04:16','','0000-00-00 00:00:00'),(944,0,0,'I',2526,944,'I000944','2025-11-05',2527,'','','0000-00-00','','',0,0,0,0,1963,'','165','','','','N','darshan','darshan','2025-11-05 20:19:37','','0000-00-00 00:00:00'),(945,0,0,'I',2526,945,'I000945','2025-11-06',2557,'','','0000-00-00','','',0,0,0,0,1501,'','165','','','','N','darshan','darshan','2025-11-06 10:48:15','','0000-00-00 00:00:00'),(946,0,0,'I',2526,946,'I000946','2025-11-06',2559,'','','0000-00-00','','',0,0,0,0,1983,'','165','','','','N','darshan','darshan','2025-11-06 10:53:30','','0000-00-00 00:00:00'),(947,0,0,'I',2526,947,'I000947','2025-11-06',2558,'','','0000-00-00','','',0,0,0,0,1982,'','165','','','','N','darshan','darshan','2025-11-06 10:58:06','','0000-00-00 00:00:00'),(948,0,0,'I',2526,948,'I000948','2025-11-06',2568,'','','0000-00-00','','',0,0,0,0,1245,'','165','','','','N','darshan','darshan','2025-11-06 11:14:56','','0000-00-00 00:00:00'),(949,0,0,'I',2526,949,'I000949','2025-11-06',2569,'','','0000-00-00','','',0,0,0,0,861,'','165','','','','N','drjayant','drjayant','2025-11-06 11:16:39','','0000-00-00 00:00:00'),(950,0,0,'I',2526,950,'I000950','2025-11-06',2560,'','','0000-00-00','','',0,0,0,0,1984,'','165','','','','N','darshan','darshan','2025-11-06 11:20:20','','0000-00-00 00:00:00'),(951,0,0,'I',2526,951,'I000951','2025-11-06',2566,'','','0000-00-00','','',0,0,0,0,1989,'','165','','','','N','darshan','darshan','2025-11-06 11:24:01','','0000-00-00 00:00:00'),(952,0,0,'I',2526,952,'I000952','2025-11-06',2567,'','','0000-00-00','','',0,0,0,0,1248,'','165','','','','N','darshan','darshan','2025-11-06 11:29:41','','0000-00-00 00:00:00'),(953,0,0,'I',2526,953,'I000953','2025-11-06',2575,'','','0000-00-00','','',0,0,0,0,1994,'','165','','','','N','darshan','darshan','2025-11-06 11:53:06','','0000-00-00 00:00:00'),(954,0,0,'I',2526,954,'I000954','2025-11-06',2564,'','','0000-00-00','','',0,0,0,0,1987,'','165','','','','N','darshan','darshan','2025-11-06 12:01:53','','0000-00-00 00:00:00'),(955,0,0,'I',2526,955,'I000955','2025-11-06',2578,'','','0000-00-00','','',0,0,0,0,25,'','165','','','','N','darshan','darshan','2025-11-06 12:05:35','','0000-00-00 00:00:00'),(956,0,0,'I',2526,956,'I000956','2025-11-06',2582,'','','0000-00-00','','',0,0,0,0,1999,'','165','','','','N','darshan','darshan','2025-11-06 12:14:13','','0000-00-00 00:00:00'),(957,0,0,'I',2526,957,'I000957','2025-11-06',2565,'','','0000-00-00','','',0,0,0,0,1988,'','165','','','','N','darshan','darshan','2025-11-06 12:18:44','','0000-00-00 00:00:00'),(958,0,0,'I',2526,958,'I000958','2025-11-06',2585,'','','0000-00-00','','',0,0,0,0,2001,'','165','','','','N','darshan','darshan','2025-11-06 12:23:00','','0000-00-00 00:00:00'),(959,0,0,'I',2526,959,'I000959','2025-11-06',2576,'','','0000-00-00','','',0,0,0,0,1995,'','165','','','','N','darshan','darshan','2025-11-06 12:48:13','','0000-00-00 00:00:00'),(960,0,0,'I',2526,960,'I000960','2025-11-06',2588,'','','0000-00-00','','',0,0,0,0,2004,'','165','','','','N','darshan','darshan','2025-11-06 12:57:01','','0000-00-00 00:00:00'),(961,0,0,'I',2526,961,'I000961','2025-11-06',2580,'','','0000-00-00','','',0,0,0,0,1998,'','165','','','','N','darshan','darshan','2025-11-06 13:16:25','','0000-00-00 00:00:00'),(962,0,0,'I',2526,962,'I000962','2025-11-06',2583,'','','0000-00-00','','',0,0,0,0,2000,'','165','','','','N','darshan','darshan','2025-11-06 13:23:01','','0000-00-00 00:00:00'),(963,0,0,'I',2526,963,'I000963','2025-11-06',2571,'','','0000-00-00','','',0,0,0,0,1991,'','165','','','','N','darshan','darshan','2025-11-06 13:34:43','','0000-00-00 00:00:00'),(964,0,0,'I',2526,964,'I000964','2025-11-06',2595,'','','0000-00-00','','',0,0,0,0,2008,'','165','','','','N','darshan','darshan','2025-11-06 13:37:27','','0000-00-00 00:00:00'),(965,0,0,'I',2526,965,'I000965','2025-11-06',2570,'','','0000-00-00','','',0,0,0,0,1990,'','165','','','','N','darshan','darshan','2025-11-06 13:45:07','','0000-00-00 00:00:00'),(966,0,0,'I',2526,966,'I000966','2025-11-06',2572,'','','0000-00-00','','',0,0,0,0,1992,'','165','','','','N','darshan','darshan','2025-11-06 13:53:09','','0000-00-00 00:00:00'),(967,0,0,'I',2526,967,'I000967','2025-11-06',2574,'','','0000-00-00','','',0,0,0,0,1993,'','165','','','','N','darshan','darshan','2025-11-06 13:58:45','','0000-00-00 00:00:00'),(968,0,0,'I',2526,968,'I000968','2025-11-06',2594,'','','0000-00-00','','',0,0,0,0,838,'','165','','','','N','darshan','darshan','2025-11-06 14:11:10','','0000-00-00 00:00:00'),(969,0,0,'I',2526,969,'I000969','2025-11-06',2577,'','','0000-00-00','','',0,0,0,0,1996,'','165','','','','N','darshan','darshan','2025-11-06 14:17:46','','0000-00-00 00:00:00'),(970,0,0,'I',2526,970,'I000970','2025-11-06',2597,'','','0000-00-00','','',0,0,0,0,2010,'','165','','','','N','darshan','darshan','2025-11-06 14:28:26','','0000-00-00 00:00:00'),(971,0,0,'I',2526,971,'I000971','2025-11-06',2607,'','','0000-00-00','','',0,0,0,0,2014,'','165','','','','N','darshan','darshan','2025-11-06 17:21:20','','0000-00-00 00:00:00'),(972,0,0,'I',2526,972,'I000972','2025-11-06',2605,'','','0000-00-00','','',0,0,0,0,2013,'','165','','','','N','darshan','darshan','2025-11-06 17:27:31','','0000-00-00 00:00:00'),(973,0,0,'I',2526,973,'I000973','2025-11-06',2608,'','','0000-00-00','','',0,0,0,0,1285,'','165','','','','N','darshan','darshan','2025-11-06 17:33:46','','0000-00-00 00:00:00'),(974,0,0,'I',2526,974,'I000974','2025-11-06',2612,'','','0000-00-00','','',0,0,0,0,2016,'','165','','','','N','darshan','darshan','2025-11-06 17:55:55','','0000-00-00 00:00:00'),(975,0,0,'I',2526,975,'I000975','2025-11-06',2618,'','','0000-00-00','','',0,0,0,0,2020,'','165','','','','N','drjayant','drjayant','2025-11-06 18:05:55','','0000-00-00 00:00:00'),(976,0,0,'I',2526,976,'I000976','2025-11-06',2614,'','','0000-00-00','','',0,0,0,0,865,'','165','','','','N','darshan','darshan','2025-11-06 18:11:32','','0000-00-00 00:00:00'),(977,0,0,'I',2526,977,'I000977','2025-11-06',2544,'','','0000-00-00','','',0,0,0,0,1973,'','165','','','','N','darshan','darshan','2025-11-06 18:34:41','','0000-00-00 00:00:00'),(978,0,0,'I',2526,978,'I000978','2025-11-06',2626,'','','0000-00-00','','',0,0,0,0,2026,'','165','','','','N','drjayant','drjayant','2025-11-06 18:37:35','','0000-00-00 00:00:00'),(979,0,0,'I',2526,979,'I000979','2025-11-06',2603,'','','0000-00-00','','',0,0,0,0,2012,'','165','','','','N','darshan','darshan','2025-11-06 18:41:51','','0000-00-00 00:00:00'),(980,0,0,'I',2526,980,'I000980','2025-11-06',2611,'','','0000-00-00','','',0,0,0,0,2015,'','165','','','','N','darshan','darshan','2025-11-06 18:53:21','','0000-00-00 00:00:00'),(981,0,0,'I',2526,981,'I000981','2025-11-06',2631,'','','0000-00-00','','',0,0,0,0,811,'','165','','','','N','drjayant','drjayant','2025-11-06 18:55:27','','0000-00-00 00:00:00'),(982,0,0,'I',2526,982,'I000982','2025-11-06',2628,'','','0000-00-00','','',0,0,0,0,2028,'','165','','','','N','drjayant','drjayant','2025-11-06 19:03:12','','0000-00-00 00:00:00'),(983,0,0,'I',2526,983,'I000983','2025-11-06',2627,'','','0000-00-00','','',0,0,0,0,2027,'','165','','','','N','darshan','darshan','2025-11-06 19:04:25','','0000-00-00 00:00:00'),(984,0,0,'I',2526,984,'I000984','2025-11-06',2613,'','','0000-00-00','','',0,0,0,0,2017,'','165','','','','N','darshan','darshan','2025-11-06 19:12:24','','0000-00-00 00:00:00'),(985,0,0,'I',2526,985,'I000985','2025-11-06',2636,'','','0000-00-00','','',0,0,0,0,2032,'','165','','','','N','darshan','darshan','2025-11-06 19:17:04','','0000-00-00 00:00:00'),(986,0,0,'I',2526,986,'I000986','2025-11-06',2629,'','','0000-00-00','','',0,0,0,0,2029,'','165','','','','N','darshan','darshan','2025-11-06 19:30:27','','0000-00-00 00:00:00'),(987,0,0,'I',2526,987,'I000987','2025-11-06',2639,'','','0000-00-00','','',0,0,0,0,2034,'','165','','','','N','darshan','darshan','2025-11-06 19:52:01','','0000-00-00 00:00:00'),(988,0,0,'I',2526,988,'I000988','2025-11-06',2010,'','','0000-00-00','','',0,0,0,0,632,'','165','','','','N','darshan','darshan','2025-11-06 20:00:59','','0000-00-00 00:00:00'),(989,0,0,'I',2526,989,'I000989','2025-11-07',2644,'','','0000-00-00','','',0,0,0,0,2038,'','165','','','','N','darshan','darshan','2025-11-07 10:49:40','','0000-00-00 00:00:00'),(990,0,0,'I',2526,990,'I000990','2025-11-07',2652,'','','0000-00-00','','',0,0,0,0,158,'','165','','','','N','darshan','darshan','2025-11-07 11:05:18','','0000-00-00 00:00:00'),(991,0,0,'I',2526,991,'I000991','2025-11-07',2651,'','','0000-00-00','','',0,0,0,0,2044,'','165','','','','N','drjayant','drjayant','2025-11-07 11:14:41','','0000-00-00 00:00:00'),(992,0,0,'I',2526,992,'I000992','2025-11-07',2647,'','','0000-00-00','','',0,0,0,0,2041,'','165','','','','N','darshan','darshan','2025-11-07 11:22:54','','0000-00-00 00:00:00'),(993,0,0,'I',2526,993,'I000993','2025-11-07',2649,'','','0000-00-00','','',0,0,0,0,10,'','165','','','','N','darshan','darshan','2025-11-07 11:27:23','','0000-00-00 00:00:00'),(994,0,0,'I',2526,994,'I000994','2025-11-07',2654,'','','0000-00-00','','',0,0,0,0,2046,'','165','','','','N','darshan','darshan','2025-11-07 11:33:44','','0000-00-00 00:00:00'),(995,0,0,'I',2526,995,'I000995','2025-11-07',2664,'','','0000-00-00','','',0,0,0,0,1348,'','165','','','','N','darshan','darshan','2025-11-07 11:38:00','','0000-00-00 00:00:00'),(996,0,0,'I',2526,996,'I000996','2025-11-07',2668,'','','0000-00-00','','',0,0,0,0,2057,'','165','','','','N','darshan','darshan','2025-11-07 12:00:23','','0000-00-00 00:00:00'),(997,0,0,'I',2526,997,'I000997','2025-11-07',2675,'','','0000-00-00','','',0,0,0,0,2063,'','165','','','','N','drjayant','drjayant','2025-11-07 12:00:30','','0000-00-00 00:00:00'),(998,0,0,'I',2526,998,'I000998','2025-11-07',2673,'','','0000-00-00','','',0,0,0,0,2061,'','165','','','','N','darshan','darshan','2025-11-07 12:02:22','','0000-00-00 00:00:00'),(999,0,0,'I',2526,999,'I000999','2025-11-07',2669,'','','0000-00-00','','',0,0,0,0,2058,'','165','','','','N','darshan','darshan','2025-11-07 12:30:02','','0000-00-00 00:00:00'),(1000,0,0,'I',2526,1000,'I001000','2025-11-07',2678,'','','0000-00-00','','',0,0,0,0,340,'','165','','','','N','darshan','darshan','2025-11-07 12:33:48','','0000-00-00 00:00:00'),(1001,0,0,'I',2526,1001,'I001001','2025-11-07',2667,'','','0000-00-00','','',0,0,0,0,2056,'','165','','','','N','darshan','darshan','2025-11-07 12:40:29','','0000-00-00 00:00:00'),(1002,0,0,'I',2526,1002,'I001002','2025-11-07',2680,'','','0000-00-00','','',0,0,0,0,2066,'','165','','','','N','darshan','darshan','2025-11-07 12:53:30','','0000-00-00 00:00:00'),(1003,0,0,'I',2526,1003,'I001003','2025-11-07',2646,'','','0000-00-00','','',0,0,0,0,2040,'','165','','','','N','darshan','darshan','2025-11-07 13:00:15','','0000-00-00 00:00:00'),(1004,0,0,'I',2526,1004,'I001004','2025-11-07',2682,'','','0000-00-00','','',0,0,0,0,2067,'','165','','','','N','darshan','darshan','2025-11-07 13:04:30','','0000-00-00 00:00:00'),(1005,0,0,'I',2526,1005,'I001005','2025-11-07',2672,'','','0000-00-00','','',0,0,0,0,2060,'','165','','','','N','darshan','darshan','2025-11-07 13:07:49','','0000-00-00 00:00:00'),(1006,0,0,'I',2526,1006,'I001006','2025-11-07',2653,'','','0000-00-00','','',0,0,0,0,2045,'','165','','','','N','darshan','darshan','2025-11-07 13:12:05','','0000-00-00 00:00:00'),(1007,0,0,'I',2526,1007,'I001007','2025-11-07',2686,'','','0000-00-00','','',0,0,0,0,994,'','165','','','','N','darshan','darshan','2025-11-07 13:24:29','','0000-00-00 00:00:00'),(1008,0,0,'I',2526,1008,'I001008','2025-11-07',2658,'','','0000-00-00','','',0,0,0,0,2050,'','165','','','','N','darshan','darshan','2025-11-07 13:28:34','','0000-00-00 00:00:00'),(1009,0,0,'I',2526,1009,'I001009','2025-11-07',2674,'','','0000-00-00','','',0,0,0,0,2062,'','165','','','','N','darshan','darshan','2025-11-07 13:34:43','','0000-00-00 00:00:00'),(1010,0,0,'I',2526,1010,'I001010','2025-11-07',2655,'','','0000-00-00','','',0,0,0,0,2047,'','165','','','','N','darshan','darshan','2025-11-07 13:57:14','','0000-00-00 00:00:00'),(1011,0,0,'I',2526,1011,'I001011','2025-11-07',2684,'','','0000-00-00','','',0,0,0,0,2069,'','165','','','','N','darshan','darshan','2025-11-07 14:21:16','','0000-00-00 00:00:00'),(1012,0,0,'I',2526,1012,'I001012','2025-11-07',2648,'','','0000-00-00','','',0,0,0,0,2042,'','165','','','','N','darshan','darshan','2025-11-07 14:26:01','','0000-00-00 00:00:00'),(1013,0,0,'I',2526,1013,'I001013','2025-11-07',2685,'','','0000-00-00','','',0,0,0,0,2070,'','165','','','','N','darshan','darshan','2025-11-07 14:34:46','','0000-00-00 00:00:00'),(1014,0,0,'I',2526,1014,'I001014','2025-11-07',2694,'','','0000-00-00','','',0,0,0,0,2077,'','165','','','','N','darshan','darshan','2025-11-07 17:11:47','','0000-00-00 00:00:00'),(1015,0,0,'I',2526,1015,'I001015','2025-11-07',2701,'','','0000-00-00','','',0,0,0,0,2083,'','165','','','','N','darshan','darshan','2025-11-07 17:15:12','','0000-00-00 00:00:00'),(1016,0,0,'I',2526,1016,'I001016','2025-11-07',2692,'','','0000-00-00','','',0,0,0,0,2075,'','165','','','','N','darshan','darshan','2025-11-07 17:17:11','','0000-00-00 00:00:00'),(1017,0,0,'I',2526,1017,'I001017','2025-11-07',2693,'','','0000-00-00','','',0,0,0,0,2076,'','165','','','','N','darshan','darshan','2025-11-07 17:33:18','','0000-00-00 00:00:00'),(1018,0,0,'I',2526,1018,'I001018','2025-11-07',2697,'','','0000-00-00','','',0,0,0,0,2079,'','165','','','','N','darshan','darshan','2025-11-07 17:34:20','','0000-00-00 00:00:00'),(1019,0,0,'I',2526,1019,'I001019','2025-11-07',2705,'','','0000-00-00','','',0,0,0,0,207,'','165','','','','N','darshan','darshan','2025-11-07 17:36:38','','0000-00-00 00:00:00'),(1020,0,0,'I',2526,1020,'I001020','2025-11-07',2695,'','','0000-00-00','','',0,0,0,0,2078,'','165','','','','N','darshan','darshan','2025-11-07 17:43:41','','0000-00-00 00:00:00'),(1021,0,0,'I',2526,1021,'I001021','2025-11-07',2703,'','','0000-00-00','','',0,0,0,0,2085,'','165','','','','N','darshan','darshan','2025-11-07 17:47:19','','0000-00-00 00:00:00'),(1022,0,0,'I',2526,1022,'I001022','2025-11-07',2709,'','','0000-00-00','','',0,0,0,0,1548,'','165','','','','N','darshan','darshan','2025-11-07 18:05:29','','0000-00-00 00:00:00'),(1023,0,0,'I',2526,1023,'I001023','2025-11-07',2704,'','','0000-00-00','','',0,0,0,0,2086,'','165','','','','N','darshan','darshan','2025-11-07 18:08:36','','0000-00-00 00:00:00'),(1024,0,0,'I',2526,1024,'I001024','2025-11-07',2707,'','','0000-00-00','','',0,0,0,0,2087,'','165','','','','N','darshan','darshan','2025-11-07 18:11:15','','0000-00-00 00:00:00'),(1025,0,0,'I',2526,1025,'I001025','2025-11-07',2712,'','','0000-00-00','','',0,0,0,0,2091,'','165','','','','N','darshan','darshan','2025-11-07 18:32:27','','0000-00-00 00:00:00'),(1026,0,0,'I',2526,1026,'I001026','2025-11-07',2726,'','','0000-00-00','','',0,0,0,0,854,'','165','','','','N','darshan','darshan','2025-11-07 18:36:03','','0000-00-00 00:00:00'),(1027,0,0,'I',2526,1027,'I001027','2025-11-07',2717,'','','0000-00-00','','',0,0,0,0,1477,'','165','','','','N','darshan','darshan','2025-11-07 18:39:04','','0000-00-00 00:00:00'),(1028,0,0,'I',2526,1028,'I001028','2025-11-07',2714,'','','0000-00-00','','',0,0,0,0,2093,'','165','','','','N','darshan','darshan','2025-11-07 18:44:43','','0000-00-00 00:00:00'),(1029,0,0,'I',2526,1029,'I001029','2025-11-07',2690,'','','0000-00-00','','',0,0,0,0,2074,'','165','','','','N','darshan','darshan','2025-11-07 18:49:17','','0000-00-00 00:00:00'),(1030,0,0,'I',2526,1030,'I001030','2025-11-07',2715,'','','0000-00-00','','',0,0,0,0,1387,'','165','','','','N','darshan','darshan','2025-11-07 18:54:28','','0000-00-00 00:00:00'),(1031,0,0,'I',2526,1031,'I001031','2025-11-07',2716,'','','0000-00-00','','',0,0,0,0,2094,'','165','','','','N','darshan','darshan','2025-11-07 19:00:14','','0000-00-00 00:00:00'),(1032,0,0,'I',2526,1032,'I001032','2025-11-07',2733,'','','0000-00-00','','',0,0,0,0,1306,'','165','','','','N','darshan','darshan','2025-11-07 19:07:06','','0000-00-00 00:00:00'),(1033,0,0,'I',2526,1033,'I001033','2025-11-07',2734,'','','0000-00-00','','',0,0,0,0,827,'','165','','','','N','darshan','darshan','2025-11-07 19:12:19','','0000-00-00 00:00:00'),(1034,0,0,'I',2526,1034,'I001034','2025-11-07',2721,'','','0000-00-00','','',0,0,0,0,2096,'','165','','','','N','darshan','darshan','2025-11-07 19:15:57','','0000-00-00 00:00:00'),(1035,0,0,'I',2526,1035,'I001035','2025-11-07',2722,'','','0000-00-00','','',0,0,0,0,2097,'','165','','','','N','darshan','darshan','2025-11-07 19:22:16','','0000-00-00 00:00:00'),(1036,0,0,'I',2526,1036,'I001036','2025-11-07',2708,'','','0000-00-00','','',0,0,0,0,2088,'','165','','','','N','darshan','darshan','2025-11-07 19:27:42','','0000-00-00 00:00:00'),(1037,0,0,'I',2526,1037,'I001037','2025-11-07',2728,'','','0000-00-00','','',0,0,0,0,943,'','165','','','','N','darshan','darshan','2025-11-07 19:31:11','','0000-00-00 00:00:00'),(1038,0,0,'I',2526,1038,'I001038','2025-11-07',2634,'','','0000-00-00','','',0,0,0,0,2031,'','165','','','','N','darshan','darshan','2025-11-07 19:33:48','','0000-00-00 00:00:00'),(1039,0,0,'I',2526,1039,'I001039','2025-11-08',2746,'','','0000-00-00','','',0,0,0,0,2108,'','165','','','','N','darshan','darshan','2025-11-08 10:44:17','','0000-00-00 00:00:00'),(1040,0,0,'I',2526,1040,'I001040','2025-11-08',2748,'','','0000-00-00','','',0,0,0,0,2109,'','165','','','','N','darshan','darshan','2025-11-08 10:48:19','','0000-00-00 00:00:00'),(1041,0,0,'I',2526,1041,'I001041','2025-11-08',2758,'','','0000-00-00','','',0,0,0,0,2117,'','165','','','','N','darshan','darshan','2025-11-08 11:10:59','','0000-00-00 00:00:00'),(1042,0,0,'I',2526,1042,'I001042','2025-11-08',2761,'','','0000-00-00','','',0,0,0,0,2119,'','165','','','','N','darshan','darshan','2025-11-08 11:15:28','','0000-00-00 00:00:00'),(1043,0,0,'I',2526,1043,'I001043','2025-11-08',2745,'','','0000-00-00','','',0,0,0,0,2107,'','165','','','','N','darshan','darshan','2025-11-08 11:19:06','','0000-00-00 00:00:00'),(1044,0,0,'I',2526,1044,'I001044','2025-11-08',2757,'','','0000-00-00','','',0,0,0,0,1472,'','165','','','','N','darshan','darshan','2025-11-08 11:22:09','','0000-00-00 00:00:00'),(1045,0,0,'I',2526,1045,'I001045','2025-11-08',2763,'','','0000-00-00','','',0,0,0,0,2121,'','165','','','','N','darshan','darshan','2025-11-08 11:40:35','','0000-00-00 00:00:00'),(1046,0,0,'I',2526,1046,'I001046','2025-11-08',2751,'','','0000-00-00','','',0,0,0,0,2112,'','165','','','','N','darshan','darshan','2025-11-08 11:45:14','','0000-00-00 00:00:00'),(1047,0,0,'I',2526,1047,'I001047','2025-11-08',2753,'','','0000-00-00','','',0,0,0,0,2114,'','165','','','','N','darshan','darshan','2025-11-08 11:57:02','','0000-00-00 00:00:00'),(1048,0,0,'I',2526,1048,'I001048','2025-11-08',2762,'','','0000-00-00','','',0,0,0,0,2120,'','165','','','','N','darshan','darshan','2025-11-08 12:01:15','','0000-00-00 00:00:00'),(1049,0,0,'I',2526,1049,'I001049','2025-11-08',2770,'','','0000-00-00','','',0,0,0,0,2125,'','165','','','','N','darshan','darshan','2025-11-08 12:15:59','','0000-00-00 00:00:00'),(1050,0,0,'I',2526,1050,'I001050','2025-11-08',2772,'','','0000-00-00','','',0,0,0,0,1310,'','165','','','','N','darshan','darshan','2025-11-08 12:27:37','','0000-00-00 00:00:00'),(1051,0,0,'I',2526,1051,'I001051','2025-11-08',2781,'','','0000-00-00','','',0,0,0,0,2131,'','165','','','','N','darshan','darshan','2025-11-08 12:50:10','','0000-00-00 00:00:00'),(1052,0,0,'I',2526,1052,'I001052','2025-11-08',2783,'','','0000-00-00','','',0,0,0,0,2133,'','165','','','','N','darshan','darshan','2025-11-08 13:04:55','','0000-00-00 00:00:00'),(1053,0,0,'I',2526,1053,'I001053','2025-11-08',2774,'','','0000-00-00','','',0,0,0,0,80,'','165','','','','N','darshan','darshan','2025-11-08 13:06:51','','0000-00-00 00:00:00'),(1054,0,0,'I',2526,1054,'I001054','2025-11-08',2776,'','','0000-00-00','','',0,0,0,0,2128,'','165','','','','N','darshan','darshan','2025-11-08 13:11:18','','0000-00-00 00:00:00'),(1055,0,0,'I',2526,1055,'I001055','2025-11-08',2750,'','','0000-00-00','','',0,0,0,0,2111,'','165','','','','N','darshan','darshan','2025-11-08 13:17:39','','0000-00-00 00:00:00'),(1056,0,0,'I',2526,1056,'I001056','2025-11-08',2749,'','','0000-00-00','','',0,0,0,0,2110,'','165','','','','N','darshan','darshan','2025-11-08 13:29:44','','0000-00-00 00:00:00'),(1057,0,0,'I',2526,1057,'I001057','2025-11-08',2765,'','','0000-00-00','','',0,0,0,0,2122,'','165','','','','N','darshan','darshan','2025-11-08 13:41:05','','0000-00-00 00:00:00'),(1058,0,0,'I',2526,1058,'I001058','2025-11-08',2785,'','','0000-00-00','','',0,0,0,0,89,'','165','','','','N','darshan','darshan','2025-11-08 13:45:20','','0000-00-00 00:00:00'),(1059,0,0,'I',2526,1059,'I001059','2025-11-08',2786,'','','0000-00-00','','',0,0,0,0,507,'','165','','','','N','darshan','darshan','2025-11-08 13:48:16','','0000-00-00 00:00:00'),(1060,0,0,'I',2526,1060,'I001060','2025-11-08',2782,'','','0000-00-00','','',0,0,0,0,2132,'','165','','','','N','darshan','darshan','2025-11-08 13:54:10','','0000-00-00 00:00:00'),(1061,0,0,'I',2526,1061,'I001061','2025-11-08',2773,'','','0000-00-00','','',0,0,0,0,2127,'','165','','','','N','darshan','darshan','2025-11-08 14:05:37','','0000-00-00 00:00:00'),(1062,0,0,'I',2526,1062,'I001062','2025-11-08',2792,'','','0000-00-00','','',0,0,0,0,2138,'','165','','','','N','darshan','darshan','2025-11-08 14:11:30','','0000-00-00 00:00:00'),(1063,0,0,'I',2526,1063,'I001063','2025-11-08',2778,'','','0000-00-00','','',0,0,0,0,2129,'','165','','','','N','darshan','darshan','2025-11-08 14:23:40','','0000-00-00 00:00:00'),(1064,0,0,'I',2526,1064,'I001064','2025-11-08',2790,'','','0000-00-00','','',0,0,0,0,2136,'','165','','','','N','darshan','darshan','2025-11-08 14:43:10','','0000-00-00 00:00:00'),(1065,0,0,'I',2526,1065,'I001065','2025-11-08',2780,'','','0000-00-00','','',0,0,0,0,2130,'','165','','','','N','darshan','darshan','2025-11-08 15:05:08','','0000-00-00 00:00:00'),(1066,0,0,'I',2526,1066,'I001066','2025-11-08',2796,'','','0000-00-00','','',0,0,0,0,2141,'','165','','','','N','darshan','darshan','2025-11-08 15:16:00','','0000-00-00 00:00:00'),(1067,0,0,'I',2526,1067,'I001067','2025-11-10',2830,'','','0000-00-00','','',0,0,0,0,2157,'','165','','','','N','darshan','darshan','2025-11-10 11:04:11','','0000-00-00 00:00:00'),(1068,0,0,'I',2526,1068,'I001068','2025-11-10',2821,'','','0000-00-00','','',0,0,0,0,1335,'','165','','','','N','darshan','darshan','2025-11-10 11:13:37','','0000-00-00 00:00:00'),(1069,0,0,'I',2526,1069,'I001069','2025-11-10',2832,'','','0000-00-00','','',0,0,0,0,1609,'','165','','','','N','darshan','darshan','2025-11-10 11:20:24','','0000-00-00 00:00:00'),(1070,0,0,'I',2526,1070,'I001070','2025-11-10',2840,'','','0000-00-00','','',0,0,0,0,2162,'','165','','','','N','darshan','darshan','2025-11-10 11:33:50','','0000-00-00 00:00:00'),(1071,0,0,'I',2526,1071,'I001071','2025-11-10',2827,'','','0000-00-00','','',0,0,0,0,12,'','165','','','','N','darshan','darshan','2025-11-10 11:40:39','','0000-00-00 00:00:00'),(1072,0,0,'I',2526,1072,'I001072','2025-11-10',2828,'','','0000-00-00','','',0,0,0,0,404,'','165','','','','N','darshan','darshan','2025-11-10 11:44:00','','0000-00-00 00:00:00'),(1073,0,0,'I',2526,1073,'I001073','2025-11-10',2829,'','','0000-00-00','','',0,0,0,0,2156,'','165','','','','N','darshan','darshan','2025-11-10 11:49:17','','0000-00-00 00:00:00'),(1074,0,0,'I',2526,1074,'I001074','2025-11-10',2847,'','','0000-00-00','','',0,0,0,0,2167,'','165','','','','N','darshan','darshan','2025-11-10 12:00:21','','0000-00-00 00:00:00'),(1075,0,0,'I',2526,1075,'I001075','2025-11-10',2856,'','','0000-00-00','','',0,0,0,0,1617,'','165','','','','N','darshan','darshan','2025-11-10 12:04:09','','0000-00-00 00:00:00'),(1076,0,0,'I',2526,1076,'I001076','2025-11-10',2860,'','','0000-00-00','','',0,0,0,0,2174,'','165','','','','N','darshan','darshan','2025-11-10 12:08:39','','0000-00-00 00:00:00'),(1077,0,0,'I',2526,1077,'I001077','2025-11-10',2842,'','','0000-00-00','','',0,0,0,0,2164,'','165','','','','N','darshan','darshan','2025-11-10 12:31:18','','0000-00-00 00:00:00'),(1078,0,0,'I',2526,1078,'I001078','2025-11-10',2867,'','','0000-00-00','','',0,0,0,0,2179,'','165','','','','N','darshan','darshan','2025-11-10 12:40:08','','0000-00-00 00:00:00'),(1079,0,0,'I',2526,1079,'I001079','2025-11-10',2855,'','','0000-00-00','','',0,0,0,0,208,'','165','','','','N','darshan','darshan','2025-11-10 12:53:13','','0000-00-00 00:00:00'),(1080,0,0,'I',2526,1080,'I001080','2025-11-10',2826,'','','0000-00-00','','',0,0,0,0,2155,'','165','','','','N','darshan','darshan','2025-11-10 12:54:43','','0000-00-00 00:00:00'),(1081,0,0,'I',2526,1081,'I001081','2025-11-10',2874,'','','0000-00-00','','',0,0,0,0,1675,'','165','','','','N','darshan','darshan','2025-11-10 13:09:14','','0000-00-00 00:00:00'),(1082,0,0,'I',2526,1082,'I001082','2025-11-10',2854,'','','0000-00-00','','',0,0,0,0,2171,'','165','','','','N','darshan','darshan','2025-11-10 13:14:19','','0000-00-00 00:00:00'),(1083,0,0,'I',2526,1083,'I001083','2025-11-10',2836,'','','0000-00-00','','',0,0,0,0,2160,'','165','','','','N','darshan','darshan','2025-11-10 13:19:17','','0000-00-00 00:00:00'),(1084,0,0,'I',2526,1084,'I001084','2025-11-10',2858,'','','0000-00-00','','',0,0,0,0,2172,'','165','','','','N','darshan','darshan','2025-11-10 13:31:06','','0000-00-00 00:00:00'),(1085,0,0,'I',2526,1085,'I001085','2025-11-10',2864,'','','0000-00-00','','',0,0,0,0,2178,'','165','','','','N','darshan','darshan','2025-11-10 13:34:48','','0000-00-00 00:00:00'),(1086,0,0,'I',2526,1086,'I001086','2025-11-10',2834,'','','0000-00-00','','',0,0,0,0,2159,'','165','','','','N','darshan','darshan','2025-11-10 13:40:08','','0000-00-00 00:00:00'),(1087,0,0,'I',2526,1087,'I001087','2025-11-10',2852,'','','0000-00-00','','',0,0,0,0,2170,'','165','','','','N','darshan','darshan','2025-11-10 13:50:10','','0000-00-00 00:00:00'),(1088,0,0,'I',2526,1088,'I001088','2025-11-10',2873,'','','0000-00-00','','',0,0,0,0,2184,'','165','','','','N','darshan','darshan','2025-11-10 13:54:11','','0000-00-00 00:00:00'),(1089,0,0,'I',2526,1089,'I001089','2025-11-10',2870,'','','0000-00-00','','',0,0,0,0,2182,'','165','','','','N','darshan','darshan','2025-11-10 13:55:59','','0000-00-00 00:00:00'),(1090,0,0,'I',2526,1090,'I001090','2025-11-10',2862,'','','0000-00-00','','',0,0,0,0,2176,'','165','','','','N','darshan','darshan','2025-11-10 14:11:39','','0000-00-00 00:00:00'),(1091,0,0,'I',2526,1091,'I001091','2025-11-10',2875,'','','0000-00-00','','',0,0,0,0,2185,'','165','','','','N','darshan','darshan','2025-11-10 14:14:31','','0000-00-00 00:00:00'),(1092,0,0,'I',2526,1092,'I001092','2025-11-10',2877,'','','0000-00-00','','',0,0,0,0,2186,'','165','','','','N','darshan','darshan','2025-11-10 14:20:45','','0000-00-00 00:00:00'),(1093,0,0,'I',2526,1093,'I001093','2025-11-10',2878,'','','0000-00-00','','',0,0,0,0,864,'','165','','','','N','darshan','darshan','2025-11-10 14:27:33','','0000-00-00 00:00:00'),(1094,0,0,'I',2526,1094,'I001094','2025-11-10',2880,'','','0000-00-00','','',0,0,0,0,1503,'','165','','','','N','darshan','darshan','2025-11-10 17:17:59','','0000-00-00 00:00:00'),(1095,0,0,'I',2526,1095,'I001095','2025-11-10',2881,'','','0000-00-00','','',0,0,0,0,1859,'','165','','','','N','darshan','darshan','2025-11-10 17:27:02','','0000-00-00 00:00:00'),(1096,0,0,'I',2526,1096,'I001096','2025-11-10',2882,'','','0000-00-00','','',0,0,0,0,2187,'','165','','','','N','darshan','darshan','2025-11-10 17:31:42','','0000-00-00 00:00:00'),(1097,0,0,'I',2526,1097,'I001097','2025-11-10',2883,'','','0000-00-00','','',0,0,0,0,1612,'','165','','','','N','darshan','darshan','2025-11-10 17:34:45','','0000-00-00 00:00:00'),(1098,0,0,'I',2526,1098,'I001098','2025-11-10',2892,'','','0000-00-00','','',0,0,0,0,2192,'','165','','','','N','darshan','darshan','2025-11-10 18:17:52','','0000-00-00 00:00:00'),(1099,0,0,'I',2526,1099,'I001099','2025-11-10',2894,'','','0000-00-00','','',0,0,0,0,2193,'','165','','','','N','darshan','darshan','2025-11-10 18:33:23','','0000-00-00 00:00:00'),(1100,0,0,'I',2526,1100,'I001100','2025-11-10',2902,'','','0000-00-00','','',0,0,0,0,653,'','165','','','','N','darshan','darshan','2025-11-10 18:38:15','','0000-00-00 00:00:00'),(1101,0,0,'I',2526,1101,'I001101','2025-11-10',2884,'','','0000-00-00','','',0,0,0,0,2188,'','165','','','','N','darshan','darshan','2025-11-10 18:43:20','','0000-00-00 00:00:00'),(1102,0,0,'I',2526,1102,'I001102','2025-11-10',2899,'','','0000-00-00','','',0,0,0,0,2195,'','165','','','','N','darshan','darshan','2025-11-10 18:58:57','','0000-00-00 00:00:00'),(1103,0,0,'I',2526,1103,'I001103','2025-11-10',2794,'','','0000-00-00','','',0,0,0,0,2139,'','165','','','','N','darshan','darshan','2025-11-10 19:03:49','','0000-00-00 00:00:00'),(1104,0,0,'I',2526,1104,'I001104','2025-11-10',2887,'','','0000-00-00','','',0,0,0,0,2189,'','165','','','','N','darshan','darshan','2025-11-10 19:16:23','','0000-00-00 00:00:00'),(1105,0,0,'I',2526,1105,'I001105','2025-11-10',2912,'','','0000-00-00','','',0,0,0,0,1912,'','165','','','','N','darshan','darshan','2025-11-10 19:33:21','','0000-00-00 00:00:00'),(1106,0,0,'I',2526,1106,'I001106','2025-11-10',2903,'','','0000-00-00','','',0,0,0,0,2196,'','165','','','','N','darshan','darshan','2025-11-10 19:45:48','','0000-00-00 00:00:00'),(1107,0,0,'I',2526,1107,'I001107','2025-11-10',2917,'','','0000-00-00','','',0,0,0,0,2204,'','165','','','','N','darshan','darshan','2025-11-10 19:56:39','','0000-00-00 00:00:00'),(1108,0,0,'I',2526,1108,'I001108','2025-11-10',2885,'','','0000-00-00','','',0,0,0,0,524,'','165','','','','N','darshan','darshan','2025-11-10 19:59:33','','0000-00-00 00:00:00'),(1109,0,0,'I',2526,1109,'I001109','2025-11-10',2918,'','','0000-00-00','','',0,0,0,0,2205,'','165','','','','N','darshan','darshan','2025-11-10 20:30:29','','0000-00-00 00:00:00'),(1110,0,0,'I',2526,1110,'I001110','2025-11-11',2923,'','','0000-00-00','','',0,0,0,0,509,'','165','','','','N','darshan','darshan','2025-11-11 10:55:43','','0000-00-00 00:00:00'),(1111,0,0,'I',2526,1111,'I001111','2025-11-11',2922,'','','0000-00-00','','',0,0,0,0,1692,'','165','','','','N','darshan','darshan','2025-11-11 10:58:20','','0000-00-00 00:00:00'),(1112,0,0,'I',2526,1112,'I001112','2025-11-11',2932,'','','0000-00-00','','',0,0,0,0,1736,'','165','','','','N','darshan','darshan','2025-11-11 11:12:47','','0000-00-00 00:00:00'),(1113,0,0,'I',2526,1113,'I001113','2025-11-11',2926,'','','0000-00-00','','',0,0,0,0,2208,'','165','','','','N','drarchit','drarchit','2025-11-11 11:21:18','','0000-00-00 00:00:00'),(1114,0,0,'I',2526,1114,'I001114','2025-11-11',2928,'','','0000-00-00','','',0,0,0,0,166,'','165','','','','N','drarchit','drarchit','2025-11-11 11:23:41','','0000-00-00 00:00:00'),(1115,0,0,'I',2526,1115,'I001115','2025-11-11',2929,'','','0000-00-00','','',0,0,0,0,493,'','165','','','','N','drarchit','drarchit','2025-11-11 11:24:31','','0000-00-00 00:00:00'),(1116,0,0,'I',2526,1116,'I001116','2025-11-11',2931,'','','0000-00-00','','',0,0,0,0,2211,'','165','','','','N','drarchit','drarchit','2025-11-11 11:27:24','','0000-00-00 00:00:00'),(1117,0,0,'I',2526,1117,'I001117','2025-11-11',2957,'','','0000-00-00','','',0,0,0,0,2226,'','165','','','','N','drarchit','drarchit','2025-11-11 11:39:26','','0000-00-00 00:00:00'),(1118,0,0,'I',2526,1118,'I001118','2025-11-11',2937,'','','0000-00-00','','',0,0,0,0,2215,'','165','','','','N','drarchit','drarchit','2025-11-11 11:40:51','','0000-00-00 00:00:00'),(1119,0,0,'I',2526,1119,'I001119','2025-11-11',2951,'','','0000-00-00','','',0,0,0,0,1247,'','165','','','','N','darshan','darshan','2025-11-11 11:42:51','','0000-00-00 00:00:00'),(1120,0,0,'I',2526,1120,'I001120','2025-11-11',2930,'','','0000-00-00','','',0,0,0,0,2210,'','165','','','','N','darshan','darshan','2025-11-11 11:49:08','','0000-00-00 00:00:00'),(1121,0,0,'I',2526,1121,'I001121','2025-11-11',2925,'','','0000-00-00','','',0,0,0,0,1713,'','165','','','','N','drarchit','drarchit','2025-11-11 11:52:07','','0000-00-00 00:00:00'),(1122,0,0,'I',2526,1122,'I001122','2025-11-11',2933,'','','0000-00-00','','',0,0,0,0,2212,'','165','','','','N','darshan','darshan','2025-11-11 11:52:08','','0000-00-00 00:00:00'),(1123,0,0,'I',2526,1123,'I001123','2025-11-11',2956,'','','0000-00-00','','',0,0,0,0,2225,'','165','','','','N','drarchit','drarchit','2025-11-11 11:54:16','','0000-00-00 00:00:00'),(1124,0,0,'I',2526,1124,'I001124','2025-11-11',2940,'','','0000-00-00','','',0,0,0,0,1734,'','165','','','','N','darshan','darshan','2025-11-11 11:54:47','','0000-00-00 00:00:00'),(1125,0,0,'I',2526,1125,'I001125','2025-11-11',2947,'','','0000-00-00','','',0,0,0,0,2221,'','165','','','','N','drarchit','drarchit','2025-11-11 12:01:39','','0000-00-00 00:00:00'),(1126,0,0,'I',2526,1126,'I001126','2025-11-11',2943,'','','0000-00-00','','',0,0,0,0,638,'','165','','','','N','darshan','darshan','2025-11-11 12:03:53','','0000-00-00 00:00:00'),(1127,0,0,'I',2526,1127,'I001127','2025-11-11',2942,'','','0000-00-00','','',0,0,0,0,2219,'','165','','','','N','drarchit','drarchit','2025-11-11 12:08:31','','0000-00-00 00:00:00'),(1128,0,0,'I',2526,1128,'I001128','2025-11-11',2965,'','','0000-00-00','','',0,0,0,0,1228,'','165','','','','N','darshan','darshan','2025-11-11 12:12:21','','0000-00-00 00:00:00'),(1129,0,0,'I',2526,1129,'I001129','2025-11-11',2963,'','','0000-00-00','','',0,0,0,0,2231,'','165','','','','N','drarchit','drarchit','2025-11-11 12:13:11','','0000-00-00 00:00:00'),(1130,0,0,'I',2526,1130,'I001130','2025-11-11',2944,'','','0000-00-00','','',0,0,0,0,1420,'','165','','','','N','drarchit','drarchit','2025-11-11 12:16:18','','0000-00-00 00:00:00'),(1131,0,0,'I',2526,1131,'I001131','2025-11-11',2941,'','','0000-00-00','','',0,0,0,0,2218,'','165','','','','N','darshan','darshan','2025-11-11 12:16:38','','0000-00-00 00:00:00'),(1132,0,0,'I',2526,1132,'I001132','2025-11-11',2958,'','','0000-00-00','','',0,0,0,0,2227,'','165','','','','N','drarchit','drarchit','2025-11-11 12:24:17','','0000-00-00 00:00:00'),(1133,0,0,'I',2526,1133,'I001133','2025-11-11',2948,'','','0000-00-00','','',0,0,0,0,1548,'','165','','','','N','darshan','darshan','2025-11-11 12:25:23','','0000-00-00 00:00:00'),(1134,0,0,'I',2526,1134,'I001134','2025-11-11',2968,'','','0000-00-00','','',0,0,0,0,2234,'','165','','','','N','darshan','darshan','2025-11-11 12:31:01','','0000-00-00 00:00:00'),(1135,0,0,'I',2526,1135,'I001135','2025-11-11',2935,'','','0000-00-00','','',0,0,0,0,2214,'','165','','','','N','drarchit','drarchit','2025-11-11 12:31:31','','0000-00-00 00:00:00'),(1136,0,0,'I',2526,1136,'I001136','2025-11-11',2954,'','','0000-00-00','','',0,0,0,0,2223,'','165','','','','N','drarchit','drarchit','2025-11-11 12:35:36','','0000-00-00 00:00:00'),(1137,0,0,'I',2526,1137,'I001137','2025-11-11',2975,'','','0000-00-00','','',0,0,0,0,816,'','165','','','','N','drarchit','drarchit','2025-11-11 12:41:48','','0000-00-00 00:00:00'),(1138,0,0,'I',2526,1138,'I001138','2025-11-11',2953,'','','0000-00-00','','',0,0,0,0,2222,'','165','','','','N','darshan','darshan','2025-11-11 12:42:27','','0000-00-00 00:00:00'),(1139,0,0,'I',2526,1139,'I001139','2025-11-11',2967,'','','0000-00-00','','',0,0,0,0,1273,'','165','','','','N','drarchit','drarchit','2025-11-11 12:46:06','','0000-00-00 00:00:00'),(1140,0,0,'I',2526,1140,'I001140','2025-11-11',2960,'','','0000-00-00','','',0,0,0,0,2228,'','165','','','','N','darshan','darshan','2025-11-11 12:47:14','','0000-00-00 00:00:00'),(1141,0,0,'I',2526,1141,'I001141','2025-11-11',2972,'','','0000-00-00','','',0,0,0,0,1085,'','165','','','','N','drarchit','drarchit','2025-11-11 12:48:19','','0000-00-00 00:00:00'),(1142,0,0,'I',2526,1142,'I001142','2025-11-11',2976,'','','0000-00-00','','',0,0,0,0,2238,'','165','','','','N','drarchit','drarchit','2025-11-11 12:49:14','','0000-00-00 00:00:00'),(1143,0,0,'I',2526,1143,'I001143','2025-11-11',2955,'','','0000-00-00','','',0,0,0,0,2224,'','165','','','','N','darshan','darshan','2025-11-11 12:50:10','','0000-00-00 00:00:00'),(1144,0,0,'I',2526,1144,'I001144','2025-11-11',2920,'','','0000-00-00','','',0,0,0,0,2206,'','165','','','','N','darshan','darshan','2025-11-11 12:53:21','','0000-00-00 00:00:00'),(1145,0,0,'I',2526,1145,'I001145','2025-11-11',2962,'','','0000-00-00','','',0,0,0,0,2230,'','165','','','','N','drarchit','drarchit','2025-11-11 12:57:04','','0000-00-00 00:00:00'),(1146,0,0,'I',2526,1146,'I001146','2025-11-11',2981,'','','0000-00-00','','',0,0,0,0,309,'','165','','','','N','darshan','darshan','2025-11-11 12:57:56','','0000-00-00 00:00:00'),(1147,0,0,'I',2526,1147,'I001147','2025-11-11',2988,'','','0000-00-00','','',0,0,0,0,1945,'','165','','','','N','darshan','darshan','2025-11-11 13:04:21','','0000-00-00 00:00:00'),(1148,0,0,'I',2526,1148,'I001148','2025-11-11',2971,'','','0000-00-00','','',0,0,0,0,2236,'','165','','','','N','drarchit','drarchit','2025-11-11 13:08:03','','0000-00-00 00:00:00'),(1149,0,0,'I',2526,1149,'I001149','2025-11-11',2973,'','','0000-00-00','','',0,0,0,0,2237,'','165','','','','N','darshan','darshan','2025-11-11 13:08:11','','0000-00-00 00:00:00'),(1150,0,0,'I',2526,1150,'I001150','2025-11-11',2977,'','','0000-00-00','','',0,0,0,0,538,'','165','','','','N','drarchit','drarchit','2025-11-11 13:10:11','','0000-00-00 00:00:00'),(1151,0,0,'I',2526,1151,'I001151','2025-11-11',2985,'','','0000-00-00','','',0,0,0,0,2243,'','165','','','','N','drarchit','drarchit','2025-11-11 13:17:37','','0000-00-00 00:00:00'),(1152,0,0,'I',2526,1152,'I001152','2025-11-11',2934,'','','0000-00-00','','',0,0,0,0,2213,'','165','','','','N','darshan','darshan','2025-11-11 13:21:01','','0000-00-00 00:00:00'),(1153,0,0,'I',2526,1153,'I001153','2025-11-11',2961,'','','0000-00-00','','',0,0,0,0,2229,'','165','','','','N','drarchit','drarchit','2025-11-11 13:21:36','','0000-00-00 00:00:00'),(1154,0,0,'I',2526,1154,'I001154','2025-11-11',2983,'','','0000-00-00','','',0,0,0,0,2241,'','165','','','','N','drarchit','drarchit','2025-11-11 13:22:14','','0000-00-00 00:00:00'),(1155,0,0,'I',2526,1155,'I001155','2025-11-11',2984,'','','0000-00-00','','',0,0,0,0,2242,'','165','','','','N','drarchit','drarchit','2025-11-11 13:24:42','','0000-00-00 00:00:00'),(1156,0,0,'I',2526,1156,'I001156','2025-11-11',2980,'','','0000-00-00','','',0,0,0,0,2239,'','165','','','','N','darshan','darshan','2025-11-11 13:25:01','','0000-00-00 00:00:00'),(1157,0,0,'I',2526,1157,'I001157','2025-11-11',2992,'','','0000-00-00','','',0,0,0,0,21,'','165','','','','N','drarchit','drarchit','2025-11-11 13:28:02','','0000-00-00 00:00:00'),(1158,0,0,'I',2526,1158,'I001158','2025-11-11',2982,'','','0000-00-00','','',0,0,0,0,2240,'','165','','','','N','darshan','darshan','2025-11-11 13:33:11','','0000-00-00 00:00:00'),(1159,0,0,'I',2526,1159,'I001159','2025-11-11',2990,'','','0000-00-00','','',0,0,0,0,1511,'','165','','','','N','drarchit','drarchit','2025-11-11 13:33:28','','0000-00-00 00:00:00'),(1160,0,0,'I',2526,1160,'I001160','2025-11-11',2924,'','','0000-00-00','','',0,0,0,0,2207,'','165','','','','N','darshan','darshan','2025-11-11 13:46:19','','0000-00-00 00:00:00'),(1161,0,0,'I',2526,1161,'I001161','2025-11-11',2970,'','','0000-00-00','','',0,0,0,0,773,'','165','','','','N','drarchit','drarchit','2025-11-11 13:48:49','','0000-00-00 00:00:00'),(1162,0,0,'I',2526,1162,'I001162','2025-11-11',2907,'','','0000-00-00','','',0,0,0,0,2199,'','165','','','','N','darshan','darshan','2025-11-11 13:49:14','','0000-00-00 00:00:00'),(1163,0,0,'I',2526,1163,'I001163','2025-11-11',2964,'','','0000-00-00','','',0,0,0,0,2232,'','165','','','','N','drarchit','drarchit','2025-11-11 13:50:22','','0000-00-00 00:00:00'),(1164,0,0,'I',2526,1164,'I001164','2025-11-11',2989,'','','0000-00-00','','',0,0,0,0,508,'','165','','','','N','drarchit','drarchit','2025-11-11 13:54:09','','0000-00-00 00:00:00'),(1165,0,0,'I',2526,1165,'I001165','2025-11-11',2938,'','','0000-00-00','','',0,0,0,0,2216,'','165','','','','N','drarchit','drarchit','2025-11-11 14:04:16','','0000-00-00 00:00:00'),(1166,0,0,'I',2526,1166,'I001166','2025-11-11',2995,'','','0000-00-00','','',0,0,0,0,2246,'','165','','','','N','drarchit','drarchit','2025-11-11 14:10:51','','0000-00-00 00:00:00'),(1167,0,0,'I',2526,1167,'I001167','2025-11-11',2969,'','','0000-00-00','','',0,0,0,0,2235,'','165','','','','N','darshan','darshan','2025-11-11 14:11:17','','0000-00-00 00:00:00'),(1168,0,0,'I',2526,1168,'I001168','2025-11-11',2997,'','','0000-00-00','','',0,0,0,0,2248,'','165','','','','N','darshan','darshan','2025-11-11 14:45:34','','0000-00-00 00:00:00'),(1169,0,0,'I',2526,1169,'I001169','2025-11-11',3000,'','','0000-00-00','','',0,0,0,0,997,'','165','','','','N','darshan','darshan','2025-11-11 17:12:58','','0000-00-00 00:00:00'),(1170,0,0,'I',2526,1170,'I001170','2025-11-11',2998,'','','0000-00-00','','',0,0,0,0,2249,'','165','','','','N','darshan','darshan','2025-11-11 17:15:40','','0000-00-00 00:00:00'),(1171,0,0,'I',2526,1171,'I001171','2025-11-11',3003,'','','0000-00-00','','',0,0,0,0,460,'','165','','','','N','darshan','darshan','2025-11-11 17:41:34','','0000-00-00 00:00:00'),(1172,0,0,'I',2526,1172,'I001172','2025-11-11',3009,'','','0000-00-00','','',0,0,0,0,347,'','165','','','','N','darshan','darshan','2025-11-11 17:47:44','','0000-00-00 00:00:00'),(1173,0,0,'I',2526,1173,'I001173','2025-11-11',2986,'','','0000-00-00','','',0,0,0,0,2244,'','165','','','','N','darshan','darshan','2025-11-11 17:58:22','','0000-00-00 00:00:00'),(1174,0,0,'I',2526,1174,'I001174','2025-11-11',3005,'','','0000-00-00','','',0,0,0,0,2252,'','165','','','','N','drarchit','drarchit','2025-11-11 18:00:10','','0000-00-00 00:00:00'),(1175,0,0,'I',2526,1175,'I001175','2025-11-11',2710,'','','0000-00-00','','',0,0,0,0,2089,'','165','','','','N','darshan','darshan','2025-11-11 18:01:24','','0000-00-00 00:00:00'),(1176,0,0,'I',2526,1176,'I001176','2025-11-11',3001,'','','0000-00-00','','',0,0,0,0,2251,'','165','','','','N','darshan','darshan','2025-11-11 18:19:13','','0000-00-00 00:00:00'),(1177,0,0,'I',2526,1177,'I001177','2025-11-11',3010,'','','0000-00-00','','',0,0,0,0,2254,'','165','','','','N','drarchit','drarchit','2025-11-11 18:19:51','','0000-00-00 00:00:00'),(1178,0,0,'I',2526,1178,'I001178','2025-11-11',3012,'','','0000-00-00','','',0,0,0,0,1674,'','165','','','','N','drarchit','drarchit','2025-11-11 18:21:38','','0000-00-00 00:00:00'),(1179,0,0,'I',2526,1179,'I001179','2025-11-11',3013,'','','0000-00-00','','',0,0,0,0,2256,'','165','','','','N','drarchit','drarchit','2025-11-11 18:29:35','','0000-00-00 00:00:00'),(1180,0,0,'I',2526,1180,'I001180','2025-11-11',2999,'','','0000-00-00','','',0,0,0,0,2250,'','165','','','','N','darshan','darshan','2025-11-11 18:32:17','','0000-00-00 00:00:00'),(1181,0,0,'I',2526,1181,'I001181','2025-11-11',3016,'','','0000-00-00','','',0,0,0,0,2258,'','165','','','','N','drarchit','drarchit','2025-11-11 18:33:11','','0000-00-00 00:00:00'),(1182,0,0,'I',2526,1182,'I001182','2025-11-11',3017,'','','0000-00-00','','',0,0,0,0,2259,'','165','','','','N','drarchit','drarchit','2025-11-11 18:37:52','','0000-00-00 00:00:00'),(1183,0,0,'I',2526,1183,'I001183','2025-11-11',3025,'','','0000-00-00','','',0,0,0,0,1397,'','165','','','','N','darshan','darshan','2025-11-11 18:38:02','','0000-00-00 00:00:00'),(1184,0,0,'I',2526,1184,'I001184','2025-11-11',3028,'','','0000-00-00','','',0,0,0,0,357,'','165','','','','N','darshan','darshan','2025-11-11 18:39:29','','0000-00-00 00:00:00'),(1185,0,0,'I',2526,1185,'I001185','2025-11-11',2966,'','','0000-00-00','','',0,0,0,0,2233,'','165','','','','N','drarchit','drarchit','2025-11-11 18:40:57','','0000-00-00 00:00:00'),(1186,0,0,'I',2526,1186,'I001186','2025-11-11',3022,'','','0000-00-00','','',0,0,0,0,2263,'','165','','','','N','drarchit','drarchit','2025-11-11 18:45:50','','0000-00-00 00:00:00'),(1187,0,0,'I',2526,1187,'I001187','2025-11-11',3024,'','','0000-00-00','','',0,0,0,0,2265,'','165','','','','N','drarchit','drarchit','2025-11-11 18:49:50','','0000-00-00 00:00:00'),(1188,0,0,'I',2526,1188,'I001188','2025-11-11',3020,'','','0000-00-00','','',0,0,0,0,2262,'','165','','','','N','drarchit','drarchit','2025-11-11 18:56:44','','0000-00-00 00:00:00'),(1189,0,0,'I',2526,1189,'I001189','2025-11-11',3026,'','','0000-00-00','','',0,0,0,0,2266,'','165','','','','N','drarchit','drarchit','2025-11-11 18:58:04','','0000-00-00 00:00:00'),(1190,0,0,'I',2526,1190,'I001190','2025-11-11',3040,'','','0000-00-00','','',0,0,0,0,1663,'','165','','','','N','darshan','darshan','2025-11-11 19:03:40','','0000-00-00 00:00:00'),(1191,0,0,'I',2526,1191,'I001191','2025-11-11',3033,'','','0000-00-00','','',0,0,0,0,2270,'','165','','','','N','drarchit','drarchit','2025-11-11 19:05:35','','0000-00-00 00:00:00'),(1192,0,0,'I',2526,1192,'I001192','2025-11-11',3034,'','','0000-00-00','','',0,0,0,0,892,'','165','','','','N','drarchit','drarchit','2025-11-11 19:09:12','','0000-00-00 00:00:00'),(1193,0,0,'I',2526,1193,'I001193','2025-11-11',3015,'','','0000-00-00','','',0,0,0,0,2257,'','165','','','','N','darshan','darshan','2025-11-11 19:19:16','','0000-00-00 00:00:00'),(1194,0,0,'I',2526,1194,'I001194','2025-11-11',3030,'','','0000-00-00','','',0,0,0,0,2267,'','165','','','','N','darshan','darshan','2025-11-11 19:21:16','','0000-00-00 00:00:00'),(1195,0,0,'I',2526,1195,'I001195','2025-11-11',3039,'','','0000-00-00','','',0,0,0,0,2274,'','165','','','','N','drarchit','drarchit','2025-11-11 19:22:48','','0000-00-00 00:00:00'),(1196,0,0,'I',2526,1196,'I001196','2025-11-11',3023,'','','0000-00-00','','',0,0,0,0,2264,'','165','','','','N','darshan','darshan','2025-11-11 19:27:37','','0000-00-00 00:00:00'),(1197,0,0,'I',2526,1197,'I001197','2025-11-11',3035,'','','0000-00-00','','',0,0,0,0,2271,'','165','','','','N','drarchit','drarchit','2025-11-11 19:28:42','','0000-00-00 00:00:00'),(1198,0,0,'I',2526,1198,'I001198','2025-11-11',3038,'','','0000-00-00','','',0,0,0,0,2273,'','165','','','','N','drarchit','drarchit','2025-11-11 19:33:14','','0000-00-00 00:00:00'),(1199,0,0,'I',2526,1199,'I001199','2025-11-11',2993,'','','0000-00-00','','',0,0,0,0,284,'','165','','','','N','darshan','darshan','2025-11-11 19:34:04','','0000-00-00 00:00:00'),(1200,0,0,'I',2526,1200,'I001200','2025-11-11',3046,'','','0000-00-00','','',0,0,0,0,2278,'','165','','','','N','drarchit','drarchit','2025-11-11 19:37:42','','0000-00-00 00:00:00'),(1201,0,0,'I',2526,1201,'I001201','2025-11-11',3031,'','','0000-00-00','','',0,0,0,0,2268,'','165','','','','N','darshan','darshan','2025-11-11 19:38:00','','0000-00-00 00:00:00'),(1202,0,0,'I',2526,1202,'I001202','2025-11-11',3047,'','','0000-00-00','','',0,0,0,0,2279,'','165','','','','N','drarchit','drarchit','2025-11-11 19:42:56','','0000-00-00 00:00:00'),(1203,0,0,'I',2526,1203,'I001203','2025-11-11',3019,'','','0000-00-00','','',0,0,0,0,2261,'','165','','','','N','darshan','darshan','2025-11-11 19:48:46','','0000-00-00 00:00:00'),(1204,0,0,'I',2526,1204,'I001204','2025-11-11',3045,'','','0000-00-00','','',0,0,0,0,2277,'','165','','','','N','darshan','darshan','2025-11-11 19:50:50','','0000-00-00 00:00:00'),(1205,0,0,'I',2526,1205,'I001205','2025-11-11',3037,'','','0000-00-00','','',0,0,0,0,2272,'','165','','','','N','drarchit','drarchit','2025-11-11 20:00:12','','0000-00-00 00:00:00'),(1206,0,0,'I',2526,1206,'I001206','2025-11-11',3050,'','','0000-00-00','','',0,0,0,0,2281,'','165','','','','N','drarchit','drarchit','2025-11-11 20:10:39','','0000-00-00 00:00:00'),(1207,0,0,'I',2526,1207,'I001207','2025-11-11',3051,'','','0000-00-00','','',0,0,0,0,2282,'','165','','','','N','drarchit','drarchit','2025-11-11 20:12:35','','0000-00-00 00:00:00'),(1208,0,0,'I',2526,1208,'I001208','2025-11-11',180,'','','0000-00-00','','',0,0,0,0,164,'','165','','','','N','darshan','darshan','2025-11-11 20:15:56','','0000-00-00 00:00:00'),(1209,0,0,'I',2526,1209,'I001209','2025-11-11',3052,'','','0000-00-00','','',0,0,0,0,2283,'','165','','','','N','drarchit','drarchit','2025-11-11 20:16:36','','0000-00-00 00:00:00'),(1210,0,0,'I',2526,1210,'I001210','2025-11-11',3053,'','','0000-00-00','','',0,0,0,0,2284,'','165','','','','N','drarchit','drarchit','2025-11-11 20:19:50','','0000-00-00 00:00:00'),(1211,0,0,'I',2526,1211,'I001211','2025-11-12',3066,'','','0000-00-00','','',0,0,0,0,2294,'','165','','','','N','darshan','darshan','2025-11-12 11:02:06','','0000-00-00 00:00:00'),(1212,0,0,'I',2526,1212,'I001212','2025-11-12',3061,'','','0000-00-00','','',0,0,0,0,2292,'','165','','','','N','drarchit','drarchit','2025-11-12 11:04:37','','0000-00-00 00:00:00'),(1213,0,0,'I',2526,1213,'I001213','2025-11-12',3068,'','','0000-00-00','','',0,0,0,0,1097,'','165','','','','N','darshan','darshan','2025-11-12 11:13:24','','0000-00-00 00:00:00'),(1214,0,0,'I',2526,1214,'I001214','2025-11-12',3067,'','','0000-00-00','','',0,0,0,0,2295,'','165','','','','N','drarchit','drarchit','2025-11-12 11:18:57','','0000-00-00 00:00:00'),(1215,0,0,'I',2526,1215,'I001215','2025-11-12',3058,'','','0000-00-00','','',0,0,0,0,2289,'','165','','','','N','drarchit','drarchit','2025-11-12 11:24:44','','0000-00-00 00:00:00'),(1216,0,0,'I',2526,1216,'I001216','2025-11-12',3069,'','','0000-00-00','','',0,0,0,0,2296,'','165','','','','N','drarchit','drarchit','2025-11-12 11:33:04','','0000-00-00 00:00:00'),(1217,0,0,'I',2526,1217,'I001217','2025-11-12',3070,'','','0000-00-00','','',0,0,0,0,2297,'','165','','','','N','darshan','darshan','2025-11-12 11:34:02','','0000-00-00 00:00:00'),(1218,0,0,'I',2526,1218,'I001218','2025-11-12',3071,'','','0000-00-00','','',0,0,0,0,2298,'','165','','','','N','darshan','darshan','2025-11-12 11:37:42','','0000-00-00 00:00:00'),(1219,0,0,'I',2526,1219,'I001219','2025-11-12',3076,'','','0000-00-00','','',0,0,0,0,1235,'','165','','','','N','drarchit','drarchit','2025-11-12 11:39:39','','0000-00-00 00:00:00'),(1220,0,0,'I',2526,1220,'I001220','2025-11-12',3079,'','','0000-00-00','','',0,0,0,0,2303,'','165','','','','N','darshan','darshan','2025-11-12 11:51:14','','0000-00-00 00:00:00'),(1221,0,0,'I',2526,1221,'I001221','2025-11-12',3081,'','','0000-00-00','','',0,0,0,0,2305,'','165','','','','N','drarchit','drarchit','2025-11-12 11:53:38','','0000-00-00 00:00:00'),(1222,0,0,'I',2526,1222,'I001222','2025-11-12',3078,'','','0000-00-00','','',0,0,0,0,2302,'','165','','','','N','darshan','darshan','2025-11-12 12:01:37','','0000-00-00 00:00:00'),(1223,0,0,'I',2526,1223,'I001223','2025-11-12',3072,'','','0000-00-00','','',0,0,0,0,472,'','165','','','','N','darshan','darshan','2025-11-12 12:09:08','','0000-00-00 00:00:00'),(1224,0,0,'I',2526,1224,'I001224','2025-11-12',3080,'','','0000-00-00','','',0,0,0,0,2304,'','165','','','','N','darshan','darshan','2025-11-12 12:12:38','','0000-00-00 00:00:00'),(1225,0,0,'I',2526,1225,'I001225','2025-11-12',3064,'','','0000-00-00','','',0,0,0,0,1824,'','165','','','','N','darshan','darshan','2025-11-12 12:13:45','','0000-00-00 00:00:00'),(1226,0,0,'I',2526,1226,'I001226','2025-11-12',3083,'','','0000-00-00','','',0,0,0,0,2307,'','165','','','','N','darshan','darshan','2025-11-12 12:19:32','','0000-00-00 00:00:00'),(1227,0,0,'I',2526,1227,'I001227','2025-11-12',3099,'','','0000-00-00','','',0,0,0,0,2318,'','165','','','','N','drarchit','drarchit','2025-11-12 12:21:16','','0000-00-00 00:00:00'),(1228,0,0,'I',2526,1228,'I001228','2025-11-12',3093,'','','0000-00-00','','',0,0,0,0,2313,'','165','','','','N','darshan','darshan','2025-11-12 12:23:08','','0000-00-00 00:00:00'),(1229,0,0,'I',2526,1229,'I001229','2025-11-12',3065,'','','0000-00-00','','',0,0,0,0,20,'','165','','','','N','drarchit','drarchit','2025-11-12 12:25:21','','0000-00-00 00:00:00'),(1230,0,0,'I',2526,1230,'I001230','2025-11-12',3084,'','','0000-00-00','','',0,0,0,0,2308,'','165','','','','N','darshan','darshan','2025-11-12 12:26:29','','0000-00-00 00:00:00'),(1231,0,0,'I',2526,1231,'I001231','2025-11-12',3096,'','','0000-00-00','','',0,0,0,0,2316,'','165','','','','N','darshan','darshan','2025-11-12 12:33:35','','0000-00-00 00:00:00'),(1232,0,0,'I',2526,1232,'I001232','2025-11-12',3102,'','','0000-00-00','','',0,0,0,0,2320,'','165','','','','N','drarchit','drarchit','2025-11-12 12:36:48','','0000-00-00 00:00:00'),(1233,0,0,'I',2526,1233,'I001233','2025-11-12',3087,'','','0000-00-00','','',0,0,0,0,764,'','165','','','','N','darshan','darshan','2025-11-12 12:37:58','','0000-00-00 00:00:00'),(1234,0,0,'I',2526,1234,'I001234','2025-11-12',3089,'','','0000-00-00','','',0,0,0,0,755,'','165','','','','N','darshan','darshan','2025-11-12 12:41:26','','0000-00-00 00:00:00'),(1235,0,0,'I',2526,1235,'I001235','2025-11-12',3101,'','','0000-00-00','','',0,0,0,0,2072,'','165','','','','N','drarchit','drarchit','2025-11-12 12:46:35','','0000-00-00 00:00:00'),(1236,0,0,'I',2526,1236,'I001236','2025-11-12',3094,'','','0000-00-00','','',0,0,0,0,2314,'','165','','','','N','darshan','darshan','2025-11-12 12:47:54','','0000-00-00 00:00:00'),(1237,0,0,'I',2526,1237,'I001237','2025-11-12',3073,'','','0000-00-00','','',0,0,0,0,2299,'','165','','','','N','darshan','darshan','2025-11-12 12:50:28','','0000-00-00 00:00:00'),(1238,0,0,'I',2526,1238,'I001238','2025-11-12',3090,'','','0000-00-00','','',0,0,0,0,510,'','165','','','','N','darshan','darshan','2025-11-12 12:56:23','','0000-00-00 00:00:00'),(1239,0,0,'I',2526,1239,'I001239','2025-11-12',3100,'','','0000-00-00','','',0,0,0,0,2319,'','165','','','','N','drarchit','drarchit','2025-11-12 12:57:05','','0000-00-00 00:00:00'),(1240,0,0,'I',2526,1240,'I001240','2025-11-12',3105,'','','0000-00-00','','',0,0,0,0,199,'','165','','','','N','drarchit','drarchit','2025-11-12 13:00:12','','0000-00-00 00:00:00'),(1241,0,0,'I',2526,1241,'I001241','2025-11-12',3060,'','','0000-00-00','','',0,0,0,0,2291,'','165','','','','N','darshan','darshan','2025-11-12 13:01:56','','0000-00-00 00:00:00'),(1242,0,0,'I',2526,1242,'I001242','2025-11-12',3092,'','','0000-00-00','','',0,0,0,0,1556,'','165','','','','N','drarchit','drarchit','2025-11-12 13:11:02','','0000-00-00 00:00:00'),(1243,0,0,'I',2526,1243,'I001243','2025-11-12',3098,'','','0000-00-00','','',0,0,0,0,2317,'','165','','','','N','darshan','darshan','2025-11-12 13:12:49','','0000-00-00 00:00:00'),(1244,0,0,'I',2526,1244,'I001244','2025-11-12',3110,'','','0000-00-00','','',0,0,0,0,2326,'','165','','','','N','drarchit','drarchit','2025-11-12 13:16:10','','0000-00-00 00:00:00'),(1245,0,0,'I',2526,1245,'I001245','2025-11-12',3103,'','','0000-00-00','','',0,0,0,0,562,'','165','','','','N','darshan','darshan','2025-11-12 13:21:01','','0000-00-00 00:00:00'),(1246,0,0,'I',2526,1246,'I001246','2025-11-12',3108,'','','0000-00-00','','',0,0,0,0,2324,'','165','','','','N','drarchit','drarchit','2025-11-12 13:24:34','','0000-00-00 00:00:00'),(1247,0,0,'I',2526,1247,'I001247','2025-11-12',3074,'','','0000-00-00','','',0,0,0,0,2300,'','165','','','','N','darshan','darshan','2025-11-12 13:29:14','','0000-00-00 00:00:00'),(1248,0,0,'I',2526,1248,'I001248','2025-11-12',3109,'','','0000-00-00','','',0,0,0,0,2325,'','165','','','','N','drarchit','drarchit','2025-11-12 13:43:56','','0000-00-00 00:00:00'),(1249,0,0,'I',2526,1249,'I001249','2025-11-12',3116,'','','0000-00-00','','',0,0,0,0,1011,'','165','','','','N','darshan','darshan','2025-11-12 17:04:49','','0000-00-00 00:00:00'),(1250,0,0,'I',2526,1250,'I001250','2025-11-12',3119,'','','0000-00-00','','',0,0,0,0,750,'','165','','','','N','darshan','darshan','2025-11-12 17:27:44','','0000-00-00 00:00:00'),(1251,0,0,'I',2526,1251,'I001251','2025-11-12',3125,'','','0000-00-00','','',0,0,0,0,2334,'','165','','','','N','darshan','darshan','2025-11-12 17:30:33','','0000-00-00 00:00:00'),(1252,0,0,'I',2526,1252,'I001252','2025-11-12',3123,'','','0000-00-00','','',0,0,0,0,1089,'','165','','','','N','darshan','darshan','2025-11-12 17:33:07','','0000-00-00 00:00:00'),(1253,0,0,'I',2526,1253,'I001253','2025-11-12',3126,'','','0000-00-00','','',0,0,0,0,2335,'','165','','','','N','darshan','darshan','2025-11-12 17:39:06','','0000-00-00 00:00:00'),(1254,0,0,'I',2526,1254,'I001254','2025-11-12',3129,'','','0000-00-00','','',0,0,0,0,2337,'','165','','','','N','darshan','darshan','2025-11-12 17:53:11','','0000-00-00 00:00:00'),(1255,0,0,'I',2526,1255,'I001255','2025-11-12',3139,'','','0000-00-00','','',0,0,0,0,2345,'','165','','','','N','darshan','darshan','2025-11-12 17:59:45','','0000-00-00 00:00:00'),(1256,0,0,'I',2526,1256,'I001256','2025-11-12',3135,'','','0000-00-00','','',0,0,0,0,2343,'','165','','','','N','darshan','darshan','2025-11-12 18:04:31','','0000-00-00 00:00:00'),(1257,0,0,'I',2526,1257,'I001257','2025-11-12',3137,'','','0000-00-00','','',0,0,0,0,2344,'','165','','','','N','darshan','darshan','2025-11-12 18:24:10','','0000-00-00 00:00:00'),(1258,0,0,'I',2526,1258,'I001258','2025-11-12',3134,'','','0000-00-00','','',0,0,0,0,2342,'','165','','','','N','darshan','darshan','2025-11-12 18:30:13','','0000-00-00 00:00:00'),(1259,0,0,'I',2526,1259,'I001259','2025-11-12',3088,'','','0000-00-00','','',0,0,0,0,2311,'','165','','','','N','drarchit','drarchit','2025-11-12 18:31:49','','0000-00-00 00:00:00'),(1260,0,0,'I',2526,1260,'I001260','2025-11-12',3130,'','','0000-00-00','','',0,0,0,0,2338,'','165','','','','N','drarchit','drarchit','2025-11-12 18:35:38','','0000-00-00 00:00:00'),(1261,0,0,'I',2526,1261,'I001261','2025-11-12',3144,'','','0000-00-00','','',0,0,0,0,2348,'','165','','','','N','darshan','darshan','2025-11-12 18:38:42','','0000-00-00 00:00:00'),(1262,0,0,'I',2526,1262,'I001262','2025-11-12',3122,'','','0000-00-00','','',0,0,0,0,2332,'','165','','','','N','drarchit','drarchit','2025-11-12 18:39:26','','0000-00-00 00:00:00'),(1263,0,0,'I',2526,1263,'I001263','2025-11-12',3140,'','','0000-00-00','','',0,0,0,0,2346,'','165','','','','N','drarchit','drarchit','2025-11-12 18:41:43','','0000-00-00 00:00:00'),(1264,0,0,'I',2526,1264,'I001264','2025-11-12',3146,'','','0000-00-00','','',0,0,0,0,618,'','165','','','','N','drarchit','drarchit','2025-11-12 18:55:57','','0000-00-00 00:00:00'),(1265,0,0,'I',2526,1265,'I001265','2025-11-12',3131,'','','0000-00-00','','',0,0,0,0,2339,'','165','','','','N','darshan','darshan','2025-11-12 18:58:34','','0000-00-00 00:00:00'),(1266,0,0,'I',2526,1266,'I001266','2025-11-12',3128,'','','0000-00-00','','',0,0,0,0,2336,'','165','','','','N','darshan','darshan','2025-11-12 19:02:27','','0000-00-00 00:00:00'),(1267,0,0,'I',2526,1267,'I001267','2025-11-12',3143,'','','0000-00-00','','',0,0,0,0,2347,'','165','','','','N','drarchit','drarchit','2025-11-12 19:03:54','','0000-00-00 00:00:00'),(1268,0,0,'I',2526,1268,'I001268','2025-11-12',3157,'','','0000-00-00','','',0,0,0,0,2356,'','165','','','','N','drarchit','drarchit','2025-11-12 19:06:36','','0000-00-00 00:00:00'),(1269,0,0,'I',2526,1269,'I001269','2025-11-12',3153,'','','0000-00-00','','',0,0,0,0,1759,'','165','','','','N','darshan','darshan','2025-11-12 19:07:45','','0000-00-00 00:00:00'),(1270,0,0,'I',2526,1270,'I001270','2025-11-12',3148,'','','0000-00-00','','',0,0,0,0,592,'','165','','','','N','darshan','darshan','2025-11-12 19:11:41','','0000-00-00 00:00:00'),(1271,0,0,'I',2526,1271,'I001271','2025-11-12',3145,'','','0000-00-00','','',0,0,0,0,2349,'','165','','','','N','drarchit','drarchit','2025-11-12 19:13:09','','0000-00-00 00:00:00'),(1272,0,0,'I',2526,1272,'I001272','2025-11-12',3151,'','','0000-00-00','','',0,0,0,0,2353,'','165','','','','N','drarchit','drarchit','2025-11-12 19:18:53','','0000-00-00 00:00:00'),(1273,0,0,'I',2526,1273,'I001273','2025-11-12',3132,'','','0000-00-00','','',0,0,0,0,2340,'','165','','','','N','darshan','darshan','2025-11-12 19:22:24','','0000-00-00 00:00:00'),(1274,0,0,'I',2526,1274,'I001274','2025-11-12',3161,'','','0000-00-00','','',0,0,0,0,2358,'','165','','','','N','drarchit','drarchit','2025-11-12 19:26:45','','0000-00-00 00:00:00'),(1275,0,0,'I',2526,1275,'I001275','2025-11-12',3150,'','','0000-00-00','','',0,0,0,0,2352,'','165','','','','N','darshan','darshan','2025-11-12 19:29:50','','0000-00-00 00:00:00'),(1276,0,0,'I',2526,1276,'I001276','2025-11-12',3162,'','','0000-00-00','','',0,0,0,0,2359,'','165','','','','N','drarchit','drarchit','2025-11-12 19:44:03','','0000-00-00 00:00:00'),(1277,0,0,'I',2526,1277,'I001277','2025-11-12',3170,'','','0000-00-00','','',0,0,0,0,494,'','165','','','','N','drarchit','drarchit','2025-11-12 19:52:25','','0000-00-00 00:00:00'),(1278,0,0,'I',2526,1278,'I001278','2025-11-12',3168,'','','0000-00-00','','',0,0,0,0,2362,'','165','','','','N','darshan','darshan','2025-11-12 19:59:07','','0000-00-00 00:00:00'),(1279,0,0,'I',2526,1279,'I001279','2025-11-12',3167,'','','0000-00-00','','',0,0,0,0,1585,'','165','','','','N','drarchit','drarchit','2025-11-12 20:00:20','','0000-00-00 00:00:00'),(1280,0,0,'I',2526,1280,'I001280','2025-11-12',3177,'','','0000-00-00','','',0,0,0,0,2369,'','165','','','','N','drarchit','drarchit','2025-11-12 20:05:20','','0000-00-00 00:00:00'),(1281,0,0,'I',2526,1281,'I001281','2025-11-12',3166,'','','0000-00-00','','',0,0,0,0,2361,'','165','','','','N','darshan','darshan','2025-11-12 20:06:28','','0000-00-00 00:00:00'),(1282,0,0,'I',2526,1282,'I001282','2025-11-12',3179,'','','0000-00-00','','',0,0,0,0,2371,'','165','','','','N','drarchit','drarchit','2025-11-12 20:09:48','','0000-00-00 00:00:00'),(1283,0,0,'I',2526,1283,'I001283','2025-11-12',3181,'','','0000-00-00','','',0,0,0,0,2373,'','165','','','','N','darshan','darshan','2025-11-12 20:10:34','','0000-00-00 00:00:00'),(1284,0,0,'I',2526,1284,'I001284','2025-11-12',3169,'','','0000-00-00','','',0,0,0,0,2363,'','165','','','','N','drarchit','drarchit','2025-11-12 20:17:10','','0000-00-00 00:00:00'),(1285,0,0,'I',2526,1285,'I001285','2025-11-12',3175,'','','0000-00-00','','',0,0,0,0,2368,'','165','','','','N','drarchit','drarchit','2025-11-12 20:35:43','','0000-00-00 00:00:00'),(1286,0,0,'I',2526,1286,'I001286','2025-11-12',3178,'','','0000-00-00','','',0,0,0,0,2370,'','165','','','','N','drarchit','drarchit','2025-11-12 20:42:00','','0000-00-00 00:00:00'),(1287,0,0,'I',2526,1287,'I001287','2025-11-12',3182,'','','0000-00-00','','',0,0,0,0,2374,'','165','','','','N','darshan','darshan','2025-11-12 20:45:15','','0000-00-00 00:00:00'),(1288,0,0,'I',2526,1288,'I001288','2025-11-12',3188,'','','0000-00-00','','',0,0,0,0,1491,'','165','','','','N','drarchit','drarchit','2025-11-12 20:50:38','','0000-00-00 00:00:00'),(1289,0,0,'I',2526,1289,'I001289','2025-11-13',3197,'','','0000-00-00','','',0,0,0,0,1767,'','165','','','','N','darshan','darshan','2025-11-13 10:49:57','','0000-00-00 00:00:00'),(1290,0,0,'I',2526,1290,'I001290','2025-11-13',3199,'','','0000-00-00','','',0,0,0,0,813,'','165','','','','N','darshan','darshan','2025-11-13 10:54:15','','0000-00-00 00:00:00'),(1291,0,0,'I',2526,1291,'I001291','2025-11-13',3202,'','','0000-00-00','','',0,0,0,0,2386,'','165','','','','N','darshan','darshan','2025-11-13 10:58:52','','0000-00-00 00:00:00'),(1292,0,0,'I',2526,1292,'I001292','2025-11-13',3204,'','','0000-00-00','','',0,0,0,0,1053,'','165','','','','N','darshan','darshan','2025-11-13 11:05:05','','0000-00-00 00:00:00'),(1293,0,0,'I',2526,1293,'I001293','2025-11-13',3195,'','','0000-00-00','','',0,0,0,0,2382,'','165','','','','N','drarchit','drarchit','2025-11-13 11:05:42','','0000-00-00 00:00:00'),(1294,0,0,'I',2526,1294,'I001294','2025-11-13',3201,'','','0000-00-00','','',0,0,0,0,2385,'','165','','','','N','drarchit','drarchit','2025-11-13 11:12:12','','0000-00-00 00:00:00'),(1295,0,0,'I',2526,1295,'I001295','2025-11-13',3200,'','','0000-00-00','','',0,0,0,0,2384,'','165','','','','N','darshan','darshan','2025-11-13 11:13:18','','0000-00-00 00:00:00'),(1296,0,0,'I',2526,1296,'I001296','2025-11-13',3193,'','','0000-00-00','','',0,0,0,0,2381,'','165','','','','N','drarchit','drarchit','2025-11-13 11:14:40','','0000-00-00 00:00:00'),(1297,0,0,'I',2526,1297,'I001297','2025-11-13',3192,'','','0000-00-00','','',0,0,0,0,2380,'','165','','','','N','drarchit','drarchit','2025-11-13 11:20:30','','0000-00-00 00:00:00'),(1298,0,0,'I',2526,1298,'I001298','2025-11-13',3159,'','','0000-00-00','','',0,0,0,0,2357,'','165','','','','N','drarchit','drarchit','2025-11-13 11:24:55','','0000-00-00 00:00:00'),(1299,0,0,'I',2526,1299,'I001299','2025-11-13',3214,'','','0000-00-00','','',0,0,0,0,2394,'','165','','','','N','darshan','darshan','2025-11-13 11:28:30','','0000-00-00 00:00:00'),(1300,0,0,'I',2526,1300,'I001300','2025-11-13',3212,'','','0000-00-00','','',0,0,0,0,2393,'','165','','','','N','drarchit','drarchit','2025-11-13 11:31:22','','0000-00-00 00:00:00'),(1301,0,0,'I',2526,1301,'I001301','2025-11-13',3207,'','','0000-00-00','','',0,0,0,0,1130,'','165','','','','N','darshan','darshan','2025-11-13 11:31:33','','0000-00-00 00:00:00'),(1302,0,0,'I',2526,1302,'I001302','2025-11-13',3217,'','','0000-00-00','','',0,0,0,0,2396,'','165','','','','N','drarchit','drarchit','2025-11-13 11:41:19','','0000-00-00 00:00:00'),(1303,0,0,'I',2526,1303,'I001303','2025-11-13',3203,'','','0000-00-00','','',0,0,0,0,2387,'','165','','','','N','darshan','darshan','2025-11-13 11:46:02','','0000-00-00 00:00:00'),(1304,0,0,'I',2526,1304,'I001304','2025-11-13',3213,'','','0000-00-00','','',0,0,0,0,601,'','165','','','','N','drarchit','drarchit','2025-11-13 11:47:54','','0000-00-00 00:00:00'),(1305,0,0,'I',2526,1305,'I001305','2025-11-13',3205,'','','0000-00-00','','',0,0,0,0,1758,'','165','','','','N','darshan','darshan','2025-11-13 11:53:35','','0000-00-00 00:00:00'),(1306,0,0,'I',2526,1306,'I001306','2025-11-13',3222,'','','0000-00-00','','',0,0,0,0,2400,'','165','','','','N','drarchit','drarchit','2025-11-13 11:54:43','','0000-00-00 00:00:00'),(1307,0,0,'I',2526,1307,'I001307','2025-11-13',3208,'','','0000-00-00','','',0,0,0,0,2389,'','165','','','','N','darshan','darshan','2025-11-13 11:58:31','','0000-00-00 00:00:00'),(1308,0,0,'I',2526,1308,'I001308','2025-11-13',3223,'','','0000-00-00','','',0,0,0,0,721,'','165','','','','N','drarchit','drarchit','2025-11-13 12:02:29','','0000-00-00 00:00:00'),(1309,0,0,'I',2526,1309,'I001309','2025-11-13',3229,'','','0000-00-00','','',0,0,0,0,2405,'','165','','','','N','darshan','darshan','2025-11-13 12:03:27','','0000-00-00 00:00:00'),(1310,0,0,'I',2526,1310,'I001310','2025-11-13',3211,'','','0000-00-00','','',0,0,0,0,2392,'','165','','','','N','darshan','darshan','2025-11-13 12:07:50','','0000-00-00 00:00:00'),(1311,0,0,'I',2526,1311,'I001311','2025-11-13',3227,'','','0000-00-00','','',0,0,0,0,2404,'','165','','','','N','drarchit','drarchit','2025-11-13 12:11:40','','0000-00-00 00:00:00'),(1312,0,0,'I',2526,1312,'I001312','2025-11-13',3228,'','','0000-00-00','','',0,0,0,0,1747,'','165','','','','N','drarchit','drarchit','2025-11-13 12:17:11','','0000-00-00 00:00:00'),(1313,0,0,'I',2526,1313,'I001313','2025-11-13',3218,'','','0000-00-00','','',0,0,0,0,1687,'','165','','','','N','darshan','darshan','2025-11-13 12:17:14','','0000-00-00 00:00:00'),(1314,0,0,'I',2526,1314,'I001314','2025-11-13',3156,'','','0000-00-00','','',0,0,0,0,2355,'','165','','','','N','drarchit','drarchit','2025-11-13 12:34:50','','0000-00-00 00:00:00'),(1315,0,0,'I',2526,1315,'I001315','2025-11-13',3230,'','','0000-00-00','','',0,0,0,0,1866,'','165','','','','N','darshan','darshan','2025-11-13 12:37:23','','0000-00-00 00:00:00'),(1316,0,0,'I',2526,1316,'I001316','2025-11-13',3155,'','','0000-00-00','','',0,0,0,0,943,'','165','','','','N','darshan','darshan','2025-11-13 12:41:10','','0000-00-00 00:00:00'),(1317,0,0,'I',2526,1317,'I001317','2025-11-13',3231,'','','0000-00-00','','',0,0,0,0,708,'','165','','','','N','drarchit','drarchit','2025-11-13 12:45:42','','0000-00-00 00:00:00'),(1318,0,0,'I',2526,1318,'I001318','2025-11-13',3225,'','','0000-00-00','','',0,0,0,0,2402,'','165','','','','N','drarchit','drarchit','2025-11-13 12:49:54','','0000-00-00 00:00:00'),(1319,0,0,'I',2526,1319,'I001319','2025-11-13',3234,'','','0000-00-00','','',0,0,0,0,349,'','165','','','','N','darshan','darshan','2025-11-13 12:52:25','','0000-00-00 00:00:00'),(1320,0,0,'I',2526,1320,'I001320','2025-11-13',3226,'','','0000-00-00','','',0,0,0,0,2403,'','165','','','','N','drarchit','drarchit','2025-11-13 12:55:32','','0000-00-00 00:00:00'),(1321,0,0,'I',2526,1321,'I001321','2025-11-13',3219,'','','0000-00-00','','',0,0,0,0,2397,'','165','','','','N','drarchit','drarchit','2025-11-13 12:57:47','','0000-00-00 00:00:00'),(1322,0,0,'I',2526,1322,'I001322','2025-11-13',3056,'','','0000-00-00','','',0,0,0,0,2287,'','165','','','','N','drarchit','drarchit','2025-11-13 13:07:43','','0000-00-00 00:00:00'),(1323,0,0,'I',2526,1323,'I001323','2025-11-13',3209,'','','0000-00-00','','',0,0,0,0,2390,'','165','','','','N','darshan','darshan','2025-11-13 13:12:29','','0000-00-00 00:00:00'),(1324,0,0,'I',2526,1324,'I001324','2025-11-13',3243,'','','0000-00-00','','',0,0,0,0,1096,'','165','','','','N','darshan','darshan','2025-11-13 13:16:54','','0000-00-00 00:00:00'),(1325,0,0,'I',2526,1325,'I001325','2025-11-13',3220,'','','0000-00-00','','',0,0,0,0,2398,'','165','','','','N','darshan','darshan','2025-11-13 13:19:38','','0000-00-00 00:00:00'),(1326,0,0,'I',2526,1326,'I001326','2025-11-13',3221,'','','0000-00-00','','',0,0,0,0,2399,'','165','','','','N','darshan','darshan','2025-11-13 13:23:38','','0000-00-00 00:00:00'),(1327,0,0,'I',2526,1327,'I001327','2025-11-13',3239,'','','0000-00-00','','',0,0,0,0,2409,'','165','','','','N','drarchit','drarchit','2025-11-13 13:26:58','','0000-00-00 00:00:00'),(1328,0,0,'I',2526,1328,'I001328','2025-11-13',3240,'','','0000-00-00','','',0,0,0,0,2410,'','165','','','','N','drarchit','drarchit','2025-11-13 13:32:49','','0000-00-00 00:00:00'),(1329,0,0,'I',2526,1329,'I001329','2025-11-13',3233,'','','0000-00-00','','',0,0,0,0,2406,'','165','','','','N','darshan','darshan','2025-11-13 13:35:12','','0000-00-00 00:00:00'),(1330,0,0,'I',2526,1330,'I001330','2025-11-13',3241,'','','0000-00-00','','',0,0,0,0,2411,'','165','','','','N','drarchit','drarchit','2025-11-13 13:43:43','','0000-00-00 00:00:00'),(1331,0,0,'I',2526,1331,'I001331','2025-11-13',3224,'','','0000-00-00','','',0,0,0,0,2401,'','165','','','','N','drarchit','drarchit','2025-11-13 13:54:55','','0000-00-00 00:00:00'),(1332,0,0,'I',2526,1332,'I001332','2025-11-13',3198,'','','0000-00-00','','',0,0,0,0,2383,'','165','','','','N','darshan','darshan','2025-11-13 14:04:26','','0000-00-00 00:00:00'),(1333,0,0,'I',2526,1333,'I001333','2025-11-13',3238,'','','0000-00-00','','',0,0,0,0,2408,'','165','','','','N','drarchit','drarchit','2025-11-13 14:05:04','','0000-00-00 00:00:00'),(1334,0,0,'I',2526,1334,'I001334','2025-11-13',3235,'','','0000-00-00','','',0,0,0,0,2407,'','165','','','','N','darshan','darshan','2025-11-13 14:08:32','','0000-00-00 00:00:00'),(1335,0,0,'I',2526,1335,'I001335','2025-11-13',3246,'','','0000-00-00','','',0,0,0,0,1189,'','165','','','','N','darshan','darshan','2025-11-13 14:14:26','','0000-00-00 00:00:00'),(1336,0,0,'I',2526,1336,'I001336','2025-11-13',3244,'','','0000-00-00','','',0,0,0,0,1882,'','165','','','','N','darshan','darshan','2025-11-13 14:16:22','','0000-00-00 00:00:00'),(1337,0,0,'I',2526,1337,'I001337','2025-11-13',3248,'','','0000-00-00','','',0,0,0,0,2415,'','165','','','','N','darshan','darshan','2025-11-13 14:22:55','','0000-00-00 00:00:00'),(1338,0,0,'I',2526,1338,'I001338','2025-11-13',3251,'','','0000-00-00','','',0,0,0,0,2417,'','165','','','','N','darshan','darshan','2025-11-13 14:29:15','','0000-00-00 00:00:00'),(1339,0,0,'I',2526,1339,'I001339','2025-11-13',3256,'','','0000-00-00','','',0,0,0,0,1806,'','165','','','','N','darshan','darshan','2025-11-13 17:05:26','','0000-00-00 00:00:00'),(1340,0,0,'I',2526,1340,'I001340','2025-11-13',3255,'','','0000-00-00','','',0,0,0,0,2421,'','165','','','','N','darshan','darshan','2025-11-13 17:17:12','','0000-00-00 00:00:00'),(1341,0,0,'I',2526,1341,'I001341','2025-11-13',3254,'','','0000-00-00','','',0,0,0,0,2420,'','165','','','','N','darshan','darshan','2025-11-13 17:20:14','','0000-00-00 00:00:00'),(1342,0,0,'I',2526,1342,'I001342','2025-11-13',3257,'','','0000-00-00','','',0,0,0,0,1462,'','165','','','','N','darshan','darshan','2025-11-13 17:23:52','','0000-00-00 00:00:00'),(1343,0,0,'I',2526,1343,'I001343','2025-11-13',3258,'','','0000-00-00','','',0,0,0,0,2422,'','165','','','','N','darshan','darshan','2025-11-13 17:27:08','','0000-00-00 00:00:00'),(1344,0,0,'I',2526,1344,'I001344','2025-11-13',3261,'','','0000-00-00','','',0,0,0,0,2425,'','165','','','','N','darshan','darshan','2025-11-13 18:00:10','','0000-00-00 00:00:00'),(1345,0,0,'I',2526,1345,'I001345','2025-11-13',3265,'','','0000-00-00','','',0,0,0,0,2428,'','165','','','','N','darshan','darshan','2025-11-13 18:12:42','','0000-00-00 00:00:00'),(1346,0,0,'I',2526,1346,'I001346','2025-11-13',3269,'','','0000-00-00','','',0,0,0,0,2431,'','165','','','','N','darshan','darshan','2025-11-13 18:15:47','','0000-00-00 00:00:00'),(1347,0,0,'I',2526,1347,'I001347','2025-11-13',3253,'','','0000-00-00','','',0,0,0,0,2419,'','165','','','','N','darshan','darshan','2025-11-13 18:20:09','','0000-00-00 00:00:00'),(1348,0,0,'I',2526,1348,'I001348','2025-11-13',3249,'','','0000-00-00','','',0,0,0,0,2416,'','165','','','','N','drarchit','drarchit','2025-11-13 18:26:30','','0000-00-00 00:00:00'),(1349,0,0,'I',2526,1349,'I001349','2025-11-13',3147,'','','0000-00-00','','',0,0,0,0,2350,'','165','','','','N','darshan','darshan','2025-11-13 18:27:07','','0000-00-00 00:00:00'),(1350,0,0,'I',2526,1350,'I001350','2025-11-13',3260,'','','0000-00-00','','',0,0,0,0,2424,'','165','','','','N','darshan','darshan','2025-11-13 18:31:38','','0000-00-00 00:00:00'),(1351,0,0,'I',2526,1351,'I001351','2025-11-13',3270,'','','0000-00-00','','',0,0,0,0,2432,'','165','','','','N','drarchit','drarchit','2025-11-13 18:40:01','','0000-00-00 00:00:00'),(1352,0,0,'I',2526,1352,'I001352','2025-11-13',3266,'','','0000-00-00','','',0,0,0,0,2429,'','165','','','','N','darshan','darshan','2025-11-13 18:40:20','','0000-00-00 00:00:00'),(1353,0,0,'I',2526,1353,'I001353','2025-11-13',3271,'','','0000-00-00','','',0,0,0,0,2433,'','165','','','','N','drarchit','drarchit','2025-11-13 18:45:49','','0000-00-00 00:00:00'),(1354,0,0,'I',2526,1354,'I001354','2025-11-13',3280,'','','0000-00-00','','',0,0,0,0,2097,'','165','','','','N','darshan','darshan','2025-11-13 18:54:08','','0000-00-00 00:00:00'),(1355,0,0,'I',2526,1355,'I001355','2025-11-13',3259,'','','0000-00-00','','',0,0,0,0,2423,'','165','','','','N','darshan','darshan','2025-11-13 19:00:39','','0000-00-00 00:00:00'),(1356,0,0,'I',2526,1356,'I001356','2025-11-13',3267,'','','0000-00-00','','',0,0,0,0,2430,'','165','','','','N','drarchit','drarchit','2025-11-13 19:01:26','','0000-00-00 00:00:00'),(1357,0,0,'I',2526,1357,'I001357','2025-11-13',3262,'','','0000-00-00','','',0,0,0,0,2426,'','165','','','','N','darshan','darshan','2025-11-13 19:25:12','','0000-00-00 00:00:00'),(1358,0,0,'I',2526,1358,'I001358','2025-11-13',3281,'','','0000-00-00','','',0,0,0,0,662,'','165','','','','N','darshan','darshan','2025-11-13 19:26:01','','0000-00-00 00:00:00'),(1359,0,0,'I',2526,1359,'I001359','2025-11-13',3289,'','','0000-00-00','','',0,0,0,0,2440,'','165','','','','N','drarchit','drarchit','2025-11-13 19:26:04','','0000-00-00 00:00:00'),(1360,0,0,'I',2526,1360,'I001360','2025-11-13',3273,'','','0000-00-00','','',0,0,0,0,637,'','165','','','','N','darshan','darshan','2025-11-13 19:28:41','','0000-00-00 00:00:00'),(1361,0,0,'I',2526,1361,'I001361','2025-11-13',3278,'','','0000-00-00','','',0,0,0,0,2437,'','165','','','','N','darshan','darshan','2025-11-13 19:31:57','','0000-00-00 00:00:00'),(1362,0,0,'I',2526,1362,'I001362','2025-11-13',3282,'','','0000-00-00','','',0,0,0,0,2438,'','165','','','','N','drarchit','drarchit','2025-11-13 19:38:25','','0000-00-00 00:00:00'),(1363,0,0,'I',2526,1363,'I001363','2025-11-13',3288,'','','0000-00-00','','',0,0,0,0,536,'','165','','','','N','darshan','darshan','2025-11-13 19:38:35','','0000-00-00 00:00:00'),(1364,0,0,'I',2526,1364,'I001364','2025-11-13',3206,'','','0000-00-00','','',0,0,0,0,2388,'','165','','','','N','drarchit','drarchit','2025-11-13 19:45:43','','0000-00-00 00:00:00'),(1365,0,0,'I',2526,1365,'I001365','2025-11-13',3284,'','','0000-00-00','','',0,0,0,0,1156,'','165','','','','N','drarchit','drarchit','2025-11-13 19:50:24','','0000-00-00 00:00:00'),(1366,0,0,'I',2526,1366,'I001366','2025-11-13',3283,'','','0000-00-00','','',0,0,0,0,1606,'','165','','','','N','drarchit','drarchit','2025-11-13 19:56:10','','0000-00-00 00:00:00'),(1367,0,0,'I',2526,1367,'I001367','2025-11-14',3300,'','','0000-00-00','','',0,0,0,0,2447,'','165','','','','N','drarchit','drarchit','2025-11-14 11:02:52','','0000-00-00 00:00:00'),(1368,0,0,'I',2526,1368,'I001368','2025-11-14',3305,'','','0000-00-00','','',0,0,0,0,1857,'','165','','','','N','darshan','darshan','2025-11-14 11:21:24','','0000-00-00 00:00:00'),(1369,0,0,'I',2526,1369,'I001369','2025-11-14',3308,'','','0000-00-00','','',0,0,0,0,2452,'','165','','','','N','darshan','darshan','2025-11-14 11:25:55','','0000-00-00 00:00:00'),(1370,0,0,'I',2526,1370,'I001370','2025-11-14',3309,'','','0000-00-00','','',0,0,0,0,2453,'','165','','','','N','darshan','darshan','2025-11-14 11:29:03','','0000-00-00 00:00:00'),(1371,0,0,'I',2526,1371,'I001371','2025-11-14',3304,'','','0000-00-00','','',0,0,0,0,2449,'','165','','','','N','darshan','darshan','2025-11-14 11:34:09','','0000-00-00 00:00:00'),(1372,0,0,'I',2526,1372,'I001372','2025-11-14',3312,'','','0000-00-00','','',0,0,0,0,586,'','165','','','','N','drarchit','drarchit','2025-11-14 11:38:14','','0000-00-00 00:00:00'),(1373,0,0,'I',2526,1373,'I001373','2025-11-14',3303,'','','0000-00-00','','',0,0,0,0,495,'','165','','','','N','drarchit','drarchit','2025-11-14 11:43:28','','0000-00-00 00:00:00'),(1374,0,0,'I',2526,1374,'I001374','2025-11-14',3313,'','','0000-00-00','','',0,0,0,0,2456,'','165','','','','N','darshan','darshan','2025-11-14 11:43:28','','0000-00-00 00:00:00'),(1375,0,0,'I',2526,1375,'I001375','2025-11-14',3320,'','','0000-00-00','','',0,0,0,0,589,'','165','','','','N','darshan','darshan','2025-11-14 11:58:46','','0000-00-00 00:00:00'),(1376,0,0,'I',2526,1376,'I001376','2025-11-14',3326,'','','0000-00-00','','',0,0,0,0,2464,'','165','','','','N','darshan','darshan','2025-11-14 12:05:29','','0000-00-00 00:00:00'),(1377,0,0,'I',2526,1377,'I001377','2025-11-14',3314,'','','0000-00-00','','',0,0,0,0,2457,'','165','','','','N','darshan','darshan','2025-11-14 12:16:40','','0000-00-00 00:00:00'),(1378,0,0,'I',2526,1378,'I001378','2025-11-14',3319,'','','0000-00-00','','',0,0,0,0,741,'','165','','','','N','darshan','darshan','2025-11-14 12:19:52','','0000-00-00 00:00:00'),(1379,0,0,'I',2526,1379,'I001379','2025-11-14',3296,'','','0000-00-00','','',0,0,0,0,2444,'','165','','','','N','drarchit','drarchit','2025-11-14 12:20:33','','0000-00-00 00:00:00'),(1380,0,0,'I',2526,1380,'I001380','2025-11-14',3298,'','','0000-00-00','','',0,0,0,0,2446,'','165','','','','N','darshan','darshan','2025-11-14 12:28:06','','0000-00-00 00:00:00'),(1381,0,0,'I',2526,1381,'I001381','2025-11-14',3338,'','','0000-00-00','','',0,0,0,0,2473,'','165','','','','N','drarchit','drarchit','2025-11-14 12:35:49','','0000-00-00 00:00:00'),(1382,0,0,'I',2526,1382,'I001382','2025-11-14',3307,'','','0000-00-00','','',0,0,0,0,2451,'','165','','','','N','darshan','darshan','2025-11-14 12:42:29','','0000-00-00 00:00:00'),(1383,0,0,'I',2526,1383,'I001383','2025-11-14',3324,'','','0000-00-00','','',0,0,0,0,2462,'','165','','','','N','drarchit','drarchit','2025-11-14 12:48:53','','0000-00-00 00:00:00'),(1384,0,0,'I',2526,1384,'I001384','2025-11-14',3329,'','','0000-00-00','','',0,0,0,0,2466,'','165','','','','N','drarchit','drarchit','2025-11-14 12:51:44','','0000-00-00 00:00:00'),(1385,0,0,'I',2526,1385,'I001385','2025-11-14',3321,'','','0000-00-00','','',0,0,0,0,2460,'','165','','','','N','drarchit','drarchit','2025-11-14 13:07:04','','0000-00-00 00:00:00'),(1386,0,0,'I',2526,1386,'I001386','2025-11-14',3306,'','','0000-00-00','','',0,0,0,0,2450,'','165','','','','N','drarchit','drarchit','2025-11-14 13:12:55','','0000-00-00 00:00:00'),(1387,0,0,'I',2526,1387,'I001387','2025-11-14',3331,'','','0000-00-00','','',0,0,0,0,1356,'','165','','','','N','darshan','darshan','2025-11-14 13:13:22','','0000-00-00 00:00:00'),(1388,0,0,'I',2526,1388,'I001388','2025-11-14',3325,'','','0000-00-00','','',0,0,0,0,2463,'','165','','','','N','darshan','darshan','2025-11-14 13:15:02','','0000-00-00 00:00:00'),(1389,0,0,'I',2526,1389,'I001389','2025-11-14',3302,'','','0000-00-00','','',0,0,0,0,2448,'','165','','','','N','darshan','darshan','2025-11-14 13:21:48','','0000-00-00 00:00:00'),(1390,0,0,'I',2526,1390,'I001390','2025-11-14',3311,'','','0000-00-00','','',0,0,0,0,2455,'','165','','','','N','darshan','darshan','2025-11-14 13:35:58','','0000-00-00 00:00:00'),(1391,0,0,'I',2526,1391,'I001391','2025-11-14',3342,'','','0000-00-00','','',0,0,0,0,2476,'','165','','','','N','darshan','darshan','2025-11-14 13:38:35','','0000-00-00 00:00:00'),(1392,0,0,'I',2526,1392,'I001392','2025-11-14',3333,'','','0000-00-00','','',0,0,0,0,2469,'','165','','','','N','drarchit','drarchit','2025-11-14 13:48:58','','0000-00-00 00:00:00'),(1393,0,0,'I',2526,1393,'I001393','2025-11-14',3347,'','','0000-00-00','','',0,0,0,0,2481,'','165','','','','N','drarchit','drarchit','2025-11-14 13:58:52','','0000-00-00 00:00:00'),(1394,0,0,'I',2526,1394,'I001394','2025-11-14',3344,'','','0000-00-00','','',0,0,0,0,2478,'','165','','','','N','drarchit','drarchit','2025-11-14 14:01:58','','0000-00-00 00:00:00'),(1395,0,0,'I',2526,1395,'I001395','2025-11-14',3355,'','','0000-00-00','','',0,0,0,0,2484,'','165','','','','N','darshan','darshan','2025-11-14 17:44:58','','0000-00-00 00:00:00'),(1396,0,0,'I',2526,1396,'I001396','2025-11-14',3363,'','','0000-00-00','','',0,0,0,0,2490,'','165','','','','N','darshan','darshan','2025-11-14 17:58:42','','0000-00-00 00:00:00'),(1397,0,0,'I',2526,1397,'I001397','2025-11-14',3360,'','','0000-00-00','','',0,0,0,0,2488,'','165','','','','N','drarchit','drarchit','2025-11-14 18:18:13','','0000-00-00 00:00:00'),(1398,0,0,'I',2526,1398,'I001398','2025-11-14',3357,'','','0000-00-00','','',0,0,0,0,210,'','165','','','','N','darshan','darshan','2025-11-14 18:19:21','','0000-00-00 00:00:00'),(1399,0,0,'I',2526,1399,'I001399','2025-11-14',3365,'','','0000-00-00','','',0,0,0,0,639,'','165','','','','N','darshan','darshan','2025-11-14 18:22:57','','0000-00-00 00:00:00'),(1400,0,0,'I',2526,1400,'I001400','2025-11-14',3372,'','','0000-00-00','','',0,0,0,0,2496,'','165','','','','N','drarchit','drarchit','2025-11-14 18:24:55','','0000-00-00 00:00:00'),(1401,0,0,'I',2526,1401,'I001401','2025-11-14',3371,'','','0000-00-00','','',0,0,0,0,1901,'','165','','','','N','darshan','darshan','2025-11-14 18:26:27','','0000-00-00 00:00:00'),(1402,0,0,'I',2526,1402,'I001402','2025-11-14',3242,'','','0000-00-00','','',0,0,0,0,2412,'','165','','','','N','drarchit','drarchit','2025-11-14 18:29:06','','0000-00-00 00:00:00'),(1403,0,0,'I',2526,1403,'I001403','2025-11-14',3368,'','','0000-00-00','','',0,0,0,0,2493,'','165','','','','N','darshan','darshan','2025-11-14 18:31:54','','0000-00-00 00:00:00'),(1404,0,0,'I',2526,1404,'I001404','2025-11-14',3367,'','','0000-00-00','','',0,0,0,0,2492,'','165','','','','N','drarchit','drarchit','2025-11-14 18:36:15','','0000-00-00 00:00:00'),(1405,0,0,'I',2526,1405,'I001405','2025-11-14',3373,'','','0000-00-00','','',0,0,0,0,2497,'','165','','','','N','darshan','darshan','2025-11-14 18:38:17','','0000-00-00 00:00:00'),(1406,0,0,'I',2526,1406,'I001406','2025-11-14',3377,'','','0000-00-00','','',0,0,0,0,710,'','165','','','','N','darshan','darshan','2025-11-14 18:40:47','','0000-00-00 00:00:00'),(1407,0,0,'I',2526,1407,'I001407','2025-11-14',3335,'','','0000-00-00','','',0,0,0,0,2470,'','165','','','','N','drarchit','drarchit','2025-11-14 18:41:59','','0000-00-00 00:00:00'),(1408,0,0,'I',2526,1408,'I001408','2025-11-14',3379,'','','0000-00-00','','',0,0,0,0,2500,'','165','','','','N','darshan','darshan','2025-11-14 18:43:44','','0000-00-00 00:00:00'),(1409,0,0,'I',2526,1409,'I001409','2025-11-14',3385,'','','0000-00-00','','',0,0,0,0,2504,'','165','','','','N','drarchit','drarchit','2025-11-14 18:51:34','','0000-00-00 00:00:00'),(1410,0,0,'I',2526,1410,'I001410','2025-11-14',3380,'','','0000-00-00','','',0,0,0,0,2501,'','165','','','','N','darshan','darshan','2025-11-14 18:55:34','','0000-00-00 00:00:00'),(1411,0,0,'I',2526,1411,'I001411','2025-11-14',3352,'','','0000-00-00','','',0,0,0,0,2483,'','165','','','','N','darshan','darshan','2025-11-14 19:03:24','','0000-00-00 00:00:00'),(1412,0,0,'I',2526,1412,'I001412','2025-11-14',3358,'','','0000-00-00','','',0,0,0,0,2486,'','165','','','','N','darshan','darshan','2025-11-14 19:08:25','','0000-00-00 00:00:00'),(1413,0,0,'I',2526,1413,'I001413','2025-11-14',2876,'','','0000-00-00','','',0,0,0,0,0,'','165','','','','N','mo','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(1414,0,0,'I',2526,1414,'I001414','2025-11-14',3386,'','','0000-00-00','','',0,0,0,0,2505,'','165','','','','N','drarchit','drarchit','2025-11-14 19:18:44','','0000-00-00 00:00:00'),(1415,0,0,'I',2526,1415,'I001415','2025-11-14',3364,'','','0000-00-00','','',0,0,0,0,2491,'','165','','','','N','drarchit','drarchit','2025-11-14 19:21:42','','0000-00-00 00:00:00'),(1416,0,0,'I',2526,1416,'I001416','2025-11-14',3361,'','','0000-00-00','','',0,0,0,0,2489,'','165','','','','N','darshan','darshan','2025-11-14 19:25:55','','0000-00-00 00:00:00'),(1417,0,0,'I',2526,1417,'I001417','2025-11-14',3397,'','','0000-00-00','','',0,0,0,0,2512,'','165','','','','N','drarchit','drarchit','2025-11-14 19:26:43','','0000-00-00 00:00:00'),(1418,0,0,'I',2526,1418,'I001418','2025-11-14',3387,'','','0000-00-00','','',0,0,0,0,2282,'','165','','','','N','drarchit','drarchit','2025-11-14 19:31:37','','0000-00-00 00:00:00'),(1419,0,0,'I',2526,1419,'I001419','2025-11-14',3353,'','','0000-00-00','','',0,0,0,0,1147,'','165','','','','N','darshan','darshan','2025-11-14 19:38:42','','0000-00-00 00:00:00'),(1420,0,0,'I',2526,1420,'I001420','2025-11-14',3391,'','','0000-00-00','','',0,0,0,0,2507,'','165','','','','N','drarchit','drarchit','2025-11-14 19:42:10','','0000-00-00 00:00:00'),(1421,0,0,'I',2526,1421,'I001421','2025-11-14',3392,'','','0000-00-00','','',0,0,0,0,2508,'','165','','','','N','drarchit','drarchit','2025-11-14 19:46:29','','0000-00-00 00:00:00'),(1422,0,0,'I',2526,1422,'I001422','2025-11-14',3394,'','','0000-00-00','','',0,0,0,0,2509,'','165','','','','N','drarchit','drarchit','2025-11-14 19:50:28','','0000-00-00 00:00:00'),(1423,0,0,'I',2526,1423,'I001423','2025-11-14',3395,'','','0000-00-00','','',0,0,0,0,2510,'','165','','','','N','drarchit','drarchit','2025-11-14 19:57:00','','0000-00-00 00:00:00'),(1424,0,0,'I',2526,1424,'I001424','2025-11-14',3396,'','','0000-00-00','','',0,0,0,0,2511,'','165','','','','N','drarchit','drarchit','2025-11-14 20:01:41','','0000-00-00 00:00:00'),(1425,0,0,'I',2526,1425,'I001425','2025-11-15',3404,'','','0000-00-00','','',0,0,0,0,2515,'','165','','','','N','darshan','darshan','2025-11-15 11:04:40','','0000-00-00 00:00:00'),(1426,0,0,'I',2526,1426,'I001426','2025-11-15',3410,'','','0000-00-00','','',0,0,0,0,2520,'','165','','','','N','darshan','darshan','2025-11-15 11:08:49','','0000-00-00 00:00:00'),(1427,0,0,'I',2526,1427,'I001427','2025-11-15',3413,'','','0000-00-00','','',0,0,0,0,1988,'','165','','','','N','darshan','darshan','2025-11-15 11:10:39','','0000-00-00 00:00:00'),(1428,0,0,'I',2526,1428,'I001428','2025-11-15',3414,'','','0000-00-00','','',0,0,0,0,2523,'','165','','','','N','darshan','darshan','2025-11-15 11:14:40','','0000-00-00 00:00:00'),(1429,0,0,'I',2526,1429,'I001429','2025-11-15',3378,'','','0000-00-00','','',0,0,0,0,2499,'','165','','','','N','drarchit','drarchit','2025-11-15 11:14:48','','0000-00-00 00:00:00'),(1430,0,0,'I',2526,1430,'I001430','2025-11-15',3408,'','','0000-00-00','','',0,0,0,0,2518,'','165','','','','N','drarchit','drarchit','2025-11-15 11:23:31','','0000-00-00 00:00:00'),(1431,0,0,'I',2526,1431,'I001431','2025-11-15',3415,'','','0000-00-00','','',0,0,0,0,2524,'','165','','','','N','darshan','darshan','2025-11-15 11:26:00','','0000-00-00 00:00:00'),(1432,0,0,'I',2526,1432,'I001432','2025-11-15',3416,'','','0000-00-00','','',0,0,0,0,1649,'','165','','','','N','darshan','darshan','2025-11-15 11:28:16','','0000-00-00 00:00:00'),(1433,0,0,'I',2526,1433,'I001433','2025-11-15',3406,'','','0000-00-00','','',0,0,0,0,2516,'','165','','','','N','drarchit','drarchit','2025-11-15 11:32:01','','0000-00-00 00:00:00'),(1434,0,0,'I',2526,1434,'I001434','2025-11-15',3417,'','','0000-00-00','','',0,0,0,0,812,'','165','','','','N','darshan','darshan','2025-11-15 11:36:50','','0000-00-00 00:00:00'),(1435,0,0,'I',2526,1435,'I001435','2025-11-15',3419,'','','0000-00-00','','',0,0,0,0,1949,'','165','','','','N','darshan','darshan','2025-11-15 11:39:15','','0000-00-00 00:00:00'),(1436,0,0,'I',2526,1436,'I001436','2025-11-15',3418,'','','0000-00-00','','',0,0,0,0,818,'','165','','','','N','drarchit','drarchit','2025-11-15 11:44:35','','0000-00-00 00:00:00'),(1437,0,0,'I',2526,1437,'I001437','2025-11-15',3433,'','','0000-00-00','','',0,0,0,0,2531,'','165','','','','N','drarchit','drarchit','2025-11-15 11:51:25','','0000-00-00 00:00:00'),(1438,0,0,'I',2526,1438,'I001438','2025-11-15',3426,'','','0000-00-00','','',0,0,0,0,627,'','165','','','','N','drarchit','drarchit','2025-11-15 12:00:19','','0000-00-00 00:00:00'),(1439,0,0,'I',2526,1439,'I001439','2025-11-15',3430,'','','0000-00-00','','',0,0,0,0,496,'','165','','','','N','darshan','darshan','2025-11-15 12:03:52','','0000-00-00 00:00:00'),(1440,0,0,'I',2526,1440,'I001440','2025-11-15',3432,'','','0000-00-00','','',0,0,0,0,1017,'','165','','','','N','darshan','darshan','2025-11-15 12:06:47','','0000-00-00 00:00:00'),(1441,0,0,'I',2526,1441,'I001441','2025-11-15',3403,'','','0000-00-00','','',0,0,0,0,2514,'','165','','','','N','drarchit','drarchit','2025-11-15 12:07:04','','0000-00-00 00:00:00'),(1442,0,0,'I',2526,1442,'I001442','2025-11-15',3435,'','','0000-00-00','','',0,0,0,0,1678,'','165','','','','N','darshan','darshan','2025-11-15 12:20:51','','0000-00-00 00:00:00'),(1443,0,0,'I',2526,1443,'I001443','2025-11-15',3420,'','','0000-00-00','','',0,0,0,0,2525,'','165','','','','N','darshan','darshan','2025-11-15 12:24:34','','0000-00-00 00:00:00'),(1444,0,0,'I',2526,1444,'I001444','2025-11-15',3437,'','','0000-00-00','','',0,0,0,0,1474,'','165','','','','N','darshan','darshan','2025-11-15 12:35:37','','0000-00-00 00:00:00'),(1445,0,0,'I',2526,1445,'I001445','2025-11-15',3439,'','','0000-00-00','','',0,0,0,0,1945,'','165','','','','N','darshan','darshan','2025-11-15 12:46:26','','0000-00-00 00:00:00'),(1446,0,0,'I',2526,1446,'I001446','2025-11-15',3407,'','','0000-00-00','','',0,0,0,0,2517,'','165','','','','N','darshan','darshan','2025-11-15 12:58:57','','0000-00-00 00:00:00'),(1447,0,0,'I',2526,1447,'I001447','2025-11-15',3441,'','','0000-00-00','','',0,0,0,0,2535,'','165','','','','N','darshan','darshan','2025-11-15 13:02:54','','0000-00-00 00:00:00'),(1448,0,0,'I',2526,1448,'I001448','2025-11-15',3422,'','','0000-00-00','','',0,0,0,0,2527,'','165','','','','N','darshan','darshan','2025-11-15 13:10:38','','0000-00-00 00:00:00'),(1449,0,0,'I',2526,1449,'I001449','2025-11-15',3434,'','','0000-00-00','','',0,0,0,0,2532,'','165','','','','N','darshan','darshan','2025-11-15 13:15:29','','0000-00-00 00:00:00'),(1450,0,0,'I',2526,1450,'I001450','2025-11-15',3443,'','','0000-00-00','','',0,0,0,0,2536,'','165','','','','N','darshan','darshan','2025-11-15 13:24:49','','0000-00-00 00:00:00'),(1451,0,0,'I',2526,1451,'I001451','2025-11-15',3421,'','','0000-00-00','','',0,0,0,0,2526,'','165','','','','N','darshan','darshan','2025-11-15 13:29:27','','0000-00-00 00:00:00'),(1452,0,0,'I',2526,1452,'I001452','2025-11-15',3444,'','','0000-00-00','','',0,0,0,0,2537,'','165','','','','N','darshan','darshan','2025-11-15 13:32:39','','0000-00-00 00:00:00'),(1453,0,0,'I',2526,1453,'I001453','2025-11-15',3445,'','','0000-00-00','','',0,0,0,0,2538,'','165','','','','N','darshan','darshan','2025-11-15 13:41:39','','0000-00-00 00:00:00'),(1454,0,0,'I',2526,1454,'I001454','2025-11-15',3440,'','','0000-00-00','','',0,0,0,0,2534,'','165','','','','N','darshan','darshan','2025-11-15 13:49:53','','0000-00-00 00:00:00'),(1455,0,0,'I',2526,1455,'I001455','2025-11-15',3447,'','','0000-00-00','','',0,0,0,0,2540,'','165','','','','N','darshan','darshan','2025-11-15 13:56:20','','0000-00-00 00:00:00'),(1456,0,0,'I',2526,1456,'I001456','2025-11-17',3480,'','','0000-00-00','','',0,0,0,0,1421,'','165','','','','N','darshan','darshan','2025-11-17 11:05:47','','0000-00-00 00:00:00'),(1457,0,0,'I',2526,1457,'I001457','2025-11-17',3483,'','','0000-00-00','','',0,0,0,0,2557,'','165','','','','N','darshan','darshan','2025-11-17 11:09:01','','0000-00-00 00:00:00'),(1458,0,0,'I',2526,1458,'I001458','2025-11-17',3485,'','','0000-00-00','','',0,0,0,0,2047,'','165','','','','N','darshan','darshan','2025-11-17 11:11:07','','0000-00-00 00:00:00'),(1459,0,0,'I',2526,1459,'I001459','2025-11-17',3486,'','','0000-00-00','','',0,0,0,0,1993,'','165','','','','N','darshan','darshan','2025-11-17 11:15:50','','0000-00-00 00:00:00'),(1460,0,0,'I',2526,1460,'I001460','2025-11-17',3488,'','','0000-00-00','','',0,0,0,0,2062,'','165','','','','N','darshan','darshan','2025-11-17 11:22:29','','0000-00-00 00:00:00'),(1461,0,0,'I',2526,1461,'I001461','2025-11-17',3487,'','','0000-00-00','','',0,0,0,0,2069,'','165','','','','N','darshan','darshan','2025-11-17 11:23:47','','0000-00-00 00:00:00'),(1462,0,0,'I',2526,1462,'I001462','2025-11-17',3481,'','','0000-00-00','','',0,0,0,0,315,'','165','','','','N','darshan','darshan','2025-11-17 11:40:46','','0000-00-00 00:00:00'),(1463,0,0,'I',2526,1463,'I001463','2025-11-17',3484,'','','0000-00-00','','',0,0,0,0,2558,'','165','','','','N','darshan','darshan','2025-11-17 11:52:12','','0000-00-00 00:00:00'),(1464,0,0,'I',2526,1464,'I001464','2025-11-17',3489,'','','0000-00-00','','',0,0,0,0,2559,'','165','','','','N','darshan','darshan','2025-11-17 12:10:02','','0000-00-00 00:00:00'),(1465,0,0,'I',2526,1465,'I001465','2025-11-17',3503,'','','0000-00-00','','',0,0,0,0,384,'','165','','','','N','darshan','darshan','2025-11-17 12:11:46','','0000-00-00 00:00:00'),(1466,0,0,'I',2526,1466,'I001466','2025-11-17',3492,'','','0000-00-00','','',0,0,0,0,1992,'','165','','','','N','darshan','darshan','2025-11-17 12:14:43','','0000-00-00 00:00:00'),(1467,0,0,'I',2526,1467,'I001467','2025-11-17',3504,'','','0000-00-00','','',0,0,0,0,961,'','165','','','','N','darshan','darshan','2025-11-17 12:18:34','','0000-00-00 00:00:00'),(1468,0,0,'I',2526,1468,'I001468','2025-11-17',3495,'','','0000-00-00','','',0,0,0,0,2562,'','165','','','','N','darshan','darshan','2025-11-17 12:22:31','','0000-00-00 00:00:00'),(1469,0,0,'I',2526,1469,'I001469','2025-11-17',3496,'','','0000-00-00','','',0,0,0,0,1353,'','165','','','','N','darshan','darshan','2025-11-17 12:35:04','','0000-00-00 00:00:00'),(1470,0,0,'I',2526,1470,'I001470','2025-11-17',3497,'','','0000-00-00','','',0,0,0,0,2056,'','165','','','','N','darshan','darshan','2025-11-17 12:51:15','','0000-00-00 00:00:00'),(1471,0,0,'I',2526,1471,'I001471','2025-11-17',3499,'','','0000-00-00','','',0,0,0,0,2141,'','165','','','','N','darshan','darshan','2025-11-17 12:56:42','','0000-00-00 00:00:00'),(1472,0,0,'I',2526,1472,'I001472','2025-11-17',3502,'','','0000-00-00','','',0,0,0,0,2565,'','165','','','','N','darshan','darshan','2025-11-17 13:03:17','','0000-00-00 00:00:00'),(1473,0,0,'I',2526,1473,'I001473','2025-11-17',3513,'','','0000-00-00','','',0,0,0,0,2570,'','165','','','','N','darshan','darshan','2025-11-17 13:05:13','','0000-00-00 00:00:00'),(1474,0,0,'I',2526,1474,'I001474','2025-11-17',3498,'','','0000-00-00','','',0,0,0,0,2563,'','165','','','','N','darshan','darshan','2025-11-17 13:13:44','','0000-00-00 00:00:00'),(1475,0,0,'I',2526,1475,'I001475','2025-11-17',3515,'','','0000-00-00','','',0,0,0,0,2572,'','165','','','','N','darshan','darshan','2025-11-17 13:18:03','','0000-00-00 00:00:00'),(1476,0,0,'I',2526,1476,'I001476','2025-11-17',3507,'','','0000-00-00','','',0,0,0,0,2567,'','165','','','','N','darshan','darshan','2025-11-17 13:24:32','','0000-00-00 00:00:00'),(1477,0,0,'I',2526,1477,'I001477','2025-11-17',3512,'','','0000-00-00','','',0,0,0,0,848,'','165','','','','N','darshan','darshan','2025-11-17 13:34:46','','0000-00-00 00:00:00'),(1478,0,0,'I',2526,1478,'I001478','2025-11-17',3514,'','','0000-00-00','','',0,0,0,0,2571,'','165','','','','N','darshan','darshan','2025-11-17 13:44:02','','0000-00-00 00:00:00'),(1479,0,0,'I',2526,1479,'I001479','2025-11-17',3500,'','','0000-00-00','','',0,0,0,0,2564,'','165','','','','N','darshan','darshan','2025-11-17 13:46:45','','0000-00-00 00:00:00'),(1480,0,0,'I',2526,1480,'I001480','2025-11-17',3516,'','','0000-00-00','','',0,0,0,0,27,'','165','','','','N','darshan','darshan','2025-11-17 13:53:42','','0000-00-00 00:00:00'),(1481,0,0,'I',2526,1481,'I001481','2025-11-17',3518,'','','0000-00-00','','',0,0,0,0,2573,'','165','','','','N','darshan','darshan','2025-11-17 13:55:57','','0000-00-00 00:00:00'),(1482,0,0,'I',2526,1482,'I001482','2025-11-17',3505,'','','0000-00-00','','',0,0,0,0,2566,'','165','','','','N','darshan','darshan','2025-11-17 14:06:24','','0000-00-00 00:00:00'),(1483,0,0,'I',2526,1483,'I001483','2025-11-17',3520,'','','0000-00-00','','',0,0,0,0,796,'','165','','','','N','darshan','darshan','2025-11-17 14:09:36','','0000-00-00 00:00:00'),(1484,0,0,'I',2526,1484,'I001484','2025-11-17',3523,'','','0000-00-00','','',0,0,0,0,952,'','165','','','','N','darshan','darshan','2025-11-17 14:16:20','','0000-00-00 00:00:00'),(1485,0,0,'I',2526,1485,'I001485','2025-11-17',3525,'','','0000-00-00','','',0,0,0,0,2096,'','165','','','','N','darshan','darshan','2025-11-17 17:16:13','','0000-00-00 00:00:00'),(1486,0,0,'I',2526,1486,'I001486','2025-11-17',3526,'','','0000-00-00','','',0,0,0,0,219,'','165','','','','N','darshan','darshan','2025-11-17 17:22:27','','0000-00-00 00:00:00'),(1487,0,0,'I',2526,1487,'I001487','2025-11-17',3533,'','','0000-00-00','','',0,0,0,0,1875,'','165','','','','N','darshan','darshan','2025-11-17 17:36:45','','0000-00-00 00:00:00'),(1488,0,0,'I',2526,1488,'I001488','2025-11-17',3537,'','','0000-00-00','','',0,0,0,0,2583,'','165','','','','N','darshan','darshan','2025-11-17 18:02:53','','0000-00-00 00:00:00'),(1489,0,0,'I',2526,1489,'I001489','2025-11-17',3536,'','','0000-00-00','','',0,0,0,0,1540,'','165','','','','N','darshan','darshan','2025-11-17 18:24:35','','0000-00-00 00:00:00'),(1490,0,0,'I',2526,1490,'I001490','2025-11-17',3539,'','','0000-00-00','','',0,0,0,0,995,'','165','','','','N','darshan','darshan','2025-11-17 18:27:48','','0000-00-00 00:00:00'),(1491,0,0,'I',2526,1491,'I001491','2025-11-17',3538,'','','0000-00-00','','',0,0,0,0,1386,'','165','','','','N','darshan','darshan','2025-11-17 18:32:25','','0000-00-00 00:00:00'),(1492,0,0,'I',2526,1492,'I001492','2025-11-17',3527,'','','0000-00-00','','',0,0,0,0,2575,'','165','','','','N','darshan','darshan','2025-11-17 18:46:31','','0000-00-00 00:00:00'),(1493,0,0,'I',2526,1493,'I001493','2025-11-17',3530,'','','0000-00-00','','',0,0,0,0,2578,'','165','','','','N','darshan','darshan','2025-11-17 18:57:49','','0000-00-00 00:00:00'),(1494,0,0,'I',2526,1494,'I001494','2025-11-17',3545,'','','0000-00-00','','',0,0,0,0,776,'','165','','','','N','darshan','darshan','2025-11-17 19:21:05','','0000-00-00 00:00:00'),(1495,0,0,'I',2526,1495,'I001495','2025-11-17',3531,'','','0000-00-00','','',0,0,0,0,2579,'','165','','','','N','darshan','darshan','2025-11-17 19:24:56','','0000-00-00 00:00:00'),(1496,0,0,'I',2526,1496,'I001496','2025-11-17',3542,'','','0000-00-00','','',0,0,0,0,2074,'','165','','','','N','darshan','darshan','2025-11-17 19:28:20','','0000-00-00 00:00:00'),(1497,0,0,'I',2526,1497,'I001497','2025-11-17',3532,'','','0000-00-00','','',0,0,0,0,2580,'','165','','','','N','darshan','darshan','2025-11-17 19:39:42','','0000-00-00 00:00:00'),(1498,0,0,'I',2526,1498,'I001498','2025-11-17',3540,'','','0000-00-00','','',0,0,0,0,2584,'','165','','','','N','darshan','darshan','2025-11-17 19:48:25','','0000-00-00 00:00:00'),(1499,0,0,'I',2526,1499,'I001499','2025-11-17',3549,'','','0000-00-00','','',0,0,0,0,2589,'','165','','','','N','darshan','darshan','2025-11-17 19:54:53','','0000-00-00 00:00:00'),(1500,0,0,'I',2526,1500,'I001500','2025-11-17',3544,'','','0000-00-00','','',0,0,0,0,2587,'','165','','','','N','darshan','darshan','2025-11-17 20:03:10','','0000-00-00 00:00:00'),(1501,0,0,'I',2526,1501,'I001501','2025-11-17',3550,'','','0000-00-00','','',0,0,0,0,1277,'','165','','','','N','darshan','darshan','2025-11-17 20:05:16','','0000-00-00 00:00:00'),(1502,0,0,'I',2526,1502,'I001502','2025-11-18',3558,'','','0000-00-00','','',0,0,0,0,2594,'','165','','','','N','darshan','darshan','2025-11-18 10:47:40','','0000-00-00 00:00:00'),(1503,0,0,'I',2526,1503,'I001503','2025-11-18',3559,'','','0000-00-00','','',0,0,0,0,2595,'','165','','','','N','darshan','darshan','2025-11-18 10:50:56','','0000-00-00 00:00:00'),(1504,0,0,'I',2526,1504,'I001504','2025-11-18',3561,'','','0000-00-00','','',0,0,0,0,2596,'','165','','','','N','darshan','darshan','2025-11-18 10:51:46','','0000-00-00 00:00:00'),(1505,0,0,'I',2526,1505,'I001505','2025-11-18',3562,'','','0000-00-00','','',0,0,0,0,2597,'','165','','','','N','darshan','darshan','2025-11-18 11:04:58','','0000-00-00 00:00:00'),(1506,0,0,'I',2526,1506,'I001506','2025-11-18',3565,'','','0000-00-00','','',0,0,0,0,168,'','165','','','','N','darshan','darshan','2025-11-18 11:18:22','','0000-00-00 00:00:00'),(1507,0,0,'I',2526,1507,'I001507','2025-11-18',3569,'','','0000-00-00','','',0,0,0,0,2127,'','165','','','','N','darshan','darshan','2025-11-18 11:30:36','','0000-00-00 00:00:00'),(1508,0,0,'I',2526,1508,'I001508','2025-11-18',3571,'','','0000-00-00','','',0,0,0,0,917,'','165','','','','N','darshan','darshan','2025-11-18 11:45:57','','0000-00-00 00:00:00'),(1509,0,0,'I',2526,1509,'I001509','2025-11-18',3572,'','','0000-00-00','','',0,0,0,0,865,'','165','','','','N','darshan','darshan','2025-11-18 11:54:54','','0000-00-00 00:00:00'),(1510,0,0,'I',2526,1510,'I001510','2025-11-18',3573,'','','0000-00-00','','',0,0,0,0,2599,'','165','','','','N','darshan','darshan','2025-11-18 12:01:52','','0000-00-00 00:00:00'),(1511,0,0,'I',2526,1511,'I001511','2025-11-18',3577,'','','0000-00-00','','',0,0,0,0,2602,'','165','','','','N','darshan','darshan','2025-11-18 12:12:46','','0000-00-00 00:00:00'),(1512,0,0,'I',2526,1512,'I001512','2025-11-18',3575,'','','0000-00-00','','',0,0,0,0,2600,'','165','','','','N','darshan','darshan','2025-11-18 12:23:34','','0000-00-00 00:00:00'),(1513,0,0,'I',2526,1513,'I001513','2025-11-18',3584,'','','0000-00-00','','',0,0,0,0,2605,'','165','','','','N','darshan','darshan','2025-11-18 12:54:31','','0000-00-00 00:00:00'),(1514,0,0,'I',2526,1514,'I001514','2025-11-18',3587,'','','0000-00-00','','',0,0,0,0,1714,'','165','','','','N','darshan','darshan','2025-11-18 13:08:57','','0000-00-00 00:00:00'),(1515,0,0,'I',2526,1515,'I001515','2025-11-18',3589,'','','0000-00-00','','',0,0,0,0,2609,'','165','','','','N','darshan','darshan','2025-11-18 13:17:11','','0000-00-00 00:00:00'),(1516,0,0,'I',2526,1516,'I001516','2025-11-18',3583,'','','0000-00-00','','',0,0,0,0,2604,'','165','','','','N','darshan','darshan','2025-11-18 13:33:39','','0000-00-00 00:00:00'),(1517,0,0,'I',2526,1517,'I001517','2025-11-18',3593,'','','0000-00-00','','',0,0,0,0,250,'','165','','','','N','darshan','darshan','2025-11-18 13:37:21','','0000-00-00 00:00:00'),(1518,0,0,'I',2526,1518,'I001518','2025-11-18',3586,'','','0000-00-00','','',0,0,0,0,2607,'','165','','','','N','darshan','darshan','2025-11-18 13:46:29','','0000-00-00 00:00:00'),(1519,0,0,'I',2526,1519,'I001519','2025-11-18',3590,'','','0000-00-00','','',0,0,0,0,2610,'','165','','','','N','darshan','darshan','2025-11-18 14:02:38','','0000-00-00 00:00:00'),(1520,0,0,'I',2526,1520,'I001520','2025-11-18',3592,'','','0000-00-00','','',0,0,0,0,2611,'','165','','','','N','darshan','darshan','2025-11-18 14:22:17','','0000-00-00 00:00:00'),(1521,0,0,'I',2526,1521,'I001521','2025-11-18',3601,'','','0000-00-00','','',0,0,0,0,321,'','165','','','','N','darshan','darshan','2025-11-18 17:22:40','','0000-00-00 00:00:00'),(1522,0,0,'I',2526,1522,'I001522','2025-11-18',3602,'','','0000-00-00','','',0,0,0,0,2616,'','165','','','','N','darshan','darshan','2025-11-18 17:32:41','','0000-00-00 00:00:00'),(1523,0,0,'I',2526,1523,'I001523','2025-11-18',3603,'','','0000-00-00','','',0,0,0,0,212,'','165','','','','N','darshan','darshan','2025-11-18 17:40:28','','0000-00-00 00:00:00'),(1524,0,0,'I',2526,1524,'I001524','2025-11-18',3604,'','','0000-00-00','','',0,0,0,0,2617,'','165','','','','N','darshan','darshan','2025-11-18 17:49:15','','0000-00-00 00:00:00'),(1525,0,0,'I',2526,1525,'I001525','2025-11-18',3607,'','','0000-00-00','','',0,0,0,0,2014,'','165','','','','N','darshan','darshan','2025-11-18 17:59:38','','0000-00-00 00:00:00'),(1526,0,0,'I',2526,1526,'I001526','2025-11-18',3600,'','','0000-00-00','','',0,0,0,0,2615,'','165','','','','N','darshan','darshan','2025-11-18 18:06:22','','0000-00-00 00:00:00'),(1527,0,0,'I',2526,1527,'I001527','2025-11-18',3598,'','','0000-00-00','','',0,0,0,0,2614,'','165','','','','N','darshan','darshan','2025-11-18 18:10:41','','0000-00-00 00:00:00'),(1528,0,0,'I',2526,1528,'I001528','2025-11-18',3615,'','','0000-00-00','','',0,0,0,0,2622,'','165','','','','N','darshan','darshan','2025-11-18 18:34:33','','0000-00-00 00:00:00'),(1529,0,0,'I',2526,1529,'I001529','2025-11-18',3619,'','','0000-00-00','','',0,0,0,0,2624,'','165','','','','N','darshan','darshan','2025-11-18 18:57:57','','0000-00-00 00:00:00'),(1530,0,0,'I',2526,1530,'I001530','2025-11-18',3609,'','','0000-00-00','','',0,0,0,0,2619,'','165','','','','N','darshan','darshan','2025-11-18 19:02:28','','0000-00-00 00:00:00'),(1531,0,0,'I',2526,1531,'I001531','2025-11-18',3596,'','','0000-00-00','','',0,0,0,0,2612,'','165','','','','N','darshan','darshan','2025-11-18 19:05:10','','0000-00-00 00:00:00'),(1532,0,0,'I',2526,1532,'I001532','2025-11-18',3617,'','','0000-00-00','','',0,0,0,0,2623,'','165','','','','N','darshan','darshan','2025-11-18 19:34:42','','0000-00-00 00:00:00'),(1533,0,0,'I',2526,1533,'I001533','2025-11-19',3629,'','','0000-00-00','','',0,0,0,0,2630,'','165','','','','N','darshan','darshan','2025-11-19 10:43:01','','0000-00-00 00:00:00'),(1534,0,0,'I',2526,1534,'I001534','2025-11-19',3634,'','','0000-00-00','','',0,0,0,0,2632,'','165','','','','N','darshan','darshan','2025-11-19 10:50:52','','0000-00-00 00:00:00'),(1535,0,0,'I',2526,1535,'I001535','2025-11-19',3626,'','','0000-00-00','','',0,0,0,0,2628,'','165','','','','N','darshan','darshan','2025-11-19 11:01:26','','0000-00-00 00:00:00'),(1536,0,0,'I',2526,1536,'I001536','2025-11-19',3624,'','','0000-00-00','','',0,0,0,0,2626,'','165','','','','N','darshan','darshan','2025-11-19 11:04:16','','0000-00-00 00:00:00'),(1537,0,0,'I',2526,1537,'I001537','2025-11-19',3628,'','','0000-00-00','','',0,0,0,0,19,'','165','','','','N','darshan','darshan','2025-11-19 11:16:52','','0000-00-00 00:00:00'),(1538,0,0,'I',2526,1538,'I001538','2025-11-19',3631,'','','0000-00-00','','',0,0,0,0,2172,'','165','','','','N','darshan','darshan','2025-11-19 11:24:09','','0000-00-00 00:00:00'),(1539,0,0,'I',2526,1539,'I001539','2025-11-19',3646,'','','0000-00-00','','',0,0,0,0,278,'','165','','','','N','darshan','darshan','2025-11-19 11:28:13','','0000-00-00 00:00:00'),(1540,0,0,'I',2526,1540,'I001540','2025-11-19',3633,'','','0000-00-00','','',0,0,0,0,924,'','165','','','','N','darshan','darshan','2025-11-19 11:31:41','','0000-00-00 00:00:00'),(1541,0,0,'I',2526,1541,'I001541','2025-11-19',3647,'','','0000-00-00','','',0,0,0,0,2122,'','165','','','','N','darshan','darshan','2025-11-19 11:36:20','','0000-00-00 00:00:00'),(1542,0,0,'I',2526,1542,'I001542','2025-11-19',3651,'','','0000-00-00','','',0,0,0,0,2641,'','165','','','','N','drarchit','drarchit','2025-11-19 11:50:01','','0000-00-00 00:00:00'),(1543,0,0,'I',2526,1543,'I001543','2025-11-19',3636,'','','0000-00-00','','',0,0,0,0,2633,'','165','','','','N','darshan','darshan','2025-11-19 11:51:24','','0000-00-00 00:00:00'),(1544,0,0,'I',2526,1544,'I001544','2025-11-19',3650,'','','0000-00-00','','',0,0,0,0,395,'','165','','','','N','darshan','darshan','2025-11-19 11:53:22','','0000-00-00 00:00:00'),(1545,0,0,'I',2526,1545,'I001545','2025-11-19',3640,'','','0000-00-00','','',0,0,0,0,2635,'','165','','','','N','darshan','darshan','2025-11-19 11:56:07','','0000-00-00 00:00:00'),(1546,0,0,'I',2526,1546,'I001546','2025-11-19',3644,'','','0000-00-00','','',0,0,0,0,2637,'','165','','','','N','darshan','darshan','2025-11-19 12:01:04','','0000-00-00 00:00:00'),(1547,0,0,'I',2526,1547,'I001547','2025-11-19',3663,'','','0000-00-00','','',0,0,0,0,2649,'','165','','','','N','darshan','darshan','2025-11-19 12:17:51','','0000-00-00 00:00:00'),(1548,0,0,'I',2526,1548,'I001548','2025-11-19',3635,'','','0000-00-00','','',0,0,0,0,2303,'','165','','','','N','darshan','darshan','2025-11-19 12:21:16','','0000-00-00 00:00:00'),(1549,0,0,'I',2526,1549,'I001549','2025-11-19',3645,'','','0000-00-00','','',0,0,0,0,2638,'','165','','','','N','darshan','darshan','2025-11-19 12:25:43','','0000-00-00 00:00:00'),(1550,0,0,'I',2526,1550,'I001550','2025-11-19',3665,'','','0000-00-00','','',0,0,0,0,2651,'','165','','','','N','darshan','darshan','2025-11-19 12:33:19','','0000-00-00 00:00:00'),(1551,0,0,'I',2526,1551,'I001551','2025-11-19',3652,'','','0000-00-00','','',0,0,0,0,2642,'','165','','','','N','darshan','darshan','2025-11-19 12:44:24','','0000-00-00 00:00:00'),(1552,0,0,'I',2526,1552,'I001552','2025-11-19',3659,'','','0000-00-00','','',0,0,0,0,2646,'','165','','','','N','drarchit','drarchit','2025-11-19 12:48:11','','0000-00-00 00:00:00'),(1553,0,0,'I',2526,1553,'I001553','2025-11-19',3668,'','','0000-00-00','','',0,0,0,0,2654,'','165','','','','N','darshan','darshan','2025-11-19 12:49:56','','0000-00-00 00:00:00'),(1554,0,0,'I',2526,1554,'I001554','2025-11-19',3661,'','','0000-00-00','','',0,0,0,0,2648,'','165','','','','N','drarchit','drarchit','2025-11-19 12:54:31','','0000-00-00 00:00:00'),(1555,0,0,'I',2526,1555,'I001555','2025-11-19',3671,'','','0000-00-00','','',0,0,0,0,2656,'','165','','','','N','darshan','darshan','2025-11-19 12:59:10','','0000-00-00 00:00:00'),(1556,0,0,'I',2526,1556,'I001556','2025-11-19',3655,'','','0000-00-00','','',0,0,0,0,15,'','165','','','','N','darshan','darshan','2025-11-19 13:02:26','','0000-00-00 00:00:00'),(1557,0,0,'I',2526,1557,'I001557','2025-11-19',3660,'','','0000-00-00','','',0,0,0,0,2647,'','165','','','','N','drarchit','drarchit','2025-11-19 13:09:18','','0000-00-00 00:00:00'),(1558,0,0,'I',2526,1558,'I001558','2025-11-19',3682,'','','0000-00-00','','',0,0,0,0,602,'','165','','','','N','darshan','darshan','2025-11-19 13:13:24','','0000-00-00 00:00:00'),(1559,0,0,'I',2526,1559,'I001559','2025-11-19',3674,'','','0000-00-00','','',0,0,0,0,508,'','165','','','','N','drarchit','drarchit','2025-11-19 13:16:02','','0000-00-00 00:00:00'),(1560,0,0,'I',2526,1560,'I001560','2025-11-19',3625,'','','0000-00-00','','',0,0,0,0,2627,'','165','','','','N','darshan','darshan','2025-11-19 13:20:38','','0000-00-00 00:00:00'),(1561,0,0,'I',2526,1561,'I001561','2025-11-19',3670,'','','0000-00-00','','',0,0,0,0,2165,'','165','','','','N','drarchit','drarchit','2025-11-19 13:23:13','','0000-00-00 00:00:00'),(1562,0,0,'I',2526,1562,'I001562','2025-11-19',3649,'','','0000-00-00','','',0,0,0,0,2640,'','165','','','','N','drarchit','drarchit','2025-11-19 13:25:39','','0000-00-00 00:00:00'),(1563,0,0,'I',2526,1563,'I001563','2025-11-19',3648,'','','0000-00-00','','',0,0,0,0,2639,'','165','','','','N','darshan','darshan','2025-11-19 13:30:35','','0000-00-00 00:00:00'),(1564,0,0,'I',2526,1564,'I001564','2025-11-19',3678,'','','0000-00-00','','',0,0,0,0,1454,'','165','','','','N','drarchit','drarchit','2025-11-19 13:32:35','','0000-00-00 00:00:00'),(1565,0,0,'I',2526,1565,'I001565','2025-11-19',3677,'','','0000-00-00','','',0,0,0,0,2659,'','165','','','','N','drarchit','drarchit','2025-11-19 13:36:36','','0000-00-00 00:00:00'),(1566,0,0,'I',2526,1566,'I001566','2025-11-19',3639,'','','0000-00-00','','',0,0,0,0,2634,'','165','','','','N','drarchit','drarchit','2025-11-19 13:40:21','','0000-00-00 00:00:00'),(1567,0,0,'I',2526,1567,'I001567','2025-11-19',3676,'','','0000-00-00','','',0,0,0,0,2658,'','165','','','','N','drarchit','drarchit','2025-11-19 13:45:32','','0000-00-00 00:00:00'),(1568,0,0,'I',2526,1568,'I001568','2025-11-19',3673,'','','0000-00-00','','',0,0,0,0,1190,'','165','','','','N','darshan','darshan','2025-11-19 13:46:32','','0000-00-00 00:00:00'),(1569,0,0,'I',2526,1569,'I001569','2025-11-19',3681,'','','0000-00-00','','',0,0,0,0,2661,'','165','','','','N','drarchit','drarchit','2025-11-19 13:49:58','','0000-00-00 00:00:00'),(1570,0,0,'I',2526,1570,'I001570','2025-11-19',3679,'','','0000-00-00','','',0,0,0,0,2660,'','165','','','','N','darshan','darshan','2025-11-19 13:53:29','','0000-00-00 00:00:00'),(1571,0,0,'I',2526,1571,'I001571','2025-11-19',3685,'','','0000-00-00','','',0,0,0,0,931,'','165','','','','N','drarchit','drarchit','2025-11-19 13:57:51','','0000-00-00 00:00:00'),(1572,0,0,'I',2526,1572,'I001572','2025-11-19',3664,'','','0000-00-00','','',0,0,0,0,2650,'','165','','','','N','darshan','darshan','2025-11-19 14:06:10','','0000-00-00 00:00:00'),(1573,0,0,'I',2526,1573,'I001573','2025-11-19',3672,'','','0000-00-00','','',0,0,0,0,2657,'','165','','','','N','darshan','darshan','2025-11-19 14:09:10','','0000-00-00 00:00:00'),(1574,0,0,'I',2526,1574,'I001574','2025-11-19',3642,'','','0000-00-00','','',0,0,0,0,2636,'','165','','','','N','drarchit','drarchit','2025-11-19 14:09:41','','0000-00-00 00:00:00'),(1575,0,0,'I',2526,1575,'I001575','2025-11-19',1806,'','','0000-00-00','','',0,0,0,0,1433,'','165','','','','N','darshan','darshan','2025-11-19 14:26:56','','0000-00-00 00:00:00'),(1576,0,0,'I',2526,1576,'I001576','2025-11-19',3686,'','','0000-00-00','','',0,0,0,0,1326,'','165','','','','N','darshan','darshan','2025-11-19 17:06:03','','0000-00-00 00:00:00'),(1577,0,0,'I',2526,1577,'I001577','2025-11-19',3693,'','','0000-00-00','','',0,0,0,0,2667,'','165','','','','N','darshan','darshan','2025-11-19 17:13:27','','0000-00-00 00:00:00'),(1578,0,0,'I',2526,1578,'I001578','2025-11-19',3694,'','','0000-00-00','','',0,0,0,0,1555,'','165','','','','N','darshan','darshan','2025-11-19 17:18:51','','0000-00-00 00:00:00'),(1579,0,0,'I',2526,1579,'I001579','2025-11-19',3697,'','','0000-00-00','','',0,0,0,0,2668,'','165','','','','N','darshan','darshan','2025-11-19 17:30:26','','0000-00-00 00:00:00'),(1580,0,0,'I',2526,1580,'I001580','2025-11-19',3699,'','','0000-00-00','','',0,0,0,0,2669,'','165','','','','N','darshan','darshan','2025-11-19 17:33:49','','0000-00-00 00:00:00'),(1581,0,0,'I',2526,1581,'I001581','2025-11-19',3700,'','','0000-00-00','','',0,0,0,0,1652,'','165','','','','N','darshan','darshan','2025-11-19 17:42:15','','0000-00-00 00:00:00'),(1582,0,0,'I',2526,1582,'I001582','2025-11-19',3701,'','','0000-00-00','','',0,0,0,0,2670,'','165','','','','N','darshan','darshan','2025-11-19 17:53:23','','0000-00-00 00:00:00'),(1583,0,0,'I',2526,1583,'I001583','2025-11-19',3695,'','','0000-00-00','','',0,0,0,0,1734,'','165','','','','N','darshan','darshan','2025-11-19 17:55:26','','0000-00-00 00:00:00'),(1584,0,0,'I',2526,1584,'I001584','2025-11-19',3709,'','','0000-00-00','','',0,0,0,0,2015,'','165','','','','N','darshan','darshan','2025-11-19 18:05:46','','0000-00-00 00:00:00'),(1585,0,0,'I',2526,1585,'I001585','2025-11-19',3715,'','','0000-00-00','','',0,0,0,0,362,'','165','','','','N','darshan','darshan','2025-11-19 18:11:45','','0000-00-00 00:00:00'),(1586,0,0,'I',2526,1586,'I001586','2025-11-19',3702,'','','0000-00-00','','',0,0,0,0,2671,'','165','','','','N','drarchit','drarchit','2025-11-19 18:20:52','','0000-00-00 00:00:00'),(1587,0,0,'I',2526,1587,'I001587','2025-11-19',3716,'','','0000-00-00','','',0,0,0,0,2679,'','165','','','','N','drarchit','drarchit','2025-11-19 18:28:32','','0000-00-00 00:00:00'),(1588,0,0,'I',2526,1588,'I001588','2025-11-19',3529,'','','0000-00-00','','',0,0,0,0,2577,'','165','','','','N','darshan','darshan','2025-11-19 18:33:32','','0000-00-00 00:00:00'),(1589,0,0,'I',2526,1589,'I001589','2025-11-19',3706,'','','0000-00-00','','',0,0,0,0,2673,'','165','','','','N','drarchit','drarchit','2025-11-19 18:37:07','','0000-00-00 00:00:00'),(1590,0,0,'I',2526,1590,'I001590','2025-11-19',3724,'','','0000-00-00','','',0,0,0,0,2684,'','165','','','','N','drarchit','drarchit','2025-11-19 18:41:49','','0000-00-00 00:00:00'),(1591,0,0,'I',2526,1591,'I001591','2025-11-19',3713,'','','0000-00-00','','',0,0,0,0,2678,'','165','','','','N','darshan','darshan','2025-11-19 18:42:29','','0000-00-00 00:00:00'),(1592,0,0,'I',2526,1592,'I001592','2025-11-19',3708,'','','0000-00-00','','',0,0,0,0,2675,'','165','','','','N','drarchit','drarchit','2025-11-19 18:44:43','','0000-00-00 00:00:00'),(1593,0,0,'I',2526,1593,'I001593','2025-11-19',3710,'','','0000-00-00','','',0,0,0,0,2676,'','165','','','','N','drarchit','drarchit','2025-11-19 18:49:55','','0000-00-00 00:00:00'),(1594,0,0,'I',2526,1594,'I001594','2025-11-19',3723,'','','0000-00-00','','',0,0,0,0,634,'','165','','','','N','drarchit','drarchit','2025-11-19 18:52:34','','0000-00-00 00:00:00'),(1595,0,0,'I',2526,1595,'I001595','2025-11-19',3739,'','','0000-00-00','','',0,0,0,0,982,'','165','','','','N','darshan','darshan','2025-11-19 18:54:31','','0000-00-00 00:00:00'),(1596,0,0,'I',2526,1596,'I001596','2025-11-19',3714,'','','0000-00-00','','',0,0,0,0,957,'','165','','','','N','drarchit','drarchit','2025-11-19 18:54:40','','0000-00-00 00:00:00'),(1597,0,0,'I',2526,1597,'I001597','2025-11-19',3662,'','','0000-00-00','','',0,0,0,0,1274,'','165','','','','N','drarchit','drarchit','2025-11-19 18:58:29','','0000-00-00 00:00:00'),(1598,0,0,'I',2526,1598,'I001598','2025-11-19',3726,'','','0000-00-00','','',0,0,0,0,2686,'','165','','','','N','darshan','darshan','2025-11-19 18:59:28','','0000-00-00 00:00:00'),(1599,0,0,'I',2526,1599,'I001599','2025-11-19',3735,'','','0000-00-00','','',0,0,0,0,2691,'','165','','','','N','drarchit','drarchit','2025-11-19 19:01:50','','0000-00-00 00:00:00'),(1600,0,0,'I',2526,1600,'I001600','2025-11-19',3717,'','','0000-00-00','','',0,0,0,0,2680,'','165','','','','N','drarchit','drarchit','2025-11-19 19:03:32','','0000-00-00 00:00:00'),(1601,0,0,'I',2526,1601,'I001601','2025-11-19',3727,'','','0000-00-00','','',0,0,0,0,2687,'','165','','','','N','drarchit','drarchit','2025-11-19 19:07:13','','0000-00-00 00:00:00'),(1602,0,0,'I',2526,1602,'I001602','2025-11-19',3733,'','','0000-00-00','','',0,0,0,0,2196,'','165','','','','N','darshan','darshan','2025-11-19 19:11:27','','0000-00-00 00:00:00'),(1603,0,0,'I',2526,1603,'I001603','2025-11-19',3732,'','','0000-00-00','','',0,0,0,0,2690,'','165','','','','N','drarchit','drarchit','2025-11-19 19:14:13','','0000-00-00 00:00:00'),(1604,0,0,'I',2526,1604,'I001604','2025-11-19',3740,'','','0000-00-00','','',0,0,0,0,2693,'','165','','','','N','darshan','darshan','2025-11-19 19:16:52','','0000-00-00 00:00:00'),(1605,0,0,'I',2526,1605,'I001605','2025-11-19',3738,'','','0000-00-00','','',0,0,0,0,2692,'','165','','','','N','drarchit','drarchit','2025-11-19 19:21:30','','0000-00-00 00:00:00'),(1606,0,0,'I',2526,1606,'I001606','2025-11-19',3725,'','','0000-00-00','','',0,0,0,0,2685,'','165','','','','N','drarchit','drarchit','2025-11-19 19:28:30','','0000-00-00 00:00:00'),(1607,0,0,'I',2526,1607,'I001607','2025-11-19',3729,'','','0000-00-00','','',0,0,0,0,2688,'','165','','','','N','drarchit','drarchit','2025-11-19 19:33:06','','0000-00-00 00:00:00'),(1608,0,0,'I',2526,1608,'I001608','2025-11-19',3743,'','','0000-00-00','','',0,0,0,0,2694,'','165','','','','N','drarchit','drarchit','2025-11-19 19:36:21','','0000-00-00 00:00:00'),(1609,0,0,'I',2526,1609,'I001609','2025-11-19',3745,'','','0000-00-00','','',0,0,0,0,2696,'','165','','','','N','drarchit','drarchit','2025-11-19 19:42:16','','0000-00-00 00:00:00'),(1610,0,0,'I',2526,1610,'I001610','2025-11-19',3746,'','','0000-00-00','','',0,0,0,0,2697,'','165','','','','N','drarchit','drarchit','2025-11-19 19:44:58','','0000-00-00 00:00:00'),(1611,0,0,'I',2526,1611,'I001611','2025-11-19',3749,'','','0000-00-00','','',0,0,0,0,2700,'','165','','','','N','drarchit','drarchit','2025-11-19 19:48:21','','0000-00-00 00:00:00'),(1612,0,0,'I',2526,1612,'I001612','2025-11-19',3748,'','','0000-00-00','','',0,0,0,0,2699,'','165','','','','N','drarchit','drarchit','2025-11-19 19:54:49','','0000-00-00 00:00:00'),(1613,0,0,'I',2526,1613,'I001613','2025-11-19',3751,'','','0000-00-00','','',0,0,0,0,2702,'','165','','','','N','drarchit','drarchit','2025-11-19 20:08:17','','0000-00-00 00:00:00'),(1614,0,0,'I',2526,1614,'I001614','2025-11-19',3752,'','','0000-00-00','','',0,0,0,0,1860,'','165','','','','N','drarchit','drarchit','2025-11-19 20:16:50','','0000-00-00 00:00:00'),(1615,0,0,'I',2526,1615,'I001615','2025-11-19',3754,'','','0000-00-00','','',0,0,0,0,2704,'','165','','','','N','drarchit','drarchit','2025-11-19 20:34:11','','0000-00-00 00:00:00'),(1616,0,0,'I',2526,1616,'I001616','2025-11-20',3779,'','','0000-00-00','','',0,0,0,0,2721,'','165','','','','N','drarchit','drarchit','2025-11-20 11:14:51','','0000-00-00 00:00:00'),(1617,0,0,'I',2526,1617,'I001617','2025-11-20',3781,'','','0000-00-00','','',0,0,0,0,2723,'','165','','','','N','drarchit','drarchit','2025-11-20 11:17:50','','0000-00-00 00:00:00'),(1618,0,0,'I',2526,1618,'I001618','2025-11-20',3760,'','','0000-00-00','','',0,0,0,0,2707,'','165','','','','N','drarchit','drarchit','2025-11-20 11:34:23','','0000-00-00 00:00:00'),(1619,0,0,'I',2526,1619,'I001619','2025-11-20',3770,'','','0000-00-00','','',0,0,0,0,1548,'','165','','','','N','darshan','darshan','2025-11-20 11:39:45','','0000-00-00 00:00:00'),(1620,0,0,'I',2526,1620,'I001620','2025-11-20',3787,'','','0000-00-00','','',0,0,0,0,2725,'','165','','','','N','drarchit','drarchit','2025-11-20 11:40:21','','0000-00-00 00:00:00'),(1621,0,0,'I',2526,1621,'I001621','2025-11-20',3786,'','','0000-00-00','','',0,0,0,0,2724,'','165','','','','N','drarchit','drarchit','2025-11-20 11:43:20','','0000-00-00 00:00:00'),(1622,0,0,'I',2526,1622,'I001622','2025-11-20',3772,'','','0000-00-00','','',0,0,0,0,1899,'','165','','','','N','darshan','darshan','2025-11-20 11:45:54','','0000-00-00 00:00:00'),(1623,0,0,'I',2526,1623,'I001623','2025-11-20',3789,'','','0000-00-00','','',0,0,0,0,2727,'','165','','','','N','drarchit','drarchit','2025-11-20 11:49:02','','0000-00-00 00:00:00'),(1624,0,0,'I',2526,1624,'I001624','2025-11-20',3782,'','','0000-00-00','','',0,0,0,0,1913,'','165','','','','N','darshan','darshan','2025-11-20 11:50:13','','0000-00-00 00:00:00'),(1625,0,0,'I',2526,1625,'I001625','2025-11-20',3792,'','','0000-00-00','','',0,0,0,0,2286,'','165','','','','N','drarchit','drarchit','2025-11-20 11:54:32','','0000-00-00 00:00:00'),(1626,0,0,'I',2526,1626,'I001626','2025-11-20',3775,'','','0000-00-00','','',0,0,0,0,2176,'','165','','','','N','darshan','darshan','2025-11-20 11:56:57','','0000-00-00 00:00:00'),(1627,0,0,'I',2526,1627,'I001627','2025-11-20',3790,'','','0000-00-00','','',0,0,0,0,2728,'','165','','','','N','drarchit','drarchit','2025-11-20 12:02:26','','0000-00-00 00:00:00'),(1628,0,0,'I',2526,1628,'I001628','2025-11-20',3794,'','','0000-00-00','','',0,0,0,0,2730,'','165','','','','N','drarchit','drarchit','2025-11-20 12:07:29','','0000-00-00 00:00:00'),(1629,0,0,'I',2526,1629,'I001629','2025-11-20',3795,'','','0000-00-00','','',0,0,0,0,2731,'','165','','','','N','darshan','darshan','2025-11-20 12:13:47','','0000-00-00 00:00:00'),(1630,0,0,'I',2526,1630,'I001630','2025-11-20',3798,'','','0000-00-00','','',0,0,0,0,2732,'','165','','','','N','drarchit','drarchit','2025-11-20 12:21:31','','0000-00-00 00:00:00'),(1631,0,0,'I',2526,1631,'I001631','2025-11-20',3799,'','','0000-00-00','','',0,0,0,0,2733,'','165','','','','N','drarchit','drarchit','2025-11-20 12:30:08','','0000-00-00 00:00:00'),(1632,0,0,'I',2526,1632,'I001632','2025-11-20',3762,'','','0000-00-00','','',0,0,0,0,2709,'','165','','','','N','darshan','darshan','2025-11-20 12:33:46','','0000-00-00 00:00:00'),(1633,0,0,'I',2526,1633,'I001633','2025-11-20',3802,'','','0000-00-00','','',0,0,0,0,2735,'','165','','','','N','darshan','darshan','2025-11-20 12:37:12','','0000-00-00 00:00:00'),(1634,0,0,'I',2526,1634,'I001634','2025-11-20',3768,'','','0000-00-00','','',0,0,0,0,2713,'','165','','','','N','darshan','darshan','2025-11-20 12:41:18','','0000-00-00 00:00:00'),(1635,0,0,'I',2526,1635,'I001635','2025-11-20',3767,'','','0000-00-00','','',0,0,0,0,2712,'','165','','','','N','darshan','darshan','2025-11-20 12:52:08','','0000-00-00 00:00:00'),(1636,0,0,'I',2526,1636,'I001636','2025-11-20',3757,'','','0000-00-00','','',0,0,0,0,2706,'','165','','','','N','drarchit','drarchit','2025-11-20 12:55:39','','0000-00-00 00:00:00'),(1637,0,0,'I',2526,1637,'I001637','2025-11-20',3803,'','','0000-00-00','','',0,0,0,0,2736,'','165','','','','N','drarchit','drarchit','2025-11-20 13:04:47','','0000-00-00 00:00:00'),(1638,0,0,'I',2526,1638,'I001638','2025-11-20',3812,'','','0000-00-00','','',0,0,0,0,1287,'','165','','','','N','darshan','darshan','2025-11-20 13:13:33','','0000-00-00 00:00:00'),(1639,0,0,'I',2526,1639,'I001639','2025-11-20',3758,'','','0000-00-00','','',0,0,0,0,1243,'','165','','','','N','drarchit','drarchit','2025-11-20 13:16:05','','0000-00-00 00:00:00'),(1640,0,0,'I',2526,1640,'I001640','2025-11-20',3816,'','','0000-00-00','','',0,0,0,0,2182,'','165','','','','N','darshan','darshan','2025-11-20 13:19:22','','0000-00-00 00:00:00'),(1641,0,0,'I',2526,1641,'I001641','2025-11-20',3806,'','','0000-00-00','','',0,0,0,0,2739,'','165','','','','N','drarchit','drarchit','2025-11-20 13:28:20','','0000-00-00 00:00:00'),(1642,0,0,'I',2526,1642,'I001642','2025-11-20',3756,'','','0000-00-00','','',0,0,0,0,2705,'','165','','','','N','drarchit','drarchit','2025-11-20 13:35:08','','0000-00-00 00:00:00'),(1643,0,0,'I',2526,1643,'I001643','2025-11-20',3769,'','','0000-00-00','','',0,0,0,0,2714,'','165','','','','N','darshan','darshan','2025-11-20 13:36:35','','0000-00-00 00:00:00'),(1644,0,0,'I',2526,1644,'I001644','2025-11-20',3800,'','','0000-00-00','','',0,0,0,0,615,'','165','','','','N','drarchit','drarchit','2025-11-20 13:37:37','','0000-00-00 00:00:00'),(1645,0,0,'I',2526,1645,'I001645','2025-11-20',3814,'','','0000-00-00','','',0,0,0,0,373,'','165','','','','N','drarchit','drarchit','2025-11-20 13:47:56','','0000-00-00 00:00:00'),(1646,0,0,'I',2526,1646,'I001646','2025-11-20',3776,'','','0000-00-00','','',0,0,0,0,2718,'','165','','','','N','darshan','darshan','2025-11-20 13:49:48','','0000-00-00 00:00:00'),(1647,0,0,'I',2526,1647,'I001647','2025-11-20',3793,'','','0000-00-00','','',0,0,0,0,2729,'','165','','','','N','darshan','darshan','2025-11-20 13:54:32','','0000-00-00 00:00:00'),(1648,0,0,'I',2526,1648,'I001648','2025-11-20',3771,'','','0000-00-00','','',0,0,0,0,2715,'','165','','','','N','darshan','darshan','2025-11-20 14:01:30','','0000-00-00 00:00:00'),(1649,0,0,'I',2526,1649,'I001649','2025-11-20',3801,'','','0000-00-00','','',0,0,0,0,2734,'','165','','','','N','drarchit','drarchit','2025-11-20 14:03:29','','0000-00-00 00:00:00'),(1650,0,0,'I',2526,1650,'I001650','2025-11-20',3807,'','','0000-00-00','','',0,0,0,0,2740,'','165','','','','N','darshan','darshan','2025-11-20 14:10:16','','0000-00-00 00:00:00'),(1651,0,0,'I',2526,1651,'I001651','2025-11-20',3819,'','','0000-00-00','','',0,0,0,0,1589,'','165','','','','N','darshan','darshan','2025-11-20 14:15:51','','0000-00-00 00:00:00'),(1652,0,0,'I',2526,1652,'I001652','2025-11-20',3811,'','','0000-00-00','','',0,0,0,0,2743,'','165','','','','N','drarchit','drarchit','2025-11-20 14:16:37','','0000-00-00 00:00:00'),(1653,0,0,'I',2526,1653,'I001653','2025-11-20',3817,'','','0000-00-00','','',0,0,0,0,191,'','165','','','','N','drarchit','drarchit','2025-11-20 14:21:57','','0000-00-00 00:00:00'),(1654,0,0,'I',2526,1654,'I001654','2025-11-20',3804,'','','0000-00-00','','',0,0,0,0,2737,'','165','','','','N','darshan','darshan','2025-11-20 14:27:46','','0000-00-00 00:00:00'),(1655,0,0,'I',2526,1655,'I001655','2025-11-20',3822,'','','0000-00-00','','',0,0,0,0,2745,'','165','','','','N','darshan','darshan','2025-11-20 17:23:10','','0000-00-00 00:00:00'),(1656,0,0,'I',2526,1656,'I001656','2025-11-20',3824,'','','0000-00-00','','',0,0,0,0,2747,'','165','','','','N','darshan','darshan','2025-11-20 17:27:08','','0000-00-00 00:00:00'),(1657,0,0,'I',2526,1657,'I001657','2025-11-20',3826,'','','0000-00-00','','',0,0,0,0,2748,'','165','','','','N','darshan','darshan','2025-11-20 17:48:59','','0000-00-00 00:00:00'),(1658,0,0,'I',2526,1658,'I001658','2025-11-20',3828,'','','0000-00-00','','',0,0,0,0,2136,'','165','','','','N','darshan','darshan','2025-11-20 17:53:59','','0000-00-00 00:00:00'),(1659,0,0,'I',2526,1659,'I001659','2025-11-20',3827,'','','0000-00-00','','',0,0,0,0,2749,'','165','','','','N','darshan','darshan','2025-11-20 17:58:11','','0000-00-00 00:00:00'),(1660,0,0,'I',2526,1660,'I001660','2025-11-20',3773,'','','0000-00-00','','',0,0,0,0,2716,'','165','','','','N','darshan','darshan','2025-11-20 18:07:06','','0000-00-00 00:00:00'),(1661,0,0,'I',2526,1661,'I001661','2025-11-20',3835,'','','0000-00-00','','',0,0,0,0,2754,'','165','','','','N','drarchit','drarchit','2025-11-20 18:18:44','','0000-00-00 00:00:00'),(1662,0,0,'I',2526,1662,'I001662','2025-11-20',3823,'','','0000-00-00','','',0,0,0,0,2746,'','165','','','','N','darshan','darshan','2025-11-20 18:19:25','','0000-00-00 00:00:00'),(1663,0,0,'I',2526,1663,'I001663','2025-11-20',3838,'','','0000-00-00','','',0,0,0,0,2366,'','165','','','','N','drarchit','drarchit','2025-11-20 18:28:09','','0000-00-00 00:00:00'),(1664,0,0,'I',2526,1664,'I001664','2025-11-20',3829,'','','0000-00-00','','',0,0,0,0,1346,'','165','','','','N','darshan','darshan','2025-11-20 18:28:31','','0000-00-00 00:00:00'),(1665,0,0,'I',2526,1665,'I001665','2025-11-20',3820,'','','0000-00-00','','',0,0,0,0,2744,'','165','','','','N','darshan','darshan','2025-11-20 18:31:29','','0000-00-00 00:00:00'),(1666,0,0,'I',2526,1666,'I001666','2025-11-20',3845,'','','0000-00-00','','',0,0,0,0,2758,'','165','','','','N','drarchit','drarchit','2025-11-20 18:35:59','','0000-00-00 00:00:00'),(1667,0,0,'I',2526,1667,'I001667','2025-11-20',3831,'','','0000-00-00','','',0,0,0,0,2751,'','165','','','','N','darshan','darshan','2025-11-20 18:40:30','','0000-00-00 00:00:00'),(1668,0,0,'I',2526,1668,'I001668','2025-11-20',3843,'','','0000-00-00','','',0,0,0,0,1362,'','165','','','','N','darshan','darshan','2025-11-20 18:41:37','','0000-00-00 00:00:00'),(1669,0,0,'I',2526,1669,'I001669','2025-11-20',3833,'','','0000-00-00','','',0,0,0,0,2753,'','165','','','','N','darshan','darshan','2025-11-20 18:59:28','','0000-00-00 00:00:00'),(1670,0,0,'I',2526,1670,'I001670','2025-11-20',3850,'','','0000-00-00','','',0,0,0,0,2760,'','165','','','','N','drarchit','drarchit','2025-11-20 18:59:33','','0000-00-00 00:00:00'),(1671,0,0,'I',2526,1671,'I001671','2025-11-20',3834,'','','0000-00-00','','',0,0,0,0,1597,'','165','','','','N','darshan','darshan','2025-11-20 19:01:53','','0000-00-00 00:00:00'),(1672,0,0,'I',2526,1672,'I001672','2025-11-20',3841,'','','0000-00-00','','',0,0,0,0,390,'','165','','','','N','darshan','darshan','2025-11-20 19:05:04','','0000-00-00 00:00:00'),(1673,0,0,'I',2526,1673,'I001673','2025-11-20',3852,'','','0000-00-00','','',0,0,0,0,2761,'','165','','','','N','drarchit','drarchit','2025-11-20 19:10:17','','0000-00-00 00:00:00'),(1674,0,0,'I',2526,1674,'I001674','2025-11-20',3842,'','','0000-00-00','','',0,0,0,0,984,'','165','','','','N','darshan','darshan','2025-11-20 19:17:53','','0000-00-00 00:00:00'),(1675,0,0,'I',2526,1675,'I001675','2025-11-20',3844,'','','0000-00-00','','',0,0,0,0,832,'','165','','','','N','darshan','darshan','2025-11-20 19:20:49','','0000-00-00 00:00:00'),(1676,0,0,'I',2526,1676,'I001676','2025-11-20',3832,'','','0000-00-00','','',0,0,0,0,2752,'','165','','','','N','darshan','darshan','2025-11-20 19:27:03','','0000-00-00 00:00:00'),(1677,0,0,'I',2526,1677,'I001677','2025-11-20',3858,'','','0000-00-00','','',0,0,0,0,1317,'','165','','','','N','drarchit','drarchit','2025-11-20 19:30:09','','0000-00-00 00:00:00'),(1678,0,0,'I',2526,1678,'I001678','2025-11-20',3846,'','','0000-00-00','','',0,0,0,0,2759,'','165','','','','N','darshan','darshan','2025-11-20 19:38:44','','0000-00-00 00:00:00'),(1679,0,0,'I',2526,1679,'I001679','2025-11-20',3855,'','','0000-00-00','','',0,0,0,0,1314,'','165','','','','N','darshan','darshan','2025-11-20 19:46:54','','0000-00-00 00:00:00'),(1680,0,0,'I',2526,1680,'I001680','2025-11-20',3837,'','','0000-00-00','','',0,0,0,0,2755,'','165','','','','N','drarchit','drarchit','2025-11-20 20:10:31','','0000-00-00 00:00:00'),(1681,0,0,'I',2526,1681,'I001681','2025-11-20',3860,'','','0000-00-00','','',0,0,0,0,2763,'','165','','','','N','darshan','darshan','2025-11-20 20:34:35','','0000-00-00 00:00:00'),(1682,0,0,'I',2526,1682,'I001682','2025-11-21',3866,'','','0000-00-00','','',0,0,0,0,1012,'','165','','','','N','darshan','darshan','2025-11-21 10:52:35','','0000-00-00 00:00:00'),(1683,0,0,'I',2526,1683,'I001683','2025-11-21',3875,'','','0000-00-00','','',0,0,0,0,2773,'','165','','','','N','darshan','darshan','2025-11-21 11:19:35','','0000-00-00 00:00:00'),(1684,0,0,'I',2526,1684,'I001684','2025-11-21',3879,'','','0000-00-00','','',0,0,0,0,2776,'','165','','','','N','darshan','darshan','2025-11-21 11:39:39','','0000-00-00 00:00:00'),(1685,0,0,'I',2526,1685,'I001685','2025-11-21',3886,'','','0000-00-00','','',0,0,0,0,2780,'','165','','','','N','darshan','darshan','2025-11-21 11:50:34','','0000-00-00 00:00:00'),(1686,0,0,'I',2526,1686,'I001686','2025-11-21',3871,'','','0000-00-00','','',0,0,0,0,2770,'','165','','','','N','drarchit','drarchit','2025-11-21 11:54:10','','0000-00-00 00:00:00'),(1687,0,0,'I',2526,1687,'I001687','2025-11-21',3867,'','','0000-00-00','','',0,0,0,0,2766,'','165','','','','N','drarchit','drarchit','2025-11-21 11:57:53','','0000-00-00 00:00:00'),(1688,0,0,'I',2526,1688,'I001688','2025-11-21',3882,'','','0000-00-00','','',0,0,0,0,1921,'','165','','','','N','drarchit','drarchit','2025-11-21 12:03:35','','0000-00-00 00:00:00'),(1689,0,0,'I',2526,1689,'I001689','2025-11-21',3881,'','','0000-00-00','','',0,0,0,0,746,'','165','','','','N','darshan','darshan','2025-11-21 12:14:50','','0000-00-00 00:00:00'),(1690,0,0,'I',2526,1690,'I001690','2025-11-21',3895,'','','0000-00-00','','',0,0,0,0,1234,'','165','','','','N','darshan','darshan','2025-11-21 12:17:53','','0000-00-00 00:00:00'),(1691,0,0,'I',2526,1691,'I001691','2025-11-21',3893,'','','0000-00-00','','',0,0,0,0,2786,'','165','','','','N','drarchit','drarchit','2025-11-21 12:19:01','','0000-00-00 00:00:00'),(1692,0,0,'I',2526,1692,'I001692','2025-11-21',3892,'','','0000-00-00','','',0,0,0,0,2785,'','165','','','','N','darshan','darshan','2025-11-21 12:21:45','','0000-00-00 00:00:00'),(1693,0,0,'I',2526,1693,'I001693','2025-11-21',3870,'','','0000-00-00','','',0,0,0,0,2769,'','165','','','','N','drarchit','drarchit','2025-11-21 12:23:19','','0000-00-00 00:00:00'),(1694,0,0,'I',2526,1694,'I001694','2025-11-21',3897,'','','0000-00-00','','',0,0,0,0,1731,'','165','','','','N','darshan','darshan','2025-11-21 12:24:12','','0000-00-00 00:00:00'),(1695,0,0,'I',2526,1695,'I001695','2025-11-21',3884,'','','0000-00-00','','',0,0,0,0,2779,'','165','','','','N','drarchit','drarchit','2025-11-21 12:27:57','','0000-00-00 00:00:00'),(1696,0,0,'I',2526,1696,'I001696','2025-11-21',3898,'','','0000-00-00','','',0,0,0,0,2789,'','165','','','','N','darshan','darshan','2025-11-21 12:28:30','','0000-00-00 00:00:00'),(1697,0,0,'I',2526,1697,'I001697','2025-11-21',3874,'','','0000-00-00','','',0,0,0,0,2772,'','165','','','','N','darshan','darshan','2025-11-21 12:34:58','','0000-00-00 00:00:00'),(1698,0,0,'I',2526,1698,'I001698','2025-11-21',3899,'','','0000-00-00','','',0,0,0,0,2790,'','165','','','','N','darshan','darshan','2025-11-21 12:38:07','','0000-00-00 00:00:00'),(1699,0,0,'I',2526,1699,'I001699','2025-11-21',3890,'','','0000-00-00','','',0,0,0,0,2784,'','165','','','','N','drarchit','drarchit','2025-11-21 12:38:35','','0000-00-00 00:00:00'),(1700,0,0,'I',2526,1700,'I001700','2025-11-21',3896,'','','0000-00-00','','',0,0,0,0,2788,'','165','','','','N','drarchit','drarchit','2025-11-21 12:48:15','','0000-00-00 00:00:00'),(1701,0,0,'I',2526,1701,'I001701','2025-11-21',3878,'','','0000-00-00','','',0,0,0,0,2775,'','165','','','','N','darshan','darshan','2025-11-21 12:48:48','','0000-00-00 00:00:00'),(1702,0,0,'I',2526,1702,'I001702','2025-11-21',3894,'','','0000-00-00','','',0,0,0,0,2787,'','165','','','','N','drarchit','drarchit','2025-11-21 12:59:42','','0000-00-00 00:00:00'),(1703,0,0,'I',2526,1703,'I001703','2025-11-21',3900,'','','0000-00-00','','',0,0,0,0,2791,'','165','','','','N','darshan','darshan','2025-11-21 13:00:44','','0000-00-00 00:00:00'),(1704,0,0,'I',2526,1704,'I001704','2025-11-21',3888,'','','0000-00-00','','',0,0,0,0,2782,'','165','','','','N','darshan','darshan','2025-11-21 13:06:34','','0000-00-00 00:00:00'),(1705,0,0,'I',2526,1705,'I001705','2025-11-21',3862,'','','0000-00-00','','',0,0,0,0,2764,'','165','','','','N','drarchit','drarchit','2025-11-21 13:07:20','','0000-00-00 00:00:00'),(1706,0,0,'I',2526,1706,'I001706','2025-11-21',3810,'','','0000-00-00','','',0,0,0,0,1629,'','165','','','','N','drarchit','drarchit','2025-11-21 13:18:27','','0000-00-00 00:00:00'),(1707,0,0,'I',2526,1707,'I001707','2025-11-21',3904,'','','0000-00-00','','',0,0,0,0,2793,'','165','','','','N','darshan','darshan','2025-11-21 13:22:55','','0000-00-00 00:00:00'),(1708,0,0,'I',2526,1708,'I001708','2025-11-21',3873,'','','0000-00-00','','',0,0,0,0,2771,'','165','','','','N','darshan','darshan','2025-11-21 13:28:16','','0000-00-00 00:00:00'),(1709,0,0,'I',2526,1709,'I001709','2025-11-21',3901,'','','0000-00-00','','',0,0,0,0,1028,'','165','','','','N','darshan','darshan','2025-11-21 13:31:47','','0000-00-00 00:00:00'),(1710,0,0,'I',2526,1710,'I001710','2025-11-21',3905,'','','0000-00-00','','',0,0,0,0,2794,'','165','','','','N','drarchit','drarchit','2025-11-21 13:34:55','','0000-00-00 00:00:00'),(1711,0,0,'I',2526,1711,'I001711','2025-11-21',3903,'','','0000-00-00','','',0,0,0,0,2792,'','165','','','','N','darshan','darshan','2025-11-21 13:51:44','','0000-00-00 00:00:00'),(1712,0,0,'I',2526,1712,'I001712','2025-11-21',3915,'','','0000-00-00','','',0,0,0,0,2801,'','165','','','','N','darshan','darshan','2025-11-21 17:19:30','','0000-00-00 00:00:00'),(1713,0,0,'I',2526,1713,'I001713','2025-11-21',3921,'','','0000-00-00','','',0,0,0,0,2806,'','165','','','','N','darshan','darshan','2025-11-21 17:49:23','','0000-00-00 00:00:00'),(1714,0,0,'I',2526,1714,'I001714','2025-11-21',3924,'','','0000-00-00','','',0,0,0,0,2192,'','165','','','','N','darshan','darshan','2025-11-21 18:01:38','','0000-00-00 00:00:00'),(1715,0,0,'I',2526,1715,'I001715','2025-11-21',3916,'','','0000-00-00','','',0,0,0,0,2802,'','165','','','','N','drarchit','drarchit','2025-11-21 18:08:41','','0000-00-00 00:00:00'),(1716,0,0,'I',2526,1716,'I001716','2025-11-21',3926,'','','0000-00-00','','',0,0,0,0,2808,'','165','','','','N','drarchit','drarchit','2025-11-21 18:15:44','','0000-00-00 00:00:00'),(1717,0,0,'I',2526,1717,'I001717','2025-11-21',3927,'','','0000-00-00','','',0,0,0,0,2257,'','165','','','','N','darshan','darshan','2025-11-21 18:16:52','','0000-00-00 00:00:00'),(1718,0,0,'I',2526,1718,'I001718','2025-11-21',3928,'','','0000-00-00','','',0,0,0,0,2809,'','165','','','','N','darshan','darshan','2025-11-21 18:22:30','','0000-00-00 00:00:00'),(1719,0,0,'I',2526,1719,'I001719','2025-11-21',3920,'','','0000-00-00','','',0,0,0,0,2805,'','165','','','','N','drarchit','drarchit','2025-11-21 18:28:11','','0000-00-00 00:00:00'),(1720,0,0,'I',2526,1720,'I001720','2025-11-21',3933,'','','0000-00-00','','',0,0,0,0,2811,'','165','','','','N','darshan','darshan','2025-11-21 18:32:48','','0000-00-00 00:00:00'),(1721,0,0,'I',2526,1721,'I001721','2025-11-21',3809,'','','0000-00-00','','',0,0,0,0,2742,'','165','','','','N','drarchit','drarchit','2025-11-21 18:49:08','','0000-00-00 00:00:00'),(1722,0,0,'I',2526,1722,'I001722','2025-11-21',3931,'','','0000-00-00','','',0,0,0,0,871,'','165','','','','N','darshan','darshan','2025-11-21 18:50:51','','0000-00-00 00:00:00'),(1723,0,0,'I',2526,1723,'I001723','2025-11-21',3935,'','','0000-00-00','','',0,0,0,0,665,'','165','','','','N','darshan','darshan','2025-11-21 18:53:13','','0000-00-00 00:00:00'),(1724,0,0,'I',2526,1724,'I001724','2025-11-21',3917,'','','0000-00-00','','',0,0,0,0,2803,'','165','','','','N','darshan','darshan','2025-11-21 18:58:18','','0000-00-00 00:00:00'),(1725,0,0,'I',2526,1725,'I001725','2025-11-21',3889,'','','0000-00-00','','',0,0,0,0,2783,'','165','','','','N','drarchit','drarchit','2025-11-21 19:03:04','','0000-00-00 00:00:00'),(1726,0,0,'I',2526,1726,'I001726','2025-11-21',3940,'','','0000-00-00','','',0,0,0,0,2199,'','165','','','','N','darshan','darshan','2025-11-21 19:04:17','','0000-00-00 00:00:00'),(1727,0,0,'I',2526,1727,'I001727','2025-11-21',3947,'','','0000-00-00','','',0,0,0,0,2268,'','165','','','','N','darshan','darshan','2025-11-21 19:08:01','','0000-00-00 00:00:00'),(1728,0,0,'I',2526,1728,'I001728','2025-11-21',3938,'','','0000-00-00','','',0,0,0,0,2513,'','165','','','','N','drarchit','drarchit','2025-11-21 19:15:54','','0000-00-00 00:00:00'),(1729,0,0,'I',2526,1729,'I001729','2025-11-21',3929,'','','0000-00-00','','',0,0,0,0,2810,'','165','','','','N','darshan','darshan','2025-11-21 19:21:38','','0000-00-00 00:00:00'),(1730,0,0,'I',2526,1730,'I001730','2025-11-21',3936,'','','0000-00-00','','',0,0,0,0,2812,'','165','','','','N','darshan','darshan','2025-11-21 19:26:33','','0000-00-00 00:00:00'),(1731,0,0,'I',2526,1731,'I001731','2025-11-21',3943,'','','0000-00-00','','',0,0,0,0,2816,'','165','','','','N','drarchit','drarchit','2025-11-21 19:34:41','','0000-00-00 00:00:00'),(1732,0,0,'I',2526,1732,'I001732','2025-11-21',3939,'','','0000-00-00','','',0,0,0,0,2814,'','165','','','','N','drarchit','drarchit','2025-11-21 19:39:46','','0000-00-00 00:00:00'),(1733,0,0,'I',2526,1733,'I001733','2025-11-21',3944,'','','0000-00-00','','',0,0,0,0,1085,'','165','','','','N','drarchit','drarchit','2025-11-21 19:45:53','','0000-00-00 00:00:00'),(1734,0,0,'I',2526,1734,'I001734','2025-11-21',3949,'','','0000-00-00','','',0,0,0,0,2820,'','165','','','','N','darshan','darshan','2025-11-21 19:49:16','','0000-00-00 00:00:00'),(1735,0,0,'I',2526,1735,'I001735','2025-11-21',3922,'','','0000-00-00','','',0,0,0,0,1422,'','165','','','','N','drarchit','drarchit','2025-11-21 19:55:09','','0000-00-00 00:00:00'),(1736,0,0,'I',2526,1736,'I001736','2025-11-22',3953,'','','0000-00-00','','',0,0,0,0,2823,'','165','','','','N','darshan','darshan','2025-11-22 10:44:12','','0000-00-00 00:00:00'),(1737,0,0,'I',2526,1737,'I001737','2025-11-22',3955,'','','0000-00-00','','',0,0,0,0,706,'','165','','','','N','darshan','darshan','2025-11-22 10:46:39','','0000-00-00 00:00:00'),(1738,0,0,'I',2526,1738,'I001738','2025-11-22',3958,'','','0000-00-00','','',0,0,0,0,2826,'','165','','','','N','darshan','darshan','2025-11-22 10:51:03','','0000-00-00 00:00:00'),(1739,0,0,'I',2526,1739,'I001739','2025-11-22',3963,'','','0000-00-00','','',0,0,0,0,2828,'','165','','','','N','darshan','darshan','2025-11-22 11:01:03','','0000-00-00 00:00:00'),(1740,0,0,'I',2526,1740,'I001740','2025-11-22',3957,'','','0000-00-00','','',0,0,0,0,2825,'','165','','','','N','drarchit','drarchit','2025-11-22 11:11:10','','0000-00-00 00:00:00'),(1741,0,0,'I',2526,1741,'I001741','2025-11-22',3967,'','','0000-00-00','','',0,0,0,0,2832,'','165','','','','N','darshan','darshan','2025-11-22 11:17:18','','0000-00-00 00:00:00'),(1742,0,0,'I',2526,1742,'I001742','2025-11-22',3946,'','','0000-00-00','','',0,0,0,0,2818,'','165','','','','N','drarchit','drarchit','2025-11-22 11:25:07','','0000-00-00 00:00:00'),(1743,0,0,'I',2526,1743,'I001743','2025-11-22',3970,'','','0000-00-00','','',0,0,0,0,2835,'','165','','','','N','darshan','darshan','2025-11-22 11:36:47','','0000-00-00 00:00:00'),(1744,0,0,'I',2526,1744,'I001744','2025-11-22',3976,'','','0000-00-00','','',0,0,0,0,611,'','165','','','','N','darshan','darshan','2025-11-22 11:42:40','','0000-00-00 00:00:00'),(1745,0,0,'I',2526,1745,'I001745','2025-11-22',3971,'','','0000-00-00','','',0,0,0,0,2708,'','165','','','','N','drarchit','drarchit','2025-11-22 11:45:32','','0000-00-00 00:00:00'),(1746,0,0,'I',2526,1746,'I001746','2025-11-22',3941,'','','0000-00-00','','',0,0,0,0,2815,'','165','','','','N','drarchit','drarchit','2025-11-22 11:52:13','','0000-00-00 00:00:00'),(1747,0,0,'I',2526,1747,'I001747','2025-11-22',3975,'','','0000-00-00','','',0,0,0,0,2838,'','165','','','','N','drarchit','drarchit','2025-11-22 11:55:46','','0000-00-00 00:00:00'),(1748,0,0,'I',2526,1748,'I001748','2025-11-22',3983,'','','0000-00-00','','',0,0,0,0,2842,'','165','','','','N','darshan','darshan','2025-11-22 12:01:25','','0000-00-00 00:00:00'),(1749,0,0,'I',2526,1749,'I001749','2025-11-22',3965,'','','0000-00-00','','',0,0,0,0,2830,'','165','','','','N','darshan','darshan','2025-11-22 12:08:22','','0000-00-00 00:00:00'),(1750,0,0,'I',2526,1750,'I001750','2025-11-22',3969,'','','0000-00-00','','',0,0,0,0,2834,'','165','','','','N','darshan','darshan','2025-11-22 12:23:12','','0000-00-00 00:00:00'),(1751,0,0,'I',2526,1751,'I001751','2025-11-22',3989,'','','0000-00-00','','',0,0,0,0,2846,'','165','','','','N','darshan','darshan','2025-11-22 12:28:40','','0000-00-00 00:00:00'),(1752,0,0,'I',2526,1752,'I001752','2025-11-22',3974,'','','0000-00-00','','',0,0,0,0,2837,'','165','','','','N','drarchit','drarchit','2025-11-22 12:29:27','','0000-00-00 00:00:00'),(1753,0,0,'I',2526,1753,'I001753','2025-11-22',3990,'','','0000-00-00','','',0,0,0,0,2847,'','165','','','','N','darshan','darshan','2025-11-22 12:32:26','','0000-00-00 00:00:00'),(1754,0,0,'I',2526,1754,'I001754','2025-11-22',3991,'','','0000-00-00','','',0,0,0,0,2848,'','165','','','','N','darshan','darshan','2025-11-22 12:37:54','','0000-00-00 00:00:00'),(1755,0,0,'I',2526,1755,'I001755','2025-11-22',3992,'','','0000-00-00','','',0,0,0,0,2849,'','165','','','','N','darshan','darshan','2025-11-22 12:42:58','','0000-00-00 00:00:00'),(1756,0,0,'I',2526,1756,'I001756','2025-11-22',3984,'','','0000-00-00','','',0,0,0,0,2843,'','165','','','','N','darshan','darshan','2025-11-22 12:48:38','','0000-00-00 00:00:00'),(1757,0,0,'I',2526,1757,'I001757','2025-11-22',3960,'','','0000-00-00','','',0,0,0,0,2827,'','165','','','','N','drarchit','drarchit','2025-11-22 12:49:31','','0000-00-00 00:00:00'),(1758,0,0,'I',2526,1758,'I001758','2025-11-22',3988,'','','0000-00-00','','',0,0,0,0,2845,'','165','','','','N','drarchit','drarchit','2025-11-22 12:53:21','','0000-00-00 00:00:00'),(1759,0,0,'I',2526,1759,'I001759','2025-11-22',3995,'','','0000-00-00','','',0,0,0,0,2852,'','165','','','','N','drarchit','drarchit','2025-11-22 12:58:58','','0000-00-00 00:00:00'),(1760,0,0,'I',2526,1760,'I001760','2025-11-22',3987,'','','0000-00-00','','',0,0,0,0,2844,'','165','','','','N','darshan','darshan','2025-11-22 13:05:16','','0000-00-00 00:00:00'),(1761,0,0,'I',2526,1761,'I001761','2025-11-22',3978,'','','0000-00-00','','',0,0,0,0,2840,'','165','','','','N','drarchit','drarchit','2025-11-22 13:17:18','','0000-00-00 00:00:00'),(1762,0,0,'I',2526,1762,'I001762','2025-11-22',4000,'','','0000-00-00','','',0,0,0,0,2856,'','165','','','','N','darshan','darshan','2025-11-22 13:23:20','','0000-00-00 00:00:00'),(1763,0,0,'I',2526,1763,'I001763','2025-11-22',4001,'','','0000-00-00','','',0,0,0,0,1346,'','165','','','','N','darshan','darshan','2025-11-22 13:25:32','','0000-00-00 00:00:00'),(1764,0,0,'I',2526,1764,'I001764','2025-11-22',3996,'','','0000-00-00','','',0,0,0,0,2853,'','165','','','','N','darshan','darshan','2025-11-22 13:27:09','','0000-00-00 00:00:00'),(1765,0,0,'I',2526,1765,'I001765','2025-11-22',3998,'','','0000-00-00','','',0,0,0,0,2854,'','165','','','','N','drarchit','drarchit','2025-11-22 13:27:44','','0000-00-00 00:00:00'),(1766,0,0,'I',2526,1766,'I001766','2025-11-22',3966,'','','0000-00-00','','',0,0,0,0,2831,'','165','','','','N','drarchit','drarchit','2025-11-22 13:37:45','','0000-00-00 00:00:00'),(1767,0,0,'I',2526,1767,'I001767','2025-11-22',3999,'','','0000-00-00','','',0,0,0,0,2855,'','165','','','','N','drarchit','drarchit','2025-11-22 13:40:42','','0000-00-00 00:00:00'),(1768,0,0,'I',2526,1768,'I001768','2025-11-24',4030,'','','0000-00-00','','',0,0,0,0,2407,'','165','','','','N','darshan','darshan','2025-11-24 10:43:24','','0000-00-00 00:00:00'),(1769,0,0,'I',2526,1769,'I001769','2025-11-24',4032,'','','0000-00-00','','',0,0,0,0,2871,'','165','','','','N','darshan','darshan','2025-11-24 10:46:44','','0000-00-00 00:00:00'),(1770,0,0,'I',2526,1770,'I001770','2025-11-24',4040,'','','0000-00-00','','',0,0,0,0,2390,'','165','','','','N','darshan','darshan','2025-11-24 11:01:18','','0000-00-00 00:00:00'),(1771,0,0,'I',2526,1771,'I001771','2025-11-24',4031,'','','0000-00-00','','',0,0,0,0,1500,'','165','','','','N','darshan','darshan','2025-11-24 11:05:54','','0000-00-00 00:00:00'),(1772,0,0,'I',2526,1772,'I001772','2025-11-24',4046,'','','0000-00-00','','',0,0,0,0,2880,'','165','','','','N','darshan','darshan','2025-11-24 11:11:25','','0000-00-00 00:00:00'),(1773,0,0,'I',2526,1773,'I001773','2025-11-24',4033,'','','0000-00-00','','',0,0,0,0,1850,'','165','','','','N','darshan','darshan','2025-11-24 11:16:22','','0000-00-00 00:00:00'),(1774,0,0,'I',2526,1774,'I001774','2025-11-24',4051,'','','0000-00-00','','',0,0,0,0,2399,'','165','','','','N','darshan','darshan','2025-11-24 11:22:45','','0000-00-00 00:00:00'),(1775,0,0,'I',2526,1775,'I001775','2025-11-24',4053,'','','0000-00-00','','',0,0,0,0,2489,'','165','','','','N','darshan','darshan','2025-11-24 11:44:20','','0000-00-00 00:00:00'),(1776,0,0,'I',2526,1776,'I001776','2025-11-24',4026,'','','0000-00-00','','',0,0,0,0,2867,'','165','','','','N','drarchit','drarchit','2025-11-24 11:50:09','','0000-00-00 00:00:00'),(1777,0,0,'I',2526,1777,'I001777','2025-11-24',4025,'','','0000-00-00','','',0,0,0,0,2866,'','165','','','','N','drarchit','drarchit','2025-11-24 11:54:01','','0000-00-00 00:00:00'),(1778,0,0,'I',2526,1778,'I001778','2025-11-24',4059,'','','0000-00-00','','',0,0,0,0,1334,'','165','','','','N','drarchit','drarchit','2025-11-24 11:57:25','','0000-00-00 00:00:00'),(1779,0,0,'I',2526,1779,'I001779','2025-11-24',4058,'','','0000-00-00','','',0,0,0,0,2886,'','165','','','','N','drarchit','drarchit','2025-11-24 12:00:00','','0000-00-00 00:00:00'),(1780,0,0,'I',2526,1780,'I001780','2025-11-24',4041,'','','0000-00-00','','',0,0,0,0,2876,'','165','','','','N','darshan','darshan','2025-11-24 12:00:16','','0000-00-00 00:00:00'),(1781,0,0,'I',2526,1781,'I001781','2025-11-24',4021,'','','0000-00-00','','',0,0,0,0,2863,'','165','','','','N','drarchit','drarchit','2025-11-24 12:03:02','','0000-00-00 00:00:00'),(1782,0,0,'I',2526,1782,'I001782','2025-11-24',4049,'','','0000-00-00','','',0,0,0,0,2881,'','165','','','','N','drarchit','drarchit','2025-11-24 12:12:13','','0000-00-00 00:00:00'),(1783,0,0,'I',2526,1783,'I001783','2025-11-24',4038,'','','0000-00-00','','',0,0,0,0,151,'','165','','','','N','darshan','darshan','2025-11-24 12:18:01','','0000-00-00 00:00:00'),(1784,0,0,'I',2526,1784,'I001784','2025-11-24',4068,'','','0000-00-00','','',0,0,0,0,2892,'','165','','','','N','darshan','darshan','2025-11-24 12:21:43','','0000-00-00 00:00:00'),(1785,0,0,'I',2526,1785,'I001785','2025-11-24',4066,'','','0000-00-00','','',0,0,0,0,2891,'','165','','','','N','drarchit','drarchit','2025-11-24 12:23:33','','0000-00-00 00:00:00'),(1786,0,0,'I',2526,1786,'I001786','2025-11-24',4081,'','','0000-00-00','','',0,0,0,0,1188,'','165','','','','N','darshan','darshan','2025-11-24 12:25:17','','0000-00-00 00:00:00'),(1787,0,0,'I',2526,1787,'I001787','2025-11-24',4079,'','','0000-00-00','','',0,0,0,0,21,'','165','','','','N','drarchit','drarchit','2025-11-24 12:26:41','','0000-00-00 00:00:00'),(1788,0,0,'I',2526,1788,'I001788','2025-11-24',4069,'','','0000-00-00','','',0,0,0,0,2893,'','165','','','','N','drarchit','drarchit','2025-11-24 12:32:05','','0000-00-00 00:00:00'),(1789,0,0,'I',2526,1789,'I001789','2025-11-24',4075,'','','0000-00-00','','',0,0,0,0,2898,'','165','','','','N','drarchit','drarchit','2025-11-24 12:39:12','','0000-00-00 00:00:00'),(1790,0,0,'I',2526,1790,'I001790','2025-11-24',4045,'','','0000-00-00','','',0,0,0,0,2693,'','165','','','','N','darshan','darshan','2025-11-24 12:43:11','','0000-00-00 00:00:00'),(1791,0,0,'I',2526,1791,'I001791','2025-11-24',4048,'','','0000-00-00','','',0,0,0,0,2669,'','165','','','','N','darshan','darshan','2025-11-24 12:46:10','','0000-00-00 00:00:00'),(1792,0,0,'I',2526,1792,'I001792','2025-11-24',4073,'','','0000-00-00','','',0,0,0,0,2896,'','165','','','','N','drarchit','drarchit','2025-11-24 12:53:18','','0000-00-00 00:00:00'),(1793,0,0,'I',2526,1793,'I001793','2025-11-24',4052,'','','0000-00-00','','',0,0,0,0,2882,'','165','','','','N','darshan','darshan','2025-11-24 13:00:35','','0000-00-00 00:00:00'),(1794,0,0,'I',2526,1794,'I001794','2025-11-24',4088,'','','0000-00-00','','',0,0,0,0,2906,'','165','','','','N','darshan','darshan','2025-11-24 13:08:02','','0000-00-00 00:00:00'),(1795,0,0,'I',2526,1795,'I001795','2025-11-24',4080,'','','0000-00-00','','',0,0,0,0,2900,'','165','','','','N','darshan','darshan','2025-11-24 13:11:04','','0000-00-00 00:00:00'),(1796,0,0,'I',2526,1796,'I001796','2025-11-24',4042,'','','0000-00-00','','',0,0,0,0,2877,'','165','','','','N','darshan','darshan','2025-11-24 13:20:16','','0000-00-00 00:00:00'),(1797,0,0,'I',2526,1797,'I001797','2025-11-24',4094,'','','0000-00-00','','',0,0,0,0,2909,'','165','','','','N','drarchit','drarchit','2025-11-24 13:31:54','','0000-00-00 00:00:00'),(1798,0,0,'I',2526,1798,'I001798','2025-11-24',4035,'','','0000-00-00','','',0,0,0,0,2873,'','165','','','','N','drarchit','drarchit','2025-11-24 13:38:45','','0000-00-00 00:00:00'),(1799,0,0,'I',2526,1799,'I001799','2025-11-24',4071,'','','0000-00-00','','',0,0,0,0,1194,'','165','','','','N','darshan','darshan','2025-11-24 13:42:04','','0000-00-00 00:00:00'),(1800,0,0,'I',2526,1800,'I001800','2025-11-24',4083,'','','0000-00-00','','',0,0,0,0,2902,'','165','','','','N','drarchit','drarchit','2025-11-24 13:44:47','','0000-00-00 00:00:00'),(1801,0,0,'I',2526,1801,'I001801','2025-11-24',4043,'','','0000-00-00','','',0,0,0,0,2878,'','165','','','','N','darshan','darshan','2025-11-24 13:52:27','','0000-00-00 00:00:00'),(1802,0,0,'I',2526,1802,'I001802','2025-11-24',4082,'','','0000-00-00','','',0,0,0,0,2901,'','165','','','','N','darshan','darshan','2025-11-24 14:01:58','','0000-00-00 00:00:00'),(1803,0,0,'I',2526,1803,'I001803','2025-11-24',4085,'','','0000-00-00','','',0,0,0,0,2904,'','165','','','','N','darshan','darshan','2025-11-24 14:06:24','','0000-00-00 00:00:00'),(1804,0,0,'I',2526,1804,'I001804','2025-11-24',4060,'','','0000-00-00','','',0,0,0,0,2887,'','165','','','','N','darshan','darshan','2025-11-24 14:10:04','','0000-00-00 00:00:00'),(1805,0,0,'I',2526,1805,'I001805','2025-11-24',4093,'','','0000-00-00','','',0,0,0,0,2908,'','165','','','','N','darshan','darshan','2025-11-24 14:26:17','','0000-00-00 00:00:00'),(1806,0,0,'I',2526,1806,'I001806','2025-11-24',4099,'','','0000-00-00','','',0,0,0,0,937,'','165','','','','N','darshan','darshan','2025-11-24 14:34:20','','0000-00-00 00:00:00'),(1807,0,0,'I',2526,1807,'I001807','2025-11-24',4072,'','','0000-00-00','','',0,0,0,0,2895,'','165','','','','N','darshan','darshan','2025-11-24 14:38:36','','0000-00-00 00:00:00'),(1808,0,0,'I',2526,1808,'I001808','2025-11-24',4091,'','','0000-00-00','','',0,0,0,0,842,'','165','','','','N','darshan','darshan','2025-11-24 14:44:54','','0000-00-00 00:00:00'),(1809,0,0,'I',2526,1809,'I001809','2025-11-24',4104,'','','0000-00-00','','',0,0,0,0,1169,'','165','','','','N','darshan','darshan','2025-11-24 17:02:35','','0000-00-00 00:00:00'),(1810,0,0,'I',2526,1810,'I001810','2025-11-24',4105,'','','0000-00-00','','',0,0,0,0,1281,'','165','','','','N','darshan','darshan','2025-11-24 17:20:31','','0000-00-00 00:00:00'),(1811,0,0,'I',2526,1811,'I001811','2025-11-24',4108,'','','0000-00-00','','',0,0,0,0,2317,'','165','','','','N','darshan','darshan','2025-11-24 17:23:38','','0000-00-00 00:00:00'),(1812,0,0,'I',2526,1812,'I001812','2025-11-24',4086,'','','0000-00-00','','',0,0,0,0,2905,'','165','','','','N','darshan','darshan','2025-11-24 17:30:24','','0000-00-00 00:00:00'),(1813,0,0,'I',2526,1813,'I001813','2025-11-24',4115,'','','0000-00-00','','',0,0,0,0,798,'','165','','','','N','darshan','darshan','2025-11-24 17:59:21','','0000-00-00 00:00:00'),(1814,0,0,'I',2526,1814,'I001814','2025-11-24',4087,'','','0000-00-00','','',0,0,0,0,1363,'','165','','','','N','drarchit','drarchit','2025-11-24 18:06:40','','0000-00-00 00:00:00'),(1815,0,0,'I',2526,1815,'I001815','2025-11-24',4116,'','','0000-00-00','','',0,0,0,0,1026,'','165','','','','N','darshan','darshan','2025-11-24 18:08:00','','0000-00-00 00:00:00'),(1816,0,0,'I',2526,1816,'I001816','2025-11-24',4063,'','','0000-00-00','','',0,0,0,0,2889,'','165','','','','N','drarchit','drarchit','2025-11-24 18:09:35','','0000-00-00 00:00:00'),(1817,0,0,'I',2526,1817,'I001817','2025-11-24',4117,'','','0000-00-00','','',0,0,0,0,2920,'','165','','','','N','drarchit','drarchit','2025-11-24 18:12:55','','0000-00-00 00:00:00'),(1818,0,0,'I',2526,1818,'I001818','2025-11-24',4122,'','','0000-00-00','','',0,0,0,0,2922,'','165','','','','N','darshan','darshan','2025-11-24 18:25:21','','0000-00-00 00:00:00'),(1819,0,0,'I',2526,1819,'I001819','2025-11-24',4107,'','','0000-00-00','','',0,0,0,0,2917,'','165','','','','N','darshan','darshan','2025-11-24 18:30:31','','0000-00-00 00:00:00'),(1820,0,0,'I',2526,1820,'I001820','2025-11-24',4121,'','','0000-00-00','','',0,0,0,0,2444,'','165','','','','N','drarchit','drarchit','2025-11-24 18:32:49','','0000-00-00 00:00:00'),(1821,0,0,'I',2526,1821,'I001821','2025-11-24',4129,'','','0000-00-00','','',0,0,0,0,2241,'','165','','','','N','drarchit','drarchit','2025-11-24 18:41:32','','0000-00-00 00:00:00'),(1822,0,0,'I',2526,1822,'I001822','2025-11-24',4127,'','','0000-00-00','','',0,0,0,0,2925,'','165','','','','N','darshan','darshan','2025-11-24 18:44:47','','0000-00-00 00:00:00'),(1823,0,0,'I',2526,1823,'I001823','2025-11-24',4132,'','','0000-00-00','','',0,0,0,0,2927,'','165','','','','N','drarchit','drarchit','2025-11-24 18:55:26','','0000-00-00 00:00:00'),(1824,0,0,'I',2526,1824,'I001824','2025-11-24',4109,'','','0000-00-00','','',0,0,0,0,2918,'','165','','','','N','darshan','darshan','2025-11-24 18:55:46','','0000-00-00 00:00:00'),(1825,0,0,'I',2526,1825,'I001825','2025-11-24',4139,'','','0000-00-00','','',0,0,0,0,2340,'','165','','','','N','darshan','darshan','2025-11-24 19:07:16','','0000-00-00 00:00:00'),(1826,0,0,'I',2526,1826,'I001826','2025-11-24',4136,'','','0000-00-00','','',0,0,0,0,2929,'','165','','','','N','drarchit','drarchit','2025-11-24 19:15:32','','0000-00-00 00:00:00'),(1827,0,0,'I',2526,1827,'I001827','2025-11-24',4141,'','','0000-00-00','','',0,0,0,0,2931,'','165','','','','N','darshan','darshan','2025-11-24 19:18:27','','0000-00-00 00:00:00'),(1828,0,0,'I',2526,1828,'I001828','2025-11-24',4142,'','','0000-00-00','','',0,0,0,0,2932,'','165','','','','N','darshan','darshan','2025-11-24 19:36:27','','0000-00-00 00:00:00'),(1829,0,0,'I',2526,1829,'I001829','2025-11-24',4147,'','','0000-00-00','','',0,0,0,0,2935,'','165','','','','N','drarchit','drarchit','2025-11-24 19:42:02','','0000-00-00 00:00:00'),(1830,0,0,'I',2526,1830,'I001830','2025-11-24',4151,'','','0000-00-00','','',0,0,0,0,2938,'','165','','','','N','drarchit','drarchit','2025-11-24 19:45:19','','0000-00-00 00:00:00'),(1831,0,0,'I',2526,1831,'I001831','2025-11-25',4160,'','','0000-00-00','','',0,0,0,0,2159,'','194','','','','N','darshan','darshan','2025-11-25 10:43:59','','0000-00-00 00:00:00'),(1832,0,0,'I',2526,1832,'I001832','2025-11-25',4157,'','','0000-00-00','','',0,0,0,0,2942,'','194','','','','N','darshan','darshan','2025-11-25 10:50:41','','0000-00-00 00:00:00'),(1833,0,0,'I',2526,1833,'I001833','2025-11-25',4162,'','','0000-00-00','','',0,0,0,0,1239,'','194','','','','N','darshan','darshan','2025-11-25 11:01:47','','0000-00-00 00:00:00'),(1834,0,0,'I',2526,1834,'I001834','2025-11-25',4165,'','','0000-00-00','','',0,0,0,0,2448,'','194','','','','N','darshan','darshan','2025-11-25 11:10:36','','0000-00-00 00:00:00'),(1835,0,0,'I',2526,1835,'I001835','2025-11-25',4173,'','','0000-00-00','','',0,0,0,0,2948,'','194','','','','N','drpratapsinh','drpratapsinh','2025-11-25 11:12:25','','0000-00-00 00:00:00'),(1836,0,0,'I',2526,1836,'I001836','2025-11-25',4168,'','','0000-00-00','','',0,0,0,0,1617,'','194','','','','N','darshan','darshan','2025-11-25 11:29:11','','0000-00-00 00:00:00'),(1837,0,0,'I',2526,1837,'I001837','2025-11-25',4174,'','','0000-00-00','','',0,0,0,0,2949,'','194','','','','N','darshan','darshan','2025-11-25 11:41:00','','0000-00-00 00:00:00'),(1838,0,0,'I',2526,1838,'I001838','2025-11-25',4169,'','','0000-00-00','','',0,0,0,0,1153,'','194','','','','N','darshan','darshan','2025-11-25 11:47:27','','0000-00-00 00:00:00'),(1839,0,0,'I',2526,1839,'I001839','2025-11-25',4190,'','','0000-00-00','','',0,0,0,0,1797,'','194','','','','N','darshan','darshan','2025-11-25 11:53:10','','0000-00-00 00:00:00'),(1840,0,0,'I',2526,1840,'I001840','2025-11-25',4180,'','','0000-00-00','','',0,0,0,0,2955,'','194','','','','N','darshan','darshan','2025-11-25 12:01:38','','0000-00-00 00:00:00'),(1841,0,0,'I',2526,1841,'I001841','2025-11-25',4181,'','','0000-00-00','','',0,0,0,0,2956,'','194','','','','N','drarchit','drarchit','2025-11-25 12:10:03','','0000-00-00 00:00:00'),(1842,0,0,'I',2526,1842,'I001842','2025-11-25',4189,'','','0000-00-00','','',0,0,0,0,2963,'','194','','','','N','drarchit','drarchit','2025-11-25 12:18:26','','0000-00-00 00:00:00'),(1843,0,0,'I',2526,1843,'I001843','2025-11-25',4183,'','','0000-00-00','','',0,0,0,0,2958,'','194','','','','N','darshan','darshan','2025-11-25 12:23:34','','0000-00-00 00:00:00'),(1844,0,0,'I',2526,1844,'I001844','2025-11-25',4103,'','','0000-00-00','','',0,0,0,0,2916,'','194','','','','N','drarchit','drarchit','2025-11-25 12:27:28','','0000-00-00 00:00:00'),(1845,0,0,'I',2526,1845,'I001845','2025-11-25',4191,'','','0000-00-00','','',0,0,0,0,2964,'','194','','','','N','darshan','darshan','2025-11-25 12:32:37','','0000-00-00 00:00:00'),(1846,0,0,'I',2526,1846,'I001846','2025-11-25',4193,'','','0000-00-00','','',0,0,0,0,2966,'','194','','','','N','drarchit','drarchit','2025-11-25 12:35:21','','0000-00-00 00:00:00'),(1847,0,0,'I',2526,1847,'I001847','2025-11-25',4188,'','','0000-00-00','','',0,0,0,0,2962,'','194','','','','N','drarchit','drarchit','2025-11-25 12:41:43','','0000-00-00 00:00:00'),(1848,0,0,'I',2526,1848,'I001848','2025-11-25',4198,'','','0000-00-00','','',0,0,0,0,2969,'','194','','','','N','darshan','darshan','2025-11-25 12:51:10','','0000-00-00 00:00:00'),(1849,0,0,'I',2526,1849,'I001849','2025-11-25',4194,'','','0000-00-00','','',0,0,0,0,2967,'','194','','','','N','drarchit','drarchit','2025-11-25 12:53:09','','0000-00-00 00:00:00'),(1850,0,0,'I',2526,1850,'I001850','2025-11-25',4199,'','','0000-00-00','','',0,0,0,0,2970,'','194','','','','N','darshan','darshan','2025-11-25 12:55:51','','0000-00-00 00:00:00'),(1851,0,0,'I',2526,1851,'I001851','2025-11-25',4170,'','','0000-00-00','','',0,0,0,0,2945,'','194','','','','N','darshan','darshan','2025-11-25 13:03:58','','0000-00-00 00:00:00'),(1852,0,0,'I',2526,1852,'I001852','2025-11-25',4200,'','','0000-00-00','','',0,0,0,0,855,'','194','','','','N','darshan','darshan','2025-11-25 13:08:19','','0000-00-00 00:00:00'),(1853,0,0,'I',2526,1853,'I001853','2025-11-25',4201,'','','0000-00-00','','',0,0,0,0,2160,'','194','','','','N','darshan','darshan','2025-11-25 13:13:19','','0000-00-00 00:00:00'),(1854,0,0,'I',2526,1854,'I001854','2025-11-25',4202,'','','0000-00-00','','',0,0,0,0,2971,'','194','','','','N','drarchit','drarchit','2025-11-25 13:13:34','','0000-00-00 00:00:00'),(1855,0,0,'I',2526,1855,'I001855','2025-11-25',4171,'','','0000-00-00','','',0,0,0,0,2946,'','194','','','','N','drarchit','drarchit','2025-11-25 13:17:27','','0000-00-00 00:00:00'),(1856,0,0,'I',2526,1856,'I001856','2025-11-25',4186,'','','0000-00-00','','',0,0,0,0,2960,'','194','','','','N','darshan','darshan','2025-11-25 13:22:49','','0000-00-00 00:00:00'),(1857,0,0,'I',2526,1857,'I001857','2025-11-25',4177,'','','0000-00-00','','',0,0,0,0,2952,'','194','','','','N','drarchit','drarchit','2025-11-25 13:40:48','','0000-00-00 00:00:00'),(1858,0,0,'I',2526,1858,'I001858','2025-11-25',4192,'','','0000-00-00','','',0,0,0,0,2965,'','194','','','','N','darshan','darshan','2025-11-25 13:41:27','','0000-00-00 00:00:00'),(1859,0,0,'I',2526,1859,'I001859','2025-11-25',4176,'','','0000-00-00','','',0,0,0,0,2951,'','194','','','','N','drarchit','drarchit','2025-11-25 13:42:46','','0000-00-00 00:00:00'),(1860,0,0,'I',2526,1860,'I001860','2025-11-25',4206,'','','0000-00-00','','',0,0,0,0,1815,'','194','','','','N','darshan','darshan','2025-11-25 17:22:59','','0000-00-00 00:00:00'),(1861,0,0,'I',2526,1861,'I001861','2025-11-25',4208,'','','0000-00-00','','',0,0,0,0,2974,'','194','','','','N','darshan','darshan','2025-11-25 17:28:43','','0000-00-00 00:00:00'),(1862,0,0,'I',2526,1862,'I001862','2025-11-25',4219,'','','0000-00-00','','',0,0,0,0,2981,'','194','','','','N','darshan','darshan','2025-11-25 18:15:37','','0000-00-00 00:00:00'),(1863,0,0,'I',2526,1863,'I001863','2025-11-25',4220,'','','0000-00-00','','',0,0,0,0,2982,'','194','','','','N','darshan','darshan','2025-11-25 18:18:35','','0000-00-00 00:00:00'),(1864,0,0,'I',2526,1864,'I001864','2025-11-25',4223,'','','0000-00-00','','',0,0,0,0,884,'','194','','','','N','darshan','darshan','2025-11-25 18:21:50','','0000-00-00 00:00:00'),(1865,0,0,'I',2526,1865,'I001865','2025-11-25',4179,'','','0000-00-00','','',0,0,0,0,2954,'','194','','','','N','drarchit','drarchit','2025-11-25 18:25:29','','0000-00-00 00:00:00'),(1866,0,0,'I',2526,1866,'I001866','2025-11-25',4207,'','','0000-00-00','','',0,0,0,0,2973,'','194','','','','N','drarchit','drarchit','2025-11-25 18:26:51','','0000-00-00 00:00:00'),(1867,0,0,'I',2526,1867,'I001867','2025-11-25',4224,'','','0000-00-00','','',0,0,0,0,2985,'','194','','','','N','drarchit','drarchit','2025-11-25 18:30:02','','0000-00-00 00:00:00'),(1868,0,0,'I',2526,1868,'I001868','2025-11-25',4231,'','','0000-00-00','','',0,0,0,0,2990,'','194','','','','N','drarchit','drarchit','2025-11-25 18:39:13','','0000-00-00 00:00:00'),(1869,0,0,'I',2526,1869,'I001869','2025-11-25',4212,'','','0000-00-00','','',0,0,0,0,407,'','194','','','','N','drarchit','drarchit','2025-11-25 18:45:36','','0000-00-00 00:00:00'),(1870,0,0,'I',2526,1870,'I001870','2025-11-25',4232,'','','0000-00-00','','',0,0,0,0,2097,'','194','','','','N','darshan','darshan','2025-11-25 18:45:54','','0000-00-00 00:00:00'),(1871,0,0,'I',2526,1871,'I001871','2025-11-25',4101,'','','0000-00-00','','',0,0,0,0,2914,'','194','','','','N','darshan','darshan','2025-11-25 18:57:28','','0000-00-00 00:00:00'),(1872,0,0,'I',2526,1872,'I001872','2025-11-25',4216,'','','0000-00-00','','',0,0,0,0,2978,'','194','','','','N','drarchit','drarchit','2025-11-25 18:58:20','','0000-00-00 00:00:00'),(1873,0,0,'I',2526,1873,'I001873','2025-11-25',4221,'','','0000-00-00','','',0,0,0,0,2983,'','194','','','','N','drarchit','drarchit','2025-11-25 19:03:36','','0000-00-00 00:00:00'),(1874,0,0,'I',2526,1874,'I001874','2025-11-25',4214,'','','0000-00-00','','',0,0,0,0,2976,'','194','','','','N','darshan','darshan','2025-11-25 19:06:06','','0000-00-00 00:00:00'),(1875,0,0,'I',2526,1875,'I001875','2025-11-25',4234,'','','0000-00-00','','',0,0,0,0,1018,'','194','','','','N','drarchit','drarchit','2025-11-25 19:10:10','','0000-00-00 00:00:00'),(1876,0,0,'I',2526,1876,'I001876','2025-11-25',4218,'','','0000-00-00','','',0,0,0,0,2980,'','194','','','','N','darshan','darshan','2025-11-25 19:13:27','','0000-00-00 00:00:00'),(1877,0,0,'I',2526,1877,'I001877','2025-11-25',4236,'','','0000-00-00','','',0,0,0,0,2992,'','194','','','','N','drarchit','drarchit','2025-11-25 19:14:31','','0000-00-00 00:00:00'),(1878,0,0,'I',2526,1878,'I001878','2025-11-25',4222,'','','0000-00-00','','',0,0,0,0,2984,'','194','','','','N','drarchit','drarchit','2025-11-25 19:17:57','','0000-00-00 00:00:00'),(1879,0,0,'I',2526,1879,'I001879','2025-11-25',4241,'','','0000-00-00','','',0,0,0,0,2996,'','194','','','','N','darshan','darshan','2025-11-25 19:20:10','','0000-00-00 00:00:00'),(1880,0,0,'I',2526,1880,'I001880','2025-11-25',4226,'','','0000-00-00','','',0,0,0,0,2986,'','194','','','','N','darshan','darshan','2025-11-25 19:28:10','','0000-00-00 00:00:00'),(1881,0,0,'I',2526,1881,'I001881','2025-11-25',4243,'','','0000-00-00','','',0,0,0,0,662,'','194','','','','N','darshan','darshan','2025-11-25 19:34:09','','0000-00-00 00:00:00'),(1882,0,0,'I',2526,1882,'I001882','2025-11-25',4229,'','','0000-00-00','','',0,0,0,0,2989,'','194','','','','N','darshan','darshan','2025-11-25 19:36:39','','0000-00-00 00:00:00'),(1883,0,0,'I',2526,1883,'I001883','2025-11-25',4227,'','','0000-00-00','','',0,0,0,0,2987,'','194','','','','N','darshan','darshan','2025-11-25 19:47:10','','0000-00-00 00:00:00'),(1884,0,0,'I',2526,1884,'I001884','2025-11-25',4244,'','','0000-00-00','','',0,0,0,0,2998,'','194','','','','N','darshan','darshan','2025-11-25 20:09:23','','0000-00-00 00:00:00'),(1885,0,0,'I',2526,1885,'I001885','2025-11-25',4251,'','','0000-00-00','','',0,0,0,0,1422,'','194','','','','N','drarchit','drarchit','2025-11-25 20:55:27','','0000-00-00 00:00:00'),(1886,0,0,'I',2526,1886,'I001886','2025-11-26',4263,'','','0000-00-00','','',0,0,0,0,2785,'','194','','','','N','darshan','darshan','2025-11-26 10:49:21','','0000-00-00 00:00:00'),(1887,0,0,'I',2526,1887,'I001887','2025-11-26',4259,'','','0000-00-00','','',0,0,0,0,3003,'','194','','','','N','darshan','darshan','2025-11-26 10:57:46','','0000-00-00 00:00:00'),(1888,0,0,'I',2526,1888,'I001888','2025-11-26',4264,'','','0000-00-00','','',0,0,0,0,2526,'','194','','','','N','darshan','darshan','2025-11-26 11:04:31','','0000-00-00 00:00:00'),(1889,0,0,'I',2526,1889,'I001889','2025-11-26',4269,'','','0000-00-00','','',0,0,0,0,2070,'','194','','','','N','darshan','darshan','2025-11-26 11:13:45','','0000-00-00 00:00:00'),(1890,0,0,'I',2526,1890,'I001890','2025-11-26',4260,'','','0000-00-00','','',0,0,0,0,3004,'','194','','','','N','darshan','darshan','2025-11-26 11:19:45','','0000-00-00 00:00:00'),(1891,0,0,'I',2526,1891,'I001891','2025-11-26',4267,'','','0000-00-00','','',0,0,0,0,1171,'','194','','','','N','darshan','darshan','2025-11-26 11:24:31','','0000-00-00 00:00:00'),(1892,0,0,'I',2526,1892,'I001892','2025-11-26',4277,'','','0000-00-00','','',0,0,0,0,3012,'','194','','','','N','drarchit','drarchit','2025-11-26 11:27:07','','0000-00-00 00:00:00'),(1893,0,0,'I',2526,1893,'I001893','2025-11-26',4274,'','','0000-00-00','','',0,0,0,0,3009,'','194','','','','N','darshan','darshan','2025-11-26 11:29:11','','0000-00-00 00:00:00'),(1894,0,0,'I',2526,1894,'I001894','2025-11-26',4273,'','','0000-00-00','','',0,0,0,0,3008,'','194','','','','N','drarchit','drarchit','2025-11-26 11:31:43','','0000-00-00 00:00:00'),(1895,0,0,'I',2526,1895,'I001895','2025-11-26',4275,'','','0000-00-00','','',0,0,0,0,3010,'','194','','','','N','drarchit','drarchit','2025-11-26 11:34:20','','0000-00-00 00:00:00'),(1896,0,0,'I',2526,1896,'I001896','2025-11-26',4278,'','','0000-00-00','','',0,0,0,0,3013,'','194','','','','N','drpratapsinh','drpratapsinh','2025-11-26 11:37:12','','0000-00-00 00:00:00'),(1897,0,0,'I',2526,1897,'I001897','2025-11-26',4279,'','','0000-00-00','','',0,0,0,0,3014,'','194','','','','N','drarchit','drarchit','2025-11-26 11:39:24','','0000-00-00 00:00:00'),(1898,0,0,'I',2526,1898,'I001898','2025-11-26',4280,'','','0000-00-00','','',0,0,0,0,3015,'','194','','','','N','darshan','darshan','2025-11-26 11:47:01','','0000-00-00 00:00:00'),(1899,0,0,'I',2526,1899,'I001899','2025-11-26',4284,'','','0000-00-00','','',0,0,0,0,3017,'','194','','','','N','drarchit','drarchit','2025-11-26 11:57:34','','0000-00-00 00:00:00'),(1900,0,0,'I',2526,1900,'I001900','2025-11-26',4281,'','','0000-00-00','','',0,0,0,0,1240,'','194','','','','N','darshan','darshan','2025-11-26 12:03:56','','0000-00-00 00:00:00'),(1901,0,0,'I',2526,1901,'I001901','2025-11-26',4285,'','','0000-00-00','','',0,0,0,0,3018,'','194','','','','N','drarchit','drarchit','2025-11-26 12:17:02','','0000-00-00 00:00:00'),(1902,0,0,'I',2526,1902,'I001902','2025-11-26',4293,'','','0000-00-00','','',0,0,0,0,3024,'','194','','','','N','drarchit','drarchit','2025-11-26 12:33:26','','0000-00-00 00:00:00'),(1903,0,0,'I',2526,1903,'I001903','2025-11-26',4291,'','','0000-00-00','','',0,0,0,0,3023,'','194','','','','N','darshan','darshan','2025-11-26 12:36:08','','0000-00-00 00:00:00'),(1904,0,0,'I',2526,1904,'I001904','2025-11-26',4294,'','','0000-00-00','','',0,0,0,0,822,'','194','','','','N','darshan','darshan','2025-11-26 12:42:08','','0000-00-00 00:00:00'),(1905,0,0,'I',2526,1905,'I001905','2025-11-26',4296,'','','0000-00-00','','',0,0,0,0,508,'','194','','','','N','drarchit','drarchit','2025-11-26 12:44:01','','0000-00-00 00:00:00'),(1906,0,0,'I',2526,1906,'I001906','2025-11-26',4300,'','','0000-00-00','','',0,0,0,0,949,'','194','','','','N','darshan','darshan','2025-11-26 12:45:16','','0000-00-00 00:00:00'),(1907,0,0,'I',2526,1907,'I001907','2025-11-26',4301,'','','0000-00-00','','',0,0,0,0,1137,'','194','','','','N','darshan','darshan','2025-11-26 12:57:24','','0000-00-00 00:00:00'),(1908,0,0,'I',2526,1908,'I001908','2025-11-26',4276,'','','0000-00-00','','',0,0,0,0,3011,'','194','','','','N','darshan','darshan','2025-11-26 13:13:47','','0000-00-00 00:00:00'),(1909,0,0,'I',2526,1909,'I001909','2025-11-26',4217,'','','0000-00-00','','',0,0,0,0,2979,'','194','','','','N','drarchit','drarchit','2025-11-26 13:17:14','','0000-00-00 00:00:00'),(1910,0,0,'I',2526,1910,'I001910','2025-11-26',4290,'','','0000-00-00','','',0,0,0,0,3022,'','194','','','','N','darshan','darshan','2025-11-26 13:30:49','','0000-00-00 00:00:00'),(1911,0,0,'I',2526,1911,'I001911','2025-11-26',4302,'','','0000-00-00','','',0,0,0,0,3029,'','194','','','','N','darshan','darshan','2025-11-26 13:54:24','','0000-00-00 00:00:00'),(1912,0,0,'I',2526,1912,'I001912','2025-11-26',4303,'','','0000-00-00','','',0,0,0,0,1533,'','194','','','','N','drarchit','drarchit','2025-11-26 13:55:24','','0000-00-00 00:00:00'),(1913,0,0,'I',2526,1913,'I001913','2025-11-26',4307,'','','0000-00-00','','',0,0,0,0,1298,'','194','','','','N','darshan','darshan','2025-11-26 17:00:47','','0000-00-00 00:00:00'),(1914,0,0,'I',2526,1914,'I001914','2025-11-26',4309,'','','0000-00-00','','',0,0,0,0,345,'','194','','','','N','darshan','darshan','2025-11-26 17:06:26','','0000-00-00 00:00:00'),(1915,0,0,'I',2526,1915,'I001915','2025-11-26',4311,'','','0000-00-00','','',0,0,0,0,1973,'','194','','','','N','darshan','darshan','2025-11-26 17:15:26','','0000-00-00 00:00:00'),(1916,0,0,'I',2526,1916,'I001916','2025-11-26',4315,'','','0000-00-00','','',0,0,0,0,2735,'','194','','','','N','darshan','darshan','2025-11-26 17:46:27','','0000-00-00 00:00:00'),(1917,0,0,'I',2526,1917,'I001917','2025-11-26',4298,'','','0000-00-00','','',0,0,0,0,3027,'','194','','','','N','drarchit','drarchit','2025-11-26 18:03:23','','0000-00-00 00:00:00'),(1918,0,0,'I',2526,1918,'I001918','2025-11-26',4316,'','','0000-00-00','','',0,0,0,0,3035,'','194','','','','N','drarchit','drarchit','2025-11-26 18:07:25','','0000-00-00 00:00:00'),(1919,0,0,'I',2526,1919,'I001919','2025-11-26',4313,'','','0000-00-00','','',0,0,0,0,3033,'','194','','','','N','darshan','darshan','2025-11-26 18:09:25','','0000-00-00 00:00:00'),(1920,0,0,'I',2526,1920,'I001920','2025-11-26',4318,'','','0000-00-00','','',0,0,0,0,3037,'','194','','','','N','drarchit','drarchit','2025-11-26 18:10:52','','0000-00-00 00:00:00'),(1921,0,0,'I',2526,1921,'I001921','2025-11-26',4320,'','','0000-00-00','','',0,0,0,0,3039,'','194','','','','N','darshan','darshan','2025-11-26 18:15:20','','0000-00-00 00:00:00'),(1922,0,0,'I',2526,1922,'I001922','2025-11-26',4323,'','','0000-00-00','','',0,0,0,0,3041,'','194','','','','N','drarchit','drarchit','2025-11-26 18:18:28','','0000-00-00 00:00:00'),(1923,0,0,'I',2526,1923,'I001923','2025-11-26',4321,'','','0000-00-00','','',0,0,0,0,2393,'','194','','','','N','drarchit','drarchit','2025-11-26 18:27:47','','0000-00-00 00:00:00'),(1924,0,0,'I',2526,1924,'I001924','2025-11-26',4322,'','','0000-00-00','','',0,0,0,0,3040,'','194','','','','N','darshan','darshan','2025-11-26 18:31:14','','0000-00-00 00:00:00'),(1925,0,0,'I',2526,1925,'I001925','2025-11-26',4319,'','','0000-00-00','','',0,0,0,0,3038,'','194','','','','N','drarchit','drarchit','2025-11-26 18:36:27','','0000-00-00 00:00:00'),(1926,0,0,'I',2526,1926,'I001926','2025-11-26',4324,'','','0000-00-00','','',0,0,0,0,3042,'','194','','','','N','darshan','darshan','2025-11-26 18:40:45','','0000-00-00 00:00:00'),(1927,0,0,'I',2526,1927,'I001927','2025-11-26',4299,'','','0000-00-00','','',0,0,0,0,3028,'','194','','','','N','drarchit','drarchit','2025-11-26 18:44:17','','0000-00-00 00:00:00'),(1928,0,0,'I',2526,1928,'I001928','2025-11-26',4326,'','','0000-00-00','','',0,0,0,0,2540,'','194','','','','N','darshan','darshan','2025-11-26 18:47:41','','0000-00-00 00:00:00'),(1929,0,0,'I',2526,1929,'I001929','2025-11-26',4325,'','','0000-00-00','','',0,0,0,0,3043,'','194','','','','N','drarchit','drarchit','2025-11-26 18:50:36','','0000-00-00 00:00:00'),(1930,0,0,'I',2526,1930,'I001930','2025-11-26',4287,'','','0000-00-00','','',0,0,0,0,3019,'','194','','','','N','drarchit','drarchit','2025-11-26 18:57:14','','0000-00-00 00:00:00'),(1931,0,0,'I',2526,1931,'I001931','2025-11-26',4288,'','','0000-00-00','','',0,0,0,0,3020,'','194','','','','N','drarchit','drarchit','2025-11-26 19:03:06','','0000-00-00 00:00:00'),(1932,0,0,'I',2526,1932,'I001932','2025-11-26',4304,'','','0000-00-00','','',0,0,0,0,3030,'','194','','','','N','drarchit','drarchit','2025-11-26 19:09:42','','0000-00-00 00:00:00'),(1933,0,0,'I',2526,1933,'I001933','2025-11-26',4331,'','','0000-00-00','','',0,0,0,0,3046,'','194','','','','N','drarchit','drarchit','2025-11-26 19:15:46','','0000-00-00 00:00:00'),(1934,0,0,'I',2526,1934,'I001934','2025-11-26',4335,'','','0000-00-00','','',0,0,0,0,3049,'','194','','','','N','darshan','darshan','2025-11-26 19:15:53','','0000-00-00 00:00:00'),(1935,0,0,'I',2526,1935,'I001935','2025-11-26',4329,'','','0000-00-00','','',0,0,0,0,3045,'','194','','','','N','drarchit','drarchit','2025-11-26 19:23:22','','0000-00-00 00:00:00'),(1936,0,0,'I',2526,1936,'I001936','2025-11-26',4334,'','','0000-00-00','','',0,0,0,0,3048,'','194','','','','N','drarchit','drarchit','2025-11-26 19:29:24','','0000-00-00 00:00:00'),(1937,0,0,'I',2526,1937,'I001937','2025-11-26',4338,'','','0000-00-00','','',0,0,0,0,3051,'','194','','','','N','drarchit','drarchit','2025-11-26 19:36:50','','0000-00-00 00:00:00'),(1938,0,0,'I',2526,1938,'I001938','2025-11-26',4345,'','','0000-00-00','','',0,0,0,0,3056,'','194','','','','N','drarchit','drarchit','2025-11-26 20:02:46','','0000-00-00 00:00:00'),(1939,0,0,'I',2526,1939,'I001939','2025-11-26',4348,'','','0000-00-00','','',0,0,0,0,3059,'','194','','','','N','drarchit','drarchit','2025-11-26 20:19:00','','0000-00-00 00:00:00'),(1940,0,0,'I',2526,1940,'I001940','2025-11-27',4362,'','','0000-00-00','','',0,0,0,0,2563,'','194','','','','N','darshan','darshan','2025-11-27 10:48:06','','0000-00-00 00:00:00'),(1941,0,0,'I',2526,1941,'I001941','2025-11-27',4360,'','','0000-00-00','','',0,0,0,0,1854,'','194','','','','N','darshan','darshan','2025-11-27 10:52:24','','0000-00-00 00:00:00'),(1942,0,0,'I',2526,1942,'I001942','2025-11-27',4365,'','','0000-00-00','','',0,0,0,0,1471,'','194','','','','N','darshan','darshan','2025-11-27 10:56:35','','0000-00-00 00:00:00'),(1943,0,0,'I',2526,1943,'I001943','2025-11-27',4356,'','','0000-00-00','','',0,0,0,0,3064,'','194','','','','N','darshan','darshan','2025-11-27 11:04:45','','0000-00-00 00:00:00'),(1944,0,0,'I',2526,1944,'I001944','2025-11-27',4358,'','','0000-00-00','','',0,0,0,0,3065,'','194','','','','N','drarchit','drarchit','2025-11-27 11:32:13','','0000-00-00 00:00:00'),(1945,0,0,'I',2526,1945,'I001945','2025-11-27',4388,'','','0000-00-00','','',0,0,0,0,1378,'','194','','','','N','darshan','darshan','2025-11-27 11:41:45','','0000-00-00 00:00:00'),(1946,0,0,'I',2526,1946,'I001946','2025-11-27',4377,'','','0000-00-00','','',0,0,0,0,3078,'','194','','','','N','drarchit','drarchit','2025-11-27 11:43:34','','0000-00-00 00:00:00'),(1947,0,0,'I',2526,1947,'I001947','2025-11-27',4361,'','','0000-00-00','','',0,0,0,0,3066,'','194','','','','N','darshan','darshan','2025-11-27 11:46:55','','0000-00-00 00:00:00'),(1948,0,0,'I',2526,1948,'I001948','2025-11-27',4389,'','','0000-00-00','','',0,0,0,0,3085,'','194','','','','N','darshan','darshan','2025-11-27 11:50:30','','0000-00-00 00:00:00'),(1949,0,0,'I',2526,1949,'I001949','2025-11-27',4386,'','','0000-00-00','','',0,0,0,0,2566,'','194','','','','N','darshan','darshan','2025-11-27 11:53:09','','0000-00-00 00:00:00'),(1950,0,0,'I',2526,1950,'I001950','2025-11-27',4385,'','','0000-00-00','','',0,0,0,0,3083,'','194','','','','N','darshan','darshan','2025-11-27 11:58:22','','0000-00-00 00:00:00'),(1951,0,0,'I',2526,1951,'I001951','2025-11-27',4368,'','','0000-00-00','','',0,0,0,0,3070,'','194','','','','N','darshan','darshan','2025-11-27 12:13:06','','0000-00-00 00:00:00'),(1952,0,0,'I',2526,1952,'I001952','2025-11-27',4370,'','','0000-00-00','','',0,0,0,0,3071,'','194','','','','N','darshan','darshan','2025-11-27 12:18:23','','0000-00-00 00:00:00'),(1953,0,0,'I',2526,1953,'I001953','2025-11-27',4367,'','','0000-00-00','','',0,0,0,0,3069,'','194','','','','N','drarchit','drarchit','2025-11-27 12:19:09','','0000-00-00 00:00:00'),(1954,0,0,'I',2526,1954,'I001954','2025-11-27',4372,'','','0000-00-00','','',0,0,0,0,3073,'','194','','','','N','darshan','darshan','2025-11-27 12:24:02','','0000-00-00 00:00:00'),(1955,0,0,'I',2526,1955,'I001955','2025-11-27',4400,'','','0000-00-00','','',0,0,0,0,3092,'','194','','','','N','drarchit','drarchit','2025-11-27 12:25:00','','0000-00-00 00:00:00'),(1956,0,0,'I',2526,1956,'I001956','2025-11-27',4378,'','','0000-00-00','','',0,0,0,0,3079,'','194','','','','N','darshan','darshan','2025-11-27 12:30:03','','0000-00-00 00:00:00'),(1957,0,0,'I',2526,1957,'I001957','2025-11-27',4387,'','','0000-00-00','','',0,0,0,0,3084,'','194','','','','N','darshan','darshan','2025-11-27 12:44:50','','0000-00-00 00:00:00'),(1958,0,0,'I',2526,1958,'I001958','2025-11-27',4398,'','','0000-00-00','','',0,0,0,0,3090,'','194','','','','N','drjayant','drjayant','2025-11-27 12:55:20','','0000-00-00 00:00:00'),(1959,0,0,'I',2526,1959,'I001959','2025-11-27',4379,'','','0000-00-00','','',0,0,0,0,3080,'','194','','','','N','darshan','darshan','2025-11-27 12:57:21','','0000-00-00 00:00:00'),(1960,0,0,'I',2526,1960,'I001960','2025-11-27',4392,'','','0000-00-00','','',0,0,0,0,49,'','194','','','','N','darshan','darshan','2025-11-27 13:05:06','','0000-00-00 00:00:00'),(1961,0,0,'I',2526,1961,'I001961','2025-11-27',4402,'','','0000-00-00','','',0,0,0,0,632,'','194','','','','N','darshan','darshan','2025-11-27 13:10:35','','0000-00-00 00:00:00'),(1962,0,0,'I',2526,1962,'I001962','2025-11-27',4393,'','','0000-00-00','','',0,0,0,0,1653,'','194','','','','N','darshan','darshan','2025-11-27 13:19:02','','0000-00-00 00:00:00'),(1963,0,0,'I',2526,1963,'I001963','2025-11-27',4374,'','','0000-00-00','','',0,0,0,0,3075,'','194','','','','N','darshan','darshan','2025-11-27 13:24:23','','0000-00-00 00:00:00'),(1964,0,0,'I',2526,1964,'I001964','2025-11-27',4396,'','','0000-00-00','','',0,0,0,0,3088,'','194','','','','N','darshan','darshan','2025-11-27 13:32:33','','0000-00-00 00:00:00'),(1965,0,0,'I',2526,1965,'I001965','2025-11-27',4350,'','','0000-00-00','','',0,0,0,0,0,'','194','','','','N','mo','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(1966,0,0,'I',2526,1966,'I001966','2025-11-27',4397,'','','0000-00-00','','',0,0,0,0,3089,'','194','','','','N','darshan','darshan','2025-11-27 13:36:11','','0000-00-00 00:00:00'),(1967,0,0,'I',2526,1967,'I001967','2025-11-27',4364,'','','0000-00-00','','',0,0,0,0,3054,'','194','','','','N','darshan','darshan','2025-11-27 13:39:58','','0000-00-00 00:00:00'),(1968,0,0,'I',2526,1968,'I001968','2025-11-27',4373,'','','0000-00-00','','',0,0,0,0,3074,'','194','','','','N','darshan','darshan','2025-11-27 14:01:17','','0000-00-00 00:00:00'),(1969,0,0,'I',2526,1969,'I001969','2025-11-27',4404,'','','0000-00-00','','',0,0,0,0,3094,'','194','','','','N','darshan','darshan','2025-11-27 14:07:10','','0000-00-00 00:00:00'),(1970,0,0,'I',2526,1970,'I001970','2025-11-27',4399,'','','0000-00-00','','',0,0,0,0,3091,'','194','','','','N','darshan','darshan','2025-11-27 14:13:28','','0000-00-00 00:00:00'),(1971,0,0,'I',2526,1971,'I001971','2025-11-27',4405,'','','0000-00-00','','',0,0,0,0,3095,'','194','','','','N','darshan','darshan','2025-11-27 14:25:53','','0000-00-00 00:00:00'),(1972,0,0,'I',2526,1972,'I001972','2025-11-27',4411,'','','0000-00-00','','',0,0,0,0,2615,'','194','','','','N','darshan','darshan','2025-11-27 17:11:00','','0000-00-00 00:00:00'),(1973,0,0,'I',2526,1973,'I001973','2025-11-27',4412,'','','0000-00-00','','',0,0,0,0,1644,'','194','','','','N','darshan','darshan','2025-11-27 17:17:25','','0000-00-00 00:00:00'),(1974,0,0,'I',2526,1974,'I001974','2025-11-27',4414,'','','0000-00-00','','',0,0,0,0,1032,'','194','','','','N','darshan','darshan','2025-11-27 17:22:24','','0000-00-00 00:00:00'),(1975,0,0,'I',2526,1975,'I001975','2025-11-27',4419,'','','0000-00-00','','',0,0,0,0,2604,'','194','','','','N','darshan','darshan','2025-11-27 17:26:34','','0000-00-00 00:00:00'),(1976,0,0,'I',2526,1976,'I001976','2025-11-27',4420,'','','0000-00-00','','',0,0,0,0,3101,'','194','','','','N','darshan','darshan','2025-11-27 17:41:18','','0000-00-00 00:00:00'),(1977,0,0,'I',2526,1977,'I001977','2025-11-27',4421,'','','0000-00-00','','',0,0,0,0,3102,'','194','','','','N','darshan','darshan','2025-11-27 17:51:52','','0000-00-00 00:00:00'),(1978,0,0,'I',2526,1978,'I001978','2025-11-27',4428,'','','0000-00-00','','',0,0,0,0,751,'','194','','','','N','darshan','darshan','2025-11-27 18:07:22','','0000-00-00 00:00:00'),(1979,0,0,'I',2526,1979,'I001979','2025-11-27',4376,'','','0000-00-00','','',0,0,0,0,3077,'','194','','','','N','drarchit','drarchit','2025-11-27 18:13:43','','0000-00-00 00:00:00'),(1980,0,0,'I',2526,1980,'I001980','2025-11-27',4375,'','','0000-00-00','','',0,0,0,0,3076,'','194','','','','N','drarchit','drarchit','2025-11-27 18:19:27','','0000-00-00 00:00:00'),(1981,0,0,'I',2526,1981,'I001981','2025-11-27',4429,'','','0000-00-00','','',0,0,0,0,1540,'','194','','','','N','darshan','darshan','2025-11-27 18:20:50','','0000-00-00 00:00:00'),(1982,0,0,'I',2526,1982,'I001982','2025-11-27',4426,'','','0000-00-00','','',0,0,0,0,3105,'','194','','','','N','drjayant','drjayant','2025-11-27 18:22:47','','0000-00-00 00:00:00'),(1983,0,0,'I',2526,1983,'I001983','2025-11-27',4434,'','','0000-00-00','','',0,0,0,0,3108,'','194','','','','N','drarchit','drarchit','2025-11-27 18:29:05','','0000-00-00 00:00:00'),(1984,0,0,'I',2526,1984,'I001984','2025-11-27',4425,'','','0000-00-00','','',0,0,0,0,3104,'','194','','','','N','drjayant','drjayant','2025-11-27 18:29:07','','0000-00-00 00:00:00'),(1985,0,0,'I',2526,1985,'I001985','2025-11-27',4431,'','','0000-00-00','','',0,0,0,0,3106,'','194','','','','N','drarchit','drarchit','2025-11-27 18:35:24','','0000-00-00 00:00:00'),(1986,0,0,'I',2526,1986,'I001986','2025-11-27',4422,'','','0000-00-00','','',0,0,0,0,3103,'','194','','','','N','drarchit','drarchit','2025-11-27 18:42:42','','0000-00-00 00:00:00'),(1987,0,0,'I',2526,1987,'I001987','2025-11-27',4454,'','','0000-00-00','','',0,0,0,0,494,'','194','','','','N','drarchit','drarchit','2025-11-27 18:53:43','','0000-00-00 00:00:00'),(1988,0,0,'I',2526,1988,'I001988','2025-11-27',4455,'','','0000-00-00','','',0,0,0,0,3120,'','194','','','','N','drarchit','drarchit','2025-11-27 19:01:02','','0000-00-00 00:00:00'),(1989,0,0,'I',2526,1989,'I001989','2025-11-27',4459,'','','0000-00-00','','',0,0,0,0,3123,'','194','','','','N','drarchit','drarchit','2025-11-27 19:07:47','','0000-00-00 00:00:00'),(1990,0,0,'I',2526,1990,'I001990','2025-11-27',4457,'','','0000-00-00','','',0,0,0,0,3121,'','194','','','','N','darshan','darshan','2025-11-27 19:11:49','','0000-00-00 00:00:00'),(1991,0,0,'I',2526,1991,'I001991','2025-11-27',4339,'','','0000-00-00','','',0,0,0,0,3052,'','194','','','','N','drarchit','drarchit','2025-11-27 19:16:26','','0000-00-00 00:00:00'),(1992,0,0,'I',2526,1992,'I001992','2025-11-27',4461,'','','0000-00-00','','',0,0,0,0,565,'','194','','','','N','darshan','darshan','2025-11-27 19:20:04','','0000-00-00 00:00:00'),(1993,0,0,'I',2526,1993,'I001993','2025-11-27',4463,'','','0000-00-00','','',0,0,0,0,3125,'','194','','','','N','drarchit','drarchit','2025-11-27 19:25:51','','0000-00-00 00:00:00'),(1994,0,0,'I',2526,1994,'I001994','2025-11-27',4333,'','','0000-00-00','','',0,0,0,0,3047,'','194','','','','N','drarchit','drarchit','2025-11-27 19:29:01','','0000-00-00 00:00:00'),(1995,0,0,'I',2526,1995,'I001995','2025-11-27',4436,'','','0000-00-00','','',0,0,0,0,3109,'','194','','','','N','darshan','darshan','2025-11-27 19:30:03','','0000-00-00 00:00:00'),(1996,0,0,'I',2526,1996,'I001996','2025-11-27',4464,'','','0000-00-00','','',0,0,0,0,3119,'','194','','','','N','drjayant','drjayant','2025-11-27 19:47:31','','0000-00-00 00:00:00'),(1997,0,0,'I',2526,1997,'I001997','2025-11-27',4449,'','','0000-00-00','','',0,0,0,0,3117,'','194','','','','N','drarchit','drarchit','2025-11-27 20:23:12','','0000-00-00 00:00:00'),(1998,0,0,'I',2526,1998,'I001998','2025-11-27',4466,'','','0000-00-00','','',0,0,0,0,3126,'','194','','','','N','drarchit','drarchit','2025-11-27 20:27:31','','0000-00-00 00:00:00'),(1999,0,0,'I',2526,1999,'I001999','2025-11-28',4472,'','','0000-00-00','','',0,0,0,0,3129,'','194','','','','N','darshan','darshan','2025-11-28 10:51:45','','0000-00-00 00:00:00'),(2000,0,0,'I',2526,2000,'I002000','2025-11-28',4477,'','','0000-00-00','','',0,0,0,0,2012,'','194','','','','N','darshan','darshan','2025-11-28 10:54:57','','0000-00-00 00:00:00'),(2001,0,0,'I',2526,2001,'I002001','2025-11-28',4476,'','','0000-00-00','','',0,0,0,0,3132,'','194','','','','N','darshan','darshan','2025-11-28 11:09:01','','0000-00-00 00:00:00'),(2002,0,0,'I',2526,2002,'I002002','2025-11-28',4470,'','','0000-00-00','','',0,0,0,0,3128,'','194','','','','N','drarchit','drarchit','2025-11-28 11:15:13','','0000-00-00 00:00:00'),(2003,0,0,'I',2526,2003,'I002003','2025-11-28',4473,'','','0000-00-00','','',0,0,0,0,3130,'','194','','','','N','drjayant','drjayant','2025-11-28 11:31:45','','0000-00-00 00:00:00'),(2004,0,0,'I',2526,2004,'I002004','2025-11-28',4480,'','','0000-00-00','','',0,0,0,0,3135,'','194','','','','N','darshan','darshan','2025-11-28 11:38:51','','0000-00-00 00:00:00'),(2005,0,0,'I',2526,2005,'I002005','2025-11-28',4474,'','','0000-00-00','','',0,0,0,0,10,'','194','','','','N','darshan','darshan','2025-11-28 11:41:25','','0000-00-00 00:00:00'),(2006,0,0,'I',2526,2006,'I002006','2025-11-28',4496,'','','0000-00-00','','',0,0,0,0,594,'','194','','','','N','drarchit','drarchit','2025-11-28 11:42:19','','0000-00-00 00:00:00'),(2007,0,0,'I',2526,2007,'I002007','2025-11-28',4491,'','','0000-00-00','','',0,0,0,0,2559,'','194','','','','N','darshan','darshan','2025-11-28 11:48:08','','0000-00-00 00:00:00'),(2008,0,0,'I',2526,2008,'I002008','2025-11-28',4484,'','','0000-00-00','','',0,0,0,0,3137,'','194','','','','N','drarchit','drarchit','2025-11-28 11:50:06','','0000-00-00 00:00:00'),(2009,0,0,'I',2526,2009,'I002009','2025-11-28',4498,'','','0000-00-00','','',0,0,0,0,1258,'','194','','','','N','darshan','darshan','2025-11-28 11:51:18','','0000-00-00 00:00:00'),(2010,0,0,'I',2526,2010,'I002010','2025-11-28',4513,'','','0000-00-00','','',0,0,0,0,3151,'','194','','','','N','drjayant','drjayant','2025-11-28 11:55:27','','0000-00-00 00:00:00'),(2011,0,0,'I',2526,2011,'I002011','2025-11-28',4502,'','','0000-00-00','','',0,0,0,0,3144,'','194','','','','N','drarchit','drarchit','2025-11-28 11:57:17','','0000-00-00 00:00:00'),(2012,0,0,'I',2526,2012,'I002012','2025-11-28',4479,'','','0000-00-00','','',0,0,0,0,3134,'','194','','','','N','drarchit','drarchit','2025-11-28 12:00:06','','0000-00-00 00:00:00'),(2013,0,0,'I',2526,2013,'I002013','2025-11-28',4481,'','','0000-00-00','','',0,0,0,0,3136,'','194','','','','N','darshan','darshan','2025-11-28 12:00:31','','0000-00-00 00:00:00'),(2014,0,0,'I',2526,2014,'I002014','2025-11-28',4507,'','','0000-00-00','','',0,0,0,0,2110,'','194','','','','N','darshan','darshan','2025-11-28 12:03:20','','0000-00-00 00:00:00'),(2015,0,0,'I',2526,2015,'I002015','2025-11-28',4488,'','','0000-00-00','','',0,0,0,0,1468,'','194','','','','N','darshan','darshan','2025-11-28 12:15:57','','0000-00-00 00:00:00'),(2016,0,0,'I',2526,2016,'I002016','2025-11-28',4512,'','','0000-00-00','','',0,0,0,0,3150,'','194','','','','N','drarchit','drarchit','2025-11-28 12:18:54','','0000-00-00 00:00:00'),(2017,0,0,'I',2526,2017,'I002017','2025-11-28',4511,'','','0000-00-00','','',0,0,0,0,3149,'','194','','','','N','drarchit','drarchit','2025-11-28 12:21:27','','0000-00-00 00:00:00'),(2018,0,0,'I',2526,2018,'I002018','2025-11-28',4509,'','','0000-00-00','','',0,0,0,0,1367,'','194','','','','N','darshan','darshan','2025-11-28 12:22:26','','0000-00-00 00:00:00'),(2019,0,0,'I',2526,2019,'I002019','2025-11-28',4508,'','','0000-00-00','','',0,0,0,0,2636,'','194','','','','N','drarchit','drarchit','2025-11-28 12:41:03','','0000-00-00 00:00:00'),(2020,0,0,'I',2526,2020,'I002020','2025-11-28',4522,'','','0000-00-00','','',0,0,0,0,3159,'','194','','','','N','darshan','darshan','2025-11-28 13:02:40','','0000-00-00 00:00:00'),(2021,0,0,'I',2526,2021,'I002021','2025-11-28',4501,'','','0000-00-00','','',0,0,0,0,758,'','194','','','','N','darshan','darshan','2025-11-28 13:07:04','','0000-00-00 00:00:00'),(2022,0,0,'I',2526,2022,'I002022','2025-11-28',4406,'','','0000-00-00','','',0,0,0,0,3096,'','194','','','','N','darshan','darshan','2025-11-28 13:12:32','','0000-00-00 00:00:00'),(2023,0,0,'I',2526,2023,'I002023','2025-11-28',4494,'','','0000-00-00','','',0,0,0,0,3141,'','194','','','','N','darshan','darshan','2025-11-28 13:40:58','','0000-00-00 00:00:00'),(2024,0,0,'I',2526,2024,'I002024','2025-11-28',4495,'','','0000-00-00','','',0,0,0,0,3142,'','194','','','','N','darshan','darshan','2025-11-28 13:43:18','','0000-00-00 00:00:00'),(2025,0,0,'I',2526,2025,'I002025','2025-11-28',4475,'','','0000-00-00','','',0,0,0,0,3131,'','194','','','','N','darshan','darshan','2025-11-28 13:49:10','','0000-00-00 00:00:00'),(2026,0,0,'I',2526,2026,'I002026','2025-11-28',4532,'','','0000-00-00','','',0,0,0,0,1507,'','194','','','','N','darshan','darshan','2025-11-28 13:53:15','','0000-00-00 00:00:00'),(2027,0,0,'I',2526,2027,'I002027','2025-11-28',4506,'','','0000-00-00','','',0,0,0,0,3147,'','194','','','','N','darshan','darshan','2025-11-28 14:02:32','','0000-00-00 00:00:00'),(2028,0,0,'I',2526,2028,'I002028','2025-11-28',4520,'','','0000-00-00','','',0,0,0,0,3157,'','194','','','','N','darshan','darshan','2025-11-28 14:12:16','','0000-00-00 00:00:00'),(2029,0,0,'I',2526,2029,'I002029','2025-11-28',4531,'','','0000-00-00','','',0,0,0,0,3166,'','194','','','','N','darshan','darshan','2025-11-28 14:35:40','','0000-00-00 00:00:00'),(2030,0,0,'I',2526,2030,'I002030','2025-11-28',4517,'','','0000-00-00','','',0,0,0,0,3154,'','194','','','','N','darshan','darshan','2025-11-28 14:46:54','','0000-00-00 00:00:00'),(2031,0,0,'I',2526,2031,'I002031','2025-11-28',4536,'','','0000-00-00','','',0,0,0,0,3170,'','194','','','','N','darshan','darshan','2025-11-28 17:05:27','','0000-00-00 00:00:00'),(2032,0,0,'I',2526,2032,'I002032','2025-11-28',4539,'','','0000-00-00','','',0,0,0,0,1186,'','194','','','','N','darshan','darshan','2025-11-28 17:06:55','','0000-00-00 00:00:00'),(2033,0,0,'I',2526,2033,'I002033','2025-11-28',4538,'','','0000-00-00','','',0,0,0,0,3171,'','194','','','','N','darshan','darshan','2025-11-28 17:12:02','','0000-00-00 00:00:00'),(2034,0,0,'I',2526,2034,'I002034','2025-11-28',4535,'','','0000-00-00','','',0,0,0,0,3169,'','194','','','','N','darshan','darshan','2025-11-28 17:15:28','','0000-00-00 00:00:00'),(2035,0,0,'I',2526,2035,'I002035','2025-11-28',4525,'','','0000-00-00','','',0,0,0,0,3162,'','194','','','','N','darshan','darshan','2025-11-28 17:48:16','','0000-00-00 00:00:00'),(2036,0,0,'I',2526,2036,'I002036','2025-11-28',4552,'','','0000-00-00','','',0,0,0,0,1725,'','194','','','','N','darshan','darshan','2025-11-28 18:12:30','','0000-00-00 00:00:00'),(2037,0,0,'I',2526,2037,'I002037','2025-11-28',4551,'','','0000-00-00','','',0,0,0,0,3180,'','194','','','','N','darshan','darshan','2025-11-28 18:18:09','','0000-00-00 00:00:00'),(2038,0,0,'I',2526,2038,'I002038','2025-11-28',4516,'','','0000-00-00','','',0,0,0,0,3153,'','194','','','','N','drarchit','drarchit','2025-11-28 18:18:46','','0000-00-00 00:00:00'),(2039,0,0,'I',2526,2039,'I002039','2025-11-28',4557,'','','0000-00-00','','',0,0,0,0,2742,'','194','','','','N','drarchit','drarchit','2025-11-28 18:24:31','','0000-00-00 00:00:00'),(2040,0,0,'I',2526,2040,'I002040','2025-11-28',4566,'','','0000-00-00','','',0,0,0,0,187,'','194','','','','N','drarchit','drarchit','2025-11-28 18:27:41','','0000-00-00 00:00:00'),(2041,0,0,'I',2526,2041,'I002041','2025-11-28',4554,'','','0000-00-00','','',0,0,0,0,3182,'','194','','','','N','darshan','darshan','2025-11-28 18:29:00','','0000-00-00 00:00:00'),(2042,0,0,'I',2526,2042,'I002042','2025-11-28',4553,'','','0000-00-00','','',0,0,0,0,3181,'','194','','','','N','darshan','darshan','2025-11-28 18:33:47','','0000-00-00 00:00:00'),(2043,0,0,'I',2526,2043,'I002043','2025-11-28',4518,'','','0000-00-00','','',0,0,0,0,3155,'','194','','','','N','darshan','darshan','2025-11-28 18:43:19','','0000-00-00 00:00:00'),(2044,0,0,'I',2526,2044,'I002044','2025-11-28',4575,'','','0000-00-00','','',0,0,0,0,109,'','194','','','','N','drjayant','drjayant','2025-11-28 18:48:16','','0000-00-00 00:00:00'),(2045,0,0,'I',2526,2045,'I002045','2025-11-28',4574,'','','0000-00-00','','',0,0,0,0,3190,'','194','','','','N','drarchit','drarchit','2025-11-28 18:51:43','','0000-00-00 00:00:00'),(2046,0,0,'I',2526,2046,'I002046','2025-11-28',4576,'','','0000-00-00','','',0,0,0,0,3191,'','194','','','','N','drarchit','drarchit','2025-11-28 19:03:40','','0000-00-00 00:00:00'),(2047,0,0,'I',2526,2047,'I002047','2025-11-28',4584,'','','0000-00-00','','',0,0,0,0,3196,'','194','','','','N','drarchit','drarchit','2025-11-28 19:07:32','','0000-00-00 00:00:00'),(2048,0,0,'I',2526,2048,'I002048','2025-11-28',4571,'','','0000-00-00','','',0,0,0,0,1543,'','194','','','','N','darshan','darshan','2025-11-28 19:10:05','','0000-00-00 00:00:00'),(2049,0,0,'I',2526,2049,'I002049','2025-11-28',4580,'','','0000-00-00','','',0,0,0,0,2250,'','194','','','','N','darshan','darshan','2025-11-28 19:12:43','','0000-00-00 00:00:00'),(2050,0,0,'I',2526,2050,'I002050','2025-11-28',4585,'','','0000-00-00','','',0,0,0,0,3197,'','194','','','','N','drarchit','drarchit','2025-11-28 19:17:10','','0000-00-00 00:00:00'),(2051,0,0,'I',2526,2051,'I002051','2025-11-28',4563,'','','0000-00-00','','',0,0,0,0,3187,'','194','','','','N','darshan','darshan','2025-11-28 19:26:04','','0000-00-00 00:00:00'),(2052,0,0,'I',2526,2052,'I002052','2025-11-28',4589,'','','0000-00-00','','',0,0,0,0,1323,'','194','','','','N','drarchit','drarchit','2025-11-28 19:27:10','','0000-00-00 00:00:00'),(2053,0,0,'I',2526,2053,'I002053','2025-11-28',4543,'','','0000-00-00','','',0,0,0,0,3174,'','194','','','','N','darshan','darshan','2025-11-28 19:31:45','','0000-00-00 00:00:00'),(2054,0,0,'I',2526,2054,'I002054','2025-11-28',4526,'','','0000-00-00','','',0,0,0,0,3163,'','194','','','','N','drarchit','drarchit','2025-11-28 19:36:52','','0000-00-00 00:00:00'),(2055,0,0,'I',2526,2055,'I002055','2025-11-28',4591,'','','0000-00-00','','',0,0,0,0,2506,'','194','','','','N','drarchit','drarchit','2025-11-28 19:43:25','','0000-00-00 00:00:00'),(2056,0,0,'I',2526,2056,'I002056','2025-11-28',4447,'','','0000-00-00','','',0,0,0,0,3116,'','194','','','','N','darshan','darshan','2025-11-28 19:49:35','','0000-00-00 00:00:00'),(2057,0,0,'I',2526,2057,'I002057','2025-11-28',4592,'','','0000-00-00','','',0,0,0,0,3200,'','194','','','','N','drarchit','drarchit','2025-11-28 19:57:29','','0000-00-00 00:00:00'),(2058,0,0,'I',2526,2058,'I002058','2025-11-28',4524,'','','0000-00-00','','',0,0,0,0,3161,'','194','','','','N','darshan','darshan','2025-11-28 19:57:45','','0000-00-00 00:00:00'),(2059,0,0,'I',2526,2059,'I002059','2025-11-28',4564,'','','0000-00-00','','',0,0,0,0,3188,'','194','','','','N','darshan','darshan','2025-11-28 20:17:34','','0000-00-00 00:00:00'),(2060,0,0,'I',2526,2060,'I002060','2025-11-28',4579,'','','0000-00-00','','',0,0,0,0,3192,'','194','','','','N','darshan','darshan','2025-11-28 20:20:58','','0000-00-00 00:00:00'),(2061,0,0,'I',2526,2061,'I002061','2025-11-28',4586,'','','0000-00-00','','',0,0,0,0,3198,'','194','','','','N','darshan','darshan','2025-11-28 20:24:04','','0000-00-00 00:00:00'),(2062,0,0,'I',2526,2062,'I002062','2025-11-29',4601,'','','0000-00-00','','',0,0,0,0,1550,'','194','','','','N','darshan','darshan','2025-11-29 10:53:13','','0000-00-00 00:00:00'),(2063,0,0,'I',2526,2063,'I002063','2025-11-29',4599,'','','0000-00-00','','',0,0,0,0,1690,'','194','','','','N','darshan','darshan','2025-11-29 11:17:00','','0000-00-00 00:00:00'),(2064,0,0,'I',2526,2064,'I002064','2025-11-29',4598,'','','0000-00-00','','',0,0,0,0,3204,'','194','','','','N','drarchit','drarchit','2025-11-29 11:32:26','','0000-00-00 00:00:00'),(2065,0,0,'I',2526,2065,'I002065','2025-11-29',4604,'','','0000-00-00','','',0,0,0,0,446,'','194','','','','N','darshan','darshan','2025-11-29 11:35:53','','0000-00-00 00:00:00'),(2066,0,0,'I',2526,2066,'I002066','2025-11-29',4607,'','','0000-00-00','','',0,0,0,0,1424,'','194','','','','N','drarchit','drarchit','2025-11-29 11:37:32','','0000-00-00 00:00:00'),(2067,0,0,'I',2526,2067,'I002067','2025-11-29',4619,'','','0000-00-00','','',0,0,0,0,1579,'','194','','','','N','darshan','darshan','2025-11-29 11:53:44','','0000-00-00 00:00:00'),(2068,0,0,'I',2526,2068,'I002068','2025-11-29',4618,'','','0000-00-00','','',0,0,0,0,3216,'','194','','','','N','drjayant','drjayant','2025-11-29 11:58:23','','0000-00-00 00:00:00'),(2069,0,0,'I',2526,2069,'I002069','2025-11-29',4638,'','','0000-00-00','','',0,0,0,0,3229,'','194','','','','N','drjayant','drjayant','2025-11-29 12:03:05','','0000-00-00 00:00:00'),(2070,0,0,'I',2526,2070,'I002070','2025-11-29',4634,'','','0000-00-00','','',0,0,0,0,3226,'','194','','','','N','drarchit','drarchit','2025-11-29 12:04:52','','0000-00-00 00:00:00'),(2071,0,0,'I',2526,2071,'I002071','2025-11-29',4612,'','','0000-00-00','','',0,0,0,0,2769,'','194','','','','N','drarchit','drarchit','2025-11-29 12:09:43','','0000-00-00 00:00:00'),(2072,0,0,'I',2526,2072,'I002072','2025-11-29',4625,'','','0000-00-00','','',0,0,0,0,3220,'','194','','','','N','drarchit','drarchit','2025-11-29 12:12:18','','0000-00-00 00:00:00'),(2073,0,0,'I',2526,2073,'I002073','2025-11-29',4615,'','','0000-00-00','','',0,0,0,0,2132,'','194','','','','N','darshan','darshan','2025-11-29 12:12:34','','0000-00-00 00:00:00'),(2074,0,0,'I',2526,2074,'I002074','2025-11-29',4628,'','','0000-00-00','','',0,0,0,0,3221,'','194','','','','N','drarchit','drarchit','2025-11-29 12:18:22','','0000-00-00 00:00:00'),(2075,0,0,'I',2526,2075,'I002075','2025-11-29',4621,'','','0000-00-00','','',0,0,0,0,2847,'','194','','','','N','darshan','darshan','2025-11-29 12:21:49','','0000-00-00 00:00:00'),(2076,0,0,'I',2526,2076,'I002076','2025-11-29',4636,'','','0000-00-00','','',0,0,0,0,3228,'','194','','','','N','darshan','darshan','2025-11-29 12:24:25','','0000-00-00 00:00:00'),(2077,0,0,'I',2526,2077,'I002077','2025-11-29',4641,'','','0000-00-00','','',0,0,0,0,3232,'','194','','','','N','drarchit','drarchit','2025-11-29 12:31:34','','0000-00-00 00:00:00'),(2078,0,0,'I',2526,2078,'I002078','2025-11-29',4644,'','','0000-00-00','','',0,0,0,0,3233,'','194','','','','N','drarchit','drarchit','2025-11-29 12:40:57','','0000-00-00 00:00:00'),(2079,0,0,'I',2526,2079,'I002079','2025-11-29',4653,'','','0000-00-00','','',0,0,0,0,3239,'','194','','','','N','darshan','darshan','2025-11-29 12:41:51','','0000-00-00 00:00:00'),(2080,0,0,'I',2526,2080,'I002080','2025-11-29',4611,'','','0000-00-00','','',0,0,0,0,3213,'','194','','','','N','darshan','darshan','2025-11-29 12:45:37','','0000-00-00 00:00:00'),(2081,0,0,'I',2526,2081,'I002081','2025-11-29',4622,'','','0000-00-00','','',0,0,0,0,3218,'','194','','','','N','darshan','darshan','2025-11-29 12:48:50','','0000-00-00 00:00:00'),(2082,0,0,'I',2526,2082,'I002082','2025-11-29',4654,'','','0000-00-00','','',0,0,0,0,3240,'','194','','','','N','drjayant','drjayant','2025-11-29 12:50:38','','0000-00-00 00:00:00'),(2083,0,0,'I',2526,2083,'I002083','2025-11-29',4656,'','','0000-00-00','','',0,0,0,0,1504,'','194','','','','N','darshan','darshan','2025-11-29 12:54:44','','0000-00-00 00:00:00'),(2084,0,0,'I',2526,2084,'I002084','2025-11-29',4670,'','','0000-00-00','','',0,0,0,0,3251,'','194','','','','N','drarchit','drarchit','2025-11-29 12:55:56','','0000-00-00 00:00:00'),(2085,0,0,'I',2526,2085,'I002085','2025-11-29',4637,'','','0000-00-00','','',0,0,0,0,2483,'','194','','','','N','darshan','darshan','2025-11-29 12:57:59','','0000-00-00 00:00:00'),(2086,0,0,'I',2526,2086,'I002086','2025-11-29',4623,'','','0000-00-00','','',0,0,0,0,1626,'','194','','','','N','darshan','darshan','2025-11-29 13:00:06','','0000-00-00 00:00:00'),(2087,0,0,'I',2526,2087,'I002087','2025-11-29',4650,'','','0000-00-00','','',0,0,0,0,3237,'','194','','','','N','drarchit','drarchit','2025-11-29 13:01:30','','0000-00-00 00:00:00'),(2088,0,0,'I',2526,2088,'I002088','2025-11-29',4587,'','','0000-00-00','','',0,0,0,0,3199,'','194','','','','N','darshan','darshan','2025-11-29 13:05:22','','0000-00-00 00:00:00'),(2089,0,0,'I',2526,2089,'I002089','2025-11-29',4660,'','','0000-00-00','','',0,0,0,0,3242,'','194','','','','N','drarchit','drarchit','2025-11-29 13:08:55','','0000-00-00 00:00:00'),(2090,0,0,'I',2526,2090,'I002090','2025-11-29',4631,'','','0000-00-00','','',0,0,0,0,3223,'','194','','','','N','drjayant','drjayant','2025-11-29 13:10:38','','0000-00-00 00:00:00'),(2091,0,0,'I',2526,2091,'I002091','2025-11-29',4659,'','','0000-00-00','','',0,0,0,0,3241,'','194','','','','N','drarchit','drarchit','2025-11-29 13:10:55','','0000-00-00 00:00:00'),(2092,0,0,'I',2526,2092,'I002092','2025-11-29',4667,'','','0000-00-00','','',0,0,0,0,1629,'','194','','','','N','drarchit','drarchit','2025-11-29 13:17:43','','0000-00-00 00:00:00'),(2093,0,0,'I',2526,2093,'I002093','2025-11-29',4600,'','','0000-00-00','','',0,0,0,0,3205,'','194','','','','N','darshan','darshan','2025-11-29 13:22:26','','0000-00-00 00:00:00'),(2094,0,0,'I',2526,2094,'I002094','2025-11-29',4606,'','','0000-00-00','','',0,0,0,0,3209,'','194','','','','N','darshan','darshan','2025-11-29 13:33:16','','0000-00-00 00:00:00'),(2095,0,0,'I',2526,2095,'I002095','2025-11-29',4669,'','','0000-00-00','','',0,0,0,0,3250,'','194','','','','N','darshan','darshan','2025-11-29 13:35:01','','0000-00-00 00:00:00'),(2096,0,0,'I',2526,2096,'I002096','2025-11-29',4651,'','','0000-00-00','','',0,0,0,0,3238,'','194','','','','N','darshan','darshan','2025-11-29 13:40:54','','0000-00-00 00:00:00'),(2097,0,0,'I',2526,2097,'I002097','2025-11-29',4608,'','','0000-00-00','','',0,0,0,0,3210,'','194','','','','N','darshan','darshan','2025-11-29 13:44:31','','0000-00-00 00:00:00'),(2098,0,0,'I',2526,2098,'I002098','2025-11-29',4629,'','','0000-00-00','','',0,0,0,0,3222,'','194','','','','N','drjayant','drjayant','2025-11-29 13:46:53','','0000-00-00 00:00:00'),(2099,0,0,'I',2526,2099,'I002099','2025-11-29',4661,'','','0000-00-00','','',0,0,0,0,3243,'','194','','','','N','darshan','darshan','2025-11-29 13:54:02','','0000-00-00 00:00:00'),(2100,0,0,'I',2526,2100,'I002100','2025-11-29',4624,'','','0000-00-00','','',0,0,0,0,3219,'','194','','','','N','darshan','darshan','2025-11-29 14:01:15','','0000-00-00 00:00:00'),(2101,0,0,'I',2526,2101,'I002101','2025-11-29',4662,'','','0000-00-00','','',0,0,0,0,3244,'','194','','','','N','darshan','darshan','2025-11-29 14:06:45','','0000-00-00 00:00:00'),(2102,0,0,'I',2526,2102,'I002102','2025-11-29',4633,'','','0000-00-00','','',0,0,0,0,3225,'','194','','','','N','darshan','darshan','2025-11-29 14:16:17','','0000-00-00 00:00:00'),(2103,0,0,'I',2526,2103,'I002103','2025-11-29',4663,'','','0000-00-00','','',0,0,0,0,3245,'','194','','','','N','darshan','darshan','2025-11-29 14:20:37','','0000-00-00 00:00:00'),(2104,0,0,'I',2526,2104,'I002104','2025-11-29',4609,'','','0000-00-00','','',0,0,0,0,3211,'','194','','','','N','darshan','darshan','2025-11-29 14:25:59','','0000-00-00 00:00:00'),(2105,0,0,'I',2526,2105,'I002105','2025-11-29',4664,'','','0000-00-00','','',0,0,0,0,3246,'','194','','','','N','darshan','darshan','2025-11-29 14:40:21','','0000-00-00 00:00:00'),(2106,0,0,'I',2526,2106,'I002106','2025-11-29',4672,'','','0000-00-00','','',0,0,0,0,3252,'','194','','','','N','darshan','darshan','2025-11-29 14:49:21','','0000-00-00 00:00:00'),(2107,0,0,'I',2526,2107,'I002107','2025-12-01',4706,'','','0000-00-00','','',0,0,0,0,3270,'','194','','','','N','darshan','darshan','2025-12-01 10:41:44','','0000-00-00 00:00:00'),(2108,0,0,'I',2526,2108,'I002108','2025-12-01',4704,'','','0000-00-00','','',0,0,0,0,2207,'','194','','','','N','darshan','darshan','2025-12-01 10:45:08','','0000-00-00 00:00:00'),(2109,0,0,'I',2526,2109,'I002109','2025-12-01',4708,'','','0000-00-00','','',0,0,0,0,2709,'','194','','','','N','darshan','darshan','2025-12-01 10:57:43','','0000-00-00 00:00:00'),(2110,0,0,'I',2526,2110,'I002110','2025-12-01',4702,'','','0000-00-00','','',0,0,0,0,2446,'','194','','','','N','darshan','darshan','2025-12-01 11:00:49','','0000-00-00 00:00:00'),(2111,0,0,'I',2526,2111,'I002111','2025-12-01',4717,'','','0000-00-00','','',0,0,0,0,2716,'','194','','','','N','darshan','darshan','2025-12-01 11:05:15','','0000-00-00 00:00:00'),(2112,0,0,'I',2526,2112,'I002112','2025-12-01',4703,'','','0000-00-00','','',0,0,0,0,2155,'','194','','','','N','darshan','darshan','2025-12-01 11:09:17','','0000-00-00 00:00:00'),(2113,0,0,'I',2526,2113,'I002113','2025-12-01',4713,'','','0000-00-00','','',0,0,0,0,930,'','194','','','','N','drjayant','drjayant','2025-12-01 11:18:14','','0000-00-00 00:00:00'),(2114,0,0,'I',2526,2114,'I002114','2025-12-01',4707,'','','0000-00-00','','',0,0,0,0,3271,'','194','','','','N','drarchit','drarchit','2025-12-01 11:22:14','','0000-00-00 00:00:00'),(2115,0,0,'I',2526,2115,'I002115','2025-12-01',4705,'','','0000-00-00','','',0,0,0,0,3269,'','194','','','','N','darshan','darshan','2025-12-01 11:22:47','','0000-00-00 00:00:00'),(2116,0,0,'I',2526,2116,'I002116','2025-12-01',4728,'','','0000-00-00','','',0,0,0,0,3279,'','194','','','','N','drjayant','drjayant','2025-12-01 11:24:37','','0000-00-00 00:00:00'),(2117,0,0,'I',2526,2117,'I002117','2025-12-01',4718,'','','0000-00-00','','',0,0,0,0,3076,'','194','','','','N','drarchit','drarchit','2025-12-01 11:29:31','','0000-00-00 00:00:00'),(2118,0,0,'I',2526,2118,'I002118','2025-12-01',4715,'','','0000-00-00','','',0,0,0,0,2714,'','194','','','','N','darshan','darshan','2025-12-01 11:38:13','','0000-00-00 00:00:00'),(2119,0,0,'I',2526,2119,'I002119','2025-12-01',4732,'','','0000-00-00','','',0,0,0,0,3283,'','194','','','','N','drarchit','drarchit','2025-12-01 11:47:24','','0000-00-00 00:00:00'),(2120,0,0,'I',2526,2120,'I002120','2025-12-01',4716,'','','0000-00-00','','',0,0,0,0,3275,'','194','','','','N','darshan','darshan','2025-12-01 11:47:58','','0000-00-00 00:00:00'),(2121,0,0,'I',2526,2121,'I002121','2025-12-01',4720,'','','0000-00-00','','',0,0,0,0,1230,'','194','','','','N','darshan','darshan','2025-12-01 11:50:58','','0000-00-00 00:00:00'),(2122,0,0,'I',2526,2122,'I002122','2025-12-01',4723,'','','0000-00-00','','',0,0,0,0,2844,'','194','','','','N','darshan','darshan','2025-12-01 12:02:16','','0000-00-00 00:00:00'),(2123,0,0,'I',2526,2123,'I002123','2025-12-01',4724,'','','0000-00-00','','',0,0,0,0,1506,'','194','','','','N','darshan','darshan','2025-12-01 12:07:05','','0000-00-00 00:00:00'),(2124,0,0,'I',2526,2124,'I002124','2025-12-01',4730,'','','0000-00-00','','',0,0,0,0,3281,'','194','','','','N','drarchit','drarchit','2025-12-01 12:14:03','','0000-00-00 00:00:00'),(2125,0,0,'I',2526,2125,'I002125','2025-12-01',4746,'','','0000-00-00','','',0,0,0,0,2277,'','194','','','','N','darshan','darshan','2025-12-01 12:14:14','','0000-00-00 00:00:00'),(2126,0,0,'I',2526,2126,'I002126','2025-12-01',4733,'','','0000-00-00','','',0,0,0,0,3284,'','194','','','','N','drarchit','drarchit','2025-12-01 12:18:03','','0000-00-00 00:00:00'),(2127,0,0,'I',2526,2127,'I002127','2025-12-01',4725,'','','0000-00-00','','',0,0,0,0,2941,'','194','','','','N','drarchit','drarchit','2025-12-01 12:24:30','','0000-00-00 00:00:00'),(2128,0,0,'I',2526,2128,'I002128','2025-12-01',4731,'','','0000-00-00','','',0,0,0,0,3282,'','194','','','','N','darshan','darshan','2025-12-01 12:38:59','','0000-00-00 00:00:00'),(2129,0,0,'I',2526,2129,'I002129','2025-12-01',4737,'','','0000-00-00','','',0,0,0,0,3287,'','194','','','','N','darshan','darshan','2025-12-01 12:43:36','','0000-00-00 00:00:00'),(2130,0,0,'I',2526,2130,'I002130','2025-12-01',4748,'','','0000-00-00','','',0,0,0,0,1120,'','194','','','','N','darshan','darshan','2025-12-01 12:54:09','','0000-00-00 00:00:00'),(2131,0,0,'I',2526,2131,'I002131','2025-12-01',4757,'','','0000-00-00','','',0,0,0,0,3297,'','194','','','','N','darshan','darshan','2025-12-01 12:59:27','','0000-00-00 00:00:00'),(2132,0,0,'I',2526,2132,'I002132','2025-12-01',4736,'','','0000-00-00','','',0,0,0,0,3286,'','194','','','','N','drarchit','drarchit','2025-12-01 13:02:46','','0000-00-00 00:00:00'),(2133,0,0,'I',2526,2133,'I002133','2025-12-01',4727,'','','0000-00-00','','',0,0,0,0,2894,'','194','','','','N','drarchit','drarchit','2025-12-01 13:06:37','','0000-00-00 00:00:00'),(2134,0,0,'I',2526,2134,'I002134','2025-12-01',4749,'','','0000-00-00','','',0,0,0,0,3293,'','194','','','','N','drarchit','drarchit','2025-12-01 13:13:22','','0000-00-00 00:00:00'),(2135,0,0,'I',2526,2135,'I002135','2025-12-01',4760,'','','0000-00-00','','',0,0,0,0,2254,'','194','','','','N','drarchit','drarchit','2025-12-01 13:16:59','','0000-00-00 00:00:00'),(2136,0,0,'I',2526,2136,'I002136','2025-12-01',4769,'','','0000-00-00','','',0,0,0,0,1781,'','194','','','','N','drjayant','drjayant','2025-12-01 13:17:58','','0000-00-00 00:00:00'),(2137,0,0,'I',2526,2137,'I002137','2025-12-01',4709,'','','0000-00-00','','',0,0,0,0,3272,'','194','','','','N','darshan','darshan','2025-12-01 13:22:18','','0000-00-00 00:00:00'),(2138,0,0,'I',2526,2138,'I002138','2025-12-01',4762,'','','0000-00-00','','',0,0,0,0,3301,'','194','','','','N','drarchit','drarchit','2025-12-01 13:23:10','','0000-00-00 00:00:00'),(2139,0,0,'I',2526,2139,'I002139','2025-12-01',4753,'','','0000-00-00','','',0,0,0,0,3294,'','195','','','','N','drarchit','drarchit','2025-12-01 13:31:32','','0000-00-00 00:00:00'),(2140,0,0,'I',2526,2140,'I002140','2025-12-01',4712,'','','0000-00-00','','',0,0,0,0,3273,'','195','','','','N','darshan','darshan','2025-12-01 13:36:11','','0000-00-00 00:00:00'),(2141,0,0,'I',2526,2141,'I002141','2025-12-01',4754,'','','0000-00-00','','',0,0,0,0,3295,'','195','','','','N','drarchit','drarchit','2025-12-01 13:41:11','','0000-00-00 00:00:00'),(2142,0,0,'I',2526,2142,'I002142','2025-12-01',4766,'','','0000-00-00','','',0,0,0,0,199,'','195','','','','N','drarchit','drarchit','2025-12-01 13:44:59','','0000-00-00 00:00:00'),(2143,0,0,'I',2526,2143,'I002143','2025-12-01',4714,'','','0000-00-00','','',0,0,0,0,3274,'','195','','','','N','darshan','darshan','2025-12-01 13:46:44','','0000-00-00 00:00:00'),(2144,0,0,'I',2526,2144,'I002144','2025-12-01',4764,'','','0000-00-00','','',0,0,0,0,3303,'','195','','','','N','darshan','darshan','2025-12-01 13:54:56','','0000-00-00 00:00:00'),(2145,0,0,'I',2526,2145,'I002145','2025-12-01',4729,'','','0000-00-00','','',0,0,0,0,3280,'','195','','','','N','darshan','darshan','2025-12-01 14:00:21','','0000-00-00 00:00:00'),(2146,0,0,'I',2526,2146,'I002146','2025-12-01',4770,'','','0000-00-00','','',0,0,0,0,3307,'','195','','','','N','darshan','darshan','2025-12-01 14:03:14','','0000-00-00 00:00:00'),(2147,0,0,'I',2526,2147,'I002147','2025-12-01',4758,'','','0000-00-00','','',0,0,0,0,3298,'','195','','','','N','darshan','darshan','2025-12-01 14:20:25','','0000-00-00 00:00:00'),(2148,0,0,'I',2526,2148,'I002148','2025-12-01',4722,'','','0000-00-00','','',0,0,0,0,3278,'','195','','','','N','darshan','darshan','2025-12-01 14:22:08','','0000-00-00 00:00:00'),(2149,0,0,'I',2526,2149,'I002149','2025-12-01',4772,'','','0000-00-00','','',0,0,0,0,2534,'','196','','','','N','darshan','darshan','2025-12-01 14:35:00','','0000-00-00 00:00:00'),(2150,0,0,'I',2526,2150,'I002150','2025-12-01',4768,'','','0000-00-00','','',0,0,0,0,3306,'','196','','','','N','darshan','darshan','2025-12-01 14:39:46','','0000-00-00 00:00:00'),(2151,0,0,'I',2526,2151,'I002151','2025-12-01',4773,'','','0000-00-00','','',0,0,0,0,1170,'','196','','','','N','darshan','darshan','2025-12-01 14:45:55','','0000-00-00 00:00:00'),(2152,0,0,'I',2526,2152,'I002152','2025-12-01',4782,'','','0000-00-00','','',0,0,0,0,2748,'','','','','','N','darshan','darshan','2025-12-01 17:06:05','','0000-00-00 00:00:00'),(2153,0,0,'I',2526,2153,'I002153','2025-12-01',4784,'','','0000-00-00','','',0,0,0,0,3121,'','','','','','N','darshan','darshan','2025-12-01 17:16:51','','0000-00-00 00:00:00'),(2154,0,0,'I',2526,2154,'I002154','2025-12-01',4785,'','','0000-00-00','','',0,0,0,0,1834,'','','','','','N','darshan','darshan','2025-12-01 17:24:53','','0000-00-00 00:00:00'),(2155,0,0,'I',2526,2155,'I002155','2025-12-01',4786,'','','0000-00-00','','',0,0,0,0,2746,'','','','','','N','darshan','darshan','2025-12-01 17:30:27','','0000-00-00 00:00:00'),(2156,0,0,'I',2526,2156,'I002156','2025-12-01',4789,'','','0000-00-00','','',0,0,0,0,3313,'','','','','','N','darshan','darshan','2025-12-01 17:34:52','','0000-00-00 00:00:00'),(2157,0,0,'I',2526,2157,'I002157','2025-12-01',4752,'','','0000-00-00','','',0,0,0,0,2182,'','','','','','N','darshan','darshan','2025-12-01 17:37:51','','0000-00-00 00:00:00'),(2158,0,0,'I',2526,2158,'I002158','2025-12-01',4792,'','','0000-00-00','','',0,0,0,0,1436,'','','','','','N','darshan','darshan','2025-12-01 17:45:31','','0000-00-00 00:00:00'),(2159,0,0,'I',2526,2159,'I002159','2025-12-01',4799,'','','0000-00-00','','',0,0,0,0,2188,'','','','','','N','darshan','darshan','2025-12-01 17:57:07','','0000-00-00 00:00:00'),(2160,0,0,'I',2526,2160,'I002160','2025-12-01',4808,'','','0000-00-00','','',0,0,0,0,3267,'','','','','','N','drarchit','drarchit','2025-12-01 18:12:47','','0000-00-00 00:00:00'),(2161,0,0,'I',2526,2161,'I002161','2025-12-01',4805,'','','0000-00-00','','',0,0,0,0,1371,'','','','','','N','darshan','darshan','2025-12-01 18:17:15','','0000-00-00 00:00:00'),(2162,0,0,'I',2526,2162,'I002162','2025-12-01',4790,'','','0000-00-00','','',0,0,0,0,3314,'','','','','','N','drarchit','drarchit','2025-12-01 18:17:59','','0000-00-00 00:00:00'),(2163,0,0,'I',2526,2163,'I002163','2025-12-01',4771,'','','0000-00-00','','',0,0,0,0,3308,'','','','','','N','darshan','darshan','2025-12-01 18:25:25','','0000-00-00 00:00:00'),(2164,0,0,'I',2526,2164,'I002164','2025-12-01',4695,'','','0000-00-00','','',0,0,0,0,3263,'','','','','','N','drarchit','drarchit','2025-12-01 18:25:45','','0000-00-00 00:00:00'),(2165,0,0,'I',2526,2165,'I002165','2025-12-01',4818,'','','0000-00-00','','',0,0,0,0,3326,'','','','','','N','drjayant','drjayant','2025-12-01 18:28:38','','0000-00-00 00:00:00'),(2166,0,0,'I',2526,2166,'I002166','2025-12-01',4793,'','','0000-00-00','','',0,0,0,0,3315,'','','','','','N','drarchit','drarchit','2025-12-01 18:30:53','','0000-00-00 00:00:00'),(2167,0,0,'I',2526,2167,'I002167','2025-12-01',4817,'','','0000-00-00','','',0,0,0,0,1523,'','','','','','N','darshan','darshan','2025-12-01 18:32:48','','0000-00-00 00:00:00'),(2168,0,0,'I',2526,2168,'I002168','2025-12-01',4763,'','','0000-00-00','','',0,0,0,0,3302,'','','','','','N','darshan','darshan','2025-12-01 18:37:37','','0000-00-00 00:00:00'),(2169,0,0,'I',2526,2169,'I002169','2025-12-01',4838,'','','0000-00-00','','',0,0,0,0,3336,'','','','','','N','drarchit','drarchit','2025-12-01 18:50:15','','0000-00-00 00:00:00'),(2170,0,0,'I',2526,2170,'I002170','2025-12-01',4822,'','','0000-00-00','','',0,0,0,0,760,'','','','','','N','darshan','darshan','2025-12-01 18:50:35','','0000-00-00 00:00:00'),(2171,0,0,'I',2526,2171,'I002171','2025-12-01',4824,'','','0000-00-00','','',0,0,0,0,3330,'','','','','','N','darshan','darshan','2025-12-01 18:54:54','','0000-00-00 00:00:00'),(2172,0,0,'I',2526,2172,'I002172','2025-12-01',4721,'','','0000-00-00','','',0,0,0,0,3277,'','','','','','N','drarchit','drarchit','2025-12-01 18:56:16','','0000-00-00 00:00:00'),(2173,0,0,'I',2526,2173,'I002173','2025-12-01',4797,'','','0000-00-00','','',0,0,0,0,3317,'','','','','','N','darshan','darshan','2025-12-01 18:58:35','','0000-00-00 00:00:00'),(2174,0,0,'I',2526,2174,'I002174','2025-12-01',4827,'','','0000-00-00','','',0,0,0,0,1238,'','','','','','N','drarchit','drarchit','2025-12-01 19:03:54','','0000-00-00 00:00:00'),(2175,0,0,'I',2526,2175,'I002175','2025-12-01',4795,'','','0000-00-00','','',0,0,0,0,3010,'','','','','','N','drarchit','drarchit','2025-12-01 19:08:49','','0000-00-00 00:00:00'),(2176,0,0,'I',2526,2176,'I002176','2025-12-01',4819,'','','0000-00-00','','',0,0,0,0,3327,'','','','','','N','darshan','darshan','2025-12-01 19:10:13','','0000-00-00 00:00:00'),(2177,0,0,'I',2526,2177,'I002177','2025-12-01',4841,'','','0000-00-00','','',0,0,0,0,3338,'','','','','','N','drjayant','drjayant','2025-12-01 19:10:38','','0000-00-00 00:00:00'),(2178,0,0,'I',2526,2178,'I002178','2025-12-01',4833,'','','0000-00-00','','',0,0,0,0,416,'','','','','','N','darshan','darshan','2025-12-01 19:12:53','','0000-00-00 00:00:00'),(2179,0,0,'I',2526,2179,'I002179','2025-12-01',4744,'','','0000-00-00','','',0,0,0,0,3290,'','','','','','N','drarchit','drarchit','2025-12-01 19:17:34','','0000-00-00 00:00:00'),(2180,0,0,'I',2526,2180,'I002180','2025-12-01',4812,'','','0000-00-00','','',0,0,0,0,1672,'','','','','','N','drarchit','drarchit','2025-12-01 19:24:18','','0000-00-00 00:00:00'),(2181,0,0,'I',2526,2181,'I002181','2025-12-01',4788,'','','0000-00-00','','',0,0,0,0,3312,'','','','','','N','darshan','darshan','2025-12-01 19:24:44','','0000-00-00 00:00:00'),(2182,0,0,'I',2526,2182,'I002182','2025-12-01',4813,'','','0000-00-00','','',0,0,0,0,3324,'','','','','','N','drarchit','drarchit','2025-12-01 19:29:04','','0000-00-00 00:00:00'),(2183,0,0,'I',2526,2183,'I002183','2025-12-01',4814,'','','0000-00-00','','',0,0,0,0,2772,'','','','','','N','darshan','darshan','2025-12-01 19:31:42','','0000-00-00 00:00:00'),(2184,0,0,'I',2526,2184,'I002184','2025-12-01',4839,'','','0000-00-00','','',0,0,0,0,3337,'','','','','','N','drarchit','drarchit','2025-12-01 19:32:00','','0000-00-00 00:00:00'),(2185,0,0,'I',2526,2185,'I002185','2025-12-01',4803,'','','0000-00-00','','',0,0,0,0,3320,'','','','','','N','darshan','darshan','2025-12-01 19:38:27','','0000-00-00 00:00:00'),(2186,0,0,'I',2526,2186,'I002186','2025-12-01',4826,'','','0000-00-00','','',0,0,0,0,574,'','','','','','N','drarchit','drarchit','2025-12-01 19:43:06','','0000-00-00 00:00:00'),(2187,0,0,'I',2526,2187,'I002187','2025-12-01',4836,'','','0000-00-00','','',0,0,0,0,2268,'','','','','','N','darshan','darshan','2025-12-01 19:43:26','','0000-00-00 00:00:00'),(2188,0,0,'I',2526,2188,'I002188','2025-12-01',4842,'','','0000-00-00','','',0,0,0,0,2752,'','','','','','N','darshan','darshan','2025-12-01 19:52:46','','0000-00-00 00:00:00'),(2189,0,0,'I',2526,2189,'I002189','2025-12-01',4846,'','','0000-00-00','','',0,0,0,0,1480,'','','','','','N','drarchit','drarchit','2025-12-01 19:54:01','','0000-00-00 00:00:00'),(2190,0,0,'I',2526,2190,'I002190','2025-12-01',4845,'','','0000-00-00','','',0,0,0,0,3339,'','','','','','N','darshan','darshan','2025-12-01 20:00:35','','0000-00-00 00:00:00'),(2191,0,0,'I',2526,2191,'I002191','2025-12-01',4837,'','','0000-00-00','','',0,0,0,0,1274,'','','','','','N','drarchit','drarchit','2025-12-01 20:00:54','','0000-00-00 00:00:00'),(2192,0,0,'I',2526,2192,'I002192','2025-12-01',4851,'','','0000-00-00','','',0,0,0,0,2567,'','','','','','N','darshan','darshan','2025-12-01 20:06:36','','0000-00-00 00:00:00'),(2193,0,0,'I',2526,2193,'I002193','2025-12-01',4830,'','','0000-00-00','','',0,0,0,0,1455,'','','','','','N','drarchit','drarchit','2025-12-01 20:07:07','','0000-00-00 00:00:00'),(2194,0,0,'I',2526,2194,'I002194','2025-12-01',4823,'','','0000-00-00','','',0,0,0,0,3329,'','','','','','N','drarchit','drarchit','2025-12-01 20:13:10','','0000-00-00 00:00:00'),(2195,0,0,'I',2526,2195,'I002195','2025-12-01',4829,'','','0000-00-00','','',0,0,0,0,3333,'','','','','','N','drarchit','drarchit','2025-12-01 20:14:24','','0000-00-00 00:00:00'),(2196,0,0,'I',2526,2196,'I002196','2025-12-01',4847,'','','0000-00-00','','',0,0,0,0,3340,'','','','','','N','drarchit','drarchit','2025-12-01 20:18:17','','0000-00-00 00:00:00'),(2197,0,0,'I',2526,2197,'I002197','2025-12-01',4807,'','','0000-00-00','','',0,0,0,0,3321,'','','','','','N','drarchit','drarchit','2025-12-01 20:24:20','','0000-00-00 00:00:00'),(2198,0,0,'I',2526,2198,'I002198','2025-12-02',4858,'','','0000-00-00','','',0,0,0,0,3346,'','','','','','N','darshan','darshan','2025-12-02 10:43:13','','0000-00-00 00:00:00'),(2199,0,0,'I',2526,2199,'I002199','2025-12-02',4860,'','','0000-00-00','','',0,0,0,0,1505,'','','','','','N','darshan','darshan','2025-12-02 10:46:15','','0000-00-00 00:00:00'),(2200,0,0,'I',2526,2200,'I002200','2025-12-02',4872,'','','0000-00-00','','',0,0,0,0,3352,'','','','','','N','drarchit','drarchit','2025-12-02 11:09:04','','0000-00-00 00:00:00'),(2201,0,0,'I',2526,2201,'I002201','2025-12-02',4796,'','','0000-00-00','','',0,0,0,0,3316,'','','','','','N','darshan','darshan','2025-12-02 11:11:52','','0000-00-00 00:00:00'),(2202,0,0,'I',2526,2202,'I002202','2025-12-02',4869,'','','0000-00-00','','',0,0,0,0,755,'','','','','','N','darshan','darshan','2025-12-02 11:15:05','','0000-00-00 00:00:00'),(2203,0,0,'I',2526,2203,'I002203','2025-12-02',4875,'','','0000-00-00','','',0,0,0,0,3353,'','','','','','N','drarchit','drarchit','2025-12-02 11:17:36','','0000-00-00 00:00:00'),(2204,0,0,'I',2526,2204,'I002204','2025-12-02',4871,'','','0000-00-00','','',0,0,0,0,3351,'','','','','','N','darshan','darshan','2025-12-02 11:19:53','','0000-00-00 00:00:00'),(2205,0,0,'I',2526,2205,'I002205','2025-12-02',4856,'','','0000-00-00','','',0,0,0,0,3345,'','','','','','N','darshan','darshan','2025-12-02 11:26:04','','0000-00-00 00:00:00'),(2206,0,0,'I',2526,2206,'I002206','2025-12-02',4877,'','','0000-00-00','','',0,0,0,0,3355,'','','','','','N','drarchit','drarchit','2025-12-02 11:29:46','','0000-00-00 00:00:00'),(2207,0,0,'I',2526,2207,'I002207','2025-12-02',4859,'','','0000-00-00','','',0,0,0,0,3347,'','','','','','N','darshan','darshan','2025-12-02 11:31:19','','0000-00-00 00:00:00'),(2208,0,0,'I',2526,2208,'I002208','2025-12-02',4879,'','','0000-00-00','','',0,0,0,0,625,'','','','','','N','darshan','darshan','2025-12-02 11:36:37','','0000-00-00 00:00:00'),(2209,0,0,'I',2526,2209,'I002209','2025-12-02',4861,'','','0000-00-00','','',0,0,0,0,1335,'','','','','','N','darshan','darshan','2025-12-02 11:40:59','','0000-00-00 00:00:00'),(2210,0,0,'I',2526,2210,'I002210','2025-12-02',4895,'','','0000-00-00','','',0,0,0,0,3367,'','','','','','N','drjayant','drjayant','2025-12-02 11:46:00','','0000-00-00 00:00:00'),(2211,0,0,'I',2526,2211,'I002211','2025-12-02',4882,'','','0000-00-00','','',0,0,0,0,3356,'','','','','','N','drarchit','drarchit','2025-12-02 11:54:06','','0000-00-00 00:00:00'),(2212,0,0,'I',2526,2212,'I002212','2025-12-02',4883,'','','0000-00-00','','',0,0,0,0,3357,'','','','','','N','darshan','darshan','2025-12-02 11:54:49','','0000-00-00 00:00:00'),(2213,0,0,'I',2526,2213,'I002213','2025-12-02',4835,'','','0000-00-00','','',0,0,0,0,3335,'','','','','','N','drjayant','drjayant','2025-12-02 11:56:51','','0000-00-00 00:00:00'),(2214,0,0,'I',2526,2214,'I002214','2025-12-02',4885,'','','0000-00-00','','',0,0,0,0,3071,'','','','','','N','darshan','darshan','2025-12-02 11:57:30','','0000-00-00 00:00:00'),(2215,0,0,'I',2526,2215,'I002215','2025-12-02',4891,'','','0000-00-00','','',0,0,0,0,3363,'','','','','','N','drarchit','drarchit','2025-12-02 11:57:57','','0000-00-00 00:00:00'),(2216,0,0,'I',2526,2216,'I002216','2025-12-02',4896,'','','0000-00-00','','',0,0,0,0,3368,'','','','','','N','drarchit','drarchit','2025-12-02 12:04:49','','0000-00-00 00:00:00'),(2217,0,0,'I',2526,2217,'I002217','2025-12-02',4893,'','','0000-00-00','','',0,0,0,0,3365,'','','','','','N','darshan','darshan','2025-12-02 12:09:34','','0000-00-00 00:00:00'),(2218,0,0,'I',2526,2218,'I002218','2025-12-02',4865,'','','0000-00-00','','',0,0,0,0,2842,'','','','','','N','darshan','darshan','2025-12-02 12:12:03','','0000-00-00 00:00:00'),(2219,0,0,'I',2526,2219,'I002219','2025-12-02',4616,'','','0000-00-00','','',0,0,0,0,180,'','','','','','N','drjayant','drjayant','2025-12-02 12:13:47','','0000-00-00 00:00:00'),(2220,0,0,'I',2526,2220,'I002220','2025-12-02',4898,'','','0000-00-00','','',0,0,0,0,3370,'','','','','','N','drarchit','drarchit','2025-12-02 12:14:20','','0000-00-00 00:00:00'),(2221,0,0,'I',2526,2221,'I002221','2025-12-02',4900,'','','0000-00-00','','',0,0,0,0,3372,'','','','','','N','drarchit','drarchit','2025-12-02 12:22:18','','0000-00-00 00:00:00'),(2222,0,0,'I',2526,2222,'I002222','2025-12-02',4901,'','','0000-00-00','','',0,0,0,0,3373,'','','','','','N','darshan','darshan','2025-12-02 12:25:36','','0000-00-00 00:00:00'),(2223,0,0,'I',2526,2223,'I002223','2025-12-02',4874,'','','0000-00-00','','',0,0,0,0,1346,'','','','','','N','darshan','darshan','2025-12-02 12:30:35','','0000-00-00 00:00:00'),(2224,0,0,'I',2526,2224,'I002224','2025-12-02',4853,'','','0000-00-00','','',0,0,0,0,3343,'','','','','','N','darshan','darshan','2025-12-02 12:36:39','','0000-00-00 00:00:00'),(2225,0,0,'I',2526,2225,'I002225','2025-12-02',4886,'','','0000-00-00','','',0,0,0,0,3359,'','','','','','N','darshan','darshan','2025-12-02 12:40:41','','0000-00-00 00:00:00'),(2226,0,0,'I',2526,2226,'I002226','2025-12-02',4892,'','','0000-00-00','','',0,0,0,0,3364,'','','','','','N','darshan','darshan','2025-12-02 12:44:38','','0000-00-00 00:00:00'),(2227,0,0,'I',2526,2227,'I002227','2025-12-02',4904,'','','0000-00-00','','',0,0,0,0,3376,'','','','','','N','drarchit','drarchit','2025-12-02 12:49:53','','0000-00-00 00:00:00'),(2228,0,0,'I',2526,2228,'I002228','2025-12-02',4867,'','','0000-00-00','','',0,0,0,0,3350,'','','','','','N','darshan','darshan','2025-12-02 12:49:56','','0000-00-00 00:00:00'),(2229,0,0,'I',2526,2229,'I002229','2025-12-02',4910,'','','0000-00-00','','',0,0,0,0,3380,'','','','','','N','drarchit','drarchit','2025-12-02 13:00:53','','0000-00-00 00:00:00'),(2230,0,0,'I',2526,2230,'I002230','2025-12-02',4884,'','','0000-00-00','','',0,0,0,0,3358,'','','','','','N','darshan','darshan','2025-12-02 13:05:51','','0000-00-00 00:00:00'),(2231,0,0,'I',2526,2231,'I002231','2025-12-02',4909,'','','0000-00-00','','',0,0,0,0,2848,'','','','','','N','darshan','darshan','2025-12-02 13:08:46','','0000-00-00 00:00:00'),(2232,0,0,'I',2526,2232,'I002232','2025-12-02',4912,'','','0000-00-00','','',0,0,0,0,2279,'','','','','','N','drarchit','drarchit','2025-12-02 13:08:53','','0000-00-00 00:00:00'),(2233,0,0,'I',2526,2233,'I002233','2025-12-02',4913,'','','0000-00-00','','',0,0,0,0,3382,'','','','','','N','drarchit','drarchit','2025-12-02 13:22:01','','0000-00-00 00:00:00'),(2234,0,0,'I',2526,2234,'I002234','2025-12-02',4903,'','','0000-00-00','','',0,0,0,0,3375,'','','','','','N','darshan','darshan','2025-12-02 13:27:33','','0000-00-00 00:00:00'),(2235,0,0,'I',2526,2235,'I002235','2025-12-02',4887,'','','0000-00-00','','',0,0,0,0,3360,'','','','','','N','darshan','darshan','2025-12-02 13:33:42','','0000-00-00 00:00:00'),(2236,0,0,'I',2526,2236,'I002236','2025-12-02',4811,'','','0000-00-00','','',0,0,0,0,1501,'','','','','','N','darshan','darshan','2025-12-02 13:44:53','','0000-00-00 00:00:00'),(2237,0,0,'I',2526,2237,'I002237','2025-12-02',4888,'','','0000-00-00','','',0,0,0,0,3361,'','','','','','N','darshan','darshan','2025-12-02 13:49:26','','0000-00-00 00:00:00'),(2238,0,0,'I',2526,2238,'I002238','2025-12-02',4905,'','','0000-00-00','','',0,0,0,0,3377,'','','','','','N','darshan','darshan','2025-12-02 13:59:43','','0000-00-00 00:00:00'),(2239,0,0,'I',2526,2239,'I002239','2025-12-02',4911,'','','0000-00-00','','',0,0,0,0,3381,'','','','','','N','darshan','darshan','2025-12-02 14:11:04','','0000-00-00 00:00:00'),(2240,0,0,'I',2526,2240,'I002240','2025-12-02',4919,'','','0000-00-00','','',0,0,0,0,1054,'','','','','','N','darshan','darshan','2025-12-02 14:14:12','','0000-00-00 00:00:00'),(2241,0,0,'I',2526,2241,'I002241','2025-12-02',4894,'','','0000-00-00','','',0,0,0,0,3366,'','','','','','N','darshan','darshan','2025-12-02 14:15:54','','0000-00-00 00:00:00'),(2242,0,0,'I',2526,2242,'I002242','2025-12-02',4923,'','','0000-00-00','','',0,0,0,0,1503,'','','','','','N','darshan','darshan','2025-12-02 17:16:29','','0000-00-00 00:00:00'),(2243,0,0,'I',2526,2243,'I002243','2025-12-02',4854,'','','0000-00-00','','',0,0,0,0,3344,'','','','','','N','darshan','darshan','2025-12-02 17:24:47','','0000-00-00 00:00:00'),(2244,0,0,'I',2526,2244,'I002244','2025-12-02',4928,'','','0000-00-00','','',0,0,0,0,2423,'','','','','','N','darshan','darshan','2025-12-02 17:42:39','','0000-00-00 00:00:00'),(2245,0,0,'I',2526,2245,'I002245','2025-12-02',4929,'','','0000-00-00','','',0,0,0,0,979,'','','','','','N','darshan','darshan','2025-12-02 17:49:22','','0000-00-00 00:00:00'),(2246,0,0,'I',2526,2246,'I002246','2025-12-02',4930,'','','0000-00-00','','',0,0,0,0,3388,'','','','','','N','darshan','darshan','2025-12-02 17:56:14','','0000-00-00 00:00:00'),(2247,0,0,'I',2526,2247,'I002247','2025-12-02',4934,'','','0000-00-00','','',0,0,0,0,1891,'','','','','','N','darshan','darshan','2025-12-02 18:05:49','','0000-00-00 00:00:00'),(2248,0,0,'I',2526,2248,'I002248','2025-12-02',4938,'','','0000-00-00','','',0,0,0,0,2932,'','','','','','N','darshan','darshan','2025-12-02 18:11:21','','0000-00-00 00:00:00'),(2249,0,0,'I',2526,2249,'I002249','2025-12-02',4932,'','','0000-00-00','','',0,0,0,0,3389,'','','','','','N','drarchit','drarchit','2025-12-02 18:12:15','','0000-00-00 00:00:00'),(2250,0,0,'I',2526,2250,'I002250','2025-12-02',4933,'','','0000-00-00','','',0,0,0,0,3390,'','','','','','N','drarchit','drarchit','2025-12-02 18:17:50','','0000-00-00 00:00:00'),(2251,0,0,'I',2526,2251,'I002251','2025-12-02',4937,'','','0000-00-00','','',0,0,0,0,3393,'','','','','','N','darshan','darshan','2025-12-02 18:22:13','','0000-00-00 00:00:00'),(2252,0,0,'I',2526,2252,'I002252','2025-12-02',4645,'','','0000-00-00','','',0,0,0,0,3234,'','','','','','N','drarchit','drarchit','2025-12-02 18:24:38','','0000-00-00 00:00:00'),(2253,0,0,'I',2526,2253,'I002253','2025-12-02',4941,'','','0000-00-00','','',0,0,0,0,2257,'','','','','','N','darshan','darshan','2025-12-02 18:25:49','','0000-00-00 00:00:00'),(2254,0,0,'I',2526,2254,'I002254','2025-12-02',4947,'','','0000-00-00','','',0,0,0,0,3399,'','','','','','N','drjayant','drjayant','2025-12-02 18:26:44','','0000-00-00 00:00:00'),(2255,0,0,'I',2526,2255,'I002255','2025-12-02',4945,'','','0000-00-00','','',0,0,0,0,3397,'','','','','','N','drjayant','drjayant','2025-12-02 18:30:24','','0000-00-00 00:00:00'),(2256,0,0,'I',2526,2256,'I002256','2025-12-02',4940,'','','0000-00-00','','',0,0,0,0,3394,'','','','','','N','drarchit','drarchit','2025-12-02 18:30:57','','0000-00-00 00:00:00'),(2257,0,0,'I',2526,2257,'I002257','2025-12-02',4935,'','','0000-00-00','','',0,0,0,0,3391,'','','','','','N','drjayant','drjayant','2025-12-02 18:36:54','','0000-00-00 00:00:00'),(2258,0,0,'I',2526,2258,'I002258','2025-12-02',4943,'','','0000-00-00','','',0,0,0,0,3396,'','','','','','N','drarchit','drarchit','2025-12-02 18:47:04','','0000-00-00 00:00:00'),(2259,0,0,'I',2526,2259,'I002259','2025-12-02',4948,'','','0000-00-00','','',0,0,0,0,3400,'','','','','','N','drarchit','drarchit','2025-12-02 18:52:01','','0000-00-00 00:00:00'),(2260,0,0,'I',2526,2260,'I002260','2025-12-02',4944,'','','0000-00-00','','',0,0,0,0,2584,'','','','','','N','darshan','darshan','2025-12-02 18:55:33','','0000-00-00 00:00:00'),(2261,0,0,'I',2526,2261,'I002261','2025-12-02',4952,'','','0000-00-00','','',0,0,0,0,3402,'','','','','','N','drarchit','drarchit','2025-12-02 18:57:17','','0000-00-00 00:00:00'),(2262,0,0,'I',2526,2262,'I002262','2025-12-02',4949,'','','0000-00-00','','',0,0,0,0,856,'','','','','','N','darshan','darshan','2025-12-02 19:02:08','','0000-00-00 00:00:00'),(2263,0,0,'I',2526,2263,'I002263','2025-12-02',4951,'','','0000-00-00','','',0,0,0,0,3401,'','','','','','N','drarchit','drarchit','2025-12-02 19:03:16','','0000-00-00 00:00:00'),(2264,0,0,'I',2526,2264,'I002264','2025-12-02',4956,'','','0000-00-00','','',0,0,0,0,2713,'','','','','','N','darshan','darshan','2025-12-02 19:08:32','','0000-00-00 00:00:00'),(2265,0,0,'I',2526,2265,'I002265','2025-12-02',4957,'','','0000-00-00','','',0,0,0,0,3404,'','','','','','N','drarchit','drarchit','2025-12-02 19:17:49','','0000-00-00 00:00:00'),(2266,0,0,'I',2526,2266,'I002266','2025-12-02',4954,'','','0000-00-00','','',0,0,0,0,3403,'','','','','','N','drarchit','drarchit','2025-12-02 19:27:15','','0000-00-00 00:00:00'),(2267,0,0,'I',2526,2267,'I002267','2025-12-02',4962,'','','0000-00-00','','',0,0,0,0,3407,'','','','','','N','drjayant','drjayant','2025-12-02 19:30:03','','0000-00-00 00:00:00'),(2268,0,0,'I',2526,2268,'I002268','2025-12-02',4960,'','','0000-00-00','','',0,0,0,0,3405,'','','','','','N','drarchit','drarchit','2025-12-02 19:36:54','','0000-00-00 00:00:00'),(2269,0,0,'I',2526,2269,'I002269','2025-12-02',4963,'','','0000-00-00','','',0,0,0,0,2507,'','','','','','N','drarchit','drarchit','2025-12-02 19:41:56','','0000-00-00 00:00:00'),(2270,0,0,'I',2526,2270,'I002270','2025-12-02',4965,'','','0000-00-00','','',0,0,0,0,3103,'','','','','','N','drarchit','drarchit','2025-12-02 19:46:35','','0000-00-00 00:00:00'),(2271,0,0,'I',2526,2271,'I002271','2025-12-02',4942,'','','0000-00-00','','',0,0,0,0,3395,'','','','','','N','darshan','darshan','2025-12-02 19:46:37','','0000-00-00 00:00:00'),(2272,0,0,'I',2526,2272,'I002272','2025-12-02',4946,'','','0000-00-00','','',0,0,0,0,3398,'','','','','','N','drarchit','drarchit','2025-12-02 19:51:50','','0000-00-00 00:00:00'),(2273,0,0,'I',2526,2273,'I002273','2025-12-02',4966,'','','0000-00-00','','',0,0,0,0,3408,'','','','','','N','drarchit','drarchit','2025-12-02 19:57:54','','0000-00-00 00:00:00'),(2274,0,0,'I',2526,2274,'I002274','2025-12-02',4967,'','','0000-00-00','','',0,0,0,0,3409,'','','','','','N','drarchit','drarchit','2025-12-02 20:01:45','','0000-00-00 00:00:00'),(2275,0,0,'I',2526,2275,'I002275','2025-12-03',4971,'','','0000-00-00','','',0,0,0,0,2965,'','','','','','N','darshan','darshan','2025-12-03 10:42:38','','0000-00-00 00:00:00'),(2276,0,0,'I',2526,2276,'I002276','2025-12-03',4974,'','','0000-00-00','','',0,0,0,0,3412,'','','','','','N','darshan','darshan','2025-12-03 10:48:00','','0000-00-00 00:00:00'),(2277,0,0,'I',2526,2277,'I002277','2025-12-03',4988,'','','0000-00-00','','',0,0,0,0,1777,'','','','','','N','darshan','darshan','2025-12-03 10:53:10','','0000-00-00 00:00:00'),(2278,0,0,'I',2526,2278,'I002278','2025-12-03',4975,'','','0000-00-00','','',0,0,0,0,3413,'','','','','','N','darshan','darshan','2025-12-03 11:03:59','','0000-00-00 00:00:00'),(2279,0,0,'I',2526,2279,'I002279','2025-12-03',4989,'','','0000-00-00','','',0,0,0,0,2419,'','','','','','N','darshan','darshan','2025-12-03 11:06:31','','0000-00-00 00:00:00'),(2280,0,0,'I',2526,2280,'I002280','2025-12-03',4981,'','','0000-00-00','','',0,0,0,0,1144,'','','','','','N','darshan','darshan','2025-12-03 11:23:07','','0000-00-00 00:00:00'),(2281,0,0,'I',2526,2281,'I002281','2025-12-03',5000,'','','0000-00-00','','',0,0,0,0,3427,'','','','','','N','drjayant','drjayant','2025-12-03 11:28:06','','0000-00-00 00:00:00'),(2282,0,0,'I',2526,2282,'I002282','2025-12-03',4990,'','','0000-00-00','','',0,0,0,0,3421,'','','','','','N','darshan','darshan','2025-12-03 11:35:17','','0000-00-00 00:00:00'),(2283,0,0,'I',2526,2283,'I002283','2025-12-03',4991,'','','0000-00-00','','',0,0,0,0,3422,'','','','','','N','darshan','darshan','2025-12-03 11:38:35','','0000-00-00 00:00:00'),(2284,0,0,'I',2526,2284,'I002284','2025-12-03',5007,'','','0000-00-00','','',0,0,0,0,33,'','','','','','N','drarchit','drarchit','2025-12-03 11:42:08','','0000-00-00 00:00:00'),(2285,0,0,'I',2526,2285,'I002285','2025-12-03',5002,'','','0000-00-00','','',0,0,0,0,3428,'','','','','','N','darshan','darshan','2025-12-03 11:42:47','','0000-00-00 00:00:00'),(2286,0,0,'I',2526,2286,'I002286','2025-12-03',5011,'','','0000-00-00','','',0,0,0,0,3432,'','','','','','N','drjayant','drjayant','2025-12-03 11:43:35','','0000-00-00 00:00:00'),(2287,0,0,'I',2526,2287,'I002287','2025-12-03',4994,'','','0000-00-00','','',0,0,0,0,3424,'','','','','','N','drarchit','drarchit','2025-12-03 11:53:22','','0000-00-00 00:00:00'),(2288,0,0,'I',2526,2288,'I002288','2025-12-03',4984,'','','0000-00-00','','',0,0,0,0,3418,'','','','','','N','darshan','darshan','2025-12-03 11:54:29','','0000-00-00 00:00:00'),(2289,0,0,'I',2526,2289,'I002289','2025-12-03',5013,'','','0000-00-00','','',0,0,0,0,708,'','','','','','N','drarchit','drarchit','2025-12-03 11:56:51','','0000-00-00 00:00:00'),(2290,0,0,'I',2526,2290,'I002290','2025-12-03',5005,'','','0000-00-00','','',0,0,0,0,1595,'','','','','','N','darshan','darshan','2025-12-03 11:59:29','','0000-00-00 00:00:00'),(2291,0,0,'I',2526,2291,'I002291','2025-12-03',4985,'','','0000-00-00','','',0,0,0,0,1556,'','','','','','N','drarchit','drarchit','2025-12-03 12:00:28','','0000-00-00 00:00:00'),(2292,0,0,'I',2526,2292,'I002292','2025-12-03',4992,'','','0000-00-00','','',0,0,0,0,3423,'','','','','','N','darshan','darshan','2025-12-03 12:03:26','','0000-00-00 00:00:00'),(2293,0,0,'I',2526,2293,'I002293','2025-12-03',5024,'','','0000-00-00','','',0,0,0,0,3439,'','','','','','N','drarchit','drarchit','2025-12-03 12:17:17','','0000-00-00 00:00:00'),(2294,0,0,'I',2526,2294,'I002294','2025-12-03',5004,'','','0000-00-00','','',0,0,0,0,2406,'','','','','','N','darshan','darshan','2025-12-03 12:17:55','','0000-00-00 00:00:00'),(2295,0,0,'I',2526,2295,'I002295','2025-12-03',5010,'','','0000-00-00','','',0,0,0,0,3431,'','','','','','N','darshan','darshan','2025-12-03 12:22:36','','0000-00-00 00:00:00'),(2296,0,0,'I',2526,2296,'I002296','2025-12-03',5003,'','','0000-00-00','','',0,0,0,0,3429,'','','','','','N','drarchit','drarchit','2025-12-03 12:28:42','','0000-00-00 00:00:00'),(2297,0,0,'I',2526,2297,'I002297','2025-12-03',5026,'','','0000-00-00','','',0,0,0,0,3440,'','','','','','N','drarchit','drarchit','2025-12-03 12:33:11','','0000-00-00 00:00:00'),(2298,0,0,'I',2526,2298,'I002298','2025-12-03',5025,'','','0000-00-00','','',0,0,0,0,1457,'','','','','','N','darshan','darshan','2025-12-03 12:39:16','','0000-00-00 00:00:00'),(2299,0,0,'I',2526,2299,'I002299','2025-12-03',5017,'','','0000-00-00','','',0,0,0,0,3436,'','','','','','N','drarchit','drarchit','2025-12-03 12:45:52','','0000-00-00 00:00:00'),(2300,0,0,'I',2526,2300,'I002300','2025-12-03',4993,'','','0000-00-00','','',0,0,0,0,101,'','','','','','N','drarchit','drarchit','2025-12-03 12:48:50','','0000-00-00 00:00:00'),(2301,0,0,'I',2526,2301,'I002301','2025-12-03',5014,'','','0000-00-00','','',0,0,0,0,3434,'','','','','','N','darshan','darshan','2025-12-03 12:49:26','','0000-00-00 00:00:00'),(2302,0,0,'I',2526,2302,'I002302','2025-12-03',4987,'','','0000-00-00','','',0,0,0,0,3420,'','','','','','N','drarchit','drarchit','2025-12-03 12:53:36','','0000-00-00 00:00:00'),(2303,0,0,'I',2526,2303,'I002303','2025-12-03',5016,'','','0000-00-00','','',0,0,0,0,1807,'','','','','','N','darshan','darshan','2025-12-03 12:53:57','','0000-00-00 00:00:00'),(2304,0,0,'I',2526,2304,'I002304','2025-12-03',4666,'','','0000-00-00','','',0,0,0,0,3248,'','','','','','N','darshan','darshan','2025-12-03 12:56:55','','0000-00-00 00:00:00'),(2305,0,0,'I',2526,2305,'I002305','2025-12-03',5028,'','','0000-00-00','','',0,0,0,0,3441,'','','','','','N','drarchit','drarchit','2025-12-03 13:00:32','','0000-00-00 00:00:00'),(2306,0,0,'I',2526,2306,'I002306','2025-12-03',5018,'','','0000-00-00','','',0,0,0,0,3437,'','','','','','N','darshan','darshan','2025-12-03 13:02:14','','0000-00-00 00:00:00'),(2307,0,0,'I',2526,2307,'I002307','2025-12-03',5006,'','','0000-00-00','','',0,0,0,0,3430,'','','','','','N','drarchit','drarchit','2025-12-03 13:03:35','','0000-00-00 00:00:00'),(2308,0,0,'I',2526,2308,'I002308','2025-12-03',5032,'','','0000-00-00','','',0,0,0,0,3444,'','','','','','N','drarchit','drarchit','2025-12-03 13:06:50','','0000-00-00 00:00:00'),(2309,0,0,'I',2526,2309,'I002309','2025-12-03',4986,'','','0000-00-00','','',0,0,0,0,3419,'','','','','','N','drarchit','drarchit','2025-12-03 13:08:47','','0000-00-00 00:00:00'),(2310,0,0,'I',2526,2310,'I002310','2025-12-03',5031,'','','0000-00-00','','',0,0,0,0,3443,'','','','','','N','drarchit','drarchit','2025-12-03 13:15:40','','0000-00-00 00:00:00'),(2311,0,0,'I',2526,2311,'I002311','2025-12-03',5030,'','','0000-00-00','','',0,0,0,0,931,'','','','','','N','drarchit','drarchit','2025-12-03 13:18:34','','0000-00-00 00:00:00'),(2312,0,0,'I',2526,2312,'I002312','2025-12-03',5012,'','','0000-00-00','','',0,0,0,0,3433,'','','','','','N','darshan','darshan','2025-12-03 13:22:12','','0000-00-00 00:00:00'),(2313,0,0,'I',2526,2313,'I002313','2025-12-03',5034,'','','0000-00-00','','',0,0,0,0,1683,'','','','','','N','darshan','darshan','2025-12-03 13:45:16','','0000-00-00 00:00:00'),(2314,0,0,'I',2526,2314,'I002314','2025-12-03',5033,'','','0000-00-00','','',0,0,0,0,3445,'','','','','','N','darshan','darshan','2025-12-03 13:50:28','','0000-00-00 00:00:00'),(2315,0,0,'I',2526,2315,'I002315','2025-12-03',5042,'','','0000-00-00','','',0,0,0,0,2424,'','','','','','N','darshan','darshan','2025-12-03 17:00:43','','0000-00-00 00:00:00'),(2316,0,0,'I',2526,2316,'I002316','2025-12-03',4980,'','','0000-00-00','','',0,0,0,0,3416,'','','','','','N','darshan','darshan','2025-12-03 17:08:20','','0000-00-00 00:00:00'),(2317,0,0,'I',2526,2317,'I002317','2025-12-03',5044,'','','0000-00-00','','',0,0,0,0,3448,'','','','','','N','darshan','darshan','2025-12-03 17:32:42','','0000-00-00 00:00:00'),(2318,0,0,'I',2526,2318,'I002318','2025-12-03',5050,'','','0000-00-00','','',0,0,0,0,2493,'','','','','','N','darshan','darshan','2025-12-03 17:42:05','','0000-00-00 00:00:00'),(2319,0,0,'I',2526,2319,'I002319','2025-12-03',5053,'','','0000-00-00','','',0,0,0,0,1017,'','','','','','N','darshan','darshan','2025-12-03 17:54:53','','0000-00-00 00:00:00'),(2320,0,0,'I',2526,2320,'I002320','2025-12-03',5058,'','','0000-00-00','','',0,0,0,0,2426,'','','','','','N','darshan','darshan','2025-12-03 18:09:25','','0000-00-00 00:00:00'),(2321,0,0,'I',2526,2321,'I002321','2025-12-03',5072,'','','0000-00-00','','',0,0,0,0,2727,'','','','','','N','drarchit','drarchit','2025-12-03 18:18:03','','0000-00-00 00:00:00'),(2322,0,0,'I',2526,2322,'I002322','2025-12-03',5068,'','','0000-00-00','','',0,0,0,0,3465,'','','','','','N','drarchit','drarchit','2025-12-03 18:27:47','','0000-00-00 00:00:00'),(2323,0,0,'I',2526,2323,'I002323','2025-12-03',5060,'','','0000-00-00','','',0,0,0,0,3458,'','','','','','N','darshan','darshan','2025-12-03 18:36:27','','0000-00-00 00:00:00'),(2324,0,0,'I',2526,2324,'I002324','2025-12-03',5069,'','','0000-00-00','','',0,0,0,0,3466,'','','','','','N','drarchit','drarchit','2025-12-03 18:36:58','','0000-00-00 00:00:00'),(2325,0,0,'I',2526,2325,'I002325','2025-12-03',4821,'','','0000-00-00','','',0,0,0,0,3328,'','','','','','N','darshan','darshan','2025-12-03 18:39:34','','0000-00-00 00:00:00'),(2326,0,0,'I',2526,2326,'I002326','2025-12-03',5071,'','','0000-00-00','','',0,0,0,0,3468,'','','','','','N','drarchit','drarchit','2025-12-03 18:41:23','','0000-00-00 00:00:00'),(2327,0,0,'I',2526,2327,'I002327','2025-12-03',5077,'','','0000-00-00','','',0,0,0,0,3473,'','','','','','N','drjayant','drjayant','2025-12-03 18:42:15','','0000-00-00 00:00:00'),(2328,0,0,'I',2526,2328,'I002328','2025-12-03',5062,'','','0000-00-00','','',0,0,0,0,3460,'','','','','','N','darshan','darshan','2025-12-03 18:43:25','','0000-00-00 00:00:00'),(2329,0,0,'I',2526,2329,'I002329','2025-12-03',5083,'','','0000-00-00','','',0,0,0,0,2685,'','','','','','N','drarchit','drarchit','2025-12-03 18:44:14','','0000-00-00 00:00:00'),(2330,0,0,'I',2526,2330,'I002330','2025-12-03',5052,'','','0000-00-00','','',0,0,0,0,3453,'','','','','','N','darshan','darshan','2025-12-03 18:48:35','','0000-00-00 00:00:00'),(2331,0,0,'I',2526,2331,'I002331','2025-12-03',5076,'','','0000-00-00','','',0,0,0,0,3472,'','','','','','N','drarchit','drarchit','2025-12-03 18:49:29','','0000-00-00 00:00:00'),(2332,0,0,'I',2526,2332,'I002332','2025-12-03',5073,'','','0000-00-00','','',0,0,0,0,3469,'','','','','','N','drarchit','drarchit','2025-12-03 18:54:58','','0000-00-00 00:00:00'),(2333,0,0,'I',2526,2333,'I002333','2025-12-03',5088,'','','0000-00-00','','',0,0,0,0,3483,'','','','','','N','drjayant','drjayant','2025-12-03 18:57:01','','0000-00-00 00:00:00'),(2334,0,0,'I',2526,2334,'I002334','2025-12-03',5055,'','','0000-00-00','','',0,0,0,0,3454,'','','','','','N','darshan','darshan','2025-12-03 19:00:28','','0000-00-00 00:00:00'),(2335,0,0,'I',2526,2335,'I002335','2025-12-03',5080,'','','0000-00-00','','',0,0,0,0,3476,'','','','','','N','drarchit','drarchit','2025-12-03 19:03:19','','0000-00-00 00:00:00'),(2336,0,0,'I',2526,2336,'I002336','2025-12-03',5091,'','','0000-00-00','','',0,0,0,0,3484,'','','','','','N','darshan','darshan','2025-12-03 19:08:25','','0000-00-00 00:00:00'),(2337,0,0,'I',2526,2337,'I002337','2025-12-03',5085,'','','0000-00-00','','',0,0,0,0,3480,'','','','','','N','drarchit','drarchit','2025-12-03 19:09:28','','0000-00-00 00:00:00'),(2338,0,0,'I',2526,2338,'I002338','2025-12-03',5059,'','','0000-00-00','','',0,0,0,0,3457,'','','','','','N','darshan','darshan','2025-12-03 19:10:01','','0000-00-00 00:00:00'),(2339,0,0,'I',2526,2339,'I002339','2025-12-03',5095,'','','0000-00-00','','',0,0,0,0,3487,'','','','','','N','drjayant','drjayant','2025-12-03 19:14:54','','0000-00-00 00:00:00'),(2340,0,0,'I',2526,2340,'I002340','2025-12-03',5087,'','','0000-00-00','','',0,0,0,0,3482,'','','','','','N','drarchit','drarchit','2025-12-03 19:20:14','','0000-00-00 00:00:00'),(2341,0,0,'I',2526,2341,'I002341','2025-12-03',5045,'','','0000-00-00','','',0,0,0,0,3449,'','','','','','N','drjayant','drjayant','2025-12-03 19:20:27','','0000-00-00 00:00:00'),(2342,0,0,'I',2526,2342,'I002342','2025-12-03',5067,'','','0000-00-00','','',0,0,0,0,3464,'','','','','','N','darshan','darshan','2025-12-03 19:26:02','','0000-00-00 00:00:00'),(2343,0,0,'I',2526,2343,'I002343','2025-12-03',5099,'','','0000-00-00','','',0,0,0,0,1085,'','','','','','N','drarchit','drarchit','2025-12-03 19:27:47','','0000-00-00 00:00:00'),(2344,0,0,'I',2526,2344,'I002344','2025-12-03',5097,'','','0000-00-00','','',0,0,0,0,3489,'','','','','','N','darshan','darshan','2025-12-03 19:31:39','','0000-00-00 00:00:00'),(2345,0,0,'I',2526,2345,'I002345','2025-12-03',5065,'','','0000-00-00','','',0,0,0,0,1147,'','','','','','N','darshan','darshan','2025-12-03 19:38:12','','0000-00-00 00:00:00'),(2346,0,0,'I',2526,2346,'I002346','2025-12-03',5064,'','','0000-00-00','','',0,0,0,0,3462,'','','','','','N','darshan','darshan','2025-12-03 19:42:44','','0000-00-00 00:00:00'),(2347,0,0,'I',2526,2347,'I002347','2025-12-03',5103,'','','0000-00-00','','',0,0,0,0,3493,'','','','','','N','darshan','darshan','2025-12-03 19:48:49','','0000-00-00 00:00:00'),(2348,0,0,'I',2526,2348,'I002348','2025-12-03',5074,'','','0000-00-00','','',0,0,0,0,3470,'','','','','','N','darshan','darshan','2025-12-03 19:56:31','','0000-00-00 00:00:00'),(2349,0,0,'I',2526,2349,'I002349','2025-12-03',5081,'','','0000-00-00','','',0,0,0,0,3477,'','','','','','N','darshan','darshan','2025-12-03 20:00:04','','0000-00-00 00:00:00'),(2350,0,0,'I',2526,2350,'I002350','2025-12-03',5079,'','','0000-00-00','','',0,0,0,0,3475,'','','','','','N','darshan','darshan','2025-12-03 20:02:02','','0000-00-00 00:00:00'),(2351,0,0,'I',2526,2351,'I002351','2025-12-04',5111,'','','0000-00-00','','',0,0,0,0,2407,'','','','','','N','darshan','darshan','2025-12-04 10:50:11','','0000-00-00 00:00:00'),(2352,0,0,'I',2526,2352,'I002352','2025-12-04',5114,'','','0000-00-00','','',0,0,0,0,2486,'','','','','','N','darshan','darshan','2025-12-04 11:00:21','','0000-00-00 00:00:00'),(2353,0,0,'I',2526,2353,'I002353','2025-12-04',5116,'','','0000-00-00','','',0,0,0,0,2908,'','','','','','N','darshan','darshan','2025-12-04 11:05:17','','0000-00-00 00:00:00'),(2354,0,0,'I',2526,2354,'I002354','2025-12-04',5121,'','','0000-00-00','','',0,0,0,0,3500,'','','','','','N','darshan','darshan','2025-12-04 11:21:54','','0000-00-00 00:00:00'),(2355,0,0,'I',2526,2355,'I002355','2025-12-04',5112,'','','0000-00-00','','',0,0,0,0,3497,'','','','','','N','drjayant','drjayant','2025-12-04 11:23:58','','0000-00-00 00:00:00'),(2356,0,0,'I',2526,2356,'I002356','2025-12-04',5118,'','','0000-00-00','','',0,0,0,0,3499,'','','','','','N','drarchit','drarchit','2025-12-04 11:27:27','','0000-00-00 00:00:00'),(2357,0,0,'I',2526,2357,'I002357','2025-12-04',5122,'','','0000-00-00','','',0,0,0,0,3501,'','','','','','N','darshan','darshan','2025-12-04 11:35:10','','0000-00-00 00:00:00'),(2358,0,0,'I',2526,2358,'I002358','2025-12-04',5126,'','','0000-00-00','','',0,0,0,0,1857,'','','','','','N','darshan','darshan','2025-12-04 11:38:51','','0000-00-00 00:00:00'),(2359,0,0,'I',2526,2359,'I002359','2025-12-04',5123,'','','0000-00-00','','',0,0,0,0,3502,'','','','','','N','darshan','darshan','2025-12-04 11:41:45','','0000-00-00 00:00:00'),(2360,0,0,'I',2526,2360,'I002360','2025-12-04',5124,'','','0000-00-00','','',0,0,0,0,2712,'','','','','','N','darshan','darshan','2025-12-04 11:49:32','','0000-00-00 00:00:00'),(2361,0,0,'I',2526,2361,'I002361','2025-12-04',5128,'','','0000-00-00','','',0,0,0,0,3504,'','','','','','N','drarchit','drarchit','2025-12-04 11:50:15','','0000-00-00 00:00:00'),(2362,0,0,'I',2526,2362,'I002362','2025-12-04',5127,'','','0000-00-00','','',0,0,0,0,2300,'','','','','','N','darshan','darshan','2025-12-04 11:58:40','','0000-00-00 00:00:00'),(2363,0,0,'I',2526,2363,'I002363','2025-12-04',5125,'','','0000-00-00','','',0,0,0,0,3503,'','','','','','N','drarchit','drarchit','2025-12-04 12:03:05','','0000-00-00 00:00:00'),(2364,0,0,'I',2526,2364,'I002364','2025-12-04',5130,'','','0000-00-00','','',0,0,0,0,3506,'','','','','','N','darshan','darshan','2025-12-04 12:05:29','','0000-00-00 00:00:00'),(2365,0,0,'I',2526,2365,'I002365','2025-12-04',5134,'','','0000-00-00','','',0,0,0,0,3509,'','','','','','N','drarchit','drarchit','2025-12-04 12:13:00','','0000-00-00 00:00:00'),(2366,0,0,'I',2526,2366,'I002366','2025-12-04',5137,'','','0000-00-00','','',0,0,0,0,3511,'','','','','','N','darshan','darshan','2025-12-04 12:13:08','','0000-00-00 00:00:00'),(2367,0,0,'I',2526,2367,'I002367','2025-12-04',5140,'','','0000-00-00','','',0,0,0,0,3513,'','','','','','N','drarchit','drarchit','2025-12-04 12:16:18','','0000-00-00 00:00:00'),(2368,0,0,'I',2526,2368,'I002368','2025-12-04',5142,'','','0000-00-00','','',0,0,0,0,3515,'','','','','','N','drjayant','drjayant','2025-12-04 12:18:34','','0000-00-00 00:00:00'),(2369,0,0,'I',2526,2369,'I002369','2025-12-04',5144,'','','0000-00-00','','',0,0,0,0,3516,'','','','','','N','drarchit','drarchit','2025-12-04 12:21:18','','0000-00-00 00:00:00'),(2370,0,0,'I',2526,2370,'I002370','2025-12-04',5145,'','','0000-00-00','','',0,0,0,0,3517,'','','','','','N','drarchit','drarchit','2025-12-04 12:24:48','','0000-00-00 00:00:00'),(2371,0,0,'I',2526,2371,'I002371','2025-12-04',5133,'','','0000-00-00','','',0,0,0,0,3508,'','','','','','N','darshan','darshan','2025-12-04 12:28:21','','0000-00-00 00:00:00'),(2372,0,0,'I',2526,2372,'I002372','2025-12-04',5147,'','','0000-00-00','','',0,0,0,0,3519,'','','','','','N','drarchit','drarchit','2025-12-04 12:28:22','','0000-00-00 00:00:00'),(2373,0,0,'I',2526,2373,'I002373','2025-12-04',5119,'','','0000-00-00','','',0,0,0,0,2256,'','','','','','N','drarchit','drarchit','2025-12-04 12:31:03','','0000-00-00 00:00:00'),(2374,0,0,'I',2526,2374,'I002374','2025-12-04',5149,'','','0000-00-00','','',0,0,0,0,2592,'','','','','','N','drarchit','drarchit','2025-12-04 12:36:19','','0000-00-00 00:00:00'),(2375,0,0,'I',2526,2375,'I002375','2025-12-04',5150,'','','0000-00-00','','',0,0,0,0,3520,'','','','','','N','drjayant','drjayant','2025-12-04 12:40:44','','0000-00-00 00:00:00'),(2376,0,0,'I',2526,2376,'I002376','2025-12-04',5155,'','','0000-00-00','','',0,0,0,0,3523,'','','','','','N','drarchit','drarchit','2025-12-04 12:48:03','','0000-00-00 00:00:00'),(2377,0,0,'I',2526,2377,'I002377','2025-12-04',5146,'','','0000-00-00','','',0,0,0,0,3518,'','','','','','N','darshan','darshan','2025-12-04 12:56:27','','0000-00-00 00:00:00'),(2378,0,0,'I',2526,2378,'I002378','2025-12-04',5151,'','','0000-00-00','','',0,0,0,0,3521,'','','','','','N','darshan','darshan','2025-12-04 13:01:32','','0000-00-00 00:00:00'),(2379,0,0,'I',2526,2379,'I002379','2025-12-04',5152,'','','0000-00-00','','',0,0,0,0,3522,'','','','','','N','darshan','darshan','2025-12-04 13:04:35','','0000-00-00 00:00:00'),(2380,0,0,'I',2526,2380,'I002380','2025-12-04',5109,'','','0000-00-00','','',0,0,0,0,3495,'','','','','','N','drarchit','drarchit','2025-12-04 13:06:19','','0000-00-00 00:00:00'),(2381,0,0,'I',2526,2381,'I002381','2025-12-04',5129,'','','0000-00-00','','',0,0,0,0,3505,'','','','','','N','drarchit','drarchit','2025-12-04 13:07:50','','0000-00-00 00:00:00'),(2382,0,0,'I',2526,2382,'I002382','2025-12-04',5158,'','','0000-00-00','','',0,0,0,0,1862,'','','','','','N','darshan','darshan','2025-12-04 13:07:59','','0000-00-00 00:00:00'),(2383,0,0,'I',2526,2383,'I002383','2025-12-04',5159,'','','0000-00-00','','',0,0,0,0,3526,'','','','','','N','drarchit','drarchit','2025-12-04 13:16:03','','0000-00-00 00:00:00'),(2384,0,0,'I',2526,2384,'I002384','2025-12-04',5161,'','','0000-00-00','','',0,0,0,0,1631,'','','','','','N','darshan','darshan','2025-12-04 13:26:12','','0000-00-00 00:00:00'),(2385,0,0,'I',2526,2385,'I002385','2025-12-04',5160,'','','0000-00-00','','',0,0,0,0,3527,'','','','','','N','darshan','darshan','2025-12-04 13:28:36','','0000-00-00 00:00:00'),(2386,0,0,'I',2526,2386,'I002386','2025-12-04',5141,'','','0000-00-00','','',0,0,0,0,3514,'','','','','','N','darshan','darshan','2025-12-04 13:39:00','','0000-00-00 00:00:00'),(2387,0,0,'I',2526,2387,'I002387','2025-12-04',5143,'','','0000-00-00','','',0,0,0,0,513,'','','','','','N','darshan','darshan','2025-12-04 13:44:52','','0000-00-00 00:00:00'),(2388,0,0,'I',2526,2388,'I002388','2025-12-04',5166,'','','0000-00-00','','',0,0,0,0,2678,'','','','','','N','darshan','darshan','2025-12-04 17:08:00','','0000-00-00 00:00:00'),(2389,0,0,'I',2526,2389,'I002389','2025-12-04',5167,'','','0000-00-00','','',0,0,0,0,2830,'','','','','','N','darshan','darshan','2025-12-04 17:13:26','','0000-00-00 00:00:00'),(2390,0,0,'I',2526,2390,'I002390','2025-12-04',5177,'','','0000-00-00','','',0,0,0,0,3535,'','','','','','N','darshan','darshan','2025-12-04 17:55:57','','0000-00-00 00:00:00'),(2391,0,0,'I',2526,2391,'I002391','2025-12-04',5179,'','','0000-00-00','','',0,0,0,0,3536,'','','','','','N','darshan','darshan','2025-12-04 18:01:33','','0000-00-00 00:00:00'),(2392,0,0,'I',2526,2392,'I002392','2025-12-04',5176,'','','0000-00-00','','',0,0,0,0,803,'','','','','','N','darshan','darshan','2025-12-04 18:04:45','','0000-00-00 00:00:00'),(2393,0,0,'I',2526,2393,'I002393','2025-12-04',5180,'','','0000-00-00','','',0,0,0,0,1885,'','','','','','N','darshan','darshan','2025-12-04 18:05:32','','0000-00-00 00:00:00'),(2394,0,0,'I',2526,2394,'I002394','2025-12-04',5178,'','','0000-00-00','','',0,0,0,0,3127,'','','','','','N','darshan','darshan','2025-12-04 18:11:50','','0000-00-00 00:00:00'),(2395,0,0,'I',2526,2395,'I002395','2025-12-04',5182,'','','0000-00-00','','',0,0,0,0,721,'','','','','','N','drarchit','drarchit','2025-12-04 18:19:36','','0000-00-00 00:00:00'),(2396,0,0,'I',2526,2396,'I002396','2025-12-04',5100,'','','0000-00-00','','',0,0,0,0,3491,'','','','','','N','darshan','darshan','2025-12-04 18:23:28','','0000-00-00 00:00:00'),(2397,0,0,'I',2526,2397,'I002397','2025-12-04',5189,'','','0000-00-00','','',0,0,0,0,3542,'','','','','','N','drarchit','drarchit','2025-12-04 18:23:57','','0000-00-00 00:00:00'),(2398,0,0,'I',2526,2398,'I002398','2025-12-04',5186,'','','0000-00-00','','',0,0,0,0,3540,'','','','','','N','drarchit','drarchit','2025-12-04 18:27:18','','0000-00-00 00:00:00'),(2399,0,0,'I',2526,2399,'I002399','2025-12-04',5187,'','','0000-00-00','','',0,0,0,0,774,'','','','','','N','darshan','darshan','2025-12-04 18:27:40','','0000-00-00 00:00:00'),(2400,0,0,'I',2526,2400,'I002400','2025-12-04',5192,'','','0000-00-00','','',0,0,0,0,3018,'','','','','','N','drarchit','drarchit','2025-12-04 18:34:12','','0000-00-00 00:00:00'),(2401,0,0,'I',2526,2401,'I002401','2025-12-04',5185,'','','0000-00-00','','',0,0,0,0,3539,'','','','','','N','darshan','darshan','2025-12-04 18:35:25','','0000-00-00 00:00:00'),(2402,0,0,'I',2526,2402,'I002402','2025-12-04',5191,'','','0000-00-00','','',0,0,0,0,3181,'','','','','','N','darshan','darshan','2025-12-04 18:47:19','','0000-00-00 00:00:00'),(2403,0,0,'I',2526,2403,'I002403','2025-12-04',5196,'','','0000-00-00','','',0,0,0,0,833,'','','','','','N','drarchit','drarchit','2025-12-04 18:49:33','','0000-00-00 00:00:00'),(2404,0,0,'I',2526,2404,'I002404','2025-12-04',5199,'','','0000-00-00','','',0,0,0,0,2510,'','','','','','N','drarchit','drarchit','2025-12-04 18:57:25','','0000-00-00 00:00:00'),(2405,0,0,'I',2526,2405,'I002405','2025-12-04',5168,'','','0000-00-00','','',0,0,0,0,3529,'','','','','','N','darshan','darshan','2025-12-04 19:01:54','','0000-00-00 00:00:00'),(2406,0,0,'I',2526,2406,'I002406','2025-12-04',5202,'','','0000-00-00','','',0,0,0,0,2692,'','','','','','N','drarchit','drarchit','2025-12-04 19:01:57','','0000-00-00 00:00:00'),(2407,0,0,'I',2526,2407,'I002407','2025-12-04',5171,'','','0000-00-00','','',0,0,0,0,3532,'','','','','','N','darshan','darshan','2025-12-04 19:05:32','','0000-00-00 00:00:00'),(2408,0,0,'I',2526,2408,'I002408','2025-12-04',5195,'','','0000-00-00','','',0,0,0,0,3544,'','','','','','N','darshan','darshan','2025-12-04 19:06:46','','0000-00-00 00:00:00'),(2409,0,0,'I',2526,2409,'I002409','2025-12-04',5198,'','','0000-00-00','','',0,0,0,0,766,'','','','','','N','darshan','darshan','2025-12-04 19:09:22','','0000-00-00 00:00:00'),(2410,0,0,'I',2526,2410,'I002410','2025-12-04',5084,'','','0000-00-00','','',0,0,0,0,3479,'','','','','','N','drarchit','drarchit','2025-12-04 19:11:11','','0000-00-00 00:00:00'),(2411,0,0,'I',2526,2411,'I002411','2025-12-04',5203,'','','0000-00-00','','',0,0,0,0,2877,'','','','','','N','darshan','darshan','2025-12-04 19:13:10','','0000-00-00 00:00:00'),(2412,0,0,'I',2526,2412,'I002412','2025-12-04',5201,'','','0000-00-00','','',0,0,0,0,3546,'','','','','','N','drarchit','drarchit','2025-12-04 19:15:37','','0000-00-00 00:00:00'),(2413,0,0,'I',2526,2413,'I002413','2025-12-04',5205,'','','0000-00-00','','',0,0,0,0,3548,'','','','','','N','drarchit','drarchit','2025-12-04 19:18:43','','0000-00-00 00:00:00'),(2414,0,0,'I',2526,2414,'I002414','2025-12-04',5209,'','','0000-00-00','','',0,0,0,0,3549,'','','','','','N','darshan','darshan','2025-12-04 19:27:06','','0000-00-00 00:00:00'),(2415,0,0,'I',2526,2415,'I002415','2025-12-04',5210,'','','0000-00-00','','',0,0,0,0,3550,'','','','','','N','darshan','darshan','2025-12-04 19:31:09','','0000-00-00 00:00:00'),(2416,0,0,'I',2526,2416,'I002416','2025-12-04',5213,'','','0000-00-00','','',0,0,0,0,3552,'','','','','','N','drarchit','drarchit','2025-12-04 19:36:21','','0000-00-00 00:00:00'),(2417,0,0,'I',2526,2417,'I002417','2025-12-04',5211,'','','0000-00-00','','',0,0,0,0,3551,'','','','','','N','darshan','darshan','2025-12-04 19:36:27','','0000-00-00 00:00:00'),(2418,0,0,'I',2526,2418,'I002418','2025-12-04',5212,'','','0000-00-00','','',0,0,0,0,1721,'','','','','','N','darshan','darshan','2025-12-04 19:39:27','','0000-00-00 00:00:00'),(2419,0,0,'I',2526,2419,'I002419','2025-12-04',5215,'','','0000-00-00','','',0,0,0,0,2952,'','','','','','N','drarchit','drarchit','2025-12-04 20:13:45','','0000-00-00 00:00:00'),(2420,0,0,'I',2526,2420,'I002420','2025-12-05',5220,'','','0000-00-00','','',0,0,0,0,1580,'','','','','','N','darshan','darshan','2025-12-05 10:52:50','','0000-00-00 00:00:00'),(2421,0,0,'I',2526,2421,'I002421','2025-12-05',5219,'','','0000-00-00','','',0,0,0,0,2980,'','','','','','N','darshan','darshan','2025-12-05 10:57:46','','0000-00-00 00:00:00'),(2422,0,0,'I',2526,2422,'I002422','2025-12-05',5228,'','','0000-00-00','','',0,0,0,0,2062,'','','','','','N','darshan','darshan','2025-12-05 11:03:45','','0000-00-00 00:00:00'),(2423,0,0,'I',2526,2423,'I002423','2025-12-05',5222,'','','0000-00-00','','',0,0,0,0,3556,'','','','','','N','darshan','darshan','2025-12-05 11:22:20','','0000-00-00 00:00:00'),(2424,0,0,'I',2526,2424,'I002424','2025-12-05',5225,'','','0000-00-00','','',0,0,0,0,3557,'','','','','','N','drarchit','drarchit','2025-12-05 11:27:43','','0000-00-00 00:00:00'),(2425,0,0,'I',2526,2425,'I002425','2025-12-05',5230,'','','0000-00-00','','',0,0,0,0,2295,'','','','','','N','drarchit','drarchit','2025-12-05 11:30:29','','0000-00-00 00:00:00'),(2426,0,0,'I',2526,2426,'I002426','2025-12-05',5231,'','','0000-00-00','','',0,0,0,0,3561,'','','','','','N','drarchit','drarchit','2025-12-05 11:34:09','','0000-00-00 00:00:00'),(2427,0,0,'I',2526,2427,'I002427','2025-12-05',5227,'','','0000-00-00','','',0,0,0,0,3559,'','','','','','N','darshan','darshan','2025-12-05 11:40:18','','0000-00-00 00:00:00'),(2428,0,0,'I',2526,2428,'I002428','2025-12-05',5234,'','','0000-00-00','','',0,0,0,0,3564,'','','','','','N','drarchit','drarchit','2025-12-05 11:41:33','','0000-00-00 00:00:00'),(2429,0,0,'I',2526,2429,'I002429','2025-12-05',5236,'','','0000-00-00','','',0,0,0,0,3566,'','','','','','N','darshan','darshan','2025-12-05 11:45:57','','0000-00-00 00:00:00'),(2430,0,0,'I',2526,2430,'I002430','2025-12-05',5248,'','','0000-00-00','','',0,0,0,0,3576,'','','','','','N','drarchit','drarchit','2025-12-05 11:54:00','','0000-00-00 00:00:00'),(2431,0,0,'I',2526,2431,'I002431','2025-12-05',5240,'','','0000-00-00','','',0,0,0,0,1575,'','','','','','N','darshan','darshan','2025-12-05 11:55:39','','0000-00-00 00:00:00'),(2432,0,0,'I',2526,2432,'I002432','2025-12-05',5252,'','','0000-00-00','','',0,0,0,0,3577,'','','','','','N','drarchit','drarchit','2025-12-05 11:56:34','','0000-00-00 00:00:00'),(2433,0,0,'I',2526,2433,'I002433','2025-12-05',5249,'','','0000-00-00','','',0,0,0,0,164,'','','','','','N','darshan','darshan','2025-12-05 12:11:31','','0000-00-00 00:00:00'),(2434,0,0,'I',2526,2434,'I002434','2025-12-05',5239,'','','0000-00-00','','',0,0,0,0,3569,'','','','','','N','darshan','darshan','2025-12-05 12:20:37','','0000-00-00 00:00:00'),(2435,0,0,'I',2526,2435,'I002435','2025-12-05',5251,'','','0000-00-00','','',0,0,0,0,2987,'','','','','','N','darshan','darshan','2025-12-05 12:32:24','','0000-00-00 00:00:00'),(2436,0,0,'I',2526,2436,'I002436','2025-12-05',5257,'','','0000-00-00','','',0,0,0,0,3581,'','','','','','N','drarchit','drarchit','2025-12-05 12:34:10','','0000-00-00 00:00:00'),(2437,0,0,'I',2526,2437,'I002437','2025-12-05',5250,'','','0000-00-00','','',0,0,0,0,1510,'','','','','','N','darshan','darshan','2025-12-05 12:35:36','','0000-00-00 00:00:00'),(2438,0,0,'I',2526,2438,'I002438','2025-12-05',5244,'','','0000-00-00','','',0,0,0,0,3572,'','','','','','N','darshan','darshan','2025-12-05 12:40:32','','0000-00-00 00:00:00'),(2439,0,0,'I',2526,2439,'I002439','2025-12-05',5255,'','','0000-00-00','','',0,0,0,0,3579,'','','','','','N','drarchit','drarchit','2025-12-05 12:42:41','','0000-00-00 00:00:00'),(2440,0,0,'I',2526,2440,'I002440','2025-12-05',5253,'','','0000-00-00','','',0,0,0,0,3578,'','','','','','N','darshan','darshan','2025-12-05 12:43:39','','0000-00-00 00:00:00'),(2441,0,0,'I',2526,2441,'I002441','2025-12-05',5258,'','','0000-00-00','','',0,0,0,0,3582,'','','','','','N','drarchit','drarchit','2025-12-05 12:47:34','','0000-00-00 00:00:00'),(2442,0,0,'I',2526,2442,'I002442','2025-12-05',5221,'','','0000-00-00','','',0,0,0,0,3555,'','','','','','N','darshan','darshan','2025-12-05 12:48:00','','0000-00-00 00:00:00'),(2443,0,0,'I',2526,2443,'I002443','2025-12-05',5261,'','','0000-00-00','','',0,0,0,0,3585,'','','','','','N','drarchit','drarchit','2025-12-05 12:52:46','','0000-00-00 00:00:00'),(2444,0,0,'I',2526,2444,'I002444','2025-12-05',5226,'','','0000-00-00','','',0,0,0,0,3558,'','','','','','N','darshan','darshan','2025-12-05 13:04:33','','0000-00-00 00:00:00'),(2445,0,0,'I',2526,2445,'I002445','2025-12-05',5259,'','','0000-00-00','','',0,0,0,0,3583,'','','','','','N','darshan','darshan','2025-12-05 13:09:12','','0000-00-00 00:00:00'),(2446,0,0,'I',2526,2446,'I002446','2025-12-05',5263,'','','0000-00-00','','',0,0,0,0,3586,'','','','','','N','drarchit','drarchit','2025-12-05 13:12:46','','0000-00-00 00:00:00'),(2447,0,0,'I',2526,2447,'I002447','2025-12-05',5229,'','','0000-00-00','','',0,0,0,0,3560,'','','','','','N','darshan','darshan','2025-12-05 13:14:53','','0000-00-00 00:00:00'),(2448,0,0,'I',2526,2448,'I002448','2025-12-05',5232,'','','0000-00-00','','',0,0,0,0,3562,'','','','','','N','darshan','darshan','2025-12-05 13:30:31','','0000-00-00 00:00:00'),(2449,0,0,'I',2526,2449,'I002449','2025-12-05',5235,'','','0000-00-00','','',0,0,0,0,3565,'','','','','','N','darshan','darshan','2025-12-05 13:41:55','','0000-00-00 00:00:00'),(2450,0,0,'I',2526,2450,'I002450','2025-12-05',5256,'','','0000-00-00','','',0,0,0,0,3580,'','','','','','N','darshan','darshan','2025-12-05 14:03:55','','0000-00-00 00:00:00'),(2451,0,0,'I',2526,2451,'I002451','2025-12-05',5266,'','','0000-00-00','','',0,0,0,0,3588,'','','','','','N','darshan','darshan','2025-12-05 14:12:19','','0000-00-00 00:00:00'),(2452,0,0,'I',2526,2452,'I002452','2025-12-05',5260,'','','0000-00-00','','',0,0,0,0,3584,'','','','','','N','darshan','darshan','2025-12-05 14:14:08','','0000-00-00 00:00:00'),(2453,0,0,'I',2526,2453,'I002453','2025-12-05',5273,'','','0000-00-00','','',0,0,0,0,1129,'','','','','','N','darshan','darshan','2025-12-05 17:22:13','','0000-00-00 00:00:00'),(2454,0,0,'I',2526,2454,'I002454','2025-12-05',5269,'','','0000-00-00','','',0,0,0,0,349,'','','','','','N','darshan','darshan','2025-12-05 17:33:55','','0000-00-00 00:00:00'),(2455,0,0,'I',2526,2455,'I002455','2025-12-05',5275,'','','0000-00-00','','',0,0,0,0,3591,'','','','','','N','darshan','darshan','2025-12-05 17:39:51','','0000-00-00 00:00:00'),(2456,0,0,'I',2526,2456,'I002456','2025-12-05',5279,'','','0000-00-00','','',0,0,0,0,3275,'','','','','','N','darshan','darshan','2025-12-05 17:47:03','','0000-00-00 00:00:00'),(2457,0,0,'I',2526,2457,'I002457','2025-12-05',5281,'','','0000-00-00','','',0,0,0,0,3423,'','','','','','N','darshan','darshan','2025-12-05 17:53:04','','0000-00-00 00:00:00'),(2458,0,0,'I',2526,2458,'I002458','2025-12-05',5283,'','','0000-00-00','','',0,0,0,0,1555,'','','','','','N','darshan','darshan','2025-12-05 17:55:43','','0000-00-00 00:00:00'),(2459,0,0,'I',2526,2459,'I002459','2025-12-05',5288,'','','0000-00-00','','',0,0,0,0,526,'','','','','','N','darshan','darshan','2025-12-05 18:01:07','','0000-00-00 00:00:00'),(2460,0,0,'I',2526,2460,'I002460','2025-12-05',5276,'','','0000-00-00','','',0,0,0,0,3121,'','','','','','N','darshan','darshan','2025-12-05 18:09:39','','0000-00-00 00:00:00'),(2461,0,0,'I',2526,2461,'I002461','2025-12-05',5284,'','','0000-00-00','','',0,0,0,0,3592,'','','','','','N','darshan','darshan','2025-12-05 18:15:12','','0000-00-00 00:00:00'),(2462,0,0,'I',2526,2462,'I002462','2025-12-05',5294,'','','0000-00-00','','',0,0,0,0,2882,'','','','','','N','darshan','darshan','2025-12-05 18:17:42','','0000-00-00 00:00:00'),(2463,0,0,'I',2526,2463,'I002463','2025-12-05',5298,'','','0000-00-00','','',0,0,0,0,3598,'','','','','','N','drarchit','drarchit','2025-12-05 18:19:41','','0000-00-00 00:00:00'),(2464,0,0,'I',2526,2464,'I002464','2025-12-05',5305,'','','0000-00-00','','',0,0,0,0,3600,'','','','','','N','darshan','darshan','2025-12-05 18:27:25','','0000-00-00 00:00:00'),(2465,0,0,'I',2526,2465,'I002465','2025-12-05',5285,'','','0000-00-00','','',0,0,0,0,2535,'','','','','','N','darshan','darshan','2025-12-05 18:32:17','','0000-00-00 00:00:00'),(2466,0,0,'I',2526,2466,'I002466','2025-12-05',5310,'','','0000-00-00','','',0,0,0,0,3603,'','','','','','N','drarchit','drarchit','2025-12-05 18:33:14','','0000-00-00 00:00:00'),(2467,0,0,'I',2526,2467,'I002467','2025-12-05',5287,'','','0000-00-00','','',0,0,0,0,3594,'','','','','','N','darshan','darshan','2025-12-05 18:36:38','','0000-00-00 00:00:00'),(2468,0,0,'I',2526,2468,'I002468','2025-12-05',5313,'','','0000-00-00','','',0,0,0,0,175,'','','','','','N','drjayant','drjayant','2025-12-05 18:40:50','','0000-00-00 00:00:00'),(2469,0,0,'I',2526,2469,'I002469','2025-12-05',5304,'','','0000-00-00','','',0,0,0,0,2989,'','','','','','N','darshan','darshan','2025-12-05 18:48:17','','0000-00-00 00:00:00'),(2470,0,0,'I',2526,2470,'I002470','2025-12-05',5268,'','','0000-00-00','','',0,0,0,0,3589,'','','','','','N','darshan','darshan','2025-12-05 19:05:19','','0000-00-00 00:00:00'),(2471,0,0,'I',2526,2471,'I002471','2025-12-05',5309,'','','0000-00-00','','',0,0,0,0,3602,'','','','','','N','drarchit','drarchit','2025-12-05 19:08:20','','0000-00-00 00:00:00'),(2472,0,0,'I',2526,2472,'I002472','2025-12-05',5306,'','','0000-00-00','','',0,0,0,0,1539,'','','','','','N','darshan','darshan','2025-12-05 19:09:07','','0000-00-00 00:00:00'),(2473,0,0,'I',2526,2473,'I002473','2025-12-05',5317,'','','0000-00-00','','',0,0,0,0,3606,'','','','','','N','drarchit','drarchit','2025-12-05 19:14:08','','0000-00-00 00:00:00'),(2474,0,0,'I',2526,2474,'I002474','2025-12-05',5319,'','','0000-00-00','','',0,0,0,0,1422,'','','','','','N','drarchit','drarchit','2025-12-05 19:18:05','','0000-00-00 00:00:00'),(2475,0,0,'I',2526,2475,'I002475','2025-12-05',5296,'','','0000-00-00','','',0,0,0,0,3597,'','','','','','N','drarchit','drarchit','2025-12-05 19:21:04','','0000-00-00 00:00:00'),(2476,0,0,'I',2526,2476,'I002476','2025-12-05',5300,'','','0000-00-00','','',0,0,0,0,3599,'','','','','','N','darshan','darshan','2025-12-05 19:22:32','','0000-00-00 00:00:00'),(2477,0,0,'I',2526,2477,'I002477','2025-12-05',5320,'','','0000-00-00','','',0,0,0,0,3608,'','','','','','N','drarchit','drarchit','2025-12-05 19:25:46','','0000-00-00 00:00:00'),(2478,0,0,'I',2526,2478,'I002478','2025-12-05',5318,'','','0000-00-00','','',0,0,0,0,3607,'','','','','','N','darshan','darshan','2025-12-05 19:27:43','','0000-00-00 00:00:00'),(2479,0,0,'I',2526,2479,'I002479','2025-12-05',5323,'','','0000-00-00','','',0,0,0,0,3610,'','','','','','N','drarchit','drarchit','2025-12-05 19:34:47','','0000-00-00 00:00:00'),(2480,0,0,'I',2526,2480,'I002480','2025-12-05',5295,'','','0000-00-00','','',0,0,0,0,3596,'','','','','','N','darshan','darshan','2025-12-05 19:36:35','','0000-00-00 00:00:00'),(2481,0,0,'I',2526,2481,'I002481','2025-12-05',5328,'','','0000-00-00','','',0,0,0,0,3613,'','','','','','N','drarchit','drarchit','2025-12-05 19:42:20','','0000-00-00 00:00:00'),(2482,0,0,'I',2526,2482,'I002482','2025-12-05',5329,'','','0000-00-00','','',0,0,0,0,3614,'','','','','','N','darshan','darshan','2025-12-05 19:42:56','','0000-00-00 00:00:00'),(2483,0,0,'I',2526,2483,'I002483','2025-12-05',5326,'','','0000-00-00','','',0,0,0,0,3612,'','','','','','N','drarchit','drarchit','2025-12-05 19:46:45','','0000-00-00 00:00:00'),(2484,0,0,'I',2526,2484,'I002484','2025-12-05',5331,'','','0000-00-00','','',0,0,0,0,3616,'','','','','','N','darshan','darshan','2025-12-05 19:53:32','','0000-00-00 00:00:00'),(2485,0,0,'I',2526,2485,'I002485','2025-12-05',5332,'','','0000-00-00','','',0,0,0,0,3617,'','','','','','N','darshan','darshan','2025-12-05 19:57:38','','0000-00-00 00:00:00'),(2486,0,0,'I',2526,2486,'I002486','2025-12-05',5330,'','','0000-00-00','','',0,0,0,0,3615,'','','','','','N','drarchit','drarchit','2025-12-05 19:57:41','','0000-00-00 00:00:00'),(2487,0,0,'I',2526,2487,'I002487','2025-12-05',5333,'','','0000-00-00','','',0,0,0,0,761,'','','','','','N','drarchit','drarchit','2025-12-05 20:05:29','','0000-00-00 00:00:00'),(2488,0,0,'I',2526,2488,'I002488','2025-12-06',5340,'','','0000-00-00','','',0,0,0,0,823,'','','','','','N','darshan','darshan','2025-12-06 10:59:25','','0000-00-00 00:00:00'),(2489,0,0,'I',2526,2489,'I002489','2025-12-06',5350,'','','0000-00-00','','',0,0,0,0,1993,'','','','','','N','darshan','darshan','2025-12-06 11:05:44','','0000-00-00 00:00:00'),(2490,0,0,'I',2526,2490,'I002490','2025-12-06',5348,'','','0000-00-00','','',0,0,0,0,3091,'','','','','','N','darshan','darshan','2025-12-06 11:13:03','','0000-00-00 00:00:00'),(2491,0,0,'I',2526,2491,'I002491','2025-12-06',5356,'','','0000-00-00','','',0,0,0,0,1990,'','','','','','N','darshan','darshan','2025-12-06 11:16:59','','0000-00-00 00:00:00'),(2492,0,0,'I',2526,2492,'I002492','2025-12-06',5343,'','','0000-00-00','','',0,0,0,0,3620,'','','','','','N','drarchit','drarchit','2025-12-06 11:35:11','','0000-00-00 00:00:00'),(2493,0,0,'I',2526,2493,'I002493','2025-12-06',5344,'','','0000-00-00','','',0,0,0,0,1789,'','','','','','N','darshan','darshan','2025-12-06 11:35:41','','0000-00-00 00:00:00'),(2494,0,0,'I',2526,2494,'I002494','2025-12-06',5346,'','','0000-00-00','','',0,0,0,0,450,'','','','','','N','darshan','darshan','2025-12-06 11:42:53','','0000-00-00 00:00:00'),(2495,0,0,'I',2526,2495,'I002495','2025-12-06',5362,'','','0000-00-00','','',0,0,0,0,548,'','','','','','N','drarchit','drarchit','2025-12-06 11:48:57','','0000-00-00 00:00:00'),(2496,0,0,'I',2526,2496,'I002496','2025-12-06',5355,'','','0000-00-00','','',0,0,0,0,3625,'','','','','','N','darshan','darshan','2025-12-06 11:56:58','','0000-00-00 00:00:00'),(2497,0,0,'I',2526,2497,'I002497','2025-12-06',5351,'','','0000-00-00','','',0,0,0,0,2281,'','','','','','N','drarchit','drarchit','2025-12-06 11:58:16','','0000-00-00 00:00:00'),(2498,0,0,'I',2526,2498,'I002498','2025-12-06',5370,'','','0000-00-00','','',0,0,0,0,3427,'','','','','','N','drjayant','drjayant','2025-12-06 12:00:33','','0000-00-00 00:00:00'),(2499,0,0,'I',2526,2499,'I002499','2025-12-06',5365,'','','0000-00-00','','',0,0,0,0,1183,'','','','','','N','darshan','darshan','2025-12-06 12:00:37','','0000-00-00 00:00:00'),(2500,0,0,'I',2526,2500,'I002500','2025-12-06',5349,'','','0000-00-00','','',0,0,0,0,3622,'','','','','','N','darshan','darshan','2025-12-06 12:06:05','','0000-00-00 00:00:00'),(2501,0,0,'I',2526,2501,'I002501','2025-12-06',5368,'','','0000-00-00','','',0,0,0,0,1520,'','','','','','N','drarchit','drarchit','2025-12-06 12:06:20','','0000-00-00 00:00:00'),(2502,0,0,'I',2526,2502,'I002502','2025-12-06',5352,'','','0000-00-00','','',0,0,0,0,3623,'','','','','','N','darshan','darshan','2025-12-06 12:19:19','','0000-00-00 00:00:00'),(2503,0,0,'I',2526,2503,'I002503','2025-12-06',5353,'','','0000-00-00','','',0,0,0,0,3166,'','','','','','N','darshan','darshan','2025-12-06 12:19:53','','0000-00-00 00:00:00'),(2504,0,0,'I',2526,2504,'I002504','2025-12-06',5360,'','','0000-00-00','','',0,0,0,0,1996,'','','','','','N','darshan','darshan','2025-12-06 12:24:20','','0000-00-00 00:00:00'),(2505,0,0,'I',2526,2505,'I002505','2025-12-06',5378,'','','0000-00-00','','',0,0,0,0,3634,'','','','','','N','drarchit','drarchit','2025-12-06 12:26:06','','0000-00-00 00:00:00'),(2506,0,0,'I',2526,2506,'I002506','2025-12-06',5371,'','','0000-00-00','','',0,0,0,0,3631,'','','','','','N','darshan','darshan','2025-12-06 12:31:02','','0000-00-00 00:00:00'),(2507,0,0,'I',2526,2507,'I002507','2025-12-06',5379,'','','0000-00-00','','',0,0,0,0,3301,'','','','','','N','drarchit','drarchit','2025-12-06 12:31:25','','0000-00-00 00:00:00'),(2508,0,0,'I',2526,2508,'I002508','2025-12-06',5366,'','','0000-00-00','','',0,0,0,0,3161,'','','','','','N','darshan','darshan','2025-12-06 12:35:12','','0000-00-00 00:00:00'),(2509,0,0,'I',2526,2509,'I002509','2025-12-06',5392,'','','0000-00-00','','',0,0,0,0,3641,'','','','','','N','drjayant','drjayant','2025-12-06 12:40:39','','0000-00-00 00:00:00'),(2510,0,0,'I',2526,2510,'I002510','2025-12-06',5241,'','','0000-00-00','','',0,0,0,0,3570,'','','','','','N','drarchit','drarchit','2025-12-06 12:41:50','','0000-00-00 00:00:00'),(2511,0,0,'I',2526,2511,'I002511','2025-12-06',5385,'','','0000-00-00','','',0,0,0,0,2122,'','','','','','N','darshan','darshan','2025-12-06 12:42:08','','0000-00-00 00:00:00'),(2512,0,0,'I',2526,2512,'I002512','2025-12-06',5357,'','','0000-00-00','','',0,0,0,0,3626,'','','','','','N','drarchit','drarchit','2025-12-06 12:47:37','','0000-00-00 00:00:00'),(2513,0,0,'I',2526,2513,'I002513','2025-12-06',5390,'','','0000-00-00','','',0,0,0,0,3640,'','','','','','N','darshan','darshan','2025-12-06 12:57:49','','0000-00-00 00:00:00'),(2514,0,0,'I',2526,2514,'I002514','2025-12-06',5383,'','','0000-00-00','','',0,0,0,0,3637,'','','','','','N','drarchit','drarchit','2025-12-06 13:07:43','','0000-00-00 00:00:00'),(2515,0,0,'I',2526,2515,'I002515','2025-12-06',5354,'','','0000-00-00','','',0,0,0,0,3624,'','','','','','N','darshan','darshan','2025-12-06 13:08:28','','0000-00-00 00:00:00'),(2516,0,0,'I',2526,2516,'I002516','2025-12-06',5398,'','','0000-00-00','','',0,0,0,0,3646,'','','','','','N','drjayant','drjayant','2025-12-06 13:11:30','','0000-00-00 00:00:00'),(2517,0,0,'I',2526,2517,'I002517','2025-12-06',5394,'','','0000-00-00','','',0,0,0,0,3643,'','','','','','N','drarchit','drarchit','2025-12-06 13:12:34','','0000-00-00 00:00:00'),(2518,0,0,'I',2526,2518,'I002518','2025-12-06',5369,'','','0000-00-00','','',0,0,0,0,1534,'','','','','','N','darshan','darshan','2025-12-06 13:15:30','','0000-00-00 00:00:00'),(2519,0,0,'I',2526,2519,'I002519','2025-12-06',5384,'','','0000-00-00','','',0,0,0,0,1256,'','','','','','N','drarchit','drarchit','2025-12-06 13:17:16','','0000-00-00 00:00:00'),(2520,0,0,'I',2526,2520,'I002520','2025-12-06',5399,'','','0000-00-00','','',0,0,0,0,3647,'','','','','','N','drarchit','drarchit','2025-12-06 13:20:29','','0000-00-00 00:00:00'),(2521,0,0,'I',2526,2521,'I002521','2025-12-06',5373,'','','0000-00-00','','',0,0,0,0,2540,'','','','','','N','darshan','darshan','2025-12-06 13:22:35','','0000-00-00 00:00:00'),(2522,0,0,'I',2526,2522,'I002522','2025-12-06',5342,'','','0000-00-00','','',0,0,0,0,3619,'','','','','','N','darshan','darshan','2025-12-06 13:29:30','','0000-00-00 00:00:00'),(2523,0,0,'I',2526,2523,'I002523','2025-12-06',5393,'','','0000-00-00','','',0,0,0,0,3642,'','','','','','N','darshan','darshan','2025-12-06 13:41:05','','0000-00-00 00:00:00'),(2524,0,0,'I',2526,2524,'I002524','2025-12-06',5389,'','','0000-00-00','','',0,0,0,0,3639,'','','','','','N','darshan','darshan','2025-12-06 13:52:05','','0000-00-00 00:00:00'),(2525,0,0,'I',2526,2525,'I002525','2025-12-06',5363,'','','0000-00-00','','',0,0,0,0,3630,'','','','','','N','darshan','darshan','2025-12-06 14:00:10','','0000-00-00 00:00:00'),(2526,0,0,'I',2526,2526,'I002526','2025-12-06',5400,'','','0000-00-00','','',0,0,0,0,1248,'','','','','','N','darshan','darshan','2025-12-06 14:05:14','','0000-00-00 00:00:00'),(2527,0,0,'I',2526,2527,'I002527','2025-12-06',5381,'','','0000-00-00','','',0,0,0,0,3636,'','','','','','N','darshan','darshan','2025-12-06 14:14:08','','0000-00-00 00:00:00'),(2528,0,0,'I',2526,2528,'I002528','2025-12-06',5401,'','','0000-00-00','','',0,0,0,0,2856,'','','','','','N','darshan','darshan','2025-12-06 14:26:20','','0000-00-00 00:00:00'),(2529,0,0,'I',2526,2529,'I002529','2025-12-06',5403,'','','0000-00-00','','',0,0,0,0,3649,'','','','','','N','darshan','darshan','2025-12-06 14:37:36','','0000-00-00 00:00:00'),(2530,0,0,'I',2526,2530,'I002530','2025-12-06',5402,'','','0000-00-00','','',0,0,0,0,3648,'','','','','','N','darshan','darshan','2025-12-06 14:41:31','','0000-00-00 00:00:00'),(2531,0,0,'I',2526,2531,'I002531','2025-12-08',5450,'','','0000-00-00','','',0,0,0,0,1735,'','','','','','N','darshan','darshan','2025-12-08 10:45:14','','0000-00-00 00:00:00'),(2532,0,0,'I',2526,2532,'I002532','2025-12-08',5449,'','','0000-00-00','','',0,0,0,0,792,'','','','','','N','darshan','darshan','2025-12-08 10:50:56','','0000-00-00 00:00:00'),(2533,0,0,'I',2526,2533,'I002533','2025-12-08',5467,'','','0000-00-00','','',0,0,0,0,3689,'','','','','','N','darshan','darshan','2025-12-08 11:23:02','','0000-00-00 00:00:00'),(2534,0,0,'I',2526,2534,'I002534','2025-12-08',5464,'','','0000-00-00','','',0,0,0,0,78,'','','','','','N','darshan','darshan','2025-12-08 11:27:56','','0000-00-00 00:00:00'),(2535,0,0,'I',2526,2535,'I002535','2025-12-08',5441,'','','0000-00-00','','',0,0,0,0,3672,'','','','','','N','drarchit','drarchit','2025-12-08 11:30:45','','0000-00-00 00:00:00'),(2536,0,0,'I',2526,2536,'I002536','2025-12-08',5448,'','','0000-00-00','','',0,0,0,0,3510,'','','','','','N','drarchit','drarchit','2025-12-08 11:35:58','','0000-00-00 00:00:00'),(2537,0,0,'I',2526,2537,'I002537','2025-12-08',5474,'','','0000-00-00','','',0,0,0,0,3693,'','','','','','N','drarchit','drarchit','2025-12-08 11:40:44','','0000-00-00 00:00:00'),(2538,0,0,'I',2526,2538,'I002538','2025-12-08',5444,'','','0000-00-00','','',0,0,0,0,3674,'','','','','','N','darshan','darshan','2025-12-08 11:42:20','','0000-00-00 00:00:00'),(2539,0,0,'I',2526,2539,'I002539','2025-12-08',5475,'','','0000-00-00','','',0,0,0,0,3694,'','','','','','N','drarchit','drarchit','2025-12-08 11:51:22','','0000-00-00 00:00:00'),(2540,0,0,'I',2526,2540,'I002540','2025-12-08',5453,'','','0000-00-00','','',0,0,0,0,3678,'','','','','','N','darshan','darshan','2025-12-08 11:58:43','','0000-00-00 00:00:00'),(2541,0,0,'I',2526,2541,'I002541','2025-12-08',5489,'','','0000-00-00','','',0,0,0,0,3705,'','','','','','N','drarchit','drarchit','2025-12-08 12:05:07','','0000-00-00 00:00:00'),(2542,0,0,'I',2526,2542,'I002542','2025-12-08',5454,'','','0000-00-00','','',0,0,0,0,2040,'','','','','','N','darshan','darshan','2025-12-08 12:06:48','','0000-00-00 00:00:00'),(2543,0,0,'I',2526,2543,'I002543','2025-12-08',5487,'','','0000-00-00','','',0,0,0,0,3703,'','','','','','N','drarchit','drarchit','2025-12-08 12:08:39','','0000-00-00 00:00:00'),(2544,0,0,'I',2526,2544,'I002544','2025-12-08',5456,'','','0000-00-00','','',0,0,0,0,3680,'','','','','','N','darshan','darshan','2025-12-08 12:13:10','','0000-00-00 00:00:00'),(2545,0,0,'I',2526,2545,'I002545','2025-12-08',5446,'','','0000-00-00','','',0,0,0,0,3675,'','','','','','N','drarchit','drarchit','2025-12-08 12:13:43','','0000-00-00 00:00:00'),(2546,0,0,'I',2526,2546,'I002546','2025-12-08',5435,'','','0000-00-00','','',0,0,0,0,3667,'','','','','','N','drarchit','drarchit','2025-12-08 12:20:43','','0000-00-00 00:00:00'),(2547,0,0,'I',2526,2547,'I002547','2025-12-08',5469,'','','0000-00-00','','',0,0,0,0,2610,'','','','','','N','darshan','darshan','2025-12-08 12:23:43','','0000-00-00 00:00:00'),(2548,0,0,'I',2526,2548,'I002548','2025-12-08',5493,'','','0000-00-00','','',0,0,0,0,2045,'','','','','','N','darshan','darshan','2025-12-08 12:28:30','','0000-00-00 00:00:00'),(2549,0,0,'I',2526,2549,'I002549','2025-12-08',5466,'','','0000-00-00','','',0,0,0,0,3688,'','','','','','N','drarchit','drarchit','2025-12-08 12:30:15','','0000-00-00 00:00:00'),(2550,0,0,'I',2526,2550,'I002550','2025-12-08',5484,'','','0000-00-00','','',0,0,0,0,2343,'','','','','','N','darshan','darshan','2025-12-08 12:33:46','','0000-00-00 00:00:00'),(2551,0,0,'I',2526,2551,'I002551','2025-12-08',5498,'','','0000-00-00','','',0,0,0,0,3711,'','','','','','N','drarchit','drarchit','2025-12-08 12:33:54','','0000-00-00 00:00:00'),(2552,0,0,'I',2526,2552,'I002552','2025-12-08',5486,'','','0000-00-00','','',0,0,0,0,3702,'','','','','','N','darshan','darshan','2025-12-08 12:42:05','','0000-00-00 00:00:00'),(2553,0,0,'I',2526,2553,'I002553','2025-12-08',5458,'','','0000-00-00','','',0,0,0,0,3682,'','','','','','N','darshan','darshan','2025-12-08 12:45:54','','0000-00-00 00:00:00'),(2554,0,0,'I',2526,2554,'I002554','2025-12-08',5457,'','','0000-00-00','','',0,0,0,0,3681,'','','','','','N','darshan','darshan','2025-12-08 12:57:03','','0000-00-00 00:00:00'),(2555,0,0,'I',2526,2555,'I002555','2025-12-08',5471,'','','0000-00-00','','',0,0,0,0,2128,'','','','','','N','darshan','darshan','2025-12-08 13:00:47','','0000-00-00 00:00:00'),(2556,0,0,'I',2526,2556,'I002556','2025-12-08',5509,'','','0000-00-00','','',0,0,0,0,990,'','','','','','N','darshan','darshan','2025-12-08 13:04:27','','0000-00-00 00:00:00'),(2557,0,0,'I',2526,2557,'I002557','2025-12-08',5502,'','','0000-00-00','','',0,0,0,0,3713,'','','','','','N','drarchit','drarchit','2025-12-08 13:05:11','','0000-00-00 00:00:00'),(2558,0,0,'I',2526,2558,'I002558','2025-12-08',5440,'','','0000-00-00','','',0,0,0,0,3671,'','','','','','N','darshan','darshan','2025-12-08 13:08:33','','0000-00-00 00:00:00'),(2559,0,0,'I',2526,2559,'I002559','2025-12-08',5515,'','','0000-00-00','','',0,0,0,0,254,'','','','','','N','drarchit','drarchit','2025-12-08 13:08:35','','0000-00-00 00:00:00'),(2560,0,0,'I',2526,2560,'I002560','2025-12-08',5480,'','','0000-00-00','','',0,0,0,0,3697,'','','','','','N','drarchit','drarchit','2025-12-08 13:11:00','','0000-00-00 00:00:00'),(2561,0,0,'I',2526,2561,'I002561','2025-12-08',5512,'','','0000-00-00','','',0,0,0,0,2451,'','','','','','N','darshan','darshan','2025-12-08 13:12:04','','0000-00-00 00:00:00'),(2562,0,0,'I',2526,2562,'I002562','2025-12-08',5459,'','','0000-00-00','','',0,0,0,0,3683,'','','','','','N','drarchit','drarchit','2025-12-08 13:14:59','','0000-00-00 00:00:00'),(2563,0,0,'I',2526,2563,'I002563','2025-12-08',5506,'','','0000-00-00','','',0,0,0,0,3406,'','','','','','N','drarchit','drarchit','2025-12-08 13:24:06','','0000-00-00 00:00:00'),(2564,0,0,'I',2526,2564,'I002564','2025-12-08',5523,'','','0000-00-00','','',0,0,0,0,3723,'','','','','','N','drarchit','drarchit','2025-12-08 13:27:47','','0000-00-00 00:00:00'),(2565,0,0,'I',2526,2565,'I002565','2025-12-08',5522,'','','0000-00-00','','',0,0,0,0,676,'','','','','','N','drarchit','drarchit','2025-12-08 13:30:13','','0000-00-00 00:00:00'),(2566,0,0,'I',2526,2566,'I002566','2025-12-08',5491,'','','0000-00-00','','',0,0,0,0,3445,'','','','','','N','darshan','darshan','2025-12-08 13:35:47','','0000-00-00 00:00:00'),(2567,0,0,'I',2526,2567,'I002567','2025-12-08',5499,'','','0000-00-00','','',0,0,0,0,3517,'','','','','','N','drarchit','drarchit','2025-12-08 13:43:27','','0000-00-00 00:00:00'),(2568,0,0,'I',2526,2568,'I002568','2025-12-08',5492,'','','0000-00-00','','',0,0,0,0,3706,'','','','','','N','darshan','darshan','2025-12-08 13:52:44','','0000-00-00 00:00:00'),(2569,0,0,'I',2526,2569,'I002569','2025-12-08',5495,'','','0000-00-00','','',0,0,0,0,3708,'','','','','','N','darshan','darshan','2025-12-08 13:56:09','','0000-00-00 00:00:00'),(2570,0,0,'I',2526,2570,'I002570','2025-12-08',5497,'','','0000-00-00','','',0,0,0,0,3710,'','','','','','N','darshan','darshan','2025-12-08 13:59:21','','0000-00-00 00:00:00'),(2571,0,0,'I',2526,2571,'I002571','2025-12-08',5472,'','','0000-00-00','','',0,0,0,0,3691,'','','','','','N','darshan','darshan','2025-12-08 14:03:23','','0000-00-00 00:00:00'),(2572,0,0,'I',2526,2572,'I002572','2025-12-08',5500,'','','0000-00-00','','',0,0,0,0,298,'','','','','','N','darshan','darshan','2025-12-08 14:07:09','','0000-00-00 00:00:00'),(2573,0,0,'I',2526,2573,'I002573','2025-12-08',5507,'','','0000-00-00','','',0,0,0,0,3716,'','','','','','N','darshan','darshan','2025-12-08 14:10:05','','0000-00-00 00:00:00'),(2574,0,0,'I',2526,2574,'I002574','2025-12-08',5481,'','','0000-00-00','','',0,0,0,0,3698,'','','','','','N','darshan','darshan','2025-12-08 14:14:07','','0000-00-00 00:00:00'),(2575,0,0,'I',2526,2575,'I002575','2025-12-08',5516,'','','0000-00-00','','',0,0,0,0,3434,'','','','','','N','darshan','darshan','2025-12-08 14:31:14','','0000-00-00 00:00:00'),(2576,0,0,'I',2526,2576,'I002576','2025-12-08',5519,'','','0000-00-00','','',0,0,0,0,3721,'','','','','','N','darshan','darshan','2025-12-08 14:33:10','','0000-00-00 00:00:00'),(2577,0,0,'I',2526,2577,'I002577','2025-12-08',5482,'','','0000-00-00','','',0,0,0,0,3699,'','','','','','N','darshan','darshan','2025-12-08 14:35:38','','0000-00-00 00:00:00'),(2578,0,0,'I',2526,2578,'I002578','2025-12-08',5483,'','','0000-00-00','','',0,0,0,0,3700,'','','','','','N','darshan','darshan','2025-12-08 14:49:33','','0000-00-00 00:00:00'),(2579,0,0,'I',2526,2579,'I002579','2025-12-08',5532,'','','0000-00-00','','',0,0,0,0,3729,'','','','','','N','darshan','darshan','2025-12-08 15:04:15','','0000-00-00 00:00:00'),(2580,0,0,'I',2526,2580,'I002580','2025-12-08',5535,'','','0000-00-00','','',0,0,0,0,2575,'','','','','','N','darshan','darshan','2025-12-08 17:03:43','','0000-00-00 00:00:00'),(2581,0,0,'I',2526,2581,'I002581','2025-12-08',5537,'','','0000-00-00','','',0,0,0,0,2189,'','','','','','N','darshan','darshan','2025-12-08 17:07:39','','0000-00-00 00:00:00'),(2582,0,0,'I',2526,2582,'I002582','2025-12-08',5542,'','','0000-00-00','','',0,0,0,0,3736,'','','','','','N','darshan','darshan','2025-12-08 17:49:57','','0000-00-00 00:00:00'),(2583,0,0,'I',2526,2583,'I002583','2025-12-08',5544,'','','0000-00-00','','',0,0,0,0,3738,'','','','','','N','darshan','darshan','2025-12-08 17:54:14','','0000-00-00 00:00:00'),(2584,0,0,'I',2526,2584,'I002584','2025-12-08',5549,'','','0000-00-00','','',0,0,0,0,3074,'','','','','','N','darshan','darshan','2025-12-08 17:57:50','','0000-00-00 00:00:00'),(2585,0,0,'I',2526,2585,'I002585','2025-12-08',5543,'','','0000-00-00','','',0,0,0,0,3737,'','','','','','N','darshan','darshan','2025-12-08 18:04:42','','0000-00-00 00:00:00'),(2586,0,0,'I',2526,2586,'I002586','2025-12-08',5463,'','','0000-00-00','','',0,0,0,0,3687,'','','','','','N','drarchit','drarchit','2025-12-08 18:09:00','','0000-00-00 00:00:00'),(2587,0,0,'I',2526,2587,'I002587','2025-12-08',5496,'','','0000-00-00','','',0,0,0,0,3709,'','','','','','N','drarchit','drarchit','2025-12-08 18:13:30','','0000-00-00 00:00:00'),(2588,0,0,'I',2526,2588,'I002588','2025-12-08',5546,'','','0000-00-00','','',0,0,0,0,3740,'','','','','','N','drarchit','drarchit','2025-12-08 18:17:04','','0000-00-00 00:00:00'),(2589,0,0,'I',2526,2589,'I002589','2025-12-08',5531,'','','0000-00-00','','',0,0,0,0,3728,'','','','','','N','darshan','darshan','2025-12-08 18:19:10','','0000-00-00 00:00:00'),(2590,0,0,'I',2526,2590,'I002590','2025-12-08',5548,'','','0000-00-00','','',0,0,0,0,3742,'','','','','','N','darshan','darshan','2025-12-08 18:28:06','','0000-00-00 00:00:00'),(2591,0,0,'I',2526,2591,'I002591','2025-12-08',5540,'','','0000-00-00','','',0,0,0,0,3734,'','','','','','N','darshan','darshan','2025-12-08 18:32:12','','0000-00-00 00:00:00'),(2592,0,0,'I',2526,2592,'I002592','2025-12-08',5557,'','','0000-00-00','','',0,0,0,0,3747,'','','','','','N','drarchit','drarchit','2025-12-08 18:36:44','','0000-00-00 00:00:00'),(2593,0,0,'I',2526,2593,'I002593','2025-12-08',5564,'','','0000-00-00','','',0,0,0,0,3750,'','','','','','N','darshan','darshan','2025-12-08 18:37:55','','0000-00-00 00:00:00'),(2594,0,0,'I',2526,2594,'I002594','2025-12-08',5561,'','','0000-00-00','','',0,0,0,0,3748,'','','','','','N','drarchit','drarchit','2025-12-08 18:41:46','','0000-00-00 00:00:00'),(2595,0,0,'I',2526,2595,'I002595','2025-12-08',5566,'','','0000-00-00','','',0,0,0,0,3752,'','','','','','N','drarchit','drarchit','2025-12-08 18:45:13','','0000-00-00 00:00:00'),(2596,0,0,'I',2526,2596,'I002596','2025-12-08',5538,'','','0000-00-00','','',0,0,0,0,3732,'','','','','','N','darshan','darshan','2025-12-08 18:47:01','','0000-00-00 00:00:00'),(2597,0,0,'I',2526,2597,'I002597','2025-12-08',5563,'','','0000-00-00','','',0,0,0,0,367,'','','','','','N','drarchit','drarchit','2025-12-08 18:52:05','','0000-00-00 00:00:00'),(2598,0,0,'I',2526,2598,'I002598','2025-12-08',5568,'','','0000-00-00','','',0,0,0,0,995,'','','','','','N','darshan','darshan','2025-12-08 18:53:19','','0000-00-00 00:00:00'),(2599,0,0,'I',2526,2599,'I002599','2025-12-08',5572,'','','0000-00-00','','',0,0,0,0,943,'','','','','','N','darshan','darshan','2025-12-08 18:57:29','','0000-00-00 00:00:00'),(2600,0,0,'I',2526,2600,'I002600','2025-12-08',5574,'','','0000-00-00','','',0,0,0,0,3755,'','','','','','N','drarchit','drarchit','2025-12-08 18:59:43','','0000-00-00 00:00:00'),(2601,0,0,'I',2526,2601,'I002601','2025-12-08',5573,'','','0000-00-00','','',0,0,0,0,3170,'','','','','','N','darshan','darshan','2025-12-08 19:07:01','','0000-00-00 00:00:00'),(2602,0,0,'I',2526,2602,'I002602','2025-12-08',5517,'','','0000-00-00','','',0,0,0,0,3719,'','','','','','N','drarchit','drarchit','2025-12-08 19:19:32','','0000-00-00 00:00:00'),(2603,0,0,'I',2526,2603,'I002603','2025-12-08',5545,'','','0000-00-00','','',0,0,0,0,3739,'','','','','','N','darshan','darshan','2025-12-08 19:26:05','','0000-00-00 00:00:00'),(2604,0,0,'I',2526,2604,'I002604','2025-12-08',5586,'','','0000-00-00','','',0,0,0,0,3329,'','','','','','N','drarchit','drarchit','2025-12-08 19:26:59','','0000-00-00 00:00:00'),(2605,0,0,'I',2526,2605,'I002605','2025-12-08',5591,'','','0000-00-00','','',0,0,0,0,3761,'','','','','','N','drarchit','drarchit','2025-12-08 19:29:34','','0000-00-00 00:00:00'),(2606,0,0,'I',2526,2606,'I002606','2025-12-08',5578,'','','0000-00-00','','',0,0,0,0,3758,'','','','','','N','darshan','darshan','2025-12-08 19:31:40','','0000-00-00 00:00:00'),(2607,0,0,'I',2526,2607,'I002607','2025-12-08',5579,'','','0000-00-00','','',0,0,0,0,1464,'','','','','','N','darshan','darshan','2025-12-08 19:40:28','','0000-00-00 00:00:00'),(2608,0,0,'I',2526,2608,'I002608','2025-12-08',5530,'','','0000-00-00','','',0,0,0,0,3727,'','','','','','N','darshan','darshan','2025-12-08 19:49:35','','0000-00-00 00:00:00'),(2609,0,0,'I',2526,2609,'I002609','2025-12-08',5581,'','','0000-00-00','','',0,0,0,0,89,'','','','','','N','darshan','darshan','2025-12-08 19:54:24','','0000-00-00 00:00:00'),(2610,0,0,'I',2526,2610,'I002610','2025-12-08',5587,'','','0000-00-00','','',0,0,0,0,2607,'','','','','','N','darshan','darshan','2025-12-08 20:02:05','','0000-00-00 00:00:00'),(2611,0,0,'I',2526,2611,'I002611','2025-12-08',5589,'','','0000-00-00','','',0,0,0,0,3760,'','','','','','N','drarchit','drarchit','2025-12-08 20:22:49','','0000-00-00 00:00:00'),(2612,0,0,'I',2526,2612,'I002612','2025-12-08',5524,'','','0000-00-00','','',0,0,0,0,3724,'','','','','','N','drarchit','drarchit','2025-12-08 20:26:54','','0000-00-00 00:00:00'),(2613,0,0,'I',2526,2613,'I002613','2025-12-08',5594,'','','0000-00-00','','',0,0,0,0,2261,'','','','','','N','darshan','darshan','2025-12-08 20:30:43','','0000-00-00 00:00:00'),(2614,0,0,'I',2526,2614,'I002614','2025-12-09',5613,'','','0000-00-00','','',0,0,0,0,3243,'','','','','','N','darshan','darshan','2025-12-09 10:49:31','','0000-00-00 00:00:00'),(2615,0,0,'I',2526,2615,'I002615','2025-12-09',5605,'','','0000-00-00','','',0,0,0,0,351,'','','','','','N','darshan','darshan','2025-12-09 10:59:34','','0000-00-00 00:00:00'),(2616,0,0,'I',2526,2616,'I002616','2025-12-09',5612,'','','0000-00-00','','',0,0,0,0,2628,'','','','','','N','darshan','darshan','2025-12-09 11:04:18','','0000-00-00 00:00:00'),(2617,0,0,'I',2526,2617,'I002617','2025-12-09',5618,'','','0000-00-00','','',0,0,0,0,865,'','','','','','N','darshan','darshan','2025-12-09 11:10:20','','0000-00-00 00:00:00'),(2618,0,0,'I',2526,2618,'I002618','2025-12-09',5629,'','','0000-00-00','','',0,0,0,0,3780,'','','','','','N','darshan','darshan','2025-12-09 11:21:52','','0000-00-00 00:00:00'),(2619,0,0,'I',2526,2619,'I002619','2025-12-09',5619,'','','0000-00-00','','',0,0,0,0,3774,'','','','','','N','darshan','darshan','2025-12-09 11:25:25','','0000-00-00 00:00:00'),(2620,0,0,'I',2526,2620,'I002620','2025-12-09',5636,'','','0000-00-00','','',0,0,0,0,3786,'','','','','','N','drarchit','drarchit','2025-12-09 11:33:50','','0000-00-00 00:00:00'),(2621,0,0,'I',2526,2621,'I002621','2025-12-09',5620,'','','0000-00-00','','',0,0,0,0,3775,'','','','','','N','drarchit','drarchit','2025-12-09 11:39:31','','0000-00-00 00:00:00'),(2622,0,0,'I',2526,2622,'I002622','2025-12-09',5610,'','','0000-00-00','','',0,0,0,0,3769,'','','','','','N','darshan','darshan','2025-12-09 11:51:31','','0000-00-00 00:00:00'),(2623,0,0,'I',2526,2623,'I002623','2025-12-09',5615,'','','0000-00-00','','',0,0,0,0,3771,'','','','','','N','drarchit','drarchit','2025-12-09 12:05:01','','0000-00-00 00:00:00'),(2624,0,0,'I',2526,2624,'I002624','2025-12-09',5511,'','','0000-00-00','','',0,0,0,0,3718,'','','','','','N','darshan','darshan','2025-12-09 12:08:13','','0000-00-00 00:00:00'),(2625,0,0,'I',2526,2625,'I002625','2025-12-09',5633,'','','0000-00-00','','',0,0,0,0,3784,'','','','','','N','drarchit','drarchit','2025-12-09 12:18:50','','0000-00-00 00:00:00'),(2626,0,0,'I',2526,2626,'I002626','2025-12-09',5644,'','','0000-00-00','','',0,0,0,0,3790,'','','','','','N','drarchit','drarchit','2025-12-09 12:20:13','','0000-00-00 00:00:00'),(2627,0,0,'I',2526,2627,'I002627','2025-12-09',5631,'','','0000-00-00','','',0,0,0,0,3782,'','','','','','N','drarchit','drarchit','2025-12-09 12:25:42','','0000-00-00 00:00:00'),(2628,0,0,'I',2526,2628,'I002628','2025-12-09',5642,'','','0000-00-00','','',0,0,0,0,156,'','','','','','N','darshan','darshan','2025-12-09 12:27:40','','0000-00-00 00:00:00'),(2629,0,0,'I',2526,2629,'I002629','2025-12-09',5623,'','','0000-00-00','','',0,0,0,0,2392,'','','','','','N','darshan','darshan','2025-12-09 12:35:19','','0000-00-00 00:00:00'),(2630,0,0,'I',2526,2630,'I002630','2025-12-09',5625,'','','0000-00-00','','',0,0,0,0,273,'','','','','','N','darshan','darshan','2025-12-09 12:37:53','','0000-00-00 00:00:00'),(2631,0,0,'I',2526,2631,'I002631','2025-12-09',5626,'','','0000-00-00','','',0,0,0,0,3777,'','','','','','N','darshan','darshan','2025-12-09 12:40:13','','0000-00-00 00:00:00'),(2632,0,0,'I',2526,2632,'I002632','2025-12-09',5639,'','','0000-00-00','','',0,0,0,0,3787,'','','','','','N','drarchit','drarchit','2025-12-09 12:46:45','','0000-00-00 00:00:00'),(2633,0,0,'I',2526,2633,'I002633','2025-12-09',5651,'','','0000-00-00','','',0,0,0,0,3174,'','','','','','N','darshan','darshan','2025-12-09 12:58:29','','0000-00-00 00:00:00'),(2634,0,0,'I',2526,2634,'I002634','2025-12-09',5658,'','','0000-00-00','','',0,0,0,0,3799,'','','','','','N','drarchit','drarchit','2025-12-09 13:01:48','','0000-00-00 00:00:00'),(2635,0,0,'I',2526,2635,'I002635','2025-12-09',5647,'','','0000-00-00','','',0,0,0,0,3793,'','','','','','N','darshan','darshan','2025-12-09 13:05:17','','0000-00-00 00:00:00'),(2636,0,0,'I',2526,2636,'I002636','2025-12-09',5649,'','','0000-00-00','','',0,0,0,0,1168,'','','','','','N','darshan','darshan','2025-12-09 13:16:34','','0000-00-00 00:00:00'),(2637,0,0,'I',2526,2637,'I002637','2025-12-09',5632,'','','0000-00-00','','',0,0,0,0,3783,'','','','','','N','darshan','darshan','2025-12-09 13:19:34','','0000-00-00 00:00:00'),(2638,0,0,'I',2526,2638,'I002638','2025-12-09',5622,'','','0000-00-00','','',0,0,0,0,3776,'','','','','','N','darshan','darshan','2025-12-09 13:22:30','','0000-00-00 00:00:00'),(2639,0,0,'I',2526,2639,'I002639','2025-12-09',5634,'','','0000-00-00','','',0,0,0,0,3785,'','','','','','N','darshan','darshan','2025-12-09 13:26:25','','0000-00-00 00:00:00'),(2640,0,0,'I',2526,2640,'I002640','2025-12-09',5637,'','','0000-00-00','','',0,0,0,0,294,'','','','','','N','darshan','darshan','2025-12-09 13:29:52','','0000-00-00 00:00:00'),(2641,0,0,'I',2526,2641,'I002641','2025-12-09',5609,'','','0000-00-00','','',0,0,0,0,3768,'','','','','','N','darshan','darshan','2025-12-09 13:35:17','','0000-00-00 00:00:00'),(2642,0,0,'I',2526,2642,'I002642','2025-12-09',5627,'','','0000-00-00','','',0,0,0,0,3778,'','','','','','N','darshan','darshan','2025-12-09 13:52:36','','0000-00-00 00:00:00'),(2643,0,0,'I',2526,2643,'I002643','2025-12-09',5650,'','','0000-00-00','','',0,0,0,0,3795,'','','','','','N','darshan','darshan','2025-12-09 13:58:31','','0000-00-00 00:00:00'),(2644,0,0,'I',2526,2644,'I002644','2025-12-09',5614,'','','0000-00-00','','',0,0,0,0,3770,'','','','','','N','darshan','darshan','2025-12-09 14:02:42','','0000-00-00 00:00:00'),(2645,0,0,'I',2526,2645,'I002645','2025-12-09',5652,'','','0000-00-00','','',0,0,0,0,3796,'','','','','','N','darshan','darshan','2025-12-09 14:10:10','','0000-00-00 00:00:00'),(2646,0,0,'I',2526,2646,'I002646','2025-12-09',5617,'','','0000-00-00','','',0,0,0,0,3773,'','','','','','N','darshan','darshan','2025-12-09 14:16:23','','0000-00-00 00:00:00'),(2647,0,0,'I',2526,2647,'I002647','2025-12-09',5648,'','','0000-00-00','','',0,0,0,0,3794,'','','','','','N','darshan','darshan','2025-12-09 14:24:19','','0000-00-00 00:00:00'),(2648,0,0,'I',2526,2648,'I002648','2025-12-09',5641,'','','0000-00-00','','',0,0,0,0,3789,'','','','','','N','darshan','darshan','2025-12-09 14:33:03','','0000-00-00 00:00:00'),(2649,0,0,'I',2526,2649,'I002649','2025-12-09',5664,'','','0000-00-00','','',0,0,0,0,1544,'','','','','','N','darshan','darshan','2025-12-09 17:02:53','','0000-00-00 00:00:00'),(2650,0,0,'I',2526,2650,'I002650','2025-12-09',5666,'','','0000-00-00','','',0,0,0,0,3121,'','','','','','N','darshan','darshan','2025-12-09 17:08:43','','0000-00-00 00:00:00'),(2651,0,0,'I',2526,2651,'I002651','2025-12-09',5672,'','','0000-00-00','','',0,0,0,0,3804,'','','','','','N','darshan','darshan','2025-12-09 17:22:21','','0000-00-00 00:00:00'),(2652,0,0,'I',2526,2652,'I002652','2025-12-09',5671,'','','0000-00-00','','',0,0,0,0,3803,'','','','','','N','darshan','darshan','2025-12-09 17:26:44','','0000-00-00 00:00:00'),(2653,0,0,'I',2526,2653,'I002653','2025-12-09',5630,'','','0000-00-00','','',0,0,0,0,3781,'','','','','','N','darshan','darshan','2025-12-09 17:32:14','','0000-00-00 00:00:00'),(2654,0,0,'I',2526,2654,'I002654','2025-12-09',5673,'','','0000-00-00','','',0,0,0,0,2803,'','','','','','N','darshan','darshan','2025-12-09 17:35:45','','0000-00-00 00:00:00'),(2655,0,0,'I',2526,2655,'I002655','2025-12-09',5616,'','','0000-00-00','','',0,0,0,0,3772,'','','','','','N','darshan','darshan','2025-12-09 17:42:45','','0000-00-00 00:00:00'),(2656,0,0,'I',2526,2656,'I002656','2025-12-09',5674,'','','0000-00-00','','',0,0,0,0,2925,'','','','','','N','darshan','darshan','2025-12-09 17:48:48','','0000-00-00 00:00:00'),(2657,0,0,'I',2526,2657,'I002657','2025-12-09',5677,'','','0000-00-00','','',0,0,0,0,3806,'','','','','','N','darshan','darshan','2025-12-09 17:55:34','','0000-00-00 00:00:00'),(2658,0,0,'I',2526,2658,'I002658','2025-12-09',5600,'','','0000-00-00','','',0,0,0,0,3764,'','','','','','N','darshan','darshan','2025-12-09 18:06:13','','0000-00-00 00:00:00'),(2659,0,0,'I',2526,2659,'I002659','2025-12-09',5679,'','','0000-00-00','','',0,0,0,0,3807,'','','','','','N','darshan','darshan','2025-12-09 18:12:43','','0000-00-00 00:00:00'),(2660,0,0,'I',2526,2660,'I002660','2025-12-09',5552,'','','0000-00-00','','',0,0,0,0,3744,'','','','','','N','drarchit','drarchit','2025-12-09 18:13:24','','0000-00-00 00:00:00'),(2661,0,0,'I',2526,2661,'I002661','2025-12-09',5683,'','','0000-00-00','','',0,0,0,0,1827,'','','','','','N','darshan','darshan','2025-12-09 18:15:05','','0000-00-00 00:00:00'),(2662,0,0,'I',2526,2662,'I002662','2025-12-09',5553,'','','0000-00-00','','',0,0,0,0,3745,'','','','','','N','drarchit','drarchit','2025-12-09 18:15:09','','0000-00-00 00:00:00'),(2663,0,0,'I',2526,2663,'I002663','2025-12-09',5676,'','','0000-00-00','','',0,0,0,0,3805,'','','','','','N','drarchit','drarchit','2025-12-09 18:19:28','','0000-00-00 00:00:00'),(2664,0,0,'I',2526,2664,'I002664','2025-12-09',5646,'','','0000-00-00','','',0,0,0,0,3792,'','','','','','N','darshan','darshan','2025-12-09 18:21:02','','0000-00-00 00:00:00'),(2665,0,0,'I',2526,2665,'I002665','2025-12-09',5661,'','','0000-00-00','','',0,0,0,0,2659,'','','','','','N','drarchit','drarchit','2025-12-09 18:27:08','','0000-00-00 00:00:00'),(2666,0,0,'I',2526,2666,'I002666','2025-12-09',5698,'','','0000-00-00','','',0,0,0,0,3821,'','','','','','N','drjayant','drjayant','2025-12-09 18:34:39','','0000-00-00 00:00:00'),(2667,0,0,'I',2526,2667,'I002667','2025-12-09',5695,'','','0000-00-00','','',0,0,0,0,3818,'','','','','','N','drarchit','drarchit','2025-12-09 18:52:10','','0000-00-00 00:00:00'),(2668,0,0,'I',2526,2668,'I002668','2025-12-09',5404,'','','0000-00-00','','',0,0,0,0,3650,'','','','','','N','darshan','darshan','2025-12-09 18:52:46','','0000-00-00 00:00:00'),(2669,0,0,'I',2526,2669,'I002669','2025-12-09',5700,'','','0000-00-00','','',0,0,0,0,1257,'','','','','','N','darshan','darshan','2025-12-09 19:03:32','','0000-00-00 00:00:00'),(2670,0,0,'I',2526,2670,'I002670','2025-12-09',5689,'','','0000-00-00','','',0,0,0,0,3814,'','','','','','N','drarchit','drarchit','2025-12-09 19:06:28','','0000-00-00 00:00:00'),(2671,0,0,'I',2526,2671,'I002671','2025-12-09',5694,'','','0000-00-00','','',0,0,0,0,1676,'','','','','','N','darshan','darshan','2025-12-09 19:11:14','','0000-00-00 00:00:00'),(2672,0,0,'I',2526,2672,'I002672','2025-12-09',5693,'','','0000-00-00','','',0,0,0,0,3817,'','','','','','N','drarchit','drarchit','2025-12-09 19:11:43','','0000-00-00 00:00:00'),(2673,0,0,'I',2526,2673,'I002673','2025-12-09',5702,'','','0000-00-00','','',0,0,0,0,890,'','','','','','N','drjayant','drjayant','2025-12-09 19:12:52','','0000-00-00 00:00:00'),(2674,0,0,'I',2526,2674,'I002674','2025-12-09',5668,'','','0000-00-00','','',0,0,0,0,3802,'','','','','','N','darshan','darshan','2025-12-09 19:15:29','','0000-00-00 00:00:00'),(2675,0,0,'I',2526,2675,'I002675','2025-12-09',5705,'','','0000-00-00','','',0,0,0,0,1312,'','','','','','N','darshan','darshan','2025-12-09 19:20:31','','0000-00-00 00:00:00'),(2676,0,0,'I',2526,2676,'I002676','2025-12-09',5715,'','','0000-00-00','','',0,0,0,0,3611,'','','','','','N','drjayant','drjayant','2025-12-09 19:21:17','','0000-00-00 00:00:00'),(2677,0,0,'I',2526,2677,'I002677','2025-12-09',5697,'','','0000-00-00','','',0,0,0,0,3820,'','','','','','N','darshan','darshan','2025-12-09 19:26:08','','0000-00-00 00:00:00'),(2678,0,0,'I',2526,2678,'I002678','2025-12-09',5699,'','','0000-00-00','','',0,0,0,0,3822,'','','','','','N','drarchit','drarchit','2025-12-09 19:30:25','','0000-00-00 00:00:00'),(2679,0,0,'I',2526,2679,'I002679','2025-12-09',5682,'','','0000-00-00','','',0,0,0,0,3324,'','','','','','N','drarchit','drarchit','2025-12-09 19:32:28','','0000-00-00 00:00:00'),(2680,0,0,'I',2526,2680,'I002680','2025-12-09',5703,'','','0000-00-00','','',0,0,0,0,3824,'','','','','','N','darshan','darshan','2025-12-09 19:32:30','','0000-00-00 00:00:00'),(2681,0,0,'I',2526,2681,'I002681','2025-12-09',5710,'','','0000-00-00','','',0,0,0,0,3826,'','','','','','N','drjayant','drjayant','2025-12-09 19:33:23','','0000-00-00 00:00:00'),(2682,0,0,'I',2526,2682,'I002682','2025-12-09',5704,'','','0000-00-00','','',0,0,0,0,3825,'','','','','','N','drarchit','drarchit','2025-12-09 19:36:54','','0000-00-00 00:00:00'),(2683,0,0,'I',2526,2683,'I002683','2025-12-09',5717,'','','0000-00-00','','',0,0,0,0,3830,'','','','','','N','drarchit','drarchit','2025-12-09 19:41:03','','0000-00-00 00:00:00'),(2684,0,0,'I',2526,2684,'I002684','2025-12-09',5687,'','','0000-00-00','','',0,0,0,0,3812,'','','','','','N','darshan','darshan','2025-12-09 19:43:46','','0000-00-00 00:00:00'),(2685,0,0,'I',2526,2685,'I002685','2025-12-09',5706,'','','0000-00-00','','',0,0,0,0,1000,'','','','','','N','darshan','darshan','2025-12-09 19:48:37','','0000-00-00 00:00:00'),(2686,0,0,'I',2526,2686,'I002686','2025-12-09',5688,'','','0000-00-00','','',0,0,0,0,3813,'','','','','','N','darshan','darshan','2025-12-09 19:52:18','','0000-00-00 00:00:00'),(2687,0,0,'I',2526,2687,'I002687','2025-12-09',5711,'','','0000-00-00','','',0,0,0,0,3827,'','','','','','N','darshan','darshan','2025-12-09 19:55:52','','0000-00-00 00:00:00'),(2688,0,0,'I',2526,2688,'I002688','2025-12-09',5685,'','','0000-00-00','','',0,0,0,0,3810,'','','','','','N','darshan','darshan','2025-12-09 20:15:00','','0000-00-00 00:00:00'),(2689,0,0,'I',2526,2689,'I002689','2025-12-09',5712,'','','0000-00-00','','',0,0,0,0,3278,'','','','','','N','darshan','darshan','2025-12-09 20:19:39','','0000-00-00 00:00:00'),(2690,0,0,'I',2526,2690,'I002690','2025-12-09',5713,'','','0000-00-00','','',0,0,0,0,3828,'','','','','','N','darshan','darshan','2025-12-09 20:27:15','','0000-00-00 00:00:00'),(2691,0,0,'I',2526,2691,'I002691','2025-12-10',5738,'','','0000-00-00','','',0,0,0,0,3837,'','','','','','N','darshan','darshan','2025-12-10 10:54:18','','0000-00-00 00:00:00'),(2692,0,0,'I',2526,2692,'I002692','2025-12-10',5740,'','','0000-00-00','','',0,0,0,0,2176,'','','','','','N','darshan','darshan','2025-12-10 10:58:28','','0000-00-00 00:00:00'),(2693,0,0,'I',2526,2693,'I002693','2025-12-10',5745,'','','0000-00-00','','',0,0,0,0,860,'','','','','','N','darshan','darshan','2025-12-10 11:04:05','','0000-00-00 00:00:00'),(2694,0,0,'I',2526,2694,'I002694','2025-12-10',5747,'','','0000-00-00','','',0,0,0,0,862,'','','','','','N','darshan','darshan','2025-12-10 11:07:16','','0000-00-00 00:00:00'),(2695,0,0,'I',2526,2695,'I002695','2025-12-10',5731,'','','0000-00-00','','',0,0,0,0,1622,'','','','','','N','darshan','darshan','2025-12-10 11:15:05','','0000-00-00 00:00:00'),(2696,0,0,'I',2526,2696,'I002696','2025-12-10',5746,'','','0000-00-00','','',0,0,0,0,3841,'','','','','','N','drarchit','drarchit','2025-12-10 11:17:28','','0000-00-00 00:00:00'),(2697,0,0,'I',2526,2697,'I002697','2025-12-10',5736,'','','0000-00-00','','',0,0,0,0,3198,'','','','','','N','darshan','darshan','2025-12-10 11:17:30','','0000-00-00 00:00:00'),(2698,0,0,'I',2526,2698,'I002698','2025-12-10',5750,'','','0000-00-00','','',0,0,0,0,3249,'','','','','','N','drarchit','drarchit','2025-12-10 11:24:30','','0000-00-00 00:00:00'),(2699,0,0,'I',2526,2699,'I002699','2025-12-10',5758,'','','0000-00-00','','',0,0,0,0,3308,'','','','','','N','darshan','darshan','2025-12-10 11:28:58','','0000-00-00 00:00:00'),(2700,0,0,'I',2526,2700,'I002700','2025-12-10',5765,'','','0000-00-00','','',0,0,0,0,3851,'','','','','','N','drarchit','drarchit','2025-12-10 11:36:40','','0000-00-00 00:00:00'),(2701,0,0,'I',2526,2701,'I002701','2025-12-10',5767,'','','0000-00-00','','',0,0,0,0,1261,'','','','','','N','drjayant','drjayant','2025-12-10 11:38:18','','0000-00-00 00:00:00'),(2702,0,0,'I',2526,2702,'I002702','2025-12-10',5752,'','','0000-00-00','','',0,0,0,0,3844,'','','','','','N','darshan','darshan','2025-12-10 11:40:40','','0000-00-00 00:00:00'),(2703,0,0,'I',2526,2703,'I002703','2025-12-10',5761,'','','0000-00-00','','',0,0,0,0,3849,'','','','','','N','darshan','darshan','2025-12-10 11:48:42','','0000-00-00 00:00:00'),(2704,0,0,'I',2526,2704,'I002704','2025-12-10',5754,'','','0000-00-00','','',0,0,0,0,3845,'','','','','','N','darshan','darshan','2025-12-10 12:02:55','','0000-00-00 00:00:00'),(2705,0,0,'I',2526,2705,'I002705','2025-12-10',5755,'','','0000-00-00','','',0,0,0,0,2061,'','','','','','N','darshan','darshan','2025-12-10 12:06:36','','0000-00-00 00:00:00'),(2706,0,0,'I',2526,2706,'I002706','2025-12-10',5759,'','','0000-00-00','','',0,0,0,0,520,'','','','','','N','darshan','darshan','2025-12-10 12:18:58','','0000-00-00 00:00:00'),(2707,0,0,'I',2526,2707,'I002707','2025-12-10',5742,'','','0000-00-00','','',0,0,0,0,3839,'','','','','','N','drarchit','drarchit','2025-12-10 12:29:07','','0000-00-00 00:00:00'),(2708,0,0,'I',2526,2708,'I002708','2025-12-10',5749,'','','0000-00-00','','',0,0,0,0,3842,'','','','','','N','darshan','darshan','2025-12-10 12:31:10','','0000-00-00 00:00:00'),(2709,0,0,'I',2526,2709,'I002709','2025-12-10',5766,'','','0000-00-00','','',0,0,0,0,2294,'','','','','','N','darshan','darshan','2025-12-10 12:35:19','','0000-00-00 00:00:00'),(2710,0,0,'I',2526,2710,'I002710','2025-12-10',5751,'','','0000-00-00','','',0,0,0,0,3843,'','','','','','N','darshan','darshan','2025-12-10 12:40:31','','0000-00-00 00:00:00'),(2711,0,0,'I',2526,2711,'I002711','2025-12-10',5785,'','','0000-00-00','','',0,0,0,0,3864,'','','','','','N','drarchit','drarchit','2025-12-10 12:44:08','','0000-00-00 00:00:00'),(2712,0,0,'I',2526,2712,'I002712','2025-12-10',5783,'','','0000-00-00','','',0,0,0,0,193,'','','','','','N','darshan','darshan','2025-12-10 12:44:50','','0000-00-00 00:00:00'),(2713,0,0,'I',2526,2713,'I002713','2025-12-10',5760,'','','0000-00-00','','',0,0,0,0,3848,'','','','','','N','darshan','darshan','2025-12-10 12:52:41','','0000-00-00 00:00:00'),(2714,0,0,'I',2526,2714,'I002714','2025-12-10',5790,'','','0000-00-00','','',0,0,0,0,3868,'','','','','','N','drarchit','drarchit','2025-12-10 13:00:43','','0000-00-00 00:00:00'),(2715,0,0,'I',2526,2715,'I002715','2025-12-10',5780,'','','0000-00-00','','',0,0,0,0,1226,'','','','','','N','darshan','darshan','2025-12-10 13:02:39','','0000-00-00 00:00:00'),(2716,0,0,'I',2526,2716,'I002716','2025-12-10',5789,'','','0000-00-00','','',0,0,0,0,2240,'','','','','','N','darshan','darshan','2025-12-10 13:27:35','','0000-00-00 00:00:00'),(2717,0,0,'I',2526,2717,'I002717','2025-12-10',5768,'','','0000-00-00','','',0,0,0,0,3852,'','','','','','N','darshan','darshan','2025-12-10 13:30:35','','0000-00-00 00:00:00'),(2718,0,0,'I',2526,2718,'I002718','2025-12-10',5792,'','','0000-00-00','','',0,0,0,0,2740,'','','','','','N','darshan','darshan','2025-12-10 13:40:20','','0000-00-00 00:00:00'),(2719,0,0,'I',2526,2719,'I002719','2025-12-10',5757,'','','0000-00-00','','',0,0,0,0,3847,'','','','','','N','darshan','darshan','2025-12-10 13:45:55','','0000-00-00 00:00:00'),(2720,0,0,'I',2526,2720,'I002720','2025-12-10',5784,'','','0000-00-00','','',0,0,0,0,3863,'','','','','','N','darshan','darshan','2025-12-10 13:50:17','','0000-00-00 00:00:00'),(2721,0,0,'I',2526,2721,'I002721','2025-12-10',5788,'','','0000-00-00','','',0,0,0,0,3867,'','','','','','N','darshan','darshan','2025-12-10 13:55:08','','0000-00-00 00:00:00'),(2722,0,0,'I',2526,2722,'I002722','2025-12-10',5772,'','','0000-00-00','','',0,0,0,0,3855,'','','','','','N','darshan','darshan','2025-12-10 14:24:59','','0000-00-00 00:00:00'),(2723,0,0,'I',2526,2723,'I002723','2025-12-10',5795,'','','0000-00-00','','',0,0,0,0,939,'','','','','','N','darshan','darshan','2025-12-10 14:33:11','','0000-00-00 00:00:00'),(2724,0,0,'I',2526,2724,'I002724','2025-12-10',5796,'','','0000-00-00','','',0,0,0,0,3871,'','','','','','N','darshan','darshan','2025-12-10 14:37:58','','0000-00-00 00:00:00'),(2725,0,0,'I',2526,2725,'I002725','2025-12-10',5802,'','','0000-00-00','','',0,0,0,0,1613,'','','','','','N','darshan','darshan','2025-12-10 17:10:21','','0000-00-00 00:00:00'),(2726,0,0,'I',2526,2726,'I002726','2025-12-10',5770,'','','0000-00-00','','',0,0,0,0,1386,'','','','','','N','darshan','darshan','2025-12-10 17:13:48','','0000-00-00 00:00:00'),(2727,0,0,'I',2526,2727,'I002727','2025-12-10',5800,'','','0000-00-00','','',0,0,0,0,524,'','','','','','N','darshan','darshan','2025-12-10 17:29:02','','0000-00-00 00:00:00'),(2728,0,0,'I',2526,2728,'I002728','2025-12-10',5816,'','','0000-00-00','','',0,0,0,0,3883,'','','','','','N','darshan','darshan','2025-12-10 17:49:38','','0000-00-00 00:00:00'),(2729,0,0,'I',2526,2729,'I002729','2025-12-10',5812,'','','0000-00-00','','',0,0,0,0,3880,'','','','','','N','darshan','darshan','2025-12-10 17:58:06','','0000-00-00 00:00:00'),(2730,0,0,'I',2526,2730,'I002730','2025-12-10',5814,'','','0000-00-00','','',0,0,0,0,3210,'','','','','','N','darshan','darshan','2025-12-10 18:01:39','','0000-00-00 00:00:00'),(2731,0,0,'I',2526,2731,'I002731','2025-12-10',5813,'','','0000-00-00','','',0,0,0,0,3881,'','','','','','N','drarchit','drarchit','2025-12-10 18:24:47','','0000-00-00 00:00:00'),(2732,0,0,'I',2526,2732,'I002732','2025-12-10',5801,'','','0000-00-00','','',0,0,0,0,3875,'','','','','','N','darshan','darshan','2025-12-10 18:27:02','','0000-00-00 00:00:00'),(2733,0,0,'I',2526,2733,'I002733','2025-12-10',5815,'','','0000-00-00','','',0,0,0,0,3882,'','','','','','N','drarchit','drarchit','2025-12-10 18:27:24','','0000-00-00 00:00:00'),(2734,0,0,'I',2526,2734,'I002734','2025-12-10',5822,'','','0000-00-00','','',0,0,0,0,994,'','','','','','N','darshan','darshan','2025-12-10 18:31:58','','0000-00-00 00:00:00'),(2735,0,0,'I',2526,2735,'I002735','2025-12-10',5729,'','','0000-00-00','','',0,0,0,0,2022,'','','','','','N','drjayant','drjayant','2025-12-10 18:32:12','','0000-00-00 00:00:00'),(2736,0,0,'I',2526,2736,'I002736','2025-12-10',5818,'','','0000-00-00','','',0,0,0,0,1587,'','','','','','N','drarchit','drarchit','2025-12-10 18:32:40','','0000-00-00 00:00:00'),(2737,0,0,'I',2526,2737,'I002737','2025-12-10',5799,'','','0000-00-00','','',0,0,0,0,3874,'','','','','','N','darshan','darshan','2025-12-10 18:37:14','','0000-00-00 00:00:00'),(2738,0,0,'I',2526,2738,'I002738','2025-12-10',5819,'','','0000-00-00','','',0,0,0,0,3885,'','','','','','N','drarchit','drarchit','2025-12-10 18:40:26','','0000-00-00 00:00:00'),(2739,0,0,'I',2526,2739,'I002739','2025-12-10',5824,'','','0000-00-00','','',0,0,0,0,1864,'','','','','','N','darshan','darshan','2025-12-10 18:41:36','','0000-00-00 00:00:00'),(2740,0,0,'I',2526,2740,'I002740','2025-12-10',5690,'','','0000-00-00','','',0,0,0,0,3815,'','','','','','N','drjayant','drjayant','2025-12-10 18:45:40','','0000-00-00 00:00:00'),(2741,0,0,'I',2526,2741,'I002741','2025-12-10',5817,'','','0000-00-00','','',0,0,0,0,3884,'','','','','','N','darshan','darshan','2025-12-10 18:46:49','','0000-00-00 00:00:00'),(2742,0,0,'I',2526,2742,'I002742','2025-12-10',5826,'','','0000-00-00','','',0,0,0,0,2444,'','','','','','N','drarchit','drarchit','2025-12-10 18:47:43','','0000-00-00 00:00:00'),(2743,0,0,'I',2526,2743,'I002743','2025-12-10',5825,'','','0000-00-00','','',0,0,0,0,3889,'','','','','','N','drarchit','drarchit','2025-12-10 18:55:20','','0000-00-00 00:00:00'),(2744,0,0,'I',2526,2744,'I002744','2025-12-10',5832,'','','0000-00-00','','',0,0,0,0,3892,'','','','','','N','drjayant','drjayant','2025-12-10 18:55:37','','0000-00-00 00:00:00'),(2745,0,0,'I',2526,2745,'I002745','2025-12-10',5827,'','','0000-00-00','','',0,0,0,0,2484,'','','','','','N','darshan','darshan','2025-12-10 19:00:18','','0000-00-00 00:00:00'),(2746,0,0,'I',2526,2746,'I002746','2025-12-10',5834,'','','0000-00-00','','',0,0,0,0,3893,'','','','','','N','drarchit','drarchit','2025-12-10 19:11:02','','0000-00-00 00:00:00'),(2747,0,0,'I',2526,2747,'I002747','2025-12-10',5835,'','','0000-00-00','','',0,0,0,0,1531,'','','','','','N','darshan','darshan','2025-12-10 19:19:56','','0000-00-00 00:00:00'),(2748,0,0,'I',2526,2748,'I002748','2025-12-10',5820,'','','0000-00-00','','',0,0,0,0,3886,'','','','','','N','darshan','darshan','2025-12-10 19:25:09','','0000-00-00 00:00:00'),(2749,0,0,'I',2526,2749,'I002749','2025-12-10',5833,'','','0000-00-00','','',0,0,0,0,1796,'','','','','','N','darshan','darshan','2025-12-10 19:47:12','','0000-00-00 00:00:00'),(2750,0,0,'I',2526,2750,'I002750','2025-12-10',5843,'','','0000-00-00','','',0,0,0,0,3898,'','','','','','N','drarchit','drarchit','2025-12-10 19:47:40','','0000-00-00 00:00:00'),(2751,0,0,'I',2526,2751,'I002751','2025-12-10',5839,'','','0000-00-00','','',0,0,0,0,3896,'','','','','','N','darshan','darshan','2025-12-10 19:56:16','','0000-00-00 00:00:00'),(2752,0,0,'I',2526,2752,'I002752','2025-12-10',5838,'','','0000-00-00','','',0,0,0,0,2636,'','','','','','N','drarchit','drarchit','2025-12-10 20:11:41','','0000-00-00 00:00:00'),(2753,0,0,'I',2526,2753,'I002753','2025-12-11',5852,'','','0000-00-00','','',0,0,0,0,1118,'','','','','','N','darshan','darshan','2025-12-11 10:48:13','','0000-00-00 00:00:00'),(2754,0,0,'I',2526,2754,'I002754','2025-12-11',5853,'','','0000-00-00','','',0,0,0,0,3905,'','','','','','N','darshan','darshan','2025-12-11 11:04:44','','0000-00-00 00:00:00'),(2755,0,0,'I',2526,2755,'I002755','2025-12-11',5863,'','','0000-00-00','','',0,0,0,0,2782,'','','','','','N','darshan','darshan','2025-12-11 11:24:07','','0000-00-00 00:00:00'),(2756,0,0,'I',2526,2756,'I002756','2025-12-11',5857,'','','0000-00-00','','',0,0,0,0,3908,'','','','','','N','darshan','darshan','2025-12-11 11:31:21','','0000-00-00 00:00:00'),(2757,0,0,'I',2526,2757,'I002757','2025-12-11',5871,'','','0000-00-00','','',0,0,0,0,3913,'','','','','','N','drjayant','drjayant','2025-12-11 11:38:45','','0000-00-00 00:00:00'),(2758,0,0,'I',2526,2758,'I002758','2025-12-11',5858,'','','0000-00-00','','',0,0,0,0,1784,'','','','','','N','darshan','darshan','2025-12-11 11:39:29','','0000-00-00 00:00:00'),(2759,0,0,'I',2526,2759,'I002759','2025-12-11',5869,'','','0000-00-00','','',0,0,0,0,3912,'','','','','','N','drarchit','drarchit','2025-12-11 11:41:23','','0000-00-00 00:00:00'),(2760,0,0,'I',2526,2760,'I002760','2025-12-11',5868,'','','0000-00-00','','',0,0,0,0,3382,'','','','','','N','drarchit','drarchit','2025-12-11 11:45:37','','0000-00-00 00:00:00'),(2761,0,0,'I',2526,2761,'I002761','2025-12-11',5865,'','','0000-00-00','','',0,0,0,0,2218,'','','','','','N','darshan','darshan','2025-12-11 11:45:47','','0000-00-00 00:00:00'),(2762,0,0,'I',2526,2762,'I002762','2025-12-11',5861,'','','0000-00-00','','',0,0,0,0,3910,'','','','','','N','darshan','darshan','2025-12-11 11:50:28','','0000-00-00 00:00:00'),(2763,0,0,'I',2526,2763,'I002763','2025-12-11',5855,'','','0000-00-00','','',0,0,0,0,3693,'','','','','','N','drarchit','drarchit','2025-12-11 11:51:38','','0000-00-00 00:00:00'),(2764,0,0,'I',2526,2764,'I002764','2025-12-11',5875,'','','0000-00-00','','',0,0,0,0,3306,'','','','','','N','darshan','darshan','2025-12-11 11:55:19','','0000-00-00 00:00:00'),(2765,0,0,'I',2526,2765,'I002765','2025-12-11',5864,'','','0000-00-00','','',0,0,0,0,3231,'','','','','','N','drarchit','drarchit','2025-12-11 11:57:26','','0000-00-00 00:00:00'),(2766,0,0,'I',2526,2766,'I002766','2025-12-11',5862,'','','0000-00-00','','',0,0,0,0,2639,'','','','','','N','darshan','darshan','2025-12-11 11:59:23','','0000-00-00 00:00:00'),(2767,0,0,'I',2526,2767,'I002767','2025-12-11',5873,'','','0000-00-00','','',0,0,0,0,3914,'','','','','','N','drarchit','drarchit','2025-12-11 12:01:17','','0000-00-00 00:00:00'),(2768,0,0,'I',2526,2768,'I002768','2025-12-11',5884,'','','0000-00-00','','',0,0,0,0,3037,'','','','','','N','drarchit','drarchit','2025-12-11 12:05:35','','0000-00-00 00:00:00'),(2769,0,0,'I',2526,2769,'I002769','2025-12-11',5854,'','','0000-00-00','','',0,0,0,0,3906,'','','','','','N','darshan','darshan','2025-12-11 12:05:53','','0000-00-00 00:00:00'),(2770,0,0,'I',2526,2770,'I002770','2025-12-11',5885,'','','0000-00-00','','',0,0,0,0,3921,'','','','','','N','drarchit','drarchit','2025-12-11 12:09:51','','0000-00-00 00:00:00'),(2771,0,0,'I',2526,2771,'I002771','2025-12-11',5879,'','','0000-00-00','','',0,0,0,0,3918,'','','','','','N','darshan','darshan','2025-12-11 12:11:38','','0000-00-00 00:00:00'),(2772,0,0,'I',2526,2772,'I002772','2025-12-11',5877,'','','0000-00-00','','',0,0,0,0,185,'','','','','','N','darshan','darshan','2025-12-11 12:18:50','','0000-00-00 00:00:00'),(2773,0,0,'I',2526,2773,'I002773','2025-12-11',5866,'','','0000-00-00','','',0,0,0,0,3500,'','','','','','N','darshan','darshan','2025-12-11 12:22:52','','0000-00-00 00:00:00'),(2774,0,0,'I',2526,2774,'I002774','2025-12-11',5892,'','','0000-00-00','','',0,0,0,0,3927,'','','','','','N','drarchit','drarchit','2025-12-11 12:33:56','','0000-00-00 00:00:00'),(2775,0,0,'I',2526,2775,'I002775','2025-12-11',5878,'','','0000-00-00','','',0,0,0,0,3917,'','','','','','N','darshan','darshan','2025-12-11 12:38:27','','0000-00-00 00:00:00'),(2776,0,0,'I',2526,2776,'I002776','2025-12-11',5890,'','','0000-00-00','','',0,0,0,0,3925,'','','','','','N','drarchit','drarchit','2025-12-11 12:38:58','','0000-00-00 00:00:00'),(2777,0,0,'I',2526,2777,'I002777','2025-12-11',5893,'','','0000-00-00','','',0,0,0,0,399,'','','','','','N','drarchit','drarchit','2025-12-11 12:42:40','','0000-00-00 00:00:00'),(2778,0,0,'I',2526,2778,'I002778','2025-12-11',5886,'','','0000-00-00','','',0,0,0,0,3922,'','','','','','N','drarchit','drarchit','2025-12-11 12:51:47','','0000-00-00 00:00:00'),(2779,0,0,'I',2526,2779,'I002779','2025-12-11',5870,'','','0000-00-00','','',0,0,0,0,1530,'','','','','','N','darshan','darshan','2025-12-11 12:53:20','','0000-00-00 00:00:00'),(2780,0,0,'I',2526,2780,'I002780','2025-12-11',5888,'','','0000-00-00','','',0,0,0,0,3924,'','','','','','N','drjayant','drjayant','2025-12-11 12:56:46','','0000-00-00 00:00:00'),(2781,0,0,'I',2526,2781,'I002781','2025-12-11',5900,'','','0000-00-00','','',0,0,0,0,3930,'','','','','','N','drarchit','drarchit','2025-12-11 12:58:51','','0000-00-00 00:00:00'),(2782,0,0,'I',2526,2782,'I002782','2025-12-11',5897,'','','0000-00-00','','',0,0,0,0,3929,'','','','','','N','drarchit','drarchit','2025-12-11 13:00:46','','0000-00-00 00:00:00'),(2783,0,0,'I',2526,2783,'I002783','2025-12-11',5856,'','','0000-00-00','','',0,0,0,0,3907,'','','','','','N','darshan','darshan','2025-12-11 13:06:22','','0000-00-00 00:00:00'),(2784,0,0,'I',2526,2784,'I002784','2025-12-11',5880,'','','0000-00-00','','',0,0,0,0,629,'','','','','','N','darshan','darshan','2025-12-11 13:20:29','','0000-00-00 00:00:00'),(2785,0,0,'I',2526,2785,'I002785','2025-12-11',5902,'','','0000-00-00','','',0,0,0,0,3932,'','','','','','N','darshan','darshan','2025-12-11 13:23:39','','0000-00-00 00:00:00'),(2786,0,0,'I',2526,2786,'I002786','2025-12-11',5899,'','','0000-00-00','','',0,0,0,0,1369,'','','','','','N','darshan','darshan','2025-12-11 13:35:29','','0000-00-00 00:00:00'),(2787,0,0,'I',2526,2787,'I002787','2025-12-11',5895,'','','0000-00-00','','',0,0,0,0,3928,'','','','','','N','darshan','darshan','2025-12-11 13:47:43','','0000-00-00 00:00:00'),(2788,0,0,'I',2526,2788,'I002788','2025-12-11',5874,'','','0000-00-00','','',0,0,0,0,3915,'','','','','','N','darshan','darshan','2025-12-11 13:54:37','','0000-00-00 00:00:00'),(2789,0,0,'I',2526,2789,'I002789','2025-12-11',5901,'','','0000-00-00','','',0,0,0,0,3931,'','','','','','N','darshan','darshan','2025-12-11 14:10:35','','0000-00-00 00:00:00'),(2790,0,0,'I',2526,2790,'I002790','2025-12-11',5908,'','','0000-00-00','','',0,0,0,0,3937,'','','','','','N','darshan','darshan','2025-12-11 17:07:05','','0000-00-00 00:00:00'),(2791,0,0,'I',2526,2791,'I002791','2025-12-11',5913,'','','0000-00-00','','',0,0,0,0,3940,'','','','','','N','darshan','darshan','2025-12-11 17:20:50','','0000-00-00 00:00:00'),(2792,0,0,'I',2526,2792,'I002792','2025-12-11',5909,'','','0000-00-00','','',0,0,0,0,3938,'','','','','','N','darshan','darshan','2025-12-11 17:35:46','','0000-00-00 00:00:00'),(2793,0,0,'I',2526,2793,'I002793','2025-12-11',5910,'','','0000-00-00','','',0,0,0,0,1286,'','','','','','N','darshan','darshan','2025-12-11 17:44:09','','0000-00-00 00:00:00'),(2794,0,0,'I',2526,2794,'I002794','2025-12-11',5911,'','','0000-00-00','','',0,0,0,0,3939,'','','','','','N','darshan','darshan','2025-12-11 17:49:46','','0000-00-00 00:00:00'),(2795,0,0,'I',2526,2795,'I002795','2025-12-11',5915,'','','0000-00-00','','',0,0,0,0,2670,'','','','','','N','darshan','darshan','2025-12-11 17:59:10','','0000-00-00 00:00:00'),(2796,0,0,'I',2526,2796,'I002796','2025-12-11',5919,'','','0000-00-00','','',0,0,0,0,3317,'','','','','','N','darshan','darshan','2025-12-11 18:02:29','','0000-00-00 00:00:00'),(2797,0,0,'I',2526,2797,'I002797','2025-12-11',5830,'','','0000-00-00','','',0,0,0,0,3891,'','','','','','N','darshan','darshan','2025-12-11 18:10:27','','0000-00-00 00:00:00'),(2798,0,0,'I',2526,2798,'I002798','2025-12-11',5894,'','','0000-00-00','','',0,0,0,0,3069,'','','','','','N','drarchit','drarchit','2025-12-11 18:18:46','','0000-00-00 00:00:00'),(2799,0,0,'I',2526,2799,'I002799','2025-12-11',5887,'','','0000-00-00','','',0,0,0,0,3923,'','','','','','N','darshan','darshan','2025-12-11 18:19:45','','0000-00-00 00:00:00'),(2800,0,0,'I',2526,2800,'I002800','2025-12-11',5923,'','','0000-00-00','','',0,0,0,0,1549,'','','','','','N','darshan','darshan','2025-12-11 18:24:38','','0000-00-00 00:00:00'),(2801,0,0,'I',2526,2801,'I002801','2025-12-11',5922,'','','0000-00-00','','',0,0,0,0,3944,'','','','','','N','darshan','darshan','2025-12-11 18:32:29','','0000-00-00 00:00:00'),(2802,0,0,'I',2526,2802,'I002802','2025-12-11',5924,'','','0000-00-00','','',0,0,0,0,68,'','','','','','N','darshan','darshan','2025-12-11 18:36:15','','0000-00-00 00:00:00'),(2803,0,0,'I',2526,2803,'I002803','2025-12-11',5927,'','','0000-00-00','','',0,0,0,0,3947,'','','','','','N','drarchit','drarchit','2025-12-11 18:41:03','','0000-00-00 00:00:00'),(2804,0,0,'I',2526,2804,'I002804','2025-12-11',5933,'','','0000-00-00','','',0,0,0,0,2812,'','','','','','N','darshan','darshan','2025-12-11 18:42:54','','0000-00-00 00:00:00'),(2805,0,0,'I',2526,2805,'I002805','2025-12-11',5931,'','','0000-00-00','','',0,0,0,0,3949,'','','','','','N','drarchit','drarchit','2025-12-11 18:46:13','','0000-00-00 00:00:00'),(2806,0,0,'I',2526,2806,'I002806','2025-12-11',5930,'','','0000-00-00','','',0,0,0,0,3948,'','','','','','N','drarchit','drarchit','2025-12-11 18:50:00','','0000-00-00 00:00:00'),(2807,0,0,'I',2526,2807,'I002807','2025-12-11',5907,'','','0000-00-00','','',0,0,0,0,3936,'','','','','','N','darshan','darshan','2025-12-11 18:55:04','','0000-00-00 00:00:00'),(2808,0,0,'I',2526,2808,'I002808','2025-12-11',5936,'','','0000-00-00','','',0,0,0,0,3952,'','','','','','N','drjayant','drjayant','2025-12-11 18:55:43','','0000-00-00 00:00:00'),(2809,0,0,'I',2526,2809,'I002809','2025-12-11',5928,'','','0000-00-00','','',0,0,0,0,1883,'','','','','','N','drjayant','drjayant','2025-12-11 19:03:57','','0000-00-00 00:00:00'),(2810,0,0,'I',2526,2810,'I002810','2025-12-11',5876,'','','0000-00-00','','',0,0,0,0,3916,'','','','','','N','drarchit','drarchit','2025-12-11 19:19:25','','0000-00-00 00:00:00'),(2811,0,0,'I',2526,2811,'I002811','2025-12-11',5935,'','','0000-00-00','','',0,0,0,0,1658,'','','','','','N','drarchit','drarchit','2025-12-11 19:34:28','','0000-00-00 00:00:00'),(2812,0,0,'I',2526,2812,'I002812','2025-12-11',5934,'','','0000-00-00','','',0,0,0,0,3951,'','','','','','N','drarchit','drarchit','2025-12-11 19:39:30','','0000-00-00 00:00:00'),(2813,0,0,'I',2526,2813,'I002813','2025-12-11',5939,'','','0000-00-00','','',0,0,0,0,3954,'','','','','','N','darshan','darshan','2025-12-11 19:54:47','','0000-00-00 00:00:00'),(2814,0,0,'I',2526,2814,'I002814','2025-12-11',5943,'','','0000-00-00','','',0,0,0,0,3956,'','','','','','N','darshan','darshan','2025-12-11 19:57:38','','0000-00-00 00:00:00'),(2815,0,0,'I',2526,2815,'I002815','2025-12-11',5944,'','','0000-00-00','','',0,0,0,0,3957,'','','','','','N','drjayant','drjayant','2025-12-11 20:01:41','','0000-00-00 00:00:00'),(2816,0,0,'I',2526,2816,'I002816','2025-12-11',5945,'','','0000-00-00','','',0,0,0,0,3958,'','','','','','N','drarchit','drarchit','2025-12-11 20:04:23','','0000-00-00 00:00:00'),(2817,0,0,'I',2526,2817,'I002817','2025-12-12',5954,'','','0000-00-00','','',0,0,0,0,3298,'','','','','','N','darshan','darshan','2025-12-12 10:46:54','','0000-00-00 00:00:00'),(2818,0,0,'I',2526,2818,'I002818','2025-12-12',5956,'','','0000-00-00','','',0,0,0,0,3437,'','','','','','N','darshan','darshan','2025-12-12 10:53:11','','0000-00-00 00:00:00'),(2819,0,0,'I',2526,2819,'I002819','2025-12-12',5955,'','','0000-00-00','','',0,0,0,0,3343,'','','','','','N','darshan','darshan','2025-12-12 10:56:48','','0000-00-00 00:00:00'),(2820,0,0,'I',2526,2820,'I002820','2025-12-12',5953,'','','0000-00-00','','',0,0,0,0,905,'','','','','','N','drarchit','drarchit','2025-12-12 11:12:01','','0000-00-00 00:00:00'),(2821,0,0,'I',2526,2821,'I002821','2025-12-12',5963,'','','0000-00-00','','',0,0,0,0,3280,'','','','','','N','darshan','darshan','2025-12-12 11:31:06','','0000-00-00 00:00:00'),(2822,0,0,'I',2526,2822,'I002822','2025-12-12',5968,'','','0000-00-00','','',0,0,0,0,3360,'','','','','','N','darshan','darshan','2025-12-12 11:34:45','','0000-00-00 00:00:00'),(2823,0,0,'I',2526,2823,'I002823','2025-12-12',5952,'','','0000-00-00','','',0,0,0,0,2408,'','','','','','N','drarchit','drarchit','2025-12-12 11:36:35','','0000-00-00 00:00:00'),(2824,0,0,'I',2526,2824,'I002824','2025-12-12',5972,'','','0000-00-00','','',0,0,0,0,757,'','','','','','N','drjayant','drjayant','2025-12-12 11:36:53','','0000-00-00 00:00:00'),(2825,0,0,'I',2526,2825,'I002825','2025-12-12',5970,'','','0000-00-00','','',0,0,0,0,1832,'','','','','','N','drjayant','drjayant','2025-12-12 11:39:31','','0000-00-00 00:00:00'),(2826,0,0,'I',2526,2826,'I002826','2025-12-12',5959,'','','0000-00-00','','',0,0,0,0,3963,'','','','','','N','darshan','darshan','2025-12-12 11:51:57','','0000-00-00 00:00:00'),(2827,0,0,'I',2526,2827,'I002827','2025-12-12',5976,'','','0000-00-00','','',0,0,0,0,3972,'','','','','','N','drarchit','drarchit','2025-12-12 11:52:26','','0000-00-00 00:00:00'),(2828,0,0,'I',2526,2828,'I002828','2025-12-12',5977,'','','0000-00-00','','',0,0,0,0,488,'','','','','','N','darshan','darshan','2025-12-12 11:54:15','','0000-00-00 00:00:00'),(2829,0,0,'I',2526,2829,'I002829','2025-12-12',5917,'','','0000-00-00','','',0,0,0,0,3347,'','','','','','N','darshan','darshan','2025-12-12 11:55:52','','0000-00-00 00:00:00'),(2830,0,0,'I',2526,2830,'I002830','2025-12-12',5961,'','','0000-00-00','','',0,0,0,0,1506,'','','','','','N','darshan','darshan','2025-12-12 12:01:20','','0000-00-00 00:00:00'),(2831,0,0,'I',2526,2831,'I002831','2025-12-12',5967,'','','0000-00-00','','',0,0,0,0,1841,'','','','','','N','darshan','darshan','2025-12-12 12:11:39','','0000-00-00 00:00:00'),(2832,0,0,'I',2526,2832,'I002832','2025-12-12',5982,'','','0000-00-00','','',0,0,0,0,2843,'','','','','','N','darshan','darshan','2025-12-12 12:15:57','','0000-00-00 00:00:00'),(2833,0,0,'I',2526,2833,'I002833','2025-12-12',5962,'','','0000-00-00','','',0,0,0,0,1511,'','','','','','N','drarchit','drarchit','2025-12-12 12:17:54','','0000-00-00 00:00:00'),(2834,0,0,'I',2526,2834,'I002834','2025-12-12',5974,'','','0000-00-00','','',0,0,0,0,3970,'','','','','','N','darshan','darshan','2025-12-12 12:23:07','','0000-00-00 00:00:00'),(2835,0,0,'I',2526,2835,'I002835','2025-12-12',5984,'','','0000-00-00','','',0,0,0,0,3976,'','','','','','N','drarchit','drarchit','2025-12-12 12:23:52','','0000-00-00 00:00:00'),(2836,0,0,'I',2526,2836,'I002836','2025-12-12',5979,'','','0000-00-00','','',0,0,0,0,1096,'','','','','','N','darshan','darshan','2025-12-12 12:27:06','','0000-00-00 00:00:00'),(2837,0,0,'I',2526,2837,'I002837','2025-12-12',5991,'','','0000-00-00','','',0,0,0,0,3979,'','','','','','N','drarchit','drarchit','2025-12-12 12:28:34','','0000-00-00 00:00:00'),(2838,0,0,'I',2526,2838,'I002838','2025-12-12',5981,'','','0000-00-00','','',0,0,0,0,3377,'','','','','','N','darshan','darshan','2025-12-12 12:30:01','','0000-00-00 00:00:00'),(2839,0,0,'I',2526,2839,'I002839','2025-12-12',5960,'','','0000-00-00','','',0,0,0,0,3964,'','','','','','N','darshan','darshan','2025-12-12 12:34:48','','0000-00-00 00:00:00'),(2840,0,0,'I',2526,2840,'I002840','2025-12-12',5988,'','','0000-00-00','','',0,0,0,0,2251,'','','','','','N','darshan','darshan','2025-12-12 12:38:04','','0000-00-00 00:00:00'),(2841,0,0,'I',2526,2841,'I002841','2025-12-12',5986,'','','0000-00-00','','',0,0,0,0,3977,'','','','','','N','drarchit','drarchit','2025-12-12 12:39:09','','0000-00-00 00:00:00'),(2842,0,0,'I',2526,2842,'I002842','2025-12-12',5990,'','','0000-00-00','','',0,0,0,0,3054,'','','','','','N','darshan','darshan','2025-12-12 12:40:56','','0000-00-00 00:00:00'),(2843,0,0,'I',2526,2843,'I002843','2025-12-12',5964,'','','0000-00-00','','',0,0,0,0,3965,'','','','','','N','darshan','darshan','2025-12-12 12:46:34','','0000-00-00 00:00:00'),(2844,0,0,'I',2526,2844,'I002844','2025-12-12',5965,'','','0000-00-00','','',0,0,0,0,3966,'','','','','','N','drarchit','drarchit','2025-12-12 12:48:34','','0000-00-00 00:00:00'),(2845,0,0,'I',2526,2845,'I002845','2025-12-12',5966,'','','0000-00-00','','',0,0,0,0,3967,'','','','','','N','drarchit','drarchit','2025-12-12 12:51:06','','0000-00-00 00:00:00'),(2846,0,0,'I',2526,2846,'I002846','2025-12-12',5995,'','','0000-00-00','','',0,0,0,0,3982,'','','','','','N','drarchit','drarchit','2025-12-12 12:57:49','','0000-00-00 00:00:00'),(2847,0,0,'I',2526,2847,'I002847','2025-12-12',5980,'','','0000-00-00','','',0,0,0,0,3974,'','','','','','N','drarchit','drarchit','2025-12-12 13:01:04','','0000-00-00 00:00:00'),(2848,0,0,'I',2526,2848,'I002848','2025-12-12',5989,'','','0000-00-00','','',0,0,0,0,3978,'','','','','','N','darshan','darshan','2025-12-12 13:04:23','','0000-00-00 00:00:00'),(2849,0,0,'I',2526,2849,'I002849','2025-12-12',5957,'','','0000-00-00','','',0,0,0,0,3962,'','','','','','N','darshan','darshan','2025-12-12 13:08:02','','0000-00-00 00:00:00'),(2850,0,0,'I',2526,2850,'I002850','2025-12-12',5949,'','','0000-00-00','','',0,0,0,0,3960,'','','','','','N','drjayant','drjayant','2025-12-12 13:14:00','','0000-00-00 00:00:00'),(2851,0,0,'I',2526,2851,'I002851','2025-12-12',5951,'','','0000-00-00','','',0,0,0,0,3413,'','','','','','N','darshan','darshan','2025-12-12 13:34:29','','0000-00-00 00:00:00'),(2852,0,0,'I',2526,2852,'I002852','2025-12-12',5996,'','','0000-00-00','','',0,0,0,0,3983,'','','','','','N','darshan','darshan','2025-12-12 13:54:50','','0000-00-00 00:00:00'),(2853,0,0,'I',2526,2853,'I002853','2025-12-12',6006,'','','0000-00-00','','',0,0,0,0,1652,'','','','','','N','darshan','darshan','2025-12-12 17:08:44','','0000-00-00 00:00:00'),(2854,0,0,'I',2526,2854,'I002854','2025-12-12',6005,'','','0000-00-00','','',0,0,0,0,1698,'','','','','','N','darshan','darshan','2025-12-12 17:13:05','','0000-00-00 00:00:00'),(2855,0,0,'I',2526,2855,'I002855','2025-12-12',6013,'','','0000-00-00','','',0,0,0,0,3989,'','','','','','N','darshan','darshan','2025-12-12 17:37:36','','0000-00-00 00:00:00'),(2856,0,0,'I',2526,2856,'I002856','2025-12-12',6015,'','','0000-00-00','','',0,0,0,0,3991,'','','','','','N','darshan','darshan','2025-12-12 17:41:18','','0000-00-00 00:00:00'),(2857,0,0,'I',2526,2857,'I002857','2025-12-12',6001,'','','0000-00-00','','',0,0,0,0,3985,'','','','','','N','darshan','darshan','2025-12-12 18:00:13','','0000-00-00 00:00:00'),(2858,0,0,'I',2526,2858,'I002858','2025-12-12',6003,'','','0000-00-00','','',0,0,0,0,1028,'','','','','','N','darshan','darshan','2025-12-12 18:03:22','','0000-00-00 00:00:00'),(2859,0,0,'I',2526,2859,'I002859','2025-12-12',6022,'','','0000-00-00','','',0,0,0,0,2345,'','','','','','N','darshan','darshan','2025-12-12 18:07:30','','0000-00-00 00:00:00'),(2860,0,0,'I',2526,2860,'I002860','2025-12-12',5994,'','','0000-00-00','','',0,0,0,0,3981,'','','','','','N','drarchit','drarchit','2025-12-12 18:10:11','','0000-00-00 00:00:00'),(2861,0,0,'I',2526,2861,'I002861','2025-12-12',6010,'','','0000-00-00','','',0,0,0,0,3565,'','','','','','N','darshan','darshan','2025-12-12 18:14:03','','0000-00-00 00:00:00'),(2862,0,0,'I',2526,2862,'I002862','2025-12-12',6021,'','','0000-00-00','','',0,0,0,0,3996,'','','','','','N','drarchit','drarchit','2025-12-12 18:14:20','','0000-00-00 00:00:00'),(2863,0,0,'I',2526,2863,'I002863','2025-12-12',6033,'','','0000-00-00','','',0,0,0,0,4004,'','','','','','N','drarchit','drarchit','2025-12-12 18:31:51','','0000-00-00 00:00:00'),(2864,0,0,'I',2526,2864,'I002864','2025-12-12',6024,'','','0000-00-00','','',0,0,0,0,3998,'','','','','','N','darshan','darshan','2025-12-12 18:34:07','','0000-00-00 00:00:00'),(2865,0,0,'I',2526,2865,'I002865','2025-12-12',6023,'','','0000-00-00','','',0,0,0,0,3997,'','','','','','N','darshan','darshan','2025-12-12 18:38:19','','0000-00-00 00:00:00'),(2866,0,0,'I',2526,2866,'I002866','2025-12-12',6035,'','','0000-00-00','','',0,0,0,0,4006,'','','','','','N','drarchit','drarchit','2025-12-12 18:40:47','','0000-00-00 00:00:00'),(2867,0,0,'I',2526,2867,'I002867','2025-12-12',6030,'','','0000-00-00','','',0,0,0,0,306,'','','','','','N','drjayant','drjayant','2025-12-12 18:44:36','','0000-00-00 00:00:00'),(2868,0,0,'I',2526,2868,'I002868','2025-12-12',6037,'','','0000-00-00','','',0,0,0,0,4007,'','','','','','N','drarchit','drarchit','2025-12-12 18:48:10','','0000-00-00 00:00:00'),(2869,0,0,'I',2526,2869,'I002869','2025-12-12',6019,'','','0000-00-00','','',0,0,0,0,3994,'','','','','','N','darshan','darshan','2025-12-12 18:49:19','','0000-00-00 00:00:00'),(2870,0,0,'I',2526,2870,'I002870','2025-12-12',6031,'','','0000-00-00','','',0,0,0,0,4003,'','','','','','N','drjayant','drjayant','2025-12-12 18:51:20','','0000-00-00 00:00:00'),(2871,0,0,'I',2526,2871,'I002871','2025-12-12',6002,'','','0000-00-00','','',0,0,0,0,3986,'','','','','','N','darshan','darshan','2025-12-12 18:53:14','','0000-00-00 00:00:00'),(2872,0,0,'I',2526,2872,'I002872','2025-12-12',5983,'','','0000-00-00','','',0,0,0,0,3975,'','','','','','N','drarchit','drarchit','2025-12-12 18:56:44','','0000-00-00 00:00:00'),(2873,0,0,'I',2526,2873,'I002873','2025-12-12',6025,'','','0000-00-00','','',0,0,0,0,1089,'','','','','','N','darshan','darshan','2025-12-12 18:59:26','','0000-00-00 00:00:00'),(2874,0,0,'I',2526,2874,'I002874','2025-12-12',6038,'','','0000-00-00','','',0,0,0,0,4008,'','','','','','N','drarchit','drarchit','2025-12-12 19:03:18','','0000-00-00 00:00:00'),(2875,0,0,'I',2526,2875,'I002875','2025-12-12',6034,'','','0000-00-00','','',0,0,0,0,4005,'','','','','','N','drjayant','drjayant','2025-12-12 19:06:16','','0000-00-00 00:00:00'),(2876,0,0,'I',2526,2876,'I002876','2025-12-12',6043,'','','0000-00-00','','',0,0,0,0,4013,'','','','','','N','darshan','darshan','2025-12-12 19:07:04','','0000-00-00 00:00:00'),(2877,0,0,'I',2526,2877,'I002877','2025-12-12',5997,'','','0000-00-00','','',0,0,0,0,3955,'','','','','','N','drarchit','drarchit','2025-12-12 19:10:10','','0000-00-00 00:00:00'),(2878,0,0,'I',2526,2878,'I002878','2025-12-12',6016,'','','0000-00-00','','',0,0,0,0,3992,'','','','','','N','darshan','darshan','2025-12-12 19:11:58','','0000-00-00 00:00:00'),(2879,0,0,'I',2526,2879,'I002879','2025-12-12',6052,'','','0000-00-00','','',0,0,0,0,4014,'','','','','','N','drjayant','drjayant','2025-12-12 19:12:02','','0000-00-00 00:00:00'),(2880,0,0,'I',2526,2880,'I002880','2025-12-12',6028,'','','0000-00-00','','',0,0,0,0,4001,'','','','','','N','darshan','darshan','2025-12-12 19:16:34','','0000-00-00 00:00:00'),(2881,0,0,'I',2526,2881,'I002881','2025-12-12',6009,'','','0000-00-00','','',0,0,0,0,3987,'','','','','','N','drarchit','drarchit','2025-12-12 19:21:07','','0000-00-00 00:00:00'),(2882,0,0,'I',2526,2882,'I002882','2025-12-12',6020,'','','0000-00-00','','',0,0,0,0,3995,'','','','','','N','darshan','darshan','2025-12-12 19:23:46','','0000-00-00 00:00:00'),(2883,0,0,'I',2526,2883,'I002883','2025-12-12',5941,'','','0000-00-00','','',0,0,0,0,1975,'','','','','','N','darshan','darshan','2025-12-12 19:27:35','','0000-00-00 00:00:00'),(2884,0,0,'I',2526,2884,'I002884','2025-12-12',6041,'','','0000-00-00','','',0,0,0,0,4011,'','','','','','N','drarchit','drarchit','2025-12-12 19:27:45','','0000-00-00 00:00:00'),(2885,0,0,'I',2526,2885,'I002885','2025-12-12',6044,'','','0000-00-00','','',0,0,0,0,2368,'','','','','','N','drarchit','drarchit','2025-12-12 19:31:14','','0000-00-00 00:00:00'),(2886,0,0,'I',2526,2886,'I002886','2025-12-12',6050,'','','0000-00-00','','',0,0,0,0,2673,'','','','','','N','drarchit','drarchit','2025-12-12 19:36:02','','0000-00-00 00:00:00'),(2887,0,0,'I',2526,2887,'I002887','2025-12-12',6017,'','','0000-00-00','','',0,0,0,0,3993,'','','','','','N','darshan','darshan','2025-12-12 19:39:26','','0000-00-00 00:00:00'),(2888,0,0,'I',2526,2888,'I002888','2025-12-12',6045,'','','0000-00-00','','',0,0,0,0,3598,'','','','','','N','drarchit','drarchit','2025-12-12 19:40:38','','0000-00-00 00:00:00'),(2889,0,0,'I',2526,2889,'I002889','2025-12-12',6046,'','','0000-00-00','','',0,0,0,0,536,'','','','','','N','darshan','darshan','2025-12-12 19:42:35','','0000-00-00 00:00:00'),(2890,0,0,'I',2526,2890,'I002890','2025-12-12',6051,'','','0000-00-00','','',0,0,0,0,1156,'','','','','','N','drarchit','drarchit','2025-12-12 19:45:54','','0000-00-00 00:00:00'),(2891,0,0,'I',2526,2891,'I002891','2025-12-12',6053,'','','0000-00-00','','',0,0,0,0,2495,'','','','','','N','drarchit','drarchit','2025-12-12 19:48:50','','0000-00-00 00:00:00'),(2892,0,0,'I',2526,2892,'I002892','2025-12-12',6049,'','','0000-00-00','','',0,0,0,0,2174,'','','','','','N','darshan','darshan','2025-12-12 19:50:06','','0000-00-00 00:00:00'),(2893,0,0,'I',2526,2893,'I002893','2025-12-12',6059,'','','0000-00-00','','',0,0,0,0,348,'','','','','','N','drarchit','drarchit','2025-12-12 20:06:54','','0000-00-00 00:00:00'),(2894,0,0,'I',2526,2894,'I002894','2025-12-12',6063,'','','0000-00-00','','',0,0,0,0,4019,'','','','','','N','darshan','darshan','2025-12-12 20:07:56','','0000-00-00 00:00:00'),(2895,0,0,'I',2526,2895,'I002895','2025-12-12',6060,'','','0000-00-00','','',0,0,0,0,4017,'','','','','','N','drarchit','drarchit','2025-12-12 20:12:12','','0000-00-00 00:00:00'),(2896,0,0,'I',2526,2896,'I002896','2025-12-13',6076,'','','0000-00-00','','',0,0,0,0,1130,'','','','','','N','darshan','darshan','2025-12-13 10:54:05','','0000-00-00 00:00:00'),(2897,0,0,'I',2526,2897,'I002897','2025-12-13',6077,'','','0000-00-00','','',0,0,0,0,3457,'','','','','','N','darshan','darshan','2025-12-13 10:59:50','','0000-00-00 00:00:00'),(2898,0,0,'I',2526,2898,'I002898','2025-12-13',6083,'','','0000-00-00','','',0,0,0,0,3462,'','','','','','N','darshan','darshan','2025-12-13 11:16:37','','0000-00-00 00:00:00'),(2899,0,0,'I',2526,2899,'I002899','2025-12-13',6079,'','','0000-00-00','','',0,0,0,0,594,'','','','','','N','drarchit','drarchit','2025-12-13 11:18:38','','0000-00-00 00:00:00'),(2900,0,0,'I',2526,2900,'I002900','2025-12-13',6092,'','','0000-00-00','','',0,0,0,0,2235,'','','','','','N','darshan','darshan','2025-12-13 11:20:33','','0000-00-00 00:00:00'),(2901,0,0,'I',2526,2901,'I002901','2025-12-13',6103,'','','0000-00-00','','',0,0,0,0,3582,'','','','','','N','drarchit','drarchit','2025-12-13 11:26:41','','0000-00-00 00:00:00'),(2902,0,0,'I',2526,2902,'I002902','2025-12-13',6069,'','','0000-00-00','','',0,0,0,0,155,'','','','','','N','drjayant','drjayant','2025-12-13 11:30:12','','0000-00-00 00:00:00'),(2903,0,0,'I',2526,2903,'I002903','2025-12-13',6100,'','','0000-00-00','','',0,0,0,0,1624,'','','','','','N','darshan','darshan','2025-12-13 11:30:27','','0000-00-00 00:00:00'),(2904,0,0,'I',2526,2904,'I002904','2025-12-13',6098,'','','0000-00-00','','',0,0,0,0,4034,'','','','','','N','drarchit','drarchit','2025-12-13 11:38:01','','0000-00-00 00:00:00'),(2905,0,0,'I',2526,2905,'I002905','2025-12-13',6101,'','','0000-00-00','','',0,0,0,0,4036,'','','','','','N','drjayant','drjayant','2025-12-13 11:39:07','','0000-00-00 00:00:00'),(2906,0,0,'I',2526,2906,'I002906','2025-12-13',6109,'','','0000-00-00','','',0,0,0,0,4040,'','','','','','N','darshan','darshan','2025-12-13 11:43:08','','0000-00-00 00:00:00'),(2907,0,0,'I',2526,2907,'I002907','2025-12-13',6080,'','','0000-00-00','','',0,0,0,0,4027,'','','','','','N','darshan','darshan','2025-12-13 11:48:41','','0000-00-00 00:00:00'),(2908,0,0,'I',2526,2908,'I002908','2025-12-13',6114,'','','0000-00-00','','',0,0,0,0,1280,'','','','','','N','drarchit','drarchit','2025-12-13 11:49:05','','0000-00-00 00:00:00'),(2909,0,0,'I',2526,2909,'I002909','2025-12-13',6105,'','','0000-00-00','','',0,0,0,0,466,'','','','','','N','darshan','darshan','2025-12-13 11:52:28','','0000-00-00 00:00:00'),(2910,0,0,'I',2526,2910,'I002910','2025-12-13',6087,'','','0000-00-00','','',0,0,0,0,4029,'','','','','','N','drarchit','drarchit','2025-12-13 12:05:04','','0000-00-00 00:00:00'),(2911,0,0,'I',2526,2911,'I002911','2025-12-13',6014,'','','0000-00-00','','',0,0,0,0,3990,'','','','','','N','drjayant','drjayant','2025-12-13 12:07:20','','0000-00-00 00:00:00'),(2912,0,0,'I',2526,2912,'I002912','2025-12-13',6090,'','','0000-00-00','','',0,0,0,0,4032,'','','','','','N','darshan','darshan','2025-12-13 12:07:38','','0000-00-00 00:00:00'),(2913,0,0,'I',2526,2913,'I002913','2025-12-13',6118,'','','0000-00-00','','',0,0,0,0,4044,'','','','','','N','drarchit','drarchit','2025-12-13 12:08:33','','0000-00-00 00:00:00'),(2914,0,0,'I',2526,2914,'I002914','2025-12-13',6095,'','','0000-00-00','','',0,0,0,0,308,'','','','','','N','darshan','darshan','2025-12-13 12:11:07','','0000-00-00 00:00:00'),(2915,0,0,'I',2526,2915,'I002915','2025-12-13',6121,'','','0000-00-00','','',0,0,0,0,3517,'','','','','','N','drarchit','drarchit','2025-12-13 12:19:57','','0000-00-00 00:00:00'),(2916,0,0,'I',2526,2916,'I002916','2025-12-13',6112,'','','0000-00-00','','',0,0,0,0,2960,'','','','','','N','darshan','darshan','2025-12-13 12:23:05','','0000-00-00 00:00:00'),(2917,0,0,'I',2526,2917,'I002917','2025-12-13',6107,'','','0000-00-00','','',0,0,0,0,4038,'','','','','','N','darshan','darshan','2025-12-13 12:28:28','','0000-00-00 00:00:00'),(2918,0,0,'I',2526,2918,'I002918','2025-12-13',6122,'','','0000-00-00','','',0,0,0,0,237,'','','','','','N','drarchit','drarchit','2025-12-13 12:29:22','','0000-00-00 00:00:00'),(2919,0,0,'I',2526,2919,'I002919','2025-12-13',6124,'','','0000-00-00','','',0,0,0,0,4047,'','','','','','N','drarchit','drarchit','2025-12-13 12:34:41','','0000-00-00 00:00:00'),(2920,0,0,'I',2526,2920,'I002920','2025-12-13',5975,'','','0000-00-00','','',0,0,0,0,3971,'','','','','','N','drjayant','drjayant','2025-12-13 12:35:30','','0000-00-00 00:00:00'),(2921,0,0,'I',2526,2921,'I002921','2025-12-13',6099,'','','0000-00-00','','',0,0,0,0,4035,'','','','','','N','darshan','darshan','2025-12-13 12:40:30','','0000-00-00 00:00:00'),(2922,0,0,'I',2526,2922,'I002922','2025-12-13',6126,'','','0000-00-00','','',0,0,0,0,4049,'','','','','','N','drarchit','drarchit','2025-12-13 12:43:24','','0000-00-00 00:00:00'),(2923,0,0,'I',2526,2923,'I002923','2025-12-13',6132,'','','0000-00-00','','',0,0,0,0,4051,'','','','','','N','drarchit','drarchit','2025-12-13 12:52:16','','0000-00-00 00:00:00'),(2924,0,0,'I',2526,2924,'I002924','2025-12-13',6113,'','','0000-00-00','','',0,0,0,0,3508,'','','','','','N','darshan','darshan','2025-12-13 12:53:42','','0000-00-00 00:00:00'),(2925,0,0,'I',2526,2925,'I002925','2025-12-13',6120,'','','0000-00-00','','',0,0,0,0,4045,'','','','','','N','darshan','darshan','2025-12-13 12:57:52','','0000-00-00 00:00:00'),(2926,0,0,'I',2526,2926,'I002926','2025-12-13',6072,'','','0000-00-00','','',0,0,0,0,4024,'','','','','','N','darshan','darshan','2025-12-13 13:02:37','','0000-00-00 00:00:00'),(2927,0,0,'I',2526,2927,'I002927','2025-12-13',6054,'','','0000-00-00','','',0,0,0,0,4015,'','','','','','N','drarchit','drarchit','2025-12-13 13:05:47','','0000-00-00 00:00:00'),(2928,0,0,'I',2526,2928,'I002928','2025-12-13',6139,'','','0000-00-00','','',0,0,0,0,2765,'','','','','','N','drarchit','drarchit','2025-12-13 13:20:08','','0000-00-00 00:00:00'),(2929,0,0,'I',2526,2929,'I002929','2025-12-13',6125,'','','0000-00-00','','',0,0,0,0,4048,'','','','','','N','darshan','darshan','2025-12-13 13:22:09','','0000-00-00 00:00:00'),(2930,0,0,'I',2526,2930,'I002930','2025-12-13',6117,'','','0000-00-00','','',0,0,0,0,4043,'','','','','','N','darshan','darshan','2025-12-13 13:27:37','','0000-00-00 00:00:00'),(2931,0,0,'I',2526,2931,'I002931','2025-12-13',6129,'','','0000-00-00','','',0,0,0,0,4050,'','','','','','N','drjayant','drjayant','2025-12-13 13:29:19','','0000-00-00 00:00:00'),(2932,0,0,'I',2526,2932,'I002932','2025-12-13',6119,'','','0000-00-00','','',0,0,0,0,3523,'','','','','','N','drarchit','drarchit','2025-12-13 13:36:18','','0000-00-00 00:00:00'),(2933,0,0,'I',2526,2933,'I002933','2025-12-13',6106,'','','0000-00-00','','',0,0,0,0,4037,'','','','','','N','darshan','darshan','2025-12-13 13:40:53','','0000-00-00 00:00:00'),(2934,0,0,'I',2526,2934,'I002934','2025-12-13',6108,'','','0000-00-00','','',0,0,0,0,4039,'','','','','','N','darshan','darshan','2025-12-13 13:53:59','','0000-00-00 00:00:00'),(2935,0,0,'I',2526,2935,'I002935','2025-12-13',6111,'','','0000-00-00','','',0,0,0,0,4041,'','','','','','N','darshan','darshan','2025-12-13 14:06:35','','0000-00-00 00:00:00'),(2936,0,0,'I',2526,2936,'I002936','2025-12-13',6128,'','','0000-00-00','','',0,0,0,0,1253,'','','','','','N','darshan','darshan','2025-12-13 14:10:10','','0000-00-00 00:00:00'),(2937,0,0,'I',2526,2937,'I002937','2025-12-13',6123,'','','0000-00-00','','',0,0,0,0,4046,'','','','','','N','darshan','darshan','2025-12-13 14:15:10','','0000-00-00 00:00:00'),(2938,0,0,'I',2526,2938,'I002938','2025-12-13',6135,'','','0000-00-00','','',0,0,0,0,1053,'','','','','','N','darshan','darshan','2025-12-13 14:20:47','','0000-00-00 00:00:00'),(2939,0,0,'I',2526,2939,'I002939','2025-12-13',6137,'','','0000-00-00','','',0,0,0,0,2193,'','','','','','N','darshan','darshan','2025-12-13 14:28:30','','0000-00-00 00:00:00'),(2940,0,0,'I',2526,2940,'I002940','2025-12-13',6089,'','','0000-00-00','','',0,0,0,0,4031,'','','','','','N','darshan','darshan','2025-12-13 14:33:29','','0000-00-00 00:00:00'),(2941,0,0,'I',2526,2941,'I002941','2025-12-15',6174,'','','0000-00-00','','',0,0,0,0,3366,'','','','','','N','darshan','darshan','2025-12-15 11:03:24','','0000-00-00 00:00:00'),(2942,0,0,'I',2526,2942,'I002942','2025-12-15',6184,'','','0000-00-00','','',0,0,0,0,2277,'','','','','','N','darshan','darshan','2025-12-15 11:08:54','','0000-00-00 00:00:00'),(2943,0,0,'I',2526,2943,'I002943','2025-12-15',6195,'','','0000-00-00','','',0,0,0,0,3755,'','','','','','N','drarchit','drarchit','2025-12-15 11:14:59','','0000-00-00 00:00:00'),(2944,0,0,'I',2526,2944,'I002944','2025-12-15',6177,'','','0000-00-00','','',0,0,0,0,3514,'','','','','','N','darshan','darshan','2025-12-15 11:19:18','','0000-00-00 00:00:00'),(2945,0,0,'I',2526,2945,'I002945','2025-12-15',6197,'','','0000-00-00','','',0,0,0,0,3148,'','','','','','N','drarchit','drarchit','2025-12-15 11:23:23','','0000-00-00 00:00:00'),(2946,0,0,'I',2526,2946,'I002946','2025-12-15',6199,'','','0000-00-00','','',0,0,0,0,3589,'','','','','','N','darshan','darshan','2025-12-15 11:24:21','','0000-00-00 00:00:00'),(2947,0,0,'I',2526,2947,'I002947','2025-12-15',6211,'','','0000-00-00','','',0,0,0,0,4087,'','','','','','N','drarchit','drarchit','2025-12-15 11:32:41','','0000-00-00 00:00:00'),(2948,0,0,'I',2526,2948,'I002948','2025-12-15',6209,'','','0000-00-00','','',0,0,0,0,4085,'','','','','','N','drarchit','drarchit','2025-12-15 11:33:44','','0000-00-00 00:00:00'),(2949,0,0,'I',2526,2949,'I002949','2025-12-15',6175,'','','0000-00-00','','',0,0,0,0,4069,'','','','','','N','drjayant','drjayant','2025-12-15 11:35:38','','0000-00-00 00:00:00'),(2950,0,0,'I',2526,2950,'I002950','2025-12-15',6183,'','','0000-00-00','','',0,0,0,0,2239,'','','','','','N','darshan','darshan','2025-12-15 11:42:58','','0000-00-00 00:00:00'),(2951,0,0,'I',2526,2951,'I002951','2025-12-15',6218,'','','0000-00-00','','',0,0,0,0,4092,'','','','','','N','drarchit','drarchit','2025-12-15 11:52:30','','0000-00-00 00:00:00'),(2952,0,0,'I',2526,2952,'I002952','2025-12-15',6225,'','','0000-00-00','','',0,0,0,0,4097,'','','','','','N','drarchit','drarchit','2025-12-15 11:55:57','','0000-00-00 00:00:00'),(2953,0,0,'I',2526,2953,'I002953','2025-12-15',6187,'','','0000-00-00','','',0,0,0,0,1965,'','','','','','N','darshan','darshan','2025-12-15 11:56:34','','0000-00-00 00:00:00'),(2954,0,0,'I',2526,2954,'I002954','2025-12-15',6226,'','','0000-00-00','','',0,0,0,0,4098,'','','','','','N','drarchit','drarchit','2025-12-15 11:59:14','','0000-00-00 00:00:00'),(2955,0,0,'I',2526,2955,'I002955','2025-12-15',6234,'','','0000-00-00','','',0,0,0,0,4101,'','','','','','N','drarchit','drarchit','2025-12-15 12:06:29','','0000-00-00 00:00:00'),(2956,0,0,'I',2526,2956,'I002956','2025-12-15',6205,'','','0000-00-00','','',0,0,0,0,1508,'','','','','','N','darshan','darshan','2025-12-15 12:17:09','','0000-00-00 00:00:00'),(2957,0,0,'I',2526,2957,'I002957','2025-12-15',6244,'','','0000-00-00','','',0,0,0,0,2532,'','','','','','N','darshan','darshan','2025-12-15 12:29:40','','0000-00-00 00:00:00'),(2958,0,0,'I',2526,2958,'I002958','2025-12-15',6242,'','','0000-00-00','','',0,0,0,0,2917,'','','','','','N','darshan','darshan','2025-12-15 12:38:47','','0000-00-00 00:00:00'),(2959,0,0,'I',2526,2959,'I002959','2025-12-15',6200,'','','0000-00-00','','',0,0,0,0,3382,'','','','','','N','drarchit','drarchit','2025-12-15 12:43:00','','0000-00-00 00:00:00'),(2960,0,0,'I',2526,2960,'I002960','2025-12-15',6216,'','','0000-00-00','','',0,0,0,0,3358,'','','','','','N','darshan','darshan','2025-12-15 12:52:21','','0000-00-00 00:00:00'),(2961,0,0,'I',2526,2961,'I002961','2025-12-15',6246,'','','0000-00-00','','',0,0,0,0,4108,'','','','','','N','drjayant','drjayant','2025-12-15 12:55:02','','0000-00-00 00:00:00'),(2962,0,0,'I',2526,2962,'I002962','2025-12-15',6229,'','','0000-00-00','','',0,0,0,0,3303,'','','','','','N','darshan','darshan','2025-12-15 12:56:33','','0000-00-00 00:00:00'),(2963,0,0,'I',2526,2963,'I002963','2025-12-15',6173,'','','0000-00-00','','',0,0,0,0,4068,'','','','','','N','darshan','darshan','2025-12-15 13:01:29','','0000-00-00 00:00:00'),(2964,0,0,'I',2526,2964,'I002964','2025-12-15',6231,'','','0000-00-00','','',0,0,0,0,2075,'','','','','','N','darshan','darshan','2025-12-15 13:07:05','','0000-00-00 00:00:00'),(2965,0,0,'I',2526,2965,'I002965','2025-12-15',6230,'','','0000-00-00','','',0,0,0,0,4100,'','','','','','N','darshan','darshan','2025-12-15 13:10:23','','0000-00-00 00:00:00'),(2966,0,0,'I',2526,2966,'I002966','2025-12-15',6256,'','','0000-00-00','','',0,0,0,0,4114,'','','','','','N','drarchit','drarchit','2025-12-15 13:13:11','','0000-00-00 00:00:00'),(2967,0,0,'I',2526,2967,'I002967','2025-12-15',6178,'','','0000-00-00','','',0,0,0,0,4070,'','','','','','N','darshan','darshan','2025-12-15 13:17:59','','0000-00-00 00:00:00'),(2968,0,0,'I',2526,2968,'I002968','2025-12-15',6189,'','','0000-00-00','','',0,0,0,0,4075,'','','','','','N','darshan','darshan','2025-12-15 13:22:46','','0000-00-00 00:00:00'),(2969,0,0,'I',2526,2969,'I002969','2025-12-15',6255,'','','0000-00-00','','',0,0,0,0,4113,'','','','','','N','drjayant','drjayant','2025-12-15 13:33:10','','0000-00-00 00:00:00'),(2970,0,0,'I',2526,2970,'I002970','2025-12-15',6224,'','','0000-00-00','','',0,0,0,0,4096,'','','','','','N','darshan','darshan','2025-12-15 13:36:33','','0000-00-00 00:00:00'),(2971,0,0,'I',2526,2971,'I002971','2025-12-15',6241,'','','0000-00-00','','',0,0,0,0,4105,'','','','','','N','drjayant','drjayant','2025-12-15 13:41:09','','0000-00-00 00:00:00'),(2972,0,0,'I',2526,2972,'I002972','2025-12-15',6257,'','','0000-00-00','','',0,0,0,0,1051,'','','','','','N','darshan','darshan','2025-12-15 13:41:17','','0000-00-00 00:00:00'),(2973,0,0,'I',2526,2973,'I002973','2025-12-15',6193,'','','0000-00-00','','',0,0,0,0,811,'','','','','','N','drjayant','drjayant','2025-12-15 13:43:08','','0000-00-00 00:00:00'),(2974,0,0,'I',2526,2974,'I002974','2025-12-15',6196,'','','0000-00-00','','',0,0,0,0,4079,'','','','','','N','darshan','darshan','2025-12-15 13:45:11','','0000-00-00 00:00:00'),(2975,0,0,'I',2526,2975,'I002975','2025-12-15',6204,'','','0000-00-00','','',0,0,0,0,4081,'','','','','','N','darshan','darshan','2025-12-15 13:59:14','','0000-00-00 00:00:00'),(2976,0,0,'I',2526,2976,'I002976','2025-12-15',6214,'','','0000-00-00','','',0,0,0,0,4090,'','','','','','N','darshan','darshan','2025-12-15 14:01:08','','0000-00-00 00:00:00'),(2977,0,0,'I',2526,2977,'I002977','2025-12-15',6245,'','','0000-00-00','','',0,0,0,0,4107,'','','','','','N','darshan','darshan','2025-12-15 14:05:46','','0000-00-00 00:00:00'),(2978,0,0,'I',2526,2978,'I002978','2025-12-15',6250,'','','0000-00-00','','',0,0,0,0,4112,'','','','','','N','darshan','darshan','2025-12-15 14:13:56','','0000-00-00 00:00:00'),(2979,0,0,'I',2526,2979,'I002979','2025-12-15',6266,'','','0000-00-00','','',0,0,0,0,3182,'','','','','','N','darshan','darshan','2025-12-15 17:24:53','','0000-00-00 00:00:00'),(2980,0,0,'I',2526,2980,'I002980','2025-12-15',6270,'','','0000-00-00','','',0,0,0,0,2878,'','','','','','N','darshan','darshan','2025-12-15 17:32:45','','0000-00-00 00:00:00'),(2981,0,0,'I',2526,2981,'I002981','2025-12-15',6272,'','','0000-00-00','','',0,0,0,0,4120,'','','','','','N','darshan','darshan','2025-12-15 17:40:42','','0000-00-00 00:00:00'),(2982,0,0,'I',2526,2982,'I002982','2025-12-15',6268,'','','0000-00-00','','',0,0,0,0,3642,'','','','','','N','darshan','darshan','2025-12-15 17:45:26','','0000-00-00 00:00:00'),(2983,0,0,'I',2526,2983,'I002983','2025-12-15',6269,'','','0000-00-00','','',0,0,0,0,589,'','','','','','N','darshan','darshan','2025-12-15 17:49:46','','0000-00-00 00:00:00'),(2984,0,0,'I',2526,2984,'I002984','2025-12-15',6275,'','','0000-00-00','','',0,0,0,0,4121,'','','','','','N','darshan','darshan','2025-12-15 18:07:08','','0000-00-00 00:00:00'),(2985,0,0,'I',2526,2985,'I002985','2025-12-15',6280,'','','0000-00-00','','',0,0,0,0,2407,'','','','','','N','darshan','darshan','2025-12-15 18:11:55','','0000-00-00 00:00:00'),(2986,0,0,'I',2526,2986,'I002986','2025-12-15',6293,'','','0000-00-00','','',0,0,0,0,2497,'','','','','','N','darshan','darshan','2025-12-15 18:27:09','','0000-00-00 00:00:00'),(2987,0,0,'I',2526,2987,'I002987','2025-12-15',6281,'','','0000-00-00','','',0,0,0,0,658,'','','','','','N','drarchit','drarchit','2025-12-15 18:32:20','','0000-00-00 00:00:00'),(2988,0,0,'I',2526,2988,'I002988','2025-12-15',6289,'','','0000-00-00','','',0,0,0,0,4129,'','','','','','N','drarchit','drarchit','2025-12-15 18:35:40','','0000-00-00 00:00:00'),(2989,0,0,'I',2526,2989,'I002989','2025-12-15',6265,'','','0000-00-00','','',0,0,0,0,4117,'','','','','','N','darshan','darshan','2025-12-15 18:39:22','','0000-00-00 00:00:00'),(2990,0,0,'I',2526,2990,'I002990','2025-12-15',6287,'','','0000-00-00','','',0,0,0,0,4127,'','','','','','N','drjayant','drjayant','2025-12-15 18:39:57','','0000-00-00 00:00:00'),(2991,0,0,'I',2526,2991,'I002991','2025-12-15',6291,'','','0000-00-00','','',0,0,0,0,4131,'','','','','','N','drarchit','drarchit','2025-12-15 18:42:29','','0000-00-00 00:00:00'),(2992,0,0,'I',2526,2992,'I002992','2025-12-15',6292,'','','0000-00-00','','',0,0,0,0,4132,'','','','','','N','drarchit','drarchit','2025-12-15 18:48:35','','0000-00-00 00:00:00'),(2993,0,0,'I',2526,2993,'I002993','2025-12-15',6296,'','','0000-00-00','','',0,0,0,0,1305,'','','','','','N','drarchit','drarchit','2025-12-15 18:51:58','','0000-00-00 00:00:00'),(2994,0,0,'I',2526,2994,'I002994','2025-12-15',6282,'','','0000-00-00','','',0,0,0,0,4124,'','','','','','N','darshan','darshan','2025-12-15 18:53:57','','0000-00-00 00:00:00'),(2995,0,0,'I',2526,2995,'I002995','2025-12-15',6298,'','','0000-00-00','','',0,0,0,0,736,'','','','','','N','drarchit','drarchit','2025-12-15 18:57:42','','0000-00-00 00:00:00'),(2996,0,0,'I',2526,2996,'I002996','2025-12-15',6303,'','','0000-00-00','','',0,0,0,0,975,'','','','','','N','darshan','darshan','2025-12-15 19:01:43','','0000-00-00 00:00:00'),(2997,0,0,'I',2526,2997,'I002997','2025-12-15',6301,'','','0000-00-00','','',0,0,0,0,4136,'','','','','','N','drarchit','drarchit','2025-12-15 19:12:47','','0000-00-00 00:00:00'),(2998,0,0,'I',2526,2998,'I002998','2025-12-15',6299,'','','0000-00-00','','',0,0,0,0,3879,'','','','','','N','drarchit','drarchit','2025-12-15 19:17:02','','0000-00-00 00:00:00'),(2999,0,0,'I',2526,2999,'I002999','2025-12-15',6304,'','','0000-00-00','','',0,0,0,0,2755,'','','','','','N','drarchit','drarchit','2025-12-15 19:21:01','','0000-00-00 00:00:00'),(3000,0,0,'I',2526,3000,'I003000','2025-12-15',6283,'','','0000-00-00','','',0,0,0,0,4125,'','','','','','N','darshan','darshan','2025-12-15 19:23:28','','0000-00-00 00:00:00'),(3001,0,0,'I',2526,3001,'I003001','2025-12-15',6305,'','','0000-00-00','','',0,0,0,0,4138,'','','','','','N','drarchit','drarchit','2025-12-15 19:27:23','','0000-00-00 00:00:00'),(3002,0,0,'I',2526,3002,'I003002','2025-12-15',6311,'','','0000-00-00','','',0,0,0,0,2027,'','','','','','N','darshan','darshan','2025-12-15 19:28:22','','0000-00-00 00:00:00'),(3003,0,0,'I',2526,3003,'I003003','2025-12-15',6306,'','','0000-00-00','','',0,0,0,0,4139,'','','','','','N','drarchit','drarchit','2025-12-15 19:31:17','','0000-00-00 00:00:00'),(3004,0,0,'I',2526,3004,'I003004','2025-12-15',6310,'','','0000-00-00','','',0,0,0,0,4141,'','','','','','N','drarchit','drarchit','2025-12-15 19:34:41','','0000-00-00 00:00:00'),(3005,0,0,'I',2526,3005,'I003005','2025-12-15',6285,'','','0000-00-00','','',0,0,0,0,4126,'','','','','','N','darshan','darshan','2025-12-15 19:35:07','','0000-00-00 00:00:00'),(3006,0,0,'I',2526,3006,'I003006','2025-12-15',6312,'','','0000-00-00','','',0,0,0,0,280,'','','','','','N','drarchit','drarchit','2025-12-15 19:39:33','','0000-00-00 00:00:00'),(3007,0,0,'I',2526,3007,'I003007','2025-12-15',6295,'','','0000-00-00','','',0,0,0,0,4134,'','','','','','N','darshan','darshan','2025-12-15 19:42:48','','0000-00-00 00:00:00'),(3008,0,0,'I',2526,3008,'I003008','2025-12-15',6314,'','','0000-00-00','','',0,0,0,0,1894,'','','','','','N','darshan','darshan','2025-12-15 19:45:53','','0000-00-00 00:00:00'),(3009,0,0,'I',2526,3009,'I003009','2025-12-15',6321,'','','0000-00-00','','',0,0,0,0,4144,'','','','','','N','drarchit','drarchit','2025-12-15 19:49:20','','0000-00-00 00:00:00'),(3010,0,0,'I',2526,3010,'I003010','2025-12-15',6300,'','','0000-00-00','','',0,0,0,0,4135,'','','','','','N','darshan','darshan','2025-12-15 20:03:44','','0000-00-00 00:00:00'),(3011,0,0,'I',2526,3011,'I003011','2025-12-15',6324,'','','0000-00-00','','',0,0,0,0,4145,'','','','','','N','drarchit','drarchit','2025-12-15 20:05:40','','0000-00-00 00:00:00'),(3012,0,0,'I',2526,3012,'I003012','2025-12-15',6318,'','','0000-00-00','','',0,0,0,0,4143,'','','','','','N','darshan','darshan','2025-12-15 20:26:44','','0000-00-00 00:00:00'),(3013,0,0,'I',2526,3013,'I003013','2025-12-15',6315,'','','0000-00-00','','',0,0,0,0,2538,'','','','','','N','darshan','darshan','2025-12-15 20:27:49','','0000-00-00 00:00:00'),(3014,0,0,'I',2526,3014,'I003014','2025-12-15',6316,'','','0000-00-00','','',0,0,0,0,4142,'','','','','','N','darshan','darshan','2025-12-15 20:33:40','','0000-00-00 00:00:00'),(3015,0,0,'I',2526,3015,'I003015','2025-12-15',6327,'','','0000-00-00','','',0,0,0,0,4147,'','','','','','N','darshan','darshan','2025-12-15 20:37:13','','0000-00-00 00:00:00'),(3016,0,0,'I',2526,3016,'I003016','2025-12-15',6328,'','','0000-00-00','','',0,0,0,0,3827,'','','','','','N','darshan','darshan','2025-12-15 20:42:04','','0000-00-00 00:00:00'),(3017,0,0,'I',2526,3017,'I003017','2025-12-16',6337,'','','0000-00-00','','',0,0,0,0,3619,'','','','','','N','darshan','darshan','2025-12-16 10:51:33','','0000-00-00 00:00:00'),(3018,0,0,'I',2526,3018,'I003018','2025-12-16',6332,'','','0000-00-00','','',0,0,0,0,813,'','','','','','N','darshan','darshan','2025-12-16 10:55:34','','0000-00-00 00:00:00'),(3019,0,0,'I',2526,3019,'I003019','2025-12-16',6331,'','','0000-00-00','','',0,0,0,0,2791,'','','','','','N','darshan','darshan','2025-12-16 11:16:53','','0000-00-00 00:00:00'),(3020,0,0,'I',2526,3020,'I003020','2025-12-16',6339,'','','0000-00-00','','',0,0,0,0,2579,'','','','','','N','darshan','darshan','2025-12-16 11:20:36','','0000-00-00 00:00:00'),(3021,0,0,'I',2526,3021,'I003021','2025-12-16',6350,'','','0000-00-00','','',0,0,0,0,2908,'','','','','','N','darshan','darshan','2025-12-16 11:34:43','','0000-00-00 00:00:00'),(3022,0,0,'I',2526,3022,'I003022','2025-12-16',6335,'','','0000-00-00','','',0,0,0,0,4149,'','','','','','N','drarchit','drarchit','2025-12-16 11:35:25','','0000-00-00 00:00:00'),(3023,0,0,'I',2526,3023,'I003023','2025-12-16',6340,'','','0000-00-00','','',0,0,0,0,4151,'','','','','','N','drarchit','drarchit','2025-12-16 11:38:26','','0000-00-00 00:00:00'),(3024,0,0,'I',2526,3024,'I003024','2025-12-16',6342,'','','0000-00-00','','',0,0,0,0,267,'','','','','','N','darshan','darshan','2025-12-16 11:39:56','','0000-00-00 00:00:00'),(3025,0,0,'I',2526,3025,'I003025','2025-12-16',6344,'','','0000-00-00','','',0,0,0,0,4153,'','','','','','N','drarchit','drarchit','2025-12-16 11:44:27','','0000-00-00 00:00:00'),(3026,0,0,'I',2526,3026,'I003026','2025-12-16',6338,'','','0000-00-00','','',0,0,0,0,3569,'','','','','','N','darshan','darshan','2025-12-16 11:44:30','','0000-00-00 00:00:00'),(3027,0,0,'I',2526,3027,'I003027','2025-12-16',6360,'','','0000-00-00','','',0,0,0,0,4162,'','','','','','N','drarchit','drarchit','2025-12-16 11:53:55','','0000-00-00 00:00:00'),(3028,0,0,'I',2526,3028,'I003028','2025-12-16',6349,'','','0000-00-00','','',0,0,0,0,1241,'','','','','','N','drarchit','drarchit','2025-12-16 11:59:10','','0000-00-00 00:00:00'),(3029,0,0,'I',2526,3029,'I003029','2025-12-16',6357,'','','0000-00-00','','',0,0,0,0,716,'','','','','','N','darshan','darshan','2025-12-16 12:05:12','','0000-00-00 00:00:00'),(3030,0,0,'I',2526,3030,'I003030','2025-12-16',6375,'','','0000-00-00','','',0,0,0,0,4173,'','','','','','N','drjayant','drjayant','2025-12-16 12:06:35','','0000-00-00 00:00:00'),(3031,0,0,'I',2526,3031,'I003031','2025-12-16',6343,'','','0000-00-00','','',0,0,0,0,918,'','','','','','N','darshan','darshan','2025-12-16 12:07:43','','0000-00-00 00:00:00'),(3032,0,0,'I',2526,3032,'I003032','2025-12-16',6355,'','','0000-00-00','','',0,0,0,0,4159,'','','','','','N','drarchit','drarchit','2025-12-16 12:12:18','','0000-00-00 00:00:00'),(3033,0,0,'I',2526,3033,'I003033','2025-12-16',6358,'','','0000-00-00','','',0,0,0,0,4161,'','','','','','N','drarchit','drarchit','2025-12-16 12:16:50','','0000-00-00 00:00:00'),(3034,0,0,'I',2526,3034,'I003034','2025-12-16',6359,'','','0000-00-00','','',0,0,0,0,633,'','','','','','N','drarchit','drarchit','2025-12-16 12:20:36','','0000-00-00 00:00:00'),(3035,0,0,'I',2526,3035,'I003035','2025-12-16',6376,'','','0000-00-00','','',0,0,0,0,4174,'','','','','','N','drjayant','drjayant','2025-12-16 12:27:04','','0000-00-00 00:00:00'),(3036,0,0,'I',2526,3036,'I003036','2025-12-16',6365,'','','0000-00-00','','',0,0,0,0,4166,'','','','','','N','drarchit','drarchit','2025-12-16 12:36:22','','0000-00-00 00:00:00'),(3037,0,0,'I',2526,3037,'I003037','2025-12-16',6353,'','','0000-00-00','','',0,0,0,0,4157,'','','','','','N','darshan','darshan','2025-12-16 12:41:05','','0000-00-00 00:00:00'),(3038,0,0,'I',2526,3038,'I003038','2025-12-16',6366,'','','0000-00-00','','',0,0,0,0,912,'','','','','','N','darshan','darshan','2025-12-16 12:47:06','','0000-00-00 00:00:00'),(3039,0,0,'I',2526,3039,'I003039','2025-12-16',6383,'','','0000-00-00','','',0,0,0,0,4179,'','','','','','N','drarchit','drarchit','2025-12-16 12:57:07','','0000-00-00 00:00:00'),(3040,0,0,'I',2526,3040,'I003040','2025-12-16',6386,'','','0000-00-00','','',0,0,0,0,4180,'','','','','','N','drarchit','drarchit','2025-12-16 13:00:22','','0000-00-00 00:00:00'),(3041,0,0,'I',2526,3041,'I003041','2025-12-16',6336,'','','0000-00-00','','',0,0,0,0,4150,'','','','','','N','darshan','darshan','2025-12-16 13:02:51','','0000-00-00 00:00:00'),(3042,0,0,'I',2526,3042,'I003042','2025-12-16',6348,'','','0000-00-00','','',0,0,0,0,4154,'','','','','','N','darshan','darshan','2025-12-16 13:06:58','','0000-00-00 00:00:00'),(3043,0,0,'I',2526,3043,'I003043','2025-12-16',6382,'','','0000-00-00','','',0,0,0,0,4116,'','','','','','N','drarchit','drarchit','2025-12-16 13:09:20','','0000-00-00 00:00:00'),(3044,0,0,'I',2526,3044,'I003044','2025-12-16',6385,'','','0000-00-00','','',0,0,0,0,3246,'','','','','','N','darshan','darshan','2025-12-16 13:10:58','','0000-00-00 00:00:00'),(3045,0,0,'I',2526,3045,'I003045','2025-12-16',6388,'','','0000-00-00','','',0,0,0,0,4182,'','','','','','N','drjayant','drjayant','2025-12-16 13:18:45','','0000-00-00 00:00:00'),(3046,0,0,'I',2526,3046,'I003046','2025-12-16',6387,'','','0000-00-00','','',0,0,0,0,4181,'','','','','','N','drarchit','drarchit','2025-12-16 13:22:01','','0000-00-00 00:00:00'),(3047,0,0,'I',2526,3047,'I003047','2025-12-16',6364,'','','0000-00-00','','',0,0,0,0,4165,'','','','','','N','drjayant','drjayant','2025-12-16 13:23:18','','0000-00-00 00:00:00'),(3048,0,0,'I',2526,3048,'I003048','2025-12-16',6392,'','','0000-00-00','','',0,0,0,0,4185,'','','','','','N','drarchit','drarchit','2025-12-16 13:25:48','','0000-00-00 00:00:00'),(3049,0,0,'I',2526,3049,'I003049','2025-12-16',6351,'','','0000-00-00','','',0,0,0,0,4155,'','','','','','N','darshan','darshan','2025-12-16 13:27:19','','0000-00-00 00:00:00'),(3050,0,0,'I',2526,3050,'I003050','2025-12-16',6373,'','','0000-00-00','','',0,0,0,0,4171,'','','','','','N','darshan','darshan','2025-12-16 14:03:42','','0000-00-00 00:00:00'),(3051,0,0,'I',2526,3051,'I003051','2025-12-16',6378,'','','0000-00-00','','',0,0,0,0,4175,'','','','','','N','darshan','darshan','2025-12-16 14:14:12','','0000-00-00 00:00:00'),(3052,0,0,'I',2526,3052,'I003052','2025-12-16',6396,'','','0000-00-00','','',0,0,0,0,4187,'','','','','','N','darshan','darshan','2025-12-16 14:31:44','','0000-00-00 00:00:00'),(3053,0,0,'I',2526,3053,'I003053','2025-12-16',6399,'','','0000-00-00','','',0,0,0,0,4189,'','','','','','N','darshan','darshan','2025-12-16 17:18:43','','0000-00-00 00:00:00'),(3054,0,0,'I',2526,3054,'I003054','2025-12-16',6400,'','','0000-00-00','','',0,0,0,0,284,'','','','','','N','darshan','darshan','2025-12-16 17:43:39','','0000-00-00 00:00:00'),(3055,0,0,'I',2526,3055,'I003055','2025-12-16',6403,'','','0000-00-00','','',0,0,0,0,1459,'','','','','','N','darshan','darshan','2025-12-16 17:58:17','','0000-00-00 00:00:00'),(3056,0,0,'I',2526,3056,'I003056','2025-12-16',6409,'','','0000-00-00','','',0,0,0,0,964,'','','','','','N','darshan','darshan','2025-12-16 18:01:13','','0000-00-00 00:00:00'),(3057,0,0,'I',2526,3057,'I003057','2025-12-16',6410,'','','0000-00-00','','',0,0,0,0,4195,'','','','','','N','darshan','darshan','2025-12-16 18:14:36','','0000-00-00 00:00:00'),(3058,0,0,'I',2526,3058,'I003058','2025-12-16',6407,'','','0000-00-00','','',0,0,0,0,4193,'','','','','','N','darshan','darshan','2025-12-16 18:18:57','','0000-00-00 00:00:00'),(3059,0,0,'I',2526,3059,'I003059','2025-12-16',6412,'','','0000-00-00','','',0,0,0,0,852,'','','','','','N','darshan','darshan','2025-12-16 18:21:11','','0000-00-00 00:00:00'),(3060,0,0,'I',2526,3060,'I003060','2025-12-16',6404,'','','0000-00-00','','',0,0,0,0,4191,'','','','','','N','drarchit','drarchit','2025-12-16 18:21:21','','0000-00-00 00:00:00'),(3061,0,0,'I',2526,3061,'I003061','2025-12-16',6411,'','','0000-00-00','','',0,0,0,0,4023,'','','','','','N','drarchit','drarchit','2025-12-16 18:29:20','','0000-00-00 00:00:00'),(3062,0,0,'I',2526,3062,'I003062','2025-12-16',6309,'','','0000-00-00','','',0,0,0,0,4140,'','','','','','N','darshan','darshan','2025-12-16 18:37:12','','0000-00-00 00:00:00'),(3063,0,0,'I',2526,3063,'I003063','2025-12-16',6361,'','','0000-00-00','','',0,0,0,0,4163,'','','','','','N','drarchit','drarchit','2025-12-16 18:37:52','','0000-00-00 00:00:00'),(3064,0,0,'I',2526,3064,'I003064','2025-12-16',6429,'','','0000-00-00','','',0,0,0,0,64,'','','','','','N','drarchit','drarchit','2025-12-16 18:43:15','','0000-00-00 00:00:00'),(3065,0,0,'I',2526,3065,'I003065','2025-12-16',6413,'','','0000-00-00','','',0,0,0,0,4196,'','','','','','N','drarchit','drarchit','2025-12-16 18:46:31','','0000-00-00 00:00:00'),(3066,0,0,'I',2526,3066,'I003066','2025-12-16',6426,'','','0000-00-00','','',0,0,0,0,4202,'','','','','','N','darshan','darshan','2025-12-16 18:46:41','','0000-00-00 00:00:00'),(3067,0,0,'I',2526,3067,'I003067','2025-12-16',6414,'','','0000-00-00','','',0,0,0,0,4197,'','','','','','N','drarchit','drarchit','2025-12-16 18:51:56','','0000-00-00 00:00:00'),(3068,0,0,'I',2526,3068,'I003068','2025-12-16',6401,'','','0000-00-00','','',0,0,0,0,4190,'','','','','','N','darshan','darshan','2025-12-16 18:53:05','','0000-00-00 00:00:00'),(3069,0,0,'I',2526,3069,'I003069','2025-12-16',6420,'','','0000-00-00','','',0,0,0,0,4200,'','','','','','N','drarchit','drarchit','2025-12-16 18:59:28','','0000-00-00 00:00:00'),(3070,0,0,'I',2526,3070,'I003070','2025-12-16',6437,'','','0000-00-00','','',0,0,0,0,245,'','','','','','N','drjayant','drjayant','2025-12-16 19:03:23','','0000-00-00 00:00:00'),(3071,0,0,'I',2526,3071,'I003071','2025-12-16',6398,'','','0000-00-00','','',0,0,0,0,4188,'','','','','','N','darshan','darshan','2025-12-16 19:04:57','','0000-00-00 00:00:00'),(3072,0,0,'I',2526,3072,'I003072','2025-12-16',6438,'','','0000-00-00','','',0,0,0,0,4206,'','','','','','N','drjayant','drjayant','2025-12-16 19:07:53','','0000-00-00 00:00:00'),(3073,0,0,'I',2526,3073,'I003073','2025-12-16',6425,'','','0000-00-00','','',0,0,0,0,3694,'','','','','','N','drarchit','drarchit','2025-12-16 19:09:59','','0000-00-00 00:00:00'),(3074,0,0,'I',2526,3074,'I003074','2025-12-16',6432,'','','0000-00-00','','',0,0,0,0,2914,'','','','','','N','darshan','darshan','2025-12-16 19:10:15','','0000-00-00 00:00:00'),(3075,0,0,'I',2526,3075,'I003075','2025-12-16',6431,'','','0000-00-00','','',0,0,0,0,4204,'','','','','','N','drarchit','drarchit','2025-12-16 19:13:39','','0000-00-00 00:00:00'),(3076,0,0,'I',2526,3076,'I003076','2025-12-16',6442,'','','0000-00-00','','',0,0,0,0,4209,'','','','','','N','drjayant','drjayant','2025-12-16 19:17:46','','0000-00-00 00:00:00'),(3077,0,0,'I',2526,3077,'I003077','2025-12-16',6424,'','','0000-00-00','','',0,0,0,0,4201,'','','','','','N','drarchit','drarchit','2025-12-16 19:19:35','','0000-00-00 00:00:00'),(3078,0,0,'I',2526,3078,'I003078','2025-12-16',6439,'','','0000-00-00','','',0,0,0,0,3599,'','','','','','N','darshan','darshan','2025-12-16 19:22:07','','0000-00-00 00:00:00'),(3079,0,0,'I',2526,3079,'I003079','2025-12-16',6441,'','','0000-00-00','','',0,0,0,0,4208,'','','','','','N','darshan','darshan','2025-12-16 19:37:13','','0000-00-00 00:00:00'),(3080,0,0,'I',2526,3080,'I003080','2025-12-16',6435,'','','0000-00-00','','',0,0,0,0,3814,'','','','','','N','drarchit','drarchit','2025-12-16 19:39:35','','0000-00-00 00:00:00'),(3081,0,0,'I',2526,3081,'I003081','2025-12-16',6436,'','','0000-00-00','','',0,0,0,0,2992,'','','','','','N','drarchit','drarchit','2025-12-16 19:52:40','','0000-00-00 00:00:00'),(3082,0,0,'I',2526,3082,'I003082','2025-12-16',6379,'','','0000-00-00','','',0,0,0,0,4176,'','','','','','N','drarchit','drarchit','2025-12-16 19:56:09','','0000-00-00 00:00:00'),(3083,0,0,'I',2526,3083,'I003083','2025-12-16',6363,'','','0000-00-00','','',0,0,0,0,4164,'','','','','','N','drarchit','drarchit','2025-12-16 19:59:58','','0000-00-00 00:00:00'),(3084,0,0,'I',2526,3084,'I003084','2025-12-16',6405,'','','0000-00-00','','',0,0,0,0,4192,'','','','','','N','darshan','darshan','2025-12-16 20:01:03','','0000-00-00 00:00:00'),(3085,0,0,'I',2526,3085,'I003085','2025-12-16',6444,'','','0000-00-00','','',0,0,0,0,4210,'','','','','','N','darshan','darshan','2025-12-16 20:04:09','','0000-00-00 00:00:00'),(3086,0,0,'I',2526,3086,'I003086','2025-12-16',6440,'','','0000-00-00','','',0,0,0,0,4207,'','','','','','N','darshan','darshan','2025-12-16 20:14:10','','0000-00-00 00:00:00'),(3087,0,0,'I',2526,3087,'I003087','2025-12-17',6457,'','','0000-00-00','','',0,0,0,0,3350,'','','','','','N','darshan','darshan','2025-12-17 10:59:37','','0000-00-00 00:00:00'),(3088,0,0,'I',2526,3088,'I003088','2025-12-17',6456,'','','0000-00-00','','',0,0,0,0,1844,'','','','','','N','darshan','darshan','2025-12-17 11:00:58','','0000-00-00 00:00:00'),(3089,0,0,'I',2526,3089,'I003089','2025-12-17',6459,'','','0000-00-00','','',0,0,0,0,4215,'','','','','','N','darshan','darshan','2025-12-17 11:12:47','','0000-00-00 00:00:00'),(3090,0,0,'I',2526,3090,'I003090','2025-12-17',6460,'','','0000-00-00','','',0,0,0,0,3075,'','','','','','N','darshan','darshan','2025-12-17 11:14:56','','0000-00-00 00:00:00'),(3091,0,0,'I',2526,3091,'I003091','2025-12-17',6428,'','','0000-00-00','','',0,0,0,0,4203,'','','','','','N','drarchit','drarchit','2025-12-17 11:20:00','','0000-00-00 00:00:00'),(3092,0,0,'I',2526,3092,'I003092','2025-12-17',6458,'','','0000-00-00','','',0,0,0,0,3205,'','','','','','N','darshan','darshan','2025-12-17 11:30:32','','0000-00-00 00:00:00'),(3093,0,0,'I',2526,3093,'I003093','2025-12-17',6473,'','','0000-00-00','','',0,0,0,0,715,'','','','','','N','darshan','darshan','2025-12-17 11:40:49','','0000-00-00 00:00:00'),(3094,0,0,'I',2526,3094,'I003094','2025-12-17',6471,'','','0000-00-00','','',0,0,0,0,541,'','','','','','N','drjayant','drjayant','2025-12-17 11:41:55','','0000-00-00 00:00:00'),(3095,0,0,'I',2526,3095,'I003095','2025-12-17',6455,'','','0000-00-00','','',0,0,0,0,2291,'','','','','','N','darshan','darshan','2025-12-17 11:44:06','','0000-00-00 00:00:00'),(3096,0,0,'I',2526,3096,'I003096','2025-12-17',6462,'','','0000-00-00','','',0,0,0,0,3091,'','','','','','N','darshan','darshan','2025-12-17 11:48:41','','0000-00-00 00:00:00'),(3097,0,0,'I',2526,3097,'I003097','2025-12-17',6465,'','','0000-00-00','','',0,0,0,0,2853,'','','','','','N','darshan','darshan','2025-12-17 11:52:37','','0000-00-00 00:00:00'),(3098,0,0,'I',2526,3098,'I003098','2025-12-17',6479,'','','0000-00-00','','',0,0,0,0,2531,'','','','','','N','drarchit','drarchit','2025-12-17 11:54:45','','0000-00-00 00:00:00'),(3099,0,0,'I',2526,3099,'I003099','2025-12-17',6485,'','','0000-00-00','','',0,0,0,0,2001,'','','','','','N','darshan','darshan','2025-12-17 11:56:58','','0000-00-00 00:00:00'),(3100,0,0,'I',2526,3100,'I003100','2025-12-17',6483,'','','0000-00-00','','',0,0,0,0,2214,'','','','','','N','drarchit','drarchit','2025-12-17 12:00:10','','0000-00-00 00:00:00'),(3101,0,0,'I',2526,3101,'I003101','2025-12-17',6466,'','','0000-00-00','','',0,0,0,0,4218,'','','','','','N','darshan','darshan','2025-12-17 12:02:47','','0000-00-00 00:00:00'),(3102,0,0,'I',2526,3102,'I003102','2025-12-17',6487,'','','0000-00-00','','',0,0,0,0,4228,'','','','','','N','darshan','darshan','2025-12-17 12:13:59','','0000-00-00 00:00:00'),(3103,0,0,'I',2526,3103,'I003103','2025-12-17',6468,'','','0000-00-00','','',0,0,0,0,4219,'','','','','','N','drjayant','drjayant','2025-12-17 12:32:30','','0000-00-00 00:00:00'),(3104,0,0,'I',2526,3104,'I003104','2025-12-17',6452,'','','0000-00-00','','',0,0,0,0,4213,'','','','','','N','darshan','darshan','2025-12-17 12:33:00','','0000-00-00 00:00:00'),(3105,0,0,'I',2526,3105,'I003105','2025-12-17',6475,'','','0000-00-00','','',0,0,0,0,25,'','','','','','N','darshan','darshan','2025-12-17 12:37:01','','0000-00-00 00:00:00'),(3106,0,0,'I',2526,3106,'I003106','2025-12-17',6463,'','','0000-00-00','','',0,0,0,0,4216,'','','','','','N','darshan','darshan','2025-12-17 12:46:04','','0000-00-00 00:00:00'),(3107,0,0,'I',2526,3107,'I003107','2025-12-17',6495,'','','0000-00-00','','',0,0,0,0,4232,'','','','','','N','drarchit','drarchit','2025-12-17 12:48:44','','0000-00-00 00:00:00'),(3108,0,0,'I',2526,3108,'I003108','2025-12-17',6453,'','','0000-00-00','','',0,0,0,0,4214,'','','','','','N','darshan','darshan','2025-12-17 12:56:06','','0000-00-00 00:00:00'),(3109,0,0,'I',2526,3109,'I003109','2025-12-17',6489,'','','0000-00-00','','',0,0,0,0,4230,'','','','','','N','drjayant','drjayant','2025-12-17 12:58:47','','0000-00-00 00:00:00'),(3110,0,0,'I',2526,3110,'I003110','2025-12-17',6491,'','','0000-00-00','','',0,0,0,0,3080,'','','','','','N','darshan','darshan','2025-12-17 12:59:38','','0000-00-00 00:00:00'),(3111,0,0,'I',2526,3111,'I003111','2025-12-17',6494,'','','0000-00-00','','',0,0,0,0,4231,'','','','','','N','drarchit','drarchit','2025-12-17 13:07:35','','0000-00-00 00:00:00'),(3112,0,0,'I',2526,3112,'I003112','2025-12-17',6488,'','','0000-00-00','','',0,0,0,0,4229,'','','','','','N','drjayant','drjayant','2025-12-17 13:10:45','','0000-00-00 00:00:00'),(3113,0,0,'I',2526,3113,'I003113','2025-12-17',6496,'','','0000-00-00','','',0,0,0,0,4233,'','','','','','N','darshan','darshan','2025-12-17 13:21:43','','0000-00-00 00:00:00'),(3114,0,0,'I',2526,3114,'I003114','2025-12-17',6469,'','','0000-00-00','','',0,0,0,0,4220,'','','','','','N','darshan','darshan','2025-12-17 13:28:11','','0000-00-00 00:00:00'),(3115,0,0,'I',2526,3115,'I003115','2025-12-17',6499,'','','0000-00-00','','',0,0,0,0,3166,'','','','','','N','darshan','darshan','2025-12-17 13:32:10','','0000-00-00 00:00:00'),(3116,0,0,'I',2526,3116,'I003116','2025-12-17',6472,'','','0000-00-00','','',0,0,0,0,4221,'','','','','','N','darshan','darshan','2025-12-17 13:37:39','','0000-00-00 00:00:00'),(3117,0,0,'I',2526,3117,'I003117','2025-12-17',6502,'','','0000-00-00','','',0,0,0,0,4235,'','','','','','N','darshan','darshan','2025-12-17 14:26:59','','0000-00-00 00:00:00'),(3118,0,0,'I',2526,3118,'I003118','2025-12-17',6511,'','','0000-00-00','','',0,0,0,0,1479,'','','','','','N','darshan','darshan','2025-12-17 17:17:43','','0000-00-00 00:00:00'),(3119,0,0,'I',2526,3119,'I003119','2025-12-17',6510,'','','0000-00-00','','',0,0,0,0,4237,'','','','','','N','darshan','darshan','2025-12-17 17:42:25','','0000-00-00 00:00:00'),(3120,0,0,'I',2526,3120,'I003120','2025-12-17',6514,'','','0000-00-00','','',0,0,0,0,888,'','','','','','N','darshan','darshan','2025-12-17 17:43:36','','0000-00-00 00:00:00'),(3121,0,0,'I',2526,3121,'I003121','2025-12-17',6508,'','','0000-00-00','','',0,0,0,0,3327,'','','','','','N','darshan','darshan','2025-12-17 17:47:38','','0000-00-00 00:00:00'),(3122,0,0,'I',2526,3122,'I003122','2025-12-17',6524,'','','0000-00-00','','',0,0,0,0,2775,'','','','','','N','darshan','darshan','2025-12-17 18:20:58','','0000-00-00 00:00:00'),(3123,0,0,'I',2526,3123,'I003123','2025-12-17',6516,'','','0000-00-00','','',0,0,0,0,4239,'','','','','','N','drjayant','drjayant','2025-12-17 18:21:34','','0000-00-00 00:00:00'),(3124,0,0,'I',2526,3124,'I003124','2025-12-17',6515,'','','0000-00-00','','',0,0,0,0,4238,'','','','','','N','drarchit','drarchit','2025-12-17 18:26:41','','0000-00-00 00:00:00'),(3125,0,0,'I',2526,3125,'I003125','2025-12-17',6532,'','','0000-00-00','','',0,0,0,0,4250,'','','','','','N','drjayant','drjayant','2025-12-17 18:29:36','','0000-00-00 00:00:00'),(3126,0,0,'I',2526,3126,'I003126','2025-12-17',6519,'','','0000-00-00','','',0,0,0,0,4241,'','','','','','N','drarchit','drarchit','2025-12-17 18:33:55','','0000-00-00 00:00:00'),(3127,0,0,'I',2526,3127,'I003127','2025-12-17',6536,'','','0000-00-00','','',0,0,0,0,4253,'','','','','','N','darshan','darshan','2025-12-17 18:40:01','','0000-00-00 00:00:00'),(3128,0,0,'I',2526,3128,'I003128','2025-12-17',6539,'','','0000-00-00','','',0,0,0,0,3052,'','','','','','N','drarchit','drarchit','2025-12-17 18:43:45','','0000-00-00 00:00:00'),(3129,0,0,'I',2526,3129,'I003129','2025-12-17',6527,'','','0000-00-00','','',0,0,0,0,4246,'','','','','','N','darshan','darshan','2025-12-17 18:46:23','','0000-00-00 00:00:00'),(3130,0,0,'I',2526,3130,'I003130','2025-12-17',6523,'','','0000-00-00','','',0,0,0,0,1811,'','','','','','N','darshan','darshan','2025-12-17 18:50:50','','0000-00-00 00:00:00'),(3131,0,0,'I',2526,3131,'I003131','2025-12-17',6529,'','','0000-00-00','','',0,0,0,0,2732,'','','','','','N','drarchit','drarchit','2025-12-17 18:51:03','','0000-00-00 00:00:00'),(3132,0,0,'I',2526,3132,'I003132','2025-12-17',6537,'','','0000-00-00','','',0,0,0,0,2580,'','','','','','N','darshan','darshan','2025-12-17 18:53:52','','0000-00-00 00:00:00'),(3133,0,0,'I',2526,3133,'I003133','2025-12-17',6550,'','','0000-00-00','','',0,0,0,0,4003,'','','','','','N','drjayant','drjayant','2025-12-17 18:54:52','','0000-00-00 00:00:00'),(3134,0,0,'I',2526,3134,'I003134','2025-12-17',6530,'','','0000-00-00','','',0,0,0,0,4248,'','','','','','N','drarchit','drarchit','2025-12-17 19:00:58','','0000-00-00 00:00:00'),(3135,0,0,'I',2526,3135,'I003135','2025-12-17',6528,'','','0000-00-00','','',0,0,0,0,4247,'','','','','','N','darshan','darshan','2025-12-17 19:05:44','','0000-00-00 00:00:00'),(3136,0,0,'I',2526,3136,'I003136','2025-12-17',6521,'','','0000-00-00','','',0,0,0,0,4243,'','','','','','N','darshan','darshan','2025-12-17 19:10:00','','0000-00-00 00:00:00'),(3137,0,0,'I',2526,3137,'I003137','2025-12-17',6543,'','','0000-00-00','','',0,0,0,0,4256,'','','','','','N','drarchit','drarchit','2025-12-17 19:11:51','','0000-00-00 00:00:00'),(3138,0,0,'I',2526,3138,'I003138','2025-12-17',6533,'','','0000-00-00','','',0,0,0,0,4251,'','','','','','N','darshan','darshan','2025-12-17 19:15:30','','0000-00-00 00:00:00'),(3139,0,0,'I',2526,3139,'I003139','2025-12-17',6531,'','','0000-00-00','','',0,0,0,0,4249,'','','','','','N','drarchit','drarchit','2025-12-17 19:18:14','','0000-00-00 00:00:00'),(3140,0,0,'I',2526,3140,'I003140','2025-12-17',6517,'','','0000-00-00','','',0,0,0,0,4240,'','','','','','N','darshan','darshan','2025-12-17 19:20:08','','0000-00-00 00:00:00'),(3141,0,0,'I',2526,3141,'I003141','2025-12-17',6534,'','','0000-00-00','','',0,0,0,0,4252,'','','','','','N','drarchit','drarchit','2025-12-17 19:20:13','','0000-00-00 00:00:00'),(3142,0,0,'I',2526,3142,'I003142','2025-12-17',6545,'','','0000-00-00','','',0,0,0,0,4257,'','','','','','N','drarchit','drarchit','2025-12-17 19:27:13','','0000-00-00 00:00:00'),(3143,0,0,'I',2526,3143,'I003143','2025-12-17',6551,'','','0000-00-00','','',0,0,0,0,4259,'','','','','','N','drarchit','drarchit','2025-12-17 19:32:58','','0000-00-00 00:00:00'),(3144,0,0,'I',2526,3144,'I003144','2025-12-17',6569,'','','0000-00-00','','',0,0,0,0,4265,'','','','','','N','drjayant','drjayant','2025-12-17 19:33:57','','0000-00-00 00:00:00'),(3145,0,0,'I',2526,3145,'I003145','2025-12-17',6526,'','','0000-00-00','','',0,0,0,0,4245,'','','','','','N','darshan','darshan','2025-12-17 19:37:24','','0000-00-00 00:00:00'),(3146,0,0,'I',2526,3146,'I003146','2025-12-17',6546,'','','0000-00-00','','',0,0,0,0,4258,'','','','','','N','darshan','darshan','2025-12-17 19:43:26','','0000-00-00 00:00:00'),(3147,0,0,'I',2526,3147,'I003147','2025-12-17',6559,'','','0000-00-00','','',0,0,0,0,4261,'','','','','','N','drarchit','drarchit','2025-12-17 19:45:10','','0000-00-00 00:00:00'),(3148,0,0,'I',2526,3148,'I003148','2025-12-17',6560,'','','0000-00-00','','',0,0,0,0,4262,'','','','','','N','drarchit','drarchit','2025-12-17 19:51:39','','0000-00-00 00:00:00'),(3149,0,0,'I',2526,3149,'I003149','2025-12-17',6549,'','','0000-00-00','','',0,0,0,0,1497,'','','','','','N','darshan','darshan','2025-12-17 19:55:56','','0000-00-00 00:00:00'),(3150,0,0,'I',2526,3150,'I003150','2025-12-17',6571,'','','0000-00-00','','',0,0,0,0,4266,'','','','','','N','drjayant','drjayant','2025-12-17 19:56:18','','0000-00-00 00:00:00'),(3151,0,0,'I',2526,3151,'I003151','2025-12-17',6566,'','','0000-00-00','','',0,0,0,0,940,'','','','','','N','darshan','darshan','2025-12-17 19:58:05','','0000-00-00 00:00:00'),(3152,0,0,'I',2526,3152,'I003152','2025-12-17',6564,'','','0000-00-00','','',0,0,0,0,4263,'','','','','','N','drarchit','drarchit','2025-12-17 20:06:46','','0000-00-00 00:00:00'),(3153,0,0,'I',2526,3153,'I003153','2025-12-17',6573,'','','0000-00-00','','',0,0,0,0,4268,'','','','','','N','drarchit','drarchit','2025-12-17 20:09:33','','0000-00-00 00:00:00'),(3154,0,0,'I',2526,3154,'I003154','2025-12-17',6567,'','','0000-00-00','','',0,0,0,0,4264,'','','','','','N','drarchit','drarchit','2025-12-17 20:17:36','','0000-00-00 00:00:00'),(3155,0,0,'I',2526,3155,'I003155','2025-12-18',6583,'','','0000-00-00','','',0,0,0,0,3274,'','','','','','N','darshan','darshan','2025-12-18 10:43:59','','0000-00-00 00:00:00'),(3156,0,0,'I',2526,3156,'I003156','2025-12-18',6584,'','','0000-00-00','','',0,0,0,0,3691,'','','','','','N','darshan','darshan','2025-12-18 10:50:17','','0000-00-00 00:00:00'),(3157,0,0,'I',2526,3157,'I003157','2025-12-18',6594,'','','0000-00-00','','',0,0,0,0,4280,'','','','','','N','drarchit','drarchit','2025-12-18 10:50:59','','0000-00-00 00:00:00'),(3158,0,0,'I',2526,3158,'I003158','2025-12-18',6598,'','','0000-00-00','','',0,0,0,0,4282,'','','','','','N','drarchit','drarchit','2025-12-18 10:55:38','','0000-00-00 00:00:00'),(3159,0,0,'I',2526,3159,'I003159','2025-12-18',6586,'','','0000-00-00','','',0,0,0,0,3209,'','','','','','N','darshan','darshan','2025-12-18 10:56:47','','0000-00-00 00:00:00'),(3160,0,0,'I',2526,3160,'I003160','2025-12-18',6582,'','','0000-00-00','','',0,0,0,0,3225,'','','','','','N','darshan','darshan','2025-12-18 11:07:59','','0000-00-00 00:00:00'),(3161,0,0,'I',2526,3161,'I003161','2025-12-18',6581,'','','0000-00-00','','',0,0,0,0,4274,'','','','','','N','drarchit','drarchit','2025-12-18 11:08:50','','0000-00-00 00:00:00'),(3162,0,0,'I',2526,3162,'I003162','2025-12-18',6585,'','','0000-00-00','','',0,0,0,0,315,'','','','','','N','darshan','darshan','2025-12-18 11:11:28','','0000-00-00 00:00:00'),(3163,0,0,'I',2526,3163,'I003163','2025-12-18',6607,'','','0000-00-00','','',0,0,0,0,4287,'','','','','','N','drarchit','drarchit','2025-12-18 11:17:11','','0000-00-00 00:00:00'),(3164,0,0,'I',2526,3164,'I003164','2025-12-18',6587,'','','0000-00-00','','',0,0,0,0,3737,'','','','','','N','darshan','darshan','2025-12-18 11:20:35','','0000-00-00 00:00:00'),(3165,0,0,'I',2526,3165,'I003165','2025-12-18',6591,'','','0000-00-00','','',0,0,0,0,4278,'','','','','','N','darshan','darshan','2025-12-18 11:23:25','','0000-00-00 00:00:00'),(3166,0,0,'I',2526,3166,'I003166','2025-12-18',6593,'','','0000-00-00','','',0,0,0,0,1373,'','','','','','N','darshan','darshan','2025-12-18 11:26:29','','0000-00-00 00:00:00'),(3167,0,0,'I',2526,3167,'I003167','2025-12-18',6609,'','','0000-00-00','','',0,0,0,0,4288,'','','','','','N','drjayant','drjayant','2025-12-18 11:27:53','','0000-00-00 00:00:00'),(3168,0,0,'I',2526,3168,'I003168','2025-12-18',6601,'','','0000-00-00','','',0,0,0,0,4285,'','','','','','N','darshan','darshan','2025-12-18 11:38:10','','0000-00-00 00:00:00'),(3169,0,0,'I',2526,3169,'I003169','2025-12-18',6600,'','','0000-00-00','','',0,0,0,0,4284,'','','','','','N','darshan','darshan','2025-12-18 11:48:51','','0000-00-00 00:00:00'),(3170,0,0,'I',2526,3170,'I003170','2025-12-18',6615,'','','0000-00-00','','',0,0,0,0,4290,'','','','','','N','drarchit','drarchit','2025-12-18 11:49:50','','0000-00-00 00:00:00'),(3171,0,0,'I',2526,3171,'I003171','2025-12-18',6608,'','','0000-00-00','','',0,0,0,0,3079,'','','','','','N','darshan','darshan','2025-12-18 11:54:12','','0000-00-00 00:00:00'),(3172,0,0,'I',2526,3172,'I003172','2025-12-18',6616,'','','0000-00-00','','',0,0,0,0,4291,'','','','','','N','drarchit','drarchit','2025-12-18 11:55:36','','0000-00-00 00:00:00'),(3173,0,0,'I',2526,3173,'I003173','2025-12-18',6611,'','','0000-00-00','','',0,0,0,0,3154,'','','','','','N','darshan','darshan','2025-12-18 12:12:13','','0000-00-00 00:00:00'),(3174,0,0,'I',2526,3174,'I003174','2025-12-18',6618,'','','0000-00-00','','',0,0,0,0,3328,'','','','','','N','darshan','darshan','2025-12-18 12:18:49','','0000-00-00 00:00:00'),(3175,0,0,'I',2526,3175,'I003175','2025-12-18',6580,'','','0000-00-00','','',0,0,0,0,4273,'','','','','','N','darshan','darshan','2025-12-18 12:24:11','','0000-00-00 00:00:00'),(3176,0,0,'I',2526,3176,'I003176','2025-12-18',6592,'','','0000-00-00','','',0,0,0,0,4279,'','','','','','N','drjayant','drjayant','2025-12-18 12:26:33','','0000-00-00 00:00:00'),(3177,0,0,'I',2526,3177,'I003177','2025-12-18',6622,'','','0000-00-00','','',0,0,0,0,3135,'','','','','','N','darshan','darshan','2025-12-18 12:28:12','','0000-00-00 00:00:00'),(3178,0,0,'I',2526,3178,'I003178','2025-12-18',6589,'','','0000-00-00','','',0,0,0,0,4276,'','','','','','N','darshan','darshan','2025-12-18 12:32:43','','0000-00-00 00:00:00'),(3179,0,0,'I',2526,3179,'I003179','2025-12-18',6631,'','','0000-00-00','','',0,0,0,0,4299,'','','','','','N','drarchit','drarchit','2025-12-18 12:39:16','','0000-00-00 00:00:00'),(3180,0,0,'I',2526,3180,'I003180','2025-12-18',6624,'','','0000-00-00','','',0,0,0,0,4032,'','','','','','N','darshan','darshan','2025-12-18 12:40:44','','0000-00-00 00:00:00'),(3181,0,0,'I',2526,3181,'I003181','2025-12-18',6620,'','','0000-00-00','','',0,0,0,0,4294,'','','','','','N','darshan','darshan','2025-12-18 13:00:03','','0000-00-00 00:00:00'),(3182,0,0,'I',2526,3182,'I003182','2025-12-18',6606,'','','0000-00-00','','',0,0,0,0,4286,'','','','','','N','darshan','darshan','2025-12-18 13:04:37','','0000-00-00 00:00:00'),(3183,0,0,'I',2526,3183,'I003183','2025-12-18',6595,'','','0000-00-00','','',0,0,0,0,4281,'','','','','','N','darshan','darshan','2025-12-18 13:11:02','','0000-00-00 00:00:00'),(3184,0,0,'I',2526,3184,'I003184','2025-12-18',6602,'','','0000-00-00','','',0,0,0,0,1790,'','','','','','N','darshan','darshan','2025-12-18 13:12:48','','0000-00-00 00:00:00'),(3185,0,0,'I',2526,3185,'I003185','2025-12-18',6635,'','','0000-00-00','','',0,0,0,0,4303,'','','','','','N','darshan','darshan','2025-12-18 13:19:52','','0000-00-00 00:00:00'),(3186,0,0,'I',2526,3186,'I003186','2025-12-18',6636,'','','0000-00-00','','',0,0,0,0,1653,'','','','','','N','darshan','darshan','2025-12-18 13:25:34','','0000-00-00 00:00:00'),(3187,0,0,'I',2526,3187,'I003187','2025-12-18',6640,'','','0000-00-00','','',0,0,0,0,4307,'','','','','','N','darshan','darshan','2025-12-18 17:26:20','','0000-00-00 00:00:00'),(3188,0,0,'I',2526,3188,'I003188','2025-12-18',6644,'','','0000-00-00','','',0,0,0,0,3739,'','','','','','N','darshan','darshan','2025-12-18 17:32:29','','0000-00-00 00:00:00'),(3189,0,0,'I',2526,3189,'I003189','2025-12-18',6642,'','','0000-00-00','','',0,0,0,0,2623,'','','','','','N','darshan','darshan','2025-12-18 17:35:54','','0000-00-00 00:00:00'),(3190,0,0,'I',2526,3190,'I003190','2025-12-18',6643,'','','0000-00-00','','',0,0,0,0,3682,'','','','','','N','darshan','darshan','2025-12-18 17:42:31','','0000-00-00 00:00:00'),(3191,0,0,'I',2526,3191,'I003191','2025-12-18',6648,'','','0000-00-00','','',0,0,0,0,2589,'','','','','','N','darshan','darshan','2025-12-18 17:56:22','','0000-00-00 00:00:00'),(3192,0,0,'I',2526,3192,'I003192','2025-12-18',6639,'','','0000-00-00','','',0,0,0,0,4306,'','','','','','N','darshan','darshan','2025-12-18 17:59:03','','0000-00-00 00:00:00'),(3193,0,0,'I',2526,3193,'I003193','2025-12-18',6653,'','','0000-00-00','','',0,0,0,0,4311,'','','','','','N','darshan','darshan','2025-12-18 18:03:12','','0000-00-00 00:00:00'),(3194,0,0,'I',2526,3194,'I003194','2025-12-18',6650,'','','0000-00-00','','',0,0,0,0,883,'','','','','','N','darshan','darshan','2025-12-18 18:06:02','','0000-00-00 00:00:00'),(3195,0,0,'I',2526,3195,'I003195','2025-12-18',6665,'','','0000-00-00','','',0,0,0,0,4319,'','','','','','N','drjayant','drjayant','2025-12-18 18:19:50','','0000-00-00 00:00:00'),(3196,0,0,'I',2526,3196,'I003196','2025-12-18',6641,'','','0000-00-00','','',0,0,0,0,4308,'','','','','','N','darshan','darshan','2025-12-18 18:22:49','','0000-00-00 00:00:00'),(3197,0,0,'I',2526,3197,'I003197','2025-12-18',6661,'','','0000-00-00','','',0,0,0,0,4316,'','','','','','N','drarchit','drarchit','2025-12-18 18:24:36','','0000-00-00 00:00:00'),(3198,0,0,'I',2526,3198,'I003198','2025-12-18',6671,'','','0000-00-00','','',0,0,0,0,4325,'','','','','','N','drarchit','drarchit','2025-12-18 18:32:10','','0000-00-00 00:00:00'),(3199,0,0,'I',2526,3199,'I003199','2025-12-18',6667,'','','0000-00-00','','',0,0,0,0,4321,'','','','','','N','drjayant','drjayant','2025-12-18 18:33:32','','0000-00-00 00:00:00'),(3200,0,0,'I',2526,3200,'I003200','2025-12-18',6658,'','','0000-00-00','','',0,0,0,0,4314,'','','','','','N','darshan','darshan','2025-12-18 18:35:23','','0000-00-00 00:00:00'),(3201,0,0,'I',2526,3201,'I003201','2025-12-18',6675,'','','0000-00-00','','',0,0,0,0,756,'','','','','','N','drarchit','drarchit','2025-12-18 18:36:50','','0000-00-00 00:00:00'),(3202,0,0,'I',2526,3202,'I003202','2025-12-18',6674,'','','0000-00-00','','',0,0,0,0,4326,'','','','','','N','drarchit','drarchit','2025-12-18 18:40:57','','0000-00-00 00:00:00'),(3203,0,0,'I',2526,3203,'I003203','2025-12-18',6668,'','','0000-00-00','','',0,0,0,0,4322,'','','','','','N','drjayant','drjayant','2025-12-18 18:41:41','','0000-00-00 00:00:00'),(3204,0,0,'I',2526,3204,'I003204','2025-12-18',6669,'','','0000-00-00','','',0,0,0,0,4323,'','','','','','N','drjayant','drjayant','2025-12-18 18:45:23','','0000-00-00 00:00:00'),(3205,0,0,'I',2526,3205,'I003205','2025-12-18',6676,'','','0000-00-00','','',0,0,0,0,4327,'','','','','','N','darshan','darshan','2025-12-18 18:50:14','','0000-00-00 00:00:00'),(3206,0,0,'I',2526,3206,'I003206','2025-12-18',6679,'','','0000-00-00','','',0,0,0,0,4329,'','','','','','N','drarchit','drarchit','2025-12-18 18:51:19','','0000-00-00 00:00:00'),(3207,0,0,'I',2526,3207,'I003207','2025-12-18',6670,'','','0000-00-00','','',0,0,0,0,4324,'','','','','','N','drjayant','drjayant','2025-12-18 18:52:44','','0000-00-00 00:00:00'),(3208,0,0,'I',2526,3208,'I003208','2025-12-18',6682,'','','0000-00-00','','',0,0,0,0,1797,'','','','','','N','darshan','darshan','2025-12-18 18:54:31','','0000-00-00 00:00:00'),(3209,0,0,'I',2526,3209,'I003209','2025-12-18',6680,'','','0000-00-00','','',0,0,0,0,4330,'','','','','','N','drarchit','drarchit','2025-12-18 18:54:39','','0000-00-00 00:00:00'),(3210,0,0,'I',2526,3210,'I003210','2025-12-18',6691,'','','0000-00-00','','',0,0,0,0,1301,'','','','','','N','drjayant','drjayant','2025-12-18 18:54:47','','0000-00-00 00:00:00'),(3211,0,0,'I',2526,3211,'I003211','2025-12-18',6646,'','','0000-00-00','','',0,0,0,0,4309,'','','','','','N','darshan','darshan','2025-12-18 19:01:37','','0000-00-00 00:00:00'),(3212,0,0,'I',2526,3212,'I003212','2025-12-18',6688,'','','0000-00-00','','',0,0,0,0,2604,'','','','','','N','darshan','darshan','2025-12-18 19:05:06','','0000-00-00 00:00:00'),(3213,0,0,'I',2526,3213,'I003213','2025-12-18',6690,'','','0000-00-00','','',0,0,0,0,3584,'','','','','','N','darshan','darshan','2025-12-18 19:09:18','','0000-00-00 00:00:00'),(3214,0,0,'I',2526,3214,'I003214','2025-12-18',6686,'','','0000-00-00','','',0,0,0,0,825,'','','','','','N','drarchit','drarchit','2025-12-18 19:11:01','','0000-00-00 00:00:00'),(3215,0,0,'I',2526,3215,'I003215','2025-12-18',6693,'','','0000-00-00','','',0,0,0,0,4332,'','','','','','N','drarchit','drarchit','2025-12-18 19:15:36','','0000-00-00 00:00:00'),(3216,0,0,'I',2526,3216,'I003216','2025-12-18',6656,'','','0000-00-00','','',0,0,0,0,4313,'','','','','','N','darshan','darshan','2025-12-18 19:18:34','','0000-00-00 00:00:00'),(3217,0,0,'I',2526,3217,'I003217','2025-12-18',6694,'','','0000-00-00','','',0,0,0,0,3722,'','','','','','N','drarchit','drarchit','2025-12-18 19:22:55','','0000-00-00 00:00:00'),(3218,0,0,'I',2526,3218,'I003218','2025-12-18',6698,'','','0000-00-00','','',0,0,0,0,4335,'','','','','','N','drarchit','drarchit','2025-12-18 19:26:21','','0000-00-00 00:00:00'),(3219,0,0,'I',2526,3219,'I003219','2025-12-18',6699,'','','0000-00-00','','',0,0,0,0,4336,'','','','','','N','drarchit','drarchit','2025-12-18 19:29:01','','0000-00-00 00:00:00'),(3220,0,0,'I',2526,3220,'I003220','2025-12-18',6696,'','','0000-00-00','','',0,0,0,0,4333,'','','','','','N','darshan','darshan','2025-12-18 19:30:52','','0000-00-00 00:00:00'),(3221,0,0,'I',2526,3221,'I003221','2025-12-18',6623,'','','0000-00-00','','',0,0,0,0,4295,'','','','','','N','drarchit','drarchit','2025-12-18 19:31:11','','0000-00-00 00:00:00'),(3222,0,0,'I',2526,3222,'I003222','2025-12-18',6659,'','','0000-00-00','','',0,0,0,0,4315,'','','','','','N','darshan','darshan','2025-12-18 19:35:40','','0000-00-00 00:00:00'),(3223,0,0,'I',2526,3223,'I003223','2025-12-18',6681,'','','0000-00-00','','',0,0,0,0,3116,'','','','','','N','darshan','darshan','2025-12-18 19:47:29','','0000-00-00 00:00:00'),(3224,0,0,'I',2526,3224,'I003224','2025-12-18',6703,'','','0000-00-00','','',0,0,0,0,2538,'','','','','','N','darshan','darshan','2025-12-18 19:58:26','','0000-00-00 00:00:00'),(3225,0,0,'I',2526,3225,'I003225','2025-12-18',6705,'','','0000-00-00','','',0,0,0,0,4338,'','','','','','N','drarchit','drarchit','2025-12-18 19:59:08','','0000-00-00 00:00:00'),(3226,0,0,'I',2526,3226,'I003226','2025-12-18',6704,'','','0000-00-00','','',0,0,0,0,1660,'','','','','','N','darshan','darshan','2025-12-18 20:01:21','','0000-00-00 00:00:00'),(3227,0,0,'I',2526,3227,'I003227','2025-12-19',6710,'','','0000-00-00','','',0,0,0,0,1752,'','','','','','N','darshan','darshan','2025-12-19 10:44:15','','0000-00-00 00:00:00'),(3228,0,0,'I',2526,3228,'I003228','2025-12-19',6711,'','','0000-00-00','','',0,0,0,0,1751,'','','','','','N','darshan','darshan','2025-12-19 10:53:31','','0000-00-00 00:00:00'),(3229,0,0,'I',2526,3229,'I003229','2025-12-19',6715,'','','0000-00-00','','',0,0,0,0,3773,'','','','','','N','darshan','darshan','2025-12-19 10:59:45','','0000-00-00 00:00:00'),(3230,0,0,'I',2526,3230,'I003230','2025-12-19',6720,'','','0000-00-00','','',0,0,0,0,2718,'','','','','','N','darshan','darshan','2025-12-19 11:02:30','','0000-00-00 00:00:00'),(3231,0,0,'I',2526,3231,'I003231','2025-12-19',6717,'','','0000-00-00','','',0,0,0,0,4342,'','','','','','N','drarchit','drarchit','2025-12-19 11:06:43','','0000-00-00 00:00:00'),(3232,0,0,'I',2526,3232,'I003232','2025-12-19',6709,'','','0000-00-00','','',0,0,0,0,2650,'','','','','','N','darshan','darshan','2025-12-19 11:17:11','','0000-00-00 00:00:00'),(3233,0,0,'I',2526,3233,'I003233','2025-12-19',6726,'','','0000-00-00','','',0,0,0,0,313,'','','','','','N','drarchit','drarchit','2025-12-19 11:19:50','','0000-00-00 00:00:00'),(3234,0,0,'I',2526,3234,'I003234','2025-12-19',6716,'','','0000-00-00','','',0,0,0,0,3136,'','','','','','N','darshan','darshan','2025-12-19 11:30:53','','0000-00-00 00:00:00'),(3235,0,0,'I',2526,3235,'I003235','2025-12-19',6719,'','','0000-00-00','','',0,0,0,0,4344,'','','','','','N','drarchit','drarchit','2025-12-19 11:38:38','','0000-00-00 00:00:00'),(3236,0,0,'I',2526,3236,'I003236','2025-12-19',6736,'','','0000-00-00','','',0,0,0,0,4351,'','','','','','N','drarchit','drarchit','2025-12-19 11:40:17','','0000-00-00 00:00:00'),(3237,0,0,'I',2526,3237,'I003237','2025-12-19',6730,'','','0000-00-00','','',0,0,0,0,4349,'','','','','','N','darshan','darshan','2025-12-19 11:42:21','','0000-00-00 00:00:00'),(3238,0,0,'I',2526,3238,'I003238','2025-12-19',6747,'','','0000-00-00','','',0,0,0,0,3628,'','','','','','N','drarchit','drarchit','2025-12-19 11:42:47','','0000-00-00 00:00:00'),(3239,0,0,'I',2526,3239,'I003239','2025-12-19',6750,'','','0000-00-00','','',0,0,0,0,4358,'','','','','','N','drarchit','drarchit','2025-12-19 11:45:58','','0000-00-00 00:00:00'),(3240,0,0,'I',2526,3240,'I003240','2025-12-19',6749,'','','0000-00-00','','',0,0,0,0,4357,'','','','','','N','drarchit','drarchit','2025-12-19 11:49:12','','0000-00-00 00:00:00'),(3241,0,0,'I',2526,3241,'I003241','2025-12-19',6742,'','','0000-00-00','','',0,0,0,0,4354,'','','','','','N','drjayant','drjayant','2025-12-19 11:52:32','','0000-00-00 00:00:00'),(3242,0,0,'I',2526,3242,'I003242','2025-12-19',6744,'','','0000-00-00','','',0,0,0,0,9,'','','','','','N','drjayant','drjayant','2025-12-19 11:57:12','','0000-00-00 00:00:00'),(3243,0,0,'I',2526,3243,'I003243','2025-12-19',6741,'','','0000-00-00','','',0,0,0,0,3174,'','','','','','N','darshan','darshan','2025-12-19 11:58:23','','0000-00-00 00:00:00'),(3244,0,0,'I',2526,3244,'I003244','2025-12-19',6759,'','','0000-00-00','','',0,0,0,0,4362,'','','','','','N','drarchit','drarchit','2025-12-19 11:59:45','','0000-00-00 00:00:00'),(3245,0,0,'I',2526,3245,'I003245','2025-12-19',6723,'','','0000-00-00','','',0,0,0,0,1022,'','','','','','N','darshan','darshan','2025-12-19 12:02:06','','0000-00-00 00:00:00'),(3246,0,0,'I',2526,3246,'I003246','2025-12-19',6760,'','','0000-00-00','','',0,0,0,0,4363,'','','','','','N','drarchit','drarchit','2025-12-19 12:03:57','','0000-00-00 00:00:00'),(3247,0,0,'I',2526,3247,'I003247','2025-12-19',6724,'','','0000-00-00','','',0,0,0,0,1021,'','','','','','N','darshan','darshan','2025-12-19 12:04:52','','0000-00-00 00:00:00'),(3248,0,0,'I',2526,3248,'I003248','2025-12-19',6729,'','','0000-00-00','','',0,0,0,0,1994,'','','','','','N','darshan','darshan','2025-12-19 12:09:42','','0000-00-00 00:00:00'),(3249,0,0,'I',2526,3249,'I003249','2025-12-19',6762,'','','0000-00-00','','',0,0,0,0,4364,'','','','','','N','drarchit','drarchit','2025-12-19 12:10:54','','0000-00-00 00:00:00'),(3250,0,0,'I',2526,3250,'I003250','2025-12-19',6728,'','','0000-00-00','','',0,0,0,0,3880,'','','','','','N','darshan','darshan','2025-12-19 12:13:37','','0000-00-00 00:00:00'),(3251,0,0,'I',2526,3251,'I003251','2025-12-19',6763,'','','0000-00-00','','',0,0,0,0,4365,'','','','','','N','drarchit','drarchit','2025-12-19 12:14:06','','0000-00-00 00:00:00'),(3252,0,0,'I',2526,3252,'I003252','2025-12-19',6751,'','','0000-00-00','','',0,0,0,0,1037,'','','','','','N','darshan','darshan','2025-12-19 12:20:44','','0000-00-00 00:00:00'),(3253,0,0,'I',2526,3253,'I003253','2025-12-19',6732,'','','0000-00-00','','',0,0,0,0,1852,'','','','','','N','darshan','darshan','2025-12-19 12:22:42','','0000-00-00 00:00:00'),(3254,0,0,'I',2526,3254,'I003254','2025-12-19',6768,'','','0000-00-00','','',0,0,0,0,2721,'','','','','','N','drarchit','drarchit','2025-12-19 12:31:01','','0000-00-00 00:00:00'),(3255,0,0,'I',2526,3255,'I003255','2025-12-19',6740,'','','0000-00-00','','',0,0,0,0,4353,'','','','','','N','darshan','darshan','2025-12-19 12:34:01','','0000-00-00 00:00:00'),(3256,0,0,'I',2526,3256,'I003256','2025-12-19',6765,'','','0000-00-00','','',0,0,0,0,4366,'','','','','','N','darshan','darshan','2025-12-19 12:39:15','','0000-00-00 00:00:00'),(3257,0,0,'I',2526,3257,'I003257','2025-12-19',6721,'','','0000-00-00','','',0,0,0,0,4345,'','','','','','N','darshan','darshan','2025-12-19 12:45:02','','0000-00-00 00:00:00'),(3258,0,0,'I',2526,3258,'I003258','2025-12-19',6735,'','','0000-00-00','','',0,0,0,0,1935,'','','','','','N','darshan','darshan','2025-12-19 12:49:20','','0000-00-00 00:00:00'),(3259,0,0,'I',2526,3259,'I003259','2025-12-19',6743,'','','0000-00-00','','',0,0,0,0,4355,'','','','','','N','darshan','darshan','2025-12-19 12:52:46','','0000-00-00 00:00:00'),(3260,0,0,'I',2526,3260,'I003260','2025-12-19',6761,'','','0000-00-00','','',0,0,0,0,893,'','','','','','N','drarchit','drarchit','2025-12-19 12:55:28','','0000-00-00 00:00:00'),(3261,0,0,'I',2526,3261,'I003261','2025-12-19',6714,'','','0000-00-00','','',0,0,0,0,4341,'','','','','','N','darshan','darshan','2025-12-19 12:57:03','','0000-00-00 00:00:00'),(3262,0,0,'I',2526,3262,'I003262','2025-12-19',6774,'','','0000-00-00','','',0,0,0,0,4372,'','','','','','N','drarchit','drarchit','2025-12-19 13:02:48','','0000-00-00 00:00:00'),(3263,0,0,'I',2526,3263,'I003263','2025-12-19',6748,'','','0000-00-00','','',0,0,0,0,2564,'','','','','','N','darshan','darshan','2025-12-19 13:02:54','','0000-00-00 00:00:00'),(3264,0,0,'I',2526,3264,'I003264','2025-12-19',6739,'','','0000-00-00','','',0,0,0,0,4352,'','','','','','N','drarchit','drarchit','2025-12-19 13:11:07','','0000-00-00 00:00:00'),(3265,0,0,'I',2526,3265,'I003265','2025-12-19',6753,'','','0000-00-00','','',0,0,0,0,2744,'','','','','','N','darshan','darshan','2025-12-19 13:24:05','','0000-00-00 00:00:00'),(3266,0,0,'I',2526,3266,'I003266','2025-12-19',6755,'','','0000-00-00','','',0,0,0,0,2830,'','','','','','N','darshan','darshan','2025-12-19 13:27:43','','0000-00-00 00:00:00'),(3267,0,0,'I',2526,3267,'I003267','2025-12-19',6757,'','','0000-00-00','','',0,0,0,0,4361,'','','','','','N','darshan','darshan','2025-12-19 13:31:37','','0000-00-00 00:00:00'),(3268,0,0,'I',2526,3268,'I003268','2025-12-19',6718,'','','0000-00-00','','',0,0,0,0,4343,'','','','','','N','darshan','darshan','2025-12-19 13:38:25','','0000-00-00 00:00:00'),(3269,0,0,'I',2526,3269,'I003269','2025-12-19',6758,'','','0000-00-00','','',0,0,0,0,2178,'','','','','','N','darshan','darshan','2025-12-19 13:41:50','','0000-00-00 00:00:00'),(3270,0,0,'I',2526,3270,'I003270','2025-12-19',6770,'','','0000-00-00','','',0,0,0,0,4369,'','','','','','N','darshan','darshan','2025-12-19 13:51:28','','0000-00-00 00:00:00'),(3271,0,0,'I',2526,3271,'I003271','2025-12-19',6745,'','','0000-00-00','','',0,0,0,0,4356,'','','','','','N','darshan','darshan','2025-12-19 13:54:10','','0000-00-00 00:00:00'),(3272,0,0,'I',2526,3272,'I003272','2025-12-19',6773,'','','0000-00-00','','',0,0,0,0,4371,'','','','','','N','darshan','darshan','2025-12-19 14:04:11','','0000-00-00 00:00:00'),(3273,0,0,'I',2526,3273,'I003273','2025-12-19',6746,'','','0000-00-00','','',0,0,0,0,3648,'','','','','','N','darshan','darshan','2025-12-19 14:10:37','','0000-00-00 00:00:00'),(3274,0,0,'I',2526,3274,'I003274','2025-12-19',6776,'','','0000-00-00','','',0,0,0,0,2577,'','','','','','N','darshan','darshan','2025-12-19 14:12:38','','0000-00-00 00:00:00'),(3275,0,0,'I',2526,3275,'I003275','2025-12-19',6778,'','','0000-00-00','','',0,0,0,0,1277,'','','','','','N','darshan','darshan','2025-12-19 14:31:29','','0000-00-00 00:00:00'),(3276,0,0,'I',2526,3276,'I003276','2025-12-19',6786,'','','0000-00-00','','',0,0,0,0,865,'','','','','','N','darshan','darshan','2025-12-19 17:21:45','','0000-00-00 00:00:00'),(3277,0,0,'I',2526,3277,'I003277','2025-12-19',6779,'','','0000-00-00','','',0,0,0,0,2558,'','','','','','N','darshan','darshan','2025-12-19 17:24:08','','0000-00-00 00:00:00'),(3278,0,0,'I',2526,3278,'I003278','2025-12-19',6733,'','','0000-00-00','','',0,0,0,0,2171,'','','','','','N','darshan','darshan','2025-12-19 17:31:01','','0000-00-00 00:00:00'),(3279,0,0,'I',2526,3279,'I003279','2025-12-19',6792,'','','0000-00-00','','',0,0,0,0,2627,'','','','','','N','darshan','darshan','2025-12-19 17:37:12','','0000-00-00 00:00:00'),(3280,0,0,'I',2526,3280,'I003280','2025-12-19',6796,'','','0000-00-00','','',0,0,0,0,3770,'','','','','','N','darshan','darshan','2025-12-19 17:42:41','','0000-00-00 00:00:00'),(3281,0,0,'I',2526,3281,'I003281','2025-12-19',6802,'','','0000-00-00','','',0,0,0,0,4382,'','','','','','N','darshan','darshan','2025-12-19 17:51:40','','0000-00-00 00:00:00'),(3282,0,0,'I',2526,3282,'I003282','2025-12-19',6799,'','','0000-00-00','','',0,0,0,0,3813,'','','','','','N','darshan','darshan','2025-12-19 18:10:08','','0000-00-00 00:00:00'),(3283,0,0,'I',2526,3283,'I003283','2025-12-19',6788,'','','0000-00-00','','',0,0,0,0,3812,'','','','','','N','darshan','darshan','2025-12-19 18:13:20','','0000-00-00 00:00:00'),(3284,0,0,'I',2526,3284,'I003284','2025-12-19',6800,'','','0000-00-00','','',0,0,0,0,449,'','','','','','N','darshan','darshan','2025-12-19 18:16:10','','0000-00-00 00:00:00'),(3285,0,0,'I',2526,3285,'I003285','2025-12-19',6790,'','','0000-00-00','','',0,0,0,0,3789,'','','','','','N','darshan','darshan','2025-12-19 18:19:05','','0000-00-00 00:00:00'),(3286,0,0,'I',2526,3286,'I003286','2025-12-19',6678,'','','0000-00-00','','',0,0,0,0,4328,'','','','','','N','drarchit','drarchit','2025-12-19 18:23:25','','0000-00-00 00:00:00'),(3287,0,0,'I',2526,3287,'I003287','2025-12-19',6807,'','','0000-00-00','','',0,0,0,0,4385,'','','','','','N','darshan','darshan','2025-12-19 18:26:51','','0000-00-00 00:00:00'),(3288,0,0,'I',2526,3288,'I003288','2025-12-19',6806,'','','0000-00-00','','',0,0,0,0,4384,'','','','','','N','drarchit','drarchit','2025-12-19 18:28:35','','0000-00-00 00:00:00'),(3289,0,0,'I',2526,3289,'I003289','2025-12-19',6793,'','','0000-00-00','','',0,0,0,0,4378,'','','','','','N','darshan','darshan','2025-12-19 18:31:23','','0000-00-00 00:00:00'),(3290,0,0,'I',2526,3290,'I003290','2025-12-19',6812,'','','0000-00-00','','',0,0,0,0,3776,'','','','','','N','darshan','darshan','2025-12-19 18:37:15','','0000-00-00 00:00:00'),(3291,0,0,'I',2526,3291,'I003291','2025-12-19',6805,'','','0000-00-00','','',0,0,0,0,2656,'','','','','','N','darshan','darshan','2025-12-19 18:40:41','','0000-00-00 00:00:00'),(3292,0,0,'I',2526,3292,'I003292','2025-12-19',6795,'','','0000-00-00','','',0,0,0,0,4380,'','','','','','N','drarchit','drarchit','2025-12-19 18:43:59','','0000-00-00 00:00:00'),(3293,0,0,'I',2526,3293,'I003293','2025-12-19',6811,'','','0000-00-00','','',0,0,0,0,2684,'','','','','','N','drarchit','drarchit','2025-12-19 18:48:08','','0000-00-00 00:00:00'),(3294,0,0,'I',2526,3294,'I003294','2025-12-19',6787,'','','0000-00-00','','',0,0,0,0,4377,'','','','','','N','darshan','darshan','2025-12-19 18:57:23','','0000-00-00 00:00:00'),(3295,0,0,'I',2526,3295,'I003295','2025-12-19',6822,'','','0000-00-00','','',0,0,0,0,3476,'','','','','','N','drarchit','drarchit','2025-12-19 18:59:28','','0000-00-00 00:00:00'),(3296,0,0,'I',2526,3296,'I003296','2025-12-19',6797,'','','0000-00-00','','',0,0,0,0,1765,'','','','','','N','darshan','darshan','2025-12-19 18:59:44','','0000-00-00 00:00:00'),(3297,0,0,'I',2526,3297,'I003297','2025-12-19',6823,'','','0000-00-00','','',0,0,0,0,4389,'','','','','','N','drarchit','drarchit','2025-12-19 19:01:21','','0000-00-00 00:00:00'),(3298,0,0,'I',2526,3298,'I003298','2025-12-19',6767,'','','0000-00-00','','',0,0,0,0,4368,'','','','','','N','darshan','darshan','2025-12-19 19:04:17','','0000-00-00 00:00:00'),(3299,0,0,'I',2526,3299,'I003299','2025-12-19',6825,'','','0000-00-00','','',0,0,0,0,4391,'','','','','','N','drarchit','drarchit','2025-12-19 19:05:54','','0000-00-00 00:00:00'),(3300,0,0,'I',2526,3300,'I003300','2025-12-19',6783,'','','0000-00-00','','',0,0,0,0,4376,'','','','','','N','darshan','darshan','2025-12-19 19:09:45','','0000-00-00 00:00:00'),(3301,0,0,'I',2526,3301,'I003301','2025-12-19',6833,'','','0000-00-00','','',0,0,0,0,4392,'','','','','','N','drarchit','drarchit','2025-12-19 19:10:58','','0000-00-00 00:00:00'),(3302,0,0,'I',2526,3302,'I003302','2025-12-19',6834,'','','0000-00-00','','',0,0,0,0,4393,'','','','','','N','drarchit','drarchit','2025-12-19 19:16:19','','0000-00-00 00:00:00'),(3303,0,0,'I',2526,3303,'I003303','2025-12-19',6781,'','','0000-00-00','','',0,0,0,0,4374,'','','','','','N','darshan','darshan','2025-12-19 19:18:44','','0000-00-00 00:00:00'),(3304,0,0,'I',2526,3304,'I003304','2025-12-19',6828,'','','0000-00-00','','',0,0,0,0,3848,'','','','','','N','darshan','darshan','2025-12-19 19:21:25','','0000-00-00 00:00:00'),(3305,0,0,'I',2526,3305,'I003305','2025-12-19',6836,'','','0000-00-00','','',0,0,0,0,4394,'','','','','','N','drarchit','drarchit','2025-12-19 19:26:43','','0000-00-00 00:00:00'),(3306,0,0,'I',2526,3306,'I003306','2025-12-19',6809,'','','0000-00-00','','',0,0,0,0,4387,'','','','','','N','darshan','darshan','2025-12-19 19:27:56','','0000-00-00 00:00:00'),(3307,0,0,'I',2526,3307,'I003307','2025-12-19',6814,'','','0000-00-00','','',0,0,0,0,4388,'','','','','','N','drjayant','drjayant','2025-12-19 19:28:45','','0000-00-00 00:00:00'),(3308,0,0,'I',2526,3308,'I003308','2025-12-19',6840,'','','0000-00-00','','',0,0,0,0,4397,'','','','','','N','drarchit','drarchit','2025-12-19 19:33:57','','0000-00-00 00:00:00'),(3309,0,0,'I',2526,3309,'I003309','2025-12-19',6775,'','','0000-00-00','','',0,0,0,0,4373,'','','','','','N','drjayant','drjayant','2025-12-19 19:36:14','','0000-00-00 00:00:00'),(3310,0,0,'I',2526,3310,'I003310','2025-12-19',6683,'','','0000-00-00','','',0,0,0,0,4331,'','','','','','N','drarchit','drarchit','2025-12-19 19:39:38','','0000-00-00 00:00:00'),(3311,0,0,'I',2526,3311,'I003311','2025-12-19',6813,'','','0000-00-00','','',0,0,0,0,3908,'','','','','','N','darshan','darshan','2025-12-19 19:41:43','','0000-00-00 00:00:00'),(3312,0,0,'I',2526,3312,'I003312','2025-12-19',6816,'','','0000-00-00','','',0,0,0,0,3181,'','','','','','N','darshan','darshan','2025-12-19 19:48:08','','0000-00-00 00:00:00'),(3313,0,0,'I',2526,3313,'I003313','2025-12-19',6804,'','','0000-00-00','','',0,0,0,0,4383,'','','','','','N','darshan','darshan','2025-12-19 19:58:12','','0000-00-00 00:00:00'),(3314,0,0,'I',2526,3314,'I003314','2025-12-19',6832,'','','0000-00-00','','',0,0,0,0,3188,'','','','','','N','darshan','darshan','2025-12-19 20:00:15','','0000-00-00 00:00:00'),(3315,0,0,'I',2526,3315,'I003315','2025-12-19',6838,'','','0000-00-00','','',0,0,0,0,4396,'','','','','','N','darshan','darshan','2025-12-19 20:40:29','','0000-00-00 00:00:00'),(3316,0,0,'I',2526,3316,'I003316','2025-12-20',6801,'','','0000-00-00','','',0,0,0,0,2393,'','','','','','N','drarchit','drarchit','2025-12-20 11:06:39','','0000-00-00 00:00:00'),(3317,0,0,'I',2526,3317,'I003317','2025-12-20',6855,'','','0000-00-00','','',0,0,0,0,4404,'','','','','','N','drarchit','drarchit','2025-12-20 11:24:48','','0000-00-00 00:00:00'),(3318,0,0,'I',2526,3318,'I003318','2025-12-20',6858,'','','0000-00-00','','',0,0,0,0,4406,'','','','','','N','drarchit','drarchit','2025-12-20 11:32:35','','0000-00-00 00:00:00'),(3319,0,0,'I',2526,3319,'I003319','2025-12-20',6856,'','','0000-00-00','','',0,0,0,0,4405,'','','','','','N','drjayant','drjayant','2025-12-20 11:32:42','','0000-00-00 00:00:00'),(3320,0,0,'I',2526,3320,'I003320','2025-12-20',6861,'','','0000-00-00','','',0,0,0,0,4407,'','','','','','N','drarchit','drarchit','2025-12-20 11:41:14','','0000-00-00 00:00:00'),(3321,0,0,'I',2526,3321,'I003321','2025-12-20',6851,'','','0000-00-00','','',0,0,0,0,4047,'','','','','','N','drarchit','drarchit','2025-12-20 11:47:51','','0000-00-00 00:00:00'),(3322,0,0,'I',2526,3322,'I003322','2025-12-20',6862,'','','0000-00-00','','',0,0,0,0,251,'','','','','','N','drarchit','drarchit','2025-12-20 11:53:36','','0000-00-00 00:00:00'),(3323,0,0,'I',2526,3323,'I003323','2025-12-20',6857,'','','0000-00-00','','',0,0,0,0,280,'','','','','','N','drarchit','drarchit','2025-12-20 12:09:13','','0000-00-00 00:00:00'),(3324,0,0,'I',2526,3324,'I003324','2025-12-20',6863,'','','0000-00-00','','',0,0,0,0,4408,'','','','','','N','drarchit','drarchit','2025-12-20 12:13:19','','0000-00-00 00:00:00'),(3325,0,0,'I',2526,3325,'I003325','2025-12-20',6865,'','','0000-00-00','','',0,0,0,0,4410,'','','','','','N','drarchit','drarchit','2025-12-20 12:22:12','','0000-00-00 00:00:00'),(3326,0,0,'I',2526,3326,'I003326','2025-12-20',6853,'','','0000-00-00','','',0,0,0,0,4402,'','','','','','N','drjayant','drjayant','2025-12-20 12:24:46','','0000-00-00 00:00:00'),(3327,0,0,'I',2526,3327,'I003327','2025-12-20',6870,'','','0000-00-00','','',0,0,0,0,4413,'','','','','','N','drarchit','drarchit','2025-12-20 12:27:08','','0000-00-00 00:00:00'),(3328,0,0,'I',2526,3328,'I003328','2025-12-20',6867,'','','0000-00-00','','',0,0,0,0,3263,'','','','','','N','drarchit','drarchit','2025-12-20 12:32:53','','0000-00-00 00:00:00'),(3329,0,0,'I',2526,3329,'I003329','2025-12-20',6866,'','','0000-00-00','','',0,0,0,0,2929,'','','','','','N','drarchit','drarchit','2025-12-20 12:36:27','','0000-00-00 00:00:00'),(3330,0,0,'I',2526,3330,'I003330','2025-12-20',6869,'','','0000-00-00','','',0,0,0,0,4412,'','','','','','N','drarchit','drarchit','2025-12-20 12:40:11','','0000-00-00 00:00:00'),(3331,0,0,'I',2526,3331,'I003331','2025-12-20',6872,'','','0000-00-00','','',0,0,0,0,4415,'','','','','','N','drarchit','drarchit','2025-12-20 12:48:26','','0000-00-00 00:00:00'),(3332,0,0,'I',2526,3332,'I003332','2025-12-20',6874,'','','0000-00-00','','',0,0,0,0,4417,'','','','','','N','drjayant','drjayant','2025-12-20 12:49:26','','0000-00-00 00:00:00'),(3333,0,0,'I',2526,3333,'I003333','2025-12-20',6871,'','','0000-00-00','','',0,0,0,0,4414,'','','','','','N','drarchit','drarchit','2025-12-20 12:53:00','','0000-00-00 00:00:00'),(3334,0,0,'I',2526,3334,'I003334','2025-12-20',6876,'','','0000-00-00','','',0,0,0,0,4419,'','','','','','N','drarchit','drarchit','2025-12-20 12:57:24','','0000-00-00 00:00:00'),(3335,0,0,'I',2526,3335,'I003335','2025-12-20',6879,'','','0000-00-00','','',0,0,0,0,4421,'','','','','','N','drarchit','drarchit','2025-12-20 13:00:45','','0000-00-00 00:00:00'),(3336,0,0,'I',2526,3336,'I003336','2025-12-20',6877,'','','0000-00-00','','',0,0,0,0,2659,'','','','','','N','drarchit','drarchit','2025-12-20 13:03:30','','0000-00-00 00:00:00'),(3337,0,0,'I',2526,3337,'I003337','2025-12-22',6914,'','','0000-00-00','','',0,0,0,0,4439,'','','','','','N','darshan','darshan','2025-12-22 10:44:54','','0000-00-00 00:00:00'),(3338,0,0,'I',2526,3338,'I003338','2025-12-22',6926,'','','0000-00-00','','',0,0,0,0,4445,'','','','','','N','drarchit','drarchit','2025-12-22 10:56:37','','0000-00-00 00:00:00'),(3339,0,0,'I',2526,3339,'I003339','2025-12-22',6915,'','','0000-00-00','','',0,0,0,0,3302,'','','','','','N','darshan','darshan','2025-12-22 10:57:50','','0000-00-00 00:00:00'),(3340,0,0,'I',2526,3340,'I003340','2025-12-22',6941,'','','0000-00-00','','',0,0,0,0,4454,'','','','','','N','drarchit','drarchit','2025-12-22 11:03:13','','0000-00-00 00:00:00'),(3341,0,0,'I',2526,3341,'I003341','2025-12-22',6912,'','','0000-00-00','','',0,0,0,0,4438,'','','','','','N','darshan','darshan','2025-12-22 11:03:30','','0000-00-00 00:00:00'),(3342,0,0,'I',2526,3342,'I003342','2025-12-22',6937,'','','0000-00-00','','',0,0,0,0,4452,'','','','','','N','drarchit','drarchit','2025-12-22 11:10:07','','0000-00-00 00:00:00'),(3343,0,0,'I',2526,3343,'I003343','2025-12-22',6944,'','','0000-00-00','','',0,0,0,0,3140,'','','','','','N','drjayant','drjayant','2025-12-22 11:13:43','','0000-00-00 00:00:00'),(3344,0,0,'I',2526,3344,'I003344','2025-12-22',6932,'','','0000-00-00','','',0,0,0,0,2119,'','','','','','N','darshan','darshan','2025-12-22 11:15:35','','0000-00-00 00:00:00'),(3345,0,0,'I',2526,3345,'I003345','2025-12-22',6930,'','','0000-00-00','','',0,0,0,0,4449,'','','','','','N','drjayant','drjayant','2025-12-22 11:19:27','','0000-00-00 00:00:00'),(3346,0,0,'I',2526,3346,'I003346','2025-12-22',6938,'','','0000-00-00','','',0,0,0,0,2133,'','','','','','N','darshan','darshan','2025-12-22 11:25:41','','0000-00-00 00:00:00'),(3347,0,0,'I',2526,3347,'I003347','2025-12-22',6928,'','','0000-00-00','','',0,0,0,0,4447,'','','','','','N','drarchit','drarchit','2025-12-22 11:29:40','','0000-00-00 00:00:00'),(3348,0,0,'I',2526,3348,'I003348','2025-12-22',6921,'','','0000-00-00','','',0,0,0,0,2041,'','','','','','N','darshan','darshan','2025-12-22 11:31:05','','0000-00-00 00:00:00'),(3349,0,0,'I',2526,3349,'I003349','2025-12-22',6927,'','','0000-00-00','','',0,0,0,0,4446,'','','','','','N','drarchit','drarchit','2025-12-22 11:41:29','','0000-00-00 00:00:00'),(3350,0,0,'I',2526,3350,'I003350','2025-12-22',6957,'','','0000-00-00','','',0,0,0,0,208,'','','','','','N','darshan','darshan','2025-12-22 11:46:15','','0000-00-00 00:00:00'),(3351,0,0,'I',2526,3351,'I003351','2025-12-22',6948,'','','0000-00-00','','',0,0,0,0,3891,'','','','','','N','darshan','darshan','2025-12-22 11:49:17','','0000-00-00 00:00:00'),(3352,0,0,'I',2526,3352,'I003352','2025-12-22',6960,'','','0000-00-00','','',0,0,0,0,4465,'','','','','','N','drarchit','drarchit','2025-12-22 11:49:50','','0000-00-00 00:00:00'),(3353,0,0,'I',2526,3353,'I003353','2025-12-22',6902,'','','0000-00-00','','',0,0,0,0,4433,'','','','','','N','drjayant','drjayant','2025-12-22 11:57:39','','0000-00-00 00:00:00'),(3354,0,0,'I',2526,3354,'I003354','2025-12-22',6942,'','','0000-00-00','','',0,0,0,0,3928,'','','','','','N','darshan','darshan','2025-12-22 12:11:23','','0000-00-00 00:00:00'),(3355,0,0,'I',2526,3355,'I003355','2025-12-22',6916,'','','0000-00-00','','',0,0,0,0,3803,'','','','','','N','darshan','darshan','2025-12-22 12:14:33','','0000-00-00 00:00:00'),(3356,0,0,'I',2526,3356,'I003356','2025-12-22',6964,'','','0000-00-00','','',0,0,0,0,3697,'','','','','','N','drarchit','drarchit','2025-12-22 12:20:44','','0000-00-00 00:00:00'),(3357,0,0,'I',2526,3357,'I003357','2025-12-22',6925,'','','0000-00-00','','',0,0,0,0,4444,'','','','','','N','darshan','darshan','2025-12-22 12:24:29','','0000-00-00 00:00:00'),(3358,0,0,'I',2526,3358,'I003358','2025-12-22',6947,'','','0000-00-00','','',0,0,0,0,3228,'','','','','','N','darshan','darshan','2025-12-22 12:35:23','','0000-00-00 00:00:00'),(3359,0,0,'I',2526,3359,'I003359','2025-12-22',6971,'','','0000-00-00','','',0,0,0,0,4472,'','','','','','N','drarchit','drarchit','2025-12-22 12:37:25','','0000-00-00 00:00:00'),(3360,0,0,'I',2526,3360,'I003360','2025-12-22',6965,'','','0000-00-00','','',0,0,0,0,2880,'','','','','','N','darshan','darshan','2025-12-22 12:39:05','','0000-00-00 00:00:00'),(3361,0,0,'I',2526,3361,'I003361','2025-12-22',6949,'','','0000-00-00','','',0,0,0,0,4457,'','','','','','N','darshan','darshan','2025-12-22 12:46:34','','0000-00-00 00:00:00'),(3362,0,0,'I',2526,3362,'I003362','2025-12-22',6950,'','','0000-00-00','','',0,0,0,0,4458,'','','','','','N','darshan','darshan','2025-12-22 12:50:30','','0000-00-00 00:00:00'),(3363,0,0,'I',2526,3363,'I003363','2025-12-22',6945,'','','0000-00-00','','',0,0,0,0,4088,'','','','','','N','drarchit','drarchit','2025-12-22 12:59:52','','0000-00-00 00:00:00'),(3364,0,0,'I',2526,3364,'I003364','2025-12-22',6953,'','','0000-00-00','','',0,0,0,0,4460,'','','','','','N','darshan','darshan','2025-12-22 13:00:08','','0000-00-00 00:00:00'),(3365,0,0,'I',2526,3365,'I003365','2025-12-22',6940,'','','0000-00-00','','',0,0,0,0,4120,'','','','','','N','darshan','darshan','2025-12-22 13:02:12','','0000-00-00 00:00:00'),(3366,0,0,'I',2526,3366,'I003366','2025-12-22',6954,'','','0000-00-00','','',0,0,0,0,4461,'','','','','','N','darshan','darshan','2025-12-22 13:06:46','','0000-00-00 00:00:00'),(3367,0,0,'I',2526,3367,'I003367','2025-12-22',6958,'','','0000-00-00','','',0,0,0,0,4463,'','','','','','N','darshan','darshan','2025-12-22 13:13:10','','0000-00-00 00:00:00'),(3368,0,0,'I',2526,3368,'I003368','2025-12-22',6918,'','','0000-00-00','','',0,0,0,0,4440,'','','','','','N','darshan','darshan','2025-12-22 13:22:30','','0000-00-00 00:00:00'),(3369,0,0,'I',2526,3369,'I003369','2025-12-22',6920,'','','0000-00-00','','',0,0,0,0,4442,'','','','','','N','darshan','darshan','2025-12-22 13:32:44','','0000-00-00 00:00:00'),(3370,0,0,'I',2526,3370,'I003370','2025-12-22',6934,'','','0000-00-00','','',0,0,0,0,4451,'','','','','','N','darshan','darshan','2025-12-22 13:45:11','','0000-00-00 00:00:00'),(3371,0,0,'I',2526,3371,'I003371','2025-12-22',6959,'','','0000-00-00','','',0,0,0,0,4464,'','','','','','N','darshan','darshan','2025-12-22 13:56:31','','0000-00-00 00:00:00'),(3372,0,0,'I',2526,3372,'I003372','2025-12-22',6970,'','','0000-00-00','','',0,0,0,0,4471,'','','','','','N','darshan','darshan','2025-12-22 14:14:37','','0000-00-00 00:00:00'),(3373,0,0,'I',2526,3373,'I003373','2025-12-22',6952,'','','0000-00-00','','',0,0,0,0,4459,'','','','','','N','darshan','darshan','2025-12-22 14:18:39','','0000-00-00 00:00:00'),(3374,0,0,'I',2526,3374,'I003374','2025-12-22',6980,'','','0000-00-00','','',0,0,0,0,4478,'','','','','','N','darshan','darshan','2025-12-22 14:27:09','','0000-00-00 00:00:00'),(3375,0,0,'I',2526,3375,'I003375','2025-12-22',6972,'','','0000-00-00','','',0,0,0,0,4473,'','','','','','N','darshan','darshan','2025-12-22 14:39:05','','0000-00-00 00:00:00'),(3376,0,0,'I',2526,3376,'I003376','2025-12-22',6962,'','','0000-00-00','','',0,0,0,0,4466,'','','','','','N','darshan','darshan','2025-12-22 14:48:22','','0000-00-00 00:00:00'),(3377,0,0,'I',2526,3377,'I003377','2025-12-22',6973,'','','0000-00-00','','',0,0,0,0,4474,'','','','','','N','darshan','darshan','2025-12-22 14:53:33','','0000-00-00 00:00:00'),(3378,0,0,'I',2526,3378,'I003378','2025-12-22',6966,'','','0000-00-00','','',0,0,0,0,4468,'','','','','','N','darshan','darshan','2025-12-22 15:01:27','','0000-00-00 00:00:00'),(3379,0,0,'I',2526,3379,'I003379','2025-12-22',6979,'','','0000-00-00','','',0,0,0,0,4477,'','','','','','N','darshan','darshan','2025-12-22 15:19:23','','0000-00-00 00:00:00'),(3380,0,0,'I',2526,3380,'I003380','2025-12-22',6992,'','','0000-00-00','','',0,0,0,0,1969,'','','','','','N','darshan','darshan','2025-12-22 17:10:39','','0000-00-00 00:00:00'),(3381,0,0,'I',2526,3381,'I003381','2025-12-22',6993,'','','0000-00-00','','',0,0,0,0,80,'','','','','','N','darshan','darshan','2025-12-22 17:13:32','','0000-00-00 00:00:00'),(3382,0,0,'I',2526,3382,'I003382','2025-12-22',6994,'','','0000-00-00','','',0,0,0,0,3992,'','','','','','N','darshan','darshan','2025-12-22 17:16:04','','0000-00-00 00:00:00'),(3383,0,0,'I',2526,3383,'I003383','2025-12-22',6990,'','','0000-00-00','','',0,0,0,0,3962,'','','','','','N','darshan','darshan','2025-12-22 17:19:04','','0000-00-00 00:00:00'),(3384,0,0,'I',2526,3384,'I003384','2025-12-22',6997,'','','0000-00-00','','',0,0,0,0,1929,'','','','','','N','darshan','darshan','2025-12-22 17:33:45','','0000-00-00 00:00:00'),(3385,0,0,'I',2526,3385,'I003385','2025-12-22',7000,'','','0000-00-00','','',0,0,0,0,3995,'','','','','','N','darshan','darshan','2025-12-22 17:42:37','','0000-00-00 00:00:00'),(3386,0,0,'I',2526,3386,'I003386','2025-12-22',7008,'','','0000-00-00','','',0,0,0,0,2302,'','','','','','N','darshan','darshan','2025-12-22 17:53:10','','0000-00-00 00:00:00'),(3387,0,0,'I',2526,3387,'I003387','2025-12-22',7007,'','','0000-00-00','','',0,0,0,0,4490,'','','','','','N','darshan','darshan','2025-12-22 18:04:23','','0000-00-00 00:00:00'),(3388,0,0,'I',2526,3388,'I003388','2025-12-22',6998,'','','0000-00-00','','',0,0,0,0,4229,'','','','','','N','drjayant','drjayant','2025-12-22 18:04:36','','0000-00-00 00:00:00'),(3389,0,0,'I',2526,3389,'I003389','2025-12-22',7012,'','','0000-00-00','','',0,0,0,0,4016,'','','','','','N','drjayant','drjayant','2025-12-22 18:12:14','','0000-00-00 00:00:00'),(3390,0,0,'I',2526,3390,'I003390','2025-12-22',6999,'','','0000-00-00','','',0,0,0,0,1841,'','','','','','N','darshan','darshan','2025-12-22 18:13:43','','0000-00-00 00:00:00'),(3391,0,0,'I',2526,3391,'I003391','2025-12-22',7009,'','','0000-00-00','','',0,0,0,0,4491,'','','','','','N','darshan','darshan','2025-12-22 18:17:32','','0000-00-00 00:00:00'),(3392,0,0,'I',2526,3392,'I003392','2025-12-22',7016,'','','0000-00-00','','',0,0,0,0,1916,'','','','','','N','darshan','darshan','2025-12-22 18:19:55','','0000-00-00 00:00:00'),(3393,0,0,'I',2526,3393,'I003393','2025-12-22',6909,'','','0000-00-00','','',0,0,0,0,4436,'','','','','','N','drarchit','drarchit','2025-12-22 18:22:36','','0000-00-00 00:00:00'),(3394,0,0,'I',2526,3394,'I003394','2025-12-22',7015,'','','0000-00-00','','',0,0,0,0,4493,'','','','','','N','drjayant','drjayant','2025-12-22 18:24:55','','0000-00-00 00:00:00'),(3395,0,0,'I',2526,3395,'I003395','2025-12-22',7005,'','','0000-00-00','','',0,0,0,0,4488,'','','','','','N','drarchit','drarchit','2025-12-22 18:27:25','','0000-00-00 00:00:00'),(3396,0,0,'I',2526,3396,'I003396','2025-12-22',6963,'','','0000-00-00','','',0,0,0,0,4467,'','','','','','N','drjayant','drjayant','2025-12-22 18:28:27','','0000-00-00 00:00:00'),(3397,0,0,'I',2526,3397,'I003397','2025-12-22',6982,'','','0000-00-00','','',0,0,0,0,4480,'','','','','','N','darshan','darshan','2025-12-22 18:32:46','','0000-00-00 00:00:00'),(3398,0,0,'I',2526,3398,'I003398','2025-12-22',6981,'','','0000-00-00','','',0,0,0,0,4479,'','','','','','N','drarchit','drarchit','2025-12-22 18:34:10','','0000-00-00 00:00:00'),(3399,0,0,'I',2526,3399,'I003399','2025-12-22',6946,'','','0000-00-00','','',0,0,0,0,4456,'','','','','','N','darshan','darshan','2025-12-22 18:43:43','','0000-00-00 00:00:00'),(3400,0,0,'I',2526,3400,'I003400','2025-12-22',7030,'','','0000-00-00','','',0,0,0,0,3732,'','','','','','N','darshan','darshan','2025-12-22 18:47:05','','0000-00-00 00:00:00'),(3401,0,0,'I',2526,3401,'I003401','2025-12-22',6939,'','','0000-00-00','','',0,0,0,0,4453,'','','','','','N','drarchit','drarchit','2025-12-22 18:47:36','','0000-00-00 00:00:00'),(3402,0,0,'I',2526,3402,'I003402','2025-12-22',7033,'','','0000-00-00','','',0,0,0,0,3993,'','','','','','N','darshan','darshan','2025-12-22 18:50:22','','0000-00-00 00:00:00'),(3403,0,0,'I',2526,3403,'I003403','2025-12-22',6910,'','','0000-00-00','','',0,0,0,0,4437,'','','','','','N','drarchit','drarchit','2025-12-22 18:51:41','','0000-00-00 00:00:00'),(3404,0,0,'I',2526,3404,'I003404','2025-12-22',7037,'','','0000-00-00','','',0,0,0,0,4502,'','','','','','N','drjayant','drjayant','2025-12-22 18:54:00','','0000-00-00 00:00:00'),(3405,0,0,'I',2526,3405,'I003405','2025-12-22',7002,'','','0000-00-00','','',0,0,0,0,4487,'','','','','','N','darshan','darshan','2025-12-22 18:55:13','','0000-00-00 00:00:00'),(3406,0,0,'I',2526,3406,'I003406','2025-12-22',7031,'','','0000-00-00','','',0,0,0,0,3315,'','','','','','N','drarchit','drarchit','2025-12-22 18:55:31','','0000-00-00 00:00:00'),(3407,0,0,'I',2526,3407,'I003407','2025-12-22',7034,'','','0000-00-00','','',0,0,0,0,4500,'','','','','','N','drarchit','drarchit','2025-12-22 19:00:46','','0000-00-00 00:00:00'),(3408,0,0,'I',2526,3408,'I003408','2025-12-22',7042,'','','0000-00-00','','',0,0,0,0,3954,'','','','','','N','darshan','darshan','2025-12-22 19:02:10','','0000-00-00 00:00:00'),(3409,0,0,'I',2526,3409,'I003409','2025-12-22',7006,'','','0000-00-00','','',0,0,0,0,4489,'','','','','','N','darshan','darshan','2025-12-22 19:06:56','','0000-00-00 00:00:00'),(3410,0,0,'I',2526,3410,'I003410','2025-12-22',7044,'','','0000-00-00','','',0,0,0,0,2764,'','','','','','N','drarchit','drarchit','2025-12-22 19:08:06','','0000-00-00 00:00:00'),(3411,0,0,'I',2526,3411,'I003411','2025-12-22',7040,'','','0000-00-00','','',0,0,0,0,4504,'','','','','','N','darshan','darshan','2025-12-22 19:15:19','','0000-00-00 00:00:00'),(3412,0,0,'I',2526,3412,'I003412','2025-12-22',7047,'','','0000-00-00','','',0,0,0,0,4508,'','','','','','N','drarchit','drarchit','2025-12-22 19:15:38','','0000-00-00 00:00:00'),(3413,0,0,'I',2526,3413,'I003413','2025-12-22',7020,'','','0000-00-00','','',0,0,0,0,4495,'','','','','','N','darshan','darshan','2025-12-22 19:28:40','','0000-00-00 00:00:00'),(3414,0,0,'I',2526,3414,'I003414','2025-12-22',7051,'','','0000-00-00','','',0,0,0,0,4510,'','','','','','N','drarchit','drarchit','2025-12-22 19:31:00','','0000-00-00 00:00:00'),(3415,0,0,'I',2526,3415,'I003415','2025-12-22',7058,'','','0000-00-00','','',0,0,0,0,1399,'','','','','','N','drjayant','drjayant','2025-12-22 19:32:08','','0000-00-00 00:00:00'),(3416,0,0,'I',2526,3416,'I003416','2025-12-22',7052,'','','0000-00-00','','',0,0,0,0,3433,'','','','','','N','darshan','darshan','2025-12-22 19:39:06','','0000-00-00 00:00:00'),(3417,0,0,'I',2526,3417,'I003417','2025-12-22',7053,'','','0000-00-00','','',0,0,0,0,4511,'','','','','','N','drarchit','drarchit','2025-12-22 19:39:24','','0000-00-00 00:00:00'),(3418,0,0,'I',2526,3418,'I003418','2025-12-22',7055,'','','0000-00-00','','',0,0,0,0,4512,'','','','','','N','drarchit','drarchit','2025-12-22 19:49:58','','0000-00-00 00:00:00'),(3419,0,0,'I',2526,3419,'I003419','2025-12-22',7046,'','','0000-00-00','','',0,0,0,0,4507,'','','','','','N','darshan','darshan','2025-12-22 19:54:39','','0000-00-00 00:00:00'),(3420,0,0,'I',2526,3420,'I003420','2025-12-22',7049,'','','0000-00-00','','',0,0,0,0,4509,'','','','','','N','darshan','darshan','2025-12-22 19:57:45','','0000-00-00 00:00:00'),(3421,0,0,'I',2526,3421,'I003421','2025-12-22',6878,'','','0000-00-00','','',0,0,0,0,4420,'','','','','','N','drarchit','drarchit','2025-12-22 20:09:47','','0000-00-00 00:00:00'),(3422,0,0,'I',2526,3422,'I003422','2025-12-22',7062,'','','0000-00-00','','',0,0,0,0,4516,'','','','','','N','drarchit','drarchit','2025-12-22 20:18:53','','0000-00-00 00:00:00'),(3423,0,0,'I',2526,3423,'I003423','2025-12-22',7045,'','','0000-00-00','','',0,0,0,0,4506,'','','','','','N','drpratapsinh','drpratapsinh','2025-12-22 20:26:39','','0000-00-00 00:00:00'),(3424,0,0,'I',2526,3424,'I003424','2025-12-22',5120,'','','0000-00-00','','',0,0,0,0,0,'','','','','','N','mo','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(3425,0,0,'I',2526,3425,'I003425','2025-12-23',7074,'','','0000-00-00','','',0,0,0,0,653,'','','','','','N','darshan','darshan','2025-12-23 10:59:42','','0000-00-00 00:00:00'),(3426,0,0,'I',2526,3426,'I003426','2025-12-23',7077,'','','0000-00-00','','',0,0,0,0,1458,'','','','','','N','darshan','darshan','2025-12-23 11:03:27','','0000-00-00 00:00:00'),(3427,0,0,'I',2526,3427,'I003427','2025-12-23',7078,'','','0000-00-00','','',0,0,0,0,157,'','','','','','N','darshan','darshan','2025-12-23 11:08:55','','0000-00-00 00:00:00'),(3428,0,0,'I',2526,3428,'I003428','2025-12-23',7085,'','','0000-00-00','','',0,0,0,0,4527,'','','','','','N','drjayant','drjayant','2025-12-23 11:13:55','','0000-00-00 00:00:00'),(3429,0,0,'I',2526,3429,'I003429','2025-12-23',7080,'','','0000-00-00','','',0,0,0,0,4031,'','','','','','N','darshan','darshan','2025-12-23 11:19:00','','0000-00-00 00:00:00'),(3430,0,0,'I',2526,3430,'I003430','2025-12-23',7089,'','','0000-00-00','','',0,0,0,0,4531,'','','','','','N','drarchit','drarchit','2025-12-23 11:21:25','','0000-00-00 00:00:00'),(3431,0,0,'I',2526,3431,'I003431','2025-12-23',7097,'','','0000-00-00','','',0,0,0,0,4537,'','','','','','N','drarchit','drarchit','2025-12-23 11:27:00','','0000-00-00 00:00:00'),(3432,0,0,'I',2526,3432,'I003432','2025-12-23',7095,'','','0000-00-00','','',0,0,0,0,4535,'','','','','','N','drjayant','drjayant','2025-12-23 11:30:10','','0000-00-00 00:00:00'),(3433,0,0,'I',2526,3433,'I003433','2025-12-23',7081,'','','0000-00-00','','',0,0,0,0,4525,'','','','','','N','darshan','darshan','2025-12-23 11:32:11','','0000-00-00 00:00:00'),(3434,0,0,'I',2526,3434,'I003434','2025-12-23',7099,'','','0000-00-00','','',0,0,0,0,4539,'','','','','','N','drarchit','drarchit','2025-12-23 11:37:29','','0000-00-00 00:00:00'),(3435,0,0,'I',2526,3435,'I003435','2025-12-23',6984,'','','0000-00-00','','',0,0,0,0,4482,'','','','','','N','darshan','darshan','2025-12-23 11:37:42','','0000-00-00 00:00:00'),(3436,0,0,'I',2526,3436,'I003436','2025-12-23',7102,'','','0000-00-00','','',0,0,0,0,4541,'','','','','','N','drarchit','drarchit','2025-12-23 11:55:33','','0000-00-00 00:00:00'),(3437,0,0,'I',2526,3437,'I003437','2025-12-23',7082,'','','0000-00-00','','',0,0,0,0,4526,'','','','','','N','darshan','darshan','2025-12-23 11:56:54','','0000-00-00 00:00:00'),(3438,0,0,'I',2526,3438,'I003438','2025-12-23',7105,'','','0000-00-00','','',0,0,0,0,4542,'','','','','','N','drarchit','drarchit','2025-12-23 11:57:55','','0000-00-00 00:00:00'),(3439,0,0,'I',2526,3439,'I003439','2025-12-23',7083,'','','0000-00-00','','',0,0,0,0,927,'','','','','','N','darshan','darshan','2025-12-23 11:58:55','','0000-00-00 00:00:00'),(3440,0,0,'I',2526,3440,'I003440','2025-12-23',7070,'','','0000-00-00','','',0,0,0,0,4519,'','','','','','N','drarchit','drarchit','2025-12-23 12:00:15','','0000-00-00 00:00:00'),(3441,0,0,'I',2526,3441,'I003441','2025-12-23',7109,'','','0000-00-00','','',0,0,0,0,4545,'','','','','','N','drarchit','drarchit','2025-12-23 12:03:29','','0000-00-00 00:00:00'),(3442,0,0,'I',2526,3442,'I003442','2025-12-23',7104,'','','0000-00-00','','',0,0,0,0,3462,'','','','','','N','darshan','darshan','2025-12-23 12:11:48','','0000-00-00 00:00:00'),(3443,0,0,'I',2526,3443,'I003443','2025-12-23',7079,'','','0000-00-00','','',0,0,0,0,4524,'','','','','','N','drarchit','drarchit','2025-12-23 12:14:21','','0000-00-00 00:00:00'),(3444,0,0,'I',2526,3444,'I003444','2025-12-23',7086,'','','0000-00-00','','',0,0,0,0,4528,'','','','','','N','darshan','darshan','2025-12-23 12:16:59','','0000-00-00 00:00:00'),(3445,0,0,'I',2526,3445,'I003445','2025-12-23',7120,'','','0000-00-00','','',0,0,0,0,4552,'','','','','','N','drarchit','drarchit','2025-12-23 12:25:45','','0000-00-00 00:00:00'),(3446,0,0,'I',2526,3446,'I003446','2025-12-23',7103,'','','0000-00-00','','',0,0,0,0,3101,'','','','','','N','darshan','darshan','2025-12-23 12:37:16','','0000-00-00 00:00:00'),(3447,0,0,'I',2526,3447,'I003447','2025-12-23',7088,'','','0000-00-00','','',0,0,0,0,4530,'','','','','','N','drarchit','drarchit','2025-12-23 12:40:34','','0000-00-00 00:00:00'),(3448,0,0,'I',2526,3448,'I003448','2025-12-23',7125,'','','0000-00-00','','',0,0,0,0,4185,'','','','','','N','drarchit','drarchit','2025-12-23 12:46:12','','0000-00-00 00:00:00'),(3449,0,0,'I',2526,3449,'I003449','2025-12-23',7113,'','','0000-00-00','','',0,0,0,0,592,'','','','','','N','darshan','darshan','2025-12-23 12:49:02','','0000-00-00 00:00:00'),(3450,0,0,'I',2526,3450,'I003450','2025-12-23',7114,'','','0000-00-00','','',0,0,0,0,4548,'','','','','','N','darshan','darshan','2025-12-23 12:51:56','','0000-00-00 00:00:00'),(3451,0,0,'I',2526,3451,'I003451','2025-12-23',7073,'','','0000-00-00','','',0,0,0,0,4521,'','','','','','N','darshan','darshan','2025-12-23 12:55:48','','0000-00-00 00:00:00'),(3452,0,0,'I',2526,3452,'I003452','2025-12-23',7127,'','','0000-00-00','','',0,0,0,0,4021,'','','','','','N','drarchit','drarchit','2025-12-23 13:09:50','','0000-00-00 00:00:00'),(3453,0,0,'I',2526,3453,'I003453','2025-12-23',7091,'','','0000-00-00','','',0,0,0,0,4533,'','','','','','N','darshan','darshan','2025-12-23 13:10:29','','0000-00-00 00:00:00'),(3454,0,0,'I',2526,3454,'I003454','2025-12-23',7118,'','','0000-00-00','','',0,0,0,0,4259,'','','','','','N','drarchit','drarchit','2025-12-23 13:13:16','','0000-00-00 00:00:00'),(3455,0,0,'I',2526,3455,'I003455','2025-12-23',7090,'','','0000-00-00','','',0,0,0,0,4532,'','','','','','N','darshan','darshan','2025-12-23 13:23:43','','0000-00-00 00:00:00'),(3456,0,0,'I',2526,3456,'I003456','2025-12-23',7100,'','','0000-00-00','','',0,0,0,0,4540,'','','','','','N','darshan','darshan','2025-12-23 13:31:28','','0000-00-00 00:00:00'),(3457,0,0,'I',2526,3457,'I003457','2025-12-23',7094,'','','0000-00-00','','',0,0,0,0,4534,'','','','','','N','darshan','darshan','2025-12-23 13:48:06','','0000-00-00 00:00:00'),(3458,0,0,'I',2526,3458,'I003458','2025-12-23',7098,'','','0000-00-00','','',0,0,0,0,4538,'','','','','','N','darshan','darshan','2025-12-23 13:56:15','','0000-00-00 00:00:00'),(3459,0,0,'I',2526,3459,'I003459','2025-12-23',7115,'','','0000-00-00','','',0,0,0,0,4549,'','','','','','N','darshan','darshan','2025-12-23 14:02:56','','0000-00-00 00:00:00'),(3460,0,0,'I',2526,3460,'I003460','2025-12-23',7128,'','','0000-00-00','','',0,0,0,0,51,'','','','','','N','darshan','darshan','2025-12-23 14:12:23','','0000-00-00 00:00:00'),(3461,0,0,'I',2526,3461,'I003461','2025-12-23',7129,'','','0000-00-00','','',0,0,0,0,4556,'','','','','','N','darshan','darshan','2025-12-23 14:16:20','','0000-00-00 00:00:00'),(3462,0,0,'I',2526,3462,'I003462','2025-12-23',7119,'','','0000-00-00','','',0,0,0,0,4551,'','','','','','N','darshan','darshan','2025-12-23 14:38:18','','0000-00-00 00:00:00'),(3463,0,0,'I',2526,3463,'I003463','2025-12-23',7124,'','','0000-00-00','','',0,0,0,0,4555,'','','','','','N','darshan','darshan','2025-12-23 14:44:18','','0000-00-00 00:00:00'),(3464,0,0,'I',2526,3464,'I003464','2025-12-23',7131,'','','0000-00-00','','',0,0,0,0,4558,'','','','','','N','darshan','darshan','2025-12-23 14:52:02','','0000-00-00 00:00:00'),(3465,0,0,'I',2526,3465,'I003465','2025-12-23',7136,'','','0000-00-00','','',0,0,0,0,2004,'','','','','','N','darshan','darshan','2025-12-23 17:23:37','','0000-00-00 00:00:00'),(3466,0,0,'I',2526,3466,'I003466','2025-12-23',7138,'','','0000-00-00','','',0,0,0,0,637,'','','','','','N','darshan','darshan','2025-12-23 17:27:08','','0000-00-00 00:00:00'),(3467,0,0,'I',2526,3467,'I003467','2025-12-23',7133,'','','0000-00-00','','',0,0,0,0,750,'','','','','','N','darshan','darshan','2025-12-23 17:31:07','','0000-00-00 00:00:00'),(3468,0,0,'I',2526,3468,'I003468','2025-12-23',7132,'','','0000-00-00','','',0,0,0,0,2448,'','','','','','N','darshan','darshan','2025-12-23 17:43:08','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `medicine_transaction_header` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `medicine_yr_stock`
--

DROP TABLE IF EXISTS `medicine_yr_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `medicine_yr_stock` (
  `code` varchar(6) NOT NULL,
  `year` int(11) NOT NULL,
  `opening_stock` int(11) NOT NULL,
  `opening_price` float NOT NULL,
  `opening_value` float NOT NULL,
  `total_purchase` int(11) NOT NULL,
  `total_issues` int(11) NOT NULL,
  `total_adjustments` int(11) NOT NULL,
  PRIMARY KEY (`code`,`year`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `medicine_yr_stock`
--

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

--
-- Table structure for table `mrd_details`
--

DROP TABLE IF EXISTS `mrd_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mrd_details` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `Fin_Year` int(11) NOT NULL AUTO_INCREMENT,
  `IPID` int(11) NOT NULL,
  `document_id` varchar(6) NOT NULL COMMENT 'Reference of general_master table',
  `no_of_page` smallint(6) NOT NULL,
  `prepared_by` varchar(11) NOT NULL,
  `verified` enum('YES','NO') NOT NULL DEFAULT 'NO',
  `verified_by` varchar(11) NOT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) NOT NULL,
  `lastmodified_date` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`Fin_Year`,`IPID`,`document_id`),
  KEY `gm_code` (`document_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mrd_details`
--

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

--
-- Table structure for table `mrd_master`
--

DROP TABLE IF EXISTS `mrd_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mrd_master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `Fin_Year` int(4) NOT NULL,
  `IPID` int(6) NOT NULL,
  `UHID` int(6) NOT NULL,
  `Patient_Name` varchar(50) NOT NULL,
  `Gender` enum('MALE','FEMALE') NOT NULL,
  `Age` int(4) NOT NULL,
  `DOA` date NOT NULL,
  `TOA` time NOT NULL,
  `DOD` date NOT NULL,
  `TOD` time NOT NULL,
  `Doctor_ID` varchar(5) NOT NULL,
  `Doctor_Name` varchar(50) NOT NULL,
  `MLC` enum('YES','NO') NOT NULL,
  `File_Location` varchar(15) NOT NULL,
  `MRD_Status` enum('NEW','OLD') NOT NULL,
  `CreatedBy` varchar(11) NOT NULL,
  `CreatedAt` datetime NOT NULL,
  `ModifiedBy` varchar(11) NOT NULL,
  `ModifiedAt` datetime NOT NULL,
  `Dept_ID` varchar(5) NOT NULL,
  `Dept_Name` varchar(30) NOT NULL,
  `Remarks` varchar(50) NOT NULL,
  `Flag` enum('ISSUED','RETURNED') DEFAULT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`Fin_Year`,`IPID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mrd_master`
--

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

--
-- Table structure for table `mrd_movement`
--

DROP TABLE IF EXISTS `mrd_movement`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mrd_movement` (
  `ID` int(10) NOT NULL AUTO_INCREMENT,
  `company_id` int(11) NOT NULL,
  `branch_id` int(11) NOT NULL,
  `Fin_Year` int(4) NOT NULL,
  `IPID` int(6) NOT NULL,
  `DTOI` datetime NOT NULL,
  `Purpose_Of_Issue` varchar(20) NOT NULL,
  `Person_To_Whom_Issued` varchar(30) NOT NULL,
  `Issue_Remarks` varchar(50) NOT NULL,
  `DTOR` datetime NOT NULL,
  `Person_Who_Returned` varchar(30) NOT NULL,
  `Return_Remarks` varchar(50) NOT NULL,
  `Flag` enum('ISSUED','RETURNED') NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedAt` datetime NOT NULL,
  `ModifiedBy` varchar(10) NOT NULL,
  `ModifiedAt` datetime NOT NULL,
  PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mrd_movement`
--

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

--
-- Table structure for table `multi_lengual_instruction_master`
--

DROP TABLE IF EXISTS `multi_lengual_instruction_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `multi_lengual_instruction_master` (
  `mli_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `mli_grp` varchar(6) NOT NULL,
  `mli_dept` varchar(5) NOT NULL,
  `mli_doctor` int(11) NOT NULL,
  `mli_inst_code` varchar(20) NOT NULL,
  `mli_language_code` varchar(6) NOT NULL,
  `mli_instruction` text CHARACTER SET utf8 NOT NULL,
  `is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`mli_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5730 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `multi_lengual_instruction_master`
--

LOCK TABLES `multi_lengual_instruction_master` WRITE;
/*!40000 ALTER TABLE `multi_lengual_instruction_master` DISABLE KEYS */;
INSERT INTO `multi_lengual_instruction_master` VALUES (1,0,0,'RXINS','GEN',0,'mdose','GUJ','સવારે','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(2,0,0,'RXINS','GEN',0,'ndose','GUJ','બપોરે','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(3,0,0,'RXINS','GEN',0,'edose','GUJ','સાંજે','Y','thims','2020-01-21 00:00:00','thims','0000-00-00 00:00:00'),(4,0,0,'RXINS','GEN',0,'day','GUJ','દિવસ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(5,0,0,'RXINS','GEN',0,'day1','GUJ','રોજ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(6,0,0,'RXINS','GEN',0,'week','GUJ','અઠવાડિયા','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(7,0,0,'RXINS','GEN',0,'month','GUJ','મહિના','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(8,0,0,'RXINS','GEN',0,'year','GUJ','વર્ષ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(9,0,0,'RXINS','GEN',0,'saturday','GUJ','શનિવાર','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(10,0,0,'RXINS','GEN',0,'sunday','GUJ','રવિવાર','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(11,0,0,'RXINS','GEN',0,'monday','GUJ','સોમવાર','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(12,0,0,'RXINS','GEN',0,'friday','GUJ','શુક્રવાર','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(13,0,0,'RXINS','GEN',0,'to','GUJ','થી','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(14,0,0,'RXINS','GEN',0,'fifteen_days','GUJ','પખવાડિયા','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(15,0,0,'RXINS','GEN',0,'once_in_15_days','GUJ','દર 15 દિવસમાં એકવાર','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(16,0,0,'RXINS','GEN',0,'every','GUJ','દર','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(17,0,0,'RXINS','GEN',0,'three_day_week','GUJ','અઠવાડિયા માં ૩ વાર','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(18,0,0,'RXINS','GEN',0,'two_day_week','GUJ','અઠવાડિયા માં 2 વાર','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(19,0,0,'RXINS','GEN',0,'sos','GUJ','જરુર પડે ત્યારે\'','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(20,0,0,'RXINS','GEN',0,'mdose','HIN','सुबह','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(21,0,0,'RXINS','GEN',0,'ndose','HIN','दुपहर','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(22,0,0,'RXINS','GEN',0,'edose','HIN','शाम','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(23,0,0,'RXINS','GEN',0,'day','HIN','दिन','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(24,0,0,'RXINS','GEN',0,'day1','HIN','दिन','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(25,0,0,'RXINS','GEN',0,'week','HIN','हफ्ते','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(26,0,0,'RXINS','GEN',0,'month','HIN','महीने','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(27,0,0,'RXINS','GEN',0,'year','HIN','साल','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(28,0,0,'RXINS','GEN',0,'saturday','HIN','शनिवार','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(29,0,0,'RXINS','GEN',0,'sunday','HIN','रविवार','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(30,0,0,'RXINS','GEN',0,'monday','HIN','सोमवार','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(31,0,0,'RXINS','GEN',0,'friday','HIN','शुक्रवार','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(32,0,0,'RXINS','GEN',0,'to','HIN','से','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(33,0,0,'RXINS','GEN',0,'fifteen_days','HIN','पखवाडा','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(34,0,0,'RXINS','GEN',0,'once_in_15_days','HIN','हर 15 दिन में एक बार','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(35,0,0,'RXINS','GEN',0,'every','HIN','हर','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(36,0,0,'RXINS','GEN',0,'three_day_week','HIN','हप्ते में ३ दिन','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(37,0,0,'RXINS','GEN',0,'two_day_week','HIN','हप्ते में २ दिन','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(38,0,0,'RXINS','GEN',0,'sos','HIN','जरूरत पड़ने पर','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(39,0,0,'RXINS','GEN',0,'mdose','ENG','Morning','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(40,0,0,'RXINS','GEN',0,'ndose','ENG','Noon','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(41,0,0,'RXINS','GEN',0,'edose','ENG','Evening','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(42,0,0,'RXINS','GEN',0,'day','ENG','Days','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(43,0,0,'RXINS','GEN',0,'day1','ENG','Day','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(44,0,0,'RXINS','GEN',0,'week','ENG','Weeks','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(45,0,0,'RXINS','GEN',0,'month','ENG','Months','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(46,0,0,'RXINS','GEN',0,'year','ENG','Year','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(47,0,0,'RXINS','GEN',0,'saturday','ENG','Saturday','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(48,0,0,'RXINS','GEN',0,'sunday','ENG','Sunday','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(49,0,0,'RXINS','GEN',0,'monday','ENG','Monday','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(50,0,0,'RXINS','GEN',0,'friday','ENG','Friday','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(51,0,0,'RXINS','GEN',0,'to','ENG','to','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(52,0,0,'RXINS','GEN',0,'fifteen_days','ENG','Fortnights','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(53,0,0,'RXINS','GEN',0,'once_in_15_days','ENG','Once every 15 days','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(54,0,0,'RXINS','GEN',0,'every','ENG','Every','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(55,0,0,'RXINS','GEN',0,'three_day_week','ENG','Three days week','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(56,0,0,'RXINS','GEN',0,'two_day_week','ENG','Two days week','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(57,0,0,'RXINS','GEN',0,'sos','ENG','If needed','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(58,0,0,'RXINS','GEN',0,'saturday','ENG','Saturday','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(59,0,0,'RXINS','GEN',0,'mdose','MAR','सकाळ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(60,0,0,'RXINS','GEN',0,'ndose','MAR','दुपार','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(61,0,0,'RXINS','GEN',0,'edose','MAR','संध्याकाळ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(62,0,0,'RXINS','GEN',0,'day','MAR','दिवस','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(63,0,0,'RXINS','GEN',0,'day1','MAR','दिवस','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(64,0,0,'RXINS','GEN',0,'week','MAR','आठवडे','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(65,0,0,'RXINS','GEN',0,'month','MAR','महिने','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(66,0,0,'RXINS','GEN',0,'year','MAR','वर्ष','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(67,0,0,'RXINS','GEN',0,'sunday','MAR','रविवारी','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(68,0,0,'RXINS','GEN',0,'monday','MAR','सोमवार','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(69,0,0,'RXINS','GEN',0,'friday','MAR','शुक्रवार','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(70,0,0,'RXINS','GEN',0,'to','MAR','करण्यासाठी','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(71,0,0,'RXINS','GEN',0,'fifteen_days','MAR','दर पंधरवड्याला','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(72,0,0,'RXINS','GEN',0,'once_in_15_days','MAR','\r\nदर 15 दिवसांनी एकदा','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(73,0,0,'RXINS','GEN',0,'every','MAR','प्रत्येक','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(74,0,0,'RXINS','GEN',0,'three_day_week','MAR','आठवड्यातून तीन दिवस','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(75,0,0,'RXINS','GEN',0,'two_day_week','MAR','आठवड्यातून दोन दिवस','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(76,0,0,'RXINS','GEN',0,'sos','MAR','गरज असल्यास','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(77,0,0,'RXINS','GEN',0,'saturday','MAR','शनिवार','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(90,0,0,'RXINS','GEN',0,'mdose','TEL','\r\nఉదయం','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(91,0,0,'RXINS','GEN',0,'ndose','TEL','మధ్యాహ్నం','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(92,0,0,'RXINS','GEN',0,'edose','TEL','సాయంత్రం','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(93,0,0,'RXINS','GEN',0,'day','TEL','రోజులు','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(94,0,0,'RXINS','GEN',0,'day1','TEL','రోజు\r\n','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(95,0,0,'RXINS','GEN',0,'week','TEL','వారం','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(96,0,0,'RXINS','GEN',0,'month','TEL','నెల','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(97,0,0,'RXINS','GEN',0,'year','TEL','సంవత్సరం','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(98,0,0,'RXINS','GEN',0,'sunday','TEL','\r\nఆదివారం','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(99,0,0,'RXINS','GEN',0,'monday','TEL','సోమవారం','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(100,0,0,'RXINS','GEN',0,'friday','TEL','\r\nశుక్రవారం','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(101,0,0,'RXINS','GEN',0,'to','TEL','కు\r\n','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(102,0,0,'RXINS','GEN',0,'fifteen_days','TEL','ప్రతి రెండు వారాలకు','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(103,0,0,'RXINS','GEN',0,'once_in_15_days','TEL','ప్రతి 15 రోజులకు ఒకసారి','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(104,0,0,'RXINS','GEN',0,'every','TEL','ప్రతి','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(105,0,0,'RXINS','GEN',0,'three_day_week','TEL','వారానికి మూడు రోజులు','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(106,0,0,'RXINS','GEN',0,'two_day_week','TEL','వారానికి రెండు రోజులు','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(107,0,0,'RXINS','GEN',0,'sos','TEL','అవసరం అయితే','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(108,0,0,'RXINS','GEN',0,'saturday','TEL','శనివారం','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(121,0,0,'RXINS','GEN',0,'mdose','PUN','ਸਵੇਰ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(122,0,0,'RXINS','GEN',0,'ndose','PUN','ਦੁਪਹਿਰ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(123,0,0,'RXINS','GEN',0,'edose','PUN','\r\nਸ਼ਾਮ ਨੂੰ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(124,0,0,'RXINS','GEN',0,'day','PUN','ਦਿਨ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(125,0,0,'RXINS','GEN',0,'day1','PUN','\r\nਦਿਨ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(126,0,0,'RXINS','GEN',0,'week','PUN','ਹਫ਼ਤੇ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(127,0,0,'RXINS','GEN',0,'month','PUN','ਮਹੀਨੇ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(128,0,0,'RXINS','GEN',0,'year','PUN','ਸਾਲ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(129,0,0,'RXINS','GEN',0,'sunday','PUN','ਐਤਵਾਰ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(130,0,0,'RXINS','GEN',0,'monday','PUN','ਸੋਮਵਾਰ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(131,0,0,'RXINS','GEN',0,'friday','PUN','ਸ਼ੁੱਕਰਵਾਰ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(132,0,0,'RXINS','GEN',0,'to','PUN','ਨੂੰ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(133,0,0,'RXINS','GEN',0,'fifteen_days','PUN','ਹਰ ਦੋ ਹਫ਼ਤਿਆਂ ਬਾਅਦ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(134,0,0,'RXINS','GEN',0,'once_in_15_days','PUN','ਹਰ 15 ਦਿਨਾਂ ਵਿਚ ਇਕ ਵਾਰ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(135,0,0,'RXINS','GEN',0,'every','PUN','ਹਰ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(136,0,0,'RXINS','GEN',0,'three_day_week','PUN','\r\nਤਿੰਨ ਦਿਨ ਹਫ਼ਤੇ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(137,0,0,'RXINS','GEN',0,'two_day_week','PUN','ਦੋ ਦਿਨ ਹਫ਼ਤੇ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(138,0,0,'RXINS','GEN',0,'sos','PUN','\r\nਜੇ ਲੋੜ ਹੋਵੇ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(139,0,0,'RXINS','GEN',0,'saturday','PUN','ਸ਼ਨੀਵਾਰ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(152,0,0,'RXINS','GEN',0,'followup_date','GUJ','ફરી બતાવવાની તારીખ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(153,0,0,'RXINS','GEN',0,'followup_date','HIN','फिर से दिखाने की तारीख','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(154,0,0,'RXINS','GEN',0,'followup_date','ENG','Followup Date','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(155,0,0,'RXINS','GEN',0,'followup_date','MAR','पाठपुरावा तारीख','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(156,0,0,'RXINS','GEN',0,'followup_date','TEL','అనుసరణీయత','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(157,0,0,'RXINS','GEN',0,'followup_date','PUN','ਪੈਰਵਾਈ ਮਿਤੀ','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(5200,0,0,'MINST','GEN',0,'1','ENG','AFTER BREAKFAST','Y','mitesh','2023-07-24 19:30:14','mitesh','2023-07-24 19:30:25'),(5201,0,0,'MINST','GEN',0,'1','GUJ','નાસ્તા પછી','Y','mitesh','2023-07-24 19:30:25','','0000-00-00 00:00:00'),(5202,0,0,'MINST','GEN',0,'1','HIN','नाश्ते के बाद','Y','mitesh','2023-07-24 19:30:25','','0000-00-00 00:00:00'),(5203,0,0,'MINST','GEN',0,'2','ENG','IM STAT','Y','mitesh','2023-07-24 19:35:20','','0000-00-00 00:00:00'),(5204,0,0,'MINST','GEN',0,'3','ENG','AFTER BREAKFAST AND DINNER','Y','mitesh','2023-07-24 19:35:25','mitesh','2023-07-24 19:35:44'),(5205,0,0,'MINST','GEN',0,'3','GUJ','બ્રેકફાસ્ટ અને ડિનર પછી','Y','mitesh','2023-07-24 19:35:44','','0000-00-00 00:00:00'),(5206,0,0,'MINST','GEN',0,'3','HIN','नाश्ते और रात के खाने के बाद','Y','mitesh','2023-07-24 19:35:44','','0000-00-00 00:00:00'),(5207,0,0,'MINST','GEN',0,'4','ENG','DILUTE WITH 600 ML (3 GLASS) WATER AND DRINK ONE GLASS HOURLY','Y','mitesh','2023-07-24 19:35:50','mitesh','2023-07-24 20:04:27'),(5208,0,0,'MINST','GEN',0,'5','ENG','BEFORE BREAKFAST AND BEFORE DINNER','Y','mitesh','2023-07-24 19:35:58','mitesh','2023-07-25 13:30:54'),(5209,0,0,'MINST','GEN',0,'5','GUJ','સવારે નાસ્તા  પહેલાં અને રાત્રે ભોજન પહેલાં','Y','mitesh','2023-07-24 19:35:58','mitesh','2023-07-25 13:30:54'),(5210,0,0,'MINST','GEN',0,'5','HIN','नाश्ते से पहले और रात के खाने से पहले','Y','mitesh','2023-07-24 19:35:58','mitesh','2023-07-25 13:30:54'),(5211,0,0,'MINST','GEN',0,'6','ENG','30 MINUTE BEFORE BREAKFAST','Y','mitesh','2023-07-24 20:03:32','mitesh','2023-07-25 16:29:06'),(5212,0,0,'MINST','GEN',0,'7','ENG','( AFTER MEAL )','Y','mitesh','2023-07-24 20:03:40','','0000-00-00 00:00:00'),(5213,0,0,'MINST','GEN',0,'7','GUJ','(ભોજન પછી)','Y','mitesh','2023-07-24 20:03:40','','0000-00-00 00:00:00'),(5214,0,0,'MINST','GEN',0,'7','HIN','( भोजन के बाद )','Y','mitesh','2023-07-24 20:03:40','','0000-00-00 00:00:00'),(5215,0,0,'MINST','GEN',0,'4','GUJ','600 ML (3 ગ્લાસ) પાણીથી પાતળું કરો અને કલાક દીઠ એક ગ્લાસ પીવો','Y','mitesh','2023-07-24 20:04:27','','0000-00-00 00:00:00'),(5216,0,0,'MINST','GEN',0,'4','HIN','600 एमएल (3 गिलास) पानी में घोलें और हर घंटे एक गिलास पियें','Y','mitesh','2023-07-24 20:04:27','','0000-00-00 00:00:00'),(5217,0,0,'MINST','GEN',0,'8','ENG','AFTER LUNCH','Y','mitesh','2023-07-24 20:04:38','mitesh','2023-07-24 20:26:53'),(5218,0,0,'PLAN','GEN',0,'1','ENG','PLENTY OF FLUID ORALLY LIKE LIMBOO-PANI,FRUIT JUICE','Y','mitesh','2023-07-24 20:06:22','mitesh','2023-07-25 13:39:29'),(5219,0,0,'PLAN','GEN',0,'1','GUJ','વધારે પ્રવાહી પીવું જેવુ કે લીંબુ શરબત,કોઈ પણ ફ્રૂટ જ્યુસ','Y','mitesh','2023-07-24 20:06:22','mitesh','2023-07-25 13:39:29'),(5220,0,0,'PLAN','GEN',0,'1','HIN','मौखिक रूप से प्रचुर मात्रा में तरल पदार्थ','Y','mitesh','2023-07-24 20:06:22','mitesh','2023-07-25 13:39:29'),(5221,0,0,'MINST','GEN',0,'8','GUJ','બપોરના ભોજન પછી','Y','mitesh','2023-07-24 20:26:53','','0000-00-00 00:00:00'),(5222,0,0,'MINST','GEN',0,'8','HIN','दोपहर के भोजन के बाद','Y','mitesh','2023-07-24 20:26:53','','0000-00-00 00:00:00'),(5223,0,0,'MINST','GEN',0,'9','ENG','After dinner','Y','mitesh','2023-07-24 20:27:07','mitesh','2023-07-25 16:24:19'),(5224,0,0,'MINST','GEN',0,'6','GUJ','નાસ્તાના 30 મિનિટ પહેલા ','Y','mitesh','2023-07-24 20:27:50','mitesh','2023-07-25 16:29:06'),(5225,0,0,'MINST','GEN',0,'6','HIN','नाश्ते से पहले ','Y','mitesh','2023-07-24 20:27:50','mitesh','2023-07-25 16:29:06'),(5226,0,0,'MINST','GEN',0,'10','ENG','1/2 TABLET FOR FIRST 2 DAYS THEN 1 TABLET AFTER DINNER','Y','mitesh','2023-07-24 20:28:07','mitesh','2023-07-25 13:33:36'),(5227,0,0,'MINST','GEN',0,'9','GUJ','જમ્યા પછી','Y','mitesh','2023-07-24 20:28:34','mitesh','2023-07-25 16:24:19'),(5228,0,0,'MINST','GEN',0,'9','HIN','रात के खाने के बाद','Y','mitesh','2023-07-24 20:28:34','mitesh','2023-07-25 16:24:19'),(5229,0,0,'MINST','GEN',0,'10','GUJ','પ્રથમ 2 દિવસ માટે 1/2 ટેબ્લેટ પછી રાત્રિભોજન પછી 1 ટેબ્લેટ','Y','mitesh','2023-07-25 13:33:36','','0000-00-00 00:00:00'),(5230,0,0,'MINST','GEN',0,'10','HIN','पहले 2 दिनों के लिए 1/2 गोली, फिर रात के खाने के बाद 1 गोली','Y','mitesh','2023-07-25 13:33:36','','0000-00-00 00:00:00'),(5231,0,0,'MINST','GEN',0,'11','ENG','DILUTE WITH 1 GLASS OF WATER AND DRINK','Y','mitesh','2023-07-25 13:35:35','','0000-00-00 00:00:00'),(5232,0,0,'MINST','GEN',0,'11','GUJ','1 ગ્લાસ પાણીથી ઓગાળીને પીવું ','Y','mitesh','2023-07-25 13:35:35','','0000-00-00 00:00:00'),(5233,0,0,'MINST','GEN',0,'11','HIN','1 गिलास पानी में घोलकर पियें','Y','mitesh','2023-07-25 13:35:35','','0000-00-00 00:00:00'),(5234,0,0,'PLAN','GEN',0,'2','ENG','DONOT EAT SUGAR,JAGGERY OR ANY ITEMS WHICH CONTAIN SUGAR','Y','mitesh','2023-07-25 13:43:17','','0000-00-00 00:00:00'),(5235,0,0,'PLAN','GEN',0,'2','GUJ','ભાત ઓછા ખાવા. ખાંડ અને ગોળ કે એમાંથી બનેલી કોઈપણ પ્રકારની મિઠાઈ બિલકુલ ના ખાવી. બટાકા સિવાય ના બધાજ શાકભાજી પૂરતા પ્રમાણ માં લેઇ શકાય. કેળા,કેરી, ચીકુ સિવાય ના બધાજ ફળ ફરાદી ખાઈ શકાય. ઉપરોક્ત ખાવાપીવાની માહિતી કરતા પણ ડાયાબિટસવાળા વ્યક્તિ માટે દરરોજ ઓછામાં ઓછી 30 મિનીટ કસરત જેવી કે ચાલવું, દોડવું, સાઈકલ ચલાવવી,રમત રમવી, સ્વિમિંગ કરવુ વધુ આવશ્યક છે.','Y','mitesh','2023-07-25 13:43:17','','0000-00-00 00:00:00'),(5236,0,0,'MINST','GEN',0,'12','ENG','2ML IV STAT','Y','mitesh','2023-07-26 17:40:18','mitesh','2023-07-26 18:06:52'),(5237,0,0,'MINST','GEN',0,'13','ENG','1 TAB STAT','Y','mitesh','2023-07-26 17:40:22','mitesh','2023-07-26 18:07:03'),(5238,0,0,'MINST','GEN',0,'14','ENG','1 TAB STAT','Y','mitesh','2023-07-26 17:40:30','mitesh','2023-07-26 18:07:14'),(5239,0,0,'MINST','GEN',0,'15','ENG','iv stat','Y','mitesh','2023-07-26 17:40:35','','0000-00-00 00:00:00'),(5240,0,0,'MINST','GEN',0,'16','ENG','BEFORE BREAKFAST','Y','mitesh','2023-07-26 18:02:20','mitesh','2023-07-26 18:21:25'),(5241,0,0,'MINST','GEN',0,'17','ENG','BEFORE MEAL','Y','mitesh','2023-07-26 18:20:58','mitesh','2023-08-01 21:44:13'),(5242,0,0,'MINST','GEN',0,'16','GUJ','નાસ્તા પહેલાં','Y','mitesh','2023-07-26 18:21:25','','0000-00-00 00:00:00'),(5243,0,0,'MINST','GEN',0,'16','HIN','नाश्ते से पहले','Y','mitesh','2023-07-26 18:21:25','','0000-00-00 00:00:00'),(5244,0,0,'MINST','GEN',0,'18','ENG',' APPLY ON LOCAL PART AS PER ADVICE','Y','mitesh','2023-07-26 18:21:35','mitesh','2023-07-27 19:03:29'),(5245,0,0,'MINST','GEN',0,'19','ENG','@ 50ML/HR','Y','mitesh','2023-07-26 20:53:37','','0000-00-00 00:00:00'),(5246,0,0,'MINST','GEN',0,'20','ENG','IN RL','Y','mitesh','2023-07-26 20:53:41','','0000-00-00 00:00:00'),(5247,0,0,'PLAN','GEN',0,'3','ENG','NO TREATMENT REQUIRED','Y','mitesh','2023-07-27 10:48:38','','0000-00-00 00:00:00'),(5248,0,0,'PLAN','GEN',0,'3','GUJ','કોઈ સારવાર જરૂરી નથી','Y','mitesh','2023-07-27 10:48:38','','0000-00-00 00:00:00'),(5249,0,0,'PLAN','GEN',0,'3','HIN','किसी उपचार की आवश्यकता नहीं','Y','mitesh','2023-07-27 10:48:38','','0000-00-00 00:00:00'),(5250,0,0,'PLAN','GEN',0,'4','ENG','REGULAR WALKING OR ANY exercise MINIMUM 30 MINUTE PER DAY 5 DAYS OF WEEK','Y','mitesh','2023-07-27 10:50:01','','0000-00-00 00:00:00'),(5251,0,0,'PLAN','GEN',0,'4','GUJ','નિયમિત ચાલવું અથવા કોઈપણ કસરત અઠવાડિયાના 5 દિવસ દીઠ ઓછામાં ઓછી 30 મિનિટ','Y','mitesh','2023-07-27 10:50:01','','0000-00-00 00:00:00'),(5252,0,0,'PLAN','GEN',0,'4','HIN','सप्ताह के 5 दिन नियमित रूप से पैदल चलना या कोई व्यायाम न्यूनतम 30 मिनट प्रतिदिन','Y','mitesh','2023-07-27 10:50:01','','0000-00-00 00:00:00'),(5253,0,0,'MINST','GEN',0,'21','ENG','FOR L/A','Y','mitesh','2023-07-27 11:19:14','','0000-00-00 00:00:00'),(5254,0,0,'MINST','GEN',0,'22','ENG','FOR L/A 2 TIMES A DAY','Y','mitesh','2023-07-27 11:19:51','','0000-00-00 00:00:00'),(5255,0,0,'PLAN','GEN',0,'5','ENG','PATIENT CAN BE TAKEN TO SURGERY UNDER S.A/L.A/G.A WITH DUE RISK OF ANESTHESIA AND SURGERY','Y','mitesh','2023-07-27 18:19:42','','0000-00-00 00:00:00'),(5256,0,0,'PLAN','GEN',0,'5','GUJ','PATIENT CAN BE TAKEN TO SURGERY UNDER S.A/L.A/G.A WITH DUE RISK OF ANESTHESIA AND SURGERY','Y','mitesh','2023-07-27 18:19:42','','0000-00-00 00:00:00'),(5257,0,0,'PLAN','GEN',0,'5','HIN','PATIENT CAN BE TAKEN TO SURGERY UNDER S.A/L.A/G.A WITH DUE RISK OF ANESTHESIA AND SURGERY','Y','mitesh','2023-07-27 18:19:42','','0000-00-00 00:00:00'),(5258,0,0,'MINST','GEN',0,'23','ENG','IN 40ML NS IV @ ACC TO BP','Y','mitesh','2023-07-27 18:38:40','','0000-00-00 00:00:00'),(5259,0,0,'MINST','GEN',0,'18','GUJ','સલાહ મુજબ સ્થાનિક ભાગ પર લગાઓ ','Y','mitesh','2023-07-27 19:03:29','','0000-00-00 00:00:00'),(5260,0,0,'MINST','GEN',0,'18','HIN','सलाह के अनुसार स्थानीय भाग पर आवेदन करें','Y','mitesh','2023-07-27 19:03:29','','0000-00-00 00:00:00'),(5261,0,0,'MINST','GEN',0,'24','ENG','p/v at hs before sleep','Y','mitesh','2023-07-27 19:16:13','mitesh','2023-08-12 10:33:38'),(5262,0,0,'MINST','GEN',0,'25','ENG','1 TABLET SOS IF HEADACHE','Y','mitesh','2023-07-27 19:17:03','','0000-00-00 00:00:00'),(5263,0,0,'MINST','GEN',0,'25','GUJ','માથાનો દુખાવો હોય તો 1 ટેબ્લેટ લેવી ','Y','mitesh','2023-07-27 19:17:03','','0000-00-00 00:00:00'),(5264,0,0,'MINST','GEN',0,'25','HIN','सिरदर्द होने पर 1 टेबलेट लेनी है ','Y','mitesh','2023-07-27 19:17:03','','0000-00-00 00:00:00'),(5265,0,0,'MINST','GEN',0,'26','ENG','@ 100ML/HR','Y','mitesh','2023-07-29 13:39:23','','0000-00-00 00:00:00'),(5266,0,0,'MINST','GEN',0,'27','ENG','IN R.L','Y','mitesh','2023-07-29 13:39:36','','0000-00-00 00:00:00'),(5267,0,0,'MINST','GEN',0,'28','ENG','IN DNS','Y','mitesh','2023-07-29 13:39:40','','0000-00-00 00:00:00'),(5268,0,0,'MINST','GEN',0,'29','ENG','1 TABLET SOS IF FEVER','Y','mitesh','2023-07-29 13:40:24','','0000-00-00 00:00:00'),(5270,0,0,'MINST','GEN',0,'31','ENG','WITH NUROKIND @ 50 ML/HR','Y','mitesh','2023-07-30 23:13:51','','0000-00-00 00:00:00'),(5271,0,0,'MINST','GEN',0,'32','ENG','NEBULIZATION','Y','mitesh','2023-07-30 23:15:07','','0000-00-00 00:00:00'),(5272,0,0,'MINST','GEN',0,'33','ENG','STAT NEB','Y','mitesh','2023-07-30 23:16:25','','0000-00-00 00:00:00'),(5273,0,0,'MINST','GEN',0,'34','ENG','IU BEFORE MEAL','Y','mitesh','2023-07-31 11:59:51','','0000-00-00 00:00:00'),(5274,0,0,'MINST','GEN',0,'35','ENG','DILUTE IN 10ML NS','Y','mitesh','2023-07-31 22:09:42','','0000-00-00 00:00:00'),(5275,0,0,'MINST','GEN',0,'36','ENG','DILUE WITH 4ML THEN 2ML IV BD','Y','mitesh','2023-07-31 22:11:41','','0000-00-00 00:00:00'),(5276,0,0,'MINST','GEN',0,'37','ENG','1.5ML SOS','Y','mitesh','2023-07-31 22:12:03','','0000-00-00 00:00:00'),(5277,0,0,'MINST','GEN',0,'38','ENG','WITH MVI @ 50ML/HR','Y','mitesh','2023-07-31 22:12:46','','0000-00-00 00:00:00'),(5278,0,0,'MINST','GEN',0,'39','ENG','1.5ML SOS IF VOMITING','Y','mitesh','2023-07-31 22:13:42','','0000-00-00 00:00:00'),(5279,0,0,'MINST','GEN',0,'40','ENG','aft','Y','mitesh','2023-08-01 19:27:00','','0000-00-00 00:00:00'),(5280,0,0,'MINST','GEN',0,'41','ENG','BEFO','Y','mitesh','2023-08-01 21:43:47','','0000-00-00 00:00:00'),(5281,0,0,'MINST','GEN',0,'17','GUJ','ભોજન પહેલાં','Y','mitesh','2023-08-01 21:44:13','','0000-00-00 00:00:00'),(5282,0,0,'MINST','GEN',0,'17','HIN','भोजन से पहले','Y','mitesh','2023-08-01 21:44:13','','0000-00-00 00:00:00'),(5283,0,0,'MINST','GEN',0,'42','ENG','WITH MVI @ 100ML/HR','Y','mitesh','2023-08-02 11:11:46','','0000-00-00 00:00:00'),(5284,0,0,'MINST','GEN',0,'43','ENG','WITH MVI @ 1000ML/HR','Y','mitesh','2023-08-02 11:11:54','','0000-00-00 00:00:00'),(5285,0,0,'MINST','GEN',0,'44','ENG','WITH NUROKIND @ 100 ML/HR','Y','mitesh','2023-08-03 10:45:45','','0000-00-00 00:00:00'),(5286,0,0,'MINST','GEN',0,'45','ENG','1/2 TAB SOS IF FEVER','Y','mitesh','2023-08-03 13:47:02','','0000-00-00 00:00:00'),(5287,0,0,'MINST','GEN',0,'46','ENG','WITH MVI @ 80ML/HR','Y','mitesh','2023-08-04 14:03:09','','0000-00-00 00:00:00'),(5288,0,0,'MINST','GEN',0,'47','ENG','WITH NUROKIND @ 80 ML/HR','Y','mitesh','2023-08-04 14:03:20','','0000-00-00 00:00:00'),(5289,0,0,'MINST','GEN',0,'48','ENG','1SOS IF FEVER','Y','mitesh','2023-08-04 14:04:03','','0000-00-00 00:00:00'),(5290,0,0,'MINST','GEN',0,'49','ENG','1  SOS IF FEVER','Y','mitesh','2023-08-04 14:04:34','','0000-00-00 00:00:00'),(5291,0,0,'MINST','GEN',0,'50','ENG','WITH INJ KCL ','Y','mitesh','2023-08-05 01:58:59','','0000-00-00 00:00:00'),(5292,0,0,'MINST','GEN',0,'51','ENG','@ 5ML/HR','Y','mitesh','2023-08-05 02:00:40','','0000-00-00 00:00:00'),(5293,0,0,'MINST','GEN',0,'52','ENG','WITH INJ KCL 2 AMP @ 60 ML/HR','Y','mitesh','2023-08-05 02:01:03','','0000-00-00 00:00:00'),(5294,0,0,'MINST','GEN',0,'53','ENG','DILUTE WITH 20ML NS @ ACC TO BP','Y','mitesh','2023-08-05 02:02:13','','0000-00-00 00:00:00'),(5295,0,0,'MINST','GEN',0,'54','ENG','WITH NUROKIND @ 60 ML/HR','Y','mitesh','2023-08-05 11:26:03','','0000-00-00 00:00:00'),(5296,0,0,'MINST','GEN',0,'55','ENG','WITH MVI @ 60ML/HR','Y','mitesh','2023-08-05 11:26:07','','0000-00-00 00:00:00'),(5297,0,0,'MINST','GEN',0,'56','ENG','1GM IN 100ML NS ','Y','mitesh','2023-08-05 11:27:50','','0000-00-00 00:00:00'),(5298,0,0,'MINST','GEN',0,'57','ENG','DILUTE WITH 10ML THEN 5ML IV ','Y','mitesh','2023-08-05 11:28:12','','0000-00-00 00:00:00'),(5299,0,0,'MINST','GEN',0,'58','ENG','1.5ML WITH 5ML NS IV','Y','mitesh','2023-08-05 11:28:37','','0000-00-00 00:00:00'),(5300,0,0,'MINST','GEN',0,'59','ENG','2ML WITH 8ML NS IV SOS','Y','mitesh','2023-08-05 11:28:50','','0000-00-00 00:00:00'),(5301,0,0,'MINST','GEN',0,'60','ENG','to be chewed','Y','mitesh','2023-08-05 11:29:18','darshan','2025-10-27 19:03:34'),(5302,0,0,'MINST','GEN',0,'61','ENG','5ML BD','Y','mitesh','2023-08-05 11:30:15','','0000-00-00 00:00:00'),(5303,0,0,'MINST','GEN',0,'62','ENG','5ML SOS IF ABD PAIN','Y','mitesh','2023-08-05 11:30:24','','0000-00-00 00:00:00'),(5304,0,0,'MINST','GEN',0,'63','ENG','INSERT IN BOTH EYE 2 DROP 4 TIMES A DAY','Y','mitesh','2023-08-05 11:33:20','','0000-00-00 00:00:00'),(5305,0,0,'MINST','GEN',0,'64','ENG','2 TA','Y','mitesh','2023-08-07 11:45:56','','0000-00-00 00:00:00'),(5306,0,0,'MINST','GEN',0,'65','ENG','2 TABLE SPOON POWDER DILUTE WITH 1 GLASS OF WATER AND DRINK AT NIGHT BEFORE SLEEP','Y','mitesh','2023-08-07 11:46:27','','0000-00-00 00:00:00'),(5307,0,0,'MINST','GEN',0,'65','GUJ','2 ટેબલ સ્પૂન પાઉડરને 1 ગ્લાસ પાણીમાં પાતળો કરો અને રાત્રે સૂતા પહેલા પીવો','Y','mitesh','2023-08-07 11:46:27','','0000-00-00 00:00:00'),(5308,0,0,'MINST','GEN',0,'65','HIN','2 टेबल स्पून पाउडर को 1 गिलास पानी में घोलकर रात को सोने से पहले पियें','Y','mitesh','2023-08-07 11:46:27','','0000-00-00 00:00:00'),(5309,0,0,'MINST','GEN',0,'66','ENG','sos','Y','jaydeep','2023-08-07 17:54:21','','0000-00-00 00:00:00'),(5310,0,0,'MINST','GEN',0,'67','ENG','at sleep','Y','jaydeep','2023-08-07 17:56:52','','0000-00-00 00:00:00'),(5311,0,0,'PLAN','GEN',0,'6','ENG','SRD','Y','mitesh','2023-08-07 18:09:32','','0000-00-00 00:00:00'),(5312,0,0,'PLAN','GEN',0,'6','GUJ','અથાણા, ફરસાણ, પાપડ બંધ કરવા, ઉપરથી નખતા મીઠું વાપરવુ નહી. લીલા શાકભાજી ,કચુંબર , ફળો વધુ લો. મીઠું , તેલ , ઘી,ચરબી વાળો ખોરાક ઓછા ખાવા. પૂરતી ઉંઘ લેવી. વજન ઉતારવું. તમારી ઊંચાઈ મુજબ નુ વજન જાળવી રાખવું.(IDEA BMI <23) દરરોજ કસરત કે યોગા કરવા. ડોક્ટર ની સલાહ મુજબ દવા લેવી અને ડોક્ટર ની સલાહ વગર દવા બંધ ના કરવી.. નિયમિત લોહી ના રિપોર્ટ જેવા કે સ.લિપિડ પ્રોફાઇલ, સ. creatinine,RBS કરાવવા','Y','mitesh','2023-08-07 18:09:32','','0000-00-00 00:00:00'),(5313,0,0,'PLAN','GEN',0,'6','HIN','नमक, तेल, घी कम खाते हैं। अधिक फल खाएं पर्याप्त नींद लें। अपने वजन को कम करें।अपनी ऊंचाई के अनुसार अपना वजन बनाए रखें। प्रतिदिन या योगाभ्यास करें। डॉक्टर की सलाह के अनुसार दवाएँ लें और डॉक्टर की सलाह के बिना दवा बंद न करें। नियमित रक्त रिपोर्ट जैसे कि एस.लिफिड प्रोफाइल, एस। क्रिएटिनिन, आरबीएस','Y','mitesh','2023-08-07 18:09:32','','0000-00-00 00:00:00'),(5314,0,0,'MINST','GEN',0,'68','ENG','iv bd','Y','mitesh','2023-08-07 19:29:36','','0000-00-00 00:00:00'),(5315,0,0,'MINST','GEN',0,'69','ENG','DILUE WITH 4ML THEN 1.4ML IV BD','Y','pravin','2023-08-08 16:22:33','','0000-00-00 00:00:00'),(5316,0,0,'MINST','GEN',0,'70','ENG','0.9ML WITH 5ML NS IV','Y','pravin','2023-08-08 16:24:04','','0000-00-00 00:00:00'),(5317,0,0,'MINST','GEN',0,'71','ENG','0.5ML WITH 5ML NS IV','Y','pravin','2023-08-08 16:28:20','','0000-00-00 00:00:00'),(5318,0,0,'MINST','GEN',0,'72','ENG','WITH NUROKIND @ 30 ML/HR','Y','pravin','2023-08-08 16:33:48','','0000-00-00 00:00:00'),(5319,0,0,'MINST','GEN',0,'73','ENG','3ml sos','Y','pravin','2023-08-08 16:34:37','','0000-00-00 00:00:00'),(5320,0,0,'MINST','GEN',0,'74','ENG','2ML BD','Y','pravin','2023-08-08 16:35:58','','0000-00-00 00:00:00'),(5321,0,0,'MINST','GEN',0,'75','ENG','DILUE WITH 4ML THEN 1 ML IV BD','Y','pravin','2023-08-09 00:46:43','','0000-00-00 00:00:00'),(5322,0,0,'MINST','GEN',0,'76','ENG','1ML SOS IF VOMITING','Y','pravin','2023-08-09 00:47:27','','0000-00-00 00:00:00'),(5323,0,0,'MINST','GEN',0,'77','ENG','1ML WITH 4ML NS IV','Y','pravin','2023-08-09 00:48:29','','0000-00-00 00:00:00'),(5324,0,0,'MINST','GEN',0,'78','ENG','WITH NUROKIND @ 70 ML/HR','Y','pravin','2023-08-09 00:49:32','','0000-00-00 00:00:00'),(5325,0,0,'MINST','GEN',0,'79','ENG','WITH MVI @ 70ML/HR','Y','pravin','2023-08-09 00:50:28','','0000-00-00 00:00:00'),(5326,0,0,'MINST','GEN',0,'80','ENG','( AFTER MEAL )5ML BD','Y','pravin','2023-08-09 09:41:54','','0000-00-00 00:00:00'),(5327,0,0,'MINST','GEN',0,'81','ENG','with mvi','Y','mitesh','2023-08-11 09:58:57','','0000-00-00 00:00:00'),(5328,0,0,'MINST','GEN',0,'82','ENG','with inj supridol','Y','mitesh','2023-08-11 09:59:10','','0000-00-00 00:00:00'),(5329,0,0,'MINST','GEN',0,'83','ENG','( AFTER MEAL )15ML BD','Y','pravin','2023-08-11 19:14:21','','0000-00-00 00:00:00'),(5330,0,0,'MINST','GEN',0,'84','ENG','( AFTER MEAL )30ML BD','Y','pravin','2023-08-11 19:14:43','','0000-00-00 00:00:00'),(5331,0,0,'MINST','GEN',0,'85','ENG','SO','Y','pravin','2023-08-12 22:52:39','','0000-00-00 00:00:00'),(5332,0,0,'MINST','GEN',0,'86','ENG','WITH MVI @33ML/HR','Y','pravin','2023-08-12 22:53:01','','0000-00-00 00:00:00'),(5333,0,0,'MINST','GEN',0,'87','ENG','DILUE WITH 4ML THEN 1.2ML IV BD','Y','pravin','2023-08-12 22:55:33','','0000-00-00 00:00:00'),(5334,0,0,'MINST','GEN',0,'88','ENG','STAT','Y','mitesh','2023-08-13 11:52:09','','0000-00-00 00:00:00'),(5335,0,0,'MINST','GEN',0,'89','ENG','1 SOS IF FEVER','Y','mitesh','2023-08-13 11:54:27','','0000-00-00 00:00:00'),(5336,0,0,'MINST','GEN',0,'90','ENG','1.3ML WITH 5ML NS IV','Y','pravin','2023-08-13 18:53:51','','0000-00-00 00:00:00'),(5337,0,0,'MINST','GEN',0,'91','ENG','0.7ML WITH 5ML NS IV','Y','pravin','2023-08-13 18:54:52','','0000-00-00 00:00:00'),(5338,0,0,'MINST','GEN',0,'92','ENG','WITH NUROKIND @ 25 ML/HR','Y','pravin','2023-08-13 19:10:39','','0000-00-00 00:00:00'),(5339,0,0,'MINST','GEN',0,'93','ENG','41ML IV STAT','Y','pravin','2023-08-14 15:57:36','','0000-00-00 00:00:00'),(5340,0,0,'MINST','GEN',0,'94','ENG','2ML WITH 5ML NS IV ','Y','pravin','2023-08-14 16:01:14','','0000-00-00 00:00:00'),(5341,0,0,'MINST','GEN',0,'95','ENG','2ML WITH 8ML NS IV ','Y','pravin','2023-08-14 16:02:42','','0000-00-00 00:00:00'),(5342,0,0,'MINST','GEN',0,'96','ENG','1.8ML WITH 4ML NS IV','Y','pravin','2023-08-14 16:08:44','','0000-00-00 00:00:00'),(5343,0,0,'PLAN','GEN',0,'7','ENG','SALTY WARM WATER GARGLES','Y','mitesh','2023-08-15 08:25:20','','0000-00-00 00:00:00'),(5344,0,0,'PLAN','GEN',0,'7','GUJ','મીઠાના ગરમ પાણીના ગાર્ગલ્સ','Y','mitesh','2023-08-15 08:25:20','','0000-00-00 00:00:00'),(5345,0,0,'PLAN','GEN',0,'7','HIN','नमकीन गर्म पानी के गरारे','Y','mitesh','2023-08-15 08:25:20','','0000-00-00 00:00:00'),(5346,0,0,'MINST','GEN',0,'97','ENG','ONCE/WEEK','Y','mitesh','2023-08-15 12:03:41','','0000-00-00 00:00:00'),(5347,0,0,'MINST','GEN',0,'98','ENG','S/C STAT','Y','mitesh','2023-08-15 18:59:13','','0000-00-00 00:00:00'),(5348,0,0,'MINST','GEN',0,'99','ENG','S/C STAT','Y','mitesh','2023-08-15 18:59:26','','0000-00-00 00:00:00'),(5349,0,0,'MINST','GEN',0,'100','ENG','100MG IN 100ML NS ','Y','pravin','2023-08-16 10:44:16','','0000-00-00 00:00:00'),(5350,0,0,'MINST','GEN',0,'101','ENG','@100ML/HR','Y','mitesh','2023-08-16 21:58:56','','0000-00-00 00:00:00'),(5351,0,0,'MINST','GEN',0,'102','ENG','5ML TDS','Y','pravin','2023-08-16 23:58:59','','0000-00-00 00:00:00'),(5352,0,0,'MINST','GEN',0,'103','ENG','10ML IV BD','Y','pravin','2023-08-18 22:18:49','','0000-00-00 00:00:00'),(5353,0,0,'MINST','GEN',0,'104','ENG',' IV BD','Y','pravin','2023-08-18 22:20:14','','0000-00-00 00:00:00'),(5354,0,0,'MINST','GEN',0,'105','ENG','40ML/HR','Y','pravin','2023-08-18 22:23:50','','0000-00-00 00:00:00'),(5355,0,0,'MINST','GEN',0,'106','ENG',' IV  SOS','Y','pravin','2023-08-18 22:26:06','','0000-00-00 00:00:00'),(5356,0,0,'MINST','GEN',0,'107','ENG','10ML IV QDS','Y','pravin','2023-08-18 22:28:15','','0000-00-00 00:00:00'),(5357,0,0,'MINST','GEN',0,'108','ENG','2ML IM','Y','mitesh','2023-08-19 09:44:24','','0000-00-00 00:00:00'),(5358,0,0,'MINST','GEN',0,'109','ENG','2 ML IM ALTERNATE DAY','Y','mitesh','2023-08-19 09:45:21','','0000-00-00 00:00:00'),(5359,0,0,'MINST','GEN',0,'110','ENG','WITH MVI @ 42ML/HR','Y','pravin','2023-08-19 15:48:46','','0000-00-00 00:00:00'),(5360,0,0,'MINST','GEN',0,'111','ENG','WITH NUROKIND @ 42 ML/HR','Y','pravin','2023-08-19 15:49:25','','0000-00-00 00:00:00'),(5361,0,0,'MINST','GEN',0,'112','ENG','500MG IN 100ML NS IV BD','Y','pravin','2023-08-19 15:50:47','','0000-00-00 00:00:00'),(5362,0,0,'MINST','GEN',0,'113','ENG','0.7ML IV BD','Y','pravin','2023-08-19 15:51:53','','0000-00-00 00:00:00'),(5363,0,0,'MINST','GEN',0,'114','ENG','0.9ML WITH 2ML NS IV BD','Y','pravin','2023-08-19 15:52:50','','0000-00-00 00:00:00'),(5364,0,0,'MINST','GEN',0,'115','ENG','0.7ML WITH 3ML IV BD','Y','pravin','2023-08-19 15:52:59','','0000-00-00 00:00:00'),(5365,0,0,'MINST','GEN',0,'116','ENG','1ML WITH 4ML NS IV QDS','Y','pravin','2023-08-19 15:54:03','','0000-00-00 00:00:00'),(5366,0,0,'MINST','GEN',0,'117','ENG','3.5ML TDS','Y','pravin','2023-08-19 15:58:56','','0000-00-00 00:00:00'),(5367,0,0,'MINST','GEN',0,'118','ENG','0.5MLIV SOS IF SEVERE ITCHING','Y','pravin','2023-08-19 16:15:43','','0000-00-00 00:00:00'),(5368,0,0,'MINST','GEN',0,'119','ENG','S/C ONCE/WEEK','Y','mitesh','2023-08-19 18:38:42','','0000-00-00 00:00:00'),(5369,0,0,'MINST','GEN',0,'120','ENG','S/C ONCE/WEEK','Y','mitesh','2023-08-19 18:38:58','','0000-00-00 00:00:00'),(5370,0,0,'MINST','GEN',0,'121','ENG','WITH MVI @ 30 ML/HR','Y','pravin','2023-08-20 00:22:46','','0000-00-00 00:00:00'),(5371,0,0,'MINST','GEN',0,'122','ENG','0.4ML WITH 5ML NS IV','Y','pravin','2023-08-20 00:25:46','','0000-00-00 00:00:00'),(5372,0,0,'MINST','GEN',0,'123','ENG','0.6ML WITH 5ML NS IV','Y','pravin','2023-08-20 00:27:03','','0000-00-00 00:00:00'),(5373,0,0,'MINST','GEN',0,'124','ENG','5ML IV BD','Y','pravin','2023-08-20 01:39:13','','0000-00-00 00:00:00'),(5374,0,0,'MINST','GEN',0,'125','ENG','2ML IV BD','Y','pravin','2023-08-20 01:39:46','','0000-00-00 00:00:00'),(5375,0,0,'MINST','GEN',0,'126','ENG','1 tab','Y','pravin','2023-08-21 19:25:57','','0000-00-00 00:00:00'),(5376,0,0,'MINST','GEN',0,'127','ENG','3.5ml iv bd','Y','mitesh','2023-08-22 11:21:20','','0000-00-00 00:00:00'),(5377,0,0,'MINST','GEN',0,'128','ENG','1.8ml tds','Y','mitesh','2023-08-22 11:21:28','','0000-00-00 00:00:00'),(5378,0,0,'MINST','GEN',0,'129','ENG','IN 500ML NS OVER 3 HOUR','Y','mitesh','2023-08-22 13:23:35','','0000-00-00 00:00:00'),(5379,0,0,'MINST','GEN',0,'130','ENG','4 AMP IN 500ML NS OVER 3 HOUR','Y','mitesh','2023-08-22 13:23:49','','0000-00-00 00:00:00'),(5380,0,0,'MINST','GEN',0,'131','ENG','IN 100ML NS OVER 1 HOUR','Y','mitesh','2023-08-22 13:24:40','','0000-00-00 00:00:00'),(5381,0,0,'MINST','GEN',0,'132','ENG','2 AMP IN 100ML NS OVER 1 HOUR','Y','mitesh','2023-08-23 18:22:01','','0000-00-00 00:00:00'),(5382,0,0,'MINST','GEN',0,'133','ENG','1/2 TAB BD  AFTER MALE ','Y','pravin','2023-08-23 21:32:54','','0000-00-00 00:00:00'),(5383,0,0,'MINST','GEN',0,'134','ENG','1 SOS IF VOMITING','Y','mitesh','2023-08-24 10:49:43','','0000-00-00 00:00:00'),(5384,0,0,'MINST','GEN',0,'135','ENG','1 SOS IF THROAT PAIN','Y','mitesh','2023-08-24 13:32:27','','0000-00-00 00:00:00'),(5385,0,0,'MINST','GEN',0,'136','ENG','1 SOS IF COLD CORYZA','Y','mitesh','2023-08-24 13:33:15','','0000-00-00 00:00:00'),(5386,0,0,'MINST','GEN',0,'137','ENG','5ML ','Y','mitesh','2023-08-24 13:33:29','','0000-00-00 00:00:00'),(5387,0,0,'MINST','GEN',0,'138','ENG','5ML SOS IF COUGH','Y','mitesh','2023-08-24 13:33:40','','0000-00-00 00:00:00'),(5388,0,0,'MINST','GEN',0,'139','ENG','1 SOS','Y','mitesh','2023-08-24 13:34:12','','0000-00-00 00:00:00'),(5389,0,0,'MINST','GEN',0,'140','ENG','1 SOS IF LOOSE STOOL','Y','mitesh','2023-08-24 13:34:25','','0000-00-00 00:00:00'),(5390,0,0,'MINST','GEN',0,'141','ENG','1 S','Y','mitesh','2023-08-24 13:34:45','','0000-00-00 00:00:00'),(5391,0,0,'MINST','GEN',0,'142','ENG','1 SOS IF ABDOMINAL PAIN','Y','mitesh','2023-08-24 13:35:21','','0000-00-00 00:00:00'),(5392,0,0,'MINST','GEN',0,'143','ENG','1 SOS IF INSOMNIA','Y','mitesh','2023-08-25 17:48:16','','0000-00-00 00:00:00'),(5393,0,0,'MINST','GEN',0,'143','GUJ','1 SOS જો અનિદ્રા','Y','mitesh','2023-08-25 17:48:16','','0000-00-00 00:00:00'),(5394,0,0,'MINST','GEN',0,'143','HIN','1 एसओएस यदि अनिद्रा','Y','mitesh','2023-08-25 17:48:16','','0000-00-00 00:00:00'),(5395,0,0,'MINST','GEN',0,'144','ENG','WITH MVI @ 40ML/HR','Y','pravin','2023-08-26 11:20:56','','0000-00-00 00:00:00'),(5396,0,0,'MINST','GEN',0,'145','ENG','0.8ML WITH 5ML NS IV','Y','pravin','2023-08-26 11:24:37','','0000-00-00 00:00:00'),(5397,0,0,'MINST','GEN',0,'146','ENG','IV TDS','Y','vipul','2023-08-30 17:23:55','','0000-00-00 00:00:00'),(5398,0,0,'MINST','GEN',0,'147','ENG','@ 50','Y','mitesh','2023-09-05 12:52:20','','0000-00-00 00:00:00'),(5399,0,0,'MINST','GEN',0,'148','ENG','2.5ML IV BD','Y','mitesh','2023-09-05 12:53:09','','0000-00-00 00:00:00'),(5400,0,0,'MINST','GEN',0,'149','ENG','1.8 ML + 10 ML NS IV','Y','mitesh','2023-09-05 12:54:32','','0000-00-00 00:00:00'),(5401,0,0,'MINST','GEN',0,'150','ENG','4ML + 6ML NS IV','Y','mitesh','2023-09-05 12:55:00','','0000-00-00 00:00:00'),(5402,0,0,'MINST','GEN',0,'151','ENG','0.8ML + 5ML NS IV BD','Y','mitesh','2023-09-05 12:55:20','','0000-00-00 00:00:00'),(5403,0,0,'MINST','GEN',0,'152','ENG','4ML + 6ML NS IV BD','Y','mitesh','2023-09-05 12:55:22','','0000-00-00 00:00:00'),(5404,0,0,'MINST','GEN',0,'153','ENG','1GM IN 100ML NS IV BD ','Y','pravin','2023-09-05 15:18:21','','0000-00-00 00:00:00'),(5405,0,0,'MINST','GEN',0,'154','ENG','40MG WITH 5ML NS IV BD ','Y','pravin','2023-09-05 15:19:36','','0000-00-00 00:00:00'),(5406,0,0,'MINST','GEN',0,'155','ENG','2ML IV TDS','Y','pravin','2023-09-05 15:21:32','','0000-00-00 00:00:00'),(5407,0,0,'MINST','GEN',0,'156','ENG','1 SOS IF HEADACHE','Y','mitesh','2023-09-06 19:35:42','','0000-00-00 00:00:00'),(5408,0,0,'MINST','GEN',0,'157','ENG','1GM IN 100ML NS STAT THEN IV BD','Y','mitesh','2023-09-07 03:55:42','','0000-00-00 00:00:00'),(5409,0,0,'MINST','GEN',0,'158','ENG','IN 100ML NS IV OVER 15 MIN','Y','mitesh','2023-09-09 12:58:30','','0000-00-00 00:00:00'),(5410,0,0,'MINST','GEN',0,'159','ENG','1 AMP IN 100ML NS IV TDS','Y','pravin','2023-09-09 14:36:49','','0000-00-00 00:00:00'),(5411,0,0,'MINST','GEN',0,'160','ENG','100ML IV STAT','Y','pravin','2023-09-09 14:38:12','','0000-00-00 00:00:00'),(5412,0,0,'MINST','GEN',0,'161','ENG',' IV STAT','Y','pravin','2023-09-09 14:42:06','','0000-00-00 00:00:00'),(5413,0,0,'MINST','GEN',0,'162','ENG','( AFTER MEAL )1 TAB  TDS','Y','pravin','2023-09-09 14:48:12','','0000-00-00 00:00:00'),(5414,0,0,'MINST','GEN',0,'163','ENG','IV SOS FOR FEVER','Y','pravin','2023-09-09 17:21:44','','0000-00-00 00:00:00'),(5415,0,0,'MINST','GEN',0,'164','ENG','DILUE WITH 5ML THEN IV BD','Y','pravin','2023-09-12 00:50:45','','0000-00-00 00:00:00'),(5416,0,0,'PLAN','GEN',0,'8','ENG','ADMISSION IN ROOM','Y','mitesh','2023-09-13 12:41:12','','0000-00-00 00:00:00'),(5417,0,0,'MINST','GEN',0,'165','ENG','1 AMP IN 100ML NS IV bd','Y','vipul','2023-09-15 02:17:27','','0000-00-00 00:00:00'),(5418,0,0,'MINST','GEN',0,'166','ENG','1AMP IN 100ML NS IV BD ','Y','vipul','2023-09-15 02:18:57','','0000-00-00 00:00:00'),(5419,0,0,'MINST','GEN',0,'167','ENG','1 SOS IF PAIN','Y','mitesh','2023-09-16 12:11:40','','0000-00-00 00:00:00'),(5420,0,0,'MINST','GEN',0,'168','ENG','1 HOUR BEFORE BREAKFAST IN EARLY MORNING','Y','mitesh','2023-09-16 19:01:55','','0000-00-00 00:00:00'),(5421,0,0,'MINST','GEN',0,'168','GUJ','વહેલી સવારે નાસ્તાના 1 કલાક પહેલા','Y','mitesh','2023-09-16 19:01:55','','0000-00-00 00:00:00'),(5422,0,0,'MINST','GEN',0,'168','HIN','सुबह-सुबह नाश्ते से 1 घंटा पहले','Y','mitesh','2023-09-16 19:01:55','','0000-00-00 00:00:00'),(5423,0,0,'MINST','GEN',0,'169','ENG','DILUE WITH 10ML  IV BD','Y','pravin','2023-09-18 21:36:12','','0000-00-00 00:00:00'),(5424,0,0,'MINST','GEN',0,'170','ENG','2 IV BD','Y','pravin','2023-09-18 22:05:09','','0000-00-00 00:00:00'),(5425,0,0,'MINST','GEN',0,'171','ENG','2GM  IN 100ML NS  IV BD ','Y','pravin','2023-09-18 22:06:31','','0000-00-00 00:00:00'),(5426,0,0,'MINST','GEN',0,'172','ENG','BREA','Y','mitesh','2023-09-20 21:23:06','','0000-00-00 00:00:00'),(5427,0,0,'MINST','GEN',0,'173','ENG','1-0-0','Y','mitesh','2023-09-20 21:23:17','','0000-00-00 00:00:00'),(5428,0,0,'MINST','GEN',0,'174','ENG','IN 100ML NS IV SOS','Y','mitesh','2023-09-22 21:06:13','','0000-00-00 00:00:00'),(5429,0,0,'MINST','GEN',0,'175','ENG','100ML IV  BD','Y','pravin','2023-09-22 22:20:34','','0000-00-00 00:00:00'),(5430,0,0,'MINST','GEN',0,'176','ENG','5ml stat','Y','mitesh','2023-09-24 11:18:33','','0000-00-00 00:00:00'),(5431,0,0,'MINST','GEN',0,'177','ENG','100ML NS IV bd','Y','pravin','2023-09-24 17:00:35','','0000-00-00 00:00:00'),(5432,0,0,'MINST','GEN',0,'178','ENG','S/C BD','Y','pravin','2023-09-25 01:57:40','','0000-00-00 00:00:00'),(5433,0,0,'MINST','GEN',0,'179','ENG','( AFTER MEAL ) 1 TAB BD','Y','pravin','2023-09-25 01:59:10','','0000-00-00 00:00:00'),(5434,0,0,'MINST','GEN',0,'180','ENG','@ 80ML/HR','Y','pravin','2023-09-25 02:01:42','','0000-00-00 00:00:00'),(5435,0,0,'MINST','GEN',0,'181','ENG','@180ML/HR','Y','pravin','2023-09-25 02:01:53','','0000-00-00 00:00:00'),(5436,0,0,'MINST','GEN',0,'182','ENG','DILUTE WITH 50ML NS @ 2.5ML/HR','Y','mitesh','2023-09-26 11:30:58','','0000-00-00 00:00:00'),(5437,0,0,'MINST','GEN',0,'183','ENG','1.5ML IV BD','Y','mitesh','2023-09-26 11:32:09','','0000-00-00 00:00:00'),(5438,0,0,'MINST','GEN',0,'184','ENG','35ML IV BD','Y','pravin','2023-09-28 22:45:12','','0000-00-00 00:00:00'),(5439,0,0,'MINST','GEN',0,'185','ENG','1.2ML IV BD','Y','pravin','2023-09-28 22:46:29','','0000-00-00 00:00:00'),(5440,0,0,'MINST','GEN',0,'186','ENG','1.5ML IV TDS','Y','pravin','2023-09-28 22:47:29','','0000-00-00 00:00:00'),(5441,0,0,'MINST','GEN',0,'187','ENG','2ML WITH 10ML NS IV','Y','pravin','2023-09-28 22:49:04','','0000-00-00 00:00:00'),(5442,0,0,'MINST','GEN',0,'188','ENG','WITH MVI @ 25 ML/HR','Y','pravin','2023-09-28 22:51:05','','0000-00-00 00:00:00'),(5443,0,0,'MINST','GEN',0,'189','ENG','1.5GM IV BD','Y','pravin','2023-09-29 12:34:24','','0000-00-00 00:00:00'),(5444,0,0,'MINST','GEN',0,'190','ENG','40MG IV BD','Y','pravin','2023-09-29 12:36:19','','0000-00-00 00:00:00'),(5445,0,0,'MINST','GEN',0,'191','ENG','BEFORE LUNCH','Y','mitesh','2023-09-29 13:56:18','','0000-00-00 00:00:00'),(5446,0,0,'MINST','GEN',0,'191','GUJ','લંચ પહેલાં','Y','mitesh','2023-09-29 13:56:18','','0000-00-00 00:00:00'),(5447,0,0,'MINST','GEN',0,'191','HIN','दोपहर के भोजन से पहले','Y','mitesh','2023-09-29 13:56:18','','0000-00-00 00:00:00'),(5448,0,0,'MINST','GEN',0,'192','ENG','TO BE INHALED WITH ROTAHALER','Y','mitesh','2023-10-02 11:00:22','','0000-00-00 00:00:00'),(5449,0,0,'MINST','GEN',0,'193','ENG','1.2GM IN 100ML NS IV BD ','Y','pravin','2023-10-02 13:03:06','','0000-00-00 00:00:00'),(5450,0,0,'MINST','GEN',0,'194','ENG','4 TAB STAT','Y','mitesh','2023-10-02 19:41:28','','0000-00-00 00:00:00'),(5451,0,0,'MINST','GEN',0,'195','ENG','2 TAB STAT','Y','mitesh','2023-10-02 19:41:32','','0000-00-00 00:00:00'),(5452,0,0,'MINST','GEN',0,'196','ENG','2 AMP IN 50ML NS @ ACC TO BP','Y','mitesh','2023-10-02 19:42:03','','0000-00-00 00:00:00'),(5453,0,0,'PLAN','GEN',0,'9','ENG','ABOVE MENTIONED PERSON IS FIT FOR DUTY WITH MENTIONED MEDICINE AND REGULAR EXCERSICE','Y','mitesh','2023-10-03 18:47:59','','0000-00-00 00:00:00'),(5454,0,0,'MINST','GEN',0,'197','ENG','1 sos if nausea,vomiting','Y','mitesh','2023-10-04 09:36:19','','0000-00-00 00:00:00'),(5455,0,0,'MINST','GEN',0,'198','ENG','1.5GM IN 100ML NS IV BD ','Y','sneha','2023-10-04 16:26:59','','0000-00-00 00:00:00'),(5456,0,0,'MINST','GEN',0,'199','ENG','100ML IV  TDS','Y','sneha','2023-10-04 16:28:09','','0000-00-00 00:00:00'),(5457,0,0,'MINST','GEN',0,'200','ENG','2AMP +','Y','sneha','2023-10-04 16:32:56','','0000-00-00 00:00:00'),(5458,0,0,'MINST','GEN',0,'201','ENG','2AMP + INJ NS 46ML','Y','sneha','2023-10-04 16:33:40','','0000-00-00 00:00:00'),(5459,0,0,'MINST','GEN',0,'202','ENG','T','Y','sneha','2023-10-04 16:35:44','','0000-00-00 00:00:00'),(5460,0,0,'PLAN','GEN',0,'10','ENG','DONOT DRINK COLD WATER,COLD beverage.','Y','mitesh','2023-10-04 18:12:10','','0000-00-00 00:00:00'),(5461,0,0,'PLAN','GEN',0,'10','GUJ','ઠંડુ પાણી, ઠંડુ પીણું પીશો નહીં.','Y','mitesh','2023-10-04 18:12:10','','0000-00-00 00:00:00'),(5462,0,0,'PLAN','GEN',0,'10','HIN','ठंडा पानी, ठंडा पेय पदार्थ न पियें।','Y','mitesh','2023-10-04 18:12:10','','0000-00-00 00:00:00'),(5463,0,0,'MINST','GEN',0,'203','ENG','1 SOS IF ACIDITY','Y','mitesh','2023-10-06 17:01:20','','0000-00-00 00:00:00'),(5464,0,0,'MINST','GEN',0,'204','ENG','IV SOS IF ABD PAIN','Y','mitesh','2023-10-10 20:32:00','','0000-00-00 00:00:00'),(5465,0,0,'MINST','GEN',0,'205','ENG','S/L STAT','Y','mitesh','2023-10-11 21:57:57','','0000-00-00 00:00:00'),(5466,0,0,'MINST','GEN',0,'206','ENG','ME','Y','mitesh','2023-10-17 11:08:04','','0000-00-00 00:00:00'),(5467,0,0,'MINST','GEN',0,'207','ENG','2 PUFF IN BOTH NOSTRIL TWICE A DAY','Y','mitesh','2023-10-18 13:48:29','','0000-00-00 00:00:00'),(5468,0,0,'MINST','GEN',0,'208','ENG','30 MINUTE BEFORE DINNER','Y','mitesh','2023-10-18 14:04:01','mitesh','2023-10-18 18:37:32'),(5469,0,0,'MINST','GEN',0,'208','GUJ','રાત્રિ ભોજન પહેલાં 30 મિનિટ','Y','mitesh','2023-10-18 18:37:32','','0000-00-00 00:00:00'),(5470,0,0,'MINST','GEN',0,'208','HIN','रात के खाने से 30 मिनट पहले','Y','mitesh','2023-10-18 18:37:32','','0000-00-00 00:00:00'),(5471,0,0,'MINST','GEN',0,'209','ENG','NE','Y','dasrath','2023-10-18 22:43:03','','0000-00-00 00:00:00'),(5472,0,0,'MINST','GEN',0,'210','ENG','@ 2HR ','Y','vipul','2023-10-19 15:27:44','','0000-00-00 00:00:00'),(5473,0,0,'MINST','GEN',0,'211','ENG','1GRAM IN 100ML NS IV bd','Y','pravin','2023-10-20 19:46:21','','0000-00-00 00:00:00'),(5474,0,0,'MINST','GEN',0,'212','ENG','1ML WITH 4ML NS IV BD','Y','pravin','2023-10-20 19:48:02','','0000-00-00 00:00:00'),(5475,0,0,'MINST','GEN',0,'213','ENG','1ML  IV BD','Y','pravin','2023-10-20 19:48:49','','0000-00-00 00:00:00'),(5476,0,0,'MINST','GEN',0,'214','ENG','1.5ML IV QDS','Y','pravin','2023-10-20 19:52:51','','0000-00-00 00:00:00'),(5477,0,0,'MINST','GEN',0,'215','ENG','3GM IN 100ML NS IV bd','Y','pravin','2023-10-22 20:43:12','','0000-00-00 00:00:00'),(5478,0,0,'MINST','GEN',0,'216','ENG','2AMP  IN INJ NS 100ML','Y','pravin','2023-10-22 20:48:02','','0000-00-00 00:00:00'),(5479,0,0,'MINST','GEN',0,'217','ENG','2AMP  IN NS 100ML','Y','pravin','2023-10-22 20:48:08','','0000-00-00 00:00:00'),(5480,0,0,'MINST','GEN',0,'218','ENG','IN BOTH EAR','Y','mitesh','2023-10-28 11:54:58','','0000-00-00 00:00:00'),(5481,0,0,'MINST','GEN',0,'219','ENG','( AFTER MEAL ) 1 TAB OD','Y','pravin','2023-10-31 00:32:10','','0000-00-00 00:00:00'),(5482,0,0,'MINST','GEN',0,'220','ENG','dinn','Y','mitesh','2023-10-31 09:49:10','','0000-00-00 00:00:00'),(5483,0,0,'MINST','GEN',0,'221','ENG','IM ALTERNATIVE DAY','Y','mitesh','2023-10-31 09:51:29','','0000-00-00 00:00:00'),(5484,0,0,'MINST','GEN',0,'222','ENG','WITH INJ KCL 1AMP','Y','dasrath','2023-10-31 16:49:30','','0000-00-00 00:00:00'),(5485,0,0,'MINST','GEN',0,'223','ENG','WITH INJ KCL 1AMP 40ML/HRLY','Y','dasrath','2023-10-31 16:50:21','','0000-00-00 00:00:00'),(5486,0,0,'MINST','GEN',0,'224','ENG','10ML/HRLY INFUSION','Y','dasrath','2023-10-31 16:54:13','','0000-00-00 00:00:00'),(5487,0,0,'MINST','GEN',0,'225','ENG','3.5ML SOS','Y','mitesh','2023-11-03 21:16:26','','0000-00-00 00:00:00'),(5488,0,0,'MINST','GEN',0,'226','ENG','2 AMP IN 100ML NS IV BD','Y','vipul','2023-11-05 17:10:24','','0000-00-00 00:00:00'),(5489,0,0,'MINST','GEN',0,'227','ENG','1 AMP IN 100ML NS IV SOS','Y','pravin','2023-11-05 21:07:54','','0000-00-00 00:00:00'),(5490,0,0,'RXINS','GEN',0,'ntdose','GUJ','રાત્રે','Y','thims','2023-10-17 00:00:00','thims','0000-00-00 00:00:00'),(5491,0,0,'RXINS','GEN',0,'ntdose','HIN','रात में','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(5492,0,0,'RXINS','GEN',0,'ntdose','ENG','Night','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(5493,0,0,'MINST','GEN',0,'228','ENG','1 SOS IF ANXITY','Y','mitesh','2023-11-10 13:52:24','','0000-00-00 00:00:00'),(5494,0,0,'MINST','GEN',0,'229','ENG','1 SOS IF CHAKKAR','Y','mitesh','2023-11-11 11:04:56','','0000-00-00 00:00:00'),(5495,0,0,'MINST','GEN',0,'230','ENG','WITH 100ML NS IV BD','Y','dasrath','2023-11-12 14:23:59','','0000-00-00 00:00:00'),(5496,0,0,'MINST','GEN',0,'231','ENG','S/C OD','Y','dasrath','2023-11-12 14:28:03','','0000-00-00 00:00:00'),(5497,0,0,'MINST','GEN',0,'232','ENG','0.5ML IM STAT','Y','mitesh','2023-11-15 12:36:49','','0000-00-00 00:00:00'),(5498,0,0,'MINST','GEN',0,'233','ENG','IF','Y','mitesh','2023-11-18 11:32:25','','0000-00-00 00:00:00'),(5499,0,0,'MINST','GEN',0,'234','ENG','DILUE WITH 10ML THEN 7 ML IV BD','Y','pravin','2023-11-18 13:20:52','','0000-00-00 00:00:00'),(5500,0,0,'MINST','GEN',0,'235','ENG','0.5ML IV BD','Y','pravin','2023-11-18 13:22:15','','0000-00-00 00:00:00'),(5501,0,0,'MINST','GEN',0,'236','ENG','0.6ML IV BD','Y','pravin','2023-11-18 13:24:21','','0000-00-00 00:00:00'),(5502,0,0,'MINST','GEN',0,'237','ENG','DILUE WITH 4ML THEN 0.5 ML IV BD','Y','pravin','2023-11-18 13:26:34','','0000-00-00 00:00:00'),(5503,0,0,'MINST','GEN',0,'238','ENG','0.7ML IV QDS','Y','pravin','2023-11-18 13:27:33','','0000-00-00 00:00:00'),(5504,0,0,'MINST','GEN',0,'239','ENG','20ML/HR WITH MVI','Y','pravin','2023-11-18 13:30:02','','0000-00-00 00:00:00'),(5505,0,0,'MINST','GEN',0,'240','ENG','100 ML/HR','Y','pravin','2023-11-21 01:45:15','','0000-00-00 00:00:00'),(5506,0,0,'MINST','GEN',0,'241','ENG','1 AMP IN 100ML NS IV OD','Y','pravin','2023-11-22 00:59:19','','0000-00-00 00:00:00'),(5507,0,0,'MINST','GEN',0,'242','ENG','WITH MVI @ 120ML/HR','Y','pravin','2023-11-22 01:01:33','','0000-00-00 00:00:00'),(5508,0,0,'MINST','GEN',0,'243','ENG','1 sos if gas','Y','mitesh','2023-11-29 11:17:32','','0000-00-00 00:00:00'),(5509,0,0,'MINST','GEN',0,'244','ENG','ONCE/DAY','Y','mitesh','2023-12-01 19:24:35','','0000-00-00 00:00:00'),(5510,0,0,'MINST','GEN',0,'245','ENG','I SOS','Y','mitesh','2023-12-02 12:40:09','','0000-00-00 00:00:00'),(5511,0,0,'MINST','GEN',0,'246','ENG','2AMP  IN NS 100ML IV BD','Y','pravin','2023-12-03 01:13:14','','0000-00-00 00:00:00'),(5512,0,0,'MINST','GEN',0,'247','ENG',' IV TDS','Y','pravin','2023-12-03 01:15:35','','0000-00-00 00:00:00'),(5513,0,0,'MINST','GEN',0,'248','ENG','1GM Iv','Y','pravin','2023-12-03 22:46:44','','0000-00-00 00:00:00'),(5514,0,0,'MINST','GEN',0,'249','ENG','1GM IV BD','Y','pravin','2023-12-03 22:46:59','','0000-00-00 00:00:00'),(5515,0,0,'MINST','GEN',0,'250','ENG','WITH NUROKIND @ 25ML/HR','Y','pravin','2023-12-07 00:44:11','','0000-00-00 00:00:00'),(5516,0,0,'MINST','GEN',0,'251','ENG','3/4 TAB STAT','Y','mitesh','2023-12-07 12:00:53','','0000-00-00 00:00:00'),(5517,0,0,'MINST','GEN',0,'252','ENG','1GM IN 100ML NS  IV BD','Y','pravin','2023-12-07 20:52:04','','0000-00-00 00:00:00'),(5518,0,0,'MINST','GEN',0,'253','ENG','BEFORE MEAL 10ML','Y','pravin','2023-12-07 20:53:27','','0000-00-00 00:00:00'),(5519,0,0,'MINST','GEN',0,'254','ENG',' 70 ML/HR','Y','pravin','2023-12-07 20:55:51','','0000-00-00 00:00:00'),(5520,0,0,'MINST','GEN',0,'255','ENG','IU S/C','Y','mitesh','2023-12-08 14:38:00','','0000-00-00 00:00:00'),(5521,0,0,'MINST','GEN',0,'256','ENG','BRE','Y','mitesh','2023-12-08 18:08:41','','0000-00-00 00:00:00'),(5522,0,0,'MINST','GEN',0,'257','ENG','1 SOS IF RUNNING NOSE','Y','mitesh','2023-12-11 11:15:17','','0000-00-00 00:00:00'),(5523,0,0,'MINST','GEN',0,'258','ENG','1 SOS IF CONSTIPATION','Y','mitesh','2023-12-11 11:30:07','','0000-00-00 00:00:00'),(5524,0,0,'MINST','GEN',0,'259','ENG','MEAL','Y','mitesh','2023-12-18 12:09:00','','0000-00-00 00:00:00'),(5525,0,0,'MINST','GEN',0,'260','ENG','500MG IN 100ML NS IV TDS','Y','pravin','2023-12-21 18:42:40','','0000-00-00 00:00:00'),(5526,0,0,'MINST','GEN',0,'261','ENG','50MG IV TDS','Y','pravin','2023-12-21 18:43:23','','0000-00-00 00:00:00'),(5527,0,0,'MINST','GEN',0,'262','ENG','500MG IV TDS','Y','pravin','2023-12-21 18:47:25','','0000-00-00 00:00:00'),(5528,0,0,'MINST','GEN',0,'263','ENG','1 AMP IV STAT THEN 5AMP/50ML NS IV @ 5ML/HR','Y','mitesh','2023-12-21 20:40:25','','0000-00-00 00:00:00'),(5529,0,0,'MINST','GEN',0,'264','ENG','INTRA-NASAL SPRAY BD','Y','mitesh','2023-12-22 12:09:56','','0000-00-00 00:00:00'),(5530,0,0,'MINST','GEN',0,'265','ENG','2TSF','Y','pravin','2023-12-25 02:00:04','','0000-00-00 00:00:00'),(5531,0,0,'MINST','GEN',0,'266','ENG','2 AMP IV STAT THEN 5AMP+50ML NS IV @ 5ML/HR','Y','mitesh','2023-12-28 21:02:31','','0000-00-00 00:00:00'),(5532,0,0,'MINST','GEN',0,'267','ENG','IV OD','Y','pravin','2023-12-29 01:20:40','','0000-00-00 00:00:00'),(5533,0,0,'MINST','GEN',0,'268','ENG',' 60ML/HR','Y','pravin','2023-12-29 01:28:55','','0000-00-00 00:00:00'),(5534,0,0,'MINST','GEN',0,'269','ENG','WITH NUROKIND @ 40 ML/HR','Y','pravin','2023-12-30 00:07:15','','0000-00-00 00:00:00'),(5535,0,0,'MINST','GEN',0,'270','ENG','WITH MVI @ 150 ML/HR','Y','mitesh','2024-01-01 22:07:07','','0000-00-00 00:00:00'),(5536,0,0,'MINST','GEN',0,'271','ENG','10 PM HS','Y','mitesh','2024-01-05 12:05:39','','0000-00-00 00:00:00'),(5537,0,0,'MINST','GEN',0,'272','ENG',' IN 100ML NS IV TDS','Y','dasrath','2024-01-05 16:31:56','','0000-00-00 00:00:00'),(5538,0,0,'MINST','GEN',0,'273','ENG','10mg iv','Y','dasrath','2024-01-05 16:33:35','','0000-00-00 00:00:00'),(5539,0,0,'MINST','GEN',0,'274','ENG','BEFORE AND AFTER PASSING STOOL','Y','mitesh','2024-01-10 11:30:49','','0000-00-00 00:00:00'),(5540,0,0,'MINST','GEN',0,'275','ENG','750mg  IV','Y','dasrath','2024-01-12 18:13:53','','0000-00-00 00:00:00'),(5541,0,0,'MINST','GEN',0,'276','ENG','750mg  IV OD','Y','dasrath','2024-01-12 18:14:09','','0000-00-00 00:00:00'),(5542,0,0,'MINST','GEN',0,'277','ENG',' IN 100ML NS IV BD','Y','dasrath','2024-01-12 18:17:15','','0000-00-00 00:00:00'),(5543,0,0,'MINST','GEN',0,'278','ENG','IN 100ML IV STAT','Y','mitesh','2024-01-16 19:05:53','','0000-00-00 00:00:00'),(5544,0,0,'MINST','GEN',0,'279','ENG','2ML IM ALTERNATIVE DAY','Y','mitesh','2024-01-16 21:49:28','','0000-00-00 00:00:00'),(5545,0,0,'MINST','GEN',0,'280','ENG','AT 7PM','Y','mitesh','2024-01-16 21:49:58','','0000-00-00 00:00:00'),(5546,0,0,'PLAN','GEN',0,'11','ENG','green leafy vegetables such as kale, collard greens, broccoli, spinach, cabbage, and lettuce','Y','mitesh','2024-01-16 21:59:41','','0000-00-00 00:00:00'),(5547,0,0,'PLAN','GEN',0,'11','GUJ','લીલા પાંદડાવાળા શાકભાજી જેમ કે કાલે, કોલાર્ડ ગ્રીન્સ, બ્રોકોલી, પાલક, કોબી અને લેટીસ','Y','mitesh','2024-01-16 21:59:41','','0000-00-00 00:00:00'),(5548,0,0,'MINST','GEN',0,'281','ENG','5000 IU ','Y','dasrath','2024-01-20 15:54:19','','0000-00-00 00:00:00'),(5549,0,0,'MINST','GEN',0,'282','ENG','3 AMP  5ML /HR','Y','dasrath','2024-01-20 17:09:30','','0000-00-00 00:00:00'),(5550,0,0,'MINST','GEN',0,'283','ENG',' 100ML/HR','Y','dasrath','2024-01-20 17:13:20','','0000-00-00 00:00:00'),(5551,0,0,'MINST','GEN',0,'284','ENG','3 AMP  NS 100ML','Y','vipul','2024-01-21 16:12:03','','0000-00-00 00:00:00'),(5552,0,0,'MINST','GEN',0,'285','ENG','2VIAL IN 100ML NS ','Y','vipul','2024-01-21 16:18:12','','0000-00-00 00:00:00'),(5553,0,0,'MINST','GEN',0,'286','ENG','( AFTER MEAL )5ML TDS','Y','vipul','2024-01-21 16:23:35','','0000-00-00 00:00:00'),(5554,0,0,'MINST','GEN',0,'287','ENG','WITH 1 GLASS OF WATER','Y','vipul','2024-01-21 16:25:13','','0000-00-00 00:00:00'),(5555,0,0,'MINST','GEN',0,'288','ENG','2 VIAL IN 100ML NS IV BD','Y','vipul','2024-01-21 16:26:46','','0000-00-00 00:00:00'),(5556,0,0,'PLAN','GEN',0,'12','ENG','SALTY WARM WATER GARGLES 3-4 TIMES A DAY WITH HALDI-PANI AT NIGHT','Y','mitesh','2024-01-23 12:51:40','','0000-00-00 00:00:00'),(5557,0,0,'PLAN','GEN',0,'12','GUJ','  દિવસમાં 3-4 વાર મીઠા વાળા ગરમ પાણીથી  ગાર્ગલ કરો અને રાત્રે સમજાવ્યા પ્રમાણે હલ્દી-પાણી પીવો.','Y','mitesh','2024-01-23 12:51:40','','0000-00-00 00:00:00'),(5558,0,0,'PLAN','GEN',0,'12','HIN','रात में हल्दी-पानी पीजिए और दिन में 3-4 बार  गर्म नमकपानी से गरारे करें','Y','mitesh','2024-01-23 12:51:40','','0000-00-00 00:00:00'),(5559,0,0,'MINST','GEN',0,'289','ENG','TO BE START AFTER TOOTH EXTRATION','Y','mitesh','2024-01-24 13:19:04','','0000-00-00 00:00:00'),(5560,0,0,'MINST','GEN',0,'290','ENG','1ML IV STAT','Y','mitesh','2024-01-24 18:48:29','','0000-00-00 00:00:00'),(5561,0,0,'MINST','GEN',0,'291','ENG','Optin','Y','pravin','2024-01-26 18:34:44','','0000-00-00 00:00:00'),(5562,0,0,'MINST','GEN',0,'292','ENG',' WITH 5AMP OPTICURE  IV TDS','Y','pravin','2024-01-26 18:35:31','','0000-00-00 00:00:00'),(5563,0,0,'MINST','GEN',0,'293','ENG',' IN 100ML NS IV OD','Y','pravin','2024-01-28 11:50:36','','0000-00-00 00:00:00'),(5564,0,0,'MINST','GEN',0,'294','ENG','( AFTER MEAL ) .5 TAB BD','Y','dasrath','2024-01-28 17:51:39','','0000-00-00 00:00:00'),(5565,0,0,'MINST','GEN',0,'295','ENG','30 M','Y','mitesh','2024-01-29 09:47:58','','0000-00-00 00:00:00'),(5566,0,0,'MINST','GEN',0,'296','ENG','IN 100ML NS IV STAT','Y','mitesh','2024-01-29 18:16:33','','0000-00-00 00:00:00'),(5567,0,0,'MINST','GEN',0,'297','ENG','WITH 1 GLASS OF MILK','Y','mitesh','2024-01-29 21:16:05','','0000-00-00 00:00:00'),(5568,0,0,'MINST','GEN',0,'298','ENG',' 120ML/HR','Y','pravin','2024-01-30 18:36:09','','0000-00-00 00:00:00'),(5569,0,0,'MINST','GEN',0,'299','ENG',' 150ML/HR','Y','pravin','2024-01-30 18:39:40','','0000-00-00 00:00:00'),(5572,0,0,'MINST','GEN',0,'302','ENG','AFTER BREAKFAST  1 TAB OD','Y','pravin','2024-02-11 01:22:37','','0000-00-00 00:00:00'),(5573,0,0,'MINST','GEN',0,'303','ENG','AFTER DINNER 1 TAB OD','Y','pravin','2024-02-11 01:23:25','','0000-00-00 00:00:00'),(5574,0,0,'MINST','GEN',0,'304','ENG','1ML  IV TDS','Y','pravin','2024-02-11 01:36:58','','0000-00-00 00:00:00'),(5577,0,0,'MINST','GEN',0,'307','ENG','1ml IV DTAT','Y','mitesh','2024-02-11 15:50:14','','0000-00-00 00:00:00'),(5578,0,0,'MINST','GEN',0,'308','ENG','8AM & 8PM','Y','mitesh','2024-02-13 13:21:07','','0000-00-00 00:00:00'),(5579,0,0,'MINST','GEN',0,'309','ENG','ONCE a WEEK after breakfast','Y','mitesh','2024-02-15 20:41:24','darshan','2025-10-13 11:41:36'),(5580,0,0,'MINST','GEN',0,'310','ENG','200MG IV STAT THEN 100MG IV BD','Y','mitesh','2024-02-15 22:43:59','','0000-00-00 00:00:00'),(5581,0,0,'MINST','GEN',0,'311','ENG','1 ML BD','Y','dasrath','2024-02-17 23:26:40','','0000-00-00 00:00:00'),(5582,0,0,'MINST','GEN',0,'312','ENG','1 SOS IF SHOULDER PAIN','Y','mitesh','2024-02-20 12:09:05','','0000-00-00 00:00:00'),(5583,0,0,'MINST','GEN',0,'313','ENG','IV SOS IF BLOOD STAINED VOMITING','Y','mitesh','2024-02-23 18:44:08','','0000-00-00 00:00:00'),(5584,0,0,'MINST','GEN',0,'314','ENG','40ML/HR WITH MVI','Y','dasrath','2024-02-23 23:57:54','','0000-00-00 00:00:00'),(5585,0,0,'MINST','GEN',0,'315','ENG','IN 500ML NS OVER 1 HOUR','Y','mitesh','2024-02-24 12:03:19','','0000-00-00 00:00:00'),(5586,0,0,'MINST','GEN',0,'316','ENG','( AFTER MEAL ) START FROM 4TH DAY','Y','mitesh','2024-02-24 12:04:15','','0000-00-00 00:00:00'),(5587,0,0,'MINST','GEN',0,'317','ENG','2 TAB','Y','mitesh','2024-02-24 13:39:52','','0000-00-00 00:00:00'),(5588,0,0,'MINST','GEN',0,'318','ENG','1GM  IV STAT THEN 500MG IV BD','Y','mitesh','2024-02-24 20:20:02','','0000-00-00 00:00:00'),(5589,0,0,'MINST','GEN',0,'319','ENG','IV OD THEN 250 IV OD','Y','mitesh','2024-02-24 20:20:20','','0000-00-00 00:00:00'),(5590,0,0,'MINST','GEN',0,'320','ENG','IV OD THEN 250 IV TDS','Y','mitesh','2024-02-24 20:20:42','','0000-00-00 00:00:00'),(5591,0,0,'MINST','GEN',0,'321','ENG','IV INFUSION','Y','mitesh','2024-02-24 20:29:22','','0000-00-00 00:00:00'),(5592,0,0,'MINST','GEN',0,'322','ENG','10ML IN 1 GLASS OF WATER DAILY','Y','mitesh','2024-02-25 11:35:58','','0000-00-00 00:00:00'),(5593,0,0,'MINST','GEN',0,'323','ENG','7ML TDS','Y','mitesh','2024-02-25 11:58:36','','0000-00-00 00:00:00'),(5594,0,0,'MINST','GEN',0,'324','ENG','1.5ML BD','Y','mitesh','2024-02-25 11:59:09','','0000-00-00 00:00:00'),(5595,0,0,'MINST','GEN',0,'325','ENG','2.5ML BD','Y','mitesh','2024-02-25 11:59:13','','0000-00-00 00:00:00'),(5596,0,0,'MINST','GEN',0,'326','ENG','AS PER ADVICED','Y','mitesh','2024-02-26 10:21:52','','0000-00-00 00:00:00'),(5597,0,0,'MINST','GEN',0,'327','ENG','AS P','Y','mitesh','2024-02-26 10:22:10','','0000-00-00 00:00:00'),(5598,0,0,'MINST','GEN',0,'328','ENG','10','Y','dasrath','2024-02-26 15:32:33','','0000-00-00 00:00:00'),(5599,0,0,'MINST','GEN',0,'329','ENG','2 AMP IV STAT','Y','mitesh','2024-02-26 22:36:03','','0000-00-00 00:00:00'),(5600,0,0,'MINST','GEN',0,'330','ENG','50cc ns 1ml /hr','Y','dasrath','2024-03-01 00:56:09','','0000-00-00 00:00:00'),(5601,0,0,'MINST','GEN',0,'331','ENG','TODAY THEN ','Y','mitesh','2024-03-01 09:58:17','','0000-00-00 00:00:00'),(5602,0,0,'MINST','GEN',0,'332','ENG','TODAY THEN 04/03/24 THEN ','Y','mitesh','2024-03-01 09:58:31','','0000-00-00 00:00:00'),(5603,0,0,'MINST','GEN',0,'333','ENG','TODAY THEN 04/03/24 THEN 08/03/24','Y','mitesh','2024-03-01 09:58:41','','0000-00-00 00:00:00'),(5604,0,0,'MINST','GEN',0,'334','ENG','2.5 MG BD','Y','dasrath','2024-03-04 15:08:28','','0000-00-00 00:00:00'),(5605,0,0,'MINST','GEN',0,'335','ENG','DIIN','Y','mitesh','2024-03-06 11:11:06','','0000-00-00 00:00:00'),(5606,0,0,'MINST','GEN',0,'336','ENG','2 TAB IV TDS','Y','pravin','2024-03-07 20:13:06','','0000-00-00 00:00:00'),(5607,0,0,'MINST','GEN',0,'337','ENG','5ML SOS','Y','mitesh','2024-03-08 20:22:29','','0000-00-00 00:00:00'),(5608,0,0,'MINST','GEN',0,'338','ENG','IM ONCE/WEEK','Y','mitesh','2024-03-16 19:23:47','','0000-00-00 00:00:00'),(5609,0,0,'MINST','GEN',0,'339','ENG','1 TAB ON SUNDAY AND MONDAY','Y','mitesh','2024-03-16 19:25:05','','0000-00-00 00:00:00'),(5610,0,0,'MINST','GEN',0,'340','ENG','3 AMP IN 50ML NS IV 5ML/HR','Y','pravin','2024-03-20 23:40:44','','0000-00-00 00:00:00'),(5611,0,0,'MINST','GEN',0,'341','ENG',' SOS IF PAIN','Y','pravin','2024-03-22 10:13:19','','0000-00-00 00:00:00'),(5612,0,0,'MINST','GEN',0,'342','ENG','( AFTER MEAL ) 1 TAB QDS','Y','pravin','2024-03-26 17:52:19','','0000-00-00 00:00:00'),(5613,0,0,'MINST','GEN',0,'343','ENG','a/c scale  ','Y','pravin','2024-03-27 16:21:00','','0000-00-00 00:00:00'),(5614,0,0,'MINST','GEN',0,'344','ENG','6ML + 6ML NS IV TDS','Y','pravin','2024-03-29 13:06:23','','0000-00-00 00:00:00'),(5615,0,0,'MINST','GEN',0,'345','ENG','( AFTER MEAL ) 10ML','Y','pravin','2024-03-29 13:47:34','','0000-00-00 00:00:00'),(5616,0,0,'MINST','GEN',0,'346','ENG','IM STAT TODAY','Y','mitesh','2024-03-29 15:49:28','','0000-00-00 00:00:00'),(5617,0,0,'MINST','GEN',0,'347','ENG','IM STAT ON 01/04/2024','Y','mitesh','2024-03-29 15:49:48','','0000-00-00 00:00:00'),(5618,0,0,'MINST','GEN',0,'348','ENG','IM STAT ON 04/04/24','Y','mitesh','2024-03-29 15:50:14','','0000-00-00 00:00:00'),(5619,0,0,'MINST','GEN',0,'349','ENG','IM STAT ON 01/04/24','Y','mitesh','2024-03-29 15:50:19','','0000-00-00 00:00:00'),(5620,0,0,'MINST','GEN',0,'350','ENG','IM DAILY','Y','mitesh','2024-04-01 10:51:44','','0000-00-00 00:00:00'),(5621,0,0,'MINST','GEN',0,'351','ENG','IM D','Y','mitesh','2024-04-01 10:51:49','','0000-00-00 00:00:00'),(5622,0,0,'MINST','GEN',0,'352','ENG','1/2 TABLET ALTERNATE DAY','Y','mitesh','2024-04-01 11:44:48','','0000-00-00 00:00:00'),(5623,0,0,'MINST','GEN',0,'353','ENG','BEFORE LUNCH AND DINNER','N','mitesh','2024-04-01 12:26:48','drarchit','2025-11-11 11:34:09'),(5624,0,0,'MINST','GEN',0,'354','ENG',' IV OD','Y','pravin','2024-04-08 16:03:50','','0000-00-00 00:00:00'),(5625,0,0,'MINST','GEN',0,'355','ENG','2.2ML SOS IF FEVER','Y','pravin','2024-04-08 16:10:54','','0000-00-00 00:00:00'),(5626,0,0,'MINST','GEN',0,'356','ENG','2.2ML  SOS IF FEVER','Y','pravin','2024-04-08 16:22:26','','0000-00-00 00:00:00'),(5627,0,0,'MINST','GEN',0,'357','ENG','50AMP IN 50ML NS IV 5ML/HR','Y','pravin','2024-04-09 18:32:56','','0000-00-00 00:00:00'),(5628,0,0,'MINST','GEN',0,'358','ENG','5 AMP IN 50ML NS IV 5ML/HR','Y','pravin','2024-04-09 18:33:08','','0000-00-00 00:00:00'),(5629,0,0,'MINST','GEN',0,'359','ENG','50 IU DILUTE WITH 50ML NS @ ACC TO RBS','Y','mitesh','2024-04-10 11:22:49','','0000-00-00 00:00:00'),(5630,0,0,'MINST','GEN',0,'360','ENG','1-1-1','Y','pravin','2024-04-18 14:59:17','','0000-00-00 00:00:00'),(5631,0,0,'MINST','GEN',0,'361','ENG','1-1-1-','Y','pravin','2024-04-18 14:59:23','','0000-00-00 00:00:00'),(5632,0,0,'MINST','GEN',0,'362','ENG','1GM  IV STAT ','Y','pravin','2024-04-28 01:05:46','','0000-00-00 00:00:00'),(5633,0,0,'MINST','GEN',0,'363','ENG','a/c to bp','Y','pravin','2024-04-28 01:14:11','','0000-00-00 00:00:00'),(5634,0,0,'MINST','GEN',0,'364','ENG','NEB TDS','Y','pravin','2024-04-28 01:21:49','','0000-00-00 00:00:00'),(5635,0,0,'MINST','GEN',0,'365','ENG','NEB BD','Y','pravin','2024-04-28 01:21:56','','0000-00-00 00:00:00'),(5636,0,0,'MINST','GEN',0,'366','ENG','OVER 4 HOUR','Y','pravin','2024-04-28 01:33:22','','0000-00-00 00:00:00'),(5637,0,0,'MINST','GEN',0,'367','ENG','  IV 100ML/HR','Y','pravin','2024-04-28 01:34:08','','0000-00-00 00:00:00'),(5638,0,0,'MINST','GEN',0,'368','ENG',' IV OVER 4 HOUR','Y','pravin','2024-04-28 01:34:12','','0000-00-00 00:00:00'),(5639,0,0,'MINST','GEN',0,'369','ENG','8 AMP[ IN 250ML D5% OVER 4 HOUR','Y','pravin','2024-04-28 01:40:14','','0000-00-00 00:00:00'),(5640,0,0,'MINST','GEN',0,'370','ENG','8 AMP[ IN 250ML D5% OVER 4 HOUR IV','Y','pravin','2024-04-28 01:40:39','','0000-00-00 00:00:00'),(5641,0,0,'MINST','GEN',0,'371','ENG','8 AMP  IN 250ML D5% OVER IV 4 HOUR','Y','pravin','2024-04-28 01:41:12','','0000-00-00 00:00:00'),(5642,0,0,'MINST','GEN',0,'372','ENG','( AFTER MEAL )1 TAB TDS','Y','pravin','2024-04-29 10:11:38','','0000-00-00 00:00:00'),(5643,0,0,'MINST','GEN',0,'373','ENG','DILUE WITH 10ML THEN 5 ML IV TDS','Y','pravin','2024-04-29 10:14:21','','0000-00-00 00:00:00'),(5644,0,0,'MINST','GEN',0,'374','ENG','IV 100ML/HR','Y','pravin','2024-05-02 09:08:52','','0000-00-00 00:00:00'),(5645,0,0,'MINST','GEN',0,'375','ENG','FOR GARGLES','Y','mitesh','2024-05-02 10:17:13','','0000-00-00 00:00:00'),(5646,0,0,'MINST','GEN',0,'376','ENG','( AFTER MEAL )2TAB  TDS','Y','pravin','2024-05-05 13:19:12','','0000-00-00 00:00:00'),(5647,0,0,'MINST','GEN',0,'377','ENG','5ML/HR','Y','pravin','2024-05-06 18:21:49','','0000-00-00 00:00:00'),(5648,0,0,'MINST','GEN',0,'378','ENG','5ML/HR INFUSION','Y','pravin','2024-05-06 18:22:03','','0000-00-00 00:00:00'),(5649,0,0,'MINST','GEN',0,'379','ENG','','Y','darshan','2025-10-09 10:45:29','','0000-00-00 00:00:00'),(5650,0,0,'MINST','GEN',0,'380','ENG','one tablet to be taken at time of headache','Y','darshan','2025-10-11 10:19:53','','0000-00-00 00:00:00'),(5651,0,0,'MINST','GEN',0,'380','GUJ','માથાનો દુખાવો સમયે એક ટેબ્લેટ લેવા','Y','darshan','2025-10-11 10:19:53','','0000-00-00 00:00:00'),(5652,0,0,'MINST','GEN',0,'380','HIN','सिरदर्द के समय एक गोली लेनी है','Y','darshan','2025-10-11 10:19:53','','0000-00-00 00:00:00'),(5653,0,0,'MINST','GEN',0,'381','ENG','at time of dizziness take one tablet','Y','darshan','2025-10-11 10:21:38','','0000-00-00 00:00:00'),(5654,0,0,'MINST','GEN',0,'381','GUJ','ચક્કર સમયે એક ટેબ્લેટ લો','Y','darshan','2025-10-11 10:21:38','','0000-00-00 00:00:00'),(5655,0,0,'MINST','GEN',0,'381','HIN','चक्कर आने पर एक गोली लें','Y','darshan','2025-10-11 10:21:38','','0000-00-00 00:00:00'),(5656,0,0,'MINST','GEN',0,'382','ENG','mon','Y','darshan','2025-10-11 10:29:20','','0000-00-00 00:00:00'),(5657,0,0,'PLAN','GEN',0,'13','ENG','at time of excersice if giddiness feels dont worry','Y','darshan','2025-10-11 10:51:55','','0000-00-00 00:00:00'),(5658,0,0,'PLAN','GEN',0,'13','GUJ','કસરત કરતી વખતે ચક્કર આવે તેની ચિંતા કરવી નહિ','Y','darshan','2025-10-11 10:51:55','','0000-00-00 00:00:00'),(5659,0,0,'MINST','GEN',0,'383','ENG','instill 2-3 drop in affected ear ','Y','darshan','2025-10-11 11:06:49','','0000-00-00 00:00:00'),(5660,0,0,'MINST','GEN',0,'383','GUJ','તકલીફ વાળા કાં માં 2-3 ટીપા નાખવા  ','Y','darshan','2025-10-11 11:06:49','','0000-00-00 00:00:00'),(5661,0,0,'MINST','GEN',0,'383','HIN','प्रभावित कान में 2-3 बूँदें','Y','darshan','2025-10-11 11:06:49','','0000-00-00 00:00:00'),(5662,0,0,'MINST','GEN',0,'384','ENG','monday- wednesday-friday','Y','darshan','2025-10-11 11:11:07','','0000-00-00 00:00:00'),(5663,0,0,'MINST','GEN',0,'384','GUJ','સોમવાર- બુધવાર-શુક્રવાર','Y','darshan','2025-10-11 11:11:07','','0000-00-00 00:00:00'),(5664,0,0,'MINST','GEN',0,'384','HIN','सोमवार-बुधवार-शुक्रवार','Y','darshan','2025-10-11 11:11:07','','0000-00-00 00:00:00'),(5665,0,0,'MINST','GEN',0,'385','ENG','first two days 1-1-1, next two days 1-0-1,last two days 0-1-0','Y','darshan','2025-10-11 12:14:13','','0000-00-00 00:00:00'),(5666,0,0,'MINST','GEN',0,'385','GUJ','પ્રથમ બે દિવસ 1-1-1, આગામી બે દિવસ 1-0-1, છેલ્લા બે દિવસ 0-1-0','Y','darshan','2025-10-11 12:14:13','','0000-00-00 00:00:00'),(5667,0,0,'MINST','GEN',0,'385','HIN','पहले दो दिन 1-1-1, अगले दो दिन 1-0-1, आखिरी दो दिन 0-1-0','Y','darshan','2025-10-11 12:14:13','','0000-00-00 00:00:00'),(5668,0,0,'MINST','GEN',0,'309','GUJ','દર અઠવાડીયે એક વખત સવારે નાશ્તા પછી ','Y','darshan','2025-10-13 11:41:36','','0000-00-00 00:00:00'),(5669,0,0,'MINST','GEN',0,'309','HIN','सप्ताह में एक बार एक कप दूध के साथ','Y','darshan','2025-10-13 11:41:36','','0000-00-00 00:00:00'),(5670,0,0,'MINST','GEN',0,'386','ENG','one tablet to be kept under tongue daily','Y','darshan','2025-10-13 12:40:01','','0000-00-00 00:00:00'),(5671,0,0,'MINST','GEN',0,'386','GUJ','જીભ ની નીચે એક ગોળી રોજ સવારે મુકાવી ','Y','darshan','2025-10-13 12:40:01','','0000-00-00 00:00:00'),(5672,0,0,'MINST','GEN',0,'386','HIN','प्रतिदिन एक गोली जीभ के नीचे रखनी होगी','Y','darshan','2025-10-13 12:40:01','','0000-00-00 00:00:00'),(5673,0,0,'MINST','GEN',0,'387','ENG','spray in both nostril ','Y','darshan','2025-10-13 13:07:15','','0000-00-00 00:00:00'),(5674,0,0,'MINST','GEN',0,'387','GUJ','બંને નાક માં સ્પ્રે કરવો ','Y','darshan','2025-10-13 13:07:15','','0000-00-00 00:00:00'),(5675,0,0,'MINST','GEN',0,'387','HIN','दोनों नथुनों में स्प्रे करें','Y','darshan','2025-10-13 13:07:15','','0000-00-00 00:00:00'),(5676,0,0,'PLAN','GEN',0,'14','ENG','blow your cheeks with pinched nose 40-50 times a day','Y','darshan','2025-10-14 13:08:57','','0000-00-00 00:00:00'),(5677,0,0,'PLAN','GEN',0,'14','GUJ','નાક બંધ રાખી 40-50 વખત ગાલ ના ફુગ્ગા ફુલાવવા ','Y','darshan','2025-10-14 13:08:57','','0000-00-00 00:00:00'),(5678,0,0,'PLAN','GEN',0,'14','HIN','दिन में 40-50 बार नाक भींचकर अपने गालों को फुलाएं','Y','darshan','2025-10-14 13:08:57','','0000-00-00 00:00:00'),(5679,0,0,'PLAN','GEN',0,'15','ENG','Dont put any drops or liquid in ear, keep it dry','Y','darshan','2025-10-24 12:04:49','','0000-00-00 00:00:00'),(5680,0,0,'PLAN','GEN',0,'15','GUJ','કાન માં કોઈ પણ ટીપા કે પ્રવાહી જવા દેવું નહિ , કાન ને સંપૂર્ણ કોરો રાખવો ','Y','darshan','2025-10-24 12:04:49','','0000-00-00 00:00:00'),(5681,0,0,'PLAN','GEN',0,'15','HIN','कान में कोई बूंद या तरल पदार्थ न डालें, इसे सूखा रखें','Y','darshan','2025-10-24 12:04:49','','0000-00-00 00:00:00'),(5682,0,0,'PLAN','GEN',0,'16','ENG','PATIENT CAN BE TAKEN FOR SURGERY WITH DUE ANESTHETIC DRUGS AND SURGICAL RISK','Y','drarchit','2025-10-27 12:15:53','','0000-00-00 00:00:00'),(5683,0,0,'PLAN','GEN',0,'16','GUJ','દર્દીને કારણે એનેસ્થેટિક દવાઓ અને સર્જિકલ જોખમ સાથે સર્જરી માટે લઈ શકાય છે','Y','drarchit','2025-10-27 12:15:53','','0000-00-00 00:00:00'),(5684,0,0,'PLAN','GEN',0,'16','HIN','रोगी को उचित संवेदनाहारी दवाओं और सर्जिकल जोखिम के साथ सर्जरी के लिए ले जाया जा सकता है','Y','drarchit','2025-10-27 12:15:53','','0000-00-00 00:00:00'),(5685,0,0,'MINST','GEN',0,'60','GUJ','ચૂસવું','Y','darshan','2025-10-27 19:03:34','','0000-00-00 00:00:00'),(5686,0,0,'MINST','GEN',0,'60','HIN','चूसा जाना','Y','darshan','2025-10-27 19:03:34','','0000-00-00 00:00:00'),(5687,0,0,'MINST','GEN',0,'388','ENG','BEFORE FOOD','Y','drjayant','2025-10-29 18:02:21','drarchit','2025-11-11 11:32:22'),(5688,0,0,'MINST','GEN',0,'389','ENG','IV SLOWLY','Y','drarchit','2025-10-29 18:10:36','','0000-00-00 00:00:00'),(5689,0,0,'MINST','GEN',0,'390','ENG','IV SLOWLY OVER 4 HRS TODAY','Y','drarchit','2025-10-29 18:11:13','','0000-00-00 00:00:00'),(5690,0,0,'MINST','GEN',0,'390','GUJ','IV આજે ધીમે ધીમે 4 કલાકથી વધુ','Y','drarchit','2025-10-29 18:11:13','','0000-00-00 00:00:00'),(5691,0,0,'MINST','GEN',0,'390','HIN','IV आज धीरे-धीरे 4 घंटे से अधिक','Y','drarchit','2025-10-29 18:11:13','','0000-00-00 00:00:00'),(5692,0,0,'MINST','GEN',0,'391','ENG','IV SLO','Y','drarchit','2025-10-29 18:16:50','','0000-00-00 00:00:00'),(5693,0,0,'MINST','GEN',0,'392','ENG','AFTER FOOD','Y','drjayant','2025-10-30 11:22:49','drarchit','2025-11-11 13:16:03'),(5694,0,0,'MINST','GEN',0,'393','ENG','IV 30 ML /HR','Y','drarchit','2025-10-30 13:56:10','','0000-00-00 00:00:00'),(5695,0,0,'MINST','GEN',0,'394','ENG','8 HRLY','Y','drarchit','2025-10-30 14:01:30','','0000-00-00 00:00:00'),(5696,0,0,'MINST','GEN',0,'395','ENG','at time of severe headache spray in only one nostril once --not in other nostril','Y','darshan','2025-11-03 10:53:41','','0000-00-00 00:00:00'),(5697,0,0,'MINST','GEN',0,'395','GUJ','તીવ્ર માથું દુખે ત્યારે એક જ નસકોરા માં એક જ   વખત સ્પ્રે કરવો --બીજા નસકોરા માં નથી કરવાનો ','Y','darshan','2025-11-03 10:53:41','','0000-00-00 00:00:00'),(5698,0,0,'MINST','GEN',0,'395','HIN','गंभीर सिरदर्द के समय केवल एक नथुने में एक बार स्प्रे करें - दूसरे नथुने में नहीं','Y','darshan','2025-11-03 10:53:41','','0000-00-00 00:00:00'),(5699,0,0,'MINST','GEN',0,'396','ENG','after','Y','drjayant','2025-11-04 17:57:15','','0000-00-00 00:00:00'),(5700,0,0,'MINST','GEN',0,'397','ENG','apply on affected area with soft hand','Y','darshan','2025-11-05 10:46:36','','0000-00-00 00:00:00'),(5701,0,0,'MINST','GEN',0,'397','GUJ','દુખાવા વાળા ભાગ પર હળવા હાથે લગાડવી  ','Y','darshan','2025-11-05 10:46:36','','0000-00-00 00:00:00'),(5702,0,0,'MINST','GEN',0,'397','HIN','प्रभावित क्षेत्र पर हल्के हाथ से लगाएं','Y','darshan','2025-11-05 10:46:36','','0000-00-00 00:00:00'),(5703,0,0,'MINST','GEN',0,'398','ENG','dissolve two spoon in one glass water at night and use after 15 mins','Y','darshan','2025-11-07 12:04:01','','0000-00-00 00:00:00'),(5704,0,0,'MINST','GEN',0,'398','GUJ','રાત્રે એક ગ્લાસ પાણીમાં બે ચમચી ઓગાળીને 15 મિનિટ પછી ઉપયોગ કરો','Y','darshan','2025-11-07 12:04:01','','0000-00-00 00:00:00'),(5705,0,0,'MINST','GEN',0,'398','HIN','रात को दो चम्मच एक गिलास पानी में घोलकर 15 मिनट बाद प्रयोग करें','Y','darshan','2025-11-07 12:04:01','','0000-00-00 00:00:00'),(5706,0,0,'MINST','GEN',0,'399','ENG','before m','Y','drarchit','2025-11-11 11:25:47','','0000-00-00 00:00:00'),(5707,0,0,'MINST','GEN',0,'388','GUJ','ભોજન પહેલાં','Y','drarchit','2025-11-11 11:32:22','','0000-00-00 00:00:00'),(5708,0,0,'MINST','GEN',0,'400','ENG','IF REQUIRED','Y','drarchit','2025-11-11 11:35:43','','0000-00-00 00:00:00'),(5709,0,0,'MINST','GEN',0,'400','GUJ','જરૂર પડે ત્યારે ','Y','drarchit','2025-11-11 11:35:43','','0000-00-00 00:00:00'),(5710,0,0,'MINST','GEN',0,'392','GUJ','ભોજન પછી','Y','drarchit','2025-11-11 13:16:03','','0000-00-00 00:00:00'),(5711,0,0,'MINST','GEN',0,'401','ENG','IV @ 5ML','Y','drarchit','2025-11-13 11:12:46','','0000-00-00 00:00:00'),(5712,0,0,'PLAN','GEN',0,'17','ENG','avoid chewing hard food','Y','darshan','2025-11-17 17:38:50','','0000-00-00 00:00:00'),(5713,0,0,'PLAN','GEN',0,'17','GUJ','સખત ખોરાક ચાવવાનું ટાળો','Y','darshan','2025-11-17 17:38:50','','0000-00-00 00:00:00'),(5714,0,0,'PLAN','GEN',0,'17','HIN','कठोर भोजन चबाने से बचें','Y','darshan','2025-11-17 17:38:50','','0000-00-00 00:00:00'),(5715,0,0,'PLAN','GEN',0,'18','ENG','hot fomantation in at pain site','Y','darshan','2025-11-17 17:41:25','','0000-00-00 00:00:00'),(5716,0,0,'PLAN','GEN',0,'18','GUJ','દુખાવા ની જગ્યા પર ગરમ શેક કરવો ','Y','darshan','2025-11-17 17:41:25','','0000-00-00 00:00:00'),(5717,0,0,'PLAN','GEN',0,'18','HIN','दर्द वाली जगह पर गर्म सिंकाई करें','Y','darshan','2025-11-17 17:41:25','','0000-00-00 00:00:00'),(5718,0,0,'MINST','GEN',0,'402','ENG','take two drops on tip of bud and apply in affected ear','Y','darshan','2025-11-18 10:53:52','','0000-00-00 00:00:00'),(5719,0,0,'MINST','GEN',0,'402','GUJ','રૂ વળી સળી  પર ટીપા લઇ ને કાન માં  ચોપડવા ','Y','darshan','2025-11-18 10:53:52','','0000-00-00 00:00:00'),(5720,0,0,'MINST','GEN',0,'402','HIN','कली के सिरे पर दो बूंदें लें और प्रभावित कान में लगाएं','Y','darshan','2025-11-18 10:53:52','','0000-00-00 00:00:00'),(5721,0,0,'MINST','GEN',0,'403','ENG','take two drops on tip of bud and apply in affected ear','Y','darshan','2025-11-18 10:53:53','','0000-00-00 00:00:00'),(5722,0,0,'MINST','GEN',0,'403','GUJ','રૂ વળી સળી  પર ટીપા લઇ ને કાન માં  ચોપડવા ','Y','darshan','2025-11-18 10:53:53','','0000-00-00 00:00:00'),(5723,0,0,'MINST','GEN',0,'403','HIN','कली के सिरे पर दो बूंदें लें और प्रभावित कान में लगाएं','Y','darshan','2025-11-18 10:53:53','','0000-00-00 00:00:00'),(5724,0,0,'MINST','GEN',0,'404','ENG','AFTER MEAL','Y','drarchit','2025-11-26 13:55:55','','0000-00-00 00:00:00'),(5725,0,0,'MINST','GEN',0,'405','ENG','BEFORE FOO','Y','drjayant','2025-11-29 13:10:04','','0000-00-00 00:00:00'),(5726,0,0,'MINST','GEN',0,'406','ENG','with milk','Y','drjayant','2025-12-10 18:31:59','','0000-00-00 00:00:00'),(5727,0,0,'MINST','GEN',0,'407','ENG','`','Y','darshan','2025-12-12 10:47:13','','0000-00-00 00:00:00'),(5728,0,0,'MINST','GEN',0,'408','ENG','( A0FTER MEAL )','Y','darshan','2025-12-15 18:27:40','','0000-00-00 00:00:00'),(5729,0,0,'MINST','GEN',0,'409','ENG','WITH WATER/ MILK','Y','drjayant','2025-12-22 18:32:23','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `multi_lengual_instruction_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `namostute_usmanpura_api_response`
--

DROP TABLE IF EXISTS `namostute_usmanpura_api_response`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `namostute_usmanpura_api_response` (
  `uh_id` int(11) NOT NULL,
  `op_id` bigint(20) NOT NULL,
  `ip_id` bigint(20) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `req_date` date NOT NULL,
  `sample_id` int(11) NOT NULL,
  `ushmanpura_job_id` int(11) NOT NULL,
  `ushmanpura_cust_id` int(11) NOT NULL,
  `status` tinyint(4) NOT NULL,
  `error_msg` varchar(50) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `namostute_usmanpura_api_response`
--

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

--
-- Table structure for table `navigation`
--

DROP TABLE IF EXISTS `navigation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `navigation` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `Main_Menu_Code` char(5) NOT NULL,
  `Sub_Menu_Code` char(5) NOT NULL,
  `Sub_Menu_Order_No` int(11) NOT NULL,
  `Icon_Class` varchar(20) NOT NULL,
  `File_Name` text NOT NULL,
  `Shortcut_Code` varchar(6) NOT NULL,
  `Laravel_Url` enum('Y','N') NOT NULL DEFAULT 'N',
  `Active_Flag` enum('Y','N') NOT NULL,
  `Updated_By` varchar(15) NOT NULL,
  `Last_Updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`company_id`,`branch_id`,`Main_Menu_Code`,`Sub_Menu_Code`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `navigation`
--

LOCK TABLES `navigation` WRITE;
/*!40000 ALTER TABLE `navigation` DISABLE KEYS */;
INSERT INTO `navigation` VALUES (0,0,'M0001','',7,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0001','S0014',2,'','./../../pages/registration/calendar.php','','N','Y','thims','2024-05-02 12:53:30'),(0,0,'M0001','S0021',4,'','./../../pages/registration/new.php','','N','Y','thims','2024-05-02 12:53:30'),(0,0,'M0001','S0022',6,'','./../../pages/registration/oplist.php','','N','Y','thims','2024-05-02 12:53:30'),(0,0,'M0001','S0265',13,'','./../../pages/Doctor/queue_display.php','','N','Y','thims','2024-05-02 12:53:30'),(0,0,'M0001','S0266',1,'','./../../pages/registration/patientRegistration.php','','N','Y','thims','2024-05-02 12:53:30'),(0,0,'M0001','S0311',7,'','./../../pages/ward/emergencyPatientList.php','','N','Y','thims','2024-05-02 12:53:30'),(0,0,'M0001','S0492',16,'','./../../pages/Doctor/pq1.php','','N','Y','thims','2024-05-02 12:53:30'),(0,0,'M0002','',8,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0002','S0024',1,'','./../../pages/Doctor/pq.php','','N','Y','thims','2022-03-10 05:45:59'),(0,0,'M0002','S0313',5,'','./../../pages/ward/physiotherapyRequest.php','','N','Y','thims','2022-03-10 05:45:59'),(0,0,'M0002','S0314',6,'','./../../pages/ward/nursingStationRequest.php','','N','Y','thims','2022-03-10 05:45:59'),(0,0,'M0002','S0398',2,'','./../../pages/Doctor/patQueueList.php','','N','Y','thims','2022-03-10 05:45:59'),(0,0,'M0002','S0421',2,'','./../../pages/Doctor/patQueueListForMO.php','','N','Y','thims','2022-03-10 05:45:59'),(0,0,'M0003','',31,'','','','Y','Y','thims','2024-07-10 11:13:22'),(0,0,'M0003','S0029',1,'','./../../pages/ward/ward_req.php?grp_cd=LAB','','N','Y','thims','2024-05-03 07:06:54'),(0,0,'M0003','S0030',2,'','./../../pages/lab/dept_lab_service.php','','N','Y','thims','2024-05-03 07:06:54'),(0,0,'M0003','S0032',4,'','./../../pages/ward/lab_repo_in.php?grp_cd=LAB','','N','Y','thims','2024-05-03 07:06:54'),(0,0,'M0003','S0034',8,'','','','N','Y','thims','2024-05-03 07:06:54'),(0,0,'M0003','S0382',3,'','./../../pages/lab/dept_lab_service.php?onlyPrinting=Y','','N','Y','thims','2024-05-03 07:06:54'),(0,0,'M0003','S0497',9,'','','','N','Y','thims','2024-05-03 07:06:54'),(0,0,'M0004','',23,'','','','Y','Y','thims','2024-07-10 11:13:22'),(0,0,'M0004','S0043',1,'','./../../pages/billing/ipd_bill.php?ipd_opd=I','','N','Y','thims','2024-09-19 12:00:05'),(0,0,'M0004','S0044',2,'','./../../pages/ipd_bill/ipd_bill_reprint.php','','N','Y','thims','2024-09-19 12:00:05'),(0,0,'M0004','S0045',3,'','./../../pages/cancle/all_bill_cancel.php?ipd_opd=I','','N','Y','thims','2024-09-19 12:00:05'),(0,0,'M0004','S0171',4,'','./../../pages/billing/finalBillList.php?ipdOpd=I','','N','Y','thims','2024-09-19 12:00:05'),(0,0,'M0004','S0252',9,'','./../../pages/cancle/advance_cancel.php','','N','Y','thims','2024-09-19 12:00:05'),(0,0,'M0004','S0254',10,'','../../pages/billing/estimated_deposit.php','','N','Y','thims','2024-09-19 12:00:05'),(0,0,'M0004','S0388',11,'','./../../pages/billing/swapAmtDenomination.php','','N','Y','thims','2024-09-19 12:00:05'),(0,0,'M0004','S0413',13,'','./../../pages/ipd_bill/ipBillRateEdit.php','','N','Y','thims','2024-09-19 12:00:05'),(0,0,'M0004','S0518',24,'','./../../pages/cancle/all_bill_cancel.php?ipd_opd=I&&bill_entity=L','','N','Y','thims','2024-09-19 12:00:05'),(0,0,'M0004','S0530',25,'','./../../pages/cancle/all_bill_cancel.php?ipd_opd=I&&bill_entity=M','','N','Y','thims','2024-09-19 12:00:05'),(0,0,'M0004','S0563',26,'','./../../pages/cancle/all_bill_cancel.php?ipd_opd=I','','N','Y','thims','2024-09-19 12:00:05'),(0,0,'M0005','',25,'','','','Y','Y','thims','2024-07-10 11:13:22'),(0,0,'M0005','S0049',16,'','./../../pages/report/user_wise_collection_input.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0140',1,'','./../../pages/report/appointment_list.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0141',2,'','./../../pages/report/dateinput.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0142',4,'','./../../pages/report/reff_Doc_Report.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0143',3,'','./../../pages/billing/opd_input.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0144',7,'','./../../pages/ipd_bill/ipd_advance_input.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0145',11,'','./../../pages/room/room_alocation_in.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0146',13,'','./../../pages/room/room_status.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0147',12,'','./../../pages/ipd_bill/ipd_discharge_input.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0148',5,'','./../../pages/ipd_bill/ipd_reg_input.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0168',9,'','./../../pages/ipd_bill/service_charge_report_all.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0169',10,'','./../../pages/ipd_bill/accountStatementSummaryInput.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0170',6,'','./../../pages/ipd_bill/ipd_input.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0172',17,'','./../../pages/report/total_collection_summary_input.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0173',21,'','./../../pages/report/discharge_summary.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0176',24,'','./../../pages/report/3C_Daily_Case_Register_Input.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0224',25,'','./../../pages/report/Ledger_Report_Input.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0230',26,'','./../../pages/report/reff_Doc_Report.php?type=D','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0231',27,'','./../../pages/report/mlc_input.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0232',28,'','./../../pages/report/preg_input.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0234',29,'','./../../pages/report/Receipt_Report_Input.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0235',30,'','./../../pages/report/Day_Care_Input.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0312',32,'','./../../pages/report/operationReport.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0329',33,'','./../../pages/report/op_ip_bill_report_summary.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0349',34,'','./../../pages/report/Visiting_report_input.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0350',35,'','./../../pages/ipd_bill/ipd_advance_refund.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0372',36,'','./../../pages/report/roomOccupancyHistoryInput.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0373',37,'','./../../pages/report/iPBillAmendmentInput.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0385',38,'','./../../pages/report/write_off_report_input.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0387',39,'','./../../pages/report/denominationReport.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0391',40,'','./../../pages/report/outstandingReport.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0393',41,'','./../../pages/report/serviceWiseDetailInput.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0412',42,'','./../../pages/report/inPatientListInput.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0415',43,'','./../../pages/report/edd_report.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0435',44,'','./../../pages/report/write_off_report_input.php?report_type=M','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0436',45,'','./../../pages/report/write_off_report_input.php?report_type=M','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0511',46,'','./../../pages/report/patientNotVisited.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0515',47,'','./../../pages/report/selfRegistrationReport.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0520',48,'','./../../pages/ipd_bill/ipd_input.php?billing_entity=L','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0521',49,'','./../../pages/report/Receipt_Report_Input.php?billing_entity=L','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0522',50,'','./../../pages/billing/opd_input.php?billing_entity=M','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0523',51,'','./../../pages/report/Receipt_Report_Input.php?billing_entity=M','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0524',52,'','./../../pages/ipd_bill/ipd_input.php?billing_entity=M','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0531',53,'','./../../pages/ipd_bill/ipd_advance_input.php?billing_entity=M','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0532',54,'','./../../pages/ipd_bill/ipd_advance_input.php?billing_entity=L','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0535',55,'','./../../pages/report/roomCategoryWiseOccupancy.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0536',56,'','./../../pages/report/inPatientRoomDayWise.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0561',57,'','./../../pages/report/billReportDetailReffDocWise.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0005','S0567',58,'','../../pages/report/medicine_prescription_report_input.php','','N','Y','thims','2025-12-05 05:46:51'),(0,0,'M0006','',35,'','','','Y','Y','thims','2024-07-10 11:13:22'),(0,0,'M0006','S0056',2,'','./../../pages/ward/ward_req.php?grp_cd=XRY','','N','Y','thims','2024-06-24 09:24:42'),(0,0,'M0006','S0057',3,'','./../../pages/radiology/radiology_dashboard.php','','N','Y','thims','2024-06-24 09:24:42'),(0,0,'M0006','S0063',8,'','./../../pages/lab/general_master.php?master_cd=Xsize','','N','Y','thims','2024-06-24 09:24:42'),(0,0,'M0006','S0547',1,'','./../../pages/radiology/radiology_dashboard.php','','N','Y','thims','2024-06-24 09:24:42'),(0,0,'M0007','',22,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0007','S0064',2,'','./../../pages/ward/exam_medi_reco_result_V1.php','','N','Y','thims','2021-07-23 07:00:31'),(0,0,'M0007','S0306',9,'','./../../pages/ward/operationDetail.php','','N','Y','thims','2021-07-23 07:00:31'),(0,0,'M0007','S0327',11,'','./../../pages/report/surgery_schedule_report.php','','N','Y','thims','2021-07-23 07:00:31'),(0,0,'M0007','S0355',10,'','./../../pages/ward/operationDetail_Edit.php','','N','Y','thims','2021-07-23 07:00:31'),(0,0,'M0012','',402,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0012','S0094',3,'','','','N','Y','thims','2020-08-06 05:11:12'),(0,0,'M0012','S0095',4,'','./../../pages/setup/encounter_master.php','','N','Y','thims','2020-08-06 05:11:12'),(0,0,'M0012','S0096',5,'','./../../pages/lab/general_master.php?master_cd=Profile','','N','Y','thims','2020-08-06 05:11:12'),(0,0,'M0012','S0097',6,'','./../../pages/lab/general_master.php?master_cd=ENCGP','','N','Y','thims','2020-08-06 05:11:12'),(0,0,'M0012','S0098',7,'','./../../pages/setup/holiday_list.php','','N','Y','thims','2020-08-06 05:11:12'),(0,0,'M0012','S0238',21,'','./../../pages/admin/backup_ui.php','','N','Y','thims','2020-08-06 05:11:12'),(0,0,'M0012','S0366',30,'','./../../pages/admin/UserAccess.php','','N','Y','thims','2020-08-06 05:11:12'),(0,0,'M0013','',401,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0013','S0101',1,'','./../../pages/setup/hospital.php','','N','Y','thims','2022-04-29 10:57:09'),(0,0,'M0013','S0102',2,'','./../../pages/setup/appointment_setup.php','','N','Y','thims','2022-04-29 10:57:09'),(0,0,'M0013','S0105',5,'','./../../pages/admin/sms_setup.php','','N','Y','thims','2022-04-29 10:57:09'),(0,0,'M0013','S0125',19,'','./../../pages/setup/User_Access_Control.php','','N','Y','thims','2022-04-29 10:57:09'),(0,0,'M0013','S0126',20,'','./../../pages/setup/Sub_Navigation_Master.php','','N','Y','thims','2022-04-29 10:57:09'),(0,0,'M0013','S0165',21,'','./../../pages/setup/holiday_list.php','','N','Y','thims','2022-04-29 10:57:09'),(0,0,'M0013','S0166',18,'','./../../pages/setup/user_display.php','','N','Y','thims','2022-04-29 10:57:09'),(0,0,'M0013','S0267',24,'','../../pages/setup/document_setup.php','','N','Y','thims','2022-04-29 10:57:09'),(0,0,'M0013','S0269',25,'','./../../pages/setup/rateMaster.php','','N','Y','thims','2022-04-29 10:57:09'),(0,0,'M0013','S0275',27,'','./../../pages/certificate/certificate_list.php','','N','Y','thims','2022-04-29 10:57:09'),(0,0,'M0013','S0369',29,'','./../../pages/lab/general_master.php?master_cd=DISCSUMM','','N','Y','thims','2022-04-29 10:57:09'),(0,0,'M0013','S0389',30,'','./../../pages/admin/sms_setup.php?type=S','','N','Y','thims','2022-04-29 10:57:09'),(0,0,'M0013','S0390',31,'','./../../pages/admin/sms_setup.php?type=C','','N','Y','thims','2022-04-29 10:57:09'),(0,0,'M0014','',403,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0014','S0118',1,'','./../../pages/admin/general_code_master.php','','N','Y','thims','2024-07-10 11:28:15'),(0,0,'M0014','S0121',4,'','./../../pages/setup/parameterSetup.php','','N','Y','thims','2024-07-10 11:28:15'),(0,0,'M0014','S0258',24,'','./../../pages/report/login_audit_report.php','','N','Y','thims','2024-07-10 11:28:15'),(0,0,'M0014','S0560',404,'','./../../pages/admin/dataFieldsModification.php','','N','Y','thims','2024-07-10 11:28:15'),(0,0,'M0015','',65,'','','','Y','Y','thims','2024-07-10 11:13:22'),(0,0,'M0015','S0309',25,'','./../../pages/report/operationReport.php','','N','Y','thims','2024-05-03 08:58:45'),(0,0,'M0015','S0310',26,'','./../../pages/report/doctorwise_investigation.php','','N','Y','thims','2024-05-03 08:58:45'),(0,0,'M0015','S0344',28,'','./../../pages/billing/outstanding_report.php','','N','Y','thims','2024-05-03 08:58:45'),(0,0,'M0015','S0351',29,'','./../../pages/report/dayWiseHospitalEarningReport.php','','N','Y','thims','2024-05-03 08:58:45'),(0,0,'M0015','S0352',30,'','Item/medicalStoreCollectionReportInput','','Y','Y','thims','2024-05-03 08:58:45'),(0,0,'M0015','S0374',31,'','./../../pages/report/radiologyRequestWaitingTimeInput.php','','N','Y','thims','2024-05-03 08:58:45'),(0,0,'M0015','S0375',32,'','./../../pages/report/consultancyWaitingTimeInput.php','','N','Y','thims','2024-05-03 08:58:45'),(0,0,'M0015','S0488',66,'','./../../pages/report/mis_daily_report.php','','N','Y','thims','2024-05-03 08:58:45'),(0,0,'M0015','S0496',67,'','./../../pages/report/turnAroundTimeLabReqInput.php','','N','Y','thims','2024-05-03 08:58:45'),(0,0,'M0015','S0505',27,'','./../../pages/report/op_ip_bill_report_summary.php','','N','Y','thims','2024-05-03 08:58:45'),(0,0,'M0016','',9,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0016','S0035',1,'','./../../pages/billing/bill.php?ipd_opd=O','','N','Y','thims','2024-05-03 12:09:09'),(0,0,'M0016','S0293',7,'','./../../pages/cancle/all_bill_cancel.php?ipd_opd=O','','N','Y','thims','2024-05-03 12:09:09'),(0,0,'M0016','S0394',8,'','./../../pages/billing/finalBillList.php?ipdOpd=O','','N','Y','thims','2024-05-03 12:09:09'),(0,0,'M0016','S0416',9,'','./../../pages/billing/patientBillList.php?billView=Y','','N','Y','thims','2024-05-03 12:09:09'),(0,0,'M0016','S0529',10,'','./../../pages/cancle/all_bill_cancel.php?ipd_opd=O&&bill_entity=M','','N','Y','thims','2024-05-03 12:09:09'),(0,0,'M0017','',21,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0017','S0039',1,'','./../../pages/registration/ipd_reg_new.php','','N','Y','thims','2024-05-03 06:42:37'),(0,0,'M0017','S0040',2,'','./../../pages/registration/iplist.php','','N','Y','thims','2024-05-03 06:42:37'),(0,0,'M0017','S0150',3,'','./../../pages/report/discharge_summary.php','','N','Y','thims','2024-05-03 06:42:37'),(0,0,'M0017','S0378',5,'','./../../pages/registration/dischargeDateRectification.php','','N','Y','thims','2024-05-03 06:42:38'),(0,0,'M0017','S0379',4,'','./../../pages/registration/admitDateRectification.php','','N','Y','thims','2024-05-03 06:42:37'),(0,0,'M0017','S0383',6,'','./../../pages/registration/roomRelease.php?access=Y','','N','Y','thims','2024-05-03 06:42:38'),(0,0,'M0017','S0494',7,'','./../../pages/registration/room_reservation.php','','N','Y','thims','2024-05-03 06:42:38'),(0,0,'M0017','S0495',8,'','./../../pages/registration/roomBlock.php?blockAccess=Y','','N','Y','thims','2024-05-03 06:42:38'),(0,0,'M0018','',150,'','./../../pages/nurse/dept_nurse.php?grp_cd=NURS','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0019','',51,'','./../../pages/admin/sendsms.php','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0020','',404,'','./../../pages/setup/release_display.php','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0021','',405,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0021','S0131',17,'','./../../pages/admin/service_master.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0132',4,'','./../../pages/admin/medicine_master.php?item_type=M','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0133',9,'','./../../pages/lab/general_master.php?master_cd=Minst&&name=Medi Instruction Master','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0134',3,'','./../../pages/registration/patient_list.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0135',10,'','./../../pages/ward/examination_master.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0136',12,'','./../../pages/admin/operation_master.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0137',11,'','./../../pages/lab/general_master.php?master_cd=OPCAT','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0138',13,'','./../../pages/lab/general_master.php?master_cd=OTROOM','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0139',14,'','./../../pages/lab/general_master.php?master_cd=DISGTYPE','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0153',6,'','./../../pages/medi/drug_master.php?item_type=M','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0154',5,'','./../../pages/lab/general_master.php?master_cd=Ptype','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0155',2,'','./../../pages/admin/doctor_setup.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0156',25,'','./../../pages/admin/business_assoc_master.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0157',24,'','./../../pages/admin/doctor_setup.php?doctor_category=R','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0158',26,'','./../../pages/room/room_cat.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0159',27,'','./../../pages/room/room_master.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0160',1,'','./../../pages/admin/department.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0161',20,'','./../../pages/admin/service_grp_master.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0163',7,'','./../../pages/admin/diagnosis_master.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0164',8,'','./../../pages/admin/diagnosis_medicine.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0248',15,'','./../../pages/ward/frequency_type_master.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0249',16,'','./../../pages/ward/frequency_type_sub_master.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0253',29,'','./../../pages/setup/programListMaster.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0255',30,'','../../pages/admin/deposit_structure_master.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0256',31,'','../../pages/lab/general_master.php?master_cd=OPG','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0257',32,'','./../../pages/admin/opdChargeMaster.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0268',33,'','./../../pages/lab/general_master.php?master_cd=PMODE','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0271',34,'','./../../pages/setup/patientAddressMaster.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0377',35,'','./../../pages/report/socMasterInput.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0396',36,'','./../../pages/admin/package_configuration.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0403',37,'','./../../pages/setup/agency_master.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0407',38,'','./../../pages/admin/imei_master.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0410',39,'','./../../pages/setup/ins_tpa_master.php?master_cd=INS','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0411',40,'','./../../pages/setup/ins_tpa_master.php?master_cd=TPA','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0419',41,'','./../../pages/setup/multi_language_inst.php?mli_grp=MINST','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0420',42,'','./../../pages/setup/multi_language_inst.php?mli_grp=PLAN','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0489',406,'','./../../pages/admin/vitalMaster.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0490',407,'','./../../pages/report/uploadCharges.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0493',408,'','./../../pages/registration/pat_list.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0500',409,'','./../../pages/lab/general_master.php?master_cd=Ptype&&mst=Medicine Type','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0501',410,'','./../../pages/setup/tapperingDoseMaster.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0502',411,'','./../..//pages/admin/kit_master.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0503',412,'','./../../pages/lab/general_master.php?master_cd=Ginst&&mst=General Instuructio','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0504',413,'','./../../pages/lab/general_master.php?master_cd=MFREQ','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0506',414,'','./../../pages/admin/business_assoc_master.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0507',415,'','./../../pages/admin/sch_master.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0513',416,'','./../../pages/admin/additionalVitalsMaster.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0514',417,'','./../../pages/lab/general_master.php?master_cd=OPCAREP','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0021','S0565',418,'','./../../pages/admin/medicine_inst_dose_mapping.php','','N','Y','thims','2025-10-10 12:40:29'),(0,0,'M0022','',3,'','./../../pages/dashboard/dashboard.php?requestFor=all','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0023','',95,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0023','S0177',24,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0178',25,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0179',26,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0180',27,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0182',29,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0183',30,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0184',31,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0185',32,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0186',33,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0187',34,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0188',35,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0189',36,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0190',37,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0191',38,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0233',43,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0236',44,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0237',45,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0278',47,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0279',48,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0326',49,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0348',50,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0371',51,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0380',52,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0400',53,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0417',54,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0491',96,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0512',97,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0519',98,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0533',99,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0023','S0562',100,'','','','N','Y','thims','2024-09-05 06:36:54'),(0,0,'M0024','',0,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0198',27,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0199',28,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0200',29,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0201',30,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0202',31,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0203',32,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0204',33,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0205',34,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0207',36,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0209',38,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0212',41,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0213',42,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0214',43,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0215',44,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0216',45,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0217',46,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0218',47,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0223',52,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0239',53,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0240',54,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0291',55,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0292',56,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0307',57,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0308',58,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0346',59,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0347',60,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0358',62,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0359',63,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0361',65,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0362',66,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0363',67,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0364',68,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0365',69,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0367',70,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0368',71,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0376',72,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0384',73,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0395',74,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0437',75,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0510',76,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0516',91,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0517',92,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0525',93,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0526',94,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0527',95,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0528',96,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0534',97,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0024','S0566',98,'','','','N','Y','thims','2025-10-13 05:53:28'),(0,0,'M0025','',100,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0025','S0225',1,'','','','N','Y','thims','2018-05-30 12:42:23'),(0,0,'M0025','S0226',2,'','','','N','Y','thims','2018-05-30 12:42:23'),(0,0,'M0025','S0227',3,'','','','N','Y','thims','2018-05-30 12:42:23'),(0,0,'M0025','S0228',4,'','','','N','Y','thims','2018-05-30 12:42:23'),(0,0,'M0025','S0229',5,'','','','N','Y','thims','2018-05-30 12:42:23'),(0,0,'M0027','',44,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0027','S0250',3,'','./../../pages/report/opBillShareReport.php','','N','Y','thims','2024-05-03 07:29:55'),(0,0,'M0027','S0251',4,'','./../../pages/report/ipBillShareReport.php','','N','Y','thims','2024-05-03 07:29:55'),(0,0,'M0027','S0429',5,'','./../../pages/report/three_tier_revenue_share_report_input.php','','N','Y','thims','2024-05-03 07:29:55'),(0,0,'M0027','S0431',6,'','./../../pages/report/three_tier_revenue_share_Edit.php','','N','Y','thims','2024-05-03 07:29:55'),(0,0,'M0027','S0498',1,'','./../../pages/setup/revenuesetup.php','','N','Y','thims','2024-05-03 07:29:55'),(0,0,'M0027','S0499',2,'','./../../pages/setup/revenue_setup_new.php','','N','Y','thims','2024-05-03 07:29:55'),(0,0,'M0028','',5,'','./../../pages/dashboard/patientDetailsDashboard.php','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0029','',41,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0029','S0259',30,'','','','Y','Y','thims','2022-05-06 06:38:26'),(0,0,'M0029','S0260',31,'','','','Y','Y','thims','2022-05-06 06:38:26'),(0,0,'M0029','S0261',32,'','','','Y','Y','thims','2022-05-06 06:38:26'),(0,0,'M0029','S0290',33,'','updateproduct/input','','Y','Y','thims','2022-05-06 06:38:26'),(0,0,'M0029','S0356',34,'','','','Y','Y','thims','2022-05-06 06:38:26'),(0,0,'M0029','S0432',35,'','','','N','Y','thims','2022-05-06 06:38:26'),(0,0,'M0030','',45,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0030','S0262',2,'','','','Y','Y','thims','2020-10-08 05:02:21'),(0,0,'M0030','S0263',3,'','','','Y','Y','thims','2020-10-08 05:02:21'),(0,0,'M0030','S0264',4,'','','','Y','Y','thims','2020-10-08 05:02:21'),(0,0,'M0030','S0274',7,'','','','Y','Y','thims','2020-10-08 05:02:21'),(0,0,'M0031','',105,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0031','S0272',1,'','./../../pages/report/UploadSalary.php','','N','Y','thims','2020-01-16 06:56:19'),(0,0,'M0031','S0281',34,'','','','Y','Y','thims','2020-01-16 06:56:19'),(0,0,'M0031','S0282',35,'','','','Y','Y','thims','2020-01-16 06:56:19'),(0,0,'M0031','S0283',36,'','','','Y','Y','thims','2020-01-16 06:56:19'),(0,0,'M0031','S0284',37,'','','','Y','Y','thims','2020-01-16 06:56:19'),(0,0,'M0031','S0285',38,'','employeedirectory','','Y','Y','thims','2020-01-16 06:56:19'),(0,0,'M0031','S0288',40,'','./../../pages/report/UploadEmployee.php','','N','Y','thims','2020-01-16 06:56:19'),(0,0,'M0031','S0294',41,'','','','N','Y','thims','2020-01-16 06:56:19'),(0,0,'M0031','S0304',42,'','','','N','Y','thims','2020-01-16 06:56:19'),(0,0,'M0031','S0305',32,'','Dashboard/index','','Y','Y','thims','2020-01-16 06:56:19'),(0,0,'M0031','S0315',43,'','','','N','Y','thims','2020-01-16 06:56:19'),(0,0,'M0031','S0316',44,'','PaySlip','','Y','Y','thims','2020-01-16 06:56:19'),(0,0,'M0031','S0317',46,'','Hrms/ConfirmationLetterInput','','Y','Y','thims','2020-01-16 06:56:19'),(0,0,'M0031','S0331',45,'','EmployeePaySlip','','Y','Y','thims','2020-01-16 06:56:19'),(0,0,'M0031','S0353',47,'','','','N','Y','thims','2020-01-16 06:56:19'),(0,0,'M0032','',2,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0032','S0295',4,'','./../../pages/report/ViewPaySlip.php','','N','Y','thims','2021-05-26 13:19:28'),(0,0,'M0032','S0296',5,'','ApplyLeave','','Y','Y','thims','2021-05-26 13:19:28'),(0,0,'M0032','S0297',6,'','ApproveLeave','','Y','Y','thims','2021-05-26 13:19:28'),(0,0,'M0032','S0298',8,'','CompensatoryWork/index','','Y','Y','thims','2021-05-26 13:19:28'),(0,0,'M0032','S0299',9,'','ApproveCompensatory','','Y','Y','thims','2021-05-26 13:19:28'),(0,0,'M0032','S0300',10,'','LeaveList/List','','Y','Y','thims','2021-05-26 13:19:28'),(0,0,'M0032','S0302',11,'','CompensatoryWorkList/List','','Y','Y','thims','2021-05-26 13:19:28'),(0,0,'M0032','S0325',12,'','MyLeaveList/LeaveList','','Y','Y','thims','2021-05-26 13:19:28'),(0,0,'M0032','S0328',13,'','Hrms/hrmsHolidayList','','Y','Y','thims','2021-05-26 13:19:28'),(0,0,'M0032','S0330',7,'','leaveassign','','Y','Y','thims','2021-05-26 13:19:28'),(0,0,'M0032','S0354',14,'','./../../pages/survey/survey.php','','N','Y','thims','2021-05-26 13:19:28'),(0,0,'M0032','S0402',15,'','./../../pages/admin/smvs_attendance_check.php','','N','Y','thims','2021-05-26 13:19:28'),(0,0,'M0033','',6,'','./../../pages/setup/pricePreview.php','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0034','',42,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0034','S0318',5,'','../../pages/tallyxml/supplier_export_ui.php','','N','Y','thims','2022-05-27 11:29:00'),(0,0,'M0034','S0319',6,'','../../pages/tallyxml/purchase_medicine_export_ui.php','','N','Y','thims','2022-05-27 11:29:00'),(0,0,'M0034','S0320',7,'','../../pages/tallyxml/stock_item_export_ui.php','','N','Y','thims','2022-05-27 11:29:00'),(0,0,'M0034','S0321',8,'','../../pages/tallyxml/purchase_voucher_export_ui.php','','N','Y','thims','2022-05-27 11:29:00'),(0,0,'M0034','S0322',9,'','../../pages/tallyxml/sales_voucher_export_ui.php','','N','Y','thims','2022-05-27 11:29:00'),(0,0,'M0034','S0323',3,'','../../pages/tallyxml/billing_voucher_export_ui.php','','N','Y','thims','2022-05-27 11:29:00'),(0,0,'M0034','S0324',4,'','../../pages/tallyxml/receipt_voucher_export_ui.php','','N','Y','thims','2022-05-27 11:29:00'),(0,0,'M0034','S0334',10,'','','','N','Y','thims','2022-05-27 11:29:00'),(0,0,'M0034','S0338',11,'','../../pages/tallyxml/purchase_voucher_summary_export_ui.php','','N','Y','thims','2022-05-27 11:29:00'),(0,0,'M0034','S0339',12,'','../../pages/tallyxml/sales_voucher_summary_export_ui.php','','N','Y','thims','2022-05-27 11:29:00'),(0,0,'M0034','S0340',13,'','../../pages/tallyxml/sales_voucher_credit_export_ui.php','','N','Y','thims','2022-05-27 11:29:00'),(0,0,'M0034','S0341',14,'','../../pages/tallyxml/pharmacy_receipt_voucher_export_ui.php','','N','Y','thims','2022-05-27 11:29:00'),(0,0,'M0034','S0414',15,'','./../../pages/tallyxml/tallyxmlFlagUpdate.php','','N','Y','thims','2022-05-27 11:29:00'),(0,0,'M0034','S0433',1,'','./../../pages/tallyxml/op_billing_detail_voucher_export_ui.php','','N','Y','thims','2022-05-27 11:29:00'),(0,0,'M0034','S0434',2,'','./../../pages/tallyxml/op_receipt_detail_voucher_export_ui.php','','N','Y','thims','2022-05-27 11:29:00'),(0,0,'M0035','',24,'','','','Y','Y','thims','2024-07-10 11:13:22'),(0,0,'M0035','S0333',36,'','./../../pages/billing/opBillPartiallyEdit.php','','N','Y','thims','2024-05-03 06:47:25'),(0,0,'M0035','S0343',38,'','./../../pages/billing/partiallyCreditBill.php','','N','Y','thims','2024-05-03 06:47:25'),(0,0,'M0035','S0418',39,'','./../../pages/billing/billEditSearchList.php','','N','Y','thims','2024-05-03 06:47:25'),(0,0,'M0036','',43,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0036','S0336',20,'','Tally/gstr1ExcelInput','','Y','Y','thims','2019-10-01 12:59:54'),(0,0,'M0036','S0337',21,'','Tally/gstr2ExcelInput','','Y','Y','thims','2019-10-01 12:59:54'),(0,0,'M0036','S0342',22,'','Tally/gstr3bExcelInput','','Y','Y','thims','2019-10-01 12:59:54'),(0,0,'M0037','',901,'','./../../pages/dashboard/doctorWiseListDashboard.php','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0038','',501,'','./../../pages/admin/helpdesk.php','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0039','',902,'','./../../pages/dashboard/ip_billing_workbook.php','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0040','',4,'','./../../pages/dashboard/dashboard.php','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0041','',1,'','./../../pages/admin/transaction_history.php','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0042','',60,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0042','S0424',1,'','./../../pages/report/socMasterInput.php','','N','Y','thims','2022-04-28 09:41:00'),(0,0,'M0042','S0425',2,'','./../../pages/report/uploadDeptWiseCharges.php','','N','Y','thims','2022-04-28 09:41:00'),(0,0,'M0042','S0426',3,'','./../../pages/report/uploadConsultantWiseCharges.php','','N','Y','thims','2022-04-28 09:41:00'),(0,0,'M0042','S0427',5,'','./../../pages/report/uploadSurgeryGradeWiseCharges.php','','N','Y','thims','2022-04-28 09:41:00'),(0,0,'M0042','S0428',4,'','./../../pages/report/uploadCharges.php','','N','Y','thims','2022-04-28 09:41:00'),(0,0,'M0043','',36,'','./../../pages/radiology/radiology_dashboard.php?dashboard=cardiac','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0044','',125,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0044','S0438',1,'','./../../pages/BMW/department_daily_waste_details_entry.php?logintype=depart','','N','Y','thims','2023-02-25 13:39:21'),(0,0,'M0044','S0439',2,'','./../../pages/BMW/department_daily_waste_details_entry.php?logintype=BMW','','N','Y','thims','2023-02-25 13:39:21'),(0,0,'M0044','S0440',3,'',' ./../../pages/BMW/waste_disposal_through_agency.php','','N','Y','thims','2023-02-25 13:39:21'),(0,0,'M0044','S0441',4,'','./../../pages/BMW/waste_register_report.php','','N','Y','thims','2023-02-25 13:39:21'),(0,0,'M0044','S0442',5,'','./../../pages/BMW/location_master.php','','N','Y','thims','2023-02-25 13:39:21'),(0,0,'M0044','S0443',6,'','./../../pages/setup/agency_master.php?master_cd=BMW','','N','Y','thims','2023-02-25 13:39:21'),(0,0,'M0044','S0444',7,'','./../../pages/bin/bin_master.php','','N','Y','thims','2023-02-25 13:39:21'),(0,0,'M0044','S0445',8,'','./../../pages/bin/route_master.php','','N','Y','thims','2023-02-25 13:39:21'),(0,0,'M0045','',130,'','./../../pages/admin/sms_setup.php','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0046','',135,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0046','S0446',1,'','./../../pages/mrd/mrd_setup.php','','N','Y','thims','2023-02-25 13:41:01'),(0,0,'M0046','S0447',2,'','./../../pages/mrd/mrd_setup.php?type=v','','N','Y','thims','2023-02-25 13:41:01'),(0,0,'M0046','S0448',3,'','./../../pages/mrd/mrd_movement_setup.php','','N','Y','thims','2023-02-25 13:41:01'),(0,0,'M0046','S0449',4,'','./../../pages/mrd/mrd_input.php','','N','Y','thims','2023-02-25 13:41:01'),(0,0,'M0046','S0450',5,'','./../../pages/mrd/mrd_movement_input.php','','N','Y','thims','2023-02-25 13:41:01'),(0,0,'M0046','S0451',6,'','./../../pages/lab/general_master.php?master_cd=MRDOCS','','N','Y','thims','2023-02-25 13:41:01'),(0,0,'M0047','',503,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0047','S0452',1,'','./../../pages/Complaint_Tracking/requests_other.php?ract=raise&&rtype=other','','N','Y','thims','2023-02-25 13:42:22'),(0,0,'M0047','S0453',2,'','./../../pages/Complaint_Tracking/requests_other.php?ract=resolve&&rtype=other','','N','Y','thims','2023-02-25 13:42:22'),(0,0,'M0047','S0454',3,'','./../../pages/Complaint_Tracking/request_view_for_admin?ract=view','','N','Y','thims','2023-02-25 13:42:22'),(0,0,'M0047','S0455',4,'','./../../pages/complaint tracking/requests.php?ract=raise&&rtype=asset','','N','Y','thims','2023-02-25 13:42:22'),(0,0,'M0047','S0456',5,'','./../../pages/complaint tracking/requests.php?ract=resolve&&rtype=asset','','N','Y','thims','2023-02-25 13:42:22'),(0,0,'M0048','',145,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0048','S0457',1,'','./../../pages/cssm/cssm_setup.php','','N','Y','thims','2023-02-25 13:43:06'),(0,0,'M0048','S0458',2,'','./../../pages/cssm/cssm_Item_receipt.php','','N','Y','thims','2023-02-25 13:43:06'),(0,0,'M0049','',150,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0049','S0459',1,'','./../../pages/LinenManagement/addLinen.php','','N','Y','thims','2023-02-25 13:46:04'),(0,0,'M0049','S0460',2,'','./../../pages/LinenManagement/IW_add.php','','N','Y','thims','2023-02-25 13:46:04'),(0,0,'M0049','S0461',3,'','./../../pages/LinenManagement/RW_add.php','','N','Y','thims','2023-02-25 13:46:04'),(0,0,'M0049','S0462',4,'','./../../pages/LinenManagement/IL_add.php','','N','Y','thims','2023-02-25 13:46:04'),(0,0,'M0049','S0463',5,'','./../../pages/LinenManagement/RL_add.php','','N','Y','thims','2023-02-25 13:46:04'),(0,0,'M0049','S0464',6,'','./../../pages/LinenManagement/EOL_add.php','','N','Y','thims','2023-02-25 13:46:04'),(0,0,'M0049','S0465',7,'','./../../pages/LinenManagement/lnStockStatus.php','','N','Y','thims','2023-02-25 13:46:04'),(0,0,'M0049','S0466',8,'','./../../pages/LinenManagement/lnTransactionRegForm.php','','N','Y','thims','2023-02-25 13:46:04'),(0,0,'M0049','S0467',9,'','./../../pages/LinenManagement/DailyTrnRecord.php','','N','Y','thims','2023-02-25 13:46:04'),(0,0,'M0049','S0468',10,'','./../../pages/lab/general_master.php?master_cd=LAUNDRY','','N','Y','thims','2023-02-25 13:46:04'),(0,0,'M0049','S0469',11,'','./../../pages/Gatepass/gate_pass_report?mat_type=ln','','N','Y','thims','2023-02-25 13:46:04'),(0,0,'M0049','S0470',12,'','./../../pages/Gatepass/entry_gate_pass_report.php?mat_type=ln','','N','Y','thims','2023-02-25 13:46:04'),(0,0,'M0049','S0471',13,'','./../../pages/help/help_master.php?htype=U&moduletype=LINENM','','N','Y','thims','2023-02-25 13:46:04'),(0,0,'M0050','',155,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0050','S0472',1,'','./../../pages/Gatepass/gatepass_setup.php?type=entry','','N','Y','thims','2023-02-25 13:47:31'),(0,0,'M0050','S0473',2,'','./../../pages/Gatepass/gatepass_setup.php?type=approval','','N','Y','thims','2023-02-25 13:47:31'),(0,0,'M0050','S0474',3,'','./../../pages/Gatepass/gatepass_setup.php?type=approval_by_supervisor','','N','Y','thims','2023-02-25 13:47:31'),(0,0,'M0050','S0475',4,'','./../../pages/Gatepass/gatepass_setup.php?type=Outward_Inward','','N','Y','thims','2023-02-25 13:47:31'),(0,0,'M0050','S0476',5,'','./../../pages/Gatepass/entry_gate_pass_report.php?mat_type=ot','','N','Y','thims','2023-02-25 13:47:31'),(0,0,'M0050','S0477',6,'','./../../pages/Gatepass/gate_pass_report?mat_type=ot','','N','Y','thims','2023-02-25 13:47:31'),(0,0,'M0051','',160,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0051','S0478',1,'','./../../pages/Diet_Management/meal_master.php','','N','Y','thims','2024-05-03 11:41:47'),(0,0,'M0051','S0479',2,'','./../../pages/Diet_Management/meal_master.php','','N','Y','thims','2024-05-03 11:41:47'),(0,0,'M0051','S0480',3,'','./../../pages/lab/general_master.php?master_cd=MLCMB','','N','Y','thims','2024-05-03 11:41:47'),(0,0,'M0051','S0481',4,'','./../../pages/Diet_Management/meal_combo_master.php','','N','Y','thims','2024-05-03 11:41:47'),(0,0,'M0051','S0482',5,'','./../../pages/Diet_Management/meal_combo_request.php?type=R','','N','Y','thims','2024-05-03 11:41:47'),(0,0,'M0051','S0483',6,'','./../../pages/Diet_Management/meal_combo_request.php?type=C','','N','Y','thims','2024-05-03 11:41:47'),(0,0,'M0051','S0484',7,'','./../../pages/Diet_Management/diet_management_report.php','','N','Y','thims','2024-05-03 11:41:47'),(0,0,'M0051','S0485',8,'','./../../pages/help/help_master.php?htype=U&moduletype=DIETM','','N','Y','thims','2024-05-03 11:41:47'),(0,0,'M0051','S0508',161,'','./../../pages/Diet_Management/patient_diet_composition.php','','N','Y','thims','2024-05-03 11:41:47'),(0,0,'M0051','S0509',162,'','./../../pages/Diet_Management/dietCompositionReport.php','','N','Y','thims','2024-05-03 11:41:47'),(0,0,'M0052','',502,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0052','S0486',1,'','./../../pages/help/help_master.php?htype=U&moduletype=DIET','','N','Y','thims','2023-02-25 13:50:46'),(0,0,'M0052','S0487',2,'','./../../pages/help/help_master.php?htype=S','','N','Y','thims','2023-02-25 13:50:46'),(0,0,'M0053','',4,'','./../../pages/admin/backup_dashboard.php','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0054','',8,'','./../../pages/Doctor/nursingAssessmentInput.php','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0055','',42,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0055','S0537',43,'','Item/ConsignmentPurchase','','Y','Y','thims','2024-05-21 12:58:48'),(0,0,'M0055','S0538',44,'','Item/ConsignmentPurchaseReturn','','Y','Y','thims','2024-05-21 12:58:48'),(0,0,'M0055','S0539',45,'','TransactionDashboard/ConsignmentPurchase','','Y','Y','thims','2024-05-21 12:58:48'),(0,0,'M0055','S0540',46,'','TransactionDashboard/ConsignmentPurchaseReturn','','Y','Y','thims','2024-05-21 12:58:48'),(0,0,'M0055','S0541',47,'','Item/ConsignmentDeliveryChallan','','Y','Y','thims','2024-05-21 12:58:48'),(0,0,'M0055','S0542',48,'','Item/ConsignmentDeliveryChallanReturn','','Y','Y','thims','2024-05-21 12:58:48'),(0,0,'M0055','S0543',49,'','StorePo/ConsignmentPurchaseOrder','','Y','Y','thims','2024-05-21 12:58:48'),(0,0,'M0055','S0544',50,'','Item/ConsignmentRegisterInput','','Y','Y','thims','2024-05-21 12:58:48'),(0,0,'M0055','S0545',51,'','Item/dcTranOfConsItemsWithPoFilter','','Y','Y','thims','2024-05-21 12:58:48'),(0,0,'M0055','S0546',52,'','Item/consStoreStockStateWithSuppFilter','','Y','Y','thims','2024-05-21 12:58:48'),(0,0,'M0056','',0,'','','','N','Y','thims','2024-07-10 11:13:22'),(0,0,'M0056','S0548',1,'','','','N','Y','thims','2024-07-10 11:27:34'),(0,0,'M0056','S0549',2,'','','','N','Y','thims','2024-07-10 11:27:34'),(0,0,'M0056','S0550',3,'','','','N','Y','thims','2024-07-10 11:27:34'),(0,0,'M0056','S0551',4,'','','','N','Y','thims','2024-07-10 11:27:34'),(0,0,'M0056','S0552',5,'','','','N','Y','thims','2024-07-10 11:27:34'),(0,0,'M0056','S0553',6,'','','','N','Y','thims','2024-07-10 11:27:34'),(0,0,'M0056','S0554',7,'','','','N','Y','thims','2024-07-10 11:27:34'),(0,0,'M0056','S0555',8,'','','','N','Y','thims','2024-07-10 11:27:34'),(0,0,'M0056','S0556',9,'','','','N','Y','thims','2024-07-10 11:27:34'),(0,0,'M0056','S0557',10,'','','','N','Y','thims','2024-07-10 11:27:34'),(0,0,'M0056','S0558',11,'','','','N','Y','thims','2024-07-10 11:27:34'),(0,0,'M0056','S0559',12,'','','','N','Y','thims','2024-07-10 11:27:34'),(0,0,'S0034','C0009',1,'','./../../pages/lab/general_master.php?master_cd=Lcat','','N','Y','yatin','2021-11-01 09:59:35'),(0,0,'S0034','C0010',2,'','./../../pages/lab/patho_test_master.php?grp_cd=LAB','','N','Y','yatin','2021-11-01 09:59:35'),(0,0,'S0034','C0011',4,'','./../../pages/lab/patho_report_test.php?grp_cd=LAB','','N','Y','yatin','2021-11-01 09:59:35'),(0,0,'S0034','C0073',3,'','./../../pages/lab/lab_test_group.php?grp_cd=LAB','','N','Y','yatin','2021-11-01 09:59:35'),(0,0,'S0034','C0074',5,'','./../../pages/lab/lab_test_group.php?grp_cd=LAB&&preview=Y','','N','Y','yatin','2021-11-01 09:59:35'),(0,0,'S0034','C0236',6,'','./../../pages/report/lab_service_test.php','','N','Y','yatin','2021-11-01 09:59:35'),(0,0,'S0034','C0246',7,'','./../../pages/admin/btob_charges.php','','N','Y','yatin','2021-11-01 09:59:35'),(0,0,'S0094','',6,'far fa-circle','./../../pages/lab/general_master.php?master_cd=PCatg&&name=Patient Category','','N','Y','ts-admin','2018-03-29 10:10:54'),(0,0,'S0094','C0063',1,'far fa-circle','./../../pages/admin/import_csv.php','','N','Y','thims','2018-04-07 06:43:45'),(0,0,'S0094','C0068',6,'far fa-circle','./../../pages/lab/general_master.php?master_cd=PCatg&&name=Patient Category','','N','Y','thims','2018-04-07 06:43:45'),(0,0,'S0094','C0069',7,'far fa-circle','./../../pages/setup/investigation_master.php','','N','Y','thims','2018-04-07 06:43:45'),(0,0,'S0094','C0070',8,'far fa-circle','./../../pages/lab/general_master.php?master_cd=AGENCY','','N','Y','thims','2018-04-07 06:43:45'),(0,0,'S0259','',0,'','','','N','Y','yatin','2021-08-11 07:29:59'),(0,0,'S0259','C0075',1,'','Item/purchase','','Y','Y','thims','2023-12-27 12:50:20'),(0,0,'S0259','C0076',2,'','Item/purchaseReturn','','Y','Y','thims','2023-12-27 12:50:20'),(0,0,'S0259','C0077',3,'','Item/issue','','Y','Y','thims','2023-12-27 12:50:20'),(0,0,'S0259','C0078',4,'','Item/issueReturn','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0079',6,'','Item/adjustment','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0080',7,'','Item/PaymentCollection','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0115',8,'','TransactionDashboard/Purchase','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0116',9,'','TransactionDashboard/PurchaseReturn','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0117',10,'','TransactionDashboard/Issue','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0118',11,'','TransactionDashboard/IssueReturn','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0176',12,'','Item/stockCycleCount','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0181',13,'','Item/conversion','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0184',14,'','Item/issueBillHospitalInternal','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0185',15,'','Item/purchaseAmendment','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0186',16,'','Item/issueBillPartiallyAmendment','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0187',17,'','Item/issueBillAmendment','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0188',5,'','StoreItem/Transfer','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0200',18,'','Item/StockInquiry','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0218',19,'','Item/ExpiryUpdateTransaction','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0219',20,'','Item/MrpUpdateTransaction','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0220',21,'','Item/OpeningStockUpdateTransaction','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0224',22,'','StorePoDashboard/PharmacyUser','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0225',23,'','StorePoDashboard/PharmacySuperUser','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0228',24,'','Item/purchaseWithPo','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0235',25,'','./../../pages/report/materialTransferToVasna.php','','N','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0237',26,'','Item/BarcodeBasedProductInquiry','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0238',27,'','Item/issueBillDiscountAmendment','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0239',28,'','Item/ProductBarcodeDelete','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0259',29,'','Item/medicinereorderInput','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0259','C0261',17,'','Item/issueReturnBillAmendment','','Y','Y','thims','2023-12-27 12:50:21'),(0,0,'S0260','C0081',1,'','Category/list','','Y','Y','thims','2023-08-16 10:18:00'),(0,0,'S0260','C0082',2,'','Discount/list','','Y','Y','thims','2023-08-16 10:18:00'),(0,0,'S0260','C0083',3,'','Drug/list','','Y','Y','thims','2023-08-16 10:18:00'),(0,0,'S0260','C0084',4,'','Manufacturers/list','','Y','Y','thims','2023-08-16 10:18:00'),(0,0,'S0260','C0085',5,'','Products/list','','Y','Y','thims','2023-08-16 10:18:00'),(0,0,'S0260','C0086',6,'','ProductGroup/list','','Y','Y','thims','2023-08-16 10:18:00'),(0,0,'S0260','C0087',7,'','Suppliers/list/PHA','','Y','Y','thims','2023-08-16 10:18:00'),(0,0,'S0260','C0088',8,'','Unit/list','','Y','Y','thims','2023-08-16 10:18:00'),(0,0,'S0260','C0258',9,'','Item/StoreWiseProductDetails','','Y','Y','thims','2023-08-16 10:18:00'),(0,0,'S0261','C0089',1,'','StoreItem/storeStockLedgerInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0090',3,'','Item/RegisterInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0091',4,'','Item/SalesCollectionInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0092',5,'','StoreItem/storeStockStatementInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0093',6,'','Item/billReprint','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0094',7,'','Item/UnInitializedProductInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0095',8,'','Item/productlistInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0096',9,'','Item/productExpiryInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0097',10,'','Item/supplierwisesaleInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0098',12,'','Item/patientwisedataInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0099',13,'','Item/medicineSaleInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0100',14,'','Item/medicinereorderInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0101',15,'','Item/profitReportInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0138',16,'','Item/patientwisedataInputCredit','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0139',17,'','Item/PurchaseVoucherInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0157',18,'','Item/ReceiptReprint','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0167',19,'','Item/OutstandingInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0175',20,'','Item/stockCycleReport','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0178',21,'','Item/stockCycleReportOrignal','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0179',24,'','Item/receiptInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0191',25,'','Item/billWiseGstInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0192',23,'','Item/stockCycleRelease','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0193',27,'','Item/medicalStoreCollectionReportInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0196',28,'','Item/BarcodeprintInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0197',29,'','Item/BarcodeReprintInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0198',30,'','Item/BarcodeIssueReturnPrintInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0199',31,'','Item/productStockStoreWiseInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0205',2,'','StoreItem/storeStockLedgerInputWithFreeze','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0207',32,'','./../../pages/report/outstandingReport.php','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0208',33,'','Item/SalesWriteOffInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0210',34,'','Item/productConsumptionReportInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0213',35,'','Item/ipMedicineIssueLeadTimeReportInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0214',11,'','Item/PurchaseDetailReportInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0215',22,'','Item/DoctorWiseSalesReportInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0216',26,'','Item/trnWiseGstInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0226',36,'','Item/stockCycleReportItemWise','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0227',37,'','StorePo/PharmacyReprint','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0229',38,'','Item/ReorderRequestReportInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0230',39,'','Item/SalesDiscountReportInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0231',40,'','Item/deadStockInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0234',41,'','Item/BillReceiptUnsettleInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0241',42,'','Item/prodListWithManufaDataFilter','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0242',43,'','Item/narcoticsAndHighRiskFilter','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0247',44,'','Item/PatientWiseProfitReportInput','','N','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0248',45,'','Item/ProductBarcodeStockInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0257',46,'','Item/HSNReport','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0261','C0260',47,'','Item/ReorderRequestReportInput','','Y','Y','thims','2024-03-08 07:31:00'),(0,0,'S0262','C0102',1,'','StoreItem/Purchase','','Y','Y','yatin','2021-10-30 11:26:32'),(0,0,'S0262','C0103',5,'','StoreItem/PurchaseReturn','','Y','Y','yatin','2021-10-30 11:26:33'),(0,0,'S0262','C0104',3,'','StoreItem/Issue','','Y','Y','yatin','2021-10-30 11:26:33'),(0,0,'S0262','C0105',7,'','StoreItem/IssueReturn','','Y','Y','yatin','2021-10-30 11:26:33'),(0,0,'S0262','C0119',4,'','StoreItem/Adjustment','','Y','Y','yatin','2021-10-30 11:26:33'),(0,0,'S0262','C0120',2,'','StoreItem/PurchaseWithPo','','Y','Y','yatin','2021-10-30 11:26:32'),(0,0,'S0262','C0121',6,'','StoreItem/PurchaseReturnWithPo','','Y','Y','yatin','2021-10-30 11:26:33'),(0,0,'S0262','C0124',8,'','StoreItem/Transfer','','Y','Y','yatin','2021-10-30 11:26:33'),(0,0,'S0262','C0209',9,'','Item/StockInquiry','','Y','Y','yatin','2021-10-30 11:26:33'),(0,0,'S0262','C0221',10,'','Item/StoreExpiryUpdateTransaction','','Y','Y','yatin','2021-10-30 11:26:33'),(0,0,'S0262','C0222',11,'','Item/StoreMrpUpdateTransaction','','Y','Y','yatin','2021-10-30 11:26:33'),(0,0,'S0262','C0223',12,'','Item/StoreOpeningStockUpdateTransaction','','Y','Y','yatin','2021-10-30 11:26:33'),(0,0,'S0262','C0243',13,'','StoreMrDashboard/User','','Y','Y','yatin','2021-10-30 11:26:33'),(0,0,'S0262','C0244',14,'','StoreMrDashboard/SuperUser','','Y','Y','yatin','2021-10-30 11:26:33'),(0,0,'S0262','C0245',15,'','StoreMrDashboard/ApprovedMaterialRequestList','','Y','Y','yatin','2021-10-30 11:26:33'),(0,0,'S0263','C0106',1,'','Category/list','','Y','Y','thims','2020-06-25 06:32:35'),(0,0,'S0263','C0107',2,'','Manufacturers/list','','Y','Y','thims','2020-06-25 06:32:35'),(0,0,'S0263','C0108',3,'','StoreProducts/list','','Y','Y','thims','2020-06-25 06:32:35'),(0,0,'S0263','C0109',4,'','StoreDepartment/list','','Y','Y','thims','2020-06-25 06:32:35'),(0,0,'S0263','C0110',5,'','ProductGroup/list','','Y','Y','thims','2020-06-25 06:32:35'),(0,0,'S0263','C0111',6,'','Suppliers/list/PHA','','Y','Y','thims','2020-06-25 06:32:35'),(0,0,'S0263','C0112',7,'','Unit/list','','Y','Y','thims','2020-06-25 06:32:35'),(0,0,'S0263','C0206',8,'','./../../pages/lab/general_master.php?master_cd=STORE','','N','Y','thims','2020-06-25 06:32:35'),(0,0,'S0264','C0113',2,'','StoreItem/RegisterInput','','Y','Y','thims','2020-12-07 09:38:41'),(0,0,'S0264','C0114',4,'','StoreItem/storeProductListInput','','Y','Y','thims','2020-12-07 09:38:41'),(0,0,'S0264','C0162',3,'','StoreItem/storeStockStatementInput','','Y','Y','thims','2020-12-07 09:38:41'),(0,0,'S0264','C0163',1,'','StoreItem/storeStockLedgerInput','','Y','Y','thims','2020-12-07 09:38:41'),(0,0,'S0264','C0164',6,'','StoreItem/PurchaseVoucherInput','','Y','Y','thims','2020-12-07 09:38:41'),(0,0,'S0264','C0165',8,'','StoreItem/productIssueInput','','Y','Y','thims','2020-12-07 09:38:41'),(0,0,'S0264','C0166',9,'','StoreItem/medicinereorderInput','','Y','Y','thims','2020-12-07 09:38:41'),(0,0,'S0264','C0180',10,'','StoreItem/storeTransferInput','','Y','Y','thims','2020-12-07 09:38:41'),(0,0,'S0264','C0190',11,'','StorePo/Reprint','','Y','Y','thims','2020-12-07 09:38:41'),(0,0,'S0264','C0211',7,'','StoreItem/PurchaseDetailReportInput','','Y','Y','thims','2020-12-07 09:38:41'),(0,0,'S0264','C0212',5,'','StoreItem/productExpiryInput','','Y','Y','thims','2020-12-07 09:38:41'),(0,0,'S0264','C0232',12,'','Item/deadStockInput','','Y','Y','thims','2020-12-07 09:38:41'),(0,0,'S0274','C0122',1,'','StorePoDashboard/User','','Y','Y','thims','2022-10-07 07:39:04'),(0,0,'S0274','C0123',2,'','StorePoDashboard/SuperUser','','Y','Y','thims','2022-10-07 07:39:04'),(0,0,'S0274','C0233',3,'','StorePo/StorePurchaseOrderAmendment','','Y','Y','thims','2022-10-07 07:39:04'),(0,0,'S0281','C0126',1,'','jobtitle','','Y','Y','thims','2020-06-10 11:27:02'),(0,0,'S0281','C0127',2,'','employee_status','','Y','Y','thims','2020-06-10 11:27:02'),(0,0,'S0281','C0128',3,'','JobCategory/list','','Y','Y','thims','2020-06-10 11:27:02'),(0,0,'S0281','C0156',4,'','StoreDepartment/list','','Y','Y','thims','2020-06-10 11:27:02'),(0,0,'S0281','C0161',5,'','HrmsSubDepartment/list','','Y','Y','thims','2020-06-10 11:27:02'),(0,0,'S0282','C0129',1,'','skill','','Y','Y','thims','2019-02-28 13:05:54'),(0,0,'S0282','C0130',2,'','employee_education','','Y','Y','thims','2019-02-28 13:05:54'),(0,0,'S0283','C0131',1,'','reportmethod','','Y','Y','thims','2019-04-20 10:11:09'),(0,0,'S0283','C0132',2,'','workweek','','Y','Y','thims','2019-04-20 10:11:09'),(0,0,'S0283','C0136',3,'','terminationreason','','Y','Y','thims','2019-04-20 10:11:09'),(0,0,'S0283','C0141',4,'','leaveperiod','','Y','Y','thims','2019-04-20 10:11:09'),(0,0,'S0283','C0149',5,'','leavetype','','','Y','thims','2019-04-20 10:11:09'),(0,0,'S0284','',0,'','','','','Y','thims','2019-04-02 08:57:33'),(0,0,'S0284','C0137',2,'','Hrms/leaveUsageInput','','Y','Y','thims','2019-06-21 12:55:58'),(0,0,'S0284','C0142',3,'','leaveentitlement','','Y','Y','thims','2019-06-21 12:55:58'),(0,0,'S0284','C0143',8,'','LeaveList/List','','Y','Y','thims','2019-06-21 12:55:58'),(0,0,'S0284','C0169',4,'','clleaveentitlement','','Y','Y','thims','2019-06-21 12:55:58'),(0,0,'S0284','C0170',5,'','yearlyleaveentitlementforemployee','','Y','Y','thims','2019-06-21 12:55:58'),(0,0,'S0284','C0171',6,'','yearlyleaveentitlementfortrainee','','Y','Y','thims','2019-06-21 12:55:58'),(0,0,'S0284','C0172',7,'','yearlyleaveentitlementfordoctor','','Y','Y','thims','2019-06-21 12:55:58'),(0,0,'S0294','C0144',1,'','employeereport','','Y','Y','thims','2019-10-24 11:12:53'),(0,0,'S0294','C0145',2,'','leaveentitlementsrep','','Y','Y','thims','2019-10-24 11:12:53'),(0,0,'S0294','C0146',3,'','leaveentitlementsrep_emp','','Y','Y','thims','2019-10-24 11:12:53'),(0,0,'S0294','C0147',4,'','Hrms/DepartmentReport','','Y','Y','thims','2019-10-24 11:12:53'),(0,0,'S0294','C0148',5,'','Hrms/JobTitleData','','Y','Y','thims','2019-10-24 11:12:53'),(0,0,'S0294','C0154',6,'','Hrms/employeeBirthdayInput','','Y','Y','thims','2019-10-24 11:12:53'),(0,0,'S0294','C0155',7,'','Hrms/employeeDependentInput','','Y','Y','thims','2019-10-24 11:12:53'),(0,0,'S0294','C0158',8,'','Hrms/employeeReportExcelInput','','Y','Y','thims','2019-10-24 11:12:53'),(0,0,'S0294','C0159',9,'','Hrms/probationCompletionInput','','Y','Y','thims','2019-10-24 11:12:53'),(0,0,'S0294','C0160',10,'','Hrms/UANRegistrationDetails','','Y','Y','thims','2019-10-24 11:12:53'),(0,0,'S0294','C0168',11,'','Hrms/AttritionAndNewJoineeReportInput','','Y','Y','thims','2019-10-24 11:12:53'),(0,0,'S0294','C0189',12,'','Hrms/salaryRevisionInput','','Y','Y','thims','2019-10-24 11:12:53'),(0,0,'S0304','C0150',1,'','add_employee','','Y','Y','thims','2021-05-11 07:27:11'),(0,0,'S0304','C0151',2,'','employeelist','','Y','Y','thims','2021-05-11 07:27:11'),(0,0,'S0304','C0152',3,'','traineelist','','Y','Y','thims','2021-05-11 07:27:11'),(0,0,'S0304','C0153',4,'','doctorlist','','Y','Y','thims','2021-05-11 07:27:11'),(0,0,'S0315','C0173',1,'','CalculateSalary','','Y','Y','thims','2019-07-06 11:28:09'),(0,0,'S0315','C0174',2,'','CalculateSalaryfortrainee','','Y','Y','thims','2019-07-06 11:28:09'),(0,0,'S0315','C0177',3,'','CalculateSalaryforjuniordoctor','','','Y','thims','2019-07-06 11:28:09'),(0,0,'S0334','C0182',1,'','Tally/gstr1ExcelInput','','Y','Y','thims','2019-09-12 07:11:07'),(0,0,'S0334','C0183',2,'','Tally/gstr2ExcelInput','','Y','Y','thims','2019-09-12 07:11:07'),(0,0,'S0353','C0194',1,'','./../../pages/survey/manage_survey.php','','Y','Y','thims','2020-01-16 07:24:48'),(0,0,'S0353','C0195',2,'','./../../pages/survey/download_participants.php','','Y','Y','thims','2020-01-16 07:24:48'),(0,0,'S0356','C0201',1,'','Item/BarcodeprintInput','','Y','Y','thims','2021-09-13 07:36:08'),(0,0,'S0356','C0202',2,'','Item/BarcodeReprintInput','','Y','Y','thims','2021-09-13 07:36:08'),(0,0,'S0356','C0203',3,'','Item/BarcodeIssueReturnPrintInput','','Y','Y','thims','2021-09-13 07:36:08'),(0,0,'S0356','C0204',4,'','Item/productStockStoreWiseInput','','Y','Y','thims','2021-09-13 07:36:08'),(0,0,'S0356','C0240',5,'','Item/ProductBarcodeDelete','','Y','Y','thims','2021-09-13 07:36:08'),(0,0,'S0432','C0249',1,'','Item/cycleList','','Y','Y','thims','2024-05-02 13:36:29'),(0,0,'S0432','C0250',2,'','Item/stockCycleReport','','Y','Y','thims','2024-05-02 13:36:29'),(0,0,'S0432','C0251',3,'','Item/stockCycleCount','','Y','Y','thims','2024-05-02 13:36:29'),(0,0,'S0432','C0252',4,'','Item/stockCycleReportOrignal','','Y','Y','thims','2024-05-02 13:36:29'),(0,0,'S0432','C0253',5,'','Item/stockCycleReportItemWise','','Y','Y','thims','2024-05-02 13:36:29'),(0,0,'S0432','C0254',6,'','Item/cycleReportInput','','Y','Y','thims','2024-05-02 13:36:29'),(0,0,'S0432','C0255',7,'','Item/stockCycleRelease','','Y','Y','thims','2024-05-02 13:36:29'),(0,0,'S0432','C0256',8,'','Item/cycleCancellationInput','','Y','Y','thims','2024-05-02 13:36:29'),(0,0,'S0497','C0262',1,'','./../../pages/admin/agencywise_btob_charges.php','','N','Y','thims','2024-05-03 07:04:26'),(0,0,'S0497','C0263',2,'','./../../pages/admin/btob_charges.php','','N','Y','thims','2024-05-03 07:04:26'),(0,0,'S0497','C0264',3,'','./../../pages/report/outsource_report.php','','N','Y','thims','2024-05-03 07:04:26'),(0,0,'S0497','C0265',5,'','./../../pages/report/outsourceBillReport.php','','N','Y','thims','2024-05-03 07:04:26'),(0,0,'S0497','C0266',4,'','./../../pages/ward/outsource_received.php','','N','Y','thims','2024-05-03 07:04:26');
/*!40000 ALTER TABLE `navigation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `navigation_master`
--

DROP TABLE IF EXISTS `navigation_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `navigation_master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `code` char(5) NOT NULL,
  `name` varchar(100) NOT NULL,
  `name_translated` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `Main_Menu_Order_No` int(11) NOT NULL DEFAULT '0',
  `Access_Right` enum('A','R','N','S') NOT NULL DEFAULT 'R',
  `Sub_Menu` enum('Y','N') NOT NULL DEFAULT 'N',
  `Menu_Icon_Class` varchar(30) NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`code`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `navigation_master`
--

LOCK TABLES `navigation_master` WRITE;
/*!40000 ALTER TABLE `navigation_master` DISABLE KEYS */;
INSERT INTO `navigation_master` VALUES (0,0,'C0009','Lab Cat Master','',0,'R','Y','far fa-circle'),(0,0,'C0010','Lab Test Master','',0,'R','Y','far fa-circle'),(0,0,'C0011','Lab Service Tests','',0,'R','Y','far fa-circle'),(0,0,'C0063','Charges Upload','',0,'R','Y','far fa-circle'),(0,0,'C0068','Patient Category Master','',0,'R','Y','far fa-circle'),(0,0,'C0069','Investigation Master','',0,'R','Y','far fa-circle'),(0,0,'C0070','Lab Agency','',0,'R','Y','far fa-circle'),(0,0,'C0073','Lab Test Group','',0,'R','Y','far fa-circle'),(0,0,'C0074','Lab Test Preview','',0,'R','Y','far fa-circle'),(0,0,'C0075','Purchase','',0,'R','Y','far fa-circle'),(0,0,'C0076','Purchase Return','',0,'R','Y','far fa-circle'),(0,0,'C0077','Sale','',0,'R','Y','far fa-circle'),(0,0,'C0078','Sale Return','',0,'R','Y','far fa-circle'),(0,0,'C0079','Adjustment','',0,'R','Y','far fa-circle'),(0,0,'C0080','Payment Collection','',0,'R','Y','far fa-circle'),(0,0,'C0081','Product Categories','',0,'R','Y','far fa-circle'),(0,0,'C0082','Discount','',0,'R','Y','far fa-circle'),(0,0,'C0083','Generic Drugs','',0,'R','Y','far fa-circle'),(0,0,'C0084','Manufactures','',0,'R','Y','far fa-circle'),(0,0,'C0085','Products','',0,'R','Y','far fa-circle'),(0,0,'C0086','Product Groups','',0,'R','Y','far fa-circle'),(0,0,'C0087','Suppliers','',0,'R','Y','far fa-circle'),(0,0,'C0088','Units','',0,'R','Y','far fa-circle'),(0,0,'C0089','Stock Ledger','',0,'R','Y','far fa-circle'),(0,0,'C0090','Transaction Register','',0,'R','Y','far fa-circle'),(0,0,'C0091','Sales Collection','',0,'R','Y','far fa-circle'),(0,0,'C0092','Stock Statement ','',0,'R','Y','far fa-circle'),(0,0,'C0093','Sales Bill Reprint','',0,'R','Y','far fa-circle'),(0,0,'C0094','Uninitialized Products','',0,'R','Y','far fa-circle'),(0,0,'C0095','Product List','',0,'R','Y','far fa-circle'),(0,0,'C0096','Product Expiry','',0,'R','Y','far fa-circle'),(0,0,'C0097','Purchase Summary','',0,'R','Y','far fa-circle'),(0,0,'C0098','Patient Sales Summary','',0,'R','Y','far fa-circle'),(0,0,'C0099','Product Sales Summary','',0,'R','Y','far fa-circle'),(0,0,'C0100','Medicine Reorder','',0,'R','Y','far fa-circle'),(0,0,'C0101','Gross Profit Report','',0,'R','Y','far fa-circle'),(0,0,'C0102','GRN','',0,'R','Y','far fa-circle'),(0,0,'C0103','GRN Return','',0,'R','Y','far fa-circle'),(0,0,'C0104','Material Issue Note','',0,'R','Y','far fa-circle'),(0,0,'C0105','Material Issue Return','',0,'R','Y','far fa-circle'),(0,0,'C0106','Product Categories','',0,'R','Y','far fa-circle'),(0,0,'C0107','Manufactures','',0,'R','Y','far fa-circle'),(0,0,'C0108','Products','',0,'R','Y','far fa-circle'),(0,0,'C0109','Department','',0,'R','Y','far fa-circle'),(0,0,'C0110','Product Groups','',0,'R','Y','far fa-circle'),(0,0,'C0111','Supplier','',0,'R','Y','far fa-circle'),(0,0,'C0112','Units','',0,'R','Y','far fa-circle'),(0,0,'C0113','Transaction Register','',0,'R','Y','far fa-circle'),(0,0,'C0114','Product List','',0,'R','Y','far fa-circle'),(0,0,'C0115','Purchase List','',0,'R','Y','far fa-circle'),(0,0,'C0116','Purchase Return List','',0,'R','Y','far fa-circle'),(0,0,'C0117','Sales List','',0,'R','Y','far fa-circle'),(0,0,'C0118','Sales Return List','',0,'R','Y','far fa-circle'),(0,0,'C0119','Adjustment Transaction','',0,'R','Y','far fa-circle'),(0,0,'C0120','GRN WIth PO','',0,'R','Y','far fa-circle'),(0,0,'C0121','GRN Return With PO','',0,'R','Y','far fa-circle'),(0,0,'C0122','Purchase Order','',0,'R','Y','far fa-circle'),(0,0,'C0123','Approve Purchase Order','',0,'R','Y','far fa-circle'),(0,0,'C0124','Goods Transfer','',0,'R','Y','far fa-circle'),(0,0,'C0126','Designation','',0,'R','Y','far fa-circle'),(0,0,'C0127','Employment Status','',0,'R','Y','far fa-circle'),(0,0,'C0128','Job Categories','',0,'R','Y','far fa-circle'),(0,0,'C0129','Skills','',0,'R','Y','far fa-circle'),(0,0,'C0130','Education','',0,'R','Y','far fa-circle'),(0,0,'C0131','Reporting Methods','',0,'R','Y','far fa-circle'),(0,0,'C0132','Work Week ','',0,'R','Y','far fa-circle'),(0,0,'C0136','Termination Reason','',0,'R','Y','far fa-circle'),(0,0,'C0137','Leave Usage Report','',0,'R','Y','far fa-circle'),(0,0,'C0138','Userwise (Daily) Cash Collection Report ','',0,'R','Y','far fa-circle'),(0,0,'C0139','Purchase Voucher ','',0,'R','Y','far fa-circle'),(0,0,'C0141','Leave Period','',0,'R','Y','far fa-circle'),(0,0,'C0142','Add Entitlements','',0,'R','Y','far fa-circle'),(0,0,'C0143','Leave List','',0,'R','Y','far fa-circle'),(0,0,'C0144','Employee Report','',0,'R','Y','far fa-circle'),(0,0,'C0145','Entitlement By Leave Type','',0,'R','Y','far fa-circle'),(0,0,'C0146','Entitlement By Employee','',0,'R','Y','far fa-circle'),(0,0,'C0147','Department Report','',0,'R','Y','far fa-circle'),(0,0,'C0148','Designation Report','',0,'R','Y','far fa-circle'),(0,0,'C0149','Leave Types','',0,'R','Y','far fa-circle'),(0,0,'C0150','Add Employee','',0,'R','Y','far fa-circle'),(0,0,'C0151','Employee List','',0,'R','Y','far fa-circle'),(0,0,'C0152','Trainee List','',0,'R','Y','far fa-circle'),(0,0,'C0153','Doctor List','',0,'R','Y','far fa-circle'),(0,0,'C0154','BirthDays','',0,'R','Y','far fa-circle'),(0,0,'C0155','Dependents','',0,'R','Y','far fa-circle'),(0,0,'C0156','Department','',0,'R','Y','far fa-circle'),(0,0,'C0157','Pharmacy Receipt Reprint','',0,'R','Y','far fa-circle'),(0,0,'C0158','Staff Report','',0,'R','Y','far fa-circle'),(0,0,'C0159','Probation Completion','',0,'R','Y','far fa-circle'),(0,0,'C0160','UAN Registration Details','',0,'R','Y','far fa-circle'),(0,0,'C0161','Sub Department','',0,'R','Y','far fa-circle'),(0,0,'C0162','Stock Statement','',0,'R','Y','far fa-circle'),(0,0,'C0163','Stock  Ledger','',0,'R','Y','far fa-circle'),(0,0,'C0164','Purchase Voucher','',0,'R','Y','far fa-circle'),(0,0,'C0165','Material Issue Summary','',0,'R','Y','far fa-circle'),(0,0,'C0166','Material Reorder','',0,'R','Y','far fa-circle'),(0,0,'C0167','Outstanding Report New','',0,'R','Y','far fa-circle'),(0,0,'C0168','Attrition and NewJoinee Report','',0,'R','Y','far fa-circle'),(0,0,'C0169','Add CL Entitlements','',0,'R','Y','far fa-circle'),(0,0,'C0170','Add Yearly Entitlements for Employee','',0,'R','Y','far fa-circle'),(0,0,'C0171','Add Yearly Entitlements for Trainee','',0,'R','Y','far fa-circle'),(0,0,'C0172','Add Yearly Entitlements for Doctor','',0,'R','Y','far fa-circle'),(0,0,'C0173','Employee','',0,'R','Y','far fa-circle'),(0,0,'C0174','Trainee','',0,'R','Y','far fa-circle'),(0,0,'C0175','Stock / Cycle Report','',0,'R','Y','far fa-circle'),(0,0,'C0176','Stock Adjustment Cycle','',0,'R','Y','far fa-circle'),(0,0,'C0177','Junior Doctor','',0,'R','Y','far fa-circle'),(0,0,'C0178','Cycle Count Adjustment - Trn Wise','',0,'R','Y','far fa-circle'),(0,0,'C0179','Pharmacy Receipt Report','',0,'R','Y','far fa-circle'),(0,0,'C0180','Transfer Register ','',0,'R','Y','far fa-circle'),(0,0,'C0181','Pack Size Amendment','',0,'R','Y','far fa-circle'),(0,0,'C0182','GSTR-1','',0,'R','Y','far fa-circle'),(0,0,'C0183','GSTR-2','',0,'R','Y','far fa-circle'),(0,0,'C0184','Sales Bill Hospital Internal','',0,'R','Y','far fa-circle'),(0,0,'C0185','Purchase Amendment','',0,'R','Y','far fa-circle'),(0,0,'C0186','Sale Partially Edit','',0,'R','Y','far fa-circle'),(0,0,'C0187','Sale Amendment','',0,'R','Y','far fa-circle'),(0,0,'C0188','Material Transfer','',0,'R','Y','far fa-circle'),(0,0,'C0189','Salary Revision','',0,'R','Y','far fa-circle'),(0,0,'C0190','PO Reprint','',0,'R','Y','far fa-circle'),(0,0,'C0191','Bill Wise GST Breakup','',0,'R','Y','far fa-circle'),(0,0,'C0192','Cycle Count Release','',0,'N','Y','far fa-circle'),(0,0,'C0193','Pharmacy Earning Summary','',0,'R','Y','far fa-circle'),(0,0,'C0194','Manage Survey','',0,'R','Y','far fa-circle-o'),(0,0,'C0195','Download Participants','',0,'R','Y','far fa-circle-o'),(0,0,'C0196','Barcode Print','',0,'R','Y','far fa-circle'),(0,0,'C0197','Barcode Re-print','',0,'R','Y','far fa-circle'),(0,0,'C0198','Barcode Sale Return Print','',0,'R','Y','far fa-circle'),(0,0,'C0199','Barcode Generate Through Product Stock','',0,'R','Y','far fa-circle'),(0,0,'C0200','Stock Inquiry','',0,'R','Y','far fa-circle'),(0,0,'C0201','Barcode Print','',0,'R','Y','far fa-circle'),(0,0,'C0202','Barcode Re-print','',0,'R','Y','far fa-circle'),(0,0,'C0203','Barcode Sale Return Print','',0,'R','Y','far fa-circle'),(0,0,'C0204','Barcode Generate Through Product Stock','',0,'R','Y','far fa-circle'),(0,0,'C0205','Stock Ledger With Freeze','',0,'R','Y','far fa-circle'),(0,0,'C0206','Stores','',0,'R','Y','far fa-circle'),(0,0,'C0207','Outstanding Report New','',0,'N','Y','far fa-circle'),(0,0,'C0208','Sales Write Off Report','',0,'R','Y','far fa-circle'),(0,0,'C0209','Stock Inquiry','',0,'R','Y','far fa-circle'),(0,0,'C0210','Product Consumption Report','',0,'R','Y','far fa-circle'),(0,0,'C0211','Purchase Detail - Supp / Item Wise','',0,'R','Y','far fa-circle'),(0,0,'C0212','Product Expiry','',0,'R','Y','far fa-circle'),(0,0,'C0213','IP Medicine Issue Lead Time Report','',0,'R','Y','far fa-circle'),(0,0,'C0214','Purchase Detail - Supp / Item Wise','',0,'R','Y','far fa-circle'),(0,0,'C0215','Doctor Wise Sales Report','',0,'R','Y','far fa-circle'),(0,0,'C0216','Transaction Wise GST Breakup','',0,'R','Y','far fa-circle'),(0,0,'C0218','Expiry Update Transaction','',0,'R','Y','far fa-circle'),(0,0,'C0219','MRP Update Transaction','',0,'R','Y','far fa-circle'),(0,0,'C0220','Opening Stock Update Transaction','',0,'R','Y','far fa-circle'),(0,0,'C0221','Expiry Update Transaction','',0,'R','Y','far fa-circle'),(0,0,'C0222','MRP Update Transaction','',0,'R','Y','far fa-circle'),(0,0,'C0223','Opening Stock Update Transaction','',0,'R','Y','far fa-circle'),(0,0,'C0224','Purchase Order','',0,'R','Y','far fa-circle'),(0,0,'C0225','Approve Purchase Order','',0,'R','Y','far fa-circle'),(0,0,'C0226','Cycle Count Adjustment - Item Wise','',0,'R','Y','far fa-circle'),(0,0,'C0227','PO Reprint','',0,'R','Y','far fa-circle'),(0,0,'C0228','Purchase With PO','',0,'R','Y','far fa-circle'),(0,0,'C0229','Reorder Request Report','',0,'R','Y','far fa-circle'),(0,0,'C0230','Sales Discount Report','',0,'R','Y','far fa-circle'),(0,0,'C0231','Non / Slow Moving Product Report','',0,'R','Y','far fa-circle'),(0,0,'C0232','Non / Slow Moving Product Report','',0,'R','Y','far fa-circle'),(0,0,'C0233','Purchase Order Amendment','',0,'R','Y','far fa-circle'),(0,0,'C0234','Bill - Receipt Unsettlement','',0,'R','Y','far fa-circle'),(0,0,'C0235','Material Transfer To Vasna','',0,'R','Y','far fa-circle'),(0,0,'C0236','Service -Group-Test Link Report','',0,'R','Y','far fa-circle'),(0,0,'C0237','Barcode Based Product Inquiry','',0,'R','Y','far fa-circle'),(0,0,'C0238','Pharmacy Sales Bill - Discount Edit','',0,'R','Y','far fa-circle'),(0,0,'C0239','Product Based Barcode Delete','',0,'R','Y','far fa-circle'),(0,0,'C0240','Barcode Delete - Product Based','',0,'R','Y','far fa-circle'),(0,0,'C0241','Product list with manufacturer data input','',0,'R','Y','far fa-circle'),(0,0,'C0242','Narcotics And Highrisk','',0,'R','Y','far fa-circle'),(0,0,'C0243','Material Request','',0,'R','Y','far fa-circle'),(0,0,'C0244','Approve Material Request','',0,'R','Y','far fa-circle'),(0,0,'C0245','Material Issue Note With MR','',0,'R','Y','far fa-circle'),(0,0,'C0246','LAB Charges B to B','',0,'R','Y','far fa-circle'),(0,0,'C0247','Patient Wise Profit Report','',0,'R','Y','far fa-circle'),(0,0,'C0248','Product Barcode Stock Report','',0,'R','Y','far fa-circle'),(0,0,'C0249','Cycle List','',0,'R','Y','far fa-circle'),(0,0,'C0250','Cycle Report For PHY Stock','',0,'R','Y','far fa-circle'),(0,0,'C0251','Stock Adjustment','',0,'R','Y','far fa-circle'),(0,0,'C0252','Stock Adjustment TRN Wise','',0,'R','Y','far fa-circle'),(0,0,'C0253','Stock Adjustment Item Wise','',0,'R','Y','far fa-circle'),(0,0,'C0254','Stock Adjustment Summary ','',0,'R','Y','far fa-circle'),(0,0,'C0255','Cycle Count Release','',0,'R','Y','far fa-circle'),(0,0,'C0256','Cycle Close / Cancelation ','',0,'R','Y','far fa-circle'),(0,0,'C0257','Product Sale with HSN','',0,'R','Y','far fa-circle'),(0,0,'C0258','Store Wise Product Details','',0,'R','Y','far fa-circle'),(0,0,'C0259','Medicine Reorder','',0,'R','Y','far fa-circle'),(0,0,'C0260','Reorder Request Report','',0,'R','Y','far fa-circle'),(0,0,'C0261','Sales Return Amendment','',0,'R','Y','far fa-circle'),(0,0,'C0262','Agency Wise B TO B Charges','',0,'R','Y','far fa-circle'),(0,0,'C0263','LAB Charges B to B','',0,'R','Y','far fa-circle'),(0,0,'C0264','OutSource Report','',0,'R','Y','far fa-circle'),(0,0,'C0265','Outsource Billing Report ','',0,'R','Y','far fa-circle'),(0,0,'C0266','Outsource Report Receipt','',0,'R','Y','far fa-circle'),(0,0,'M0001','OP Registration','',7,'R','Y','fas fa-edit'),(0,0,'M0002','OP Patient Care','',8,'R','Y','fas fa-stethoscope'),(0,0,'M0003','Laboratory ','',31,'R','Y','fas fa-microscope'),(0,0,'M0004','IP Billing         ','',23,'R','Y','far fa-money-bill-alt'),(0,0,'M0005','OP - IP Reports','',25,'R','Y','fas fa-newspaper'),(0,0,'M0006','Radiology','',35,'R','Y','fas fa-x-ray'),(0,0,'M0007','IP Patient Care','',22,'R','Y','fas fa-procedures'),(0,0,'M0012','Admin','',402,'R','Y','fa fa-laptop'),(0,0,'M0013','Setup','',401,'R','Y','fas fa-cog'),(0,0,'M0014','System Admin','',403,'R','Y','fa fa-laptop'),(0,0,'M0015','MIS','',65,'R','Y','fa fa-desktop'),(0,0,'M0016','OP Billing','',9,'R','Y','far fa-money-bill-alt'),(0,0,'M0017','IP Reg & Discharge','',21,'R','Y','fas fa-edit'),(0,0,'M0018','Nursing Station','',150,'R','N','fas fa-syringe'),(0,0,'M0019','BA / Patient Connect   ','',51,'R','N','fas fa-handshake'),(0,0,'M0020','Release Note','',404,'R','N','fas fa-book'),(0,0,'M0021','Masters','',405,'R','Y','fas fa-clipboard-list'),(0,0,'M0022','Dashboard','',3,'R','N','fas fa-tachometer-alt'),(0,0,'M0023','OP Patient List','',95,'N','Y','far fa-circle'),(0,0,'M0024','IP Patient List','',90,'N','Y','far fa-circle'),(0,0,'M0025','Master Patient List','',100,'N','Y','far fa-money-bill-alt'),(0,0,'M0027','Revenue Share Report','',44,'R','Y','fas fa-user-plus'),(0,0,'M0028','Patient Info & History','',5,'R','N','fas fa-user-plus'),(0,0,'M0029','Pharmacy','',41,'R','Y','fas fa-pills'),(0,0,'M0030','Store','',45,'R','Y','fas fa-database'),(0,0,'M0031','HRMS','',105,'R','Y','fas fa-user-plus'),(0,0,'M0032','Self Service','',2,'R','Y','fas fa-user-plus'),(0,0,'M0033','Price Preview','',6,'R','N','fa fa-desktop'),(0,0,'M0034','Tally Interface','',42,'R','Y','fas fa-clipboard-list'),(0,0,'M0035','OP IP Bill Rectification','',24,'R','Y','fas fa-edit'),(0,0,'M0036','GST Returns','',43,'R','Y','fas fa-clipboard-list'),(0,0,'M0037','Reception Dashboard','',901,'R','N','far fa-circle'),(0,0,'M0038','IT Support Helpdesk','',501,'R','N','far fa-circle'),(0,0,'M0039','IP DASHBOARD','',902,'R','N','far fa-circle'),(0,0,'M0040','Patient Data Dashboard','',4,'R','N','fas fa-tachometer-alt'),(0,0,'M0041','Recently Visited Menus','',1,'R','N','far fa-clock-o'),(0,0,'M0042','SOC Master','',60,'R','Y','fas fa-clipboard-list'),(0,0,'M0043','Cardiac Procedure','',36,'R','N','far fa-circle'),(0,0,'M0044','BMW','',125,'R','Y',''),(0,0,'M0045','BA / Patient Connect Setup','',130,'R','N','far fa-circle'),(0,0,'M0046','MRD','',135,'R','Y','fas fa-user-plus'),(0,0,'M0047','Complaint Management','',503,'R','Y','fas fa-clipboard'),(0,0,'M0048','CSSM','',145,'R','Y','fas fa-user-plus'),(0,0,'M0049','Linen Management','',150,'R','Y','far fa-circle'),(0,0,'M0050','Gatepass','',155,'R','Y','far fa-circle'),(0,0,'M0051','Diet Management','',160,'R','Y','far fa-circle'),(0,0,'M0052','Help','',502,'R','Y','far fa-circle'),(0,0,'M0053','Backup Dashboard','',4,'R','N','far fa-circle'),(0,0,'M0054','Nursing Assessment','',8,'R','N','far fa-circle'),(0,0,'M0055','Consignment Store','',42,'R','Y','fas fa-database'),(0,0,'M0056','Data Rectification','',903,'','Y','far fa-circle'),(0,0,'S0001','Appointment Booking','',0,'R','N','far fa-circle'),(0,0,'S0002','Appointment Report','',0,'R','N','far fa-circle'),(0,0,'S0003','OP Patient Edit','',0,'R','N','far fa-circle'),(0,0,'S0004','Patient Master List','',0,'R','N','far fa-circle'),(0,0,'S0005','Sticker Print','',0,'R','N','far fa-circle'),(0,0,'S0006','Token Re-Print','',0,'R','N','far fa-circle'),(0,0,'S0007','Reff. Doctor Wise Report','',0,'R','N','far fa-circle'),(0,0,'S0008','Appointment Report','',0,'R','N','far fa-circle'),(0,0,'S0009','OP Patient Edit','',0,'R','N','far fa-circle'),(0,0,'S0010','Patient Master List','',0,'R','N','far fa-circle'),(0,0,'S0011','Sticker Print','',0,'R','N','far fa-circle'),(0,0,'S0012','Token Re-Print','',0,'R','N','far fa-circle'),(0,0,'S0013','Reff. Doctor Wise Report','',0,'R','N','far fa-circle'),(0,0,'S0014','Appointment Booking','',0,'R','N','far fa-circle'),(0,0,'S0021','OP Registration','',0,'R','N','far fa-circle'),(0,0,'S0022','OP Patient List','',0,'R','N','far fa-circle'),(0,0,'S0024','Diagnosis & Prescription','',0,'R','N','far fa-circle'),(0,0,'S0029','Service Req','',0,'R','N','far fa-circle'),(0,0,'S0030','Lab Result Input','',0,'R','N','far fa-circle'),(0,0,'S0032','Lab Register','',0,'R','N','far fa-circle'),(0,0,'S0034','Masters','',0,'R','Y','far fa-circle'),(0,0,'S0035','OP Bill','',0,'R','N','far fa-circle'),(0,0,'S0039','IP Registration','',0,'R','N','far fa-circle'),(0,0,'S0040','IP Patient List / Action','',0,'R','N','far fa-circle'),(0,0,'S0043','IP Bill','',0,'N','N','far fa-circle'),(0,0,'S0044','IP Bill Re-Print','',0,'R','N','far fa-circle'),(0,0,'S0045','IP Bill Cancellation','',0,'R','N','far fa-circle'),(0,0,'S0049','Userwise Collection Report','',0,'R','N','far fa-circle'),(0,0,'S0056','Radiology Service Request','',0,'R','N','far fa-circle'),(0,0,'S0057','Radiology Reporting','',0,'R','N','far fa-circle'),(0,0,'S0063','Film Size Master','',0,'R','N','far fa-circle'),(0,0,'S0064','IP Patient Care','',0,'R','N','far fa-circle'),(0,0,'S0094','Other','',0,'R','Y','far fa-circle'),(0,0,'S0095','All Master','',0,'R','N','far fa-circle'),(0,0,'S0096','Profile Master','',0,'R','N','far fa-circle'),(0,0,'S0097','ENC Group','',0,'R','N','far fa-circle'),(0,0,'S0098','Holiday List','',0,'R','N','far fa-circle'),(0,0,'S0101','Hospital Setup','',0,'R','N','far fa-circle'),(0,0,'S0102','Appointment Setup','',0,'R','N','far fa-circle'),(0,0,'S0105','BA / Patient Connect Setup','',0,'R','N','far fa-circle'),(0,0,'S0118','General Code Master','',0,'R','N','far fa-circle'),(0,0,'S0121','Parameter Setup','',0,'R','N','far fa-circle'),(0,0,'S0125','User Access Control','',0,'R','N','far fa-circle'),(0,0,'S0126','Navigation Setup','',0,'R','N','far fa-circle'),(0,0,'S0131','Service Master','',0,'R','N','far fa-circle'),(0,0,'S0132','Medicine Master','',0,'R','N','far fa-circle'),(0,0,'S0133','Medicine Instruction Master','',0,'R','N','far fa-circle'),(0,0,'S0134','Patient Master','',0,'R','N','far fa-circle'),(0,0,'S0135','Examination Master','',0,'R','N','far fa-circle'),(0,0,'S0136','Operation Master','',0,'R','N','far fa-circle'),(0,0,'S0137','Operation Category Master','',0,'R','N','far fa-circle'),(0,0,'S0138','Operation Theatre Master ','',0,'R','N','far fa-circle'),(0,0,'S0139','Discharge Type Master','',0,'R','N','far fa-circle'),(0,0,'S0140','Appointment Report','',0,'R','N','far fa-circle'),(0,0,'S0141','OP Registration Report','',0,'R','N','far fa-circle'),(0,0,'S0142','OP Registration Report (Ref Doctor Wise)','',0,'R','N','far fa-circle'),(0,0,'S0143','OP Bill  Report','',0,'R','N','far fa-circle'),(0,0,'S0144','IP Advance Report ','',0,'R','N','far fa-circle'),(0,0,'S0145','In Patient List','',0,'R','N','far fa-circle'),(0,0,'S0146','Room Occupancy Report','',0,'R','N','far fa-circle'),(0,0,'S0147','IP Discharge Report','',0,'R','N','far fa-circle'),(0,0,'S0148','IP Registration Report','',0,'R','N','far fa-circle'),(0,0,'S0150','Patient Discharge Summary','',0,'R','N','far fa-circle'),(0,0,'S0153','Generic /Drug Master','',0,'R','N','far fa-circle'),(0,0,'S0154','Medicine Category ','',0,'R','N','far fa-circle'),(0,0,'S0155','Doctor Master','',0,'R','N','far fa-circle'),(0,0,'S0156','Business Associate Master','',0,'R','N','far fa-circle'),(0,0,'S0157','Reference Doctor Master','',0,'R','N','far fa-circle'),(0,0,'S0158','Room Category Master','',0,'R','N','far fa-circle'),(0,0,'S0159','Room Master','',0,'R','N','far fa-circle'),(0,0,'S0160','Department Master','',0,'R','N','far fa-circle'),(0,0,'S0161','Service Group Master','',0,'R','N','far fa-circle'),(0,0,'S0163','Diagnosis Master','',0,'R','N','far fa-circle'),(0,0,'S0164','Medicine for Diagnosis','',0,'R','N','far fa-circle'),(0,0,'S0165','Holiday List','',0,'R','N','far fa-circle'),(0,0,'S0166','User Setup','',0,'R','N','far fa-circle'),(0,0,'S0168','All Patient Account Statement','',0,'R','N','far fa-circle'),(0,0,'S0169','Account Statement Summary','',0,'R','N','far fa-circle'),(0,0,'S0170','IP Bill Report','',0,'R','N','far fa-circle'),(0,0,'S0171','IP Bill Payment Collection','',0,'R','N','far fa-circle'),(0,0,'S0172','Total Collection Summary','',0,'R','N','far fa-circle'),(0,0,'S0173','View Discharge Summary','',0,'R','N','far fa-circle'),(0,0,'S0176','3C / Daily Case Register Report','',0,'R','N','far fa-circle'),(0,0,'S0177','Patient Edit','',0,'N','Y','far fa-circle'),(0,0,'S0178','Doctor Reassignment','',0,'N','Y','far fa-circle'),(0,0,'S0179','OP Bill','',0,'N','Y','far fa-circle'),(0,0,'S0180','OP Bill Print/Reprint','',0,'N','Y','far fa-circle'),(0,0,'S0182','Sticker Print','',0,'N','Y','far fa-circle'),(0,0,'S0183','Token Re-Print','',0,'N','Y','far fa-circle'),(0,0,'S0184','OP Payment Collection','',0,'N','Y','far fa-circle'),(0,0,'S0185','Cancel Receipt','',0,'N','Y','far fa-circle'),(0,0,'S0186','General Note','',0,'N','Y','far fa-circle'),(0,0,'S0187','FC Report','',0,'R','Y','far fa-circle'),(0,0,'S0188','FollowUp Report','',0,'N','Y','far fa-circle'),(0,0,'S0189','Medicine Prescription Printing','',0,'N','Y','far fa-circle'),(0,0,'S0190','Order Printing','',0,'N','Y','far fa-circle'),(0,0,'S0191','Add Vitals','',0,'N','Y','far fa-circle'),(0,0,'S0198','Reverse Discharge','',0,'R','Y','far fa-circle'),(0,0,'S0199','Record Discharge Summary','',0,'R','Y','far fa-circle'),(0,0,'S0200','View Discharge Summary','',0,'R','Y','far fa-circle'),(0,0,'S0201','Discharge Slip','',0,'R','Y','far fa-circle'),(0,0,'S0202','General Notes','',0,'R','Y','far fa-circle'),(0,0,'S0203','Advance/Deposit','',0,'R','Y','far fa-circle'),(0,0,'S0204','Final IP Bill','',0,'R','Y','far fa-circle'),(0,0,'S0205','Admission Reprint','',0,'R','Y','far fa-circle'),(0,0,'S0207','Advance/Refund Reprint','',0,'R','Y','far fa-circle'),(0,0,'S0209','Account Statement','',0,'R','Y','far fa-circle'),(0,0,'S0212','IP Reg. Cancelation','',0,'R','Y','far fa-circle'),(0,0,'S0213','File Sticker Print','',0,'R','Y','far fa-circle'),(0,0,'S0214','Page Sticker Print','',0,'R','Y','far fa-circle'),(0,0,'S0215','Room Transfer','',0,'R','Y','far fa-circle'),(0,0,'S0216','Discharge','',0,'R','Y','far fa-circle'),(0,0,'S0217','Record Discharge Summary','',0,'R','Y','far fa-circle'),(0,0,'S0218','Discharge Slip','',0,'R','Y','far fa-circle'),(0,0,'S0223','General Notes','',0,'R','Y','far fa-circle'),(0,0,'S0224','Ledger Report (Hospital/Doctor) ','',0,'R','N','far fa-circle'),(0,0,'S0225','Patient Edit','',0,'R','Y','far fa-circle'),(0,0,'S0226','OP Patient History','',0,'R','Y','far fa-circle'),(0,0,'S0227','General Notes','',0,'R','Y','far fa-circle'),(0,0,'S0228','OP Receipt Print/Reprint','',0,'R','Y','far fa-circle'),(0,0,'S0229','OP Payment Collection','',0,'R','Y','far fa-circle'),(0,0,'S0230','OP Registration Report <br/> w/ Diagnosis (Ref. Doc)','',0,'R','N','far fa-circle'),(0,0,'S0231','MLC Report','',0,'R','N','far fa-circle'),(0,0,'S0232','Pregnancy Report','',0,'R','N','far fa-circle'),(0,0,'S0233','OP Registration Cancellation','',0,'N','Y','far fa-circle'),(0,0,'S0234','Receipt Report','',0,'R','N','far fa-circle'),(0,0,'S0235','Day Wise Care Charges Report','',0,'R','N','far fa-circle'),(0,0,'S0236','Day Care Admission','',0,'N','Y','far fa-circle'),(0,0,'S0237','Day Care Release','',0,'N','Y','far fa-circle'),(0,0,'S0238','Database Backup Utility','',0,'R','N','far fa-circle'),(0,0,'S0239','Patient Edit','',0,'R','Y','far fa-circle'),(0,0,'S0240','IP Details Edit','',0,'R','Y','far fa-circle'),(0,0,'S0248','Frequency Type Master','',0,'R','N','far fa-circle'),(0,0,'S0249','Frequency Type Sub Master','',0,'R','N','far fa-circle'),(0,0,'S0250','OP Revenue Share Report','',0,'R','N','far fa-circle'),(0,0,'S0251','IP Revenue Share Report','',0,'R','N','far fa-circle'),(0,0,'S0252','IP Advance Cancel','',0,'N','N','far fa-circle'),(0,0,'S0253','Program List','',0,'R','N','far fa-circle'),(0,0,'S0254','Estimated Deposit','',0,'R','N','far fa-circle'),(0,0,'S0255','Deposit Structure Master','',0,'R','N','far fa-circle'),(0,0,'S0256','Operation Grade Master','',0,'R','N','far fa-circle'),(0,0,'S0257','OPD Charge Master','',0,'R','N','far fa-circle'),(0,0,'S0258','Login Audit Trail Report','',0,'R','N','far fa-circle'),(0,0,'S0259','Transactions','',0,'R','Y','far fa-circle'),(0,0,'S0260','Masters','',0,'R','Y','far fa-circle'),(0,0,'S0261','Reports','',0,'R','Y','far fa-circle'),(0,0,'S0262','Stores Transactions','',0,'R','Y','far fa-circle'),(0,0,'S0263','Masters','',0,'R','Y','far fa-circle'),(0,0,'S0264','Reports','',0,'R','Y','far fa-circle'),(0,0,'S0265','Queue Display','',0,'R','N','far fa-circle'),(0,0,'S0266','Patient Registration','',0,'R','N','far fa-circle'),(0,0,'S0267','Document setup','',0,'R','N','far fa-circle'),(0,0,'S0268','Payment Mode Master','',0,'R','N','fa fa-circle-o'),(0,0,'S0269','Rate Master','',0,'R','N','far fa-circle'),(0,0,'S0271','Address Master','',0,'R','N','far fa-circle'),(0,0,'S0272','Upload Salary Detail','',0,'R','N','far fa-circle'),(0,0,'S0274','Purchase Transactions','',0,'R','Y','far fa-circle'),(0,0,'S0275','Template Setup','',0,'R','N','far fa-circle'),(0,0,'S0277','User Wise collection Report (With detail)','',0,'R','N','far fa-circle'),(0,0,'S0278','OP Bill Cancelation','',0,'N','Y','far fa-circle'),(0,0,'S0279','MLC Detail','',0,'N','Y','far fa-circle'),(0,0,'S0281','Job','',0,'R','Y','far fa-circle'),(0,0,'S0282','Qualifications','',0,'R','Y','far fa-circle'),(0,0,'S0283','Configurations','',0,'R','Y','far fa-circle'),(0,0,'S0284','Leave','',0,'R','Y','far fa-circle'),(0,0,'S0285','Directory','',0,'R','N','far fa-circle'),(0,0,'S0288','Upload Employee','',0,'R','N','far fa-circle'),(0,0,'S0290','Utility','',0,'R','N','far fa-circle'),(0,0,'S0291','IP BIll Audit','',0,'R','Y','far fa-circle'),(0,0,'S0292','IP BIll Audit Revision','',0,'R','Y','far fa-circle'),(0,0,'S0293','OP Bill Cancellation - Any','',0,'R','N','far fa-circle'),(0,0,'S0294','Reports','',0,'R','Y','far fa-circle'),(0,0,'S0295','View Pay Slip','',0,'R','N','far fa-circle'),(0,0,'S0296','Leave','',0,'R','N','far fa-circle'),(0,0,'S0297','Approve Leave','',0,'R','N','far fa-circle'),(0,0,'S0298','Compensatory Work','',0,'R','N','far fa-circle'),(0,0,'S0299','Approve Compensatory','',0,'R','N','far fa-circle'),(0,0,'S0300','Leave List','',0,'R','N','far fa-circle'),(0,0,'S0301','Compensatory List','',0,'R','N','far fa-circle'),(0,0,'S0302','Compensatory List','',0,'R','N','far fa-circle'),(0,0,'S0304','PIM','',0,'R','Y','far fa-circle'),(0,0,'S0305','Dashboard','',0,'R','N','far fa-circle'),(0,0,'S0306','Surgery Details','',0,'R','N','far fa-circle'),(0,0,'S0307','indoor case paper','',0,'R','Y','far fa-circle'),(0,0,'S0308','Room Transfer Slip Re-print','',0,'R','Y','far fa-circle'),(0,0,'S0309','Operation Summary Report','',0,'R','N','far fa-circle'),(0,0,'S0310','Doctor Wise Investigation','',0,'R','N','far fa-circle'),(0,0,'S0311','Emergency Registration','',0,'R','N','far fa-circle'),(0,0,'S0312','Surgery Detail Report','',0,'R','N','far fa-circle'),(0,0,'S0313','Physiotherapy Request','',0,'R','N','far fa-circle'),(0,0,'S0314','Nursing Station','',0,'R','N','far fa-circle'),(0,0,'S0315','Calculate Salary','',0,'R','Y','far fa-circle'),(0,0,'S0316','View PaySlip','',0,'R','N','far fa-circle'),(0,0,'S0317','Generate Confirmation Letter','',0,'R','N','far fa-circle'),(0,0,'S0318','Supplier Master','',0,'R','N','far fa-circle'),(0,0,'S0319','Export Medicine Master','',0,'R','N','far fa-circle'),(0,0,'S0320','Export Stock Item','',0,'R','N','far fa-circle'),(0,0,'S0321','Export Purchase Voucher','',0,'R','N','far fa-circle'),(0,0,'S0322','Export Sales Voucher','',0,'R','N','far fa-circle'),(0,0,'S0323','IP Bill - Individual','',0,'R','N','far fa-circle'),(0,0,'S0324','IP Receipt - Individual','',0,'R','N','far fa-circle'),(0,0,'S0325','My Leave List','',0,'R','N','far fa-circle'),(0,0,'S0326','OP Bill Edit','',0,'R','Y','far fa-circle'),(0,0,'S0327','Surgery Schedule Report','',0,'R','N','far fa-circle'),(0,0,'S0328','Holiday List','',0,'R','N','far fa-circle'),(0,0,'S0329','Rev & Receipt Summary-Hospital','',0,'R','N','far fa-circle'),(0,0,'S0330','Assign Leave','',0,'R','N','far fa-circle'),(0,0,'S0331','View Payslip of Employee','',0,'R','N','far fa-circle'),(0,0,'S0333','Bill Rectification','',0,'R','N','far fa-circle'),(0,0,'S0334','GST Return','',0,'R','Y','far fa-circle'),(0,0,'S0336','GSTR-1','',0,'R','N','far fa-circle'),(0,0,'S0337','GSTR-2','',0,'R','N','far fa-circle'),(0,0,'S0338','Pharmacy Purchase','',0,'R','N','far fa-circle'),(0,0,'S0339','Pharmacy Sales - Cash','',0,'R','N','far fa-circle'),(0,0,'S0340','Pharmacy Sales - Credit','',0,'R','N','far fa-circle'),(0,0,'S0341','Pharmacy Receipt','',0,'R','N','far fa-circle'),(0,0,'S0342','GSTR -3B','',0,'R','N','far fa-circle'),(0,0,'S0343','Credit Bill (Reversal Bill)','',0,'R','N','far fa-circle'),(0,0,'S0344','Outstanding Report','',0,'R','N','far fa-circle'),(0,0,'S0346','Pharmacy Advance','',0,'R','Y','far fa-circle'),(0,0,'S0347','Pharmacy Refund','',0,'R','Y','far fa-circle'),(0,0,'S0348','OP Cancellation','',0,'N','Y','far fa-circle'),(0,0,'S0349','Visiting Report','',0,'R','N','far fa-circle'),(0,0,'S0350','IP Advance Refund Report','',0,'R','N','far fa-circle'),(0,0,'S0351','Hospital Earning Summary - Day Wise','',0,'R','N','far fa-circle'),(0,0,'S0352','Pharmacy Earning Summary','',0,'R','N','far fa-circle'),(0,0,'S0353','Survey','',0,'R','Y','far fa-circle'),(0,0,'S0354','Survey','',0,'R','N','far fa-circle'),(0,0,'S0355','Surgery Detail Edit','',0,'R','N','far fa-circle'),(0,0,'S0356','Barcode','',0,'R','Y','far fa-circle'),(0,0,'S0358','Pharmacy Advance Edit','',0,'R','Y','far fa-fa circle'),(0,0,'S0359','Advance Receipt Edit','',0,'R','Y','far fa-fa circle'),(0,0,'S0361','Pharmacy Advance/Refund Reprint','',0,'R','Y','far fa-circle'),(0,0,'S0362','Pharmacy Advance/Refund Edit','',0,'R','Y','far fa-circle'),(0,0,'S0363','Advance Refund','',0,'R','Y','far fa-circle'),(0,0,'S0364','Advance/Refund Edit','',0,'R','Y','far fa-circle'),(0,0,'S0365','IP Receipt Edit','',0,'R','Y','far fa-circle'),(0,0,'S0366','User Access Report','',0,'R','N','far fa-circle'),(0,0,'S0367','Refund Against Bill','',0,'R','Y','far fa-circle'),(0,0,'S0368','IP Receipt Reprint','',0,'R','Y','far fa-circle'),(0,0,'S0369','Discharge Summary Elements ','',0,'R','N','far fa-circle'),(0,0,'S0371','OP Receipt Edit','',0,'R','Y','far fa-circle'),(0,0,'S0372','Room Occupacy History Report','',0,'R','N','far fa-circle'),(0,0,'S0373','Bill Amendment Report','',0,'R','N','far fa-circle'),(0,0,'S0374','Radiology Request Waiting Time Report','',0,'R','N','far fa-circle'),(0,0,'S0375','Consultancy Waiting Time Report','',0,'R','N','far fa-circle'),(0,0,'S0376','Final Settlement and Discharge Complete','',0,'R','Y',''),(0,0,'S0377','SOC Master Report','',0,'R','N','far fa-circle'),(0,0,'S0378','Discharge Date Rectification','',0,'R','N','far fa-circle'),(0,0,'S0379','Admit Date Rectification','',0,'R','N','far fa-circle'),(0,0,'S0380','OP Addressograph','',0,'R','Y','far fa-circle'),(0,0,'S0382','Lab Report Printing','',0,'R','N','far fa-circle'),(0,0,'S0383','Room Release','',0,'R','N','far fa-circle'),(0,0,'S0384','Bill Write Off','',0,'R','Y','far fa-circle'),(0,0,'S0385','Write off Report','',0,'R','N','far fa-circle'),(0,0,'S0387','Denomination Report','',0,'R','N','far fa-circle'),(0,0,'S0388','Swap Transaction','',0,'R','N','far fa-circle'),(0,0,'S0389','Text Message - Standard ','',0,'R','N','far fa-circle'),(0,0,'S0390','Text Message - Custom','',0,'R','N','far fa-circle'),(0,0,'S0391','OP - IP Outstanding Report','',0,'R','N','far fa-circle'),(0,0,'S0393','Service Wise Detail Report ','',0,'R','N','far fa-circle'),(0,0,'S0394','OP Bill Payment Collection','',0,'R','N','far fa-circle'),(0,0,'S0395','IP BIll Audit Revision','',0,'R','Y','far fa-circle'),(0,0,'S0396','Package Configuration','',0,'R','N','far fa-circle'),(0,0,'S0398','OP Patient Care','',0,'R','N','far fa-circle'),(0,0,'S0400','Bill Write Off','',0,'R','Y','far fa-circle'),(0,0,'S0402','Attendance Check','',0,'R','N','far fa-circle'),(0,0,'S0403','Agency Master','',0,'R','N','far fa-circle'),(0,0,'S0407','IMEI Master','',0,'R','N','far fa-circle'),(0,0,'S0410','Insurance Master','',0,'R','N','far fa-circle'),(0,0,'S0411','TPA Master','',0,'R','N','far fa-circle'),(0,0,'S0412','In Patient List - As on Date','',0,'R','N','far fa-circle'),(0,0,'S0413','IP Bill Rate Edit','',0,'R','N','far fa-circle'),(0,0,'S0414','Tally Export Flag Reversal','',0,'R','N','far fa-circle'),(0,0,'S0415','EDD Report','',0,'R','N','far fa-circle'),(0,0,'S0416','OP IP Bill View','',0,'R','N','far fa-circle'),(0,0,'S0417','OP Detail Edit','',0,'R','Y','far fa-circle'),(0,0,'S0418','Bill Amendment','',0,'R','N','far fa-circle'),(0,0,'S0419','Medicine Instruction New','',0,'R','N','far fa-circle'),(0,0,'S0420','General Instruction Master','',0,'R','N','far fa-circle'),(0,0,'S0421','OP Patient Care For MO','',0,'R','N','far fa-circle'),(0,0,'S0424','SOC Master Report','',0,'R','N','far fa-circle'),(0,0,'S0425','Upload DepartmentWise Charges','',0,'R','N','far fa-circle'),(0,0,'S0426','Upload ConsultantLevel Charges','',0,'R','N','far fa-circle'),(0,0,'S0427','Upload GradeWise Charges','',0,'R','N','far fa-circle'),(0,0,'S0428','Upload OP IP Charges','',0,'R','N','far fa-circle'),(0,0,'S0429','OP/IP Revenue Share Report New','',0,'R','N','far fa-circle'),(0,0,'S0431','OP/IP Revenue Share Edit','',0,'R','N','far fa-circle'),(0,0,'S0432','Cycle Count','',0,'R','Y','far fa-circle'),(0,0,'S0433','OP BIll - Individual','',0,'R','N','far fa-circle'),(0,0,'S0434','OP Receipt - Individual','',0,'R','N','far fa-circle'),(0,0,'S0435','MOU Report','',0,'R','N','far fa-circle'),(0,0,'S0436','MOU Discount Report','',0,'R','N','far fa-circle'),(0,0,'S0437','IP Receipt Cancellation','',0,'R','Y','far fa-circle'),(0,0,'S0438','Department_daily_waste_details_entry','',0,'R','N','far fa-circle'),(0,0,'S0439',' Common_daily_waste_details_entry','',0,'R','N','far fa-circle'),(0,0,'S0440','Disposal Agency Master','',0,'R','N','far fa-circle'),(0,0,'S0441','Waste Register Report','',0,'R','N','far fa-circle'),(0,0,'S0442','BMW Location Master','',0,'R','N','far fa-circle'),(0,0,'S0443','BMW Agency Master','',0,'R','N','far fa-circle'),(0,0,'S0444','Bin Master','',0,'R','N','far fa-circle'),(0,0,'S0445','Route Master','',0,'R','N','far fa-circle'),(0,0,'S0446','MRD File Submission','',0,'R','N','far fa-circle'),(0,0,'S0447','MRD Document List','',0,'R','N','far fa-circle'),(0,0,'S0448','MRD Movement','',0,'R','N','far fa-circle'),(0,0,'S0449','MRD Report','',0,'R','N','far fa-circle'),(0,0,'S0450','MRD Movement Report','',0,'R','N','far fa-circle'),(0,0,'S0451','MRD Document Master','',0,'R','N','far fa-circle'),(0,0,'S0452','Complaint Request','',0,'R','N','far fa-circle'),(0,0,'S0453','Complaint Resolution','',0,'R','N','far fa-circle'),(0,0,'S0454','Complaints View','',0,'R','N','far fa-circle'),(0,0,'S0455',' Asset Complaint','',0,'R','N','far fa-circle'),(0,0,'S0456','Asset Complaint Resolution ','',0,'R','N','far fa-circle'),(0,0,'S0457','CSSM Request','',0,'R','N','far fa-circle'),(0,0,'S0458','Item Receipt','',0,'R','N','far fa-circle'),(0,0,'S0459','New Linen Stock(gs to ls)','',0,'R','N',''),(0,0,'S0460','Issue to Ward','',0,'R','N',''),(0,0,'S0461','Return from Ward','',0,'R','N',''),(0,0,'S0462','Issue to Laundry','',0,'R','N',''),(0,0,'S0463','Return from Laundry','',0,'R','N',''),(0,0,'S0464','Discarded Linen','',0,'R','N',''),(0,0,'S0465','Linen Stock Status','',0,'R','N',''),(0,0,'S0466','Linen Transaction Register','',0,'R','N',''),(0,0,'S0467','Daily Linen Transaction','',0,'R','N',''),(0,0,'S0468','Laundry Master','',0,'R','N',''),(0,0,'S0469','Gatepass Report','',0,'R','N',''),(0,0,'S0470','Gatepass Printing','',0,'R','N',''),(0,0,'S0471','Help - Linen Management','',0,'R','N',''),(0,0,'S0472','Gate Pass Entry','',0,'R','N',' far fa-circle'),(0,0,'S0473','Gate Pass Approval','',0,'R','N',' far fa-circle'),(0,0,'S0474','Gate Pass Approval By Supervisor ','',0,'R','N',' far fa-circle'),(0,0,'S0475','Gate Pass Outward / Inward Entry','',0,'R','N',' far fa-circle'),(0,0,'S0476','Gate Pass Printing','',0,'R','N',' far fa-circle'),(0,0,'S0477','Report of Gatepass','',0,'R','N',' far fa-circle'),(0,0,'S0478','Meal Master','',0,'R','N','far fa-circle'),(0,0,'S0479','Diet Type Master','',0,'R','N','far fa-circle'),(0,0,'S0480','Meal Type Master','',0,'R','N','far fa-circle'),(0,0,'S0481','Meal Frequency Master','',0,'R','N','far fa-circle'),(0,0,'S0482','Meal Frequency Request','',0,'R','N','far fa-circle'),(0,0,'S0483','Meal Frequency Conform','',0,'R','N','far fa-circle'),(0,0,'S0484','Meal Report','',0,'R','N','far fa-circle'),(0,0,'S0485','Help - Diet Management','',0,'R','N','far fa-circle'),(0,0,'S0486','Help User','',0,'R','N','far fa-circle'),(0,0,'S0487','Help S','',0,'R','N','far fa-circle'),(0,0,'S0488','BMSH MIS Report (Bhagyoday)','',0,'R','N','far fa-circle'),(0,0,'S0489','Vital Master','',0,'R','N','far fa-circle'),(0,0,'S0490','Upload Charges SOC','',0,'R','N','far fa-circle'),(0,0,'S0491','OP Receipt Cancellation','',0,'R','Y','far fa-circle'),(0,0,'S0492','All Patient Queue','',0,'R','N','far fa-circle'),(0,0,'S0493','Patient Master List','',0,'R','N','far fa-circle'),(0,0,'S0494','Room Reservation','',0,'R','N','far fa-circle'),(0,0,'S0495','Block Room','',0,'R','N','far fa-circle'),(0,0,'S0496','Lab Request TAT Report','',0,'R','N','far fa-circle'),(0,0,'S0497','LAB Outsource','',0,'R','Y',' far fa-circle'),(0,0,'S0498','Revenue Share Setup','',0,'R','N','far fa-circle'),(0,0,'S0499','Revenue Share Setup New','',0,'R','N','far fa-circle'),(0,0,'S0500','Medicine Type','',0,'R','N','far fa-circle'),(0,0,'S0501','Tappering Dose Master','',0,'R','N','far fa-circle'),(0,0,'S0502','Kit Master','',0,'R','N','far fa-circle'),(0,0,'S0503','General Instruction','',0,'R','N','far fa-circle'),(0,0,'S0504','Medicine Frequency','',0,'R','N','far fa-circle'),(0,0,'S0505','Rev & Receipt Summary-Hospital','',0,'R','N','far fa-circle'),(0,0,'S0506','Business Associates Master','',0,'R','N','far fa-circle'),(0,0,'S0507','Schedule Master','',0,'R','N','far fa-circle'),(0,0,'S0508','Patient Diet Plan','',0,'R','N','far fa-circle'),(0,0,'S0509','Diet Plan Report','',0,'R','N','far fa-circle'),(0,0,'S0510','OT Note','',0,'R','Y','far fa-circle'),(0,0,'S0511','Patient Not Visited Report','',0,'R','N','far fa-circle'),(0,0,'S0512','Additional Vitals','',0,'R','Y','far fa-circle'),(0,0,'S0513','Additional Vitals Master','',0,'R','N','far fa-circle'),(0,0,'S0514','OP Patient Care Order Master','',0,'R','N','far fa-circle'),(0,0,'S0515','Patient Self Registration Report','',0,'R','N','far fa-circle'),(0,0,'S0516','Pathology Bill','',0,'R','Y','far fa-circle'),(0,0,'S0517','Final IP Bill Mandal','',0,'R','Y','far fa-circle'),(0,0,'S0518','Pathology IP Bill Cancellation','',0,'R','N','far fa-circle'),(0,0,'S0519','OP Bill - Mandal','',0,'R','Y','far fa-circle'),(0,0,'S0520','Pathology IP Bill Report','',0,'R','N','far fa-circle'),(0,0,'S0521','Pathology Receipt Report','',0,'R','N','far fa-circle'),(0,0,'S0522','Mandal OP Bill Report','',0,'R','N','far fa-circle'),(0,0,'S0523','Mandal Receipt Report','',0,'R','N','far fa-circle'),(0,0,'S0524','Mandal IP Bill Report','',0,'R','N','far fa-circle'),(0,0,'S0525','Mandal Advance/Deposit','',0,'R','Y','far fa-circle'),(0,0,'S0526','Pathology Advance/Deposit','',0,'R','Y','far fa-circle'),(0,0,'S0527','Pathology Advance Refund','',0,'R','Y','far fa-circle'),(0,0,'S0528','Mandal Advance Refund','',0,'R','Y','far fa-circle'),(0,0,'S0529','Mandal OP Bill Cancellation','',0,'R','N','far fa-circle'),(0,0,'S0530','Mandal IP Bill Cancellation','',0,'R','N',''),(0,0,'S0531','Mandal Advance Report','',0,'R','N','far fa-circle'),(0,0,'S0532','Pathology Advance Report','',0,'R','N','far fa-circle'),(0,0,'S0533','Eye Case Paper','',0,'R','Y','far fa-circle'),(0,0,'S0534','IP Eye Case Paper','',0,'R','Y','far fa-circle'),(0,0,'S0535','Room Category Wise Occupancy Report','',0,'R','N','far fa-circle'),(0,0,'S0536','In Patient List - Given Date','',0,'R','N','far fa-circle'),(0,0,'S0537','Consignment Purchase','',0,'R','N','far fa-circle'),(0,0,'S0538','Consignment Purchase Return','',0,'R','N','far fa-circle'),(0,0,'S0539','Consignment Purchase List','',0,'R','N','far fa-circle'),(0,0,'S0540','Consignment Purchase Return List','',0,'R','N','far fa-circle'),(0,0,'S0541','Consignment DC','',0,'R','N','far fa-circle'),(0,0,'S0542','Consignment DC Return','',0,'R','N','far fa-circle'),(0,0,'S0543','PO With Consignment DC','',0,'R','N','far fa-circle'),(0,0,'S0544','Consignment Transaction Register','',0,'R','N','far fa-circle'),(0,0,'S0545','Consignment DC Transactions','',0,'R','N','far fa-circle'),(0,0,'S0546','Consignment stock store statement','',0,'R','N','far fa-circle'),(0,0,'S0547','Radiology Dashboard','',0,'R','N','far fa-circle'),(0,0,'S0548','OP Bill Date Time Edit','',0,'R','Y','far fa-circle'),(0,0,'S0549','IP Bill Date Time Edit','',0,'R','Y','far fa-circle'),(0,0,'S0550','Receipt Date Time Edit','',0,'R','Y','far fa-circle'),(0,0,'S0551','OP Registration Department Edit','',0,'R','Y','far fa-circle'),(0,0,'S0552','IP Registration Department Edit','',0,'R','Y','far fa-circle'),(0,0,'S0553','OP Registration Doctor Edit','',0,'R','Y','far fa-circle'),(0,0,'S0554','IP Registration Doctor Edit','',0,'R','Y','far fa-circle'),(0,0,'S0555','Pharmacy Receipt Date / Time Edit','',0,'R','Y','far fa-circle'),(0,0,'S0556','Pharmacy Sales Bill Date / Time Edit','',0,'R','Y','far fa-circle'),(0,0,'S0557','Pharmacy Sales Bill Type - Cash /Credit','',0,'R','Y','far fa-circle'),(0,0,'S0558','Pharmacy Sales Return Bill Date / Time Edit','',0,'R','Y','far fa-circle'),(0,0,'S0559','Pharmacy Sales Return Bill Type - Cash /Credit','',0,'R','Y','far fa-circle'),(0,0,'S0560','Data Modified List','',0,'R','N','far fa-circle'),(0,0,'S0561','Bill Report With Service Details - Refferal Doctor Wise','',0,'R','N','far fa-circle'),(0,0,'S0562','Case Paper','',0,'R','Y','far fa-circle'),(0,0,'S0563','Credit Bill(Reversal Of Bill) - any','',0,'R','N','far fa-circle'),(0,0,'S0565','Medicine Instruction Mapping','',0,'R','N','far fa-circle'),(0,0,'S0566','Advance Cancellation','',0,'R','Y','far fa-circle'),(0,0,'S0567','Medicine Prescription Report','',0,'R','N','far fa-circle');
/*!40000 ALTER TABLE `navigation_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `note`
--

DROP TABLE IF EXISTS `note`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `note` (
  `inst_id` varchar(11) NOT NULL,
  `inst_1` varchar(180) NOT NULL,
  `inst_2` varchar(180) NOT NULL,
  `inst_3` varchar(180) NOT NULL,
  `inst_4` varchar(180) NOT NULL,
  PRIMARY KEY (`inst_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `note`
--

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

--
-- Table structure for table `op_consultant_referral`
--

DROP TABLE IF EXISTS `op_consultant_referral`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `op_consultant_referral` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `date` date NOT NULL,
  `ref_by_doctor` int(11) NOT NULL,
  `ref_to_docotor` int(11) NOT NULL,
  `flag` enum('R','C','D') NOT NULL COMMENT 'R - Requested, C - Completed , D - Deleted',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`visit_id`,`patient_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `op_consultant_referral`
--

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

--
-- Table structure for table `op_tran_detail`
--

DROP TABLE IF EXISTS `op_tran_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `op_tran_detail` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `op_tran_header_id` int(11) NOT NULL,
  `service_code` varchar(8) NOT NULL,
  `op_type_major_minor` enum('Major','Minor') NOT NULL,
  `op_high_risk` enum('Y','N') NOT NULL DEFAULT 'N',
  `op_sero_positive_high_risk` enum('Y','N') NOT NULL DEFAULT 'N',
  `op_emergency` enum('Y','N') NOT NULL DEFAULT 'N',
  `op_same_incision` enum('Y','N') NOT NULL DEFAULT 'N',
  `surgeon` int(11) NOT NULL,
  `assist_surgeons` int(11) NOT NULL,
  `anaesthetist` int(11) NOT NULL,
  `assistent_anaesthetist` int(11) NOT NULL,
  `nurses` text NOT NULL,
  `anthesia_type` varchar(10) NOT NULL,
  `op_finding` text NOT NULL,
  `op_steps` text NOT NULL,
  `op_remark` varchar(30) NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `op_tran_detail`
--

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

--
-- Table structure for table `op_tran_header`
--

DROP TABLE IF EXISTS `op_tran_header`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `op_tran_header` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `op_from_date` date NOT NULL,
  `op_time_from` time NOT NULL,
  `op_to_date` date NOT NULL,
  `op_time_to` time NOT NULL,
  `op_duration` float NOT NULL,
  `ot_room_no` varchar(4) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `ip_id` bigint(20) NOT NULL,
  `patient_reg_id` bigint(20) NOT NULL,
  `op_flag` enum('S','F') NOT NULL COMMENT 'S - Save, F - final submit',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`op_from_date`,`op_time_from`,`op_time_to`,`ot_room_no`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `op_tran_header`
--

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

--
-- Table structure for table `operation_step_profile_master`
--

DROP TABLE IF EXISTS `operation_step_profile_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `operation_step_profile_master` (
  `profile_cd` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `profile_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `service_cd` varchar(4) COLLATE utf8_unicode_ci NOT NULL,
  `operation_step` text COLLATE utf8_unicode_ci NOT NULL,
  `active` enum('Y','N') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
  `CreatedDate` date NOT NULL,
  `LastModifiedBy` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
  `LastModifiedDate` date NOT NULL,
  PRIMARY KEY (`profile_cd`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `operation_step_profile_master`
--

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

--
-- Table structure for table `ot_details_bgh`
--

DROP TABLE IF EXISTS `ot_details_bgh`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ot_details_bgh` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `visit` varchar(10) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `op_id` bigint(20) NOT NULL,
  `ip_id` bigint(20) NOT NULL,
  `operation_detail` varchar(200) NOT NULL,
  `operation_remark` varchar(200) NOT NULL,
  `operation_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `operated_by` int(11) NOT NULL,
  `created_by` varchar(50) NOT NULL,
  `created_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ot_details_bgh`
--

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

--
-- Table structure for table `ot_patient`
--

DROP TABLE IF EXISTS `ot_patient`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ot_patient` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `ot_room_no` varchar(4) NOT NULL,
  `op_date` date NOT NULL,
  `op_time_from` time NOT NULL,
  `op_time_to` time NOT NULL,
  `visit_id` int(11) NOT NULL,
  `patient_reg_id` bigint(20) NOT NULL,
  `ip_id` bigint(20) NOT NULL,
  `op_code` varchar(8) NOT NULL,
  `assist_surgeons` text NOT NULL,
  `nurses` text NOT NULL,
  `op_finding` text NOT NULL,
  `op_steps` text NOT NULL,
  `op_remark` varchar(30) NOT NULL,
  `charge_cat` varchar(5) NOT NULL,
  `major_minor` char(1) NOT NULL,
  `doctor` int(11) NOT NULL,
  `anaesthetist` varchar(30) NOT NULL,
  `anthesia_type` varchar(10) NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`ot_room_no`,`op_date`,`op_time_from`,`op_time_to`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ot_patient`
--

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

--
-- Table structure for table `outsource_agency_master`
--

DROP TABLE IF EXISTS `outsource_agency_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `outsource_agency_master` (
  `service_group` varchar(6) NOT NULL,
  `agency_code` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `name` varchar(50) NOT NULL,
  `city` varchar(30) NOT NULL,
  `address1` varchar(200) NOT NULL,
  `address2` varchar(200) NOT NULL,
  `address3` varchar(200) NOT NULL,
  `state` varchar(15) NOT NULL,
  `pin` varchar(6) NOT NULL,
  `primary_no` varchar(10) NOT NULL,
  `secondary_no` varchar(10) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(20) NOT NULL,
  `lastmodified_date` datetime NOT NULL,
  PRIMARY KEY (`agency_code`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `outsource_agency_master`
--

LOCK TABLES `outsource_agency_master` WRITE;
/*!40000 ALTER TABLE `outsource_agency_master` DISABLE KEYS */;
INSERT INTO `outsource_agency_master` VALUES ('LAB',1,0,0,'STERLING ACCURIS DIAGNOSTICS','AHMEDABAD','','','','','','','','Y','thims','2021-07-16 18:07:21','yatin','2021-07-30 16:16:20');
/*!40000 ALTER TABLE `outsource_agency_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `outsource_reqest`
--

DROP TABLE IF EXISTS `outsource_reqest`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `outsource_reqest` (
  `outsource_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `trf_id` int(11) NOT NULL,
  `date` date NOT NULL,
  `service_cd` varchar(8) NOT NULL,
  `pat_id` int(11) NOT NULL,
  `op_id` bigint(20) NOT NULL,
  `ip_id` bigint(20) NOT NULL,
  `test_cd` varchar(5) NOT NULL,
  `lab_req_id` int(11) NOT NULL,
  `test_group_cd` varchar(5) NOT NULL,
  `agency_id` int(11) NOT NULL,
  `request_by` varchar(20) NOT NULL,
  `request_datetime` datetime NOT NULL,
  `report_received_by` varchar(20) NOT NULL,
  `report_received_datetime` datetime NOT NULL,
  `is_uploaded` enum('Y','N') DEFAULT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`outsource_id`),
  KEY `lab_req_id` (`lab_req_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `outsource_reqest`
--

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

--
-- Table structure for table `package_detail`
--

DROP TABLE IF EXISTS `package_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `package_detail` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `pkg_code` varchar(4) NOT NULL COMMENT 'package header code',
  `rate_card` int(11) NOT NULL,
  `service_sr_no` tinyint(4) NOT NULL,
  `service_code` varchar(8) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `service_amount` float(9,2) NOT NULL,
  `service_discount_type` enum('A','P') NOT NULL DEFAULT 'A',
  `service_discount_percent` float(5,2) NOT NULL,
  `service_discount` float(9,2) NOT NULL,
  `service_netAmount` float(9,2) NOT NULL,
  `service_gst_percentage` float(9,2) NOT NULL,
  `CreatedBy` varchar(15) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(15) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`pkg_code`,`rate_card`,`service_code`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `package_detail`
--

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

--
-- Table structure for table `package_detail_amendment`
--

DROP TABLE IF EXISTS `package_detail_amendment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `package_detail_amendment` (
  `pkg_code` varchar(4) NOT NULL COMMENT 'package header code',
  `rate_card` int(11) NOT NULL,
  `service_sr_no` tinyint(4) NOT NULL,
  `service_code` varchar(8) NOT NULL,
  `package_amendment_no` smallint(6) NOT NULL,
  `service_amount` float(9,2) NOT NULL,
  `service_discount_type` enum('A','P') NOT NULL DEFAULT 'A',
  `service_discount_percent` float(5,2) NOT NULL,
  `service_discount` float(9,2) NOT NULL,
  `service_netAmount` float(9,2) NOT NULL,
  `service_gst_percentage` float(9,2) NOT NULL,
  `CreatedBy` varchar(15) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(15) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`pkg_code`,`rate_card`,`service_code`,`package_amendment_no`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `package_detail_amendment`
--

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

--
-- Table structure for table `package_header`
--

DROP TABLE IF EXISTS `package_header`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `package_header` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `pkg_code` varchar(4) NOT NULL COMMENT 'service code from service master',
  `rate_card` int(11) NOT NULL,
  `package_amendment_no` smallint(6) NOT NULL,
  `pkg_description` varchar(100) NOT NULL,
  `gross_amount` float(9,2) NOT NULL,
  `discount_type` enum('A','P') NOT NULL DEFAULT 'A',
  `discount_percent` float(5,2) NOT NULL,
  `discount_amount` float(9,2) NOT NULL,
  `net_amount` float(9,2) NOT NULL,
  `is_active` enum('N','Y') NOT NULL DEFAULT 'Y',
  `is_approved` enum('N','Y') NOT NULL DEFAULT 'Y',
  `approved_by` varchar(20) NOT NULL,
  `approved_datetime` datetime NOT NULL,
  `CreatedBy` varchar(15) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(15) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`pkg_code`,`rate_card`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `package_header`
--

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

--
-- Table structure for table `package_header_amendment`
--

DROP TABLE IF EXISTS `package_header_amendment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `package_header_amendment` (
  `pkg_code` varchar(4) NOT NULL COMMENT 'service code from service master',
  `rate_card` int(11) NOT NULL,
  `package_amendment_no` smallint(6) NOT NULL,
  `pkg_description` varchar(100) NOT NULL,
  `gross_amount` float(9,2) NOT NULL,
  `discount_type` enum('A','P') NOT NULL DEFAULT 'A',
  `discount_percent` float(5,2) NOT NULL,
  `discount_amount` float(9,2) NOT NULL,
  `net_amount` float(9,2) NOT NULL,
  `is_active` enum('N','Y') NOT NULL DEFAULT 'Y',
  `is_approved` enum('N','Y') NOT NULL DEFAULT 'Y',
  `approved_by` varchar(20) NOT NULL,
  `approved_datetime` datetime NOT NULL,
  `CreatedBy` varchar(15) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(15) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`pkg_code`,`rate_card`,`package_amendment_no`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `package_header_amendment`
--

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

--
-- Table structure for table `parameter`
--

DROP TABLE IF EXISTS `parameter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `parameter` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `module` varchar(20) NOT NULL,
  `name` varchar(50) NOT NULL COMMENT 'parameter key',
  `value` text CHARACTER SET utf8 NOT NULL,
  `CreatedBy` varchar(25) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(25) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`name`),
  UNIQUE KEY `company_id_2` (`company_id`,`branch_id`,`name`)
) ENGINE=InnoDB AUTO_INCREMENT=421 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `parameter`
--

LOCK TABLES `parameter` WRITE;
/*!40000 ALTER TABLE `parameter` DISABLE KEYS */;
INSERT INTO `parameter` VALUES (0,0,0,'OP Registration','$p_op_template_consent','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(1,0,0,'Super Admin','$thims_db','sarthi','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(2,0,0,'Super Admin','$db_pw','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(3,0,0,'Registration','$p_doctor','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(4,0,0,'Registration','$p_queue_system','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(5,0,0,'OP Registration','$p_doc','2,3,4,5,6,7','','0000-00-00 00:00:00','thims','2025-10-31 13:48:32'),(6,0,0,'Registration','$p_doc_no','$p_doc','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(7,0,0,'OP Registration','$p_set_queue_length','15','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(8,0,0,'Patient Care','$p_single_charge_flg','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(9,0,0,'Patient Care','$p_single_service_cd','0043','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(10,0,0,'Billing','$p_medi_charge_in_bill','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(11,0,0,'MLC','$cert_path','MLC_Docs/Certificates/','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(12,0,0,'MLC','$case_path','MLC_Docs/Cases/','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(13,0,0,'MLC','$bill_path','MLC_Docs/Bills/','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(14,0,0,'Registration','$p_doctor_or_department','Doctor','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(15,0,0,'Registration','$p_sticker_print','F','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(16,0,0,'Registration','$p_category_or_charge','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(17,0,0,'Super Admin','$p_user_module','OP Reg.,IP Reg.,OP-IP Report,Doctor,Admin,IP Billing,Radiology,Pharma,Stores,L.ab,Admin,Nursing Stat','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(18,0,0,'Super Admin','$p_user_role','Accountant,Doctor,Executive / Sr executive,General Staff / Assistant -HR,General Technician,Ip Desk Person,Lab Technician,Manager,MO,Nurse,Nurse Assistant,Nurse Incharge,Op Desk Person,Pharmacist,Radiology Technician,Receptionist,Store Admin,Co-ordinator','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(19,0,0,'IP Registration','$ipd_print','indoor_case_paper.php','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(20,0,0,'Registration','$p_followup_doctor','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(21,0,0,'Registration','$p_submit_and_receipt','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(22,0,0,'Pharmacy','$p_mrp_or_costprice','M','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(23,0,0,'Pharmacy','$p_med_issue_while_bill','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(24,0,0,'Registration','$reg_print','new.php','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(25,0,0,'Pharmacy','$p_patient_or_outsider','PO','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(26,0,0,'Registration','$p_print_while_opd_reg','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(27,0,0,'Registration','$p_registration_fees_bill','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(28,0,0,'Patient Care','$p_service_grp_exclude','\'LAB\',\'Xray\',\'USG\',\'CTSN\',\'MRI\',\'NCEM\',\'CARP\',\'Room\',\'DRC\',\'HEAL\',\'PKG\',\'XRY\'','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(29,0,0,'OP Billing','$p_op_receipt_printing','after_bill_receipt.php','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(30,0,0,'IP Billing','$p_ip_bill_printing','ipBillPrintingWithDiscount.php','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(31,0,0,'IP Billing','$p_ip_receipt_printing','ip_receipt.php','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(32,0,0,'Pharmacy & IP List','$p_pharma_options_in_ip','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(33,0,0,'Pat Care & OP List','$p_pat_care_in_op','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(34,0,0,'Billing','$p_op_bill_printing','opBillPrintingWithDiscount.php','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(35,0,0,'Billing','$p_receipt_no_gen_while_print','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(36,0,0,'IP Registration','$p_IP_reg_fees_bill','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(37,0,0,'','$p_AdditionalDoctorsInIPD','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(38,0,0,'OP Patient Care','$doctor_queue_autostart','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(39,0,0,'OP Registration','$p_emergencyRegCharges','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(40,0,0,'Billing','$p_departmentOtherCharges','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(41,0,0,'OP Registration','$p_pregnancyCaseYesNo','D04','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(42,0,0,'OP Registration','$p_MLC_ChargeInBill','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(43,0,0,'Admin','$p_backup_path','/home/thims2/public_html/manual_backup/life002','','0000-00-00 00:00:00','thims','2025-12-23 17:55:07'),(44,0,0,'Billing','$p_ipRoomNightChargeBase24','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(45,0,0,'IP Patient Care','$p_special_instruction_in_ip','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(46,0,0,'Billing','$p_defaultBillPrintView','Consolidated','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(48,0,0,'IP Patient Care','$p_frq_wise_med','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(49,0,0,'Admin','$p_backup_extension','txt','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(50,0,0,'OP Patient Care','$editableNoOfVisit','1','','0000-00-00 00:00:00','thims','2025-10-31 13:48:32'),(51,0,0,'OP Patient Care','$visitDetailViewToOtherDoctor','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(52,0,0,'Patient Care','$opGeneralProfilePopup','ON','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(53,0,0,'Patient Care','$ipWardVisitChargeModal','A','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(54,0,0,'Laboratory','$pathologyDepartmentCode','D28','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(55,0,0,'Backup','$p_auto_backup','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(56,0,0,'IP Patient Care','$secondaryRoomCategoryOption','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(57,0,0,'IP Patient Care','$p_maxVisitFlag','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(58,0,0,'IP Patient Care','$p_maxNumberOfVisit','2','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(59,0,0,'Pharmacy','$synchronize_medicine_category','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(60,0,0,'Patient Care','$p_taperingDose','ON','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(61,0,0,'SMS','$p_sms_provider','PINNACLE','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(62,0,0,'SMS','$p_auto_reff_doc_sms_op','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(63,0,0,'SMS','$p_auto_reff_doc_sms_ip','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(64,0,0,'SMS','$p_sms_username','SMVSHS','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(65,0,0,'Pharmacy','PH_SALEBILL_DEFAULT_DOCNAME','false','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(66,0,0,'Pharmacy','PH_ENABLE_AUTO_PRESCRIPTION','true','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(67,0,0,'Billing','$p_auditFieldInIPBill','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(68,0,0,'Pharmacy','PH_SHOW_NAGATIVE_STOCK','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(69,0,0,'OP Registration','$p_departmentWiseReg','N','','0000-00-00 00:00:00','thims','2024-01-06 15:02:49'),(70,0,0,'','$p_max_cash_amount','200000','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(71,0,0,'OP Patient Care','$p_ph_stock_in_external_med','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(72,0,0,'OP Registration','$p_manualEmergency','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(73,0,0,'Pharmacy','PH_GST_CALC_BASED_ON_DISCOUNT','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(74,0,0,'OP Registration','$p_dept_wise_queue','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(75,0,0,'OP Registration','$p_rateCardWiseCharge','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(77,0,0,'Pharmacy','PH_DISPLAY_MARGIN_DETAILS','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(78,0,0,'OP Registration','$p_departmentInLocalLanguage','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(79,0,0,'Laboratory','$p_labReportPrintWithoutPymt','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(80,0,0,'Billing','$p_billAdjustmentAmount','1','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(81,0,0,'OP Registration','$p_auto_registration_sms_op','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(82,0,0,'OP Registration','$p_auto_lab_report_sms','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(83,0,0,'OP Registration','$p_tokenPrintingFile','tokenPrinting_smvs.php','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(84,0,0,'OP Registration','$p_stikerPrintingFile','smvs_sticker.php','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(85,0,0,'Radiology','$p_radiology_department_code','D29','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(86,0,0,'OP Registration','$p_freeVisitNoOFDays','5','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(87,0,0,'OP Registration','$p_deptWiseFirstConsultation','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(88,0,0,'Laboratory','$p_labReportPrintFile','lab_report.php','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(89,0,0,'Billing','$p_show_duplicate_in_reprint','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(90,0,0,'Laboratory','$p_labSensitiveReportPrintFile','labSensitiveReport.php','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(91,0,0,'Laboratory','$p_labTestDisplayWithoutPymt','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(92,0,0,'Laboratory','$p_barCodePrintFromResultInput','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(93,0,0,'Registration','$p_idProofForRegistration','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(94,0,0,'HRMS','HRMS_ALLOW_LWO_BALANCE','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(95,0,0,'IP Registration','$p_auto_registration_sms_ip','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(96,0,0,'Pharmacy','PH_SALES_BILL_DATE_DISABLE','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(97,0,0,'Billing','$p_lineLevelDiscount','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(98,0,0,'Billing','$p_denomination','N','','0000-00-00 00:00:00','thims','2023-11-30 15:23:41'),(99,0,0,'IP Registration','$p_history_and_hospital_course','YEARS OLD MALE FEMALE ADMITTED IN HOSPITAL UNDER CARE OF DR ....... WITH ABOVE MENTION COMPLAIN. PATIENT EXAMINED EVALUATED ACCORDINGLY PATIENT WAS UNDER FOR ....... DONE UNDER SA/GA/LA ON DATE .......... POST OPERATIVELY PATIENT MANAGED WITH IV ANTI BIOTICS IV ANTACIDS IV ANTI EMETICS AND OTHER SUPPORTIVE CARE PATIENT PATIENT STAY CARE PATIENT STAY IN HOSPITAL WAS UNEVENTFUL AND BEING DISCHARGED IN HAEMODYNEMICALLY STABLE CONDITION','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(100,0,0,'IP Registration','$p_discharge_diagnosis','<b>ICD CODE:</b>','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(101,0,0,'HRMS','is_able_to_switch_job_category','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(102,0,0,'Billing','$p_ipBillAdjustmentAmount','1','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(103,0,0,'Patient Care','$p_physiotherapyGroup','PHY','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(104,0,0,'Patient Care','$p_nursingStationGroup','DRES,OPWD','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(105,0,0,'Billing','$p_nonEditableFieldQtyInIPBill','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(106,0,0,'Billing','$p_nonEditableFieldRateInIPBil','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(109,0,0,'Billing','$p_excludeServiceGroupInOPBil','\'\'','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(113,0,0,'Pharmacy','$phProductStockCheckInMedicine','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(114,0,0,'Pharmacy','PH_LEDGER_WITH_GST','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(115,0,0,'Store','STORE_LEDGER_WITH_GST','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(116,0,0,'Pharmacy','PH_SALES_BILL_AMENDMENT_DURATION','500','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(117,0,0,'Pharmacy','PH_SALES_BILL_PARTIAL_EDIT_CASHCREDIT_DURATION','365','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(118,0,0,'Patient Care','$p_previous_dt_visit_allowed','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(119,0,0,'Billing','$p_inTransitRoomFunctionality','N','','0000-00-00 00:00:00','thims','2025-10-11 17:44:52'),(120,0,0,'Pharmacy','PH_BARCODE_TRACKING_PROVISION','N','','0000-00-00 00:00:00','thims','2024-05-08 18:04:26'),(121,0,0,'Pharmacy','PH_SALES_STORES','1','','0000-00-00 00:00:00','thims','2024-09-11 12:05:21'),(122,0,0,'Pharmacy','PH_PURCHASE_STORES','1','','0000-00-00 00:00:00','thims','2024-09-11 12:05:24'),(123,0,0,'pharmacy','$ph_max_cash_amount','50000','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(124,0,0,'Pharmacy','PH_IP_STORE','10','','0000-00-00 00:00:00','thims','2023-12-22 16:25:07'),(125,0,0,'Pharmacy','PH_AUTO_CREDIT_BILL','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(126,0,0,'Pharmacy','PH_MRGRT_ON_PTR','0','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(127,0,0,'Pharmacy','PH_SALEBILL_PRODUCT_COMBINE','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(128,0,0,'IP Registration','$p_contactFieldInDiscSummary','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(129,0,0,'Pharmacy','PH_CYCLE_COUNT_LOCK_ENABLE','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(131,0,0,'Patient Care','$p_quickAddServiceInXrayLabReq','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(132,0,0,'SMS','$p_AIMS_auto_regAndDisc_SMS','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(133,0,0,'IP Registration','$p_is_ptrApplicableForPackage','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(134,0,0,'OP Patient Care','$p_autosuggestPhrases','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(135,0,0,'Pharmacy','$p_doctorsMessageFunctionality','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(136,0,0,'Pharmacy','PH_BARCODE_STICKER','2','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(137,0,0,'Laboratory','$p_createPathologyDefaultVisit','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(139,0,0,'Pharmacy','PH_BARCODE_GENERATE_THROUGH_CYCLE_COUNT','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(140,0,0,'Pharmacy','PH_SALES_DISCOUNT_EDITABLE','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(141,0,0,'SMS','$p_SMS_API_KEY','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(142,0,0,'SMS','$p_smsProvider_UserName','smvshospital','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(143,0,0,'OP Registration','$p_smsProvider_Password','smvs@hospital12','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(144,0,0,'OP Registration','$p_religionInRegistration','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(145,0,0,'OP Registration','$p_MLC_InRegistration','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(146,0,0,'OP Registration','$p_displayFeeAndDueColumn','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(147,0,0,'Billing','$p_patientPharmacyBillInIpBill','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(148,0,0,'Billing','$p_bankDetailDisplayInBill','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(149,0,0,'Billing','$p_subjectToahmedabadJurisdicion','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(150,0,0,'Billing','$p_receiptDetailInIPBill','N','','0000-00-00 00:00:00','thims','2025-10-11 17:51:00'),(151,0,0,'Discharge Summary','$p_text_transform_Discsumm','YES','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(153,0,0,'Billing','$p_opBillEmergencyPercentage','100','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(154,0,0,'Pharmacy','PH_WRITEOFF_BILL_AMOUNT','0','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(155,0,0,'OP Registration','$p_autoRegistrationRenual','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(156,0,0,'Pharmacy','PH_PURCHASE_ORDER_STORES','1','','0000-00-00 00:00:00','thims','2024-09-11 12:05:35'),(157,0,0,'Pharmacy','PH_MATERIAL_REQUEST_STORES','2','','0000-00-00 00:00:00','thims','2024-09-11 12:06:00'),(159,0,0,'Pharmacy','PH_DISPLAY_MRP_DETAILS','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(160,0,0,'Pharmacy','PH_DISPLAY_PTR_DETAILS','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(161,0,0,'Laboratory','$p_two_stage_approval','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(162,0,0,'Tally Interface','TALLY_PR_VOUCHER_TYPE_NAME','Purchase Return','','0000-00-00 00:00:00','thims','2024-08-22 19:19:10'),(163,0,0,'OP Registration','$p_doctorWiseFirstConsultation','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(164,0,0,'OP Registration','$p_tokenPrinting','N','','0000-00-00 00:00:00','thims','2023-07-15 14:14:16'),(165,0,0,'OP Registration','$p_createDefaultVisit','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(166,0,0,'OP Registration','$p_defaultDoctor','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(167,0,0,'IP Registration','$p_smallStickerFileName','thims_small_sticker.php','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(168,0,0,'Pharmacy','PH_INDENT_NOTIFICATION_UPTO_NO_OF_DAYS','2','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(169,0,0,'Pharmacy','PH_SELLING_PRICE_BUSINESS_LOGIC_APPLICABLE','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(170,0,0,'Billing','$p_requestedServiceDisplayBeforeComplete','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(171,0,0,'Billing','$p_requestPendingMessage_IP_Bill','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(172,0,0,'OP Registration','$p_personalInfoAddressMandatory','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(173,0,0,'OP Registration','$p_personalInfoCityMandatory','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(174,0,0,'OP Registration','$p_localOrCloudServer','Local','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(175,0,0,'laboratory','$p_receiptAttach_email','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(176,0,0,'Pharmacy','PH_STORE_PRODUCT_GST_PERCENTAGE','0,5,12,18,28','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(177,0,0,'Pharmacy','PH_INDENT_SOFF_GENERIC_NAME','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(178,0,0,'Pharmacy','PH_PURCHASE_ADJUSTMENT_AMOUNT','1','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(179,0,0,'Pharmacy','PH_PRODUCT_GST_PERCENTAGE','0,5,12,18','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(180,0,0,'Pharmacy','PH_SALEBILL_FILENAME','medicine_bill','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(181,0,0,'billing','$p_receiptDate_Edit','YA','','0000-00-00 00:00:00','thims','2025-11-19 11:43:24'),(182,0,0,'billing','$p_billDate_Edit','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(183,0,0,'Lab','$p_printWithLogo','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(184,0,0,'Super Admin','$p_external_IT_Support_Url','https://docs.google.com/forms/d/e/1FAIpQLScN9X_DU6zQzyEMrPekcD2cGoy178MNIeT7odDEGyLLHuv5Rg/viewform','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(185,0,0,'Pharmacy','PH_SALES_WO_BARCODE_TOBE_ALLOWED','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(186,0,0,'Discharge Summary','DS_EXPL_PAT_ENG','I have understood the instructions given about the medication dose and post discharge care. I have been given all investigation reports &nbsp;(Pathology, Radiology and Others).&nbsp;</br></br>','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(187,0,0,'Discharge Summary','DS_EXPL_PAT_LOCAL','હું દવાના ડોઝ અને રજા પછી ની કાળજી વિશેની તમામ સૂચનાઓ ને સંપૂર્ણ રીતે સમજ્યો છું. તેમ જ મને તપાસના બધા જ &nbsp;રિપોર્ટસ (લેબોરેટરી, રેડિયોલોજી તથા અન્ય) આપવામાં આવ્યા છે.</br></br>\r\n\r\n</br>Patient or Patient&#39;s Relative Name and Signature<br><br>દર્દી અથવા દર્દીના સગા નું નામ અને સહીં<br />\r\n&nbsp;','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(188,0,0,'IP Registration','DS_HOW_TO_OBTAIN_URGENT_CARE','Hospital - IN CASE OF EMERGENCY PLEASE CONTACT +91 0000000000\r\n','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(190,0,0,'Pharmacy','PH_PO_BUFFER_DELIVERY_DAYS','0','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(191,0,0,'Pharmacy','PH_PO_BUFFER_QTY_PERCENTAGE','0','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(192,0,0,'Pharmacy','PH_ADDITIONAL_DISCOUNT_UPTO_MARGIN_PERCENT','0','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(193,0,0,'Billing','BILLING_ROOM_ID_OR_CATEGORY','R','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(194,0,0,'Billing','IS_DENOMINATION_REQUIRED','N','','0000-00-00 00:00:00','thims','2023-11-30 15:23:40'),(195,0,0,'Billing','IPBILL_BASED_ON_MEDICLAIM','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(196,0,0,'Pharmacy','PH_EXP_ALERT_DAYS','60','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(197,0,0,'Pharmacy','PH_INDENT_NOTIFICATION_ALLOWED_STORES','1','','0000-00-00 00:00:00','thims','2024-09-11 12:05:44'),(198,0,0,'Patient Care','$p_ip_Doctor_Note','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(199,0,0,'Patient Care','$p_ip_Nursing_Note','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(200,0,0,'Patient Care','$p_ip_Progress_Note','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(201,0,0,'Pharmacy','PH_PO_STD_DELIVERY_DAYS','15','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(202,0,0,'OP Registration','$p_casepaper_template','OP_CASE_PAPER','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(203,0,0,'IP Registration','$p_IP_Billing_Summary','IP_BILLING_SUMMARY','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(204,0,0,'Billing','$p_pathology_entity','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(205,0,0,'Billing','$p_radiology_entity','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(206,0,0,'Billing','$p_toIncludeLABService','NO','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(207,0,0,'Billing','$p_toIncludeRADService','NO','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(208,0,0,'Patient Care','P_SUSHRUTA_HISTORY_PREVIEW','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(209,0,0,'Laboratory','$p_pdf_headerfooter_hospitalwise','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(210,0,0,'BILLING','P_ONLINE_PAYMENT_APPLICABLE','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(211,0,0,'PINELAB','P_PINELAB_SEQUENCE_NUMBER','1','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(212,0,0,'PINELAB','P_PINELAB_PAYMENT_MODE','1','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(214,0,0,'POS','POS_MERCHENT_ID','281587','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(215,0,0,'PINELAB','P_PINELAB_SECURITY_TOKEN','1222e900-1393-44b3-8989-b5f88abd406d','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(216,0,0,'PINELAB','P_PINELAB_TRN_CANCEL_DURATION','5','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(217,0,0,'Pharmacy','PH_CONSIGNMENT_STORE','1','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(218,0,0,'Laboratory','$p_lab_module_include','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(219,0,0,'Registration','$p_daytime_emergency','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(220,0,0,'Pharmacy','PH_SALES_GST_EXEMPT','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(221,0,0,'Pharmacy','PH_PURCHASE_DETAILS_DISPLAY_SALES','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(222,0,0,'OP Registration','$p_reffDoc_Required','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(223,0,0,'Registration','P_DOCTOR_WISE_TOKEN_GENERATE','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(224,0,0,'OP Registration','$p_doctors_radiology','13,279,251,39,342','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(225,0,0,'Patient Care','P_OP_PT_CARE_HISTORY_CKE','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(226,0,0,'Patient Care','P_OP_PT_CARE_EXAMINATION_CKE','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(227,0,0,'Pharmacy','PH_HSN_CODE_SALES_BILL','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(228,0,0,'Billing','$p_excludeServiceGroupInDirOPBill','\'\'','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(230,0,0,'Billing','$p_Rx_Print_style_Mo_Af_Ev','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(232,0,0,'Billing','IP_PAYMENT_COLLECTION_ACCESS','IP','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(233,0,0,'HRMS','HR_EMP_ID_ALLOCATION','OVERALL','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(256,0,0,'Pharmacy','PH_IS_GST_BILL_EDIT_ALLOWED_IN_RETURN','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(257,0,0,'OP Registration','Quick_Doctor_Add','Y','','0000-00-00 00:00:00','thims','2025-10-03 15:58:09'),(258,0,0,'OP Registration','Quick_Reff_Doctor_Add','Y','','0000-00-00 00:00:00','thims','2025-10-03 15:58:08'),(259,0,0,'OP Registration','ReffDr_Required_In_DirectBill','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(260,0,0,'Pharmacy','IS_ROOM_DETAIL_IN_PHA_BILL','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(262,0,0,'Radiology','is_delete_btn_allow_in_radiology','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(263,0,0,'OP Patient Care','ip_order_printing_required','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(264,0,0,'Billing','patientTypePrintinOpIpBill','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(265,0,0,'Billing','specialCommentInOpBill','-','','0000-00-00 00:00:00','thims','2023-07-14 11:39:21'),(266,0,0,'Billing','specialCommentInIpBill','-','','0000-00-00 00:00:00','thims','2023-07-14 11:39:15'),(267,0,0,'Backup','MANUAL_BACKUP_MESSAGE_DISPLAY','Only LAST TWO backup files are retained on server…… <br>\r\nPlease make sure that, once back up is successfully completed,  backup files are downloaded locally and stored at safe place.','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(268,0,0,'Billing','InvestigationCashBillForIpBill','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(269,0,0,'Billing','excludeServiceGrpInIPBill','\'LAB\',\'XRY\',\'USG\',\'MRI\',\'CTSN\',\'NCEM\'','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(270,0,0,'Pharmacy','special_instruction_in_pharmacy_bill','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(271,0,0,'Billing','PREFER_RATE_FROM_STANDARD_RATECARD','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(272,0,0,'Pharmacy','PHA_CREDIT_SALES_FOR_IP_PATIENT_VALIDITY','D','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(276,0,0,'OP Registration','$p_casepaper_fontSize','12pt','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(277,0,0,'IP Registration','IP_REG_CANCEL_UPTO_NO_OF_DAYS','1','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(278,0,0,'Billing','FC_RX_PREV_VISIT_COPY','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(279,0,0,'Billing','$p_nonEditableFieldRateInOPBil','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(280,0,0,'Patient Care','VITALS_EDITABLE_UPTO_NO_OF_DAYS','0','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(281,0,0,'Billing','Investigation_Visible_WO_Bill','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(282,0,0,'Billing','IP_BILL_Line_Delete_Function_Enabbled','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(283,0,0,'OP Registration','TO_CONSIDER_PRIORITY_TOKEN_FOR_SAME_DOCTOR','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(284,0,0,'Billing','P_PATIENT_CONSIGNMENT_BILL_IN_IP_BILL','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(285,0,0,'Pharmacy','PH_SALES_RETURN_WITH_BARCODE','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(286,0,0,'Billing','max_count_for_loginmsg_display','0','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(287,0,0,'OP Registration','print_doctor_details_oncasepaper','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(288,0,0,'Revenue Share','REV_SHRING_CAL_BASED_ON_IP','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(289,0,0,'Revenue Share','REV_SHRING_CAL_BASED_ON_IP_EXCLUDE_DR','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(290,0,0,'Revenue Share','REV_SHR_INCLUDE_OS_BILL','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(291,0,0,'Billing','WRITEOFF_EDITABLE','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(292,0,0,'Pharmacy','PH_CYCLE_BATCH_FOR_MONTHS','24','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(293,0,0,'OP Registration','prefix_In_PatientName','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(294,0,0,'OP Registration','patient_Type','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(295,0,0,'OP Registration','patient_Previllage','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(296,0,0,'Pharmacy','PHA_IND_QTY_CONTROL','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(297,0,0,'Revenue Share','REV_SHR_ADMISSION_CHECK_IN_SERVICE_GROUP','LAB,XRY,USG,CTSN,MIR,NCEM','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(298,0,0,'Revenue Share','REV_SHR_INCLUDE_OUTSOURCE_SERVICE','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(299,0,0,'Super Admin','Hours_For_Compoff','8','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(300,0,0,'OP Billing','HEALTH_PACKAGE_BILL_PRINT_IN_DETAIL','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(301,0,0,'Billing','$p_dialysis_entity','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(302,0,0,'Billing','$p_toIncludeDYLService','NO','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(303,0,0,'Admin','$dialysisDepartmentCode','DYLS','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(304,0,0,'Pharmacy','PH_PURCHASE_NET_AMT_INPUT_SKIP','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(305,0,0,'Radiology','$p_radReportPrintWithoutPymt','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(306,0,0,'THIMS','THIMS_SESSION_OUT_TIME','90','','0000-00-00 00:00:00','thims','2025-01-21 12:50:18'),(307,0,0,'THIMS','THIMS_SESSION_OUT_TYPE','LA','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(308,0,0,'Laboratory','AUTO_MAIL_LAB_REPORT','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(309,0,0,'OP Billing','OP_FC_DATA_EDITABLE_BY_OTHER_DOCTORS','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(310,0,0,'Pharmacy','special_instruction_in_pharmacy_bill2','Medicines once sold can be returned within one month from the date of purchase with the original bill only. No cut strip or used strip will be returned.','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(311,0,0,'Billling','$p_GSTColumnDisplayInIPBill','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(312,0,0,'Super Admin','SOC_APPROVAL_REQUIRED','N','','0000-00-00 00:00:00','thims','2024-08-12 10:23:51'),(313,0,0,'Registration','$p_displaycountry','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(314,0,0,'Billling','$p_GSTColumnDisplayInOPBill','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(315,0,0,'Radiology','$p_doctors_cardiology','251','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(318,0,0,'Registration','$p_Business_Entity_Doctor_Tagging','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(319,0,0,'Registration','$p_Registration_Priority_Age','0','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(320,0,0,'Patient Care','$p_Allow_to_Delete_Comorb_HypSen','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(321,0,0,'Billling','BUSINESS_ENTITY_AS_PROVIDER','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(323,0,0,'Super Admin','Multiple_Hospital_Entity','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(324,0,0,'Patient Care','NAMOSTUTE_USMANPURA_LAB_API','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(325,0,0,'Registration','NRI_FUNCTIONALITY_IN_REGISTRATION','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(326,0,0,'Registration','APPLY_DEFAULT_RATE_CARD_FOR_REGISTRATION','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(327,0,0,'Billing','$p_excludeServiceGroupInOPBillOnly','\'\'','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(329,0,0,'OP Patient Care','RX_TYPE','ML','','0000-00-00 00:00:00','thims','2025-10-14 09:57:26'),(330,0,0,'Billing','$p_blood_bank_entity','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(331,0,0,'Billing','$p_toIncludeBBNKService','NO','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(332,0,0,'Admin','$bloodBankDepartmentCode','BBNK','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(333,0,0,'','PLACE_OF_SUPPLY_FOR_PHARMACY_SALES','24-Gujarat','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(334,0,0,'','WHATSAPP_PROVIDER','PINNACLE','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(335,0,0,'','WHATSAPP_USER_ID','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(336,0,0,'','WHATSAPP_PASSWORD','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(337,0,0,'','WHATSAPP_API_KEY','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(338,0,0,'','WHATSAPP_FILE_URL_PREFIX','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(339,0,0,'','AUTO_PDF_LAB_REPORT','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(340,0,0,'','AUTO_WHATSAPP_LAB_REPORT','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(341,0,0,'Pharmacy','PH_MRGRT_ON_PTR_FOR_HOSP_INTERNAL_SALE','0','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(342,0,0,'Document Management','DOCUMENT_MANAGEMENT_CREDENTIAL_FILE_PATH','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(343,0,0,'Document Management','DOCUMENT_MANAGEMENT_LOCATION','LOCAL_SERVER','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(344,0,0,'Document Management','DOCUMENT_FOLDER_ID_FOR_HOSPITAL','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(345,0,0,'','AUDIO_RECORDING_FUNCTIONALITY','Y','','0000-00-00 00:00:00','thims','2024-05-06 17:17:10'),(346,0,0,'HRMS','max_short_leaves_per_month','3','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(347,0,0,'HRMS','max_short_leave_hours_per_instance','3','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(348,0,0,'Laboratory','LIMS_INTEGRATION','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(349,0,0,'','MEDIA_WHATSAPP_FUNCTIONALITY','Y','','0000-00-00 00:00:00','thims','2024-05-06 17:18:33'),(350,0,0,'Laboratory','NABH_LAB_STICKER_PRINT_MANDATORY','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(351,0,0,'Radiology','NABH_RAD_DEPT_REPORTING_MANDATORY','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(352,0,0,'','Generic_medicine_clause','Patient is at liberty to buy any generic version of the medicine prescribed.','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(353,0,0,'','IP_PATIENT_INDENT_WO_STOCK','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(354,0,0,'','ICD_Version','10','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(355,0,0,'','radiology_report_note','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(356,0,0,'','lab_report_note','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(357,0,0,'Backup Management','AUTO_DB_BACKUP_MANAGEMENT_LOCATION','LOCAL_SERVER','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(358,0,0,'Backup Management','DB_BACKUP_FOLDER_ID_FOR_HOSPITAL','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(359,0,0,'OP Patient Care','OP_CARE_COMORBIDITIES_SEQUENCE','DEFAULT','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(360,0,0,'IP_BILLING','Enable_Billing_Room_Category','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(361,0,0,'IP Registration','IP_Addressograph_File','small_sticker.php','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(362,0,0,'OP Registration','PINCODE_MANDATORY','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(363,0,0,'IP Billing','room_details_in_ipbill_header','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(364,0,0,'PHARMACY','PHA_VOUCHER_ORDER_NO_FYEAR_WISE','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(365,0,0,'PHARMACY','SALES_BILL_DISCOUNT_COL_VISIBLE','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(366,0,0,'Billing','PHA_BILL_SUMMARY_IN_IPBILL','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(367,0,0,'IP Registration','Verify_ID_for_Discharge','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(368,0,0,'OP PATIENT CARE','PDF_Package_Path','C:/Program Files/wkhtmltopdf/bin/wkhtmltopdf','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(369,0,0,'HRMS','comp_off_within_months','8','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(370,0,0,'Laboratory','LAB_REPORT_PATHOLOGIST_NAME_REQUIRED','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(371,0,0,'Laboratory','LAB_ELEMENTS_PRINTING_FOR_NO_RESULT','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(372,0,0,'TALLY','TALLY_OPIP_DISCOUNT_INCLUSION','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(373,0,0,'POS','POS_ORG','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(374,0,0,'IP Registration','DIS_SUMMARY_EDITABLE_AFTER_PT_DISCHARGE','Y','thims','2024-02-09 11:53:54','','2024-02-09 11:53:54'),(375,0,0,'PHARMACY','PHA_PUR_TRAN_MAX_LIMIT','0','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(376,0,0,'IP Billing','$p_pathology_entity_ip','N','thims','2024-03-18 12:16:27','','0000-00-00 00:00:00'),(377,0,0,'Billing','P_MANDAL_ENTITY','N','thims','2024-03-19 12:16:27','','0000-00-00 00:00:00'),(378,0,0,'PHARMACY','pha_s_sr_bill_rounding_setup','1','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(379,0,0,'IP Patient Care','$p_ip_ward_start_hrs','8','thims','2024-05-20 05:13:07','','0000-00-00 00:00:00'),(380,0,0,'Billing','ROOM_CHARGE_APPLY_ICU_WISE','N','thims','2024-03-19 12:16:27','','0000-00-00 00:00:00'),(381,0,0,'Document Management','DOCUMENT_FOLDER_ID_FOR_PURCHASE_SYSTEM','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(382,0,0,'Billing','EMERGENCY_CHARGE_APPLICABLE','OP','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(383,0,0,'Admin','SUPPORT_CONTACTNO','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(384,0,0,'IP Patient Care','PHARMACY_INDENT_STORE_SETUP','10','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(385,0,0,'Billing','PHA_PAYABLE_IN_HOSPITAL','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(386,0,0,'IP Registration','Room_Category_To_Display','A','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(387,0,0,'Laboratory','Lab_group_for_calculation','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(388,0,0,'Laboratory','Lab_tests_for_calculation','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(389,0,0,'','TRANSACTION_NUMBER_DATE_WISE','N','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(390,0,0,'HRMS','$hrms_overtime_31','216','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(391,0,0,'HRMS','$hrms_overtime_30','208','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(392,0,0,'HRMS','Salary_Input_File_Mapping','[DataRow=>1,EmployeeId=>A,HeadType=>B,Amount=>C]','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(393,0,0,'Billing','OP_IP_BILL_NUMBER_FORMAT','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(394,0,0,'Billing','IS_BILL_CATEGORY_FROM_BUSINESS_ENTITY','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(395,0,0,'Billing','SHOW_SERVICE_LEVEL_DISCOUNT_IN_IPBILL_PRINT','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(396,0,0,'Pharmacy','IS_PURCHASE_WITH_PO_DETAIL_EDITABLE','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(397,0,0,'Billing','DRAFTBILL_PRINT_SKIP','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(398,0,0,'Billing','IS_MULTIPLE_PAYMENT_ALLOW','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(399,0,0,'OP IP Billing','CASH_LIMIT_CHECKING_FOR_HOSP_PHA','B','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(400,0,0,'Billing','USER_SIGN_IN_IPBILL','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(401,0,0,'IP Registration','Admitting_Dr_AS_Treating_Dr','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(402,0,0,'Pharmacy','IS_PARTIAL_PURCHASE_ALLOW','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(403,0,0,'Store','IS_PARTIAL_GRN_ALLOW','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(404,0,0,'Store','P_PR_VOUCHER_DATE_EDITABLE','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(406,0,0,'Admin Module','PASSWORD_UPDATE_POLICY','0','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(408,0,0,'Pharmacy','PURCHASE_AGAINST_CSN_GRN','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(409,0,0,'Registration','IS_ABDM','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(410,0,0,'OP Registration','INSURANCE_FOR_OP','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(411,0,0,'OP Registration','IS_BILL_TO_AS_INSURANCE','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(412,0,0,'IP Registration','DS_EXPL_PAT_AFTER_SIGNATURE','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(413,0,0,'IP Registration','DS_OTHER_INSTRUCTION','','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(414,0,0,'PHARMACY','pha_purchase_rounding_setup','0','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(416,0,0,'Billing','LAST_MONTH_OF_FYEAR','3','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(417,0,0,'Billing','FATURA_CREDIT_VALIDITY','30','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(418,0,0,'OP Billing','PHARMACY_DC_INCLUDE_IN_OPBILL','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(419,0,0,'PHARMACY','VOUCHER_NUMBER_ENTITY_WISE','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(420,0,0,'Registration','INS_CHANGE_FOR_MZ','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `parameter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pat_observation`
--

DROP TABLE IF EXISTS `pat_observation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pat_observation` (
  `po_id` int(11) NOT NULL,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `opd_reg_id` bigint(20) NOT NULL,
  `po_indicator` varchar(1) NOT NULL,
  `po_inst` varchar(500) NOT NULL,
  `po_datetime` datetime NOT NULL,
  PRIMARY KEY (`po_id`,`company_id`,`branch_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pat_observation`
--

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

--
-- Table structure for table `pat_service_report`
--

DROP TABLE IF EXISTS `pat_service_report`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pat_service_report` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `service_desc` varchar(255) NOT NULL,
  `charge` float NOT NULL,
  `qty` float NOT NULL,
  `credit` float NOT NULL,
  `debit` float NOT NULL,
  `date` date NOT NULL,
  `time` time NOT NULL,
  `bill_no` varchar(10) DEFAULT NULL,
  `bill_date` date DEFAULT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `payment_mode` varchar(3) NOT NULL,
  `module_type` enum('IPD','PHARMACY') NOT NULL DEFAULT 'IPD',
  PRIMARY KEY (`id`),
  KEY `visit_id` (`visit_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2174 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pat_service_report`
--

LOCK TABLES `pat_service_report` WRITE;
/*!40000 ALTER TABLE `pat_service_report` DISABLE KEYS */;
INSERT INTO `pat_service_report` VALUES (1,0,0,1266,'ADMISSION CHARGE   ',250,1,0,250,'2025-10-18','12:00:00','HI55','2025-10-18',73,'','IPD'),(2,0,0,1266,'DAY CARE CHARGE   ',2500,1,0,2500,'2025-10-18','18:13:00','HI55','2025-10-18',73,'','IPD'),(3,0,0,1266,'SURGERY CHARGE    - DR.PRATAPSINH  DODIYA',2660,1,0,2660,'2025-10-18','18:15:00','HI55','2025-10-18',73,'','IPD'),(4,0,0,1266,'CONSULTANT VISIT 2   (311)  - DR.PRATAPSINH  DODIYA',800,1,0,800,'2025-10-18','12:00:00','HI55','2025-10-18',73,'','IPD'),(5,0,0,1266,'OT USAGE CHARGE    - DR.PRATAPSINH  DODIYA',900,1,0,900,'2025-10-18','18:14:00','HI55','2025-10-18',73,'','IPD'),(6,0,0,1266,'MRD CHARGES   ',250,1,0,250,'2025-10-18','12:00:00','HI55','2025-10-18',73,'','IPD'),(7,0,0,1266,'Advance - By CASH',0,0,7000,0,'0000-00-00','00:00:00','1522','2025-10-18',73,'CSH','IPD'),(8,0,0,1266,'Refund - By UPI',0,0,0,360,'0000-00-00','00:00:00','1543','2025-10-18',73,'7','IPD'),(10,0,0,63,'ADMISSION CHARGE   ',250,1,0,250,'2025-10-07','17:16:00','HI17','2025-10-13',10,'','IPD'),(11,0,0,63,'NURSING CHARGES   (411) ',200,1,0,200,'2025-10-07','10:55:00','HI17','2025-10-13',10,'','IPD'),(12,0,0,63,'RBS (RANDOM BLOOD SUGAR)   ',100,1,0,100,'2025-10-07','17:59:00','HI17','2025-10-13',10,'','IPD'),(13,0,0,63,'RMO CHARGES DAY   (411) ',400,1,0,400,'2025-10-07','10:55:00','HI17','2025-10-13',10,'','IPD'),(14,0,0,63,'MRD CHARGES   ',250,1,0,250,'2025-10-07','17:16:00','HI17','2025-10-13',10,'','IPD'),(15,0,0,63,'ROOM CHARGES   (411) ',3200,1,0,3200,'2025-10-07','10:55:00','HI17','2025-10-13',10,'','IPD'),(16,0,0,63,'CONSULTANT VISIT 2   (411)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-10-07','10:55:00','HI17','2025-10-13',10,'','IPD'),(17,0,0,63,'ROOM CHARGES   (411) ',3200,1,0,3200,'2025-10-08','10:55:00','HI17','2025-10-13',10,'','IPD'),(18,0,0,63,'OT USAGE CHARGE    - DR.PRATAPSINH  DODIYA',5000,1,0,5000,'2025-10-08','19:17:00','HI17','2025-10-13',10,'','IPD'),(19,0,0,63,'CONSULTANT VISIT 2   (411)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-10-08','10:55:00','HI17','2025-10-13',10,'','IPD'),(20,0,0,63,'NURSING CHARGES   (411) ',200,1,0,200,'2025-10-08','10:55:00','HI17','2025-10-13',10,'','IPD'),(21,0,0,63,'CONSULTANT VISIT 1    (411)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-10-08','10:55:00','HI17','2025-10-13',10,'','IPD'),(22,0,0,63,'SURGERY CHARGE    - DR.PRATAPSINH  DODIYA',20000,1,0,20000,'2025-10-08','19:17:00','HI17','2025-10-13',10,'','IPD'),(23,0,0,63,'RMO CHARGES DAY   (411) ',400,1,0,400,'2025-10-08','10:55:00','HI17','2025-10-13',10,'','IPD'),(24,0,0,63,'CONSULTANT VISIT 2   (411)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-10-09','10:55:00','HI17','2025-10-13',10,'','IPD'),(25,0,0,63,'NURSING CHARGES   (411) ',200,1,0,200,'2025-10-09','10:55:00','HI17','2025-10-13',10,'','IPD'),(26,0,0,63,'CONSULTANT VISIT 1    (411)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-10-09','10:55:00','HI17','2025-10-13',10,'','IPD'),(27,0,0,63,'RMO CHARGES DAY   (411) ',400,1,0,400,'2025-10-09','10:55:00','HI17','2025-10-13',10,'','IPD'),(28,0,0,63,'ROOM CHARGES   (411) ',3200,1,0,3200,'2025-10-09','10:55:00','HI17','2025-10-13',10,'','IPD'),(29,0,0,63,'CONSULTANT VISIT 1    (405)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-10-10','10:55:00','HI17','2025-10-13',10,'','IPD'),(30,0,0,63,'RMO CHARGES DAY   (405) ',400,1,0,400,'2025-10-10','10:55:00','HI17','2025-10-13',10,'','IPD'),(31,0,0,63,'ROOM CHARGES   (405) ',3200,1,0,3200,'2025-10-10','10:55:00','HI17','2025-10-13',10,'','IPD'),(32,0,0,63,'CONSULTANT VISIT 2   (405)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-10-10','10:55:00','HI17','2025-10-13',10,'','IPD'),(33,0,0,63,'NURSING CHARGES   (405) ',200,1,0,200,'2025-10-10','10:55:00','HI17','2025-10-13',10,'','IPD'),(34,0,0,63,'ROOM CHARGES   (405) ',3200,1,0,3200,'2025-10-11','10:55:00','HI17','2025-10-13',10,'','IPD'),(35,0,0,63,'CONSULTANT VISIT 2   (405)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-10-11','10:55:00','HI17','2025-10-13',10,'','IPD'),(36,0,0,63,'NURSING CHARGES   (405) ',200,1,0,200,'2025-10-11','10:55:00','HI17','2025-10-13',10,'','IPD'),(37,0,0,63,'CONSULTANT VISIT 1    (405)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-10-11','10:55:00','HI17','2025-10-13',10,'','IPD'),(38,0,0,63,'RMO CHARGES DAY   (405) ',400,1,0,400,'2025-10-11','10:55:00','HI17','2025-10-13',10,'','IPD'),(39,0,0,63,'OTHER CONSULTANT VISIT CHARGE    - DR.CHAITALI PATEL ',2000,1,0,2000,'2025-10-11','17:58:00','HI17','2025-10-13',10,'','IPD'),(40,0,0,63,'CONSULTANT VISIT 2   (405)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-10-12','10:55:00','HI17','2025-10-13',10,'','IPD'),(41,0,0,63,'NURSING CHARGES   (405) ',200,1,0,200,'2025-10-12','10:55:00','HI17','2025-10-13',10,'','IPD'),(42,0,0,63,'CONSULTANT VISIT 1    (405)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-10-12','10:55:00','HI17','2025-10-13',10,'','IPD'),(43,0,0,63,'RMO CHARGES DAY   (405) ',400,1,0,400,'2025-10-12','10:55:00','HI17','2025-10-13',10,'','IPD'),(44,0,0,63,'DRESSING CHARGE - MINOR    - DR.PRATAPSINH  DODIYA',200,1,0,200,'2025-10-12','17:58:00','HI17','2025-10-13',10,'','IPD'),(45,0,0,63,'ROOM CHARGES   (405) ',3200,1,0,3200,'2025-10-12','10:55:00','HI17','2025-10-13',10,'','IPD'),(46,0,0,63,'CONSULTANT VISIT 1    (405)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-10-13','10:55:00','HI17','2025-10-13',10,'','IPD'),(47,0,0,63,'Advance - By UPI',0,0,25000,0,'0000-00-00','00:00:00','319','2025-10-09',10,'7','IPD'),(48,0,0,63,'Advance - By CASH',0,0,10000,0,'0000-00-00','00:00:00','694','2025-10-07',10,'CSH','IPD'),(49,0,0,63,'Advance - By CASH',0,0,25000,0,'0000-00-00','00:00:00','700','2025-10-13',10,'CSH','IPD'),(50,0,0,63,'ADVANCE_CANCELLED - By CASH',0,0,0,25000,'0000-00-00','00:00:00','702','2025-10-13',10,'CSH','IPD'),(51,0,0,63,'Advance - By UPI',0,0,25300,0,'0000-00-00','00:00:00','703','2025-10-13',10,'7','IPD'),(52,0,0,63,'Advance - By CASH',0,0,1500,0,'0000-00-00','00:00:00','705','2025-10-13',10,'CSH','IPD'),(53,0,0,63,'Bill Discount',0,0,0,-2000,'0000-00-00','00:00:00','HI17','2025-10-13',10,'CSH','IPD'),(54,0,0,37,'ADMISSION CHARGE   ',250,1,0,250,'2025-10-07','13:00:00','HD69','2025-10-24',4,'','IPD'),(55,0,0,37,'RMO CHARGES DAY   (402) ',300,1,0,300,'2025-10-07','13:00:00','HD69','2025-10-24',4,'','IPD'),(56,0,0,37,'MRD CHARGES   ',250,1,0,250,'2025-10-07','12:53:00','HD69','2025-10-24',4,'','IPD'),(57,0,0,37,'ROOM CHARGES   (402) ',2900,1,0,2900,'2025-10-07','13:00:00','HD69','2025-10-24',4,'','IPD'),(58,0,0,37,'RBS (RANDOM BLOOD SUGAR)   ',100,1,0,100,'2025-10-07','12:53:00','HD69','2025-10-24',4,'','IPD'),(59,0,0,37,'NURSING CHARGES   (402) ',200,1,0,200,'2025-10-07','13:00:00','HD69','2025-10-24',4,'','IPD'),(60,0,0,37,'CONSULTANT VISIT 2   (402)  - DR.PRATAPSINH  DODIYA',800,1,0,800,'2025-10-07','13:00:00','HD69','2025-10-24',4,'','IPD'),(61,0,0,37,'CONSULTANT VISIT 1    (402)  - DR.PRATAPSINH  DODIYA',800,1,0,800,'2025-10-08','13:00:00','HD69','2025-10-24',4,'','IPD'),(62,0,0,2811,'ADMISSION CHARGE   ',250,1,0,250,'2025-11-09','01:00:00','HI147','2025-11-20',143,'','IPD'),(63,0,0,2811,'MRD CHARGES   ',250,1,0,250,'2025-11-09','01:00:00','HI147','2025-11-20',143,'','IPD'),(64,0,0,2811,'CONSULTANT VISIT 2   (404)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-09','01:00:00','HI147','2025-11-20',143,'','IPD'),(65,0,0,2811,'RMO CHARGES DAY   (404) ',400,1,0,400,'2025-11-09','01:00:00','HI147','2025-11-20',143,'','IPD'),(66,0,0,2811,'CONSULTANT VISIT 1    (404)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-09','01:00:00','HI147','2025-11-20',143,'','IPD'),(67,0,0,2811,'ROOM CHARGES   (404) ',3200,1,0,3200,'2025-11-09','01:00:00','HI147','2025-11-20',143,'','IPD'),(68,0,0,2811,'RBS (RANDOM BLOOD SUGAR)   ',100,1,0,100,'2025-11-09','12:40:00','HI147','2025-11-20',143,'','IPD'),(69,0,0,2811,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-11-09','12:42:00','HI147','2025-11-20',143,'','IPD'),(70,0,0,2811,'NURSING CHARGES   (404) ',200,1,0,200,'2025-11-09','01:00:00','HI147','2025-11-20',143,'','IPD'),(71,0,0,2811,'RCC TRANSFUSION CHARGE   ',500,1,0,500,'2025-11-10','12:41:00','HI147','2025-11-20',143,'','IPD'),(72,0,0,2811,'NURSING CHARGES   (401) ',200,1,0,200,'2025-11-10','01:00:00','HI147','2025-11-20',143,'','IPD'),(73,0,0,2811,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-11-10','12:42:00','HI147','2025-11-20',143,'','IPD'),(74,0,0,2811,'CONSULTANT VISIT 2   (401)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-10','01:00:00','HI147','2025-11-20',143,'','IPD'),(75,0,0,2811,'ECG   ',300,1,0,300,'2025-11-10','12:40:00','HI147','2025-11-20',143,'','IPD'),(76,0,0,2811,'RMO CHARGES DAY   (401) ',400,1,0,400,'2025-11-10','01:00:00','HI147','2025-11-20',143,'','IPD'),(77,0,0,2811,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-11-10','12:42:00','HI147','2025-11-20',143,'','IPD'),(78,0,0,2811,'CONSULTANT VISIT 1    (401)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-10','01:00:00','HI147','2025-11-20',143,'','IPD'),(79,0,0,2811,'ROOM CHARGES   (401) ',3200,1,0,3200,'2025-11-10','01:00:00','HI147','2025-11-20',143,'','IPD'),(80,0,0,2811,'X-RAY CHEST BEDSIDE    ',500,1,0,500,'2025-11-11','10:21:00','HI147','2025-11-20',143,'','IPD'),(81,0,0,2811,'NURSING CHARGES   (401) ',200,1,0,200,'2025-11-11','01:00:00','HI147','2025-11-20',143,'','IPD'),(82,0,0,2811,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-11-11','12:43:00','HI147','2025-11-20',143,'','IPD'),(83,0,0,2811,'CONSULTANT VISIT 2   (401)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-11','01:00:00','HI147','2025-11-20',143,'','IPD'),(84,0,0,2811,'RMO CHARGES DAY   (401) ',400,1,0,400,'2025-11-11','01:00:00','HI147','2025-11-20',143,'','IPD'),(85,0,0,2811,'RCC TRANSFUSION CHARGE   ',500,1,0,500,'2025-11-11','12:41:00','HI147','2025-11-20',143,'','IPD'),(86,0,0,2811,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-11-11','12:43:00','HI147','2025-11-20',143,'','IPD'),(87,0,0,2811,'CONSULTANT VISIT 1    (401)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-11','01:00:00','HI147','2025-11-20',143,'','IPD'),(88,0,0,2811,'ROOM CHARGES   (401) ',3200,1,0,3200,'2025-11-11','01:00:00','HI147','2025-11-20',143,'','IPD'),(89,0,0,2811,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-11-12','12:43:00','HI147','2025-11-20',143,'','IPD'),(90,0,0,2811,'ROOM CHARGES   (401) ',3200,1,0,3200,'2025-11-12','01:00:00','HI147','2025-11-20',143,'','IPD'),(91,0,0,2811,'FFP TRANSFUSION CHARGE   ',500,2,0,1000,'2025-11-12','12:41:00','HI147','2025-11-20',143,'','IPD'),(92,0,0,2811,'PIGTAIL CATHETER INSERTION     - DR.PRATAPSINH  DODIYA',5000,1,0,5000,'2025-11-12','18:26:00','HI147','2025-11-20',143,'','IPD'),(93,0,0,2811,'NURSING CHARGES   (401) ',200,1,0,200,'2025-11-12','01:00:00','HI147','2025-11-20',143,'','IPD'),(94,0,0,2811,'CONSULTANT VISIT 2   (401)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-12','01:00:00','HI147','2025-11-20',143,'','IPD'),(95,0,0,2811,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-11-12','12:44:00','HI147','2025-11-20',143,'','IPD'),(96,0,0,2811,'USG GUIDED PIGTAIL    - DR.PRATIK  PESIWADIA ',3000,1,0,3000,'2025-11-12','18:21:00','HI147','2025-11-20',143,'','IPD'),(97,0,0,2811,'RMO CHARGES DAY   (401) ',400,1,0,400,'2025-11-12','01:00:00','HI147','2025-11-20',143,'','IPD'),(98,0,0,2811,'CONSULTANT VISIT 1    (401)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-12','01:00:00','HI147','2025-11-20',143,'','IPD'),(99,0,0,2811,'CONSULTANT VISIT 1    (401)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-13','01:00:00','HI147','2025-11-20',143,'','IPD'),(100,0,0,2811,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-11-13','11:40:00','HI147','2025-11-20',143,'','IPD'),(101,0,0,2811,'ROOM CHARGES   (401) ',3200,1,0,3200,'2025-11-13','01:00:00','HI147','2025-11-20',143,'','IPD'),(102,0,0,2811,'NURSING CHARGES   (401) ',200,1,0,200,'2025-11-13','01:00:00','HI147','2025-11-20',143,'','IPD'),(103,0,0,2811,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-11-13','11:40:00','HI147','2025-11-20',143,'','IPD'),(104,0,0,2811,'CONSULTANT VISIT 2   (401)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-13','01:00:00','HI147','2025-11-20',143,'','IPD'),(105,0,0,2811,'RMO CHARGES DAY   (401) ',400,1,0,400,'2025-11-13','01:00:00','HI147','2025-11-20',143,'','IPD'),(106,0,0,2811,'RMO CHARGES DAY   (401) ',400,1,0,400,'2025-11-14','01:00:00','HI147','2025-11-20',143,'','IPD'),(107,0,0,2811,'USG ABDOMEN WITH THORAX   ',1200,1,0,1200,'2025-11-14','18:04:00','HI147','2025-11-20',143,'','IPD'),(108,0,0,2811,'CONSULTANT VISIT 1    (401)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-14','01:00:00','HI147','2025-11-20',143,'','IPD'),(109,0,0,2811,'ROOM CHARGES   (401) ',3200,1,0,3200,'2025-11-14','01:00:00','HI147','2025-11-20',143,'','IPD'),(110,0,0,2811,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-11-14','11:41:00','HI147','2025-11-20',143,'','IPD'),(111,0,0,2811,'NURSING CHARGES   (401) ',200,1,0,200,'2025-11-14','01:00:00','HI147','2025-11-20',143,'','IPD'),(112,0,0,2811,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-11-14','11:40:00','HI147','2025-11-20',143,'','IPD'),(113,0,0,2811,'CONSULTANT VISIT 2   (401)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-14','01:00:00','HI147','2025-11-20',143,'','IPD'),(114,0,0,2811,'SURGERY CHARGE    - DR.PRATAPSINH  DODIYA',50000,1,0,50000,'2025-11-15','11:50:00','HI147','2025-11-20',143,'','IPD'),(115,0,0,2811,'RCC TRANSFUSION CHARGE   ',500,2,0,1000,'2025-11-15','13:44:00','HI147','2025-11-20',143,'','IPD'),(116,0,0,2811,'NURSING CHARGES   (401) ',200,1,0,200,'2025-11-15','01:00:00','HI147','2025-11-20',143,'','IPD'),(117,0,0,2811,'R T INSERTION CHARGE   ',750,1,0,750,'2025-11-15','13:46:00','HI147','2025-11-20',143,'','IPD'),(118,0,0,2811,'OXYGEN CHARGE   ',1500,1,0,1500,'2025-11-15','13:56:00','HI147','2025-11-20',143,'','IPD'),(119,0,0,2811,'CONSULTANT VISIT 2   (401)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-15','01:00:00','HI147','2025-11-20',143,'','IPD'),(120,0,0,2811,'RBS (RANDOM BLOOD SUGAR)   ',100,1,0,100,'2025-11-15','13:44:00','HI147','2025-11-20',143,'','IPD'),(121,0,0,2811,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATAPSINH  DODIYA',1600,1,0,1600,'2025-11-15','13:50:00','HI147','2025-11-20',143,'','IPD'),(122,0,0,2811,'RMO CHARGES DAY   (401) ',400,1,0,400,'2025-11-15','01:00:00','HI147','2025-11-20',143,'','IPD'),(123,0,0,2811,'OT USAGE CHARGE    - DR.KRUTARTH  KANJIYA',12500,1,0,12500,'2025-11-15','11:50:00','HI147','2025-11-20',143,'','IPD'),(124,0,0,2811,'FFP TRANSFUSION CHARGE   ',500,2,0,1000,'2025-11-15','13:45:00','HI147','2025-11-20',143,'','IPD'),(125,0,0,2811,'2D ECHO    - DR.TUSHAR BHATTI ',2500,1,0,2500,'2025-11-15','13:53:00','HI147','2025-11-20',143,'','IPD'),(126,0,0,2811,'CONSULTANT VISIT 1    (401)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-15','01:00:00','HI147','2025-11-20',143,'','IPD'),(127,0,0,2811,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-11-15','13:50:00','HI147','2025-11-20',143,'','IPD'),(128,0,0,2811,'ROOM CHARGES   (401) ',3200,1,0,3200,'2025-11-15','01:00:00','HI147','2025-11-20',143,'','IPD'),(129,0,0,2811,'FOLEYS CATHETER    - DR.KRUTARTH  KANJIYA',750,1,0,750,'2025-11-16','13:46:00','HI147','2025-11-20',143,'','IPD'),(130,0,0,2811,'ROOM CHARGES   ',3200,1,0,3200,'2025-11-16','14:10:00','HI147','2025-11-20',143,'','IPD'),(131,0,0,2811,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATAPSINH  DODIYA',1600,1,0,1600,'2025-11-16','13:51:00','HI147','2025-11-20',143,'','IPD'),(132,0,0,2811,'CONSULTANT VISIT 1    (208)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-16','01:00:00','HI147','2025-11-20',143,'','IPD'),(133,0,0,2811,'X RAY CHARGES   ',1500,1,0,1500,'2025-11-16','13:47:00','HI147','2025-11-20',143,'','IPD'),(134,0,0,2811,'NURSING CHARGES   ',200,1,0,200,'2025-11-16','14:10:00','HI147','2025-11-20',143,'','IPD'),(135,0,0,2811,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-16','13:46:00','HI147','2025-11-20',143,'','IPD'),(136,0,0,2811,'RMO CHARGE - SPECIAL   ',400,1,0,400,'2025-11-16','14:10:00','HI147','2025-11-20',143,'','IPD'),(137,0,0,2811,'CONSULTANT VISIT 2   (208)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-16','01:00:00','HI147','2025-11-20',143,'','IPD'),(138,0,0,2811,'CONSULTANT VISIT 1    (401)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-17','01:00:00','HI147','2025-11-20',143,'','IPD'),(139,0,0,2811,'USG CHEST   ',1200,1,0,1200,'2025-11-17','10:53:00','HI147','2025-11-20',143,'','IPD'),(140,0,0,2811,'ROOM CHARGES   (401) ',3200,1,0,3200,'2025-11-17','01:00:00','HI147','2025-11-20',143,'','IPD'),(141,0,0,2811,'RBS (RANDOM BLOOD SUGAR)   ',100,1,0,100,'2025-11-17','14:10:00','HI147','2025-11-20',143,'','IPD'),(142,0,0,2811,'NURSING CHARGES   (401) ',200,1,0,200,'2025-11-17','01:00:00','HI147','2025-11-20',143,'','IPD'),(143,0,0,2811,'CONSULTANT VISIT 2   (401)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-17','01:00:00','HI147','2025-11-20',143,'','IPD'),(144,0,0,2811,'RMO CHARGES DAY   (401) ',400,1,0,400,'2025-11-17','01:00:00','HI147','2025-11-20',143,'','IPD'),(145,0,0,2811,'RBS (RANDOM BLOOD SUGAR)   ',100,1,0,100,'2025-11-18','09:46:00','HI147','2025-11-20',143,'','IPD'),(146,0,0,2811,'NURSING CHARGES   (401) ',200,1,0,200,'2025-11-18','01:00:00','HI147','2025-11-20',143,'','IPD'),(147,0,0,2811,'CONSULTANT VISIT 2   (401)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-18','01:00:00','HI147','2025-11-20',143,'','IPD'),(148,0,0,2811,'USG GUIDED PLURAL TAPPING    - DR.PRATAPSINH  DODIYA',2500,1,0,2500,'2025-11-18','10:52:00','HI147','2025-11-20',143,'','IPD'),(149,0,0,2811,'RMO CHARGES DAY   (401) ',400,1,0,400,'2025-11-18','01:00:00','HI147','2025-11-20',143,'','IPD'),(150,0,0,2811,'X RAY CHARGES   ',1000,1,0,1000,'2025-11-18','14:17:00','HI147','2025-11-20',143,'','IPD'),(151,0,0,2811,'CONSULTANT VISIT 1    (401)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-18','01:00:00','HI147','2025-11-20',143,'','IPD'),(152,0,0,2811,'ROOM CHARGES   (401) ',3200,1,0,3200,'2025-11-18','01:00:00','HI147','2025-11-20',143,'','IPD'),(153,0,0,2811,'CONSULTANT VISIT 1    (401)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-19','01:00:00','HI147','2025-11-20',143,'','IPD'),(154,0,0,2811,'ROOM CHARGES   (401) ',3200,1,0,3200,'2025-11-19','01:00:00','HI147','2025-11-20',143,'','IPD'),(155,0,0,2811,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-11-19','10:56:00','HI147','2025-11-20',143,'','IPD'),(156,0,0,2811,'NURSING CHARGES   (401) ',200,1,0,200,'2025-11-19','01:00:00','HI147','2025-11-20',143,'','IPD'),(157,0,0,2811,'CONSULTANT VISIT 2   (401)  - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-19','01:00:00','HI147','2025-11-20',143,'','IPD'),(158,0,0,2811,'RMO CHARGES DAY   (401) ',400,1,0,400,'2025-11-19','01:00:00','HI147','2025-11-20',143,'','IPD'),(159,0,0,2811,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-11-19','10:56:00','HI147','2025-11-20',143,'','IPD'),(160,0,0,2811,'CONSULTANT VISIT 1     - DR.KRUTARTH  KANJIYA',1000,1,0,1000,'2025-11-20','10:56:00','HI147','2025-11-20',143,'','IPD'),(161,0,0,2811,'Advance - By CASH',0,0,7000,0,'0000-00-00','00:00:00','3414','2025-11-09',143,'CSH','IPD'),(162,0,0,2811,'Advance - By CASH',0,0,8000,0,'0000-00-00','00:00:00','3503','2025-11-10',143,'CSH','IPD'),(163,0,0,2811,'Advance - By UPI',0,0,55000,0,'0000-00-00','00:00:00','3626','2025-11-11',143,'7','IPD'),(164,0,0,2811,'Advance - By CASH',0,0,30000,0,'0000-00-00','00:00:00','4140','2025-11-15',143,'CSH','IPD'),(165,0,0,2811,'Advance - By CASH',0,0,20000,0,'0000-00-00','00:00:00','4204','2025-11-16',143,'CSH','IPD'),(166,0,0,2811,'Advance - By DEBIT CARD',0,0,20000,0,'0000-00-00','00:00:00','4333','2025-11-18',143,'2','IPD'),(167,0,0,2811,'Advance - By DEBIT CARD',0,0,25000,0,'0000-00-00','00:00:00','4589','2025-11-20',143,'2','IPD'),(168,0,0,2811,'Bill Discount',0,0,0,-7800,'0000-00-00','00:00:00','HI147','2025-11-20',143,'2','IPD'),(169,0,0,2879,'ADMISSION CHARGE   ',250,1,0,250,'2025-11-10','15:30:00','0','0000-00-00',146,'','IPD'),(170,0,0,2879,'ECG   ',300,1,0,300,'2025-11-10','11:14:00','0','0000-00-00',146,'','IPD'),(171,0,0,2879,'NEB CHARGE   ',100,1,0,100,'2025-11-10','11:16:00','0','0000-00-00',146,'','IPD'),(172,0,0,2879,'CONSULTANT VISIT 2   (207)  - DR.VISHAL MEVA ',1600,1,0,1600,'2025-11-10','15:30:00','0','0000-00-00',146,'','IPD'),(173,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.KAUMIL  KOTHARI ',2500,1,0,2500,'2025-11-10','11:17:00','0','0000-00-00',146,'','IPD'),(174,0,0,2879,'ROOM CHARGES   (207) ',5500,1,0,5500,'2025-11-10','15:30:00','0','0000-00-00',146,'','IPD'),(175,0,0,2879,'FOLEYS CATHETER    - DR.ARCHIT V RATHOD',750,1,0,750,'2025-11-10','11:14:00','0','0000-00-00',146,'','IPD'),(176,0,0,2879,'NURSING CHARGES   (207) ',600,1,0,600,'2025-11-10','15:30:00','0','0000-00-00',146,'','IPD'),(177,0,0,2879,'OXYGEN CHARGE   ',1500,1,0,1500,'2025-11-10','11:16:00','0','0000-00-00',146,'','IPD'),(178,0,0,2879,'ENDOTRACHEAL INTUBATION    - DR.VISHAL MEVA ',1500,1,0,1500,'2025-11-10','11:15:00','0','0000-00-00',146,'','IPD'),(179,0,0,2879,'MRD CHARGES   ',250,1,0,250,'2025-11-10','15:30:00','0','0000-00-00',146,'','IPD'),(180,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,2,0,200,'2025-11-10','11:14:00','0','0000-00-00',146,'','IPD'),(181,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-10','11:16:00','0','0000-00-00',146,'','IPD'),(182,0,0,2879,'VENTILATOR CHARGE   ',3000,1,0,3000,'2025-11-10','19:53:00','0','0000-00-00',146,'','IPD'),(183,0,0,2879,'RMO CHARGES DAY   (207) ',800,1,0,800,'2025-11-10','15:30:00','0','0000-00-00',146,'','IPD'),(184,0,0,2879,'ICU MONITORING CHARGE   ',1000,1,0,1000,'2025-11-10','17:53:00','0','0000-00-00',146,'','IPD'),(185,0,0,2879,'OXYGEN CHARGE   ',1500,1,0,1500,'2025-11-11','11:16:00','0','0000-00-00',146,'','IPD'),(186,0,0,2879,'CONSULTANT VISIT 1    (207)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-11','15:30:00','0','0000-00-00',146,'','IPD'),(187,0,0,2879,'CVP (CENTRAL LINE INSERTION) CHARGE    - DR.CHAITANYA GOHEL ',3000,1,0,3000,'2025-11-11','11:15:00','0','0000-00-00',146,'','IPD'),(188,0,0,2879,'USG ABDOMEN CHARGE   ',1500,1,0,1500,'2025-11-11','11:46:00','0','0000-00-00',146,'','IPD'),(189,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-11','11:16:00','0','0000-00-00',146,'','IPD'),(190,0,0,2879,'ROOM CHARGES   (207) ',5500,1,0,5500,'2025-11-11','15:30:00','0','0000-00-00',146,'','IPD'),(191,0,0,2879,'VENTILATOR CHARGE   ',3000,1,0,3000,'2025-11-11','19:54:00','0','0000-00-00',146,'','IPD'),(192,0,0,2879,'NURSING CHARGES   (207) ',600,1,0,600,'2025-11-11','15:30:00','0','0000-00-00',146,'','IPD'),(193,0,0,2879,'CSF CHARGE   ',3000,1,0,3000,'2025-11-11','11:51:00','0','0000-00-00',146,'','IPD'),(194,0,0,2879,'ICU MONITORING CHARGE   ',1000,1,0,1000,'2025-11-11','17:53:00','0','0000-00-00',146,'','IPD'),(195,0,0,2879,'NEB CHARGE   ',100,3,0,300,'2025-11-11','11:17:00','0','0000-00-00',146,'','IPD'),(196,0,0,2879,'CONSULTANT VISIT 2   (207)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-11','15:30:00','0','0000-00-00',146,'','IPD'),(197,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-11','11:15:00','0','0000-00-00',146,'','IPD'),(198,0,0,2879,'RMO CHARGES DAY   (207) ',800,1,0,800,'2025-11-11','15:30:00','0','0000-00-00',146,'','IPD'),(199,0,0,2879,'USG SCROTUM CHARGE   ',1500,1,0,1500,'2025-11-11','11:50:00','0','0000-00-00',146,'','IPD'),(200,0,0,2879,'X-RAY CHEST BEDSIDE    ',1000,1,0,1000,'2025-11-12','10:26:00','0','0000-00-00',146,'','IPD'),(201,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-12','11:59:00','0','0000-00-00',146,'','IPD'),(202,0,0,2879,'VENTILATOR CHARGE   ',3000,1,0,3000,'2025-11-12','19:54:00','0','0000-00-00',146,'','IPD'),(203,0,0,2879,'TRACHEOSTOMY CHARGE    - DR.ARCHIT V RATHOD',10000,1,0,10000,'2025-11-12','11:57:00','0','0000-00-00',146,'','IPD'),(204,0,0,2879,'ROOM CHARGES   (207) ',5500,1,0,5500,'2025-11-12','15:30:00','0','0000-00-00',146,'','IPD'),(205,0,0,2879,'ICU MONITORING CHARGE   ',1000,1,0,1000,'2025-11-12','17:53:00','0','0000-00-00',146,'','IPD'),(206,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.KAUMIL  KOTHARI ',1500,1,0,1500,'2025-11-12','10:44:00','0','0000-00-00',146,'','IPD'),(207,0,0,2879,'NURSING CHARGES   (207) ',600,1,0,600,'2025-11-12','15:30:00','0','0000-00-00',146,'','IPD'),(208,0,0,2879,'NEB CHARGE   ',100,5,0,500,'2025-11-12','11:59:00','0','0000-00-00',146,'','IPD'),(209,0,0,2879,'CONSULTANT VISIT 2   (207)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-12','15:30:00','0','0000-00-00',146,'','IPD'),(210,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-12','11:45:00','0','0000-00-00',146,'','IPD'),(211,0,0,2879,'RMO CHARGES DAY   (207) ',800,1,0,800,'2025-11-12','15:30:00','0','0000-00-00',146,'','IPD'),(212,0,0,2879,'OXYGEN CHARGE   ',1500,1,0,1500,'2025-11-12','11:59:00','0','0000-00-00',146,'','IPD'),(213,0,0,2879,'CONSULTANT VISIT 1    (207)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-12','15:30:00','0','0000-00-00',146,'','IPD'),(214,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.ADITI THANKI  ',2500,1,0,2500,'2025-11-13','11:27:00','0','0000-00-00',146,'','IPD'),(215,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-13','10:43:00','0','0000-00-00',146,'','IPD'),(216,0,0,2879,'CONSULTANT VISIT 1    (207)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-13','15:30:00','0','0000-00-00',146,'','IPD'),(217,0,0,2879,'ROOM CHARGES   (207) ',5500,1,0,5500,'2025-11-13','15:30:00','0','0000-00-00',146,'','IPD'),(218,0,0,2879,'NEB CHARGE   ',100,5,0,500,'2025-11-13','10:43:00','0','0000-00-00',146,'','IPD'),(219,0,0,2879,'NURSING CHARGES   (207) ',600,1,0,600,'2025-11-13','15:30:00','0','0000-00-00',146,'','IPD'),(220,0,0,2879,'OXYGEN CHARGE   ',1500,1,0,1500,'2025-11-13','10:43:00','0','0000-00-00',146,'','IPD'),(221,0,0,2879,'CONSULTANT VISIT 2   (207)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-13','15:30:00','0','0000-00-00',146,'','IPD'),(222,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,4,0,400,'2025-11-13','10:42:00','0','0000-00-00',146,'','IPD'),(223,0,0,2879,'ICU MONITORING CHARGE   ',1000,1,0,1000,'2025-11-13','17:53:00','0','0000-00-00',146,'','IPD'),(224,0,0,2879,'RMO CHARGES DAY   (207) ',800,1,0,800,'2025-11-13','15:30:00','0','0000-00-00',146,'','IPD'),(225,0,0,2879,'OXYGEN CHARGE   ',1500,1,0,1500,'2025-11-14','20:43:00','0','0000-00-00',146,'','IPD'),(226,0,0,2879,'CONSULTANT VISIT 1    (207)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-14','15:30:00','0','0000-00-00',146,'','IPD'),(227,0,0,2879,'NURSING CHARGES   ',200,0.5,0,100,'2025-11-14','19:12:00','0','0000-00-00',146,'','IPD'),(228,0,0,2879,'NEB CHARGE   ',100,4,0,400,'2025-11-14','11:30:00','0','0000-00-00',146,'','IPD'),(229,0,0,2879,'ROOM CHARGES   (207) ',5500,0.5,0,2750,'2025-11-14','15:30:00','0','0000-00-00',146,'','IPD'),(230,0,0,2879,'ICU MONITORING CHARGE   ',1000,1,0,1000,'2025-11-14','17:53:00','0','0000-00-00',146,'','IPD'),(231,0,0,2879,'NURSING CHARGES   (207) ',600,0.5,0,300,'2025-11-14','15:30:00','0','0000-00-00',146,'','IPD'),(232,0,0,2879,'RMO CHARGES DAY   ',400,0.5,0,200,'2025-11-14','19:11:00','0','0000-00-00',146,'','IPD'),(233,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-14','11:30:00','0','0000-00-00',146,'','IPD'),(234,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-14','20:43:00','0','0000-00-00',146,'','IPD'),(235,0,0,2879,'CONSULTANT VISIT 2   (207)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-14','15:30:00','0','0000-00-00',146,'','IPD'),(236,0,0,2879,'RMO CHARGES DAY   (207) ',800,0.5,0,400,'2025-11-14','15:30:00','0','0000-00-00',146,'','IPD'),(237,0,0,2879,'ROOM CHARGES   ',3200,0.5,0,1600,'2025-11-14','19:11:00','0','0000-00-00',146,'','IPD'),(238,0,0,2879,'NEB CHARGE   ',100,3,0,300,'2025-11-15','16:37:00','0','0000-00-00',146,'','IPD'),(239,0,0,2879,'CONSULTANT VISIT 1    (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-15','15:30:00','0','0000-00-00',146,'','IPD'),(240,0,0,2879,'ROOM CHARGES   (408) ',3200,1,0,3200,'2025-11-15','15:30:00','0','0000-00-00',146,'','IPD'),(241,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-15','16:37:00','0','0000-00-00',146,'','IPD'),(242,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.MAITRY  PANDYA ',500,1,0,500,'2025-11-15','14:02:00','0','0000-00-00',146,'','IPD'),(243,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-15','16:36:00','0','0000-00-00',146,'','IPD'),(244,0,0,2879,'NURSING CHARGES   (408) ',200,1,0,200,'2025-11-15','15:30:00','0','0000-00-00',146,'','IPD'),(245,0,0,2879,'MONITOR CHARGE   ',500,1,0,500,'2025-11-15','10:32:00','0','0000-00-00',146,'','IPD'),(246,0,0,2879,'OXYGEN CHARGE   ',1500,1,0,1500,'2025-11-15','16:37:00','0','0000-00-00',146,'','IPD'),(247,0,0,2879,'CONSULTANT VISIT 2   (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-15','15:30:00','0','0000-00-00',146,'','IPD'),(248,0,0,2879,'RMO CHARGES DAY   (408) ',400,1,0,400,'2025-11-15','15:30:00','0','0000-00-00',146,'','IPD'),(249,0,0,2879,'FOLEYS CATHETER    - DR.ARCHIT V RATHOD',750,1,0,750,'2025-11-16','14:00:00','0','0000-00-00',146,'','IPD'),(250,0,0,2879,'ICU MONITORING CHARGE   ',1000,1,0,1000,'2025-11-16','17:55:00','0','0000-00-00',146,'','IPD'),(251,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-16','13:58:00','0','0000-00-00',146,'','IPD'),(252,0,0,2879,'CONSULTANT VISIT 1    (210)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-16','15:30:00','0','0000-00-00',146,'','IPD'),(253,0,0,2879,'TRACHEOSTOMY CHANGE    - DR.ARCHIT V RATHOD',1000,1,0,1000,'2025-11-16','16:01:00','0','0000-00-00',146,'','IPD'),(254,0,0,2879,'NEB CHARGE   ',100,5,0,500,'2025-11-16','13:59:00','0','0000-00-00',146,'','IPD'),(255,0,0,2879,'ROOM CHARGES   (210) ',5500,1,0,5500,'2025-11-16','15:30:00','0','0000-00-00',146,'','IPD'),(256,0,0,2879,'SYRINGE PUMP CHARGE   ',500,1,0,500,'2025-11-16','13:58:00','0','0000-00-00',146,'','IPD'),(257,0,0,2879,'NURSING CHARGES   (210) ',600,1,0,600,'2025-11-16','15:30:00','0','0000-00-00',146,'','IPD'),(258,0,0,2879,'X RAY CHARGES   ',1500,1,0,1500,'2025-11-16','14:00:00','0','0000-00-00',146,'','IPD'),(259,0,0,2879,'VENTILATOR CHARGE   ',300,3,0,900,'2025-11-16','19:54:00','0','0000-00-00',146,'','IPD'),(260,0,0,2879,'USG ABDOMEN CHARGE   ',2000,1,0,2000,'2025-11-16','10:57:00','0','0000-00-00',146,'','IPD'),(261,0,0,2879,'OXYGEN CHARGE   ',1500,1,0,1500,'2025-11-16','13:59:00','0','0000-00-00',146,'','IPD'),(262,0,0,2879,'CONSULTANT VISIT 2   (210)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-16','15:30:00','0','0000-00-00',146,'','IPD'),(263,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-16','13:58:00','0','0000-00-00',146,'','IPD'),(264,0,0,2879,'RMO CHARGES DAY   (210) ',800,1,0,800,'2025-11-16','15:30:00','0','0000-00-00',146,'','IPD'),(265,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-17','10:55:00','0','0000-00-00',146,'','IPD'),(266,0,0,2879,'CONSULTANT VISIT 2   (210)  - DR.KRUTARTH  KANJIYA',1600,1,0,1600,'2025-11-17','15:30:00','0','0000-00-00',146,'','IPD'),(267,0,0,2879,'RMO CHARGES DAY   (210) ',800,1,0,800,'2025-11-17','15:30:00','0','0000-00-00',146,'','IPD'),(268,0,0,2879,'NEB CHARGE   ',100,3,0,300,'2025-11-17','10:58:00','0','0000-00-00',146,'','IPD'),(269,0,0,2879,'CONSULTANT VISIT 1    (210)  - DR.KRUTARTH  KANJIYA',1600,1,0,1600,'2025-11-17','15:30:00','0','0000-00-00',146,'','IPD'),(270,0,0,2879,'SYRINGE PUMP CHARGE   ',500,1,0,500,'2025-11-17','10:59:00','0','0000-00-00',146,'','IPD'),(271,0,0,2879,'ICU MONITORING CHARGE   ',1000,1,0,1000,'2025-11-17','17:55:00','0','0000-00-00',146,'','IPD'),(272,0,0,2879,'ROOM CHARGES   (210) ',5500,1,0,5500,'2025-11-17','15:30:00','0','0000-00-00',146,'','IPD'),(273,0,0,2879,'NURSING CHARGES   (210) ',600,1,0,600,'2025-11-17','15:30:00','0','0000-00-00',146,'','IPD'),(274,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-17','10:58:00','0','0000-00-00',146,'','IPD'),(275,0,0,2879,'RMO CHARGES DAY   (210) ',800,1,0,800,'2025-11-18','15:30:00','0','0000-00-00',146,'','IPD'),(276,0,0,2879,'LUMBAR PUNCTURE    - DR.CHAITANYA GOHEL ',3000,1,0,3000,'2025-11-18','10:09:00','0','0000-00-00',146,'','IPD'),(277,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.KAUMIL  KOTHARI ',1500,1,0,1500,'2025-11-18','17:24:00','0','0000-00-00',146,'','IPD'),(278,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-18','10:33:00','0','0000-00-00',146,'','IPD'),(279,0,0,2879,'CONSULTANT VISIT 1    (210)  - DR.KRUTARTH  KANJIYA',1600,1,0,1600,'2025-11-18','15:30:00','0','0000-00-00',146,'','IPD'),(280,0,0,2879,'VENTILATOR CHARGE   ',300,4,0,1200,'2025-11-18','19:55:00','0','0000-00-00',146,'','IPD'),(281,0,0,2879,'ICU MONITORING CHARGE   ',1000,1,0,1000,'2025-11-18','17:55:00','0','0000-00-00',146,'','IPD'),(282,0,0,2879,'NEB CHARGE   ',100,3,0,300,'2025-11-18','10:33:00','0','0000-00-00',146,'','IPD'),(283,0,0,2879,'ROOM CHARGES   (210) ',5500,1,0,5500,'2025-11-18','15:30:00','0','0000-00-00',146,'','IPD'),(284,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.KAUMIL  KOTHARI ',1500,1,0,1500,'2025-11-18','17:24:00','0','0000-00-00',146,'','IPD'),(285,0,0,2879,'NURSING CHARGES   (210) ',600,1,0,600,'2025-11-18','15:30:00','0','0000-00-00',146,'','IPD'),(286,0,0,2879,'SYRINGE PUMP CHARGE   ',500,1,0,500,'2025-11-18','10:33:00','0','0000-00-00',146,'','IPD'),(287,0,0,2879,'CONSULTANT VISIT 2   (210)  - DR.KRUTARTH  KANJIYA',1600,1,0,1600,'2025-11-18','15:30:00','0','0000-00-00',146,'','IPD'),(288,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-18','10:28:00','0','0000-00-00',146,'','IPD'),(289,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-19','10:11:00','0','0000-00-00',146,'','IPD'),(290,0,0,2879,'ROOM CHARGES   (210) ',5500,1,0,5500,'2025-11-19','15:30:00','0','0000-00-00',146,'','IPD'),(291,0,0,2879,'OXYGEN CHARGE   ',1500,1,0,1500,'2025-11-19','19:56:00','0','0000-00-00',146,'','IPD'),(292,0,0,2879,'NURSING CHARGES   (210) ',600,1,0,600,'2025-11-19','15:30:00','0','0000-00-00',146,'','IPD'),(293,0,0,2879,'NEB CHARGE   ',100,4,0,400,'2025-11-19','10:10:00','0','0000-00-00',146,'','IPD'),(294,0,0,2879,'CONSULTANT VISIT 2   (210)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-19','15:30:00','0','0000-00-00',146,'','IPD'),(295,0,0,2879,'RMO CHARGES DAY   (210) ',800,1,0,800,'2025-11-19','15:30:00','0','0000-00-00',146,'','IPD'),(296,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-19','10:09:00','0','0000-00-00',146,'','IPD'),(297,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.MAITRY  PANDYA ',500,1,0,500,'2025-11-19','17:26:00','0','0000-00-00',146,'','IPD'),(298,0,0,2879,'CONSULTANT VISIT 1    (210)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-19','15:30:00','0','0000-00-00',146,'','IPD'),(299,0,0,2879,'OXYGEN CHARGE   ',1500,1,0,1500,'2025-11-19','17:17:00','0','0000-00-00',146,'','IPD'),(300,0,0,2879,'VENTILATOR CHARGE   ',3000,1,0,3000,'2025-11-19','19:55:00','0','0000-00-00',146,'','IPD'),(301,0,0,2879,'ICU MONITORING CHARGE   ',1000,1,0,1000,'2025-11-19','17:55:00','0','0000-00-00',146,'','IPD'),(302,0,0,2879,'TRACHEOSTOMY CHANGE    - DR.ARCHIT V RATHOD',1000,1,0,1000,'2025-11-20','17:15:00','0','0000-00-00',146,'','IPD'),(303,0,0,2879,'RMO CHARGES DAY   ',400,1,0,400,'2025-11-20','17:34:00','0','0000-00-00',146,'','IPD'),(304,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.MAITRY  PANDYA ',500,1,0,500,'2025-11-20','15:59:00','0','0000-00-00',146,'','IPD'),(305,0,0,2879,'NEB CHARGE   ',100,3,0,300,'2025-11-20','17:16:00','0','0000-00-00',146,'','IPD'),(306,0,0,2879,'CONSULTANT VISIT 2    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-20','17:35:00','0','0000-00-00',146,'','IPD'),(307,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.KAUMIL  KOTHARI ',2000,1,0,2000,'2025-11-20','15:54:00','0','0000-00-00',146,'','IPD'),(308,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-20','17:15:00','0','0000-00-00',146,'','IPD'),(309,0,0,2879,'ROOM CHARGES   ',3200,1,0,3200,'2025-11-20','17:34:00','0','0000-00-00',146,'','IPD'),(310,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-20','17:16:00','0','0000-00-00',146,'','IPD'),(311,0,0,2879,'NURSING CHARGES   ',200,1,0,200,'2025-11-20','17:35:00','0','0000-00-00',146,'','IPD'),(312,0,0,2879,'CONSULTANT VISIT 1    (210)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-20','15:30:00','0','0000-00-00',146,'','IPD'),(313,0,0,2879,'MONITOR CHARGE   ',500,1,0,500,'2025-11-20','15:56:00','0','0000-00-00',146,'','IPD'),(314,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-21','15:53:00','0','0000-00-00',146,'','IPD'),(315,0,0,2879,'NURSING CHARGES   (408) ',200,1,0,200,'2025-11-21','15:30:00','0','0000-00-00',146,'','IPD'),(316,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.MAITRY  PANDYA ',500,1,0,500,'2025-11-21','16:15:00','0','0000-00-00',146,'','IPD'),(317,0,0,2879,'CONSULTANT VISIT 2   (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-21','15:30:00','0','0000-00-00',146,'','IPD'),(318,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-21','16:13:00','0','0000-00-00',146,'','IPD'),(319,0,0,2879,'RMO CHARGES DAY   (408) ',400,1,0,400,'2025-11-21','15:30:00','0','0000-00-00',146,'','IPD'),(320,0,0,2879,'MONITOR CHARGE   ',500,1,0,500,'2025-11-21','15:57:00','0','0000-00-00',146,'','IPD'),(321,0,0,2879,'NEB CHARGE   ',100,3,0,300,'2025-11-21','15:53:00','0','0000-00-00',146,'','IPD'),(322,0,0,2879,'CONSULTANT VISIT 1    (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-21','15:30:00','0','0000-00-00',146,'','IPD'),(323,0,0,2879,'ROOM CHARGES   (408) ',3200,1,0,3200,'2025-11-21','15:30:00','0','0000-00-00',146,'','IPD'),(324,0,0,2879,'NURSING CHARGES   (408) ',200,1,0,200,'2025-11-22','15:30:00','0','0000-00-00',146,'','IPD'),(325,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-22','16:13:00','0','0000-00-00',146,'','IPD'),(326,0,0,2879,'CONSULTANT VISIT 2   (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-22','15:30:00','0','0000-00-00',146,'','IPD'),(327,0,0,2879,'MONITOR CHARGE   ',500,1,0,500,'2025-11-22','12:31:00','0','0000-00-00',146,'','IPD'),(328,0,0,2879,'RMO CHARGES DAY   (408) ',400,1,0,400,'2025-11-22','15:30:00','0','0000-00-00',146,'','IPD'),(329,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.ROSHAN MISHTRI ',2000,1,0,2000,'2025-11-22','12:32:00','0','0000-00-00',146,'','IPD'),(330,0,0,2879,'CONSULTANT VISIT 1    (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-22','15:30:00','0','0000-00-00',146,'','IPD'),(331,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.KAUMIL  KOTHARI ',2000,1,0,2000,'2025-11-22','16:55:00','0','0000-00-00',146,'','IPD'),(332,0,0,2879,'NEB CHARGE   ',100,3,0,300,'2025-11-22','16:15:00','0','0000-00-00',146,'','IPD'),(333,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.MAITRY  PANDYA ',500,1,0,500,'2025-11-22','19:39:00','0','0000-00-00',146,'','IPD'),(334,0,0,2879,'ROOM CHARGES   (408) ',3200,1,0,3200,'2025-11-22','15:30:00','0','0000-00-00',146,'','IPD'),(335,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-22','16:13:00','0','0000-00-00',146,'','IPD'),(336,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,4,0,400,'2025-11-23','12:30:00','0','0000-00-00',146,'','IPD'),(337,0,0,2879,'CONSULTANT VISIT 1    (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-23','15:30:00','0','0000-00-00',146,'','IPD'),(338,0,0,2879,'RMO CHARGES DAY   (408) ',400,1,0,400,'2025-11-23','15:30:00','0','0000-00-00',146,'','IPD'),(339,0,0,2879,'ROOM CHARGES   (408) ',3200,1,0,3200,'2025-11-23','15:30:00','0','0000-00-00',146,'','IPD'),(340,0,0,2879,'NURSING CHARGES   (408) ',200,1,0,200,'2025-11-23','15:30:00','0','0000-00-00',146,'','IPD'),(341,0,0,2879,'NEB CHARGE   ',100,3,0,300,'2025-11-23','12:31:00','0','0000-00-00',146,'','IPD'),(342,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-23','20:01:00','0','0000-00-00',146,'','IPD'),(343,0,0,2879,'CONSULTANT VISIT 2   (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-23','15:30:00','0','0000-00-00',146,'','IPD'),(344,0,0,2879,'MONITOR CHARGE   ',500,1,0,500,'2025-11-23','12:32:00','0','0000-00-00',146,'','IPD'),(345,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.MAITRY  PANDYA ',500,1,0,500,'2025-11-23','16:56:00','0','0000-00-00',146,'','IPD'),(346,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-24','09:48:00','0','0000-00-00',146,'','IPD'),(347,0,0,2879,'CONSULTANT VISIT 1    (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-24','15:30:00','0','0000-00-00',146,'','IPD'),(348,0,0,2879,'NEB CHARGE   ',100,3,0,300,'2025-11-24','09:48:00','0','0000-00-00',146,'','IPD'),(349,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-24','20:01:00','0','0000-00-00',146,'','IPD'),(350,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.KAUMIL  KOTHARI ',2000,1,0,2000,'2025-11-24','16:55:00','0','0000-00-00',146,'','IPD'),(351,0,0,2879,'ROOM CHARGES   (408) ',3200,1,0,3200,'2025-11-24','15:30:00','0','0000-00-00',146,'','IPD'),(352,0,0,2879,'NURSING CHARGES   (408) ',200,1,0,200,'2025-11-24','15:30:00','0','0000-00-00',146,'','IPD'),(353,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.MAITRY  PANDYA ',500,1,0,500,'2025-11-24','16:56:00','0','0000-00-00',146,'','IPD'),(354,0,0,2879,'MONITOR CHARGE   ',500,1,0,500,'2025-11-24','09:48:00','0','0000-00-00',146,'','IPD'),(355,0,0,2879,'CONSULTANT VISIT 2   (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-24','15:30:00','0','0000-00-00',146,'','IPD'),(356,0,0,2879,'OXYGEN CHARGE   ',1500,1,0,1500,'2025-11-24','16:53:00','0','0000-00-00',146,'','IPD'),(357,0,0,2879,'RMO CHARGES DAY   (408) ',400,1,0,400,'2025-11-24','15:30:00','0','0000-00-00',146,'','IPD'),(358,0,0,2879,'ROOM CHARGES   (408) ',3200,1,0,3200,'2025-11-25','15:30:00','0','0000-00-00',146,'','IPD'),(359,0,0,2879,'NEB CHARGE   ',100,3,0,300,'2025-11-25','16:54:00','0','0000-00-00',146,'','IPD'),(360,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-25','16:52:00','0','0000-00-00',146,'','IPD'),(361,0,0,2879,'NURSING CHARGES   (408) ',200,1,0,200,'2025-11-25','15:30:00','0','0000-00-00',146,'','IPD'),(362,0,0,2879,'OXYGEN CHARGE   ',1500,1,0,1500,'2025-11-25','16:53:00','0','0000-00-00',146,'','IPD'),(363,0,0,2879,'MONITOR CHARGE   ',500,1,0,500,'2025-11-25','10:39:00','0','0000-00-00',146,'','IPD'),(364,0,0,2879,'CONSULTANT VISIT 2   (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-25','15:30:00','0','0000-00-00',146,'','IPD'),(365,0,0,2879,'RMO CHARGES DAY   (408) ',400,1,0,400,'2025-11-25','15:30:00','0','0000-00-00',146,'','IPD'),(366,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.MAITRY  PANDYA ',500,1,0,500,'2025-11-25','16:28:00','0','0000-00-00',146,'','IPD'),(367,0,0,2879,'CONSULTANT VISIT 1    (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-25','15:30:00','0','0000-00-00',146,'','IPD'),(368,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-25','20:01:00','0','0000-00-00',146,'','IPD'),(369,0,0,2879,'CONSULTANT VISIT 1    (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-26','15:30:00','0','0000-00-00',146,'','IPD'),(370,0,0,2879,'ROOM CHARGES   (408) ',3200,1,0,3200,'2025-11-26','15:30:00','0','0000-00-00',146,'','IPD'),(371,0,0,2879,'OXYGEN CHARGE   ',1500,1,0,1500,'2025-11-26','10:39:00','0','0000-00-00',146,'','IPD'),(372,0,0,2879,'NEB CHARGE   ',100,3,0,300,'2025-11-26','10:40:00','0','0000-00-00',146,'','IPD'),(373,0,0,2879,'NURSING CHARGES   (408) ',200,1,0,200,'2025-11-26','15:30:00','0','0000-00-00',146,'','IPD'),(374,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.MAITRY  PANDYA ',500,1,0,500,'2025-11-26','16:29:00','0','0000-00-00',146,'','IPD'),(375,0,0,2879,'ECG   ',300,1,0,300,'2025-11-26','10:42:00','0','0000-00-00',146,'','IPD'),(376,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-26','20:01:00','0','0000-00-00',146,'','IPD'),(377,0,0,2879,'CONSULTANT VISIT 2   (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-26','15:30:00','0','0000-00-00',146,'','IPD'),(378,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-26','10:41:00','0','0000-00-00',146,'','IPD'),(379,0,0,2879,'MONITOR CHARGE   ',500,1,0,500,'2025-11-26','10:40:00','0','0000-00-00',146,'','IPD'),(380,0,0,2879,'RMO CHARGES DAY   (408) ',400,1,0,400,'2025-11-26','15:30:00','0','0000-00-00',146,'','IPD'),(381,0,0,2879,'FOLEYS CATHETER    - DR.ARCHIT V RATHOD',750,1,0,750,'2025-11-26','10:42:00','0','0000-00-00',146,'','IPD'),(382,0,0,2879,'NEB CHARGE   ',100,3,0,300,'2025-11-27','10:40:00','0','0000-00-00',146,'','IPD'),(383,0,0,2879,'CONSULTANT VISIT 1    (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-27','15:30:00','0','0000-00-00',146,'','IPD'),(384,0,0,2879,'MONITOR CHARGE   ',500,1,0,500,'2025-11-27','10:40:00','0','0000-00-00',146,'','IPD'),(385,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.MAITRY  PANDYA ',500,1,0,500,'2025-11-27','10:42:00','0','0000-00-00',146,'','IPD'),(386,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-27','20:01:00','0','0000-00-00',146,'','IPD'),(387,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-27','10:41:00','0','0000-00-00',146,'','IPD'),(388,0,0,2879,'ROOM CHARGES   (408) ',3200,1,0,3200,'2025-11-27','15:30:00','0','0000-00-00',146,'','IPD'),(389,0,0,2879,'NURSING CHARGES   (408) ',200,1,0,200,'2025-11-27','15:30:00','0','0000-00-00',146,'','IPD'),(390,0,0,2879,'LUMBAR PUNCTURE    - DR.CHAITANYA GOHEL ',3000,1,0,3000,'2025-11-27','18:06:00','0','0000-00-00',146,'','IPD'),(391,0,0,2879,'CONSULTANT VISIT 2   (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-27','15:30:00','0','0000-00-00',146,'','IPD'),(392,0,0,2879,'RMO CHARGES DAY   (408) ',400,1,0,400,'2025-11-27','15:30:00','0','0000-00-00',146,'','IPD'),(393,0,0,2879,'OXYGEN CHARGE   ',1500,1,0,1500,'2025-11-27','10:39:00','0','0000-00-00',146,'','IPD'),(394,0,0,2879,'NEB CHARGE   ',100,3,0,300,'2025-11-28','16:30:00','0','0000-00-00',146,'','IPD'),(395,0,0,2879,'CONSULTANT VISIT 1    (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-28','15:30:00','0','0000-00-00',146,'','IPD'),(396,0,0,2879,'NURSING CHARGES   ',600,0.5,0,300,'2025-11-28','20:06:00','0','0000-00-00',146,'','IPD'),(397,0,0,2879,'ROOM CHARGES   (408) ',3200,0.5,0,1600,'2025-11-28','15:30:00','0','0000-00-00',146,'','IPD'),(398,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.MAITRY  PANDYA ',500,1,0,500,'2025-11-28','16:27:00','0','0000-00-00',146,'','IPD'),(399,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-28','16:26:00','0','0000-00-00',146,'','IPD'),(400,0,0,2879,'NURSING CHARGES   (408) ',200,0.5,0,100,'2025-11-28','15:30:00','0','0000-00-00',146,'','IPD'),(401,0,0,2879,'MONITOR CHARGE   ',500,1,0,500,'2025-11-28','16:27:00','0','0000-00-00',146,'','IPD'),(402,0,0,2879,'RMO CHARGES DAY   ',800,0.5,0,400,'2025-11-28','20:06:00','0','0000-00-00',146,'','IPD'),(403,0,0,2879,'INTRATHECAL CATHETER CHARGE    - DR.CHAITANYA GOHEL ',4000,1,0,4000,'2025-11-28','19:51:00','0','0000-00-00',146,'','IPD'),(404,0,0,2879,'CONSULTANT VISIT 2   (408)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-28','15:30:00','0','0000-00-00',146,'','IPD'),(405,0,0,2879,'RMO CHARGES DAY   (408) ',400,0.5,0,200,'2025-11-28','15:30:00','0','0000-00-00',146,'','IPD'),(406,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-28','20:01:00','0','0000-00-00',146,'','IPD'),(407,0,0,2879,'VENTILATOR CHARGE   ',300,1,0,300,'2025-11-28','19:58:00','0','0000-00-00',146,'','IPD'),(408,0,0,2879,'OXYGEN CHARGE   ',1500,1,0,1500,'2025-11-28','16:26:00','0','0000-00-00',146,'','IPD'),(409,0,0,2879,'ROOM CHARGES   ',5500,0.5,0,2750,'2025-11-28','20:06:00','0','0000-00-00',146,'','IPD'),(410,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.JAYANT K MEHTA',1100,1,0,1100,'2025-11-29','19:59:00','0','0000-00-00',146,'','IPD'),(411,0,0,2879,'NURSING CHARGES   ',200,1,0,200,'2025-11-29','18:32:00','0','0000-00-00',146,'','IPD'),(412,0,0,2879,'CONSULTANT VISIT 2   (207)  - DR.KRUTARTH  KANJIYA',1100,1,0,1100,'2025-11-29','15:30:00','0','0000-00-00',146,'','IPD'),(413,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-29','19:51:00','0','0000-00-00',146,'','IPD'),(414,0,0,2879,'OTHER CONSULTANT VISIT CHARGE    - DR.MAITRY  PANDYA ',500,1,0,500,'2025-11-29','19:56:00','0','0000-00-00',146,'','IPD'),(415,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-29','20:01:00','0','0000-00-00',146,'','IPD'),(416,0,0,2879,'RMO CHARGES DAY   ',400,1,0,400,'2025-11-29','18:32:00','0','0000-00-00',146,'','IPD'),(417,0,0,2879,'NEB CHARGE   ',100,3,0,300,'2025-11-29','19:52:00','0','0000-00-00',146,'','IPD'),(418,0,0,2879,'CONSULTANT VISIT 1    (207)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-29','15:30:00','0','0000-00-00',146,'','IPD'),(419,0,0,2879,'ICU MONITORING CHARGE   ',1000,1,0,1000,'2025-11-29','20:03:00','0','0000-00-00',146,'','IPD'),(420,0,0,2879,'OXYGEN CHARGE   ',1500,1,0,1500,'2025-11-29','19:56:00','0','0000-00-00',146,'','IPD'),(421,0,0,2879,'ROOM CHARGES   ',3200,1,0,3200,'2025-11-29','18:32:00','0','0000-00-00',146,'','IPD'),(422,0,0,2879,'CONSULTANT VISIT 2   (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-30','15:30:00','0','0000-00-00',146,'','IPD'),(423,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-11-30','20:01:00','0','0000-00-00',146,'','IPD'),(424,0,0,2879,'RMO CHARGES DAY   (408) ',400,1,0,400,'2025-11-30','15:30:00','0','0000-00-00',146,'','IPD'),(425,0,0,2879,'NEB CHARGE   ',100,3,0,300,'2025-11-30','19:52:00','0','0000-00-00',146,'','IPD'),(426,0,0,2879,'MONITOR CHARGE   ',500,1,0,500,'2025-11-30','20:03:00','0','0000-00-00',146,'','IPD'),(427,0,0,2879,'CONSULTANT VISIT 1    (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-30','15:30:00','0','0000-00-00',146,'','IPD'),(428,0,0,2879,'VENTILATOR CHARGE   ',300,1,0,300,'2025-11-30','19:55:00','0','0000-00-00',146,'','IPD'),(429,0,0,2879,'ROOM CHARGES   (408) ',3200,1,0,3200,'2025-11-30','15:30:00','0','0000-00-00',146,'','IPD'),(430,0,0,2879,'NURSING CHARGES   (408) ',200,1,0,200,'2025-11-30','15:30:00','0','0000-00-00',146,'','IPD'),(431,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-30','19:51:00','0','0000-00-00',146,'','IPD'),(432,0,0,2879,'NURSING CHARGES   (408) ',200,0.5,0,100,'2025-12-01','15:30:00','0','0000-00-00',146,'','IPD'),(433,0,0,2879,'AIR BED CHARGE   ',200,1,0,200,'2025-12-01','19:41:00','0','0000-00-00',146,'','IPD'),(434,0,0,2879,'CONSULTANT VISIT 2   (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-01','15:30:00','0','0000-00-00',146,'','IPD'),(435,0,0,2879,'RBS (RANDOM BLOOD SUGAR)   ',100,4,0,400,'2025-12-01','19:42:00','0','0000-00-00',146,'','IPD'),(436,0,0,2879,'RMO CHARGES DAY   (408) ',400,0.5,0,200,'2025-12-01','15:30:00','0','0000-00-00',146,'','IPD'),(437,0,0,2879,'MONITOR CHARGE   ',500,1,0,500,'2025-12-01','19:40:00','0','0000-00-00',146,'','IPD'),(438,0,0,2879,'CONSULTANT VISIT 1    (408)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-01','15:30:00','0','0000-00-00',146,'','IPD'),(439,0,0,2879,'NEB CHARGE   ',100,2,0,200,'2025-12-01','19:42:00','0','0000-00-00',146,'','IPD'),(440,0,0,2879,'ROOM CHARGES   (408) ',3200,0.5,0,1600,'2025-12-01','15:30:00','0','0000-00-00',146,'','IPD'),(441,0,0,2879,'Advance - By CASH',0,0,15000,0,'0000-00-00','00:00:00','3552','2025-11-11',146,'CSH','IPD'),(442,0,0,2879,'Advance - By CASH',0,0,25000,0,'0000-00-00','00:00:00','3733','2025-11-12',146,'CSH','IPD'),(443,0,0,2879,'Advance - By CASH',0,0,30000,0,'0000-00-00','00:00:00','3939','2025-11-13',146,'CSH','IPD'),(444,0,0,2879,'Advance - By CASH',0,0,30000,0,'0000-00-00','00:00:00','4114','2025-11-15',146,'CSH','IPD'),(445,0,0,2879,'Advance - By CASH',0,0,20000,0,'0000-00-00','00:00:00','4202','2025-11-16',146,'CSH','IPD'),(446,0,0,2879,'Advance - By CASH',0,0,32000,0,'0000-00-00','00:00:00','4330','2025-11-18',146,'CSH','IPD'),(447,0,0,2879,'Advance - By CASH',0,0,20000,0,'0000-00-00','00:00:00','4651','2025-11-20',146,'CSH','IPD'),(448,0,0,2879,'Advance - By CASH',0,0,25000,0,'0000-00-00','00:00:00','4875','2025-11-23',146,'CSH','IPD'),(449,0,0,2879,'Advance - By CASH',0,0,20000,0,'0000-00-00','00:00:00','5244','2025-11-26',146,'CSH','IPD'),(450,0,0,2879,'Advance - By UPI',0,0,18000,0,'0000-00-00','00:00:00','5740','2025-11-30',146,'7','IPD'),(451,0,0,3764,'ADMISSION CHARGE   ',250,1,0,250,'2025-11-20','10:00:00','HD219','2025-12-01',178,'','IPD'),(452,0,0,3764,'CONSULTANT VISIT 2   (214)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-20','10:00:00','HD219','2025-12-01',178,'','IPD'),(453,0,0,3764,'USG ABDOMEN WITH PELVIS   ',1500,1,0,1500,'2025-11-20','14:39:00','HD219','2025-12-01',178,'','IPD'),(454,0,0,3764,'RMO CHARGES DAY   (214) ',800,1,0,800,'2025-11-20','10:00:00','HD219','2025-12-01',178,'','IPD'),(455,0,0,3764,'INFUSION PUMP   ',500,1,0,500,'2025-11-20','14:39:00','HD219','2025-12-01',178,'','IPD'),(456,0,0,3764,'CONSULTANT VISIT 1    (214)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-20','10:00:00','HD219','2025-12-01',178,'','IPD'),(457,0,0,3764,'ECG   ',300,1,0,300,'2025-11-20','14:39:00','HD219','2025-12-01',178,'','IPD'),(458,0,0,3764,'CONSULTANT VISIT 1     - DR.ROSHAN MISHTRI ',2000,1,0,2000,'2025-11-20','14:44:00','HD219','2025-12-01',178,'','IPD'),(459,0,0,3764,'ROOM CHARGES   (214) ',5500,1,0,5500,'2025-11-20','10:00:00','HD219','2025-12-01',178,'','IPD'),(460,0,0,3764,'NURSING CHARGES   (214) ',600,1,0,600,'2025-11-20','10:00:00','HD219','2025-12-01',178,'','IPD'),(461,0,0,3764,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-20','14:39:00','HD219','2025-12-01',178,'','IPD'),(462,0,0,3764,'MRD CHARGES   ',250,1,0,250,'2025-11-20','10:00:00','HD219','2025-12-01',178,'','IPD'),(463,0,0,3764,'CONSULTANT VISIT 2    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-21','14:42:00','HD219','2025-12-01',178,'','IPD'),(464,0,0,3764,'CONSULTANT VISIT 2    - DR.ROSHAN MISHTRI ',1500,1,0,1500,'2025-11-21','16:28:00','HD219','2025-12-01',178,'','IPD'),(465,0,0,3764,'CONSULTANT VISIT 1     - DR.ROSHAN MISHTRI ',1500,1,0,1500,'2025-11-21','14:44:00','HD219','2025-12-01',178,'','IPD'),(466,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.MAITRY  PANDYA ',500,1,0,500,'2025-11-21','16:07:00','HD219','2025-12-01',178,'','IPD'),(467,0,0,3764,'X-RAY CHEST BEDSIDE    ',1000,1,0,1000,'2025-11-21','13:23:00','HD219','2025-12-01',178,'','IPD'),(468,0,0,3764,'RMO CHARGES DAY   ',400,1,0,400,'2025-11-21','14:43:00','HD219','2025-12-01',178,'','IPD'),(469,0,0,3764,'AIR BED CHARGE   ',200,1,0,200,'2025-11-21','16:04:00','HD219','2025-12-01',178,'','IPD'),(470,0,0,3764,'CONSULTANT VISIT 1    (214)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-21','10:00:00','HD219','2025-12-01',178,'','IPD'),(471,0,0,3764,'ROOM CHARGES   ',3200,1,0,3200,'2025-11-21','14:43:00','HD219','2025-12-01',178,'','IPD'),(472,0,0,3764,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-21','14:39:00','HD219','2025-12-01',178,'','IPD'),(473,0,0,3764,'NURSING CHARGES   ',200,1,0,200,'2025-11-21','14:43:00','HD219','2025-12-01',178,'','IPD'),(474,0,0,3764,'NURSING CHARGES   (406) ',200,1,0,200,'2025-11-22','10:00:00','HD219','2025-12-01',178,'','IPD'),(475,0,0,3764,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-22','16:04:00','HD219','2025-12-01',178,'','IPD'),(476,0,0,3764,'RMO CHARGES DAY   (406) ',400,1,0,400,'2025-11-22','10:00:00','HD219','2025-12-01',178,'','IPD'),(477,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-22','16:08:00','HD219','2025-12-01',178,'','IPD'),(478,0,0,3764,'CONSULTANT VISIT 2   (406)  - DR.ROSHAN MISHTRI ',1500,1,0,1500,'2025-11-22','10:00:00','HD219','2025-12-01',178,'','IPD'),(479,0,0,3764,'INFUSION PUMP   ',500,1,0,500,'2025-11-22','17:07:00','HD219','2025-12-01',178,'','IPD'),(480,0,0,3764,'ROOM CHARGES   (406) ',3200,1,0,3200,'2025-11-22','10:00:00','HD219','2025-12-01',178,'','IPD'),(481,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-22','16:07:00','HD219','2025-12-01',178,'','IPD'),(482,0,0,3764,'AIR BED CHARGE   ',200,1,0,200,'2025-11-22','16:04:00','HD219','2025-12-01',178,'','IPD'),(483,0,0,3764,'ROOM CHARGES   (213) ',5500,1,0,5500,'2025-11-23','10:00:00','HD219','2025-12-01',178,'','IPD'),(484,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-23','12:16:00','HD219','2025-12-01',178,'','IPD'),(485,0,0,3764,'AIR BED CHARGE   ',200,1,0,200,'2025-11-23','12:15:00','HD219','2025-12-01',178,'','IPD'),(486,0,0,3764,'INFUSION PUMP   ',500,1,0,500,'2025-11-23','17:07:00','HD219','2025-12-01',178,'','IPD'),(487,0,0,3764,'NURSING CHARGES   (213) ',600,1,0,600,'2025-11-23','10:00:00','HD219','2025-12-01',178,'','IPD'),(488,0,0,3764,'2D ECHO    - DR.VARSHIT  HATHI ',1500,1,0,1500,'2025-11-23','12:20:00','HD219','2025-12-01',178,'','IPD'),(489,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-11-23','12:16:00','HD219','2025-12-01',178,'','IPD'),(490,0,0,3764,'ECG   ',300,2,0,600,'2025-11-23','12:14:00','HD219','2025-12-01',178,'','IPD'),(491,0,0,3764,'RMO CHARGES DAY   (213) ',800,1,0,800,'2025-11-23','10:00:00','HD219','2025-12-01',178,'','IPD'),(492,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.VARSHIT  HATHI ',1500,1,0,1500,'2025-11-23','12:17:00','HD219','2025-12-01',178,'','IPD'),(493,0,0,3764,'OXYGEN CHARGE   ',1500,1,0,1500,'2025-11-23','12:15:00','HD219','2025-12-01',178,'','IPD'),(494,0,0,3764,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-23','12:14:00','HD219','2025-12-01',178,'','IPD'),(495,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-24','16:33:00','HD219','2025-12-01',178,'','IPD'),(496,0,0,3764,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-24','17:05:00','HD219','2025-12-01',178,'','IPD'),(497,0,0,3764,'NURSING CHARGES   (305) ',200,1,0,200,'2025-11-24','10:00:00','HD219','2025-12-01',178,'','IPD'),(498,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.KRUTARTH  KANJIYA',2500,1,0,2500,'2025-11-24','16:32:00','HD219','2025-12-01',178,'','IPD'),(499,0,0,3764,'AIR BED CHARGE   ',200,1,0,200,'2025-11-24','17:05:00','HD219','2025-12-01',178,'','IPD'),(500,0,0,3764,'CONSULTANT VISIT 2   (305)  - DR.ROSHAN MISHTRI ',1500,1,0,1500,'2025-11-24','10:00:00','HD219','2025-12-01',178,'','IPD'),(501,0,0,3764,'USG ABDOMEN CHARGE   ',1200,1,0,1200,'2025-11-24','17:04:00','HD219','2025-12-01',178,'','IPD'),(502,0,0,3764,'RMO CHARGES DAY   (305) ',400,1,0,400,'2025-11-24','10:00:00','HD219','2025-12-01',178,'','IPD'),(503,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-24','16:33:00','HD219','2025-12-01',178,'','IPD'),(504,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.JATIN  PATEL ',500,1,0,500,'2025-11-24','16:31:00','HD219','2025-12-01',178,'','IPD'),(505,0,0,3764,'CONSULTANT VISIT 1    (305)  - DR.ROSHAN MISHTRI ',1500,1,0,1500,'2025-11-24','10:00:00','HD219','2025-12-01',178,'','IPD'),(506,0,0,3764,'ROOM CHARGES   (305) ',3200,1,0,3200,'2025-11-24','10:00:00','HD219','2025-12-01',178,'','IPD'),(507,0,0,3764,'ROOM CHARGES   (305) ',3200,1,0,3200,'2025-11-25','10:00:00','HD219','2025-12-01',178,'','IPD'),(508,0,0,3764,'FOLEYS CATHETER    - DR.ROSHAN MISHTRI ',750,1,0,750,'2025-11-25','11:47:00','HD219','2025-12-01',178,'','IPD'),(509,0,0,3764,'AIR BED CHARGE   ',200,1,0,200,'2025-11-25','17:05:00','HD219','2025-12-01',178,'','IPD'),(510,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.KRUTARTH  KANJIYA',2000,1,0,2000,'2025-11-25','11:53:00','HD219','2025-12-01',178,'','IPD'),(511,0,0,3764,'NURSING CHARGES   (305) ',200,1,0,200,'2025-11-25','10:00:00','HD219','2025-12-01',178,'','IPD'),(512,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-25','16:33:00','HD219','2025-12-01',178,'','IPD'),(513,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATIK SHAH  ',2000,1,0,2000,'2025-11-25','11:52:00','HD219','2025-12-01',178,'','IPD'),(514,0,0,3764,'CONSULTANT VISIT 2   (305)  - DR.ROSHAN MISHTRI ',1500,1,0,1500,'2025-11-25','10:00:00','HD219','2025-12-01',178,'','IPD'),(515,0,0,3764,'DRESSING CHARGE - MINOR    - DR.ROSHAN MISHTRI ',200,1,0,200,'2025-11-25','11:49:00','HD219','2025-12-01',178,'','IPD'),(516,0,0,3764,'RMO CHARGES DAY   (305) ',400,1,0,400,'2025-11-25','10:00:00','HD219','2025-12-01',178,'','IPD'),(517,0,0,3764,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-25','17:05:00','HD219','2025-12-01',178,'','IPD'),(518,0,0,3764,'CONSULTANT VISIT 1    (305)  - DR.ROSHAN MISHTRI ',1500,1,0,1500,'2025-11-25','10:00:00','HD219','2025-12-01',178,'','IPD'),(519,0,0,3764,'INFUSION PUMP   ',500,1,0,500,'2025-11-25','11:49:00','HD219','2025-12-01',178,'','IPD'),(520,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-25','16:33:00','HD219','2025-12-01',178,'','IPD'),(521,0,0,3764,'DRESSING CHARGE - MINOR    - DR.ROSHAN MISHTRI ',200,1,0,200,'2025-11-26','11:49:00','HD219','2025-12-01',178,'','IPD'),(522,0,0,3764,'NURSING CHARGES   (305) ',200,1,0,200,'2025-11-26','10:00:00','HD219','2025-12-01',178,'','IPD'),(523,0,0,3764,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-26','11:46:00','HD219','2025-12-01',178,'','IPD'),(524,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-26','11:51:00','HD219','2025-12-01',178,'','IPD'),(525,0,0,3764,'CONSULTANT VISIT 2   (305)  - DR.ROSHAN MISHTRI ',1500,1,0,1500,'2025-11-26','10:00:00','HD219','2025-12-01',178,'','IPD'),(526,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATIK SHAH  ',1500,1,0,1500,'2025-11-26','11:52:00','HD219','2025-12-01',178,'','IPD'),(527,0,0,3764,'RMO CHARGES DAY   (305) ',400,1,0,400,'2025-11-26','10:00:00','HD219','2025-12-01',178,'','IPD'),(528,0,0,3764,'AIR BED CHARGE   ',200,1,0,200,'2025-11-26','11:48:00','HD219','2025-12-01',178,'','IPD'),(529,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-26','11:50:00','HD219','2025-12-01',178,'','IPD'),(530,0,0,3764,'CONSULTANT VISIT 1    (305)  - DR.ROSHAN MISHTRI ',1500,1,0,1500,'2025-11-26','10:00:00','HD219','2025-12-01',178,'','IPD'),(531,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.PRATIK SHAH  ',1500,1,0,1500,'2025-11-26','11:52:00','HD219','2025-12-01',178,'','IPD'),(532,0,0,3764,'ROOM CHARGES   (305) ',3200,1,0,3200,'2025-11-26','10:00:00','HD219','2025-12-01',178,'','IPD'),(533,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-27','11:51:00','HD219','2025-12-01',178,'','IPD'),(534,0,0,3764,'ROOM CHARGES   (305) ',3200,1,0,3200,'2025-11-27','10:00:00','HD219','2025-12-01',178,'','IPD'),(535,0,0,3764,'RCC TRANSFUSION CHARGE   ',500,1,0,500,'2025-11-27','16:05:00','HD219','2025-12-01',178,'','IPD'),(536,0,0,3764,'AIR BED CHARGE   ',200,1,0,200,'2025-11-27','11:48:00','HD219','2025-12-01',178,'','IPD'),(537,0,0,3764,'NURSING CHARGES   (305) ',200,1,0,200,'2025-11-27','10:00:00','HD219','2025-12-01',178,'','IPD'),(538,0,0,3764,'CONSULTANT VISIT 2   (305)  - DR.ROSHAN MISHTRI ',1500,1,0,1500,'2025-11-27','10:00:00','HD219','2025-12-01',178,'','IPD'),(539,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-27','11:51:00','HD219','2025-12-01',178,'','IPD'),(540,0,0,3764,'RMO CHARGES DAY   (305) ',400,1,0,400,'2025-11-27','10:00:00','HD219','2025-12-01',178,'','IPD'),(541,0,0,3764,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-27','16:05:00','HD219','2025-12-01',178,'','IPD'),(542,0,0,3764,'CONSULTANT VISIT 1    (305)  - DR.ROSHAN MISHTRI ',1500,1,0,1500,'2025-11-27','10:00:00','HD219','2025-12-01',178,'','IPD'),(543,0,0,3764,'NURSING CHARGES   (305) ',200,1,0,200,'2025-11-28','10:00:00','HD219','2025-12-01',178,'','IPD'),(544,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-28','16:08:00','HD219','2025-12-01',178,'','IPD'),(545,0,0,3764,'CONSULTANT VISIT 2   (305)  - DR.ROSHAN MISHTRI ',1500,1,0,1500,'2025-11-28','10:00:00','HD219','2025-12-01',178,'','IPD'),(546,0,0,3764,'RMO CHARGES DAY   (305) ',400,1,0,400,'2025-11-28','10:00:00','HD219','2025-12-01',178,'','IPD'),(547,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-28','16:08:00','HD219','2025-12-01',178,'','IPD'),(548,0,0,3764,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-28','16:05:00','HD219','2025-12-01',178,'','IPD'),(549,0,0,3764,'CONSULTANT VISIT 1    (305)  - DR.ROSHAN MISHTRI ',1500,1,0,1500,'2025-11-28','10:00:00','HD219','2025-12-01',178,'','IPD'),(550,0,0,3764,'ROOM CHARGES   (305) ',3200,1,0,3200,'2025-11-28','10:00:00','HD219','2025-12-01',178,'','IPD'),(551,0,0,3764,'AIR BED CHARGE   ',200,1,0,200,'2025-11-28','16:06:00','HD219','2025-12-01',178,'','IPD'),(552,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-29','20:31:00','HD219','2025-12-01',178,'','IPD'),(553,0,0,3764,'CONSULTANT VISIT 2   (305)  - DR.ROSHAN MISHTRI ',1500,1,0,1500,'2025-11-29','10:00:00','HD219','2025-12-01',178,'','IPD'),(554,0,0,3764,'RMO CHARGES DAY   (305) ',400,1,0,400,'2025-11-29','10:00:00','HD219','2025-12-01',178,'','IPD'),(555,0,0,3764,'AIR BED CHARGE   ',200,1,0,200,'2025-11-29','19:24:00','HD219','2025-12-01',178,'','IPD'),(556,0,0,3764,'CONSULTANT VISIT 1    (305)  - DR.ROSHAN MISHTRI ',1500,1,0,1500,'2025-11-29','10:00:00','HD219','2025-12-01',178,'','IPD'),(557,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.KRUTARTH  KANJIYA',1500,1,0,1500,'2025-11-29','20:32:00','HD219','2025-12-01',178,'','IPD'),(558,0,0,3764,'ROOM CHARGES   (305) ',3200,1,0,3200,'2025-11-29','10:00:00','HD219','2025-12-01',178,'','IPD'),(559,0,0,3764,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-29','19:23:00','HD219','2025-12-01',178,'','IPD'),(560,0,0,3764,'NURSING CHARGES   (305) ',200,1,0,200,'2025-11-29','10:00:00','HD219','2025-12-01',178,'','IPD'),(561,0,0,3764,'ROOM CHARGES   (305) ',3200,1,0,3200,'2025-11-30','10:00:00','HD219','2025-12-01',178,'','IPD'),(562,0,0,3764,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-11-30','20:28:00','HD219','2025-12-01',178,'','IPD'),(563,0,0,3764,'NURSING CHARGES   (305) ',200,1,0,200,'2025-11-30','10:00:00','HD219','2025-12-01',178,'','IPD'),(564,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-30','20:32:00','HD219','2025-12-01',178,'','IPD'),(565,0,0,3764,'AIR BED CHARGE   ',200,1,0,200,'2025-11-30','20:29:00','HD219','2025-12-01',178,'','IPD'),(566,0,0,3764,'CONSULTANT VISIT 2   (305)  - DR.ROSHAN MISHTRI ',1500,1,0,1500,'2025-11-30','10:00:00','HD219','2025-12-01',178,'','IPD'),(567,0,0,3764,'RMO CHARGES DAY   (305) ',400,1,0,400,'2025-11-30','10:00:00','HD219','2025-12-01',178,'','IPD'),(568,0,0,3764,'PC ENEMA   ',500,1,0,500,'2025-11-30','20:28:00','HD219','2025-12-01',178,'','IPD'),(569,0,0,3764,'CONSULTANT VISIT 1    (305)  - DR.ROSHAN MISHTRI ',1500,1,0,1500,'2025-11-30','10:00:00','HD219','2025-12-01',178,'','IPD'),(570,0,0,3764,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-11-30','20:32:00','HD219','2025-12-01',178,'','IPD'),(571,0,0,3764,'Advance - By CASH',0,0,15000,0,'0000-00-00','00:00:00','4551','2025-11-20',178,'CSH','IPD'),(572,0,0,3764,'Advance - By CASH',0,0,10000,0,'0000-00-00','00:00:00','4734','2025-11-21',178,'CSH','IPD'),(573,0,0,3764,'Advance - By CASH',0,0,15000,0,'0000-00-00','00:00:00','4853','2025-11-22',178,'CSH','IPD'),(574,0,0,3764,'Advance - By CASH',0,0,20000,0,'0000-00-00','00:00:00','5037','2025-11-25',178,'CSH','IPD'),(575,0,0,3764,'Advance - By CASH',0,0,20000,0,'0000-00-00','00:00:00','5155','2025-11-25',178,'CSH','IPD'),(576,0,0,3764,'Advance - By CASH',0,0,25000,0,'0000-00-00','00:00:00','5530','2025-11-28',178,'CSH','IPD'),(577,0,0,3764,'Advance - By CASH',0,0,25250,0,'0000-00-00','00:00:00','5841','2025-12-01',178,'CSH','IPD'),(893,0,0,4857,'ADMISSION CHARGE   ',250,1,0,250,'2025-12-02','00:00:00','0','0000-00-00',232,'CSH','IPD'),(894,0,0,4857,'NURSING CHARGES   (409) ',200,1,0,200,'2025-12-02','00:00:00','0','0000-00-00',232,'CSH','IPD'),(895,0,0,4857,'RBS (RANDOM BLOOD SUGAR)   ',100,1,0,100,'2025-12-02','00:00:00','0','0000-00-00',232,'CSH','IPD'),(896,0,0,4857,'MRD CHARGES   ',250,1,0,250,'2025-12-02','00:00:00','0','0000-00-00',232,'CSH','IPD'),(897,0,0,4857,'CONSULTANT VISIT 2   (409) ',800,1,0,800,'2025-12-02','00:00:00','0','0000-00-00',232,'CSH','IPD'),(898,0,0,4857,'RMO CHARGES DAY   (409) ',300,1,0,300,'2025-12-02','00:00:00','0','0000-00-00',232,'CSH','IPD'),(899,0,0,4857,'CONSULTANT VISIT 1    (409) ',800,1,0,800,'2025-12-02','00:00:00','0','0000-00-00',232,'CSH','IPD'),(900,0,0,4857,'ROOM CHARGES   (409) ',2900,1,0,2900,'2025-12-02','00:00:00','0','0000-00-00',232,'CSH','IPD'),(901,0,0,4857,'NURSING CHARGES   (409) ',200,1,0,200,'2025-12-03','00:00:00','0','0000-00-00',232,'CSH','IPD'),(902,0,0,4857,'CONSULTANT VISIT 2   (409) ',800,1,0,800,'2025-12-03','00:00:00','0','0000-00-00',232,'CSH','IPD'),(903,0,0,4857,'RMO CHARGES DAY   (409) ',300,1,0,300,'2025-12-03','00:00:00','0','0000-00-00',232,'CSH','IPD'),(904,0,0,4857,'CONSULTANT VISIT 1    (409) ',800,1,0,800,'2025-12-03','00:00:00','0','0000-00-00',232,'CSH','IPD'),(905,0,0,4857,'ROOM CHARGES   (409) ',2900,1,0,2900,'2025-12-03','00:00:00','0','0000-00-00',232,'CSH','IPD'),(906,0,0,4857,'Advance',0,0,6000,0,'0000-00-00','00:00:00','5951','0000-00-00',232,'7','IPD'),(972,0,0,5036,'ADMISSION CHARGE   ',250,1,0,250,'2025-12-03','00:00:00','0','0000-00-00',239,'CRD','IPD'),(973,0,0,5036,'NURSING CHARGES   (306) ',200,1,0,200,'2025-12-03','00:00:00','0','0000-00-00',239,'CRD','IPD'),(974,0,0,5036,'MRD CHARGES   ',250,1,0,250,'2025-12-03','00:00:00','0','0000-00-00',239,'CRD','IPD'),(975,0,0,5036,'CONSULTANT VISIT 2   (306) ',800,1,0,800,'2025-12-03','00:00:00','0','0000-00-00',239,'CRD','IPD'),(976,0,0,5036,'RMO CHARGES DAY   (306) ',300,1,0,300,'2025-12-03','00:00:00','0','0000-00-00',239,'CRD','IPD'),(977,0,0,5036,'CONSULTANT VISIT 1    (306) ',800,1,0,800,'2025-12-03','00:00:00','0','0000-00-00',239,'CRD','IPD'),(978,0,0,5036,'ROOM CHARGES   (306) ',2900,1,0,2900,'2025-12-03','00:00:00','0','0000-00-00',239,'CRD','IPD'),(979,0,0,5036,'Advance',0,0,6000,0,'0000-00-00','00:00:00','6156','0000-00-00',239,'CSH','IPD'),(980,0,0,5038,'ADMISSION CHARGE   ',250,1,0,250,'2025-12-03','00:00:00','0','0000-00-00',240,'CSH','IPD'),(981,0,0,5038,'NURSING CHARGES   (209) ',600,1,0,600,'2025-12-03','00:00:00','0','0000-00-00',240,'CSH','IPD'),(982,0,0,5038,'MRD CHARGES   ',250,1,0,250,'2025-12-03','00:00:00','0','0000-00-00',240,'CSH','IPD'),(983,0,0,5038,'CONSULTANT VISIT 2   (209) ',1600,1,0,1600,'2025-12-03','00:00:00','0','0000-00-00',240,'CSH','IPD'),(984,0,0,5038,'RMO CHARGES DAY   (209) ',800,1,0,800,'2025-12-03','00:00:00','0','0000-00-00',240,'CSH','IPD'),(985,0,0,5038,'CONSULTANT VISIT 1    (209) ',1600,1,0,1600,'2025-12-03','00:00:00','0','0000-00-00',240,'CSH','IPD'),(986,0,0,5038,'ROOM CHARGES   (209) ',5500,1,0,5500,'2025-12-03','00:00:00','0','0000-00-00',240,'CSH','IPD'),(987,0,0,5038,'MLC CHARGES   ',5000,1,0,5000,'2025-12-03','00:00:00','0','0000-00-00',240,'CSH','IPD'),(988,0,0,5038,'Advance',0,0,15000,0,'0000-00-00','00:00:00','6157','0000-00-00',240,'7','IPD'),(996,0,0,4920,'ADMISSION CHARGE   ',250,1,0,250,'2025-12-02','13:30:00','HI212','2025-12-04',235,'','IPD'),(997,0,0,4920,'THERAPUTIC TAPPING    - DR.ARCHIT V RATHOD',2500,1,0,2500,'2025-12-02','14:07:00','HI212','2025-12-04',235,'','IPD'),(998,0,0,4920,'CONSULTANT VISIT 2   (302)  - DR.KRUTARTH  KANJIYA',2000,1,0,2000,'2025-12-02','13:30:00','HI212','2025-12-04',235,'','IPD'),(999,0,0,4920,'ROOM CHARGES   (302) ',2900,1,0,2900,'2025-12-02','13:30:00','HI212','2025-12-04',235,'','IPD'),(1000,0,0,4920,'USG GUIDED TAPPING    - DR.ARCHIT V RATHOD',1500,1,0,1500,'2025-12-02','14:01:00','HI212','2025-12-04',235,'','IPD'),(1001,0,0,4920,'NURSING CHARGES   (302) ',200,1,0,200,'2025-12-02','13:30:00','HI212','2025-12-04',235,'','IPD'),(1002,0,0,4920,'MRD CHARGES   ',250,1,0,250,'2025-12-02','13:30:00','HI212','2025-12-04',235,'','IPD'),(1003,0,0,4920,'RBS (RANDOM BLOOD SUGAR)   ',100,2,0,200,'2025-12-02','13:41:00','HI212','2025-12-04',235,'','IPD'),(1004,0,0,4920,'RMO CHARGES DAY   (302) ',300,1,0,300,'2025-12-02','13:30:00','HI212','2025-12-04',235,'','IPD'),(1005,0,0,4920,'ROOM CHARGES   ',5500,1,0,5500,'2025-12-03','13:45:00','HI212','2025-12-04',235,'','IPD'),(1006,0,0,4920,'FOLEYS CATHETER    - DR.ARCHIT V RATHOD',750,1,0,750,'2025-12-03','13:42:00','HI212','2025-12-04',235,'','IPD'),(1007,0,0,4920,'OTHER CONSULTANT VISIT CHARGE    - DR.VIJYA MURTI ',2000,1,0,2000,'2025-12-03','13:51:00','HI212','2025-12-04',235,'','IPD'),(1008,0,0,4920,'RBS (RANDOM BLOOD SUGAR)   ',100,1,0,100,'2025-12-03','13:41:00','HI212','2025-12-04',235,'','IPD'),(1009,0,0,4920,'NURSING CHARGES - ICU   ',600,1,0,600,'2025-12-03','13:46:00','HI212','2025-12-04',235,'','IPD'),(1010,0,0,4920,'CONSULTANT VISIT 2   (308)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-12-03','13:30:00','HI212','2025-12-04',235,'','IPD'),(1011,0,0,4920,'R T INSERTION CHARGE   ',750,1,0,750,'2025-12-03','13:43:00','HI212','2025-12-04',235,'','IPD'),(1012,0,0,4920,'RCC TRANSFUSION CHARGE   ',500,1,0,500,'2025-12-03','13:42:00','HI212','2025-12-04',235,'','IPD'),(1013,0,0,4920,'OTHER CONSULTANT VISIT CHARGE    - DR.RONAK  BHALODIA ',2000,1,0,2000,'2025-12-03','13:50:00','HI212','2025-12-04',235,'','IPD'),(1014,0,0,4920,'RMO CHARGES - ICU   ',800,1,0,800,'2025-12-03','13:46:00','HI212','2025-12-04',235,'','IPD'),(1015,0,0,4920,'CONSULTANT VISIT 1    (308)  - DR.KRUTARTH  KANJIYA',1500,1,0,1500,'2025-12-03','13:30:00','HI212','2025-12-04',235,'','IPD'),(1016,0,0,4920,'PC ENEMA   ',500,2,0,1000,'2025-12-03','13:42:00','HI212','2025-12-04',235,'','IPD'),(1017,0,0,4920,'OTHER CONSULTANT VISIT CHARGE    - DR.KRUTARTH  KANJIYA',1500,1,0,1500,'2025-12-03','13:50:00','HI212','2025-12-04',235,'','IPD'),(1018,0,0,4920,'CONSULTANT VISIT 1    (308)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-12-04','13:30:00','HI212','2025-12-04',235,'','IPD'),(1019,0,0,4920,'RBS (RANDOM BLOOD SUGAR)   ',100,2,0,200,'2025-12-04','13:43:00','HI212','2025-12-04',235,'','IPD'),(1020,0,0,4920,'OTHER CONSULTANT VISIT CHARGE    - DR.ANKIT MAKADI  ',2000,1,0,2000,'2025-12-04','13:54:00','HI212','2025-12-04',235,'','IPD'),(1021,0,0,4920,'Advance - By UPI',0,0,6000,0,'0000-00-00','00:00:00','6025','2025-12-02',235,'7','IPD'),(1022,0,0,4920,'Advance - By UPI',0,0,25000,0,'0000-00-00','00:00:00','6321','2025-12-04',235,'7','IPD'),(1023,0,0,4920,'Advance - By UPI',0,0,500,0,'0000-00-00','00:00:00','6322','2025-12-04',235,'7','IPD'),(1024,0,0,4920,'Bill Discount',0,0,0,-1000,'0000-00-00','00:00:00','HI212','2025-12-04',235,'7','IPD'),(1865,0,0,5722,'ADMISSION CHARGE   ',250,1,0,250,'2025-12-09','19:30:00','0','0000-00-00',268,'','IPD'),(1866,0,0,5722,'CONSULTANT VISIT 1    (308) ',800,1,0,800,'2025-12-09','19:30:00','0','0000-00-00',268,'','IPD'),(1867,0,0,5722,'ROOM CHARGES   (308) ',2900,1,0,2900,'2025-12-09','19:30:00','0','0000-00-00',268,'','IPD'),(1868,0,0,5722,'NURSING CHARGES   (308) ',200,1,0,200,'2025-12-09','19:30:00','0','0000-00-00',268,'','IPD'),(1869,0,0,5722,'MRD CHARGES   ',250,1,0,250,'2025-12-09','19:30:00','0','0000-00-00',268,'','IPD'),(1870,0,0,5722,'CONSULTANT VISIT 2   (308) ',800,1,0,800,'2025-12-09','19:30:00','0','0000-00-00',268,'','IPD'),(1871,0,0,5722,'RMO CHARGES DAY   (308) ',300,1,0,300,'2025-12-09','19:30:00','0','0000-00-00',268,'','IPD'),(1872,0,0,5722,'CONSULTANT VISIT 1    (308) ',800,1,0,800,'2025-12-10','19:30:00','0','0000-00-00',268,'','IPD'),(1873,0,0,5722,'ROOM CHARGES   (308) ',2900,1,0,2900,'2025-12-10','19:30:00','0','0000-00-00',268,'','IPD'),(1874,0,0,5722,'NURSING CHARGES   (308) ',200,1,0,200,'2025-12-10','19:30:00','0','0000-00-00',268,'','IPD'),(1875,0,0,5722,'CONSULTANT VISIT 2   (308) ',800,1,0,800,'2025-12-10','19:30:00','0','0000-00-00',268,'','IPD'),(1876,0,0,5722,'RMO CHARGES DAY   (308) ',300,1,0,300,'2025-12-10','19:30:00','0','0000-00-00',268,'','IPD'),(1877,0,0,5722,'Advance - By CREDIT CARD',0,0,6000,0,'0000-00-00','00:00:00','6991','2025-12-09',268,'CRD','IPD'),(1918,0,0,5527,'ADMISSION CHARGE   ',250,1,0,250,'2025-12-08','13:00:00','HI261','2025-12-13',260,'','IPD'),(1919,0,0,5527,'RMO CHARGES DAY   (212) ',800,1,0,800,'2025-12-08','13:00:00','HI261','2025-12-13',260,'','IPD'),(1920,0,0,5527,'RBS (RANDOM BLOOD SUGAR)   ',100,2,0,200,'2025-12-08','13:56:00','HI261','2025-12-13',260,'','IPD'),(1921,0,0,5527,'CONSULTANT VISIT 2   (212)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-12-08','13:00:00','HI261','2025-12-13',260,'','IPD'),(1922,0,0,5527,'ROOM CHARGES   (212) ',5500,1,0,5500,'2025-12-08','13:00:00','HI261','2025-12-13',260,'','IPD'),(1923,0,0,5527,'NURSING CHARGES   (212) ',600,1,0,600,'2025-12-08','13:00:00','HI261','2025-12-13',260,'','IPD'),(1924,0,0,5527,'MRD CHARGES   ',250,1,0,250,'2025-12-08','13:00:00','HI261','2025-12-13',260,'','IPD'),(1925,0,0,5527,'CONSULTANT VISIT 1    (212)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-12-09','13:00:00','HI261','2025-12-13',260,'','IPD'),(1926,0,0,5527,'NURSING CHARGES   ',200,1,0,200,'2025-12-09','13:59:00','HI261','2025-12-13',260,'','IPD'),(1927,0,0,5527,'OTHER CONSULTANT VISIT CHARGE    - DR.ROSHAN MISHTRI ',2000,1,0,2000,'2025-12-09','13:58:00','HI261','2025-12-13',260,'','IPD'),(1928,0,0,5527,'RMO CHARGES DAY   ',400,1,0,400,'2025-12-09','13:59:00','HI261','2025-12-13',260,'','IPD'),(1929,0,0,5527,'2D ECHO    - DR.ARCHIT V RATHOD',2000,1,0,2000,'2025-12-09','13:57:00','HI261','2025-12-13',260,'','IPD'),(1930,0,0,5527,'CONSULTANT VISIT 2   (212)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-09','13:00:00','HI261','2025-12-13',260,'','IPD'),(1931,0,0,5527,'ROOM CHARGES   ',3200,1,0,3200,'2025-12-09','13:59:00','HI261','2025-12-13',260,'','IPD'),(1932,0,0,5527,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-12-09','13:56:00','HI261','2025-12-13',260,'','IPD'),(1933,0,0,5527,'CONSULTANT VISIT 2   (401)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-10','13:00:00','HI261','2025-12-13',260,'','IPD'),(1934,0,0,5527,'RMO CHARGES DAY   (401) ',400,1,0,400,'2025-12-10','13:00:00','HI261','2025-12-13',260,'','IPD'),(1935,0,0,5527,'OTHER CONSULTANT VISIT CHARGE    - DR.ROSHAN MISHTRI ',1500,1,0,1500,'2025-12-10','16:13:00','HI261','2025-12-13',260,'','IPD'),(1936,0,0,5527,'CONSULTANT VISIT 1    (401)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-10','13:00:00','HI261','2025-12-13',260,'','IPD'),(1937,0,0,5527,'ROOM CHARGES   (401) ',3200,1,0,3200,'2025-12-10','13:00:00','HI261','2025-12-13',260,'','IPD'),(1938,0,0,5527,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-12-10','16:13:00','HI261','2025-12-13',260,'','IPD'),(1939,0,0,5527,'NURSING CHARGES   (401) ',200,1,0,200,'2025-12-10','13:00:00','HI261','2025-12-13',260,'','IPD'),(1940,0,0,5527,'ROOM CHARGES   (401) ',3200,1,0,3200,'2025-12-11','13:00:00','HI261','2025-12-13',260,'','IPD'),(1941,0,0,5527,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-12-11','10:23:00','HI261','2025-12-13',260,'','IPD'),(1942,0,0,5527,'NURSING CHARGES   (401) ',200,1,0,200,'2025-12-11','13:00:00','HI261','2025-12-13',260,'','IPD'),(1943,0,0,5527,'CONSULTANT VISIT 2   (401)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-11','13:00:00','HI261','2025-12-13',260,'','IPD'),(1944,0,0,5527,'RMO CHARGES DAY   (401) ',400,1,0,400,'2025-12-11','13:00:00','HI261','2025-12-13',260,'','IPD'),(1945,0,0,5527,'CONSULTANT VISIT 1    (401)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-11','13:00:00','HI261','2025-12-13',260,'','IPD'),(1946,0,0,5527,'NURSING CHARGES   (401) ',200,1,0,200,'2025-12-12','13:00:00','HI261','2025-12-13',260,'','IPD'),(1947,0,0,5527,'RBS (RANDOM BLOOD SUGAR)   ',100,1,0,100,'2025-12-12','12:46:00','HI261','2025-12-13',260,'','IPD'),(1948,0,0,5527,'CONSULTANT VISIT 2   (401)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-12','13:00:00','HI261','2025-12-13',260,'','IPD'),(1949,0,0,5527,'RMO CHARGES DAY   (401) ',400,1,0,400,'2025-12-12','13:00:00','HI261','2025-12-13',260,'','IPD'),(1950,0,0,5527,'CONSULTANT VISIT 1    (401)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-12','13:00:00','HI261','2025-12-13',260,'','IPD'),(1951,0,0,5527,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-12-12','10:23:00','HI261','2025-12-13',260,'','IPD'),(1952,0,0,5527,'ROOM CHARGES   (401) ',3200,1,0,3200,'2025-12-12','13:00:00','HI261','2025-12-13',260,'','IPD'),(1953,0,0,5527,'CONSULTANT VISIT 1     - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-13','12:45:00','HI261','2025-12-13',260,'','IPD'),(1954,0,0,5527,'Advance - By UPI',0,0,15000,0,'0000-00-00','00:00:00','6745','2025-12-08',260,'7','IPD'),(1955,0,0,5527,'Advance - By UPI',0,0,15000,0,'0000-00-00','00:00:00','7328','2025-12-12',260,'7','IPD'),(1956,0,0,5527,'Refund - By CASH',0,0,0,11600,'0000-00-00','00:00:00','7507','2025-12-13',260,'CSH','IPD'),(1957,0,0,5527,'Advance - By CASH',0,0,11600,0,'0000-00-00','00:00:00','7513','2025-12-13',260,'CSH','IPD'),(1958,0,0,5527,'Advance - By UPI',0,0,11600,0,'0000-00-00','00:00:00','7514','2025-12-13',260,'7','IPD'),(1997,0,0,4694,'ADMISSION CHARGE   ',250,1,0,250,'2025-11-30','17:00:00','HI262','2025-12-13',222,'','IPD'),(1998,0,0,4694,'MRD CHARGES   ',250,1,0,250,'2025-11-30','17:00:00','HI262','2025-12-13',222,'','IPD'),(1999,0,0,4694,'RMO CHARGES DAY   (407) ',400,1,0,400,'2025-11-30','17:00:00','HI262','2025-12-13',222,'','IPD'),(2000,0,0,4694,'CONSULTANT VISIT 2   (407)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-11-30','17:00:00','HI262','2025-12-13',222,'','IPD'),(2001,0,0,4694,'ROOM CHARGES   (407) ',3200,1,0,3200,'2025-11-30','17:00:00','HI262','2025-12-13',222,'','IPD'),(2002,0,0,4694,'RBS (RANDOM BLOOD SUGAR)   ',100,1,0,100,'2025-11-30','12:47:00','HI262','2025-12-13',222,'','IPD'),(2003,0,0,4694,'NURSING CHARGES   (407) ',200,1,0,200,'2025-11-30','17:00:00','HI262','2025-12-13',222,'','IPD'),(2004,0,0,4694,'CONSULTANT VISIT 2   (407)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-01','17:00:00','HI262','2025-12-13',222,'','IPD'),(2005,0,0,4694,'ROOM CHARGES   (407) ',3200,1,0,3200,'2025-12-01','17:00:00','HI262','2025-12-13',222,'','IPD'),(2006,0,0,4694,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-12-01','12:47:00','HI262','2025-12-13',222,'','IPD'),(2007,0,0,4694,'NURSING CHARGES   (407) ',200,1,0,200,'2025-12-01','17:00:00','HI262','2025-12-13',222,'','IPD'),(2008,0,0,4694,'RMO CHARGES DAY   (407) ',400,1,0,400,'2025-12-01','17:00:00','HI262','2025-12-13',222,'','IPD'),(2009,0,0,4694,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-01','13:07:00','HI262','2025-12-13',222,'','IPD'),(2010,0,0,4694,'ECG   ',300,1,0,300,'2025-12-01','12:47:00','HI262','2025-12-13',222,'','IPD'),(2011,0,0,4694,'SURGERY CHARGE    - DR.PRATAPSINH  DODIYA',45000,1,0,45000,'2025-12-02','19:02:00','HI262','2025-12-13',222,'','IPD'),(2012,0,0,4694,'CONSULTANT VISIT 2    - DR.PRATAPSINH  DODIYA',1600,1,0,1600,'2025-12-02','19:14:00','HI262','2025-12-13',222,'','IPD'),(2013,0,0,4694,'X RAY CHARGES   ',500,1,0,500,'2025-12-02','12:48:00','HI262','2025-12-13',222,'','IPD'),(2014,0,0,4694,'ROOM CHARGES   ',5500,1,0,5500,'2025-12-02','19:14:00','HI262','2025-12-13',222,'','IPD'),(2015,0,0,4694,'CONSULTANT VISIT 1    (407)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-02','17:00:00','HI262','2025-12-13',222,'','IPD'),(2016,0,0,4694,'NURSING CHARGES   ',600,1,0,600,'2025-12-02','19:14:00','HI262','2025-12-13',222,'','IPD'),(2017,0,0,4694,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-12-02','12:47:00','HI262','2025-12-13',222,'','IPD'),(2018,0,0,4694,'OT USAGE CHARGE    - DR.PRATAPSINH  DODIYA',11250,1,0,11250,'2025-12-02','19:02:00','HI262','2025-12-13',222,'','IPD'),(2019,0,0,4694,'RMO CHARGES DAY   ',800,1,0,800,'2025-12-02','19:14:00','HI262','2025-12-13',222,'','IPD'),(2020,0,0,4694,'RCC TRANSFUSION CHARGE   ',500,1,0,500,'2025-12-02','12:02:00','HI262','2025-12-13',222,'','IPD'),(2021,0,0,4694,'NURSING CHARGES   (407) ',200,1,0,200,'2025-12-03','17:00:00','HI262','2025-12-13',222,'','IPD'),(2022,0,0,4694,'CONSULTANT VISIT 2   (407)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-03','17:00:00','HI262','2025-12-13',222,'','IPD'),(2023,0,0,4694,'RMO CHARGES DAY   (407) ',400,1,0,400,'2025-12-03','17:00:00','HI262','2025-12-13',222,'','IPD'),(2024,0,0,4694,'RBS (RANDOM BLOOD SUGAR)   ',100,4,0,400,'2025-12-03','12:02:00','HI262','2025-12-13',222,'','IPD'),(2025,0,0,4694,'CONSULTANT VISIT 1    (407)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-03','17:00:00','HI262','2025-12-13',222,'','IPD'),(2026,0,0,4694,'ROOM CHARGES   (407) ',3200,1,0,3200,'2025-12-03','17:00:00','HI262','2025-12-13',222,'','IPD'),(2027,0,0,4694,'SYRINGE PUMP CHARGE   ',500,1,0,500,'2025-12-03','12:03:00','HI262','2025-12-13',222,'','IPD'),(2028,0,0,4694,'NURSING CHARGES   (407) ',200,1,0,200,'2025-12-04','17:00:00','HI262','2025-12-13',222,'','IPD'),(2029,0,0,4694,'RBS (RANDOM BLOOD SUGAR)   ',100,4,0,400,'2025-12-04','12:03:00','HI262','2025-12-13',222,'','IPD'),(2030,0,0,4694,'CONSULTANT VISIT 2   (407)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-04','17:00:00','HI262','2025-12-13',222,'','IPD'),(2031,0,0,4694,'CVP (CENTRAL LINE INSERTION) CHARGE    - DR.CHAITANYA GOHEL ',3000,1,0,3000,'2025-12-04','20:19:00','HI262','2025-12-13',222,'','IPD'),(2032,0,0,4694,'RMO CHARGES DAY   (407) ',400,1,0,400,'2025-12-04','17:00:00','HI262','2025-12-13',222,'','IPD'),(2033,0,0,4694,'CONSULTANT VISIT 1    (407)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-04','17:00:00','HI262','2025-12-13',222,'','IPD'),(2034,0,0,4694,'ROOM CHARGES   (407) ',3200,1,0,3200,'2025-12-04','17:00:00','HI262','2025-12-13',222,'','IPD'),(2035,0,0,4694,'SYRINGE PUMP CHARGE   ',500,1,0,500,'2025-12-04','20:19:00','HI262','2025-12-13',222,'','IPD'),(2036,0,0,4694,'CONSULTANT VISIT 2   (407)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-05','17:00:00','HI262','2025-12-13',222,'','IPD'),(2037,0,0,4694,'RMO CHARGES DAY   (407) ',400,1,0,400,'2025-12-05','17:00:00','HI262','2025-12-13',222,'','IPD'),(2038,0,0,4694,'CONSULTANT VISIT 1    (407)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-05','17:00:00','HI262','2025-12-13',222,'','IPD'),(2039,0,0,4694,'ROOM CHARGES   (407) ',3200,1,0,3200,'2025-12-05','17:00:00','HI262','2025-12-13',222,'','IPD'),(2040,0,0,4694,'DRESSING CHARGE - MINOR    - DR.PRATAPSINH  DODIYA',200,1,0,200,'2025-12-05','20:20:00','HI262','2025-12-13',222,'','IPD'),(2041,0,0,4694,'RBS (RANDOM BLOOD SUGAR)   ',100,4,0,400,'2025-12-05','20:19:00','HI262','2025-12-13',222,'','IPD'),(2042,0,0,4694,'NURSING CHARGES   (407) ',200,1,0,200,'2025-12-05','17:00:00','HI262','2025-12-13',222,'','IPD'),(2043,0,0,4694,'CONSULTANT VISIT 1    (407)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-06','17:00:00','HI262','2025-12-13',222,'','IPD'),(2044,0,0,4694,'RBS (RANDOM BLOOD SUGAR)   ',100,4,0,400,'2025-12-06','16:55:00','HI262','2025-12-13',222,'','IPD'),(2045,0,0,4694,'ROOM CHARGES   (407) ',3200,1,0,3200,'2025-12-06','17:00:00','HI262','2025-12-13',222,'','IPD'),(2046,0,0,4694,'NURSING CHARGES   (407) ',200,1,0,200,'2025-12-06','17:00:00','HI262','2025-12-13',222,'','IPD'),(2047,0,0,4694,'CONSULTANT VISIT 2   (407)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-06','17:00:00','HI262','2025-12-13',222,'','IPD'),(2048,0,0,4694,'RMO CHARGES DAY   (407) ',400,1,0,400,'2025-12-06','17:00:00','HI262','2025-12-13',222,'','IPD'),(2049,0,0,4694,'INFUSION PUMP   ',500,1,0,500,'2025-12-06','13:17:00','HI262','2025-12-13',222,'','IPD'),(2050,0,0,4694,'RBS (RANDOM BLOOD SUGAR)   ',100,4,0,400,'2025-12-07','13:15:00','HI262','2025-12-13',222,'','IPD'),(2051,0,0,4694,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-07','13:18:00','HI262','2025-12-13',222,'','IPD'),(2052,0,0,4694,'NURSING CHARGES   (405) ',200,1,0,200,'2025-12-07','17:00:00','HI262','2025-12-13',222,'','IPD'),(2053,0,0,4694,'PC ENEMA   ',500,1,0,500,'2025-12-07','13:16:00','HI262','2025-12-13',222,'','IPD'),(2054,0,0,4694,'CONSULTANT VISIT 2   (405)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-07','17:00:00','HI262','2025-12-13',222,'','IPD'),(2055,0,0,4694,'DRESSING CHARGE - MINOR    - DR.PRATAPSINH  DODIYA',200,1,0,200,'2025-12-07','13:17:00','HI262','2025-12-13',222,'','IPD'),(2056,0,0,4694,'RMO CHARGES DAY   (405) ',400,1,0,400,'2025-12-07','17:00:00','HI262','2025-12-13',222,'','IPD'),(2057,0,0,4694,'CONSULTANT VISIT 1    (405)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-07','17:00:00','HI262','2025-12-13',222,'','IPD'),(2058,0,0,4694,'ROOM CHARGES   (405) ',3200,1,0,3200,'2025-12-07','17:00:00','HI262','2025-12-13',222,'','IPD'),(2059,0,0,4694,'ROOM CHARGES   ',5500,1,0,5500,'2025-12-08','20:06:00','HI262','2025-12-13',222,'','IPD'),(2060,0,0,4694,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-12-08','16:53:00','HI262','2025-12-13',222,'','IPD'),(2061,0,0,4694,'OT USAGE CHARGE    - DR.PRATAPSINH  DODIYA',7000,1,0,7000,'2025-12-08','13:47:00','HI262','2025-12-13',222,'','IPD'),(2062,0,0,4694,'NURSING CHARGES   ',600,1,0,600,'2025-12-08','20:06:00','HI262','2025-12-13',222,'','IPD'),(2063,0,0,4694,'CONSULTANT VISIT 2   (405)  - DR.PRATAPSINH  DODIYA',1600,1,0,1600,'2025-12-08','17:00:00','HI262','2025-12-13',222,'','IPD'),(2064,0,0,4694,'OXYGEN CHARGE   ',1500,1,0,1500,'2025-12-08','16:52:00','HI262','2025-12-13',222,'','IPD'),(2065,0,0,4694,'RBS (RANDOM BLOOD SUGAR)   ',100,4,0,400,'2025-12-08','13:16:00','HI262','2025-12-13',222,'','IPD'),(2066,0,0,4694,'RMO CHARGES DAY   ',800,1,0,800,'2025-12-08','20:06:00','HI262','2025-12-13',222,'','IPD'),(2067,0,0,4694,'CONSULTANT VISIT 1    (405)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-08','17:00:00','HI262','2025-12-13',222,'','IPD'),(2068,0,0,4694,'ROOM CHARGES   ',3200,1,0,3200,'2025-12-09','19:56:00','HI262','2025-12-13',222,'','IPD'),(2069,0,0,4694,'CONSULTANT VISIT 2   (213)  - DR.PRATAPSINH  DODIYA',1600,1,0,1600,'2025-12-09','17:00:00','HI262','2025-12-13',222,'','IPD'),(2070,0,0,4694,'NURSING CHARGES   ',200,1,0,200,'2025-12-09','19:56:00','HI262','2025-12-13',222,'','IPD'),(2071,0,0,4694,'RMO CHARGE - SPECIAL   ',400,1,0,400,'2025-12-09','19:56:00','HI262','2025-12-13',222,'','IPD'),(2072,0,0,4694,'CONSULTANT VISIT 1    (213)  - DR.PRATAPSINH  DODIYA',1600,1,0,1600,'2025-12-09','17:00:00','HI262','2025-12-13',222,'','IPD'),(2073,0,0,4694,'RBS (RANDOM BLOOD SUGAR)   ',100,4,0,400,'2025-12-09','16:52:00','HI262','2025-12-13',222,'','IPD'),(2074,0,0,4694,'RBS (RANDOM BLOOD SUGAR)   ',100,4,0,400,'2025-12-10','16:25:00','HI262','2025-12-13',222,'','IPD'),(2075,0,0,4694,'DRESSING CHARGE - MINOR    - DR.PRATAPSINH  DODIYA',200,1,0,200,'2025-12-10','10:34:00','HI262','2025-12-13',222,'','IPD'),(2076,0,0,4694,'ROOM CHARGES   (405) ',3200,1,0,3200,'2025-12-10','17:00:00','HI262','2025-12-13',222,'','IPD'),(2077,0,0,4694,'NURSING CHARGES   (405) ',200,1,0,200,'2025-12-10','17:00:00','HI262','2025-12-13',222,'','IPD'),(2078,0,0,4694,'CONSULTANT VISIT 2   (405)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-10','17:00:00','HI262','2025-12-13',222,'','IPD'),(2079,0,0,4694,'RMO CHARGES DAY   (405) ',400,1,0,400,'2025-12-10','17:00:00','HI262','2025-12-13',222,'','IPD'),(2080,0,0,4694,'CONSULTANT VISIT 1    (405)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-10','17:00:00','HI262','2025-12-13',222,'','IPD'),(2081,0,0,4694,'NURSING CHARGES   (405) ',200,1,0,200,'2025-12-11','17:00:00','HI262','2025-12-13',222,'','IPD'),(2082,0,0,4694,'CONSULTANT VISIT 2   (405)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-11','17:00:00','HI262','2025-12-13',222,'','IPD'),(2083,0,0,4694,'RMO CHARGES DAY   (405) ',400,1,0,400,'2025-12-11','17:00:00','HI262','2025-12-13',222,'','IPD'),(2084,0,0,4694,'CONSULTANT VISIT 1    (405)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-11','17:00:00','HI262','2025-12-13',222,'','IPD'),(2085,0,0,4694,'ROOM CHARGES   (405) ',3200,1,0,3200,'2025-12-11','17:00:00','HI262','2025-12-13',222,'','IPD'),(2086,0,0,4694,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-11','10:36:00','HI262','2025-12-13',222,'','IPD'),(2087,0,0,4694,'RBS (RANDOM BLOOD SUGAR)   ',100,4,0,400,'2025-12-11','10:33:00','HI262','2025-12-13',222,'','IPD'),(2088,0,0,4694,'RMO CHARGES DAY   (405) ',400,1,0,400,'2025-12-12','17:00:00','HI262','2025-12-13',222,'','IPD'),(2089,0,0,4694,'DRESSING CHARGE - MINOR    - DR.PRATAPSINH  DODIYA',200,1,0,200,'2025-12-12','13:54:00','HI262','2025-12-13',222,'','IPD'),(2090,0,0,4694,'CONSULTANT VISIT 1    (405)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-12','17:00:00','HI262','2025-12-13',222,'','IPD'),(2091,0,0,4694,'OTHER CONSULTANT VISIT CHARGE    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-12','10:36:00','HI262','2025-12-13',222,'','IPD'),(2092,0,0,4694,'RBS (RANDOM BLOOD SUGAR)   ',100,4,0,400,'2025-12-12','10:33:00','HI262','2025-12-13',222,'','IPD'),(2093,0,0,4694,'ROOM CHARGES   (405) ',3200,1,0,3200,'2025-12-12','17:00:00','HI262','2025-12-13',222,'','IPD'),(2094,0,0,4694,'NURSING CHARGES   (405) ',200,1,0,200,'2025-12-12','17:00:00','HI262','2025-12-13',222,'','IPD'),(2095,0,0,4694,'CONSULTANT VISIT 1     - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-12','13:52:00','HI262','2025-12-13',222,'','IPD'),(2096,0,0,4694,'CONSULTANT VISIT 2   (405)  - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-12','17:00:00','HI262','2025-12-13',222,'','IPD'),(2097,0,0,4694,'RBS (RANDOM BLOOD SUGAR)   ',100,1,0,100,'2025-12-13','13:55:00','HI262','2025-12-13',222,'','IPD'),(2098,0,0,4694,'CONSULTANT VISIT 1     - DR.PRATAPSINH  DODIYA',1100,1,0,1100,'2025-12-13','13:53:00','HI262','2025-12-13',222,'','IPD'),(2099,0,0,4694,'DRESSING CHARGE - MINOR    - DR.PRATAPSINH  DODIYA',200,1,0,200,'2025-12-13','13:54:00','HI262','2025-12-13',222,'','IPD'),(2100,0,0,4694,'Advance - By CASH',0,0,7000,0,'0000-00-00','00:00:00','5741','2025-11-30',222,'CSH','IPD'),(2101,0,0,4694,'Advance - By UPI',0,0,50000,0,'0000-00-00','00:00:00','6070','2025-12-02',222,'7','IPD'),(2102,0,0,4694,'Advance - By CASH',0,0,25000,0,'0000-00-00','00:00:00','6509','2025-12-05',222,'CSH','IPD'),(2103,0,0,4694,'Advance - By CASH',0,0,20000,0,'0000-00-00','00:00:00','6757','2025-12-08',222,'CSH','IPD'),(2104,0,0,4694,'Advance - By CASH',0,0,30000,0,'0000-00-00','00:00:00','7088','2025-12-10',222,'CSH','IPD'),(2105,0,0,4694,'Advance - By CASH',0,0,32000,0,'0000-00-00','00:00:00','7515','2025-12-13',222,'CSH','IPD'),(2106,0,0,4694,'Bill Discount',0,0,0,-5550,'0000-00-00','00:00:00','HI262','2025-12-13',222,'CSH','IPD'),(2107,0,0,5831,'ADMISSION CHARGE   ',250,1,0,250,'2025-12-10','18:30:00','HI276','2025-12-15',273,'','IPD'),(2108,0,0,5831,'MRD CHARGES   ',250,1,0,250,'2025-12-10','18:30:00','HI276','2025-12-15',273,'','IPD'),(2109,0,0,5831,'NEB CHARGE   ',100,2,0,200,'2025-12-10','10:51:00','HI276','2025-12-15',273,'','IPD'),(2110,0,0,5831,'RMO CHARGES DAY   (407) ',400,1,0,400,'2025-12-10','18:30:00','HI276','2025-12-15',273,'','IPD'),(2111,0,0,5831,'RBS (RANDOM BLOOD SUGAR)   ',100,1,0,100,'2025-12-10','10:50:00','HI276','2025-12-15',273,'','IPD'),(2112,0,0,5831,'CONSULTANT VISIT 2   (407)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-10','18:30:00','HI276','2025-12-15',273,'','IPD'),(2113,0,0,5831,'ROOM CHARGES   (407) ',3200,1,0,3200,'2025-12-10','18:30:00','HI276','2025-12-15',273,'','IPD'),(2114,0,0,5831,'NURSING CHARGES   (407) ',200,1,0,200,'2025-12-10','18:30:00','HI276','2025-12-15',273,'','IPD'),(2115,0,0,5831,'CONSULTANT VISIT 1    (407)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-11','18:30:00','HI276','2025-12-15',273,'','IPD'),(2116,0,0,5831,'ROOM CHARGES   (407) ',3200,1,0,3200,'2025-12-11','18:30:00','HI276','2025-12-15',273,'','IPD'),(2117,0,0,5831,'NURSING CHARGES   (407) ',200,1,0,200,'2025-12-11','18:30:00','HI276','2025-12-15',273,'','IPD'),(2118,0,0,5831,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-12-11','10:50:00','HI276','2025-12-15',273,'','IPD'),(2119,0,0,5831,'CONSULTANT VISIT 2   (407)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-11','18:30:00','HI276','2025-12-15',273,'','IPD'),(2120,0,0,5831,'RMO CHARGES DAY   (407) ',400,1,0,400,'2025-12-11','18:30:00','HI276','2025-12-15',273,'','IPD'),(2121,0,0,5831,'NEB CHARGE   ',100,4,0,400,'2025-12-11','10:51:00','HI276','2025-12-15',273,'','IPD'),(2122,0,0,5831,'RMO CHARGES DAY   (407) ',400,1,0,400,'2025-12-12','18:30:00','HI276','2025-12-15',273,'','IPD'),(2123,0,0,5831,'CONSULTANT VISIT 1    (407)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-12','18:30:00','HI276','2025-12-15',273,'','IPD'),(2124,0,0,5831,'NEB CHARGE   ',100,4,0,400,'2025-12-12','10:51:00','HI276','2025-12-15',273,'','IPD'),(2125,0,0,5831,'ROOM CHARGES   (407) ',3200,1,0,3200,'2025-12-12','18:30:00','HI276','2025-12-15',273,'','IPD'),(2126,0,0,5831,'NURSING CHARGES   (407) ',200,1,0,200,'2025-12-12','18:30:00','HI276','2025-12-15',273,'','IPD'),(2127,0,0,5831,'RBS (RANDOM BLOOD SUGAR)   ',100,3,0,300,'2025-12-12','10:50:00','HI276','2025-12-15',273,'','IPD'),(2128,0,0,5831,'CONSULTANT VISIT 2   (407)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-12','18:30:00','HI276','2025-12-15',273,'','IPD'),(2129,0,0,5831,'NEB CHARGE   ',100,2,0,200,'2025-12-13','16:16:00','HI276','2025-12-15',273,'','IPD'),(2130,0,0,5831,'CONSULTANT VISIT 1     - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-13','16:12:00','HI276','2025-12-15',273,'','IPD'),(2131,0,0,5831,'RBS (RANDOM BLOOD SUGAR)   ',100,2,0,200,'2025-12-13','16:15:00','HI276','2025-12-15',273,'','IPD'),(2132,0,0,5831,'CONSULTANT VISIT 2    - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-13','16:13:00','HI276','2025-12-15',273,'','IPD'),(2133,0,0,5831,'Advance - By CASH',0,0,7000,0,'0000-00-00','00:00:00','7121','2025-12-10',273,'CSH','IPD'),(2134,0,0,5831,'Advance - By CASH',0,0,8000,0,'0000-00-00','00:00:00','7742','2025-12-11',273,'CSH','IPD'),(2135,0,0,5831,'Advance - By CASH',0,0,6700,0,'0000-00-00','00:00:00','7743','2025-12-13',273,'CSH','IPD'),(2137,0,0,6334,'ADMISSION CHARGE   ',250,1,0,250,'2025-12-16','02:30:00','HI288','2025-12-16',296,'','IPD'),(2138,0,0,6334,'RMO CHARGES DAY   (210) ',800,1,0,800,'2025-12-16','02:30:00','HI288','2025-12-16',296,'','IPD'),(2139,0,0,6334,'2D ECHO    - DR.ARCHIT V RATHOD',2000,1,0,2000,'2025-12-16','19:20:00','HI288','2025-12-16',296,'','IPD'),(2140,0,0,6334,'CONSULTANT VISIT 2   (210)  - DR.ARCHIT V RATHOD',1100,1,0,1100,'2025-12-16','02:30:00','HI288','2025-12-16',296,'','IPD'),(2141,0,0,6334,'ROOM CHARGES   (210) ',5500,1,0,5500,'2025-12-16','02:30:00','HI288','2025-12-16',296,'','IPD'),(2142,0,0,6334,'ECG   ',300,1,0,300,'2025-12-16','19:20:00','HI288','2025-12-16',296,'','IPD'),(2143,0,0,6334,'CONSULTANT VISIT 1    (210)  - DR.ARCHIT V RATHOD',1600,1,0,1600,'2025-12-16','02:30:00','HI288','2025-12-16',296,'','IPD'),(2144,0,0,6334,'MRD CHARGES   ',250,1,0,250,'2025-12-16','02:30:00','HI288','2025-12-16',296,'','IPD'),(2145,0,0,6334,'RBS (RANDOM BLOOD SUGAR)   ',100,4,0,400,'2025-12-16','19:19:00','HI288','2025-12-16',296,'','IPD'),(2146,0,0,6334,'NURSING CHARGES   (210) ',600,1,0,600,'2025-12-16','02:30:00','HI288','2025-12-16',296,'','IPD'),(2147,0,0,6334,'SYRINGE PUMP CHARGE   ',500,1,0,500,'2025-12-16','19:19:00','HI288','2025-12-16',296,'','IPD'),(2148,0,0,6334,'Advance - By UPI',0,0,15000,0,'0000-00-00','00:00:00','7762','2025-12-16',296,'7','IPD'),(2149,0,0,6334,'Refund - Bill Settlement - By CASH',0,0,0,1700,'0000-00-00','00:00:00','7908','2025-12-16',296,'CSH','IPD'),(2151,0,0,6706,'ADMISSION CHARGE   ',250,1,0,250,'2025-12-18','19:50:00','HD314','2025-12-20',305,'','IPD'),(2152,0,0,6706,'SYRINGE PUMP CHARGE   ',500,1,0,500,'2025-12-18','19:02:00','HD314','2025-12-20',305,'','IPD'),(2153,0,0,6706,'RMO CHARGES DAY   ',800,1,0,800,'2025-12-18','19:06:00','HD314','2025-12-20',305,'','IPD'),(2154,0,0,6706,'CONSULTANT VISIT 2   (411)  - DR.JAYANT K MEHTA',800,1,0,800,'2025-12-18','19:50:00','HD314','2025-12-20',305,'','IPD'),(2155,0,0,6706,'ROOM CHARGES   ',5500,1,0,5500,'2025-12-18','19:05:00','HD314','2025-12-20',305,'','IPD'),(2156,0,0,6706,'FOLEYS CATHETER    - DR.JAYANT K MEHTA',750,1,0,750,'2025-12-18','19:03:00','HD314','2025-12-20',305,'','IPD'),(2157,0,0,6706,'MRD CHARGES   ',250,1,0,250,'2025-12-18','19:50:00','HD314','2025-12-20',305,'','IPD'),(2158,0,0,6706,'NURSING CHARGES   ',600,1,0,600,'2025-12-18','19:06:00','HD314','2025-12-20',305,'','IPD'),(2159,0,0,6706,'RBS (RANDOM BLOOD SUGAR)   ',100,5,0,500,'2025-12-18','19:04:00','HD314','2025-12-20',305,'','IPD'),(2160,0,0,6706,'CONSULTANT VISIT 1    (207)  - DR.JAYANT K MEHTA',1600,1,0,1600,'2025-12-19','19:50:00','HD314','2025-12-20',305,'','IPD'),(2161,0,0,6706,'ECG   ',300,1,0,300,'2025-12-19','19:03:00','HD314','2025-12-20',305,'','IPD'),(2162,0,0,6706,'NURSING CHARGES   (207) ',600,1,0,600,'2025-12-19','19:50:00','HD314','2025-12-20',305,'','IPD'),(2163,0,0,6706,'RBS (RANDOM BLOOD SUGAR)   ',100,6,0,600,'2025-12-19','12:22:00','HD314','2025-12-20',305,'','IPD'),(2164,0,0,6706,'ROOM CHARGES   (207) ',5500,1,0,5500,'2025-12-19','19:50:00','HD314','2025-12-20',305,'','IPD'),(2165,0,0,6706,'RMO CHARGES DAY   (207) ',800,1,0,800,'2025-12-19','19:50:00','HD314','2025-12-20',305,'','IPD'),(2166,0,0,6706,'OTHER CONSULTANT VISIT CHARGE    - DR.MAYUR KAPURIYA ',2500,1,0,2500,'2025-12-19','19:04:00','HD314','2025-12-20',305,'','IPD'),(2167,0,0,6706,'CONSULTANT VISIT 2   (207)  - DR.JAYANT K MEHTA',1600,1,0,1600,'2025-12-19','19:50:00','HD314','2025-12-20',305,'','IPD'),(2168,0,0,6706,'SYRINGE PUMP CHARGE   ',500,1,0,500,'2025-12-19','19:03:00','HD314','2025-12-20',305,'','IPD'),(2169,0,0,6706,'RBS (RANDOM BLOOD SUGAR)   ',100,2,0,200,'2025-12-20','12:07:00','HD314','2025-12-20',305,'','IPD'),(2170,0,0,6706,'CONSULTANT VISIT 1     - DR.JAYANT K MEHTA',1600,1,0,1600,'2025-12-20','12:09:00','HD314','2025-12-20',305,'','IPD'),(2171,0,0,6706,'SYRINGE PUMP CHARGE   ',500,1,0,500,'2025-12-20','12:08:00','HD314','2025-12-20',305,'','IPD'),(2172,0,0,6706,'Advance - By CASH',0,0,6000,0,'0000-00-00','00:00:00','8206','2025-12-18',305,'CSH','IPD'),(2173,0,0,6706,'Advance - By CASH',0,0,16000,0,'0000-00-00','00:00:00','8414','2025-12-20',305,'CSH','IPD');
/*!40000 ALTER TABLE `pat_service_report` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pat_temp_bill_detail`
--

DROP TABLE IF EXISTS `pat_temp_bill_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pat_temp_bill_detail` (
  `temp_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `req_date` date NOT NULL,
  `req_id` int(11) NOT NULL,
  `req_time` time NOT NULL,
  `service_grp_code` varchar(4) NOT NULL,
  `service_code` varchar(8) NOT NULL,
  `service_desc` varchar(50) NOT NULL,
  `hospital_mandal` enum('H','M') NOT NULL DEFAULT 'H' COMMENT 'H for Hospital and M for Mandal',
  `price` int(11) NOT NULL,
  `quantity` float(9,2) NOT NULL,
  `line_gross_amt` float(10,2) NOT NULL,
  `line_disc_type` enum('A','P') NOT NULL DEFAULT 'A',
  `line_disc_percent` float(10,2) NOT NULL,
  `line_disc_amt` float(10,2) NOT NULL,
  `line_amt_before_gst` float(9,2) NOT NULL,
  `line_gst_percentage` float(9,2) NOT NULL,
  `line_gst_amount` float(9,2) NOT NULL,
  `total` float(9,2) NOT NULL,
  `provider_code` int(11) NOT NULL,
  `provider_code_for_hospital` int(11) NOT NULL COMMENT 'provider code for business entity',
  `service_note` varchar(40) NOT NULL,
  `doctor_id` int(11) NOT NULL,
  `request_division` varchar(3) NOT NULL,
  `order_in_bill` int(11) NOT NULL,
  `included_in_package` enum('Y','N') NOT NULL DEFAULT 'Y',
  `isAudited` enum('Y','N') NOT NULL DEFAULT 'N',
  `ph_TrnType` char(6) NOT NULL,
  `ph_TrnID` int(11) NOT NULL,
  `remark` varchar(100) NOT NULL,
  PRIMARY KEY (`temp_id`),
  KEY `visit_id` (`visit_id`)
) ENGINE=InnoDB AUTO_INCREMENT=206105 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pat_temp_bill_detail`
--

LOCK TABLES `pat_temp_bill_detail` WRITE;
/*!40000 ALTER TABLE `pat_temp_bill_detail` DISABLE KEYS */;
INSERT INTO `pat_temp_bill_detail` VALUES (2,0,0,21,'2025-10-04',24,'01:45:00','REG','REG0001','ADMISSION CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'',0,'ER',1,'Y','N','',0,''),(5,0,0,51,'2025-10-03',58,'18:30:00','REG','REG0001','ADMISSION CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'',0,'ER',1,'Y','N','',0,''),(1072,0,0,422,'2025-10-11',767,'09:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(1073,0,0,422,'2025-10-11',768,'09:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(1074,0,0,422,'2025-10-11',1040,'19:46:00','CARE','CARE0007','DAY CARE CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1075,0,0,422,'2025-10-11',1041,'19:46:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1076,0,0,422,'2025-10-11',1042,'19:46:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1077,0,0,422,'2025-10-11',1043,'19:46:00','DRC','DRC0019','CONSULTANT VISIT 2','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1078,0,0,422,'2025-10-11',1044,'19:49:00','SURG','SURG0014','SURGERY CHARGE','H',7300,1.00,7300.00,'P',0.00,0.00,7300.00,0.00,0.00,7300.00,3,0,'',0,'IPB',99,'Y','','',0,''),(1079,0,0,422,'2025-10-11',1045,'19:50:00','SURG','SURG0015','OT USAGE CHARGE','H',2500,1.00,2500.00,'P',0.00,0.00,2500.00,0.00,0.00,2500.00,3,0,'',0,'IPB',99,'Y','','',0,''),(1366,0,0,193,'2025-10-09',893,'12:07:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'P',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',1,'Y','','',0,''),(1367,0,0,193,'2025-10-09',894,'12:07:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'P',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1368,0,0,193,'2025-10-09',895,'12:07:00','ROOM','ROOM0002','BED CHARGES - SEMI- SPECIAL ','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'',0,'IPB',5,'Y','','',0,''),(1369,0,0,193,'2025-10-09',896,'12:07:00','CARE','CARE0006','RMO CHARGES - SEMI','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1370,0,0,193,'2025-10-09',897,'12:07:00','CARE','CARE0002','NURSING CHARGES - SEMI ','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1371,0,0,193,'2025-10-09',898,'12:10:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1372,0,0,193,'2025-10-09',899,'12:10:00','DRC','DRC0019','CONSULTANT VISIT 2','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1373,0,0,193,'2025-10-10',900,'12:13:00','ROOM','ROOM0002','BED CHARGES - SEMI- SPECIAL ','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'',0,'IPB',5,'Y','','',0,''),(1374,0,0,193,'2025-10-10',901,'12:13:00','CARE','CARE0006','RMO CHARGES - SEMI','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1375,0,0,193,'2025-10-10',902,'12:13:00','CARE','CARE0002','NURSING CHARGES - SEMI ','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1376,0,0,193,'2025-10-10',903,'12:13:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1377,0,0,193,'2025-10-10',904,'12:14:00','DRC','DRC0019','CONSULTANT VISIT 2','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1378,0,0,193,'2025-10-11',905,'12:15:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1379,0,0,193,'2025-10-09',906,'12:15:00','OPWD','OPWD0019','RBS BY GLUCOMETER PER RBS','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',1,'Y','','',0,''),(1380,0,0,193,'2025-10-09',907,'12:16:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1381,0,0,193,'2025-10-10',908,'12:18:00','USG','USG0091','USG ABDOMEN WITH PELVIS','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1440,0,0,428,'2025-10-11',792,'09:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(1441,0,0,428,'2025-10-11',793,'09:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(1442,0,0,428,'2025-10-11',794,'09:15:00','CARE','CARE0001','NURSING CHARGES (308)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(1443,0,0,428,'2025-10-11',1104,'09:15:00','AECO','AECO0008','RMO CHARGES DAY (308)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(1444,0,0,428,'2025-10-11',1105,'09:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(1445,0,0,428,'2025-10-11',1106,'09:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(1446,0,0,428,'2025-10-11',1107,'09:15:00','ROOM','ROOM0009','ROOM CHARGES (308)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(1447,0,0,428,'2025-10-12',1108,'10:02:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(1448,0,0,428,'2025-10-11',1109,'10:05:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1449,0,0,428,'2025-10-11',1110,'10:05:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1450,0,0,428,'2025-10-12',1111,'10:06:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1451,0,0,428,'2025-10-11',1112,'10:07:00','SURG','SURG0014','SURGERY CHARGE','H',6000,1.00,6000.00,'P',0.00,0.00,6000.00,0.00,0.00,6000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(1452,0,0,428,'2025-10-11',1113,'10:07:00','SURG','SURG0015','OT USAGE CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(1630,0,0,417,'2025-10-10',719,'14:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'P',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(1631,0,0,417,'2025-10-10',720,'14:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'P',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(1632,0,0,417,'2025-10-10',1114,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(1633,0,0,417,'2025-10-10',1116,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(1634,0,0,417,'2025-10-10',1117,'14:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(1635,0,0,417,'2025-10-10',1121,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(1636,0,0,417,'2025-10-11',1123,'10:51:00','ROOM','ROOM0009','ROOM CHARGES','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1637,0,0,417,'2025-10-11',1124,'10:53:00','CARE','CARE0004','RMO CHARGES - ICU','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1638,0,0,417,'2025-10-11',1125,'10:58:00','CARE','CARE0003','NURSING CHARGES - ICU','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1639,0,0,417,'2025-10-10',1126,'10:58:00','AECO','ROOM0007','EMERGENCY CONSULTANT\'S CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1640,0,0,417,'2025-10-11',1127,'10:59:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1641,0,0,417,'2025-10-11',1128,'10:59:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1642,0,0,417,'2025-10-12',1129,'10:59:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1643,0,0,417,'2025-10-11',1130,'10:59:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,6,0,'',0,'IPB',99,'Y','','',0,''),(1644,0,0,417,'2025-10-10',1138,'11:16:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1645,0,0,417,'2025-10-11',1139,'11:18:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1646,0,0,417,'2025-10-12',1140,'11:18:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1647,0,0,417,'2025-10-10',1141,'11:18:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1648,0,0,417,'2025-10-11',1142,'11:19:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1649,0,0,417,'2025-10-12',1143,'11:19:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1650,0,0,417,'2025-10-10',1144,'11:19:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1651,0,0,417,'2025-10-10',1145,'11:20:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1652,0,0,417,'2025-10-10',1146,'11:20:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1653,0,0,417,'2025-10-10',1147,'11:20:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1654,0,0,417,'2025-10-11',1148,'11:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1655,0,0,417,'2025-10-12',1149,'11:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1809,0,0,426,'2025-10-11',781,'08:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(1810,0,0,426,'2025-10-11',782,'08:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(1811,0,0,426,'2025-10-11',1182,'13:06:00','ROOM','ROOM0002','BED CHARGES - SEMI- SPECIAL ','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'',0,'IPB',5,'Y','','',0,''),(1812,0,0,426,'2025-10-11',1183,'13:07:00','CARE','CARE0006','RMO CHARGES - SEMI','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1813,0,0,426,'2025-10-11',1184,'13:07:00','CARE','CARE0002','NURSING CHARGES - SEMI ','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1814,0,0,426,'2025-10-11',1185,'13:07:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(1815,0,0,426,'2025-10-11',1186,'13:08:00','DRC','DRC0019','CONSULTANT VISIT 2','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(1816,0,0,426,'2025-10-12',1187,'13:08:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(1817,0,0,426,'2025-10-11',1188,'13:08:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(1818,0,0,426,'2025-10-12',1189,'13:09:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1819,0,0,426,'2025-10-12',1190,'13:09:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1820,0,0,426,'2025-10-12',1191,'13:09:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1821,0,0,426,'2025-10-11',1192,'13:10:00','SURG','SURG0014','SURGERY CHARGE','H',20000,1.00,20000.00,'P',0.00,0.00,20000.00,0.00,0.00,20000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(1822,0,0,426,'2025-10-11',1193,'13:10:00','SURG','SURG0015','OT USAGE CHARGE','H',5000,1.00,5000.00,'P',0.00,0.00,5000.00,0.00,0.00,5000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(1823,0,0,426,'2025-10-12',1196,'13:14:00','ROOM','ROOM0002','BED CHARGES - SEMI- SPECIAL ','H',2900,0.50,1450.00,'P',0.00,0.00,1450.00,0.00,0.00,1450.00,9999,0,'',0,'IPB',5,'Y','','',0,''),(1824,0,0,426,'2025-10-12',1197,'13:14:00','CARE','CARE0006','RMO CHARGES - SEMI','H',300,0.50,150.00,'P',0.00,0.00,150.00,0.00,0.00,150.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(1825,0,0,426,'2025-10-12',1198,'13:14:00','CARE','CARE0002','NURSING CHARGES - SEMI ','H',200,0.50,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(4157,0,0,510,'2025-10-12',1164,'12:45:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(4158,0,0,510,'2025-10-12',1165,'12:45:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(4159,0,0,510,'2025-10-12',1166,'12:45:00','ROOM','ROOM0009','ROOM CHARGES (308)','H',2900,0.50,1450.00,'A',0.00,0.00,1450.00,0.00,0.00,1450.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(4160,0,0,510,'2025-10-12',1167,'12:45:00','AECO','AECO0008','RMO CHARGES DAY (308)','H',300,0.50,150.00,'A',0.00,0.00,150.00,0.00,0.00,150.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(4161,0,0,510,'2025-10-12',1168,'12:45:00','CARE','CARE0001','NURSING CHARGES (308)','H',200,0.50,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(4162,0,0,510,'2025-10-12',1170,'12:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'308',0,'IPB',99,'Y','','',0,''),(4163,0,0,510,'2025-10-12',1574,'18:39:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(4164,0,0,510,'2025-10-12',1575,'18:40:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(4165,0,0,510,'2025-10-12',1600,'21:37:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(4694,0,0,66,'2025-10-08',1061,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(4695,0,0,66,'2025-10-09',1062,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(4696,0,0,66,'2025-10-10',1063,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(4697,0,0,66,'2025-10-08',1064,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(4698,0,0,66,'2025-10-09',1065,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(4699,0,0,66,'2025-10-10',1066,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(4700,0,0,66,'2025-10-08',1067,'12:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(4701,0,0,66,'2025-10-09',1068,'12:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(4702,0,0,66,'2025-10-10',1069,'12:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(4703,0,0,66,'2025-10-10',1072,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(4704,0,0,66,'2025-10-08',1073,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(4705,0,0,66,'2025-10-09',1074,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(4706,0,0,66,'2025-10-10',1075,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(4707,0,0,66,'2025-10-11',1076,'20:19:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(4708,0,0,66,'2025-10-11',1077,'20:19:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(4709,0,0,66,'2025-10-08',1078,'20:20:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(4710,0,0,66,'2025-10-08',1079,'20:20:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(4711,0,0,66,'2025-10-08',1080,'20:20:00','USG','USG0092','USG ABDOMEN CHARGE','H',1200,1.00,1200.00,'A',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(4712,0,0,66,'2025-10-08',1081,'20:23:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,2.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(4713,0,0,66,'2025-10-09',1082,'20:25:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(4714,0,0,66,'2025-10-08',1083,'20:26:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',1,'Y','','',0,''),(4715,0,0,66,'2025-10-08',1084,'20:26:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(4980,0,0,415,'2025-10-10',699,'11:45:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(4981,0,0,415,'2025-10-10',700,'11:45:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(4982,0,0,415,'2025-10-10',701,'11:45:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(4983,0,0,415,'2025-10-11',1472,'11:45:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(4984,0,0,415,'2025-10-12',1473,'11:45:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(4985,0,0,415,'2025-10-10',1474,'11:45:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(4986,0,0,415,'2025-10-11',1475,'11:45:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(4987,0,0,415,'2025-10-12',1476,'11:45:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(4988,0,0,415,'2025-10-11',1477,'11:45:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(4989,0,0,415,'2025-10-12',1478,'11:45:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(4990,0,0,415,'2025-10-10',1479,'11:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'305',0,'IPB',99,'Y','','',0,''),(4991,0,0,415,'2025-10-11',1480,'11:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'304',0,'IPB',99,'Y','','',0,''),(4992,0,0,415,'2025-10-12',1481,'11:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (304)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'304',0,'IPB',99,'Y','','',0,''),(4993,0,0,415,'2025-10-10',1482,'11:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'305',0,'IPB',99,'Y','','',0,''),(4994,0,0,415,'2025-10-11',1483,'11:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'304',0,'IPB',99,'Y','','',0,''),(4995,0,0,415,'2025-10-12',1484,'11:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'304',0,'IPB',99,'Y','','',0,''),(4996,0,0,415,'2025-10-10',1485,'11:45:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(4997,0,0,415,'2025-10-11',1565,'18:28:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,41,0,'',0,'IPB',99,'Y','','',0,''),(4998,0,0,415,'2025-10-10',1566,'18:29:00','ROOM','ROOM0004','INFUSION PUMP','H',500,2.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(4999,0,0,415,'2025-10-11',1567,'18:30:00','ROOM','ROOM0004','INFUSION PUMP','H',500,2.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(5000,0,0,415,'2025-10-12',1568,'18:30:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(5001,0,0,415,'2025-10-10',1569,'18:30:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(5002,0,0,415,'2025-10-10',1570,'18:30:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(5003,0,0,415,'2025-10-13',1757,'11:57:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(5004,0,0,415,'2025-10-13',1758,'11:58:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(5005,0,0,415,'2025-10-13',1759,'11:58:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'',0,'IPB',99,'Y','','',0,''),(6122,0,0,63,'2025-10-07',1405,'10:55:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(6123,0,0,63,'2025-10-08',1406,'10:55:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(6124,0,0,63,'2025-10-09',1407,'10:55:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(6125,0,0,63,'2025-10-10',1408,'10:55:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(6126,0,0,63,'2025-10-11',1409,'10:55:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(6127,0,0,63,'2025-10-12',1410,'10:55:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(6128,0,0,63,'2025-10-07',1411,'10:55:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(6129,0,0,63,'2025-10-08',1412,'10:55:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(6130,0,0,63,'2025-10-09',1413,'10:55:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(6131,0,0,63,'2025-10-10',1414,'10:55:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(6132,0,0,63,'2025-10-11',1415,'10:55:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(6133,0,0,63,'2025-10-12',1416,'10:55:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(6134,0,0,63,'2025-10-07',1417,'10:55:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(6135,0,0,63,'2025-10-08',1418,'10:55:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(6136,0,0,63,'2025-10-09',1419,'10:55:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(6137,0,0,63,'2025-10-10',1420,'10:55:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(6138,0,0,63,'2025-10-11',1421,'10:55:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(6139,0,0,63,'2025-10-12',1422,'10:55:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(6140,0,0,63,'2025-10-08',1424,'10:55:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(6141,0,0,63,'2025-10-09',1425,'10:55:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(6142,0,0,63,'2025-10-10',1426,'10:55:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'IPB',99,'Y','','',0,''),(6143,0,0,63,'2025-10-11',1427,'10:55:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'IPB',99,'Y','','',0,''),(6144,0,0,63,'2025-10-12',1428,'10:55:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'IPB',99,'Y','','',0,''),(6145,0,0,63,'2025-10-07',1429,'10:55:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(6146,0,0,63,'2025-10-08',1430,'10:55:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(6147,0,0,63,'2025-10-09',1431,'10:55:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(6148,0,0,63,'2025-10-10',1432,'10:55:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'IPB',99,'Y','','',0,''),(6149,0,0,63,'2025-10-11',1433,'10:55:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'IPB',99,'Y','','',0,''),(6150,0,0,63,'2025-10-12',1434,'10:55:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'IPB',99,'Y','','',0,''),(6151,0,0,63,'2025-10-07',1539,'17:16:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'P',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',1,'Y','','',0,''),(6152,0,0,63,'2025-10-07',1540,'17:16:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'P',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(6153,0,0,63,'2025-10-11',1543,'17:58:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,46,0,'',0,'IPB',99,'Y','','',0,''),(6154,0,0,63,'2025-10-12',1544,'17:58:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(6155,0,0,63,'2025-10-07',1545,'17:59:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(6156,0,0,63,'2025-10-08',1598,'19:17:00','SURG','SURG0014','SURGERY CHARGE','H',20000,1.00,20000.00,'P',0.00,0.00,20000.00,0.00,0.00,20000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(6157,0,0,63,'2025-10-08',1599,'19:17:00','SURG','SURG0015','OT USAGE CHARGE','H',5000,1.00,5000.00,'P',0.00,0.00,5000.00,0.00,0.00,5000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(6158,0,0,63,'2025-10-13',1801,'10:55:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'IPB',99,'Y','','',0,''),(6681,0,0,598,'2025-10-04',1836,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(6682,0,0,598,'2025-10-04',1837,'09:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(6683,0,0,598,'2025-10-04',1858,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(6684,0,0,598,'2025-10-04',1864,'09:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(6685,0,0,598,'2025-10-04',1870,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'408',0,'IPB',99,'Y','','',0,''),(6686,0,0,598,'2025-10-04',1882,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(6687,0,0,598,'2025-10-04',1931,'16:54:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(6688,0,0,598,'2025-10-04',1932,'16:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(6689,0,0,598,'2025-10-04',1933,'16:55:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(6697,0,0,527,'2025-10-13',1625,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(6698,0,0,527,'2025-10-13',1626,'09:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(6699,0,0,527,'2025-10-13',1630,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'IPB',99,'Y','','',0,''),(6700,0,0,527,'2025-10-13',1942,'17:14:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(6701,0,0,527,'2025-10-13',1943,'17:14:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(6702,0,0,527,'2025-10-13',1944,'17:14:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(6703,0,0,527,'2025-10-13',1945,'17:15:00','CARE','CARE0007','DAY CARE CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(7559,0,0,506,'2025-10-11',1094,'22:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(7560,0,0,506,'2025-10-11',1095,'22:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(7561,0,0,506,'2025-10-11',1096,'22:00:00','ROOM','ROOM0009','ROOM CHARGES (214)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'214',0,'IPB',99,'Y','','',0,''),(7562,0,0,506,'2025-10-11',1097,'22:00:00','AECO','AECO0008','RMO CHARGES DAY (214)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'214',0,'IPB',99,'Y','','',0,''),(7563,0,0,506,'2025-10-11',1098,'22:00:00','CARE','CARE0001','NURSING CHARGES (214)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'214',0,'IPB',99,'Y','','',0,''),(7564,0,0,506,'2025-10-12',1099,'22:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (214)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'214',0,'IPB',99,'Y','','',0,''),(7565,0,0,506,'2025-10-12',1100,'22:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (214)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'214',0,'IPB',99,'Y','','',0,''),(7566,0,0,506,'2025-10-12',1199,'14:17:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2500,1.00,2500.00,'P',0.00,0.00,2500.00,0.00,0.00,2500.00,37,0,'',0,'IPB',99,'Y','','',0,''),(7567,0,0,506,'2025-10-12',1200,'14:20:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,38,0,'',0,'IPB',99,'Y','','',0,''),(7568,0,0,506,'2025-10-12',1202,'14:20:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(7569,0,0,506,'2025-10-11',1206,'14:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(7570,0,0,506,'2025-10-12',1688,'22:00:00','AECO','AECO0008','RMO CHARGES DAY (214)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'214',0,'IPB',99,'Y','','',0,''),(7571,0,0,506,'2025-10-12',1689,'22:00:00','CARE','CARE0001','NURSING CHARGES (214)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'214',0,'IPB',99,'Y','','',0,''),(7572,0,0,506,'2025-10-12',1690,'22:00:00','ROOM','ROOM0009','ROOM CHARGES (214)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'214',0,'IPB',99,'Y','','',0,''),(7573,0,0,506,'2025-10-13',1725,'11:24:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(7574,0,0,506,'2025-10-12',1726,'11:24:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(7575,0,0,506,'2025-10-13',2061,'19:55:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'',0,'IPB',99,'Y','','',0,''),(7576,0,0,506,'2025-10-13',2062,'19:57:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'',0,'IPB',99,'Y','','',0,''),(7884,0,0,672,'2025-10-09',2158,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(7885,0,0,672,'2025-10-09',2159,'09:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(7886,0,0,672,'2025-10-09',2160,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (309)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(7887,0,0,672,'2025-10-09',2165,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (309)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(7888,0,0,672,'2025-10-09',2170,'09:30:00','CARE','CARE0001','NURSING CHARGES (309)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(7889,0,0,672,'2025-10-09',2175,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (309)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'309',0,'IPB',99,'Y','','',0,''),(7890,0,0,672,'2025-10-09',2180,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (309)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'309',0,'IPB',99,'Y','','',0,''),(7891,0,0,672,'2025-10-10',2181,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (309)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'309',0,'IPB',99,'Y','','',0,''),(7892,0,0,672,'2025-10-09',2185,'21:37:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(7893,0,0,672,'2025-10-09',2186,'21:38:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(7894,0,0,672,'2025-10-09',2187,'21:38:00','SURG','SURG0014','SURGERY CHARGE','H',15000,1.00,15000.00,'P',0.00,0.00,15000.00,0.00,0.00,15000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(7895,0,0,672,'2025-10-09',2188,'21:39:00','SURG','SURG0014','SURGERY CHARGE','H',40000,1.00,40000.00,'P',0.00,0.00,40000.00,0.00,0.00,40000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(7896,0,0,672,'2025-10-09',2189,'21:40:00','SURG','SURG0015','OT USAGE CHARGE','H',10000,1.00,10000.00,'P',0.00,0.00,10000.00,0.00,0.00,10000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(7897,0,0,672,'2025-10-10',2190,'21:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(7898,0,0,672,'2025-10-10',2191,'21:41:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(7899,0,0,672,'2025-10-09',2192,'21:43:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(8007,0,0,673,'2025-10-06',2193,'10:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(8008,0,0,673,'2025-10-06',2194,'10:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(8009,0,0,673,'2025-10-06',2200,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(8010,0,0,673,'2025-10-06',2207,'10:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(8011,0,0,673,'2025-10-06',2214,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'IPB',99,'Y','','',0,''),(8012,0,0,673,'2025-10-06',2221,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'IPB',99,'Y','','',0,''),(8013,0,0,673,'2025-10-07',2222,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'IPB',99,'Y','','',0,''),(8014,0,0,673,'2025-10-06',2228,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(8015,0,0,673,'2025-10-06',2235,'22:02:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(8016,0,0,673,'2025-10-06',2236,'22:03:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(8017,0,0,673,'2025-10-07',2237,'22:03:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(8018,0,0,673,'2025-10-06',2238,'22:04:00','SURG','SURG0014','SURGERY CHARGE','H',12500,1.00,12500.00,'P',0.00,0.00,12500.00,0.00,0.00,12500.00,3,0,'',0,'IPB',99,'Y','','',0,''),(8019,0,0,673,'2025-10-06',2239,'22:05:00','SURG','SURG0015','OT USAGE CHARGE','H',4200,1.00,4200.00,'P',0.00,0.00,4200.00,0.00,0.00,4200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(8127,0,0,477,'2025-10-11',879,'12:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(8128,0,0,477,'2025-10-11',880,'12:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(8129,0,0,477,'2025-10-11',1519,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (309)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(8130,0,0,477,'2025-10-12',1520,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (309)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(8131,0,0,477,'2025-10-11',1521,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (309)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(8132,0,0,477,'2025-10-12',1522,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (309)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(8133,0,0,477,'2025-10-11',1523,'12:00:00','CARE','CARE0001','NURSING CHARGES (309)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(8134,0,0,477,'2025-10-12',1524,'12:00:00','CARE','CARE0001','NURSING CHARGES (309)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(8135,0,0,477,'2025-10-12',1526,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'309',0,'IPB',99,'Y','','',0,''),(8136,0,0,477,'2025-10-11',1527,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,36,0,'309',0,'IPB',99,'Y','','',0,''),(8137,0,0,477,'2025-10-12',1528,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'309',0,'IPB',99,'Y','','',0,''),(8138,0,0,477,'2025-10-11',1571,'18:38:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(8139,0,0,477,'2025-10-11',1572,'18:38:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(8140,0,0,477,'2025-10-13',1908,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (309)','H',2900,0.50,1450.00,'A',0.00,0.00,1450.00,0.00,0.00,1450.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(8141,0,0,477,'2025-10-13',1909,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (309)','H',300,0.50,150.00,'A',0.00,0.00,150.00,0.00,0.00,150.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(8142,0,0,477,'2025-10-13',1910,'12:00:00','CARE','CARE0001','NURSING CHARGES (309)','H',200,0.50,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(8143,0,0,477,'2025-10-13',1911,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'309',0,'IPB',99,'Y','','',0,''),(8144,0,0,477,'2025-10-13',1912,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'309',0,'IPB',99,'Y','','',0,''),(8145,0,0,477,'2025-10-12',2255,'22:50:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(8146,0,0,477,'2025-10-13',2256,'22:51:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(8147,0,0,477,'2025-10-12',2257,'22:52:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(8163,0,0,505,'2025-10-11',1009,'19:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(8164,0,0,505,'2025-10-11',1010,'19:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(8165,0,0,505,'2025-10-11',1011,'19:15:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(8166,0,0,505,'2025-10-11',1012,'19:15:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(8167,0,0,505,'2025-10-11',1013,'19:15:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(8168,0,0,505,'2025-10-11',1015,'19:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,36,0,'404',0,'IPB',99,'Y','','',0,''),(8169,0,0,505,'2025-10-11',1541,'17:50:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(8170,0,0,505,'2025-10-12',1683,'19:15:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(8171,0,0,505,'2025-10-12',1684,'19:15:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(8172,0,0,505,'2025-10-12',1685,'19:15:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(8173,0,0,505,'2025-10-12',1686,'19:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(8174,0,0,505,'2025-10-12',1687,'19:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(8175,0,0,505,'2025-10-13',2041,'19:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(8176,0,0,505,'2025-10-13',2042,'19:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(8177,0,0,505,'2025-10-13',2254,'22:44:00','XRY','XRY0045','X RAY CHARGES','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(8200,0,0,668,'2025-09-25',2050,'19:29:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(8201,0,0,668,'2025-09-25',2051,'19:29:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(8202,0,0,668,'2025-09-25',2064,'12:15:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(8203,0,0,668,'2025-09-25',2082,'12:15:00','CARE','CARE0001','NURSING CHARGES (405)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(8204,0,0,668,'2025-09-25',2100,'12:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(8205,0,0,668,'2025-09-25',2118,'12:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(8206,0,0,668,'2025-09-25',2136,'12:15:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(8207,0,0,668,'2025-09-26',2154,'20:40:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(8208,0,0,668,'2025-09-25',2155,'20:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(8209,0,0,668,'2025-09-25',2156,'20:42:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(8210,0,0,668,'2025-09-25',2157,'20:43:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(8218,0,0,684,'2025-09-30',2292,'09:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(8219,0,0,684,'2025-09-30',2293,'09:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(8220,0,0,684,'2025-09-30',2297,'09:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(8221,0,0,684,'2025-09-30',2300,'09:42:00','OETR','OETR0001','PROCEDURE CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(8222,0,0,684,'2025-09-30',2301,'09:43:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(9913,0,0,509,'2025-10-12',1131,'11:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(9914,0,0,509,'2025-10-12',1132,'11:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(9915,0,0,509,'2025-10-12',1133,'11:00:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(9916,0,0,509,'2025-10-12',1134,'11:00:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(9917,0,0,509,'2025-10-12',1135,'11:00:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(9918,0,0,509,'2025-10-12',1136,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,5,0,'411',0,'IPB',99,'Y','','',0,''),(9919,0,0,509,'2025-10-12',1137,'11:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'411',0,'IPB',99,'Y','','',0,''),(9920,0,0,509,'2025-10-12',1546,'18:02:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(9921,0,0,509,'2025-10-13',1918,'11:00:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(9922,0,0,509,'2025-10-13',1919,'11:00:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(9923,0,0,509,'2025-10-13',1920,'11:00:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(9924,0,0,509,'2025-10-13',1921,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'411',0,'IPB',99,'Y','','',0,''),(9925,0,0,509,'2025-10-13',1922,'11:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'411',0,'IPB',99,'Y','','',0,''),(9926,0,0,509,'2025-10-14',2401,'12:09:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(10698,0,0,406,'2025-10-10',1460,'19:20:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(10699,0,0,406,'2025-10-11',1461,'19:20:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(10700,0,0,406,'2025-10-10',1462,'19:20:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(10701,0,0,406,'2025-10-11',1463,'19:20:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(10702,0,0,406,'2025-10-10',1464,'19:20:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(10703,0,0,406,'2025-10-11',1465,'19:20:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(10704,0,0,406,'2025-10-11',1467,'19:20:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'406',0,'IPB',99,'Y','','',0,''),(10705,0,0,406,'2025-10-10',1468,'19:20:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'406',0,'IPB',99,'Y','','',0,''),(10706,0,0,406,'2025-10-11',1469,'19:20:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'406',0,'IPB',99,'Y','','',0,''),(10707,0,0,406,'2025-10-10',1547,'18:03:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',1,'Y','','',0,''),(10708,0,0,406,'2025-10-10',1548,'18:03:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(10709,0,0,406,'2025-10-10',1549,'18:04:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(10710,0,0,406,'2025-10-10',1550,'18:05:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(10711,0,0,406,'2025-10-11',1551,'18:05:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(10712,0,0,406,'2025-10-11',1552,'18:05:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(10713,0,0,406,'2025-10-11',1553,'18:05:00','WPRC','WPRC0096','X-RAY RT KNEE AP LAT','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(10714,0,0,406,'2025-10-12',1663,'19:20:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(10715,0,0,406,'2025-10-12',1664,'19:20:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(10716,0,0,406,'2025-10-12',1665,'19:20:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(10717,0,0,406,'2025-10-12',1666,'19:20:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'406',0,'IPB',99,'Y','','',0,''),(10718,0,0,406,'2025-10-12',1667,'19:20:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'406',0,'IPB',99,'Y','','',0,''),(10719,0,0,406,'2025-10-13',2033,'19:20:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(10720,0,0,406,'2025-10-13',2034,'19:20:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(10721,0,0,406,'2025-10-13',2035,'19:20:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(10722,0,0,406,'2025-10-13',2036,'19:20:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'406',0,'IPB',99,'Y','','',0,''),(10723,0,0,406,'2025-10-13',2037,'19:20:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'406',0,'IPB',99,'Y','','',0,''),(10724,0,0,406,'2025-10-13',2453,'12:53:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,6,0,'',0,'IPB',99,'Y','','',0,''),(10725,0,0,406,'2025-10-14',2454,'12:53:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,6,0,'',0,'IPB',99,'Y','','',0,''),(10726,0,0,406,'2025-10-14',2455,'12:53:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'',0,'IPB',99,'Y','','',0,''),(10727,0,0,406,'2025-10-11',2461,'13:03:00','SURG','SURG0015','OT USAGE CHARGE','H',7500,1.00,7500.00,'P',0.00,0.00,7500.00,0.00,0.00,7500.00,6,0,'',0,'IPB',99,'Y','','',0,''),(10728,0,0,406,'2025-10-11',2462,'13:06:00','SURG','SURG0014','SURGERY CHARGE','H',30000,1.00,30000.00,'P',0.00,0.00,30000.00,0.00,0.00,30000.00,50,0,'',0,'IPB',99,'Y','','',0,''),(10775,0,0,737,'2025-10-14',2441,'09:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,0,0,'',0,'ER',1,'Y','N','',0,''),(10776,0,0,737,'2025-10-14',2442,'09:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,0,0,'',0,'ER',99,'Y','N','',0,''),(10777,0,0,737,'2025-10-14',2443,'09:00:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,0,0,'410',0,'IPB',99,'Y','N','',0,''),(10778,0,0,737,'2025-10-14',2444,'09:00:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,0,0,'410',0,'IPB',99,'Y','N','',0,''),(10779,0,0,737,'2025-10-14',2445,'09:00:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'410',0,'IPB',99,'Y','N','',0,''),(10780,0,0,737,'2025-10-14',2446,'09:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','N','',0,''),(10781,0,0,737,'2025-10-14',2447,'09:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','N','',0,''),(11783,0,0,48,'2025-10-06',1301,'11:00:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(11784,0,0,48,'2025-10-07',1302,'11:00:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(11785,0,0,48,'2025-10-08',1303,'11:00:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(11786,0,0,48,'2025-10-09',1304,'11:00:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(11787,0,0,48,'2025-10-10',1305,'11:00:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(11788,0,0,48,'2025-10-11',1306,'11:00:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(11789,0,0,48,'2025-10-12',1307,'11:00:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(11790,0,0,48,'2025-10-06',1308,'11:00:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(11791,0,0,48,'2025-10-07',1309,'11:00:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(11792,0,0,48,'2025-10-08',1310,'11:00:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(11793,0,0,48,'2025-10-09',1311,'11:00:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(11794,0,0,48,'2025-10-10',1312,'11:00:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(11795,0,0,48,'2025-10-11',1313,'11:00:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(11796,0,0,48,'2025-10-12',1314,'11:00:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(11797,0,0,48,'2025-10-06',1315,'11:00:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(11798,0,0,48,'2025-10-07',1316,'11:00:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(11799,0,0,48,'2025-10-08',1317,'11:00:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(11800,0,0,48,'2025-10-09',1318,'11:00:00','CARE','CARE0001','NURSING CHARGES (210)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(11801,0,0,48,'2025-10-10',1319,'11:00:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(11802,0,0,48,'2025-10-11',1320,'11:00:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(11803,0,0,48,'2025-10-12',1321,'11:00:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(11804,0,0,48,'2025-10-06',1322,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(11805,0,0,48,'2025-10-07',1323,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(11806,0,0,48,'2025-10-08',1324,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(11807,0,0,48,'2025-10-10',1326,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(11808,0,0,48,'2025-10-11',1327,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,36,0,'210',0,'IPB',99,'Y','','',0,''),(11809,0,0,48,'2025-10-12',1328,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(11810,0,0,48,'2025-10-07',1330,'11:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(11811,0,0,48,'2025-10-08',1331,'11:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(11812,0,0,48,'2025-10-09',1332,'11:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(11813,0,0,48,'2025-10-10',1333,'11:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(11814,0,0,48,'2025-10-11',1334,'11:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(11815,0,0,48,'2025-10-12',1335,'11:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(11816,0,0,48,'2025-10-06',1336,'15:25:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',1,'Y','','',0,''),(11817,0,0,48,'2025-10-06',1337,'15:25:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11818,0,0,48,'2025-10-09',1338,'15:28:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(11819,0,0,48,'2025-10-09',1339,'15:31:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11820,0,0,48,'2025-10-10',1340,'15:31:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11821,0,0,48,'2025-10-08',1341,'15:32:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11822,0,0,48,'2025-10-10',1342,'15:32:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11823,0,0,48,'2025-10-11',1343,'15:32:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11824,0,0,48,'2025-10-12',1344,'15:32:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11825,0,0,48,'2025-10-10',1345,'15:32:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11826,0,0,48,'2025-10-11',1346,'15:33:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11827,0,0,48,'2025-10-12',1347,'15:33:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11828,0,0,48,'2025-10-06',1348,'15:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11829,0,0,48,'2025-10-06',1349,'15:33:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11830,0,0,48,'2025-10-06',1350,'15:33:00','USG','USG0093','USG KUB BEDSIDE','H',1200,1.00,1200.00,'A',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11831,0,0,48,'2025-10-06',1351,'15:36:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11832,0,0,48,'2025-10-07',1352,'15:36:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11833,0,0,48,'2025-10-08',1353,'15:38:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11834,0,0,48,'2025-10-09',1354,'15:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11835,0,0,48,'2025-10-09',1355,'15:41:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11836,0,0,48,'2025-10-10',1356,'15:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11837,0,0,48,'2025-10-10',1357,'15:42:00','WPRC','WPRC0078','ECG','H',300,2.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11838,0,0,48,'2025-10-11',1358,'15:42:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11839,0,0,48,'2025-10-11',1359,'15:42:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11840,0,0,48,'2025-10-12',1360,'15:42:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11841,0,0,48,'2025-10-13',1786,'11:00:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(11842,0,0,48,'2025-10-13',1787,'11:00:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(11843,0,0,48,'2025-10-13',1788,'11:00:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(11844,0,0,48,'2025-10-13',1789,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(11845,0,0,48,'2025-10-13',1790,'11:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(11846,0,0,48,'2025-10-13',1792,'12:20:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11847,0,0,48,'2025-10-13',1793,'12:20:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11848,0,0,48,'2025-10-13',1794,'12:21:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11849,0,0,48,'2025-10-14',2411,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(11850,0,0,48,'2025-10-14',2482,'14:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11851,0,0,48,'2025-10-14',2483,'14:41:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(11852,0,0,48,'2025-10-13',2484,'14:47:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,52,0,'',0,'IPB',99,'Y','','',0,''),(12833,0,0,216,'2025-10-09',1435,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (308)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(12834,0,0,216,'2025-10-10',1436,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(12835,0,0,216,'2025-10-11',1437,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(12836,0,0,216,'2025-10-12',1438,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(12837,0,0,216,'2025-10-09',1439,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (308)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(12838,0,0,216,'2025-10-10',1440,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(12839,0,0,216,'2025-10-11',1441,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(12840,0,0,216,'2025-10-12',1442,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(12841,0,0,216,'2025-10-09',1443,'12:30:00','CARE','CARE0001','NURSING CHARGES (308)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(12842,0,0,216,'2025-10-10',1444,'12:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(12843,0,0,216,'2025-10-11',1445,'12:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(12844,0,0,216,'2025-10-12',1446,'12:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(12845,0,0,216,'2025-10-10',1448,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'402',0,'IPB',99,'Y','','',0,''),(12846,0,0,216,'2025-10-11',1449,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'402',0,'IPB',99,'Y','','',0,''),(12847,0,0,216,'2025-10-12',1450,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'402',0,'IPB',99,'Y','','',0,''),(12848,0,0,216,'2025-10-09',1451,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'308',0,'IPB',99,'Y','','',0,''),(12849,0,0,216,'2025-10-10',1452,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'402',0,'IPB',99,'Y','','',0,''),(12850,0,0,216,'2025-10-11',1453,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,36,0,'402',0,'IPB',99,'Y','','',0,''),(12851,0,0,216,'2025-10-12',1454,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'402',0,'IPB',99,'Y','','',0,''),(12852,0,0,216,'2025-10-09',1542,'17:53:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(12853,0,0,216,'2025-10-13',1888,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(12854,0,0,216,'2025-10-13',1889,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(12855,0,0,216,'2025-10-13',1890,'12:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(12856,0,0,216,'2025-10-13',1891,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'402',0,'IPB',99,'Y','','',0,''),(12857,0,0,216,'2025-10-13',1892,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'402',0,'IPB',99,'Y','','',0,''),(12858,0,0,216,'2025-10-14',2683,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(12859,0,0,216,'2025-10-14',2684,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(12860,0,0,216,'2025-10-14',2685,'12:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(12861,0,0,216,'2025-10-14',2686,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'402',0,'IPB',99,'Y','','',0,''),(12862,0,0,216,'2025-10-14',2687,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'402',0,'IPB',99,'Y','','',0,''),(12863,0,0,216,'2025-10-09',2688,'12:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',1,'Y','','',0,''),(12864,0,0,216,'2025-10-09',2689,'12:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(12865,0,0,216,'2025-10-15',2690,'12:02:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(12866,0,0,216,'2025-10-13',2691,'12:03:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(12874,0,0,743,'2025-10-14',2468,'13:27:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(12875,0,0,743,'2025-10-14',2469,'13:27:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(12876,0,0,743,'2025-10-14',2470,'13:27:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(12877,0,0,743,'2025-10-14',2471,'13:27:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(12878,0,0,743,'2025-10-14',2472,'13:27:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(12879,0,0,743,'2025-10-15',2473,'13:27:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'406',0,'IPB',99,'Y','','',0,''),(12880,0,0,743,'2025-10-14',2474,'13:27:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'406',0,'IPB',99,'Y','','',0,''),(12881,0,0,743,'2025-10-14',2726,'13:03:00','SURG','SURG0014','SURGERY CHARGE','H',8600,1.00,8600.00,'P',0.00,0.00,8600.00,0.00,0.00,8600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(12882,0,0,743,'2025-10-14',2727,'13:03:00','SURG','SURG0015','OT USAGE CHARGE','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,3,0,'',0,'IPB',99,'Y','','',0,''),(14933,0,0,574,'2025-10-13',1742,'11:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(14934,0,0,574,'2025-10-13',1743,'11:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(14935,0,0,574,'2025-10-13',1744,'11:30:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(14936,0,0,574,'2025-10-13',1745,'11:30:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(14937,0,0,574,'2025-10-13',1746,'11:30:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(14938,0,0,574,'2025-10-13',1748,'11:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'305',0,'IPB',99,'Y','','',0,''),(14939,0,0,574,'2025-10-14',2418,'11:30:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(14940,0,0,574,'2025-10-14',2419,'11:30:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(14941,0,0,574,'2025-10-14',2420,'11:30:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(14942,0,0,574,'2025-10-14',2421,'11:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'305',0,'IPB',99,'Y','','',0,''),(14943,0,0,574,'2025-10-14',2422,'11:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'305',0,'IPB',99,'Y','','',0,''),(14944,0,0,574,'2025-10-15',2825,'11:30:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(14945,0,0,574,'2025-10-15',2826,'11:30:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(14946,0,0,574,'2025-10-15',2827,'11:30:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(14947,0,0,574,'2025-10-15',2828,'11:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'305',0,'IPB',99,'Y','','',0,''),(14948,0,0,574,'2025-10-15',2829,'11:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'305',0,'IPB',99,'Y','','',0,''),(14949,0,0,574,'2025-10-13',2832,'18:14:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(14950,0,0,574,'2025-10-13',2833,'18:14:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(14951,0,0,574,'2025-10-14',2834,'18:14:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(14952,0,0,574,'2025-10-15',2835,'18:14:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(14953,0,0,574,'2025-10-16',2957,'08:55:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(14954,0,0,574,'2025-10-16',2958,'08:55:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(15369,0,0,645,'2025-10-13',1997,'18:40:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(15370,0,0,645,'2025-10-13',1998,'18:40:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(15371,0,0,645,'2025-10-13',1999,'18:40:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(15372,0,0,645,'2025-10-13',2000,'18:40:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(15373,0,0,645,'2025-10-13',2001,'18:40:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(15374,0,0,645,'2025-10-14',2002,'18:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'405',0,'IPB',99,'Y','','',0,''),(15375,0,0,645,'2025-10-14',2003,'18:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'405',0,'IPB',99,'Y','','',0,''),(15376,0,0,645,'2025-10-14',2814,'18:40:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(15377,0,0,645,'2025-10-14',2815,'18:40:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(15378,0,0,645,'2025-10-14',2816,'18:40:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(15379,0,0,645,'2025-10-15',2817,'18:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(15380,0,0,645,'2025-10-15',2818,'18:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(15381,0,0,645,'2025-10-13',2819,'18:09:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(15382,0,0,645,'2025-10-14',2820,'18:09:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(15383,0,0,645,'2025-10-15',2821,'18:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(15384,0,0,645,'2025-10-15',2822,'18:10:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(15385,0,0,645,'2025-10-15',2879,'18:40:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(15386,0,0,645,'2025-10-15',2880,'18:40:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(15387,0,0,645,'2025-10-16',2881,'18:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(15388,0,0,645,'2025-10-15',2883,'18:40:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(15389,0,0,645,'2025-10-16',3001,'11:20:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(15390,0,0,645,'2025-10-16',3002,'11:20:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(15391,0,0,645,'2025-10-15',3009,'11:26:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,62,0,'',0,'IPB',99,'Y','','',0,''),(15847,0,0,470,'2025-10-11',871,'11:40:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(15848,0,0,470,'2025-10-11',872,'11:40:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(15849,0,0,470,'2025-10-11',1509,'11:40:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(15850,0,0,470,'2025-10-12',1510,'11:40:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(15851,0,0,470,'2025-10-11',1511,'11:40:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(15852,0,0,470,'2025-10-12',1512,'11:40:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(15853,0,0,470,'2025-10-11',1513,'11:40:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(15854,0,0,470,'2025-10-12',1514,'11:40:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(15855,0,0,470,'2025-10-12',1516,'11:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'305',0,'IPB',99,'Y','','',0,''),(15856,0,0,470,'2025-10-11',1517,'11:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'305',0,'IPB',99,'Y','','',0,''),(15857,0,0,470,'2025-10-12',1518,'11:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'305',0,'IPB',99,'Y','','',0,''),(15858,0,0,470,'2025-10-12',1576,'18:48:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,7,0,'',0,'IPB',99,'Y','','',0,''),(15859,0,0,470,'2025-10-12',1577,'18:48:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(15860,0,0,470,'2025-10-11',1578,'18:50:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(15861,0,0,470,'2025-10-12',1579,'18:50:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(15862,0,0,470,'2025-10-12',1580,'18:54:00','WPRC','WPRC0079','FOLEYS CATHETER','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,3,0,'',0,'IPB',99,'Y','','',0,''),(15863,0,0,470,'2025-10-13',1903,'11:40:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(15864,0,0,470,'2025-10-13',1904,'11:40:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(15865,0,0,470,'2025-10-13',1905,'11:40:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(15866,0,0,470,'2025-10-13',1906,'11:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'304',0,'IPB',99,'Y','','',0,''),(15867,0,0,470,'2025-10-13',1907,'11:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'304',0,'IPB',99,'Y','','',0,''),(15868,0,0,470,'2025-10-14',2413,'11:40:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(15869,0,0,470,'2025-10-14',2414,'11:40:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(15870,0,0,470,'2025-10-14',2415,'11:40:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(15871,0,0,470,'2025-10-14',2417,'11:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'304',0,'IPB',99,'Y','','',0,''),(15872,0,0,470,'2025-10-15',2836,'11:40:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(15873,0,0,470,'2025-10-15',2837,'11:40:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(15874,0,0,470,'2025-10-15',2838,'11:40:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(15875,0,0,470,'2025-10-15',2840,'11:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'304',0,'IPB',99,'Y','','',0,''),(15876,0,0,470,'2025-10-13',2842,'18:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(15877,0,0,470,'2025-10-14',2843,'18:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(15878,0,0,470,'2025-10-15',2844,'18:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(15879,0,0,470,'2025-10-13',2845,'18:17:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(15880,0,0,470,'2025-10-14',2846,'18:17:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(15881,0,0,470,'2025-10-16',3036,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'',0,'IPB',99,'Y','','',0,''),(15882,0,0,470,'2025-10-13',3037,'12:01:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,7,0,'',0,'IPB',99,'Y','','',0,''),(15883,0,0,470,'2025-10-14',3038,'12:01:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,7,0,'',0,'IPB',99,'Y','','',0,''),(15884,0,0,470,'2025-10-15',3039,'12:01:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,7,0,'',0,'IPB',99,'Y','','',0,''),(15885,0,0,470,'2025-10-16',3040,'12:02:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(15886,0,0,470,'2025-10-11',3046,'12:12:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'',0,'IPB',99,'Y','','',0,''),(16007,0,0,803,'2025-10-14',2576,'21:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(16008,0,0,803,'2025-10-14',2577,'21:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(16009,0,0,803,'2025-10-14',2578,'21:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(16010,0,0,803,'2025-10-14',2579,'21:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(16011,0,0,803,'2025-10-14',2580,'21:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(16012,0,0,803,'2025-10-15',2581,'21:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(16013,0,0,803,'2025-10-14',2808,'18:07:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16014,0,0,803,'2025-10-14',2809,'18:07:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16015,0,0,803,'2025-10-15',2810,'18:07:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16016,0,0,803,'2025-10-15',2811,'18:07:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16017,0,0,803,'2025-10-14',2812,'18:08:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16018,0,0,803,'2025-10-16',3056,'21:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(16019,0,0,803,'2025-10-15',3061,'12:30:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16020,0,0,803,'2025-10-15',3062,'12:31:00','CARE','CARE0005','RMO CHARGE - SPECIAL','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16021,0,0,803,'2025-10-15',3063,'12:31:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16022,0,0,803,'2025-10-15',3064,'12:33:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(16023,0,0,803,'2025-10-16',3065,'12:34:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16024,0,0,803,'2025-10-15',3066,'12:35:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16197,0,0,809,'2025-10-15',2598,'09:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(16198,0,0,809,'2025-10-15',2599,'09:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(16199,0,0,809,'2025-10-15',2600,'09:00:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(16200,0,0,809,'2025-10-15',2601,'09:00:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(16201,0,0,809,'2025-10-15',2602,'09:00:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(16202,0,0,809,'2025-10-15',2603,'09:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(16203,0,0,809,'2025-10-15',2604,'09:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(16204,0,0,809,'2025-10-16',3148,'18:32:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(16205,0,0,809,'2025-10-16',3149,'18:32:00','DRC','DRC0019','CONSULTANT VISIT 2','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(16206,0,0,809,'2025-10-16',3150,'18:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16207,0,0,809,'2025-10-15',3151,'18:33:00','SURG','SURG0014','SURGERY CHARGE','H',15600,1.00,15600.00,'P',0.00,0.00,15600.00,0.00,0.00,15600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(16208,0,0,809,'2025-10-15',3152,'18:33:00','SURG','SURG0015','OT USAGE CHARGE','H',5200,1.00,5200.00,'P',0.00,0.00,5200.00,0.00,0.00,5200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(16860,0,0,841,'2025-10-15',2636,'11:25:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(16861,0,0,841,'2025-10-15',2637,'11:25:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(16862,0,0,841,'2025-10-15',2638,'11:25:00','ROOM','ROOM0009','ROOM CHARGES (308)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(16863,0,0,841,'2025-10-15',2639,'11:25:00','AECO','AECO0008','RMO CHARGES DAY (308)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(16864,0,0,841,'2025-10-15',2640,'11:25:00','CARE','CARE0001','NURSING CHARGES (308)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(16865,0,0,841,'2025-10-16',2641,'11:25:00','DRC','DRC0018','CONSULTANT VISIT 1  (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'308',0,'IPB',99,'Y','','',0,''),(16866,0,0,841,'2025-10-15',2642,'11:25:00','DRC','DRC0019','CONSULTANT VISIT 2 (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'308',0,'IPB',99,'Y','','',0,''),(16867,0,0,841,'2025-10-15',3143,'18:28:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16868,0,0,841,'2025-10-15',3144,'18:29:00','SURG','SURG0014','SURGERY CHARGE','H',17700,1.00,17700.00,'P',0.00,0.00,17700.00,0.00,0.00,17700.00,3,0,'',0,'IPB',99,'Y','','',0,''),(16869,0,0,841,'2025-10-15',3145,'18:30:00','SURG','SURG0015','OT USAGE CHARGE','H',5900,1.00,5900.00,'P',0.00,0.00,5900.00,0.00,0.00,5900.00,3,0,'',0,'IPB',99,'Y','','',0,''),(16870,0,0,841,'2025-10-16',3146,'18:31:00','DRC','DRC0019','CONSULTANT VISIT 2','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(16931,0,0,224,'2025-10-10',1047,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(16932,0,0,224,'2025-10-11',1048,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(16933,0,0,224,'2025-10-10',1050,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(16934,0,0,224,'2025-10-11',1051,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(16935,0,0,224,'2025-10-10',1053,'14:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(16936,0,0,224,'2025-10-11',1054,'14:30:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(16937,0,0,224,'2025-10-10',1056,'14:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'207',0,'IPB',99,'Y','','',0,''),(16938,0,0,224,'2025-10-11',1057,'14:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'IPB',99,'Y','','',0,''),(16939,0,0,224,'2025-10-10',1059,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'207',0,'IPB',99,'Y','','',0,''),(16940,0,0,224,'2025-10-11',1060,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'IPB',99,'Y','','',0,''),(16941,0,0,224,'2025-10-12',1455,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(16942,0,0,224,'2025-10-12',1456,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(16943,0,0,224,'2025-10-12',1457,'14:30:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(16944,0,0,224,'2025-10-12',1458,'14:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'IPB',99,'Y','','',0,''),(16945,0,0,224,'2025-10-12',1459,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'IPB',99,'Y','','',0,''),(16946,0,0,224,'2025-10-09',1581,'18:57:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',1,'Y','','',0,''),(16947,0,0,224,'2025-10-09',1582,'18:57:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16948,0,0,224,'2025-10-09',1583,'18:59:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16949,0,0,224,'2025-10-09',1584,'18:59:00','AECO','AECO0008','RMO CHARGES DAY','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16950,0,0,224,'2025-10-09',1585,'18:59:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16951,0,0,224,'2025-10-09',1586,'19:00:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(16952,0,0,224,'2025-10-09',1587,'19:00:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(16953,0,0,224,'2025-10-10',1588,'19:01:00','WPRC','WPRC0086','OXYGEN CHARGE','H',200,2.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16954,0,0,224,'2025-10-09',1589,'19:03:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16955,0,0,224,'2025-10-09',1590,'19:04:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16956,0,0,224,'2025-10-10',1591,'19:04:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16957,0,0,224,'2025-10-11',1592,'19:04:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16958,0,0,224,'2025-10-10',1593,'19:05:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,3,0,'',0,'IPB',99,'Y','','',0,''),(16959,0,0,224,'2025-10-11',1594,'19:05:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16960,0,0,224,'2025-10-11',1595,'19:05:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16961,0,0,224,'2025-10-12',1596,'19:05:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16962,0,0,224,'2025-10-12',1597,'19:05:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16963,0,0,224,'2025-10-13',1893,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(16964,0,0,224,'2025-10-13',1894,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(16965,0,0,224,'2025-10-13',1895,'14:30:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(16966,0,0,224,'2025-10-13',1896,'14:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'IPB',99,'Y','','',0,''),(16967,0,0,224,'2025-10-13',1897,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'IPB',99,'Y','','',0,''),(16968,0,0,224,'2025-10-14',2779,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(16969,0,0,224,'2025-10-15',2780,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(16970,0,0,224,'2025-10-14',2781,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(16971,0,0,224,'2025-10-15',2782,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(16972,0,0,224,'2025-10-14',2783,'14:30:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(16973,0,0,224,'2025-10-15',2784,'14:30:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(16974,0,0,224,'2025-10-14',2785,'14:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'IPB',99,'Y','','',0,''),(16975,0,0,224,'2025-10-15',2786,'14:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'IPB',99,'Y','','',0,''),(16976,0,0,224,'2025-10-14',2787,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'IPB',99,'Y','','',0,''),(16977,0,0,224,'2025-10-15',2788,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'IPB',99,'Y','','',0,''),(16978,0,0,224,'2025-10-13',2790,'17:56:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16979,0,0,224,'2025-10-14',2791,'17:56:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16980,0,0,224,'2025-10-15',2792,'17:57:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16981,0,0,224,'2025-10-13',2793,'17:57:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16982,0,0,224,'2025-10-13',2794,'17:57:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(16983,0,0,224,'2025-10-15',2795,'17:58:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(16984,0,0,224,'2025-10-16',3157,'18:37:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16985,0,0,224,'2025-10-16',3158,'18:37:00','USG','USG0092','USG ABDOMEN CHARGE','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(16986,0,0,224,'2025-10-15',3159,'18:39:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(16987,0,0,224,'2025-10-10',3160,'18:39:00','SURG','SURG0014','SURGERY CHARGE','H',35000,1.00,35000.00,'P',0.00,0.00,35000.00,0.00,0.00,35000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(16988,0,0,224,'2025-10-10',3161,'18:40:00','SURG','SURG0015','OT USAGE CHARGE','H',11700,1.00,11700.00,'P',0.00,0.00,11700.00,0.00,0.00,11700.00,3,0,'',0,'IPB',99,'Y','','',0,''),(16989,0,0,224,'2025-10-16',3184,'19:52:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(16990,0,0,224,'2025-10-16',3185,'19:52:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(18107,0,0,871,'2025-10-15',2731,'13:23:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(18108,0,0,871,'2025-10-15',2732,'13:23:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(18109,0,0,871,'2025-10-15',2733,'13:23:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(18110,0,0,871,'2025-10-15',2734,'13:23:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(18111,0,0,871,'2025-10-15',2735,'13:23:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(18112,0,0,871,'2025-10-17',2736,'13:23:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(18113,0,0,871,'2025-10-15',2737,'13:23:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(18114,0,0,871,'2025-10-16',3272,'13:23:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(18115,0,0,871,'2025-10-16',3273,'13:23:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(18116,0,0,871,'2025-10-16',3274,'13:23:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(18117,0,0,871,'2025-10-16',3275,'13:23:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(18118,0,0,871,'2025-10-16',3276,'13:23:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(18119,0,0,871,'2025-10-15',3278,'13:25:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(22293,0,0,28,'2025-10-04',3422,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(22294,0,0,28,'2025-10-05',3423,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(22295,0,0,28,'2025-10-06',3424,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(22296,0,0,28,'2025-10-07',3425,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(22297,0,0,28,'2025-10-08',3426,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(22298,0,0,28,'2025-10-09',3427,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(22299,0,0,28,'2025-10-04',3428,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(22300,0,0,28,'2025-10-05',3429,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(22301,0,0,28,'2025-10-06',3430,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(22302,0,0,28,'2025-10-07',3431,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(22303,0,0,28,'2025-10-08',3432,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(22304,0,0,28,'2025-10-09',3433,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(22305,0,0,28,'2025-10-04',3434,'18:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(22306,0,0,28,'2025-10-05',3435,'18:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(22307,0,0,28,'2025-10-06',3436,'18:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(22308,0,0,28,'2025-10-07',3437,'18:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(22309,0,0,28,'2025-10-08',3438,'18:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(22310,0,0,28,'2025-10-09',3439,'18:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(22311,0,0,28,'2025-10-10',3440,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'208',0,'IPB',99,'Y','','',0,''),(22312,0,0,28,'2025-10-06',3442,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'208',0,'IPB',99,'Y','','',0,''),(22313,0,0,28,'2025-10-07',3443,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'208',0,'IPB',99,'Y','','',0,''),(22314,0,0,28,'2025-10-08',3444,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'208',0,'IPB',99,'Y','','',0,''),(22315,0,0,28,'2025-10-09',3445,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'208',0,'IPB',99,'Y','','',0,''),(22316,0,0,28,'2025-10-04',3446,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,8,0,'208',0,'IPB',99,'Y','','',0,''),(22317,0,0,28,'2025-10-05',3447,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'208',0,'IPB',99,'Y','','',0,''),(22318,0,0,28,'2025-10-06',3448,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'208',0,'IPB',99,'Y','','',0,''),(22319,0,0,28,'2025-10-07',3449,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'208',0,'IPB',99,'Y','','',0,''),(22320,0,0,28,'2025-10-08',3450,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'208',0,'IPB',99,'Y','','',0,''),(22321,0,0,28,'2025-10-09',3451,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'208',0,'IPB',99,'Y','','',0,''),(22322,0,0,28,'2025-10-04',3454,'16:53:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',1,'Y','','',0,''),(22323,0,0,28,'2025-10-04',3455,'16:53:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(22324,0,0,28,'2025-10-04',3457,'16:54:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(22325,0,0,28,'2025-10-05',3463,'16:59:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(22326,0,0,28,'2025-10-05',3464,'16:59:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(22327,0,0,28,'2025-10-09',3465,'17:01:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,65,0,'',0,'IPB',99,'Y','','',0,''),(22328,0,0,28,'2025-10-09',3466,'17:02:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,66,0,'',0,'IPB',99,'Y','','',0,''),(22329,0,0,28,'2025-10-04',3468,'17:07:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(22330,0,0,28,'2025-10-04',3469,'17:07:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,8,0,'',0,'IPB',99,'Y','','',0,''),(22331,0,0,28,'2025-10-04',3470,'17:07:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(22332,0,0,28,'2025-10-04',3471,'17:07:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(22333,0,0,28,'2025-10-05',3472,'17:08:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(22334,0,0,28,'2025-10-05',3473,'17:08:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,8,0,'',0,'IPB',99,'Y','','',0,''),(22335,0,0,28,'2025-10-05',3474,'17:08:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(22336,0,0,28,'2025-10-05',3475,'17:09:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(22337,0,0,28,'2025-10-05',3476,'17:09:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(22338,0,0,28,'2025-10-05',3477,'17:09:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(22339,0,0,28,'2025-10-06',3478,'17:09:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(22340,0,0,28,'2025-10-06',3479,'17:09:00','USG','USG0091','USG ABDOMEN WITH PELVIS','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(22341,0,0,28,'2025-10-06',3480,'17:09:00','WPRC','WPRC0092','CVP (CENTRAL LINE INSERTION) CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(22342,0,0,28,'2025-10-06',3481,'17:10:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(22343,0,0,28,'2025-10-06',3482,'17:10:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(22344,0,0,28,'2025-10-07',3483,'17:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(22345,0,0,28,'2025-10-08',3484,'17:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(22346,0,0,28,'2025-10-09',3485,'17:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24285,0,0,1072,'2025-10-16',3245,'21:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(24286,0,0,1072,'2025-10-16',3246,'21:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(24287,0,0,1072,'2025-10-16',3247,'21:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(24288,0,0,1072,'2025-10-16',3248,'21:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(24289,0,0,1072,'2025-10-16',3249,'21:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(24290,0,0,1072,'2025-10-16',3519,'17:50:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24291,0,0,1072,'2025-10-17',3520,'17:50:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24292,0,0,1072,'2025-10-16',3521,'17:51:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24293,0,0,1072,'2025-10-17',3522,'17:51:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24294,0,0,1072,'2025-10-17',3523,'17:51:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,2,0,'',0,'IPB',99,'Y','','',0,''),(24295,0,0,1072,'2025-10-17',3756,'21:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(24296,0,0,1072,'2025-10-17',3757,'21:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(24297,0,0,1072,'2025-10-17',3758,'21:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'208',0,'IPB',99,'Y','','',0,''),(24298,0,0,1072,'2025-10-17',3759,'21:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'208',0,'IPB',99,'Y','','',0,''),(24299,0,0,1072,'2025-10-17',3760,'21:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(24300,0,0,1072,'2025-10-18',3762,'12:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24301,0,0,1072,'2025-10-18',3763,'12:24:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'',0,'IPB',99,'Y','','',0,''),(24369,0,0,882,'2025-10-15',2756,'17:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(24370,0,0,882,'2025-10-15',2757,'17:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(24371,0,0,882,'2025-10-15',2758,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(24372,0,0,882,'2025-10-15',2759,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(24373,0,0,882,'2025-10-15',2760,'17:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(24374,0,0,882,'2025-10-15',2762,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(24375,0,0,882,'2025-10-16',3198,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(24376,0,0,882,'2025-10-16',3199,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(24377,0,0,882,'2025-10-16',3200,'17:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(24378,0,0,882,'2025-10-16',3201,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(24379,0,0,882,'2025-10-16',3202,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(24380,0,0,882,'2025-10-15',3203,'20:28:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24381,0,0,882,'2025-10-15',3204,'20:28:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24382,0,0,882,'2025-10-16',3205,'20:28:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24383,0,0,882,'2025-10-15',3206,'20:28:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24384,0,0,882,'2025-10-16',3207,'20:29:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24385,0,0,882,'2025-10-15',3208,'20:29:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24386,0,0,882,'2025-10-16',3209,'20:29:00','WPRC','WPRC0089','NEB CHARGE','H',100,8.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24387,0,0,882,'2025-10-17',3580,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(24388,0,0,882,'2025-10-17',3581,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(24389,0,0,882,'2025-10-17',3582,'17:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(24390,0,0,882,'2025-10-17',3583,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(24391,0,0,882,'2025-10-17',3584,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(24392,0,0,882,'2025-10-17',3586,'18:25:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24393,0,0,882,'2025-10-17',3587,'18:26:00','WPRC','WPRC0089','NEB CHARGE','H',100,8.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24394,0,0,882,'2025-10-17',3588,'18:26:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24395,0,0,882,'2025-10-18',3705,'11:17:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24396,0,0,882,'2025-10-18',3706,'11:17:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24397,0,0,882,'2025-10-18',3707,'11:19:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(24398,0,0,882,'2025-10-18',3708,'11:19:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(25620,0,0,284,'2025-10-10',1257,'23:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(25621,0,0,284,'2025-10-11',1258,'23:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(25622,0,0,284,'2025-10-10',1260,'23:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(25623,0,0,284,'2025-10-11',1261,'23:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(25624,0,0,284,'2025-10-10',1263,'23:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(25625,0,0,284,'2025-10-11',1264,'23:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(25626,0,0,284,'2025-10-11',1267,'23:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(25627,0,0,284,'2025-10-11',1270,'23:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,36,0,'208',0,'IPB',99,'Y','','',0,''),(25628,0,0,284,'2025-10-09',1271,'15:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',1,'Y','','',0,''),(25629,0,0,284,'2025-10-09',1272,'15:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25630,0,0,284,'2025-10-10',1273,'15:05:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(25631,0,0,284,'2025-10-10',1274,'15:05:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(25632,0,0,284,'2025-10-10',1275,'15:06:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25633,0,0,284,'2025-10-10',1276,'15:06:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25634,0,0,284,'2025-10-11',1277,'15:06:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25635,0,0,284,'2025-10-11',1278,'15:06:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25636,0,0,284,'2025-10-12',1279,'15:06:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25637,0,0,284,'2025-10-12',1280,'15:06:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25638,0,0,284,'2025-10-11',1281,'15:08:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25639,0,0,284,'2025-10-12',1282,'15:08:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25640,0,0,284,'2025-10-10',1283,'15:08:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25641,0,0,284,'2025-10-11',1284,'15:08:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25642,0,0,284,'2025-10-12',1285,'15:08:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25643,0,0,284,'2025-10-10',1286,'15:09:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25644,0,0,284,'2025-10-09',1287,'15:09:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25645,0,0,284,'2025-10-09',1288,'15:09:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25646,0,0,284,'2025-10-10',1289,'15:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25647,0,0,284,'2025-10-10',1290,'15:10:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25648,0,0,284,'2025-10-10',1291,'15:11:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25649,0,0,284,'2025-10-10',1292,'15:11:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25650,0,0,284,'2025-10-10',1293,'15:12:00','WPRC','WPRC0091','FFP TRANSFUSION CHARGE','H',500,4.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25651,0,0,284,'2025-10-10',1294,'15:14:00','WPRC','WPRC0092','CVP (CENTRAL LINE INSERTION) CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,39,0,'',0,'IPB',99,'Y','','',0,''),(25652,0,0,284,'2025-10-11',1295,'15:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25653,0,0,284,'2025-10-11',1296,'15:16:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25654,0,0,284,'2025-10-11',1297,'15:17:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25655,0,0,284,'2025-10-12',1298,'15:17:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25656,0,0,284,'2025-10-10',1299,'15:18:00','SURG','SURG0014','SURGERY CHARGE','H',70000,1.00,70000.00,'P',0.00,0.00,70000.00,0.00,0.00,70000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25657,0,0,284,'2025-10-10',1300,'15:18:00','SURG','SURG0015','OT USAGE CHARGE','H',17500,1.00,17500.00,'P',0.00,0.00,17500.00,0.00,0.00,17500.00,4,0,'',0,'IPB',99,'Y','','',0,''),(25658,0,0,284,'2025-10-12',1658,'23:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(25659,0,0,284,'2025-10-12',1659,'23:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(25660,0,0,284,'2025-10-12',1660,'23:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(25661,0,0,284,'2025-10-12',1661,'23:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(25662,0,0,284,'2025-10-12',1662,'23:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(25663,0,0,284,'2025-10-13',1702,'10:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25664,0,0,284,'2025-10-13',1703,'10:54:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25665,0,0,284,'2025-10-13',1704,'10:56:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25666,0,0,284,'2025-10-13',1705,'10:56:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25667,0,0,284,'2025-10-13',2378,'23:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(25668,0,0,284,'2025-10-13',2379,'23:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(25669,0,0,284,'2025-10-13',2380,'23:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(25670,0,0,284,'2025-10-13',2381,'23:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(25671,0,0,284,'2025-10-13',2382,'23:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(25672,0,0,284,'2025-10-12',2383,'11:31:00','WPRC','WPRC0077','PC ENEMA','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25673,0,0,284,'2025-10-13',2384,'11:31:00','WPRC','WPRC0077','PC ENEMA','H',500,3.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25674,0,0,284,'2025-10-14',2385,'11:32:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25675,0,0,284,'2025-10-14',2386,'11:32:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25676,0,0,284,'2025-10-14',2387,'11:33:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25677,0,0,284,'2025-10-14',2396,'11:50:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25678,0,0,284,'2025-10-14',2397,'11:50:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25679,0,0,284,'2025-10-14',2798,'23:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(25680,0,0,284,'2025-10-15',2801,'18:00:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25681,0,0,284,'2025-10-14',2802,'18:01:00','WPRC','WPRC0077','PC ENEMA','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25682,0,0,284,'2025-10-15',2803,'18:01:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25683,0,0,284,'2025-10-15',2804,'18:05:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25684,0,0,284,'2025-10-15',2805,'18:05:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25685,0,0,284,'2025-10-15',3189,'23:00:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(25686,0,0,284,'2025-10-15',3190,'23:00:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(25687,0,0,284,'2025-10-15',3191,'23:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'411',0,'IPB',99,'Y','','',0,''),(25688,0,0,284,'2025-10-15',3192,'23:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'411',0,'IPB',99,'Y','','',0,''),(25689,0,0,284,'2025-10-15',3193,'23:00:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(25690,0,0,284,'2025-10-16',3194,'20:17:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25691,0,0,284,'2025-10-16',3195,'20:17:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25692,0,0,284,'2025-10-16',3196,'20:17:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25693,0,0,284,'2025-10-16',3197,'20:17:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25694,0,0,284,'2025-10-16',3368,'23:00:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(25695,0,0,284,'2025-10-16',3369,'23:00:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(25696,0,0,284,'2025-10-16',3370,'23:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'411',0,'IPB',99,'Y','','',0,''),(25697,0,0,284,'2025-10-16',3371,'23:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'411',0,'IPB',99,'Y','','',0,''),(25698,0,0,284,'2025-10-16',3372,'23:00:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(25699,0,0,284,'2025-10-09',3381,'14:22:00','ROOM','ROOM0009','ROOM CHARGES','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25700,0,0,284,'2025-10-09',3382,'14:22:00','AECO','AECO0008','RMO CHARGES DAY','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25701,0,0,284,'2025-10-09',3383,'14:23:00','CARE','CARE0001','NURSING CHARGES','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25702,0,0,284,'2025-10-14',3384,'23:00:00','DRC','DRC0019','CONSULTANT VISIT 2','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(25703,0,0,284,'2025-10-14',3386,'14:26:00','ROOM','ROOM0009','ROOM CHARGES','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25704,0,0,284,'2025-10-14',3387,'14:27:00','AECO','AECO0008','RMO CHARGES DAY','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25705,0,0,284,'2025-10-14',3388,'14:27:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25706,0,0,284,'2025-10-17',3393,'14:30:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25707,0,0,284,'2025-10-17',3394,'14:31:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25708,0,0,284,'2025-10-17',3395,'14:31:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25709,0,0,284,'2025-10-17',3396,'14:34:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(25710,0,0,284,'2025-10-10',3398,'14:36:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25711,0,0,284,'2025-10-11',3399,'14:36:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25712,0,0,284,'2025-10-12',3400,'14:36:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25713,0,0,284,'2025-10-13',3401,'14:36:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25714,0,0,284,'2025-10-14',3402,'14:36:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25715,0,0,284,'2025-10-11',3403,'14:45:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25716,0,0,284,'2025-10-12',3404,'14:45:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25717,0,0,284,'2025-10-13',3405,'14:46:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25718,0,0,284,'2025-10-14',3406,'14:46:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25719,0,0,284,'2025-10-13',3407,'14:46:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25720,0,0,284,'2025-10-14',3408,'14:46:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25721,0,0,284,'2025-10-17',3666,'23:00:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(25722,0,0,284,'2025-10-17',3667,'23:00:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(25723,0,0,284,'2025-10-17',3668,'23:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'411',0,'IPB',99,'Y','','',0,''),(25724,0,0,284,'2025-10-17',3669,'23:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'411',0,'IPB',99,'Y','','',0,''),(25725,0,0,284,'2025-10-17',3670,'23:00:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(25726,0,0,284,'2025-10-18',3720,'11:34:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(25959,0,0,246,'2025-10-09',1361,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(25960,0,0,246,'2025-10-10',1362,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(25961,0,0,246,'2025-10-11',1363,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(25962,0,0,246,'2025-10-09',1364,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(25963,0,0,246,'2025-10-10',1365,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(25964,0,0,246,'2025-10-11',1366,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(25965,0,0,246,'2025-10-09',1367,'18:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(25966,0,0,246,'2025-10-10',1368,'18:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(25967,0,0,246,'2025-10-11',1369,'18:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(25968,0,0,246,'2025-10-10',1371,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'209',0,'IPB',99,'Y','','',0,''),(25969,0,0,246,'2025-10-11',1372,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'209',0,'IPB',99,'Y','','',0,''),(25970,0,0,246,'2025-10-09',1373,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'209',0,'IPB',99,'Y','','',0,''),(25971,0,0,246,'2025-10-10',1374,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'209',0,'IPB',99,'Y','','',0,''),(25972,0,0,246,'2025-10-11',1375,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'209',0,'IPB',99,'Y','','',0,''),(25973,0,0,246,'2025-10-09',1376,'15:47:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',1,'Y','','',0,''),(25974,0,0,246,'2025-10-09',1377,'15:47:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25975,0,0,246,'2025-10-09',1378,'16:06:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(25976,0,0,246,'2025-10-10',1379,'16:07:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(25977,0,0,246,'2025-10-11',1380,'16:07:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,38,0,'',0,'IPB',99,'Y','','',0,''),(25978,0,0,246,'2025-10-11',1381,'16:07:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(25979,0,0,246,'2025-10-12',1382,'16:07:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(25980,0,0,246,'2025-10-11',1383,'16:08:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25981,0,0,246,'2025-10-09',1384,'16:08:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25982,0,0,246,'2025-10-10',1385,'16:08:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25983,0,0,246,'2025-10-11',1386,'16:08:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25984,0,0,246,'2025-10-11',1387,'16:08:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25985,0,0,246,'2025-10-12',1388,'16:09:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25986,0,0,246,'2025-10-11',1389,'16:09:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25987,0,0,246,'2025-10-09',1390,'16:09:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,7.00,700.00,'A',0.00,0.00,700.00,0.00,0.00,700.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25988,0,0,246,'2025-10-09',1391,'16:09:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25989,0,0,246,'2025-10-09',1392,'16:09:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25990,0,0,246,'2025-10-09',1393,'16:09:00','WPRC','WPRC0093','SDP TRANSFUSION CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25991,0,0,246,'2025-10-10',1394,'16:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25992,0,0,246,'2025-10-10',1395,'16:10:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25993,0,0,246,'2025-10-10',1396,'16:11:00','WPRC','WPRC0093','SDP TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25994,0,0,246,'2025-10-10',1397,'16:12:00','WPRC','WPRC0092','CVP (CENTRAL LINE INSERTION) CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,39,0,'',0,'IPB',99,'Y','','',0,''),(25995,0,0,246,'2025-10-11',1398,'16:12:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25996,0,0,246,'2025-10-11',1399,'16:12:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25997,0,0,246,'2025-10-11',1401,'16:18:00','WPRC','WPRC0095','RT LOWER LIMB VENOUS DOPPLER','H',2800,1.00,2800.00,'P',0.00,0.00,2800.00,0.00,0.00,2800.00,40,0,'',0,'IPB',99,'Y','','',0,''),(25998,0,0,246,'2025-10-12',1402,'16:18:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(25999,0,0,246,'2025-10-09',1403,'16:23:00','SURG','SURG0014','SURGERY CHARGE','H',15000,1.00,15000.00,'P',0.00,0.00,15000.00,0.00,0.00,15000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(26000,0,0,246,'2025-10-09',1404,'16:23:00','SURG','SURG0015','OT USAGE CHARGE','H',3750,1.00,3750.00,'P',0.00,0.00,3750.00,0.00,0.00,3750.00,3,0,'',0,'IPB',99,'Y','','',0,''),(26001,0,0,246,'2025-10-12',1560,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(26002,0,0,246,'2025-10-12',1561,'18:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(26003,0,0,246,'2025-10-12',1562,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'209',0,'IPB',99,'Y','','',0,''),(26004,0,0,246,'2025-10-12',1563,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'209',0,'IPB',99,'Y','','',0,''),(26005,0,0,246,'2025-10-12',1564,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(26006,0,0,246,'2025-10-13',1774,'12:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,12.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26007,0,0,246,'2025-10-12',1775,'12:16:00','WPRC','WPRC0093','SDP TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26008,0,0,246,'2025-10-12',1776,'12:16:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26009,0,0,246,'2025-10-13',1777,'12:16:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26010,0,0,246,'2025-10-13',1778,'12:17:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26011,0,0,246,'2025-10-13',1779,'12:17:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26012,0,0,246,'2025-10-12',1780,'12:18:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(26013,0,0,246,'2025-10-13',1781,'12:18:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(26014,0,0,246,'2025-10-13',2028,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(26015,0,0,246,'2025-10-13',2029,'18:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(26016,0,0,246,'2025-10-13',2030,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'209',0,'IPB',99,'Y','','',0,''),(26017,0,0,246,'2025-10-13',2031,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'209',0,'IPB',99,'Y','','',0,''),(26018,0,0,246,'2025-10-13',2032,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(26019,0,0,246,'2025-10-13',2365,'11:20:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26020,0,0,246,'2025-10-12',2366,'11:20:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(26021,0,0,246,'2025-10-14',2367,'11:21:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(26022,0,0,246,'2025-10-14',2368,'11:21:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26023,0,0,246,'2025-10-13',2370,'11:22:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,38,0,'',0,'IPB',99,'Y','','',0,''),(26024,0,0,246,'2025-10-14',2371,'11:23:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(26025,0,0,246,'2025-10-14',2372,'11:23:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(26026,0,0,246,'2025-10-14',2376,'11:24:00','ROOM','ROOM0004','INFUSION PUMP','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26027,0,0,246,'2025-10-15',2902,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(26028,0,0,246,'2025-10-14',2903,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (310)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'310',0,'IPB',99,'Y','','',0,''),(26029,0,0,246,'2025-10-15',2904,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(26030,0,0,246,'2025-10-14',2905,'18:00:00','CARE','CARE0001','NURSING CHARGES (310)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'310',0,'IPB',99,'Y','','',0,''),(26031,0,0,246,'2025-10-15',2906,'18:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(26032,0,0,246,'2025-10-14',2907,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (310)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'310',0,'IPB',99,'Y','','',0,''),(26033,0,0,246,'2025-10-15',2908,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'208',0,'IPB',99,'Y','','',0,''),(26034,0,0,246,'2025-10-14',2909,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (310)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'310',0,'IPB',99,'Y','','',0,''),(26035,0,0,246,'2025-10-15',2910,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'208',0,'IPB',99,'Y','','',0,''),(26036,0,0,246,'2025-10-14',2911,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (310)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'310',0,'IPB',99,'Y','','',0,''),(26037,0,0,246,'2025-10-14',2915,'19:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,12.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26038,0,0,246,'2025-10-15',2916,'19:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,7.00,700.00,'P',0.00,0.00,700.00,0.00,0.00,700.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26039,0,0,246,'2025-10-15',2917,'19:24:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26040,0,0,246,'2025-10-15',2918,'19:24:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(26041,0,0,246,'2025-10-15',2919,'19:25:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26042,0,0,246,'2025-10-15',2920,'19:29:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(26043,0,0,246,'2025-10-15',2921,'19:30:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(26044,0,0,246,'2025-10-14',2928,'19:59:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26045,0,0,246,'2025-10-15',2929,'20:00:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26046,0,0,246,'2025-10-13',2930,'20:00:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26047,0,0,246,'2025-10-15',2931,'20:01:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26048,0,0,246,'2025-10-16',3044,'12:09:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26049,0,0,246,'2025-10-16',3233,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(26050,0,0,246,'2025-10-16',3236,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'208',0,'IPB',99,'Y','','',0,''),(26051,0,0,246,'2025-10-16',3237,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'208',0,'IPB',99,'Y','','',0,''),(26052,0,0,246,'2025-10-16',3239,'18:00:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(26053,0,0,246,'2025-10-16',3240,'21:12:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(26054,0,0,246,'2025-10-16',3241,'21:13:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(26055,0,0,246,'2025-10-16',3242,'21:13:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26056,0,0,246,'2025-10-16',3243,'21:14:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,9.00,900.00,'P',0.00,0.00,900.00,0.00,0.00,900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26057,0,0,246,'2025-10-17',3495,'17:28:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26058,0,0,246,'2025-10-17',3498,'17:29:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26059,0,0,246,'2025-10-16',3499,'17:30:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26060,0,0,246,'2025-10-16',3500,'17:30:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(26061,0,0,246,'2025-10-17',3501,'17:30:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(26062,0,0,246,'2025-10-17',3502,'17:30:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(26063,0,0,246,'2025-10-17',3503,'17:31:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(26064,0,0,246,'2025-10-17',3684,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(26065,0,0,246,'2025-10-17',3685,'18:00:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(26066,0,0,246,'2025-10-17',3686,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'IPB',99,'Y','','',0,''),(26067,0,0,246,'2025-10-17',3687,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'IPB',99,'Y','','',0,''),(26068,0,0,246,'2025-10-17',3688,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(26069,0,0,246,'2025-10-16',3692,'10:50:00','CARE','CARE0006','RMO CHARGES - SEMI','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26070,0,0,246,'2025-10-14',3693,'11:00:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26071,0,0,246,'2025-10-18',3694,'11:01:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26072,0,0,246,'2025-10-18',3695,'11:05:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(26073,0,0,246,'2025-10-18',3768,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(26074,0,0,246,'2025-10-18',3776,'13:26:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(26247,0,0,936,'2025-10-15',2950,'22:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(26248,0,0,936,'2025-10-15',2951,'22:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(26249,0,0,936,'2025-10-15',2952,'22:00:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(26250,0,0,936,'2025-10-15',2953,'22:00:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(26251,0,0,936,'2025-10-15',2954,'22:00:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(26252,0,0,936,'2025-10-16',3559,'22:00:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(26253,0,0,936,'2025-10-16',3560,'22:00:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(26254,0,0,936,'2025-10-16',3561,'22:00:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(26255,0,0,936,'2025-10-16',3562,'22:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(26256,0,0,936,'2025-10-16',3563,'22:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(26257,0,0,936,'2025-10-15',3567,'18:11:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26258,0,0,936,'2025-10-15',3568,'18:11:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26259,0,0,936,'2025-10-15',3569,'18:11:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,5,0,'',0,'IPB',99,'Y','','',0,''),(26260,0,0,936,'2025-10-15',3570,'18:12:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26261,0,0,936,'2025-10-16',3571,'18:13:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26262,0,0,936,'2025-10-16',3572,'18:13:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26263,0,0,936,'2025-10-16',3573,'18:14:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26264,0,0,936,'2025-10-16',3574,'18:14:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26265,0,0,936,'2025-10-17',3575,'18:14:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26266,0,0,936,'2025-10-17',3576,'18:15:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26267,0,0,936,'2025-10-17',3577,'18:15:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26268,0,0,936,'2025-10-16',3578,'18:16:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,52,0,'',0,'IPB',99,'Y','','',0,''),(26269,0,0,936,'2025-10-17',3672,'22:00:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(26270,0,0,936,'2025-10-17',3673,'22:00:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(26271,0,0,936,'2025-10-17',3674,'22:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(26272,0,0,936,'2025-10-17',3675,'22:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(26273,0,0,936,'2025-10-17',3676,'22:00:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(26274,0,0,936,'2025-10-18',3677,'10:25:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26275,0,0,936,'2025-10-18',3780,'14:08:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26276,0,0,936,'2025-10-18',3781,'14:08:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26277,0,0,936,'2025-10-18',3782,'14:08:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26278,0,0,936,'2025-10-17',3783,'14:09:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26279,0,0,936,'2025-10-18',3784,'14:09:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26280,0,0,936,'2025-10-17',3785,'14:09:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26281,0,0,936,'2025-10-18',3786,'14:09:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26282,0,0,936,'2025-10-18',3787,'14:10:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'',0,'IPB',99,'Y','','',0,''),(26379,0,0,1140,'2025-10-17',3354,'13:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(26380,0,0,1140,'2025-10-17',3355,'13:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(26381,0,0,1140,'2025-10-17',3356,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(26382,0,0,1140,'2025-10-17',3357,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(26383,0,0,1140,'2025-10-17',3358,'13:00:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(26384,0,0,1140,'2025-10-17',3360,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'402',0,'IPB',99,'Y','','',0,''),(26385,0,0,1140,'2025-10-18',3799,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'402',0,'IPB',99,'Y','','',0,''),(26386,0,0,1140,'2025-10-17',3801,'15:57:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26387,0,0,1140,'2025-10-17',3802,'15:58:00','USG','USG0092','USG ABDOMEN CHARGE','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26388,0,0,1140,'2025-10-17',3803,'16:01:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(26504,0,0,1004,'2025-10-16',3086,'13:50:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(26505,0,0,1004,'2025-10-16',3087,'13:50:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(26506,0,0,1004,'2025-10-16',3088,'13:50:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(26507,0,0,1004,'2025-10-16',3089,'13:50:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(26508,0,0,1004,'2025-10-16',3090,'13:50:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(26509,0,0,1004,'2025-10-16',3092,'13:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'207',0,'IPB',99,'Y','','',0,''),(26510,0,0,1004,'2025-10-17',3589,'13:50:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(26511,0,0,1004,'2025-10-17',3590,'13:50:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(26512,0,0,1004,'2025-10-17',3591,'13:50:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(26513,0,0,1004,'2025-10-17',3592,'13:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'207',0,'IPB',99,'Y','','',0,''),(26514,0,0,1004,'2025-10-17',3593,'13:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'207',0,'IPB',99,'Y','','',0,''),(26515,0,0,1004,'2025-10-16',3595,'18:28:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26516,0,0,1004,'2025-10-16',3596,'18:28:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26517,0,0,1004,'2025-10-17',3597,'18:29:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26518,0,0,1004,'2025-10-16',3598,'18:29:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26519,0,0,1004,'2025-10-17',3599,'18:29:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26520,0,0,1004,'2025-10-18',3804,'13:50:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,0.50,2750.00,'A',0.00,0.00,2750.00,0.00,0.00,2750.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(26521,0,0,1004,'2025-10-18',3805,'13:50:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,0.50,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(26522,0,0,1004,'2025-10-18',3806,'13:50:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,0.50,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(26523,0,0,1004,'2025-10-18',3807,'13:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'207',0,'IPB',99,'Y','','',0,''),(26524,0,0,1004,'2025-10-18',3809,'16:06:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26525,0,0,1004,'2025-10-18',3810,'16:07:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(26526,0,0,1004,'2025-10-18',3812,'16:51:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,5,0,'',0,'IPB',99,'Y','','',0,''),(27376,0,0,1291,'2025-10-18',3852,'20:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(27377,0,0,1291,'2025-10-18',3853,'20:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(27378,0,0,1291,'2025-10-18',3859,'21:59:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'',0,'IPB',99,'Y','','',0,''),(27379,0,0,1291,'2025-10-18',3860,'21:59:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(27380,0,0,1291,'2025-10-18',3861,'21:59:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(27381,0,0,1291,'2025-10-18',3862,'22:00:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(27382,0,0,1291,'2025-10-18',3863,'22:00:00','CARE','CARE0007','DAY CARE CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(27445,0,0,1281,'2025-10-18',3814,'17:27:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(27446,0,0,1281,'2025-10-18',3815,'17:27:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(27447,0,0,1281,'2025-10-18',3816,'17:27:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(27448,0,0,1281,'2025-10-18',3817,'17:27:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(27449,0,0,1281,'2025-10-18',3818,'17:27:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(27450,0,0,1281,'2025-10-19',3819,'17:27:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,6,0,'402',0,'IPB',99,'Y','','',0,''),(27451,0,0,1281,'2025-10-18',3820,'17:27:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,6,0,'402',0,'IPB',99,'Y','','',0,''),(27452,0,0,1281,'2025-10-19',3878,'11:00:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,6,0,'',0,'IPB',99,'Y','','',0,''),(27453,0,0,1281,'2025-10-18',3879,'11:01:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(27454,0,0,1281,'2025-10-18',3880,'11:01:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(27455,0,0,1281,'2025-10-19',3881,'11:15:00','WPRC','WPRC0099','X-RAY LT WRIST AP LAT','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(27456,0,0,1281,'2025-10-19',3882,'11:20:00','SURG','SURG0014','SURGERY CHARGE','H',13500,1.00,13500.00,'P',0.00,0.00,13500.00,0.00,0.00,13500.00,6,0,'',0,'IPB',99,'Y','','',0,''),(27457,0,0,1281,'2025-10-18',3883,'11:20:00','SURG','SURG0015','OT USAGE CHARGE','H',4400,1.00,4400.00,'P',0.00,0.00,4400.00,0.00,0.00,4400.00,6,0,'',0,'IPB',99,'Y','','',0,''),(27542,0,0,1279,'2025-10-18',3789,'15:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(27543,0,0,1279,'2025-10-18',3790,'15:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(27544,0,0,1279,'2025-10-18',3791,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(27545,0,0,1279,'2025-10-18',3792,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(27546,0,0,1279,'2025-10-18',3793,'15:00:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(27547,0,0,1279,'2025-10-18',3795,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'IPB',99,'Y','','',0,''),(27548,0,0,1279,'2025-10-18',3898,'11:44:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(27549,0,0,1279,'2025-10-19',3899,'11:44:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(27550,0,0,1279,'2025-10-18',3900,'11:45:00','SURG','SURG0014','SURGERY CHARGE','H',38800,1.00,38800.00,'P',0.00,0.00,38800.00,0.00,0.00,38800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(27551,0,0,1279,'2025-10-18',3901,'11:45:00','SURG','SURG0015','OT USAGE CHARGE','H',13000,1.00,13000.00,'P',0.00,0.00,13000.00,0.00,0.00,13000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(27588,0,0,1266,'2025-10-18',3747,'12:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(27589,0,0,1266,'2025-10-18',3748,'12:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(27590,0,0,1266,'2025-10-18',3753,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (311)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'311',0,'IPB',99,'Y','','',0,''),(27591,0,0,1266,'2025-10-18',3842,'18:13:00','CARE','CARE0007','DAY CARE CHARGE','H',2500,1.00,2500.00,'P',0.00,0.00,2500.00,0.00,0.00,2500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(27592,0,0,1266,'2025-10-18',3843,'18:14:00','SURG','SURG0015','OT USAGE CHARGE','H',900,1.00,900.00,'P',0.00,0.00,900.00,0.00,0.00,900.00,3,0,'',0,'IPB',99,'Y','','',0,''),(27593,0,0,1266,'2025-10-18',3844,'18:15:00','SURG','SURG0014','SURGERY CHARGE','H',2660,1.00,2660.00,'P',0.00,0.00,2660.00,0.00,0.00,2660.00,3,0,'',0,'IPB',99,'Y','','',0,''),(29266,0,0,1220,'2025-10-18',3650,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(29267,0,0,1220,'2025-10-18',3651,'09:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(29268,0,0,1220,'2025-10-18',3655,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,70,0,'409',0,'IPB',99,'Y','','',0,''),(29269,0,0,1220,'2025-10-19',3884,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(29270,0,0,1220,'2025-10-19',3885,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(29271,0,0,1220,'2025-10-19',3886,'09:30:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(29272,0,0,1220,'2025-10-19',3887,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,70,0,'409',0,'IPB',99,'Y','','',0,''),(29273,0,0,1220,'2025-10-18',3889,'11:31:00','ROOM','ROOM0001','BED CHARGES ICU','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(29274,0,0,1220,'2025-10-18',3890,'11:31:00','CARE','CARE0004','RMO CHARGES - ICU','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(29275,0,0,1220,'2025-10-18',3891,'11:31:00','CARE','CARE0003','NURSING CHARGES - ICU','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(29276,0,0,1220,'2025-10-18',3892,'11:32:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(29277,0,0,1220,'2025-10-18',3893,'11:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(29278,0,0,1220,'2025-10-18',3894,'11:33:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,70,0,'',0,'IPB',99,'Y','','',0,''),(29279,0,0,1220,'2025-10-19',3895,'11:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(29280,0,0,1220,'2025-10-18',3896,'11:34:00','WPRC','WPRC0086','OXYGEN CHARGE','H',200,4.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(29281,0,0,1220,'2025-10-18',3897,'11:34:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(29282,0,0,1220,'2025-10-20',3986,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,70,0,'409',0,'IPB',99,'Y','','',0,''),(29283,0,0,1220,'2025-10-20',3988,'11:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(29284,0,0,1220,'2025-10-18',3989,'11:27:00','SURG','SURG0017','ASSISTANT SURGEON CHARGE','H',30000,1.00,30000.00,'P',0.00,0.00,30000.00,0.00,0.00,30000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(29285,0,0,1220,'2025-10-18',3990,'11:28:00','SURG','SURG0015','OT USAGE CHARGE','H',15000,1.00,15000.00,'P',0.00,0.00,15000.00,0.00,0.00,15000.00,70,0,'',0,'IPB',99,'Y','','',0,''),(29286,0,0,1220,'2025-10-18',3999,'11:50:00','SURG','SURG0014','SURGERY CHARGE','H',30000,1.00,30000.00,'P',0.00,0.00,30000.00,0.00,0.00,30000.00,70,0,'',0,'IPB',99,'Y','','',0,''),(29468,0,0,939,'2025-10-15',2964,'10:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(29469,0,0,939,'2025-10-15',2965,'10:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(29470,0,0,939,'2025-10-15',2966,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(29471,0,0,939,'2025-10-15',2967,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(29472,0,0,939,'2025-10-15',2968,'10:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(29473,0,0,939,'2025-10-16',3525,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(29474,0,0,939,'2025-10-17',3526,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(29475,0,0,939,'2025-10-16',3527,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(29476,0,0,939,'2025-10-17',3528,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(29477,0,0,939,'2025-10-16',3529,'10:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(29478,0,0,939,'2025-10-17',3530,'10:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(29479,0,0,939,'2025-10-16',3531,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(29480,0,0,939,'2025-10-17',3532,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(29481,0,0,939,'2025-10-16',3533,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(29482,0,0,939,'2025-10-17',3534,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(29483,0,0,939,'2025-10-17',3549,'17:57:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(29484,0,0,939,'2025-10-16',3553,'18:04:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'',0,'IPB',99,'Y','','',0,''),(29485,0,0,939,'2025-10-17',3554,'18:05:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'',0,'IPB',99,'Y','','',0,''),(29486,0,0,939,'2025-10-18',3661,'10:11:00','XRY','XRY0045','X RAY CHARGES','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(29487,0,0,939,'2025-10-18',3914,'22:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(29488,0,0,939,'2025-10-18',3915,'22:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(29489,0,0,939,'2025-10-18',3916,'22:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(29490,0,0,939,'2025-10-18',3917,'22:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(29491,0,0,939,'2025-10-18',3956,'18:30:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'',0,'IPB',99,'Y','','',0,''),(29492,0,0,939,'2025-10-18',3957,'18:30:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,8,0,'',0,'IPB',99,'Y','','',0,''),(29493,0,0,939,'2025-10-16',3958,'18:31:00','WPRC','WPRC0100','LUMBAR PUNCTURE','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(29494,0,0,939,'2025-10-18',3959,'18:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(29495,0,0,939,'2025-10-19',3960,'18:34:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(29496,0,0,939,'2025-10-19',3991,'22:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(29497,0,0,939,'2025-10-19',3992,'22:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(29498,0,0,939,'2025-10-19',3993,'22:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(29499,0,0,939,'2025-10-19',3994,'22:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(29500,0,0,939,'2025-10-19',3995,'22:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(29501,0,0,939,'2025-10-20',3996,'11:34:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(29502,0,0,939,'2025-10-20',3997,'11:34:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(29503,0,0,939,'2025-10-19',3998,'11:35:00','WPRC','WPRC0102','ICU OBSERVATION CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(31388,0,0,1295,'2025-10-20',4058,'05:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(31389,0,0,1295,'2025-10-20',4059,'05:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(31390,0,0,1295,'2025-10-20',4060,'05:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(31391,0,0,1295,'2025-10-20',4061,'05:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(31392,0,0,1295,'2025-10-20',4062,'05:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(31393,0,0,1295,'2025-10-21',4123,'05:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'405',0,'IPB',99,'Y','','',0,''),(31394,0,0,1295,'2025-10-20',4132,'15:11:00','AECO','ROOM0007','EMERGENCY CONSULTANT\'S CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(31395,0,0,1295,'2025-10-20',4133,'15:12:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(31396,0,0,1295,'2025-10-21',4134,'15:12:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32316,0,0,1213,'2025-10-17',3628,'20:50:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(32317,0,0,1213,'2025-10-17',3629,'20:50:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(32318,0,0,1213,'2025-10-17',3630,'20:50:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(32319,0,0,1213,'2025-10-17',3631,'20:50:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(32320,0,0,1213,'2025-10-17',3632,'20:50:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(32321,0,0,1213,'2025-10-18',3939,'20:50:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(32322,0,0,1213,'2025-10-18',3940,'20:50:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(32323,0,0,1213,'2025-10-18',3941,'20:50:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(32324,0,0,1213,'2025-10-19',3942,'20:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(32325,0,0,1213,'2025-10-19',3943,'20:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(32326,0,0,1213,'2025-10-17',3944,'18:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32327,0,0,1213,'2025-10-18',3945,'18:12:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,8,0,'',0,'IPB',99,'Y','','',0,''),(32328,0,0,1213,'2025-10-18',3946,'20:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(32329,0,0,1213,'2025-10-19',4011,'20:50:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(32330,0,0,1213,'2025-10-19',4012,'20:50:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(32331,0,0,1213,'2025-10-19',4013,'20:50:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(32332,0,0,1213,'2025-10-20',4104,'20:50:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(32333,0,0,1213,'2025-10-20',4105,'20:50:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(32334,0,0,1213,'2025-10-20',4106,'20:50:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(32335,0,0,1213,'2025-10-20',4107,'20:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(32336,0,0,1213,'2025-10-20',4108,'20:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(32337,0,0,1213,'2025-10-21',4156,'20:50:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(32338,0,0,1213,'2025-10-21',4157,'20:50:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(32339,0,0,1213,'2025-10-21',4158,'20:50:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(32340,0,0,1213,'2025-10-21',4159,'20:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(32341,0,0,1213,'2025-10-21',4160,'20:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(32342,0,0,1213,'2025-10-17',4161,'13:04:00','AECO','ROOM0007','EMERGENCY CONSULTANT\'S CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(32343,0,0,1213,'2025-10-22',4162,'13:10:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'',0,'IPB',99,'Y','','',0,''),(32927,0,0,1292,'2025-10-19',3864,'02:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(32928,0,0,1292,'2025-10-19',3865,'02:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(32929,0,0,1292,'2025-10-19',3866,'02:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(32930,0,0,1292,'2025-10-19',3867,'02:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(32931,0,0,1292,'2025-10-19',3868,'02:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(32932,0,0,1292,'2025-10-19',3869,'02:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,78,0,'207',0,'IPB',99,'Y','','',0,''),(32933,0,0,1292,'2025-10-19',3870,'02:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(32934,0,0,1292,'2025-10-19',3902,'11:48:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32935,0,0,1292,'2025-10-20',4014,'02:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(32936,0,0,1292,'2025-10-20',4015,'02:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(32937,0,0,1292,'2025-10-20',4016,'02:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(32938,0,0,1292,'2025-10-20',4017,'02:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(32939,0,0,1292,'2025-10-20',4018,'02:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(32940,0,0,1292,'2025-10-19',4024,'14:25:00','WPRC','WPRC0103','TLC CATHETER CHARGE','H',5000,1.00,5000.00,'A',0.00,0.00,5000.00,0.00,0.00,5000.00,78,0,'',0,'IPB',99,'Y','','',0,''),(32941,0,0,1292,'2025-10-19',4025,'14:25:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,5.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32942,0,0,1292,'2025-10-19',4026,'14:26:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32943,0,0,1292,'2025-10-19',4027,'14:26:00','WPRC','WPRC0104','HEMODIALYSIS CHARGE','H',6000,1.00,6000.00,'A',0.00,0.00,6000.00,0.00,0.00,6000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32944,0,0,1292,'2025-10-20',4028,'14:27:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,7.00,700.00,'A',0.00,0.00,700.00,0.00,0.00,700.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32945,0,0,1292,'2025-10-19',4029,'14:27:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32946,0,0,1292,'2025-10-20',4030,'14:27:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32947,0,0,1292,'2025-10-19',4031,'14:28:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32948,0,0,1292,'2025-10-20',4032,'14:28:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32949,0,0,1292,'2025-10-21',4093,'02:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,0.50,2750.00,'P',0.00,0.00,2750.00,0.00,0.00,2750.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(32950,0,0,1292,'2025-10-21',4094,'02:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,0.50,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(32951,0,0,1292,'2025-10-21',4095,'02:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,0.50,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(32952,0,0,1292,'2025-10-21',4096,'02:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(32953,0,0,1292,'2025-10-21',4098,'12:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32954,0,0,1292,'2025-10-21',4099,'12:56:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32955,0,0,1292,'2025-10-21',4100,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(32956,0,0,1292,'2025-10-21',4101,'13:01:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,0.50,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32957,0,0,1292,'2025-10-21',4102,'13:02:00','CARE','CARE0005','RMO CHARGE - SPECIAL','H',400,0.50,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32958,0,0,1292,'2025-10-21',4103,'13:02:00','CARE','CARE0001','NURSING CHARGES','H',200,0.50,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32959,0,0,1292,'2025-10-22',4164,'02:30:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(32960,0,0,1292,'2025-10-23',4165,'02:30:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,0.50,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(32961,0,0,1292,'2025-10-22',4166,'02:30:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(32962,0,0,1292,'2025-10-23',4167,'02:30:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,0.50,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(32963,0,0,1292,'2025-10-22',4168,'02:30:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(32964,0,0,1292,'2025-10-23',4169,'02:30:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,0.50,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(32965,0,0,1292,'2025-10-22',4170,'02:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'406',0,'IPB',99,'Y','','',0,''),(32966,0,0,1292,'2025-10-22',4172,'02:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,8,0,'406',0,'IPB',99,'Y','','',0,''),(32967,0,0,1292,'2025-10-22',4174,'08:20:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32968,0,0,1292,'2025-10-23',4175,'08:21:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32969,0,0,1292,'2025-10-23',4176,'08:21:00','WPRC','WPRC0104','HEMODIALYSIS CHARGE','H',6000,1.00,6000.00,'P',0.00,0.00,6000.00,0.00,0.00,6000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32970,0,0,1292,'2025-10-20',4177,'08:21:00','WPRC','WPRC0104','HEMODIALYSIS CHARGE','H',6000,1.00,6000.00,'P',0.00,0.00,6000.00,0.00,0.00,6000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32971,0,0,1292,'2025-10-21',4178,'08:22:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32972,0,0,1292,'2025-10-22',4179,'08:23:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32973,0,0,1292,'2025-10-22',4180,'08:24:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32974,0,0,1292,'2025-10-19',4181,'08:28:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32975,0,0,1292,'2025-10-20',4182,'08:28:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32976,0,0,1292,'2025-10-21',4183,'08:28:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(32996,0,0,62,'2025-10-06',74,'12:15:00','REG','REG0001','ADMISSION CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'',0,'ER',1,'Y','N','',0,''),(32997,0,0,62,'2025-10-06',4252,'12:15:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,0,0,'408',0,'IPB',99,'Y','N','',0,''),(32998,0,0,62,'2025-10-07',4253,'12:15:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,0,0,'408',0,'IPB',99,'Y','N','',0,''),(32999,0,0,62,'2025-10-08',4254,'12:15:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,0,0,'408',0,'IPB',99,'Y','N','',0,''),(33000,0,0,62,'2025-10-09',4255,'12:15:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,0,0,'408',0,'IPB',99,'Y','N','',0,''),(33001,0,0,62,'2025-10-06',4256,'12:15:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,0,0,'408',0,'IPB',99,'Y','N','',0,''),(33002,0,0,62,'2025-10-07',4257,'12:15:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,0,0,'408',0,'IPB',99,'Y','N','',0,''),(33003,0,0,62,'2025-10-08',4258,'12:15:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,0,0,'408',0,'IPB',99,'Y','N','',0,''),(33004,0,0,62,'2025-10-09',4259,'12:15:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,0,0,'408',0,'IPB',99,'Y','N','',0,''),(33005,0,0,62,'2025-10-06',4260,'12:15:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'408',0,'IPB',99,'Y','N','',0,''),(33006,0,0,62,'2025-10-07',4261,'12:15:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'408',0,'IPB',99,'Y','N','',0,''),(33007,0,0,62,'2025-10-08',4262,'12:15:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'408',0,'IPB',99,'Y','N','',0,''),(33008,0,0,62,'2025-10-09',4263,'12:15:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'408',0,'IPB',99,'Y','N','',0,''),(33009,0,0,62,'2025-10-06',4264,'12:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','N','',0,''),(33010,0,0,62,'2025-10-07',4265,'12:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','N','',0,''),(33011,0,0,62,'2025-10-08',4266,'12:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','N','',0,''),(33012,0,0,62,'2025-10-09',4267,'12:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','N','',0,''),(33013,0,0,62,'2025-10-06',4268,'12:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','N','',0,''),(33014,0,0,62,'2025-10-07',4269,'12:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','N','',0,''),(33015,0,0,62,'2025-10-08',4270,'12:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','N','',0,''),(33016,0,0,62,'2025-10-09',4271,'12:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','N','',0,''),(33044,0,0,37,'2025-10-07',40,'13:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(33045,0,0,37,'2025-10-07',4318,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(33046,0,0,37,'2025-10-07',4319,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(33047,0,0,37,'2025-10-07',4320,'13:00:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(33048,0,0,37,'2025-10-08',4321,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(33049,0,0,37,'2025-10-07',4322,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(33050,0,0,37,'2025-10-07',4323,'12:53:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(33051,0,0,37,'2025-10-07',4324,'12:53:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'P',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(34981,0,0,1294,'2025-10-20',3976,'08:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(34982,0,0,1294,'2025-10-20',3977,'08:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(34983,0,0,1294,'2025-10-20',3978,'08:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(34984,0,0,1294,'2025-10-20',3979,'08:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(34985,0,0,1294,'2025-10-20',3980,'08:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(34986,0,0,1294,'2025-10-20',3981,'08:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(34987,0,0,1294,'2025-10-20',3982,'08:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(34988,0,0,1294,'2025-10-21',4068,'08:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(34989,0,0,1294,'2025-10-20',4070,'12:39:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',400,4.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(34990,0,0,1294,'2025-10-20',4071,'12:39:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(34991,0,0,1294,'2025-10-20',4072,'12:40:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(34992,0,0,1294,'2025-10-20',4073,'12:40:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(34993,0,0,1294,'2025-10-21',4074,'12:40:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(34994,0,0,1294,'2025-10-20',4075,'12:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,9.00,900.00,'A',0.00,0.00,900.00,0.00,0.00,900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(34995,0,0,1294,'2025-10-20',4076,'12:40:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(34996,0,0,1294,'2025-10-20',4077,'12:40:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(34997,0,0,1294,'2025-10-21',4078,'12:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(34998,0,0,1294,'2025-10-21',4079,'12:42:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(34999,0,0,1294,'2025-10-21',4080,'12:42:00','AECO','AECO0008','RMO CHARGES DAY','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(35000,0,0,1294,'2025-10-21',4081,'12:42:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(35001,0,0,1294,'2025-10-21',4082,'12:42:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(35002,0,0,1294,'2025-10-22',4425,'08:00:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(35003,0,0,1294,'2025-10-23',4426,'08:00:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(35004,0,0,1294,'2025-10-22',4427,'08:00:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(35005,0,0,1294,'2025-10-23',4428,'08:00:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(35006,0,0,1294,'2025-10-22',4429,'08:00:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(35007,0,0,1294,'2025-10-23',4430,'08:00:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(35008,0,0,1294,'2025-10-22',4431,'08:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'408',0,'IPB',99,'Y','','',0,''),(35009,0,0,1294,'2025-10-23',4432,'08:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'408',0,'IPB',99,'Y','','',0,''),(35010,0,0,1294,'2025-10-22',4433,'08:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'408',0,'IPB',99,'Y','','',0,''),(35011,0,0,1294,'2025-10-23',4434,'08:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'408',0,'IPB',99,'Y','','',0,''),(35012,0,0,1294,'2025-10-22',4468,'18:07:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(35013,0,0,1294,'2025-10-23',4469,'18:07:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(35014,0,0,1294,'2025-10-22',4470,'18:08:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(35015,0,0,1294,'2025-10-23',4471,'18:08:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(35016,0,0,1294,'2025-10-21',4525,'19:45:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(35017,0,0,1294,'2025-10-20',4526,'19:49:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(35018,0,0,1294,'2025-10-20',4527,'19:50:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(35062,0,0,1339,'2025-10-23',4350,'13:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(35063,0,0,1339,'2025-10-23',4351,'13:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(35064,0,0,1339,'2025-10-23',4352,'13:15:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(35065,0,0,1339,'2025-10-23',4353,'13:15:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(35066,0,0,1339,'2025-10-23',4354,'13:15:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(35067,0,0,1339,'2025-10-24',4355,'13:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(35068,0,0,1339,'2025-10-23',4356,'13:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(35069,0,0,1339,'2025-10-23',4571,'11:31:00','SURG','SURG0014','SURGERY CHARGE','H',11000,1.00,11000.00,'P',0.00,0.00,11000.00,0.00,0.00,11000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(35070,0,0,1339,'2025-10-23',4572,'11:32:00','SURG','SURG0015','OT USAGE CHARGE','H',3500,1.00,3500.00,'P',0.00,0.00,3500.00,0.00,0.00,3500.00,3,0,'',0,'IPB',99,'Y','','',0,''),(36088,0,0,1362,'2025-10-23',4517,'19:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(36089,0,0,1362,'2025-10-23',4518,'19:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(36090,0,0,1362,'2025-10-23',4519,'19:15:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(36091,0,0,1362,'2025-10-23',4520,'19:15:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(36092,0,0,1362,'2025-10-23',4521,'19:15:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(36093,0,0,1362,'2025-10-24',4522,'19:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,70,0,'406',0,'IPB',99,'Y','','',0,''),(36094,0,0,1362,'2025-10-24',4742,'19:15:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(36095,0,0,1362,'2025-10-24',4743,'19:15:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(36096,0,0,1362,'2025-10-24',4744,'19:15:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(36097,0,0,1362,'2025-10-25',4745,'19:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,70,0,'408',0,'IPB',99,'Y','','',0,''),(36098,0,0,1362,'2025-10-23',4752,'10:19:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(36099,0,0,1362,'2025-10-23',4753,'10:19:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(36100,0,0,1362,'2025-10-24',4754,'10:19:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(36101,0,0,1362,'2025-10-24',4755,'10:19:00','XRY','XRY0045','X RAY CHARGES','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(36102,0,0,1362,'2025-10-24',4756,'10:28:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(36103,0,0,1362,'2025-10-24',4757,'10:28:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(36104,0,0,1362,'2025-10-25',4758,'10:29:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(36934,0,0,1405,'2025-10-24',4606,'14:47:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(36935,0,0,1405,'2025-10-24',4607,'14:47:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(36936,0,0,1405,'2025-10-24',4629,'17:53:00','ROOM','ROOM0006','CONSULTANT VISIT 2 - SPECIAL','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(36937,0,0,1405,'2025-10-24',4709,'23:10:00','DRC','DRC0021','EMERGENCY CONSULTANT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(36938,0,0,1405,'2025-10-24',4710,'23:11:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,84,0,'',0,'IPB',99,'Y','','',0,''),(36939,0,0,1405,'2025-10-25',4833,'12:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(36940,0,0,1405,'2025-10-25',4834,'12:33:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(36941,0,0,1405,'2025-10-25',4839,'12:40:00','CARE','CARE0008','COLOSTOMY CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(36942,0,0,1405,'2025-10-25',4840,'12:41:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(36943,0,0,1405,'2025-10-24',4843,'12:46:00','ROOM','ROOM0003','BED CHARGES - SPECIAL ROOM','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(36944,0,0,1405,'2025-10-24',4844,'12:46:00','CARE','CARE0005','RMO CHARGE - SPECIAL','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(36945,0,0,1405,'2025-10-24',4845,'12:47:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(37356,0,0,1296,'2025-10-21',4125,'13:45:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(37357,0,0,1296,'2025-10-21',4126,'13:45:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(37358,0,0,1296,'2025-10-21',4127,'13:45:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(37359,0,0,1296,'2025-10-21',4128,'13:45:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(37360,0,0,1296,'2025-10-21',4129,'13:45:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(37361,0,0,1296,'2025-10-21',4131,'13:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(37362,0,0,1296,'2025-10-22',4192,'13:45:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(37363,0,0,1296,'2025-10-22',4193,'13:45:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(37364,0,0,1296,'2025-10-22',4194,'13:45:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(37365,0,0,1296,'2025-10-22',4195,'13:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'304',0,'IPB',99,'Y','','',0,''),(37366,0,0,1296,'2025-10-22',4196,'13:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'304',0,'IPB',99,'Y','','',0,''),(37367,0,0,1296,'2025-10-23',4435,'13:45:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(37368,0,0,1296,'2025-10-23',4436,'13:45:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(37369,0,0,1296,'2025-10-23',4437,'13:45:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(37370,0,0,1296,'2025-10-23',4438,'13:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'407',0,'IPB',99,'Y','','',0,''),(37371,0,0,1296,'2025-10-23',4439,'13:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'407',0,'IPB',99,'Y','','',0,''),(37372,0,0,1296,'2025-10-21',4450,'17:57:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(37373,0,0,1296,'2025-10-22',4451,'17:57:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(37374,0,0,1296,'2025-10-23',4452,'17:57:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(37375,0,0,1296,'2025-10-24',4848,'13:45:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(37376,0,0,1296,'2025-10-24',4849,'13:45:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(37377,0,0,1296,'2025-10-24',4850,'13:45:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(37378,0,0,1296,'2025-10-24',4851,'13:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'407',0,'IPB',99,'Y','','',0,''),(37379,0,0,1296,'2025-10-24',4852,'13:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'407',0,'IPB',99,'Y','','',0,''),(37380,0,0,1296,'2025-10-24',4855,'13:01:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(37381,0,0,1296,'2025-10-25',4856,'13:02:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(37382,0,0,1296,'2025-10-21',4857,'13:03:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(37383,0,0,1296,'2025-10-25',4858,'13:08:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'',0,'IPB',99,'Y','','',0,''),(39788,0,0,489,'2025-10-11',948,'17:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'P',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(39789,0,0,489,'2025-10-11',949,'17:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'P',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(39790,0,0,489,'2025-10-11',964,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (213)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39791,0,0,489,'2025-10-11',965,'17:00:00','CARE','CARE0001','NURSING CHARGES (213)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39792,0,0,489,'2025-10-11',968,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (213)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39793,0,0,489,'2025-10-11',1150,'12:33:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,36,0,'',0,'IPB',99,'Y','','',0,''),(39794,0,0,489,'2025-10-11',1151,'12:34:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,7,0,'',0,'IPB',99,'Y','','',0,''),(39795,0,0,489,'2025-10-11',1152,'12:42:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39796,0,0,489,'2025-10-12',1153,'12:43:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39797,0,0,489,'2025-10-11',1154,'12:43:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39798,0,0,489,'2025-10-12',1155,'12:43:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39799,0,0,489,'2025-10-11',1156,'12:43:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39800,0,0,489,'2025-10-12',1157,'12:43:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39801,0,0,489,'2025-10-11',1158,'12:44:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39802,0,0,489,'2025-10-11',1159,'12:44:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39803,0,0,489,'2025-10-11',1160,'12:44:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39804,0,0,489,'2025-10-11',1161,'12:44:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39805,0,0,489,'2025-10-11',1162,'12:44:00','WPRC','WPRC0088','ENDOTRACHEAL INTUBATION','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,39,0,'',0,'IPB',99,'Y','','',0,''),(39806,0,0,489,'2025-10-12',1163,'12:44:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39807,0,0,489,'2025-10-12',1534,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (213)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39808,0,0,489,'2025-10-12',1535,'17:00:00','CARE','CARE0001','NURSING CHARGES (213)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39809,0,0,489,'2025-10-12',1536,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39810,0,0,489,'2025-10-12',1537,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39811,0,0,489,'2025-10-12',1538,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (213)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39812,0,0,489,'2025-10-13',1692,'10:38:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39813,0,0,489,'2025-10-13',1693,'10:38:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39814,0,0,489,'2025-10-13',1694,'10:39:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39815,0,0,489,'2025-10-13',1695,'10:39:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39816,0,0,489,'2025-10-13',2019,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (213)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39817,0,0,489,'2025-10-13',2020,'17:00:00','CARE','CARE0001','NURSING CHARGES (213)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39818,0,0,489,'2025-10-13',2021,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39819,0,0,489,'2025-10-13',2022,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39820,0,0,489,'2025-10-13',2023,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (213)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39821,0,0,489,'2025-10-14',2480,'14:38:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39822,0,0,489,'2025-10-14',2481,'14:38:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39823,0,0,489,'2025-10-15',2869,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (213)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39824,0,0,489,'2025-10-14',2870,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (213)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39825,0,0,489,'2025-10-15',2871,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (213)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39826,0,0,489,'2025-10-14',2872,'17:00:00','CARE','CARE0001','NURSING CHARGES (213)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39827,0,0,489,'2025-10-15',2873,'17:00:00','CARE','CARE0001','NURSING CHARGES (213)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39828,0,0,489,'2025-10-14',2874,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39829,0,0,489,'2025-10-15',2875,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39830,0,0,489,'2025-10-14',2876,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39831,0,0,489,'2025-10-15',2877,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39832,0,0,489,'2025-10-14',2878,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (213)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39833,0,0,489,'2025-10-15',2892,'19:06:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39834,0,0,489,'2025-10-15',2893,'19:07:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39835,0,0,489,'2025-10-14',2894,'19:12:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39836,0,0,489,'2025-10-15',2896,'19:13:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39837,0,0,489,'2025-10-16',3221,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (213)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39838,0,0,489,'2025-10-16',3222,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (213)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39839,0,0,489,'2025-10-16',3223,'17:00:00','CARE','CARE0001','NURSING CHARGES (213)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39840,0,0,489,'2025-10-16',3224,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39841,0,0,489,'2025-10-16',3225,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39842,0,0,489,'2025-10-16',3226,'20:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39843,0,0,489,'2025-10-16',3227,'20:55:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39844,0,0,489,'2025-10-14',3228,'20:56:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39845,0,0,489,'2025-10-15',3229,'20:56:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39846,0,0,489,'2025-10-16',3230,'20:56:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39847,0,0,489,'2025-10-16',3231,'20:57:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39848,0,0,489,'2025-10-14',3232,'20:57:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39849,0,0,489,'2025-10-17',3536,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (213)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39850,0,0,489,'2025-10-17',3537,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (213)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39851,0,0,489,'2025-10-17',3538,'17:00:00','CARE','CARE0001','NURSING CHARGES (213)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39852,0,0,489,'2025-10-17',3539,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39853,0,0,489,'2025-10-17',3540,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39854,0,0,489,'2025-10-13',3541,'17:59:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(39855,0,0,489,'2025-10-17',3545,'18:00:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39856,0,0,489,'2025-10-17',3546,'18:01:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39857,0,0,489,'2025-10-17',3547,'18:01:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39858,0,0,489,'2025-10-17',3548,'18:01:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39859,0,0,489,'2025-10-18',3823,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (213)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39860,0,0,489,'2025-10-18',3824,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (213)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39861,0,0,489,'2025-10-18',3825,'17:00:00','CARE','CARE0001','NURSING CHARGES (213)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39862,0,0,489,'2025-10-18',3826,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39863,0,0,489,'2025-10-18',3828,'17:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39864,0,0,489,'2025-10-18',3829,'17:55:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39865,0,0,489,'2025-10-18',3830,'17:55:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39866,0,0,489,'2025-10-18',3831,'17:56:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39867,0,0,489,'2025-10-17',3832,'17:56:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39868,0,0,489,'2025-10-19',3909,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (213)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39869,0,0,489,'2025-10-19',3910,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (213)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39870,0,0,489,'2025-10-19',3911,'17:00:00','CARE','CARE0001','NURSING CHARGES (213)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39871,0,0,489,'2025-10-19',3912,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39872,0,0,489,'2025-10-19',3913,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39873,0,0,489,'2025-10-19',3971,'18:43:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39874,0,0,489,'2025-10-19',3972,'18:45:00','WPRC','WPRC0089','NEB CHARGE','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39875,0,0,489,'2025-10-19',3973,'18:45:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39876,0,0,489,'2025-10-19',3974,'18:45:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39877,0,0,489,'2025-10-18',3975,'18:45:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,8,0,'',0,'IPB',99,'Y','','',0,''),(39878,0,0,489,'2025-10-20',4045,'14:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39879,0,0,489,'2025-10-20',4046,'14:40:00','WPRC','WPRC0089','NEB CHARGE','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39880,0,0,489,'2025-10-21',4047,'14:40:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39881,0,0,489,'2025-10-20',4048,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (213)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39882,0,0,489,'2025-10-20',4049,'17:00:00','CARE','CARE0001','NURSING CHARGES (213)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39883,0,0,489,'2025-10-20',4050,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39884,0,0,489,'2025-10-20',4051,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39885,0,0,489,'2025-10-20',4052,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (213)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39886,0,0,489,'2025-10-21',4110,'13:27:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39887,0,0,489,'2025-10-21',4111,'13:28:00','WPRC','WPRC0089','NEB CHARGE','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39888,0,0,489,'2025-10-22',4112,'13:28:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39889,0,0,489,'2025-10-20',4113,'13:28:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39890,0,0,489,'2025-10-21',4114,'13:28:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39891,0,0,489,'2025-10-21',4135,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (213)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39892,0,0,489,'2025-10-21',4136,'17:00:00','CARE','CARE0001','NURSING CHARGES (213)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39893,0,0,489,'2025-10-21',4137,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39894,0,0,489,'2025-10-21',4138,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(39895,0,0,489,'2025-10-21',4139,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (213)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(39896,0,0,489,'2025-10-22',4395,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(39897,0,0,489,'2025-10-23',4396,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(39898,0,0,489,'2025-10-22',4397,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(39899,0,0,489,'2025-10-23',4398,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(39900,0,0,489,'2025-10-22',4399,'17:00:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(39901,0,0,489,'2025-10-23',4400,'17:00:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(39902,0,0,489,'2025-10-22',4401,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'402',0,'IPB',99,'Y','','',0,''),(39903,0,0,489,'2025-10-23',4402,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'402',0,'IPB',99,'Y','','',0,''),(39904,0,0,489,'2025-10-22',4403,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'402',0,'IPB',99,'Y','','',0,''),(39905,0,0,489,'2025-10-23',4404,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'402',0,'IPB',99,'Y','','',0,''),(39906,0,0,489,'2025-10-22',4457,'18:01:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39907,0,0,489,'2025-10-23',4458,'18:01:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39908,0,0,489,'2025-10-22',4459,'18:02:00','WPRC','WPRC0089','NEB CHARGE','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39909,0,0,489,'2025-10-23',4460,'18:02:00','WPRC','WPRC0089','NEB CHARGE','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39910,0,0,489,'2025-10-22',4461,'18:03:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39911,0,0,489,'2025-10-23',4462,'18:03:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39912,0,0,489,'2025-10-24',4896,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(39913,0,0,489,'2025-10-24',4897,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(39914,0,0,489,'2025-10-24',4898,'17:00:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(39915,0,0,489,'2025-10-24',4899,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'402',0,'IPB',99,'Y','','',0,''),(39916,0,0,489,'2025-10-24',4900,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'402',0,'IPB',99,'Y','','',0,''),(39917,0,0,489,'2025-10-24',4901,'14:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39918,0,0,489,'2025-10-25',4902,'14:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39919,0,0,489,'2025-10-24',4903,'14:40:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39920,0,0,489,'2025-10-25',4904,'14:41:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39921,0,0,489,'2025-10-25',4905,'14:41:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39922,0,0,489,'2025-10-23',4906,'14:42:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39923,0,0,489,'2025-10-24',4907,'14:42:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39924,0,0,489,'2025-10-25',4915,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(39925,0,0,489,'2025-10-25',4916,'17:00:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(39926,0,0,489,'2025-10-25',4917,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'402',0,'IPB',99,'Y','','',0,''),(39927,0,0,489,'2025-10-25',4918,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'402',0,'IPB',99,'Y','','',0,''),(39928,0,0,489,'2025-10-25',4919,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(39979,0,0,1434,'2025-10-24',4675,'19:18:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(39980,0,0,1434,'2025-10-24',4676,'19:18:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(39981,0,0,1434,'2025-10-24',4677,'19:18:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(39982,0,0,1434,'2025-10-24',4678,'19:18:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(39983,0,0,1434,'2025-10-24',4679,'19:18:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(39984,0,0,1434,'2025-10-24',4681,'19:18:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'410',0,'IPB',99,'Y','','',0,''),(39985,0,0,1434,'2025-10-24',4873,'13:58:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(39986,0,0,1434,'2025-10-25',4973,'19:18:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(39987,0,0,1434,'2025-10-25',4974,'19:18:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(39988,0,0,1434,'2025-10-25',4975,'19:18:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(39989,0,0,1434,'2025-10-25',4976,'19:18:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'410',0,'IPB',99,'Y','','',0,''),(39990,0,0,1434,'2025-10-25',4977,'19:18:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'410',0,'IPB',99,'Y','','',0,''),(39991,0,0,1434,'2025-10-26',4978,'12:31:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'',0,'IPB',99,'Y','','',0,''),(40382,0,0,1505,'2025-10-26',4959,'11:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(40383,0,0,1505,'2025-10-26',4960,'11:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(40384,0,0,1505,'2025-10-26',4961,'11:15:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(40385,0,0,1505,'2025-10-26',4962,'11:15:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(40386,0,0,1505,'2025-10-26',4963,'11:15:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(40387,0,0,1505,'2025-10-26',4965,'11:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'402',0,'IPB',99,'Y','','',0,''),(40388,0,0,1505,'2025-10-27',5149,'11:55:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'',0,'IPB',99,'Y','','',0,''),(40389,0,0,1505,'2025-10-26',5150,'11:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(40390,0,0,1505,'2025-10-26',5151,'11:55:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(40391,0,0,1505,'2025-10-26',5152,'11:58:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(40392,0,0,1505,'2025-10-26',5153,'11:58:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(40393,0,0,1505,'2025-10-26',5176,'12:37:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'',0,'IPB',99,'Y','','',0,''),(40551,0,0,1504,'2025-10-25',0,'13:15:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'',99,'','N','',0,''),(40552,0,0,1504,'2025-10-25',0,'13:15:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'',99,'','N','',0,''),(40553,0,0,1504,'2025-10-25',0,'13:16:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'',99,'','N','',0,''),(40554,0,0,1504,'2025-10-25',0,'22:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',1,'','N','',0,''),(40555,0,0,1504,'2025-10-25',0,'22:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',99,'','N','',0,''),(40556,0,0,1504,'2025-10-25',0,'22:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'',99,'','N','',0,''),(40557,0,0,1504,'2025-10-25',0,'22:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'',99,'','N','',0,''),(40558,0,0,1504,'2025-10-25',0,'22:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'',99,'','N','',0,''),(40559,0,0,1504,'2025-10-26',0,'13:15:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'',99,'','N','',0,''),(40560,0,0,1504,'2025-10-26',0,'13:16:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'',99,'','N','',0,''),(40561,0,0,1504,'2025-10-26',0,'13:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'',99,'','N','',0,''),(40562,0,0,1504,'2025-10-26',0,'23:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'408',0,'',99,'','N','',0,''),(40563,0,0,1504,'2025-10-26',0,'23:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'408',0,'',99,'','N','',0,''),(40564,0,0,1504,'2025-10-26',0,'23:00:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'',99,'','N','',0,''),(40565,0,0,1504,'2025-10-26',0,'23:00:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'',99,'','N','',0,''),(40566,0,0,1504,'2025-10-26',0,'23:00:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'',99,'','N','',0,''),(40567,0,0,1504,'2025-10-27',0,'13:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'',99,'','N','',0,''),(40568,0,0,1504,'2025-10-27',0,'22:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'209',0,'',99,'','N','',0,''),(41084,0,0,1519,'2025-10-27',5016,'09:57:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(41085,0,0,1519,'2025-10-27',5017,'09:57:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(41086,0,0,1519,'2025-10-27',5018,'09:57:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(41087,0,0,1519,'2025-10-27',5019,'09:57:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(41088,0,0,1519,'2025-10-27',5020,'09:57:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(41089,0,0,1519,'2025-10-27',5021,'09:57:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(41090,0,0,1519,'2025-10-27',5268,'16:34:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(41091,0,0,1519,'2025-10-27',5269,'16:34:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(41092,0,0,1519,'2025-10-27',5270,'16:34:00','SURG','SURG0015','OT USAGE CHARGE','H',11200,1.00,11200.00,'P',0.00,0.00,11200.00,0.00,0.00,11200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(41093,0,0,1519,'2025-10-27',5271,'16:35:00','SURG','SURG0014','SURGERY CHARGE','H',3700,1.00,3700.00,'P',0.00,0.00,3700.00,0.00,0.00,3700.00,3,0,'',0,'IPB',99,'Y','','',0,''),(41310,0,0,1437,'2025-10-24',4693,'19:47:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(41311,0,0,1437,'2025-10-24',4694,'19:47:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(41312,0,0,1437,'2025-10-24',4695,'19:47:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(41313,0,0,1437,'2025-10-24',4696,'19:47:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(41314,0,0,1437,'2025-10-24',4697,'19:47:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(41315,0,0,1437,'2025-10-25',4698,'19:47:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'411',0,'IPB',99,'Y','','',0,''),(41316,0,0,1437,'2025-10-25',4699,'19:47:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'411',0,'IPB',99,'Y','','',0,''),(41317,0,0,1437,'2025-10-24',4871,'13:56:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(41318,0,0,1437,'2025-10-25',4872,'13:57:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,37,0,'',0,'IPB',99,'Y','','',0,''),(41319,0,0,1437,'2025-10-25',5213,'19:47:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(41320,0,0,1437,'2025-10-26',5214,'19:47:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(41321,0,0,1437,'2025-10-25',5215,'19:47:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(41322,0,0,1437,'2025-10-26',5216,'19:47:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(41323,0,0,1437,'2025-10-25',5217,'19:47:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(41324,0,0,1437,'2025-10-26',5218,'19:47:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(41325,0,0,1437,'2025-10-26',5219,'19:47:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'411',0,'IPB',99,'Y','','',0,''),(41326,0,0,1437,'2025-10-27',5220,'19:47:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'411',0,'IPB',99,'Y','','',0,''),(41327,0,0,1437,'2025-10-26',5221,'19:47:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'411',0,'IPB',99,'Y','','',0,''),(41328,0,0,1437,'2025-10-27',5222,'19:47:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'411',0,'IPB',99,'Y','','',0,''),(41329,0,0,1437,'2025-10-25',5325,'18:25:00','USG','USG0094','B/L CAROTID DOPPLER','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,5,0,'',0,'IPB',99,'Y','','',0,''),(41342,0,0,168,'2025-10-09',239,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'ER',1,'Y','','',0,''),(41343,0,0,168,'2025-10-09',5357,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(41344,0,0,168,'2025-10-09',5358,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(41345,0,0,168,'2025-10-09',5359,'09:30:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(41346,0,0,168,'2025-10-09',5360,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'IPB',99,'Y','','',0,''),(41347,0,0,168,'2025-10-09',5361,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'IPB',99,'Y','','',0,''),(41348,0,0,283,'2025-10-09',403,'20:00:00','REG','REG0001','ADMISSION CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'',0,'ER',1,'Y','N','',0,''),(41349,0,0,283,'2025-10-09',5375,'20:00:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,0,0,'211',0,'IPB',99,'Y','N','',0,''),(41350,0,0,283,'2025-10-10',5376,'20:00:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,0,0,'211',0,'IPB',99,'Y','N','',0,''),(41351,0,0,283,'2025-10-09',5377,'20:00:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,0,0,'211',0,'IPB',99,'Y','N','',0,''),(41352,0,0,283,'2025-10-10',5378,'20:00:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,0,0,'211',0,'IPB',99,'Y','N','',0,''),(41353,0,0,283,'2025-10-09',5379,'20:00:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,0,0,'211',0,'IPB',99,'Y','N','',0,''),(41354,0,0,283,'2025-10-10',5380,'20:00:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,0,0,'211',0,'IPB',99,'Y','N','',0,''),(41355,0,0,283,'2025-10-09',5381,'20:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','N','',0,''),(41356,0,0,283,'2025-10-10',5382,'20:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','N','',0,''),(41357,0,0,283,'2025-10-09',5383,'20:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','N','',0,''),(41358,0,0,283,'2025-10-10',5384,'20:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','N','',0,''),(41419,0,0,1506,'2025-10-26',4966,'12:17:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(41420,0,0,1506,'2025-10-26',4967,'12:17:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(41421,0,0,1506,'2025-10-26',4968,'12:17:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(41422,0,0,1506,'2025-10-26',4969,'12:17:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(41423,0,0,1506,'2025-10-26',4970,'12:17:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(41424,0,0,1506,'2025-10-26',4972,'12:17:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(41425,0,0,1506,'2025-10-27',5284,'12:17:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(41426,0,0,1506,'2025-10-27',5285,'12:17:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(41427,0,0,1506,'2025-10-27',5286,'12:17:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(41428,0,0,1506,'2025-10-27',5287,'12:17:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(41429,0,0,1506,'2025-10-27',5288,'12:17:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(41430,0,0,1506,'2025-10-26',5387,'21:19:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(44064,0,0,1298,'2025-10-22',4185,'00:05:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(44065,0,0,1298,'2025-10-22',4186,'00:05:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(44066,0,0,1298,'2025-10-23',4187,'00:05:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(44067,0,0,1298,'2025-10-23',4188,'00:05:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(44068,0,0,1298,'2025-10-23',4189,'00:05:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(44069,0,0,1298,'2025-10-23',4190,'00:05:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(44070,0,0,1298,'2025-10-23',4191,'00:05:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(44071,0,0,1298,'2025-10-23',4453,'18:00:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(44072,0,0,1298,'2025-10-24',4659,'12:05:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(44073,0,0,1298,'2025-10-24',4660,'12:05:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(44074,0,0,1298,'2025-10-24',4661,'12:05:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(44075,0,0,1298,'2025-10-24',4662,'12:05:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(44076,0,0,1298,'2025-10-24',4663,'12:05:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(44077,0,0,1298,'2025-10-23',4670,'19:04:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(44078,0,0,1298,'2025-10-24',4671,'19:06:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(44079,0,0,1298,'2025-10-24',4672,'19:07:00','USG','USG0095','USG CHEST','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(44080,0,0,1298,'2025-10-23',4673,'19:15:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(44081,0,0,1298,'2025-10-24',4674,'19:16:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(44082,0,0,1298,'2025-10-25',4747,'00:05:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(44083,0,0,1298,'2025-10-25',4748,'00:05:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(44084,0,0,1298,'2025-10-25',4749,'00:05:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(44085,0,0,1298,'2025-10-25',4750,'00:05:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(44086,0,0,1298,'2025-10-25',4751,'00:05:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(44087,0,0,1298,'2025-10-26',5024,'00:05:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(44088,0,0,1298,'2025-10-27',5025,'00:05:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(44089,0,0,1298,'2025-10-26',5026,'00:05:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(44090,0,0,1298,'2025-10-27',5027,'00:05:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(44091,0,0,1298,'2025-10-26',5028,'00:05:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(44092,0,0,1298,'2025-10-27',5029,'00:05:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(44093,0,0,1298,'2025-10-26',5030,'00:05:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(44094,0,0,1298,'2025-10-27',5031,'00:05:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(44095,0,0,1298,'2025-10-26',5032,'00:05:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(44096,0,0,1298,'2025-10-27',5033,'00:05:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(44097,0,0,1298,'2025-10-23',5034,'10:09:00','XRY','XRY0045','X RAY CHARGES','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(44098,0,0,1298,'2025-10-28',5547,'13:02:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'',0,'IPB',99,'Y','','',0,''),(44099,0,0,1298,'2025-10-24',5548,'13:06:00','GENS','GENS0078','THERAPUTIC PURAL TAPPING','H',4000,1.00,4000.00,'P',0.00,0.00,4000.00,0.00,0.00,4000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(44100,0,0,1298,'2025-10-22',5552,'13:14:00','ROOM','ROOM0009','ROOM CHARGES','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(44101,0,0,1298,'2025-10-22',5553,'13:15:00','CARE','CARE0006','RMO CHARGES - SEMI','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(44102,0,0,1298,'2025-10-22',5554,'13:15:00','CARE','CARE0002','NURSING CHARGES - SEMI ','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(44103,0,0,1298,'2025-10-27',5555,'13:18:00','CARE','CARE0006','RMO CHARGES - SEMI','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(44104,0,0,1298,'2025-10-27',5556,'13:18:00','CARE','CARE0002','NURSING CHARGES - SEMI ','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(44105,0,0,1298,'2025-10-28',5557,'13:24:00','ROOM','ROOM0009','ROOM CHARGES','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(44106,0,0,1298,'2025-10-28',5558,'13:24:00','CARE','CARE0006','RMO CHARGES - SEMI','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(44107,0,0,1298,'2025-10-28',5559,'13:24:00','CARE','CARE0002','NURSING CHARGES - SEMI ','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(44406,0,0,1293,'2025-10-19',0,'10:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',1,'','N','',0,''),(44407,0,0,1293,'2025-10-19',0,'10:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',99,'','N','',0,''),(44408,0,0,1293,'2025-10-19',0,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'',99,'','N','',0,''),(44409,0,0,1293,'2025-10-19',0,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'',99,'','N','',0,''),(44410,0,0,1293,'2025-10-19',0,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'',99,'','N','',0,''),(44411,0,0,1293,'2025-10-19',0,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'',99,'','N','',0,''),(44412,0,0,1293,'2025-10-19',0,'10:15:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'',99,'','N','',0,''),(44413,0,0,1293,'2025-10-19',0,'11:51:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'',99,'','N','',0,''),(44414,0,0,1293,'2025-10-19',0,'12:08:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'',99,'','N','',0,''),(44415,0,0,1293,'2025-10-19',0,'14:29:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,7,0,'',0,'',99,'','N','',0,''),(44416,0,0,1293,'2025-10-19',0,'14:30:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'',99,'','N','',0,''),(44417,0,0,1293,'2025-10-19',0,'14:30:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'',99,'','N','',0,''),(44418,0,0,1293,'2025-10-19',0,'14:30:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'',99,'','N','',0,''),(44419,0,0,1293,'2025-10-20',0,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'',99,'','N','',0,''),(44420,0,0,1293,'2025-10-20',0,'10:15:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'',99,'','N','',0,''),(44421,0,0,1293,'2025-10-20',0,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'',99,'','N','',0,''),(44422,0,0,1293,'2025-10-20',0,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'',99,'','N','',0,''),(44423,0,0,1293,'2025-10-20',0,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'',99,'','N','',0,''),(44424,0,0,1293,'2025-10-20',0,'14:30:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'',99,'','N','',0,''),(44425,0,0,1293,'2025-10-20',0,'14:30:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'',99,'','N','',0,''),(44426,0,0,1293,'2025-10-21',0,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'',99,'','N','',0,''),(44427,0,0,1293,'2025-10-21',0,'12:45:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'',99,'','N','',0,''),(44428,0,0,1293,'2025-10-21',0,'12:45:00','AECO','AECO0008','RMO CHARGES DAY','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'',99,'','N','',0,''),(44429,0,0,1293,'2025-10-21',0,'12:45:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'',99,'','N','',0,''),(44430,0,0,1293,'2025-10-21',0,'12:46:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'',99,'','N','',0,''),(44431,0,0,1293,'2025-10-21',0,'12:46:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'',99,'','N','',0,''),(44432,0,0,1293,'2025-10-22',0,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'',99,'','N','',0,''),(44433,0,0,1293,'2025-10-22',0,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'',99,'','N','',0,''),(44434,0,0,1293,'2025-10-22',0,'10:15:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'',99,'','N','',0,''),(44435,0,0,1293,'2025-10-22',0,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'405',0,'',99,'','N','',0,''),(44436,0,0,1293,'2025-10-22',0,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'405',0,'',99,'','N','',0,''),(44437,0,0,1293,'2025-10-22',0,'14:01:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'',99,'','N','',0,''),(44438,0,0,1293,'2025-10-23',0,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'',99,'','N','',0,''),(44439,0,0,1293,'2025-10-23',0,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'405',0,'',99,'','N','',0,''),(44440,0,0,1293,'2025-10-23',0,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'',99,'','N','',0,''),(44441,0,0,1293,'2025-10-23',0,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'405',0,'',99,'','N','',0,''),(44442,0,0,1293,'2025-10-23',0,'10:15:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'',99,'','N','',0,''),(44443,0,0,1293,'2025-10-23',0,'14:01:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'',99,'','N','',0,''),(44444,0,0,1293,'2025-10-23',0,'14:06:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'',99,'','N','',0,''),(44445,0,0,1293,'2025-10-24',0,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'',99,'','N','',0,''),(44446,0,0,1293,'2025-10-24',0,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'',99,'','N','',0,''),(44447,0,0,1293,'2025-10-24',0,'10:15:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'',99,'','N','',0,''),(44448,0,0,1293,'2025-10-24',0,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'405',0,'',99,'','N','',0,''),(44449,0,0,1293,'2025-10-24',0,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'405',0,'',99,'','N','',0,''),(44450,0,0,1293,'2025-10-24',0,'14:02:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'',99,'','N','',0,''),(44451,0,0,1293,'2025-10-24',0,'14:07:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'',99,'','N','',0,''),(44452,0,0,1293,'2025-10-25',0,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'405',0,'',99,'','N','',0,''),(44453,0,0,1293,'2025-10-25',0,'10:15:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'',99,'','N','',0,''),(44454,0,0,1293,'2025-10-25',0,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'',99,'','N','',0,''),(44455,0,0,1293,'2025-10-25',0,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'',99,'','N','',0,''),(44456,0,0,1293,'2025-10-25',0,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'405',0,'',99,'','N','',0,''),(44457,0,0,1293,'2025-10-25',0,'14:02:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'',99,'','N','',0,''),(44458,0,0,1293,'2025-10-25',0,'14:07:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'',99,'','N','',0,''),(44459,0,0,1293,'2025-10-26',0,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'',99,'','N','',0,''),(44460,0,0,1293,'2025-10-26',0,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'',99,'','N','',0,''),(44461,0,0,1293,'2025-10-26',0,'10:15:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'',99,'','N','',0,''),(44462,0,0,1293,'2025-10-26',0,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'405',0,'',99,'','N','',0,''),(44463,0,0,1293,'2025-10-26',0,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'405',0,'',99,'','N','',0,''),(44464,0,0,1293,'2025-10-26',0,'11:40:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'',99,'','N','',0,''),(44465,0,0,1293,'2025-10-26',0,'11:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'',99,'','N','',0,''),(44466,0,0,1293,'2025-10-27',0,'10:15:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'',99,'','N','',0,''),(44467,0,0,1293,'2025-10-27',0,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'',99,'','N','',0,''),(44468,0,0,1293,'2025-10-27',0,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'',99,'','N','',0,''),(44469,0,0,1293,'2025-10-27',0,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'',99,'','N','',0,''),(44470,0,0,1293,'2025-10-27',0,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'',99,'','N','',0,''),(44471,0,0,1293,'2025-10-27',0,'11:41:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'',99,'','N','',0,''),(44472,0,0,1293,'2025-10-28',0,'11:41:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'',99,'','N','',0,''),(44473,0,0,1293,'2025-10-28',0,'12:11:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'',99,'','N','',0,''),(46215,0,0,1536,'2025-10-27',0,'10:48:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',1,'','','',0,''),(46216,0,0,1536,'2025-10-27',0,'10:48:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',99,'','','',0,''),(46217,0,0,1536,'2025-10-27',0,'10:48:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'',99,'','','',0,''),(46218,0,0,1536,'2025-10-27',0,'10:48:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'',99,'','','',0,''),(46219,0,0,1536,'2025-10-27',0,'10:48:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'',99,'','','',0,''),(46220,0,0,1536,'2025-10-27',0,'10:48:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'',99,'','','',0,''),(46221,0,0,1536,'2025-10-27',0,'10:48:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'',99,'','','',0,''),(46222,0,0,1536,'2025-10-27',5738,'10:53:00','SURG','SURG0014','SURGERY CHARGE','H',55000,1.00,55000.00,'P',0.00,0.00,55000.00,0.00,0.00,55000.00,101,0,'',0,'',99,'','','',0,''),(46223,0,0,1536,'2025-10-27',0,'10:53:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'',99,'','','',0,''),(46224,0,0,1536,'2025-10-27',0,'10:53:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'',99,'','','',0,''),(46225,0,0,1536,'2025-10-27',5739,'10:55:00','SURG','SURG0015','OT USAGE CHARGE','H',18300,1.00,18300.00,'P',0.00,0.00,18300.00,0.00,0.00,18300.00,3,0,'',0,'',99,'','','',0,''),(46226,0,0,1536,'2025-10-28',0,'10:48:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'',99,'','','',0,''),(46227,0,0,1536,'2025-10-28',0,'10:48:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'',99,'','','',0,''),(46228,0,0,1536,'2025-10-28',0,'10:48:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'',99,'','','',0,''),(46229,0,0,1536,'2025-10-28',0,'10:48:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'',99,'','','',0,''),(46230,0,0,1536,'2025-10-28',0,'10:48:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'',99,'','','',0,''),(46231,0,0,1536,'2025-10-29',0,'10:48:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'',99,'','','',0,''),(46457,0,0,1572,'2025-10-27',5127,'11:43:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(46458,0,0,1572,'2025-10-27',5128,'11:43:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(46459,0,0,1572,'2025-10-27',5129,'11:43:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(46460,0,0,1572,'2025-10-27',5130,'11:43:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(46461,0,0,1572,'2025-10-27',5131,'11:43:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(46462,0,0,1572,'2025-10-27',5133,'11:43:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(46463,0,0,1572,'2025-10-28',5531,'11:43:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(46464,0,0,1572,'2025-10-28',5532,'11:43:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(46465,0,0,1572,'2025-10-28',5533,'11:43:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(46466,0,0,1572,'2025-10-28',5534,'11:43:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'305',0,'IPB',99,'Y','','',0,''),(46467,0,0,1572,'2025-10-28',5535,'11:43:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'305',0,'IPB',99,'Y','','',0,''),(46468,0,0,1572,'2025-10-27',5537,'12:50:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(46469,0,0,1572,'2025-10-27',5538,'12:50:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(46470,0,0,1572,'2025-10-27',5539,'12:50:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(46471,0,0,1572,'2025-10-27',5540,'12:51:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(46472,0,0,1572,'2025-10-28',5541,'12:51:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(46473,0,0,1572,'2025-10-28',5542,'12:51:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(46474,0,0,1572,'2025-10-29',5823,'12:38:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(46475,0,0,1572,'2025-10-29',5824,'12:39:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(46813,0,0,1724,'2025-10-28',5568,'14:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(46814,0,0,1724,'2025-10-28',5569,'14:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(46815,0,0,1724,'2025-10-28',5570,'14:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(46816,0,0,1724,'2025-10-28',5571,'14:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(46817,0,0,1724,'2025-10-28',5572,'14:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(46818,0,0,1724,'2025-10-28',5574,'14:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(46819,0,0,1724,'2025-10-28',5653,'21:22:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(46820,0,0,1724,'2025-10-28',5654,'21:23:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(46821,0,0,1724,'2025-10-28',5655,'21:23:00','DRC','DRC0021','EMERGENCY CONSULTANT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(46822,0,0,1724,'2025-10-29',5855,'14:48:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(46823,0,0,1724,'2025-10-29',5856,'14:48:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(46824,0,0,1724,'2025-10-29',5857,'14:49:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(47297,0,0,1363,'2025-10-23',4528,'20:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(47298,0,0,1363,'2025-10-23',4529,'20:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(47299,0,0,1363,'2025-10-23',4530,'20:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(47300,0,0,1363,'2025-10-23',4531,'20:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(47301,0,0,1363,'2025-10-23',4532,'20:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(47302,0,0,1363,'2025-10-24',4863,'20:00:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(47303,0,0,1363,'2025-10-24',4864,'20:00:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(47304,0,0,1363,'2025-10-24',4865,'20:00:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(47305,0,0,1363,'2025-10-24',4866,'20:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'406',0,'IPB',99,'Y','','',0,''),(47306,0,0,1363,'2025-10-24',4867,'20:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'406',0,'IPB',99,'Y','','',0,''),(47307,0,0,1363,'2025-10-23',4868,'13:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47308,0,0,1363,'2025-10-24',4869,'13:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47309,0,0,1363,'2025-10-25',4870,'13:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47310,0,0,1363,'2025-10-26',5040,'20:00:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(47311,0,0,1363,'2025-10-25',5041,'20:00:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(47312,0,0,1363,'2025-10-26',5042,'20:00:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(47313,0,0,1363,'2025-10-25',5043,'20:00:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(47314,0,0,1363,'2025-10-26',5044,'20:00:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(47315,0,0,1363,'2025-10-25',5045,'20:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'406',0,'IPB',99,'Y','','',0,''),(47316,0,0,1363,'2025-10-26',5046,'20:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'406',0,'IPB',99,'Y','','',0,''),(47317,0,0,1363,'2025-10-25',5047,'20:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'406',0,'IPB',99,'Y','','',0,''),(47318,0,0,1363,'2025-10-26',5048,'20:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'406',0,'IPB',99,'Y','','',0,''),(47319,0,0,1363,'2025-10-25',5049,'20:00:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(47320,0,0,1363,'2025-10-26',5050,'10:10:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47321,0,0,1363,'2025-10-27',5493,'20:00:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(47322,0,0,1363,'2025-10-27',5494,'20:00:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(47323,0,0,1363,'2025-10-27',5495,'20:00:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(47324,0,0,1363,'2025-10-27',5496,'20:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'406',0,'IPB',99,'Y','','',0,''),(47325,0,0,1363,'2025-10-27',5497,'20:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'406',0,'IPB',99,'Y','','',0,''),(47326,0,0,1363,'2025-10-25',5499,'12:21:00','USG','USG0091','USG ABDOMEN WITH PELVIS','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47327,0,0,1363,'2025-10-26',5501,'12:22:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47328,0,0,1363,'2025-10-26',5502,'12:22:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47329,0,0,1363,'2025-10-27',5503,'12:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47330,0,0,1363,'2025-10-28',5504,'12:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47331,0,0,1363,'2025-10-28',5772,'20:00:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(47332,0,0,1363,'2025-10-28',5773,'20:00:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(47333,0,0,1363,'2025-10-28',5774,'20:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'406',0,'IPB',99,'Y','','',0,''),(47334,0,0,1363,'2025-10-28',5775,'20:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'406',0,'IPB',99,'Y','','',0,''),(47335,0,0,1363,'2025-10-28',5776,'20:00:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(47336,0,0,1363,'2025-10-28',5777,'11:35:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,5,0,'',0,'IPB',99,'Y','','',0,''),(47337,0,0,1363,'2025-10-29',5778,'11:36:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47338,0,0,1363,'2025-10-29',5912,'18:27:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'',0,'IPB',99,'Y','','',0,''),(47339,0,0,1363,'2025-10-29',5913,'18:27:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'',0,'IPB',99,'Y','','',0,''),(47340,0,0,1363,'2025-10-29',5916,'18:31:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47387,0,0,1563,'2025-10-27',5108,'11:25:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(47388,0,0,1563,'2025-10-27',5109,'11:25:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(47389,0,0,1563,'2025-10-27',5110,'11:25:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(47390,0,0,1563,'2025-10-27',5111,'11:25:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(47391,0,0,1563,'2025-10-27',5112,'11:25:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(47392,0,0,1563,'2025-10-27',5114,'11:25:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'IPB',99,'Y','','',0,''),(47393,0,0,1563,'2025-10-28',5796,'11:25:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(47394,0,0,1563,'2025-10-29',5797,'11:25:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,0.50,1450.00,'P',0.00,0.00,1450.00,0.00,0.00,1450.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(47395,0,0,1563,'2025-10-28',5798,'11:25:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(47396,0,0,1563,'2025-10-29',5799,'11:25:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,0.50,150.00,'A',0.00,0.00,150.00,0.00,0.00,150.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(47397,0,0,1563,'2025-10-28',5800,'11:25:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(47398,0,0,1563,'2025-10-29',5801,'11:25:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,0.50,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(47399,0,0,1563,'2025-10-28',5802,'11:25:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'IPB',99,'Y','','',0,''),(47400,0,0,1563,'2025-10-29',5803,'11:25:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'IPB',99,'Y','','',0,''),(47401,0,0,1563,'2025-10-28',5804,'11:25:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'IPB',99,'Y','','',0,''),(47402,0,0,1563,'2025-10-29',5805,'11:25:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'IPB',99,'Y','','',0,''),(47403,0,0,1563,'2025-10-27',5827,'12:42:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47404,0,0,1563,'2025-10-28',5828,'12:43:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47405,0,0,1563,'2025-10-28',5829,'12:43:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47406,0,0,1563,'2025-10-29',5887,'17:50:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(47407,0,0,1563,'2025-10-28',5888,'17:51:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(47408,0,0,1563,'2025-10-27',5890,'17:56:00','SURG','SURG0014','SURGERY CHARGE','H',41500,1.00,41500.00,'A',0.00,0.00,41500.00,0.00,0.00,41500.00,3,0,'',0,'IPB',99,'Y','','',0,''),(47409,0,0,1563,'2025-10-27',5891,'17:56:00','SURG','SURG0015','OT USAGE CHARGE','H',14000,1.00,14000.00,'A',0.00,0.00,14000.00,0.00,0.00,14000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(47570,0,0,1501,'2025-10-25',4937,'19:22:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(47571,0,0,1501,'2025-10-25',4938,'19:22:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(47572,0,0,1501,'2025-10-25',4939,'19:22:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(47573,0,0,1501,'2025-10-25',4940,'19:22:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(47574,0,0,1501,'2025-10-25',4941,'19:22:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(47575,0,0,1501,'2025-10-26',5088,'19:22:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(47576,0,0,1501,'2025-10-26',5089,'19:22:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(47577,0,0,1501,'2025-10-26',5090,'19:22:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(47578,0,0,1501,'2025-10-25',5094,'11:10:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2500,1.00,2500.00,'P',0.00,0.00,2500.00,0.00,0.00,2500.00,37,0,'',0,'IPB',99,'Y','','',0,''),(47579,0,0,1501,'2025-10-26',5095,'11:11:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,37,0,'',0,'IPB',99,'Y','','',0,''),(47580,0,0,1501,'2025-10-25',5096,'11:11:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47581,0,0,1501,'2025-10-26',5097,'11:11:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47582,0,0,1501,'2025-10-27',5098,'11:12:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47583,0,0,1501,'2025-10-27',5522,'19:22:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(47584,0,0,1501,'2025-10-27',5523,'19:22:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(47585,0,0,1501,'2025-10-27',5525,'19:22:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','','',0,''),(47586,0,0,1501,'2025-10-27',5526,'19:22:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(47587,0,0,1501,'2025-10-28',5527,'12:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47588,0,0,1501,'2025-10-28',5779,'19:22:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(47589,0,0,1501,'2025-10-28',5780,'19:22:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(47590,0,0,1501,'2025-10-28',5781,'19:22:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','','',0,''),(47591,0,0,1501,'2025-10-28',5782,'19:22:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','','',0,''),(47592,0,0,1501,'2025-10-28',5783,'19:22:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(47593,0,0,1501,'2025-10-29',5784,'11:38:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(47594,0,0,1501,'2025-10-29',5941,'20:29:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(47595,0,0,1501,'2025-10-29',5942,'20:29:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(47596,0,0,1501,'2025-10-27',5943,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(48940,0,0,1700,'2025-10-28',5461,'11:45:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(48941,0,0,1700,'2025-10-28',5462,'11:45:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(48942,0,0,1700,'2025-10-28',5463,'11:45:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(48943,0,0,1700,'2025-10-28',5464,'11:45:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(48944,0,0,1700,'2025-10-28',5465,'11:45:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(48945,0,0,1700,'2025-10-28',5466,'11:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'404',0,'IPB',99,'Y','','',0,''),(48946,0,0,1700,'2025-10-28',5467,'11:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'404',0,'IPB',99,'Y','','',0,''),(48947,0,0,1700,'2025-10-28',5713,'10:39:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,9.00,900.00,'P',0.00,0.00,900.00,0.00,0.00,900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(48948,0,0,1700,'2025-10-28',5714,'10:39:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(48949,0,0,1700,'2025-10-29',5715,'10:39:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(48950,0,0,1700,'2025-10-28',5716,'10:39:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(48951,0,0,1700,'2025-10-28',5717,'10:40:00','SURG','SURG0015','OT USAGE CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(48952,0,0,1700,'2025-10-28',5718,'10:41:00','SURG','SURG0014','SURGERY CHARGE','H',8000,1.00,8000.00,'P',0.00,0.00,8000.00,0.00,0.00,8000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(48953,0,0,1700,'2025-10-29',6064,'11:45:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(48954,0,0,1700,'2025-10-29',6065,'11:45:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(48955,0,0,1700,'2025-10-29',6066,'11:45:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(48956,0,0,1700,'2025-10-29',6067,'11:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'404',0,'IPB',99,'Y','','',0,''),(48957,0,0,1700,'2025-10-29',6068,'11:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'404',0,'IPB',99,'Y','','',0,''),(48958,0,0,1700,'2025-10-29',6070,'11:58:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,12.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(48959,0,0,1700,'2025-10-30',6071,'11:58:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(48960,0,0,1700,'2025-10-29',6072,'11:58:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(48961,0,0,1700,'2025-10-30',6073,'11:59:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(48962,0,0,1700,'2025-10-29',6074,'11:59:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(48963,0,0,1700,'2025-10-30',6075,'11:59:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(48964,0,0,1700,'2025-10-29',6076,'12:00:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(48965,0,0,1700,'2025-10-29',6077,'12:02:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,78,0,'',0,'IPB',99,'Y','','',0,''),(49273,0,0,1934,'2025-10-30',6093,'12:40:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(49274,0,0,1934,'2025-10-30',6094,'12:40:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(49275,0,0,1934,'2025-10-30',6095,'12:40:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,0.50,2750.00,'A',0.00,0.00,2750.00,0.00,0.00,2750.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(49276,0,0,1934,'2025-10-30',6096,'12:40:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,0.50,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(49277,0,0,1934,'2025-10-30',6097,'12:40:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,0.50,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(49278,0,0,1934,'2025-10-30',6099,'12:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'208',0,'IPB',99,'Y','','',0,''),(49279,0,0,1934,'2025-10-30',6179,'18:34:00','WPRC','WPRC0078','ECG','H',350,1.00,350.00,'P',0.00,0.00,350.00,0.00,0.00,350.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(49280,0,0,1934,'2025-10-30',6180,'18:34:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(49281,0,0,1934,'2025-10-30',6181,'18:34:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,52,0,'',0,'IPB',99,'Y','','',0,''),(49282,0,0,1934,'2025-10-30',6182,'18:34:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(49283,0,0,1934,'2025-10-30',6183,'18:34:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,52,0,'',0,'IPB',99,'Y','','',0,''),(49284,0,0,1934,'2025-10-30',6185,'18:39:00','DRC','DRC0021','EMERGENCY CONSULTANT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,5,0,'',0,'IPB',99,'Y','','',0,''),(50051,0,0,1660,'2025-10-27',5365,'07:45:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(50052,0,0,1660,'2025-10-27',5366,'07:45:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(50053,0,0,1660,'2025-10-27',5367,'07:45:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(50054,0,0,1660,'2025-10-27',5368,'07:45:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(50055,0,0,1660,'2025-10-27',5369,'07:45:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(50056,0,0,1660,'2025-10-27',5371,'07:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(50057,0,0,1660,'2025-10-27',5443,'11:29:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50058,0,0,1660,'2025-10-27',5444,'11:29:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50059,0,0,1660,'2025-10-28',5445,'11:30:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50060,0,0,1660,'2025-10-27',5446,'11:30:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50061,0,0,1660,'2025-10-27',5447,'11:30:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50062,0,0,1660,'2025-10-28',5448,'11:31:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50063,0,0,1660,'2025-10-27',5449,'11:31:00','XRY','XRY0045','X RAY CHARGES','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50064,0,0,1660,'2025-10-28',5843,'19:45:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(50065,0,0,1660,'2025-10-28',5844,'19:45:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(50066,0,0,1660,'2025-10-28',5845,'19:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(50067,0,0,1660,'2025-10-28',5846,'19:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(50068,0,0,1660,'2025-10-28',5847,'19:45:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(50069,0,0,1660,'2025-10-29',5849,'13:19:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50070,0,0,1660,'2025-10-29',5850,'13:19:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(50071,0,0,1660,'2025-10-28',5851,'13:20:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50072,0,0,1660,'2025-10-28',5852,'13:20:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50073,0,0,1660,'2025-10-28',5853,'13:21:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50074,0,0,1660,'2025-10-28',5854,'13:21:00','OTCG','OTCG0003','DRESSING MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,6,0,'',0,'IPB',99,'Y','','',0,''),(50075,0,0,1660,'2025-10-29',5998,'19:45:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(50076,0,0,1660,'2025-10-29',5999,'19:45:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(50077,0,0,1660,'2025-10-29',6001,'19:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(50078,0,0,1660,'2025-10-29',6002,'19:45:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(50079,0,0,1660,'2025-10-30',6004,'11:29:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50080,0,0,1660,'2025-10-30',6005,'11:29:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50081,0,0,1660,'2025-10-28',6006,'11:30:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50082,0,0,1660,'2025-10-29',6007,'11:30:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50083,0,0,1660,'2025-10-28',6008,'11:31:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,6,0,'',0,'IPB',99,'Y','','',0,''),(50084,0,0,1660,'2025-10-30',6206,'19:45:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(50085,0,0,1660,'2025-10-30',6207,'19:45:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(50086,0,0,1660,'2025-10-30',6208,'19:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(50087,0,0,1660,'2025-10-30',6209,'19:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(50088,0,0,1660,'2025-10-30',6210,'19:45:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(50089,0,0,1660,'2025-10-29',6211,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(50090,0,0,1660,'2025-10-31',6313,'12:09:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(50091,0,0,1660,'2025-10-31',6315,'12:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50092,0,0,1660,'2025-10-31',6316,'12:10:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50093,0,0,1660,'2025-10-31',6317,'12:11:00','OTCG','OTCG0003','DRESSING MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,6,0,'',0,'IPB',99,'Y','','',0,''),(50103,0,0,1942,'2025-10-30',6126,'14:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(50104,0,0,1942,'2025-10-30',6127,'14:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(50105,0,0,1942,'2025-10-30',6128,'14:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(50106,0,0,1942,'2025-10-30',6129,'14:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(50107,0,0,1942,'2025-10-30',6130,'14:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(50108,0,0,1942,'2025-10-31',6131,'14:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(50109,0,0,1942,'2025-10-30',6132,'14:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(50110,0,0,1942,'2025-10-30',6322,'12:15:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50111,0,0,1942,'2025-10-31',6323,'12:15:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50178,0,0,822,'2025-10-15',2617,'00:00:00','PKG','CASE','CONSULTATION CHARGE','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,4,0,'',0,'',99,'Y','N','',0,''),(50570,0,0,1988,'2025-10-30',6212,'20:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(50571,0,0,1988,'2025-10-30',6213,'20:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(50572,0,0,1988,'2025-10-30',6214,'20:30:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(50573,0,0,1988,'2025-10-30',6215,'20:30:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(50574,0,0,1988,'2025-10-30',6216,'20:30:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(50575,0,0,1988,'2025-10-31',6217,'20:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,6,0,'410',0,'IPB',99,'Y','','',0,''),(50576,0,0,1988,'2025-10-30',6529,'18:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50577,0,0,1988,'2025-10-31',6530,'18:40:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,6,0,'',0,'IPB',99,'Y','','',0,''),(50578,0,0,1988,'2025-10-30',6531,'18:44:00','SURG','SURG0014','SURGERY CHARGE','H',21700,1.00,21700.00,'P',0.00,0.00,21700.00,0.00,0.00,21700.00,6,0,'',0,'IPB',99,'Y','','',0,''),(50579,0,0,1988,'2025-10-30',6532,'18:44:00','SURG','SURG0015','OT USAGE CHARGE','H',7300,1.00,7300.00,'P',0.00,0.00,7300.00,0.00,0.00,7300.00,6,0,'',0,'IPB',99,'Y','','',0,''),(50727,0,0,1888,'2025-10-30',5960,'09:40:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(50728,0,0,1888,'2025-10-30',5961,'09:40:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(50729,0,0,1888,'2025-10-30',5962,'09:40:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(50730,0,0,1888,'2025-10-30',5963,'09:40:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(50731,0,0,1888,'2025-10-30',5964,'09:40:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(50732,0,0,1888,'2025-10-30',5965,'09:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'403',0,'IPB',99,'Y','','',0,''),(50733,0,0,1888,'2025-10-30',5966,'09:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'403',0,'IPB',99,'Y','','',0,''),(50734,0,0,1888,'2025-10-30',5995,'11:28:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50735,0,0,1888,'2025-10-30',5996,'11:28:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50736,0,0,1888,'2025-10-31',6446,'09:40:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(50737,0,0,1888,'2025-10-31',6447,'09:40:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(50738,0,0,1888,'2025-10-31',6448,'09:40:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(50739,0,0,1888,'2025-10-31',6449,'09:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'403',0,'IPB',99,'Y','','',0,''),(50740,0,0,1888,'2025-10-31',6450,'09:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'403',0,'IPB',99,'Y','','',0,''),(50741,0,0,1888,'2025-10-31',6569,'21:14:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50969,0,0,1782,'2025-10-29',5678,'06:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(50970,0,0,1782,'2025-10-29',5679,'06:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(50971,0,0,1782,'2025-10-29',5680,'06:30:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(50972,0,0,1782,'2025-10-29',5681,'06:30:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(50973,0,0,1782,'2025-10-29',5682,'06:30:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(50974,0,0,1782,'2025-10-29',5683,'06:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'305',0,'IPB',99,'Y','','',0,''),(50975,0,0,1782,'2025-10-29',5684,'06:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'305',0,'IPB',99,'Y','','',0,''),(50976,0,0,1782,'2025-10-30',6033,'06:30:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(50977,0,0,1782,'2025-10-30',6034,'06:30:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(50978,0,0,1782,'2025-10-30',6035,'06:30:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(50979,0,0,1782,'2025-10-30',6036,'06:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(50980,0,0,1782,'2025-10-30',6037,'06:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(50981,0,0,1782,'2025-10-29',6040,'11:42:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50982,0,0,1782,'2025-10-29',6041,'11:42:00','USG','USG0092','USG ABDOMEN CHARGE','H',1200,1.00,1200.00,'A',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50983,0,0,1782,'2025-10-30',6042,'11:43:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50984,0,0,1782,'2025-10-31',6441,'06:30:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(50985,0,0,1782,'2025-10-31',6442,'06:30:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(50986,0,0,1782,'2025-10-31',6443,'06:30:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(50987,0,0,1782,'2025-10-31',6444,'06:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(50988,0,0,1782,'2025-10-31',6445,'06:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(50989,0,0,1782,'2025-11-01',6660,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(50990,0,0,1782,'2025-11-01',6661,'12:02:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50991,0,0,1782,'2025-11-01',6662,'12:02:00','AECO','AECO0008','RMO CHARGES DAY','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(50992,0,0,1782,'2025-11-01',6663,'12:03:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(51302,0,0,1727,'2025-10-28',5578,'15:26:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(51303,0,0,1727,'2025-10-28',5579,'15:26:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(51304,0,0,1727,'2025-10-28',5580,'15:26:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(51305,0,0,1727,'2025-10-28',5581,'15:26:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(51306,0,0,1727,'2025-10-28',5582,'15:26:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(51307,0,0,1727,'2025-10-28',5584,'15:26:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(51308,0,0,1727,'2025-10-28',5785,'11:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(51309,0,0,1727,'2025-10-29',5786,'11:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(51310,0,0,1727,'2025-10-29',6009,'15:26:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(51311,0,0,1727,'2025-10-29',6010,'15:26:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(51312,0,0,1727,'2025-10-29',6011,'15:26:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(51313,0,0,1727,'2025-10-29',6012,'15:26:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(51314,0,0,1727,'2025-10-29',6013,'15:26:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(51315,0,0,1727,'2025-10-29',6015,'11:32:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(51316,0,0,1727,'2025-10-29',6016,'11:33:00','USG','USG0097','USG ABD + KUB','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(51317,0,0,1727,'2025-10-30',6017,'11:34:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(51318,0,0,1727,'2025-10-30',6134,'15:26:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(51319,0,0,1727,'2025-10-30',6135,'15:26:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(51320,0,0,1727,'2025-10-30',6136,'15:26:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(51321,0,0,1727,'2025-10-30',6137,'15:26:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(51322,0,0,1727,'2025-10-30',6138,'15:26:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(51323,0,0,1727,'2025-10-31',6356,'13:38:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(51324,0,0,1727,'2025-10-31',6357,'13:39:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(51325,0,0,1727,'2025-10-31',6437,'15:26:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(51326,0,0,1727,'2025-10-31',6438,'15:26:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(51327,0,0,1727,'2025-10-31',6439,'15:26:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(51328,0,0,1727,'2025-10-31',6440,'15:26:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(51329,0,0,1727,'2025-11-01',6686,'12:33:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(51330,0,0,1727,'2025-11-01',6687,'12:34:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(51331,0,0,1727,'2025-11-01',6690,'12:37:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(51332,0,0,1727,'2025-11-01',6691,'12:37:00','AECO','AECO0008','RMO CHARGES DAY','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(51333,0,0,1727,'2025-11-01',6692,'12:38:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53521,0,0,414,'2025-10-10',689,'03:45:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(53522,0,0,414,'2025-10-10',690,'03:45:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(53523,0,0,414,'2025-10-10',1221,'14:29:00','ROOM','ROOM0001','BED CHARGES ICU','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53524,0,0,414,'2025-10-10',1222,'14:29:00','CARE','CARE0004','RMO CHARGES - ICU','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53525,0,0,414,'2025-10-10',1223,'14:29:00','CARE','CARE0003','NURSING CHARGES - ICU','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53526,0,0,414,'2025-10-10',1224,'14:30:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(53527,0,0,414,'2025-10-10',1225,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(53528,0,0,414,'2025-10-11',1226,'14:30:00','ROOM','ROOM0001','BED CHARGES ICU','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53529,0,0,414,'2025-10-11',1227,'14:30:00','CARE','CARE0004','RMO CHARGES - ICU','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53530,0,0,414,'2025-10-11',1228,'14:30:00','CARE','CARE0003','NURSING CHARGES - ICU','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53531,0,0,414,'2025-10-11',1229,'14:30:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(53532,0,0,414,'2025-10-11',1230,'14:31:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,36,0,'',0,'IPB',99,'Y','','',0,''),(53533,0,0,414,'2025-10-12',1231,'14:31:00','ROOM','ROOM0001','BED CHARGES ICU','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53534,0,0,414,'2025-10-12',1232,'14:32:00','CARE','CARE0004','RMO CHARGES - ICU','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53535,0,0,414,'2025-10-12',1233,'14:32:00','CARE','CARE0003','NURSING CHARGES - ICU','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53536,0,0,414,'2025-10-12',1234,'14:32:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(53537,0,0,414,'2025-10-12',1235,'14:32:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(53538,0,0,414,'2025-10-10',1236,'14:32:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53539,0,0,414,'2025-10-11',1237,'14:32:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53540,0,0,414,'2025-10-12',1238,'14:33:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53541,0,0,414,'2025-10-10',1239,'14:33:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53542,0,0,414,'2025-10-11',1240,'14:33:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53543,0,0,414,'2025-10-12',1241,'14:33:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53544,0,0,414,'2025-10-10',1242,'14:33:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53545,0,0,414,'2025-10-11',1243,'14:33:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53546,0,0,414,'2025-10-10',1245,'14:34:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53547,0,0,414,'2025-10-11',1246,'14:34:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53548,0,0,414,'2025-10-12',1247,'14:34:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53549,0,0,414,'2025-10-10',1248,'14:38:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53550,0,0,414,'2025-10-10',1249,'14:38:00','WPRC','WPRC0088','ENDOTRACHEAL INTUBATION','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53551,0,0,414,'2025-10-10',1250,'14:38:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53552,0,0,414,'2025-10-10',1251,'14:38:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53553,0,0,414,'2025-10-10',1252,'14:55:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53554,0,0,414,'2025-10-10',1253,'14:57:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53555,0,0,414,'2025-10-11',1254,'14:57:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53556,0,0,414,'2025-10-12',1255,'14:57:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53557,0,0,414,'2025-10-13',1673,'03:45:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53558,0,0,414,'2025-10-13',1674,'03:45:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53559,0,0,414,'2025-10-13',1675,'03:45:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53560,0,0,414,'2025-10-13',1676,'03:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53561,0,0,414,'2025-10-13',1677,'03:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53562,0,0,414,'2025-10-13',1765,'12:06:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53563,0,0,414,'2025-10-13',1766,'12:06:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53564,0,0,414,'2025-10-13',1767,'12:06:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53565,0,0,414,'2025-10-13',1768,'12:07:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53566,0,0,414,'2025-10-14',2335,'03:45:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53567,0,0,414,'2025-10-14',2336,'03:45:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53568,0,0,414,'2025-10-14',2337,'03:45:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53569,0,0,414,'2025-10-14',2338,'03:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53570,0,0,414,'2025-10-14',2339,'03:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53571,0,0,414,'2025-10-13',2425,'12:29:00','WPRC','WPRC0092','CVP (CENTRAL LINE INSERTION) CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(53572,0,0,414,'2025-10-14',2426,'12:30:00','XRY','XRY0045','X RAY CHARGES','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53573,0,0,414,'2025-10-14',2427,'12:31:00','WPRC','WPRC0088','ENDOTRACHEAL INTUBATION','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53574,0,0,414,'2025-10-14',2428,'12:32:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53575,0,0,414,'2025-10-14',2432,'12:34:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53576,0,0,414,'2025-10-14',2433,'12:34:00','WPRC','WPRC0089','NEB CHARGE','H',100,8.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53577,0,0,414,'2025-10-14',2434,'12:35:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53578,0,0,414,'2025-10-14',2435,'12:35:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53579,0,0,414,'2025-10-14',2436,'12:36:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53580,0,0,414,'2025-10-15',2936,'03:45:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53581,0,0,414,'2025-10-15',2937,'03:45:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53582,0,0,414,'2025-10-15',2938,'03:45:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53583,0,0,414,'2025-10-15',2939,'03:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53584,0,0,414,'2025-10-15',2940,'03:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53585,0,0,414,'2025-10-15',2941,'20:12:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53586,0,0,414,'2025-10-15',2942,'20:12:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53587,0,0,414,'2025-10-15',2943,'20:13:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53588,0,0,414,'2025-10-13',2944,'20:13:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53589,0,0,414,'2025-10-14',2945,'20:13:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53590,0,0,414,'2025-10-15',2946,'20:14:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53591,0,0,414,'2025-10-15',2947,'20:14:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53592,0,0,414,'2025-10-16',3210,'03:45:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53593,0,0,414,'2025-10-16',3211,'03:45:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53594,0,0,414,'2025-10-16',3212,'03:45:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53595,0,0,414,'2025-10-16',3213,'03:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53596,0,0,414,'2025-10-16',3214,'03:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53597,0,0,414,'2025-10-16',3215,'20:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53598,0,0,414,'2025-10-16',3216,'20:41:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53599,0,0,414,'2025-10-16',3217,'20:42:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53600,0,0,414,'2025-10-16',3218,'20:42:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53601,0,0,414,'2025-10-15',3219,'20:42:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53602,0,0,414,'2025-10-16',3220,'20:42:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53603,0,0,414,'2025-10-17',3267,'03:45:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53604,0,0,414,'2025-10-17',3268,'03:45:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53605,0,0,414,'2025-10-17',3269,'03:45:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53606,0,0,414,'2025-10-17',3270,'03:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53607,0,0,414,'2025-10-17',3271,'03:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53608,0,0,414,'2025-10-17',3600,'18:32:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53609,0,0,414,'2025-10-17',3601,'18:32:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53610,0,0,414,'2025-10-17',3602,'18:32:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53611,0,0,414,'2025-10-17',3603,'18:33:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53612,0,0,414,'2025-10-18',3833,'03:45:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53613,0,0,414,'2025-10-18',3834,'03:45:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53614,0,0,414,'2025-10-18',3835,'03:45:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53615,0,0,414,'2025-10-18',3836,'03:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53616,0,0,414,'2025-10-18',3838,'17:59:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53617,0,0,414,'2025-10-18',3839,'18:00:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53618,0,0,414,'2025-10-19',3904,'03:45:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53619,0,0,414,'2025-10-19',3905,'03:45:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53620,0,0,414,'2025-10-19',3906,'03:45:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53621,0,0,414,'2025-10-19',3907,'03:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53622,0,0,414,'2025-10-19',3908,'03:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53623,0,0,414,'2025-10-19',3961,'18:35:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53624,0,0,414,'2025-10-19',3962,'18:35:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53625,0,0,414,'2025-10-17',3963,'18:38:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53626,0,0,414,'2025-10-18',3964,'18:39:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53627,0,0,414,'2025-10-19',3965,'18:39:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53628,0,0,414,'2025-10-18',3966,'18:39:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53629,0,0,414,'2025-10-19',3967,'18:39:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53630,0,0,414,'2025-10-18',3968,'18:40:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53631,0,0,414,'2025-10-19',3969,'18:40:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53632,0,0,414,'2025-10-18',3970,'18:41:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'',0,'IPB',99,'Y','','',0,''),(53633,0,0,414,'2025-10-20',4001,'03:45:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53634,0,0,414,'2025-10-20',4002,'03:45:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53635,0,0,414,'2025-10-20',4003,'03:45:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53636,0,0,414,'2025-10-20',4004,'03:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53637,0,0,414,'2025-10-20',4005,'03:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53638,0,0,414,'2025-10-19',4039,'14:37:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,79,0,'',0,'IPB',99,'Y','','',0,''),(53639,0,0,414,'2025-10-20',4040,'14:37:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53640,0,0,414,'2025-10-20',4041,'14:37:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53641,0,0,414,'2025-10-20',4042,'14:38:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53642,0,0,414,'2025-10-20',4043,'14:38:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53643,0,0,414,'2025-10-20',4044,'14:38:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53644,0,0,414,'2025-10-21',4115,'03:45:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53645,0,0,414,'2025-10-21',4116,'03:45:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53646,0,0,414,'2025-10-21',4117,'03:45:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53647,0,0,414,'2025-10-21',4118,'03:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53648,0,0,414,'2025-10-21',4119,'03:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53649,0,0,414,'2025-10-22',4367,'03:45:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53650,0,0,414,'2025-10-23',4368,'03:45:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53651,0,0,414,'2025-10-22',4369,'03:45:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53652,0,0,414,'2025-10-23',4370,'03:45:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53653,0,0,414,'2025-10-22',4371,'03:45:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53654,0,0,414,'2025-10-23',4372,'03:45:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53655,0,0,414,'2025-10-23',4374,'03:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'212',0,'IPB',99,'Y','','',0,''),(53656,0,0,414,'2025-10-22',4375,'03:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'212',0,'IPB',99,'Y','','',0,''),(53657,0,0,414,'2025-10-23',4381,'17:29:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53658,0,0,414,'2025-10-21',4382,'17:30:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53659,0,0,414,'2025-10-22',4383,'17:30:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53660,0,0,414,'2025-10-23',4384,'17:30:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53661,0,0,414,'2025-10-21',4385,'17:30:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53662,0,0,414,'2025-10-22',4386,'17:30:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53663,0,0,414,'2025-10-23',4387,'17:30:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53664,0,0,414,'2025-10-23',4388,'17:32:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53665,0,0,414,'2025-10-21',4389,'17:33:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53666,0,0,414,'2025-10-22',4390,'17:33:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53667,0,0,414,'2025-10-23',4391,'17:33:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53668,0,0,414,'2025-10-21',4392,'17:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53669,0,0,414,'2025-10-22',4393,'17:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53670,0,0,414,'2025-10-23',4394,'17:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53671,0,0,414,'2025-10-24',4685,'03:45:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53672,0,0,414,'2025-10-24',4686,'03:45:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53673,0,0,414,'2025-10-24',4687,'03:45:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53674,0,0,414,'2025-10-24',4688,'03:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'212',0,'IPB',99,'Y','','',0,''),(53675,0,0,414,'2025-10-24',4689,'03:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'212',0,'IPB',99,'Y','','',0,''),(53676,0,0,414,'2025-10-24',4690,'19:31:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53677,0,0,414,'2025-10-24',4691,'19:33:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53678,0,0,414,'2025-10-24',4700,'20:00:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,2,0,'',0,'IPB',99,'Y','','',0,''),(53679,0,0,414,'2025-10-25',4765,'03:45:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53680,0,0,414,'2025-10-25',4766,'03:45:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53681,0,0,414,'2025-10-25',4767,'03:45:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53682,0,0,414,'2025-10-25',4768,'03:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'212',0,'IPB',99,'Y','','',0,''),(53683,0,0,414,'2025-10-25',4769,'03:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'212',0,'IPB',99,'Y','','',0,''),(53684,0,0,414,'2025-10-25',4783,'11:06:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53685,0,0,414,'2025-10-24',4784,'11:08:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53686,0,0,414,'2025-10-24',4785,'11:10:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53687,0,0,414,'2025-10-25',4786,'11:10:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53688,0,0,414,'2025-10-25',4787,'11:10:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53689,0,0,414,'2025-10-24',4788,'11:11:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53690,0,0,414,'2025-10-25',4789,'11:11:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53691,0,0,414,'2025-10-24',4790,'11:11:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53692,0,0,414,'2025-10-25',4791,'11:12:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53693,0,0,414,'2025-10-13',4792,'11:14:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(53694,0,0,414,'2025-10-24',4793,'11:15:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53695,0,0,414,'2025-10-26',5228,'03:45:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53696,0,0,414,'2025-10-27',5229,'03:45:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53697,0,0,414,'2025-10-26',5230,'03:45:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53698,0,0,414,'2025-10-27',5231,'03:45:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53699,0,0,414,'2025-10-26',5232,'03:45:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53700,0,0,414,'2025-10-27',5233,'03:45:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(53701,0,0,414,'2025-10-26',5234,'03:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'212',0,'IPB',99,'Y','','',0,''),(53702,0,0,414,'2025-10-27',5235,'03:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53703,0,0,414,'2025-10-26',5236,'03:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'212',0,'IPB',99,'Y','','',0,''),(53704,0,0,414,'2025-10-27',5237,'03:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53705,0,0,414,'2025-10-26',5238,'15:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53706,0,0,414,'2025-10-27',5239,'15:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53707,0,0,414,'2025-10-26',5240,'15:10:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53708,0,0,414,'2025-10-27',5241,'15:11:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53709,0,0,414,'2025-10-26',5242,'15:13:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53710,0,0,414,'2025-10-27',5243,'15:13:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53711,0,0,414,'2025-10-26',5244,'15:14:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53712,0,0,414,'2025-10-27',5245,'15:14:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53713,0,0,414,'2025-10-26',5246,'15:14:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53714,0,0,414,'2025-10-27',5247,'15:15:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53715,0,0,414,'2025-10-26',5248,'15:15:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53716,0,0,414,'2025-10-27',5249,'15:15:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53717,0,0,414,'2025-10-26',5250,'15:15:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53718,0,0,414,'2025-10-27',5251,'15:15:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53719,0,0,414,'2025-10-28',5429,'03:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(53720,0,0,414,'2025-10-28',5433,'11:23:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53721,0,0,414,'2025-10-28',5434,'11:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53722,0,0,414,'2025-10-28',5435,'11:23:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53723,0,0,414,'2025-10-29',5741,'03:45:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(53724,0,0,414,'2025-10-29',5742,'03:45:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(53725,0,0,414,'2025-10-29',5743,'03:45:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(53726,0,0,414,'2025-10-29',5744,'03:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(53727,0,0,414,'2025-10-29',5745,'03:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(53728,0,0,414,'2025-10-28',5749,'11:00:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53729,0,0,414,'2025-10-28',5750,'11:01:00','CARE','CARE0005','RMO CHARGE - SPECIAL','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53730,0,0,414,'2025-10-28',5751,'11:01:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53731,0,0,414,'2025-10-29',5757,'11:06:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53732,0,0,414,'2025-10-29',5758,'11:06:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53733,0,0,414,'2025-10-28',5759,'11:06:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53734,0,0,414,'2025-10-29',5760,'11:07:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53735,0,0,414,'2025-10-28',5761,'11:07:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53736,0,0,414,'2025-10-29',5762,'11:07:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53737,0,0,414,'2025-10-30',6043,'03:45:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(53738,0,0,414,'2025-10-30',6044,'03:45:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(53739,0,0,414,'2025-10-30',6045,'03:45:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(53740,0,0,414,'2025-10-30',6046,'03:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(53741,0,0,414,'2025-10-30',6047,'03:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(53742,0,0,414,'2025-10-29',6052,'11:45:00','USG','USG0095','USG CHEST','H',1200,1.00,1200.00,'A',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53743,0,0,414,'2025-10-30',6053,'11:45:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53744,0,0,414,'2025-10-30',6054,'11:46:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53745,0,0,414,'2025-10-30',6055,'11:46:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53746,0,0,414,'2025-10-29',6058,'11:51:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,37,0,'',0,'IPB',99,'Y','','',0,''),(53747,0,0,414,'2025-10-31',6422,'03:45:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(53748,0,0,414,'2025-10-31',6423,'03:45:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(53749,0,0,414,'2025-10-31',6424,'03:45:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(53750,0,0,414,'2025-10-31',6425,'03:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(53751,0,0,414,'2025-10-31',6426,'03:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(53752,0,0,414,'2025-11-01',6703,'13:45:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53753,0,0,414,'2025-11-01',6704,'13:46:00','AECO','AECO0008','RMO CHARGES DAY','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53754,0,0,414,'2025-11-01',6705,'13:46:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53755,0,0,414,'2025-10-28',6712,'14:21:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(53756,0,0,414,'2025-11-01',6713,'14:22:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(53757,0,0,414,'2025-10-31',6714,'14:27:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53758,0,0,414,'2025-10-28',6715,'14:31:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53759,0,0,414,'2025-10-29',6716,'14:31:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53760,0,0,414,'2025-10-30',6717,'14:31:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53761,0,0,414,'2025-10-28',6718,'14:32:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53762,0,0,414,'2025-10-29',6719,'14:32:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53763,0,0,414,'2025-10-30',6720,'14:32:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53764,0,0,414,'2025-10-31',6721,'14:32:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53765,0,0,414,'2025-11-01',6722,'14:32:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53766,0,0,414,'2025-10-28',6725,'14:35:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53767,0,0,414,'2025-10-29',6726,'14:35:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53768,0,0,414,'2025-10-31',6727,'14:38:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53769,0,0,414,'2025-11-01',6728,'14:38:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53770,0,0,414,'2025-10-31',6729,'14:41:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53771,0,0,414,'2025-11-01',6730,'14:41:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(53772,0,0,414,'2025-11-01',6731,'14:43:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54112,0,0,1936,'2025-10-30',6101,'12:50:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(54113,0,0,1936,'2025-10-30',6102,'12:50:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(54114,0,0,1936,'2025-10-30',6103,'12:50:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(54115,0,0,1936,'2025-10-30',6104,'12:50:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(54116,0,0,1936,'2025-10-30',6105,'12:50:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(54117,0,0,1936,'2025-10-30',6106,'12:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(54118,0,0,1936,'2025-10-30',6107,'12:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(54119,0,0,1936,'2025-10-31',6451,'12:50:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(54120,0,0,1936,'2025-10-31',6452,'12:50:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(54121,0,0,1936,'2025-10-31',6453,'12:50:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(54122,0,0,1936,'2025-10-31',6454,'12:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(54123,0,0,1936,'2025-10-31',6455,'12:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(54124,0,0,1936,'2025-10-30',6503,'18:23:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,52,0,'',0,'IPB',99,'Y','','',0,''),(54125,0,0,1936,'2025-10-30',6504,'18:24:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(54126,0,0,1936,'2025-10-30',6505,'18:24:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54127,0,0,1936,'2025-10-30',6506,'18:24:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54128,0,0,1936,'2025-10-30',6507,'18:24:00','WPRC','WPRC0092','CVP (CENTRAL LINE INSERTION) CHARGE','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(54129,0,0,1936,'2025-10-30',6508,'18:25:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,52,0,'',0,'IPB',99,'Y','','',0,''),(54130,0,0,1936,'2025-10-30',6509,'18:25:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54131,0,0,1936,'2025-10-31',6510,'18:28:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54132,0,0,1936,'2025-10-31',6511,'18:28:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54133,0,0,1936,'2025-10-30',6512,'18:29:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54134,0,0,1936,'2025-10-30',6513,'18:29:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54135,0,0,1936,'2025-10-30',6514,'18:30:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54136,0,0,1936,'2025-10-31',6515,'18:30:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54137,0,0,1936,'2025-10-30',6516,'18:30:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54138,0,0,1936,'2025-10-31',6517,'18:30:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54139,0,0,1936,'2025-10-30',6518,'18:30:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54140,0,0,1936,'2025-10-31',6519,'18:30:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54141,0,0,1936,'2025-10-31',6522,'18:31:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54142,0,0,1936,'2025-11-01',6742,'12:50:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,0.50,2750.00,'A',0.00,0.00,2750.00,0.00,0.00,2750.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(54143,0,0,1936,'2025-11-01',6743,'12:50:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,0.50,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(54144,0,0,1936,'2025-11-01',6744,'12:50:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,0.50,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(54145,0,0,1936,'2025-11-01',6745,'12:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(54146,0,0,1936,'2025-11-01',6773,'15:20:00','WPRC','WPRC0078','ECG','H',300,2.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54147,0,0,1936,'2025-11-01',6774,'15:21:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54148,0,0,1936,'2025-11-01',6775,'15:21:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54149,0,0,1936,'2025-11-01',6776,'15:22:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54150,0,0,1936,'2025-11-01',6777,'15:22:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54151,0,0,1936,'2025-11-01',6778,'15:25:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54412,0,0,2063,'2025-10-31',6359,'00:00:00','PKG','CASE','CONSULTATION CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,3,0,'',0,'',99,'Y','N','',0,''),(54725,0,0,2027,'2025-10-31',6279,'07:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(54726,0,0,2027,'2025-10-31',6280,'07:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(54727,0,0,2027,'2025-10-31',6466,'17:57:00','ROOM','ROOM0009','ROOM CHARGES','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54728,0,0,2027,'2025-10-31',6467,'17:57:00','CARE','CARE0004','RMO CHARGES - ICU','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54729,0,0,2027,'2025-10-31',6468,'17:57:00','CARE','CARE0003','NURSING CHARGES - ICU','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54730,0,0,2027,'2025-10-31',6469,'17:58:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(54731,0,0,2027,'2025-10-31',6470,'17:58:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(54732,0,0,2027,'2025-11-01',6762,'07:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(54733,0,0,2027,'2025-11-01',6763,'07:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(54734,0,0,2027,'2025-11-01',6764,'07:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(54735,0,0,2027,'2025-11-01',6765,'07:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(54736,0,0,2027,'2025-11-01',6766,'07:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(54737,0,0,2027,'2025-11-02',6839,'07:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(54738,0,0,2027,'2025-11-01',6841,'11:06:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'',0,'IPB',99,'Y','','',0,''),(54739,0,0,2027,'2025-10-31',6842,'11:06:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,78,0,'',0,'IPB',99,'Y','','',0,''),(54740,0,0,2027,'2025-10-31',6843,'11:07:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(54741,0,0,2027,'2025-10-31',6844,'11:07:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54742,0,0,2027,'2025-10-31',6845,'11:07:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,9.00,900.00,'P',0.00,0.00,900.00,0.00,0.00,900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54743,0,0,2027,'2025-10-31',6846,'11:07:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54744,0,0,2027,'2025-10-31',6847,'11:07:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54745,0,0,2027,'2025-10-31',6848,'11:07:00','USG','USG0092','USG ABDOMEN CHARGE','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54746,0,0,2027,'2025-10-31',6849,'11:07:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(54747,0,0,2027,'2025-10-31',6850,'11:08:00','WPRC','WPRC0104','HEMODIALYSIS CHARGE','H',6000,1.00,6000.00,'A',0.00,0.00,6000.00,0.00,0.00,6000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54748,0,0,2027,'2025-11-01',6851,'11:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54749,0,0,2027,'2025-11-02',6852,'11:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54750,0,0,2027,'2025-10-31',6853,'11:11:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54751,0,0,2027,'2025-11-01',6854,'11:11:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54752,0,0,2027,'2025-11-02',6855,'11:11:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54753,0,0,2027,'2025-10-31',6856,'11:12:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54754,0,0,2027,'2025-11-01',6857,'11:12:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54755,0,0,2027,'2025-11-02',6858,'11:12:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54756,0,0,2027,'2025-10-31',6859,'11:12:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54757,0,0,2027,'2025-11-01',6860,'11:12:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54758,0,0,2027,'2025-10-31',6861,'11:13:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54759,0,0,2027,'2025-11-01',6862,'11:13:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54760,0,0,2027,'2025-11-02',6863,'11:14:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54761,0,0,2027,'2025-10-31',6864,'11:17:00','OETR','OETR0002','DLC CHARGE ','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(54762,0,0,2065,'2025-10-31',0,'09:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'',99,'','N','',0,''),(54763,0,0,2065,'2025-10-31',0,'09:45:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,124,0,'',0,'',99,'','N','',0,''),(54764,0,0,2065,'2025-10-31',0,'14:34:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',1,'','N','',0,''),(54765,0,0,2065,'2025-10-31',0,'14:34:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',99,'','N','',0,''),(54766,0,0,2065,'2025-10-31',0,'14:34:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'',99,'','N','',0,''),(54767,0,0,2065,'2025-10-31',0,'14:34:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'',99,'','N','',0,''),(54768,0,0,2065,'2025-10-31',0,'14:34:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'',99,'','N','',0,''),(54769,0,0,2065,'2025-10-31',0,'14:34:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'',99,'','N','',0,''),(54770,0,0,2065,'2025-11-01',0,'09:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'',99,'','N','',0,''),(54771,0,0,2065,'2025-11-01',0,'09:41:00','SURG','SURG0014','SURGERY CHARGE','H',24000,1.00,24000.00,'P',0.00,0.00,24000.00,0.00,0.00,24000.00,3,0,'',0,'',99,'','N','',0,''),(54772,0,0,2065,'2025-11-01',6832,'09:42:00','SURG','SURG0015','OT USAGE CHARGE','H',7930,1.00,7930.00,'P',0.00,0.00,7930.00,0.00,0.00,7930.00,3,0,'',0,'',99,'','N','',0,''),(54773,0,0,2065,'2025-11-01',0,'14:34:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'',99,'','N','',0,''),(54774,0,0,2065,'2025-11-01',0,'14:34:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'',99,'','N','',0,''),(54775,0,0,2065,'2025-11-01',0,'14:34:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'',99,'','N','',0,''),(54776,0,0,2065,'2025-11-01',0,'14:34:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'',99,'','N','',0,''),(54777,0,0,2065,'2025-11-01',0,'14:34:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'',99,'','N','',0,''),(54778,0,0,2065,'2025-11-02',0,'09:41:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'',99,'','N','',0,''),(54779,0,0,2065,'2025-11-02',0,'09:43:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'',99,'','N','',0,''),(54780,0,0,2065,'2025-10-31',0,'09:44:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'',99,'','N','',0,''),(55423,0,0,2214,'2025-11-01',6798,'18:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(55424,0,0,2214,'2025-11-01',6799,'18:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(55425,0,0,2214,'2025-11-01',6800,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(55426,0,0,2214,'2025-11-01',6801,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(55427,0,0,2214,'2025-11-01',6802,'18:00:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(55428,0,0,2214,'2025-11-01',6804,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(55429,0,0,2214,'2025-11-02',6905,'17:35:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(55430,0,0,2214,'2025-11-01',6906,'17:35:00','SURG','SURG0015','OT USAGE CHARGE','H',7500,1.00,7500.00,'P',0.00,0.00,7500.00,0.00,0.00,7500.00,3,0,'',0,'IPB',99,'Y','','',0,''),(55431,0,0,2214,'2025-11-01',6907,'17:37:00','SURG','SURG0014','SURGERY CHARGE','H',22000,1.00,22000.00,'P',0.00,0.00,22000.00,0.00,0.00,22000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(56325,0,0,1941,'2025-10-30',6118,'13:56:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(56326,0,0,1941,'2025-10-30',6119,'13:56:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(56327,0,0,1941,'2025-10-30',6120,'13:56:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(56328,0,0,1941,'2025-10-30',6121,'13:56:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(56329,0,0,1941,'2025-10-30',6122,'13:56:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(56330,0,0,1941,'2025-10-30',6124,'13:56:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(56331,0,0,1941,'2025-10-31',6461,'13:56:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(56332,0,0,1941,'2025-10-31',6462,'13:56:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(56333,0,0,1941,'2025-10-31',6463,'13:56:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(56334,0,0,1941,'2025-10-31',6464,'13:56:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(56335,0,0,1941,'2025-10-31',6465,'13:56:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(56336,0,0,1941,'2025-11-01',6752,'13:56:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(56337,0,0,1941,'2025-11-01',6753,'13:56:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(56338,0,0,1941,'2025-11-01',6754,'13:56:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(56339,0,0,1941,'2025-11-01',6755,'13:56:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(56340,0,0,1941,'2025-11-01',6756,'13:56:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(56341,0,0,1941,'2025-11-02',7022,'13:56:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(56342,0,0,1941,'2025-11-02',7023,'13:56:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(56343,0,0,1941,'2025-11-02',7024,'13:56:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(56344,0,0,1941,'2025-11-02',7025,'13:56:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(56345,0,0,1941,'2025-11-02',7026,'13:56:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(56346,0,0,1941,'2025-10-30',7031,'12:15:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56347,0,0,1941,'2025-10-30',7032,'12:15:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56348,0,0,1941,'2025-10-31',7033,'12:15:00','USG','USG0093','USG KUB BEDSIDE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56349,0,0,1941,'2025-11-03',7034,'12:22:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'',0,'IPB',99,'Y','','',0,''),(56350,0,0,1941,'2025-10-30',7035,'12:22:00','DRC','DRC0021','EMERGENCY CONSULTANT CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,5,0,'',0,'IPB',99,'Y','','',0,''),(56451,0,0,1723,'2025-10-28',5563,'13:50:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(56452,0,0,1723,'2025-10-28',5564,'13:50:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(56453,0,0,1723,'2025-10-28',5831,'13:50:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(56454,0,0,1723,'2025-10-28',5832,'13:50:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(56455,0,0,1723,'2025-10-28',5833,'13:50:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(56456,0,0,1723,'2025-10-28',5835,'13:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(56457,0,0,1723,'2025-10-28',5837,'13:05:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56458,0,0,1723,'2025-10-28',5838,'13:05:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56459,0,0,1723,'2025-10-28',5839,'13:06:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(56460,0,0,1723,'2025-10-29',5840,'13:06:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56461,0,0,1723,'2025-10-28',5841,'13:06:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(56462,0,0,1723,'2025-10-29',5984,'13:50:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(56463,0,0,1723,'2025-10-29',5985,'13:50:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(56464,0,0,1723,'2025-10-30',5986,'13:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'207',0,'IPB',99,'Y','','',0,''),(56465,0,0,1723,'2025-10-29',5987,'13:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'207',0,'IPB',99,'Y','','',0,''),(56466,0,0,1723,'2025-10-29',5988,'13:50:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(56467,0,0,1723,'2025-10-30',6371,'13:50:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(56468,0,0,1723,'2025-10-31',6372,'13:50:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(56469,0,0,1723,'2025-10-30',6373,'13:50:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(56470,0,0,1723,'2025-10-31',6374,'13:50:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(56471,0,0,1723,'2025-10-29',6375,'13:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(56472,0,0,1723,'2025-10-31',6376,'13:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(56473,0,0,1723,'2025-10-30',6377,'13:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(56474,0,0,1723,'2025-10-31',6378,'13:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(56475,0,0,1723,'2025-10-30',6473,'18:00:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56476,0,0,1723,'2025-10-31',6474,'18:00:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56477,0,0,1723,'2025-10-29',6476,'18:03:00','SURG','SURG0014','SURGERY CHARGE','H',30000,1.00,30000.00,'A',0.00,0.00,30000.00,0.00,0.00,30000.00,70,0,'',0,'IPB',99,'Y','','',0,''),(56478,0,0,1723,'2025-10-29',6477,'18:03:00','SURG','SURG0015','OT USAGE CHARGE','H',15000,1.00,15000.00,'A',0.00,0.00,15000.00,0.00,0.00,15000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(56479,0,0,1723,'2025-10-30',6541,'19:14:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56480,0,0,1723,'2025-10-31',6542,'19:14:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56481,0,0,1723,'2025-10-29',6543,'19:14:00','WPRC','WPRC0092','CVP (CENTRAL LINE INSERTION) CHARGE','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,39,0,'',0,'IPB',99,'Y','','',0,''),(56482,0,0,1723,'2025-10-29',6544,'19:15:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,3,0,'',0,'IPB',99,'Y','','',0,''),(56483,0,0,1723,'2025-10-29',6545,'19:15:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56484,0,0,1723,'2025-10-30',6546,'19:17:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,70,0,'',0,'IPB',99,'Y','','',0,''),(56485,0,0,1723,'2025-10-31',6547,'19:17:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,70,0,'',0,'IPB',99,'Y','','',0,''),(56486,0,0,1723,'2025-11-01',6737,'13:50:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(56487,0,0,1723,'2025-11-01',6738,'13:50:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(56488,0,0,1723,'2025-11-01',6739,'13:50:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(56489,0,0,1723,'2025-11-01',6740,'13:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(56490,0,0,1723,'2025-11-01',6741,'13:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(56491,0,0,1723,'2025-11-01',6885,'13:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56492,0,0,1723,'2025-11-01',6886,'13:10:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(56493,0,0,1723,'2025-11-01',6888,'13:15:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,70,0,'',0,'IPB',99,'Y','','',0,''),(56494,0,0,1723,'2025-11-02',7007,'13:50:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(56495,0,0,1723,'2025-11-02',7008,'13:50:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(56496,0,0,1723,'2025-11-02',7009,'13:50:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(56497,0,0,1723,'2025-11-02',7010,'13:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(56498,0,0,1723,'2025-11-03',7051,'12:41:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(56499,0,0,1723,'2025-11-03',7052,'12:43:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(56500,0,0,1723,'2025-10-29',7055,'12:45:00','SURG','SURG0017','ASSISTANT SURGEON CHARGE','H',30000,1.00,30000.00,'P',0.00,0.00,30000.00,0.00,0.00,30000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(56597,0,0,1995,'2025-10-31',6232,'09:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(56598,0,0,1995,'2025-10-31',6233,'09:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(56599,0,0,1995,'2025-11-01',6234,'09:15:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(56600,0,0,1995,'2025-11-01',6235,'09:15:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(56601,0,0,1995,'2025-11-01',6236,'09:15:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(56602,0,0,1995,'2025-10-31',6237,'09:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'305',0,'IPB',99,'Y','','',0,''),(56603,0,0,1995,'2025-10-31',6617,'09:15:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(56604,0,0,1995,'2025-10-31',6618,'09:15:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(56605,0,0,1995,'2025-10-31',6619,'09:15:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(56606,0,0,1995,'2025-11-01',6620,'09:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'211',0,'IPB',99,'Y','','',0,''),(56607,0,0,1995,'2025-10-31',6628,'11:07:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(56608,0,0,1995,'2025-11-01',6629,'11:09:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(56609,0,0,1995,'2025-10-31',6630,'11:10:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(56610,0,0,1995,'2025-10-31',6631,'11:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56611,0,0,1995,'2025-10-31',6632,'11:10:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56612,0,0,1995,'2025-11-01',6633,'11:11:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56613,0,0,1995,'2025-10-31',6634,'11:11:00','WPRC','WPRC0086','OXYGEN CHARGE','H',200,3.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56614,0,0,1995,'2025-11-02',6898,'17:29:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,0.50,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56615,0,0,1995,'2025-11-02',6899,'17:29:00','CARE','CARE0005','RMO CHARGE - SPECIAL','H',400,0.50,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56616,0,0,1995,'2025-11-02',6900,'17:29:00','CARE','CARE0001','NURSING CHARGES','H',200,0.50,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56617,0,0,1995,'2025-10-31',6901,'17:29:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,3,0,'',0,'IPB',99,'Y','','',0,''),(56618,0,0,1995,'2025-11-02',6902,'17:30:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(56619,0,0,1995,'2025-10-31',6903,'17:31:00','SURG','SURG0014','SURGERY CHARGE','H',51000,1.00,51000.00,'P',0.00,0.00,51000.00,0.00,0.00,51000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(56620,0,0,1995,'2025-10-31',6904,'17:31:00','SURG','SURG0015','OT USAGE CHARGE','H',16790,1.00,16790.00,'P',0.00,0.00,16790.00,0.00,0.00,16790.00,3,0,'',0,'IPB',99,'Y','','',0,''),(56744,0,0,2226,'2025-11-02',6878,'13:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(56745,0,0,2226,'2025-11-02',6879,'13:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(56746,0,0,2226,'2025-11-02',6880,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(56747,0,0,2226,'2025-11-02',6881,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(56748,0,0,2226,'2025-11-02',6882,'13:00:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(56749,0,0,2226,'2025-11-03',6883,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,7,0,'410',0,'IPB',99,'Y','','',0,''),(56750,0,0,2226,'2025-11-02',6884,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,7,0,'410',0,'IPB',99,'Y','','',0,''),(56751,0,0,2226,'2025-11-02',6889,'13:39:00','ADMN','ADMN0007','MLC CHARGES','H',5000,1.00,5000.00,'A',0.00,0.00,5000.00,0.00,0.00,5000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56752,0,0,2226,'2025-11-03',7135,'19:02:00','ROOM','ROOM0009','ROOM CHARGES','H',2900,0.50,1450.00,'P',0.00,0.00,1450.00,0.00,0.00,1450.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56753,0,0,2226,'2025-11-03',7136,'19:02:00','AECO','AECO0008','RMO CHARGES DAY','H',300,0.50,150.00,'P',0.00,0.00,150.00,0.00,0.00,150.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56754,0,0,2226,'2025-11-03',7137,'19:02:00','CARE','CARE0001','NURSING CHARGES','H',200,0.50,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56755,0,0,2226,'2025-11-03',7138,'19:03:00','DRC','DRC0019','CONSULTANT VISIT 2','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,7,0,'',0,'IPB',99,'Y','','',0,''),(56756,0,0,2226,'2025-11-03',7139,'19:03:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'',0,'IPB',99,'Y','','',0,''),(56757,0,0,2226,'2025-11-02',7141,'19:04:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56758,0,0,2226,'2025-11-02',7142,'19:04:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56759,0,0,2226,'2025-11-02',7143,'19:04:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56760,0,0,2226,'2025-11-03',7144,'19:08:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,7,0,'',0,'IPB',99,'Y','','',0,''),(56875,0,0,2240,'2025-11-03',6948,'09:54:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(56876,0,0,2240,'2025-11-03',6949,'09:54:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(56877,0,0,2240,'2025-11-03',6950,'09:54:00','ROOM','ROOM0009','ROOM CHARGES (308)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(56878,0,0,2240,'2025-11-03',6951,'09:54:00','AECO','AECO0008','RMO CHARGES DAY (308)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(56879,0,0,2240,'2025-11-03',6952,'09:54:00','CARE','CARE0001','NURSING CHARGES (308)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(56880,0,0,2240,'2025-11-04',6953,'09:54:00','DRC','DRC0018','CONSULTANT VISIT 1  (308)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'308',0,'IPB',99,'Y','','',0,''),(56881,0,0,2240,'2025-11-03',6954,'09:54:00','DRC','DRC0019','CONSULTANT VISIT 2 (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'308',0,'IPB',99,'Y','','',0,''),(56882,0,0,2240,'2025-11-03',7220,'11:57:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56883,0,0,2240,'2025-11-03',7221,'11:57:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56884,0,0,2240,'2025-11-04',7222,'11:57:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(56885,0,0,2240,'2025-11-04',7223,'11:57:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(56886,0,0,2240,'2025-11-03',7226,'11:58:00','SURG','SURG0014','SURGERY CHARGE','H',9000,1.00,9000.00,'P',0.00,0.00,9000.00,0.00,0.00,9000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(56887,0,0,2240,'2025-11-03',7227,'11:58:00','SURG','SURG0015','OT USAGE CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(56888,0,0,60,'2025-10-06',72,'13:30:00','REG','REG0001','ADMISSION CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'',0,'ER',1,'Y','N','',0,''),(56889,0,0,60,'2025-10-06',4279,'13:30:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,0,0,'409',0,'IPB',99,'Y','N','',0,''),(56890,0,0,60,'2025-10-07',4280,'13:30:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,0,0,'409',0,'IPB',99,'Y','N','',0,''),(56891,0,0,60,'2025-10-08',4281,'13:30:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,0,0,'409',0,'IPB',99,'Y','N','',0,''),(56892,0,0,60,'2025-10-09',4282,'13:30:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,0,0,'409',0,'IPB',99,'Y','N','',0,''),(56893,0,0,60,'2025-10-06',4283,'13:30:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,0,0,'409',0,'IPB',99,'Y','N','',0,''),(56894,0,0,60,'2025-10-07',4284,'13:30:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,0,0,'409',0,'IPB',99,'Y','N','',0,''),(56895,0,0,60,'2025-10-08',4285,'13:30:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,0,0,'409',0,'IPB',99,'Y','N','',0,''),(56896,0,0,60,'2025-10-09',4286,'13:30:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,0,0,'409',0,'IPB',99,'Y','N','',0,''),(56897,0,0,60,'2025-10-06',4287,'13:30:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'409',0,'IPB',99,'Y','N','',0,''),(56898,0,0,60,'2025-10-07',4288,'13:30:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'409',0,'IPB',99,'Y','N','',0,''),(56899,0,0,60,'2025-10-08',4289,'13:30:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'409',0,'IPB',99,'Y','N','',0,''),(56900,0,0,60,'2025-10-09',4290,'13:30:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'409',0,'IPB',99,'Y','N','',0,''),(56901,0,0,60,'2025-10-06',4291,'13:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','N','',0,''),(56902,0,0,60,'2025-10-07',4292,'13:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','N','',0,''),(56903,0,0,60,'2025-10-08',4293,'13:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','N','',0,''),(56904,0,0,60,'2025-10-09',4294,'13:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','N','',0,''),(56905,0,0,60,'2025-10-06',4295,'13:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','N','',0,''),(56906,0,0,60,'2025-10-07',4296,'13:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','N','',0,''),(56907,0,0,60,'2025-10-08',4297,'13:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','N','',0,''),(56908,0,0,60,'2025-10-09',4298,'13:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','N','',0,''),(57411,0,0,1711,'2025-10-28',5507,'12:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(57412,0,0,1711,'2025-10-28',5508,'12:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(57413,0,0,1711,'2025-10-28',5869,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(57414,0,0,1711,'2025-10-28',5871,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(57415,0,0,1711,'2025-10-28',5873,'12:30:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(57416,0,0,1711,'2025-10-29',5876,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'208',0,'IPB',99,'Y','','',0,''),(57417,0,0,1711,'2025-10-28',5877,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'208',0,'IPB',99,'Y','','',0,''),(57418,0,0,1711,'2025-10-29',5878,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'208',0,'IPB',99,'Y','','',0,''),(57419,0,0,1711,'2025-10-30',6024,'11:35:00','WPRC','WPRC0092','CVP (CENTRAL LINE INSERTION) CHARGE','H',2500,1.00,2500.00,'A',0.00,0.00,2500.00,0.00,0.00,2500.00,39,0,'',0,'IPB',99,'Y','','',0,''),(57420,0,0,1711,'2025-10-28',6025,'11:37:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57421,0,0,1711,'2025-10-29',6026,'11:37:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57422,0,0,1711,'2025-10-30',6027,'11:37:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57423,0,0,1711,'2025-10-28',6028,'11:38:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,3,0,'',0,'IPB',99,'Y','','',0,''),(57424,0,0,1711,'2025-10-28',6029,'11:38:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57425,0,0,1711,'2025-10-29',6030,'11:38:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57426,0,0,1711,'2025-10-30',6031,'11:39:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57427,0,0,1711,'2025-10-30',6032,'11:39:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(57428,0,0,1711,'2025-10-31',6427,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(57429,0,0,1711,'2025-10-30',6428,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(57430,0,0,1711,'2025-10-31',6429,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(57431,0,0,1711,'2025-10-30',6430,'12:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(57432,0,0,1711,'2025-10-31',6431,'12:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(57433,0,0,1711,'2025-10-30',6432,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(57434,0,0,1711,'2025-10-31',6433,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(57435,0,0,1711,'2025-10-30',6434,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(57436,0,0,1711,'2025-10-31',6435,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(57437,0,0,1711,'2025-10-30',6436,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(57438,0,0,1711,'2025-11-01',6732,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(57439,0,0,1711,'2025-11-01',6733,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(57440,0,0,1711,'2025-11-01',6734,'12:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(57441,0,0,1711,'2025-11-01',6735,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(57442,0,0,1711,'2025-11-01',6736,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(57443,0,0,1711,'2025-11-02',7247,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(57444,0,0,1711,'2025-11-03',7248,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(57445,0,0,1711,'2025-11-02',7250,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(57446,0,0,1711,'2025-11-03',7251,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(57447,0,0,1711,'2025-11-02',7253,'12:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(57448,0,0,1711,'2025-11-03',7254,'12:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(57449,0,0,1711,'2025-11-02',7256,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(57450,0,0,1711,'2025-11-03',7257,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(57451,0,0,1711,'2025-11-04',7258,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(57452,0,0,1711,'2025-11-03',7260,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(57453,0,0,1711,'2025-11-04',7261,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(57454,0,0,1711,'2025-10-29',7317,'17:11:00','ROOM','ROOM0009','ROOM CHARGES','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57455,0,0,1711,'2025-10-29',7318,'17:12:00','AECO','AECO0008','RMO CHARGES DAY','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57456,0,0,1711,'2025-10-29',7319,'17:12:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57457,0,0,1711,'2025-10-28',7320,'17:14:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(57458,0,0,1711,'2025-11-01',7321,'17:14:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(57459,0,0,1711,'2025-11-01',7322,'17:15:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,38,0,'',0,'IPB',99,'Y','','',0,''),(57460,0,0,1711,'2025-10-31',7323,'17:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57461,0,0,1711,'2025-11-01',7324,'17:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57462,0,0,1711,'2025-11-02',7325,'17:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57463,0,0,1711,'2025-11-03',7326,'17:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57464,0,0,1711,'2025-11-04',7327,'17:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57465,0,0,1711,'2025-10-31',7328,'17:17:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57466,0,0,1711,'2025-11-01',7329,'17:18:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57467,0,0,1711,'2025-11-02',7330,'17:18:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57468,0,0,1711,'2025-11-03',7331,'17:18:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57469,0,0,1711,'2025-11-04',7332,'17:19:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57470,0,0,1711,'2025-11-01',7333,'17:19:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(57471,0,0,1711,'2025-11-03',7334,'17:19:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(57472,0,0,1711,'2025-10-28',7343,'17:50:00','SURG','SURG0014','SURGERY CHARGE','H',10200,1.00,10200.00,'P',0.00,0.00,10200.00,0.00,0.00,10200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(57473,0,0,1711,'2025-10-28',7344,'17:50:00','SURG','SURG0015','OT USAGE CHARGE','H',3400,1.00,3400.00,'P',0.00,0.00,3400.00,0.00,0.00,3400.00,3,0,'',0,'IPB',99,'Y','','',0,''),(57485,0,0,257,'2025-10-08',371,'14:00:00','REG','REG0001','ADMISSION CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'',0,'ER',1,'Y','N','',0,''),(57486,0,0,257,'2025-10-08',4328,'14:00:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,0,0,'407',0,'IPB',99,'Y','N','',0,''),(57487,0,0,257,'2025-10-09',4329,'14:00:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,0,0,'407',0,'IPB',99,'Y','N','',0,''),(57488,0,0,257,'2025-10-08',4330,'14:00:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,0,0,'407',0,'IPB',99,'Y','N','',0,''),(57489,0,0,257,'2025-10-09',4331,'14:00:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,0,0,'407',0,'IPB',99,'Y','N','',0,''),(57490,0,0,257,'2025-10-08',4332,'14:00:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'407',0,'IPB',99,'Y','N','',0,''),(57491,0,0,257,'2025-10-09',4333,'14:00:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'407',0,'IPB',99,'Y','N','',0,''),(57492,0,0,257,'2025-10-08',4334,'14:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','N','',0,''),(57493,0,0,257,'2025-10-09',4335,'14:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','N','',0,''),(57494,0,0,257,'2025-10-08',4336,'14:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','N','',0,''),(57495,0,0,257,'2025-10-09',4337,'14:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','N','',0,''),(57768,0,0,2264,'2025-11-02',6976,'23:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(57769,0,0,2264,'2025-11-02',6977,'23:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(57770,0,0,2264,'2025-11-02',6978,'23:00:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(57771,0,0,2264,'2025-11-02',6979,'23:00:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(57772,0,0,2264,'2025-11-02',6980,'23:00:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(57773,0,0,2264,'2025-11-04',6981,'23:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'207',0,'IPB',99,'Y','','',0,''),(57774,0,0,2264,'2025-11-04',6982,'23:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'207',0,'IPB',99,'Y','','',0,''),(57775,0,0,2264,'2025-11-02',7154,'19:30:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57776,0,0,2264,'2025-11-02',7155,'19:31:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57777,0,0,2264,'2025-11-03',7156,'19:31:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57778,0,0,2264,'2025-11-03',7157,'19:31:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,5,0,'',0,'IPB',99,'Y','','',0,''),(57779,0,0,2264,'2025-11-03',7158,'19:31:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57780,0,0,2264,'2025-11-02',7159,'19:31:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57781,0,0,2264,'2025-11-03',7160,'19:32:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57782,0,0,2264,'2025-11-02',7161,'19:32:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57783,0,0,2264,'2025-11-03',7162,'19:32:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57784,0,0,2264,'2025-11-03',7163,'23:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'207',0,'IPB',99,'Y','','',0,''),(57785,0,0,2264,'2025-11-03',7164,'23:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'207',0,'IPB',99,'Y','','',0,''),(57786,0,0,2264,'2025-11-03',7292,'23:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(57787,0,0,2264,'2025-11-03',7293,'23:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(57788,0,0,2264,'2025-11-03',7294,'23:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(57789,0,0,2264,'2025-11-04',7375,'19:02:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(57790,0,0,2264,'2025-11-04',7376,'19:02:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(58301,0,0,2018,'2025-10-31',6261,'10:45:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(58302,0,0,2018,'2025-10-31',6262,'10:45:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(58303,0,0,2018,'2025-10-31',6263,'10:45:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(58304,0,0,2018,'2025-10-31',6264,'10:45:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(58305,0,0,2018,'2025-10-31',6265,'10:45:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(58306,0,0,2018,'2025-10-31',6266,'10:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(58307,0,0,2018,'2025-10-31',6267,'10:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(58308,0,0,2018,'2025-10-31',6555,'20:06:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(58309,0,0,2018,'2025-10-31',6556,'20:06:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(58310,0,0,2018,'2025-10-31',6557,'20:06:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(58311,0,0,2018,'2025-10-31',6558,'20:07:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,115,0,'',0,'IPB',99,'Y','','',0,''),(58312,0,0,2018,'2025-11-02',6908,'10:45:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(58313,0,0,2018,'2025-11-02',6909,'10:45:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(58314,0,0,2018,'2025-11-02',6910,'10:45:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(58315,0,0,2018,'2025-11-02',6911,'10:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(58316,0,0,2018,'2025-11-02',6912,'10:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(58317,0,0,2018,'2025-11-01',6913,'20:16:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(58318,0,0,2018,'2025-11-01',6914,'20:16:00','CARE','CARE0005','RMO CHARGE - SPECIAL','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(58319,0,0,2018,'2025-11-01',6915,'20:16:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(58320,0,0,2018,'2025-11-01',6916,'20:17:00','ROOM','ROOM0005','CONSULTANT VISIT 1 - SPECIAL','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(58321,0,0,2018,'2025-11-01',6917,'20:17:00','ROOM','ROOM0006','CONSULTANT VISIT 2 - SPECIAL','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(58322,0,0,2018,'2025-11-03',7262,'10:45:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(58323,0,0,2018,'2025-11-04',7263,'10:45:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(58324,0,0,2018,'2025-11-03',7264,'10:45:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(58325,0,0,2018,'2025-11-04',7265,'10:45:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(58326,0,0,2018,'2025-11-03',7266,'10:45:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(58327,0,0,2018,'2025-11-04',7267,'10:45:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(58328,0,0,2018,'2025-11-03',7268,'10:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(58329,0,0,2018,'2025-11-04',7269,'10:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,36,0,'408',0,'IPB',99,'Y','','',0,''),(58330,0,0,2018,'2025-11-03',7270,'10:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,36,0,'408',0,'IPB',99,'Y','','',0,''),(58331,0,0,2018,'2025-11-04',7271,'10:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,36,0,'408',0,'IPB',99,'Y','','',0,''),(58332,0,0,2018,'2025-11-01',7398,'09:36:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(58333,0,0,2018,'2025-11-02',7399,'09:36:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(58334,0,0,2018,'2025-11-03',7400,'09:37:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(58335,0,0,2018,'2025-11-04',7401,'09:37:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(58336,0,0,2018,'2025-11-05',7402,'09:37:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(58337,0,0,2018,'2025-11-01',7403,'09:38:00','WPRC','WPRC0100','LUMBAR PUNCTURE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(58338,0,0,2018,'2025-11-01',7404,'09:45:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,135,0,'',0,'IPB',99,'Y','','',0,''),(58339,0,0,2018,'2025-11-02',7405,'09:48:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'',0,'IPB',99,'Y','','',0,''),(58634,0,0,2392,'2025-11-04',7235,'12:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(58635,0,0,2392,'2025-11-04',7236,'12:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(58636,0,0,2392,'2025-11-04',7237,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(58637,0,0,2392,'2025-11-04',7238,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(58638,0,0,2392,'2025-11-04',7239,'12:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(58639,0,0,2392,'2025-11-04',7240,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'404',0,'IPB',99,'Y','','',0,''),(58640,0,0,2392,'2025-11-04',7241,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'404',0,'IPB',99,'Y','','',0,''),(58641,0,0,2392,'2025-11-05',7478,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,0.50,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(58642,0,0,2392,'2025-11-05',7479,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,0.50,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(58643,0,0,2392,'2025-11-05',7480,'12:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,0.50,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(58644,0,0,2392,'2025-11-05',7481,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'404',0,'IPB',99,'Y','','',0,''),(58645,0,0,2392,'2025-11-05',7482,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'404',0,'IPB',99,'Y','','',0,''),(58646,0,0,2392,'2025-11-04',7585,'19:57:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(58661,0,0,2437,'2025-11-05',7396,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(58662,0,0,2437,'2025-11-05',7397,'09:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(58663,0,0,2437,'2025-11-05',7487,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(58664,0,0,2437,'2025-11-05',7601,'21:01:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(58665,0,0,2437,'2025-11-05',7602,'21:03:00','CARE','CARE0007','DAY CARE CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(58666,0,0,2437,'2025-11-05',7603,'21:04:00','SURG','SURG0014','SURGERY CHARGE','H',12200,1.00,12200.00,'P',0.00,0.00,12200.00,0.00,0.00,12200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(58667,0,0,2437,'2025-11-05',7604,'21:04:00','SURG','SURG0015','OT USAGE CHARGE','H',4100,1.00,4100.00,'P',0.00,0.00,4100.00,0.00,0.00,4100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(59751,0,0,2640,'2025-09-28',7796,'09:57:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(59752,0,0,2640,'2025-09-28',7797,'09:57:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(59753,0,0,2640,'2025-09-28',7803,'09:57:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(59754,0,0,2640,'2025-09-29',7804,'09:57:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(59755,0,0,2640,'2025-09-30',7805,'09:57:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(59756,0,0,2640,'2025-10-01',7806,'09:57:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(59757,0,0,2640,'2025-10-02',7807,'09:57:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(59758,0,0,2640,'2025-09-28',7842,'09:57:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(59759,0,0,2640,'2025-09-29',7843,'09:57:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(59760,0,0,2640,'2025-09-30',7844,'09:57:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(59761,0,0,2640,'2025-10-01',7845,'09:57:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(59762,0,0,2640,'2025-10-02',7846,'09:57:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(59763,0,0,2640,'2025-09-28',7881,'09:57:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(59764,0,0,2640,'2025-09-29',7882,'09:57:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(59765,0,0,2640,'2025-09-30',7883,'09:57:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(59766,0,0,2640,'2025-10-01',7884,'09:57:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(59767,0,0,2640,'2025-10-02',7885,'09:57:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(59768,0,0,2640,'2025-09-28',7920,'09:57:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(59769,0,0,2640,'2025-09-29',7921,'09:57:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(59770,0,0,2640,'2025-09-30',7922,'09:57:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(59771,0,0,2640,'2025-10-01',7923,'09:57:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(59772,0,0,2640,'2025-09-28',7959,'09:57:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(59773,0,0,2640,'2025-09-29',7960,'09:57:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(59774,0,0,2640,'2025-09-30',7961,'09:57:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(59775,0,0,2640,'2025-10-01',7962,'09:57:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(59776,0,0,2640,'2025-10-02',7963,'09:57:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(59777,0,0,2640,'2025-09-28',8001,'19:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,7.00,700.00,'A',0.00,0.00,700.00,0.00,0.00,700.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59778,0,0,2640,'2025-09-29',8002,'19:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,7.00,700.00,'A',0.00,0.00,700.00,0.00,0.00,700.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59779,0,0,2640,'2025-09-29',8003,'19:23:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59780,0,0,2640,'2025-09-29',8004,'19:24:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59781,0,0,2640,'2025-09-30',8005,'19:24:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59782,0,0,2640,'2025-09-30',8006,'19:24:00','USG','USG0092','USG ABDOMEN CHARGE','H',1200,1.00,1200.00,'A',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59783,0,0,2640,'2025-10-01',8007,'19:25:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59784,0,0,2640,'2025-10-02',8008,'19:25:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59785,0,0,2640,'2025-09-28',8009,'19:25:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59786,0,0,2640,'2025-09-29',8010,'19:25:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59787,0,0,2640,'2025-09-30',8011,'19:25:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59788,0,0,2640,'2025-10-02',8012,'19:26:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(59789,0,0,2640,'2025-10-01',8013,'19:28:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59790,0,0,2640,'2025-10-02',8014,'19:28:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59791,0,0,2640,'2025-09-29',8015,'19:31:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59838,0,0,430,'2025-10-11',803,'09:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(59839,0,0,430,'2025-10-11',804,'09:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(59840,0,0,430,'2025-10-12',1500,'09:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(59841,0,0,430,'2025-10-11',1501,'09:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(59842,0,0,430,'2025-10-11',1503,'09:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(59843,0,0,430,'2025-10-11',1504,'09:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(59844,0,0,430,'2025-10-12',1505,'09:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(59845,0,0,430,'2025-10-11',1506,'09:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(59846,0,0,430,'2025-10-12',1507,'09:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(59847,0,0,430,'2025-10-11',1508,'09:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(59848,0,0,430,'2025-10-13',1681,'09:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(59849,0,0,430,'2025-10-13',1682,'09:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(59850,0,0,430,'2025-10-12',2326,'10:34:00','CARE','CARE0005','RMO CHARGE - SPECIAL','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59851,0,0,430,'2025-10-11',2328,'10:35:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59852,0,0,430,'2025-10-11',2329,'10:35:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59853,0,0,430,'2025-10-11',2330,'10:36:00','WPRC','WPRC0086','OXYGEN CHARGE','H',200,2.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59854,0,0,430,'2025-10-11',2333,'10:39:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(59855,0,0,430,'2025-10-12',2334,'10:39:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(59856,0,0,430,'2025-10-13',6162,'17:49:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59857,0,0,430,'2025-10-13',6163,'17:49:00','CARE','CARE0005','RMO CHARGE - SPECIAL','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59858,0,0,430,'2025-10-12',6164,'17:49:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59859,0,0,430,'2025-10-13',6165,'17:49:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(59860,0,0,430,'2025-10-13',7570,'18:51:00','OETR','OETR0004','CASHLESS PACKAGE','H',104570,1.00,104570.00,'P',0.00,0.00,104570.00,0.00,0.00,104570.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60214,0,0,2298,'2025-11-03',7061,'13:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(60215,0,0,2298,'2025-11-03',7062,'13:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(60216,0,0,2298,'2025-11-03',7063,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(60217,0,0,2298,'2025-11-03',7064,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(60218,0,0,2298,'2025-11-03',7065,'13:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(60219,0,0,2298,'2025-11-03',7066,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'405',0,'IPB',99,'Y','','',0,''),(60220,0,0,2298,'2025-11-03',7067,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'405',0,'IPB',99,'Y','','',0,''),(60221,0,0,2298,'2025-11-04',7295,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(60222,0,0,2298,'2025-11-04',7296,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(60223,0,0,2298,'2025-11-04',7297,'13:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(60224,0,0,2298,'2025-11-04',7298,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'405',0,'IPB',99,'Y','','',0,''),(60225,0,0,2298,'2025-11-04',7299,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'405',0,'IPB',99,'Y','','',0,''),(60226,0,0,2298,'2025-11-05',7590,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(60227,0,0,2298,'2025-11-05',7591,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(60228,0,0,2298,'2025-11-05',7592,'13:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(60229,0,0,2298,'2025-11-05',7593,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'405',0,'IPB',99,'Y','','',0,''),(60230,0,0,2298,'2025-11-05',7594,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'405',0,'IPB',99,'Y','','',0,''),(60231,0,0,2298,'2025-11-03',7661,'11:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60232,0,0,2298,'2025-11-04',7662,'11:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60233,0,0,2298,'2025-11-05',7663,'11:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60234,0,0,2298,'2025-11-06',7664,'11:17:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60235,0,0,2298,'2025-11-05',7665,'11:18:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,88,0,'',0,'IPB',99,'Y','','',0,''),(60236,0,0,2298,'2025-11-06',8090,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(60237,0,0,2298,'2025-11-06',8091,'13:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(60238,0,0,2298,'2025-11-06',8092,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'405',0,'IPB',99,'Y','','',0,''),(60239,0,0,2298,'2025-11-06',8093,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'405',0,'IPB',99,'Y','','',0,''),(60240,0,0,2298,'2025-11-06',8094,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(60241,0,0,2298,'2025-11-07',8097,'12:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60242,0,0,2298,'2025-11-07',8098,'12:11:00','ROOM','ROOM0005','CONSULTANT VISIT 1 - SPECIAL','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60523,0,0,2135,'2025-10-31',6562,'20:45:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(60524,0,0,2135,'2025-10-31',6563,'20:45:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(60525,0,0,2135,'2025-10-31',6564,'20:45:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(60526,0,0,2135,'2025-10-31',6565,'20:45:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(60527,0,0,2135,'2025-10-31',6566,'20:45:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(60528,0,0,2135,'2025-11-01',6567,'20:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(60529,0,0,2135,'2025-11-01',6568,'20:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(60530,0,0,2135,'2025-10-31',6779,'15:42:00','ADMN','ADMN0007','MLC CHARGES','H',5000,1.00,5000.00,'P',0.00,0.00,5000.00,0.00,0.00,5000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60531,0,0,2135,'2025-10-31',6780,'15:42:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60532,0,0,2135,'2025-10-31',6781,'15:42:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60533,0,0,2135,'2025-10-31',6782,'15:42:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(60534,0,0,2135,'2025-10-31',6783,'15:43:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60535,0,0,2135,'2025-11-01',6784,'15:43:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60536,0,0,2135,'2025-11-02',6785,'15:43:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60537,0,0,2135,'2025-10-31',6786,'15:46:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60538,0,0,2135,'2025-11-01',6787,'15:46:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60539,0,0,2135,'2025-11-01',6821,'20:45:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(60540,0,0,2135,'2025-11-01',6822,'20:45:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(60541,0,0,2135,'2025-11-01',6823,'20:45:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(60542,0,0,2135,'2025-11-01',6824,'21:44:00','WPRC','WPRC0106','GASTRIC LAVAGE ','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60543,0,0,2135,'2025-11-02',6872,'12:32:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60544,0,0,2135,'2025-11-03',7272,'20:45:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(60545,0,0,2135,'2025-11-02',7273,'20:45:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(60546,0,0,2135,'2025-11-03',7274,'20:45:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(60547,0,0,2135,'2025-11-02',7275,'20:45:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(60548,0,0,2135,'2025-11-03',7276,'20:45:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(60549,0,0,2135,'2025-11-02',7277,'20:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(60550,0,0,2135,'2025-11-03',7278,'20:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(60551,0,0,2135,'2025-11-02',7279,'20:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(60552,0,0,2135,'2025-11-03',7280,'20:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,36,0,'210',0,'IPB',99,'Y','','',0,''),(60553,0,0,2135,'2025-11-02',7281,'20:45:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(60554,0,0,2135,'2025-11-03',7385,'20:08:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60555,0,0,2135,'2025-11-04',7386,'20:08:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60556,0,0,2135,'2025-11-03',7387,'20:09:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60557,0,0,2135,'2025-11-04',7388,'20:09:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60558,0,0,2135,'2025-11-03',7389,'20:09:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,20,0,'',0,'IPB',99,'Y','','',0,''),(60559,0,0,2135,'2025-11-04',7468,'20:45:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(60560,0,0,2135,'2025-11-04',7469,'20:45:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(60561,0,0,2135,'2025-11-04',7470,'20:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,36,0,'210',0,'IPB',99,'Y','','',0,''),(60562,0,0,2135,'2025-11-04',7471,'20:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,36,0,'210',0,'IPB',99,'Y','','',0,''),(60563,0,0,2135,'2025-11-04',7472,'20:45:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(60564,0,0,2135,'2025-11-05',7503,'13:46:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60565,0,0,2135,'2025-11-05',7504,'13:46:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60566,0,0,2135,'2025-11-05',7650,'20:45:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(60567,0,0,2135,'2025-11-05',7651,'20:45:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(60568,0,0,2135,'2025-11-05',7652,'20:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,36,0,'210',0,'IPB',99,'Y','','',0,''),(60569,0,0,2135,'2025-11-05',7653,'20:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,36,0,'210',0,'IPB',99,'Y','','',0,''),(60570,0,0,2135,'2025-11-05',7654,'20:45:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(60571,0,0,2135,'2025-11-06',7655,'11:14:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60572,0,0,2135,'2025-11-06',8099,'20:45:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(60573,0,0,2135,'2025-11-06',8100,'20:45:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(60574,0,0,2135,'2025-11-06',8101,'20:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,36,0,'408',0,'IPB',99,'Y','','',0,''),(60575,0,0,2135,'2025-11-06',8102,'20:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,36,0,'408',0,'IPB',99,'Y','','',0,''),(60576,0,0,2135,'2025-11-06',8103,'20:45:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(60577,0,0,2135,'2025-11-07',8106,'12:13:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(60578,0,0,2135,'2025-11-07',8107,'12:15:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,36,0,'',0,'IPB',99,'Y','','',0,''),(61024,0,0,2555,'2025-11-06',7612,'09:20:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(61025,0,0,2555,'2025-11-06',7613,'09:20:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(61026,0,0,2555,'2025-11-06',7614,'09:20:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(61027,0,0,2555,'2025-11-06',7615,'09:20:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(61028,0,0,2555,'2025-11-06',7616,'09:20:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(61029,0,0,2555,'2025-11-06',7617,'09:20:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(61030,0,0,2555,'2025-11-06',7618,'09:20:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(61031,0,0,2555,'2025-11-07',8113,'09:20:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,0.50,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(61032,0,0,2555,'2025-11-07',8114,'09:20:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,0.50,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(61033,0,0,2555,'2025-11-07',8115,'09:20:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,0.50,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(61034,0,0,2555,'2025-11-07',8116,'09:20:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(61035,0,0,2555,'2025-11-07',8117,'09:20:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(61036,0,0,2555,'2025-11-06',8214,'18:58:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61037,0,0,2555,'2025-11-06',8215,'19:02:00','SURG','SURG0014','SURGERY CHARGE','H',37000,1.00,37000.00,'P',0.00,0.00,37000.00,0.00,0.00,37000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(61038,0,0,2555,'2025-11-06',8216,'19:02:00','SURG','SURG0015','OT USAGE CHARGE','H',12300,1.00,12300.00,'P',0.00,0.00,12300.00,0.00,0.00,12300.00,3,0,'',0,'IPB',99,'Y','','',0,''),(61578,0,0,2195,'2025-11-01',6670,'12:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(61579,0,0,2195,'2025-11-01',6671,'12:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(61580,0,0,2195,'2025-11-01',6672,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(61581,0,0,2195,'2025-11-01',6673,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(61582,0,0,2195,'2025-11-01',6674,'12:00:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(61583,0,0,2195,'2025-11-01',6675,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(61584,0,0,2195,'2025-11-01',6676,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(61585,0,0,2195,'2025-11-02',6870,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(61586,0,0,2195,'2025-11-01',6890,'13:50:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61587,0,0,2195,'2025-11-01',6891,'13:50:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61588,0,0,2195,'2025-11-02',6892,'13:51:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61589,0,0,2195,'2025-11-01',6893,'13:51:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',400,2.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61590,0,0,2195,'2025-11-01',6894,'13:51:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61591,0,0,2195,'2025-11-01',6896,'13:51:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61592,0,0,2195,'2025-11-02',6897,'13:52:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61593,0,0,2195,'2025-11-03',7282,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (310)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'310',0,'IPB',99,'Y','','',0,''),(61594,0,0,2195,'2025-11-04',7283,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(61595,0,0,2195,'2025-11-03',7284,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (310)','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'310',0,'IPB',99,'Y','','',0,''),(61596,0,0,2195,'2025-11-04',7285,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(61597,0,0,2195,'2025-11-03',7286,'12:00:00','CARE','CARE0001','NURSING CHARGES (310)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'310',0,'IPB',99,'Y','','',0,''),(61598,0,0,2195,'2025-11-04',7287,'12:00:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(61599,0,0,2195,'2025-11-03',7288,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (310)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'310',0,'IPB',99,'Y','','',0,''),(61600,0,0,2195,'2025-11-04',7289,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,36,0,'410',0,'IPB',99,'Y','','',0,''),(61601,0,0,2195,'2025-11-03',7290,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (310)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,36,0,'310',0,'IPB',99,'Y','','',0,''),(61602,0,0,2195,'2025-11-04',7291,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,36,0,'410',0,'IPB',99,'Y','','',0,''),(61603,0,0,2195,'2025-11-05',7473,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(61604,0,0,2195,'2025-11-05',7474,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(61605,0,0,2195,'2025-11-05',7475,'12:00:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(61606,0,0,2195,'2025-11-05',7476,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,36,0,'410',0,'IPB',99,'Y','','',0,''),(61607,0,0,2195,'2025-11-05',7477,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,36,0,'410',0,'IPB',99,'Y','','',0,''),(61608,0,0,2195,'2025-11-03',7669,'11:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61609,0,0,2195,'2025-11-04',7670,'11:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61610,0,0,2195,'2025-11-05',7671,'11:24:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61611,0,0,2195,'2025-11-06',7672,'11:24:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61612,0,0,2195,'2025-11-03',7673,'11:24:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61613,0,0,2195,'2025-11-05',7674,'11:24:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61614,0,0,2195,'2025-11-03',7675,'11:25:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61615,0,0,2195,'2025-11-04',7676,'11:25:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61616,0,0,2195,'2025-11-03',7677,'11:25:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61617,0,0,2195,'2025-11-04',7678,'11:25:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61618,0,0,2195,'2025-11-05',7679,'11:25:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61619,0,0,2195,'2025-11-06',7680,'11:26:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61620,0,0,2195,'2025-11-05',7681,'11:27:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,7,0,'',0,'IPB',99,'Y','','',0,''),(61621,0,0,2195,'2025-11-06',7721,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(61622,0,0,2195,'2025-11-06',7722,'12:00:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(61623,0,0,2195,'2025-11-06',7723,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,36,0,'410',0,'IPB',99,'Y','','',0,''),(61624,0,0,2195,'2025-11-06',7724,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,36,0,'410',0,'IPB',99,'Y','','',0,''),(61625,0,0,2195,'2025-11-06',7725,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(61626,0,0,2195,'2025-11-07',8132,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(61627,0,0,2195,'2025-11-07',8133,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(61628,0,0,2195,'2025-11-07',8134,'12:00:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(61629,0,0,2195,'2025-11-07',8135,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,36,0,'410',0,'IPB',99,'Y','','',0,''),(61630,0,0,2195,'2025-11-07',8136,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,36,0,'410',0,'IPB',99,'Y','','',0,''),(61631,0,0,2195,'2025-11-07',8138,'15:11:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61632,0,0,2195,'2025-11-07',8139,'15:20:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61633,0,0,2195,'2025-11-07',8140,'15:20:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61634,0,0,2195,'2025-11-06',8141,'15:24:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,52,0,'',0,'IPB',99,'Y','','',0,''),(61635,0,0,2195,'2025-11-02',8227,'08:59:00','ROOM','ROOM0009','ROOM CHARGES','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61636,0,0,2195,'2025-11-02',8228,'08:59:00','AECO','AECO0008','RMO CHARGES DAY','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61637,0,0,2195,'2025-11-02',8229,'08:59:00','CARE','CARE0001','NURSING CHARGES','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61638,0,0,2195,'2025-11-02',8230,'09:00:00','DRC','DRC0019','CONSULTANT VISIT 2','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(61639,0,0,2195,'2025-11-08',8234,'09:05:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61640,0,0,2195,'2025-11-08',8235,'09:05:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61641,0,0,2195,'2025-11-06',8236,'09:07:00','WPRC','WPRC0107','MANUAL STOOL REMOVAL PROCEDURE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,3,0,'',0,'IPB',99,'Y','','',0,''),(61693,0,0,2602,'2025-11-06',7734,'15:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(61694,0,0,2602,'2025-11-06',7735,'15:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(61695,0,0,2602,'2025-11-06',7736,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(61696,0,0,2602,'2025-11-06',7737,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(61697,0,0,2602,'2025-11-06',7738,'15:00:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(61698,0,0,2602,'2025-11-06',7740,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(61699,0,0,2602,'2025-11-07',8148,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(61700,0,0,2602,'2025-11-07',8149,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(61701,0,0,2602,'2025-11-07',8150,'15:00:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(61702,0,0,2602,'2025-11-07',8151,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(61703,0,0,2602,'2025-11-07',8152,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(61704,0,0,2602,'2025-11-06',8153,'15:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61705,0,0,2602,'2025-11-07',8154,'15:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61706,0,0,2602,'2025-11-07',8155,'15:34:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'',0,'IPB',99,'Y','','',0,''),(61707,0,0,2602,'2025-11-07',8156,'15:35:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,150,0,'',0,'IPB',99,'Y','','',0,''),(61708,0,0,2602,'2025-11-08',8295,'11:48:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(61709,0,0,2602,'2025-11-08',8296,'11:49:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'',0,'IPB',99,'Y','','',0,''),(61710,0,0,2602,'2025-11-08',8297,'11:49:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'',0,'IPB',99,'Y','','',0,''),(62086,0,0,2747,'2025-11-08',8245,'09:45:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(62087,0,0,2747,'2025-11-08',8246,'09:45:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(62088,0,0,2747,'2025-11-08',8247,'09:45:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(62089,0,0,2747,'2025-11-08',8248,'09:45:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(62090,0,0,2747,'2025-11-08',8249,'09:45:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(62091,0,0,2747,'2025-11-08',8250,'09:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'409',0,'IPB',99,'Y','','',0,''),(62092,0,0,2747,'2025-11-08',8251,'09:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'409',0,'IPB',99,'Y','','',0,''),(62093,0,0,2747,'2025-11-08',8419,'11:56:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62094,0,0,2747,'2025-11-09',8420,'11:57:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(62095,0,0,2747,'2025-11-08',8421,'11:57:00','SURG','SURG0016','SURGERY CHARGE','H',13800,1.00,13800.00,'P',0.00,0.00,13800.00,0.00,0.00,13800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(62096,0,0,2747,'2025-11-08',8422,'11:57:00','SURG','SURG0015','OT USAGE CHARGE','H',4600,1.00,4600.00,'P',0.00,0.00,4600.00,0.00,0.00,4600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(62097,0,0,2747,'2025-11-09',8423,'11:58:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(62256,0,0,2624,'2025-11-06',7773,'18:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(62257,0,0,2624,'2025-11-06',7774,'18:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(62258,0,0,2624,'2025-11-07',8032,'10:23:00','XRY','XRY0045','X RAY CHARGES','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62259,0,0,2624,'2025-11-06',8157,'15:45:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62260,0,0,2624,'2025-11-07',8158,'15:45:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62261,0,0,2624,'2025-11-06',8159,'15:45:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62262,0,0,2624,'2025-11-07',8160,'15:45:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62263,0,0,2624,'2025-11-07',8196,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(62264,0,0,2624,'2025-11-07',8197,'18:00:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(62265,0,0,2624,'2025-11-07',8198,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(62266,0,0,2624,'2025-11-07',8199,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(62267,0,0,2624,'2025-11-07',8200,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(62268,0,0,2624,'2025-11-08',8376,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(62269,0,0,2624,'2025-11-08',8377,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(62270,0,0,2624,'2025-11-08',8378,'18:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(62271,0,0,2624,'2025-11-08',8379,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'401',0,'IPB',99,'Y','','',0,''),(62272,0,0,2624,'2025-11-08',8380,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'401',0,'IPB',99,'Y','','',0,''),(62273,0,0,2624,'2025-11-08',8395,'08:52:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62274,0,0,2624,'2025-11-09',8396,'08:52:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62275,0,0,2624,'2025-11-07',8397,'08:53:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62276,0,0,2624,'2025-11-08',8398,'08:53:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62277,0,0,2624,'2025-11-09',8399,'08:53:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'',0,'IPB',99,'Y','','',0,''),(62278,0,0,2624,'2025-11-06',8429,'12:05:00','ROOM','ROOM0003','BED CHARGES - SPECIAL ROOM','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62279,0,0,2624,'2025-11-06',8430,'12:05:00','CARE','CARE0005','RMO CHARGE - SPECIAL','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62280,0,0,2624,'2025-11-06',8431,'12:05:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62281,0,0,2624,'2025-11-06',8432,'12:09:00','ROOM','ROOM0006','CONSULTANT VISIT 2 - SPECIAL','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62282,0,0,2624,'2025-11-06',8433,'12:16:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62368,0,0,2801,'2025-11-08',8357,'18:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(62369,0,0,2801,'2025-11-08',8358,'18:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(62370,0,0,2801,'2025-11-08',8410,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(62371,0,0,2801,'2025-11-08',8411,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(62372,0,0,2801,'2025-11-08',8412,'18:00:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(62373,0,0,2801,'2025-11-09',8413,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,6,0,'411',0,'IPB',99,'Y','','',0,''),(62374,0,0,2801,'2025-11-08',8414,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,6,0,'411',0,'IPB',99,'Y','','',0,''),(62375,0,0,2801,'2025-11-09',8416,'11:52:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,6,0,'',0,'IPB',99,'Y','','',0,''),(62376,0,0,2801,'2025-11-08',8417,'11:53:00','SURG','SURG0016','SURGERY CHARGE','H',12600,1.00,12600.00,'P',0.00,0.00,12600.00,0.00,0.00,12600.00,6,0,'',0,'IPB',99,'Y','','',0,''),(62377,0,0,2801,'2025-11-08',8418,'11:53:00','SURG','SURG0015','OT USAGE CHARGE','H',4200,1.00,4200.00,'P',0.00,0.00,4200.00,0.00,0.00,4200.00,6,0,'',0,'IPB',99,'Y','','',0,''),(62429,0,0,2806,'2025-11-08',8365,'19:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(62430,0,0,2806,'2025-11-08',8366,'19:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(62431,0,0,2806,'2025-11-08',8367,'19:00:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(62432,0,0,2806,'2025-11-08',8368,'19:00:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(62433,0,0,2806,'2025-11-08',8369,'19:00:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(62434,0,0,2806,'2025-11-09',8370,'19:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'408',0,'IPB',99,'Y','','',0,''),(62435,0,0,2806,'2025-11-09',8371,'19:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'408',0,'IPB',99,'Y','','',0,''),(62436,0,0,2806,'2025-11-08',8373,'19:22:00','SURG','SURG0016','SURGERY CHARGE','H',11000,1.00,11000.00,'P',0.00,0.00,11000.00,0.00,0.00,11000.00,6,0,'',0,'IPB',99,'Y','','',0,''),(62437,0,0,2806,'2025-11-09',8408,'11:49:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62438,0,0,2806,'2025-11-09',8435,'17:39:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,6,0,'',0,'IPB',99,'Y','','',0,''),(62439,0,0,2806,'2025-11-08',8436,'17:40:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'',0,'IPB',99,'Y','','',0,''),(62440,0,0,2806,'2025-11-08',8437,'19:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'408',0,'IPB',99,'Y','','',0,''),(62441,0,0,2806,'2025-11-09',8438,'17:41:00','SURG','SURG0015','OT USAGE CHARGE','H',2750,1.00,2750.00,'P',0.00,0.00,2750.00,0.00,0.00,2750.00,6,0,'',0,'IPB',99,'Y','','',0,''),(62567,0,0,2793,'2025-11-08',8320,'13:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(62568,0,0,2793,'2025-11-08',8321,'13:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(62569,0,0,2793,'2025-11-08',8322,'13:15:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(62570,0,0,2793,'2025-11-08',8323,'13:15:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(62571,0,0,2793,'2025-11-08',8324,'13:15:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(62572,0,0,2793,'2025-11-08',8326,'13:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(62573,0,0,2793,'2025-11-09',8497,'13:15:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(62574,0,0,2793,'2025-11-09',8498,'13:15:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(62575,0,0,2793,'2025-11-09',8499,'13:15:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(62576,0,0,2793,'2025-11-09',8500,'13:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(62577,0,0,2793,'2025-11-09',8501,'13:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(62578,0,0,2793,'2025-11-08',8503,'11:18:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(62579,0,0,2793,'2025-11-08',8504,'11:18:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62580,0,0,2793,'2025-11-08',8505,'11:18:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62581,0,0,2793,'2025-11-10',8506,'11:18:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(62582,0,0,2793,'2025-11-08',8507,'11:19:00','SURG','SURG0014','SURGERY CHARGE','H',32200,1.00,32200.00,'P',0.00,0.00,32200.00,0.00,0.00,32200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(62583,0,0,2793,'2025-11-08',8508,'11:19:00','SURG','SURG0015','OT USAGE CHARGE','H',10700,1.00,10700.00,'P',0.00,0.00,10700.00,0.00,0.00,10700.00,3,0,'',0,'IPB',99,'Y','','',0,''),(62584,0,0,2793,'2025-11-08',8509,'11:20:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'',0,'IPB',99,'Y','','',0,''),(62585,0,0,2793,'2025-11-10',8510,'11:21:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(62714,0,0,2561,'2025-11-06',7630,'10:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(62715,0,0,2561,'2025-11-06',7631,'10:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(62716,0,0,2561,'2025-11-06',7632,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(62717,0,0,2561,'2025-11-06',7633,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(62718,0,0,2561,'2025-11-06',7634,'10:00:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(62719,0,0,2561,'2025-11-06',7635,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'IPB',99,'Y','','',0,''),(62720,0,0,2561,'2025-11-06',7636,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'IPB',99,'Y','','',0,''),(62721,0,0,2561,'2025-11-07',8036,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'IPB',99,'Y','','',0,''),(62722,0,0,2561,'2025-11-06',8038,'10:26:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(62723,0,0,2561,'2025-11-07',8039,'10:27:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(63065,0,0,2691,'2025-11-07',8120,'13:33:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(63066,0,0,2691,'2025-11-07',8121,'13:33:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(63067,0,0,2691,'2025-11-07',8122,'13:33:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(63068,0,0,2691,'2025-11-07',8123,'13:33:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(63069,0,0,2691,'2025-11-07',8124,'13:33:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(63070,0,0,2691,'2025-11-07',8126,'13:33:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(63071,0,0,2691,'2025-11-08',8342,'13:33:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(63072,0,0,2691,'2025-11-08',8343,'13:33:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(63073,0,0,2691,'2025-11-08',8344,'13:33:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(63074,0,0,2691,'2025-11-08',8345,'13:33:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(63075,0,0,2691,'2025-11-08',8346,'13:33:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(63076,0,0,2691,'2025-11-08',8362,'18:41:00','XRY','XRY0045','X RAY CHARGES','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(63077,0,0,2691,'2025-11-09',8407,'11:48:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(63078,0,0,2691,'2025-11-09',8439,'13:33:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(63079,0,0,2691,'2025-11-09',8440,'13:33:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(63080,0,0,2691,'2025-11-09',8441,'13:33:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(63081,0,0,2691,'2025-11-09',8442,'13:33:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(63082,0,0,2691,'2025-11-09',8443,'13:33:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(63083,0,0,2691,'2025-11-10',8579,'13:33:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(63084,0,0,2691,'2025-11-10',8580,'13:33:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(63085,0,0,2691,'2025-11-10',8581,'13:33:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(63086,0,0,2691,'2025-11-10',8583,'13:33:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(63087,0,0,2691,'2025-11-08',8733,'11:56:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(63088,0,0,2691,'2025-11-11',8734,'11:57:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(63089,0,0,2691,'2025-11-08',8735,'11:58:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'',0,'IPB',99,'Y','','',0,''),(63090,0,0,2691,'2025-11-10',8736,'11:58:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'',0,'IPB',99,'Y','','',0,''),(64068,0,0,2994,'2025-11-11',8767,'12:58:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(64069,0,0,2994,'2025-11-11',8768,'12:58:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(64070,0,0,2994,'2025-11-11',8769,'12:58:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(64071,0,0,2994,'2025-11-11',8770,'12:58:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(64072,0,0,2994,'2025-11-11',8771,'12:58:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(64073,0,0,2994,'2025-11-12',8772,'12:58:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,6,0,'403',0,'IPB',99,'Y','','',0,''),(64074,0,0,2994,'2025-11-11',8773,'12:58:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,6,0,'403',0,'IPB',99,'Y','','',0,''),(64075,0,0,2994,'2025-11-11',8900,'10:23:00','WPRC','WPRC0099','X-RAY LT WRIST AP LAT','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(64076,0,0,2994,'2025-11-11',8927,'11:32:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(64077,0,0,2994,'2025-11-11',8928,'11:32:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(64078,0,0,2994,'2025-11-11',8929,'11:32:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(64079,0,0,2994,'2025-11-12',8930,'11:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(64080,0,0,2994,'2025-11-11',8958,'12:05:00','SURG','SURG0014','SURGERY CHARGE','H',9800,1.00,9800.00,'P',0.00,0.00,9800.00,0.00,0.00,9800.00,6,0,'',0,'IPB',99,'Y','','',0,''),(64081,0,0,2994,'2025-11-12',8959,'12:05:00','SURG','SURG0015','OT USAGE CHARGE','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,6,0,'',0,'IPB',99,'Y','','',0,''),(64082,0,0,2994,'2025-11-11',9020,'12:58:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,6,0,'403',0,'IPB',99,'Y','','',0,''),(64252,0,0,3194,'2025-11-13',9163,'03:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,0,0,'',0,'ER',1,'Y','N','',0,''),(64253,0,0,3194,'2025-11-13',9164,'03:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,0,0,'',0,'ER',99,'Y','N','',0,''),(64254,0,0,3194,'2025-11-13',9165,'03:00:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,0,0,'210',0,'IPB',99,'Y','N','',0,''),(64255,0,0,3194,'2025-11-13',9166,'03:00:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,0,0,'210',0,'IPB',99,'Y','N','',0,''),(64256,0,0,3194,'2025-11-13',9167,'03:00:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,0,0,'210',0,'IPB',99,'Y','N','',0,''),(64257,0,0,3194,'2025-11-13',9168,'03:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','N','',0,''),(64258,0,0,3194,'2025-11-13',9169,'03:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','N','',0,''),(64671,0,0,3196,'2025-11-13',9171,'03:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(64672,0,0,3196,'2025-11-13',9172,'03:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(64673,0,0,3196,'2025-11-13',9173,'03:00:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(64674,0,0,3196,'2025-11-13',9174,'03:00:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(64675,0,0,3196,'2025-11-13',9175,'03:00:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(64676,0,0,3196,'2025-11-13',9176,'03:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(64677,0,0,3196,'2025-11-13',9267,'12:46:00','CARP','CARP0032','THROMBOLYSIS CHARGE','H',5000,1.00,5000.00,'P',0.00,0.00,5000.00,0.00,0.00,5000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(64678,0,0,3196,'2025-11-13',9268,'12:46:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(64679,0,0,3196,'2025-11-13',9269,'12:49:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(64680,0,0,3196,'2025-11-13',9270,'12:49:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(64681,0,0,3196,'2025-11-13',9271,'12:49:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(65019,0,0,2919,'2025-11-10',8636,'21:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(65020,0,0,2919,'2025-11-10',8637,'21:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(65021,0,0,2919,'2025-11-10',8638,'21:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(65022,0,0,2919,'2025-11-10',8639,'21:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(65023,0,0,2919,'2025-11-10',8640,'21:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(65024,0,0,2919,'2025-11-12',8641,'21:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(65025,0,0,2919,'2025-11-12',8642,'21:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(65026,0,0,2919,'2025-11-11',8969,'21:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(65027,0,0,2919,'2025-11-11',8970,'21:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(65028,0,0,2919,'2025-11-11',8971,'21:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(65029,0,0,2919,'2025-11-13',8972,'21:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(65030,0,0,2919,'2025-11-13',8973,'21:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(65031,0,0,2919,'2025-11-10',8981,'12:35:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(65032,0,0,2919,'2025-11-11',8982,'12:35:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(65033,0,0,2919,'2025-11-12',8983,'12:35:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(65034,0,0,2919,'2025-11-12',8984,'12:36:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(65035,0,0,2919,'2025-11-12',8985,'12:36:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,38,0,'',0,'IPB',99,'Y','','',0,''),(65036,0,0,2919,'2025-11-11',9001,'21:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(65037,0,0,2919,'2025-11-11',9002,'21:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(65038,0,0,2919,'2025-11-12',9279,'21:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(65039,0,0,2919,'2025-11-12',9280,'21:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(65040,0,0,2919,'2025-11-12',9281,'21:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(65041,0,0,2919,'2025-11-13',9330,'17:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67080,0,0,2876,'2025-11-10',8554,'13:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(67081,0,0,2876,'2025-11-10',8555,'13:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(67082,0,0,2876,'2025-11-10',8556,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(67083,0,0,2876,'2025-11-10',8557,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(67084,0,0,2876,'2025-11-10',8558,'13:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(67085,0,0,2876,'2025-11-10',8560,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,36,0,'208',0,'IPB',99,'Y','','',0,''),(67086,0,0,2876,'2025-11-10',8699,'11:20:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67087,0,0,2876,'2025-11-10',8700,'11:21:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(67088,0,0,2876,'2025-11-10',8701,'11:21:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67089,0,0,2876,'2025-11-10',8702,'11:21:00','WPRC','WPRC0077','PC ENEMA','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67090,0,0,2876,'2025-11-10',8703,'11:21:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67091,0,0,2876,'2025-11-11',8704,'11:22:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67092,0,0,2876,'2025-11-10',8705,'11:22:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67093,0,0,2876,'2025-11-11',8781,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(67094,0,0,2876,'2025-11-11',8782,'13:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(67095,0,0,2876,'2025-11-11',8783,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(67096,0,0,2876,'2025-11-11',8784,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(67097,0,0,2876,'2025-11-11',8785,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(67098,0,0,2876,'2025-11-11',8960,'12:07:00','WPRC','WPRC0077','PC ENEMA','H',500,3.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67099,0,0,2876,'2025-11-11',8961,'12:07:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67100,0,0,2876,'2025-11-12',8962,'12:08:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67101,0,0,2876,'2025-11-12',8963,'12:08:00','WPRC','WPRC0077','PC ENEMA','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67102,0,0,2876,'2025-11-11',8964,'12:08:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67103,0,0,2876,'2025-11-12',9014,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(67104,0,0,2876,'2025-11-11',9156,'20:54:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67105,0,0,2876,'2025-11-12',9157,'20:54:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67106,0,0,2876,'2025-11-13',9158,'20:54:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67107,0,0,2876,'2025-11-13',9249,'11:48:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67108,0,0,2876,'2025-11-13',9250,'11:49:00','WPRC','WPRC0077','PC ENEMA','H',500,2.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67109,0,0,2876,'2025-11-13',9274,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(67110,0,0,2876,'2025-11-13',9275,'13:00:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(67111,0,0,2876,'2025-11-13',9276,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'403',0,'IPB',99,'Y','','',0,''),(67112,0,0,2876,'2025-11-13',9277,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'403',0,'IPB',99,'Y','','',0,''),(67113,0,0,2876,'2025-11-13',9278,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(67114,0,0,2876,'2025-11-14',9451,'11:45:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67115,0,0,2876,'2025-11-14',9452,'11:45:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67116,0,0,2876,'2025-11-14',9550,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(67117,0,0,2876,'2025-11-14',9551,'13:00:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(67118,0,0,2876,'2025-11-14',9552,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'403',0,'IPB',99,'Y','','',0,''),(67119,0,0,2876,'2025-11-14',9553,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'403',0,'IPB',99,'Y','','',0,''),(67120,0,0,2876,'2025-11-14',9554,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(67121,0,0,2876,'2025-11-12',9608,'19:24:00','DRC','DRC0019','CONSULTANT VISIT 2','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(67122,0,0,2876,'2025-11-12',9609,'19:25:00','ROOM','ROOM0009','ROOM CHARGES','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67123,0,0,2876,'2025-11-12',9610,'19:25:00','AECO','AECO0008','RMO CHARGES DAY','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67124,0,0,2876,'2025-11-12',9611,'19:25:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67756,0,0,3176,'2025-11-12',9120,'19:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'P',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(67757,0,0,3176,'2025-11-12',9121,'19:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'P',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(67758,0,0,3176,'2025-11-12',9122,'19:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(67759,0,0,3176,'2025-11-12',9123,'19:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(67760,0,0,3176,'2025-11-12',9124,'19:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(67761,0,0,3176,'2025-11-12',9126,'19:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(67762,0,0,3176,'2025-11-12',9204,'10:52:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67763,0,0,3176,'2025-11-12',9205,'10:53:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67764,0,0,3176,'2025-11-12',9206,'10:53:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(67765,0,0,3176,'2025-11-13',9207,'10:56:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67766,0,0,3176,'2025-11-12',9208,'10:56:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67767,0,0,3176,'2025-11-12',9209,'10:57:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67768,0,0,3176,'2025-11-13',9210,'10:58:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67769,0,0,3176,'2025-11-12',9211,'10:58:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67770,0,0,3176,'2025-11-13',9212,'10:58:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67771,0,0,3176,'2025-11-12',9213,'10:58:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67772,0,0,3176,'2025-11-13',9214,'10:58:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67773,0,0,3176,'2025-11-13',9461,'19:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(67774,0,0,3176,'2025-11-13',9462,'19:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(67775,0,0,3176,'2025-11-13',9463,'19:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(67776,0,0,3176,'2025-11-13',9464,'19:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(67777,0,0,3176,'2025-11-13',9465,'19:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(67778,0,0,3176,'2025-11-13',9541,'17:21:00','WPRC','WPRC0092','CVP (CENTRAL LINE INSERTION) CHARGE','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(67779,0,0,3176,'2025-11-13',9542,'17:21:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(67780,0,0,3176,'2025-11-14',9543,'17:22:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67781,0,0,3176,'2025-11-14',9544,'17:22:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67782,0,0,3176,'2025-11-14',9545,'17:22:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67783,0,0,3176,'2025-11-14',9546,'17:22:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67784,0,0,3176,'2025-11-12',9547,'17:23:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67785,0,0,3176,'2025-11-13',9548,'17:23:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67786,0,0,3176,'2025-11-14',9549,'17:23:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67787,0,0,3176,'2025-11-14',9623,'19:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(67788,0,0,3176,'2025-11-14',9624,'19:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(67789,0,0,3176,'2025-11-14',9625,'19:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(67790,0,0,3176,'2025-11-14',9626,'19:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(67791,0,0,3176,'2025-11-14',9627,'19:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(67792,0,0,3176,'2025-11-15',9628,'09:23:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67793,0,0,3176,'2025-11-15',9629,'09:24:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(67794,0,0,3176,'2025-11-15',9630,'09:31:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(68883,0,0,3190,'2025-11-12',9146,'20:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(68884,0,0,3190,'2025-11-12',9147,'20:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(68885,0,0,3190,'2025-11-12',9148,'20:15:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(68886,0,0,3190,'2025-11-12',9149,'20:15:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(68887,0,0,3190,'2025-11-12',9150,'20:15:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(68888,0,0,3190,'2025-11-15',9151,'20:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(68889,0,0,3190,'2025-11-13',9466,'20:15:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(68890,0,0,3190,'2025-11-13',9467,'20:15:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(68891,0,0,3190,'2025-11-13',9468,'20:15:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(68892,0,0,3190,'2025-11-13',9469,'20:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(68893,0,0,3190,'2025-11-13',9470,'20:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(68894,0,0,3190,'2025-11-14',9673,'20:15:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(68895,0,0,3190,'2025-11-14',9674,'20:15:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(68896,0,0,3190,'2025-11-14',9675,'20:15:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(68897,0,0,3190,'2025-11-14',9676,'20:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(68898,0,0,3190,'2025-11-14',9677,'20:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(68899,0,0,3190,'2025-11-13',9678,'11:13:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(68900,0,0,3190,'2025-11-15',9679,'11:13:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(68901,0,0,3190,'2025-11-13',9680,'11:14:00','SURG','SURG0014','SURGERY CHARGE','H',21100,1.00,21100.00,'P',0.00,0.00,21100.00,0.00,0.00,21100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(68902,0,0,3190,'2025-11-13',9681,'11:14:00','SURG','SURG0015','OT USAGE CHARGE','H',7000,1.00,7000.00,'P',0.00,0.00,7000.00,0.00,0.00,7000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(68961,0,0,3113,'2025-11-12',9021,'13:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(68962,0,0,3113,'2025-11-12',9022,'13:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(68963,0,0,3113,'2025-11-12',9023,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(68964,0,0,3113,'2025-11-12',9024,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(68965,0,0,3113,'2025-11-12',9025,'13:00:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(68966,0,0,3113,'2025-11-12',9027,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'409',0,'IPB',99,'Y','','',0,''),(68967,0,0,3113,'2025-11-12',9197,'10:47:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(68968,0,0,3113,'2025-11-12',9198,'10:48:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,88,0,'',0,'IPB',99,'Y','','',0,''),(68969,0,0,3113,'2025-11-12',9199,'10:48:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,7,0,'',0,'IPB',99,'Y','','',0,''),(68970,0,0,3113,'2025-11-12',9200,'10:49:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(68971,0,0,3113,'2025-11-13',9201,'10:50:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(68972,0,0,3113,'2025-11-12',9202,'10:50:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(68973,0,0,3113,'2025-11-12',9254,'12:22:00','SURG','SURG0014','SURGERY CHARGE','H',45000,1.00,45000.00,'P',0.00,0.00,45000.00,0.00,0.00,45000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(68974,0,0,3113,'2025-11-12',9255,'12:23:00','SURG','SURG0015','OT USAGE CHARGE','H',14250,1.00,14250.00,'P',0.00,0.00,14250.00,0.00,0.00,14250.00,3,0,'',0,'IPB',99,'Y','','',0,''),(68975,0,0,3113,'2025-11-13',9282,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(68976,0,0,3113,'2025-11-13',9283,'13:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(68977,0,0,3113,'2025-11-13',9284,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'209',0,'IPB',99,'Y','','',0,''),(68978,0,0,3113,'2025-11-13',9286,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(68979,0,0,3113,'2025-11-14',9479,'12:06:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(68980,0,0,3113,'2025-11-14',9502,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(68981,0,0,3113,'2025-11-14',9503,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(68982,0,0,3113,'2025-11-14',9504,'13:00:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(68983,0,0,3113,'2025-11-14',9505,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'409',0,'IPB',99,'Y','','',0,''),(68984,0,0,3113,'2025-11-14',9506,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'409',0,'IPB',99,'Y','','',0,''),(68985,0,0,3113,'2025-11-15',9691,'11:26:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(68986,0,0,3113,'2025-11-12',9692,'11:26:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,88,0,'',0,'IPB',99,'Y','','',0,''),(68987,0,0,3113,'2025-11-13',9693,'11:29:00','DRC','DRC0019','CONSULTANT VISIT 2','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(68988,0,0,3113,'2025-11-15',9694,'11:29:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(68989,0,0,3113,'2025-11-15',9695,'11:30:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,6,0,'',0,'IPB',99,'Y','','',0,''),(69707,0,0,3294,'2025-11-13',9372,'19:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(69708,0,0,3294,'2025-11-13',9373,'19:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(69709,0,0,3294,'2025-11-13',9374,'19:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(69710,0,0,3294,'2025-11-13',9375,'19:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(69711,0,0,3294,'2025-11-13',9376,'19:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(69712,0,0,3294,'2025-11-13',9378,'19:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(69713,0,0,3294,'2025-11-13',9532,'17:17:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(69714,0,0,3294,'2025-11-13',9533,'17:17:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(69715,0,0,3294,'2025-11-14',9534,'17:17:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(69716,0,0,3294,'2025-11-14',9535,'17:17:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(69717,0,0,3294,'2025-11-14',9536,'17:18:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(69718,0,0,3294,'2025-11-14',9537,'17:18:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(69719,0,0,3294,'2025-11-13',9538,'17:18:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(69720,0,0,3294,'2025-11-13',9539,'17:19:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2500,1.00,2500.00,'P',0.00,0.00,2500.00,0.00,0.00,2500.00,37,0,'',0,'IPB',99,'Y','','',0,''),(69721,0,0,3294,'2025-11-14',9616,'19:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(69722,0,0,3294,'2025-11-14',9617,'19:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(69723,0,0,3294,'2025-11-14',9622,'20:44:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,37,0,'',0,'IPB',99,'Y','','',0,''),(69724,0,0,3294,'2025-11-15',9773,'16:48:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(69725,0,0,3294,'2025-11-14',9774,'16:50:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(69726,0,0,3294,'2025-11-15',9789,'19:01:00','USG','USG0092','USG ABDOMEN CHARGE','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(69727,0,0,3294,'2025-11-15',9790,'19:02:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(69728,0,0,3294,'2025-11-14',9791,'19:03:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(69729,0,0,3294,'2025-11-14',9792,'19:03:00','AECO','AECO0008','RMO CHARGES DAY','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(69730,0,0,3294,'2025-11-14',9793,'19:04:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(69731,0,0,3294,'2025-11-15',9794,'19:04:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(69732,0,0,3294,'2025-11-15',9795,'19:04:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(69803,0,0,3299,'2025-11-14',9386,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(69804,0,0,3299,'2025-11-14',9387,'09:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(69805,0,0,3299,'2025-11-14',9388,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(69806,0,0,3299,'2025-11-14',9389,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(69807,0,0,3299,'2025-11-14',9390,'09:30:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(69808,0,0,3299,'2025-11-14',9391,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(69809,0,0,3299,'2025-11-14',9392,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(69810,0,0,3299,'2025-11-15',9749,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(69811,0,0,3299,'2025-11-15',9750,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(69812,0,0,3299,'2025-11-15',9751,'09:30:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(69813,0,0,3299,'2025-11-15',9752,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(69814,0,0,3299,'2025-11-15',9753,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(69815,0,0,3299,'2025-11-14',9754,'16:31:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(69816,0,0,3299,'2025-11-14',9755,'16:31:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,3,0,'',0,'IPB',99,'Y','','',0,''),(69817,0,0,3299,'2025-11-14',9756,'16:31:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(69818,0,0,3299,'2025-11-14',9757,'16:32:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(69819,0,0,3299,'2025-11-16',9824,'10:42:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(69820,0,0,3299,'2025-11-14',9825,'10:42:00','SURG','SURG0014','SURGERY CHARGE','H',39000,1.00,39000.00,'P',0.00,0.00,39000.00,0.00,0.00,39000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(69821,0,0,3299,'2025-11-14',9826,'10:42:00','SURG','SURG0015','OT USAGE CHARGE','H',12750,1.00,12750.00,'P',0.00,0.00,12750.00,0.00,0.00,12750.00,3,0,'',0,'IPB',99,'Y','','',0,''),(71846,0,0,3301,'2025-11-14',9394,'00:05:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(71847,0,0,3301,'2025-11-14',9395,'00:05:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(71848,0,0,3301,'2025-11-14',9396,'00:05:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(71849,0,0,3301,'2025-11-14',9397,'00:05:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(71850,0,0,3301,'2025-11-14',9398,'00:05:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(71851,0,0,3301,'2025-11-14',9399,'00:05:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(71852,0,0,3301,'2025-11-14',9400,'00:05:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(71853,0,0,3301,'2025-11-14',9434,'11:32:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(71854,0,0,3301,'2025-11-14',9435,'11:32:00','WPRC','WPRC0078','ECG','H',300,2.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(71855,0,0,3301,'2025-11-14',9436,'11:32:00','XRY','XRY0045','X RAY CHARGES','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(71856,0,0,3301,'2025-11-14',9437,'11:33:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(71857,0,0,3301,'2025-11-15',9657,'00:05:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5000,1.00,5000.00,'A',0.00,0.00,5000.00,0.00,0.00,5000.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(71858,0,0,3301,'2025-11-15',9658,'00:05:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(71859,0,0,3301,'2025-11-15',9659,'00:05:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(71860,0,0,3301,'2025-11-15',9660,'00:05:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(71861,0,0,3301,'2025-11-15',9661,'00:05:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(71862,0,0,3301,'2025-11-15',9662,'10:46:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(71863,0,0,3301,'2025-11-15',9663,'10:46:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(71864,0,0,3301,'2025-11-15',9664,'10:47:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(71865,0,0,3301,'2025-11-14',9728,'12:51:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(71866,0,0,3301,'2025-11-16',9876,'00:05:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(71867,0,0,3301,'2025-11-16',9877,'00:05:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(71868,0,0,3301,'2025-11-16',9878,'00:05:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(71869,0,0,3301,'2025-11-16',9879,'00:05:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'403',0,'IPB',99,'Y','','',0,''),(71870,0,0,3301,'2025-11-16',9880,'00:05:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'403',0,'IPB',99,'Y','','',0,''),(71871,0,0,3301,'2025-11-15',9890,'14:40:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(71872,0,0,3301,'2025-11-16',9891,'14:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(72051,0,0,3027,'2025-11-11',8827,'14:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(72052,0,0,3027,'2025-11-11',8828,'14:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(72053,0,0,3027,'2025-11-11',8829,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(72054,0,0,3027,'2025-11-11',8830,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(72055,0,0,3027,'2025-11-11',8831,'14:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(72056,0,0,3027,'2025-11-11',8833,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(72057,0,0,3027,'2025-11-12',8977,'12:33:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(72058,0,0,3027,'2025-11-11',8978,'12:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(72059,0,0,3027,'2025-11-12',8979,'12:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(72060,0,0,3027,'2025-11-12',8980,'12:34:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(72061,0,0,3027,'2025-11-12',9010,'12:59:00','SURG','SURG0014','SURGERY CHARGE','H',45000,1.00,45000.00,'P',0.00,0.00,45000.00,0.00,0.00,45000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(72062,0,0,3027,'2025-11-12',9011,'12:59:00','SURG','SURG0015','OT USAGE CHARGE','H',11250,1.00,11250.00,'P',0.00,0.00,11250.00,0.00,0.00,11250.00,3,0,'',0,'IPB',99,'Y','','',0,''),(72063,0,0,3027,'2025-11-12',9037,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(72064,0,0,3027,'2025-11-12',9038,'14:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(72065,0,0,3027,'2025-11-12',9039,'14:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(72066,0,0,3027,'2025-11-12',9040,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(72067,0,0,3027,'2025-11-12',9041,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(72068,0,0,3027,'2025-11-12',9236,'11:34:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,3,0,'',0,'IPB',99,'Y','','',0,''),(72069,0,0,3027,'2025-11-12',9237,'11:35:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(72070,0,0,3027,'2025-11-13',9238,'11:35:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(72071,0,0,3027,'2025-11-13',9455,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(72072,0,0,3027,'2025-11-13',9456,'14:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(72073,0,0,3027,'2025-11-13',9457,'14:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(72074,0,0,3027,'2025-11-13',9458,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(72075,0,0,3027,'2025-11-13',9459,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(72076,0,0,3027,'2025-11-14',9460,'11:47:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(72077,0,0,3027,'2025-11-14',9560,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(72078,0,0,3027,'2025-11-14',9561,'14:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(72079,0,0,3027,'2025-11-14',9562,'14:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(72080,0,0,3027,'2025-11-14',9563,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(72081,0,0,3027,'2025-11-14',9564,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(72082,0,0,3027,'2025-11-15',9758,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(72083,0,0,3027,'2025-11-15',9759,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(72084,0,0,3027,'2025-11-15',9760,'14:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(72085,0,0,3027,'2025-11-15',9761,'14:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(72086,0,0,3027,'2025-11-15',9762,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(72087,0,0,3027,'2025-11-15',9763,'16:32:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(72088,0,0,3027,'2025-11-16',9892,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(72089,0,0,3027,'2025-11-16',9893,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(72090,0,0,3027,'2025-11-16',9894,'14:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(72091,0,0,3027,'2025-11-16',9895,'14:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(72092,0,0,3027,'2025-11-16',9896,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(72093,0,0,3027,'2025-11-16',9897,'14:42:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(72094,0,0,3027,'2025-11-17',9928,'10:01:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(72095,0,0,3027,'2025-11-17',9929,'10:02:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(72784,0,0,3470,'2025-11-16',9817,'10:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(72785,0,0,3470,'2025-11-16',9818,'10:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(72786,0,0,3470,'2025-11-16',9819,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(72787,0,0,3470,'2025-11-16',9820,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(72788,0,0,3470,'2025-11-16',9821,'10:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(72789,0,0,3470,'2025-11-16',9822,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(72790,0,0,3470,'2025-11-16',9823,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(72791,0,0,3470,'2025-11-16',10038,'13:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(72792,0,0,3470,'2025-11-16',10039,'13:23:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(72793,0,0,3470,'2025-11-17',10040,'13:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(72794,0,0,3470,'2025-11-17',10041,'13:23:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(72795,0,0,3470,'2025-11-17',10042,'13:24:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'',0,'IPB',99,'Y','','',0,''),(76317,0,0,3405,'2025-11-15',9633,'10:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(76318,0,0,3405,'2025-11-15',9634,'10:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(76319,0,0,3405,'2025-11-15',9635,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(76320,0,0,3405,'2025-11-15',9636,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(76321,0,0,3405,'2025-11-15',9637,'10:00:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(76322,0,0,3405,'2025-11-15',9638,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(76323,0,0,3405,'2025-11-15',9639,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(76324,0,0,3405,'2025-11-16',9833,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(76325,0,0,3405,'2025-11-16',9834,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(76326,0,0,3405,'2025-11-16',9835,'10:00:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(76327,0,0,3405,'2025-11-16',9836,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(76328,0,0,3405,'2025-11-16',9837,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(76329,0,0,3405,'2025-11-15',9838,'13:39:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(76330,0,0,3405,'2025-11-15',9839,'13:39:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(76331,0,0,3405,'2025-11-15',9840,'13:39:00','WPRC','WPRC0077','PC ENEMA','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(76332,0,0,3405,'2025-11-15',9841,'13:39:00','WPRC','WPRC0091','FFP TRANSFUSION CHARGE','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(76333,0,0,3405,'2025-11-15',9842,'13:40:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(76334,0,0,3405,'2025-11-16',9843,'13:40:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(76335,0,0,3405,'2025-11-16',9844,'13:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(76336,0,0,3405,'2025-11-16',9845,'13:41:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(76337,0,0,3405,'2025-11-16',9846,'13:41:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(76338,0,0,3405,'2025-11-17',9935,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(76339,0,0,3405,'2025-11-17',9936,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(76340,0,0,3405,'2025-11-17',9937,'10:00:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(76341,0,0,3405,'2025-11-17',9938,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'207',0,'IPB',99,'Y','','',0,''),(76342,0,0,3405,'2025-11-17',9939,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'207',0,'IPB',99,'Y','','',0,''),(76343,0,0,3405,'2025-11-17',9940,'10:44:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(76344,0,0,3405,'2025-11-16',9941,'10:44:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(76345,0,0,3405,'2025-11-17',9942,'10:44:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(76346,0,0,3405,'2025-11-18',10171,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(76347,0,0,3405,'2025-11-18',10172,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(76348,0,0,3405,'2025-11-18',10173,'10:00:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(76349,0,0,3405,'2025-11-18',10174,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'207',0,'IPB',99,'Y','','',0,''),(76350,0,0,3405,'2025-11-18',10175,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'207',0,'IPB',99,'Y','','',0,''),(76351,0,0,3405,'2025-11-17',10180,'10:24:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(76352,0,0,3405,'2025-11-18',10181,'10:24:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(76353,0,0,3405,'2025-11-17',10182,'10:25:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(76354,0,0,3405,'2025-11-18',10183,'10:25:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(76355,0,0,3405,'2025-11-17',10184,'10:26:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,38,0,'',0,'IPB',99,'Y','','',0,''),(76356,0,0,3405,'2025-11-18',10325,'23:08:00','WPRC','WPRC0077','PC ENEMA','H',500,4.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(76357,0,0,3405,'2025-11-18',10326,'23:10:00','WPRC','WPRC0088','ENDOTRACHEAL INTUBATION','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,194,0,'',0,'IPB',99,'Y','','',0,''),(76358,0,0,3405,'2025-11-18',10327,'23:11:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(76359,0,0,3405,'2025-11-18',10328,'23:12:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(76360,0,0,3405,'2025-11-18',10329,'23:12:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(78220,0,0,3553,'2025-11-17',10135,'20:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(78221,0,0,3553,'2025-11-17',10136,'20:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(78222,0,0,3553,'2025-11-17',10137,'20:15:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(78223,0,0,3553,'2025-11-17',10138,'20:15:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(78224,0,0,3553,'2025-11-17',10139,'20:15:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(78225,0,0,3553,'2025-11-17',10141,'20:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'404',0,'IPB',99,'Y','','',0,''),(78226,0,0,3553,'2025-11-18',10423,'20:15:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(78227,0,0,3553,'2025-11-18',10424,'20:15:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(78228,0,0,3553,'2025-11-18',10425,'20:15:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(78229,0,0,3553,'2025-11-18',10426,'20:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'404',0,'IPB',99,'Y','','',0,''),(78230,0,0,3553,'2025-11-18',10427,'20:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'404',0,'IPB',99,'Y','','',0,''),(78231,0,0,3553,'2025-11-17',10537,'14:24:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(78232,0,0,3553,'2025-11-19',10549,'16:56:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(78233,0,0,3553,'2025-11-19',10550,'16:56:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(80800,0,0,2811,'2025-11-09',8388,'01:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(80801,0,0,2811,'2025-11-09',8389,'01:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(80802,0,0,2811,'2025-11-09',8390,'01:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(80803,0,0,2811,'2025-11-09',8391,'01:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(80804,0,0,2811,'2025-11-09',8392,'01:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(80805,0,0,2811,'2025-11-09',8393,'01:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'404',0,'IPB',99,'Y','','',0,''),(80806,0,0,2811,'2025-11-09',8394,'01:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'404',0,'IPB',99,'Y','','',0,''),(80807,0,0,2811,'2025-11-10',8574,'01:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80808,0,0,2811,'2025-11-10',8575,'01:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80809,0,0,2811,'2025-11-10',8576,'01:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80810,0,0,2811,'2025-11-10',8577,'01:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(80811,0,0,2811,'2025-11-10',8578,'01:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(80812,0,0,2811,'2025-11-11',8709,'01:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80813,0,0,2811,'2025-11-11',8710,'01:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80814,0,0,2811,'2025-11-11',8711,'01:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80815,0,0,2811,'2025-11-11',8712,'01:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(80816,0,0,2811,'2025-11-11',8713,'01:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(80817,0,0,2811,'2025-11-12',8894,'01:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80818,0,0,2811,'2025-11-12',8895,'01:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80819,0,0,2811,'2025-11-12',8896,'01:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80820,0,0,2811,'2025-11-12',8897,'01:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(80821,0,0,2811,'2025-11-12',8898,'01:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(80822,0,0,2811,'2025-11-11',8899,'10:21:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80823,0,0,2811,'2025-11-09',8989,'12:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80824,0,0,2811,'2025-11-10',8990,'12:40:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80825,0,0,2811,'2025-11-10',8991,'12:41:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80826,0,0,2811,'2025-11-11',8992,'12:41:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80827,0,0,2811,'2025-11-12',8993,'12:41:00','WPRC','WPRC0091','FFP TRANSFUSION CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80828,0,0,2811,'2025-11-09',8994,'12:42:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80829,0,0,2811,'2025-11-10',8995,'12:42:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80830,0,0,2811,'2025-11-10',8996,'12:42:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80831,0,0,2811,'2025-11-11',8997,'12:43:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80832,0,0,2811,'2025-11-11',8998,'12:43:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80833,0,0,2811,'2025-11-12',8999,'12:43:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80834,0,0,2811,'2025-11-12',9000,'12:44:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80835,0,0,2811,'2025-11-13',9243,'01:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80836,0,0,2811,'2025-11-13',9244,'01:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80837,0,0,2811,'2025-11-13',9245,'01:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80838,0,0,2811,'2025-11-13',9246,'01:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(80839,0,0,2811,'2025-11-13',9247,'01:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(80840,0,0,2811,'2025-11-14',9441,'01:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80841,0,0,2811,'2025-11-14',9442,'01:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80842,0,0,2811,'2025-11-14',9443,'01:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80843,0,0,2811,'2025-11-14',9444,'01:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(80844,0,0,2811,'2025-11-14',9445,'01:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(80845,0,0,2811,'2025-11-13',9447,'11:40:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80846,0,0,2811,'2025-11-13',9448,'11:40:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80847,0,0,2811,'2025-11-14',9449,'11:40:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80848,0,0,2811,'2025-11-14',9450,'11:41:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80849,0,0,2811,'2025-11-14',9579,'18:04:00','USG','USG0099','USG ABDOMEN WITH THORAX','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80850,0,0,2811,'2025-11-12',9594,'18:21:00','USG','USG0100','USG GUIDED PIGTAIL','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,177,0,'',0,'IPB',99,'Y','','',0,''),(80851,0,0,2811,'2025-11-12',9595,'18:26:00','USG','USG0101','PIGTAIL CATHETER INSERTION ','H',5000,1.00,5000.00,'A',0.00,0.00,5000.00,0.00,0.00,5000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80852,0,0,2811,'2025-11-15',9641,'01:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80853,0,0,2811,'2025-11-15',9642,'01:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80854,0,0,2811,'2025-11-15',9643,'01:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80855,0,0,2811,'2025-11-15',9644,'01:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(80856,0,0,2811,'2025-11-15',9645,'01:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(80857,0,0,2811,'2025-11-15',9704,'11:50:00','SURG','SURG0014','SURGERY CHARGE','H',50000,1.00,50000.00,'P',0.00,0.00,50000.00,0.00,0.00,50000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80858,0,0,2811,'2025-11-15',9705,'11:50:00','SURG','SURG0015','OT USAGE CHARGE','H',12500,1.00,12500.00,'P',0.00,0.00,12500.00,0.00,0.00,12500.00,8,0,'',0,'IPB',99,'Y','','',0,''),(80859,0,0,2811,'2025-11-16',9850,'01:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'208',0,'IPB',99,'Y','','',0,''),(80860,0,0,2811,'2025-11-16',9851,'01:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'208',0,'IPB',99,'Y','','',0,''),(80861,0,0,2811,'2025-11-15',9852,'13:44:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80862,0,0,2811,'2025-11-15',9853,'13:44:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80863,0,0,2811,'2025-11-15',9854,'13:45:00','WPRC','WPRC0091','FFP TRANSFUSION CHARGE','H',500,2.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80864,0,0,2811,'2025-11-15',9855,'13:46:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80865,0,0,2811,'2025-11-16',9856,'13:46:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,8,0,'',0,'IPB',99,'Y','','',0,''),(80866,0,0,2811,'2025-11-16',9857,'13:46:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80867,0,0,2811,'2025-11-16',9858,'13:47:00','XRY','XRY0045','X RAY CHARGES','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80868,0,0,2811,'2025-11-15',9859,'13:50:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80869,0,0,2811,'2025-11-15',9860,'13:50:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80870,0,0,2811,'2025-11-16',9861,'13:51:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80871,0,0,2811,'2025-11-15',9862,'13:53:00','WPRC','WPRC0097','2D ECHO','H',2500,1.00,2500.00,'P',0.00,0.00,2500.00,0.00,0.00,2500.00,62,0,'',0,'IPB',99,'Y','','',0,''),(80872,0,0,2811,'2025-11-15',9863,'13:56:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80873,0,0,2811,'2025-11-16',9873,'14:10:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80874,0,0,2811,'2025-11-16',9874,'14:10:00','CARE','CARE0005','RMO CHARGE - SPECIAL','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80875,0,0,2811,'2025-11-16',9875,'14:10:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80876,0,0,2811,'2025-11-17',10054,'01:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80877,0,0,2811,'2025-11-17',10055,'01:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80878,0,0,2811,'2025-11-17',10056,'01:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80879,0,0,2811,'2025-11-17',10057,'01:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(80880,0,0,2811,'2025-11-17',10058,'01:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(80881,0,0,2811,'2025-11-17',10061,'14:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80882,0,0,2811,'2025-11-18',10156,'01:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80883,0,0,2811,'2025-11-18',10157,'01:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80884,0,0,2811,'2025-11-18',10158,'01:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80885,0,0,2811,'2025-11-18',10159,'01:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(80886,0,0,2811,'2025-11-18',10160,'01:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(80887,0,0,2811,'2025-11-18',10161,'09:46:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80888,0,0,2811,'2025-11-18',10271,'14:17:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80889,0,0,2811,'2025-11-19',10393,'01:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80890,0,0,2811,'2025-11-19',10394,'01:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80891,0,0,2811,'2025-11-19',10395,'01:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(80892,0,0,2811,'2025-11-19',10396,'01:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(80893,0,0,2811,'2025-11-19',10397,'01:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(80894,0,0,2811,'2025-11-18',10695,'10:52:00','WPRC','WPRC0113','USG GUIDED PLURAL TAPPING','H',2500,1.00,2500.00,'P',0.00,0.00,2500.00,0.00,0.00,2500.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80895,0,0,2811,'2025-11-17',10696,'10:53:00','USG','USG0095','USG CHEST','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(80896,0,0,2811,'2025-11-20',10700,'10:56:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,8,0,'',0,'IPB',99,'Y','','',0,''),(80897,0,0,2811,'2025-11-19',10701,'10:56:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80898,0,0,2811,'2025-11-19',10702,'10:56:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(80899,0,0,2525,'2025-11-05',7548,'00:00:00','PKG','CASE','CONSULTATION CHARGE','H',700,1.00,700.00,'A',0.00,0.00,700.00,0.00,0.00,700.00,5,0,'',0,'',99,'Y','N','',0,''),(80900,0,0,2198,'2025-11-01',6723,'00:00:00','NEU1','NEU10015','PURE TONE AUDIOMETRY (PTA)','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'',99,'Y','N','',0,''),(80901,0,0,2198,'2025-11-01',6724,'00:00:00','NEU1','NEU10017','VIDEONYSTAGMOGRAPHY (VNG)','H',2500,1.00,2500.00,'P',0.00,0.00,2500.00,0.00,0.00,2500.00,9999,0,'',0,'',99,'Y','N','',0,''),(81160,0,0,3594,'2025-11-18',10248,'13:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(81161,0,0,3594,'2025-11-18',10249,'13:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(81162,0,0,3594,'2025-11-18',10250,'13:15:00','ROOM','ROOM0009','ROOM CHARGES (310)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'310',0,'IPB',99,'Y','','',0,''),(81163,0,0,3594,'2025-11-18',10251,'13:15:00','AECO','AECO0008','RMO CHARGES DAY (310)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'310',0,'IPB',99,'Y','','',0,''),(81164,0,0,3594,'2025-11-18',10252,'13:15:00','CARE','CARE0001','NURSING CHARGES (310)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'310',0,'IPB',99,'Y','','',0,''),(81165,0,0,3594,'2025-11-18',10254,'13:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (310)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'310',0,'IPB',99,'Y','','',0,''),(81166,0,0,3594,'2025-11-18',10486,'12:24:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81167,0,0,3594,'2025-11-18',10487,'12:24:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81168,0,0,3594,'2025-11-19',10488,'12:25:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81169,0,0,3594,'2025-11-19',10524,'13:15:00','ROOM','ROOM0009','ROOM CHARGES (310)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'310',0,'IPB',99,'Y','','',0,''),(81170,0,0,3594,'2025-11-19',10525,'13:15:00','AECO','AECO0008','RMO CHARGES DAY (310)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'310',0,'IPB',99,'Y','','',0,''),(81171,0,0,3594,'2025-11-19',10526,'13:15:00','CARE','CARE0001','NURSING CHARGES (310)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'310',0,'IPB',99,'Y','','',0,''),(81172,0,0,3594,'2025-11-19',10527,'13:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (310)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'310',0,'IPB',99,'Y','','',0,''),(81173,0,0,3594,'2025-11-19',10528,'13:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (310)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'310',0,'IPB',99,'Y','','',0,''),(81174,0,0,3594,'2025-11-20',10778,'12:11:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81175,0,0,3594,'2025-11-20',10779,'12:11:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(81188,0,0,3623,'2025-11-19',10331,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(81189,0,0,3623,'2025-11-19',10332,'09:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(81190,0,0,3623,'2025-11-19',10334,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(81191,0,0,3623,'2025-11-19',10335,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(81192,0,0,3623,'2025-11-19',10336,'09:30:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(81193,0,0,3623,'2025-11-19',10337,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(81194,0,0,3623,'2025-11-19',10338,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(81195,0,0,3623,'2025-11-20',10747,'11:34:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(81196,0,0,3623,'2025-11-19',10748,'11:34:00','SURG','SURG0014','SURGERY CHARGE','H',21400,1.00,21400.00,'P',0.00,0.00,21400.00,0.00,0.00,21400.00,3,0,'',0,'IPB',99,'Y','','',0,''),(81197,0,0,3623,'2025-11-19',10749,'11:34:00','SURG','SURG0015','OT USAGE CHARGE','H',7100,1.00,7100.00,'P',0.00,0.00,7100.00,0.00,0.00,7100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(81198,0,0,3623,'2025-11-20',10753,'11:37:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(81199,0,0,3591,'2025-11-18',10237,'13:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(81200,0,0,3591,'2025-11-18',10238,'13:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(81201,0,0,3591,'2025-11-18',10239,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(81202,0,0,3591,'2025-11-18',10240,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(81203,0,0,3591,'2025-11-18',10241,'13:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(81204,0,0,3591,'2025-11-18',10243,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'208',0,'IPB',99,'Y','','',0,''),(81205,0,0,3591,'2025-11-18',10376,'10:29:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81206,0,0,3591,'2025-11-18',10377,'10:29:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81207,0,0,3591,'2025-11-19',10378,'10:29:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81208,0,0,3591,'2025-11-18',10379,'10:29:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81209,0,0,3591,'2025-11-19',10380,'10:30:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81210,0,0,3591,'2025-11-19',10519,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(81211,0,0,3591,'2025-11-19',10520,'13:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(81212,0,0,3591,'2025-11-19',10522,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(81213,0,0,3591,'2025-11-19',10523,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(81214,0,0,3591,'2025-11-20',10800,'12:35:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(81215,0,0,3591,'2025-11-20',10801,'12:36:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81216,0,0,3591,'2025-11-19',10802,'12:36:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81217,0,0,3591,'2025-11-20',10804,'12:37:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81218,0,0,3468,'2025-11-16',9810,'09:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(81219,0,0,3468,'2025-11-16',9811,'09:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(81220,0,0,3468,'2025-11-16',9812,'09:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(81221,0,0,3468,'2025-11-16',9813,'09:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(81222,0,0,3468,'2025-11-16',9814,'09:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(81223,0,0,3468,'2025-11-16',9815,'09:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(81224,0,0,3468,'2025-11-16',9816,'09:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(81225,0,0,3468,'2025-11-17',9947,'09:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'209',0,'IPB',99,'Y','','',0,''),(81226,0,0,3468,'2025-11-17',9948,'09:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'209',0,'IPB',99,'Y','','',0,''),(81227,0,0,3468,'2025-11-16',9949,'10:49:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81228,0,0,3468,'2025-11-16',9950,'10:50:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81229,0,0,3468,'2025-11-16',9951,'10:50:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(81230,0,0,3468,'2025-11-17',9952,'10:50:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81231,0,0,3468,'2025-11-16',9953,'10:50:00','XRY','XRY0045','X RAY CHARGES','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81232,0,0,3468,'2025-11-16',9954,'10:51:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81233,0,0,3468,'2025-11-16',9955,'10:51:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81234,0,0,3468,'2025-11-17',9956,'10:51:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81235,0,0,3468,'2025-11-17',10018,'12:41:00','ROOM','ROOM0003','BED CHARGES - SPECIAL ROOM','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81236,0,0,3468,'2025-11-17',10019,'12:41:00','CARE','CARE0005','RMO CHARGE - SPECIAL','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81237,0,0,3468,'2025-11-17',10020,'12:42:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81238,0,0,3468,'2025-11-17',10063,'14:13:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81239,0,0,3468,'2025-11-18',10162,'09:00:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(81240,0,0,3468,'2025-11-18',10163,'09:00:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(81241,0,0,3468,'2025-11-18',10164,'09:00:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(81242,0,0,3468,'2025-11-18',10165,'09:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'408',0,'IPB',99,'Y','','',0,''),(81243,0,0,3468,'2025-11-18',10166,'09:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'408',0,'IPB',99,'Y','','',0,''),(81244,0,0,3468,'2025-11-18',10167,'09:51:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81245,0,0,3468,'2025-11-19',10403,'09:00:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(81246,0,0,3468,'2025-11-19',10404,'09:00:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(81247,0,0,3468,'2025-11-19',10405,'09:00:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(81248,0,0,3468,'2025-11-19',10406,'09:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(81249,0,0,3468,'2025-11-19',10407,'09:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(81250,0,0,3468,'2025-11-17',10782,'12:13:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81251,0,0,3468,'2025-11-19',10783,'12:13:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81252,0,0,3468,'2025-11-19',10784,'12:13:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(81253,0,0,3468,'2025-11-20',10785,'12:14:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81254,0,0,3468,'2025-11-20',10786,'12:15:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(81474,0,0,3566,'2025-11-18',10200,'11:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(81475,0,0,3566,'2025-11-18',10201,'11:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(81476,0,0,3566,'2025-11-18',10278,'11:00:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(81477,0,0,3566,'2025-11-18',10279,'11:00:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(81478,0,0,3566,'2025-11-18',10280,'11:00:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(81479,0,0,3566,'2025-11-18',10281,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(81480,0,0,3566,'2025-11-18',10282,'11:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(81481,0,0,3566,'2025-11-19',10438,'11:00:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(81482,0,0,3566,'2025-11-19',10439,'11:00:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(81483,0,0,3566,'2025-11-19',10440,'11:00:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(81484,0,0,3566,'2025-11-19',10441,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(81485,0,0,3566,'2025-11-19',10442,'11:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(81486,0,0,3566,'2025-11-18',10819,'14:04:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81487,0,0,3566,'2025-11-20',10820,'14:04:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(81488,0,0,3566,'2025-11-18',10821,'14:04:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,3,0,'',0,'IPB',99,'Y','','',0,''),(81489,0,0,3566,'2025-11-20',10822,'14:05:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(81490,0,0,3566,'2025-11-20',10823,'14:07:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(81491,0,0,3566,'2025-11-19',10824,'14:24:00','SURG','SURG0014','SURGERY CHARGE','H',51220,1.00,51220.00,'P',0.00,0.00,51220.00,0.00,0.00,51220.00,3,0,'',0,'IPB',99,'Y','','',0,''),(81492,0,0,3566,'2025-11-19',10825,'14:24:00','SURG','SURG0015','OT USAGE CHARGE','H',17000,1.00,17000.00,'P',0.00,0.00,17000.00,0.00,0.00,17000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(83531,0,0,3759,'2025-11-20',10658,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(83532,0,0,3759,'2025-11-20',10659,'09:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(83533,0,0,3759,'2025-11-20',10663,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'409',0,'IPB',99,'Y','','',0,''),(83534,0,0,3759,'2025-11-20',10664,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'409',0,'IPB',99,'Y','','',0,''),(83535,0,0,3759,'2025-11-20',10866,'17:03:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(83536,0,0,3759,'2025-11-20',10867,'17:03:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(83537,0,0,3759,'2025-11-20',10954,'19:11:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(83538,0,0,3759,'2025-11-20',10955,'19:12:00','CARE','CARE0007','DAY CARE CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(83539,0,0,3759,'2025-11-20',10956,'19:12:00','SURG','SURG0014','SURGERY CHARGE','H',11000,1.00,11000.00,'P',0.00,0.00,11000.00,0.00,0.00,11000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(83540,0,0,3759,'2025-11-20',10957,'19:12:00','SURG','SURG0015','OT USAGE CHARGE','H',3700,1.00,3700.00,'P',0.00,0.00,3700.00,0.00,0.00,3700.00,3,0,'',0,'IPB',99,'Y','','',0,''),(84104,0,0,3474,'2025-11-16',9912,'18:20:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(84105,0,0,3474,'2025-11-16',9913,'18:20:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(84106,0,0,3474,'2025-11-16',9966,'18:20:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(84107,0,0,3474,'2025-11-16',9967,'18:20:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(84108,0,0,3474,'2025-11-16',9968,'18:20:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(84109,0,0,3474,'2025-11-16',9969,'18:20:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(84110,0,0,3474,'2025-11-16',9971,'11:01:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84111,0,0,3474,'2025-11-17',9972,'11:01:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84112,0,0,3474,'2025-11-17',9973,'11:01:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84113,0,0,3474,'2025-11-16',9975,'11:04:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84114,0,0,3474,'2025-11-17',9976,'11:05:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84115,0,0,3474,'2025-11-16',9977,'11:05:00','XRY','XRY0045','X RAY CHARGES','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84116,0,0,3474,'2025-11-16',9978,'11:06:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84117,0,0,3474,'2025-11-17',9979,'11:06:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84118,0,0,3474,'2025-11-16',9980,'11:06:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84119,0,0,3474,'2025-11-17',9981,'11:06:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84120,0,0,3474,'2025-11-17',9983,'11:07:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84121,0,0,3474,'2025-11-16',9984,'11:07:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84122,0,0,3474,'2025-11-17',10114,'18:20:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(84123,0,0,3474,'2025-11-17',10115,'18:20:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(84124,0,0,3474,'2025-11-17',10116,'18:20:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'208',0,'IPB',99,'Y','','',0,''),(84125,0,0,3474,'2025-11-17',10117,'18:20:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'208',0,'IPB',99,'Y','','',0,''),(84126,0,0,3474,'2025-11-17',10118,'18:20:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(84127,0,0,3474,'2025-11-17',10193,'10:35:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(84128,0,0,3474,'2025-11-18',10194,'10:36:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84129,0,0,3474,'2025-11-17',10195,'10:36:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84130,0,0,3474,'2025-11-18',10197,'10:38:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84131,0,0,3474,'2025-11-18',10413,'18:20:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(84132,0,0,3474,'2025-11-18',10414,'18:20:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(84133,0,0,3474,'2025-11-18',10416,'18:20:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'406',0,'IPB',99,'Y','','',0,''),(84134,0,0,3474,'2025-11-18',10417,'18:20:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(84135,0,0,3474,'2025-11-19',10506,'13:00:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84136,0,0,3474,'2025-11-19',10507,'13:00:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84137,0,0,3474,'2025-11-19',10508,'13:02:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84138,0,0,3474,'2025-11-19',10846,'18:20:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(84139,0,0,3474,'2025-11-19',10847,'18:20:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(84140,0,0,3474,'2025-11-19',10848,'18:20:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(84141,0,0,3474,'2025-11-19',10849,'18:20:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(84142,0,0,3474,'2025-11-19',10850,'18:20:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(84143,0,0,3474,'2025-11-20',10969,'18:20:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(84144,0,0,3474,'2025-11-20',10970,'18:20:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(84145,0,0,3474,'2025-11-20',10971,'20:19:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84146,0,0,3474,'2025-11-20',10972,'20:27:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84147,0,0,3474,'2025-11-18',10973,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'',0,'IPB',99,'Y','','',0,''),(84249,0,0,3595,'2025-11-18',10255,'13:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(84250,0,0,3595,'2025-11-18',10256,'13:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(84251,0,0,3595,'2025-11-18',10257,'13:15:00','ROOM','ROOM0009','ROOM CHARGES (311)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'311',0,'IPB',99,'Y','','',0,''),(84252,0,0,3595,'2025-11-18',10258,'13:15:00','AECO','AECO0008','RMO CHARGES DAY (311)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'311',0,'IPB',99,'Y','','',0,''),(84253,0,0,3595,'2025-11-18',10259,'13:15:00','CARE','CARE0001','NURSING CHARGES (311)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'311',0,'IPB',99,'Y','','',0,''),(84254,0,0,3595,'2025-11-19',10260,'13:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (311)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'311',0,'IPB',99,'Y','','',0,''),(84255,0,0,3595,'2025-11-18',10261,'13:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (311)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'311',0,'IPB',99,'Y','','',0,''),(84256,0,0,3595,'2025-11-18',10483,'12:22:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84257,0,0,3595,'2025-11-18',10484,'12:22:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(84258,0,0,3595,'2025-11-19',10485,'12:22:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(86576,0,0,3763,'2025-11-20',10669,'03:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(86577,0,0,3763,'2025-11-20',10670,'03:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(86578,0,0,3763,'2025-11-20',10671,'03:00:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(86579,0,0,3763,'2025-11-20',10672,'03:00:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(86580,0,0,3763,'2025-11-20',10673,'03:00:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(86581,0,0,3763,'2025-11-20',10674,'03:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(86582,0,0,3763,'2025-11-20',10675,'03:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(86583,0,0,3763,'2025-11-21',11091,'03:00:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(86584,0,0,3763,'2025-11-21',11092,'03:00:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(86585,0,0,3763,'2025-11-21',11093,'03:00:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(86586,0,0,3763,'2025-11-21',11094,'03:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'411',0,'IPB',99,'Y','','',0,''),(86587,0,0,3763,'2025-11-21',11095,'03:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'411',0,'IPB',99,'Y','','',0,''),(86588,0,0,3763,'2025-11-21',11129,'15:46:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(86589,0,0,3763,'2025-11-21',11130,'15:47:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(86590,0,0,3763,'2025-11-21',11131,'15:47:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,37,0,'',0,'IPB',99,'Y','','',0,''),(87396,0,0,3348,'2025-11-14',9507,'13:36:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(87397,0,0,3348,'2025-11-14',9508,'13:36:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(87398,0,0,3348,'2025-11-14',9509,'13:36:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87399,0,0,3348,'2025-11-14',9510,'13:36:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87400,0,0,3348,'2025-11-14',9511,'13:36:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87401,0,0,3348,'2025-11-14',9512,'13:36:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(87402,0,0,3348,'2025-11-14',9513,'13:36:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(87403,0,0,3348,'2025-11-15',9741,'13:36:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87404,0,0,3348,'2025-11-15',9742,'13:36:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87405,0,0,3348,'2025-11-15',9743,'13:36:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87406,0,0,3348,'2025-11-15',9744,'13:36:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(87407,0,0,3348,'2025-11-15',9745,'13:36:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(87408,0,0,3348,'2025-11-14',9746,'16:29:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87409,0,0,3348,'2025-11-14',9747,'16:29:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(87410,0,0,3348,'2025-11-14',9748,'16:29:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87411,0,0,3348,'2025-11-16',9881,'13:36:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87412,0,0,3348,'2025-11-16',9882,'13:36:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87413,0,0,3348,'2025-11-16',9883,'13:36:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87414,0,0,3348,'2025-11-16',9884,'13:36:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(87415,0,0,3348,'2025-11-16',9885,'13:36:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(87416,0,0,3348,'2025-11-15',9886,'14:36:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87417,0,0,3348,'2025-11-16',9887,'14:36:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87418,0,0,3348,'2025-11-15',9888,'14:39:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87419,0,0,3348,'2025-11-16',9889,'14:39:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87420,0,0,3348,'2025-11-17',10046,'13:36:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87421,0,0,3348,'2025-11-17',10047,'13:36:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87422,0,0,3348,'2025-11-17',10048,'13:36:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87423,0,0,3348,'2025-11-17',10049,'13:36:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'412',0,'IPB',99,'Y','','',0,''),(87424,0,0,3348,'2025-11-17',10050,'13:36:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'412',0,'IPB',99,'Y','','',0,''),(87425,0,0,3348,'2025-11-17',10052,'14:05:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87426,0,0,3348,'2025-11-17',10053,'14:06:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87427,0,0,3348,'2025-11-15',10062,'14:12:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87428,0,0,3348,'2025-11-18',10168,'09:53:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87429,0,0,3348,'2025-11-18',10169,'09:53:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87430,0,0,3348,'2025-11-18',10398,'13:36:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87431,0,0,3348,'2025-11-18',10399,'13:36:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87432,0,0,3348,'2025-11-18',10400,'13:36:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'412',0,'IPB',99,'Y','','',0,''),(87433,0,0,3348,'2025-11-18',10401,'13:36:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'412',0,'IPB',99,'Y','','',0,''),(87434,0,0,3348,'2025-11-18',10402,'13:36:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87435,0,0,3348,'2025-11-19',10501,'12:57:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87436,0,0,3348,'2025-11-19',10502,'12:57:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87437,0,0,3348,'2025-11-18',10503,'12:58:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,37,0,'',0,'IPB',99,'Y','','',0,''),(87438,0,0,3348,'2025-11-20',10836,'13:36:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87439,0,0,3348,'2025-11-19',10837,'13:36:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87440,0,0,3348,'2025-11-20',10838,'13:36:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87441,0,0,3348,'2025-11-19',10839,'13:36:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87442,0,0,3348,'2025-11-20',10840,'13:36:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87443,0,0,3348,'2025-11-19',10841,'13:36:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(87444,0,0,3348,'2025-11-20',10842,'13:36:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(87445,0,0,3348,'2025-11-19',10843,'13:36:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(87446,0,0,3348,'2025-11-20',10844,'13:36:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(87447,0,0,3348,'2025-11-19',10845,'13:36:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87448,0,0,3348,'2025-11-21',11065,'13:21:00','XRY','XRY0017','X-RAY BOTH KNEE AP STANDING','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87449,0,0,3348,'2025-11-21',11076,'13:36:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87450,0,0,3348,'2025-11-21',11077,'13:36:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87451,0,0,3348,'2025-11-21',11078,'13:36:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(87452,0,0,3348,'2025-11-21',11079,'13:36:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(87453,0,0,3348,'2025-11-21',11080,'13:36:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(87454,0,0,3348,'2025-11-20',11132,'15:49:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87455,0,0,3348,'2025-11-21',11133,'15:49:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87456,0,0,3348,'2025-11-20',11134,'15:49:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87457,0,0,3348,'2025-11-21',11135,'15:49:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87458,0,0,3348,'2025-11-20',11136,'15:50:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,7,0,'',0,'IPB',99,'Y','','',0,''),(87459,0,0,3348,'2025-11-21',11137,'15:50:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,20,0,'',0,'IPB',99,'Y','','',0,''),(87460,0,0,3348,'2025-11-22',11330,'13:03:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87461,0,0,3348,'2025-11-22',11331,'13:05:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87462,0,0,3348,'2025-11-22',11332,'13:09:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(87521,0,0,3902,'2025-11-21',11049,'11:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(87522,0,0,3902,'2025-11-21',11050,'11:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(87523,0,0,3902,'2025-11-21',11051,'11:00:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(87524,0,0,3902,'2025-11-21',11052,'11:00:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(87525,0,0,3902,'2025-11-21',11053,'11:00:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(87526,0,0,3902,'2025-11-21',11054,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(87527,0,0,3902,'2025-11-21',11055,'11:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(87528,0,0,3902,'2025-11-22',11300,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(87529,0,0,3902,'2025-11-21',11302,'12:15:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87530,0,0,3902,'2025-11-21',11303,'12:15:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',200,2.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(87531,0,0,3902,'2025-11-21',11304,'12:15:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,5,0,'',0,'IPB',99,'Y','','',0,''),(87532,0,0,3902,'2025-11-22',11305,'12:15:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(89344,0,0,3621,'2025-11-18',10318,'21:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(89345,0,0,3621,'2025-11-18',10319,'21:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(89346,0,0,3621,'2025-11-18',10320,'21:30:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(89347,0,0,3621,'2025-11-18',10321,'21:30:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(89348,0,0,3621,'2025-11-18',10322,'21:30:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(89349,0,0,3621,'2025-11-18',10366,'10:26:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(89350,0,0,3621,'2025-11-18',10367,'10:26:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(89351,0,0,3621,'2025-11-18',10368,'10:26:00','WPRC','WPRC0106','GASTRIC LAVAGE ','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(89352,0,0,3621,'2025-11-18',10369,'10:26:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(89353,0,0,3621,'2025-11-19',10370,'10:27:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(89354,0,0,3621,'2025-11-19',10371,'10:27:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(89355,0,0,3621,'2025-11-18',10372,'10:27:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(89356,0,0,3621,'2025-11-19',10373,'10:27:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(89357,0,0,3621,'2025-11-18',10374,'10:28:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,37,0,'',0,'IPB',99,'Y','','',0,''),(89358,0,0,3621,'2025-11-19',10754,'21:30:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(89359,0,0,3621,'2025-11-19',10755,'21:30:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(89360,0,0,3621,'2025-11-19',10756,'21:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(89361,0,0,3621,'2025-11-19',10757,'21:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(89362,0,0,3621,'2025-11-19',10758,'21:30:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(89363,0,0,3621,'2025-11-19',10759,'11:40:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(89364,0,0,3621,'2025-11-19',10760,'11:41:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(89365,0,0,3621,'2025-11-20',10761,'11:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(89366,0,0,3621,'2025-11-20',10762,'11:42:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(89367,0,0,3621,'2025-11-20',11086,'21:30:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(89368,0,0,3621,'2025-11-20',11087,'21:30:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(89369,0,0,3621,'2025-11-20',11088,'21:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'407',0,'IPB',99,'Y','','',0,''),(89370,0,0,3621,'2025-11-20',11089,'21:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','','',0,''),(89371,0,0,3621,'2025-11-20',11090,'21:30:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(89372,0,0,3621,'2025-11-20',11127,'15:43:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(89373,0,0,3621,'2025-11-21',11128,'15:44:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(89374,0,0,3621,'2025-11-21',11365,'21:30:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(89375,0,0,3621,'2025-11-21',11366,'21:30:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(89376,0,0,3621,'2025-11-21',11367,'21:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','','',0,''),(89377,0,0,3621,'2025-11-21',11368,'21:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','','',0,''),(89378,0,0,3621,'2025-11-21',11369,'21:30:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(89379,0,0,3621,'2025-11-22',11370,'16:19:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(89380,0,0,3621,'2025-11-22',11420,'21:30:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(89381,0,0,3621,'2025-11-22',11421,'21:30:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(89382,0,0,3621,'2025-11-22',11422,'21:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','','',0,''),(89383,0,0,3621,'2025-11-22',11423,'21:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','','',0,''),(89384,0,0,3621,'2025-11-22',11424,'21:30:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(89385,0,0,3621,'2025-11-23',11429,'10:29:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(89386,0,0,3621,'2025-11-23',11430,'10:31:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(90909,0,0,3473,'2025-11-16',9905,'17:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(90910,0,0,3473,'2025-11-16',9906,'17:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(90911,0,0,3473,'2025-11-16',9907,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90912,0,0,3473,'2025-11-16',9908,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90913,0,0,3473,'2025-11-16',9909,'17:30:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90914,0,0,3473,'2025-11-16',10065,'14:15:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(90915,0,0,3473,'2025-11-16',10066,'14:15:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(90916,0,0,3473,'2025-11-16',10067,'14:16:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,188,0,'',0,'IPB',99,'Y','','',0,''),(90917,0,0,3473,'2025-11-17',10095,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90918,0,0,3473,'2025-11-17',10096,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90919,0,0,3473,'2025-11-17',10097,'17:30:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90920,0,0,3473,'2025-11-17',10098,'17:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'405',0,'IPB',99,'Y','','',0,''),(90921,0,0,3473,'2025-11-17',10099,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'405',0,'IPB',99,'Y','','',0,''),(90922,0,0,3473,'2025-11-18',10216,'11:52:00','XRY','XRY0045','X RAY CHARGES','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(90923,0,0,3473,'2025-11-18',10408,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90924,0,0,3473,'2025-11-18',10409,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90925,0,0,3473,'2025-11-18',10410,'17:30:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90926,0,0,3473,'2025-11-18',10411,'17:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'405',0,'IPB',99,'Y','','',0,''),(90927,0,0,3473,'2025-11-18',10412,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'405',0,'IPB',99,'Y','','',0,''),(90928,0,0,3473,'2025-11-19',10447,'11:23:00','SURG','SURG0014','SURGERY CHARGE','H',60000,1.00,60000.00,'P',0.00,0.00,60000.00,0.00,0.00,60000.00,188,0,'',0,'IPB',99,'Y','','',0,''),(90929,0,0,3473,'2025-11-19',10448,'11:23:00','SURG','SURG0015','OT USAGE CHARGE','H',15000,1.00,15000.00,'P',0.00,0.00,15000.00,0.00,0.00,15000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(90930,0,0,3473,'2025-11-19',10635,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,0.50,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90931,0,0,3473,'2025-11-19',10636,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,0.50,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90932,0,0,3473,'2025-11-19',10637,'17:30:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,0.50,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90933,0,0,3473,'2025-11-19',10640,'21:19:00','CARE','CARE0003','NURSING CHARGES - ICU','H',600,0.50,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(90934,0,0,3473,'2025-11-19',10641,'21:20:00','CARE','CARE0004','RMO CHARGES - ICU','H',800,0.50,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(90935,0,0,3473,'2025-11-19',10642,'21:20:00','ROOM','ROOM0009','ROOM CHARGES','H',5500,0.50,2750.00,'P',0.00,0.00,2750.00,0.00,0.00,2750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(90936,0,0,3473,'2025-11-19',10643,'21:21:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(90937,0,0,3473,'2025-11-19',10644,'21:21:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(90938,0,0,3473,'2025-11-18',10645,'21:22:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,188,0,'',0,'IPB',99,'Y','','',0,''),(90939,0,0,3473,'2025-11-18',10646,'21:23:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(90940,0,0,3473,'2025-11-19',10647,'21:23:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(90941,0,0,3473,'2025-11-19',10648,'21:24:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(90942,0,0,3473,'2025-11-19',10649,'21:24:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(90943,0,0,3473,'2025-11-20',10893,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90944,0,0,3473,'2025-11-20',10894,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90945,0,0,3473,'2025-11-20',10895,'17:30:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90946,0,0,3473,'2025-11-20',10896,'17:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(90947,0,0,3473,'2025-11-20',10897,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(90948,0,0,3473,'2025-11-20',11149,'16:00:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(90949,0,0,3473,'2025-11-21',11150,'16:00:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(90950,0,0,3473,'2025-11-21',11151,'16:01:00','WPRC','WPRC0114','DRESSING CHARGE - MAJOR','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(90951,0,0,3473,'2025-11-20',11152,'16:03:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,188,0,'',0,'IPB',99,'Y','','',0,''),(90952,0,0,3473,'2025-11-21',11171,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90953,0,0,3473,'2025-11-21',11172,'17:30:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90954,0,0,3473,'2025-11-21',11173,'17:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(90955,0,0,3473,'2025-11-21',11174,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(90956,0,0,3473,'2025-11-21',11175,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90957,0,0,3473,'2025-11-22',11513,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90958,0,0,3473,'2025-11-22',11514,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90959,0,0,3473,'2025-11-22',11515,'17:30:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(90960,0,0,3473,'2025-11-22',11516,'17:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(90961,0,0,3473,'2025-11-22',11517,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(90962,0,0,3473,'2025-11-23',11518,'12:46:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(90963,0,0,3473,'2025-11-19',11534,'13:33:00','SURG','SURG0017','ASSISTANT SURGEON CHARGE','H',10000,1.00,10000.00,'P',0.00,0.00,10000.00,0.00,0.00,10000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(92693,0,0,4011,'2025-11-23',11408,'01:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(92694,0,0,4011,'2025-11-23',11409,'01:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(92695,0,0,4011,'2025-11-23',11410,'01:30:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(92696,0,0,4011,'2025-11-23',11411,'01:30:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(92697,0,0,4011,'2025-11-23',11412,'01:30:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(92698,0,0,4011,'2025-11-23',11413,'01:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'411',0,'IPB',99,'Y','','',0,''),(92699,0,0,4011,'2025-11-23',11414,'01:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'411',0,'IPB',99,'Y','','',0,''),(92700,0,0,4011,'2025-11-24',11608,'01:30:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(92701,0,0,4011,'2025-11-24',11609,'01:30:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(92702,0,0,4011,'2025-11-24',11610,'01:30:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(92703,0,0,4011,'2025-11-24',11611,'01:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'411',0,'IPB',99,'Y','','',0,''),(92704,0,0,4011,'2025-11-23',11614,'09:46:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(92836,0,0,3954,'2025-11-22',11219,'22:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(92837,0,0,3954,'2025-11-22',11220,'22:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(92838,0,0,3954,'2025-11-21',11335,'22:00:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(92839,0,0,3954,'2025-11-21',11336,'22:00:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(92840,0,0,3954,'2025-11-21',11337,'22:00:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(92841,0,0,3954,'2025-11-21',11340,'14:35:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(92842,0,0,3954,'2025-11-22',11342,'14:35:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(92843,0,0,3954,'2025-11-22',11343,'14:36:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(92844,0,0,3954,'2025-11-22',11529,'22:00:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(92845,0,0,3954,'2025-11-22',11530,'22:00:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(92846,0,0,3954,'2025-11-22',11531,'22:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'305',0,'IPB',99,'Y','','',0,''),(92847,0,0,3954,'2025-11-22',11532,'22:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'305',0,'IPB',99,'Y','','',0,''),(92848,0,0,3954,'2025-11-22',11533,'22:00:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(92849,0,0,3954,'2025-11-22',11564,'17:32:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,9.00,900.00,'P',0.00,0.00,900.00,0.00,0.00,900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(92850,0,0,3954,'2025-11-21',11565,'17:32:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(92851,0,0,3954,'2025-11-23',11566,'17:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(92852,0,0,3954,'2025-11-21',11567,'17:33:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(92853,0,0,3954,'2025-11-23',11634,'22:00:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(92854,0,0,3954,'2025-11-23',11635,'22:00:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(92855,0,0,3954,'2025-11-23',11636,'22:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(92856,0,0,3954,'2025-11-23',11637,'22:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(92857,0,0,3954,'2025-11-23',11638,'22:00:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(92858,0,0,3954,'2025-11-24',11639,'10:00:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(92859,0,0,3954,'2025-11-24',11759,'12:13:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(93784,0,0,4018,'2025-11-23',11568,'18:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(93785,0,0,4018,'2025-11-23',11569,'18:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(93786,0,0,4018,'2025-11-23',11570,'18:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(93787,0,0,4018,'2025-11-23',11571,'18:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(93788,0,0,4018,'2025-11-23',11572,'18:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(93789,0,0,4018,'2025-11-23',11574,'18:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(93790,0,0,4018,'2025-11-23',11690,'11:15:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(93791,0,0,4018,'2025-11-23',11691,'11:15:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(93792,0,0,4018,'2025-11-24',11692,'11:15:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(93793,0,0,4018,'2025-11-24',11891,'18:49:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(95528,0,0,4010,'2025-11-23',11401,'03:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(95529,0,0,4010,'2025-11-23',11402,'03:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(95530,0,0,4010,'2025-11-23',11403,'03:00:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(95531,0,0,4010,'2025-11-23',11404,'03:00:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(95532,0,0,4010,'2025-11-23',11405,'03:00:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(95533,0,0,4010,'2025-11-23',11406,'03:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(95534,0,0,4010,'2025-11-23',11407,'03:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(95535,0,0,4010,'2025-11-24',11620,'03:00:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(95536,0,0,4010,'2025-11-24',11621,'03:00:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(95537,0,0,4010,'2025-11-24',11622,'03:00:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(95538,0,0,4010,'2025-11-24',11623,'03:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','','',0,''),(95539,0,0,4010,'2025-11-24',11624,'03:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','','',0,''),(95540,0,0,4010,'2025-11-23',11626,'09:50:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(95541,0,0,4010,'2025-11-23',11627,'09:50:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(95542,0,0,4010,'2025-11-23',11628,'09:52:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(95543,0,0,4010,'2025-11-24',11629,'09:52:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(95544,0,0,4010,'2025-11-23',11632,'09:57:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,213,0,'',0,'IPB',99,'Y','','',0,''),(95545,0,0,4010,'2025-11-23',11633,'09:59:00','XRY','XRY0045','X RAY CHARGES','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(95546,0,0,4010,'2025-11-23',12193,'21:13:00','USG','USG0091','USG ABDOMEN WITH PELVIS','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(95547,0,0,4010,'2025-11-24',12194,'21:13:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(95548,0,0,4010,'2025-11-23',12195,'21:13:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(96654,0,0,4020,'2025-11-24',11582,'08:50:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(96655,0,0,4020,'2025-11-24',11583,'08:50:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(96656,0,0,4020,'2025-11-24',11584,'08:50:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(96657,0,0,4020,'2025-11-24',11585,'08:50:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(96658,0,0,4020,'2025-11-24',11586,'08:50:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(96659,0,0,4020,'2025-11-24',11587,'08:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'409',0,'IPB',99,'Y','','',0,''),(96660,0,0,4020,'2025-11-24',11588,'08:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'409',0,'IPB',99,'Y','','',0,''),(96661,0,0,4020,'2025-11-25',12223,'08:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'409',0,'IPB',99,'Y','','',0,''),(96662,0,0,4020,'2025-11-24',12331,'11:59:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(96663,0,0,4020,'2025-11-25',12332,'11:59:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(96664,0,0,4020,'2025-11-24',12336,'12:04:00','SURG','SURG0014','SURGERY CHARGE','H',14000,1.00,14000.00,'P',0.00,0.00,14000.00,0.00,0.00,14000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(96665,0,0,4020,'2025-11-24',12337,'12:04:00','SURG','SURG0015','OT USAGE CHARGE','H',4400,1.00,4400.00,'P',0.00,0.00,4400.00,0.00,0.00,4400.00,3,0,'',0,'IPB',99,'Y','','',0,''),(97459,0,0,4092,'2025-11-24',11774,'01:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(97460,0,0,4092,'2025-11-24',11775,'01:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(97461,0,0,4092,'2025-11-24',11776,'01:00:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(97462,0,0,4092,'2025-11-24',11777,'01:00:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(97463,0,0,4092,'2025-11-24',11778,'01:00:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(97464,0,0,4092,'2025-11-24',11779,'01:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(97465,0,0,4092,'2025-11-24',11780,'01:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(97466,0,0,4092,'2025-11-24',12367,'14:00:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(97467,0,0,4092,'2025-11-24',12368,'14:00:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(97468,0,0,4092,'2025-11-25',12369,'14:00:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(97469,0,0,4092,'2025-11-25',12370,'14:00:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(99530,0,0,4154,'2025-09-30',12515,'18:51:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'P',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(99531,0,0,4154,'2025-09-30',12516,'18:51:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'P',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'IPB',1,'Y','','',0,''),(99532,0,0,4154,'2025-09-30',12517,'18:52:00','CARE','CARE0007','DAY CARE CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(99533,0,0,4154,'2025-09-30',12518,'18:53:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(99534,0,0,4154,'2025-09-30',12519,'18:53:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(99535,0,0,4154,'2025-09-30',12520,'18:53:00','SURG','SURG0014','SURGERY CHARGE','H',6200,1.00,6200.00,'P',0.00,0.00,6200.00,0.00,0.00,6200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(99536,0,0,4154,'2025-09-30',12521,'18:54:00','SURG','SURG0015','OT USAGE CHARGE','H',2100,1.00,2100.00,'P',0.00,0.00,2100.00,0.00,0.00,2100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(99862,0,0,3718,'2025-11-19',10583,'00:00:00','OPWD','OPWD0008','DRESSING - MINOR','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,3,0,'',0,'',99,'Y','N','',0,''),(99871,0,0,4271,'2025-11-26',12581,'00:00:00','OPWD','OPWD0008','DRESSING - MINOR','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,3,0,'',0,'',99,'','N','',0,''),(100253,0,0,4019,'2025-11-23',11575,'20:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(100254,0,0,4019,'2025-11-23',11576,'20:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(100255,0,0,4019,'2025-11-23',11577,'20:30:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(100256,0,0,4019,'2025-11-23',11578,'20:30:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(100257,0,0,4019,'2025-11-23',11579,'20:30:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(100258,0,0,4019,'2025-11-24',12215,'20:30:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(100259,0,0,4019,'2025-11-24',12216,'20:30:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(100260,0,0,4019,'2025-11-24',12217,'20:30:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(100261,0,0,4019,'2025-11-24',12218,'20:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(100262,0,0,4019,'2025-11-24',12219,'20:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(100263,0,0,4019,'2025-11-23',12439,'16:59:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(100264,0,0,4019,'2025-11-23',12440,'17:00:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(100265,0,0,4019,'2025-11-24',12441,'17:00:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(100266,0,0,4019,'2025-11-25',12442,'17:00:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(100267,0,0,4019,'2025-11-25',12626,'20:30:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(100268,0,0,4019,'2025-11-25',12627,'20:30:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(100269,0,0,4019,'2025-11-25',12628,'20:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(100270,0,0,4019,'2025-11-25',12629,'20:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(100271,0,0,4019,'2025-11-25',12630,'20:30:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(100272,0,0,4019,'2025-11-26',12631,'11:58:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(100273,0,0,4019,'2025-11-23',12634,'12:01:00','DRC','DRC0019','CONSULTANT VISIT 2','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(100366,0,0,4158,'2025-11-25',12198,'05:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(100367,0,0,4158,'2025-11-25',12199,'05:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(100368,0,0,4158,'2025-11-25',12200,'05:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(100369,0,0,4158,'2025-11-25',12201,'05:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(100370,0,0,4158,'2025-11-25',12202,'05:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(100371,0,0,4158,'2025-11-25',12203,'05:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(100372,0,0,4158,'2025-11-25',12204,'05:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(100373,0,0,4158,'2025-11-25',12639,'12:06:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(100374,0,0,4158,'2025-11-25',12640,'12:06:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(100375,0,0,4158,'2025-11-26',12641,'12:06:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(100376,0,0,4158,'2025-11-26',12642,'12:07:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(100377,0,0,4158,'2025-11-26',12643,'12:08:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,0.50,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(100378,0,0,4158,'2025-11-26',12644,'12:08:00','AECO','AECO0008','RMO CHARGES DAY','H',400,0.50,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(100379,0,0,4158,'2025-11-26',12645,'12:08:00','CARE','CARE0001','NURSING CHARGES','H',200,0.50,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(100603,0,0,4054,'2025-11-24',11677,'11:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(100604,0,0,4054,'2025-11-24',11678,'11:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(100605,0,0,4054,'2025-11-24',11679,'11:00:00','ROOM','ROOM0009','ROOM CHARGES (308)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(100606,0,0,4054,'2025-11-24',11680,'11:00:00','AECO','AECO0008','RMO CHARGES DAY (308)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(100607,0,0,4054,'2025-11-24',11681,'11:00:00','CARE','CARE0001','NURSING CHARGES (308)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(100608,0,0,4054,'2025-11-24',11682,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'308',0,'IPB',99,'Y','','',0,''),(100609,0,0,4054,'2025-11-24',11683,'11:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'308',0,'IPB',99,'Y','','',0,''),(100610,0,0,4054,'2025-11-25',12399,'11:00:00','ROOM','ROOM0009','ROOM CHARGES (308)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(100611,0,0,4054,'2025-11-25',12400,'11:00:00','AECO','AECO0008','RMO CHARGES DAY (308)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(100612,0,0,4054,'2025-11-25',12401,'11:00:00','CARE','CARE0001','NURSING CHARGES (308)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(100613,0,0,4054,'2025-11-25',12402,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (308)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'308',0,'IPB',99,'Y','','',0,''),(100614,0,0,4054,'2025-11-25',12403,'11:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'308',0,'IPB',99,'Y','','',0,''),(100615,0,0,4054,'2025-11-24',12404,'16:36:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(100616,0,0,4054,'2025-11-24',12405,'16:36:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(100617,0,0,4054,'2025-11-24',12406,'16:36:00','WPRC','WPRC0086','OXYGEN CHARGE','H',200,2.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(100618,0,0,4054,'2025-11-25',12407,'16:36:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(100619,0,0,4054,'2025-11-26',12652,'12:27:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(100620,0,0,4054,'2025-11-24',12662,'13:04:00','SURG','SURG0016','SURGERY CHARGE','H',35000,1.00,35000.00,'P',0.00,0.00,35000.00,0.00,0.00,35000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(100621,0,0,4054,'2025-11-26',12663,'13:04:00','SURG','SURG0015','OT USAGE CHARGE','H',12100,1.00,12100.00,'P',0.00,0.00,12100.00,0.00,0.00,12100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(102399,0,0,3517,'2025-11-17',10027,'13:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(102400,0,0,3517,'2025-11-17',10028,'13:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(102401,0,0,3517,'2025-11-17',10033,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(102402,0,0,3517,'2025-11-17',10034,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(102403,0,0,3517,'2025-11-17',10035,'13:00:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(102404,0,0,3517,'2025-11-17',10037,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,70,0,'402',0,'IPB',99,'Y','','',0,''),(102405,0,0,3517,'2025-11-17',10155,'09:45:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102406,0,0,3517,'2025-11-18',10215,'11:51:00','XRY','XRY0045','X RAY CHARGES','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102407,0,0,3517,'2025-11-18',10418,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(102408,0,0,3517,'2025-11-18',10419,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(102409,0,0,3517,'2025-11-18',10420,'13:00:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(102410,0,0,3517,'2025-11-18',10421,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,70,0,'402',0,'IPB',99,'Y','','',0,''),(102411,0,0,3517,'2025-11-18',10422,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(102412,0,0,3517,'2025-11-19',10518,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(102413,0,0,3517,'2025-11-19',10532,'13:35:00','SURG','SURG0014','SURGERY CHARGE','H',50000,1.00,50000.00,'P',0.00,0.00,50000.00,0.00,0.00,50000.00,70,0,'',0,'IPB',99,'Y','','',0,''),(102414,0,0,3517,'2025-11-19',10533,'13:36:00','SURG','SURG0017','ASSISTANT SURGEON CHARGE','H',50000,1.00,50000.00,'P',0.00,0.00,50000.00,0.00,0.00,50000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(102415,0,0,3517,'2025-11-19',10534,'13:37:00','SURG','SURG0015','OT USAGE CHARGE','H',25000,1.00,25000.00,'P',0.00,0.00,25000.00,0.00,0.00,25000.00,70,0,'',0,'IPB',99,'Y','','',0,''),(102416,0,0,3517,'2025-11-20',10826,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (213)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(102417,0,0,3517,'2025-11-20',10827,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (213)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(102418,0,0,3517,'2025-11-20',10828,'13:00:00','CARE','CARE0001','NURSING CHARGES (213)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(102419,0,0,3517,'2025-11-20',10829,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (213)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'213',0,'IPB',99,'Y','','',0,''),(102420,0,0,3517,'2025-11-20',10830,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (213)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'213',0,'IPB',99,'Y','','',0,''),(102421,0,0,3517,'2025-11-19',10856,'16:05:00','ROOM','ROOM0009','ROOM CHARGES','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102422,0,0,3517,'2025-11-19',10857,'16:05:00','CARE','CARE0004','RMO CHARGES - ICU','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102423,0,0,3517,'2025-11-19',10858,'16:05:00','CARE','CARE0003','NURSING CHARGES - ICU','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102424,0,0,3517,'2025-11-18',10918,'17:55:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,70,0,'',0,'IPB',99,'Y','','',0,''),(102425,0,0,3517,'2025-11-18',10919,'17:56:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102426,0,0,3517,'2025-11-19',10920,'17:57:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102427,0,0,3517,'2025-11-19',10921,'17:57:00','WPRC','WPRC0092','CVP (CENTRAL LINE INSERTION) CHARGE','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,224,0,'',0,'IPB',99,'Y','','',0,''),(102428,0,0,3517,'2025-11-19',10922,'17:57:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102429,0,0,3517,'2025-11-19',10923,'17:58:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102430,0,0,3517,'2025-11-20',10924,'17:58:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102431,0,0,3517,'2025-11-19',10925,'17:59:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102432,0,0,3517,'2025-11-19',10926,'17:59:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102433,0,0,3517,'2025-11-20',10927,'17:59:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102434,0,0,3517,'2025-11-20',10928,'17:59:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102435,0,0,3517,'2025-11-19',10931,'18:05:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(102436,0,0,3517,'2025-11-20',10932,'18:05:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(102437,0,0,3517,'2025-11-20',10933,'18:05:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(102438,0,0,3517,'2025-11-18',10934,'18:07:00','USG','USG0095','USG CHEST','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102439,0,0,3517,'2025-11-21',11081,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(102440,0,0,3517,'2025-11-21',11082,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(102441,0,0,3517,'2025-11-21',11083,'13:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(102442,0,0,3517,'2025-11-21',11084,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'208',0,'IPB',99,'Y','','',0,''),(102443,0,0,3517,'2025-11-21',11085,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'208',0,'IPB',99,'Y','','',0,''),(102444,0,0,3517,'2025-11-21',11096,'14:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102445,0,0,3517,'2025-11-21',11097,'14:33:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102446,0,0,3517,'2025-11-21',11098,'14:33:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102447,0,0,3517,'2025-11-19',11099,'14:35:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,70,0,'',0,'IPB',99,'Y','','',0,''),(102448,0,0,3517,'2025-11-20',11100,'14:35:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,70,0,'',0,'IPB',99,'Y','','',0,''),(102449,0,0,3517,'2025-11-21',11101,'14:36:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(102450,0,0,3517,'2025-11-21',11102,'14:36:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(102451,0,0,3517,'2025-11-22',11233,'10:26:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102452,0,0,3517,'2025-11-21',11234,'10:27:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102453,0,0,3517,'2025-11-22',11235,'10:27:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102454,0,0,3517,'2025-11-22',11236,'10:28:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(102455,0,0,3517,'2025-11-22',11237,'10:28:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(102456,0,0,3517,'2025-11-22',11377,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(102457,0,0,3517,'2025-11-22',11378,'13:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(102458,0,0,3517,'2025-11-22',11379,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,70,0,'208',0,'IPB',99,'Y','','',0,''),(102459,0,0,3517,'2025-11-22',11381,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(102460,0,0,3517,'2025-11-23',11432,'10:55:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(102461,0,0,3517,'2025-11-23',11433,'10:56:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(102462,0,0,3517,'2025-11-22',11434,'10:56:00','WPRC','WPRC0091','FFP TRANSFUSION CHARGE','H',500,4.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102463,0,0,3517,'2025-11-22',11435,'10:56:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102464,0,0,3517,'2025-11-22',11436,'10:57:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(102465,0,0,3517,'2025-11-23',11437,'10:58:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102466,0,0,3517,'2025-11-23',11552,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(102467,0,0,3517,'2025-11-23',11553,'13:00:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(102468,0,0,3517,'2025-11-23',11556,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(102469,0,0,3517,'2025-11-24',11640,'10:01:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102470,0,0,3517,'2025-11-22',11641,'10:02:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(102471,0,0,3517,'2025-11-24',11807,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(102472,0,0,3517,'2025-11-24',11808,'13:00:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(102473,0,0,3517,'2025-11-24',11809,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,70,0,'402',0,'IPB',99,'Y','','',0,''),(102474,0,0,3517,'2025-11-24',11811,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(102475,0,0,3517,'2025-11-25',12408,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(102476,0,0,3517,'2025-11-25',12409,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(102477,0,0,3517,'2025-11-25',12410,'13:00:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(102478,0,0,3517,'2025-11-25',12412,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,70,0,'402',0,'IPB',99,'Y','','',0,''),(102479,0,0,3517,'2025-11-24',12413,'16:43:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(102480,0,0,3517,'2025-11-24',12414,'16:43:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(102481,0,0,3517,'2025-11-25',12415,'16:43:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(102482,0,0,3517,'2025-11-25',12416,'16:43:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(102483,0,0,3517,'2025-11-24',12418,'16:46:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(102484,0,0,3517,'2025-11-24',12419,'16:46:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(102485,0,0,3517,'2025-11-25',12420,'16:47:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(102486,0,0,3517,'2025-11-25',12421,'16:47:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(102487,0,0,3517,'2025-11-24',12422,'16:48:00','USG','USG0091','USG ABDOMEN WITH PELVIS','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102488,0,0,3517,'2025-11-25',12423,'16:48:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102489,0,0,3517,'2025-11-25',12424,'16:48:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(102490,0,0,3517,'2025-11-24',12425,'16:49:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102491,0,0,3517,'2025-11-26',12673,'13:21:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102492,0,0,3517,'2025-11-22',12674,'13:22:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102493,0,0,3517,'2025-11-20',12675,'13:23:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(102494,0,0,3517,'2025-11-26',12676,'13:29:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(102495,0,0,3517,'2025-11-26',12677,'13:32:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(102496,0,0,3517,'2025-11-19',12678,'13:38:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102497,0,0,3517,'2025-11-20',12679,'13:38:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102498,0,0,3517,'2025-11-21',12680,'13:38:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102499,0,0,3517,'2025-11-22',12681,'13:38:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(102500,0,0,3517,'2025-11-23',12682,'13:39:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(104330,0,0,4305,'2025-11-26',12684,'14:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(104331,0,0,4305,'2025-11-26',12685,'14:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(104332,0,0,4305,'2025-11-26',12690,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,226,0,'409',0,'IPB',99,'Y','','',0,''),(104333,0,0,4305,'2025-11-26',12785,'18:16:00','ADMN','ADMN0007','MLC CHARGES','H',4000,1.00,4000.00,'P',0.00,0.00,4000.00,0.00,0.00,4000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(104334,0,0,4305,'2025-11-26',12803,'18:51:00','CARE','CARE0007','DAY CARE CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(104335,0,0,4305,'2025-11-26',12804,'18:51:00','SURG','SURG0018','PROCEDURE CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,226,0,'',0,'IPB',99,'Y','','',0,''),(104336,0,0,4305,'2025-11-26',12805,'18:53:00','XRY','XRY0045','X RAY CHARGES','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(104356,0,0,4166,'2025-11-25',12249,'09:50:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(104357,0,0,4166,'2025-11-25',12250,'09:50:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(104358,0,0,4166,'2025-11-25',12251,'09:50:00','ROOM','ROOM0009','ROOM CHARGES (309)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(104359,0,0,4166,'2025-11-25',12252,'09:50:00','AECO','AECO0008','RMO CHARGES DAY (309)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(104360,0,0,4166,'2025-11-25',12253,'09:50:00','CARE','CARE0001','NURSING CHARGES (309)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(104361,0,0,4166,'2025-11-25',12254,'09:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'309',0,'IPB',99,'Y','','',0,''),(104362,0,0,4166,'2025-11-25',12255,'09:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'309',0,'IPB',99,'Y','','',0,''),(104363,0,0,4166,'2025-11-26',12731,'09:50:00','ROOM','ROOM0009','ROOM CHARGES (309)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(104364,0,0,4166,'2025-11-26',12732,'09:50:00','AECO','AECO0008','RMO CHARGES DAY (309)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(104365,0,0,4166,'2025-11-26',12733,'09:50:00','CARE','CARE0001','NURSING CHARGES (309)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(104366,0,0,4166,'2025-11-26',12734,'09:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'309',0,'IPB',99,'Y','','',0,''),(104367,0,0,4166,'2025-11-26',12735,'09:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'309',0,'IPB',99,'Y','','',0,''),(104368,0,0,4166,'2025-11-25',12793,'18:42:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(104369,0,0,4166,'2025-11-25',12794,'18:42:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(104370,0,0,4166,'2025-11-26',12795,'18:42:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(104371,0,0,4166,'2025-11-25',12796,'18:43:00','SURG','SURG0014','SURGERY CHARGE','H',15000,1.00,15000.00,'P',0.00,0.00,15000.00,0.00,0.00,15000.00,124,0,'',0,'IPB',99,'Y','','',0,''),(104372,0,0,4166,'2025-11-25',12797,'18:43:00','SURG','SURG0015','OT USAGE CHARGE','H',3750,1.00,3750.00,'P',0.00,0.00,3750.00,0.00,0.00,3750.00,3,0,'',0,'IPB',99,'Y','','',0,''),(104373,0,0,4166,'2025-11-25',12798,'18:44:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,124,0,'',0,'IPB',99,'Y','','',0,''),(104374,0,0,4166,'2025-11-25',12799,'18:44:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(104390,0,0,4349,'2025-11-26',12831,'20:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(104391,0,0,4349,'2025-11-26',12832,'20:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(104392,0,0,4349,'2025-11-26',12833,'20:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(104393,0,0,4349,'2025-11-26',12834,'20:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(104394,0,0,4349,'2025-11-26',12835,'20:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(104395,0,0,4349,'2025-11-26',12866,'09:21:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(104396,0,0,4349,'2025-11-26',12867,'09:21:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(104397,0,0,4349,'2025-11-27',12868,'09:22:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,38,0,'',0,'IPB',99,'Y','','',0,''),(106511,0,0,4357,'2025-11-27',12869,'03:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(106512,0,0,4357,'2025-11-27',12870,'03:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(106513,0,0,4357,'2025-11-27',12871,'03:00:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(106514,0,0,4357,'2025-11-27',12872,'03:00:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(106515,0,0,4357,'2025-11-27',12873,'03:00:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(106516,0,0,4357,'2025-11-27',12874,'03:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'410',0,'IPB',99,'Y','','',0,''),(106517,0,0,4357,'2025-11-27',13061,'12:31:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(106518,0,0,4357,'2025-11-27',13062,'12:31:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(106880,0,0,4350,'2025-11-26',12838,'20:40:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(106881,0,0,4350,'2025-11-26',12839,'20:40:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(106882,0,0,4350,'2025-11-26',12840,'20:40:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(106883,0,0,4350,'2025-11-26',12841,'20:40:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(106884,0,0,4350,'2025-11-26',12842,'20:40:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(106885,0,0,4350,'2025-11-26',12844,'20:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(106886,0,0,4350,'2025-11-26',13078,'13:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(106887,0,0,4350,'2025-11-26',13079,'13:34:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(106888,0,0,4350,'2025-11-27',13080,'13:34:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(106889,0,0,4350,'2025-11-27',13081,'13:34:00','USG','USG0092','USG ABDOMEN CHARGE','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(106890,0,0,4350,'2025-11-27',13082,'13:34:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(106891,0,0,4350,'2025-11-27',13083,'13:35:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(107584,0,0,3959,'2025-11-22',11225,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(107585,0,0,3959,'2025-11-22',11226,'09:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(107586,0,0,3959,'2025-11-22',11227,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(107587,0,0,3959,'2025-11-22',11228,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(107588,0,0,3959,'2025-11-22',11229,'09:30:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(107589,0,0,3959,'2025-11-22',11230,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(107590,0,0,3959,'2025-11-22',11231,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(107591,0,0,3959,'2025-11-22',11267,'11:08:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107592,0,0,3959,'2025-11-23',11442,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(107593,0,0,3959,'2025-11-23',11443,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(107594,0,0,3959,'2025-11-23',11444,'09:30:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(107595,0,0,3959,'2025-11-23',11445,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(107596,0,0,3959,'2025-11-23',11446,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(107597,0,0,3959,'2025-11-22',11447,'11:33:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107598,0,0,3959,'2025-11-22',11448,'11:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,8.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107599,0,0,3959,'2025-11-22',11449,'11:34:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(107600,0,0,3959,'2025-11-23',11450,'11:34:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(107601,0,0,3959,'2025-11-23',11451,'11:41:00','WPRC','WPRC0115','DLC PROCEDURE CHARGE','H',5000,1.00,5000.00,'P',0.00,0.00,5000.00,0.00,0.00,5000.00,78,0,'',0,'IPB',99,'Y','','',0,''),(107602,0,0,3959,'2025-11-23',11453,'11:44:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,10.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107603,0,0,3959,'2025-11-22',11454,'11:44:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107604,0,0,3959,'2025-11-23',11455,'11:44:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107605,0,0,3959,'2025-11-22',11456,'11:45:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107606,0,0,3959,'2025-11-22',11457,'11:45:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,4.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107607,0,0,3959,'2025-11-23',11458,'11:45:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,4.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107608,0,0,3959,'2025-11-22',11459,'11:46:00','ROOM','ROOM0004','INFUSION PUMP','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107609,0,0,3959,'2025-11-22',11460,'11:46:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107610,0,0,3959,'2025-11-23',11461,'11:46:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107611,0,0,3959,'2025-11-23',11462,'11:50:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,78,0,'',0,'IPB',99,'Y','','',0,''),(107612,0,0,3959,'2025-11-22',11463,'11:51:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,212,0,'',0,'IPB',99,'Y','','',0,''),(107613,0,0,3959,'2025-11-24',11737,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(107614,0,0,3959,'2025-11-24',11738,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(107615,0,0,3959,'2025-11-24',11739,'09:30:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(107616,0,0,3959,'2025-11-24',11740,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(107617,0,0,3959,'2025-11-24',11741,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(107618,0,0,3959,'2025-11-24',11747,'12:00:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107619,0,0,3959,'2025-11-24',11748,'12:01:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,4.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107620,0,0,3959,'2025-11-24',11749,'12:01:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107621,0,0,3959,'2025-11-24',11750,'12:01:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107622,0,0,3959,'2025-11-24',11751,'12:03:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,9.00,900.00,'A',0.00,0.00,900.00,0.00,0.00,900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107623,0,0,3959,'2025-11-23',11752,'12:03:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'',0,'IPB',99,'Y','','',0,''),(107624,0,0,3959,'2025-11-22',11755,'12:07:00','WPRC','WPRC0116','SLED DIALYSIS','H',8000,1.00,8000.00,'P',0.00,0.00,8000.00,0.00,0.00,8000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(107625,0,0,3959,'2025-11-23',11756,'12:07:00','WPRC','WPRC0116','SLED DIALYSIS','H',8000,1.00,8000.00,'P',0.00,0.00,8000.00,0.00,0.00,8000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(107626,0,0,3959,'2025-11-23',11757,'12:09:00','WPRC','WPRC0117','USG KUB CHARGE','H',1700,1.00,1700.00,'P',0.00,0.00,1700.00,0.00,0.00,1700.00,40,0,'',0,'IPB',99,'Y','','',0,''),(107627,0,0,3959,'2025-11-25',12261,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(107628,0,0,3959,'2025-11-24',12265,'10:31:00','WPRC','WPRC0116','SLED DIALYSIS','H',8000,1.00,8000.00,'P',0.00,0.00,8000.00,0.00,0.00,8000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(107629,0,0,3959,'2025-11-25',12266,'10:31:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,8.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107630,0,0,3959,'2025-11-25',12268,'10:32:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107631,0,0,3959,'2025-11-25',12269,'10:33:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,4.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107632,0,0,3959,'2025-11-25',12270,'10:33:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107633,0,0,3959,'2025-11-24',12272,'10:34:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'',0,'IPB',99,'Y','','',0,''),(107634,0,0,3959,'2025-11-25',12273,'10:34:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'',0,'IPB',99,'Y','','',0,''),(107635,0,0,3959,'2025-11-25',12507,'18:37:00','ROOM','ROOM0009','ROOM CHARGES','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107636,0,0,3959,'2025-11-25',12508,'18:37:00','CARE','CARE0004','RMO CHARGES - ICU','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107637,0,0,3959,'2025-11-25',12509,'18:37:00','CARE','CARE0003','NURSING CHARGES - ICU','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107638,0,0,3959,'2025-11-26',12711,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(107639,0,0,3959,'2025-11-26',12712,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(107640,0,0,3959,'2025-11-26',12713,'09:30:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(107641,0,0,3959,'2025-11-26',12714,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(107642,0,0,3959,'2025-11-26',12715,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(107643,0,0,3959,'2025-11-25',12750,'16:24:00','WPRC','WPRC0116','SLED DIALYSIS','H',8000,1.00,8000.00,'P',0.00,0.00,8000.00,0.00,0.00,8000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(107644,0,0,3959,'2025-11-26',12751,'16:24:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107645,0,0,3959,'2025-11-26',12752,'16:24:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107646,0,0,3959,'2025-11-26',12753,'16:26:00','WPRC','WPRC0116','SLED DIALYSIS','H',8000,1.00,8000.00,'P',0.00,0.00,8000.00,0.00,0.00,8000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(107647,0,0,3959,'2025-11-26',12754,'16:27:00','USG','USG0095','USG CHEST','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107648,0,0,3959,'2025-11-25',12755,'16:28:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107649,0,0,3959,'2025-11-26',12756,'16:28:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107650,0,0,3959,'2025-11-26',12757,'16:28:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107651,0,0,3959,'2025-11-26',12758,'16:28:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,4.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107652,0,0,3959,'2025-11-26',12759,'16:29:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107653,0,0,3959,'2025-11-25',12760,'16:30:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(107654,0,0,3959,'2025-11-25',12761,'16:31:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,225,0,'',0,'IPB',99,'Y','','',0,''),(107655,0,0,3959,'2025-11-26',12762,'16:32:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'',0,'IPB',99,'Y','','',0,''),(107656,0,0,3959,'2025-11-27',13087,'14:01:00','ROOM','ROOM0009','ROOM CHARGES','H',5500,0.50,2750.00,'P',0.00,0.00,2750.00,0.00,0.00,2750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107657,0,0,3959,'2025-11-27',13088,'14:01:00','CARE','CARE0004','RMO CHARGES - ICU','H',800,0.50,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107658,0,0,3959,'2025-11-27',13089,'14:01:00','CARE','CARE0003','NURSING CHARGES - ICU','H',600,0.50,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107659,0,0,3959,'2025-11-27',13090,'14:04:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107660,0,0,3959,'2025-11-27',13091,'14:05:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107661,0,0,3959,'2025-11-27',13092,'14:13:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107662,0,0,3959,'2025-11-27',13093,'14:14:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107663,0,0,3959,'2025-11-27',13094,'14:16:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(107664,0,0,3959,'2025-11-27',13095,'14:17:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'',0,'IPB',99,'Y','','',0,''),(107665,0,0,3959,'2025-11-22',13097,'14:30:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107666,0,0,3959,'2025-11-23',13098,'14:30:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107667,0,0,3959,'2025-11-24',13099,'14:31:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107668,0,0,3959,'2025-11-25',13100,'14:31:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107669,0,0,3959,'2025-11-26',13101,'14:31:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(107670,0,0,3959,'2025-11-27',13102,'14:32:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(110274,0,0,4265,'2025-11-26',12563,'10:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(110275,0,0,4265,'2025-11-26',12564,'10:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(110276,0,0,4265,'2025-11-26',12565,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(110277,0,0,4265,'2025-11-26',12566,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(110278,0,0,4265,'2025-11-26',12567,'10:00:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(110279,0,0,4265,'2025-11-26',12568,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(110280,0,0,4265,'2025-11-26',12569,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(110281,0,0,4265,'2025-11-27',12979,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,0.50,1450.00,'P',0.00,0.00,1450.00,0.00,0.00,1450.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(110282,0,0,4265,'2025-11-27',12980,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,0.50,150.00,'P',0.00,0.00,150.00,0.00,0.00,150.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(110283,0,0,4265,'2025-11-27',12981,'10:00:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,0.50,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(110284,0,0,4265,'2025-11-27',12982,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(110285,0,0,4265,'2025-11-27',12983,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(110286,0,0,4265,'2025-11-26',12985,'11:18:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(110287,0,0,4265,'2025-11-26',12986,'11:19:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(110288,0,0,4265,'2025-11-27',12987,'11:19:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(110289,0,0,4265,'2025-11-27',13259,'19:29:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(110290,0,0,4265,'2025-11-26',13260,'19:38:00','SURG','SURG0014','SURGERY CHARGE','H',9800,1.00,9800.00,'A',0.00,0.00,9800.00,0.00,0.00,9800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(110291,0,0,4265,'2025-11-26',13261,'19:38:00','SURG','SURG0015','OT USAGE CHARGE','H',30000,1.00,30000.00,'A',0.00,0.00,30000.00,0.00,0.00,30000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(110494,0,0,4261,'2025-11-26',12552,'09:50:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(110495,0,0,4261,'2025-11-26',12553,'09:50:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(110496,0,0,4261,'2025-11-26',12554,'09:50:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(110497,0,0,4261,'2025-11-26',12555,'09:50:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(110498,0,0,4261,'2025-11-26',12556,'09:50:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(110499,0,0,4261,'2025-11-26',12557,'09:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(110500,0,0,4261,'2025-11-26',12558,'09:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(110501,0,0,4261,'2025-11-27',12923,'09:50:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(110502,0,0,4261,'2025-11-27',12924,'09:50:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(110503,0,0,4261,'2025-11-27',12925,'09:50:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(110504,0,0,4261,'2025-11-27',12926,'09:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(110505,0,0,4261,'2025-11-27',12927,'09:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(110506,0,0,4261,'2025-11-26',12928,'10:51:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(110507,0,0,4261,'2025-11-26',12929,'10:51:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(110508,0,0,4261,'2025-11-26',12930,'10:51:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(110509,0,0,4261,'2025-11-26',12931,'10:52:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,88,0,'',0,'IPB',99,'Y','','',0,''),(110574,0,0,4469,'2025-11-27',13269,'23:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(110575,0,0,4469,'2025-11-27',13270,'23:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(110576,0,0,4469,'2025-11-27',13271,'23:00:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,0.50,2750.00,'A',0.00,0.00,2750.00,0.00,0.00,2750.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(110577,0,0,4469,'2025-11-27',13272,'23:00:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,0.50,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(110578,0,0,4469,'2025-11-27',13273,'23:00:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,0.50,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(110579,0,0,4469,'2025-11-27',13276,'02:26:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(110580,0,0,4469,'2025-11-28',13277,'02:26:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(110581,0,0,4469,'2025-11-28',13278,'02:26:00','WPRC','WPRC0088','ENDOTRACHEAL INTUBATION','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,4,0,'',0,'IPB',99,'Y','','',0,''),(110582,0,0,4469,'2025-11-28',13279,'02:27:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(110583,0,0,4469,'2025-11-28',13280,'02:27:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(110584,0,0,4469,'2025-11-28',13281,'02:28:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(110585,0,0,4469,'2025-11-27',13282,'02:28:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(110586,0,0,4469,'2025-11-28',13283,'02:34:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(110790,0,0,4245,'2025-11-25',12532,'19:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(110791,0,0,4245,'2025-11-25',12533,'19:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(110792,0,0,4245,'2025-11-25',12736,'19:30:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(110793,0,0,4245,'2025-11-25',12737,'19:30:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(110794,0,0,4245,'2025-11-25',12738,'19:30:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(110795,0,0,4245,'2025-11-25',12740,'19:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'406',0,'IPB',99,'Y','','',0,''),(110796,0,0,4245,'2025-11-26',12813,'19:08:00','SURG','SURG0014','SURGERY CHARGE','H',45000,1.00,45000.00,'P',0.00,0.00,45000.00,0.00,0.00,45000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(110797,0,0,4245,'2025-11-26',12814,'19:08:00','SURG','SURG0015','OT USAGE CHARGE','H',11250,1.00,11250.00,'P',0.00,0.00,11250.00,0.00,0.00,11250.00,3,0,'',0,'IPB',99,'Y','','',0,''),(110798,0,0,4245,'2025-11-26',12940,'19:30:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(110799,0,0,4245,'2025-11-26',12941,'19:30:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(110800,0,0,4245,'2025-11-26',12942,'19:30:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(110801,0,0,4245,'2025-11-26',12943,'19:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'406',0,'IPB',99,'Y','','',0,''),(110802,0,0,4245,'2025-11-26',12944,'19:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'406',0,'IPB',99,'Y','','',0,''),(110803,0,0,4245,'2025-11-25',12945,'10:58:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(110804,0,0,4245,'2025-11-26',12946,'10:58:00','WPRC','WPRC0086','OXYGEN CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(110805,0,0,4245,'2025-11-27',12947,'10:59:00','WPRC','WPRC0086','OXYGEN CHARGE','H',200,3.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(110806,0,0,4245,'2025-11-27',12948,'10:59:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(110807,0,0,4245,'2025-11-26',12949,'11:01:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,188,0,'',0,'IPB',99,'Y','','',0,''),(110808,0,0,4245,'2025-11-26',12950,'11:01:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(110809,0,0,4245,'2025-11-26',12952,'11:04:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,227,0,'',0,'IPB',99,'Y','','',0,''),(110810,0,0,4245,'2025-11-27',13313,'19:30:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(110811,0,0,4245,'2025-11-27',13314,'19:30:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(110812,0,0,4245,'2025-11-27',13315,'19:30:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(110813,0,0,4245,'2025-11-27',13316,'19:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'406',0,'IPB',99,'Y','','',0,''),(110814,0,0,4245,'2025-11-27',13317,'19:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'406',0,'IPB',99,'Y','','',0,''),(110815,0,0,4245,'2025-11-27',13318,'10:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(110816,0,0,4245,'2025-11-28',13319,'10:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(110817,0,0,4245,'2025-11-27',13320,'10:56:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(110818,0,0,4245,'2025-11-28',13322,'11:01:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(110819,0,0,4245,'2025-11-27',13323,'11:02:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(110820,0,0,4245,'2025-11-27',13324,'11:02:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(111994,0,0,4159,'2025-11-24',12229,'22:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(111995,0,0,4159,'2025-11-24',12230,'22:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(111996,0,0,4159,'2025-11-24',12231,'22:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(111997,0,0,4159,'2025-11-24',12232,'22:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(111998,0,0,4159,'2025-11-24',12233,'22:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(111999,0,0,4159,'2025-11-24',12304,'11:20:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(112000,0,0,4159,'2025-11-24',12305,'11:20:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(112001,0,0,4159,'2025-11-25',12306,'11:21:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(112002,0,0,4159,'2025-11-25',12307,'11:21:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(112003,0,0,4159,'2025-11-24',12308,'11:22:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(112004,0,0,4159,'2025-11-25',12309,'11:22:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(112005,0,0,4159,'2025-11-25',12310,'22:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(112006,0,0,4159,'2025-11-25',12316,'11:28:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(112007,0,0,4159,'2025-11-25',12605,'22:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(112008,0,0,4159,'2025-11-25',12606,'22:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(112009,0,0,4159,'2025-11-25',12607,'22:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(112010,0,0,4159,'2025-11-25',12610,'11:33:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,5,0,'',0,'IPB',99,'Y','','',0,''),(112011,0,0,4159,'2025-11-25',12611,'11:34:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,5,0,'',0,'IPB',99,'Y','','',0,''),(112012,0,0,4159,'2025-11-26',12612,'11:34:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(112013,0,0,4159,'2025-11-26',12613,'11:34:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(112014,0,0,4159,'2025-11-26',12954,'22:30:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(112015,0,0,4159,'2025-11-26',12955,'22:30:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(112016,0,0,4159,'2025-11-26',12956,'22:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(112017,0,0,4159,'2025-11-26',12957,'22:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(112018,0,0,4159,'2025-11-26',12958,'22:30:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(112019,0,0,4159,'2025-11-27',12959,'11:11:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(112020,0,0,4159,'2025-11-27',13401,'22:30:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(112021,0,0,4159,'2025-11-27',13402,'22:30:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(112022,0,0,4159,'2025-11-27',13403,'22:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'401',0,'IPB',99,'Y','','',0,''),(112023,0,0,4159,'2025-11-27',13404,'22:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'401',0,'IPB',99,'Y','','',0,''),(112024,0,0,4159,'2025-11-27',13405,'22:30:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(112025,0,0,4159,'2025-11-28',13406,'12:37:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'',0,'IPB',99,'Y','','',0,''),(112026,0,0,4159,'2025-11-28',13407,'12:38:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(112027,0,0,4159,'2025-11-28',13408,'12:38:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(114905,0,0,4409,'2025-11-27',13105,'15:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(114906,0,0,4409,'2025-11-27',13106,'15:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(114907,0,0,4409,'2025-11-27',13107,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(114908,0,0,4409,'2025-11-27',13108,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(114909,0,0,4409,'2025-11-27',13109,'15:00:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(114910,0,0,4409,'2025-11-27',13111,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,78,0,'207',0,'IPB',99,'Y','','',0,''),(114911,0,0,4409,'2025-11-27',13360,'11:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(114912,0,0,4409,'2025-11-28',13361,'11:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(114913,0,0,4409,'2025-11-27',13362,'11:42:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(114914,0,0,4409,'2025-11-28',13469,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(114915,0,0,4409,'2025-11-28',13470,'15:00:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(114916,0,0,4409,'2025-11-28',13471,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'411',0,'IPB',99,'Y','','',0,''),(114917,0,0,4409,'2025-11-28',13472,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'411',0,'IPB',99,'Y','','',0,''),(114918,0,0,4409,'2025-11-28',13473,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(114919,0,0,4409,'2025-11-28',13624,'09:36:00','USG','USG0091','USG ABDOMEN WITH PELVIS','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(114920,0,0,4409,'2025-11-29',13625,'09:36:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(114921,0,0,4409,'2025-11-29',13626,'09:37:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'',0,'IPB',99,'Y','','',0,''),(114922,0,0,4409,'2025-11-28',13627,'09:37:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(115162,0,0,4417,'2025-11-27',13178,'17:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(115163,0,0,4417,'2025-11-27',13179,'17:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(115164,0,0,4417,'2025-11-27',13180,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(115165,0,0,4417,'2025-11-27',13181,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(115166,0,0,4417,'2025-11-27',13182,'17:00:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(115167,0,0,4417,'2025-11-27',13184,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(115168,0,0,4417,'2025-11-27',13523,'16:31:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(115169,0,0,4417,'2025-11-27',13524,'16:37:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(115170,0,0,4417,'2025-11-28',13659,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(115171,0,0,4417,'2025-11-28',13660,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(115172,0,0,4417,'2025-11-28',13661,'17:00:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(115173,0,0,4417,'2025-11-28',13662,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(115174,0,0,4417,'2025-11-28',13663,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(115175,0,0,4417,'2025-11-29',13664,'11:22:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(116519,0,0,4630,'2025-11-29',13671,'11:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(116520,0,0,4630,'2025-11-29',13672,'11:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(116521,0,0,4630,'2025-11-29',13673,'11:30:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(116522,0,0,4630,'2025-11-29',13674,'11:30:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(116523,0,0,4630,'2025-11-29',13675,'11:30:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(116524,0,0,4630,'2025-11-29',13844,'20:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(116525,0,0,4630,'2025-11-29',13846,'21:02:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'',0,'IPB',99,'Y','','',0,''),(116526,0,0,4630,'2025-11-29',13847,'21:02:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'',0,'IPB',99,'Y','','',0,''),(117490,0,0,3861,'2025-11-20',10976,'22:40:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(117491,0,0,3861,'2025-11-20',10977,'22:40:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(117492,0,0,3861,'2025-11-20',10978,'22:40:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(117493,0,0,3861,'2025-11-20',10979,'22:40:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(117494,0,0,3861,'2025-11-20',10980,'22:40:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(117495,0,0,3861,'2025-11-21',10981,'22:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(117496,0,0,3861,'2025-11-21',10982,'22:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(117497,0,0,3861,'2025-11-20',11114,'15:01:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117498,0,0,3861,'2025-11-20',11115,'15:01:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117499,0,0,3861,'2025-11-20',11116,'15:02:00','WPRC','WPRC0079','FOLEYS CATHETER','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(117500,0,0,3861,'2025-11-21',11117,'15:02:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117501,0,0,3861,'2025-11-21',11252,'22:40:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(117502,0,0,3861,'2025-11-21',11253,'22:40:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(117503,0,0,3861,'2025-11-21',11254,'22:40:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(117504,0,0,3861,'2025-11-22',11255,'10:44:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117505,0,0,3861,'2025-11-22',11256,'10:44:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117506,0,0,3861,'2025-11-21',11257,'10:44:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117507,0,0,3861,'2025-11-22',11492,'22:40:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(117508,0,0,3861,'2025-11-22',11493,'22:40:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(117509,0,0,3861,'2025-11-22',11494,'22:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(117510,0,0,3861,'2025-11-22',11495,'22:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(117511,0,0,3861,'2025-11-22',11496,'22:40:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(117512,0,0,3861,'2025-11-23',11497,'12:22:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117513,0,0,3861,'2025-11-23',11498,'12:22:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117514,0,0,3861,'2025-11-23',11704,'22:40:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(117515,0,0,3861,'2025-11-23',11705,'22:40:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(117516,0,0,3861,'2025-11-23',11706,'22:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(117517,0,0,3861,'2025-11-23',11707,'22:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(117518,0,0,3861,'2025-11-23',11708,'22:40:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(117519,0,0,3861,'2025-11-24',11709,'11:20:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117520,0,0,3861,'2025-11-24',12210,'22:40:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(117521,0,0,3861,'2025-11-24',12211,'22:40:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(117522,0,0,3861,'2025-11-24',12212,'22:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(117523,0,0,3861,'2025-11-24',12213,'22:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(117524,0,0,3861,'2025-11-24',12214,'22:40:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(117525,0,0,3861,'2025-11-25',12274,'10:36:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117526,0,0,3861,'2025-11-25',12701,'22:40:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(117527,0,0,3861,'2025-11-25',12702,'22:40:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(117528,0,0,3861,'2025-11-25',12703,'22:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(117529,0,0,3861,'2025-11-25',12704,'22:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(117530,0,0,3861,'2025-11-25',12705,'22:40:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(117531,0,0,3861,'2025-11-26',12960,'22:40:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(117532,0,0,3861,'2025-11-26',12961,'22:40:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(117533,0,0,3861,'2025-11-26',12962,'22:40:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(117534,0,0,3861,'2025-11-26',12963,'22:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(117535,0,0,3861,'2025-11-26',12964,'22:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(117536,0,0,3861,'2025-11-27',12966,'11:13:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117537,0,0,3861,'2025-11-26',12967,'11:13:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117538,0,0,3861,'2025-11-27',13439,'22:40:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(117539,0,0,3861,'2025-11-27',13440,'22:40:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(117540,0,0,3861,'2025-11-27',13441,'22:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(117541,0,0,3861,'2025-11-27',13442,'22:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(117542,0,0,3861,'2025-11-27',13443,'22:40:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(117543,0,0,3861,'2025-11-28',13806,'22:40:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(117544,0,0,3861,'2025-11-28',13807,'22:40:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(117545,0,0,3861,'2025-11-28',13808,'22:40:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(117546,0,0,3861,'2025-11-28',13809,'22:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(117547,0,0,3861,'2025-11-28',13810,'22:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(117548,0,0,3861,'2025-11-29',13881,'22:40:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(117549,0,0,3861,'2025-11-29',13882,'22:40:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(117550,0,0,3861,'2025-11-29',13883,'22:40:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(117551,0,0,3861,'2025-11-29',13884,'22:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(117552,0,0,3861,'2025-11-29',13885,'22:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'405',0,'IPB',99,'Y','','',0,''),(117553,0,0,3861,'2025-11-28',13886,'11:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117554,0,0,3861,'2025-11-29',13887,'11:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117555,0,0,3861,'2025-11-30',13888,'11:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117556,0,0,3861,'2025-11-30',13889,'11:59:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(117557,0,0,3861,'2025-11-20',13891,'12:02:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117558,0,0,3861,'2025-11-21',13892,'12:02:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117559,0,0,3861,'2025-11-22',13893,'12:02:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117560,0,0,3861,'2025-11-23',13894,'12:02:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(117561,0,0,3861,'2025-11-24',13895,'12:02:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(123378,0,0,4594,'2025-11-28',13602,'21:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(123379,0,0,4594,'2025-11-28',13603,'21:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(123380,0,0,4594,'2025-11-28',13604,'21:30:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(123381,0,0,4594,'2025-11-28',13605,'21:30:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(123382,0,0,4594,'2025-11-28',13606,'21:30:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(123383,0,0,4594,'2025-11-29',13910,'21:30:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(123384,0,0,4594,'2025-11-29',13911,'21:30:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(123385,0,0,4594,'2025-11-29',13912,'21:30:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(123386,0,0,4594,'2025-11-29',13913,'21:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'210',0,'IPB',99,'Y','','',0,''),(123387,0,0,4594,'2025-11-29',13914,'21:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'210',0,'IPB',99,'Y','','',0,''),(123388,0,0,4594,'2025-11-30',14149,'21:30:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(123389,0,0,4594,'2025-11-30',14150,'21:30:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(123390,0,0,4594,'2025-11-30',14151,'21:30:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(123391,0,0,4594,'2025-11-30',14152,'21:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(123392,0,0,4594,'2025-11-30',14153,'21:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(123393,0,0,4594,'2025-11-29',14156,'11:53:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(123394,0,0,4594,'2025-12-01',14157,'11:53:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(123395,0,0,4594,'2025-11-28',14158,'11:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(123396,0,0,4594,'2025-11-29',14159,'11:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(123397,0,0,4594,'2025-11-29',14160,'11:55:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(123398,0,0,4594,'2025-11-30',14161,'11:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(123399,0,0,4594,'2025-12-01',14162,'11:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(123400,0,0,4594,'2025-11-29',14163,'11:56:00','WPRC','WPRC0086','OXYGEN CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(123401,0,0,4594,'2025-12-01',14164,'11:57:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(123402,0,0,4594,'2025-11-29',14165,'11:58:00','SURG','SURG0014','SURGERY CHARGE','H',19000,1.00,19000.00,'P',0.00,0.00,19000.00,0.00,0.00,19000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(123403,0,0,4594,'2025-11-29',14166,'11:59:00','SURG','SURG0015','OT USAGE CHARGE','H',6200,1.00,6200.00,'P',0.00,0.00,6200.00,0.00,0.00,6200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(123999,0,0,4047,'2025-11-24',11663,'10:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(124000,0,0,4047,'2025-11-24',11664,'10:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(124001,0,0,4047,'2025-11-24',11665,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124002,0,0,4047,'2025-11-24',11666,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124003,0,0,4047,'2025-11-24',11667,'10:30:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124004,0,0,4047,'2025-11-24',11668,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(124005,0,0,4047,'2025-11-24',11669,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(124006,0,0,4047,'2025-11-25',12361,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124007,0,0,4047,'2025-11-25',12362,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124008,0,0,4047,'2025-11-25',12363,'10:30:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124009,0,0,4047,'2025-11-25',12364,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(124010,0,0,4047,'2025-11-25',12365,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(124011,0,0,4047,'2025-11-24',12464,'17:13:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(124012,0,0,4047,'2025-11-24',12465,'17:13:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(124013,0,0,4047,'2025-11-24',12468,'17:14:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(124014,0,0,4047,'2025-11-26',12721,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124015,0,0,4047,'2025-11-26',12722,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124016,0,0,4047,'2025-11-26',12723,'10:30:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124017,0,0,4047,'2025-11-26',12724,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(124018,0,0,4047,'2025-11-26',12725,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(124019,0,0,4047,'2025-11-27',12968,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124020,0,0,4047,'2025-11-27',12969,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124021,0,0,4047,'2025-11-27',12970,'10:30:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124022,0,0,4047,'2025-11-27',12971,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(124023,0,0,4047,'2025-11-27',12972,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(124024,0,0,4047,'2025-11-26',12974,'11:15:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(124025,0,0,4047,'2025-11-26',12975,'11:16:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,3,0,'',0,'IPB',99,'Y','','',0,''),(124026,0,0,4047,'2025-11-26',12976,'11:16:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(124027,0,0,4047,'2025-11-26',12977,'11:16:00','WPRC','WPRC0086','OXYGEN CHARGE','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(124028,0,0,4047,'2025-11-25',12978,'11:17:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(124029,0,0,4047,'2025-11-28',13454,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124030,0,0,4047,'2025-11-28',13455,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124031,0,0,4047,'2025-11-28',13456,'10:30:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124032,0,0,4047,'2025-11-28',13457,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(124033,0,0,4047,'2025-11-28',13458,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(124034,0,0,4047,'2025-11-29',13816,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124035,0,0,4047,'2025-11-29',13817,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124036,0,0,4047,'2025-11-29',13818,'10:30:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124037,0,0,4047,'2025-11-29',13819,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(124038,0,0,4047,'2025-11-29',13820,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(124039,0,0,4047,'2025-11-30',14020,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124040,0,0,4047,'2025-11-30',14021,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124041,0,0,4047,'2025-11-30',14022,'10:30:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(124042,0,0,4047,'2025-11-30',14023,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(124043,0,0,4047,'2025-11-30',14024,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(124044,0,0,4047,'2025-11-30',14141,'11:42:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(124045,0,0,4047,'2025-12-01',14142,'11:44:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(124046,0,0,4047,'2025-11-26',14144,'11:44:00','SURG','SURG0014','SURGERY CHARGE','H',86250,1.00,86250.00,'P',0.00,0.00,86250.00,0.00,0.00,86250.00,3,0,'',0,'IPB',99,'Y','','',0,''),(124047,0,0,4047,'2025-11-26',14145,'11:44:00','SURG','SURG0015','OT USAGE CHARGE','H',28740,1.00,28740.00,'P',0.00,0.00,28740.00,0.00,0.00,28740.00,3,0,'',0,'IPB',99,'Y','','',0,''),(127811,0,0,4690,'2025-11-29',13867,'22:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(127812,0,0,4690,'2025-11-29',13868,'22:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(127813,0,0,4690,'2025-11-29',13869,'22:30:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(127814,0,0,4690,'2025-11-29',13870,'22:30:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(127815,0,0,4690,'2025-11-29',13871,'22:30:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(127816,0,0,4690,'2025-11-30',13872,'22:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(127817,0,0,4690,'2025-11-30',13873,'22:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(127818,0,0,4690,'2025-11-30',14294,'22:30:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(127819,0,0,4690,'2025-11-30',14295,'22:30:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(127820,0,0,4690,'2025-11-30',14296,'22:30:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(127821,0,0,4690,'2025-12-01',14297,'22:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(127822,0,0,4690,'2025-12-01',14298,'22:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(127823,0,0,4690,'2025-11-30',14386,'18:50:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(132924,0,0,4780,'2025-12-01',14244,'14:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(132925,0,0,4780,'2025-12-01',14245,'14:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(132926,0,0,4780,'2025-12-01',14246,'14:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(132927,0,0,4780,'2025-12-01',14247,'14:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(132928,0,0,4780,'2025-12-01',14248,'14:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(132929,0,0,4780,'2025-12-02',14249,'14:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(132930,0,0,4780,'2025-12-01',14250,'14:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(132931,0,0,4780,'2025-12-01',14627,'14:03:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(132961,0,0,4674,'2025-11-29',13748,'13:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(132962,0,0,4674,'2025-11-29',13749,'13:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(132963,0,0,4674,'2025-11-29',13750,'13:30:00','ROOM','ROOM0009','ROOM CHARGES (308)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(132964,0,0,4674,'2025-11-29',13751,'13:30:00','AECO','AECO0008','RMO CHARGES DAY (308)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(132965,0,0,4674,'2025-11-29',13752,'13:30:00','CARE','CARE0001','NURSING CHARGES (308)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(132966,0,0,4674,'2025-11-30',14025,'13:30:00','ROOM','ROOM0009','ROOM CHARGES (308)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(132967,0,0,4674,'2025-11-30',14026,'13:30:00','AECO','AECO0008','RMO CHARGES DAY (308)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(132968,0,0,4674,'2025-11-30',14027,'13:30:00','CARE','CARE0001','NURSING CHARGES (308)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(132969,0,0,4674,'2025-11-30',14028,'13:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'308',0,'IPB',99,'Y','','',0,''),(132970,0,0,4674,'2025-11-30',14029,'13:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'308',0,'IPB',99,'Y','','',0,''),(132971,0,0,4674,'2025-12-01',14289,'13:30:00','ROOM','ROOM0009','ROOM CHARGES (308)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(132972,0,0,4674,'2025-12-01',14290,'13:30:00','AECO','AECO0008','RMO CHARGES DAY (308)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(132973,0,0,4674,'2025-12-01',14291,'13:30:00','CARE','CARE0001','NURSING CHARGES (308)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(132974,0,0,4674,'2025-12-01',14292,'13:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'308',0,'IPB',99,'Y','','',0,''),(132975,0,0,4674,'2025-12-01',14293,'13:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'308',0,'IPB',99,'Y','','',0,''),(132976,0,0,4674,'2025-11-29',14569,'12:38:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(132977,0,0,4674,'2025-11-30',14570,'12:38:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(132978,0,0,4674,'2025-12-01',14571,'12:39:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(132979,0,0,4674,'2025-12-02',14572,'12:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(132980,0,0,4674,'2025-12-02',14573,'12:40:00','USG','USG0092','USG ABDOMEN CHARGE','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(132981,0,0,4674,'2025-12-01',14574,'12:41:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(132982,0,0,4674,'2025-11-29',14575,'12:42:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(132983,0,0,4674,'2025-12-01',14576,'12:42:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(132984,0,0,4674,'2025-11-29',14577,'12:42:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,8,0,'',0,'IPB',99,'Y','','',0,''),(132985,0,0,4674,'2025-12-02',14578,'12:43:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,38,0,'',0,'IPB',99,'Y','','',0,''),(132986,0,0,4674,'2025-11-30',14579,'12:43:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,78,0,'',0,'IPB',99,'Y','','',0,''),(132987,0,0,4674,'2025-12-01',14580,'12:43:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'',0,'IPB',99,'Y','','',0,''),(132988,0,0,4674,'2025-12-01',14581,'12:44:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'',0,'IPB',99,'Y','','',0,''),(132989,0,0,4674,'2025-11-30',14582,'12:44:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'',0,'IPB',99,'Y','','',0,''),(132990,0,0,4674,'2025-12-02',14628,'14:45:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(132991,0,0,4674,'2025-12-02',14629,'14:47:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(133800,0,0,4691,'2025-11-30',0,'11:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',1,'','','',0,''),(133801,0,0,4691,'2025-11-30',0,'11:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',99,'','','',0,''),(133802,0,0,4691,'2025-11-30',0,'11:15:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'',99,'','','',0,''),(133803,0,0,4691,'2025-11-30',0,'11:15:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'',99,'','','',0,''),(133804,0,0,4691,'2025-11-30',0,'11:15:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'',99,'','','',0,''),(133805,0,0,4691,'2025-11-30',0,'11:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'',99,'','','',0,''),(133806,0,0,4691,'2025-11-30',0,'11:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'',99,'','','',0,''),(133807,0,0,4691,'2025-11-30',0,'19:42:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'',99,'','','',0,''),(133808,0,0,4691,'2025-11-30',0,'19:43:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,2.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'',99,'','','',0,''),(133809,0,0,4691,'2025-11-30',0,'19:44:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'',99,'','','',0,''),(133810,0,0,4691,'2025-12-01',0,'11:15:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'',99,'','','',0,''),(133811,0,0,4691,'2025-12-01',0,'11:15:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'',99,'','','',0,''),(133812,0,0,4691,'2025-12-01',0,'11:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'',99,'','','',0,''),(133813,0,0,4691,'2025-12-01',0,'11:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'',99,'','','',0,''),(133814,0,0,4691,'2025-12-01',0,'11:15:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'',99,'','','',0,''),(133815,0,0,4691,'2025-12-01',0,'19:43:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'',99,'','','',0,''),(133816,0,0,4691,'2025-12-01',14785,'20:56:00','SURG','SURG0016','SURGERY CHARGE','H',18500,1.00,18500.00,'A',0.00,0.00,18500.00,0.00,0.00,18500.00,3,0,'',0,'',99,'','','',0,''),(133817,0,0,4691,'2025-12-01',14786,'20:56:00','SURG','SURG0015','OT USAGE CHARGE','H',5900,1.00,5900.00,'A',0.00,0.00,5900.00,0.00,0.00,5900.00,3,0,'',0,'',99,'','','',0,''),(133818,0,0,4691,'2025-12-02',0,'11:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'',99,'','','',0,''),(133819,0,0,4691,'2025-12-02',0,'11:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'',99,'','','',0,''),(133820,0,0,4691,'2025-12-02',0,'11:15:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,0.50,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'402',0,'',99,'','','',0,''),(133821,0,0,4691,'2025-12-02',14549,'11:15:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,0.50,150.00,'P',0.00,0.00,150.00,0.00,0.00,150.00,9999,0,'402',0,'',99,'','','',0,''),(133822,0,0,4691,'2025-12-02',14548,'11:15:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,0.50,1450.00,'P',0.00,0.00,1450.00,0.00,0.00,1450.00,9999,0,'402',0,'',99,'','','',0,''),(133823,0,0,4691,'2025-12-02',0,'19:43:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'',99,'','','',0,''),(133943,0,0,4711,'2025-12-01',0,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',1,'','','',0,''),(133944,0,0,4711,'2025-12-01',0,'09:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',99,'','','',0,''),(133945,0,0,4711,'2025-12-01',0,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (310)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'310',0,'',99,'','','',0,''),(133946,0,0,4711,'2025-12-01',0,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (310)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'310',0,'',99,'','','',0,''),(133947,0,0,4711,'2025-12-01',0,'09:30:00','CARE','CARE0001','NURSING CHARGES (310)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'310',0,'',99,'','','',0,''),(133948,0,0,4711,'2025-12-01',0,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (310)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'310',0,'',99,'','','',0,''),(133949,0,0,4711,'2025-12-01',0,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (310)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'310',0,'',99,'','','',0,''),(133950,0,0,4711,'2025-12-01',0,'10:43:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'',99,'','','',0,''),(133951,0,0,4711,'2025-12-01',0,'10:44:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'',99,'','','',0,''),(133952,0,0,4711,'2025-12-01',0,'10:46:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'',99,'','','',0,''),(133953,0,0,4711,'2025-12-01',14835,'10:49:00','SURG','SURG0015','OT USAGE CHARGE','H',10500,1.00,10500.00,'P',0.00,0.00,10500.00,0.00,0.00,10500.00,3,0,'',0,'',99,'','','',0,''),(133954,0,0,4711,'2025-12-02',0,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (310)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'310',0,'',99,'','','',0,''),(133955,0,0,4711,'2025-12-02',0,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (310)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'310',0,'',99,'','','',0,''),(133956,0,0,4711,'2025-12-02',0,'09:30:00','CARE','CARE0001','NURSING CHARGES (310)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'310',0,'',99,'','','',0,''),(133957,0,0,4711,'2025-12-02',0,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (310)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'310',0,'',99,'','','',0,''),(133958,0,0,4711,'2025-12-02',0,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (310)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'310',0,'',99,'','','',0,''),(133959,0,0,4711,'2025-12-02',0,'10:44:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'',99,'','','',0,''),(133960,0,0,4711,'2025-12-03',0,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (310)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'310',0,'',99,'','','',0,''),(133961,0,0,4711,'2025-12-03',0,'10:45:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'',99,'','','',0,''),(133962,0,0,4711,'2025-12-03',14836,'10:50:00','SURG','SURG0014','SURGERY CHARGE','H',31600,1.00,31600.00,'P',0.00,0.00,31600.00,0.00,0.00,31600.00,3,0,'',0,'',99,'','','',0,''),(136244,0,0,3909,'2025-11-21',11120,'15:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(136245,0,0,3909,'2025-11-21',11121,'15:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(136246,0,0,3909,'2025-11-21',11122,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(136247,0,0,3909,'2025-11-21',11123,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(136248,0,0,3909,'2025-11-21',11124,'15:00:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(136249,0,0,3909,'2025-11-21',11126,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(136250,0,0,3909,'2025-11-21',11259,'10:52:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136251,0,0,3909,'2025-11-21',11260,'10:52:00','WPRC','WPRC0079','FOLEYS CATHETER','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(136252,0,0,3909,'2025-11-22',11261,'10:53:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136253,0,0,3909,'2025-11-22',11382,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(136254,0,0,3909,'2025-11-22',11383,'15:00:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(136255,0,0,3909,'2025-11-22',11384,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(136256,0,0,3909,'2025-11-22',11385,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(136257,0,0,3909,'2025-11-22',11386,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(136258,0,0,3909,'2025-11-23',11499,'12:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136259,0,0,3909,'2025-11-21',11501,'12:23:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136260,0,0,3909,'2025-11-22',11502,'12:24:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136261,0,0,3909,'2025-11-22',11503,'12:24:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2500,1.00,2500.00,'P',0.00,0.00,2500.00,0.00,0.00,2500.00,8,0,'',0,'IPB',99,'Y','','',0,''),(136262,0,0,3909,'2025-11-23',11544,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(136263,0,0,3909,'2025-11-23',11545,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(136264,0,0,3909,'2025-11-24',11828,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136265,0,0,3909,'2025-11-24',11829,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136266,0,0,3909,'2025-11-24',11830,'15:00:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136267,0,0,3909,'2025-11-24',11831,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(136268,0,0,3909,'2025-11-24',11832,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(136269,0,0,3909,'2025-11-25',12374,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136270,0,0,3909,'2025-11-25',12375,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136271,0,0,3909,'2025-11-25',12376,'15:00:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136272,0,0,3909,'2025-11-25',12377,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (304)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(136273,0,0,3909,'2025-11-25',12378,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(136274,0,0,3909,'2025-11-24',12379,'16:18:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136275,0,0,3909,'2025-11-25',12380,'16:18:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136276,0,0,3909,'2025-11-23',12381,'16:18:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136277,0,0,3909,'2025-11-24',12382,'16:18:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136278,0,0,3909,'2025-11-25',12383,'16:18:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136279,0,0,3909,'2025-11-23',12384,'16:22:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136280,0,0,3909,'2025-11-23',12385,'16:23:00','AECO','AECO0008','RMO CHARGES DAY','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136281,0,0,3909,'2025-11-23',12386,'16:23:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136282,0,0,3909,'2025-11-26',12706,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136283,0,0,3909,'2025-11-26',12707,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136284,0,0,3909,'2025-11-26',12708,'15:00:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136285,0,0,3909,'2025-11-26',12709,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(136286,0,0,3909,'2025-11-26',12710,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(136287,0,0,3909,'2025-11-26',13032,'12:00:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136288,0,0,3909,'2025-11-27',13033,'12:00:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136289,0,0,3909,'2025-11-26',13034,'12:01:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136290,0,0,3909,'2025-11-25',13035,'12:02:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136291,0,0,3909,'2025-11-26',13036,'12:02:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136292,0,0,3909,'2025-11-27',13037,'12:03:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136293,0,0,3909,'2025-11-26',13038,'12:04:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136294,0,0,3909,'2025-11-26',13039,'12:05:00','WPRC','WPRC0092','CVP (CENTRAL LINE INSERTION) CHARGE','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(136295,0,0,3909,'2025-11-24',13044,'12:13:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2500,1.00,2500.00,'P',0.00,0.00,2500.00,0.00,0.00,2500.00,229,0,'',0,'IPB',99,'Y','','',0,''),(136296,0,0,3909,'2025-11-26',13045,'12:13:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,229,0,'',0,'IPB',99,'Y','','',0,''),(136297,0,0,3909,'2025-11-27',13171,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136298,0,0,3909,'2025-11-27',13172,'15:00:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136299,0,0,3909,'2025-11-27',13173,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(136300,0,0,3909,'2025-11-27',13174,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(136301,0,0,3909,'2025-11-27',13175,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136302,0,0,3909,'2025-11-28',13444,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136303,0,0,3909,'2025-11-28',13445,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136304,0,0,3909,'2025-11-28',13446,'15:00:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136305,0,0,3909,'2025-11-28',13447,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (304)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(136306,0,0,3909,'2025-11-28',13448,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(136307,0,0,3909,'2025-11-27',13501,'16:10:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136308,0,0,3909,'2025-11-28',13502,'16:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136309,0,0,3909,'2025-11-27',13503,'16:11:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136310,0,0,3909,'2025-11-28',13504,'16:11:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136311,0,0,3909,'2025-11-27',13505,'16:12:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136312,0,0,3909,'2025-11-28',13506,'16:12:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136313,0,0,3909,'2025-11-25',13508,'16:13:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136314,0,0,3909,'2025-11-26',13509,'16:13:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136315,0,0,3909,'2025-11-27',13510,'16:13:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136316,0,0,3909,'2025-11-28',13511,'16:13:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136317,0,0,3909,'2025-11-29',13811,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136318,0,0,3909,'2025-11-29',13812,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136319,0,0,3909,'2025-11-29',13813,'15:00:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136320,0,0,3909,'2025-11-29',13814,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(136321,0,0,3909,'2025-11-29',13815,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'304',0,'IPB',99,'Y','','',0,''),(136322,0,0,3909,'2025-11-29',13840,'19:25:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136323,0,0,3909,'2025-11-29',13841,'19:25:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136324,0,0,3909,'2025-11-29',13842,'19:26:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136325,0,0,3909,'2025-11-30',13952,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136326,0,0,3909,'2025-11-30',13953,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136327,0,0,3909,'2025-11-30',13954,'15:00:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136328,0,0,3909,'2025-11-30',13955,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(136329,0,0,3909,'2025-11-30',13956,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(136330,0,0,3909,'2025-11-30',13957,'18:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136331,0,0,3909,'2025-11-30',13958,'18:55:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136332,0,0,3909,'2025-11-30',13959,'18:56:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136333,0,0,3909,'2025-11-30',13960,'18:56:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136334,0,0,3909,'2025-11-29',13961,'18:57:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136335,0,0,3909,'2025-11-30',13962,'18:57:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136336,0,0,3909,'2025-12-01',14279,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136337,0,0,3909,'2025-12-01',14280,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136338,0,0,3909,'2025-12-01',14281,'15:00:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136339,0,0,3909,'2025-12-01',14282,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(136340,0,0,3909,'2025-12-01',14283,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(136341,0,0,3909,'2025-12-02',14606,'13:08:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136342,0,0,3909,'2025-12-01',14607,'13:08:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136343,0,0,3909,'2025-12-01',14608,'13:09:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136344,0,0,3909,'2025-12-02',14609,'13:09:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136345,0,0,3909,'2025-12-01',14611,'13:10:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136346,0,0,3909,'2025-12-02',14630,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136347,0,0,3909,'2025-12-02',14631,'15:00:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136348,0,0,3909,'2025-12-02',14632,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(136349,0,0,3909,'2025-12-02',14633,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(136350,0,0,3909,'2025-12-02',14634,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(136351,0,0,3909,'2025-12-03',14916,'13:46:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136352,0,0,3909,'2025-12-03',14917,'13:52:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136353,0,0,3909,'2025-12-02',14918,'13:52:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136354,0,0,3909,'2025-12-01',14919,'13:52:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136355,0,0,3909,'2025-12-03',14920,'13:54:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136356,0,0,3909,'2025-12-03',14921,'13:56:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(136951,0,0,4266,'2025-11-26',12570,'10:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(136952,0,0,4266,'2025-11-26',12571,'10:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(136953,0,0,4266,'2025-11-26',12572,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(136954,0,0,4266,'2025-11-26',12573,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(136955,0,0,4266,'2025-11-26',12574,'10:15:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(136956,0,0,4266,'2025-11-26',12575,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(136957,0,0,4266,'2025-11-26',12576,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(136958,0,0,4266,'2025-11-27',13126,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(136959,0,0,4266,'2025-11-27',13127,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(136960,0,0,4266,'2025-11-27',13128,'10:15:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(136961,0,0,4266,'2025-11-27',13129,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(136962,0,0,4266,'2025-11-27',13130,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(136963,0,0,4266,'2025-11-26',13132,'16:35:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136964,0,0,4266,'2025-11-26',13133,'16:35:00','WPRC','WPRC0088','ENDOTRACHEAL INTUBATION','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(136965,0,0,4266,'2025-11-26',13134,'16:35:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(136966,0,0,4266,'2025-11-26',13135,'16:35:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136967,0,0,4266,'2025-11-27',13136,'16:36:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136968,0,0,4266,'2025-11-27',13139,'16:36:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136969,0,0,4266,'2025-11-26',13140,'16:37:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136970,0,0,4266,'2025-11-27',13142,'16:37:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,3.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136971,0,0,4266,'2025-11-26',13143,'16:37:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136972,0,0,4266,'2025-11-26',13144,'16:37:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136973,0,0,4266,'2025-11-27',13145,'16:37:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136974,0,0,4266,'2025-11-28',13459,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(136975,0,0,4266,'2025-11-28',13460,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(136976,0,0,4266,'2025-11-28',13461,'10:15:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(136977,0,0,4266,'2025-11-28',13462,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(136978,0,0,4266,'2025-11-28',13463,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(136979,0,0,4266,'2025-11-28',13484,'15:45:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136980,0,0,4266,'2025-11-26',13485,'15:46:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136981,0,0,4266,'2025-11-27',13486,'15:46:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136982,0,0,4266,'2025-11-28',13487,'15:46:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136983,0,0,4266,'2025-11-28',13488,'15:46:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136984,0,0,4266,'2025-11-27',13489,'15:48:00','WPRC','WPRC0118','CO2 MONITORING','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136985,0,0,4266,'2025-11-28',13490,'15:48:00','WPRC','WPRC0118','CO2 MONITORING','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136986,0,0,4266,'2025-11-28',13492,'15:49:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136987,0,0,4266,'2025-11-28',13493,'15:49:00','ROOM','ROOM0004','INFUSION PUMP','H',500,3.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136988,0,0,4266,'2025-11-29',13771,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(136989,0,0,4266,'2025-11-29',13772,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(136990,0,0,4266,'2025-11-29',13773,'10:15:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(136991,0,0,4266,'2025-11-29',13774,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(136992,0,0,4266,'2025-11-29',13775,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'211',0,'IPB',99,'Y','','',0,''),(136993,0,0,4266,'2025-11-29',13776,'18:20:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136994,0,0,4266,'2025-11-29',13777,'18:20:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136995,0,0,4266,'2025-11-29',13778,'18:21:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136996,0,0,4266,'2025-11-29',13779,'18:21:00','WPRC','WPRC0118','CO2 MONITORING','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136997,0,0,4266,'2025-11-29',13780,'18:21:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(136998,0,0,4266,'2025-11-30',13900,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(136999,0,0,4266,'2025-11-30',13901,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(137000,0,0,4266,'2025-11-30',13902,'10:15:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(137001,0,0,4266,'2025-11-30',13903,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(137002,0,0,4266,'2025-11-30',13904,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(137003,0,0,4266,'2025-11-30',13908,'12:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137004,0,0,4266,'2025-11-30',13909,'12:10:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137005,0,0,4266,'2025-12-01',14105,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(137006,0,0,4266,'2025-12-01',14106,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(137007,0,0,4266,'2025-12-01',14107,'10:15:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(137008,0,0,4266,'2025-12-01',14108,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(137009,0,0,4266,'2025-12-01',14109,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (211)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(137010,0,0,4266,'2025-12-01',14112,'11:15:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137011,0,0,4266,'2025-12-01',14114,'11:18:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137012,0,0,4266,'2025-12-02',14478,'10:15:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(137013,0,0,4266,'2025-12-02',14479,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(137014,0,0,4266,'2025-12-02',14480,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (211)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(137015,0,0,4266,'2025-12-02',14524,'11:39:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137016,0,0,4266,'2025-12-02',14546,'12:03:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137017,0,0,4266,'2025-12-02',14547,'12:04:00','CARE','CARE0006','RMO CHARGES - SEMI','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137018,0,0,4266,'2025-12-03',14923,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(137019,0,0,4266,'2025-12-03',14924,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(137020,0,0,4266,'2025-12-03',14925,'10:15:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(137021,0,0,4266,'2025-12-03',14926,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'305',0,'IPB',99,'Y','','',0,''),(137022,0,0,4266,'2025-12-03',14927,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'305',0,'IPB',99,'Y','','',0,''),(137023,0,0,4266,'2025-12-03',14929,'14:14:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137024,0,0,4266,'2025-12-03',14930,'14:14:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137025,0,0,4266,'2025-12-02',15050,'19:37:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137026,0,0,4266,'2025-11-26',15052,'19:40:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137027,0,0,4266,'2025-11-27',15053,'19:41:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137028,0,0,4266,'2025-11-28',15054,'19:41:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137029,0,0,4266,'2025-11-29',15055,'19:41:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137030,0,0,4266,'2025-11-30',15056,'19:41:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137031,0,0,4266,'2025-12-01',15057,'19:42:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137032,0,0,4266,'2025-12-02',15058,'19:42:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137114,0,0,4802,'2025-12-01',14329,'17:50:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(137115,0,0,4802,'2025-12-01',14330,'17:50:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(137116,0,0,4802,'2025-12-01',14334,'17:50:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(137117,0,0,4802,'2025-12-01',14335,'17:50:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(137118,0,0,4802,'2025-12-01',14336,'17:50:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(137119,0,0,4802,'2025-12-01',14338,'17:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(137120,0,0,4802,'2025-12-02',14473,'11:10:00','SURG','SURG0014','SURGERY CHARGE','H',20000,1.00,20000.00,'P',0.00,0.00,20000.00,0.00,0.00,20000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(137121,0,0,4802,'2025-12-02',14474,'11:10:00','SURG','SURG0015','OT USAGE CHARGE','H',5000,1.00,5000.00,'A',0.00,0.00,5000.00,0.00,0.00,5000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(137122,0,0,4802,'2025-12-02',14768,'17:50:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(137123,0,0,4802,'2025-12-02',14769,'17:50:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(137124,0,0,4802,'2025-12-02',14770,'17:50:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(137125,0,0,4802,'2025-12-02',14771,'17:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(137126,0,0,4802,'2025-12-02',14772,'17:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(137127,0,0,4802,'2025-12-01',15059,'20:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137128,0,0,4802,'2025-12-03',15060,'20:40:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(137129,0,0,4802,'2025-12-03',15061,'20:41:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(137130,0,0,4802,'2025-12-03',15062,'20:41:00','DRC','DRC0019','CONSULTANT VISIT 2','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(137195,0,0,4834,'2025-12-01',14371,'18:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(137196,0,0,4834,'2025-12-01',14372,'18:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(137197,0,0,4834,'2025-12-01',14373,'18:30:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(137198,0,0,4834,'2025-12-01',14374,'18:30:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(137199,0,0,4834,'2025-12-01',14375,'18:30:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(137200,0,0,4834,'2025-12-01',14377,'18:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'405',0,'IPB',99,'Y','','',0,''),(137201,0,0,4834,'2025-12-01',14591,'12:51:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137202,0,0,4834,'2025-12-02',14592,'12:51:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137203,0,0,4834,'2025-12-02',14773,'18:30:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(137204,0,0,4834,'2025-12-02',14774,'18:30:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(137205,0,0,4834,'2025-12-02',14775,'18:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'405',0,'IPB',99,'Y','','',0,''),(137206,0,0,4834,'2025-12-02',14776,'18:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'405',0,'IPB',99,'Y','','',0,''),(137207,0,0,4834,'2025-12-02',14777,'18:30:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(137208,0,0,4834,'2025-12-03',15063,'20:59:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137209,0,0,4834,'2025-12-03',15064,'21:00:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'',0,'IPB',99,'Y','','',0,''),(137210,0,0,4834,'2025-12-03',15065,'21:00:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'',0,'IPB',99,'Y','','',0,''),(137211,0,0,4834,'2025-12-03',15066,'21:00:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,66,0,'',0,'IPB',99,'Y','','',0,''),(137319,0,0,5038,'2025-12-03',14937,'15:45:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'P',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(137320,0,0,5038,'2025-12-03',14938,'15:45:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'P',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(137321,0,0,5038,'2025-12-03',14939,'15:45:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(137322,0,0,5038,'2025-12-03',14940,'15:45:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(137323,0,0,5038,'2025-12-03',14941,'15:45:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(137324,0,0,5038,'2025-12-03',14943,'15:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,7,0,'209',0,'IPB',99,'Y','','',0,''),(137325,0,0,5038,'2025-12-03',14945,'16:20:00','ADMN','ADMN0007','MLC CHARGES','H',5000,1.00,5000.00,'P',0.00,0.00,5000.00,0.00,0.00,5000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137326,0,0,5038,'2025-12-03',15122,'06:57:00','DRC','DRC0021','EMERGENCY CONSULTANT CHARGE','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,7,0,'',0,'IPB',99,'Y','','',0,''),(137327,0,0,5038,'2025-12-03',15123,'06:57:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'',0,'IPB',99,'Y','','',0,''),(137328,0,0,5038,'2025-12-03',15124,'06:58:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137329,0,0,5038,'2025-12-03',15125,'06:58:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137330,0,0,5038,'2025-12-03',15126,'06:59:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,7,0,'',0,'IPB',99,'Y','','',0,''),(137331,0,0,5038,'2025-12-03',15127,'06:59:00','WPRC','WPRC0088','ENDOTRACHEAL INTUBATION','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,7,0,'',0,'IPB',99,'Y','','',0,''),(137332,0,0,5038,'2025-12-04',15128,'06:59:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137333,0,0,5038,'2025-12-03',15129,'07:00:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137334,0,0,5038,'2025-12-03',15130,'07:00:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137335,0,0,5038,'2025-12-03',15131,'07:00:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(137336,0,0,5038,'2025-12-04',15132,'07:00:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,4.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(138203,0,0,4857,'2025-12-02',14424,'10:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(138204,0,0,4857,'2025-12-02',14425,'10:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(138205,0,0,4857,'2025-12-02',14426,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(138206,0,0,4857,'2025-12-02',14427,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(138207,0,0,4857,'2025-12-02',14428,'10:00:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(138208,0,0,4857,'2025-12-02',14429,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(138209,0,0,4857,'2025-12-02',14430,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(138210,0,0,4857,'2025-12-03',14895,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(138211,0,0,4857,'2025-12-03',14896,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(138212,0,0,4857,'2025-12-03',14897,'10:00:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(138213,0,0,4857,'2025-12-03',14898,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(138214,0,0,4857,'2025-12-03',14899,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(138215,0,0,4857,'2025-12-02',14900,'12:25:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(138216,0,0,4857,'2025-12-02',15207,'11:26:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(138217,0,0,4857,'2025-12-03',15208,'11:27:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(138218,0,0,4857,'2025-12-04',15209,'11:27:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(138232,0,0,5036,'2025-12-03',14931,'15:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(138233,0,0,5036,'2025-12-03',14932,'15:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(138234,0,0,5036,'2025-12-03',15117,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (306)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'306',0,'IPB',99,'Y','','',0,''),(138235,0,0,5036,'2025-12-03',15118,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (306)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'306',0,'IPB',99,'Y','','',0,''),(138236,0,0,5036,'2025-12-03',15119,'15:30:00','CARE','CARE0001','NURSING CHARGES (306)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'306',0,'IPB',99,'Y','','',0,''),(138237,0,0,5036,'2025-12-03',15121,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (306)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'306',0,'IPB',99,'Y','','',0,''),(138238,0,0,5036,'2025-12-03',15219,'11:48:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(138239,0,0,5036,'2025-12-03',15220,'11:48:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(138240,0,0,5036,'2025-12-04',15221,'11:48:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(138241,0,0,5036,'2025-12-03',15222,'11:49:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(138242,0,0,5036,'2025-12-04',15224,'11:52:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(138243,0,0,5036,'2025-12-03',15225,'11:53:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(138244,0,0,5036,'2025-12-04',15226,'11:53:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(139609,0,0,4920,'2025-12-02',14617,'13:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(139610,0,0,4920,'2025-12-02',14618,'13:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(139611,0,0,4920,'2025-12-02',14619,'13:30:00','ROOM','ROOM0009','ROOM CHARGES (302)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'302',0,'IPB',99,'Y','','',0,''),(139612,0,0,4920,'2025-12-02',14620,'13:30:00','AECO','AECO0008','RMO CHARGES DAY (302)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'302',0,'IPB',99,'Y','','',0,''),(139613,0,0,4920,'2025-12-02',14621,'13:30:00','CARE','CARE0001','NURSING CHARGES (302)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'302',0,'IPB',99,'Y','','',0,''),(139614,0,0,4920,'2025-12-02',14623,'13:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (302)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,8,0,'302',0,'IPB',99,'Y','','',0,''),(139615,0,0,4920,'2025-12-03',15105,'13:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (308)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'308',0,'IPB',99,'Y','','',0,''),(139616,0,0,4920,'2025-12-03',15106,'13:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (308)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'308',0,'IPB',99,'Y','','',0,''),(139617,0,0,4920,'2025-12-04',15297,'13:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (308)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'308',0,'IPB',99,'Y','','',0,''),(139618,0,0,4920,'2025-12-02',15299,'13:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(139619,0,0,4920,'2025-12-03',15300,'13:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(139620,0,0,4920,'2025-12-03',15301,'13:42:00','WPRC','WPRC0077','PC ENEMA','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(139621,0,0,4920,'2025-12-03',15302,'13:42:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(139622,0,0,4920,'2025-12-03',15303,'13:42:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(139623,0,0,4920,'2025-12-04',15304,'13:43:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(139624,0,0,4920,'2025-12-03',15305,'13:43:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(139625,0,0,4920,'2025-12-03',15309,'13:45:00','ROOM','ROOM0009','ROOM CHARGES','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(139626,0,0,4920,'2025-12-03',15311,'13:46:00','CARE','CARE0004','RMO CHARGES - ICU','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(139627,0,0,4920,'2025-12-03',15312,'13:46:00','CARE','CARE0003','NURSING CHARGES - ICU','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(139628,0,0,4920,'2025-12-03',15314,'13:50:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'',0,'IPB',99,'Y','','',0,''),(139629,0,0,4920,'2025-12-03',15315,'13:50:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,249,0,'',0,'IPB',99,'Y','','',0,''),(139630,0,0,4920,'2025-12-03',15316,'13:51:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,229,0,'',0,'IPB',99,'Y','','',0,''),(139631,0,0,4920,'2025-12-04',15317,'13:54:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,250,0,'',0,'IPB',99,'Y','','',0,''),(139632,0,0,4920,'2025-12-02',15319,'14:01:00','WPRC','WPRC0120','USG GUIDED TAPPING','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,4,0,'',0,'IPB',99,'Y','','',0,''),(139633,0,0,4920,'2025-12-02',15320,'14:07:00','WPRC','WPRC0121','THERAPUTIC TAPPING','H',2500,1.00,2500.00,'P',0.00,0.00,2500.00,0.00,0.00,2500.00,4,0,'',0,'IPB',99,'Y','','',0,''),(140198,0,0,4693,'2025-11-30',13915,'13:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(140199,0,0,4693,'2025-11-30',13916,'13:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(140200,0,0,4693,'2025-11-30',13917,'13:30:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(140201,0,0,4693,'2025-11-30',13918,'13:30:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(140202,0,0,4693,'2025-11-30',13919,'13:30:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(140203,0,0,4693,'2025-12-01',14216,'13:30:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(140204,0,0,4693,'2025-12-01',14217,'13:30:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(140205,0,0,4693,'2025-12-01',14218,'13:30:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(140206,0,0,4693,'2025-12-01',14219,'13:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(140207,0,0,4693,'2025-12-01',14220,'13:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(140208,0,0,4693,'2025-12-01',14221,'14:01:00','SURG','SURG0014','SURGERY CHARGE','H',45000,1.00,45000.00,'P',0.00,0.00,45000.00,0.00,0.00,45000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(140209,0,0,4693,'2025-12-01',14222,'14:03:00','SURG','SURG0015','OT USAGE CHARGE','H',11250,1.00,11250.00,'P',0.00,0.00,11250.00,0.00,0.00,11250.00,3,0,'',0,'IPB',99,'Y','','',0,''),(140210,0,0,4693,'2025-12-30',14597,'12:58:00','WPRC','WPRC0086','OXYGEN CHARGE','H',200,2.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(140211,0,0,4693,'2025-12-02',14598,'12:58:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(140212,0,0,4693,'2025-12-01',14599,'12:59:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(140213,0,0,4693,'2025-12-02',14600,'12:59:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(140214,0,0,4693,'2025-12-02',14640,'13:30:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(140215,0,0,4693,'2025-12-02',14641,'13:30:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(140216,0,0,4693,'2025-12-02',14642,'13:30:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(140217,0,0,4693,'2025-12-02',14643,'13:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(140218,0,0,4693,'2025-12-02',14644,'13:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(140219,0,0,4693,'2025-12-03',15077,'13:30:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(140220,0,0,4693,'2025-12-03',15078,'13:30:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(140221,0,0,4693,'2025-12-03',15079,'13:30:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(140222,0,0,4693,'2025-12-03',15080,'13:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(140223,0,0,4693,'2025-12-03',15081,'13:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(140224,0,0,4693,'2025-12-03',15146,'09:53:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(140225,0,0,4693,'2025-12-04',15272,'12:27:00','XRY','XRY0045','X RAY CHARGES','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(140226,0,0,4693,'2025-12-04',15323,'13:30:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,0.50,1450.00,'A',0.00,0.00,1450.00,0.00,0.00,1450.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(140227,0,0,4693,'2025-12-04',15324,'13:30:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,0.50,150.00,'A',0.00,0.00,150.00,0.00,0.00,150.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(140228,0,0,4693,'2025-12-04',15325,'13:30:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,0.50,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(140229,0,0,4693,'2025-12-04',15326,'13:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(140230,0,0,4693,'2025-12-04',15327,'13:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(140231,0,0,4693,'2025-12-04',15448,'20:12:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(140251,0,0,5164,'2025-12-04',15341,'15:40:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(140252,0,0,5164,'2025-12-04',15342,'15:40:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(140253,0,0,5164,'2025-12-04',15347,'15:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'308',0,'IPB',99,'Y','','',0,''),(140254,0,0,5164,'2025-12-04',15459,'21:38:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(140255,0,0,5164,'2025-12-04',15460,'21:39:00','CARE','CARE0007','DAY CARE CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(140256,0,0,5164,'2025-12-04',15461,'21:42:00','SURG','SURG0016','SURGERY CHARGE','H',12500,1.00,12500.00,'P',0.00,0.00,12500.00,0.00,0.00,12500.00,3,0,'',0,'IPB',99,'Y','','',0,''),(140257,0,0,5164,'2025-12-04',15462,'21:42:00','SURG','SURG0015','OT USAGE CHARGE','H',4100,1.00,4100.00,'P',0.00,0.00,4100.00,0.00,0.00,4100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(140745,0,0,4968,'2025-12-02',14760,'19:50:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(140746,0,0,4968,'2025-12-02',14761,'19:50:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(140747,0,0,4968,'2025-12-02',14762,'19:50:00','ROOM','ROOM0009','ROOM CHARGES (311)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'311',0,'IPB',99,'Y','','',0,''),(140748,0,0,4968,'2025-12-02',14763,'19:50:00','AECO','AECO0008','RMO CHARGES DAY (311)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'311',0,'IPB',99,'Y','','',0,''),(140749,0,0,4968,'2025-12-02',14764,'19:50:00','CARE','CARE0001','NURSING CHARGES (311)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'311',0,'IPB',99,'Y','','',0,''),(140750,0,0,4968,'2025-12-03',14765,'19:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (311)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'311',0,'IPB',99,'Y','','',0,''),(140751,0,0,4968,'2025-12-03',14766,'19:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (311)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'311',0,'IPB',99,'Y','','',0,''),(140752,0,0,4968,'2025-12-03',15107,'19:50:00','ROOM','ROOM0009','ROOM CHARGES (311)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'311',0,'IPB',99,'Y','','',0,''),(140753,0,0,4968,'2025-12-03',15108,'19:50:00','AECO','AECO0008','RMO CHARGES DAY (311)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'311',0,'IPB',99,'Y','','',0,''),(140754,0,0,4968,'2025-12-03',15109,'19:50:00','CARE','CARE0001','NURSING CHARGES (311)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'311',0,'IPB',99,'Y','','',0,''),(140755,0,0,4968,'2025-12-04',15110,'19:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (311)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'311',0,'IPB',99,'Y','','',0,''),(140756,0,0,4968,'2025-12-04',15111,'19:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (311)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'311',0,'IPB',99,'Y','','',0,''),(140757,0,0,4968,'2025-12-04',15449,'19:50:00','ROOM','ROOM0009','ROOM CHARGES (311)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'311',0,'IPB',99,'Y','','',0,''),(140758,0,0,4968,'2025-12-04',15450,'19:50:00','AECO','AECO0008','RMO CHARGES DAY (311)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'311',0,'IPB',99,'Y','','',0,''),(140759,0,0,4968,'2025-12-04',15451,'19:50:00','CARE','CARE0001','NURSING CHARGES (311)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'311',0,'IPB',99,'Y','','',0,''),(140760,0,0,4968,'2025-12-05',15452,'19:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (311)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'311',0,'IPB',99,'Y','','',0,''),(140761,0,0,4968,'2025-12-02',15513,'11:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(140762,0,0,4968,'2025-12-02',15514,'11:23:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(140763,0,0,4968,'2025-12-03',15515,'11:23:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(140764,0,0,4968,'2025-12-04',15516,'11:23:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(140765,0,0,4968,'2025-12-05',15517,'11:23:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(140791,0,0,4778,'2025-12-01',14231,'14:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(140792,0,0,4778,'2025-12-01',14232,'14:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(140793,0,0,4778,'2025-12-01',14235,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(140794,0,0,4778,'2025-12-01',14236,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(140795,0,0,4778,'2025-12-01',14237,'14:30:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(140796,0,0,4778,'2025-12-01',14239,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'409',0,'IPB',99,'Y','','',0,''),(140797,0,0,4778,'2025-12-02',14650,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(140798,0,0,4778,'2025-12-02',14651,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(140799,0,0,4778,'2025-12-02',14652,'14:30:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(140800,0,0,4778,'2025-12-02',14653,'14:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'IPB',99,'Y','','',0,''),(140801,0,0,4778,'2025-12-02',14654,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'IPB',99,'Y','','',0,''),(140802,0,0,4778,'2025-12-03',15097,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(140803,0,0,4778,'2025-12-03',15098,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(140804,0,0,4778,'2025-12-03',15099,'14:30:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(140805,0,0,4778,'2025-12-03',15100,'14:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'IPB',99,'Y','','',0,''),(140806,0,0,4778,'2025-12-03',15101,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'IPB',99,'Y','','',0,''),(140807,0,0,4778,'2025-12-02',15158,'10:44:00','WPRC','WPRC0079','FOLEYS CATHETER','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(140808,0,0,4778,'2025-12-04',15418,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(140809,0,0,4778,'2025-12-04',15419,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(140810,0,0,4778,'2025-12-04',15420,'14:30:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(140811,0,0,4778,'2025-12-04',15421,'14:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'IPB',99,'Y','','',0,''),(140812,0,0,4778,'2025-12-04',15422,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'IPB',99,'Y','','',0,''),(140813,0,0,4778,'2025-12-05',15505,'11:14:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(140814,0,0,4778,'2025-12-02',15510,'11:17:00','SURG','SURG0016','SURGERY CHARGE','H',62000,1.00,62000.00,'A',0.00,0.00,62000.00,0.00,0.00,62000.00,188,0,'',0,'IPB',99,'Y','','',0,''),(140815,0,0,4778,'2025-12-02',15511,'11:17:00','SURG','SURG0015','OT USAGE CHARGE','H',21700,1.00,21700.00,'A',0.00,0.00,21700.00,0.00,0.00,21700.00,3,0,'',0,'IPB',99,'Y','','',0,''),(141669,0,0,4781,'2025-12-01',14257,'15:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(141670,0,0,4781,'2025-12-01',14258,'15:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(141671,0,0,4781,'2025-12-01',14259,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(141672,0,0,4781,'2025-12-01',14260,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(141673,0,0,4781,'2025-12-01',14261,'15:00:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(141674,0,0,4781,'2025-12-01',14263,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(141675,0,0,4781,'2025-12-01',14526,'11:41:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141676,0,0,4781,'2025-12-02',14527,'11:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141677,0,0,4781,'2025-12-01',14528,'11:41:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(141678,0,0,4781,'2025-12-01',14529,'11:42:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141679,0,0,4781,'2025-12-02',14531,'11:42:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141680,0,0,4781,'2025-12-01',14532,'11:42:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141681,0,0,4781,'2025-12-01',14533,'11:43:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141682,0,0,4781,'2025-12-02',14655,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(141683,0,0,4781,'2025-12-02',14656,'15:00:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(141684,0,0,4781,'2025-12-02',14657,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(141685,0,0,4781,'2025-12-02',14658,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(141686,0,0,4781,'2025-12-02',14659,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(141687,0,0,4781,'2025-12-02',14870,'11:47:00','USG','USG0091','USG ABDOMEN WITH PELVIS','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141688,0,0,4781,'2025-12-02',14871,'11:48:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(141689,0,0,4781,'2025-12-03',14872,'11:48:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141690,0,0,4781,'2025-12-03',14873,'11:49:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141691,0,0,4781,'2025-12-02',14874,'11:49:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141692,0,0,4781,'2025-12-01',14875,'11:49:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141693,0,0,4781,'2025-12-03',15008,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(141694,0,0,4781,'2025-12-03',15009,'15:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(141695,0,0,4781,'2025-12-03',15010,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(141696,0,0,4781,'2025-12-03',15011,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(141697,0,0,4781,'2025-12-03',15012,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(141698,0,0,4781,'2025-12-04',15227,'11:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141699,0,0,4781,'2025-12-01',15228,'11:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141700,0,0,4781,'2025-12-04',15229,'11:55:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141701,0,0,4781,'2025-12-04',15336,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(141702,0,0,4781,'2025-12-04',15337,'15:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(141703,0,0,4781,'2025-12-04',15338,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(141704,0,0,4781,'2025-12-04',15339,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(141705,0,0,4781,'2025-12-04',15340,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(141706,0,0,4781,'2025-12-05',15562,'12:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141707,0,0,4781,'2025-12-04',15563,'12:41:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141708,0,0,4781,'2025-12-05',15567,'12:45:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141709,0,0,4781,'2025-12-05',15568,'12:46:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(141710,0,0,4781,'2025-12-01',15583,'13:25:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141711,0,0,4781,'2025-12-02',15584,'13:25:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141762,0,0,4863,'2025-12-02',14436,'10:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(141763,0,0,4863,'2025-12-02',14437,'10:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(141764,0,0,4863,'2025-12-02',14438,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (213)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(141765,0,0,4863,'2025-12-02',14439,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (213)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(141766,0,0,4863,'2025-12-02',14440,'10:15:00','CARE','CARE0001','NURSING CHARGES (213)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(141767,0,0,4863,'2025-12-02',14441,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(141768,0,0,4863,'2025-12-02',14442,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'213',0,'IPB',99,'Y','','',0,''),(141769,0,0,4863,'2025-12-03',14851,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(141770,0,0,4863,'2025-12-03',14852,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(141771,0,0,4863,'2025-12-03',14853,'10:15:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(141772,0,0,4863,'2025-12-03',14854,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(141773,0,0,4863,'2025-12-03',14855,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(141774,0,0,4863,'2025-12-02',14856,'11:21:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141775,0,0,4863,'2025-12-02',14857,'11:21:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141776,0,0,4863,'2025-12-02',14859,'11:22:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141777,0,0,4863,'2025-12-02',14860,'11:22:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,244,0,'',0,'IPB',99,'Y','','',0,''),(141778,0,0,4863,'2025-12-04',15230,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(141779,0,0,4863,'2025-12-04',15231,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(141780,0,0,4863,'2025-12-04',15232,'10:15:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(141781,0,0,4863,'2025-12-04',15233,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(141782,0,0,4863,'2025-12-04',15234,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(141783,0,0,4863,'2025-12-04',15235,'11:57:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141784,0,0,4863,'2025-12-03',15236,'11:57:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,52,0,'',0,'IPB',99,'Y','','',0,''),(141785,0,0,4863,'2025-12-03',15237,'11:58:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141786,0,0,4863,'2025-12-04',15238,'11:58:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141787,0,0,4863,'2025-12-03',15239,'11:59:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,52,0,'',0,'IPB',99,'Y','','',0,''),(141788,0,0,4863,'2025-12-05',15572,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(141789,0,0,4863,'2025-12-05',15576,'12:50:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141790,0,0,4863,'2025-12-02',15582,'13:24:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141862,0,0,4351,'2025-11-26',12845,'21:20:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(141863,0,0,4351,'2025-11-26',12846,'21:20:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(141864,0,0,4351,'2025-11-26',12847,'21:20:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(141865,0,0,4351,'2025-11-26',12848,'21:20:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(141866,0,0,4351,'2025-11-26',12849,'21:20:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(141867,0,0,4351,'2025-11-28',12850,'21:20:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(141868,0,0,4351,'2025-11-28',12851,'21:20:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(141869,0,0,4351,'2025-11-27',13464,'21:20:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(141870,0,0,4351,'2025-11-27',13465,'21:20:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(141871,0,0,4351,'2025-11-27',13466,'21:20:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(141872,0,0,4351,'2025-11-27',13467,'21:20:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(141873,0,0,4351,'2025-11-27',13468,'21:20:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(141874,0,0,4351,'2025-11-26',13609,'21:51:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141875,0,0,4351,'2025-11-27',13610,'21:52:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141876,0,0,4351,'2025-11-28',13611,'21:52:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141877,0,0,4351,'2025-11-28',13612,'21:52:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(141878,0,0,4351,'2025-11-28',13830,'21:20:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(141879,0,0,4351,'2025-11-28',13831,'21:20:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(141880,0,0,4351,'2025-11-26',13832,'21:20:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(141881,0,0,4351,'2025-11-26',13833,'21:20:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(141882,0,0,4351,'2025-11-28',13834,'21:20:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(142374,0,0,5223,'2025-12-05',15480,'09:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(142375,0,0,5223,'2025-12-05',15481,'09:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(142376,0,0,5223,'2025-12-05',15485,'09:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(142377,0,0,5223,'2025-12-05',15486,'09:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(142378,0,0,5223,'2025-12-05',15742,'19:01:00','CARE','CARE0007','DAY CARE CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142379,0,0,5223,'2025-12-05',15743,'19:01:00','SURG','SURG0016','SURGERY CHARGE','H',8200,1.00,8200.00,'P',0.00,0.00,8200.00,0.00,0.00,8200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(142380,0,0,5223,'2025-12-05',15744,'19:01:00','SURG','SURG0015','OT USAGE CHARGE','H',2700,1.00,2700.00,'P',0.00,0.00,2700.00,0.00,0.00,2700.00,3,0,'',0,'IPB',99,'Y','','',0,''),(142881,0,0,3764,'2025-11-20',10676,'10:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(142882,0,0,3764,'2025-11-20',10677,'10:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(142883,0,0,3764,'2025-11-20',10678,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (214)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'214',0,'IPB',99,'Y','','',0,''),(142884,0,0,3764,'2025-11-20',10679,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (214)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'214',0,'IPB',99,'Y','','',0,''),(142885,0,0,3764,'2025-11-20',10680,'10:00:00','CARE','CARE0001','NURSING CHARGES (214)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'214',0,'IPB',99,'Y','','',0,''),(142886,0,0,3764,'2025-11-20',10681,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (214)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'214',0,'IPB',99,'Y','','',0,''),(142887,0,0,3764,'2025-11-20',10682,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (214)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'214',0,'IPB',99,'Y','','',0,''),(142888,0,0,3764,'2025-11-21',11069,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (214)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'214',0,'IPB',99,'Y','','',0,''),(142889,0,0,3764,'2025-11-21',11071,'13:23:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142890,0,0,3764,'2025-11-20',11103,'14:39:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142891,0,0,3764,'2025-11-20',11104,'14:39:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142892,0,0,3764,'2025-11-20',11105,'14:39:00','USG','USG0091','USG ABDOMEN WITH PELVIS','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142893,0,0,3764,'2025-11-21',11106,'14:39:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142894,0,0,3764,'2025-11-20',11107,'14:39:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142895,0,0,3764,'2025-11-21',11108,'14:42:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(142896,0,0,3764,'2025-11-21',11109,'14:43:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142897,0,0,3764,'2025-11-21',11110,'14:43:00','AECO','AECO0008','RMO CHARGES DAY','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142898,0,0,3764,'2025-11-21',11111,'14:43:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142899,0,0,3764,'2025-11-20',11112,'14:44:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'',0,'IPB',99,'Y','','',0,''),(142900,0,0,3764,'2025-11-21',11113,'14:44:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'',0,'IPB',99,'Y','','',0,''),(142901,0,0,3764,'2025-11-22',11344,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(142902,0,0,3764,'2025-11-22',11345,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(142903,0,0,3764,'2025-11-22',11346,'10:00:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(142904,0,0,3764,'2025-11-22',11348,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'406',0,'IPB',99,'Y','','',0,''),(142905,0,0,3764,'2025-11-22',11349,'16:04:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142906,0,0,3764,'2025-11-22',11350,'16:04:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142907,0,0,3764,'2025-11-21',11351,'16:04:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142908,0,0,3764,'2025-11-21',11352,'16:07:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,187,0,'',0,'IPB',99,'Y','','',0,''),(142909,0,0,3764,'2025-11-22',11353,'16:07:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(142910,0,0,3764,'2025-11-22',11354,'16:08:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(142911,0,0,3764,'2025-11-23',11478,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (213)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(142912,0,0,3764,'2025-11-23',11479,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (213)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(142913,0,0,3764,'2025-11-23',11480,'10:00:00','CARE','CARE0001','NURSING CHARGES (213)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'213',0,'IPB',99,'Y','','',0,''),(142914,0,0,3764,'2025-11-23',11483,'12:14:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142915,0,0,3764,'2025-11-23',11484,'12:14:00','WPRC','WPRC0078','ECG','H',300,2.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142916,0,0,3764,'2025-11-23',11485,'12:15:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142917,0,0,3764,'2025-11-23',11486,'12:15:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142918,0,0,3764,'2025-11-23',11487,'12:16:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(142919,0,0,3764,'2025-11-23',11488,'12:16:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(142920,0,0,3764,'2025-11-23',11489,'12:17:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,213,0,'',0,'IPB',99,'Y','','',0,''),(142921,0,0,3764,'2025-11-23',11491,'12:20:00','WPRC','WPRC0097','2D ECHO','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,213,0,'',0,'IPB',99,'Y','','',0,''),(142922,0,0,3764,'2025-11-24',11812,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142923,0,0,3764,'2025-11-24',11813,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142924,0,0,3764,'2025-11-24',11814,'10:00:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142925,0,0,3764,'2025-11-24',11815,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(142926,0,0,3764,'2025-11-24',11816,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(142927,0,0,3764,'2025-11-25',12387,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142928,0,0,3764,'2025-11-25',12388,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142929,0,0,3764,'2025-11-25',12389,'10:00:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142930,0,0,3764,'2025-11-25',12390,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(142931,0,0,3764,'2025-11-25',12391,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(142932,0,0,3764,'2025-11-21',12392,'16:28:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'',0,'IPB',99,'Y','','',0,''),(142933,0,0,3764,'2025-11-24',12393,'16:31:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,66,0,'',0,'IPB',99,'Y','','',0,''),(142934,0,0,3764,'2025-11-24',12394,'16:32:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2500,1.00,2500.00,'A',0.00,0.00,2500.00,0.00,0.00,2500.00,8,0,'',0,'IPB',99,'Y','','',0,''),(142935,0,0,3764,'2025-11-24',12395,'16:33:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(142936,0,0,3764,'2025-11-24',12396,'16:33:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(142937,0,0,3764,'2025-11-25',12397,'16:33:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(142938,0,0,3764,'2025-11-25',12398,'16:33:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(142939,0,0,3764,'2025-11-24',12447,'17:04:00','USG','USG0092','USG ABDOMEN CHARGE','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142940,0,0,3764,'2025-11-24',12448,'17:05:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142941,0,0,3764,'2025-11-25',12449,'17:05:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142942,0,0,3764,'2025-11-24',12450,'17:05:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142943,0,0,3764,'2025-11-25',12451,'17:05:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142944,0,0,3764,'2025-11-22',12452,'17:07:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142945,0,0,3764,'2025-11-23',12453,'17:07:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142946,0,0,3764,'2025-11-26',12668,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142947,0,0,3764,'2025-11-26',12669,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142948,0,0,3764,'2025-11-26',12670,'10:00:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142949,0,0,3764,'2025-11-26',12671,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(142950,0,0,3764,'2025-11-26',12672,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(142951,0,0,3764,'2025-11-27',13006,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142952,0,0,3764,'2025-11-27',13007,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142953,0,0,3764,'2025-11-27',13008,'10:00:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142954,0,0,3764,'2025-11-27',13009,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(142955,0,0,3764,'2025-11-27',13010,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(142956,0,0,3764,'2025-11-26',13013,'11:46:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142957,0,0,3764,'2025-11-25',13014,'11:47:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,42,0,'',0,'IPB',99,'Y','','',0,''),(142958,0,0,3764,'2025-11-26',13015,'11:48:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142959,0,0,3764,'2025-11-27',13016,'11:48:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142960,0,0,3764,'2025-11-25',13017,'11:49:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142961,0,0,3764,'2025-11-25',13018,'11:49:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,42,0,'',0,'IPB',99,'Y','','',0,''),(142962,0,0,3764,'2025-11-26',13019,'11:49:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,42,0,'',0,'IPB',99,'Y','','',0,''),(142963,0,0,3764,'2025-11-26',13020,'11:50:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(142964,0,0,3764,'2025-11-26',13021,'11:51:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(142965,0,0,3764,'2025-11-27',13022,'11:51:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(142966,0,0,3764,'2025-11-27',13023,'11:51:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(142967,0,0,3764,'2025-11-25',13024,'11:52:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,88,0,'',0,'IPB',99,'Y','','',0,''),(142968,0,0,3764,'2025-11-26',13025,'11:52:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,88,0,'',0,'IPB',99,'Y','','',0,''),(142969,0,0,3764,'2025-11-26',13026,'11:52:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,88,0,'',0,'IPB',99,'Y','','',0,''),(142970,0,0,3764,'2025-11-25',13027,'11:53:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,8,0,'',0,'IPB',99,'Y','','',0,''),(142971,0,0,3764,'2025-11-28',13395,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142972,0,0,3764,'2025-11-28',13396,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142973,0,0,3764,'2025-11-28',13397,'10:00:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142974,0,0,3764,'2025-11-28',13398,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(142975,0,0,3764,'2025-11-28',13399,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(142976,0,0,3764,'2025-11-27',13494,'16:05:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142977,0,0,3764,'2025-11-28',13495,'16:05:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142978,0,0,3764,'2025-11-27',13496,'16:05:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142979,0,0,3764,'2025-11-28',13497,'16:06:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142980,0,0,3764,'2025-11-28',13498,'16:08:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(142981,0,0,3764,'2025-11-28',13499,'16:08:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(142982,0,0,3764,'2025-11-29',13801,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142983,0,0,3764,'2025-11-29',13802,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142984,0,0,3764,'2025-11-29',13803,'10:00:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142985,0,0,3764,'2025-11-29',13804,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(142986,0,0,3764,'2025-11-29',13805,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(142987,0,0,3764,'2025-11-29',13838,'19:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142988,0,0,3764,'2025-11-29',13839,'19:24:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142989,0,0,3764,'2025-11-30',14015,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142990,0,0,3764,'2025-11-30',14016,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142991,0,0,3764,'2025-11-30',14017,'10:00:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(142992,0,0,3764,'2025-11-30',14018,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(142993,0,0,3764,'2025-11-30',14019,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(142994,0,0,3764,'2025-11-30',14030,'20:28:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142995,0,0,3764,'2025-11-30',14031,'20:28:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142996,0,0,3764,'2025-11-30',14032,'20:29:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(142997,0,0,3764,'2025-11-29',14033,'20:31:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(142998,0,0,3764,'2025-11-29',14034,'20:32:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'',0,'IPB',99,'Y','','',0,''),(142999,0,0,3764,'2025-11-30',14035,'20:32:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(143000,0,0,3764,'2025-11-30',14036,'20:32:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(143042,0,0,4970,'2025-12-02',14778,'20:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(143043,0,0,4970,'2025-12-02',14779,'20:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(143044,0,0,4970,'2025-12-02',14780,'20:00:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(143045,0,0,4970,'2025-12-02',14781,'20:00:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(143046,0,0,4970,'2025-12-02',14782,'20:00:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(143047,0,0,4970,'2025-12-02',14784,'20:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(143048,0,0,4970,'2025-12-03',15112,'20:00:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(143049,0,0,4970,'2025-12-03',15113,'20:00:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(143050,0,0,4970,'2025-12-03',15114,'20:00:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(143051,0,0,4970,'2025-12-03',15115,'20:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(143052,0,0,4970,'2025-12-03',15116,'20:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(143053,0,0,4970,'2025-12-04',15154,'10:16:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143054,0,0,4970,'2025-12-02',15328,'15:12:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143055,0,0,4970,'2025-12-02',15329,'15:12:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143056,0,0,4970,'2025-12-02',15330,'15:12:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(143057,0,0,4970,'2025-12-03',15331,'15:13:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143058,0,0,4970,'2025-12-03',15332,'15:13:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143059,0,0,4970,'2025-12-04',15333,'15:13:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143060,0,0,4970,'2025-12-03',15334,'15:13:00','WPRC','WPRC0086','OXYGEN CHARGE','H',200,3.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143061,0,0,4970,'2025-12-04',15335,'15:14:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'',0,'IPB',99,'Y','','',0,''),(143062,0,0,4970,'2025-12-04',15454,'20:00:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,0.50,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(143063,0,0,4970,'2025-12-04',15455,'20:00:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,0.50,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(143064,0,0,4970,'2025-12-04',15456,'20:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(143065,0,0,4970,'2025-12-04',15457,'20:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(143066,0,0,4970,'2025-12-04',15458,'20:00:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,0.50,2750.00,'A',0.00,0.00,2750.00,0.00,0.00,2750.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(143067,0,0,4970,'2025-12-04',15463,'21:55:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(143173,0,0,5148,'2025-12-04',15260,'12:20:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(143174,0,0,5148,'2025-12-04',15261,'12:20:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(143175,0,0,5148,'2025-12-04',15262,'12:20:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(143176,0,0,5148,'2025-12-04',15263,'12:20:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(143177,0,0,5148,'2025-12-04',15264,'12:20:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(143178,0,0,5148,'2025-12-06',15265,'12:20:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(143179,0,0,5148,'2025-12-04',15266,'12:20:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(143180,0,0,5148,'2025-12-05',15793,'12:20:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(143181,0,0,5148,'2025-12-05',15794,'12:20:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(143182,0,0,5148,'2025-12-05',15795,'12:20:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(143183,0,0,5148,'2025-12-05',15796,'12:20:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(143184,0,0,5148,'2025-12-05',15797,'12:20:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'409',0,'IPB',99,'Y','','',0,''),(143185,0,0,5148,'2025-12-04',15891,'12:18:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143504,0,0,4751,'2025-12-01',14169,'12:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(143505,0,0,4751,'2025-12-01',14170,'12:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(143506,0,0,4751,'2025-12-01',14171,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(143507,0,0,4751,'2025-12-01',14172,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(143508,0,0,4751,'2025-12-01',14173,'12:00:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(143509,0,0,4751,'2025-12-01',14174,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(143510,0,0,4751,'2025-12-01',14175,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(143511,0,0,4751,'2025-12-01',14267,'16:53:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143512,0,0,4751,'2025-12-01',14499,'11:25:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(143513,0,0,4751,'2025-12-01',14500,'11:25:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,8.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143514,0,0,4751,'2025-12-01',14501,'11:25:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143515,0,0,4751,'2025-12-01',14502,'11:26:00','WPRC','WPRC0088','ENDOTRACHEAL INTUBATION','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,39,0,'',0,'IPB',99,'Y','','',0,''),(143516,0,0,4751,'2025-12-01',14503,'11:26:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143517,0,0,4751,'2025-12-01',14504,'11:27:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143518,0,0,4751,'2025-12-02',14505,'11:27:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143519,0,0,4751,'2025-12-01',14506,'11:28:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143520,0,0,4751,'2025-12-02',14507,'11:28:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143521,0,0,4751,'2025-12-01',14509,'11:28:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143522,0,0,4751,'2025-12-02',14553,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(143523,0,0,4751,'2025-12-02',14554,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(143524,0,0,4751,'2025-12-02',14555,'12:00:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(143525,0,0,4751,'2025-12-02',14556,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(143526,0,0,4751,'2025-12-02',14557,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(143527,0,0,4751,'2025-12-03',15087,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(143528,0,0,4751,'2025-12-03',15088,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(143529,0,0,4751,'2025-12-03',15089,'12:00:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(143530,0,0,4751,'2025-12-03',15090,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(143531,0,0,4751,'2025-12-03',15091,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(143532,0,0,4751,'2025-12-02',15173,'11:04:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143533,0,0,4751,'2025-12-04',15174,'11:04:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143534,0,0,4751,'2025-12-03',15175,'11:04:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143535,0,0,4751,'2025-12-02',15176,'11:05:00','USG','USG0091','USG ABDOMEN WITH PELVIS','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143536,0,0,4751,'2025-12-03',15178,'11:06:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143537,0,0,4751,'2025-12-04',15179,'11:06:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143538,0,0,4751,'2025-12-04',15252,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(143539,0,0,4751,'2025-12-04',15253,'12:00:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(143540,0,0,4751,'2025-12-04',15254,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(143541,0,0,4751,'2025-12-04',15255,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(143542,0,0,4751,'2025-12-04',15256,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(143543,0,0,4751,'2025-12-05',15773,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(143544,0,0,4751,'2025-12-05',15774,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(143545,0,0,4751,'2025-12-05',15775,'12:00:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(143546,0,0,4751,'2025-12-05',15776,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(143547,0,0,4751,'2025-12-05',15777,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(143548,0,0,4751,'2025-12-06',15903,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'406',0,'IPB',99,'Y','','',0,''),(143549,0,0,4751,'2025-12-05',15907,'12:27:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143550,0,0,4751,'2025-12-06',15908,'12:28:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(143601,0,0,5301,'2025-12-05',15697,'17:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',1,'','','',0,''),(143602,0,0,5301,'2025-12-05',15698,'17:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',99,'','','',0,''),(143603,0,0,5301,'2025-12-05',15699,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'',99,'','','',0,''),(143604,0,0,5301,'2025-12-05',15700,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'',99,'','','',0,''),(143605,0,0,5301,'2025-12-05',15701,'17:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'',99,'','','',0,''),(143606,0,0,5301,'2025-12-05',15702,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'401',0,'',99,'','','',0,''),(143607,0,0,5301,'2025-12-06',15703,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'401',0,'',99,'','','',0,''),(144680,0,0,3611,'2025-11-18',10293,'17:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(144681,0,0,3611,'2025-11-18',10294,'17:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(144682,0,0,3611,'2025-11-18',10295,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(144683,0,0,3611,'2025-11-18',10296,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(144684,0,0,3611,'2025-11-18',10297,'17:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(144685,0,0,3611,'2025-11-18',10299,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,78,0,'209',0,'IPB',99,'Y','','',0,''),(144686,0,0,3611,'2025-11-19',10339,'10:04:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144687,0,0,3611,'2025-11-19',10717,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(144688,0,0,3611,'2025-11-19',10718,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(144689,0,0,3611,'2025-11-19',10719,'17:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(144690,0,0,3611,'2025-11-19',10720,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'209',0,'IPB',99,'Y','','',0,''),(144691,0,0,3611,'2025-11-19',10721,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'209',0,'IPB',99,'Y','','',0,''),(144692,0,0,3611,'2025-11-18',10723,'11:19:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144693,0,0,3611,'2025-11-18',10724,'11:19:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144694,0,0,3611,'2025-11-19',10725,'11:19:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,8.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144695,0,0,3611,'2025-11-19',10727,'11:20:00','USG','USG0091','USG ABDOMEN WITH PELVIS','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144696,0,0,3611,'2025-11-20',10729,'11:21:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144697,0,0,3611,'2025-11-18',10730,'11:21:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144698,0,0,3611,'2025-11-19',10731,'11:21:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144699,0,0,3611,'2025-11-20',10732,'11:21:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144700,0,0,3611,'2025-11-18',10733,'11:22:00','WPRC','WPRC0097','2D ECHO','H',2500,1.00,2500.00,'P',0.00,0.00,2500.00,0.00,0.00,2500.00,62,0,'',0,'IPB',99,'Y','','',0,''),(144701,0,0,3611,'2025-11-18',10734,'11:22:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,62,0,'',0,'IPB',99,'Y','','',0,''),(144702,0,0,3611,'2025-11-20',10899,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144703,0,0,3611,'2025-11-20',10900,'17:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144704,0,0,3611,'2025-11-20',10901,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(144705,0,0,3611,'2025-11-20',10902,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(144706,0,0,3611,'2025-11-20',10903,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144707,0,0,3611,'2025-11-21',11214,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144708,0,0,3611,'2025-11-21',11215,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144709,0,0,3611,'2025-11-21',11216,'17:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144710,0,0,3611,'2025-11-21',11217,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(144711,0,0,3611,'2025-11-21',11218,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(144712,0,0,3611,'2025-11-22',11519,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144713,0,0,3611,'2025-11-22',11520,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144714,0,0,3611,'2025-11-22',11521,'17:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144715,0,0,3611,'2025-11-22',11522,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(144716,0,0,3611,'2025-11-22',11523,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(144717,0,0,3611,'2025-11-23',11557,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144718,0,0,3611,'2025-11-23',11558,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144719,0,0,3611,'2025-11-23',11559,'17:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144720,0,0,3611,'2025-11-23',11560,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(144721,0,0,3611,'2025-11-23',11561,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(144722,0,0,3611,'2025-11-24',12208,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(144723,0,0,3611,'2025-11-24',12209,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(144724,0,0,3611,'2025-11-24',12371,'15:21:00','ROOM','ROOM0009','ROOM CHARGES','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144725,0,0,3611,'2025-11-24',12372,'15:21:00','AECO','AECO0008','RMO CHARGES DAY','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144726,0,0,3611,'2025-11-24',12373,'15:21:00','CARE','CARE0001','NURSING CHARGES','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144727,0,0,3611,'2025-11-25',12454,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(144728,0,0,3611,'2025-11-25',12455,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(144729,0,0,3611,'2025-11-25',12456,'17:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(144730,0,0,3611,'2025-11-25',12457,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'209',0,'IPB',99,'Y','','',0,''),(144731,0,0,3611,'2025-11-25',12458,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'209',0,'IPB',99,'Y','','',0,''),(144732,0,0,3611,'2025-11-26',13166,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(144733,0,0,3611,'2025-11-26',13167,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(144734,0,0,3611,'2025-11-26',13168,'17:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(144735,0,0,3611,'2025-11-26',13169,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'209',0,'IPB',99,'Y','','',0,''),(144736,0,0,3611,'2025-11-26',13170,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'209',0,'IPB',99,'Y','','',0,''),(144737,0,0,3611,'2025-11-27',13434,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(144738,0,0,3611,'2025-11-27',13435,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(144739,0,0,3611,'2025-11-27',13436,'17:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(144740,0,0,3611,'2025-11-27',13437,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'209',0,'IPB',99,'Y','','',0,''),(144741,0,0,3611,'2025-11-27',13438,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'209',0,'IPB',99,'Y','','',0,''),(144742,0,0,3611,'2025-11-28',13535,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144743,0,0,3611,'2025-11-28',13536,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144744,0,0,3611,'2025-11-28',13537,'17:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144745,0,0,3611,'2025-11-28',13538,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(144746,0,0,3611,'2025-11-28',13539,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(144747,0,0,3611,'2025-11-29',13796,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144748,0,0,3611,'2025-11-29',13797,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144749,0,0,3611,'2025-11-29',13798,'17:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144750,0,0,3611,'2025-11-29',13799,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(144751,0,0,3611,'2025-11-29',13800,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(144752,0,0,3611,'2025-11-30',14010,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144753,0,0,3611,'2025-11-30',14011,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144754,0,0,3611,'2025-11-30',14012,'17:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144755,0,0,3611,'2025-11-30',14013,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(144756,0,0,3611,'2025-11-30',14014,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(144757,0,0,3611,'2025-12-01',14274,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144758,0,0,3611,'2025-12-01',14275,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144759,0,0,3611,'2025-12-01',14276,'17:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(144760,0,0,3611,'2025-12-01',14277,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(144761,0,0,3611,'2025-12-01',14278,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(144762,0,0,3611,'2025-11-24',14660,'15:56:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,62,0,'',0,'IPB',99,'Y','','',0,''),(144763,0,0,3611,'2025-11-24',14661,'15:56:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,62,0,'',0,'IPB',99,'Y','','',0,''),(144764,0,0,3611,'2025-11-25',14662,'15:56:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,62,0,'',0,'IPB',99,'Y','','',0,''),(144765,0,0,3611,'2025-11-26',14663,'15:59:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,62,0,'',0,'IPB',99,'Y','','',0,''),(144766,0,0,3611,'2025-11-27',14664,'15:59:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,62,0,'',0,'IPB',99,'Y','','',0,''),(144767,0,0,3611,'2025-11-28',14665,'16:00:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,62,0,'',0,'IPB',99,'Y','','',0,''),(144768,0,0,3611,'2025-11-28',14666,'16:00:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,38,0,'',0,'IPB',99,'Y','','',0,''),(144769,0,0,3611,'2025-12-01',14667,'16:01:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,62,0,'',0,'IPB',99,'Y','','',0,''),(144770,0,0,3611,'2025-12-02',14668,'16:01:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,62,0,'',0,'IPB',99,'Y','','',0,''),(144771,0,0,3611,'2025-12-02',14669,'16:02:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'',0,'IPB',99,'Y','','',0,''),(144772,0,0,3611,'2025-11-21',14671,'16:05:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,10.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144773,0,0,3611,'2025-11-22',14672,'16:05:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144774,0,0,3611,'2025-11-23',14673,'16:05:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144775,0,0,3611,'2025-11-24',14674,'16:05:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144776,0,0,3611,'2025-11-25',14675,'16:05:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144777,0,0,3611,'2025-11-26',14676,'16:05:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144778,0,0,3611,'2025-11-27',14677,'16:06:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144779,0,0,3611,'2025-11-28',14678,'16:06:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144780,0,0,3611,'2025-11-29',14679,'16:06:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144781,0,0,3611,'2025-11-30',14680,'16:07:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144782,0,0,3611,'2025-12-01',14681,'16:07:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144783,0,0,3611,'2025-12-02',14682,'16:07:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144784,0,0,3611,'2025-11-21',14683,'16:09:00','WPRC','WPRC0116','SLED DIALYSIS','H',8000,1.00,8000.00,'P',0.00,0.00,8000.00,0.00,0.00,8000.00,78,0,'',0,'IPB',99,'Y','','',0,''),(144785,0,0,3611,'2025-11-19',14684,'16:10:00','WPRC','WPRC0116','SLED DIALYSIS','H',8000,1.00,8000.00,'P',0.00,0.00,8000.00,0.00,0.00,8000.00,78,0,'',0,'IPB',99,'Y','','',0,''),(144786,0,0,3611,'2025-11-24',14685,'16:10:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(144893,0,0,5113,'2025-12-04',15147,'10:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(144894,0,0,5113,'2025-12-04',15148,'10:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(144895,0,0,5113,'2025-12-04',15149,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(144896,0,0,5113,'2025-12-04',15150,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(144897,0,0,5113,'2025-12-04',15151,'10:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(144898,0,0,5113,'2025-12-04',15152,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(144899,0,0,5113,'2025-12-04',15153,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(144900,0,0,5113,'2025-12-05',15788,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(144901,0,0,5113,'2025-12-05',15789,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(144902,0,0,5113,'2025-12-05',15790,'10:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(144903,0,0,5113,'2025-12-05',15791,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(144904,0,0,5113,'2025-12-05',15792,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(144905,0,0,5113,'2025-12-06',15861,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(144906,0,0,5113,'2025-12-06',15862,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(144907,0,0,5113,'2025-12-06',15863,'10:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(144908,0,0,5113,'2025-12-06',15864,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(144909,0,0,5113,'2025-12-06',15865,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(144910,0,0,5113,'2025-12-04',16020,'17:00:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(145260,0,0,165,'2025-10-09',235,'09:15:00','REG','REG0001','ADMISSION CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'ER',1,'Y','','',0,''),(146635,0,0,5341,'2025-12-06',15830,'10:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(146636,0,0,5341,'2025-12-06',15831,'10:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(146637,0,0,5341,'2025-12-07',16126,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(146638,0,0,5341,'2025-12-06',16139,'19:24:00','SURG','SURG0014','SURGERY CHARGE','H',20000,1.00,20000.00,'A',0.00,0.00,20000.00,0.00,0.00,20000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(146639,0,0,5341,'2025-12-06',16140,'19:24:00','SURG','SURG0015','OT USAGE CHARGE','H',5000,1.00,5000.00,'A',0.00,0.00,5000.00,0.00,0.00,5000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(146640,0,0,5341,'2025-12-06',16141,'19:25:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(146641,0,0,5341,'2025-12-06',16142,'19:25:00','AECO','AECO0008','RMO CHARGES DAY','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(146642,0,0,5341,'2025-12-06',16143,'19:25:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(146643,0,0,5341,'2025-12-06',16144,'19:26:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(146644,0,0,5341,'2025-12-06',16145,'19:26:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(146645,0,0,5341,'2025-12-07',16146,'19:26:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(146646,0,0,5341,'2025-12-06',16147,'19:26:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(149792,0,0,5089,'2025-12-03',15017,'18:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(149793,0,0,5089,'2025-12-03',15018,'18:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(149794,0,0,5089,'2025-12-03',15019,'18:30:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(149795,0,0,5089,'2025-12-03',15020,'18:30:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(149796,0,0,5089,'2025-12-03',15021,'18:30:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(149797,0,0,5089,'2025-12-08',15022,'18:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'212',0,'IPB',99,'Y','','',0,''),(149798,0,0,5089,'2025-12-03',15023,'18:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'212',0,'IPB',99,'Y','','',0,''),(149799,0,0,5089,'2025-12-04',15428,'18:30:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(149800,0,0,5089,'2025-12-04',15429,'18:30:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(149801,0,0,5089,'2025-12-04',15430,'18:30:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(149802,0,0,5089,'2025-12-04',15431,'18:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'212',0,'IPB',99,'Y','','',0,''),(149803,0,0,5089,'2025-12-04',15432,'18:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'212',0,'IPB',99,'Y','','',0,''),(149804,0,0,5089,'2025-12-05',15783,'18:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(149805,0,0,5089,'2025-12-05',15784,'18:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(149806,0,0,5089,'2025-12-05',15785,'18:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(149807,0,0,5089,'2025-12-05',15786,'18:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(149808,0,0,5089,'2025-12-05',15787,'18:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(149809,0,0,5089,'2025-12-06',16051,'18:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(149810,0,0,5089,'2025-12-06',16052,'18:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(149811,0,0,5089,'2025-12-06',16053,'18:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(149812,0,0,5089,'2025-12-06',16054,'18:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(149813,0,0,5089,'2025-12-06',16055,'18:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(149814,0,0,5089,'2025-12-07',16298,'18:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(149815,0,0,5089,'2025-12-07',16299,'18:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(149816,0,0,5089,'2025-12-07',16300,'18:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(149817,0,0,5089,'2025-12-07',16301,'18:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(149818,0,0,5089,'2025-12-07',16302,'18:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(149819,0,0,5089,'2025-12-03',16381,'11:53:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(149820,0,0,5089,'2025-12-03',16382,'11:53:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(149821,0,0,5089,'2025-12-04',16383,'11:53:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,5,0,'',0,'IPB',99,'Y','','',0,''),(149822,0,0,5089,'2025-12-04',16384,'11:53:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(149823,0,0,5089,'2025-12-04',16385,'11:53:00','USG','USG0091','USG ABDOMEN WITH PELVIS','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(149824,0,0,5089,'2025-12-05',16386,'11:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(149825,0,0,5089,'2025-12-06',16387,'11:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(149826,0,0,5089,'2025-12-07',16388,'11:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(149827,0,0,5089,'2025-12-08',16389,'11:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(149828,0,0,5089,'2025-12-03',16390,'11:55:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(149829,0,0,5089,'2025-12-03',16570,'18:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'212',0,'IPB',99,'Y','N','',0,''),(150368,0,0,3114,'2025-11-12',9028,'14:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(150369,0,0,3114,'2025-11-12',9029,'14:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(150370,0,0,3114,'2025-11-12',9030,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(150371,0,0,3114,'2025-11-12',9031,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(150372,0,0,3114,'2025-11-12',9032,'14:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(150373,0,0,3114,'2025-11-12',9034,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'408',0,'IPB',99,'Y','','',0,''),(150374,0,0,3114,'2025-11-13',9258,'12:32:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(150375,0,0,3114,'2025-11-13',9379,'14:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'408',0,'IPB',99,'Y','','',0,''),(150376,0,0,3114,'2025-11-13',9381,'20:01:00','OETR','OETR0004','CASHLESS PACKAGE','H',70007,1.00,70007.00,'P',0.00,0.00,70007.00,0.00,0.00,70007.00,0,0,'',0,'IPB',99,'Y','','',0,''),(150377,0,0,1369,'2025-10-24',4548,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(150378,0,0,1369,'2025-10-24',4549,'09:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(150379,0,0,1369,'2025-10-24',4550,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(150380,0,0,1369,'2025-10-24',4551,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(150381,0,0,1369,'2025-10-24',4552,'09:30:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(150382,0,0,1369,'2025-10-24',4553,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'404',0,'IPB',99,'Y','','',0,''),(150383,0,0,1369,'2025-10-24',4554,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'404',0,'IPB',99,'Y','','',0,''),(150384,0,0,1369,'2025-10-25',4908,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(150385,0,0,1369,'2025-10-25',4909,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(150386,0,0,1369,'2025-10-25',4910,'09:30:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(150387,0,0,1369,'2025-10-25',4911,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'305',0,'IPB',99,'Y','','',0,''),(150388,0,0,1369,'2025-10-25',4912,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'305',0,'IPB',99,'Y','','',0,''),(150389,0,0,1369,'2025-10-24',4947,'10:20:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150390,0,0,1369,'2025-10-24',4948,'10:20:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150391,0,0,1369,'2025-10-24',4949,'10:20:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,3,0,'',0,'IPB',99,'Y','','',0,''),(150392,0,0,1369,'2025-10-26',4950,'10:20:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(150393,0,0,1369,'2025-10-26',4951,'10:21:00','ROOM','ROOM0005','CONSULTANT VISIT 1 - SPECIAL','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150394,0,0,1369,'2025-10-24',5594,'17:32:00','SURG','SURG0014','SURGERY CHARGE','H',0,1.00,0.00,'P',0.00,0.00,0.00,0.00,0.00,0.00,3,0,'',0,'IPB',99,'Y','','',0,''),(150395,0,0,1369,'2025-10-24',5595,'17:32:00','SURG','SURG0015','OT USAGE CHARGE','H',0,1.00,0.00,'P',0.00,0.00,0.00,0.00,0.00,0.00,3,0,'',0,'IPB',99,'Y','','',0,''),(150396,0,0,1443,'2025-10-25',4726,'09:37:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(150397,0,0,1443,'2025-10-25',4727,'09:37:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(150398,0,0,1443,'2025-10-25',4728,'09:37:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(150399,0,0,1443,'2025-10-25',4729,'09:37:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(150400,0,0,1443,'2025-10-25',4730,'09:37:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(150401,0,0,1443,'2025-10-25',4731,'09:37:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'404',0,'IPB',99,'Y','','',0,''),(150402,0,0,1443,'2025-10-25',4732,'09:37:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'404',0,'IPB',99,'Y','','',0,''),(150403,0,0,1443,'2025-10-26',5255,'09:37:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(150404,0,0,1443,'2025-10-26',5256,'09:37:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(150405,0,0,1443,'2025-10-26',5257,'09:37:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(150406,0,0,1443,'2025-10-26',5258,'09:37:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'404',0,'IPB',99,'Y','','',0,''),(150407,0,0,1443,'2025-10-26',5259,'09:37:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'404',0,'IPB',99,'Y','','',0,''),(150408,0,0,1443,'2025-10-25',5260,'15:19:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150409,0,0,1443,'2025-10-25',5261,'15:19:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150410,0,0,1443,'2025-10-27',5262,'15:19:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,3,0,'',0,'IPB',99,'Y','','',0,''),(150411,0,0,1443,'2025-10-27',5263,'15:21:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(150412,0,0,1443,'2025-10-25',5264,'15:21:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'',0,'IPB',99,'Y','','',0,''),(150413,0,0,1443,'2025-10-25',5588,'17:19:00','SURG','SURG0014','SURGERY CHARGE','H',0,1.00,0.00,'P',0.00,0.00,0.00,0.00,0.00,0.00,3,0,'',0,'IPB',99,'Y','','',0,''),(150414,0,0,1443,'2025-10-25',5589,'17:19:00','SURG','SURG0015','OT USAGE CHARGE','H',0,1.00,0.00,'P',0.00,0.00,0.00,0.00,0.00,0.00,3,0,'',0,'IPB',99,'Y','','',0,''),(150415,0,0,2395,'2025-11-04',7301,'16:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(150416,0,0,2395,'2025-11-04',7302,'16:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(150417,0,0,2395,'2025-11-04',7303,'16:15:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(150418,0,0,2395,'2025-11-04',7304,'16:15:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(150419,0,0,2395,'2025-11-04',7305,'16:15:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(150420,0,0,2395,'2025-11-04',7306,'16:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'406',0,'IPB',99,'Y','','',0,''),(150421,0,0,2395,'2025-11-04',7307,'16:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'406',0,'IPB',99,'Y','','',0,''),(150422,0,0,2395,'2025-11-05',7595,'16:15:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(150423,0,0,2395,'2025-11-05',7596,'16:15:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(150424,0,0,2395,'2025-11-05',7597,'16:15:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(150425,0,0,2395,'2025-11-05',7598,'16:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'406',0,'IPB',99,'Y','','',0,''),(150426,0,0,2395,'2025-11-05',7599,'16:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'406',0,'IPB',99,'Y','','',0,''),(150427,0,0,2395,'2025-11-06',7730,'14:16:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'',0,'IPB',99,'Y','','',0,''),(150428,0,0,2395,'2025-11-04',7731,'14:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150429,0,0,2395,'2025-11-04',7733,'14:25:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(150430,0,0,2395,'2025-11-04',8335,'14:32:00','OETR','OETR0005','X-RAY SHOULDER','H',1000,2.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150431,0,0,2825,'2025-11-10',8461,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(150432,0,0,2825,'2025-11-10',8462,'09:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(150433,0,0,2825,'2025-11-10',8463,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(150434,0,0,2825,'2025-11-10',8464,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(150435,0,0,2825,'2025-11-10',8465,'09:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(150436,0,0,2825,'2025-11-10',8466,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'408',0,'IPB',99,'Y','','',0,''),(150437,0,0,2825,'2025-11-10',8467,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'408',0,'IPB',99,'Y','','',0,''),(150438,0,0,2825,'2025-11-11',8652,'10:16:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(150439,0,0,687,'2025-10-14',2303,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(150440,0,0,687,'2025-10-14',2304,'09:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(150441,0,0,687,'2025-10-14',2305,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (306)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'306',0,'IPB',99,'Y','','',0,''),(150442,0,0,687,'2025-10-14',2306,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (306)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'306',0,'IPB',99,'Y','','',0,''),(150443,0,0,687,'2025-10-14',2307,'09:30:00','CARE','CARE0001','NURSING CHARGES (306)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'306',0,'IPB',99,'Y','','',0,''),(150444,0,0,687,'2025-10-14',2308,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (306)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'306',0,'IPB',99,'Y','','',0,''),(150445,0,0,687,'2025-10-14',2309,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (306)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'306',0,'IPB',99,'Y','','',0,''),(150446,0,0,687,'2025-10-14',5946,'23:04:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150447,0,0,687,'2025-10-14',5947,'23:05:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150448,0,0,687,'2025-10-15',5948,'23:05:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150449,0,0,687,'2025-10-15',5949,'23:05:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(150450,0,0,687,'2025-10-14',5950,'23:05:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(150451,0,0,2556,'2025-11-06',7619,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(150452,0,0,2556,'2025-11-06',7620,'09:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(150453,0,0,2556,'2025-11-06',7621,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(150454,0,0,2556,'2025-11-06',7622,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(150455,0,0,2556,'2025-11-06',7623,'09:30:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(150456,0,0,2556,'2025-11-06',7624,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'404',0,'IPB',99,'Y','','',0,''),(150457,0,0,2556,'2025-11-06',7625,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'404',0,'IPB',99,'Y','','',0,''),(150458,0,0,2556,'2025-11-07',8043,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'404',0,'IPB',99,'Y','','',0,''),(150459,0,0,2556,'2025-11-06',8046,'10:29:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150460,0,0,2556,'2025-11-07',8047,'10:30:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(150662,0,0,5338,'2025-12-05',15814,'20:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(150663,0,0,5338,'2025-12-05',15815,'20:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(150664,0,0,5338,'2025-12-05',15816,'20:30:00','ROOM','ROOM0009','ROOM CHARGES (308)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(150665,0,0,5338,'2025-12-05',15817,'20:30:00','AECO','AECO0008','RMO CHARGES DAY (308)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(150666,0,0,5338,'2025-12-05',15818,'20:30:00','CARE','CARE0001','NURSING CHARGES (308)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(150667,0,0,5338,'2025-12-05',15998,'16:39:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150668,0,0,5338,'2025-12-06',15999,'16:39:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150669,0,0,5338,'2025-12-05',16000,'16:40:00','WPRC','WPRC0086','OXYGEN CHARGE','H',200,3.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150670,0,0,5338,'2025-12-06',16001,'16:41:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150671,0,0,5338,'2025-12-06',16002,'16:41:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150672,0,0,5338,'2025-12-06',16071,'20:30:00','AECO','AECO0008','RMO CHARGES DAY (308)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(150673,0,0,5338,'2025-12-06',16072,'20:30:00','CARE','CARE0001','NURSING CHARGES (308)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(150674,0,0,5338,'2025-12-06',16073,'20:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'308',0,'IPB',99,'Y','','',0,''),(150675,0,0,5338,'2025-12-06',16074,'20:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'308',0,'IPB',99,'Y','','',0,''),(150676,0,0,5338,'2025-12-06',16075,'20:30:00','ROOM','ROOM0009','ROOM CHARGES (308)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(150677,0,0,5338,'2025-12-07',16323,'20:30:00','ROOM','ROOM0009','ROOM CHARGES (308)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(150678,0,0,5338,'2025-12-07',16324,'20:30:00','AECO','AECO0008','RMO CHARGES DAY (308)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(150679,0,0,5338,'2025-12-07',16325,'20:30:00','CARE','CARE0001','NURSING CHARGES (308)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(150680,0,0,5338,'2025-12-07',16326,'20:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'308',0,'IPB',99,'Y','','',0,''),(150681,0,0,5338,'2025-12-07',16327,'20:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'308',0,'IPB',99,'Y','','',0,''),(150682,0,0,5338,'2025-12-07',16397,'12:09:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150683,0,0,5338,'2025-12-08',16398,'12:09:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150684,0,0,5338,'2025-12-08',16399,'12:09:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150685,0,0,5338,'2025-12-07',16400,'12:09:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(150686,0,0,5338,'2025-12-08',16668,'20:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'308',0,'IPB',99,'Y','','',0,''),(150687,0,0,5338,'2025-12-08',16669,'20:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'308',0,'IPB',99,'Y','','',0,''),(150688,0,0,5338,'2025-12-05',16672,'21:04:00','DRC','DRC0021','EMERGENCY CONSULTANT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,4,0,'',0,'IPB',99,'Y','','',0,''),(151534,0,0,5175,'2025-12-04',15365,'17:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(151535,0,0,5175,'2025-12-04',15366,'17:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(151536,0,0,5175,'2025-12-04',15367,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(151537,0,0,5175,'2025-12-04',15368,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(151538,0,0,5175,'2025-12-04',15369,'17:00:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(151539,0,0,5175,'2025-12-04',15371,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'207',0,'IPB',99,'Y','','',0,''),(151540,0,0,5175,'2025-12-05',15625,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'207',0,'IPB',99,'Y','','',0,''),(151541,0,0,5175,'2025-12-05',15626,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'207',0,'IPB',99,'Y','','',0,''),(151542,0,0,5175,'2025-12-04',15627,'17:07:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151543,0,0,5175,'2025-12-05',15628,'17:07:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151544,0,0,5175,'2025-12-04',15629,'17:07:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151545,0,0,5175,'2025-12-05',15630,'17:07:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151546,0,0,5175,'2025-12-06',16014,'16:57:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151547,0,0,5175,'2025-12-06',16015,'16:57:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151548,0,0,5175,'2025-12-06',16026,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(151549,0,0,5175,'2025-12-06',16027,'17:00:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(151550,0,0,5175,'2025-12-09',16028,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'411',0,'IPB',99,'Y','','',0,''),(151551,0,0,5175,'2025-12-06',16029,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'411',0,'IPB',99,'Y','','',0,''),(151552,0,0,5175,'2025-12-06',16030,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(151553,0,0,5175,'2025-12-07',16308,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(151554,0,0,5175,'2025-12-07',16309,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(151555,0,0,5175,'2025-12-07',16310,'17:00:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(151556,0,0,5175,'2025-12-07',16311,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'411',0,'IPB',99,'Y','','',0,''),(151557,0,0,5175,'2025-12-07',16312,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'411',0,'IPB',99,'Y','','',0,''),(151558,0,0,5175,'2025-12-07',16477,'13:30:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151559,0,0,5175,'2025-12-08',16478,'13:31:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,'');
INSERT INTO `pat_temp_bill_detail` VALUES (151560,0,0,5175,'2025-12-07',16479,'13:31:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151561,0,0,5175,'2025-12-05',16547,'16:06:00','ROOM','ROOM0009','ROOM CHARGES','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151562,0,0,5175,'2025-12-05',16548,'16:07:00','CARE','CARE0006','RMO CHARGES - SEMI','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151563,0,0,5175,'2025-12-05',16549,'16:07:00','CARE','CARE0002','NURSING CHARGES - SEMI ','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151564,0,0,5175,'2025-12-08',16699,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(151565,0,0,5175,'2025-12-08',16700,'17:00:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(151566,0,0,5175,'2025-12-08',16701,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'411',0,'IPB',99,'Y','','',0,''),(151567,0,0,5175,'2025-12-08',16702,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'411',0,'IPB',99,'Y','','',0,''),(151568,0,0,5175,'2025-12-08',16703,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(151569,0,0,5175,'2025-12-09',16707,'10:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151570,0,0,5175,'2025-12-08',16708,'10:10:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,42,0,'',0,'IPB',99,'Y','','',0,''),(151571,0,0,5175,'2025-12-08',16709,'10:11:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151572,0,0,5175,'2025-12-09',16710,'10:11:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151618,0,0,5604,'2025-12-08',16684,'22:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'P',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(151619,0,0,5604,'2025-12-08',16685,'22:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'P',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(151620,0,0,5604,'2025-12-08',16686,'22:15:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(151621,0,0,5604,'2025-12-08',16687,'22:15:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(151622,0,0,5604,'2025-12-08',16688,'22:15:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(151623,0,0,5604,'2025-12-08',16689,'22:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(151624,0,0,5604,'2025-12-08',16850,'12:55:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151625,0,0,5604,'2025-12-08',16851,'12:55:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151626,0,0,5604,'2025-12-09',16852,'12:55:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151627,0,0,5604,'2025-12-08',16853,'12:55:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151628,0,0,5604,'2025-12-08',16854,'12:56:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151629,0,0,5604,'2025-12-08',16855,'12:56:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151630,0,0,5604,'2025-12-08',16856,'12:56:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151704,0,0,5443,'2025-12-08',16196,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(151705,0,0,5443,'2025-12-08',16197,'09:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(151706,0,0,5443,'2025-12-08',16198,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(151707,0,0,5443,'2025-12-08',16199,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(151708,0,0,5443,'2025-12-08',16200,'09:30:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(151709,0,0,5443,'2025-12-08',16201,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(151710,0,0,5443,'2025-12-08',16202,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(151711,0,0,5443,'2025-12-09',16748,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(151712,0,0,5443,'2025-12-08',16878,'13:36:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(151713,0,0,5443,'2025-12-08',16879,'13:37:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151714,0,0,5443,'2025-12-08',16880,'13:37:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(151715,0,0,5443,'2025-12-09',16881,'13:37:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(151716,0,0,5443,'2025-12-08',16882,'13:46:00','SURG','SURG0016','SURGERY CHARGE','H',30500,1.00,30500.00,'P',0.00,0.00,30500.00,0.00,0.00,30500.00,3,0,'',0,'IPB',99,'Y','','',0,''),(151717,0,0,5443,'2025-12-09',16883,'13:46:00','SURG','SURG0015','OT USAGE CHARGE','H',10200,1.00,10200.00,'P',0.00,0.00,10200.00,0.00,0.00,10200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(154989,0,0,4677,'2025-11-29',13767,'00:00:00','PKG','CASE','CONSULTATION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,3,0,'',0,'',99,'Y','N','',0,''),(155794,0,0,5660,'2025-12-09',16871,'13:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(155795,0,0,5660,'2025-12-09',16872,'13:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(155796,0,0,5660,'2025-12-09',16873,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(155797,0,0,5660,'2025-12-09',16874,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(155798,0,0,5660,'2025-12-09',16875,'13:00:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(155799,0,0,5660,'2025-12-10',16876,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(155800,0,0,5660,'2025-12-09',16877,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(155801,0,0,5660,'2025-12-09',17248,'13:07:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(155802,0,0,5660,'2025-12-09',17249,'13:07:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(155803,0,0,5660,'2025-12-10',17250,'13:07:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(155804,0,0,5660,'2025-12-10',17251,'13:08:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(155805,0,0,5660,'2025-12-09',17252,'13:12:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,276,0,'',0,'IPB',99,'Y','','',0,''),(155806,0,0,5660,'2025-12-09',17253,'13:13:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,276,0,'',0,'IPB',99,'Y','','',0,''),(156097,0,0,5316,'2025-12-05',15727,'17:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(156098,0,0,5316,'2025-12-05',15728,'17:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(156099,0,0,5316,'2025-12-05',15729,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(156100,0,0,5316,'2025-12-05',15730,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(156101,0,0,5316,'2025-12-05',15731,'17:30:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(156102,0,0,5316,'2025-12-05',15733,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (211)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'211',0,'IPB',99,'Y','','',0,''),(156103,0,0,5316,'2025-12-05',15941,'15:45:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(156104,0,0,5316,'2025-12-05',15942,'15:45:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(156105,0,0,5316,'2025-12-06',15943,'15:45:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(156106,0,0,5316,'2025-12-06',15944,'15:45:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(156107,0,0,5316,'2025-12-05',15945,'15:46:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(156108,0,0,5316,'2025-12-06',15946,'15:46:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(156109,0,0,5316,'2025-12-05',15947,'15:47:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(156110,0,0,5316,'2025-12-06',15948,'15:47:00','WPRC','WPRC0114','DRESSING CHARGE - MAJOR','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,42,0,'',0,'IPB',99,'Y','','',0,''),(156111,0,0,5316,'2025-12-05',15949,'15:47:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(156112,0,0,5316,'2025-12-06',16061,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(156113,0,0,5316,'2025-12-06',16062,'17:30:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(156114,0,0,5316,'2025-12-06',16063,'17:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'211',0,'IPB',99,'Y','','',0,''),(156115,0,0,5316,'2025-12-06',16065,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(156116,0,0,5316,'2025-12-07',16102,'12:05:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(156117,0,0,5316,'2025-12-07',16103,'12:05:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(156118,0,0,5316,'2025-12-06',16104,'12:07:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(156119,0,0,5316,'2025-12-06',16105,'12:07:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,52,0,'',0,'IPB',99,'Y','','',0,''),(156120,0,0,5316,'2025-12-07',16313,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(156121,0,0,5316,'2025-12-07',16314,'17:30:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(156122,0,0,5316,'2025-12-07',16315,'17:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'407',0,'IPB',99,'Y','','',0,''),(156123,0,0,5316,'2025-12-07',16316,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'407',0,'IPB',99,'Y','','',0,''),(156124,0,0,5316,'2025-12-07',16317,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(156125,0,0,5316,'2025-12-08',16490,'13:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(156126,0,0,5316,'2025-12-07',16491,'13:40:00','WPRC','WPRC0114','DRESSING CHARGE - MAJOR','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(156127,0,0,5316,'2025-12-07',16492,'13:41:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(156128,0,0,5316,'2025-12-07',16493,'13:41:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(156129,0,0,5316,'2025-12-08',16494,'13:42:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(156130,0,0,5316,'2025-12-08',16735,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(156131,0,0,5316,'2025-12-08',16736,'17:30:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(156132,0,0,5316,'2025-12-08',16737,'17:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'407',0,'IPB',99,'Y','','',0,''),(156133,0,0,5316,'2025-12-08',16738,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'407',0,'IPB',99,'Y','','',0,''),(156134,0,0,5316,'2025-12-08',16739,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(156135,0,0,5316,'2025-12-09',17017,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(156136,0,0,5316,'2025-12-09',17018,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(156137,0,0,5316,'2025-12-09',17019,'17:30:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(156138,0,0,5316,'2025-12-09',17020,'17:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'407',0,'IPB',99,'Y','','',0,''),(156139,0,0,5316,'2025-12-09',17021,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'407',0,'IPB',99,'Y','','',0,''),(156140,0,0,5316,'2025-12-06',17063,'19:58:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(156141,0,0,5316,'2025-12-09',17066,'20:03:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(156142,0,0,5316,'2025-12-08',17067,'20:03:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(156143,0,0,5316,'2025-12-09',17068,'20:04:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(156144,0,0,5316,'2025-12-08',17069,'20:08:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,38,0,'',0,'IPB',99,'Y','','',0,''),(156145,0,0,5316,'2025-12-09',17070,'20:09:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(156146,0,0,5316,'2025-12-09',17071,'20:09:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,52,0,'',0,'IPB',99,'Y','','',0,''),(156147,0,0,5316,'2025-12-10',17168,'11:57:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(156148,0,0,5316,'2025-12-10',17169,'11:59:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'',0,'IPB',99,'Y','','',0,''),(156149,0,0,5316,'2025-12-10',17170,'11:59:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(158451,0,0,5723,'2025-12-09',17080,'21:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(158452,0,0,5723,'2025-12-09',17081,'21:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(158453,0,0,5723,'2025-12-09',17082,'21:15:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(158454,0,0,5723,'2025-12-09',17083,'21:15:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(158455,0,0,5723,'2025-12-09',17084,'21:15:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(158456,0,0,5723,'2025-12-09',17209,'12:30:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(158457,0,0,5723,'2025-12-10',17210,'12:30:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(158458,0,0,5723,'2025-12-09',17211,'12:30:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(158459,0,0,5723,'2025-12-09',17214,'12:31:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(158460,0,0,5723,'2025-12-09',17215,'12:31:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(158461,0,0,5723,'2025-12-10',17216,'12:31:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(158462,0,0,5723,'2025-12-09',17217,'12:31:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(158463,0,0,5723,'2025-12-10',17218,'12:32:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(158464,0,0,5723,'2025-12-10',17398,'17:42:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(158927,0,0,5728,'2025-12-10',17097,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(158928,0,0,5728,'2025-12-10',17098,'09:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(158929,0,0,5728,'2025-12-10',17102,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (302)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'302',0,'IPB',99,'Y','','',0,''),(158930,0,0,5728,'2025-12-10',17103,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (302)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'302',0,'IPB',99,'Y','','',0,''),(158931,0,0,5728,'2025-12-10',17445,'20:28:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(158943,0,0,5732,'2025-12-10',17111,'10:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(158944,0,0,5732,'2025-12-10',17112,'10:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(158945,0,0,5732,'2025-12-10',17116,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (303)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'303',0,'IPB',99,'Y','','',0,''),(158946,0,0,5732,'2025-12-10',17117,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (303)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'303',0,'IPB',99,'Y','','',0,''),(158947,0,0,5732,'2025-12-10',17444,'20:24:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(158948,0,0,5732,'2025-12-10',17449,'20:35:00','CARE','CARE0007','DAY CARE CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159095,0,0,5603,'2025-12-09',16677,'01:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(159096,0,0,5603,'2025-12-09',16678,'01:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(159097,0,0,5603,'2025-12-09',16679,'01:00:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(159098,0,0,5603,'2025-12-09',16680,'01:00:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(159099,0,0,5603,'2025-12-09',16681,'01:00:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(159100,0,0,5603,'2025-12-09',16682,'01:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'207',0,'IPB',99,'Y','','',0,''),(159101,0,0,5603,'2025-12-09',16683,'01:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'207',0,'IPB',99,'Y','','',0,''),(159102,0,0,5603,'2025-12-10',17306,'01:00:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(159103,0,0,5603,'2025-12-10',17307,'01:00:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(159104,0,0,5603,'2025-12-10',17308,'01:00:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(159105,0,0,5603,'2025-12-10',17309,'01:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'305',0,'IPB',99,'Y','','',0,''),(159106,0,0,5603,'2025-12-10',17310,'01:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'305',0,'IPB',99,'Y','','',0,''),(159107,0,0,5603,'2025-12-09',17383,'17:22:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159108,0,0,5603,'2025-12-09',17384,'17:22:00','WPRC','WPRC0078','ECG','H',300,2.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159109,0,0,5603,'2025-12-09',17385,'17:23:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159133,0,0,5426,'2025-12-07',16148,'23:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(159134,0,0,5426,'2025-12-07',16149,'23:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(159135,0,0,5426,'2025-12-07',16150,'23:30:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(159136,0,0,5426,'2025-12-07',16151,'23:30:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(159137,0,0,5426,'2025-12-07',16152,'23:30:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(159138,0,0,5426,'2025-12-08',16365,'11:34:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159139,0,0,5426,'2025-12-08',16366,'11:36:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159140,0,0,5426,'2025-12-08',16367,'11:37:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159141,0,0,5426,'2025-12-08',16740,'23:30:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(159142,0,0,5426,'2025-12-08',16741,'23:30:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(159143,0,0,5426,'2025-12-08',16742,'23:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(159144,0,0,5426,'2025-12-08',16743,'23:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(159145,0,0,5426,'2025-12-08',16744,'23:30:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(159146,0,0,5426,'2025-12-09',16927,'16:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159147,0,0,5426,'2025-12-09',17286,'23:30:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(159148,0,0,5426,'2025-12-09',17287,'23:30:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(159149,0,0,5426,'2025-12-09',17290,'23:30:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(159150,0,0,5426,'2025-12-09',17326,'16:09:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159151,0,0,5426,'2025-12-10',17453,'20:53:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,5,0,'',0,'IPB',99,'Y','','',0,''),(159152,0,0,5426,'2025-12-10',17454,'20:54:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'',0,'IPB',99,'Y','','',0,''),(159153,0,0,5426,'2025-12-10',17455,'20:54:00','DRC','DRC0019','CONSULTANT VISIT 2','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'',0,'IPB',99,'Y','','',0,''),(159154,0,0,5426,'2025-12-09',17456,'20:56:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'',0,'IPB',99,'Y','','',0,''),(159155,0,0,5426,'2025-12-09',17457,'20:56:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'',0,'IPB',99,'Y','','',0,''),(159444,0,0,5722,'2025-12-09',17073,'19:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(159445,0,0,5722,'2025-12-09',17074,'19:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(159446,0,0,5722,'2025-12-09',17075,'19:30:00','ROOM','ROOM0009','ROOM CHARGES (308)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(159447,0,0,5722,'2025-12-09',17076,'19:30:00','AECO','AECO0008','RMO CHARGES DAY (308)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(159448,0,0,5722,'2025-12-09',17077,'19:30:00','CARE','CARE0001','NURSING CHARGES (308)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(159449,0,0,5722,'2025-12-10',17515,'19:30:00','ROOM','ROOM0009','ROOM CHARGES (308)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(159450,0,0,5722,'2025-12-10',17516,'19:30:00','AECO','AECO0008','RMO CHARGES DAY (308)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(159451,0,0,5722,'2025-12-10',17517,'19:30:00','CARE','CARE0001','NURSING CHARGES (308)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(159452,0,0,5722,'2025-12-10',17518,'19:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'308',0,'IPB',99,'Y','','',0,''),(159453,0,0,5722,'2025-12-10',17519,'19:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'308',0,'IPB',99,'Y','','',0,''),(159454,0,0,5722,'2025-12-09',17524,'12:02:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159455,0,0,5722,'2025-12-10',17525,'12:02:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159456,0,0,5722,'2025-12-11',17526,'12:02:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159457,0,0,5722,'2025-12-11',17527,'12:03:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(159512,0,0,5588,'2025-12-08',16623,'18:45:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(159513,0,0,5588,'2025-12-08',16624,'18:45:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(159514,0,0,5588,'2025-12-08',16625,'18:45:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(159515,0,0,5588,'2025-12-08',16626,'18:45:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(159516,0,0,5588,'2025-12-08',16627,'18:45:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(159517,0,0,5588,'2025-12-08',16629,'18:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(159518,0,0,5588,'2025-12-08',16908,'16:27:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159519,0,0,5588,'2025-12-09',16909,'16:27:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159520,0,0,5588,'2025-12-08',16910,'16:27:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159521,0,0,5588,'2025-12-08',16911,'16:27:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,3,0,'',0,'IPB',99,'Y','','',0,''),(159522,0,0,5588,'2025-12-09',16912,'16:28:00','WPRC','WPRC0086','OXYGEN CHARGE','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159523,0,0,5588,'2025-12-08',16913,'16:30:00','SURG','SURG0016','SURGERY CHARGE','H',50000,1.00,50000.00,'P',0.00,0.00,50000.00,0.00,0.00,50000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(159524,0,0,5588,'2025-12-08',16914,'16:30:00','SURG','SURG0015','OT USAGE CHARGE','H',12500,1.00,12500.00,'P',0.00,0.00,12500.00,0.00,0.00,12500.00,3,0,'',0,'IPB',99,'Y','','',0,''),(159525,0,0,5588,'2025-12-09',17032,'18:45:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(159526,0,0,5588,'2025-12-09',17033,'18:45:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(159527,0,0,5588,'2025-12-09',17034,'18:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(159528,0,0,5588,'2025-12-09',17035,'18:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(159529,0,0,5588,'2025-12-09',17036,'18:45:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(159530,0,0,5588,'2025-12-10',17357,'16:35:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159531,0,0,5588,'2025-12-10',17501,'18:45:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(159532,0,0,5588,'2025-12-10',17502,'18:45:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(159533,0,0,5588,'2025-12-10',17503,'18:45:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(159534,0,0,5588,'2025-12-10',17504,'18:45:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'411',0,'IPB',99,'Y','','',0,''),(159535,0,0,5588,'2025-12-10',17505,'18:45:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(159536,0,0,5588,'2025-12-11',17533,'12:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159537,0,0,5588,'2025-12-11',17541,'12:25:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(159538,0,0,5588,'2025-12-11',17542,'12:39:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(159857,0,0,5445,'2025-12-08',16206,'03:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(159858,0,0,5445,'2025-12-08',16207,'03:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(159859,0,0,5445,'2025-12-08',16208,'03:30:00','ROOM','ROOM0009','ROOM CHARGES (211)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(159860,0,0,5445,'2025-12-08',16209,'03:30:00','AECO','AECO0008','RMO CHARGES DAY (211)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(159861,0,0,5445,'2025-12-08',16210,'03:30:00','CARE','CARE0001','NURSING CHARGES (211)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'211',0,'IPB',99,'Y','','',0,''),(159862,0,0,5445,'2025-12-08',16211,'03:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(159863,0,0,5445,'2025-12-08',16212,'03:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (211)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(159864,0,0,5445,'2025-12-08',16247,'10:36:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159865,0,0,5445,'2025-12-09',16753,'03:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (211)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(159866,0,0,5445,'2025-12-09',16754,'03:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (211)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'211',0,'IPB',99,'Y','','',0,''),(159867,0,0,5445,'2025-12-08',16782,'11:08:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159868,0,0,5445,'2025-12-08',16783,'11:08:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159869,0,0,5445,'2025-12-08',16784,'11:09:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(159870,0,0,5445,'2025-12-08',16785,'11:09:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(159871,0,0,5445,'2025-12-09',16786,'11:09:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159872,0,0,5445,'2025-12-08',16787,'11:10:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',400,5.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159873,0,0,5445,'2025-12-08',16788,'11:10:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159874,0,0,5445,'2025-12-08',16789,'11:10:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159875,0,0,5445,'2025-12-09',16790,'11:10:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159876,0,0,5445,'2025-12-08',16791,'11:11:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159877,0,0,5445,'2025-12-09',16792,'11:11:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159878,0,0,5445,'2025-12-09',16793,'11:14:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159879,0,0,5445,'2025-12-09',16794,'11:15:00','AECO','AECO0008','RMO CHARGES DAY','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159880,0,0,5445,'2025-12-09',16795,'11:15:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159881,0,0,5445,'2025-12-10',17291,'03:30:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(159882,0,0,5445,'2025-12-10',17292,'03:30:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(159883,0,0,5445,'2025-12-10',17293,'03:30:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(159884,0,0,5445,'2025-12-10',17294,'03:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(159885,0,0,5445,'2025-12-10',17295,'03:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'304',0,'IPB',99,'Y','','',0,''),(159886,0,0,5445,'2025-12-10',17386,'17:24:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159887,0,0,5445,'2025-12-10',17387,'17:25:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159888,0,0,5445,'2025-12-11',17552,'13:12:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159889,0,0,5445,'2025-12-11',17553,'13:13:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(159890,0,0,5445,'2025-12-11',17554,'13:13:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(160567,0,0,5425,'2025-12-07',16132,'16:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(160568,0,0,5425,'2025-12-07',16133,'16:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(160569,0,0,5425,'2025-12-07',16134,'16:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(160570,0,0,5425,'2025-12-07',16135,'16:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(160571,0,0,5425,'2025-12-07',16136,'16:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(160572,0,0,5425,'2025-12-07',16138,'16:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(160573,0,0,5425,'2025-12-07',16225,'10:21:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160574,0,0,5425,'2025-12-08',16226,'10:25:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160575,0,0,5425,'2025-12-08',16227,'10:26:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160576,0,0,5425,'2025-12-08',16228,'10:26:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160577,0,0,5425,'2025-12-07',16229,'10:26:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160578,0,0,5425,'2025-12-07',16230,'10:26:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160579,0,0,5425,'2025-12-08',16231,'10:26:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160580,0,0,5425,'2025-12-07',16232,'10:26:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160581,0,0,5425,'2025-12-08',16233,'10:26:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160582,0,0,5425,'2025-12-08',16647,'16:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(160583,0,0,5425,'2025-12-08',16648,'16:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(160584,0,0,5425,'2025-12-08',16649,'16:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(160585,0,0,5425,'2025-12-08',16650,'16:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(160586,0,0,5425,'2025-12-08',16651,'16:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(160587,0,0,5425,'2025-12-09',17022,'16:30:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(160588,0,0,5425,'2025-12-09',17023,'16:30:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(160589,0,0,5425,'2025-12-09',17024,'16:30:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(160590,0,0,5425,'2025-12-09',17025,'16:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'305',0,'IPB',99,'Y','','',0,''),(160591,0,0,5425,'2025-12-09',17026,'16:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'305',0,'IPB',99,'Y','','',0,''),(160592,0,0,5425,'2025-12-10',17358,'16:30:00','ROOM','ROOM0009','ROOM CHARGES (310)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'310',0,'IPB',99,'Y','','',0,''),(160593,0,0,5425,'2025-12-10',17359,'16:30:00','AECO','AECO0008','RMO CHARGES DAY (310)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'310',0,'IPB',99,'Y','','',0,''),(160594,0,0,5425,'2025-12-10',17360,'16:30:00','CARE','CARE0001','NURSING CHARGES (310)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'310',0,'IPB',99,'Y','','',0,''),(160595,0,0,5425,'2025-12-10',17361,'16:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (310)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'310',0,'IPB',99,'Y','','',0,''),(160596,0,0,5425,'2025-12-10',17362,'16:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (310)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'310',0,'IPB',99,'Y','','',0,''),(160597,0,0,5425,'2025-12-09',17377,'17:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160598,0,0,5425,'2025-12-11',17556,'13:20:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(160599,0,0,5425,'2025-12-10',17557,'13:20:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160600,0,0,5425,'2025-12-11',17558,'13:20:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160601,0,0,5425,'2025-12-08',17559,'13:20:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160602,0,0,5425,'2025-12-09',17560,'13:21:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160603,0,0,5425,'2025-12-11',17561,'13:21:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160604,0,0,5425,'2025-12-10',17562,'13:21:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160605,0,0,5425,'2025-12-09',17563,'13:22:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160606,0,0,5425,'2025-12-11',17564,'13:22:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160607,0,0,5425,'2025-12-09',17565,'13:22:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160608,0,0,5425,'2025-12-10',17566,'13:22:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160609,0,0,5425,'2025-12-11',17567,'13:23:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160865,0,0,4688,'2025-11-30',13858,'10:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(160866,0,0,4688,'2025-11-30',13859,'10:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(160867,0,0,4688,'2025-11-30',13860,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(160868,0,0,4688,'2025-11-30',13861,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(160869,0,0,4688,'2025-11-30',13862,'10:30:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(160870,0,0,4688,'2025-11-30',13863,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'209',0,'IPB',99,'Y','','',0,''),(160871,0,0,4688,'2025-11-30',13864,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'209',0,'IPB',99,'Y','','',0,''),(160872,0,0,4688,'2025-12-01',14115,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(160873,0,0,4688,'2025-12-01',14116,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(160874,0,0,4688,'2025-12-01',14117,'10:30:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(160875,0,0,4688,'2025-12-01',14118,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'209',0,'IPB',99,'Y','','',0,''),(160876,0,0,4688,'2025-12-01',14119,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'209',0,'IPB',99,'Y','','',0,''),(160877,0,0,4688,'2025-11-30',14125,'11:22:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,7.00,700.00,'P',0.00,0.00,700.00,0.00,0.00,700.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160878,0,0,4688,'2025-11-30',14126,'11:23:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160879,0,0,4688,'2025-11-30',14127,'11:23:00','WPRC','WPRC0093','SDP TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160880,0,0,4688,'2025-11-30',14128,'11:23:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160881,0,0,4688,'2025-12-02',14484,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'209',0,'IPB',99,'Y','','',0,''),(160882,0,0,4688,'2025-12-02',14485,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'209',0,'IPB',99,'Y','','',0,''),(160883,0,0,4688,'2025-12-01',14494,'11:23:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160884,0,0,4688,'2025-12-02',14542,'12:01:00','ROOM','ROOM0009','ROOM CHARGES','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160885,0,0,4688,'2025-12-02',14543,'12:01:00','CARE','CARE0006','RMO CHARGES - SEMI','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160886,0,0,4688,'2025-12-02',14544,'12:01:00','CARE','CARE0002','NURSING CHARGES - SEMI ','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160887,0,0,4688,'2025-12-03',15072,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (309)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160888,0,0,4688,'2025-12-03',15073,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (309)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160889,0,0,4688,'2025-12-03',15074,'10:30:00','CARE','CARE0001','NURSING CHARGES (309)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160890,0,0,4688,'2025-12-03',15075,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'309',0,'IPB',99,'Y','','',0,''),(160891,0,0,4688,'2025-12-03',15076,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'309',0,'IPB',99,'Y','','',0,''),(160892,0,0,4688,'2025-12-04',15247,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (309)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160893,0,0,4688,'2025-12-04',15248,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (309)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160894,0,0,4688,'2025-12-04',15249,'10:30:00','CARE','CARE0001','NURSING CHARGES (309)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160895,0,0,4688,'2025-12-04',15250,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'309',0,'IPB',99,'Y','','',0,''),(160896,0,0,4688,'2025-12-04',15251,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'309',0,'IPB',99,'Y','','',0,''),(160897,0,0,4688,'2025-12-01',15287,'13:17:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,9.00,900.00,'P',0.00,0.00,900.00,0.00,0.00,900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160898,0,0,4688,'2025-12-02',15288,'13:18:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160899,0,0,4688,'2025-12-04',15289,'13:18:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,13.00,1300.00,'P',0.00,0.00,1300.00,0.00,0.00,1300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160900,0,0,4688,'2025-12-03',15290,'13:18:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160901,0,0,4688,'2025-12-02',15291,'13:18:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160902,0,0,4688,'2025-12-03',15292,'13:33:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,248,0,'',0,'IPB',99,'Y','','',0,''),(160903,0,0,4688,'2025-12-05',15763,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (309)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160904,0,0,4688,'2025-12-05',15764,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (309)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160905,0,0,4688,'2025-12-05',15765,'10:30:00','CARE','CARE0001','NURSING CHARGES (309)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160906,0,0,4688,'2025-12-05',15766,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'309',0,'IPB',99,'Y','','',0,''),(160907,0,0,4688,'2025-12-05',15767,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'309',0,'IPB',99,'Y','','',0,''),(160908,0,0,4688,'2025-12-06',15978,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (309)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160909,0,0,4688,'2025-12-06',15979,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (309)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160910,0,0,4688,'2025-12-06',15980,'10:30:00','CARE','CARE0001','NURSING CHARGES (309)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160911,0,0,4688,'2025-12-06',15981,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'309',0,'IPB',99,'Y','','',0,''),(160912,0,0,4688,'2025-12-06',15982,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'309',0,'IPB',99,'Y','','',0,''),(160913,0,0,4688,'2025-12-05',16008,'16:52:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,12.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160914,0,0,4688,'2025-12-06',16009,'16:52:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,12.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160915,0,0,4688,'2025-12-04',16010,'16:52:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160916,0,0,4688,'2025-12-05',16011,'16:52:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160917,0,0,4688,'2025-12-04',16012,'16:53:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,248,0,'',0,'IPB',99,'Y','','',0,''),(160918,0,0,4688,'2025-12-07',16112,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (309)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160919,0,0,4688,'2025-12-07',16113,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (309)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160920,0,0,4688,'2025-12-07',16114,'10:30:00','CARE','CARE0001','NURSING CHARGES (309)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160921,0,0,4688,'2025-12-07',16115,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'309',0,'IPB',99,'Y','','',0,''),(160922,0,0,4688,'2025-12-07',16116,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'309',0,'IPB',99,'Y','','',0,''),(160923,0,0,4688,'2025-12-08',16278,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (309)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160924,0,0,4688,'2025-12-08',16279,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (309)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160925,0,0,4688,'2025-12-08',16280,'10:30:00','CARE','CARE0001','NURSING CHARGES (309)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160926,0,0,4688,'2025-12-08',16281,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'309',0,'IPB',99,'Y','','',0,''),(160927,0,0,4688,'2025-12-08',16282,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'309',0,'IPB',99,'Y','','',0,''),(160928,0,0,4688,'2025-12-07',16424,'12:26:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,12.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160929,0,0,4688,'2025-12-08',16425,'12:26:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,12.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160930,0,0,4688,'2025-12-06',16426,'12:27:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160931,0,0,4688,'2025-12-07',16427,'12:27:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160932,0,0,4688,'2025-12-08',16428,'12:27:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160933,0,0,4688,'2025-12-09',16859,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (309)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160934,0,0,4688,'2025-12-09',16860,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (309)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160935,0,0,4688,'2025-12-09',16861,'10:30:00','CARE','CARE0001','NURSING CHARGES (309)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160936,0,0,4688,'2025-12-09',16862,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'309',0,'IPB',99,'Y','','',0,''),(160937,0,0,4688,'2025-12-09',16863,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'309',0,'IPB',99,'Y','','',0,''),(160938,0,0,4688,'2025-12-10',17237,'10:30:00','ROOM','ROOM0009','ROOM CHARGES (309)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160939,0,0,4688,'2025-12-10',17238,'10:30:00','AECO','AECO0008','RMO CHARGES DAY (309)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160940,0,0,4688,'2025-12-10',17239,'10:30:00','CARE','CARE0001','NURSING CHARGES (309)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'309',0,'IPB',99,'Y','','',0,''),(160941,0,0,4688,'2025-12-10',17240,'10:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'309',0,'IPB',99,'Y','','',0,''),(160942,0,0,4688,'2025-12-10',17241,'10:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (309)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'309',0,'IPB',99,'Y','','',0,''),(160943,0,0,4688,'2025-12-09',17379,'17:18:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,12.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160944,0,0,4688,'2025-12-09',17380,'17:19:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160945,0,0,4688,'2025-12-08',17381,'17:21:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,248,0,'',0,'IPB',99,'Y','','',0,''),(160946,0,0,4688,'2025-12-10',17582,'13:51:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,9.00,900.00,'P',0.00,0.00,900.00,0.00,0.00,900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160947,0,0,4688,'2025-12-11',17583,'13:51:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160948,0,0,4688,'2025-12-10',17584,'13:51:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(160949,0,0,4688,'2025-12-11',17585,'13:53:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'',0,'IPB',99,'Y','','',0,''),(161007,0,0,5307,'2025-12-05',15709,'17:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(161008,0,0,5307,'2025-12-05',15710,'17:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'P',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(161009,0,0,5307,'2025-12-05',15711,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(161010,0,0,5307,'2025-12-05',15712,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(161011,0,0,5307,'2025-12-05',15713,'17:30:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(161012,0,0,5307,'2025-12-05',15715,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'212',0,'IPB',99,'Y','','',0,''),(161013,0,0,5307,'2025-12-06',15929,'13:17:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161014,0,0,5307,'2025-12-05',15971,'16:17:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'',0,'IPB',99,'Y','','',0,''),(161015,0,0,5307,'2025-12-06',15972,'16:18:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,6,0,'',0,'IPB',99,'Y','','',0,''),(161016,0,0,5307,'2025-12-05',15973,'16:18:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161017,0,0,5307,'2025-12-05',15974,'16:18:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161018,0,0,5307,'2025-12-05',15975,'16:18:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,5,0,'',0,'IPB',99,'Y','','',0,''),(161019,0,0,5307,'2025-12-06',15976,'16:19:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161020,0,0,5307,'2025-12-05',15977,'16:19:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161021,0,0,5307,'2025-12-06',16056,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(161022,0,0,5307,'2025-12-06',16057,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(161023,0,0,5307,'2025-12-06',16058,'17:30:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(161024,0,0,5307,'2025-12-06',16059,'17:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'212',0,'IPB',99,'Y','','',0,''),(161025,0,0,5307,'2025-12-06',16060,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'212',0,'IPB',99,'Y','','',0,''),(161026,0,0,5307,'2025-12-06',16097,'11:56:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161027,0,0,5307,'2025-12-07',16098,'11:56:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161028,0,0,5307,'2025-12-07',16099,'11:57:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161029,0,0,5307,'2025-12-06',16100,'11:57:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'',0,'IPB',99,'Y','','',0,''),(161030,0,0,5307,'2025-12-07',16101,'11:58:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'',0,'IPB',99,'Y','','',0,''),(161031,0,0,5307,'2025-12-07',16248,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(161032,0,0,5307,'2025-12-07',16249,'17:30:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(161033,0,0,5307,'2025-12-07',16250,'17:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'212',0,'IPB',99,'Y','','',0,''),(161034,0,0,5307,'2025-12-07',16251,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'212',0,'IPB',99,'Y','','',0,''),(161035,0,0,5307,'2025-12-07',16252,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(161036,0,0,5307,'2025-12-08',16253,'10:38:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161037,0,0,5307,'2025-12-07',16254,'10:39:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,78,0,'',0,'IPB',99,'Y','','',0,''),(161038,0,0,5307,'2025-12-08',16255,'10:41:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'',0,'IPB',99,'Y','','',0,''),(161039,0,0,5307,'2025-12-08',16730,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(161040,0,0,5307,'2025-12-08',16731,'17:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(161041,0,0,5307,'2025-12-08',16732,'17:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'402',0,'IPB',99,'Y','','',0,''),(161042,0,0,5307,'2025-12-08',16733,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'402',0,'IPB',99,'Y','','',0,''),(161043,0,0,5307,'2025-12-08',16734,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(161044,0,0,5307,'2025-12-09',17012,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(161045,0,0,5307,'2025-12-09',17013,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(161046,0,0,5307,'2025-12-09',17014,'17:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(161047,0,0,5307,'2025-12-09',17015,'17:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'402',0,'IPB',99,'Y','','',0,''),(161048,0,0,5307,'2025-12-09',17016,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'402',0,'IPB',99,'Y','','',0,''),(161049,0,0,5307,'2025-12-10',17333,'16:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161050,0,0,5307,'2025-12-09',17334,'16:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161051,0,0,5307,'2025-12-08',17335,'16:16:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161052,0,0,5307,'2025-12-08',17336,'16:18:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'',0,'IPB',99,'Y','','',0,''),(161053,0,0,5307,'2025-12-08',17337,'16:18:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'',0,'IPB',99,'Y','','',0,''),(161054,0,0,5307,'2025-12-09',17338,'16:19:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'',0,'IPB',99,'Y','','',0,''),(161055,0,0,5307,'2025-12-10',17571,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(161056,0,0,5307,'2025-12-10',17572,'17:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(161057,0,0,5307,'2025-12-10',17573,'17:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'402',0,'IPB',99,'Y','','',0,''),(161058,0,0,5307,'2025-12-10',17574,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'402',0,'IPB',99,'Y','','',0,''),(161059,0,0,5307,'2025-12-10',17575,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(161060,0,0,5307,'2025-12-11',17576,'13:37:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161061,0,0,5307,'2025-12-11',17577,'13:38:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'',0,'IPB',99,'Y','','',0,''),(161062,0,0,5307,'2025-12-10',17578,'13:39:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'',0,'IPB',99,'Y','','',0,''),(161063,0,0,5307,'2025-12-11',17579,'13:39:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'',0,'IPB',99,'Y','','',0,''),(161177,0,0,5791,'2025-12-10',17242,'13:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(161178,0,0,5791,'2025-12-10',17243,'13:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(161179,0,0,5791,'2025-12-10',17311,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161180,0,0,5791,'2025-12-10',17312,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161181,0,0,5791,'2025-12-10',17313,'13:00:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161182,0,0,5791,'2025-12-10',17314,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(161183,0,0,5791,'2025-12-10',17315,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(161184,0,0,5791,'2025-12-10',17597,'16:09:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161185,0,0,5791,'2025-12-10',17598,'16:09:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161186,0,0,5791,'2025-12-11',17599,'16:09:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161187,0,0,5791,'2025-12-11',17600,'16:10:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161188,0,0,5791,'2025-12-10',17601,'16:10:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161189,0,0,5791,'2025-12-11',17602,'16:10:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'',0,'IPB',99,'Y','','',0,''),(161388,0,0,4777,'2025-12-01',14223,'14:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(161389,0,0,4777,'2025-12-01',14224,'14:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(161390,0,0,4777,'2025-12-01',14225,'14:00:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161391,0,0,4777,'2025-12-01',14226,'14:00:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161392,0,0,4777,'2025-12-01',14227,'14:00:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161393,0,0,4777,'2025-12-01',14229,'14:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(161394,0,0,4777,'2025-12-02',14645,'14:00:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161395,0,0,4777,'2025-12-02',14646,'14:00:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161396,0,0,4777,'2025-12-02',14647,'14:00:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161397,0,0,4777,'2025-12-02',14648,'14:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(161398,0,0,4777,'2025-12-02',14649,'14:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(161399,0,0,4777,'2025-12-03',15092,'14:00:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161400,0,0,4777,'2025-12-03',15093,'14:00:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161401,0,0,4777,'2025-12-03',15094,'14:00:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161402,0,0,4777,'2025-12-03',15095,'14:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(161403,0,0,4777,'2025-12-03',15096,'14:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(161404,0,0,4777,'2025-12-04',15413,'14:00:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161405,0,0,4777,'2025-12-04',15414,'14:00:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161406,0,0,4777,'2025-12-04',15415,'14:00:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161407,0,0,4777,'2025-12-04',15416,'14:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(161408,0,0,4777,'2025-12-04',15417,'14:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(161409,0,0,4777,'2025-12-05',15778,'14:00:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161410,0,0,4777,'2025-12-05',15779,'14:00:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161411,0,0,4777,'2025-12-05',15780,'14:00:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161412,0,0,4777,'2025-12-05',15781,'14:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(161413,0,0,4777,'2025-12-05',15782,'14:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(161414,0,0,4777,'2025-12-06',15983,'14:00:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161415,0,0,4777,'2025-12-06',15984,'14:00:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161416,0,0,4777,'2025-12-06',15985,'14:00:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(161417,0,0,4777,'2025-12-06',15986,'14:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(161418,0,0,4777,'2025-12-06',15987,'14:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'210',0,'IPB',99,'Y','','',0,''),(161419,0,0,4777,'2025-12-07',16291,'14:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'406',0,'IPB',99,'Y','','',0,''),(161420,0,0,4777,'2025-12-07',16292,'14:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'406',0,'IPB',99,'Y','','',0,''),(161421,0,0,4777,'2025-12-08',16499,'14:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'406',0,'IPB',99,'Y','','',0,''),(161422,0,0,4777,'2025-12-08',16500,'14:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'406',0,'IPB',99,'Y','','',0,''),(161423,0,0,4777,'2025-12-01',16504,'14:08:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161424,0,0,4777,'2025-12-02',16505,'14:08:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,10.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161425,0,0,4777,'2025-12-03',16506,'15:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,9.00,900.00,'P',0.00,0.00,900.00,0.00,0.00,900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161426,0,0,4777,'2025-12-04',16507,'15:34:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,9.00,900.00,'P',0.00,0.00,900.00,0.00,0.00,900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161427,0,0,4777,'2025-12-05',16508,'15:35:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161428,0,0,4777,'2025-12-06',16509,'15:35:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161429,0,0,4777,'2025-12-07',16510,'15:35:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161430,0,0,4777,'2025-12-08',16511,'15:35:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161431,0,0,4777,'2025-12-01',16512,'15:36:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161432,0,0,4777,'2025-12-01',16513,'15:36:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161433,0,0,4777,'2025-12-01',16514,'15:36:00','WPRC','WPRC0088','ENDOTRACHEAL INTUBATION','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,5,0,'',0,'IPB',99,'Y','','',0,''),(161434,0,0,4777,'2025-12-02',16515,'15:36:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,5,0,'',0,'IPB',99,'Y','','',0,''),(161435,0,0,4777,'2025-12-01',16516,'15:37:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161436,0,0,4777,'2025-12-08',16517,'15:37:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161437,0,0,4777,'2025-12-04',16518,'15:40:00','WPRC','WPRC0092','CVP (CENTRAL LINE INSERTION) CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,39,0,'',0,'IPB',99,'Y','','',0,''),(161438,0,0,4777,'2025-12-01',16519,'15:41:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161439,0,0,4777,'2025-12-01',16520,'15:42:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161440,0,0,4777,'2025-12-02',16521,'15:42:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161441,0,0,4777,'2025-12-03',16522,'15:42:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161442,0,0,4777,'2025-12-04',16523,'15:42:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161443,0,0,4777,'2025-12-05',16524,'15:42:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161444,0,0,4777,'2025-12-01',16525,'15:43:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161445,0,0,4777,'2025-12-02',16526,'15:43:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161446,0,0,4777,'2025-12-03',16527,'15:43:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161447,0,0,4777,'2025-12-04',16528,'15:43:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161448,0,0,4777,'2025-12-05',16529,'15:43:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161449,0,0,4777,'2025-12-06',16530,'15:43:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161450,0,0,4777,'2025-12-05',16531,'15:44:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161451,0,0,4777,'2025-12-02',16532,'15:44:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161452,0,0,4777,'2025-12-03',16533,'15:44:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161453,0,0,4777,'2025-12-04',16534,'15:44:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161454,0,0,4777,'2025-12-05',16535,'15:45:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161455,0,0,4777,'2025-12-01',16536,'15:45:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161456,0,0,4777,'2025-12-02',16537,'15:45:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161457,0,0,4777,'2025-12-03',16538,'15:45:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161458,0,0,4777,'2025-12-04',16539,'15:46:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161459,0,0,4777,'2025-12-05',16540,'15:46:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161460,0,0,4777,'2025-12-06',16541,'15:46:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161461,0,0,4777,'2025-12-07',16542,'15:46:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161462,0,0,4777,'2025-12-08',16543,'15:46:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161463,0,0,4777,'2025-12-03',16544,'15:48:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,41,0,'',0,'IPB',99,'Y','','',0,''),(161464,0,0,4777,'2025-12-03',16545,'15:48:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,8,0,'',0,'IPB',99,'Y','','',0,''),(161465,0,0,4777,'2025-12-09',17005,'14:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'406',0,'IPB',99,'Y','','',0,''),(161466,0,0,4777,'2025-12-09',17006,'14:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'406',0,'IPB',99,'Y','','',0,''),(161467,0,0,4777,'2025-12-10',17279,'14:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'406',0,'IPB',99,'Y','','',0,''),(161468,0,0,4777,'2025-12-10',17280,'14:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'406',0,'IPB',99,'Y','','',0,''),(161469,0,0,4777,'2025-12-09',17590,'15:59:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161470,0,0,4777,'2025-12-10',17591,'15:59:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161471,0,0,4777,'2025-12-11',17592,'15:59:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161472,0,0,4777,'2025-12-09',17593,'16:00:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161473,0,0,4777,'2025-12-10',17594,'16:00:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161474,0,0,4777,'2025-12-11',17595,'16:02:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'',0,'IPB',99,'Y','','',0,''),(161475,0,0,4777,'2025-12-07',17633,'18:11:00','ROOM','ROOM0009','ROOM CHARGES','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161476,0,0,4777,'2025-12-08',17634,'18:11:00','ROOM','ROOM0009','ROOM CHARGES','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161477,0,0,4777,'2025-12-09',17635,'18:11:00','ROOM','ROOM0009','ROOM CHARGES','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161478,0,0,4777,'2025-12-10',17636,'18:11:00','ROOM','ROOM0009','ROOM CHARGES','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161479,0,0,4777,'2025-12-11',17637,'18:11:00','ROOM','ROOM0009','ROOM CHARGES','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161480,0,0,4777,'2025-12-07',17638,'18:12:00','AECO','AECO0008','RMO CHARGES DAY','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161481,0,0,4777,'2025-12-08',17639,'18:12:00','AECO','AECO0008','RMO CHARGES DAY','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161482,0,0,4777,'2025-12-09',17640,'18:12:00','AECO','AECO0008','RMO CHARGES DAY','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161483,0,0,4777,'2025-12-10',17641,'18:12:00','AECO','AECO0008','RMO CHARGES DAY','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161484,0,0,4777,'2025-12-11',17642,'18:13:00','AECO','AECO0008','RMO CHARGES DAY','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161485,0,0,4777,'2025-12-07',17643,'18:13:00','CARE','CARE0002','NURSING CHARGES - SEMI ','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161486,0,0,4777,'2025-12-08',17644,'18:13:00','CARE','CARE0002','NURSING CHARGES - SEMI ','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161487,0,0,4777,'2025-12-09',17645,'18:13:00','CARE','CARE0002','NURSING CHARGES - SEMI ','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161488,0,0,4777,'2025-12-10',17646,'18:13:00','CARE','CARE0002','NURSING CHARGES - SEMI ','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(161489,0,0,4777,'2025-12-11',17647,'18:13:00','CARE','CARE0002','NURSING CHARGES - SEMI ','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165886,0,0,5663,'2025-12-09',16901,'16:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(165887,0,0,5663,'2025-12-09',16902,'16:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(165888,0,0,5663,'2025-12-09',16903,'16:00:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(165889,0,0,5663,'2025-12-09',16904,'16:00:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(165890,0,0,5663,'2025-12-09',16905,'16:00:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(165891,0,0,5663,'2025-12-09',16907,'16:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(165892,0,0,5663,'2025-12-09',17192,'12:24:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165893,0,0,5663,'2025-12-09',17193,'12:24:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165894,0,0,5663,'2025-12-09',17194,'12:24:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165895,0,0,5663,'2025-12-09',17195,'12:26:00','WPRC','WPRC0092','CVP (CENTRAL LINE INSERTION) CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(165896,0,0,5663,'2025-12-10',17196,'12:26:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165897,0,0,5663,'2025-12-09',17197,'12:26:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165898,0,0,5663,'2025-12-10',17198,'12:27:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165899,0,0,5663,'2025-12-09',17199,'12:27:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165900,0,0,5663,'2025-12-09',17200,'12:28:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165901,0,0,5663,'2025-12-10',17201,'12:28:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165902,0,0,5663,'2025-12-10',17202,'12:28:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165903,0,0,5663,'2025-12-10',17203,'12:28:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165904,0,0,5663,'2025-12-09',17204,'12:28:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165905,0,0,5663,'2025-12-10',17363,'16:00:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(165906,0,0,5663,'2025-12-10',17364,'16:00:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(165907,0,0,5663,'2025-12-10',17365,'16:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(165908,0,0,5663,'2025-12-10',17366,'16:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(165909,0,0,5663,'2025-12-10',17367,'16:00:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(165910,0,0,5663,'2025-12-11',17690,'16:00:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(165911,0,0,5663,'2025-12-11',17691,'16:00:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(165912,0,0,5663,'2025-12-11',17692,'16:00:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(165913,0,0,5663,'2025-12-11',17693,'16:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(165914,0,0,5663,'2025-12-11',17694,'16:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(165915,0,0,5663,'2025-12-11',17768,'20:48:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165916,0,0,5663,'2025-12-11',17769,'20:49:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165917,0,0,5663,'2025-12-11',17770,'20:49:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165918,0,0,5663,'2025-12-11',17771,'20:51:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165919,0,0,5663,'2025-12-11',17772,'20:51:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165920,0,0,5663,'2025-12-11',17773,'20:52:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165921,0,0,5663,'2025-12-10',17774,'20:52:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,212,0,'',0,'IPB',99,'Y','','',0,''),(165922,0,0,5663,'2025-12-12',17873,'12:11:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165923,0,0,5663,'2025-12-12',17874,'12:11:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165924,0,0,5663,'2025-12-12',17875,'12:12:00','WPRC','WPRC0088','ENDOTRACHEAL INTUBATION','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,4,0,'',0,'IPB',99,'Y','','',0,''),(165925,0,0,5663,'2025-12-12',17876,'12:12:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165926,0,0,5663,'2025-12-12',17877,'12:14:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,4.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165927,0,0,5663,'2025-12-10',17920,'14:51:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165928,0,0,5663,'2025-12-11',17921,'14:51:00','WPRC','WPRC0101','BI PAP VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(165929,0,0,5663,'2025-12-12',17922,'14:53:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(166383,0,0,4855,'2025-12-02',14416,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(166384,0,0,4855,'2025-12-02',14417,'09:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(166385,0,0,4855,'2025-12-02',14418,'09:30:00','ROOM','ROOM0009','ROOM CHARGES (406)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(166386,0,0,4855,'2025-12-02',14419,'09:30:00','AECO','AECO0008','RMO CHARGES DAY (406)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(166387,0,0,4855,'2025-12-02',14420,'09:30:00','CARE','CARE0001','NURSING CHARGES (406)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'406',0,'IPB',99,'Y','','',0,''),(166388,0,0,4855,'2025-12-02',14421,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'406',0,'IPB',99,'Y','','',0,''),(166389,0,0,4855,'2025-12-02',14422,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'406',0,'IPB',99,'Y','','',0,''),(166390,0,0,4855,'2025-12-03',14810,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (406)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'406',0,'IPB',99,'Y','','',0,''),(166391,0,0,4855,'2025-12-02',14812,'10:18:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166799,0,0,5163,'2025-12-04',15321,'15:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(166800,0,0,5163,'2025-12-04',15322,'15:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(166801,0,0,5163,'2025-12-04',15354,'16:08:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166802,0,0,5163,'2025-12-04',15604,'16:57:00','ROOM','ROOM0009','ROOM CHARGES','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166803,0,0,5163,'2025-12-04',15606,'16:58:00','AECO','AECO0008','RMO CHARGES DAY','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166804,0,0,5163,'2025-12-05',15607,'16:58:00','AECO','AECO0008','RMO CHARGES DAY','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166805,0,0,5163,'2025-12-04',15608,'16:58:00','CARE','CARE0001','NURSING CHARGES','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166806,0,0,5163,'2025-12-04',15611,'16:59:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(166807,0,0,5163,'2025-12-05',15612,'16:59:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(166808,0,0,5163,'2025-12-05',15613,'16:59:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(166809,0,0,5163,'2025-12-04',15614,'16:59:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166810,0,0,5163,'2025-12-04',15615,'17:00:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166811,0,0,5163,'2025-12-05',15616,'17:00:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166812,0,0,5163,'2025-12-04',15617,'17:00:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166813,0,0,5163,'2025-12-05',15618,'17:00:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166814,0,0,5163,'2025-12-04',15619,'17:00:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166815,0,0,5163,'2025-12-05',15620,'17:00:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166816,0,0,5163,'2025-12-05',15722,'18:32:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166817,0,0,5163,'2025-12-05',15723,'18:32:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166818,0,0,5163,'2025-12-06',15993,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(166819,0,0,5163,'2025-12-06',15994,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(166820,0,0,5163,'2025-12-06',15995,'15:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(166821,0,0,5163,'2025-12-06',15996,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(166822,0,0,5163,'2025-12-06',15997,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(166823,0,0,5163,'2025-12-06',16017,'16:58:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166824,0,0,5163,'2025-12-06',16018,'16:58:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166825,0,0,5163,'2025-12-06',16019,'16:59:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166826,0,0,5163,'2025-12-07',16303,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(166827,0,0,5163,'2025-12-07',16304,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(166828,0,0,5163,'2025-12-07',16305,'15:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(166829,0,0,5163,'2025-12-07',16306,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(166830,0,0,5163,'2025-12-07',16307,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(166831,0,0,5163,'2025-12-07',16482,'13:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166832,0,0,5163,'2025-12-08',16483,'13:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166833,0,0,5163,'2025-12-06',16484,'13:33:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166834,0,0,5163,'2025-12-07',16485,'13:34:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166835,0,0,5163,'2025-12-07',16486,'13:35:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166836,0,0,5163,'2025-12-08',16487,'13:35:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166837,0,0,5163,'2025-12-07',16488,'13:35:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166838,0,0,5163,'2025-12-08',16489,'13:35:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166839,0,0,5163,'2025-12-08',16725,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(166840,0,0,5163,'2025-12-08',16726,'15:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(166841,0,0,5163,'2025-12-08',16727,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(166842,0,0,5163,'2025-12-08',16728,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(166843,0,0,5163,'2025-12-08',16729,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(166844,0,0,5163,'2025-12-09',17007,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(166845,0,0,5163,'2025-12-09',17008,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(166846,0,0,5163,'2025-12-09',17009,'15:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(166847,0,0,5163,'2025-12-09',17010,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(166848,0,0,5163,'2025-12-09',17011,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(166849,0,0,5163,'2025-12-10',17281,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(166850,0,0,5163,'2025-12-10',17282,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(166851,0,0,5163,'2025-12-10',17283,'15:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(166852,0,0,5163,'2025-12-10',17284,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(166853,0,0,5163,'2025-12-10',17285,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(166854,0,0,5163,'2025-12-09',17347,'16:28:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166855,0,0,5163,'2025-12-10',17348,'16:29:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166856,0,0,5163,'2025-12-09',17349,'16:29:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166857,0,0,5163,'2025-12-09',17350,'16:29:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(166858,0,0,5163,'2025-12-08',17351,'16:30:00','USG','USG0095','USG CHEST','H',1200,1.00,1200.00,'A',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166859,0,0,5163,'2025-12-09',17352,'16:32:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166860,0,0,5163,'2025-12-10',17353,'16:32:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166861,0,0,5163,'2025-12-10',17354,'16:32:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166862,0,0,5163,'2025-12-09',17355,'16:32:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166863,0,0,5163,'2025-12-09',17356,'16:33:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166864,0,0,5163,'2025-12-11',17665,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(166865,0,0,5163,'2025-12-11',17666,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(166866,0,0,5163,'2025-12-11',17667,'15:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(166867,0,0,5163,'2025-12-11',17668,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(166868,0,0,5163,'2025-12-11',17669,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(166869,0,0,5163,'2025-12-11',17808,'10:47:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166870,0,0,5163,'2025-12-12',17809,'10:47:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166871,0,0,5163,'2025-12-11',17810,'10:47:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166872,0,0,5163,'2025-12-12',17811,'10:48:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166873,0,0,5163,'2025-12-10',17971,'18:22:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166874,0,0,5163,'2025-12-11',17972,'18:22:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166875,0,0,5163,'2025-12-12',17973,'18:22:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(166876,0,0,5163,'2025-12-12',17974,'18:29:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(166877,0,0,5163,'2025-12-12',17975,'18:29:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(166878,0,0,5163,'2025-12-04',18022,'19:31:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(167280,0,0,5678,'2025-12-09',16964,'17:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(167281,0,0,5678,'2025-12-09',16965,'17:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(167282,0,0,5678,'2025-12-09',16966,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(167283,0,0,5678,'2025-12-09',16967,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(167284,0,0,5678,'2025-12-09',16968,'17:30:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(167285,0,0,5678,'2025-12-09',16970,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,7,0,'403',0,'IPB',99,'Y','','',0,''),(167286,0,0,5678,'2025-12-09',17327,'16:11:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,52,0,'',0,'IPB',99,'Y','','',0,''),(167287,0,0,5678,'2025-12-10',17695,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(167288,0,0,5678,'2025-12-11',17696,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(167289,0,0,5678,'2025-12-10',17697,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(167290,0,0,5678,'2025-12-11',17698,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(167291,0,0,5678,'2025-12-10',17699,'17:30:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(167292,0,0,5678,'2025-12-11',17700,'17:30:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(167293,0,0,5678,'2025-12-10',17701,'17:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,7,0,'403',0,'IPB',99,'Y','','',0,''),(167294,0,0,5678,'2025-12-11',17702,'17:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,7,0,'403',0,'IPB',99,'Y','','',0,''),(167295,0,0,5678,'2025-12-10',17703,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,7,0,'403',0,'IPB',99,'Y','','',0,''),(167296,0,0,5678,'2025-12-11',17704,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,7,0,'403',0,'IPB',99,'Y','','',0,''),(167297,0,0,5678,'2025-12-11',17802,'10:41:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(167298,0,0,5678,'2025-12-12',18038,'17:30:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(167299,0,0,5678,'2025-12-12',18039,'17:30:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(167300,0,0,5678,'2025-12-12',18040,'17:30:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(167301,0,0,5678,'2025-12-12',18042,'17:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,7,0,'403',0,'IPB',99,'Y','','',0,''),(167302,0,0,5678,'2025-12-12',18043,'22:10:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,7,0,'',0,'IPB',99,'Y','','',0,''),(168335,0,0,5527,'2025-12-08',16454,'13:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(168336,0,0,5527,'2025-12-08',16455,'13:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(168337,0,0,5527,'2025-12-08',16456,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(168338,0,0,5527,'2025-12-08',16457,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(168339,0,0,5527,'2025-12-08',16458,'13:00:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'212',0,'IPB',99,'Y','','',0,''),(168340,0,0,5527,'2025-12-08',16460,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(168341,0,0,5527,'2025-12-09',16867,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(168342,0,0,5527,'2025-12-09',16868,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'212',0,'IPB',99,'Y','','',0,''),(168343,0,0,5527,'2025-12-08',16889,'13:56:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(168344,0,0,5527,'2025-12-09',16890,'13:56:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(168345,0,0,5527,'2025-12-09',16891,'13:57:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(168346,0,0,5527,'2025-12-09',16892,'13:58:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'',0,'IPB',99,'Y','','',0,''),(168347,0,0,5527,'2025-12-09',16893,'13:59:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(168348,0,0,5527,'2025-12-09',16894,'13:59:00','AECO','AECO0008','RMO CHARGES DAY','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(168349,0,0,5527,'2025-12-09',16895,'13:59:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(168350,0,0,5527,'2025-12-10',17301,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(168351,0,0,5527,'2025-12-10',17302,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(168352,0,0,5527,'2025-12-10',17303,'13:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(168353,0,0,5527,'2025-12-10',17304,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(168354,0,0,5527,'2025-12-10',17305,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(168355,0,0,5527,'2025-12-10',17331,'16:13:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(168356,0,0,5527,'2025-12-10',17332,'16:13:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'',0,'IPB',99,'Y','','',0,''),(168357,0,0,5527,'2025-12-11',17675,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(168358,0,0,5527,'2025-12-11',17676,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(168359,0,0,5527,'2025-12-11',17677,'13:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(168360,0,0,5527,'2025-12-11',17678,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(168361,0,0,5527,'2025-12-11',17679,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(168362,0,0,5527,'2025-12-11',17791,'10:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(168363,0,0,5527,'2025-12-12',17792,'10:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(168364,0,0,5527,'2025-12-12',18160,'13:00:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(168365,0,0,5527,'2025-12-12',18161,'13:00:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(168366,0,0,5527,'2025-12-12',18162,'13:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(168367,0,0,5527,'2025-12-12',18163,'13:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(168368,0,0,5527,'2025-12-12',18164,'13:00:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(168369,0,0,5527,'2025-12-13',18166,'12:45:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(168370,0,0,5527,'2025-12-12',18167,'12:46:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(169242,0,0,6131,'2025-12-13',18147,'01:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(169243,0,0,6131,'2025-12-13',18148,'01:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(169244,0,0,6131,'2025-12-13',18149,'01:00:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(169245,0,0,6131,'2025-12-13',18150,'01:00:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(169246,0,0,6131,'2025-12-13',18151,'01:00:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(169247,0,0,6131,'2025-12-13',18152,'01:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'410',0,'IPB',99,'Y','','',0,''),(169248,0,0,6131,'2025-12-13',18190,'14:39:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(169249,0,0,6131,'2025-12-13',18191,'14:40:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(169389,0,0,6056,'2025-12-12',18008,'19:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(169390,0,0,6056,'2025-12-12',18009,'19:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(169391,0,0,6056,'2025-12-12',18010,'19:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(169392,0,0,6056,'2025-12-12',18011,'19:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(169393,0,0,6056,'2025-12-12',18012,'19:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(169394,0,0,6056,'2025-12-13',18014,'19:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(169395,0,0,6056,'2025-12-13',18208,'18:14:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(169396,0,0,6056,'2025-12-12',18209,'19:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(169397,0,0,6056,'2025-12-13',18211,'18:31:00','USG','USG0092','USG ABDOMEN CHARGE','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(169926,0,0,5583,'2025-12-08',16610,'18:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(169927,0,0,5583,'2025-12-08',16611,'18:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(169928,0,0,5583,'2025-12-08',16612,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(169929,0,0,5583,'2025-12-08',16613,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(169930,0,0,5583,'2025-12-08',16614,'18:00:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(169931,0,0,5583,'2025-12-08',16616,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'412',0,'IPB',99,'Y','','',0,''),(169932,0,0,5583,'2025-12-09',17027,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(169933,0,0,5583,'2025-12-09',17028,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(169934,0,0,5583,'2025-12-09',17029,'18:00:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(169935,0,0,5583,'2025-12-09',17030,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'412',0,'IPB',99,'Y','','',0,''),(169936,0,0,5583,'2025-12-09',17031,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'412',0,'IPB',99,'Y','','',0,''),(169937,0,0,5583,'2025-12-08',17339,'16:22:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(169938,0,0,5583,'2025-12-10',17680,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(169939,0,0,5583,'2025-12-11',17681,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(169940,0,0,5583,'2025-12-10',17682,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(169941,0,0,5583,'2025-12-11',17683,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(169942,0,0,5583,'2025-12-10',17684,'18:00:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(169943,0,0,5583,'2025-12-11',17685,'18:00:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(169944,0,0,5583,'2025-12-10',17686,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'412',0,'IPB',99,'Y','','',0,''),(169945,0,0,5583,'2025-12-11',17687,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'412',0,'IPB',99,'Y','','',0,''),(169946,0,0,5583,'2025-12-10',17688,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'412',0,'IPB',99,'Y','','',0,''),(169947,0,0,5583,'2025-12-11',17689,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'412',0,'IPB',99,'Y','','',0,''),(169948,0,0,5583,'2025-12-12',18263,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(169949,0,0,5583,'2025-12-13',18264,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(169950,0,0,5583,'2025-12-12',18265,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(169951,0,0,5583,'2025-12-13',18266,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(169952,0,0,5583,'2025-12-12',18267,'18:00:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(169953,0,0,5583,'2025-12-13',18268,'18:00:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(169954,0,0,5583,'2025-12-12',18269,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'412',0,'IPB',99,'Y','','',0,''),(169955,0,0,5583,'2025-12-13',18270,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'412',0,'IPB',99,'Y','','',0,''),(169956,0,0,5583,'2025-12-12',18271,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'412',0,'IPB',99,'Y','','',0,''),(169957,0,0,5583,'2025-12-13',18272,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'412',0,'IPB',99,'Y','','',0,''),(169958,0,0,5583,'2025-12-14',18273,'11:14:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'',0,'IPB',99,'Y','','',0,''),(169959,0,0,6070,'2025-12-13',18049,'09:53:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(169960,0,0,6070,'2025-12-13',18050,'09:53:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(169961,0,0,6070,'2025-12-13',18051,'09:53:00','ROOM','ROOM0009','ROOM CHARGES (306)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'306',0,'IPB',99,'Y','','',0,''),(169962,0,0,6070,'2025-12-13',18052,'09:53:00','AECO','AECO0008','RMO CHARGES DAY (306)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'306',0,'IPB',99,'Y','','',0,''),(169963,0,0,6070,'2025-12-13',18053,'09:53:00','CARE','CARE0001','NURSING CHARGES (306)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'306',0,'IPB',99,'Y','','',0,''),(169964,0,0,6070,'2025-12-13',18054,'09:53:00','DRC','DRC0018','CONSULTANT VISIT 1  (306)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'306',0,'IPB',99,'Y','','',0,''),(169965,0,0,6070,'2025-12-13',18055,'09:53:00','DRC','DRC0019','CONSULTANT VISIT 2 (306)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'306',0,'IPB',99,'Y','','',0,''),(169966,0,0,6070,'2025-12-14',18309,'09:53:00','DRC','DRC0018','CONSULTANT VISIT 1  (302)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'302',0,'IPB',99,'Y','','',0,''),(169967,0,0,6070,'2025-12-13',18311,'12:38:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(169968,0,0,6070,'2025-12-13',18312,'12:38:00','USG','USG0092','USG ABDOMEN CHARGE','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(169969,0,0,6070,'2025-12-13',18313,'12:39:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(169970,0,0,6070,'2025-12-13',18314,'12:39:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(169971,0,0,6070,'2025-12-14',18315,'12:39:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(169972,0,0,6070,'2025-12-13',18316,'12:40:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(169973,0,0,6070,'2025-12-13',18317,'12:40:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(170001,0,0,6047,'2025-12-12',17994,'18:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(170002,0,0,6047,'2025-12-12',17995,'18:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(170003,0,0,6047,'2025-12-12',17996,'18:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(170004,0,0,6047,'2025-12-12',17997,'18:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(170005,0,0,6047,'2025-12-12',17998,'18:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(170006,0,0,6047,'2025-12-13',18291,'18:30:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(170007,0,0,6047,'2025-12-13',18292,'18:30:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(170008,0,0,6047,'2025-12-13',18293,'18:30:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(170009,0,0,6047,'2025-12-13',18294,'18:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'407',0,'IPB',99,'Y','','',0,''),(170010,0,0,6047,'2025-12-13',18295,'18:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'407',0,'IPB',99,'Y','','',0,''),(170011,0,0,6047,'2025-12-14',18296,'12:15:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'',0,'IPB',99,'Y','','',0,''),(170012,0,0,6047,'2025-12-12',18297,'12:15:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(170013,0,0,6047,'2025-12-13',18298,'12:15:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(170014,0,0,6047,'2025-12-13',18299,'12:16:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(170015,0,0,6047,'2025-12-14',18300,'12:16:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(170016,0,0,6047,'2025-12-12',18301,'12:24:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(170017,0,0,6047,'2025-12-12',18302,'12:24:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(170018,0,0,6047,'2025-12-13',18303,'12:25:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'',0,'IPB',99,'Y','','',0,''),(170019,0,0,6047,'2025-12-13',18304,'12:25:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(170020,0,0,6047,'2025-12-14',18305,'12:25:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(170305,0,0,6082,'2025-12-13',18064,'10:19:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,0,0,'',0,'ER',1,'Y','N','',0,''),(170306,0,0,6082,'2025-12-13',18065,'10:19:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,0,0,'',0,'ER',99,'Y','N','',0,''),(170307,0,0,6082,'2025-12-13',18066,'10:19:00','ROOM','ROOM0009','ROOM CHARGES (306)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,0,0,'306',0,'IPB',99,'Y','N','',0,''),(170308,0,0,6082,'2025-12-13',18067,'10:19:00','AECO','AECO0008','RMO CHARGES DAY (306)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,0,0,'306',0,'IPB',99,'Y','N','',0,''),(170309,0,0,6082,'2025-12-13',18068,'10:19:00','CARE','CARE0001','NURSING CHARGES (306)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'306',0,'IPB',99,'Y','N','',0,''),(170310,0,0,6082,'2025-12-13',18069,'10:19:00','DRC','DRC0018','CONSULTANT VISIT 1  (306)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'306',0,'IPB',99,'Y','N','',0,''),(170311,0,0,6082,'2025-12-13',18070,'10:19:00','DRC','DRC0019','CONSULTANT VISIT 2 (306)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'306',0,'IPB',99,'Y','N','',0,''),(170335,0,0,6161,'2025-12-14',18256,'01:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(170336,0,0,6161,'2025-12-14',18257,'01:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(170337,0,0,6161,'2025-12-14',18258,'01:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(170338,0,0,6161,'2025-12-14',18259,'01:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(170339,0,0,6161,'2025-12-14',18260,'01:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(170340,0,0,6161,'2025-12-14',18261,'01:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'405',0,'IPB',99,'Y','','',0,''),(170341,0,0,6161,'2025-12-14',18360,'16:40:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(170342,0,0,6161,'2025-12-14',18361,'16:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(170404,0,0,6084,'2025-12-13',18072,'10:27:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(170405,0,0,6084,'2025-12-13',18073,'10:27:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(170406,0,0,6084,'2025-12-13',18074,'10:27:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(170407,0,0,6084,'2025-12-13',18075,'10:27:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(170408,0,0,6084,'2025-12-13',18076,'10:27:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(170409,0,0,6084,'2025-12-13',18077,'10:27:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'402',0,'IPB',99,'Y','','',0,''),(170410,0,0,6084,'2025-12-13',18078,'10:27:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'402',0,'IPB',99,'Y','','',0,''),(170411,0,0,6084,'2025-12-14',18282,'10:27:00','ROOM','ROOM0009','ROOM CHARGES (308)','H',2900,0.50,1450.00,'A',0.00,0.00,1450.00,0.00,0.00,1450.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(170412,0,0,6084,'2025-12-14',18283,'10:27:00','AECO','AECO0008','RMO CHARGES DAY (308)','H',300,0.50,150.00,'A',0.00,0.00,150.00,0.00,0.00,150.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(170413,0,0,6084,'2025-12-14',18284,'10:27:00','CARE','CARE0001','NURSING CHARGES (308)','H',200,0.50,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'308',0,'IPB',99,'Y','','',0,''),(170414,0,0,6084,'2025-12-14',18285,'10:27:00','DRC','DRC0018','CONSULTANT VISIT 1  (308)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'308',0,'IPB',99,'Y','','',0,''),(170415,0,0,6084,'2025-12-13',18287,'11:50:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(170416,0,0,6084,'2025-12-13',18288,'11:50:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(170417,0,0,6084,'2025-12-14',18289,'11:51:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(170418,0,0,6084,'2025-12-14',18290,'11:51:00','WPRC','WPRC0078','ECG','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(172116,0,0,4694,'2025-11-30',13940,'12:47:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'',99,'','','',0,''),(172117,0,0,4694,'2025-11-30',13941,'17:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',1,'','','',0,''),(172118,0,0,4694,'2025-11-30',13942,'17:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',99,'','','',0,''),(172119,0,0,4694,'2025-11-30',13943,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'',99,'','','',0,''),(172120,0,0,4694,'2025-11-30',13944,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'',99,'','','',0,''),(172121,0,0,4694,'2025-11-30',13946,'17:00:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'',99,'','','',0,''),(172122,0,0,4694,'2025-11-30',14304,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'',99,'','','',0,''),(172123,0,0,4694,'2025-12-01',14305,'12:47:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'',99,'','','',0,''),(172124,0,0,4694,'2025-12-01',14306,'12:47:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'',99,'','','',0,''),(172125,0,0,4694,'2025-12-01',0,'13:07:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'',99,'','','',0,''),(172126,0,0,4694,'2025-12-01',14308,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'',99,'','','',0,''),(172127,0,0,4694,'2025-12-01',14584,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'',99,'','','',0,''),(172128,0,0,4694,'2025-12-01',14585,'17:00:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'',99,'','','',0,''),(172129,0,0,4694,'2025-12-01',14586,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'',99,'','','',0,''),(172130,0,0,4694,'2025-12-02',14587,'12:02:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'',99,'','','',0,''),(172131,0,0,4694,'2025-12-02',14588,'12:47:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'',99,'','','',0,''),(172132,0,0,4694,'2025-12-02',0,'12:48:00','XRY','XRY0045','X RAY CHARGES','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'',99,'','','',0,''),(172133,0,0,4694,'2025-12-02',0,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'',99,'','','',0,''),(172134,0,0,4694,'2025-12-02',14736,'19:02:00','SURG','SURG0016','SURGERY CHARGE','H',45000,1.00,45000.00,'P',0.00,0.00,45000.00,0.00,0.00,45000.00,3,0,'',0,'',99,'','','',0,''),(172135,0,0,4694,'2025-12-02',14746,'19:02:00','SURG','SURG0015','OT USAGE CHARGE','H',11250,1.00,11250.00,'P',0.00,0.00,11250.00,0.00,0.00,11250.00,3,0,'',0,'',99,'','','',0,''),(172136,0,0,4694,'2025-12-02',14747,'19:14:00','ROOM','ROOM0009','ROOM CHARGES','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'',99,'','','',0,''),(172137,0,0,4694,'2025-12-02',14739,'19:14:00','AECO','AECO0008','RMO CHARGES DAY','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'',99,'','','',0,''),(172138,0,0,4694,'2025-12-02',14740,'19:14:00','CARE','CARE0001','NURSING CHARGES','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'',99,'','','',0,''),(172139,0,0,4694,'2025-12-02',15082,'19:14:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'',99,'','','',0,''),(172140,0,0,4694,'2025-12-03',15083,'12:02:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'',99,'','','',0,''),(172141,0,0,4694,'2025-12-03',15084,'12:03:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'',99,'','','',0,''),(172142,0,0,4694,'2025-12-03',15085,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'',99,'','','',0,''),(172143,0,0,4694,'2025-12-03',15086,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'',99,'','','',0,''),(172144,0,0,4694,'2025-12-03',15242,'17:00:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'',99,'','','',0,''),(172145,0,0,4694,'2025-12-03',15243,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'',99,'','','',0,''),(172146,0,0,4694,'2025-12-03',15244,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'',99,'','','',0,''),(172147,0,0,4694,'2025-12-04',15245,'12:03:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'',99,'','','',0,''),(172148,0,0,4694,'2025-12-04',15408,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'',99,'','','',0,''),(172149,0,0,4694,'2025-12-04',15412,'17:00:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'',99,'','','',0,''),(172150,0,0,4694,'2025-12-04',15411,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'',99,'','','',0,''),(172151,0,0,4694,'2025-12-04',15410,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'',99,'','','',0,''),(172152,0,0,4694,'2025-12-04',15409,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'',99,'','','',0,''),(172153,0,0,4694,'2025-12-04',15768,'20:19:00','WPRC','WPRC0092','CVP (CENTRAL LINE INSERTION) CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,39,0,'',0,'',99,'','','',0,''),(172154,0,0,4694,'2025-12-04',15769,'20:19:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'',99,'','','',0,''),(172155,0,0,4694,'2025-12-05',15770,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'',99,'','','',0,''),(172156,0,0,4694,'2025-12-05',15771,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'',99,'','','',0,''),(172157,0,0,4694,'2025-12-05',15772,'17:00:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'',99,'','','',0,''),(172158,0,0,4694,'2025-12-05',15800,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'',99,'','','',0,''),(172159,0,0,4694,'2025-12-05',15801,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'',99,'','','',0,''),(172160,0,0,4694,'2025-12-05',15802,'20:19:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'',99,'','','',0,''),(172161,0,0,4694,'2025-12-05',15803,'20:20:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'',99,'','','',0,''),(172162,0,0,4694,'2025-12-06',16013,'13:17:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'',99,'','','',0,''),(172163,0,0,4694,'2025-12-06',16021,'16:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'',99,'','','',0,''),(172164,0,0,4694,'2025-12-06',16022,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'',99,'','','',0,''),(172165,0,0,4694,'2025-12-06',16023,'17:00:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'',99,'','','',0,''),(172166,0,0,4694,'2025-12-06',16024,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'',99,'','','',0,''),(172167,0,0,4694,'2025-12-06',16025,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'407',0,'',99,'','','',0,''),(172168,0,0,4694,'2025-12-06',16283,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'',99,'','','',0,''),(172169,0,0,4694,'2025-12-07',16284,'13:15:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'',99,'','','',0,''),(172170,0,0,4694,'2025-12-07',16285,'13:16:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'',99,'','','',0,''),(172171,0,0,4694,'2025-12-07',16286,'13:17:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'',99,'','','',0,''),(172172,0,0,4694,'2025-12-07',16287,'13:18:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'',99,'','','',0,''),(172173,0,0,4694,'2025-12-07',0,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'',99,'','','',0,''),(172174,0,0,4694,'2025-12-07',16467,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'',99,'','','',0,''),(172175,0,0,4694,'2025-12-07',0,'17:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'',99,'','','',0,''),(172176,0,0,4694,'2025-12-07',16469,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'',99,'','','',0,''),(172177,0,0,4694,'2025-12-07',16470,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'',99,'','','',0,''),(172178,0,0,4694,'2025-12-08',16471,'13:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'',99,'','','',0,''),(172179,0,0,4694,'2025-12-08',16468,'13:47:00','SURG','SURG0015','OT USAGE CHARGE','H',7000,1.00,7000.00,'P',0.00,0.00,7000.00,0.00,0.00,7000.00,3,0,'',0,'',99,'','','',0,''),(172180,0,0,4694,'2025-12-08',16636,'16:52:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'',99,'','','',0,''),(172181,0,0,4694,'2025-12-08',16637,'16:53:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'',99,'','','',0,''),(172182,0,0,4694,'2025-12-08',16652,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'',99,'','','',0,''),(172183,0,0,4694,'2025-12-08',16653,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'405',0,'',99,'','','',0,''),(172184,0,0,4694,'2025-12-08',16654,'20:06:00','ROOM','ROOM0009','ROOM CHARGES','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'',99,'','','',0,''),(172185,0,0,4694,'2025-12-08',16942,'20:06:00','AECO','AECO0008','RMO CHARGES DAY','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'',99,'','','',0,''),(172186,0,0,4694,'2025-12-08',16943,'20:06:00','CARE','CARE0001','NURSING CHARGES','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'',99,'','','',0,''),(172187,0,0,4694,'2025-12-09',16944,'16:52:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'',99,'','','',0,''),(172188,0,0,4694,'2025-12-09',0,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'213',0,'',99,'','','',0,''),(172189,0,0,4694,'2025-12-09',0,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (213)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'213',0,'',99,'','','',0,''),(172190,0,0,4694,'2025-12-09',16950,'19:56:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'',99,'','','',0,''),(172191,0,0,4694,'2025-12-09',16951,'19:56:00','CARE','CARE0005','RMO CHARGE - SPECIAL','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'',99,'','','',0,''),(172192,0,0,4694,'2025-12-09',17062,'19:56:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'',99,'','','',0,''),(172193,0,0,4694,'2025-12-10',17344,'10:34:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'',99,'','','',0,''),(172194,0,0,4694,'2025-12-10',17388,'16:25:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'',99,'','','',0,''),(172195,0,0,4694,'2025-12-10',17389,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'',99,'','','',0,''),(172196,0,0,4694,'2025-12-10',17390,'17:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'',99,'','','',0,''),(172197,0,0,4694,'2025-12-10',17391,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'',99,'','','',0,''),(172198,0,0,4694,'2025-12-10',17392,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'',99,'','','',0,''),(172199,0,0,4694,'2025-12-10',17655,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'',99,'','','',0,''),(172200,0,0,4694,'2025-12-11',17656,'10:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'',99,'','','',0,''),(172201,0,0,4694,'2025-12-11',17657,'10:36:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'',99,'','','',0,''),(172202,0,0,4694,'2025-12-11',17658,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'',99,'','','',0,''),(172203,0,0,4694,'2025-12-11',17659,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'',99,'','','',0,''),(172204,0,0,4694,'2025-12-11',17796,'17:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'',99,'','','',0,''),(172205,0,0,4694,'2025-12-11',17797,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'',99,'','','',0,''),(172206,0,0,4694,'2025-12-11',17798,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'',99,'','','',0,''),(172207,0,0,4694,'2025-12-12',17799,'10:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'',99,'','','',0,''),(172208,0,0,4694,'2025-12-12',17800,'10:36:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'',99,'','','',0,''),(172209,0,0,4694,'2025-12-12',18171,'13:52:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'',99,'','','',0,''),(172210,0,0,4694,'2025-12-12',18172,'13:54:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'',99,'','','',0,''),(172211,0,0,4694,'2025-12-12',18173,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'',99,'','','',0,''),(172212,0,0,4694,'2025-12-12',18174,'17:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'',99,'','','',0,''),(172213,0,0,4694,'2025-12-12',18175,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'',99,'','','',0,''),(172214,0,0,4694,'2025-12-12',18185,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'405',0,'',99,'','','',0,''),(172215,0,0,4694,'2025-12-12',18186,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'',99,'','','',0,''),(172216,0,0,4694,'2025-12-13',18187,'13:53:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'',99,'','','',0,''),(172217,0,0,4694,'2025-12-13',18188,'13:54:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'',99,'','','',0,''),(172218,0,0,4694,'2025-12-13',18189,'13:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'',99,'','','',0,''),(172997,0,0,5848,'2025-12-10',17458,'22:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(172998,0,0,5848,'2025-12-10',17459,'22:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(172999,0,0,5848,'2025-12-10',17460,'22:15:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(173000,0,0,5848,'2025-12-10',17461,'22:15:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(173001,0,0,5848,'2025-12-10',17462,'22:15:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(173002,0,0,5848,'2025-12-11',17463,'22:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'207',0,'IPB',99,'Y','','',0,''),(173003,0,0,5848,'2025-12-10',17464,'22:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,78,0,'207',0,'IPB',99,'Y','','',0,''),(173004,0,0,5848,'2025-12-10',17754,'20:06:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173005,0,0,5848,'2025-12-10',17755,'20:06:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173006,0,0,5848,'2025-12-10',17756,'20:07:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,78,0,'',0,'IPB',99,'Y','','',0,''),(173007,0,0,5848,'2025-12-10',17757,'20:07:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173008,0,0,5848,'2025-12-11',17758,'20:07:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(173009,0,0,5848,'2025-12-11',17859,'22:15:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(173010,0,0,5848,'2025-12-11',17860,'22:15:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(173011,0,0,5848,'2025-12-11',17861,'22:15:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(173012,0,0,5848,'2025-12-11',17863,'11:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173013,0,0,5848,'2025-12-12',17864,'11:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173014,0,0,5848,'2025-12-11',17865,'11:55:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173015,0,0,5848,'2025-12-12',17866,'11:56:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173016,0,0,5848,'2025-12-12',18037,'21:12:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(173017,0,0,5848,'2025-12-13',18379,'22:15:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(173018,0,0,5848,'2025-12-12',18380,'22:15:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(173019,0,0,5848,'2025-12-13',18381,'22:15:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(173020,0,0,5848,'2025-12-12',18382,'22:15:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(173021,0,0,5848,'2025-12-13',18383,'22:15:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(173022,0,0,5848,'2025-12-12',18384,'22:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'305',0,'IPB',99,'Y','','',0,''),(173023,0,0,5848,'2025-12-13',18385,'22:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'305',0,'IPB',99,'Y','','',0,''),(173024,0,0,5848,'2025-12-12',18386,'22:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'305',0,'IPB',99,'Y','','',0,''),(173025,0,0,5848,'2025-12-12',18388,'22:15:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(173026,0,0,5848,'2025-12-14',18607,'22:15:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(173027,0,0,5848,'2025-12-14',18608,'22:15:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(173028,0,0,5848,'2025-12-14',18609,'22:15:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(173029,0,0,5848,'2025-12-14',18610,'22:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'305',0,'IPB',99,'Y','','',0,''),(173030,0,0,5848,'2025-12-13',18612,'15:59:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173031,0,0,5848,'2025-12-14',18613,'15:59:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173032,0,0,5848,'2025-12-15',18614,'16:00:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173033,0,0,5848,'2025-12-11',18615,'16:00:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173034,0,0,5848,'2025-12-15',18616,'16:01:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'',0,'IPB',99,'Y','','',0,''),(173035,0,0,5848,'2025-12-13',18617,'16:03:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(173036,0,0,5848,'2025-12-14',18618,'16:04:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(173148,0,0,674,'2025-10-13',2240,'22:24:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(173149,0,0,674,'2025-10-13',2241,'22:24:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(173150,0,0,674,'2025-10-13',2242,'22:24:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(173151,0,0,674,'2025-10-13',2243,'22:24:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(173152,0,0,674,'2025-10-13',2244,'22:24:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(173153,0,0,674,'2025-10-14',3013,'22:24:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(173154,0,0,674,'2025-10-15',3014,'22:24:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(173155,0,0,674,'2025-10-14',3015,'22:24:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(173156,0,0,674,'2025-10-15',3016,'22:24:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(173157,0,0,674,'2025-10-14',3017,'22:24:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(173158,0,0,674,'2025-10-15',3018,'22:24:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(173159,0,0,674,'2025-10-14',3019,'22:24:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'405',0,'IPB',99,'Y','','',0,''),(173160,0,0,674,'2025-10-16',3020,'22:24:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'405',0,'IPB',99,'Y','','',0,''),(173161,0,0,674,'2025-10-14',3021,'22:24:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(173162,0,0,674,'2025-10-15',3022,'22:24:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'405',0,'IPB',99,'Y','','',0,''),(173163,0,0,674,'2025-10-15',5944,'22:46:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(173164,0,0,674,'2025-10-13',5945,'22:49:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173165,0,0,674,'2025-10-16',16562,'17:06:00','OETR','OETR0004','CASHLESS PACKAGE','H',16046,1.00,16046.00,'P',0.00,0.00,16046.00,0.00,0.00,16046.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173322,0,0,5831,'2025-12-10',17421,'18:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(173323,0,0,5831,'2025-12-10',17422,'18:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(173324,0,0,5831,'2025-12-10',17423,'18:30:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(173325,0,0,5831,'2025-12-10',17424,'18:30:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(173326,0,0,5831,'2025-12-10',17425,'18:30:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(173327,0,0,5831,'2025-12-10',17427,'18:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','','',0,''),(173328,0,0,5831,'2025-12-11',17742,'18:30:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(173329,0,0,5831,'2025-12-11',17743,'18:30:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(173330,0,0,5831,'2025-12-11',17744,'18:30:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(173331,0,0,5831,'2025-12-11',17745,'18:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','','',0,''),(173332,0,0,5831,'2025-12-11',17746,'18:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','','',0,''),(173333,0,0,5831,'2025-12-10',17814,'10:50:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173334,0,0,5831,'2025-12-12',17815,'10:50:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173335,0,0,5831,'2025-12-11',17816,'10:50:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173336,0,0,5831,'2025-12-10',17817,'10:51:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173337,0,0,5831,'2025-12-11',17818,'10:51:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173338,0,0,5831,'2025-12-12',17819,'10:51:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173339,0,0,5831,'2025-12-12',18192,'18:30:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(173340,0,0,5831,'2025-12-12',18193,'18:30:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(173341,0,0,5831,'2025-12-12',18194,'18:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','','',0,''),(173342,0,0,5831,'2025-12-12',18195,'18:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'407',0,'IPB',99,'Y','','',0,''),(173343,0,0,5831,'2025-12-12',18196,'18:30:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(173344,0,0,5831,'2025-12-13',18197,'16:12:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(173345,0,0,5831,'2025-12-13',18198,'16:13:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(173346,0,0,5831,'2025-12-13',18199,'16:15:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173347,0,0,5831,'2025-12-13',18200,'16:16:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173382,0,0,6167,'2025-12-14',18415,'21:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(173383,0,0,6167,'2025-12-14',18416,'21:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(173384,0,0,6167,'2025-12-14',18417,'21:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(173385,0,0,6167,'2025-12-14',18418,'21:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(173386,0,0,6167,'2025-12-14',18419,'21:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(173387,0,0,6167,'2025-12-14',18420,'21:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(173388,0,0,6167,'2025-12-14',18421,'21:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(173389,0,0,6167,'2025-12-14',18716,'21:09:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173390,0,0,6167,'2025-12-14',18717,'21:10:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(173391,0,0,6167,'2025-12-14',18718,'21:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(175788,0,0,6274,'2025-12-15',18640,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(175789,0,0,6274,'2025-12-15',18641,'17:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(175790,0,0,6274,'2025-12-16',18642,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,7,0,'209',0,'IPB',99,'Y','','',0,''),(175791,0,0,6274,'2025-12-15',18643,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,7,0,'209',0,'IPB',99,'Y','','',0,''),(175792,0,0,6274,'2025-12-15',18637,'17:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(175793,0,0,6274,'2025-12-15',18638,'17:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(175794,0,0,6274,'2025-12-15',18820,'11:36:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(175795,0,0,6274,'2025-12-16',18824,'11:37:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(175796,0,0,6274,'2025-12-15',18639,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(175797,0,0,6274,'2025-12-15',18822,'11:37:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(175798,0,0,6274,'2025-12-15',18823,'11:37:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,7,0,'',0,'IPB',99,'Y','','',0,''),(175799,0,0,6274,'2025-12-15',18816,'11:34:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(175800,0,0,6274,'2025-12-15',18817,'11:35:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(175801,0,0,6274,'2025-12-15',18818,'11:35:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(175802,0,0,6274,'2025-12-16',18819,'11:35:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(175803,0,0,6274,'2025-12-15',18821,'11:36:00','WPRC','WPRC0088','ENDOTRACHEAL INTUBATION','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,7,0,'',0,'IPB',99,'Y','','',0,''),(175804,0,0,6274,'2025-12-15',18837,'11:49:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(175805,0,0,6274,'2025-12-16',18838,'11:49:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(176199,0,0,6155,'2025-12-13',18228,'21:19:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(176200,0,0,6155,'2025-12-14',18730,'21:19:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(176201,0,0,6155,'2025-12-15',18846,'21:19:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(176202,0,0,6155,'2025-12-13',18229,'21:19:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(176203,0,0,6155,'2025-12-14',18731,'21:19:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(176204,0,0,6155,'2025-12-15',18847,'21:19:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(176205,0,0,6155,'2025-12-14',18230,'21:19:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(176206,0,0,6155,'2025-12-14',18231,'21:19:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(176207,0,0,6155,'2025-12-15',18732,'21:19:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(176208,0,0,6155,'2025-12-15',18733,'21:19:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(176209,0,0,6155,'2025-12-16',18848,'21:19:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'401',0,'IPB',99,'Y','','',0,''),(176210,0,0,6155,'2025-12-13',18225,'21:19:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(176211,0,0,6155,'2025-12-13',18226,'21:19:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(176212,0,0,6155,'2025-12-13',18227,'21:19:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(176213,0,0,6155,'2025-12-14',18729,'21:19:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(176214,0,0,6155,'2025-12-15',18845,'21:19:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(176215,0,0,6155,'2025-12-13',18852,'11:59:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(176216,0,0,6155,'2025-12-14',18853,'11:59:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(176217,0,0,6155,'2025-12-14',18888,'12:39:00','SURG','SURG0014','SURGERY CHARGE','H',36000,1.00,36000.00,'P',0.00,0.00,36000.00,0.00,0.00,36000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(176218,0,0,6155,'2025-12-14',18889,'12:39:00','SURG','SURG0015','OT USAGE CHARGE','H',12000,1.00,12000.00,'P',0.00,0.00,12000.00,0.00,0.00,12000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(176219,0,0,6155,'2025-12-16',18854,'12:00:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(176359,0,0,6264,'2025-12-15',18600,'15:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(176360,0,0,6264,'2025-12-15',18601,'15:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(176361,0,0,6264,'2025-12-15',18602,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(176362,0,0,6264,'2025-12-15',18603,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(176363,0,0,6264,'2025-12-15',18604,'15:00:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(176364,0,0,6264,'2025-12-16',18605,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'410',0,'IPB',99,'Y','','',0,''),(176365,0,0,6264,'2025-12-15',18606,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'410',0,'IPB',99,'Y','','',0,''),(176366,0,0,6264,'2025-12-15',18912,'14:53:00','USG','USG0092','USG ABDOMEN CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(176367,0,0,6264,'2025-12-15',18913,'14:56:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(176368,0,0,6264,'2025-12-15',18914,'14:57:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(176389,0,0,6329,'2025-12-16',18744,'09:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(176390,0,0,6329,'2025-12-16',18745,'09:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(176391,0,0,6329,'2025-12-16',18749,'09:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'404',0,'IPB',99,'Y','','',0,''),(176392,0,0,6329,'2025-12-16',18750,'09:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'404',0,'IPB',99,'Y','','',0,''),(176393,0,0,6329,'2025-12-16',18940,'17:46:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(176394,0,0,6329,'2025-12-16',18941,'17:49:00','CARE','CARE0007','DAY CARE CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(176765,0,0,6334,'2025-12-16',18757,'02:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(176766,0,0,6334,'2025-12-16',18758,'02:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(176767,0,0,6334,'2025-12-16',18759,'02:30:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(176768,0,0,6334,'2025-12-16',18760,'02:30:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(176769,0,0,6334,'2025-12-16',18761,'02:30:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(176770,0,0,6334,'2025-12-16',18762,'02:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(176771,0,0,6334,'2025-12-16',18763,'02:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(176772,0,0,6334,'2025-12-16',19029,'19:19:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(176773,0,0,6334,'2025-12-16',19030,'19:19:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(176774,0,0,6334,'2025-12-16',19031,'19:20:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(176775,0,0,6334,'2025-12-16',19032,'19:20:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(177724,0,0,6061,'2025-12-12',18024,'19:50:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(177725,0,0,6061,'2025-12-12',18025,'19:50:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(177726,0,0,6061,'2025-12-12',18214,'19:50:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(177727,0,0,6061,'2025-12-12',18215,'19:50:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(177728,0,0,6061,'2025-12-12',18216,'19:50:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(177729,0,0,6061,'2025-12-13',18326,'19:50:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(177730,0,0,6061,'2025-12-13',18327,'19:50:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(177731,0,0,6061,'2025-12-13',18328,'19:50:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(177732,0,0,6061,'2025-12-13',18329,'19:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'411',0,'IPB',99,'Y','','',0,''),(177733,0,0,6061,'2025-12-13',18330,'19:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'411',0,'IPB',99,'Y','','',0,''),(177734,0,0,6061,'2025-12-12',18331,'14:17:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(177735,0,0,6061,'2025-12-13',18332,'14:17:00','USG','USG0092','USG ABDOMEN CHARGE','H',1200,1.00,1200.00,'A',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(177736,0,0,6061,'2025-12-14',18389,'19:50:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(177737,0,0,6061,'2025-12-14',18390,'19:50:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(177738,0,0,6061,'2025-12-14',18391,'19:50:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(177739,0,0,6061,'2025-12-14',18392,'19:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'411',0,'IPB',99,'Y','','',0,''),(177740,0,0,6061,'2025-12-15',18724,'19:50:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(177741,0,0,6061,'2025-12-15',18725,'19:50:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(177742,0,0,6061,'2025-12-15',18726,'19:50:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(177743,0,0,6061,'2025-12-15',18727,'19:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'411',0,'IPB',99,'Y','','',0,''),(177744,0,0,6061,'2025-12-15',18728,'19:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'411',0,'IPB',99,'Y','','',0,''),(177745,0,0,6061,'2025-12-16',19043,'19:50:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(177746,0,0,6061,'2025-12-16',19044,'19:50:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(177747,0,0,6061,'2025-12-16',19045,'19:50:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'411',0,'IPB',99,'Y','','',0,''),(177748,0,0,6061,'2025-12-16',19046,'19:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'411',0,'IPB',99,'Y','','',0,''),(177749,0,0,6061,'2025-12-16',19047,'19:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'411',0,'IPB',99,'Y','','',0,''),(177750,0,0,6061,'2025-12-14',19085,'21:26:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(177751,0,0,6061,'2025-12-15',19086,'21:26:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(177752,0,0,6061,'2025-12-16',19087,'21:26:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(177753,0,0,6061,'2025-12-13',19181,'12:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(177754,0,0,6061,'2025-12-17',19182,'12:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(177755,0,0,6061,'2025-12-17',19183,'12:35:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'',0,'IPB',99,'Y','','',0,''),(178301,0,0,5521,'2025-12-08',16435,'12:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(178302,0,0,5521,'2025-12-08',16436,'12:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(178303,0,0,5521,'2025-12-08',16437,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(178304,0,0,5521,'2025-12-08',16438,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(178305,0,0,5521,'2025-12-08',16439,'12:30:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(178306,0,0,5521,'2025-12-08',16441,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(178307,0,0,5521,'2025-12-09',16845,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178308,0,0,5521,'2025-12-09',16846,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178309,0,0,5521,'2025-12-09',16847,'12:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178310,0,0,5521,'2025-12-09',16848,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(178311,0,0,5521,'2025-12-09',16849,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(178312,0,0,5521,'2025-12-10',17296,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178313,0,0,5521,'2025-12-10',17297,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178314,0,0,5521,'2025-12-10',17298,'12:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178315,0,0,5521,'2025-12-10',17299,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(178316,0,0,5521,'2025-12-10',17300,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(178317,0,0,5521,'2025-12-08',17316,'16:02:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,12.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178318,0,0,5521,'2025-12-09',17317,'16:02:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178319,0,0,5521,'2025-12-10',17318,'16:02:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178320,0,0,5521,'2025-12-08',17319,'16:03:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,5,0,'',0,'IPB',99,'Y','','',0,''),(178321,0,0,5521,'2025-12-09',17320,'16:03:00','XRY','XRY0045','X RAY CHARGES','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178322,0,0,5521,'2025-12-10',17321,'16:03:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178323,0,0,5521,'2025-12-10',17322,'16:05:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,5,0,'',0,'IPB',99,'Y','','',0,''),(178324,0,0,5521,'2025-12-08',17323,'16:05:00','USG','USG0091','USG ABDOMEN WITH PELVIS','H',1200,1.00,1200.00,'A',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178325,0,0,5521,'2025-12-09',17324,'16:06:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(178326,0,0,5521,'2025-12-11',17748,'20:00:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,5.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178327,0,0,5521,'2025-12-11',17749,'20:00:00','WPRC','WPRC0092','CVP (CENTRAL LINE INSERTION) CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,39,0,'',0,'IPB',99,'Y','','',0,''),(178328,0,0,5521,'2025-12-11',17750,'20:02:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178329,0,0,5521,'2025-12-11',17751,'20:02:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,70,0,'',0,'IPB',99,'Y','','',0,''),(178330,0,0,5521,'2025-12-12',17884,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178331,0,0,5521,'2025-12-12',17885,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178332,0,0,5521,'2025-12-12',17886,'12:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178333,0,0,5521,'2025-12-12',17888,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(178334,0,0,5521,'2025-12-11',17889,'12:31:00','ROOM','ROOM0009','ROOM CHARGES','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178335,0,0,5521,'2025-12-11',17890,'12:32:00','CARE','CARE0004','RMO CHARGES - ICU','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178336,0,0,5521,'2025-12-11',17891,'12:32:00','CARE','CARE0003','NURSING CHARGES - ICU','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178337,0,0,5521,'2025-12-11',17892,'12:32:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'',0,'IPB',99,'Y','','',0,''),(178338,0,0,5521,'2025-12-11',17893,'12:33:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'',0,'IPB',99,'Y','','',0,''),(178339,0,0,5521,'2025-12-12',17894,'12:34:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178340,0,0,5521,'2025-12-11',17895,'12:35:00','SURG','SURG0014','SURGERY CHARGE','H',20000,1.00,20000.00,'P',0.00,0.00,20000.00,0.00,0.00,20000.00,70,0,'',0,'IPB',99,'Y','','',0,''),(178341,0,0,5521,'2025-12-11',17896,'12:35:00','SURG','SURG0015','OT USAGE CHARGE','H',5000,1.00,5000.00,'P',0.00,0.00,5000.00,0.00,0.00,5000.00,5,0,'',0,'IPB',99,'Y','','',0,''),(178342,0,0,5521,'2025-12-12',17899,'12:43:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'',0,'IPB',99,'Y','','',0,''),(178343,0,0,5521,'2025-12-13',18333,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178344,0,0,5521,'2025-12-14',18334,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178345,0,0,5521,'2025-12-13',18335,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178346,0,0,5521,'2025-12-14',18336,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178347,0,0,5521,'2025-12-13',18337,'12:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178348,0,0,5521,'2025-12-14',18338,'12:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178349,0,0,5521,'2025-12-13',18339,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(178350,0,0,5521,'2025-12-14',18340,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(178351,0,0,5521,'2025-12-13',18341,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(178352,0,0,5521,'2025-12-14',18343,'14:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178353,0,0,5521,'2025-12-13',18344,'14:23:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178354,0,0,5521,'2025-12-13',18345,'14:24:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(178355,0,0,5521,'2025-12-12',18346,'14:24:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,70,0,'',0,'IPB',99,'Y','','',0,''),(178356,0,0,5521,'2025-12-13',18347,'14:25:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(178357,0,0,5521,'2025-12-15',18551,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178358,0,0,5521,'2025-12-15',18552,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178359,0,0,5521,'2025-12-15',18553,'12:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178360,0,0,5521,'2025-12-15',18554,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(178361,0,0,5521,'2025-12-15',18555,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(178362,0,0,5521,'2025-12-16',18953,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178363,0,0,5521,'2025-12-16',18954,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178364,0,0,5521,'2025-12-16',18955,'12:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(178365,0,0,5521,'2025-12-16',18956,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(178366,0,0,5521,'2025-12-16',18957,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(178367,0,0,5521,'2025-12-15',19088,'21:28:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178368,0,0,5521,'2025-12-16',19089,'21:28:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178369,0,0,5521,'2025-12-15',19090,'21:28:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(178370,0,0,5521,'2025-12-16',19091,'21:28:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(178371,0,0,5521,'2025-12-14',19092,'21:29:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(178372,0,0,5521,'2025-12-17',19193,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'408',0,'IPB',99,'Y','','',0,''),(178373,0,0,5521,'2025-12-08',19199,'13:02:00','DRC','DRC0021','EMERGENCY CONSULTANT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,5,0,'',0,'IPB',99,'Y','','',0,''),(178374,0,0,5521,'2025-12-17',19201,'13:07:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(178375,0,0,5521,'2025-12-17',19209,'13:26:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178556,0,0,6262,'2025-12-15',18569,'13:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(178557,0,0,6262,'2025-12-15',18570,'13:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(178558,0,0,6262,'2025-12-15',18571,'13:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(178559,0,0,6262,'2025-12-15',18572,'13:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(178560,0,0,6262,'2025-12-15',18573,'13:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(178561,0,0,6262,'2025-12-15',18575,'13:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,6,0,'402',0,'IPB',99,'Y','','',0,''),(178562,0,0,6262,'2025-12-16',18978,'13:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(178563,0,0,6262,'2025-12-16',18979,'13:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(178564,0,0,6262,'2025-12-16',18980,'13:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(178565,0,0,6262,'2025-12-16',18981,'13:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,6,0,'402',0,'IPB',99,'Y','','',0,''),(178566,0,0,6262,'2025-12-16',18982,'13:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,6,0,'402',0,'IPB',99,'Y','','',0,''),(178567,0,0,6262,'2025-12-15',19211,'13:37:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178568,0,0,6262,'2025-12-17',19212,'13:37:00','WPRC','WPRC0123','X-RAY RT TIBIA AP AND LAT','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178569,0,0,6262,'2025-12-17',19213,'13:40:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,6,0,'',0,'IPB',99,'Y','','',0,''),(178570,0,0,6262,'2025-12-17',19214,'13:43:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,6,0,'',0,'IPB',99,'Y','','',0,''),(178571,0,0,6262,'2025-12-16',19215,'13:46:00','SURG','SURG0016','SURGERY CHARGE','H',11800,1.00,11800.00,'P',0.00,0.00,11800.00,0.00,0.00,11800.00,6,0,'',0,'IPB',99,'Y','','',0,''),(178572,0,0,6262,'2025-12-16',19216,'13:46:00','SURG','SURG0015','OT USAGE CHARGE','H',4000,1.00,4000.00,'P',0.00,0.00,4000.00,0.00,0.00,4000.00,6,0,'',0,'IPB',99,'Y','','',0,''),(178636,0,0,6254,'2025-12-15',18538,'12:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(178637,0,0,6254,'2025-12-15',18539,'12:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(178638,0,0,6254,'2025-12-15',18540,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(178639,0,0,6254,'2025-12-15',18541,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(178640,0,0,6254,'2025-12-15',18542,'12:30:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(178641,0,0,6254,'2025-12-15',18544,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(178642,0,0,6254,'2025-12-16',18973,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(178643,0,0,6254,'2025-12-16',18974,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(178644,0,0,6254,'2025-12-16',18975,'12:30:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(178645,0,0,6254,'2025-12-16',18976,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'IPB',99,'Y','','',0,''),(178646,0,0,6254,'2025-12-16',18977,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'412',0,'IPB',99,'Y','','',0,''),(178647,0,0,6254,'2025-12-15',19219,'14:01:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178648,0,0,6254,'2025-12-16',19220,'14:02:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178649,0,0,6254,'2025-12-17',19221,'14:02:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178650,0,0,6254,'2025-12-16',19222,'14:11:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178651,0,0,6254,'2025-12-15',19223,'14:12:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(178652,0,0,6254,'2025-12-17',19224,'14:12:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(178653,0,0,6254,'2025-12-17',19225,'14:15:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(178654,0,0,6254,'2025-12-17',19226,'14:16:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',3500,1.00,3500.00,'P',0.00,0.00,3500.00,0.00,0.00,3500.00,100,0,'',0,'IPB',99,'Y','','',0,''),(178655,0,0,6254,'2025-12-16',19227,'14:20:00','SURG','SURG0016','SURGERY CHARGE','H',8000,1.00,8000.00,'P',0.00,0.00,8000.00,0.00,0.00,8000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(178656,0,0,6254,'2025-12-16',19228,'14:21:00','SURG','SURG0015','OT USAGE CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(178739,0,0,6166,'2025-12-14',18362,'17:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(178740,0,0,6166,'2025-12-14',18363,'17:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(178741,0,0,6166,'2025-12-14',18364,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(178742,0,0,6166,'2025-12-14',18365,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(178743,0,0,6166,'2025-12-14',18366,'17:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(178744,0,0,6166,'2025-12-15',18367,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'405',0,'IPB',99,'Y','','',0,''),(178745,0,0,6166,'2025-12-15',18368,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'405',0,'IPB',99,'Y','','',0,''),(178746,0,0,6166,'2025-12-15',18739,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(178747,0,0,6166,'2025-12-15',18740,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(178748,0,0,6166,'2025-12-15',18741,'17:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(178749,0,0,6166,'2025-12-16',18742,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'405',0,'IPB',99,'Y','','',0,''),(178750,0,0,6166,'2025-12-16',18743,'17:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'405',0,'IPB',99,'Y','','',0,''),(178751,0,0,6166,'2025-12-16',18968,'17:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(178752,0,0,6166,'2025-12-16',18969,'17:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(178753,0,0,6166,'2025-12-16',18970,'17:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(178754,0,0,6166,'2025-12-17',18971,'17:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'405',0,'IPB',99,'Y','','',0,''),(178755,0,0,6166,'2025-12-14',19249,'17:23:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178756,0,0,6166,'2025-12-15',19250,'17:24:00','WPRC','WPRC0124','K-90','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178757,0,0,6166,'2025-12-16',19251,'17:25:00','XRY','XRY0045','X RAY CHARGES','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178758,0,0,6166,'2025-12-16',19252,'17:25:00','USG','USG0091','USG ABDOMEN WITH PELVIS','H',1800,1.00,1800.00,'P',0.00,0.00,1800.00,0.00,0.00,1800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(178759,0,0,6166,'2025-12-16',19253,'17:26:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,6,0,'',0,'IPB',99,'Y','','',0,''),(178760,0,0,6166,'2025-12-17',19254,'17:26:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,6,0,'',0,'IPB',99,'Y','','',0,''),(178761,0,0,6166,'2025-12-16',19255,'17:30:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(178777,0,0,6448,'2025-12-16',19063,'21:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(178778,0,0,6448,'2025-12-16',19064,'21:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(178779,0,0,6448,'2025-12-16',19065,'21:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(178780,0,0,6448,'2025-12-16',19066,'21:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(178781,0,0,6448,'2025-12-16',19067,'21:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(178782,0,0,6448,'2025-12-17',19068,'21:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(178783,0,0,6448,'2025-12-17',19069,'21:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(178784,0,0,6448,'2025-12-16',19309,'18:57:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(181229,0,0,6610,'2025-12-17',19389,'23:16:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(181230,0,0,6610,'2025-12-17',19390,'23:16:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(181231,0,0,6610,'2025-12-17',19391,'23:16:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(181232,0,0,6610,'2025-12-17',19392,'23:16:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(181233,0,0,6610,'2025-12-17',19393,'23:16:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'IPB',99,'Y','','',0,''),(181234,0,0,6610,'2025-12-18',19394,'23:16:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(181235,0,0,6610,'2025-12-18',19395,'23:16:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'IPB',99,'Y','','',0,''),(181236,0,0,6610,'2025-12-18',19656,'20:25:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(184703,0,0,6163,'2025-12-14',18275,'11:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(184704,0,0,6163,'2025-12-14',18276,'11:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(184705,0,0,6163,'2025-12-14',18277,'11:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(184706,0,0,6163,'2025-12-14',18278,'11:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(184707,0,0,6163,'2025-12-14',18279,'11:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(184708,0,0,6163,'2025-12-14',18280,'11:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'207',0,'IPB',99,'Y','','',0,''),(184709,0,0,6163,'2025-12-14',18281,'11:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'207',0,'IPB',99,'Y','','',0,''),(184710,0,0,6163,'2025-12-15',18580,'11:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(184711,0,0,6163,'2025-12-15',18581,'11:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(184712,0,0,6163,'2025-12-15',18582,'11:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(184713,0,0,6163,'2025-12-15',18583,'11:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'207',0,'IPB',99,'Y','','',0,''),(184714,0,0,6163,'2025-12-15',18584,'11:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'207',0,'IPB',99,'Y','','',0,''),(184715,0,0,6163,'2025-12-14',18585,'13:50:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(184716,0,0,6163,'2025-12-14',18586,'13:50:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(184717,0,0,6163,'2025-12-14',18587,'13:51:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,42,0,'',0,'IPB',99,'Y','','',0,''),(184718,0,0,6163,'2025-12-14',18588,'13:51:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(184719,0,0,6163,'2025-12-15',18589,'13:51:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(184720,0,0,6163,'2025-12-15',18590,'13:51:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(184721,0,0,6163,'2025-12-15',18591,'13:51:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(184722,0,0,6163,'2025-12-16',18782,'10:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(184723,0,0,6163,'2025-12-16',18783,'10:54:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(184724,0,0,6163,'2025-12-16',18784,'10:55:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(184725,0,0,6163,'2025-12-16',18958,'11:30:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(184726,0,0,6163,'2025-12-16',18959,'11:30:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(184727,0,0,6163,'2025-12-16',18960,'11:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(184728,0,0,6163,'2025-12-16',18961,'11:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(184729,0,0,6163,'2025-12-16',18962,'11:30:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(184730,0,0,6163,'2025-12-17',19167,'11:30:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(184731,0,0,6163,'2025-12-17',19168,'11:30:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(184732,0,0,6163,'2025-12-17',19169,'11:30:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(184733,0,0,6163,'2025-12-17',19170,'11:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(184734,0,0,6163,'2025-12-17',19171,'11:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(184735,0,0,6163,'2025-12-18',19518,'11:30:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(184736,0,0,6163,'2025-12-18',19519,'11:30:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(184737,0,0,6163,'2025-12-18',19520,'11:30:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(184738,0,0,6163,'2025-12-18',19521,'11:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(184739,0,0,6163,'2025-12-18',19522,'11:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (305)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(184740,0,0,6163,'2025-12-17',19592,'18:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(184741,0,0,6163,'2025-12-18',19593,'18:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(184742,0,0,6163,'2025-12-17',19594,'18:55:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'',0,'IPB',99,'Y','','',0,''),(184743,0,0,6163,'2025-12-17',19595,'18:56:00','WPRC','WPRC0084','R T INSERTION CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(184744,0,0,6163,'2025-12-16',19597,'18:57:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(184745,0,0,6163,'2025-12-18',19598,'18:57:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(184746,0,0,6163,'2025-12-18',19599,'18:58:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,66,0,'',0,'IPB',99,'Y','','',0,''),(184747,0,0,6163,'2025-12-18',19605,'19:09:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(184748,0,0,6163,'2025-12-19',19793,'11:30:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(184749,0,0,6163,'2025-12-19',19794,'11:30:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(184750,0,0,6163,'2025-12-19',19795,'11:30:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(184751,0,0,6163,'2025-12-19',19796,'11:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,42,0,'305',0,'IPB',99,'Y','','',0,''),(184752,0,0,6163,'2025-12-19',19810,'13:42:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(186468,0,0,6447,'2025-12-16',19055,'20:20:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(186469,0,0,6447,'2025-12-16',19056,'20:20:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(186470,0,0,6447,'2025-12-16',19109,'09:59:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(186471,0,0,6447,'2025-12-16',19110,'09:59:00','AECO','AECO0008','RMO CHARGES DAY','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(186472,0,0,6447,'2025-12-16',19111,'09:59:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(186473,0,0,6447,'2025-12-17',19533,'20:20:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(186474,0,0,6447,'2025-12-17',19534,'20:20:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(186475,0,0,6447,'2025-12-17',19535,'20:20:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(186476,0,0,6447,'2025-12-17',19536,'20:20:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'401',0,'IPB',99,'Y','','',0,''),(186477,0,0,6447,'2025-12-17',19537,'20:20:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'401',0,'IPB',99,'Y','','',0,''),(186478,0,0,6447,'2025-12-16',19624,'19:22:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(186479,0,0,6447,'2025-12-16',19626,'19:26:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(186480,0,0,6447,'2025-12-17',19627,'19:26:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(186481,0,0,6447,'2025-12-18',19628,'19:26:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(186482,0,0,6447,'2025-12-18',19657,'20:20:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(186483,0,0,6447,'2025-12-18',19658,'20:20:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(186484,0,0,6447,'2025-12-18',19659,'20:20:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(186485,0,0,6447,'2025-12-18',19660,'20:20:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'401',0,'IPB',99,'Y','','',0,''),(186486,0,0,6447,'2025-12-18',19661,'20:20:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'401',0,'IPB',99,'Y','','',0,''),(186487,0,0,6447,'2025-12-19',19913,'19:08:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'',0,'IPB',99,'Y','','',0,''),(186488,0,0,6447,'2025-12-19',19914,'19:08:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'',0,'IPB',99,'Y','','',0,''),(186509,0,0,6712,'2025-12-19',19675,'10:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(186510,0,0,6712,'2025-12-19',19676,'10:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(186511,0,0,6712,'2025-12-19',19680,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(186512,0,0,6712,'2025-12-19',19681,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(186513,0,0,6712,'2025-12-19',19918,'19:31:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(186514,0,0,6712,'2025-12-19',19919,'19:33:00','CARE','CARE0007','DAY CARE CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(186515,0,0,6712,'2025-12-19',19920,'19:35:00','WPRC','WPRC0114','DRESSING CHARGE - MAJOR','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(186866,0,0,6707,'2025-12-18',19649,'19:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(186867,0,0,6707,'2025-12-18',19650,'19:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(186868,0,0,6707,'2025-12-18',19651,'19:30:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(186869,0,0,6707,'2025-12-18',19652,'19:30:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(186870,0,0,6707,'2025-12-18',19653,'19:30:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(186871,0,0,6707,'2025-12-19',19654,'19:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(186872,0,0,6707,'2025-12-19',19655,'19:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'404',0,'IPB',99,'Y','','',0,''),(186873,0,0,6707,'2025-12-18',19923,'20:29:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(189050,0,0,6737,'2025-12-19',19707,'10:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,0,0,'',0,'ER',1,'Y','N','',0,''),(189051,0,0,6737,'2025-12-19',19708,'10:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,0,0,'',0,'ER',99,'Y','N','',0,''),(189052,0,0,6737,'2025-12-19',19709,'10:00:00','ROOM','ROOM0009','ROOM CHARGES (306)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,0,0,'306',0,'IPB',99,'Y','N','',0,''),(189053,0,0,6737,'2025-12-19',19710,'10:00:00','AECO','AECO0008','RMO CHARGES DAY (306)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,0,0,'306',0,'IPB',99,'Y','N','',0,''),(189054,0,0,6737,'2025-12-19',19711,'10:00:00','CARE','CARE0001','NURSING CHARGES (306)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'306',0,'IPB',99,'Y','N','',0,''),(189055,0,0,6737,'2025-12-19',19712,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (306)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'306',0,'IPB',99,'Y','N','',0,''),(189056,0,0,6737,'2025-12-19',19713,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (306)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'306',0,'IPB',99,'Y','N','',0,''),(190036,0,0,6576,'2025-12-17',19345,'20:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(190037,0,0,6576,'2025-12-17',19346,'20:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(190038,0,0,6576,'2025-12-17',19347,'20:30:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(190039,0,0,6576,'2025-12-17',19348,'20:30:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(190040,0,0,6576,'2025-12-17',19349,'20:30:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(190041,0,0,6576,'2025-12-18',19662,'20:30:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(190042,0,0,6576,'2025-12-18',19663,'20:30:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(190043,0,0,6576,'2025-12-18',19664,'20:30:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(190044,0,0,6576,'2025-12-18',19665,'20:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(190045,0,0,6576,'2025-12-18',19666,'20:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(190046,0,0,6576,'2025-12-19',19934,'20:30:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(190047,0,0,6576,'2025-12-19',19935,'20:30:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(190048,0,0,6576,'2025-12-19',19936,'20:30:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'409',0,'IPB',99,'Y','','',0,''),(190049,0,0,6576,'2025-12-19',19937,'20:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(190050,0,0,6576,'2025-12-19',19938,'20:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'409',0,'IPB',99,'Y','','',0,''),(190051,0,0,6576,'2025-12-17',19949,'20:52:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190052,0,0,6576,'2025-12-18',19950,'20:52:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190053,0,0,6576,'2025-12-19',19951,'20:52:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190054,0,0,6576,'2025-12-18',19952,'20:52:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190055,0,0,6576,'2025-12-19',19953,'20:52:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190056,0,0,6576,'2025-12-17',19954,'20:53:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190057,0,0,6576,'2025-12-18',19955,'20:53:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190058,0,0,6576,'2025-12-19',19956,'20:53:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190059,0,0,6576,'2025-12-20',20061,'13:19:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190060,0,0,6576,'2025-12-20',20062,'13:20:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190061,0,0,6576,'2025-12-20',20063,'13:26:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'',0,'IPB',99,'Y','','',0,''),(190342,0,0,6461,'2025-12-17',19119,'10:15:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(190343,0,0,6461,'2025-12-17',19120,'10:15:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(190344,0,0,6461,'2025-12-17',19121,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(190345,0,0,6461,'2025-12-17',19122,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(190346,0,0,6461,'2025-12-17',19123,'10:15:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(190347,0,0,6461,'2025-12-17',19124,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'304',0,'IPB',99,'Y','','',0,''),(190348,0,0,6461,'2025-12-17',19125,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'304',0,'IPB',99,'Y','','',0,''),(190349,0,0,6461,'2025-12-18',19538,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (304)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(190350,0,0,6461,'2025-12-18',19539,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (304)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(190351,0,0,6461,'2025-12-18',19540,'10:15:00','CARE','CARE0001','NURSING CHARGES (304)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'304',0,'IPB',99,'Y','','',0,''),(190352,0,0,6461,'2025-12-18',19541,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'304',0,'IPB',99,'Y','','',0,''),(190353,0,0,6461,'2025-12-18',19542,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (304)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'304',0,'IPB',99,'Y','','',0,''),(190354,0,0,6461,'2025-12-19',19929,'10:15:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(190355,0,0,6461,'2025-12-19',19930,'10:15:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(190356,0,0,6461,'2025-12-19',19931,'10:15:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(190357,0,0,6461,'2025-12-19',19932,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'401',0,'IPB',99,'Y','','',0,''),(190358,0,0,6461,'2025-12-19',19933,'10:15:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'401',0,'IPB',99,'Y','','',0,''),(190359,0,0,6461,'2025-12-20',20036,'10:15:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'401',0,'IPB',99,'Y','','',0,''),(190360,0,0,6461,'2025-12-19',20064,'13:31:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,302,0,'',0,'IPB',99,'Y','','',0,''),(190361,0,0,6461,'2025-12-17',20065,'13:34:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190362,0,0,6461,'2025-12-18',20066,'13:35:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190363,0,0,6461,'2025-12-19',20067,'13:35:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190364,0,0,6461,'2025-12-20',20068,'13:36:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190365,0,0,6461,'2025-12-17',20069,'13:36:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190366,0,0,6461,'2025-12-17',20070,'13:36:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190367,0,0,6461,'2025-12-18',20071,'13:36:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,5,0,'',0,'IPB',99,'Y','','',0,''),(190416,0,0,6613,'2025-12-18',19403,'09:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(190417,0,0,6613,'2025-12-18',19404,'09:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(190418,0,0,6613,'2025-12-18',19406,'09:00:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(190419,0,0,6613,'2025-12-18',19407,'09:00:00','CARE','CARE0001','NURSING CHARGES (408)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(190420,0,0,6613,'2025-12-18',19408,'09:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'408',0,'IPB',99,'Y','','',0,''),(190421,0,0,6613,'2025-12-18',19409,'09:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'408',0,'IPB',99,'Y','','',0,''),(190422,0,0,6613,'2025-12-19',19758,'09:00:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(190423,0,0,6613,'2025-12-19',19759,'09:00:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(190424,0,0,6613,'2025-12-19',19760,'09:00:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(190425,0,0,6613,'2025-12-19',19761,'09:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'408',0,'IPB',99,'Y','','',0,''),(190426,0,0,6613,'2025-12-19',19762,'09:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'408',0,'IPB',99,'Y','','',0,''),(190427,0,0,6613,'2025-12-20',19972,'09:00:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(190428,0,0,6613,'2025-12-20',19973,'09:00:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(190429,0,0,6613,'2025-12-20',19974,'09:00:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(190430,0,0,6613,'2025-12-20',19975,'09:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'408',0,'IPB',99,'Y','','',0,''),(190431,0,0,6613,'2025-12-18',20023,'11:48:00','ROOM','ROOM0009','ROOM CHARGES','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190432,0,0,6613,'2025-12-18',20025,'11:53:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(190433,0,0,6613,'2025-12-18',20026,'11:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190434,0,0,6613,'2025-12-18',20027,'11:56:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190435,0,0,6613,'2025-12-18',20028,'11:56:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,3,0,'',0,'IPB',99,'Y','','',0,''),(190436,0,0,6613,'2025-12-18',20029,'11:57:00','WPRC','WPRC0086','OXYGEN CHARGE','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(190437,0,0,6613,'2025-12-20',20030,'11:58:00','WPRC','WPRC0114','DRESSING CHARGE - MAJOR','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(190438,0,0,6613,'2025-12-18',20057,'13:05:00','PKG','PKG0009','SURGEON CONSULTATION CHARGE','H',60000,1.00,60000.00,'P',0.00,0.00,60000.00,0.00,0.00,60000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(190439,0,0,6613,'2025-12-20',20060,'13:13:00','SURG','SURG0015','OT USAGE CHARGE','H',15000,1.00,15000.00,'P',0.00,0.00,15000.00,0.00,0.00,15000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(191024,0,0,6397,'2025-12-16',18916,'15:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(191025,0,0,6397,'2025-12-16',18917,'15:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(191026,0,0,6397,'2025-12-16',18918,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(191027,0,0,6397,'2025-12-16',18919,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(191028,0,0,6397,'2025-12-16',18920,'15:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(191029,0,0,6397,'2025-12-16',18922,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'207',0,'IPB',99,'Y','','',0,''),(191030,0,0,6397,'2025-12-17',19329,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(191031,0,0,6397,'2025-12-17',19330,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(191032,0,0,6397,'2025-12-17',19331,'15:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(191033,0,0,6397,'2025-12-17',19332,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'207',0,'IPB',99,'Y','','',0,''),(191034,0,0,6397,'2025-12-17',19333,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'207',0,'IPB',99,'Y','','',0,''),(191035,0,0,6397,'2025-12-18',19502,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'207',0,'IPB',99,'Y','','',0,''),(191036,0,0,6397,'2025-12-18',19503,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'207',0,'IPB',99,'Y','','',0,''),(191037,0,0,6397,'2025-12-18',19507,'17:42:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(191038,0,0,6397,'2025-12-18',19508,'17:43:00','AECO','AECO0008','RMO CHARGES DAY','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(191039,0,0,6397,'2025-12-18',19509,'17:43:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(191040,0,0,6397,'2025-12-16',19600,'19:00:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(191041,0,0,6397,'2025-12-16',19601,'19:00:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(191042,0,0,6397,'2025-12-16',19602,'19:01:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,42,0,'',0,'IPB',99,'Y','','',0,''),(191043,0,0,6397,'2025-12-17',19603,'19:01:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(191044,0,0,6397,'2025-12-18',19604,'19:01:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(191045,0,0,6397,'2025-12-19',19924,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(191046,0,0,6397,'2025-12-19',19925,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(191047,0,0,6397,'2025-12-19',19926,'15:30:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(191048,0,0,6397,'2025-12-19',19927,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'405',0,'IPB',99,'Y','','',0,''),(191049,0,0,6397,'2025-12-19',19928,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'405',0,'IPB',99,'Y','','',0,''),(191050,0,0,6397,'2025-12-19',19957,'20:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(191051,0,0,6397,'2025-12-20',20003,'10:44:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(191052,0,0,6397,'2025-12-20',20091,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'405',0,'IPB',99,'Y','','',0,''),(195068,0,0,6882,'2025-12-20',20073,'14:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(195069,0,0,6882,'2025-12-20',20074,'14:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(195070,0,0,6882,'2025-12-20',20075,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(195071,0,0,6882,'2025-12-20',20076,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(195072,0,0,6882,'2025-12-20',20077,'14:30:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(195073,0,0,6882,'2025-12-20',20079,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,8,0,'412',0,'IPB',99,'Y','','',0,''),(195074,0,0,6882,'2025-12-20',20198,'12:04:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(195075,0,0,6882,'2025-12-21',20199,'12:04:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(195076,0,0,6882,'2025-12-20',20200,'12:04:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(195077,0,0,6882,'2025-12-21',20239,'14:30:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(195078,0,0,6882,'2025-12-21',20240,'14:30:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(195079,0,0,6882,'2025-12-21',20241,'14:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(195080,0,0,6882,'2025-12-21',20242,'14:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(195081,0,0,6882,'2025-12-21',20243,'14:30:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(195082,0,0,6882,'2025-12-22',20459,'12:44:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(195083,0,0,6882,'2025-12-22',20460,'12:45:00','ROOM','ROOM0005','CONSULTANT VISIT 1 - SPECIAL','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196475,0,0,6892,'2025-12-20',20101,'20:54:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(196476,0,0,6892,'2025-12-20',20102,'20:54:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(196477,0,0,6892,'2025-12-20',20103,'20:54:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(196478,0,0,6892,'2025-12-20',20104,'20:54:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(196479,0,0,6892,'2025-12-20',20105,'20:54:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(196480,0,0,6892,'2025-12-20',20106,'20:54:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,6,0,'408',0,'IPB',99,'Y','','',0,''),(196481,0,0,6892,'2025-12-21',20450,'20:54:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(196482,0,0,6892,'2025-12-21',20451,'20:54:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(196483,0,0,6892,'2025-12-21',20452,'20:54:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(196484,0,0,6892,'2025-12-21',20453,'20:54:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'408',0,'IPB',99,'Y','','',0,''),(196485,0,0,6892,'2025-12-21',20454,'20:54:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'408',0,'IPB',99,'Y','','',0,''),(196486,0,0,6892,'2025-12-22',20457,'12:40:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'',0,'IPB',99,'Y','','',0,''),(196487,0,0,6165,'2025-12-14',18319,'12:50:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(196488,0,0,6165,'2025-12-14',18320,'12:50:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(196489,0,0,6165,'2025-12-14',18321,'12:50:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(196490,0,0,6165,'2025-12-14',18322,'12:50:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(196491,0,0,6165,'2025-12-14',18323,'12:50:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(196492,0,0,6165,'2025-12-14',18325,'12:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,78,0,'404',0,'IPB',99,'Y','','',0,''),(196493,0,0,6165,'2025-12-15',18734,'12:50:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(196494,0,0,6165,'2025-12-15',18735,'12:50:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(196495,0,0,6165,'2025-12-15',18736,'12:50:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(196496,0,0,6165,'2025-12-15',18737,'12:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'407',0,'IPB',99,'Y','','',0,''),(196497,0,0,6165,'2025-12-16',18963,'12:50:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(196498,0,0,6165,'2025-12-16',18964,'12:50:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(196499,0,0,6165,'2025-12-16',18965,'12:50:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(196500,0,0,6165,'2025-12-16',18966,'12:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'407',0,'IPB',99,'Y','','',0,''),(196501,0,0,6165,'2025-12-16',18967,'12:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'407',0,'IPB',99,'Y','','',0,''),(196502,0,0,6165,'2025-12-15',19049,'20:08:00','USG','USG0102','GRAFT WITH USG COLOR DOPPLER ABDOMEN','H',4300,1.00,4300.00,'A',0.00,0.00,4300.00,0.00,0.00,4300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196503,0,0,6165,'2025-12-14',19050,'20:11:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(196504,0,0,6165,'2025-12-15',19051,'20:11:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(196505,0,0,6165,'2025-12-15',19052,'20:12:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'',0,'IPB',99,'Y','','',0,''),(196506,0,0,6165,'2025-12-15',19053,'20:12:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,6,0,'',0,'IPB',99,'Y','','',0,''),(196507,0,0,6165,'2025-12-16',19054,'20:12:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,3,0,'',0,'IPB',99,'Y','','',0,''),(196508,0,0,6165,'2025-12-16',19062,'21:02:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(196509,0,0,6165,'2025-12-14',19070,'21:06:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196510,0,0,6165,'2025-12-14',19071,'21:06:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,9.00,900.00,'A',0.00,0.00,900.00,0.00,0.00,900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196511,0,0,6165,'2025-12-15',19072,'21:06:00','WPRC','WPRC0099','X-RAY LT WRIST AP LAT','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196512,0,0,6165,'2025-12-15',19073,'21:09:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,78,0,'',0,'IPB',99,'Y','','',0,''),(196513,0,0,6165,'2025-12-15',19074,'21:09:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196514,0,0,6165,'2025-12-15',19075,'21:09:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,12.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196515,0,0,6165,'2025-12-16',19076,'21:10:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196516,0,0,6165,'2025-12-16',19077,'21:10:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196517,0,0,6165,'2025-12-14',19078,'21:10:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196518,0,0,6165,'2025-12-15',19079,'21:10:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196519,0,0,6165,'2025-12-14',19080,'21:10:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196520,0,0,6165,'2025-12-15',19081,'21:10:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196521,0,0,6165,'2025-12-16',19082,'21:10:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196522,0,0,6165,'2025-12-15',19083,'21:11:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,6,0,'',0,'IPB',99,'Y','','',0,''),(196523,0,0,6165,'2025-12-16',19084,'21:11:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,78,0,'',0,'IPB',99,'Y','','',0,''),(196524,0,0,6165,'2025-12-17',19324,'12:50:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(196525,0,0,6165,'2025-12-17',19325,'12:50:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(196526,0,0,6165,'2025-12-17',19326,'12:50:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(196527,0,0,6165,'2025-12-17',19327,'12:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'407',0,'IPB',99,'Y','','',0,''),(196528,0,0,6165,'2025-12-18',19523,'12:50:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(196529,0,0,6165,'2025-12-18',19524,'12:50:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(196530,0,0,6165,'2025-12-18',19525,'12:50:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(196531,0,0,6165,'2025-12-18',19526,'12:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,78,0,'407',0,'IPB',99,'Y','','',0,''),(196532,0,0,6165,'2025-12-16',19630,'19:30:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196533,0,0,6165,'2025-12-17',19631,'19:31:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196534,0,0,6165,'2025-12-18',19632,'19:31:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196535,0,0,6165,'2025-12-15',19633,'19:32:00','USG','USG0092','USG ABDOMEN CHARGE','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196536,0,0,6165,'2025-12-16',19634,'19:35:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,62,0,'',0,'IPB',99,'Y','','',0,''),(196537,0,0,6165,'2025-12-17',19635,'19:37:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,38,0,'',0,'IPB',99,'Y','','',0,''),(196538,0,0,6165,'2025-12-17',19636,'19:37:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(196539,0,0,6165,'2025-12-17',19637,'19:38:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(196540,0,0,6165,'2025-12-18',19638,'19:38:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(196541,0,0,6165,'2025-12-18',19639,'19:38:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(196542,0,0,6165,'2025-12-19',19784,'12:50:00','CARE','CARE0004','RMO CHARGES - ICU (407)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(196543,0,0,6165,'2025-12-19',19785,'12:50:00','CARE','CARE0003','NURSING CHARGES - ICU (407)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'407',0,'IPB',99,'Y','','',0,''),(196544,0,0,6165,'2025-12-19',19944,'20:46:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196545,0,0,6165,'2025-12-17',19945,'20:47:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196546,0,0,6165,'2025-12-18',19946,'20:47:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196547,0,0,6165,'2025-12-19',19947,'20:48:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(196548,0,0,6165,'2025-12-19',19948,'20:48:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(196549,0,0,6165,'2025-12-20',20118,'12:50:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(196550,0,0,6165,'2025-12-20',20119,'12:50:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(196551,0,0,6165,'2025-12-20',20120,'12:50:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(196552,0,0,6165,'2025-12-20',20123,'10:03:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196553,0,0,6165,'2025-12-21',20124,'10:03:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196554,0,0,6165,'2025-12-20',20125,'10:04:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196555,0,0,6165,'2025-12-21',20126,'10:04:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196556,0,0,6165,'2025-12-19',20127,'10:04:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196557,0,0,6165,'2025-12-19',20128,'10:04:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,78,0,'',0,'IPB',99,'Y','','',0,''),(196558,0,0,6165,'2025-12-20',20129,'10:05:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,62,0,'',0,'IPB',99,'Y','','',0,''),(196559,0,0,6165,'2025-12-20',20130,'10:06:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(196560,0,0,6165,'2025-12-21',20229,'12:50:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(196561,0,0,6165,'2025-12-21',20230,'12:50:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(196562,0,0,6165,'2025-12-21',20233,'12:50:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(196563,0,0,6165,'2025-12-22',20478,'12:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,78,0,'210',0,'IPB',99,'Y','','',0,''),(196564,0,0,6165,'2025-12-19',20482,'13:56:00','ROOM','ROOM0009','ROOM CHARGES','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196565,0,0,6165,'2025-12-19',20484,'12:50:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(196566,0,0,6165,'2025-12-19',20485,'12:50:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(196567,0,0,6165,'2025-12-22',20486,'14:02:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196568,0,0,6165,'2025-12-21',20487,'14:05:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196569,0,0,6165,'2025-12-22',20488,'14:06:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196570,0,0,6165,'2025-12-21',20491,'14:07:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196571,0,0,6165,'2025-12-21',20493,'14:15:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(196572,0,0,6165,'2025-12-21',20494,'14:16:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(196573,0,0,6165,'2025-12-22',20495,'14:16:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'',0,'IPB',99,'Y','','',0,''),(196771,0,0,6706,'2025-12-18',19641,'19:50:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(196772,0,0,6706,'2025-12-18',19642,'19:50:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(196773,0,0,6706,'2025-12-18',19647,'19:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,5,0,'411',0,'IPB',99,'Y','','',0,''),(196774,0,0,6706,'2025-12-18',19903,'19:02:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196775,0,0,6706,'2025-12-19',19904,'19:03:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196776,0,0,6706,'2025-12-18',19905,'19:03:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,5,0,'',0,'IPB',99,'Y','','',0,''),(196777,0,0,6706,'2025-12-19',19907,'19:03:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196778,0,0,6706,'2025-12-18',19908,'19:04:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196779,0,0,6706,'2025-12-19',19909,'19:04:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2500,1.00,2500.00,'P',0.00,0.00,2500.00,0.00,0.00,2500.00,41,0,'',0,'IPB',99,'Y','','',0,''),(196780,0,0,6706,'2025-12-18',19910,'19:05:00','ROOM','ROOM0009','ROOM CHARGES','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196781,0,0,6706,'2025-12-18',19911,'19:06:00','AECO','AECO0008','RMO CHARGES DAY','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196782,0,0,6706,'2025-12-18',19912,'19:06:00','CARE','CARE0001','NURSING CHARGES','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196783,0,0,6706,'2025-12-19',19939,'19:50:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(196784,0,0,6706,'2025-12-19',19940,'19:50:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(196785,0,0,6706,'2025-12-19',19941,'19:50:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'207',0,'IPB',99,'Y','','',0,''),(196786,0,0,6706,'2025-12-19',19942,'19:50:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'207',0,'IPB',99,'Y','','',0,''),(196787,0,0,6706,'2025-12-19',19943,'19:50:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(196788,0,0,6706,'2025-12-20',20038,'12:07:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196789,0,0,6706,'2025-12-20',20039,'12:08:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(196790,0,0,6706,'2025-12-20',20040,'12:09:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'',0,'IPB',99,'Y','','',0,''),(196791,0,0,6706,'2025-12-19',20046,'12:22:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,6.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(199833,0,0,6961,'2025-12-21',20387,'11:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(199834,0,0,6961,'2025-12-21',20388,'11:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(199835,0,0,6961,'2025-12-21',20389,'11:00:00','ROOM','ROOM0009','ROOM CHARGES (305)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(199836,0,0,6961,'2025-12-21',20391,'11:00:00','AECO','AECO0008','RMO CHARGES DAY (305)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(199837,0,0,6961,'2025-12-21',20393,'11:00:00','CARE','CARE0001','NURSING CHARGES (305)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'305',0,'IPB',99,'Y','','',0,''),(199838,0,0,6961,'2025-12-22',20396,'11:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (305)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'305',0,'IPB',99,'Y','','',0,''),(199839,0,0,6961,'2025-12-21',20649,'18:54:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(199853,0,0,6922,'2025-12-22',0,'10:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',1,'','','',0,''),(199854,0,0,6922,'2025-12-22',0,'10:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',99,'','','',0,''),(199855,0,0,6922,'2025-12-22',0,'10:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'411',0,'',99,'','','',0,''),(199856,0,0,6922,'2025-12-22',0,'10:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'411',0,'',99,'','','',0,''),(199857,0,0,6922,'2025-12-22',0,'18:20:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'',99,'','','',0,''),(199858,0,0,6922,'2025-12-22',0,'18:22:00','CARE','CARE0007','DAY CARE CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'',99,'','','',0,''),(199859,0,0,6922,'2025-12-22',20593,'18:23:00','WPRC','WPRC0114','DRESSING CHARGE - MAJOR','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,3,0,'',0,'',99,'','','',0,''),(199860,0,0,6978,'2025-12-22',20438,'12:19:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(199861,0,0,6978,'2025-12-22',20439,'12:19:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(199862,0,0,6978,'2025-12-22',20443,'12:19:00','DRC','DRC0018','CONSULTANT VISIT 1  (311)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'311',0,'IPB',99,'Y','','',0,''),(199863,0,0,6978,'2025-12-22',20669,'19:52:00','CARE','CARE0007','DAY CARE CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(199864,0,0,6978,'2025-12-22',20670,'19:52:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(199865,0,0,6978,'2025-12-22',20671,'19:53:00','WPRC','WPRC0114','DRESSING CHARGE - MAJOR','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,3,0,'',0,'IPB',99,'Y','','',0,''),(199866,0,0,6346,'2025-12-16',18775,'10:40:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(199867,0,0,6346,'2025-12-16',18776,'10:40:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(199868,0,0,6346,'2025-12-16',18988,'10:40:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(199869,0,0,6346,'2025-12-16',18989,'10:40:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(199870,0,0,6346,'2025-12-16',18990,'10:40:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(199871,0,0,6346,'2025-12-16',18991,'10:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(199872,0,0,6346,'2025-12-16',18992,'10:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(199873,0,0,6346,'2025-12-17',19237,'10:40:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(199874,0,0,6346,'2025-12-17',19238,'10:40:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(199875,0,0,6346,'2025-12-17',19239,'10:40:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(199876,0,0,6346,'2025-12-17',19240,'10:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(199877,0,0,6346,'2025-12-17',19241,'10:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(199878,0,0,6346,'2025-12-18',19528,'10:40:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(199879,0,0,6346,'2025-12-18',19529,'10:40:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(199880,0,0,6346,'2025-12-18',19530,'10:40:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(199881,0,0,6346,'2025-12-18',19531,'10:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(199882,0,0,6346,'2025-12-18',19532,'10:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(199883,0,0,6346,'2025-12-19',19788,'10:40:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(199884,0,0,6346,'2025-12-19',19789,'10:40:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(199885,0,0,6346,'2025-12-19',19790,'10:40:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(199886,0,0,6346,'2025-12-19',19791,'10:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(199887,0,0,6346,'2025-12-19',19792,'10:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(199888,0,0,6346,'2025-12-16',19991,'10:34:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(199889,0,0,6346,'2025-12-16',19992,'10:35:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(199890,0,0,6346,'2025-12-17',19993,'10:36:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,3,0,'',0,'IPB',99,'Y','','',0,''),(199891,0,0,6346,'2025-12-16',19994,'10:38:00','DRC','DRC0019','CONSULTANT VISIT 2','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(199892,0,0,6346,'2025-12-19',19995,'10:40:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(199893,0,0,6346,'2025-12-20',19996,'10:40:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(199894,0,0,6346,'2025-12-20',19997,'10:40:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(199895,0,0,6346,'2025-12-20',19998,'10:40:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'410',0,'IPB',99,'Y','','',0,''),(199896,0,0,6346,'2025-12-20',19999,'10:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(199897,0,0,6346,'2025-12-20',20000,'10:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','','',0,''),(199898,0,0,6346,'2025-12-16',20001,'10:41:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,62,0,'',0,'IPB',99,'Y','','',0,''),(199899,0,0,6346,'2025-12-21',20190,'10:40:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,0,0,'410',0,'IPB',99,'Y','N','',0,''),(199900,0,0,6346,'2025-12-21',20191,'10:40:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,0,0,'410',0,'IPB',99,'Y','N','',0,''),(199901,0,0,6346,'2025-12-21',20192,'10:40:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'410',0,'IPB',99,'Y','N','',0,''),(199902,0,0,6346,'2025-12-21',20193,'10:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','N','',0,''),(199903,0,0,6346,'2025-12-21',20194,'10:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','N','',0,''),(199904,0,0,6346,'2025-12-22',20602,'10:40:00','ROOM','ROOM0009','ROOM CHARGES (410)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,0,0,'410',0,'IPB',99,'Y','N','',0,''),(199905,0,0,6346,'2025-12-22',20603,'10:40:00','AECO','AECO0008','RMO CHARGES DAY (410)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,0,0,'410',0,'IPB',99,'Y','N','',0,''),(199906,0,0,6346,'2025-12-22',20604,'10:40:00','CARE','CARE0001','NURSING CHARGES (410)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'410',0,'IPB',99,'Y','N','',0,''),(199907,0,0,6346,'2025-12-22',20605,'10:40:00','DRC','DRC0018','CONSULTANT VISIT 1  (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','N','',0,''),(199908,0,0,6346,'2025-12-22',20606,'10:40:00','DRC','DRC0019','CONSULTANT VISIT 2 (410)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'410',0,'IPB',99,'Y','N','',0,''),(202408,0,0,6843,'2025-12-19',19958,'21:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(202409,0,0,6843,'2025-12-19',19959,'21:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(202410,0,0,6843,'2025-12-19',19960,'21:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(202411,0,0,6843,'2025-12-19',19961,'21:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(202412,0,0,6843,'2025-12-19',19962,'21:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(202413,0,0,6843,'2025-12-19',19987,'10:30:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(202414,0,0,6843,'2025-12-19',19988,'10:30:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(202415,0,0,6843,'2025-12-19',19989,'10:30:00','WPRC','WPRC0079','FOLEYS CATHETER','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,42,0,'',0,'IPB',99,'Y','','',0,''),(202416,0,0,6843,'2025-12-20',20151,'21:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(202417,0,0,6843,'2025-12-20',20152,'21:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(202418,0,0,6843,'2025-12-20',20153,'21:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(202419,0,0,6843,'2025-12-20',20154,'21:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (404)','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'404',0,'IPB',99,'Y','','',0,''),(202420,0,0,6843,'2025-12-20',20155,'21:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'404',0,'IPB',99,'Y','','',0,''),(202421,0,0,6843,'2025-12-20',20212,'12:18:00','USG','USG0092','USG ABDOMEN CHARGE','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(202422,0,0,6843,'2025-12-20',20213,'12:18:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(202423,0,0,6843,'2025-12-20',20214,'12:19:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(202424,0,0,6843,'2025-12-20',20215,'12:20:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,303,0,'',0,'IPB',99,'Y','','',0,''),(202425,0,0,6843,'2025-12-21',20572,'21:00:00','ROOM','ROOM0009','ROOM CHARGES (404)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(202426,0,0,6843,'2025-12-21',20573,'21:00:00','AECO','AECO0008','RMO CHARGES DAY (404)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(202427,0,0,6843,'2025-12-21',20574,'21:00:00','CARE','CARE0001','NURSING CHARGES (404)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'404',0,'IPB',99,'Y','','',0,''),(202428,0,0,6843,'2025-12-21',20576,'21:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (404)','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'404',0,'IPB',99,'Y','','',0,''),(202429,0,0,6843,'2025-12-22',20677,'20:58:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,42,0,'',0,'IPB',99,'Y','','',0,''),(202430,0,0,6843,'2025-12-21',20678,'20:59:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(202431,0,0,6843,'2025-12-22',20680,'20:59:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2500,1.00,2500.00,'P',0.00,0.00,2500.00,0.00,0.00,2500.00,8,0,'',0,'IPB',99,'Y','','',0,''),(202849,0,0,7066,'2025-12-22',20686,'21:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,0,0,'',0,'ER',1,'Y','N','',0,''),(202850,0,0,7066,'2025-12-22',20687,'21:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,0,0,'',0,'ER',99,'Y','N','',0,''),(202851,0,0,7066,'2025-12-22',20688,'21:30:00','ROOM','ROOM0009','ROOM CHARGES (409)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,0,0,'409',0,'IPB',99,'Y','N','',0,''),(202852,0,0,7066,'2025-12-22',20689,'21:30:00','AECO','AECO0008','RMO CHARGES DAY (409)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,0,0,'409',0,'IPB',99,'Y','N','',0,''),(202853,0,0,7066,'2025-12-22',20690,'21:30:00','CARE','CARE0001','NURSING CHARGES (409)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'409',0,'IPB',99,'Y','N','',0,''),(202854,0,0,7066,'2025-12-22',20691,'21:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'409',0,'IPB',99,'Y','N','',0,''),(202855,0,0,7066,'2025-12-22',20692,'21:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (409)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'409',0,'IPB',99,'Y','N','',0,''),(203837,0,0,6884,'2025-12-20',20082,'12:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(203838,0,0,6884,'2025-12-20',20083,'12:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(203839,0,0,6884,'2025-12-20',20084,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(203840,0,0,6884,'2025-12-20',20085,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(203841,0,0,6884,'2025-12-20',20086,'12:30:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(203842,0,0,6884,'2025-12-20',20088,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'401',0,'IPB',99,'Y','','',0,''),(203843,0,0,6884,'2025-12-20',20202,'12:05:00','USG','USG0092','USG ABDOMEN CHARGE','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(203844,0,0,6884,'2025-12-20',20203,'12:06:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(203845,0,0,6884,'2025-12-20',20204,'12:07:00','DRC','DRC0021','EMERGENCY CONSULTANT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(203846,0,0,6884,'2025-12-21',20244,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(203847,0,0,6884,'2025-12-21',20245,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(203848,0,0,6884,'2025-12-21',20246,'12:30:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(203849,0,0,6884,'2025-12-21',20247,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(203850,0,0,6884,'2025-12-21',20248,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(203851,0,0,6884,'2025-12-22',20617,'12:30:00','ROOM','ROOM0009','ROOM CHARGES (401)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(203852,0,0,6884,'2025-12-22',20618,'12:30:00','AECO','AECO0008','RMO CHARGES DAY (401)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(203853,0,0,6884,'2025-12-22',20619,'12:30:00','CARE','CARE0001','NURSING CHARGES (401)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'401',0,'IPB',99,'Y','','',0,''),(203854,0,0,6884,'2025-12-22',20620,'12:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(203855,0,0,6884,'2025-12-22',20621,'12:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (401)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'401',0,'IPB',99,'Y','','',0,''),(203856,0,0,6884,'2025-12-22',20711,'09:42:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,174,0,'',0,'IPB',99,'Y','','',0,''),(203984,0,0,2879,'2025-11-10',8566,'15:30:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(203985,0,0,2879,'2025-11-10',8567,'15:30:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(203986,0,0,2879,'2025-11-10',8568,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(203987,0,0,2879,'2025-11-10',8569,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(203988,0,0,2879,'2025-11-10',8570,'15:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(203989,0,0,2879,'2025-11-10',8572,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,36,0,'207',0,'IPB',99,'Y','','',0,''),(203990,0,0,2879,'2025-11-10',8679,'11:14:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(203991,0,0,2879,'2025-11-10',8680,'11:14:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(203992,0,0,2879,'2025-11-10',8681,'11:14:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(203993,0,0,2879,'2025-11-10',8682,'11:15:00','WPRC','WPRC0088','ENDOTRACHEAL INTUBATION','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,36,0,'',0,'IPB',99,'Y','','',0,''),(203994,0,0,2879,'2025-11-11',8683,'11:15:00','WPRC','WPRC0092','CVP (CENTRAL LINE INSERTION) CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,39,0,'',0,'IPB',99,'Y','','',0,''),(203995,0,0,2879,'2025-11-11',8684,'11:15:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(203996,0,0,2879,'2025-11-10',8687,'11:16:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(203997,0,0,2879,'2025-11-11',8688,'11:16:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(203998,0,0,2879,'2025-11-10',8689,'11:16:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(203999,0,0,2879,'2025-11-11',8690,'11:16:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204000,0,0,2879,'2025-11-10',8691,'11:16:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204001,0,0,2879,'2025-11-11',8692,'11:17:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204002,0,0,2879,'2025-11-10',8694,'11:17:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2500,1.00,2500.00,'P',0.00,0.00,2500.00,0.00,0.00,2500.00,37,0,'',0,'IPB',99,'Y','','',0,''),(204003,0,0,2879,'2025-11-11',8786,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(204004,0,0,2879,'2025-11-11',8787,'15:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(204005,0,0,2879,'2025-11-11',8788,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(204006,0,0,2879,'2025-11-11',8789,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(204007,0,0,2879,'2025-11-11',8790,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(204008,0,0,2879,'2025-11-12',8901,'10:26:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204009,0,0,2879,'2025-11-12',8945,'11:45:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204010,0,0,2879,'2025-11-11',8946,'11:46:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204011,0,0,2879,'2025-11-11',8947,'11:50:00','USG','USG0098','USG SCROTUM CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204012,0,0,2879,'2025-11-11',8948,'11:51:00','WPRC','WPRC0109','CSF CHARGE','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204013,0,0,2879,'2025-11-12',8949,'11:57:00','WPRC','WPRC0110','TRACHEOSTOMY CHARGE','H',10000,1.00,10000.00,'A',0.00,0.00,10000.00,0.00,0.00,10000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(204014,0,0,2879,'2025-11-12',8951,'11:59:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204015,0,0,2879,'2025-11-12',8952,'11:59:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204016,0,0,2879,'2025-11-12',8953,'11:59:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204017,0,0,2879,'2025-11-12',9101,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(204018,0,0,2879,'2025-11-12',9102,'15:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(204019,0,0,2879,'2025-11-12',9103,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(204020,0,0,2879,'2025-11-12',9104,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(204021,0,0,2879,'2025-11-12',9105,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(204022,0,0,2879,'2025-11-13',9189,'10:42:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204023,0,0,2879,'2025-11-13',9190,'10:43:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204024,0,0,2879,'2025-11-13',9191,'10:43:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204025,0,0,2879,'2025-11-13',9192,'10:43:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204026,0,0,2879,'2025-11-12',9194,'10:44:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,37,0,'',0,'IPB',99,'Y','','',0,''),(204027,0,0,2879,'2025-11-13',9309,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(204028,0,0,2879,'2025-11-13',9310,'15:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(204029,0,0,2879,'2025-11-13',9311,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(204030,0,0,2879,'2025-11-13',9312,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(204031,0,0,2879,'2025-11-13',9313,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(204032,0,0,2879,'2025-11-13',9431,'11:27:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2500,1.00,2500.00,'P',0.00,0.00,2500.00,0.00,0.00,2500.00,174,0,'',0,'IPB',99,'Y','','',0,''),(204033,0,0,2879,'2025-11-14',9432,'11:30:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204034,0,0,2879,'2025-11-14',9433,'11:30:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204035,0,0,2879,'2025-11-14',9555,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (207)','H',800,0.50,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(204036,0,0,2879,'2025-11-14',9556,'15:30:00','CARE','CARE0001','NURSING CHARGES (207)','H',600,0.50,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(204037,0,0,2879,'2025-11-14',9557,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(204038,0,0,2879,'2025-11-14',9558,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(204039,0,0,2879,'2025-11-14',9559,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (207)','H',5500,0.50,2750.00,'A',0.00,0.00,2750.00,0.00,0.00,2750.00,9999,0,'207',0,'IPB',99,'Y','','',0,''),(204040,0,0,2879,'2025-11-14',9620,'20:43:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204041,0,0,2879,'2025-11-14',9621,'20:43:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204042,0,0,2879,'2025-11-15',9764,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204043,0,0,2879,'2025-11-15',9765,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204044,0,0,2879,'2025-11-15',9766,'15:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204045,0,0,2879,'2025-11-15',9767,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204046,0,0,2879,'2025-11-15',9768,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204047,0,0,2879,'2025-11-15',9769,'16:36:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204048,0,0,2879,'2025-11-15',9770,'16:37:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204049,0,0,2879,'2025-11-15',9771,'16:37:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204050,0,0,2879,'2025-11-15',9772,'16:37:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204051,0,0,2879,'2025-11-16',9864,'13:58:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204052,0,0,2879,'2025-11-16',9865,'13:58:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204053,0,0,2879,'2025-11-16',9866,'13:58:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204054,0,0,2879,'2025-11-16',9868,'13:59:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204055,0,0,2879,'2025-11-16',9869,'13:59:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204056,0,0,2879,'2025-11-16',9870,'14:00:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'A',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(204057,0,0,2879,'2025-11-16',9871,'14:00:00','XRY','XRY0045','X RAY CHARGES','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204058,0,0,2879,'2025-11-15',9872,'14:02:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,187,0,'',0,'IPB',99,'Y','','',0,''),(204059,0,0,2879,'2025-11-16',9900,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(204060,0,0,2879,'2025-11-16',9901,'15:30:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(204061,0,0,2879,'2025-11-16',9902,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(204062,0,0,2879,'2025-11-16',9903,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(204063,0,0,2879,'2025-11-16',9904,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(204064,0,0,2879,'2025-11-17',9959,'10:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204065,0,0,2879,'2025-11-16',9960,'10:57:00','USG','USG0092','USG ABDOMEN CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204066,0,0,2879,'2025-11-17',9961,'10:58:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204067,0,0,2879,'2025-11-17',9962,'10:58:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204068,0,0,2879,'2025-11-17',9965,'10:59:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204069,0,0,2879,'2025-11-17',10070,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(204070,0,0,2879,'2025-11-17',10071,'15:30:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(204071,0,0,2879,'2025-11-17',10072,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'210',0,'IPB',99,'Y','','',0,''),(204072,0,0,2879,'2025-11-17',10073,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'210',0,'IPB',99,'Y','','',0,''),(204073,0,0,2879,'2025-11-17',10074,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(204074,0,0,2879,'2025-11-16',10075,'16:01:00','WPRC','WPRC0111','TRACHEOSTOMY CHANGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(204075,0,0,2879,'2025-11-18',10185,'10:28:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204076,0,0,2879,'2025-11-15',10188,'10:32:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204077,0,0,2879,'2025-11-18',10189,'10:33:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204078,0,0,2879,'2025-11-18',10190,'10:33:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204079,0,0,2879,'2025-11-18',10191,'10:33:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204080,0,0,2879,'2025-11-18',10341,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(204081,0,0,2879,'2025-11-18',10342,'15:30:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(204082,0,0,2879,'2025-11-18',10343,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'210',0,'IPB',99,'Y','','',0,''),(204083,0,0,2879,'2025-11-18',10344,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'210',0,'IPB',99,'Y','','',0,''),(204084,0,0,2879,'2025-11-18',10345,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(204085,0,0,2879,'2025-11-18',10346,'10:09:00','WPRC','WPRC0100','LUMBAR PUNCTURE','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,39,0,'',0,'IPB',99,'Y','','',0,''),(204086,0,0,2879,'2025-11-19',10347,'10:09:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204087,0,0,2879,'2025-11-19',10349,'10:10:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204088,0,0,2879,'2025-11-19',10350,'10:11:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204089,0,0,2879,'2025-11-19',10573,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (210)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(204090,0,0,2879,'2025-11-19',10574,'15:30:00','CARE','CARE0001','NURSING CHARGES (210)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(204091,0,0,2879,'2025-11-19',10575,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(204092,0,0,2879,'2025-11-19',10576,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (210)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(204093,0,0,2879,'2025-11-19',10577,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (210)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'210',0,'IPB',99,'Y','','',0,''),(204094,0,0,2879,'2025-11-20',10834,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (210)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'210',0,'IPB',99,'Y','','',0,''),(204095,0,0,2879,'2025-11-20',10870,'17:15:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204096,0,0,2879,'2025-11-20',10871,'17:15:00','WPRC','WPRC0111','TRACHEOSTOMY CHANGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(204097,0,0,2879,'2025-11-20',10872,'17:16:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204098,0,0,2879,'2025-11-20',10873,'17:16:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204099,0,0,2879,'2025-11-19',10876,'17:17:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204100,0,0,2879,'2025-11-18',10882,'17:24:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,37,0,'',0,'IPB',99,'Y','','',0,''),(204101,0,0,2879,'2025-11-18',10883,'17:24:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,37,0,'',0,'IPB',99,'Y','','',0,''),(204102,0,0,2879,'2025-11-19',10884,'17:26:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,187,0,'',0,'IPB',99,'Y','','',0,''),(204103,0,0,2879,'2025-11-20',10889,'17:34:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204104,0,0,2879,'2025-11-20',10890,'17:34:00','AECO','AECO0008','RMO CHARGES DAY','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204105,0,0,2879,'2025-11-20',10891,'17:35:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204106,0,0,2879,'2025-11-20',10892,'17:35:00','DRC','DRC0019','CONSULTANT VISIT 2','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(204107,0,0,2879,'2025-11-21',11138,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204108,0,0,2879,'2025-11-21',11139,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204109,0,0,2879,'2025-11-21',11140,'15:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204110,0,0,2879,'2025-11-21',11141,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204111,0,0,2879,'2025-11-21',11142,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204112,0,0,2879,'2025-11-21',11143,'15:53:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204113,0,0,2879,'2025-11-21',11144,'15:53:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204114,0,0,2879,'2025-11-20',11145,'15:54:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,37,0,'',0,'IPB',99,'Y','','',0,''),(204115,0,0,2879,'2025-11-20',11146,'15:56:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204116,0,0,2879,'2025-11-21',11147,'15:57:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204117,0,0,2879,'2025-11-20',11148,'15:59:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,187,0,'',0,'IPB',99,'Y','','',0,''),(204118,0,0,2879,'2025-11-22',11355,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204119,0,0,2879,'2025-11-22',11356,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204120,0,0,2879,'2025-11-22',11357,'15:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204121,0,0,2879,'2025-11-22',11358,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204122,0,0,2879,'2025-11-22',11359,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204123,0,0,2879,'2025-11-22',11360,'16:13:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204124,0,0,2879,'2025-11-21',11361,'16:13:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204125,0,0,2879,'2025-11-22',11362,'16:13:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204126,0,0,2879,'2025-11-22',11363,'16:15:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204127,0,0,2879,'2025-11-21',11364,'16:15:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,187,0,'',0,'IPB',99,'Y','','',0,''),(204128,0,0,2879,'2025-11-23',11508,'12:30:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204129,0,0,2879,'2025-11-23',11509,'12:31:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204130,0,0,2879,'2025-11-22',11510,'12:31:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204131,0,0,2879,'2025-11-23',11511,'12:32:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204132,0,0,2879,'2025-11-22',11512,'12:32:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,42,0,'',0,'IPB',99,'Y','','',0,''),(204133,0,0,2879,'2025-11-23',11547,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204134,0,0,2879,'2025-11-23',11548,'15:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204135,0,0,2879,'2025-11-23',11549,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204136,0,0,2879,'2025-11-23',11550,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204137,0,0,2879,'2025-11-23',11551,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204138,0,0,2879,'2025-11-24',11617,'09:48:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204139,0,0,2879,'2025-11-24',11618,'09:48:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204140,0,0,2879,'2025-11-24',11619,'09:48:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204141,0,0,2879,'2025-11-24',11823,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204142,0,0,2879,'2025-11-24',11824,'15:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204143,0,0,2879,'2025-11-24',11825,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204144,0,0,2879,'2025-11-24',11826,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204145,0,0,2879,'2025-11-24',11827,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204146,0,0,2879,'2025-11-25',12426,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204147,0,0,2879,'2025-11-25',12427,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204148,0,0,2879,'2025-11-25',12428,'15:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204149,0,0,2879,'2025-11-25',12429,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204150,0,0,2879,'2025-11-25',12430,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204151,0,0,2879,'2025-11-25',12431,'16:52:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204152,0,0,2879,'2025-11-24',12432,'16:53:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204153,0,0,2879,'2025-11-25',12433,'16:53:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204154,0,0,2879,'2025-11-25',12434,'16:54:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204155,0,0,2879,'2025-11-22',12435,'16:55:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,37,0,'',0,'IPB',99,'Y','','',0,''),(204156,0,0,2879,'2025-11-24',12436,'16:55:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,37,0,'',0,'IPB',99,'Y','','',0,''),(204157,0,0,2879,'2025-11-23',12437,'16:56:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,187,0,'',0,'IPB',99,'Y','','',0,''),(204158,0,0,2879,'2025-11-24',12438,'16:56:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,187,0,'',0,'IPB',99,'Y','','',0,''),(204159,0,0,2879,'2025-11-26',12696,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204160,0,0,2879,'2025-11-26',12697,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204161,0,0,2879,'2025-11-26',12698,'15:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204162,0,0,2879,'2025-11-26',12699,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204163,0,0,2879,'2025-11-26',12700,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204164,0,0,2879,'2025-11-26',12907,'10:39:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204165,0,0,2879,'2025-11-27',12908,'10:39:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204166,0,0,2879,'2025-11-25',12909,'10:39:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204167,0,0,2879,'2025-11-27',12910,'10:40:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204168,0,0,2879,'2025-11-26',12911,'10:40:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204169,0,0,2879,'2025-11-26',12912,'10:40:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204170,0,0,2879,'2025-11-27',12913,'10:40:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204171,0,0,2879,'2025-11-26',12914,'10:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204172,0,0,2879,'2025-11-27',12915,'10:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204173,0,0,2879,'2025-11-26',12916,'10:42:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(204174,0,0,2879,'2025-11-26',12917,'10:42:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204175,0,0,2879,'2025-11-27',12918,'10:42:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,187,0,'',0,'IPB',99,'Y','','',0,''),(204176,0,0,2879,'2025-11-27',13161,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204177,0,0,2879,'2025-11-27',13162,'15:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204178,0,0,2879,'2025-11-27',13163,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204179,0,0,2879,'2025-11-27',13164,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204180,0,0,2879,'2025-11-27',13165,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204181,0,0,2879,'2025-11-10',13199,'17:53:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204182,0,0,2879,'2025-11-11',13200,'17:53:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204183,0,0,2879,'2025-11-12',13201,'17:53:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204184,0,0,2879,'2025-11-13',13202,'17:53:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204185,0,0,2879,'2025-11-14',13203,'17:53:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204186,0,0,2879,'2025-11-16',13206,'17:55:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204187,0,0,2879,'2025-11-17',13207,'17:55:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204188,0,0,2879,'2025-11-18',13208,'17:55:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204189,0,0,2879,'2025-11-19',13209,'17:55:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204190,0,0,2879,'2025-11-27',13213,'18:06:00','WPRC','WPRC0100','LUMBAR PUNCTURE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,39,0,'',0,'IPB',99,'Y','','',0,''),(204191,0,0,2879,'2025-11-28',13429,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,0.50,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204192,0,0,2879,'2025-11-28',13430,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,0.50,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204193,0,0,2879,'2025-11-28',13431,'15:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,0.50,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204194,0,0,2879,'2025-11-28',13432,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204195,0,0,2879,'2025-11-28',13433,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204196,0,0,2879,'2025-11-28',13513,'16:26:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204197,0,0,2879,'2025-11-28',13514,'16:26:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204198,0,0,2879,'2025-11-28',13515,'16:27:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204199,0,0,2879,'2025-11-28',13516,'16:27:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,187,0,'',0,'IPB',99,'Y','','',0,''),(204200,0,0,2879,'2025-11-25',13517,'16:28:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,187,0,'',0,'IPB',99,'Y','','',0,''),(204201,0,0,2879,'2025-11-26',13518,'16:29:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,187,0,'',0,'IPB',99,'Y','','',0,''),(204202,0,0,2879,'2025-11-28',13519,'16:30:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204203,0,0,2879,'2025-11-29',13794,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (207)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'207',0,'IPB',99,'Y','','',0,''),(204204,0,0,2879,'2025-11-29',13795,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (207)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,8,0,'207',0,'IPB',99,'Y','','',0,''),(204205,0,0,2879,'2025-11-29',13827,'18:32:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204206,0,0,2879,'2025-11-29',13828,'18:32:00','AECO','AECO0008','RMO CHARGES DAY','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204207,0,0,2879,'2025-11-29',13829,'18:32:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204208,0,0,2879,'2025-11-30',13935,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,1.00,3200.00,'P',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204209,0,0,2879,'2025-11-30',13936,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,1.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204210,0,0,2879,'2025-11-30',13937,'15:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204211,0,0,2879,'2025-11-30',13938,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204212,0,0,2879,'2025-11-30',13939,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204213,0,0,2879,'2025-11-28',13980,'19:51:00','WPRC','WPRC0119','INTRATHECAL CATHETER CHARGE','H',4000,1.00,4000.00,'P',0.00,0.00,4000.00,0.00,0.00,4000.00,39,0,'',0,'IPB',99,'Y','','',0,''),(204214,0,0,2879,'2025-11-29',13981,'19:51:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204215,0,0,2879,'2025-11-30',13982,'19:51:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204216,0,0,2879,'2025-11-29',13983,'19:52:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204217,0,0,2879,'2025-11-30',13984,'19:52:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204218,0,0,2879,'2025-11-10',13986,'19:53:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204219,0,0,2879,'2025-11-11',13987,'19:54:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204220,0,0,2879,'2025-11-12',13988,'19:54:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204221,0,0,2879,'2025-11-16',13989,'19:54:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',300,3.00,900.00,'A',0.00,0.00,900.00,0.00,0.00,900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204222,0,0,2879,'2025-11-18',13990,'19:55:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',300,4.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204223,0,0,2879,'2025-11-19',13991,'19:55:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204224,0,0,2879,'2025-11-30',13992,'19:55:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204225,0,0,2879,'2025-11-19',13993,'19:56:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204226,0,0,2879,'2025-11-29',13994,'19:56:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204227,0,0,2879,'2025-11-29',13995,'19:56:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,187,0,'',0,'IPB',99,'Y','','',0,''),(204228,0,0,2879,'2025-11-29',13996,'19:59:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'',0,'IPB',99,'Y','','',0,''),(204229,0,0,2879,'2025-11-23',13997,'20:01:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204230,0,0,2879,'2025-11-24',13998,'20:01:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204231,0,0,2879,'2025-11-25',13999,'20:01:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204232,0,0,2879,'2025-11-26',14000,'20:01:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204233,0,0,2879,'2025-11-27',14001,'20:01:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204234,0,0,2879,'2025-11-28',14002,'20:01:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204235,0,0,2879,'2025-11-29',14003,'20:01:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204236,0,0,2879,'2025-11-30',14004,'20:01:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204237,0,0,2879,'2025-11-29',14005,'20:03:00','WPRC','WPRC0098','ICU MONITORING CHARGE','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204238,0,0,2879,'2025-11-30',14006,'20:03:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204239,0,0,2879,'2025-11-28',14007,'20:06:00','ROOM','ROOM0009','ROOM CHARGES','H',5500,0.50,2750.00,'P',0.00,0.00,2750.00,0.00,0.00,2750.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204240,0,0,2879,'2025-11-28',14008,'20:06:00','AECO','AECO0008','RMO CHARGES DAY','H',800,0.50,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204241,0,0,2879,'2025-11-28',14009,'20:06:00','CARE','CARE0001','NURSING CHARGES','H',600,0.50,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204242,0,0,2879,'2025-12-01',14269,'15:30:00','ROOM','ROOM0009','ROOM CHARGES (408)','H',3200,0.50,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204243,0,0,2879,'2025-12-01',14270,'15:30:00','AECO','AECO0008','RMO CHARGES DAY (408)','H',400,0.50,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204244,0,0,2879,'2025-12-01',14271,'15:30:00','CARE','CARE0001','NURSING CHARGES (408)','H',200,0.50,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'408',0,'IPB',99,'Y','','',0,''),(204245,0,0,2879,'2025-12-01',14272,'15:30:00','DRC','DRC0018','CONSULTANT VISIT 1  (408)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204246,0,0,2879,'2025-12-01',14273,'15:30:00','DRC','DRC0019','CONSULTANT VISIT 2 (408)','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'408',0,'IPB',99,'Y','','',0,''),(204247,0,0,2879,'2025-11-14',14395,'19:11:00','ROOM','ROOM0009','ROOM CHARGES','H',3200,0.50,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204248,0,0,2879,'2025-11-14',14396,'19:11:00','AECO','AECO0008','RMO CHARGES DAY','H',400,0.50,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204249,0,0,2879,'2025-11-14',14397,'19:12:00','CARE','CARE0001','NURSING CHARGES','H',200,0.50,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204250,0,0,2879,'2025-11-22',14404,'19:39:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,187,0,'',0,'IPB',99,'Y','','',0,''),(204251,0,0,2879,'2025-12-01',14405,'19:40:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204252,0,0,2879,'2025-12-01',14406,'19:41:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204253,0,0,2879,'2025-12-01',14407,'19:42:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204254,0,0,2879,'2025-12-01',14408,'19:42:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204255,0,0,2879,'2025-11-28',14411,'19:58:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204270,0,0,6913,'2025-12-22',20303,'02:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,0,0,'',0,'ER',1,'Y','N','',0,''),(204271,0,0,6913,'2025-12-22',20304,'02:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,0,0,'',0,'ER',99,'Y','N','',0,''),(204272,0,0,6913,'2025-12-22',20305,'02:00:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,0,0,'212',0,'IPB',99,'Y','N','',0,''),(204273,0,0,6913,'2025-12-22',20306,'02:00:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,0,0,'212',0,'IPB',99,'Y','N','',0,''),(204274,0,0,6913,'2025-12-22',20307,'02:00:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,0,0,'212',0,'IPB',99,'Y','N','',0,''),(204275,0,0,6913,'2025-12-22',20308,'02:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','N','',0,''),(204276,0,0,6913,'2025-12-22',20309,'02:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','N','',0,''),(204277,0,0,6913,'2025-12-23',20722,'02:00:00','ROOM','ROOM0009','ROOM CHARGES (212)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,0,0,'212',0,'IPB',99,'Y','N','',0,''),(204278,0,0,6913,'2025-12-23',20723,'02:00:00','AECO','AECO0008','RMO CHARGES DAY (212)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,0,0,'212',0,'IPB',99,'Y','N','',0,''),(204279,0,0,6913,'2025-12-23',20724,'02:00:00','CARE','CARE0001','NURSING CHARGES (212)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,0,0,'212',0,'IPB',99,'Y','N','',0,''),(204280,0,0,6913,'2025-12-23',20725,'02:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','N','',0,''),(204281,0,0,6913,'2025-12-23',20726,'02:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (212)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'212',0,'IPB',99,'Y','N','',0,''),(204774,0,0,6898,'2025-12-21',20249,'14:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(204775,0,0,6898,'2025-12-21',20250,'14:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(204776,0,0,6898,'2025-12-21',20251,'14:00:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(204777,0,0,6898,'2025-12-21',20252,'14:00:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(204778,0,0,6898,'2025-12-21',20253,'14:00:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(204779,0,0,6898,'2025-12-21',20255,'14:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(204780,0,0,6898,'2025-12-22',20622,'14:00:00','ROOM','ROOM0009','ROOM CHARGES (402)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(204781,0,0,6898,'2025-12-22',20623,'14:00:00','AECO','AECO0008','RMO CHARGES DAY (402)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(204782,0,0,6898,'2025-12-22',20624,'14:00:00','CARE','CARE0001','NURSING CHARGES (402)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'402',0,'IPB',99,'Y','','',0,''),(204783,0,0,6898,'2025-12-22',20625,'14:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(204784,0,0,6898,'2025-12-22',20626,'14:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (402)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'402',0,'IPB',99,'Y','','',0,''),(204785,0,0,6898,'2025-12-21',20705,'09:33:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,3,0,'',0,'IPB',99,'Y','','',0,''),(204786,0,0,6898,'2025-12-21',20706,'09:34:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204787,0,0,6898,'2025-12-22',20707,'09:34:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204788,0,0,6898,'2025-12-22',20708,'09:35:00','USG','USG0097','USG ABD + KUB','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204789,0,0,6898,'2025-12-22',20709,'09:36:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204790,0,0,6898,'2025-12-22',20710,'09:40:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'IPB',99,'Y','','',0,''),(204791,0,0,6898,'2025-12-23',20766,'11:17:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'IPB',99,'Y','','',0,''),(204792,0,0,4017,'2025-11-23',11535,'15:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(204793,0,0,4017,'2025-11-23',11536,'15:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(204794,0,0,4017,'2025-11-23',11537,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204795,0,0,4017,'2025-11-23',11538,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204796,0,0,4017,'2025-11-23',11539,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204797,0,0,4017,'2025-11-23',11541,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204798,0,0,4017,'2025-11-23',11693,'11:17:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204799,0,0,4017,'2025-11-24',11694,'11:17:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204800,0,0,4017,'2025-11-24',11695,'11:17:00','XRY','XRY0045','X RAY CHARGES','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204801,0,0,4017,'2025-11-23',11698,'11:18:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204802,0,0,4017,'2025-11-24',11699,'11:18:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204803,0,0,4017,'2025-11-24',11700,'11:18:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204804,0,0,4017,'2025-11-23',11701,'11:18:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204805,0,0,4017,'2025-11-23',11702,'11:18:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204806,0,0,4017,'2025-11-24',11703,'11:19:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204807,0,0,4017,'2025-11-24',11833,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204808,0,0,4017,'2025-11-24',11834,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204809,0,0,4017,'2025-11-24',11835,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204810,0,0,4017,'2025-11-24',11836,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204811,0,0,4017,'2025-11-24',11837,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204812,0,0,4017,'2025-11-25',12225,'09:29:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204813,0,0,4017,'2025-11-25',12227,'09:30:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204814,0,0,4017,'2025-11-25',12228,'09:30:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204815,0,0,4017,'2025-11-25',12459,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204816,0,0,4017,'2025-11-25',12460,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204817,0,0,4017,'2025-11-25',12461,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204818,0,0,4017,'2025-11-25',12462,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204819,0,0,4017,'2025-11-25',12463,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204820,0,0,4017,'2025-11-26',12716,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204821,0,0,4017,'2025-11-26',12717,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204822,0,0,4017,'2025-11-26',12718,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204823,0,0,4017,'2025-11-26',12719,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204824,0,0,4017,'2025-11-26',12720,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204825,0,0,4017,'2025-11-26',12741,'16:21:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204826,0,0,4017,'2025-11-26',12742,'16:21:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204827,0,0,4017,'2025-11-26',12743,'16:21:00','WPRC','WPRC0077','PC ENEMA','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204828,0,0,4017,'2025-11-26',12745,'16:21:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204829,0,0,4017,'2025-11-26',12746,'16:22:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204830,0,0,4017,'2025-11-26',12747,'16:22:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204831,0,0,4017,'2025-11-25',12748,'16:22:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204832,0,0,4017,'2025-11-26',12749,'16:22:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204833,0,0,4017,'2025-11-26',12764,'16:33:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1000,1.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204834,0,0,4017,'2025-11-26',12767,'16:38:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204835,0,0,4017,'2025-11-26',12768,'16:39:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(204836,0,0,4017,'2025-11-27',13115,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204837,0,0,4017,'2025-11-27',13116,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204838,0,0,4017,'2025-11-27',13117,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204839,0,0,4017,'2025-11-27',13118,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204840,0,0,4017,'2025-11-27',13119,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204841,0,0,4017,'2025-11-27',13120,'16:31:00','WPRC','WPRC0077','PC ENEMA','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204842,0,0,4017,'2025-11-27',13121,'16:32:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204843,0,0,4017,'2025-11-27',13122,'16:32:00','ROOM','ROOM0004','INFUSION PUMP','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204844,0,0,4017,'2025-11-27',13124,'16:32:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204845,0,0,4017,'2025-11-27',13125,'16:33:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204846,0,0,4017,'2025-11-28',13449,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204847,0,0,4017,'2025-11-28',13450,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204848,0,0,4017,'2025-11-28',13451,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204849,0,0,4017,'2025-11-28',13452,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204850,0,0,4017,'2025-11-28',13453,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204851,0,0,4017,'2025-11-28',13474,'15:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204852,0,0,4017,'2025-11-28',13475,'15:41:00','WPRC','WPRC0077','PC ENEMA','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204853,0,0,4017,'2025-11-23',13476,'15:42:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204854,0,0,4017,'2025-11-24',13477,'15:42:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204855,0,0,4017,'2025-11-25',13478,'15:42:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204856,0,0,4017,'2025-11-26',13479,'15:42:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204857,0,0,4017,'2025-11-27',13480,'15:42:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204858,0,0,4017,'2025-11-28',13481,'15:42:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204859,0,0,4017,'2025-11-28',13482,'15:43:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204860,0,0,4017,'2025-11-28',13483,'15:43:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204861,0,0,4017,'2025-11-29',13781,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204862,0,0,4017,'2025-11-29',13782,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204863,0,0,4017,'2025-11-29',13783,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204864,0,0,4017,'2025-11-29',13784,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204865,0,0,4017,'2025-11-29',13786,'18:24:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204866,0,0,4017,'2025-11-29',13787,'18:25:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204867,0,0,4017,'2025-11-29',13788,'18:25:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204868,0,0,4017,'2025-11-29',13789,'18:25:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204869,0,0,4017,'2025-11-30',13970,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204870,0,0,4017,'2025-11-30',13971,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204871,0,0,4017,'2025-11-30',13972,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204872,0,0,4017,'2025-11-30',13973,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204873,0,0,4017,'2025-11-30',13974,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204874,0,0,4017,'2025-11-30',13975,'19:44:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204875,0,0,4017,'2025-11-30',13976,'19:45:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204876,0,0,4017,'2025-11-30',13977,'19:45:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204877,0,0,4017,'2025-11-30',13978,'19:45:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204878,0,0,4017,'2025-11-30',13979,'19:45:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204879,0,0,4017,'2025-12-01',14131,'11:28:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204880,0,0,4017,'2025-12-01',14132,'11:29:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204881,0,0,4017,'2025-12-01',14133,'11:29:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204882,0,0,4017,'2025-12-01',14134,'11:29:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204883,0,0,4017,'2025-12-01',14284,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204884,0,0,4017,'2025-12-01',14285,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204885,0,0,4017,'2025-12-01',14286,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204886,0,0,4017,'2025-12-01',14287,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204887,0,0,4017,'2025-12-01',14288,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204888,0,0,4017,'2025-12-02',14515,'11:33:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204889,0,0,4017,'2025-12-01',14516,'11:34:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204890,0,0,4017,'2025-12-02',14517,'11:34:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204891,0,0,4017,'2025-12-02',14518,'11:34:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204892,0,0,4017,'2025-12-02',14519,'11:34:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204893,0,0,4017,'2025-12-02',14520,'11:34:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204894,0,0,4017,'2025-12-02',14521,'11:35:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204895,0,0,4017,'2025-12-01',14522,'11:35:00','WPRC','WPRC0110','TRACHEOSTOMY CHARGE','H',7000,1.00,7000.00,'A',0.00,0.00,7000.00,0.00,0.00,7000.00,115,0,'',0,'IPB',99,'Y','','',0,''),(204896,0,0,4017,'2025-12-02',14635,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204897,0,0,4017,'2025-12-02',14636,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204898,0,0,4017,'2025-12-02',14637,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204899,0,0,4017,'2025-12-02',14638,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204900,0,0,4017,'2025-12-02',14639,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204901,0,0,4017,'2025-12-03',14902,'12:28:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204902,0,0,4017,'2025-12-03',14903,'12:28:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204903,0,0,4017,'2025-12-03',14904,'12:28:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204904,0,0,4017,'2025-12-03',14905,'12:28:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204905,0,0,4017,'2025-12-03',15067,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204906,0,0,4017,'2025-12-03',15068,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204907,0,0,4017,'2025-12-03',15069,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204908,0,0,4017,'2025-12-03',15070,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204909,0,0,4017,'2025-12-03',15071,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204910,0,0,4017,'2025-12-04',15403,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204911,0,0,4017,'2025-12-04',15404,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204912,0,0,4017,'2025-12-04',15405,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204913,0,0,4017,'2025-12-04',15406,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204914,0,0,4017,'2025-12-04',15407,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204915,0,0,4017,'2025-12-05',15631,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204916,0,0,4017,'2025-12-05',15632,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204917,0,0,4017,'2025-12-05',15633,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204918,0,0,4017,'2025-12-05',15634,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204919,0,0,4017,'2025-12-05',15635,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204920,0,0,4017,'2025-12-04',15638,'17:09:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204921,0,0,4017,'2025-12-05',15639,'17:09:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204922,0,0,4017,'2025-12-04',15640,'17:10:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204923,0,0,4017,'2025-12-04',15641,'17:10:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204924,0,0,4017,'2025-12-05',15642,'17:10:00','WPRC','WPRC0089','NEB CHARGE','H',100,5.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204925,0,0,4017,'2025-12-03',15643,'17:11:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204926,0,0,4017,'2025-12-04',15644,'17:11:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204927,0,0,4017,'2025-12-05',15645,'17:11:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204928,0,0,4017,'2025-12-04',15646,'17:11:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204929,0,0,4017,'2025-12-05',15647,'17:11:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204930,0,0,4017,'2025-12-04',15648,'17:12:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204931,0,0,4017,'2025-12-05',15649,'17:12:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204932,0,0,4017,'2025-12-06',15961,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204933,0,0,4017,'2025-12-06',15962,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204934,0,0,4017,'2025-12-06',15963,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204935,0,0,4017,'2025-12-06',15964,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204936,0,0,4017,'2025-12-06',15965,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204937,0,0,4017,'2025-12-06',15966,'15:55:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204938,0,0,4017,'2025-12-06',15967,'15:55:00','USG','USG0095','USG CHEST','H',1200,1.00,1200.00,'P',0.00,0.00,1200.00,0.00,0.00,1200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204939,0,0,4017,'2025-12-06',15968,'15:56:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204940,0,0,4017,'2025-12-06',15969,'15:56:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204941,0,0,4017,'2025-12-06',15970,'15:56:00','WPRC','WPRC0089','NEB CHARGE','H',100,7.00,700.00,'P',0.00,0.00,700.00,0.00,0.00,700.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204942,0,0,4017,'2025-12-07',16106,'12:11:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204943,0,0,4017,'2025-12-07',16107,'12:11:00','WPRC','WPRC0089','NEB CHARGE','H',100,7.00,700.00,'P',0.00,0.00,700.00,0.00,0.00,700.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204944,0,0,4017,'2025-12-07',16108,'12:11:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204945,0,0,4017,'2025-12-07',16109,'12:11:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204946,0,0,4017,'2025-12-06',16110,'12:12:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204947,0,0,4017,'2025-12-07',16111,'12:12:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204948,0,0,4017,'2025-12-07',16130,'12:41:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204949,0,0,4017,'2025-12-07',16234,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204950,0,0,4017,'2025-12-07',16235,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204951,0,0,4017,'2025-12-07',16236,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204952,0,0,4017,'2025-12-07',16237,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204953,0,0,4017,'2025-12-07',16238,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204954,0,0,4017,'2025-12-07',16240,'10:30:00','XRY','XRY0045','X RAY CHARGES','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204955,0,0,4017,'2025-12-08',16241,'10:30:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204956,0,0,4017,'2025-12-08',16242,'10:30:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204957,0,0,4017,'2025-12-08',16243,'10:31:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204958,0,0,4017,'2025-12-08',16244,'10:31:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204959,0,0,4017,'2025-12-08',16245,'10:31:00','WPRC','WPRC0089','NEB CHARGE','H',100,1.00,100.00,'A',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204960,0,0,4017,'2025-12-08',16715,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204961,0,0,4017,'2025-12-08',16716,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204962,0,0,4017,'2025-12-08',16717,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204963,0,0,4017,'2025-12-08',16718,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204964,0,0,4017,'2025-12-08',16719,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204965,0,0,4017,'2025-12-09',16755,'10:17:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204966,0,0,4017,'2025-12-09',16756,'10:17:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204967,0,0,4017,'2025-12-09',16757,'10:18:00','WPRC','WPRC0089','NEB CHARGE','H',100,7.00,700.00,'P',0.00,0.00,700.00,0.00,0.00,700.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204968,0,0,4017,'2025-12-09',16758,'10:18:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204969,0,0,4017,'2025-12-09',16759,'10:18:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204970,0,0,4017,'2025-12-09',16929,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204971,0,0,4017,'2025-12-09',16930,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204972,0,0,4017,'2025-12-09',16931,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204973,0,0,4017,'2025-12-09',16932,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204974,0,0,4017,'2025-12-09',16933,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204975,0,0,4017,'2025-12-08',16934,'16:44:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204976,0,0,4017,'2025-12-08',16935,'16:45:00','WPRC','WPRC0092','CVP (CENTRAL LINE INSERTION) CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(204977,0,0,4017,'2025-12-08',16936,'16:45:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,38,0,'',0,'IPB',99,'Y','','',0,''),(204978,0,0,4017,'2025-12-10',17227,'12:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204979,0,0,4017,'2025-12-10',17228,'12:42:00','WPRC','WPRC0089','NEB CHARGE','H',100,4.00,400.00,'P',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204980,0,0,4017,'2025-12-10',17229,'12:42:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204981,0,0,4017,'2025-12-10',17230,'12:42:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204982,0,0,4017,'2025-12-10',17231,'12:43:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204983,0,0,4017,'2025-12-10',17232,'12:44:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204984,0,0,4017,'2025-12-09',17233,'12:46:00','WPRC','WPRC0118','CO2 MONITORING','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204985,0,0,4017,'2025-12-10',17234,'12:46:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,8,0,'',0,'IPB',99,'Y','','',0,''),(204986,0,0,4017,'2025-12-10',17270,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204987,0,0,4017,'2025-12-10',17271,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204988,0,0,4017,'2025-12-10',17272,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204989,0,0,4017,'2025-12-10',17273,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204990,0,0,4017,'2025-12-10',17274,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204991,0,0,4017,'2025-12-11',17650,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204992,0,0,4017,'2025-12-11',17651,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204993,0,0,4017,'2025-12-11',17652,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(204994,0,0,4017,'2025-12-11',17653,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204995,0,0,4017,'2025-12-11',17654,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(204996,0,0,4017,'2025-12-11',17760,'20:09:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204997,0,0,4017,'2025-12-11',17761,'20:09:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204998,0,0,4017,'2025-12-11',17762,'20:09:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(204999,0,0,4017,'2025-12-11',17763,'20:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205000,0,0,4017,'2025-12-10',17764,'20:10:00','WPRC','WPRC0118','CO2 MONITORING','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205001,0,0,4017,'2025-12-11',17765,'20:10:00','WPRC','WPRC0118','CO2 MONITORING','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205002,0,0,4017,'2025-12-11',17766,'20:10:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205003,0,0,4017,'2025-12-12',17901,'12:57:00','WPRC','WPRC0118','CO2 MONITORING','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205004,0,0,4017,'2025-12-12',17902,'12:57:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205005,0,0,4017,'2025-12-12',17903,'12:57:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205006,0,0,4017,'2025-12-12',17904,'12:57:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205007,0,0,4017,'2025-12-12',17937,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205008,0,0,4017,'2025-12-12',17938,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205009,0,0,4017,'2025-12-12',17939,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205010,0,0,4017,'2025-12-12',17940,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(205011,0,0,4017,'2025-12-12',17941,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(205012,0,0,4017,'2025-12-13',18369,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205013,0,0,4017,'2025-12-14',18370,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205014,0,0,4017,'2025-12-13',18371,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205015,0,0,4017,'2025-12-14',18372,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205016,0,0,4017,'2025-12-13',18373,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205017,0,0,4017,'2025-12-14',18374,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205018,0,0,4017,'2025-12-13',18375,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(205019,0,0,4017,'2025-12-14',18376,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(205020,0,0,4017,'2025-12-13',18377,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(205021,0,0,4017,'2025-12-14',18378,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(205022,0,0,4017,'2025-12-13',18394,'20:11:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205023,0,0,4017,'2025-12-14',18395,'20:11:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205024,0,0,4017,'2025-12-13',18396,'20:11:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205025,0,0,4017,'2025-12-14',18397,'20:11:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205026,0,0,4017,'2025-12-13',18398,'20:12:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205027,0,0,4017,'2025-12-14',18399,'20:12:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205028,0,0,4017,'2025-12-12',18400,'20:13:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,4.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205029,0,0,4017,'2025-12-13',18401,'20:13:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205030,0,0,4017,'2025-12-14',18402,'20:13:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205031,0,0,4017,'2025-12-12',18403,'20:13:00','WPRC','WPRC0080','RCC TRANSFUSION CHARGE','H',500,3.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205032,0,0,4017,'2025-12-12',18404,'20:14:00','WPRC','WPRC0091','FFP TRANSFUSION CHARGE','H',500,5.00,2500.00,'A',0.00,0.00,2500.00,0.00,0.00,2500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205033,0,0,4017,'2025-12-13',18405,'20:15:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205034,0,0,4017,'2025-12-13',18406,'20:15:00','WPRC','WPRC0118','CO2 MONITORING','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205035,0,0,4017,'2025-12-14',18407,'20:15:00','WPRC','WPRC0118','CO2 MONITORING','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205036,0,0,4017,'2025-12-12',18408,'20:15:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205037,0,0,4017,'2025-12-13',18409,'20:16:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205038,0,0,4017,'2025-12-14',18410,'20:16:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205039,0,0,4017,'2025-12-11',18411,'20:16:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205040,0,0,4017,'2025-12-12',18412,'20:16:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205041,0,0,4017,'2025-12-13',18413,'20:16:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205042,0,0,4017,'2025-12-14',18414,'20:16:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205043,0,0,4017,'2025-12-15',18620,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205044,0,0,4017,'2025-12-15',18621,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205045,0,0,4017,'2025-12-15',18622,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205046,0,0,4017,'2025-12-15',18623,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(205047,0,0,4017,'2025-12-15',18624,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(205048,0,0,4017,'2025-12-15',18626,'16:32:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205049,0,0,4017,'2025-12-15',18627,'16:32:00','WPRC','WPRC0079','FOLEYS CATHETER','H',750,1.00,750.00,'P',0.00,0.00,750.00,0.00,0.00,750.00,4,0,'',0,'IPB',99,'Y','','',0,''),(205050,0,0,4017,'2025-12-15',18628,'16:33:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205051,0,0,4017,'2025-12-15',18629,'16:37:00','WPRC','WPRC0118','CO2 MONITORING','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205052,0,0,4017,'2025-12-16',18829,'11:41:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205053,0,0,4017,'2025-12-16',18830,'11:42:00','WPRC','WPRC0118','CO2 MONITORING','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205054,0,0,4017,'2025-12-15',18831,'11:42:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205055,0,0,4017,'2025-12-16',18832,'11:42:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205056,0,0,4017,'2025-12-16',18833,'11:43:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205057,0,0,4017,'2025-12-15',18834,'11:44:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,38,0,'',0,'IPB',99,'Y','','',0,''),(205058,0,0,4017,'2025-12-16',18948,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205059,0,0,4017,'2025-12-16',18949,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205060,0,0,4017,'2025-12-16',18950,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(205061,0,0,4017,'2025-12-16',18951,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(205062,0,0,4017,'2025-12-16',18952,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205063,0,0,4017,'2025-12-17',19319,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205064,0,0,4017,'2025-12-17',19320,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205065,0,0,4017,'2025-12-17',19321,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205066,0,0,4017,'2025-12-17',19322,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(205067,0,0,4017,'2025-12-17',19323,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(205068,0,0,4017,'2025-12-18',19467,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205069,0,0,4017,'2025-12-18',19468,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205070,0,0,4017,'2025-12-18',19469,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205071,0,0,4017,'2025-12-18',19470,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(205072,0,0,4017,'2025-12-18',19471,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(205073,0,0,4017,'2025-12-15',19473,'17:29:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205074,0,0,4017,'2025-12-16',19474,'17:29:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205075,0,0,4017,'2025-12-17',19475,'17:29:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205076,0,0,4017,'2025-12-18',19476,'17:29:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205077,0,0,4017,'2025-12-15',19477,'17:30:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205078,0,0,4017,'2025-12-16',19478,'17:30:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205079,0,0,4017,'2025-12-17',19479,'17:30:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205080,0,0,4017,'2025-12-18',19480,'17:30:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205081,0,0,4017,'2025-12-15',19481,'17:30:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205082,0,0,4017,'2025-12-16',19482,'17:30:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205083,0,0,4017,'2025-12-17',19483,'17:30:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205084,0,0,4017,'2025-12-18',19484,'17:30:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205085,0,0,4017,'2025-12-17',19485,'17:31:00','WPRC','WPRC0118','CO2 MONITORING','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205086,0,0,4017,'2025-12-18',19486,'17:31:00','WPRC','WPRC0118','CO2 MONITORING','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205087,0,0,4017,'2025-12-17',19487,'17:32:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205088,0,0,4017,'2025-12-18',19488,'17:32:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,3.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205089,0,0,4017,'2025-12-17',19489,'17:33:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205090,0,0,4017,'2025-12-18',19490,'17:33:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205091,0,0,4017,'2025-12-16',19491,'17:33:00','WPRC','WPRC0111','TRACHEOSTOMY CHANGE','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(205092,0,0,4017,'2025-12-16',19492,'17:34:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(205093,0,0,4017,'2025-12-17',19493,'17:34:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205094,0,0,4017,'2025-12-18',19494,'17:34:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205095,0,0,4017,'2025-12-18',19495,'17:35:00','USG','USG0092','USG ABDOMEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205096,0,0,4017,'2025-12-18',19497,'17:37:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(205097,0,0,4017,'2025-12-18',19498,'17:38:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'A',0.00,0.00,2000.00,0.00,0.00,2000.00,79,0,'',0,'IPB',99,'Y','','',0,''),(205098,0,0,4017,'2025-12-19',19851,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205099,0,0,4017,'2025-12-19',19852,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205100,0,0,4017,'2025-12-19',19853,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205101,0,0,4017,'2025-12-19',19854,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(205102,0,0,4017,'2025-12-19',19855,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(205103,0,0,4017,'2025-12-19',19893,'18:56:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205104,0,0,4017,'2025-12-19',19894,'18:58:00','WPRC','WPRC0118','CO2 MONITORING','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205105,0,0,4017,'2025-12-19',19895,'18:59:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205106,0,0,4017,'2025-12-19',19896,'18:59:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205107,0,0,4017,'2025-12-19',19897,'18:59:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(205108,0,0,4017,'2025-12-19',19900,'19:00:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'A',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205109,0,0,4017,'2025-12-19',19901,'19:00:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'A',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205110,0,0,4017,'2025-12-20',20131,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'P',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205111,0,0,4017,'2025-12-20',20132,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205112,0,0,4017,'2025-12-20',20133,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'P',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'208',0,'IPB',99,'Y','','',0,''),(205113,0,0,4017,'2025-12-20',20134,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','','',0,''),(205114,0,0,4017,'2025-12-20',20156,'11:10:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205115,0,0,4017,'2025-12-21',20157,'11:11:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205116,0,0,4017,'2025-12-20',20158,'11:11:00','WPRC','WPRC0125','PCV TRANSFUSION CHARGE','H',500,1.00,500.00,'A',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205117,0,0,4017,'2025-12-20',20159,'11:13:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'IPB',99,'Y','','',0,''),(205118,0,0,4017,'2025-12-20',20160,'11:14:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205119,0,0,4017,'2025-12-20',20161,'11:14:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,2.00,1000.00,'P',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205120,0,0,4017,'2025-12-21',20162,'11:14:00','WPRC','WPRC0087','SYRINGE PUMP CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205121,0,0,4017,'2025-12-20',20163,'11:14:00','WPRC','WPRC0118','CO2 MONITORING','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205122,0,0,4017,'2025-12-21',20164,'11:14:00','WPRC','WPRC0118','CO2 MONITORING','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205123,0,0,4017,'2025-12-19',20165,'11:15:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(205124,0,0,4017,'2025-12-20',20166,'11:16:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(205125,0,0,4017,'2025-12-21',20167,'11:16:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,3,0,'',0,'IPB',99,'Y','','',0,''),(205126,0,0,4017,'2025-12-20',20168,'11:16:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,8,0,'',0,'IPB',99,'Y','','',0,''),(205127,0,0,4017,'2025-11-29',20169,'11:18:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2500,1.00,2500.00,'A',0.00,0.00,2500.00,0.00,0.00,2500.00,8,0,'',0,'IPB',99,'Y','','',0,''),(205128,0,0,4017,'2025-12-21',20170,'11:19:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205129,0,0,4017,'2025-12-20',20171,'11:19:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205130,0,0,4017,'2025-12-21',20172,'11:19:00','WPRC','WPRC0085','VENTILATOR CHARGE','H',3000,1.00,3000.00,'P',0.00,0.00,3000.00,0.00,0.00,3000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205131,0,0,4017,'2025-12-20',20173,'11:20:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205132,0,0,4017,'2025-12-21',20174,'11:20:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205133,0,0,4017,'2025-12-19',20175,'11:20:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205134,0,0,4017,'2025-12-20',20176,'11:20:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205135,0,0,4017,'2025-12-21',20177,'11:20:00','WPRC','WPRC0082','AIR BED CHARGE','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(205136,0,0,4017,'2025-12-21',20224,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,0,0,'208',0,'IPB',99,'Y','N','',0,''),(205137,0,0,4017,'2025-12-21',20225,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,0,0,'208',0,'IPB',99,'Y','N','',0,''),(205138,0,0,4017,'2025-12-21',20226,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','N','',0,''),(205139,0,0,4017,'2025-12-21',20227,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','N','',0,''),(205140,0,0,4017,'2025-12-21',20228,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,0,0,'208',0,'IPB',99,'Y','N','',0,''),(205141,0,0,4017,'2025-12-22',20597,'15:00:00','ROOM','ROOM0009','ROOM CHARGES (208)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,0,0,'208',0,'IPB',99,'Y','N','',0,''),(205142,0,0,4017,'2025-12-22',20598,'15:00:00','AECO','AECO0008','RMO CHARGES DAY (208)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,0,0,'208',0,'IPB',99,'Y','N','',0,''),(205143,0,0,4017,'2025-12-22',20599,'15:00:00','CARE','CARE0001','NURSING CHARGES (208)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,0,0,'208',0,'IPB',99,'Y','N','',0,''),(205144,0,0,4017,'2025-12-22',20600,'15:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','N','',0,''),(205145,0,0,4017,'2025-12-22',20601,'15:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (208)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'208',0,'IPB',99,'Y','N','',0,''),(205146,0,0,6974,'2025-12-22',20426,'12:02:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,0,0,'',0,'ER',1,'Y','N','',0,''),(205147,0,0,6974,'2025-12-22',20427,'12:02:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,0,0,'',0,'ER',99,'Y','N','',0,''),(205148,0,0,6974,'2025-12-22',20428,'12:02:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,0,0,'209',0,'IPB',99,'Y','N','',0,''),(205149,0,0,6974,'2025-12-22',20429,'12:02:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,0,0,'209',0,'IPB',99,'Y','N','',0,''),(205150,0,0,6974,'2025-12-22',20430,'12:02:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,0,0,'209',0,'IPB',99,'Y','N','',0,''),(205151,0,0,6974,'2025-12-22',20431,'12:02:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'209',0,'IPB',99,'Y','N','',0,''),(205152,0,0,6974,'2025-12-22',20432,'12:02:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,5,0,'209',0,'IPB',99,'Y','N','',0,''),(205153,0,0,6974,'2025-12-23',20802,'12:02:00','ROOM','ROOM0009','ROOM CHARGES (407)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,0,0,'407',0,'IPB',99,'Y','N','',0,''),(205154,0,0,6974,'2025-12-23',20803,'12:02:00','AECO','AECO0008','RMO CHARGES DAY (407)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,0,0,'407',0,'IPB',99,'Y','N','',0,''),(205155,0,0,6974,'2025-12-23',20804,'12:02:00','CARE','CARE0001','NURSING CHARGES (407)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'407',0,'IPB',99,'Y','N','',0,''),(205156,0,0,6974,'2025-12-23',20805,'12:02:00','DRC','DRC0018','CONSULTANT VISIT 1  (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'407',0,'IPB',99,'Y','N','',0,''),(205157,0,0,6974,'2025-12-23',20806,'12:02:00','DRC','DRC0019','CONSULTANT VISIT 2 (407)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,5,0,'407',0,'IPB',99,'Y','N','',0,''),(205473,0,0,7067,'2025-12-22',20693,'22:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,0,0,'',0,'ER',1,'Y','N','',0,''),(205474,0,0,7067,'2025-12-22',20694,'22:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,0,0,'',0,'ER',99,'Y','N','',0,''),(205475,0,0,7067,'2025-12-22',20695,'22:00:00','ROOM','ROOM0009','ROOM CHARGES (411)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,0,0,'411',0,'IPB',99,'Y','N','',0,''),(205476,0,0,7067,'2025-12-22',20696,'22:00:00','AECO','AECO0008','RMO CHARGES DAY (411)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,0,0,'411',0,'IPB',99,'Y','N','',0,''),(205477,0,0,7067,'2025-12-22',20697,'22:00:00','CARE','CARE0001','NURSING CHARGES (411)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,0,0,'411',0,'IPB',99,'Y','N','',0,''),(205478,0,0,7067,'2025-12-22',20698,'22:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'411',0,'IPB',99,'Y','N','',0,''),(205479,0,0,7067,'2025-12-22',20699,'22:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (411)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'411',0,'IPB',99,'Y','N','',0,''),(205546,0,0,6780,'2025-12-19',19815,'10:27:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'',99,'','','',0,''),(205547,0,0,6780,'2025-12-19',19816,'10:28:00','WPRC','WPRC0078','ECG','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'',99,'','','',0,''),(205548,0,0,6780,'2025-12-19',19817,'15:38:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',1,'','','',0,''),(205549,0,0,6780,'2025-12-19',19818,'15:38:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'',99,'','','',0,''),(205550,0,0,6780,'2025-12-19',19819,'15:38:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'',99,'','','',0,''),(205551,0,0,6780,'2025-12-19',0,'15:38:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'',99,'','','',0,''),(205552,0,0,6780,'2025-12-19',19821,'15:38:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'',99,'','','',0,''),(205553,0,0,6780,'2025-12-19',19985,'15:38:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'',99,'','','',0,''),(205554,0,0,6780,'2025-12-20',19986,'09:48:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'',99,'','','',0,''),(205555,0,0,6780,'2025-12-20',20147,'12:01:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'',99,'','','',0,''),(205556,0,0,6780,'2025-12-20',20148,'12:02:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'',0,'',99,'','','',0,''),(205557,0,0,6780,'2025-12-20',20149,'12:41:00','PKG','PKG0009','SURGEON CONSULTATION CHARGE','H',15000,1.00,15000.00,'P',0.00,0.00,15000.00,0.00,0.00,15000.00,3,0,'',0,'',99,'','','',0,''),(205558,0,0,6780,'2025-12-20',20150,'15:38:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'',99,'','','',0,''),(205559,0,0,6780,'2025-12-20',0,'15:38:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'',99,'','','',0,''),(205560,0,0,6780,'2025-12-20',20196,'15:38:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'',99,'','','',0,''),(205561,0,0,6780,'2025-12-20',20197,'15:38:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'',99,'','','',0,''),(205562,0,0,6780,'2025-12-20',20234,'15:38:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'',99,'','','',0,''),(205563,0,0,6780,'2025-12-21',20235,'09:49:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'',99,'','','',0,''),(205564,0,0,6780,'2025-12-21',20236,'15:38:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'',99,'','','',0,''),(205565,0,0,6780,'2025-12-21',20237,'15:38:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'',99,'','','',0,''),(205566,0,0,6780,'2025-12-21',20238,'15:38:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'',99,'','','',0,''),(205567,0,0,6780,'2025-12-21',20612,'15:38:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'',99,'','','',0,''),(205568,0,0,6780,'2025-12-21',20613,'15:38:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'',99,'','','',0,''),(205569,0,0,6780,'2025-12-22',20614,'09:48:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'',99,'','','',0,''),(205570,0,0,6780,'2025-12-22',20615,'09:49:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'',99,'','','',0,''),(205571,0,0,6780,'2025-12-22',20616,'15:38:00','ROOM','ROOM0009','ROOM CHARGES (403)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'403',0,'',99,'','','',0,''),(205572,0,0,6780,'2025-12-22',20717,'15:38:00','AECO','AECO0008','RMO CHARGES DAY (403)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'403',0,'',99,'','','',0,''),(205573,0,0,6780,'2025-12-22',0,'15:38:00','CARE','CARE0001','NURSING CHARGES (403)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'403',0,'',99,'','','',0,''),(205574,0,0,6780,'2025-12-22',20719,'15:38:00','DRC','DRC0018','CONSULTANT VISIT 1  (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'',99,'','','',0,''),(205575,0,0,6780,'2025-12-22',20720,'15:38:00','DRC','DRC0019','CONSULTANT VISIT 2 (403)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'403',0,'',99,'','','',0,''),(205576,0,0,6780,'2025-12-23',20818,'12:39:00','WPRC','WPRC0083','DRESSING CHARGE - MINOR','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,3,0,'',0,'',99,'','','',0,''),(205577,0,0,6780,'2025-12-23',20820,'12:40:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',800,1.00,800.00,'P',0.00,0.00,800.00,0.00,0.00,800.00,3,0,'',0,'',99,'','','',0,''),(205578,0,0,6780,'2025-12-23',20821,'12:43:00','SURG','SURG0015','OT USAGE CHARGE','H',3750,1.00,3750.00,'P',0.00,0.00,3750.00,0.00,0.00,3750.00,3,0,'',0,'',99,'','','',0,''),(206010,0,0,6899,'2025-12-21',20256,'18:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(206011,0,0,6899,'2025-12-21',20257,'18:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(206012,0,0,6899,'2025-12-21',20258,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(206013,0,0,6899,'2025-12-21',20259,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(206014,0,0,6899,'2025-12-21',20260,'18:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(206015,0,0,6899,'2025-12-21',20262,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(206016,0,0,6899,'2025-12-22',20627,'18:00:00','ROOM','ROOM0009','ROOM CHARGES (405)','H',3200,1.00,3200.00,'A',0.00,0.00,3200.00,0.00,0.00,3200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(206017,0,0,6899,'2025-12-22',20628,'18:00:00','AECO','AECO0008','RMO CHARGES DAY (405)','H',400,1.00,400.00,'A',0.00,0.00,400.00,0.00,0.00,400.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(206018,0,0,6899,'2025-12-22',20629,'18:00:00','CARE','CARE0001','NURSING CHARGES (405)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'405',0,'IPB',99,'Y','','',0,''),(206019,0,0,6899,'2025-12-22',20630,'18:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(206020,0,0,6899,'2025-12-22',20631,'18:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (405)','H',1100,1.00,1100.00,'A',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'405',0,'IPB',99,'Y','','',0,''),(206021,0,0,6899,'2025-12-21',20712,'09:44:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,1.00,100.00,'P',0.00,0.00,100.00,0.00,0.00,100.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206022,0,0,6899,'2025-12-22',20713,'09:45:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206023,0,0,6899,'2025-12-23',20714,'09:45:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206024,0,0,6899,'2025-12-22',20715,'09:45:00','WPRC','WPRC0105','MONITOR CHARGE','H',500,1.00,500.00,'P',0.00,0.00,500.00,0.00,0.00,500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206025,0,0,6899,'2025-12-23',20856,'16:59:00','DRC','DRC0018','CONSULTANT VISIT 1 ','H',1100,1.00,1100.00,'P',0.00,0.00,1100.00,0.00,0.00,1100.00,4,0,'',0,'IPB',99,'Y','','',0,''),(206026,0,0,6899,'2025-12-23',20857,'16:59:00','DRC','DRC0020','OTHER CONSULTANT VISIT CHARGE','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,188,0,'',0,'IPB',99,'Y','','',0,''),(206027,0,0,6899,'2025-12-22',20858,'17:00:00','SURG','SURG0016','SURGERY CHARGE','H',50000,1.00,50000.00,'P',0.00,0.00,50000.00,0.00,0.00,50000.00,188,0,'',0,'IPB',99,'Y','','',0,''),(206028,0,0,6899,'2025-12-22',20859,'17:01:00','SURG','SURG0015','OT USAGE CHARGE','H',12500,1.00,12500.00,'P',0.00,0.00,12500.00,0.00,0.00,12500.00,4,0,'',0,'IPB',99,'Y','','',0,''),(206067,0,0,6769,'2025-12-19',19766,'12:00:00','REG','REG0001','ADMISSION CHARGE','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',1,'Y','','',0,''),(206068,0,0,6769,'2025-12-19',19767,'12:00:00','REG','REG0002','MRD CHARGES','H',250,1.00,250.00,'A',0.00,0.00,250.00,0.00,0.00,250.00,9999,0,'',0,'ER',99,'Y','','',0,''),(206069,0,0,6769,'2025-12-19',19768,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(206070,0,0,6769,'2025-12-19',19769,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(206071,0,0,6769,'2025-12-19',19770,'12:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(206072,0,0,6769,'2025-12-19',19771,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(206073,0,0,6769,'2025-12-19',19772,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(206074,0,0,6769,'2025-12-20',20141,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (209)','H',5500,1.00,5500.00,'A',0.00,0.00,5500.00,0.00,0.00,5500.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(206075,0,0,6769,'2025-12-20',20142,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(206076,0,0,6769,'2025-12-20',20143,'12:00:00','CARE','CARE0001','NURSING CHARGES (209)','H',600,1.00,600.00,'A',0.00,0.00,600.00,0.00,0.00,600.00,9999,0,'209',0,'IPB',99,'Y','','',0,''),(206077,0,0,6769,'2025-12-20',20144,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(206078,0,0,6769,'2025-12-20',20145,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',1600,1.00,1600.00,'P',0.00,0.00,1600.00,0.00,0.00,1600.00,8,0,'209',0,'IPB',99,'Y','','',0,''),(206079,0,0,6769,'2025-12-19',20179,'11:28:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206080,0,0,6769,'2025-12-19',20180,'11:28:00','WPRC','WPRC0090','X-RAY CHEST BEDSIDE ','H',1000,1.00,1000.00,'A',0.00,0.00,1000.00,0.00,0.00,1000.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206081,0,0,6769,'2025-12-20',20181,'11:49:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206082,0,0,6769,'2025-12-20',20182,'11:50:00','WPRC','WPRC0097','2D ECHO','H',2000,1.00,2000.00,'P',0.00,0.00,2000.00,0.00,0.00,2000.00,4,0,'',0,'IPB',99,'Y','','',0,''),(206083,0,0,6769,'2025-12-21',20183,'11:50:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206084,0,0,6769,'2025-12-19',20184,'11:50:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206085,0,0,6769,'2025-12-20',20185,'11:50:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206086,0,0,6769,'2025-12-21',20186,'11:50:00','WPRC','WPRC0086','OXYGEN CHARGE','H',1500,1.00,1500.00,'P',0.00,0.00,1500.00,0.00,0.00,1500.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206087,0,0,6769,'2025-12-19',20187,'11:51:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206088,0,0,6769,'2025-12-20',20188,'11:51:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206089,0,0,6769,'2025-12-21',20189,'11:51:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206090,0,0,6769,'2025-12-21',20218,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (209)','H',1600,1.00,1600.00,'A',0.00,0.00,1600.00,0.00,0.00,1600.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(206091,0,0,6769,'2025-12-21',20219,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (209)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'209',0,'IPB',99,'Y','','',0,''),(206092,0,0,6769,'2025-12-21',20221,'13:24:00','ROOM','ROOM0009','ROOM CHARGES','H',2900,1.00,2900.00,'P',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206093,0,0,6769,'2025-12-21',20222,'13:24:00','AECO','AECO0008','RMO CHARGES DAY','H',300,1.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206094,0,0,6769,'2025-12-21',20223,'13:25:00','CARE','CARE0001','NURSING CHARGES','H',200,1.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206095,0,0,6769,'2025-12-22',20607,'12:00:00','ROOM','ROOM0009','ROOM CHARGES (412)','H',2900,1.00,2900.00,'A',0.00,0.00,2900.00,0.00,0.00,2900.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(206096,0,0,6769,'2025-12-22',20608,'12:00:00','AECO','AECO0008','RMO CHARGES DAY (412)','H',300,1.00,300.00,'A',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(206097,0,0,6769,'2025-12-22',20609,'12:00:00','CARE','CARE0001','NURSING CHARGES (412)','H',200,1.00,200.00,'A',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'412',0,'IPB',99,'Y','','',0,''),(206098,0,0,6769,'2025-12-22',20610,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(206099,0,0,6769,'2025-12-22',20611,'12:00:00','DRC','DRC0019','CONSULTANT VISIT 2 (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(206100,0,0,6769,'2025-12-23',20844,'12:00:00','DRC','DRC0018','CONSULTANT VISIT 1  (412)','H',800,1.00,800.00,'A',0.00,0.00,800.00,0.00,0.00,800.00,4,0,'412',0,'IPB',99,'Y','','',0,''),(206101,0,0,6769,'2025-12-22',20847,'16:39:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206102,0,0,6769,'2025-12-23',20848,'16:40:00','ROOM','ROOM0008','RBS (RANDOM BLOOD SUGAR)','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206103,0,0,6769,'2025-12-22',20849,'16:41:00','WPRC','WPRC0089','NEB CHARGE','H',100,3.00,300.00,'P',0.00,0.00,300.00,0.00,0.00,300.00,9999,0,'',0,'IPB',99,'Y','','',0,''),(206104,0,0,6769,'2025-12-23',20850,'16:41:00','WPRC','WPRC0089','NEB CHARGE','H',100,2.00,200.00,'P',0.00,0.00,200.00,0.00,0.00,200.00,9999,0,'',0,'IPB',99,'Y','','',0,'');
/*!40000 ALTER TABLE `pat_temp_bill_detail` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pateint_master`
--

DROP TABLE IF EXISTS `pateint_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pateint_master` (
  `company_id` tinyint(4) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `abha_number` varchar(20) NOT NULL,
  `partner_id` int(11) NOT NULL COMMENT 'partner patient id',
  `pat_title` char(4) NOT NULL,
  `patient_name` varchar(200) NOT NULL,
  `pan_number` varchar(10) NOT NULL,
  `patient_add_block` varchar(10) NOT NULL,
  `patient_add1` varchar(65) NOT NULL,
  `patient_add2` varchar(50) NOT NULL,
  `pin_no` int(11) NOT NULL,
  `patient_village` varchar(50) NOT NULL,
  `patient_taluka` varchar(50) NOT NULL,
  `patient_district` varchar(50) NOT NULL,
  `patient_country` varchar(40) NOT NULL,
  `patient_dob` date NOT NULL,
  `Tantative_Flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `patient_age` varchar(9) NOT NULL,
  `patient_age_yy` tinyint(4) NOT NULL COMMENT 'patient age in years',
  `patient_age_mm` tinyint(4) NOT NULL COMMENT 'patient age in months',
  `patient_age_dd` tinyint(4) NOT NULL COMMENT 'patient age in days',
  `patient_gender` varchar(1) NOT NULL,
  `patient_m_status` varchar(1) NOT NULL,
  `patient_b_group` varchar(4) NOT NULL,
  `primary_contact_code` varchar(10) NOT NULL,
  `patient_contact1` bigint(20) NOT NULL,
  `secondary_contact_code` varchar(10) NOT NULL,
  `patient_contact2` bigint(20) NOT NULL,
  `patient_email` varchar(50) NOT NULL,
  `patient_rate_card` int(11) NOT NULL,
  `patient_religion` tinyint(4) NOT NULL,
  `pat_language` varchar(3) NOT NULL,
  `patient_photopath` text NOT NULL,
  `is_favorite_patient` enum('N','Y') NOT NULL DEFAULT 'N',
  `folder_id` int(11) NOT NULL,
  `id_proof_type` varchar(50) NOT NULL,
  `id_proof_no` varchar(50) NOT NULL,
  `pat_type` varchar(3) NOT NULL,
  `pat_previllage` varchar(3) NOT NULL,
  `user_name` varchar(20) NOT NULL,
  `last_update_date` date NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`patient_id`),
  KEY `patient_name` (`patient_name`),
  KEY `patient_id` (`patient_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pateint_master`
--

LOCK TABLES `pateint_master` WRITE;
/*!40000 ALTER TABLE `pateint_master` DISABLE KEYS */;
INSERT INTO `pateint_master` VALUES (0,1,'',0,'','VARSHABEN M RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-08','Y','51Y',0,0,0,'F','','','+91',8866589093,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 10:03:17','janvi','2025-10-14 19:47:28'),(0,2,'',0,'','NIYATIBEN M DODIYA','','','','',0,'MANGROL','MANGROL','GUJARAT','INDIA','2003-10-08','Y','22Y',0,0,0,'F','','','+91',9879877105,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 10:09:27','','0000-00-00 00:00:00'),(0,3,'',0,'','JAYBHAI FALDU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-08','Y','30Y',30,0,0,'M','','','+91',9909989594,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 10:13:01','janvi','2025-10-08 11:03:46'),(0,4,'',0,'','YOGESHBHAI DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-10-08','Y','31Y',0,0,0,'M','','','+91',9687039270,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 10:16:06','','0000-00-00 00:00:00'),(0,5,'',0,'','DEEP KAPURIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-10-08','Y','24Y',0,0,0,'M','','','+91',8849647442,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 10:16:14','','0000-00-00 00:00:00'),(0,6,'',0,'','NIMUBEN B MAVANI','','','','',0,'','','GUJARAT','INDIA','1963-10-08','Y','62Y',0,0,0,'F','','','+91',9724460511,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 10:19:48','','0000-00-00 00:00:00'),(0,7,'',0,'','DEVSHIBHAI D PANARA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1958-10-08','Y','67Y',67,0,0,'M','','','+91',9925235208,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 10:21:15','drashti','2025-10-08 10:22:05'),(0,8,'',0,'','MALIBEN R PARMAR','','','','',0,'','','GUJARAT','INDIA','1943-10-08','Y','82Y',0,0,0,'F','','','+91',8690075700,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 10:21:52','','0000-00-00 00:00:00'),(0,9,'',0,'','BHARTIBEN M VANJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-10-08','Y','69Y',0,0,0,'F','','','+91',9924260675,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 10:22:11','janvi','2025-12-19 11:27:02'),(0,10,'',0,'','KANTIBHAI V THOLIYA','','','','',0,'BABRA AMRELI','BABRA AMRELI','GUJARAT','INDIA','1965-10-08','Y','60Y',60,0,0,'M','','','+91',9737425925,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 10:23:44','reception','2025-11-28 09:45:35'),(0,11,'',0,'','VIPULBHAI J RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-08','Y','40Y',0,0,0,'M','','','+91',9726523999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 10:24:32','','0000-00-00 00:00:00'),(0,12,'',0,'','ABHAY B VAJA','','','','',0,'','','GUJARAT','INDIA','2003-10-08','Y','22Y',0,0,0,'M','','','+91',9428288532,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 10:24:33','reception','2025-11-10 09:49:43'),(0,13,'',0,'','HEMIBEN KERALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-08','Y','65Y',0,0,0,'F','','','+91',8000778887,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 10:25:28','','0000-00-00 00:00:00'),(0,14,'',0,'','KANTIBHAI V THOLIYA','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1965-10-08','Y','60Y',60,0,0,'M','','','+91',9714415917,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 10:27:03','janvi','2025-10-08 10:29:15'),(0,15,'',0,'','RANJANBEN S RATHOD','','','','',0,'','','GUJARAT','INDIA','1987-10-08','Y','38Y',38,0,0,'F','','','+91',9913498888,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 10:30:51','reception','2025-11-19 11:31:32'),(0,16,'',0,'','VALLABHBHAI J SHINGALA','','','THORDI','KOTDA SANGANI',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-08','Y','75Y',75,0,0,'M','','','+91',9979095089,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 10:33:30','drashti','2025-10-15 10:46:36'),(0,17,'',0,'','KHUSHI JOSHI','','','','',0,'','','GUJARAT','INDIA','2012-10-08','Y','13Y',0,0,0,'F','','','+91',9927262014,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-08 10:42:31','','0000-00-00 00:00:00'),(0,18,'',0,'','HARIBHAI G KANJARIYA','','','','',0,'','','GUJARAT','INDIA','1981-10-08','Y','44Y',0,0,0,'F','','','+91',9913545881,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 10:52:51','','0000-00-00 00:00:00'),(0,19,'',0,'','FIROZBHAI B HALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-10-08','Y','43Y',0,0,0,'M','','','+91',9426960286,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 10:55:50','reception','2025-11-19 10:12:40'),(0,20,'',0,'','SATABHAI SUSARA','','','','',0,'BAMABBOR','BAMABBOR','GUJARAT','INDIA','1960-10-08','Y','65Y',0,0,0,'M','','','+91',8758816490,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 10:56:51','drashti','2025-11-12 10:35:32'),(0,21,'',0,'','GORDHANBHAI G RAIYANI','','','DEROY RAJKOT','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-08','Y','65Y',0,0,0,'M','','','+91',8866502272,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-08 10:57:38','janvi','2025-11-14 10:44:10'),(0,22,'',0,'','NARMADABEN J MARU','','','UDAYNAGAR-1, ST NO-2, ','MAVDI CHOWK',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-10-08','Y','73Y',0,0,0,'F','','','+91',9426998707,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 10:59:38','drashti','2025-11-24 12:00:55'),(0,23,'',0,'','MAHESHBHAI S RAJPUT','','','','',0,'','','GUJARAT','INDIA','1980-10-08','Y','45Y',0,0,0,'M','','','+91',9998175913,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-08 11:03:05','','0000-00-00 00:00:00'),(0,24,'',0,'','DILIPBHAI J MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-08','Y','59Y',0,0,0,'M','','','+91',9726714141,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-08 11:08:39','','0000-00-00 00:00:00'),(0,25,'',0,'','MUKESHBHAI VICHHIYA','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1970-10-08','Y','55Y',0,0,0,'M','','','+91',9426438305,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-08 11:10:39','','0000-00-00 00:00:00'),(0,26,'',0,'','ROSHANBEN KADIVAR','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1970-10-08','Y','55Y',0,0,0,'F','','','+91',9725622468,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 11:11:35','reception','2025-12-17 11:09:57'),(0,27,'',0,'','RASILABEN KHEDARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-08','Y','55Y',0,0,0,'F','','','+91',6351133076,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-08 11:11:41','manshi','2025-10-15 10:58:52'),(0,28,'',0,'','JAYABEN  AKBARI','','','LAL PART STREET NO.3 NEAR AHIR CHOWK','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-08','Y','70Y',0,0,0,'F','','','+91',9427238124,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-08 11:12:41','','0000-00-00 00:00:00'),(0,29,'',0,'','ASHABEN SODHIYA','','','','',0,'','','GUJARAT','INDIA','1993-10-08','Y','32Y',0,0,0,'F','','','+91',8238927671,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 11:14:16','reception','2025-11-17 12:57:36'),(0,30,'',0,'','RAJIBEN K BORICHA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1976-10-08','Y','49Y',0,0,0,'F','','','+91',9638257679,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 11:16:16','','0000-00-00 00:00:00'),(0,31,'',0,'','DR R K THORIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-10-08','Y','80Y',0,0,0,'M','','','+91',9825635130,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 11:18:24','','0000-00-00 00:00:00'),(0,32,'',0,'','MAGANBHAI N GONDALIYA','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1966-10-08','Y','59Y',0,0,0,'M','','','+91',9726512003,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 11:19:02','','0000-00-00 00:00:00'),(0,33,'',0,'','JAYDEEPBHAI RAMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-08','Y','36Y',0,0,0,'M','','','+91',7878795969,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 11:19:23','','0000-00-00 00:00:00'),(0,34,'',0,'','JAYNI NAGA GODHANIYA','','','OPP MADHWANI CLG B/H SBI BANK ','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1945-10-08','Y','80Y',0,0,0,'M','','','+91',9427259171,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-08 11:24:24','','0000-00-00 00:00:00'),(0,35,'',0,'','MAHESHBHAI S RAJPUT','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1980-10-08','Y','45Y',0,0,0,'M','','','+91',9998175913,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 11:25:23','','0000-00-00 00:00:00'),(0,36,'',0,'','DAYABHAI KHANPARA ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-10-08','Y','67Y',67,0,0,'M','','','+91',8866218357,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 11:28:49','urvashi','2025-12-03 11:17:39'),(0,37,'',0,'','PANKAJKUMAR SOLANKI','','','HARI NAGAR-4 OPP TULSHI PARK ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-10-08','Y','33Y',0,0,0,'M','','','+91',8866124561,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-08 11:29:13','priyanshi','2025-10-10 09:07:33'),(0,38,'',0,'','SANTOKBEN ODEDARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-08','Y','45Y',0,0,0,'F','','','+91',7990989995,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 11:30:06','','0000-00-00 00:00:00'),(0,39,'',0,'','SEJALBEN H KALARIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-08','Y','48Y',0,0,0,'F','','','+91',8128996066,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 11:32:01','','0000-00-00 00:00:00'),(0,40,'',0,'','HANSOYABEN D VEKARIYA','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1959-10-08','Y','66Y',0,0,0,'F','','','+91',9429169546,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 11:32:43','','0000-00-00 00:00:00'),(0,41,'',0,'','CHARADVA MAHENDRABHAI MANSUKHLAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-08','Y','70Y',0,0,0,'M','','','+91',9974189299,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 11:39:09','','0000-00-00 00:00:00'),(0,42,'',0,'','BABUBHAI P SOLANKI','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1978-10-08','Y','47Y',0,0,0,'M','','','+91',8141020133,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 11:40:41','','0000-00-00 00:00:00'),(0,43,'',0,'','JULEKHABEN M SERASIYA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1960-10-08','Y','65Y',0,0,0,'F','','','+91',9725878258,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 11:41:02','reception','2025-10-24 17:07:30'),(0,44,'',0,'','HIRABA J ZALA','','','ASHTHA SOC, BLOCK NO-135','150 FT RING ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-01-01','N','65Y',0,0,0,'F','','','+91',9825386986,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 11:43:10','vishal','2025-10-12 12:58:51'),(0,45,'',0,'','HITESHBHAI B PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-10-08','Y','43Y',0,0,0,'M','','','+91',9925773778,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 11:43:45','drashti','2025-10-16 18:48:46'),(0,46,'',0,'','KRISHNA CHAUDHAY','','','','',0,'PALI RAJESTHAN','PALI RAJESTHAN','GUJARAT','INDIA','2012-10-08','Y','13Y',0,0,0,'M','','','+91',9727056182,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 11:46:00','','0000-00-00 00:00:00'),(0,47,'',0,'','HINABEN M MAKADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-08','Y','32Y',0,0,0,'F','','','+91',7016200192,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 11:47:59','janvi','2025-10-28 11:00:18'),(0,48,'',0,'','DHIRUBHAI GOHIL','','','NEAR RANUJA TAMPLE KOTHARIYA MAIN ROAD ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-08','Y','75Y',0,0,0,'M','','','+91',6355179949,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-08 11:50:36','','0000-00-00 00:00:00'),(0,49,'',0,'','HARILAL K RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1939-10-08','Y','86Y',0,0,0,'M','','','+91',9427326816,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 11:52:08','','0000-00-00 00:00:00'),(0,50,'',0,'','SUMANBEN SARDHARA','','','','',0,'JASDAN','JASDAN','GUJARAT','INDIA','1955-10-08','Y','70Y',0,0,0,'F','','','+91',9428289907,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 11:55:07','','0000-00-00 00:00:00'),(0,51,'',0,'','VASANTABEN CHAROLA','','','RAVAPAR','',0,'MORBI','MORBI','GUJARAT','INDIA','1978-10-08','Y','47Y',0,0,0,'F','','','+91',9879531102,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-08 11:56:05','','0000-00-00 00:00:00'),(0,52,'',0,'','MITEN P CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-10-08','Y','19Y',0,0,0,'M','','','+91',8866047775,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 11:57:18','','0000-00-00 00:00:00'),(0,53,'',0,'','TAMUBEN ZAPDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-10-08','Y','21Y',0,0,0,'F','','','+91',9638536345,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 11:57:29','reception','2025-11-27 16:14:48'),(0,54,'',0,'','MIRABEN D CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-08','Y','36Y',0,0,0,'F','','','+91',9106558307,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 11:59:26','','0000-00-00 00:00:00'),(0,55,'',0,'','JALPABEN C MASHRU','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1979-10-08','Y','46Y',0,0,0,'F','','','+91',9879234592,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 12:00:08','reception','2025-11-27 11:32:02'),(0,56,'',0,'','JAGRUTIBEN P CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-10-04','N','49Y',0,0,0,'F','','','+91',9426443543,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-08 12:07:46','janvi','2025-12-12 11:14:58'),(0,57,'',0,'','SMIT BHORANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-10-08','Y','24Y',0,0,0,'M','','','+91',9998464818,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-08 12:08:14','','0000-00-00 00:00:00'),(0,58,'',0,'','NARENDRABHAI N GADHIYA ','','','','',0,'RAJULA','RAJULA','GUJARAT','INDIA','1972-10-08','Y','53Y',0,0,0,'M','','','+91',9904061251,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 12:08:15','reception','2025-12-23 13:12:13'),(0,59,'',0,'','SAMUBEN DONGA','','','','',0,'JAMKANDOLA','JAMKANDOLA','GUJARAT','INDIA','1940-10-08','Y','85Y',85,0,0,'F','','','+91',9687064833,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 12:09:04','drashti','2025-10-08 12:47:18'),(0,60,'',0,'','BHASKARBHAI R BHATT','','','RUSHIVATIKA DHARAM NAGAR MAIN ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-08','Y','52Y',0,0,0,'M','','','+91',9712415556,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-08 12:11:01','','0000-00-00 00:00:00'),(0,61,'',0,'','MEERABEN CHAVDA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1989-10-08','Y','36Y',0,0,0,'F','','','+91',9106558307,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-08 12:12:08','manshi','2025-10-29 18:19:27'),(0,62,'',0,'','DIMPALBEN SONARIYA','','','SANTOSHPARK MAIN ROAD RAIYA ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-10-08','Y','29Y',0,0,0,'F','','','+91',9712013777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-08 12:13:52','drashti','2025-10-14 18:31:05'),(0,63,'',0,'','KACHRABHAI VALA','','','DHELONA,MANGROL','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1971-10-08','Y','54Y',0,0,0,'M','','','+91',8238837631,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-08 12:20:02','janvi','2025-10-17 09:21:54'),(0,64,'',0,'','MALABEN R NICHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-10-08','Y','54Y',0,0,0,'F','','','+91',9925371595,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 12:21:01','janvi','2025-10-29 19:53:55'),(0,65,'',0,'','GODAVARIBEN SAPARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-08','Y','68Y',0,0,0,'F','','','+91',9409677777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 12:23:42','','0000-00-00 00:00:00'),(0,66,'',0,'','DAYABHAI MANJIBHAI  KHANPARA','','','RAJKOT','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-10-08','Y','67Y',0,0,0,'M','','','+91',8866218357,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-08 12:23:43','drashti','2025-10-24 18:43:51'),(0,67,'',0,'','BHAVNABEN P SOLANKI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-08','Y','52Y',0,0,0,'F','','','+91',6354383521,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 12:25:03','','0000-00-00 00:00:00'),(0,68,'',0,'','KAUSHIKBHAI SONI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-08','Y','58Y',0,0,0,'M','','','+91',9898440428,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 12:25:55','janvi','2025-10-16 18:15:31'),(0,69,'',0,'','LAKHIBEN V MODHVADIYA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1965-10-08','Y','60Y',0,0,0,'M','','','+91',8160370105,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 12:27:21','','0000-00-00 00:00:00'),(0,70,'',0,'','ANITABEN V SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-08','Y','45Y',0,0,0,'F','','','+91',9879771777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 12:31:01','','0000-00-00 00:00:00'),(0,71,'',0,'','TANVIBEN V SOLANKI','','','UNIVERSITY ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-10-08','Y','26Y',0,0,0,'F','','','+91',9879771777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 12:31:35','vishal','2025-10-11 14:11:10'),(0,72,'',0,'','MAHIPATSINH JARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-10-08','Y','21Y',21,0,0,'M','','','+91',9408043999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 12:32:40','janvi','2025-10-08 12:33:26'),(0,73,'',0,'','HARSHADBHAI R JAYSWAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-10-08','Y','54Y',0,0,0,'M','','','+91',9824220296,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 12:37:11','','0000-00-00 00:00:00'),(0,74,'',0,'','VIKRAMSINH VADHER','','','','',0,'DWARKA','DWARKA','GUJARAT','INDIA','1960-10-08','Y','65Y',0,0,0,'M','','','+91',9726503793,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 12:49:06','drashti','2025-10-31 11:55:58'),(0,75,'',0,'','REKHABEN VIJ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-10-08','Y','69Y',0,0,0,'F','','','+91',9824294235,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 13:00:26','urvashi','2025-12-16 18:34:49'),(0,76,'',0,'','SHITALBEN PATIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-10-08','Y','31Y',0,0,0,'F','','','+91',9558385808,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 13:01:34','','0000-00-00 00:00:00'),(0,77,'',0,'','SUKHDEVSINH GOHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-08','Y','56Y',0,0,0,'M','','','+91',9327791701,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 13:14:07','','0000-00-00 00:00:00'),(0,78,'',0,'','SURESHBHAI N VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-10-08','Y','76Y',0,0,0,'M','','','+91',8238059559,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-08 13:17:57','drashti','2025-10-13 11:27:50'),(0,79,'',0,'','PRIYABEN PANDEY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-08','Y','35Y',0,0,0,'F','','','+91',7888919480,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 13:22:52','reception','2025-12-11 18:10:08'),(0,80,'',0,'','VIHAN S PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2012-10-08','Y','13Y',0,0,0,'M','','','+91',9824812396,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-08 15:40:07','manshi','2025-10-13 18:24:26'),(0,81,'',0,'','DHYANI S PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-10-08','Y','18Y',0,0,0,'F','','','+91',9824812396,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-08 15:40:50','manshi','2025-10-18 11:30:48'),(0,82,'',0,'','YUNUSHBHAI SERASIYA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1967-10-08','Y','58Y',0,0,0,'M','','','+91',9824516787,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-08 15:50:20','','0000-00-00 00:00:00'),(0,83,'',0,'','PARTH SUKHANANDI ','','','','',0,'SION PHARMA','SION PHARMA','GUJARAT','INDIA','2003-10-08','Y','22Y',22,0,0,'M','','','+91',6355074154,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-08 16:12:11','reception','2025-12-03 15:58:28'),(0,84,'',0,'','JAYDEEP BAMBHANIYA','','','','',0,'ZUVENTUS PHARMA','ZUVENTUS PHARMA','GUJARAT','INDIA','2000-10-08','Y','25Y',25,0,0,'M','','','+91',9738534444,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-08 16:33:34','priyanshi','2025-10-08 16:40:49'),(0,85,'',0,'','NIKHIL MEHTA','','','','',0,'AROHI PHARMA','AROHI PHARMA','GUJARAT','INDIA','1972-10-08','Y','53Y',0,0,0,'M','','','+91',9327780840,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-08 16:38:38','reception','2025-12-10 16:39:50'),(0,86,'',0,'','SUBHASH JAJAL','','','','',0,'AVIOX PHARMA','AVIOX PHARMA','GUJARAT','INDIA','1991-10-08','Y','34Y',0,0,0,'M','','','+91',9173870776,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-08 16:39:25','reception','2025-11-14 16:34:14'),(0,87,'',0,'','MEHULBHAI DESAI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1990-10-08','Y','35Y',0,0,0,'M','','','+91',9726133011,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 16:41:25','reception','2025-10-18 11:09:48'),(0,88,'',0,'','HIRABEN V UPADHYAY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-10-08','Y','73Y',0,0,0,'F','','','+91',9537306863,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 16:51:04','','0000-00-00 00:00:00'),(0,89,'',0,'','RAMABEN DAVE','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1956-10-08','Y','69Y',0,0,0,'F','','','+91',9979408886,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:00:50','reception','2025-12-08 10:49:36'),(0,90,'',0,'','JAYBHAI V VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-08','Y','32Y',0,0,0,'M','','','+91',7698677769,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 17:05:14','reception','2025-10-27 17:19:10'),(0,91,'',0,'','HASMUKHBHAI L BHIMANI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-10-08','Y','57Y',0,0,0,'M','','','+91',9428570106,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:06:50','reception','2025-12-22 16:47:16'),(0,92,'',0,'','NEETABEN PARMAR','','','','',0,'DHORAJI','DHORAJI','GUJARAT','INDIA','1973-10-08','Y','52Y',0,0,0,'F','','','+91',9904583464,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:07:52','','0000-00-00 00:00:00'),(0,93,'',0,'','SHANTABEN JAGANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-10-08','Y','80Y',0,0,0,'F','','','+91',9924915156,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:09:26','','0000-00-00 00:00:00'),(0,94,'',0,'','ASHISH VEKARIYA','','','ENTOR PHARMA','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-08','Y','32Y',0,0,0,'M','','','+91',9662009237,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:14:28','urvashi','2025-12-10 16:30:59'),(0,95,'',0,'','AVANTIKABEN BHALARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-08','Y','40Y',0,0,0,'F','','','+91',8200205350,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:14:58','','0000-00-00 00:00:00'),(0,96,'',0,'','BHAVNABEN VISAVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-08','Y','38Y',0,0,0,'F','','','+91',9275174891,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:15:44','','0000-00-00 00:00:00'),(0,97,'',0,'','HARESHBHAI CHARANIYA','','','','',0,'MUNDRA KUTCH','MUNDRA KUTCH','GUJARAT','INDIA','2000-10-08','Y','25Y',0,0,0,'M','','','+91',7016628780,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 17:15:58','','0000-00-00 00:00:00'),(0,98,'',0,'','KEVALL N SAKARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-10-08','Y','34Y',0,0,0,'M','','','+91',9427941732,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:20:21','','0000-00-00 00:00:00'),(0,99,'',0,'','SONALBEN KANANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-08','Y','55Y',0,0,0,'F','','','+91',9429096589,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:26:19','','0000-00-00 00:00:00'),(0,100,'',0,'','SANJAYBHAI R PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-08','Y','35Y',0,0,0,'M','','','+91',8200778160,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:26:48','reception','2025-12-08 18:52:49'),(0,101,'',0,'','MUKESHBHAI GOHEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-08','Y','45Y',0,0,0,'M','','','+91',9586456081,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:27:58','','0000-00-00 00:00:00'),(0,102,'',0,'','BHANUBEN K RANVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-10-08','Y','49Y',0,0,0,'F','','','+91',9327050609,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:30:19','','0000-00-00 00:00:00'),(0,103,'',0,'','CHANDRAJITSINH A JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-08','Y','53Y',0,0,0,'M','','','+91',9898034455,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 17:31:36','','0000-00-00 00:00:00'),(0,104,'',0,'','KIRANBEN SHUKLA','','','','',0,'JASDAN','JASDAN','GUJARAT','INDIA','1979-10-08','Y','46Y',0,0,0,'F','','','+91',8128882058,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:36:06','','0000-00-00 00:00:00'),(0,105,'',0,'','DEVANGIBEN JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-10-08','Y','31Y',0,0,0,'F','','','+91',9913693314,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 17:37:32','drashti','2025-11-05 17:04:20'),(0,106,'',0,'','MEHULBHAI GOHEL','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1979-10-08','Y','46Y',0,0,0,'M','','','+91',9909914800,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:38:38','','0000-00-00 00:00:00'),(0,107,'',0,'','PRITI THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-08','Y','60Y',0,0,0,'F','','','+91',9374101235,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:41:41','','0000-00-00 00:00:00'),(0,108,'',0,'','JEMINI THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-08','Y','64Y',0,0,0,'F','','','+91',9374101235,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:43:23','','0000-00-00 00:00:00'),(0,109,'',0,'','HEENABEN RAITHATHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-08','Y','55Y',55,0,0,'F','','','+91',9904718840,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-08 17:44:12','urvashi','2025-10-08 17:45:15'),(0,110,'',0,'','KAUSHAL TALERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-10-08','Y','24Y',0,0,0,'M','','','+91',9824368399,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:46:05','','0000-00-00 00:00:00'),(0,111,'',0,'','RAMABEN P DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-10-08','Y','41Y',0,0,0,'F','','','+91',8264028972,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 17:48:59','janvi','2025-10-13 17:41:27'),(0,112,'',0,'','BHARATBHAI L JILKA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-08','Y','50Y',0,0,0,'M','','','+91',9879362400,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-08 17:52:19','urvashi','2025-12-03 10:41:49'),(0,113,'',0,'','GOPALBHAI R VALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-08','Y','51Y',0,0,0,'M','','','+91',9277808048,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-08 17:53:41','','0000-00-00 00:00:00'),(0,114,'',0,'','KOMAL PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-08','Y','36Y',0,0,0,'M','','','+91',9409444535,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:54:33','','0000-00-00 00:00:00'),(0,115,'',0,'','ASHWINBHAI MEGHAPARA ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-08','Y','64Y',0,0,0,'M','','','+91',7698888896,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 17:57:16','','0000-00-00 00:00:00'),(0,116,'',0,'','HARDIKBHAI MAHETA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-08','Y','40Y',0,0,0,'M','','','+91',9099925349,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-08 18:00:15','manshi','2025-10-18 18:12:51'),(0,117,'',0,'','MEGHNABEN SUCHAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-08','Y','32Y',0,0,0,'F','','','+91',8460677761,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-08 18:06:03','','0000-00-00 00:00:00'),(0,118,'',0,'','JAGDISHBHAI J CHHATROLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-10-08','Y','61Y',0,0,0,'M','','','+91',6355995721,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-08 18:07:27','','0000-00-00 00:00:00'),(0,119,'',0,'','JENTILAL S RAMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-08','Y','58Y',0,0,0,'M','','','+91',9662635554,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-08 18:08:43','','0000-00-00 00:00:00'),(0,120,'',0,'','MANSUKHBHAI P AJUDIYA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1965-10-08','Y','60Y',0,0,0,'M','','','+91',9879993222,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 18:09:45','janvi','2025-11-28 18:33:03'),(0,121,'',0,'','SAVITABEN M AJUDIYA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1975-10-08','Y','50Y',0,0,0,'F','','','+91',9879993222,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 18:10:44','janvi','2025-11-28 18:32:17'),(0,122,'',0,'','KAPILBHAI BADIYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-08','Y','59Y',0,0,0,'M','','','+91',8264499999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-08 18:10:53','janvi','2025-11-06 11:17:47'),(0,123,'',0,'','DIVYESHBHAI N AMLANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-08','Y','40Y',0,0,0,'M','','','+91',9824560771,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 18:12:51','','0000-00-00 00:00:00'),(0,124,'',0,'','NILABEN N KANSARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-10-08','Y','63Y',0,0,0,'F','','','+91',9426413029,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-08 18:14:52','','0000-00-00 00:00:00'),(0,125,'',0,'','RATANBEN JOGRANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-08','Y','50Y',0,0,0,'F','','','+91',7211111038,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 18:15:22','janvi','2025-10-16 11:28:26'),(0,126,'',0,'','JAVEDBHAI DAIYA','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1972-10-08','Y','53Y',0,0,0,'M','','','+91',9879778601,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-08 18:20:23','','0000-00-00 00:00:00'),(0,127,'',0,'','ASHISHBHAI J CHAVDA','','','RAJPUT SHERI, MADHAPAR CHOWK,','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-08','Y','38Y',0,0,0,'M','','','+91',9426961652,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 18:21:44','janvi','2025-10-30 11:35:32'),(0,128,'',0,'','TOFIKBHAI DAIYA','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1996-10-08','Y','29Y',0,0,0,'M','','','+91',9726778692,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-08 18:24:03','janvi','2025-10-25 18:41:58'),(0,129,'',0,'','ASMITABEN KANSAGRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-10-08','Y','29Y',0,0,0,'F','','','+91',9033151312,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 18:25:25','janvi','2025-11-28 19:16:29'),(0,130,'',0,'','LEENABEN SINGRAKHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-08','Y','48Y',0,0,0,'F','','','+91',9727570487,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 18:28:46','','0000-00-00 00:00:00'),(0,131,'',0,'','NITABEN KATKORIYA','','','','',0,'RAJAKOT','RAJAKOT','GUJARAT','INDIA','1959-10-08','Y','66Y',0,0,0,'F','','','+91',9426974121,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 18:29:33','','0000-00-00 00:00:00'),(0,132,'',0,'','KANTIBHAI V ZALAVADIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-08','Y','65Y',0,0,0,'M','','','+91',7405705540,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-08 18:33:37','','0000-00-00 00:00:00'),(0,133,'',0,'','HARSHABEN V DAVE','','','','',0,'','','GUJARAT','INDIA','1976-10-08','Y','49Y',0,0,0,'F','','','+91',9825073885,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 18:38:22','','0000-00-00 00:00:00'),(0,134,'',0,'','JAYABEN PRASAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-08','Y','53Y',0,0,0,'F','','','+91',9898846228,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-08 18:41:14','','0000-00-00 00:00:00'),(0,135,'',0,'','SHILPABEN RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-08','Y','60Y',0,0,0,'F','','','+91',9377812840,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 18:42:15','','0000-00-00 00:00:00'),(0,136,'',0,'','SANJAYBHAI VIDJA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1985-10-08','Y','40Y',0,0,0,'M','','','+91',7265977897,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 18:43:25','','0000-00-00 00:00:00'),(0,137,'',0,'','BINABEN P DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-08','Y','51Y',0,0,0,'F','','','+91',9924983018,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 18:46:23','','0000-00-00 00:00:00'),(0,138,'',0,'','KHYATIBEN THAKKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-08','Y','39Y',0,0,0,'F','','','+91',9228180412,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 18:48:31','drashti','2025-12-17 18:48:08'),(0,139,'',0,'','JAYBHAI K KALARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-10-08','Y','33Y',0,0,0,'M','','','+91',9879470878,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 18:51:53','','0000-00-00 00:00:00'),(0,140,'',0,'','MANSURBHAI H SHEIKH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-08','Y','55Y',0,0,0,'M','','','+91',9824557716,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-08 18:53:53','','0000-00-00 00:00:00'),(0,141,'',0,'',' SHEKH RASIDABEN MANSURBHAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-08','Y','52Y',0,0,0,'F','','','+91',9824557716,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-08 18:54:57','','0000-00-00 00:00:00'),(0,142,'',0,'','KESHAVBHAI T TERAIYA','','401','VARANYAM PARADISE, 7 NILKANTH NAGAR,','UNIVERSITY ROAD,',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1936-10-11','Y','89Y',0,0,0,'M','','','+91',9909298450,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 18:55:45','manshi','2025-11-14 18:13:48'),(0,143,'',0,'','AVNI KARIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-08','Y','40Y',0,0,0,'F','','','+91',9429340399,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 19:01:42','','0000-00-00 00:00:00'),(0,144,'',0,'','DIPTIBEN KANABAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-08','Y','50Y',0,0,0,'F','','','+91',9879331401,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-08 19:07:17','','0000-00-00 00:00:00'),(0,145,'',0,'','VIHAN PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2012-10-08','Y','13Y',13,0,0,'M','','','+91',9428838129,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 19:07:36','reception','2025-10-13 18:22:53'),(0,146,'',0,'','KETAN NAGJIBHAI MAKWANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-10-08','Y','33Y',0,0,0,'M','','','+91',8511136302,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-08 19:13:10','priyanshi','2025-10-25 09:01:43'),(0,147,'',0,'','AARTI P UKANI','','','','',0,'METODA','METODA','GUJARAT','INDIA','1989-10-08','Y','36Y',0,0,0,'F','','','+91',9998283278,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-08 19:16:17','','0000-00-00 00:00:00'),(0,148,'',0,'','GEETABEN LOKHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-08','Y','40Y',0,0,0,'F','','','+91',9727809012,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-08 19:17:44','manshi','2025-10-13 18:37:51'),(0,149,'',0,'','ISHWARBHAI VAGHELA','','','','',0,'JAMJODHPUR','JAMJODHPUR','GUJARAT','INDIA','1950-10-08','Y','75Y',0,0,0,'M','','','+91',7016575959,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 19:20:23','','0000-00-00 00:00:00'),(0,150,'',0,'','GAUTAMBHAI AKBARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-08','Y','36Y',0,0,0,'M','','','+91',8905567850,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-08 19:32:12','','0000-00-00 00:00:00'),(0,151,'',0,'','HETALBEN TOGADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-10-08','Y','31Y',0,0,0,'F','','','+91',9714707438,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 19:32:29','urvashi','2025-11-19 18:29:29'),(0,152,'',0,'','RATANBEN JOGRANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-08','Y','50Y',0,0,0,'F','','','+91',7211111038,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-08 19:35:16','','0000-00-00 00:00:00'),(0,153,'',0,'','VAJA PRAVINKUMAR','','','','',0,'TALALA GIR','TALALA GIR','GUJARAT','INDIA','1989-10-08','Y','36Y',0,0,0,'M','','','+91',7284936237,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-08 19:44:17','','0000-00-00 00:00:00'),(0,154,'',0,'','NIPABEN GHUTLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-08','Y','38Y',0,0,0,'F','','','+91',9879119377,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-08 19:45:05','','0000-00-00 00:00:00'),(0,155,'',0,'','BHAVANIBA JADEJA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1999-10-08','Y','26Y',0,0,0,'F','','','+91',9427441041,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-08 19:48:14','','0000-00-00 00:00:00'),(0,156,'',0,'','CHAVNI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-08','Y','42Y',0,0,0,'F','','','+91',8014275747,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-08 19:51:53','','0000-00-00 00:00:00'),(0,157,'',0,'','ASHABA V VALA ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-08','Y','38Y',0,0,0,'F','','','+91',9727702727,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-08 20:09:47','','0000-00-00 00:00:00'),(0,158,'',0,'','PANKAJBHAI SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-10-09','Y','33Y',0,0,0,'M','','','+91',8866124561,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 09:05:22','reception','2025-10-13 10:18:46'),(0,159,'',0,'','PRISHABEN GOHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2023-10-09','Y','02Y0M',0,0,0,'F','','','+91',9909988560,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 09:07:03','','0000-00-00 00:00:00'),(0,160,'',0,'','MINABEN DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-10-09','Y','67Y',0,0,0,'F','','','+91',7990774544,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 09:10:07','','0000-00-00 00:00:00'),(0,161,'',0,'','LABHSHANKARBHAI TRIVEDI                                                                     ','','','JANAKPURI SOC','SADHUVASVANI ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-09','Y','75Y',0,0,0,'M','','','+91',9825354568,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 09:18:44','drashti','2025-10-27 12:52:31'),(0,162,'',0,'','RANJANBEN DANGAR','','','MORBI ROAD','SAGAR PARK',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-09','Y','35Y',0,0,0,'F','','','+91',9898369677,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-09 09:35:58','','0000-00-00 00:00:00'),(0,163,'',0,'','PRAKASHBHAI VANPARIYA','','','','',0,'KESHOD','KESHOD','GUJARAT','INDIA','1963-10-09','Y','62Y',0,0,0,'M','','','+91',9712320042,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 09:43:55','reception','2025-11-24 10:16:31'),(0,164,'',0,'','BHARTIBEN DOBARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-09','Y','58Y',0,0,0,'F','','','+91',9427164187,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 09:47:56','','0000-00-00 00:00:00'),(0,165,'',0,'','RAVIRAJSINH HEMANTSINH RATHOD','','','SHREE RAM KRUPA,','ASTRON SOC, AMIN MARG',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-02-24','N','44Y',0,0,0,'M','','','+91',9925555555,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-09 09:49:18','riya','2025-10-13 21:36:04'),(0,166,'',0,'','JIGNESHBHAI K MARU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-10-09','Y','22Y',0,0,0,'M','','','+91',9265616173,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 10:10:37','','0000-00-00 00:00:00'),(0,167,'',0,'','HANSHABEN J THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-10-09','Y','67Y',0,0,0,'F','','','+91',9426996840,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 10:17:38','','0000-00-00 00:00:00'),(0,168,'',0,'','PUSHPABEN RANGANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-09','Y','42Y',0,0,0,'F','','','+91',9712662037,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 10:27:25','reception','2025-12-13 09:36:53'),(0,169,'',0,'','SAMJUBEN SABHAYA','','','','',0,'LODHIKA','LODHIKA','GUJARAT','INDIA','1972-10-09','Y','53Y',0,0,0,'F','','','+91',6353443117,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 10:34:58','reception','2025-12-09 11:27:43'),(0,170,'',0,'','JAYSHREEBEN M CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-10-09','Y','37Y',0,0,0,'F','','','+91',9998844321,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 10:36:35','reception','2025-12-23 10:21:37'),(0,171,'',0,'','PARSHOTAMBHAI SONGRA','','','','',0,'KALYANPUR ','KALYANPUR ','GUJARAT','INDIA','1973-10-09','Y','52Y',0,0,0,'M','','','+91',9723282714,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 10:37:55','reception','2025-11-07 10:29:42'),(0,172,'',0,'','BHANUBEN PIPALVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-09','Y','65Y',0,0,0,'F','','','+91',9128223305,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 10:39:59','','0000-00-00 00:00:00'),(0,173,'',0,'','MANJULABEN PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-09','Y','53Y',0,0,0,'F','','','+91',6354348439,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 10:42:43','','0000-00-00 00:00:00'),(0,174,'',0,'','BHIMABHAI N ODEDARA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1970-10-09','Y','55Y',55,0,0,'M','','','+91',9879578089,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 10:44:28','shweta','2025-10-09 11:22:59'),(0,175,'',0,'','PRAMILABEN PADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-10-09','Y','72Y',0,0,0,'F','','','+91',7574861689,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 10:46:52','','0000-00-00 00:00:00'),(0,176,'',0,'','KHUSHI B BHORANIYA','','','','',0,'ROHISHALA','ROHISHALA','GUJARAT','INDIA','2008-10-09','Y','17Y',0,0,0,'F','','','+91',9157102508,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-09 10:48:37','','0000-00-00 00:00:00'),(0,177,'',0,'','BIPINBHAI GANATRA','','','','',0,'BARODA','BARODA','GUJARAT','INDIA','1958-10-09','Y','67Y',0,0,0,'M','','','+91',9925903009,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 10:48:57','reception','2025-12-05 11:45:34'),(0,178,'',0,'','SUHASI PARMAR','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','2008-10-09','Y','17Y',0,0,0,'F','','','+91',9909043743,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 10:50:57','janvi','2025-10-27 13:51:33'),(0,179,'',0,'','JYOTIBEN UKANI','','','SHANTI HIGHTS, FLAT NO-202,','AKASHVANI CHOWK, UNIVERSITY ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-09','Y','60Y',0,0,0,'F','','','+91',9924445600,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 10:51:45','janvi','2025-11-11 10:28:50'),(0,180,'',0,'','PRACHIBEN VEKARIYA','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','2008-10-09','Y','17Y',0,0,0,'F','','','+91',9879105404,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 10:52:10','','0000-00-00 00:00:00'),(0,181,'',0,'','TAPIBEN M KUMBHARVADIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1964-10-09','Y','61Y',61,0,0,'F','','','+91',9824458134,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 10:52:59','reception','2025-11-18 10:46:04'),(0,182,'',0,'','CHHOTUBHAI H SHUDHAGUNIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-09','Y','60Y',0,0,0,'M','','','+91',8980088587,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 10:54:55','','0000-00-00 00:00:00'),(0,183,'',0,'','KUSHANT BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-10-09','Y','23Y',0,0,0,'M','','','+91',7878265247,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 10:57:53','','0000-00-00 00:00:00'),(0,184,'',0,'','AISHVARIYA SONI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-10-09','Y','28Y',28,0,0,'F','','','+91',7041400008,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 10:59:16','drashti','2025-10-14 11:03:37'),(0,185,'',0,'','JAMBA VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1935-10-09','Y','90Y',90,0,0,'F','','','+91',9924224176,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 11:01:13','urvashi','2025-10-09 11:03:42'),(0,186,'',0,'','HIRALBEN KAMBALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-10-09','Y','46Y',0,0,0,'F','','','+91',9998108462,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 11:06:38','','0000-00-00 00:00:00'),(0,187,'',0,'','SARTHAK HIRAPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2013-10-09','Y','12Y',0,0,0,'M','','','+91',7202904505,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 11:09:08','','0000-00-00 00:00:00'),(0,188,'',0,'','LAKHUBEN S MAKWANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-09','Y','52Y',0,0,0,'F','','','+91',9426222140,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 11:12:24','janvi','2025-12-05 18:36:29'),(0,189,'',0,'','DINESHBHAI RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-09','Y','68Y',0,0,0,'M','','','+91',8000010444,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 11:13:26','','0000-00-00 00:00:00'),(0,190,'',0,'','LILAVANTIBEN K AMIPARA','','','','',0,'VISHAVADAR','VISHAVADAR','GUJARAT','INDIA','1970-10-09','Y','55Y',0,0,0,'F','','','+91',9687250884,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 11:21:44','drashti','2025-10-15 18:30:24'),(0,191,'',0,'','JAYBHAI B PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-10-09','Y','18Y',0,0,0,'M','','','+91',9825715433,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-09 11:24:22','manshi','2025-12-01 12:21:36'),(0,192,'',0,'','TULSIBHAI P SANGHANI','','','','',0,'','','GUJARAT','INDIA','1965-10-09','Y','60Y',0,0,0,'M','','','+91',8758005823,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 11:25:18','','0000-00-00 00:00:00'),(0,193,'',0,'','BHAMASHA R MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-10-09','Y','66Y',0,0,0,'M','','','+91',9824080498,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 11:29:18','drashti','2025-11-29 11:04:59'),(0,194,'',0,'','SAROJBEN B KATHROTIYA','','','','',0,'JANJMER','JANJMER','GUJARAT','INDIA','1961-10-09','Y','64Y',0,0,0,'F','','','+91',9898281471,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 11:30:17','priyanshi','2025-10-15 09:39:23'),(0,195,'',0,'','KAUSHIKRAI N JANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-10-09','Y','80Y',0,0,0,'M','','','+91',9033158876,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 11:32:30','drashti','2025-10-27 12:56:07'),(0,196,'',0,'','BHAVNABEN B TANNA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1982-10-09','Y','43Y',0,0,0,'F','','','+91',9924790050,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 11:36:59','','0000-00-00 00:00:00'),(0,197,'',0,'','MEERABEN CHAVDA','','','MAVDI PLOT KRISHNA NAGAR MAIN ROAD KRISHNA NAGAR-4','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-09','Y','35Y',0,0,0,'F','','','+91',9974376299,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 11:39:01','riya','2025-10-26 12:18:42'),(0,198,'',0,'','MEERABEN G DULANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-09','Y','64Y',0,0,0,'F','','','+91',8140009342,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 11:39:12','reception','2025-12-11 11:40:16'),(0,199,'',0,'','SEEMABEN R BHATT','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1981-10-09','Y','44Y',0,0,0,'F','','','+91',9574760234,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 11:43:11','','0000-00-00 00:00:00'),(0,200,'',0,'','ANSUYABEN K. RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-09','Y','62Y',0,0,0,'F','','','+91',7878241410,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 11:46:05','janvi','2025-11-28 18:20:54'),(0,201,'',0,'','SHEIKH MANJURHAQUE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-09','Y','32Y',0,0,0,'M','','','+91',9998379939,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 11:50:14','','0000-00-00 00:00:00'),(0,202,'',0,'','BHARATBHAI N ODEDRA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1986-10-09','Y','39Y',0,0,0,'M','','','+91',7874757545,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 11:52:47','','0000-00-00 00:00:00'),(0,203,'',0,'','RINABEN SHILU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-09','Y','35Y',0,0,0,'F','','','+91',7201077477,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 11:55:20','','0000-00-00 00:00:00'),(0,204,'',0,'','KUNDANBEN CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-09','Y','56Y',0,0,0,'F','','','+91',9924462732,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 12:04:21','janvi','2025-11-20 12:43:48'),(0,205,'',0,'','KAJALBEN P GAMI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1990-10-09','Y','35Y',0,0,0,'F','','','+91',9638243171,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 12:07:49','','0000-00-00 00:00:00'),(0,206,'',0,'','ZIKARBHAI H POTHIYAWALA','','','','',0,'DHORAJI','DHORAJI','GUJARAT','INDIA','1956-10-09','Y','69Y',0,0,0,'M','','','+91',7874478692,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 12:12:32','reception','2025-12-10 12:16:59'),(0,207,'',0,'','JAYABEN G SAHAYTA','','','','',0,'DHANGADHRA','DHANGADHRA','GUJARAT','INDIA','1953-10-09','Y','72Y',0,0,0,'F','','','+91',9265772680,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 12:16:44','','0000-00-00 00:00:00'),(0,208,'',0,'','SONALBEN GAJJAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-09','Y','42Y',0,0,0,'F','','','+91',9825305353,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-09 12:18:21','','0000-00-00 00:00:00'),(0,209,'',0,'','VINUBHAI A RAJPARA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1949-10-09','Y','76Y',0,0,0,'M','','','+91',9925647297,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 12:19:53','','0000-00-00 00:00:00'),(0,210,'',0,'','BHARGAVBHAI KACHHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-10-09','Y','22Y',0,0,0,'M','','','+91',9664633122,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 12:22:14','','0000-00-00 00:00:00'),(0,211,'',0,'','RAMANBHAI VORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1938-10-09','Y','87Y',0,0,0,'M','','','+91',9601272076,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 12:30:44','','0000-00-00 00:00:00'),(0,212,'',0,'','NALINIBEN B SHETH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-09','Y','38Y',0,0,0,'F','','','+91',8530414621,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 12:42:48','reception','2025-12-01 12:51:17'),(0,213,'',0,'','VIJAYBHAI KOTECHA','','','','',0,'','','GUJARAT','INDIA','1991-10-09','Y','34Y',0,0,0,'M','','','+91',9974017293,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 12:44:28','janvi','2025-11-10 18:16:46'),(0,214,'',0,'','RANJANBEN G SACHDEV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-09','Y','70Y',0,0,0,'F','','','+91',8160674257,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 12:54:07','drashti','2025-10-17 18:05:46'),(0,215,'',0,'','HEENABEN R BHARVADA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-10-09','Y','57Y',0,0,0,'F','','','+91',9427725254,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 13:01:51','','0000-00-00 00:00:00'),(0,216,'',0,'','JAYESHBHAI NAKIYA','','','','',0,'HIRASAR RAJKOT','HIRASAR RAJKOT','GUJARAT','INDIA','1993-10-09','Y','32Y',0,0,0,'M','','','+91',6355245070,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 13:05:28','','0000-00-00 00:00:00'),(0,217,'',0,'','NARSHIBHAI G PARMAR ','','','','',0,'DWARKA','DWARKA','GUJARAT','INDIA','1974-10-09','Y','51Y',0,0,0,'M','','','+91',9726617245,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 13:43:25','','0000-00-00 00:00:00'),(0,218,'',0,'','PAYALBA A JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-10-09','Y','44Y',0,0,0,'F','','','+91',9328930745,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 13:46:16','','0000-00-00 00:00:00'),(0,219,'',0,'','BHANABHAI R PARMAR','','','','',0,'GIR SOMANTH','GIR SOMANTH','GUJARAT','INDIA','1965-10-09','Y','60Y',0,0,0,'M','','','+91',6352229058,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 16:28:49','','0000-00-00 00:00:00'),(0,220,'',0,'','JAYBHAI S VAGADIYA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','2000-10-09','Y','25Y',0,0,0,'M','','','+91',8320053907,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 16:41:55','reception','2025-11-07 17:10:08'),(0,221,'',0,'','JENTIBHAI BHAYANI','','','','',0,'BHESAN','BHESAN','GUJARAT','INDIA','1961-10-09','Y','64Y',0,0,0,'M','','','+91',9974970637,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 16:41:58','reception','2025-12-22 11:25:40'),(0,222,'',0,'','MADHVI M TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-10-09','Y','41Y',0,0,0,'F','','','+91',9825231484,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 16:45:29','','0000-00-00 00:00:00'),(0,223,'',0,'','ASHOKBHAI J SOLANKI','','','','',0,'DIU','DIU','GUJARAT','INDIA','1975-10-09','Y','50Y',0,0,0,'M','','','+91',7574045939,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 16:54:14','reception','2025-11-14 16:39:41'),(0,224,'',0,'','BHANUBEN VARSANI','','','VIDHYUTNAGAR, ','ASTRON SOC',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-09','Y','55Y',0,0,0,'F','','','+91',9978938438,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 16:54:14','janvi','2025-11-04 18:03:43'),(0,225,'',0,'','DAKSHABEN R FICHADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-10-09','Y','54Y',0,0,0,'F','','','+91',9979677858,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 17:01:51','reception','2025-11-18 17:02:53'),(0,226,'',0,'','JUMANABEN HIRANI ','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1957-10-09','Y','68Y',0,0,0,'F','','','+91',9723052786,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 17:08:17','reception','2025-10-31 18:10:25'),(0,227,'',0,'','BABUBHAI B  MEVASIYA','','','','',0,'VIRNAGAR','VIRNAGAR','GUJARAT','INDIA','1970-10-09','Y','55Y',55,0,0,'M','','','+91',8849410596,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 17:15:30','shweta','2025-10-09 18:27:56'),(0,228,'',0,'','JAMANBHAI AGHERA','','','','',0,'PITHAD','PITHAD','GUJARAT','INDIA','1970-10-09','Y','55Y',55,0,0,'M','','','+91',7818880808,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 17:19:38','shweta','2025-10-09 17:44:39'),(0,229,'',0,'','MULJIBHAI D KANJARIYA','','','','',0,'DWARKA','DWARKA','GUJARAT','INDIA','1992-10-09','Y','33Y',0,0,0,'M','','','+91',9624722248,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 17:24:11','janvi','2025-10-25 12:49:01'),(0,230,'',0,'','CHETNABEN KAGATHRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-09','Y','35Y',0,0,0,'F','','','+91',9428699352,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 17:25:55','janvi','2025-10-16 10:58:49'),(0,231,'',0,'','HANSABEN H VAJA','','','','',0,'SOMNATH','SOMNATH','GUJARAT','INDIA','1966-10-09','Y','59Y',0,0,0,'F','','','+91',6352213505,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 17:27:23','reception','2025-11-13 18:34:57'),(0,232,'',0,'','HASANBHAI MANSUR','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1985-10-09','Y','40Y',0,0,0,'M','','','+91',9825997492,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 17:28:35','reception','2025-11-17 16:46:03'),(0,233,'',0,'','VIJAYBHAI JOSHI ','','','','',0,'KALYANPUR ','KALYANPUR ','GUJARAT','INDIA','1963-10-09','Y','62Y',0,0,0,'M','','','+91',9429995473,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 17:32:46','','0000-00-00 00:00:00'),(0,234,'',0,'','JITENDRABHAI SANGHVI','','','SADHUVASVANI MAIN ROAD,','SHILPEN ',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1938-10-11','Y','87Y',0,0,0,'M','','','+91',9428253623,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 17:40:26','drashti','2025-12-19 18:31:17'),(0,235,'',0,'','CHHAGANBHAI C DOBARIYA ','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1946-10-09','Y','79Y',0,0,0,'M','','','+91',9879590472,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 17:42:25','','0000-00-00 00:00:00'),(0,236,'',0,'','RANJANBEN K BAKRANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-09','Y','56Y',0,0,0,'F','','','+91',9638853936,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 17:47:35','','0000-00-00 00:00:00'),(0,237,'',0,'','VIPULBHAI K UNADKAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-09','Y','59Y',0,0,0,'M','','','+91',9898047339,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 17:50:38','','0000-00-00 00:00:00'),(0,238,'',0,'','JYOTSNABEN RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-10-09','Y','67Y',0,0,0,'F','','','+91',9979199099,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 17:56:12','','0000-00-00 00:00:00'),(0,239,'',0,'','RAMESHBHAI KANZARIYA','','','PANCHASAR ROAD,BHAGWATI HALL STREET KAILASH PARK','',0,'MORBI','MORBI','GUJARAT','INDIA','1980-10-09','Y','45Y',0,0,0,'M','','','+91',8780664418,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-09 18:00:34','','0000-00-00 00:00:00'),(0,240,'',0,'','MAHESHBHAI BUCH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1942-10-09','Y','83Y',0,0,0,'M','','','+91',9427410120,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 18:00:42','','0000-00-00 00:00:00'),(0,241,'',0,'','HEMATPURI D GOSAI','','','','',0,'JAMKANDONA','JAMKANDONA','GUJARAT','INDIA','1942-10-09','Y','83Y',0,0,0,'M','','','+91',9979639409,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 18:01:13','','0000-00-00 00:00:00'),(0,242,'',0,'','BHANABHAI PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-09','Y','60Y',0,0,0,'M','','','+91',6352229058,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 18:05:35','','0000-00-00 00:00:00'),(0,243,'',0,'','MINAXIBEN AGRAWAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-09','Y','55Y',55,0,0,'F','','','+91',9099365933,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 18:05:36','shweta','2025-10-09 18:22:35'),(0,244,'',0,'','PAVANBEN AGRAWAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-10-09','Y','73Y',0,0,0,'F','','','+91',9099365933,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 18:07:39','','0000-00-00 00:00:00'),(0,245,'',0,'','DWARKADAS MANIYAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-10-09','Y','77Y',0,0,0,'M','','','+91',9374008924,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 18:11:01','','0000-00-00 00:00:00'),(0,246,'',0,'','NILESHBHAI C LIMBASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-09','Y','45Y',0,0,0,'M','','','+91',8200670720,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 18:11:07','','0000-00-00 00:00:00'),(0,247,'',0,'','MILANBHAI DALSANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-10-09','Y','24Y',0,0,0,'M','','','+91',8511433460,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 18:12:48','','0000-00-00 00:00:00'),(0,248,'',0,'','DILIPBHAI D PUROHIT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-09','Y','70Y',0,0,0,'M','','','+91',8320490138,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 18:17:55','','0000-00-00 00:00:00'),(0,249,'',0,'','SURESHCHANDRA  NANUBHAI VYAS','','','','',0,'','','GUJARAT','INDIA','1947-10-17','N','77Y',0,0,0,'M','','','+91',8238059559,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-09 18:19:11','','0000-00-00 00:00:00'),(0,250,'',0,'','RASILABEN DODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-10-09','Y','74Y',0,0,0,'F','','','+91',9328692931,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 18:23:47','','0000-00-00 00:00:00'),(0,251,'',0,'','GOVINDBHAI M JALARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1939-10-09','Y','86Y',0,0,0,'M','','','+91',9825258487,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 18:24:04','','0000-00-00 00:00:00'),(0,252,'',0,'','PRABHABEN THAKKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-10-09','Y','69Y',0,0,0,'F','','','+91',9428684853,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 18:28:43','reception','2025-12-13 12:03:39'),(0,253,'',0,'','VIMLABEN ARBALI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-10-09','Y','72Y',0,0,0,'F','','','+91',7016471789,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 18:32:31','','0000-00-00 00:00:00'),(0,254,'',0,'','HARICHHABEN Y DHINOJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-09','Y','70Y',0,0,0,'F','','','+91',9909964265,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 18:33:40','','0000-00-00 00:00:00'),(0,255,'',0,'','KHERADIYA BALUBEN RAMSINGBHAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1933-10-09','Y','92Y',0,0,0,'F','','','+91',9979850283,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 18:34:17','janvi','2025-12-13 12:45:09'),(0,256,'',0,'','JAYDEEPBHAI TRIVEDI','','','','',0,'WAKANER','WAKANER','GUJARAT','INDIA','1996-10-09','Y','29Y',0,0,0,'M','','','+91',9510047777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 18:48:14','priyanshi','2025-10-10 09:12:42'),(0,257,'',0,'','HETALBEN N THUMMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-10-09','Y','41Y',0,0,0,'F','','','+91',9687362664,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 18:48:35','drashti','2025-12-19 18:34:38'),(0,258,'',0,'','VINODBHAI D. VAGADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-09','Y','53Y',0,0,0,'M','','','+91',9723984627,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 18:50:17','','0000-00-00 00:00:00'),(0,259,'',0,'','KIRAN D BARCHHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-09','Y','64Y',0,0,0,'F','','','+91',9820111419,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 18:55:51','drashti','2025-10-16 19:06:39'),(0,260,'',0,'','MOKSHA Y VAIDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-09','Y','42Y',0,0,0,'F','','','+91',9428408351,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 19:00:50','urvashi','2025-12-16 18:53:44'),(0,261,'',0,'','PRABHUDASBHAI M PALA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1951-10-09','Y','74Y',0,0,0,'M','','','+91',8487033229,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 19:01:02','','0000-00-00 00:00:00'),(0,262,'',0,'','JEEL D DESANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2009-10-09','Y','16Y',0,0,0,'F','','','+91',8460027287,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 19:11:10','janvi','2025-10-17 18:45:06'),(0,263,'',0,'','VIJYABEN B DESANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-09','Y','56Y',0,0,0,'F','','','+91',8460027287,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 19:11:18','','0000-00-00 00:00:00'),(0,264,'',0,'','DHARABEN BHALODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-09','Y','36Y',0,0,0,'F','','','+91',9898791514,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 19:12:39','drashti','2025-10-14 18:11:55'),(0,265,'',0,'','BILKISHBEN  SUTHAR','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1975-10-09','Y','50Y',50,0,0,'F','','','+91',9925365050,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 19:12:52','reception','2025-11-18 13:11:50'),(0,266,'',0,'','TARABEN R CHTRARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1943-10-09','Y','82Y',0,0,0,'F','','','+91',9824839814,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 19:15:22','drashti','2025-12-20 11:28:19'),(0,267,'',0,'','LAXMIBEN GOSAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-10-09','Y','18Y',0,0,0,'F','','','+91',9723340348,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-09 19:17:36','janvi','2025-10-28 18:45:09'),(0,268,'',0,'','NIDHIBEN PANDEY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-09','Y','30Y',30,0,0,'F','','','+91',8000406900,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 19:25:58','janvi','2025-10-09 19:26:56'),(0,269,'',0,'','KRISHNABA RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-09','Y','40Y',0,0,0,'F','','','+91',9725317008,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 19:27:23','drashti','2025-12-08 12:29:10'),(0,270,'',0,'','JOSHNABEN M SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-09','Y','53Y',0,0,0,'F','','','+91',9276455456,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 19:31:56','','0000-00-00 00:00:00'),(0,271,'',0,'','HARSHABEN D. NIMAVAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-09','Y','50Y',0,0,0,'F','','','+91',9427771264,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-09 19:34:32','','0000-00-00 00:00:00'),(0,272,'',0,'','HET BODA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2015-10-09','Y','10Y0M0D',0,0,0,'M','','','+91',9974343762,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-09 19:52:29','','0000-00-00 00:00:00'),(0,273,'',0,'','KRISHNABA ZALA','','','RELNAGAR BHAKTI PARK STREET NO-1 ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-10-09','Y','80Y',0,0,0,'F','','','+91',9173076305,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-09 20:04:52','','0000-00-00 00:00:00'),(0,274,'',0,'','ALPESH PATEL','','','DARSHAN PARK,RAIYA ROAD ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-09','Y','35Y',0,0,0,'M','','','+91',9904594472,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-09 23:06:49','urvashi','2025-10-27 11:52:33'),(0,275,'',0,'','CHETANBHAI SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-10-10','Y','34Y',0,0,0,'M','','','+91',9924363361,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 09:03:07','','0000-00-00 00:00:00'),(0,276,'',0,'','ANSUYABEN N PATEL','','','YOGI NAGAR, ST NO-5,','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-10-10','Y','66Y',0,0,0,'F','','','+91',8460611712,'+91',0,'',1,0,'ENG','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 09:06:33','drashti','2025-10-17 12:37:06'),(0,277,'',0,'','PAYALBEN SIDHPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-10-10','Y','29Y',0,0,0,'M','','','+91',9725242122,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-10 09:09:15','','0000-00-00 00:00:00'),(0,278,'',0,'','PRATAPBHAI PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-10-10','Y','79Y',0,0,0,'M','','','+91',8238398276,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-10 09:15:50','','0000-00-00 00:00:00'),(0,279,'',0,'','HARSURBHAI GANGAN','','','','',0,'KESHOD','KESHOD','GUJARAT','INDIA','1976-10-10','Y','49Y',0,0,0,'M','','','+91',7284087150,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-10 09:25:42','','0000-00-00 00:00:00'),(0,280,'',0,'','HEMANTSINH J JADEJA','','','','',0,'JAMKHAMBHADIYA DWARKA','JAMKHAMBHADIYA DWARKA','GUJARAT','INDIA','1961-10-10','Y','64Y',0,0,0,'M','','','+91',9904537638,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-10 09:56:01','','0000-00-00 00:00:00'),(0,281,'',0,'','VIRENKUMAR PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-10','Y','50Y',0,0,0,'M','','','+91',9375768592,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 10:00:54','','0000-00-00 00:00:00'),(0,282,'',0,'','SANJAYSINH R JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-10-10','Y','41Y',41,0,0,'M','','','+91',9712388304,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 10:08:06','reception','2025-10-10 11:08:25'),(0,283,'',0,'','HARESHBHAI B VORA','','','','',0,'SHIVRAJGADH','SHIVRAJGADH','GUJARAT','INDIA','1977-10-10','Y','48Y',48,0,0,'M','','','+91',6353523873,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 10:11:08','reception','2025-12-16 10:29:59'),(0,284,'',0,'','BHARATBHAI SOLANKI','','','','',0,'NAVAGAM','NAVAGAM','GUJARAT','INDIA','1982-10-10','Y','43Y',0,0,0,'M','','','+91',7874693949,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 10:14:43','','0000-00-00 00:00:00'),(0,285,'',0,'','SAMJUBEN D DHADUK','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1955-10-10','Y','70Y',0,0,0,'F','','','+91',9426996317,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 10:18:43','','0000-00-00 00:00:00'),(0,286,'',0,'','VYAS RIDDHI MANISHBHAI','','','BLOCK NO-11, SUNDARAM ST NO-2','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-02-18','N','27Y',27,0,0,'F','','','+91',9624302823,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 10:27:30','drashti','2025-11-27 18:22:47'),(0,287,'',0,'','VAJABHAI CHAUHAN','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1964-10-10','Y','61Y',0,0,0,'M','','','+91',9974121563,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 10:28:21','janvi','2025-11-11 11:10:12'),(0,288,'',0,'','KAMLESHBHAI S SONPAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-10','Y','62Y',0,0,0,'M','','','+91',9276508797,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 10:36:05','','0000-00-00 00:00:00'),(0,289,'',0,'','DIPAKBHAI M VACHHANI','','','','',0,'RAJULA','RAJULA','GUJARAT','INDIA','1965-10-10','Y','60Y',0,0,0,'M','','','+91',9925858441,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 10:40:45','reception','2025-12-09 10:47:29'),(0,290,'',0,'','GALALBEN M SABARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-10','Y','55Y',0,0,0,'F','','','+91',6352802006,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 10:48:15','','0000-00-00 00:00:00'),(0,291,'',0,'','BHIMJIBHAI BHUSA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-10-10','Y','63Y',0,0,0,'M','','','+91',8866625114,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 10:55:29','','0000-00-00 00:00:00'),(0,292,'',0,'','SMITABEN TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-10','Y','70Y',0,0,0,'F','','','+91',9408359458,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 10:58:02','janvi','2025-10-16 20:02:03'),(0,293,'',0,'','PANNABEN C DABHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-10','Y','53Y',0,0,0,'F','','','+91',7874742290,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 11:01:32','drashti','2025-10-17 13:05:05'),(0,294,'',0,'','MANJUBEN D SOLANKI','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1970-10-10','Y','55Y',0,0,0,'F','','','+91',9979383139,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 11:03:51','reception','2025-11-19 11:03:57'),(0,295,'',0,'','ALKABEN BAGDAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-10','Y','60Y',0,0,0,'F','','','+91',9426980791,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 11:05:50','','0000-00-00 00:00:00'),(0,296,'',0,'','KETKIBEN A VAIDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-10','Y','55Y',0,0,0,'F','','','+91',9429043162,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 11:13:33','drashti','2025-12-20 11:12:45'),(0,297,'',0,'','ANJUBEN G DODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-10-10','Y','74Y',0,0,0,'F','','','+91',9228823123,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 11:13:40','','0000-00-00 00:00:00'),(0,298,'',0,'','NIMUBEN BHALODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-10-10','Y','54Y',0,0,0,'F','','','+91',9427252532,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-10 11:15:15','','0000-00-00 00:00:00'),(0,299,'',0,'','DHIRAJLAL S DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-10-10','Y','74Y',0,0,0,'M','','','+91',9428467393,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 11:15:23','reception','2025-12-12 11:12:00'),(0,300,'',0,'','KIRTIBHAI SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-10-10','Y','77Y',0,0,0,'M','','','+91',9898022297,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 11:17:57','priyanshi','2025-12-16 16:40:08'),(0,301,'',0,'','HITESHBHAI MORI','','','','',0,'SOMNATH','SOMNATH','GUJARAT','INDIA','1996-10-10','Y','29Y',0,0,0,'M','','','+91',7572811003,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 11:18:33','','0000-00-00 00:00:00'),(0,302,'',0,'','ADITYA DHORIYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-10','Y','32Y',0,0,0,'M','','','+91',9245508888,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-10 11:20:35','','0000-00-00 00:00:00'),(0,303,'',0,'','AARTIBEN KARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-10','Y','58Y',0,0,0,'F','','','+91',9824488837,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 11:22:17','janvi','2025-11-01 11:05:12'),(0,304,'',0,'','JAYESHBHAI K SARDHARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-10-10','Y','41Y',0,0,0,'M','','','+91',9727475827,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 11:22:25','','0000-00-00 00:00:00'),(0,305,'',0,'','KANUBEN P MUNDHVA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1985-10-10','Y','40Y',0,0,0,'F','','','+91',9726928556,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 11:25:14','','0000-00-00 00:00:00'),(0,306,'',0,'','MITALBEN H VANSJARIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-10','Y','40Y',0,0,0,'F','','','+91',8849295348,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 11:25:37','','0000-00-00 00:00:00'),(0,307,'',0,'','ROHANBHAI SIYAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-10-10','Y','17Y',0,0,0,'M','','','+91',9909165039,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 11:27:06','janvi','2025-10-27 18:34:00'),(0,308,'',0,'','KHERUNBEN J GORI','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1960-10-10','Y','65Y',0,0,0,'F','','','+91',8733028095,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 11:34:46','reception','2025-10-30 11:28:44'),(0,309,'',0,'','DIVYABEN V. BARAD','','','','',0,'SOMNATH','SOMNATH','GUJARAT','INDIA','1999-10-10','Y','26Y',0,0,0,'F','','','+91',9426995750,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 11:38:38','drashti','2025-10-15 18:12:24'),(0,310,'',0,'','SHAILESHBHAI A BAKUTRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-10-10','Y','43Y',0,0,0,'M','','','+91',9974699079,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 11:44:31','reception','2025-12-09 11:06:37'),(0,311,'',0,'','AJAYBHAI VAIDHYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-10','Y','56Y',0,0,0,'M','','','+91',9825352628,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 11:50:24','','0000-00-00 00:00:00'),(0,312,'',0,'','ASHWINBHAI SIYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-10','Y','50Y',0,0,0,'M','','','+91',9974895443,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 11:57:54','','0000-00-00 00:00:00'),(0,313,'',0,'','LABHSHANKARBHAI A TERAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-10','Y','64Y',0,0,0,'M','','','+91',9879417793,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 12:02:32','','0000-00-00 00:00:00'),(0,314,'',0,'','DEVKUBHAI D MANJARIYA','','','','',0,'BHESAN','BHESAN','GUJARAT','INDIA','1985-10-10','Y','40Y',0,0,0,'M','','','+91',9925423876,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 12:04:37','reception','2025-12-08 11:52:14'),(0,315,'',0,'','PRAKASHBHAI KANJARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-10-10','Y','22Y',0,0,0,'M','','','+91',9714544388,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 12:07:53','','0000-00-00 00:00:00'),(0,316,'',0,'','RAMESHBHAI N TRIVEDI','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1963-10-10','Y','62Y',0,0,0,'M','','','+91',9662872206,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 12:08:05','reception','2025-10-30 10:43:18'),(0,317,'',0,'','MANUBHAI KUGASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-10','Y','50Y',0,0,0,'M','','','+91',9033347198,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-10 12:09:17','','0000-00-00 00:00:00'),(0,318,'',0,'','PRATIKBHAI TRADA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-10-10','Y','31Y',0,0,0,'M','','','+91',9979585854,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-10 12:11:43','','0000-00-00 00:00:00'),(0,319,'',0,'','RANJANBEN DANGAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-10','Y','35Y',0,0,0,'F','','','+91',9898369677,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 12:26:40','janvi','2025-12-02 13:12:25'),(0,320,'',0,'','URMILABEN THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-10-10','Y','76Y',0,0,0,'F','','','+91',9664531098,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 12:44:13','','0000-00-00 00:00:00'),(0,321,'',0,'','HITESHBHAI VASVELIYA','','','MOVAIYA, ','PADDHARI',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-10','Y','32Y',0,0,0,'M','','','+91',8849370698,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 12:56:12','drashti','2025-10-24 17:44:38'),(0,322,'',0,'','MAKWANA BHIKHABHAI DHANABHAI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-10','Y','45Y',45,0,0,'M','','','+91',9106522775,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 12:57:41','janvi','2025-12-12 18:16:44'),(0,323,'',0,'','JANVIBEN LIMBASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-10-10','Y','27Y',0,0,0,'F','','','+91',9033159814,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 13:08:54','','0000-00-00 00:00:00'),(0,324,'',0,'','VIJAYBHAI  D GINOYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-10','Y','35Y',0,0,0,'M','','','+91',8200776013,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 13:09:48','reception','2025-12-13 10:40:32'),(0,325,'',0,'','PARESHBHAI B  TANCHAK','','','','',0,'UNA','UNA','GUJARAT','INDIA','1968-10-10','Y','57Y',0,0,0,'M','','','+91',9428376531,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 13:16:46','janvi','2025-11-11 12:18:22'),(0,326,'',0,'','ANVARBHAI H BELIM','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-10','Y','39Y',0,0,0,'M','','','+91',9714399990,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 13:20:18','reception','2025-10-18 13:08:09'),(0,327,'',0,'','MANSI RAJYGURU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-10','Y','35Y',0,0,0,'F','','','+91',7383049999,'+91',9375848574,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-10 13:36:42','','0000-00-00 00:00:00'),(0,328,'',0,'','ALTAFBHAI MASAKPOTRA','','','','',0,'TANKARA','TANKARA','GUJARAT','INDIA','2004-10-10','Y','21Y',0,0,0,'M','','','+91',8200153640,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-10 13:47:31','','0000-00-00 00:00:00'),(0,329,'',0,'','BAVANJIBHAI VADALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-10','Y','75Y',0,0,0,'M','','','+91',9879579598,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 14:00:51','janvi','2025-12-19 10:46:55'),(0,330,'',0,'','SHITALBA D GOHEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-10-10','Y','24Y',0,0,0,'F','','','+91',9924274766,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-10 16:00:16','','0000-00-00 00:00:00'),(0,331,'',0,'','PALABHAI G GARCHAR','','','','',0,'MANGROL JUNAGADH','MANGROL JUNAGADH','GUJARAT','INDIA','1960-10-10','Y','65Y',65,0,0,'M','','','+91',9726101022,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-10 16:21:28','reception','2025-12-18 10:14:39'),(0,332,'',0,'','JAYDIP KARMUR ','','','','',0,'ZUVENTUS PHARMA','ZUVENTUS PHARMA','GUJARAT','INDIA','2004-10-10','Y','21Y',0,0,0,'M','','','+91',9313795790,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 16:34:29','priyanshi','2025-11-21 16:48:44'),(0,333,'',0,'','PRAKASH MARU','','','','',0,'SPECTRA','SPECTRA','GUJARAT','INDIA','1981-10-10','Y','44Y',0,0,0,'M','','','+91',9879345425,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 16:36:20','','0000-00-00 00:00:00'),(0,334,'',0,'','KAJALBEN PANARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-10-10','Y','29Y',0,0,0,'F','','','+91',7600374796,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 16:36:29','','0000-00-00 00:00:00'),(0,335,'',0,'','DAKSHABEN D DHOLAKIYA','','','','',0,'','','GUJARAT','INDIA','1987-10-10','Y','38Y',0,0,0,'F','','','+91',8849367919,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 16:37:03','','0000-00-00 00:00:00'),(0,336,'',0,'','VARSHABEN B KACHHADIYA','','','','',0,'','','GUJARAT','INDIA','1982-10-10','Y','43Y',0,0,0,'F','','','+91',9067473730,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 16:39:54','','0000-00-00 00:00:00'),(0,337,'',0,'','YASHVI D LIMBASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-10-10','Y','19Y',0,0,0,'F','','','+91',9824614046,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 16:40:38','reception','2025-11-18 16:56:27'),(0,338,'',0,'','ANISHA GOHEL','','','','',0,'THEO PHARMA','THEO PHARMA','GUJARAT','INDIA','1975-10-10','Y','50Y',0,0,0,'F','','','+91',9428968751,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 16:45:00','janvi','2025-11-05 16:51:34'),(0,339,'',0,'','NINABEN MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-10-10','Y','74Y',0,0,0,'F','','','+91',9427221042,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 16:50:17','','0000-00-00 00:00:00'),(0,340,'',0,'','NILAMBEN P LUMBHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-10-10','Y','44Y',0,0,0,'F','','','+91',9574164141,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 16:50:49','reception','2025-11-13 18:09:31'),(0,341,'',0,'','ASHISH B GEDIYA','','','','',0,'LA RENON HEALTHCARE','LA RENON HEALTHCARE','GUJARAT','INDIA','1998-10-10','Y','27Y',0,0,0,'M','','','+91',9974440794,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 16:54:43','reception','2025-11-14 17:10:21'),(0,342,'',0,'','MAHAVIRBHAI SARVAIYA','','KAVACH PHA','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-10-10','Y','20Y',0,0,0,'M','','','+91',8160301466,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 16:59:51','reception','2025-12-17 16:51:48'),(0,343,'',0,'','DHARMESHBHAI LIMBASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-10','Y','45Y',0,0,0,'M','','','+91',9824614046,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-10 17:02:18','','0000-00-00 00:00:00'),(0,344,'',0,'','DARSHANBHAI B PATADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-10','Y','38Y',0,0,0,'M','','','+91',9227774622,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 17:04:32','reception','2025-11-03 18:17:46'),(0,345,'',0,'','NIRMALABEN BHALODI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-10-10','Y','69Y',0,0,0,'F','','','+91',9426844001,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-10 17:05:50','','0000-00-00 00:00:00'),(0,346,'',0,'','MAGANBHAI N TADAPADA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-10','Y','60Y',0,0,0,'M','','','+91',9979932040,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 17:10:07','','0000-00-00 00:00:00'),(0,347,'',0,'','MINANG TADUK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-10-10','Y','29Y',0,0,0,'F','','','+91',6909269627,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 17:11:47','reception','2025-10-31 12:50:18'),(0,348,'',0,'','MOHANBHAI CHANDEGARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-10-10','Y','61Y',0,0,0,'M','','','+91',9426998436,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 17:24:38','reception','2025-11-26 18:52:13'),(0,349,'',0,'','MANJULABEN M KHAMBHRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-10','Y','62Y',0,0,0,'F','','','+91',9099957337,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 17:25:52','','0000-00-00 00:00:00'),(0,350,'',0,'','RAVINABEN J SHUKLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-10','Y','45Y',0,0,0,'F','','','+91',9737768455,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 17:32:53','','0000-00-00 00:00:00'),(0,351,'',0,'','SAMSADBHAI PATHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-10','Y','65Y',0,0,0,'M','','','+91',8849076806,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 17:33:03','drashti','2025-10-15 11:03:19'),(0,352,'',0,'','HITESHBHAI HASANLPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-10','Y','48Y',0,0,0,'M','','','+91',9979077733,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 17:34:38','','0000-00-00 00:00:00'),(0,353,'',0,'','KANTIBHAI BHIMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1944-10-10','Y','81Y',0,0,0,'M','','','+91',9930797969,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-10 17:38:18','','0000-00-00 00:00:00'),(0,354,'',0,'','VIVEKBHAI M SANGHANI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1998-10-10','Y','27Y',0,0,0,'M','','','+91',7069646161,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 17:38:33','','0000-00-00 00:00:00'),(0,355,'',0,'','HEMALBHAI BHIMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-10','Y','48Y',0,0,0,'M','','','+91',9930797969,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-10 17:38:35','','0000-00-00 00:00:00'),(0,356,'',0,'','DAKSHABEN  K CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-10-10','Y','73Y',0,0,0,'F','','','+91',9727623261,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 17:41:00','reception','2025-11-07 12:00:47'),(0,357,'',0,'','JALPABEN S PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-10-10','Y','34Y',0,0,0,'F','','','+91',9974366603,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 17:46:38','janvi','2025-11-24 18:28:56'),(0,358,'',0,'','PUSHPABEN R VED','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-10-10','Y','78Y',0,0,0,'F','','','+91',9427495930,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 17:47:12','','0000-00-00 00:00:00'),(0,359,'',0,'','RAMESHBHAI N VED','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1944-10-10','Y','81Y',0,0,0,'M','','','+91',9427495930,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 17:48:03','','0000-00-00 00:00:00'),(0,360,'',0,'','PARESHBHAI M SHETH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-10-10','Y','54Y',0,0,0,'M','','','+91',9558677713,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 17:50:08','','0000-00-00 00:00:00'),(0,361,'',0,'','RAMESHBHAI  N VED','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1944-10-10','Y','81Y',81,0,0,'M','','','+91',9427495930,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 17:51:02','reception','2025-11-26 16:38:09'),(0,362,'',0,'','MAHIBEN A TRATIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-10-10','Y','19Y',0,0,0,'F','','','+91',9904958573,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 17:54:19','','0000-00-00 00:00:00'),(0,363,'',0,'','NAYNABEN K GHARDUSIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-10-10','Y','46Y',0,0,0,'F','','','+91',8141968508,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 17:54:48','priyanshi','2025-11-11 17:39:22'),(0,364,'',0,'','DEVANGIBEN VORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-10','Y','55Y',0,0,0,'F','','','+91',9898550191,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 17:55:30','drashti','2025-12-12 19:28:31'),(0,365,'',0,'','NAYNABEN H PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-10','Y','39Y',0,0,0,'F','','','+91',9879201842,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 18:01:06','shweta','2025-12-05 16:34:46'),(0,366,'',0,'','AARTIBEN C CHOKSI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-10','Y','53Y',0,0,0,'F','','','+91',7567360028,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 18:03:49','reception','2025-10-31 18:06:44'),(0,367,'',0,'','KEVALBHAI KUMBHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-10','Y','25Y',0,0,0,'M','','','+91',7016949248,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 18:09:55','reception','2025-12-09 09:50:22'),(0,368,'',0,'','SHILABEN B SHUKLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-10-10','Y','63Y',0,0,0,'F','','','+91',9427564583,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 18:10:40','','0000-00-00 00:00:00'),(0,369,'',0,'','RAHULBHAI SAHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-10','Y','25Y',0,0,0,'M','','','+91',9723787013,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 18:14:07','','0000-00-00 00:00:00'),(0,370,'',0,'','GITABEN FALDU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-10-10','Y','66Y',0,0,0,'F','','','+91',9924487997,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-10 18:19:06','manshi','2025-10-17 10:13:25'),(0,371,'',0,'','KALPANABA K RANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-10-10','Y','47Y',0,0,0,'F','','','+91',9909124911,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 18:19:47','','0000-00-00 00:00:00'),(0,372,'',0,'','JYOTISHBHAI V CHOLERA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1959-10-10','Y','66Y',0,0,0,'M','','','+91',9429572400,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 18:21:07','','0000-00-00 00:00:00'),(0,373,'',0,'','FARHAD MUKHASAM','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-10-10','Y','37Y',0,0,0,'F','','','+91',9879607869,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 18:22:55','priyanshi','2025-11-11 18:15:16'),(0,374,'',0,'','MAHENDRABHAI J KOTHADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-10','Y','62Y',0,0,0,'M','','','+91',9998887577,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 18:24:04','','0000-00-00 00:00:00'),(0,375,'',0,'','KIRANBEN B CHUDASAMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-10','Y','60Y',0,0,0,'F','','','+91',9824288544,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 18:31:22','','0000-00-00 00:00:00'),(0,376,'',0,'','RAJESHBHAI LIMABASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-10-10','Y','43Y',0,0,0,'M','','','+91',9924767132,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 18:32:04','drashti','2025-10-16 18:12:21'),(0,377,'',0,'','BHIKHALAL G CHUDASAMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-10','Y','60Y',0,0,0,'M','','','+91',9824288544,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 18:33:29','','0000-00-00 00:00:00'),(0,378,'',0,'','RACHNABEN P DESAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-10','Y','40Y',40,0,0,'F','','','+91',6353442126,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 18:36:08','reception','2025-11-19 17:53:17'),(0,379,'',0,'','RAHUL K BAMBA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-10-10','Y','17Y',0,0,0,'M','','','+91',7990916335,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-10 18:40:25','','0000-00-00 00:00:00'),(0,380,'',0,'','PRIYAKANT C ADESHARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-10-10','Y','37Y',0,0,0,'M','','','+91',9377949438,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 18:55:06','reception','2025-11-01 18:19:54'),(0,381,'',0,'','SOLANKI B BHANUMATIBEN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-10-10','Y','76Y',0,0,0,'F','','','+91',7990972914,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 19:04:54','','0000-00-00 00:00:00'),(0,382,'',0,'','MEETABEN B SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-10','Y','45Y',0,0,0,'F','','','+91',7041371257,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 19:08:34','','0000-00-00 00:00:00'),(0,383,'',0,'','RUKSHARBEN A CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-10-10','Y','26Y',0,0,0,'F','','','+91',7990950091,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-10 19:09:25','drashti','2025-12-08 18:16:11'),(0,384,'',0,'','MONABEN D SANGHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-10','Y','48Y',0,0,0,'F','','','+91',8160960726,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 19:12:04','','0000-00-00 00:00:00'),(0,385,'',0,'','MANVAR REKHABEN MANSUKHBHAI','','','A-1202, ROYAL ELEGANCE,','NR GOVARDHAN CHOWK,',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-08-22','N','54Y',0,0,0,'F','','','+91',8866122383,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-10 19:21:47','','0000-00-00 00:00:00'),(0,386,'',0,'','BHATTI SHANI ','','','','',0,'','','GUJARAT','INDIA','2005-10-10','Y','20Y',0,0,0,'M','','','+91',9106665871,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-10 19:23:00','','0000-00-00 00:00:00'),(0,387,'',0,'','DEVAYATBHAI H KUGASHIYA','','','BALASAR, NEAR METODA G.I.D.C, ','LODHIKA',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-10','Y','60Y',0,0,0,'M','','','+91',6351349933,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 19:27:52','janvi','2025-10-17 12:38:07'),(0,388,'',0,'','KHAKHAR RITA','','','TAKSHASHEELA - 1, FLAT NO-B, ','211 OPP, AKASHWANI',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-07-24','N','56Y',0,0,0,'F','','','+91',8980582201,'+91',0,'',1,0,'ENG','','N',0,'','','','','','0000-00-00','vishal','2025-10-10 19:36:40','riya','2025-10-14 12:49:00'),(0,389,'',0,'','JALPABEN KALKANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-10-10','Y','33Y',0,0,0,'F','','','+91',8980700040,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 19:44:32','','0000-00-00 00:00:00'),(0,390,'',0,'','PRAKASHBHAI B VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-10','Y','42Y',0,0,0,'M','','','+91',9377399990,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 19:48:10','janvi','2025-12-12 19:16:04'),(0,391,'',0,'','HAVABEN H JUNEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-10-10','Y','78Y',0,0,0,'F','','','+91',9737078692,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-10 20:01:29','drashti','2025-11-20 12:37:41'),(0,392,'',0,'','SUDHA ANJANI SRIVASTAVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-10-10','Y','71Y',71,0,0,'F','','','+91',9824292234,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-10 21:06:54','drashti','2025-12-19 17:42:49'),(0,393,'',0,'','PRATAPRAI N PANDYA','','','ALAP GREEN CITY, OPP PRAMUKH ','SWAMI AUDITORIUM,',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-10-10','Y','79Y',0,0,0,'M','','','+91',9725899998,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-10 21:10:26','vishal','2025-11-25 09:46:35'),(0,394,'',0,'','MANJUBEN GARACH','','','','',0,'','','GUJARAT','INDIA','1945-10-10','Y','80Y',0,0,0,'F','','','+91',9664580252,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-10 21:53:07','','0000-00-00 00:00:00'),(0,395,'',0,'','BHANJIBHAI B PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-10-11','Y','63Y',0,0,0,'M','','','+91',9374830754,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-11 08:57:27','','0000-00-00 00:00:00'),(0,396,'',0,'','ANSUYABEN TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-10-11','Y','80Y',0,0,0,'F','','','+91',9824829466,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-11 09:17:10','','0000-00-00 00:00:00'),(0,397,'',0,'','FARUKBHAI S SHEIKH','','','','',0,'VASAVAD GONDAL','VASAVAD GONDAL','GUJARAT','INDIA','1974-10-11','Y','51Y',0,0,0,'M','','','+91',6352199174,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-11 09:17:31','reception','2025-11-01 12:08:28'),(0,398,'',0,'','MAHIT ZALAVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-10-11','Y','17Y',0,0,0,'M','','','+91',9825776474,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-11 09:29:53','','0000-00-00 00:00:00'),(0,399,'',0,'','KANTABEN VAGHERA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1960-10-11','Y','65Y',0,0,0,'F','','','+91',9925566078,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-11 09:35:48','','0000-00-00 00:00:00'),(0,400,'',0,'','KAJALBEN S MEHTA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1980-10-11','Y','45Y',0,0,0,'F','','','+91',9376410013,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-11 09:36:43','','0000-00-00 00:00:00'),(0,401,'',0,'','SANJAYBHAI DODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-11','Y','40Y',0,0,0,'M','','','+91',9824466961,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 09:40:30','','0000-00-00 00:00:00'),(0,402,'',0,'','SAROJBEN N KASHIYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-10-11','Y','79Y',0,0,0,'F','','','+91',9924098630,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-11 09:47:26','','0000-00-00 00:00:00'),(0,403,'',0,'','AMIT RAMANLAL KOTAK','','FLAT NO : ','VRUSHABH APPT,  RAJESHWARI PARK','150 FT RING ROAD, NEAR NANAVATI CHOWK',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-08-04','N','56Y',0,0,0,'M','','','+91',7016174558,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-11 10:01:01','drashti','2025-11-11 18:49:55'),(0,404,'',0,'','PRAVINBHAI B TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-11','Y','65Y',0,0,0,'M','','','+91',9408371887,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-11 10:09:15','','0000-00-00 00:00:00'),(0,405,'',0,'','HEENABEN A CHAVDA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1995-10-11','Y','30Y',0,0,0,'F','','','+91',9327333726,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-11 10:09:19','','0000-00-00 00:00:00'),(0,406,'',0,'','NIRALIBEN BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-10-11','Y','33Y',0,0,0,'F','','','+91',9099724457,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 10:13:19','reception','2025-11-17 11:39:12'),(0,407,'',0,'','SMITABEN B PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-11','Y','48Y',0,0,0,'F','','','+91',9925602883,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 10:24:00','','0000-00-00 00:00:00'),(0,408,'',0,'','LABHUBEN R VALA','','','','',0,'KODINAR','KODINAR','GUJARAT','INDIA','1960-10-11','Y','65Y',0,0,0,'F','','','+91',9016293605,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-11 10:26:15','','0000-00-00 00:00:00'),(0,409,'',0,'','JIVRAJBHAI B SARVAIYA','','','','',0,'VIRPUR','VIRPUR','GUJARAT','INDIA','1963-10-11','Y','62Y',0,0,0,'M','','','+91',9725085304,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-11 10:28:25','','0000-00-00 00:00:00'),(0,410,'',0,'','NARENDRABHAI M MARADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-11','Y','56Y',0,0,0,'M','','','+91',9427242622,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-11 10:31:05','','0000-00-00 00:00:00'),(0,411,'',0,'','MAKWANA BAVABHAI ','','','','',0,'KALAWAD','KALAWAD','GUJARAT','INDIA','1965-10-11','Y','60Y',0,0,0,'M','','','+91',9724613470,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 10:32:47','','0000-00-00 00:00:00'),(0,412,'',0,'','VAISHALIBEN  N SAKHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-11','Y','40Y',0,0,0,'F','','','+91',8140300605,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-11 10:36:43','drashti','2025-11-20 18:19:35'),(0,413,'',0,'','SEEMABEN R ODEDRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-10-11','Y','54Y',0,0,0,'F','','','+91',9825313241,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-11 10:43:54','drashti','2025-10-16 10:31:48'),(0,414,'',0,'','VEDANTBHAI DHANESHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-10-11','Y','22Y',0,0,0,'M','','','+91',7046383672,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 10:43:57','','0000-00-00 00:00:00'),(0,415,'',0,'','JYOTSANABEN D KANSAGRA','','','','',0,'JAMJODHPUR','JAMJODHPUR','GUJARAT','INDIA','1975-10-11','Y','50Y',0,0,0,'F','','','+91',9979754689,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-11 10:46:33','','0000-00-00 00:00:00'),(0,416,'',0,'','SWETABEN MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-10-11','Y','28Y',0,0,0,'F','','','+91',9664884644,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-11 11:00:12','','0000-00-00 00:00:00'),(0,417,'',0,'','RAMESHBHAI RAMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-11','Y','45Y',0,0,0,'M','','','+91',9913740293,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 11:01:40','reception','2025-11-19 11:22:47'),(0,418,'',0,'','BHAVISHABEN BATAVIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-11','Y','51Y',0,0,0,'F','','','+91',9428632132,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 11:04:21','','0000-00-00 00:00:00'),(0,419,'',0,'','JAGDISHBHAI  R SAPARIYA','','','','',0,'ANKLESWAR','ANKLESWAR','GUJARAT','INDIA','1969-10-11','Y','56Y',0,0,0,'M','','','+91',9429284741,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-11 11:13:35','','0000-00-00 00:00:00'),(0,420,'',0,'','MAHEKBEN SOLANKI','','','','',0,'SOMNATH','SOMNATH','GUJARAT','INDIA','2007-10-11','Y','18Y',0,0,0,'F','','','+91',9979341542,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-11 11:14:30','','0000-00-00 00:00:00'),(0,421,'',0,'','NIRUBEN C RAJPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-10-11','Y','66Y',0,0,0,'F','','','+91',9586138603,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 11:15:49','drashti','2025-12-11 12:34:15'),(0,422,'',0,'','BHARATBHAI RAGHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-11','Y','60Y',60,0,0,'M','','','+91',9426968201,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-11 11:16:45','janvi','2025-10-29 11:05:58'),(0,423,'',0,'','MADHUBEN  KHAMBHAYATA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-10-11','Y','74Y',0,0,0,'F','','','+91',9879289684,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-11 11:16:53','','0000-00-00 00:00:00'),(0,424,'',0,'','BHAVESHBHAI A POPAT','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1981-10-11','Y','44Y',0,0,0,'M','','','+91',9825252998,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-11 11:17:47','','0000-00-00 00:00:00'),(0,425,'',0,'','PARAGBHAI D DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-10-11','Y','46Y',0,0,0,'M','','','+91',9428467393,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-11 11:18:42','','0000-00-00 00:00:00'),(0,426,'',0,'','KALUBHAI K MALVI','','','','',0,'SAVARKUNDLA','SAVARKUNDLA','GUJARAT','INDIA','1959-10-11','Y','66Y',0,0,0,'M','','','+91',9427742236,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-11 11:19:31','reception','2025-11-10 09:51:04'),(0,427,'',0,'','JAGDISHBHAI V SOJITRA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1986-10-11','Y','39Y',0,0,0,'M','','','+91',9265041900,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 11:19:38','','0000-00-00 00:00:00'),(0,428,'',0,'','MITULBHAI SAVALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-11','Y','39Y',0,0,0,'M','','','+91',9904196838,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-11 11:22:31','janvi','2025-10-13 11:23:08'),(0,429,'',0,'','KHAMBHALIYA PRABHABEN BHIMJIBHAI','','','4-KISHANPARA, ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-06-01','N','64Y',0,0,0,'F','','','+91',9824814008,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 11:23:23','vishal','2025-11-27 23:20:25'),(0,430,'',0,'','MEHUL BARAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-11','Y','25Y',0,0,0,'M','','','+91',6359419135,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-11 11:25:23','','0000-00-00 00:00:00'),(0,431,'',0,'','SANTOSHBEN J DALSANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-11','Y','35Y',0,0,0,'F','','','+91',9875038983,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-11 11:25:32','','0000-00-00 00:00:00'),(0,432,'',0,'','DINESHBHAI R VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-10-11','Y','46Y',0,0,0,'M','','','+91',9998924738,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 11:30:35','','0000-00-00 00:00:00'),(0,433,'',0,'','VAJIBEN S DODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-11','Y','68Y',0,0,0,'F','','','+91',9998274145,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 11:35:06','','0000-00-00 00:00:00'),(0,434,'',0,'','SURESHBHAI L PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-10-11','Y','67Y',0,0,0,'M','','','+91',9428228866,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-11 11:35:43','','0000-00-00 00:00:00'),(0,435,'',0,'','VIMALBHAI S GONDALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-11','Y','38Y',0,0,0,'M','','','+91',9428228866,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-11 11:37:26','','0000-00-00 00:00:00'),(0,436,'',0,'','HARSHABEN THAKRAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-11','Y','60Y',0,0,0,'F','','','+91',9724486254,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-11 11:39:57','manshi','2025-10-29 12:22:29'),(0,437,'',0,'','VAGADIA ILABEN ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-11','Y','50Y',0,0,0,'F','','','+91',9428894858,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 11:40:47','','0000-00-00 00:00:00'),(0,438,'',0,'','ARJUNBHAI JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-11','Y','39Y',0,0,0,'M','','','+91',9879233807,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-11 11:44:46','reception','2025-12-01 18:34:13'),(0,439,'',0,'','JAYSUKHBHAI D DALSANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-10-11','Y','43Y',0,0,0,'M','','','+91',9173795025,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-11 11:47:12','','0000-00-00 00:00:00'),(0,440,'',0,'','NATHABHAI VISAPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-11','Y','52Y',0,0,0,'M','','','+91',9824804019,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 11:47:54','','0000-00-00 00:00:00'),(0,441,'',0,'','USHABEN MULIYANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-11','Y','70Y',0,0,0,'F','','','+91',9106471601,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 11:52:13','','0000-00-00 00:00:00'),(0,442,'',0,'','CHANDRIKABEN MANIYAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-10-11','Y','76Y',0,0,0,'F','','','+91',9427432394,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 11:56:45','','0000-00-00 00:00:00'),(0,443,'',0,'','GIRISHBHAI N CHOVATIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-10-11','Y','47Y',0,0,0,'M','','','+91',9427429926,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-11 12:05:06','','0000-00-00 00:00:00'),(0,444,'',0,'','PIYUSHBHAI MITHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-11','Y','62Y',0,0,0,'M','','','+91',9967673962,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-11 12:11:02','manshi','2025-11-25 12:05:39'),(0,445,'',0,'','HETVIBEN GANDHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-10-11','Y','27Y',0,0,0,'F','','','+91',9428464190,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 12:13:13','drashti','2025-10-15 11:16:56'),(0,446,'',0,'','JAYABEN MISTRY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-11','Y','56Y',56,0,0,'F','','','+91',9106803841,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-11 12:19:59','priyanshi','2025-10-24 13:14:57'),(0,447,'',0,'','KHYAT V GHADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-10-11','Y','17Y',0,0,0,'M','','','+91',7984196827,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-11 12:21:24','','0000-00-00 00:00:00'),(0,448,'',0,'','MAGANBHAI PARMAR','','','','',0,'SURENDRANAGAR','SURENDRANAGAR','GUJARAT','INDIA','1955-10-11','Y','70Y',0,0,0,'M','','','+91',9909448834,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 12:42:29','janvi','2025-10-17 13:51:55'),(0,449,'',0,'','DAXABEN V JETHVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-11','Y','38Y',0,0,0,'F','','','+91',9913551800,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 12:50:38','janvi','2025-10-30 19:19:45'),(0,450,'',0,'','INDIRABEN ADESARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-11','Y','68Y',0,0,0,'F','','','+91',8160564212,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-11 12:56:13','','0000-00-00 00:00:00'),(0,451,'',0,'','HARPALSINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-11','Y','32Y',0,0,0,'M','','','+91',9898214175,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-11 13:10:55','','0000-00-00 00:00:00'),(0,452,'',0,'','MADHUMATIBEN D BHATT','','','GANDHIGRAM','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-11','Y','70Y',0,0,0,'F','','','+91',9016716555,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-11 17:33:27','drashti','2025-11-26 13:17:01'),(0,453,'',0,'','KISHORBHAI CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-11','Y','51Y',0,0,0,'M','','','+91',9825233414,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 17:42:29','janvi','2025-11-10 17:58:30'),(0,454,'',0,'','BHAVNABEN M VASJADIYA','','','PLETINAM ICON OPP RANI RESIDENSY UNIVERCITY ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-11','Y','35Y',0,0,0,'F','','','+91',7405670370,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-11 17:51:15','reception','2025-11-01 18:12:42'),(0,455,'',0,'','POOJABEN KARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-11','Y','38Y',0,0,0,'F','','','+91',9428154666,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-11 17:53:33','manshi','2025-10-27 11:32:14'),(0,456,'',0,'','VAISHALIBEN JOSHI','','','','',0,'','','GUJARAT','INDIA','1982-10-11','Y','43Y',0,0,0,'F','','','+91',7600055741,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-11 18:08:11','','0000-00-00 00:00:00'),(0,457,'',0,'','DHARMESHBHAI BHANDERI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-11','Y','35Y',0,0,0,'M','','','+91',9974636234,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-11 18:16:19','','0000-00-00 00:00:00'),(0,458,'',0,'','DAXABEN DHANAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-11','Y','59Y',0,0,0,'F','','','+91',9714297995,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-11 18:21:19','manshi','2025-11-27 19:05:07'),(0,459,'',0,'','SUKHDEVSINH P KHERADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-11','Y','50Y',0,0,0,'M','','','+91',9725623711,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 18:24:08','','0000-00-00 00:00:00'),(0,460,'',0,'','SABANABEN U DAIYA','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1980-10-11','Y','45Y',0,0,0,'F','','','+91',9825963392,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 18:36:56','','0000-00-00 00:00:00'),(0,461,'',0,'','NIRAVBHAI MARVANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-11','Y','25Y',0,0,0,'M','','','+91',7575837182,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-11 18:39:51','reception','2025-10-17 17:06:43'),(0,462,'',0,'','NISHABEN D GOHEL ','','','','',0,'','','GUJARAT','INDIA','1998-10-11','Y','27Y',0,0,0,'F','','','+91',9723253950,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 18:45:46','','0000-00-00 00:00:00'),(0,463,'',0,'','MAUSAM SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-10-11','Y','18Y',0,0,0,'F','','','+91',9924737308,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-11 19:14:50','reception','2025-10-15 13:22:05'),(0,464,'',0,'','MADHUBEN BHATTI','','','GYAN JIVAN SOC, ST NO-4,','RAIYA ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-10-11','Y','57Y',0,0,0,'F','','','+91',9427263725,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-11 19:21:56','','0000-00-00 00:00:00'),(0,465,'',0,'','KUNAL ASHWINBHAI MITHANI','','','101, ROYAL PRADISE BUILDING, ','SAURASHTRA KALA KENDRA SOC MAIN ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-07-19','N','43Y',0,0,0,'M','','','+91',9638198006,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-11 22:22:07','','0000-00-00 00:00:00'),(0,466,'',0,'','VIRAMBHAI ZAPDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-12','Y','45Y',0,0,0,'M','','','+91',9714435758,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-12 09:21:13','manshi','2025-12-23 11:12:13'),(0,467,'',0,'','AKHILESH PAL','','','SHITAL PARK','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-12','Y','25Y',0,0,0,'M','','','+91',9016956412,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-12 11:06:05','','0000-00-00 00:00:00'),(0,468,'',0,'','ALPESHBHAI MOTERIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-10-13','Y','57Y',57,0,0,'M','','','+91',9714810733,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-13 09:11:39','shweta','2025-10-27 20:21:52'),(0,469,'',0,'','NAYNABEN MANKAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-13','Y','42Y',0,0,0,'F','','','+91',8200247557,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-13 09:14:44','','0000-00-00 00:00:00'),(0,470,'',0,'','AANANDIBEN SHUKLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1928-10-13','Y','97Y',0,0,0,'F','','','+91',9409008831,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-13 09:16:11','','0000-00-00 00:00:00'),(0,471,'',0,'','MAGANBHAI T SADHADIYA','','','','',0,'NEKAM TANKARA','NEKAM TANKARA','GUJARAT','INDIA','1950-10-13','Y','75Y',0,0,0,'M','','','+91',9724140437,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 09:18:42','','0000-00-00 00:00:00'),(0,472,'',0,'','UMESHBHAI B AJANI','','','','',0,'KUCHIYADAD RAJKOT','KUCHIYADAD RAJKOT','GUJARAT','INDIA','1983-10-13','Y','42Y',42,0,0,'M','','','+91',9904572410,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 09:18:52','reception','2025-11-29 10:09:09'),(0,473,'',0,'','NARSHIBHAI B BHESDADIYA','','','','',0,'','','GUJARAT','INDIA','1962-10-13','Y','63Y',0,0,0,'M','','','+91',8320349921,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 09:20:30','','0000-00-00 00:00:00'),(0,474,'',0,'','AARVIK MULIYANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2020-10-13','Y','05Y0M',0,0,0,'M','','','+91',8781022374,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-13 09:23:57','','0000-00-00 00:00:00'),(0,475,'',0,'','JAYESHBHAI PATADIYA','','','','',0,'SAVARKUNDLA','SAVARKUNDLA','GUJARAT','INDIA','1965-10-13','Y','60Y',0,0,0,'M','','','+91',9033308049,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 09:24:41','drashti','2025-12-19 17:37:16'),(0,476,'',0,'','RANJANBEN R KOTADIYA','','','','',0,'KESHOD','KESHOD','GUJARAT','INDIA','1983-10-13','Y','42Y',0,0,0,'F','','','+91',9913287387,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 09:24:44','reception','2025-12-06 10:18:29'),(0,477,'',0,'','DARSHNA PIYUSHBHAI PAREKH','','','SHANTI NIKETAN RESIDENCY,','NEAR ALAP GREEN CITY, RAIYA ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-13','Y','42Y',0,0,0,'F','','','+91',8160510062,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-13 09:26:05','janvi','2025-11-03 18:59:23'),(0,478,'',0,'','VIJYABEN G DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-10-13','Y','73Y',0,0,0,'F','','','+91',9898995472,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 09:27:32','shweta','2025-10-23 12:36:50'),(0,479,'',0,'','RAMESHBHAI K TANK','','','','',0,'VODKA','VODKA','GUJARAT','INDIA','1975-10-13','Y','50Y',0,0,0,'M','','','+91',6355904006,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 09:28:58','','0000-00-00 00:00:00'),(0,480,'',0,'','KANCHANBEN B KARETIYA','','','','',0,'BABRA','BABRA','GUJARAT','INDIA','1955-10-13','Y','70Y',0,0,0,'F','','','+91',9998273400,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 09:38:06','','0000-00-00 00:00:00'),(0,481,'',0,'','LALITABEN S SONI','','','','',0,'SHREENATHJI','SHREENATHJI','GUJARAT','INDIA','1967-10-13','Y','58Y',0,0,0,'F','','','+91',9784457605,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 09:46:39','','0000-00-00 00:00:00'),(0,482,'',0,'','RAMESH BABU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-13','Y','50Y',50,0,0,'F','','','+91',8179502874,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','reception','2025-10-13 09:53:29','reception','2025-10-13 09:55:16'),(0,483,'',0,'','BHARATBHAI  H BARASARA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1970-10-13','Y','55Y',0,0,0,'M','','','+91',7228913289,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 09:54:12','reception','2025-11-05 10:43:07'),(0,484,'',0,'','MONIKABEN H KHUNT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-13','Y','45Y',0,0,0,'F','','','+91',9924844824,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 09:57:23','','0000-00-00 00:00:00'),(0,485,'',0,'','HEMALBHAI D DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-10-13','Y','44Y',0,0,0,'M','','','+91',9328932926,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 10:01:07','','0000-00-00 00:00:00'),(0,486,'',0,'','HASINABEN BHUVAR','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1996-10-13','Y','29Y',0,0,0,'F','','','+91',9374836815,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 10:05:44','priyanshi','2025-11-11 17:16:10'),(0,487,'',0,'','ARATI PANDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-10-13','Y','37Y',37,0,0,'F','','','+91',9375225120,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','reception','2025-10-13 10:10:13','reception','2025-11-05 10:55:16'),(0,488,'',0,'','RAMESHBHAI C DAVDA','','','','',0,'BOTAD','BOTAD','GUJARAT','INDIA','1954-10-13','Y','71Y',0,0,0,'M','','','+91',9510082109,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 10:13:44','','0000-00-00 00:00:00'),(0,489,'',0,'','VARSHABEN VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-13','Y','68Y',0,0,0,'F','','','+91',9825096958,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-13 10:13:48','janvi','2025-10-17 11:19:04'),(0,490,'',0,'','RUKHIBEN R PARMAR','','','','',0,'TIKAR','TIKAR','GUJARAT','INDIA','1980-10-13','Y','45Y',0,0,0,'F','','','+91',8200634847,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-13 10:14:45','manshi','2025-10-28 18:10:32'),(0,491,'',0,'','EKTABEN A PARMAR','','','','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1992-10-13','Y','33Y',0,0,0,'F','','','+91',9974547900,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 10:15:20','','0000-00-00 00:00:00'),(0,492,'',0,'','M K LAKHANI','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1950-10-13','Y','75Y',0,0,0,'M','','','+91',9106323025,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 10:16:30','reception','2025-12-13 11:01:58'),(0,493,'',0,'','BHUMIKABEN V NAKUM','','','','',0,'KHAMBHADIYA','KHAMBHADIYA','GUJARAT','INDIA','1986-10-13','Y','39Y',0,0,0,'F','','','+91',9558821557,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-13 10:16:45','','0000-00-00 00:00:00'),(0,494,'',0,'','MIRALBEN PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-10-13','Y','41Y',0,0,0,'F','','','+91',7600025897,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-13 10:27:29','','0000-00-00 00:00:00'),(0,495,'',0,'','RASILABEN R SARDHARA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1965-10-13','Y','60Y',0,0,0,'F','','','+91',7016825225,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 10:27:32','reception','2025-10-30 09:33:42'),(0,496,'',0,'','CHINTAN HARESHBHAI VARSANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-10-13','Y','21Y',21,0,0,'M','','','+91',9099586643,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 10:30:25','reception','2025-11-05 10:17:43'),(0,497,'',0,'','GEETABEN P CHOVATIYA','','','','',0,'MOVRI','MOVRI','GUJARAT','INDIA','1983-10-13','Y','42Y',0,0,0,'F','','','+91',7623981415,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 10:32:13','','0000-00-00 00:00:00'),(0,498,'',0,'','BHARATBHAI L MAKWANA','','','','',0,'VICHHIYA','VICHHIYA','GUJARAT','INDIA','1977-10-13','Y','48Y',0,0,0,'M','','','+91',9016776375,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 10:33:18','reception','2025-11-12 11:08:23'),(0,499,'',0,'','SHUHANI K BAVARVA','','','','',0,'SANALA','SANALA','GUJARAT','INDIA','2011-10-13','Y','14Y',0,0,0,'F','','','+91',9909847405,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 10:38:44','','0000-00-00 00:00:00'),(0,500,'',0,'','VINODBHAI GHATODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-13','Y','52Y',0,0,0,'M','','','+91',9427354243,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 10:51:55','','0000-00-00 00:00:00'),(0,501,'',0,'','JAVAHARBHAI DOSHI','','','','',0,'AHEMDABAD','AHEMDABAD','GUJARAT','INDIA','1960-10-13','Y','65Y',0,0,0,'M','','','+91',9427726488,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 10:58:23','','0000-00-00 00:00:00'),(0,502,'',0,'','DEVSHIBHAI VEGAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-10-13','Y','66Y',0,0,0,'M','','','+91',8469122551,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 10:58:58','janvi','2025-10-15 12:10:08'),(0,503,'',0,'','MIRALBEN PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-10-13','Y','41Y',0,0,0,'F','','','+91',7600025897,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 10:59:55','','0000-00-00 00:00:00'),(0,504,'',0,'','PREMJIBHAI R MASANI','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1961-10-13','Y','64Y',0,0,0,'M','','','+91',9909583013,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-13 11:00:45','','0000-00-00 00:00:00'),(0,505,'',0,'','MADHUKANTABEN R RADADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-13','Y','60Y',0,0,0,'F','','','+91',9537102249,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-13 11:04:08','shweta','2025-12-17 11:13:55'),(0,506,'',0,'','N N GEDIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-13','Y','50Y',0,0,0,'M','','','+91',9909962526,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 11:06:53','janvi','2025-12-05 19:14:15'),(0,507,'',0,'','VASANI JYOTIBEN NARENDRABHAI','','BLOCK NO B','GOLD STONE APPRTMENT, ','NEAR AALAP GREEN CITY RAIYA ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-01-01','N','64Y',0,0,0,'F','','','+91',7575803861,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 11:13:30','janvi','2025-10-18 11:29:52'),(0,508,'',0,'','VIRDA SATISHBHAI RAMBHAI  ','','','KRISHNA PARK-2 OPP GOLDEN SUPER MARKET  S','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-06-01','N','38Y',0,0,0,'M','','','+91',7600062852,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 11:14:22','vishal','2025-10-15 10:37:58'),(0,509,'',0,'','UMABA B GOHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-13','Y','70Y',0,0,0,'F','','','+91',9624999244,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 11:15:13','','0000-00-00 00:00:00'),(0,510,'',0,'','DAYABEN V GHOGHARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-13','Y','38Y',0,0,0,'F','','','+91',8238388129,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-13 11:15:52','manshi','2025-10-27 11:27:39'),(0,511,'',0,'','RUSHIBHAI PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-10-13','Y','31Y',0,0,0,'M','','','+91',7874689996,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 11:21:13','','0000-00-00 00:00:00'),(0,512,'',0,'','KAUSHIKBHAI BAVARVA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1989-10-13','Y','36Y',0,0,0,'M','','','+91',9909847405,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 11:25:21','','0000-00-00 00:00:00'),(0,513,'',0,'','NIRAV M  CHANDARANA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1991-10-13','Y','34Y',0,0,0,'M','','','+91',9033156651,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 11:28:20','reception','2025-12-12 11:27:26'),(0,514,'',0,'','RASILABEN LUNAGARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-13','Y','52Y',0,0,0,'F','','','+91',9374106552,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-13 11:29:16','manshi','2025-12-09 11:04:28'),(0,515,'',0,'','INDRABA N VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-13','Y','64Y',0,0,0,'F','','','+91',9624544044,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 11:32:43','','0000-00-00 00:00:00'),(0,516,'',0,'','URMILABEN B TALPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-13','Y','45Y',0,0,0,'F','','','+91',9824849194,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-13 11:33:31','','0000-00-00 00:00:00'),(0,517,'',0,'','MANUBHAI PANCHABHAI PAGHADAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-10-13','Y','63Y',0,0,0,'M','','','+91',7574801864,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 11:33:45','','0000-00-00 00:00:00'),(0,518,'',0,'','USHABEN RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-13','Y','75Y',0,0,0,'F','','','+91',9409578184,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 11:37:20','drashti','2025-11-11 10:29:42'),(0,519,'',0,'','KUNDANBEN SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-10-13','Y','80Y',80,0,0,'F','','','+91',9824560944,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 11:38:55','drashti','2025-11-27 18:38:22'),(0,520,'',0,'','JOSHNABEN P. DETROJA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1974-10-13','Y','51Y',0,0,0,'F','','','+91',9979603909,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 11:43:32','janvi','2025-11-14 10:19:56'),(0,521,'',0,'','BHAVIKABEN M  BAMBHANIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1985-10-13','Y','40Y',0,0,0,'F','','','+91',9586046883,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 11:45:22','reception','2025-11-15 11:41:44'),(0,522,'',0,'','NAIMISH TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-13','Y','25Y',0,0,0,'M','','','+91',8461783897,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 11:47:39','reception','2025-10-29 18:32:56'),(0,523,'',0,'','SHITALBEN C SOHLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-10-13','Y','23Y',0,0,0,'F','','','+91',7285000335,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-13 11:47:50','','0000-00-00 00:00:00'),(0,524,'',0,'','BHAVNABEN H PARMAR','','','','',0,'UNA','UNA','GUJARAT','INDIA','1981-10-13','Y','44Y',0,0,0,'F','','','+91',9924266156,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 11:50:41','reception','2025-11-06 11:41:15'),(0,525,'',0,'','MAMTABEN MAGNANI','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1982-10-13','Y','43Y',0,0,0,'F','','','+91',7600094695,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 11:51:13','','0000-00-00 00:00:00'),(0,526,'',0,'','BABLUKUMAR SINGH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-13','Y','38Y',0,0,0,'M','','','+91',7043782619,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 11:53:46','','0000-00-00 00:00:00'),(0,527,'',0,'','NAJMABEN BAVRA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1980-10-13','Y','45Y',0,0,0,'F','','','+91',9909554035,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 11:54:39','','0000-00-00 00:00:00'),(0,528,'',0,'','FAME D KANPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-10-13','Y','19Y',0,0,0,'M','','','+91',9512248068,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-13 11:55:25','','0000-00-00 00:00:00'),(0,529,'',0,'','MINABEN  MODI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-10-13','Y','80Y',0,0,0,'F','','','+91',9825771882,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 12:07:15','shweta','2025-10-13 17:05:06'),(0,530,'',0,'','MUKESHBHAI V THUMMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-13','Y','45Y',0,0,0,'M','','','+91',9824658095,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 12:08:51','','0000-00-00 00:00:00'),(0,531,'',0,'','HIMANSHUBHAI MANDALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-13','Y','32Y',0,0,0,'M','','','+91',9574873761,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 12:17:51','','0000-00-00 00:00:00'),(0,532,'',0,'','AMRATBEN R KOLI','','','','',0,'RAPAR','RAPAR','GUJARAT','INDIA','1995-10-13','Y','30Y',0,0,0,'F','','','+91',8758535205,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 12:19:20','reception','2025-11-08 12:34:42'),(0,533,'',0,'','MANJULABEN TANNA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-10-13','Y','63Y',0,0,0,'F','','','+91',9737780007,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 12:21:05','drashti','2025-11-26 12:13:31'),(0,534,'',0,'','SAIYAB NIMGADE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-13','Y','75Y',75,0,0,'F','','','+91',9714973874,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 12:22:51','reception','2025-11-11 10:03:32'),(0,535,'',0,'','DILJITBA R ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-13','Y','59Y',59,0,0,'F','','','+91',9924620009,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 12:25:05','reception','2025-11-12 11:48:04'),(0,536,'',0,'','HANSABEN  D SAVALIYA','','','','',0,'DHORAJI','DHORAJI','GUJARAT','INDIA','1952-10-13','Y','73Y',0,0,0,'F','','','+91',9033533000,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 12:28:44','','0000-00-00 00:00:00'),(0,537,'',0,'','ANSUYABEN R BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1940-10-13','Y','85Y',0,0,0,'F','','','+91',9824216815,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 12:40:39','','0000-00-00 00:00:00'),(0,538,'',0,'','AKILBHAI Y VADIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-13','Y','32Y',0,0,0,'M','','','+91',9662745160,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 12:44:42','reception','2025-12-04 12:01:47'),(0,539,'',0,'','ARUNABEN B JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-10-13','Y','66Y',0,0,0,'F','','','+91',9909310008,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-13 13:00:59','manshi','2025-11-13 11:09:03'),(0,540,'',0,'','RAKSHABEN A KOTHARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-13','Y','52Y',0,0,0,'F','','','+91',8306850343,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 13:02:33','','0000-00-00 00:00:00'),(0,541,'',0,'','DINESHBHAI M RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-10-13','Y','76Y',0,0,0,'M','','','+91',9924577926,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 13:06:42','','0000-00-00 00:00:00'),(0,542,'',0,'','JOHARABEN ANSARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-13','Y','32Y',0,0,0,'F','','','+91',9428191170,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 13:36:53','','0000-00-00 00:00:00'),(0,543,'',0,'','HETALBEN RAJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-13','Y','48Y',0,0,0,'F','','','+91',8780785819,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 14:12:21','','0000-00-00 00:00:00'),(0,544,'',0,'','JIGNESHBHAI R JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-10-13','Y','49Y',0,0,0,'M','','','+91',9725141070,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-13 15:34:56','','0000-00-00 00:00:00'),(0,545,'',0,'','SHEELABEN TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-10-13','Y','49Y',0,0,0,'F','','','+91',9825313813,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-13 16:09:56','vishal','2025-10-13 16:57:45'),(0,546,'',0,'','HITANSHUBHAI J VADUKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-10-13','Y','18Y',0,0,0,'M','','','+91',9824416817,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 16:32:39','reception','2025-12-10 11:11:26'),(0,547,'',0,'','BALVANTRAI M MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-10-13','Y','80Y',0,0,0,'M','','','+91',9825989404,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-13 16:44:14','reception','2025-10-28 11:09:51'),(0,548,'',0,'','MAYURBHAI K PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-10-13','Y','26Y',0,0,0,'M','','','+91',6353402300,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 16:49:56','','0000-00-00 00:00:00'),(0,549,'',0,'','SHANTIBHAI GOSWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-10-13','Y','69Y',0,0,0,'M','','','+91',9879503233,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-13 16:57:12','','0000-00-00 00:00:00'),(0,550,'',0,'','SANJAYBHAI M BHALODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-10-13','Y','47Y',0,0,0,'M','','','+91',9825540475,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-13 16:59:09','reception','2025-12-10 16:13:33'),(0,551,'',0,'','HARESHBHAI TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-13','Y','64Y',0,0,0,'M','','','+91',9825133896,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 17:14:33','janvi','2025-11-28 18:26:32'),(0,552,'',0,'','KRISHA V. AKBARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2009-10-13','Y','16Y',0,0,0,'F','','','+91',9879762634,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 17:18:29','reception','2025-12-05 17:38:08'),(0,553,'',0,'','MANOJBHAI L KHUVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-13','Y','42Y',0,0,0,'M','','','+91',9824284320,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 17:18:42','reception','2025-11-03 18:03:02'),(0,554,'',0,'','DR DISHA TANCHAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-13','Y','25Y',0,0,0,'F','','','+91',9825154637,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 17:19:42','drashti','2025-10-15 18:08:00'),(0,555,'',0,'','DHIRAJLAL K AKBARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-13','Y','65Y',0,0,0,'M','','','+91',9428353586,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 17:25:51','','0000-00-00 00:00:00'),(0,556,'',0,'','KALPESHBHAI THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-13','Y','42Y',0,0,0,'M','','','+91',9429189430,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 17:26:20','','0000-00-00 00:00:00'),(0,557,'',0,'','PRAFULABEN KATIRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-13','Y','55Y',0,0,0,'F','','','+91',9429189430,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 17:28:29','','0000-00-00 00:00:00'),(0,558,'',0,'','CHETANBHAI R BAVAL','','','','',0,'BHANVAD','BHANVAD','GUJARAT','INDIA','2002-10-13','Y','23Y',0,0,0,'M','','','+91',9687734303,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 17:42:25','','0000-00-00 00:00:00'),(0,559,'',0,'','REKHABEN D JOSHI','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1955-10-13','Y','70Y',0,0,0,'F','','','+91',8866011187,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 17:43:01','','0000-00-00 00:00:00'),(0,560,'',0,'','HETALI MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-13','Y','32Y',0,0,0,'F','','','+91',6353864967,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 17:44:09','','0000-00-00 00:00:00'),(0,561,'',0,'','JOSHI ARUNBHAI LABHASANKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-13','Y','65Y',0,0,0,'M','','','+91',9879878718,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 17:49:58','','0000-00-00 00:00:00'),(0,562,'',0,'','KANTABEN A PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1942-10-13','Y','83Y',0,0,0,'F','','','+91',9722448844,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 17:51:13','reception','2025-12-12 18:50:17'),(0,563,'',0,'','RITABEN N PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-10-13','Y','49Y',0,0,0,'F','','','+91',9909990518,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 17:53:33','','0000-00-00 00:00:00'),(0,564,'',0,'','SHARDABEN  A JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-10-13','Y','72Y',0,0,0,'F','','','+91',9720690370,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 17:55:13','janvi','2025-11-11 12:09:38'),(0,565,'',0,'','SURESHBHAI M BAVARVA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1977-10-13','Y','48Y',0,0,0,'M','','','+91',9825672150,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 18:03:30','','0000-00-00 00:00:00'),(0,566,'',0,'','HASHUBHAI T BHADRESHVARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-13','Y','60Y',0,0,0,'M','','','+91',9173422003,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 18:04:54','','0000-00-00 00:00:00'),(0,567,'',0,'','MANISHBHAI JANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-13','Y','52Y',0,0,0,'M','','','+91',9998945001,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 18:05:15','drashti','2025-12-17 11:02:43'),(0,568,'',0,'','JAYSHREEBEN H SHRIMALI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-10-13','Y','37Y',37,0,0,'F','','','+91',6358820711,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 18:06:45','reception','2025-10-13 18:39:59'),(0,569,'',0,'','NIDHIBEN VITHLANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-13','Y','30Y',0,0,0,'F','','','+91',7433815844,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 18:07:42','','0000-00-00 00:00:00'),(0,570,'',0,'','NIRANJANBHAI VASAVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-10-13','Y','26Y',0,0,0,'M','','','+91',9328603365,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 18:09:10','janvi','2025-10-18 18:16:54'),(0,571,'',0,'','RAJESHBHAI UPADHYAY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-13','Y','51Y',0,0,0,'M','','','+91',9537306863,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-13 18:09:34','manshi','2025-11-28 18:07:37'),(0,572,'',0,'','MINABEN DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-13','Y','65Y',0,0,0,'F','','','+91',7990774544,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 18:10:39','','0000-00-00 00:00:00'),(0,573,'',0,'','YESHA V KARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-10-13','Y','17Y',0,0,0,'F','','','+91',9426936236,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 18:10:52','','0000-00-00 00:00:00'),(0,574,'',0,'','PINKIBEN DESAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-13','Y','50Y',0,0,0,'F','','','+91',9426241424,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 18:14:40','janvi','2025-12-06 11:04:29'),(0,575,'',0,'','HETALBEN S DODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-10-13','Y','37Y',0,0,0,'F','','','+91',8000970008,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 18:15:18','janvi','2025-11-20 11:09:29'),(0,576,'',0,'','DILIPBHAI R JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-10-13','Y','74Y',0,0,0,'M','','','+91',8866011187,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 18:16:52','','0000-00-00 00:00:00'),(0,577,'',0,'','HEZAL DODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2020-02-08','N','05Y8M',0,0,0,'F','','','+91',9998264481,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 18:18:43','','0000-00-00 00:00:00'),(0,578,'',0,'','KUMUDBEN KHAMBHAYATA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-13','Y','75Y',0,0,0,'F','','','+91',9727724885,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 18:19:08','drashti','2025-10-18 12:58:17'),(0,579,'',0,'','KOMALBEN CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-10-13','Y','37Y',0,0,0,'F','','','+91',9265524541,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 18:21:13','','0000-00-00 00:00:00'),(0,580,'',0,'','RITISHABEN SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-10-13','Y','28Y',0,0,0,'F','','','+91',9409562857,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 18:22:31','urvashi','2025-12-04 19:24:08'),(0,581,'',0,'','JASUBEN N NANDASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-13','Y','55Y',0,0,0,'F','','','+91',9512081938,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 18:41:27','','0000-00-00 00:00:00'),(0,582,'',0,'','BABUBHAI POPATBHAI FACHDA','','','BAPASITARAM CHOWK  MAVDI GREEN CITY STREET NO-2','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-13','Y','62Y',0,0,0,'M','','','+91',9824846030,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-13 18:42:07','','0000-00-00 00:00:00'),(0,583,'',0,'','ABHIJEETSINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-13','Y','30Y',0,0,0,'M','','','+91',9537700019,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 18:43:38','','0000-00-00 00:00:00'),(0,584,'',0,'','KAMLESHBEN J VADGAMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-10-13','Y','72Y',0,0,0,'F','','','+91',9909280928,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 18:48:51','','0000-00-00 00:00:00'),(0,585,'',0,'','SMRUTI PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-13','Y','32Y',0,0,0,'F','','','+91',7778085258,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 18:49:38','','0000-00-00 00:00:00'),(0,586,'',0,'','NIRANJANBHAI VASAVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-10-13','Y','26Y',0,0,0,'M','','','+91',9328603365,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 18:51:33','','0000-00-00 00:00:00'),(0,587,'',0,'','MAHENDRABHAI S RUGHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-10-13','Y','66Y',0,0,0,'M','','','+91',9924278703,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 18:53:10','drashti','2025-10-25 12:42:05'),(0,588,'',0,'','PRADIPSINH J CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-10-13','Y','27Y',0,0,0,'M','','','+91',9909008950,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 18:53:44','','0000-00-00 00:00:00'),(0,589,'',0,'','ARUNABEN A MANDALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-10-13','Y','66Y',0,0,0,'F','','','+91',9426996395,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 18:54:07','reception','2025-11-12 12:28:31'),(0,590,'',0,'','LATABEN B DALSANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-13','Y','55Y',0,0,0,'F','','','+91',9662641794,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 18:56:34','','0000-00-00 00:00:00'),(0,591,'',0,'','SANGITABEN TAJPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-13','Y','55Y',0,0,0,'F','','','+91',9409413657,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 18:58:47','','0000-00-00 00:00:00'),(0,592,'',0,'','BINABEN M LASHKARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-13','Y','35Y',0,0,0,'F','','','+91',9898013582,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 19:06:15','reception','2025-11-27 19:01:34'),(0,593,'',0,'','PARTHBHAI KAKKAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-10-13','Y','21Y',0,0,0,'M','','','+91',9974530774,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 19:10:51','drashti','2025-11-28 18:07:40'),(0,594,'',0,'','TRUPTIBEN SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-13','Y','48Y',0,0,0,'F','','','+91',9106116500,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-13 19:18:17','manshi','2025-11-07 19:08:16'),(0,595,'',0,'','BHARTIBEN B RAVESHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-13','Y','50Y',0,0,0,'F','','','+91',9426201089,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-13 19:18:44','','0000-00-00 00:00:00'),(0,596,'',0,'','VIRALIBA GOHEL','','','','',0,'GOJIYA PADDHARI','GOJIYA PADDHARI','GUJARAT','INDIA','1999-10-13','Y','26Y',0,0,0,'F','','','+91',9624300008,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 19:21:07','','0000-00-00 00:00:00'),(0,597,'',0,'','SHAKUNTALABEN A UPADHYAY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-10-13','Y','72Y',0,0,0,'F','','','+91',9879018019,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 19:23:27','','0000-00-00 00:00:00'),(0,598,'',0,'','MEHULBHAI GHUTLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-13','Y','40Y',0,0,0,'M','','','+91',9879119377,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 19:25:45','','0000-00-00 00:00:00'),(0,599,'',0,'','NIRVED DHOTE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2020-10-13','Y','05Y0M',0,0,0,'M','','','+91',7350717750,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-13 19:26:24','manshi','2025-11-08 19:29:38'),(0,600,'',0,'','PANKAJBHAI PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-10-13','Y','34Y',0,0,0,'M','','','+91',9998889987,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-13 19:29:28','','0000-00-00 00:00:00'),(0,601,'',0,'','RAMBHAI CHAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-13','Y','56Y',0,0,0,'M','','','+91',8511210507,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 19:32:04','drashti','2025-12-01 18:26:28'),(0,602,'',0,'','GAURAVKUMAR MEENA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-10-13','Y','37Y',0,0,0,'M','','','+91',8769379174,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-13 19:32:07','','0000-00-00 00:00:00'),(0,603,'',0,'','ANILBHAI PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-10-13','Y','29Y',0,0,0,'M','','','+91',9924057955,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-13 19:32:31','janvi','2025-10-28 19:44:47'),(0,604,'',0,'','BHAVIKBHAI JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-10-13','Y','23Y',0,0,0,'M','','','+91',8866259698,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-13 19:47:43','','0000-00-00 00:00:00'),(0,605,'',0,'','MAHENDRA SHIVJI RUGHANI','','','KHAMBHALIYA ','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1959-10-13','Y','66Y',0,0,0,'M','','','+91',9924278703,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-13 21:58:40','','0000-00-00 00:00:00'),(0,606,'',0,'','SHWETA HARDIK TRIVEDI','','','3/4 CHANDAN PARK OPP GENESIS HOSPITAL','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-12-22','N','34Y',0,0,0,'F','','','+91',9974911818,'+91',7405345411,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-13 22:26:30','janvi','2025-10-18 12:24:53'),(0,607,'',0,'','ASHMITABEN M GOHIL','','','GOPAL CHOWK NEAR AKSHAR SCHOOL SOMANTH SOC','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-06-12','N','36Y',0,0,0,'F','','','+91',6351458202,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-13 22:36:35','janvi','2025-10-18 18:24:09'),(0,608,'',0,'','NEHALBEN PESIVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-14','Y','40Y',0,0,0,'M','','','+91',9427435003,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-14 08:51:13','','0000-00-00 00:00:00'),(0,609,'',0,'','PADMINIBEN PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-14','Y','42Y',0,0,0,'F','','','+91',7817878710,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-14 08:53:37','','0000-00-00 00:00:00'),(0,610,'',0,'','HIRENBHAI KARIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-14','Y','59Y',0,0,0,'M','','','+91',9033400993,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-14 08:55:40','manshi','2025-10-17 12:05:03'),(0,611,'',0,'','DIPTIBEN KARIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-10-14','Y','57Y',0,0,0,'F','','','+91',9033400993,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-14 08:57:30','manshi','2025-11-13 18:54:12'),(0,612,'',0,'','PRAVINBHAI VORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-14','Y','64Y',0,0,0,'M','','','+91',9904577506,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-14 08:59:36','','0000-00-00 00:00:00'),(0,613,'',0,'','GEETABEN SAHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-14','Y','35Y',0,0,0,'F','','','+91',8160499796,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-14 09:00:57','','0000-00-00 00:00:00'),(0,614,'',0,'','NITABEN M DHAKAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-14','Y','60Y',0,0,0,'F','','','+91',8460119090,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-14 09:32:19','','0000-00-00 00:00:00'),(0,615,'',0,'','LALITBHAI G JESADIYA','','','','',0,'ANANDPAR','ANANDPAR','GUJARAT','INDIA','1980-10-14','Y','45Y',0,0,0,'M','','','+91',8758769267,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 09:45:57','','0000-00-00 00:00:00'),(0,616,'',0,'','KISHORSINH H RANA','','','','',0,'SURENDRANAGAR','SURENDRANAGAR','GUJARAT','INDIA','1966-10-14','Y','59Y',0,0,0,'M','','','+91',9879530063,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 10:06:29','reception','2025-10-31 16:11:45'),(0,617,'',0,'','VAISHALIBEN CHOVATIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1983-10-14','Y','42Y',0,0,0,'F','','','+91',9909172976,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-14 10:15:58','','0000-00-00 00:00:00'),(0,618,'',0,'','REHMATBEN  A MATHAKIYA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1970-10-14','Y','55Y',0,0,0,'F','','','+91',7990548633,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 10:20:38','','0000-00-00 00:00:00'),(0,619,'',0,'','NISHABEN PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-14','Y','45Y',0,0,0,'F','','','+91',9913686841,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 10:30:24','reception','2025-12-15 16:57:13'),(0,620,'',0,'','VARSHABEN PATORIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-14','Y','45Y',0,0,0,'F','','','+91',9428010690,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 10:32:16','','0000-00-00 00:00:00'),(0,621,'',0,'','RIMABEN H NADPARA','','','','',0,'UPLETA','UPLETA','GUJARAT','INDIA','1976-10-14','Y','49Y',0,0,0,'F','','','+91',9724812887,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 10:32:20','reception','2025-11-05 09:55:01'),(0,622,'',0,'','VIJYABEN M GADHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-10-14','Y','54Y',0,0,0,'F','','','+91',9724608848,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 10:35:50','drashti','2025-12-23 11:51:55'),(0,623,'',0,'','GEETABEN CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-10-14','Y','46Y',0,0,0,'F','','','+91',9809499573,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 10:35:52','reception','2025-10-29 18:04:09'),(0,624,'',0,'','NARANBHAI KARABHAI SANIYA','','','SOMNATH SOC-2, ','ST NO.5',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-14','Y','55Y',0,0,0,'M','','','+91',8511111341,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 10:38:40','drashti','2025-12-13 10:08:47'),(0,625,'',0,'','BHAILAL BAMBHAVA','','','KHENGARKA','',0,'PADDHARI','PADDHARI','GUJARAT','INDIA','2003-10-20','N','21Y',0,0,0,'M','','','+91',9662709095,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-14 10:40:25','reception','2025-10-17 17:02:04'),(0,626,'',0,'','JYOTSHANABEN R VAGHELA','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1978-10-14','Y','47Y',0,0,0,'F','','','+91',9429098760,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 10:48:03','','0000-00-00 00:00:00'),(0,627,'',0,'','ANSOYABEN HINGRAJIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-10-14','Y','61Y',0,0,0,'F','','','+91',9265993821,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 10:55:31','reception','2025-10-28 18:06:27'),(0,628,'',0,'','PRITIBEN N RAJVEER','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-14','Y','58Y',0,0,0,'F','','','+91',9979799769,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 10:56:34','','0000-00-00 00:00:00'),(0,629,'',0,'','YOGESHBHAI D JIVRAJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-10-14','Y','61Y',0,0,0,'M','','','+91',9924036184,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 11:02:50','','0000-00-00 00:00:00'),(0,630,'',0,'','NILAYBHAI N KHERADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-10-14','Y','54Y',0,0,0,'M','','','+91',9601268255,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-14 11:04:47','janvi','2025-10-31 10:05:01'),(0,631,'',0,'','SANJAYBHAI DAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-14','Y','58Y',0,0,0,'M','','','+91',8087444173,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 11:06:49','priyanshi','2025-11-13 11:07:06'),(0,632,'',0,'','SANGITABEN R DAVDA','','','','',0,'BOTAD','BOTAD','GUJARAT','INDIA','1982-10-14','Y','43Y',43,0,0,'F','','','+91',9924583307,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 11:11:58','reception','2025-11-19 12:50:58'),(0,633,'',0,'','SHANKARBHAI SHAHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-14','Y','50Y',0,0,0,'M','','','+91',7048833448,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-14 11:12:59','','0000-00-00 00:00:00'),(0,634,'',0,'','MUKTABEN R RAMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-14','Y','65Y',0,0,0,'F','','','+91',9904355495,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 11:14:17','','0000-00-00 00:00:00'),(0,635,'',0,'','HEENABEN KUVARADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-14','Y','42Y',0,0,0,'F','','','+91',9909957538,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 11:16:01','','0000-00-00 00:00:00'),(0,636,'',0,'','NANADINI MODI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-10-14','Y','19Y',0,0,0,'F','','','+91',7096286642,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 11:17:07','','0000-00-00 00:00:00'),(0,637,'',0,'','PRAVINBHAI P TIMBADIYA','','','','',0,'MOTA VADARA','MOTA VADARA','GUJARAT','INDIA','1974-10-14','Y','51Y',0,0,0,'M','','','+91',9925307316,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 11:18:49','reception','2025-10-29 10:21:52'),(0,638,'',0,'','SHREY KARDANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-10-14','Y','19Y',0,0,0,'M','','','+91',7777943301,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-14 11:28:17','','0000-00-00 00:00:00'),(0,639,'',0,'','PARULBEN TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-14','Y','39Y',0,0,0,'F','','','+91',9624434342,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 11:40:21','','0000-00-00 00:00:00'),(0,640,'',0,'','JOSHNABEN K TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-10-14','Y','67Y',0,0,0,'F','','','+91',9904224568,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-14 11:40:54','','0000-00-00 00:00:00'),(0,641,'',0,'','MANSUKHBHAI A CHHAG','','','','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1946-10-14','Y','79Y',0,0,0,'M','','','+91',8320641979,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 11:42:06','priyanshi','2025-11-22 11:28:56'),(0,642,'',0,'','SARLABEN AGHERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-14','Y','60Y',0,0,0,'F','','','+91',9601107699,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-14 11:48:11','','0000-00-00 00:00:00'),(0,643,'',0,'','NIKUNJBHAI Y PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-14','Y','35Y',0,0,0,'M','','','+91',7600555551,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 11:51:11','','0000-00-00 00:00:00'),(0,644,'',0,'','RASHMIBEN R BARAD','','','','',0,'KODINAR','KODINAR','GUJARAT','INDIA','1989-10-14','Y','36Y',0,0,0,'F','','','+91',9228117157,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 11:59:33','','0000-00-00 00:00:00'),(0,645,'',0,'','CHETNABEN H VASAVADA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-14','Y','59Y',0,0,0,'F','','','+91',9428788575,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-14 12:09:53','drashti','2025-11-20 11:57:06'),(0,646,'',0,'','PRABHABEN JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-10-14','Y','63Y',0,0,0,'F','','','+91',9427943059,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 12:12:10','','0000-00-00 00:00:00'),(0,647,'',0,'','DR SHWETA SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-14','Y','36Y',0,0,0,'F','','','+91',9428475464,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-14 12:13:55','','0000-00-00 00:00:00'),(0,648,'',0,'','DAXABEN ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-10-14','Y','63Y',0,0,0,'F','','','+91',9426785362,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 12:16:13','reception','2025-11-12 17:51:31'),(0,649,'',0,'','DISHANTSINH H DODIYA','','','PLOT-60  RAVECHI DHAM-1 ADIPUR','',0,'KUTCH','KUTCH','GUJARAT','INDIA','2015-12-19','N','09Y10M',0,0,0,'M','','','+91',9638733633,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-14 12:18:32','drashti','2025-10-24 10:06:11'),(0,650,'',0,'','RAMESHBHAI R GAJERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-14','Y','51Y',0,0,0,'M','','','+91',9825076317,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 12:18:57','','0000-00-00 00:00:00'),(0,651,'',0,'','PRADYUMAN JIVANLAL MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1942-10-14','Y','83Y',0,0,0,'M','','','+91',9662032213,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 12:28:00','','0000-00-00 00:00:00'),(0,652,'',0,'','POONAMBA J RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-14','Y','30Y',0,0,0,'F','','','+91',9898898738,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 12:32:01','drashti','2025-12-12 13:47:20'),(0,653,'',0,'','AARTIBEN A PARMAR','','','','',0,'MADIYA HATINA JUNAGADH','MADIYA HATINA JUNAGADH','GUJARAT','INDIA','1997-10-14','Y','28Y',0,0,0,'F','','','+91',7698732408,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 12:35:42','','0000-00-00 00:00:00'),(0,654,'',0,'','RAJESHBHAI PADALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-10-14','Y','46Y',0,0,0,'M','','','+91',9904437437,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 12:35:49','','0000-00-00 00:00:00'),(0,655,'',0,'','KAILASHBA GOHEL','','','','',0,'BHAVNAGAR','BHAVNAGAR','GUJARAT','INDIA','1982-10-14','Y','43Y',0,0,0,'F','','','+91',7874143463,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-14 12:36:19','reception','2025-12-02 11:04:30'),(0,656,'',0,'','KANTABEN G SOLANKI','','','','',0,'GIR SOMNATH','GIR SOMNATH','GUJARAT','INDIA','1960-10-14','Y','65Y',0,0,0,'F','','','+91',9428840725,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-14 12:38:13','','0000-00-00 00:00:00'),(0,657,'',0,'','ILAKSHI SUNIL NEGANDHI','','','DHIRAJ GIRIRAJ NAGAR MAIN ROAD NEAR RAIYA CIRCLE','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-06-09','N','45Y',0,0,0,'F','','','+91',9712999234,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 12:42:44','janvi','2025-11-24 11:53:50'),(0,658,'',0,'','SUMITRABEN A KAMALIYA','','','','',0,'UNA','UNA','GUJARAT','INDIA','1983-10-14','Y','42Y',0,0,0,'F','','','+91',9712191944,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 12:44:18','','0000-00-00 00:00:00'),(0,659,'',0,'','CHHAGANBHAI M SARVAIYA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1975-10-14','Y','50Y',0,0,0,'M','','','+91',8140794120,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 12:46:52','drashti','2025-12-11 11:44:04'),(0,660,'',0,'','SHAGUNABEN SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-14','Y','38Y',0,0,0,'F','','','+91',9662443150,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-14 12:55:08','','0000-00-00 00:00:00'),(0,661,'',0,'','SAVJIBHAI P CHAUHAN','','','','',0,'WAKANER','WAKANER','GUJARAT','INDIA','1953-10-14','Y','72Y',0,0,0,'M','','','+91',9067050422,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-14 13:06:19','','0000-00-00 00:00:00'),(0,662,'',0,'','NARENDRA R NANAVATI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-10-14','Y','78Y',0,0,0,'M','','','+91',9924114829,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-14 13:11:59','reception','2025-11-27 12:47:00'),(0,663,'',0,'','AMARDEEP KUMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-10-14','Y','44Y',0,0,0,'M','','','+91',6351677877,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 13:13:43','drashti','2025-12-16 11:18:02'),(0,664,'',0,'','HIRABEN R MARU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-14','Y','58Y',0,0,0,'F','','','+91',9687394999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-14 13:46:18','urvashi','2025-11-19 18:01:53'),(0,665,'',0,'','LALABHAI SHIYALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-14','Y','25Y',0,0,0,'M','','','+91',7572802587,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-14 14:37:31','','0000-00-00 00:00:00'),(0,666,'',0,'','SAPNADEVI THAKUR','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1975-10-14','Y','50Y',0,0,0,'F','','','+91',7043420066,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','reception','2025-10-14 16:51:10','','0000-00-00 00:00:00'),(0,667,'',0,'','PRADIPBHAI D BHADANJI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-14','Y','56Y',0,0,0,'M','','','+91',9879582624,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-14 16:51:56','reception','2025-12-23 16:54:30'),(0,668,'',0,'','RAJESHBHAI M CHIKANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-10-14','Y','67Y',0,0,0,'M','','','+91',9998520462,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 16:53:10','reception','2025-11-11 11:08:19'),(0,669,'',0,'','SOBHNABEN D UMRANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-14','Y','39Y',0,0,0,'F','','','+91',9913553225,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 16:58:11','reception','2025-11-14 17:29:48'),(0,670,'',0,'','MADHUBEN GADHVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-14','Y','60Y',0,0,0,'F','','','+91',9879725693,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-14 17:12:31','','0000-00-00 00:00:00'),(0,671,'',0,'','VAISHALIBEN TRIVEDI','','','','',0,'','','GUJARAT','INDIA','1992-10-14','Y','33Y',0,0,0,'F','','','+91',9586723223,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 17:14:17','','0000-00-00 00:00:00'),(0,672,'',0,'','NIDHA J RAMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-10-14','Y','33Y',0,0,0,'F','','','+91',8306303798,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-14 17:17:47','','0000-00-00 00:00:00'),(0,673,'',0,'','REKHABEN MAKWANA','','','','',0,'JAMANGAR','JAMANGAR','GUJARAT','INDIA','1992-10-14','Y','33Y',0,0,0,'F','','','+91',8758674742,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 17:18:29','','0000-00-00 00:00:00'),(0,674,'',0,'','HEMILABEN PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-10-14','Y','23Y',0,0,0,'F','','','+91',9512223988,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 17:27:46','janvi','2025-10-27 09:26:40'),(0,675,'',0,'','GEETABEN CHHAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-14','Y','51Y',0,0,0,'F','','','+91',9924984857,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-14 17:38:55','manshi','2025-11-14 18:26:05'),(0,676,'',0,'','GEETABEN L CHHIYA','','','','',0,'MUNJKA','MUNJKA','GUJARAT','INDIA','1974-10-14','Y','51Y',0,0,0,'F','','','+91',7600726858,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-14 17:40:48','','0000-00-00 00:00:00'),(0,677,'',0,'','HEMALBHAI KAKKAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-14','Y','39Y',0,0,0,'M','','','+91',6356030507,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-14 17:42:26','','0000-00-00 00:00:00'),(0,678,'',0,'','JAYSHREEBEN S GHGHADA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1958-10-14','Y','67Y',0,0,0,'F','','','+91',9924064108,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 17:44:19','','0000-00-00 00:00:00'),(0,679,'',0,'','HARSHABEN DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-14','Y','50Y',0,0,0,'F','','','+91',9825073885,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-14 17:45:58','','0000-00-00 00:00:00'),(0,680,'',0,'','VARUNBHAI MAYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-10-14','Y','23Y',0,0,0,'M','','','+91',9974396694,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-14 17:47:25','','0000-00-00 00:00:00'),(0,681,'',0,'','NALINBHAI MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-14','Y','60Y',0,0,0,'M','','','+91',8488831541,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-14 17:47:37','janvi','2025-10-31 17:52:55'),(0,682,'',0,'','RAJ NARADBHAI SOJITRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-14','Y','25Y',25,0,0,'M','','','+91',7359219720,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 17:50:23','drashti','2025-10-14 17:53:19'),(0,683,'',0,'','HETALBEN VIRADIYA','','','','',0,'SHAPAR VERAVAL','SHAPAR VERAVAL','GUJARAT','INDIA','1987-10-14','Y','38Y',0,0,0,'F','','','+91',9979468364,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-14 17:51:14','reception','2025-12-23 10:12:01'),(0,684,'',0,'','NIKITABEN SAKARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-10-14','Y','29Y',0,0,0,'F','','','+91',9426677410,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-14 17:54:47','','0000-00-00 00:00:00'),(0,685,'',0,'','HARSHKANT KAMDAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-10-14','Y','79Y',0,0,0,'M','','','+91',9824562015,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 17:56:48','priyanshi','2025-11-05 16:53:43'),(0,686,'',0,'','DHAVALBHAI GANATRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-14','Y','35Y',0,0,0,'M','','','+91',8511166060,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-14 17:57:27','','0000-00-00 00:00:00'),(0,687,'',0,'','BHIKHUBHAI M GONDALIYA','','','','',0,'JUNA VAGHANIYA','JUNA VAGHANIYA','GUJARAT','INDIA','1978-10-14','Y','47Y',0,0,0,'M','','','+91',9724569105,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-14 17:57:30','','0000-00-00 00:00:00'),(0,688,'',0,'','RAMESHBHAI RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1944-10-14','Y','81Y',0,0,0,'M','','','+91',7203834003,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 17:59:19','urvashi','2025-12-15 17:27:17'),(0,689,'',0,'','RITA KHAKHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-14','Y','55Y',55,0,0,'F','','','+91',8980582201,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-14 18:02:50','janvi','2025-10-29 18:47:00'),(0,690,'',0,'','DEVBHAI GAJERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2011-10-14','Y','14Y',0,0,0,'M','','','+91',8200680933,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-14 18:04:01','','0000-00-00 00:00:00'),(0,691,'',0,'','USHABEN B SONPAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-14','Y','70Y',0,0,0,'F','','','+91',7984506211,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-14 18:11:15','','0000-00-00 00:00:00'),(0,692,'',0,'','DARSHANBHAI  MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-10-14','Y','69Y',69,0,0,'M','','','+91',9824290333,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-14 18:18:51','reception','2025-11-25 19:03:19'),(0,693,'',0,'','GEETABEN H VIRADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','0000-00-00','','',0,0,0,'F','','','+91',9998451651,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 18:20:25','','0000-00-00 00:00:00'),(0,694,'',0,'','NAYANBHAI N MAKWANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-14','Y','25Y',0,0,0,'M','','','+91',8511136302,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-14 18:21:28','','0000-00-00 00:00:00'),(0,695,'',0,'','RAGHUVIRSINH B JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-14','Y','52Y',0,0,0,'M','','','+91',9925068192,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-14 18:21:45','urvashi','2025-11-21 18:11:16'),(0,696,'',0,'','FALGUNI ACHARYA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1971-10-14','Y','54Y',0,0,0,'F','','','+91',7874064664,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 18:23:35','','0000-00-00 00:00:00'),(0,697,'',0,'','NAYANBHAI N MAKWANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-14','Y','25Y',0,0,0,'M','','','+91',8511136302,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-14 18:26:34','','0000-00-00 00:00:00'),(0,698,'',0,'','MANJULABEN C LATHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-14','Y','62Y',0,0,0,'F','','','+91',9099428632,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 18:27:11','','0000-00-00 00:00:00'),(0,699,'',0,'','M P GOSAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-10-14','Y','73Y',0,0,0,'M','','','+91',9898122158,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-14 18:28:57','','0000-00-00 00:00:00'),(0,700,'',0,'','RUSIKABEN A GHAGHADA','','','','',0,'KUTIYANA','KUTIYANA','GUJARAT','INDIA','1994-10-14','Y','31Y',0,0,0,'F','','','+91',9924064108,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-14 18:30:24','','0000-00-00 00:00:00'),(0,701,'',0,'','BHARATBHAI L BHAYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-10-14','Y','69Y',0,0,0,'M','','','+91',9913365760,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 18:34:38','','0000-00-00 00:00:00'),(0,702,'',0,'','RANCHHODBHAI N KAKANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-14','Y','62Y',0,0,0,'M','','','+91',9727564348,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 18:36:20','','0000-00-00 00:00:00'),(0,703,'',0,'','RASHMIBEN B NAKUM','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-10-14','Y','54Y',0,0,0,'F','','','+91',9033790713,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 18:46:51','','0000-00-00 00:00:00'),(0,704,'',0,'','JIGNABEN VASHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-14','Y','53Y',0,0,0,'F','','','+91',9925659044,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 18:56:25','','0000-00-00 00:00:00'),(0,705,'',0,'','DHARAMBA M ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-14','Y','48Y',0,0,0,'F','','','+91',9925915311,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 18:58:13','urvashi','2025-12-16 18:44:02'),(0,706,'',0,'','VRUNDA R KASUNDRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-14','Y','35Y',35,0,0,'F','','','+91',8140257043,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-14 19:03:50','drashti','2025-10-14 20:13:57'),(0,707,'',0,'','DIMPALBEN BHADRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-10-14','Y','28Y',0,0,0,'F','','','+91',9624914724,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 19:05:21','','0000-00-00 00:00:00'),(0,708,'',0,'','MADHUBEN B BALASARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-10-14','Y','49Y',0,0,0,'F','','','+91',9427254384,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-14 19:05:46','','0000-00-00 00:00:00'),(0,709,'',0,'','NITABEN C SINGALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-14','Y','60Y',0,0,0,'F','','','+91',9723019231,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-14 19:12:09','manshi','2025-10-30 19:24:36'),(0,710,'',0,'','PRASHANTBHAI I GODA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-14','Y','38Y',0,0,0,'M','','','+91',8000341941,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 19:15:36','','0000-00-00 00:00:00'),(0,711,'',0,'','SHAILESHBHAI DUBAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-14','Y','56Y',0,0,0,'M','','','+91',9925209059,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 19:18:57','','0000-00-00 00:00:00'),(0,712,'',0,'','USHABA ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-14','Y','36Y',0,0,0,'F','','','+91',9898732801,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-14 19:39:25','','0000-00-00 00:00:00'),(0,713,'',0,'','ANSOYABEN M PATGIR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-14','Y','40Y',0,0,0,'F','','','+91',9714537618,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-14 19:48:09','','0000-00-00 00:00:00'),(0,714,'',0,'','RAMESHBHAI P PARMAR','','','TITANIUM-1, A-3 802, ','NEAR NANAVATI CHOWK,',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-06-29','N','56Y',0,0,0,'M','','','+91',8460375589,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-14 21:50:36','janvi','2025-12-03 18:56:03'),(0,715,'',0,'','KISHANBHAI GAJERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-10-15','Y','31Y',0,0,0,'M','','','+91',8141287858,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-15 09:07:13','','0000-00-00 00:00:00'),(0,716,'',0,'','DHARMENDRABHAI N PATEL','','','','',0,'BHARUCH','BHARUCH','GUJARAT','INDIA','1972-10-15','Y','53Y',53,0,0,'M','','','+91',8401275770,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 09:10:00','reception','2025-10-15 09:33:31'),(0,717,'',0,'','OSMANBHAI S THEIM','','','','',0,'RATADIYA ','RATADIYA ','GUJARAT','INDIA','1967-10-15','Y','58Y',0,0,0,'F','','','+91',9429081978,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 09:11:02','','0000-00-00 00:00:00'),(0,718,'',0,'','MRUDULABEN KULAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1937-10-15','Y','88Y',0,0,0,'F','','','+91',8401204832,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-15 09:13:55','','0000-00-00 00:00:00'),(0,719,'',0,'','ASHISHBHAI CHOCHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-15','Y','36Y',0,0,0,'M','','','+91',9061131125,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-15 09:17:19','','0000-00-00 00:00:00'),(0,720,'',0,'','SHAHNAZ KHAN','','','DIWAN PARA, ','PATADIYA ROAD, WAKANER',0,'MORBI','MORBI','GUJARAT','INDIA','1995-01-01','N','30Y',0,0,0,'F','','','+91',8160446435,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-15 09:25:23','','0000-00-00 00:00:00'),(0,721,'',0,'','NAGJIBHAI LIMBASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-15','Y','30Y',30,0,0,'M','','','+91',7405763567,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 09:33:03','reception','2025-11-04 18:31:29'),(0,722,'',0,'','SAROJBEN C KATHROTIYA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1963-10-15','Y','62Y',0,0,0,'F','','','+91',9913510347,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 09:41:18','','0000-00-00 00:00:00'),(0,723,'',0,'','USHABEN MODI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-15','Y','62Y',0,0,0,'F','','','+91',8866246723,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 09:57:04','','0000-00-00 00:00:00'),(0,724,'',0,'','RAMABEN HINSU','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1967-10-15','Y','58Y',58,0,0,'F','','','+91',9737581781,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-15 10:03:00','janvi','2025-12-03 10:36:07'),(0,725,'',0,'','RAMABEN D HINSU','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1967-10-15','Y','58Y',0,0,0,'F','','','+91',9737581781,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-15 10:22:14','','0000-00-00 00:00:00'),(0,726,'',0,'','VIVEKBHAI M HIRAPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-15','Y','30Y',0,0,0,'M','','','+91',9104419466,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 10:26:27','','0000-00-00 00:00:00'),(0,727,'',0,'','AMINA NURAMAMAD MATHKIYA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1971-10-15','Y','54Y',0,0,0,'F','','','+91',9723442220,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 10:33:57','janvi','2025-12-17 18:48:58'),(0,728,'',0,'','JANAKBEN J DABHI','','','','',0,'SURENDRANAGR','SURENDRANAGR','GUJARAT','INDIA','1988-10-15','Y','37Y',0,0,0,'F','','','+91',9723513297,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 10:39:14','','0000-00-00 00:00:00'),(0,729,'',0,'','VALLABHBHAI J SINGALA','','','','',0,'THORDI','THORDI','GUJARAT','INDIA','1950-10-15','Y','75Y',0,0,0,'M','','','+91',9979095089,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 10:46:05','','0000-00-00 00:00:00'),(0,730,'',0,'','JUMMABHAI LANJA','','','','',0,'TANKARA','TANKARA','GUJARAT','INDIA','1961-10-15','Y','64Y',0,0,0,'M','','','+91',9824254856,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 10:46:43','reception','2025-10-30 10:41:16'),(0,731,'',0,'','VISHAKHABEN L SHAH','','','','',0,'PADADHRI','PADADHRI','GUJARAT','INDIA','1963-10-15','Y','62Y',0,0,0,'F','','','+91',7043931873,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 10:48:21','','0000-00-00 00:00:00'),(0,732,'',0,'','VIBHABEN B KHANT','','','','',0,'JAMJODHPUR','JAMJODHPUR','GUJARAT','INDIA','1985-10-15','Y','40Y',0,0,0,'F','','','+91',9099784284,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 10:49:41','','0000-00-00 00:00:00'),(0,733,'',0,'','JOSHNABEN PIPALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-15','Y','39Y',0,0,0,'F','','','+91',9714125246,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-15 10:57:12','manshi','2025-12-10 10:39:57'),(0,734,'',0,'','BHAGVANBHAI MOHANBHAI KORAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-15','Y','52Y',0,0,0,'M','','','+91',9773139743,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 10:59:26','','0000-00-00 00:00:00'),(0,735,'',0,'','HARSHABEN B KATHROTIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-15','Y','48Y',0,0,0,'F','','','+91',9408368368,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-15 11:00:31','manshi','2025-11-05 18:40:17'),(0,736,'',0,'','BHAGVANBHAI MOHANBHAI KORAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-15','Y','52Y',0,0,0,'M','','','+91',9773139743,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 11:01:20','','0000-00-00 00:00:00'),(0,737,'',0,'','VINODBHAI POKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-15','Y','59Y',0,0,0,'M','','','+91',9824582686,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 11:06:19','priyanshi','2025-11-22 09:50:26'),(0,738,'',0,'','SANGITABEN RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-15','Y','50Y',0,0,0,'F','','','+91',9825409220,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-15 11:09:21','','0000-00-00 00:00:00'),(0,739,'',0,'','RAMABEN G VEKARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-15','Y','62Y',0,0,0,'F','','','+91',9427224881,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 11:11:34','urvashi','2025-12-03 11:38:32'),(0,740,'',0,'','DEVSHIBHAI VEGAD','','','SANTOSH PARK-2, B/H HEERA NAGAR','RAIYA ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-10-15','Y','66Y',0,0,0,'M','','','+91',8460122551,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 11:19:10','reception','2025-11-18 09:13:25'),(0,741,'',0,'','BHANJIBHAI KANSAGRA','','','','',0,'UPLETA','UPLETA','GUJARAT','INDIA','1945-10-15','Y','80Y',80,0,0,'M','','','+91',9427728107,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 11:20:19','reception','2025-11-14 18:15:07'),(0,742,'',0,'','VINODBHAI D BANUGARIYA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1969-10-15','Y','56Y',0,0,0,'M','','','+91',9974298081,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 11:23:44','','0000-00-00 00:00:00'),(0,743,'',0,'','MUKTABEN SATARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-15','Y','58Y',0,0,0,'F','','','+91',9824818245,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 11:23:57','','0000-00-00 00:00:00'),(0,744,'',0,'','SAROJBEN TILVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-15','Y','52Y',0,0,0,'F','','','+91',9426785820,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 11:25:12','shweta','2025-10-17 14:21:30'),(0,745,'',0,'','CHANDUBHAI P DEVADIYA','','','','',0,'SOMANATH','SOMANATH','GUJARAT','INDIA','1983-10-15','Y','42Y',0,0,0,'M','','','+91',9727745257,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 11:29:15','janvi','2025-10-28 12:06:12'),(0,746,'',0,'','JITESHBHAI H PATEL','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1989-10-15','Y','36Y',0,0,0,'M','','','+91',9662990217,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 11:31:07','reception','2025-12-17 11:08:20'),(0,747,'',0,'','JAHIRBHAI A BHOR','','','','',0,'VISHAVADAR','VISHAVADAR','GUJARAT','INDIA','1985-10-15','Y','40Y',0,0,0,'M','','','+91',7041768962,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 11:38:55','reception','2025-12-16 11:10:26'),(0,748,'',0,'','HARISINH G DODIYA','','','','',0,'SOMANATH','SOMANATH','GUJARAT','INDIA','1968-10-15','Y','57Y',0,0,0,'M','','','+91',9426169519,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 11:49:15','','0000-00-00 00:00:00'),(0,749,'',0,'','SUDHABEN DODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-10-15','Y','69Y',0,0,0,'F','','','+91',7567522104,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 11:51:40','','0000-00-00 00:00:00'),(0,750,'',0,'','KARANSINH DODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-10-15','Y','79Y',0,0,0,'M','','','+91',9687735635,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 11:52:17','','0000-00-00 00:00:00'),(0,751,'',0,'','PANCHIBEN N GARCHAR','','','','',0,'KESHOD','KESHOD','GUJARAT','INDIA','1955-10-15','Y','70Y',0,0,0,'F','','','+91',9909212188,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 11:52:54','','0000-00-00 00:00:00'),(0,752,'',0,'','DEVCHANDBHAI KAVAR','','','202 RAJ HEIGHTS, ST NO -2,','PATEL NAGAR, ALAP ROAD',0,'MORBI','MORBI','GUJARAT','INDIA','1964-10-15','Y','61Y',0,0,0,'M','','','+91',9510441266,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 11:53:55','urvashi','2025-12-04 17:43:24'),(0,753,'',0,'','HEENABEN K KANANI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1981-10-15','Y','44Y',0,0,0,'F','','','+91',9099088434,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 11:54:12','','0000-00-00 00:00:00'),(0,754,'',0,'','KALPNABEN DODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-10-15','Y','67Y',67,0,0,'F','','','+91',9427389850,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 12:06:57','drashti','2025-10-15 12:11:56'),(0,755,'',0,'','SUHASINIBEN K RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-15','Y','65Y',0,0,0,'F','','','+91',9427730281,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 12:10:10','','0000-00-00 00:00:00'),(0,756,'',0,'','RITABEN V PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-10-15','Y','54Y',0,0,0,'F','','','+91',9913323829,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 12:11:53','','0000-00-00 00:00:00'),(0,757,'',0,'','NEHA KARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-10-15','Y','31Y',0,0,0,'F','','','+91',9725006466,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 12:13:16','','0000-00-00 00:00:00'),(0,758,'',0,'','JAGDISHSINH JADEJA','','','','',0,'KALAVAD','KALAVAD','GUJARAT','INDIA','1980-10-15','Y','45Y',0,0,0,'M','','','+91',9925500909,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 12:20:27','janvi','2025-10-16 19:16:31'),(0,759,'',0,'','MILANBHAI ADESHRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-15','Y','42Y',0,0,0,'M','','','+91',8469406141,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 12:20:34','','0000-00-00 00:00:00'),(0,760,'',0,'','YATINBHAI GADHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-10-15','Y','41Y',0,0,0,'M','','','+91',9429098326,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-15 12:23:49','','0000-00-00 00:00:00'),(0,761,'',0,'','VISHVJEETSINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-15','Y','30Y',0,0,0,'M','','','+91',9558183489,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 12:27:05','','0000-00-00 00:00:00'),(0,762,'',0,'','RAMISH SAIYAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-10-15','Y','23Y',0,0,0,'F','','','+91',9909084236,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 12:31:02','','0000-00-00 00:00:00'),(0,763,'',0,'','HETALBEN S DETROJA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1985-10-15','Y','40Y',0,0,0,'F','','','+91',9558262601,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 12:35:04','','0000-00-00 00:00:00'),(0,764,'',0,'','CHANDRIKABEN NAGEVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-10-15','Y','74Y',0,0,0,'F','','','+91',9824451754,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 12:40:03','','0000-00-00 00:00:00'),(0,765,'',0,'','RUPALBEN PALA PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-15','Y','30Y',0,0,0,'F','','','+91',9724700969,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 12:50:47','','0000-00-00 00:00:00'),(0,766,'',0,'','ABIR DALAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-10-15','Y','22Y',0,0,0,'M','','','+91',6292155436,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 13:00:01','','0000-00-00 00:00:00'),(0,767,'',0,'','SHOBHNABEN D CHOTAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-10-15','Y','61Y',0,0,0,'F','','','+91',9408390975,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 13:06:17','drashti','2025-12-15 18:22:30'),(0,768,'',0,'','DHARAMDAS M GONDALIYA','','','','',0,'SUTRAPADA','SUTRAPADA','GUJARAT','INDIA','1960-10-15','Y','65Y',0,0,0,'M','','','+91',8140828789,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 13:23:34','','0000-00-00 00:00:00'),(0,769,'',0,'','JOSHNABEN L VASOYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-10-15','Y','46Y',0,0,0,'F','','','+91',9723456031,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 13:25:48','reception','2025-11-01 14:19:26'),(0,770,'',0,'','DEVATBHAI KACHHOT','','','','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1984-10-15','Y','41Y',0,0,0,'M','','','+91',9913704646,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-15 13:50:19','manshi','2025-10-31 18:29:26'),(0,771,'',0,'','CHANDUBHAI KANANI','','','','',0,'LUNAGARA','LUNAGARA','GUJARAT','INDIA','1975-10-15','Y','50Y',0,0,0,'M','','','+91',9106287101,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-15 13:52:37','','0000-00-00 00:00:00'),(0,772,'',0,'','DHIRUBHAI D BABARIYA','','','','',0,'UPLETA','UPLETA','GUJARAT','INDIA','1949-10-15','Y','76Y',0,0,0,'M','','','+91',8200586312,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-15 16:03:49','reception','2025-11-14 11:17:29'),(0,773,'',0,'','RASHIKBHAI K DHAMELIYA','','','','',0,'MANEKVADA','MANEKVADA','GUJARAT','INDIA','1973-10-15','Y','52Y',0,0,0,'M','','','+91',9924435111,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 16:30:34','','0000-00-00 00:00:00'),(0,774,'',0,'','ANKITBHAI KHUNT ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-15','Y','36Y',0,0,0,'M','','','+91',9723437321,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-15 16:32:33','','0000-00-00 00:00:00'),(0,775,'',0,'','JIGNESHBHAI M PANDYA','','','','',0,'STARTOS HEALTH CARE','STARTOS HEALTH CARE','GUJARAT','INDIA','1977-10-15','Y','48Y',0,0,0,'M','','','+91',9328170344,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-15 16:42:37','','0000-00-00 00:00:00'),(0,776,'',0,'','SAVAN PATEL','','INFIGA HEA','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-10-15','Y','22Y',0,0,0,'M','','','+91',9909194524,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-15 16:50:32','reception','2025-12-17 16:55:29'),(0,777,'',0,'','REKHABEN K BHUT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-15','Y','32Y',0,0,0,'F','','','+91',9428201738,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 17:00:44','urvashi','2025-11-21 10:56:50'),(0,778,'',0,'','SHRUTI DADHANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-15','Y','40Y',40,0,0,'F','','','+91',9426911116,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-15 17:02:32','reception','2025-10-15 17:27:20'),(0,779,'',0,'','NAYNABEN K KALARIYA','','','','',0,'MANAVADAR','MANAVADAR','GUJARAT','INDIA','1981-10-15','Y','44Y',0,0,0,'F','','','+91',9909230451,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 17:07:03','','0000-00-00 00:00:00'),(0,780,'',0,'','VIRABHAI KESHABHAI GARCHAR','','','GANDHIGRAM JUNAGADH','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1985-12-18','N','39Y',39,0,0,'M','','','+91',9909652320,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-15 17:10:52','riya','2025-10-15 17:32:52'),(0,781,'',0,'','DHARMISHTABEN  CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-10-15','Y','26Y',0,0,0,'F','','','+91',7990588058,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 17:18:15','','0000-00-00 00:00:00'),(0,782,'',0,'','HITESHBHAI B CHUDASAMA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1980-10-15','Y','45Y',0,0,0,'M','','','+91',9898333255,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 17:35:34','reception','2025-12-23 16:28:45'),(0,783,'',0,'','CHANDIRAM M ADVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-10-15','Y','74Y',0,0,0,'M','','','+91',9723586898,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 17:40:50','reception','2025-11-27 17:52:06'),(0,784,'',0,'','TEJ BHANDERI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-10-15','Y','18Y',0,0,0,'F','','','+91',9727600200,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 17:41:34','','0000-00-00 00:00:00'),(0,785,'',0,'','DAYABEN VASJADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-10-15','Y','61Y',0,0,0,'F','','','+91',9723015155,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 17:45:14','drashti','2025-10-30 17:43:18'),(0,786,'',0,'','AMRUTLAL R PUROHIT','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1958-10-15','Y','67Y',0,0,0,'M','','','+91',7383394027,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 17:45:40','','0000-00-00 00:00:00'),(0,787,'',0,'','AARTIBEN S PATNI','','','','',0,'KUTIYANA','KUTIYANA','GUJARAT','INDIA','1997-10-15','Y','28Y',0,0,0,'F','','','+91',8758090212,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 17:50:06','reception','2025-12-02 10:39:17'),(0,788,'',0,'','DIPTIBEN MAHETA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-10-15','Y','47Y',0,0,0,'F','','','+91',9979949214,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 17:51:51','drashti','2025-12-18 18:20:25'),(0,789,'',0,'','PRIYANSHU R  KHUNT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-10-15','Y','19Y',0,0,0,'M','','','+91',9825603232,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 17:58:40','reception','2025-11-28 11:27:40'),(0,790,'',0,'','LAXMANBHAI D SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-10-15','Y','67Y',0,0,0,'M','','','+91',8160148889,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-15 18:08:31','drashti','2025-11-17 11:18:01'),(0,791,'',0,'','NALINBHAI DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-10-15','Y','67Y',0,0,0,'M','','','+91',9898499979,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 18:11:56','reception','2025-12-01 18:14:32'),(0,792,'',0,'','FALGUNIBEN HIRPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-15','Y','40Y',0,0,0,'F','','','+91',7202904505,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 18:15:19','urvashi','2025-12-05 19:52:08'),(0,793,'',0,'','NILAMBEN L KATHROTIYA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1983-10-15','Y','42Y',0,0,0,'F','','','+91',7016179095,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 18:23:13','','0000-00-00 00:00:00'),(0,794,'',0,'','SHANTUBEN D. RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-15','Y','56Y',0,0,0,'F','','','+91',9725711778,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 18:25:50','','0000-00-00 00:00:00'),(0,795,'',0,'','  NIRMALABEN S KORAT','','','','',0,'SAPAR ','SAPAR ','GUJARAT','INDIA','1964-10-15','Y','61Y',0,0,0,'F','','','+91',9727635742,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 18:29:34','reception','2025-11-12 11:41:02'),(0,796,'',0,'','RUSHIKESHBHAI PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-10-15','Y','33Y',0,0,0,'M','','','+91',9537484946,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 18:30:52','','0000-00-00 00:00:00'),(0,797,'',0,'','ASHWINBHAI K RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-15','Y','51Y',51,0,0,'M','','','+91',9825275510,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 18:34:00','reception','2025-12-04 18:25:08'),(0,798,'',0,'','LILAVATIBEN H DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-15','Y','55Y',55,0,0,'F','','','+91',9687250884,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 18:34:41','drashti','2025-10-15 18:38:41'),(0,799,'',0,'','JIGNESHBHAI SORATHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-15','Y','42Y',0,0,0,'M','','','+91',9979949994,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 18:35:19','','0000-00-00 00:00:00'),(0,800,'',0,'','NALINBHAI SOMAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-15','Y','59Y',0,0,0,'M','','','+91',9408270096,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 18:36:23','vishal','2025-10-16 08:26:11'),(0,801,'',0,'','MAMTABEN SOMAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-15','Y','58Y',0,0,0,'F','','','+91',9769543052,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 18:38:56','','0000-00-00 00:00:00'),(0,802,'',0,'','UMABA RANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-15','Y','64Y',0,0,0,'F','','','+91',9106509213,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 18:39:59','','0000-00-00 00:00:00'),(0,803,'',0,'','ALPABA J GOHIL','','','','',0,'KANGASIYADI','KANGASIYADI','GUJARAT','INDIA','1992-10-15','Y','33Y',33,0,0,'F','','','+91',8155901760,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-15 18:40:21','manshi','2025-10-15 18:42:04'),(0,804,'',0,'','KANAK D MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-10-15','Y','74Y',0,0,0,'F','','','+91',9712978811,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 18:42:46','drashti','2025-12-19 12:13:31'),(0,805,'',0,'','DAXABEN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-10-15','Y','63Y',0,0,0,'F','','','+91',9426785362,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 18:49:02','reception','2025-12-04 18:00:33'),(0,806,'',0,'','MANSUKHBHAI BABUBHAI KANSAGARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-10-15','Y','76Y',0,0,0,'M','','','+91',9879963196,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 18:51:25','','0000-00-00 00:00:00'),(0,807,'',0,'','ASHMITABEN K DHAMSANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-15','Y','59Y',0,0,0,'F','','','+91',9408101049,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 18:54:03','reception','2025-11-17 18:43:17'),(0,808,'',0,'','RAMESHBHAI P DUDHAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-15','Y','55Y',0,0,0,'M','','','+91',9824230104,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 19:08:07','reception','2025-10-16 17:37:31'),(0,809,'',0,'','DAYARAMBHAI PARIYAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-15','Y','38Y',0,0,0,'M','','','+91',7802074184,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 19:09:57','','0000-00-00 00:00:00'),(0,810,'',0,'','SURESH D JAKELIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-15','Y','36Y',0,0,0,'M','','','+91',9773014016,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 19:21:20','','0000-00-00 00:00:00'),(0,811,'',0,'','ROMA TARAK DAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-10-15','Y','18Y',0,0,0,'F','','','+91',9824295615,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-15 19:24:29','','0000-00-00 00:00:00'),(0,812,'',0,'','SEEMABEN H BHADESIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-10-15','Y','44Y',0,0,0,'F','','','+91',9904572252,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 19:24:46','','0000-00-00 00:00:00'),(0,813,'',0,'','SAVJUBHA JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-10-15','Y','73Y',0,0,0,'M','','','+91',9537513507,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 19:37:36','','0000-00-00 00:00:00'),(0,814,'',0,'','SAKSHI N SHASTRI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2013-10-15','Y','12Y',0,0,0,'F','','','+91',8488972150,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 19:38:10','','0000-00-00 00:00:00'),(0,815,'',0,'','VAISHALIBEN N  FICHADIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-15','Y','36Y',0,0,0,'F','','','+91',9428280882,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 19:42:37','','0000-00-00 00:00:00'),(0,816,'',0,'','VIKRAMBHAI SHARMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-15','Y','50Y',0,0,0,'M','','','+91',9913700041,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 19:43:44','','0000-00-00 00:00:00'),(0,817,'',0,'','JAYDEEPBHAI BADGUJAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-15','Y','32Y',0,0,0,'M','','','+91',9687005175,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 19:57:50','drashti','2025-11-28 18:21:36'),(0,818,'',0,'','HANSBEN RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-10-15','Y','74Y',74,0,0,'F','','','+91',9723350350,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 20:03:51','manshi','2025-12-03 19:15:14'),(0,819,'',0,'','KESHUBHAI V RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-10-15','Y','79Y',0,0,0,'M','','','+91',9723350350,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-15 20:05:31','','0000-00-00 00:00:00'),(0,820,'',0,'','DARSHAKBHAI M THAKKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-10-15','Y','54Y',0,0,0,'M','','','+91',9824212481,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-15 20:08:02','reception','2025-12-03 18:41:44'),(0,821,'',0,'','REKHABEN SANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-16','Y','30Y',0,0,0,'M','','','+91',8511111341,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-16 09:03:35','','0000-00-00 00:00:00'),(0,822,'',0,'','SHARDABEN D MAKVANA','','','','',0,'JASDAN','JASDAN','GUJARAT','INDIA','1959-10-16','Y','66Y',66,0,0,'F','','','+91',9714245637,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 09:14:01','reception','2025-10-16 09:30:47'),(0,823,'',0,'','BHAVSINGBHAI R CHAUHAN','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1963-10-16','Y','62Y',0,0,0,'M','','','+91',9974945139,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 09:27:59','reception','2025-12-08 09:58:00'),(0,824,'',0,'','PREMJIBHAI L JIVANI','','','','',0,'VAKIYA','VAKIYA','GUJARAT','INDIA','1975-10-16','Y','50Y',0,0,0,'M','','','+91',9727858042,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 09:34:13','','0000-00-00 00:00:00'),(0,825,'',0,'','MAHENDRASINH A JADEJA','','','','',0,'VAKIYA','VAKIYA','GUJARAT','INDIA','1972-10-16','Y','53Y',0,0,0,'M','','','+91',7043725535,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 09:36:16','','0000-00-00 00:00:00'),(0,826,'',0,'','JASWANTIBEN R BHALANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-10-16','Y','66Y',0,0,0,'F','','','+91',9898998607,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 09:48:15','','0000-00-00 00:00:00'),(0,827,'',0,'','GANGABHAI SHARMA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1972-10-16','Y','53Y',0,0,0,'M','','','+91',9537583999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 10:11:41','reception','2025-11-17 13:18:52'),(0,828,'',0,'','PRINCEBHAI JAGODRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-10-16','Y','19Y',0,0,0,'M','','','+91',9023855285,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 10:16:41','','0000-00-00 00:00:00'),(0,829,'',0,'','SURESHBHAI B VAJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-16','Y','52Y',0,0,0,'M','','','+91',9510211467,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 10:19:26','reception','2025-11-24 17:42:40'),(0,830,'',0,'','JALPABEN V SATA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-16','Y','35Y',0,0,0,'F','','','+91',8460334534,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 10:21:35','','0000-00-00 00:00:00'),(0,831,'',0,'','DHARMENDRABHAI K BAVARVA','','','','',0,'ANIYARI','ANIYARI','GUJARAT','INDIA','1978-10-16','Y','47Y',0,0,0,'M','','','+91',9913222657,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 10:24:03','reception','2025-11-01 10:38:49'),(0,832,'',0,'','SHRUSHTI G KHUNT','','','','',0,'SURAT','SURAT','GUJARAT','INDIA','2007-10-16','Y','18Y',0,0,0,'F','','','+91',8980313475,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 10:28:47','','0000-00-00 00:00:00'),(0,833,'',0,'','GHANSHYAMBHAI B PATOLIYA','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1967-10-16','Y','58Y',0,0,0,'M','','','+91',9904397283,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 10:33:23','','0000-00-00 00:00:00'),(0,834,'',0,'','AMITABEN A BHALARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-10-16','Y','33Y',33,0,0,'F','','','+91',9228780282,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 10:34:20','reception','2025-12-04 17:42:54'),(0,835,'',0,'','SUSHILABEN M CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-10-16','Y','74Y',0,0,0,'F','','','+91',9428274788,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 10:38:26','','0000-00-00 00:00:00'),(0,836,'',0,'','JAYSHREEBEN ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-10-16','Y','20Y',0,0,0,'F','','','+91',9723952016,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 10:42:44','','0000-00-00 00:00:00'),(0,837,'',0,'','SUNERA M PUNJA','','','','',0,'UPLETA','UPLETA','GUJARAT','INDIA','1992-10-16','Y','33Y',0,0,0,'M','','','+91',9265377951,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 10:44:08','','0000-00-00 00:00:00'),(0,838,'',0,'','JADEJA VANRAJSINH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-16','Y','75Y',0,0,0,'M','','','+91',9724688008,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 10:44:56','','0000-00-00 00:00:00'),(0,839,'',0,'','HANSABEN R THAKAR','','','','',0,'SUTRRAPADA GIR SOMNATH','SUTRRAPADA GIR SOMNATH','GUJARAT','INDIA','1977-10-16','Y','48Y',0,0,0,'F','','','+91',9924837337,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 10:48:08','','0000-00-00 00:00:00'),(0,840,'',0,'','ANANTRAI M VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-16','Y','75Y',0,0,0,'M','','','+91',9428227101,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 10:50:43','reception','2025-12-13 17:13:36'),(0,841,'',0,'','RAMABEN D DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-16','Y','75Y',0,0,0,'F','','','+91',6353296768,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 10:51:19','','0000-00-00 00:00:00'),(0,842,'',0,'','HARSHABEN JIVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-16','Y','75Y',0,0,0,'F','','','+91',8980898895,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 10:56:01','drashti','2025-12-15 10:54:13'),(0,843,'',0,'','TASINBHAI CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-10-16','Y','26Y',0,0,0,'M','','','+91',8347246864,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 10:57:39','reception','2025-11-15 10:57:50'),(0,844,'',0,'','PRASAD VYAS ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-16','Y','35Y',0,0,0,'M','','','+91',9913577664,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 11:06:20','reception','2025-12-16 10:00:02'),(0,845,'',0,'','DIPTIBEN HIRANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-16','Y','40Y',0,0,0,'F','','','+91',9734516256,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 11:08:21','janvi','2025-10-16 18:26:36'),(0,846,'',0,'','JAYSHREEBA R VAGHER','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-16','Y','48Y',0,0,0,'F','','','+91',9409162948,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 11:12:49','','0000-00-00 00:00:00'),(0,847,'',0,'','REKHABA JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-16','Y','51Y',0,0,0,'F','','','+91',9408934547,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 11:14:32','drashti','2025-11-11 12:05:21'),(0,848,'',0,'','TEJALBEN N PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-10-16','Y','43Y',0,0,0,'F','','','+91',9375473854,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 11:23:52','','0000-00-00 00:00:00'),(0,849,'',0,'','NAYNABA JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-16','Y','38Y',38,0,0,'F','','','+91',8511087335,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 11:25:13','drashti','2025-11-15 11:03:58'),(0,850,'',0,'','KANJIBHAI L KHER','','','','',0,'SOMNATH','SOMNATH','GUJARAT','INDIA','1978-10-16','Y','47Y',0,0,0,'M','','','+91',7623085362,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 11:26:21','','0000-00-00 00:00:00'),(0,851,'',0,'','ANJANABEN MAKAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-10-16','Y','66Y',0,0,0,'F','','','+91',9879467370,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 11:28:00','','0000-00-00 00:00:00'),(0,852,'',0,'','MAHESH PRAHLADRAY MANKAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-16','Y','70Y',0,0,0,'M','','','+91',9879467370,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 11:29:52','','0000-00-00 00:00:00'),(0,853,'',0,'','SHIVRAMBHAI PANCHASARA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1986-10-16','Y','39Y',0,0,0,'F','','','+91',9327978466,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 11:31:47','reception','2025-11-26 12:02:54'),(0,854,'',0,'','VIBIN N MENON','','','','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1982-10-16','Y','43Y',43,0,0,'F','','','+91',9898039206,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 11:33:34','priyanshi','2025-12-13 14:45:04'),(0,855,'',0,'','NARESHBHAI CHUDASAMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-10-16','Y','28Y',28,0,0,'M','','','+91',9712115866,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 11:35:44','janvi','2025-10-16 11:37:08'),(0,856,'',0,'','ARAJANBHAI S RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-16','Y','65Y',0,0,0,'M','','','+91',7990111207,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 11:41:52','reception','2025-12-18 18:33:37'),(0,857,'',0,'','VISHWAM K KHAMBHRA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','2011-10-16','Y','14Y',0,0,0,'M','','','+91',9979137874,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 11:42:25','','0000-00-00 00:00:00'),(0,858,'',0,'','JAYSHREEBEN SHINGALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-16','Y','40Y',0,0,0,'F','','','+91',9913332312,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 11:43:34','reception','2025-11-07 18:48:19'),(0,859,'',0,'','FATMABEN A BADI','','','','',0,'WANKNER','WANKNER','GUJARAT','INDIA','1955-10-16','Y','70Y',0,0,0,'F','','','+91',9426273855,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 11:45:05','','0000-00-00 00:00:00'),(0,860,'',0,'','MANISHBHAI KARETIYA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1994-10-16','Y','31Y',0,0,0,'M','','','+91',9662663135,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 11:45:49','','0000-00-00 00:00:00'),(0,861,'',0,'','SHILPABEN TRAMBADIYA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1979-10-16','Y','46Y',0,0,0,'F','','','+91',6355001962,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 11:47:26','','0000-00-00 00:00:00'),(0,862,'',0,'','GANPATBHAI SONAGRA','','','','',0,'LALPUR JAMNAGAR','LALPUR JAMNAGAR','GUJARAT','INDIA','1983-10-16','Y','42Y',0,0,0,'M','','','+91',7575083283,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 11:54:01','','0000-00-00 00:00:00'),(0,863,'',0,'','NAMYA P PAIDA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','2012-10-16','Y','13Y',0,0,0,'M','','','+91',8128273022,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 11:56:59','reception','2025-11-20 18:31:07'),(0,864,'',0,'','SAHDEVSINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-16','Y','65Y',0,0,0,'M','','','+91',9510027227,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 11:59:56','urvashi','2025-12-04 18:23:03'),(0,865,'',0,'','CHANDRAKANTBHAI K CHHATBAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-10-16','Y','67Y',67,0,0,'M','','','+91',9173732475,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 12:12:33','janvi','2025-12-03 09:34:57'),(0,866,'',0,'','SHARMILABEN V PAREKH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-16','Y','35Y',0,0,0,'F','','','+91',9979999484,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 12:14:11','urvashi','2025-10-23 18:44:02'),(0,867,'',0,'','BASURI GOSWAMI','','','','',0,'VADODARA','VADODARA','GUJARAT','INDIA','1997-10-16','Y','28Y',0,0,0,'F','','','+91',9725639167,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-16 12:15:51','manshi','2025-11-28 12:31:53'),(0,868,'',0,'','ROHINI  NAIR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-16','Y','39Y',0,0,0,'F','','','+91',9558899399,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 12:18:44','','0000-00-00 00:00:00'),(0,869,'',0,'','SUDHABEN J GOSAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-16','Y','39Y',0,0,0,'M','','','+91',9825416130,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 12:23:36','reception','2025-11-06 12:47:11'),(0,870,'',0,'','DILIPBHAI GOHEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-16','Y','59Y',0,0,0,'M','','','+91',9879106309,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-16 12:26:38','manshi','2025-11-20 11:49:01'),(0,871,'',0,'','URVASHIBA JADEJA','','','','',0,'RIBDA','RIBDA','GUJARAT','INDIA','1988-10-16','Y','37Y',0,0,0,'F','','','+91',7874143463,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 12:27:28','','0000-00-00 00:00:00'),(0,872,'',0,'','YASHBHAI JETHWA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-10-16','Y','33Y',0,0,0,'M','','','+91',9998694274,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-16 12:32:45','','0000-00-00 00:00:00'),(0,873,'',0,'','RANJEETBHAI D HADVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-16','Y','35Y',0,0,0,'M','','','+91',9724603069,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 12:33:15','reception','2025-11-24 12:56:21'),(0,874,'',0,'','ADITYA CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-10-16','Y','17Y',0,0,0,'M','','','+91',8866412340,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 12:38:02','','0000-00-00 00:00:00'),(0,875,'',0,'','VARU VALJIBHAI','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1968-10-16','Y','57Y',0,0,0,'M','','','+91',8487078497,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 12:50:44','','0000-00-00 00:00:00'),(0,876,'',0,'','PUSHPABEN VACHHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-16','Y','52Y',0,0,0,'F','','','+91',9664951980,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 12:53:06','janvi','2025-11-14 18:46:50'),(0,877,'',0,'','DILIPBHAI GOHEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-16','Y','59Y',0,0,0,'M','','','+91',9879106309,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 13:11:48','','0000-00-00 00:00:00'),(0,878,'',0,'','SONUBEN K GADHVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-10-16','Y','76Y',0,0,0,'F','','','+91',8780794054,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 13:27:00','','0000-00-00 00:00:00'),(0,879,'',0,'','BABULAL RAMJIBHAI GHAGHADA','','','RADHIKA APPARTMENT FLAT NO-202,','JALARAM SOC-2 ST NO-1, UNIVERSITY ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-08-28','N','73Y',0,0,0,'M','','','+91',9979856554,'+91',9998905127,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-16 14:11:22','','0000-00-00 00:00:00'),(0,880,'',0,'','VAJIBEN KORAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-10-16','Y','76Y',0,0,0,'F','','','+91',9824631061,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 14:39:00','reception','2025-11-17 12:13:25'),(0,881,'',0,'','PARISIMABEN D PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-16','Y','65Y',0,0,0,'F','','','+91',9924786160,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 15:01:14','','0000-00-00 00:00:00'),(0,882,'',0,'','BHARGAVI V VASANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-10-16','Y','20Y',0,0,0,'F','','','+91',9725942699,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 16:36:31','','0000-00-00 00:00:00'),(0,883,'',0,'','PARESHBHAI JETHVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-10-16','Y','44Y',0,0,0,'M','','','+91',9427724127,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 16:46:05','','0000-00-00 00:00:00'),(0,884,'',0,'','HASHMUKHBHAI B RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-10-16','Y','80Y',0,0,0,'M','','','+91',9510966074,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 16:54:08','urvashi','2025-12-16 17:58:11'),(0,885,'',0,'','JITESHBHAI B DABHI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-10-16','Y','19Y',0,0,0,'M','','','+91',6354846980,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 16:59:55','','0000-00-00 00:00:00'),(0,886,'',0,'','CHHAGANBHAI B BHALODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-10-16','Y','79Y',0,0,0,'M','','','+91',9898482914,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 17:01:58','reception','2025-11-07 18:11:51'),(0,887,'',0,'','DRASHTIBEN B CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-16','Y','25Y',0,0,0,'F','','','+91',8460656137,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 17:10:57','reception','2025-11-25 12:32:09'),(0,888,'',0,'','KANAIYALAL BALDANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-10-16','Y','73Y',73,0,0,'M','','','+91',9099315686,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 17:11:55','shweta','2025-12-02 18:26:13'),(0,889,'',0,'','DHARMENDRA CHATROLA','','','','',0,'TANKARA','TANKARA','GUJARAT','INDIA','1990-10-16','Y','35Y',0,0,0,'M','','','+91',9586589189,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 17:20:16','','0000-00-00 00:00:00'),(0,890,'',0,'','CHANDRAKANT K PANDIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-10-16','Y','67Y',0,0,0,'M','','','+91',9904708817,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 17:23:28','','0000-00-00 00:00:00'),(0,891,'',0,'','JYOTSANABEN SAVALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-10-16','Y','57Y',0,0,0,'F','','','+91',9725755800,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-16 17:34:28','manshi','2025-10-24 11:12:11'),(0,892,'',0,'','BHARTIBEN A PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-16','Y','51Y',0,0,0,'M','','','+91',8320167387,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 17:34:45','reception','2025-12-10 10:33:10'),(0,893,'',0,'','JYOTSANABEN TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-10-16','Y','67Y',0,0,0,'F','','','+91',9904224568,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 17:36:03','priyanshi','2025-11-06 11:01:31'),(0,894,'',0,'','RUSHIRAJSINH PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-10-16','Y','26Y',0,0,0,'M','','','+91',8320167387,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 17:36:10','reception','2025-12-10 10:33:39'),(0,895,'',0,'','TANAY JASANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-10-16','Y','21Y',21,0,0,'M','','','+91',8401433211,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 17:41:04','reception','2025-10-16 17:47:39'),(0,896,'',0,'','AMAN C MANDALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-10-16','Y','33Y',0,0,0,'M','','','+91',8488820551,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 17:42:48','reception','2025-11-10 13:57:36'),(0,897,'',0,'','PAYALBEN S VADHADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-16','Y','45Y',0,0,0,'F','','','+91',9427220713,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 17:43:04','reception','2025-12-19 16:47:01'),(0,898,'',0,'','BINDIYABEN ASHARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-10-16','Y','47Y',0,0,0,'F','','','+91',9427505556,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-16 17:46:11','','0000-00-00 00:00:00'),(0,899,'',0,'','POONAMBEN BHAGCHANDANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-16','Y','62Y',0,0,0,'F','','','+91',9898068896,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 17:46:19','','0000-00-00 00:00:00'),(0,900,'',0,'','SHARDABEN PRAVINBHAI VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-16','Y','62Y',0,0,0,'F','','','+91',9624962654,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 17:49:47','janvi','2025-12-23 17:44:18'),(0,901,'',0,'','NIMISHABEN PUJARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-16','Y','58Y',0,0,0,'F','','','+91',6352106203,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 17:51:14','','0000-00-00 00:00:00'),(0,902,'',0,'','HEMLATABEN TULASHIBHAI NADIPARA','','','','',0,'','','GUJARAT','INDIA','1959-10-16','Y','66Y',0,0,0,'F','','','+91',9879127842,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 17:51:44','','0000-00-00 00:00:00'),(0,903,'',0,'','HUSENABEN M MAKDA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1943-10-16','Y','82Y',0,0,0,'F','','','+91',9737927512,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 17:53:01','drashti','2025-11-21 18:05:37'),(0,904,'',0,'','ATULBHAI PAREKH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-16','Y','58Y',58,0,0,'M','','','+91',9898174140,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 17:54:02','reception','2025-10-16 17:55:22'),(0,905,'',0,'','JADEJA MANJULABA DILIPSINH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-16','Y','58Y',0,0,0,'F','','','+91',9737750399,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 17:57:13','','0000-00-00 00:00:00'),(0,906,'',0,'','MANSUKHBHAI MARVANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-16','Y','68Y',0,0,0,'M','','','+91',9408614756,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 17:59:14','','0000-00-00 00:00:00'),(0,907,'',0,'','CHANDRIKABEN R VAGADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-16','Y','60Y',0,0,0,'F','','','+91',8000382199,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 17:59:34','reception','2025-10-31 18:22:28'),(0,908,'',0,'','PARTHBHAI KURANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-10-16','Y','26Y',0,0,0,'M','','','+91',9727564911,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 18:02:07','','0000-00-00 00:00:00'),(0,909,'',0,'','CHETNABEN P KANDARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-16','Y','42Y',0,0,0,'F','','','+91',9712176800,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 18:05:23','','0000-00-00 00:00:00'),(0,910,'',0,'','KARUNASHANKAR S RADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1940-10-16','Y','85Y',0,0,0,'M','','','+91',7567051976,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-16 18:06:36','manshi','2025-10-17 18:18:01'),(0,911,'',0,'',' ASHOKBHAI SEDANI','','','102-SANJIWANI COMPLEX OPP PARADISE HALL','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-03-28','N','62Y',0,0,0,'M','','','+91',9033343144,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 18:07:27','priyanshi','2025-10-25 16:37:40'),(0,912,'',0,'','SURESHBHAI CHAVDA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1983-10-16','Y','42Y',0,0,0,'M','','','+91',9974129815,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 18:08:04','drashti','2025-10-29 09:51:40'),(0,913,'',0,'','VAISHALIBEN J ZALAVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-16','Y','40Y',0,0,0,'F','','','+91',9825776474,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-16 18:26:41','manshi','2025-10-27 11:46:50'),(0,914,'',0,'','PRAVINBHAI B VADHER','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-10-16','Y','37Y',0,0,0,'M','','','+91',9228470747,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 18:26:50','','0000-00-00 00:00:00'),(0,915,'',0,'','DIVALIBEN J POSHIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-16','Y','68Y',0,0,0,'F','','','+91',9825220620,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 18:29:30','reception','2025-12-18 17:32:24'),(0,916,'',0,'','VIJAYBHAI S RAM','','','','',0,'SOMNATH','SOMNATH','GUJARAT','INDIA','1993-10-16','Y','32Y',0,0,0,'M','','','+91',9978937908,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 18:32:38','drashti','2025-11-25 18:01:47'),(0,917,'',0,'','POOJABEN SUCHAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-10-16','Y','29Y',0,0,0,'F','','','+91',8200549904,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 18:40:11','drashti','2025-10-31 17:47:56'),(0,918,'',0,'','VINABEN GODHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-10-16','Y','34Y',0,0,0,'F','','','+91',7990447787,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-16 18:45:40','','0000-00-00 00:00:00'),(0,919,'',0,'','KRISHNABEN B CHANDEGRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-16','Y','30Y',0,0,0,'F','','','+91',9714108655,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 18:47:08','janvi','2025-10-17 12:10:59'),(0,920,'',0,'','DEEPABEN SHARMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-10-16','Y','54Y',0,0,0,'F','','','+91',9574974200,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 18:51:23','drashti','2025-12-17 17:00:05'),(0,921,'',0,'','JEJABHAI B BHARVAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-16','Y','58Y',0,0,0,'M','','','+91',8000041241,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 18:51:45','','0000-00-00 00:00:00'),(0,922,'',0,'','KUSUMBEN GANATRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-16','Y','62Y',0,0,0,'F','','','+91',9016546855,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 18:53:50','janvi','2025-12-09 18:41:01'),(0,923,'',0,'','JAYDEEP MANDIR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-10-16','Y','26Y',0,0,0,'M','','','+91',9664882236,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 18:55:06','','0000-00-00 00:00:00'),(0,924,'',0,'','ASMITABEN  KANSAGRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-10-16','Y','29Y',0,0,0,'F','','','+91',9033151312,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 18:58:14','priyanshi','2025-11-11 18:33:56'),(0,925,'',0,'','LILABEN CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-10-16','Y','78Y',0,0,0,'F','','','+91',9033638908,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 19:01:36','janvi','2025-12-19 11:55:51'),(0,926,'',0,'','SALIMBHAI K VADADARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-16','Y','53Y',0,0,0,'M','','','+91',9824867803,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 19:02:40','manshi','2025-11-20 19:19:37'),(0,927,'',0,'','PURVIBEN KHARECHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-10-16','Y','27Y',0,0,0,'F','','','+91',9106994063,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 19:02:49','','0000-00-00 00:00:00'),(0,928,'',0,'','RAMESHBHAI BORICHA','','','','',0,'MUNJAKA','MUNJAKA','GUJARAT','INDIA','1969-10-16','Y','56Y',0,0,0,'M','','','+91',9824219386,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-16 19:07:19','','0000-00-00 00:00:00'),(0,929,'',0,'','SOLANKI NIRMALABEN BHAGVANJIBHAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-16','Y','64Y',0,0,0,'F','','','+91',9998398492,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 19:30:46','','0000-00-00 00:00:00'),(0,930,'',0,'','SANJAYBHAI BHAGVANJIBHAI SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-10-16','Y','43Y',0,0,0,'M','','','+91',9998398492,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-16 19:35:48','','0000-00-00 00:00:00'),(0,931,'',0,'','GOPALBHAI NENVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-10-16','Y','78Y',0,0,0,'M','','','+91',9638891007,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-16 19:49:21','','0000-00-00 00:00:00'),(0,932,'',0,'','MANJIBHAI GADHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1940-10-16','Y','85Y',0,0,0,'M','','','+91',7600800003,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-16 20:07:56','manshi','2025-11-01 18:40:15'),(0,933,'',0,'','MAHESH RASIKLAL MEHTA ','','','KISHANPARA CHOWK','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-12-22','N','68Y',0,0,0,'M','','','+91',9909264554,'+91',9558591910,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-16 21:50:22','riya','2025-10-16 21:58:21'),(0,934,'',0,'','DHARMVIRSINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-10-17','Y','47Y',0,0,0,'M','','','+91',9924430999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-17 09:10:30','','0000-00-00 00:00:00'),(0,935,'',0,'','DEVBHAI RAICHURA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-10-17','Y','22Y',0,0,0,'M','','','+91',9723558699,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-17 09:12:38','','0000-00-00 00:00:00'),(0,936,'',0,'','JYOTIBEN VASANI','','','','',0,'','','GUJARAT','INDIA','1961-10-17','Y','64Y',0,0,0,'F','','','+91',9375977091,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-17 09:16:10','shweta','2025-10-23 12:18:19'),(0,937,'',0,'','GOPALBHAI PIPARIYA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1958-10-17','Y','67Y',0,0,0,'M','','','+91',9537414133,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 09:18:09','janvi','2025-12-12 09:31:21'),(0,938,'',0,'','KANCHANBEN M PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-17','Y','56Y',0,0,0,'F','','','+91',8849363180,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 09:30:17','','0000-00-00 00:00:00'),(0,939,'',0,'','RAJENDRAKUMAR H DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-17','Y','59Y',0,0,0,'M','','','+91',9924281125,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 09:43:42','','0000-00-00 00:00:00'),(0,940,'',0,'','VALJIBHAI K VARASADA ','','','','',0,'DHOLIYA','DHOLIYA','GUJARAT','INDIA','1969-10-17','Y','56Y',0,0,0,'M','','','+91',7202024475,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 09:47:12','','0000-00-00 00:00:00'),(0,941,'',0,'','MITHABHAI GARCHAR','','','','',0,'KANKOT','KANKOT','GUJARAT','INDIA','2002-10-17','Y','23Y',0,0,0,'M','','','+91',9016020658,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 09:48:41','','0000-00-00 00:00:00'),(0,942,'',0,'','LABHUBEN N JADAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-17','Y','55Y',0,0,0,'F','','','+91',9978396623,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 10:01:47','reception','2025-10-30 17:12:37'),(0,943,'',0,'','SHARDABEN N KUNDARIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1975-10-17','Y','50Y',0,0,0,'F','','','+91',9727391939,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 10:05:38','reception','2025-12-16 11:31:09'),(0,944,'',0,'','SAVITABEN D VAGHASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-17','Y','65Y',0,0,0,'F','','','+91',9537787381,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 10:13:33','reception','2025-11-01 09:59:48'),(0,945,'',0,'','NIRUBEN V GODHANIYA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1985-10-17','Y','40Y',0,0,0,'F','','','+91',9727779909,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 10:21:38','','0000-00-00 00:00:00'),(0,946,'',0,'','SANTOKBEN GODHANIYA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1970-10-17','Y','55Y',0,0,0,'F','','','+91',9727779909,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 10:22:39','drashti','2025-10-29 10:53:42'),(0,947,'',0,'','MANISHABEN BARASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-17','Y','62Y',62,0,0,'F','','','+91',9879533307,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 10:27:38','drashti','2025-10-28 11:05:44'),(0,948,'',0,'','RAMBHAI R ODEDARA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1956-10-17','Y','69Y',0,0,0,'M','','','+91',9925871781,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 10:32:00','reception','2025-11-18 11:19:48'),(0,949,'',0,'','RAHULBHAI S SOLANKI','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1993-10-17','Y','32Y',0,0,0,'M','','','+91',8460317132,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 10:47:31','reception','2025-12-16 10:37:41'),(0,950,'',0,'','RANJANBEN TRAPASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-17','Y','60Y',0,0,0,'F','','','+91',9913745765,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 10:49:22','reception','2025-10-29 17:44:55'),(0,951,'',0,'','KAUSHIKBHAI KOTECHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-10-17','Y','61Y',0,0,0,'M','','','+91',9825720715,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 10:50:58','','0000-00-00 00:00:00'),(0,952,'',0,'','PREMILABEN R  SAVALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-10-17','Y','47Y',0,0,0,'F','','','+91',9327124355,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 10:51:00','','0000-00-00 00:00:00'),(0,953,'',0,'','VIJAYBHAI M CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-17','Y','39Y',0,0,0,'M','','','+91',9825453936,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 10:53:45','','0000-00-00 00:00:00'),(0,954,'',0,'','TRUPTI MEHUL SHISHANGIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-17','Y','30Y',30,0,0,'F','','','+91',8849666836,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-17 10:54:38','manshi','2025-11-14 12:26:40'),(0,955,'',0,'','RAMJUBEN H KHACHHAR','','','','',0,'JASDAN','JASDAN','GUJARAT','INDIA','1993-10-17','Y','32Y',0,0,0,'F','','','+91',7487989234,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 10:57:17','reception','2025-11-19 10:20:29'),(0,956,'',0,'','BHAGWATI V BHANUSHALI','','','','',0,'GANDHIDHAM','GANDHIDHAM','GUJARAT','INDIA','1961-10-17','Y','64Y',64,0,0,'F','','','+91',9979788869,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 10:57:27','reception','2025-10-17 13:16:43'),(0,957,'',0,'','PARTHBHAI N MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-10-17','Y','61Y',0,0,0,'M','','','+91',9979891302,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 10:59:43','','0000-00-00 00:00:00'),(0,958,'',0,'','KANCHANBEN K ANDARPA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1970-10-17','Y','55Y',0,0,0,'F','','','+91',8980218076,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 11:12:07','reception','2025-12-23 10:58:40'),(0,959,'',0,'','KAJALBEN RAVALIYA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1982-10-17','Y','43Y',0,0,0,'F','','','+91',9909802121,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 11:13:21','','0000-00-00 00:00:00'),(0,960,'',0,'','CHIMANBHAI D VARASADA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-17','Y','70Y',0,0,0,'M','','','+91',9879750084,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 11:16:41','','0000-00-00 00:00:00'),(0,961,'',0,'','KALPANABEN JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-17','Y','50Y',0,0,0,'F','','','+91',9723054675,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 11:20:45','drashti','2025-12-01 10:25:19'),(0,962,'',0,'','MUKESHBHAI L JILKA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-10-17','Y','54Y',0,0,0,'M','','','+91',9825376191,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 11:21:02','urvashi','2025-12-03 12:37:16'),(0,963,'',0,'','ARUN S NEWATIA','','','','',0,'AHEMDABAD','AHEMDABAD','GUJARAT','INDIA','1966-10-17','Y','59Y',0,0,0,'M','','','+91',9099037820,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 11:29:02','','0000-00-00 00:00:00'),(0,964,'',0,'','RAKSHITBHAI KHIRAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-10-17','Y','28Y',0,0,0,'M','','','+91',8154975545,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 11:33:17','','0000-00-00 00:00:00'),(0,965,'',0,'','MANISHABEN N MAKWANA','','','','',0,'BAGSRA','BAGSRA','GUJARAT','INDIA','1983-10-17','Y','42Y',0,0,0,'F','','','+91',8511957761,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 11:34:10','','0000-00-00 00:00:00'),(0,966,'',0,'','BHAVESHBHAI D CHALLA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1980-10-17','Y','45Y',0,0,0,'M','','','+91',9737317402,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 11:37:47','','0000-00-00 00:00:00'),(0,967,'',0,'','MITALBEN RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-10-17','Y','26Y',0,0,0,'F','','','+91',9327407182,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 11:38:34','','0000-00-00 00:00:00'),(0,968,'',0,'','KIRANBEN DOBARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-17','Y','50Y',0,0,0,'F','','','+91',9426900186,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 11:39:51','reception','2025-11-24 13:25:33'),(0,969,'',0,'','DHANIBEN AGHERA','','','JALIYA ','MANSAR, DHROL',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1950-10-17','Y','75Y',0,0,0,'F','','','+91',9974842023,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 11:40:42','vishal','2025-10-17 13:06:01'),(0,970,'',0,'','YOGESHBHAI A GANDHI','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1965-10-17','Y','60Y',0,0,0,'M','','','+91',8160952351,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 11:41:56','reception','2025-12-10 13:44:38'),(0,971,'',0,'','ROHAN D RIBADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2015-10-17','Y','10Y2M0D',0,0,0,'M','','','+91',9824943653,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 11:51:20','drashti','2025-12-17 19:13:06'),(0,972,'',0,'','UTKARSHA ARYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-17','Y','25Y',0,0,0,'F','','','+91',6355110755,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-17 11:51:44','manshi','2025-11-10 19:15:56'),(0,973,'',0,'','JITESHBHAI J DHOLAKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-10-17','Y','44Y',0,0,0,'M','','','+91',9909312068,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 11:55:06','','0000-00-00 00:00:00'),(0,974,'',0,'','HITABEN BHANDARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-17','Y','55Y',0,0,0,'F','','','+91',9998215246,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 12:00:37','reception','2025-12-08 18:38:02'),(0,975,'',0,'','IRFANBHAI HASNANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-17','Y','30Y',0,0,0,'M','','','+91',8200525996,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 12:03:24','','0000-00-00 00:00:00'),(0,976,'',0,'','USHABEN K GAUTAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-10-17','Y','67Y',0,0,0,'F','','','+91',9662738427,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 12:03:57','reception','2025-10-17 17:19:30'),(0,977,'',0,'','BHUPENDRA VORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-10-17','Y','79Y',0,0,0,'M','','','+91',9825477914,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 12:09:00','','0000-00-00 00:00:00'),(0,978,'',0,'','RIKTA N RATHOD','','','','',0,'PUNNA','PUNNA','GUJARAT','INDIA','1984-10-17','Y','41Y',41,0,0,'F','','','+91',8320564389,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 12:12:25','reception','2025-10-17 13:09:38'),(0,979,'',0,'','DIVYESHBHAI SAGATHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-10-17','Y','31Y',0,0,0,'M','','','+91',8347890112,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 12:14:15','','0000-00-00 00:00:00'),(0,980,'',0,'','MADHUBEN A PARMAR','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1973-10-17','Y','52Y',0,0,0,'F','','','+91',9825828304,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 12:19:56','drashti','2025-11-26 12:30:28'),(0,981,'',0,'','ANJALIBEN TANNA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-17','Y','50Y',0,0,0,'F','','','+91',9825340005,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 12:29:06','','0000-00-00 00:00:00'),(0,982,'',0,'','MANJULABEN PATEL','','','RUDRA, PRAGTI SOC MAIN ROAD','RAIYA ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-17','Y','68Y',0,0,0,'F','','','+91',9099400800,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 12:29:40','shweta','2025-12-02 11:04:31'),(0,983,'',0,'','MAHEZBIN MUJAVAR ','','','','',0,'UNA','UNA','GUJARAT','INDIA','1996-10-17','Y','29Y',0,0,0,'F','','','+91',8140500782,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 12:41:04','reception','2025-11-17 14:14:49'),(0,984,'',0,'','MINALBEN MAHAJAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-10-17','Y','24Y',0,0,0,'F','','','+91',8460510007,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 12:42:09','','0000-00-00 00:00:00'),(0,985,'',0,'','VASUBHAI LUNDH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-10-17','Y','57Y',0,0,0,'M','','','+91',9624044404,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 12:44:23','janvi','2025-10-27 19:07:52'),(0,986,'',0,'','ASWINGIRI GOSWAMI','','','','',0,'UNA','UNA','GUJARAT','INDIA','1988-10-17','Y','37Y',0,0,0,'M','','','+91',8140404646,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 13:22:01','','0000-00-00 00:00:00'),(0,987,'',0,'','PADANIYA AJMUDDINBHAI','','','KENEDIPUR, ','SASAN ROAD, MENDARDA',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1961-10-17','Y','64Y',0,0,0,'M','','','+91',9879688865,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-17 14:04:50','','0000-00-00 00:00:00'),(0,988,'',0,'','KAVIBEN KARANGIYA','','','','',0,'RANAKANDORANA PORBANDAR','RANAKANDORANA PORBANDAR','GUJARAT','INDIA','1979-10-17','Y','46Y',0,0,0,'F','','','+91',9624255474,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-17 14:55:52','','0000-00-00 00:00:00'),(0,989,'',0,'','MANHARPURI GOSAI','','','RADHA KRUSHNA SOC, GANGOTRI MAIN ROAD, ','UNIVERSITY MAIN ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-17','Y','65Y',0,0,0,'M','','','+91',9712709029,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-17 15:08:19','','0000-00-00 00:00:00'),(0,990,'',0,'','PURVI UKANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-17','Y','35Y',0,0,0,'F','','','+91',9825093831,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-17 15:47:15','priyanshi','2025-12-20 15:37:39'),(0,991,'',0,'','DHARMESH H DAVE','','FURTH HEAL','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-17','Y','39Y',39,0,0,'M','','','+91',9909905581,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 16:37:17','reception','2025-12-12 17:02:40'),(0,992,'',0,'','VASANT MORVADIYA','','','','',0,'LA RENON HEALTHCARE','LA RENON HEALTHCARE','GUJARAT','INDIA','2000-10-17','Y','25Y',0,0,0,'M','','','+91',7966161000,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 16:39:29','','0000-00-00 00:00:00'),(0,993,'',0,'','JAMPU SURESH','','','','',0,'ZYDUS HELTHCARE LIMITED','ZYDUS HELTHCARE LIMITED','GUJARAT','INDIA','1990-10-17','Y','35Y',0,0,0,'M','','','+91',6358895652,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 16:40:54','','0000-00-00 00:00:00'),(0,994,'',0,'','SEEMABEN V BHIMANI','','','','',0,'TANKARA','TANKARA','GUJARAT','INDIA','1974-10-17','Y','51Y',0,0,0,'F','','','+91',8200206260,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 16:47:57','reception','2025-11-17 11:40:24'),(0,995,'',0,'','TANISHKA A KAMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-10-17','Y','17Y',0,0,0,'F','','','+91',9879298293,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 16:51:39','','0000-00-00 00:00:00'),(0,996,'',0,'','G B GOLANI','','','MEDVAC PHARMACEUTICAL','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-10-17','Y','47Y',0,0,0,'M','','','+91',9427665195,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 16:55:04','reception','2025-12-17 16:19:48'),(0,997,'',0,'','URVIBEN N JANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-10-17','Y','29Y',0,0,0,'F','','','+91',9022578787,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 16:58:53','urvashi','2025-12-16 17:45:39'),(0,998,'',0,'','SOBHNABEN R PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-10-17','Y','43Y',0,0,0,'F','','','+91',9327103858,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 17:00:17','','0000-00-00 00:00:00'),(0,999,'',0,'','PRITESH MANKAD','','','FINECURE PHARMA ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-10-17','Y','37Y',0,0,0,'M','','','+91',9426449973,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 17:01:37','reception','2025-12-19 16:39:07'),(0,1000,'',0,'','VANDANABEN PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-17','Y','50Y',0,0,0,'F','','','+91',9327588753,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 17:01:53','','0000-00-00 00:00:00'),(0,1001,'',0,'','RAMESHBHAI V KUNDARIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1991-10-17','Y','34Y',0,0,0,'M','','','+91',9726055825,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 17:03:25','','0000-00-00 00:00:00'),(0,1002,'',0,'','RANABHAI VEGDA','','','','',0,'SHAPAR','SHAPAR','GUJARAT','INDIA','1998-10-17','Y','27Y',0,0,0,'M','','','+91',9773178633,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-17 17:17:06','','0000-00-00 00:00:00'),(0,1003,'',0,'','SONALBEN D POPTANI','','','','',0,'LATHI AMRELI','LATHI AMRELI','GUJARAT','INDIA','1984-10-17','Y','41Y',0,0,0,'F','','','+91',6353707584,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 17:24:37','','0000-00-00 00:00:00'),(0,1004,'',0,'','PRABHABEN P VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-10-17','Y','73Y',0,0,0,'F','','','+91',9925303315,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 17:25:36','','0000-00-00 00:00:00'),(0,1005,'',0,'','DHAIRY R ADESARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-10-17','Y','17Y',0,0,0,'M','','','+91',9825314225,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 17:30:29','','0000-00-00 00:00:00'),(0,1006,'',0,'','JASKUBHAI A SHEKHVA','','','','',0,'UMRALI BHESAN','UMRALI BHESAN','GUJARAT','INDIA','1957-10-17','Y','68Y',68,0,0,'M','','','+91',9712099188,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 17:31:22','janvi','2025-10-17 17:33:29'),(0,1007,'',0,'','KAILASHBEN C BAROT','','','','',0,'MOVRI','MOVRI','GUJARAT','INDIA','1988-10-17','Y','37Y',0,0,0,'F','','','+91',9714186335,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 17:38:34','','0000-00-00 00:00:00'),(0,1008,'',0,'','JYOTIBA B JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-17','Y','56Y',0,0,0,'F','','','+91',8128012128,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 17:39:31','reception','2025-12-15 18:30:01'),(0,1009,'',0,'','JAINABBEN BAREKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-10-17','Y','19Y',0,0,0,'F','','','+91',9904791177,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 17:41:14','janvi','2025-10-29 18:33:37'),(0,1010,'',0,'','AKHILESHBHAI PAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-17','Y','25Y',0,0,0,'M','','','+91',6351337981,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 17:42:56','','0000-00-00 00:00:00'),(0,1011,'',0,'','VINODBHAI M KALARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-17','Y','64Y',0,0,0,'M','','','+91',9824081977,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 17:43:08','reception','2025-11-03 16:46:08'),(0,1012,'',0,'','ILABEN D BUDHBHATTI','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1969-10-17','Y','56Y',0,0,0,'F','','','+91',9601193999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 17:46:03','reception','2025-12-02 17:22:18'),(0,1013,'',0,'','VAJUBHAI PALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-10-17','Y','61Y',0,0,0,'M','','','+91',9979281086,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 17:48:13','','0000-00-00 00:00:00'),(0,1014,'',0,'','GAURAVBHAI G LO','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-10-17','Y','37Y',0,0,0,'M','','','+91',9537353325,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 17:48:49','','0000-00-00 00:00:00'),(0,1015,'',0,'','SOBHNABEN HIRPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-10-17','Y','54Y',0,0,0,'F','','','+91',6354262524,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 17:50:49','reception','2025-11-19 18:36:30'),(0,1016,'',0,'','SONALBEN LAMBARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-17','Y','25Y',0,0,0,'F','','','+91',9265716942,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 17:55:00','reception','2025-11-20 18:20:38'),(0,1017,'',0,'','SUSHIL VISHWKARMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-10-17','Y','18Y',0,0,0,'M','','','+91',8140476781,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 17:57:40','reception','2025-10-31 10:02:50'),(0,1018,'',0,'','USHABEN P. SONAGRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-17','Y','51Y',0,0,0,'F','','','+91',9726853209,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 18:02:12','','0000-00-00 00:00:00'),(0,1019,'',0,'','YUVRAJSINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-10-17','Y','28Y',0,0,0,'M','','','+91',8780623465,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-17 18:02:19','','0000-00-00 00:00:00'),(0,1020,'',0,'','SHASHIKANTBHAI GOHEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-10-17','Y','71Y',0,0,0,'M','','','+91',9427563244,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 18:02:26','janvi','2025-10-31 11:22:04'),(0,1021,'',0,'','VISHALBHAI R JATIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-10-17','Y','28Y',0,0,0,'M','','','+91',7984452300,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 18:05:10','','0000-00-00 00:00:00'),(0,1022,'',0,'','HAVABEN K GARANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-10-17','Y','79Y',0,0,0,'F','','','+91',9904325290,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 18:05:15','reception','2025-12-08 12:13:04'),(0,1023,'',0,'','RAVIBHAI H KOCHRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-10-17','Y','22Y',0,0,0,'M','','','+91',9662682142,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 18:11:27','','0000-00-00 00:00:00'),(0,1024,'',0,'','HEMLATABEN GAGLANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-10-17','Y','72Y',0,0,0,'F','','','+91',9408612211,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 18:13:58','shweta','2025-10-23 13:17:53'),(0,1025,'',0,'','ASHOKBHAI VADALIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-17','Y','62Y',0,0,0,'M','','','+91',9726478200,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-17 18:21:35','','0000-00-00 00:00:00'),(0,1026,'',0,'','PARUL LAKHTARIYA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1991-10-17','Y','34Y',0,0,0,'F','','','+91',8128555500,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 18:25:22','reception','2025-12-10 18:00:22'),(0,1027,'',0,'','ANJUBEN P KHOKHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-17','Y','58Y',0,0,0,'F','','','+91',7698776340,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 18:28:58','reception','2025-12-08 18:28:26'),(0,1028,'',0,'','DIVYESHBHAI AMLANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-17','Y','40Y',0,0,0,'M','','','+91',9824560771,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 18:35:57','','0000-00-00 00:00:00'),(0,1029,'',0,'','DIPALI AKHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-17','Y','32Y',0,0,0,'F','','','+91',7405322671,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 18:36:23','shweta','2025-11-11 16:47:28'),(0,1030,'',0,'','VANDANABEN RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-17','Y','42Y',0,0,0,'F','','','+91',7990725342,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 18:48:49','','0000-00-00 00:00:00'),(0,1031,'',0,'','CHANDRIKABEN U DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-10-17','Y','77Y',0,0,0,'F','','','+91',9924983018,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 18:50:11','','0000-00-00 00:00:00'),(0,1032,'',0,'','GEETABEN V SANGHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-10-17','Y','46Y',0,0,0,'F','','','+91',9687482914,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-17 19:02:28','reception','2025-12-09 18:55:00'),(0,1033,'',0,'','SNEHA CHUDASAMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-17','Y','30Y',0,0,0,'F','','','+91',7575080483,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 19:10:34','','0000-00-00 00:00:00'),(0,1034,'',0,'','DIVYARAJ BHATTI','','','RAMESHWAR PARK,RAIYA ROAD ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2010-10-29','N','14Y',0,0,0,'M','','','+91',6355929933,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 19:11:45','riya','2025-10-24 19:18:55'),(0,1035,'',0,'','UMABEN GADHAVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-17','Y','55Y',0,0,0,'F','','','+91',9586303502,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-17 19:28:41','','0000-00-00 00:00:00'),(0,1036,'',0,'','ANAND HIMATLAL SHAH','','','BHUMI-2, SWASTIK SOC, ST NO-1,','AIPORT ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-10-24','Y','33Y',33,0,0,'M','','','+91',8000019596,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-17 19:33:13','janvi','2025-11-15 17:56:58'),(0,1037,'',0,'','DIVYABEN KATESIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-10-17','Y','49Y',0,0,0,'F','','','+91',9924927271,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-17 19:33:38','shweta','2025-12-17 12:51:01'),(0,1038,'',0,'','ALPABEN M SARVAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-17','Y','42Y',0,0,0,'F','','','+91',8238019006,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-17 19:58:24','','0000-00-00 00:00:00'),(0,1039,'',0,'','DHRUVI SADRANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-10-17','Y','24Y',0,0,0,'F','','','+91',7046515077,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-17 20:08:01','','0000-00-00 00:00:00'),(0,1040,'',0,'','BHARAT ISHWARLAL MOTWANI ','','','','',0,'','','GUJARAT','INDIA','1985-10-20','N','39Y',0,0,0,'M','','','+91',9825417063,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-17 20:55:33','','0000-00-00 00:00:00'),(0,1041,'',0,'','NOORJAHA PAREKH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-18','Y','42Y',0,0,0,'F','','','+91',9429837333,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-18 09:02:33','','0000-00-00 00:00:00'),(0,1042,'',0,'','SONAM KHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-10-18','Y','28Y',0,0,0,'F','','','+91',9205895912,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-18 09:05:40','priyanshi','2025-11-03 09:20:10'),(0,1043,'',0,'','MANVIENDRASINH ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-10-18','Y','22Y',0,0,0,'M','','','+91',9427431889,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-18 09:08:16','','0000-00-00 00:00:00'),(0,1044,'',0,'','MUKTABEN SORATHIYA','','','','',0,'LODHIKA','LODHIKA','GUJARAT','INDIA','1976-10-18','Y','49Y',0,0,0,'F','','','+91',8347520301,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 09:41:20','reception','2025-11-12 16:12:17'),(0,1045,'',0,'','PURIBEN JALU','','','','',0,'UPLETA','UPLETA','GUJARAT','INDIA','1963-10-18','Y','62Y',0,0,0,'F','','','+91',9773025818,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 09:42:36','priyanshi','2025-11-21 09:38:51'),(0,1046,'',0,'','MITEN P CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-10-18','Y','19Y',0,0,0,'M','','','+91',8866047775,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 09:48:03','','0000-00-00 00:00:00'),(0,1047,'',0,'','MUKESHBHAI J PARIKH','','','SUNDARAM SHILP B2-403 AYODHYA CHOWK ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-10-18','Y','63Y',0,0,0,'M','','','+91',8780022872,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-18 09:48:58','shweta','2025-10-23 12:59:56'),(0,1048,'',0,'','MANJUBEN A CHIKHALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-18','Y','51Y',0,0,0,'F','','','+91',8401087705,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 09:50:25','','0000-00-00 00:00:00'),(0,1049,'',0,'','SANDIPBHAI SINDHAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-18','Y','50Y',0,0,0,'M','','','+91',9825217014,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-18 09:53:42','','0000-00-00 00:00:00'),(0,1050,'',0,'','DHARAM P VAISHNANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-18','Y','45Y',0,0,0,'M','','','+91',9426732611,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 10:02:08','','0000-00-00 00:00:00'),(0,1051,'',0,'','SAMJIBHAI K DUDHATRA','','','','',0,'KUVADVA','KUVADVA','GUJARAT','INDIA','1950-10-18','Y','75Y',0,0,0,'M','','','+91',9824870352,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 10:12:10','reception','2025-12-03 17:21:01'),(0,1052,'',0,'','ARVINDBHAI R SARMAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-10-18','Y','49Y',0,0,0,'M','','','+91',9825579193,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 10:24:35','drashti','2025-11-25 18:31:31'),(0,1053,'',0,'','MANISHABEN H CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-18','Y','36Y',0,0,0,'F','','','+91',9998836350,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-18 10:40:32','reception','2025-12-13 17:11:17'),(0,1054,'',0,'','SARIFABEN S KADIVAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-10-18','Y','46Y',0,0,0,'F','','','+91',9574274642,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-18 10:45:04','manshi','2025-11-08 11:21:12'),(0,1055,'',0,'','HIRABEN B ODEDRA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1990-10-18','Y','35Y',0,0,0,'M','','','+91',9664684275,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 10:53:40','reception','2025-12-19 10:44:19'),(0,1056,'',0,'','RAMBHAI ODEDRA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1993-10-18','Y','32Y',0,0,0,'M','','','+91',9664684275,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 10:55:08','reception','2025-12-19 10:43:31'),(0,1057,'',0,'','HIRALAL H JETHLOJA','','','','',0,'HALVAD','HALVAD','GUJARAT','INDIA','1965-10-18','Y','60Y',0,0,0,'M','','','+91',8849090154,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-18 10:56:25','','0000-00-00 00:00:00'),(0,1058,'',0,'','JITUBHAI K LOTIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-10-18','Y','69Y',0,0,0,'M','','','+91',9909172696,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 11:06:23','','0000-00-00 00:00:00'),(0,1059,'',0,'','SANGITABEN KUNDHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-10-18','Y','43Y',43,0,0,'F','','','+91',8140872208,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-18 11:10:55','reception','2025-10-18 11:49:23'),(0,1060,'',0,'','VINODBHAI MANEK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-10-18','Y','80Y',0,0,0,'M','','','+91',9426447581,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-18 11:17:09','reception','2025-11-24 17:48:47'),(0,1061,'',0,'','SAROJBEN J BHALODIYA','','','','',0,'JAMJODHPUR','JAMJODHPUR','GUJARAT','INDIA','1969-10-18','Y','56Y',0,0,0,'F','','','+91',9727572911,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 11:18:49','','0000-00-00 00:00:00'),(0,1062,'',0,'','NARESH A SOLANKI','','','','',0,'JAMNAGAR ','JAMNAGAR ','GUJARAT','INDIA','1972-10-18','Y','53Y',0,0,0,'M','','','+91',7359557200,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 11:21:35','reception','2025-12-12 16:25:45'),(0,1063,'',0,'','RAMESH LILADHARBHAI KARIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-10-18','Y','80Y',0,0,0,'M','','','+91',9825329902,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-18 11:23:03','janvi','2025-12-07 12:18:04'),(0,1064,'',0,'','JITESHBHAI P GONDALIYA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1988-10-18','Y','37Y',0,0,0,'M','','','+91',9662311964,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 11:25:57','janvi','2025-11-03 18:25:12'),(0,1065,'',0,'','NAZIYA R BELIM','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-10-18','Y','34Y',0,0,0,'F','','','+91',8200459972,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 11:29:01','','0000-00-00 00:00:00'),(0,1066,'',0,'','GUDIBEN A KHALID','','','','',0,'JAGNESHWAR','JAGNESHWAR','GUJARAT','INDIA','1990-10-18','Y','35Y',0,0,0,'F','','','+91',6354017471,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 11:32:24','reception','2025-11-27 16:44:40'),(0,1067,'',0,'','REKHABEN MANVAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-18','Y','55Y',0,0,0,'F','','','+91',7878959565,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-18 11:33:00','manshi','2025-12-01 11:26:39'),(0,1068,'',0,'','JIGNABEN RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-18','Y','40Y',0,0,0,'F','','','+91',9712197342,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-18 11:34:47','drashti','2025-11-05 18:44:11'),(0,1069,'',0,'','ASHA DEVI PRAJAPATI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-18','Y','35Y',0,0,0,'F','','','+91',7600559261,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-18 11:34:55','','0000-00-00 00:00:00'),(0,1070,'',0,'','HAVABAI K DHAMELIYA','','','','',0,'MANGOL','MANGOL','GUJARAT','INDIA','1987-10-18','Y','38Y',0,0,0,'F','','','+91',8141939225,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 11:36:01','','0000-00-00 00:00:00'),(0,1071,'',0,'','DIWALIBEN M ASODARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-18','Y','55Y',0,0,0,'F','','','+91',9033452307,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 11:38:41','reception','2025-12-19 11:41:49'),(0,1072,'',0,'','DEVSHIBHAI D PANARA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1958-10-18','Y','67Y',0,0,0,'M','','','+91',9925235208,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 11:40:17','','0000-00-00 00:00:00'),(0,1073,'',0,'','JOSHNABEN BERA','','','','',0,'JAMJODHPUR','JAMJODHPUR','GUJARAT','INDIA','1993-10-18','Y','32Y',0,0,0,'F','','','+91',9714890709,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-18 11:40:47','','0000-00-00 00:00:00'),(0,1074,'',0,'','ABEDABEN B MALEK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-18','Y','53Y',0,0,0,'F','','','+91',9714761688,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-18 11:41:46','','0000-00-00 00:00:00'),(0,1075,'',0,'','MEHULBHAI GOHIL','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1979-10-18','Y','46Y',0,0,0,'M','','','+91',9925182842,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 11:42:33','','0000-00-00 00:00:00'),(0,1076,'',0,'','HATHISINH D SISODIYA','','','','',0,'MALIYA','MALIYA','GUJARAT','INDIA','1980-10-18','Y','45Y',0,0,0,'M','','','+91',9624323356,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 11:44:55','','0000-00-00 00:00:00'),(0,1077,'',0,'','JAGDISHSINH B JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-18','Y','65Y',0,0,0,'M','','','+91',9913600111,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-18 11:45:46','','0000-00-00 00:00:00'),(0,1078,'',0,'','NIRMALENDU MANDAL','','','','',0,'JAMANGAR','JAMANGAR','GUJARAT','INDIA','1975-10-18','Y','50Y',0,0,0,'M','','','+91',8240916820,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-18 11:46:35','','0000-00-00 00:00:00'),(0,1079,'',0,'','RAMNIKBHAI THUMAR','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1963-10-18','Y','62Y',0,0,0,'M','','','+91',9712345325,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-18 11:50:32','','0000-00-00 00:00:00'),(0,1080,'',0,'','RANJANBEN H KANANI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1987-10-18','Y','38Y',38,0,0,'F','','','+91',9925163555,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-18 11:52:24','reception','2025-10-18 13:18:00'),(0,1081,'',0,'','DINABEN CHAVDA','','','','',0,'BHARUCH','BHARUCH','GUJARAT','INDIA','1985-10-18','Y','40Y',0,0,0,'F','','','+91',9426995508,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-18 11:55:59','','0000-00-00 00:00:00'),(0,1082,'',0,'','MAMADBHAI H JETHVA','','','','',0,'VANTHLI','VANTHLI','GUJARAT','INDIA','1975-10-18','Y','50Y',0,0,0,'M','','','+91',9712765811,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 12:02:43','','0000-00-00 00:00:00'),(0,1083,'',0,'','JAGDISHBHAI D VAGHERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-10-18','Y','41Y',0,0,0,'M','','','+91',9725783546,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-18 12:04:55','drashti','2025-12-19 18:50:12'),(0,1084,'',0,'','KISHORBHAI C JANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-10-18','Y','69Y',0,0,0,'M','','','+91',9712924056,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 12:07:46','','0000-00-00 00:00:00'),(0,1085,'',0,'','NISHABEN KAILA','','','','',0,'VADODRA','VADODRA','GUJARAT','INDIA','1991-10-18','Y','34Y',0,0,0,'F','','','+91',9727871764,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 12:16:21','reception','2025-12-15 12:59:34'),(0,1086,'',0,'','JANVI MANEK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-10-18','Y','28Y',0,0,0,'F','','','+91',9510711113,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-18 12:28:05','reception','2025-12-13 12:38:01'),(0,1087,'',0,'','REKHA NAYAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-10-18','Y','17Y',0,0,0,'F','','','+91',9558225122,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 12:40:48','reception','2025-12-02 13:32:10'),(0,1088,'',0,'','JAMILABEN A QURESHI','','','','',0,'VAVDI','VAVDI','GUJARAT','INDIA','1980-10-18','Y','45Y',0,0,0,'F','','','+91',9227744337,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 12:45:16','','0000-00-00 00:00:00'),(0,1089,'',0,'','HEET TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2020-10-18','Y','05Y0M',0,0,0,'M','','','+91',9909185567,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-18 13:03:04','','0000-00-00 00:00:00'),(0,1090,'',0,'','SAKSHI S PATEL','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','2009-10-18','Y','16Y',0,0,0,'F','','','+91',9099817729,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-18 13:25:17','','0000-00-00 00:00:00'),(0,1091,'',0,'','JIGNABA JADEJA','','','','',0,'KHAKHRA','KHAKHRA','GUJARAT','INDIA','1997-10-18','Y','28Y',28,0,0,'F','','','+91',9725983777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-18 13:51:49','reception','2025-10-18 14:45:42'),(0,1092,'',0,'','KRUNALBHAI SONRAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-10-18','Y','21Y',0,0,0,'M','','','+91',8849101960,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-18 14:12:44','drashti','2025-11-24 17:38:09'),(0,1093,'',0,'','KRUNAL G  SONRAT','','','SIMAR','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','2004-12-26','N','20Y',0,0,0,'M','','','+91',8160751519,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-18 15:49:26','','0000-00-00 00:00:00'),(0,1094,'',0,'','SAVANBHAI RAIYANI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','2005-10-18','Y','20Y',0,0,0,'M','','','+91',9662088753,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-18 16:21:53','manshi','2025-11-12 17:59:54'),(0,1095,'',0,'','JIGNESHBHAI S KUKADIYA','','','SHAKTI SOC, STREET NO-11,NAVAGAM MAIN ROAD ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-18','Y','32Y',0,0,0,'M','','','+91',7698393294,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-18 17:30:22','shweta','2025-12-18 11:30:27'),(0,1096,'',0,'','ANVAY VIDYARTHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2018-10-18','Y','07Y0M',0,0,0,'M','','','+91',9864079767,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','reception','2025-10-18 17:32:51','','0000-00-00 00:00:00'),(0,1097,'',0,'','MANISHBHAI SAVALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-18','Y','45Y',0,0,0,'M','','','+91',9979177977,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-18 18:21:23','','0000-00-00 00:00:00'),(0,1098,'',0,'','KRUSHNABA JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-10-18','Y','66Y',66,0,0,'F','','','+91',9904198988,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-18 19:14:58','manshi','2025-10-18 19:20:17'),(0,1099,'',0,'','CHIRAGBHAI VANAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','0000-00-00','','',0,0,0,'M','','','+91',9714023296,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-18 19:17:23','','0000-00-00 00:00:00'),(0,1100,'',0,'','CK MAHETA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','0000-00-00','','',0,0,0,'M','','','+91',9377746149,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-18 19:36:31','','0000-00-00 00:00:00'),(0,1101,'',0,'','GEETABEN PARMAR','','','TELEPHONE SOC B-38,PATIDAR CHOWK','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-18','Y','58Y',0,0,0,'F','','','+91',6354747416,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-18 20:31:43','','0000-00-00 00:00:00'),(0,1102,'',0,'','SAKURBHAI PARMAR','','','GIR GADHADA,','',0,'GIR SOMNATH','GIR SOMNATH','GUJARAT','INDIA','1970-10-19','Y','55Y',0,0,0,'M','','','+91',9033598182,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-19 10:14:48','vishal','2025-10-19 20:33:14'),(0,1103,'',0,'','MEHTA MAHENDRAPRASAD','','','E-108, RAVIRATNA PARK STREET-4,','NEAR INDIRA CIRCLE, UNIVERSITY ROAD,',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-01-01','N','75Y',0,0,0,'M','','','+91',9737811911,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-19 10:35:30','drashti','2025-11-01 12:16:43'),(0,1104,'',0,'','SHAH RASHMIBEN NIKHILBHAI','','','SHUBHAM FLAT 403, CHANDAN PARK','RAIYA ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-01-29','N','74Y',0,0,0,'F','','','+91',9898278783,'+91',9429417174,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-20 11:09:16','janvi','2025-10-27 11:52:49'),(0,1105,'',0,'','EKTABEN H VALA','','','SAMANVAY SOC, BLOCK NO - 2','RAIYA ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-10-20','Y','27Y',0,0,0,'F','','','+91',9601861849,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-20 19:39:00','','0000-00-00 00:00:00'),(0,1106,'',0,'','SONALBEN R DHADHAL ','','','CHUDA','BHESAN',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1995-10-23','Y','30Y',0,0,0,'F','','','+91',9898933000,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-23 09:56:00','janvi','2025-11-03 10:51:12'),(0,1107,'',0,'','SHAILESHBHAI L JANI','','','','UNIVERSITY ROAD,',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-10-23','Y','72Y',0,0,0,'M','','','+91',9376643750,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-23 10:39:29','drashti','2025-11-01 10:59:48'),(0,1108,'',0,'','JAYBHAI RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-10-23','Y','27Y',0,0,0,'M','','','+91',7041256009,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-23 11:39:54','priyanshi','2025-11-03 09:05:31'),(0,1109,'',0,'','NIYATIBEN PAGHADAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-10-23','Y','31Y',0,0,0,'F','','','+91',9558652620,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-23 11:41:16','','0000-00-00 00:00:00'),(0,1110,'',0,'','PRADEEPBHAI MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-23','Y','48Y',0,0,0,'M','','','+91',9825107074,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-23 11:45:11','priyanshi','2025-12-19 18:46:45'),(0,1111,'',0,'','BHARGAVBHAI DANGAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-23','Y','30Y',0,0,0,'M','','','+91',9157168328,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-23 11:49:31','drashti','2025-11-27 18:32:26'),(0,1112,'',0,'','VIJYABEN BHOYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-23','Y','60Y',0,0,0,'F','','','+91',9974803302,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-23 11:52:53','','0000-00-00 00:00:00'),(0,1113,'',0,'','POONAM BAMBHVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-10-23','Y','21Y',0,0,0,'F','','','+91',9265006117,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-23 11:56:39','','0000-00-00 00:00:00'),(0,1114,'',0,'','SMITBHAI SAKAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-10-23','Y','34Y',0,0,0,'M','','','+91',8010849691,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-23 12:00:21','','0000-00-00 00:00:00'),(0,1115,'',0,'','SATISHBHAI RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-10-23','Y','63Y',0,0,0,'M','','','+91',9909958335,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-23 12:00:24','','0000-00-00 00:00:00'),(0,1116,'',0,'','SHRUTIBEN GANDHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-23','Y','38Y',0,0,0,'F','','','+91',9687700001,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-23 12:04:10','','0000-00-00 00:00:00'),(0,1117,'',0,'','JYOTSHNABEN MAKWANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-10-23','Y','24Y',0,0,0,'F','','','+91',9265312473,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-23 12:04:31','','0000-00-00 00:00:00'),(0,1118,'',0,'','NARESHBHAI DHANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-23','Y','55Y',0,0,0,'M','','','+91',9904525925,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-23 12:10:54','','0000-00-00 00:00:00'),(0,1119,'',0,'','JAGRUTI VAISHNAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-23','Y','30Y',0,0,0,'F','','','+91',9717310584,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-23 12:13:57','drashti','2025-10-28 18:58:00'),(0,1120,'',0,'','AAYESHA GIGANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2012-10-23','Y','13Y',0,0,0,'F','','','+91',9429834333,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-23 12:16:41','','0000-00-00 00:00:00'),(0,1121,'',0,'','RAJENDRABHAI SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-23','Y','70Y',0,0,0,'M','','','+91',9974900090,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-23 12:20:25','','0000-00-00 00:00:00'),(0,1122,'',0,'','MANJULABEN DESAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1942-10-23','Y','83Y',0,0,0,'F','','','+91',8000014183,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-23 12:22:34','','0000-00-00 00:00:00'),(0,1123,'',0,'','SHAILEE KAMDAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-10-23','Y','26Y',0,0,0,'F','','','+91',9265177342,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-23 12:24:24','','0000-00-00 00:00:00'),(0,1124,'',0,'','BHAVNABEN NANDHY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-10-23','Y','47Y',0,0,0,'F','','','+91',6359239732,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-23 12:24:42','','0000-00-00 00:00:00'),(0,1125,'',0,'','PRINCEBHAI PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-10-23','Y','23Y',0,0,0,'M','','','+91',9327254624,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-23 12:31:21','','0000-00-00 00:00:00'),(0,1126,'',0,'','NIKHILBHAI CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-23','Y','32Y',0,0,0,'M','','','+91',8849805270,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-23 12:33:34','','0000-00-00 00:00:00'),(0,1127,'',0,'','ARIK SADARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2020-10-23','Y','05Y0M',5,0,0,'F','','','+91',9726204318,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-23 12:43:44','manshi','2025-11-08 17:44:38'),(0,1128,'',0,'','FARUKBHAI THAIM','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-23','Y','53Y',0,0,0,'M','','','+91',9824482909,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-23 12:46:11','reception','2025-12-12 17:59:35'),(0,1129,'',0,'','DIPIKA SIMEJIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-23','Y','39Y',0,0,0,'F','','','+91',9824823686,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-23 12:50:30','','0000-00-00 00:00:00'),(0,1130,'',0,'','DR VISHAL G VAGADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-23','Y','38Y',0,0,0,'M','','','+91',8980021997,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-23 12:56:47','','0000-00-00 00:00:00'),(0,1131,'',0,'','JAYANTILAL N DAVE','','','','',0,'','','GUJARAT','INDIA','2025-10-23','Y','00Y0M0D',0,0,0,'M','','','+91',0,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-23 12:58:12','','0000-00-00 00:00:00'),(0,1132,'',0,'','BHUPATBHAI BHATTI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-10-23','Y','63Y',0,0,0,'M','','','+91',9624378127,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-23 13:00:08','','0000-00-00 00:00:00'),(0,1133,'',0,'','SARISHBHAI SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-23','Y','56Y',0,0,0,'M','','','+91',9824429827,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-23 13:05:28','','0000-00-00 00:00:00'),(0,1134,'',0,'','SONALBA D CHAVDA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1990-10-23','Y','35Y',0,0,0,'F','','','+91',9979797788,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-23 17:27:14','reception','2025-12-12 11:32:26'),(0,1135,'',0,'','REKHABEN MANSARAMANI','','','','',0,'PUNA','PUNA','GUJARAT','INDIA','1959-10-23','Y','66Y',66,0,0,'F','','','+91',9723493981,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-23 17:28:32','reception','2025-11-12 10:45:20'),(0,1136,'',0,'','KOKILABEN A AGHERA','','','','',0,'VAKANER','VAKANER','GUJARAT','INDIA','1968-10-23','Y','57Y',0,0,0,'F','','','+91',9979383097,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-23 17:30:40','','0000-00-00 00:00:00'),(0,1137,'',0,'','MOTIBHAI  DHANRAJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-10-23','Y','80Y',0,0,0,'M','','','+91',9624471067,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-23 17:34:24','','0000-00-00 00:00:00'),(0,1138,'',0,'','SONALBEN MULIYANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-23','Y','45Y',0,0,0,'F','','','+91',9106757439,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-23 17:43:34','priyanshi','2025-11-13 12:30:05'),(0,1139,'',0,'','HASINABEN BHAVAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-23','Y','56Y',0,0,0,'F','','','+91',9879571821,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-23 17:46:53','','0000-00-00 00:00:00'),(0,1140,'',0,'','HARSHABEN JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-23','Y','51Y',51,0,0,'F','','','+91',9979035762,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-23 17:56:03','manshi','2025-12-06 17:37:24'),(0,1141,'',0,'','DARSHITBHAI PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-27','Y','32Y',32,0,0,'M','','','+91',6354015290,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-23 18:39:19','janvi','2025-10-27 17:58:46'),(0,1142,'',0,'','JASUBEN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','0000-00-00','','',0,0,0,'F','','','+91',9428517614,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-23 18:42:53','','0000-00-00 00:00:00'),(0,1143,'',0,'','VISHVRAJSINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-23','Y','25Y',0,0,0,'M','','','+91',9428418634,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-23 18:45:23','drashti','2025-10-30 18:35:06'),(0,1144,'',0,'','JAYSHREEBEN DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-23','Y','51Y',0,0,0,'F','','','+91',9377772779,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-23 18:47:12','','0000-00-00 00:00:00'),(0,1145,'',0,'','JIGNESHBHAI VADUKAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-10-23','Y','18Y',0,0,0,'M','','','+91',9624532899,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-23 18:50:26','','0000-00-00 00:00:00'),(0,1146,'',0,'','NIRMALABEN MAY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-10-23','Y','66Y',0,0,0,'F','','','+91',9574538332,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-23 18:55:55','','0000-00-00 00:00:00'),(0,1147,'',0,'','DRASHTIBEN MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-10-23','Y','23Y',0,0,0,'F','','','+91',9924270711,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-23 18:57:26','','0000-00-00 00:00:00'),(0,1148,'',0,'','GITABEN LOKHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-23','Y','52Y',0,0,0,'F','','','+91',8128106444,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-23 19:08:28','','0000-00-00 00:00:00'),(0,1149,'',0,'','DEVESHBHAI RANGANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2015-10-23','Y','10Y0M0D',0,0,0,'M','','','+91',9327142102,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-23 19:10:49','','0000-00-00 00:00:00'),(0,1150,'',0,'','KUVARBEN PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-23','Y','70Y',0,0,0,'F','','','+91',9979551796,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-23 19:13:53','','0000-00-00 00:00:00'),(0,1151,'',0,'','SATISHBHAI SHIYANI','','','MOKAR','RANAVAV',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1986-10-23','Y','39Y',0,0,0,'M','','','+91',9879613718,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-23 19:30:53','','0000-00-00 00:00:00'),(0,1152,'',0,'','BHARTIBEN JITENDRABHAI DAMANI','','','6 SUBHASHNAGAR, HAVELI CHOWK,','B/H AMRAPALI CINEMA, RAIYA ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-01','N','68Y',0,0,0,'F','','','+91',7878215189,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-23 20:20:17','janvi','2025-11-01 11:13:54'),(0,1153,'',0,'','AARTIBEN BAMBA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-10-24','Y','24Y',0,0,0,'F','','','+91',9909700400,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-24 08:55:31','','0000-00-00 00:00:00'),(0,1154,'',0,'','DAXABEN KOTECHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-10-24','Y','71Y',0,0,0,'F','','','+91',8799358354,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-24 08:57:45','','0000-00-00 00:00:00'),(0,1155,'',0,'','BHAVANBHAI VEKARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-10-24','Y','63Y',0,0,0,'M','','','+91',9426045194,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-24 09:01:25','','0000-00-00 00:00:00'),(0,1156,'',0,'','HASMUKHBHAI M GUSAI','','','','',0,'KUTCHH','KUTCHH','GUJARAT','INDIA','1998-10-24','Y','27Y',0,0,0,'M','','','+91',9016774229,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-24 09:03:43','','0000-00-00 00:00:00'),(0,1157,'',0,'','VELJIBHAI G TALAVIYA','','','','',0,'KHARI','KHARI','GUJARAT','INDIA','1955-10-24','Y','70Y',0,0,0,'M','','','+91',9167511086,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-24 09:31:01','','0000-00-00 00:00:00'),(0,1158,'',0,'','NISHA SHWETANG SODHA ','','','VIMALNAGAR MAIN ROAD NEAR PUSHKAR DHAM ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-18','N','40Y',0,0,0,'F','','','+91',8460084900,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-24 09:36:43','janvi','2025-12-08 19:16:16'),(0,1159,'',0,'','AMITBHAI DESAI','','','','',0,'DHORAJI','DHORAJI','GUJARAT','INDIA','1982-10-24','Y','43Y',0,0,0,'M','','','+91',9979883118,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 10:09:08','drashti','2025-12-11 10:21:01'),(0,1160,'',0,'','GOBARBHAI MER','','','','',0,'DHANDHANI RAJKOT','DHANDHANI RAJKOT','GUJARAT','INDIA','1961-10-24','Y','64Y',0,0,0,'M','','','+91',7984423631,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-24 10:14:07','','0000-00-00 00:00:00'),(0,1161,'',0,'','RAJSHIBHAI ODEDARA','','','','',0,'MANGROL','MANGROL','GUJARAT','INDIA','1975-10-24','Y','50Y',0,0,0,'M','','','+91',9723500913,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 10:15:37','reception','2025-12-01 11:50:13'),(0,1162,'',0,'','BRIJESHBHAI J DETROJA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1996-10-24','Y','29Y',0,0,0,'M','','','+91',8849414411,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-24 10:16:06','','0000-00-00 00:00:00'),(0,1163,'',0,'','RAJANBHAI M RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-24','Y','35Y',0,0,0,'M','','','+91',9428202215,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 10:26:24','','0000-00-00 00:00:00'),(0,1164,'',0,'','BHUMIT BADRAKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-24','Y','39Y',0,0,0,'M','','','+91',9898329941,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 10:40:42','','0000-00-00 00:00:00'),(0,1165,'',0,'','RINABEN MEVADA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-24','Y','45Y',0,0,0,'F','','','+91',9879838779,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 10:43:17','','0000-00-00 00:00:00'),(0,1166,'',0,'','TANVEERBHAI I CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-10-24','Y','47Y',0,0,0,'M','','','+91',9157564662,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-24 11:12:21','janvi','2025-10-29 19:36:35'),(0,1167,'',0,'','HANSHABEN SAKHIYA','','','','',0,'','','GUJARAT','INDIA','1970-10-24','Y','55Y',0,0,0,'F','','','+91',9662177995,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 11:17:17','','0000-00-00 00:00:00'),(0,1168,'',0,'','NITABEN R SISODIYA','','','','',0,'MALIYA HATINA','MALIYA HATINA','GUJARAT','INDIA','1990-10-24','Y','35Y',0,0,0,'F','','','+91',9537239617,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-24 11:31:21','','0000-00-00 00:00:00'),(0,1169,'',0,'','KHODABHAI P SAKARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-10-24','Y','34Y',0,0,0,'F','','','+91',9725437411,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-24 11:32:56','reception','2025-12-05 16:54:25'),(0,1170,'',0,'','JIGNESHBHAI A SHUKLA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1974-10-24','Y','51Y',0,0,0,'M','','','+91',9099535419,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-24 11:35:30','reception','2025-12-13 10:05:27'),(0,1171,'',0,'','RINABEN MANEK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-10-24','Y','33Y',0,0,0,'F','','','+91',9904893378,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 11:36:44','','0000-00-00 00:00:00'),(0,1172,'',0,'','RINABEN MANEK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-10-24','Y','33Y',33,0,0,'F','','','+91',9904893378,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 11:39:10','janvi','2025-11-07 18:07:34'),(0,1173,'',0,'','MANHARLAL RATILAL TRIVEDI','','','VANSH OMKAR PARK B/H STERLING HOSPITAL RAIYA ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-10-24','Y','77Y',0,0,0,'M','','','+91',9099662233,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-24 11:50:48','reception','2025-12-10 16:55:38'),(0,1174,'',0,'','DILIPBHAI BAHADUR','','','GONDAL ROAD SAMRUDHHI BHAVAN OPP BUSINSS CENTER','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-24','Y','40Y',0,0,0,'M','','','+91',9723791011,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 11:51:59','janvi','2025-12-08 11:32:58'),(0,1175,'',0,'','AARTIBEN JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-10-24','Y','47Y',0,0,0,'F','','','+91',9825139110,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-24 11:58:57','','0000-00-00 00:00:00'),(0,1176,'',0,'','HASINABEN Y MATHAKIYA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1964-10-24','Y','61Y',0,0,0,'F','','','+91',9978544591,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-24 12:04:22','','0000-00-00 00:00:00'),(0,1177,'',0,'','MALIBEN J ODEDARA','','','','',0,'DHANDHUSAR VANTHALI JUNAGADH','DHANDHUSAR VANTHALI JUNAGADH','GUJARAT','INDIA','1983-10-24','Y','42Y',0,0,0,'F','','','+91',7359646981,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-24 12:06:31','reception','2025-11-26 12:35:51'),(0,1178,'',0,'','PARTH B SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-10-24','Y','24Y',0,0,0,'M','','','+91',7990972914,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 12:34:02','','0000-00-00 00:00:00'),(0,1179,'',0,'','JAMNADASBHAI G JOSHI','','','1- SARASWATI PARK RAIYA ROAD ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-10-24','Y','79Y',0,0,0,'M','','','+91',8980554949,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 12:36:37','riya','2025-10-24 20:17:57'),(0,1180,'',0,'','VRAJLALBHAI PARMAR','','','','',0,'BATVA JUNAGADH','BATVA JUNAGADH','GUJARAT','INDIA','1951-10-24','Y','74Y',0,0,0,'M','','','+91',9426832990,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 13:48:32','riya','2025-10-24 14:48:00'),(0,1181,'',0,'','JAGRUTIBEN SUCHAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-10-24','Y','46Y',0,0,0,'F','','','+91',6356048339,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 16:35:58','','0000-00-00 00:00:00'),(0,1182,'',0,'','JATINBHAI SANGHVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-10-24','Y','49Y',0,0,0,'M','','','+91',9426267360,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 16:44:20','','0000-00-00 00:00:00'),(0,1183,'',0,'','RAJKUMAR H SAPARIYA','','','','',0,'AHEMDABAD','AHEMDABAD','GUJARAT','INDIA','1992-10-24','Y','33Y',0,0,0,'M','','','+91',9099699595,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-24 16:49:27','','0000-00-00 00:00:00'),(0,1184,'',0,'','BIPINBHAI JOSHI','','','','',0,'KHAMBHADIYA','KHAMBHADIYA','GUJARAT','INDIA','1965-10-24','Y','60Y',0,0,0,'M','','','+91',9723321320,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-24 17:01:57','reception','2025-12-03 10:11:23'),(0,1185,'',0,'','SAVITABEN DANDIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-10-24','Y','79Y',0,0,0,'F','','','+91',8128046478,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-24 17:44:57','','0000-00-00 00:00:00'),(0,1186,'',0,'','DILIPBHAI VAYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-10-24','Y','66Y',0,0,0,'M','','','+91',9033343955,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-24 17:46:16','','0000-00-00 00:00:00'),(0,1187,'',0,'','LATABEN V SOMAIYA','','','','',0,'MANAVADAR','MANAVADAR','GUJARAT','INDIA','1962-10-24','Y','63Y',0,0,0,'M','','','+91',8200868668,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-24 18:00:37','reception','2025-12-03 18:03:33'),(0,1188,'',0,'','BHAVNABEN H PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-24','Y','42Y',0,0,0,'F','','','+91',9723355740,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-24 18:06:51','','0000-00-00 00:00:00'),(0,1189,'',0,'','JIGNESH JAYENDRABHAI CHUDASAMA','','','401-CHANDAN BUILDING VASUNDHRA COMPLEX KAMLA BAG','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1987-07-12','N','38Y',38,0,0,'M','','','+91',9173168524,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 18:07:39','reception','2025-12-08 09:15:33'),(0,1190,'',0,'','ARVINDBHAI K SONEJI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-24','Y','75Y',0,0,0,'M','','','+91',7990528329,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-24 18:09:05','','0000-00-00 00:00:00'),(0,1191,'',0,'','NIMISHABEN VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-24','Y','35Y',0,0,0,'F','','','+91',8347433706,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 18:11:55','','0000-00-00 00:00:00'),(0,1192,'',0,'','KAVIBHAI RANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-10-24','Y','44Y',0,0,0,'M','','','+91',9725601418,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 18:14:12','janvi','2025-10-27 10:19:07'),(0,1193,'',0,'','ATULBHAI T UPADHYAY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-24','Y','62Y',0,0,0,'M','','','+91',9824225939,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-24 18:24:23','janvi','2025-11-25 10:30:32'),(0,1194,'',0,'','SUDHABEN ANJANI SHRIVASTAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-10-24','Y','71Y',71,0,0,'F','','','+91',9920593754,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','reception','2025-10-24 18:38:01','reception','2025-10-24 19:06:02'),(0,1195,'',0,'','HANSILBHAI K PATTNI','','','201-GOLDEN PELACE VIMAL NAGAR-2 UNIVRCITY ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-09-06','N','52Y',52,0,0,'M','','','+91',7574917711,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-24 18:46:23','janvi','2025-12-12 18:59:32'),(0,1196,'',0,'','BHARTIBEN J SIDDHPURA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-24','Y','59Y',59,0,0,'F','','','+91',9638890251,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 18:47:12','drashti','2025-10-24 18:52:33'),(0,1197,'',0,'','TIPUBEN M SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1941-10-24','Y','84Y',0,0,0,'F','','','+91',9427220635,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 18:51:03','','0000-00-00 00:00:00'),(0,1198,'',0,'','BHASHA VORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-24','Y','40Y',0,0,0,'F','','','+91',9054875853,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 19:05:09','','0000-00-00 00:00:00'),(0,1199,'',0,'','VIJAY RAKESH SHARMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-10-24','Y','29Y',0,0,0,'M','','','+91',8160069335,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-24 19:08:03','','0000-00-00 00:00:00'),(0,1200,'',0,'','HETALBEN SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-24','Y','42Y',0,0,0,'F','','','+91',9428890422,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-24 19:26:43','','0000-00-00 00:00:00'),(0,1201,'',0,'','AARYEN MORYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2023-10-24','Y','02Y0M',2,0,0,'M','','','+91',9173471916,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-24 19:47:46','shweta','2025-11-03 12:29:11'),(0,1202,'',0,'','HARSHIL PATANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-25','Y','53Y',0,0,0,'M','','','+91',9574911711,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-25 09:00:13','','0000-00-00 00:00:00'),(0,1203,'',0,'','RINABEN VORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-25','Y','40Y',0,0,0,'F','','','+91',8401215734,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-25 09:03:05','','0000-00-00 00:00:00'),(0,1204,'',0,'','SNEHLATABEN SHARMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-25','Y','75Y',0,0,0,'F','','','+91',9898293994,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-25 09:05:53','','0000-00-00 00:00:00'),(0,1205,'',0,'','RAHI RANIPA        ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2012-10-25','Y','13Y',0,0,0,'F','','','+91',9925074388,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-25 09:44:58','','0000-00-00 00:00:00'),(0,1206,'',0,'','DHARTIBEN PAIJA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1999-10-25','Y','26Y',0,0,0,'F','','','+91',7990579909,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-25 09:48:57','','0000-00-00 00:00:00'),(0,1207,'',0,'','RIDDHIBEN J GORIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1995-10-25','Y','30Y',30,0,0,'F','','','+91',9727332915,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-25 09:50:53','janvi','2025-12-09 11:59:20'),(0,1208,'',0,'','HANSABEN A SOSA','','','','',0,'SAVARKUNDALA','SAVARKUNDALA','GUJARAT','INDIA','1985-10-25','Y','40Y',0,0,0,'F','','','+91',6356843868,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-25 09:56:14','reception','2025-11-24 16:18:47'),(0,1209,'',0,'','HANSABEN K TARAPARA','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1960-10-25','Y','65Y',0,0,0,'F','','','+91',8141555138,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-25 10:01:04','reception','2025-12-01 13:30:15'),(0,1210,'',0,'','JYOTSHNABEN M BAVARVA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1975-10-25','Y','50Y',0,0,0,'F','','','+91',9925360503,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-25 10:02:44','reception','2025-11-26 10:38:12'),(0,1211,'',0,'','ASHVINBHAI MAHETA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-25','Y','70Y',0,0,0,'M','','','+91',8055030977,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-25 10:08:17','manshi','2025-11-01 10:37:01'),(0,1212,'',0,'','VIDHYADHARAMBHAI RAGHVAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-10-25','Y','74Y',0,0,0,'M','','','+91',9428890506,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-25 10:16:58','','0000-00-00 00:00:00'),(0,1213,'',0,'','HIRALBEN B MUNDHAVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-25','Y','35Y',0,0,0,'F','','','+91',9723320346,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-25 10:32:48','','0000-00-00 00:00:00'),(0,1214,'',0,'','KETANBHAI POPAT','','','','',0,'KESHOD','KESHOD','GUJARAT','INDIA','1977-10-25','Y','48Y',0,0,0,'M','','','+91',8200173578,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-25 10:44:48','','0000-00-00 00:00:00'),(0,1215,'',0,'','SOMUYA MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-10-25','Y','22Y',0,0,0,'M','','','+91',8849743441,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-25 10:59:37','janvi','2025-10-27 12:49:18'),(0,1216,'',0,'','DIVYANGBHAI NANAVATI','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1955-10-25','Y','70Y',0,0,0,'M','','','+91',9426167880,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-25 10:59:42','','0000-00-00 00:00:00'),(0,1217,'',0,'','NARMADABEN DHOKIYA','','','','',0,'SURAT','SURAT','GUJARAT','INDIA','1975-10-25','Y','50Y',0,0,0,'F','','','+91',9924756835,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-25 11:04:00','','0000-00-00 00:00:00'),(0,1218,'',0,'','ILABEN B VASJALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-25','Y','36Y',0,0,0,'F','','','+91',9974344348,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-25 11:05:28','reception','2025-10-30 18:14:33'),(0,1219,'',0,'','TULSIBEN CHETRE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-10-25','Y','33Y',0,0,0,'F','','','+91',9974327500,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','drashti','2025-10-25 11:08:54','','0000-00-00 00:00:00'),(0,1220,'',0,'','RAJDEEPBHAI PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-10-25','Y','28Y',0,0,0,'M','','','+91',9998206157,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-25 11:19:32','','0000-00-00 00:00:00'),(0,1221,'',0,'','JYOTSANABEN S MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-10-25','Y','77Y',0,0,0,'F','','','+91',9374128002,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-25 11:20:44','','0000-00-00 00:00:00'),(0,1222,'',0,'','ANISHABEN M KADIVAR','','','','',0,'MALASANA','MALASANA','GUJARAT','INDIA','1985-10-25','Y','40Y',0,0,0,'F','','','+91',9662716670,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-25 11:23:02','reception','2025-12-06 11:24:22'),(0,1223,'',0,'','MAYANKBHAI D BATAVIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-25','Y','53Y',0,0,0,'M','','','+91',9374128002,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-25 11:24:45','','0000-00-00 00:00:00'),(0,1224,'',0,'','HITESHBHAI A KARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-25','Y','56Y',0,0,0,'M','','','+91',9825209829,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-25 11:25:53','','0000-00-00 00:00:00'),(0,1225,'',0,'','JAYESHBHAI DESAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-25','Y','39Y',0,0,0,'M','','','+91',9998515313,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-25 11:27:01','reception','2025-11-28 16:32:04'),(0,1226,'',0,'','DR MILIT THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-25','Y','40Y',40,0,0,'M','','','+91',9909990363,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-25 11:29:04','janvi','2025-10-25 11:29:53'),(0,1227,'',0,'','DRASHTIBA PARMAR','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','2001-10-25','Y','24Y',0,0,0,'F','','','+91',9879500795,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-25 11:40:48','drashti','2025-11-24 12:07:28'),(0,1228,'',0,'','SHITALBEN S KHACHARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-25','Y','40Y',0,0,0,'F','','','+91',9898100002,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-25 11:43:07','reception','2025-11-13 13:26:20'),(0,1229,'',0,'','CHAMPAKBHAI T LALSETA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-10-25','Y','69Y',0,0,0,'M','','','+91',9824235060,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-25 11:43:20','reception','2025-11-19 12:12:55'),(0,1230,'',0,'','VARSHABEN P ADODARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-25','Y','68Y',0,0,0,'F','','','+91',8200553189,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-25 11:45:06','reception','2025-11-04 12:14:34'),(0,1231,'',0,'','CHANDRA KISHORE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-25','Y','56Y',0,0,0,'M','','','+91',9466200701,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-25 11:45:56','','0000-00-00 00:00:00'),(0,1232,'',0,'','VIPULABEN P PUROHIT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-25','Y','50Y',0,0,0,'F','','','+91',9558213240,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-25 11:52:17','','0000-00-00 00:00:00'),(0,1233,'',0,'','DHARABHAI D HAN','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1964-10-25','Y','61Y',0,0,0,'M','','','+91',8000677387,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-25 12:02:05','reception','2025-11-24 11:36:22'),(0,1234,'',0,'','KIRANBEN A PITHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-10-25','Y','29Y',0,0,0,'F','','','+91',9737754654,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-25 12:24:28','','0000-00-00 00:00:00'),(0,1235,'',0,'','BHARATBHAI PATEL','','','','',0,'BOTAD','BOTAD','GUJARAT','INDIA','1981-10-25','Y','44Y',0,0,0,'M','','','+91',9979238440,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-25 12:27:22','','0000-00-00 00:00:00'),(0,1236,'',0,'','JASWANTSINH RAJPUROHIT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-25','Y','45Y',0,0,0,'M','','','+91',9998188469,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-25 12:35:10','','0000-00-00 00:00:00'),(0,1237,'',0,'','MINABEN K BHALANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-10-25','Y','57Y',0,0,0,'F','','','+91',9824336332,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-25 12:54:21','','0000-00-00 00:00:00'),(0,1238,'',0,'','ASFAK KHATRI','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1981-10-25','Y','44Y',0,0,0,'M','','','+91',9773086924,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-25 13:08:49','','0000-00-00 00:00:00'),(0,1239,'',0,'','KESHVIBEN TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-10-25','Y','34Y',0,0,0,'F','','','+91',9925055426,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-25 13:16:37','','0000-00-00 00:00:00'),(0,1240,'',0,'','RUTVIBEN H VADHER','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-25','Y','36Y',0,0,0,'F','','','+91',9898789812,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-25 13:41:04','','0000-00-00 00:00:00'),(0,1241,'',0,'','JETHABHAI B KESHVALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1942-10-25','Y','83Y',0,0,0,'M','','','+91',9099375402,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-25 13:50:32','','0000-00-00 00:00:00'),(0,1242,'',0,'','GORDHANBHAI KACHHAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-25','Y','70Y',0,0,0,'M','','','+91',9998003357,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-25 16:37:51','janvi','2025-11-06 17:02:07'),(0,1243,'',0,'','ROZINABEN MAKHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-25','Y','50Y',0,0,0,'F','','','+91',9727635435,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-25 17:40:17','','0000-00-00 00:00:00'),(0,1244,'',0,'','SAPNABEN SHINDHV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-25','Y','25Y',25,0,0,'F','','','+91',7990119027,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-25 17:44:31','drashti','2025-10-25 17:46:45'),(0,1245,'',0,'','PRITMANI NARAYANBHAI MULCHANDBHAI','','','PRITAM, 3-HANSRAJ NAGAR, ','OPP TULSHI BUNGLOW,',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-08-15','N','50Y',0,0,0,'M','','','+91',7016169615,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-25 17:52:45','urvashi','2025-11-19 18:20:07'),(0,1246,'',0,'','SARIKABEN JOGIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-10-25','Y','49Y',0,0,0,'F','','','+91',9913465324,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-25 18:07:29','manshi','2025-11-18 18:28:07'),(0,1247,'',0,'','BHUPATBHAI SATANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-25','Y','68Y',0,0,0,'M','','','+91',9099938380,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-25 18:36:50','','0000-00-00 00:00:00'),(0,1248,'',0,'','HEENABEN ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-25','Y','38Y',0,0,0,'F','','','+91',8153951321,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-25 18:41:06','','0000-00-00 00:00:00'),(0,1249,'',0,'','REKHABEN GUPTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-25','Y','50Y',0,0,0,'F','','','+91',8000054595,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-25 18:49:55','','0000-00-00 00:00:00'),(0,1250,'',0,'','DIVYABEN JOSHI','','','','',0,'','','GUJARAT','INDIA','1977-10-25','Y','48Y',0,0,0,'F','','','+91',8469012864,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-25 18:54:52','','0000-00-00 00:00:00'),(0,1251,'',0,'','ASHA DEVI MOCHI','','','','',0,'BANGALORE','BANGALORE','GUJARAT','INDIA','1971-10-25','Y','54Y',0,0,0,'F','','','+91',9590179917,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-25 19:05:32','','0000-00-00 00:00:00'),(0,1252,'',0,'','SONAM KHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-10-26','Y','28Y',0,0,0,'F','','','+91',9723161850,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-26 10:03:52','','0000-00-00 00:00:00'),(0,1253,'',0,'','CHETANKUMAR THAKRAR','','','C401 ADITYA HEIGHTS NEAR GOPAL CHOWK SADHUVASVANI ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-26','N','64Y',0,0,0,'M','','','+91',9925284314,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-26 10:43:28','drashti','2025-11-03 11:08:14'),(0,1254,'',0,'','HARSHABA JORAVARSINH GOHIL','','','','',0,'','','GUJARAT','INDIA','1970-10-26','Y','55Y',0,0,0,'F','','','+91',9638517353,'+91',7048195594,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-26 11:27:14','','0000-00-00 00:00:00'),(0,1255,'',0,'','VARSHABEN D DODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-10-27','Y','44Y',0,0,0,'F','','','+91',9723241777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 08:49:33','','0000-00-00 00:00:00'),(0,1256,'',0,'','MINIBEN MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-27','Y','40Y',0,0,0,'F','','','+91',9427751261,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 08:54:54','','0000-00-00 00:00:00'),(0,1257,'',0,'','LAKHMANBHAI DHOLAKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-27','Y','42Y',0,0,0,'M','','','+91',9296001001,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 09:02:29','','0000-00-00 00:00:00'),(0,1258,'',0,'','HITESHBHAI PANBHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-10-27','Y','43Y',0,0,0,'M','','','+91',9624098231,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 09:07:36','','0000-00-00 00:00:00'),(0,1259,'',0,'','SEJALBEN K BHALADA','','','','',0,'SURAT','SURAT','GUJARAT','INDIA','1986-10-27','Y','39Y',0,0,0,'F','','','+91',7567544012,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 09:16:55','','0000-00-00 00:00:00'),(0,1260,'',0,'','GHUSABHAI G BHALALA','','','','',0,'KHAREDI','KHAREDI','GUJARAT','INDIA','1958-10-27','Y','67Y',0,0,0,'M','','','+91',8469180076,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 09:18:25','','0000-00-00 00:00:00'),(0,1261,'',0,'','HARUBHAI DAMOR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-27','Y','35Y',0,0,0,'M','','','+91',6352315302,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 09:18:53','','0000-00-00 00:00:00'),(0,1262,'',0,'','SONALBEN PALAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-10-27','Y','41Y',0,0,0,'F','','','+91',9558815411,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 09:28:44','','0000-00-00 00:00:00'),(0,1263,'',0,'','RAJABHAI BARAD','','','','',0,'SOMNATH','SOMNATH','GUJARAT','INDIA','1965-10-27','Y','60Y',0,0,0,'M','','','+91',6354587773,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 09:39:54','','0000-00-00 00:00:00'),(0,1264,'',0,'','BHAVNABEN D NAGLANI','','','PIPARDI VICHHIYA','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-06-01','N','42Y',0,0,0,'F','','','+91',9537977234,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 10:02:05','janvi','2025-11-11 10:54:58'),(0,1265,'',0,'','UMESHBHAI S BHOJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-27','Y','42Y',0,0,0,'M','','','+91',9725313098,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-27 10:11:01','manshi','2025-11-28 11:20:47'),(0,1266,'',0,'','BHAVISHABEN B VIRADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-27','Y','36Y',0,0,0,'F','','','+91',9727626688,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-27 10:18:21','','0000-00-00 00:00:00'),(0,1267,'',0,'','RAMIBEN P VARU','','','','',0,'KESHOD','KESHOD','GUJARAT','INDIA','1973-10-27','Y','52Y',0,0,0,'F','','','+91',9099038842,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 10:20:43','reception','2025-12-10 12:08:39'),(0,1268,'',0,'','HEET C SAVALIYA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','2007-10-27','Y','18Y',0,0,0,'M','','','+91',7041702000,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 10:20:47','reception','2025-12-15 10:06:22'),(0,1269,'',0,'','VIPULBHAI ZALAVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-27','Y','52Y',0,0,0,'M','','','+91',8128922546,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 10:22:21','reception','2025-11-11 11:41:34'),(0,1270,'',0,'','JYOTIBEN J PARMAR','','','','',0,'BOTAD','BOTAD','GUJARAT','INDIA','1987-10-27','Y','38Y',0,0,0,'F','','','+91',9824651387,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 10:23:32','','0000-00-00 00:00:00'),(0,1271,'',0,'','LILABEN  SIDDHPARA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1965-10-27','Y','60Y',0,0,0,'F','','','+91',7990286062,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 10:29:21','drashti','2025-12-01 10:45:07'),(0,1272,'',0,'','SHAILESHBHAI K CHAUHAN','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1975-10-27','Y','50Y',0,0,0,'M','','','+91',9527502085,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 10:32:04','','0000-00-00 00:00:00'),(0,1273,'',0,'','JAGRUTIBEN DAVE','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1970-10-27','Y','55Y',0,0,0,'F','','','+91',9638386670,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-27 10:35:38','','0000-00-00 00:00:00'),(0,1274,'',0,'','KHIMA SONI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2015-10-27','Y','10Y0M0D',0,0,0,'F','','','+91',9548648870,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 10:38:25','','0000-00-00 00:00:00'),(0,1275,'',0,'','NAZMABEN KADIVAR','','','','',0,'WAKANER','WAKANER','GUJARAT','INDIA','1978-10-27','Y','47Y',0,0,0,'F','','','+91',9998888635,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 10:45:08','urvashi','2025-11-21 11:57:21'),(0,1276,'',0,'','NITABEN DATTA','','','B-2 203 SHILPEN ONYX GANGOTRY PARK MAIN ROAD ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-10-27','Y','78Y',78,0,0,'F','','','+91',9726371737,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 10:47:33','drashti','2025-12-11 13:10:44'),(0,1277,'',0,'','SMIT ASHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-10-27','Y','20Y',0,0,0,'M','','','+91',8200717135,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 10:50:18','janvi','2025-10-31 11:24:02'),(0,1278,'',0,'','DILIPBHAI PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-27','Y','62Y',0,0,0,'M','','','+91',9898998234,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 10:50:31','','0000-00-00 00:00:00'),(0,1279,'',0,'','DINESHBHAI V SANKDECHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-10-27','Y','69Y',0,0,0,'M','','','+91',9879221630,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 10:53:19','drashti','2025-12-01 18:28:00'),(0,1280,'',0,'','MERUNBEN A SOMANI','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1975-10-27','Y','50Y',0,0,0,'F','','','+91',9913899143,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 10:53:27','reception','2025-11-25 10:03:52'),(0,1281,'',0,'','PARTHRAJSINH ZALA','','','','',0,'JUNI KALAVDI','JUNI KALAVDI','GUJARAT','INDIA','2011-10-27','Y','14Y',0,0,0,'M','','','+91',9979655845,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 10:55:52','reception','2025-11-26 11:37:36'),(0,1282,'',0,'','HARSHADBHAI BHOGILAL NAGEVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-27','Y','59Y',0,0,0,'M','','','+91',9913242899,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 10:57:53','drashti','2025-12-16 10:48:11'),(0,1283,'',0,'','JAGRUTIBEN JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-27','Y','56Y',0,0,0,'F','','','+91',9426401995,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 10:58:04','reception','2025-10-31 09:53:19'),(0,1284,'',0,'','RAMJIBHAI D  PUROHIT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1942-10-27','Y','83Y',0,0,0,'M','','','+91',9898605642,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 11:01:14','drashti','2025-11-20 09:25:48'),(0,1285,'',0,'','DHIRAJBHAI ROJMALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-27','Y','53Y',0,0,0,'M','','','+91',9898540692,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 11:02:11','','0000-00-00 00:00:00'),(0,1286,'',0,'','DR DARSHANA THUMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-27','Y','36Y',36,0,0,'F','','','+91',8980237562,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 11:04:13','reception','2025-11-06 10:53:39'),(0,1287,'',0,'','EKTABEN CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-10-27','Y','37Y',0,0,0,'F','','','+91',9723894391,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 11:06:07','','0000-00-00 00:00:00'),(0,1288,'',0,'','NIRMALABEN GORASIYA','','','','',0,'MOVRI','MOVRI','GUJARAT','INDIA','1965-10-27','Y','60Y',0,0,0,'F','','','+91',9909947575,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 11:09:18','reception','2025-11-11 11:13:45'),(0,1289,'',0,'','MEHULBHAI JETHVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-27','Y','36Y',0,0,0,'M','','','+91',9173702225,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 11:13:54','reception','2025-12-06 13:16:38'),(0,1290,'',0,'','ANAJANBEN GHIYAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-10-27','Y','27Y',0,0,0,'F','','','+91',7874578343,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 11:17:26','','0000-00-00 00:00:00'),(0,1291,'',0,'','KALPESHBHAI M SITAPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-10-27','Y','24Y',0,0,0,'M','','','+91',9724456590,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 11:20:12','','0000-00-00 00:00:00'),(0,1292,'',0,'','JYOTSANABEN PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-27','Y','39Y',0,0,0,'F','','','+91',9925819515,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 11:22:53','janvi','2025-11-26 18:54:51'),(0,1293,'',0,'','RIDHAMBHAI M ARVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-10-27','Y','17Y',0,0,0,'M','','','+91',8238366344,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 11:25:02','','0000-00-00 00:00:00'),(0,1294,'',0,'','ANJANABEN K RANGANI','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1990-10-27','Y','35Y',0,0,0,'F','','','+91',8511151119,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 11:27:22','reception','2025-12-13 12:25:38'),(0,1295,'',0,'','JAGDISHBHAI DEVJIBHAI VAGHERA ','','','JAYBHIM NAGAR STREET NO-8 NANAMAVA MAIN ROAD ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-05-22','N','41Y',0,0,0,'M','','','+91',9725783546,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-27 11:28:57','janvi','2025-11-10 18:26:48'),(0,1296,'',0,'','RAMESHBHAI H DHRANGIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-27','Y','50Y',0,0,0,'M','','','+91',8849607093,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 11:35:00','janvi','2025-11-01 11:37:02'),(0,1297,'',0,'','PARULBEN M PADHIYAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-27','Y','50Y',50,0,0,'F','','','+91',9979706445,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 11:36:43','urvashi','2025-12-06 12:24:03'),(0,1298,'',0,'','MUKESHBHAI C MUNGRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-10-27','Y','43Y',43,0,0,'M','','','+91',9825918537,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 11:38:24','reception','2025-12-09 18:35:02'),(0,1299,'',0,'','SHERBANUBEN A MIRZA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1984-10-27','Y','41Y',0,0,0,'F','','','+91',9173373742,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 11:41:30','drashti','2025-11-28 11:23:06'),(0,1300,'',0,'','JAGDISHBHAI D VAGHERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-10-27','Y','41Y',0,0,0,'M','','','+91',9725783546,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 11:41:58','','0000-00-00 00:00:00'),(0,1301,'',0,'','NIRMALABEN M MAY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-10-27','Y','66Y',0,0,0,'F','','','+91',9574538332,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 11:48:14','','0000-00-00 00:00:00'),(0,1302,'',0,'','DHARMISHTHABEN S PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1944-10-27','Y','81Y',0,0,0,'F','','','+91',8511790749,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 11:49:31','drashti','2025-12-10 11:32:31'),(0,1303,'',0,'','BAKULABEN DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-10-27','Y','69Y',0,0,0,'F','','','+91',8401159929,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 11:50:10','','0000-00-00 00:00:00'),(0,1304,'',0,'','RASIKBHAI SANCHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-27','Y','60Y',0,0,0,'M','','','+91',7405984627,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-27 11:51:09','','0000-00-00 00:00:00'),(0,1305,'',0,'','NAYNABEN D PANERI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-27','Y','68Y',0,0,0,'F','','','+91',9426479687,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 11:57:05','','0000-00-00 00:00:00'),(0,1306,'',0,'','CHANDRIKABEN SHETH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-27','Y','75Y',0,0,0,'F','','','+91',9427255260,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 12:01:18','','0000-00-00 00:00:00'),(0,1307,'',0,'','HEMABEN R MALVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-27','Y','42Y',0,0,0,'F','','','+91',8000656118,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 12:09:02','','0000-00-00 00:00:00'),(0,1308,'',0,'','SAVANTRIBEN DANGI','','','','',0,'DIU','DIU','GUJARAT','INDIA','1993-10-27','Y','32Y',0,0,0,'F','','','+91',9714090076,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-27 12:09:55','','0000-00-00 00:00:00'),(0,1309,'',0,'','DR SUNNY JANI','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1986-10-27','Y','39Y',0,0,0,'M','','','+91',8511158471,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 12:12:37','','0000-00-00 00:00:00'),(0,1310,'',0,'','ALABHAI PARBTANI','','','','',0,'KUVADVA','KUVADVA','GUJARAT','INDIA','1965-10-27','Y','60Y',0,0,0,'M','','','+91',6352365056,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 12:19:53','','0000-00-00 00:00:00'),(0,1311,'',0,'','RANJANBEN M INDRORIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-10-27','Y','67Y',0,0,0,'F','','','+91',9979467975,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 12:31:24','','0000-00-00 00:00:00'),(0,1312,'',0,'','VINABEN P CHATRABHUJ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-27','Y','32Y',0,0,0,'F','','','+91',7698080084,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-27 12:36:21','drashti','2025-11-11 11:42:03'),(0,1313,'',0,'','LABHUBEN J DHRUV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1933-10-27','Y','92Y',92,0,0,'F','','','+91',9428035809,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 12:52:02','janvi','2025-12-01 18:44:05'),(0,1314,'',0,'','KARSHANBHAI T GOHEL','','','','',0,'KUTCH','KUTCH','GUJARAT','INDIA','1960-10-27','Y','65Y',0,0,0,'M','','','+91',9825385323,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 12:54:05','','0000-00-00 00:00:00'),(0,1315,'',0,'','ALPESH PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-27','Y','35Y',0,0,0,'M','','','+91',9904594472,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 13:07:51','janvi','2025-11-10 18:51:07'),(0,1316,'',0,'','VANSHI VIRAMGAMA','','','','',0,'JAMJODHPUR','JAMJODHPUR','GUJARAT','INDIA','2010-10-27','Y','15Y',0,0,0,'F','','','+91',9909122999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 13:08:48','reception','2025-12-19 14:26:39'),(0,1317,'',0,'','LALITBHAI N JANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-27','Y','64Y',0,0,0,'M','','','+91',9824290449,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 13:21:37','reception','2025-10-27 17:14:18'),(0,1318,'',0,'','JAYESHBHAI J KOTECHA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1973-10-27','Y','52Y',0,0,0,'M','','','+91',9601958563,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-27 13:23:08','','0000-00-00 00:00:00'),(0,1319,'',0,'','HANSHABEN B MAKWANA','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1984-10-27','Y','41Y',0,0,0,'F','','','+91',9725781745,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 13:55:13','drashti','2025-12-13 11:18:46'),(0,1320,'',0,'',' KURJIBHAI KHAPRA','','','','',0,'DEVDA','DEVDA','GUJARAT','INDIA','1960-10-27','Y','65Y',0,0,0,'M','','','+91',9824656257,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-27 16:22:22','reception','2025-11-24 16:38:14'),(0,1321,'',0,'','KAJALBEN KHAPRA','','','','',0,'DEVDA','DEVDA','GUJARAT','INDIA','1987-10-27','Y','38Y',38,0,0,'F','','','+91',9824656257,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-27 16:23:53','drashti','2025-10-27 16:30:08'),(0,1322,'',0,'','SANTOSHBHAI SONI','','','','',0,'HALVAD','HALVAD','GUJARAT','INDIA','1975-10-27','Y','50Y',50,0,0,'M','','','+91',9687088165,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 16:35:37','reception','2025-10-27 16:47:38'),(0,1323,'',0,'','SNEHALBEN CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-10-27','Y','26Y',0,0,0,'F','','','+91',6357304219,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 16:45:56','reception','2025-11-03 10:56:31'),(0,1324,'',0,'','RAMESHBHAI V JETHLOJA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1973-10-27','Y','52Y',0,0,0,'M','','','+91',7990756733,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 17:21:08','reception','2025-11-06 16:59:37'),(0,1325,'',0,'','ANITABEN R  GAJERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-27','Y','48Y',0,0,0,'F','','','+91',9727042444,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 17:22:29','reception','2025-12-11 16:37:56'),(0,1326,'',0,'','NARENDRABHAI V DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-10-27','Y','74Y',74,0,0,'M','','','+91',9428701487,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 17:34:05','reception','2025-11-20 12:30:16'),(0,1327,'',0,'','RAMRATIBEN VERMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-27','Y','52Y',52,0,0,'F','','','+91',9426249082,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-27 17:42:13','reception','2025-12-22 09:18:15'),(0,1328,'',0,'','HASUMATIBEN DHOLAKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-27','Y','65Y',0,0,0,'F','','','+91',9979437752,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-27 17:44:09','','0000-00-00 00:00:00'),(0,1329,'',0,'','CHAMPABEN  DHAMSANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-27','Y','62Y',0,0,0,'F','','','+91',9900298789,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 17:44:37','','0000-00-00 00:00:00'),(0,1330,'',0,'','BHUMIBEN G DHAMSANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-27','Y','42Y',0,0,0,'F','','','+91',9900298789,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 17:45:45','','0000-00-00 00:00:00'),(0,1331,'',0,'','NEETABEN PADHIYAR','','','','',0,'LODHIKA','LODHIKA','GUJARAT','INDIA','1977-10-27','Y','48Y',0,0,0,'M','','','+91',9824993168,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 17:57:28','','0000-00-00 00:00:00'),(0,1332,'',0,'','MANHARBA JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-10-27','Y','57Y',0,0,0,'F','','','+91',9638101206,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 18:00:26','janvi','2025-11-05 10:27:59'),(0,1333,'',0,'','BHARATBHAI MUCHHADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-27','Y','42Y',0,0,0,'M','','','+91',9723928419,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 18:09:07','','0000-00-00 00:00:00'),(0,1334,'',0,'','JITUBHAI A DEEP','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-10-27','Y','22Y',0,0,0,'M','','','+91',8866415869,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 18:09:14','','0000-00-00 00:00:00'),(0,1335,'',0,'','PREMBHAI RANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-10-27','Y','33Y',0,0,0,'M','','','+91',6353729134,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 18:20:19','','0000-00-00 00:00:00'),(0,1336,'',0,'','BHARTIBEN S PITHADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-27','Y','55Y',0,0,0,'F','','','+91',8460209107,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 18:22:09','','0000-00-00 00:00:00'),(0,1337,'',0,'','HETALBEN R MUNDIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-27','Y','39Y',0,0,0,'F','','','+91',9879423511,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 18:24:06','reception','2025-11-26 16:34:10'),(0,1338,'',0,'','BHAVNABEN R KALYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-10-27','Y','63Y',0,0,0,'F','','','+91',9427083049,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 18:27:47','reception','2025-11-03 11:18:02'),(0,1339,'',0,'','ANITABEN JANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-10-27','Y','57Y',0,0,0,'F','','','+91',9879110704,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 18:28:47','','0000-00-00 00:00:00'),(0,1340,'',0,'','LILABEN B MAKWANA','','','','',0,'DHORAJI','DHORAJI','GUJARAT','INDIA','1954-10-27','Y','71Y',0,0,0,'F','','','+91',9516291199,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 18:31:12','drashti','2025-12-18 18:44:15'),(0,1341,'',0,'','JOSHNABEN A KHERADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-27','Y','52Y',0,0,0,'F','','','+91',6353903257,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-27 18:32:38','manshi','2025-11-04 18:19:14'),(0,1342,'',0,'','HEMABEN R DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-27','Y','56Y',0,0,0,'F','','','+91',9824427099,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 18:36:21','','0000-00-00 00:00:00'),(0,1343,'',0,'','KRUTARTH R POTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-10-27','Y','21Y',0,0,0,'M','','','+91',9427158728,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 18:37:00','janvi','2025-10-31 18:11:28'),(0,1344,'',0,'','DIPAKBHAI JADAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-10-27','Y','54Y',0,0,0,'M','','','+91',9558447443,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 18:40:15','drashti','2025-12-15 18:19:01'),(0,1345,'',0,'','ANILBHAI UNADKAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-27','Y','64Y',64,0,0,'M','','','+91',9978917451,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 18:40:37','reception','2025-11-07 18:44:22'),(0,1346,'',0,'','DABHI JAGUBHAI PAMABHAI','','','SHAH NAGAR STREET NO-2 DALWADI CHOWK GANDHIGRAM ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-27','Y','55Y',0,0,0,'M','','','+91',9998544738,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-27 18:44:51','janvi','2025-11-19 12:59:34'),(0,1347,'',0,'','ALLAUDDIN SAIYYAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-10-27','Y','61Y',0,0,0,'M','','','+91',9822278148,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','reception','2025-10-27 18:47:12','','0000-00-00 00:00:00'),(0,1348,'',0,'','JASUBEN CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-27','Y','55Y',0,0,0,'F','','','+91',6353674878,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 18:50:41','','0000-00-00 00:00:00'),(0,1349,'',0,'','BEENABEN BOTANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-10-27','Y','80Y',0,0,0,'F','','','+91',7567689689,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 18:51:40','reception','2025-11-08 11:30:13'),(0,1350,'',0,'','JANVIBEN PIPALVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-10-27','Y','44Y',0,0,0,'F','','','+91',9879695085,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-27 18:51:46','','0000-00-00 00:00:00'),(0,1351,'',0,'','CHANDABEN THAVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-27','Y','65Y',0,0,0,'F','','','+91',9898845753,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 18:57:08','reception','2025-12-09 18:50:30'),(0,1352,'',0,'','PRAKASHBHAI POOJARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-27','Y','62Y',0,0,0,'M','','','+91',9426480011,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-27 19:04:04','','0000-00-00 00:00:00'),(0,1353,'',0,'','JAYBHAI  MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-10-27','Y','46Y',0,0,0,'M','','','+91',9825794950,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 19:05:02','reception','2025-11-20 19:16:50'),(0,1354,'',0,'','DIVYABEN R PRAJAPATI','','','','',0,'AHEMDABAD','AHEMDABAD','GUJARAT','INDIA','1989-10-27','Y','36Y',0,0,0,'F','','','+91',9428201212,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 19:13:39','','0000-00-00 00:00:00'),(0,1355,'',0,'','PRADIPKUMAR V. LOTIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-10-27','Y','69Y',0,0,0,'M','','','+91',9824949973,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 19:20:30','','0000-00-00 00:00:00'),(0,1356,'',0,'','SONALBEN KHILERIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-27','Y','53Y',0,0,0,'F','','','+91',9998815753,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-27 19:31:07','reception','2025-12-23 12:55:58'),(0,1357,'',0,'','HASANBHAI G KARIYANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-10-27','Y','72Y',0,0,0,'M','','','+91',8200178334,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-27 19:42:17','','0000-00-00 00:00:00'),(0,1358,'',0,'','KULSHAMBEN HASANBHAI KARIYANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-10-27','Y','69Y',0,0,0,'F','','','+91',8200178334,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-27 19:45:23','','0000-00-00 00:00:00'),(0,1359,'',0,'','DARSHNBHAI SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-10-27','Y','31Y',0,0,0,'M','','','+91',8238384983,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-27 19:48:26','','0000-00-00 00:00:00'),(0,1360,'',0,'','VIRBALABEN H NAYAK','','','RAVI PARK, BLOCK NO -138, ','OPP LOVE TEMPLE, KALAVAD ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1938-10-27','Y','87Y',0,0,0,'F','','','+91',9879462636,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-27 20:06:14','vishal','2025-10-27 20:46:45'),(0,1361,'',0,'','VRUNDA M RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-10-27','Y','37Y',0,0,0,'F','','','+91',7698027933,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-27 20:10:19','drashti','2025-11-11 18:15:48'),(0,1362,'',0,'','KAJALBA S GOHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-10-27','Y','29Y',0,0,0,'F','','','+91',8141048692,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-27 20:39:49','','0000-00-00 00:00:00'),(0,1363,'',0,'','BRIJESH B VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-28','Y','48Y',0,0,0,'M','','','+91',9825316302,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-28 09:07:38','drashti','2025-11-28 19:04:16'),(0,1364,'',0,'','KANCHANBEN H NANDANIYA','','','','',0,'HATINA MALIYA','HATINA MALIYA','GUJARAT','INDIA','1990-10-28','Y','35Y',0,0,0,'F','','','+91',9879756119,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 09:29:30','','0000-00-00 00:00:00'),(0,1365,'',0,'','DHARMESHBHAI RATHOD','','','','',0,'MOTA DADVA','MOTA DADVA','GUJARAT','INDIA','1998-10-28','Y','27Y',0,0,0,'M','','','+91',7733998865,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 09:40:57','','0000-00-00 00:00:00'),(0,1366,'',0,'','DIMPLBEN C TALPARA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1985-10-28','Y','40Y',40,0,0,'F','','','+91',9879777020,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 09:44:39','reception','2025-11-19 17:04:14'),(0,1367,'',0,'','SANJAYBHAI DONGA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-28','Y','48Y',0,0,0,'M','','','+91',9913552750,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 09:49:43','','0000-00-00 00:00:00'),(0,1368,'',0,'','NAINABEN DHADUK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-28','Y','75Y',0,0,0,'F','','','+91',9726676629,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 10:04:40','','0000-00-00 00:00:00'),(0,1369,'',0,'','KEVALBHAI H TALSHANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-28','Y','25Y',0,0,0,'M','','','+91',9913340205,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 10:07:47','priyanshi','2025-12-19 18:06:59'),(0,1370,'',0,'','RANJANBEN D MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-28','Y','51Y',0,0,0,'F','','','+91',9712107567,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-28 10:08:53','','0000-00-00 00:00:00'),(0,1371,'',0,'','ARSHIBHAI K DODIYA','','','','',0,'SOMNATH','SOMNATH','GUJARAT','INDIA','1962-10-28','Y','63Y',0,0,0,'M','','','+91',8469269967,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-28 10:21:15','','0000-00-00 00:00:00'),(0,1372,'',0,'','CHAVDA JIYANSH MAYURBHAI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2020-10-28','Y','05Y0M',5,0,0,'M','','','+91',7984187753,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 10:26:58','reception','2025-11-06 14:00:16'),(0,1373,'',0,'','PRAKASHBHAI R CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-28','Y','55Y',0,0,0,'M','','','+91',9979304050,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-28 10:30:13','','0000-00-00 00:00:00'),(0,1374,'',0,'','NIRMALABEN N PITHVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-28','Y','70Y',0,0,0,'F','','','+91',9879265580,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-28 10:44:09','janvi','2025-11-24 11:23:06'),(0,1375,'',0,'','HASMUKHBHAI MAKDIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-28','Y','68Y',0,0,0,'M','','','+91',9427738175,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 10:48:10','janvi','2025-12-02 10:08:39'),(0,1376,'',0,'','ANOPSINH S JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-28','Y','68Y',0,0,0,'M','','','+91',9427214898,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 10:57:13','','0000-00-00 00:00:00'),(0,1377,'',0,'','DHARTIBEN P JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-28','Y','36Y',0,0,0,'F','','','+91',8460504990,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-28 10:57:28','','0000-00-00 00:00:00'),(0,1378,'',0,'','HARESHBHAI D BABARIYA','','','','',0,'UPLETA','UPLETA','GUJARAT','INDIA','1982-10-28','Y','43Y',0,0,0,'M','','','+91',9722839889,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 11:01:39','','0000-00-00 00:00:00'),(0,1379,'',0,'','JASUBEN V DONGA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-28','Y','64Y',0,0,0,'F','','','+91',9725631485,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 11:04:49','','0000-00-00 00:00:00'),(0,1380,'',0,'','JENTIBHAI B KAVAR','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1974-10-28','Y','51Y',0,0,0,'M','','','+91',9979312762,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 11:11:55','','0000-00-00 00:00:00'),(0,1381,'',0,'','HIMNISH JANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-10-28','Y','18Y',0,0,0,'M','','','+91',9998945001,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-28 11:15:19','manshi','2025-11-04 18:47:31'),(0,1382,'',0,'','RADHABEN R THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-28','Y','32Y',0,0,0,'F','','','+91',7069022214,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 11:22:40','','0000-00-00 00:00:00'),(0,1383,'',0,'','KHYATIBEN PAREKH','','','KHATRIVAD KHELAVANAND STREET NEAR JUMA MASJID-65','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-03-18','N','32Y',0,0,0,'F','','','+91',9574402545,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-28 11:26:30','janvi','2025-11-28 11:45:40'),(0,1384,'',0,'','RADHABEN R THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-28','Y','32Y',0,0,0,'F','','','+91',7069022214,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 11:26:39','','0000-00-00 00:00:00'),(0,1385,'',0,'','PARTHBHAI POPAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-10-28','Y','27Y',0,0,0,'M','','','+91',7778991999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 11:28:52','','0000-00-00 00:00:00'),(0,1386,'',0,'','GIRISHBHAI P PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-28','Y','62Y',0,0,0,'M','','','+91',9427732046,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 11:29:41','reception','2025-12-02 10:48:11'),(0,1387,'',0,'','VAJUBEN CHAVDA','','','','',0,'SOMNATH','SOMNATH','GUJARAT','INDIA','1950-10-28','Y','75Y',0,0,0,'F','','','+91',9328799150,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 11:31:08','','0000-00-00 00:00:00'),(0,1388,'',0,'','KUSUMBEN S BHINDORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-10-28','Y','78Y',0,0,0,'F','','','+91',9427701608,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 11:32:06','drashti','2025-11-07 11:19:44'),(0,1389,'',0,'','RIYAZ R DAJIYANI','','','','',0,'MALIYA HATINA','MALIYA HATINA','GUJARAT','INDIA','1993-10-28','Y','32Y',0,0,0,'M','','','+91',9724013995,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 11:35:50','','0000-00-00 00:00:00'),(0,1390,'',0,'','BACHUBHAI A KALOLA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1955-10-28','Y','70Y',0,0,0,'M','','','+91',8460680650,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 11:37:55','','0000-00-00 00:00:00'),(0,1391,'',0,'','LAXMIBEN A CHAUHAN','','','','',0,'SAPAR','SAPAR','GUJARAT','INDIA','1970-10-28','Y','55Y',0,0,0,'F','','','+91',8866228321,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 11:39:58','','0000-00-00 00:00:00'),(0,1392,'',0,'','ASHOKBHAI DAYABHAI SINGAD','','','','',0,'UNA','UNA','GUJARAT','INDIA','1975-10-28','Y','50Y',0,0,0,'M','','','+91',7016247020,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 11:41:36','','0000-00-00 00:00:00'),(0,1393,'',0,'','AJAYBHAI B PATEL','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1990-10-28','Y','35Y',0,0,0,'M','','','+91',9909930710,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 11:50:24','reception','2025-11-17 11:25:52'),(0,1394,'',0,'','JIGNASHABA L JADEJA','','','','',0,'TODA','TODA','GUJARAT','INDIA','1997-10-28','Y','28Y',0,0,0,'F','','','+91',8128321111,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-28 11:51:20','','0000-00-00 00:00:00'),(0,1395,'',0,'','SUNANDABEN K DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-28','Y','68Y',0,0,0,'F','','','+91',9898008315,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 11:53:13','','0000-00-00 00:00:00'),(0,1396,'',0,'','ANITABEN N NESADIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1979-10-28','Y','46Y',0,0,0,'F','','','+91',9173402977,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 11:58:47','reception','2025-11-14 11:56:27'),(0,1397,'',0,'','NISHABEN  J VASANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-28','Y','40Y',0,0,0,'F','','','+91',9409333773,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 12:14:21','','0000-00-00 00:00:00'),(0,1398,'',0,'','NIRALIBEN DEVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-28','Y','32Y',0,0,0,'F','','','+91',9265790416,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 12:17:36','janvi','2025-11-03 19:22:00'),(0,1399,'',0,'','DHARINIBEN PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-28','Y','48Y',0,0,0,'F','','','+91',9662547724,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-28 12:21:56','','0000-00-00 00:00:00'),(0,1400,'',0,'','BHAVISHABEN GOSWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-10-28','Y','27Y',0,0,0,'F','','','+91',8320940912,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 12:26:07','','0000-00-00 00:00:00'),(0,1401,'',0,'','PRUSHTI B SORATHIYA','','','','',0,'JAMKANDONA','JAMKANDONA','GUJARAT','INDIA','2004-10-28','Y','21Y',0,0,0,'F','','','+91',8849344493,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 12:28:27','','0000-00-00 00:00:00'),(0,1402,'',0,'','BUELA KAMDAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-28','Y','52Y',52,0,0,'F','','','+91',9825016008,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 12:31:27','reception','2025-11-20 18:22:00'),(0,1403,'',0,'','SUNITA HAKMICHAND VADHAR','','','NILKANTH PARK OLD B-M 15 RAJIV ANAND NAGAR ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-05-21','N','76Y',0,0,0,'F','','','+91',8866812553,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 12:32:16','drashti','2025-11-24 12:24:50'),(0,1404,'',0,'','VARSHABEN H VAKOTER','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1990-10-28','Y','35Y',0,0,0,'F','','','+91',9904934918,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 12:35:53','','0000-00-00 00:00:00'),(0,1405,'',0,'','MADHUBEN L RANIPA','','','','',0,'TANKARA','TANKARA','GUJARAT','INDIA','1963-10-28','Y','62Y',0,0,0,'F','','','+91',9913003131,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 12:42:18','','0000-00-00 00:00:00'),(0,1406,'',0,'','RAJENDRASINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-10-28','Y','46Y',0,0,0,'M','','','+91',9998879497,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 12:51:58','','0000-00-00 00:00:00'),(0,1407,'',0,'','VIKASHBHAI L JOSHI','','','','',0,'JUNGADH','JUNGADH','GUJARAT','INDIA','1958-10-28','Y','67Y',67,0,0,'M','','','+91',9429938080,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 13:08:34','reception','2025-11-28 11:37:11'),(0,1408,'',0,'','TARUNBHAI D GAMI','','','PRAMUKH BUNGLOWS PRAMUKH PELACE-702 NEAR UMIYA CIR','',0,'MORBI','MORBI','GUJARAT','INDIA','1980-08-17','N','45Y',0,0,0,'M','','','+91',9023866303,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 13:11:15','priyanshi','2025-11-06 16:27:07'),(0,1409,'',0,'','SONALBEN RATOJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-28','Y','39Y',0,0,0,'F','','','+91',9824212095,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 13:12:12','reception','2025-12-11 12:45:00'),(0,1410,'',0,'','AMUBEN GOHEL ','','','BHANDARIYA,JASDAN','',0,'','','GUJARAT','INDIA','1971-01-01','N','54Y',0,0,0,'F','','','+91',9624722953,'+91',8128160525,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-28 14:05:20','janvi','2025-11-13 09:35:11'),(0,1411,'',0,'','PAYAL SARVAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-10-28','Y','38Y',0,0,0,'F','','','+91',8511088818,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 14:33:13','','0000-00-00 00:00:00'),(0,1412,'',0,'','RAMABEN  P MANVAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-28','Y','64Y',0,0,0,'F','','','+91',9925040235,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 16:51:12','reception','2025-12-01 17:50:46'),(0,1413,'',0,'','JITENDRABHAI H SERASIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1988-10-28','Y','37Y',0,0,0,'M','','','+91',9824545448,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 17:08:13','','0000-00-00 00:00:00'),(0,1414,'',0,'','JAYSHREEBEN J TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-10-28','Y','66Y',0,0,0,'F','','','+91',9726360222,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 17:15:19','reception','2025-12-18 10:46:19'),(0,1415,'',0,'','BHAVINBHAI M DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-28','Y','50Y',0,0,0,'M','','','+91',9825743910,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 17:26:01','','0000-00-00 00:00:00'),(0,1416,'',0,'','PRAVINBHAI VED','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-28','Y','58Y',0,0,0,'M','','','+91',9638893506,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 17:33:07','reception','2025-11-28 08:53:26'),(0,1417,'',0,'','SATISHCHANDRA B SANGHVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-10-28','Y','69Y',0,0,0,'M','','','+91',9428156635,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 17:35:58','','0000-00-00 00:00:00'),(0,1418,'',0,'','NITINBHAI VAGHER','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-10-28','Y','72Y',0,0,0,'M','','','+91',8866203577,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 17:37:21','','0000-00-00 00:00:00'),(0,1419,'',0,'','POONAMBEN I BODA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1989-10-28','Y','36Y',0,0,0,'F','','','+91',9824899689,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 17:38:35','reception','2025-11-27 11:19:48'),(0,1420,'',0,'','AMISHABEN RASADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-10-28','Y','29Y',0,0,0,'F','','','+91',9106067082,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 17:40:35','','0000-00-00 00:00:00'),(0,1421,'',0,'','GEETABEN A SARERIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-28','Y','50Y',0,0,0,'F','','','+91',9727636301,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 17:47:32','','0000-00-00 00:00:00'),(0,1422,'',0,'','KISHANBHAI J SHILU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-28','Y','32Y',0,0,0,'M','','','+91',8347740777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-28 17:50:41','','0000-00-00 00:00:00'),(0,1423,'',0,'','DAXABEN KARAGIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-28','Y','36Y',0,0,0,'F','','','+91',9978770870,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 17:50:44','','0000-00-00 00:00:00'),(0,1424,'',0,'','RAVIBHAI PRAJAPATI','','','','',0,'THANGADH','THANGADH','GUJARAT','INDIA','1994-10-28','Y','31Y',0,0,0,'M','','','+91',9099393923,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 17:50:59','','0000-00-00 00:00:00'),(0,1425,'',0,'','BHAVISHABEN M UNADKAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-10-28','Y','57Y',0,0,0,'F','','','+91',9725995391,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-28 17:52:17','janvi','2025-12-12 11:52:07'),(0,1426,'',0,'','MAHENDRABHAI P UNADKAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-10-28','Y','67Y',0,0,0,'M','','','+91',9725995391,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-28 17:53:29','','0000-00-00 00:00:00'),(0,1427,'',0,'','NISHABEN R PRAJAPATI','','','','',0,'THANGADH','THANGADH','GUJARAT','INDIA','1996-10-28','Y','29Y',0,0,0,'F','','','+91',9099393923,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 17:53:29','reception','2025-12-10 11:39:38'),(0,1428,'',0,'','RAMESHBHAI J RUGHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-28','Y','70Y',0,0,0,'M','','','+91',9429424851,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 17:55:25','reception','2025-11-07 17:39:17'),(0,1429,'',0,'','SONA UNADKAT','','','','',0,'TALALA','TALALA','GUJARAT','INDIA','1976-10-28','Y','49Y',0,0,0,'F','','','+91',8469779350,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 18:02:34','','0000-00-00 00:00:00'),(0,1430,'',0,'','KANUBEN VALA','','','','',0,'TALALA','TALALA','GUJARAT','INDIA','1969-10-28','Y','56Y',0,0,0,'F','','','+91',7359015458,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-28 18:02:41','manshi','2025-11-14 18:25:28'),(0,1431,'',0,'','ALPABEN J GOSWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-10-28','Y','37Y',0,0,0,'F','','','+91',7802009362,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 18:04:16','','0000-00-00 00:00:00'),(0,1432,'',0,'','RUPALBEN KANABAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-10-28','Y','46Y',0,0,0,'F','','','+91',9638299100,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 18:04:27','','0000-00-00 00:00:00'),(0,1433,'',0,'','KETANBHAI B  VORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-28','Y','59Y',0,0,0,'M','','','+91',9409177400,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 18:13:46','','0000-00-00 00:00:00'),(0,1434,'',0,'','HEMAKSHIBEN VORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-28','Y','53Y',0,0,0,'F','','','+91',9409177400,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 18:15:39','','0000-00-00 00:00:00'),(0,1435,'',0,'','MINABEN K VAJELIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-28','Y','30Y',0,0,0,'F','','','+91',7572845577,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-28 18:15:47','','0000-00-00 00:00:00'),(0,1436,'',0,'','NITABEN JOSHI ','','','','',0,'NAVSARI','NAVSARI','GUJARAT','INDIA','1973-10-28','Y','52Y',0,0,0,'F','','','+91',9426942605,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 18:18:50','','0000-00-00 00:00:00'),(0,1437,'',0,'','YASHBHAI HANJ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-10-28','Y','28Y',0,0,0,'M','','','+91',9265668609,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-28 18:23:20','janvi','2025-11-15 11:26:24'),(0,1438,'',0,'','DEV BAMBHVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-10-28','Y','18Y',0,0,0,'M','','','+91',9998242758,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 18:27:14','','0000-00-00 00:00:00'),(0,1439,'',0,'','DEV BAMBHVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-10-28','Y','18Y',0,0,0,'M','','','+91',9998242758,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 18:28:44','janvi','2025-12-22 19:24:17'),(0,1440,'',0,'','MAMTABA R VALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-28','Y','58Y',0,0,0,'F','','','+91',9998405405,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 18:33:35','','0000-00-00 00:00:00'),(0,1441,'',0,'','MANISHBHAI TANNA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-28','Y','45Y',0,0,0,'M','','','+91',9824277730,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-28 18:36:13','manshi','2025-11-10 18:55:00'),(0,1442,'',0,'','KARISHMABEN THAKKAR','','','','',0,'AHEMDABAD','AHEMDABAD','GUJARAT','INDIA','1990-10-28','Y','35Y',35,0,0,'F','','','+91',7435007498,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 18:42:23','drashti','2025-10-28 18:47:19'),(0,1443,'',0,'','KARISHMABEN THAKKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-28','Y','35Y',35,0,0,'F','','','+91',7435007498,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 18:44:58','drashti','2025-10-28 18:46:35'),(0,1444,'',0,'','MADHVI THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-28','Y','42Y',0,0,0,'F','','','+91',7574995336,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-28 18:50:46','','0000-00-00 00:00:00'),(0,1445,'',0,'','SARITABEN SHARMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-10-28','Y','18Y',0,0,0,'F','','','+91',8780200220,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-28 18:58:28','','0000-00-00 00:00:00'),(0,1446,'',0,'','LAKHDHIRSINH CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-28','Y','35Y',0,0,0,'M','','','+91',7984951556,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 19:00:29','','0000-00-00 00:00:00'),(0,1447,'',0,'','JAYSHREEBEN JETHVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-10-28','Y','49Y',49,0,0,'F','','','+91',8866516964,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-28 19:05:14','manshi','2025-10-28 19:08:42'),(0,1448,'',0,'','PARSHOTAMBHAI KAKADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-10-28','Y','71Y',0,0,0,'M','','','+91',9228361000,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-28 19:12:12','','0000-00-00 00:00:00'),(0,1449,'',0,'','TUSHARSINH RAOL','','','','',0,'BHAVNAGAR','BHAVNAGAR','GUJARAT','INDIA','2003-10-28','Y','22Y',0,0,0,'M','','','+91',7688088882,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 19:17:00','','0000-00-00 00:00:00'),(0,1450,'',0,'','ALPABEN SOLANKI','','','','',0,'AHEMDABAD','AHEMDABAD','GUJARAT','INDIA','1978-10-28','Y','47Y',0,0,0,'F','','','+91',9904169559,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-28 19:45:07','','0000-00-00 00:00:00'),(0,1451,'',0,'','AASHISHBHAI BAMBHVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-10-29','Y','17Y',0,0,0,'M','','','+91',9904320911,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-29 08:53:32','','0000-00-00 00:00:00'),(0,1452,'',0,'','SIDDHARTHBHAI DODIYA','','','','',0,'PADADHRI','PADADHRI','GUJARAT','INDIA','1999-10-29','Y','26Y',0,0,0,'M','','','+91',9601377777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-29 08:55:55','','0000-00-00 00:00:00'),(0,1453,'',0,'','RUPABEN VISHWAKARMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-29','Y','25Y',0,0,0,'F','','','+91',9574536550,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-29 08:57:40','','0000-00-00 00:00:00'),(0,1454,'',0,'','USHABEN PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-29','Y','59Y',0,0,0,'F','','','+91',9558165651,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-29 09:00:11','priyanshi','2025-11-03 09:17:48'),(0,1455,'',0,'','DHARABEN SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-29','Y','30Y',0,0,0,'F','','','+91',7016870250,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-29 09:03:01','reception','2025-11-05 09:01:22'),(0,1456,'',0,'','MANISHABEN BHARATBHAI TANK','','','RAMESWAR PARK-1 STREET NO-1 B/H RAMESWAR HALL','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-09-14','N','48Y',0,0,0,'F','','','+91',9824127799,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-29 09:40:51','reception','2025-11-13 11:42:42'),(0,1457,'',0,'','KALABHAI U DANGAR','','','','',0,'MANAVADAR','MANAVADAR','GUJARAT','INDIA','1956-10-29','Y','69Y',0,0,0,'M','','','+91',9512582145,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 10:05:12','','0000-00-00 00:00:00'),(0,1458,'',0,'','VARSHABEN VASANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-29','Y','60Y',0,0,0,'F','','','+91',9408488747,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-29 10:05:18','','0000-00-00 00:00:00'),(0,1459,'',0,'','KRISHNABEN B KANDOLIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-10-29','Y','37Y',0,0,0,'F','','','+91',9427223827,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 10:08:32','','0000-00-00 00:00:00'),(0,1460,'',0,'','SONALBEN A RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-10-29','Y','23Y',0,0,0,'F','','','+91',7777931062,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 10:13:07','reception','2025-11-03 12:05:34'),(0,1461,'',0,'','ASHVINBHAI DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-29','Y','70Y',0,0,0,'M','','','+91',9978921210,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-29 10:16:09','janvi','2025-11-11 12:23:07'),(0,1462,'',0,'','PARSHOTAMBHAI G BHATTI','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1961-10-29','Y','64Y',0,0,0,'M','','','+91',8758748660,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 10:19:25','reception','2025-11-17 10:01:29'),(0,1463,'',0,'','ANANTRAY TRAMBAKLAL JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-10-29','Y','79Y',0,0,0,'M','','','+91',9638515085,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-29 10:22:35','urvashi','2025-12-05 18:51:28'),(0,1464,'',0,'','HARESHBHAI DODIYA','','','','',0,'SATAPAR','SATAPAR','GUJARAT','INDIA','1978-10-29','Y','47Y',0,0,0,'M','','','+91',9998433526,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-29 10:24:44','','0000-00-00 00:00:00'),(0,1465,'',0,'','VITHALBHAI P SOJITRA','','','','',0,'CHAVANDI','CHAVANDI','GUJARAT','INDIA','1956-10-29','Y','69Y',0,0,0,'M','','','+91',9879263622,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-29 10:39:32','drashti','2025-11-29 10:27:29'),(0,1466,'',0,'','SANDIPBHAI N KUNDARIYA','','','','',0,'METODA','METODA','GUJARAT','INDIA','1983-10-29','Y','42Y',0,0,0,'M','','','+91',9909468070,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 10:52:05','','0000-00-00 00:00:00'),(0,1467,'',0,'','KESHURBHAI R BHUTIYA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1969-10-29','Y','56Y',0,0,0,'M','','','+91',9737272762,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 10:55:26','','0000-00-00 00:00:00'),(0,1468,'',0,'','MERAMANBHAI MODHVADIYA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1999-10-29','Y','26Y',0,0,0,'M','','','+91',9727775645,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-29 10:55:54','','0000-00-00 00:00:00'),(0,1469,'',0,'','RASILABEN R TANTI','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1970-10-29','Y','55Y',55,0,0,'F','','','+91',9173062312,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-29 10:55:58','reception','2025-10-29 11:52:09'),(0,1470,'',0,'','NATHIBEN N CHAVDA','','','','',0,'BHATIYA','BHATIYA','GUJARAT','INDIA','1978-10-29','Y','47Y',0,0,0,'F','','','+91',9375751633,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 10:57:10','','0000-00-00 00:00:00'),(0,1471,'',0,'','KANUBEN V KANGAD','','','','',0,'HAMAPAR DHROL JAMNAGAR','HAMAPAR DHROL JAMNAGAR','GUJARAT','INDIA','1970-10-29','Y','55Y',0,0,0,'F','','','+91',9824214487,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-29 10:59:09','','0000-00-00 00:00:00'),(0,1472,'',0,'','SUNITA GUPTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-10-29','Y','69Y',0,0,0,'F','','','+91',9811012828,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','janvi','2025-10-29 11:01:53','','0000-00-00 00:00:00'),(0,1473,'',0,'','PRAVINBHAI SARVAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-29','Y','64Y',0,0,0,'M','','','+91',9974895308,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-29 11:03:52','manshi','2025-12-23 11:40:55'),(0,1474,'',0,'','RASILABEN R  TANTI','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1970-10-29','Y','55Y',0,0,0,'F','','','+91',9173062312,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 11:05:12','','0000-00-00 00:00:00'),(0,1475,'',0,'','JAYABEN K JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-10-29','Y','80Y',0,0,0,'F','','','+91',9428377436,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-29 11:07:20','','0000-00-00 00:00:00'),(0,1476,'',0,'','ASHOKSINH G JADEJA','','','','',0,'PADVALA','PADVALA','GUJARAT','INDIA','1962-10-29','Y','63Y',0,0,0,'M','','','+91',9824990900,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-29 11:14:09','','0000-00-00 00:00:00'),(0,1477,'',0,'','BALRAMBHAI TIWARI','','','','',0,'SAPAR','SAPAR','GUJARAT','INDIA','1984-10-29','Y','41Y',41,0,0,'M','','','+91',7355912916,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 11:16:04','reception','2025-12-01 17:27:29'),(0,1478,'',0,'','NASIM I SHEKH','','','','',0,'','','GUJARAT','INDIA','1973-10-29','Y','52Y',0,0,0,'F','','','+91',9099022293,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-29 11:24:06','','0000-00-00 00:00:00'),(0,1479,'',0,'','CHANDUBHAI P KAVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-10-29','Y','74Y',74,0,0,'M','','','+91',9898067610,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 11:24:37','reception','2025-10-29 13:04:06'),(0,1480,'',0,'','ASMABEN S MADHAKIYA','','','','',0,'TANKARA','TANKARA','GUJARAT','INDIA','1986-10-29','Y','39Y',0,0,0,'F','','','+91',9712343677,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-29 11:26:45','','0000-00-00 00:00:00'),(0,1481,'',0,'','RAJBHAI J ULVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-10-29','Y','22Y',0,0,0,'M','','','+91',9638667271,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-29 11:31:55','drashti','2025-12-17 11:25:13'),(0,1482,'',0,'','RONAKBEN R BADI','','','','',0,'WAKANER','WAKANER','GUJARAT','INDIA','2002-10-29','Y','23Y',0,0,0,'F','','','+91',9879870782,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-29 11:43:24','','0000-00-00 00:00:00'),(0,1483,'',0,'','SURBHIBEN A KACHCHHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-10-29','Y','54Y',0,0,0,'F','','','+91',9824166177,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-29 11:43:24','','0000-00-00 00:00:00'),(0,1484,'',0,'','ANILBHAI S KACHCHHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-29','Y','52Y',0,0,0,'M','','','+91',9824166177,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-29 11:44:33','','0000-00-00 00:00:00'),(0,1485,'',0,'','MANIBEN R JADAV','','','','',0,'SOMANATH','SOMANATH','GUJARAT','INDIA','1993-10-29','Y','32Y',0,0,0,'F','','','+91',9904650416,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-29 11:46:19','','0000-00-00 00:00:00'),(0,1486,'',0,'','VIJAYGIRI GOSWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-29','Y','32Y',0,0,0,'M','','','+91',8849987578,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 11:46:24','','0000-00-00 00:00:00'),(0,1487,'',0,'','RAJESHBHAI AGHERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-29','Y','59Y',0,0,0,'M','','','+91',9824223992,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-29 11:46:46','manshi','2025-11-17 18:44:58'),(0,1488,'',0,'','HARSH L KHUNT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-10-29','Y','19Y',0,0,0,'M','','','+91',9737540321,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-29 11:56:39','','0000-00-00 00:00:00'),(0,1489,'',0,'','JESINGBHAI CHAVDA','','','','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1968-10-29','Y','57Y',0,0,0,'M','','','+91',8200352226,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-29 11:56:49','','0000-00-00 00:00:00'),(0,1490,'',0,'','ROSHNIBEN J  BAGDA','','','','',0,'DHORAJI','DHORAJI','GUJARAT','INDIA','2003-10-29','Y','22Y',0,0,0,'F','','','+91',7778895108,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 11:59:33','','0000-00-00 00:00:00'),(0,1491,'',0,'','MEGHNA SINGH','','','','',0,'BENGLORE','BENGLORE','GUJARAT','INDIA','1998-10-29','Y','27Y',0,0,0,'F','','','+91',8805427641,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-29 12:01:00','','0000-00-00 00:00:00'),(0,1492,'',0,'','JAYABEN PANSURIYA','','','','',0,'UPLETA','UPLETA','GUJARAT','INDIA','1951-10-29','Y','74Y',0,0,0,'F','','','+91',9898953775,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 12:17:56','','0000-00-00 00:00:00'),(0,1493,'',0,'','VEENABEN GAYATRI','','','','',0,'','','GUJARAT','INDIA','1985-10-29','Y','40Y',0,0,0,'F','','','+91',9939625800,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-29 12:21:42','manshi','2025-11-08 11:06:58'),(0,1494,'',0,'','SURESHBHAI L VIRAMGAMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-10-29','Y','44Y',0,0,0,'M','','','+91',7990126025,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-29 12:22:47','','0000-00-00 00:00:00'),(0,1495,'',0,'','RENUKABEN P GADHVI','','','DHRUV NAGAR-3 RAVECHI KRUPA NEAR AMRAPALI RAIYA ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-29','Y','75Y',0,0,0,'F','','','+91',9909440034,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-29 12:31:43','urvashi','2025-11-19 12:34:00'),(0,1496,'',0,'','JAGRUTIBEN RAJUBHAI GAJJAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-29','Y','64Y',0,0,0,'F','','','+91',9978816577,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-29 12:35:01','drashti','2025-12-23 17:22:34'),(0,1497,'',0,'','DAYABHAI GOHIL','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1955-10-29','Y','70Y',0,0,0,'M','','','+91',9429027671,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-29 12:39:24','','0000-00-00 00:00:00'),(0,1498,'',0,'','PRAFULABEN  KOTHDIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-29','Y','60Y',0,0,0,'F','','','+91',8154090324,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 12:41:18','reception','2025-12-03 12:13:19'),(0,1499,'',0,'','JAYESHBHAI B GARIYA','','','','',0,'DHANGADHRA','DHANGADHRA','GUJARAT','INDIA','1995-10-29','Y','30Y',0,0,0,'M','','','+91',7778899901,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 12:43:09','reception','2025-12-23 10:17:50'),(0,1500,'',0,'','MANJURAQUE SHEIKH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-29','Y','32Y',0,0,0,'M','','','+91',9574773478,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 12:56:52','reception','2025-12-16 17:11:01'),(0,1501,'',0,'','MEENABEN P PARMAR','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1985-10-29','Y','40Y',0,0,0,'F','','','+91',7211189999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 13:07:20','','0000-00-00 00:00:00'),(0,1502,'',0,'','RAYDHANBHAI G LAVDIYA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1947-10-29','Y','78Y',0,0,0,'M','','','+91',9998189249,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-29 13:18:12','','0000-00-00 00:00:00'),(0,1503,'',0,'','BHAVNABEN C GIYAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-10-29','Y','49Y',0,0,0,'F','','','+91',9424445695,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 15:37:33','reception','2025-11-13 16:58:46'),(0,1504,'',0,'','HARKISHAN DABHI ','','ABBOTT IND','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-29','Y','32Y',0,0,0,'M','','','+91',8732970608,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 16:27:45','reception','2025-12-10 16:33:38'),(0,1505,'',0,'','RASILABEN R PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-29','Y','70Y',0,0,0,'F','','','+91',9825916904,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 16:34:30','reception','2025-12-08 18:51:35'),(0,1506,'',0,'','CHHAGANBHAI D SANGANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-10-29','Y','67Y',0,0,0,'M','','','+91',9099077810,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 16:38:31','','0000-00-00 00:00:00'),(0,1507,'',0,'','RAJESHBHAI  GOHEL','','NEOVISION ','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-29','Y','50Y',0,0,0,'M','','','+91',9898377334,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 16:44:12','','0000-00-00 00:00:00'),(0,1508,'',0,'','RAJIV G VALERA','','DEFCORT','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-10-29','Y','37Y',37,0,0,'M','','','+91',7405467767,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 16:48:44','drashti','2025-11-26 16:35:14'),(0,1509,'',0,'','SAMJIBHAI H BABARIYA','','','','',0,'AKOLVADI','AKOLVADI','GUJARAT','INDIA','1950-10-29','Y','75Y',0,0,0,'M','','','+91',9879068538,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 17:09:31','reception','2025-11-28 10:46:03'),(0,1510,'',0,'','SAVITABEN KAKADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-29','Y','65Y',0,0,0,'F','','','+91',8460022068,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-29 17:17:15','','0000-00-00 00:00:00'),(0,1511,'',0,'','PRAKASHBHAI M CHAPADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-10-29','Y','57Y',57,0,0,'F','','','+91',9428154805,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 17:20:37','reception','2025-10-29 17:52:56'),(0,1512,'',0,'','JOSHNABEN RAMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-29','Y','65Y',0,0,0,'F','','','+91',9924159311,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 17:27:17','reception','2025-11-27 10:07:33'),(0,1513,'',0,'','YOGESHBHAI DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-29','Y','70Y',0,0,0,'M','','','+91',9725780571,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 17:29:36','janvi','2025-11-08 10:43:33'),(0,1514,'',0,'','NURJABEN S SAHMDAR','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1985-10-29','Y','40Y',0,0,0,'F','','','+91',9664531656,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 17:32:46','','0000-00-00 00:00:00'),(0,1515,'',0,'','ANJNABEN M TALSANIYA','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1978-10-29','Y','47Y',0,0,0,'F','','','+91',8401730850,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 17:35:51','reception','2025-11-15 12:23:30'),(0,1516,'',0,'','SEJALBEN  KOTHARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-10-29','Y','34Y',34,0,0,'F','','','+91',9974996496,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 17:42:01','reception','2025-10-30 17:13:33'),(0,1517,'',0,'','SHUBHAM VITHALANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2010-10-29','Y','15Y',15,0,0,'M','','','+91',9106792621,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-10-29 17:42:38','drashti','2025-12-18 18:05:24'),(0,1518,'',0,'','CHHAGANBHAI M SUTARIYA','','','','',0,'DHAVA GIR','DHAVA GIR','GUJARAT','INDIA','1960-10-29','Y','65Y',0,0,0,'M','','','+91',9974215143,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 17:50:23','drashti','2025-11-07 17:43:04'),(0,1519,'',0,'','PRAGNESHBHAI N JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-10-29','Y','61Y',0,0,0,'M','','','+91',9879839928,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-29 17:57:08','','0000-00-00 00:00:00'),(0,1520,'',0,'','RAVJIBHAI CHOVATIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-29','Y','64Y',0,0,0,'M','','','+91',8141240899,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 17:59:48','reception','2025-12-17 16:49:22'),(0,1521,'',0,'','RUKSHAMANIBEN L CHANDVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1939-10-29','Y','86Y',0,0,0,'F','','','+91',8160195878,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-29 18:02:19','janvi','2025-12-01 19:13:40'),(0,1522,'',0,'','VAIDIKBHAI MODHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-10-29','Y','22Y',22,0,0,'M','','','+91',7572945198,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 18:08:34','reception','2025-10-29 19:10:59'),(0,1523,'',0,'','EKTABEN D. SANTOKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-29','Y','45Y',0,0,0,'F','','','+91',9427257734,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 18:15:20','','0000-00-00 00:00:00'),(0,1524,'',0,'','KIRANBEN D KATHESIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-10-29','Y','56Y',0,0,0,'F','','','+91',9427243787,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-29 18:16:10','manshi','2025-11-03 18:09:27'),(0,1525,'',0,'','EKTABEN D SANTOKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-29','Y','45Y',0,0,0,'F','','','+91',9427257734,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-29 18:19:28','','0000-00-00 00:00:00'),(0,1526,'',0,'','KIRITBHAI D ANTALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-29','Y','58Y',58,0,0,'F','','','+91',9426712250,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-29 18:21:20','shweta','2025-10-29 18:22:26'),(0,1527,'',0,'','PRIYANKA ARBALLI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-10-29','Y','27Y',27,0,0,'F','','','+91',9727475637,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-29 18:26:19','shweta','2025-10-29 18:38:35'),(0,1528,'',0,'','KAJALBEN VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-10-29','Y','41Y',0,0,0,'F','','','+91',9978945556,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-29 18:29:59','janvi','2025-11-10 18:33:46'),(0,1529,'',0,'','RANJANBEN BUDDH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-29','Y','65Y',0,0,0,'F','','','+91',8758387269,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-29 18:31:32','','0000-00-00 00:00:00'),(0,1530,'',0,'','SURENDRABHAI N MAHETA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-10-29','Y','76Y',0,0,0,'M','','','+91',9327368828,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-29 18:35:54','','0000-00-00 00:00:00'),(0,1531,'',0,'','J P LIMBANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-10-29','Y','73Y',0,0,0,'M','','','+91',9429470939,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-29 18:36:33','','0000-00-00 00:00:00'),(0,1532,'',0,'','MINABEN HADA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-29','Y','52Y',52,0,0,'F','','','+91',9428791516,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-10-29 18:40:02','janvi','2025-11-21 18:41:55'),(0,1533,'',0,'','OM BHADIYANI','','','','',0,'','','GUJARAT','INDIA','2004-10-29','Y','21Y',0,0,0,'M','','','+91',9377793772,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 18:40:55','','0000-00-00 00:00:00'),(0,1534,'',0,'','JAMILABEN S SAEIKH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-29','Y','45Y',0,0,0,'F','','','+91',8347866229,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 19:03:15','','0000-00-00 00:00:00'),(0,1535,'',0,'','KRUNALIBEN GOHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-10-29','Y','23Y',0,0,0,'F','','','+91',9664545922,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-29 19:06:28','','0000-00-00 00:00:00'),(0,1536,'',0,'','NARANBHAI GAUSWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-29','Y','70Y',0,0,0,'M','','','+91',8155826460,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 19:14:54','','0000-00-00 00:00:00'),(0,1537,'',0,'','NANJIBHAI M PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-10-29','Y','80Y',0,0,0,'M','','','+91',9427934188,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-29 19:39:54','','0000-00-00 00:00:00'),(0,1538,'',0,'','AVDABHAI R ODEDRA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1990-10-29','Y','35Y',0,0,0,'M','','','+91',9979291906,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-29 19:55:19','reception','2025-12-17 18:38:08'),(0,1539,'',0,'','JINAL JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-10-30','Y','18Y',0,0,0,'F','','','+91',9328932911,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-30 09:03:25','','0000-00-00 00:00:00'),(0,1540,'',0,'','ARVINDBHAI JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-10-30','Y','74Y',0,0,0,'M','','','+91',7990933500,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-30 09:05:14','','0000-00-00 00:00:00'),(0,1541,'',0,'','RANIBEN K MUCHHAD ','','','','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1965-10-30','Y','60Y',0,0,0,'F','','','+91',9265305464,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 09:31:19','reception','2025-11-24 09:53:54'),(0,1542,'',0,'','ARATIBEN VARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-30','Y','40Y',0,0,0,'F','','','+91',9824283301,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 10:18:32','reception','2025-12-23 16:46:19'),(0,1543,'',0,'','BHOJABHAI L GODHANIYA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1964-10-30','Y','61Y',61,0,0,'M','','','+91',9978426029,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 10:28:09','drashti','2025-10-30 10:30:25'),(0,1544,'',0,'','BHUPATBHAI J BAJARIYA','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1956-10-30','Y','69Y',0,0,0,'M','','','+91',9428969412,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 10:30:13','shweta','2025-12-02 16:25:14'),(0,1545,'',0,'','JAYABEN V THAKKAR','','','','',0,'BHUJ','BHUJ','GUJARAT','INDIA','1966-10-30','Y','59Y',59,0,0,'F','','','+91',9925633792,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 10:39:56','reception','2025-11-29 12:21:22'),(0,1546,'',0,'','SHANTABEN K MANEK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-30','Y','64Y',0,0,0,'F','','','+91',9725335299,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 10:44:58','reception','2025-12-02 10:08:28'),(0,1547,'',0,'','VISHWA DAWERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2012-10-30','Y','13Y',0,0,0,'F','','','+91',9904736434,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 10:46:53','reception','2025-12-12 10:37:00'),(0,1548,'',0,'','JITENDRABHAI GOHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-10-30','Y','60Y',0,0,0,'M','','','+91',9924272090,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 10:56:15','darshan','2025-11-28 13:35:40'),(0,1549,'',0,'','JENTIBHAI J GANODIYA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1983-10-30','Y','42Y',0,0,0,'M','','','+91',9712167095,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 11:02:13','reception','2025-12-15 11:12:06'),(0,1550,'',0,'','RUMITBHAI D PARAKHIYA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1995-10-30','Y','30Y',0,0,0,'M','','','+91',8140953737,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 11:04:34','','0000-00-00 00:00:00'),(0,1551,'',0,'','KANCHANBEN P SATASIYA','','','','',0,'JAMKANDONA','JAMKANDONA','GUJARAT','INDIA','1970-10-30','Y','55Y',0,0,0,'F','','','+91',6354659441,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 11:06:15','reception','2025-12-05 11:49:47'),(0,1552,'',0,'','MANJUBEN M VALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-30','Y','68Y',0,0,0,'F','','','+91',9824283301,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 11:09:17','drashti','2025-12-12 10:41:48'),(0,1553,'',0,'','MANSUKHBHAI M RANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-10-30','Y','58Y',0,0,0,'M','','','+91',9427214711,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 11:12:32','','0000-00-00 00:00:00'),(0,1554,'',0,'','PURIBEN R RAM','','','','',0,'GHUSIYA','GHUSIYA','GUJARAT','INDIA','1973-10-30','Y','52Y',0,0,0,'F','','','+91',9737333498,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-30 11:17:59','','0000-00-00 00:00:00'),(0,1555,'',0,'','URMILABEN V VYAS  TITIYA','','','NANAMAVA MAIN ROAD OPP SASTRINAGAR  SHIV DRASTI-2','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-10-30','Y','72Y',0,0,0,'F','','','+91',7778883964,'+91',9427227930,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 11:20:56','vishal','2025-10-31 18:47:06'),(0,1556,'',0,'','PRAFULBHAI SWADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1944-10-30','Y','81Y',81,0,0,'M','','','+91',9714494994,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 11:33:10','drashti','2025-10-30 11:35:23'),(0,1557,'',0,'','SUSHILABEN A SARDAVA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1971-10-30','Y','54Y',0,0,0,'F','','','+91',9825706769,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 11:35:39','','0000-00-00 00:00:00'),(0,1558,'',0,'','ANKITBHAI BHIMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-30','Y','25Y',0,0,0,'M','','','+91',8128917748,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-30 11:36:52','','0000-00-00 00:00:00'),(0,1559,'',0,'','HUSENBHAI Z KATLERIWALA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1990-10-30','Y','35Y',0,0,0,'M','','','+91',9725855652,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 11:43:01','','0000-00-00 00:00:00'),(0,1560,'',0,'','MAYURBHAI BUCH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-10-30','Y','79Y',0,0,0,'M','','','+91',9879572227,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 11:43:20','','0000-00-00 00:00:00'),(0,1561,'',0,'','BHARTIBEN BUCH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-30','Y','65Y',0,0,0,'F','','','+91',9879572227,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 11:45:02','urvashi','2025-12-06 11:33:00'),(0,1562,'',0,'','KALABEN G DUBAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-10-30','Y','79Y',0,0,0,'F','','','+91',9328264500,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-30 11:45:59','reception','2025-11-19 18:30:14'),(0,1563,'',0,'','KALABEN G DUBAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-10-30','Y','79Y',0,0,0,'F','','','+91',9328264500,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 11:50:39','','0000-00-00 00:00:00'),(0,1564,'',0,'','POONAMBEN VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-30','Y','42Y',0,0,0,'F','','','+91',9909305199,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 11:51:34','reception','2025-12-01 18:08:52'),(0,1565,'',0,'','MANISHABEN J VASAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-30','Y','65Y',0,0,0,'F','','','+91',9427214676,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 11:52:26','','0000-00-00 00:00:00'),(0,1566,'',0,'','KASHYAPBHAI K DHOLAKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-30','Y','70Y',0,0,0,'M','','','+91',9427214656,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 11:54:27','','0000-00-00 00:00:00'),(0,1567,'',0,'','CHETANBHAI S UDESHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-10-30','Y','23Y',0,0,0,'M','','','+91',9558584988,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 11:58:42','urvashi','2025-12-04 12:35:40'),(0,1568,'',0,'','AYUSH R KOTADIYA','','','','',0,'KESHOD','KESHOD','GUJARAT','INDIA','2014-10-30','Y','11Y',11,0,0,'M','','','+91',7383640499,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-30 12:05:58','janvi','2025-10-30 12:08:06'),(0,1569,'',0,'','PARULBEN TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-30','Y','59Y',0,0,0,'F','','','+91',9925237949,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-30 12:08:55','manshi','2025-11-06 11:35:36'),(0,1570,'',0,'','KANISHK YADAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-10-30','Y','18Y',0,0,0,'F','','','+91',9924166721,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 12:10:43','','0000-00-00 00:00:00'),(0,1571,'',0,'','SHILPABEN C HIRANI','','','','',0,'BAGASRA','BAGASRA','GUJARAT','INDIA','1985-10-30','Y','40Y',0,0,0,'F','','','+91',9428709560,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 12:17:16','drashti','2025-12-11 11:21:30'),(0,1572,'',0,'','RAJESHBHAI JADVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-30','Y','40Y',0,0,0,'M','','','+91',9664535335,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 12:25:46','reception','2025-12-10 18:53:44'),(0,1573,'',0,'','GAUTAM CHETAN MEHTA','','','B/H ALAP GREEN CITY AMRUT PARK ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-07-09','N','24Y',0,0,0,'M','','','+91',8460116780,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-30 12:33:47','drashti','2025-11-07 11:12:26'),(0,1574,'',0,'','SHASHIBHAI  KAKKAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-30','Y','48Y',0,0,0,'M','','','+91',9898336535,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 12:38:59','reception','2025-12-06 11:34:41'),(0,1575,'',0,'','SANJAYBHAI SAUD','','','SADHUVASVANI ROAD OPP GANGOTRY DAIRY JANAK PURI','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-30','Y','45Y',0,0,0,'M','','','+91',7069884426,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-30 12:43:19','','0000-00-00 00:00:00'),(0,1576,'',0,'','MITALBEN N HINSU','','','','',0,'KHARVA','KHARVA','GUJARAT','INDIA','1989-10-30','Y','36Y',0,0,0,'F','','','+91',9904029458,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-30 12:47:43','reception','2025-12-08 10:51:08'),(0,1577,'',0,'','NATHIBEN BHUVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-30','Y','70Y',0,0,0,'F','','','+91',9712834128,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-30 13:00:44','','0000-00-00 00:00:00'),(0,1578,'',0,'','KARISHA TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-10-30','Y','22Y',0,0,0,'F','','','+91',9825313813,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-30 13:05:00','','0000-00-00 00:00:00'),(0,1579,'',0,'','DAXABEN R AKHAYANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-30','Y','45Y',45,0,0,'F','','','+91',9824823686,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-30 13:40:53','janvi','2025-10-30 13:42:10'),(0,1580,'',0,'','GUNJANBHAI  H THAKKAR','','','SADHUVASVANI ROAD NEAR GINTAJALI BHAVAN B-303','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-10-30','Y','43Y',0,0,0,'M','','','+91',9879236861,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-30 13:58:09','drashti','2025-11-07 11:06:16'),(0,1581,'',0,'','KARISHA JALPESHBHAI TRIVEDI','','','F-402 PALM CITY PATIDAR CHOWK SADHUVASVANI ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-10-09','N','24Y',0,0,0,'F','','','+91',9825313813,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-30 14:21:16','','0000-00-00 00:00:00'),(0,1582,'',0,'','KRUPALI PATEL','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1989-10-30','Y','36Y',0,0,0,'F','','','+91',9727805863,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 16:47:10','urvashi','2025-12-05 18:18:46'),(0,1583,'',0,'','HARSHABEN G SINGALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-30','Y','51Y',0,0,0,'F','','','+91',9033200025,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 16:52:14','reception','2025-11-27 17:59:31'),(0,1584,'',0,'','GEETABEN M CHAVDA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1990-10-30','Y','35Y',0,0,0,'F','','','+91',9909596283,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 16:59:52','','0000-00-00 00:00:00'),(0,1585,'',0,'','KRUTARTH  S CHATWANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-10-30','Y','21Y',0,0,0,'M','','','+91',9426201233,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 17:01:02','reception','2025-11-04 16:54:37'),(0,1586,'',0,'','SAKINABEN A SAICHA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1986-10-30','Y','39Y',0,0,0,'F','','','+91',6351753131,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 17:05:42','reception','2025-11-28 18:27:44'),(0,1587,'',0,'','HEENABEN V SINDHAV','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1990-10-30','Y','35Y',0,0,0,'F','','','+91',9909282197,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 17:07:40','reception','2025-12-09 16:36:05'),(0,1588,'',0,'','NITABEN P JADAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-30','Y','32Y',0,0,0,'F','','','+91',9904248303,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 17:09:40','','0000-00-00 00:00:00'),(0,1589,'',0,'','NEHABEN  SINGALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-30','Y','53Y',53,0,0,'F','','','+91',9426960248,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 17:11:57','reception','2025-10-30 17:20:24'),(0,1590,'',0,'','NIRALIBEN H SACHDEV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-30','Y','32Y',0,0,0,'F','','','+91',9979674784,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 17:17:03','','0000-00-00 00:00:00'),(0,1591,'',0,'','CHETNABEN M PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-30','Y','51Y',0,0,0,'F','','','+91',9725197925,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 17:34:02','reception','2025-11-20 10:32:35'),(0,1592,'',0,'','LAXMANBHAI S DANTALIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1965-10-30','Y','60Y',0,0,0,'M','','','+91',8758767574,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 17:36:29','reception','2025-12-16 10:40:07'),(0,1593,'',0,'','JALPABEN P RAJODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-10-30','Y','34Y',0,0,0,'F','','','+91',8154810081,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 17:39:10','reception','2025-11-29 09:57:45'),(0,1594,'',0,'','KALPNABEN GERIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-10-30','Y','71Y',0,0,0,'F','','','+91',7878033733,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 17:44:49','','0000-00-00 00:00:00'),(0,1595,'',0,'','KANTIBHAI  PADMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-10-30','Y','47Y',0,0,0,'M','','','+91',9898287892,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 17:49:43','reception','2025-11-04 10:26:34'),(0,1596,'',0,'','VIDIT VANJARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2017-10-30','Y','08Y0M',0,0,0,'M','','','+91',9426905499,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-30 17:57:31','','0000-00-00 00:00:00'),(0,1597,'',0,'','MAMTABEN V BHUT','','','','',0,'MALIYASAN','MALIYASAN','GUJARAT','INDIA','1995-10-30','Y','30Y',0,0,0,'M','','','+91',9586463335,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 18:02:39','','0000-00-00 00:00:00'),(0,1598,'',0,'','HARUNBHAI  SAPPA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-10-30','Y','34Y',0,0,0,'M','','','+91',6353758757,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 18:04:11','reception','2025-12-05 17:19:25'),(0,1599,'',0,'','NEETABEN M VAGHELA ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-30','Y','64Y',0,0,0,'F','','','+91',9879221630,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 18:14:48','urvashi','2025-12-03 10:26:41'),(0,1600,'',0,'','KALPESHBHAI N MAKWANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-10-30','Y','41Y',0,0,0,'M','','','+91',8905161093,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-30 18:16:47','','0000-00-00 00:00:00'),(0,1601,'',0,'','HEMABEN GOHEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-10-30','Y','49Y',0,0,0,'F','','','+91',9099177767,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 18:16:48','','0000-00-00 00:00:00'),(0,1602,'',0,'','MEHBUBBHAI SERASIYA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1974-10-30','Y','51Y',0,0,0,'M','','','+91',9601837003,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 18:18:59','','0000-00-00 00:00:00'),(0,1603,'',0,'','RASHMITABEN J LALAKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-10-30','Y','49Y',0,0,0,'F','','','+91',8320205076,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 18:19:33','','0000-00-00 00:00:00'),(0,1604,'',0,'','NIRMALABEN BHATTI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-30','Y','70Y',0,0,0,'F','','','+91',9825997358,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 18:27:03','','0000-00-00 00:00:00'),(0,1605,'',0,'','MAITRIBEN GODHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-10-30','Y','19Y',0,0,0,'F','','','+91',9825018676,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-30 18:33:30','','0000-00-00 00:00:00'),(0,1606,'',0,'','ISHWARBHAI VORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1939-10-30','Y','86Y',0,0,0,'M','','','+91',8160638519,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 18:40:27','','0000-00-00 00:00:00'),(0,1607,'',0,'','SUSHILABEN KAKKAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-30','Y','64Y',0,0,0,'F','','','+91',9913946117,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-30 18:42:27','manshi','2025-12-05 18:10:07'),(0,1608,'',0,'','DHARMENDRABHAI KOTHARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-30','Y','59Y',0,0,0,'M','','','+91',9426787808,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 18:43:16','','0000-00-00 00:00:00'),(0,1609,'',0,'','YUG GAMBHVA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','2005-10-30','Y','20Y',0,0,0,'M','','','+91',8200439483,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 18:46:05','','0000-00-00 00:00:00'),(0,1610,'',0,'','MEHTA PRAVINABEN JAGDISHBHAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-30','Y','75Y',75,0,0,'M','','','+91',9662545105,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-30 18:51:23','janvi','2025-10-30 18:55:21'),(0,1611,'',0,'','LILABEN GADHVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-30','Y','65Y',0,0,0,'F','','','+91',7359000059,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 18:52:41','','0000-00-00 00:00:00'),(0,1612,'',0,'','ROHITBHAI V MAKWANA','','','','',0,'ANANDPAR NAVAGAM','ANANDPAR NAVAGAM','GUJARAT','INDIA','2004-10-30','Y','21Y',0,0,0,'M','','','+91',6354817152,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-30 19:15:53','reception','2025-10-31 17:03:53'),(0,1613,'',0,'','BHARTIBEN D VORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-10-30','Y','74Y',0,0,0,'F','','','+91',9825007929,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 19:17:59','','0000-00-00 00:00:00'),(0,1614,'',0,'','KETANBHAI RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-10-30','Y','39Y',0,0,0,'M','','','+91',8160316434,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-30 20:01:49','manshi','2025-11-20 11:24:30'),(0,1615,'',0,'','GORDHANBHAI B FASRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-30','Y','75Y',0,0,0,'M','','','+91',8980009089,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-30 20:09:48','','0000-00-00 00:00:00'),(0,1616,'',0,'','DANABHAI SANIYA','','','SOMNATH SOC,','150 FT RING ROAD ',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-10-30','Y','24Y',0,0,0,'M','','','+91',7359757075,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-30 22:22:38','shweta','2025-12-02 19:17:28'),(0,1617,'',0,'','JYOTIBEN JAGANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-10-31','Y','24Y',0,0,0,'F','','','+91',8866226694,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-31 08:56:34','','0000-00-00 00:00:00'),(0,1618,'',0,'','DANABHAI SANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','0000-00-00','','',0,0,0,'M','','','+91',7359757075,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-31 08:59:52','manshi','2025-11-10 12:00:07'),(0,1619,'',0,'','DHARMENDRASINH N JADEJA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1977-10-31','Y','48Y',0,0,0,'M','','','+91',9924193397,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 09:02:38','reception','2025-12-05 11:10:51'),(0,1620,'',0,'','PARTH BALDHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2020-10-31','Y','05Y0M',0,0,0,'M','','','+91',7738952990,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-10-31 09:05:10','','0000-00-00 00:00:00'),(0,1621,'',0,'','CARSANE BICA','','','','',0,'DIU','DIU','GUJARAT','INDIA','1961-10-31','Y','64Y',0,0,0,'M','','','+91',9408949209,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 09:18:44','','0000-00-00 00:00:00'),(0,1622,'',0,'','TARUNABEN A DHOKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-31','Y','65Y',65,0,0,'F','','','+91',6354103775,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 09:46:42','reception','2025-10-31 10:34:58'),(0,1623,'',0,'','MINTUBEN SANTOKI','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1977-10-31','Y','48Y',48,0,0,'F','','','+91',9725320141,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 09:52:05','reception','2025-11-29 11:08:50'),(0,1624,'',0,'','CHANDRESHBHAI M SOLANKI','','','','',0,'MANGROL','MANGROL','GUJARAT','INDIA','1976-10-31','Y','49Y',0,0,0,'M','','','+91',9979023624,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 10:00:23','reception','2025-12-05 09:42:57'),(0,1625,'',0,'','VIPULBHAI V PARMAR','','','','',0,'MANGROL','MANGROL','GUJARAT','INDIA','1990-10-31','Y','35Y',0,0,0,'M','','','+91',8866830076,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 10:01:26','','0000-00-00 00:00:00'),(0,1626,'',0,'','SAVITABEN D PIPARIYA','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1967-10-31','Y','58Y',0,0,0,'F','','','+91',7069352212,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 10:11:50','','0000-00-00 00:00:00'),(0,1627,'',0,'','DURGABEN R CHUDASAMA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1951-10-31','Y','74Y',0,0,0,'F','','','+91',9313489474,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 10:16:57','','0000-00-00 00:00:00'),(0,1628,'',0,'','BHIKHALAL BHARGA','','','','',0,'GIR SOMNATH','GIR SOMNATH','GUJARAT','INDIA','1975-10-31','Y','50Y',50,0,0,'M','','','+91',9427377929,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 10:19:13','janvi','2025-11-19 11:33:41'),(0,1629,'',0,'','BHAVIKA SHINGALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-31','Y','35Y',0,0,0,'F','','','+91',8401431890,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 10:31:13','janvi','2025-11-21 14:09:20'),(0,1630,'',0,'','VALJIBHAI H SODHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-10-31','Y','62Y',0,0,0,'M','','','+91',9925326071,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 10:33:20','','0000-00-00 00:00:00'),(0,1631,'',0,'','MULJIBHAI TALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-10-31','Y','77Y',0,0,0,'M','','','+91',9898141407,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 10:36:27','priyanshi','2025-12-10 17:50:59'),(0,1632,'',0,'','SHANTABEN M  TADA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-31','Y','75Y',0,0,0,'F','','','+91',9898141407,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 10:36:55','','0000-00-00 00:00:00'),(0,1633,'',0,'','MEHULBHAI B GOHEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-10-31','Y','44Y',0,0,0,'M','','','+91',9512855515,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 10:38:39','reception','2025-11-20 13:12:15'),(0,1634,'',0,'','REKHABEN V KHERADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-31','Y','40Y',0,0,0,'F','','','+91',7046633988,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-31 10:48:48','','0000-00-00 00:00:00'),(0,1635,'',0,'','CHANDUBHAI T SARVAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-10-31','Y','71Y',0,0,0,'M','','','+91',9925067980,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 10:49:34','','0000-00-00 00:00:00'),(0,1636,'',0,'','PRAKASHBA ZALA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1970-10-31','Y','55Y',0,0,0,'F','','','+91',9825275744,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-31 10:52:51','','0000-00-00 00:00:00'),(0,1637,'',0,'','LADHAVJIBHAI KASHIYANI','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1945-10-31','Y','80Y',80,0,0,'M','','','+91',9898939811,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 10:53:22','reception','2025-10-31 10:54:26'),(0,1638,'',0,'','JAYDEEPBHAI VADOLIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-10-31','Y','29Y',0,0,0,'M','','','+91',9601496752,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-31 10:56:29','','0000-00-00 00:00:00'),(0,1639,'',0,'','JENTIBHAI M PANARA','','','','',0,'MANAVADAR','MANAVADAR','GUJARAT','INDIA','1953-10-31','Y','72Y',0,0,0,'M','','','+91',9427699230,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 10:58:13','reception','2025-12-03 11:14:41'),(0,1640,'',0,'','KANAKSINH SARVAIYA','','','','',0,'BHAVNAGAR','BHAVNAGAR','GUJARAT','INDIA','1960-10-31','Y','65Y',0,0,0,'M','','','+91',9979905512,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 11:02:10','reception','2025-10-31 17:39:19'),(0,1641,'',0,'','MARKHIBHAI JOTVA','','','SARADIYA,','MANAVADAR',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1945-10-31','Y','80Y',0,0,0,'M','','','+91',9825128848,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-31 11:04:58','','0000-00-00 00:00:00'),(0,1642,'',0,'','MONIKABEN CHANGELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-10-31','Y','28Y',0,0,0,'F','','','+91',9714425550,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 11:08:33','reception','2025-11-20 17:46:32'),(0,1643,'',0,'','SUDHABEN P MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-31','Y','68Y',0,0,0,'F','','','+91',9427220600,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-31 11:10:38','','0000-00-00 00:00:00'),(0,1644,'',0,'','DINESHBHAI L CHAUHAN','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1977-10-31','Y','48Y',0,0,0,'M','','','+91',9727634585,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 11:19:24','','0000-00-00 00:00:00'),(0,1645,'',0,'','MUKTABEN SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-10-31','Y','72Y',0,0,0,'F','','','+91',8000514564,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 11:20:23','urvashi','2025-12-06 11:26:59'),(0,1646,'',0,'','NIKHILESDAS MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-31','Y','68Y',68,0,0,'M','','','+91',9099062736,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 11:22:12','reception','2025-10-31 11:23:57'),(0,1647,'',0,'','DAYAGAURI AJMERA','','','2-SHRADDHA NAGAR SOC,','MAVDI ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1936-10-31','Y','89Y',0,0,0,'F','','','+91',9824295032,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-10-31 11:30:00','','0000-00-00 00:00:00'),(0,1648,'',0,'','LAKHMANBHAI VADALIYA','','','','',0,'MALIYA HATINA','MALIYA HATINA','GUJARAT','INDIA','1973-10-31','Y','52Y',0,0,0,'M','','','+91',6352955892,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-31 11:32:18','','0000-00-00 00:00:00'),(0,1649,'',0,'','BHAVITABEN TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-10-31','Y','35Y',0,0,0,'F','','','+91',9909984621,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 11:37:02','','0000-00-00 00:00:00'),(0,1650,'',0,'','PRAGNABEN BUCH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-10-31','Y','72Y',0,0,0,'F','','','+91',9408187888,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-31 11:38:20','','0000-00-00 00:00:00'),(0,1651,'',0,'','HIMANI H POPAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-10-31','Y','27Y',27,0,0,'F','','','+91',9427306444,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 11:39:48','priyanshi','2025-11-13 18:39:38'),(0,1652,'',0,'','JAYESHBHAI RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-10-31','Y','33Y',0,0,0,'M','','','+91',7283982270,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 11:40:11','reception','2025-11-01 10:24:53'),(0,1653,'',0,'','MUNENDRABHAI BUCH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-10-31','Y','76Y',0,0,0,'M','','','+91',9408187888,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-31 11:40:13','','0000-00-00 00:00:00'),(0,1654,'',0,'','VAJUBHAI RATHOD','','','','',0,'SAILA','SAILA','GUJARAT','INDIA','1950-10-31','Y','75Y',0,0,0,'M','','','+91',7016513600,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 11:45:08','reception','2025-11-10 10:12:18'),(0,1655,'',0,'','DEVUBEN N RAJANI','','','','',0,'MALIYA HATINA','MALIYA HATINA','GUJARAT','INDIA','1980-10-31','Y','45Y',0,0,0,'M','','','+91',9979242372,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 11:46:45','','0000-00-00 00:00:00'),(0,1656,'',0,'','SATISHBHAI CHOURUSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-31','Y','75Y',0,0,0,'M','','','+91',9099256506,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 11:50:57','','0000-00-00 00:00:00'),(0,1657,'',0,'','KANTABEN  D MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-31','Y','65Y',0,0,0,'M','','','+91',8320384151,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 11:54:05','reception','2025-11-10 17:02:19'),(0,1658,'',0,'','  JAYSHREEBEN PABARI','','','','',0,'KHAMBHADIYA','KHAMBHADIYA','GUJARAT','INDIA','1978-10-31','Y','47Y',0,0,0,'M','','','+91',9824515442,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 11:58:57','reception','2025-12-10 16:24:30'),(0,1659,'',0,'','SAMIRBHAI PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-31','Y','53Y',0,0,0,'M','','','+91',9724321946,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-31 12:01:53','manshi','2025-11-10 12:39:54'),(0,1660,'',0,'','MINAXIBEN MANKAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-10-31','Y','70Y',0,0,0,'F','','','+91',9428004849,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 12:05:07','','0000-00-00 00:00:00'),(0,1661,'',0,'','MEHTA BIPIN P','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-10-31','Y','69Y',0,0,0,'M','','','+91',9825717301,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-31 12:05:55','','0000-00-00 00:00:00'),(0,1662,'',0,'','HARSHABEN DEVMURARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-31','Y','48Y',0,0,0,'F','','','+91',9925165656,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 12:15:46','drashti','2025-11-25 10:27:24'),(0,1663,'',0,'','NAYNABEN V VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-10-31','Y','77Y',77,0,0,'F','','','+91',9824502246,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-31 12:15:49','janvi','2025-10-31 12:17:36'),(0,1664,'',0,'','MANSUKHBHAI K VEKARIYA','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1960-10-31','Y','65Y',0,0,0,'M','','','+91',9979522792,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 12:16:15','','0000-00-00 00:00:00'),(0,1665,'',0,'','RIKTABEN Y PAWAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-10-31','Y','46Y',46,0,0,'F','','','+91',8153099900,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 12:18:59','reception','2025-10-31 12:57:05'),(0,1666,'',0,'','MANOJBHAI JADAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-31','Y','50Y',0,0,0,'M','','','+91',9924515648,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-31 12:19:02','','0000-00-00 00:00:00'),(0,1667,'',0,'','JYOTSANABEN RUPARELIYA','','','','',0,'SATAPAR','SATAPAR','GUJARAT','INDIA','1972-10-31','Y','53Y',0,0,0,'F','','','+91',9998606544,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 12:20:28','reception','2025-12-10 09:56:08'),(0,1668,'',0,'','NILESHBHAI GOSWAMI','','','','',0,'LODHIKA','LODHIKA','GUJARAT','INDIA','1950-10-31','Y','75Y',0,0,0,'M','','','+91',7825953964,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-31 12:30:51','','0000-00-00 00:00:00'),(0,1669,'',0,'','VIJAYBHAI I DAVE','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1982-10-31','Y','43Y',0,0,0,'M','','','+91',9737587087,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 12:31:56','reception','2025-12-13 10:54:15'),(0,1670,'',0,'','PREMKUVARBEN VEGAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-10-31','Y','80Y',0,0,0,'F','','','+91',9725548105,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-31 12:36:19','','0000-00-00 00:00:00'),(0,1671,'',0,'','VIRJIBHAI RANIPA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-10-31','Y','73Y',0,0,0,'M','','','+91',9825346412,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 12:46:17','reception','2025-11-29 11:21:37'),(0,1672,'',0,'','BHAGVATIBEN TILAVAT','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1970-10-31','Y','55Y',0,0,0,'F','','','+91',9722655230,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-31 12:46:53','','0000-00-00 00:00:00'),(0,1673,'',0,'','NILESHBHAI D VIRADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-10-31','Y','47Y',0,0,0,'M','','','+91',7984566928,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 12:48:31','','0000-00-00 00:00:00'),(0,1674,'',0,'','FATMABEN A IBRANI','','','','',0,'TANKARA','TANKARA','GUJARAT','INDIA','1976-10-31','Y','49Y',0,0,0,'F','','','+91',9913790338,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 13:03:10','janvi','2025-11-29 12:41:12'),(0,1675,'',0,'','ANAKBHAI KACHAR                                                                                                                                                ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-31','Y','68Y',0,0,0,'M','','','+91',9712897999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 13:08:36','','0000-00-00 00:00:00'),(0,1676,'',0,'','GITABEN VACHHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-10-31','Y','50Y',0,0,0,'F','','','+91',8780154026,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 13:12:05','urvashi','2025-12-04 13:06:27'),(0,1677,'',0,'','VIKRAMSINH VADHER','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-10-31','Y','65Y',0,0,0,'M','','','+91',9726503793,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 13:13:47','','0000-00-00 00:00:00'),(0,1678,'',0,'','NIKHAT ANSARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-31','Y','36Y',0,0,0,'M','','','+91',9429090390,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 13:15:33','','0000-00-00 00:00:00'),(0,1679,'',0,'','KANJIBHAI M CHAUHAN','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1935-10-31','Y','90Y',0,0,0,'M','','','+91',9979006937,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 13:50:18','','0000-00-00 00:00:00'),(0,1680,'',0,'','OGHADBHAI DODIYA','','','VERAVAL','',0,'SOMNATH','SOMNATH','GUJARAT','INDIA','1944-10-31','Y','81Y',0,0,0,'M','','','+91',7698672826,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 14:10:30','vishal','2025-10-31 14:38:07'),(0,1681,'',0,'','UVESH IRFANBHAI SELOT','','','','',0,'GALIYADAR','GALIYADAR','GUJARAT','INDIA','2010-10-31','Y','15Y',0,0,0,'M','','','+91',6356080683,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 14:24:15','','0000-00-00 00:00:00'),(0,1682,'',0,'','ABIR BANDAVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-10-31','Y','19Y',0,0,0,'M','','','+91',9510139262,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 16:11:57','','0000-00-00 00:00:00'),(0,1683,'',0,'','BATULBEN T LOTIYA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1954-10-31','Y','71Y',0,0,0,'F','','','+91',9824844252,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 16:24:06','','0000-00-00 00:00:00'),(0,1684,'',0,'','KULDEEP GOHIL','','WIN - MEDI','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-10-31','Y','23Y',0,0,0,'M','','','+91',7819060902,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 16:26:50','','0000-00-00 00:00:00'),(0,1685,'',0,'','DEEPAK G KALOLA','','NYALI LIFE','','',0,'','','GUJARAT','INDIA','1975-10-31','Y','50Y',0,0,0,'M','','','+91',9723352997,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 16:34:22','reception','2025-12-17 16:43:43'),(0,1686,'',0,'','RASHMITABEN DHAMELIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-31','Y','42Y',0,0,0,'F','','','+91',9924014455,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 16:42:59','','0000-00-00 00:00:00'),(0,1687,'',0,'','BHADRESH M  RATHOD','','ZYDUS HEAL','','',0,'','','GUJARAT','INDIA','1990-10-31','Y','35Y',35,0,0,'M','','','+91',7878797980,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 16:46:12','reception','2025-11-14 16:35:04'),(0,1688,'',0,'','MEHULBHAI  GOSWAMI','','SWISS PHAR','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-31','Y','30Y',30,0,0,'M','','','+91',9904958168,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 16:47:26','reception','2025-10-31 16:58:35'),(0,1689,'',0,'','JALAMSINH CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-10-31','Y','57Y',0,0,0,'M','','','+91',9909008950,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 17:02:44','drashti','2025-11-27 16:26:49'),(0,1690,'',0,'','HASUMATIBEN H SEJPAL','','','','',0,'','','GUJARAT','INDIA','1959-10-31','Y','66Y',0,0,0,'F','','','+91',9426460258,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 17:07:46','','0000-00-00 00:00:00'),(0,1691,'',0,'','MURUBHAI ODEDARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-31','Y','45Y',0,0,0,'M','','','+91',8200089039,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-31 17:10:48','','0000-00-00 00:00:00'),(0,1692,'',0,'','KIRTIBEN M VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-31','Y','52Y',0,0,0,'F','','','+91',9016265156,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-31 17:12:30','','0000-00-00 00:00:00'),(0,1693,'',0,'','KRISHNABEN R AGHERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-31','Y','30Y',0,0,0,'F','','','+91',9979103817,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 17:12:52','','0000-00-00 00:00:00'),(0,1694,'',0,'','CHANDRIKABEN P FALDU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-10-31','Y','55Y',0,0,0,'F','','','+91',7567069595,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 17:15:19','reception','2025-11-15 10:53:54'),(0,1695,'',0,'','MANSURBHAI A BHARMAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1943-10-31','Y','82Y',0,0,0,'M','','','+91',9227648272,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 17:16:21','','0000-00-00 00:00:00'),(0,1696,'',0,'','MADHUBEN MAJITHIYA','','','','',0,'KESHOD','KESHOD','GUJARAT','INDIA','1962-10-31','Y','63Y',0,0,0,'F','','','+91',8160205670,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 17:20:25','','0000-00-00 00:00:00'),(0,1697,'',0,'','DILAY S BUDDHADEV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-31','Y','53Y',53,0,0,'M','','','+91',9825384040,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 17:23:59','reception','2025-12-12 16:35:30'),(0,1698,'',0,'','BHARATBHAI BHARDVA','','','','',0,'JAMANGAR','JAMANGAR','GUJARAT','INDIA','1953-10-31','Y','72Y',0,0,0,'M','','','+91',9427227415,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 17:37:17','reception','2025-12-18 12:51:44'),(0,1699,'',0,'','RASHMIBEN R VACHHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-10-31','Y','47Y',0,0,0,'F','','','+91',9426028763,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 17:43:43','','0000-00-00 00:00:00'),(0,1700,'',0,'','HETALBEN C KERADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-31','Y','36Y',0,0,0,'F','','','+91',9429979536,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 17:46:34','','0000-00-00 00:00:00'),(0,1701,'',0,'','VARSHABEN KOLI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-31','Y','53Y',53,0,0,'F','','','+91',9016535039,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-31 17:47:45','drashti','2025-11-22 11:53:52'),(0,1702,'',0,'','MEHULBHAI RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-10-31','Y','45Y',0,0,0,'M','','','+91',9723350350,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-31 17:49:18','','0000-00-00 00:00:00'),(0,1703,'',0,'','DHIRUGIRI GOSWAMI','','','JANGLSHWAR MAHADEV MANDIR','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-10-31','Y','75Y',0,0,0,'M','','','+91',9737777734,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 17:51:10','drashti','2025-12-11 18:34:51'),(0,1704,'',0,'','BHIMJIBHAI  KHACHARIYA','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1965-10-31','Y','60Y',0,0,0,'M','','','+91',9913343533,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 17:54:46','','0000-00-00 00:00:00'),(0,1705,'',0,'','HARSHAD J KOTECHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-10-31','Y','36Y',0,0,0,'M','','','+91',9825839935,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 18:01:59','reception','2025-12-18 19:38:47'),(0,1706,'',0,'','BHAVIKBHAI DHANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-10-31','Y','32Y',0,0,0,'M','','','+91',9426538380,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-31 18:02:40','shweta','2025-12-17 11:58:04'),(0,1707,'',0,'','VISHALBHAI R SODHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-10-31','Y','37Y',37,0,0,'M','','','+91',9725544401,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-31 18:07:27','janvi','2025-10-31 18:09:01'),(0,1708,'',0,'','KIRANBEN J BHADRU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-31','Y','42Y',0,0,0,'F','','','+91',9427727136,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 18:13:18','priyanshi','2025-11-11 18:43:48'),(0,1709,'',0,'','ANILBHAI PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-10-31','Y','68Y',0,0,0,'M','','','+91',9426909286,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 18:13:20','','0000-00-00 00:00:00'),(0,1710,'',0,'','MARUTIBHAI VACHHRAJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-10-31','Y','77Y',0,0,0,'M','','','+91',9408704312,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 18:15:23','','0000-00-00 00:00:00'),(0,1711,'',0,'','SHARDABEN JAGODARA','','','','',0,'TANKARA','TANKARA','GUJARAT','INDIA','1963-10-31','Y','62Y',0,0,0,'F','','','+91',9879966599,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 18:18:21','','0000-00-00 00:00:00'),(0,1712,'',0,'','DINESHBHAI J KHERADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-10-31','Y','72Y',0,0,0,'M','','','+91',9374116390,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 18:20:46','','0000-00-00 00:00:00'),(0,1713,'',0,'','KANAKBEN CHANDUBHAI DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1940-10-31','Y','85Y',0,0,0,'F','','','+91',9408938642,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 18:23:31','','0000-00-00 00:00:00'),(0,1714,'',0,'','VARSHABEN KOLI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-10-31','Y','53Y',0,0,0,'F','','','+91',9016535039,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-31 18:24:10','priyanshi','2025-11-22 11:45:31'),(0,1715,'',0,'','DAXABEN V RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-10-31','Y','46Y',0,0,0,'F','','','+91',9825784749,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-31 18:24:54','','0000-00-00 00:00:00'),(0,1716,'',0,'','VASANT MORVADIYA','','LA RENON H','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-10-31','Y','25Y',0,0,0,'M','','','+91',7961601001,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 18:29:00','','0000-00-00 00:00:00'),(0,1717,'',0,'','RASILABEN BHOJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-10-31','Y','80Y',0,0,0,'F','','','+91',8320649400,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 18:29:31','drashti','2025-12-01 18:01:44'),(0,1718,'',0,'','SAGARKUMAR POPATBHAI SHILU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-10-31','Y','30Y',30,0,0,'M','','','+91',9274900900,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-10-31 18:31:29','janvi','2025-10-31 18:33:37'),(0,1719,'',0,'','PRAKASHBHAI BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-10-31','Y','52Y',0,0,0,'M','','','+91',9714497176,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 18:31:54','drashti','2025-11-11 17:50:36'),(0,1720,'',0,'','CHETNABEN  M VASJADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-10-31','Y','40Y',0,0,0,'F','','','+91',9662096619,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 18:33:22','reception','2025-11-10 12:50:43'),(0,1721,'',0,'','ABHAYSINHBHAI M JARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-10-31','Y','64Y',0,0,0,'F','','','+91',9824459985,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 18:37:59','reception','2025-12-09 18:17:59'),(0,1722,'',0,'','PARFULBHAI MANVAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-10-31','Y','59Y',0,0,0,'M','','','+91',8128333334,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 18:38:54','','0000-00-00 00:00:00'),(0,1723,'',0,'','KRUTARTH R POTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-10-31','Y','21Y',0,0,0,'F','','','+91',9327135665,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 18:40:06','reception','2025-11-15 12:07:02'),(0,1724,'',0,'','SURESHBHAI DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1943-10-31','Y','82Y',0,0,0,'M','','','+91',9428465666,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 18:42:29','','0000-00-00 00:00:00'),(0,1725,'',0,'','SWATIBEN S SIRODARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-10-31','Y','33Y',0,0,0,'F','','','+91',9898538208,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 18:51:46','','0000-00-00 00:00:00'),(0,1726,'',0,'','DEVANGIBEN TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-10-31','Y','31Y',0,0,0,'F','','','+91',8238034442,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-10-31 19:29:24','','0000-00-00 00:00:00'),(0,1727,'',0,'','PRADIPBHAI SHIVANKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-10-31','Y','51Y',0,0,0,'M','','','+91',9822579739,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-10-31 19:38:59','','0000-00-00 00:00:00'),(0,1728,'',0,'','JAYSHREEBEN ONDHIYA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1964-10-31','Y','61Y',61,0,0,'F','','','+91',9662441600,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-10-31 20:56:06','reception','2025-12-03 13:37:29'),(0,1729,'',0,'','NIRAVBHAI MAHESHBHAI MEHTA','','','RAVI RATNA PARK, ST NO-4,','UNIVERSITY ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-10-31','Y','43Y',0,0,0,'M','','','+91',9913552721,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-10-31 21:08:03','drashti','2025-11-12 17:59:46'),(0,1730,'',0,'','VIJYABEN  SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-11-01','Y','37Y',0,0,0,'M','','','+91',8235818181,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-01 09:10:31','','0000-00-00 00:00:00'),(0,1731,'',0,'','PARAGBHAI SOJIYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-01','Y','32Y',0,0,0,'M','','','+91',8511753599,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-01 09:14:04','','0000-00-00 00:00:00'),(0,1732,'',0,'','DILIPBHAI MAVJIBHAI MEGHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-01','Y','42Y',0,0,0,'M','','','+91',9879240012,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 09:14:27','','0000-00-00 00:00:00'),(0,1733,'',0,'','KANCHANBEN D SOJITRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-01','Y','60Y',0,0,0,'F','','','+91',9510012249,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 09:16:11','reception','2025-11-13 11:12:30'),(0,1734,'',0,'','MIHIR KANGAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-11-01','Y','24Y',24,0,0,'M','','','+91',9327881351,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-01 09:16:34','urvashi','2025-11-01 09:18:29'),(0,1735,'',0,'','NASRUDDIN G SIPAI','','','','',0,'MANGROL','MANGROL','GUJARAT','INDIA','1977-11-01','Y','48Y',0,0,0,'M','','','+91',9714227865,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-01 09:47:22','','0000-00-00 00:00:00'),(0,1736,'',0,'','DILIPBHAI SOLANKI','','','','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1982-11-01','Y','43Y',0,0,0,'M','','','+91',9979713445,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 09:48:44','reception','2025-11-29 09:26:58'),(0,1737,'',0,'','CHANDRIKABEN  SANGANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-11-01','Y','76Y',0,0,0,'F','','','+91',9824218204,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 10:13:27','','0000-00-00 00:00:00'),(0,1738,'',0,'','ANITABEN KOTADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-01','Y','45Y',0,0,0,'F','','','+91',9157008020,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-01 10:19:30','reception','2025-11-11 09:52:18'),(0,1739,'',0,'','FAIZALBHAI A MAHIDA','','','','',0,'MANGROL','MANGROL','GUJARAT','INDIA','1993-11-01','Y','32Y',0,0,0,'M','','','+91',9737742204,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 10:21:56','','0000-00-00 00:00:00'),(0,1740,'',0,'','AMRUTLALBHAI R PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-01','Y','72Y',0,0,0,'M','','','+91',8128500966,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-01 10:23:39','manshi','2025-12-08 17:42:30'),(0,1741,'',0,'','RAMDEBHAI SIDA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1975-11-01','Y','50Y',0,0,0,'M','','','+91',7046814012,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-01 10:25:04','','0000-00-00 00:00:00'),(0,1742,'',0,'','PRABHABEN J RAJODIYA','','','','',0,'SURAT','SURAT','GUJARAT','INDIA','1963-11-01','Y','62Y',0,0,0,'F','','','+91',9825313123,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 10:33:26','','0000-00-00 00:00:00'),(0,1743,'',0,'','URMILABEN B MEHTA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1968-11-01','Y','57Y',0,0,0,'F','','','+91',9825995356,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 10:36:28','','0000-00-00 00:00:00'),(0,1744,'',0,'','RINKUBEN DHRANGDHARIA','','','','',0,'PADDHRI','PADDHRI','GUJARAT','INDIA','1995-11-01','Y','30Y',0,0,0,'F','','','+91',7016176010,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 10:46:17','reception','2025-12-12 16:32:13'),(0,1745,'',0,'','NAMANBHAI OZA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-11-01','Y','24Y',0,0,0,'M','','','+91',8866504560,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-01 10:47:40','janvi','2025-11-24 12:00:28'),(0,1746,'',0,'','ILABEN P KOTHARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-01','Y','72Y',0,0,0,'F','','','+91',9898565429,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 10:48:40','','0000-00-00 00:00:00'),(0,1747,'',0,'','PIYUSHBHAI B DHANJA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1994-11-01','Y','31Y',0,0,0,'M','','','+91',9712280451,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-01 10:48:41','manshi','2025-12-01 10:17:04'),(0,1748,'',0,'','HARSHADRAY PREMSHANKAR VYAS','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1958-11-01','Y','67Y',0,0,0,'M','','','+91',9426477743,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-01 10:49:15','','0000-00-00 00:00:00'),(0,1749,'',0,'','ANKITBHAI KOTADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-01','Y','31Y',0,0,0,'M','','','+91',7016061837,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-01 10:51:42','','0000-00-00 00:00:00'),(0,1750,'',0,'','PRABHULAL B. THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-01','Y','70Y',0,0,0,'M','','','+91',9428791962,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-01 10:54:55','drashti','2025-11-29 12:15:16'),(0,1751,'',0,'','LILABHAI M. ODEDRA','','','','',0,'KUTIYANA','KUTIYANA','GUJARAT','INDIA','1981-11-01','Y','44Y',0,0,0,'M','','','+91',9925544198,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 11:00:32','','0000-00-00 00:00:00'),(0,1752,'',0,'','SHITALBEN V POLRA','','','','',0,'JETALSAR','JETALSAR','GUJARAT','INDIA','1986-11-01','Y','39Y',39,0,0,'F','','','+91',9426483846,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 11:08:42','reception','2025-11-01 11:12:37'),(0,1753,'',0,'','DEVRAJBHAI KAKANIYA','','','','',0,'ADBALKA','ADBALKA','GUJARAT','INDIA','1980-11-01','Y','45Y',0,0,0,'M','','','+91',6352610363,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-01 11:12:02','','0000-00-00 00:00:00'),(0,1754,'',0,'','RASIKBA RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-11-01','Y','68Y',68,0,0,'F','','','+91',9879221630,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-01 11:12:24','drashti','2025-11-01 13:12:27'),(0,1755,'',0,'','NILAMBEN NATHWANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-01','Y','75Y',0,0,0,'F','','','+91',9426447797,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-01 11:15:33','','0000-00-00 00:00:00'),(0,1756,'',0,'','ASHOKBHAI A D  DESANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-01','Y','62Y',0,0,0,'M','','','+91',9909605057,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 11:15:51','','0000-00-00 00:00:00'),(0,1757,'',0,'','AMIT KAMARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-11-01','Y','41Y',0,0,0,'M','','','+91',9913149356,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-01 11:16:08','drashti','2025-11-11 10:10:39'),(0,1758,'',0,'','VIVEKBHAI SONCHHATRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-01','Y','31Y',0,0,0,'M','','','+91',9033403073,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 11:17:40','reception','2025-11-18 12:38:25'),(0,1759,'',0,'','JIGNESHBHAI GOHIL','','','','',0,'HADVAD MORBI','HADVAD MORBI','GUJARAT','INDIA','1988-11-01','Y','37Y',0,0,0,'M','','','+91',9727631314,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-01 11:19:52','priyanshi','2025-12-15 11:49:04'),(0,1760,'',0,'','SANGITABEN  N CHAVDA','','','','',0,'NAVAGAM','NAVAGAM','GUJARAT','INDIA','1981-11-01','Y','44Y',0,0,0,'F','','','+91',9978334336,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 11:19:57','','0000-00-00 00:00:00'),(0,1761,'',0,'','BHANJIBHAI CHAUHAN','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1975-11-01','Y','50Y',0,0,0,'M','','','+91',9925870456,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-01 11:22:47','','0000-00-00 00:00:00'),(0,1762,'',0,'','SONALBEN M GOSAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-11-01','Y','38Y',0,0,0,'F','','','+91',9924822320,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-01 11:25:53','','0000-00-00 00:00:00'),(0,1763,'',0,'','SATA MITESH GIRDHARLAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-01-10','N','59Y',59,0,0,'M','','','+91',9426987911,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-01 11:31:22','urvashi','2025-12-15 18:21:04'),(0,1764,'',0,'','DINABEN L DESAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-11-01','Y','68Y',0,0,0,'F','','','+91',9879019909,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 11:40:55','','0000-00-00 00:00:00'),(0,1765,'',0,'','PUSHPABEN A VALA','','','','',0,'DOLASA','DOLASA','GUJARAT','INDIA','1986-11-01','Y','39Y',0,0,0,'F','','','+91',9687440954,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 11:45:18','reception','2025-12-04 19:17:03'),(0,1766,'',0,'','KHIMABHAI H BARAD','','','','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1961-11-01','Y','64Y',64,0,0,'M','','','+91',7623947765,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-01 11:46:19','janvi','2025-11-01 12:05:48'),(0,1767,'',0,'','RASHIKBHAI H PANDIYA','','','','',0,'','','GUJARAT','INDIA','1936-11-01','Y','89Y',0,0,0,'F','','','+91',9409663971,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 11:48:44','','0000-00-00 00:00:00'),(0,1768,'',0,'','MUFADDAL BHARMAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-11-01','Y','19Y',19,0,0,'M','','','+91',9428295211,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-01 11:56:09','janvi','2025-11-01 11:57:10'),(0,1769,'',0,'','DIVYABEN GOSWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-11-01','Y','30Y',0,0,0,'F','','','+91',9624375599,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 12:00:18','reception','2025-11-28 17:42:51'),(0,1770,'',0,'','KANTIBHAI M BODA','','','','',0,'PADDHRI','PADDHRI','GUJARAT','INDIA','1960-11-01','Y','65Y',0,0,0,'M','','','+91',9099195071,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 12:03:54','','0000-00-00 00:00:00'),(0,1771,'',0,'','HANSHABEN V PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-01','Y','75Y',0,0,0,'M','','','+91',9712197397,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-01 12:17:12','','0000-00-00 00:00:00'),(0,1772,'',0,'','RAZAKBHAI BAVAMIYA SHEKH FAKIR','','','RAIYA ROAD, SHIVPARA ST NO-6,','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-01-01','N','62Y',0,0,0,'M','','','+91',9624242216,'+91',9328395479,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-01 12:19:42','vishal','2025-11-01 12:25:45'),(0,1773,'',0,'','AMITBHAI BHIMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-11-01','Y','38Y',0,0,0,'M','','','+91',9099904257,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-01 12:20:46','','0000-00-00 00:00:00'),(0,1774,'',0,'','KISHORBHAI V  DODIYA','','','','',0,'PADDHRI','PADDHRI','GUJARAT','INDIA','1980-11-01','Y','45Y',0,0,0,'M','','','+91',9601768282,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 12:23:22','','0000-00-00 00:00:00'),(0,1775,'',0,'','KOMALBEN J TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-01','Y','35Y',0,0,0,'F','','','+91',9327882263,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 12:26:57','drashti','2025-11-21 12:05:37'),(0,1776,'',0,'','SHANTIBHAI H JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-01','Y','67Y',0,0,0,'M','','','+91',9624329209,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-01 12:34:17','','0000-00-00 00:00:00'),(0,1777,'',0,'','VICKY CHAUDHRY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-11-01','Y','29Y',0,0,0,'M','','','+91',6306664146,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-01 12:45:05','','0000-00-00 00:00:00'),(0,1778,'',0,'','GIRDHARBHAI N SONGRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-01','Y','55Y',55,0,0,'M','','','+91',9099633835,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 12:49:04','reception','2025-11-19 17:11:07'),(0,1779,'',0,'','JIGNESHBHAI PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-01','Y','48Y',0,0,0,'M','','','+91',9879577996,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 12:51:49','reception','2025-12-08 09:58:47'),(0,1780,'',0,'','SHARMILABEN S BHIMANI','','','','',0,'JODIYA','JODIYA','GUJARAT','INDIA','1975-11-01','Y','50Y',0,0,0,'F','','','+91',9662141280,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 12:54:56','reception','2025-11-11 10:46:11'),(0,1781,'',0,'','RASMIKANTBHAI V SHUKLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1934-11-01','Y','91Y',0,0,0,'M','','','+91',9725063634,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-01 12:57:17','','0000-00-00 00:00:00'),(0,1782,'',0,'','SHIVANGIBEN P JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-11-01','Y','26Y',0,0,0,'F','','','+91',9328068762,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-01 12:58:28','drashti','2025-11-08 12:38:15'),(0,1783,'',0,'','DEVABHAI K CHAVADIYA','','','','',0,'PADDHRI','PADDHRI','GUJARAT','INDIA','1975-11-01','Y','50Y',50,0,0,'M','','','+91',9601600055,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 16:26:55','reception','2025-11-01 17:25:53'),(0,1784,'',0,'','MANJUBEN SAVALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-01','Y','60Y',0,0,0,'F','','','+91',7016315597,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-01 17:05:54','','0000-00-00 00:00:00'),(0,1785,'',0,'','MUKULBHAI M JANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-11-01','Y','63Y',0,0,0,'M','','','+91',9067688991,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-01 17:30:57','','0000-00-00 00:00:00'),(0,1786,'',0,'','SAMJIBHAI V JETHVA ','','','','',0,'JAMANGAR','JAMANGAR','GUJARAT','INDIA','1963-11-01','Y','62Y',0,0,0,'M','','','+91',9016244041,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-01 18:08:43','','0000-00-00 00:00:00'),(0,1787,'',0,'','HITESHBHAI SAKARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-01','Y','50Y',0,0,0,'M','','','+91',6355353795,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-01 18:09:06','','0000-00-00 00:00:00'),(0,1788,'',0,'','KRUPALIBA YOGIRAJSINH JADEJA','','','VILLAGE DAIRY,','KALAWAD',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1998-11-01','Y','27Y',0,0,0,'F','','','+91',8469304537,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-01 18:17:46','janvi','2025-12-09 18:02:21'),(0,1789,'',0,'','RIPALBEN RAYTHATHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-11-01','Y','43Y',0,0,0,'F','','','+91',9586405532,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-01 19:19:32','manshi','2025-11-07 19:03:46'),(0,1790,'',0,'','TULSI PARESHBHAI JOTANIA','','','SHASTRINAGAR STREET NO-4 MAVDI CHOWKDI SHIVALAY AP','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-11-01','Y','19Y',0,0,0,'F','','','+91',8200176407,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-01 19:52:30','','0000-00-00 00:00:00'),(0,1791,'',0,'','VIRAJBHAI TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-11-01','Y','38Y',0,0,0,'M','','','+91',9429809710,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-01 20:09:23','','0000-00-00 00:00:00'),(0,1792,'',0,'','AARYAN THAVRANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2013-11-01','Y','12Y',0,0,0,'M','','','+91',9904225745,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-01 20:34:49','janvi','2025-11-04 18:26:55'),(0,1793,'',0,'','DEVAYATBHAI KACHOT','','','','',0,'SOMNATH','SOMNATH','GUJARAT','INDIA','1984-11-02','Y','41Y',0,0,0,'M','','','+91',9913704646,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-02 11:51:49','','0000-00-00 00:00:00'),(0,1794,'',0,'','DINESHBHAI H RAM','','','','',0,'SOMNATH','SOMNATH','GUJARAT','INDIA','1998-11-02','Y','27Y',0,0,0,'M','','','+91',9537324499,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-02 12:51:52','','0000-00-00 00:00:00'),(0,1795,'',0,'','DINESHBHAI  RAM','','','SOMANTH ','',0,'SUTRAPADA','SUTRAPADA','GUJARAT','INDIA','1997-11-02','Y','28Y',0,0,0,'M','','','+91',9586579517,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-02 13:04:43','manshi','2025-11-12 13:10:26'),(0,1796,'',0,'','PUNEETBHAI TOMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-03','Y','35Y',0,0,0,'M','','','+91',7988081770,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-03 09:08:33','','0000-00-00 00:00:00'),(0,1797,'',0,'','ARVINDBHAI P TRADA','','','','',0,'SURAT','SURAT','GUJARAT','INDIA','1970-11-03','Y','55Y',55,0,0,'M','','','+91',9879458558,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 09:08:39','reception','2025-12-19 09:49:05'),(0,1798,'',0,'','SANDIPBHAI A VASANVALA','','','','',0,'SURAT','SURAT','GUJARAT','INDIA','1961-11-03','Y','64Y',0,0,0,'M','','','+91',9879458558,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 09:11:15','reception','2025-12-19 09:47:57'),(0,1799,'',0,'','ASHOKBHAI SAU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-03','Y','62Y',0,0,0,'M','','','+91',9428052206,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-03 09:11:40','','0000-00-00 00:00:00'),(0,1800,'',0,'','DIGNABEN AAMRANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-11-03','Y','33Y',0,0,0,'F','','','+91',9979882438,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 09:22:11','','0000-00-00 00:00:00'),(0,1801,'',0,'','SHIVBHAI JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-11-03','Y','27Y',0,0,0,'M','','','+91',9913600302,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-03 09:26:19','','0000-00-00 00:00:00'),(0,1802,'',0,'','HITESHBHAI CHHAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-11-03','Y','28Y',28,0,0,'M','','','+91',9328552802,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-03 09:50:38','janvi','2025-11-03 09:51:26'),(0,1803,'',0,'','GORDHANBHAI R TALAVIYA','','','','',0,'JETALSAR','JETALSAR','GUJARAT','INDIA','1970-11-03','Y','55Y',0,0,0,'M','','','+91',9723797314,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 09:52:42','','0000-00-00 00:00:00'),(0,1804,'',0,'','MAYABEN R  GANDHI','','','','',0,'DWARKA','DWARKA','GUJARAT','INDIA','1973-11-03','Y','52Y',52,0,0,'F','','','+91',8238404032,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 10:00:11','reception','2025-11-13 10:37:26'),(0,1805,'',0,'','NOMANBHAI M BHARMAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-11-03','Y','71Y',0,0,0,'M','','','+91',9824581152,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 10:20:56','reception','2025-11-12 18:04:53'),(0,1806,'',0,'','CHANDUBHAI CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-11-03','Y','79Y',0,0,0,'M','','','+91',6352291002,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-03 10:35:22','','0000-00-00 00:00:00'),(0,1807,'',0,'','BHOGILAL M RAICHURA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-11-03','Y','77Y',0,0,0,'M','','','+91',9824300451,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 10:38:28','','0000-00-00 00:00:00'),(0,1808,'',0,'','JAYANTILAL S RAMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-03','Y','60Y',0,0,0,'M','','','+91',9662635554,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-03 10:41:16','','0000-00-00 00:00:00'),(0,1809,'',0,'','JAYANTILAL S RAMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-03','Y','60Y',0,0,0,'M','','','+91',9662635554,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-03 10:42:52','janvi','2025-11-05 10:46:17'),(0,1810,'',0,'','BHARTIBEN R LADANI','','','','',0,'TALALA','TALALA','GUJARAT','INDIA','1965-11-03','Y','60Y',0,0,0,'F','','','+91',9601778870,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 10:44:25','','0000-00-00 00:00:00'),(0,1811,'',0,'','GULSANBEN AMROLIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-03','Y','45Y',0,0,0,'F','','','+91',9737121348,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 10:48:28','reception','2025-12-19 17:20:02'),(0,1812,'',0,'','CHANDUBHAI CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-11-03','Y','79Y',0,0,0,'M','','','+91',6352291002,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-03 10:48:48','','0000-00-00 00:00:00'),(0,1813,'',0,'','LATABEN B BHALODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-03','Y','62Y',0,0,0,'F','','','+91',9409673264,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 10:51:10','reception','2025-11-13 10:00:25'),(0,1814,'',0,'','RAMCHANDBHAI S MOTVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-03','Y','72Y',0,0,0,'M','','','+91',9662775502,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-03 10:51:39','','0000-00-00 00:00:00'),(0,1815,'',0,'','DIMPALBEN BHANDERI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-03','Y','35Y',0,0,0,'F','','','+91',9824299290,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 10:58:01','','0000-00-00 00:00:00'),(0,1816,'',0,'','MANSUKHBHAI  N VASHOYA','','','','',0,'SARDHAR','SARDHAR','GUJARAT','INDIA','1969-11-03','Y','56Y',0,0,0,'M','','','+91',9429168532,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 10:59:35','','0000-00-00 00:00:00'),(0,1817,'',0,'','RAHULBHAI PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-03','Y','32Y',0,0,0,'M','','','+91',7778977758,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-03 11:00:59','','0000-00-00 00:00:00'),(0,1818,'',0,'','JOSHNABEN PARMAR','','','','',0,'MANGROL','MANGROL','GUJARAT','INDIA','1980-11-03','Y','45Y',0,0,0,'F','','','+91',9824148401,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 11:01:08','','0000-00-00 00:00:00'),(0,1819,'',0,'','BHARGAV CHARANIYA','','','','',0,'DIU','DIU','GUJARAT','INDIA','2002-11-03','Y','23Y',0,0,0,'M','','','+91',9265978775,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 11:02:55','','0000-00-00 00:00:00'),(0,1820,'',0,'','DHIRUBHA B RANA','','','','',0,'SURENDRANAGAR','SURENDRANAGAR','GUJARAT','INDIA','1949-11-03','Y','76Y',0,0,0,'M','','','+91',9924067537,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-03 11:05:05','janvi','2025-11-07 11:59:14'),(0,1821,'',0,'','JAYSHREEBEN L FEFAR','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1988-11-03','Y','37Y',0,0,0,'F','','','+91',9879035175,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-03 11:07:03','janvi','2025-12-02 18:43:47'),(0,1822,'',0,'','RAMESHBHAI PANCHASARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-11-03','Y','63Y',0,0,0,'M','','','+91',9925872172,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-03 11:15:36','reception','2025-12-03 10:32:00'),(0,1823,'',0,'','ARUNABEN H BAMANIYA','','','','',0,'LONDON','LONDON','GUJARAT','INDIA','1966-11-03','Y','59Y',59,0,0,'F','','','+91',9978712376,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 11:15:38','reception','2025-11-03 12:56:52'),(0,1824,'',0,'','YAJI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-11-03','Y','26Y',0,0,0,'F','','','+91',8730021869,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 11:21:02','','0000-00-00 00:00:00'),(0,1825,'',0,'','DHARMENDRABHAI R MOYA','','','','',0,'DWARKA','DWARKA','GUJARAT','INDIA','1984-11-03','Y','41Y',0,0,0,'M','','','+91',9601670600,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 11:30:13','','0000-00-00 00:00:00'),(0,1826,'',0,'','JAYANT GOVINDJI KHAGRAM','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-11-03','Y','79Y',0,0,0,'M','','','+91',9825076297,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-03 11:31:03','janvi','2025-12-01 12:59:26'),(0,1827,'',0,'','MEENA JYANT KHAGRAM','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-11-03','Y','77Y',0,0,0,'F','','','+91',9825076297,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-03 11:34:30','','0000-00-00 00:00:00'),(0,1828,'',0,'','NARENDRABHAI B ROKAD','','','','',0,'KUKAVADIYA','KUKAVADIYA','GUJARAT','INDIA','1970-11-03','Y','55Y',0,0,0,'M','','','+91',9327806056,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 11:36:05','','0000-00-00 00:00:00'),(0,1829,'',0,'','SURESHBHAI M PANCHMATIYA','','','','',0,'MITHAPUR','MITHAPUR','GUJARAT','INDIA','1976-11-03','Y','49Y',0,0,0,'M','','','+91',9228829765,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 11:53:42','reception','2025-12-11 10:47:06'),(0,1830,'',0,'','GORDHANBHAI DADHANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-03','Y','75Y',0,0,0,'M','','','+91',9998042408,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 11:58:40','','0000-00-00 00:00:00'),(0,1831,'',0,'','RINABEN PARESHBHAI POKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-03','Y','48Y',0,0,0,'F','','','+91',9825052506,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-03 12:04:10','','0000-00-00 00:00:00'),(0,1832,'',0,'','MAHESHBHAI AADROJA','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1993-11-03','Y','32Y',0,0,0,'M','','','+91',9586367752,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-03 12:06:58','','0000-00-00 00:00:00'),(0,1833,'',0,'','RANJANBEN S NATHWANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-03','Y','44Y',0,0,0,'F','','','+91',9824950109,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 12:07:37','','0000-00-00 00:00:00'),(0,1834,'',0,'','FIROZBHAI MANDRA','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1980-11-03','Y','45Y',0,0,0,'M','','','+91',9924783428,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 12:13:48','reception','2025-12-06 10:06:30'),(0,1835,'',0,'','RASILABEN KADIVAR','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1970-11-03','Y','55Y',0,0,0,'M','','','+91',6352996842,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 12:16:42','reception','2025-12-18 11:06:29'),(0,1836,'',0,'','NIRALIBEN POPAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-11-03','Y','30Y',0,0,0,'F','','','+91',9925475490,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-03 12:17:33','','0000-00-00 00:00:00'),(0,1837,'',0,'','VIPULBHAI THAKKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-03','Y','44Y',0,0,0,'M','','','+91',9879121312,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-03 12:23:06','','0000-00-00 00:00:00'),(0,1838,'',0,'','RAMABEN A VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-01','N','62Y',0,0,0,'F','','','+91',9898317569,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-03 12:27:34','','0000-00-00 00:00:00'),(0,1839,'',0,'','UKABHAI K KHER ','','','','',0,'MANGROL','MANGROL','GUJARAT','INDIA','1943-11-03','Y','82Y',0,0,0,'M','','','+91',9227733140,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 12:29:30','','0000-00-00 00:00:00'),(0,1840,'',0,'','DHARABEN DUDHREJIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-11-03','Y','25Y',0,0,0,'F','','','+91',9107967973,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-03 12:34:18','janvi','2025-11-21 10:09:18'),(0,1841,'',0,'','BHAVDEEPBHAI RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-11-03','Y','21Y',0,0,0,'M','','','+91',9265277355,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 12:34:28','reception','2025-12-10 18:47:17'),(0,1842,'',0,'','ARUNABEN I ANANDJIVALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-03','Y','72Y',0,0,0,'F','','','+91',9824291525,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 12:36:47','reception','2025-12-18 18:30:31'),(0,1843,'',0,'','SHARIFBHAI S VIRANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-03','Y','32Y',0,0,0,'M','','','+91',8200918908,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-03 12:37:16','','0000-00-00 00:00:00'),(0,1844,'',0,'','REKHABEN G BHINDE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-11-03','Y','74Y',0,0,0,'F','','','+91',9662300012,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 12:46:08','','0000-00-00 00:00:00'),(0,1845,'',0,'','CHARMIBEN D GONDALIYA','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1996-11-03','Y','29Y',0,0,0,'F','','','+91',9978639022,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 12:52:13','','0000-00-00 00:00:00'),(0,1846,'',0,'','DILIPBHAI MITHANI','','','OPEC HEIGHTS,','PATIDAR CHOWK, SADHU VASVANI ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-11-03','Y','77Y',0,0,0,'M','','','+91',9574596017,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-03 13:04:41','','0000-00-00 00:00:00'),(0,1847,'',0,'','DEVANSH RANGANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2014-11-03','Y','11Y',0,0,0,'M','','','+91',9909960199,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-03 13:26:19','','0000-00-00 00:00:00'),(0,1848,'',0,'','KUSUMBEN  Y VALA ','','','','',0,'KODINAR','KODINAR','GUJARAT','INDIA','1984-11-03','Y','41Y',0,0,0,'F','','','+91',9725504290,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-03 14:05:14','','0000-00-00 00:00:00'),(0,1849,'',0,'','DRUPADBA H JADEJA','','','','',0,'KALAWAD','KALAWAD','GUJARAT','INDIA','1971-11-03','Y','54Y',54,0,0,'F','','','+91',8200551129,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-03 14:27:22','priyanshi','2025-11-03 14:28:25'),(0,1850,'',0,'','HASTI P BHAGDEV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2013-11-03','Y','12Y',0,0,0,'F','','','+91',8460080414,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-03 15:07:43','','0000-00-00 00:00:00'),(0,1851,'',0,'','RUPAL M MONANI','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1974-11-03','Y','51Y',0,0,0,'F','','','+91',9879401301,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 16:15:04','','0000-00-00 00:00:00'),(0,1852,'',0,'','BEENABEN S KOTAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-11-03','Y','41Y',0,0,0,'F','','','+91',9426165231,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 16:21:51','reception','2025-11-13 16:39:42'),(0,1853,'',0,'','MANISHABA KHERADIYA','','','','',0,'VAJDI','VAJDI','GUJARAT','INDIA','1988-11-03','Y','37Y',0,0,0,'F','','','+91',9725653555,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 16:27:17','reception','2025-12-03 11:42:44'),(0,1854,'',0,'','JEELBHAI TILALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-11-03','Y','27Y',27,0,0,'M','','','+91',9924211174,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-03 17:03:50','drashti','2025-11-03 17:07:12'),(0,1855,'',0,'','CHHAGANBHAI S KANJIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-11-03','Y','69Y',0,0,0,'M','','','+91',9016547167,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 17:07:38','','0000-00-00 00:00:00'),(0,1856,'',0,'','BHIKHABHAI M VIRADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-11-03','Y','66Y',0,0,0,'M','','','+91',9974555515,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-03 17:08:49','','0000-00-00 00:00:00'),(0,1857,'',0,'','MAGANBHAI T SADHARIYA','','','','',0,'OTALA','OTALA','GUJARAT','INDIA','1950-11-03','Y','75Y',0,0,0,'M','','','+91',9724140437,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 17:09:51','reception','2025-12-17 17:40:15'),(0,1858,'',0,'','DEVYANIBEN PATHAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-03','Y','72Y',72,0,0,'F','','','+91',9426973000,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 17:14:56','reception','2025-11-03 17:29:34'),(0,1859,'',0,'','HEENABEN MATRAVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-11-03','Y','38Y',0,0,0,'F','','','+91',9426830473,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 17:17:23','','0000-00-00 00:00:00'),(0,1860,'',0,'','MULJIBHAI N NARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-03','Y','52Y',0,0,0,'M','','','+91',8849213588,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-03 17:23:08','','0000-00-00 00:00:00'),(0,1861,'',0,'','VASIB BADI','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','2006-11-03','Y','19Y',0,0,0,'M','','','+91',7984469672,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 17:44:54','reception','2025-11-25 17:05:06'),(0,1862,'',0,'','PALLVIBEN TANNA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-03','Y','62Y',62,0,0,'F','','','+91',9537440010,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 17:51:39','reception','2025-11-05 17:50:31'),(0,1863,'',0,'','KARISHA TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-11-03','Y','22Y',0,0,0,'F','','','+91',9825313813,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-03 18:00:34','','0000-00-00 00:00:00'),(0,1864,'',0,'','SHILABEN TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-03','Y','48Y',0,0,0,'F','','','+91',9974791313,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-03 18:03:36','','0000-00-00 00:00:00'),(0,1865,'',0,'','LATABEN S CHAUHAN ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-11-03','Y','59Y',0,0,0,'F','','','+91',7383111254,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 18:05:46','','0000-00-00 00:00:00'),(0,1866,'',0,'','SACHINBHAI S GOHEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-03','Y','48Y',0,0,0,'M','','','+91',9601631999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 18:07:35','','0000-00-00 00:00:00'),(0,1867,'',0,'','JAYDEVBHAI A KAKADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-11-03','Y','43Y',43,0,0,'M','','','+91',9824115954,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 18:09:58','reception','2025-11-03 18:33:08'),(0,1868,'',0,'','SAVITABEN DANDIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-11-03','Y','79Y',79,0,0,'F','','','+91',8128046478,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-03 18:10:06','shweta','2025-11-03 18:22:13'),(0,1869,'',0,'','NISHABEN PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-03','Y','36Y',0,0,0,'F','','','+91',9714235245,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-03 18:10:32','','0000-00-00 00:00:00'),(0,1870,'',0,'','AYUSH S NAKUM','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2018-11-03','Y','07Y0M',0,0,0,'M','','','+91',9879778332,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 18:12:12','reception','2025-11-12 10:34:52'),(0,1871,'',0,'','BHAVINBHAI BHARADVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-03','Y','36Y',0,0,0,'M','','','+91',9537622244,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 18:20:08','','0000-00-00 00:00:00'),(0,1872,'',0,'','NITABEN PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-03','Y','60Y',0,0,0,'F','','','+91',8511600529,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-03 18:21:37','manshi','2025-11-24 17:38:29'),(0,1873,'',0,'','EKTABEN KALAWADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-03','Y','31Y',0,0,0,'F','','','+91',8347000033,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 18:23:30','reception','2025-12-09 17:59:57'),(0,1874,'',0,'','NALINIBEN K JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-11-03','Y','79Y',0,0,0,'F','','','+91',9347292178,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-03 18:27:48','','0000-00-00 00:00:00'),(0,1875,'',0,'','BHAVIKABEN RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-11-03','Y','41Y',0,0,0,'F','','','+91',9925206386,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-03 18:29:29','','0000-00-00 00:00:00'),(0,1876,'',0,'','DIVYSMITABEN RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-03','Y','67Y',0,0,0,'F','','','+91',9925206986,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-03 18:30:31','','0000-00-00 00:00:00'),(0,1877,'',0,'','SHOBHNABEN DETROJA','','','','',0,'SURAT','SURAT','GUJARAT','INDIA','1974-11-03','Y','51Y',0,0,0,'M','','','+91',9427424513,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 18:30:57','','0000-00-00 00:00:00'),(0,1878,'',0,'','HETAL MAHESHBHAI SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-12-12','Y','41Y',0,0,0,'F','','','+91',9737645707,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-03 18:33:11','janvi','2025-12-12 11:10:38'),(0,1879,'',0,'','DR. JAYDEEP PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-11-03','Y','27Y',0,0,0,'M','','','+91',9726612128,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 18:43:35','','0000-00-00 00:00:00'),(0,1880,'',0,'','GAJRAJSINH B  KHERADIYA','','','','',0,'LODHIKA','LODHIKA','GUJARAT','INDIA','1985-11-03','Y','40Y',0,0,0,'M','','','+91',9724428787,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 18:45:22','reception','2025-12-01 16:52:01'),(0,1881,'',0,'','PARTHBHAI DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-03','Y','42Y',0,0,0,'M','','','+91',9428299697,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-03 19:01:49','','0000-00-00 00:00:00'),(0,1882,'',0,'','KETANBHAI PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-03','Y','57Y',0,0,0,'M','','','+91',7016272606,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-03 19:05:58','','0000-00-00 00:00:00'),(0,1883,'',0,'','JAYSHREEBEN D SONDARVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-11-03','Y','41Y',0,0,0,'F','','','+91',9429550637,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-03 19:29:02','janvi','2025-11-25 20:02:16'),(0,1884,'',0,'','JITESHBHAI P GONDALIYA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1988-11-03','Y','37Y',0,0,0,'M','','','+91',9662311964,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-03 19:30:05','','0000-00-00 00:00:00'),(0,1885,'',0,'','RISHI BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2009-11-03','Y','16Y',0,0,0,'M','','','+91',9427122539,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-03 19:40:47','','0000-00-00 00:00:00'),(0,1886,'',0,'','KAJALBEN DAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-11-03','Y','34Y',0,0,0,'F','','','+91',9265206339,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-03 19:48:33','','0000-00-00 00:00:00'),(0,1887,'',0,'','NISHABEN BERADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-11-03','Y','19Y',19,0,0,'F','','','+91',9998606841,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-03 19:53:20','reception','2025-12-22 16:56:45'),(0,1888,'',0,'','NAVINBHAI KOTAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-11-04','Y','76Y',0,0,0,'M','','','+91',9825722293,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 09:10:38','','0000-00-00 00:00:00'),(0,1889,'',0,'','ASHISHBHAI GARCHAR','','','','',0,'KESHOD','KESHOD','GUJARAT','INDIA','1974-11-04','Y','51Y',0,0,0,'M','','','+91',9638918999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 09:29:40','','0000-00-00 00:00:00'),(0,1890,'',0,'','BHANUBEN J TALA','','','','',0,'NAVAGAM','NAVAGAM','GUJARAT','INDIA','1970-11-04','Y','55Y',0,0,0,'F','','','+91',8160159709,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 09:32:32','reception','2025-12-17 10:12:39'),(0,1891,'',0,'','MANUBHAI HUMBAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-04','Y','50Y',0,0,0,'M','','','+91',9979543721,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 10:07:55','','0000-00-00 00:00:00'),(0,1892,'',0,'','KANCHANBEN VIRANI','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1974-11-04','Y','51Y',0,0,0,'F','','','+91',9712874780,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-04 10:12:03','','0000-00-00 00:00:00'),(0,1893,'',0,'','BHAUTIKBHAI R CHOVATIYA','','','','',0,'VADAL','VADAL','GUJARAT','INDIA','1998-11-04','Y','27Y',0,0,0,'M','','','+91',9033812295,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 10:19:33','','0000-00-00 00:00:00'),(0,1894,'',0,'','RAJESHBHAI KACHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-04','Y','62Y',0,0,0,'M','','','+91',9427887602,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-04 10:19:39','','0000-00-00 00:00:00'),(0,1895,'',0,'','DIPAKBHAI VAJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-04','Y','32Y',0,0,0,'M','','','+91',6352213505,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 10:23:39','','0000-00-00 00:00:00'),(0,1896,'',0,'','SAVITABEN G THAKRAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1938-11-04','Y','87Y',0,0,0,'F','','','+91',9924022969,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 10:24:45','reception','2025-11-24 09:58:16'),(0,1897,'',0,'','JIVUBEN B  MAKWANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-11-04','Y','58Y',0,0,0,'M','','','+91',9638515111,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 10:33:22','','0000-00-00 00:00:00'),(0,1898,'',0,'','RAJESHBHAI A DHAVAD','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1966-11-04','Y','59Y',0,0,0,'M','','','+91',8758661987,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 10:38:21','reception','2025-12-19 10:57:37'),(0,1899,'',0,'','SANJAYBHAI KHUNGALA','','','','',0,'PADADHARI','PADADHARI','GUJARAT','INDIA','1995-11-04','Y','30Y',0,0,0,'M','','','+91',7016873421,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-04 10:56:49','','0000-00-00 00:00:00'),(0,1900,'',0,'','PRABHATBHAI LAVADIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1977-11-04','Y','48Y',48,0,0,'M','','','+91',9879053807,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 10:57:33','reception','2025-11-27 09:48:24'),(0,1901,'',0,'','SAVITABEN NAGH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-11-04','Y','26Y',0,0,0,'F','','','+91',7600887921,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','drashti','2025-11-04 10:57:41','','0000-00-00 00:00:00'),(0,1902,'',0,'','BHAVISHABEN NILESHBHAI BATAVIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-11-04','Y','51Y',0,0,0,'F','','','+91',9428632132,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-04 11:01:13','urvashi','2025-12-03 11:32:17'),(0,1903,'',0,'','MAYURBHAI S SUDANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-04','Y','39Y',0,0,0,'M','','','+91',9909905015,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 11:01:51','urvashi','2025-12-04 11:12:32'),(0,1904,'',0,'','BHOOMIBEN AGRAVAT','','','','',0,'VARUDI','VARUDI','GUJARAT','INDIA','2002-11-04','Y','23Y',0,0,0,'F','','','+91',9979167371,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-04 11:13:23','reception','2025-11-10 16:56:47'),(0,1905,'',0,'','KRUTIKA J MALKAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-11-04','Y','33Y',33,0,0,'F','','','+91',9408917894,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-04 11:14:13','drashti','2025-11-19 19:26:27'),(0,1906,'',0,'','HARSHIL P TILALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-11-04','Y','18Y',0,0,0,'M','','','+91',9974974636,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 11:17:28','','0000-00-00 00:00:00'),(0,1907,'',0,'','ILABEN Y JOSHI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-04','Y','50Y',50,0,0,'F','','','+91',9429200887,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 11:21:54','reception','2025-12-04 12:48:28'),(0,1908,'',0,'','HANSABEN R CHITRODA','','','','',0,'AHEMDABAD','AHEMDABAD','GUJARAT','INDIA','1978-11-04','Y','47Y',0,0,0,'M','','','+91',9773411995,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-04 11:22:23','','0000-00-00 00:00:00'),(0,1909,'',0,'','DINESHBHAI M PRAJAPATI','','','','',0,'SURENDRANAGAR','SURENDRANAGAR','GUJARAT','INDIA','1983-11-04','Y','42Y',0,0,0,'M','','','+91',8490006000,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 11:24:29','reception','2025-12-10 18:01:32'),(0,1910,'',0,'','LATABEN BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-04','Y','60Y',0,0,0,'F','','','+91',9033306446,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-04 11:32:13','urvashi','2025-11-29 12:02:56'),(0,1911,'',0,'','YAKUPBHAI BADI','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1980-11-04','Y','45Y',0,0,0,'M','','','+91',9712352678,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 11:41:48','reception','2025-11-13 11:47:15'),(0,1912,'',0,'','ARVI BHARATBHAI RAMANI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2010-11-04','Y','15Y',0,0,0,'F','','','+91',9825073253,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 11:44:37','reception','2025-11-04 16:58:54'),(0,1913,'',0,'','SOMIBEN G RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-04','Y','75Y',0,0,0,'F','','','+91',9824957623,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-04 12:06:18','','0000-00-00 00:00:00'),(0,1914,'',0,'','JYOTSANABEN M SARDHARA','','','','',0,'BAGASRA','BAGASRA','GUJARAT','INDIA','1982-11-04','Y','43Y',0,0,0,'F','','','+91',9925165346,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 12:21:43','','0000-00-00 00:00:00'),(0,1915,'',0,'','JAYDEEPBHAI SOLANKI','','','','',0,'KODINAR','KODINAR','GUJARAT','INDIA','2005-11-04','Y','20Y',0,0,0,'M','','','+91',9023242061,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-04 12:25:44','janvi','2025-11-10 12:00:13'),(0,1916,'',0,'','VASANTBEN S UDESHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-04','Y','42Y',42,0,0,'F','','','+91',9558584988,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-04 12:32:26','drashti','2025-11-04 12:35:18'),(0,1917,'',0,'','SOMIBEN RATHOD','','','KAILASH PARK, ST NO-11, SADHU VASVANI ROAD','RAJKOT',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-04','Y','75Y',0,0,0,'F','','','+91',9824957623,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-04 12:33:11','','0000-00-00 00:00:00'),(0,1918,'',0,'','DAMJIBHAI R MARAVIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-11-04','Y','80Y',80,0,0,'M','','','+91',9979907333,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 12:33:31','reception','2025-11-04 12:34:32'),(0,1919,'',0,'','JALABHAI A GOLTAR','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1963-11-04','Y','62Y',0,0,0,'M','','','+91',8326529545,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 12:36:35','','0000-00-00 00:00:00'),(0,1920,'',0,'','JIGNESH KANTILAL GONDALIYA','','','GOPAL CHOWK, NIVEDITA NAGAR SOC','ST NO-4',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-08-01','N','40Y',0,0,0,'M','','','+91',9427495938,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-04 16:37:02','vishal','2025-11-06 12:40:48'),(0,1921,'',0,'','MAYURIBEN J  SWADIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-04','Y','67Y',0,0,0,'F','','','+91',9879195844,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 16:49:46','','0000-00-00 00:00:00'),(0,1922,'',0,'','JAYESHBHAI SWADIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-11-04','Y','73Y',0,0,0,'M','','','+91',9879195844,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 16:51:28','reception','2025-11-17 17:11:17'),(0,1923,'',0,'','PRAFULBHAI MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-04','Y','75Y',0,0,0,'M','','','+91',9428056039,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 17:04:24','','0000-00-00 00:00:00'),(0,1924,'',0,'','AMITBHAI V DUDHATRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-11-04','Y','28Y',0,0,0,'M','','','+91',9624976116,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 17:20:47','','0000-00-00 00:00:00'),(0,1925,'',0,'','PARESHBHAI B AJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-04','Y','45Y',0,0,0,'M','','','+91',9925766491,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 17:35:45','','0000-00-00 00:00:00'),(0,1926,'',0,'','KIRANBEN P CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-04','Y','40Y',0,0,0,'F','','','+91',9624436123,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 17:37:52','','0000-00-00 00:00:00'),(0,1927,'',0,'','JAYSHREEBEN AKBARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-11-04','Y','59Y',0,0,0,'F','','','+91',9824957587,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-04 17:41:17','','0000-00-00 00:00:00'),(0,1928,'',0,'','DIPAKBHAI ROLA','','','','',0,'RANCHHODGADH','RANCHHODGADH','GUJARAT','INDIA','1983-11-04','Y','42Y',42,0,0,'M','','','+91',9825062263,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 17:41:27','reception','2025-11-04 17:45:09'),(0,1929,'',0,'','VASHRAMBHAI ROLA','','','','',0,'RANCHHODGADH','RANCHHODGADH','GUJARAT','INDIA','1965-11-04','Y','60Y',60,0,0,'M','','','+91',9825062263,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 17:44:23','reception','2025-11-13 12:58:43'),(0,1930,'',0,'','JAGRUTIBEN M GONDALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-04','Y','55Y',0,0,0,'F','','','+91',8980707711,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-04 17:55:42','janvi','2025-12-11 18:24:14'),(0,1931,'',0,'','TIRTH A DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2009-11-04','Y','16Y',0,0,0,'M','','','+91',8154957555,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-04 18:04:35','','0000-00-00 00:00:00'),(0,1932,'',0,'','HARSHABEN H GANATRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-04','Y','57Y',0,0,0,'F','','','+91',9898207777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 18:19:13','urvashi','2025-12-04 17:39:40'),(0,1933,'',0,'','VIKAS JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-04','Y','55Y',0,0,0,'M','','','+91',9328575100,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 18:23:24','','0000-00-00 00:00:00'),(0,1934,'',0,'','SAROJBEN C GAGLANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-04','Y','65Y',0,0,0,'F','','','+91',9825797418,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-04 18:28:16','','0000-00-00 00:00:00'),(0,1935,'',0,'','MAHESHBHAI N THAKKAR','','','','',0,'BHUJ','BHUJ','GUJARAT','INDIA','1973-11-04','Y','52Y',0,0,0,'M','','','+91',9825059770,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 18:30:30','','0000-00-00 00:00:00'),(0,1936,'',0,'','DIMPAL  SUTHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-11-04','Y','29Y',0,0,0,'F','','','+91',9462530777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-04 18:33:01','','0000-00-00 00:00:00'),(0,1937,'',0,'','BHARGAV G SABHAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2020-11-04','Y','05Y0M',0,0,0,'M','','','+91',9664619259,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 18:37:49','','0000-00-00 00:00:00'),(0,1938,'',0,'','CHANDUBHAI G  KHANDLA','','','','',0,'LIMBDI','LIMBDI','GUJARAT','INDIA','1965-11-04','Y','60Y',0,0,0,'M','','','+91',9723513429,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-04 18:42:01','reception','2025-12-02 17:34:44'),(0,1939,'',0,'','SANTOSHBHAI YADAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-11-04','Y','34Y',0,0,0,'M','','','+91',9106323852,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-04 18:52:23','','0000-00-00 00:00:00'),(0,1940,'',0,'','TIRTH MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2010-11-04','Y','15Y',0,0,0,'M','','','+91',9879964447,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-04 18:57:42','urvashi','2025-11-22 18:56:33'),(0,1941,'',0,'','DHIRENDRABHAI MAKWANA','','','','',0,'UPLETA','UPLETA','GUJARAT','INDIA','1972-11-04','Y','53Y',0,0,0,'M','','','+91',8160609891,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-04 19:37:08','reception','2025-12-15 19:17:01'),(0,1942,'',0,'','BABUBHAI  SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-05','Y','64Y',64,0,0,'M','','','+91',9998793799,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 09:07:11','drashti','2025-11-05 12:05:08'),(0,1943,'',0,'','JAYSHREE DIVYESH SONDARVA','','','ANAMIKA-3, AKASHVANI CHOWK UINIVERCITY ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-06-02','N','41Y',0,0,0,'F','','','+91',9429550637,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-05 09:29:10','riya','2025-11-05 11:23:32'),(0,1944,'',0,'','RAMESHBHAI K BODA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-05','Y','62Y',0,0,0,'M','','','+91',9979028375,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-05 09:50:21','priyanshi','2025-11-21 09:27:01'),(0,1945,'',0,'','MANSUKHBHAI V KACHADIYA','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1965-11-05','Y','60Y',60,0,0,'M','','','+91',9924844975,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 09:50:36','reception','2025-11-05 09:51:20'),(0,1946,'',0,'','ASHOKBHAI SIU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-05','Y','65Y',0,0,0,'M','','','+91',9428052206,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-05 09:55:09','janvi','2025-11-10 10:47:07'),(0,1947,'',0,'','DARPANBHAI V JAMARIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1989-11-05','Y','36Y',0,0,0,'M','','','+91',7984892931,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 09:55:53','reception','2025-11-20 10:38:26'),(0,1948,'',0,'','MAYABEN K PANDE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-05','Y','60Y',0,0,0,'M','','','+91',9173376188,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 10:03:15','','0000-00-00 00:00:00'),(0,1949,'',0,'','JAGDISHBHAI M PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-05','Y','65Y',0,0,0,'M','','','+91',9275064075,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 10:08:48','reception','2025-11-14 17:43:52'),(0,1950,'',0,'','JASUBEN K GONDALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-05','Y','65Y',0,0,0,'F','','','+91',9925331560,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-05 10:16:20','','0000-00-00 00:00:00'),(0,1951,'',0,'','PRABHABEN GONDALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-05','Y','50Y',0,0,0,'F','','','+91',9106683365,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 10:33:46','','0000-00-00 00:00:00'),(0,1952,'',0,'','TARABEN SAHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-05','Y','45Y',45,0,0,'F','','','+91',9824285487,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','janvi','2025-11-05 10:37:14','janvi','2025-11-05 10:38:57'),(0,1953,'',0,'','KULINBHAI VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-05','Y','44Y',0,0,0,'M','','','+91',9824886072,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-05 10:43:39','','0000-00-00 00:00:00'),(0,1954,'',0,'','DARSHNABEN D LIMBAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-11-05','Y','58Y',0,0,0,'F','','','+91',7228843488,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 10:45:57','','0000-00-00 00:00:00'),(0,1955,'',0,'','BHAVNABEN M KARENA','','','','',0,'BHADUYAD','BHADUYAD','GUJARAT','INDIA','1991-11-05','Y','34Y',0,0,0,'F','','','+91',8347154841,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 10:49:57','','0000-00-00 00:00:00'),(0,1956,'',0,'','AMARSANGBHAI SUMANIYA','','','','',0,'DWARKA','DWARKA','GUJARAT','INDIA','1998-11-05','Y','27Y',0,0,0,'M','','','+91',9662423952,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 10:58:20','','0000-00-00 00:00:00'),(0,1957,'',0,'','JENIL Y GODHANIYA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','2016-11-05','Y','09Y0M',0,0,0,'M','','','+91',9913931313,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 11:01:35','','0000-00-00 00:00:00'),(0,1958,'',0,'','HIMANSHUBHAI G BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-11-05','Y','56Y',0,0,0,'F','','','+91',8200024882,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 11:04:06','','0000-00-00 00:00:00'),(0,1959,'',0,'','VIPULBHAI BHALALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-11-05','Y','47Y',0,0,0,'M','','','+91',9909990102,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-05 11:04:14','','0000-00-00 00:00:00'),(0,1960,'',0,'','AYAN ALI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2023-11-05','Y','02Y0M',0,0,0,'M','','','+91',9118424638,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 11:06:43','reception','2025-11-10 19:06:27'),(0,1961,'',0,'','RASIKLAL S GAMI','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1960-11-05','Y','65Y',0,0,0,'M','','','+91',9426933668,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 11:15:08','reception','2025-11-20 11:05:29'),(0,1962,'',0,'','MEHULBHAI LAXMANBHAI SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-05','Y','45Y',45,0,0,'M','','','+91',9924020431,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 11:18:01','reception','2025-11-05 12:13:22'),(0,1963,'',0,'','DISHABEN C GUSAI','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1990-11-05','Y','35Y',0,0,0,'F','','','+91',9824234045,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 11:19:57','','0000-00-00 00:00:00'),(0,1964,'',0,'','AJAYBHAI G PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-05','Y','57Y',0,0,0,'M','','','+91',9825516090,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 11:26:06','reception','2025-12-22 17:51:08'),(0,1965,'',0,'','DINESHBHAI CHAUDHARY','','','','',0,'METODA GIDC','METODA GIDC','GUJARAT','INDIA','1993-11-05','Y','32Y',32,0,0,'M','','','+91',9157700892,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','janvi','2025-11-05 11:27:47','janvi','2025-11-05 11:29:07'),(0,1966,'',0,'','GAFALBHAI CHAUHAN','','','','',0,'RATABHER','RATABHER','GUJARAT','INDIA','1960-11-05','Y','65Y',0,0,0,'M','','','+91',9978796054,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-05 11:31:31','','0000-00-00 00:00:00'),(0,1967,'',0,'',' MITAL HITESH PANARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-05','Y','40Y',0,0,0,'F','','','+91',9898075873,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-05 11:31:56','','0000-00-00 00:00:00'),(0,1968,'',0,'','ARUNABEN G TARAPAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-11-05','Y','47Y',47,0,0,'F','','','+91',8866275714,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-05 11:36:09','janvi','2025-11-05 11:37:08'),(0,1969,'',0,'','PRAKASHBHAI J ROJMALA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1967-11-05','Y','58Y',0,0,0,'M','','','+91',9974345085,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-05 11:36:17','drashti','2025-11-21 11:02:28'),(0,1970,'',0,'','LABHUBEN M GORI','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1953-11-05','Y','72Y',0,0,0,'F','','','+91',9924009601,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-05 11:53:55','','0000-00-00 00:00:00'),(0,1971,'',0,'','JITESHBHAI PARSANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-05','Y','44Y',0,0,0,'M','','','+91',8734858430,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-05 11:58:19','','0000-00-00 00:00:00'),(0,1972,'',0,'','PRAVINBHAI A BAKRANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-05','Y','64Y',0,0,0,'M','','','+91',9561206288,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-05 12:00:02','urvashi','2025-12-04 11:47:30'),(0,1973,'',0,'','PRASHANSHA N GOR','','','','',0,'JAMJODHPUR','JAMJODHPUR','GUJARAT','INDIA','1988-11-05','Y','37Y',37,0,0,'F','','','+91',6359038663,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 12:00:19','reception','2025-11-05 12:09:10'),(0,1974,'',0,'','VANRAJBHAI CHAUHAN','','','','',0,'HADVADH','HADVADH','GUJARAT','INDIA','1985-11-05','Y','40Y',0,0,0,'M','','','+91',9099171240,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-05 12:00:29','','0000-00-00 00:00:00'),(0,1975,'',0,'','KIRANBHAI V ADHIYA','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1955-11-05','Y','70Y',0,0,0,'M','','','+91',9662436282,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 12:02:12','','0000-00-00 00:00:00'),(0,1976,'',0,'','MOHANLAL K VIRABHATTI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-05','Y','53Y',0,0,0,'M','','','+91',8890808524,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-05 12:03:32','manshi','2025-12-08 12:19:51'),(0,1977,'',0,'','BHARTIBA D JADEJA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1962-11-05','Y','63Y',0,0,0,'F','','','+91',9601251635,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 12:05:19','reception','2025-12-22 16:52:41'),(0,1978,'',0,'','MEET A POLRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2009-11-05','Y','16Y',0,0,0,'M','','','+91',9428840329,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-05 12:07:01','','0000-00-00 00:00:00'),(0,1979,'',0,'','MAZHARBHAI MALIK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-05','Y','42Y',42,0,0,'M','','','+91',9824220542,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 12:07:08','reception','2025-11-05 12:30:00'),(0,1980,'',0,'','SIDHDHARTH G DEEPANKAR','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','2007-11-05','Y','18Y',0,0,0,'M','','','+91',9228415249,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 12:36:00','','0000-00-00 00:00:00'),(0,1981,'',0,'','KRIYAN GONDALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2018-11-05','Y','07Y0M',0,0,0,'M','','','+91',8000815551,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-05 12:37:09','','0000-00-00 00:00:00'),(0,1982,'',0,'','MEENABEN J MANSATA','','','','',0,'','','GUJARAT','INDIA','1958-11-05','Y','67Y',0,0,0,'F','','','+91',9825237281,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 12:39:28','','0000-00-00 00:00:00'),(0,1983,'',0,'','HARSHABEN KUNDARIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1983-11-05','Y','42Y',0,0,0,'F','','','+91',9925246900,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 12:42:02','reception','2025-12-19 11:11:38'),(0,1984,'',0,'','JAYABEN KANSAGRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-05','Y','65Y',0,0,0,'F','','','+91',9978928286,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-05 12:44:11','','0000-00-00 00:00:00'),(0,1985,'',0,'','JIGNESHBHAI CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-11-05','Y','41Y',0,0,0,'M','','','+91',9585483934,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-05 13:00:36','','0000-00-00 00:00:00'),(0,1986,'',0,'','RAMCHANDRABHAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-05','Y','45Y',0,0,0,'M','','','+91',9106528717,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-05 13:21:42','manshi','2025-11-10 11:42:07'),(0,1987,'',0,'','CHANDUBHAI TRIVEDI','','','','',0,'JASDAN','JASDAN','GUJARAT','INDIA','1960-11-05','Y','65Y',0,0,0,'M','','','+91',9426222002,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 13:46:00','','0000-00-00 00:00:00'),(0,1988,'',0,'','HITESH V SHAH','','CAREWELL P','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-05','Y','60Y',0,0,0,'M','','','+91',9879963041,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 16:32:38','','0000-00-00 00:00:00'),(0,1989,'',0,'','HIMANSHU KOTECHA','','ACCUZEST H','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-11-05','Y','43Y',0,0,0,'M','','','+91',9328276297,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 16:47:46','reception','2025-12-03 16:51:28'),(0,1990,'',0,'','HARIBHAI VADHER','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-05','Y','75Y',0,0,0,'M','','','+91',9898215910,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-05 16:57:16','','0000-00-00 00:00:00'),(0,1991,'',0,'','NIKHILBHAI M DAVE','','','','',0,'BHAVNAGAR','BHAVNAGAR','GUJARAT','INDIA','1968-11-05','Y','57Y',0,0,0,'M','','','+91',9825958867,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 16:57:19','','0000-00-00 00:00:00'),(0,1992,'',0,'','NILAMBA GOHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-05','Y','40Y',40,0,0,'F','','','+91',9909151515,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-05 17:09:40','drashti','2025-11-05 17:29:52'),(0,1993,'',0,'','SHIVANGIBA Y VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-05','Y','32Y',0,0,0,'F','','','+91',9624544044,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 17:11:16','reception','2025-11-15 12:25:26'),(0,1994,'',0,'','RAJNIKANTBHAI B VIRAMGAMA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1969-11-05','Y','56Y',0,0,0,'M','','','+91',9909540861,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 17:13:55','','0000-00-00 00:00:00'),(0,1995,'',0,'','PARSHOTAMBHAI TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-05','Y','65Y',0,0,0,'M','','','+91',9316357148,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 17:20:16','','0000-00-00 00:00:00'),(0,1996,'',0,'','CHANDRAKANTBHAI LAL','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1958-11-05','Y','67Y',0,0,0,'M','','','+91',9825639256,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 17:23:44','','0000-00-00 00:00:00'),(0,1997,'',0,'','PRAFULABEN  SHETH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-05','Y','72Y',0,0,0,'F','','','+91',9724014477,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-05 17:31:58','reception','2025-11-15 11:04:47'),(0,1998,'',0,'','LALITABEN J SARVAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-05','Y','70Y',0,0,0,'F','','','+91',9173334879,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-05 17:32:16','','0000-00-00 00:00:00'),(0,1999,'',0,'','VISHAL MOTAVANI','','SUN PHARMA','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-11-05','Y','23Y',23,0,0,'M','','','+91',6352853927,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 17:39:20','reception','2025-12-03 16:35:26'),(0,2000,'',0,'','VIJYABEN A THANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1944-11-05','Y','81Y',0,0,0,'M','','','+91',9879794127,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 17:40:27','','0000-00-00 00:00:00'),(0,2001,'',0,'','JIGNESHBHAI BHOJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-05','Y','36Y',0,0,0,'M','','','+91',9712358734,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-05 17:46:29','janvi','2025-12-02 18:55:08'),(0,2002,'',0,'','MAYURBHAI B GADHVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-11-05','Y','37Y',0,0,0,'M','','','+91',9265688430,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 17:46:53','','0000-00-00 00:00:00'),(0,2003,'',0,'','SACHINBHAI HINDOCHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-05','Y','44Y',0,0,0,'M','','','+91',8320615693,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-05 17:48:58','','0000-00-00 00:00:00'),(0,2004,'',0,'','SHARDABEN MANSUKHLAL MAHIDHARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-05','Y','75Y',0,0,0,'F','','','+91',9898904242,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-05 17:52:46','','0000-00-00 00:00:00'),(0,2005,'',0,'','MULJIBHAI B KORADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-11-05','Y','77Y',77,0,0,'M','','','+91',9904022975,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-05 17:52:55','manshi','2025-11-05 17:55:15'),(0,2006,'',0,'','VASANTIBEN K VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-05','Y','65Y',0,0,0,'F','','','+91',9920935709,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-05 17:53:20','','0000-00-00 00:00:00'),(0,2007,'',0,'','KAMLESHBHAI POPAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-05','Y','67Y',0,0,0,'M','','','+91',9925475490,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-05 17:57:52','manshi','2025-11-19 18:01:28'),(0,2008,'',0,'','RITABEN  SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-05','Y','32Y',0,0,0,'F','','','+91',8144993678,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 17:58:28','','0000-00-00 00:00:00'),(0,2009,'',0,'','VALANI NAYNA RAKESHBHAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-11-05','Y','38Y',38,0,0,'F','','','+91',9898563295,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-05 17:59:37','priyanshi','2025-11-07 14:17:42'),(0,2010,'',0,'','KRUNAL N JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-05','Y','32Y',0,0,0,'M','','','+91',9722931287,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 18:00:51','','0000-00-00 00:00:00'),(0,2011,'',0,'','HITESHBHAI MANDAVIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-05','Y','57Y',0,0,0,'M','','','+91',9824239366,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 18:05:16','','0000-00-00 00:00:00'),(0,2012,'',0,'','NAYNABEN R MISHRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-05','Y','64Y',0,0,0,'F','','','+91',8238475063,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-05 18:09:41','','0000-00-00 00:00:00'),(0,2013,'',0,'','MANIBEN M CHAVDA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1973-11-05','Y','52Y',0,0,0,'M','','','+91',9879467160,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 18:11:12','reception','2025-12-15 10:45:48'),(0,2014,'',0,'','KIRITBHAI C VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-11-05','Y','66Y',0,0,0,'M','','','+91',9023515929,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-05 18:34:15','','0000-00-00 00:00:00'),(0,2015,'',0,'','RAJUBHAI GAJJAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-05','Y','65Y',65,0,0,'M','','','+91',9978816577,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 18:36:04','reception','2025-11-05 18:53:38'),(0,2016,'',0,'','ANUPAMA BUGHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-11-05','Y','30Y',0,0,0,'F','','','+91',8006941328,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','drashti','2025-11-05 18:37:49','janvi','2025-12-05 18:40:01'),(0,2017,'',0,'','CHAMPABEN P ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-05','Y','65Y',0,0,0,'F','','','+91',9727030750,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 18:40:22','reception','2025-12-22 16:25:26'),(0,2018,'',0,'','MANISHABEN DALSANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-11-05','Y','41Y',0,0,0,'F','','','+91',9033270009,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 18:48:41','','0000-00-00 00:00:00'),(0,2019,'',0,'','HIRANBEN JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-11-05','Y','54Y',0,0,0,'F','','','+91',9712343691,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 18:52:02','','0000-00-00 00:00:00'),(0,2020,'',0,'','RAJESHRIBEN BHALODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-11-05','Y','38Y',0,0,0,'F','','','+91',9879328611,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-05 19:01:40','','0000-00-00 00:00:00'),(0,2021,'',0,'','RAVINDRAKUMAR GOSWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-11-05','Y','76Y',76,0,0,'M','','','+91',9016946695,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 19:03:19','reception','2025-11-26 16:46:48'),(0,2022,'',0,'','HASMITABEN  DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-05','Y','62Y',62,0,0,'F','','','+91',9426479973,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 19:20:39','janvi','2025-11-15 18:09:02'),(0,2023,'',0,'','SHITALBEN BUDDHDEV','','','','',0,'','','GUJARAT','INDIA','1977-11-05','Y','48Y',0,0,0,'F','','','+91',9824298707,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-05 19:23:21','reception','2025-12-11 18:51:10'),(0,2024,'',0,'','HEMALBHAI DHANAT','','','RAIL NAGAR ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-05','Y','36Y',0,0,0,'M','','','+91',9558915578,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-05 19:37:29','janvi','2025-12-17 18:50:04'),(0,2025,'',0,'','POOJABEN GAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-11-05','Y','41Y',0,0,0,'F','','','+91',9925800140,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-05 19:57:47','','0000-00-00 00:00:00'),(0,2026,'',0,'','ROHITBHAI KARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-11-05','Y','38Y',0,0,0,'M','','','+91',9428154666,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-05 20:04:04','janvi','2025-11-19 10:37:11'),(0,2027,'',0,'','ASHWINBHAI N MAKWANA','','','','',0,'SURENDRANAGAR','SURENDRANAGAR','GUJARAT','INDIA','1995-11-05','Y','30Y',30,0,0,'M','','','+91',9574799221,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-05 20:12:06','reception','2025-11-05 20:12:52'),(0,2028,'',0,'','SOURAV KUMAR ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-06','Y','35Y',0,0,0,'M','','','+91',7600030939,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 08:33:57','reception','2025-11-15 18:44:37'),(0,2029,'',0,'','USHABEN PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-11-06','Y','68Y',0,0,0,'F','','','+91',9824326588,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 08:55:09','','0000-00-00 00:00:00'),(0,2030,'',0,'','JIGNESH V BHOJANI','','','DAT-GUNJAN VIHAR-2 B-25 PATIDAR CHOWK ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-01-10','N','36Y',0,0,0,'M','','','+91',9712358734,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-06 09:26:01','','0000-00-00 00:00:00'),(0,2031,'',0,'','VALANI NAYANA RAKESHBHAI','','','VISHWNGAR STREET NO-9 ,KHIJDA ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-08-01','N','38Y',0,0,0,'F','','','+91',9898563295,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-06 09:37:05','riya','2025-11-07 10:36:31'),(0,2032,'',0,'','VITTHALBHAI R RAMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-06','Y','75Y',0,0,0,'M','','','+91',9909350650,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 09:48:37','','0000-00-00 00:00:00'),(0,2033,'',0,'','PRAVINBHAI K MADHAK','','','','',0,'KESHODH','KESHODH','GUJARAT','INDIA','1960-11-06','Y','65Y',0,0,0,'M','','','+91',9929423439,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 09:49:59','','0000-00-00 00:00:00'),(0,2034,'',0,'','RUTWIKBHAI J NANDHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-11-06','Y','33Y',33,0,0,'M','','','+91',7817895013,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 10:01:05','reception','2025-11-06 10:01:41'),(0,2035,'',0,'','JIGNESHBHAI HARDASBHAI GOHIL','','','MANSAR,HADWAD','',0,'MORBI','MORBI','GUJARAT','INDIA','1987-08-09','N','38Y',0,0,0,'M','','','+91',9727631314,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-06 10:07:28','riya','2025-11-07 10:35:35'),(0,2036,'',0,'','SAURABHKUMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-06','Y','35Y',0,0,0,'M','','','+91',7600030939,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-06 10:18:15','manshi','2025-11-19 11:31:44'),(0,2037,'',0,'','GANGABEN KALAVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-11-06','Y','80Y',0,0,0,'F','','','+91',9979625925,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-06 10:20:05','','0000-00-00 00:00:00'),(0,2038,'',0,'','PALLAVI R GUJRATI','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','2011-11-06','Y','14Y',0,0,0,'M','','','+91',9913923966,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 10:25:44','','0000-00-00 00:00:00'),(0,2039,'',0,'','RAMESHBHAI V PAREKHIYA','','','','',0,'NAVAGAM','NAVAGAM','GUJARAT','INDIA','1975-11-06','Y','50Y',0,0,0,'M','','','+91',9909873705,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 10:29:50','reception','2025-11-15 10:35:38'),(0,2040,'',0,'','YAKUBBHAI I PARASARA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1978-11-06','Y','47Y',0,0,0,'M','','','+91',9925580930,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 10:32:15','','0000-00-00 00:00:00'),(0,2041,'',0,'','HIMANSHUBHAI SAVSANI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1971-11-06','Y','54Y',0,0,0,'M','','','+91',9726718066,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 11:01:33','reception','2025-12-06 10:46:44'),(0,2042,'',0,'','SUSHILABEN JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-06','Y','60Y',0,0,0,'F','','','+91',6356506363,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 11:03:33','','0000-00-00 00:00:00'),(0,2043,'',0,'','NISHABA D ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-06','Y','52Y',0,0,0,'F','','','+91',9898357800,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 11:05:28','reception','2025-11-17 11:16:09'),(0,2044,'',0,'','MUKTABEN D TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-06','Y','75Y',75,0,0,'F','','','+91',7817816727,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 11:18:48','reception','2025-12-06 10:33:30'),(0,2045,'',0,'','SABIRABEN ANSARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-06','Y','36Y',0,0,0,'F','','','+91',9979601227,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-06 11:18:54','reception','2025-12-19 10:52:36'),(0,2046,'',0,'','BHENIBEN K CHANDRAVADIYA','','','','',0,'UPLETA','UPLETA','GUJARAT','INDIA','1958-11-06','Y','67Y',0,0,0,'M','','','+91',9106715707,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 11:22:27','','0000-00-00 00:00:00'),(0,2047,'',0,'','CHANDUBHAI C DESAI','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1962-11-06','Y','63Y',0,0,0,'M','','','+91',9998246416,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 11:25:24','reception','2025-12-06 10:59:16'),(0,2048,'',0,'','NARENDRABHAI M SAKHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-06','Y','39Y',0,0,0,'M','','','+91',9510455155,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-06 11:28:02','','0000-00-00 00:00:00'),(0,2049,'',0,'','HANSRAJBHAI J ZALA','','','','',0,'CHUDA','CHUDA','GUJARAT','INDIA','2007-11-06','Y','18Y',0,0,0,'M','','','+91',9974555830,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 11:29:44','','0000-00-00 00:00:00'),(0,2050,'',0,'','AARIFBHAI SELAT','','','','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1985-11-06','Y','40Y',0,0,0,'M','','','+91',9998483102,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 11:37:42','','0000-00-00 00:00:00'),(0,2051,'',0,'','JAHIBEN VARU','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1975-11-06','Y','50Y',0,0,0,'F','','','+91',9879445862,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-06 11:39:13','','0000-00-00 00:00:00'),(0,2052,'',0,'','PARESHBHAI HINGU','','','','',0,'LADHI','LADHI','GUJARAT','INDIA','1988-11-06','Y','37Y',0,0,0,'M','','','+91',9898987083,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 11:54:54','reception','2025-12-17 11:37:05'),(0,2053,'',0,'','HARESHKUMAR PREMJIBHAI SHAGT','','','','',0,'SAPAR','SAPAR','GUJARAT','INDIA','1978-11-06','Y','47Y',0,0,0,'M','','','+91',8160253067,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-06 11:58:56','','0000-00-00 00:00:00'),(0,2054,'',0,'','KISHANBHAI BHINDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-11-06','Y','19Y',0,0,0,'M','','','+91',8758534834,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 12:02:19','','0000-00-00 00:00:00'),(0,2055,'',0,'','VIJYABEN D KUKADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-11-06','Y','73Y',0,0,0,'F','','','+91',9824372252,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 12:04:30','reception','2025-12-23 16:43:22'),(0,2056,'',0,'','VIDHIBEN K DUSHARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-06','Y','31Y',31,0,0,'F','','','+91',9265646768,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 12:16:54','reception','2025-12-01 19:02:32'),(0,2057,'',0,'','VIVEKANAND B ARABALLI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-06','Y','57Y',0,0,0,'M','','','+91',9879221630,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-06 12:37:10','','0000-00-00 00:00:00'),(0,2058,'',0,'','DARSHNA PANDIT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-06','Y','32Y',32,0,0,'F','','','+91',9428466315,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-06 12:40:42','drashti','2025-11-06 18:54:10'),(0,2059,'',0,'','NISHABEN  C BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-11-06','Y','41Y',0,0,0,'F','','','+91',9427209811,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 12:54:32','','0000-00-00 00:00:00'),(0,2060,'',0,'','MEETBHAI BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-11-06','Y','34Y',0,0,0,'M','','','+91',9898912257,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-06 12:55:38','','0000-00-00 00:00:00'),(0,2061,'',0,'','IBRAHIMBHAI BADI','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1979-11-06','Y','46Y',0,0,0,'M','','','+91',9904956155,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 13:14:02','','0000-00-00 00:00:00'),(0,2062,'',0,'','LEELAMMA VARGHESE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-11-06','Y','69Y',0,0,0,'F','','','+91',9925243737,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-06 13:14:09','','0000-00-00 00:00:00'),(0,2063,'',0,'',' JAYANTILAL SHAMJIBHAI RAMANI','','','PERAMOUNT PARK STREET NO -4 UNIVERCITY ROAD ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-06-07','N','60Y',0,0,0,'M','','','+91',9662635554,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-06 13:17:15','riya','2025-11-09 10:37:58'),(0,2064,'',0,'','BHIMSHI KARSHAN VALA','','','CHHAPRI,VERAVAL','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1960-11-06','Y','65Y',0,0,0,'M','','','+91',9879334458,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-06 15:10:23','riya','2025-11-07 11:15:32'),(0,2065,'',0,'','BHAVNABEN A DALSANIYA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1973-11-06','Y','52Y',52,0,0,'F','','','+91',9824582970,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 16:10:01','janvi','2025-11-28 10:08:01'),(0,2066,'',0,'','DARSH PAREKH ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-11-06','Y','20Y',0,0,0,'M','','','+91',9081636675,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-06 16:31:31','','0000-00-00 00:00:00'),(0,2067,'',0,'','GIRABEN V MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-06','Y','57Y',57,0,0,'F','','','+91',9714483444,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 16:55:08','reception','2025-11-18 17:31:02'),(0,2068,'',0,'','MAHENDRABHAI LODHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-11-06','Y','80Y',0,0,0,'M','','','+91',9924394270,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-06 17:19:50','reception','2025-11-19 17:38:28'),(0,2069,'',0,'','VIDHYA PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-11-06','Y','23Y',0,0,0,'F','','','+91',7600111191,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 17:28:15','','0000-00-00 00:00:00'),(0,2070,'',0,'','PARASBEN G THUMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-06','Y','31Y',0,0,0,'F','','','+91',9824547458,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 17:36:21','','0000-00-00 00:00:00'),(0,2071,'',0,'','PARULBEN RAJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-06','Y','53Y',0,0,0,'F','','','+91',9824022062,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-06 17:47:33','','0000-00-00 00:00:00'),(0,2072,'',0,'','ANJANA R GANDHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-06','Y','67Y',0,0,0,'F','','','+91',9428230179,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-06 17:49:46','','0000-00-00 00:00:00'),(0,2073,'',0,'','MALABEN N VADHAVANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-06','Y','45Y',0,0,0,'F','','','+91',8160521248,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 17:51:59','','0000-00-00 00:00:00'),(0,2074,'',0,'','ANJANA R GANDHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-06','Y','67Y',0,0,0,'F','','','+91',9428230179,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-06 17:53:28','','0000-00-00 00:00:00'),(0,2075,'',0,'','SURESHBHAI J TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-06','Y','72Y',0,0,0,'M','','','+91',9712375674,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-06 18:02:51','drashti','2025-12-10 09:46:33'),(0,2076,'',0,'','PUSHPABEN MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-06','Y','57Y',0,0,0,'F','','','+91',9558811467,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-06 18:20:39','','0000-00-00 00:00:00'),(0,2077,'',0,'','VIJYABEN KOTADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-06','Y','70Y',0,0,0,'F','','','+91',6351883657,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-06 18:21:20','','0000-00-00 00:00:00'),(0,2078,'',0,'','SURESHCHANDRA  JAYANTILAL TRIVEDI','','','SADHU VASVANI ROAD, PATIDAR CHOWK','TELEPHONE SOC, ST NO-3',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-08-17','N','71Y',0,0,0,'M','','','+91',9712375674,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-06 18:22:07','reception','2025-11-15 20:00:03'),(0,2079,'',0,'','SANGITABA G CHUDASAMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-06','Y','35Y',0,0,0,'F','','','+91',9427214898,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-06 18:23:41','','0000-00-00 00:00:00'),(0,2080,'',0,'','VASUNDHRABEN VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-11-06','Y','80Y',0,0,0,'F','','','+91',9601617702,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-06 18:26:09','','0000-00-00 00:00:00'),(0,2081,'',0,'','MANISHBHAI V BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-06','Y','53Y',0,0,0,'M','','','+91',9426954495,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 18:26:17','reception','2025-12-15 19:01:40'),(0,2082,'',0,'','NISHANT KANANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-11-06','Y','29Y',0,0,0,'M','','','+91',9723443646,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-06 18:29:58','','0000-00-00 00:00:00'),(0,2083,'',0,'','YOGIRAJSINH JADEJA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1998-11-06','Y','27Y',0,0,0,'M','','','+91',9099720026,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 18:36:49','','0000-00-00 00:00:00'),(0,2084,'',0,'','MANJUBEN B SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-06','Y','32Y',0,0,0,'F','','','+91',9624222689,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-06 18:40:03','manshi','2025-12-08 19:20:33'),(0,2085,'',0,'','IMRANBHAI JARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-06','Y','45Y',0,0,0,'M','','','+91',9824248008,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 18:49:07','','0000-00-00 00:00:00'),(0,2086,'',0,'','KISHORBHAI NAKUM','','','','',0,'PADADHRI','PADADHRI','GUJARAT','INDIA','1963-11-06','Y','62Y',0,0,0,'M','','','+91',9979046043,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 18:52:02','','0000-00-00 00:00:00'),(0,2087,'',0,'','DAKSHABEN PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-11-06','Y','23Y',0,0,0,'F','','','+91',9313179437,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-06 18:55:53','urvashi','2025-12-03 19:12:07'),(0,2088,'',0,'','HITESHBHAI SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-11-06','Y','58Y',0,0,0,'M','','','+91',9909912334,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-06 18:59:49','','0000-00-00 00:00:00'),(0,2089,'',0,'','NANUBHAI ME','','','CHANDAN PARK, ST NO-5, RAIYA ROAD,','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-06','Y','75Y',0,0,0,'M','','','+91',9106653626,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-06 19:15:31','','0000-00-00 00:00:00'),(0,2090,'',0,'','BHARTIBEN A MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-06','Y','62Y',0,0,0,'F','','','+91',9727737257,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-06 19:34:49','','0000-00-00 00:00:00'),(0,2091,'',0,'','NIDHIBEN JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-11-07','Y','29Y',0,0,0,'F','','','+91',9586859533,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 08:53:51','','0000-00-00 00:00:00'),(0,2092,'',0,'','YUVRAJ JESING DODIYA','','','','',0,'SOMNATH','SOMNATH','GUJARAT','INDIA','2002-11-07','Y','23Y',23,0,0,'M','','','+91',9327193183,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 09:02:05','reception','2025-11-07 09:04:02'),(0,2093,'',0,'','NITESHBHAI G VADALIYA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1986-11-07','Y','39Y',0,0,0,'M','','','+91',9904832163,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 09:31:52','','0000-00-00 00:00:00'),(0,2094,'',0,'','AVINASH GOHIL','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1995-11-07','Y','30Y',0,0,0,'M','','','+91',8849211395,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 09:43:37','','0000-00-00 00:00:00'),(0,2095,'',0,'','DIPAKBHAI A GADHIYA','','','','',0,'SOMNATH','SOMNATH','GUJARAT','INDIA','1990-11-07','Y','35Y',0,0,0,'M','','','+91',9998016860,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 09:44:31','reception','2025-12-08 10:09:06'),(0,2096,'',0,'','RAMILABEN V KACHADIYA','','','','',0,'JASAPAR','JASAPAR','GUJARAT','INDIA','1975-11-07','Y','50Y',0,0,0,'M','','','+91',9428726248,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 09:47:42','reception','2025-12-22 10:06:20'),(0,2097,'',0,'','SOFIYA KAPA','','','','',0,'MANGROL','MANGROL','GUJARAT','INDIA','1995-11-07','Y','30Y',0,0,0,'F','','','+91',9574238730,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 09:56:57','','0000-00-00 00:00:00'),(0,2098,'',0,'','JAGDISHBHAI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-11-07','Y','34Y',0,0,0,'M','','','+91',8866459566,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-07 10:05:51','','0000-00-00 00:00:00'),(0,2099,'',0,'','MANSUKHGIRI GOSAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-07','Y','72Y',0,0,0,'M','','','+91',9824219039,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 10:06:41','','0000-00-00 00:00:00'),(0,2100,'',0,'','NARSHIBHAI H BHIMANI','','','','',0,'LAKHTAR','LAKHTAR','GUJARAT','INDIA','1952-11-07','Y','73Y',0,0,0,'M','','','+91',9712172392,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 10:33:25','reception','2025-12-08 11:36:37'),(0,2101,'',0,'','LAXMIBEN D MAKWANA','','','','',0,'','','GUJARAT','INDIA','1985-11-07','Y','40Y',0,0,0,'F','','','+91',9978053781,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 10:36:21','','0000-00-00 00:00:00'),(0,2102,'',0,'','KANCHANBEN K BUMTARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-07','Y','55Y',0,0,0,'F','','','+91',8866777646,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 10:39:13','reception','2025-11-17 10:40:00'),(0,2103,'',0,'','BHANUBEN M KUBAVAT','','','','',0,'RIBDA','RIBDA','GUJARAT','INDIA','1960-11-07','Y','65Y',0,0,0,'F','','','+91',7874887447,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 10:54:45','','0000-00-00 00:00:00'),(0,2104,'',0,'','AJITSINH D JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1940-11-07','Y','85Y',0,0,0,'M','','','+91',9157762410,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-07 10:57:21','','0000-00-00 00:00:00'),(0,2105,'',0,'','MINAXIBEN PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-07','Y','75Y',0,0,0,'F','','','+91',8980219622,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 10:59:49','','0000-00-00 00:00:00'),(0,2106,'',0,'','ASHOKBHAI DEVANI','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1950-11-07','Y','75Y',0,0,0,'M','','','+91',9016737523,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 11:02:30','janvi','2025-11-12 17:35:24'),(0,2107,'',0,'','JAGDISHBHAI CHAUDHARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-11-07','Y','21Y',0,0,0,'M','','','+91',6377700009,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 11:06:52','','0000-00-00 00:00:00'),(0,2108,'',0,'','PANDYA JYOTIBEN BHARATBHAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1943-11-07','Y','82Y',0,0,0,'F','','','+91',9409259808,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 11:16:36','','0000-00-00 00:00:00'),(0,2109,'',0,'','SANJAYBHAI DELVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-07','Y','40Y',40,0,0,'M','','','+91',9978181584,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 11:26:22','reception','2025-11-07 11:53:55'),(0,2110,'',0,'','MANOJBHAI PARMAR','','','','',0,'KODINAR','KODINAR','GUJARAT','INDIA','1986-11-07','Y','39Y',0,0,0,'M','','','+91',9274978162,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-07 11:26:41','reception','2025-11-17 11:29:08'),(0,2111,'',0,'','CHHAGANBHAI TADPDA','','','','',0,'JAMANGAR','JAMANGAR','GUJARAT','INDIA','1970-11-07','Y','55Y',0,0,0,'M','','','+91',9825830791,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 11:26:55','','0000-00-00 00:00:00'),(0,2112,'',0,'','PREMJIBHAI G KANSAGRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-11-07','Y','71Y',0,0,0,'M','','','+91',9726393987,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 11:31:02','','0000-00-00 00:00:00'),(0,2113,'',0,'','HETALBA JADEJA','','','','',0,'HADMTIYA','HADMTIYA','GUJARAT','INDIA','1998-11-07','Y','27Y',0,0,0,'F','','','+91',7818087707,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 11:31:52','','0000-00-00 00:00:00'),(0,2114,'',0,'','DARSHANBHAI KASUNDRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-07','Y','50Y',0,0,0,'M','','','+91',9998400108,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 11:36:35','','0000-00-00 00:00:00'),(0,2115,'',0,'','MAHENDRASINH JADEJA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1983-11-07','Y','42Y',0,0,0,'M','','','+91',9276319934,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 11:39:10','reception','2025-12-10 11:06:41'),(0,2116,'',0,'','SEJALBEN N PAMBHAR','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1988-11-07','Y','37Y',0,0,0,'F','','','+91',9898153329,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 11:46:11','reception','2025-12-05 10:20:21'),(0,2117,'',0,'','HARESHBHAI RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-11-07','Y','49Y',0,0,0,'M','','','+91',7575091413,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 11:54:52','','0000-00-00 00:00:00'),(0,2118,'',0,'','AMITBHAI SANGHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-07','Y','36Y',0,0,0,'M','','','+91',7990924131,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 11:55:02','','0000-00-00 00:00:00'),(0,2119,'',0,'','RAVIRAJ SINGH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-07','Y','45Y',0,0,0,'M','','','+91',9199420026,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-07 12:01:43','janvi','2025-11-17 12:03:24'),(0,2120,'',0,'','HARITABEN M CHANDARANA ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-07','Y','44Y',0,0,0,'F','','','+91',9427740430,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 12:02:27','','0000-00-00 00:00:00'),(0,2121,'',0,'','SAPNABEN K BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-07','Y','62Y',0,0,0,'F','','','+91',6351447001,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 12:05:37','','0000-00-00 00:00:00'),(0,2122,'',0,'','RAMBHAI SANCHANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-11-07','Y','78Y',0,0,0,'M','','','+91',9898028899,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 12:07:15','','0000-00-00 00:00:00'),(0,2123,'',0,'','UNNATIBEN SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-07','Y','52Y',0,0,0,'F','','','+91',9724036694,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 12:09:31','reception','2025-11-17 10:54:22'),(0,2124,'',0,'','RASILABEN J SANGANI','','','','',0,'KESHOD','KESHOD','GUJARAT','INDIA','1965-11-07','Y','60Y',0,0,0,'F','','','+91',6351688341,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 12:10:02','reception','2025-11-26 10:47:27'),(0,2125,'',0,'','DATT GAJER','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-11-07','Y','18Y',0,0,0,'M','','','+91',9913095922,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-07 12:40:57','','0000-00-00 00:00:00'),(0,2126,'',0,'','MEET J JOTANGIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-11-07','Y','19Y',0,0,0,'M','','','+91',9824702200,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-07 13:00:35','janvi','2025-11-12 12:25:29'),(0,2127,'',0,'','ADITI CHAUHAN','','','PANDIT DIN DAYAL NAGAR KALAWAD ROAD K-1102','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-09-26','N','23Y',0,0,0,'F','','','+91',7359171917,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 13:24:26','drashti','2025-11-18 11:04:33'),(0,2128,'',0,'','KAMLESHBHAI G KUDALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-07','Y','67Y',0,0,0,'M','','','+91',8905356738,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 13:33:40','reception','2025-11-17 18:11:35'),(0,2129,'',0,'','HALIMABEN H MUSANI','','','','',0,'DARI VERAVAL','DARI VERAVAL','GUJARAT','INDIA','1988-11-07','Y','37Y',0,0,0,'F','','','+91',9898921718,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 13:50:06','reception','2025-12-15 11:47:50'),(0,2130,'',0,'','JAGJIVANBHAI P PIPALIYA','','','','',0,'SURENDRANAGAR','SURENDRANAGAR','GUJARAT','INDIA','1954-11-07','Y','71Y',0,0,0,'M','','','+91',9429279663,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-07 14:52:41','','0000-00-00 00:00:00'),(0,2131,'',0,'','SONALBEN L RATADIYA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1993-11-07','Y','32Y',0,0,0,'F','','','+91',9712541125,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 16:05:31','','0000-00-00 00:00:00'),(0,2132,'',0,'','GEETABEN A DAVDA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1977-11-07','Y','48Y',0,0,0,'F','','','+91',9408665487,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 16:34:12','','0000-00-00 00:00:00'),(0,2133,'',0,'','GULAMHUSAIN M LAKHA','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1970-11-07','Y','55Y',55,0,0,'M','','','+91',9099035692,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-07 16:40:35','reception','2025-11-20 12:59:04'),(0,2134,'',0,'','NIKHIL MEHATA','','AAROHI PHA','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-07','Y','53Y',0,0,0,'M','','','+91',9327780840,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 16:49:21','','0000-00-00 00:00:00'),(0,2135,'',0,'','PRAKSASH MARU','','SPECTRA PY','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-07','Y','44Y',0,0,0,'M','','','+91',9879345425,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 16:54:09','reception','2025-12-05 16:28:23'),(0,2136,'',0,'','MAULIK VORA','','RUDRA PHAR','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-11-07','Y','27Y',27,0,0,'M','','','+91',8000002438,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 16:55:30','reception','2025-12-19 16:53:01'),(0,2137,'',0,'','SHANTABEN M CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-11-07','Y','66Y',0,0,0,'F','','','+91',9427279725,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 16:56:33','','0000-00-00 00:00:00'),(0,2138,'',0,'','CHIRAG SONAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-11-07','Y','34Y',0,0,0,'M','','','+91',8460812537,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 17:01:31','shweta','2025-12-05 16:54:04'),(0,2139,'',0,'','NITABA T JADEJA','','','','',0,'LODHIKA RAJKOT','LODHIKA RAJKOT','GUJARAT','INDIA','1983-11-07','Y','42Y',0,0,0,'F','','','+91',9825787887,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 17:04:54','','0000-00-00 00:00:00'),(0,2140,'',0,'','NILABEN PADHIYAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-11-07','Y','46Y',0,0,0,'F','','','+91',8849755178,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 17:07:45','','0000-00-00 00:00:00'),(0,2141,'',0,'','SHANTILAL K PITHADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-11-07','Y','63Y',0,0,0,'M','','','+91',8460842060,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 17:14:07','','0000-00-00 00:00:00'),(0,2142,'',0,'','LAKHAN H KAGADIYA','','','','',0,'DWARKA','DWARKA','GUJARAT','INDIA','2000-11-07','Y','25Y',0,0,0,'M','','','+91',8238080113,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 17:27:39','','0000-00-00 00:00:00'),(0,2143,'',0,'','DIPTIBEN BHALARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-11-07','Y','43Y',0,0,0,'F','','','+91',9099238882,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 17:29:42','priyanshi','2025-11-11 17:23:41'),(0,2144,'',0,'','ANANDBHAI JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-11-07','Y','49Y',0,0,0,'M','','','+91',9825412852,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 17:32:15','drashti','2025-11-27 18:36:16'),(0,2145,'',0,'','LABHUBEN M PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-11-07','Y','71Y',0,0,0,'M','','','+91',9714162819,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 17:34:56','','0000-00-00 00:00:00'),(0,2146,'',0,'','ALPESHBHAI JOTVA','','','','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','2000-11-07','Y','25Y',0,0,0,'M','','','+91',9824594482,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-07 17:37:40','janvi','2025-12-18 11:08:11'),(0,2147,'',0,'','NITABEN NILESHBHAI MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-11-07','Y','61Y',0,0,0,'F','','','+91',9427253535,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 17:38:46','','0000-00-00 00:00:00'),(0,2148,'',0,'','NAIMISH K BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-07','Y','36Y',0,0,0,'M','','','+91',9924237079,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 17:40:22','','0000-00-00 00:00:00'),(0,2149,'',0,'','VALLABHBHAI SANCHANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-07','Y','60Y',0,0,0,'M','','','+91',8866373814,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-07 17:57:17','reception','2025-11-17 16:39:46'),(0,2150,'',0,'','RASHMIBHAI GHELANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-11-07','Y','58Y',0,0,0,'M','','','+91',6355973714,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 18:02:24','reception','2025-11-25 18:29:34'),(0,2151,'',0,'',' DAXA CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-11-07','Y','47Y',0,0,0,'F','','','+91',9016943635,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-07 18:10:24','','0000-00-00 00:00:00'),(0,2152,'',0,'','DAXABA JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-07','Y','48Y',0,0,0,'F','','','+91',9024810012,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-07 18:15:58','','0000-00-00 00:00:00'),(0,2153,'',0,'','MEERABEN GONDHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-11-07','Y','43Y',0,0,0,'F','','','+91',9409255718,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-07 18:20:17','','0000-00-00 00:00:00'),(0,2154,'',0,'','HETAL ANAND PATHAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-11-07','Y','37Y',0,0,0,'M','','','+91',9664581869,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-07 18:24:28','','0000-00-00 00:00:00'),(0,2155,'',0,'','REKHABEN VALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-11-07','Y','43Y',0,0,0,'F','','','+91',8320634306,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-07 19:06:23','','0000-00-00 00:00:00'),(0,2156,'',0,'','JANVIBEN VALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-11-08','Y','24Y',0,0,0,'F','','','+91',9898050861,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 09:04:27','','0000-00-00 00:00:00'),(0,2157,'',0,'','SAGARBHAI SOMAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-08','Y','35Y',0,0,0,'M','','','+91',7698111317,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 09:14:55','reception','2025-11-10 09:17:48'),(0,2158,'',0,'','JAYDIPSINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-11-08','Y','23Y',0,0,0,'M','','','+91',9428856975,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 09:18:04','','0000-00-00 00:00:00'),(0,2159,'',0,'','LALBHAI BHEDI','','','','',0,'DAHOD','DAHOD','GUJARAT','INDIA','1998-11-08','Y','27Y',0,0,0,'M','','','+91',9727035440,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 09:25:09','','0000-00-00 00:00:00'),(0,2160,'',0,'','KAILASHBEN P KOTECHA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1972-11-08','Y','53Y',0,0,0,'F','','','+91',9023345805,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 09:50:47','','0000-00-00 00:00:00'),(0,2161,'',0,'','MIRALBEN KARELIYA','','','','',0,'KOTDA ','KOTDA ','GUJARAT','INDIA','1983-11-08','Y','42Y',0,0,0,'M','','','+91',9510449910,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 10:01:30','','0000-00-00 00:00:00'),(0,2162,'',0,'','KANTIBHAI M BORSANIYA','','','','',0,'JASDAN','JASDAN','GUJARAT','INDIA','1950-11-08','Y','75Y',0,0,0,'M','','','+91',9106974700,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 10:18:09','reception','2025-11-28 11:35:07'),(0,2163,'',0,'','BALUBHAI B PATODIYA','','','','',0,'KUKAVAV','KUKAVAV','GUJARAT','INDIA','1958-11-08','Y','67Y',67,0,0,'M','','','+91',9737661411,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 10:23:16','reception','2025-11-08 10:24:26'),(0,2164,'',0,'','JIGNESHBHAI M SHAH','','','','',0,'AHEMDABAD','AHEMDABAD','GUJARAT','INDIA','1978-11-08','Y','47Y',0,0,0,'M','','','+91',9377564165,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-08 10:24:11','','0000-00-00 00:00:00'),(0,2165,'',0,'','MIRALBEN R MAYAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-08','Y','31Y',0,0,0,'F','','','+91',9714447922,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 10:26:06','','0000-00-00 00:00:00'),(0,2166,'',0,'','TULSHIBHAI SANGHANI','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1965-11-08','Y','60Y',0,0,0,'M','','','+91',9979909613,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 10:36:57','','0000-00-00 00:00:00'),(0,2167,'',0,'','MIHIR P BHIMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2011-11-08','Y','14Y',0,0,0,'M','','','+91',9824715727,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-08 10:41:24','janvi','2025-12-05 19:05:16'),(0,2168,'',0,'','SULOJANA GANDHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-11-08','Y','58Y',0,0,0,'F','','','+91',9998924704,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 10:43:06','','0000-00-00 00:00:00'),(0,2169,'',0,'','HARESHBHAI G MARADIYA','','','','',0,'KUTIYANA','KUTIYANA','GUJARAT','INDIA','1972-11-08','Y','53Y',0,0,0,'M','','','+91',9898270249,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 10:45:03','','0000-00-00 00:00:00'),(0,2170,'',0,'','JUNEDBHAI MATHAKIYA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1998-11-08','Y','27Y',0,0,0,'M','','','+91',7623893034,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 10:57:36','reception','2025-12-22 10:40:15'),(0,2171,'',0,'','YOGRAJSINH ZALA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1970-11-08','Y','55Y',0,0,0,'M','','','+91',9913106753,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-08 10:59:35','','0000-00-00 00:00:00'),(0,2172,'',0,'','NANJIBHAI K MEGHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-11-08','Y','51Y',0,0,0,'M','','','+91',9879163255,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 11:01:53','','0000-00-00 00:00:00'),(0,2173,'',0,'','DAXABEN M CHAPANERI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-11-08','Y','58Y',0,0,0,'F','','','+91',7043718553,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-08 11:07:10','reception','2025-12-06 12:24:22'),(0,2174,'',0,'','MAHI MAKANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2011-11-08','Y','14Y',0,0,0,'F','','','+91',9662471672,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-08 11:13:28','manshi','2025-11-15 11:32:13'),(0,2175,'',0,'','CHETNABEN R BHOJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-08','Y','42Y',0,0,0,'F','','','+91',9978922322,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-08 11:15:46','','0000-00-00 00:00:00'),(0,2176,'',0,'','SHARIFABEN S KADIVAR','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1980-11-08','Y','45Y',0,0,0,'F','','','+91',9574274642,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 11:23:31','','0000-00-00 00:00:00'),(0,2177,'',0,'','BHIMBHAI AVJI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-08','Y','45Y',0,0,0,'M','','','+91',8750034338,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 11:26:16','','0000-00-00 00:00:00'),(0,2178,'',0,'','GOVINDBHAI BHUT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-08','Y','42Y',0,0,0,'M','','','+91',9726363114,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 11:32:03','reception','2025-11-18 11:03:47'),(0,2179,'',0,'','RAMNIKBHAI B KHIMSURIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-08','Y','40Y',0,0,0,'M','','','+91',8238750760,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 11:37:40','reception','2025-12-16 12:00:33'),(0,2180,'',0,'','ZEEL TANNA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','2009-11-08','Y','16Y',0,0,0,'F','','','+91',9898886186,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 11:42:27','','0000-00-00 00:00:00'),(0,2181,'',0,'','HINABANO ISMAIL SHEKHMANSURI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-11-08','Y','27Y',27,0,0,'F','','','+91',9409672548,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 11:46:55','reception','2025-11-08 13:43:01'),(0,2182,'',0,'','MEENA S CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-11-08','Y','37Y',37,0,0,'F','','','+91',8320753677,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 11:49:39','reception','2025-11-08 11:50:04'),(0,2183,'',0,'','KUNAL VYAS','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1979-11-08','Y','46Y',0,0,0,'M','','','+91',9825840869,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 12:06:11','reception','2025-11-29 11:02:33'),(0,2184,'',0,'','BHAVNABEN TANNA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1982-11-08','Y','43Y',0,0,0,'F','','','+91',7016956750,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 12:23:03','reception','2025-12-22 10:47:36'),(0,2185,'',0,'','MEERABEN H SANGADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2015-11-08','Y','10Y0M0D',0,0,0,'F','','','+91',8823059999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-08 12:43:14','','0000-00-00 00:00:00'),(0,2186,'',0,'','PRITESHBHAI RAVAL ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-08','Y','44Y',44,0,0,'M','','','+91',8238700099,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-08 12:43:28','drashti','2025-11-08 12:45:10'),(0,2187,'',0,'','MEENABEN B PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-11-08','Y','51Y',0,0,0,'F','','','+91',9824327278,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 12:45:28','reception','2025-11-20 17:20:27'),(0,2188,'',0,'','HUSENBHAI A NAREJA','','','AMUL DUDHSAGAR ROAD, ','LAKHAJI RAJ SOC, ST NO-2',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-08','Y','64Y',0,0,0,'M','','','+91',9033522522,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-08 12:59:56','reception','2025-11-14 11:46:17'),(0,2189,'',0,'','MAYURBHAI M GATHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-08','Y','57Y',57,0,0,'M','','','+91',9427731766,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-08 13:09:09','drashti','2025-11-08 13:10:14'),(0,2190,'',0,'','VIMLABEN D SINGALA','','','','',0,'BANGALORE','BANGALORE','GUJARAT','INDIA','1965-11-08','Y','60Y',60,0,0,'F','','','+91',9913105916,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-08 13:34:43','reception','2025-11-10 17:52:14'),(0,2191,'',0,'','SHILPABEN J CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-08','Y','39Y',0,0,0,'F','','','+91',9773047809,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-08 14:03:11','','0000-00-00 00:00:00'),(0,2192,'',0,'','PRAVINBHAI K MIYATRA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1971-11-08','Y','54Y',0,0,0,'M','','','+91',7600605062,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-08 14:40:19','reception','2025-11-17 11:31:33'),(0,2193,'',0,'','DINESH GOUD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-11-08','Y','20Y',0,0,0,'M','','','+91',6372889008,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-08 16:46:32','manshi','2025-11-20 12:30:58'),(0,2194,'',0,'','ANIL KUMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-11-08','Y','26Y',0,0,0,'M','','','+91',9782220606,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-08 17:48:21','','0000-00-00 00:00:00'),(0,2195,'',0,'','DINESHBHAI GAUD','','','RANGOLI PARK, MOTAMAVA KALAWAD ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-11-08','Y','20Y',0,0,0,'M','','','+91',6352315302,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-08 17:55:37','','0000-00-00 00:00:00'),(0,2196,'',0,'','RAJESHBHAI SAGPARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-11-08','Y','43Y',0,0,0,'M','','','+91',9714863632,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-08 18:04:19','manshi','2025-11-24 18:29:34'),(0,2197,'',0,'','RAJ K PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2009-11-08','Y','16Y',0,0,0,'M','','','+91',9913529194,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-08 18:54:15','drashti','2025-11-19 18:44:32'),(0,2198,'',0,'','RAJESH K SAGPARIYA','','','302-SOPAN HILLS JALARAM CHOWK B/H ALAP GREEN CITY','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-03-14','N','43Y',0,0,0,'M','','','+91',9714863632,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-08 19:11:39','','0000-00-00 00:00:00'),(0,2199,'',0,'','PRITIBEN VISANA','','','','',0,'PORBANADAR','PORBANADAR','GUJARAT','INDIA','2005-11-08','Y','20Y',0,0,0,'F','','','+91',9913314506,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-08 19:48:14','','0000-00-00 00:00:00'),(0,2200,'',0,'','DEEP CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-11-08','Y','21Y',0,0,0,'M','','','+91',8128318492,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-08 19:56:03','','0000-00-00 00:00:00'),(0,2201,'',0,'','SHIVANI KARSHANBHAI DODIYA','','','KATRASHA MADIYAHATINA','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','2003-09-10','N','22Y',0,0,0,'F','','','+91',9974545506,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-09 08:43:20','janvi','2025-12-09 11:07:39'),(0,2202,'',0,'','GOPALBHAI  MASADIYA','','','','',0,'CHOTILA','CHOTILA','GUJARAT','INDIA','1987-11-09','Y','38Y',0,0,0,'M','','','+91',8320392686,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-09 11:50:56','','0000-00-00 00:00:00'),(0,2203,'',0,'','HANSRAJBHAI ROJMALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-11-10','Y','46Y',0,0,0,'M','','','+91',9712370443,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 09:11:28','','0000-00-00 00:00:00'),(0,2204,'',0,'','SMITABEN RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-10','Y','42Y',0,0,0,'F','','','+91',9099444138,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 09:15:39','','0000-00-00 00:00:00'),(0,2205,'',0,'','JAYANTILAL RAMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-10','Y','60Y',0,0,0,'F','','','+91',9662635554,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 09:24:10','','0000-00-00 00:00:00'),(0,2206,'',0,'','SANJAYSINH SARVAIYA','','','','',0,'MEGHPAR','MEGHPAR','GUJARAT','INDIA','1989-11-10','Y','36Y',36,0,0,'M','','','+91',7990871631,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-10 09:27:53','janvi','2025-11-10 09:28:32'),(0,2207,'',0,'','FORAMBEN SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-11-10','Y','33Y',0,0,0,'F','','','+91',9427950152,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 09:37:58','','0000-00-00 00:00:00'),(0,2208,'',0,'','SHITALBEN PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-10','Y','35Y',0,0,0,'F','','','+91',9426554026,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 09:42:01','','0000-00-00 00:00:00'),(0,2209,'',0,'','TIRTH MILAN MEHTA','','','PUJARA PLOT, STREET NO-5 OPP SHIV SAKTI APP','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2011-01-26','N','14Y',0,0,0,'M','','','+91',9879964447,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-10 09:46:33','riya','2025-11-11 10:01:09'),(0,2210,'',0,'','KAPILBHAI RAMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-10','Y','44Y',0,0,0,'M','','','+91',7600000075,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 09:47:17','reception','2025-12-01 09:50:39'),(0,2211,'',0,'','CHANDRIKABEN H NARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-10','Y','60Y',0,0,0,'F','','','+91',7043470111,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 09:51:48','','0000-00-00 00:00:00'),(0,2212,'',0,'','GORDHANBHAI PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-11-10','Y','79Y',0,0,0,'M','','','+91',9879911085,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 10:04:12','','0000-00-00 00:00:00'),(0,2213,'',0,'','LAXMIPRASAD GUPTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-11-10','Y','69Y',0,0,0,'M','','','+91',9662654127,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-10 10:12:05','','0000-00-00 00:00:00'),(0,2214,'',0,'','SONIBEN S GADHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-10','Y','40Y',0,0,0,'F','','','+91',7359999250,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 10:29:50','reception','2025-11-25 09:52:11'),(0,2215,'',0,'','KHATIZABEN M AAGARIYA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1960-11-10','Y','65Y',0,0,0,'F','','','+91',8511166966,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 10:32:22','reception','2025-11-25 12:40:25'),(0,2216,'',0,'','BHAVNABEN B CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-11-10','Y','59Y',0,0,0,'F','','','+91',9925750808,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 10:39:25','','0000-00-00 00:00:00'),(0,2217,'',0,'','NARENDRABHAI L RAGHURIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1958-11-10','Y','67Y',0,0,0,'M','','','+91',9825629701,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 10:40:04','','0000-00-00 00:00:00'),(0,2218,'',0,'','PAGUBHAI LAMBARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-10','Y','53Y',0,0,0,'M','','','+91',9714793244,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 10:46:47','','0000-00-00 00:00:00'),(0,2219,'',0,'','LAXMANBHAI U SAVALIYA','','','','',0,'KALAVAD','KALAVAD','GUJARAT','INDIA','1959-11-10','Y','66Y',0,0,0,'M','','','+91',9428726177,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 10:47:04','','0000-00-00 00:00:00'),(0,2220,'',0,'','ZAPDA MASHRUBHAI NATHUBHAI','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1965-11-10','Y','60Y',0,0,0,'M','','','+91',9624989921,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 10:56:04','urvashi','2025-11-19 12:09:19'),(0,2221,'',0,'','MAHESHBHAI NAKIYA','','','','',0,'CHASIYA','CHASIYA','GUJARAT','INDIA','1989-11-10','Y','36Y',0,0,0,'M','','','+91',9904987255,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-10 10:58:43','manshi','2025-11-28 17:50:34'),(0,2222,'',0,'','MADHUBEN P POKHIYA','','','','',0,'AHEMDABAD','AHEMDABAD','GUJARAT','INDIA','1965-11-10','Y','60Y',0,0,0,'F','','','+91',7600043751,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 11:03:48','','0000-00-00 00:00:00'),(0,2223,'',0,'','RADHIKABEN A MAKDIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-11-10','Y','46Y',0,0,0,'F','','','+91',9428155063,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 11:16:13','','0000-00-00 00:00:00'),(0,2224,'',0,'','JAYABEN B VADODARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-11-10','Y','59Y',0,0,0,'F','','','+91',9825076400,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-10 11:17:20','','0000-00-00 00:00:00'),(0,2225,'',0,'','HEENABEN PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-10','Y','50Y',0,0,0,'F','','','+91',9833393319,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 11:18:09','','0000-00-00 00:00:00'),(0,2226,'',0,'','GEETABEN K SAKHIYA','','','','',0,'KHAREDI','KHAREDI','GUJARAT','INDIA','1975-11-10','Y','50Y',0,0,0,'F','','','+91',9714414834,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 11:27:16','reception','2025-12-19 11:03:46'),(0,2227,'',0,'','RAMABEN DAVE ','','','','',0,'LAKHTAR','LAKHTAR','GUJARAT','INDIA','1968-11-10','Y','57Y',0,0,0,'F','','','+91',8238385143,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 11:43:23','reception','2025-11-19 10:17:09'),(0,2228,'',0,'','RAMESHBHAI H THUMMAR','','','','',0,'PANASDA','PANASDA','GUJARAT','INDIA','1969-11-10','Y','56Y',0,0,0,'M','','','+91',9726602015,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-10 11:43:58','','0000-00-00 00:00:00'),(0,2229,'',0,'','MONABEN MAKWANA','','','','',0,'','','GUJARAT','INDIA','1993-11-10','Y','32Y',0,0,0,'F','','','+91',7990887502,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 11:46:37','janvi','2025-12-12 18:56:03'),(0,2230,'',0,'','PRAFULABEN N CHANDALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-10','Y','62Y',0,0,0,'F','','','+91',9879495664,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-10 11:49:18','manshi','2025-12-22 18:02:11'),(0,2231,'',0,'','GORDHANBHAI C FEFAR','','','','',0,'ADEPAR','ADEPAR','GUJARAT','INDIA','1963-11-10','Y','62Y',0,0,0,'M','','','+91',9033334351,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 11:52:41','reception','2025-12-10 10:22:39'),(0,2232,'',0,'','BRAMHASWARUP SWAMI','','','','',0,'MULI','MULI','GUJARAT','INDIA','1960-11-10','Y','65Y',0,0,0,'M','','','+91',9427551605,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-10 11:54:58','','0000-00-00 00:00:00'),(0,2233,'',0,'','KHIYALDAS M VELVANI','','','','',0,'BHESAN','BHESAN','GUJARAT','INDIA','1944-11-10','Y','81Y',0,0,0,'M','','','+91',6354534356,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 11:58:12','reception','2025-12-19 11:51:51'),(0,2234,'',0,'','RANCHHODBHAI N DABHI','','','','',0,'','','GUJARAT','INDIA','1950-11-10','Y','75Y',0,0,0,'M','','','+91',9925314601,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 12:02:31','','0000-00-00 00:00:00'),(0,2235,'',0,'','GAUTAMBHAI N PITHVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-10','Y','45Y',0,0,0,'M','','','+91',9601942582,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-10 12:08:31','','0000-00-00 00:00:00'),(0,2236,'',0,'','PANABEN B GHATA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-10','Y','45Y',0,0,0,'F','','','+91',9727681611,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 12:09:15','','0000-00-00 00:00:00'),(0,2237,'',0,'','LATABEN PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-10','Y','67Y',0,0,0,'F','','','+91',7698146942,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 12:17:45','drashti','2025-12-01 12:07:13'),(0,2238,'',0,'','VIRALBHAI G MOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-11-10','Y','38Y',0,0,0,'M','','','+91',9662521158,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 12:33:27','reception','2025-11-24 11:25:50'),(0,2239,'',0,'','SHILPABEN H CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-11-10','Y','28Y',0,0,0,'F','','','+91',9328348606,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 12:49:40','','0000-00-00 00:00:00'),(0,2240,'',0,'','SUSHILABEN VASKALE','','','','',0,'MP','MP','GUJARAT','INDIA','1997-11-10','Y','28Y',0,0,0,'M','','','+91',9685474572,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 12:57:08','','0000-00-00 00:00:00'),(0,2241,'',0,'','ANSUYABA B JADEJA','','','RAJ MOMAI-4 DHARAM NAGAR B/H STERLING HOSPITAL ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-10','Y','75Y',0,0,0,'M','','','+91',9824097079,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-10 13:10:07','drashti','2025-12-22 18:48:54'),(0,2242,'',0,'','NAYNABEN S DELVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-11-10','Y','34Y',0,0,0,'F','','','+91',9737680870,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 13:15:08','','0000-00-00 00:00:00'),(0,2243,'',0,'','BHARATKUMAR J VORA','','','INDIAN PARK MAIN ROAD B/H GULMAHOR RESIDENCY','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-10','Y','70Y',0,0,0,'M','','','+91',9909065434,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-10 15:31:27','riya','2025-12-01 22:16:51'),(0,2244,'',0,'','KAILASHBA K JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-11-10','Y','43Y',0,0,0,'F','','','+91',6352848808,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 17:00:11','','0000-00-00 00:00:00'),(0,2245,'',0,'','DHARMISHTABEN M CHANDEGRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-10','Y','39Y',0,0,0,'F','','','+91',9662409775,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 17:03:21','reception','2025-12-01 17:36:39'),(0,2246,'',0,'','RENUKABEN MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-10','Y','65Y',65,0,0,'F','','','+91',7990863054,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 17:23:01','urvashi','2025-12-08 16:48:43'),(0,2247,'',0,'','MERAGBHAI M ZANKAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-10','Y','70Y',0,0,0,'M','','','+91',9879955800,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 17:27:44','','0000-00-00 00:00:00'),(0,2248,'',0,'','KAVAN R ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2013-11-10','Y','12Y',0,0,0,'M','','','+91',9879613496,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 17:33:06','drashti','2025-11-22 12:45:33'),(0,2249,'',0,'','DAXABEN H JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-11-10','Y','47Y',47,0,0,'F','','','+91',8160065191,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 17:45:22','janvi','2025-11-21 17:47:20'),(0,2250,'',0,'','NARMADABEN M AMBALIYA','','','','',0,'WAKANER','WAKANER','GUJARAT','INDIA','1960-11-10','Y','65Y',0,0,0,'F','','','+91',9428225700,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 17:50:56','reception','2025-12-13 13:10:42'),(0,2251,'',0,'','NOOR INDORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2021-11-10','Y','04Y0M',4,0,0,'F','','','+91',7567070170,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 18:04:29','reception','2025-11-15 19:09:55'),(0,2252,'',0,'','HETALBEN D DETROJA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1985-11-10','Y','40Y',0,0,0,'F','','','+91',9922572890,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 18:21:38','','0000-00-00 00:00:00'),(0,2253,'',0,'','MANOJBHAI VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-11-10','Y','54Y',0,0,0,'M','','','+91',7600454585,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 18:25:44','urvashi','2025-11-19 18:27:24'),(0,2254,'',0,'','MAHARSHIBHAI PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-11-10','Y','19Y',0,0,0,'M','','','+91',9638603222,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 18:30:11','janvi','2025-11-21 17:50:02'),(0,2255,'',0,'','JATINBHAI MANEK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-10','Y','35Y',35,0,0,'M','','','+91',9824293379,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 18:34:43','urvashi','2025-11-21 18:36:30'),(0,2256,'',0,'','GEETABEN BHALSOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-10','Y','48Y',0,0,0,'F','','','+91',9428157792,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-10 18:53:38','manshi','2025-11-17 18:52:02'),(0,2257,'',0,'','JAGDISHBHAI JADAV','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1964-11-10','Y','61Y',0,0,0,'M','','','+91',9712658463,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-10 19:26:27','','0000-00-00 00:00:00'),(0,2258,'',0,'','DEV MAKWANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-10','Y','35Y',0,0,0,'M','','','+91',8000788808,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 19:30:09','','0000-00-00 00:00:00'),(0,2259,'',0,'','YANKI PAJINJ','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','2001-11-10','Y','24Y',0,0,0,'F','','','+91',7085308089,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 19:33:59','','0000-00-00 00:00:00'),(0,2260,'',0,'','MANISHABEN K RAMANI','','','','',0,'KHERDIYA','KHERDIYA','GUJARAT','INDIA','1989-11-10','Y','36Y',0,0,0,'F','','','+91',8320659731,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-10 19:48:40','','0000-00-00 00:00:00'),(0,2261,'',0,'','MISHTI SHASTRI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2023-11-10','Y','02Y0M',2,0,0,'F','','','+91',9664553329,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-10 20:24:36','reception','2025-11-10 20:26:11'),(0,2262,'',0,'','KALPESHBHAI G VASOYA','','','','',0,'SURAT','SURAT','GUJARAT','INDIA','1988-11-11','Y','37Y',0,0,0,'M','','','+91',9328879979,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-11 09:13:52','','0000-00-00 00:00:00'),(0,2263,'',0,'','JAGRUTIBEN N SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-11-11','Y','61Y',0,0,0,'F','','','+91',9687623021,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-11 10:05:11','reception','2025-12-01 09:57:31'),(0,2264,'',0,'','RAVINDRA SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-11','Y','31Y',31,0,0,'M','','','+91',8401984057,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 10:12:13','drashti','2025-11-11 10:12:48'),(0,2265,'',0,'','BABULAL MALVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-11','Y','32Y',0,0,0,'M','','','+91',7879547160,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-11 10:27:54','','0000-00-00 00:00:00'),(0,2266,'',0,'','HEMABEN M BALDHA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1977-11-11','Y','48Y',0,0,0,'F','','','+91',9638290543,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-11 10:40:45','','0000-00-00 00:00:00'),(0,2267,'',0,'','JAYABEN PRAGJIBHAI UNDHAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-11-11','Y','66Y',0,0,0,'F','','','+91',9727271611,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 10:44:40','','0000-00-00 00:00:00'),(0,2268,'',0,'','MANOJBHAI C SAMANI','','','','',0,'DWARKA','DWARKA','GUJARAT','INDIA','1978-11-11','Y','47Y',0,0,0,'M','','','+91',9898545712,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-11 10:49:29','','0000-00-00 00:00:00'),(0,2269,'',0,'','NIRMALABEN V DHAKAN','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1943-11-11','Y','82Y',0,0,0,'F','','','+91',9925435895,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-11 10:51:47','','0000-00-00 00:00:00'),(0,2270,'',0,'','DINESHBHAI DYALJIBHAI KOTECHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-11-11','Y','68Y',0,0,0,'M','','','+91',9098501111,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 10:52:11','priyanshi','2025-12-17 11:28:40'),(0,2271,'',0,'','BHARATSINH NAKUM','','','','',0,'JODIYA','JODIYA','GUJARAT','INDIA','1959-11-11','Y','66Y',0,0,0,'M','','','+91',9429118650,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 10:55:07','','0000-00-00 00:00:00'),(0,2272,'',0,'','NANDABEN B NAKUM','','','','',0,'JODIYA','JODIYA','GUJARAT','INDIA','1961-11-11','Y','64Y',0,0,0,'F','','','+91',9429118650,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 10:57:02','','0000-00-00 00:00:00'),(0,2273,'',0,'','MARGI RAJKOTIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-11-11','Y','21Y',0,0,0,'F','','','+91',8980403696,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-11 10:57:57','manshi','2025-12-08 18:28:03'),(0,2274,'',0,'','MALHAR TOLIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-11-11','Y','30Y',0,0,0,'M','','','+91',8000766733,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-11 11:03:51','reception','2025-12-11 11:02:40'),(0,2275,'',0,'','MEENABEN D KORIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-11-11','Y','59Y',0,0,0,'F','','','+91',9687992710,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 11:04:43','','0000-00-00 00:00:00'),(0,2276,'',0,'','NATVARLAL C SARVAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-11-11','Y','73Y',0,0,0,'M','','','+91',9825213581,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-11 11:09:55','manshi','2025-12-11 10:51:58'),(0,2277,'',0,'','BHARATSINH RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-11','Y','64Y',0,0,0,'M','','','+91',7698027933,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 11:11:32','','0000-00-00 00:00:00'),(0,2278,'',0,'','JENTIBHAI MIYATRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-11-11','Y','69Y',69,0,0,'M','','','+91',9974575602,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-11 11:16:10','reception','2025-11-11 12:34:08'),(0,2279,'',0,'','HEMANTBHAI L JUTHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-11','Y','52Y',0,0,0,'M','','','+91',9173286762,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 11:17:41','','0000-00-00 00:00:00'),(0,2280,'',0,'','SURESHBHAI  AJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-11-11','Y','54Y',0,0,0,'M','','','+91',9714497889,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-11 11:19:01','','0000-00-00 00:00:00'),(0,2281,'',0,'','RAMESHBHAI SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-11','Y','67Y',0,0,0,'M','','','+91',9924914400,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-11 11:19:47','','0000-00-00 00:00:00'),(0,2282,'',0,'','MALTIBEN SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-11-11','Y','63Y',0,0,0,'F','','','+91',9924914400,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-11 11:20:53','','0000-00-00 00:00:00'),(0,2283,'',0,'','VEKARIYA RASIKBHAI KESHUBHAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-11','Y','50Y',0,0,0,'M','','','+91',9664937147,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-11 11:31:05','','0000-00-00 00:00:00'),(0,2284,'',0,'','RAJDEEPBHAI MEHTA','','','','',0,'SURAT','SURAT','GUJARAT','INDIA','1998-11-11','Y','27Y',0,0,0,'F','','','+91',7984825620,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-11 11:33:20','','0000-00-00 00:00:00'),(0,2285,'',0,'','DINESHBHAI D KOTECHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-11','Y','70Y',0,0,0,'M','','','+91',9098501111,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-11 11:36:04','','0000-00-00 00:00:00'),(0,2286,'',0,'','KRISH RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-11-11','Y','17Y',0,0,0,'M','','','+91',9737754654,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-11 11:38:14','','0000-00-00 00:00:00'),(0,2287,'',0,'','FARIDABEN KESHWANI','','','','',0,'BABRA','BABRA','GUJARAT','INDIA','1958-11-11','Y','67Y',0,0,0,'F','','','+91',9429336982,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 11:39:16','','0000-00-00 00:00:00'),(0,2288,'',0,'','MEETBHAI PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-11-11','Y','21Y',0,0,0,'M','','','+91',9316323792,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-11 11:39:22','','0000-00-00 00:00:00'),(0,2289,'',0,'','RAMABEN RATHOD','','','','',0,'LODHIKA','LODHIKA','GUJARAT','INDIA','1955-11-11','Y','70Y',0,0,0,'F','','','+91',9099515714,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-11 11:41:41','','0000-00-00 00:00:00'),(0,2290,'',0,'','RAMESHBHAI R SORTHIYA','','','','',0,'HARIPAR','HARIPAR','GUJARAT','INDIA','1960-11-11','Y','65Y',0,0,0,'M','','','+91',9724460116,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-11 11:43:02','','0000-00-00 00:00:00'),(0,2291,'',0,'','SAVJIBHAI BHALARA','','','','',0,'KOTHARIYA','KOTHARIYA','GUJARAT','INDIA','1952-11-11','Y','73Y',0,0,0,'M','','','+91',9924844824,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-11 11:45:52','reception','2025-12-13 10:37:18'),(0,2292,'',0,'','MAULIKBHAI BHARVADA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-11','Y','35Y',0,0,0,'M','','','+91',9909946621,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 11:54:02','','0000-00-00 00:00:00'),(0,2293,'',0,'','HITAXI CHAVDA','','','','',0,'GIR SOMNATH','GIR SOMNATH','GUJARAT','INDIA','2011-11-11','Y','14Y',0,0,0,'F','','','+91',7046967057,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-11 12:01:15','','0000-00-00 00:00:00'),(0,2294,'',0,'','KESHRISINH SOLANKI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-11','Y','72Y',0,0,0,'M','','','+91',9879221630,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 12:09:25','','0000-00-00 00:00:00'),(0,2295,'',0,'','RAMESHBHAI KACHHELA','','','','',0,'DHORAJI','DHORAJI','GUJARAT','INDIA','1962-11-11','Y','63Y',0,0,0,'M','','','+91',9429569077,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-11 12:17:18','reception','2025-12-15 10:34:25'),(0,2296,'',0,'','PRAGNABEN M MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-11','Y','65Y',0,0,0,'F','','','+91',9825036664,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-11 12:19:42','reception','2025-12-10 12:28:33'),(0,2297,'',0,'','GEETABEN T. AATVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-11','Y','64Y',0,0,0,'F','','','+91',9879668004,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 12:20:28','urvashi','2025-12-16 18:21:23'),(0,2298,'',0,'','TULSIBHAI G ATVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-11','Y','62Y',0,0,0,'M','','','+91',9228152208,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-11 12:21:03','','0000-00-00 00:00:00'),(0,2299,'',0,'','MAHESHBHAI ATVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-11','Y','45Y',0,0,0,'M','','','+91',9898534626,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 12:21:49','','0000-00-00 00:00:00'),(0,2300,'',0,'','SANGITABEN P SANJA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1987-11-11','Y','38Y',0,0,0,'F','','','+91',8238366344,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-11 12:22:52','priyanshi','2025-11-11 17:09:30'),(0,2301,'',0,'','SUDHABEN DODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-11','Y','75Y',0,0,0,'F','','','+91',9726824700,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-11 12:32:36','manshi','2025-12-22 11:23:34'),(0,2302,'',0,'','SUDHABEN DODIYA','','','JAMANAGAR ROAD SATYAM SHIVAM SUNDARAM PARK','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-11','Y','75Y',0,0,0,'F','','','+91',9726824700,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-11 12:59:46','','0000-00-00 00:00:00'),(0,2303,'',0,'','KAJALBEN JOGIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-11','Y','44Y',0,0,0,'F','','','+91',9428051290,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 13:50:16','','0000-00-00 00:00:00'),(0,2304,'',0,'','GEETABA B JADEJA','','','RAJPARA','KOTDA SANGANI',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-11-11','Y','61Y',61,0,0,'F','','','+91',9574555545,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-11 14:09:49','reception','2025-11-27 18:20:22'),(0,2305,'',0,'','MAMTABEN M TALREJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-11-11','Y','29Y',0,0,0,'F','','','+91',9879840084,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-11 14:11:44','','0000-00-00 00:00:00'),(0,2306,'',0,'','MALTIBEN K VANESHIYA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1968-11-11','Y','57Y',0,0,0,'F','','','+91',9898242918,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-11 16:41:39','','0000-00-00 00:00:00'),(0,2307,'',0,'','ABBASBHAI VIKIYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-11-11','Y','43Y',43,0,0,'M','','','+91',7016881620,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 16:42:36','reception','2025-11-28 18:44:46'),(0,2308,'',0,'','MEENABA R JADEJA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1977-11-11','Y','48Y',0,0,0,'F','','','+91',9979636630,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-11 17:07:01','reception','2025-12-12 12:05:40'),(0,2309,'',0,'','MEENABEN K PATT ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-11','Y','50Y',0,0,0,'F','','','+91',9824215743,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 17:19:57','','0000-00-00 00:00:00'),(0,2310,'',0,'','DEEPBHAI M VAYA','','','','',0,'UNA','UNA','GUJARAT','INDIA','2004-11-11','Y','21Y',0,0,0,'M','','','+91',8200688304,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-11 17:25:16','','0000-00-00 00:00:00'),(0,2311,'',0,'','SAJIDABEN R RINGANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-11-11','Y','30Y',0,0,0,'F','','','+91',9714716312,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 17:41:31','drashti','2025-12-01 12:30:36'),(0,2312,'',0,'','SANGITABEN VISHWAKARMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-11','Y','31Y',0,0,0,'F','','','+91',9873091045,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-11 17:45:38','','0000-00-00 00:00:00'),(0,2313,'',0,'','INDUBA A DABHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-11','Y','70Y',0,0,0,'F','','','+91',9904918390,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-11 17:51:19','janvi','2025-12-05 17:11:47'),(0,2314,'',0,'','BINDUBA R JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-11-11','Y','38Y',0,0,0,'F','','','+91',9662510609,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-11 17:55:25','reception','2025-12-02 17:58:38'),(0,2315,'',0,'','KANTABEN S VADELIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-11','Y','60Y',0,0,0,'F','','','+91',8758744770,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 18:00:42','','0000-00-00 00:00:00'),(0,2316,'',0,'','PREMALBEN MANKAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-11','Y','53Y',0,0,0,'F','','','+91',9428890764,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-11 18:01:30','','0000-00-00 00:00:00'),(0,2317,'',0,'','RITABEN B GOSAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-11-11','Y','51Y',0,0,0,'F','','','+91',7202806748,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-11 18:02:25','janvi','2025-11-29 18:27:09'),(0,2318,'',0,'','PARV D PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2009-11-11','Y','16Y',0,0,0,'M','','','+91',9824581136,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 18:03:27','reception','2025-12-08 19:24:27'),(0,2319,'',0,'','MEERABEN S GOGIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-11-11','Y','73Y',0,0,0,'F','','','+91',9429180005,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-11 18:03:44','','0000-00-00 00:00:00'),(0,2320,'',0,'','HASINABEN A VIKAYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-11','Y','45Y',0,0,0,'F','','','+91',8511111920,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 18:10:31','','0000-00-00 00:00:00'),(0,2321,'',0,'','PANNABEN H JOSHI','','','','',0,'JASDAN','JASDAN','GUJARAT','INDIA','1966-11-11','Y','59Y',0,0,0,'F','','','+91',9016161977,'+91',9726410019,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-11 18:10:46','','0000-00-00 00:00:00'),(0,2322,'',0,'','HANSHABEN L BAPODARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-11','Y','48Y',0,0,0,'F','','','+91',9377544444,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-11 18:11:30','','0000-00-00 00:00:00'),(0,2323,'',0,'','ARVINDBHAI TOLIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-11-11','Y','41Y',0,0,0,'M','','','+91',9099971625,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 18:13:56','','0000-00-00 00:00:00'),(0,2324,'',0,'','ARVINDBHAI THAKER','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-11-11','Y','76Y',76,0,0,'M','','','+91',9624619195,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-11 18:16:57','priyanshi','2025-11-11 18:50:09'),(0,2325,'',0,'','TRUPTI PUNJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-11','Y','55Y',55,0,0,'F','','','+91',9099807053,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 18:21:43','reception','2025-12-01 18:39:52'),(0,2326,'',0,'','JANAKBA JADEJA','','','','',0,'PADADHRI','PADADHRI','GUJARAT','INDIA','1967-11-11','Y','58Y',0,0,0,'F','','','+91',8511031778,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-11 18:25:55','manshi','2025-12-12 18:54:18'),(0,2327,'',0,'','REETABA D JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-11-11','Y','49Y',0,0,0,'F','','','+91',9409528321,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 18:31:57','','0000-00-00 00:00:00'),(0,2328,'',0,'','JAYENDRABHAI BHOJUBHAI MAHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-11','Y','44Y',0,0,0,'M','','','+91',9824261835,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 18:33:58','','0000-00-00 00:00:00'),(0,2329,'',0,'','SHIVANIBEN CHOURUSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-11','Y','42Y',0,0,0,'F','','','+91',9925550847,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-11 18:36:06','','0000-00-00 00:00:00'),(0,2330,'',0,'','TORALBEN MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-11-11','Y','46Y',0,0,0,'F','','','+91',9825942480,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 18:38:06','','0000-00-00 00:00:00'),(0,2331,'',0,'','MITALIBA JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-11','Y','36Y',0,0,0,'F','','','+91',9429243201,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-11 18:43:28','','0000-00-00 00:00:00'),(0,2332,'',0,'','SHARDABEN SHRIMANKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-11','Y','70Y',0,0,0,'F','','','+91',8460008702,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-11 18:46:43','','0000-00-00 00:00:00'),(0,2333,'',0,'','VEDIKABEN PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2011-11-11','Y','14Y',0,0,0,'F','','','+91',9426935236,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 18:46:44','','0000-00-00 00:00:00'),(0,2334,'',0,'','MEENABEN K PATEL','','','','',0,'MUMBAI','MUMBAI','GUJARAT','INDIA','1968-11-11','Y','57Y',0,0,0,'F','','','+91',7303711910,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-11 18:51:52','drashti','2025-12-15 10:35:13'),(0,2335,'',0,'','DILIPBHAI KAPDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-11','Y','60Y',0,0,0,'M','','','+91',9824251188,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 18:54:16','','0000-00-00 00:00:00'),(0,2336,'',0,'','JAYSHREEBEN VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-11','Y','64Y',0,0,0,'F','','','+91',9099941499,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 19:01:13','priyanshi','2025-12-10 18:32:17'),(0,2337,'',0,'','RASIKBHAI PITRODA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-11','Y','62Y',0,0,0,'M','','','+91',9426960873,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 19:06:24','','0000-00-00 00:00:00'),(0,2338,'',0,'','URVASHI KISHAN SHILU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-11','Y','31Y',31,0,0,'F','','','+91',9265860231,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 19:21:59','urvashi','2025-12-06 10:34:29'),(0,2339,'',0,'','USHABEN JAGDISHBHAI SHILU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-11','Y','57Y',57,0,0,'F','','','+91',9925819693,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 19:23:56','manshi','2025-11-21 12:17:36'),(0,2340,'',0,'','JAYABEN M PIPALVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-11-11','Y','74Y',0,0,0,'F','','','+91',9824349633,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-11 19:26:41','','0000-00-00 00:00:00'),(0,2341,'',0,'','PRAVINBHAI J KANABAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-11-11','Y','59Y',0,0,0,'M','','','+91',7700027000,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-11 19:31:41','','0000-00-00 00:00:00'),(0,2342,'',0,'','DEVARTH H DESAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2009-11-11','Y','16Y',0,0,0,'M','','','+91',9925812299,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-11 19:43:46','','0000-00-00 00:00:00'),(0,2343,'',0,'','DAMYANTIBEN SAGAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-11-11','Y','79Y',0,0,0,'F','','','+91',9825427002,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-11 20:43:51','drashti','2025-11-20 11:30:22'),(0,2344,'',0,'','DEVENDRABHAI DODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-12','Y','55Y',0,0,0,'M','','','+91',9979352800,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 08:48:07','','0000-00-00 00:00:00'),(0,2345,'',0,'','SONOM KHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-11-12','Y','28Y',0,0,0,'F','','','+91',9205895912,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 08:50:36','','0000-00-00 00:00:00'),(0,2346,'',0,'','BHARATBHAI BHUVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-12','Y','55Y',0,0,0,'M','','','+91',8898872872,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-12 09:26:03','','0000-00-00 00:00:00'),(0,2347,'',0,'','DEEPAKBHAI PARIYAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-11-12','Y','25Y',0,0,0,'M','','','+91',9327336899,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-12 09:48:16','janvi','2025-12-03 11:19:25'),(0,2348,'',0,'','JAYESHBHAI I BHATT','','','','',0,'KESHOD','KESHOD','GUJARAT','INDIA','1972-11-12','Y','53Y',0,0,0,'M','','','+91',9904486057,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 09:50:00','reception','2025-12-17 10:06:00'),(0,2349,'',0,'','KANTIBHAI LALAJIBHAI KAPADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-11-12','Y','63Y',0,0,0,'M','','','+91',9427729369,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 10:11:17','','0000-00-00 00:00:00'),(0,2350,'',0,'','RAJESHBHAI GADHVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-12','Y','48Y',0,0,0,'M','','','+91',9898211633,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 10:27:19','','0000-00-00 00:00:00'),(0,2351,'',0,'','PARASBEN M JADAV','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1990-11-12','Y','35Y',0,0,0,'F','','','+91',9023911236,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 10:39:05','reception','2025-12-10 11:32:02'),(0,2352,'',0,'','JITENDRABHAI NANALAL BADARKIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-12','Y','50Y',0,0,0,'M','','','+91',9904046007,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 10:41:47','janvi','2025-12-05 10:48:55'),(0,2353,'',0,'','PRASHANTBHAI R MANDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-11-12','Y','58Y',0,0,0,'M','','','+91',9428251850,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-12 10:55:59','','0000-00-00 00:00:00'),(0,2354,'',0,'','JATINBHAI D CHAVDA','','','','',0,'VIRPAR','VIRPAR','GUJARAT','INDIA','1964-11-12','Y','61Y',0,0,0,'M','','','+91',9825279519,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 11:00:03','','0000-00-00 00:00:00'),(0,2355,'',0,'','KETANBHAI GOL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-12','Y','44Y',0,0,0,'M','','','+91',9099092904,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 11:05:38','','0000-00-00 00:00:00'),(0,2356,'',0,'','JAYSHREEBEN M DESAI','','','','',0,'VICHHIYA','VICHHIYA','GUJARAT','INDIA','1995-11-12','Y','30Y',0,0,0,'F','','','+91',8000452530,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 11:09:59','','0000-00-00 00:00:00'),(0,2357,'',0,'','JASUBEN M SACHIYA','','','','',0,'SAPAR','SAPAR','GUJARAT','INDIA','1985-11-12','Y','40Y',0,0,0,'F','','','+91',9724646480,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-12 11:11:15','reception','2025-12-04 11:14:36'),(0,2358,'',0,'','MANJUBEN S VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-12','Y','65Y',0,0,0,'F','','','+91',9426953035,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-12 11:11:20','manshi','2025-11-25 12:58:49'),(0,2359,'',0,'','POPATBHAI J MANVAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-12','Y','70Y',0,0,0,'M','','','+91',9879310448,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 11:15:19','janvi','2025-12-22 17:37:47'),(0,2360,'',0,'','KANTILAL K RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-11-12','Y','73Y',73,0,0,'M','','','+91',9924177212,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 11:17:30','reception','2025-11-19 10:31:45'),(0,2361,'',0,'','RAMNIKBHAI G MAKWANA','','','','',0,'SIDSAR JAMNAGAR','SIDSAR JAMNAGAR','GUJARAT','INDIA','1955-11-12','Y','70Y',0,0,0,'M','','','+91',8128365607,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-12 11:20:12','','0000-00-00 00:00:00'),(0,2362,'',0,'','ANJANABEN P PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-11-12','Y','49Y',0,0,0,'F','','','+91',9925885287,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-12 11:21:09','janvi','2025-11-24 12:35:14'),(0,2363,'',0,'','MADHUBEN M GAJIPARA','','','','',0,'VIRPUR','VIRPUR','GUJARAT','INDIA','1975-11-12','Y','50Y',0,0,0,'F','','','+91',7874555448,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-12 11:27:00','','0000-00-00 00:00:00'),(0,2364,'',0,'','RAMESHBHAI GADHVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-12','Y','55Y',0,0,0,'M','','','+91',9687515763,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 11:27:34','','0000-00-00 00:00:00'),(0,2365,'',0,'','JENTIBHAI BHANUSHALI','','','','',0,'MANDVI','MANDVI','GUJARAT','INDIA','1967-11-12','Y','58Y',0,0,0,'M','','','+91',9913112265,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 11:29:59','','0000-00-00 00:00:00'),(0,2366,'',0,'','MANISHABEN VACHHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-12','Y','52Y',0,0,0,'F','','','+91',8609384897,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-12 11:31:59','','0000-00-00 00:00:00'),(0,2367,'',0,'','JAYDIP RAMBHAI DODIYA','','','KISHAN PARK-6, UMIYA CHOWK','150 FT RING ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-08-10','N','30Y',0,0,0,'M','','','+91',8238682486,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-12 11:35:44','drashti','2025-11-19 17:30:55'),(0,2368,'',0,'','JANAKSINH RANA','','','','',0,'GANDHIDHAM','GANDHIDHAM','GUJARAT','INDIA','1963-11-12','Y','62Y',0,0,0,'M','','','+91',9978912543,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-12 11:41:21','','0000-00-00 00:00:00'),(0,2369,'',0,'','KINJALBEN GHUNTALA','','','','',0,'SURAT','SURAT','GUJARAT','INDIA','1993-11-12','Y','32Y',0,0,0,'F','','','+91',9979965531,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-12 11:50:51','','0000-00-00 00:00:00'),(0,2370,'',0,'','BIPINBHAI DAVE','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1983-11-12','Y','42Y',0,0,0,'M','','','+91',9104122319,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 11:55:22','','0000-00-00 00:00:00'),(0,2371,'',0,'','RAVATBHAI L GIDA','','','','',0,'BOTAD','BOTAD','GUJARAT','INDIA','1973-11-12','Y','52Y',0,0,0,'M','','','+91',9824892181,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 11:57:21','','0000-00-00 00:00:00'),(0,2372,'',0,'','AVNIBEN KANANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-11-12','Y','23Y',0,0,0,'F','','','+91',7359097150,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-12 12:00:57','','0000-00-00 00:00:00'),(0,2373,'',0,'','PRABHULAL T SANTOKI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1949-11-12','Y','76Y',0,0,0,'M','','','+91',9879876424,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 12:01:19','','0000-00-00 00:00:00'),(0,2374,'',0,'','ARHAN MATARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-11-12','Y','18Y',0,0,0,'M','','','+91',9824849988,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 12:05:30','reception','2025-11-24 17:14:50'),(0,2375,'',0,'','SUSHILABEN SANGHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-12','Y','72Y',0,0,0,'F','','','+91',9099923505,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 12:10:26','','0000-00-00 00:00:00'),(0,2376,'',0,'','PRAFULABA B CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-12','Y','40Y',0,0,0,'F','','','+91',9265035590,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 12:24:31','','0000-00-00 00:00:00'),(0,2377,'',0,'','REKHABEN CHHATRALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-12','Y','55Y',0,0,0,'M','','','+91',9725424033,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 12:26:42','','0000-00-00 00:00:00'),(0,2378,'',0,'','SHARDABEN JAGODRA','','','','',0,'TANKARA','TANKARA','GUJARAT','INDIA','1963-11-12','Y','62Y',0,0,0,'F','','','+91',9879956599,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 12:30:27','','0000-00-00 00:00:00'),(0,2379,'',0,'','JINALBEN D TANNA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-12','Y','39Y',0,0,0,'F','','','+91',9824510151,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 12:42:43','reception','2025-11-15 19:29:35'),(0,2380,'',0,'','KAMLESHBHAI A CHAUHAN','','','OPP NEW BUS STAND,','KAILASH NAGAR, ST NO-2, ',0,'JASDAN','JASDAN','GUJARAT','INDIA','1980-11-12','Y','45Y',0,0,0,'M','','','+91',7096594787,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-12 12:43:13','reception','2025-11-28 16:37:37'),(0,2381,'',0,'','CHANDULAL H KHAKHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1943-11-12','Y','82Y',0,0,0,'M','','','+91',9879134499,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 12:49:03','','0000-00-00 00:00:00'),(0,2382,'',0,'','MIRALI CHHAG','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-11-12','Y','24Y',0,0,0,'F','','','+91',7016037987,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 12:53:16','','0000-00-00 00:00:00'),(0,2383,'',0,'','HEMANGBHAI D MULIYANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-12','Y','39Y',0,0,0,'M','','','+91',8460680045,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 12:56:48','','0000-00-00 00:00:00'),(0,2384,'',0,'','SURESHBHAI J MAKWANA','','','CHOTILA','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-12','Y','32Y',0,0,0,'M','','','+91',9879376531,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-12 13:44:51','urvashi','2025-12-04 13:36:36'),(0,2385,'',0,'','RANJANBEN R CHAUHAN','','','PANDATHIRATH','HALVAD',0,'MORBI','MORBI','GUJARAT','INDIA','1985-11-12','Y','40Y',0,0,0,'F','','','+91',8758749736,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 16:01:17','janvi','2025-11-20 11:13:34'),(0,2386,'',0,'','KALPESH DESAI','','MACWELL PH','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-11-12','Y','47Y',0,0,0,'M','','','+91',9825756058,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 16:34:36','','0000-00-00 00:00:00'),(0,2387,'',0,'','MANISH MEHTA','','SARABHAI C','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-12','Y','57Y',0,0,0,'M','','','+91',8980330270,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 16:52:00','reception','2025-12-05 16:36:58'),(0,2388,'',0,'','RAJESHBHAI G DHANAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-12','Y','60Y',0,0,0,'M','','','+91',9913542169,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 16:59:21','','0000-00-00 00:00:00'),(0,2389,'',0,'','CHANDRAJEETSINH DABHI                                                                                                                                    ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-12','Y','32Y',0,0,0,'M','','','+91',9033390099,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 17:06:36','reception','2025-12-17 17:35:20'),(0,2390,'',0,'','HITESHBHAI DABHI','','','','',0,'','','GUJARAT','INDIA','1987-11-12','Y','38Y',0,0,0,'M','','','+91',9723298805,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 17:08:06','','0000-00-00 00:00:00'),(0,2391,'',0,'','YASHMINBEN KHIMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-11-12','Y','61Y',0,0,0,'F','','','+91',8866051231,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 17:12:05','','0000-00-00 00:00:00'),(0,2392,'',0,'','BABUBHAI JASANI','','','','',0,'AHEMDABAD','AHEMDABAD','GUJARAT','INDIA','1945-11-12','Y','80Y',0,0,0,'M','','','+91',9638134359,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 17:18:49','','0000-00-00 00:00:00'),(0,2393,'',0,'','SHIVAM N  ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2016-11-12','Y','09Y0M',0,0,0,'M','','','+91',9998466604,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 17:20:32','','0000-00-00 00:00:00'),(0,2394,'',0,'','MADHUBEN M PIPALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-11-12','Y','56Y',0,0,0,'F','','','+91',9638141500,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 17:23:39','','0000-00-00 00:00:00'),(0,2395,'',0,'','SHANTILAL P KANJIYA','','','','',0,'PADDHRI','PADDHRI','GUJARAT','INDIA','1975-11-12','Y','50Y',0,0,0,'M','','','+91',9512798114,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 17:26:06','','0000-00-00 00:00:00'),(0,2396,'',0,'','JYOTIBEN TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-12','Y','44Y',0,0,0,'F','','','+91',8200772731,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 17:27:18','reception','2025-11-24 18:46:10'),(0,2397,'',0,'','SMITABEN N SAKARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-12','Y','50Y',50,0,0,'F','','','+91',9429422880,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-12 17:27:41','janvi','2025-11-12 17:28:10'),(0,2398,'',0,'','HIRJIBHAI R CHOTALIYA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1960-11-12','Y','65Y',0,0,0,'M','','','+91',9725327646,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 17:29:07','','0000-00-00 00:00:00'),(0,2399,'',0,'','ISMAILMIYA J KADARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-11-12','Y','59Y',0,0,0,'M','','','+91',9974375743,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 17:31:45','reception','2025-12-08 11:29:19'),(0,2400,'',0,'','SANGITABEN PIPALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-12','Y','50Y',0,0,0,'F','','','+91',8000550056,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 17:33:59','','0000-00-00 00:00:00'),(0,2401,'',0,'','NEETABA JADEJA','','','','',0,'GONDAL ','GONDAL ','GUJARAT','INDIA','1966-11-12','Y','59Y',0,0,0,'F','','','+91',9099099141,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 17:37:49','reception','2025-12-12 17:48:18'),(0,2402,'',0,'','URMILABEN MOHANBHAI VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-12','Y','67Y',0,0,0,'F','','','+91',9904033739,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 17:38:10','drashti','2025-12-01 11:24:45'),(0,2403,'',0,'','LAXMIBEN AMARSHINHBHAI BECHRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-12','Y','70Y',0,0,0,'F','','','+91',9428274352,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 17:42:15','','0000-00-00 00:00:00'),(0,2404,'',0,'','GITABEN B PARMAR','','','','',0,'SHAPAR','SHAPAR','GUJARAT','INDIA','2000-11-12','Y','25Y',0,0,0,'F','','','+91',6353361762,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 17:46:58','','0000-00-00 00:00:00'),(0,2405,'',0,'','KAMLESHBHAI PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-12','Y','53Y',53,0,0,'M','','','+91',9879892493,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-12 17:49:11','janvi','2025-11-12 17:49:44'),(0,2406,'',0,'','KIRITKUMAR M MANSETA','','','','',0,'','','GUJARAT','INDIA','1960-11-12','Y','65Y',65,0,0,'M','','','+91',9925961921,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 17:52:44','reception','2025-11-12 19:00:42'),(0,2407,'',0,'','RAGHAVBHAI G KATHESIA','','','','',0,'SHAPAR','SHAPAR','GUJARAT','INDIA','1945-11-12','Y','80Y',80,0,0,'M','','','+91',9033482067,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-12 17:56:02','manshi','2025-11-19 12:26:15'),(0,2408,'',0,'','DEEPABEN KARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-12','Y','39Y',0,0,0,'F','','','+91',9023900675,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 17:57:13','','0000-00-00 00:00:00'),(0,2409,'',0,'','KALPESHBHAI H PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-11-12','Y','46Y',46,0,0,'M','','','+91',9724593871,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-12 18:07:01','janvi','2025-11-12 18:07:59'),(0,2410,'',0,'','NAYNABEN N AMBASANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-12','Y','60Y',0,0,0,'F','','','+91',9824804164,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 18:08:55','','0000-00-00 00:00:00'),(0,2411,'',0,'','RAJESHWARIBEN M BUDHELIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-12','Y','55Y',0,0,0,'F','','','+91',8460018904,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 18:14:13','urvashi','2025-12-03 13:37:29'),(0,2412,'',0,'','VALLABHBHAI B PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-12','Y','64Y',0,0,0,'M','','','+91',6353858560,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 18:17:27','','0000-00-00 00:00:00'),(0,2413,'',0,'','NITABEN BHUVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-12','Y','55Y',0,0,0,'F','','','+91',9725653361,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 18:23:09','','0000-00-00 00:00:00'),(0,2414,'',0,'','REKHABEN TAMTTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-11-12','Y','38Y',0,0,0,'F','','','+91',9737176037,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 18:27:41','','0000-00-00 00:00:00'),(0,2415,'',0,'','INDUBA CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-11-12','Y','54Y',54,0,0,'F','','','+91',9601699997,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-12 18:38:59','janvi','2025-11-21 18:09:30'),(0,2416,'',0,'','VIDIT S DHANESHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-11-12','Y','22Y',22,0,0,'M','','','+91',7046383671,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 18:46:05','reception','2025-11-12 19:21:45'),(0,2417,'',0,'','KOMALBEN  KHALAPADA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-11-12','Y','41Y',41,0,0,'F','','','+91',8100099999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 18:47:43','reception','2025-11-12 19:38:24'),(0,2418,'',0,'','NAYNABEN R YADAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-12','Y','36Y',0,0,0,'F','','','+91',9924166721,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 18:49:25','','0000-00-00 00:00:00'),(0,2419,'',0,'','SUMITABEN JOTVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-11-12','Y','29Y',0,0,0,'F','','','+91',8200740736,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 18:54:35','','0000-00-00 00:00:00'),(0,2420,'',0,'','ILA M PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-11-12','Y','47Y',0,0,0,'F','','','+91',9924324102,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 18:56:45','','0000-00-00 00:00:00'),(0,2421,'',0,'','KANTABEN RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-12','Y','57Y',0,0,0,'F','','','+91',6352756306,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 18:58:33','drashti','2025-11-20 18:04:35'),(0,2422,'',0,'','VASANTBA R TALATIYA','','','','',0,'','','GUJARAT','INDIA','1965-11-12','Y','60Y',0,0,0,'F','','','+91',9737970314,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-12 19:00:05','manshi','2025-12-22 18:07:47'),(0,2423,'',0,'','MANJUBEN H ASHIYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-11-12','Y','49Y',0,0,0,'F','','','+91',9925179010,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 19:04:06','janvi','2025-12-12 18:48:16'),(0,2424,'',0,'','MEENA KUMARI MAMNANI','','','VASANT MALHAR, RAIYA GAM','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-01-01','N','62Y',0,0,0,'F','','','+91',9799931066,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-12 19:12:44','','0000-00-00 00:00:00'),(0,2425,'',0,'','MINAXIBEN PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-11-12','Y','71Y',0,0,0,'F','','','+91',8320603071,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-12 19:13:00','','0000-00-00 00:00:00'),(0,2426,'',0,'','NANDITA J MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-12','Y','45Y',0,0,0,'F','','','+91',9879578030,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 19:13:12','drashti','2025-11-24 17:53:30'),(0,2427,'',0,'','SHITALBEN JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-12','Y','48Y',0,0,0,'F','','','+91',8320603071,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-12 19:14:04','','0000-00-00 00:00:00'),(0,2428,'',0,'','SANJAYBHAI M PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-11-12','Y','46Y',46,0,0,'M','','','+91',9924164109,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 19:16:49','drashti','2025-11-12 19:19:09'),(0,2429,'',0,'','SALIM Y HAMDANI','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1963-11-12','Y','62Y',0,0,0,'M','','','+91',9909012206,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 19:27:07','','0000-00-00 00:00:00'),(0,2430,'',0,'','FARIDA S HAMDANI','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1970-11-12','Y','55Y',0,0,0,'F','','','+91',9909012206,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 19:28:36','','0000-00-00 00:00:00'),(0,2431,'',0,'','BINALBEN S. BHANDERI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-12','Y','39Y',0,0,0,'F','','','+91',9998491768,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 19:36:24','','0000-00-00 00:00:00'),(0,2432,'',0,'','CHAITANY D AMRUTIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2012-11-12','Y','13Y',13,0,0,'M','','','+91',7228877201,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-12 19:38:17','manshi','2025-11-12 19:46:15'),(0,2433,'',0,'','DRASHTI KAPURIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-11-12','Y','23Y',0,0,0,'F','','','+91',9782390320,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-12 19:50:59','','0000-00-00 00:00:00'),(0,2434,'',0,'','KAVAY VASYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2013-11-12','Y','12Y',0,0,0,'M','','','+91',9723707200,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-12 19:58:45','shweta','2025-11-13 19:25:05'),(0,2435,'',0,'','DR SIDHARTH RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-11-13','Y','28Y',0,0,0,'M','','','+91',9429334333,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 08:59:54','','0000-00-00 00:00:00'),(0,2436,'',0,'','SHASHIKANT RAMAVAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-11-13','Y','71Y',0,0,0,'M','','','+91',9271604310,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-13 09:10:54','','0000-00-00 00:00:00'),(0,2437,'',0,'','RANJANBEN RAMAVAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-13','Y','64Y',0,0,0,'F','','','+91',9271604310,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-13 09:12:09','','0000-00-00 00:00:00'),(0,2438,'',0,'','MEENA KUMARI MAMNANI','','','RAIYA ROAD VASANTMALA BUILDING APP','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-08-05','N','62Y',0,0,0,'F','','','+91',9799931066,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-13 09:33:24','','0000-00-00 00:00:00'),(0,2439,'',0,'','MEERABEN D HALANI','','','GEETA NAGAR B/H ST WORK SHOP STREET NO-4','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-13','Y','42Y',0,0,0,'F','','','+91',9879880453,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-13 09:43:44','','0000-00-00 00:00:00'),(0,2440,'',0,'','KETANBHAI M RAMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-13','Y','48Y',0,0,0,'M','','','+91',9016726464,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 10:07:42','','0000-00-00 00:00:00'),(0,2441,'',0,'','JAGDISHBHAI AGRAWAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-13','Y','42Y',0,0,0,'M','','','+91',8980557555,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 10:24:18','','0000-00-00 00:00:00'),(0,2442,'',0,'','SHANTIBHAI BAROT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-11-13','Y','74Y',0,0,0,'M','','','+91',7878255558,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 10:25:52','','0000-00-00 00:00:00'),(0,2443,'',0,'','JAYABEN K  KALARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-13','Y','70Y',0,0,0,'F','','','+91',9429327477,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 10:25:57','','0000-00-00 00:00:00'),(0,2444,'',0,'','RAMESHBHAI  GHODASARA','','','','',0,'KESHOD','KESHOD','GUJARAT','INDIA','1967-11-13','Y','58Y',0,0,0,'M','','','+91',9408165334,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 10:28:34','','0000-00-00 00:00:00'),(0,2445,'',0,'','BHUPENDRAKUMAR R DHRUV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-11-13','Y','79Y',0,0,0,'M','','','+91',9428720826,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 10:38:13','','0000-00-00 00:00:00'),(0,2446,'',0,'','RUKSHMANIBEN J DABHI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1988-11-13','Y','37Y',0,0,0,'F','','','+91',9827521479,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 10:46:07','','0000-00-00 00:00:00'),(0,2447,'',0,'','SAROJBEN KAGATHRA','','','','',0,'KALAVAD ROAD','KALAVAD ROAD','GUJARAT','INDIA','1966-11-13','Y','59Y',59,0,0,'F','','','+91',9409257223,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 10:48:22','reception','2025-11-24 10:20:49'),(0,2448,'',0,'','HANSABEN L BAPODARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-13','Y','45Y',0,0,0,'F','','','+91',8141812444,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 10:54:12','','0000-00-00 00:00:00'),(0,2449,'',0,'','VAISHALIBEN H DHAKAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-11-13','Y','43Y',0,0,0,'F','','','+91',9824355533,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 11:01:53','reception','2025-12-09 10:42:57'),(0,2450,'',0,'','JAMANBHAI  CHAVDA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1979-11-13','Y','46Y',0,0,0,'M','','','+91',9727930690,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 11:08:12','','0000-00-00 00:00:00'),(0,2451,'',0,'','BHUPATBHAI TOLIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-13','Y','52Y',0,0,0,'M','','','+91',7490859085,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-13 11:08:51','','0000-00-00 00:00:00'),(0,2452,'',0,'','TANUJA PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-13','Y','50Y',0,0,0,'F','','','+91',7874236540,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 11:11:49','','0000-00-00 00:00:00'),(0,2453,'',0,'','JAYANTILAL CHAROLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-11-13','Y','63Y',63,0,0,'M','','','+91',9924365098,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 11:14:03','priyanshi','2025-11-13 11:14:46'),(0,2454,'',0,'','MARIYAMBEN K VIKIYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-13','Y','70Y',70,0,0,'F','','','+91',0,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 11:14:11','reception','2025-11-13 12:02:26'),(0,2455,'',0,'','KRISHNABEN V RAJPUT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-13','Y','32Y',32,0,0,'F','','','+91',9724122191,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 11:18:17','reception','2025-11-24 10:53:43'),(0,2456,'',0,'','KANTILAL A DHABALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1940-11-13','Y','85Y',0,0,0,'M','','','+91',9726395263,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 11:20:54','','0000-00-00 00:00:00'),(0,2457,'',0,'','DHARAMSINHBHAI K BARAIYA','','','','',0,'METODA','METODA','GUJARAT','INDIA','1950-11-13','Y','75Y',75,0,0,'M','','','+91',7817010505,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-13 11:26:53','priyanshi','2025-11-13 12:23:15'),(0,2458,'',0,'','RAMABHAI D BATHVAR','','','','',0,'BAMANBOR','BAMANBOR','GUJARAT','INDIA','1979-11-13','Y','46Y',0,0,0,'M','','','+91',8320473260,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-13 11:27:56','','0000-00-00 00:00:00'),(0,2459,'',0,'','JITEN DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-11-13','Y','51Y',0,0,0,'M','','','+91',9825396694,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 11:33:31','','0000-00-00 00:00:00'),(0,2460,'',0,'','ALIAKBAR SHEIKH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-11-13','Y','34Y',0,0,0,'M','','','+91',8866088786,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','janvi','2025-11-13 11:38:00','','0000-00-00 00:00:00'),(0,2461,'',0,'','KAUSHIKKUMAR GOVINDE','','','','',0,'DIU','DIU','GUJARAT','INDIA','1976-11-13','Y','49Y',0,0,0,'M','','','+91',9898104057,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 11:44:21','','0000-00-00 00:00:00'),(0,2462,'',0,'','MAMAIYABHAI J MUNJARIYA','','','','',0,'JETALSAR','JETALSAR','GUJARAT','INDIA','1969-11-13','Y','56Y',0,0,0,'M','','','+91',9925264045,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 11:54:24','reception','2025-12-03 11:13:04'),(0,2463,'',0,'','VALLBHBHAI THUMAR','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1955-11-13','Y','70Y',0,0,0,'M','','','+91',9426448720,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 12:28:40','reception','2025-12-15 17:26:44'),(0,2464,'',0,'','VANDANABEN GADHVI','','','','',0,'MADHDA','MADHDA','GUJARAT','INDIA','1970-11-13','Y','55Y',0,0,0,'F','','','+91',9898211633,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 12:34:01','urvashi','2025-12-12 08:57:36'),(0,2465,'',0,'','AMITBHAI GOHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-11-13','Y','34Y',0,0,0,'M','','','+91',9427410127,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-13 12:34:34','','0000-00-00 00:00:00'),(0,2466,'',0,'','CHETANBHAI CHANIYARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-13','Y','57Y',0,0,0,'M','','','+91',9426949726,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 12:42:52','','0000-00-00 00:00:00'),(0,2467,'',0,'','SAVITABEN LUNIYATAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-11-13','Y','76Y',0,0,0,'F','','','+91',9016943635,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-13 12:45:59','','0000-00-00 00:00:00'),(0,2468,'',0,'','HASMUKHBHAI S GOHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-13','Y','62Y',0,0,0,'M','','','+91',9909830926,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 12:46:29','','0000-00-00 00:00:00'),(0,2469,'',0,'','DIGVIJAY KALUBHAI PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-11-13','Y','28Y',0,0,0,'M','','','+91',7624048348,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 13:21:06','','0000-00-00 00:00:00'),(0,2470,'',0,'','DEEPAKBHAI D MANIYAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-13','Y','65Y',0,0,0,'M','','','+91',8866261071,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-13 13:28:26','','0000-00-00 00:00:00'),(0,2471,'',0,'','HASMUKHBHAI DATTANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-11-13','Y','51Y',0,0,0,'M','','','+91',9409258698,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 13:29:24','','0000-00-00 00:00:00'),(0,2472,'',0,'','BHUPATBHAI TOLIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-13','Y','52Y',0,0,0,'M','','','+91',7490859085,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 13:33:32','','0000-00-00 00:00:00'),(0,2473,'',0,'','SARIFABEN S KAPA','','','','',0,'MANGROL','MANGROL','GUJARAT','INDIA','2000-11-13','Y','25Y',0,0,0,'F','','','+91',7359011618,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 14:01:44','','0000-00-00 00:00:00'),(0,2474,'',0,'','TULSHIRAM M RATADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-11-13','Y','23Y',0,0,0,'M','','','+91',9924353191,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-13 15:48:35','','0000-00-00 00:00:00'),(0,2475,'',0,'','PAYALBEN D HANSALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-13','Y','35Y',0,0,0,'F','','','+91',9428125566,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 16:29:43','reception','2025-12-03 10:35:16'),(0,2476,'',0,'','NARESHBHAI J CHAVDA','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1987-11-13','Y','38Y',0,0,0,'M','','','+91',8807302302,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 16:37:16','','0000-00-00 00:00:00'),(0,2477,'',0,'','RITABEN NANDANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-11-13','Y','54Y',0,0,0,'F','','','+91',9374989952,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 16:38:58','','0000-00-00 00:00:00'),(0,2478,'',0,'','NITABEN B BHUT','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1971-11-13','Y','54Y',0,0,0,'F','','','+91',9428039071,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 17:11:30','','0000-00-00 00:00:00'),(0,2479,'',0,'','MUNIRABEN J LAKDAVALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-13','Y','62Y',0,0,0,'F','','','+91',8141946945,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 17:14:11','reception','2025-12-02 17:19:00'),(0,2480,'',0,'','RATILALBHAI LANGHANOJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-13','Y','70Y',0,0,0,'M','','','+91',9099059939,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 17:17:14','reception','2025-12-03 16:31:52'),(0,2481,'',0,'','ARVINDBHAI L KOTADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-13','Y','57Y',0,0,0,'M','','','+91',9909459656,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 17:26:06','','0000-00-00 00:00:00'),(0,2482,'',0,'','HINALBEN D RAIYANI','','','','',0,'KUVADVA','KUVADVA','GUJARAT','INDIA','2007-11-13','Y','18Y',0,0,0,'F','','','+91',9016653773,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 17:32:17','reception','2025-12-03 17:30:36'),(0,2483,'',0,'','HARSUKHBHAI  S SACHDEV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1938-11-13','Y','87Y',0,0,0,'M','','','+91',9898569713,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 17:47:43','','0000-00-00 00:00:00'),(0,2484,'',0,'','VALIBEN PARMAR','','','','',0,'MANDOL','MANDOL','GUJARAT','INDIA','1960-11-13','Y','65Y',0,0,0,'F','','','+91',9723233939,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 17:49:09','','0000-00-00 00:00:00'),(0,2485,'',0,'','SOHA  A ANSARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-11-13','Y','17Y',0,0,0,'F','','','+91',9428037780,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-13 17:51:38','','0000-00-00 00:00:00'),(0,2486,'',0,'','KAMLABEN D PUNANI','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1971-11-13','Y','54Y',0,0,0,'F','','','+91',9023622022,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 17:54:17','','0000-00-00 00:00:00'),(0,2487,'',0,'','SAVITABEN B SADHARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-11-13','Y','71Y',0,0,0,'F','','','+91',7043530837,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 18:01:22','','0000-00-00 00:00:00'),(0,2488,'',0,'','AARTIBEN P JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-11-13','Y','73Y',0,0,0,'F','','','+91',9924118070,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 18:03:53','','0000-00-00 00:00:00'),(0,2489,'',0,'','PRAKASHBHAI JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-13','Y','75Y',0,0,0,'M','','','+91',9924118070,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-13 18:05:00','drashti','2025-11-17 13:14:57'),(0,2490,'',0,'','ANITABEN TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-13','Y','53Y',0,0,0,'F','','','+91',9428003105,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-13 18:05:16','','0000-00-00 00:00:00'),(0,2491,'',0,'','SMITABEN KAVAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-13','Y','60Y',0,0,0,'F','','','+91',8866211871,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 18:11:09','','0000-00-00 00:00:00'),(0,2492,'',0,'','MAHENDRABHAI K TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-13','Y','44Y',0,0,0,'M','','','+91',9879115032,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 18:22:51','','0000-00-00 00:00:00'),(0,2493,'',0,'','PRAKASHBHAI VADARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-13','Y','48Y',0,0,0,'M','','','+91',9712250122,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 18:25:09','','0000-00-00 00:00:00'),(0,2494,'',0,'','INDRAJITBHAI D KHER','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-11-13','Y','33Y',0,0,0,'M','','','+91',7777962777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-13 18:39:16','','0000-00-00 00:00:00'),(0,2495,'',0,'','GEETABEN N SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-13','Y','60Y',0,0,0,'F','','','+91',8140061819,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 18:55:12','','0000-00-00 00:00:00'),(0,2496,'',0,'','BHAVNABEN KAKU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-11-13','Y','77Y',0,0,0,'F','','','+91',9427209656,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 19:09:27','','0000-00-00 00:00:00'),(0,2497,'',0,'','LAXMANBHAI MAGNANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-13','Y','50Y',0,0,0,'M','','','+91',9825010899,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 19:24:35','','0000-00-00 00:00:00'),(0,2498,'',0,'','JATINBHAI HARSODA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-11-13','Y','33Y',0,0,0,'F','','','+91',9428591225,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-13 19:26:05','','0000-00-00 00:00:00'),(0,2499,'',0,'','FATTECHAND BHAGWANDAS  VIRANI','','','31 DHARMANIS GROUND FLOOR, NIRANJANI SOCIETY,','B/H NEHRU NAGAR RAIYA ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-06-26','N','80Y',0,0,0,'M','','','+91',9825181706,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-13 19:35:15','drashti','2025-11-20 11:24:08'),(0,2500,'',0,'','RAXITBHAI R AJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-11-13','Y','27Y',27,0,0,'M','','','+91',9054902190,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-13 19:58:42','shweta','2025-11-13 19:59:04'),(0,2501,'',0,'','PRAVINBHAI PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-14','Y','70Y',0,0,0,'M','','','+91',9428348553,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 08:46:04','reception','2025-12-10 18:16:08'),(0,2502,'',0,'','BIPINBHAI PALAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-14','Y','67Y',0,0,0,'M','','','+91',9428058945,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-14 09:13:20','','0000-00-00 00:00:00'),(0,2503,'',0,'','CHANDRIKABEN Y PUJARA','','','','',0,'THAN','THAN','GUJARAT','INDIA','1973-11-14','Y','52Y',0,0,0,'F','','','+91',9925642056,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 09:51:04','reception','2025-12-01 09:48:51'),(0,2504,'',0,'','BALDHA VIJAYBHAI ','','','RAYDI, JAMKANDORNA ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-03-15','N','54Y',0,0,0,'M','','','+91',9725645380,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-14 09:53:21','janvi','2025-11-21 09:49:41'),(0,2505,'',0,'','JIGNABEN KANDORIYA','','','','',0,'','','GUJARAT','INDIA','1985-11-14','Y','40Y',0,0,0,'F','','','+91',7359233369,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 10:17:14','shweta','2025-11-14 14:27:41'),(0,2506,'',0,'','KANCHANBEN M PARMAR','','','ISHWARIYA, KALAWAD ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-14','Y','55Y',0,0,0,'F','','','+91',9925819542,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-14 10:17:30','drashti','2025-11-21 11:52:12'),(0,2507,'',0,'','KAMLABEN D PATEL','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1968-11-14','Y','57Y',0,0,0,'F','','','+91',9825246551,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 10:19:46','reception','2025-12-23 16:14:04'),(0,2508,'',0,'','LAXMANBHAI G PARMAR','','','','',0,'DWARKA','DWARKA','GUJARAT','INDIA','1965-11-14','Y','60Y',0,0,0,'M','','','+91',9824192461,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 10:21:53','','0000-00-00 00:00:00'),(0,2509,'',0,'','SHARDABEN SAKHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-11-14','Y','80Y',0,0,0,'M','','','+91',9909912383,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-14 10:29:00','','0000-00-00 00:00:00'),(0,2510,'',0,'','MANOJBHAI KACHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-11-14','Y','61Y',0,0,0,'M','','','+91',9825079382,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 10:32:03','reception','2025-12-08 12:18:35'),(0,2511,'',0,'','RAMDEBHAI KARANGIYA','','','','',0,'JAM KHAMBHARIYA','JAM KHAMBHARIYA','GUJARAT','INDIA','1990-11-14','Y','35Y',0,0,0,'M','','','+91',9099825233,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 10:34:27','','0000-00-00 00:00:00'),(0,2512,'',0,'','HINABEN R LADANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-14','Y','44Y',0,0,0,'F','','','+91',9737936236,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 10:36:02','','0000-00-00 00:00:00'),(0,2513,'',0,'','GIRDHARLAL H SIDDHAPURA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1941-11-14','Y','84Y',0,0,0,'M','','','+91',9824123232,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-14 10:42:06','urvashi','2025-12-16 19:42:21'),(0,2514,'',0,'','HARESHBHAI KAKDIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-14','Y','45Y',0,0,0,'M','','','+91',9879341123,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 10:42:48','','0000-00-00 00:00:00'),(0,2515,'',0,'','ANJANABEN A GHETIYA','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1978-11-14','Y','47Y',0,0,0,'M','','','+91',9724582796,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 10:45:01','','0000-00-00 00:00:00'),(0,2516,'',0,'','RAMESH H PITRODA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1957-11-14','Y','68Y',0,0,0,'M','','','+91',7016941983,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 10:48:56','','0000-00-00 00:00:00'),(0,2517,'',0,'','SONUBEN SHIYALIYA','','','','',0,'CHOTILA','CHOTILA','GUJARAT','INDIA','1996-11-14','Y','29Y',0,0,0,'F','','','+91',7623037324,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-14 11:04:09','reception','2025-11-18 12:21:36'),(0,2518,'',0,'','PARAM V PALLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-11-14','Y','17Y',0,0,0,'M','','','+91',7863888491,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-14 11:08:56','','0000-00-00 00:00:00'),(0,2519,'',0,'','KAMLABEN SINOJIYA','','','','',0,'JAMJODHPUR','JAMJODHPUR','GUJARAT','INDIA','1964-11-14','Y','61Y',0,0,0,'F','','','+91',9714891611,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-14 11:27:25','','0000-00-00 00:00:00'),(0,2520,'',0,'','MILPABEN J KHER','','','','',0,'SUTRAPADA','SUTRAPADA','GUJARAT','INDIA','2002-11-14','Y','23Y',0,0,0,'F','','','+91',9595957406,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-14 11:28:48','','0000-00-00 00:00:00'),(0,2521,'',0,'','SUNILBHAI BHADRESHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-14','Y','40Y',0,0,0,'M','','','+91',7574886486,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-14 11:37:27','','0000-00-00 00:00:00'),(0,2522,'',0,'','DHANABHAI BHARGA','','','','',0,'GIR SOMNATH','GIR SOMNATH','GUJARAT','INDIA','1970-11-14','Y','55Y',55,0,0,'M','','','+91',9825907082,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 11:38:23','reception','2025-11-14 11:39:25'),(0,2523,'',0,'','BHAGVANBHAI J BARAD','','','','',0,'KODINAR','KODINAR','GUJARAT','INDIA','1960-11-14','Y','65Y',0,0,0,'M','','','+91',9687832371,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 11:42:01','','0000-00-00 00:00:00'),(0,2524,'',0,'','DIVYESHBHAI PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-11-14','Y','59Y',0,0,0,'M','','','+91',9825075709,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-14 11:51:14','','0000-00-00 00:00:00'),(0,2525,'',0,'','SAHISTA KADIVAR','','','','',0,'WAKANER','WAKANER','GUJARAT','INDIA','1999-11-14','Y','26Y',26,0,0,'F','','','+91',9737457158,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-14 11:53:07','urvashi','2025-11-14 11:53:39'),(0,2526,'',0,'','KASHYAPBHAI BHATT','','','','',0,'BARODA','BARODA','GUJARAT','INDIA','1986-11-14','Y','39Y',0,0,0,'M','','','+91',9998871790,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-14 12:02:13','','0000-00-00 00:00:00'),(0,2527,'',0,'','JUKTABEN B GOSWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-14','Y','60Y',0,0,0,'F','','','+91',7990704207,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 12:02:15','','0000-00-00 00:00:00'),(0,2528,'',0,'','JIVRAJBHAI SOJITRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-14','Y','75Y',0,0,0,'M','','','+91',9016299044,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-14 12:08:33','','0000-00-00 00:00:00'),(0,2529,'',0,'','ASHOKBHAI PUJARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-14','Y','50Y',0,0,0,'M','','','+91',9979602502,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-14 12:10:59','shweta','2025-12-16 11:31:31'),(0,2530,'',0,'','ALAKNANDABEN VAISHNAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-14','Y','67Y',0,0,0,'F','','','+91',7698990170,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-14 12:20:33','janvi','2025-11-29 12:24:55'),(0,2531,'',0,'','RAMNIKBHAI VADGAMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-11-14','Y','77Y',0,0,0,'M','','','+91',9909007400,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-14 12:23:41','','0000-00-00 00:00:00'),(0,2532,'',0,'','BHAVNABEN B SAGLANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-14','Y','55Y',0,0,0,'F','','','+91',6351514432,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-14 12:32:12','priyanshi','2025-12-13 10:57:54'),(0,2533,'',0,'','HITESHBHAI RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-14','Y','39Y',0,0,0,'M','','','+91',9725317008,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-14 12:45:28','manshi','2025-11-14 12:52:07'),(0,2534,'',0,'','MEENABEN RADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-11-14','Y','63Y',0,0,0,'F','','','+91',6351036934,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 12:47:14','','0000-00-00 00:00:00'),(0,2535,'',0,'','MAHESHBHAI K MODI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-11-14','Y','76Y',0,0,0,'M','','','+91',9825133834,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-14 12:47:15','janvi','2025-11-14 18:10:14'),(0,2536,'',0,'','RAJENDRASINH R RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-11-14','Y','61Y',0,0,0,'M','','','+91',9054315004,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-14 12:49:37','','0000-00-00 00:00:00'),(0,2537,'',0,'','DINESHBHAI GEHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-14','Y','42Y',0,0,0,'M','','','+91',9898696603,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-14 13:12:02','','0000-00-00 00:00:00'),(0,2538,'',0,'','JHANTUBHAI MAITY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-14','Y','36Y',36,0,0,'M','','','+91',9722301322,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 13:28:15','reception','2025-11-14 13:29:22'),(0,2539,'',0,'','MEENABEN D KANJIA','','','WANKANER BHATIYA SOC, NEAR SHARDA SCHOOL','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-09-17','N','55Y',0,0,0,'F','','','+91',9106568378,'+91',7990397656,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-14 13:38:55','drashti','2025-11-29 12:10:12'),(0,2540,'',0,'','BAHADURBHAI MANJARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-11-14','Y','49Y',0,0,0,'M','','','+91',9714692814,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-14 14:33:03','','0000-00-00 00:00:00'),(0,2541,'',0,'','JASRAJBHA R MANEK','','','','',0,'OKHA','OKHA','GUJARAT','INDIA','1985-11-14','Y','40Y',0,0,0,'M','','','+91',7434807113,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 16:26:03','reception','2025-11-29 11:53:58'),(0,2542,'',0,'','DHAVALBHAI J GODHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-14','Y','31Y',0,0,0,'M','','','+91',9601883825,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 16:36:20','reception','2025-12-10 18:29:04'),(0,2543,'',0,'','DILSUKH JADAV','','ENSURE REM','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-11-14','Y','34Y',0,0,0,'M','','','+91',9904623081,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 16:38:55','reception','2025-12-05 16:41:28'),(0,2544,'',0,'','DHARMISHTABEN J CHOVATIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-14','Y','45Y',45,0,0,'F','','','+91',9978814380,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 16:43:19','reception','2025-12-04 10:19:15'),(0,2545,'',0,'','SURESH JAMPU','','ZYDUS DEDI','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-14','Y','35Y',0,0,0,'M','','','+91',6358895652,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 16:51:26','','0000-00-00 00:00:00'),(0,2546,'',0,'','RAMSINH RATHOD','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1971-11-14','Y','54Y',0,0,0,'M','','','+91',9825695846,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-14 17:02:02','','0000-00-00 00:00:00'),(0,2547,'',0,'','NAGJIBHAI N SHAKHAVARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-14','Y','65Y',0,0,0,'M','','','+91',9712369529,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 17:07:29','reception','2025-11-24 10:59:28'),(0,2548,'',0,'','KINJALBEN RAICHARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-11-14','Y','34Y',0,0,0,'F','','','+91',9429776029,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 17:12:04','','0000-00-00 00:00:00'),(0,2549,'',0,'','BEENABEN A CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-11-14','Y','41Y',0,0,0,'F','','','+91',9825230744,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 17:20:36','','0000-00-00 00:00:00'),(0,2550,'',0,'','KISHORBHAI M UPADHYAY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-14','Y','67Y',0,0,0,'M','','','+91',9275036140,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-14 17:36:09','','0000-00-00 00:00:00'),(0,2551,'',0,'','CHANDRAKANTBHAI PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-11-14','Y','68Y',68,0,0,'M','','','+91',9409384804,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 17:38:33','reception','2025-12-03 17:13:11'),(0,2552,'',0,'','ASHOKBHAI VALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-14','Y','35Y',0,0,0,'M','','','+91',9574347440,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-14 17:40:39','','0000-00-00 00:00:00'),(0,2553,'',0,'','ANANTRAI M DHOLAKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-14','Y','57Y',0,0,0,'M','','','+91',9825457159,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-14 17:40:52','drashti','2025-12-12 19:02:09'),(0,2554,'',0,'','NEERUBEN SHUKLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-14','Y','55Y',0,0,0,'F','','','+91',8401228037,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-14 17:56:17','','0000-00-00 00:00:00'),(0,2555,'',0,'','PRAFULABA F VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-14','Y','50Y',0,0,0,'F','','','+91',8160998347,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 18:00:28','reception','2025-12-15 18:10:50'),(0,2556,'',0,'','MHENDRABHAI D THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-14','Y','72Y',0,0,0,'M','','','+91',9428684853,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-14 18:21:53','','0000-00-00 00:00:00'),(0,2557,'',0,'','BHAVESHBHAI L KANSAGRA','','','','',0,'AHEMDAVAD','AHEMDAVAD','GUJARAT','INDIA','1973-11-14','Y','52Y',0,0,0,'M','','','+91',9426229436,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 18:22:03','','0000-00-00 00:00:00'),(0,2558,'',0,'','HARESHBHAI M BHATT','','','','',0,'KESHOD','KESHOD','GUJARAT','INDIA','1959-11-14','Y','66Y',0,0,0,'M','','','+91',9429994573,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 18:24:16','','0000-00-00 00:00:00'),(0,2559,'',0,'','MULJIBHAI VALA','','','','',0,'TALALA','TALALA','GUJARAT','INDIA','1993-11-14','Y','32Y',0,0,0,'M','','','+91',7359015458,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-14 18:24:37','','0000-00-00 00:00:00'),(0,2560,'',0,'','SNEHLATABEN M DESANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-14','Y','45Y',0,0,0,'F','','','+91',7043245580,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 18:26:27','priyanshi','2025-12-13 10:08:08'),(0,2561,'',0,'','RASHILABEN PATEL','','','','',0,'KALAWAD','KALAWAD','GUJARAT','INDIA','1951-11-14','Y','74Y',0,0,0,'F','','','+91',8849743441,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-14 18:29:57','','0000-00-00 00:00:00'),(0,2562,'',0,'','NIRALIBEN RAJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-14','Y','42Y',0,0,0,'F','','','+91',9924818757,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-14 18:38:35','','0000-00-00 00:00:00'),(0,2563,'',0,'','HARDIKBHAI RANINGA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-11-14','Y','33Y',0,0,0,'M','','','+91',9687835366,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-14 18:46:57','drashti','2025-11-28 19:16:51'),(0,2564,'',0,'','DHARMENBHAI J RUPAREL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-14','Y','52Y',0,0,0,'M','','','+91',9925036965,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-14 18:49:34','shweta','2025-12-02 19:09:47'),(0,2565,'',0,'','JUNED U ASIRI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-11-14','Y','30Y',0,0,0,'M','','','+91',9429157057,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-14 18:51:05','','0000-00-00 00:00:00'),(0,2566,'',0,'','PARASBHAI A MODI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-14','Y','45Y',0,0,0,'M','','','+91',9427214417,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-14 18:52:56','','0000-00-00 00:00:00'),(0,2567,'',0,'','KALABEN G DUBAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-11-14','Y','79Y',0,0,0,'F','','','+91',9537825597,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-14 18:53:16','janvi','2025-12-04 18:30:34'),(0,2568,'',0,'','SANJAYBHAI K BHUVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-14','Y','40Y',0,0,0,'M','','','+91',7383778188,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-14 19:04:58','','0000-00-00 00:00:00'),(0,2569,'',0,'','DILIPBHAI JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-14','Y','57Y',0,0,0,'M','','','+91',9820437438,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-14 19:11:58','','0000-00-00 00:00:00'),(0,2570,'',0,'','KIRITSINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-11-14','Y','56Y',0,0,0,'M','','','+91',7874143463,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-14 20:12:50','drashti','2025-11-21 18:33:55'),(0,2571,'',0,'','SAMATBHAI CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-11-15','Y','61Y',0,0,0,'M','','','+91',7990038181,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-15 09:35:43','','0000-00-00 00:00:00'),(0,2572,'',0,'','SARLABEN V THAKAR','','','','',0,'MENDARDA','MENDARDA','GUJARAT','INDIA','1963-11-15','Y','62Y',0,0,0,'F','','','+91',6355176731,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-15 09:50:39','','0000-00-00 00:00:00'),(0,2573,'',0,'','ASHWINGIRI N GOSWAMI','','','UNA,GIRSOMNATH','',0,'GIR SOMNATH','GIR SOMNATH','GUJARAT','INDIA','1987-11-15','Y','38Y',0,0,0,'M','','','+91',9316569839,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-15 10:02:28','','0000-00-00 00:00:00'),(0,2574,'',0,'','REKHABEN GONDALIYA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1982-11-15','Y','43Y',0,0,0,'F','','','+91',9274502448,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-15 10:11:15','','0000-00-00 00:00:00'),(0,2575,'',0,'','GEETABEN S PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-15','Y','48Y',0,0,0,'M','','','+91',9904322425,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-15 10:23:42','','0000-00-00 00:00:00'),(0,2576,'',0,'',' DAYABHAI PANARA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1958-11-15','Y','67Y',0,0,0,'M','','','+91',9638853936,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-15 10:25:21','','0000-00-00 00:00:00'),(0,2577,'',0,'','SHAURYA BODA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2011-11-15','Y','14Y',0,0,0,'M','','','+91',9712983706,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-15 10:28:15','manshi','2025-12-05 18:04:12'),(0,2578,'',0,'','MERUNBEN A GIRACH','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1966-11-15','Y','59Y',0,0,0,'F','','','+91',9054960123,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-15 10:29:03','','0000-00-00 00:00:00'),(0,2579,'',0,'','TRUSHABEN P BHOJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-11-15','Y','27Y',0,0,0,'F','','','+91',7622001263,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-15 10:29:58','reception','2025-11-27 18:07:50'),(0,2580,'',0,'','RAMESHBHAI R KHER','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-11-15','Y','63Y',63,0,0,'M','','','+91',6353875590,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-15 10:31:58','reception','2025-11-15 10:45:43'),(0,2581,'',0,'','SAVITABEN KANSAGRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-11-15','Y','74Y',74,0,0,'F','','','+91',9909952329,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-15 10:37:19','drashti','2025-11-15 10:40:11'),(0,2582,'',0,'','HARDASBHAI A DODIYA','','','','',0,'JAMJODHAPUR','JAMJODHAPUR','GUJARAT','INDIA','1970-11-15','Y','55Y',0,0,0,'M','','','+91',9924298375,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-15 10:48:56','','0000-00-00 00:00:00'),(0,2583,'',0,'','NAVINBHAI J JETHVA','','','','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1974-11-15','Y','51Y',0,0,0,'M','','','+91',9635488147,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-15 11:19:14','','0000-00-00 00:00:00'),(0,2584,'',0,'','RAJESHBHAI K KIKADIYA','','','','',0,'MANGROL','MANGROL','GUJARAT','INDIA','1976-11-15','Y','49Y',49,0,0,'M','','','+91',9537441656,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-15 11:21:15','reception','2025-11-26 10:06:35'),(0,2585,'',0,'','MAVJIBHAI J NAGANI','','','','',0,'ATKOT','ATKOT','GUJARAT','INDIA','1957-11-15','Y','68Y',0,0,0,'M','','','+91',9824050501,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-15 11:25:40','','0000-00-00 00:00:00'),(0,2586,'',0,'','MUKUNDBA GOHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-15','Y','55Y',0,0,0,'F','','','+91',6353821009,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-15 11:41:18','manshi','2025-12-23 11:14:17'),(0,2587,'',0,'','RAVIBHAI CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-11-15','Y','28Y',0,0,0,'M','','','+91',9265366209,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-15 11:43:12','','0000-00-00 00:00:00'),(0,2588,'',0,'','MAHESHBHAI DHABALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-11-15','Y','66Y',0,0,0,'M','','','+91',9173156906,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-15 11:46:03','drashti','2025-12-17 11:20:46'),(0,2589,'',0,'','SAGARBHAI BHUTANI','','','','',0,'ADIPUR KUTCH','ADIPUR KUTCH','GUJARAT','INDIA','1988-11-15','Y','37Y',0,0,0,'M','','','+91',9274575245,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-15 12:00:13','reception','2025-12-15 12:09:07'),(0,2590,'',0,'','KURJIBHAI T SAKHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-11-15','Y','78Y',0,0,0,'M','','','+91',9824444882,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-15 12:25:19','reception','2025-11-19 17:15:18'),(0,2591,'',0,'','RAJVANTIBEN B MULCHANDVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-15','Y','70Y',0,0,0,'F','','','+91',9624001773,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-15 12:28:06','reception','2025-12-01 13:05:10'),(0,2592,'',0,'','PARASHBEN MAKVANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-11-15','Y','49Y',0,0,0,'F','','','+91',7567057980,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-15 12:31:05','shweta','2025-12-05 17:29:36'),(0,2593,'',0,'','MADHVIBEN POPAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-15','Y','50Y',0,0,0,'F','','','+91',9408725949,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-15 12:50:16','reception','2025-11-25 18:13:52'),(0,2594,'',0,'','TWINKLBEN N MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-11-15','Y','41Y',0,0,0,'F','','','+91',9998988150,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-15 13:01:45','','0000-00-00 00:00:00'),(0,2595,'',0,'','NIDHIBEN V AVLANI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-11-15','Y','33Y',0,0,0,'F','','','+91',9427773494,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-15 13:10:48','reception','2025-12-18 19:37:04'),(0,2596,'',0,'','BHAVINIBEN VARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-11-15','Y','43Y',43,0,0,'F','','','+91',9197242702,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-15 13:26:34','janvi','2025-12-18 18:41:23'),(0,2597,'',0,'','PARAM NITINBHAI SHISANGIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2013-11-15','Y','12Y',12,0,0,'M','','','+91',9726956660,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-15 13:39:06','reception','2025-12-08 18:16:12'),(0,2598,'',0,'','KANCHANBEN N NATHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-15','Y','53Y',0,0,0,'F','','','+91',9824425281,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-15 17:56:51','','0000-00-00 00:00:00'),(0,2599,'',0,'','DHIRAJBHAI HARVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-11-15','Y','25Y',0,0,0,'M','','','+91',8849892389,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-15 17:57:39','janvi','2025-12-22 17:57:47'),(0,2600,'',0,'','MAHENDRABHAI B GOSWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-11-15','Y','58Y',58,0,0,'M','','','+91',9824208667,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-15 18:00:12','janvi','2025-11-27 11:42:09'),(0,2601,'',0,'','KRUTARTH PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-11-15','Y','41Y',0,0,0,'M','','','+91',9979872884,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-15 18:10:09','drashti','2025-12-18 18:36:44'),(0,2602,'',0,'','FALGUNIBEN HIRPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-15','Y','39Y',0,0,0,'F','','','+91',7202904505,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-15 18:27:18','','0000-00-00 00:00:00'),(0,2603,'',0,'','JAYDEEPBHAI  VADNAGAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-11-15','Y','28Y',0,0,0,'M','','','+91',8140002479,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-15 19:01:31','','0000-00-00 00:00:00'),(0,2604,'',0,'','MISHVABEN VADODARIYA','','','','',0,'METODA','METODA','GUJARAT','INDIA','2008-11-15','Y','17Y',0,0,0,'F','','','+91',9825348466,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-15 19:23:16','drashti','2025-11-18 16:47:18'),(0,2605,'',0,'','NAYANBHAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-11-16','Y','37Y',0,0,0,'M','','','+91',8980011325,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-16 09:05:11','','0000-00-00 00:00:00'),(0,2606,'',0,'','VAISHALI S DHOTE','','','','',0,'','','GUJARAT','INDIA','1988-11-16','Y','37Y',0,0,0,'F','','','+91',7350717750,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-16 09:07:13','','0000-00-00 00:00:00'),(0,2607,'',0,'','KIRTIKUMAR H KARIA','','','B-404, VASANT KUNJ PUSHKARDHAM MAIN ROAD ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-01-14','N','68Y',0,0,0,'M','','','+91',9033428572,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-16 10:20:48','drashti','2025-11-25 11:58:23'),(0,2608,'',0,'','KASTURBEN J KUBAVAT','','','RUDRA PRAYAG -301 OPP AKSHAR SCHOOL','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1937-11-16','Y','88Y',0,0,0,'F','','','+91',9925210134,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-16 10:34:04','','0000-00-00 00:00:00'),(0,2609,'',0,'','RUDRAPRATAP SINH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-11-16','Y','22Y',0,0,0,'M','','','+91',9909520222,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-16 11:48:37','','0000-00-00 00:00:00'),(0,2610,'',0,'','PRAFULBHAI TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-16','Y','64Y',0,0,0,'M','','','+91',9727812403,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-16 12:17:38','','0000-00-00 00:00:00'),(0,2611,'',0,'','NAZMA Z DEKAVADIYA','','','BHATIYA SOC, VAKANER','',0,'VAKANER','VAKANER','GUJARAT','INDIA','1987-11-16','Y','38Y',0,0,0,'F','','','+91',9879251520,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-16 17:32:45','','0000-00-00 00:00:00'),(0,2612,'',0,'','DINESHBHAI SANKDECHA','','','AARTI APP,MANGLA MAIN ROAD ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-16','Y','70Y',0,0,0,'M','','','+91',9328090002,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-16 18:19:04','vishal','2025-11-24 18:23:14'),(0,2613,'',0,'','DINESHBHAI ZALAVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-17','Y','60Y',0,0,0,'M','','','+91',8469981265,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 08:58:53','janvi','2025-11-19 10:43:38'),(0,2614,'',0,'','MULJIBHAI KARADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-11-17','Y','76Y',0,0,0,'M','','','+91',9904022975,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 09:03:07','','0000-00-00 00:00:00'),(0,2615,'',0,'','MULJIBHAI KARADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-11-17','Y','76Y',0,0,0,'M','','','+91',9904022975,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 09:42:59','','0000-00-00 00:00:00'),(0,2616,'',0,'','MANJUBEN KHANDAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-17','Y','45Y',0,0,0,'F','','','+91',9824200350,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-17 10:16:14','','0000-00-00 00:00:00'),(0,2617,'',0,'','RITABEN D HAPANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-11-17','Y','47Y',0,0,0,'F','','','+91',9904720350,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 10:18:24','','0000-00-00 00:00:00'),(0,2618,'',0,'','OSHMAN A PADHIYAR','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1957-11-17','Y','68Y',0,0,0,'M','','','+91',9624192767,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 10:35:59','priyanshi','2025-12-19 15:44:21'),(0,2619,'',0,'','JAYESHBHAI R HADVADIYA','','','','',0,'TANKARA MORBI','TANKARA MORBI','GUJARAT','INDIA','1995-11-17','Y','30Y',0,0,0,'M','','','+91',8140439159,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-17 11:02:39','reception','2025-11-28 11:03:58'),(0,2620,'',0,'','MANSUKHBHAI G SADHARIYA','','','','',0,'KHAMBHARA','KHAMBHARA','GUJARAT','INDIA','1970-11-17','Y','55Y',0,0,0,'M','','','+91',9662146944,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 11:15:51','manshi','2025-11-29 11:30:49'),(0,2621,'',0,'','JAYSHREEBEN K KAMDAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-17','Y','64Y',0,0,0,'F','','','+91',9428344907,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-17 11:17:32','manshi','2025-11-24 11:31:20'),(0,2622,'',0,'','REKHABEN K CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-11-17','Y','56Y',0,0,0,'F','','','+91',9870091230,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 11:25:00','','0000-00-00 00:00:00'),(0,2623,'',0,'','CHANDUBHAI LUNADARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-17','Y','60Y',0,0,0,'M','','','+91',9879049526,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 11:29:55','drashti','2025-11-27 09:55:02'),(0,2624,'',0,'','SARIFABEN I SELOT','','','','',0,'KODINAR','KODINAR','GUJARAT','INDIA','1987-11-17','Y','38Y',0,0,0,'F','','','+91',9277250276,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 11:35:52','reception','2025-12-19 11:33:22'),(0,2625,'',0,'','PREMIBEN ARGI','','','','',0,'WANAKBARA ','WANAKBARA ','GUJARAT','INDIA','1978-11-17','Y','47Y',0,0,0,'F','','','+91',8153991525,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 11:38:30','','0000-00-00 00:00:00'),(0,2626,'',0,'','KANJIBHAI SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-11-17','Y','58Y',0,0,0,'M','','','+91',6352782407,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-17 11:45:50','reception','2025-11-27 11:14:01'),(0,2627,'',0,'','VIJAYBHAI SAMAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-11-17','Y','61Y',0,0,0,'M','','','+91',9099969237,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-17 11:55:35','reception','2025-12-01 19:56:38'),(0,2628,'',0,'','MAYURIBEN SHAH','','','','',0,'AHEMDABAD','AHEMDABAD','GUJARAT','INDIA','1993-11-17','Y','32Y',0,0,0,'F','','','+91',7735588625,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-17 12:01:03','','0000-00-00 00:00:00'),(0,2629,'',0,'','NAVINBHAI J SUREJA','','','','',0,'HAIDRABAD','HAIDRABAD','GUJARAT','INDIA','1962-11-17','Y','63Y',0,0,0,'M','','','+91',9849270468,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-17 12:09:56','shweta','2025-11-19 17:19:41'),(0,2630,'',0,'','NANJIBHAI J  TADA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-11-17','Y','56Y',0,0,0,'M','','','+91',9662100068,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 12:37:58','','0000-00-00 00:00:00'),(0,2631,'',0,'','KISHORBHAI S MAIJADIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1979-11-17','Y','46Y',46,0,0,'M','','','+91',9825599940,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-17 12:44:59','drashti','2025-11-17 12:46:28'),(0,2632,'',0,'','CHANDRIKABEN R CHANDRANI','','','','',0,'BABRA','BABRA','GUJARAT','INDIA','1967-11-17','Y','58Y',0,0,0,'F','','','+91',8160645450,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 12:46:21','','0000-00-00 00:00:00'),(0,2633,'',0,'','EQBAL DELA','','','DAIYA,GONDAL','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-03-01','N','52Y',0,0,0,'M','','','+91',6351449493,'+91',9726916686,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-17 12:59:52','','0000-00-00 00:00:00'),(0,2634,'',0,'','DENISHABEN V VITHALAPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-11-17','Y','17Y',0,0,0,'F','','','+91',9099802128,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 13:03:43','','0000-00-00 00:00:00'),(0,2635,'',0,'','NARENDRABHAI SANCHANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-17','Y','31Y',0,0,0,'M','','','+91',9924959475,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-17 14:07:09','manshi','2025-11-24 17:54:07'),(0,2636,'',0,'','JIGNABA B JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-17','Y','39Y',0,0,0,'F','','','+91',9033877777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 16:49:02','reception','2025-12-08 16:36:55'),(0,2637,'',0,'','DILIPBHAI VADNAGARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-17','Y','70Y',0,0,0,'M','','','+91',9825720643,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-17 16:50:19','','0000-00-00 00:00:00'),(0,2638,'',0,'','RIYABEN R SANKADIYA','','','','',0,'SHAPAR','SHAPAR','GUJARAT','INDIA','2002-11-17','Y','23Y',0,0,0,'F','','','+91',9898726100,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 16:54:30','reception','2025-12-19 13:21:18'),(0,2639,'',0,'','LATABEN N DHOL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-17','Y','64Y',0,0,0,'F','','','+91',9662523723,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 16:56:09','','0000-00-00 00:00:00'),(0,2640,'',0,'','MAHARAJGAR BHAVGAR GOSAI','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1946-11-17','Y','79Y',79,0,0,'M','','','+91',9904958181,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 17:01:34','reception','2025-12-16 10:23:56'),(0,2641,'',0,'','AMITBHAI P JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-11-17','Y','46Y',0,0,0,'M','','','+91',9426430088,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 17:04:22','drashti','2025-12-17 18:15:51'),(0,2642,'',0,'','SANGITABEN R BALASARA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1997-11-17','Y','28Y',0,0,0,'F','','','+91',9737636875,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-17 17:20:14','','0000-00-00 00:00:00'),(0,2643,'',0,'','PRAVINBHAI DOMADIYA','','','','',0,'BAJRANGPUR','BAJRANGPUR','GUJARAT','INDIA','1975-11-17','Y','50Y',0,0,0,'M','','','+91',9979102694,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-17 17:23:10','','0000-00-00 00:00:00'),(0,2644,'',0,'','ALPABEN D SARVAIYA','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1978-11-17','Y','47Y',0,0,0,'F','','','+91',7567287573,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 17:36:35','','0000-00-00 00:00:00'),(0,2645,'',0,'','RAJAKBHAI KALUBHAI  MANDHRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-17','Y','50Y',0,0,0,'M','','','+91',9879942899,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 18:04:35','reception','2025-12-02 18:07:15'),(0,2646,'',0,'','HARITSINH SURU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2011-11-17','Y','14Y',0,0,0,'M','','','+91',9429097129,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-17 18:07:10','manshi','2025-12-06 18:13:28'),(0,2647,'',0,'','JAYSHREEBEN K VIRADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-17','Y','62Y',0,0,0,'F','','','+91',9371733072,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 18:19:55','','0000-00-00 00:00:00'),(0,2648,'',0,'','BASURI NIMAVAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-17','Y','31Y',0,0,0,'F','','','+91',8980073838,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-17 18:49:06','','0000-00-00 00:00:00'),(0,2649,'',0,'','SANGITABEN V BAFLIPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-17','Y','52Y',0,0,0,'F','','','+91',8866166873,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-17 18:56:44','reception','2025-12-18 17:23:02'),(0,2650,'',0,'','HARDIKBHAI SISANGIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-17','Y','31Y',0,0,0,'M','','','+91',9725906007,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-17 19:06:42','shweta','2025-12-15 11:25:21'),(0,2651,'',0,'','MISS PRIYANSHI BAJPAI ','','','B-3, 1103, GREEN CITY, OPP SOPAN HEIGHTS,','RAIYA ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-12-05','N','23Y',0,0,0,'F','','','+91',9879108107,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-17 20:35:53','drashti','2025-11-22 11:02:38'),(0,2652,'',0,'','JITENDRABHAI RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-11-18','Y','56Y',0,0,0,'M','','','+91',9913604508,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 09:03:37','','0000-00-00 00:00:00'),(0,2653,'',0,'','BHARGAVBHAI KAKRIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-18','Y','35Y',0,0,0,'M','','','+91',9924324102,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 09:10:56','urvashi','2025-12-04 12:22:12'),(0,2654,'',0,'','KRITESHBHAI ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-11-18','Y','22Y',0,0,0,'M','','','+91',8866162497,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-18 09:41:50','','0000-00-00 00:00:00'),(0,2655,'',0,'','ARJANBHAI M AGHERA','','','','',0,'KESOD','KESOD','GUJARAT','INDIA','1957-11-18','Y','68Y',0,0,0,'M','','','+91',9429512742,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 10:05:34','','0000-00-00 00:00:00'),(0,2656,'',0,'','JITENDRABHAI BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-18','Y','67Y',0,0,0,'M','','','+91',9726616547,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 10:11:36','','0000-00-00 00:00:00'),(0,2657,'',0,'','BHAVESHBHAI J BHASKAR','','','','',0,'UPLETA','UPLETA','GUJARAT','INDIA','1995-11-18','Y','30Y',0,0,0,'M','','','+91',8866363880,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-18 10:20:36','','0000-00-00 00:00:00'),(0,2658,'',0,'','PRAVINBHAI S JOSHI','','','','',0,'BHAVNAGAR','BHAVNAGAR','GUJARAT','INDIA','1948-11-18','Y','77Y',0,0,0,'M','','','+91',9428497617,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 10:26:32','','0000-00-00 00:00:00'),(0,2659,'',0,'','MUKESHBHAI NATHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-18','Y','60Y',0,0,0,'M','','','+91',9724479656,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-18 10:39:43','','0000-00-00 00:00:00'),(0,2660,'',0,'','BHAVINIBEN VARA','','','GOWARDHAN CHOWK,150 FEET RING ROAD ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-30','N','44Y',0,0,0,'F','','','+91',9724270204,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-18 10:55:38','janvi','2025-12-01 12:28:25'),(0,2661,'',0,'','SAMIMBEN I RAMDAN','','','','',0,'MANGROL','MANGROL','GUJARAT','INDIA','1993-11-18','Y','32Y',0,0,0,'F','','','+91',9924189409,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 11:33:59','','0000-00-00 00:00:00'),(0,2662,'',0,'','KUNDANBEN CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-18','Y','50Y',0,0,0,'F','','','+91',9586650303,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 11:43:03','reception','2025-12-23 17:27:58'),(0,2663,'',0,'','PRACHIBEN GOSWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-18','Y','35Y',0,0,0,'F','','','+91',9099700095,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-18 11:50:15','','0000-00-00 00:00:00'),(0,2664,'',0,'','MEENABEN M GOHEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-18','Y','40Y',0,0,0,'F','','','+91',8156077143,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 11:51:17','','0000-00-00 00:00:00'),(0,2665,'',0,'','USHABEN BAGTHARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-18','Y','53Y',53,0,0,'F','','','+91',8160686261,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-18 12:06:25','manshi','2025-12-18 17:47:20'),(0,2666,'',0,'','VIPULBHAI JADAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-18','Y','52Y',0,0,0,'M','','','+91',9428838764,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 12:28:52','reception','2025-12-18 18:39:04'),(0,2667,'',0,'','DHARMISHTABEN DHORIYANI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1980-11-18','Y','45Y',0,0,0,'F','','','+91',9909540776,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 12:35:41','','0000-00-00 00:00:00'),(0,2668,'',0,'','USHABEN BAGTHARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-18','Y','53Y',0,0,0,'F','','','+91',8160686261,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-18 12:36:07','drashti','2025-12-09 12:46:19'),(0,2669,'',0,'','HITESHBHAI V MULIYANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-11-18','Y','54Y',0,0,0,'M','','','+91',9712342847,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 12:37:17','reception','2025-12-08 19:10:35'),(0,2670,'',0,'','JENTILAL N DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-11-18','Y','76Y',0,0,0,'M','','','+91',9824517247,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-18 12:41:45','','0000-00-00 00:00:00'),(0,2671,'',0,'','PAYAL V LAMBARIYA','','','','',0,'VAUNDRA','VAUNDRA','GUJARAT','INDIA','1996-11-18','Y','29Y',0,0,0,'F','','','+91',9909046821,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 12:42:21','','0000-00-00 00:00:00'),(0,2672,'',0,'','JASWANTIBEN PANDIT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-11-18','Y','74Y',0,0,0,'F','','','+91',8780238759,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 12:47:53','reception','2025-12-08 10:57:27'),(0,2673,'',0,'','PANNABEN DOSHI','','','150 FEET RING ROAG OPP BIG BAZAR ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-18','Y','70Y',0,0,0,'F','','','+91',9925456688,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-18 13:08:49','','0000-00-00 00:00:00'),(0,2674,'',0,'','VIJAYBHAI GADHVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-18','Y','48Y',0,0,0,'M','','','+91',9974766640,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-18 13:10:12','','0000-00-00 00:00:00'),(0,2675,'',0,'','USHABEN JAGDISHBHAI SHILU','','','JIVRAJ RESIDENCY B-97,AMBIKA TOWNSHIP ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-18','Y','57Y',0,0,0,'F','','','+91',8347740777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-18 13:20:17','drashti','2025-11-24 10:15:12'),(0,2676,'',0,'','URVASHI KISHAN SHILU','','','JIVRAJ RESIDENSY B-97,AMBIKA TOWNSHIP ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-18','Y','31Y',0,0,0,'F','','','+91',8347740777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-18 13:22:06','drashti','2025-11-24 10:14:16'),(0,2677,'',0,'','KAUSHINA BLOCH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-11-18','Y','27Y',0,0,0,'M','','','+91',7041602619,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 13:56:49','reception','2025-11-18 18:32:39'),(0,2678,'',0,'','DHIRAJBEN GOHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-18','Y','55Y',55,0,0,'F','','','+91',9998040551,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-18 14:00:27','drashti','2025-11-18 14:02:46'),(0,2679,'',0,'','PRATAPBHAI N BASIYA','','','','',0,'DHORI','DHORI','GUJARAT','INDIA','1973-11-18','Y','52Y',0,0,0,'M','','','+91',9426278518,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 16:25:28','','0000-00-00 00:00:00'),(0,2680,'',0,'','JAYANT K JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-11-18','Y','74Y',0,0,0,'M','','','+91',9664981252,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 16:53:50','reception','2025-11-27 16:26:03'),(0,2681,'',0,'','MANSUKHBHAI B GORIYA','','','','',0,'SHOKDA','SHOKDA','GUJARAT','INDIA','1975-11-18','Y','50Y',0,0,0,'M','','','+91',9904046201,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 17:00:33','','0000-00-00 00:00:00'),(0,2682,'',0,'','HIRAGARBHAI GOSWAMI','','','','',0,'BHACHU','BHACHU','GUJARAT','INDIA','1967-11-18','Y','58Y',0,0,0,'M','','','+91',8140070274,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 17:05:18','','0000-00-00 00:00:00'),(0,2683,'',0,'','SANGITABEN A VAISHNAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-18','Y','52Y',0,0,0,'F','','','+91',9979427722,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-18 17:27:17','','0000-00-00 00:00:00'),(0,2684,'',0,'','NITABEN N VAGHAMASI','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1964-11-18','Y','61Y',61,0,0,'F','','','+91',6352455906,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 17:55:04','reception','2025-11-18 19:01:31'),(0,2685,'',0,'','RAMANLAL JETHALAL RAVAL','','','APURVA AVENUE, BLOCK NO-A-20,','NEAR SAMARPAN HOSPITAL',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1942-07-01','N','83Y',0,0,0,'M','','','+91',9909146762,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-18 18:01:03','riya','2025-12-02 15:40:46'),(0,2686,'',0,'','PARMAR KHODABHAI','','','','',0,'','','GUJARAT','INDIA','2011-11-18','Y','14Y',0,0,0,'M','','','+91',8980395596,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-18 18:06:23','','0000-00-00 00:00:00'),(0,2687,'',0,'','NIKUNJBHAI TILAVAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-11-18','Y','34Y',0,0,0,'M','','','+91',9722655230,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-18 18:10:50','','0000-00-00 00:00:00'),(0,2688,'',0,'','JENTIBHAI N MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1943-11-18','Y','82Y',0,0,0,'M','','','+91',9879320027,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 18:14:39','','0000-00-00 00:00:00'),(0,2689,'',0,'','DHARMENDRABA K PARMAR','','','','',0,'SURENDRANAGAR','SURENDRANAGAR','GUJARAT','INDIA','1968-11-18','Y','57Y',0,0,0,'F','','','+91',9687774161,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 18:30:15','reception','2025-12-18 16:43:55'),(0,2690,'',0,'','HASAMBHAI A VALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-11-18','Y','66Y',0,0,0,'M','','','+91',9825400545,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-18 18:44:30','','0000-00-00 00:00:00'),(0,2691,'',0,'','PUSHPAKRAI MULSHANKAR TRIVEDI','','','SHANTOSH PALACE APPT, RAIYA ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-01-03','N','80Y',0,0,0,'M','','','+91',9979880997,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-18 22:02:28','shweta','2025-12-01 17:21:57'),(0,2692,'',0,'','DIPALIBEN S VED','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-19','Y','39Y',0,0,0,'F','','','+91',9328633449,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 09:21:21','','0000-00-00 00:00:00'),(0,2693,'',0,'','CHANDRAJEETSINH DABHI','','','SATYASAI MAIN ROAD PRADHYUMAN PARK B-95 ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-04-19','N','32Y',0,0,0,'M','','','+91',9033390099,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-19 09:28:36','','0000-00-00 00:00:00'),(0,2694,'',0,'','BHARATBHAI CHANGELA','','','','',0,'MALIYA','MALIYA','GUJARAT','INDIA','1976-11-19','Y','49Y',0,0,0,'M','','','+91',6351102016,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 09:32:48','','0000-00-00 00:00:00'),(0,2695,'',0,'','MANSUKHBHAI D JETANI','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1960-11-19','Y','65Y',0,0,0,'M','','','+91',9227976082,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 10:05:22','reception','2025-12-19 17:02:38'),(0,2696,'',0,'','AFSHANABEN J RATHOD','','','','',0,'MALIYA','MALIYA','GUJARAT','INDIA','1990-11-19','Y','35Y',35,0,0,'F','','','+91',9898691946,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 10:11:43','reception','2025-12-09 10:11:03'),(0,2697,'',0,'','PUNITABEN A GUPTA','','','','',0,'','','GUJARAT','INDIA','1996-11-19','Y','29Y',0,0,0,'F','','','+91',9998733979,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-19 10:12:38','janvi','2025-11-24 18:10:37'),(0,2698,'',0,'','RAVI SAGTHIYA','','','','',0,'KHIRASARA','KHIRASARA','GUJARAT','INDIA','1990-11-19','Y','35Y',0,0,0,'M','','','+91',8160148407,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-19 10:13:02','','0000-00-00 00:00:00'),(0,2699,'',0,'','JITUBEN SAGARBHAI RATADIYA','','','SARAPDAD,PADADHARI','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-07-10','N','28Y',0,0,0,'F','','','+91',9979741501,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-19 10:17:01','janvi','2025-11-29 10:54:19'),(0,2700,'',0,'','PRAFULBHAI MAGANBHAI  NADIYADRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-19','Y','48Y',48,0,0,'M','','','+91',9265684815,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-19 10:19:27','urvashi','2025-11-19 13:14:18'),(0,2701,'',0,'','MEHMUD MAKWANA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1967-11-19','Y','58Y',0,0,0,'M','','','+91',9426784499,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 10:27:34','','0000-00-00 00:00:00'),(0,2702,'',0,'','NIRMALABEN M CHOVATIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-11-19','Y','47Y',0,0,0,'F','','','+91',9328967148,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-19 10:32:24','','0000-00-00 00:00:00'),(0,2703,'',0,'','LAKHIDHAR MAJHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-11-19','Y','37Y',0,0,0,'M','','','+91',8511606745,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','janvi','2025-11-19 10:46:24','','0000-00-00 00:00:00'),(0,2704,'',0,'','DHARMENDRASINH L JADEJA','','','','',0,'','','GUJARAT','INDIA','1964-11-19','Y','61Y',0,0,0,'M','','','+91',9727725570,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 10:48:59','','0000-00-00 00:00:00'),(0,2705,'',0,'','PRAFULBHAI MAGANBHAI NADIYADRA','','','SHREE BUNGLOW SOC, KUVADVA ROAD ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-01-01','N','48Y',0,0,0,'M','','','+91',9265684815,'+91',9316309939,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-19 10:51:11','riya','2025-11-20 10:22:16'),(0,2706,'',0,'','RAJENDRABHAI JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-11-19','Y','68Y',0,0,0,'M','','','+91',8980805314,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-19 10:56:58','priyanshi','2025-12-10 19:14:21'),(0,2707,'',0,'','HEMLATABEN K SEVAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-19','Y','65Y',0,0,0,'F','','','+91',8141842195,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-19 11:01:48','','0000-00-00 00:00:00'),(0,2708,'',0,'','RANJANBEN K PADMANI','','','','',0,'KOTDA','KOTDA','GUJARAT','INDIA','1977-11-19','Y','48Y',0,0,0,'F','','','+91',8469361940,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 11:03:01','','0000-00-00 00:00:00'),(0,2709,'',0,'','GITABEN SADIYA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1972-11-19','Y','53Y',0,0,0,'F','','','+91',9925342709,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-19 11:05:15','reception','2025-12-11 10:58:38'),(0,2710,'',0,'','HALIMABEN KATARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-19','Y','45Y',0,0,0,'F','','','+91',7069679927,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-19 11:10:55','','0000-00-00 00:00:00'),(0,2711,'',0,'','MANJULABEN TANNA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-19','Y','65Y',0,0,0,'F','','','+91',9998320237,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-19 11:24:35','','0000-00-00 00:00:00'),(0,2712,'',0,'','NATHABHAI J KESWALA','','','','',0,'PRBANDAR','PRBANDAR','GUJARAT','INDIA','1945-11-19','Y','80Y',0,0,0,'M','','','+91',7984845940,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 11:28:59','','0000-00-00 00:00:00'),(0,2713,'',0,'','BHENIBEN BARAD','','','','',0,'SOMNATH','SOMNATH','GUJARAT','INDIA','1975-11-19','Y','50Y',0,0,0,'F','','','+91',9601784397,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-19 11:29:24','drashti','2025-12-01 11:39:08'),(0,2714,'',0,'','VIRENDRABHAI BUTANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-19','Y','55Y',0,0,0,'M','','','+91',9978895617,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-19 11:30:24','','0000-00-00 00:00:00'),(0,2715,'',0,'','JAHIBEN B BHARGA','','','','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1973-11-19','Y','52Y',0,0,0,'F','','','+91',9427377929,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-19 11:39:07','manshi','2025-12-09 11:43:29'),(0,2716,'',0,'','DOLE SHARADBHAI VASANTRAO','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-19','Y','72Y',0,0,0,'M','','','+91',9427170001,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-19 11:44:14','','0000-00-00 00:00:00'),(0,2717,'',0,'','RAMESHBHAI SORATHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-19','Y','55Y',0,0,0,'M','','','+91',6355776658,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-19 11:49:50','','0000-00-00 00:00:00'),(0,2718,'',0,'','GEETABEN NADIYAPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-19','Y','45Y',0,0,0,'F','','','+91',9824247591,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-19 11:51:33','','0000-00-00 00:00:00'),(0,2719,'',0,'','MOHAMMAD SAMI','','','','',0,'KOTHARIYA','KOTHARIYA','GUJARAT','INDIA','1965-11-19','Y','60Y',0,0,0,'M','','','+91',9998740802,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 11:53:37','','0000-00-00 00:00:00'),(0,2720,'',0,'','RAMESHBHAI J GAJERA','','','','',0,'KHAMBHADIYA','KHAMBHADIYA','GUJARAT','INDIA','1970-11-19','Y','55Y',0,0,0,'M','','','+91',9913922799,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 11:56:18','reception','2025-12-19 09:24:38'),(0,2721,'',0,'','HIRABHAI D MAKWANA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1962-11-19','Y','63Y',0,0,0,'M','','','+91',9428671235,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 11:59:28','','0000-00-00 00:00:00'),(0,2722,'',0,'','MURTUJABHAI I GHOGHARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-19','Y','50Y',0,0,0,'M','','','+91',9879225472,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-19 12:00:55','','0000-00-00 00:00:00'),(0,2723,'',0,'','SANJAYBHAI DEVDHARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-19','Y','32Y',0,0,0,'M','','','+91',9725043278,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-19 12:03:39','','0000-00-00 00:00:00'),(0,2724,'',0,'','MOHANBHAI V DESAI','','','','',0,'MEHSANA','MEHSANA','GUJARAT','INDIA','1969-11-19','Y','56Y',0,0,0,'M','','','+91',8780537626,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-19 12:04:19','','0000-00-00 00:00:00'),(0,2725,'',0,'','BRIJESHBHAI PATODIYA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1991-11-19','Y','34Y',0,0,0,'M','','','+91',8140888800,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-19 12:07:31','manshi','2025-11-25 20:04:29'),(0,2726,'',0,'','SAVITABEN D KOTADIYA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1964-11-19','Y','61Y',0,0,0,'M','','','+91',9979317145,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 12:09:31','reception','2025-12-19 17:50:52'),(0,2727,'',0,'','SURESHBHAI VADGAMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-19','Y','75Y',0,0,0,'M','','','+91',9428254024,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 12:11:32','','0000-00-00 00:00:00'),(0,2728,'',0,'','TARAKBHAI DAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-19','Y','45Y',0,0,0,'M','','','+91',9824295615,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 12:29:47','','0000-00-00 00:00:00'),(0,2729,'',0,'','REKHABEN SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-11-19','Y','76Y',0,0,0,'F','','','+91',9265525889,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-19 12:30:45','janvi','2025-12-20 12:30:44'),(0,2730,'',0,'','DIWALIBEN VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-11-19','Y','73Y',0,0,0,'F','','','+91',9428201519,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 12:39:49','','0000-00-00 00:00:00'),(0,2731,'',0,'','CHANDRIKABEN BHADESIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-19','Y','62Y',62,0,0,'F','','','+91',7819965541,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-19 12:48:26','urvashi','2025-11-20 13:43:33'),(0,2732,'',0,'','CHIRAG GAJIPARA','','DEXTERA PH','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-11-19','Y','33Y',0,0,0,'M','','','+91',9898122217,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 16:39:07','','0000-00-00 00:00:00'),(0,2733,'',0,'','UNISON PHARMA ','','UNISON PHA','','',0,'','','GUJARAT','INDIA','1983-11-19','Y','42Y',42,0,0,'M','','','+91',9924014030,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 16:40:56','reception','2025-12-19 17:45:23'),(0,2734,'',0,'','ARUN MISHRA','','LIFESPAN ','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-19','Y','53Y',0,0,0,'M','','','+91',9737941824,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 16:42:10','','0000-00-00 00:00:00'),(0,2735,'',0,'','NILESHBHAI NATHVANI','','DEPSONS PH','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-19','Y','50Y',0,0,0,'M','','','+91',7600008308,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 16:54:00','','0000-00-00 00:00:00'),(0,2736,'',0,'','BHARTIBEN H VARSADA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1988-11-19','Y','37Y',0,0,0,'F','','','+91',7984373667,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 16:57:59','','0000-00-00 00:00:00'),(0,2737,'',0,'','JAYDEEPABEN GOSWAMI','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1990-11-19','Y','35Y',0,0,0,'F','','','+91',9033359808,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 17:17:07','','0000-00-00 00:00:00'),(0,2738,'',0,'','SHANKETBHAI TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-11-19','Y','33Y',0,0,0,'M','','','+91',9033194941,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 17:21:35','reception','2025-11-24 10:38:58'),(0,2739,'',0,'','CHHAGANBHAI R VASJADIYA','','','','',0,'VAJDIGADH','VAJDIGADH','GUJARAT','INDIA','1950-11-19','Y','75Y',0,0,0,'M','','','+91',8238474338,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 17:25:03','reception','2025-12-11 17:00:09'),(0,2740,'',0,'','RAHI RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2012-11-19','Y','13Y',0,0,0,'F','','','+91',9574657150,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 17:25:13','janvi','2025-11-24 18:43:07'),(0,2741,'',0,'','RAJESHWARIBEN K SONI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-19','Y','53Y',0,0,0,'F','','','+91',9724700969,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-11-19 17:30:43','','0000-00-00 00:00:00'),(0,2742,'',0,'','BHAVNABEN G PALA','','','','',0,'TALALA','TALALA','GUJARAT','INDIA','1975-11-19','Y','50Y',50,0,0,'F','','','+91',7096731174,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 17:33:37','drashti','2025-12-12 18:58:15'),(0,2743,'',0,'','CHHAGANBHAI M KALAWADIYA','','','','',0,'HADIYANA','HADIYANA','GUJARAT','INDIA','1949-11-19','Y','76Y',0,0,0,'M','','','+91',9723015155,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-19 17:36:41','','0000-00-00 00:00:00'),(0,2744,'',0,'','DILAVARBHAI K PETHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-19','Y','57Y',0,0,0,'M','','','+91',9824670561,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 17:37:31','','0000-00-00 00:00:00'),(0,2745,'',0,'','NIRMALABEN VIRADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-11-19','Y','59Y',0,0,0,'F','','','+91',9825798500,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 17:43:05','','0000-00-00 00:00:00'),(0,2746,'',0,'','GAGAN  SENI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-11-19','Y','33Y',0,0,0,'M','','','+91',9728871085,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 17:43:23','drashti','2025-11-26 10:39:36'),(0,2747,'',0,'','CHAMPABEN  V SAKHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-19','Y','65Y',65,0,0,'M','','','+91',9909840452,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 17:49:45','shweta','2025-12-04 16:35:10'),(0,2748,'',0,'','NANJIBHAI RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-19','Y','64Y',0,0,0,'M','','','+91',9913282718,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 17:55:12','','0000-00-00 00:00:00'),(0,2749,'',0,'','ANJANA P VIRADIYA','','NATRAJ NAG','NILKANTH NAGAR MAIN ROAD RAJKOT ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-20','Y','50Y',0,0,0,'F','','','+91',9825536099,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 17:55:27','riya','2025-12-20 16:39:45'),(0,2750,'',0,'','RAJPAL P SANGHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-11-19','Y','17Y',0,0,0,'M','','','+91',9925382672,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-19 17:56:58','janvi','2025-12-05 19:00:12'),(0,2751,'',0,'','PRAHLADSINGH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-11-19','Y','25Y',0,0,0,'M','','','+91',8003050733,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-19 17:57:26','','0000-00-00 00:00:00'),(0,2752,'',0,'','KAMLESHBHAI VARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-19','Y','48Y',0,0,0,'M','','','+91',9167476397,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-19 17:58:43','','0000-00-00 00:00:00'),(0,2753,'',0,'','RAMESHBHAI G RAKHASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-19','Y','70Y',0,0,0,'M','','','+91',9879221369,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 18:02:26','priyanshi','2025-12-19 18:07:35'),(0,2754,'',0,'','MOHAMMADHUSEN A ARAB','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-11-19','Y','34Y',0,0,0,'M','','','+91',9998059106,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 18:04:10','drashti','2025-12-15 19:22:00'),(0,2755,'',0,'','VINODBHAI V MANDAVIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-11-19','Y','66Y',0,0,0,'M','','','+91',9913993045,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 18:09:25','','0000-00-00 00:00:00'),(0,2756,'',0,'','HIRAL TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-11-19','Y','37Y',0,0,0,'F','','','+91',9925372953,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 18:11:50','','0000-00-00 00:00:00'),(0,2757,'',0,'','RAMSHIBHAI DODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-11-19','Y','29Y',29,0,0,'M','','','+91',9726418606,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 18:16:47','reception','2025-11-25 17:18:38'),(0,2758,'',0,'','KEVALBHAI AVLANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-11-19','Y','28Y',0,0,0,'M','','','+91',9426999194,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 18:22:41','janvi','2025-12-03 12:02:04'),(0,2759,'',0,'','DIPAKBHAI GHELANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-19','Y','50Y',0,0,0,'M','','','+91',9016058874,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 18:26:17','','0000-00-00 00:00:00'),(0,2760,'',0,'','NIRMALABEN GOHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-19','Y','57Y',0,0,0,'F','','','+91',9925404517,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 18:28:54','','0000-00-00 00:00:00'),(0,2761,'',0,'','SARLABEN V HARKHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1938-11-19','Y','87Y',0,0,0,'F','','','+91',9428201090,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 18:32:16','urvashi','2025-12-04 18:37:16'),(0,2762,'',0,'','NAVINBHAI B VADHER','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-19','Y','62Y',0,0,0,'M','','','+91',9825963349,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-19 18:42:20','reception','2025-11-24 10:33:17'),(0,2763,'',0,'','GEETABEN K KOTAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-19','Y','53Y',0,0,0,'F','','','+91',9825935646,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 18:47:43','','0000-00-00 00:00:00'),(0,2764,'',0,'','ANKITBHAI KHAKKHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-19','Y','35Y',0,0,0,'M','','','+91',9978262879,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-19 18:48:52','','0000-00-00 00:00:00'),(0,2765,'',0,'','SHAIRABEN H BELIM','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-19','Y','57Y',0,0,0,'F','','','+91',9426553372,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 18:54:31','','0000-00-00 00:00:00'),(0,2766,'',0,'','HARUNBHAI R BELIM','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-19','Y','64Y',0,0,0,'M','','','+91',9426553372,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 18:56:32','','0000-00-00 00:00:00'),(0,2767,'',0,'','CHARMIBEN  DHOTRE                                                                                                                                                         ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-19','Y','31Y',0,0,0,'F','','','+91',8140745807,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 18:58:50','','0000-00-00 00:00:00'),(0,2768,'',0,'','JAYDEEPBHAI DHADHAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-19','Y','39Y',0,0,0,'M','','','+91',9624271259,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-19 19:00:25','','0000-00-00 00:00:00'),(0,2769,'',0,'','PRATIKBHAI VADGAMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-11-19','Y','26Y',0,0,0,'M','','','+91',7990301027,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 19:01:14','','0000-00-00 00:00:00'),(0,2770,'',0,'','JIGNESHBHAI SANGADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-11-19','Y','30Y',0,0,0,'M','','','+91',9924459999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-19 19:05:51','','0000-00-00 00:00:00'),(0,2771,'',0,'','RAJESHWARIBEN K SONI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-19','Y','53Y',0,0,0,'F','','','+91',9724700969,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 19:15:38','','0000-00-00 00:00:00'),(0,2772,'',0,'','PRITIBEN P TOLIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-19','Y','50Y',0,0,0,'F','','','+91',9898442047,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 19:49:05','','0000-00-00 00:00:00'),(0,2773,'',0,'','KARANKUMAR BABUBHAI MAKWANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-11-19','Y','23Y',0,0,0,'M','','','+91',9426689996,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-19 19:51:55','','0000-00-00 00:00:00'),(0,2774,'',0,'','PRIYABEN CHAROLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-20','Y','31Y',0,0,0,'M','','','+91',9510434683,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 08:46:52','','0000-00-00 00:00:00'),(0,2775,'',0,'','KANTIBHAI P RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1943-11-20','Y','82Y',0,0,0,'M','','','+91',9714033953,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 09:24:14','','0000-00-00 00:00:00'),(0,2776,'',0,'','BHENIBEN  BARAD','','','SOMNATH MITHAPUR','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1975-11-20','Y','50Y',0,0,0,'F','','','+91',9601784397,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-20 09:33:43','','0000-00-00 00:00:00'),(0,2777,'',0,'','JAYSHREEBEN KATRODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-20','Y','75Y',75,0,0,'F','','','+91',9104942916,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-20 09:34:49','drashti','2025-11-24 16:44:29'),(0,2778,'',0,'','DEVRAMBHAI C VILPARA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1970-11-20','Y','55Y',0,0,0,'M','','','+91',9825085597,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 09:50:32','reception','2025-12-01 10:07:49'),(0,2779,'',0,'','GANDHI DIVYA KANAKBHAI','','','1-B TIRUPATI NAGAR NEAR NIRMALA ROAD OMKAR TOWER','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-07-19','N','68Y',0,0,0,'F','','','+91',8780576565,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-20 09:55:22','janvi','2025-11-29 11:55:14'),(0,2780,'',0,'','BHIKHABHAI SAGPARIYA','','','ARJUN B-9 BASERA PARK RK NAGAR MAIN ROAD ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-08-20','N','75Y',0,0,0,'M','','','+91',7433809327,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-20 10:07:37','reception','2025-12-04 18:08:26'),(0,2781,'',0,'','DHAIRYA J BHOJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2014-11-20','Y','11Y',0,0,0,'M','','','+91',8128188021,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-20 10:09:28','manshi','2025-12-18 17:59:17'),(0,2782,'',0,'','USHABEN SHAILESH GANDHI','','','NIVEDITA NAGAR, ST NO-4, OPP SHIVALIK 8','GOPAL CHOWK, SADHU VASWANI ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-05-10','N','69Y',0,0,0,'F','','','+91',8160021405,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-20 10:09:33','priyanshi','2025-12-13 10:09:54'),(0,2783,'',0,'','VALLABHBHAI BHALANI','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1960-11-20','Y','65Y',0,0,0,'M','','','+91',9879318617,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 10:11:58','reception','2025-12-04 11:04:47'),(0,2784,'',0,'','SUMANBEN GOSWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-20','Y','35Y',0,0,0,'F','','','+91',9512409321,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 10:18:24','reception','2025-12-02 18:50:22'),(0,2785,'',0,'','HANSABEN MAKWANA','','','','',0,'PANELI','PANELI','GUJARAT','INDIA','1961-11-20','Y','64Y',64,0,0,'F','','','+91',9898536517,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-20 10:19:44','reception','2025-12-01 10:35:14'),(0,2786,'',0,'','CHANDABEN P GIDA','','','','',0,'PITHADIYA','PITHADIYA','GUJARAT','INDIA','1975-11-20','Y','50Y',0,0,0,'M','','','+91',9726510137,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 10:37:47','','0000-00-00 00:00:00'),(0,2787,'',0,'','MAGANBHAI K HINSHU','','','','',0,'KHARVA','KHARVA','GUJARAT','INDIA','1960-11-20','Y','65Y',0,0,0,'M','','','+91',8511149784,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 10:43:15','reception','2025-12-01 10:38:59'),(0,2788,'',0,'','VIVEKBHAI PAGHDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-11-20','Y','25Y',0,0,0,'M','','','+91',8140190934,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-20 10:47:47','','0000-00-00 00:00:00'),(0,2789,'',0,'','MUKUNDBHAI  P CHAVAN','','','','',0,'DIU','DIU','GUJARAT','INDIA','1995-11-20','Y','30Y',0,0,0,'M','','','+91',9638041052,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 10:53:03','reception','2025-12-19 10:37:22'),(0,2790,'',0,'','NIRAJBHAI A HALAPARA','','','','',0,'NEKNAM','NEKNAM','GUJARAT','INDIA','1985-11-20','Y','40Y',40,0,0,'M','','','+91',9998403250,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-20 10:54:58','janvi','2025-11-20 10:57:58'),(0,2791,'',0,'','PANKAJKUMAR A RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-11-20','Y','49Y',0,0,0,'M','','','+91',9714917174,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-20 10:56:35','','0000-00-00 00:00:00'),(0,2792,'',0,'','PANKJKUMAR A RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-20','Y','50Y',0,0,0,'M','','','+91',9714917174,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-20 10:57:44','drashti','2025-12-19 12:25:01'),(0,2793,'',0,'','BINDUBEN D SANTOKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-11-20','Y','30Y',0,0,0,'F','','','+91',8469961852,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-20 11:03:42','manshi','2025-12-03 11:53:15'),(0,2794,'',0,'','LABHUBEN N DANGAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-20','Y','53Y',0,0,0,'F','','','+91',9879657401,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-20 11:04:50','','0000-00-00 00:00:00'),(0,2795,'',0,'','BHARTIBEN PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-20','Y','55Y',0,0,0,'F','','','+91',9979280622,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-20 11:13:37','','0000-00-00 00:00:00'),(0,2796,'',0,'','VEENABEN L GHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-11-20','Y','38Y',0,0,0,'F','','','+91',8803838038,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-20 11:19:18','drashti','2025-11-25 19:54:32'),(0,2797,'',0,'','TAPASYA DODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-20','Y','42Y',0,0,0,'F','','','+91',9998274145,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-20 11:21:21','','0000-00-00 00:00:00'),(0,2798,'',0,'','HITESHBHAI CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-11-20','Y','58Y',0,0,0,'M','','','+91',9428274811,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-20 11:23:51','urvashi','2025-12-03 18:08:51'),(0,2799,'',0,'','HARESHBHAI V VIROJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-20','Y','60Y',0,0,0,'M','','','+91',9825273590,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 11:33:07','','0000-00-00 00:00:00'),(0,2800,'',0,'','ZALA PRUTHVIRAJSINH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-11-20','Y','41Y',0,0,0,'M','','','+91',9879190850,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-20 11:39:07','','0000-00-00 00:00:00'),(0,2801,'',0,'','JAYDEEPBHAI SAVSANI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1994-11-20','Y','31Y',0,0,0,'M','','','+91',7069581000,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 11:46:03','','0000-00-00 00:00:00'),(0,2802,'',0,'','NAYNABEN VALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-11-20','Y','33Y',0,0,0,'F','','','+91',9925728815,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-20 11:52:50','drashti','2025-12-17 18:03:25'),(0,2803,'',0,'','KANCHANBEN D PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-20','Y','60Y',0,0,0,'F','','','+91',9879508668,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-20 11:54:31','priyanshi','2025-12-15 11:30:26'),(0,2804,'',0,'','PARTH MASHROO','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-11-20','Y','34Y',0,0,0,'M','','','+91',7405448557,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-20 11:58:25','','0000-00-00 00:00:00'),(0,2805,'',0,'','HARSHABEN J KUKADIYA ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-20','Y','32Y',0,0,0,'M','','','+91',9978210778,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 12:01:40','reception','2025-11-26 17:35:39'),(0,2806,'',0,'','SHILPABEN PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-20','Y','55Y',0,0,0,'F','','','+91',8160354055,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-20 12:06:25','','0000-00-00 00:00:00'),(0,2807,'',0,'','KUNALBHAI D CHAUHAN','','','','',0,'CHOTILA','CHOTILA','GUJARAT','INDIA','2012-11-20','Y','13Y',0,0,0,'M','','','+91',9033062988,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-20 12:12:20','','0000-00-00 00:00:00'),(0,2808,'',0,'','SHANTIDAS DUDHREJIYA','','','VIBHU AIRPORT ROAD ARADHNA SOC RAJKOT B','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-20','Y','67Y',0,0,0,'M','','','+91',9426457800,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-20 12:12:28','janvi','2025-12-23 17:46:17'),(0,2809,'',0,'','MANSUKHBHAI G GAGHARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-11-20','Y','59Y',0,0,0,'M','','','+91',9924353288,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-20 12:14:21','','0000-00-00 00:00:00'),(0,2810,'',0,'','MONIKABEN P BADARSHAHI','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1993-11-20','Y','32Y',0,0,0,'F','','','+91',9723819944,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 12:22:32','reception','2025-12-10 13:06:02'),(0,2811,'',0,'','USHABA CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-20','Y','52Y',0,0,0,'F','','','+91',8780348503,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-20 12:23:16','','0000-00-00 00:00:00'),(0,2812,'',0,'','SURYANSHI GOHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-11-20','Y','27Y',0,0,0,'F','','','+91',7383671342,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-20 12:25:28','drashti','2025-11-28 17:52:09'),(0,2813,'',0,'','KUSUMBA A JADEJA','','','','',0,'SAPAR','SAPAR','GUJARAT','INDIA','1945-11-20','Y','80Y',80,0,0,'F','','','+91',9904759252,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-20 12:28:21','janvi','2025-11-20 12:29:51'),(0,2814,'',0,'','JAGDEESH TULSAJI MEGHWAR','','','','',0,'GANDHIDHAM','GANDHIDHAM','GUJARAT','INDIA','1978-11-20','Y','47Y',47,0,0,'M','','','+91',9427768961,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-20 16:31:49','drashti','2025-12-19 11:46:14'),(0,2815,'',0,'','KIRANBEN PORIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-11-20','Y','49Y',0,0,0,'F','','','+91',9510913377,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-20 16:47:24','','0000-00-00 00:00:00'),(0,2816,'',0,'','BHUMIKABEN B VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-11-20','Y','33Y',0,0,0,'F','','','+91',7984134900,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 16:52:03','reception','2025-12-01 17:14:23'),(0,2817,'',0,'','DEVARSH RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2011-02-08','N','14Y',0,0,0,'M','','','+91',8758585505,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-20 16:54:21','','0000-00-00 00:00:00'),(0,2818,'',0,'','REKHABEN J  BHAGANJI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-20','Y','55Y',55,0,0,'F','','','+91',7574862002,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 17:15:41','reception','2025-12-01 16:27:19'),(0,2819,'',0,'','NAYNABEN K PATADIYA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1968-11-20','Y','57Y',0,0,0,'F','','','+91',8000012234,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 17:17:53','','0000-00-00 00:00:00'),(0,2820,'',0,'','KALPANABEN RAJYAGURU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-11-20','Y','63Y',0,0,0,'F','','','+91',9909992766,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-20 17:27:53','','0000-00-00 00:00:00'),(0,2821,'',0,'','MADHAVIBEN P KAVAR','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1998-11-20','Y','27Y',0,0,0,'F','','','+91',9099923323,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 17:32:50','','0000-00-00 00:00:00'),(0,2822,'',0,'','BHARATBHAI VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-20','Y','75Y',0,0,0,'M','','','+91',7575804487,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 17:39:41','reception','2025-12-01 18:57:22'),(0,2823,'',0,'','HARISINH B GOHIL','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1949-11-20','Y','76Y',0,0,0,'M','','','+91',9727539607,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 17:45:05','','0000-00-00 00:00:00'),(0,2824,'',0,'','MANJULABEN MARU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-20','Y','75Y',0,0,0,'F','','','+91',9779573336,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-20 17:47:21','','0000-00-00 00:00:00'),(0,2825,'',0,'','MANJULABEN LAKHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-20','Y','75Y',0,0,0,'F','','','+91',9824416307,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-20 18:01:23','drashti','2025-12-15 18:36:50'),(0,2826,'',0,'','NATHIBEN M DODIYA','','','','',0,'GIR SOMNATH','GIR SOMNATH','GUJARAT','INDIA','1973-11-20','Y','52Y',0,0,0,'F','','','+91',6351523898,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-20 18:11:25','','0000-00-00 00:00:00'),(0,2827,'',0,'','HIRABEN R CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-11-20','Y','80Y',0,0,0,'F','','','+91',7359252871,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-20 18:15:46','','0000-00-00 00:00:00'),(0,2828,'',0,'','GRISHMABEN JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-11-20','Y','23Y',0,0,0,'F','','','+91',9737621620,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-20 18:31:24','','0000-00-00 00:00:00'),(0,2829,'',0,'','UPENDRABHAI LAKUM','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-20','Y','39Y',0,0,0,'M','','','+91',8511657623,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 18:37:41','','0000-00-00 00:00:00'),(0,2830,'',0,'','ANJANIKUMAR C SRIVASTAVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-20','Y','75Y',0,0,0,'M','','','+91',9824292234,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-20 18:43:41','','0000-00-00 00:00:00'),(0,2831,'',0,'','MATIYA RAVI RAJESHBHAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-11-20','Y','27Y',0,0,0,'M','','','+91',7778809977,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-20 18:56:10','','0000-00-00 00:00:00'),(0,2832,'',0,'','VIMLABEN RATHORE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-20','Y','65Y',0,0,0,'F','','','+91',9428261663,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-20 19:02:27','','0000-00-00 00:00:00'),(0,2833,'',0,'','NARENDRABHAI B SINGH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-11-20','Y','56Y',0,0,0,'M','','','+91',9909525346,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-20 20:33:24','','0000-00-00 00:00:00'),(0,2834,'',0,'','JOGAL KARASHANBHAI','','','GUNDLA, ','BHANVAD',0,'DWARKA','DWARKA','GUJARAT','INDIA','1995-01-01','N','30Y',0,0,0,'M','','','+91',9979564206,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-20 22:58:44','drashti','2025-12-22 11:36:31'),(0,2835,'',0,'','ISHABEN POPAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-21','Y','39Y',0,0,0,'F','','','+91',9157598999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-21 08:59:11','drashti','2025-12-13 13:13:37'),(0,2836,'',0,'','DILIPBHAI M CHANDARANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-11-21','Y','66Y',0,0,0,'M','','','+91',9033245843,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 09:42:48','','0000-00-00 00:00:00'),(0,2837,'',0,'','RAMILABEN BHASKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-21','Y','50Y',0,0,0,'F','','','+91',8487884275,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 10:02:58','janvi','2025-11-28 10:30:56'),(0,2838,'',0,'','DHARMESHBHAI THORIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-11-21','Y','38Y',0,0,0,'M','','','+91',9106851425,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-21 10:03:49','janvi','2025-11-29 10:55:51'),(0,2839,'',0,'','BALBHADRABHAI SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-21','Y','67Y',0,0,0,'M','','','+91',8200876955,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 10:06:28','','0000-00-00 00:00:00'),(0,2840,'',0,'','DAYABHAI  PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-11-21','Y','74Y',0,0,0,'M','','','+91',9727130500,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 10:17:31','','0000-00-00 00:00:00'),(0,2841,'',0,'','KALPANABEN THAKKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-11-21','Y','51Y',0,0,0,'F','','','+91',9824217445,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 10:30:25','reception','2025-12-01 18:03:40'),(0,2842,'',0,'','BANUBHAI J TANK','','','','',0,'SURENDRANAGAR','SURENDRANAGAR','GUJARAT','INDIA','1961-11-21','Y','64Y',0,0,0,'M','','','+91',9429422703,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 10:31:56','','0000-00-00 00:00:00'),(0,2843,'',0,'','DIPTIBEN A AGHERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-21','Y','40Y',0,0,0,'F','','','+91',9157025185,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 10:38:49','','0000-00-00 00:00:00'),(0,2844,'',0,'','NISHABEN PAREKH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-11-21','Y','30Y',0,0,0,'F','','','+91',8141907113,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 10:39:44','reception','2025-12-17 17:41:19'),(0,2845,'',0,'','ARVINDBHAI JOITARAM','','','','',0,'AHEMDABAD','AHEMDABAD','GUJARAT','INDIA','1955-11-21','Y','70Y',0,0,0,'M','','','+91',9825066177,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 10:53:46','','0000-00-00 00:00:00'),(0,2846,'',0,'','CHANDRIKABEN A JOITARAM','','','','',0,'AHEMDABAD','AHEMDABAD','GUJARAT','INDIA','1960-11-21','Y','65Y',0,0,0,'F','','','+91',9825066177,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 10:54:35','','0000-00-00 00:00:00'),(0,2847,'',0,'','KHUSHI GONDALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-11-21','Y','25Y',0,0,0,'F','','','+91',7600728283,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-21 11:11:11','','0000-00-00 00:00:00'),(0,2848,'',0,'','DIVYABEN V LUNDH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-11-21','Y','30Y',0,0,0,'F','','','+91',9624044404,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 11:12:33','','0000-00-00 00:00:00'),(0,2849,'',0,'','GAMBHIRSINH BARAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-11-21','Y','56Y',0,0,0,'M','','','+91',9925076390,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 11:20:09','','0000-00-00 00:00:00'),(0,2850,'',0,'','NITABEN VAGHELA','','','','',0,'','','GUJARAT','INDIA','1961-11-21','Y','64Y',0,0,0,'F','','','+91',9924224176,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-21 11:24:43','','0000-00-00 00:00:00'),(0,2851,'',0,'','SAMIRBHAI M HARIPIYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-21','Y','60Y',0,0,0,'M','','','+91',9725629523,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 11:30:58','reception','2025-12-11 10:59:20'),(0,2852,'',0,'','JADAVBHAI GONDALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-11-21','Y','69Y',0,0,0,'M','','','+91',9824409257,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 11:33:21','','0000-00-00 00:00:00'),(0,2853,'',0,'','CHANDRIKABEN GONDALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-21','Y','65Y',0,0,0,'F','','','+91',9824409257,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 11:34:58','','0000-00-00 00:00:00'),(0,2854,'',0,'','BHAVNABEN B BHALODI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-11-21','Y','46Y',0,0,0,'F','','','+91',9054546000,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 11:45:26','reception','2025-11-26 10:01:58'),(0,2855,'',0,'','DIVYABEN JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-21','Y','50Y',0,0,0,'F','','','+91',9825536056,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 11:47:38','','0000-00-00 00:00:00'),(0,2856,'',0,'','HASHMUKHBHAI KOTHARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-11-21','Y','78Y',0,0,0,'M','','','+91',8401110072,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 12:03:08','','0000-00-00 00:00:00'),(0,2857,'',0,'','NARENDRABHAI P KACHHAD','','','','',0,'PATIDAL','PATIDAL','GUJARAT','INDIA','1964-11-21','Y','61Y',0,0,0,'M','','','+91',9824415678,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 12:11:21','','0000-00-00 00:00:00'),(0,2858,'',0,'','MANIIBEN P MAKWANA','','','','',0,'KUTCHH','KUTCHH','GUJARAT','INDIA','1960-11-21','Y','65Y',0,0,0,'F','','','+91',9879700825,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 12:13:11','','0000-00-00 00:00:00'),(0,2859,'',0,'','HARVI RUPAPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2011-11-21','Y','14Y',0,0,0,'F','','','+91',9067545506,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 12:18:56','drashti','2025-12-16 09:59:40'),(0,2860,'',0,'','ASHOKKUMAR A PATADIYA','','','SANKET, SANKALP SIDDHI PARK, ','OPP RUCHI BUNGLOS, AIRPORT ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-02-03','N','60Y',0,0,0,'M','','','+91',9558596168,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-21 12:31:00','vishal','2025-11-21 12:36:58'),(0,2861,'',0,'','JAMKUBEN KANERIYA','','','','',0,'KESHOD','KESHOD','GUJARAT','INDIA','1950-11-21','Y','75Y',0,0,0,'F','','','+91',9979799620,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 12:31:53','','0000-00-00 00:00:00'),(0,2862,'',0,'','PRADHYUMANSINH VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-21','Y','75Y',75,0,0,'M','','','+91',9825217937,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 12:37:09','drashti','2025-11-21 12:39:30'),(0,2863,'',0,'','KRISHNABEN R RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-21','Y','40Y',0,0,0,'F','','','+91',9724963972,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 12:45:51','reception','2025-12-17 19:05:19'),(0,2864,'',0,'','PANKAJBHAI  SARPOTA','','','','',0,'KUVADVA','KUVADVA','GUJARAT','INDIA','2006-11-21','Y','19Y',19,0,0,'M','','','+91',7622048938,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-21 13:02:57','manshi','2025-11-21 13:03:41'),(0,2865,'',0,'','MANISHABEN P PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-21','Y','39Y',0,0,0,'F','','','+91',9327436765,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-21 13:13:09','','0000-00-00 00:00:00'),(0,2866,'',0,'','NILAMBEN H MEHTA','','','SHUKAN APPT,','LIMBU NI VADI MAIN ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-01-08','N','77Y',0,0,0,'F','','','+91',9428466271,'+91',9712401477,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-21 15:17:16','drashti','2025-12-23 17:39:44'),(0,2867,'',0,'','BIKASH MONDAL','','','CENTAUR PHARMA','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-21','Y','32Y',0,0,0,'M','','','+91',9664915754,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 16:33:44','','0000-00-00 00:00:00'),(0,2868,'',0,'','ANKUR RAMANI','','','DR REDDY\'S','',0,'','','GUJARAT','INDIA','1996-11-21','Y','29Y',29,0,0,'M','','','+91',9033196208,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 16:34:51','reception','2025-12-12 16:37:51'),(0,2869,'',0,'','GAURAV VYAS','','MEDIMOUNT ','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-21','Y','42Y',0,0,0,'M','','','+91',9724240520,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-21 16:47:50','reception','2025-12-12 16:29:08'),(0,2870,'',0,'','JAYESH FATANIYA','','','MOKTEL','',0,'','','GUJARAT','INDIA','1997-11-21','Y','28Y',0,0,0,'M','','','+91',7405385361,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 16:50:46','','0000-00-00 00:00:00'),(0,2871,'',0,'','SONALBEN JOGRANA','','','','',0,'VIRAMGAM','VIRAMGAM','GUJARAT','INDIA','1989-11-21','Y','36Y',0,0,0,'F','','','+91',9898693454,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-21 16:50:48','janvi','2025-11-21 16:51:29'),(0,2872,'',0,'','BHIKHABHAI T SORATHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-11-21','Y','59Y',0,0,0,'M','','','+91',9879021628,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 17:07:07','reception','2025-12-09 17:12:18'),(0,2873,'',0,'','ATULBHAI BECHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-21','Y','48Y',0,0,0,'M','','','+91',9979008425,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 17:10:03','drashti','2025-12-01 18:12:51'),(0,2874,'',0,'','SANGITABEN VAISHNANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-21','Y','45Y',0,0,0,'F','','','+91',9913132520,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 17:21:53','drashti','2025-11-27 18:09:54'),(0,2875,'',0,'','GIRISHBHAI H BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-21','Y','64Y',0,0,0,'M','','','+91',9825958121,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 17:35:19','','0000-00-00 00:00:00'),(0,2876,'',0,'','AMITBHAI ARYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-11-21','Y','33Y',0,0,0,'M','','','+91',8233368803,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','janvi','2025-11-21 17:41:30','','0000-00-00 00:00:00'),(0,2877,'',0,'','ANKITBHAI VORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-21','Y','35Y',0,0,0,'M','','','+91',9725800054,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 17:52:15','','0000-00-00 00:00:00'),(0,2878,'',0,'','BIPINBHAI N VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-21','Y','55Y',0,0,0,'M','','','+91',9879806223,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 17:56:59','','0000-00-00 00:00:00'),(0,2879,'',0,'','NARESHBHAI VISHVAKARMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-21','Y','65Y',0,0,0,'M','','','+91',7359698770,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 18:03:50','','0000-00-00 00:00:00'),(0,2880,'',0,'','MEENABEN KHIRANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-11-21','Y','61Y',0,0,0,'F','','','+91',9276158375,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 18:08:17','','0000-00-00 00:00:00'),(0,2881,'',0,'','DIMPAL RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-21','Y','39Y',39,0,0,'F','','','+91',9375501001,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 18:19:46','reception','2025-12-11 18:35:52'),(0,2882,'',0,'','ANKITABEN DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-21','Y','32Y',0,0,0,'F','','','+91',7802931960,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 18:28:40','','0000-00-00 00:00:00'),(0,2883,'',0,'','HARSHABEN RAICHURA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-11-21','Y','58Y',0,0,0,'F','','','+91',9408584685,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 18:34:54','','0000-00-00 00:00:00'),(0,2884,'',0,'','SAMIRBHAI MANDAVIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-21','Y','50Y',0,0,0,'M','','','+91',6355060656,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-21 18:39:17','','0000-00-00 00:00:00'),(0,2885,'',0,'','DAYABEN S CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-21','Y','72Y',0,0,0,'F','','','+91',9925219977,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 18:43:28','','0000-00-00 00:00:00'),(0,2886,'',0,'','HITARTH H CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2013-11-21','Y','12Y',0,0,0,'M','','','+91',8849645151,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-21 18:53:40','manshi','2025-11-27 18:29:52'),(0,2887,'',0,'','BHAVESHBHAI JOGRANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-11-21','Y','23Y',0,0,0,'M','','','+91',7433903253,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 18:54:02','janvi','2025-11-26 11:39:20'),(0,2888,'',0,'','RANABHAI KADASA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1962-11-21','Y','63Y',0,0,0,'M','','','+91',7043157957,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-21 19:01:57','','0000-00-00 00:00:00'),(0,2889,'',0,'','AMISHA JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-11-21','Y','23Y',0,0,0,'F','','','+91',7046844274,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-21 19:29:14','','0000-00-00 00:00:00'),(0,2890,'',0,'','ASHWINBHAI J AASODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-21','Y','52Y',0,0,0,'M','','','+91',9825498807,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-21 19:41:25','','0000-00-00 00:00:00'),(0,2891,'',0,'','NAMASHVI H PATNI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-11-22','Y','18Y',0,0,0,'F','','','+91',7574917711,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-22 09:10:02','','0000-00-00 00:00:00'),(0,2892,'',0,'','MOHANBHAI CHANIYARA','','','','',0,'KEVADRA KESHOD','KEVADRA KESHOD','GUJARAT','INDIA','1970-11-22','Y','55Y',0,0,0,'M','','','+91',9904623248,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-22 09:23:09','','0000-00-00 00:00:00'),(0,2893,'',0,'','BHARGAVBHAI JOSHI','','','SHITAL PARK,MOCHI NAGAR, STREET NO-3','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-04-02','N','66Y',0,0,0,'M','','','+91',7698773123,'+91',7698108829,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-22 09:47:41','reception','2025-12-11 11:01:45'),(0,2894,'',0,'','SIDDHARTHSINH R KATARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2011-11-22','Y','14Y',14,0,0,'M','','','+91',9924955949,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-22 09:50:50','reception','2025-11-25 10:07:53'),(0,2895,'',0,'','MANISHABEN PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-11-22','Y','25Y',0,0,0,'F','','','+91',9106464269,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-22 10:00:56','','0000-00-00 00:00:00'),(0,2896,'',0,'','HETALBEN TANNA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-11-22','Y','30Y',0,0,0,'F','','','+91',9033771276,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-22 10:03:44','','0000-00-00 00:00:00'),(0,2897,'',0,'','VARJANGBHAI V BOLIYA','','','BUTKRUPA HARIHAR SOC, STREET NO-3 AMIN MARG','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-06-01','N','75Y',0,0,0,'M','','','+91',9664581078,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-22 10:05:48','','0000-00-00 00:00:00'),(0,2898,'',0,'','BHIKHABHAI LIMBASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-22','Y','52Y',0,0,0,'M','','','+91',8000046463,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-22 10:15:22','janvi','2025-12-22 17:47:37'),(0,2899,'',0,'','LABHUBEN J DHRUV','','','31-BANSARI SOC, RAMPARK-3 KALAWAD ROAD ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1932-11-22','Y','93Y',0,0,0,'F','','','+91',9428035809,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-22 10:34:30','','0000-00-00 00:00:00'),(0,2900,'',0,'','VIRALIBEN KERADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-11-22','Y','27Y',0,0,0,'F','','','+91',9726603168,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-22 10:35:01','','0000-00-00 00:00:00'),(0,2901,'',0,'','ALEYAMMA JACOB','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-11-22','Y','59Y',0,0,0,'F','','','+91',9824227006,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','janvi','2025-11-22 10:35:15','','0000-00-00 00:00:00'),(0,2902,'',0,'','PRAVINBHAI N BATHVAR','','','','',0,'SAYLA','SAYLA','GUJARAT','INDIA','1990-11-22','Y','35Y',0,0,0,'M','','','+91',8780805757,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-22 10:37:28','reception','2025-12-19 11:47:35'),(0,2903,'',0,'','DHIRAJLAL J DHOLAKIYA','','','','',0,'TARSAI JAMNAGAR','TARSAI JAMNAGAR','GUJARAT','INDIA','1965-11-22','Y','60Y',0,0,0,'M','','','+91',6351306762,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-22 10:39:37','','0000-00-00 00:00:00'),(0,2904,'',0,'','ADITI MANDALIYA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1993-11-22','Y','32Y',0,0,0,'F','','','+91',9724787410,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-22 10:48:03','','0000-00-00 00:00:00'),(0,2905,'',0,'','NISHA KANANI','','','','',0,'UNA','UNA','GUJARAT','INDIA','1986-11-22','Y','39Y',0,0,0,'F','','','+91',9225502087,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-22 10:55:26','','0000-00-00 00:00:00'),(0,2906,'',0,'','PARBATBHAI VIRABHAI KHER','','','','',0,'MANGROL SOMNATH','MANGROL SOMNATH','GUJARAT','INDIA','1956-11-22','Y','69Y',0,0,0,'M','','','+91',9727207356,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-22 10:57:03','','0000-00-00 00:00:00'),(0,2907,'',0,'','MALIBEN PARMAR','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1943-11-22','Y','82Y',0,0,0,'F','','','+91',8690075700,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-22 10:59:10','','0000-00-00 00:00:00'),(0,2908,'',0,'','VASANTIBEN DHOLAKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-11-22','Y','58Y',0,0,0,'F','','','+91',9265031784,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-22 11:04:25','','0000-00-00 00:00:00'),(0,2909,'',0,'','DAYABHAI K HANSALIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-11-22','Y','80Y',0,0,0,'M','','','+91',9727711833,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-22 11:17:24','','0000-00-00 00:00:00'),(0,2910,'',0,'','VIMALBHAI JAVIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-11-22','Y','37Y',0,0,0,'M','','','+91',9998041647,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-22 11:26:25','','0000-00-00 00:00:00'),(0,2911,'',0,'','KARANBHAI LAKHTARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-11-22','Y','19Y',0,0,0,'M','','','+91',9904843439,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-22 11:29:47','','0000-00-00 00:00:00'),(0,2912,'',0,'','ASHOKBHAI J JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-11-22','Y','77Y',0,0,0,'M','','','+91',9426234195,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-22 11:36:52','','0000-00-00 00:00:00'),(0,2913,'',0,'','DEVISMITABA ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-11-22','Y','43Y',0,0,0,'F','','','+91',9879500850,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-22 11:43:23','','0000-00-00 00:00:00'),(0,2914,'',0,'','DIPAKBHAI DAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-22','Y','52Y',0,0,0,'M','','','+91',9925000365,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-22 11:49:35','reception','2025-12-02 10:28:07'),(0,2915,'',0,'','SHITALBEN V DESANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-11-22','Y','47Y',0,0,0,'F','','','+91',8000385425,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-22 11:51:51','reception','2025-12-12 11:40:03'),(0,2916,'',0,'','JAMNABEN LIMBASIYA','','','','',0,'DUNGARKA PADADHARI','DUNGARKA PADADHARI','GUJARAT','INDIA','1957-11-22','Y','68Y',0,0,0,'F','','','+91',9426449904,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-22 11:54:51','drashti','2025-12-01 10:47:56'),(0,2917,'',0,'','SOBHNABEN KESHRIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-22','Y','67Y',0,0,0,'F','','','+91',9824612160,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-22 11:59:50','','0000-00-00 00:00:00'),(0,2918,'',0,'','RASHMIBEN CHANDARANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-22','Y','52Y',0,0,0,'F','','','+91',9825548480,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-22 12:04:59','','0000-00-00 00:00:00'),(0,2919,'',0,'','INDIRABEN R DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-22','Y','75Y',75,0,0,'F','','','+91',8153957555,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-22 12:05:43','reception','2025-11-29 12:11:51'),(0,2920,'',0,'','NAIMISHBHAI H RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-22','Y','40Y',0,0,0,'M','','','+91',9924350091,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-22 12:06:46','reception','2025-12-02 12:30:01'),(0,2921,'',0,'','USHABEN SAGAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-22','Y','50Y',0,0,0,'F','','','+91',9824984165,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-22 12:06:56','','0000-00-00 00:00:00'),(0,2922,'',0,'','VALJIBHAI K AJADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-22','Y','70Y',0,0,0,'M','','','+91',9662600700,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-22 12:19:43','drashti','2025-12-15 10:30:56'),(0,2923,'',0,'','SIDDHARTHSINH R KATARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2011-11-22','Y','14Y',0,0,0,'M','','','+91',9924955949,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-22 12:27:15','','0000-00-00 00:00:00'),(0,2924,'',0,'','NIRMLABEN M SHILU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-11-22','Y','63Y',0,0,0,'F','','','+91',9925062792,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-22 12:30:22','','0000-00-00 00:00:00'),(0,2925,'',0,'','BAVANJIBHAI G CHANGELA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1951-11-22','Y','74Y',0,0,0,'M','','','+91',9898015880,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-22 12:44:00','reception','2025-12-17 10:49:12'),(0,2926,'',0,'','HITESHBHAI RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-22','Y','39Y',0,0,0,'M','','','+91',9725317008,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-22 12:47:59','','0000-00-00 00:00:00'),(0,2927,'',0,'','DHYANI A PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2010-11-22','Y','15Y',0,0,0,'F','','','+91',8200017409,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-22 13:02:19','','0000-00-00 00:00:00'),(0,2928,'',0,'','JAYSHREEBEN M MAKWANA ','','','','',0,'SURENDRANAGAR','SURENDRANAGAR','GUJARAT','INDIA','1979-11-22','Y','46Y',46,0,0,'F','','','+91',9712420333,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-22 13:08:16','reception','2025-12-06 13:23:01'),(0,2929,'',0,'','KISHORBHAI MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-22','Y','48Y',0,0,0,'M','','','+91',9106840563,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-22 17:57:03','','0000-00-00 00:00:00'),(0,2930,'',0,'','JAYESHBHAI D SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-11-22','Y','69Y',69,0,0,'M','','','+91',9879219199,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-22 19:06:06','janvi','2025-11-22 19:07:48'),(0,2931,'',0,'','GANGABEN ADHIKARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-23','Y','36Y',0,0,0,'F','','','+91',8460753315,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-23 09:04:49','','0000-00-00 00:00:00'),(0,2932,'',0,'','KALABEN DUBAL ','','','PANCHVATI  NAGAR OPP PRAJAPATI VADI ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-11-23','Y','79Y',0,0,0,'F','','','+91',9925209059,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-23 09:56:29','','0000-00-00 00:00:00'),(0,2933,'',0,'','BHAVNABEN GHORECHA','','','GANGOTRI PARK MAIN ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-23','Y','55Y',0,0,0,'F','','','+91',9712870202,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-23 10:09:37','drashti','2025-11-27 18:25:08'),(0,2934,'',0,'','RASHMIBEN  J KAMDAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-23','Y','75Y',0,0,0,'F','','','+91',9825804428,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-23 10:21:07','','0000-00-00 00:00:00'),(0,2935,'',0,'','HIMALAY BHAI A MANEK','','','','',0,'MITHAPUR','MITHAPUR','GUJARAT','INDIA','1994-11-23','Y','31Y',0,0,0,'M','','','+91',9033881538,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-23 11:26:38','janvi','2025-11-24 13:16:38'),(0,2936,'',0,'','JAYSHREEBEN T THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-11-23','Y','54Y',0,0,0,'F','','','+91',9033368934,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-23 12:28:53','','0000-00-00 00:00:00'),(0,2937,'',0,'','JAGRUTIBEN M VADGAMA','','','PUNIT NAGAR 150 FEET RING ROAD ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-23','Y','44Y',0,0,0,'F','','','+91',9924109690,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-23 15:21:02','','0000-00-00 00:00:00'),(0,2938,'',0,'','ADITYA D VED','','','VISWAKARMA SOC, STREET NO-5 SADHUVASVANI ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-11-07','N','22Y',0,0,0,'M','','','+91',7572870581,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-23 18:24:37','vishal','2025-11-24 19:07:46'),(0,2939,'',0,'','DIPALIBEN K  CHAVDA','','','2-SASTRINAGAR RAMDEVPIR CHOWK ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-11-23','Y','20Y',0,0,0,'F','','','+91',9723267797,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-23 20:37:38','janvi','2025-11-29 11:57:44'),(0,2940,'',0,'','MITALBEN N HINSU','','','KHARAVA,DHROL','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1988-11-10','N','37Y',0,0,0,'F','','','+91',9904029458,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-24 08:51:26','riya','2025-11-24 10:33:40'),(0,2941,'',0,'','AARTIBEN R TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-24','Y','40Y',0,0,0,'F','','','+91',9099327874,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 09:12:45','','0000-00-00 00:00:00'),(0,2942,'',0,'','HINABEN  TRIVEDI','','','','',0,'','','GUJARAT','INDIA','1962-11-24','Y','63Y',0,0,0,'F','','','+91',9978819934,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 09:19:05','','0000-00-00 00:00:00'),(0,2943,'',0,'','CHIRAGBHAI VADHER','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-24','Y','31Y',31,0,0,'M','','','+91',9974480189,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 09:25:37','drashti','2025-11-24 10:59:25'),(0,2944,'',0,'','RUPABEN VISHWAKARMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-11-24','Y','25Y',0,0,0,'M','','','+91',7283936211,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 09:28:49','','0000-00-00 00:00:00'),(0,2945,'',0,'','GITABEN KAVTHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-24','Y','48Y',0,0,0,'F','','','+91',8980202076,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 09:31:27','','0000-00-00 00:00:00'),(0,2946,'',0,'','ANANYA GHOSH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-11-24','Y','28Y',0,0,0,'F','','','+91',9904071874,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 09:31:45','','0000-00-00 00:00:00'),(0,2947,'',0,'','BHAVESHBHAI JOGRANEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-11-24','Y','23Y',0,0,0,'M','','','+91',7433903253,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 09:36:04','','0000-00-00 00:00:00'),(0,2948,'',0,'','RASHILABEN PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-11-24','Y','80Y',0,0,0,'F','','','+91',9328292517,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 09:38:49','','0000-00-00 00:00:00'),(0,2949,'',0,'','VAIBHAVBHAI B KAVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-11-24','Y','24Y',24,0,0,'M','','','+91',9726317509,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 09:55:08','reception','2025-11-24 09:56:19'),(0,2950,'',0,'','BABUBHAI NARANBHAI CHAUHAN','','','','',0,'BHADRAVADI','BHADRAVADI','GUJARAT','INDIA','1967-11-24','Y','58Y',0,0,0,'M','','','+91',7600982744,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 10:14:38','manshi','2025-12-09 10:10:43'),(0,2951,'',0,'','DAKSHABEN AKBARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-11-24','Y','59Y',59,0,0,'F','','','+91',9924810940,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 10:22:32','reception','2025-11-24 10:49:10'),(0,2952,'',0,'','VIPULBHAI SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-24','Y','52Y',0,0,0,'M','','','+91',9909169699,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 10:28:42','reception','2025-12-04 18:41:07'),(0,2953,'',0,'','MADHUBEN RAMESHBHAI TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-24','Y','60Y',0,0,0,'M','','','+91',8460526037,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 10:29:27','reception','2025-12-15 16:58:00'),(0,2954,'',0,'','RUTVIBEN DODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2015-11-24','Y','10Y0M3D',0,0,0,'F','','','+91',9099292937,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 10:33:08','janvi','2025-11-27 18:19:06'),(0,2955,'',0,'','HEENABEN P CHANIYARA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1970-11-24','Y','55Y',0,0,0,'F','','','+91',9106836155,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 10:35:18','reception','2025-12-22 11:38:00'),(0,2956,'',0,'','VALJIBHAI K AJADIYA','','','AMBA BHAGAT SOC, B/H PATEL  NAGAR OPP D-MART ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-24','Y','70Y',0,0,0,'M','','','+91',9662600700,'+91',9998886904,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-24 10:38:56','','0000-00-00 00:00:00'),(0,2957,'',0,'','MEHTA DAKSHABEN MANISHBHAI','','','','',0,'SAVARKUNDLA','SAVARKUNDLA','GUJARAT','INDIA','1976-11-24','Y','49Y',0,0,0,'F','','','+91',9725119219,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-24 10:41:26','','0000-00-00 00:00:00'),(0,2958,'',0,'','MAHESHBHAI LODHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-11-24','Y','78Y',0,0,0,'M','','','+91',9924394270,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 10:55:18','reception','2025-12-05 17:53:06'),(0,2959,'',0,'','DARSHAKBHAI M THAKKAR','','','RAJKOT','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-09-06','N','54Y',0,0,0,'M','','','+91',9824212481,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-24 11:00:46','','0000-00-00 00:00:00'),(0,2960,'',0,'','SANTOSHBEN K BHOJANI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1997-11-24','Y','28Y',0,0,0,'F','','','+91',9825648083,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 11:07:13','drashti','2025-11-28 11:26:32'),(0,2961,'',0,'','JENTIBHAI SANTOKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-11-24','Y','59Y',0,0,0,'M','','','+91',9428988370,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-24 11:12:57','','0000-00-00 00:00:00'),(0,2962,'',0,'','MUKTABEN J BHARADVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-24','Y','57Y',0,0,0,'F','','','+91',9638619829,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 11:14:24','drashti','2025-12-01 11:09:07'),(0,2963,'',0,'','REKHABEN KANJARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-11-24','Y','56Y',0,0,0,'F','','','+91',8905531259,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 11:22:15','','0000-00-00 00:00:00'),(0,2964,'',0,'','DAKSHABEN LALJIBHAI GADHADRA','','','','',0,'AMRAPUR','AMRAPUR','GUJARAT','INDIA','1991-11-24','Y','34Y',0,0,0,'F','','','+91',8300812719,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 11:23:30','janvi','2025-12-06 11:50:31'),(0,2965,'',0,'','KISHORKUMAR BHAYA','','','','',0,'DIU','DIU','GUJARAT','INDIA','1978-11-24','Y','47Y',0,0,0,'M','','','+91',9930208830,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-24 11:24:11','','0000-00-00 00:00:00'),(0,2966,'',0,'','SHLOK UPADHYAY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-11-24','Y','20Y',0,0,0,'M','','','+91',8200719471,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-24 11:25:45','drashti','2025-11-27 10:33:45'),(0,2967,'',0,'','SAJITBHAI I SHEKH','','','','',0,'SOMATH','SOMATH','GUJARAT','INDIA','1998-11-24','Y','27Y',0,0,0,'M','','','+91',6351068796,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 11:28:53','','0000-00-00 00:00:00'),(0,2968,'',0,'','NARMADASHANKAR H MEHTA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1963-11-24','Y','62Y',0,0,0,'M','','','+91',9316202414,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 11:29:12','','0000-00-00 00:00:00'),(0,2969,'',0,'','SHAMJIBHAI J BHARADVA','','','','',0,'DEVBHUMI DWARKA','DEVBHUMI DWARKA','GUJARAT','INDIA','1953-11-24','Y','72Y',0,0,0,'M','','','+91',9725458865,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 11:31:56','','0000-00-00 00:00:00'),(0,2970,'',0,'','KALYANBHAI B DOBARIYA','','','','',0,'JASDAN','JASDAN','GUJARAT','INDIA','1980-11-24','Y','45Y',0,0,0,'M','','','+91',9106486295,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 11:33:13','','0000-00-00 00:00:00'),(0,2971,'',0,'','PARVATIBEN BHALARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-24','Y','72Y',0,0,0,'F','','','+91',9898612702,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 11:35:46','drashti','2025-12-01 10:57:43'),(0,2972,'',0,'','BHUPATBHAI J BHALARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-11-24','Y','59Y',0,0,0,'M','','','+91',9723874087,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 11:40:00','','0000-00-00 00:00:00'),(0,2973,'',0,'','KISHORKUMAR BHAYA ','','','','',0,'DIU','DIU','GUJARAT','INDIA','1978-11-24','Y','47Y',0,0,0,'M','','','+91',9930208830,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-24 11:40:33','','0000-00-00 00:00:00'),(0,2974,'',0,'','MAYURIBEN RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-11-24','Y','30Y',0,0,0,'F','','','+91',9898609993,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-24 11:47:23','','0000-00-00 00:00:00'),(0,2975,'',0,'','JAGRUTIBEN THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-24','Y','50Y',0,0,0,'F','','','+91',9978785404,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 11:48:11','','0000-00-00 00:00:00'),(0,2976,'',0,'','KOKILABEN PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-24','Y','50Y',0,0,0,'F','','','+91',9712818455,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-24 11:56:19','','0000-00-00 00:00:00'),(0,2977,'',0,'','DARSHANSINGH J CHIME','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1958-11-24','Y','67Y',0,0,0,'M','','','+91',9712377396,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 12:06:16','','0000-00-00 00:00:00'),(0,2978,'',0,'','ADITYA D CHOTALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-11-24','Y','22Y',22,0,0,'M','','','+91',6355491870,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 12:12:00','reception','2025-11-24 12:49:09'),(0,2979,'',0,'','VIRENDRABHAI SINDHAV','','','','',0,'MANAVADAR','MANAVADAR','GUJARAT','INDIA','1972-11-24','Y','53Y',0,0,0,'M','','','+91',9638763222,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 12:17:32','','0000-00-00 00:00:00'),(0,2980,'',0,'','PANCHASARA MADHUBEN JAYANTIBHAI','','','SUKH SAGAR SOC-2, IN MADHAV GATE,','GOVARDHAN CHOWK',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-07-01','N','68Y',0,0,0,'F','','','+91',9737417560,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-24 12:19:43','reception','2025-12-06 18:07:31'),(0,2981,'',0,'','SANDEEPBHAI B GOSWAMI','','','','',0,'TALALA','TALALA','GUJARAT','INDIA','1984-11-24','Y','41Y',0,0,0,'M','','','+91',9979410094,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 12:21:57','','0000-00-00 00:00:00'),(0,2982,'',0,'','GEETABEN RAJPUT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-24','Y','42Y',0,0,0,'F','','','+91',9913607933,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 12:24:01','','0000-00-00 00:00:00'),(0,2983,'',0,'','MANUBHAI KHUMAN','','','','',0,'SAVARKUNDLA','SAVARKUNDLA','GUJARAT','INDIA','1950-11-24','Y','75Y',0,0,0,'M','','','+91',9265073077,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-24 12:30:20','','0000-00-00 00:00:00'),(0,2984,'',0,'','SANGITABEN BUSA','','','','',0,'KALAVAD','KALAVAD','GUJARAT','INDIA','1988-11-24','Y','37Y',0,0,0,'M','','','+91',9974096391,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-24 12:52:44','shweta','2025-12-17 13:19:10'),(0,2985,'',0,'','PARVATIBEN BHALARA','','','AMIN MARG ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-24','Y','72Y',0,0,0,'F','','','+91',9898612702,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-24 12:59:35','','0000-00-00 00:00:00'),(0,2986,'',0,'','VIJYABEN D JADAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-24','Y','55Y',0,0,0,'F','','','+91',9727262860,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 12:59:51','reception','2025-12-16 10:49:13'),(0,2987,'',0,'','YAGNESH BHOJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-11-24','Y','22Y',0,0,0,'M','','','+91',9712233716,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 13:05:03','','0000-00-00 00:00:00'),(0,2988,'',0,'','DHIRUBHAI KADECHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-11-24','Y','78Y',0,0,0,'M','','','+91',9824300888,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-24 13:15:14','drashti','2025-11-28 18:28:58'),(0,2989,'',0,'','JANAKBHAI PARMAR','','','','',0,'HALVAD','HALVAD','GUJARAT','INDIA','1995-11-24','Y','30Y',0,0,0,'M','','','+91',6355092653,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-24 13:19:36','','0000-00-00 00:00:00'),(0,2990,'',0,'','JANAKBHAI PARMAR','','','','',0,'HADVADH','HADVADH','GUJARAT','INDIA','1995-11-24','Y','30Y',0,0,0,'M','','','+91',6355092653,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-24 13:23:24','','0000-00-00 00:00:00'),(0,2991,'',0,'','MANISHABEN A JOGEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-11-24','Y','37Y',0,0,0,'F','','','+91',9870012519,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 13:46:31','reception','2025-12-16 18:45:35'),(0,2992,'',0,'','RAJENBHAI GHAGHDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-24','Y','52Y',0,0,0,'M','','','+91',9892528974,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-24 15:18:43','','0000-00-00 00:00:00'),(0,2993,'',0,'','BHUPENDRABHAI KUVARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-11-24','Y','68Y',0,0,0,'M','','','+91',7600664444,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-24 15:55:25','','0000-00-00 00:00:00'),(0,2994,'',0,'','VALLABHBHAI N CHADOTARA','','','','',0,'BOTAD','BOTAD','GUJARAT','INDIA','1965-11-24','Y','60Y',0,0,0,'M','','','+91',9904860603,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 16:48:05','reception','2025-12-15 12:06:29'),(0,2995,'',0,'','PARSHOTAMBHAI SINGALA','','','','',0,'KALAVAD','KALAVAD','GUJARAT','INDIA','1950-11-24','Y','75Y',0,0,0,'M','','','+91',9825298136,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 17:18:57','','0000-00-00 00:00:00'),(0,2996,'',0,'','SUMITBHAI SAVSETA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-11-24','Y','25Y',0,0,0,'M','','','+91',8469366608,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-24 17:20:32','urvashi','2025-12-18 18:33:05'),(0,2997,'',0,'','UNNATI J THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-11-24','Y','51Y',0,0,0,'F','','','+91',8401159929,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 17:51:40','','0000-00-00 00:00:00'),(0,2998,'',0,'','BINDIYA  SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-24','Y','32Y',0,0,0,'F','','','+91',9725650746,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 17:52:53','','0000-00-00 00:00:00'),(0,2999,'',0,'','KRISHNABEN N SAVALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-24','Y','32Y',32,0,0,'F','','','+91',9925794470,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 18:09:32','reception','2025-11-24 18:10:36'),(0,3000,'',0,'','BHARATBHAI M KHAKHKHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-24','Y','64Y',0,0,0,'M','','','+91',9426784010,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-24 18:18:45','','0000-00-00 00:00:00'),(0,3001,'',0,'','PRAVINABEN MALANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-24','Y','42Y',0,0,0,'F','','','+91',6352825762,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-24 18:23:19','','0000-00-00 00:00:00'),(0,3002,'',0,'','SANGITABEN S CHAUHAN','','','','',0,'JASDAN','JASDAN','GUJARAT','INDIA','1996-11-24','Y','29Y',0,0,0,'F','','','+91',7405515893,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 18:23:25','reception','2025-12-09 17:15:47'),(0,3003,'',0,'','HAYAN P JAGDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2010-11-24','Y','15Y',0,0,0,'M','','','+91',8200122496,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-24 18:25:05','','0000-00-00 00:00:00'),(0,3004,'',0,'','MUSTAKBHAI CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-24','Y','42Y',0,0,0,'M','','','+91',8128956882,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 18:29:07','','0000-00-00 00:00:00'),(0,3005,'',0,'','PREMJIBHAI M VANIIYA','','','PURUSHARTH, DASI JIVANPARA,','ST NO-1, NANA MAVA ROAD, ',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-07-19','N','39Y',0,0,0,'M','','','+91',8000000896,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 18:36:01','vishal','2025-11-26 09:52:18'),(0,3006,'',0,'','RAJESHBHAI MALANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-11-24','Y','43Y',0,0,0,'M','','','+91',9898253368,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 18:42:02','priyanshi','2025-12-20 11:46:27'),(0,3007,'',0,'','GEETABEN T. AATVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-24','Y','64Y',0,0,0,'F','','','+91',9879668004,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-24 18:46:11','janvi','2025-12-16 18:20:56'),(0,3008,'',0,'','GEETABEN V UNADKAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-11-24','Y','74Y',0,0,0,'F','','','+91',9879182282,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 18:53:30','','0000-00-00 00:00:00'),(0,3009,'',0,'','DIYA MAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-11-24','Y','20Y',0,0,0,'F','','','+91',8160559445,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 18:56:49','reception','2025-12-02 17:48:33'),(0,3010,'',0,'','HITESHBHAI RANPARA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1978-11-24','Y','47Y',0,0,0,'M','','','+91',9825880600,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-24 19:07:16','','0000-00-00 00:00:00'),(0,3011,'',0,'','MUKESHBHAI NAHAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-11-24','Y','25Y',25,0,0,'M','','','+91',6372485992,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','janvi','2025-11-24 19:18:33','janvi','2025-11-24 19:19:16'),(0,3012,'',0,'','SHYAM D CHOTAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-11-24','Y','27Y',0,0,0,'M','','','+91',9408390975,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 19:20:26','','0000-00-00 00:00:00'),(0,3013,'',0,'','TEJALBEN S SHETH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-24','Y','57Y',57,0,0,'F','','','+91',9426343244,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 19:29:20','janvi','2025-12-19 11:41:52'),(0,3014,'',0,'','HARISHBHAI AADESARA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1973-11-24','Y','52Y',0,0,0,'M','','','+91',9672298395,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-24 19:33:47','','0000-00-00 00:00:00'),(0,3015,'',0,'','LAXMIBEN V ZALAVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-11-24','Y','61Y',0,0,0,'M','','','+91',9375712955,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-24 19:35:54','','0000-00-00 00:00:00'),(0,3016,'',0,'','JASHRAJBHAI SUTHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-11-24','Y','27Y',0,0,0,'M','','','+91',6367760463,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-24 19:49:53','','0000-00-00 00:00:00'),(0,3017,'',0,'','SHIVAM YADAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-11-24','Y','17Y',0,0,0,'M','','','+91',9913324864,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-24 19:52:59','','0000-00-00 00:00:00'),(0,3018,'',0,'','KANSAGRA ASMITA RAVIKUMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-11-24','Y','29Y',0,0,0,'F','','','+91',9033151312,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-24 19:54:45','','0000-00-00 00:00:00'),(0,3019,'',0,'','SAMUBEN SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-24','Y','62Y',0,0,0,'F','','','+91',8490933025,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-24 20:49:31','drashti','2025-12-01 10:54:59'),(0,3020,'',0,'','NITESHBHAI GOHEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-11-25','Y','49Y',0,0,0,'M','','','+91',9624525744,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 09:05:47','','0000-00-00 00:00:00'),(0,3021,'',0,'','SARLABEN MEHTA','','','5/7 SAURASHTRA KALA KENDRA,','B/H NIRMALA ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1942-01-01','N','83Y',0,0,0,'F','','','+91',9825482269,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-25 09:08:51','shweta','2025-12-02 17:42:21'),(0,3022,'',0,'','DISHABEN ZANKAT','','','','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1997-11-25','Y','28Y',0,0,0,'F','','','+91',7861809868,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-25 10:07:01','','0000-00-00 00:00:00'),(0,3023,'',0,'','JAYSHREEBEN KASUNDRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-25','Y','52Y',0,0,0,'F','','','+91',8469311393,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-25 10:22:37','','0000-00-00 00:00:00'),(0,3024,'',0,'','BHAVNABEN M GADHVI','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1990-11-25','Y','35Y',0,0,0,'F','','','+91',9426783410,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-25 10:30:59','','0000-00-00 00:00:00'),(0,3025,'',0,'','HASINABEN JEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-25','Y','53Y',0,0,0,'F','','','+91',8160646630,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-25 10:34:28','drashti','2025-12-08 12:23:24'),(0,3026,'',0,'','HIRVA CHANABABA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2011-11-25','Y','14Y',0,0,0,'F','','','+91',9898952271,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-25 10:41:03','','0000-00-00 00:00:00'),(0,3027,'',0,'','MEENABEN CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-11-25','Y','56Y',0,0,0,'F','','','+91',9106751096,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-25 10:44:25','','0000-00-00 00:00:00'),(0,3028,'',0,'','SURENDRA H VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1940-11-25','Y','85Y',0,0,0,'M','','','+91',9913975343,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 11:04:41','','0000-00-00 00:00:00'),(0,3029,'',0,'','UMABA JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-25','Y','52Y',0,0,0,'F','','','+91',9824799909,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-25 11:05:35','','0000-00-00 00:00:00'),(0,3030,'',0,'','LAXMISHANKAR DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-25','Y','62Y',0,0,0,'M','','','+91',9998190130,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-25 11:08:58','','0000-00-00 00:00:00'),(0,3031,'',0,'','HANSABEN L. DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-25','Y','60Y',0,0,0,'F','','','+91',9998190130,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-25 11:10:31','urvashi','2025-12-04 19:52:33'),(0,3032,'',0,'','VIJAYBHAI TEJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-11-25','Y','33Y',0,0,0,'M','','','+91',8401130212,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-25 11:10:32','','0000-00-00 00:00:00'),(0,3033,'',0,'','PALAKBEN TEJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-11-25','Y','27Y',0,0,0,'F','','','+91',9870002089,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-25 11:11:46','','0000-00-00 00:00:00'),(0,3034,'',0,'','RAMILABEN K RAJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-11-25','Y','63Y',63,0,0,'F','','','+91',9427270727,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 11:13:34','reception','2025-11-25 11:14:41'),(0,3035,'',0,'','RAMILABEN RAJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-11-25','Y','63Y',0,0,0,'F','','','+91',9427270727,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-25 11:13:39','','0000-00-00 00:00:00'),(0,3036,'',0,'','RAMJIBHAI R RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-25','Y','50Y',0,0,0,'M','','','+91',9601036157,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-25 11:14:04','reception','2025-12-06 08:46:18'),(0,3037,'',0,'','DEVIBEN R ODEDRA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1964-11-25','Y','61Y',0,0,0,'F','','','+91',6353954638,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 11:16:51','','0000-00-00 00:00:00'),(0,3038,'',0,'','SHWETABEN SAMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-25','Y','60Y',0,0,0,'F','','','+91',9427228350,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-25 11:19:19','','0000-00-00 00:00:00'),(0,3039,'',0,'','CHANDRIKABEN D GAJERA','','','','',0,'UPLETA','UPLETA','GUJARAT','INDIA','1959-11-25','Y','66Y',0,0,0,'F','','','+91',9879493593,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 11:23:37','reception','2025-12-13 11:14:49'),(0,3040,'',0,'','SHARAD BADVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-11-25','Y','25Y',0,0,0,'M','','','+91',9427370456,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-25 11:29:02','','0000-00-00 00:00:00'),(0,3041,'',0,'','NEEL PUROHIT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-25','Y','32Y',0,0,0,'M','','','+91',9909001476,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 11:34:51','','0000-00-00 00:00:00'),(0,3042,'',0,'',' DHARMISTABEN BASIYA','','','','',0,'BABRA','BABRA','GUJARAT','INDIA','1988-11-25','Y','37Y',0,0,0,'F','','','+91',9825481881,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-25 11:35:45','','0000-00-00 00:00:00'),(0,3043,'',0,'','MANSUKHBHAI KAKRECHA','','','','',0,'VASAVAD','VASAVAD','GUJARAT','INDIA','1966-11-25','Y','59Y',0,0,0,'M','','','+91',9925487576,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 11:41:05','','0000-00-00 00:00:00'),(0,3044,'',0,'','RAMESHBHAI V PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-25','Y','57Y',0,0,0,'M','','','+91',9823910115,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 11:42:48','reception','2025-12-03 08:41:24'),(0,3045,'',0,'','SHARDABEN  P GHATTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-25','Y','50Y',0,0,0,'F','','','+91',9913335484,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-25 11:46:31','','0000-00-00 00:00:00'),(0,3046,'',0,'','TULSIBHAI M BHARAKHDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-11-25','Y','71Y',71,0,0,'M','','','+91',9016284836,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 12:03:31','reception','2025-11-25 12:45:05'),(0,3047,'',0,'','HARIDAS G PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-11-25','Y','69Y',69,0,0,'M','','','+91',9925213256,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 12:25:28','reception','2025-11-25 12:26:20'),(0,3048,'',0,'','RAKESHBHAI G JAVIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-11-25','Y','37Y',0,0,0,'M','','','+91',9924599106,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 12:28:50','reception','2025-12-23 16:59:23'),(0,3049,'',0,'','ANIKETBHAI DOBARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-11-25','Y','22Y',22,0,0,'M','','','+91',9909806161,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 12:54:22','reception','2025-11-25 12:56:51'),(0,3050,'',0,'','GEETABEN PALAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-25','Y','65Y',0,0,0,'F','','','+91',9428058946,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 13:27:05','','0000-00-00 00:00:00'),(0,3051,'',0,'','NILAMBEN MODHVADIYA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','2000-11-25','Y','25Y',0,0,0,'F','','','+91',8128981828,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-25 17:07:22','','0000-00-00 00:00:00'),(0,3052,'',0,'','HIRENBHAI T MANDANPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-11-25','Y','58Y',0,0,0,'M','','','+91',9925659531,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 17:07:22','','0000-00-00 00:00:00'),(0,3053,'',0,'','MANISHABEN KARSANBHAI GADHVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-25','Y','42Y',42,0,0,'F','','','+91',9898211633,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-25 17:14:38','reception','2025-11-25 17:36:55'),(0,3054,'',0,'','MAGANBHAI SORATHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-25','Y','65Y',0,0,0,'M','','','+91',9824316116,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 17:41:02','','0000-00-00 00:00:00'),(0,3055,'',0,'','VANSHIKABA D JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-11-25','Y','22Y',0,0,0,'F','','','+91',9426222699,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-25 17:42:12','','0000-00-00 00:00:00'),(0,3056,'',0,'','MANISHABEN D JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-25','Y','50Y',50,0,0,'F','','','+91',9978880944,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-25 17:47:35','janvi','2025-11-25 17:48:06'),(0,3057,'',0,'','SAVITABEN D MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-11-25','Y','80Y',0,0,0,'F','','','+91',9978880944,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-25 17:49:20','','0000-00-00 00:00:00'),(0,3058,'',0,'','KESHUBHAI D VIRDIYA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1967-11-25','Y','58Y',0,0,0,'M','','','+91',9825380109,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 17:49:30','reception','2025-12-05 09:39:00'),(0,3059,'',0,'','RAKSHABEN MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-11-25','Y','51Y',0,0,0,'F','','','+91',9998314299,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-25 17:50:12','','0000-00-00 00:00:00'),(0,3060,'',0,'','RAVIRAJSINH B JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-11-25','Y','20Y',0,0,0,'M','','','+91',9023972629,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 17:52:54','','0000-00-00 00:00:00'),(0,3061,'',0,'','BHAVNABEN H MANKAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-11-25','Y','68Y',0,0,0,'F','','','+91',9687755090,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 17:58:35','','0000-00-00 00:00:00'),(0,3062,'',0,'','SHREEKANT SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-25','Y','36Y',0,0,0,'M','','','+91',8128032454,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-25 17:59:28','','0000-00-00 00:00:00'),(0,3063,'',0,'','VEENA KIRITKUMAR KURANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-11-25','Y','59Y',0,0,0,'F','','','+91',9824827232,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 18:04:01','','0000-00-00 00:00:00'),(0,3064,'',0,'','SATISHBHAI VORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-25','Y','35Y',0,0,0,'M','','','+91',9722446233,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 18:05:17','','0000-00-00 00:00:00'),(0,3065,'',0,'','PADMINIBA CHUDASAMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-25','Y','67Y',0,0,0,'F','','','+91',9979690909,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 18:07:37','reception','2025-12-05 11:52:42'),(0,3066,'',0,'','SAKETBHAI MARU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-25','Y','31Y',0,0,0,'M','','','+91',9687394999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-25 18:10:15','','0000-00-00 00:00:00'),(0,3067,'',0,'','LEELABEN C TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-25','Y','52Y',0,0,0,'F','','','+91',9913131580,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 18:10:53','reception','2025-12-05 18:16:29'),(0,3068,'',0,'','SUNILBHAI J VAGADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-11-25','Y','59Y',0,0,0,'M','','','+91',9428894858,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-25 18:16:57','','0000-00-00 00:00:00'),(0,3069,'',0,'','POONAM D MALAVIYA','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1997-11-25','Y','28Y',0,0,0,'F','','','+91',8154909000,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-25 18:29:51','','0000-00-00 00:00:00'),(0,3070,'',0,'','DAXABEN GODA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-25','Y','52Y',0,0,0,'F','','','+91',9033657897,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 18:32:09','urvashi','2025-12-16 18:53:13'),(0,3071,'',0,'','NIMUBEN SAVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-25','Y','55Y',0,0,0,'F','','','+91',9090197971,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-25 18:43:08','','0000-00-00 00:00:00'),(0,3072,'',0,'','KIRANBEN SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-11-25','Y','73Y',0,0,0,'F','','','+91',9426637237,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-25 18:45:37','manshi','2025-12-22 11:14:50'),(0,3073,'',0,'','BHUMITABEN MIYATRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-25','Y','32Y',32,0,0,'F','','','+91',9909280909,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 18:54:18','janvi','2025-12-08 18:31:31'),(0,3074,'',0,'','MEGHALBEN SUCHAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-25','Y','44Y',0,0,0,'F','','','+91',9429098089,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 18:56:16','','0000-00-00 00:00:00'),(0,3075,'',0,'','GIRISHBHAI KOTECHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-11-25','Y','56Y',56,0,0,'M','','','+91',6355001793,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-25 19:00:28','manshi','2025-11-25 19:03:08'),(0,3076,'',0,'','HANSABEN TATAMIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-11-25','Y','63Y',0,0,0,'F','','','+91',8866206699,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-25 19:05:36','','0000-00-00 00:00:00'),(0,3077,'',0,'','BHUMITABEN MIYATRA','','','7-NAVAL NAGAR MAVDI MAIN ROAD ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-08-26','N','32Y',0,0,0,'F','','','+91',9638400001,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-25 19:27:40','','0000-00-00 00:00:00'),(0,3078,'',0,'','VIVEKBHAI KAKKAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-25','Y','36Y',0,0,0,'M','','','+91',9726615666,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-25 20:05:07','','0000-00-00 00:00:00'),(0,3079,'',0,'','SHILPABEN KHER','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1991-11-26','Y','34Y',0,0,0,'F','','','+91',9574457006,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 08:49:46','','0000-00-00 00:00:00'),(0,3080,'',0,'','ANSOYABEN MOHANBHAI DAKA','','','','',0,'TANKARA','TANKARA','GUJARAT','INDIA','1964-11-26','Y','61Y',61,0,0,'F','','','+91',9727248246,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 08:56:51','reception','2025-12-10 08:50:59'),(0,3081,'',0,'','KRISHKUMAR G RABARI','','','','',0,'HALVAD','HALVAD','GUJARAT','INDIA','2010-11-26','Y','15Y',0,0,0,'M','','','+91',9925735857,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 09:36:55','','0000-00-00 00:00:00'),(0,3082,'',0,'','ISMAILBHAI I SERASIYA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1985-11-26','Y','40Y',0,0,0,'M','','','+91',9558054718,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 09:42:22','','0000-00-00 00:00:00'),(0,3083,'',0,'','MAHADEVBHAI B TADPARA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1969-11-26','Y','56Y',56,0,0,'M','','','+91',8238624453,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 09:44:15','reception','2025-11-26 09:45:25'),(0,3084,'',0,'','MALDEV KARAMTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-11-26','Y','17Y',17,0,0,'M','','','+91',9558243901,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-26 10:00:57','reception','2025-12-02 16:53:10'),(0,3085,'',0,'','UNADPAUTRA MAHMADBHAI HAJIBHAI','','','SADGURU PARK, BHAGVATIPARA MAIN ROAD,','NEAR MASJID ',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-01-23','N','68Y',0,0,0,'M','','','+91',8153890089,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-26 10:29:44','drashti','2025-12-08 09:56:52'),(0,3086,'',0,'','ULASHBA PARMAR','','','','',0,'HALVAD','HALVAD','GUJARAT','INDIA','1983-11-26','Y','42Y',0,0,0,'F','','','+91',7779089555,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 10:53:57','','0000-00-00 00:00:00'),(0,3087,'',0,'','DIKSHITBHAI G RUPARELIYA','','','','',0,'MADHUPUR ','MADHUPUR ','GUJARAT','INDIA','2001-11-26','Y','24Y',0,0,0,'M','','','+91',9428761496,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 10:55:22','','0000-00-00 00:00:00'),(0,3088,'',0,'','DIPAKBHAI SAPARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-26','Y','60Y',0,0,0,'M','','','+91',9825444646,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 10:58:08','','0000-00-00 00:00:00'),(0,3089,'',0,'','VIRALBA K JADEJA','','','','',0,'VANPARI','VANPARI','GUJARAT','INDIA','1993-11-26','Y','32Y',0,0,0,'F','','','+91',9558767707,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 11:01:41','','0000-00-00 00:00:00'),(0,3090,'',0,'','GIRISHBHAI N MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-26','Y','53Y',0,0,0,'M','','','+91',9825669293,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 11:09:49','janvi','2025-12-01 17:31:04'),(0,3091,'',0,'','PARTHBHAI TANNA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1994-11-26','Y','31Y',0,0,0,'M','','','+91',9979003174,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 11:13:41','','0000-00-00 00:00:00'),(0,3092,'',0,'','JASMITA R ZALAVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-11-26','Y','34Y',0,0,0,'F','','','+91',9033327048,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 11:18:13','','0000-00-00 00:00:00'),(0,3093,'',0,'','LILIBEN M BARAD','','','','',0,'KODINAR','KODINAR','GUJARAT','INDIA','1960-11-26','Y','65Y',0,0,0,'F','','','+91',9998285792,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 11:18:39','janvi','2025-12-01 10:55:09'),(0,3094,'',0,'','GOKULESHBHAI PITHVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-26','Y','67Y',0,0,0,'M','','','+91',9427223118,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 11:24:01','','0000-00-00 00:00:00'),(0,3095,'',0,'','SANTOKBEN JADAV','','','','',0,'GIR SOMNATH','GIR SOMNATH','GUJARAT','INDIA','1983-11-26','Y','42Y',0,0,0,'F','','','+91',9328799150,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 11:26:29','','0000-00-00 00:00:00'),(0,3096,'',0,'','BHUMIKABEN  PUROHIT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-26','Y','44Y',0,0,0,'F','','','+91',9228133799,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 11:39:41','','0000-00-00 00:00:00'),(0,3097,'',0,'','EKTABEN VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-11-26','Y','37Y',0,0,0,'F','','','+91',9016893431,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 11:42:21','','0000-00-00 00:00:00'),(0,3098,'',0,'','KIRITBHAI THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-11-26','Y','68Y',0,0,0,'M','','','+91',9825314700,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-26 11:45:07','drashti','2025-12-17 13:35:15'),(0,3099,'',0,'','SAURABHBHAI BUCH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-26','Y','36Y',36,0,0,'M','','','+91',9879572227,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 11:46:41','drashti','2025-11-26 11:55:47'),(0,3100,'',0,'','STUTIBEN BUCH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-26','Y','39Y',0,0,0,'F','','','+91',9825872227,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 11:48:09','','0000-00-00 00:00:00'),(0,3101,'',0,'','MANN V DHOLAKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2023-11-26','Y','02Y0M',0,0,0,'M','','','+91',8200454936,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-26 11:50:24','janvi','2025-12-07 11:38:33'),(0,3102,'',0,'','NATHABHAI SORA','','','','',0,'DHORAJI','DHORAJI','GUJARAT','INDIA','1964-11-26','Y','61Y',0,0,0,'M','','','+91',9879418820,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 11:52:54','','0000-00-00 00:00:00'),(0,3103,'',0,'','BALUBHAI J GAMI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1949-11-26','Y','76Y',0,0,0,'M','','','+91',9925870089,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 11:55:12','','0000-00-00 00:00:00'),(0,3104,'',0,'','USHABEN S DUDHAGRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-26','Y','50Y',0,0,0,'F','','','+91',9924126826,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 12:00:04','','0000-00-00 00:00:00'),(0,3105,'',0,'','DIVYESHBHAI SONDARVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-11-26','Y','46Y',0,0,0,'M','','','+91',9429550637,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 12:04:43','janvi','2025-11-29 13:01:12'),(0,3106,'',0,'','HARSHAL BORSE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-26','Y','36Y',36,0,0,'M','','','+91',9028595318,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','janvi','2025-11-26 12:14:47','janvi','2025-11-26 12:16:02'),(0,3107,'',0,'','ANSOYABEN B. CHOTALIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1975-11-26','Y','50Y',0,0,0,'F','','','+91',7405440809,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-26 12:22:43','','0000-00-00 00:00:00'),(0,3108,'',0,'','VIJAYBHAI JANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-26','Y','50Y',0,0,0,'M','','','+91',9824502297,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 12:25:12','drashti','2025-11-27 14:58:06'),(0,3109,'',0,'','HARKISHANBHAI SONI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-11-26','Y','80Y',0,0,0,'M','','','+91',9723889136,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 12:48:17','','0000-00-00 00:00:00'),(0,3110,'',0,'','PRAFULBHAI VITHLANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-11-26','Y','54Y',0,0,0,'M','','','+91',9824217499,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-26 13:50:56','','0000-00-00 00:00:00'),(0,3111,'',0,'','MAYURSINH K RAYJADA','','','RATANPAR','MORBI ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-26','Y','32Y',0,0,0,'M','','','+91',9723400001,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-26 14:41:00','riya','2025-11-26 14:44:43'),(0,3112,'',0,'','DANIELLE DURATE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-11-26','Y','22Y',0,0,0,'M','','','+91',8460892538,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-26 15:25:32','reception','2025-12-13 18:34:33'),(0,3113,'',0,'','NIKHIL BHALODIYA','','ZORRIS HEA','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-26','Y','32Y',0,0,0,'M','','','+91',9106634992,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 16:41:55','','0000-00-00 00:00:00'),(0,3114,'',0,'','HITENBHAI K VITHLANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-11-26','Y','46Y',0,0,0,'M','','','+91',9824887110,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 17:08:28','','0000-00-00 00:00:00'),(0,3115,'',0,'','SURESHBHAI B PORIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-11-26','Y','58Y',58,0,0,'M','','','+91',9428466260,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-26 17:31:59','janvi','2025-12-01 17:49:36'),(0,3116,'',0,'','NAYANBHAI MAKWANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-11-26','Y','26Y',0,0,0,'M','','','+91',8511136302,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-26 17:42:38','','0000-00-00 00:00:00'),(0,3117,'',0,'','UMABEN RAJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-26','Y','62Y',0,0,0,'F','','','+91',9428251786,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-26 17:45:59','','0000-00-00 00:00:00'),(0,3118,'',0,'','TIRTH MEGHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-11-26','Y','17Y',0,0,0,'M','','','+91',9428256622,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-26 17:52:04','drashti','2025-12-11 12:02:09'),(0,3119,'',0,'','HANSABEN THUMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-26','Y','55Y',0,0,0,'F','','','+91',8200059857,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 17:54:31','urvashi','2025-12-03 12:19:14'),(0,3120,'',0,'','HARDIKBHAI K PAMBHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-11-26','Y','27Y',0,0,0,'M','','','+91',9924263456,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 17:57:21','','0000-00-00 00:00:00'),(0,3121,'',0,'','BANSHRIBEN  K POPAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-26','Y','39Y',0,0,0,'F','','','+91',9979585345,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 18:11:27','','0000-00-00 00:00:00'),(0,3122,'',0,'','MADHUBEN RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-26','Y','70Y',0,0,0,'F','','','+91',9825830441,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-26 18:14:42','','0000-00-00 00:00:00'),(0,3123,'',0,'','JYOTIBEN A ANJARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-26','Y','53Y',0,0,0,'F','','','+91',8733825295,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 18:18:41','','0000-00-00 00:00:00'),(0,3124,'',0,'','RIDDHIBEN S MORI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-26','Y','40Y',0,0,0,'F','','','+91',9727187616,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 18:24:21','','0000-00-00 00:00:00'),(0,3125,'',0,'','RUDRA KAMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','0000-00-00','','',0,0,0,'M','','','+91',9898803308,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-26 18:31:13','reception','2025-12-06 17:25:53'),(0,3126,'',0,'','JAYSHREEBEN B DOSHI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-26','Y','62Y',0,0,0,'F','','','+91',9428466200,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 18:47:48','','0000-00-00 00:00:00'),(0,3127,'',0,'','AYUBBHAI  H GANJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-11-26','Y','47Y',0,0,0,'M','','','+91',9825988890,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 18:53:52','','0000-00-00 00:00:00'),(0,3128,'',0,'','ANISHABEN  A GANJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-11-26','Y','43Y',0,0,0,'F','','','+91',9825988890,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 18:56:27','','0000-00-00 00:00:00'),(0,3129,'',0,'','MEERABA BARAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-26','Y','32Y',0,0,0,'F','','','+91',9313258374,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 18:59:51','','0000-00-00 00:00:00'),(0,3130,'',0,'','HARSHABEN B  SHASTRI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-26','Y','67Y',0,0,0,'F','','','+91',8238301713,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 19:01:06','','0000-00-00 00:00:00'),(0,3131,'',0,'','RANDHIRBHAI VALA','','','','',0,'GIR SOMNATH','GIR SOMNATH','GUJARAT','INDIA','1962-11-26','Y','63Y',63,0,0,'M','','','+91',9601455560,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-26 19:04:18','janvi','2025-11-26 19:04:44'),(0,3132,'',0,'','USHAKIRAN J JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-11-26','Y','47Y',0,0,0,'F','','','+91',9662540034,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 19:11:11','','0000-00-00 00:00:00'),(0,3133,'',0,'','CHANDRIKABEN MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-26','Y','55Y',55,0,0,'F','','','+91',9879712969,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-26 19:12:49','drashti','2025-12-17 18:17:55'),(0,3134,'',0,'','SHILPABEN P KAVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-11-26','Y','39Y',0,0,0,'F','','','+91',8780486381,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-26 19:17:10','drashti','2025-12-18 17:41:08'),(0,3135,'',0,'','RAMABEN C SERATHIYA','','','','',0,'SAPAR','SAPAR','GUJARAT','INDIA','1960-11-26','Y','65Y',0,0,0,'F','','','+91',9724912391,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 19:20:11','reception','2025-12-12 12:16:16'),(0,3136,'',0,'','NAVINBHAI PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-11-26','Y','58Y',0,0,0,'M','','','+91',9733064160,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-26 19:28:42','','0000-00-00 00:00:00'),(0,3137,'',0,'','JYOTIBEN VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-11-26','Y','71Y',0,0,0,'F','','','+91',9724646038,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 19:29:32','','0000-00-00 00:00:00'),(0,3138,'',0,'','PURNENDUBHAI LODHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-26','Y','53Y',53,0,0,'M','','','+91',8200058052,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 19:47:07','drashti','2025-11-26 19:52:14'),(0,3139,'',0,'','RANDHIRBHAI VALA','','','','',0,'GIR SOMNATH','GIR SOMNATH','GUJARAT','INDIA','1962-11-26','Y','63Y',0,0,0,'M','','','+91',9601455560,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-26 19:53:17','','0000-00-00 00:00:00'),(0,3140,'',0,'','LATABEN PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-11-26','Y','56Y',0,0,0,'F','','','+91',8469095944,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-26 19:55:15','','0000-00-00 00:00:00'),(0,3141,'',0,'','RANDHIRBHAI VALA','','','CHARAKHADI,KODINAR','',0,'GIR SOMNATH','GIR SOMNATH','GUJARAT','INDIA','1962-11-26','Y','63Y',0,0,0,'M','','','+91',9601455560,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-26 20:49:12','','0000-00-00 00:00:00'),(0,3142,'',0,'','HANSABEN THUMMAR','','','PATIDAR CHOWK SADHUVASVANI ROAD SARITA PARK','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-26','Y','53Y',0,0,0,'F','','','+91',8200059857,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-26 21:01:26','','0000-00-00 00:00:00'),(0,3143,'',0,'','MADHUBEN MOHANBHAI RATHOD','','','2-KAILASHDHARA PARK RAIYA ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-07-22','N','70Y',0,0,0,'F','','','+91',9825830441,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-26 21:30:29','urvashi','2025-11-30 11:05:10'),(0,3144,'',0,'','HASUMATIBEN SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-11-27','Y','78Y',78,0,0,'F','','','+91',9825534185,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 08:45:37','reception','2025-11-27 08:47:37'),(0,3145,'',0,'','PARITABEN MORI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-11-27','Y','30Y',0,0,0,'F','','','+91',8980620500,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 08:48:30','','0000-00-00 00:00:00'),(0,3146,'',0,'','DHIRABHAI SAKHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-27','Y','62Y',0,0,0,'M','','','+91',9924407276,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 08:50:28','','0000-00-00 00:00:00'),(0,3147,'',0,'','GITABEN V BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-27','Y','60Y',0,0,0,'F','','','+91',9427444514,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 08:52:49','','0000-00-00 00:00:00'),(0,3148,'',0,'','PRAFULLABEN K VEDANT','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1955-11-27','Y','70Y',0,0,0,'F','','','+91',9224156680,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 09:13:19','','0000-00-00 00:00:00'),(0,3149,'',0,'','SAMIRBHAI MANDAVIYA','','','ALAP GREEN CITY RAIYA ROAD GOLD STONE APP','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-08-05','N','51Y',0,0,0,'M','','','+91',6355060656,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-27 09:34:15','','0000-00-00 00:00:00'),(0,3150,'',0,'','MRUDULABEN PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-11-27','Y','74Y',0,0,0,'F','','','+91',9374128521,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-27 09:43:47','','0000-00-00 00:00:00'),(0,3151,'',0,'','KAJAL CHIRAG CHOTALIYA','','','3-VANIYAVADI SHIVAM JAMBU BHAKTI NAGAR','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-11-27','Y','23Y',0,0,0,'F','','','+91',9913377207,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-27 09:44:06','reception','2025-12-05 19:19:19'),(0,3152,'',0,'','JOSHANABEN J PADARIYA','','','','',0,'GADHADA','GADHADA','GUJARAT','INDIA','1960-11-27','Y','65Y',65,0,0,'F','','','+91',9913018124,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 09:53:29','reception','2025-11-27 09:54:31'),(0,3153,'',0,'','JAYESHBHAI R VAISHNAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-11-27','Y','43Y',0,0,0,'M','','','+91',9714656810,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 09:58:34','','0000-00-00 00:00:00'),(0,3154,'',0,'','KIRITSINH T ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-27','Y','70Y',0,0,0,'M','','','+91',9428567833,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-27 10:14:45','','0000-00-00 00:00:00'),(0,3155,'',0,'','DIVYABEN V VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-27','Y','31Y',0,0,0,'F','','','+91',9265841020,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-27 10:17:12','drashti','2025-12-11 12:35:50'),(0,3156,'',0,'','KESHUBHAI B ODEDRA','','','','',0,'JAMJODHPUR','JAMJODHPUR','GUJARAT','INDIA','1961-11-27','Y','64Y',0,0,0,'M','','','+91',9979686531,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 10:19:52','','0000-00-00 00:00:00'),(0,3157,'',0,'','HEENABEN RAMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-11-27','Y','58Y',0,0,0,'F','','','+91',9427775154,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 10:35:47','reception','2025-12-02 11:21:08'),(0,3158,'',0,'','GUNVANTIBEN A KAMALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-27','Y','62Y',62,0,0,'F','','','+91',9428251195,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-27 10:37:19','janvi','2025-12-02 10:28:41'),(0,3159,'',0,'','HARISHBHAI H BUDDHADEV','','','','',0,'AHEMDAVAD','AHEMDAVAD','GUJARAT','INDIA','1962-11-27','Y','63Y',0,0,0,'M','','','+91',9825011840,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 10:37:36','','0000-00-00 00:00:00'),(0,3160,'',0,'','MITALBEN GERIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-27','Y','36Y',0,0,0,'F','','','+91',9510109394,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-27 10:38:24','reception','2025-12-08 17:20:04'),(0,3161,'',0,'','JAYABEN A SHUVA','','','','',0,'UPLETA','UPLETA','GUJARAT','INDIA','1983-11-27','Y','42Y',0,0,0,'F','','','+91',6352526263,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 10:39:24','reception','2025-12-17 10:18:09'),(0,3162,'',0,'','MADHVIBEN SOLANKI','','','','',0,'DIU','DIU','GUJARAT','INDIA','1996-11-27','Y','29Y',0,0,0,'F','','','+91',7046515111,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-27 10:40:59','reception','2025-12-05 12:10:45'),(0,3163,'',0,'','HEENABEN C CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-11-27','Y','20Y',0,0,0,'F','','','+91',6352526973,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 10:41:31','','0000-00-00 00:00:00'),(0,3164,'',0,'','KINJALBEN SOLANKI','','','','',0,'UNA','UNA','GUJARAT','INDIA','2000-11-27','Y','25Y',0,0,0,'F','','','+91',9879995555,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-27 10:42:50','','0000-00-00 00:00:00'),(0,3165,'',0,'','SANJAYBHAI PATEL','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1975-11-27','Y','50Y',0,0,0,'M','','','+91',9687608081,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 10:44:50','reception','2025-12-18 11:13:30'),(0,3166,'',0,'','CHANDUBHAI KANANI','','','','',0,'BAGASRA','BAGASRA','GUJARAT','INDIA','1970-11-27','Y','55Y',0,0,0,'M','','','+91',9638247929,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 10:48:41','reception','2025-12-17 12:31:40'),(0,3167,'',0,'','PRASHANTBHAI D GOSWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-27','Y','60Y',0,0,0,'M','','','+91',9824085590,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-27 10:50:34','','0000-00-00 00:00:00'),(0,3168,'',0,'','MUKUNDRAI P JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-11-27','Y','68Y',0,0,0,'M','','','+91',9726155126,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-27 11:03:35','','0000-00-00 00:00:00'),(0,3169,'',0,'','PURIBEN B SUNDAVADRA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1962-11-27','Y','63Y',0,0,0,'F','','','+91',9638243697,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 11:05:51','','0000-00-00 00:00:00'),(0,3170,'',0,'','NISHA K POPAT','','','','',0,'BHAYAVADAR','BHAYAVADAR','GUJARAT','INDIA','1986-11-27','Y','39Y',0,0,0,'F','','','+91',9998577399,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 11:16:55','','0000-00-00 00:00:00'),(0,3171,'',0,'','SHOBHNABEN D KACHHATIYA ','','','','',0,'BABRA','BABRA','GUJARAT','INDIA','1987-11-27','Y','38Y',0,0,0,'F','','','+91',8200372446,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 11:21:18','','0000-00-00 00:00:00'),(0,3172,'',0,'','NANJIBHAI G SHRIMALI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-27','Y','67Y',0,0,0,'M','','','+91',9979881681,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-27 11:24:15','','0000-00-00 00:00:00'),(0,3173,'',0,'','MANISHABEN V LATHIYA','','','','',0,'LATIPAR','LATIPAR','GUJARAT','INDIA','1972-11-27','Y','53Y',0,0,0,'F','','','+91',7567425292,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 11:28:26','','0000-00-00 00:00:00'),(0,3174,'',0,'','MIRABEN G KARAMTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2009-11-27','Y','16Y',0,0,0,'F','','','+91',8401311537,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 12:02:12','','0000-00-00 00:00:00'),(0,3175,'',0,'','HARISHBHAI V DAVDA','','','','',0,'BHATIYA DWARKA','BHATIYA DWARKA','GUJARAT','INDIA','1955-11-27','Y','70Y',0,0,0,'M','','','+91',9979123381,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-27 12:02:46','','0000-00-00 00:00:00'),(0,3176,'',0,'','YOGESHBHAI C OZA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-27','Y','65Y',0,0,0,'M','','','+91',9106512211,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-27 12:11:40','','0000-00-00 00:00:00'),(0,3177,'',0,'','BHAUTIKBHAI HAPALIYA','','','','',0,'MORBI ROAD','MORBI ROAD','GUJARAT','INDIA','1993-11-27','Y','32Y',0,0,0,'M','','','+91',8320723739,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 12:18:32','reception','2025-12-17 10:34:44'),(0,3178,'',0,'','REKHABEN S SANCHANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-11-27','Y','41Y',0,0,0,'F','','','+91',9924030048,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-11-27 12:35:56','','0000-00-00 00:00:00'),(0,3179,'',0,'','PRASANJIT MONDAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-11-27','Y','38Y',38,0,0,'M','','','+91',9173273961,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 13:14:47','reception','2025-11-27 14:03:28'),(0,3180,'',0,'','RAJENDRABHAI POBARU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-27','Y','60Y',0,0,0,'M','','','+91',9824040559,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 13:20:15','','0000-00-00 00:00:00'),(0,3181,'',0,'','GOPALBHAI  UDANI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-27','Y','53Y',0,0,0,'M','','','+91',9429046095,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 14:30:31','reception','2025-11-28 10:49:28'),(0,3182,'',0,'','AFROZBEN MAKWANA','','','DHROL','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1983-11-27','Y','42Y',0,0,0,'F','','','+91',7016919092,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-27 15:21:54','','0000-00-00 00:00:00'),(0,3183,'',0,'','IKBALBHAI K DODELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-11-27','Y','63Y',0,0,0,'M','','','+91',9998381341,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-27 16:37:51','','0000-00-00 00:00:00'),(0,3184,'',0,'','MOHANBHAI T LALAKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-11-27','Y','63Y',0,0,0,'M','','','+91',9428154521,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-27 16:53:57','','0000-00-00 00:00:00'),(0,3185,'',0,'','RAJESHBHAI BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-27','Y','55Y',0,0,0,'M','','','+91',9979198522,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 17:02:02','janvi','2025-12-16 18:50:04'),(0,3186,'',0,'','MANSI PARMAR','','','SHEPA,MANGROL','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','2005-01-02','N','20Y',0,0,0,'F','','','+91',9925129974,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-27 17:03:05','','0000-00-00 00:00:00'),(0,3187,'',0,'','NAVALSINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1935-11-27','Y','90Y',0,0,0,'M','','','+91',9773417515,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-27 17:03:32','','0000-00-00 00:00:00'),(0,3188,'',0,'','SHARDABEN A KAVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-11-27','Y','52Y',0,0,0,'F','','','+91',9726312509,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 17:26:22','reception','2025-12-23 11:36:29'),(0,3189,'',0,'','JINKALBEN MARVANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-27','Y','32Y',0,0,0,'F','','','+91',9428317041,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 17:34:10','','0000-00-00 00:00:00'),(0,3190,'',0,'','GAURIBEN J. VANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-27','Y','45Y',0,0,0,'F','','','+91',9316922388,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 17:39:40','shweta','2025-12-02 19:20:36'),(0,3191,'',0,'','RITABEN B RABADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-27','Y','60Y',0,0,0,'F','','','+91',9825220932,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-27 17:43:45','','0000-00-00 00:00:00'),(0,3192,'',0,'','BHIKHUBHAI R RABADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-27','Y','64Y',0,0,0,'M','','','+91',9825220932,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-27 17:44:36','','0000-00-00 00:00:00'),(0,3193,'',0,'','DIMPALBEN VARU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-11-27','Y','49Y',0,0,0,'F','','','+91',9904229290,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-27 18:03:27','','0000-00-00 00:00:00'),(0,3194,'',0,'','DARSH KARELIYA','','','','',0,'','','GUJARAT','INDIA','2015-11-27','Y','10Y0M0D',0,0,0,'M','','','+91',9662060265,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-27 18:07:58','','0000-00-00 00:00:00'),(0,3195,'',0,'','ROHITBHAI M ASHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-27','Y','60Y',0,0,0,'M','','','+91',9426423047,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-27 18:08:25','','0000-00-00 00:00:00'),(0,3196,'',0,'','PARESHBHAI BHAGAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-11-27','Y','61Y',0,0,0,'M','','','+91',8000002438,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 18:12:30','','0000-00-00 00:00:00'),(0,3197,'',0,'','KATHROTIYA PURVISHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-11-27','Y','28Y',0,0,0,'F','','','+91',6355400769,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-27 18:14:32','','0000-00-00 00:00:00'),(0,3198,'',0,'','AKASHBHAI KALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-11-27','Y','29Y',0,0,0,'M','','','+91',7801975710,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-27 18:16:02','','0000-00-00 00:00:00'),(0,3199,'',0,'','SAGARNATH BABUNATH BHATI','','','','',0,'KHIRSRA','KHIRSRA','GUJARAT','INDIA','1995-11-27','Y','30Y',0,0,0,'M','','','+91',8160357345,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 18:17:05','','0000-00-00 00:00:00'),(0,3200,'',0,'','PRAVINBHAI DALSANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-27','Y','62Y',0,0,0,'M','','','+91',9016935727,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-27 18:19:56','','0000-00-00 00:00:00'),(0,3201,'',0,'','MANAVRAJSINH DIGVIJAYSINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-11-27','Y','19Y',0,0,0,'M','','','+91',9824097079,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 18:26:59','','0000-00-00 00:00:00'),(0,3202,'',0,'','SURYARAJSINH K SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2013-11-27','Y','12Y',0,0,0,'M','','','+91',9998001919,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 18:29:02','reception','2025-12-18 18:26:55'),(0,3203,'',0,'','ANKITBHAI JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-27','Y','35Y',0,0,0,'M','','','+91',8866889912,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-27 18:30:25','','0000-00-00 00:00:00'),(0,3204,'',0,'','PUJABEN R BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-11-27','Y','47Y',0,0,0,'F','','','+91',7622994634,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-27 18:31:43','','0000-00-00 00:00:00'),(0,3205,'',0,'','ANKIT KUMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-11-27','Y','20Y',0,0,0,'M','','','+91',9725675555,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-27 18:34:30','reception','2025-11-27 19:09:35'),(0,3206,'',0,'','RIDHHI VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-11-27','Y','25Y',0,0,0,'F','','','+91',9624302823,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-27 18:44:51','','0000-00-00 00:00:00'),(0,3207,'',0,'','KAUSHIKBHAI C PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-11-27','Y','78Y',78,0,0,'M','','','+91',9978930090,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-27 18:55:09','reception','2025-12-09 16:47:41'),(0,3208,'',0,'','BHARGAVBHAI DANGAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-11-27','Y','30Y',0,0,0,'M','','','+91',9157168328,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-27 18:57:01','priyanshi','2025-12-08 17:20:29'),(0,3209,'',0,'','HARISHBHAI MAKAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-27','Y','72Y',0,0,0,'M','','','+91',9427217380,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-27 19:00:24','urvashi','2025-12-04 18:53:00'),(0,3210,'',0,'','PAVANBHAI PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-27','Y','36Y',0,0,0,'M','','','+91',9016964635,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-27 19:00:54','reception','2025-12-01 19:38:01'),(0,3211,'',0,'','RUPALBEN DUBAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-11-27','Y','47Y',0,0,0,'F','','','+91',9327195654,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-27 19:08:12','','0000-00-00 00:00:00'),(0,3212,'',0,'','MAHESHBHAI D GOHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-11-27','Y','53Y',0,0,0,'M','','','+91',9726230400,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-27 20:13:58','','0000-00-00 00:00:00'),(0,3213,'',0,'','RUDRA MANEK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2019-11-27','Y','06Y0M',0,0,0,'M','','','+91',8511787631,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-27 20:41:29','reception','2025-12-04 17:33:46'),(0,3214,'',0,'','KRISHNABEN SHGHALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-11-28','Y','25Y',0,0,0,'F','','','+91',9328077047,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 08:49:16','','0000-00-00 00:00:00'),(0,3215,'',0,'','NATUBHA G JADEJA','','','','',0,'KUTCHH','KUTCHH','GUJARAT','INDIA','1967-11-28','Y','58Y',0,0,0,'M','','','+91',9978220974,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-28 08:55:57','','0000-00-00 00:00:00'),(0,3216,'',0,'','MANGLABEN SHILU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-11-28','Y','71Y',71,0,0,'F','','','+91',8200919103,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 09:21:22','drashti','2025-11-28 10:25:12'),(0,3217,'',0,'','MANJULABEN KALOLA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1957-11-28','Y','68Y',0,0,0,'F','','','+91',9408365165,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 10:04:33','','0000-00-00 00:00:00'),(0,3218,'',0,'','PRAGNABEN J KACHA','','','','',0,'KESHOD','KESHOD','GUJARAT','INDIA','1981-11-28','Y','44Y',0,0,0,'F','','','+91',9725841934,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 10:06:31','','0000-00-00 00:00:00'),(0,3219,'',0,'','GAYATRIBEN JALARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-11-28','Y','45Y',0,0,0,'F','','','+91',9879210882,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-28 10:13:31','','0000-00-00 00:00:00'),(0,3220,'',0,'','BATUKBHAI T SOLANKI','','','','',0,'SAPAR VERAVAL','SAPAR VERAVAL','GUJARAT','INDIA','1955-11-28','Y','70Y',70,0,0,'M','','','+91',7211132999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-28 10:15:29','reception','2025-11-28 10:26:52'),(0,3221,'',0,'','BHARATBHAI T GAMI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1989-11-28','Y','36Y',0,0,0,'M','','','+91',9824648860,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 10:16:40','reception','2025-12-18 11:55:25'),(0,3222,'',0,'','EDABHAI R CHAUHAN','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1997-11-28','Y','28Y',0,0,0,'M','','','+91',9913085607,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 10:28:14','reception','2025-12-19 10:19:35'),(0,3223,'',0,'','JAGDISHBHAI TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-28','Y','60Y',0,0,0,'M','','','+91',8160868246,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-28 10:32:14','','0000-00-00 00:00:00'),(0,3224,'',0,'','RADADIYA JAYABEN ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-28','Y','60Y',0,0,0,'F','','','+91',6353173363,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-28 10:42:13','','0000-00-00 00:00:00'),(0,3225,'',0,'','MADHVIBEN R GHAGHARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-11-28','Y','41Y',0,0,0,'F','','','+91',9978820263,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-28 11:05:58','','0000-00-00 00:00:00'),(0,3226,'',0,'','NALINBHAI D VAIDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1944-11-28','Y','81Y',0,0,0,'M','','','+91',9428408352,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 11:06:45','drashti','2025-12-22 10:59:22'),(0,3227,'',0,'','ANITABEN P PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-11-28','Y','34Y',0,0,0,'F','','','+91',7096407574,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 11:13:48','','0000-00-00 00:00:00'),(0,3228,'',0,'','RAMESHBHAI K RAFADIYA','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1953-11-28','Y','72Y',0,0,0,'M','','','+91',9879800986,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 11:18:28','','0000-00-00 00:00:00'),(0,3229,'',0,'','KANCHANBEN VAGHAMSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-28','Y','32Y',0,0,0,'F','','','+91',9106464092,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-28 11:24:37','shweta','2025-12-17 19:37:54'),(0,3230,'',0,'','BHAVNABEN CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-11-28','Y','68Y',0,0,0,'F','','','+91',9998397818,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-28 11:27:53','','0000-00-00 00:00:00'),(0,3231,'',0,'','PRADIPBHAI B DHADHAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-11-28','Y','24Y',0,0,0,'F','','','+91',7874534870,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-28 11:28:25','','0000-00-00 00:00:00'),(0,3232,'',0,'','MANISHBHAI BHALGAMADIYA','','','','',0,'AHEMDABAD','AHEMDABAD','GUJARAT','INDIA','1990-11-28','Y','35Y',0,0,0,'M','','','+91',9904343609,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-28 11:30:39','janvi','2025-12-20 10:26:17'),(0,3233,'',0,'','JAYABEN R VANIYA','','','','',0,'KHAKHICHARIYA','KHAKHICHARIYA','GUJARAT','INDIA','1965-11-28','Y','60Y',0,0,0,'F','','','+91',8530870402,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 11:34:11','','0000-00-00 00:00:00'),(0,3234,'',0,'','BADHIBEN K GADADHAR','','','','',0,'MATEL','MATEL','GUJARAT','INDIA','1982-11-28','Y','43Y',43,0,0,'F','','','+91',9712587145,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-28 11:38:21','reception','2025-12-15 10:58:06'),(0,3235,'',0,'','VIJAYSINH V. VALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-28','Y','40Y',0,0,0,'M','','','+91',9727702727,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-28 11:38:51','','0000-00-00 00:00:00'),(0,3236,'',0,'','KUSUMBEN C. KATHRECHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-28','Y','67Y',0,0,0,'F','','','+91',9904430028,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 11:40:01','','0000-00-00 00:00:00'),(0,3237,'',0,'','HARSHABEN R UPADHYAY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-11-28','Y','63Y',0,0,0,'F','','','+91',9725994855,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-28 11:40:22','','0000-00-00 00:00:00'),(0,3238,'',0,'','JAGRUTIBEN SAKHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-11-28','Y','28Y',0,0,0,'F','','','+91',9898455731,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-28 11:42:46','','0000-00-00 00:00:00'),(0,3239,'',0,'','LAXMIBEN MAHESHBHAI BHESDADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-28','Y','48Y',48,0,0,'F','','','+91',9825242903,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-28 11:46:25','drashti','2025-11-28 18:23:40'),(0,3240,'',0,'','DILSHADBHAI SHEKH','','','','',0,'GIR SOMNATH','GIR SOMNATH','GUJARAT','INDIA','1982-11-28','Y','43Y',0,0,0,'M','','','+91',8140220256,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 11:47:51','reception','2025-12-18 11:25:08'),(0,3241,'',0,'','SIDDHARTHBHAI LAKHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-11-28','Y','49Y',0,0,0,'M','','','+91',9825164275,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 11:49:03','reception','2025-11-28 17:27:03'),(0,3242,'',0,'','JYOTIBALA  LAKHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-11-28','Y','47Y',0,0,0,'F','','','+91',9825164275,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 11:50:48','','0000-00-00 00:00:00'),(0,3243,'',0,'','KHYATIBEN PAREKH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-11-28','Y','32Y',0,0,0,'F','','','+91',9574402545,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-28 11:50:56','','0000-00-00 00:00:00'),(0,3244,'',0,'','RAJESHBHAI PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-28','Y','50Y',0,0,0,'M','','','+91',9898030373,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-28 11:52:17','','0000-00-00 00:00:00'),(0,3245,'',0,'','SHANTABEN M BHAYANI','','','','',0,'DHORAJI','DHORAJI','GUJARAT','INDIA','1940-11-28','Y','85Y',0,0,0,'F','','','+91',9824240255,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 11:54:17','','0000-00-00 00:00:00'),(0,3246,'',0,'','SHYAM BHALODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-11-28','Y','21Y',0,0,0,'M','','','+91',7984863059,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-28 12:00:15','','0000-00-00 00:00:00'),(0,3247,'',0,'','JYOTIBEN P RUPANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-28','Y','55Y',0,0,0,'F','','','+91',8780574120,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 12:06:32','reception','2025-12-06 11:25:58'),(0,3248,'',0,'','BADHIBEN K GADADHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-11-28','Y','43Y',0,0,0,'F','','','+91',9712587145,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 12:10:46','reception','2025-11-28 16:26:23'),(0,3249,'',0,'','BINDUBEN JESHVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-28','Y','50Y',0,0,0,'F','','','+91',9898720869,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-28 12:16:26','','0000-00-00 00:00:00'),(0,3250,'',0,'','INDIRABEN SOLANKI','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1969-11-28','Y','56Y',0,0,0,'F','','','+91',9898739119,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 12:18:59','','0000-00-00 00:00:00'),(0,3251,'',0,'','GRISHMABEN PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-11-28','Y','28Y',0,0,0,'F','','','+91',9998815753,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-28 12:45:05','','0000-00-00 00:00:00'),(0,3252,'',0,'','PRAGNABEN MANISHBHAI MEHTA','','RAJKOT','','',0,'','','GUJARAT','INDIA','1969-11-28','Y','56Y',56,0,0,'F','','','+91',9824881598,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','darshan','2025-11-28 13:34:46','reception','2025-12-17 13:02:15'),(0,3253,'',0,'','RAMABEN H  HANSKORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-28','Y','67Y',0,0,0,'F','','','+91',9825179121,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 14:22:29','','0000-00-00 00:00:00'),(0,3254,'',0,'','REKHABEN JAVIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-11-28','Y','48Y',0,0,0,'F','','','+91',9925165202,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 14:25:23','','0000-00-00 00:00:00'),(0,3255,'',0,'','NILAMBEN MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-11-28','Y','77Y',0,0,0,'F','','','+91',9428466271,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 15:06:03','','0000-00-00 00:00:00'),(0,3256,'',0,'','DILIPBHAI GOPALBHAI KACHATIYA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1975-11-28','Y','50Y',0,0,0,'M','','','+91',9638602628,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 16:19:49','reception','2025-12-08 18:40:23'),(0,3257,'',0,'','MEHULBHAI GOSWAMI ','','SWISS PHAR','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-11-28','Y','37Y',0,0,0,'M','','','+91',9904958168,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 16:31:29','','0000-00-00 00:00:00'),(0,3258,'',0,'','DARSHANBHAI AKBARI','','THE TIRU R','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-11-28','Y','22Y',0,0,0,'M','','','+91',9537555151,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 16:45:07','','0000-00-00 00:00:00'),(0,3259,'',0,'','MANIBEN P VADHER','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-28','Y','72Y',0,0,0,'M','','','+91',9726784074,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 16:52:25','','0000-00-00 00:00:00'),(0,3260,'',0,'','MEENABEN RUPARELIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1943-11-28','Y','82Y',0,0,0,'F','','','+91',8238704700,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 16:54:27','janvi','2025-12-19 11:24:21'),(0,3261,'',0,'','BHAGVATIBEN R CHOVATIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-28','Y','35Y',0,0,0,'F','','','+91',9913072721,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-28 17:12:22','','0000-00-00 00:00:00'),(0,3262,'',0,'','VEENABEN PATEL','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1968-11-28','Y','57Y',0,0,0,'F','','','+91',9727043758,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-28 17:16:00','','0000-00-00 00:00:00'),(0,3263,'',0,'','GUNVANTBHAI PATEL','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1965-11-28','Y','60Y',0,0,0,'M','','','+91',9727043758,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-28 17:16:15','','0000-00-00 00:00:00'),(0,3264,'',0,'','URVISHBHAI PATEL','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1989-11-28','Y','36Y',0,0,0,'M','','','+91',7600003810,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-28 17:17:30','manshi','2025-12-11 18:27:20'),(0,3265,'',0,'','MANISHBHAI GONDALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-11-28','Y','28Y',28,0,0,'M','','','+91',8320774087,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-28 17:32:21','reception','2025-11-28 17:51:54'),(0,3266,'',0,'','PARSHOTAMBHAI D JETHVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-11-28','Y','69Y',0,0,0,'M','','','+91',9409058385,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 17:35:46','','0000-00-00 00:00:00'),(0,3267,'',0,'','HETBHAI GOKANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-11-28','Y','21Y',0,0,0,'M','','','+91',9409644996,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-28 17:44:36','reception','2025-12-19 18:25:50'),(0,3268,'',0,'','MAMTABEN TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-11-28','Y','46Y',0,0,0,'F','','','+91',9427725985,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 17:49:59','reception','2025-12-15 16:35:54'),(0,3269,'',0,'','AVINASHBHAI KAGATHARA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1988-11-28','Y','37Y',0,0,0,'M','','','+91',8320202532,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-28 17:50:32','','0000-00-00 00:00:00'),(0,3270,'',0,'','RUTVIBEN DODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2015-11-28','Y','10Y0M0D',0,0,0,'F','','','+91',9099292937,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-28 17:57:39','','0000-00-00 00:00:00'),(0,3271,'',0,'','ARTIBEN H BHALOYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-28','Y','36Y',0,0,0,'F','','','+91',9408187886,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-28 17:58:17','','0000-00-00 00:00:00'),(0,3272,'',0,'','SREYASH B SUMAKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-11-28','Y','24Y',24,0,0,'M','','','+91',9426421564,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-28 18:10:14','janvi','2025-11-28 18:11:04'),(0,3273,'',0,'','DIVYABEN  KANABAR','','','','',0,'GONADAL','GONADAL','GUJARAT','INDIA','1977-11-28','Y','48Y',0,0,0,'F','','','+91',9265746177,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 18:11:22','reception','2025-12-05 17:12:20'),(0,3274,'',0,'','JENIL GORASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2011-11-28','Y','14Y',14,0,0,'M','','','+91',7069767565,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-28 18:12:41','reception','2025-12-19 18:51:53'),(0,3275,'',0,'','RANJANBEN G NIMAVAT','','','','',0,'PADADHARI','PADADHARI','GUJARAT','INDIA','1958-11-28','Y','67Y',0,0,0,'F','','','+91',9714730001,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-28 18:24:24','','0000-00-00 00:00:00'),(0,3276,'',0,'','VADHER MANIBEN PARABATBHAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-11-28','Y','71Y',0,0,0,'F','','','+91',9913543546,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-28 18:32:47','','0000-00-00 00:00:00'),(0,3277,'',0,'','GIRISHBHAI UPADHYAY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-11-28','Y','58Y',0,0,0,'M','','','+91',8758030003,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-28 18:34:55','','0000-00-00 00:00:00'),(0,3278,'',0,'','MOKSAMA BEGAM','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-11-28','Y','29Y',0,0,0,'F','','','+91',9033106273,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 18:40:44','','0000-00-00 00:00:00'),(0,3279,'',0,'','KOMBIL VORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-28','Y','40Y',0,0,0,'M','','','+91',9909065434,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-28 18:47:01','','0000-00-00 00:00:00'),(0,3280,'',0,'','CHAMPABEN KHANPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-28','Y','62Y',0,0,0,'F','','','+91',9090197971,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-28 18:49:34','manshi','2025-12-08 18:42:54'),(0,3281,'',0,'','SAVITABEN BHIMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-28','Y','65Y',0,0,0,'F','','','+91',9090197971,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-28 18:49:40','','0000-00-00 00:00:00'),(0,3282,'',0,'','JAGRUTIBA J GOHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-11-28','Y','34Y',0,0,0,'F','','','+91',9265592092,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-28 18:50:00','','0000-00-00 00:00:00'),(0,3283,'',0,'','ARJUNBHAI PINGALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-11-28','Y','23Y',0,0,0,'M','','','+91',9601679576,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-28 18:54:17','','0000-00-00 00:00:00'),(0,3284,'',0,'','YASH V BECHARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-11-28','Y','20Y',0,0,0,'M','','','+91',9825210499,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 18:54:35','reception','2025-12-10 10:11:44'),(0,3285,'',0,'','FARUKBHAI  VAKIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-11-28','Y','58Y',0,0,0,'M','','','+91',9408793601,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-28 18:57:45','reception','2025-11-29 10:56:52'),(0,3286,'',0,'','PANKAJBHAI SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-11-28','Y','55Y',0,0,0,'M','','','+91',9428295070,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-28 19:22:16','','0000-00-00 00:00:00'),(0,3287,'',0,'','DR N D AGRAWAT','','','INDRAPASTH NAGAR STREET NO-2 B/H ALAP GREEN CITY','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-07-03','N','72Y',0,0,0,'M','','','+91',9033815583,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-11-28 21:35:42','','0000-00-00 00:00:00'),(0,3288,'',0,'','JANVIBA JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-11-29','Y','22Y',0,0,0,'F','','','+91',9375535566,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 09:02:43','','0000-00-00 00:00:00'),(0,3289,'',0,'','DIVYESHBHAI SAGAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-11-29','Y','26Y',0,0,0,'M','','','+91',8469978738,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 09:07:20','','0000-00-00 00:00:00'),(0,3290,'',0,'','VIJAYBHAI CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-29','Y','40Y',0,0,0,'M','','','+91',9714523479,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 09:08:34','','0000-00-00 00:00:00'),(0,3291,'',0,'','SOBHNABEN RATNPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-29','Y','50Y',0,0,0,'F','','','+91',9313012479,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-29 09:21:41','','0000-00-00 00:00:00'),(0,3292,'',0,'','HARESHBHAI VIRADIYA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1979-11-29','Y','46Y',0,0,0,'M','','','+91',9898490981,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 09:55:02','reception','2025-12-17 10:14:56'),(0,3293,'',0,'','BHARTBHAI V KODIYATRA','','','','',0,'TALALA','TALALA','GUJARAT','INDIA','1959-11-29','Y','66Y',0,0,0,'M','','','+91',9925993326,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-29 09:58:16','','0000-00-00 00:00:00'),(0,3294,'',0,'','UDAYBHAI KODIYATRA','','','','',0,'TALALA','TALALA','GUJARAT','INDIA','1993-11-29','Y','32Y',0,0,0,'M','','','+91',9925993326,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-29 10:01:35','','0000-00-00 00:00:00'),(0,3295,'',0,'','TAKHIBEN K SANIYA','','','GATRAD NAGAR','',0,'METODA','METODA','GUJARAT','INDIA','1993-11-29','Y','32Y',0,0,0,'F','','','+91',9998488863,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 10:14:04','janvi','2025-12-10 10:10:43'),(0,3296,'',0,'','BINABEN H GADHVI','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1985-11-29','Y','40Y',0,0,0,'F','','','+91',7622985166,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 10:15:18','reception','2025-12-18 10:26:53'),(0,3297,'',0,'','MAHESHBHAI D TANNA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1972-11-29','Y','53Y',0,0,0,'M','','','+91',9428835099,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 10:37:20','reception','2025-12-10 17:17:39'),(0,3298,'',0,'','KINJALBEN J SURANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-11-29','Y','33Y',0,0,0,'F','','','+91',9879242413,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 10:53:23','','0000-00-00 00:00:00'),(0,3299,'',0,'','ARJANBHAI S MAKWANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-11-29','Y','62Y',0,0,0,'M','','','+91',9228627441,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 10:55:50','','0000-00-00 00:00:00'),(0,3300,'',0,'','SOBHNABEN RATANPARA','','','','',0,'HAMIRPAR','HAMIRPAR','GUJARAT','INDIA','1975-11-29','Y','50Y',50,0,0,'F','','','+91',9313012479,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-29 10:57:25','janvi','2025-11-29 10:57:54'),(0,3301,'',0,'','KAPILBHAI K VAJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-11-29','Y','46Y',0,0,0,'M','','','+91',9898154007,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-29 11:06:15','','0000-00-00 00:00:00'),(0,3302,'',0,'',' JAYANTBHAI MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-11-29','Y','60Y',0,0,0,'M','','','+91',9924126430,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-29 11:06:54','','0000-00-00 00:00:00'),(0,3303,'',0,'','MANOJBHAI MEHTA','','','SANKET 19-SARDAR NAGAR','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-11-29','Y','68Y',0,0,0,'M','','','+91',9824160360,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-29 11:15:37','vishal','2025-11-29 11:32:29'),(0,3304,'',0,'','MANISHABEN A DODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-11-29','Y','51Y',0,0,0,'F','','','+91',9712175444,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-29 11:18:31','','0000-00-00 00:00:00'),(0,3305,'',0,'','BHAVANISHANKAR UPADHYAY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-29','Y','72Y',0,0,0,'M','','','+91',9586664999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 11:26:40','','0000-00-00 00:00:00'),(0,3306,'',0,'','DEVANGBHAI JANI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-29','Y','42Y',0,0,0,'M','','','+91',9898223330,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-29 11:27:33','','0000-00-00 00:00:00'),(0,3307,'',0,'','BHARTIBEN DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-11-29','Y','70Y',70,0,0,'F','','','+91',9426229106,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-29 11:31:19','drashti','2025-11-29 12:28:13'),(0,3308,'',0,'','JIVANTIKABEN RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-11-29','Y','66Y',0,0,0,'F','','','+91',9898004724,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-29 11:32:11','','0000-00-00 00:00:00'),(0,3309,'',0,'','PRADEEPBHAI R DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-11-29','Y','59Y',0,0,0,'M','','','+91',8780287430,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-29 11:35:29','','0000-00-00 00:00:00'),(0,3310,'',0,'','MEENABEN CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-29','Y','67Y',0,0,0,'F','','','+91',9737646000,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 11:36:44','','0000-00-00 00:00:00'),(0,3311,'',0,'','RANJANBA D CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-11-29','Y','65Y',0,0,0,'F','','','+91',9725602221,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 11:38:13','reception','2025-12-18 09:57:38'),(0,3312,'',0,'','KAJALBEN MEHTA ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-11-29','Y','30Y',0,0,0,'F','','','+91',6351138586,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-29 11:38:26','','0000-00-00 00:00:00'),(0,3313,'',0,'','JAYSHUKHBHAI PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-11-29','Y','75Y',0,0,0,'M','','','+91',9725925930,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-29 11:52:19','','0000-00-00 00:00:00'),(0,3314,'',0,'','SEJALBEN BAKUTRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-11-29','Y','37Y',0,0,0,'F','','','+91',9714034912,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 11:52:35','drashti','2025-12-22 11:04:47'),(0,3315,'',0,'','KASHMIRABEN R SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-11-29','Y','57Y',0,0,0,'F','','','+91',9409018604,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-29 11:54:23','','0000-00-00 00:00:00'),(0,3316,'',0,'','KHUSH AGHERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-11-29','Y','21Y',0,0,0,'M','','','+91',8238384768,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-29 11:54:28','manshi','2025-12-05 12:50:00'),(0,3317,'',0,'','SUNITABEN B BHOJVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-11-29','Y','36Y',0,0,0,'F','','','+91',7434821679,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-29 11:59:33','','0000-00-00 00:00:00'),(0,3318,'',0,'','JAGDISHBHAI DANGAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-11-29','Y','38Y',0,0,0,'M','','','+91',9979748887,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-29 11:59:48','','0000-00-00 00:00:00'),(0,3319,'',0,'','SUDHIR R KOLTE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-11-29','Y','56Y',0,0,0,'M','','','+91',9769998266,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-29 12:02:23','','0000-00-00 00:00:00'),(0,3320,'',0,'','JOSHI YASH','','','','',0,'MANGROL','MANGROL','GUJARAT','INDIA','2001-11-29','Y','24Y',24,0,0,'M','','','+91',9067730350,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-29 12:12:43','janvi','2025-11-29 12:14:04'),(0,3321,'',0,'','DILIPBHAI JAGDA','','','','',0,'DEVGAM','DEVGAM','GUJARAT','INDIA','1967-11-29','Y','58Y',0,0,0,'M','','','+91',9725414885,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 12:16:35','','0000-00-00 00:00:00'),(0,3322,'',0,'','GAUTAMBHAI THANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-11-29','Y','30Y',0,0,0,'M','','','+91',9979727236,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-29 12:17:26','','0000-00-00 00:00:00'),(0,3323,'',0,'','SUMITABEN CHETANBHAI TRAPASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-11-29','Y','43Y',0,0,0,'F','','','+91',9737234461,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-29 12:26:13','','0000-00-00 00:00:00'),(0,3324,'',0,'','CHETANBHAI B TRAPASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-29','Y','50Y',0,0,0,'M','','','+91',9737234461,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-29 12:27:16','janvi','2025-12-08 19:52:17'),(0,3325,'',0,'','DR RAKESH DHADHAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-29','Y','40Y',40,0,0,'M','','','+91',9898914949,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 12:27:23','reception','2025-12-15 18:48:46'),(0,3326,'',0,'','SANIYA M KABARIYA','','','','',0,'RAJULA','RAJULA','GUJARAT','INDIA','2007-11-29','Y','18Y',0,0,0,'F','','','+91',9898627739,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 12:29:16','','0000-00-00 00:00:00'),(0,3327,'',0,'','POONAMBEN H CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-11-29','Y','37Y',0,0,0,'F','','','+91',8140300200,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 12:30:20','','0000-00-00 00:00:00'),(0,3328,'',0,'','HARSADBHAI KAMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-11-29','Y','40Y',0,0,0,'M','','','+91',9909796306,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 12:33:23','reception','2025-12-16 12:51:06'),(0,3329,'',0,'','AARTIBEN MARU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-11-29','Y','44Y',44,0,0,'F','','','+91',9228061190,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-29 12:34:16','reception','2025-12-01 17:26:39'),(0,3330,'',0,'','AJITKUMAR  SHRIVASTAV','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1977-11-29','Y','48Y',48,0,0,'M','','','+91',9925411990,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 12:38:26','reception','2025-12-03 12:15:12'),(0,3331,'',0,'','SAHDEVSINH ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-11-29','Y','63Y',0,0,0,'M','','','+91',9033008900,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-29 12:45:47','drashti','2025-12-10 10:45:41'),(0,3332,'',0,'','HARSHIDABEN D KHUNT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-11-29','Y','51Y',0,0,0,'F','','','+91',9824280179,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 12:48:47','','0000-00-00 00:00:00'),(0,3333,'',0,'','MANISHABEN GADHVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-11-29','Y','42Y',0,0,0,'F','','','+91',9898211633,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-29 12:54:05','','0000-00-00 00:00:00'),(0,3334,'',0,'','VIKRAMSINH D CHAUHAN','','','','',0,'SURENDRANAGAR','SURENDRANAGAR','GUJARAT','INDIA','1990-11-29','Y','35Y',0,0,0,'M','','','+91',7990600027,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-11-29 13:14:41','','0000-00-00 00:00:00'),(0,3335,'',0,'','RANJANBEN BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-11-29','Y','72Y',0,0,0,'F','','','+91',9879349424,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-11-29 13:16:45','','0000-00-00 00:00:00'),(0,3336,'',0,'','SAHDEVSINH TAPUBHA ZALA','','','SHASTRINAGAR, ','NANA MAVA GAM, NANA MAVA ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-06-01','N','62Y',0,0,0,'M','','','+91',9033008900,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-29 13:36:49','','0000-00-00 00:00:00'),(0,3337,'',0,'','HEMRAJ KUMAWAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-12-05','Y','22Y',22,0,0,'M','','','+91',8619790606,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-29 17:55:46','drashti','2025-12-18 17:38:10'),(0,3338,'',0,'','HARSHABEN KAKASANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-11-29','Y','47Y',0,0,0,'F','','','+91',9428467035,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-29 18:09:14','','0000-00-00 00:00:00'),(0,3339,'',0,'','MOHINIBA ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-11-29','Y','71Y',0,0,0,'F','','','+91',9879204329,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-29 18:14:01','','0000-00-00 00:00:00'),(0,3340,'',0,'','FARHIMBEN NANANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-11-29','Y','30Y',0,0,0,'F','','','+91',8401084588,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-11-29 18:39:39','','0000-00-00 00:00:00'),(0,3341,'',0,'','VINISHABEN C KULAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-11-29','Y','35Y',0,0,0,'F','','','+91',9429043119,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-29 18:50:59','janvi','2025-12-10 11:01:34'),(0,3342,'',0,'','DHARAMSINH VISHWAKARMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-11-29','Y','61Y',0,0,0,'M','','','+91',8980216035,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-11-29 19:27:00','priyanshi','2025-12-19 18:33:14'),(0,3343,'',0,'','NAIMISHBHAI KISHORBHAI CHAUHAN','','','SIDDHI VINAYAK PARK, B/H, AYODHYA RESEDENCY,','MADHAPAR, ',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-08-03','N','46Y',0,0,0,'M','','','+91',9904031270,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-29 21:12:18','reception','2025-12-10 12:07:39'),(0,3344,'',0,'','MANJUBEN JAIN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-11-30','Y','64Y',0,0,0,'F','','','+91',9624390902,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-30 09:27:08','','0000-00-00 00:00:00'),(0,3345,'',0,'','LEKH BAHADUR ','','','SUNDARAM COMPLEX NEAR BAPA SITARAM CHOWK','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-07-01','N','43Y',0,0,0,'M','','','+91',8076106942,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-30 11:04:41','drashti','2025-12-18 18:06:22'),(0,3346,'',0,'','DHAVAL PRANLAL MEHTA','','','11 SAURASHTRA KALA KENDRA, B/H MODI SCHOOL,','150FT RING ROAD, ',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-03-24','N','41Y',0,0,0,'M','','','+91',8460503614,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-30 11:13:40','janvi','2025-12-04 19:20:53'),(0,3347,'',0,'','DOLUBHA B REVAR','','','ASHOPALAV PARK, NEAR MAVDI FIRE BRIGADE','ST NO-4',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-01-15','N','69Y',0,0,0,'M','','','+91',9081247978,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-30 11:45:27','priyanshi','2025-12-22 10:16:58'),(0,3348,'',0,'','VIJUBEN P DANGAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-11-30','Y','50Y',0,0,0,'F','','','+91',9512307302,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-11-30 12:03:42','','0000-00-00 00:00:00'),(0,3349,'',0,'','CHAVDA JYOTIBEN PANKAJBHAI','','','12/14 CORNER, OPP ASHTHA RESIDENCY, ','MAVDI ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-01-01','N','31Y',0,0,0,'F','','','+91',9328569527,'+91',9426758033,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-30 13:46:17','janvi','2025-12-22 12:13:44'),(0,3350,'',0,'','KAILASHBA J ZALA','','','VAGHASIYA, ','WAKANER',0,'MORBI','MORBI','GUJARAT','INDIA','1967-01-01','N','58Y',0,0,0,'F','','','+91',9824646801,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-11-30 17:46:28','drashti','2025-12-22 10:45:16'),(0,3351,'',0,'','PRAVINABEN RAJESHBHAI MALANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-01','Y','40Y',40,0,0,'F','','','+91',9898253368,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 08:40:03','priyanshi','2025-12-20 11:46:56'),(0,3352,'',0,'','VANDANABA ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-12-01','Y','37Y',0,0,0,'F','','','+91',7600167555,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 09:09:16','priyanshi','2025-12-14 09:25:18'),(0,3353,'',0,'','ANKUSH KUMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-12-01','Y','18Y',18,0,0,'M','','','+91',7572857852,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 09:12:13','manshi','2025-12-23 11:57:39'),(0,3354,'',0,'','SHIVANIBEN MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-12-01','Y','24Y',0,0,0,'F','','','+91',9316757402,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 09:25:07','','0000-00-00 00:00:00'),(0,3355,'',0,'','HINABEN UMARVANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-12-01','Y','62Y',0,0,0,'F','','','+91',9879011953,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 09:28:43','janvi','2025-12-01 17:52:34'),(0,3356,'',0,'','MERUBHAI HADIYAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-12-01','Y','61Y',0,0,0,'M','','','+91',9824992726,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-01 09:48:13','','0000-00-00 00:00:00'),(0,3357,'',0,'',' SEHNAZ S SIRMAN','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1986-12-01','Y','39Y',0,0,0,'F','','','+91',9825547515,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 10:00:03','','0000-00-00 00:00:00'),(0,3358,'',0,'','HARESHBHAI N AMBASANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-01','Y','50Y',0,0,0,'F','','','+91',9824906821,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 10:02:52','','0000-00-00 00:00:00'),(0,3359,'',0,'','MEGHNATHI YOGESHGIRI                                                                                         ','','','','',0,'SOMNATH','SOMNATH','GUJARAT','INDIA','1970-12-01','Y','55Y',0,0,0,'M','','','+91',8238057534,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-01 10:03:10','','0000-00-00 00:00:00'),(0,3360,'',0,'','CHHAGANBHAI S HIRANI','','','','',0,'MANVADAR','MANVADAR','GUJARAT','INDIA','1942-12-01','Y','83Y',0,0,0,'M','','','+91',9898182904,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 10:15:12','','0000-00-00 00:00:00'),(0,3361,'',0,'','SHANTIDAS JIVANRAM DUDHREJIYA','','','VIBHU AIRPORT ROAD ARADHNA SOC','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-11-19','N','67Y',0,0,0,'M','','','+91',9427456448,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-01 10:17:31','riya','2025-12-01 10:24:14'),(0,3362,'',0,'','VASRAMBHAI MOHANBHAI FULTARIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1945-12-01','Y','80Y',0,0,0,'M','','','+91',9427551295,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 10:21:26','','0000-00-00 00:00:00'),(0,3363,'',0,'','ISHMAILBHAI D SHEIKH','','','','',0,'VICHHIYA','VICHHIYA','GUJARAT','INDIA','1957-12-01','Y','68Y',0,0,0,'M','','','+91',9428347386,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 10:33:09','reception','2025-12-18 10:08:09'),(0,3364,'',0,'','SAMIRBHAI JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-12-01','Y','42Y',0,0,0,'M','','','+91',9825631806,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 10:37:48','reception','2025-12-05 17:16:15'),(0,3365,'',0,'','SAHILBHAI THUMMAR','','','','',0,'TRAMBA RAJKOT','TRAMBA RAJKOT','GUJARAT','INDIA','2002-12-01','Y','23Y',0,0,0,'M','','','+91',9081668387,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 10:41:27','','0000-00-00 00:00:00'),(0,3366,'',0,'','MITALBEN N KATARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-12-01','Y','43Y',43,0,0,'F','','','+91',9054994924,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 10:45:49','reception','2025-12-01 17:55:39'),(0,3367,'',0,'','DHARMENDRABHAI M DHAKAN','','','','',0,'SAVARKUNDLA','SAVARKUNDLA','GUJARAT','INDIA','1971-12-01','Y','54Y',0,0,0,'M','','','+91',9426128938,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 10:46:46','reception','2025-12-09 19:11:08'),(0,3368,'',0,'','KHAKHKHAR JAYSUKHBHAI GOVINDJIBHAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-12-01','Y','74Y',0,0,0,'M','','','+91',8140068300,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 11:00:59','','0000-00-00 00:00:00'),(0,3369,'',0,'','HASHMUKHBHAI FEFAR ','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1969-12-01','Y','56Y',0,0,0,'M','','','+91',9879910672,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-01 11:03:31','reception','2025-12-12 10:47:23'),(0,3370,'',0,'','LILAVATIBEN NASIT','','','','',0,'TRAMBA RAJKOT','TRAMBA RAJKOT','GUJARAT','INDIA','1953-12-01','Y','72Y',0,0,0,'F','','','+91',9726714044,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 11:03:37','','0000-00-00 00:00:00'),(0,3371,'',0,'','SAJANBHAI A AMAR','','','','',0,'DANGARVAD','DANGARVAD','GUJARAT','INDIA','1970-12-01','Y','55Y',0,0,0,'M','','','+91',9909989063,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 11:04:13','','0000-00-00 00:00:00'),(0,3372,'',0,'','ARJANBHAI NASHIT','','','','',0,'TRAMBA RAJKOT','TRAMBA RAJKOT','GUJARAT','INDIA','1952-12-01','Y','73Y',0,0,0,'M','','','+91',9726714044,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 11:04:56','','0000-00-00 00:00:00'),(0,3373,'',0,'','GHANSHYAMSINH P GOHIL','','','','',0,'BHAVNAGAR','BHAVNAGAR','GUJARAT','INDIA','1988-12-01','Y','37Y',0,0,0,'M','','','+91',8000804787,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-01 11:07:05','','0000-00-00 00:00:00'),(0,3374,'',0,'','NAYNABEN GANDHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-12-01','Y','71Y',0,0,0,'F','','','+91',9824097982,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-01 11:11:12','','0000-00-00 00:00:00'),(0,3375,'',0,'','AKASHBHAI MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-12-01','Y','33Y',33,0,0,'M','','','+91',6353267033,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 11:11:27','drashti','2025-12-01 11:16:29'),(0,3376,'',0,'','ARUNBHAI RANPURA','','','','',0,'DHANGDHRA','DHANGDHRA','GUJARAT','INDIA','1962-12-01','Y','63Y',0,0,0,'M','','','+91',9825479009,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 11:19:35','','0000-00-00 00:00:00'),(0,3377,'',0,'','RASHMIBEN N GADHVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-01','Y','50Y',0,0,0,'F','','','+91',7984186536,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 11:43:02','','0000-00-00 00:00:00'),(0,3378,'',0,'','HIRAPARA RAMESHBHAI VITHALBHAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-12-01','Y','34Y',0,0,0,'M','','','+91',7567655777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-01 11:43:48','','0000-00-00 00:00:00'),(0,3379,'',0,'','SARLABEN  V BALDHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-01','Y','45Y',0,0,0,'F','','','+91',7069111791,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 11:44:19','','0000-00-00 00:00:00'),(0,3380,'',0,'','ILABEN DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-01','Y','70Y',0,0,0,'F','','','+91',8160950913,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 11:45:16','','0000-00-00 00:00:00'),(0,3381,'',0,'','GULABSINH M JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-01','Y','55Y',0,0,0,'M','','','+91',9825381286,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 11:46:58','janvi','2025-12-06 12:25:38'),(0,3382,'',0,'','AHEMADRAZA SHEIKH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-12-01','Y','24Y',0,0,0,'M','','','+91',7862929587,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-01 11:53:25','','0000-00-00 00:00:00'),(0,3383,'',0,'','URMILABEN MOHANBHAI VAGHELA','','','4-NEAW CLG WADI NEAR GIRIRAJ HOSPITAL ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-08-05','N','69Y',0,0,0,'F','','','+91',9558528139,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-01 12:06:01','','0000-00-00 00:00:00'),(0,3384,'',0,'','KOKILABEN A PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-12-01','Y','47Y',0,0,0,'F','','','+91',9712818455,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-01 12:13:21','','0000-00-00 00:00:00'),(0,3385,'',0,'','BHAGVATIBEN B NADIYAPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-01','Y','50Y',0,0,0,'F','','','+91',8140729295,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 12:13:24','','0000-00-00 00:00:00'),(0,3386,'',0,'','NAEEMBHAI MAKRANI','','','','',0,'BARODA','BARODA','GUJARAT','INDIA','1995-12-01','Y','30Y',0,0,0,'M','','','+91',8000206063,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 12:14:26','','0000-00-00 00:00:00'),(0,3387,'',0,'','KAMLESHBHAI B DAVDA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1966-12-01','Y','59Y',0,0,0,'M','','','+91',9426366587,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 12:25:59','','0000-00-00 00:00:00'),(0,3388,'',0,'','HIRKUBEN R KHACHAR','','','','',0,'','','GUJARAT','INDIA','1955-12-01','Y','70Y',0,0,0,'M','','','+91',9904119022,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 12:27:39','reception','2025-12-12 09:47:39'),(0,3389,'',0,'','HARSHILBHAI MEHTA','','','','',0,'BHAVNAGAR','BHAVNAGAR','GUJARAT','INDIA','1995-12-01','Y','30Y',0,0,0,'M','','','+91',7624011247,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-01 12:35:45','','0000-00-00 00:00:00'),(0,3390,'',0,'','VARSABEN MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-12-01','Y','61Y',0,0,0,'F','','','+91',9825756005,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-01 12:37:49','reception','2025-12-06 12:00:48'),(0,3391,'',0,'','ILABEN DOSHI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1955-12-01','Y','70Y',70,0,0,'M','','','+91',8160950913,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 12:44:44','reception','2025-12-22 09:44:01'),(0,3392,'',0,'','KALYANIBEN P RAJPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-12-01','Y','54Y',0,0,0,'F','','','+91',9879643346,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 12:49:01','priyanshi','2025-12-15 11:46:07'),(0,3393,'',0,'','HARSHADBHAI PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-12-01','Y','73Y',73,0,0,'M','','','+91',7016794300,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 12:49:58','janvi','2025-12-01 12:50:27'),(0,3394,'',0,'','PARASBHAI V LOKHIL','','','SADHUVASWANI ROAD, OPP GOLDEN SUPER MARKET','ANJANI PARK-3',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-12-01','Y','32Y',0,0,0,'M','','','+91',9724379377,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 12:53:36','drashti','2025-12-23 12:34:39'),(0,3395,'',0,'','BABUBHAI BORISAGAR','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1951-12-01','Y','74Y',0,0,0,'M','','','+91',8160606603,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 12:55:50','reception','2025-12-11 11:33:11'),(0,3396,'',0,'','JALABHAI  K RATADIYA','','','','',0,'KOTADA SANGANI','KOTADA SANGANI','GUJARAT','INDIA','1954-12-01','Y','71Y',0,0,0,'M','','','+91',9909974839,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 13:00:16','','0000-00-00 00:00:00'),(0,3397,'',0,'',' KISHANBHAI PALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-12-01','Y','32Y',0,0,0,'M','','','+91',9712911011,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 13:02:48','reception','2025-12-10 11:09:23'),(0,3398,'',0,'','SHARDABEN K RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-01','Y','65Y',0,0,0,'F','','','+91',9924912200,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-01 13:30:30','','0000-00-00 00:00:00'),(0,3399,'',0,'','KRISHIV V SAGAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2022-12-01','Y','03Y0M',3,0,0,'M','','','+91',8238737891,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 13:53:41','drashti','2025-12-21 11:25:46'),(0,3400,'',0,'','HARSHADRAI GUNVANTRAI PANDYA','','','MUKTESWAR SANTINIKETAN SOC,STREET NO-4','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-12-05','N','73Y',0,0,0,'M','','','+91',7016794300,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-01 14:06:40','riya','2025-12-11 13:18:24'),(0,3401,'',0,'','DISHA BHIKHABHAI  ZANKAT','','','KHERADI,GIR SOMNATH','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1998-06-01','N','27Y',0,0,0,'F','','','+91',9913405252,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-01 14:24:31','janvi','2025-12-08 10:06:10'),(0,3402,'',0,'','NARSHIBHAI V RAVALDEV','','','','',0,'KANKAVATI','KANKAVATI','GUJARAT','INDIA','1965-12-01','Y','60Y',0,0,0,'M','','','+91',9574159437,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 14:32:42','','0000-00-00 00:00:00'),(0,3403,'',0,'','NAIMALI MAKRANI','','','DUDHSAGAR ROAD SIDDIQUI MASJID STREET NEAR MADHAR ','TERESA ASHRAM',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-01-12','N','32Y',0,0,0,'M','','','+91',9825105092,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-01 14:48:55','','0000-00-00 00:00:00'),(0,3404,'',0,'','JASHUMATIBEN VITHLANI','','','B/H ALAP GREEN CITY SOPAN HEIGHTS W-A 1102','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-12-01','Y','68Y',0,0,0,'F','','','+91',9624655150,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-01 15:17:16','','0000-00-00 00:00:00'),(0,3405,'',0,'','MINAXIBEN IYER','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-12-01','Y','72Y',72,0,0,'F','','','+91',8690335169,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-01 17:18:31','reception','2025-12-01 19:21:48'),(0,3406,'',0,'','MAHEKBEN GHATODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-12-01','Y','17Y',0,0,0,'F','','','+91',9724889957,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-01 17:20:13','','0000-00-00 00:00:00'),(0,3407,'',0,'','PRANSHU VAGHASHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2009-12-01','Y','16Y',16,0,0,'M','','','+91',9328581717,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-01 17:29:50','drashti','2025-12-22 18:24:05'),(0,3408,'',0,'','MANJIBHAI G SANTOKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-12-01','Y','75Y',0,0,0,'M','','','+91',9978763514,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 17:31:46','','0000-00-00 00:00:00'),(0,3409,'',0,'','REKHABEN N BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-12-01','Y','48Y',0,0,0,'F','','','+91',9099293976,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 17:34:16','reception','2025-12-11 17:29:16'),(0,3410,'',0,'','SIRINBEN R KHIRANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-12-01','Y','59Y',0,0,0,'F','','','+91',9925809200,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 17:35:13','','0000-00-00 00:00:00'),(0,3411,'',0,'','URVASHIBEN V SOL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-01','Y','30Y',0,0,0,'F','','','+91',8160036450,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 17:46:06','janvi','2025-12-22 18:46:06'),(0,3412,'',0,'','PARULBEN KETANBHAI VAGHASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-12-01','Y','44Y',0,0,0,'F','','','+91',8758751398,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 17:49:20','','0000-00-00 00:00:00'),(0,3413,'',0,'','NARENDRASINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-12-01','Y','79Y',0,0,0,'M','','','+91',9879776777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-01 17:51:41','','0000-00-00 00:00:00'),(0,3414,'',0,'','VINODBHAI LODHIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-12-01','Y','75Y',0,0,0,'M','','','+91',8401602357,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-01 17:58:41','','0000-00-00 00:00:00'),(0,3415,'',0,'','MALABEN LODHIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-12-01','Y','67Y',0,0,0,'F','','','+91',8401602357,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-01 17:59:04','','0000-00-00 00:00:00'),(0,3416,'',0,'','HARSHADBHAI POPAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-12-01','Y','53Y',0,0,0,'M','','','+91',9427306555,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 18:02:28','drashti','2025-12-09 17:59:27'),(0,3417,'',0,'','AMRUTBEN PUROHIT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-12-01','Y','69Y',0,0,0,'F','','','+91',9033766220,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 18:03:44','','0000-00-00 00:00:00'),(0,3418,'',0,'','SEEMABEN MANKAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-12-01','Y','53Y',0,0,0,'F','','','+91',9313026511,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-01 18:10:28','','0000-00-00 00:00:00'),(0,3419,'',0,'','SHOBHNABEN KANSAGRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-12-01','Y','42Y',0,0,0,'F','','','+91',9265692375,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 18:11:11','reception','2025-12-17 16:24:36'),(0,3420,'',0,'','MUKTABEN J BHARADVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-01','Y','60Y',0,0,0,'F','','','+91',9638619829,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 18:12:58','janvi','2025-12-18 11:47:29'),(0,3421,'',0,'','VISHALBHAI VARASADA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-12-01','Y','27Y',0,0,0,'M','','','+91',8160833096,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-01 18:15:21','drashti','2025-12-08 19:05:59'),(0,3422,'',0,'','SONALBEN N DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-12-01','Y','58Y',0,0,0,'F','','','+91',9898499979,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 18:16:11','','0000-00-00 00:00:00'),(0,3423,'',0,'','JAGRUTIBEN J CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-01','Y','40Y',0,0,0,'F','','','+91',9328126099,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 18:18:11','','0000-00-00 00:00:00'),(0,3424,'',0,'','PURVIBEN VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-12-01','Y','41Y',0,0,0,'F','','','+91',7600903011,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-01 18:29:42','shweta','2025-12-16 18:09:28'),(0,3425,'',0,'','RAJIBEN DHOLAKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-01','Y','52Y',52,0,0,'F','','','+91',9081964281,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 18:30:21','janvi','2025-12-01 18:31:10'),(0,3426,'',0,'','MURTUZABHAI PISAVADI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-12-01','Y','41Y',0,0,0,'M','','','+91',9879148644,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 18:32:57','','0000-00-00 00:00:00'),(0,3427,'',0,'','GANGABEN M NAKUM','','','RAJ PARK, ST NO-1','NEAR JILLA SEVA SADAN ',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1949-12-01','Y','76Y',0,0,0,'F','','','+91',9879896996,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-01 18:34:27','','0000-00-00 00:00:00'),(0,3428,'',0,'','PUSHPABEN KALAVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-01','Y','52Y',0,0,0,'F','','','+91',9978474200,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-01 18:35:56','','0000-00-00 00:00:00'),(0,3429,'',0,'','VIRENDRABA N JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-01','Y','70Y',0,0,0,'F','','','+91',9879776777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 18:46:27','','0000-00-00 00:00:00'),(0,3430,'',0,'','SHRADDHA BABARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-12-01','Y','31Y',0,0,0,'F','','','+91',9316758876,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-01 18:49:14','','0000-00-00 00:00:00'),(0,3431,'',0,'','NISHABEN D GOHEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-01','Y','45Y',0,0,0,'F','','','+91',8140997645,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-01 18:51:38','','0000-00-00 00:00:00'),(0,3432,'',0,'','AARCHI GUMBER','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-01','Y','25Y',0,0,0,'F','','','+91',9079352454,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 19:08:56','','0000-00-00 00:00:00'),(0,3433,'',0,'','VRAJESHBHAI MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2009-12-01','Y','16Y',0,0,0,'M','','','+91',8160638519,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-01 19:15:31','','0000-00-00 00:00:00'),(0,3434,'',0,'','NIKHILBHAI B RAVESHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-12-01','Y','26Y',0,0,0,'M','','','+91',9898393093,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-01 19:17:10','','0000-00-00 00:00:00'),(0,3435,'',0,'','DIVYESHBHAI SONDARVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-01','Y','46Y',0,0,0,'M','','','+91',9429550637,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-01 19:37:45','','0000-00-00 00:00:00'),(0,3436,'',0,'','CHOTHIBEN KESHUR','','','','',0,'','','GUJARAT','INDIA','1965-12-02','Y','60Y',0,0,0,'F','','','+91',9925151964,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 09:06:00','reception','2025-12-12 09:49:19'),(0,3437,'',0,'','RAQUEL SARAIVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-12-02','Y','22Y',22,0,0,'F','','','+91',9909830513,'+91',0,'',1,0,'ENG','','N',0,'','','','','','0000-00-00','reception','2025-12-02 09:20:36','reception','2025-12-02 17:11:56'),(0,3438,'',0,'','URVASHI','','','NAVAGAM, ANANDPAR','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-09-05','N','29Y',0,0,0,'F','','','+91',8160036450,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-02 09:39:14','riya','2025-12-03 10:29:41'),(0,3439,'',0,'','KANTABEN P CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-02','Y','60Y',60,0,0,'F','','','+91',9978326474,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-02 09:58:28','reception','2025-12-02 10:40:56'),(0,3440,'',0,'','SHARDABEN K RATHOD','','B-9','OPP SWAMINARAYAN URUKUL COSTOM COLONY GONDAL ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-12-02','Y','64Y',0,0,0,'F','','','+91',9924912200,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-02 10:00:10','shweta','2025-12-10 19:31:53'),(0,3441,'',0,'','MOHANBHAI M KARANGIYA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1977-12-02','Y','48Y',0,0,0,'F','','','+91',9428776830,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 10:04:28','','0000-00-00 00:00:00'),(0,3442,'',0,'','MEETBHAI PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-02','Y','25Y',0,0,0,'M','','','+91',8490049542,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 10:06:20','reception','2025-12-11 17:19:11'),(0,3443,'',0,'','DHARMENDRABHAI N PATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-12-02','Y','48Y',0,0,0,'M','','','+91',9714161412,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-02 10:15:15','','0000-00-00 00:00:00'),(0,3444,'',0,'','NAIMISHBHAI KISHORBHAI CHAUHAN','','','SIDHHI VINAYAK PARK,B/H AYODHYA RESIDENCY MADHAPAR','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-02','Y','46Y',0,0,0,'M','','','+91',9904031270,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-02 10:22:43','','0000-00-00 00:00:00'),(0,3445,'',0,'','NARAD DAME','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-12-02','Y','47Y',0,0,0,'M','','','+91',9825465673,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 10:23:39','','0000-00-00 00:00:00'),(0,3446,'',0,'','BHANUBEN J KACHHADIYA','','','','',0,'NAVAGAM','NAVAGAM','GUJARAT','INDIA','1973-12-02','Y','52Y',0,0,0,'F','','','+91',9712210614,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 10:31:11','reception','2025-12-17 10:13:28'),(0,3447,'',0,'','DHARMENDRABHAI N  PATT','','','2-BHUMI 2 6 COLLEGE WADI CORNER ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-04-01','N','47Y',0,0,0,'M','','','+91',9714161412,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-02 10:33:56','janvi','2025-12-12 10:29:03'),(0,3448,'',0,'','SAMJUBEN SAKHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-12-02','Y','74Y',0,0,0,'F','','','+91',9723000142,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 10:42:04','','0000-00-00 00:00:00'),(0,3449,'',0,'','AARTIBEN MARU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-12-02','Y','44Y',0,0,0,'F','','','+91',9228061190,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-02 10:44:35','shweta','2025-12-02 17:48:33'),(0,3450,'',0,'','HIMALI WILSON CHRISTIAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-12-02','Y','27Y',27,0,0,'F','','','+91',7621099964,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-02 10:48:30','janvi','2025-12-02 10:49:29'),(0,3451,'',0,'','HIRABEN CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-02','Y','70Y',0,0,0,'F','','','+91',9998272900,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 10:50:50','','0000-00-00 00:00:00'),(0,3452,'',0,'','JASHVANTRAI B THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-02','Y','70Y',0,0,0,'M','','','+91',9426996840,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-02 10:51:16','','0000-00-00 00:00:00'),(0,3453,'',0,'','JYOSHNABEN MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-12-02','Y','75Y',0,0,0,'F','','','+91',9924037085,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 11:07:53','','0000-00-00 00:00:00'),(0,3454,'',0,'','HETALBEN TRIVEDI','','','','',0,'SAVARKUNDLA','SAVARKUNDLA','GUJARAT','INDIA','1980-12-02','Y','45Y',0,0,0,'F','','','+91',9429075525,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-02 11:13:04','','0000-00-00 00:00:00'),(0,3455,'',0,'','KIRANBEN SORIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1985-12-02','Y','40Y',0,0,0,'F','','','+91',9924503312,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 11:14:18','reception','2025-12-15 11:21:43'),(0,3456,'',0,'','BHARATSINH JADEJA','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1955-12-02','Y','70Y',0,0,0,'M','','','+91',9879149194,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 11:23:11','','0000-00-00 00:00:00'),(0,3457,'',0,'','MINABEN R  UNADKAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-12-02','Y','47Y',0,0,0,'F','','','+91',9773232185,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 11:25:45','reception','2025-12-12 11:05:31'),(0,3458,'',0,'','SUNITABEN BHAVESHBHAI BHOJVANI','','','','',0,'RAJKOT ','RAJKOT ','GUJARAT','INDIA','1989-12-02','Y','36Y',0,0,0,'F','','','+91',7434821679,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 11:27:43','','0000-00-00 00:00:00'),(0,3459,'',0,'','NIRAJBHAI KARELIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-02','Y','45Y',0,0,0,'M','','','+91',9601600265,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-02 11:31:19','','0000-00-00 00:00:00'),(0,3460,'',0,'','VIRALBHAI V NIRMAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-12-02','Y','38Y',0,0,0,'M','','','+91',9974865703,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-02 11:33:04','','0000-00-00 00:00:00'),(0,3461,'',0,'','RUKSHANABEN Y KADIVAR','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1984-12-02','Y','41Y',0,0,0,'F','','','+91',7600841945,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 11:33:36','','0000-00-00 00:00:00'),(0,3462,'',0,'','VANITABEN PADSUMIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1964-12-02','Y','61Y',0,0,0,'F','','','+91',9978877996,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-02 11:34:02','','0000-00-00 00:00:00'),(0,3463,'',0,'','DIMPALBEN P MAKADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-12-02','Y','47Y',0,0,0,'F','','','+91',7990447787,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 11:36:39','reception','2025-12-15 10:13:54'),(0,3464,'',0,'','BHANUBEN A SAKHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-12-02','Y','57Y',0,0,0,'F','','','+91',9712976195,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-02 11:39:11','','0000-00-00 00:00:00'),(0,3465,'',0,'','HIRENBHAI  SHUKLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-12-02','Y','44Y',0,0,0,'M','','','+91',7405312073,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 11:41:20','','0000-00-00 00:00:00'),(0,3466,'',0,'','GODAVRIBEN R. KAKANIYA','','','','',0,'ADMANTA','ADMANTA','GUJARAT','INDIA','1964-12-02','Y','61Y',0,0,0,'F','','','+91',9427564348,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 11:49:36','','0000-00-00 00:00:00'),(0,3467,'',0,'','MINABEN R. VAGADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-02','Y','46Y',0,0,0,'F','','','+91',9099089004,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-02 11:55:39','','0000-00-00 00:00:00'),(0,3468,'',0,'','JANAKBEN R JADAV','','','','',0,'SURENDRANAGAR','SURENDRANAGAR','GUJARAT','INDIA','1974-12-02','Y','51Y',51,0,0,'F','','','+91',9427664072,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 12:00:15','reception','2025-12-02 12:01:30'),(0,3469,'',0,'','RADHIKA GOHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-12-02','Y','33Y',0,0,0,'F','','','+91',9727005099,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-02 12:00:21','','0000-00-00 00:00:00'),(0,3470,'',0,'','BHARATBHAI R SARDHARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-02','Y','60Y',0,0,0,'M','','','+91',9427252873,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 12:04:03','','0000-00-00 00:00:00'),(0,3471,'',0,'','DEV SAGAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-12-02','Y','22Y',0,0,0,'M','','','+91',9082024014,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-02 12:06:43','','0000-00-00 00:00:00'),(0,3472,'',0,'','JALPABEN K SADHARIYA','','','','',0,'BEDI RAJKOT','BEDI RAJKOT','GUJARAT','INDIA','1990-12-02','Y','35Y',0,0,0,'F','','','+91',9723399345,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 12:13:12','reception','2025-12-12 11:37:28'),(0,3473,'',0,'','HARSH TANNI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-12-02','Y','17Y',0,0,0,'M','','','+91',8107260313,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 12:20:37','priyanshi','2025-12-19 19:20:26'),(0,3474,'',0,'','SONALBEN B CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-12-02','Y','31Y',0,0,0,'F','','','+91',9724246466,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-02 12:23:24','','0000-00-00 00:00:00'),(0,3475,'',0,'','SINDURI KV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-12-02','Y','38Y',0,0,0,'F','','','+91',9700773040,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','janvi','2025-12-02 12:32:28','','0000-00-00 00:00:00'),(0,3476,'',0,'','JATINBHAI BHAVSAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-02','Y','45Y',0,0,0,'F','','','+91',8866474008,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 12:38:20','','0000-00-00 00:00:00'),(0,3477,'',0,'','CHANDRIKABEN V DESANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-02','Y','60Y',60,0,0,'F','','','+91',9825051273,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-02 12:49:47','drashti','2025-12-15 11:04:17'),(0,3478,'',0,'','JIVUBEN M GODHANIYA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1950-12-02','Y','75Y',0,0,0,'F','','','+91',6355367066,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-02 12:51:06','','0000-00-00 00:00:00'),(0,3479,'',0,'','BHAGVANJIBHAI PORIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-02','Y','70Y',70,0,0,'M','','','+91',9925750681,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-02 13:00:06','manshi','2025-12-02 13:04:24'),(0,3480,'',0,'','RAJESHBHAI KESARIYA','','','SARITA VIHAR SOC, KALAWAD ROAD RAJKOT','',0,'','','GUJARAT','INDIA','1971-01-21','N','54Y',0,0,0,'M','','','+91',7574996427,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-02 13:43:38','vishal','2025-12-03 19:50:11'),(0,3481,'',0,'','SONALBEN KAMALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-12-02','Y','24Y',0,0,0,'F','','','+91',7069546809,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-02 13:52:14','','0000-00-00 00:00:00'),(0,3482,'',0,'','NAKSH GOPALBHAI ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2012-12-02','Y','13Y',0,0,0,'M','','','+91',9227633363,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 16:08:29','priyanshi','2025-12-13 10:36:36'),(0,3483,'',0,'','KANTABEN DEVRAJBHAI DHOLARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-12-02','Y','59Y',59,0,0,'F','','','+91',9428284957,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 16:49:58','reception','2025-12-02 16:51:12'),(0,3484,'',0,'','JENTIBHAI B ARANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-02','Y','65Y',0,0,0,'M','','','+91',9904322531,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 17:24:35','','0000-00-00 00:00:00'),(0,3485,'',0,'','SARALABEN R RUPANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-12-02','Y','78Y',0,0,0,'F','','','+91',9824897509,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-02 17:32:03','','0000-00-00 00:00:00'),(0,3486,'',0,'','CHANDRIKA I UPADHYAY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-12-02','Y','71Y',0,0,0,'F','','','+91',8200719471,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-02 17:32:31','','0000-00-00 00:00:00'),(0,3487,'',0,'','JAYABEN P VARANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-02','Y','45Y',0,0,0,'F','','','+91',9879835892,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 17:41:24','','0000-00-00 00:00:00'),(0,3488,'',0,'','DAMYANTIBEN GADHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-02','Y','50Y',0,0,0,'F','','','+91',8511027128,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 17:46:43','','0000-00-00 00:00:00'),(0,3489,'',0,'','MANJULABEN MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-12-02','Y','80Y',0,0,0,'F','','','+91',7567827551,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-02 17:50:01','','0000-00-00 00:00:00'),(0,3490,'',0,'','HANSABA V ZALA','','','','',0,'THAN','THAN','GUJARAT','INDIA','1950-12-02','Y','75Y',0,0,0,'M','','','+91',9265065355,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 18:05:17','','0000-00-00 00:00:00'),(0,3491,'',0,'','PRATAPBHAI RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-02','Y','60Y',0,0,0,'M','','','+91',8128382500,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-02 18:05:47','','0000-00-00 00:00:00'),(0,3492,'',0,'','RITABEN P BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-12-02','Y','54Y',54,0,0,'F','','','+91',9428325670,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-02 18:08:13','janvi','2025-12-02 18:09:32'),(0,3493,'',0,'','KIRTANABEN T CHOPADE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-12-02','Y','17Y',0,0,0,'F','','','+91',9727785068,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-02 18:09:17','','0000-00-00 00:00:00'),(0,3494,'',0,'','JAVAHARBHAI SINGALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-12-02','Y','63Y',0,0,0,'M','','','+91',9265590617,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 18:10:14','','0000-00-00 00:00:00'),(0,3495,'',0,'','REENABEN SANJAYBHAI HAPA','','','','',0,'RATANPAR','RATANPAR','GUJARAT','INDIA','1979-12-02','Y','46Y',0,0,0,'F','','','+91',9925028102,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 18:18:42','','0000-00-00 00:00:00'),(0,3496,'',0,'','KALINDI OZA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-12-02','Y','59Y',0,0,0,'F','','','+91',9824452335,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-02 18:32:23','','0000-00-00 00:00:00'),(0,3497,'',0,'','KRISHNKUMAR H OZA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-12-02','Y','57Y',0,0,0,'M','','','+91',9824452335,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-02 18:34:10','','0000-00-00 00:00:00'),(0,3498,'',0,'','SASHIKANTBHAI V RAJYAGURU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-12-02','Y','74Y',74,0,0,'M','','','+91',9426786153,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-02 18:39:29','shweta','2025-12-02 18:51:10'),(0,3499,'',0,'','SAMITBHAI KOTHARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-12-02','Y','41Y',0,0,0,'M','','','+91',7573038092,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-02 18:50:46','','0000-00-00 00:00:00'),(0,3500,'',0,'','GHANSHYAMBHAI PARSHOTAMBHAI CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-12-02','Y','71Y',0,0,0,'M','','','+91',9033343577,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 19:06:09','','0000-00-00 00:00:00'),(0,3501,'',0,'','KISHORBHAI CHOTALIYA','','','GAYATRI NAGAR, ','HASANVADI ',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-12-02','Y','68Y',0,0,0,'M','','','+91',8460675948,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-02 19:08:25','janvi','2025-12-08 12:03:49'),(0,3502,'',0,'','TUSHARBHAI VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-12-02','Y','53Y',0,0,0,'M','','','+91',8160169277,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 19:08:43','','0000-00-00 00:00:00'),(0,3503,'',0,'','ABHAYRAJ SINGH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-12-02','Y','80Y',0,0,0,'M','','','+91',9717983010,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','shweta','2025-12-02 19:32:42','','0000-00-00 00:00:00'),(0,3504,'',0,'','SAYRABEN A CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-12-02','Y','27Y',0,0,0,'F','','','+91',7990950091,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 19:46:32','','0000-00-00 00:00:00'),(0,3505,'',0,'',' BHAVESHBHAI JAMAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-02','Y','25Y',0,0,0,'M','','','+91',9712053000,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-02 20:24:01','reception','2025-12-03 08:47:29'),(0,3506,'',0,'','AJAYBHAI M HEMNANI','','','B/H ALAP GREEN CITY, ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-02','Y','46Y',0,0,0,'M','','','+91',6351942586,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-02 20:34:56','vishal','2025-12-02 20:55:06'),(0,3507,'',0,'','JENETH TBC','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-12-03','Y','32Y',0,0,0,'F','','','+91',7085962610,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 08:43:19','','0000-00-00 00:00:00'),(0,3508,'',0,'','KANAIYABHAI D YADAV','','','','',0,'MORBI ROAD','MORBI ROAD','GUJARAT','INDIA','1985-12-03','Y','40Y',0,0,0,'M','','','+91',8530815188,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 09:11:14','','0000-00-00 00:00:00'),(0,3509,'',0,'','REKHABEN P VYAS','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1970-12-03','Y','55Y',0,0,0,'F','','','+91',9725107095,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 09:23:06','reception','2025-12-12 08:54:11'),(0,3510,'',0,'','RASILABEN B PANDYA','','','4-GOLDEN PARK,KAILASH NEAR RAVI RATNA PARK','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-10-07','N','80Y',0,0,0,'F','','','+91',9328292517,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-03 09:36:53','drashti','2025-12-13 12:30:22'),(0,3511,'',0,'','ARJANBHAI N DASLANIYA','','','','',0,'BABRA','BABRA','GUJARAT','INDIA','1969-12-03','Y','56Y',0,0,0,'M','','','+91',9925331811,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-03 09:47:52','','0000-00-00 00:00:00'),(0,3512,'',0,'','DHIRUBHAI G AAMBALIYA','','','','',0,'BABRA','BABRA','GUJARAT','INDIA','1970-12-03','Y','55Y',0,0,0,'M','','','+91',9825976985,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-03 09:50:02','','0000-00-00 00:00:00'),(0,3513,'',0,'','KUNTABEN ROJMALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-03','Y','70Y',70,0,0,'F','','','+91',9662974329,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-03 10:08:39','reception','2025-12-03 10:13:57'),(0,3514,'',0,'','RASHMIBEN J KAMDAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-12-03','Y','74Y',74,0,0,'F','','','+91',9825804428,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-03 10:14:13','reception','2025-12-12 13:16:22'),(0,3515,'',0,'','DAXABEN J RABADIYA','','','','',0,'UPLETA','UPLETA','GUJARAT','INDIA','1970-12-03','Y','55Y',0,0,0,'F','','','+91',8320963939,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 10:23:53','','0000-00-00 00:00:00'),(0,3516,'',0,'','RAMESHBHAI KANERIYA','','','','',0,'MANAVADAR','MANAVADAR','GUJARAT','INDIA','1957-12-03','Y','68Y',0,0,0,'M','','','+91',9712633913,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 10:28:51','','0000-00-00 00:00:00'),(0,3517,'',0,'','ALKABEN R NEGEVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-12-03','Y','54Y',0,0,0,'F','','','+91',7016332070,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 10:31:30','','0000-00-00 00:00:00'),(0,3518,'',0,'','LAKHMIBEN R CHAVDA','','','','',0,'DIU','DIU','GUJARAT','INDIA','1985-12-03','Y','40Y',0,0,0,'F','','','+91',9724833188,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 10:37:01','','0000-00-00 00:00:00'),(0,3519,'',0,'','KANTABEN L CHAVDA','','','','',0,'DIU','DIU','GUJARAT','INDIA','1979-12-03','Y','46Y',0,0,0,'M','','','+91',6356200975,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 10:37:13','','0000-00-00 00:00:00'),(0,3520,'',0,'','SEJAL S JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-12-03','Y','37Y',0,0,0,'F','','','+91',8980093791,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 10:39:40','reception','2025-12-05 17:17:51'),(0,3521,'',0,'','VIPULBHAI BHIMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-03','Y','40Y',0,0,0,'M','','','+91',9998964838,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 10:51:24','','0000-00-00 00:00:00'),(0,3522,'',0,'','DEEPAKBHAI SHUKLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-12-03','Y','64Y',64,0,0,'M','','','+91',9725063634,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-03 10:56:08','shweta','2025-12-16 10:38:39'),(0,3523,'',0,'','JAYDEVIBA H GOHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-03','Y','25Y',0,0,0,'F','','','+91',6353821009,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 11:01:43','','0000-00-00 00:00:00'),(0,3524,'',0,'','SURYAKANTBHAI MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-12-03','Y','75Y',0,0,0,'M','','','+91',9374128002,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-03 11:02:08','urvashi','2025-12-06 11:36:11'),(0,3525,'',0,'','KARANSINH ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-12-03','Y','77Y',0,0,0,'M','','','+91',9428209888,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 11:10:34','','0000-00-00 00:00:00'),(0,3526,'',0,'','RITABEN G  SORATHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-12-03','Y','49Y',0,0,0,'F','','','+91',8200789097,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 11:12:24','janvi','2025-12-17 18:33:44'),(0,3527,'',0,'','NEETABA SHAKTISINH  JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-03','Y','40Y',0,0,0,'F','','','+91',9904745445,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 11:15:41','','0000-00-00 00:00:00'),(0,3528,'',0,'','MASHRIBHAI A KARANGIYA','','','','',0,'KESHOD','KESHOD','GUJARAT','INDIA','1981-12-03','Y','44Y',0,0,0,'M','','','+91',9429423360,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 11:33:35','','0000-00-00 00:00:00'),(0,3529,'',0,'','YOGITABEN SONDAGAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-03','Y','52Y',0,0,0,'F','','','+91',9825880422,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 11:35:19','','0000-00-00 00:00:00'),(0,3530,'',0,'','MUKESHBHAI RACHACHH','','','','',0,'','','GUJARAT','INDIA','1962-12-03','Y','63Y',0,0,0,'M','','','+91',9825224784,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 11:36:27','reception','2025-12-22 19:05:13'),(0,3531,'',0,'','JILUBEN H BAMBHAVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-12-03','Y','35Y',35,0,0,'F','','','+91',6352788341,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 11:38:49','reception','2025-12-08 12:32:53'),(0,3532,'',0,'','PUSHPABEN K RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-03','Y','65Y',65,0,0,'F','','','+91',9427781188,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-03 11:41:34','janvi','2025-12-03 11:42:50'),(0,3533,'',0,'','SUBHASHBHAI M VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-03','Y','60Y',0,0,0,'M','','','+91',9924351717,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 11:46:36','','0000-00-00 00:00:00'),(0,3534,'',0,'','NALINBHAI VAIDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1943-12-03','Y','82Y',0,0,0,'M','','','+91',9428408351,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 11:51:52','reception','2025-12-12 10:15:41'),(0,3535,'',0,'','MUMTAZBEN G VADIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-03','Y','60Y',0,0,0,'F','','','+91',8347932327,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-03 11:59:53','','0000-00-00 00:00:00'),(0,3536,'',0,'','SHAILASHREE V ARABALLI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-12-03','Y','54Y',0,0,0,'F','','','+91',9825075460,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 12:09:44','','0000-00-00 00:00:00'),(0,3537,'',0,'','ALKARIMBHAI ANDANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-11-29','N','49Y',0,0,0,'M','','','+91',7778874586,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 12:17:41','','0000-00-00 00:00:00'),(0,3538,'',0,'','CHANDRIKABEN R JANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-03','Y','60Y',0,0,0,'F','','','+91',9825600770,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 12:22:56','','0000-00-00 00:00:00'),(0,3539,'',0,'','KOMALBEN BHIMAJIYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-12-03','Y','29Y',0,0,0,'F','','','+91',8849338070,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-03 12:27:53','','0000-00-00 00:00:00'),(0,3540,'',0,'','RAMABEN MAKWANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-03','Y','60Y',0,0,0,'F','','','+91',8511136302,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 12:41:39','','0000-00-00 00:00:00'),(0,3541,'',0,'','CHAUHAN KAMIBEN HASARATBHAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-12-03','Y','22Y',0,0,0,'F','','','+91',9638893880,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-03 12:47:05','janvi','2025-12-08 19:01:09'),(0,3542,'',0,'','KIRTIBA S JADEJA','','','','',0,'RELNAGAR','RELNAGAR','GUJARAT','INDIA','2006-12-03','Y','19Y',19,0,0,'F','','','+91',8980041115,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 13:21:43','reception','2025-12-08 11:33:19'),(0,3543,'',0,'','KESHAVLAL B RATHOD','','','SWAMINARAYAN GURUKUL GONDAL ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1939-12-03','Y','86Y',0,0,0,'M','','','+91',9898989809,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-03 15:28:01','janvi','2025-12-10 19:31:26'),(0,3544,'',0,'','KURBAN PIRBHAI SURANI','','','','',0,'','','GUJARAT','INDIA','1970-05-22','N','55Y',0,0,0,'M','','','+91',7383667688,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-03 16:13:30','riya','2025-12-03 16:18:50'),(0,3545,'',0,'','NIRAJ K JIVRAJANI','','BIOSLAB IN','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-12-03','Y','34Y',0,0,0,'M','','','+91',9426862235,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 16:19:34','','0000-00-00 00:00:00'),(0,3546,'',0,'',' NIDHI TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-12-03','Y','38Y',0,0,0,'F','','','+91',9825131379,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 16:29:09','','0000-00-00 00:00:00'),(0,3547,'',0,'','KISHORBHAI SAKHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-12-03','Y','51Y',0,0,0,'M','','','+91',7600005817,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-03 16:36:38','','0000-00-00 00:00:00'),(0,3548,'',0,'','MENABEN RATHOD','','','','',0,'AATKOT','AATKOT','GUJARAT','INDIA','1990-12-03','Y','35Y',0,0,0,'F','','','+91',7622811826,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 16:37:32','','0000-00-00 00:00:00'),(0,3549,'',0,'','AKASHBHAI CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-12-03','Y','39Y',0,0,0,'M','','','+91',9924534647,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-03 17:09:52','','0000-00-00 00:00:00'),(0,3550,'',0,'','DEVPRASADBHAI KARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-12-03','Y','66Y',0,0,0,'M','','','+91',9265228523,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-03 17:10:46','','0000-00-00 00:00:00'),(0,3551,'',0,'','CHANABHAI VADOLIYA','','','','',0,'','','GUJARAT','INDIA','1943-12-03','Y','82Y',0,0,0,'M','','','+91',9687450192,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-03 17:12:45','','0000-00-00 00:00:00'),(0,3552,'',0,'','KIRANBEN KACHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-12-03','Y','49Y',0,0,0,'F','','','+91',9824296035,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 17:19:03','','0000-00-00 00:00:00'),(0,3553,'',0,'','RUPABEN MAKADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-12-03','Y','43Y',0,0,0,'F','','','+91',9879225749,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 17:24:05','','0000-00-00 00:00:00'),(0,3554,'',0,'','KRISHNABEN RAJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-12-03','Y','26Y',0,0,0,'F','','','+91',9624047360,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-03 17:24:11','','0000-00-00 00:00:00'),(0,3555,'',0,'','SANJNABEN KANJIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-12-03','Y','24Y',0,0,0,'F','','','+91',6354829456,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 17:28:44','','0000-00-00 00:00:00'),(0,3556,'',0,'','JAYSHREEBEN RAJESHBHAI KANJIYA','','','','',0,'PADADHRI','PADADHRI','GUJARAT','INDIA','1981-12-03','Y','44Y',0,0,0,'F','','','+91',9998542874,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 17:32:33','priyanshi','2025-12-13 10:06:43'),(0,3557,'',0,'','HARSHADBHAI BHARAD','','','','',0,'AHEMDAVAD','AHEMDAVAD','GUJARAT','INDIA','1957-12-03','Y','68Y',68,0,0,'M','','','+91',7600054955,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 17:38:12','reception','2025-12-03 17:39:50'),(0,3558,'',0,'','JALPABEN MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-03','Y','50Y',0,0,0,'F','','','+91',9925157494,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-03 17:40:10','','0000-00-00 00:00:00'),(0,3559,'',0,'','SAHAMINA J SHEIKH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-12-03','Y','31Y',0,0,0,'F','','','+91',7878735001,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 17:43:18','','0000-00-00 00:00:00'),(0,3560,'',0,'','PRIYABEN DEDAKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-12-03','Y','33Y',0,0,0,'F','','','+91',9998132731,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-03 17:46:19','','0000-00-00 00:00:00'),(0,3561,'',0,'','RONAKBHAI PATEL ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-12-03','Y','24Y',0,0,0,'M','','','+91',9537917182,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 18:00:49','reception','2025-12-23 11:38:01'),(0,3562,'',0,'','VIHAN RAVESHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2013-12-03','Y','12Y',0,0,0,'M','','','+91',7600000197,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 18:03:39','','0000-00-00 00:00:00'),(0,3563,'',0,'','RANJANBEN CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-12-03','Y','67Y',0,0,0,'F','','','+91',9909998013,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 18:04:42','','0000-00-00 00:00:00'),(0,3564,'',0,'','DINESHBHAI RABARI','','','','',0,'SURENDRANAGAR','SURENDRANAGAR','GUJARAT','INDIA','1975-12-03','Y','50Y',0,0,0,'M','','','+91',9859300009,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-03 18:05:11','','0000-00-00 00:00:00'),(0,3565,'',0,'','RANJANBEN D GOSWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-12-03','Y','58Y',0,0,0,'F','','','+91',8849987578,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 18:05:27','','0000-00-00 00:00:00'),(0,3566,'',0,'','SHARDABEN RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-03','Y','70Y',0,0,0,'F','','','+91',9898776888,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 18:07:17','','0000-00-00 00:00:00'),(0,3567,'',0,'','PARTHBHAI P SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2011-12-03','Y','14Y',0,0,0,'M','','','+91',9737693666,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 18:07:39','','0000-00-00 00:00:00'),(0,3568,'',0,'','KAILASHBEN B THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-12-03','Y','68Y',0,0,0,'F','','','+91',9428791262,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 18:10:06','','0000-00-00 00:00:00'),(0,3569,'',0,'','DURLABHJIBHAI B BHALALA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1962-12-03','Y','63Y',0,0,0,'M','','','+91',9825077046,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 18:11:34','','0000-00-00 00:00:00'),(0,3570,'',0,'','JITENDRABHAI TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-03','Y','45Y',0,0,0,'M','','','+91',9428400013,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 18:12:48','','0000-00-00 00:00:00'),(0,3571,'',0,'','HARISHBHAI KANOJIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-12-03','Y','38Y',0,0,0,'M','','','+91',7405726225,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-03 18:12:59','','0000-00-00 00:00:00'),(0,3572,'',0,'','CHETNABEN TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-12-03','Y','42Y',0,0,0,'F','','','+91',9428400013,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 18:13:33','','0000-00-00 00:00:00'),(0,3573,'',0,'','NARMADABEN M GHODASARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-03','Y','70Y',0,0,0,'F','','','+91',8238305590,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-03 18:15:07','','0000-00-00 00:00:00'),(0,3574,'',0,'','LILABEN M PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-12-03','Y','47Y',0,0,0,'F','','','+91',9429270764,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-03 18:15:58','','0000-00-00 00:00:00'),(0,3575,'',0,'','KEVALBHAI  H TALSHANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-03','Y','25Y',0,0,0,'M','','','+91',9913340205,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 18:17:07','reception','2025-12-19 18:34:43'),(0,3576,'',0,'','ANSUYABEN P SATHVARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-03','Y','65Y',0,0,0,'F','','','+91',8320488489,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 18:18:39','','0000-00-00 00:00:00'),(0,3577,'',0,'','DIPAKBHAI TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-12-03','Y','43Y',0,0,0,'M','','','+91',9624434342,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 18:19:28','','0000-00-00 00:00:00'),(0,3578,'',0,'','DIPAKBHAI RAVESHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-03','Y','55Y',0,0,0,'M','','','+91',9427214186,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-03 18:24:46','','0000-00-00 00:00:00'),(0,3579,'',0,'','CHANDRIKABEN D RAVESIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-03','Y','46Y',0,0,0,'F','','','+91',9427214186,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-03 18:27:30','','0000-00-00 00:00:00'),(0,3580,'',0,'','MONABEN V LAKHANI','','','','',0,'SURENDRANAGAR','SURENDRANAGAR','GUJARAT','INDIA','1976-12-03','Y','49Y',0,0,0,'F','','','+91',9664975005,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 18:28:05','','0000-00-00 00:00:00'),(0,3581,'',0,'','PARAGBHAI VORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-12-03','Y','57Y',0,0,0,'M','','','+91',9428463084,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-03 18:29:24','','0000-00-00 00:00:00'),(0,3582,'',0,'','RASHMITABEN B DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-03','Y','60Y',0,0,0,'F','','','+91',7016257230,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 18:30:09','','0000-00-00 00:00:00'),(0,3583,'',0,'','KAKADIYA MANJULABEN VASANTBHAI','','','14 SARKARI KARMACHARI SOC, ','ST NO.14, CHANDAN PARK',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-07-25','N','62Y',0,0,0,'F','','','+91',8320836279,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-03 18:41:17','drashti','2025-12-11 11:22:55'),(0,3584,'',0,'','SANJAYBHAI DHINOJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-12-03','Y','57Y',0,0,0,'M','','','+91',8000019791,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 18:44:40','','0000-00-00 00:00:00'),(0,3585,'',0,'','MUKTABEN D DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-12-03','Y','79Y',0,0,0,'F','','','+91',9426955630,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 18:45:38','','0000-00-00 00:00:00'),(0,3586,'',0,'','PARMAR RASHILABEN ALPESHBHAI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-12-03','Y','36Y',36,0,0,'F','','','+91',9824202657,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-03 18:48:29','janvi','2025-12-22 19:15:58'),(0,3587,'',0,'','SAVITABEN PADARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-12-03','Y','73Y',0,0,0,'F','','','+91',9825078521,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 18:49:01','','0000-00-00 00:00:00'),(0,3588,'',0,'','BHAVNABEN MAKWANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-03','Y','40Y',0,0,0,'F','','','+91',9904022581,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 18:51:18','','0000-00-00 00:00:00'),(0,3589,'',0,'','BANSI SAVALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-12-03','Y','29Y',29,0,0,'F','','','+91',9925794470,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 18:53:12','reception','2025-12-03 18:53:48'),(0,3590,'',0,'','JADAVBHAI PAMBHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-12-03','Y','75Y',0,0,0,'M','','','+91',9427269495,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 18:55:54','','0000-00-00 00:00:00'),(0,3591,'',0,'','JADAVBHAI PAMBHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-12-03','Y','75Y',75,0,0,'M','','','+91',8160137348,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-03 18:58:00','reception','2025-12-04 18:13:31'),(0,3592,'',0,'','MUKTABEN D DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-12-03','Y','79Y',0,0,0,'F','','','+91',9426955630,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-03 19:00:00','','0000-00-00 00:00:00'),(0,3593,'',0,'','JENABEN KHIRANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-12-03','Y','68Y',0,0,0,'F','','','+91',9016489101,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-03 19:00:44','','0000-00-00 00:00:00'),(0,3594,'',0,'','GEETABEN LOKHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-04','Y','50Y',0,0,0,'F','','','+91',7984546709,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 08:41:36','','0000-00-00 00:00:00'),(0,3595,'',0,'','REENABEN JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-12-04','Y','47Y',47,0,0,'F','','','+91',9825550580,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 08:43:38','reception','2025-12-04 08:49:57'),(0,3596,'',0,'','SAGAR SAGATHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-12-04','Y','31Y',0,0,0,'M','','','+91',9374911194,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 08:47:27','','0000-00-00 00:00:00'),(0,3597,'',0,'','KAMLESHBHAI G JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-12-04','Y','62Y',0,0,0,'M','','','+91',9638846341,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-04 09:44:00','','0000-00-00 00:00:00'),(0,3598,'',0,'','RINA S  JOSHI','','','GANESHPARK STREET NO-1 SHIV SAKTI RAIYA ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-11-29','N','47Y',0,0,0,'F','','','+91',9825550580,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-04 10:06:46','priyanshi','2025-12-09 19:32:22'),(0,3599,'',0,'','SHILPA K CHARADVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-04','Y','52Y',0,0,0,'F','','','+91',9925377582,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-04 10:22:14','drashti','2025-12-18 18:18:18'),(0,3600,'',0,'','KUSUMBA P JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-04','Y','46Y',0,0,0,'F','','','+91',9913292635,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-04 10:46:30','','0000-00-00 00:00:00'),(0,3601,'',0,'','SANGITABEN M MAKWANA','','','KALPAVAN GONDAL ROAD NEAR KHODIYAR HOTEL','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-01-01','N','50Y',0,0,0,'F','','','+91',9913354582,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-04 10:50:53','riya','2025-12-23 11:27:25'),(0,3602,'',0,'','BHAVNABEN  RABARI','','','','',0,'DHANTESWAR','DHANTESWAR','GUJARAT','INDIA','1995-12-04','Y','30Y',0,0,0,'F','','','+91',9724418745,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 10:56:20','reception','2025-12-11 11:08:34'),(0,3603,'',0,'','INDRAVANDANBHAI DHRUV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1942-12-04','Y','83Y',0,0,0,'M','','','+91',9429048804,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 10:59:05','','0000-00-00 00:00:00'),(0,3604,'',0,'','JAFARULLAKHAN U PATHAN','','','','',0,'KODINAR','KODINAR','GUJARAT','INDIA','1965-12-04','Y','60Y',0,0,0,'M','','','+91',9228733824,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 11:01:46','','0000-00-00 00:00:00'),(0,3605,'',0,'','AMRUTA S NAIR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-12-04','Y','38Y',0,0,0,'F','','','+91',9879503883,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 11:12:10','','0000-00-00 00:00:00'),(0,3606,'',0,'','BHARTIBEN J VIRANI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1954-12-04','Y','71Y',0,0,0,'F','','','+91',9427401078,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-04 11:15:55','','0000-00-00 00:00:00'),(0,3607,'',0,'','KAMLA SINGH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-04','Y','52Y',0,0,0,'F','','','+91',9728868649,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','urvashi','2025-12-04 11:18:34','','0000-00-00 00:00:00'),(0,3608,'',0,'','VIJAYBHAI R DHARAJIYA','','','','',0,'BOTAD','BOTAD','GUJARAT','INDIA','1973-12-04','Y','52Y',0,0,0,'M','','','+91',9904153574,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 11:21:28','','0000-00-00 00:00:00'),(0,3609,'',0,'','DINESHBHAI C ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-04','Y','40Y',0,0,0,'M','','','+91',7201988911,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-04 11:26:32','','0000-00-00 00:00:00'),(0,3610,'',0,'','DAYABEN G BHANDERI','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1963-12-04','Y','62Y',0,0,0,'F','','','+91',9377009001,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-04 11:31:16','reception','2025-12-13 11:17:44'),(0,3611,'',0,'','BHAVESHBHAI BHALODI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-12-04','Y','51Y',0,0,0,'M','','','+91',9054546000,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-04 11:33:24','','0000-00-00 00:00:00'),(0,3612,'',0,'','GODAVARIBEN B CHANIYARA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1959-12-04','Y','66Y',66,0,0,'F','','','+91',9909172955,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 11:41:01','reception','2025-12-04 11:41:27'),(0,3613,'',0,'','HARESHBHAI C RADADIYA','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1990-12-04','Y','35Y',35,0,0,'M','','','+91',9313954294,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 11:46:07','reception','2025-12-04 12:34:04'),(0,3614,'',0,'','PARITABEN KAKANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-04','Y','30Y',0,0,0,'F','','','+91',9712087180,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-04 11:48:41','','0000-00-00 00:00:00'),(0,3615,'',0,'','RAMESHBHAI B SOLANKI','','','','',0,'SANALA','SANALA','GUJARAT','INDIA','1965-12-04','Y','60Y',0,0,0,'M','','','+91',9724521178,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 11:48:52','reception','2025-12-15 10:17:37'),(0,3616,'',0,'','SHILPABEN MADHAK','','','','',0,'BOTAD','BOTAD','GUJARAT','INDIA','1984-12-04','Y','41Y',0,0,0,'F','','','+91',9879905722,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 11:51:59','','0000-00-00 00:00:00'),(0,3617,'',0,'','SHRADDHABEN VADHVANA','','','','',0,'SAPAR','SAPAR','GUJARAT','INDIA','1990-12-04','Y','35Y',0,0,0,'F','','','+91',7984622162,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-04 12:05:23','drashti','2025-12-10 12:12:08'),(0,3618,'',0,'','SEETA VISHAL KAKU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-12-04','Y','44Y',0,0,0,'F','','','+91',9427209656,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-04 12:15:37','drashti','2025-12-13 11:56:46'),(0,3619,'',0,'','MEENABEN C CHHAYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-12-04','Y','51Y',0,0,0,'F','','','+91',7874147959,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 12:15:57','','0000-00-00 00:00:00'),(0,3620,'',0,'','NAYNABEN CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-12-04','Y','35Y',0,0,0,'F','','','+91',9558003189,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-04 12:19:55','','0000-00-00 00:00:00'),(0,3621,'',0,'','MANISHA GADHVI','','','RAMESHWAR PARK-2 STREET NO-5 RAIYA ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-07-15','N','43Y',0,0,0,'F','','','+91',9898211633,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-04 12:21:58','','0000-00-00 00:00:00'),(0,3622,'',0,'','RAMABEN K VADODARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-12-04','Y','58Y',0,0,0,'F','','','+91',8347270059,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-04 12:26:05','drashti','2025-12-15 12:02:45'),(0,3623,'',0,'','DEVSHIBHAI P HADGARDA','','','','',0,'RANPUR','RANPUR','GUJARAT','INDIA','1973-12-04','Y','52Y',0,0,0,'M','','','+91',9913595258,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 12:27:40','','0000-00-00 00:00:00'),(0,3624,'',0,'','MEENABEN RAMESHBHAI DAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-04','Y','50Y',0,0,0,'F','','','+91',9904400057,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 12:29:59','','0000-00-00 00:00:00'),(0,3625,'',0,'','KANISHK GUPTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-12-04','Y','24Y',0,0,0,'M','','','+91',7226823152,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-04 12:43:49','priyanshi','2025-12-13 11:32:01'),(0,3626,'',0,'','VIRAJBHAI PAUN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-12-04','Y','26Y',0,0,0,'M','','','+91',8347894034,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-04 12:46:05','','0000-00-00 00:00:00'),(0,3627,'',0,'','SURYANSHI TUVER','','','GREEN VILLE APPT,','MADHAPAR CHOWKDI',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-12-04','Y','27Y',0,0,0,'F','','','+91',9106242961,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-04 12:47:18','priyanshi','2025-12-17 11:01:22'),(0,3628,'',0,'','NARANBHAI K CHHELAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-12-04','Y','43Y',0,0,0,'M','','','+91',8238838518,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-04 13:01:38','','0000-00-00 00:00:00'),(0,3629,'',0,'','JITENDRABHAI PUROHIT','','','','',0,'SAVARKUNDLA','SAVARKUNDLA','GUJARAT','INDIA','1985-12-04','Y','40Y',0,0,0,'M','','','+91',9624204620,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 13:04:51','','0000-00-00 00:00:00'),(0,3630,'',0,'','MOHANBHAI SANGANI','','','150 FEET RING ROAD MADHAV RESIDENCY STREET NO-1','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-12-04','Y','80Y',0,0,0,'M','','','+91',8000035515,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-04 14:57:47','janvi','2025-12-18 11:56:39'),(0,3631,'',0,'','SUMITBHAI SAVSETA','','','LABH DEEP SOC, STREET NO-3 GANDHIGRAM ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-31','N','24Y',0,0,0,'M','','','+91',8469366608,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-04 15:42:49','','0000-00-00 00:00:00'),(0,3632,'',0,'','VINAYBHAI PARMAR','','','','',0,'BHUJ','BHUJ','GUJARAT','INDIA','1983-12-04','Y','42Y',42,0,0,'M','','','+91',9825216627,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 16:08:37','reception','2025-12-04 16:10:52'),(0,3633,'',0,'','KUMUNDBEN D KUMBHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-04','Y','70Y',0,0,0,'F','','','+91',9624390108,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 16:48:08','','0000-00-00 00:00:00'),(0,3634,'',0,'','JAMANBHAI PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-12-04','Y','75Y',0,0,0,'M','','','+91',8780879691,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 16:53:45','','0000-00-00 00:00:00'),(0,3635,'',0,'','HARVEY NIMESHBHAI ZALAVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2010-12-04','Y','15Y',15,0,0,'F','','','+91',9898010003,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 17:10:25','reception','2025-12-04 17:12:34'),(0,3636,'',0,'','CHHOTALAL MOHANBHAI MAKWANA','','','BOMBAY HOUSING SOC, OPP PF OFFICE, ','UNIVERSITY ROAD, ',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-06-01','N','71Y',0,0,0,'M','','','+91',9898262870,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-04 17:18:32','','0000-00-00 00:00:00'),(0,3637,'',0,'','NITABEN G SATIKUVAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-12-04','Y','61Y',0,0,0,'F','','','+91',9909231590,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 17:31:37','','0000-00-00 00:00:00'),(0,3638,'',0,'','SUSHILBHAI PADIYA','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1976-12-04','Y','49Y',49,0,0,'M','','','+91',9377727514,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 17:37:01','reception','2025-12-04 17:38:00'),(0,3639,'',0,'','CHIRAGBHAI PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-04','Y','25Y',25,0,0,'M','','','+91',7990648317,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-04 17:40:06','manshi','2025-12-04 17:43:36'),(0,3640,'',0,'','GEETABEN RAMANUJ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-04','Y','50Y',0,0,0,'F','','','+91',9824292088,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-04 17:49:23','drashti','2025-12-16 11:23:30'),(0,3641,'',0,'','BHARATBHAI S KHIMSIYA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1968-12-04','Y','57Y',0,0,0,'M','','','+91',9924186992,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 17:56:17','','0000-00-00 00:00:00'),(0,3642,'',0,'','MITALBEN M KACHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-04','Y','40Y',0,0,0,'F','','','+91',8401587200,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-04 17:59:38','','0000-00-00 00:00:00'),(0,3643,'',0,'','SHIRLEY S KULKARNI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-12-04','Y','58Y',58,0,0,'F','','','+91',9974876118,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-04 18:05:52','janvi','2025-12-04 18:13:18'),(0,3644,'',0,'','ASMITABEN VALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-12-04','Y','23Y',0,0,0,'F','','','+91',9033909351,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-04 18:16:18','','0000-00-00 00:00:00'),(0,3645,'',0,'','MOTIN  MOLLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-12-04','Y','23Y',0,0,0,'M','','','+91',7501347982,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','urvashi','2025-12-04 18:16:26','','0000-00-00 00:00:00'),(0,3646,'',0,'','RITABEN B JASANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-04','Y','60Y',0,0,0,'F','','','+91',9898207138,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-04 18:23:35','','0000-00-00 00:00:00'),(0,3647,'',0,'','RAJESHBHAI CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-12-04','Y','58Y',0,0,0,'M','','','+91',9033310830,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-04 18:35:43','','0000-00-00 00:00:00'),(0,3648,'',0,'','NIKUNJBHAI TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-12-04','Y','31Y',0,0,0,'M','','','+91',8155905860,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-04 18:45:33','','0000-00-00 00:00:00'),(0,3649,'',0,'','BHAVNABEN H DODIYA ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-12-04','Y','57Y',0,0,0,'F','','','+91',9727739880,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 18:45:41','','0000-00-00 00:00:00'),(0,3650,'',0,'','SALONI KANANI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-12-04','Y','32Y',0,0,0,'F','','','+91',7878339953,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 18:56:49','','0000-00-00 00:00:00'),(0,3651,'',0,'','NILESHBHAI KANANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-12-04','Y','31Y',0,0,0,'M','','','+91',9714484000,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 18:58:00','','0000-00-00 00:00:00'),(0,3652,'',0,'','LABHUBEN A JOBAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-04','Y','60Y',0,0,0,'F','','','+91',9824564508,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-04 19:03:23','','0000-00-00 00:00:00'),(0,3653,'',0,'','KANJIBHAI KATARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-12-05','Y','31Y',0,0,0,'M','','','+91',9664741641,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 08:39:14','','0000-00-00 00:00:00'),(0,3654,'',0,'','DHARMENDKUMAR JAIN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-12-05','Y','61Y',0,0,0,'M','','','+91',7023273942,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 08:47:15','','0000-00-00 00:00:00'),(0,3655,'',0,'','JIGNABEN J SAKARIYA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1983-12-05','Y','42Y',0,0,0,'F','','','+91',9426449904,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 09:49:47','','0000-00-00 00:00:00'),(0,3656,'',0,'','DINESHBHAI A BHALANI','','','','',0,'KESHOD','KESHOD','GUJARAT','INDIA','1977-12-05','Y','48Y',0,0,0,'M','','','+91',9924622920,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 09:57:34','','0000-00-00 00:00:00'),(0,3657,'',0,'','BHARTIBEN A JANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','0000-00-00','','',0,0,0,'F','','','+91',9879999296,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-05 10:15:46','','0000-00-00 00:00:00'),(0,3658,'',0,'','KISHORBHAI K GOHEL','','','','',0,'UNA','UNA','GUJARAT','INDIA','1975-12-05','Y','50Y',0,0,0,'M','','','+91',9427738200,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 10:16:30','','0000-00-00 00:00:00'),(0,3659,'',0,'','ILABEN H CHAROLA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1989-12-05','Y','36Y',0,0,0,'F','','','+91',9909174017,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 10:18:41','','0000-00-00 00:00:00'),(0,3660,'',0,'','SONALBEN VIJAYBHAI DAFDA','','','','',0,'NANA MOVA','NANA MOVA','GUJARAT','INDIA','1984-12-05','Y','41Y',0,0,0,'F','','','+91',7046013701,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 10:44:55','','0000-00-00 00:00:00'),(0,3661,'',0,'','INDUBEN K GAUSHWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-12-05','Y','68Y',0,0,0,'F','','','+91',9898035113,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-05 10:51:33','','0000-00-00 00:00:00'),(0,3662,'',0,'','DINESHBHAI JADAV','','','','',0,'KALAVAD','KALAVAD','GUJARAT','INDIA','1983-12-05','Y','42Y',0,0,0,'M','','','+91',9978428868,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 10:54:29','','0000-00-00 00:00:00'),(0,3663,'',0,'','SHILPABEN D SHUKLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-12-05','Y','63Y',0,0,0,'F','','','+91',9725063632,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-05 11:01:29','','0000-00-00 00:00:00'),(0,3664,'',0,'','NENCY B KAVAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-12-05','Y','22Y',0,0,0,'F','','','+91',9925178325,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-05 11:04:15','','0000-00-00 00:00:00'),(0,3665,'',0,'','PUSPABEN VARODARIYA','','','','',0,'METODA','METODA','GUJARAT','INDIA','1977-12-05','Y','48Y',0,0,0,'F','','','+91',9979949806,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 11:04:28','reception','2025-12-12 16:46:56'),(0,3666,'',0,'','BHUDARBHAI S RABARI','','','','',0,'AHEMDAVAD','AHEMDAVAD','GUJARAT','INDIA','1960-12-05','Y','65Y',0,0,0,'M','','','+91',9714050679,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 11:06:35','','0000-00-00 00:00:00'),(0,3667,'',0,'','SURPALSINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-12-05','Y','41Y',0,0,0,'M','','','+91',8849522727,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-05 11:08:14','','0000-00-00 00:00:00'),(0,3668,'',0,'','KRUSHMIBEN VACHHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-12-05','Y','28Y',0,0,0,'F','','','+91',9004975975,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-05 11:09:00','drashti','2025-12-13 10:41:19'),(0,3669,'',0,'','MADHUBEN B PANELIYA','','','','',0,'SHAPAR VERAVAL','SHAPAR VERAVAL','GUJARAT','INDIA','1959-12-05','Y','66Y',0,0,0,'F','','','+91',9662922622,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 11:09:26','reception','2025-12-16 10:17:25'),(0,3670,'',0,'','MANHARBA PADHIYAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-12-05','Y','74Y',0,0,0,'F','','','+91',8347344440,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-05 11:11:10','','0000-00-00 00:00:00'),(0,3671,'',0,'','LAXMIBEN TOLIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-12-05','Y','35Y',0,0,0,'F','','','+91',8000045459,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 11:26:45','','0000-00-00 00:00:00'),(0,3672,'',0,'','DAMYANTIBEN BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-12-05','Y','79Y',0,0,0,'F','','','+91',9427209811,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-05 11:41:29','','0000-00-00 00:00:00'),(0,3673,'',0,'','HETVI J KANZARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-12-05','Y','17Y',0,0,0,'F','','','+91',9979312392,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-05 11:43:46','','0000-00-00 00:00:00'),(0,3674,'',0,'','RASHMIBEN J KANZARIYA','','','','',0,'','','GUJARAT','INDIA','1978-12-05','Y','47Y',0,0,0,'F','','','+91',9979312392,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-05 11:44:27','','0000-00-00 00:00:00'),(0,3675,'',0,'','JAYSUKHBHAI V SUCHAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-05','Y','65Y',0,0,0,'M','','','+91',9979443210,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-05 11:44:41','','0000-00-00 00:00:00'),(0,3676,'',0,'','KHUSHI VIRENDRA DHRUV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-12-05','Y','21Y',0,0,0,'F','','','+91',9428203531,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-05 11:53:07','','0000-00-00 00:00:00'),(0,3677,'',0,'','RAJ THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-12-05','Y','31Y',0,0,0,'M','','','+91',8866234541,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 12:06:21','','0000-00-00 00:00:00'),(0,3678,'',0,'','SHRADDHABEN M CHOLERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-12-05','Y','27Y',0,0,0,'F','','','+91',9824816246,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-05 12:18:04','','0000-00-00 00:00:00'),(0,3679,'',0,'','LABHUBEN KANERIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-05','Y','60Y',0,0,0,'F','','','+91',9879188325,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 12:23:22','','0000-00-00 00:00:00'),(0,3680,'',0,'','MAYURBHAI GAJJAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-12-05','Y','42Y',0,0,0,'M','','','+91',9825305353,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-05 12:26:23','','0000-00-00 00:00:00'),(0,3681,'',0,'','SHILPA K CHARADVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-05','Y','52Y',0,0,0,'F','','','+91',9925377582,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-05 12:37:11','drashti','2025-12-13 10:58:36'),(0,3682,'',0,'','JASUBEN R GADHAVI','','','','',0,'SAILA','SAILA','GUJARAT','INDIA','1965-12-05','Y','60Y',0,0,0,'M','','','+91',9313991220,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 12:42:56','','0000-00-00 00:00:00'),(0,3683,'',0,'','KRISHNABEN RANPURA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-12-05','Y','49Y',0,0,0,'F','','','+91',9737398282,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-05 12:43:40','reception','2025-12-18 18:43:45'),(0,3684,'',0,'','HEMABEN KAKU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-12-05','Y','48Y',0,0,0,'F','','','+91',9624137638,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-05 12:46:07','','0000-00-00 00:00:00'),(0,3685,'',0,'','DEEP M RANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-05','Y','25Y',0,0,0,'M','','','+91',9429477529,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 12:50:59','','0000-00-00 00:00:00'),(0,3686,'',0,'','DR AARTI M MOTVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-05','Y','40Y',0,0,0,'F','','','+91',7622957556,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-05 13:33:57','','0000-00-00 00:00:00'),(0,3687,'',0,'','JEETBHAI UNADKAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-12-05','Y','17Y',0,0,0,'M','','','+91',9586363309,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 13:38:17','','0000-00-00 00:00:00'),(0,3688,'',0,'','ASMITABEN J SAVALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-12-05','Y','34Y',0,0,0,'F','','','+91',8511924001,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 16:30:36','reception','2025-12-15 11:02:12'),(0,3689,'',0,'','BHANUBEN M JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1943-12-05','Y','82Y',0,0,0,'F','','','+91',9904225462,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 17:03:10','','0000-00-00 00:00:00'),(0,3690,'',0,'','HIRENBHAI CHANGELA','','','','',0,'','','GUJARAT','INDIA','1985-12-05','Y','40Y',0,0,0,'M','','','+91',9979562199,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 17:28:22','','0000-00-00 00:00:00'),(0,3691,'',0,'','RAMBHUBEN VADHEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-12-05','Y','44Y',44,0,0,'F','','','+91',9638674825,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-05 17:31:49','janvi','2025-12-16 18:33:11'),(0,3692,'',0,'','PRAFULABEN R KANPARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-12-05','Y','34Y',0,0,0,'F','','','+91',9972726674,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 17:34:33','','0000-00-00 00:00:00'),(0,3693,'',0,'','SNEHABEN SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-05','Y','25Y',0,0,0,'F','','','+91',7600271207,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-05 17:39:12','','0000-00-00 00:00:00'),(0,3694,'',0,'','MANSUKHBHAI K SAPARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-12-05','Y','61Y',0,0,0,'M','','','+91',9265067694,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 17:56:16','','0000-00-00 00:00:00'),(0,3695,'',0,'','PRABHABEN U RAVAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-05','Y','65Y',0,0,0,'M','','','+91',9879165804,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 18:03:36','','0000-00-00 00:00:00'),(0,3696,'',0,'','UPASANA POTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-12-05','Y','49Y',0,0,0,'F','','','+91',9998023177,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-05 18:09:12','janvi','2025-12-12 18:49:20'),(0,3697,'',0,'','POOJABEN D PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-05','Y','45Y',0,0,0,'F','','','+91',6353233442,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 18:11:54','reception','2025-12-16 18:59:19'),(0,3698,'',0,'','PANDYA PRATAPRAI','','','ALAP GREEN CITY, BLOCK NO 334, ','RAIYA ROAD ',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-01-01','N','79Y',0,0,0,'M','','','+91',9725899998,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-05 18:12:44','vishal','2025-12-21 20:52:07'),(0,3699,'',0,'','MANIT GOSWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2020-12-05','Y','05Y0M',0,0,0,'M','','','+91',9033327079,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 18:18:06','','0000-00-00 00:00:00'),(0,3700,'',0,'','UPADHYAY JAHNVI VISHRUT','','','C-401, PALM CITY, OPP VIDHYA ','NIKETAN SCHOOL, PATIDAR CHOWK, SADHU VASWANI ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-10-12','N','31Y',0,0,0,'F','','','+91',9409080442,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-05 18:22:20','','0000-00-00 00:00:00'),(0,3701,'',0,'','MILANBHAI PANKHANIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-12-05','Y','38Y',0,0,0,'M','','','+91',9173733339,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-05 18:24:13','','0000-00-00 00:00:00'),(0,3702,'',0,'','CHHAGANBHAI S SHINGALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-12-05','Y','72Y',0,0,0,'M','','','+91',9228395183,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-05 18:26:34','','0000-00-00 00:00:00'),(0,3703,'',0,'','KUSUMBEN NAVNEETBHAI GANDHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-12-05','Y','72Y',0,0,0,'F','','','+91',9825218194,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 18:28:40','','0000-00-00 00:00:00'),(0,3704,'',0,'','RANJANBEN VADOLIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-12-05','Y','48Y',0,0,0,'F','','','+91',9737223223,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-05 18:30:18','','0000-00-00 00:00:00'),(0,3705,'',0,'','SAHILBHAI GAREDIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-05','Y','40Y',0,0,0,'M','','','+91',9825828524,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-05 18:38:37','drashti','2025-12-22 19:13:24'),(0,3706,'',0,'','BHARATBHAI K AGRAVAT','','','SANGAR HALL, BALAJI PARK,','KOTHARIYA ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-12-05','Y','58Y',0,0,0,'M','','','+91',9974477801,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-05 18:44:36','','0000-00-00 00:00:00'),(0,3707,'',0,'','HAKUBHAI N CHAUHAN','','','','',0,'','','GUJARAT','INDIA','1965-12-05','Y','60Y',0,0,0,'M','','','+91',9824286613,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 18:46:13','','0000-00-00 00:00:00'),(0,3708,'',0,'','SWATIBEN B BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-12-05','Y','34Y',34,0,0,'F','','','+91',9909522897,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 18:50:57','reception','2025-12-05 18:52:01'),(0,3709,'',0,'','CHANDRABEN A JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-05','Y','65Y',0,0,0,'F','','','+91',9925264269,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-05 18:52:49','','0000-00-00 00:00:00'),(0,3710,'',0,'','URMI CHUDASAMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-12-05','Y','19Y',0,0,0,'F','','','+91',9313399146,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-05 18:55:49','','0000-00-00 00:00:00'),(0,3711,'',0,'','PRATIKBHAI MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-12-05','Y','38Y',0,0,0,'M','','','+91',9825615299,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-05 19:04:36','','0000-00-00 00:00:00'),(0,3712,'',0,'','MANJULABEN DINESHBHAI ANADKAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1944-12-05','Y','81Y',0,0,0,'F','','','+91',9408938589,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-05 19:06:27','janvi','2025-12-09 19:15:23'),(0,3713,'',0,'','JAYSHREEBEN DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-05','Y','55Y',0,0,0,'F','','','+91',9408054721,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-05 19:13:03','reception','2025-12-17 19:09:01'),(0,3714,'',0,'','RIDDHIBEN BHOJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-12-05','Y','31Y',0,0,0,'F','','','+91',8866896960,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-05 19:21:54','','0000-00-00 00:00:00'),(0,3715,'',0,'','SHOBHNABEN S POPAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-12-05','Y','79Y',0,0,0,'F','','','+91',9409256746,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 19:22:31','','0000-00-00 00:00:00'),(0,3716,'',0,'','SHIVANSH P PANNIKAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2022-12-05','Y','03Y0M',0,0,0,'M','','','+91',8866066872,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 19:33:32','','0000-00-00 00:00:00'),(0,3717,'',0,'','SAGARBHAI GANTRA','','','','',0,'','','GUJARAT','INDIA','1990-12-05','Y','35Y',0,0,0,'M','','','+91',9033820802,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-05 19:41:05','','0000-00-00 00:00:00'),(0,3718,'',0,'','JAY RAJPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-12-05','Y','47Y',0,0,0,'M','','','+91',9825463873,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-05 20:50:41','','0000-00-00 00:00:00'),(0,3719,'',0,'','DAREDIYA SAHIL','','','VIMA NAGAR-1, ','OPP MOMAI KRUPA, RAIYA ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-05-25','N','40Y',0,0,0,'M','','','+91',9825076784,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-05 20:53:01','vishal','2025-12-16 09:35:42'),(0,3720,'',0,'','MANSUKHLAL KALYANJI VAGHELA','','','SERI NO-4, SANKAR NA MANDIR PASE,','TAKUDI PARA, JETPUR',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-03-25','N','69Y',0,0,0,'M','','','+91',9924810087,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-05 21:04:00','reception','2025-12-09 20:16:15'),(0,3721,'',0,'','SHREYAS B SUMAKIYA','','E-292','RAVIRATNA PARK,UNIVERCITY ROAD ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-03-23','N','24Y',0,0,0,'M','','','+91',9426421564,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-06 10:02:14','janvi','2025-12-22 18:15:30'),(0,3722,'',0,'','JAYBHAI A BARCHHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-12-06','Y','33Y',0,0,0,'M','','','+91',9033358214,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-06 10:02:19','reception','2025-12-16 10:13:16'),(0,3723,'',0,'','CHETANBHAI R PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-12-06','Y','47Y',47,0,0,'M','','','+91',9998707013,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-06 10:05:12','shweta','2025-12-06 10:05:34'),(0,3724,'',0,'','PRADIPBHAI H  AJUDIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-06','Y','46Y',0,0,0,'M','','','+91',9429562617,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-06 10:11:14','','0000-00-00 00:00:00'),(0,3725,'',0,'','HARSHILBHAI HIRAPRA','','','','',0,'AATKOT','AATKOT','GUJARAT','INDIA','2003-12-06','Y','22Y',0,0,0,'M','','','+91',9924287306,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-06 10:30:37','','0000-00-00 00:00:00'),(0,3726,'',0,'','DHAVALBHAI C BHUT','','','','',0,'KESHOD','KESHOD','GUJARAT','INDIA','1997-12-06','Y','28Y',0,0,0,'M','','','+91',9558600443,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-06 10:35:33','','0000-00-00 00:00:00'),(0,3727,'',0,'','BHAVNABEN NILESHBHAI MUNGRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-12-06','Y','47Y',0,0,0,'F','','','+91',9924160203,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-06 10:37:30','','0000-00-00 00:00:00'),(0,3728,'',0,'','CHANDRAKANTBHAI J BHATT','','','','',0,'KALAVAD ROAD','KALAVAD ROAD','GUJARAT','INDIA','1949-12-06','Y','76Y',0,0,0,'M','','','+91',9978190002,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-06 10:42:40','','0000-00-00 00:00:00'),(0,3729,'',0,'','SATYAJITSINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-12-06','Y','23Y',0,0,0,'M','','','+91',9426808879,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-06 10:50:02','','0000-00-00 00:00:00'),(0,3730,'',0,'','URVASHIBEN YAGNIK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-12-06','Y','33Y',0,0,0,'F','','','+91',9898733883,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-06 10:50:11','','0000-00-00 00:00:00'),(0,3731,'',0,'','KINJALBEN A VIRDA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1997-12-06','Y','28Y',28,0,0,'F','','','+91',8200149474,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-06 10:53:44','manshi','2025-12-19 11:48:56'),(0,3732,'',0,'','VIRAJ DHABALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2011-12-06','Y','14Y',0,0,0,'M','','','+91',9726395263,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-06 11:02:20','','0000-00-00 00:00:00'),(0,3733,'',0,'','RAMESHBHAI K SOLANKI','','','','',0,'TANKARA','TANKARA','GUJARAT','INDIA','1982-12-06','Y','43Y',0,0,0,'M','','','+91',9624437289,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-06 11:11:58','','0000-00-00 00:00:00'),(0,3734,'',0,'','RICHA SHARMA','','','','',0,'GANDHIDHAM','GANDHIDHAM','GUJARAT','INDIA','1985-12-06','Y','40Y',40,0,0,'F','','','+91',9601254311,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-06 11:39:07','janvi','2025-12-06 11:40:59'),(0,3735,'',0,'','VIRAJ DHABALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2011-12-06','Y','14Y',0,0,0,'M','','','+91',9726395263,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-06 11:46:25','','0000-00-00 00:00:00'),(0,3736,'',0,'','SUMITRABEN R. GOSAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-12-06','Y','54Y',0,0,0,'F','','','+91',9824564304,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-06 11:49:50','','0000-00-00 00:00:00'),(0,3737,'',0,'','REKHABEN BHAVDIPBHAI  UPADHYAY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-12-06','Y','63Y',0,0,0,'F','','','+91',7405564364,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-06 11:58:41','','0000-00-00 00:00:00'),(0,3738,'',0,'','SANJAYBHAI JOSHI','','','','',0,'KUVADVA','KUVADVA','GUJARAT','INDIA','1974-12-06','Y','51Y',0,0,0,'M','','','+91',9879480060,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-06 12:04:03','','0000-00-00 00:00:00'),(0,3739,'',0,'','SONI SINGH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-12-06','Y','36Y',0,0,0,'F','','','+91',9173451479,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-06 12:21:29','','0000-00-00 00:00:00'),(0,3740,'',0,'','HARSUKHBHAI R VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-06','Y','70Y',0,0,0,'M','','','+91',9662511110,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-06 12:23:13','drashti','2025-12-11 18:49:11'),(0,3741,'',0,'','HARSHABEN MORI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-12-06','Y','59Y',0,0,0,'F','','','+91',9426414365,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-06 12:26:07','','0000-00-00 00:00:00'),(0,3742,'',0,'','RAMESHBHAI RAJPARA','','','','',0,'MANGROL','MANGROL','GUJARAT','INDIA','1966-12-06','Y','59Y',0,0,0,'M','','','+91',9879453916,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-06 12:28:04','','0000-00-00 00:00:00'),(0,3743,'',0,'','NATHABHAI N SOLANKI','','','','',0,'MUNDRA','MUNDRA','GUJARAT','INDIA','1988-12-06','Y','37Y',0,0,0,'M','','','+91',9909978111,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-06 12:28:41','','0000-00-00 00:00:00'),(0,3744,'',0,'','HARSHABEN SHAILESH KAKKAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-12-06','Y','62Y',0,0,0,'F','','','+91',7984889202,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-06 12:32:50','','0000-00-00 00:00:00'),(0,3745,'',0,'',' TEJALBA JAYPALSINH ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-12-06','Y','42Y',0,0,0,'F','','','+91',9825079371,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-06 12:36:32','reception','2025-12-15 16:48:27'),(0,3746,'',0,'','KARTAVYA ASHWINBHAI JARER','','','','',0,'JAMANGAR','JAMANGAR','GUJARAT','INDIA','2010-12-06','Y','15Y',15,0,0,'M','','','+91',9998775748,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-06 12:44:21','urvashi','2025-12-06 13:15:54'),(0,3747,'',0,'','HEMALBHAI GADHAVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-12-06','Y','32Y',0,0,0,'M','','','+91',7041890444,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-06 12:47:17','','0000-00-00 00:00:00'),(0,3748,'',0,'','SANJAYBHAI JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-12-06','Y','51Y',0,0,0,'M','','','+91',9879480060,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-06 12:52:49','','0000-00-00 00:00:00'),(0,3749,'',0,'','DAKSHABEN LALJIBHAI GADHADRA','','','','',0,'AMRAPUR','AMRAPUR','GUJARAT','INDIA','1991-12-06','Y','34Y',0,0,0,'F','','','+91',8300812719,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-06 13:04:27','','0000-00-00 00:00:00'),(0,3750,'',0,'','NITINBHAI M GOSALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-12-06','Y','61Y',0,0,0,'M','','','+91',9374821206,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-06 13:04:37','','0000-00-00 00:00:00'),(0,3751,'',0,'','YAGNIK K MARVANIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1996-12-06','Y','29Y',0,0,0,'M','','','+91',9879655405,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-06 14:01:04','reception','2025-12-19 11:32:05'),(0,3752,'',0,'','SHILPABEN K MARVANIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1974-12-06','Y','51Y',0,0,0,'F','','','+91',9879655405,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-06 14:03:40','','0000-00-00 00:00:00'),(0,3753,'',0,'','MAHINOOR S ARENDIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2013-12-06','Y','12Y',12,0,0,'F','','','+91',9924323374,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-06 15:03:48','reception','2025-12-09 17:02:53'),(0,3754,'',0,'','RAYDHANBHAI VALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-12-06','Y','53Y',0,0,0,'M','','','+91',7096944808,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-06 16:58:12','','0000-00-00 00:00:00'),(0,3755,'',0,'','SAKTISINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-12-06','Y','24Y',0,0,0,'M','','','+91',9825212680,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-06 17:45:59','','0000-00-00 00:00:00'),(0,3756,'',0,'','SANJAYBHAI NADIYAPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-12-06','Y','48Y',0,0,0,'M','','','+91',9824295697,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-06 17:59:33','','0000-00-00 00:00:00'),(0,3757,'',0,'','KAYAN VAJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-12-06','Y','18Y',0,0,0,'M','','','+91',8758119585,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-06 18:25:37','','0000-00-00 00:00:00'),(0,3758,'',0,'','JAYBHAI SHIVANKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-12-06','Y','22Y',0,0,0,'M','','','+91',9822579739,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-06 19:05:32','','0000-00-00 00:00:00'),(0,3759,'',0,'','PRADIPBHAI SHIVANKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-12-06','Y','51Y',0,0,0,'M','','','+91',9822579739,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-06 19:06:26','','0000-00-00 00:00:00'),(0,3760,'',0,'','DAYBEN BHARADVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1943-12-06','Y','82Y',0,0,0,'F','','','+91',8530291646,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-06 19:24:36','','0000-00-00 00:00:00'),(0,3761,'',0,'','RAJALBA JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-12-06','Y','32Y',0,0,0,'F','','','+91',7069880808,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-06 19:27:56','','0000-00-00 00:00:00'),(0,3762,'',0,'','DEEPBHAI RANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-07','Y','25Y',0,0,0,'M','','','+91',9429477529,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-07 09:33:03','','0000-00-00 00:00:00'),(0,3763,'',0,'','RAJVEERSINH K ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-12-07','Y','42Y',0,0,0,'M','','','+91',9898569839,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-07 11:20:07','','0000-00-00 00:00:00'),(0,3764,'',0,'','KATARMAL SURESHBHAI DEVJIBHAI','','','23 DIGVIJAY PLOT, GARBI CHOWK,','BHARAT BAKREY STREET, ',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1957-03-28','N','68Y',0,0,0,'M','','','+91',9904172900,'+91',9925064080,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-07 16:48:26','drashti','2025-12-15 18:29:06'),(0,3765,'',0,'','NATHWANI BHARTIBEN JAYANTKUMAR','','','VANDAN VATIKA, AIRPORT ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-01-05','N','64Y',0,0,0,'F','','','+91',8866573768,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-07 23:59:52','priyanshi','2025-12-14 09:50:53'),(0,3766,'',0,'','SARFRAZ KAZI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-08','Y','25Y',0,0,0,'M','','','+91',9427109063,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-08 08:46:56','','0000-00-00 00:00:00'),(0,3767,'',0,'','BHARATBHAI PRAJAPATI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-08','Y','50Y',0,0,0,'M','','','+91',9998804139,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-08 08:49:18','shweta','2025-12-15 19:05:57'),(0,3768,'',0,'','MANSI SAGAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-12-08','Y','31Y',0,0,0,'F','','','+91',9979369995,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-08 08:50:32','','0000-00-00 00:00:00'),(0,3769,'',0,'','KISHORBHAI BODA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-12-08','Y','48Y',0,0,0,'M','','','+91',9687074022,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-08 08:52:32','','0000-00-00 00:00:00'),(0,3770,'',0,'','PRITIBEN PUJARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-12-08','Y','51Y',0,0,0,'F','','','+91',7600085529,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-08 08:55:42','','0000-00-00 00:00:00'),(0,3771,'',0,'','HITESHBHAI BADYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-08','Y','55Y',0,0,0,'M','','','+91',9377793772,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-08 08:57:38','','0000-00-00 00:00:00'),(0,3772,'',0,'','CHHELESANKAR JANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1933-12-08','Y','92Y',0,0,0,'M','','','+91',9879189034,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-08 08:59:03','','0000-00-00 00:00:00'),(0,3773,'',0,'','MOHIT BHALLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-08','Y','40Y',0,0,0,'M','','','+91',8059959595,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-08 09:00:38','','0000-00-00 00:00:00'),(0,3774,'',0,'','KRISHNA KOTECHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-12-08','Y','49Y',0,0,0,'F','','','+91',8600036200,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-08 09:03:35','','0000-00-00 00:00:00'),(0,3775,'',0,'','GAFARBHAI KASAMBHAI KARUD','','','','',0,'MANGROL','MANGROL','GUJARAT','INDIA','1970-12-08','Y','55Y',55,0,0,'M','','','+91',9276505496,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 09:26:19','reception','2025-12-08 10:38:10'),(0,3776,'',0,'','BALKRISHNABHAI R SATANI','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1976-12-08','Y','49Y',0,0,0,'M','','','+91',9978944419,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-08 09:26:51','','0000-00-00 00:00:00'),(0,3777,'',0,'','JAYBHAI GADHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-12-08','Y','28Y',0,0,0,'M','','','+91',7043760584,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-08 09:31:08','manshi','2025-12-19 12:28:57'),(0,3778,'',0,'','PRADEEPBHAI HASMUKHBHAI MEHTA','','B-26','NIVEDITA NAGAR HOUSING SOC B/H SHIVALAY PARK','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-10-13','N','48Y',0,0,0,'M','','','+91',9825107074,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-08 09:34:50','priyanshi','2025-12-15 10:43:18'),(0,3779,'',0,'','JITENDRABHAI K KAVATHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-12-08','Y','48Y',0,0,0,'M','','','+91',9662727627,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 09:41:57','','0000-00-00 00:00:00'),(0,3780,'',0,'','RAMESHBHAI PANDYA','','','SHILPAN ONIX B2-102 GANGOTRI PARK MAIN ROAD ','',360005,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-12-08','Y','78Y',0,0,0,'M','','','+91',9725495553,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-08 09:47:50','janvi','2025-12-16 17:54:23'),(0,3781,'',0,'','GOVINDBHAI G LUNAGARIYA','','','','',0,'JILARIYA','JILARIYA','GUJARAT','INDIA','1953-12-08','Y','72Y',0,0,0,'M','','','+91',9106797668,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 09:48:12','','0000-00-00 00:00:00'),(0,3782,'',0,'','HARIBHAI MENDPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-08','Y','60Y',0,0,0,'M','','','+91',9328810469,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 09:51:16','','0000-00-00 00:00:00'),(0,3783,'',0,'',' ABHALBHAI NARANBHAI DANGAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-08','Y','45Y',0,0,0,'M','','','+91',9924758994,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 10:06:36','','0000-00-00 00:00:00'),(0,3784,'',0,'','ANSUYABEN D BAVADIYA','','','','',0,'VERADA','VERADA','GUJARAT','INDIA','2003-12-08','Y','22Y',0,0,0,'F','','','+91',6351514772,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-08 10:12:20','drashti','2025-12-18 10:49:28'),(0,3785,'',0,'','GEETABEN J SARARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-08','Y','50Y',0,0,0,'F','','','+91',9913538010,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 10:20:07','','0000-00-00 00:00:00'),(0,3786,'',0,'','SEHNAZBEN A LALANI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-08','Y','52Y',0,0,0,'F','','','+91',9879838405,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 10:21:24','','0000-00-00 00:00:00'),(0,3787,'',0,'','CHANDRIKABEN S JOSHI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1969-12-08','Y','56Y',0,0,0,'F','','','+91',8140275081,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 10:26:58','reception','2025-12-18 17:10:41'),(0,3788,'',0,'','SHRDDHABEN KHACHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-12-08','Y','19Y',0,0,0,'F','','','+91',9375808008,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 10:31:57','','0000-00-00 00:00:00'),(0,3789,'',0,'','KANJIBHAI M DHAMSANIYA','','','','',0,'FALLA','FALLA','GUJARAT','INDIA','1957-12-08','Y','68Y',68,0,0,'M','','','+91',9925752906,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-08 10:41:52','manshi','2025-12-08 10:42:45'),(0,3790,'',0,'','RAVIBHAI N KAGTHARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-12-08','Y','33Y',0,0,0,'M','','','+91',9724980808,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 10:43:19','','0000-00-00 00:00:00'),(0,3791,'',0,'','MANSUKHBHAI DUDHAGRA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1969-12-08','Y','56Y',0,0,0,'M','','','+91',9726003115,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-08 10:44:28','','0000-00-00 00:00:00'),(0,3792,'',0,'','VIJYABEN G AGHERA','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1973-12-08','Y','52Y',52,0,0,'M','','','+91',9974664146,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 10:49:13','drashti','2025-12-08 11:48:19'),(0,3793,'',0,'','MUKESHBHAI D KADEVAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-08','Y','55Y',55,0,0,'M','','','+91',9408181084,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 10:53:35','drashti','2025-12-08 10:56:06'),(0,3794,'',0,'','ASHOKBHAI BOKHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-12-08','Y','37Y',0,0,0,'M','','','+91',9978403541,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 10:55:26','','0000-00-00 00:00:00'),(0,3795,'',0,'','TULSIBEN PRAJAPATI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1937-12-08','Y','88Y',0,0,0,'F','','','+91',6352264095,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 10:59:05','','0000-00-00 00:00:00'),(0,3796,'',0,'','MULJIBHAI M DABHI ','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1968-12-08','Y','57Y',57,0,0,'M','','','+91',9723099566,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 11:05:22','reception','2025-12-18 10:10:06'),(0,3797,'',0,'','KAMLABEN S AHIR','','','','',0,'ANJAR','ANJAR','GUJARAT','INDIA','1975-12-08','Y','50Y',0,0,0,'F','','','+91',7226045198,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-08 11:08:04','','0000-00-00 00:00:00'),(0,3798,'',0,'','JYOTIBEN MANOJBHAI VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-12-08','Y','51Y',0,0,0,'F','','','+91',8200889869,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 11:10:55','janvi','2025-12-11 10:33:03'),(0,3799,'',0,'','HETA S JETHVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-12-08','Y','23Y',0,0,0,'F','','','+91',9428510164,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 11:12:20','urvashi','2025-12-16 18:26:12'),(0,3800,'',0,'','RAJBHAI PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-12-08','Y','34Y',0,0,0,'M','','','+91',9870095147,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-08 11:21:43','','0000-00-00 00:00:00'),(0,3801,'',0,'','RIYAZ SHEIKH','','','','',0,'UNA','UNA','GUJARAT','INDIA','1989-12-08','Y','36Y',0,0,0,'M','','','+91',9723978084,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 11:25:08','','0000-00-00 00:00:00'),(0,3802,'',0,'','DAXABEN KISHORBHAI PATEL','','','','',0,'SAYLA','SAYLA','GUJARAT','INDIA','1985-12-08','Y','40Y',0,0,0,'F','','','+91',7405428398,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 11:27:05','','0000-00-00 00:00:00'),(0,3803,'',0,'','MANJULABEN KATHIRIYA','','','','',0,'VASAVAD GONDAL','VASAVAD GONDAL','GUJARAT','INDIA','1970-12-08','Y','55Y',0,0,0,'F','','','+91',9913220230,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 11:27:19','','0000-00-00 00:00:00'),(0,3804,'',0,'','RITABEN KATESHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-08','Y','50Y',0,0,0,'F','','','+91',9824538158,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-08 11:30:36','shweta','2025-12-17 12:58:07'),(0,3805,'',0,'','GAVALBHAI R GALANI','','','','',0,'BATVA','BATVA','GUJARAT','INDIA','1976-12-08','Y','49Y',0,0,0,'M','','','+91',7777954749,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 11:30:38','','0000-00-00 00:00:00'),(0,3806,'',0,'','BHAVESHBHAI R CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-08','Y','60Y',0,0,0,'M','','','+91',8306166303,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 11:30:40','','0000-00-00 00:00:00'),(0,3807,'',0,'','CHHAGANBHAI A PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-12-08','Y','68Y',0,0,0,'M','','','+91',9228701228,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-08 11:31:44','priyanshi','2025-12-17 18:14:47'),(0,3808,'',0,'','RUPALBEN B CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-12-08','Y','53Y',53,0,0,'F','','','+91',9979977114,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 11:32:56','drashti','2025-12-08 11:39:53'),(0,3809,'',0,'','MOYDEBEN R SINDHAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-08','Y','55Y',0,0,0,'M','','','+91',9913901761,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 11:35:38','','0000-00-00 00:00:00'),(0,3810,'',0,'','BRIJRAJSINH M JADEJA','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1976-12-08','Y','49Y',0,0,0,'M','','','+91',9925649256,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-08 11:40:23','','0000-00-00 00:00:00'),(0,3811,'',0,'','MADHAVJIBHAI B CHAROLA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1959-12-08','Y','66Y',0,0,0,'M','','','+91',8866739212,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 11:43:51','','0000-00-00 00:00:00'),(0,3812,'',0,'','YAGNIKBHAI DALSANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-08','Y','25Y',0,0,0,'M','','','+91',9979430043,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 11:44:28','','0000-00-00 00:00:00'),(0,3813,'',0,'','MUKUNDRAI M JOSHI','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1952-12-08','Y','73Y',0,0,0,'M','','','+91',9427280140,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 11:48:35','','0000-00-00 00:00:00'),(0,3814,'',0,'','PRADIPBHAI H AKBARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-12-08','Y','34Y',0,0,0,'M','','','+91',9106096788,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-08 11:57:25','reception','2025-12-15 10:32:25'),(0,3815,'',0,'','RAMESHBHAI MOLIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-12-08','Y','59Y',0,0,0,'M','','','+91',7779091787,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 11:57:30','','0000-00-00 00:00:00'),(0,3816,'',0,'','HEMABEN VACHHANI','','','','',0,'METOTA','METOTA','GUJARAT','INDIA','1999-12-08','Y','26Y',0,0,0,'F','','','+91',7878222273,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 11:58:03','','0000-00-00 00:00:00'),(0,3817,'',0,'','KAMLABEN KASUNDRA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1957-12-08','Y','68Y',0,0,0,'F','','','+91',9409494491,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-08 11:58:23','shweta','2025-12-17 18:54:33'),(0,3818,'',0,'','VIJYABEN D DOBARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-12-08','Y','47Y',0,0,0,'F','','','+91',9909577188,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 12:04:20','','0000-00-00 00:00:00'),(0,3819,'',0,'','VARUNBHAI  MAGAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-08','Y','40Y',0,0,0,'M','','','+91',9872650033,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 12:15:55','','0000-00-00 00:00:00'),(0,3820,'',0,'','GOVINDBHAI G LUNAGARIYA','','','','',0,'JILARIYA','JILARIYA','GUJARAT','INDIA','1953-12-08','Y','72Y',0,0,0,'M','','','+91',9106797668,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 12:17:33','reception','2025-12-09 09:51:48'),(0,3821,'',0,'','JASWANTIBEN PANDIT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-12-08','Y','74Y',0,0,0,'F','','','+91',8780238759,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 12:32:58','','0000-00-00 00:00:00'),(0,3822,'',0,'','RAHUL R LAMBARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2012-12-08','Y','13Y',0,0,0,'M','','','+91',9725316841,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 12:36:26','','0000-00-00 00:00:00'),(0,3823,'',0,'','DILIPBHAI P AACHARY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-12-08','Y','75Y',0,0,0,'M','','','+91',9879242252,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 12:36:45','reception','2025-12-18 18:56:10'),(0,3824,'',0,'','RAMCHAND G PAMNANI','','','N-302, SOPAN ELIGANCE NEAR TOP LAND  RESIDENCY ','SADHUVASVANI ROAD ',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-12-01','N','76Y',0,0,0,'M','','','+91',9768141783,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-08 12:36:57','janvi','2025-12-22 11:36:28'),(0,3825,'',0,'','MAHENDRASINH L ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-08','Y','52Y',0,0,0,'M','','','+91',9925915311,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-08 12:40:25','','0000-00-00 00:00:00'),(0,3826,'',0,'','HANSABA JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-08','Y','70Y',0,0,0,'F','','','+91',9913600111,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-08 12:42:18','','0000-00-00 00:00:00'),(0,3827,'',0,'','DILIPBHAI P ACHARYA','','','K-201, ADITYA HEIGHTS GOPAL CHOWK SADHUVASVANI','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-12-08','Y','75Y',0,0,0,'M','','','+91',9879242292,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-08 13:06:07','vishal','2025-12-09 09:24:57'),(0,3828,'',0,'','ANISHBHAI JINDANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-12-08','Y','62Y',0,0,0,'M','','','+91',8866087851,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-08 13:07:59','shweta','2025-12-15 11:48:13'),(0,3829,'',0,'','KIRITBHAI BHOVA','','','','',0,'MAKHAKAROD','MAKHAKAROD','GUJARAT','INDIA','1985-12-08','Y','40Y',0,0,0,'M','','','+91',7874835717,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-08 13:17:55','','0000-00-00 00:00:00'),(0,3830,'',0,'','NURBANUBEN GILANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1944-12-08','Y','81Y',81,0,0,'F','','','+91',9638462572,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 13:19:13','reception','2025-12-08 17:51:13'),(0,3831,'',0,'','YASH M MUNDHAVADIYA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','2015-12-08','Y','10Y0M0D',10,0,3,'M','','','+91',9913904439,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 13:32:27','reception','2025-12-08 16:51:00'),(0,3832,'',0,'','SHAHBAZ KURESHI ','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1997-12-08','Y','28Y',0,0,0,'M','','','+91',8780838023,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 13:33:13','','0000-00-00 00:00:00'),(0,3833,'',0,'','LALITKUMAR YADAV','','','','PADADHARI',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-12-08','Y','32Y',0,0,0,'M','','','+91',9979866204,'+91',6201464372,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-08 14:28:04','drashti','2025-12-22 18:13:31'),(0,3834,'',0,'','NIRUPAMABEN V MAKWANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-12-08','Y','72Y',0,0,0,'F','','','+91',9824207656,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-08 15:59:12','','0000-00-00 00:00:00'),(0,3835,'',0,'','KOKILABEN UPADHDHAY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-12-08','Y','63Y',0,0,0,'F','','','+91',9825755208,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 16:53:58','reception','2025-12-22 18:23:26'),(0,3836,'',0,'','PRAVINABEN MUKESHBHAI CHHATROLA','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1978-12-08','Y','47Y',47,0,0,'F','','','+91',9924462940,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 16:56:57','reception','2025-12-08 17:02:09'),(0,3837,'',0,'','SAMJUBEN P THUMMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-08','Y','60Y',0,0,0,'F','','','+91',9825264615,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 16:59:38','','0000-00-00 00:00:00'),(0,3838,'',0,'','POOJABEN KOTAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-12-08','Y','28Y',0,0,0,'F','','','+91',9427079981,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-08 17:03:39','manshi','2025-12-12 18:18:26'),(0,3839,'',0,'','GAYATRIBEN B MEHTA ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-12-08','Y','54Y',0,0,0,'F','','','+91',9409525100,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 17:05:02','','0000-00-00 00:00:00'),(0,3840,'',0,'','GAURAVBHAI B GANDHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-12-08','Y','41Y',0,0,0,'M','','','+91',9408147741,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-08 17:05:24','reception','2025-12-18 10:30:48'),(0,3841,'',0,'','ABHISHEK MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-08','Y','25Y',25,0,0,'M','','','+91',9409525100,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 17:06:16','reception','2025-12-08 17:06:45'),(0,3842,'',0,'','BHARATBHAI PALEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-12-08','Y','74Y',0,0,0,'M','','','+91',9428154955,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 17:09:17','reception','2025-12-18 17:11:30'),(0,3843,'',0,'','KAUSHALBHAI  S SAKHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-12-08','Y','19Y',0,0,0,'M','','','+91',9106448643,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 17:14:33','','0000-00-00 00:00:00'),(0,3844,'',0,'','MANUBHA DHADHAL','','','','',0,'CHOTILA','CHOTILA','GUJARAT','INDIA','1960-12-08','Y','65Y',0,0,0,'M','','','+91',9879221681,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 17:15:19','janvi','2025-12-17 18:43:17'),(0,3845,'',0,'','JAGRUT A ARYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-12-08','Y','19Y',0,0,0,'M','','','+91',7984547776,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 17:18:30','','0000-00-00 00:00:00'),(0,3846,'',0,'','KRISHNABEN D PITHADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-12-08','Y','58Y',0,0,0,'F','','','+91',9714762170,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-08 17:23:38','reception','2025-12-15 17:21:54'),(0,3847,'',0,'','BHIMABHAI R VASAN','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1990-12-08','Y','35Y',0,0,0,'M','','','+91',9904088241,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-08 17:25:51','','0000-00-00 00:00:00'),(0,3848,'',0,'','JIVABHAI M VASAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-12-08','Y','42Y',0,0,0,'M','','','+91',9904088241,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-08 17:26:40','','0000-00-00 00:00:00'),(0,3849,'',0,'','KISHANBHAI PAMBHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-12-08','Y','28Y',0,0,0,'M','','','+91',9687177477,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-08 17:43:15','','0000-00-00 00:00:00'),(0,3850,'',0,'','RASIKBHAI JAKHELIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-08','Y','50Y',0,0,0,'M','','','+91',9726922451,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 17:54:27','','0000-00-00 00:00:00'),(0,3851,'',0,'','HANSABEN MORANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-12-08','Y','59Y',0,0,0,'F','','','+91',9904322636,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 18:11:01','','0000-00-00 00:00:00'),(0,3852,'',0,'','RAHULGIRI APARNATHI','','','','',0,'METODA','METODA','GUJARAT','INDIA','1995-12-08','Y','30Y',0,0,0,'M','','','+91',9824892980,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-08 18:12:11','reception','2025-12-22 17:16:33'),(0,3853,'',0,'','HAMIRBHAI N GADHVI','','','','',0,'RAMALIYA','RAMALIYA','GUJARAT','INDIA','1975-12-08','Y','50Y',0,0,0,'M','','','+91',8469749192,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 18:21:26','','0000-00-00 00:00:00'),(0,3854,'',0,'','DISHANT VARU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2016-12-08','Y','09Y0M',0,0,0,'M','','','+91',8128055155,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-08 18:21:49','','0000-00-00 00:00:00'),(0,3855,'',0,'','DINESHBHAI MORANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-12-08','Y','53Y',0,0,0,'M','','','+91',9904322636,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 18:23:32','','0000-00-00 00:00:00'),(0,3856,'',0,'','RITABEN G  SORATHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-12-08','Y','49Y',0,0,0,'F','','','+91',8200789097,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-08 18:29:12','drashti','2025-12-17 17:22:55'),(0,3857,'',0,'','SURESHBHAI VALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-12-08','Y','36Y',0,0,0,'M','','','+91',8200600072,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-08 18:29:32','','0000-00-00 00:00:00'),(0,3858,'',0,'','VINODBHAI PAREKH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-12-08','Y','79Y',0,0,0,'M','','','+91',9913383847,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-08 18:42:07','reception','2025-12-22 09:15:55'),(0,3859,'',0,'','PUSPRAJSINH ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2011-12-08','Y','14Y',0,0,0,'M','','','+91',9924787446,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 18:44:36','','0000-00-00 00:00:00'),(0,3860,'',0,'','SHILUBEN SONI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-08','Y','46Y',0,0,0,'F','','','+91',9425864173,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 18:44:56','','0000-00-00 00:00:00'),(0,3861,'',0,'','NAJMABEN M JUNEJA','','','','',0,'PADADHRI','PADADHRI','GUJARAT','INDIA','1983-12-08','Y','42Y',0,0,0,'F','','','+91',9979338738,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 18:46:01','','0000-00-00 00:00:00'),(0,3862,'',0,'','HITESHBHAI V MULIYANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-08','Y','46Y',0,0,0,'M','','','+91',9712342847,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 18:51:54','','0000-00-00 00:00:00'),(0,3863,'',0,'','MANSUKHBHAI M KACHHADIYA','','','JASAPAR','KALAWAD',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1973-12-08','Y','52Y',0,0,0,'M','','','+91',8128611343,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-08 18:56:38','drashti','2025-12-18 12:41:52'),(0,3864,'',0,'','HARDEVSINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-12-08','Y','26Y',0,0,0,'M','','','+91',9428349339,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 19:15:19','','0000-00-00 00:00:00'),(0,3865,'',0,'','MANISHABEN MANKAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-08','Y','46Y',0,0,0,'M','','','+91',9824966683,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-08 19:18:03','','0000-00-00 00:00:00'),(0,3866,'',0,'','ASTHABEN KAPILBHAI  MAJETHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-12-08','Y','41Y',0,0,0,'F','','','+91',9904799090,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-08 19:24:04','','0000-00-00 00:00:00'),(0,3867,'',0,'','NILESHBHAI PADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-12-08','Y','42Y',0,0,0,'M','','','+91',9824355738,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-08 19:28:45','','0000-00-00 00:00:00'),(0,3868,'',0,'','NISHA SHWETANG  SODHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-08','Y','40Y',0,0,0,'F','','','+91',8460084900,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-08 20:14:14','','0000-00-00 00:00:00'),(0,3869,'',0,'',' NANKUBA DABHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-08','Y','50Y',0,0,0,'F','','','+91',9974877770,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-08 20:19:29','','0000-00-00 00:00:00'),(0,3870,'',0,'','SHANTILAL K PITHADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-12-09','Y','64Y',0,0,0,'F','','','+91',8460842060,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 08:56:30','','0000-00-00 00:00:00'),(0,3871,'',0,'','PRAVINBHAI RAMJIBHAI JOSHI','','','NEAR NOVA SCHOOL, ','VIDHYA NIKETAN ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-07-01','N','57Y',0,0,0,'M','','','+91',9687837212,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-09 09:23:24','drashti','2025-12-15 12:06:26'),(0,3872,'',0,'','BHIKHABHAI V CHUDASAMA','','','','',0,'CHORVAD','CHORVAD','GUJARAT','INDIA','1965-12-09','Y','60Y',0,0,0,'M','','','+91',9427708266,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 10:05:50','','0000-00-00 00:00:00'),(0,3873,'',0,'','HEERABHAI G BHALGARIYA','','','','',0,'MALIYA','MALIYA','GUJARAT','INDIA','1961-12-09','Y','64Y',0,0,0,'M','','','+91',9624090819,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 10:09:47','','0000-00-00 00:00:00'),(0,3874,'',0,'','RAFIKBHAI H CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-12-09','Y','56Y',0,0,0,'M','','','+91',9537861808,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 10:14:01','reception','2025-12-19 17:16:18'),(0,3875,'',0,'','BABUBHAI NARANBHAI CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-12-09','Y','58Y',0,0,0,'M','','','+91',7600982744,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-09 10:15:56','','0000-00-00 00:00:00'),(0,3876,'',0,'','KIRANBEN J DAHISARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-12-09','Y','63Y',63,0,0,'F','','','+91',9426664255,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 10:15:57','reception','2025-12-17 12:38:08'),(0,3877,'',0,'','HABIBBHAI M JUNEJA','','','','',0,'VADARI','VADARI','GUJARAT','INDIA','1972-12-09','Y','53Y',53,0,0,'M','','','+91',9327200674,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 10:19:06','reception','2025-12-19 10:15:50'),(0,3878,'',0,'','VINUBHAI SAVALIYA','','','','',0,'DHORAJI','DHORAJI','GUJARAT','INDIA','1960-12-09','Y','65Y',0,0,0,'M','','','+91',9909060901,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 10:28:45','','0000-00-00 00:00:00'),(0,3879,'',0,'','NILABEN H DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-09','Y','70Y',0,0,0,'F','','','+91',9662170891,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-09 10:34:31','','0000-00-00 00:00:00'),(0,3880,'',0,'','DIVYABEN K GHETIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-12-09','Y','39Y',0,0,0,'F','','','+91',9879071371,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 10:41:43','reception','2025-12-19 18:10:13'),(0,3881,'',0,'','GAUTAMBHAI RAJPARA','','','','',0,'VICHHIYA','VICHHIYA','GUJARAT','INDIA','1978-12-09','Y','47Y',0,0,0,'M','','','+91',9904610103,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 10:50:29','','0000-00-00 00:00:00'),(0,3882,'',0,'','GHANSHYAMBHAI B JASANI','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1971-12-09','Y','54Y',0,0,0,'M','','','+91',9099295130,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-09 10:51:33','','0000-00-00 00:00:00'),(0,3883,'',0,'','LABHUBEN P KARDANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-12-09','Y','74Y',0,0,0,'F','','','+91',9428375247,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-09 10:52:03','','0000-00-00 00:00:00'),(0,3884,'',0,'','RAMESHBHAI C AANDODARIYA','','','','',0,'NALIYAD','NALIYAD','GUJARAT','INDIA','1970-12-09','Y','55Y',0,0,0,'M','','','+91',9687614383,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 10:52:49','','0000-00-00 00:00:00'),(0,3885,'',0,'','JATINBHAI BHADJA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','2005-12-09','Y','20Y',0,0,0,'M','','','+91',9725952168,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 10:57:47','reception','2025-12-09 16:40:45'),(0,3886,'',0,'','NEELBHAI VED','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-12-09','Y','21Y',0,0,0,'M','','','+91',9427495930,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-09 10:57:53','','0000-00-00 00:00:00'),(0,3887,'',0,'','ISHWARBHAI J CHIKANI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1976-12-09','Y','49Y',0,0,0,'M','','','+91',9913623534,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 10:59:38','','0000-00-00 00:00:00'),(0,3888,'',0,'','PRAVINGIRI N. GOSAI','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1959-12-09','Y','66Y',0,0,0,'M','','','+91',9409577337,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-09 11:01:15','','0000-00-00 00:00:00'),(0,3889,'',0,'','NIKUNJBHAI SAVALIYA','','','','',0,'JAMKANDONA','JAMKANDONA','GUJARAT','INDIA','1990-12-09','Y','35Y',0,0,0,'M','','','+91',9714015050,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 11:01:17','','0000-00-00 00:00:00'),(0,3890,'',0,'','SAMIRBHAI DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-12-09','Y','56Y',0,0,0,'M','','','+91',8200694343,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-09 11:05:42','','0000-00-00 00:00:00'),(0,3891,'',0,'','TULASHIBHAI H CHUDASMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-12-09','Y','76Y',0,0,0,'M','','','+91',9925361257,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-09 11:17:05','','0000-00-00 00:00:00'),(0,3892,'',0,'','MAHESHKUMAR ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-09','Y','25Y',0,0,0,'M','','','+91',7405705540,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-09 11:18:12','','0000-00-00 00:00:00'),(0,3893,'',0,'','RAJENDRAKUMAR CHOCHA','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1964-12-09','Y','61Y',0,0,0,'M','','','+91',9979408840,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 11:25:31','reception','2025-12-19 16:54:08'),(0,3894,'',0,'','SUDHIRBHAI MASURKAR','','','DIAMOND HEIGHTS, FLAT NO-503,','RAIYA ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-12-09','Y','62Y',0,0,0,'M','','','+91',8460460031,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-09 11:45:42','vishal','2025-12-09 13:24:21'),(0,3895,'',0,'','VARSHABEN BODAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-12-09','Y','43Y',0,0,0,'F','','','+91',9725275153,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-09 11:47:16','shweta','2025-12-22 14:17:41'),(0,3896,'',0,'','HASHMUKHNATH VEJNATH GOSWAMI','','','','',0,'TALALA','TALALA','GUJARAT','INDIA','1952-12-09','Y','73Y',0,0,0,'M','','','+91',9824015264,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 11:50:21','reception','2025-12-09 16:57:51'),(0,3897,'',0,'','REKHABEN SIRJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-12-09','Y','51Y',0,0,0,'F','','','+91',8866264084,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-09 11:56:23','','0000-00-00 00:00:00'),(0,3898,'',0,'','DINESHBHAI GOHIL','','','','',0,'GIR SOMATH','GIR SOMATH','GUJARAT','INDIA','1979-12-09','Y','46Y',0,0,0,'M','','','+91',7624025360,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 11:56:42','','0000-00-00 00:00:00'),(0,3899,'',0,'','HITAKSHIBEN PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-09','Y','30Y',0,0,0,'F','','','+91',9870040561,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 11:59:44','','0000-00-00 00:00:00'),(0,3900,'',0,'','MULCHANDBHAI G RANVANI','','','','',0,'BATVA','BATVA','GUJARAT','INDIA','1976-12-09','Y','49Y',0,0,0,'M','','','+91',9925491603,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 12:16:07','','0000-00-00 00:00:00'),(0,3901,'',0,'','ANJALI BAGTHARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-12-09','Y','17Y',0,0,0,'F','','','+91',8160686261,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-09 12:28:04','','0000-00-00 00:00:00'),(0,3902,'',0,'','AKASHBHAI A PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-12-09','Y','21Y',0,0,0,'M','','','+91',7096107344,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-09 12:32:17','','0000-00-00 00:00:00'),(0,3903,'',0,'','BHATTI MARIYAMBEN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-09','Y','65Y',65,0,0,'M','','','+91',9727027386,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-09 12:57:32','drashti','2025-12-09 12:59:19'),(0,3904,'',0,'','CHANDRIKABEN K YADAV','','','','',0,'PADDHARI','PADDHARI','GUJARAT','INDIA','1985-12-09','Y','40Y',0,0,0,'F','','','+91',9687120430,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-09 13:11:50','','0000-00-00 00:00:00'),(0,3905,'',0,'','KIRANBEN PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-12-09','Y','26Y',0,0,0,'F','','','+91',9265188392,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-09 14:53:29','','0000-00-00 00:00:00'),(0,3906,'',0,'','MANJULABEN S DHOLAKIYA','','','GOLDEN HEIGHTS- 301 B/H RK WORLD TOWER','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1935-12-09','Y','90Y',0,0,0,'F','','','+91',9429043162,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-09 16:15:02','','0000-00-00 00:00:00'),(0,3907,'',0,'','HANIFBHAI K KATIYAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-12-09','Y','38Y',0,0,0,'M','','','+91',8980169415,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 16:56:24','','0000-00-00 00:00:00'),(0,3908,'',0,'','ARUNABEN R TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-12-09','Y','78Y',0,0,0,'F','','','+91',9898018110,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 17:06:29','reception','2025-12-22 09:45:42'),(0,3909,'',0,'','AJMAT ALI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-09','Y','45Y',0,0,0,'M','','','+91',9964213130,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 17:08:11','','0000-00-00 00:00:00'),(0,3910,'',0,'','JAGRUTIBEN RAJPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-09','Y','60Y',0,0,0,'F','','','+91',9824580263,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-09 17:25:13','','0000-00-00 00:00:00'),(0,3911,'',0,'','DEVALBEN R THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-12-09','Y','49Y',0,0,0,'M','','','+91',6359735355,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 17:36:46','','0000-00-00 00:00:00'),(0,3912,'',0,'','CHANDRIKABEN K YADAV','','','JILARIYA,PADADHRI','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-09','Y','40Y',0,0,0,'F','','','+91',9687120430,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-09 17:39:45','','0000-00-00 00:00:00'),(0,3913,'',0,'','AJITBHAI BLOCH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1943-12-09','Y','82Y',0,0,0,'M','','','+91',8347178383,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 17:46:49','','0000-00-00 00:00:00'),(0,3914,'',0,'','NIRALBHAI R BARAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-12-09','Y','33Y',0,0,0,'M','','','+91',9227046111,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-09 17:50:37','','0000-00-00 00:00:00'),(0,3915,'',0,'','ALPABEN B DHORDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-12-09','Y','43Y',0,0,0,'F','','','+91',9429336748,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-09 17:53:35','','0000-00-00 00:00:00'),(0,3916,'',0,'','VASANTBHAI P PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-12-09','Y','79Y',0,0,0,'M','','','+91',9909909015,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 18:03:29','','0000-00-00 00:00:00'),(0,3917,'',0,'','PANDYA VASANTBHAI PREMSHANKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1943-12-09','Y','82Y',0,0,0,'M','','','+91',9909909015,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-09 18:03:34','','0000-00-00 00:00:00'),(0,3918,'',0,'','JALPABEN J KANJARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-12-09','Y','36Y',0,0,0,'F','','','+91',9033897000,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-09 18:04:31','reception','2025-12-19 16:51:21'),(0,3919,'',0,'','HEENABEN SONEJI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-09','Y','50Y',0,0,0,'M','','','+91',9825078861,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 18:05:14','reception','2025-12-19 17:26:19'),(0,3920,'',0,'','MUKESHBHAI TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-12-09','Y','66Y',66,0,0,'M','','','+91',8849066390,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-09 18:06:11','urvashi','2025-12-16 18:51:48'),(0,3921,'',0,'','BATUKBHAI TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-12-09','Y','75Y',0,0,0,'M','','','+91',7777936561,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-09 18:13:58','','0000-00-00 00:00:00'),(0,3922,'',0,'','JAYBHAI K KAMARIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-12-09','Y','31Y',0,0,0,'M','','','+91',8980223334,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-09 18:17:03','','0000-00-00 00:00:00'),(0,3923,'',0,'','BHAVINBHAI MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-12-09','Y','66Y',0,0,0,'M','','','+91',9375429143,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-09 18:17:49','','0000-00-00 00:00:00'),(0,3924,'',0,'','FALGUNIBEN PAREKH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-12-09','Y','51Y',0,0,0,'F','','','+91',9328711105,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-09 18:21:04','','0000-00-00 00:00:00'),(0,3925,'',0,'','JAMKUBEN GAJIPARA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1955-12-09','Y','70Y',0,0,0,'F','','','+91',9824280247,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 18:24:29','','0000-00-00 00:00:00'),(0,3926,'',0,'','HEMABEN DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-12-09','Y','68Y',0,0,0,'F','','','+91',9723989013,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-09 18:28:05','','0000-00-00 00:00:00'),(0,3927,'',0,'','AMITBHAI M TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-12-09','Y','56Y',56,0,0,'M','','','+91',9879207150,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-09 18:32:32','janvi','2025-12-09 19:32:24'),(0,3928,'',0,'','KIRANBEN H BAKARANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-12-09','Y','38Y',38,0,0,'F','','','+91',9723944174,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-09 18:36:46','janvi','2025-12-09 18:37:29'),(0,3929,'',0,'','DIYA LODHIYA','','','','',0,'','','GUJARAT','INDIA','2007-12-09','Y','18Y',0,0,0,'M','','','+91',9879256636,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 18:46:55','','0000-00-00 00:00:00'),(0,3930,'',0,'','KARMATI HAMIDKHA ALARKHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-12-09','Y','57Y',0,0,0,'M','','','+91',8347350393,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-09 18:48:04','','0000-00-00 00:00:00'),(0,3931,'',0,'','HULASBA D JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1941-12-09','Y','84Y',0,0,0,'F','','','+91',7984911377,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-09 18:59:25','','0000-00-00 00:00:00'),(0,3932,'',0,'','NITABEN J TALATI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-09','Y','60Y',0,0,0,'F','','','+91',9979381055,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 19:09:55','reception','2025-12-15 20:17:59'),(0,3933,'',0,'','ROJINABEN SHAMA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1986-12-09','Y','39Y',39,0,0,'F','','','+91',9574691703,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 19:12:44','reception','2025-12-09 20:04:22');
INSERT INTO `pateint_master` VALUES (0,3934,'',0,'','BANSARI C DHOKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-12-09','Y','26Y',0,0,0,'F','','','+91',9327194033,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-09 19:15:39','janvi','2025-12-16 19:14:59'),(0,3935,'',0,'','TARUBEN J RUPARELIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-12-09','Y','71Y',0,0,0,'F','','','+91',9276555981,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-09 19:26:58','','0000-00-00 00:00:00'),(0,3936,'',0,'','DAVE JAYANTILAL NAROTTAMBHAI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-12-09','Y','73Y',0,0,0,'M','','','+91',9909998133,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-09 19:41:53','urvashi','2025-12-10 08:53:15'),(0,3937,'',0,'','MANSIBEN RAVRANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-09','Y','25Y',0,0,0,'F','','','+91',7016934349,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-09 19:50:53','urvashi','2025-12-10 08:56:31'),(0,3938,'',0,'','MUKESHBHAI TRIVEDI','','','GANDHIGRAM JIVANTIKA NAGAR-1 ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-09','Y','70Y',0,0,0,'M','','','+91',8849066390,'+91',9978444924,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-09 20:28:36','','0000-00-00 00:00:00'),(0,3939,'',0,'','DEEP CHAUHAN','','','KAILASH GIT GUJRI SOC-2 AIRPORT ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-07-16','N','27Y',0,0,0,'M','','','+91',9265670717,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-09 21:16:04','','0000-00-00 00:00:00'),(0,3940,'',0,'','VIPULBHAI LAGARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-12-10','Y','27Y',0,0,0,'M','','','+91',9978666349,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-10 08:54:44','','0000-00-00 00:00:00'),(0,3941,'',0,'','DHIRAJBHAI HARVANI','','','PARSANA NAGAR-9 RINA APP,JAMNAGAR ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-23','N','24Y',0,0,0,'M','','','+91',8780634451,'+91',8849892389,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-10 09:36:35','','0000-00-00 00:00:00'),(0,3942,'',0,'','GLORIA CHAUDHARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-12-10','Y','42Y',0,0,0,'F','','','+91',9825252663,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-10 09:49:59','','0000-00-00 00:00:00'),(0,3943,'',0,'','HARSH TANTI','','','SHILPAN ONEX UNIVERCITY ROAD','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-04-13','N','17Y',0,0,0,'M','','','+91',8107260313,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-10 10:05:37','janvi','2025-12-11 20:05:32'),(0,3944,'',0,'','VANITABEN MODHVANIYA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1992-12-10','Y','33Y',0,0,0,'F','','','+91',8758030604,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-10 10:07:44','','0000-00-00 00:00:00'),(0,3945,'',0,'','POLABHAI K PARGHI','','','','',0,'BHINDORA','BHINDORA','GUJARAT','INDIA','1980-12-10','Y','45Y',0,0,0,'M','','','+91',6352248442,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-10 10:11:00','','0000-00-00 00:00:00'),(0,3946,'',0,'','PRATIK V  GADHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-12-10','Y','35Y',0,0,0,'M','','','+91',9879997767,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 10:19:02','','0000-00-00 00:00:00'),(0,3947,'',0,'','PARULBEN P RANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-12-10','Y','43Y',0,0,0,'F','','','+91',6352332067,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-10 10:24:04','','0000-00-00 00:00:00'),(0,3948,'',0,'','MITALBEN M GATHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-10','Y','40Y',0,0,0,'F','','','+91',9408892492,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-10 10:27:49','','0000-00-00 00:00:00'),(0,3949,'',0,'','CHAMPABEN M MAKWANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-10','Y','50Y',0,0,0,'F','','','+91',9979105872,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 10:29:51','','0000-00-00 00:00:00'),(0,3950,'',0,'','YOGESHBHAI RAVESHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-12-10','Y','38Y',0,0,0,'M','','','+91',8000680001,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-10 10:33:16','reception','2025-12-16 13:15:08'),(0,3951,'',0,'','VIJYABEN BHANDERI ','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1970-12-10','Y','55Y',55,0,0,'F','','','+91',9979845185,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 10:42:50','reception','2025-12-10 11:28:29'),(0,3952,'',0,'','RASILABEN S NAGARIYA','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1966-12-10','Y','59Y',0,0,0,'F','','','+91',9979712165,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 10:51:37','','0000-00-00 00:00:00'),(0,3953,'',0,'','ASHVINBHAI SOLANKI','','','','',0,'BAGASRA','BAGASRA','GUJARAT','INDIA','1966-12-10','Y','59Y',0,0,0,'M','','','+91',9426422751,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 10:58:48','','0000-00-00 00:00:00'),(0,3954,'',0,'','MAGANBHAI T SURANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-10','Y','65Y',0,0,0,'M','','','+91',9979071274,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-10 11:03:09','','0000-00-00 00:00:00'),(0,3955,'',0,'','MAHESHBHAI BATHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-10','Y','45Y',0,0,0,'M','','','+91',9427721285,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-10 11:07:07','','0000-00-00 00:00:00'),(0,3956,'',0,'','MUKESHBHAI KALARIYA','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1966-12-10','Y','59Y',0,0,0,'M','','','+91',9099160351,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 11:07:51','','0000-00-00 00:00:00'),(0,3957,'',0,'','ISHABEN MANSURIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-12-10','Y','32Y',0,0,0,'F','','','+91',7990823410,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-10 11:12:20','reception','2025-12-19 18:46:58'),(0,3958,'',0,'','HARESHBHAI B KANDOLIYA','','','','',0,'SURAT','SURAT','GUJARAT','INDIA','1973-12-10','Y','52Y',0,0,0,'M','','','+91',9409036060,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 11:14:16','','0000-00-00 00:00:00'),(0,3959,'',0,'','SHIVANG SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-12-10','Y','28Y',0,0,0,'M','','','+91',8000093737,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-10 11:28:24','reception','2025-12-22 17:07:31'),(0,3960,'',0,'','PRADIPBHAI RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-12-10','Y','69Y',0,0,0,'M','','','+91',9904411944,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-10 11:29:02','','0000-00-00 00:00:00'),(0,3961,'',0,'','LABHUBEN KORIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-10','Y','60Y',0,0,0,'F','','','+91',9925212021,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 11:36:49','priyanshi','2025-12-20 08:47:34'),(0,3962,'',0,'','SONALBEN KAKANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-12-10','Y','20Y',0,0,0,'F','','','+91',9712087180,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-10 11:37:15','','0000-00-00 00:00:00'),(0,3963,'',0,'','JAYSHREEBEN K SHUKAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-10','Y','65Y',0,0,0,'F','','','+91',9909065708,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-10 11:39:59','janvi','2025-12-22 18:34:06'),(0,3964,'',0,'','JINIBHAI GAVALBHAI GALANI','','','','',0,'BATVA','BATVA','GUJARAT','INDIA','2000-12-10','Y','25Y',0,0,0,'M','','','+91',7777954749,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 11:42:32','','0000-00-00 00:00:00'),(0,3965,'',0,'','GIRISHBHAI N MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-12-10','Y','53Y',0,0,0,'M','','','+91',9825669293,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 11:46:18','','0000-00-00 00:00:00'),(0,3966,'',0,'','AMRUTBHAI CHAPALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-12-10','Y','71Y',0,0,0,'M','','','+91',9824299664,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-10 11:47:09','','0000-00-00 00:00:00'),(0,3967,'',0,'','BHAVNABEN MEGHNATHI','','','','',0,'KODINAR','KODINAR','GUJARAT','INDIA','1971-12-10','Y','54Y',0,0,0,'F','','','+91',8141688612,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-10 11:50:31','','0000-00-00 00:00:00'),(0,3968,'',0,'','NILESHBHAI MANGRODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-10','Y','45Y',0,0,0,'M','','','+91',9904131155,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-10 12:00:41','urvashi','2025-12-18 18:23:05'),(0,3969,'',0,'','NITABEN R PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-10','Y','60Y',0,0,0,'F','','','+91',9879531760,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-10 12:07:27','','0000-00-00 00:00:00'),(0,3970,'',0,'','KHANDERIYA MANSUKHBHAI RAVJIBHAI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-12-10','Y','71Y',0,0,0,'M','','','+91',9824632248,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-10 12:08:44','','0000-00-00 00:00:00'),(0,3971,'',0,'','CHHAGANBHAI A KALARIYA','','','','',0,'KHIRASARA','KHIRASARA','GUJARAT','INDIA','1960-12-10','Y','65Y',0,0,0,'M','','','+91',9879930823,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-10 12:20:32','','0000-00-00 00:00:00'),(0,3972,'',0,'','HIMATBHAI HARSORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-12-10','Y','73Y',0,0,0,'M','','','+91',9428591225,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-10 12:20:55','','0000-00-00 00:00:00'),(0,3973,'',0,'','USHABEN HARSORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-10','Y','65Y',0,0,0,'F','','','+91',9428591225,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 12:22:51','','0000-00-00 00:00:00'),(0,3974,'',0,'','JIVANBHAI M. VANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-10','Y','45Y',0,0,0,'M','','','+91',7265000896,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-10 12:26:39','','0000-00-00 00:00:00'),(0,3975,'',0,'','AANANDBA P VADHER','','','','',0,'DWARKA','DWARKA','GUJARAT','INDIA','1969-12-10','Y','56Y',0,0,0,'F','','','+91',9924442462,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 12:27:02','','0000-00-00 00:00:00'),(0,3976,'',0,'','HANSHABEN S VAOSYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-12-10','Y','47Y',47,0,0,'F','','','+91',9687334306,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-10 12:28:56','drashti','2025-12-10 12:32:51'),(0,3977,'',0,'','RAJESHBHAI B JANJVADIYA','','','POPATPARA ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-12-10','Y','35Y',0,0,0,'M','','','+91',9904468335,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-10 12:56:33','','0000-00-00 00:00:00'),(0,3978,'',0,'','MAHESHBHAI K KODIYATAR','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1995-12-10','Y','30Y',0,0,0,'M','','','+91',9913748257,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-10 13:28:10','drashti','2025-12-13 10:29:39'),(0,3979,'',0,'','AMITBHAI JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-12-10','Y','48Y',0,0,0,'M','','','+91',9825548515,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 13:30:47','reception','2025-12-19 19:37:38'),(0,3980,'',0,'','RAYSHIBHAI ODEDARA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1947-12-10','Y','78Y',0,0,0,'M','','','+91',9879944688,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 14:27:17','','0000-00-00 00:00:00'),(0,3981,'',0,'','LEENA SANTOSH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-10','Y','52Y',0,0,0,'F','','','+91',9428890849,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-10 14:53:34','','0000-00-00 00:00:00'),(0,3982,'',0,'','STUTI  LUNAGARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2010-12-10','Y','15Y',0,0,0,'F','','','+91',9664888650,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-10 14:58:55','','0000-00-00 00:00:00'),(0,3983,'',0,'','BHARATBHAI K BATHVAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-12-10','Y','23Y',23,0,0,'M','','','+91',9099167142,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 16:12:36','reception','2025-12-10 19:02:30'),(0,3984,'',0,'','JIVIBEN SUTREJA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1947-12-10','Y','78Y',0,0,0,'F','','','+91',9825517287,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-10 16:14:08','','0000-00-00 00:00:00'),(0,3985,'',0,'','POOJABEN CHANDARANA','','','','',0,'DWARKA','DWARKA','GUJARAT','INDIA','2003-12-10','Y','22Y',0,0,0,'F','','','+91',7069391222,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 16:53:51','','0000-00-00 00:00:00'),(0,3986,'',0,'','BHARATBHAI N BAJANIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1960-12-10','Y','65Y',0,0,0,'M','','','+91',8780021114,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-10 16:57:47','','0000-00-00 00:00:00'),(0,3987,'',0,'','JAYSHREEBEN KAPADI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-10','Y','52Y',52,0,0,'F','','','+91',7487958304,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 16:58:02','janvi','2025-12-10 17:43:24'),(0,3988,'',0,'','GIRDHARBHAI J SOLANKI','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1953-12-10','Y','72Y',0,0,0,'M','','','+91',9427252083,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-10 17:06:57','drashti','2025-12-15 18:27:34'),(0,3989,'',0,'','RASILABEN JIVRAJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-12-10','Y','66Y',0,0,0,'F','','','+91',9624975742,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 17:09:13','reception','2025-12-19 10:50:20'),(0,3990,'',0,'','NISHABEN R RAVESHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-12-10','Y','39Y',0,0,0,'F','','','+91',7600000197,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-10 17:15:56','','0000-00-00 00:00:00'),(0,3991,'',0,'','BHARATBHAI GADHVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-10','Y','45Y',0,0,0,'M','','','+91',9898211633,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-10 17:22:22','','0000-00-00 00:00:00'),(0,3992,'',0,'','ISMAIL D SHAIKH ','','','','',0,'MANGROL','MANGROL','GUJARAT','INDIA','1950-12-10','Y','75Y',75,0,0,'M','','','+91',6359648014,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 17:28:00','reception','2025-12-10 17:32:00'),(0,3993,'',0,'','HETALBEN A CHANDARANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-12-10','Y','39Y',0,0,0,'F','','','+91',9930699916,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 17:35:49','','0000-00-00 00:00:00'),(0,3994,'',0,'','ROHIT YADAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-12-10','Y','18Y',0,0,0,'M','','','+91',9696991838,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-10 17:54:12','','0000-00-00 00:00:00'),(0,3995,'',0,'','TEJASBHAI SHAH','','','','',0,'AHEMDAVAD','AHEMDAVAD','GUJARAT','INDIA','1974-12-10','Y','51Y',0,0,0,'M','','','+91',9825665880,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 17:57:44','','0000-00-00 00:00:00'),(0,3996,'',0,'','HEMALBHAI R KARAVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-12-10','Y','41Y',0,0,0,'M','','','+91',7801888444,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-10 17:59:39','drashti','2025-12-22 17:14:13'),(0,3997,'',0,'','MADHURIBEN J CHOLERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-12-10','Y','44Y',0,0,0,'F','','','+91',9979898855,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-10 18:01:09','','0000-00-00 00:00:00'),(0,3998,'',0,'','MEHULBHAI JANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-10','Y','52Y',0,0,0,'M','','','+91',9925340985,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-10 18:02:45','','0000-00-00 00:00:00'),(0,3999,'',0,'','NETALBEN V GAJJAR','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1990-12-10','Y','35Y',0,0,0,'F','','','+91',7575896010,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-10 18:34:56','','0000-00-00 00:00:00'),(0,4000,'',0,'','RAMILABEN P BHANUSALI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-10','Y','65Y',0,0,0,'F','','','+91',9824583893,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 18:34:58','drashti','2025-12-22 11:09:04'),(0,4001,'',0,'','GIRDHARBHAI JETHABHAI SOLANKI','','','SAI ORTHOPEDIC HOSPITAL, ','PARSHURAM NAGAR, WAKANER',0,'MORBI','MORBI','GUJARAT','INDIA','1952-10-20','N','73Y',0,0,0,'M','','','+91',9427252083,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-10 18:37:51','','0000-00-00 00:00:00'),(0,4002,'',0,'','PRAVINBHAI S DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-10','Y','46Y',0,0,0,'M','','','+91',8264028972,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-10 18:39:13','','0000-00-00 00:00:00'),(0,4003,'',0,'','NATUBHAI TADA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-10','Y','65Y',0,0,0,'M','','','+91',9638220912,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-10 18:51:11','','0000-00-00 00:00:00'),(0,4004,'',0,'','GITABEN V BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-10','Y','60Y',0,0,0,'F','','','+91',9427444514,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-10 18:57:09','','0000-00-00 00:00:00'),(0,4005,'',0,'','SAUMYA SATISHBHAI DHAMECHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2015-12-10','Y','10Y0M0D',0,0,0,'M','','','+91',9924869889,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-10 19:06:14','','0000-00-00 00:00:00'),(0,4006,'',0,'','DR MANISH PATEL','','','','',0,'GANDHINAGAR','GANDHINAGAR','GUJARAT','INDIA','1986-12-10','Y','39Y',0,0,0,'M','','','+91',9724808333,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-10 19:16:03','','0000-00-00 00:00:00'),(0,4007,'',0,'','DILIPBHAI M PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-12-10','Y','63Y',0,0,0,'M','','','+91',8200447194,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-10 19:33:25','','0000-00-00 00:00:00'),(0,4008,'',0,'','SAVITABEN J VADALIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1940-12-10','Y','85Y',0,0,0,'F','','','+91',9426549809,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-10 19:37:56','janvi','2025-12-22 18:14:17'),(0,4009,'',0,'','ZEELBEN  MEHTA','','','','',0,'','','GUJARAT','INDIA','1996-12-10','Y','29Y',0,0,0,'F','','','+91',9978693780,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-10 20:09:37','drashti','2025-12-17 19:18:12'),(0,4010,'',0,'','CHANDRAKANT HARISHANKAR MEHTA','','','KAILASH PARK MAIN ORAD,','B/H NATRAJ NAGAR, UNIVERSITY ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-03-06','N','71Y',0,0,0,'M','','','+91',9664714734,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-10 22:51:18','riya','2025-12-15 16:06:52'),(0,4011,'',0,'','BHIKHUBHAI J HINGU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1943-12-11','Y','82Y',0,0,0,'M','','','+91',9924310820,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 08:38:55','reception','2025-12-15 10:16:54'),(0,4012,'',0,'','DINESHBHAI L SOJITRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-11','Y','50Y',0,0,0,'M','','','+91',9537681776,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-11 10:00:40','','0000-00-00 00:00:00'),(0,4013,'',0,'','RITUBEN SONKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-11','Y','25Y',0,0,0,'F','','','+91',7572857852,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-11 10:19:15','','0000-00-00 00:00:00'),(0,4014,'',0,'','NILESHBHAI H RAJPARA','','','','',0,'VICHHIYA','VICHHIYA','GUJARAT','INDIA','1996-12-11','Y','29Y',0,0,0,'M','','','+91',9723156475,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-11 10:22:35','','0000-00-00 00:00:00'),(0,4015,'',0,'','DUSHYANTBHAI DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-12-11','Y','48Y',48,0,0,'M','','','+91',9979012244,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 10:31:47','reception','2025-12-11 10:50:46'),(0,4016,'',0,'','NENSEE HARSUKHBHAI MOVALIYA','','','','',0,'JUNAGHADH','JUNAGHADH','GUJARAT','INDIA','2000-12-11','Y','25Y',0,0,0,'F','','','+91',6354377373,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 10:36:32','','0000-00-00 00:00:00'),(0,4017,'',0,'','SIDDHI RANJITBHAI MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2013-12-11','Y','12Y',0,0,0,'F','','','+91',9785280000,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 10:45:07','reception','2025-12-19 18:18:57'),(0,4018,'',0,'','PRADEEPKUMAR S DESAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-12-11','Y','64Y',0,0,0,'M','','','+91',9825588324,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-11 10:53:38','','0000-00-00 00:00:00'),(0,4019,'',0,'','MANISHABEN V BHANDERI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-12-11','Y','44Y',0,0,0,'F','','','+91',9727474138,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 10:57:37','','0000-00-00 00:00:00'),(0,4020,'',0,'','MEENABEN P RANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-11','Y','52Y',0,0,0,'F','','','+91',9913913371,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-11 11:15:36','','0000-00-00 00:00:00'),(0,4021,'',0,'','HARIBHAI PADHIYAR','','','','',0,'KODINAR','KODINAR','GUJARAT','INDIA','1976-12-11','Y','49Y',0,0,0,'M','','','+91',8784617995,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-11 11:21:00','','0000-00-00 00:00:00'),(0,4022,'',0,'','PALLAVIBEN J GOPIYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-11','Y','65Y',0,0,0,'F','','','+91',9228753375,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-11 11:26:09','','0000-00-00 00:00:00'),(0,4023,'',0,'','KAMINIBA JADEJA','','','','',0,'LODHIKA','LODHIKA','GUJARAT','INDIA','1980-12-11','Y','45Y',0,0,0,'F','','','+91',8141099275,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 11:27:11','','0000-00-00 00:00:00'),(0,4024,'',0,'','AMISH VARSANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-11','Y','30Y',0,0,0,'M','','','+91',8128333388,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-11 11:36:02','','0000-00-00 00:00:00'),(0,4025,'',0,'','USHABEN R LAKHANI','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1968-12-11','Y','57Y',0,0,0,'F','','','+91',9067177288,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 11:41:48','','0000-00-00 00:00:00'),(0,4026,'',0,'','HANSABEN H VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-12-11','Y','76Y',0,0,0,'F','','','+91',7990197773,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 11:43:12','','0000-00-00 00:00:00'),(0,4027,'',0,'','KRISH BHALODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-12-11','Y','20Y',0,0,0,'M','','','+91',7861818056,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-11 11:49:22','','0000-00-00 00:00:00'),(0,4028,'',0,'','NISHITH MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-11','Y','50Y',0,0,0,'M','','','+91',9724136295,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 11:49:39','janvi','2025-12-13 12:25:18'),(0,4029,'',0,'','PARSHOTAMBHAI SONAGRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-11','Y','60Y',0,0,0,'M','','','+91',9726853209,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-11 12:04:31','','0000-00-00 00:00:00'),(0,4030,'',0,'','VRAJLALBHAI G NAGEVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-12-11','Y','80Y',0,0,0,'M','','','+91',9723301717,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-11 12:07:24','','0000-00-00 00:00:00'),(0,4031,'',0,'','NIRAVKUMAR DILIPBHAI  ZALAVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-11','Y','30Y',0,0,0,'M','','','+91',9638444483,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 12:09:14','reception','2025-12-11 16:56:45'),(0,4032,'',0,'','ANUPAMABEN VIJAYBHAI KAMDAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-12-11','Y','74Y',0,0,0,'F','','','+91',9726664183,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-11 12:17:01','','0000-00-00 00:00:00'),(0,4033,'',0,'','HANSABEN J MODI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-12-11','Y','68Y',0,0,0,'F','','','+91',9909908109,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 12:19:07','','0000-00-00 00:00:00'),(0,4034,'',0,'','RAJESHBHAI SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-12-11','Y','66Y',0,0,0,'M','','','+91',9904088290,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-11 12:24:39','','0000-00-00 00:00:00'),(0,4035,'',0,'','JITUBHAI GOSWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-12-11','Y','59Y',0,0,0,'M','','','+91',9998381203,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-11 12:29:23','','0000-00-00 00:00:00'),(0,4036,'',0,'','PURNABA N JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-12-11','Y','47Y',0,0,0,'F','','','+91',8980174194,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 12:36:11','reception','2025-12-22 10:55:17'),(0,4037,'',0,'','JAYSHREEBEN U PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-11','Y','40Y',0,0,0,'F','','','+91',7990353054,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-11 12:43:33','','0000-00-00 00:00:00'),(0,4038,'',0,'','KIRITBHAI S KOTAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-12-11','Y','64Y',0,0,0,'M','','','+91',9825935646,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-11 12:45:40','','0000-00-00 00:00:00'),(0,4039,'',0,'','RUSHIKABEN VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-11','Y','40Y',0,0,0,'F','','','+91',9924500012,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 12:47:27','','0000-00-00 00:00:00'),(0,4040,'',0,'','JIGNESHBHAI R PATEL','','','','',0,'DHANGADHRA','DHANGADHRA','GUJARAT','INDIA','1985-12-11','Y','40Y',0,0,0,'M','','','+91',9913075932,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 12:54:37','','0000-00-00 00:00:00'),(0,4041,'',0,'','NATUBHAI D MADHAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-11','Y','60Y',0,0,0,'M','','','+91',9898017662,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-11 13:11:38','','0000-00-00 00:00:00'),(0,4042,'',0,'','NITABEN JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-12-11','Y','33Y',0,0,0,'F','','','+91',7041111158,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-11 13:19:27','','0000-00-00 00:00:00'),(0,4043,'',0,'','DHANABHAI RAMBHAI ALGOT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-12-11','Y','69Y',0,0,0,'M','','','+91',7537611001,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 14:17:22','','0000-00-00 00:00:00'),(0,4044,'',0,'','MANJULABEN SAKARIYA','','','','',0,'JAMJODHPUR','JAMJODHPUR','GUJARAT','INDIA','1959-12-11','Y','66Y',0,0,0,'F','','','+91',9664539097,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 16:02:35','','0000-00-00 00:00:00'),(0,4045,'',0,'','MANUBA H JADEJA','','','','',0,'KUTCH','KUTCH','GUJARAT','INDIA','1980-12-11','Y','45Y',0,0,0,'F','','','+91',9638863483,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 16:07:42','','0000-00-00 00:00:00'),(0,4046,'',0,'','AMITBHAI P DAVE','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1980-12-11','Y','45Y',0,0,0,'M','','','+91',9426555129,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 16:33:17','','0000-00-00 00:00:00'),(0,4047,'',0,'','SONALBEN S SIDDHPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-12-11','Y','38Y',0,0,0,'F','','','+91',7567903339,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 16:39:20','','0000-00-00 00:00:00'),(0,4048,'',0,'','KANTABEN PARMAR','','','','',0,'SATAPAR JAMNAGAR','SATAPAR JAMNAGAR','GUJARAT','INDIA','1960-12-11','Y','65Y',0,0,0,'F','','','+91',9725437239,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-11 16:45:01','','0000-00-00 00:00:00'),(0,4049,'',0,'','DINESHBHAI MORI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-11','Y','45Y',0,0,0,'M','','','+91',9099963317,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-11 17:03:43','','0000-00-00 00:00:00'),(0,4050,'',0,'','PRADIPBHAI K KADIVAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-12-11','Y','66Y',0,0,0,'M','','','+91',8866112684,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-11 17:24:55','','0000-00-00 00:00:00'),(0,4051,'',0,'','AMITBHAI B DASADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-11','Y','30Y',0,0,0,'M','','','+91',9033813827,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-11 17:38:20','','0000-00-00 00:00:00'),(0,4052,'',0,'','VIRALBEN C KAPURIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-12-11','Y','27Y',0,0,0,'F','','','+91',7984516754,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 18:02:39','','0000-00-00 00:00:00'),(0,4053,'',0,'','DIPAKBHAI P GANDHI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-12-11','Y','72Y',0,0,0,'M','','','+91',9825351400,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-11 18:14:29','','0000-00-00 00:00:00'),(0,4054,'',0,'','SHREY BHESDADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-12-11','Y','17Y',0,0,0,'M','','','+91',9313068661,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-11 18:14:40','','0000-00-00 00:00:00'),(0,4055,'',0,'','GEETABEN N. JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-12-11','Y','72Y',0,0,0,'F','','','+91',8460549901,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-11 18:22:22','','0000-00-00 00:00:00'),(0,4056,'',0,'','AMITBHAI HEMENDRABHAI RAJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-11','Y','45Y',0,0,0,'M','','','+91',9924922156,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-11 18:28:13','','0000-00-00 00:00:00'),(0,4057,'',0,'','KUSUMBEN RAJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-12-11','Y','71Y',0,0,0,'F','','','+91',9714397770,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-11 18:28:24','','0000-00-00 00:00:00'),(0,4058,'',0,'','NARESHBHAI D ZALA','','','','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1997-12-11','Y','28Y',0,0,0,'M','','','+91',9909490470,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-11 18:29:57','','0000-00-00 00:00:00'),(0,4059,'',0,'','KISHANBHAI NADIYAPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-12-11','Y','28Y',0,0,0,'M','','','+91',8140729295,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-11 18:34:38','','0000-00-00 00:00:00'),(0,4060,'',0,'','HARDIKABEN MAKHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-12-11','Y','28Y',28,0,0,'F','','','+91',9504355555,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 18:41:28','reception','2025-12-11 18:45:02'),(0,4061,'',0,'','BHARATBHAI RUPARELIYA','','','','',0,'TALALA','TALALA','GUJARAT','INDIA','1970-12-11','Y','55Y',0,0,0,'M','','','+91',9924412145,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 18:43:49','','0000-00-00 00:00:00'),(0,4062,'',0,'','SAROJBEN J PAIDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-11','Y','60Y',0,0,0,'F','','','+91',8898989034,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 18:46:36','reception','2025-12-22 18:44:10'),(0,4063,'',0,'','AMRUTLAL K. TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-12-11','Y','74Y',0,0,0,'M','','','+91',9426998707,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-11 18:52:49','drashti','2025-12-12 13:13:53'),(0,4064,'',0,'','RUHI MITENBHAI KANTESARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2022-12-11','Y','03Y0M',0,0,0,'F','','','+91',9879359849,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-11 18:59:43','','0000-00-00 00:00:00'),(0,4065,'',0,'','GAURAVBHAI YADAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-12-11','Y','26Y',0,0,0,'M','','','+91',8278653504,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-11 19:07:49','urvashi','2025-12-16 19:47:48'),(0,4066,'',0,'','BHARATBHAI C BHADRESHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-12-11','Y','69Y',0,0,0,'M','','','+91',9879544496,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-11 19:13:21','drashti','2025-12-23 17:46:06'),(0,4067,'',0,'','BHARTIBEN MOTHWANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-12-12','Y','64Y',0,0,0,'F','','','+91',8866573768,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 08:35:28','','0000-00-00 00:00:00'),(0,4068,'',0,'','HIRALBEN SINDHAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-12-12','Y','26Y',0,0,0,'F','','','+91',8866521664,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 08:39:21','','0000-00-00 00:00:00'),(0,4069,'',0,'','CHANDUBHAI DOBARIYA','','','','',0,'KOTHARIYA','KOTHARIYA','GUJARAT','INDIA','1972-12-12','Y','53Y',0,0,0,'M','','','+91',9427252639,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 10:24:15','reception','2025-12-22 16:20:56'),(0,4070,'',0,'','CHIRAGBHAI N LAKHANI','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1991-12-12','Y','34Y',0,0,0,'M','','','+91',8849777892,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 10:33:10','','0000-00-00 00:00:00'),(0,4071,'',0,'','ILABEN S AJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-12','Y','45Y',0,0,0,'F','','','+91',9426527791,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 10:33:35','','0000-00-00 00:00:00'),(0,4072,'',0,'','HASMABEN I CHUTANI','','','','',0,'DHORAJI','DHORAJI','GUJARAT','INDIA','1989-12-12','Y','36Y',0,0,0,'F','','','+91',9824874130,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 10:51:17','','0000-00-00 00:00:00'),(0,4073,'',0,'','MANISHA BARAD','','','','',0,'SUTRAPADA','SUTRAPADA','GUJARAT','INDIA','1981-12-12','Y','44Y',0,0,0,'F','','','+91',7802040004,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-12 10:51:57','','0000-00-00 00:00:00'),(0,4074,'',0,'','SAMATBHAI J BARAD','','','','',0,'SUTRAPADA','SUTRAPADA','GUJARAT','INDIA','1965-12-12','Y','60Y',0,0,0,'M','','','+91',7802040004,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 10:52:25','','0000-00-00 00:00:00'),(0,4075,'',0,'','ILABEN GADHAVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-12','Y','45Y',0,0,0,'F','','','+91',9875130724,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-12 11:05:38','','0000-00-00 00:00:00'),(0,4076,'',0,'','JAYSHREEBEN KANERIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-12-12','Y','61Y',0,0,0,'F','','','+91',9426785203,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-12 11:23:56','manshi','2025-12-19 11:14:08'),(0,4077,'',0,'','ANIBEN B BHOI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-12','Y','60Y',0,0,0,'F','','','+91',7041384755,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 11:24:47','','0000-00-00 00:00:00'),(0,4078,'',0,'','CHANDRABEN A KOTAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-12-12','Y','77Y',0,0,0,'F','','','+91',9998818056,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 11:25:15','','0000-00-00 00:00:00'),(0,4079,'',0,'','NIDHIBEN BAKULBHAI VAGHELA','','','','',0,'AHEMDABAD','AHEMDABAD','GUJARAT','INDIA','2004-12-12','Y','21Y',0,0,0,'F','','','+91',9825147480,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 11:26:44','','0000-00-00 00:00:00'),(0,4080,'',0,'','SHILABEN A GAJJAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-12-12','Y','72Y',0,0,0,'F','','','+91',7984491278,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-12 11:28:02','drashti','2025-12-17 10:55:06'),(0,4081,'',0,'','HEERABHAI J DALKI','','','','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1963-12-12','Y','62Y',0,0,0,'M','','','+91',9328453952,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 11:33:31','','0000-00-00 00:00:00'),(0,4082,'',0,'','JAYABEN DOBARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-12-12','Y','69Y',0,0,0,'F','','','+91',9879402429,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-12 11:41:19','priyanshi','2025-12-22 10:39:32'),(0,4083,'',0,'','HANSABEN V PARMAR','','','','',0,'SURENDRANAGAR','SURENDRANAGAR','GUJARAT','INDIA','1987-12-12','Y','38Y',0,0,0,'F','','','+91',7984406014,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 11:43:59','','0000-00-00 00:00:00'),(0,4084,'',0,'','ROHANBHAI THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2009-12-12','Y','16Y',0,0,0,'M','','','+91',9898003190,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-12 11:58:33','','0000-00-00 00:00:00'),(0,4085,'',0,'','RINABEN B MEHTA','','','','',0,'PADADHRI','PADADHRI','GUJARAT','INDIA','1968-12-12','Y','57Y',0,0,0,'F','','','+91',8780892578,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 12:14:58','','0000-00-00 00:00:00'),(0,4086,'',0,'','NIMISHABEN D OZA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1965-12-12','Y','60Y',0,0,0,'F','','','+91',9099219595,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 12:17:42','','0000-00-00 00:00:00'),(0,4087,'',0,'','CHHABILBHAI J HIRANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-12-12','Y','75Y',0,0,0,'M','','','+91',9909012332,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 12:27:24','drashti','2025-12-19 18:51:30'),(0,4088,'',0,'','PARASBHAI JADAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-12-12','Y','33Y',0,0,0,'M','','','+91',7710003781,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 12:38:25','','0000-00-00 00:00:00'),(0,4089,'',0,'','RAHULBHAI PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-12-12','Y','23Y',0,0,0,'M','','','+91',9662768212,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 12:42:21','','0000-00-00 00:00:00'),(0,4090,'',0,'','KETANBHAI AJUDIYA','','','','',0,'DHORAJI','DHORAJI','GUJARAT','INDIA','1977-12-12','Y','48Y',0,0,0,'M','','','+91',9979756021,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 12:53:05','','0000-00-00 00:00:00'),(0,4091,'',0,'','KULSAMBEN S DAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-12-12','Y','44Y',0,0,0,'F','','','+91',6354558024,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-12 13:32:46','','0000-00-00 00:00:00'),(0,4092,'',0,'','BHAVNABEN DIPAKKUMAR VAGHAMSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-12-12','Y','48Y',0,0,0,'M','','','+91',9825585407,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 16:14:59','','0000-00-00 00:00:00'),(0,4093,'',0,'','REKHABEN L DHOLARIYA','','','','',0,'KHOTARIYA','KHOTARIYA','GUJARAT','INDIA','1985-12-12','Y','40Y',0,0,0,'F','','','+91',9825560998,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 16:23:45','','0000-00-00 00:00:00'),(0,4094,'',0,'','SHITALBEN R BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-12','Y','40Y',0,0,0,'F','','','+91',8780836087,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 16:44:53','','0000-00-00 00:00:00'),(0,4095,'',0,'','RAJESH B CHAVDA','','ICPA HEALT','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-12-12','Y','53Y',0,0,0,'M','','','+91',9426719068,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 16:55:42','','0000-00-00 00:00:00'),(0,4096,'',0,'','KAJALBEN J KHATRIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-12-12','Y','27Y',0,0,0,'M','','','+91',9662065984,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 17:07:58','','0000-00-00 00:00:00'),(0,4097,'',0,'','SHOBHNABEN JAVIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-12','Y','52Y',0,0,0,'F','','','+91',9825236059,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 17:09:27','','0000-00-00 00:00:00'),(0,4098,'',0,'','MANISH GONDALIYA','','GERRYSUN P','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-12-12','Y','28Y',0,0,0,'M','','','+91',8320774087,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 17:10:04','','0000-00-00 00:00:00'),(0,4099,'',0,'','KIRANBEN D KANSAGRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-12-12','Y','68Y',0,0,0,'F','','','+91',9427271141,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 17:13:04','reception','2025-12-22 16:48:23'),(0,4100,'',0,'','POOJABEN RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-12-12','Y','51Y',51,0,0,'F','','','+91',8200811065,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 17:16:48','reception','2025-12-22 18:26:38'),(0,4101,'',0,'','MRUDULABEN JANI','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1957-12-12','Y','68Y',0,0,0,'F','','','+91',9913902595,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 17:29:09','','0000-00-00 00:00:00'),(0,4102,'',0,'','REKHABEN H BHIMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-12-12','Y','54Y',54,0,0,'F','','','+91',8200331527,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 17:33:27','reception','2025-12-22 17:04:59'),(0,4103,'',0,'','NEHABEN ZALAVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-12-12','Y','33Y',0,0,0,'F','','','+91',9033758272,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 17:46:25','','0000-00-00 00:00:00'),(0,4104,'',0,'','NIRMALABEN R RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-12-12','Y','36Y',0,0,0,'F','','','+91',9904250077,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 17:55:57','','0000-00-00 00:00:00'),(0,4105,'',0,'','ASHOKBHAI LALWANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-12-12','Y','72Y',0,0,0,'M','','','+91',9909888800,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 17:58:04','','0000-00-00 00:00:00'),(0,4106,'',0,'','DAYABEN P RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-12-12','Y','57Y',0,0,0,'F','','','+91',7567794748,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 18:05:32','riya','2025-12-13 10:28:18'),(0,4107,'',0,'','HETALBEN JITENBHAI UPADHYAYA','','','FLAT NO-2, VASTU SHIL RESIDENCY APPT,','RAJ RAJESHWARI PARK, RAIYA ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-01-10','N','43Y',0,0,0,'F','','','+91',9824229609,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-12 18:11:40','manshi','2025-12-22 19:17:17'),(0,4108,'',0,'','ANJANABEN C DHANDHUKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-12-12','Y','47Y',0,0,0,'F','','','+91',9033319026,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 18:12:25','','0000-00-00 00:00:00'),(0,4109,'',0,'','GITABEN MUNGARA','','','PANCHVATI SOC,','DHROL',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1955-12-12','Y','70Y',0,0,0,'F','','','+91',9979176727,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 18:14:10','vishal','2025-12-12 18:52:09'),(0,4110,'',0,'','MANSHIBEN MANDAVIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-12-12','Y','37Y',0,0,0,'F','','','+91',8758063939,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 18:16:32','drashti','2025-12-17 18:39:42'),(0,4111,'',0,'','SEJALBEN B KURANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-12','Y','52Y',0,0,0,'F','','','+91',9824864747,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 18:19:15','','0000-00-00 00:00:00'),(0,4112,'',0,'','VIVEKBHAI TERAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-12','Y','30Y',0,0,0,'M','','','+91',8460122804,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-12 18:19:16','','0000-00-00 00:00:00'),(0,4113,'',0,'','BHAVESHBHAI M KURANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-12','Y','60Y',0,0,0,'M','','','+91',9824864747,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 18:21:05','','0000-00-00 00:00:00'),(0,4114,'',0,'','DIPENBHAI BORANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-12','Y','55Y',0,0,0,'M','','','+91',7600056733,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 18:22:58','drashti','2025-12-18 11:07:19'),(0,4115,'',0,'','HINABEN BORANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-12','Y','45Y',45,0,0,'F','','','+91',7600056733,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-12 18:23:37','drashti','2025-12-18 11:06:54'),(0,4116,'',0,'','SANGITABEN U TOMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-12-12','Y','37Y',0,0,0,'F','','','+91',9979074474,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 18:30:26','','0000-00-00 00:00:00'),(0,4117,'',0,'','SARVANABEN KHORAJIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-12-12','Y','33Y',0,0,0,'F','','','+91',6351586707,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-12 18:34:23','','0000-00-00 00:00:00'),(0,4118,'',0,'','JYOTSHNABEN ASHIYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-12','Y','52Y',0,0,0,'F','','','+91',9925019970,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-12 18:46:08','','0000-00-00 00:00:00'),(0,4119,'',0,'','PARAGBHAI H VIRADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-12','Y','30Y',0,0,0,'M','','','+91',9998451651,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 18:46:22','','0000-00-00 00:00:00'),(0,4120,'',0,'','ASITBHAI R BHANVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-12-12','Y','44Y',0,0,0,'M','','','+91',9537300999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 18:47:30','','0000-00-00 00:00:00'),(0,4121,'',0,'','RASMITABEN R JOSHI ','','','','',0,'BHANVAD','BHANVAD','GUJARAT','INDIA','1982-12-12','Y','43Y',0,0,0,'F','','','+91',9033766220,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 18:59:52','','0000-00-00 00:00:00'),(0,4122,'',0,'','PRAFULABEN VAYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-12','Y','60Y',0,0,0,'F','','','+91',9824465020,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 19:07:52','','0000-00-00 00:00:00'),(0,4123,'',0,'','PARAG HASMUKHBHAI VIRADIYA','','','MEGHRAJ NILKANTH NAGAR MAIN ROAD','UNIVERSITY ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-11-01','N','31Y',0,0,0,'M','','','+91',9714500077,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-12 19:13:30','drashti','2025-12-16 11:46:43'),(0,4124,'',0,'','MUKESHBHAI SIDDHPURA','','','DWARKADHISH HEIGHTS, ','NEAR SHITAL PARK, 150 FT RING ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-01-28','N','69Y',0,0,0,'M','','','+91',9998779577,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-12 19:25:48','reception','2025-12-22 17:47:05'),(0,4125,'',0,'','ASHWINBHAI CHHAGANBHAI VADOLIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-12-12','Y','51Y',0,0,0,'M','','','+91',8200070504,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 19:34:41','','0000-00-00 00:00:00'),(0,4126,'',0,'','DHRUVAN P PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2017-12-12','Y','08Y0M',0,0,0,'M','','','+91',9725451111,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-12 19:49:37','reception','2025-12-13 08:39:49'),(0,4127,'',0,'','NILESHBHAI J KANPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-12-12','Y','44Y',0,0,0,'M','','','+91',9099115011,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-12 19:52:40','','0000-00-00 00:00:00'),(0,4128,'',0,'','MAHESHKUMAR H VADHER','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-12-12','Y','47Y',0,0,0,'M','','','+91',9879314621,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-12 20:05:10','','0000-00-00 00:00:00'),(0,4129,'',0,'','MUBINABEN S FAKIR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-12-12','Y','38Y',0,0,0,'F','','','+91',8460404292,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-12 20:25:41','drashti','2025-12-23 12:58:36'),(0,4130,'',0,'','LAXMANBHAI TIRUVA ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-12-12','Y','18Y',0,0,0,'M','','','+91',8347192994,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-12 20:26:58','','0000-00-00 00:00:00'),(0,4131,'',0,'','BHAVNABEN V HINDOCHA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1973-12-13','Y','52Y',0,0,0,'F','','','+91',7567372928,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-13 09:58:10','','0000-00-00 00:00:00'),(0,4132,'',0,'','RAHIMABEN M BADI','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1980-12-13','Y','45Y',0,0,0,'F','','','+91',9624141110,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-13 10:01:16','reception','2025-12-22 10:46:27'),(0,4133,'',0,'','BHAVESHBHAI G LUNAGARIYA','','','','',0,'JILARIYA','JILARIYA','GUJARAT','INDIA','1982-12-13','Y','43Y',0,0,0,'M','','','+91',8238927541,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-13 10:01:36','','0000-00-00 00:00:00'),(0,4134,'',0,'','POOJABEN DINESHBHAI MORADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-12-13','Y','28Y',0,0,0,'F','','','+91',9998833758,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-13 10:09:45','','0000-00-00 00:00:00'),(0,4135,'',0,'','SURAJBHAI SONI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-13','Y','30Y',0,0,0,'M','','','+91',9687739588,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-13 10:28:29','','0000-00-00 00:00:00'),(0,4136,'',0,'','SANDIPBHAI GOSAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-12-13','Y','38Y',0,0,0,'M','','','+91',8460605688,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-13 10:33:55','','0000-00-00 00:00:00'),(0,4137,'',0,'','AKSHAYBHAI DODHIWALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-12-13','Y','28Y',0,0,0,'M','','','+91',9664797701,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-13 10:34:00','','0000-00-00 00:00:00'),(0,4138,'',0,'','MANJULA SHAMJIBHAI GADHIYA','','','','',0,'SHAPAR VERAVAR','SHAPAR VERAVAR','GUJARAT','INDIA','1958-12-13','Y','67Y',0,0,0,'M','','','+91',9427223223,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-13 10:34:23','reception','2025-12-23 10:24:16'),(0,4139,'',0,'','RAMABEN MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-12-13','Y','75Y',75,0,0,'F','','','+91',9924462847,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-13 10:36:18','reception','2025-12-18 11:56:39'),(0,4140,'',0,'','SONIYABEN S HALADAL','','NEAR VISHW','RAIYA GAM  RAJKOT 360005','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-12-13','Y','39Y',0,0,0,'F','','','+91',9580255555,'+91',9898977786,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-13 10:39:55','reception','2025-12-22 18:25:48'),(0,4141,'',0,'','VIJAYBHAI B DESANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-12-13','Y','37Y',0,0,0,'M','','','+91',8460027287,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-13 10:46:22','','0000-00-00 00:00:00'),(0,4142,'',0,'','JAGRUTIBEN V MULIYA','','','','',0,'JUNAGHADH','JUNAGHADH','GUJARAT','INDIA','1979-12-13','Y','46Y',0,0,0,'F','','','+91',9824399887,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-13 10:51:57','','0000-00-00 00:00:00'),(0,4143,'',0,'','JAYESHBHAI VIRADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-13','Y','46Y',0,0,0,'M','','','+91',9974555515,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-13 10:55:05','','0000-00-00 00:00:00'),(0,4144,'',0,'','RAJNIKANTBHAI A VEGAD','','','','',0,'JAMJODHPUR','JAMJODHPUR','GUJARAT','INDIA','1978-12-13','Y','47Y',47,0,0,'M','','','+91',6351599661,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-13 11:04:23','reception','2025-12-13 12:20:25'),(0,4145,'',0,'','RUDRA A DAVE ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2013-12-13','Y','12Y',12,0,0,'M','','','+91',8866803043,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-13 11:04:24','drashti','2025-12-13 11:06:11'),(0,4146,'',0,'','PRAFULBHAI J BHADANIA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1960-12-13','Y','65Y',65,0,0,'M','','','+91',9979168092,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-13 11:06:11','priyanshi','2025-12-13 11:06:48'),(0,4147,'',0,'','NILAM HARDIK MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-12-13','Y','42Y',0,0,0,'F','','','+91',9727073730,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-13 11:08:39','','0000-00-00 00:00:00'),(0,4148,'',0,'','DHARABEN M VIROJA','','','','',0,'JAMJODHPUR','JAMJODHPUR','GUJARAT','INDIA','1990-12-13','Y','35Y',0,0,0,'F','','','+91',9924190952,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-13 11:13:30','','0000-00-00 00:00:00'),(0,4149,'',0,'','MITHILESHBHAI CHAUDHARY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-13','Y','40Y',0,0,0,'M','','','+91',7874055409,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-13 11:27:29','','0000-00-00 00:00:00'),(0,4150,'',0,'','KHUSHIBEN M GADHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-12-13','Y','23Y',0,0,0,'F','','','+91',9998170200,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-13 11:30:16','','0000-00-00 00:00:00'),(0,4151,'',0,'','KIRIT NARSHIBHAI GOHEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-13','Y','52Y',0,0,0,'M','','','+91',9228583283,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-13 11:30:40','drashti','2025-12-15 12:31:52'),(0,4152,'',0,'','GAUTAMBHAI R SHUKLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-12-13','Y','24Y',0,0,0,'M','','','+91',8238745635,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-13 11:35:39','','0000-00-00 00:00:00'),(0,4153,'',0,'','VIMALBHAI B BORIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-13','Y','52Y',0,0,0,'M','','','+91',9824437759,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-13 12:14:04','','0000-00-00 00:00:00'),(0,4154,'',0,'','KISHORBHAI DARJI','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1976-12-13','Y','49Y',0,0,0,'M','','','+91',9974700761,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-13 12:14:41','drashti','2025-12-20 10:44:03'),(0,4155,'',0,'','BHARATBHAI KAPADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-12-13','Y','69Y',0,0,0,'M','','','+91',9879570930,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-13 12:17:35','','0000-00-00 00:00:00'),(0,4156,'',0,'','HITESHBHAI KANABAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-12-13','Y','47Y',0,0,0,'M','','','+91',8160524909,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-13 12:19:27','','0000-00-00 00:00:00'),(0,4157,'',0,'','KISHANBHAI KALUBHAI MANEK','','','','',0,'','','GUJARAT','INDIA','1999-12-13','Y','26Y',0,0,0,'M','','','+91',8238967997,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-13 12:32:09','','0000-00-00 00:00:00'),(0,4158,'',0,'','JETUBEN JEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-12-13','Y','77Y',0,0,0,'F','','','+91',9429300354,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-13 12:33:02','','0000-00-00 00:00:00'),(0,4159,'',0,'','PUSHPABEN PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-12-13','Y','68Y',0,0,0,'F','','','+91',9428727379,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-13 12:34:20','','0000-00-00 00:00:00'),(0,4160,'',0,'','GIRISHBHAI U PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-12-13','Y','77Y',0,0,0,'M','','','+91',9725444897,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-13 12:35:29','','0000-00-00 00:00:00'),(0,4161,'',0,'','JAYABEN G MONPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-13','Y','70Y',0,0,0,'F','','','+91',9638743467,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-13 13:12:13','','0000-00-00 00:00:00'),(0,4162,'',0,'','HASUMATIBEN SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-12-13','Y','79Y',0,0,0,'F','','','+91',9879209099,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-13 17:34:11','','0000-00-00 00:00:00'),(0,4163,'',0,'','BHENIBEN GOVABHAI MADAM','','','KANSUMBRA PATIYA, ','NEAR AHIR KANYA CHHATRALAYA',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1975-12-13','Y','50Y',0,0,0,'F','','','+91',6351964798,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-13 17:48:12','vishal','2025-12-16 10:39:32'),(0,4164,'',0,'','TARAK VARSANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-12-13','Y','29Y',0,0,0,'M','','','+91',9429472486,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-13 17:57:54','priyanshi','2025-12-17 10:04:12'),(0,4165,'',0,'','BABUBHAI M DESAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1942-12-13','Y','83Y',0,0,0,'M','','','+91',9427562494,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-13 18:01:39','','0000-00-00 00:00:00'),(0,4166,'',0,'','SAMEERGIRI G GOSWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-13','Y','30Y',0,0,0,'M','','','+91',9327817250,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-13 18:42:23','','0000-00-00 00:00:00'),(0,4167,'',0,'','VISHALBHAI KACHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-12-13','Y','37Y',0,0,0,'M','','','+91',9033306718,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-13 19:26:43','','0000-00-00 00:00:00'),(0,4168,'',0,'','MITALBEN VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-14','Y','25Y',0,0,0,'F','','','+91',7643811111,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-14 09:36:01','','0000-00-00 00:00:00'),(0,4169,'',0,'','MITALBEN VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-14','Y','25Y',0,0,0,'F','','','+91',7643811111,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-14 10:01:42','','0000-00-00 00:00:00'),(0,4170,'',0,'','JITENDRABHAI V VASJADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-12-14','Y','42Y',0,0,0,'M','','','+91',9723015155,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-14 10:40:01','drashti','2025-12-18 17:36:19'),(0,4171,'',0,'','MITALBEN VIJAYBHAI VAGHELA','','','DHROL CHAMUNDA PLOT','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1999-12-14','Y','26Y',0,0,0,'F','','','+91',9879638111,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-14 10:59:11','','0000-00-00 00:00:00'),(0,4172,'',0,'','MANSUKHBHAI G KHAMBHAYTA','','','HUDKO QUARTER A-75 OPP[ MANAV SEVA ASHRAM','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-14','Y','70Y',0,0,0,'M','','','+91',9033700777,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-14 11:30:38','','0000-00-00 00:00:00'),(0,4173,'',0,'','DHIRAJBHAI SAVADIYA','','','THANGADH','',0,'','','GUJARAT','INDIA','1968-12-14','Y','57Y',0,0,0,'M','','','+91',9099312018,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-14 12:58:31','','0000-00-00 00:00:00'),(0,4174,'',0,'','AMISHA KOTHARI','','','COPPER HEIGHTS,','SADHU VASVANI ROAD, GOPAL CHOWK',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-09-09','N','54Y',0,0,0,'M','','','+91',9824369885,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-14 21:17:46','','0000-00-00 00:00:00'),(0,4175,'',0,'','DARSHIL UNADKAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-12-15','Y','21Y',0,0,0,'M','','','+91',9925741088,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 08:50:21','manshi','2025-12-22 18:22:01'),(0,4176,'',0,'','SAJANBEN G MODHVADIYA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1965-12-15','Y','60Y',0,0,0,'F','','','+91',9909398598,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-15 09:14:59','','0000-00-00 00:00:00'),(0,4177,'',0,'','NASIMBEN JUNEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-15','Y','40Y',0,0,0,'F','','','+91',9904795247,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 09:15:05','','0000-00-00 00:00:00'),(0,4178,'',0,'','REKHABEN D FULTARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-12-15','Y','47Y',0,0,0,'F','','','+91',9428231683,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 10:10:32','','0000-00-00 00:00:00'),(0,4179,'',0,'','RANJANBEN A VAISHNAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-15','Y','55Y',0,0,0,'F','','','+91',9662335889,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 10:15:39','','0000-00-00 00:00:00'),(0,4180,'',0,'','DAXABEN S PARMAR','','','','',0,'KODINAR','KODINAR','GUJARAT','INDIA','1976-12-15','Y','49Y',0,0,0,'F','','','+91',9228171333,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 10:25:08','','0000-00-00 00:00:00'),(0,4181,'',0,'','CHHAGANBHAI D RAIYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-12-15','Y','63Y',0,0,0,'M','','','+91',9426737350,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 10:30:15','','0000-00-00 00:00:00'),(0,4182,'',0,'','MANSHIBEN D BODA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-12-15','Y','42Y',0,0,0,'F','','','+91',8849568668,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-15 10:32:50','','0000-00-00 00:00:00'),(0,4183,'',0,'','MEENABEN J TARVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-12-15','Y','35Y',0,0,0,'F','','','+91',8799012443,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-15 10:39:47','','0000-00-00 00:00:00'),(0,4184,'',0,'','BHAVNABEN RAMESHBHAI MALVIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-12-15','Y','62Y',0,0,0,'F','','','+91',9375888884,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 10:48:23','','0000-00-00 00:00:00'),(0,4185,'',0,'','VAKTUBEN GHELUBHAI BAMBHANIYA','','','','',0,'KODINAR','KODINAR','GUJARAT','INDIA','1970-12-15','Y','55Y',0,0,0,'F','','','+91',9904318401,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 10:51:10','','0000-00-00 00:00:00'),(0,4186,'',0,'','PAYALBA KARNSINH VAGHELA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1999-12-15','Y','26Y',0,0,0,'F','','','+91',9510219485,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 10:53:24','','0000-00-00 00:00:00'),(0,4187,'',0,'','BIPINCHANDRA J THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-15','Y','70Y',0,0,0,'M','','','+91',9825314600,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-15 10:54:40','janvi','2025-12-23 17:31:27'),(0,4188,'',0,'','BHAVIKBHAI VASOYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-15','Y','30Y',0,0,0,'M','','','+91',9712727153,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 10:56:40','','0000-00-00 00:00:00'),(0,4189,'',0,'','VARSHABEN BODAR ','','','SADHUVASVANI ROADNEAR PARIJAT RESIDENCY','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-09-16','N','46Y',0,0,0,'F','','','+91',9725275153,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-15 11:04:38','janvi','2025-12-22 12:22:15'),(0,4190,'',0,'','TEJIBEN ZAPDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-15','Y','60Y',0,0,0,'F','','','+91',8160078478,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-15 11:07:44','manshi','2025-12-19 18:30:29'),(0,4191,'',0,'','DHANLAXMIBEN M NATHWANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-12-15','Y','62Y',0,0,0,'F','','','+91',8155913519,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 11:11:13','','0000-00-00 00:00:00'),(0,4192,'',0,'','DIWALIBEN N CHANDPA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-12-15','Y','51Y',0,0,0,'F','','','+91',9898604909,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-15 11:12:09','','0000-00-00 00:00:00'),(0,4193,'',0,'','NANJIBHAI D CHANDPA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-15','Y','60Y',0,0,0,'M','','','+91',9898604909,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-15 11:12:58','','0000-00-00 00:00:00'),(0,4194,'',0,'','JAGDISHBHAI J VALA','','','','',0,'MANAVADAR','MANAVADAR','GUJARAT','INDIA','1964-12-15','Y','61Y',61,0,0,'M','','','+91',8200865006,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-15 11:14:02','shweta','2025-12-15 11:20:41'),(0,4195,'',0,'','KANTIBHAI YADAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-12-15','Y','61Y',0,0,0,'M','','','+91',9624057232,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 11:14:09','','0000-00-00 00:00:00'),(0,4196,'',0,'','MANIBEN D TANK','','','','',0,'DHANGADHRA','DHANGADHRA','GUJARAT','INDIA','1943-12-15','Y','82Y',0,0,0,'F','','','+91',8980855253,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-15 11:14:37','','0000-00-00 00:00:00'),(0,4197,'',0,'','DAXABEN MAKWANA ','','','','',0,'TALALA','TALALA','GUJARAT','INDIA','1995-12-15','Y','30Y',0,0,0,'F','','','+91',7984973409,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 11:17:17','','0000-00-00 00:00:00'),(0,4198,'',0,'','NAVNITBHAI V KANTARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-12-15','Y','51Y',0,0,0,'M','','','+91',9902506776,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 11:17:59','reception','2025-12-22 11:01:11'),(0,4199,'',0,'','CHETNABEN PUJARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-15','Y','52Y',0,0,0,'F','','','+91',9427667322,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-15 11:19:19','','0000-00-00 00:00:00'),(0,4200,'',0,'','NAVINBHAI RAVAL','','','','',0,'VAPI','VAPI','GUJARAT','INDIA','1950-12-15','Y','75Y',75,0,0,'M','','','+91',7600854099,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 11:19:46','reception','2025-12-15 12:37:58'),(0,4201,'',0,'','MANJULABEN M NIMAVAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-12-15','Y','73Y',73,0,0,'F','','','+91',8140701900,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-15 11:20:16','shweta','2025-12-15 11:22:38'),(0,4202,'',0,'','MANHARBEN GOSWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-12-15','Y','62Y',0,0,0,'F','','','+91',8320268044,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 11:26:03','','0000-00-00 00:00:00'),(0,4203,'',0,'','SHANTIBEN N TUKADIYA','','','','',0,'RANAVAV','RANAVAV','GUJARAT','INDIA','2002-12-15','Y','23Y',0,0,0,'F','','','+91',9773092349,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-15 11:27:43','','0000-00-00 00:00:00'),(0,4204,'',0,'','KUSUMBEN R BHATTI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-12-15','Y','54Y',0,0,0,'F','','','+91',8401454594,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-15 11:30:53','','0000-00-00 00:00:00'),(0,4205,'',0,'','SMITABEN G SHUKLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-12-15','Y','66Y',66,0,0,'F','','','+91',9978231732,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-15 11:35:05','shweta','2025-12-15 11:44:39'),(0,4206,'',0,'','CHAMPABEN K CHANDARANA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1965-12-15','Y','60Y',0,0,0,'F','','','+91',9428703204,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 11:37:32','','0000-00-00 00:00:00'),(0,4207,'',0,'','BATUKBHAI MARU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-15','Y','65Y',0,0,0,'M','','','+91',6351921240,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 11:37:40','','0000-00-00 00:00:00'),(0,4208,'',0,'','PREETIBA PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-15','Y','50Y',50,0,0,'F','','','+91',7575010070,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 11:40:47','priyanshi','2025-12-15 11:51:00'),(0,4209,'',0,'','DHARMISHTHABEN H SARVAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-15','Y','46Y',0,0,0,'F','','','+91',9426413581,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-15 11:43:33','','0000-00-00 00:00:00'),(0,4210,'',0,'','JUBIBEN A MUSANI','','','','',0,'DARI','DARI','GUJARAT','INDIA','1996-12-15','Y','29Y',29,0,0,'F','','','+91',6352593298,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 11:47:17','reception','2025-12-15 11:49:01'),(0,4211,'',0,'','ASRAFBHAI LADHAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-12-15','Y','61Y',0,0,0,'M','','','+91',9723026143,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 11:51:38','','0000-00-00 00:00:00'),(0,4212,'',0,'','YUNUSHBHAI Y KHALIFA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-15','Y','45Y',0,0,0,'M','','','+91',9978816700,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-15 11:54:29','','0000-00-00 00:00:00'),(0,4213,'',0,'','DIYABEN K KALAVADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-12-15','Y','21Y',0,0,0,'F','','','+91',9978474200,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-15 11:57:11','','0000-00-00 00:00:00'),(0,4214,'',0,'','MEENABEN A SATNATH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-12-15','Y','54Y',0,0,0,'F','','','+91',9998243358,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-15 12:04:46','','0000-00-00 00:00:00'),(0,4215,'',0,'','JAYABEN C KAMARIYA','','','','',0,'KHAMBHALA','KHAMBHALA','GUJARAT','INDIA','1940-12-15','Y','85Y',0,0,0,'F','','','+91',9726363715,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-15 12:08:29','janvi','2025-12-22 18:58:34'),(0,4216,'',0,'','DILIPBHAI H NADIYAPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-15','Y','60Y',0,0,0,'M','','','+91',7874344198,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 12:11:32','','0000-00-00 00:00:00'),(0,4217,'',0,'','LADUBEN SOLANKI','','','','',0,'DIU','DIU','GUJARAT','INDIA','1937-12-15','Y','88Y',0,0,0,'F','','','+91',7228852285,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-15 12:12:44','','0000-00-00 00:00:00'),(0,4218,'',0,'','DR PARTH VITHLANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-12-15','Y','24Y',0,0,0,'M','','','+91',9409072207,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-15 12:15:14','','0000-00-00 00:00:00'),(0,4219,'',0,'','PANKAJBHAI M SAGAR','','','','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1971-12-15','Y','54Y',0,0,0,'M','','','+91',7433061583,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-15 12:15:40','','0000-00-00 00:00:00'),(0,4220,'',0,'','YAGNESHBHAI SARTEJA','','','','',0,'JAM KHAMBHADIYA','JAM KHAMBHADIYA','GUJARAT','INDIA','1998-12-15','Y','27Y',0,0,0,'M','','','+91',8758242442,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 12:17:33','','0000-00-00 00:00:00'),(0,4221,'',0,'','JAKIRBHAI H CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-15','Y','45Y',0,0,0,'M','','','+91',9714445689,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 12:18:18','','0000-00-00 00:00:00'),(0,4222,'',0,'','BIPINCHANDRA J THAKAR','','','GANESH BHAVAN 2-AKSHAR NAGAR NEAR LAKH BUNGLOW','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-04-24','N','70Y',0,0,0,'M','','','+91',9825314600,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-15 12:33:13','','0000-00-00 00:00:00'),(0,4223,'',0,'','VAISHALIBEN K SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-12-15','Y','47Y',0,0,0,'F','','','+91',8160444313,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 12:39:15','','0000-00-00 00:00:00'),(0,4224,'',0,'','KISHANBHAI RUDAKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-12-15','Y','28Y',0,0,0,'M','','','+91',7574996626,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 12:42:08','','0000-00-00 00:00:00'),(0,4225,'',0,'','MANOJBHAI KARVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-12-15','Y','26Y',0,0,0,'M','','','+91',7016122817,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 13:02:56','','0000-00-00 00:00:00'),(0,4226,'',0,'','PANTH PANARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2015-12-15','Y','10Y0M1D',0,0,0,'M','','','+91',9601038888,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-15 13:26:45','drashti','2025-12-16 12:40:01'),(0,4227,'',0,'','ANKUSH KUMAR','','','RAIYAGAM','',0,'','','GUJARAT','INDIA','2007-12-15','Y','18Y',0,0,0,'M','','','+91',7572857852,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-15 13:30:36','','0000-00-00 00:00:00'),(0,4228,'',0,'','MANIBEN TANK','','','KODH KALYANPUR,DHANGADHRA','',0,'','','GUJARAT','INDIA','1943-12-15','Y','82Y',0,0,0,'F','','','+91',8980855253,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-15 15:00:09','','0000-00-00 00:00:00'),(0,4229,'',0,'','BHAVISHA P GOSWAMI','','','B-602,SPECIFIC STAR OPP BPCL PETROL PUMP REL NAGAR','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-01-16','N','45Y',0,0,0,'F','','','+91',9724641157,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-15 15:26:43','','0000-00-00 00:00:00'),(0,4230,'',0,'','VINUBHAI L ESHOTIYA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1970-12-15','Y','55Y',55,0,0,'M','','','+91',9558121203,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 16:27:58','reception','2025-12-15 16:28:58'),(0,4231,'',0,'',' MIHIRBHAI VAZA','','','','',0,'KODINAR','KODINAR','GUJARAT','INDIA','2008-12-15','Y','17Y',0,0,0,'M','','','+91',9714191726,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 16:41:38','','0000-00-00 00:00:00'),(0,4232,'',0,'','MADHAVJIBHAI M DABHI','','','','',0,'LODHIKA','LODHIKA','GUJARAT','INDIA','1950-12-15','Y','75Y',75,0,0,'M','','','+91',9725833006,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 17:07:25','reception','2025-12-22 10:54:16'),(0,4233,'',0,'','ASHWINBHAI JESANI','','','BANDRA','GONDAL ',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-15','Y','55Y',0,0,0,'M','','','+91',9825208688,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-15 17:14:21','','0000-00-00 00:00:00'),(0,4234,'',0,'','RASHMIKABEN BUNDELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-12-15','Y','35Y',0,0,0,'F','','','+91',8160380976,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 17:17:21','','0000-00-00 00:00:00'),(0,4235,'',0,'','MANSHUKHBHAI KAKRECHA','','','','',0,'VASAVADAR','VASAVADAR','GUJARAT','INDIA','1963-12-15','Y','62Y',0,0,0,'M','','','+91',9925487576,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-15 17:20:18','','0000-00-00 00:00:00'),(0,4236,'',0,'','JAYABEN GODHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-12-15','Y','54Y',0,0,0,'F','','','+91',9428469284,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 17:25:45','','0000-00-00 00:00:00'),(0,4237,'',0,'','NISHITBHAI CHANDARANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-12-15','Y','43Y',0,0,0,'M','','','+91',9879493030,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-15 17:32:13','','0000-00-00 00:00:00'),(0,4238,'',0,'','JOSHNABEN V VEKARIYA','','','','',0,'NAVAGAM ','NAVAGAM ','GUJARAT','INDIA','1965-12-15','Y','60Y',0,0,0,'M','','','+91',9909499574,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 17:32:59','','0000-00-00 00:00:00'),(0,4239,'',0,'','HARSHABEN H RATANPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-12-15','Y','51Y',0,0,0,'F','','','+91',9426876864,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 17:41:15','','0000-00-00 00:00:00'),(0,4240,'',0,'','KISHANBHAI D PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-12-15','Y','21Y',0,0,0,'M','','','+91',9898689868,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 17:52:39','','0000-00-00 00:00:00'),(0,4241,'',0,'','USHABEN P POPAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-12-15','Y','71Y',71,0,0,'F','','','+91',9033033549,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-15 17:59:18','shweta','2025-12-15 18:00:34'),(0,4242,'',0,'','SONALBEN S GOSAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-15','Y','45Y',0,0,0,'F','','','+91',9825046467,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-15 18:03:31','janvi','2025-12-18 10:51:31'),(0,4243,'',0,'','TRUPTIBEN K JADAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-12-15','Y','59Y',0,0,0,'F','','','+91',7984416761,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-15 18:06:31','','0000-00-00 00:00:00'),(0,4244,'',0,'','ASHOKBHAI K MANSATA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-12-15','Y','80Y',0,0,0,'M','','','+91',9051231051,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 18:06:34','','0000-00-00 00:00:00'),(0,4245,'',0,'','BHIKHUBHA BALUBHA JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-12-15','Y','67Y',67,0,0,'M','','','+91',9825304401,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 18:08:28','reception','2025-12-15 18:09:29'),(0,4246,'',0,'','PRABHABEN JADAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-12-15','Y','33Y',0,0,0,'F','','','+91',9586188417,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 18:14:37','','0000-00-00 00:00:00'),(0,4247,'',0,'','RAMABEN L SANGHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-12-15','Y','61Y',0,0,0,'F','','','+91',9327124244,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 18:15:27','','0000-00-00 00:00:00'),(0,4248,'',0,'','DAXABEN D JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-12-15','Y','66Y',0,0,0,'F','','','+91',9898170543,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 18:28:54','','0000-00-00 00:00:00'),(0,4249,'',0,'','KULSUMBEN KALUDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-12-15','Y','66Y',66,0,0,'F','','','+91',7227000123,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-15 18:29:00','urvashi','2025-12-15 18:30:11'),(0,4250,'',0,'','RAFIQBHAI BHATTI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-12-15','Y','53Y',0,0,0,'M','','','+91',9879760082,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 18:43:02','','0000-00-00 00:00:00'),(0,4251,'',0,'','KIRTIBEN R PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-15','Y','46Y',0,0,0,'F','','','+91',9265773657,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 18:46:36','','0000-00-00 00:00:00'),(0,4252,'',0,'','JINALBEN B MAKWANA','','','','',0,'','','GUJARAT','INDIA','1993-12-15','Y','32Y',0,0,0,'F','','','+91',9898365676,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 18:55:35','reception','2025-12-16 16:55:53'),(0,4253,'',0,'','MAHAVIRSINH K PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-15','Y','46Y',0,0,0,'M','','','+91',9824311490,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 18:58:57','','0000-00-00 00:00:00'),(0,4254,'',0,'','KAVITABEN LIMBASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-15','Y','55Y',0,0,0,'F','','','+91',8849713115,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 19:20:31','','0000-00-00 00:00:00'),(0,4255,'',0,'','VARUNBHAI AVLANI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-12-15','Y','35Y',0,0,0,'M','','','+91',9428298466,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 19:20:55','','0000-00-00 00:00:00'),(0,4256,'',0,'','MANISHABEN P JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-15','Y','55Y',0,0,0,'F','','','+91',9924015436,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-15 19:36:14','','0000-00-00 00:00:00'),(0,4257,'',0,'','DIPAKBHAI M GOSAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-12-15','Y','36Y',0,0,0,'M','','','+91',9979598633,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-15 20:02:47','','0000-00-00 00:00:00'),(0,4258,'',0,'','MANSHUKHBHAI KAKRECHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-12-15','Y','62Y',0,0,0,'M','','','+91',9925487576,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-15 20:04:09','','0000-00-00 00:00:00'),(0,4259,'',0,'','JAGRUTIBEN KANANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-15','Y','46Y',0,0,0,'F','','','+91',9998640856,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-15 20:16:19','','0000-00-00 00:00:00'),(0,4260,'',0,'','JUNEDBIN AMINBHAI SHEKH','','','BAHGVATI SOC, ST NO-3, DUDHSAGAR ROAD,','NEAR TERESA ASHRAM',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-01-12','N','28Y',0,0,0,'M','','','+91',7405210324,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-16 09:56:42','','0000-00-00 00:00:00'),(0,4261,'',0,'','VALABHAI GAMARA','','','','',0,'NYARA','NYARA','GUJARAT','INDIA','1955-12-16','Y','70Y',70,0,0,'M','','','+91',9265847753,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-16 10:02:05','janvi','2025-12-16 10:02:33'),(0,4262,'',0,'','SUBHASHBHAI H KESHARIYA','','','RUDRA PRAYAG APPT, 3- MUMBASA AVENUE PARK',',B/H RAIYA TELEPHONE EXCHANGE, 150 FT RING ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-01-01','N','69Y',0,0,0,'M','','','+91',9898724248,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-16 10:02:46','vishal','2025-12-16 10:47:01'),(0,4263,'',0,'','HEERABEN CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-16','Y','70Y',0,0,0,'F','','','+91',9998272900,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-16 10:05:53','','0000-00-00 00:00:00'),(0,4264,'',0,'','BHAVNABEN K CHATROLA','','','','',0,'SURAT','SURAT','GUJARAT','INDIA','1975-12-16','Y','50Y',50,0,0,'F','','','+91',9979672421,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-16 10:08:39','reception','2025-12-16 10:09:58'),(0,4265,'',0,'','PIPARIYA DEVRAJBHAI ','','','','',0,'DHROL','DHROL','GUJARAT','INDIA','1965-12-16','Y','60Y',0,0,0,'M','','','+91',8238202128,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-16 10:25:11','','0000-00-00 00:00:00'),(0,4266,'',0,'','VITTHALBHAI L JIVANI','','','','',0,'SAJANPAR','SAJANPAR','GUJARAT','INDIA','1980-12-16','Y','45Y',0,0,0,'M','','','+91',9825827599,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 10:28:15','','0000-00-00 00:00:00'),(0,4267,'',0,'','SHITALBEN J HINDOCHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-12-16','Y','42Y',0,0,0,'F','','','+91',9879309289,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-16 10:38:06','','0000-00-00 00:00:00'),(0,4268,'',0,'','VIJYABEN K SANKHAVRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-16','Y','65Y',0,0,0,'F','','','+91',9574465809,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 10:43:47','','0000-00-00 00:00:00'),(0,4269,'',0,'','DAXABEN JAYESHBHAI BHUT','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1974-12-16','Y','51Y',0,0,0,'F','','','+91',9313455017,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 10:52:39','','0000-00-00 00:00:00'),(0,4270,'',0,'','DILIPBHAI G FALDU','','','','',0,'KUTIYANA','KUTIYANA','GUJARAT','INDIA','1967-12-16','Y','58Y',0,0,0,'M','','','+91',9512050362,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-16 11:01:04','','0000-00-00 00:00:00'),(0,4271,'',0,'','GEETABEN BABUBHAI NAYAK','','','','',0,'AHEMDAVAD','AHEMDAVAD','GUJARAT','INDIA','1975-12-16','Y','50Y',0,0,0,'F','','','+91',9328108054,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 11:06:02','','0000-00-00 00:00:00'),(0,4272,'',0,'','ABHISHEK MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-16','Y','25Y',0,0,0,'M','','','+91',8799628181,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-16 11:07:15','','0000-00-00 00:00:00'),(0,4273,'',0,'','RASILABEN DHRANGDIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-12-16','Y','72Y',0,0,0,'F','','','+91',9727611222,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 11:08:55','','0000-00-00 00:00:00'),(0,4274,'',0,'','CHETNABEN J SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-12-16','Y','53Y',0,0,0,'F','','','+91',9998624100,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-16 11:10:22','drashti','2025-12-19 13:36:59'),(0,4275,'',0,'','SAVITA KUMARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-12-16','Y','34Y',0,0,0,'F','','','+91',6351677877,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-16 11:16:47','','0000-00-00 00:00:00'),(0,4276,'',0,'','RAVAL BHAMINI MADHUSUDAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-12-16','Y','69Y',0,0,0,'F','','','+91',9227700983,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-16 11:18:10','','0000-00-00 00:00:00'),(0,4277,'',0,'','CHANDRESHBHAI VARU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-16','Y','40Y',0,0,0,'M','','','+91',9638026632,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-16 11:20:09','','0000-00-00 00:00:00'),(0,4278,'',0,'','MEENABEN P GANGADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-16','Y','50Y',0,0,0,'F','','','+91',9824222029,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-16 11:27:27','','0000-00-00 00:00:00'),(0,4279,'',0,'','SHANTIBA B JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-12-16','Y','58Y',0,0,0,'F','','','+91',9376872700,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-16 11:28:03','','0000-00-00 00:00:00'),(0,4280,'',0,'','KASMIRABEN R POTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-12-16','Y','56Y',0,0,0,'F','','','+91',9428703028,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 11:28:58','','0000-00-00 00:00:00'),(0,4281,'',0,'','GEETABEN VAGHERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-12-16','Y','29Y',0,0,0,'F','','','+91',8160727699,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-16 11:34:24','','0000-00-00 00:00:00'),(0,4282,'',0,'','DHARMESHBHAI SAKHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-12-16','Y','41Y',0,0,0,'M','','','+91',9925373256,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-16 11:44:19','','0000-00-00 00:00:00'),(0,4283,'',0,'','YOGESHBHAI SHUKLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-12-16','Y','68Y',0,0,0,'M','','','+91',9427770707,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-16 11:44:49','','0000-00-00 00:00:00'),(0,4284,'',0,'','KAVITABEN CHANDARANA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1970-12-16','Y','55Y',0,0,0,'F','','','+91',9825416032,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 11:50:47','','0000-00-00 00:00:00'),(0,4285,'',0,'','SAROJBEN HIRANI','','','GAURAV PARK, L-23,','KALAWAD ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-16','Y','70Y',0,0,0,'F','','','+91',8849364494,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-16 11:51:13','vishal','2025-12-21 20:37:59'),(0,4286,'',0,'','KIRTIBEN UDESHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-12-16','Y','58Y',0,0,0,'F','','','+91',9998424846,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-16 11:57:51','','0000-00-00 00:00:00'),(0,4287,'',0,'','VILASBEN R BAGADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-12-16','Y','66Y',0,0,0,'F','','','+91',9426255815,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-16 11:59:46','','0000-00-00 00:00:00'),(0,4288,'',0,'','RIDDHIBEN MEHULBHAI PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-12-16','Y','36Y',0,0,0,'F','','','+91',9099055740,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 12:14:03','','0000-00-00 00:00:00'),(0,4289,'',0,'','KANTIBHAI DHRANGDHRIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1942-12-16','Y','83Y',83,0,0,'M','','','+91',9727311222,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-16 12:16:01','drashti','2025-12-16 12:18:24'),(0,4290,'',0,'','SANGEETABEN A MAKWANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-12-16','Y','39Y',0,0,0,'F','','','+91',9924957381,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-16 12:21:18','','0000-00-00 00:00:00'),(0,4291,'',0,'','HARSHABEN GOSWAMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-12-16','Y','48Y',0,0,0,'F','','','+91',9375000303,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-16 12:34:20','','0000-00-00 00:00:00'),(0,4292,'',0,'','JASUBEN CHOTALIYA','','','','',0,'ANKLESHWAR','ANKLESHWAR','GUJARAT','INDIA','1961-12-16','Y','64Y',0,0,0,'F','','','+91',8347600444,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-16 12:44:16','','0000-00-00 00:00:00'),(0,4293,'',0,'','RITABEN V VARSANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-16','Y','55Y',0,0,0,'F','','','+91',8160527138,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-16 12:55:15','','0000-00-00 00:00:00'),(0,4294,'',0,'','KIRITBHAI KATIRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-12-16','Y','62Y',0,0,0,'M','','','+91',9714484489,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 12:59:44','','0000-00-00 00:00:00'),(0,4295,'',0,'','NARESHBHAI K THUMMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-12-16','Y','41Y',0,0,0,'M','','','+91',9687362664,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-16 13:08:19','','0000-00-00 00:00:00'),(0,4296,'',0,'','HEERABEN R MARU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-12-16','Y','58Y',0,0,0,'F','','','+91',9687394999,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-16 13:08:38','','0000-00-00 00:00:00'),(0,4297,'',0,'','DIVYESHBHAI DESAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-12-16','Y','63Y',0,0,0,'M','','','+91',9898032350,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 13:10:07','','0000-00-00 00:00:00'),(0,4298,'',0,'','BHAVISHABEN T GOSAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-12-16','Y','23Y',0,0,0,'F','','','+91',9724641157,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-16 13:13:41','drashti','2025-12-23 12:41:52'),(0,4299,'',0,'','SEEMA YOGESHBHAI RAVESHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-12-16','Y','33Y',0,0,0,'F','','','+91',8000680001,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 13:16:23','','0000-00-00 00:00:00'),(0,4300,'',0,'','JARNAV PUJARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2021-03-09','N','04Y9M',0,0,0,'M','','','+91',9925028157,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 14:23:02','','0000-00-00 00:00:00'),(0,4301,'',0,'','SHAILESHPARI GOSAI','','','VIMA NAGAR, ','RAIYA ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-07-01','N','53Y',0,0,0,'M','','','+91',9913324246,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-16 15:45:00','','0000-00-00 00:00:00'),(0,4302,'',0,'','GORDHANBHAI G MITHAPARA','','','','',0,'SAILA SURENDRANAGAR','SAILA SURENDRANAGAR','GUJARAT','INDIA','1960-12-16','Y','65Y',0,0,0,'M','','','+91',8849727316,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 16:20:07','','0000-00-00 00:00:00'),(0,4303,'',0,'','MADHUBEN KHANPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-12-16','Y','61Y',0,0,0,'F','','','+91',8849090743,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 16:39:26','','0000-00-00 00:00:00'),(0,4304,'',0,'','KAMLABEN KISHORBHAI JETHVA','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1981-12-16','Y','44Y',0,0,0,'F','','','+91',9913539591,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 16:46:06','','0000-00-00 00:00:00'),(0,4305,'',0,'','ADILBHAI A KHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-16','Y','25Y',0,0,0,'M','','','+91',7490825858,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 17:23:58','','0000-00-00 00:00:00'),(0,4306,'',0,'','NIRAV V PARMAR','','','','',0,'JAMANGAR','JAMANGAR','GUJARAT','INDIA','2014-12-16','Y','11Y',0,0,0,'M','','','+91',9998655185,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-16 17:27:37','','0000-00-00 00:00:00'),(0,4307,'',0,'','DARSHITA VAGH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-12-16','Y','18Y',0,0,0,'F','','','+91',9824534015,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-16 17:42:47','','0000-00-00 00:00:00'),(0,4308,'',0,'','URMILABEN R PAVAGADHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-12-16','Y','78Y',0,0,0,'F','','','+91',9428226744,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-16 17:42:58','','0000-00-00 00:00:00'),(0,4309,'',0,'','MITABEN M VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-16','Y','52Y',0,0,0,'F','','','+91',8200416916,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 17:50:05','','0000-00-00 00:00:00'),(0,4310,'',0,'','MITALBEN TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-16','Y','30Y',0,0,0,'F','','','+91',9228604403,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-16 17:58:59','','0000-00-00 00:00:00'),(0,4311,'',0,'','ROHITBHAI R RUPANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-12-16','Y','49Y',0,0,0,'M','','','+91',9824897509,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-16 18:01:34','','0000-00-00 00:00:00'),(0,4312,'',0,'','VIVEK SAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-12-16','Y','21Y',0,0,0,'M','','','+91',9664856250,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-16 18:03:50','','0000-00-00 00:00:00'),(0,4313,'',0,'','KIRTIBEN AGRAVAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-16','Y','30Y',0,0,0,'F','','','+91',9638575954,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 18:05:50','','0000-00-00 00:00:00'),(0,4314,'',0,'','KESHVI PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-12-16','Y','19Y',0,0,0,'F','','','+91',9978430843,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-16 18:18:57','drashti','2025-12-19 10:56:53'),(0,4315,'',0,'','RASHILABEN NAVINBHAI DEVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-12-16','Y','77Y',0,0,0,'F','','','+91',94090006399,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 18:24:26','','0000-00-00 00:00:00'),(0,4316,'',0,'','HETALBEN SORATHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-16','Y','40Y',0,0,0,'F','','','+91',9879533449,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 18:28:19','','0000-00-00 00:00:00'),(0,4317,'',0,'','DILIPKUMAR A UNADKAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-16','Y','60Y',0,0,0,'M','','','+91',9925800079,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-16 18:33:34','','0000-00-00 00:00:00'),(0,4318,'',0,'','PRAGNABEN B RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-12-16','Y','61Y',0,0,0,'F','','','+91',7698027933,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-16 18:45:15','','0000-00-00 00:00:00'),(0,4319,'',0,'','LALJIBHAI M SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-16','Y','40Y',0,0,0,'M','','','+91',9227028533,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-16 18:48:04','','0000-00-00 00:00:00'),(0,4320,'',0,'','BHAVESH K DAVDA','','','HARIKRISHNA HEIGHT, ','NEAR AIRTEL OFFICE, MADHAPAR CHOWKDI',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-06-25','N','42Y',0,0,0,'M','','','+91',9925233256,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-16 18:56:41','riya','2025-12-20 13:29:00'),(0,4321,'',0,'','SURESHBHAI VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-16','Y','60Y',0,0,0,'M','','','+91',9824833105,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-16 19:04:27','','0000-00-00 00:00:00'),(0,4322,'',0,'','RATANBEN P JILIYA','','','','',0,'BOTAD','BOTAD','GUJARAT','INDIA','1969-12-16','Y','56Y',0,0,0,'F','','','+91',9510496555,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-16 19:06:19','','0000-00-00 00:00:00'),(0,4323,'',0,'','GODAVRIBEN JAVIYA','','','KHAMBHALA','PADDHARI',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1940-12-16','Y','85Y',0,0,0,'F','','','+91',6352355007,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-16 19:09:49','vishal','2025-12-16 20:21:25'),(0,4324,'',0,'','DHARAMBA M ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-12-16','Y','48Y',0,0,0,'F','','','+91',9925915311,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-16 19:36:01','','0000-00-00 00:00:00'),(0,4325,'',0,'','RAJANI BHUPENDRABHAI ','','','GARDEN CITY, ','SADHU VASVANI ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-01-01','N','78Y',0,0,0,'M','','','+91',9925474275,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-16 21:05:47','drashti','2025-12-20 11:45:40'),(0,4326,'',0,'','JITUBHAI VALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-17','Y','45Y',0,0,0,'M','','','+91',9925723815,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 08:40:16','','0000-00-00 00:00:00'),(0,4327,'',0,'','BHARTIBEN NATHWANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-12-17','Y','64Y',0,0,0,'F','','','+91',8866573768,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 08:45:14','','0000-00-00 00:00:00'),(0,4328,'',0,'','VILASBEN JAMANBHAI VARSANI','','','','',0,'CHITRAVAD','CHITRAVAD','GUJARAT','INDIA','1965-12-17','Y','60Y',0,0,0,'F','','','+91',8000570016,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 09:50:05','','0000-00-00 00:00:00'),(0,4329,'',0,'','VIKRAMBHAI SOMABHAI PANARA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1997-12-17','Y','28Y',0,0,0,'M','','','+91',9099141204,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 09:56:01','','0000-00-00 00:00:00'),(0,4330,'',0,'','MANJUBEN A AGHARA','','','','',0,'KHAKHIJARIYA','KHAKHIJARIYA','GUJARAT','INDIA','1944-12-17','Y','81Y',0,0,0,'F','','','+91',8530870402,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 10:16:46','','0000-00-00 00:00:00'),(0,4331,'',0,'','SABERABEN G SODHA','','','','',0,'UNA','UNA','GUJARAT','INDIA','1970-12-17','Y','55Y',0,0,0,'F','','','+91',9824561407,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 10:38:45','','0000-00-00 00:00:00'),(0,4332,'',0,'','ANUPAMA TATHE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-01-07','N','33Y',33,0,0,'F','','','+91',8179309454,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-17 10:45:40','priyanshi','2025-12-17 10:46:55'),(0,4333,'',0,'','ARVINDBHAI K THAKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-12-17','Y','67Y',0,0,0,'M','','','+91',9979799303,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 10:51:17','','0000-00-00 00:00:00'),(0,4334,'',0,'','NATHIBA B JADEJA','','','','',0,'DHROL JAMNAGAR','DHROL JAMNAGAR','GUJARAT','INDIA','1965-12-17','Y','60Y',0,0,0,'F','','','+91',9725512651,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-17 10:55:54','','0000-00-00 00:00:00'),(0,4335,'',0,'','BHIMJIBHAI D SONAGRA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1973-12-17','Y','52Y',0,0,0,'M','','','+91',9824598577,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 10:58:07','','0000-00-00 00:00:00'),(0,4336,'',0,'','AMRUTLAL D DOBARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-12-17','Y','61Y',0,0,0,'M','','','+91',9428287108,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 11:02:54','','0000-00-00 00:00:00'),(0,4337,'',0,'','BHANUBEN J KACHHADIYA','','','','',0,'NAVAGAM','NAVAGAM','GUJARAT','INDIA','1973-12-17','Y','52Y',0,0,0,'F','','','+91',9712210614,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-17 11:09:52','','0000-00-00 00:00:00'),(0,4338,'',0,'','ANSUYABEN C KANERIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-12-17','Y','68Y',0,0,0,'F','','','+91',9998890061,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-17 11:12:56','','0000-00-00 00:00:00'),(0,4339,'',0,'','HANSHABEN L SOLANKI','','','RAIYAGAM RAJKOT ','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-17','Y','55Y',0,0,0,'F','','','+91',9904736303,'+91',8238384500,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-17 11:21:24','riya','2025-12-20 20:56:14'),(0,4340,'',0,'','RAJBHAI J ULVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-12-17','Y','22Y',0,0,0,'M','','','+91',9638667271,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-17 11:26:58','','0000-00-00 00:00:00'),(0,4341,'',0,'','DHIRAJLAL CHAVDA','','','','',0,'NEKNAM TANKARA','NEKNAM TANKARA','GUJARAT','INDIA','1979-12-17','Y','46Y',0,0,0,'M','','','+91',9925725445,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-17 11:29:54','','0000-00-00 00:00:00'),(0,4342,'',0,'','MANISHABEN M SAKARIYA','','','','',0,'KOTHARIYA','KOTHARIYA','GUJARAT','INDIA','1985-12-17','Y','40Y',0,0,0,'F','','','+91',9913171873,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-17 11:48:33','','0000-00-00 00:00:00'),(0,4343,'',0,'','CHANDRESHBHAI L POPAT','','','','',0,'AMRELI','AMRELI','GUJARAT','INDIA','1981-12-17','Y','44Y',0,0,0,'M','','','+91',9979051271,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 11:51:22','','0000-00-00 00:00:00'),(0,4344,'',0,'','BHANABHAI BAMBA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-12-17','Y','58Y',0,0,0,'M','','','+91',9925020913,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-17 11:51:26','drashti','2025-12-22 16:53:53'),(0,4345,'',0,'','GOKALBHAI GOHEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-12-17','Y','64Y',0,0,0,'M','','','+91',9879309256,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-17 11:52:55','','0000-00-00 00:00:00'),(0,4346,'',0,'','TWINKALBA J JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2010-12-17','Y','15Y',0,0,0,'F','','','+91',7874143463,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-17 12:39:36','','0000-00-00 00:00:00'),(0,4347,'',0,'','SEEMABEN R KARAMCHANDANI','','','','',0,'AHEMDABAD','AHEMDABAD','GUJARAT','INDIA','1979-12-17','Y','46Y',0,0,0,'F','','','+91',9909926500,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-17 12:42:56','','0000-00-00 00:00:00'),(0,4348,'',0,'','NIRMALABEN DADHANIYA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1954-12-17','Y','71Y',0,0,0,'F','','','+91',9726822500,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 12:47:00','','0000-00-00 00:00:00'),(0,4349,'',0,'','MATHEW ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-12-17','Y','79Y',0,0,0,'F','','','+91',9974320019,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-17 13:03:12','','0000-00-00 00:00:00'),(0,4350,'',0,'','CHIRAGBHAI BHESANIYA','','','','',0,'SURAT','SURAT','GUJARAT','INDIA','2001-12-17','Y','24Y',0,0,0,'M','','','+91',7284808455,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 13:18:49','','0000-00-00 00:00:00'),(0,4351,'',0,'','PIYUSH ZALA','','WINHEAL HE','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-12-17','Y','48Y',0,0,0,'M','','','+91',8401544614,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 16:17:11','','0000-00-00 00:00:00'),(0,4352,'',0,'','NATHABHAI SAKHIYA','','','','',0,'VAVDI RAJKOT','VAVDI RAJKOT','GUJARAT','INDIA','1985-12-17','Y','40Y',0,0,0,'M','','','+91',9979951010,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 16:48:00','','0000-00-00 00:00:00'),(0,4353,'',0,'','RAMNIKBHAI K GAJJAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-12-17','Y','76Y',0,0,0,'M','','','+91',9825215251,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 17:03:44','','0000-00-00 00:00:00'),(0,4354,'',0,'','RATILALBHAI PUROHIT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-12-17','Y','79Y',0,0,0,'M','','','+91',9825281877,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 17:11:03','','0000-00-00 00:00:00'),(0,4355,'',0,'','TUSHARBHAI SOLANKI','','','','',0,'LATIPAR','LATIPAR','GUJARAT','INDIA','1986-12-17','Y','39Y',0,0,0,'F','','','+91',9998778210,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 17:19:35','','0000-00-00 00:00:00'),(0,4356,'',0,'','RASMIKANTBHAI R DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-17','Y','65Y',0,0,0,'M','','','+91',9879573401,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 17:23:44','','0000-00-00 00:00:00'),(0,4357,'',0,'','MAKBUL DODHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-17','Y','30Y',0,0,0,'M','','','+91',7878581414,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-17 17:32:11','','0000-00-00 00:00:00'),(0,4358,'',0,'','ALIFIYABEN SAMVEDI','','','','',0,'PUNE','PUNE','GUJARAT','INDIA','1985-12-17','Y','40Y',0,0,0,'F','','','+91',9921548198,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 17:33:33','','0000-00-00 00:00:00'),(0,4359,'',0,'','KRISH A KAMBALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-12-17','Y','20Y',0,0,0,'M','','','+91',9824892024,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-17 17:41:41','','0000-00-00 00:00:00'),(0,4360,'',0,'','THOBHANBHAI M BAMBHVA','','','','',0,'BEDI MORBI ROAD','BEDI MORBI ROAD','GUJARAT','INDIA','1975-12-17','Y','50Y',0,0,0,'M','','','+91',6355539557,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 17:48:59','','0000-00-00 00:00:00'),(0,4361,'',0,'','MEENABEN M PARMAR','','','','',0,'KOTHARIYA','KOTHARIYA','GUJARAT','INDIA','1980-12-17','Y','45Y',0,0,0,'F','','','+91',6354942172,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 17:59:58','','0000-00-00 00:00:00'),(0,4362,'',0,'','MANIBEN BHOJABHAI KATHAD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-17','Y','55Y',0,0,0,'M','','','+91',9638582218,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 18:02:43','','0000-00-00 00:00:00'),(0,4363,'',0,'','NATALIA GOGAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-12-17','Y','38Y',0,0,0,'F','','','+91',9978916287,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','drashti','2025-12-17 18:06:02','','0000-00-00 00:00:00'),(0,4364,'',0,'','URVASHI H SHRIVASTAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-17','Y','30Y',0,0,0,'F','','','+91',8299723937,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 18:07:26','','0000-00-00 00:00:00'),(0,4365,'',0,'','HARKANTBHAI M RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-12-17','Y','74Y',0,0,0,'M','','','+91',9712197342,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-17 18:09:53','','0000-00-00 00:00:00'),(0,4366,'',0,'','SHABANA  K SIRIN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-12-17','Y','34Y',0,0,0,'F','','','+91',9574001801,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-17 18:10:03','','0000-00-00 00:00:00'),(0,4367,'',0,'','SURBHIBEN SONKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-12-17','Y','19Y',0,0,0,'F','','','+91',7383991361,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-17 18:13:56','drashti','2025-12-20 11:18:37'),(0,4368,'',0,'','DHIRUBHAI M SIDHHAPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-17','Y','70Y',0,0,0,'M','','','+91',9727042444,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 18:15:33','','0000-00-00 00:00:00'),(0,4369,'',0,'','NIRALBHAI VADHADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-12-17','Y','39Y',0,0,0,'M','','','+91',9909600025,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-17 18:19:43','janvi','2025-12-22 18:38:13'),(0,4370,'',0,'','TRUPTIBEN K JADAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-12-17','Y','59Y',0,0,0,'F','','','+91',984416761,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-17 18:21:34','','0000-00-00 00:00:00'),(0,4371,'',0,'','JYOTIBEN KANANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-12-17','Y','44Y',0,0,0,'F','','','+91',9998141282,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-17 18:27:23','','0000-00-00 00:00:00'),(0,4372,'',0,'','ANJANABEN DABHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1988-12-17','Y','37Y',0,0,0,'F','','','+91',8849143516,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 18:30:02','','0000-00-00 00:00:00'),(0,4373,'',0,'','SNEHA R AMBALIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2006-12-17','Y','19Y',0,0,0,'F','','','+91',9428252646,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 18:33:19','','0000-00-00 00:00:00'),(0,4374,'',0,'','VASHISHTH VALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-12-17','Y','18Y',18,0,0,'M','','','+91',8849106390,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-17 18:42:22','reception','2025-12-23 12:10:13'),(0,4375,'',0,'','RAJ M TANNA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-12-17','Y','22Y',0,0,0,'M','','','+91',8511350428,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-17 18:51:43','','0000-00-00 00:00:00'),(0,4376,'',0,'','RAKESHBHAI SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-12-17','Y','56Y',0,0,0,'M','','','+91',9824560944,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-17 18:56:05','','0000-00-00 00:00:00'),(0,4377,'',0,'','AMINA NURAMAMAD MATHKIYA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1971-12-17','Y','54Y',0,0,0,'F','','','+91',9723442220,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-17 18:57:21','','0000-00-00 00:00:00'),(0,4378,'',0,'','PARTHBHAI NIGAM','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-12-17','Y','29Y',0,0,0,'M','','','+91',9140265957,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','janvi','2025-12-17 19:07:15','','0000-00-00 00:00:00'),(0,4379,'',0,'','KIRITBHAI SIDHDHPURA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-17','Y','60Y',0,0,0,'M','','','+91',9879333351,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-17 19:15:55','','0000-00-00 00:00:00'),(0,4380,'',0,'','RUPABEN A RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-12-17','Y','43Y',0,0,0,'F','','','+91',8141895970,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-17 19:28:21','','0000-00-00 00:00:00'),(0,4381,'',0,'','USHABEN R DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-12-17','Y','73Y',0,0,0,'F','','','+91',9427410922,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-17 19:38:53','','0000-00-00 00:00:00'),(0,4382,'',0,'','SMITABEN TRIVEDI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-12-17','Y','36Y',0,0,0,'F','','','+91',9925612829,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-17 19:50:47','','0000-00-00 00:00:00'),(0,4383,'',0,'','ANJANABEN CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-12-17','Y','32Y',0,0,0,'F','','','+91',9723517654,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-17 19:59:09','riya','2025-12-18 11:18:17'),(0,4384,'',0,'','HEENABEN TRIVEDI','','','GANDHIGRAM ST NO-6, OPP STERLING HOSPITAL','NANAVATI CHOWK',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-12-17','Y','48Y',0,0,0,'F','','','+91',7698796488,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-17 20:11:55','vishal','2025-12-17 20:35:53'),(0,4385,'',0,'','RUDRA VARSANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2025-04-05','N','00Y8M13D',0,0,0,'M','','','+91',9033327048,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 08:47:33','','0000-00-00 00:00:00'),(0,4386,'',0,'','BHUPENDRABHAI RAJANI','','','','',0,'','','GUJARAT','INDIA','1947-12-18','Y','78Y',0,0,0,'M','','','+91',9824636111,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 08:50:55','','0000-00-00 00:00:00'),(0,4387,'',0,'','ASWARIYA BAROT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-12-18','Y','27Y',0,0,0,'F','','','+91',74900361333,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 08:52:22','','0000-00-00 00:00:00'),(0,4388,'',0,'','VIRBHADRASINH VAGHELA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-18','Y','52Y',0,0,0,'M','','','+91',9998118592,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-18 09:49:47','','0000-00-00 00:00:00'),(0,4389,'',0,'','KAJALBEN J PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-12-18','Y','36Y',0,0,0,'F','','','+91',8758888848,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-18 09:56:04','','0000-00-00 00:00:00'),(0,4390,'',0,'','TUSHALIBEN R TALSANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-12-18','Y','18Y',0,0,0,'F','','','+91',9998159122,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-18 10:33:57','','0000-00-00 00:00:00'),(0,4391,'',0,'','DHAVAL S MEHTA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1997-12-18','Y','28Y',0,0,0,'M','','','+91',8849964286,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 10:40:11','','0000-00-00 00:00:00'),(0,4392,'',0,'','ANJANABEN CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-12-18','Y','32Y',32,0,0,'F','','','+91',9723517654,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-18 10:40:14','janvi','2025-12-23 09:54:38'),(0,4393,'',0,'','RAMJIBHAI B CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-18','Y','46Y',0,0,0,'M','','','+91',9726502830,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 10:43:57','','0000-00-00 00:00:00'),(0,4394,'',0,'','JOSHNABEN S JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-12-18','Y','73Y',0,0,0,'F','','','+91',7069936998,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-18 10:44:50','','0000-00-00 00:00:00'),(0,4395,'',0,'','GAURIBEN P VADOLIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-18','Y','50Y',0,0,0,'F','','','+91',9824849547,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-18 10:47:43','','0000-00-00 00:00:00'),(0,4396,'',0,'','HEMATLAL J THORIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1948-12-18','Y','77Y',0,0,0,'M','','','+91',9825173833,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 10:48:03','','0000-00-00 00:00:00'),(0,4397,'',0,'','SAMATBHAI K KHER','','','','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1973-12-18','Y','52Y',0,0,0,'M','','','+91',9664572824,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-18 10:51:54','','0000-00-00 00:00:00'),(0,4398,'',0,'','VIJAYBHAI N VORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-12-18','Y','62Y',0,0,0,'M','','','+91',9409163405,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 10:55:44','','0000-00-00 00:00:00'),(0,4399,'',0,'','SAMATBHAI K KHER ','','','','',0,'','','GUJARAT','INDIA','1973-12-18','Y','52Y',52,0,0,'M','','','+91',9664572824,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-18 11:00:26','reception','2025-12-18 11:33:08'),(0,4400,'',0,'','DEVDANBHAI KUMBARVADIYA','','','','',0,'VERAVAL','VERAVAL','GUJARAT','INDIA','1983-12-18','Y','42Y',0,0,0,'M','','','+91',9924627700,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 11:02:16','','0000-00-00 00:00:00'),(0,4401,'',0,'','R P   BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-12-18','Y','66Y',0,0,0,'M','','','+91',9825476217,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-18 11:10:44','','0000-00-00 00:00:00'),(0,4402,'',0,'','SAILESHBHAI G JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1981-12-18','Y','44Y',0,0,0,'M','','','+91',9925068837,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 11:12:13','','0000-00-00 00:00:00'),(0,4403,'',0,'','PRAFULABEN BHARADAVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1978-12-18','Y','47Y',0,0,0,'M','','','+91',9879074559,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-18 11:13:33','','0000-00-00 00:00:00'),(0,4404,'',0,'','PRABHABEN RATHOD','','','','',0,'MEGHAPAR','MEGHAPAR','GUJARAT','INDIA','1955-12-18','Y','70Y',0,0,0,'F','','','+91',875867676767,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 11:27:19','','0000-00-00 00:00:00'),(0,4405,'',0,'','RAIYANI CHHAGANBHAI D','','RA','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-12-18','Y','63Y',0,0,0,'M','','','+91',9265098097,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-18 11:28:20','','0000-00-00 00:00:00'),(0,4406,'',0,'','BHAVNABEN J PANDYA ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-12-18','Y','71Y',0,0,0,'F','','','+91',9510517975,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-18 11:38:01','','0000-00-00 00:00:00'),(0,4407,'',0,'','PRAVINABEN D PANKHANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-18','Y','65Y',0,0,0,'F','','','+91',8530275587,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-18 11:40:03','','0000-00-00 00:00:00'),(0,4408,'',0,'','IMTIYAZBHAI A MARAM','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2009-12-18','Y','16Y',0,0,0,'M','','','+91',8511119323,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-18 11:45:11','','0000-00-00 00:00:00'),(0,4409,'',0,'','KANTABEN B BHOJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-12-18','Y','72Y',0,0,0,'F','','','+91',9408046281,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-18 11:47:38','','0000-00-00 00:00:00'),(0,4410,'',0,'','JAYANTIBHAI D BARASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-12-18','Y','62Y',0,0,0,'M','','','+91',9824281722,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-18 11:49:53','','0000-00-00 00:00:00'),(0,4411,'',0,'','SAROJBEN H PAREKH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-12-18','Y','69Y',0,0,0,'F','','','+91',6351514432,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-18 12:01:30','','0000-00-00 00:00:00'),(0,4412,'',0,'','BHARATBHAI R KALADIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-12-18','Y','28Y',0,0,0,'M','','','+91',9913434023,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-18 12:21:39','','0000-00-00 00:00:00'),(0,4413,'',0,'','SUNDARBEN J PRAJAPATI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-12-18','Y','35Y',0,0,0,'F','','','+91',7567046974,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','drashti','2025-12-18 12:21:43','','0000-00-00 00:00:00'),(0,4414,'',0,'','ANJANABEN J FICHADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-12-18','Y','75Y',0,0,0,'F','','','+91',9904228223,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 12:28:01','','0000-00-00 00:00:00'),(0,4415,'',0,'','HETAV RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-12-18','Y','36Y',0,0,0,'M','','','+91',7405250998,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 12:29:20','janvi','2025-12-22 18:54:28'),(0,4416,'',0,'','MAGANBHAI K KORINGA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-12-18','Y','62Y',0,0,0,'M','','','+91',9638105324,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-18 12:36:06','','0000-00-00 00:00:00'),(0,4417,'',0,'',' MOHANBHAI J AGRAVAT','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1982-12-18','Y','43Y',0,0,0,'M','','','+91',9898759182,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 12:43:15','','0000-00-00 00:00:00'),(0,4418,'',0,'','AARADHYA R FANGALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2020-01-25','N','05Y10M',0,0,0,'F','','','+91',9558899724,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-18 13:45:39','','0000-00-00 00:00:00'),(0,4419,'',0,'','SANAM KHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-12-18','Y','27Y',0,0,0,'F','','','+91',9205895912,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-18 14:44:17','reception','2025-12-23 08:43:19'),(0,4420,'',0,'','GEETABEN A SAVANI','','','','',0,'JODIYA JAMNAGAR','JODIYA JAMNAGAR','GUJARAT','INDIA','1981-12-18','Y','44Y',0,0,0,'F','','','+91',9725809633,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-18 16:23:35','','0000-00-00 00:00:00'),(0,4421,'',0,'','PUSHPABEN S GALANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-18','Y','52Y',0,0,0,'F','','','+91',7874716006,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 16:23:40','','0000-00-00 00:00:00'),(0,4422,'',0,'','KESAVBHAI RAMBHAI ODEDRA','','','','',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1940-12-18','Y','85Y',0,0,0,'M','','','+91',9909271627,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 16:26:51','','0000-00-00 00:00:00'),(0,4423,'',0,'','BHANUBEN KACHHADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-18','Y','70Y',0,0,0,'F','','','+91',9099095545,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 17:18:29','','0000-00-00 00:00:00'),(0,4424,'',0,'','SANTOSHBHAI BHOJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-12-18','Y','36Y',0,0,0,'M','','','+91',9664949047,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-18 17:22:50','','0000-00-00 00:00:00'),(0,4425,'',0,'','DOLUBHA B GADHVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1946-12-18','Y','79Y',0,0,0,'M','','','+91',8128064075,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 17:40:38','','0000-00-00 00:00:00'),(0,4426,'',0,'','MUKESHBHAI K BAGTHARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-18','Y','55Y',0,0,0,'M','','','+91',8160686261,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-18 17:44:57','','0000-00-00 00:00:00'),(0,4427,'',0,'','JIVRAJBHAI GOPANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-18','Y','65Y',0,0,0,'M','','','+91',9898922551,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 17:46:38','','0000-00-00 00:00:00'),(0,4428,'',0,'','RUPALBEN R TURAKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-12-18','Y','35Y',0,0,0,'F','','','+91',9824839551,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-18 17:58:27','','0000-00-00 00:00:00'),(0,4429,'',0,'','ASMITABEN N KOLADARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-18','Y','40Y',0,0,0,'F','','','+91',6352034760,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 17:58:31','','0000-00-00 00:00:00'),(0,4430,'',0,'','HITARTHBHAI N LODHIYA','','','','',0,'TALALA','TALALA','GUJARAT','INDIA','2013-12-18','Y','12Y',0,0,0,'M','','','+91',9624305462,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-18 18:03:34','','0000-00-00 00:00:00'),(0,4431,'',0,'','NIKHILBHAI GUPTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-18','Y','30Y',0,0,0,'M','','','+91',8000054595,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 18:05:00','janvi','2025-12-23 11:50:41'),(0,4432,'',0,'','MANJULABEN SANIYA','','','','',0,'PADADHARI','PADADHARI','GUJARAT','INDIA','1988-12-18','Y','37Y',0,0,0,'F','','','+91',9978888277,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-18 18:05:26','','0000-00-00 00:00:00'),(0,4433,'',0,'','KIRITBHAI M SHUKLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-12-18','Y','74Y',0,0,0,'M','','','+91',7016644112,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-18 18:06:44','','0000-00-00 00:00:00'),(0,4434,'',0,'','HARIBHAI CHHAYA','','','','',0,'DWARKA','DWARKA','GUJARAT','INDIA','1962-12-18','Y','63Y',0,0,0,'M','','','+91',9428400013,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-18 18:10:07','','0000-00-00 00:00:00'),(0,4435,'',0,'','MEENABEN CHHAYA','','','','',0,'DWARKA','DWARKA','GUJARAT','INDIA','1967-12-18','Y','58Y',0,0,0,'F','','','+91',9428400013,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 18:11:06','','0000-00-00 00:00:00'),(0,4436,'',0,'','MULJIBHAI CHHAYA','','','','',0,'DWARKA','DWARKA','GUJARAT','INDIA','1946-12-18','Y','79Y',0,0,0,'M','','','+91',9428400013,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-18 18:11:07','','0000-00-00 00:00:00'),(0,4437,'',0,'','DHIRUBEN CHHAYA','','','','',0,'DWARKA','DWARKA','GUJARAT','INDIA','1956-12-18','Y','69Y',0,0,0,'F','','','+91',9428400013,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-18 18:12:39','','0000-00-00 00:00:00'),(0,4438,'',0,'','SHOBHANABEN NAIDU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-12-18','Y','66Y',0,0,0,'F','','','+91',9825215280,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-18 18:15:59','','0000-00-00 00:00:00'),(0,4439,'',0,'','NIMITBHAI MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-18','Y','50Y',0,0,0,'M','','','+91',9979949214,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-18 18:20:21','','0000-00-00 00:00:00'),(0,4440,'',0,'','AADIT KRUNALBHAI KANTARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2020-12-25','N','04Y11M',0,0,0,'M','','','+91',9408330176,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 18:21:50','reception','2025-12-23 17:32:46'),(0,4441,'',0,'','RAMESHBHAI SAGPARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-12-18','Y','49Y',0,0,0,'M','','','+91',9898994230,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-18 18:24:03','','0000-00-00 00:00:00'),(0,4442,'',0,'','JANVIBEN R VADODARIYA','','','','',0,'METODA','METODA','GUJARAT','INDIA','2003-12-18','Y','22Y',0,0,0,'F','','','+91',9825348466,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-18 18:24:58','','0000-00-00 00:00:00'),(0,4443,'',0,'','RAJESHBHAI K VADODARIYA','','','','',0,'METODA','METODA','GUJARAT','INDIA','1979-12-18','Y','46Y',0,0,0,'M','','','+91',9825348466,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-18 18:25:21','','0000-00-00 00:00:00'),(0,4444,'',0,'','BHINIBEN B PITHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-12-18','Y','66Y',0,0,0,'F','','','+91',8140404470,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-18 18:31:59','','0000-00-00 00:00:00'),(0,4445,'',0,'','KANDARPBHAI H VASAVADA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-12-18','Y','56Y',0,0,0,'M','','','+91',9428788579,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-18 18:53:48','','0000-00-00 00:00:00'),(0,4446,'',0,'','AAHANA BAJAJ','','','','',0,'AHEMDAVAD','AHEMDAVAD','GUJARAT','INDIA','1991-12-18','Y','34Y',0,0,0,'F','','','+91',8347367579,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-18 18:58:50','','0000-00-00 00:00:00'),(0,4447,'',0,'','SHIFA CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2020-08-14','N','05Y4M',0,0,0,'F','','','+91',8160022829,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-18 19:12:19','reception','2025-12-22 20:40:08'),(0,4448,'',0,'','JAYDEVBHAI VAISHNAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1939-12-18','Y','86Y',0,0,0,'M','','','+91',9879221658,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-18 19:20:01','','0000-00-00 00:00:00'),(0,4449,'',0,'','ANJANABEN VAISHNAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1944-12-18','Y','81Y',0,0,0,'F','','','+91',9879221658,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-18 19:20:46','','0000-00-00 00:00:00'),(0,4450,'',0,'','NAMRATA ABHAY SEDANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-12-18','Y','33Y',0,0,0,'F','','','+91',9033343144,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-18 19:24:05','','0000-00-00 00:00:00'),(0,4451,'',0,'','NITINBHAI K MANIYAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-18','Y','52Y',0,0,0,'M','','','+91',9429189066,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-18 19:48:23','','0000-00-00 00:00:00'),(0,4452,'',0,'','USHABEN M RATNESHWAR','','','MUDIT HEIGHTS, HCG HOSPITAL ROAD,','AYODHYA CHOWK, 150 FT RING ROAD',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-12-18','Y','75Y',0,0,0,'F','','','+91',9879015753,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-18 19:56:26','','0000-00-00 00:00:00'),(0,4453,'',0,'','BHAVISHA TEJASGIRI GOSAI','','','PECIFIC STAR, OPP BPCL PETROL PUMP','RAIL NAGAR',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-08-28','N','24Y',0,0,0,'F','','','+91',9724641157,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-18 20:25:35','','0000-00-00 00:00:00'),(0,4454,'',0,'','JAGDISHBHAI CHAUDHARI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-12-19','Y','18Y',0,0,0,'M','','','+91',9352168565,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 08:52:12','','0000-00-00 00:00:00'),(0,4455,'',0,'','SHITALBEN KHIMSURIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-12-19','Y','27Y',0,0,0,'F','','','+91',9265414032,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 10:10:41','reception','2025-12-23 11:32:43'),(0,4456,'',0,'','RAMESHBHAI KESHAVBHAI  SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-12-19','Y','66Y',0,0,0,'M','','','+91',9924351774,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 10:15:17','','0000-00-00 00:00:00'),(0,4457,'',0,'','SHAILESHBHAI C TANNK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-12-19','Y','59Y',0,0,0,'M','','','+91',9316903587,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 10:25:10','','0000-00-00 00:00:00'),(0,4458,'',0,'','HARESHBHAI BHUDARBHAI BARASRA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1983-01-01','N','42Y',42,0,0,'M','','','+91',9913253725,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 10:28:42','reception','2025-12-19 10:30:49'),(0,4459,'',0,'','PIYUSHBHAI MANEK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-12-19','Y','58Y',0,0,0,'M','','','+91',9879332434,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 10:31:01','','0000-00-00 00:00:00'),(0,4460,'',0,'','KAILASHBA V JADEJA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1965-12-19','Y','60Y',0,0,0,'F','','','+91',9408663815,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 10:41:28','','0000-00-00 00:00:00'),(0,4461,'',0,'','VIJAYBHAI MODI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-19','Y','55Y',0,0,0,'M','','','+91',9428125911,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 10:41:39','','0000-00-00 00:00:00'),(0,4462,'',0,'','PRAVINBHAI MERIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-19','Y','55Y',55,0,0,'M','','','+91',9979949553,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 10:45:32','drashti','2025-12-19 10:46:45'),(0,4463,'',0,'','VINEET CHOUBEY','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-12-19','Y','20Y',0,0,0,'M','','','+91',9568000789,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 10:49:49','','0000-00-00 00:00:00'),(0,4464,'',0,'','URVISHABEN M AMRELIYA','','','','',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1996-12-19','Y','29Y',0,0,0,'F','','','+91',8160042828,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 10:56:09','','0000-00-00 00:00:00'),(0,4465,'',0,'','DILASANABEN KHORAJIYA','','','','',0,'WAKANER','WAKANER','GUJARAT','INDIA','1999-12-19','Y','26Y',0,0,0,'F','','','+91',9904344489,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 11:08:42','','0000-00-00 00:00:00'),(0,4466,'',0,'','MOHANBHAI P. CHUDASAMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-19','Y','70Y',0,0,0,'M','','','+91',9879221630,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 11:13:34','','0000-00-00 00:00:00'),(0,4467,'',0,'','VADHADIYA NIRALBHAI ','','FLAT NO B9','','RAIYA ROAD RAJKOT ',0,'RAJKOT ','RAJKOT ','GUJARAT','INDIA','1986-12-19','Y','39Y',0,0,0,'M','','','+91',9033983796,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-19 11:14:01','riya','2025-12-19 16:00:34'),(0,4468,'',0,'','MAHENDRABHAI KATHIRIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-19','Y','40Y',0,0,0,'M','','','+91',9687780989,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 11:19:50','','0000-00-00 00:00:00'),(0,4469,'',0,'','PARSHOTAMBHAI L PARMAR','','','','',0,'MANGROL','MANGROL','GUJARAT','INDIA','1961-12-19','Y','64Y',0,0,0,'M','','','+91',9998389011,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 11:23:53','','0000-00-00 00:00:00'),(0,4470,'',0,'','VISHALBHAI S PAREKH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-12-19','Y','36Y',0,0,0,'M','','','+91',9979999484,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-19 11:25:35','','0000-00-00 00:00:00'),(0,4471,'',0,'','HARUNBHAI A BHEDA','','','','',0,'MANGROL','MANGROL','GUJARAT','INDIA','1987-12-19','Y','38Y',0,0,0,'M','','','+91',8320283040,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 11:26:46','','0000-00-00 00:00:00'),(0,4472,'',0,'','RAMSINGBHAI N PANDAT','','','','',0,'DWARKA','DWARKA','GUJARAT','INDIA','1985-12-19','Y','40Y',0,0,0,'M','','','+91',7600081245,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 11:30:41','','0000-00-00 00:00:00'),(0,4473,'',0,'','HANSABEN D KHANAPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-12-19','Y','62Y',0,0,0,'F','','','+91',8866218357,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-19 11:34:04','','0000-00-00 00:00:00'),(0,4474,'',0,'','CHANDRIKABEN VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-12-19','Y','67Y',0,0,0,'F','','','+91',8160906269,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 11:38:07','','0000-00-00 00:00:00'),(0,4475,'',0,'','ANKITABEN GOHEL','','','','',0,'PADADHARI','PADADHARI','GUJARAT','INDIA','1998-12-19','Y','27Y',0,0,0,'F','','','+91',9601507050,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-19 11:46:46','','0000-00-00 00:00:00'),(0,4476,'',0,'','MRUDULABEN B PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-19','Y','60Y',0,0,0,'F','','','+91',9429189387,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 11:50:06','','0000-00-00 00:00:00'),(0,4477,'',0,'','JAYABEN TANK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-12-19','Y','69Y',0,0,0,'F','','','+91',9824905626,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-19 11:55:04','','0000-00-00 00:00:00'),(0,4478,'',0,'','PRAGNABEN G RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-19','Y','45Y',0,0,0,'F','','','+91',8087993302,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 11:55:36','','0000-00-00 00:00:00'),(0,4479,'',0,'','SOMABHAI T RATHOD','','','','',0,'JAMDADAR','JAMDADAR','GUJARAT','INDIA','1970-12-19','Y','55Y',0,0,0,'M','','','+91',9726500239,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 11:58:15','','0000-00-00 00:00:00'),(0,4480,'',0,'','MADHUBEN DHABALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-12-19','Y','73Y',0,0,0,'F','','','+91',9726395263,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-19 12:01:01','','0000-00-00 00:00:00'),(0,4481,'',0,'','SHRADDHABEN A KUBAVAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-19','Y','30Y',0,0,0,'F','','','+91',7383384119,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 12:14:50','','0000-00-00 00:00:00'),(0,4482,'',0,'','KAILASHBEN R RATHVA','','','','',0,'SAPAR','SAPAR','GUJARAT','INDIA','1995-12-19','Y','30Y',0,0,0,'F','','','+91',8469969010,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-19 12:21:08','','0000-00-00 00:00:00'),(0,4483,'',0,'','PANKAJBHAI RAVAL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-12-19','Y','51Y',0,0,0,'M','','','+91',7083711949,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 12:23:34','','0000-00-00 00:00:00'),(0,4484,'',0,'','LOKHIL LAKHABHAI RUDABHAI ','','SUMRA , DH','','',0,'JAMNAGAR ','JAMNAGAR ','GUJARAT','INDIA','1959-12-19','Y','66Y',0,0,0,'M','','','+91',9712369305,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-19 12:26:03','','0000-00-00 00:00:00'),(0,4485,'',0,'','NIRAJBHAI K HARSORA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-12-19','Y','27Y',0,0,0,'M','','','+91',6353607024,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 12:28:12','reception','2025-12-19 16:39:56'),(0,4486,'',0,'','RAMSINGBHAI B VALA','','','','',0,'SOMNATH VERAVAL','SOMNATH VERAVAL','GUJARAT','INDIA','1948-12-19','Y','77Y',0,0,0,'M','','','+91',9512199376,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 12:41:58','','0000-00-00 00:00:00'),(0,4487,'',0,'','VIMALBHAI MANSUKHBHAI KAILA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1993-12-19','Y','32Y',0,0,0,'M','','','+91',9925160345,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 12:43:06','','0000-00-00 00:00:00'),(0,4488,'',0,'','JAGRUTIBEN M VITHLANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-12-19','Y','43Y',0,0,0,'F','','','+91',9638511120,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 12:47:53','','0000-00-00 00:00:00'),(0,4489,'',0,'','DEV VIJAYBHAI JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-12-19','Y','21Y',0,0,0,'M','','','+91',7777993649,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 12:53:08','','0000-00-00 00:00:00'),(0,4490,'',0,'','MERIA PRAVINBHAI TEJABHAI ','','','RAIYA GAM ','RAJKOT',0,'RAJKOT ','RAJKOT ','GUJARAT','INDIA','1978-12-19','Y','47Y',0,0,0,'M','','','+91',93276957093,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-19 15:49:52','','0000-00-00 00:00:00'),(0,4491,'',0,'','SAIDABEN S SERASIYA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1983-12-19','Y','42Y',0,0,0,'F','','','+91',9723446493,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 16:16:35','','0000-00-00 00:00:00'),(0,4492,'',0,'','AKSHAY KATHIRIYA','','MANKIND PH','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2002-12-19','Y','23Y',0,0,0,'M','','','+91',7777969232,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 16:22:03','','0000-00-00 00:00:00'),(0,4493,'',0,'','SHANTUBEN D PARMAR','','','','',0,'RAFADESWAR MORBI','RAFADESWAR MORBI','GUJARAT','INDIA','1960-12-19','Y','65Y',0,0,0,'F','','','+91',997539472,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 16:30:10','','0000-00-00 00:00:00'),(0,4494,'',0,'','JIGARBHAI S KANSAGRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-19','Y','40Y',0,0,0,'M','','','+91',9909897977,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-19 16:47:57','','0000-00-00 00:00:00'),(0,4495,'',0,'','VISHALBHAI G MUNGRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-12-19','Y','29Y',0,0,0,'M','','','+91',9510534919,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 17:10:19','','0000-00-00 00:00:00'),(0,4496,'',0,'','HIMESHBHAI R ZALA','','','','',0,'GIR SOMNATH','GIR SOMNATH','GUJARAT','INDIA','2007-12-19','Y','18Y',0,0,0,'M','','','+91',7698397469,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-19 17:12:20','','0000-00-00 00:00:00'),(0,4497,'',0,'','MANUBEN B CHAUHAN','','','','',0,'VAJDI','VAJDI','GUJARAT','INDIA','1981-12-19','Y','44Y',0,0,0,'F','','','+91',7874465095,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-19 17:14:22','','0000-00-00 00:00:00'),(0,4498,'',0,'','DURGABEN S MAKWANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-19','Y','65Y',0,0,0,'F','','','+91',9723033103,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-19 17:23:57','','0000-00-00 00:00:00'),(0,4499,'',0,'','MANSHI DOSHI ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2000-12-19','Y','25Y',0,0,0,'F','','','+91',9824249569,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 17:43:12','','0000-00-00 00:00:00'),(0,4500,'',0,'','NILESHBHAI B JIVANI','','','','',0,'NESDA','NESDA','GUJARAT','INDIA','1982-12-19','Y','43Y',0,0,0,'M','','','+91',9825491262,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 17:49:01','','0000-00-00 00:00:00'),(0,4501,'',0,'','JANAM BAGDAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-12-19','Y','28Y',0,0,0,'M','','','+91',8000453730,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 17:52:17','','0000-00-00 00:00:00'),(0,4502,'',0,'','SUDHABEN J KHAKHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-12-19','Y','69Y',0,0,0,'F','','','+91',9687410254,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 17:52:48','','0000-00-00 00:00:00'),(0,4503,'',0,'','VIJAYBHAI DESAI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-12-19','Y','63Y',0,0,0,'M','','','+91',9913935499,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 18:00:18','','0000-00-00 00:00:00'),(0,4504,'',0,'','ARJUNBHAI ARVINDBHAI VADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2008-12-19','Y','17Y',0,0,0,'M','','','+91',9723188979,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 18:00:19','','0000-00-00 00:00:00'),(0,4505,'',0,'','MADHURIBEN  SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-12-19','Y','59Y',0,0,0,'F','','','+91',9409014008,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 18:22:36','','0000-00-00 00:00:00'),(0,4506,'',0,'','RAJIV SINGH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-12-19','Y','59Y',0,0,0,'M','','','+91',8320528965,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-19 18:35:55','','0000-00-00 00:00:00'),(0,4507,'',0,'','MEENAKSHI JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-12-19','Y','48Y',0,0,0,'F','','','+91',9826022215,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-19 18:37:26','','0000-00-00 00:00:00'),(0,4508,'',0,'','KANCHANBEN PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1957-12-19','Y','68Y',68,0,0,'F','','','+91',7600673413,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 18:37:49','drashti','2025-12-19 18:39:24'),(0,4509,'',0,'','AMITBHAI RAJYAGURU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-12-19','Y','58Y',0,0,0,'M','','','+91',9714928287,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-19 18:51:53','','0000-00-00 00:00:00'),(0,4510,'',0,'','KRISHNABEN RAJYAGURU','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-12-19','Y','57Y',0,0,0,'F','','','+91',97419228287,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-19 18:53:11','','0000-00-00 00:00:00'),(0,4511,'',0,'','NIKITABEN RANVA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-12-19','Y','26Y',0,0,0,'F','','','+91',7567424194,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-19 19:00:50','','0000-00-00 00:00:00'),(0,4512,'',0,'','BHARATBHAI MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-19','Y','60Y',0,0,0,'M','','','+91',9898984124,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-19 19:01:27','','0000-00-00 00:00:00'),(0,4513,'',0,'','PAYALBEN CHAUHAN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-08-19','N','31Y',31,0,0,'F','','','+91',9313780073,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 19:02:32','reception','2025-12-19 19:39:45'),(0,4514,'',0,'','JAGDISHBHAI D VAGHERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-12-19','Y','41Y',0,0,0,'M','','','+91',9725783546,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-19 19:14:02','','0000-00-00 00:00:00'),(0,4515,'',0,'','MIRANI PRAFUL KAKUBHAI ','','','MAHADEV PARK, OPP JANTA DAIRY,','RAIYA ROAD ',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-07-04','N','67Y',0,0,0,'M','','','+91',7069960499,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-19 21:12:23','','0000-00-00 00:00:00'),(0,4516,'',0,'','ARUNBHAI PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-12-20','Y','76Y',0,0,0,'M','','','+91',7600000075,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-20 08:50:14','','0000-00-00 00:00:00'),(0,4517,'',0,'','JATINBHAI RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-12-20','Y','39Y',0,0,0,'M','','','+91',7600055048,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-20 10:19:29','','0000-00-00 00:00:00'),(0,4518,'',0,'',' MEENABEN M SHUKLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-12-20','Y','63Y',0,0,0,'F','','','+91',7046208262,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-20 10:34:14','','0000-00-00 00:00:00'),(0,4519,'',0,'','RAMESHBHAI V SANGHVI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-12-20','Y','76Y',0,0,0,'M','','','+91',9428467323,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-20 11:00:49','','0000-00-00 00:00:00'),(0,4520,'',0,'','MITABEN V JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1972-12-20','Y','53Y',0,0,0,'F','','','+91',9067028844,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-20 11:01:39','','0000-00-00 00:00:00'),(0,4521,'',0,'','POOJABEN P LODHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-20','Y','55Y',0,0,0,'F','','','+91',9427241346,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-20 11:07:26','','0000-00-00 00:00:00'),(0,4522,'',0,'','JAYANTIBHAI D PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1953-12-20','Y','72Y',0,0,0,'M','','','+91',9879616186,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-20 11:09:53','','0000-00-00 00:00:00'),(0,4523,'',0,'','JAGDISHBHAI N PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-12-20','Y','61Y',0,0,0,'M','','','+91',9909990518,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-20 11:10:36','','0000-00-00 00:00:00'),(0,4524,'',0,'','HIRUBEN N ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-12-20','Y','76Y',0,0,0,'F','','','+91',8780121246,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-20 11:15:46','','0000-00-00 00:00:00'),(0,4525,'',0,'','SWEETU D SUREJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-20','Y','30Y',0,0,0,'F','','','+91',9426277454,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-20 11:27:11','','0000-00-00 00:00:00'),(0,4526,'',0,'','ARVINDBHAI C DAVE','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-12-20','Y','67Y',0,0,0,'M','','','+91',9428236225,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-20 11:38:22','','0000-00-00 00:00:00'),(0,4527,'',0,'','NANUBHAI BHALODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-20','Y','65Y',0,0,0,'M','','','+91',9537065742,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-20 11:44:47','','0000-00-00 00:00:00'),(0,4528,'',0,'','NITABEN VANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-12-20','Y','39Y',39,0,0,'F','','','+91',9879618886,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-20 11:48:42','priyanshi','2025-12-20 11:49:33'),(0,4529,'',0,'','VIJAYBHAI C KATHRECHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-20','Y','46Y',0,0,0,'M','','','+91',9824130028,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-20 11:53:06','','0000-00-00 00:00:00'),(0,4530,'',0,'','PRAGNABEN R CHHATRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-20','Y','52Y',0,0,0,'F','','','+91',9824839814,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-20 12:03:53','','0000-00-00 00:00:00'),(0,4531,'',0,'','PRANJAL RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-12-20','Y','18Y',18,0,0,'F','','','+91',6352291002,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-20 12:14:26','priyanshi','2025-12-20 12:15:37'),(0,4532,'',0,'','BHAVYBHAI JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2009-12-20','Y','16Y',0,0,0,'M','','','+91',9426986065,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-20 12:15:19','','0000-00-00 00:00:00'),(0,4533,'',0,'','SUSHILABEN MADLANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-20','Y','65Y',0,0,0,'F','','','+91',9925988550,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-20 12:21:42','','0000-00-00 00:00:00'),(0,4534,'',0,'','SUSHILABEN MADLANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-20','Y','65Y',0,0,0,'F','','','+91',9925988550,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-20 12:27:47','','0000-00-00 00:00:00'),(0,4535,'',0,'','HASHMUKHBHAI MADLANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1956-12-20','Y','69Y',0,0,0,'M','','','+91',9925988550,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-20 12:27:55','','0000-00-00 00:00:00'),(0,4536,'',0,'','BHARTIBEN H ANTANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-12-20','Y','71Y',0,0,0,'F','','','+91',9924271317,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-20 12:29:58','reception','2025-12-22 09:11:35'),(0,4537,'',0,'','BHUPENDRABHAI R. MULIYANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1950-12-20','Y','75Y',0,0,0,'M','','','+91',9979930880,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-20 12:32:23','','0000-00-00 00:00:00'),(0,4538,'',0,'','APEXABEN H ANTANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-12-20','Y','39Y',0,0,0,'F','','','+91',8780486344,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-20 12:32:56','','0000-00-00 00:00:00'),(0,4539,'',0,'','VISHALBHAI B ROJASARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-20','Y','46Y',0,0,0,'M','','','+91',9033111802,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-20 13:04:44','','0000-00-00 00:00:00'),(0,4540,'',0,'','SEEMA B VAJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-12-20','Y','28Y',0,0,0,'F','','','+91',9265000751,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','shweta','2025-12-20 13:11:52','','0000-00-00 00:00:00'),(0,4541,'',0,'','KHERANI RAHEMATBEN RAJAKBHAI ','','','','',0,'','','GUJARAT','INDIA','1965-12-20','Y','60Y',0,0,0,'F','','','+91',7984535851,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-20 14:42:00','','0000-00-00 00:00:00'),(0,4542,'',0,'','DHARMISHTHABEN DHOLAKIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-20','Y','50Y',0,0,0,'F','','','+91',9909850686,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-20 17:56:50','','0000-00-00 00:00:00'),(0,4543,'',0,'','GOVINDBHAI K VADUKAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1940-12-20','Y','85Y',0,0,0,'M','','','+91',9726392591,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-20 18:07:51','','0000-00-00 00:00:00'),(0,4544,'',0,'','PRATAPSINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-12-20','Y','42Y',0,0,0,'M','','','+91',7972729830,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-20 19:08:51','','0000-00-00 00:00:00'),(0,4545,'',0,'','AARAV KUGASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2020-10-05','N','05Y2M',5,2,0,'M','','','+91',7984653045,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-20 19:12:10','janvi','2025-12-20 19:13:37'),(0,4546,'',0,'','JAGRAV ASHRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-12-21','Y','20Y',0,0,0,'M','','','+91',9727401118,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-21 09:13:05','','0000-00-00 00:00:00'),(0,4547,'',0,'','PARAGBHAI SAVAJIYANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1994-12-21','Y','31Y',0,0,0,'M','','','+91',8511753599,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-21 09:16:41','','0000-00-00 00:00:00'),(0,4548,'',0,'','GOPALBHAI SONI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-12-21','Y','27Y',0,0,0,'M','','','+91',8734860271,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-21 09:19:08','','0000-00-00 00:00:00'),(0,4549,'',0,'','BHUSHANBHAI BHATT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2003-12-21','Y','22Y',0,0,0,'M','','','+91',9106816993,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-21 12:07:53','','0000-00-00 00:00:00'),(0,4550,'',0,'','DEVSHIBHAI J SATANI','','','PANASADA,','BABRA',0,'AMRELI','AMRELI','GUJARAT','INDIA','1935-12-21','Y','90Y',0,0,0,'M','','','+91',9978099865,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-21 20:26:45','','0000-00-00 00:00:00'),(0,4551,'',0,'','SHIVBHAI AGHOOLA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1999-12-22','Y','26Y',0,0,0,'M','','','+91',9979764299,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 08:58:19','','0000-00-00 00:00:00'),(0,4552,'',0,'','PRADIPBHAI RAJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-22','Y','65Y',0,0,0,'M','','','+91',8866182067,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 09:01:33','','0000-00-00 00:00:00'),(0,4553,'',0,'','TARUNBHAI KAMDAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-12-22','Y','56Y',0,0,0,'M','','','+91',9924825645,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 09:13:23','','0000-00-00 00:00:00'),(0,4554,'',0,'','VIPULBHAI BHABHOR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2005-12-22','Y','20Y',0,0,0,'M','','','+91',9104197040,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 09:22:01','','0000-00-00 00:00:00'),(0,4555,'',0,'','HITENBHAI SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-12-22','Y','33Y',0,0,0,'M','','','+91',9727076277,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 09:26:41','','0000-00-00 00:00:00'),(0,4556,'',0,'','HIRENBHAI SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-22','Y','45Y',0,0,0,'M','','','+91',9825280588,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 09:29:33','','0000-00-00 00:00:00'),(0,4557,'',0,'','RASILABEN M KANDIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-22','Y','60Y',0,0,0,'F','','','+91',9426737346,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 09:32:57','','0000-00-00 00:00:00'),(0,4558,'',0,'','HASIBEN KHIMJIBHAI GHODA ','','RANESHWAR ','DWARKA ','',0,'DWARKA ','DWARKA ','GUJARAT','INDIA','1998-12-22','Y','27Y',0,0,0,'F','','','+91',9974254003,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-22 09:37:42','','0000-00-00 00:00:00'),(0,4559,'',0,'','GHANSHYAM J KASUNDRA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1960-12-22','Y','65Y',0,0,0,'M','','','+91',9106681896,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 09:42:04','','0000-00-00 00:00:00'),(0,4560,'',0,'','TEJALBEN SHETH','','BLOCK NO 1','','',0,'RAJKOT ','RAJKOT ','GUJARAT','INDIA','1968-12-22','Y','57Y',0,0,0,'F','','','+91',9426343244,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-22 09:55:05','riya','2025-12-23 12:33:16'),(0,4561,'',0,'','JALPABEN P DHOLAKIYA','','','','',0,'','','GUJARAT','INDIA','1987-12-22','Y','38Y',38,0,0,'F','','','+91',9825710753,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 09:59:58','reception','2025-12-22 11:05:20'),(0,4562,'',0,'','HANSABEN L SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-22','Y','55Y',0,0,0,'F','','','+91',9904736303,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','urvashi','2025-12-22 10:04:05','','0000-00-00 00:00:00'),(0,4563,'',0,'','VINOKA ZHIMOMI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1990-06-16','N','35Y',0,0,0,'M','','','+91',9116621945,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 10:05:17','','0000-00-00 00:00:00'),(0,4564,'',0,'','PARASBHAI V LOKHIL ','','ANJALI PAR','SHADHUVASHVANI ROAD ','',0,'RAJKOT ','RAJKOT ','GUJARAT','INDIA','1993-12-22','Y','32Y',0,0,0,'M','','','+91',8866958104,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-22 10:07:35','','0000-00-00 00:00:00'),(0,4565,'',0,'','ABBASBHAI J PARASARA','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','1980-12-22','Y','45Y',0,0,0,'M','','','+91',9978064053,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 10:14:00','','0000-00-00 00:00:00'),(0,4566,'',0,'','NIRUPABEN U KOTECHA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-12-22','Y','48Y',0,0,0,'F','','','+91',7435065347,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 10:18:36','','0000-00-00 00:00:00'),(0,4567,'',0,'','DEVKUVARBA V CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-22','Y','52Y',0,0,0,'F','','','+91',9428299978,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 10:20:35','','0000-00-00 00:00:00'),(0,4568,'',0,'','HEMLATABEN V VYAS','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-12-22','Y','62Y',0,0,0,'F','','','+91',9328490906,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 10:22:45','','0000-00-00 00:00:00'),(0,4569,'',0,'','MOHANBHAI M CHANDEGRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-12-22','Y','61Y',0,0,0,'M','','','+91',9426998436,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-22 10:26:56','','0000-00-00 00:00:00'),(0,4570,'',0,'','PUSHPABEN SANGANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1945-12-22','Y','80Y',0,0,0,'F','','','+91',9924580838,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-22 10:30:41','','0000-00-00 00:00:00'),(0,4571,'',0,'','PARULBEN SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-22','Y','52Y',0,0,0,'F','','','+91',6351389622,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 10:34:50','','0000-00-00 00:00:00'),(0,4572,'',0,'','AJAYBHAI VANJANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-12-22','Y','41Y',0,0,0,'M','','','+91',9998519528,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-22 10:43:34','','0000-00-00 00:00:00'),(0,4573,'',0,'','DILIPBHAI DALSANIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-12-22','Y','51Y',0,0,0,'M','','','+91',9824529783,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 10:44:25','','0000-00-00 00:00:00'),(0,4574,'',0,'','JAGRUTIBEN AGHEDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-12-22','Y','54Y',0,0,0,'F','','','+91',7359797686,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 10:46:35','','0000-00-00 00:00:00'),(0,4575,'',0,'','RAJANBHAI AGHEDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-12-22','Y','33Y',0,0,0,'M','','','+91',8866169161,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 10:47:53','','0000-00-00 00:00:00'),(0,4576,'',0,'','KHERUNBEN JABRI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1980-12-22','Y','45Y',0,0,0,'F','','','+91',8530078690,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 10:54:58','','0000-00-00 00:00:00'),(0,4577,'',0,'','AMITBHAI S BHALODIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-12-22','Y','34Y',0,0,0,'M','','','+91',9998839695,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 10:56:19','','0000-00-00 00:00:00'),(0,4578,'',0,'','RAJESHBHAI CHANDRANI','','','','',0,'MADHAPAR ','MADHAPAR ','GUJARAT','INDIA','1978-12-22','Y','47Y',0,0,0,'M','','','+91',8238220803,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 11:02:49','reception','2025-12-22 16:51:00'),(0,4579,'',0,'','RAMESHBHAI DESAI','','','','',0,'BHANDARIYA','BHANDARIYA','GUJARAT','INDIA','1967-12-22','Y','58Y',0,0,0,'M','','','+91',9723460628,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 11:10:23','','0000-00-00 00:00:00'),(0,4580,'',0,'','MEENABEN RAJESHBHAI SAKARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-12-22','Y','42Y',0,0,0,'F','','','+91',9727043461,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 11:13:08','','0000-00-00 00:00:00'),(0,4581,'',0,'','KOKILABA V JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-22','Y','55Y',55,0,0,'F','','','+91',8154000090,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 11:15:56','reception','2025-12-22 12:49:31'),(0,4582,'',0,'','PURVIBEN POPAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-22','Y','40Y',0,0,0,'F','','','+91',9979470072,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 11:16:08','','0000-00-00 00:00:00'),(0,4583,'',0,'','ABEDABEN Y MEMON ','','','','',0,'NANDER','NANDER','GUJARAT','INDIA','1973-12-22','Y','52Y',0,0,0,'F','','','+91',9890361361,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 11:18:11','','0000-00-00 00:00:00'),(0,4584,'',0,'','CHAUHAN VIMAL K','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-10-25','N','42Y',0,0,0,'M','','','+91',9099974775,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 11:18:34','','0000-00-00 00:00:00'),(0,4585,'',0,'','DIPIKABEN BARAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-12-22','Y','34Y',0,0,0,'F','','','+91',9925210947,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 11:26:32','','0000-00-00 00:00:00'),(0,4586,'',0,'','KULDEEPBHAI N BARAD','','','','',0,'KODINAR','KODINAR','GUJARAT','INDIA','1994-12-22','Y','31Y',0,0,0,'M','','','+91',9687918095,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 11:26:42','','0000-00-00 00:00:00'),(0,4587,'',0,'','SANDEEPBHAI SINDHAV','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-22','Y','52Y',0,0,0,'M','','','+91',9825217014,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 11:28:06','','0000-00-00 00:00:00'),(0,4588,'',0,'','SEJALBEN V JETHVA','','YOGESHWAR ','AKASHVANI QUATER, UNIVAERSITY RAOD ','RAJKOT',0,'RAJKOT ','RAJKOT ','GUJARAT','INDIA','1995-05-22','N','30Y',0,0,0,'F','','','+91',9898992005,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-22 11:33:06','vishal','2025-12-22 18:51:25'),(0,4589,'',0,'','VALLABHBHAI N PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-12-22','Y','63Y',0,0,0,'M','','','+91',7574927157,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 11:34:47','','0000-00-00 00:00:00'),(0,4590,'',0,'','RAMESHBHAI S PATEL','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1978-12-22','Y','47Y',0,0,0,'M','','','+91',9825105362,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 11:41:05','','0000-00-00 00:00:00'),(0,4591,'',0,'','HARSHADRAY PANDYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1952-12-22','Y','73Y',0,0,0,'F','','','+91',7016794300,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-22 11:43:09','','0000-00-00 00:00:00'),(0,4592,'',0,'','RANJANBEN R ANKLESWAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-12-22','Y','64Y',0,0,0,'F','','','+91',9924200092,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 11:48:45','','0000-00-00 00:00:00'),(0,4593,'',0,'','PUSHPABEN  SANAGNI','','501 KRISHN','KALAWAD ROAD ','RAJKOT ',0,'RAJKOT ','RAJKOT ','GUJARAT','INDIA','1945-12-22','Y','80Y',0,0,0,'M','','','+91',9924580838,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-22 11:52:42','','0000-00-00 00:00:00'),(0,4594,'',0,'','RANJANBEN P DABHI','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1980-12-22','Y','45Y',0,0,0,'F','','','+91',9712376920,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 11:56:28','','0000-00-00 00:00:00'),(0,4595,'',0,'','YUNUSBHAI S VINDHANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1964-12-22','Y','61Y',0,0,0,'M','','','+91',9825844656,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 11:58:52','','0000-00-00 00:00:00'),(0,4596,'',0,'','CHANDRIKABEN GANATRA','','','','',0,'JETPUR','JETPUR','GUJARAT','INDIA','1958-12-22','Y','67Y',0,0,0,'F','','','+91',9825996655,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 12:00:47','','0000-00-00 00:00:00'),(0,4597,'',0,'','DHIRUBHAI SHUCHAK','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-12-22','Y','71Y',0,0,0,'M','','','+91',9408691111,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 12:09:32','','0000-00-00 00:00:00'),(0,4598,'',0,'','BHIMANI  MAHENDRABHAI  VRAJLAL','','22 SHANTI ','RAJKOT ','',0,'RAJKOT ','RAJKOT ','GUJARAT','INDIA','1944-12-22','Y','81Y',0,0,0,'M','','','+91',9898006342,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-22 12:12:07','','0000-00-00 00:00:00'),(0,4599,'',0,'','NIRALIBEN PIPALIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-12-22','Y','27Y',0,0,0,'F','','','+91',7600100900,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 12:19:15','','0000-00-00 00:00:00'),(0,4600,'',0,'','KAILASBA JAGDISHSINH ZALA','','VAGASIYA, ','','',0,'MORBI ','MORBI ','GUJARAT','INDIA','1967-01-01','N','58Y',0,0,0,'F','','','+91',9824646801,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-22 12:22:55','','0000-00-00 00:00:00'),(0,4601,'',0,'','VINODBHAI K PARMAR','','','','',0,'MALIYA','MALIYA','GUJARAT','INDIA','1965-12-22','Y','60Y',0,0,0,'M','','','+91',9016807383,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 12:35:07','','0000-00-00 00:00:00'),(0,4602,'',0,'','VIJYABEN M VAGADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-22','Y','70Y',0,0,0,'F','','','+91',9227746860,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 12:37:09','','0000-00-00 00:00:00'),(0,4603,'',0,'','YUSUFBHAI A KADIVAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1996-12-22','Y','29Y',0,0,0,'M','','','+91',9974840609,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-22 12:40:14','','0000-00-00 00:00:00'),(0,4604,'',0,'','BHAVESHBHAI R LIMBASIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1967-12-22','Y','58Y',0,0,0,'M','','','+91',9879608383,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-22 13:00:36','reception','2025-12-22 16:49:26'),(0,4605,'',0,'','HASAMBHAI I BHUNGAR','','','','',0,'TANKARA','TANKARA','GUJARAT','INDIA','1980-12-22','Y','45Y',45,0,0,'M','','','+91',7778038929,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 13:07:16','priyanshi','2025-12-22 13:18:16'),(0,4606,'',0,'','DR ISHITABEN  MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-22','Y','30Y',30,0,0,'F','','','+91',9426636559,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 13:10:58','shweta','2025-12-22 15:07:50'),(0,4607,'',0,'','PUSHPARAJSINH K JADEJA','','','','',0,'KHIJADIYA','KHIJADIYA','GUJARAT','INDIA','1995-12-22','Y','30Y',0,0,0,'M','','','+91',9099307808,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-22 13:26:02','','0000-00-00 00:00:00'),(0,4608,'',0,'','MONTUBHAI SHARMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-12-22','Y','28Y',28,0,0,'M','','','+91',8052054669,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 13:33:52','janvi','2025-12-22 13:36:02'),(0,4609,'',0,'','RAMCHAND G PAMNANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1949-12-22','Y','76Y',0,0,0,'M','','','+91',9768141783,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 13:56:15','','0000-00-00 00:00:00'),(0,4610,'',0,'','DRASHTI BODA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2004-12-22','Y','21Y',0,0,0,'F','','','+91',9426276946,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 14:32:33','','0000-00-00 00:00:00'),(0,4611,'',0,'','PRAVINBHAI DEVJIBHAI CHAVDA ','','PARLE MOUN','STREET NO 01 , OPP SAURASTRA HIGH ','SCHOOL, RAJKOT ',0,'RAJKOT ','RAJKOT ','GUJARAT','INDIA','1962-09-20','N','63Y',0,0,0,'M','','','+91',7984386730,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','riya','2025-12-22 16:25:05','','0000-00-00 00:00:00'),(0,4612,'',0,'','MADHUBEN K JOBANPUTRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1962-12-22','Y','63Y',0,0,0,'F','','','+91',9408664802,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 17:09:48','','0000-00-00 00:00:00'),(0,4613,'',0,'','VANRAJBHAI G CHAVDA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-12-22','Y','54Y',54,0,0,'M','','','+91',9824091602,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 17:16:54','drashti','2025-12-22 17:40:11'),(0,4614,'',0,'','JIVTIBEN RANCHHODBHAI KALARIYA','','','','',0,'METODA','METODA','GUJARAT','INDIA','1940-12-22','Y','85Y',0,0,0,'F','','','+91',9510486806,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 17:20:12','','0000-00-00 00:00:00'),(0,4615,'',0,'','DARSHNABEN R MONPARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1973-12-22','Y','52Y',0,0,0,'F','','','+91',8460890659,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 17:34:33','','0000-00-00 00:00:00'),(0,4616,'',0,'','DAYABHAI B KACHADIYA','','','','',0,'KALAVAD','KALAVAD','GUJARAT','INDIA','1971-12-22','Y','54Y',0,0,0,'M','','','+91',9687239767,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 17:40:04','','0000-00-00 00:00:00'),(0,4617,'',0,'','HASTI KATARMAL','','','JAY SIDHNATH, 23 DIGVIJAY PLOT, ','GARBI CHOWK, BHARAT BAKREY STREET,',0,'JAMNAGAR','JAMNAGAR','GUJARAT','INDIA','1986-02-21','N','39Y',0,0,0,'M','','','+91',9904172900,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-22 17:40:16','vishal','2025-12-22 17:46:38'),(0,4618,'',0,'','PRASHANTBHAI AGRAVAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-22','Y','40Y',0,0,0,'M','','','+91',9662322633,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-22 17:42:31','','0000-00-00 00:00:00'),(0,4619,'',0,'','TARANGBHAI JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-12-22','Y','32Y',0,0,0,'M','','','+91',9722400614,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 17:50:19','','0000-00-00 00:00:00'),(0,4620,'',0,'','RIDDHIBEN N SARVAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2001-12-22','Y','24Y',0,0,0,'F','','','+91',9624755112,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 17:51:28','','0000-00-00 00:00:00'),(0,4621,'',0,'','ARIFBHAI SIDIKI','','','','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1995-12-22','Y','30Y',0,0,0,'M','','','+91',8160416842,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 18:05:04','','0000-00-00 00:00:00'),(0,4622,'',0,'','VANITABEN RAJESHBHAI CHANIYARA','','','KUTIYANA','KHAGESRI',0,'PORBANDAR','PORBANDAR','GUJARAT','INDIA','1970-12-22','Y','55Y',0,0,0,'F','','','+91',9334903807,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 18:12:24','vishal','2025-12-22 21:41:35'),(0,4623,'',0,'','BINABEN MODI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-12-22','Y','62Y',0,0,0,'F','','','+91',9375729588,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-22 18:13:32','','0000-00-00 00:00:00'),(0,4624,'',0,'','BHAVNABEN GOL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-12-22','Y','59Y',0,0,0,'F','','','+91',9428295690,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 18:17:48','','0000-00-00 00:00:00'),(0,4625,'',0,'','KRISHBHAI KADRADI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2014-12-22','Y','11Y',0,0,0,'M','','','+91',9913605290,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 18:22:05','','0000-00-00 00:00:00'),(0,4626,'',0,'','CHANDANIBEN KHERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-12-22','Y','33Y',0,0,0,'F','','','+91',8401547737,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 18:32:02','','0000-00-00 00:00:00'),(0,4627,'',0,'','DIVYA H SOLANKI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2009-12-22','Y','16Y',0,0,0,'M','','','+91',9825280588,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 18:32:33','','0000-00-00 00:00:00'),(0,4628,'',0,'','SEJALBEN SHAH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1989-12-22','Y','36Y',0,0,0,'F','','','+91',9428418584,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 18:34:44','','0000-00-00 00:00:00'),(0,4629,'',0,'','GULABBA MANJARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-12-22','Y','43Y',0,0,0,'F','','','+91',9714692814,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-22 18:39:08','','0000-00-00 00:00:00'),(0,4630,'',0,'','KANTABEN S KUMBHAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-12-22','Y','48Y',0,0,0,'F','','','+91',7359014317,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 18:40:14','','0000-00-00 00:00:00'),(0,4631,'',0,'','BEDVA POOJABEN ','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-12-22','Y','32Y',0,0,0,'F','','','+91',7874508121,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 18:44:01','','0000-00-00 00:00:00'),(0,4632,'',0,'','ZALA SIDDHRAJSINH K','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1992-08-14','N','33Y',0,0,0,'M','','','+91',848888010,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 18:50:02','','0000-00-00 00:00:00'),(0,4633,'',0,'','KULVINDAR KAUR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1987-12-22','Y','38Y',38,0,0,'F','','','+91',7984765266,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 18:51:54','reception','2025-12-22 19:12:23'),(0,4634,'',0,'','DIVYABA K JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1974-12-22','Y','51Y',51,0,0,'F','','','+91',7874143463,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 18:53:49','janvi','2025-12-22 18:54:56'),(0,4635,'',0,'','JYOTIBEN SAMIRKUMAR DEVANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1977-12-22','Y','48Y',0,0,0,'F','','','+91',9825030043,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-22 18:56:41','','0000-00-00 00:00:00'),(0,4636,'',0,'','GEETABEN SONAIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1968-12-22','Y','57Y',0,0,0,'M','','','+91',9228898949,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 19:00:06','','0000-00-00 00:00:00'),(0,4637,'',0,'','CHANDANIBEN KANAVAT','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1986-12-22','Y','39Y',0,0,0,'F','','','+91',9825030163,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 19:08:41','','0000-00-00 00:00:00'),(0,4638,'',0,'','JYOTIBEN P. PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-22','Y','70Y',0,0,0,'F','','','+91',9898388870,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 19:15:51','','0000-00-00 00:00:00'),(0,4639,'',0,'','KHUSHI RAKESHBHAI PATEL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2016-01-01','N','09Y11M',0,0,0,'F','','','+91',9825729244,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-22 19:50:50','','0000-00-00 00:00:00'),(0,4640,'',0,'','ALPABEN MEHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1971-12-22','Y','54Y',0,0,0,'F','','','+91',8980783947,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 19:53:02','','0000-00-00 00:00:00'),(0,4641,'',0,'','JYOTIBEN PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-22','Y','70Y',0,0,0,'F','','','+91',9898388870,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-22 19:55:49','','0000-00-00 00:00:00'),(0,4642,'',0,'','GOVINDBHAI GHATTA','','','','',0,'GONDAL','GONDAL','GUJARAT','INDIA','1975-12-22','Y','50Y',0,0,0,'M','','','+91',9913365484,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 20:01:53','','0000-00-00 00:00:00'),(0,4643,'',0,'','RAJESHBHAI PAREKH','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1984-12-22','Y','41Y',0,0,0,'M','','','+91',9974589489,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-22 20:15:09','','0000-00-00 00:00:00'),(0,4644,'',0,'','RAJNIKANTBHAI SADARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-22','Y','55Y',0,0,0,'M','','','+91',9265577561,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','priyanshi','2025-12-22 21:00:20','reception','2025-12-23 08:41:54'),(0,4645,'',0,'','KHAJVANI PARSOTAM CHANDUMAL','','','HARI PARA, BANTWA,','',0,'JUNAGADH','JUNAGADH','GUJARAT','INDIA','1973-08-06','N','52Y',0,0,0,'M','','','+91',9998563578,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','vishal','2025-12-22 22:11:13','','0000-00-00 00:00:00'),(0,4646,'',0,'','MAYANKBHAI JALAVDIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1998-12-23','Y','27Y',0,0,0,'M','','','+91',8849642993,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-23 09:46:41','','0000-00-00 00:00:00'),(0,4647,'',0,'','KESHAVLAL M VIROJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1939-12-23','Y','86Y',0,0,0,'M','','','+91',9265754718,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-23 10:08:02','','0000-00-00 00:00:00'),(0,4648,'',0,'','KANTIBHAI P GADHIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1965-12-23','Y','60Y',0,0,0,'M','','','+91',9099911993,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 10:08:14','','0000-00-00 00:00:00'),(0,4649,'',0,'','DINESHBHAI DUDHAGARA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1975-12-23','Y','50Y',0,0,0,'M','','','+91',9979584428,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-23 10:16:54','','0000-00-00 00:00:00'),(0,4650,'',0,'','MANJUBEN M DABHI','','','','',0,'MORBI ROAD','MORBI ROAD','GUJARAT','INDIA','1960-12-23','Y','65Y',0,0,0,'F','','','+91',9979960939,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-23 10:17:45','','0000-00-00 00:00:00'),(0,4651,'',0,'','SAVJIBHAI SORATHIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1948-12-23','Y','77Y',0,0,0,'M','','','+91',9427722843,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-23 10:21:55','','0000-00-00 00:00:00'),(0,4652,'',0,'','TANJIRABEN R BADI','','','','',0,'WANKANER','WANKANER','GUJARAT','INDIA','2001-12-23','Y','24Y',0,0,0,'F','','','+91',9106886054,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 10:27:17','','0000-00-00 00:00:00'),(0,4653,'',0,'','MAHMAD HANIF MOMIN','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1965-12-23','Y','60Y',0,0,0,'M','','','+91',9737471442,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 10:50:41','','0000-00-00 00:00:00'),(0,4654,'',0,'','JASVANTLAL NYALCHAND TURAKHIA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1954-12-23','Y','71Y',0,0,0,'M','','','+91',9898053300,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-23 10:59:58','','0000-00-00 00:00:00'),(0,4655,'',0,'','GITABEN S RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-23','Y','46Y',0,0,0,'F','','','+91',9978996967,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 11:04:20','','0000-00-00 00:00:00'),(0,4656,'',0,'','USHABEN K KARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-23','Y','65Y',0,0,0,'F','','','+91',9426530281,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-23 11:06:21','','0000-00-00 00:00:00'),(0,4657,'',0,'','GHANSHYAMSINH JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1959-12-23','Y','66Y',0,0,0,'M','','','+91',9879694076,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-23 11:07:41','','0000-00-00 00:00:00'),(0,4658,'',0,'','HANIFABEN H RATHOD','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1961-12-23','Y','64Y',0,0,0,'F','','','+91',9974698446,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-23 11:08:43','','0000-00-00 00:00:00'),(0,4659,'',0,'','PARESHBHAI DASANI','','','','',0,'KHAMBHADIYA','KHAMBHADIYA','GUJARAT','INDIA','1970-12-23','Y','55Y',55,0,0,'M','','','+91',9924030116,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 11:08:44','reception','2025-12-23 11:57:09'),(0,4660,'',0,'','ILABEN PARESHBHAI DASANI','','','','',0,'KHAMBHADIYA','KHAMBHADIYA','GUJARAT','INDIA','1967-12-23','Y','58Y',58,0,0,'F','','','+91',9924030116,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 11:11:22','reception','2025-12-23 11:56:39'),(0,4661,'',0,'','REKHABEN KRIPLANI','','','','',0,'GANDHIDHAM','GANDHIDHAM','GUJARAT','INDIA','1966-12-23','Y','59Y',59,0,0,'F','','','+91',7016056607,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-23 11:16:19','drashti','2025-12-23 14:05:03'),(0,4662,'',0,'','JAYESHBHAI K SURANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-23','Y','46Y',0,0,0,'M','','','+91',9427261002,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-23 11:18:15','','0000-00-00 00:00:00'),(0,4663,'',0,'','JENTIBHAI G DASLANIYA','','','','',0,'BABRA AMRELI','BABRA AMRELI','GUJARAT','INDIA','1962-12-23','Y','63Y',0,0,0,'M','','','+91',9979716590,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-23 11:19:29','','0000-00-00 00:00:00'),(0,4664,'',0,'','DHIRUBHAI RAMANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1963-12-23','Y','62Y',0,0,0,'M','','','+91',8460826147,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 11:20:05','','0000-00-00 00:00:00'),(0,4665,'',0,'','MUKESHBHAI KHETIYA','','','','',0,'KHAMBHADIYA','KHAMBHADIYA','GUJARAT','INDIA','1970-12-23','Y','55Y',0,0,0,'M','','','+91',7984627901,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 11:22:00','','0000-00-00 00:00:00'),(0,4666,'',0,'','JAYPRAKASHBHAI JOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1969-12-23','Y','56Y',0,0,0,'M','','','+91',9375976659,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-23 11:24:03','','0000-00-00 00:00:00'),(0,4667,'',0,'','BALUBHAI N VADHER','','','','',0,'KUTIYANA','KUTIYANA','GUJARAT','INDIA','1992-12-23','Y','33Y',0,0,0,'M','','','+91',8780681820,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 11:28:41','','0000-00-00 00:00:00'),(0,4668,'',0,'','GAJENDRASINH ZALA','','','','',0,'LIMDI','LIMDI','GUJARAT','INDIA','1949-12-23','Y','76Y',76,0,0,'M','','','+91',9924639194,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-23 11:35:00','drashti','2025-12-23 11:36:02'),(0,4669,'',0,'','CHANDUBHAI KATHRECHA','','','','',0,'','','GUJARAT','INDIA','1945-12-23','Y','80Y',80,0,0,'M','','','+91',9909430028,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-23 11:38:26','drashti','2025-12-23 11:41:44'),(0,4670,'',0,'','PAVANBHAI VERMA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1995-12-23','Y','30Y',30,0,0,'M','','','+91',8933898939,'+91',0,'',1,0,'HIN','','N',0,'','','','','','0000-00-00','janvi','2025-12-23 11:39:14','janvi','2025-12-23 11:39:54'),(0,4671,'',0,'','MUKUNDBA GOHIL','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1970-12-23','Y','55Y',0,0,0,'F','','','+91',6353821009,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-23 11:46:00','','0000-00-00 00:00:00'),(0,4672,'',0,'','JYOTSANABA M JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1979-12-23','Y','46Y',0,0,0,'F','','','+91',9909772275,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-23 11:47:15','','0000-00-00 00:00:00'),(0,4673,'',0,'','NAYNA GANATRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-23','Y','65Y',0,0,0,'F','','','+91',8000971818,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 11:47:40','','0000-00-00 00:00:00'),(0,4674,'',0,'','GIRIRAJSINH ZALA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-12-23','Y','42Y',0,0,0,'M','','','+91',7041451239,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-23 11:48:50','','0000-00-00 00:00:00'),(0,4675,'',0,'','KANCHANBEN KAKADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1966-12-23','Y','59Y',0,0,0,'F','','','+91',9824239563,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 11:51:58','','0000-00-00 00:00:00'),(0,4676,'',0,'','RINABEN H SANARIYA','','','','',0,'MORBI','MORBI','GUJARAT','INDIA','1983-12-23','Y','42Y',0,0,0,'F','','','+91',9687562089,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 11:53:26','','0000-00-00 00:00:00'),(0,4677,'',0,'','MANSUKHBHAI MANSHTA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1947-12-23','Y','78Y',0,0,0,'M','','','+91',9979310260,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','drashti','2025-12-23 12:09:11','','0000-00-00 00:00:00'),(0,4678,'',0,'','VALIBEN G GORSELA','','','','',0,'CHANDRAWADA DWARKA','CHANDRAWADA DWARKA','GUJARAT','INDIA','1966-12-23','Y','59Y',0,0,0,'F','','','+91',9726618653,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-23 12:11:54','','0000-00-00 00:00:00'),(0,4679,'',0,'','KANAKKUMAR R MULIYANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1958-12-23','Y','67Y',0,0,0,'M','','','+91',9427917237,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','janvi','2025-12-23 12:14:43','','0000-00-00 00:00:00'),(0,4680,'',0,'','SANGITABEN M MAKWANA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-12-23','Y','49Y',49,0,0,'F','','','+91',9974700761,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 12:27:27','reception','2025-12-23 12:33:22'),(0,4681,'',0,'','LINABEN D MORADIYA','','','','',0,'HALVAD','HALVAD','GUJARAT','INDIA','1983-12-23','Y','42Y',0,0,0,'F','','','+91',9879930085,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-23 12:35:05','','0000-00-00 00:00:00'),(0,4682,'',0,'','SHALIN DOSHI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1976-12-23','Y','49Y',0,0,0,'M','','','+91',9850965789,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 12:36:01','','0000-00-00 00:00:00'),(0,4683,'',0,'','RASHMIBEN BHATTI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1982-12-23','Y','43Y',0,0,0,'F','','','+91',9265533058,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 13:17:06','','0000-00-00 00:00:00'),(0,4684,'',0,'','RUSHIKESHBHAI DANGAR','','','','',0,'NANA MOVA','NANA MOVA','GUJARAT','INDIA','1990-12-23','Y','35Y',0,0,0,'M','','','+91',9825109190,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 13:46:58','','0000-00-00 00:00:00'),(0,4685,'',0,'','JAMALBHAI B VAKOT','','','','',0,'UNA','UNA','GUJARAT','INDIA','1973-12-23','Y','52Y',0,0,0,'M','','','+91',8980572828,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 13:51:54','','0000-00-00 00:00:00'),(0,4686,'',0,'','AJAYBHAI M VARODARIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1985-12-23','Y','40Y',0,0,0,'M','','','+91',9879999426,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 16:38:01','','0000-00-00 00:00:00'),(0,4687,'',0,'','YOGESHWARIBA R JADEJA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1991-12-23','Y','34Y',34,0,0,'F','','','+91',9427564433,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 16:42:17','reception','2025-12-23 17:05:14'),(0,4688,'',0,'','ANJNABEN N SANGANI','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1955-12-23','Y','70Y',0,0,0,'F','','','+91',9228219927,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 17:15:56','','0000-00-00 00:00:00'),(0,4689,'',0,'','NIRMALABEN PAWAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1997-12-23','Y','28Y',0,0,0,'F','','','+91',8817614634,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-23 17:20:34','','0000-00-00 00:00:00'),(0,4690,'',0,'','SHIVANI A PARMAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','2007-12-23','Y','18Y',0,0,0,'F','','','+91',7990325141,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 17:35:12','','0000-00-00 00:00:00'),(0,4691,'',0,'','ANSOYABEN H PITHADIYA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1951-12-23','Y','74Y',0,0,0,'F','','','+91',8238294178,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 17:36:26','','0000-00-00 00:00:00'),(0,4692,'',0,'','DEEPBHAI GAJERA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1993-12-23','Y','32Y',0,0,0,'M','','','+91',9510203032,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','manshi','2025-12-23 17:42:07','','0000-00-00 00:00:00'),(0,4693,'',0,'','FATEHMOHMMADBHAI V KADIVAR','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1960-12-23','Y','65Y',0,0,0,'M','','','+91',9265599210,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 17:45:34','','0000-00-00 00:00:00'),(0,4694,'',0,'','PARESHBHAI G MUNDRA','','','','',0,'RAJKOT','RAJKOT','GUJARAT','INDIA','1983-12-23','Y','42Y',0,0,0,'M','','','+91',9979427485,'+91',0,'',1,0,'GUJ','','N',0,'','','','','','0000-00-00','reception','2025-12-23 17:46:53','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `pateint_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `patho_biopsy_result`
--

DROP TABLE IF EXISTS `patho_biopsy_result`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `patho_biopsy_result` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `req_id` int(11) NOT NULL,
  `fyear` varchar(4) NOT NULL,
  `service_cd` varchar(8) NOT NULL,
  `test_cd` varchar(10) NOT NULL,
  `test_grp_cd` varchar(8) NOT NULL,
  `result` text NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`req_id`,`fyear`,`service_cd`,`test_cd`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `patho_biopsy_result`
--

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

--
-- Table structure for table `patho_result_mst`
--

DROP TABLE IF EXISTS `patho_result_mst`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `patho_result_mst` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `req_id` int(11) NOT NULL,
  `fyear` varchar(4) NOT NULL,
  `service_cd` varchar(8) NOT NULL,
  `test_cd` varchar(10) NOT NULL,
  `test_grp_cd` varchar(4) NOT NULL,
  `result` text NOT NULL,
  `adistional_result` varchar(30) NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`req_id`,`fyear`,`service_cd`,`test_cd`),
  KEY `test_cd` (`test_cd`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `patho_result_mst`
--

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

--
-- Table structure for table `patho_test_master`
--

DROP TABLE IF EXISTS `patho_test_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `patho_test_master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `test_cd` varchar(10) NOT NULL,
  `test_code_mapping_id` varchar(10) NOT NULL,
  `sample_cat` varchar(6) NOT NULL,
  `exam_cat` varchar(4) NOT NULL,
  `test_desc` varchar(150) NOT NULL,
  `additional_test_desc` varchar(30) NOT NULL,
  `is_individual_test` enum('Y','N') NOT NULL DEFAULT 'N',
  `default_value` text NOT NULL,
  `sub_result` text NOT NULL,
  `formula` varchar(50) NOT NULL,
  `range_note` text NOT NULL,
  `unit` varchar(20) NOT NULL,
  `m_min` varchar(10) NOT NULL,
  `m_max` varchar(10) NOT NULL,
  `f_min` varchar(10) NOT NULL,
  `f_max` varchar(10) NOT NULL,
  `m_c_min` varchar(10) NOT NULL,
  `m_c_max` varchar(10) NOT NULL,
  `f_c_min` varchar(10) NOT NULL,
  `f_c_max` varchar(10) NOT NULL,
  `test_seq` int(11) NOT NULL,
  `source_of_test` int(11) NOT NULL,
  `Rounding_Digit` char(1) DEFAULT NULL,
  `lab_category` enum('Y','N') DEFAULT 'N',
  `active_YN` char(1) NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`test_cd`),
  KEY `test_cd` (`test_cd`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `patho_test_master`
--

LOCK TABLES `patho_test_master` WRITE;
/*!40000 ALTER TABLE `patho_test_master` DISABLE KEYS */;
INSERT INTO `patho_test_master` VALUES (0,0,'T0001','','','','Hemoglobin','','N','','','','[M: 14-18, F:12-16 g/dl]','g/dl','14','18','12','16','','','','',0,0,NULL,'N','Y','thims','2018-07-31 17:35:37','thims','2019-07-19 16:35:55'),(0,0,'T0002','','','','Total RBC Count','','N','','','','[M: 4.2-5.5, F: 3.8-5.0 mill/cmm]','mill/cmm','4.2','5.5','3.8','5.0','','','','',0,0,NULL,'N','Y','thims','2018-07-31 17:36:59','thims','2019-07-19 16:36:30'),(0,0,'T0003','','','','Hematocrit(H.C.T)','','N','','','','[M: 42-52 , F: 36-48 %]','%','42','52','36','48','','','','',0,0,NULL,'N','Y','thims','2018-07-31 17:48:26','thims','2019-07-19 18:36:03'),(0,0,'T0004','','','','M.C.V.','','N','','','','[82-98 femtolitre]','femtolitre','82','98','82','98','','','','',0,0,NULL,'N','Y','thims','2018-07-31 17:49:36','thims','2019-07-19 16:47:51'),(0,0,'T0005','','','','M.C.H.','','N','','','','[26-34 pg/cell]','pg/cell','26','34','26','34','','','','',0,0,NULL,'N','Y','thims','2018-07-31 17:50:36','thims','2019-07-19 16:48:16'),(0,0,'T0006','','','','M.C.H.C.','','N','','','','[32-37 g/dl]','g/dl','32','37','32','37','','','','',0,0,NULL,'N','Y','thims','2018-07-31 17:51:30','thims','2019-07-19 16:48:36'),(0,0,'T0007','','','','R.D.W.-CV','','N','','','','[11-16%]','','11','16','11','16','','','','',0,0,NULL,'N','Y','thims','2018-07-31 17:51:54','thims','2019-07-19 16:48:58'),(0,0,'T0008','','','','Total WBC Count','','N','','','','[4,000-10,000 /cmm]','/cmm','4000','10000','4000','10000','','','','',0,0,NULL,'N','Y','thims','2018-07-31 17:52:52','thims','2019-07-19 16:43:04'),(0,0,'T0009','','','','Platelet Count','','N','','','','[1.5 - 4.0 lac/cmm]','lac/cmm','150000','400000','150000','400000','','','','',0,0,NULL,'N','Y','thims','2018-07-31 17:53:46','thims','2019-07-19 18:20:52'),(0,0,'T0010','','','','Reticulocyte Count','','N','','','',' Adult & children [ 0.5 to 2.5 %]   \r\nNew Born : ( 2 to 5 % )','%','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 17:55:04','nimisha','2018-10-08 06:53:46'),(0,0,'T0011','','','','Absolute Eosinophil Count','','N','','','','[40 - 400 /cmm]','/cmm','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 17:55:54','thims','2018-07-31 17:55:54'),(0,0,'T0012','','','','ESR After 1 Hour','[Modified Westergren]','N','','','','[M: 1- 10mm / F: 3 - 12mm]','mm','1','10','3','12','','','','',0,0,NULL,'N','Y','thims','2018-07-31 18:02:07','thims','2019-07-19 18:07:26'),(0,0,'T0013','','','','ESR After 2 Hours','[Modified Westergren]','N','','','','[M: 7 - 15 mm / F: 10 -18 mm]','mm','7','15','10','18','','','','',0,0,NULL,'N','Y','thims','2018-07-31 18:02:54','thims','2019-07-19 18:07:59'),(0,0,'T0014','','','','Blasts','','N','','','','','%','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 18:03:20','thims','2018-07-31 18:03:20'),(0,0,'T0015','','','','Lymphoblasts','','N','','','','','%','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 18:03:47','thims','2018-07-31 18:03:47'),(0,0,'T0016','','','','Myeloblasts','','N','','','','','%','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 18:04:16','thims','2018-07-31 18:04:16'),(0,0,'T0017','','','','Promyelocytes','','N','','','','','%','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 18:04:46','thims','2018-07-31 18:04:46'),(0,0,'T0018','','','','Myelocytes','','N','','','','','%','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 18:05:02','thims','2018-07-31 18:05:02'),(0,0,'T0019','','','','Metamyelocytes','','N','','','','','%','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 18:05:24','thims','2018-07-31 18:05:24'),(0,0,'T0020','','','','Band Forms','','N','','','','','%','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 18:05:40','thims','2018-07-31 18:05:40'),(0,0,'T0021','','','','Polymorphs','','N','','','','[40 - 70 %]','%','40','70','40','70','','','','',0,0,NULL,'N','Y','thims','2018-07-31 18:06:15','thims','2019-07-19 16:44:03'),(0,0,'T0022','','','','Lymphocytes','','N','','','','[20 - 40 %]','%','20','40','20','40','','','','',0,0,NULL,'N','Y','thims','2018-07-31 18:06:48','thims','2019-07-19 16:44:21'),(0,0,'T0023','','','','Eosinophils','','N','','','','[1 - 4 %]','%','1','4','1','4','','','','',0,0,NULL,'N','Y','thims','2018-07-31 18:07:17','thims','2019-07-19 16:44:43'),(0,0,'T0024','','','','Monocytes','','N','','','','[2 - 8%]','%','2','8','2','8','','','','',0,0,NULL,'N','Y','thims','2018-07-31 18:07:49','thims','2019-07-19 16:45:04'),(0,0,'T0025','','','','Basophils','','N','','','','[0 - 1 %]','%','0','1','0','1','','','','',0,0,NULL,'N','Y','thims','2018-07-31 18:08:13','thims','2019-07-19 16:46:22'),(0,0,'T0026','','','','Normoblasts','','N','','','','','%','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 18:08:44','thims','2018-07-31 18:08:44'),(0,0,'T0027','','','','E.Metamyelocyte','','N','','','','','%','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 18:09:11','thims','2018-07-31 18:09:11'),(0,0,'T0028','','','','Quantity','','N','10 c.c.','10 c.c.,1.5 ml','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:19:37','thims','2018-08-29 09:10:33'),(0,0,'T0029','','','','Colour','','N','Pale Yellow','Opaque White,Pale Yellow,Whitish,Reddish,Dark Yellow,Colour Less,Greenish,Brown,Yellow','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:19:55','kevalc','2021-08-11 14:43:14'),(0,0,'T0030','','','','Odour','','N','Aromatic','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:20:11','thims','2018-08-29 09:11:09'),(0,0,'T0031','','','','Transparency','','N','Clear','Clear,S. Turbid,Turbid','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:20:32','thims','2018-12-06 07:43:01'),(0,0,'T0032','','','','P.C.V','','N','','','','[M: 40 - 54 , F: 36 - 45 %]','%','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:20:40','thims','2018-09-05 12:21:25'),(0,0,'T0033','','','','Reaction','','N','Acidic','Acidic,Basic,Alkaline','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:20:57','suraj','2021-07-29 12:12:23'),(0,0,'T0034','','','','HCT','','N','','','','[35 - 50 %]','%','35','50','35','50','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:21:24','thims','2019-07-19 16:47:28'),(0,0,'T0035','','','','Albumin','','N','Absent','Absent,Trace,+,++,+++,++++','','Absent','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:21:27','poojapatel','2021-11-12 15:26:42'),(0,0,'T0036','','','','Sugar','','N','Absent','Absent,Trace,+,++,+++,++++','','Absent','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:21:36','poojapatel','2021-11-12 16:41:57'),(0,0,'T0037','','','','Bile Salts','','N','Absent','Absent, Present','','Absent','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:21:54','poojapatel','2021-11-12 16:42:28'),(0,0,'T0038','','','','MPV','','N','','','','[6.5 - 11.0 fl]','fl','6.5','11.0','6.5','11.0','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:21:57','thims','2019-07-19 16:49:33'),(0,0,'T0039','','','','PDW','','N','','','','[12 - 18 %]','%','12','18','12','18','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:22:31','thims','2019-07-19 16:49:50'),(0,0,'T0040','','','','Pus Cells','','N','','','','','/hpf','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:22:37','suraj','2021-08-06 15:16:44'),(0,0,'T0041','','','','RBS','','N','','','','70 - 120 mg/dl','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:22:54','bhumi','2019-01-22 10:56:50'),(0,0,'T0042','','','','Red Cells','','N','Absent','','','','/hpf','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:23:03','thims','2018-08-29 09:12:49'),(0,0,'T0043','','','','WBCs','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:23:05','thims','2018-08-29 08:55:53'),(0,0,'T0044','','','','Premature Cells','','N','','No Premature cells are seen, Normoblasts are seen.','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:23:28','nimisha','2018-12-17 13:31:42'),(0,0,'T0045','','','','Epithelial Cells','','N','','','','','/hpf','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:23:36','poojapatel','2021-11-16 10:18:40'),(0,0,'T0046','','','','Casts','','N','Absent','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:23:53','thims','2018-08-29 09:13:17'),(0,0,'T0047','','','','Platelets','','N','Adequate and Normal.','Adequate and Normal.,Mild thrombocytopenia.,Mild thrombocytosis.','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:24:04','bhumi','2019-02-21 17:16:02'),(0,0,'T0048','','','','Crystals','','N','Absent','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:24:08','thims','2018-08-29 09:13:32'),(0,0,'T0049','','','','Blood Parasites','','N','','MP is negative,Schizont of p. vivex are seen,Ringform of p.vivex are seen, Gamatocytes of p. falci are seen, Trophozoits of p. vivex are seen.   ','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:24:34','bhumi','2019-04-15 16:21:38'),(0,0,'T0050','','','','Amorphous','','N','--','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:24:35','suraj','2021-07-29 15:45:15'),(0,0,'T0051','','','','T. Vaginalis','','N','--','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:24:59','suraj','2021-07-29 15:46:20'),(0,0,'T0052','','','','Peri.Smear Conclusion','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:25:00','nimisha','2018-10-08 07:04:46'),(0,0,'T0053','','','','Acetone','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:25:22','thims','2018-08-29 09:14:16'),(0,0,'T0054','','','','Benzidine Test','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:25:54','thims','2018-08-29 09:14:30'),(0,0,'T0055','','','','Bleeding Time [BT]','','N','','','','[1 to 5  min]','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:26:24','nimisha','2018-11-22 10:08:51'),(0,0,'T0056','','','','Urobilinogens','','N','Normal','Normal,Trace,1(+),2(+),3(+),4(+)','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:26:25','thims','2018-08-29 09:14:44'),(0,0,'T0057','','','','Clotting Time [CT]','','N','','','','[ 4 to 9  min]','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:27:04','nimisha','2018-11-22 10:09:13'),(0,0,'T0058','','','','Others','','N','--','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:27:29','suraj','2021-07-29 15:48:26'),(0,0,'T0059','','','','Serum Calcium-OLD','','N','','','','[8.2 - 10.5 mg/dl]','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:28:36','thims','2018-07-31 19:28:36'),(0,0,'T0060','','','','MP By Card','','N','','Non Reactive , Reactive','','','','','','','','','','','',0,0,NULL,'N','N','thims','2018-07-31 19:28:57','suraj','2021-07-29 12:31:20'),(0,0,'T0061','','','','Serum Phosphorus','','N','','','','[2.5 - 4.5 mg/dl]','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:29:46','bhumi','2019-03-27 16:23:17'),(0,0,'T0062','','','','Serum Amylase','','N','','','','[up to 96.0 u/l]','u/l','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:30:27','thims','2018-07-31 19:30:27'),(0,0,'T0063','','','','Serum Lipase','','N','','','','[13-60 u/l]','U/L','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:30:57','bhumi','2019-03-01 15:57:47'),(0,0,'T0064','','','','Serum Cholinestrase','','N','','','','MALE : 4620 - 11500\r\nFEMALE : 3930 - 10800','U/L','5,900','12,200','4,650','10,440','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:31:53','bhumi','2019-05-03 10:48:09'),(0,0,'T0065','','','','Serum Acid Phosphatase','','N','','','','','u/l','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:32:33','thims','2018-07-31 19:32:33'),(0,0,'T0066','','','','Bile Pigments','','N','Absent','Absent, Present','','Absent','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:32:38','poojapatel','2021-11-12 16:42:57'),(0,0,'T0067','','','','Sample','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:36:30','thims','2018-07-31 19:36:30'),(0,0,'T0068','','','','Blood Sugar[Fasting]','','N','','','','[70 - 110 mg/dl]','mg/dl','70','110','70','110','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:36:47','thims','2019-07-19 17:55:15'),(0,0,'T0069','','','','Urine Sugar [Fasting]','','N','','','','[Absent]','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:37:25','thims','2018-07-31 19:37:25'),(0,0,'T0070','','','','Test Method','','N','Rapid Immunochramatographic','Rapid Immunochramatographic','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:37:31','thims','2018-08-14 11:05:05'),(0,0,'T0071','','','','Blood Sugar[Post Prendial]','','N','','','','[80 - 140 mg/dl]','mg/dl','80','140','80','140','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:38:14','thims','2019-07-19 17:55:38'),(0,0,'T0072','','','','Urine Sugar [Post Prendial]','','N','','','','[Absent]','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:38:59','thims','2018-07-31 19:38:59'),(0,0,'T0073','','','','Blood Sugar [Random]','','N','','','','[70 - 120 mg/dl Approx.]','mg/dl','70','120','70','120','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:39:58','thims','2019-07-19 17:54:45'),(0,0,'T0074','','','','Result','','N','Non-reactive','Non Reactive , Reactive','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:40:27','nimisha','2018-10-09 08:05:05'),(0,0,'T0075','','','','Urine Sugar [Random]','','N','','','','[Absent]','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:40:59','thims','2018-07-31 19:40:59'),(0,0,'T0076','','','','Blood Urea','','N','','','','[15- 40 mg/dl]','mg/dl','15','40','15','40','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:41:41','thims','2019-07-19 17:56:05'),(0,0,'T0077','','','','S.Creatinine','','N','','','','[0.60 - 1.30 mg/dl]','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:42:35','bhumi','2019-02-15 14:44:11'),(0,0,'T0078','','','','SPECIMEN','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:43:19','thims','2018-09-08 06:25:52'),(0,0,'T0079','','','','Site','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:43:45','nimisha','2018-10-02 07:45:12'),(0,0,'T0080','','','','S.Bilirubin Total','','N','','','','[upto 1.2 mg/dl ]','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:44:01','bhumi','2019-02-15 14:42:36'),(0,0,'T0081','','','','Smear Study','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:44:17','nimisha','2018-10-05 07:34:52'),(0,0,'T0082','','','','S.Bilirubin Direct','','N','','','','[upto 0.3 mg/dl]','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:44:45','bhumi','2019-02-15 14:43:02'),(0,0,'T0083','','','','S.Bilirubin Indirect','','N','','','T0080-T0082','[upto 0.7 mg/dl]','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:45:26','thims','2018-12-05 08:11:49'),(0,0,'T0084','','','','GROSS','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:47:25','thims','2018-09-08 06:26:45'),(0,0,'T0085','','','','MICRO','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:47:34','thims','2018-09-08 06:27:05'),(0,0,'T0086','','','','S.G.P.T(ALT)','','N','','','','[0 - 40 u/l]','u/l','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:48:06','nimisha','2018-10-14 06:59:16'),(0,0,'T0087','','','','CONCLUSION','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:48:11','thims','2018-09-08 06:27:31'),(0,0,'T0088','','','','S.G.O.T(AST)','','N','','','','[0 - 40 u/l]','u/l','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:49:05','nimisha','2018-10-14 06:58:59'),(0,0,'T0089','','','','S.ALKALINE PHOSPHATASE (IFCC)','','N','','','','01-12 Years old-Men- < 500 U/L      Women- < 500 U/L\r\n13-18 Years old - Men- < 750 U/L     Women- < 750 U/L\r\n18-50 Years old Men- 45-125 U/L     Women- 35-100 U/L\r\n51-79 Years old Men- 50-135  U/L      Women- 50-135 U/L','u/l','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:55:41','kevalc','2021-09-24 16:31:43'),(0,0,'T0090','','','','S.Cholesterol','','N','','','','[Desirable/low risk < 200]\r\n[Borderline risk 200-239]\r\n[Eleveted / high risk >240]','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:57:37','bhumi','2019-02-04 12:23:52'),(0,0,'T0091','','','','S.Triglycerides','','N','','','','[Normal: <200]\r\n[Borderline High 200-400]\r\n[High 400 - 1000]','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 19:59:21','thims','2018-07-31 19:59:21'),(0,0,'T0092','','','','S. Uric Acid ','','N','','','','[Male 3.5 - 7.2 mg/dl]\r\n[Female 2.5 -6.2 mg/dl]','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 20:00:48','thims','2018-07-31 20:00:48'),(0,0,'T0094','','','','Serum Calcium','','N','','','','[Adult 8.1 - 10.5 mg/dl]\r\n[Pediatric 10 - 12 mg/dl]','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 20:03:31','bhumi','2019-01-24 10:35:21'),(0,0,'T0095','','','','S.Total Protein','','N','','','','[Adult : 6.0-8.0 gm/dl]\r\n','gm/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 20:04:46','thims','2018-07-31 20:04:46'),(0,0,'T0096','','','','S.Albumin','','N','','','','[Adult : 3.5-5.0 gm/dl]','gm/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 20:05:22','yashpancha','2022-01-05 08:26:27'),(0,0,'T0097','','','','S.Globulin','','N','','','T0095-T0096','[Adult : 2.3-3.5 gm/dl]','gm/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-07-31 20:06:05','thims','2018-08-30 10:15:03'),(0,0,'T0098','','','','Albumin/Globulin Ratio','','N','','','T0096/T0097','[>1.5]','','','1.5','','1.5','','','','',0,0,NULL,'N','Y','thims','2018-07-31 20:07:39','thims','2019-07-19 17:46:44'),(0,0,'T0099','','','','PCO2','','N','','','','[35 - 45 mm Hg]','mm Hg','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 10:39:06','thims','2018-08-01 10:39:06'),(0,0,'T0100','','','','PO2','','N','','','','[80 - 105 mm Hg During Breathing room air More than 500 mm Hg]','mm Hg','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 10:41:13','thims','2018-08-01 10:41:13'),(0,0,'T0101','','','','Arterial PH','','N','','','','[During Breathing 100% oxygen 7.35 - 7.45]','','7.35','7.45','7.35','7.45','','','','',0,0,NULL,'N','Y','thims','2018-08-01 10:42:44','thims','2019-07-19 17:50:54'),(0,0,'T0102','','','','Hco3','','N','','','','[23 - 29 mmol/L]','mmol/L','23','29','23','29','','','','',0,0,NULL,'N','Y','thims','2018-08-01 10:43:27','thims','2019-07-19 18:35:14'),(0,0,'T0103','','','','TCO2','','N','','','','[23 - 27 mmol /L]','mmol / L','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 10:44:14','thims','2018-08-01 10:44:14'),(0,0,'T0104','','','','BE','','N','','','','[-2 to +3 mmol / L]','mmol / L','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 10:45:00','thims','2018-08-01 10:45:00'),(0,0,'T0105','','','','SO2','','N','','','','[95 - 98]','%','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 10:45:32','thims','2018-08-01 10:45:32'),(0,0,'T0106','','','','Serum Sodium','','N','','','','135-148  ','mmol/L','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 10:50:50','bhumi','2019-02-05 15:09:53'),(0,0,'T0107','','','','Serum Potassium','','N','','','','3.5-5.30','mmol/L','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 10:52:27','bhumi','2019-02-05 15:10:43'),(0,0,'T0108','','','','Serum lonized Calcium','','N','','','','[1.2 - 1.32 mmol/L]','mmol/L','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 10:53:22','thims','2018-08-01 10:53:22'),(0,0,'T0109','','','','Fasting Blood Glucose','','N','','','','[70 - 110 mg/dl]','mg/dl','70','110','70','110','','','','',0,0,NULL,'N','Y','thims','2018-08-01 10:58:11','thims','2019-07-19 18:26:09'),(0,0,'T0110','','','','Urine Glucose','','N','Absent','','','','','','','','','','','','',0,0,NULL,'N','N','thims','2018-08-01 10:58:35','thims','2022-03-29 15:22:16'),(0,0,'T0111','','','','Urine Acetone','','N','','Absent,Present','','[Absent]','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 10:59:02','thims','2018-09-05 12:21:41'),(0,0,'T0112','','','','Post Pradial Blood Glucose ','','N','','','','[80 - 140 mg/dl]','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 10:59:50','nimisha','2018-10-30 04:30:19'),(0,0,'T0115','','','','Random Blood Glucose','','N','','','','[70 - 140 mg/dl]','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 11:01:18','thims','2018-08-14 11:29:02'),(0,0,'T0116','','','','SERUM ACETONE','','N','','','','ABSENT','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 11:11:32','bhumi','2019-12-09 17:33:54'),(0,0,'T0117','','','','CPK Total','','N','','','','55 - 170','U/L','55','170','55','170','','','','',0,0,NULL,'N','Y','thims','2018-08-01 11:18:54','nilesh','2021-05-19 17:01:00'),(0,0,'T0118','','','','CK-MB','','N','','','','[0 - 24 U/L at 37`c]','U/L at 37~','0','24','0','24','','','','',0,0,NULL,'N','Y','thims','2018-08-01 11:21:51','thims','2019-07-19 17:59:56'),(0,0,'T0119','','','','Troponin-I [Qualitative]','','N','','Negative,Positive','','[Negative]','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 11:22:57','bhumi','2019-01-23 15:17:52'),(0,0,'T0120','','','','Troponin  -I [Quantitative]','','N','','','','< 0.1ng/ml','ng/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 11:24:06','bhumi','2019-06-13 14:14:51'),(0,0,'T0121','','','','Specimen','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 11:34:28','thims','2018-08-01 11:34:28'),(0,0,'T0122','','','','ZN Stain (for AFB)','','N','AFB not Seen','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 11:34:45','thims','2018-08-14 13:59:39'),(0,0,'T0123','','','','KOH Preparation','','N','','NO FUNGAL STRUCTURE ARE SEEN.','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 11:35:05','nimisha','2018-12-18 12:46:37'),(0,0,'T0124','','','','Gram\'s Stain','','N','','No organisms are seen, Gram positive cocci are seen, Gram Negative Bacilli are seen.','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 11:35:19','nimisha','2018-12-18 12:47:43'),(0,0,'T0125','','','','Culture Methods','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 11:35:39','thims','2018-08-01 11:35:39'),(0,0,'T0126','','','','Culture Examination','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 11:36:08','thims','2018-08-01 11:36:08'),(0,0,'T0127','','','','Organism Isolated','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 11:36:27','thims','2018-08-01 11:36:27'),(0,0,'T0128','','','','Colony Count','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 11:36:48','thims','2018-08-01 11:36:48'),(0,0,'T0129','','','','Serum FSH(Follicle Stimulating','[Follicle Stimulating Hormone]','N','','','','[Follicular Phase: 3.0 to 12.0]\r\n[Mid Cycle: 8.0 to 22.0]\r\n[Leuteal Phase: 0.5 to 10.5]\r\n[Post Menopausal: 35.0 to 151.0]','mlU/ml','','','','','','','','',0,0,NULL,'N','','thims','2018-08-01 11:42:46','thims','2018-08-02 17:51:24'),(0,0,'T0130','','','','Serum LH (Leutinising Hormone)','[Leutinising Hormone]','N','','','','[Follicular Phase: 0.5 to 10.5]\r\n[Ovulatory Peak: 18.4 to 65.0]\r\n[Leuteal Phase: 0.5 to 10.5]\r\n[Post Menopausal: 8.2 to 40.8]','mlU/ml','','','','','','','','',0,0,NULL,'N','','thims','2018-08-01 11:45:37','thims','2018-08-02 17:52:13'),(0,0,'T0131','','','','Serum PROLACTIN','','N','','','','[Adult : 5.18-26.53]\r\n[Maternal Plasma at Delivery: 26.0 to 41.0]\r\n[Newborn(24 hr): 123.0 to 222]\r\n[Female 4- 17 yr : 0.0 to 15.0]\r\n[Post Menopausal: 1.5 to 18.5]','ng/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 11:50:55','bhumi','2019-03-08 14:03:00'),(0,0,'T0132','','','','Serum PROGESTERONE','','N','','','','[Follicular Phase : 0.3 to  1.1]\r\n[Leuteal Phase: 1.8.0 to 21.0]\r\n[Post Menopausal : upto 0.3]\r\n[Preg 1st Trim. : 9.1 to 38.0]\r\n[Preg 2nd Trim. : 18.8 to 130.0]\r\n[Preg 3rd Trim. : 51.8 to 244.0]','ng/ml','','','','','','','','',0,0,NULL,'N','','thims','2018-08-01 11:55:11','thims','2018-08-01 15:48:15'),(0,0,'T0133','','','','Serum ESTRADIOL [E2]','','N','','','','Menstruating females\r\nFollicular Phase: 21 - 251\r\nMid cycle phase: 38 - 649\r\nLuteal phase: 21 - 312\r\nPostmenopausal: 10-28','pg/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 11:58:37','bhumi','2019-05-21 16:46:09'),(0,0,'T0134','','','','Serum Beta HCG','','N','','','','[Nonpregnant : 0.0 to 10.0]\r\n[Normal Pregnancy(Weeks)] \r\n0.1 - 5.7 [Non Pregnant & Normal]\r\n[1st Week : 10- 30]\r\n[2nd Week : 30 - 100]\r\n[3rd Week : 100 - 1000]\r\n[4th Week : 1000 - 10000]\r\n[2nd & 3rd Month : 30000 to 100000]\r\n[2nd Trimester : 10,000 - 30,000]\r\n[3rd Trimester : 5,000 - 15,000]','mlU/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 12:04:07','thims','2018-08-01 12:04:07'),(0,0,'T0135','','','','Serum DHEA- SULPHATE','','N','','','','[Newborn (M/F): 170.0 to 360.0]\r\n[Pre Menopausal : 80.0 to 390]\r\n[Term Pregnancy : 20.0 to 120]\r\n[Post Menopausal : 10.0 to 60.0]','mcg/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 12:06:39','thims','2018-08-01 12:06:39'),(0,0,'T0136','','','','Testosterone (Total)','','N','','','','[F: 3.0 to 10.6 ng/ml]','ng/ml','','','','','','','','',0,0,NULL,'N','','thims','2018-08-01 12:07:39','thims','2018-08-01 15:47:54'),(0,0,'T0137','','','','Dengue lgG','','N','','Negative,Positive','','','','','','','','','','','',0,0,NULL,'N','','thims','2018-08-01 12:08:36','thims','2018-08-02 10:57:27'),(0,0,'T0138','','','','Dengue lgM','','N','','Negative,Positive','','','','','','','','','','','',0,0,NULL,'N','','thims','2018-08-01 12:08:56','thims','2018-08-02 10:57:44'),(0,0,'T0139','','','','Dengue NS1 Antigen','','N','','Negative,Positive','','','','','','','','','','','',0,0,NULL,'N','','thims','2018-08-01 12:09:21','thims','2018-08-02 10:57:58'),(0,0,'T0140','','','','HbA1C','(BY HPLC)','N','','','28.7 X A1C – 46.7 = eAG.','For Screening:\r\nDiabetes: >6.5%\r\nPre-Diabetes: 5.7% - 6.4%\r\nNon-Diabetes: < 5.7%\r\nFor Diabetic Patient:\r\nPoor Control : > 7.0 %\r\nGood Control : 6.0-7.0 %','%','','10.3','','10.3','','','','',0,0,NULL,'N','Y','thims','2018-08-01 13:03:04','suraj','2021-07-30 11:34:44'),(0,0,'T0141','','','','IgG','','N','','','','      < 0.9 : Negative\r\n0.9 - 1.1 : Equivocal\r\n       > 1.1 : Positive','Index','','1.1','','1.1','','','','',0,0,NULL,'N','Y','thims','2018-08-01 13:25:32','thims','2019-07-19 18:37:43'),(0,0,'T0142','','','','IgM','','N','','','','      < 0.9 : Negative\r\n0.9 - 1.1 : Equivocal\r\n       > 1.1 : Positive','Index','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 13:25:54','thims','2018-08-01 13:25:54'),(0,0,'T0143','','','','TOXOPLASMA - IgG','','N','','','','      < 0.9 : Negative\r\n0.9 - 1.1 : Equivocal\r\n       > 1.1 : Positive','Index','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:03:14','thims','2018-08-01 14:03:14'),(0,0,'T0144','','','','TOXOPLASMA - IgM','','N','','','','      < 0.9 : Negative\r\n0.9 - 1.1 : Equivocal\r\n       > 1.1 : Positive','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:03:34','thims','2018-08-01 14:03:34'),(0,0,'T0145','','','','RUBELlA - IgG','','N','','','','      < 0.9 : Negative\r\n0.9 - 1.1 : Equivocal\r\n       > 1.1 : Positive','Index','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:04:11','bhumi','2019-06-08 14:21:46'),(0,0,'T0146','','','','RUBELlA - IgM','','N','','','','      < 0.9 : Negative\r\n0.9 - 1.1 : Equivocal\r\n       > 1.1 : Positive','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:04:26','bhumi','2019-06-08 14:21:57'),(0,0,'T0147','','','','CYTOMEGALOVIRUS - IgG','','N','','','','      < 0.9 : Negative\r\n0.9 - 1.1 : Equivocal\r\n       > 1.1 : Positive','Index','','1.1','','1.1','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:05:08','thims','2019-07-19 18:06:09'),(0,0,'T0148','','','','CYTOMEGALOVIRUS - IgM','','N','','','','      < 0.9 : Negative\r\n0.9 - 1.1 : Equivocal\r\n       > 1.1 : Positive','','','1.1','','1.1','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:05:20','thims','2019-07-19 18:06:38'),(0,0,'T0149','','','','HERPES - IgG','','N','','','','      < 0.9 : Negative\r\n0.9 - 1.1 : Equivocal\r\n       > 1.1 : Positive','','','1.1','','1.1','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:05:40','thims','2019-07-19 18:37:05'),(0,0,'T0150','','','','HERPES - IgM','','N','','','','      < 0.9 : Negative\r\n0.9 - 1.1 : Equivocal\r\n       > 1.1 : Positive','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:05:54','thims','2018-08-01 14:05:54'),(0,0,'T0151','','','','Vitamin B-12 Level','','N','','','','[Male/Female : 185 to 830]','pg/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:10:42','bhumi','2019-01-24 14:26:24'),(0,0,'T0152','','','','Human Chorionic Gonadotrophin','','N','','','','Male  and Non Pregnant Female : < 10','miU/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:10:55','thims','2018-08-01 14:10:55'),(0,0,'T0153','','','','Carcino Embroyonic Antigen','','N','','','','Less than 5.0','ng/ml','5.0','','5.0','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:11:46','thims','2019-07-19 17:58:46'),(0,0,'T0154','','','','Prostatic Specific Antigen','','N','','','','Less than 4.0','ng/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:12:39','thims','2018-08-01 14:12:39'),(0,0,'T0155','','','','Vitamin D','','N','','','','[<20.0 Deficient]\r\n[20 - 30 Insuficient]\r\n[30 - 100 Suficient Level]\r\n[>100 Toxic Level]','ng/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:12:57','yashpancha','2022-02-22 11:21:35'),(0,0,'T0156','','','','Free Prostatic Specific Antige','','N','','','','','ng/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:13:19','thims','2018-08-01 14:13:19'),(0,0,'T0157','','','','CA - 125','','N','','','','0 to 35','u/ml','0','35','0','35','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:13:43','thims','2019-07-19 17:57:07'),(0,0,'T0158','','','','CA-19.9','','N','','','','1.2 to 37.0','u/ml','1.2','37.0','1.2','37.0','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:14:09','thims','2019-07-19 17:57:37'),(0,0,'T0159','','','','A.F.P.','','N','','','','Male and Non Pregnant Woman : Less than 15','ng/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:14:59','thims','2018-08-01 14:14:59'),(0,0,'T0160','','','','THYROGLOBULIN','','N','','','','[0.00 to 68.00]','ng/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:15:50','jainil','2022-11-21 13:51:50'),(0,0,'T0161','','','','Consistency','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:59:24','thims','2018-08-29 09:29:30'),(0,0,'T0162','','','','Pus','','N','Absent','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:59:35','kevalc','2021-08-11 14:43:54'),(0,0,'T0163','','','','Blood','','N','Absent','Absent, Present','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:59:43','thims','2018-08-29 09:37:25'),(0,0,'T0164','','','','Mucus','','N','Absent','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 14:59:50','kevalc','2021-08-11 14:34:35'),(0,0,'T0165','','','','Parasites','','N','Absent','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:00:07','kevalc','2021-08-11 14:35:00'),(0,0,'T0166','','','','Occult Blood','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:01:04','bhumi','2019-03-07 10:46:17'),(0,0,'T0167','','','','Reducing Sub','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:01:19','thims','2018-08-29 09:31:40'),(0,0,'T0168','','','','Macrophages','','N','Absent','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:04:15','kevalc','2021-08-11 14:35:16'),(0,0,'T0169','','','','Trophozoite','','N','Absent','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:04:42','kevalc','2021-08-11 14:37:18'),(0,0,'T0170','','','','Band Cell','','N','','','','[00 - 04 %]','%','00','04','00','04','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:04:44','thims','2019-07-19 16:46:56'),(0,0,'T0171','','','','Muscle Fiber','','N','Absent','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:04:59','kevalc','2021-08-11 14:36:15'),(0,0,'T0172','','','','Vege Cells','','N','Absent','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:05:14','kevalc','2021-08-11 14:36:50'),(0,0,'T0173','','','','Blood Group','','N','','A POSITIVE,B  POSITIVE,O POSITIVE,AB POSITIVE,A NEGATIVE,B NEGATIVE,O NEGATIVE,AB NEGATIVE','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:05:25','suraj','2021-07-29 12:52:12'),(0,0,'T0174','','','','Fat Globules','','N','Absent','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:05:34','kevalc','2021-08-11 14:37:02'),(0,0,'T0175','','','','Starch','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:05:46','thims','2018-08-29 09:33:17'),(0,0,'T0176','','','','Cysts','','N','Absent','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:06:19','kevalc','2021-08-11 14:39:05'),(0,0,'T0177','','','','Larva','','N','Absent','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:06:32','kevalc','2021-08-11 14:39:18'),(0,0,'T0178','','','','Ova','','N','Absent','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:08:48','kevalc','2021-08-11 14:38:40'),(0,0,'T0179','','','','Bacteria','','N','Absent','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:09:02','kevalc','2021-08-11 14:35:46'),(0,0,'T0180','','','','Ova.','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:12:46','thims','2018-08-29 09:37:55'),(0,0,'T0181','','','','Cyst.','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:13:05','thims','2018-08-29 09:38:12'),(0,0,'T0182','','','','Adult Warm','','N','Absent','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:15:04','kevalc','2021-08-11 14:33:03'),(0,0,'T0183','','','','RBCs','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:17:52','thims','2018-08-29 08:55:14'),(0,0,'T0184','','','','H.S. C-Reactive Protein','(By Turbibonetry)','N','','','','In Adlt : Less than 6 mg/L\r\nInfant  : Less than 4.1 mg/L','mg/L','','','','','','','','',0,0,NULL,'N','','thims','2018-08-01 15:28:05','thims','2018-08-02 15:37:49'),(0,0,'T0185','','','','RA Factor','(By Turbidonetry)','N','','','','Upto 12 IU/ml','IU/ml','','12','','12','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:28:43','thims','2019-07-19 18:40:03'),(0,0,'T0186','','','','S.ASO Titre','(By Turbidonetry)','N','','','','Adults: <= 200\r\nChildren(<5Yrs):<= 100','IU/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:29:19','bhumi','2019-02-22 16:55:42'),(0,0,'T0187','','','','1st Day Stool Sample','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:31:11','thims','2018-08-01 15:31:11'),(0,0,'T0188','','','','2nd Day Stool Sample','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:31:21','thims','2018-08-01 15:31:21'),(0,0,'T0189','','','','3rd Day Stool Sample','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:31:48','thims','2018-08-01 15:31:48'),(0,0,'T0190','','','','Cobweb','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:33:51','thims','2018-08-29 09:49:50'),(0,0,'T0191','','','','H & E Stain (Cytology)','','N','','No malignant cells are seen ','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:38:03','thims','2018-12-06 08:10:37'),(0,0,'T0192','','8','','Erythrocytes','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:38:55','thims','2018-08-01 15:38:55'),(0,0,'T0193','','','','Rivalt\'s Test','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:39:21','thims','2018-08-29 09:50:45'),(0,0,'T0194','','','','Protein','','N','Normal','','','Upto 3 gm/dl','gm/dl','','3','','3','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:49:13','thims','2019-07-19 18:39:48'),(0,0,'T0195','','','','Total Cells','','N','','','','','/cumm','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:49:50','thims','2018-08-29 09:51:26'),(0,0,'T0196','','','','Serum FSH','[Follicle Stimulating Hormone]','N','','','','FOLLICULAR PHASE:3.03-8.08\r\nMID CYCLE PEAK: 2.55-16.69\r\nLUTEAL PHASE: 1.38-5.47\r\nPOST MENOPAUSAL: 26.72-133.41','mlU/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:50:08','bhumi','2019-03-12 15:29:48'),(0,0,'T0197','','','','Serum LH','[Leutinising Hormone]','N','','','','FOLLICULAR PHASE: 1.80 - 11.78\r\nMID CYCLE PEAK: 7.59 - 89.08\r\nLUTEL PHASE: 0.56 - 14.0\r\nPOST MENOPAUSAL: 5.16 - 61.99','mlU/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:50:51','bhumi','2019-03-12 15:30:10'),(0,0,'T0198','','','','Serum Testosterone(Male)','','N','','','','[Male : 3.0 to 10.6]','ng/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:51:59','thims','2018-08-01 15:51:59'),(0,0,'T0199','','','','Serum Prolactin(Male)','','N','','','','[Adult : 2.1 to 17.7]','ng/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:52:51','thims','2018-08-01 15:52:51'),(0,0,'T0200','','','','Serum Progesterone(Male)','','N','','','','[upto  0.3]','ng/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 15:53:36','thims','2018-08-01 15:53:36'),(0,0,'T0201','','','','Time of Collection ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:04:36','thims','2018-08-29 10:09:03'),(0,0,'T0202','','','','Time of Examination ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:04:47','thims','2018-08-29 10:09:15'),(0,0,'T0203','','','','Method of Collection ','','N','Self Manipulation','Self Manipulation','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:04:57','thims','2018-08-29 10:09:32'),(0,0,'T0204','','','','Liquefication ','','N','Within 20 min','','','[15-20 Minutes]','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:05:16','thims','2018-08-29 10:09:46'),(0,0,'T0205','','','','Viscocity','','N','Viscous','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:05:34','thims','2018-08-29 10:13:24'),(0,0,'T0206','','','','Fructose','','N','POSITIVE','POSITIVE,NAGATIVE','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:07:57','thims','2018-08-29 10:10:14'),(0,0,'T0207','','','','Total Sperm Count','','N','','','','N : 60 - 150 mill/ml','mill/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:09:28','thims','2018-08-29 10:10:33'),(0,0,'T0208','','','','Motility - Actively Motile','','N','','','','','%','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:10:20','thims','2018-08-29 10:10:58'),(0,0,'T0209','','','','Motility - Sllugishly Motile','','N','','','','','%','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:11:07','thims','2018-08-29 10:11:29'),(0,0,'T0210','','','','Motility - Non Motile','','N','','','','','%','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:12:01','thims','2018-08-29 10:11:12'),(0,0,'T0211','','','','Abnormal Forms','','N','','','','','%','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:12:40','thims','2018-08-29 10:11:44'),(0,0,'T0212','','','','Smear Study','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:17:53','nimisha','2018-10-05 07:35:12'),(0,0,'T0213','','','','G6PD Qulitative','','N','','','','Present','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:26:39','thims','2018-08-01 16:26:39'),(0,0,'T0214','','','','G6PD Activity - Quantitative ','','N','','','','7.0 - 20.5 U/g Hb','U/G Hb','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:27:46','suraj','2021-02-08 10:44:29'),(0,0,'T0215','','','','Method','','N','Rapid Immunochramatographic','Rapid Immunochramatographic','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:29:26','thims','2018-08-20 06:50:09'),(0,0,'T0216','','','','Serum Cholesterol','','N','','','','[Desirable level / low risk : <200 mg/dl]\r\n[Borderline level / moderate risk : 200 -239 mg/dl]\r\n[Elevated level / high risk : >240 mg/dl]','mg/dl','','240','','240','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:29:47','thims','2019-07-19 16:57:18'),(0,0,'T0217','','','','Result ','','N','Non Reactive','Non Reactive , Reactive','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:29:59','nimisha','2018-10-09 07:58:17'),(0,0,'T0218','','','','Parasitic Index','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:30:24','thims','2018-08-01 16:30:24'),(0,0,'T0219','','','','S.HDL Cholesterol','','N','','','','[Desirable level / low risk : >60 mg/dl]\r\n[Borderline level / moderate risk : 40 -60 mg/dl]\r\n[Elevated level / high risk : <40 mg/dl]','mg/dl','40','','40','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:31:47','thims','2019-07-19 16:58:11'),(0,0,'T0220','','','','Serum Triglyceride','','N','','','','[Normal : <200 mg/dl]\r\n[Borderline high : 200 - 400 mg/dl]\r\n[high : 400 - 1000 mg/dl]','mg/dl','','400','','400','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:33:36','thims','2019-07-19 16:57:43'),(0,0,'T0221','','','','S.LDL Cholesterol','','N','','','T0216-T0219-T0222','[Desirable level / low risk : <130 mg/dl]\r\n[Borderline level / moderate risk : 130 -159 mg/dl]\r\n[Elevated level / high risk : >160 mg/dl]','mg/dl','','160','','160','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:35:01','thims','2019-07-19 16:58:44'),(0,0,'T0222','','','','S.VLDL Cholesterol','','N','','','T0220/5','[upto 34 mg/dl]','mg/dl','','34','','34','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:35:47','thims','2019-07-19 16:59:24'),(0,0,'T0223','','','','LDL/HDL Ratio','','N','','','T0221/T0219','[Desirable level / low risk : 0.5-3.0]\r\n[Borderline level / moderate risk : 3.0 -5.0]\r\n[Elevated level / high risk : >5.0]','','','5.0','','5.0','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:36:59','thims','2019-07-19 16:59:52'),(0,0,'T0224','','','','VDRL TEST BY CARD','','N','','Non Reactive , Reactive','','Non Reactive ','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:37:11','parthesh','2022-07-23 10:52:18'),(0,0,'T0225','','','','Test Kit','','N','','Hepacard','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:37:52','thims','2018-08-01 16:37:52'),(0,0,'T0226','','','','Test for HIV - I Antibodies ','','N','','Non Reactive,Reactive','','','','','','','','','','','',0,0,NULL,'N','','thims','2018-08-01 16:38:37','thims','2018-08-02 11:00:00'),(0,0,'T0227','','','','Total CHOL /HDL Ratio','','N','','','T0216/T0219','[Low Risk : 3.3 - 4.4]\r\n[Average risk: 4.4 - 7.1]\r\n[Moderate risk : 7.1 - 10.0]\r\n[High risk: >10.0]','','','10','','10','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:38:46','thims','2019-07-19 17:00:20'),(0,0,'T0228','','','','Test for HIV - II Antibodies ','','N','','Non Reactive,Reactive','','','','','','','','','','','',0,0,NULL,'N','','thims','2018-08-01 16:38:59','thims','2018-08-02 11:00:12'),(0,0,'T0229','','','','Total Lipids','','N','','','','[400 - 700 mg/dl]','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:39:18','thims','2018-08-01 16:39:18'),(0,0,'T0230','','','','Chylomicrons','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:47:35','thims','2018-08-01 16:47:35'),(0,0,'T0231','','','','Alpha Lipoproteins','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:48:02','thims','2018-08-01 16:48:02'),(0,0,'T0232','','','','Pre-beta Lipoproteins','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:48:16','thims','2018-08-01 16:48:16'),(0,0,'T0233','','','','Beta Lipoproteins','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-01 16:48:31','thims','2018-08-01 16:48:31'),(0,0,'T0234','','','','Prothrombin Time','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-02 11:37:54','thims','2018-09-14 09:07:22'),(0,0,'T0235','','','','Control','','N','14','','','','seconds','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-02 11:39:02','thims','2018-09-14 09:07:47'),(0,0,'T0236','','','','Index[INR]','','N','','','(T0234/T0235)','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-02 11:41:51','bhumi','2019-07-05 15:06:00'),(0,0,'T0237','','','','Patient','','N','','','','','seconds','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-02 11:42:23','thims','2018-08-02 11:42:23'),(0,0,'T0238','','','','A.P.T.T','ActivitedPartialThromboplastin','N','','','','35 - 40','second.','35','40','35','40','','','','',0,0,NULL,'N','Y','thims','2018-08-02 11:56:40','nimisha','2018-09-16 05:47:39'),(0,0,'T0239','','','','Ratio','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-02 11:59:55','thims','2018-08-02 11:59:55'),(0,0,'T0240','','','','Serum T3 Estimation','','N','','','','[ 0.58-1.59 ng/ml]','ng/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-09 08:51:09','bhumi','2019-02-21 13:27:00'),(0,0,'T0241','','','','Serum T4 Estimation','','N','','','','[ 4.87-11.72 mcg/dl ]','mcg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-09 09:00:30','bhumi','2019-02-21 13:26:03'),(0,0,'T0242','','','','Free T3 Estimation','','N','','','','[1.71-3.71 pg/ml]','pg/ml','1.71','3.71','1.71','3.71','','','','',0,0,NULL,'N','Y','thims','2018-08-09 09:01:51','thims','2019-07-19 18:31:12'),(0,0,'T0243','','','','Free T4 Estimation','','N','','','','[0.70-1.48 ng/dl]','ng/dl','0.70','1.48','0.70','1.48','','','','',0,0,NULL,'N','Y','thims','2018-08-09 09:02:50','thims','2019-07-19 18:31:51'),(0,0,'T0244','','','','Serum TSH Estimation','','N','','','','(0.35-4.94 mcIU /ml  )','mcIU /ml ','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-09 09:04:09','bhumi','2019-02-21 13:27:44'),(0,0,'T0245','','','','Quantity','','N','','1.5 ','','','ml','','','','','','','','',0,0,NULL,'N','','thims','2018-08-09 09:06:27','thims','2018-08-13 13:49:47'),(0,0,'T0246','','','','Transparency','','N','Clear','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-09 09:06:54','thims','2018-08-14 09:47:15'),(0,0,'T0247','','','','Spontaneous Coagulation','','N','Absent','Absent, Present','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-09 09:07:46','thims','2018-08-29 10:20:15'),(0,0,'T0248','','','','Cobweb','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-09 09:08:15','thims','2018-08-09 09:08:15'),(0,0,'T0249','','','','Micro Protein','','N','','','','[Cistermat : 15 -25 mg/dl]\r\n[Venticular : 5 -15 mg/dl]\r\n[Lumbarmeonates : 15 - 100 mg/dl]\r\n[3 month - 60 yrs : 15 - 45 mg/dl]\r\n[>60 years : 15 - 60 mg/dl]\r\n','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-09 09:14:16','thims','2018-08-09 09:14:16'),(0,0,'T0250','','','','Pandeys Test','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-09 09:14:39','thims','2018-08-09 09:14:39'),(0,0,'T0251','','','','Glucose','','N','','','','[45 - 80 mg/dl] [Ventricular fluid : 5 - 10 mg/dl > Lumba]','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-09 09:17:33','thims','2018-08-09 09:17:33'),(0,0,'T0252','','','','Total Cells(C) ','','N','','','','[Adult Child : 0 - 6/c.mm ]\r\n[all monocular cells]\r\n[Infants : <19/c.mm]\r\n[Neonats : <30/c.mm]','/c.mm','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-09 09:22:14','thims','2018-08-29 10:23:43'),(0,0,'T0253','','','','R.B.Cs','','N','','','','','/h.p.f.','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-09 09:24:29','thims','2018-08-29 09:36:54'),(0,0,'T0254','','','','India Ink Preparation','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-09 09:25:41','thims','2018-08-09 09:25:41'),(0,0,'T0255','','','','Volume','','N','10 c.c.','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-09 09:29:55','thims','2018-08-29 10:19:33'),(0,0,'T0256','','','','Malignant Cells','(By HE Stain)','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-09 09:40:24','thims','2018-08-09 09:40:24'),(0,0,'T0257','','','','Technique','','N','Agglutination Examination','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-10 12:34:19','thims','2018-08-14 10:23:59'),(0,0,'T0258','','','','Salmonella typhi \'O\'','','N','','','','[1:80 or More]','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-10 12:40:03','thims','2018-08-29 10:35:27'),(0,0,'T0259','','','','Salmonella typhi \'H\'','','N','','','','[1:200 or More]','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-10 12:40:36','thims','2018-08-29 10:34:59'),(0,0,'T0260','','','','Salmonella Paratyphi A \'H\'','','N','--','','','[1:40 or More]','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-10 12:44:29','yashpancha','2021-08-07 13:02:44'),(0,0,'T0261','','','','Salmonella Paratyphi B \'H\'','','N','--','','','[1:40 or More]','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-10 12:45:04','yashpancha','2021-08-07 13:02:57'),(0,0,'T0262','','','','RBC','','N',' Normochromic Normocytic RBCs.','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-14 10:00:54','bhumi','2019-06-20 13:26:40'),(0,0,'T0263','','','','WBC','','N','No premature cells.','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-14 10:02:46','bhumi','2019-06-20 13:26:57'),(0,0,'T0264','','','','Reaction','','N','Alkaline','Acidic,Basic,Alkaline','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-14 10:55:16','thims','2018-12-06 08:12:11'),(0,0,'T0265','','','','Urine For B. J. Protein','','N','','','','Absent','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-14 11:14:00','thims','2018-08-14 11:17:12'),(0,0,'T0266','','','','Fasting Urine Glucose','','N','','','','Absent','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-14 11:26:14','thims','2018-08-14 11:26:14'),(0,0,'T0267','','','','Fasting Urine Acetone','','N','','','','Absent','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-14 11:26:45','thims','2018-08-14 11:26:45'),(0,0,'T0268','','','','Post Pradial Urine Glucose','','N','','','','Absent','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-14 11:27:58','thims','2018-08-14 11:27:58'),(0,0,'T0269','','','','Post Pradial Urine Acetone','','N','','','','Absent','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-14 11:28:35','thims','2018-08-14 11:28:35'),(0,0,'T0270','','','','Random Urine Glucose','','N','','','','Absent','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-14 11:29:26','thims','2018-08-14 11:29:26'),(0,0,'T0271','','','','Random Urine Acetone','','N','','','','Absent','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-14 11:29:49','thims','2018-08-14 11:29:49'),(0,0,'T0272','','','','Day 1 : Urine For AFB ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-14 11:58:14','thims','2018-08-14 11:58:14'),(0,0,'T0273','','','','Day 2 : Urine For AFB ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-14 11:58:29','thims','2018-08-14 11:58:29'),(0,0,'T0274','','','','Day 3 : Urine For AFB ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-14 11:58:46','thims','2018-08-14 11:58:46'),(0,0,'T0275','','','','RDW','','N','','','','[11.6 - 14.6 %]','%','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-14 13:14:24','thims','2018-08-14 13:14:24'),(0,0,'T0276','','','','PCT','','N','','','','[0.13 - 0.28 %]','%','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-14 13:19:04','thims','2018-08-14 13:19:04'),(0,0,'T0277','','','','RBCs','','N','','','','','/hpf','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-14 13:56:14','thims','2018-08-29 09:35:44'),(0,0,'T0278','','','','LDH','','N','','','','<248','U/L','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-17 09:17:25','nilesh','2022-01-04 13:52:17'),(0,0,'T0279','','','','S. Iron','','N','','','','37-170 ','mcg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-17 09:20:01','bhumi','2019-02-05 10:00:25'),(0,0,'T0280','','','','TIBC','','N','','','','265-497','mcg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-17 09:21:11','bhumi','2019-02-05 10:01:43'),(0,0,'T0281','','','','S. FERRITIN','','N','','','','Male : 21.81-274.66\r\nFemale: 4.63 - 204','ng/ml','21.81','274.66','4.63','204','','','','',0,0,NULL,'N','Y','thims','2018-08-17 09:24:05','suraj','2021-04-26 15:45:38'),(0,0,'T0282','','','','GGT','','N','\r\n','','','12 - 43','U/L','15','73','15','73','','','','',0,0,NULL,'N','Y','thims','2018-08-17 09:25:45','poojapatel','2021-10-13 10:14:52'),(0,0,'T0283','','','','Serum Chlorides','','N','','','','98-107','mmol/L','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-17 09:40:41','bhumi','2019-02-05 15:11:29'),(0,0,'T0284','','','','Serum Bicarbonate','','N','','','','[21 - 30 mEq/L]','mEq/L','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-17 09:42:13','thims','2018-08-17 09:42:13'),(0,0,'T0285','','','','Serum Lithium','','N','','','','[Therapeutic Level 1.2 mEq/L ]\r\n[Toxic Level 1.5 mEq/L ]','mEq/L','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-17 09:44:07','thims','2018-08-17 09:44:07'),(0,0,'T0286','','','','Serum Inorganic Phosphorous','','N','','','','[Adult 2.7 - 4.5 mg/dL]\r\n[Pediatric 3.9 - 6.0 mg/dL]','mg/dL','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-17 09:45:58','thims','2018-08-17 09:45:58'),(0,0,'T0287','','','','Serum Magnesium','','N','','','','1.6-2.3','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-17 09:46:54','bhumi','2019-04-04 17:17:32'),(0,0,'T0288','','','','PS For MP (Slide)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-17 11:47:37','thims','2018-08-17 11:47:37'),(0,0,'T0289','','','','hepatitis C virus (HCV)','','N','','Non Reactive , Reactive','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-17 12:10:44','nimisha','2018-12-06 09:39:10'),(0,0,'T0290','','','','Mantoux Test','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-17 12:12:42','thims','2018-08-17 12:12:42'),(0,0,'T0291','','','','IgG Antibody','','N','','Negative,Positive','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-24 06:28:59','suraj','2021-07-29 12:17:11'),(0,0,'T0292','','','','IgM Antibody','','N','','Negative,Positive','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-24 06:29:46','suraj','2021-07-29 12:18:06'),(0,0,'T0293','','','','24 Hr Urinary Protein','test','N','','','','','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-27 10:56:56','thims','2018-12-06 10:32:20'),(0,0,'T0294','','','','BACTERIOLOGICAL EXAMINATION','','N','','','','','','','','','','','','','',0,0,NULL,'Y','Y','thims','2018-08-29 05:02:29','thims','2018-08-29 05:02:29'),(0,0,'T0295','','','','PHYSICAL REPORT','','N','','','','','','','','','','','','','',0,0,NULL,'Y','Y','thims','2018-08-29 05:05:29','thims','2018-08-29 05:05:29'),(0,0,'T0296','','','','BLOOD COUNT','','N','','','','','','','','','','','','','',0,0,NULL,'Y','Y','thims','2018-08-29 05:12:48','thims','2018-08-29 05:12:48'),(0,0,'T0297','','','','DIFFERENTIAL COUNT','','N','','','','','','','','','','','','','',0,0,NULL,'Y','Y','thims','2018-08-29 05:13:25','thims','2018-08-29 05:13:25'),(0,0,'T0298','','','','BLOOD INDICES','','N','','','','','','','','','','','','','',0,0,NULL,'Y','Y','thims','2018-08-29 05:13:58','thims','2018-08-29 05:13:58'),(0,0,'T0299','','','','SMEAR STUDY','','N','','','','','','','','','','','','','',0,0,NULL,'Y','Y','thims','2018-08-29 05:14:21','nimisha','2018-10-05 07:35:27'),(0,0,'T0300','','','','Smear study','','N','Pap stained smears are examined. They Show:','(A) Smear is adequate for cytological examination.,(B) Superficial and intermediate squamous epithelial cells are seen in the background.,(C) Sheets of squamous metaplastic cells are seen.Nuclear and cytoplasmic degenerative changes are seen. ,(C) Scattered few clusters of glandular epithelial cells are seen., (D) Severe neutrophilic infiltration is seen.,(D) Neutrophilic infiltration is seen.,(E) No evidence of atypical or dysplastic cells is seen.','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-29 08:32:09','thims','2018-09-08 06:58:44'),(0,0,'T0301','','','','PHYSICAL ','','N','','','','','','','','','','','','','',0,0,NULL,'Y','Y','thims','2018-08-29 09:18:17','thims','2018-08-29 09:18:17'),(0,0,'T0302','','','','CHEMICAL','','N','','','','','','','','','','','','','',0,0,NULL,'Y','Y','thims','2018-08-29 09:18:45','thims','2018-08-29 09:18:45'),(0,0,'T0303','','','','MICROSCOPIC','','N','','','','','','','','','','','','','',0,0,NULL,'Y','Y','thims','2018-08-29 09:19:21','thims','2018-08-29 09:19:21'),(0,0,'T0304','','','','SPECIAL CHEMICAL TEST','','N','','','','','','','','','','','','','',0,0,NULL,'Y','Y','thims','2018-08-29 09:19:49','thims','2018-08-29 09:19:49'),(0,0,'T0305','','','','CONCENTRATION - METHOD','','N','','','','','','','','','','','','','',0,0,NULL,'Y','Y','thims','2018-08-29 09:38:59','thims','2018-08-29 09:38:59'),(0,0,'T0306','','','','OTHERS','','N','','','','','','','','','','','','','',0,0,NULL,'Y','Y','thims','2018-08-29 10:12:36','thims','2018-08-29 10:12:36'),(0,0,'T0307','','','','ANTIGEN','','N','','','','','','','','','','','','','',0,0,NULL,'Y','Y','thims','2018-08-29 10:38:08','thims','2018-08-29 10:38:08'),(0,0,'T0308','','','',' CRP','','N','','','','0.00 to 6.0 mg/l','mg/l','0.00','6.00','0.00','6.00','','','','',0,0,NULL,'N','Y','thims','2018-08-30 07:15:12','suraj','2021-05-21 14:40:05'),(0,0,'T0309','','','','MBG','                  (Calculated)','N','','','(T0140*28.7)-46.7','','mg/dl','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-30 09:42:37','parthesh','2022-07-23 10:30:53'),(0,0,'T0310','','','','Diagnosis','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-08-31 06:05:30','nimisha','2018-10-02 07:45:49'),(0,0,'T0311','','','','Testosterone','(ECLIA)','N','','','','Age(Years) : 20 - 49 : 8.64 - 29.0 \r\nAge(Years) : >= 50  : 6.68 - 25.7 \r\nRef : Kit Literature. (Roche e411)','NMOL/L','','','','','','','','',0,0,NULL,'N','Y','thims','2018-09-08 05:44:01','thims','2018-09-08 05:47:32'),(0,0,'T0312','','','','Microscopic Examination','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-09-13 08:39:30','thims','2018-09-13 08:39:30'),(0,0,'T0313','','','','CYTOLOGY NO.','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-09-13 08:48:10','thims','2018-09-13 08:48:10'),(0,0,'T0314','','','','ASPIRATION DONE BY','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-09-13 08:48:49','thims','2018-09-13 08:48:49'),(0,0,'T0315','','','','AMH ','Anti mullerian hormone','N','','','','Optimal Fertility: 4.00 - 6.79 ng/ml\r\nSatisfactory Fertility: 2.19 - 4.00\r\nng/ml\r\nLow Fertility: 0.30 - 2.19 ng/ml\r\nVery Low/ undetectable: 0.0 - 0.3\r\nng/ml','ng/ml','','','0.0','1.0','','','','',0,0,NULL,'N','Y','nimisha','2018-09-30 14:15:02','bhumi','2019-05-21 16:47:09'),(0,0,'T0316','','','','AMMONIA','','N','','','','9-30','micromol/L','17','90','17','90','','','','',0,0,NULL,'N','Y','nimisha','2018-10-05 07:18:34','nilesh','2020-08-05 13:55:45'),(0,0,'T0317','','','','AMMONIA','','N','','','','9-30','micromol/L','17','90','17','90','','','','',0,0,NULL,'N','Y','nimisha','2018-10-06 09:29:15','nilesh','2020-08-05 13:56:05'),(0,0,'T0318','','','','FBS','','N','','','','70-110 mg/dl','mg/dl','70','110','70','110','','','','',0,0,NULL,'N','Y','nimisha','2018-10-07 08:14:46','thims','2019-07-19 18:28:52'),(0,0,'T0319','','','','PP2BS','','N','','','','70-140 mg/dl','mg/dl','','','','','','','','',0,0,NULL,'N','Y','nimisha','2018-10-07 08:26:41','bhumi','2019-01-22 10:57:40'),(0,0,'T0320','','','','SPUTUM FOR AFB','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','nimisha','2018-10-09 07:41:21','nimisha','2018-10-09 09:21:30'),(0,0,'T0321','','','','RESULT','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','nimisha','2018-10-09 09:23:36','nimisha','2018-10-09 09:23:36'),(0,0,'T0322','','','','Anti HAV','','N','Non Reactive','Non Reactive , Reactive','','','','','','','','','','','',0,0,NULL,'N','Y','nimisha','2018-10-12 10:01:04','nimisha','2018-11-10 13:42:46'),(0,0,'T0323','','','','Anti HEV','','N','Non Reactive','Non Reactive , Reactive','','','','','','','','','','','',0,0,NULL,'N','Y','nimisha','2018-10-12 10:01:57','nimisha','2018-11-10 13:43:02'),(0,0,'T0324','','','','Type of Fluid','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2018-12-06 08:07:25','thims','2018-12-06 08:07:25'),(0,0,'T0325','','','','Amikacin (AK)','AK','N','','','','','30 ug','AK','<=14','15-16','>=17','','','','',0,0,NULL,'N','Y','thims','2018-12-06 10:23:31','thims','2018-12-06 10:23:31'),(0,0,'T0326','','','','Aztreonam (AT)','','N','','','','','','AT','<=17  ','18-20  ','>=21 ','','','','',0,0,NULL,'N','Y','thims','2018-12-06 10:48:16','thims','2018-12-06 10:48:16'),(0,0,'T0327','','','','Cefdinir (CD)','','N','','','','','','CD','<=16 ','17-19 ','>=20  ','','','','',0,0,NULL,'N','Y','thims','2018-12-06 11:09:49','thims','2018-12-06 11:14:47'),(0,0,'T0328','','','','Cefixime  (FIX)','','N','','','','','','FIX','<=15','16-18','>=19  ','','','','',0,0,NULL,'N','Y','thims','2018-12-06 11:17:24','thims','2018-12-06 11:17:24'),(0,0,'T0329','','','','Cefotaxime (CTX)','','N','','','','','','CTX','<=22  ','23-25  ','>=26   ','','','','',0,0,NULL,'N','Y','thims','2018-12-06 11:20:44','thims','2018-12-06 11:20:44'),(0,0,'T0330','','','','Ceftazidime (CAZ)','','N','','','','','','CAZ','<=17   ','18-20   ','>=21    ','','','','',0,0,NULL,'N','Y','thims','2018-12-06 11:24:28','thims','2018-12-06 11:24:28'),(0,0,'T0331','','','','Ceftriaxone (CRO)','','N','','','','','','CRO','<=19  ','20-22 ','>=23  ','','','','',0,0,NULL,'N','Y','thims','2018-12-06 11:31:59','thims','2018-12-06 11:31:59'),(0,0,'T0332','','','','Ciprofloxacin (CI)','','N','','','','','','CI','<=15 ','16-20 ','>=21 ','','','','',0,0,NULL,'N','Y','thims','2018-12-06 12:28:29','thims','2018-12-06 12:28:29'),(0,0,'T0333','','','','Gentamicin (GM)','','N','','','','','','GM','<=12 ','13-14 ','>=15 ','','','','',0,0,NULL,'N','Y','thims','2018-12-06 12:30:37','thims','2018-12-06 12:30:37'),(0,0,'T0334','','','','Nalidixic acid  (NA)','','N','','','','','','NA','<=13 ','14-18 ','>=19  ','','','','',0,0,NULL,'N','Y','thims','2018-12-06 12:32:00','thims','2018-12-06 12:32:00'),(0,0,'T0335','','','','Norfloxacin (NOR)','','N','','','','','','NOR','<=12 ','13-16','>=17','','','','',0,0,NULL,'N','Y','thims','2018-12-06 13:26:00','thims','2018-12-06 13:26:00'),(0,0,'T0336','','','','Ofloxacin (OF)','','N','','','','','','OF','<=12  ','13-15 ','>=16 ','','','','',0,0,NULL,'N','Y','thims','2018-12-06 13:27:43','thims','2018-12-06 13:27:43'),(0,0,'T0337','','','','Cefoperazone Sulbactam (CS)','','N','','','','','','CS','<=15','16-20 ','>=21 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 05:30:59','thims','2018-12-07 05:30:59'),(0,0,'T0338','','','','Cefpirome (CE)','','N','','','','','','CE','<=24 ','25-27 ','>=28 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 05:33:08','thims','2018-12-07 05:33:08'),(0,0,'T0339','','','','Cefpodoxime (CPD)','','N','','','','','','CPD','<=17  ','18-20  ','>=21 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 05:35:28','thims','2018-12-07 05:35:28'),(0,0,'T0340','','','','Cefprozil (FP)','','N','','','','','','FP','<=14','15-17 ','>=18 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 05:36:11','thims','2018-12-07 05:36:11'),(0,0,'T0341','','','','Ceftizoxime (CZ)','','N','','','','','','CZ','<=21 ','22-24 ','>=25 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 05:37:37','thims','2018-12-07 05:37:37'),(0,0,'T0342','','','','Gemifloxacin (GEM)','','N','','','','','','GEM','<=15 ','16-19 ','>=20 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 05:39:16','thims','2018-12-07 05:39:16'),(0,0,'T0343','','','','Imipenem/ Cilastatin (I/S)','','N','','','','','','I/S','<=13 ','14-15','>=16 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 05:51:25','thims','2018-12-07 05:51:25'),(0,0,'T0344','','','','Levofloxacin (LE)','','N','','','','','','LE','<=13 ','14-16 ','>=17 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 05:53:04','thims','2018-12-07 05:53:04'),(0,0,'T0345','','','','Meropenem (MP)','','N','','','','','','MP','<=19  ','20-22 ','>=23  ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 05:54:08','thims','2018-12-07 05:54:08'),(0,0,'T0346','','','','Moxifloxacin (MXF)','','N','','','','','','MXF','<=20 ','21-23 ','>=24 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 05:55:13','thims','2018-12-07 05:55:13'),(0,0,'T0347','','','','Piperacillin/ Tazobactam (P/T)','','N','','','','','','P/T','<=17  ','18-20  ','>=21 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 05:57:08','thims','2018-12-07 05:57:08'),(0,0,'T0348','','','','Sparfloxacin (SO)','','N','','','','','','SO','<=15','16-18','>=19 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 05:58:19','thims','2018-12-07 05:58:19'),(0,0,'T0349','','','','Ticarcilin/Clavulanic acid(TCC','','N','','','','','','TCC','<=14 ','15-19 ','>=20  ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 05:59:43','thims','2018-12-07 05:59:43'),(0,0,'T0350','','','','Tobramycin (TO)','','N','','','','','','TO','<=12 ','13-14 ','>=15','','','','',0,0,NULL,'N','Y','thims','2018-12-07 06:00:48','thims','2018-12-07 06:00:48'),(0,0,'T0351','','','','Amoxicillin (AMX)','','N','','','','','','AMX','<=13 ','14-17','>=18 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 06:04:19','thims','2018-12-07 06:04:19'),(0,0,'T0352','','','','Amoxicilin/Clavulanic acid(AMC','','N','','','','','','AMC','<=13 ','14-17 ','>=18 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:07:43','thims','2018-12-07 09:07:43'),(0,0,'T0353','','','','Azithromycin (AZ)','','N','','','','','','AZ','<=13 ','14-17','>=18 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:09:18','thims','2018-12-07 09:09:18'),(0,0,'T0354','','','','Cefazolin (CFZ)','','N','','','','','','CFZ','<=19  ','20-22 ','>=23  ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:10:17','thims','2018-12-07 09:10:17'),(0,0,'T0355','','','','Cephalexin (CFM)','','N','','','','','','CFM','<=14 ','15-17 ','>=18 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:12:57','thims','2018-12-07 09:12:57'),(0,0,'T0356','','','','Chloramphenicol (C)','','N','','','','','','C','<=12 ','13-17 ','>=18 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:14:12','thims','2018-12-07 09:14:12'),(0,0,'T0357','','','','Co-trimoxazole (SXT)','','N','','','','','','SXT','<=10 ','11-15 ','>=16 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:16:05','thims','2018-12-07 09:16:05'),(0,0,'T0358','','','','Erythromycin (EM)','','N','','','','','','EM','<=13 ','14-22 ','>=23  ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:17:02','thims','2018-12-07 09:17:02'),(0,0,'T0359','','','','Penicillin-G (P)','','N','','','','','','P','<=26 ','27-46 ','>=47 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:19:36','thims','2018-12-07 09:19:36'),(0,0,'T0360','','','','Piperacillin  (PI)','','N','','','','','','PI','<=17 ','18-20  ','>=21 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:20:50','thims','2018-12-07 09:20:50'),(0,0,'T0361','','','','Tetracycline (TE)','','N','','','','','','TE','<=11 ','12-14 ','>=15 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:22:04','thims','2018-12-07 09:22:04'),(0,0,'T0362','','','','Ampicillin/Sulbactam (SAM)','','N','','','','','','SAM','<=11 ','12-14 ','>=15 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:24:28','thims','2018-12-07 09:24:28'),(0,0,'T0363','','','','Cefadroxil (CFR)','','N','','','','','','CFR','<=14 ','15-17 ','>=18 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:25:22','thims','2018-12-07 09:25:22'),(0,0,'T0364','','','','Clarithromycin (CLM)','','N','','','','','','CLM','<=13 ','14-17 ','>=18 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:26:46','thims','2018-12-07 09:26:46'),(0,0,'T0365','','','','Clindamycin (CM)','','N','','','','','','CM','<=14 ','15-20 ','>=21 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:27:51','thims','2018-12-07 09:27:51'),(0,0,'T0366','','','','Lincomycin (LN)','','N','','','','','','LN','<=13 ','14-17','>=18 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:30:46','thims','2018-12-07 09:30:46'),(0,0,'T0367','','','','Linezolid (LZ)','','N','','','','','','LZ','<=20 ','21-22 ','>=23  ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:31:37','thims','2018-12-07 09:31:37'),(0,0,'T0368','','','','Lomefloxacin (LOM)','','N','','','','','','LOM','<=18 ','19-21 ','>=22 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:32:52','thims','2018-12-07 09:32:52'),(0,0,'T0369','','','','Roxithromycin (RO)','','N','','','','','','RO','<=9 ','10-20','>=21 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:34:13','thims','2018-12-07 09:34:13'),(0,0,'T0370','','','','Teicoplanin (TP)','','N','','','','','','TP','<=10 ','11-13','>=14','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:35:37','thims','2018-12-07 09:35:37'),(0,0,'T0371','','','','Vancomycin (VA)','','N','','','','','','VA','<=14 ','15-16 ','>=17 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 09:36:37','thims','2018-12-07 09:36:37'),(0,0,'T0372','','','','Cefuroxime sodium (XM)','','N','','','','','','XM','<=14 ','15-17 ','>=18 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 10:04:00','thims','2018-12-07 10:04:00'),(0,0,'T0373','','','','Nitrofurantoin (NI)','','N','','','','','','NI','<=14 ','15-16','>=17','','','','',0,0,NULL,'N','Y','thims','2018-12-07 10:07:54','thims','2018-12-07 10:07:54'),(0,0,'T0374','','','','Cefaclor (CEC)','','N','','','','','','CEC','<=14 ','15-17 ','>=18 ','','','','',0,0,NULL,'N','Y','thims','2018-12-07 10:29:15','thims','2018-12-07 10:29:15'),(0,0,'T0375','','','','RA Factor','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-01-24 11:32:37','bhumi','2019-01-24 11:32:37'),(0,0,'T0376','','','','RA Factor','','N','','','','Upto 12 IU/ml','','','12','','12','','','','',0,0,NULL,'N','Y','bhumi','2019-01-24 11:37:08','thims','2019-07-19 18:40:24'),(0,0,'T0377','','','','pH','','N','','','','5-9','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-01-28 15:13:03','bhumi','2019-01-28 15:19:29'),(0,0,'T0378','','','','Specific gravity','','N','','','','1.005-1.025','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-01-28 15:14:18','bhumi','2019-01-28 15:21:57'),(0,0,'T0379','','','','MPV','','N','','','','6.5-11','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-01-29 11:22:41','bhumi','2019-01-29 11:22:41'),(0,0,'T0381','','','','17 HYDROXY PROGESTERON','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','parth','2021-04-07 16:08:24'),(0,0,'T0382','','','','24 HOUR URINE ADRENALIN (EPINEPHRINE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0383','','','','24 HOUR URINE CHLORIDE(CL-)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','parth','2021-07-23 10:08:24'),(0,0,'T0384','','','','24 HOUR URINE COPPER','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0385','','','','24 HOUR URINE CORTISOL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0386','','','','24 HOUR URINE CREATININE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0387','','','','24 HOUR URINE CREATININE CLEARENC TEST(CCT)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0388','','','','24 HOUR URINE MAGNESIUM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0389','','','','24 HOUR URINE METANEPHRINE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0390','','','','24 HOUR URINE MICROALBUMIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0391','','','','24 HOUR URINE PHOSPHOROUS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0392','','','','24 HOUR URINE POTASSIUM(K+)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0393','','','','24 HOUR URINE SODIUM (NA+)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0394','','','','24 HOUR URINE UREA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0395','','','','24 HOUR URINE UREA NITROGEN (BUN)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0396','','','','24 HOUR URINE URIC ACID','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0397','','','','24 HOUR URINE VMA (WITH CREATININE RATIO)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0398','','','','24 URINE CALCIUM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0400','','','','ACE (ANGIOTENSIN CONVERTING ENZYME)','','N','','','','8 - 52','U/L','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','poojapatel','2021-11-15 17:02:02'),(0,0,'T0401','','','','ACETONE, URINE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0402','','','','ACETYLCHOLINE RECEPTOR AUTOANTIBODIES (ACHR?AB)','','N','','','','< 0.40 nmo/l : Negative\r\n>= 0.40 - < 0.50 nmo/l : Borderline\r\n>= 0.50 nmo/l : Positive','nmol/l','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-04-19 10:04:36'),(0,0,'T0403','','','','ACID FAST BACILLI (ATYPICAL MYCOBACTERIA) SPECIES IDENTIFICATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0404','','','','ACID FAST BACILLI CULTURE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0405','','','','ACID FAST BACILLI CULTURE - BONE MARROW','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0406','','','','ACID FAST BACILLI CULTURE BLOOD','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0407','','','','ACID FAST BACILLI SENSITIVITY (10 DRUGS)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0408','','','','ACID FAST BACILLI SENSITIVITY (13 DRUGS)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0409','','','','ACID FAST BACILLI SENSITIVITY FIRST LINE DRUGS (SIREP)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0410','','','','ACID FAST BACILLI SENSITIVITY SECOND LINE DRUGS (5 DRUGS)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0411','','','','ACID FAST BACILLI SENSITIVITY SINGLE DRUG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0412','','','','ACID FAST BACILLI STAIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0413','','','','ACID FAST BACILLI STAIN (3 SAMPLE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0414','','','','ACID PHOSPHOTASE (FOR WALKING PATEINT)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0415','','','','ACTIVATED PROTEIN C RESISTANCE (APCR)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0416','','','','ADA (ADENOSINE DEAMINASE)','','N','','','','Serum, Plasma, Pleural\r\nPericardial & Ascitic Fluids\r\nNormal: < 40\r\nSuspect: between 40-60\r\nPositive: > 60\r\nCSF\r\nNormal : < 5\r\nPositive : > 5','U/L','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-04-18 12:13:45'),(0,0,'T0417','','','','ADRENALIN (EPINEPHRINE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0418','','','','ADRENOCORTICOTROPIC HORMONE (ACTH)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0419','','','','AEC (ABSOLUTE EOSINOPHIL COUNT)','','N','','','','40-400/cumm','/cumm','40','400','40','400','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','thims','2019-07-19 17:46:13'),(0,0,'T0420','','','','AEROBIC BLOOD CULTURE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0421','','','','AFB SENSITIVITY (LINE PROBE ASSAY) ( MOR-TB) (ISONIAZIDE AND RIFAMPICIN)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0422','','','','AFB SENSITIVITY(LINE PROBE ASSAY)(MDR +XOR?TB) (ISONIAZID, RIFAMPICIN, ETHAMUTOL, FLUROOUINOLONES. AMINOGLYCOSIDES, CAPREOMYCIN)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0423','','','','AFB SENSITIVITY(LINE PROBE ASSAY)(XDR-TB) (ETHAMUTOL, FLUROQUINOLONES. AMINOGLYCOSIDES, CAPREOMYCIN)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0424','','','','AFB SMEAR BY IMMUNOFLUROSCENCE (3 SAMPLE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0425','','','','AFB SMEAR BY IMMUNOFLUROSCENCE (SINGLE SAMPLE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0426','','','','AFP?MOM (NEURAL TUBE DEFECT (NTO) ASSESMENT)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0427','','','','ALBERTS STAIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0428','','','','ALDOSTERONE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0429','','','','ALDOSTERONE(URINE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0430','','','','ALKALINE PHOSPHATASE','','N','','','','01-12 Years old-Men- < 500 U/L      Women- < 500 U/L\r\n13-18 Years old - Men- < 750 U/L     Women- < 750 U/L\r\n18-50 Years old Men- 45-125 U/L     Women- 35-100 U/L\r\n51-79 Years old Men- 50-135  U/L      Women- 50-135 U/L','u/l','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','kevalc','2021-09-27 17:21:13'),(0,0,'T0431','','','','ALL PANEL : CYTOGENETICS + FISH BCR/ABL, TEUAML,\n MLL GENE REARRANGEMENT AND PCR FOR T(1;19)OR E2A-PBX1','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0432','','','','ALPHA+ANTITRYPSIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0433','','','','ALPHA-FETOPROTEIN ( AFP)','','N','','','','Adult: 1.00-8.78\r\nWeek of Median\r\nGestatation\r\n_______________________\r\n15 32.17\r\n16 36.86\r\n17 42.24\r\n18 48.40\r\n19 55.45\r\n20 63.53','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','nilesh','2021-05-19 16:54:34'),(0,0,'T0434','','','','AMA BY ELISA (ANTI MITOCHONDRIAL ANTIBODIES)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0435','','','','AMA BY IFA (ANTI MITOCHONDRIAL ANTIBODIES)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0436','','','','AML PANEL : CYTOGENETICS + FISH FOR PMURARA, AMUETO,CBFL3/ MYH11, MLL GENE REARRANGEMENT','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0437','','','','AMOEBIASIS ANTIBODIES?IGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0440','','','','ANA BY IFA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0441','','','','ANA PROFILE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0442','','','','ANABYCLIA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0443','','','','ANAEROBIC BLOOD CULTURE + AEROBIC BLOOD CULTURE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0444','','','','ANCA C (PR3 ) BY ELISA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0445','','','','ANCA C AND P BY IFA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0446','','','','ANCA P (MPO) BY ELISA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0447','','','','ANDROSTENEDIONE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0448','','','','ANION GAP','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0449','','','','ANTI CARDIOLIPIN (ACA) IGM ANTIBODIES','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0450','','','','ANTI CARDIOLIPIN(ACA) IGG ANTIBODIES','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0451','','','','ANTI CCP','','N','','','','< 5 U/mL: Negative\r\n> 5 U/mL: Positive','U/ML','','5','','5','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','thims','2019-07-19 17:49:17'),(0,0,'T0452','','','','ANTI DNASE B','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0453','','','','ANTI DS DNA BY IFA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0454','','','','ANTI DS DNA ELISA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0455','','','','ANTI GAD65 TEST','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0456','','','','ANTI GLOMERULAR BASEMENT MEMBRANE ANTIBODIES (ANTI GBM)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0457','','','','ANTI HBC IGM (CORE IGM)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0458','','','','ANTI HBC TOTAL','','N','','','','Negative:<1.0\r\npositive:>1.0','S/Co','','1.0','','1.0','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','thims','2019-07-19 17:49:48'),(0,0,'T0459','','','','ANTI HBE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0460','','','','ANTI HBS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0461','','','','ANTI HCV BY CMIA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','yashpancha','2022-02-16 13:52:53'),(0,0,'T0462','','','','ANTI INSULIN ANTIBODIES','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0463','','','','ANTI ISLET CELL ANTIBODY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0464','','','','ANTI MAG AB','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0465','','','','ANTI MUSK AB','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0466','','','','ANTI NMO ANTIBODY, CSF','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0467','','','','ANTI NMO ANTIBODY, SERUM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0468','','','','ANTI PARIETAL CELL ANTIBODY (APCA)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0469','','','','ANTI PHOSPHDLIPID iGM (APA)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-07-22 16:18:30'),(0,0,'T0470','','','','ANTI PHOSPHOLIPID IGG (APA)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-07-22 16:18:48'),(0,0,'T0471','','','','ANTI SMOOTH MUSCLE ANTIBODIES (ASMA) WITH TITRE BY IFA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0472','','','','ANTI SPERM ANTIBODIES','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0473','','','','ANTI STREPTOLYSIN?O ANTIBODIES (ASO )TITRE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0474','','','','ANTI THROMBIN ILL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0475','','','','ANTI THYROGLOBULIN (ATG)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0476','','','','ANTI THYROID ANTIBODY (ATG+ANTI TPO)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0477','','','','ANTI TPO','','N','','','','<5.61','IU/ml','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','nilesh','2020-05-30 13:36:29'),(0,0,'T0478','','','','ANTI VGKC','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0479','','','','ANTIBIOTIC LEVEL-BLOOD VANCOMYCIN LEVEL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0480','','','','ANTIEPILEPTIC DRUG PANEL (PHENOBARBITONE, PHENYTOIN, CARBAMAZEPINE +\n ITS EPOXIDE,\n OXCARBAZEPINE + ITS MONO? HYDROXY METABOLITE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0481','','','','ANTIEPILEPTIC DRUG PANEL BLOOD LEVETIRACETAM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0482','','','','ANTIEPILEPTIC DRUGS IN SERUM?CARBAMAZEPINE AND ITS EPOXIDE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0483','','','','ANTIEPILEPTIC DRUGS IN SERUM?OXCARBAZEPINE AND ITS MONO-HYDROXY METABOLITE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0484','','','','ANTIEPILEPTIC DRUGS IN SERUM?PHENOBARBITONE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0485','','','','ANTIEPILEPTIC DRUGS IN SERUM?PHENYTOIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0486','','','','ANTIFUNGAL DRUGS? BLOOD VORICONAZOLE LEVEL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0487','','','','ANTIFUNGAL DRUGS-BLOOD POSACONAZOLE LEVEL','','N','','','','','microgm/ml','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','suraj','2021-05-31 18:01:47'),(0,0,'T0488','','','','ANTISACCHAROMYCES CEREVISIAE (ASCA), LGA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0489','','','','ANTISACCHAROMYCES CEREVISIAE (ASCA), LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0490','','','','ANY SPECIAL STAIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0491','','','','APDLIPOPROTEIN A?I','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0492','','','','APOLIPOPROTEIN B','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0493','','','','APTT (ACTIVATED PARTIAL THROMBOPLASTIN TIME)','','N','','','','30-40','sec','30','40','30','40','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','yatin','2022-04-09 11:54:18'),(0,0,'T0494','','','','AQUAPORIN?4 ANTIBODIES (NMO-LGG), CSF','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0495','','','','AQUAPORIN?4 ANTIBOOIES (NMO?LGG ), SERUM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0496','','','','ARTERIAL BLOOD GAS (ABG)','','N','','','','','','','','','','','','','',0,0,'','N','N','','0000-00-00 00:00:00','parthesh','2021-12-29 10:58:03'),(0,0,'T0497','','','','ASPERGILLUS (GALACTOMENON) AG','','N','','','','NEGATIVE : <0.5 POSITIVE : >= 0.5','INDEX','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','suraj','2020-04-14 12:38:45'),(0,0,'T0498','','','','ASPERGILUS LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0499','','','','ASPERGILUS LGM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0500','','','','AUTO HEMOLYSIS TEST','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0501','','','','AVIDITY CMV LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0502','','','','AVIDITY T, RUB LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0503','','','','AVIDITY TOXO LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0504','','','','B12 LEVEL','','N','','','','[Male/Female : 185 To 830]','pg/ml','185','830','185','830','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','thims','2019-07-19 17:51:20'),(0,0,'T0505','','','','BENCE-JONES PROTEIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0506','','','','BETA 2 GLYCOPROTEIN IGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','yashpancha','2022-02-19 15:42:49'),(0,0,'T0507','','','','BETA 2 GLYCOPROTEIN IGM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','yashpancha','2022-02-19 15:43:20'),(0,0,'T0508','','','','BETA 2 MICROGLOBULIN,SERUM','','N','','','','604-2286','ng/ml','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','suraj','2020-05-27 13:21:44'),(0,0,'T0509','','','','BETA 2 MICROGLOBULINE,URINE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0510','','','','BETA HCG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0511','','','','BETHESDA ASSAY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0512','','','','BILIRUBIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','thims','2019-02-08 12:17:51'),(0,0,'T0513','','','','BIOAVAILABLE TESTOSTERONE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0514','','','','BIOPSY ACETYLCHOLINESTERASE (ACHE STAIN)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0515','','','','BIOPSY BREAST(MODIFIED RADICAL MASTECTOMY + ER?PR+HER2NEU) + KL67','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0516','','','','BIOPSY BREAST(MODIFIED RADICAL MASTECTOMY + ER-PR)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0517','','','','BIOPSY BREAST(MODIFIED RADICAL MASTECTOMY + ER-PR+HER2NEU)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0518','','','','BIOPSY BREAST(MODIFIED RADICAL MASTECTOMY)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0519','','','','BIOPSY ELECTRON MICROSCOPY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0520','','','','BIOPSY KIDNEY WITH SPECIAL STAINS AND IF','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0521','','','','BIOPSY LARGE (1)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0522','','','','BIOPSY  LARGE (3)( EXTRA LARGE )','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','poojapatel','2021-10-21 15:21:40'),(0,0,'T0523','','','','BIOPSY LARGE(2) - ALL CANCER RESECTIONS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0524','','','','BIOPSY LARGE(4) - RADICAL PROSTATECTOMY, WHIPPLE\'S RESECTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0525','','','','BIOPSY LARGE(5) -\n POST CHEMOTHERAPY BONE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0526','','','','BIOPSY LARGE(6) - AMPUTATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0527','','','','BIOPSY LIVER WITH SPECIAL STAINS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0528','','','','BIOPSY MEDIUM (1)\n (SIZE - 1 TO 3 CM)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0529','','','','BIOPSY MEDIUM(2)(SIZE - 3 T0 5CM)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0530','','','','BIOPSY MEDIUM(3)(SIZE - 5 T0 8CM)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0531','','','','BIOPSY MEDIUM(4)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0532','','','','BIOPSY MUSCLE WITH SPECIAL STAINS & IHC','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0533','','','','BIOPSY NERVE WITH SPECIAL STAINS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0534','','','','BIOPSY- PROSTATE CORE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0535','','','','BIOPSY RENAL 3 BOTILE (PARAFFIN, IF AND EM)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0536','','','','BIOPSY RENAL TRANSPLANT WITH C4D (WITHOUT IF)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0537','','','','BIOPSY SKIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0538','','','','BIOPSY SKIN WITH IF','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0539','','','','BIOPSY SMALL (1) -1 CM PUNCH BIOPSY, GI BIOPSY, GALL BLADDER, APPENDIX, D & C.','','N','','','','','','','','','','','','','',0,0,'','Y','Y','','0000-00-00 00:00:00','bhumi','2019-03-29 17:02:09'),(0,0,'T0540','','','','BIOPSY TURBT/BLADDER TUMOUR','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0541','','','','BIOPSY TURP/ PROSTATIC CHIPS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0542','','','','BIOPSY UTERUS WITH ADNEXA AND FIBROID','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0543','','','','BIOPSY UTERUS WITH CERVIX','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0544','','','','BL CARBONATE(HC03)','','N','','','','23-29','mmol/L','23','29','23','29','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','thims','2019-07-19 17:52:13'),(0,0,'T0545','','','','BLOOD (SERUM) ALCOHOL LEVEL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0546','','','','BLOOD ALCOHOL LEVEL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0547','','','','BLOOD LEAD LEVEL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0548','','','','BLOOD METHEMOGLOBIN LEVEL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0549','','','','BLOOD PARACETAMOL LEVEL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0550','','','','BM ASPIRATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0551','','','','BM IRON STAIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0552','','','','BM REPORTING','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0553','','','','BODY FLUID CULTURE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0554','','','','BONE CULTURE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0555','','','','BRAF V600E MUTATION DETECTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0556','','','','BRUCELLA LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0557','','','','BRUCELLA LGM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0558','','','','BRUCELLOSIS(SERUM AGGLUTINATION TEST)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0559','','','','BUN','','N','','','','7.0-17.0 mg/dl','mg/dl','7.0','17.0','7.0','17.0','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','thims','2019-07-19 17:56:39'),(0,0,'T0560','','','','BUN/ CREATININE RATIO, SERUM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0561','','','','C-PEPTIDE 2 HOUR AFTER GLUCOSE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','poojapatel','2021-10-14 17:05:29'),(0,0,'T0562','','','','C-PEPTIDE FASTING','','N','','','','0.4 - 2.1','ng/mL','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','poojapatel','2021-10-14 17:08:19'),(0,0,'T0563','','','','C-PEPTIDE POST PRANDIAL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','poojapatel','2021-10-14 17:06:03'),(0,0,'T0564','','','','C-PEPTIDE RANDOM','','N','','','','0.9 - 4.0','ng/mL','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','poojapatel','2021-10-14 17:07:19'),(0,0,'T0565','','','','C3 (COMPLEMENT PROTEIN CONCENTRATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0566','','','','C4 (COMPLEMENT PROTEIN CONCENTRATION )','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0567','','','','CA 15?3','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0568','','','','CALCITONIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0569','','','','CALCIUM','','N','','','','[Adult 8.1 - 10.5 Mg/Dl]\r\n[Pediatric 10 - 12 Mg/Dl]','mg/dl','','','','','','','','',0,0,'','N','N','','0000-00-00 00:00:00','bhumi','2019-02-08 17:23:13'),(0,0,'T0570','','','','CALCIUM IONIZED(CA++)','','N','','','','1.10-1.30','mmol/L','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','kevalc','2021-09-21 10:21:48'),(0,0,'T0571','','','','CALPROTECTINE, STOOL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0572','','','','CARBAMAZEPINE (TEGRETOL)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0573','','','','CBC WITH PS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0574','','','','CBC WITHOUT DC','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0575','','','','CD19 COUNT','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0576','','','','CD20COUNT','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0577','','','','CD3 CD4 COB COUNT','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0578','','','','CD3 COUNT','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0579','','','','CD34 COUNT (ISHAGE PROTOCOL)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0580','','','','CD4 CD8 COUNT','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','suraj','2021-09-08 15:39:50'),(0,0,'T0581','','','','CDS COUNT','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0582','','','','CEA (CARCINOEMBRYONIC ANTIGEN)','','N','','','','Non-Smokers: <3\r\nSmokers: <5','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','nilesh','2021-05-19 16:57:50'),(0,0,'T0583','','','','CERULOPLASMIN','','N','','','','15-30','mg/dl','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','suraj','2020-05-27 13:25:27'),(0,0,'T0584','','','','CHIKUNGUNYA IGM (RAPID)','','N','','Negative,Positive','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','suraj','2021-08-03 13:09:43'),(0,0,'T0585','','','','CHLAMYDIA LGG ANTIBODIES','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0586','','','','CHLAMYDIA LGM ANTIBODIES','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0587','','','','CHLORIDE(CL?)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0588','','','','CHOLINESTERASE (PSEUDO) (SERUM CHOLINESTERASE)','','N','','','','5.90  -  12.22','U/mL','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','parthesh','2021-12-13 15:48:17'),(0,0,'T0589','','','','CHROMOGRANIN A','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0590','','','','CK MM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0591','','','','CLL PANEL : FISH FOR TRISOMY 12, DEL(17)(P), DEL(11)(Q), DEL(13)(Q)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0592','','','','CLOSTRIDIUM DIFFICILE TOXIN DETECTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0593','','','','CLOT RETRACTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0594','','','','CMV LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0595','','','','CMV LGM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0596','','','','COLD AGGLUTININ TITRE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0597','','','','COPPER LEVEL ? SERUM','','N','','','','80-180','microgm/dl','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','nilesh','2020-07-31 17:24:15'),(0,0,'T0598','','','','CORTISOL AM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0599','','9','9','CORTISOL 4 PM','','N','','','','','micro g/dL','2.9','17.3','2.9','17.3','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','suraj','2021-01-30 11:18:40'),(0,0,'T0600','','','','CPK MB MASS','','N','','','','Up to 24','U/L','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','yashpancha','2022-02-19 15:16:41'),(0,0,'T0601','','','','CREATININE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0602','','','','CRP HS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0603','','','','CRYOGLOBULIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0604','','','','CRYPTOCOCCAL ANTIGEN CSF','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0605','','','','CRYPTOCOCCAL ANTIGEN SERUM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0606','','','','CS MOIT (MYCOBACTERIA OTHER THAN TUBERCULOSIS)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0607','','','','CSF CELL COUNTS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0608','','','','CSF CYTOSPIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0609','','','','CSF HSV IG G','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','parthesh','2021-12-31 14:48:34'),(0,0,'T0610','','','','CSF LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0611','','','','CSF LGG INDEX','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0612','','','','CSF MANOMETRY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0613','','','','CSF MEASELES (RUBEOLO) LGG AB','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0614','','','','CSF OLIGOCLONAL BAND','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0615','','','','CSF PROCEDURE ?','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0616','','','','CSF PROTEIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0617','','','','CSF TPHA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0618','','','','CSF VARICELLA LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0619','','','','CULTURE AND SENSITIVITY- (AEROBIC)( PUS)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0620','','','','CULTURE AND SENSITIVITY- (ANAEROBIC )PUS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0621','','','','CULTURE AND SENSITIVITY AEROBIC- CSF','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0622','','','','CULTURE AND SENSITIVITY- BAL FLUID','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0623','','','','CULTURE AND SENSITIVITY -BLOOD (AUTOMATED)-AEROBIC(ADULT)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0624','','','','CULTURE AND SENSITIVITY- EAR SWAB','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0625','','','','CULTURE AND SENSITIVITY- EYE SWAB','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0626','','','','CULTURE AND SENSITIVITY FLUID (EXCEPT CSF)-AEROBIC','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0627','','','','CULTURE AND SENSITIVITY FLUID(CSF)(AUTOMATED)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0628','','','','CULTURE AND SENSITIVITY FLUID(PERICARDIAL)(AUTOMATED)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0629','','','','CULTURE AND SENSITIVITY FLUID(PERITONEAL)(AUTOMATED)+A67','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0630','','','','CULTURE AND SENSITIVITY FLUID(PLEURAL)(AUTOMATED)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0631','','','','CULTURE AND SENSITIVITY FLUID(SYNOVIAL)(AUTOMATED)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0632','','','','CULTURE AND SENSITIVITY- SEMEN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0633','','','','CULTURE AND SENSITIVITY- THROAT SWAB','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0634','','','','CULTURE AND SENSITIVITY- TISSUE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0635','','','','CULTURE AND SENSITIVITY- URINE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-02-04 10:10:37'),(0,0,'T0636','','','','CULTURE AND SENSITIVITY- VAGINAL SWAB','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0637','','','','CULTURE AND SENSITIVITY-BLOOD ( AUTOMATED)-ANAEROBIC','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0638','','','','CULTURE AND SENSITIVITY-BLOOD (AUTOMATED)? AEROBIC(PAEDIATRIC)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0639','','','','CULTURE AND SENSITIVITY-ET (ENDOTRACHEAL ASPIRATE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0640','','','','CULTURE AND SENSITIVITY-SPUTUM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0641','','','','CULTURE AND SENSITIVITY-STOOL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0642','','','','CULTURE AND SENSITIVITY-WOUND SWAB','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0643','','','','CULTURE BLOOD/BONE MARROW FUNGUS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0644','','','','CULTURE FOR NEISSERIA GONORRHOEAE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0645','','','','CYCLOSPORINE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0646','','','','CYSTATIN C','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0647','','','','CYTOLOGY - PAP SMEAR (TWO SLIDES ONLY)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0648','','','','CYTOLOGY  LBC PAP SMEAR','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0649','','','','D DIMER','','N','','','','UP TO 500\r\nConversion Factor: ng/mL x 2 = ng FEU/mL\r\n','ng FEU/mL','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','jayeshc','2022-05-11 14:58:13'),(0,0,'T0650','','','','D DIMER','','N','','','','UPTO 500\r\nConversion Factor: ng/mL x 2 = ng FEU/mL','ng FEU/mL','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','jayeshc','2022-05-11 14:58:26'),(0,0,'T0651','','','','D3-HYDROXYBUTYRATE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0652','','','','DCT (DIRECT COOMBS TEST)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0653','','','','DENGUE IGG BY CARD','','N','','Negative,Positive','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','suraj','2021-07-30 16:26:11'),(0,0,'T0654','','','','DENGUE IGM BY CARD','','N','','Negative,Positive','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','suraj','2021-07-30 16:26:46'),(0,0,'T0655','','','','DESMOGLEIN I & III ANTIBODY','','N','','','','Negative : <20\r\nPositive : >=20','U/mL','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','jayeshc','2022-03-04 17:22:59'),(0,0,'T0656','','','','DETECTION OF COMMON STEROIDS IN UNKNOWN DRUG PREPARATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0657','','','','DGPIGA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0658','','','','DGPIGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0659','','','','DHEA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0660','','','','DHEAS (DEHYDROEPIANDRO? STERON E?SULFATE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0661','','','','DIGOXIN (LANOXIN)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0662','','','','DIHYDROTESTOSTERONE(DHT)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0663','','','','DNA EXTRACTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0664','','','','DRUG OF ABUSE (9 DRUGS) IN URINE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0665','','','','EBV ESNA LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0666','','','','EBV PANEL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0667','','','','EBV VGA / EA LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0668','','','','EBVVCA LGM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0669','','','','ECHINOCOCCUS (HYDATID CYST) LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0670','','','','ELECTROLYTES','','N','','','','','','','','','','','','','',0,0,'','N','N','','0000-00-00 00:00:00','parthesh','2021-12-29 11:31:22'),(0,0,'T0671','','','','ELT(EUGLOBULIN LYSIS TIME)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0672','','','','EMA BINDING TEST FOR HEREDITARY SPHEROCYTOSIS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0673','','','','ENDOMYSIAL ANTIBODY, SERUM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0674','','','','ERYTHROPOIETIN (EPO)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0675','','','','ESR','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0676','','','','ESTRADIOL(E2)','','N','','','','Menstruating females\r\nFollicular Phase: 21 - 251\r\nMid cycle phase: 38 - 649\r\nLuteal phase: 21 - 312\r\nPostmenopausal: 10-28','pg/ml','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-05-21 16:45:47'),(0,0,'T0677','','','','ESTRIOL(E3)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0678','','','','FACTOR 10 ASSAY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0679','','','','FACTOR 11 ASSAY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0680','','','','FACTOR 12 ASSAY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0681','','','','FACTOR 13 SCREEN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0682','','','','FACTOR 2 ASSAY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0683','','','','FACTOR 5 ASSAY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0684','','','','FACTOR 7 ASSAY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0685','','','','FACTOR 8 ASSAY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0686','','','','FACTOR 9 ASSAY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0687','','','','FDP','','N','','','','    <5','micro g/mL','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','suraj','2021-05-28 14:54:27'),(0,0,'T0688','','','','FERRITIN','','N','','','','Male - 21.81 - 274.66\r\nFemale - 4.63 - 204','ng/ml','21.81','274.66','4.63','204','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','suraj','2021-04-26 15:44:51'),(0,0,'T0689','','','','FIBRINOGEN','','N','','','','150 - 450','mg/dL','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','nilesh','2021-12-17 10:44:59'),(0,0,'T0690','','','','FINE NIDDLE ASPIRATION CYTOLOGY - EFFUSION CYTOLOGY + CELL BLOCK','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0691','','','','FINE NIDDLE ASPIRATION CYTOLOGY ? ONLY REPORTING','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0692','','','','FINE NIDDLE ASPIRATION CYTOLOGY - PROCEDURE WITH REPORTING','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0693','','','','FISH 1P19Q','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0694','','','','FISH ALK MUTATION STUDY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0695','','','','FISH AMUETO 1(8;21)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0696','','','','FISH BCL1/IGH 1(11;14)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0697','','','','FISH BCR-ABU 1(9:22) / (PHILADELPHIA CHROMOSOME)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0698','','','','FISH CEP XV (CHIMERISM)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0699','','','','FISH CEP XV (CHIMERISM)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0700','','','','FISH DEL 130','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0701','','','','FISH DEL 140','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0702','','','','FISH DEL 15011/15024 (PRADER WILLI SYNDROME)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0703','','','','FISH DEL 17P / DEL 110','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0704','','','','FISH DEL 22011/22013 (DIGEORGE SYNDROME)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0705','','','','FISH DEL 5Q','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0706','','','','FISH DEL 7Q','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0707','','','','FISH FGFR3/IGH 1(4;14)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0708','','','','FISH HER 2 NEU','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0709','','','','FISH INV(16)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0710','','','','FISH MAF/IGH 1(14;16)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0711','','','','FISH MLL GENE REARRANGEMENT','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0712','','','','FISH ON ABORTUS MATERIAL ( 13,18,21,X &Y)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0713','','','','FISH SEMEN (13,18,21,X & Y)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0714','','','','FISH TEUAML 1(12;21)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0715','','','','FISH TRISOMY 12','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0716','','','','FISH UNCULTURED AMNIOCYTES','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0717','','','','FISH: PMU RARA 1(15:17)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0718','','','','FLUID CYTOLOGY(URINE/CSF CYTOLOGY)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0719','','','','FOLIC ACID','','N','','','','2.1-14.3 ng/ml','ng/ml','2.1','14.3','2.1','14.3','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','thims','2019-07-19 18:30:26'),(0,0,'T0720','','','','FOLLICLE STIMULATING HORMONE (FSH)','','N','','','','Follicular Phase: 3.03-8.08\r\nMid Cycle Peak: 2.55-16.69\r\nLuteal Phase: 1.38-5.47\r\nPost Menopausal: 26.72-133.41','mIU/mL','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','suraj','2021-05-29 12:27:46'),(0,0,'T0721','','','','FREE ANDROGEN INDEX','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0722','','','','FREE BETA HCG (FBHCG)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0723','','','','FREE KAPPA LITE CHAIN ASSAY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0724','','','','FREE LAMBDA LITE CHAIN ASSAY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0725','','','','FREE LITE CHAIN ASSAY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0726','','','','FREE PROTEIN S','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0727','','','','FREE PSA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0728','','','','FREE TESTOSTERONE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0729','','','','FROZEN - 2','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0730','','','','FROZEN - 3','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0731','','','','FROZEN -1','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0732','','','','FT3 (FREE TRIIODOTHYRONINE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0733','','','','FT4 (FREE THYROXINE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0734','','','','FUNGAL CULTURE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0735','','','','FUNGAL IDENTIFICATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0736','','','','FUNGAL IDENTIFICATION AND SENSITIVITY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0737','','','','FUNGAL SENSITIVITY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0738','','','','FUNGAL STAIN(CALCOFLOUR WHITE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0739','','','','FUNGAL STAIN(KOH PREPARATION)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0740','','','','G6PD QUANTITATIVE','','N','','','','7.0 - 20.5','U/g Hb','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','poojapatel','2021-10-14 17:03:31'),(0,0,'T0741','','','','GASTRIC LAVAGE FOR DRUGS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0742','','','','GASTRIC LAVAGE FOR HEMOSIDEROPHAGE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0743','','','','GASTRIC LAVAGE FOR SUSPECTED PESTICIDES','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0744','','','','GASTRIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0745','','','','GFR','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0746','','','','GLIADIN LGA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0747','','','','GLIADIN LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0748','','','','GLUTAMIC ACID DECARBOXYLASE (GAD) IGG ANTIBODIES\n (ANTI GAD 65 AB)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0749','','','','GLYCOSYLATED HEMOGLOBIN (HBA1C)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0750','','','','GONORRHOEA -MICROSCOPY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0751','','','','GRAM AND ZN STAIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0752','','','','GROWTH HORMONE (GH)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0753','','','','H. PYLORI LGA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0754','','','','H. PYLORI LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0755','','','','H.PYLORI ANTIGEN TEST','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0756','','','','HAM TEST','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0757','','','','HAPTOGLOBIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0758','','','','HAV LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0759','','','','HAV LGM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0760','','','','HB ELECTROPHORESIS BY CE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0761','','','','HB H PREPARATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0762','','','','HBEAG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0763','','','','HBSAG','','N','','Non Reactive , Reactive','','Non Reactive','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','suraj','2021-07-29 16:22:05'),(0,0,'T0764','','','','HBSAG BY CARD','','N','','Non Reactive , Reactive','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','suraj','2021-07-29 16:21:41'),(0,0,'T0765','','','','HBV by Taqman ','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','parthesh','2021-12-23 13:05:52'),(0,0,'T0766','','','','HDL CHOLESTEROL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0767','','','','HE4 ? ROMA INDEX HUMAN EPIDIDYMIS PROTEIN-4 , SERUM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0768','','','','HEINZ BODIES','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0769','','','','HERPES ZOSTER ? LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0770','','','','HERPES ZOSTER  LGM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0771','','','','HEV LGM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0772','','','','HEV? LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0773','','','','HIV WESTERN BLOT','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0774','','','','HIV1 & 2','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0775','','','','HIV1 & 2 BY CARD','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0776','','','','HLA B27 BY FLOWCYTOMETRY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0777','','','','HOMA INDEX INSULIN RESISTANCE TEST','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0778','','','','HOMOCYSTEINE','','N','','','','6.6-14.8','Micromol/L','6.6','14.8','6.6','14.8','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','thims','2019-07-19 18:38:25'),(0,0,'T0779','','','','HSV 1 IG M','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','parthesh','2021-12-31 14:49:03'),(0,0,'T0780','','','','HSV 2 IG G','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','parthesh','2021-12-31 14:49:34'),(0,0,'T0781','','','','HSV 2 IG M','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','parthesh','2021-12-31 14:49:50'),(0,0,'T0782','','','','HSV I IG G','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','parthesh','2021-12-31 14:50:07'),(0,0,'T0783','','','','ICT (INDIRECT COOMBS TEST)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0784','','','','ICT (INDIRECT COOMBS TEST) TITRE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0785','','','','IGF?1 (INSULIN LIKE GROWTH FACTOR?1)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0786','','','','IHC ANY SINGLE MARKER (HER2NEU/C4D/EBER/KI67)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0787','','','','IHC ER-PR','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0788','','','','IHC ER-PR, HER2NEU','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0789','','','','IHC EXTENDED PANEL (>10 MARKERS)? LYMPHOMA/MUO/MSI','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0790','','','','IHC PANEL UPTO 5 MARKERS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0791','','','','IMMUNO FIXATION ELECTROPHORESIS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0792','','','','IMMUNOPHENOTYPING FOR AUTOIMMUNE LYMPHOPROLIFERATIVE DISORDER (ALPS)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0793','','','','IMMUNOPHENOTYPING LEUKEMIA PANEL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0794','','','','IMMUNOPHENOTYPING LYMPHOMA PANEL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0795','','','','INFECTIOUS MONONUCLEOSIS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0796','','','','INHIBIN A','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0797','','','','INHIBIN B','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0798','','','','INHIBITOR SCREEN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0799','','','','INSULIN 1 HOUR AFTER GLUCOSE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0800','','','','INSULIN 2 HOUR AFTER GLUCOSE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0801','','','','INSULIN FASTING','','N','','','','<25','microIU/ml','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','Bhumi','2020-06-10 15:52:59'),(0,0,'T0802','','','','INSULIN PP','','N','','','','16 - 166','microIU/ml','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','parthesh','2022-01-21 15:32:52'),(0,0,'T0803','','','','INSULIN RANDOM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0804','','','','INTRINSIC FACTOR LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0805','','','','IONIZED CALCIUM(CA++)','','N','','','','1.10-1.30','mmol/L','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-04-10 12:09:00'),(0,0,'T0806','','','','IRON','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0807','','','','ISLET CELL ANTIBODIES','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0808','','','','KARYOTYPE - BONE MARROW','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0809','','','','KARYOTYPE - PERIPHERAL BLOOD (COUPLE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0810','','','','KARYOTYPE PERIPHERAL BLOOD ','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-03-12 17:03:08'),(0,0,'T0811','','','','KARYOTYPE -AMNIOTIC FLUID','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0812','','','','KARYOTYPING-CHORIONIC VILU SAMPLE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0813','','','','KARYOTYPING-PRODUCT OF CONCEPTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0814','','','','KCT (KAOLIN CLOTIING TIME)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0815','','','','LACTATE LEVEL CSF','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0816','','','','LACTATE LEVEL?PLASMA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0817','','','','LAP SCORE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0818','','','','LDH FLUID','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0819','','','','LDL?DIRECT','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0820','','','','LEGIONELLA PNEUMOPHILA AG, URINE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0821','','','','LEPTOSPIRA IGM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0822','','','','LGA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0823','','','','LGE, TOTAL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0824','','','','LGF 1 BP-3','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0825','','','','LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0826','','','','LGG, CSF','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0827','','','','LGG4','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0828','','','','LGM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0829','','','','LH','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0830','','','','LIPASE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0831','','','','LIPOPROTEIN(A)(LP(A))','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0832','','','','LITHIUM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0833','','','','LKM 1 ANTIBODY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0834','','','','LUPUS ANTICOAGULANT','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0835','','','','LYMPHOCYTE SUBSET ANALYSIS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0836','','','','MAGNESIUM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0837','','','','MANTOUX (TUBERCULIN) TEST','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0838','','','','MDS PANEL : CYTOGENETICS\n + FISH','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0839','','','','MEASLES IGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0840','','','','MEASLES IGM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0841','','','','METANEPHRINE ? FREE PLASMA','','N','','','','0-65','pg/ml','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','Bhumi','2020-06-16 16:57:30'),(0,0,'T0842','','','','METHAEMOGLOBIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0843','','','','ALBUMIN/CREATENINE RATIO URINE','','N','','','','Children <2 yrs.: <0.5\r\nChildren >2 yrs.: <0.2\r\nAdults: <0.2\r\nNephrotic Ratio : >3.5','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','nilesh','2021-05-19 16:53:40'),(0,0,'T0844','','','','MICROFILARIA ANTIBODY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0845','','','','MIXING STUDY (FACTOR 10)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0846','','','','MIXING STUDY (FACTOR 11)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0847','','','','MIXING STUDY (FACTOR 12)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0848','','','','MIXING STUDY (FACTOR 2)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0849','','','','MIXING STUDY (FACTOR 5)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0850','','','','MIXING STUDY (FACTOR 7)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0851','','','','MIXING STUDY (FACTOR 8)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0852','','','','MIXING STUDY (FACTOR 9)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0853','','','','MIXING STUDY FOR PROLONGED APTI (FACTOR 8,9,11, 12)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0854','','','','MIXING STUDY FOR PROLONGED PT & APTI (FIBRINOGEN & FACTOR 2,5, 10)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0855','','','','MIXING STUDY FOR\n PROLONGED PT (FACTOR 2,5,7, 10)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0856','','','','MIXING STUDY? PT (CONTROL PLASMA)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0857','','','','MODIFIED ZN STAIN FOR NOCARDIA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0858','','','','MODIFIED ZN STAIN FOR STOOL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0859','','','','MP BY CARD','','N','','Positive for P Vivax, Positive for P Falci, Negative','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','suraj','2021-07-29 16:38:33'),(0,0,'T0860','','','','MP BY QBC','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0861','','','','MPD PANEL : CYTOGENETICS\n +FISH FOR BCR/ABL + JAK2 MUTATION ANALYSIS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0862','','','','MUMPS IGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-06-08 17:34:36'),(0,0,'T0863','','','','MUMPS IGM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-06-08 17:34:50'),(0,0,'T0864','','','','MYCOPLASMA LGM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0865','','','','MYELOMA PANEL: DEL(13)(0), DEL(11)(0), DEL(17)(P), T(11;14), T(4;14),T(14;16)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0866','','','','MYOGLOBIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0867','','','','NK CELL (CD16 + CD56)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0868','','','','NMDA ANTIBODY, CSF','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0869','','','','NMDA ANTIBODY, SERUM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0870','','','','NOCARDIA CULTURE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0871','','','','NS1 AG BY ELISA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','suraj','2021-07-29 12:23:31'),(0,0,'T0872','','','','NS1 AG BY CARD','','N','','Negative,Positive','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','suraj','2021-07-29 12:28:15'),(0,0,'T0873','','','','NT PRO BNP','','N','','','','Interpretation :\r\nChronic heart failure\r\n<75 Years: <125 pg/ml Heart Failure unlikely\r\n>125 pg/ml Heart Failure likely\r\n>75 Years: <450 pg/ml Heart Failure unlikely\r\n>450 pg/ml Heart Failure likely\r\nAcute heart Failure\r\nAge Optimal cut off pg/ml\r\n---------------------------------------------------------------------------\r\n<50 Years 450\r\n50-75 Years 900\r\n>75 Years 1800','pg/ml','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','parthesh','2021-10-04 13:38:01'),(0,0,'T0874','','','','OPERATION THEATER MICROBIOLOGICAL SURVEILLANCE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0875','','','','OSMOLALITY, SERUM','','N','','','','Child & Adult : 275-295\r\n> 60 Yrs. : 280-301','mOsmol/kg','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-03-29 15:50:48'),(0,0,'T0876','','','','OSMOLALITY, URINE','','N','','','','Random: 50-1200,\r\n24Hour: 300-900','mOsmol/kg','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-03-29 15:51:33'),(0,0,'T0877','','','','PARANEOPLASTIC (NEURONAL ANTIBODIES PROFILE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0878','','','','PARASITE IDENTIFICATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0879','','','','PARVOVIRUS 819 LGM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0880','','','','PCR !DH 1/2 MUTATION DETECTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0881','','','','PCR 5FU PANEL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0882','','','','PCR ABL KINASE DIMAIN MUTATIONS FOR IMATINIB RESISTANCE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0883','','','','PCR ADENO VIRUS QUALITAITVE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0884','','','','PCR ADENO VIRUS QUANTITATIVE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0885','','','','PCR APC GENE MUTATION FAMILY SCREENING','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0886','','','','PCR APC GENE MUTATION\n - PATIENT','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0887','','','','PCR B.K. VIRUS QUANTITATIVE (!VD APPROVED)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0888','','','','PCR BCR/ABL QUALITATIVE MAJOR (P210)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0889','','','','PCR BCR/ABL QUALITATIVE MINOR (P190)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0890','','','','PCR CAL R MUTATION DETECTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0891','','','','PCR CBFB/MYH11 FOR INV 16','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0892','','','','PCR CEBPAMUTATION DETECTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0893','','','','PCR CHIKUNGUNIYA AND DENGUE - QUALITATIVE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0894','','','','PCR CHIKUNGUNIYA\n -QUALITATIVE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0895','','','','PCR CHIMERISM FOLLOW UP','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0896','','','','PCR C-KIT MUTATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0897','','','','PCR CMV (QUALITATIVE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0898','','','','PCR CMV QUANTITATIVE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0899','','','','PCR COMPLET CHIMERISM BY VNTR','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0900','','','','PCR CYSTIC FIBROSIS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0901','','','','PCR DENGUE - TYPING','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0902','','','','PCR DENGUE -QUALITATIVE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0903','','','','PCR DPD GENE MUTATION DETECTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0904','','','','PCR E2/PBX1 1(1;19)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0905','','','','PCR EBV (QUALITATIVE) PCR','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0906','','','','PCR EBV (QUANTITATIVE) PCR','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0907','','','','PCR EGFR MUTATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0908','','','','PCR FACTOR V LEIDEN MUTATION (G1691A) DETECTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0909','','','','PCR FLT- 3 (ITD, D835Y) MUTATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0910','','','','PCR GAG REPEAT FOR HUNTINGTON DISEASE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0911','','','','PCR GALT MUTATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0912','','','','PCR H RAS MUTATION DETECTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0913','','','','PCR HBV QUALITATIVE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0914','','','','PCR HBV QUANTITATIVE ','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','parthesh','2021-12-23 13:15:41'),(0,0,'T0915','','','','PCR HGV GENOTYPING','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0916','','','','PCR HGV RNA QUALITATIVE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0917','','','','PCR HCV RNA QUANTITATIVE (IVD APPROVED)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','yashpancha','2022-02-16 13:53:15'),(0,0,'T0918','','','','PCR HIGH RESOLUTION HLA TYPING','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0919','','','','PCR HIV PROVIRAL DNA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0920','','','','PCR HIV QUALITATIVE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0921','','','','PCR HIV VIRAL LOAD (QUANTITATIVE) (IVD APPROVED)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0922','','','','PCR HIV VIRAL LOAD (QUANTITATIVE) FDA APPROVED','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0923','','','','PCR HLA B5701','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-08-17 10:56:06'),(0,0,'T0924','','','','PCR HLA A,B,DR TYPING','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0925','','','','PCR HLA B27','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0926','','','','PCR HLA TYPING - A , B','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0927','','','','PCR HLA TYPING DR','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0928','','','','PCR HPV DNA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0929','','','','PCR HSV (1 & 2) QUANTITATIVE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','nilesh','2020-08-06 13:08:16'),(0,0,'T0930','','','','PCR IS BCR/ABL - QUANTITATIVE\n (PHILADELPHIA CHROMOSOME)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0931','','','','PCR JAK 2 EXON 12 MUTATION DETECTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0932','','','','PCR JAK2 (V617F) MUTATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0933','','','','PCR JAPANES ENCEPHALITIS VIRUS- CSF','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0934','','','','PCR K-RAS MUTATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0935','','','','PCR MICROSATELITE INSTABILITY IN COLON CANCER','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0936','','','','PCR MLUAF41(4:11)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0937','','','','PCR MPL MUTATION DETECTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0938','','','','PCR MTHFR (C677T, A1298C) MUTATION DETECTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0939','','','','PCR MUTYH GENE MUTATION FAMILY SCREENING','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0940','','','','PCR MUTYH GENE MUTATION\n ? PATIENT','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0941','','','','PCR MYBPC3 (CARDIOMYOPATHY PREDISPOSITION)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0942','','','','PCR N RAS MUTATION DETECTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0943','','','','PCR NPM-1','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0944','','','','PCR P53 MUTATION DETECTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0945','','','','PCR PAI 1 GENOTYPING','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0946','','','','PCR PARVOVIRUS B19 DNA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0947','','','','PCR PIK3CA MUTATION DETECTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0948','','','','PCR PML RARA 1(15:17), QUALITATIVE\"','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0949','','','','PCR PML RARA 1(15:17), QUANTIATIVE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0950','','','','PCR PROTHROMBINE MUTATION (G20210A)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0951','','','','PCR PRSS1 GENOTYPIND','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0952','','','','PCR PTEN MUTATION DETECTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0953','','','','PCR RET MUTATION DETECTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0954','','','','PCR RFC1 (REPLICATION FACTORC1) (80 G>A)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0955','','','','PCR SIL/TAL1 FOR MICRODELETION 1P32','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0956','','','','PCR SLC01B1 (SIMVASTATIN) GENOTYPING','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0957','','','','PCR SPINK 1 GENOTYPING','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0958','','','','PCR T CELL GENE REARRANGEMENT','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0959','','','','PCR TB/NTM DETECTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0960','','','','PCR THROMBOPHILIA MUTATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0961','','','','PCR TPMT GENOTYPING','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0962','','','','PCR UGTIA1 MUTATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0963','','','','PCR UGTIA1 MUTATION DITTCTION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0964','','','','PCR VARICELLA ZOSTER VIRUS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0965','','','','PCR VIRAL MENINGITIS? QUALITATIVE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0966','','','','PCR WARFARIN PANEL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0967','','','','PCR Y CHROMOSOME MICRODELETION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0968','','','','PCRTEUAML11(12:21)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0969','','','','PDBS(POST DINNER BLOOD SUGAR)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0970','','','','PERICARDIAL FLUID ROUTINE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0971','','','','PERIPHERAL SMEAR STUDY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0972','','','','PH FOR FLUID','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0973','','','','PHOSPHORUS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0974','','','','PHYNYTOIN (DILANTIN,EPTOIN)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0975','','','','PLA2 RECEPTOR ANTIBODY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0976','','','','PLASMA CHOLINESTERASE ACTIVITY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0977','','','','PLASMA RENIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0978','','','','PLATELET ANTIGEN (GPIIB/IIIA & GPIB) STUDY BY FLOWCYTOMETRY FOR GT AND BSS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0979','','','','PLATELET ANTIGEN (GPIIB/IIIA & GPIB) STUDY BY FLOWCYTOMETRY\n FOR GT AND BSS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0980','','','','PNEUMOSLIDE PANEL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0981','','','','PNH BY FLOW (WBC FLAER & C0157 AND RBC CD 59)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0982','','','','PNH WORKUP(HAMTEST,SLT&\n URINE HEMOSIDERIN)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0983','','','','POTASIUM (K +)','','N','','','','','','','','','','','','','',0,0,'','N','N','','0000-00-00 00:00:00','thims','2021-10-23 15:22:43'),(0,0,'T0984','','','','PPBS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0985','','','','PREGNANCY ASSOCIATED PLASMA PROTEIN-A (PAPP? A)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0986','','','','PRENATAL KARYOTYPE AND FISH','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0987','','','','PROCALCITONIN','','N','','','','<0.5','ng/ml','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','yashpancha','2022-02-19 14:46:34'),(0,0,'T0988','','','','PROGESTERONE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0989','','','','PROLACTIN','','N','','','','5.18 - 26.53','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-03-08 13:01:44'),(0,0,'T0990','','','','PROTEIN C','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0991','','','','PROTEIN ELECTROPHORESIS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0992','','','','PROTIEN WITH A/G RATIO','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0993','','','','PS FOR MP','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0994','','','','PSA','','N','','','','0 - 4','ng/ml','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','nilesh','2021-12-17 10:40:53'),(0,0,'T0995','','','','PSA PROFILE\n (PSA + FREE PSA+RATIO)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0996','','','','PSA? FREE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0997','','','','PTH, INTACT','','N','','','','15.0-68.3','pg/ml','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-03-27 16:24:04'),(0,0,'T0998','','','','PUS ROUTINE EXAMINATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T0999','','','','QUANTIFERON (TB GOLD)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1000','','','','RBC CHOLINESTERASE ACTIVITY','','N','','','','1700-3500','U/L','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','parthesh','2021-12-13 15:33:33'),(0,0,'T1001','','','','REVIEW OF 1 SLIDE AND BLOCK\n (200/ADDITIONAL BLOCK AND 100/ADDITIONAL SLIDE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1002','','','','RIPA (RISTOCETIN INDUCED PLATELET AGGREGATION)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1003','','','','RNA ISOLATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1004','','','','ROTA VIRUS, STOOL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1005','','','','RPR(RAPID PLASMA REAGIN TEST)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1006','','','','SBB (SUDAN BLACK B) STAIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1007','','','','SCRUB TYPHUS ANTIBODY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2020-02-25 11:08:19'),(0,0,'T1008','','','','SEMEN ANALYSIS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1009','','','','SEX HORMONES BINDING GLOBULIN (SHBG)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1010','','','','SGOT(AST)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1011','','','','SGPT(ALT)','','N','','','','','','','','','','','','','',0,0,'','N','N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1012','','','','SICKLING TEST','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1013','','','','SODIUM(NA+)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1014','','','','SPERM DNA FRAGMENTATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1015','','','','STERILITY TEST FOR BIOLOGICAL INDICATOR','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1016','','','','STERILITY TEST FOR BLOOD PRODUCTS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1017','','','','STERILITY TEST FOR WATER','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1018','','','','STONE ANALYSIS BY FTIR TECHNOLOGY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1019','','','','STOOL HANGING DROP FOR VIBRIO CHOLERAE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1020','','','','STOOL OCCULT BLOOD','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1021','','','','STRESS CYTOGENETICS (FANCONI ANEMIA)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1022','','','','SUCROSE LYSIS TEST','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1023','','','','SYPHILIS ANTIBODY BY CMIA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1024','','','','T3(TRIODOTHYRONINE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1025','','','','T4 (THYROXINE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1026','','','','TACROLIMUS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1027','','','','TB GOLD (GAMMA INTERFERON)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1028','','','','TB PCR','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1029','','','','TB PCR BY GENE EXPERT','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1030','','','','GENEXPERT -TB (PCR)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','thims','2019-05-03 11:20:01'),(0,0,'T1031','','','','TESTOSTERONE, TOTAL','','N','','','','MALE:  47.01 - 980.56\r\nFEMALE:  7.21 - 79.31','ng/dl','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','nilesh','2022-01-04 11:49:54'),(0,0,'T1032','','','','THIO-T/ CONGO STAIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1033','','','','THROMBIN TIME','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1034','','','','THYROID STIMULATING IMMUNOGLOBULIN (TSI)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1035','','','','THYROXINE-BINDING GLOBULIN (TBG) LEVEL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1036','','','','TIBC(TOTAL IRON BINDING CAPACITY)','','N','','','','265-497 mcg/dl','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-02-05 10:00:45'),(0,0,'T1037','','','','TIG LGA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1038','','','','TIG LGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1039','','','','TORCH COMPLEXIGG & LGM ANTIBODIES EVALUATION\n (10 PARAMETERS) (TOXO LGG/LGM ,\n RUB LGG/LGM/CMV IGG/LGM, HSV1 LGG/LGM,HSV2 LGG/LGM)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1040','','','','TORCH COMPLEXIGG & LGM ANTIBODIES EVALUATION\n (8 PARAMETERS) (TOXD IGG/LGM,\n RUB LGG/IGM/CMV LGG/LGM, HSV2 LGG/LGM)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1041','','','','TORCH IGG (5 PARAMETERS) (TOXD IGG, RUB IGG,CMV IGG, HSV 1 IGG,HSV2 IGG)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1042','','','','TORCH LGM ANTIBODIES (5PARAMETERS) (TOXO LGM, RUB LGM,CMV LGM ,HSV1 LGM, HSV2 LGM)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1044','','','','TPHA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1045','','','','TPHA BY CARD','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1046','','','','TRANSFERRIN SATURATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1047','','','','TRIGLYCERIDE','','N','','','','[NORMAL: <200]\r\n[BORDERLINE HIGH 200-400]\r\n[HIGH 400 - 1000]','mg/dl','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-04-09 16:30:42'),(0,0,'T1048','','','','TROPONIN T QUANTITATIVE','','N','','','','NEGATIVE','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','jayeshc','2022-02-26 12:29:37'),(0,0,'T1049','','','','TSH (THYROID STIMULATING HORMONE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1050','','','','TSH RECEPTOR AB (TREAB)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1051','','','','TYPHIDOT','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1052','','','','UBJ PROTEIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1053','','','','UBJ PROTEIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1054','','','','UIBC','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1055','','','','UNCONJUGATED( E3)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1056','','','','UNSTABLE HB','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1057','','','','UREA','','N','','','','[15- 40 Mg/Dl]','mg/dl','','','','','','','','',0,0,'','N','N','','0000-00-00 00:00:00','bhumi','2019-02-08 16:09:28'),(0,0,'T1058','','','','URIC ACID','','N','','','','[Male 3.5 - 7.2 Mg/Dl]\r\n[Female 2.5 -6.2 Mg/Dl]','mg/dl','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-02-08 16:09:45'),(0,0,'T1059','','','','URINE ALBUMIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1060','','','','URINE CALCIUM (RANDOM)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1061','','','','URINE CALCIUM /CREAT RATIO','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-06-22 14:03:24'),(0,0,'T1062','','','','URINE CHLORIDE\n (WITH CREATININE RATIO)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1063','','','','URINE COLOR TEST FOR COMMON DRUGS (SCREEN-1)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1064','','','','URINE CREATININE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1065','','','','URINE DELTA-AMINOLEVULINIC ACID (ALA)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1066','','','','URINE DRUG (26 DRUGS) SCREENING (BY TOXILAB A)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1067','','','','URINE DRUG SCREEN (9 DRUGS)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1068','','','','URINE DRUG SCREEN ? BENZODIAZEPINE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1069','','','','URINE DRUG SCREEN ? COCAINE/BENZOYLECGONINE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1070','','','','URINE DRUG SCREEN ? METHADONE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1071','','','','URINE DRUG SCREEN ? METHAMPHETAMINE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1072','','','','URINE DRUG SCREEN ? OPIATES/MORPHINE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1073','','','','URINE DRUG SCREEN  MARIJUANA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1074','','','','URINE DRUG SCREEN  TETRA HYDRO CANNABINOL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1075','','','','URINE DRUG SCREEN\n ? PHENCYCLIDINE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1076','','','','URINE DRUG SCREEN? AMPHETAMINE?','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1077','','','','URINE DRUG SCREEN? BARBITURATE','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1078','','','','URINE ELECTROLYTES (WITH CREATININE RATIO)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1079','','','','URINE FOR PHASE CONTRAST MICROSCOPY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1080','','','','URINE FOR PROTEIN ELECTROPHORESIS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1081','','','','URINE FOR REDUCING SUBSTANCES','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1082','','','','URINE FOR SPECIFIC GRAVITY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1083','','','','URINE HEMOGLOBIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1084','','','','URINE HEMOSIDERIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1085','','','','URINE MANGNESIUM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1086','','','','URINE MYOGLOBULIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1087','','','','URINE PH','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1088','','','','URINE PHENOL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1089','','','','URINE PHOSPHORUS CREATININE RATIO','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1090','','','','URINE PHOUSPOROUS','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1091','','','','URINE PORPHOBILINOGEN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1092','','','','URINE PORPHOBILINOGEN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1093','','','','URINE POTIASIUM\n (WITH CREATININE RATIO)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1094','','','','URINE PROTEIN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1095','','','','URINE PROTEIN /CREAT RATIO','','N','','','','CHILDREN<2YRS: <0.5\r\nCHILDREN>2YRS: <0.2\r\n               ADULTS: <0.2\r\nNEPHROTIC RATIO:>3.5','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','nilesh','2020-05-06 13:27:21'),(0,0,'T1096','','','','URINE SODIUM (WITH CREATININE RATIO)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1097','','','','URINE UREA','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1098','','','','URINE UREA NITROGEN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1099','','','','URINE URIC ACID','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1100','','','','Urine Urobilinogen','','N','Negative','','','Negative','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','poojapatel','2021-11-12 15:45:17'),(0,0,'T1101','','','','URINE UROBILINOGEN','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1102','','','','VALPROIC ACID (SODIUM VALPORATE)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1103','','','','VARICELLA ZOSTER IGG','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-06-08 17:35:04'),(0,0,'T1104','','','','VARICELLA ZOSTER IGM','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','bhumi','2019-06-08 17:35:17'),(0,0,'T1106','','','','VITEK IDENTIFICATION','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1107','','','','VITEK IDENTIFICATION AND SENSITIVITY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1108','','','','VITEK SENSITIVITY','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1109','','','','VON WILLEBRAND FACTOR\n STUDY (AG, ACTIVITY, ACTIVITY/AG RATIO)','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1110','','','','WEIL FELIX TEST','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1111','','','','WIDAL','','N','','','','','','','','','','','','','',0,0,'','N','Y','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'T1112','','','','lOH','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2019-02-01 11:14:31','thims','2019-02-01 11:15:53'),(0,0,'T1113','','','','FERITINE','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2019-02-01 11:14:51','thims','2019-02-01 11:14:51'),(0,0,'T1114','','','','pT','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2019-02-01 12:01:53','thims','2019-02-01 12:01:53'),(0,0,'T1115','','','','pRL','','N','','','','5.18 - 26.53','ng/mL','','','','','','','','',0,0,NULL,'N','Y','thims','2019-02-01 12:20:37','suraj','2021-07-15 12:42:01'),(0,0,'T1116','','','','G6PDOUANTITATIVE','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2019-02-01 12:24:19','thims','2019-02-01 12:24:19'),(0,0,'T1117','','','','OSMOTIC FRAGILITY TEST','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2019-02-01 12:28:21','thims','2019-02-01 12:28:21'),(0,0,'T1118','','','','HAEMOGLOBINURIA','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2019-02-01 12:33:35','thims','2019-02-01 12:33:35'),(0,0,'T1119','','','',' PROTEIN WITH A:G','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2019-02-01 14:57:21','thims','2019-02-01 14:57:21'),(0,0,'T1120','','','','IMMUNOGLOBU LINS','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2019-02-01 16:22:13','thims','2019-02-01 16:22:13'),(0,0,'T1121','','','','B2 MICROGLOBULIN','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2019-02-01 16:24:51','thims','2019-02-01 16:24:51'),(0,0,'T1122','','','','BM BIOPSY','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2019-02-01 16:29:12','thims','2019-02-01 16:29:12'),(0,0,'T1123','','','','RETIC','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2019-02-01 16:46:38','thims','2019-02-01 16:46:38'),(0,0,'T1124','','','','ACA166 & LGM','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2019-02-01 16:51:30','thims','2019-02-01 16:51:30'),(0,0,'T1125','','','','B2GLYCOPROTEIN-1166 & LGM','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2019-02-01 16:54:43','thims','2019-02-01 16:54:43'),(0,0,'T1126','','','','PROTEIN C','','N','','','','','','','','','','','','','',0,0,NULL,'N','N','thims','2019-02-01 16:59:07','thims','2019-02-01 17:04:05'),(0,0,'T1127','','','','MTHFR & PROTHROMBIN','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2019-02-01 17:10:37','thims','2019-02-01 17:10:37'),(0,0,'T1128','','','','HCG E3UN','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2019-02-01 17:53:53','thims','2019-02-01 17:53:53'),(0,0,'T1129','','','','INVESTIGATION','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-02-04 12:09:33','bhumi','2019-02-04 12:09:33'),(0,0,'T1130','','','','ON CULTURE','','N','','','','','','','','','','','','','',0,0,NULL,'Y','Y','bhumi','2019-02-04 12:10:24','bhumi','2019-02-04 12:10:24'),(0,0,'T1131','','','','Squamous Epi. Cells','','N','','','','','/hpf','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-02-04 12:12:39','bhumi','2019-02-04 12:12:39'),(0,0,'T1132','','','','SERUM IGE','[By CLIA]','N','','','','< 1yr: <29\r\n1-2yrs:<49\r\n2-3yrs:<45\r\n3-9yrs:<52\r\n>11yrs:<87','IU/ml','','','','','','','','',0,0,NULL,'N','Y','thims','2019-02-21 12:35:45','bhumi','2019-02-21 16:28:28'),(0,0,'T1133','','','','Remark','','N','','Serum ferritin, serum Iron and TIBC to rule out Iron defficiency anemia.,HPLC (High Performance liquid chromatography) to rule out Thalassemia.,Vit.B12, serum ferritin and serum iron to rule out Megaloblastic anemia.,Clinical correlation.,Clinical correlation and Follow up count.','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-02-21 16:50:29','bhumi','2019-02-21 17:22:53'),(0,0,'T1134','','','','HBSAg by ELISA','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-03-05 12:05:34','bhumi','2019-03-05 12:05:34'),(0,0,'T1135','','','','Tissue TRANSGLUTAMINASE iga','','N','','','','Negative : <12\r\nEquivocal: 12 - 18\r\nPositive : >18','AU/ML','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-03-12 12:13:26','bhumi','2019-03-13 10:30:10'),(0,0,'T1136','','','','SERUM IGA','','N','','','','0.7-4.0','G/L','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-03-12 12:32:47','bhumi','2019-03-13 10:26:29'),(0,0,'T1137','','','','INDURATION','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-03-13 17:17:20','bhumi','2019-03-13 17:17:20'),(0,0,'T1138','','','','CD8 COUNT','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-03-16 17:24:03','thims','2019-04-26 10:57:13'),(0,0,'T1139','','','','SERUM IGG','','N','','','','7.0-16.0','G/L','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-03-27 10:45:44','bhumi','2019-03-27 10:49:19'),(0,0,'T1140','','','','HBA2 (HEMOGLOBIN A2)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-03-28 09:49:13','thims','2019-03-28 10:41:49'),(0,0,'T1141','','','','ANTI HCV AB','','N','','','','NON REACTIVE: <1.0\r\nREACTIVE: >1.0 ','S/Co','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-04-01 16:48:55','Bhumi','2020-06-22 17:25:20'),(0,0,'T1142','','','','Ganglioside GQ1B ANTIBODY, IGG','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-04-19 15:37:36','thims','2019-04-19 15:46:37'),(0,0,'T1143','','','','Mix allergy profile ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-04-20 11:53:03','bhumi','2019-04-20 11:53:03'),(0,0,'T1144','','','','ANTI-MUSK ANTIBODY','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-04-22 17:53:16','thims','2019-04-22 18:21:07'),(0,0,'T1145','','','','DOUBLE MARKER TEST','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-04-25 12:03:25','bhumi','2019-04-25 12:03:25'),(0,0,'T1146','','','','immunohistochemistry','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-05-02 12:57:08','bhumi','2019-05-02 12:57:08'),(0,0,'T1147','','','','calcium phosphate','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-05-04 12:13:52','bhumi','2019-05-04 12:13:52'),(0,0,'T1148','','','','bacterial culture&sensitivity','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-05-09 14:15:48','bhumi','2019-05-09 14:15:48'),(0,0,'T1149','','','','Anti HAV  ANTIBODY (IGM)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-05-17 12:57:13','bhumi','2019-05-17 12:57:13'),(0,0,'T1150','','','','ANTI HEV ANTIBODY (IGM)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-05-17 12:59:52','bhumi','2019-05-17 12:59:52'),(0,0,'T1151','','','','ANTI HEV ANTIBODY (IGG)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-05-17 13:00:20','bhumi','2019-05-17 13:00:20'),(0,0,'T1152','','','','ZINC (ZN)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-05-22 10:44:07','bhumi','2019-05-22 10:44:07'),(0,0,'T1153','','','','PLASMA RENIN ACTIVITY','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-05-28 17:57:41','thims','2019-05-29 12:45:04'),(0,0,'T1154','','','','plasma aldosteron activity','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-05-28 17:58:33','bhumi','2019-05-28 17:58:33'),(0,0,'T1155','','','','PLASMA ALDOSTERON/RENIN RATIO','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-05-28 18:00:55','thims','2019-05-29 12:44:40'),(0,0,'T1156','','','','IG E SPECIFIC FOR ASPERGILLUS','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-05-30 17:38:01','thims','2019-05-30 17:42:36'),(0,0,'T1157','','','','sputum EXAMINATION (r/m)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-06-03 10:40:57','bhumi','2019-06-03 10:40:57'),(0,0,'T1158','','','','AUTOIMMUNE PANEL-ENCEPHALITIS','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-06-05 11:04:42','thims','2019-06-05 11:18:13'),(0,0,'T1159','','','','FNAC ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-06-07 18:00:32','bhumi','2019-06-07 18:00:32'),(0,0,'T1160','','','','HIV 1&2 BY CMIA','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-06-15 17:53:46','thims','2019-06-15 18:05:39'),(0,0,'T1161','','','','HBSAG BY CMIA','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-06-15 17:54:03','thims','2019-06-15 18:06:21'),(0,0,'T1162','','','','tpha by clia','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-06-15 17:54:20','bhumi','2019-06-15 17:54:20'),(0,0,'T1163','','','','glucose tolerance test','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-06-18 11:09:03','bhumi','2019-06-18 11:09:03'),(0,0,'T1164','','','','HIV Ab/Ag combi(CLIA)','','N','<1.0','Reactive, Non Reactive','','1) Non-reactive : A result less than 1.0 AU/mL (<1.0 AU/mL) is considered to be negative.\r\n2) Reactive : A result greater than or equl to 1.0AU/mL (>=1.0 AU/mL) is considered to be positive.\r\nAssay results should be interpeted in conjunction with the patient\'s clinical presentation, history, and other laboratory results. All initially reactive should be redetermined in duplicate with the HIV Ab/Ag combi assay. If the concentration values <1.0 AU/mL are found in both cases, the samples are considered negative for antibodies and p24 antigen against HIV. And repeatedly reactive samples must be comfirmed according to recommended confirmatory algorithms.','AU/mL','<1.0','','<1.0','','>=1.0','','>=1.0','',0,0,NULL,'N','Y','bhumi','2019-06-18 11:57:20','drashish','2022-12-26 18:32:04'),(0,0,'T1165','','','','1 hr ogtt','','N','','','','<180','mg/dl','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-06-19 11:05:41','bhumi','2019-06-19 11:11:58'),(0,0,'T1166','','','','2 hr ogtt','','N','','','','<140','mg/dl','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-06-19 11:06:09','bhumi','2019-06-19 11:06:09'),(0,0,'T1167','','','','blood culture for fungus','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-06-20 12:52:38','bhumi','2019-06-20 12:52:38'),(0,0,'T1168','','','','spino-cerebellar ataxia panel','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-06-22 18:07:53','bhumi','2019-06-22 18:07:53'),(0,0,'T1169','','','','test for dmd (26 exons)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-07-01 15:59:53','bhumi','2019-07-06 12:00:50'),(0,0,'T1170','','','','urine microalbumin (random)','','N','','','','<16.7','mg/L','0','','0','','','','','',0,0,NULL,'N','Y','bhumi','2019-07-04 14:16:01','suraj','2021-02-15 15:15:22'),(0,0,'T1171','','','','test for dmd (79 exons)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-07-06 12:02:27','bhumi','2019-07-06 12:02:27'),(0,0,'T1172','','','','free kappa & lamda ratio','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-07-13 18:21:42','bhumi','2019-07-13 18:21:42'),(0,0,'T1173','','','','hbcag','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-07-16 17:58:21','bhumi','2019-07-16 17:58:21'),(0,0,'T1174','','','','1,25-DIHYDROXYCHOLE-CALCIFEROL','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-07-22 10:36:16','thims','2019-07-22 10:41:25'),(0,0,'T1175','','','','urine sodium (random)','','N','','','','30-90','mmol/L','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-07-25 10:25:53','bhumi','2019-07-25 12:49:49'),(0,0,'T1176','','','','Dengue NS1 BY ELISA','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-08-28 14:05:39','bhumi','2019-08-28 14:05:39'),(0,0,'T1177','','','','DENGUE IGM BY ELISA','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-08-28 14:05:57','bhumi','2019-08-28 14:05:57'),(0,0,'T1178','','','','DENGUE IGG BY ELISA','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-08-28 14:06:15','bhumi','2019-08-28 14:06:15'),(0,0,'T1179','','','','AFB CULTURE','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-09-03 10:52:50','bhumi','2019-09-03 10:52:50'),(0,0,'T1180','','','','amylase (Body fluid)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-09-04 16:18:15','bhumi','2019-09-04 16:18:15'),(0,0,'T1181','','','','lipase (body fluid)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-09-04 16:18:31','bhumi','2019-09-04 16:18:31'),(0,0,'T1182','','','','IUI(SEMEN PREPARATION)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-09-06 12:44:26','bhumi','2019-09-06 12:44:26'),(0,0,'T1183','','','','IMMUNOFIXATION','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-09-10 12:59:10','bhumi','2019-09-10 12:59:10'),(0,0,'T1184','','','','laptospira igm','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2019-09-18 10:18:56','suraj','2019-09-18 10:18:56'),(0,0,'T1185','','','','AFB SENSITIVITY 1ST LINE DRUGS','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-09-19 11:57:06','bhumi','2019-09-19 11:57:06'),(0,0,'T1186','','','','AFB SENSITIVITY 2ND LINE DRUGS','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-09-19 11:57:31','bhumi','2019-09-19 11:57:31'),(0,0,'T1187','','','','s.phenytoin','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-09-21 12:07:46','bhumi','2019-09-21 12:07:46'),(0,0,'T1188','','','','h1n1 for swine flu','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-09-23 11:00:02','bhumi','2019-09-23 11:00:02'),(0,0,'T1189','','','','immature platelet fraction','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-09-25 10:14:51','bhumi','2019-09-25 10:14:51'),(0,0,'T1190','','','','VITAMIN a','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-09-25 12:50:58','bhumi','2019-09-25 12:50:58'),(0,0,'T1191','','','','HIV PVL Quantitative by cobas ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-10-09 14:47:20','bhumi','2019-10-09 14:47:20'),(0,0,'T1192','','','','urine microalbumin (random)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-10-09 15:00:49','bhumi','2019-10-09 15:00:49'),(0,0,'T1193','','','','MOTT PANNEL','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-10-10 17:13:48','bhumi','2019-10-10 17:13:48'),(0,0,'T1194','','','','Anti GAD antibody for PNS','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-10-19 15:25:04','bhumi','2019-10-19 15:25:04'),(0,0,'T1195','','','','AVIAN ANTIGEN PANEL FOR hp','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-10-19 15:33:38','bhumi','2019-10-19 15:33:38'),(0,0,'T1196','','','','rast(radioallergosorbenmt)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-10-25 12:18:50','bhumi','2019-10-25 12:18:50'),(0,0,'T1197','','','','rast(radioallergosorbenmt)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-10-25 12:18:52','bhumi','2019-10-25 12:18:52'),(0,0,'T1198','','','','rast(radioallergosorbent test)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-10-25 12:19:25','bhumi','2019-10-25 12:19:25'),(0,0,'T1199','','','','LYME SEROLOGY FOR BORRRELIA','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-11-19 17:09:50','bhumi','2019-11-19 17:09:50'),(0,0,'T1200','','','','THROMBOPHILIA PROFILE','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-11-21 10:46:53','bhumi','2019-11-21 10:46:53'),(0,0,'T1201','','','','BRCA1','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-11-26 14:09:01','bhumi','2019-11-26 14:09:01'),(0,0,'T1202','','','','BRCA2','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-11-26 14:09:13','bhumi','2019-11-26 14:09:13'),(0,0,'T1203','','','','BRCA1 & BRCA2','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-11-26 14:12:29','bhumi','2019-11-26 14:12:29'),(0,0,'T1204','','','','RENAL BIOPSY FOR IF','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-12-24 15:14:19','bhumi','2019-12-24 15:14:19'),(0,0,'T1205','','','','LACTATE- CSF','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-12-26 11:05:31','bhumi','2019-12-26 11:05:31'),(0,0,'T1206','','','','IGG SPECIFIC FOR ASPERGILUS','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2019-12-30 12:07:33','bhumi','2019-12-30 12:07:33'),(0,0,'T1207','','','','GIEMSA STAIN','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2020-01-01 11:17:20','bhumi','2020-01-01 11:17:20'),(0,0,'T1208','','','','GIEMSA STAIN','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2020-01-01 11:17:54','bhumi','2020-01-01 11:17:54'),(0,0,'T1209','','','','CBC WITH ESR','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','vishal','2020-01-13 14:40:46','vishal','2020-01-13 14:42:04'),(0,0,'T1210','','','','HBA1C','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','vishal','2020-01-13 15:07:03','vishal','2020-01-13 15:07:03'),(0,0,'T1211','','','','ALBUMIN / BILIRUBIN RATIO','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','vishal','2020-01-13 15:23:51','vishal','2020-01-13 15:23:51'),(0,0,'T1212','','','','CHLAMYDIAL ANTIBODIES(IGM&IGG)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2020-01-24 11:52:22','bhumi','2020-01-24 11:52:22'),(0,0,'T1213','','','','TRIPLE MARKER TEST','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','bhumi','2020-02-04 17:50:30','bhumi','2020-02-04 17:50:30'),(0,0,'T1214','','','','FILARIAL ANTIGEN DETECTION','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','Bhumi','2020-03-14 17:51:24','Bhumi','2020-03-14 17:51:24'),(0,0,'T1215','','','','STOOL CALPROTECTIN','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2020-03-19 12:34:13','suraj','2020-03-19 12:34:13'),(0,0,'T1216','','','','IGG4 SUBCLASS','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2020-03-21 13:44:15','suraj','2020-03-21 13:44:15'),(0,0,'T1217','','','','ANTIFUNGAL SENSITIVITY (VITAC)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2020-03-23 15:42:09','suraj','2020-03-23 15:42:09'),(0,0,'T1218','','','','COVID-19 TEST(BY RT PCR)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','nilesh','2020-04-21 11:37:32','nilesh','2020-04-21 11:37:32'),(0,0,'T1219','','','','APLA PROFILE','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2020-05-20 16:07:26','suraj','2020-05-20 16:07:26'),(0,0,'T1220','','','','ALUMINIUM','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2020-05-22 12:42:03','suraj','2020-05-22 12:42:03'),(0,0,'T1221','','','','NOR METANEPHRINE (FREE PLASMA)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','Bhumi','2020-06-16 16:58:07','Bhumi','2020-06-16 16:58:07'),(0,0,'T1222','','','','FOSFOMYCIN SENSITIVITY','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','Bhumi','2020-06-16 16:59:26','Bhumi','2020-06-16 16:59:26'),(0,0,'T1223','','','','CEFTAZIDIME AVIBACTAM SENSITIV','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','Bhumi','2020-06-16 17:00:35','Bhumi','2020-06-16 17:00:35'),(0,0,'T1224','','','','INTERLEUKIN 6(IL 6)','','N','','','','<=5.9','pg/ml','','','','','','','','',0,0,NULL,'N','Y','Bhumi','2020-06-22 12:13:12','suraj','2021-04-15 16:38:34'),(0,0,'T1225','','','','BETA-D-GLUCAN (BDG)','','N','','','','Negative : < 60\r\nIndeterminate : 60 - 79\r\nPositive : >= 80','pg/ml','','','','','','','','',0,0,NULL,'N','Y','suraj','2020-07-28 12:59:55','nilesh','2020-12-23 17:37:13'),(0,0,'T1226','','','','24HR URINE METABOLIC WORK UP','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2020-07-28 16:17:27','suraj','2020-07-28 16:17:27'),(0,0,'T1227','','','','HCV VIRAL LOAD','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','nilesh','2020-07-31 15:08:46','nilesh','2020-07-31 15:08:46'),(0,0,'T1228','','','','urine toxin examination','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2020-10-17 17:22:56','suraj','2020-10-17 17:22:56'),(0,0,'T1229','','','','COVID 19 (IGG)ANTIBODY TESTING','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','nilesh','2020-11-03 17:37:50','nilesh','2020-11-03 17:37:50'),(0,0,'T1230','','','','HCV BY ELISA','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','yatin','2021-03-27 14:27:08','yatin','2021-03-27 14:27:08'),(0,0,'T1231','','','','ANA BY ELISA','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','yatin','2021-06-05 16:17:29','yatin','2021-06-05 16:17:29'),(0,0,'T1232','','8','8','IMMOTILE','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-06-11 12:11:32','suraj','2021-06-11 12:11:32'),(0,0,'T1233','','','','CULTURE AND SENSTIVITY TT ( TRACHEOSTOMY SECRETION)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-07-29 12:03:09','suraj','2021-07-29 12:03:09'),(0,0,'T1234','','','','ALLERGY TEST DRUGS','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-04 12:15:24','suraj','2021-08-04 12:15:24'),(0,0,'T1235','','','','BODY FLUID ROUTINE MICRO EXAMINATION','','N','','','','','','','','','','','','','',0,0,NULL,'N','N','suraj','2021-08-05 14:45:17','suraj','2021-08-05 17:45:15'),(0,0,'T1236','','','','BAL FLUID ROUTINE MICRO EXAMINATION','','N','','','','','','','','','','','','','',0,0,NULL,'N','N','suraj','2021-08-05 17:17:07','suraj','2021-08-05 17:18:21'),(0,0,'T1237','','','','BAL FLUID ROUTINE MICRO EXAMINATION','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 17:17:09','suraj','2021-08-05 17:17:09'),(0,0,'T1238','','','','BAL FLUID CYTOLOGY','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 17:20:52','suraj','2021-08-05 17:20:52'),(0,0,'T1239','','','','BODY FLUID ROUTINE MICRO EXAMINATION','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 17:27:37','suraj','2021-08-05 17:27:37'),(0,0,'T1240','','','','BAL FLUID CYTOLOGY WITH BLOCK PREPRATION','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 17:34:23','suraj','2021-08-05 17:34:23'),(0,0,'T1241','','','','CULTURE AND SENSITIVITY BODY FLUID ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 17:46:37','suraj','2021-08-05 17:46:37'),(0,0,'T1242','','','','BODY FLUID CYTOLOGY','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 17:47:42','suraj','2021-08-05 17:47:42'),(0,0,'T1243','','','','BODY FLUID CYTOLOGY WITH CELL BLOCK PREPARATION','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 17:49:22','suraj','2021-08-05 17:49:22'),(0,0,'T1244','','','','DRAIN FLUID ROUTINE MICRO EXAMINATION','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 17:50:44','suraj','2021-08-05 17:50:44'),(0,0,'T1245','','','','CULTURE AND SENSITIVITY DRAIN FLUID ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 17:56:19','suraj','2021-08-05 17:56:19'),(0,0,'T1246','','','','DRAIN FLUID CYTOLOGY','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 18:01:48','suraj','2021-08-05 18:01:48'),(0,0,'T1247','','','','DRAIN FLUID CYTOLOGY WITH CELL BLOCK PREPARATION','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 18:03:01','suraj','2021-08-05 18:03:01'),(0,0,'T1248','','','','PLEURAL FLUID ROUTINE AND MICRO EXAMINATION','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 18:04:29','suraj','2021-08-05 18:04:29'),(0,0,'T1249','','','','CULTURE AND SENSITIVITY PLEURAL FLUID ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 18:05:53','suraj','2021-08-05 18:05:53'),(0,0,'T1250','','','','PLEURAL FLUID CYTOLOGY','','N','','','','','','','','','','','','','',0,0,NULL,'N','N','suraj','2021-08-05 18:07:12','suraj','2021-08-05 18:07:38'),(0,0,'T1251','','','','PLEURAL FLUID CYTOLOGY','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 18:07:15','suraj','2021-08-05 18:07:15'),(0,0,'T1252','','','','PLEURAL FLUID CYTOLOGY WITH CELL BLOCK PREPARATION','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 18:08:48','suraj','2021-08-05 18:08:48'),(0,0,'T1253','','','','ASCITIC FLUID ROUTINE MICRO EXAMINATION','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 18:09:53','suraj','2021-08-05 18:09:53'),(0,0,'T1254','','','','CULTURE AND SENSITIVITY ASCITIC FLUID ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 18:10:51','suraj','2021-08-05 18:10:51'),(0,0,'T1255','','','','ASCITIC FLUID CYTOLOGY','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 18:12:04','suraj','2021-08-05 18:12:04'),(0,0,'T1256','','','','ASCITIC FLUID CYTOLOGY WITH CELL BLOCK PREPARATION','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 18:13:10','suraj','2021-08-05 18:13:10'),(0,0,'T1257','','','','HLA B 27 BY PCR','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 18:14:23','suraj','2021-08-05 18:14:23'),(0,0,'T1258','','','','CULTURE AND SENSITIVITY CVP TIP ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 18:15:27','suraj','2021-08-05 18:15:27'),(0,0,'T1259','','','','CULTURE AND SENSITIVITY WATER','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-08-05 18:18:49','suraj','2021-08-05 18:18:49'),(0,0,'T1260','','','','24 hour urine Citrate','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','yatin','2021-08-20 17:58:07','yatin','2021-08-20 17:58:07'),(0,0,'T1261','','','','24 hour urine oxalate','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','yatin','2021-08-20 17:58:30','yatin','2021-08-20 17:58:30'),(0,0,'T1262','','','','ANAEROBIC BLOOD CULTURE','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-10-06 15:14:11','suraj','2021-10-06 15:14:11'),(0,0,'T1263','','','','Cysticercosis (Taenia Solium) Antibody IgG serology','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','suraj','2021-10-07 10:17:23','suraj','2021-10-07 10:17:23'),(0,0,'T1264','','','','25 HYDROXY VITAMIN D','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','yatin','2021-10-14 13:34:28','yatin','2021-10-14 13:34:28'),(0,0,'T1265','','','','Nitrite','','Y','Negative','','','Negative','','','','','','','','','',0,0,NULL,'N','Y','poojapatel','2021-11-12 15:27:38','poojapatel','2021-11-12 15:31:24'),(0,0,'T1266','','','','Urine Ketone','','N','Absent','','','Absent','','','','','','','','','',0,0,NULL,'N','Y','poojapatel','2021-11-12 15:30:54','poojapatel','2021-11-12 15:30:54'),(0,0,'T1267','','','','Fluid Albumin','','N','','','','','','','','','','','','','',0,0,NULL,'N','N','poojapatel','2021-11-15 17:09:15','yashpancha','2022-01-05 08:20:04'),(0,0,'T1268','','','','Lactate Level ABGA','','Y','','','','[Arterial  0.36 -   1.25]\r\n[Venous   0.90 -  1.70]\r\n','mmol / L','','','','','','','','',0,0,NULL,'N','Y','parthesh','2021-11-26 15:10:03','parthesh','2021-11-26 15:15:53'),(0,0,'T1269','','','','SERUM ASCITES ALBUMIN GRADIENT (SAAG)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','nilesh','2021-11-27 10:10:52','nilesh','2021-11-27 10:10:52'),(0,0,'T1270','','','','AFB Culture By Bactec (MGIT) Method','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','nilesh','2021-11-29 12:27:10','nilesh','2021-11-29 12:27:10'),(0,0,'T1271','','','','CULTURE AND SENSITIVITY CSF FLUID','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','parthesh','2021-12-10 10:54:23','parthesh','2021-12-10 10:54:23'),(0,0,'T1272','','','','Immunoglobulin Profile IgG, IgM, IgA, and IgE ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','nilesh','2021-12-17 10:52:47','nilesh','2021-12-17 10:52:47'),(0,0,'T1273','','','','Cryptococcal Antigen- CSF','','N','','','','','','','','','','','','','',0,0,NULL,'N','N','nilesh','2021-12-27 16:39:05','nilesh','2021-12-27 17:01:50'),(0,0,'T1274','','','','Arterial Sodium','','N','','','','136 - 145','mmol/L','','','','','','','','',0,0,NULL,'N','Y','parthesh','2021-12-29 14:01:42','parthesh','2021-12-29 14:03:09'),(0,0,'T1275','','','','Arterial Potassium ','','N','','','','3.40 - 4.50','mmol/L','','','','','','','','',0,0,NULL,'N','Y','parthesh','2021-12-29 14:04:46','parthesh','2021-12-29 14:04:46'),(0,0,'T1276','','','','Arterial chlorides','','N','','','','98 - 107','mmol/L','','','','','','','','',0,0,NULL,'N','Y','parthesh','2021-12-29 14:08:56','parthesh','2021-12-29 14:08:56'),(0,0,'T1277','','','','Arterial Ionized Calcium','','N','','','','1.15 - 1.33','mmol/L','','','','','','','','',0,0,NULL,'N','Y','parthesh','2021-12-29 14:12:39','parthesh','2021-12-29 14:12:39'),(0,0,'T1278','','','','AMA BY ELISA (ANTI MITOCHONDRIAL ANTIBODIES)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','parthesh','2021-12-31 15:25:43','parthesh','2021-12-31 15:25:43'),(0,0,'T1279','','','','Vitamin D Gold (Covers Vitamin D2 Vitamin D3 & D)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','yashpancha','2022-01-08 10:41:27','yashpancha','2022-01-08 10:41:27'),(0,0,'T1280','','','','Premature Form','','N','','','','','%','','','','','','','','',0,0,NULL,'N','Y','nilesh','2022-01-13 12:08:23','nilesh','2022-01-13 12:08:23'),(0,0,'T1281','','','','TROPONIN T BY CARD QUALITATIVE','','N','','POSITIVE,NEGATIVE','','NEGATIVE','','','','','','','','','',0,0,NULL,'N','Y','nilesh','2022-02-03 13:04:52','jayeshc','2022-02-26 12:31:07'),(0,0,'T1282','','','','BIOPSY RENAL 2 Bottle ( LM-Histopathology, IF)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','nilesh','2022-02-12 12:36:29','nilesh','2022-02-12 12:36:29'),(0,0,'T1283','','','','TOXOPLASMA - IgG ( CSF )','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','parthesh','2022-02-15 13:17:07','parthesh','2022-02-15 13:17:07'),(0,0,'T1284','','','','TOXOPLASMA - IgM ( CSF )','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','parthesh','2022-02-15 13:17:58','parthesh','2022-02-15 13:17:58'),(0,0,'T1285','','','','CULTURE AND SENSITIVITY URINE catheter TIP ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','jayeshc','2022-03-02 12:50:51','jayeshc','2022-03-02 12:50:51'),(0,0,'T1286','','','','URINE FLUID CYTOLOGY','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','jayeshc','2022-03-02 12:55:55','jayeshc','2022-03-02 12:55:55'),(0,0,'T1287','','','','Rubella (German Measles) Avidity, IgG','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','parthesh','2022-03-17 15:40:12','parthesh','2022-03-17 15:40:12'),(0,0,'T1288','','','','Urine Glucose','','Y','','','','','','','','','','','','','',0,0,NULL,'N','Y','thims','2022-03-29 15:22:46','thims','2022-03-29 15:22:46'),(0,0,'T1289','','','','BIO FIRE PANEL FROM BLOOD','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','jayeshc','2022-04-18 10:30:00','jayeshc','2022-04-18 10:30:00'),(0,0,'T1290','','','','BIO FIRE PANEL FROM BODY FLUID EXCEPT BLOOD','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','jayeshc','2022-04-18 10:31:16','jayeshc','2022-04-18 10:31:16'),(0,0,'T1291','','','','Malditof Test (Nocardia Species identification) ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','parthesh','2022-04-27 16:09:24','parthesh','2022-04-27 16:09:24'),(0,0,'T1292','','','','Programmed Death Ligand (PDL 1)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','jayeshc','2022-05-06 14:22:06','jayeshc','2022-05-06 14:22:06'),(0,0,'T1293','','','','HYPERSENSITIVITY PNEUMONITIS PANEL','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','jayeshc','2022-05-10 09:51:52','jayeshc','2022-05-10 09:51:52'),(0,0,'T1294','','','','Catecholamines from Plasma','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','poojapatel','2022-05-23 12:34:43','poojapatel','2022-05-23 12:34:43'),(0,0,'T1295','','','','URINE CYTOLOGY ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','poojapatel','2022-05-23 12:37:09','poojapatel','2022-05-23 12:37:09'),(0,0,'T1296','','','','Vitamin E ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','poojapatel','2022-05-26 12:07:18','poojapatel','2022-05-26 12:07:18'),(0,0,'T1297','','','','Chronic Pancreatitis Panel (CASR, CFTR ,CTRC ,PRSS-1 ,SPINK -1)','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','nilesh','2022-06-10 14:45:07','nilesh','2022-06-10 14:45:07'),(0,0,'T1298','','','','Bile Acid Serum ','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','parthesh','2022-07-12 09:56:54','parthesh','2022-07-12 09:56:54'),(0,0,'T1299','','','','AFB Sensitivity For MOTT','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','parthesh','2022-07-12 15:35:04','parthesh','2022-07-12 15:35:04'),(0,0,'T1300','','','','GLUCOSE CHALLENGE TEST(GCT)','','N','','','','<140','mg/dl','','','','','','','','',0,0,NULL,'N','Y','parthesh','2022-07-14 10:42:18','parthesh','2022-07-14 10:45:45'),(0,0,'T1301','','','','IgG','','N','','','','','','','','','','','','','',0,0,NULL,'N','N','parthesh','2022-07-21 15:13:22','parthesh','2022-07-21 15:16:32'),(0,0,'T1302','','','','IG G','','N','','','','','','','','','','','','','',0,0,NULL,'N','N','parthesh','2022-07-21 15:14:34','parthesh','2022-07-21 15:16:49'),(0,0,'T1303','','','','CRYPTOSPORIDIUM ANTIGEN FOR STOOL','','N','','','','Detected\r\nNot detected','','','','','','','','','',0,0,NULL,'N','Y','rohit','2022-08-27 09:59:56','rohit','2022-08-27 09:59:56'),(0,0,'T1304','','','','FILARIA  ANTIGEN','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','rohit','2022-10-12 14:41:54','rohit','2022-10-12 14:41:54'),(0,0,'T1305','','','','C1 ESTERASE INHIBITOR- T0539','','N','','','','','','','','','','','','','',0,0,NULL,'N','N','jainil','2022-11-22 13:13:47','jainil','2022-11-22 13:18:32'),(0,0,'T1306','','','','Tetanus toxoid IgG antibodies (ELISA)','','Y','','','','','','','','','','','','','',0,0,NULL,'N','Y','jainil','2022-11-29 09:56:54','jainil','2022-11-29 10:31:44'),(0,0,'T1307','','','','AFB Sensitivity10 1st&2nd line drug sensitivity by Bactec','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','jainil','2022-12-10 12:08:05','jainil','2022-12-10 12:08:05'),(0,0,'T1308','','','','Atypical Mycobacteria Species Identification-T0336','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','jainil','2022-12-14 13:47:58','jainil','2022-12-14 13:47:58'),(0,0,'T1309','','','','CPK MM','','N','','','','','','','','','','','','','',0,0,NULL,'N','Y','drashish','2023-01-04 11:32:31','jainil','2023-01-04 12:38:00');
/*!40000 ALTER TABLE `patho_test_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `patient_consent_certificate_data`
--

DROP TABLE IF EXISTS `patient_consent_certificate_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `patient_consent_certificate_data` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `op_id` int(11) NOT NULL,
  `ip_id` int(11) NOT NULL,
  `template_type` varchar(8) NOT NULL,
  `template_name` varchar(30) NOT NULL,
  `sr_no` int(11) NOT NULL,
  `report_content` text CHARACTER SET utf8 NOT NULL,
  `req_datetime` datetime NOT NULL COMMENT 'Reporting Date time will store here.',
  `datetime_of_report` datetime NOT NULL,
  `update_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `print_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `patient_consent_certificate_data`
--

LOCK TABLES `patient_consent_certificate_data` WRITE;
/*!40000 ALTER TABLE `patient_consent_certificate_data` DISABLE KEYS */;
INSERT INTO `patient_consent_certificate_data` VALUES (1,0,0,2066,2605,2013,0,'CERT','MEDICAL',1,'<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\n	<tbody>\n		<tr>\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\n			<p><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></p>\n			</td>\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\n			<p>&nbsp;&nbsp;<strong>DARSH PAREKH </strong>&nbsp;</p>\n			</td>\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\n			<p><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></p>\n			</td>\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\n			<p>&nbsp;&nbsp;<strong>06/11/2025</strong>&nbsp;</p>\n			</td>\n		</tr>\n		<tr>\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\n			<p><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></p>\n			</td>\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\n			<p>&nbsp;&nbsp;<strong>2066</strong>&nbsp;</p>\n			</td>\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\n			<p><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></p>\n			</td>\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\n			<p>&nbsp;&nbsp;<strong>20 Years </strong>&nbsp;</p>\n			</td>\n		</tr>\n		<tr>\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\n			<p><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></p>\n			</td>\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\n			<p>&nbsp;&nbsp;<strong>DR.DARSHAN BHATT</strong>&nbsp;</p>\n			</td>\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\n			<p><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></p>\n			</td>\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\n			<p>&nbsp;&nbsp;<strong>Male</strong>&nbsp;</p>\n			</td>\n		</tr>\n	</tbody>\n</table>\n\n<p>&nbsp; &nbsp;&nbsp;</p>\n\n<p>&nbsp; &nbsp; &nbsp;</p>\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Date&nbsp;:&nbsp;&nbsp;<strong>06/11/2025</strong>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\n\n<p>&nbsp;</p>\n\n<hr />\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <strong>&nbsp;MEDICAL CERTIFICATE</strong></p>\n\n<hr />\n<p>&nbsp;</p>\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\n\n<p>&nbsp;</p>\n\n<p><strong>To whom so ever it may concern that &nbsp;<strong>DARSH PAREKH </strong>&nbsp;, &nbsp;<strong>Male</strong>&nbsp;, &nbsp;<strong>20 Years </strong>&nbsp;,<br />\nhas been consulted by me for c/o giddiness.</strong></p>\n\n<p>&nbsp;</p>\n\n<p><strong>His/Her diagnosis is &nbsp;&nbsp;.</strong></p>\n\n<p>&nbsp;</p>\n\n<p><strong>I have advised her 3 days rest for same from today ( ).</strong></p>\n\n<p><br />\n<strong>He is advised to have regular follow up with me.</strong></p>\n\n<p>&nbsp;</p>\n\n<p>&nbsp;</p>\n\n<p>&nbsp;</p>\n\n<p><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Dr Darshan Bhatt</strong><br />\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Consultant ENT surgeon</p>\n\n<p>&nbsp;</p>\n','0000-00-00 00:00:00','2025-11-06 00:00:00','Y','N','darshan','2025-11-06 17:24:44','','0000-00-00 00:00:00'),(2,0,0,365,5269,349,0,'CERT','MEDICAL',1,'<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\n	<tbody>\n		<tr>\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\n			<p><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></p>\n			</td>\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\n			<p>&nbsp;&nbsp;<strong>NAYNABEN H PARMAR</strong>&nbsp;</p>\n			</td>\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\n			<p><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></p>\n			</td>\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\n			<p>&nbsp;&nbsp;<strong>05/12/2025</strong>&nbsp;</p>\n			</td>\n		</tr>\n		<tr>\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\n			<p><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></p>\n			</td>\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\n			<p>&nbsp;&nbsp;<strong>365</strong>&nbsp;</p>\n			</td>\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\n			<p><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></p>\n			</td>\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\n			<p>&nbsp;&nbsp;<strong>39 Years </strong>&nbsp;</p>\n			</td>\n		</tr>\n		<tr>\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\n			<p><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></p>\n			</td>\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\n			<p>&nbsp;&nbsp;<strong>DR.DARSHAN BHATT</strong>&nbsp;</p>\n			</td>\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\n			<p><span style=\"font-size:11pt\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></p>\n			</td>\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\n			<p>&nbsp;&nbsp;<strong>Female</strong>&nbsp;</p>\n			</td>\n		</tr>\n	</tbody>\n</table>\n\n<p>&nbsp; &nbsp;&nbsp;</p>\n\n<p>&nbsp; &nbsp; &nbsp;</p>\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Date&nbsp;:&nbsp;&nbsp;<strong>05/12/2025</strong>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\n\n<p>&nbsp;</p>\n\n<hr />\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <strong>&nbsp;MEDICAL CERTIFICATE</strong></p>\n\n<hr />\n<p>&nbsp;</p>\n\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\n\n<p>&nbsp;</p>\n\n<p><strong>To whom so ever it may concern that &nbsp;<strong>NAYNABEN H PARMAR</strong>&nbsp;, &nbsp;<strong>Female</strong>&nbsp;, &nbsp;<strong>39 Years </strong>&nbsp;,</strong></p>\n\n<p><br />\n<strong>has been consulted by me for c/o headache</strong></p>\n\n<p>&nbsp;</p>\n\n<p><strong>His/Her diagnosis is&nbsp; VM</strong></p>\n\n<p>&nbsp;</p>\n\n<p><br />\n<strong>She/He is advised to have regular follow up with me.</strong></p>\n\n<p>&nbsp;</p>\n\n<p>&nbsp;</p>\n\n<p>&nbsp;</p>\n\n<p><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Dr Darshan Bhatt</strong><br />\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Consultant ENT surgeon</p>\n\n<p>&nbsp;</p>\n','0000-00-00 00:00:00','2025-12-05 00:00:00','Y','N','darshan','2025-12-05 17:36:06','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `patient_consent_certificate_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `patient_diagnosis_temp`
--

DROP TABLE IF EXISTS `patient_diagnosis_temp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `patient_diagnosis_temp` (
  `diag` varchar(100) NOT NULL,
  `other_diag` text NOT NULL,
  `patient_id` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `patient_diagnosis_temp`
--

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

--
-- Table structure for table `patient_diet_composition`
--

DROP TABLE IF EXISTS `patient_diet_composition`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `patient_diet_composition` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `ip_id` bigint(20) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `diet_cd` varchar(20) NOT NULL COMMENT 'general master gm_code(DIETYP)',
  `remark` varchar(200) NOT NULL,
  `diet_startdate_time` datetime NOT NULL,
  `diet_enddate_time` datetime NOT NULL,
  `CreatedBy` varchar(50) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(50) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `patient_diet_composition`
--

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

--
-- Table structure for table `patient_generated_data`
--

DROP TABLE IF EXISTS `patient_generated_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `patient_generated_data` (
  `sr` int(11) NOT NULL AUTO_INCREMENT,
  `department` varchar(50) NOT NULL,
  `visit_type` enum('O','I') NOT NULL COMMENT 'O OP, I IP',
  `new_case` int(11) NOT NULL,
  `old_case` int(11) NOT NULL,
  `visit_date` date NOT NULL,
  `created_by` varchar(50) NOT NULL,
  `created_time` datetime NOT NULL,
  PRIMARY KEY (`sr`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `patient_generated_data`
--

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

--
-- Table structure for table `patient_mlc`
--

DROP TABLE IF EXISTS `patient_mlc`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `patient_mlc` (
  `OPD_ID` bigint(20) NOT NULL,
  `YYMM` int(11) NOT NULL,
  `IPD_ID` bigint(20) NOT NULL,
  `Patient_ID` int(11) NOT NULL,
  `P_Name` varchar(100) NOT NULL,
  `P_Gender` varchar(1) NOT NULL,
  `P_Age` int(11) NOT NULL,
  `P_VIllage` varchar(50) NOT NULL,
  `P_Taluka` varchar(50) NOT NULL,
  `Admit_Date` date NOT NULL,
  `Remark` varchar(200) NOT NULL,
  `CERT_Path` varchar(30) NOT NULL,
  `CASE_Path` varchar(30) NOT NULL,
  `BILL_Path` varchar(30) NOT NULL,
  `Created_by` varchar(15) NOT NULL,
  `Creation_Date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `Verified_by` varchar(15) NOT NULL,
  `Verified_Date` date NOT NULL,
  `CERT_OK` varchar(1) NOT NULL,
  `CASE_OK` varchar(1) NOT NULL,
  `BILL_OK` varchar(1) NOT NULL,
  PRIMARY KEY (`OPD_ID`,`YYMM`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `patient_mlc`
--

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

--
-- Table structure for table `patient_mlc_detail`
--

DROP TABLE IF EXISTS `patient_mlc_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `patient_mlc_detail` (
  `mlc_no` int(11) NOT NULL AUTO_INCREMENT,
  `visit_id` int(11) NOT NULL,
  `mlc_type` int(11) NOT NULL,
  `police_officer_name` varchar(50) NOT NULL,
  `police_buckle_no` int(11) NOT NULL,
  `yadi_number` int(11) NOT NULL,
  `police_station_name` varchar(50) NOT NULL,
  `remark` varchar(50) NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`mlc_no`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `patient_mlc_detail`
--

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

--
-- Table structure for table `patient_reg`
--

DROP TABLE IF EXISTS `patient_reg`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `patient_reg` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `patient_reg_id` bigint(20) NOT NULL,
  `patient_reg_date` date NOT NULL,
  `patient_reg_end_date` date NOT NULL,
  `patient_id` int(11) NOT NULL,
  `fees` int(11) NOT NULL,
  `reg_cancle_remark` varchar(40) NOT NULL,
  `user_name` varchar(20) NOT NULL,
  `last_update_date` date NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`patient_reg_id`),
  KEY `patient_id` (`patient_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `patient_reg`
--

LOCK TABLES `patient_reg` WRITE;
/*!40000 ALTER TABLE `patient_reg` DISABLE KEYS */;
INSERT INTO `patient_reg` VALUES (0,0,1,'2025-10-08','2026-01-07',1,0,'','','0000-00-00','janvi','2025-10-08 10:03:17','','0000-00-00 00:00:00'),(0,0,2,'2025-10-08','2026-01-07',2,0,'','','0000-00-00','janvi','2025-10-08 10:09:27','','0000-00-00 00:00:00'),(0,0,3,'2025-10-08','2026-01-07',3,0,'','','0000-00-00','janvi','2025-10-08 10:13:01','','0000-00-00 00:00:00'),(0,0,4,'2025-10-08','2026-01-07',4,0,'','','0000-00-00','janvi','2025-10-08 10:16:06','','0000-00-00 00:00:00'),(0,0,5,'2025-10-08','2026-01-07',5,0,'','','0000-00-00','shweta','2025-10-08 10:16:14','','0000-00-00 00:00:00'),(0,0,6,'2025-10-08','2026-01-07',6,0,'','','0000-00-00','shweta','2025-10-08 10:19:48','','0000-00-00 00:00:00'),(0,0,7,'2025-10-08','2026-01-07',7,0,'','','0000-00-00','drashti','2025-10-08 10:21:15','','0000-00-00 00:00:00'),(0,0,8,'2025-10-08','2026-01-07',8,0,'','','0000-00-00','shweta','2025-10-08 10:21:52','','0000-00-00 00:00:00'),(0,0,9,'2025-10-08','2026-01-07',9,0,'','','0000-00-00','janvi','2025-10-08 10:22:11','','0000-00-00 00:00:00'),(0,0,10,'2025-10-08','2026-01-07',10,0,'','','0000-00-00','drashti','2025-10-08 10:23:44','','0000-00-00 00:00:00'),(0,0,11,'2025-10-08','2026-01-07',11,0,'','','0000-00-00','janvi','2025-10-08 10:24:32','','0000-00-00 00:00:00'),(0,0,12,'2025-10-08','2026-01-07',12,0,'','','0000-00-00','shweta','2025-10-08 10:24:33','','0000-00-00 00:00:00'),(0,0,13,'2025-10-08','2026-01-07',13,0,'','','0000-00-00','drashti','2025-10-08 10:25:28','','0000-00-00 00:00:00'),(0,0,14,'2025-10-08','2026-01-07',14,0,'','','0000-00-00','janvi','2025-10-08 10:27:03','','0000-00-00 00:00:00'),(0,0,15,'2025-10-08','2026-01-07',15,0,'','','0000-00-00','shweta','2025-10-08 10:30:51','','0000-00-00 00:00:00'),(0,0,16,'2025-10-08','2026-01-07',16,0,'','','0000-00-00','drashti','2025-10-08 10:33:30','','0000-00-00 00:00:00'),(0,0,17,'2025-10-08','2026-01-07',17,0,'','','0000-00-00','manshi','2025-10-08 10:42:31','','0000-00-00 00:00:00'),(0,0,18,'2025-10-08','2026-01-07',18,0,'','','0000-00-00','shweta','2025-10-08 10:52:51','','0000-00-00 00:00:00'),(0,0,19,'2025-10-08','2026-01-07',19,0,'','','0000-00-00','drashti','2025-10-08 10:55:50','','0000-00-00 00:00:00'),(0,0,20,'2025-10-08','2026-01-07',20,0,'','','0000-00-00','janvi','2025-10-08 10:56:51','','0000-00-00 00:00:00'),(0,0,21,'2025-10-08','2026-01-07',22,0,'','','0000-00-00','drashti','2025-10-08 10:59:38','','0000-00-00 00:00:00'),(0,0,22,'2025-10-08','2026-01-07',23,0,'','','0000-00-00','manshi','2025-10-08 11:03:05','','0000-00-00 00:00:00'),(0,0,23,'2025-10-08','2026-01-07',24,0,'','','0000-00-00','riya','2025-10-08 11:08:39','','0000-00-00 00:00:00'),(0,0,24,'2025-10-08','2026-01-07',25,0,'','','0000-00-00','riya','2025-10-08 11:10:39','','0000-00-00 00:00:00'),(0,0,25,'2025-10-08','2026-01-07',26,0,'','','0000-00-00','janvi','2025-10-08 11:11:35','','0000-00-00 00:00:00'),(0,0,26,'2025-10-08','2026-01-07',27,0,'','','0000-00-00','manshi','2025-10-08 11:11:41','','0000-00-00 00:00:00'),(0,0,27,'2025-10-08','2026-01-07',29,0,'','','0000-00-00','shweta','2025-10-08 11:14:16','','0000-00-00 00:00:00'),(0,0,28,'2025-10-08','2026-01-07',30,0,'','','0000-00-00','drashti','2025-10-08 11:16:16','','0000-00-00 00:00:00'),(0,0,29,'2025-10-08','2026-01-07',31,0,'','','0000-00-00','shweta','2025-10-08 11:18:24','','0000-00-00 00:00:00'),(0,0,30,'2025-10-08','2026-01-07',32,0,'','','0000-00-00','janvi','2025-10-08 11:19:02','','0000-00-00 00:00:00'),(0,0,31,'2025-10-08','2026-01-07',33,0,'','','0000-00-00','drashti','2025-10-08 11:19:23','','0000-00-00 00:00:00'),(0,0,32,'2025-10-08','2026-01-07',35,0,'','','0000-00-00','drashti','2025-10-08 11:25:23','','0000-00-00 00:00:00'),(0,0,33,'2025-10-08','2026-01-07',36,0,'','','0000-00-00','drashti','2025-10-08 11:28:49','','0000-00-00 00:00:00'),(0,0,34,'2025-10-08','2026-01-07',38,0,'','','0000-00-00','shweta','2025-10-08 11:30:06','','0000-00-00 00:00:00'),(0,0,35,'2025-10-08','2026-01-07',39,0,'','','0000-00-00','janvi','2025-10-08 11:32:01','','0000-00-00 00:00:00'),(0,0,36,'2025-10-08','2026-01-07',40,0,'','','0000-00-00','drashti','2025-10-08 11:32:43','','0000-00-00 00:00:00'),(0,0,37,'2025-10-08','2026-01-07',41,0,'','','0000-00-00','janvi','2025-10-08 11:39:09','','0000-00-00 00:00:00'),(0,0,38,'2025-10-08','2026-01-07',42,0,'','','0000-00-00','shweta','2025-10-08 11:40:41','','0000-00-00 00:00:00'),(0,0,39,'2025-10-08','2026-01-07',43,0,'','','0000-00-00','janvi','2025-10-08 11:41:02','','0000-00-00 00:00:00'),(0,0,40,'2025-10-08','2026-01-07',44,0,'','','0000-00-00','drashti','2025-10-08 11:43:10','','0000-00-00 00:00:00'),(0,0,41,'2025-10-08','2026-01-07',45,0,'','','0000-00-00','janvi','2025-10-08 11:43:45','','0000-00-00 00:00:00'),(0,0,42,'2025-10-08','2026-01-07',46,0,'','','0000-00-00','shweta','2025-10-08 11:46:00','','0000-00-00 00:00:00'),(0,0,43,'2025-10-08','2026-01-07',47,0,'','','0000-00-00','drashti','2025-10-08 11:47:59','','0000-00-00 00:00:00'),(0,0,44,'2025-10-08','2026-01-07',49,0,'','','0000-00-00','drashti','2025-10-08 11:52:08','','0000-00-00 00:00:00'),(0,0,45,'2025-10-08','2026-01-07',50,0,'','','0000-00-00','drashti','2025-10-08 11:55:07','','0000-00-00 00:00:00'),(0,0,46,'2025-10-08','2026-01-07',52,0,'','','0000-00-00','shweta','2025-10-08 11:57:18','','0000-00-00 00:00:00'),(0,0,47,'2025-10-08','2026-01-07',53,0,'','','0000-00-00','janvi','2025-10-08 11:57:29','','0000-00-00 00:00:00'),(0,0,48,'2025-10-08','2026-01-07',54,0,'','','0000-00-00','janvi','2025-10-08 11:59:26','','0000-00-00 00:00:00'),(0,0,49,'2025-10-08','2026-01-07',55,0,'','','0000-00-00','drashti','2025-10-08 12:00:08','','0000-00-00 00:00:00'),(0,0,50,'2025-10-08','2026-01-07',57,0,'','','0000-00-00','manshi','2025-10-08 12:08:14','','0000-00-00 00:00:00'),(0,0,51,'2025-10-08','2026-01-07',58,0,'','','0000-00-00','shweta','2025-10-08 12:08:15','','0000-00-00 00:00:00'),(0,0,52,'2025-10-08','2026-01-07',59,0,'','','0000-00-00','drashti','2025-10-08 12:09:04','','0000-00-00 00:00:00'),(0,0,53,'2025-10-08','2026-01-07',61,0,'','','0000-00-00','manshi','2025-10-08 12:12:08','','0000-00-00 00:00:00'),(0,0,54,'2025-10-08','2026-01-07',64,0,'','','0000-00-00','drashti','2025-10-08 12:21:01','','0000-00-00 00:00:00'),(0,0,55,'2025-10-08','2026-01-07',65,0,'','','0000-00-00','janvi','2025-10-08 12:23:42','','0000-00-00 00:00:00'),(0,0,56,'2025-10-08','2026-01-07',67,0,'','','0000-00-00','drashti','2025-10-08 12:25:03','','0000-00-00 00:00:00'),(0,0,57,'2025-10-08','2026-01-07',68,0,'','','0000-00-00','janvi','2025-10-08 12:25:55','','0000-00-00 00:00:00'),(0,0,58,'2025-10-08','2026-01-07',69,0,'','','0000-00-00','shweta','2025-10-08 12:27:21','','0000-00-00 00:00:00'),(0,0,59,'2025-10-08','2026-01-07',70,0,'','','0000-00-00','janvi','2025-10-08 12:31:01','','0000-00-00 00:00:00'),(0,0,60,'2025-10-08','2026-01-07',71,0,'','','0000-00-00','drashti','2025-10-08 12:31:35','','0000-00-00 00:00:00'),(0,0,61,'2025-10-08','2026-01-07',72,0,'','','0000-00-00','janvi','2025-10-08 12:32:40','','0000-00-00 00:00:00'),(0,0,62,'2025-10-08','2026-01-07',73,0,'','','0000-00-00','janvi','2025-10-08 12:37:11','','0000-00-00 00:00:00'),(0,0,63,'2025-10-08','2026-01-07',74,0,'','','0000-00-00','janvi','2025-10-08 12:49:06','','0000-00-00 00:00:00'),(0,0,64,'2025-10-08','2026-01-07',75,0,'','','0000-00-00','janvi','2025-10-08 13:00:26','','0000-00-00 00:00:00'),(0,0,65,'2025-10-08','2026-01-07',76,0,'','','0000-00-00','shweta','2025-10-08 13:01:34','','0000-00-00 00:00:00'),(0,0,66,'2025-10-08','2026-01-07',77,0,'','','0000-00-00','drashti','2025-10-08 13:14:07','','0000-00-00 00:00:00'),(0,0,67,'2025-10-08','2026-01-07',78,0,'','','0000-00-00','drashti','2025-10-08 13:17:57','','0000-00-00 00:00:00'),(0,0,68,'2025-10-08','2026-01-07',79,0,'','','0000-00-00','janvi','2025-10-08 13:22:52','','0000-00-00 00:00:00'),(0,0,69,'2025-10-08','2026-01-07',80,0,'','','0000-00-00','priyanshi','2025-10-08 15:40:07','','0000-00-00 00:00:00'),(0,0,70,'2025-10-08','2026-01-07',81,0,'','','0000-00-00','priyanshi','2025-10-08 15:40:50','','0000-00-00 00:00:00'),(0,0,71,'2025-10-08','2026-01-07',82,0,'','','0000-00-00','priyanshi','2025-10-08 15:50:20','','0000-00-00 00:00:00'),(0,0,72,'2025-10-08','2026-01-07',83,0,'','','0000-00-00','priyanshi','2025-10-08 16:12:11','','0000-00-00 00:00:00'),(0,0,73,'2025-10-08','2026-01-07',84,0,'','','0000-00-00','priyanshi','2025-10-08 16:33:34','','0000-00-00 00:00:00'),(0,0,74,'2025-10-08','2026-01-07',85,0,'','','0000-00-00','priyanshi','2025-10-08 16:38:38','','0000-00-00 00:00:00'),(0,0,75,'2025-10-08','2026-01-07',86,0,'','','0000-00-00','priyanshi','2025-10-08 16:39:25','','0000-00-00 00:00:00'),(0,0,76,'2025-10-08','2026-01-07',87,0,'','','0000-00-00','shweta','2025-10-08 16:41:25','','0000-00-00 00:00:00'),(0,0,77,'2025-10-08','2026-01-07',88,0,'','','0000-00-00','shweta','2025-10-08 16:51:04','','0000-00-00 00:00:00'),(0,0,78,'2025-10-08','2026-01-07',89,0,'','','0000-00-00','shweta','2025-10-08 17:00:50','','0000-00-00 00:00:00'),(0,0,79,'2025-10-08','2026-01-07',90,0,'','','0000-00-00','janvi','2025-10-08 17:05:14','','0000-00-00 00:00:00'),(0,0,80,'2025-10-08','2026-01-07',91,0,'','','0000-00-00','shweta','2025-10-08 17:06:50','','0000-00-00 00:00:00'),(0,0,81,'2025-10-08','2026-01-07',92,0,'','','0000-00-00','shweta','2025-10-08 17:07:52','','0000-00-00 00:00:00'),(0,0,82,'2025-10-08','2026-01-07',93,0,'','','0000-00-00','shweta','2025-10-08 17:09:26','','0000-00-00 00:00:00'),(0,0,83,'2025-10-08','2026-01-07',94,0,'','','0000-00-00','shweta','2025-10-08 17:14:28','','0000-00-00 00:00:00'),(0,0,84,'2025-10-08','2026-01-07',95,0,'','','0000-00-00','shweta','2025-10-08 17:14:58','','0000-00-00 00:00:00'),(0,0,85,'2025-10-08','2026-01-07',96,0,'','','0000-00-00','shweta','2025-10-08 17:15:44','','0000-00-00 00:00:00'),(0,0,86,'2025-10-08','2026-01-07',97,0,'','','0000-00-00','janvi','2025-10-08 17:15:58','','0000-00-00 00:00:00'),(0,0,87,'2025-10-08','2026-01-07',98,0,'','','0000-00-00','shweta','2025-10-08 17:20:21','','0000-00-00 00:00:00'),(0,0,88,'2025-10-08','2026-01-07',99,0,'','','0000-00-00','shweta','2025-10-08 17:26:19','','0000-00-00 00:00:00'),(0,0,89,'2025-10-08','2026-01-07',100,0,'','','0000-00-00','shweta','2025-10-08 17:26:48','','0000-00-00 00:00:00'),(0,0,90,'2025-10-08','2026-01-07',101,0,'','','0000-00-00','shweta','2025-10-08 17:27:58','','0000-00-00 00:00:00'),(0,0,91,'2025-10-08','2026-01-07',102,0,'','','0000-00-00','shweta','2025-10-08 17:30:19','','0000-00-00 00:00:00'),(0,0,92,'2025-10-08','2026-01-07',103,0,'','','0000-00-00','janvi','2025-10-08 17:31:36','','0000-00-00 00:00:00'),(0,0,93,'2025-10-08','2026-01-07',104,0,'','','0000-00-00','shweta','2025-10-08 17:36:06','','0000-00-00 00:00:00'),(0,0,94,'2025-10-08','2026-01-07',105,0,'','','0000-00-00','janvi','2025-10-08 17:37:32','','0000-00-00 00:00:00'),(0,0,95,'2025-10-08','2026-01-07',106,0,'','','0000-00-00','shweta','2025-10-08 17:38:38','','0000-00-00 00:00:00'),(0,0,96,'2025-10-08','2026-01-07',107,0,'','','0000-00-00','shweta','2025-10-08 17:41:41','','0000-00-00 00:00:00'),(0,0,97,'2025-10-08','2026-01-07',108,0,'','','0000-00-00','shweta','2025-10-08 17:43:23','','0000-00-00 00:00:00'),(0,0,98,'2025-10-08','2026-01-07',109,0,'','','0000-00-00','urvashi','2025-10-08 17:44:12','','0000-00-00 00:00:00'),(0,0,99,'2025-10-08','2026-01-07',110,0,'','','0000-00-00','shweta','2025-10-08 17:46:05','','0000-00-00 00:00:00'),(0,0,100,'2025-10-08','2026-01-07',111,0,'','','0000-00-00','janvi','2025-10-08 17:48:59','','0000-00-00 00:00:00'),(0,0,101,'2025-10-08','2026-01-07',112,0,'','','0000-00-00','urvashi','2025-10-08 17:52:19','','0000-00-00 00:00:00'),(0,0,102,'2025-10-08','2026-01-07',113,0,'','','0000-00-00','urvashi','2025-10-08 17:53:41','','0000-00-00 00:00:00'),(0,0,103,'2025-10-08','2026-01-07',114,0,'','','0000-00-00','shweta','2025-10-08 17:54:33','','0000-00-00 00:00:00'),(0,0,104,'2025-10-08','2026-01-07',115,0,'','','0000-00-00','shweta','2025-10-08 17:57:16','','0000-00-00 00:00:00'),(0,0,105,'2025-10-08','2026-01-07',116,0,'','','0000-00-00','manshi','2025-10-08 18:00:15','','0000-00-00 00:00:00'),(0,0,106,'2025-10-08','2026-01-07',117,0,'','','0000-00-00','urvashi','2025-10-08 18:06:03','','0000-00-00 00:00:00'),(0,0,107,'2025-10-08','2026-01-07',118,0,'','','0000-00-00','urvashi','2025-10-08 18:07:27','','0000-00-00 00:00:00'),(0,0,108,'2025-10-08','2026-01-07',119,0,'','','0000-00-00','manshi','2025-10-08 18:08:43','','0000-00-00 00:00:00'),(0,0,109,'2025-10-08','2026-01-07',120,0,'','','0000-00-00','janvi','2025-10-08 18:09:45','','0000-00-00 00:00:00'),(0,0,110,'2025-10-08','2026-01-07',121,0,'','','0000-00-00','janvi','2025-10-08 18:10:44','','0000-00-00 00:00:00'),(0,0,111,'2025-10-08','2026-01-07',122,0,'','','0000-00-00','urvashi','2025-10-08 18:10:53','','0000-00-00 00:00:00'),(0,0,112,'2025-10-08','2026-01-07',123,0,'','','0000-00-00','shweta','2025-10-08 18:12:51','','0000-00-00 00:00:00'),(0,0,113,'2025-10-08','2026-01-07',124,0,'','','0000-00-00','urvashi','2025-10-08 18:14:52','','0000-00-00 00:00:00'),(0,0,114,'2025-10-08','2026-01-07',125,0,'','','0000-00-00','janvi','2025-10-08 18:15:22','','0000-00-00 00:00:00'),(0,0,115,'2025-10-08','2026-01-07',126,0,'','','0000-00-00','urvashi','2025-10-08 18:20:23','','0000-00-00 00:00:00'),(0,0,116,'2025-10-08','2026-01-07',127,0,'','','0000-00-00','janvi','2025-10-08 18:21:44','','0000-00-00 00:00:00'),(0,0,117,'2025-10-08','2026-01-07',128,0,'','','0000-00-00','urvashi','2025-10-08 18:24:03','','0000-00-00 00:00:00'),(0,0,118,'2025-10-08','2026-01-07',129,0,'','','0000-00-00','janvi','2025-10-08 18:25:25','','0000-00-00 00:00:00'),(0,0,119,'2025-10-08','2026-01-07',130,0,'','','0000-00-00','janvi','2025-10-08 18:28:46','','0000-00-00 00:00:00'),(0,0,120,'2025-10-08','2026-01-07',131,0,'','','0000-00-00','shweta','2025-10-08 18:29:33','','0000-00-00 00:00:00'),(0,0,121,'2025-10-08','2026-01-07',132,0,'','','0000-00-00','manshi','2025-10-08 18:33:37','','0000-00-00 00:00:00'),(0,0,122,'2025-10-08','2026-01-07',133,0,'','','0000-00-00','shweta','2025-10-08 18:38:22','','0000-00-00 00:00:00'),(0,0,123,'2025-10-08','2026-01-07',134,0,'','','0000-00-00','urvashi','2025-10-08 18:41:14','','0000-00-00 00:00:00'),(0,0,124,'2025-10-08','2026-01-07',135,0,'','','0000-00-00','shweta','2025-10-08 18:42:15','','0000-00-00 00:00:00'),(0,0,125,'2025-10-08','2026-01-07',136,0,'','','0000-00-00','janvi','2025-10-08 18:43:25','','0000-00-00 00:00:00'),(0,0,126,'2025-10-08','2026-01-07',137,0,'','','0000-00-00','janvi','2025-10-08 18:46:23','','0000-00-00 00:00:00'),(0,0,127,'2025-10-08','2026-01-07',138,0,'','','0000-00-00','shweta','2025-10-08 18:48:31','','0000-00-00 00:00:00'),(0,0,128,'2025-10-08','2026-01-07',139,0,'','','0000-00-00','janvi','2025-10-08 18:51:53','','0000-00-00 00:00:00'),(0,0,129,'2025-10-08','2026-01-07',140,0,'','','0000-00-00','urvashi','2025-10-08 18:53:53','','0000-00-00 00:00:00'),(0,0,130,'2025-10-08','2026-01-07',141,0,'','','0000-00-00','urvashi','2025-10-08 18:54:57','','0000-00-00 00:00:00'),(0,0,131,'2025-10-08','2026-01-07',142,0,'','','0000-00-00','janvi','2025-10-08 18:55:45','','0000-00-00 00:00:00'),(0,0,132,'2025-10-08','2026-01-07',143,0,'','','0000-00-00','shweta','2025-10-08 19:01:42','','0000-00-00 00:00:00'),(0,0,133,'2025-10-08','2026-01-07',144,0,'','','0000-00-00','manshi','2025-10-08 19:07:17','','0000-00-00 00:00:00'),(0,0,134,'2025-10-08','2026-01-07',145,0,'','','0000-00-00','shweta','2025-10-08 19:07:36','','0000-00-00 00:00:00'),(0,0,135,'2025-10-08','2026-01-07',146,0,'','','0000-00-00','urvashi','2025-10-08 19:13:10','','0000-00-00 00:00:00'),(0,0,136,'2025-10-08','2026-01-07',147,0,'','','0000-00-00','urvashi','2025-10-08 19:16:17','','0000-00-00 00:00:00'),(0,0,137,'2025-10-08','2026-01-07',148,0,'','','0000-00-00','manshi','2025-10-08 19:17:44','','0000-00-00 00:00:00'),(0,0,138,'2025-10-08','2026-01-07',149,0,'','','0000-00-00','janvi','2025-10-08 19:20:23','','0000-00-00 00:00:00'),(0,0,139,'2025-10-08','2026-01-07',150,0,'','','0000-00-00','manshi','2025-10-08 19:32:12','','0000-00-00 00:00:00'),(0,0,140,'2025-10-08','2026-01-07',151,0,'','','0000-00-00','janvi','2025-10-08 19:32:29','','0000-00-00 00:00:00'),(0,0,141,'2025-10-08','2026-01-07',152,0,'','','0000-00-00','urvashi','2025-10-08 19:35:16','','0000-00-00 00:00:00'),(0,0,142,'2025-10-08','2026-01-07',153,0,'','','0000-00-00','janvi','2025-10-08 19:44:17','','0000-00-00 00:00:00'),(0,0,143,'2025-10-08','2026-01-07',154,0,'','','0000-00-00','manshi','2025-10-08 19:45:05','','0000-00-00 00:00:00'),(0,0,144,'2025-10-08','2026-01-07',155,0,'','','0000-00-00','manshi','2025-10-08 19:48:14','','0000-00-00 00:00:00'),(0,0,145,'2025-10-08','2026-01-07',156,0,'','','0000-00-00','urvashi','2025-10-08 19:51:53','','0000-00-00 00:00:00'),(0,0,146,'2025-10-08','2026-01-07',157,0,'','','0000-00-00','shweta','2025-10-08 20:09:47','','0000-00-00 00:00:00'),(0,0,147,'2025-10-09','2026-01-08',158,0,'','','0000-00-00','shweta','2025-10-09 09:05:22','','0000-00-00 00:00:00'),(0,0,148,'2025-10-09','2026-01-08',159,0,'','','0000-00-00','shweta','2025-10-09 09:07:03','','0000-00-00 00:00:00'),(0,0,149,'2025-10-09','2026-01-08',160,0,'','','0000-00-00','shweta','2025-10-09 09:10:07','','0000-00-00 00:00:00'),(0,0,150,'2025-10-09','2026-01-08',161,0,'','','0000-00-00','janvi','2025-10-09 09:18:44','','0000-00-00 00:00:00'),(0,0,151,'2025-10-09','2026-01-08',163,0,'','','0000-00-00','shweta','2025-10-09 09:43:55','','0000-00-00 00:00:00'),(0,0,152,'2025-10-09','2026-01-08',164,0,'','','0000-00-00','shweta','2025-10-09 09:47:56','','0000-00-00 00:00:00'),(0,0,153,'2025-10-09','2026-01-08',166,0,'','','0000-00-00','janvi','2025-10-09 10:10:37','','0000-00-00 00:00:00'),(0,0,154,'2025-10-09','2026-01-08',167,0,'','','0000-00-00','shweta','2025-10-09 10:17:38','','0000-00-00 00:00:00'),(0,0,155,'2025-10-09','2026-01-08',168,0,'','','0000-00-00','shweta','2025-10-09 10:27:25','','0000-00-00 00:00:00'),(0,0,156,'2025-10-09','2026-01-08',169,0,'','','0000-00-00','shweta','2025-10-09 10:34:58','','0000-00-00 00:00:00'),(0,0,157,'2025-10-09','2026-01-08',170,0,'','','0000-00-00','shweta','2025-10-09 10:36:35','','0000-00-00 00:00:00'),(0,0,158,'2025-10-09','2026-01-08',171,0,'','','0000-00-00','shweta','2025-10-09 10:37:55','','0000-00-00 00:00:00'),(0,0,159,'2025-10-09','2026-01-08',172,0,'','','0000-00-00','urvashi','2025-10-09 10:39:59','','0000-00-00 00:00:00'),(0,0,160,'2025-10-09','2026-01-08',173,0,'','','0000-00-00','shweta','2025-10-09 10:42:43','','0000-00-00 00:00:00'),(0,0,161,'2025-10-09','2026-01-08',174,0,'','','0000-00-00','shweta','2025-10-09 10:44:28','','0000-00-00 00:00:00'),(0,0,162,'2025-10-09','2026-01-08',175,0,'','','0000-00-00','urvashi','2025-10-09 10:46:52','','0000-00-00 00:00:00'),(0,0,163,'2025-10-09','2026-01-08',176,0,'','','0000-00-00','manshi','2025-10-09 10:48:37','','0000-00-00 00:00:00'),(0,0,164,'2025-10-09','2026-01-08',177,0,'','','0000-00-00','shweta','2025-10-09 10:48:57','','0000-00-00 00:00:00'),(0,0,165,'2025-10-09','2026-01-08',178,0,'','','0000-00-00','janvi','2025-10-09 10:50:57','','0000-00-00 00:00:00'),(0,0,166,'2025-10-09','2026-01-08',179,0,'','','0000-00-00','urvashi','2025-10-09 10:51:45','','0000-00-00 00:00:00'),(0,0,167,'2025-10-09','2026-01-08',180,0,'','','0000-00-00','janvi','2025-10-09 10:52:10','','0000-00-00 00:00:00'),(0,0,168,'2025-10-09','2026-01-08',181,0,'','','0000-00-00','shweta','2025-10-09 10:52:59','','0000-00-00 00:00:00'),(0,0,169,'2025-10-09','2026-01-08',182,0,'','','0000-00-00','shweta','2025-10-09 10:54:55','','0000-00-00 00:00:00'),(0,0,170,'2025-10-09','2026-01-08',183,0,'','','0000-00-00','shweta','2025-10-09 10:57:53','','0000-00-00 00:00:00'),(0,0,171,'2025-10-09','2026-01-08',184,0,'','','0000-00-00','shweta','2025-10-09 10:59:16','','0000-00-00 00:00:00'),(0,0,172,'2025-10-09','2026-01-08',185,0,'','','0000-00-00','janvi','2025-10-09 11:01:13','','0000-00-00 00:00:00'),(0,0,173,'2025-10-09','2026-01-08',186,0,'','','0000-00-00','urvashi','2025-10-09 11:06:38','','0000-00-00 00:00:00'),(0,0,174,'2025-10-09','2026-01-08',187,0,'','','0000-00-00','janvi','2025-10-09 11:09:08','','0000-00-00 00:00:00'),(0,0,175,'2025-10-09','2026-01-08',188,0,'','','0000-00-00','urvashi','2025-10-09 11:12:24','','0000-00-00 00:00:00'),(0,0,176,'2025-10-09','2026-01-08',189,0,'','','0000-00-00','urvashi','2025-10-09 11:13:26','','0000-00-00 00:00:00'),(0,0,177,'2025-10-09','2026-01-08',190,0,'','','0000-00-00','shweta','2025-10-09 11:21:44','','0000-00-00 00:00:00'),(0,0,178,'2025-10-09','2026-01-08',191,0,'','','0000-00-00','manshi','2025-10-09 11:24:22','','0000-00-00 00:00:00'),(0,0,179,'2025-10-09','2026-01-08',192,0,'','','0000-00-00','shweta','2025-10-09 11:25:18','','0000-00-00 00:00:00'),(0,0,180,'2025-10-09','2026-01-08',193,0,'','','0000-00-00','janvi','2025-10-09 11:29:18','','0000-00-00 00:00:00'),(0,0,181,'2025-10-09','2026-01-08',194,0,'','','0000-00-00','urvashi','2025-10-09 11:30:17','','0000-00-00 00:00:00'),(0,0,182,'2025-10-09','2026-01-08',195,0,'','','0000-00-00','janvi','2025-10-09 11:32:30','','0000-00-00 00:00:00'),(0,0,183,'2025-10-09','2026-01-08',196,0,'','','0000-00-00','shweta','2025-10-09 11:36:59','','0000-00-00 00:00:00'),(0,0,184,'2025-10-09','2026-01-08',197,0,'','','0000-00-00','urvashi','2025-10-09 11:39:01','','0000-00-00 00:00:00'),(0,0,185,'2025-10-09','2026-01-08',198,0,'','','0000-00-00','shweta','2025-10-09 11:39:12','','0000-00-00 00:00:00'),(0,0,186,'2025-10-09','2026-01-08',199,0,'','','0000-00-00','shweta','2025-10-09 11:43:11','','0000-00-00 00:00:00'),(0,0,187,'2025-10-09','2026-01-08',200,0,'','','0000-00-00','urvashi','2025-10-09 11:46:05','','0000-00-00 00:00:00'),(0,0,188,'2025-10-09','2026-01-08',201,0,'','','0000-00-00','shweta','2025-10-09 11:50:14','','0000-00-00 00:00:00'),(0,0,189,'2025-10-09','2026-01-08',202,0,'','','0000-00-00','shweta','2025-10-09 11:52:47','','0000-00-00 00:00:00'),(0,0,190,'2025-10-09','2026-01-08',203,0,'','','0000-00-00','urvashi','2025-10-09 11:55:20','','0000-00-00 00:00:00'),(0,0,191,'2025-10-09','2026-01-08',204,0,'','','0000-00-00','urvashi','2025-10-09 12:04:21','','0000-00-00 00:00:00'),(0,0,192,'2025-10-09','2026-01-08',205,0,'','','0000-00-00','shweta','2025-10-09 12:07:49','','0000-00-00 00:00:00'),(0,0,193,'2025-10-09','2026-01-08',206,0,'','','0000-00-00','shweta','2025-10-09 12:12:32','','0000-00-00 00:00:00'),(0,0,194,'2025-10-09','2026-01-08',207,0,'','','0000-00-00','janvi','2025-10-09 12:16:44','','0000-00-00 00:00:00'),(0,0,195,'2025-10-09','2026-01-08',208,0,'','','0000-00-00','manshi','2025-10-09 12:18:21','','0000-00-00 00:00:00'),(0,0,196,'2025-10-09','2026-01-08',209,0,'','','0000-00-00','shweta','2025-10-09 12:19:53','','0000-00-00 00:00:00'),(0,0,197,'2025-10-09','2026-01-08',210,0,'','','0000-00-00','urvashi','2025-10-09 12:22:14','','0000-00-00 00:00:00'),(0,0,198,'2025-10-09','2026-01-08',211,0,'','','0000-00-00','janvi','2025-10-09 12:30:44','','0000-00-00 00:00:00'),(0,0,199,'2025-10-09','2026-01-08',212,0,'','','0000-00-00','urvashi','2025-10-09 12:42:48','','0000-00-00 00:00:00'),(0,0,200,'2025-10-09','2026-01-08',213,0,'','','0000-00-00','janvi','2025-10-09 12:44:28','','0000-00-00 00:00:00'),(0,0,201,'2025-10-09','2026-01-08',214,0,'','','0000-00-00','shweta','2025-10-09 12:54:07','','0000-00-00 00:00:00'),(0,0,202,'2025-10-09','2026-01-08',215,0,'','','0000-00-00','janvi','2025-10-09 13:01:51','','0000-00-00 00:00:00'),(0,0,203,'2025-10-09','2026-01-08',216,0,'','','0000-00-00','janvi','2025-10-09 13:05:28','','0000-00-00 00:00:00'),(0,0,204,'2025-10-09','2026-01-08',217,0,'','','0000-00-00','shweta','2025-10-09 13:43:25','','0000-00-00 00:00:00'),(0,0,205,'2025-10-09','2026-01-08',218,0,'','','0000-00-00','shweta','2025-10-09 13:46:16','','0000-00-00 00:00:00'),(0,0,206,'2025-10-09','2026-01-08',219,0,'','','0000-00-00','shweta','2025-10-09 16:28:49','','0000-00-00 00:00:00'),(0,0,207,'2025-10-09','2026-01-08',220,0,'','','0000-00-00','shweta','2025-10-09 16:41:55','','0000-00-00 00:00:00'),(0,0,208,'2025-10-09','2026-01-08',221,0,'','','0000-00-00','shweta','2025-10-09 16:41:58','','0000-00-00 00:00:00'),(0,0,209,'2025-10-09','2026-01-08',222,0,'','','0000-00-00','shweta','2025-10-09 16:45:29','','0000-00-00 00:00:00'),(0,0,210,'2025-10-09','2026-01-08',223,0,'','','0000-00-00','shweta','2025-10-09 16:54:14','','0000-00-00 00:00:00'),(0,0,211,'2025-10-09','2026-01-08',224,0,'','','0000-00-00','shweta','2025-10-09 16:54:14','','0000-00-00 00:00:00'),(0,0,212,'2025-10-09','2026-01-08',225,0,'','','0000-00-00','shweta','2025-10-09 17:01:51','','0000-00-00 00:00:00'),(0,0,213,'2025-10-09','2026-01-08',226,0,'','','0000-00-00','shweta','2025-10-09 17:08:17','','0000-00-00 00:00:00'),(0,0,214,'2025-10-09','2026-01-08',227,0,'','','0000-00-00','shweta','2025-10-09 17:15:30','','0000-00-00 00:00:00'),(0,0,215,'2025-10-09','2026-01-08',228,0,'','','0000-00-00','shweta','2025-10-09 17:19:38','','0000-00-00 00:00:00'),(0,0,216,'2025-10-09','2026-01-08',229,0,'','','0000-00-00','shweta','2025-10-09 17:24:11','','0000-00-00 00:00:00'),(0,0,217,'2025-10-09','2026-01-08',230,0,'','','0000-00-00','janvi','2025-10-09 17:25:55','','0000-00-00 00:00:00'),(0,0,218,'2025-10-09','2026-01-08',231,0,'','','0000-00-00','janvi','2025-10-09 17:27:23','','0000-00-00 00:00:00'),(0,0,219,'2025-10-09','2026-01-08',232,0,'','','0000-00-00','shweta','2025-10-09 17:28:35','','0000-00-00 00:00:00'),(0,0,220,'2025-10-09','2026-01-08',233,0,'','','0000-00-00','shweta','2025-10-09 17:32:46','','0000-00-00 00:00:00'),(0,0,221,'2025-10-09','2026-01-08',234,0,'','','0000-00-00','janvi','2025-10-09 17:40:26','','0000-00-00 00:00:00'),(0,0,222,'2025-10-09','2026-01-08',235,0,'','','0000-00-00','shweta','2025-10-09 17:42:25','','0000-00-00 00:00:00'),(0,0,223,'2025-10-09','2026-01-08',236,0,'','','0000-00-00','shweta','2025-10-09 17:47:35','','0000-00-00 00:00:00'),(0,0,224,'2025-10-09','2026-01-08',237,0,'','','0000-00-00','janvi','2025-10-09 17:50:38','','0000-00-00 00:00:00'),(0,0,225,'2025-10-09','2026-01-08',238,0,'','','0000-00-00','shweta','2025-10-09 17:56:12','','0000-00-00 00:00:00'),(0,0,226,'2025-10-09','2026-01-08',240,0,'','','0000-00-00','urvashi','2025-10-09 18:00:42','','0000-00-00 00:00:00'),(0,0,227,'2025-10-09','2026-01-08',241,0,'','','0000-00-00','shweta','2025-10-09 18:01:13','','0000-00-00 00:00:00'),(0,0,228,'2025-10-09','2026-01-08',242,0,'','','0000-00-00','urvashi','2025-10-09 18:05:35','','0000-00-00 00:00:00'),(0,0,229,'2025-10-09','2026-01-08',243,0,'','','0000-00-00','shweta','2025-10-09 18:05:36','','0000-00-00 00:00:00'),(0,0,230,'2025-10-09','2026-01-08',244,0,'','','0000-00-00','shweta','2025-10-09 18:07:39','','0000-00-00 00:00:00'),(0,0,231,'2025-10-09','2026-01-08',245,0,'','','0000-00-00','urvashi','2025-10-09 18:11:01','','0000-00-00 00:00:00'),(0,0,232,'2025-10-09','2026-01-08',246,0,'','','0000-00-00','janvi','2025-10-09 18:11:07','','0000-00-00 00:00:00'),(0,0,233,'2025-10-09','2026-01-08',247,0,'','','0000-00-00','shweta','2025-10-09 18:12:48','','0000-00-00 00:00:00'),(0,0,234,'2025-10-09','2026-01-08',248,0,'','','0000-00-00','janvi','2025-10-09 18:17:55','','0000-00-00 00:00:00'),(0,0,235,'2025-10-09','2026-01-08',250,0,'','','0000-00-00','janvi','2025-10-09 18:23:47','','0000-00-00 00:00:00'),(0,0,236,'2025-10-09','2026-01-08',251,0,'','','0000-00-00','shweta','2025-10-09 18:24:04','','0000-00-00 00:00:00'),(0,0,237,'2025-10-09','2026-01-08',252,0,'','','0000-00-00','urvashi','2025-10-09 18:28:43','','0000-00-00 00:00:00'),(0,0,238,'2025-10-09','2026-01-08',253,0,'','','0000-00-00','urvashi','2025-10-09 18:32:31','','0000-00-00 00:00:00'),(0,0,239,'2025-10-09','2026-01-08',254,0,'','','0000-00-00','janvi','2025-10-09 18:33:40','','0000-00-00 00:00:00'),(0,0,240,'2025-10-09','2026-01-08',255,0,'','','0000-00-00','urvashi','2025-10-09 18:34:17','','0000-00-00 00:00:00'),(0,0,241,'2025-10-09','2026-01-08',256,0,'','','0000-00-00','urvashi','2025-10-09 18:48:14','','0000-00-00 00:00:00'),(0,0,242,'2025-10-09','2026-01-08',257,0,'','','0000-00-00','janvi','2025-10-09 18:48:35','','0000-00-00 00:00:00'),(0,0,243,'2025-10-09','2026-01-08',258,0,'','','0000-00-00','urvashi','2025-10-09 18:50:17','','0000-00-00 00:00:00'),(0,0,244,'2025-10-09','2026-01-08',259,0,'','','0000-00-00','urvashi','2025-10-09 18:55:51','','0000-00-00 00:00:00'),(0,0,245,'2025-10-09','2026-01-08',260,0,'','','0000-00-00','janvi','2025-10-09 19:00:50','','0000-00-00 00:00:00'),(0,0,246,'2025-10-09','2026-01-08',261,0,'','','0000-00-00','urvashi','2025-10-09 19:01:02','','0000-00-00 00:00:00'),(0,0,247,'2025-10-09','2026-01-08',262,0,'','','0000-00-00','janvi','2025-10-09 19:11:10','','0000-00-00 00:00:00'),(0,0,248,'2025-10-09','2026-01-08',263,0,'','','0000-00-00','urvashi','2025-10-09 19:11:18','','0000-00-00 00:00:00'),(0,0,249,'2025-10-09','2026-01-08',264,0,'','','0000-00-00','janvi','2025-10-09 19:12:39','','0000-00-00 00:00:00'),(0,0,250,'2025-10-09','2026-01-08',265,0,'','','0000-00-00','shweta','2025-10-09 19:12:52','','0000-00-00 00:00:00'),(0,0,251,'2025-10-09','2026-01-08',266,0,'','','0000-00-00','urvashi','2025-10-09 19:15:22','','0000-00-00 00:00:00'),(0,0,252,'2025-10-09','2026-01-08',267,0,'','','0000-00-00','shweta','2025-10-09 19:17:36','','0000-00-00 00:00:00'),(0,0,253,'2025-10-09','2026-01-08',268,0,'','','0000-00-00','janvi','2025-10-09 19:25:58','','0000-00-00 00:00:00'),(0,0,254,'2025-10-09','2026-01-08',269,0,'','','0000-00-00','urvashi','2025-10-09 19:27:23','','0000-00-00 00:00:00'),(0,0,255,'2025-10-09','2026-01-08',270,0,'','','0000-00-00','urvashi','2025-10-09 19:31:56','','0000-00-00 00:00:00'),(0,0,256,'2025-10-09','2026-01-08',271,0,'','','0000-00-00','urvashi','2025-10-09 19:34:32','','0000-00-00 00:00:00'),(0,0,257,'2025-10-09','2026-01-08',272,0,'','','0000-00-00','janvi','2025-10-09 19:52:29','','0000-00-00 00:00:00'),(0,0,258,'2025-10-10','2026-01-09',275,0,'','','0000-00-00','drashti','2025-10-10 09:03:07','','0000-00-00 00:00:00'),(0,0,259,'2025-10-10','2026-01-09',276,0,'','','0000-00-00','drashti','2025-10-10 09:06:33','','0000-00-00 00:00:00'),(0,0,260,'2025-10-10','2026-01-09',37,0,'','','0000-00-00','priyanshi','2025-10-10 09:07:33','','0000-00-00 00:00:00'),(0,0,261,'2025-10-10','2026-01-09',277,0,'','','0000-00-00','priyanshi','2025-10-10 09:09:15','','0000-00-00 00:00:00'),(0,0,262,'2025-10-10','2026-01-09',278,0,'','','0000-00-00','priyanshi','2025-10-10 09:15:50','','0000-00-00 00:00:00'),(0,0,263,'2025-10-10','2026-01-09',279,0,'','','0000-00-00','priyanshi','2025-10-10 09:25:42','','0000-00-00 00:00:00'),(0,0,264,'2025-10-10','2026-01-09',280,0,'','','0000-00-00','priyanshi','2025-10-10 09:56:01','','0000-00-00 00:00:00'),(0,0,265,'2025-10-10','2026-01-09',281,0,'','','0000-00-00','drashti','2025-10-10 10:00:54','','0000-00-00 00:00:00'),(0,0,266,'2025-10-10','2026-01-09',282,0,'','','0000-00-00','reception','2025-10-10 10:08:06','','0000-00-00 00:00:00'),(0,0,267,'2025-10-10','2026-01-09',283,0,'','','0000-00-00','reception','2025-10-10 10:11:08','','0000-00-00 00:00:00'),(0,0,268,'2025-10-10','2026-01-09',284,0,'','','0000-00-00','reception','2025-10-10 10:14:43','','0000-00-00 00:00:00'),(0,0,269,'2025-10-10','2026-01-09',285,0,'','','0000-00-00','reception','2025-10-10 10:18:43','','0000-00-00 00:00:00'),(0,0,270,'2025-10-10','2026-01-09',286,0,'','','0000-00-00','janvi','2025-10-10 10:27:30','','0000-00-00 00:00:00'),(0,0,271,'2025-10-10','2026-01-09',287,0,'','','0000-00-00','drashti','2025-10-10 10:28:21','','0000-00-00 00:00:00'),(0,0,272,'2025-10-10','2026-01-09',288,0,'','','0000-00-00','reception','2025-10-10 10:36:05','','0000-00-00 00:00:00'),(0,0,273,'2025-10-10','2026-01-09',289,0,'','','0000-00-00','reception','2025-10-10 10:40:45','','0000-00-00 00:00:00'),(0,0,274,'2025-10-10','2026-01-09',290,0,'','','0000-00-00','reception','2025-10-10 10:48:15','','0000-00-00 00:00:00'),(0,0,275,'2025-10-10','2026-01-09',291,0,'','','0000-00-00','janvi','2025-10-10 10:55:29','','0000-00-00 00:00:00'),(0,0,276,'2025-10-10','2026-01-09',292,0,'','','0000-00-00','drashti','2025-10-10 10:58:02','','0000-00-00 00:00:00'),(0,0,277,'2025-10-10','2026-01-09',293,0,'','','0000-00-00','reception','2025-10-10 11:01:32','','0000-00-00 00:00:00'),(0,0,278,'2025-10-10','2026-01-09',294,0,'','','0000-00-00','reception','2025-10-10 11:03:51','','0000-00-00 00:00:00'),(0,0,279,'2025-10-10','2026-01-09',295,0,'','','0000-00-00','janvi','2025-10-10 11:05:50','','0000-00-00 00:00:00'),(0,0,280,'2025-10-10','2026-01-09',296,0,'','','0000-00-00','drashti','2025-10-10 11:13:33','','0000-00-00 00:00:00'),(0,0,281,'2025-10-10','2026-01-09',297,0,'','','0000-00-00','janvi','2025-10-10 11:13:40','','0000-00-00 00:00:00'),(0,0,282,'2025-10-10','2026-01-09',298,0,'','','0000-00-00','manshi','2025-10-10 11:15:15','','0000-00-00 00:00:00'),(0,0,283,'2025-10-10','2026-01-09',299,0,'','','0000-00-00','reception','2025-10-10 11:15:23','','0000-00-00 00:00:00'),(0,0,284,'2025-10-10','2026-01-09',300,0,'','','0000-00-00','reception','2025-10-10 11:17:57','','0000-00-00 00:00:00'),(0,0,285,'2025-10-10','2026-01-09',301,0,'','','0000-00-00','drashti','2025-10-10 11:18:33','','0000-00-00 00:00:00'),(0,0,286,'2025-10-10','2026-01-09',302,0,'','','0000-00-00','manshi','2025-10-10 11:20:35','','0000-00-00 00:00:00'),(0,0,287,'2025-10-10','2026-01-09',303,0,'','','0000-00-00','drashti','2025-10-10 11:22:17','','0000-00-00 00:00:00'),(0,0,288,'2025-10-10','2026-01-09',304,0,'','','0000-00-00','reception','2025-10-10 11:22:25','','0000-00-00 00:00:00'),(0,0,289,'2025-10-10','2026-01-09',305,0,'','','0000-00-00','reception','2025-10-10 11:25:14','','0000-00-00 00:00:00'),(0,0,290,'2025-10-10','2026-01-09',306,0,'','','0000-00-00','drashti','2025-10-10 11:25:37','','0000-00-00 00:00:00'),(0,0,291,'2025-10-10','2026-01-09',307,0,'','','0000-00-00','reception','2025-10-10 11:27:06','','0000-00-00 00:00:00'),(0,0,292,'2025-10-10','2026-01-09',308,0,'','','0000-00-00','reception','2025-10-10 11:34:46','','0000-00-00 00:00:00'),(0,0,293,'2025-10-10','2026-01-09',309,0,'','','0000-00-00','drashti','2025-10-10 11:38:38','','0000-00-00 00:00:00'),(0,0,294,'2025-10-10','2026-01-09',310,0,'','','0000-00-00','reception','2025-10-10 11:44:31','','0000-00-00 00:00:00'),(0,0,295,'2025-10-10','2026-01-09',311,0,'','','0000-00-00','drashti','2025-10-10 11:50:24','','0000-00-00 00:00:00'),(0,0,296,'2025-10-10','2026-01-09',312,0,'','','0000-00-00','janvi','2025-10-10 11:57:54','','0000-00-00 00:00:00'),(0,0,297,'2025-10-10','2026-01-09',313,0,'','','0000-00-00','reception','2025-10-10 12:02:32','','0000-00-00 00:00:00'),(0,0,298,'2025-10-10','2026-01-09',314,0,'','','0000-00-00','reception','2025-10-10 12:04:37','','0000-00-00 00:00:00'),(0,0,299,'2025-10-10','2026-01-09',315,0,'','','0000-00-00','drashti','2025-10-10 12:07:53','','0000-00-00 00:00:00'),(0,0,300,'2025-10-10','2026-01-09',316,0,'','','0000-00-00','reception','2025-10-10 12:08:05','','0000-00-00 00:00:00'),(0,0,301,'2025-10-10','2026-01-09',317,0,'','','0000-00-00','manshi','2025-10-10 12:09:17','','0000-00-00 00:00:00'),(0,0,302,'2025-10-10','2026-01-09',318,0,'','','0000-00-00','manshi','2025-10-10 12:11:43','','0000-00-00 00:00:00'),(0,0,303,'2025-10-10','2026-01-09',319,0,'','','0000-00-00','janvi','2025-10-10 12:26:40','','0000-00-00 00:00:00'),(0,0,304,'2025-10-10','2026-01-09',320,0,'','','0000-00-00','drashti','2025-10-10 12:44:13','','0000-00-00 00:00:00'),(0,0,305,'2025-10-10','2026-01-09',321,0,'','','0000-00-00','drashti','2025-10-10 12:56:12','','0000-00-00 00:00:00'),(0,0,306,'2025-10-10','2026-01-09',322,0,'','','0000-00-00','janvi','2025-10-10 12:57:41','','0000-00-00 00:00:00'),(0,0,307,'2025-10-10','2026-01-09',323,0,'','','0000-00-00','drashti','2025-10-10 13:08:54','','0000-00-00 00:00:00'),(0,0,308,'2025-10-10','2026-01-09',324,0,'','','0000-00-00','reception','2025-10-10 13:09:48','','0000-00-00 00:00:00'),(0,0,309,'2025-10-10','2026-01-09',325,0,'','','0000-00-00','reception','2025-10-10 13:16:46','','0000-00-00 00:00:00'),(0,0,310,'2025-10-10','2026-01-09',326,0,'','','0000-00-00','janvi','2025-10-10 13:20:18','','0000-00-00 00:00:00'),(0,0,311,'2025-10-10','2026-01-09',327,0,'','','0000-00-00','manshi','2025-10-10 13:36:42','','0000-00-00 00:00:00'),(0,0,312,'2025-10-10','2026-01-09',328,0,'','','0000-00-00','manshi','2025-10-10 13:47:31','','0000-00-00 00:00:00'),(0,0,313,'2025-10-10','2026-01-09',329,0,'','','0000-00-00','drashti','2025-10-10 14:00:51','','0000-00-00 00:00:00'),(0,0,314,'2025-10-10','2026-01-09',330,0,'','','0000-00-00','priyanshi','2025-10-10 16:00:16','','0000-00-00 00:00:00'),(0,0,315,'2025-10-10','2026-01-09',331,0,'','','0000-00-00','priyanshi','2025-10-10 16:21:28','','0000-00-00 00:00:00'),(0,0,316,'2025-10-10','2026-01-09',332,0,'','','0000-00-00','reception','2025-10-10 16:34:29','','0000-00-00 00:00:00'),(0,0,317,'2025-10-10','2026-01-09',333,0,'','','0000-00-00','drashti','2025-10-10 16:36:20','','0000-00-00 00:00:00'),(0,0,318,'2025-10-10','2026-01-09',334,0,'','','0000-00-00','janvi','2025-10-10 16:36:29','','0000-00-00 00:00:00'),(0,0,319,'2025-10-10','2026-01-09',335,0,'','','0000-00-00','reception','2025-10-10 16:37:03','','0000-00-00 00:00:00'),(0,0,320,'2025-10-10','2026-01-09',336,0,'','','0000-00-00','reception','2025-10-10 16:39:54','','0000-00-00 00:00:00'),(0,0,321,'2025-10-10','2026-01-09',337,0,'','','0000-00-00','drashti','2025-10-10 16:40:38','','0000-00-00 00:00:00'),(0,0,322,'2025-10-10','2026-01-09',338,0,'','','0000-00-00','reception','2025-10-10 16:45:00','','0000-00-00 00:00:00'),(0,0,323,'2025-10-10','2026-01-09',339,0,'','','0000-00-00','reception','2025-10-10 16:50:17','','0000-00-00 00:00:00'),(0,0,324,'2025-10-10','2026-01-09',340,0,'','','0000-00-00','drashti','2025-10-10 16:50:49','','0000-00-00 00:00:00'),(0,0,325,'2025-10-10','2026-01-09',341,0,'','','0000-00-00','reception','2025-10-10 16:54:43','','0000-00-00 00:00:00'),(0,0,326,'2025-10-10','2026-01-09',342,0,'','','0000-00-00','reception','2025-10-10 16:59:51','','0000-00-00 00:00:00'),(0,0,327,'2025-10-10','2026-01-09',343,0,'','','0000-00-00','manshi','2025-10-10 17:02:18','','0000-00-00 00:00:00'),(0,0,328,'2025-10-10','2026-01-09',344,0,'','','0000-00-00','reception','2025-10-10 17:04:32','','0000-00-00 00:00:00'),(0,0,329,'2025-10-10','2026-01-09',345,0,'','','0000-00-00','manshi','2025-10-10 17:05:50','','0000-00-00 00:00:00'),(0,0,330,'2025-10-10','2026-01-09',346,0,'','','0000-00-00','reception','2025-10-10 17:10:07','','0000-00-00 00:00:00'),(0,0,331,'2025-10-10','2026-01-09',347,0,'','','0000-00-00','reception','2025-10-10 17:11:47','','0000-00-00 00:00:00'),(0,0,332,'2025-10-10','2026-01-09',348,0,'','','0000-00-00','drashti','2025-10-10 17:24:38','','0000-00-00 00:00:00'),(0,0,333,'2025-10-10','2026-01-09',349,0,'','','0000-00-00','reception','2025-10-10 17:25:52','','0000-00-00 00:00:00'),(0,0,334,'2025-10-10','2026-01-09',350,0,'','','0000-00-00','janvi','2025-10-10 17:32:53','','0000-00-00 00:00:00'),(0,0,335,'2025-10-10','2026-01-09',351,0,'','','0000-00-00','reception','2025-10-10 17:33:03','','0000-00-00 00:00:00'),(0,0,336,'2025-10-10','2026-01-09',352,0,'','','0000-00-00','janvi','2025-10-10 17:34:38','','0000-00-00 00:00:00'),(0,0,337,'2025-10-10','2026-01-09',353,0,'','','0000-00-00','manshi','2025-10-10 17:38:18','','0000-00-00 00:00:00'),(0,0,338,'2025-10-10','2026-01-09',354,0,'','','0000-00-00','reception','2025-10-10 17:38:33','','0000-00-00 00:00:00'),(0,0,339,'2025-10-10','2026-01-09',355,0,'','','0000-00-00','manshi','2025-10-10 17:38:35','','0000-00-00 00:00:00'),(0,0,340,'2025-10-10','2026-01-09',356,0,'','','0000-00-00','reception','2025-10-10 17:41:00','','0000-00-00 00:00:00'),(0,0,341,'2025-10-10','2026-01-09',357,0,'','','0000-00-00','reception','2025-10-10 17:46:38','','0000-00-00 00:00:00'),(0,0,342,'2025-10-10','2026-01-09',358,0,'','','0000-00-00','janvi','2025-10-10 17:47:12','','0000-00-00 00:00:00'),(0,0,343,'2025-10-10','2026-01-09',359,0,'','','0000-00-00','janvi','2025-10-10 17:48:03','','0000-00-00 00:00:00'),(0,0,344,'2025-10-10','2026-01-09',360,0,'','','0000-00-00','reception','2025-10-10 17:50:08','','0000-00-00 00:00:00'),(0,0,345,'2025-10-10','2026-01-09',361,0,'','','0000-00-00','janvi','2025-10-10 17:51:02','','0000-00-00 00:00:00'),(0,0,346,'2025-10-10','2026-01-09',362,0,'','','0000-00-00','drashti','2025-10-10 17:54:19','','0000-00-00 00:00:00'),(0,0,347,'2025-10-10','2026-01-09',363,0,'','','0000-00-00','reception','2025-10-10 17:54:48','','0000-00-00 00:00:00'),(0,0,348,'2025-10-10','2026-01-09',364,0,'','','0000-00-00','janvi','2025-10-10 17:55:30','','0000-00-00 00:00:00'),(0,0,349,'2025-10-10','2026-01-09',365,0,'','','0000-00-00','drashti','2025-10-10 18:01:06','','0000-00-00 00:00:00'),(0,0,350,'2025-10-10','2026-01-09',366,0,'','','0000-00-00','reception','2025-10-10 18:03:49','','0000-00-00 00:00:00'),(0,0,351,'2025-10-10','2026-01-09',367,0,'','','0000-00-00','reception','2025-10-10 18:09:55','','0000-00-00 00:00:00'),(0,0,352,'2025-10-10','2026-01-09',368,0,'','','0000-00-00','janvi','2025-10-10 18:10:40','','0000-00-00 00:00:00'),(0,0,353,'2025-10-10','2026-01-09',369,0,'','','0000-00-00','janvi','2025-10-10 18:14:07','','0000-00-00 00:00:00'),(0,0,354,'2025-10-10','2026-01-09',370,0,'','','0000-00-00','manshi','2025-10-10 18:19:06','','0000-00-00 00:00:00'),(0,0,355,'2025-10-10','2026-01-09',371,0,'','','0000-00-00','drashti','2025-10-10 18:19:47','','0000-00-00 00:00:00'),(0,0,356,'2025-10-10','2026-01-09',372,0,'','','0000-00-00','janvi','2025-10-10 18:21:07','','0000-00-00 00:00:00'),(0,0,357,'2025-10-10','2026-01-09',373,0,'','','0000-00-00','reception','2025-10-10 18:22:55','','0000-00-00 00:00:00'),(0,0,358,'2025-10-10','2026-01-09',374,0,'','','0000-00-00','drashti','2025-10-10 18:24:04','','0000-00-00 00:00:00'),(0,0,359,'2025-10-10','2026-01-09',375,0,'','','0000-00-00','drashti','2025-10-10 18:31:22','','0000-00-00 00:00:00'),(0,0,360,'2025-10-10','2026-01-09',376,0,'','','0000-00-00','reception','2025-10-10 18:32:04','','0000-00-00 00:00:00'),(0,0,361,'2025-10-10','2026-01-09',377,0,'','','0000-00-00','drashti','2025-10-10 18:33:29','','0000-00-00 00:00:00'),(0,0,362,'2025-10-10','2026-01-09',378,0,'','','0000-00-00','reception','2025-10-10 18:36:08','','0000-00-00 00:00:00'),(0,0,363,'2025-10-10','2026-01-09',379,0,'','','0000-00-00','reception','2025-10-10 18:40:25','','0000-00-00 00:00:00'),(0,0,364,'2025-10-10','2026-01-09',380,0,'','','0000-00-00','janvi','2025-10-10 18:55:06','','0000-00-00 00:00:00'),(0,0,365,'2025-10-10','2026-01-09',381,0,'','','0000-00-00','drashti','2025-10-10 19:04:54','','0000-00-00 00:00:00'),(0,0,366,'2025-10-10','2026-01-09',382,0,'','','0000-00-00','drashti','2025-10-10 19:08:34','','0000-00-00 00:00:00'),(0,0,367,'2025-10-10','2026-01-09',383,0,'','','0000-00-00','janvi','2025-10-10 19:09:25','','0000-00-00 00:00:00'),(0,0,368,'2025-10-10','2026-01-09',384,0,'','','0000-00-00','drashti','2025-10-10 19:12:04','','0000-00-00 00:00:00'),(0,0,369,'2025-10-10','2026-01-09',386,0,'','','0000-00-00','manshi','2025-10-10 19:23:00','','0000-00-00 00:00:00'),(0,0,370,'2025-10-10','2026-01-09',387,0,'','','0000-00-00','drashti','2025-10-10 19:27:52','','0000-00-00 00:00:00'),(0,0,371,'2025-10-10','2026-01-09',389,0,'','','0000-00-00','drashti','2025-10-10 19:44:32','','0000-00-00 00:00:00'),(0,0,372,'2025-10-10','2026-01-09',390,0,'','','0000-00-00','drashti','2025-10-10 19:48:10','','0000-00-00 00:00:00'),(0,0,373,'2025-10-10','2026-01-09',391,0,'','','0000-00-00','drashti','2025-10-10 20:01:29','','0000-00-00 00:00:00'),(0,0,374,'2025-10-11','2026-01-10',395,0,'','','0000-00-00','priyanshi','2025-10-11 08:57:27','','0000-00-00 00:00:00'),(0,0,375,'2025-10-11','2026-01-10',396,0,'','','0000-00-00','reception','2025-10-11 09:17:10','','0000-00-00 00:00:00'),(0,0,376,'2025-10-11','2026-01-10',397,0,'','','0000-00-00','priyanshi','2025-10-11 09:17:31','','0000-00-00 00:00:00'),(0,0,377,'2025-10-11','2026-01-10',398,0,'','','0000-00-00','priyanshi','2025-10-11 09:29:53','','0000-00-00 00:00:00'),(0,0,378,'2025-10-11','2026-01-10',399,0,'','','0000-00-00','reception','2025-10-11 09:35:48','','0000-00-00 00:00:00'),(0,0,379,'2025-10-11','2026-01-10',400,0,'','','0000-00-00','janvi','2025-10-11 09:36:43','','0000-00-00 00:00:00'),(0,0,380,'2025-10-11','2026-01-10',401,0,'','','0000-00-00','drashti','2025-10-11 09:40:30','','0000-00-00 00:00:00'),(0,0,381,'2025-10-11','2026-01-10',402,0,'','','0000-00-00','reception','2025-10-11 09:47:26','','0000-00-00 00:00:00'),(0,0,382,'2025-10-11','2026-01-10',404,0,'','','0000-00-00','janvi','2025-10-11 10:09:15','','0000-00-00 00:00:00'),(0,0,383,'2025-10-11','2026-01-10',405,0,'','','0000-00-00','manshi','2025-10-11 10:09:19','','0000-00-00 00:00:00'),(0,0,384,'2025-10-11','2026-01-10',406,0,'','','0000-00-00','drashti','2025-10-11 10:13:19','','0000-00-00 00:00:00'),(0,0,385,'2025-10-11','2026-01-10',407,0,'','','0000-00-00','drashti','2025-10-11 10:24:00','','0000-00-00 00:00:00'),(0,0,386,'2025-10-11','2026-01-10',408,0,'','','0000-00-00','janvi','2025-10-11 10:26:15','','0000-00-00 00:00:00'),(0,0,387,'2025-10-11','2026-01-10',409,0,'','','0000-00-00','reception','2025-10-11 10:28:25','','0000-00-00 00:00:00'),(0,0,388,'2025-10-11','2026-01-10',410,0,'','','0000-00-00','reception','2025-10-11 10:31:05','','0000-00-00 00:00:00'),(0,0,389,'2025-10-11','2026-01-10',411,0,'','','0000-00-00','drashti','2025-10-11 10:32:47','','0000-00-00 00:00:00'),(0,0,390,'2025-10-11','2026-01-10',412,0,'','','0000-00-00','reception','2025-10-11 10:36:43','','0000-00-00 00:00:00'),(0,0,391,'2025-10-11','2026-01-10',413,0,'','','0000-00-00','reception','2025-10-11 10:43:54','','0000-00-00 00:00:00'),(0,0,392,'2025-10-11','2026-01-10',414,0,'','','0000-00-00','drashti','2025-10-11 10:43:57','','0000-00-00 00:00:00'),(0,0,393,'2025-10-11','2026-01-10',415,0,'','','0000-00-00','reception','2025-10-11 10:46:33','','0000-00-00 00:00:00'),(0,0,394,'2025-10-11','2026-01-10',416,0,'','','0000-00-00','reception','2025-10-11 11:00:12','','0000-00-00 00:00:00'),(0,0,395,'2025-10-11','2026-01-10',417,0,'','','0000-00-00','drashti','2025-10-11 11:01:40','','0000-00-00 00:00:00'),(0,0,396,'2025-10-11','2026-01-10',418,0,'','','0000-00-00','drashti','2025-10-11 11:04:21','','0000-00-00 00:00:00'),(0,0,397,'2025-10-11','2026-01-10',419,0,'','','0000-00-00','reception','2025-10-11 11:13:35','','0000-00-00 00:00:00'),(0,0,398,'2025-10-11','2026-01-10',420,0,'','','0000-00-00','janvi','2025-10-11 11:14:30','','0000-00-00 00:00:00'),(0,0,399,'2025-10-11','2026-01-10',421,0,'','','0000-00-00','drashti','2025-10-11 11:15:49','','0000-00-00 00:00:00'),(0,0,400,'2025-10-11','2026-01-10',422,0,'','','0000-00-00','janvi','2025-10-11 11:16:45','','0000-00-00 00:00:00'),(0,0,401,'2025-10-11','2026-01-10',423,0,'','','0000-00-00','reception','2025-10-11 11:16:53','','0000-00-00 00:00:00'),(0,0,402,'2025-10-11','2026-01-10',424,0,'','','0000-00-00','reception','2025-10-11 11:17:47','','0000-00-00 00:00:00'),(0,0,403,'2025-10-11','2026-01-10',425,0,'','','0000-00-00','janvi','2025-10-11 11:18:42','','0000-00-00 00:00:00'),(0,0,404,'2025-10-11','2026-01-10',426,0,'','','0000-00-00','reception','2025-10-11 11:19:31','','0000-00-00 00:00:00'),(0,0,405,'2025-10-11','2026-01-10',427,0,'','','0000-00-00','drashti','2025-10-11 11:19:38','','0000-00-00 00:00:00'),(0,0,406,'2025-10-11','2026-01-10',428,0,'','','0000-00-00','janvi','2025-10-11 11:22:31','','0000-00-00 00:00:00'),(0,0,407,'2025-10-11','2026-01-10',429,0,'','','0000-00-00','drashti','2025-10-11 11:23:23','','0000-00-00 00:00:00'),(0,0,408,'2025-10-11','2026-01-10',430,0,'','','0000-00-00','manshi','2025-10-11 11:25:23','','0000-00-00 00:00:00'),(0,0,409,'2025-10-11','2026-01-10',431,0,'','','0000-00-00','janvi','2025-10-11 11:25:32','','0000-00-00 00:00:00'),(0,0,410,'2025-10-11','2026-01-10',432,0,'','','0000-00-00','drashti','2025-10-11 11:30:35','','0000-00-00 00:00:00'),(0,0,411,'2025-10-11','2026-01-10',433,0,'','','0000-00-00','drashti','2025-10-11 11:35:06','','0000-00-00 00:00:00'),(0,0,412,'2025-10-11','2026-01-10',434,0,'','','0000-00-00','janvi','2025-10-11 11:35:43','','0000-00-00 00:00:00'),(0,0,413,'2025-10-11','2026-01-10',435,0,'','','0000-00-00','janvi','2025-10-11 11:37:26','','0000-00-00 00:00:00'),(0,0,414,'2025-10-11','2026-01-10',436,0,'','','0000-00-00','manshi','2025-10-11 11:39:57','','0000-00-00 00:00:00'),(0,0,415,'2025-10-11','2026-01-10',437,0,'','','0000-00-00','drashti','2025-10-11 11:40:47','','0000-00-00 00:00:00'),(0,0,416,'2025-10-11','2026-01-10',438,0,'','','0000-00-00','reception','2025-10-11 11:44:46','','0000-00-00 00:00:00'),(0,0,417,'2025-10-11','2026-01-10',439,0,'','','0000-00-00','reception','2025-10-11 11:47:12','','0000-00-00 00:00:00'),(0,0,418,'2025-10-11','2026-01-10',440,0,'','','0000-00-00','drashti','2025-10-11 11:47:54','','0000-00-00 00:00:00'),(0,0,419,'2025-10-11','2026-01-10',441,0,'','','0000-00-00','drashti','2025-10-11 11:52:13','','0000-00-00 00:00:00'),(0,0,420,'2025-10-11','2026-01-10',442,0,'','','0000-00-00','drashti','2025-10-11 11:56:45','','0000-00-00 00:00:00'),(0,0,421,'2025-10-11','2026-01-10',443,0,'','','0000-00-00','reception','2025-10-11 12:05:06','','0000-00-00 00:00:00'),(0,0,422,'2025-10-11','2026-01-10',444,0,'','','0000-00-00','manshi','2025-10-11 12:11:02','','0000-00-00 00:00:00'),(0,0,423,'2025-10-11','2026-01-10',445,0,'','','0000-00-00','drashti','2025-10-11 12:13:13','','0000-00-00 00:00:00'),(0,0,424,'2025-10-11','2026-01-10',446,0,'','','0000-00-00','reception','2025-10-11 12:19:59','','0000-00-00 00:00:00'),(0,0,425,'2025-10-11','2026-01-10',447,0,'','','0000-00-00','janvi','2025-10-11 12:21:24','','0000-00-00 00:00:00'),(0,0,426,'2025-10-11','2026-01-10',448,0,'','','0000-00-00','drashti','2025-10-11 12:42:29','','0000-00-00 00:00:00'),(0,0,427,'2025-10-11','2026-01-10',449,0,'','','0000-00-00','drashti','2025-10-11 12:50:38','','0000-00-00 00:00:00'),(0,0,428,'2025-10-11','2026-01-10',450,0,'','','0000-00-00','janvi','2025-10-11 12:56:13','','0000-00-00 00:00:00'),(0,0,429,'2025-10-11','2026-01-10',451,0,'','','0000-00-00','manshi','2025-10-11 13:10:55','','0000-00-00 00:00:00'),(0,0,430,'2025-10-11','2026-01-10',453,0,'','','0000-00-00','drashti','2025-10-11 17:42:29','','0000-00-00 00:00:00'),(0,0,431,'2025-10-11','2026-01-10',454,0,'','','0000-00-00','reception','2025-10-11 17:51:15','','0000-00-00 00:00:00'),(0,0,432,'2025-10-11','2026-01-10',455,0,'','','0000-00-00','urvashi','2025-10-11 17:53:33','','0000-00-00 00:00:00'),(0,0,433,'2025-10-11','2026-01-10',456,0,'','','0000-00-00','manshi','2025-10-11 18:08:11','','0000-00-00 00:00:00'),(0,0,434,'2025-10-11','2026-01-10',457,0,'','','0000-00-00','manshi','2025-10-11 18:16:19','','0000-00-00 00:00:00'),(0,0,435,'2025-10-11','2026-01-10',458,0,'','','0000-00-00','manshi','2025-10-11 18:21:19','','0000-00-00 00:00:00'),(0,0,436,'2025-10-11','2026-01-10',459,0,'','','0000-00-00','drashti','2025-10-11 18:24:08','','0000-00-00 00:00:00'),(0,0,437,'2025-10-11','2026-01-10',460,0,'','','0000-00-00','drashti','2025-10-11 18:36:56','','0000-00-00 00:00:00'),(0,0,438,'2025-10-11','2026-01-10',461,0,'','','0000-00-00','urvashi','2025-10-11 18:39:51','','0000-00-00 00:00:00'),(0,0,439,'2025-10-11','2026-01-10',462,0,'','','0000-00-00','drashti','2025-10-11 18:45:46','','0000-00-00 00:00:00'),(0,0,440,'2025-10-11','2026-01-10',463,0,'','','0000-00-00','drashti','2025-10-11 19:14:50','','0000-00-00 00:00:00'),(0,0,441,'2025-10-12','2026-01-11',466,0,'','','0000-00-00','janvi','2025-10-12 09:21:13','','0000-00-00 00:00:00'),(0,0,442,'2025-10-13','2026-01-12',468,0,'','','0000-00-00','shweta','2025-10-13 09:11:39','','0000-00-00 00:00:00'),(0,0,443,'2025-10-13','2026-01-12',469,0,'','','0000-00-00','shweta','2025-10-13 09:14:44','','0000-00-00 00:00:00'),(0,0,444,'2025-10-13','2026-01-12',470,0,'','','0000-00-00','shweta','2025-10-13 09:16:11','','0000-00-00 00:00:00'),(0,0,445,'2025-10-13','2026-01-12',471,0,'','','0000-00-00','janvi','2025-10-13 09:18:42','','0000-00-00 00:00:00'),(0,0,446,'2025-10-13','2026-01-12',472,0,'','','0000-00-00','janvi','2025-10-13 09:18:52','','0000-00-00 00:00:00'),(0,0,447,'2025-10-13','2026-01-12',473,0,'','','0000-00-00','reception','2025-10-13 09:20:30','','0000-00-00 00:00:00'),(0,0,448,'2025-10-13','2026-01-12',474,0,'','','0000-00-00','shweta','2025-10-13 09:23:57','','0000-00-00 00:00:00'),(0,0,449,'2025-10-13','2026-01-12',475,0,'','','0000-00-00','janvi','2025-10-13 09:24:41','','0000-00-00 00:00:00'),(0,0,450,'2025-10-13','2026-01-12',476,0,'','','0000-00-00','reception','2025-10-13 09:24:44','','0000-00-00 00:00:00'),(0,0,451,'2025-10-13','2026-01-12',477,0,'','','0000-00-00','shweta','2025-10-13 09:26:05','','0000-00-00 00:00:00'),(0,0,452,'2025-10-13','2026-01-12',478,0,'','','0000-00-00','janvi','2025-10-13 09:27:32','','0000-00-00 00:00:00'),(0,0,453,'2025-10-13','2026-01-12',479,0,'','','0000-00-00','reception','2025-10-13 09:28:58','','0000-00-00 00:00:00'),(0,0,454,'2025-10-13','2026-01-12',480,0,'','','0000-00-00','reception','2025-10-13 09:38:06','','0000-00-00 00:00:00'),(0,0,455,'2025-10-13','2026-01-12',481,0,'','','0000-00-00','reception','2025-10-13 09:46:39','','0000-00-00 00:00:00'),(0,0,456,'2025-10-13','2026-01-12',482,0,'','','0000-00-00','reception','2025-10-13 09:53:29','','0000-00-00 00:00:00'),(0,0,457,'2025-10-13','2026-01-12',483,0,'','','0000-00-00','janvi','2025-10-13 09:54:12','','0000-00-00 00:00:00'),(0,0,458,'2025-10-13','2026-01-12',484,0,'','','0000-00-00','reception','2025-10-13 09:57:23','','0000-00-00 00:00:00'),(0,0,459,'2025-10-13','2026-01-12',485,0,'','','0000-00-00','reception','2025-10-13 10:01:07','','0000-00-00 00:00:00'),(0,0,460,'2025-10-13','2026-01-12',486,0,'','','0000-00-00','reception','2025-10-13 10:05:44','','0000-00-00 00:00:00'),(0,0,461,'2025-10-13','2026-01-12',487,0,'','','0000-00-00','reception','2025-10-13 10:10:13','','0000-00-00 00:00:00'),(0,0,462,'2025-10-13','2026-01-12',488,0,'','','0000-00-00','reception','2025-10-13 10:13:44','','0000-00-00 00:00:00'),(0,0,463,'2025-10-13','2026-01-12',489,0,'','','0000-00-00','shweta','2025-10-13 10:13:48','','0000-00-00 00:00:00'),(0,0,464,'2025-10-13','2026-01-12',490,0,'','','0000-00-00','manshi','2025-10-13 10:14:45','','0000-00-00 00:00:00'),(0,0,465,'2025-10-13','2026-01-12',491,0,'','','0000-00-00','reception','2025-10-13 10:15:20','','0000-00-00 00:00:00'),(0,0,466,'2025-10-13','2026-01-12',492,0,'','','0000-00-00','janvi','2025-10-13 10:16:30','','0000-00-00 00:00:00'),(0,0,467,'2025-10-13','2026-01-12',493,0,'','','0000-00-00','shweta','2025-10-13 10:16:45','','0000-00-00 00:00:00'),(0,0,468,'2025-10-13','2026-01-12',494,0,'','','0000-00-00','manshi','2025-10-13 10:27:29','','0000-00-00 00:00:00'),(0,0,469,'2025-10-13','2026-01-12',495,0,'','','0000-00-00','reception','2025-10-13 10:27:32','','0000-00-00 00:00:00'),(0,0,470,'2025-10-13','2026-01-12',496,0,'','','0000-00-00','drashti','2025-10-13 10:30:25','','0000-00-00 00:00:00'),(0,0,471,'2025-10-13','2026-01-12',497,0,'','','0000-00-00','reception','2025-10-13 10:32:13','','0000-00-00 00:00:00'),(0,0,472,'2025-10-13','2026-01-12',498,0,'','','0000-00-00','drashti','2025-10-13 10:33:18','','0000-00-00 00:00:00'),(0,0,473,'2025-10-13','2026-01-12',499,0,'','','0000-00-00','reception','2025-10-13 10:38:44','','0000-00-00 00:00:00'),(0,0,474,'2025-10-13','2026-01-12',500,0,'','','0000-00-00','drashti','2025-10-13 10:51:55','','0000-00-00 00:00:00'),(0,0,475,'2025-10-13','2026-01-12',501,0,'','','0000-00-00','reception','2025-10-13 10:58:23','','0000-00-00 00:00:00'),(0,0,476,'2025-10-13','2026-01-12',502,0,'','','0000-00-00','janvi','2025-10-13 10:58:58','','0000-00-00 00:00:00'),(0,0,477,'2025-10-13','2026-01-12',503,0,'','','0000-00-00','drashti','2025-10-13 10:59:55','','0000-00-00 00:00:00'),(0,0,478,'2025-10-13','2026-01-12',504,0,'','','0000-00-00','manshi','2025-10-13 11:00:45','','0000-00-00 00:00:00'),(0,0,479,'2025-10-13','2026-01-12',505,0,'','','0000-00-00','manshi','2025-10-13 11:04:08','','0000-00-00 00:00:00'),(0,0,480,'2025-10-13','2026-01-12',506,0,'','','0000-00-00','janvi','2025-10-13 11:06:53','','0000-00-00 00:00:00'),(0,0,481,'2025-10-13','2026-01-12',507,0,'','','0000-00-00','drashti','2025-10-13 11:13:30','','0000-00-00 00:00:00'),(0,0,482,'2025-10-13','2026-01-12',508,0,'','','0000-00-00','janvi','2025-10-13 11:14:22','','0000-00-00 00:00:00'),(0,0,483,'2025-10-13','2026-01-12',509,0,'','','0000-00-00','reception','2025-10-13 11:15:13','','0000-00-00 00:00:00'),(0,0,484,'2025-10-13','2026-01-12',510,0,'','','0000-00-00','manshi','2025-10-13 11:15:52','','0000-00-00 00:00:00'),(0,0,485,'2025-10-13','2026-01-12',511,0,'','','0000-00-00','janvi','2025-10-13 11:21:13','','0000-00-00 00:00:00'),(0,0,486,'2025-10-13','2026-01-12',510,0,'','','0000-00-00','manshi','2025-10-13 11:21:31','','0000-00-00 00:00:00'),(0,0,487,'2025-10-13','2026-01-12',512,0,'','','0000-00-00','drashti','2025-10-13 11:25:21','','0000-00-00 00:00:00'),(0,0,488,'2025-10-13','2026-01-12',513,0,'','','0000-00-00','reception','2025-10-13 11:28:20','','0000-00-00 00:00:00'),(0,0,489,'2025-10-13','2026-01-12',514,0,'','','0000-00-00','manshi','2025-10-13 11:29:16','','0000-00-00 00:00:00'),(0,0,490,'2025-10-13','2026-01-12',515,0,'','','0000-00-00','janvi','2025-10-13 11:32:43','','0000-00-00 00:00:00'),(0,0,491,'2025-10-13','2026-01-12',516,0,'','','0000-00-00','manshi','2025-10-13 11:33:31','','0000-00-00 00:00:00'),(0,0,492,'2025-10-13','2026-01-12',517,0,'','','0000-00-00','drashti','2025-10-13 11:33:45','','0000-00-00 00:00:00'),(0,0,493,'2025-10-13','2026-01-12',518,0,'','','0000-00-00','janvi','2025-10-13 11:37:20','','0000-00-00 00:00:00'),(0,0,494,'2025-10-13','2026-01-12',519,0,'','','0000-00-00','drashti','2025-10-13 11:38:55','','0000-00-00 00:00:00'),(0,0,495,'2025-10-13','2026-01-12',520,0,'','','0000-00-00','janvi','2025-10-13 11:43:32','','0000-00-00 00:00:00'),(0,0,496,'2025-10-13','2026-01-12',521,0,'','','0000-00-00','reception','2025-10-13 11:45:22','','0000-00-00 00:00:00'),(0,0,497,'2025-10-13','2026-01-12',522,0,'','','0000-00-00','drashti','2025-10-13 11:47:39','','0000-00-00 00:00:00'),(0,0,498,'2025-10-13','2026-01-12',523,0,'','','0000-00-00','manshi','2025-10-13 11:47:50','','0000-00-00 00:00:00'),(0,0,499,'2025-10-13','2026-01-12',524,0,'','','0000-00-00','reception','2025-10-13 11:50:41','','0000-00-00 00:00:00'),(0,0,500,'2025-10-13','2026-01-12',525,0,'','','0000-00-00','janvi','2025-10-13 11:51:13','','0000-00-00 00:00:00'),(0,0,501,'2025-10-13','2026-01-12',526,0,'','','0000-00-00','drashti','2025-10-13 11:53:46','','0000-00-00 00:00:00'),(0,0,502,'2025-10-13','2026-01-12',527,0,'','','0000-00-00','janvi','2025-10-13 11:54:39','','0000-00-00 00:00:00'),(0,0,503,'2025-10-13','2026-01-12',528,0,'','','0000-00-00','manshi','2025-10-13 11:55:25','','0000-00-00 00:00:00'),(0,0,504,'2025-10-13','2026-01-12',529,0,'','','0000-00-00','reception','2025-10-13 12:07:15','','0000-00-00 00:00:00'),(0,0,505,'2025-10-13','2026-01-12',530,0,'','','0000-00-00','drashti','2025-10-13 12:08:51','','0000-00-00 00:00:00'),(0,0,506,'2025-10-13','2026-01-12',531,0,'','','0000-00-00','janvi','2025-10-13 12:17:51','','0000-00-00 00:00:00'),(0,0,507,'2025-10-13','2026-01-12',532,0,'','','0000-00-00','janvi','2025-10-13 12:19:20','','0000-00-00 00:00:00'),(0,0,508,'2025-10-13','2026-01-12',533,0,'','','0000-00-00','janvi','2025-10-13 12:21:05','','0000-00-00 00:00:00'),(0,0,509,'2025-10-13','2026-01-12',534,0,'','','0000-00-00','drashti','2025-10-13 12:22:51','','0000-00-00 00:00:00'),(0,0,510,'2025-10-13','2026-01-12',535,0,'','','0000-00-00','reception','2025-10-13 12:25:05','','0000-00-00 00:00:00'),(0,0,511,'2025-10-13','2026-01-12',536,0,'','','0000-00-00','reception','2025-10-13 12:28:44','','0000-00-00 00:00:00'),(0,0,512,'2025-10-13','2026-01-12',537,0,'','','0000-00-00','janvi','2025-10-13 12:40:39','','0000-00-00 00:00:00'),(0,0,513,'2025-10-13','2026-01-12',538,0,'','','0000-00-00','reception','2025-10-13 12:44:42','','0000-00-00 00:00:00'),(0,0,514,'2025-10-13','2026-01-12',539,0,'','','0000-00-00','manshi','2025-10-13 13:00:59','','0000-00-00 00:00:00'),(0,0,515,'2025-10-13','2026-01-12',540,0,'','','0000-00-00','janvi','2025-10-13 13:02:33','','0000-00-00 00:00:00'),(0,0,516,'2025-10-13','2026-01-12',541,0,'','','0000-00-00','drashti','2025-10-13 13:06:42','','0000-00-00 00:00:00'),(0,0,517,'2025-10-13','2026-01-12',542,0,'','','0000-00-00','drashti','2025-10-13 13:36:53','','0000-00-00 00:00:00'),(0,0,518,'2025-10-13','2026-01-12',543,0,'','','0000-00-00','drashti','2025-10-13 14:12:21','','0000-00-00 00:00:00'),(0,0,519,'2025-10-13','2026-01-12',544,0,'','','0000-00-00','shweta','2025-10-13 15:34:56','','0000-00-00 00:00:00'),(0,0,520,'2025-10-13','2026-01-12',546,0,'','','0000-00-00','reception','2025-10-13 16:32:39','','0000-00-00 00:00:00'),(0,0,521,'2025-10-13','2026-01-12',547,0,'','','0000-00-00','shweta','2025-10-13 16:44:14','','0000-00-00 00:00:00'),(0,0,522,'2025-10-13','2026-01-12',548,0,'','','0000-00-00','reception','2025-10-13 16:49:56','','0000-00-00 00:00:00'),(0,0,523,'2025-10-13','2026-01-12',549,0,'','','0000-00-00','shweta','2025-10-13 16:57:12','','0000-00-00 00:00:00'),(0,0,524,'2025-10-13','2026-01-12',550,0,'','','0000-00-00','shweta','2025-10-13 16:59:09','','0000-00-00 00:00:00'),(0,0,525,'2025-10-13','2026-01-12',551,0,'','','0000-00-00','janvi','2025-10-13 17:14:33','','0000-00-00 00:00:00'),(0,0,526,'2025-10-13','2026-01-12',552,0,'','','0000-00-00','reception','2025-10-13 17:18:29','','0000-00-00 00:00:00'),(0,0,527,'2025-10-13','2026-01-12',553,0,'','','0000-00-00','reception','2025-10-13 17:18:42','','0000-00-00 00:00:00'),(0,0,528,'2025-10-13','2026-01-12',554,0,'','','0000-00-00','janvi','2025-10-13 17:19:42','','0000-00-00 00:00:00'),(0,0,529,'2025-10-13','2026-01-12',555,0,'','','0000-00-00','reception','2025-10-13 17:25:51','','0000-00-00 00:00:00'),(0,0,530,'2025-10-13','2026-01-12',556,0,'','','0000-00-00','drashti','2025-10-13 17:26:20','','0000-00-00 00:00:00'),(0,0,531,'2025-10-13','2026-01-12',557,0,'','','0000-00-00','drashti','2025-10-13 17:28:29','','0000-00-00 00:00:00'),(0,0,532,'2025-10-13','2026-01-12',558,0,'','','0000-00-00','reception','2025-10-13 17:42:25','','0000-00-00 00:00:00'),(0,0,533,'2025-10-13','2026-01-12',559,0,'','','0000-00-00','drashti','2025-10-13 17:43:01','','0000-00-00 00:00:00'),(0,0,534,'2025-10-13','2026-01-12',560,0,'','','0000-00-00','reception','2025-10-13 17:44:09','','0000-00-00 00:00:00'),(0,0,535,'2025-10-13','2026-01-12',561,0,'','','0000-00-00','drashti','2025-10-13 17:49:58','','0000-00-00 00:00:00'),(0,0,536,'2025-10-13','2026-01-12',562,0,'','','0000-00-00','reception','2025-10-13 17:51:13','','0000-00-00 00:00:00'),(0,0,537,'2025-10-13','2026-01-12',563,0,'','','0000-00-00','drashti','2025-10-13 17:53:33','','0000-00-00 00:00:00'),(0,0,538,'2025-10-13','2026-01-12',564,0,'','','0000-00-00','reception','2025-10-13 17:55:13','','0000-00-00 00:00:00'),(0,0,539,'2025-10-13','2026-01-12',565,0,'','','0000-00-00','reception','2025-10-13 18:03:30','','0000-00-00 00:00:00'),(0,0,540,'2025-10-13','2026-01-12',566,0,'','','0000-00-00','drashti','2025-10-13 18:04:54','','0000-00-00 00:00:00'),(0,0,541,'2025-10-13','2026-01-12',567,0,'','','0000-00-00','janvi','2025-10-13 18:05:15','','0000-00-00 00:00:00'),(0,0,542,'2025-10-13','2026-01-12',568,0,'','','0000-00-00','reception','2025-10-13 18:06:45','','0000-00-00 00:00:00'),(0,0,543,'2025-10-13','2026-01-12',569,0,'','','0000-00-00','drashti','2025-10-13 18:07:42','','0000-00-00 00:00:00'),(0,0,544,'2025-10-13','2026-01-12',570,0,'','','0000-00-00','janvi','2025-10-13 18:09:10','','0000-00-00 00:00:00'),(0,0,545,'2025-10-13','2026-01-12',571,0,'','','0000-00-00','manshi','2025-10-13 18:09:34','','0000-00-00 00:00:00'),(0,0,546,'2025-10-13','2026-01-12',572,0,'','','0000-00-00','drashti','2025-10-13 18:10:39','','0000-00-00 00:00:00'),(0,0,547,'2025-10-13','2026-01-12',573,0,'','','0000-00-00','reception','2025-10-13 18:10:52','','0000-00-00 00:00:00'),(0,0,548,'2025-10-13','2026-01-12',574,0,'','','0000-00-00','drashti','2025-10-13 18:14:40','','0000-00-00 00:00:00'),(0,0,549,'2025-10-13','2026-01-12',575,0,'','','0000-00-00','janvi','2025-10-13 18:15:18','','0000-00-00 00:00:00'),(0,0,550,'2025-10-13','2026-01-12',576,0,'','','0000-00-00','reception','2025-10-13 18:16:52','','0000-00-00 00:00:00'),(0,0,551,'2025-10-13','2026-01-12',577,0,'','','0000-00-00','drashti','2025-10-13 18:18:43','','0000-00-00 00:00:00'),(0,0,552,'2025-10-13','2026-01-12',578,0,'','','0000-00-00','janvi','2025-10-13 18:19:08','','0000-00-00 00:00:00'),(0,0,553,'2025-10-13','2026-01-12',579,0,'','','0000-00-00','janvi','2025-10-13 18:21:13','','0000-00-00 00:00:00'),(0,0,554,'2025-10-13','2026-01-12',580,0,'','','0000-00-00','drashti','2025-10-13 18:22:31','','0000-00-00 00:00:00'),(0,0,555,'2025-10-13','2026-01-12',581,0,'','','0000-00-00','drashti','2025-10-13 18:41:27','','0000-00-00 00:00:00'),(0,0,556,'2025-10-13','2026-01-12',583,0,'','','0000-00-00','drashti','2025-10-13 18:43:38','','0000-00-00 00:00:00'),(0,0,557,'2025-10-13','2026-01-12',584,0,'','','0000-00-00','reception','2025-10-13 18:48:51','','0000-00-00 00:00:00'),(0,0,558,'2025-10-13','2026-01-12',585,0,'','','0000-00-00','drashti','2025-10-13 18:49:38','','0000-00-00 00:00:00'),(0,0,559,'2025-10-13','2026-01-12',586,0,'','','0000-00-00','janvi','2025-10-13 18:51:33','','0000-00-00 00:00:00'),(0,0,560,'2025-10-13','2026-01-12',587,0,'','','0000-00-00','janvi','2025-10-13 18:53:10','','0000-00-00 00:00:00'),(0,0,561,'2025-10-13','2026-01-12',588,0,'','','0000-00-00','drashti','2025-10-13 18:53:44','','0000-00-00 00:00:00'),(0,0,562,'2025-10-13','2026-01-12',589,0,'','','0000-00-00','reception','2025-10-13 18:54:07','','0000-00-00 00:00:00'),(0,0,563,'2025-10-13','2026-01-12',590,0,'','','0000-00-00','janvi','2025-10-13 18:56:34','','0000-00-00 00:00:00'),(0,0,564,'2025-10-13','2026-01-12',591,0,'','','0000-00-00','reception','2025-10-13 18:58:47','','0000-00-00 00:00:00'),(0,0,565,'2025-10-13','2026-01-12',592,0,'','','0000-00-00','reception','2025-10-13 19:06:15','','0000-00-00 00:00:00'),(0,0,566,'2025-10-13','2026-01-12',593,0,'','','0000-00-00','drashti','2025-10-13 19:10:51','','0000-00-00 00:00:00'),(0,0,567,'2025-10-13','2026-01-12',594,0,'','','0000-00-00','manshi','2025-10-13 19:18:17','','0000-00-00 00:00:00'),(0,0,568,'2025-10-13','2026-01-12',595,0,'','','0000-00-00','reception','2025-10-13 19:18:44','','0000-00-00 00:00:00'),(0,0,569,'2025-10-13','2026-01-12',596,0,'','','0000-00-00','janvi','2025-10-13 19:21:07','','0000-00-00 00:00:00'),(0,0,570,'2025-10-13','2026-01-12',597,0,'','','0000-00-00','janvi','2025-10-13 19:23:27','','0000-00-00 00:00:00'),(0,0,571,'2025-10-13','2026-01-12',598,0,'','','0000-00-00','drashti','2025-10-13 19:25:45','','0000-00-00 00:00:00'),(0,0,572,'2025-10-13','2026-01-12',599,0,'','','0000-00-00','manshi','2025-10-13 19:26:24','','0000-00-00 00:00:00'),(0,0,573,'2025-10-13','2026-01-12',600,0,'','','0000-00-00','manshi','2025-10-13 19:29:28','','0000-00-00 00:00:00'),(0,0,574,'2025-10-13','2026-01-12',601,0,'','','0000-00-00','drashti','2025-10-13 19:32:04','','0000-00-00 00:00:00'),(0,0,575,'2025-10-13','2026-01-12',603,0,'','','0000-00-00','janvi','2025-10-13 19:32:31','','0000-00-00 00:00:00'),(0,0,576,'2025-10-13','2026-01-12',604,0,'','','0000-00-00','drashti','2025-10-13 19:47:43','','0000-00-00 00:00:00'),(0,0,577,'2025-10-14','2026-01-13',608,0,'','','0000-00-00','shweta','2025-10-14 08:51:13','','0000-00-00 00:00:00'),(0,0,578,'2025-10-14','2026-01-13',609,0,'','','0000-00-00','shweta','2025-10-14 08:53:37','','0000-00-00 00:00:00'),(0,0,579,'2025-10-14','2026-01-13',610,0,'','','0000-00-00','shweta','2025-10-14 08:55:40','','0000-00-00 00:00:00'),(0,0,580,'2025-10-14','2026-01-13',611,0,'','','0000-00-00','shweta','2025-10-14 08:57:30','','0000-00-00 00:00:00'),(0,0,581,'2025-10-14','2026-01-13',612,0,'','','0000-00-00','shweta','2025-10-14 08:59:36','','0000-00-00 00:00:00'),(0,0,582,'2025-10-14','2026-01-13',613,0,'','','0000-00-00','shweta','2025-10-14 09:00:57','','0000-00-00 00:00:00'),(0,0,583,'2025-10-14','2026-01-13',614,0,'','','0000-00-00','shweta','2025-10-14 09:32:19','','0000-00-00 00:00:00'),(0,0,584,'2025-10-14','2026-01-13',615,0,'','','0000-00-00','reception','2025-10-14 09:45:57','','0000-00-00 00:00:00'),(0,0,585,'2025-10-14','2026-01-13',616,0,'','','0000-00-00','reception','2025-10-14 10:06:29','','0000-00-00 00:00:00'),(0,0,586,'2025-10-14','2026-01-13',21,0,'','','0000-00-00','reception','2025-10-14 10:09:47','','0000-00-00 00:00:00'),(0,0,587,'2025-10-14','2026-01-13',617,0,'','','0000-00-00','janvi','2025-10-14 10:15:58','','0000-00-00 00:00:00'),(0,0,588,'2025-10-14','2026-01-13',618,0,'','','0000-00-00','reception','2025-10-14 10:20:38','','0000-00-00 00:00:00'),(0,0,589,'2025-10-14','2026-01-13',619,0,'','','0000-00-00','reception','2025-10-14 10:30:24','','0000-00-00 00:00:00'),(0,0,590,'2025-10-14','2026-01-13',620,0,'','','0000-00-00','drashti','2025-10-14 10:32:16','','0000-00-00 00:00:00'),(0,0,591,'2025-10-14','2026-01-13',621,0,'','','0000-00-00','reception','2025-10-14 10:32:20','','0000-00-00 00:00:00'),(0,0,592,'2025-10-14','2026-01-13',622,0,'','','0000-00-00','reception','2025-10-14 10:35:50','','0000-00-00 00:00:00'),(0,0,593,'2025-10-14','2026-01-13',623,0,'','','0000-00-00','drashti','2025-10-14 10:35:52','','0000-00-00 00:00:00'),(0,0,594,'2025-10-14','2026-01-13',624,0,'','','0000-00-00','drashti','2025-10-14 10:38:40','','0000-00-00 00:00:00'),(0,0,595,'2025-10-14','2026-01-13',625,0,'','','0000-00-00','janvi','2025-10-14 10:40:25','','0000-00-00 00:00:00'),(0,0,596,'2025-10-14','2026-01-13',626,0,'','','0000-00-00','reception','2025-10-14 10:48:03','','0000-00-00 00:00:00'),(0,0,597,'2025-10-14','2026-01-13',627,0,'','','0000-00-00','reception','2025-10-14 10:55:31','','0000-00-00 00:00:00'),(0,0,598,'2025-10-14','2026-01-13',628,0,'','','0000-00-00','drashti','2025-10-14 10:56:34','','0000-00-00 00:00:00'),(0,0,599,'2025-10-14','2026-01-13',629,0,'','','0000-00-00','reception','2025-10-14 11:02:50','','0000-00-00 00:00:00'),(0,0,600,'2025-10-14','2026-01-13',630,0,'','','0000-00-00','janvi','2025-10-14 11:04:47','','0000-00-00 00:00:00'),(0,0,601,'2025-10-14','2026-01-13',631,0,'','','0000-00-00','drashti','2025-10-14 11:06:49','','0000-00-00 00:00:00'),(0,0,602,'2025-10-14','2026-01-13',632,0,'','','0000-00-00','reception','2025-10-14 11:11:58','','0000-00-00 00:00:00'),(0,0,603,'2025-10-14','2026-01-13',633,0,'','','0000-00-00','manshi','2025-10-14 11:12:59','','0000-00-00 00:00:00'),(0,0,604,'2025-10-14','2026-01-13',634,0,'','','0000-00-00','drashti','2025-10-14 11:14:17','','0000-00-00 00:00:00'),(0,0,605,'2025-10-14','2026-01-13',635,0,'','','0000-00-00','drashti','2025-10-14 11:16:01','','0000-00-00 00:00:00'),(0,0,606,'2025-10-14','2026-01-13',636,0,'','','0000-00-00','reception','2025-10-14 11:17:07','','0000-00-00 00:00:00'),(0,0,607,'2025-10-14','2026-01-13',637,0,'','','0000-00-00','reception','2025-10-14 11:18:49','','0000-00-00 00:00:00'),(0,0,608,'2025-10-14','2026-01-13',638,0,'','','0000-00-00','manshi','2025-10-14 11:28:17','','0000-00-00 00:00:00'),(0,0,609,'2025-10-14','2026-01-13',639,0,'','','0000-00-00','drashti','2025-10-14 11:40:21','','0000-00-00 00:00:00'),(0,0,610,'2025-10-14','2026-01-13',640,0,'','','0000-00-00','janvi','2025-10-14 11:40:54','','0000-00-00 00:00:00'),(0,0,611,'2025-10-14','2026-01-13',641,0,'','','0000-00-00','reception','2025-10-14 11:42:06','','0000-00-00 00:00:00'),(0,0,612,'2025-10-14','2026-01-13',642,0,'','','0000-00-00','manshi','2025-10-14 11:48:11','','0000-00-00 00:00:00'),(0,0,613,'2025-10-14','2026-01-13',643,0,'','','0000-00-00','reception','2025-10-14 11:51:11','','0000-00-00 00:00:00'),(0,0,614,'2025-10-14','2026-01-13',644,0,'','','0000-00-00','reception','2025-10-14 11:59:33','','0000-00-00 00:00:00'),(0,0,615,'2025-10-14','2026-01-13',645,0,'','','0000-00-00','janvi','2025-10-14 12:09:53','','0000-00-00 00:00:00'),(0,0,616,'2025-10-14','2026-01-13',646,0,'','','0000-00-00','drashti','2025-10-14 12:12:10','','0000-00-00 00:00:00'),(0,0,617,'2025-10-14','2026-01-13',647,0,'','','0000-00-00','manshi','2025-10-14 12:13:55','','0000-00-00 00:00:00'),(0,0,618,'2025-10-14','2026-01-13',648,0,'','','0000-00-00','drashti','2025-10-14 12:16:13','','0000-00-00 00:00:00'),(0,0,619,'2025-10-14','2026-01-13',649,0,'','','0000-00-00','janvi','2025-10-14 12:18:32','','0000-00-00 00:00:00'),(0,0,620,'2025-10-14','2026-01-13',650,0,'','','0000-00-00','reception','2025-10-14 12:18:57','','0000-00-00 00:00:00'),(0,0,621,'2025-10-14','2026-01-13',651,0,'','','0000-00-00','drashti','2025-10-14 12:28:00','','0000-00-00 00:00:00'),(0,0,622,'2025-10-14','2026-01-13',652,0,'','','0000-00-00','drashti','2025-10-14 12:32:01','','0000-00-00 00:00:00'),(0,0,623,'2025-10-14','2026-01-13',653,0,'','','0000-00-00','drashti','2025-10-14 12:35:42','','0000-00-00 00:00:00'),(0,0,624,'2025-10-14','2026-01-13',654,0,'','','0000-00-00','reception','2025-10-14 12:35:49','','0000-00-00 00:00:00'),(0,0,625,'2025-10-14','2026-01-13',655,0,'','','0000-00-00','janvi','2025-10-14 12:36:19','','0000-00-00 00:00:00'),(0,0,626,'2025-10-14','2026-01-13',656,0,'','','0000-00-00','janvi','2025-10-14 12:38:13','','0000-00-00 00:00:00'),(0,0,627,'2025-10-14','2026-01-13',657,0,'','','0000-00-00','drashti','2025-10-14 12:42:44','','0000-00-00 00:00:00'),(0,0,628,'2025-10-14','2026-01-13',658,0,'','','0000-00-00','reception','2025-10-14 12:44:18','','0000-00-00 00:00:00'),(0,0,629,'2025-10-14','2026-01-13',659,0,'','','0000-00-00','reception','2025-10-14 12:46:52','','0000-00-00 00:00:00'),(0,0,630,'2025-10-14','2026-01-13',660,0,'','','0000-00-00','janvi','2025-10-14 12:55:08','','0000-00-00 00:00:00'),(0,0,631,'2025-10-14','2026-01-13',661,0,'','','0000-00-00','urvashi','2025-10-14 13:06:19','','0000-00-00 00:00:00'),(0,0,632,'2025-10-14','2026-01-13',662,0,'','','0000-00-00','urvashi','2025-10-14 13:11:59','','0000-00-00 00:00:00'),(0,0,633,'2025-10-14','2026-01-13',663,0,'','','0000-00-00','drashti','2025-10-14 13:13:43','','0000-00-00 00:00:00'),(0,0,634,'2025-10-14','2026-01-13',664,0,'','','0000-00-00','janvi','2025-10-14 13:46:18','','0000-00-00 00:00:00'),(0,0,635,'2025-10-14','2026-01-13',665,0,'','','0000-00-00','urvashi','2025-10-14 14:37:31','','0000-00-00 00:00:00'),(0,0,636,'2025-10-14','2026-01-13',666,0,'','','0000-00-00','reception','2025-10-14 16:51:10','','0000-00-00 00:00:00'),(0,0,637,'2025-10-14','2026-01-13',667,0,'','','0000-00-00','shweta','2025-10-14 16:51:56','','0000-00-00 00:00:00'),(0,0,638,'2025-10-14','2026-01-13',668,0,'','','0000-00-00','reception','2025-10-14 16:53:10','','0000-00-00 00:00:00'),(0,0,639,'2025-10-14','2026-01-13',669,0,'','','0000-00-00','reception','2025-10-14 16:58:11','','0000-00-00 00:00:00'),(0,0,640,'2025-10-14','2026-01-13',670,0,'','','0000-00-00','reception','2025-10-14 17:12:31','','0000-00-00 00:00:00'),(0,0,641,'2025-10-14','2026-01-13',671,0,'','','0000-00-00','drashti','2025-10-14 17:14:17','','0000-00-00 00:00:00'),(0,0,642,'2025-10-14','2026-01-13',672,0,'','','0000-00-00','urvashi','2025-10-14 17:17:47','','0000-00-00 00:00:00'),(0,0,643,'2025-10-14','2026-01-13',673,0,'','','0000-00-00','drashti','2025-10-14 17:18:29','','0000-00-00 00:00:00'),(0,0,644,'2025-10-14','2026-01-13',674,0,'','','0000-00-00','drashti','2025-10-14 17:27:46','','0000-00-00 00:00:00'),(0,0,645,'2025-10-14','2026-01-13',675,0,'','','0000-00-00','manshi','2025-10-14 17:38:55','','0000-00-00 00:00:00'),(0,0,646,'2025-10-14','2026-01-13',676,0,'','','0000-00-00','urvashi','2025-10-14 17:40:48','','0000-00-00 00:00:00'),(0,0,647,'2025-10-14','2026-01-13',677,0,'','','0000-00-00','urvashi','2025-10-14 17:42:26','','0000-00-00 00:00:00'),(0,0,648,'2025-10-14','2026-01-13',678,0,'','','0000-00-00','drashti','2025-10-14 17:44:19','','0000-00-00 00:00:00'),(0,0,649,'2025-10-14','2026-01-13',679,0,'','','0000-00-00','urvashi','2025-10-14 17:45:58','','0000-00-00 00:00:00'),(0,0,650,'2025-10-14','2026-01-13',680,0,'','','0000-00-00','urvashi','2025-10-14 17:47:25','','0000-00-00 00:00:00'),(0,0,651,'2025-10-14','2026-01-13',681,0,'','','0000-00-00','janvi','2025-10-14 17:47:37','','0000-00-00 00:00:00'),(0,0,652,'2025-10-14','2026-01-13',682,0,'','','0000-00-00','drashti','2025-10-14 17:50:23','','0000-00-00 00:00:00'),(0,0,653,'2025-10-14','2026-01-13',683,0,'','','0000-00-00','urvashi','2025-10-14 17:51:14','','0000-00-00 00:00:00'),(0,0,654,'2025-10-14','2026-01-13',684,0,'','','0000-00-00','manshi','2025-10-14 17:54:47','','0000-00-00 00:00:00'),(0,0,655,'2025-10-14','2026-01-13',685,0,'','','0000-00-00','drashti','2025-10-14 17:56:48','','0000-00-00 00:00:00'),(0,0,656,'2025-10-14','2026-01-13',686,0,'','','0000-00-00','urvashi','2025-10-14 17:57:27','','0000-00-00 00:00:00'),(0,0,657,'2025-10-14','2026-01-13',687,0,'','','0000-00-00','janvi','2025-10-14 17:57:30','','0000-00-00 00:00:00'),(0,0,658,'2025-10-14','2026-01-13',688,0,'','','0000-00-00','drashti','2025-10-14 17:59:19','','0000-00-00 00:00:00'),(0,0,659,'2025-10-14','2026-01-13',689,0,'','','0000-00-00','janvi','2025-10-14 18:02:50','','0000-00-00 00:00:00'),(0,0,660,'2025-10-14','2026-01-13',690,0,'','','0000-00-00','urvashi','2025-10-14 18:04:01','','0000-00-00 00:00:00'),(0,0,661,'2025-10-14','2026-01-13',691,0,'','','0000-00-00','urvashi','2025-10-14 18:11:15','','0000-00-00 00:00:00'),(0,0,662,'2025-10-14','2026-01-13',692,0,'','','0000-00-00','urvashi','2025-10-14 18:18:51','','0000-00-00 00:00:00'),(0,0,663,'2025-10-14','2026-01-13',693,0,'','','0000-00-00','drashti','2025-10-14 18:20:25','','0000-00-00 00:00:00'),(0,0,664,'2025-10-14','2026-01-13',694,0,'','','0000-00-00','janvi','2025-10-14 18:21:28','','0000-00-00 00:00:00'),(0,0,665,'2025-10-14','2026-01-13',695,0,'','','0000-00-00','urvashi','2025-10-14 18:21:45','','0000-00-00 00:00:00'),(0,0,666,'2025-10-14','2026-01-13',696,0,'','','0000-00-00','drashti','2025-10-14 18:23:35','','0000-00-00 00:00:00'),(0,0,667,'2025-10-14','2026-01-13',697,0,'','','0000-00-00','janvi','2025-10-14 18:26:34','','0000-00-00 00:00:00'),(0,0,668,'2025-10-14','2026-01-13',698,0,'','','0000-00-00','drashti','2025-10-14 18:27:11','','0000-00-00 00:00:00'),(0,0,669,'2025-10-14','2026-01-13',699,0,'','','0000-00-00','urvashi','2025-10-14 18:28:57','','0000-00-00 00:00:00'),(0,0,670,'2025-10-14','2026-01-13',700,0,'','','0000-00-00','janvi','2025-10-14 18:30:24','','0000-00-00 00:00:00'),(0,0,671,'2025-10-14','2026-01-13',62,0,'','','0000-00-00','drashti','2025-10-14 18:31:05','','0000-00-00 00:00:00'),(0,0,672,'2025-10-14','2026-01-13',701,0,'','','0000-00-00','drashti','2025-10-14 18:34:38','','0000-00-00 00:00:00'),(0,0,673,'2025-10-14','2026-01-13',702,0,'','','0000-00-00','drashti','2025-10-14 18:36:20','','0000-00-00 00:00:00'),(0,0,674,'2025-10-14','2026-01-13',703,0,'','','0000-00-00','drashti','2025-10-14 18:46:51','','0000-00-00 00:00:00'),(0,0,675,'2025-10-14','2026-01-13',704,0,'','','0000-00-00','drashti','2025-10-14 18:56:25','','0000-00-00 00:00:00'),(0,0,676,'2025-10-14','2026-01-13',705,0,'','','0000-00-00','drashti','2025-10-14 18:58:13','','0000-00-00 00:00:00'),(0,0,677,'2025-10-14','2026-01-13',706,0,'','','0000-00-00','urvashi','2025-10-14 19:03:50','','0000-00-00 00:00:00'),(0,0,678,'2025-10-14','2026-01-13',707,0,'','','0000-00-00','drashti','2025-10-14 19:05:21','','0000-00-00 00:00:00'),(0,0,679,'2025-10-14','2026-01-13',708,0,'','','0000-00-00','janvi','2025-10-14 19:05:46','','0000-00-00 00:00:00'),(0,0,680,'2025-10-14','2026-01-13',709,0,'','','0000-00-00','manshi','2025-10-14 19:12:09','','0000-00-00 00:00:00'),(0,0,681,'2025-10-14','2026-01-13',710,0,'','','0000-00-00','drashti','2025-10-14 19:15:36','','0000-00-00 00:00:00'),(0,0,682,'2025-10-14','2026-01-13',711,0,'','','0000-00-00','drashti','2025-10-14 19:18:57','','0000-00-00 00:00:00'),(0,0,683,'2025-10-14','2026-01-13',712,0,'','','0000-00-00','drashti','2025-10-14 19:39:25','','0000-00-00 00:00:00'),(0,0,684,'2025-10-14','2026-01-13',713,0,'','','0000-00-00','urvashi','2025-10-14 19:48:09','','0000-00-00 00:00:00'),(0,0,685,'2025-10-15','2026-01-14',715,0,'','','0000-00-00','priyanshi','2025-10-15 09:07:13','','0000-00-00 00:00:00'),(0,0,686,'2025-10-15','2026-01-14',716,0,'','','0000-00-00','reception','2025-10-15 09:10:00','','0000-00-00 00:00:00'),(0,0,687,'2025-10-15','2026-01-14',717,0,'','','0000-00-00','janvi','2025-10-15 09:11:02','','0000-00-00 00:00:00'),(0,0,688,'2025-10-15','2026-01-14',718,0,'','','0000-00-00','priyanshi','2025-10-15 09:13:55','','0000-00-00 00:00:00'),(0,0,689,'2025-10-15','2026-01-14',719,0,'','','0000-00-00','priyanshi','2025-10-15 09:17:19','','0000-00-00 00:00:00'),(0,0,690,'2025-10-15','2026-01-14',721,0,'','','0000-00-00','reception','2025-10-15 09:33:03','','0000-00-00 00:00:00'),(0,0,691,'2025-10-15','2026-01-14',722,0,'','','0000-00-00','reception','2025-10-15 09:41:18','','0000-00-00 00:00:00'),(0,0,692,'2025-10-15','2026-01-14',723,0,'','','0000-00-00','janvi','2025-10-15 09:57:04','','0000-00-00 00:00:00'),(0,0,693,'2025-10-15','2026-01-14',724,0,'','','0000-00-00','priyanshi','2025-10-15 10:03:00','','0000-00-00 00:00:00'),(0,0,694,'2025-10-15','2026-01-14',725,0,'','','0000-00-00','manshi','2025-10-15 10:22:14','','0000-00-00 00:00:00'),(0,0,695,'2025-10-15','2026-01-14',726,0,'','','0000-00-00','reception','2025-10-15 10:26:27','','0000-00-00 00:00:00'),(0,0,696,'2025-10-15','2026-01-14',727,0,'','','0000-00-00','drashti','2025-10-15 10:33:57','','0000-00-00 00:00:00'),(0,0,697,'2025-10-15','2026-01-14',728,0,'','','0000-00-00','reception','2025-10-15 10:39:14','','0000-00-00 00:00:00'),(0,0,698,'2025-10-15','2026-01-14',729,0,'','','0000-00-00','drashti','2025-10-15 10:46:05','','0000-00-00 00:00:00'),(0,0,699,'2025-10-15','2026-01-14',730,0,'','','0000-00-00','reception','2025-10-15 10:46:43','','0000-00-00 00:00:00'),(0,0,700,'2025-10-15','2026-01-14',731,0,'','','0000-00-00','reception','2025-10-15 10:48:21','','0000-00-00 00:00:00'),(0,0,701,'2025-10-15','2026-01-14',732,0,'','','0000-00-00','janvi','2025-10-15 10:49:41','','0000-00-00 00:00:00'),(0,0,702,'2025-10-15','2026-01-14',733,0,'','','0000-00-00','manshi','2025-10-15 10:57:12','','0000-00-00 00:00:00'),(0,0,703,'2025-10-15','2026-01-14',734,0,'','','0000-00-00','drashti','2025-10-15 10:59:26','','0000-00-00 00:00:00'),(0,0,704,'2025-10-15','2026-01-14',735,0,'','','0000-00-00','manshi','2025-10-15 11:00:31','','0000-00-00 00:00:00'),(0,0,705,'2025-10-15','2026-01-14',736,0,'','','0000-00-00','drashti','2025-10-15 11:01:20','','0000-00-00 00:00:00'),(0,0,706,'2025-10-15','2026-01-14',737,0,'','','0000-00-00','reception','2025-10-15 11:06:19','','0000-00-00 00:00:00'),(0,0,707,'2025-10-15','2026-01-14',738,0,'','','0000-00-00','manshi','2025-10-15 11:09:21','','0000-00-00 00:00:00'),(0,0,708,'2025-10-15','2026-01-14',739,0,'','','0000-00-00','drashti','2025-10-15 11:11:34','','0000-00-00 00:00:00'),(0,0,709,'2025-10-15','2026-01-14',740,0,'','','0000-00-00','drashti','2025-10-15 11:19:10','','0000-00-00 00:00:00'),(0,0,710,'2025-10-15','2026-01-14',741,0,'','','0000-00-00','reception','2025-10-15 11:20:19','','0000-00-00 00:00:00'),(0,0,711,'2025-10-15','2026-01-14',742,0,'','','0000-00-00','reception','2025-10-15 11:23:44','','0000-00-00 00:00:00'),(0,0,712,'2025-10-15','2026-01-14',743,0,'','','0000-00-00','janvi','2025-10-15 11:23:57','','0000-00-00 00:00:00'),(0,0,713,'2025-10-15','2026-01-14',744,0,'','','0000-00-00','janvi','2025-10-15 11:25:12','','0000-00-00 00:00:00'),(0,0,714,'2025-10-15','2026-01-14',745,0,'','','0000-00-00','drashti','2025-10-15 11:29:15','','0000-00-00 00:00:00'),(0,0,715,'2025-10-15','2026-01-14',746,0,'','','0000-00-00','reception','2025-10-15 11:31:07','','0000-00-00 00:00:00'),(0,0,716,'2025-10-15','2026-01-14',747,0,'','','0000-00-00','reception','2025-10-15 11:38:55','','0000-00-00 00:00:00'),(0,0,717,'2025-10-15','2026-01-14',748,0,'','','0000-00-00','drashti','2025-10-15 11:49:15','','0000-00-00 00:00:00'),(0,0,718,'2025-10-15','2026-01-14',749,0,'','','0000-00-00','drashti','2025-10-15 11:51:40','','0000-00-00 00:00:00'),(0,0,719,'2025-10-15','2026-01-14',750,0,'','','0000-00-00','janvi','2025-10-15 11:52:17','','0000-00-00 00:00:00'),(0,0,720,'2025-10-15','2026-01-14',751,0,'','','0000-00-00','reception','2025-10-15 11:52:54','','0000-00-00 00:00:00'),(0,0,721,'2025-10-15','2026-01-14',752,0,'','','0000-00-00','drashti','2025-10-15 11:53:55','','0000-00-00 00:00:00'),(0,0,722,'2025-10-15','2026-01-14',753,0,'','','0000-00-00','reception','2025-10-15 11:54:12','','0000-00-00 00:00:00'),(0,0,723,'2025-10-15','2026-01-14',754,0,'','','0000-00-00','drashti','2025-10-15 12:06:57','','0000-00-00 00:00:00'),(0,0,724,'2025-10-15','2026-01-14',755,0,'','','0000-00-00','drashti','2025-10-15 12:10:10','','0000-00-00 00:00:00'),(0,0,725,'2025-10-15','2026-01-14',756,0,'','','0000-00-00','janvi','2025-10-15 12:11:53','','0000-00-00 00:00:00'),(0,0,726,'2025-10-15','2026-01-14',757,0,'','','0000-00-00','reception','2025-10-15 12:13:16','','0000-00-00 00:00:00'),(0,0,727,'2025-10-15','2026-01-14',758,0,'','','0000-00-00','janvi','2025-10-15 12:20:27','','0000-00-00 00:00:00'),(0,0,728,'2025-10-15','2026-01-14',759,0,'','','0000-00-00','drashti','2025-10-15 12:20:34','','0000-00-00 00:00:00'),(0,0,729,'2025-10-15','2026-01-14',760,0,'','','0000-00-00','manshi','2025-10-15 12:23:49','','0000-00-00 00:00:00'),(0,0,730,'2025-10-15','2026-01-14',761,0,'','','0000-00-00','janvi','2025-10-15 12:27:05','','0000-00-00 00:00:00'),(0,0,731,'2025-10-15','2026-01-14',762,0,'','','0000-00-00','drashti','2025-10-15 12:31:02','','0000-00-00 00:00:00'),(0,0,732,'2025-10-15','2026-01-14',763,0,'','','0000-00-00','reception','2025-10-15 12:35:04','','0000-00-00 00:00:00'),(0,0,733,'2025-10-15','2026-01-14',764,0,'','','0000-00-00','reception','2025-10-15 12:40:03','','0000-00-00 00:00:00'),(0,0,734,'2025-10-15','2026-01-14',765,0,'','','0000-00-00','drashti','2025-10-15 12:50:47','','0000-00-00 00:00:00'),(0,0,735,'2025-10-15','2026-01-14',766,0,'','','0000-00-00','reception','2025-10-15 13:00:01','','0000-00-00 00:00:00'),(0,0,736,'2025-10-15','2026-01-14',767,0,'','','0000-00-00','drashti','2025-10-15 13:06:17','','0000-00-00 00:00:00'),(0,0,737,'2025-10-15','2026-01-14',768,0,'','','0000-00-00','reception','2025-10-15 13:23:34','','0000-00-00 00:00:00'),(0,0,738,'2025-10-15','2026-01-14',769,0,'','','0000-00-00','reception','2025-10-15 13:25:48','','0000-00-00 00:00:00'),(0,0,739,'2025-10-15','2026-01-14',770,0,'','','0000-00-00','manshi','2025-10-15 13:50:19','','0000-00-00 00:00:00'),(0,0,740,'2025-10-15','2026-01-14',771,0,'','','0000-00-00','manshi','2025-10-15 13:52:37','','0000-00-00 00:00:00'),(0,0,741,'2025-10-15','2026-01-14',772,0,'','','0000-00-00','priyanshi','2025-10-15 16:03:49','','0000-00-00 00:00:00'),(0,0,742,'2025-10-15','2026-01-14',773,0,'','','0000-00-00','reception','2025-10-15 16:30:34','','0000-00-00 00:00:00'),(0,0,743,'2025-10-15','2026-01-14',774,0,'','','0000-00-00','priyanshi','2025-10-15 16:32:33','','0000-00-00 00:00:00'),(0,0,744,'2025-10-15','2026-01-14',775,0,'','','0000-00-00','priyanshi','2025-10-15 16:42:37','','0000-00-00 00:00:00'),(0,0,745,'2025-10-15','2026-01-14',776,0,'','','0000-00-00','priyanshi','2025-10-15 16:50:32','','0000-00-00 00:00:00'),(0,0,746,'2025-10-15','2026-01-14',777,0,'','','0000-00-00','reception','2025-10-15 17:00:44','','0000-00-00 00:00:00'),(0,0,747,'2025-10-15','2026-01-14',778,0,'','','0000-00-00','priyanshi','2025-10-15 17:02:32','','0000-00-00 00:00:00'),(0,0,748,'2025-10-15','2026-01-14',779,0,'','','0000-00-00','reception','2025-10-15 17:07:03','','0000-00-00 00:00:00'),(0,0,749,'2025-10-15','2026-01-14',781,0,'','','0000-00-00','reception','2025-10-15 17:18:15','','0000-00-00 00:00:00'),(0,0,750,'2025-10-15','2026-01-14',782,0,'','','0000-00-00','reception','2025-10-15 17:35:34','','0000-00-00 00:00:00'),(0,0,751,'2025-10-15','2026-01-14',783,0,'','','0000-00-00','drashti','2025-10-15 17:40:50','','0000-00-00 00:00:00'),(0,0,752,'2025-10-15','2026-01-14',784,0,'','','0000-00-00','janvi','2025-10-15 17:41:34','','0000-00-00 00:00:00'),(0,0,753,'2025-10-15','2026-01-14',785,0,'','','0000-00-00','drashti','2025-10-15 17:45:14','','0000-00-00 00:00:00'),(0,0,754,'2025-10-15','2026-01-14',786,0,'','','0000-00-00','janvi','2025-10-15 17:45:40','','0000-00-00 00:00:00'),(0,0,755,'2025-10-15','2026-01-14',787,0,'','','0000-00-00','reception','2025-10-15 17:50:06','','0000-00-00 00:00:00'),(0,0,756,'2025-10-15','2026-01-14',788,0,'','','0000-00-00','drashti','2025-10-15 17:51:51','','0000-00-00 00:00:00'),(0,0,757,'2025-10-15','2026-01-14',56,0,'','','0000-00-00','janvi','2025-10-15 17:54:34','','0000-00-00 00:00:00'),(0,0,758,'2025-10-15','2026-01-14',789,0,'','','0000-00-00','reception','2025-10-15 17:58:40','','0000-00-00 00:00:00'),(0,0,759,'2025-10-15','2026-01-14',790,0,'','','0000-00-00','manshi','2025-10-15 18:08:31','','0000-00-00 00:00:00'),(0,0,760,'2025-10-15','2026-01-14',791,0,'','','0000-00-00','reception','2025-10-15 18:11:56','','0000-00-00 00:00:00'),(0,0,761,'2025-10-15','2026-01-14',792,0,'','','0000-00-00','reception','2025-10-15 18:15:19','','0000-00-00 00:00:00'),(0,0,762,'2025-10-15','2026-01-14',793,0,'','','0000-00-00','reception','2025-10-15 18:23:13','','0000-00-00 00:00:00'),(0,0,763,'2025-10-15','2026-01-14',794,0,'','','0000-00-00','drashti','2025-10-15 18:25:50','','0000-00-00 00:00:00'),(0,0,764,'2025-10-15','2026-01-14',795,0,'','','0000-00-00','reception','2025-10-15 18:29:34','','0000-00-00 00:00:00'),(0,0,765,'2025-10-15','2026-01-14',796,0,'','','0000-00-00','reception','2025-10-15 18:30:52','','0000-00-00 00:00:00'),(0,0,766,'2025-10-15','2026-01-14',797,0,'','','0000-00-00','reception','2025-10-15 18:34:00','','0000-00-00 00:00:00'),(0,0,767,'2025-10-15','2026-01-14',798,0,'','','0000-00-00','drashti','2025-10-15 18:34:41','','0000-00-00 00:00:00'),(0,0,768,'2025-10-15','2026-01-14',799,0,'','','0000-00-00','janvi','2025-10-15 18:35:19','','0000-00-00 00:00:00'),(0,0,769,'2025-10-15','2026-01-14',800,0,'','','0000-00-00','janvi','2025-10-15 18:36:23','','0000-00-00 00:00:00'),(0,0,770,'2025-10-15','2026-01-14',801,0,'','','0000-00-00','janvi','2025-10-15 18:38:56','','0000-00-00 00:00:00'),(0,0,771,'2025-10-15','2026-01-14',802,0,'','','0000-00-00','drashti','2025-10-15 18:39:59','','0000-00-00 00:00:00'),(0,0,772,'2025-10-15','2026-01-14',803,0,'','','0000-00-00','manshi','2025-10-15 18:40:21','','0000-00-00 00:00:00'),(0,0,773,'2025-10-15','2026-01-14',804,0,'','','0000-00-00','drashti','2025-10-15 18:42:46','','0000-00-00 00:00:00'),(0,0,774,'2025-10-15','2026-01-14',805,0,'','','0000-00-00','reception','2025-10-15 18:49:02','','0000-00-00 00:00:00'),(0,0,775,'2025-10-15','2026-01-14',806,0,'','','0000-00-00','janvi','2025-10-15 18:51:25','','0000-00-00 00:00:00'),(0,0,776,'2025-10-15','2026-01-14',807,0,'','','0000-00-00','reception','2025-10-15 18:54:03','','0000-00-00 00:00:00'),(0,0,777,'2025-10-15','2026-01-14',808,0,'','','0000-00-00','reception','2025-10-15 19:08:07','','0000-00-00 00:00:00'),(0,0,778,'2025-10-15','2026-01-14',809,0,'','','0000-00-00','janvi','2025-10-15 19:09:57','','0000-00-00 00:00:00'),(0,0,779,'2025-10-15','2026-01-14',810,0,'','','0000-00-00','reception','2025-10-15 19:21:20','','0000-00-00 00:00:00'),(0,0,780,'2025-10-15','2026-01-14',811,0,'','','0000-00-00','drashti','2025-10-15 19:24:29','','0000-00-00 00:00:00'),(0,0,781,'2025-10-15','2026-01-14',812,0,'','','0000-00-00','janvi','2025-10-15 19:24:46','','0000-00-00 00:00:00'),(0,0,782,'2025-10-15','2026-01-14',813,0,'','','0000-00-00','janvi','2025-10-15 19:37:36','','0000-00-00 00:00:00'),(0,0,783,'2025-10-15','2026-01-14',814,0,'','','0000-00-00','reception','2025-10-15 19:38:10','','0000-00-00 00:00:00'),(0,0,784,'2025-10-15','2026-01-14',815,0,'','','0000-00-00','reception','2025-10-15 19:42:37','','0000-00-00 00:00:00'),(0,0,785,'2025-10-15','2026-01-14',816,0,'','','0000-00-00','janvi','2025-10-15 19:43:44','','0000-00-00 00:00:00'),(0,0,786,'2025-10-15','2026-01-14',817,0,'','','0000-00-00','reception','2025-10-15 19:57:50','','0000-00-00 00:00:00'),(0,0,787,'2025-10-15','2026-01-14',818,0,'','','0000-00-00','reception','2025-10-15 20:03:51','','0000-00-00 00:00:00'),(0,0,788,'2025-10-15','2026-01-14',819,0,'','','0000-00-00','reception','2025-10-15 20:05:31','','0000-00-00 00:00:00'),(0,0,789,'2025-10-15','2026-01-14',820,0,'','','0000-00-00','janvi','2025-10-15 20:08:02','','0000-00-00 00:00:00'),(0,0,790,'2025-10-16','2026-01-15',821,0,'','','0000-00-00','shweta','2025-10-16 09:03:35','','0000-00-00 00:00:00'),(0,0,791,'2025-10-16','2026-01-15',822,0,'','','0000-00-00','reception','2025-10-16 09:14:01','','0000-00-00 00:00:00'),(0,0,792,'2025-10-16','2026-01-15',823,0,'','','0000-00-00','reception','2025-10-16 09:27:59','','0000-00-00 00:00:00'),(0,0,793,'2025-10-16','2026-01-15',824,0,'','','0000-00-00','reception','2025-10-16 09:34:13','','0000-00-00 00:00:00'),(0,0,794,'2025-10-16','2026-01-15',825,0,'','','0000-00-00','reception','2025-10-16 09:36:16','','0000-00-00 00:00:00'),(0,0,795,'2025-10-16','2026-01-15',826,0,'','','0000-00-00','reception','2025-10-16 09:48:15','','0000-00-00 00:00:00'),(0,0,796,'2025-10-16','2026-01-15',827,0,'','','0000-00-00','reception','2025-10-16 10:11:41','','0000-00-00 00:00:00'),(0,0,797,'2025-10-16','2026-01-15',828,0,'','','0000-00-00','drashti','2025-10-16 10:16:41','','0000-00-00 00:00:00'),(0,0,798,'2025-10-16','2026-01-15',829,0,'','','0000-00-00','reception','2025-10-16 10:19:26','','0000-00-00 00:00:00'),(0,0,799,'2025-10-16','2026-01-15',830,0,'','','0000-00-00','reception','2025-10-16 10:21:35','','0000-00-00 00:00:00'),(0,0,800,'2025-10-16','2026-01-15',831,0,'','','0000-00-00','reception','2025-10-16 10:24:03','','0000-00-00 00:00:00'),(0,0,801,'2025-10-16','2026-01-15',832,0,'','','0000-00-00','reception','2025-10-16 10:28:47','','0000-00-00 00:00:00'),(0,0,802,'2025-10-16','2026-01-15',833,0,'','','0000-00-00','reception','2025-10-16 10:33:23','','0000-00-00 00:00:00'),(0,0,803,'2025-10-16','2026-01-15',834,0,'','','0000-00-00','drashti','2025-10-16 10:34:20','','0000-00-00 00:00:00'),(0,0,804,'2025-10-16','2026-01-15',835,0,'','','0000-00-00','reception','2025-10-16 10:38:26','','0000-00-00 00:00:00'),(0,0,805,'2025-10-16','2026-01-15',836,0,'','','0000-00-00','janvi','2025-10-16 10:42:44','','0000-00-00 00:00:00'),(0,0,806,'2025-10-16','2026-01-15',837,0,'','','0000-00-00','reception','2025-10-16 10:44:08','','0000-00-00 00:00:00'),(0,0,807,'2025-10-16','2026-01-15',838,0,'','','0000-00-00','drashti','2025-10-16 10:44:56','','0000-00-00 00:00:00'),(0,0,808,'2025-10-16','2026-01-15',839,0,'','','0000-00-00','janvi','2025-10-16 10:48:08','','0000-00-00 00:00:00'),(0,0,809,'2025-10-16','2026-01-15',840,0,'','','0000-00-00','janvi','2025-10-16 10:50:43','','0000-00-00 00:00:00'),(0,0,810,'2025-10-16','2026-01-15',841,0,'','','0000-00-00','reception','2025-10-16 10:51:19','','0000-00-00 00:00:00'),(0,0,811,'2025-10-16','2026-01-15',842,0,'','','0000-00-00','janvi','2025-10-16 10:56:01','','0000-00-00 00:00:00'),(0,0,812,'2025-10-16','2026-01-15',843,0,'','','0000-00-00','reception','2025-10-16 10:57:39','','0000-00-00 00:00:00'),(0,0,813,'2025-10-16','2026-01-15',844,0,'','','0000-00-00','reception','2025-10-16 11:06:20','','0000-00-00 00:00:00'),(0,0,814,'2025-10-16','2026-01-15',845,0,'','','0000-00-00','drashti','2025-10-16 11:08:21','','0000-00-00 00:00:00'),(0,0,815,'2025-10-16','2026-01-15',846,0,'','','0000-00-00','drashti','2025-10-16 11:12:49','','0000-00-00 00:00:00'),(0,0,816,'2025-10-16','2026-01-15',847,0,'','','0000-00-00','drashti','2025-10-16 11:14:32','','0000-00-00 00:00:00'),(0,0,817,'2025-10-16','2026-01-15',848,0,'','','0000-00-00','reception','2025-10-16 11:23:52','','0000-00-00 00:00:00'),(0,0,818,'2025-10-16','2026-01-15',849,0,'','','0000-00-00','drashti','2025-10-16 11:25:13','','0000-00-00 00:00:00'),(0,0,819,'2025-10-16','2026-01-15',850,0,'','','0000-00-00','janvi','2025-10-16 11:26:21','','0000-00-00 00:00:00'),(0,0,820,'2025-10-16','2026-01-15',851,0,'','','0000-00-00','drashti','2025-10-16 11:28:00','','0000-00-00 00:00:00'),(0,0,821,'2025-10-16','2026-01-15',852,0,'','','0000-00-00','drashti','2025-10-16 11:29:52','','0000-00-00 00:00:00'),(0,0,822,'2025-10-16','2026-01-15',853,0,'','','0000-00-00','reception','2025-10-16 11:31:47','','0000-00-00 00:00:00'),(0,0,823,'2025-10-16','2026-01-15',854,0,'','','0000-00-00','reception','2025-10-16 11:33:34','','0000-00-00 00:00:00'),(0,0,824,'2025-10-16','2026-01-15',855,0,'','','0000-00-00','drashti','2025-10-16 11:35:44','','0000-00-00 00:00:00'),(0,0,825,'2025-10-16','2026-01-15',856,0,'','','0000-00-00','janvi','2025-10-16 11:41:52','','0000-00-00 00:00:00'),(0,0,826,'2025-10-16','2026-01-15',857,0,'','','0000-00-00','reception','2025-10-16 11:42:25','','0000-00-00 00:00:00'),(0,0,827,'2025-10-16','2026-01-15',858,0,'','','0000-00-00','reception','2025-10-16 11:43:34','','0000-00-00 00:00:00'),(0,0,828,'2025-10-16','2026-01-15',859,0,'','','0000-00-00','reception','2025-10-16 11:45:05','','0000-00-00 00:00:00'),(0,0,829,'2025-10-16','2026-01-15',860,0,'','','0000-00-00','drashti','2025-10-16 11:45:49','','0000-00-00 00:00:00'),(0,0,830,'2025-10-16','2026-01-15',861,0,'','','0000-00-00','reception','2025-10-16 11:47:26','','0000-00-00 00:00:00'),(0,0,831,'2025-10-16','2026-01-15',862,0,'','','0000-00-00','drashti','2025-10-16 11:54:01','','0000-00-00 00:00:00'),(0,0,832,'2025-10-16','2026-01-15',863,0,'','','0000-00-00','reception','2025-10-16 11:56:59','','0000-00-00 00:00:00'),(0,0,833,'2025-10-16','2026-01-15',864,0,'','','0000-00-00','drashti','2025-10-16 11:59:56','','0000-00-00 00:00:00'),(0,0,834,'2025-10-16','2026-01-15',865,0,'','','0000-00-00','janvi','2025-10-16 12:12:33','','0000-00-00 00:00:00'),(0,0,835,'2025-10-16','2026-01-15',866,0,'','','0000-00-00','drashti','2025-10-16 12:14:11','','0000-00-00 00:00:00'),(0,0,836,'2025-10-16','2026-01-15',867,0,'','','0000-00-00','manshi','2025-10-16 12:15:51','','0000-00-00 00:00:00'),(0,0,837,'2025-10-16','2026-01-15',868,0,'','','0000-00-00','drashti','2025-10-16 12:18:44','','0000-00-00 00:00:00'),(0,0,838,'2025-10-16','2026-01-15',869,0,'','','0000-00-00','reception','2025-10-16 12:23:36','','0000-00-00 00:00:00'),(0,0,839,'2025-10-16','2026-01-15',870,0,'','','0000-00-00','manshi','2025-10-16 12:26:38','','0000-00-00 00:00:00'),(0,0,840,'2025-10-16','2026-01-15',871,0,'','','0000-00-00','drashti','2025-10-16 12:27:28','','0000-00-00 00:00:00'),(0,0,841,'2025-10-16','2026-01-15',872,0,'','','0000-00-00','manshi','2025-10-16 12:32:45','','0000-00-00 00:00:00'),(0,0,842,'2025-10-16','2026-01-15',873,0,'','','0000-00-00','reception','2025-10-16 12:33:15','','0000-00-00 00:00:00'),(0,0,843,'2025-10-16','2026-01-15',874,0,'','','0000-00-00','reception','2025-10-16 12:38:02','','0000-00-00 00:00:00'),(0,0,844,'2025-10-16','2026-01-15',875,0,'','','0000-00-00','drashti','2025-10-16 12:50:44','','0000-00-00 00:00:00'),(0,0,845,'2025-10-16','2026-01-15',876,0,'','','0000-00-00','janvi','2025-10-16 12:53:06','','0000-00-00 00:00:00'),(0,0,846,'2025-10-16','2026-01-15',877,0,'','','0000-00-00','janvi','2025-10-16 13:11:48','','0000-00-00 00:00:00'),(0,0,847,'2025-10-16','2026-01-15',878,0,'','','0000-00-00','janvi','2025-10-16 13:27:00','','0000-00-00 00:00:00'),(0,0,848,'2025-10-16','2026-01-15',880,0,'','','0000-00-00','reception','2025-10-16 14:39:00','','0000-00-00 00:00:00'),(0,0,849,'2025-10-16','2026-01-15',881,0,'','','0000-00-00','reception','2025-10-16 15:01:14','','0000-00-00 00:00:00'),(0,0,850,'2025-10-16','2026-01-15',882,0,'','','0000-00-00','drashti','2025-10-16 16:36:31','','0000-00-00 00:00:00'),(0,0,851,'2025-10-16','2026-01-15',883,0,'','','0000-00-00','reception','2025-10-16 16:46:05','','0000-00-00 00:00:00'),(0,0,852,'2025-10-16','2026-01-15',884,0,'','','0000-00-00','reception','2025-10-16 16:54:08','','0000-00-00 00:00:00'),(0,0,853,'2025-10-16','2026-01-15',885,0,'','','0000-00-00','reception','2025-10-16 16:59:55','','0000-00-00 00:00:00'),(0,0,854,'2025-10-16','2026-01-15',886,0,'','','0000-00-00','drashti','2025-10-16 17:01:58','','0000-00-00 00:00:00'),(0,0,855,'2025-10-16','2026-01-15',887,0,'','','0000-00-00','reception','2025-10-16 17:10:57','','0000-00-00 00:00:00'),(0,0,856,'2025-10-16','2026-01-15',888,0,'','','0000-00-00','drashti','2025-10-16 17:11:55','','0000-00-00 00:00:00'),(0,0,857,'2025-10-16','2026-01-15',889,0,'','','0000-00-00','drashti','2025-10-16 17:20:16','','0000-00-00 00:00:00'),(0,0,858,'2025-10-16','2026-01-15',890,0,'','','0000-00-00','reception','2025-10-16 17:23:28','','0000-00-00 00:00:00'),(0,0,859,'2025-10-16','2026-01-15',891,0,'','','0000-00-00','manshi','2025-10-16 17:34:28','','0000-00-00 00:00:00'),(0,0,860,'2025-10-16','2026-01-15',892,0,'','','0000-00-00','reception','2025-10-16 17:34:45','','0000-00-00 00:00:00'),(0,0,861,'2025-10-16','2026-01-15',893,0,'','','0000-00-00','janvi','2025-10-16 17:36:03','','0000-00-00 00:00:00'),(0,0,862,'2025-10-16','2026-01-15',894,0,'','','0000-00-00','reception','2025-10-16 17:36:10','','0000-00-00 00:00:00'),(0,0,863,'2025-10-16','2026-01-15',895,0,'','','0000-00-00','drashti','2025-10-16 17:41:04','','0000-00-00 00:00:00'),(0,0,864,'2025-10-16','2026-01-15',896,0,'','','0000-00-00','reception','2025-10-16 17:42:48','','0000-00-00 00:00:00'),(0,0,865,'2025-10-16','2026-01-15',897,0,'','','0000-00-00','janvi','2025-10-16 17:43:04','','0000-00-00 00:00:00'),(0,0,866,'2025-10-16','2026-01-15',898,0,'','','0000-00-00','manshi','2025-10-16 17:46:11','','0000-00-00 00:00:00'),(0,0,867,'2025-10-16','2026-01-15',899,0,'','','0000-00-00','drashti','2025-10-16 17:46:19','','0000-00-00 00:00:00'),(0,0,868,'2025-10-16','2026-01-15',900,0,'','','0000-00-00','drashti','2025-10-16 17:49:47','','0000-00-00 00:00:00'),(0,0,869,'2025-10-16','2026-01-15',901,0,'','','0000-00-00','reception','2025-10-16 17:51:14','','0000-00-00 00:00:00'),(0,0,870,'2025-10-16','2026-01-15',902,0,'','','0000-00-00','drashti','2025-10-16 17:51:44','','0000-00-00 00:00:00'),(0,0,871,'2025-10-16','2026-01-15',903,0,'','','0000-00-00','janvi','2025-10-16 17:53:01','','0000-00-00 00:00:00'),(0,0,872,'2025-10-16','2026-01-15',904,0,'','','0000-00-00','reception','2025-10-16 17:54:02','','0000-00-00 00:00:00'),(0,0,873,'2025-10-16','2026-01-15',905,0,'','','0000-00-00','drashti','2025-10-16 17:57:13','','0000-00-00 00:00:00'),(0,0,874,'2025-10-16','2026-01-15',906,0,'','','0000-00-00','drashti','2025-10-16 17:59:14','','0000-00-00 00:00:00'),(0,0,875,'2025-10-16','2026-01-15',907,0,'','','0000-00-00','reception','2025-10-16 17:59:34','','0000-00-00 00:00:00'),(0,0,876,'2025-10-16','2026-01-15',908,0,'','','0000-00-00','drashti','2025-10-16 18:02:07','','0000-00-00 00:00:00'),(0,0,877,'2025-10-16','2026-01-15',909,0,'','','0000-00-00','drashti','2025-10-16 18:05:23','','0000-00-00 00:00:00'),(0,0,878,'2025-10-16','2026-01-15',910,0,'','','0000-00-00','manshi','2025-10-16 18:06:36','','0000-00-00 00:00:00'),(0,0,879,'2025-10-16','2026-01-15',911,0,'','','0000-00-00','janvi','2025-10-16 18:07:27','','0000-00-00 00:00:00'),(0,0,880,'2025-10-16','2026-01-15',912,0,'','','0000-00-00','reception','2025-10-16 18:08:04','','0000-00-00 00:00:00'),(0,0,881,'2025-10-16','2026-01-15',913,0,'','','0000-00-00','manshi','2025-10-16 18:26:41','','0000-00-00 00:00:00'),(0,0,882,'2025-10-16','2026-01-15',914,0,'','','0000-00-00','drashti','2025-10-16 18:26:50','','0000-00-00 00:00:00'),(0,0,883,'2025-10-16','2026-01-15',915,0,'','','0000-00-00','reception','2025-10-16 18:29:30','','0000-00-00 00:00:00'),(0,0,884,'2025-10-16','2026-01-15',916,0,'','','0000-00-00','reception','2025-10-16 18:32:38','','0000-00-00 00:00:00'),(0,0,885,'2025-10-16','2026-01-15',917,0,'','','0000-00-00','reception','2025-10-16 18:40:11','','0000-00-00 00:00:00'),(0,0,886,'2025-10-16','2026-01-15',918,0,'','','0000-00-00','manshi','2025-10-16 18:45:40','','0000-00-00 00:00:00'),(0,0,887,'2025-10-16','2026-01-15',919,0,'','','0000-00-00','janvi','2025-10-16 18:47:08','','0000-00-00 00:00:00'),(0,0,888,'2025-10-16','2026-01-15',920,0,'','','0000-00-00','janvi','2025-10-16 18:51:23','','0000-00-00 00:00:00'),(0,0,889,'2025-10-16','2026-01-15',921,0,'','','0000-00-00','reception','2025-10-16 18:51:45','','0000-00-00 00:00:00'),(0,0,890,'2025-10-16','2026-01-15',922,0,'','','0000-00-00','janvi','2025-10-16 18:53:50','','0000-00-00 00:00:00'),(0,0,891,'2025-10-16','2026-01-15',923,0,'','','0000-00-00','drashti','2025-10-16 18:55:06','','0000-00-00 00:00:00'),(0,0,892,'2025-10-16','2026-01-15',924,0,'','','0000-00-00','drashti','2025-10-16 18:58:14','','0000-00-00 00:00:00'),(0,0,893,'2025-10-16','2026-01-15',925,0,'','','0000-00-00','drashti','2025-10-16 19:01:36','','0000-00-00 00:00:00'),(0,0,894,'2025-10-16','2026-01-15',926,0,'','','0000-00-00','janvi','2025-10-16 19:02:40','','0000-00-00 00:00:00'),(0,0,895,'2025-10-16','2026-01-15',927,0,'','','0000-00-00','reception','2025-10-16 19:02:49','','0000-00-00 00:00:00'),(0,0,896,'2025-10-16','2026-01-15',928,0,'','','0000-00-00','janvi','2025-10-16 19:07:19','','0000-00-00 00:00:00'),(0,0,897,'2025-10-16','2026-01-15',929,0,'','','0000-00-00','drashti','2025-10-16 19:30:46','','0000-00-00 00:00:00'),(0,0,898,'2025-10-16','2026-01-15',930,0,'','','0000-00-00','drashti','2025-10-16 19:35:48','','0000-00-00 00:00:00'),(0,0,899,'2025-10-16','2026-01-15',931,0,'','','0000-00-00','reception','2025-10-16 19:49:21','','0000-00-00 00:00:00'),(0,0,900,'2025-10-16','2026-01-15',926,0,'','','0000-00-00','manshi','2025-10-16 19:54:11','','0000-00-00 00:00:00'),(0,0,901,'2025-10-16','2026-01-15',932,0,'','','0000-00-00','manshi','2025-10-16 20:07:56','','0000-00-00 00:00:00'),(0,0,902,'2025-10-17','2026-01-16',934,0,'','','0000-00-00','shweta','2025-10-17 09:10:30','','0000-00-00 00:00:00'),(0,0,903,'2025-10-17','2026-01-16',935,0,'','','0000-00-00','shweta','2025-10-17 09:12:38','','0000-00-00 00:00:00'),(0,0,904,'2025-10-17','2026-01-16',936,0,'','','0000-00-00','shweta','2025-10-17 09:16:10','','0000-00-00 00:00:00'),(0,0,905,'2025-10-17','2026-01-16',937,0,'','','0000-00-00','janvi','2025-10-17 09:18:09','','0000-00-00 00:00:00'),(0,0,906,'2025-10-17','2026-01-16',63,0,'','','0000-00-00','janvi','2025-10-17 09:21:54','','0000-00-00 00:00:00'),(0,0,907,'2025-10-17','2026-01-16',938,0,'','','0000-00-00','janvi','2025-10-17 09:30:17','','0000-00-00 00:00:00'),(0,0,908,'2025-10-17','2026-01-16',939,0,'','','0000-00-00','janvi','2025-10-17 09:43:42','','0000-00-00 00:00:00'),(0,0,909,'2025-10-17','2026-01-16',940,0,'','','0000-00-00','reception','2025-10-17 09:47:12','','0000-00-00 00:00:00'),(0,0,910,'2025-10-17','2026-01-16',941,0,'','','0000-00-00','janvi','2025-10-17 09:48:41','','0000-00-00 00:00:00'),(0,0,911,'2025-10-17','2026-01-16',942,0,'','','0000-00-00','reception','2025-10-17 10:01:47','','0000-00-00 00:00:00'),(0,0,912,'2025-10-17','2026-01-16',943,0,'','','0000-00-00','reception','2025-10-17 10:05:38','','0000-00-00 00:00:00'),(0,0,913,'2025-10-17','2026-01-16',944,0,'','','0000-00-00','reception','2025-10-17 10:13:33','','0000-00-00 00:00:00'),(0,0,914,'2025-10-17','2026-01-16',945,0,'','','0000-00-00','janvi','2025-10-17 10:21:38','','0000-00-00 00:00:00'),(0,0,915,'2025-10-17','2026-01-16',946,0,'','','0000-00-00','janvi','2025-10-17 10:22:39','','0000-00-00 00:00:00'),(0,0,916,'2025-10-17','2026-01-16',947,0,'','','0000-00-00','janvi','2025-10-17 10:27:38','','0000-00-00 00:00:00'),(0,0,917,'2025-10-17','2026-01-16',948,0,'','','0000-00-00','reception','2025-10-17 10:32:00','','0000-00-00 00:00:00'),(0,0,918,'2025-10-17','2026-01-16',949,0,'','','0000-00-00','reception','2025-10-17 10:47:31','','0000-00-00 00:00:00'),(0,0,919,'2025-10-17','2026-01-16',950,0,'','','0000-00-00','drashti','2025-10-17 10:49:22','','0000-00-00 00:00:00'),(0,0,920,'2025-10-17','2026-01-16',951,0,'','','0000-00-00','janvi','2025-10-17 10:50:58','','0000-00-00 00:00:00'),(0,0,921,'2025-10-17','2026-01-16',952,0,'','','0000-00-00','reception','2025-10-17 10:51:00','','0000-00-00 00:00:00'),(0,0,922,'2025-10-17','2026-01-16',953,0,'','','0000-00-00','reception','2025-10-17 10:53:45','','0000-00-00 00:00:00'),(0,0,923,'2025-10-17','2026-01-16',954,0,'','','0000-00-00','manshi','2025-10-17 10:54:38','','0000-00-00 00:00:00'),(0,0,924,'2025-10-17','2026-01-16',955,0,'','','0000-00-00','reception','2025-10-17 10:57:17','','0000-00-00 00:00:00'),(0,0,925,'2025-10-17','2026-01-16',956,0,'','','0000-00-00','drashti','2025-10-17 10:57:27','','0000-00-00 00:00:00'),(0,0,926,'2025-10-17','2026-01-16',957,0,'','','0000-00-00','reception','2025-10-17 10:59:43','','0000-00-00 00:00:00'),(0,0,927,'2025-10-17','2026-01-16',958,0,'','','0000-00-00','drashti','2025-10-17 11:12:07','','0000-00-00 00:00:00'),(0,0,928,'2025-10-17','2026-01-16',959,0,'','','0000-00-00','reception','2025-10-17 11:13:21','','0000-00-00 00:00:00'),(0,0,929,'2025-10-17','2026-01-16',960,0,'','','0000-00-00','reception','2025-10-17 11:16:41','','0000-00-00 00:00:00'),(0,0,930,'2025-10-17','2026-01-16',961,0,'','','0000-00-00','janvi','2025-10-17 11:20:45','','0000-00-00 00:00:00'),(0,0,931,'2025-10-17','2026-01-16',962,0,'','','0000-00-00','drashti','2025-10-17 11:21:02','','0000-00-00 00:00:00'),(0,0,932,'2025-10-17','2026-01-16',963,0,'','','0000-00-00','reception','2025-10-17 11:29:02','','0000-00-00 00:00:00'),(0,0,933,'2025-10-17','2026-01-16',964,0,'','','0000-00-00','drashti','2025-10-17 11:33:17','','0000-00-00 00:00:00'),(0,0,934,'2025-10-17','2026-01-16',965,0,'','','0000-00-00','reception','2025-10-17 11:34:10','','0000-00-00 00:00:00'),(0,0,935,'2025-10-17','2026-01-16',966,0,'','','0000-00-00','reception','2025-10-17 11:37:47','','0000-00-00 00:00:00'),(0,0,936,'2025-10-17','2026-01-16',967,0,'','','0000-00-00','janvi','2025-10-17 11:38:34','','0000-00-00 00:00:00'),(0,0,937,'2025-10-17','2026-01-16',968,0,'','','0000-00-00','reception','2025-10-17 11:39:51','','0000-00-00 00:00:00'),(0,0,938,'2025-10-17','2026-01-16',969,0,'','','0000-00-00','drashti','2025-10-17 11:40:42','','0000-00-00 00:00:00'),(0,0,939,'2025-10-17','2026-01-16',970,0,'','','0000-00-00','reception','2025-10-17 11:41:56','','0000-00-00 00:00:00'),(0,0,940,'2025-10-17','2026-01-16',971,0,'','','0000-00-00','reception','2025-10-17 11:51:20','','0000-00-00 00:00:00'),(0,0,941,'2025-10-17','2026-01-16',972,0,'','','0000-00-00','manshi','2025-10-17 11:51:44','','0000-00-00 00:00:00'),(0,0,942,'2025-10-17','2026-01-16',973,0,'','','0000-00-00','janvi','2025-10-17 11:55:06','','0000-00-00 00:00:00'),(0,0,943,'2025-10-17','2026-01-16',974,0,'','','0000-00-00','reception','2025-10-17 12:00:37','','0000-00-00 00:00:00'),(0,0,944,'2025-10-17','2026-01-16',975,0,'','','0000-00-00','drashti','2025-10-17 12:03:24','','0000-00-00 00:00:00'),(0,0,945,'2025-10-17','2026-01-16',976,0,'','','0000-00-00','reception','2025-10-17 12:03:57','','0000-00-00 00:00:00'),(0,0,946,'2025-10-17','2026-01-16',977,0,'','','0000-00-00','janvi','2025-10-17 12:09:00','','0000-00-00 00:00:00'),(0,0,947,'2025-10-17','2026-01-16',978,0,'','','0000-00-00','reception','2025-10-17 12:12:25','','0000-00-00 00:00:00'),(0,0,948,'2025-10-17','2026-01-16',979,0,'','','0000-00-00','janvi','2025-10-17 12:14:15','','0000-00-00 00:00:00'),(0,0,949,'2025-10-17','2026-01-16',980,0,'','','0000-00-00','drashti','2025-10-17 12:19:56','','0000-00-00 00:00:00'),(0,0,950,'2025-10-17','2026-01-16',981,0,'','','0000-00-00','reception','2025-10-17 12:29:06','','0000-00-00 00:00:00'),(0,0,951,'2025-10-17','2026-01-16',982,0,'','','0000-00-00','drashti','2025-10-17 12:29:40','','0000-00-00 00:00:00'),(0,0,952,'2025-10-17','2026-01-16',983,0,'','','0000-00-00','reception','2025-10-17 12:41:04','','0000-00-00 00:00:00'),(0,0,953,'2025-10-17','2026-01-16',984,0,'','','0000-00-00','drashti','2025-10-17 12:42:09','','0000-00-00 00:00:00'),(0,0,954,'2025-10-17','2026-01-16',985,0,'','','0000-00-00','reception','2025-10-17 12:44:23','','0000-00-00 00:00:00'),(0,0,955,'2025-10-17','2026-01-16',986,0,'','','0000-00-00','reception','2025-10-17 13:22:01','','0000-00-00 00:00:00'),(0,0,956,'2025-10-17','2026-01-16',988,0,'','','0000-00-00','shweta','2025-10-17 14:55:52','','0000-00-00 00:00:00'),(0,0,957,'2025-10-17','2026-01-16',990,0,'','','0000-00-00','shweta','2025-10-17 15:47:15','','0000-00-00 00:00:00'),(0,0,958,'2025-10-17','2026-01-16',991,0,'','','0000-00-00','reception','2025-10-17 16:37:17','','0000-00-00 00:00:00'),(0,0,959,'2025-10-17','2026-01-16',992,0,'','','0000-00-00','reception','2025-10-17 16:39:29','','0000-00-00 00:00:00'),(0,0,960,'2025-10-17','2026-01-16',993,0,'','','0000-00-00','reception','2025-10-17 16:40:54','','0000-00-00 00:00:00'),(0,0,961,'2025-10-17','2026-01-16',994,0,'','','0000-00-00','reception','2025-10-17 16:47:57','','0000-00-00 00:00:00'),(0,0,962,'2025-10-17','2026-01-16',995,0,'','','0000-00-00','reception','2025-10-17 16:51:39','','0000-00-00 00:00:00'),(0,0,963,'2025-10-17','2026-01-16',996,0,'','','0000-00-00','reception','2025-10-17 16:55:04','','0000-00-00 00:00:00'),(0,0,964,'2025-10-17','2026-01-16',997,0,'','','0000-00-00','reception','2025-10-17 16:58:53','','0000-00-00 00:00:00'),(0,0,965,'2025-10-17','2026-01-16',998,0,'','','0000-00-00','drashti','2025-10-17 17:00:17','','0000-00-00 00:00:00'),(0,0,966,'2025-10-17','2026-01-16',999,0,'','','0000-00-00','reception','2025-10-17 17:01:37','','0000-00-00 00:00:00'),(0,0,967,'2025-10-17','2026-01-16',1000,0,'','','0000-00-00','drashti','2025-10-17 17:01:53','','0000-00-00 00:00:00'),(0,0,968,'2025-10-17','2026-01-16',1001,0,'','','0000-00-00','drashti','2025-10-17 17:03:25','','0000-00-00 00:00:00'),(0,0,969,'2025-10-17','2026-01-16',1002,0,'','','0000-00-00','manshi','2025-10-17 17:17:06','','0000-00-00 00:00:00'),(0,0,970,'2025-10-17','2026-01-16',1003,0,'','','0000-00-00','janvi','2025-10-17 17:24:37','','0000-00-00 00:00:00'),(0,0,971,'2025-10-17','2026-01-16',1004,0,'','','0000-00-00','reception','2025-10-17 17:25:36','','0000-00-00 00:00:00'),(0,0,972,'2025-10-17','2026-01-16',1005,0,'','','0000-00-00','reception','2025-10-17 17:30:29','','0000-00-00 00:00:00'),(0,0,973,'2025-10-17','2026-01-16',1006,0,'','','0000-00-00','janvi','2025-10-17 17:31:22','','0000-00-00 00:00:00'),(0,0,974,'2025-10-17','2026-01-16',1007,0,'','','0000-00-00','reception','2025-10-17 17:38:34','','0000-00-00 00:00:00'),(0,0,975,'2025-10-17','2026-01-16',1008,0,'','','0000-00-00','janvi','2025-10-17 17:39:31','','0000-00-00 00:00:00'),(0,0,976,'2025-10-17','2026-01-16',1009,0,'','','0000-00-00','drashti','2025-10-17 17:41:14','','0000-00-00 00:00:00'),(0,0,977,'2025-10-17','2026-01-16',1010,0,'','','0000-00-00','janvi','2025-10-17 17:42:56','','0000-00-00 00:00:00'),(0,0,978,'2025-10-17','2026-01-16',1011,0,'','','0000-00-00','reception','2025-10-17 17:43:08','','0000-00-00 00:00:00'),(0,0,979,'2025-10-17','2026-01-16',1012,0,'','','0000-00-00','reception','2025-10-17 17:46:03','','0000-00-00 00:00:00'),(0,0,980,'2025-10-17','2026-01-16',1013,0,'','','0000-00-00','reception','2025-10-17 17:48:13','','0000-00-00 00:00:00'),(0,0,981,'2025-10-17','2026-01-16',1014,0,'','','0000-00-00','janvi','2025-10-17 17:48:49','','0000-00-00 00:00:00'),(0,0,982,'2025-10-17','2026-01-16',1015,0,'','','0000-00-00','reception','2025-10-17 17:50:49','','0000-00-00 00:00:00'),(0,0,983,'2025-10-17','2026-01-16',403,0,'','','0000-00-00','janvi','2025-10-17 17:51:42','','0000-00-00 00:00:00'),(0,0,984,'2025-10-17','2026-01-16',1016,0,'','','0000-00-00','reception','2025-10-17 17:55:00','','0000-00-00 00:00:00'),(0,0,985,'2025-10-17','2026-01-16',1017,0,'','','0000-00-00','reception','2025-10-17 17:57:40','','0000-00-00 00:00:00'),(0,0,986,'2025-10-17','2026-01-16',1018,0,'','','0000-00-00','reception','2025-10-17 18:02:12','','0000-00-00 00:00:00'),(0,0,987,'2025-10-17','2026-01-16',1019,0,'','','0000-00-00','manshi','2025-10-17 18:02:19','','0000-00-00 00:00:00'),(0,0,988,'2025-10-17','2026-01-16',1020,0,'','','0000-00-00','janvi','2025-10-17 18:02:26','','0000-00-00 00:00:00'),(0,0,989,'2025-10-17','2026-01-16',1021,0,'','','0000-00-00','janvi','2025-10-17 18:05:10','','0000-00-00 00:00:00'),(0,0,990,'2025-10-17','2026-01-16',1022,0,'','','0000-00-00','reception','2025-10-17 18:05:15','','0000-00-00 00:00:00'),(0,0,991,'2025-10-17','2026-01-16',1023,0,'','','0000-00-00','drashti','2025-10-17 18:11:27','','0000-00-00 00:00:00'),(0,0,992,'2025-10-17','2026-01-16',1024,0,'','','0000-00-00','drashti','2025-10-17 18:13:58','','0000-00-00 00:00:00'),(0,0,993,'2025-10-17','2026-01-16',1025,0,'','','0000-00-00','manshi','2025-10-17 18:21:35','','0000-00-00 00:00:00'),(0,0,994,'2025-10-17','2026-01-16',1026,0,'','','0000-00-00','reception','2025-10-17 18:25:22','','0000-00-00 00:00:00'),(0,0,995,'2025-10-17','2026-01-16',1027,0,'','','0000-00-00','reception','2025-10-17 18:28:58','','0000-00-00 00:00:00'),(0,0,996,'2025-10-17','2026-01-16',1028,0,'','','0000-00-00','reception','2025-10-17 18:35:57','','0000-00-00 00:00:00'),(0,0,997,'2025-10-17','2026-01-16',1029,0,'','','0000-00-00','drashti','2025-10-17 18:36:23','','0000-00-00 00:00:00'),(0,0,998,'2025-10-17','2026-01-16',1030,0,'','','0000-00-00','janvi','2025-10-17 18:48:49','','0000-00-00 00:00:00'),(0,0,999,'2025-10-17','2026-01-16',1031,0,'','','0000-00-00','janvi','2025-10-17 18:50:11','','0000-00-00 00:00:00'),(0,0,1000,'2025-10-17','2026-01-16',1032,0,'','','0000-00-00','reception','2025-10-17 19:02:28','','0000-00-00 00:00:00'),(0,0,1001,'2025-10-17','2026-01-16',1033,0,'','','0000-00-00','drashti','2025-10-17 19:10:34','','0000-00-00 00:00:00'),(0,0,1002,'2025-10-17','2026-01-16',1034,0,'','','0000-00-00','janvi','2025-10-17 19:11:45','','0000-00-00 00:00:00'),(0,0,1003,'2025-10-17','2026-01-16',1035,0,'','','0000-00-00','manshi','2025-10-17 19:28:41','','0000-00-00 00:00:00'),(0,0,1004,'2025-10-17','2026-01-16',1036,0,'','','0000-00-00','janvi','2025-10-17 19:33:13','','0000-00-00 00:00:00'),(0,0,1005,'2025-10-17','2026-01-16',1037,0,'','','0000-00-00','manshi','2025-10-17 19:33:38','','0000-00-00 00:00:00'),(0,0,1006,'2025-10-17','2026-01-16',1038,0,'','','0000-00-00','manshi','2025-10-17 19:58:24','','0000-00-00 00:00:00'),(0,0,1007,'2025-10-17','2026-01-16',1039,0,'','','0000-00-00','drashti','2025-10-17 20:08:01','','0000-00-00 00:00:00'),(0,0,1008,'2025-10-18','2026-01-17',1041,0,'','','0000-00-00','shweta','2025-10-18 09:02:33','','0000-00-00 00:00:00'),(0,0,1009,'2025-10-18','2026-01-17',1042,0,'','','0000-00-00','shweta','2025-10-18 09:05:40','','0000-00-00 00:00:00'),(0,0,1010,'2025-10-18','2026-01-17',1043,0,'','','0000-00-00','shweta','2025-10-18 09:08:16','','0000-00-00 00:00:00'),(0,0,1011,'2025-10-18','2026-01-17',1044,0,'','','0000-00-00','reception','2025-10-18 09:41:20','','0000-00-00 00:00:00'),(0,0,1012,'2025-10-18','2026-01-17',1045,0,'','','0000-00-00','reception','2025-10-18 09:42:36','','0000-00-00 00:00:00'),(0,0,1013,'2025-10-18','2026-01-17',1046,0,'','','0000-00-00','reception','2025-10-18 09:48:03','','0000-00-00 00:00:00'),(0,0,1014,'2025-10-18','2026-01-17',1048,0,'','','0000-00-00','reception','2025-10-18 09:50:25','','0000-00-00 00:00:00'),(0,0,1015,'2025-10-18','2026-01-17',1049,0,'','','0000-00-00','janvi','2025-10-18 09:53:42','','0000-00-00 00:00:00'),(0,0,1016,'2025-10-18','2026-01-17',1050,0,'','','0000-00-00','reception','2025-10-18 10:02:08','','0000-00-00 00:00:00'),(0,0,1017,'2025-10-18','2026-01-17',1051,0,'','','0000-00-00','reception','2025-10-18 10:12:10','','0000-00-00 00:00:00'),(0,0,1018,'2025-10-18','2026-01-17',1052,0,'','','0000-00-00','reception','2025-10-18 10:24:35','','0000-00-00 00:00:00'),(0,0,1019,'2025-10-18','2026-01-17',1053,0,'','','0000-00-00','janvi','2025-10-18 10:40:32','','0000-00-00 00:00:00'),(0,0,1020,'2025-10-18','2026-01-17',1054,0,'','','0000-00-00','manshi','2025-10-18 10:45:04','','0000-00-00 00:00:00'),(0,0,1021,'2025-10-18','2026-01-17',1055,0,'','','0000-00-00','reception','2025-10-18 10:53:40','','0000-00-00 00:00:00'),(0,0,1022,'2025-10-18','2026-01-17',1056,0,'','','0000-00-00','reception','2025-10-18 10:55:08','','0000-00-00 00:00:00'),(0,0,1023,'2025-10-18','2026-01-17',1057,0,'','','0000-00-00','drashti','2025-10-18 10:56:25','','0000-00-00 00:00:00'),(0,0,1024,'2025-10-18','2026-01-17',1058,0,'','','0000-00-00','reception','2025-10-18 11:06:23','','0000-00-00 00:00:00'),(0,0,1025,'2025-10-18','2026-01-17',1059,0,'','','0000-00-00','drashti','2025-10-18 11:10:55','','0000-00-00 00:00:00'),(0,0,1026,'2025-10-18','2026-01-17',1060,0,'','','0000-00-00','drashti','2025-10-18 11:17:09','','0000-00-00 00:00:00'),(0,0,1027,'2025-10-18','2026-01-17',1061,0,'','','0000-00-00','reception','2025-10-18 11:18:49','','0000-00-00 00:00:00'),(0,0,1028,'2025-10-18','2026-01-17',1062,0,'','','0000-00-00','reception','2025-10-18 11:21:35','','0000-00-00 00:00:00'),(0,0,1029,'2025-10-18','2026-01-17',1063,0,'','','0000-00-00','drashti','2025-10-18 11:23:03','','0000-00-00 00:00:00'),(0,0,1030,'2025-10-18','2026-01-17',1064,0,'','','0000-00-00','reception','2025-10-18 11:25:57','','0000-00-00 00:00:00'),(0,0,1031,'2025-10-18','2026-01-17',1065,0,'','','0000-00-00','reception','2025-10-18 11:29:01','','0000-00-00 00:00:00'),(0,0,1032,'2025-10-18','2026-01-17',1066,0,'','','0000-00-00','reception','2025-10-18 11:32:24','','0000-00-00 00:00:00'),(0,0,1033,'2025-10-18','2026-01-17',1067,0,'','','0000-00-00','manshi','2025-10-18 11:33:00','','0000-00-00 00:00:00'),(0,0,1034,'2025-10-18','2026-01-17',1068,0,'','','0000-00-00','drashti','2025-10-18 11:34:47','','0000-00-00 00:00:00'),(0,0,1035,'2025-10-18','2026-01-17',1069,0,'','','0000-00-00','janvi','2025-10-18 11:34:55','','0000-00-00 00:00:00'),(0,0,1036,'2025-10-18','2026-01-17',1070,0,'','','0000-00-00','reception','2025-10-18 11:36:01','','0000-00-00 00:00:00'),(0,0,1037,'2025-10-18','2026-01-17',1071,0,'','','0000-00-00','reception','2025-10-18 11:38:41','','0000-00-00 00:00:00'),(0,0,1038,'2025-10-18','2026-01-17',1072,0,'','','0000-00-00','reception','2025-10-18 11:40:17','','0000-00-00 00:00:00'),(0,0,1039,'2025-10-18','2026-01-17',1073,0,'','','0000-00-00','janvi','2025-10-18 11:40:47','','0000-00-00 00:00:00'),(0,0,1040,'2025-10-18','2026-01-17',1074,0,'','','0000-00-00','drashti','2025-10-18 11:41:46','','0000-00-00 00:00:00'),(0,0,1041,'2025-10-18','2026-01-17',1075,0,'','','0000-00-00','reception','2025-10-18 11:42:33','','0000-00-00 00:00:00'),(0,0,1042,'2025-10-18','2026-01-17',1076,0,'','','0000-00-00','reception','2025-10-18 11:44:55','','0000-00-00 00:00:00'),(0,0,1043,'2025-10-18','2026-01-17',1077,0,'','','0000-00-00','janvi','2025-10-18 11:45:46','','0000-00-00 00:00:00'),(0,0,1044,'2025-10-18','2026-01-17',1078,0,'','','0000-00-00','drashti','2025-10-18 11:46:35','','0000-00-00 00:00:00'),(0,0,1045,'2025-10-18','2026-01-17',1079,0,'','','0000-00-00','drashti','2025-10-18 11:50:32','','0000-00-00 00:00:00'),(0,0,1046,'2025-10-18','2026-01-17',1080,0,'','','0000-00-00','drashti','2025-10-18 11:52:24','','0000-00-00 00:00:00'),(0,0,1047,'2025-10-18','2026-01-17',1081,0,'','','0000-00-00','manshi','2025-10-18 11:55:59','','0000-00-00 00:00:00'),(0,0,1048,'2025-10-18','2026-01-17',1082,0,'','','0000-00-00','reception','2025-10-18 12:02:43','','0000-00-00 00:00:00'),(0,0,1049,'2025-10-18','2026-01-17',1083,0,'','','0000-00-00','janvi','2025-10-18 12:04:55','','0000-00-00 00:00:00'),(0,0,1050,'2025-10-18','2026-01-17',1084,0,'','','0000-00-00','reception','2025-10-18 12:07:46','','0000-00-00 00:00:00'),(0,0,1051,'2025-10-18','2026-01-17',1085,0,'','','0000-00-00','reception','2025-10-18 12:16:21','','0000-00-00 00:00:00'),(0,0,1052,'2025-10-18','2026-01-17',606,0,'','','0000-00-00','janvi','2025-10-18 12:24:53','','0000-00-00 00:00:00'),(0,0,1053,'2025-10-18','2026-01-17',1086,0,'','','0000-00-00','drashti','2025-10-18 12:28:05','','0000-00-00 00:00:00'),(0,0,1054,'2025-10-18','2026-01-17',1087,0,'','','0000-00-00','reception','2025-10-18 12:40:48','','0000-00-00 00:00:00'),(0,0,1055,'2025-10-18','2026-01-17',1088,0,'','','0000-00-00','reception','2025-10-18 12:45:16','','0000-00-00 00:00:00'),(0,0,1056,'2025-10-18','2026-01-17',1089,0,'','','0000-00-00','janvi','2025-10-18 13:03:04','','0000-00-00 00:00:00'),(0,0,1057,'2025-10-18','2026-01-17',1090,0,'','','0000-00-00','manshi','2025-10-18 13:25:17','','0000-00-00 00:00:00'),(0,0,1058,'2025-10-18','2026-01-17',1091,0,'','','0000-00-00','reception','2025-10-18 13:51:49','','0000-00-00 00:00:00'),(0,0,1059,'2025-10-18','2026-01-17',1092,0,'','','0000-00-00','janvi','2025-10-18 14:12:44','','0000-00-00 00:00:00'),(0,0,1060,'2025-10-18','2026-01-17',1094,0,'','','0000-00-00','drashti','2025-10-18 16:21:53','','0000-00-00 00:00:00'),(0,0,1061,'2025-10-18','2026-01-17',1096,0,'','','0000-00-00','reception','2025-10-18 17:32:51','','0000-00-00 00:00:00'),(0,0,1062,'2025-10-18','2026-01-17',1097,0,'','','0000-00-00','manshi','2025-10-18 18:21:23','','0000-00-00 00:00:00'),(0,0,1063,'2025-10-18','2026-01-17',607,0,'','','0000-00-00','janvi','2025-10-18 18:24:09','','0000-00-00 00:00:00'),(0,0,1064,'2025-10-18','2026-01-17',1098,0,'','','0000-00-00','manshi','2025-10-18 19:14:58','','0000-00-00 00:00:00'),(0,0,1065,'2025-10-18','2026-01-17',1099,0,'','','0000-00-00','manshi','2025-10-18 19:17:23','','0000-00-00 00:00:00'),(0,0,1066,'2025-10-18','2026-01-17',1100,0,'','','0000-00-00','manshi','2025-10-18 19:36:31','','0000-00-00 00:00:00'),(0,0,1067,'2025-10-23','2026-01-22',1106,0,'','','0000-00-00','drashti','2025-10-23 09:56:00','','0000-00-00 00:00:00'),(0,0,1068,'2025-10-18','2026-01-17',1108,0,'','','0000-00-00','shweta','2025-10-23 11:39:54','','0000-00-00 00:00:00'),(0,0,1069,'2025-10-23','2026-01-22',1109,0,'','','0000-00-00','drashti','2025-10-23 11:41:16','','0000-00-00 00:00:00'),(0,0,1070,'2025-10-23','2026-01-22',1110,0,'','','0000-00-00','drashti','2025-10-23 11:45:11','','0000-00-00 00:00:00'),(0,0,1071,'2025-10-18','2026-01-17',1111,0,'','','0000-00-00','drashti','2025-10-23 11:49:31','','0000-00-00 00:00:00'),(0,0,1072,'2025-10-19','2026-01-18',1112,0,'','','0000-00-00','shweta','2025-10-23 11:52:53','','0000-00-00 00:00:00'),(0,0,1073,'2025-10-19','2026-01-18',1113,0,'','','0000-00-00','shweta','2025-10-23 11:56:39','','0000-00-00 00:00:00'),(0,0,1074,'2025-10-20','2026-01-19',1114,0,'','','0000-00-00','drashti','2025-10-23 12:00:21','','0000-00-00 00:00:00'),(0,0,1075,'2025-10-20','2026-01-19',1115,0,'','','0000-00-00','shweta','2025-10-23 12:00:24','','0000-00-00 00:00:00'),(0,0,1076,'2025-10-21','2026-01-20',1116,0,'','','0000-00-00','shweta','2025-10-23 12:04:10','','0000-00-00 00:00:00'),(0,0,1077,'2025-10-21','2026-01-20',1117,0,'','','0000-00-00','drashti','2025-10-23 12:04:31','','0000-00-00 00:00:00'),(0,0,1078,'2025-10-21','2026-01-20',1118,0,'','','0000-00-00','drashti','2025-10-23 12:10:54','','0000-00-00 00:00:00'),(0,0,1079,'2025-10-22','2026-01-21',1119,0,'','','0000-00-00','shweta','2025-10-23 12:13:57','','0000-00-00 00:00:00'),(0,0,1080,'2025-10-18','2026-01-17',1120,0,'','','0000-00-00','shweta','2025-10-23 12:16:41','','0000-00-00 00:00:00'),(0,0,1081,'2025-10-19','2026-01-18',1121,0,'','','0000-00-00','drashti','2025-10-23 12:20:25','','0000-00-00 00:00:00'),(0,0,1082,'2025-10-19','2026-01-18',1122,0,'','','0000-00-00','shweta','2025-10-23 12:22:34','','0000-00-00 00:00:00'),(0,0,1083,'2025-10-19','2026-01-18',1123,0,'','','0000-00-00','shweta','2025-10-23 12:24:24','','0000-00-00 00:00:00'),(0,0,1084,'2025-10-19','2026-01-18',1124,0,'','','0000-00-00','drashti','2025-10-23 12:24:42','','0000-00-00 00:00:00'),(0,0,1085,'2025-10-20','2026-01-19',714,0,'','','0000-00-00','shweta','2025-10-23 12:30:27','','0000-00-00 00:00:00'),(0,0,1086,'2025-10-19','2026-01-18',1125,0,'','','0000-00-00','drashti','2025-10-23 12:31:21','','0000-00-00 00:00:00'),(0,0,1087,'2025-10-20','2026-01-19',1126,0,'','','0000-00-00','drashti','2025-10-23 12:33:34','','0000-00-00 00:00:00'),(0,0,1088,'2025-10-23','2026-01-22',1127,0,'','','0000-00-00','shweta','2025-10-23 12:43:44','','0000-00-00 00:00:00'),(0,0,1089,'2025-10-20','2026-01-19',1128,0,'','','0000-00-00','drashti','2025-10-23 12:46:11','','0000-00-00 00:00:00'),(0,0,1090,'2025-10-20','2026-01-19',1129,0,'','','0000-00-00','shweta','2025-10-23 12:50:30','','0000-00-00 00:00:00'),(0,0,1091,'2025-10-23','2026-01-22',1130,0,'','','0000-00-00','shweta','2025-10-23 12:56:47','','0000-00-00 00:00:00'),(0,0,1092,'2025-10-23','2026-01-22',1131,0,'','','0000-00-00','drashti','2025-10-23 12:58:12','','0000-00-00 00:00:00'),(0,0,1093,'2025-10-23','2026-01-22',1047,0,'','','0000-00-00','shweta','2025-10-23 12:59:56','','0000-00-00 00:00:00'),(0,0,1094,'2025-10-23','2026-01-22',1132,0,'','','0000-00-00','drashti','2025-10-23 13:00:08','','0000-00-00 00:00:00'),(0,0,1095,'2025-10-21','2026-01-20',1133,0,'','','0000-00-00','shweta','2025-10-23 13:05:28','','0000-00-00 00:00:00'),(0,0,1096,'2025-10-23','2026-01-22',1134,0,'','','0000-00-00','urvashi','2025-10-23 17:27:14','','0000-00-00 00:00:00'),(0,0,1097,'2025-10-23','2026-01-22',1135,0,'','','0000-00-00','urvashi','2025-10-23 17:28:32','','0000-00-00 00:00:00'),(0,0,1098,'2025-10-23','2026-01-22',1136,0,'','','0000-00-00','urvashi','2025-10-23 17:30:40','','0000-00-00 00:00:00'),(0,0,1099,'2025-10-23','2026-01-22',1137,0,'','','0000-00-00','urvashi','2025-10-23 17:34:24','','0000-00-00 00:00:00'),(0,0,1100,'2025-10-23','2026-01-22',1138,0,'','','0000-00-00','urvashi','2025-10-23 17:43:34','','0000-00-00 00:00:00'),(0,0,1101,'2025-10-23','2026-01-22',1139,0,'','','0000-00-00','urvashi','2025-10-23 17:46:53','','0000-00-00 00:00:00'),(0,0,1102,'2025-10-23','2026-01-22',1140,0,'','','0000-00-00','urvashi','2025-10-23 17:56:03','','0000-00-00 00:00:00'),(0,0,1103,'2025-10-23','2026-01-22',1141,0,'','','0000-00-00','urvashi','2025-10-23 18:39:19','','0000-00-00 00:00:00'),(0,0,1104,'2025-10-23','2026-01-22',1142,0,'','','0000-00-00','urvashi','2025-10-23 18:42:53','','0000-00-00 00:00:00'),(0,0,1105,'2025-10-23','2026-01-22',1143,0,'','','0000-00-00','urvashi','2025-10-23 18:45:23','','0000-00-00 00:00:00'),(0,0,1106,'2025-10-23','2026-01-22',1144,0,'','','0000-00-00','urvashi','2025-10-23 18:47:12','','0000-00-00 00:00:00'),(0,0,1107,'2025-10-23','2026-01-22',1145,0,'','','0000-00-00','urvashi','2025-10-23 18:50:26','','0000-00-00 00:00:00'),(0,0,1108,'2025-10-23','2026-01-22',1146,0,'','','0000-00-00','urvashi','2025-10-23 18:55:55','','0000-00-00 00:00:00'),(0,0,1109,'2025-10-23','2026-01-22',1147,0,'','','0000-00-00','urvashi','2025-10-23 18:57:26','','0000-00-00 00:00:00'),(0,0,1110,'2025-10-23','2026-01-22',1148,0,'','','0000-00-00','urvashi','2025-10-23 19:08:28','','0000-00-00 00:00:00'),(0,0,1111,'2025-10-23','2026-01-22',1149,0,'','','0000-00-00','urvashi','2025-10-23 19:10:49','','0000-00-00 00:00:00'),(0,0,1112,'2025-10-23','2026-01-22',1150,0,'','','0000-00-00','urvashi','2025-10-23 19:13:53','','0000-00-00 00:00:00'),(0,0,1113,'2025-10-24','2026-01-23',1153,0,'','','0000-00-00','urvashi','2025-10-24 08:55:31','','0000-00-00 00:00:00'),(0,0,1114,'2025-10-24','2026-01-23',1154,0,'','','0000-00-00','urvashi','2025-10-24 08:57:45','','0000-00-00 00:00:00'),(0,0,1115,'2025-10-24','2026-01-23',1155,0,'','','0000-00-00','urvashi','2025-10-24 09:01:25','','0000-00-00 00:00:00'),(0,0,1116,'2025-10-24','2026-01-23',1156,0,'','','0000-00-00','urvashi','2025-10-24 09:03:43','','0000-00-00 00:00:00'),(0,0,1117,'2025-10-24','2026-01-23',1157,0,'','','0000-00-00','reception','2025-10-24 09:31:01','','0000-00-00 00:00:00'),(0,0,1118,'2025-10-24','2026-01-23',1159,0,'','','0000-00-00','drashti','2025-10-24 10:09:08','','0000-00-00 00:00:00'),(0,0,1119,'2025-10-24','2026-01-23',1160,0,'','','0000-00-00','urvashi','2025-10-24 10:14:07','','0000-00-00 00:00:00'),(0,0,1120,'2025-10-24','2026-01-23',1161,0,'','','0000-00-00','drashti','2025-10-24 10:15:37','','0000-00-00 00:00:00'),(0,0,1121,'2025-10-24','2026-01-23',1162,0,'','','0000-00-00','janvi','2025-10-24 10:16:06','','0000-00-00 00:00:00'),(0,0,1122,'2025-10-24','2026-01-23',1163,0,'','','0000-00-00','drashti','2025-10-24 10:26:24','','0000-00-00 00:00:00'),(0,0,1123,'2025-10-24','2026-01-23',1164,0,'','','0000-00-00','drashti','2025-10-24 10:40:42','','0000-00-00 00:00:00'),(0,0,1124,'2025-10-24','2026-01-23',1165,0,'','','0000-00-00','drashti','2025-10-24 10:43:17','','0000-00-00 00:00:00'),(0,0,1125,'2025-10-24','2026-01-23',1095,0,'','','0000-00-00','manshi','2025-10-24 10:50:58','','0000-00-00 00:00:00'),(0,0,1126,'2025-10-24','2026-01-23',1166,0,'','','0000-00-00','priyanshi','2025-10-24 11:12:21','','0000-00-00 00:00:00'),(0,0,1127,'2025-10-24','2026-01-23',1167,0,'','','0000-00-00','drashti','2025-10-24 11:17:17','','0000-00-00 00:00:00'),(0,0,1128,'2025-10-24','2026-01-23',1168,0,'','','0000-00-00','priyanshi','2025-10-24 11:31:21','','0000-00-00 00:00:00'),(0,0,1129,'2025-10-24','2026-01-23',1169,0,'','','0000-00-00','priyanshi','2025-10-24 11:32:56','','0000-00-00 00:00:00'),(0,0,1130,'2025-10-24','2026-01-23',1170,0,'','','0000-00-00','janvi','2025-10-24 11:35:30','','0000-00-00 00:00:00'),(0,0,1131,'2025-10-24','2026-01-23',1171,0,'','','0000-00-00','drashti','2025-10-24 11:36:44','','0000-00-00 00:00:00'),(0,0,1132,'2025-10-24','2026-01-23',1172,0,'','','0000-00-00','drashti','2025-10-24 11:39:10','','0000-00-00 00:00:00'),(0,0,1133,'2025-10-24','2026-01-23',1173,0,'','','0000-00-00','priyanshi','2025-10-24 11:50:48','','0000-00-00 00:00:00'),(0,0,1134,'2025-10-24','2026-01-23',1174,0,'','','0000-00-00','drashti','2025-10-24 11:51:59','','0000-00-00 00:00:00'),(0,0,1135,'2025-10-24','2026-01-23',1175,0,'','','0000-00-00','priyanshi','2025-10-24 11:58:57','','0000-00-00 00:00:00'),(0,0,1136,'2025-10-24','2026-01-23',1176,0,'','','0000-00-00','priyanshi','2025-10-24 12:04:22','','0000-00-00 00:00:00'),(0,0,1137,'2025-10-24','2026-01-23',1177,0,'','','0000-00-00','priyanshi','2025-10-24 12:06:31','','0000-00-00 00:00:00'),(0,0,1138,'2025-10-24','2026-01-23',1178,0,'','','0000-00-00','drashti','2025-10-24 12:34:02','','0000-00-00 00:00:00'),(0,0,1139,'2025-10-24','2026-01-23',1179,0,'','','0000-00-00','drashti','2025-10-24 12:36:37','','0000-00-00 00:00:00'),(0,0,1140,'2025-10-24','2026-01-23',1180,0,'','','0000-00-00','drashti','2025-10-24 13:48:32','','0000-00-00 00:00:00'),(0,0,1141,'2025-10-24','2026-01-23',1181,0,'','','0000-00-00','drashti','2025-10-24 16:35:58','','0000-00-00 00:00:00'),(0,0,1142,'2025-10-24','2026-01-23',1182,0,'','','0000-00-00','drashti','2025-10-24 16:44:20','','0000-00-00 00:00:00'),(0,0,1143,'2025-10-24','2026-01-23',1183,0,'','','0000-00-00','reception','2025-10-24 16:49:27','','0000-00-00 00:00:00'),(0,0,1144,'2025-10-24','2026-01-23',1184,0,'','','0000-00-00','reception','2025-10-24 17:01:57','','0000-00-00 00:00:00'),(0,0,1145,'2025-10-24','2026-01-23',1185,0,'','','0000-00-00','janvi','2025-10-24 17:44:57','','0000-00-00 00:00:00'),(0,0,1146,'2025-10-24','2026-01-23',1186,0,'','','0000-00-00','reception','2025-10-24 17:46:16','','0000-00-00 00:00:00'),(0,0,1147,'2025-10-24','2026-01-23',1187,0,'','','0000-00-00','reception','2025-10-24 18:00:37','','0000-00-00 00:00:00'),(0,0,1148,'2025-10-24','2026-01-23',1188,0,'','','0000-00-00','janvi','2025-10-24 18:06:51','','0000-00-00 00:00:00'),(0,0,1149,'2025-10-24','2026-01-23',1189,0,'','','0000-00-00','drashti','2025-10-24 18:07:39','','0000-00-00 00:00:00'),(0,0,1150,'2025-10-24','2026-01-23',1190,0,'','','0000-00-00','janvi','2025-10-24 18:09:05','','0000-00-00 00:00:00'),(0,0,1151,'2025-10-24','2026-01-23',1191,0,'','','0000-00-00','drashti','2025-10-24 18:11:55','','0000-00-00 00:00:00'),(0,0,1152,'2025-10-24','2026-01-23',1192,0,'','','0000-00-00','drashti','2025-10-24 18:14:12','','0000-00-00 00:00:00'),(0,0,1153,'2025-10-24','2026-01-23',1193,0,'','','0000-00-00','reception','2025-10-24 18:24:23','','0000-00-00 00:00:00'),(0,0,1154,'2025-10-24','2026-01-23',1194,0,'','','0000-00-00','reception','2025-10-24 18:38:01','','0000-00-00 00:00:00'),(0,0,1155,'2025-10-24','2026-01-23',66,0,'','','0000-00-00','drashti','2025-10-24 18:43:51','','0000-00-00 00:00:00'),(0,0,1156,'2025-10-24','2026-01-23',1195,0,'','','0000-00-00','reception','2025-10-24 18:46:23','','0000-00-00 00:00:00'),(0,0,1157,'2025-10-24','2026-01-23',1196,0,'','','0000-00-00','drashti','2025-10-24 18:47:12','','0000-00-00 00:00:00'),(0,0,1158,'2025-10-24','2026-01-23',1197,0,'','','0000-00-00','drashti','2025-10-24 18:51:03','','0000-00-00 00:00:00'),(0,0,1159,'2025-10-24','2026-01-23',1198,0,'','','0000-00-00','drashti','2025-10-24 19:05:09','','0000-00-00 00:00:00'),(0,0,1160,'2025-10-24','2026-01-23',1199,0,'','','0000-00-00','drashti','2025-10-24 19:08:03','','0000-00-00 00:00:00'),(0,0,1161,'2025-10-24','2026-01-23',1200,0,'','','0000-00-00','janvi','2025-10-24 19:26:43','','0000-00-00 00:00:00'),(0,0,1162,'2025-10-24','2026-01-23',1201,0,'','','0000-00-00','janvi','2025-10-24 19:47:46','','0000-00-00 00:00:00'),(0,0,1163,'2025-10-25','2026-01-24',1202,0,'','','0000-00-00','priyanshi','2025-10-25 09:00:13','','0000-00-00 00:00:00'),(0,0,1164,'2025-10-25','2026-01-24',1203,0,'','','0000-00-00','priyanshi','2025-10-25 09:03:05','','0000-00-00 00:00:00'),(0,0,1165,'2025-10-25','2026-01-24',1204,0,'','','0000-00-00','priyanshi','2025-10-25 09:05:53','','0000-00-00 00:00:00'),(0,0,1166,'2025-10-25','2026-01-24',1205,0,'','','0000-00-00','priyanshi','2025-10-25 09:44:58','','0000-00-00 00:00:00'),(0,0,1167,'2025-10-25','2026-01-24',1206,0,'','','0000-00-00','reception','2025-10-25 09:48:57','','0000-00-00 00:00:00'),(0,0,1168,'2025-10-25','2026-01-24',1207,0,'','','0000-00-00','reception','2025-10-25 09:50:53','','0000-00-00 00:00:00'),(0,0,1169,'2025-10-25','2026-01-24',1208,0,'','','0000-00-00','reception','2025-10-25 09:56:14','','0000-00-00 00:00:00'),(0,0,1170,'2025-10-25','2026-01-24',1209,0,'','','0000-00-00','reception','2025-10-25 10:01:04','','0000-00-00 00:00:00'),(0,0,1171,'2025-10-25','2026-01-24',1210,0,'','','0000-00-00','priyanshi','2025-10-25 10:02:44','','0000-00-00 00:00:00'),(0,0,1172,'2025-10-25','2026-01-24',1211,0,'','','0000-00-00','manshi','2025-10-25 10:08:17','','0000-00-00 00:00:00'),(0,0,1173,'2025-10-25','2026-01-24',1212,0,'','','0000-00-00','reception','2025-10-25 10:16:58','','0000-00-00 00:00:00'),(0,0,1174,'2025-10-25','2026-01-24',1213,0,'','','0000-00-00','reception','2025-10-25 10:32:48','','0000-00-00 00:00:00'),(0,0,1175,'2025-10-25','2026-01-24',1214,0,'','','0000-00-00','priyanshi','2025-10-25 10:44:48','','0000-00-00 00:00:00'),(0,0,1176,'2025-10-25','2026-01-24',1215,0,'','','0000-00-00','drashti','2025-10-25 10:59:37','','0000-00-00 00:00:00'),(0,0,1177,'2025-10-25','2026-01-24',1216,0,'','','0000-00-00','reception','2025-10-25 10:59:42','','0000-00-00 00:00:00'),(0,0,1178,'2025-10-25','2026-01-24',1217,0,'','','0000-00-00','manshi','2025-10-25 11:04:00','','0000-00-00 00:00:00'),(0,0,1179,'2025-10-25','2026-01-24',1218,0,'','','0000-00-00','priyanshi','2025-10-25 11:05:28','','0000-00-00 00:00:00'),(0,0,1180,'2025-10-25','2026-01-24',1219,0,'','','0000-00-00','drashti','2025-10-25 11:08:54','','0000-00-00 00:00:00'),(0,0,1181,'2025-10-25','2026-01-24',1220,0,'','','0000-00-00','reception','2025-10-25 11:19:32','','0000-00-00 00:00:00'),(0,0,1182,'2025-10-25','2026-01-24',1221,0,'','','0000-00-00','drashti','2025-10-25 11:20:44','','0000-00-00 00:00:00'),(0,0,1183,'2025-10-25','2026-01-24',1222,0,'','','0000-00-00','reception','2025-10-25 11:23:02','','0000-00-00 00:00:00'),(0,0,1184,'2025-10-25','2026-01-24',1223,0,'','','0000-00-00','drashti','2025-10-25 11:24:45','','0000-00-00 00:00:00'),(0,0,1185,'2025-10-25','2026-01-24',1224,0,'','','0000-00-00','reception','2025-10-25 11:25:53','','0000-00-00 00:00:00'),(0,0,1186,'2025-10-25','2026-01-24',1225,0,'','','0000-00-00','janvi','2025-10-25 11:27:01','','0000-00-00 00:00:00'),(0,0,1187,'2025-10-25','2026-01-24',1226,0,'','','0000-00-00','drashti','2025-10-25 11:29:04','','0000-00-00 00:00:00'),(0,0,1188,'2025-10-25','2026-01-24',1227,0,'','','0000-00-00','reception','2025-10-25 11:40:48','','0000-00-00 00:00:00'),(0,0,1189,'2025-10-25','2026-01-24',1228,0,'','','0000-00-00','janvi','2025-10-25 11:43:07','','0000-00-00 00:00:00'),(0,0,1190,'2025-10-25','2026-01-24',1229,0,'','','0000-00-00','reception','2025-10-25 11:43:20','','0000-00-00 00:00:00'),(0,0,1191,'2025-10-25','2026-01-24',1230,0,'','','0000-00-00','janvi','2025-10-25 11:45:06','','0000-00-00 00:00:00'),(0,0,1192,'2025-10-25','2026-01-24',1231,0,'','','0000-00-00','reception','2025-10-25 11:45:56','','0000-00-00 00:00:00'),(0,0,1193,'2025-10-25','2026-01-24',1232,0,'','','0000-00-00','janvi','2025-10-25 11:52:17','','0000-00-00 00:00:00'),(0,0,1194,'2025-10-25','2026-01-24',1233,0,'','','0000-00-00','reception','2025-10-25 12:02:05','','0000-00-00 00:00:00'),(0,0,1195,'2025-10-25','2026-01-24',1234,0,'','','0000-00-00','janvi','2025-10-25 12:24:28','','0000-00-00 00:00:00'),(0,0,1196,'2025-10-25','2026-01-24',1235,0,'','','0000-00-00','reception','2025-10-25 12:27:22','','0000-00-00 00:00:00'),(0,0,1197,'2025-10-25','2026-01-24',1236,0,'','','0000-00-00','janvi','2025-10-25 12:35:10','','0000-00-00 00:00:00'),(0,0,1198,'2025-10-25','2026-01-24',1237,0,'','','0000-00-00','reception','2025-10-25 12:54:21','','0000-00-00 00:00:00'),(0,0,1199,'2025-10-25','2026-01-24',1238,0,'','','0000-00-00','reception','2025-10-25 13:08:49','','0000-00-00 00:00:00'),(0,0,1200,'2025-10-25','2026-01-24',1239,0,'','','0000-00-00','janvi','2025-10-25 13:16:37','','0000-00-00 00:00:00'),(0,0,1201,'2025-10-25','2026-01-24',1240,0,'','','0000-00-00','janvi','2025-10-25 13:41:04','','0000-00-00 00:00:00'),(0,0,1202,'2025-10-25','2026-01-24',1241,0,'','','0000-00-00','drashti','2025-10-25 13:50:32','','0000-00-00 00:00:00'),(0,0,1203,'2025-10-25','2026-01-24',1242,0,'','','0000-00-00','drashti','2025-10-25 16:37:51','','0000-00-00 00:00:00'),(0,0,1204,'2025-10-25','2026-01-24',1243,0,'','','0000-00-00','drashti','2025-10-25 17:40:17','','0000-00-00 00:00:00'),(0,0,1205,'2025-10-25','2026-01-24',1244,0,'','','0000-00-00','drashti','2025-10-25 17:44:31','','0000-00-00 00:00:00'),(0,0,1206,'2025-10-25','2026-01-24',1245,0,'','','0000-00-00','drashti','2025-10-25 17:52:45','','0000-00-00 00:00:00'),(0,0,1207,'2025-10-25','2026-01-24',1246,0,'','','0000-00-00','manshi','2025-10-25 18:07:29','','0000-00-00 00:00:00'),(0,0,1208,'2025-10-25','2026-01-24',1247,0,'','','0000-00-00','manshi','2025-10-25 18:36:50','','0000-00-00 00:00:00'),(0,0,1209,'2025-10-25','2026-01-24',1248,0,'','','0000-00-00','manshi','2025-10-25 18:41:06','','0000-00-00 00:00:00'),(0,0,1210,'2025-10-25','2026-01-24',1249,0,'','','0000-00-00','drashti','2025-10-25 18:49:55','','0000-00-00 00:00:00'),(0,0,1211,'2025-10-25','2026-01-24',1250,0,'','','0000-00-00','drashti','2025-10-25 18:54:52','','0000-00-00 00:00:00'),(0,0,1212,'2025-10-25','2026-01-24',1251,0,'','','0000-00-00','janvi','2025-10-25 19:05:32','','0000-00-00 00:00:00'),(0,0,1213,'2025-10-26','2026-01-25',1252,0,'','','0000-00-00','urvashi','2025-10-26 10:03:52','','0000-00-00 00:00:00'),(0,0,1214,'2025-10-27','2026-01-26',1255,0,'','','0000-00-00','urvashi','2025-10-27 08:49:33','','0000-00-00 00:00:00'),(0,0,1215,'2025-10-27','2026-01-26',1256,0,'','','0000-00-00','urvashi','2025-10-27 08:54:54','','0000-00-00 00:00:00'),(0,0,1216,'2025-10-27','2026-01-26',1257,0,'','','0000-00-00','urvashi','2025-10-27 09:02:29','','0000-00-00 00:00:00'),(0,0,1217,'2025-10-27','2026-01-26',1258,0,'','','0000-00-00','urvashi','2025-10-27 09:07:36','','0000-00-00 00:00:00'),(0,0,1218,'2025-10-27','2026-01-26',1259,0,'','','0000-00-00','janvi','2025-10-27 09:16:55','','0000-00-00 00:00:00'),(0,0,1219,'2025-10-27','2026-01-26',1260,0,'','','0000-00-00','janvi','2025-10-27 09:18:25','','0000-00-00 00:00:00'),(0,0,1220,'2025-10-27','2026-01-26',1261,0,'','','0000-00-00','urvashi','2025-10-27 09:18:53','','0000-00-00 00:00:00'),(0,0,1221,'2025-10-27','2026-01-26',1262,0,'','','0000-00-00','reception','2025-10-27 09:28:44','','0000-00-00 00:00:00'),(0,0,1222,'2025-10-27','2026-01-26',1263,0,'','','0000-00-00','urvashi','2025-10-27 09:39:54','','0000-00-00 00:00:00'),(0,0,1223,'2025-10-27','2026-01-26',1264,0,'','','0000-00-00','janvi','2025-10-27 10:02:05','','0000-00-00 00:00:00'),(0,0,1224,'2025-10-27','2026-01-26',1265,0,'','','0000-00-00','manshi','2025-10-27 10:11:01','','0000-00-00 00:00:00'),(0,0,1225,'2025-10-27','2026-01-26',1266,0,'','','0000-00-00','manshi','2025-10-27 10:18:21','','0000-00-00 00:00:00'),(0,0,1226,'2025-10-27','2026-01-26',1267,0,'','','0000-00-00','reception','2025-10-27 10:20:43','','0000-00-00 00:00:00'),(0,0,1227,'2025-10-27','2026-01-26',1268,0,'','','0000-00-00','janvi','2025-10-27 10:20:47','','0000-00-00 00:00:00'),(0,0,1228,'2025-10-27','2026-01-26',1269,0,'','','0000-00-00','reception','2025-10-27 10:22:21','','0000-00-00 00:00:00'),(0,0,1229,'2025-10-27','2026-01-26',1270,0,'','','0000-00-00','reception','2025-10-27 10:23:32','','0000-00-00 00:00:00'),(0,0,1230,'2025-10-27','2026-01-26',1271,0,'','','0000-00-00','reception','2025-10-27 10:29:21','','0000-00-00 00:00:00'),(0,0,1231,'2025-10-27','2026-01-26',1272,0,'','','0000-00-00','reception','2025-10-27 10:32:04','','0000-00-00 00:00:00'),(0,0,1232,'2025-10-27','2026-01-26',1273,0,'','','0000-00-00','manshi','2025-10-27 10:35:38','','0000-00-00 00:00:00'),(0,0,1233,'2025-10-27','2026-01-26',1274,0,'','','0000-00-00','reception','2025-10-27 10:38:25','','0000-00-00 00:00:00'),(0,0,1234,'2025-10-27','2026-01-26',1275,0,'','','0000-00-00','urvashi','2025-10-27 10:45:08','','0000-00-00 00:00:00'),(0,0,1235,'2025-10-27','2026-01-26',1276,0,'','','0000-00-00','urvashi','2025-10-27 10:47:33','','0000-00-00 00:00:00'),(0,0,1236,'2025-10-27','2026-01-26',1277,0,'','','0000-00-00','janvi','2025-10-27 10:50:18','','0000-00-00 00:00:00'),(0,0,1237,'2025-10-27','2026-01-26',1278,0,'','','0000-00-00','reception','2025-10-27 10:50:31','','0000-00-00 00:00:00'),(0,0,1238,'2025-10-27','2026-01-26',1279,0,'','','0000-00-00','urvashi','2025-10-27 10:53:19','','0000-00-00 00:00:00'),(0,0,1239,'2025-10-27','2026-01-26',1280,0,'','','0000-00-00','reception','2025-10-27 10:53:27','','0000-00-00 00:00:00'),(0,0,1240,'2025-10-27','2026-01-26',1281,0,'','','0000-00-00','reception','2025-10-27 10:55:52','','0000-00-00 00:00:00'),(0,0,1241,'2025-10-27','2026-01-26',1282,0,'','','0000-00-00','urvashi','2025-10-27 10:57:53','','0000-00-00 00:00:00'),(0,0,1242,'2025-10-27','2026-01-26',1283,0,'','','0000-00-00','reception','2025-10-27 10:58:04','','0000-00-00 00:00:00'),(0,0,1243,'2025-10-27','2026-01-26',1284,0,'','','0000-00-00','urvashi','2025-10-27 11:01:14','','0000-00-00 00:00:00'),(0,0,1244,'2025-10-27','2026-01-26',1285,0,'','','0000-00-00','janvi','2025-10-27 11:02:11','','0000-00-00 00:00:00'),(0,0,1245,'2025-10-27','2026-01-26',1286,0,'','','0000-00-00','reception','2025-10-27 11:04:13','','0000-00-00 00:00:00'),(0,0,1246,'2025-10-27','2026-01-26',1287,0,'','','0000-00-00','urvashi','2025-10-27 11:06:07','','0000-00-00 00:00:00'),(0,0,1247,'2025-10-27','2026-01-26',1288,0,'','','0000-00-00','reception','2025-10-27 11:09:18','','0000-00-00 00:00:00'),(0,0,1248,'2025-10-27','2026-01-26',1289,0,'','','0000-00-00','urvashi','2025-10-27 11:13:54','','0000-00-00 00:00:00'),(0,0,1249,'2025-10-27','2026-01-26',1290,0,'','','0000-00-00','reception','2025-10-27 11:17:26','','0000-00-00 00:00:00'),(0,0,1250,'2025-10-27','2026-01-26',1291,0,'','','0000-00-00','reception','2025-10-27 11:20:12','','0000-00-00 00:00:00'),(0,0,1251,'2025-10-27','2026-01-26',1292,0,'','','0000-00-00','janvi','2025-10-27 11:22:53','','0000-00-00 00:00:00'),(0,0,1252,'2025-10-27','2026-01-26',1293,0,'','','0000-00-00','reception','2025-10-27 11:25:02','','0000-00-00 00:00:00'),(0,0,1253,'2025-10-27','2026-01-26',1294,0,'','','0000-00-00','janvi','2025-10-27 11:27:22','','0000-00-00 00:00:00'),(0,0,1254,'2025-10-27','2026-01-26',455,0,'','','0000-00-00','manshi','2025-10-27 11:32:14','','0000-00-00 00:00:00'),(0,0,1255,'2025-10-27','2026-01-26',1296,0,'','','0000-00-00','janvi','2025-10-27 11:35:00','','0000-00-00 00:00:00'),(0,0,1256,'2025-10-27','2026-01-26',1297,0,'','','0000-00-00','urvashi','2025-10-27 11:36:43','','0000-00-00 00:00:00'),(0,0,1257,'2025-10-27','2026-01-26',1298,0,'','','0000-00-00','reception','2025-10-27 11:38:24','','0000-00-00 00:00:00'),(0,0,1258,'2025-10-27','2026-01-26',1299,0,'','','0000-00-00','reception','2025-10-27 11:41:30','','0000-00-00 00:00:00'),(0,0,1259,'2025-10-27','2026-01-26',1300,0,'','','0000-00-00','janvi','2025-10-27 11:41:58','','0000-00-00 00:00:00'),(0,0,1260,'2025-10-27','2026-01-26',1301,0,'','','0000-00-00','urvashi','2025-10-27 11:48:14','','0000-00-00 00:00:00'),(0,0,1261,'2025-10-27','2026-01-26',1302,0,'','','0000-00-00','janvi','2025-10-27 11:49:31','','0000-00-00 00:00:00'),(0,0,1262,'2025-10-27','2026-01-26',1303,0,'','','0000-00-00','urvashi','2025-10-27 11:50:10','','0000-00-00 00:00:00'),(0,0,1263,'2025-10-27','2026-01-26',1304,0,'','','0000-00-00','manshi','2025-10-27 11:51:09','','0000-00-00 00:00:00'),(0,0,1264,'2025-10-27','2026-01-26',274,0,'','','0000-00-00','urvashi','2025-10-27 11:52:33','','0000-00-00 00:00:00'),(0,0,1265,'2025-10-27','2026-01-26',1104,0,'','','0000-00-00','janvi','2025-10-27 11:52:49','','0000-00-00 00:00:00'),(0,0,1266,'2025-10-27','2026-01-26',1305,0,'','','0000-00-00','urvashi','2025-10-27 11:57:05','','0000-00-00 00:00:00'),(0,0,1267,'2025-10-27','2026-01-26',1306,0,'','','0000-00-00','urvashi','2025-10-27 12:01:18','','0000-00-00 00:00:00'),(0,0,1268,'2025-10-27','2026-01-26',1307,0,'','','0000-00-00','janvi','2025-10-27 12:09:02','','0000-00-00 00:00:00'),(0,0,1269,'2025-10-27','2026-01-26',1308,0,'','','0000-00-00','urvashi','2025-10-27 12:09:55','','0000-00-00 00:00:00'),(0,0,1270,'2025-10-27','2026-01-26',1309,0,'','','0000-00-00','reception','2025-10-27 12:12:37','','0000-00-00 00:00:00'),(0,0,1271,'2025-10-27','2026-01-26',1310,0,'','','0000-00-00','reception','2025-10-27 12:19:53','','0000-00-00 00:00:00'),(0,0,1272,'2025-10-27','2026-01-26',1311,0,'','','0000-00-00','reception','2025-10-27 12:31:24','','0000-00-00 00:00:00'),(0,0,1273,'2025-10-27','2026-01-26',1312,0,'','','0000-00-00','drashti','2025-10-27 12:36:21','','0000-00-00 00:00:00'),(0,0,1274,'2025-10-27','2026-01-26',1313,0,'','','0000-00-00','janvi','2025-10-27 12:52:02','','0000-00-00 00:00:00'),(0,0,1275,'2025-10-27','2026-01-26',1314,0,'','','0000-00-00','reception','2025-10-27 12:54:05','','0000-00-00 00:00:00'),(0,0,1276,'2025-10-27','2026-01-26',1315,0,'','','0000-00-00','janvi','2025-10-27 13:07:51','','0000-00-00 00:00:00'),(0,0,1277,'2025-10-27','2026-01-26',1316,0,'','','0000-00-00','reception','2025-10-27 13:08:48','','0000-00-00 00:00:00'),(0,0,1278,'2025-10-27','2026-01-26',1317,0,'','','0000-00-00','reception','2025-10-27 13:21:37','','0000-00-00 00:00:00'),(0,0,1279,'2025-10-27','2026-01-26',1318,0,'','','0000-00-00','drashti','2025-10-27 13:23:08','','0000-00-00 00:00:00'),(0,0,1280,'2025-10-27','2026-01-26',1319,0,'','','0000-00-00','janvi','2025-10-27 13:55:13','','0000-00-00 00:00:00'),(0,0,1281,'2025-10-27','2026-01-26',1320,0,'','','0000-00-00','drashti','2025-10-27 16:22:22','','0000-00-00 00:00:00'),(0,0,1282,'2025-10-27','2026-01-26',1321,0,'','','0000-00-00','drashti','2025-10-27 16:23:53','','0000-00-00 00:00:00'),(0,0,1283,'2025-10-27','2026-01-26',1322,0,'','','0000-00-00','reception','2025-10-27 16:35:37','','0000-00-00 00:00:00'),(0,0,1284,'2025-10-27','2026-01-26',1323,0,'','','0000-00-00','reception','2025-10-27 16:45:56','','0000-00-00 00:00:00'),(0,0,1285,'2025-10-27','2026-01-26',1324,0,'','','0000-00-00','reception','2025-10-27 17:21:08','','0000-00-00 00:00:00'),(0,0,1286,'2025-10-27','2026-01-26',1325,0,'','','0000-00-00','reception','2025-10-27 17:22:29','','0000-00-00 00:00:00'),(0,0,1287,'2025-10-27','2026-01-26',1326,0,'','','0000-00-00','reception','2025-10-27 17:34:05','','0000-00-00 00:00:00'),(0,0,1288,'2025-10-27','2026-01-26',1327,0,'','','0000-00-00','drashti','2025-10-27 17:42:13','','0000-00-00 00:00:00'),(0,0,1289,'2025-10-27','2026-01-26',1328,0,'','','0000-00-00','manshi','2025-10-27 17:44:09','','0000-00-00 00:00:00'),(0,0,1290,'2025-10-27','2026-01-26',1329,0,'','','0000-00-00','reception','2025-10-27 17:44:37','','0000-00-00 00:00:00'),(0,0,1291,'2025-10-27','2026-01-26',1330,0,'','','0000-00-00','reception','2025-10-27 17:45:45','','0000-00-00 00:00:00'),(0,0,1292,'2025-10-27','2026-01-26',1331,0,'','','0000-00-00','reception','2025-10-27 17:57:28','','0000-00-00 00:00:00'),(0,0,1293,'2025-10-27','2026-01-26',1332,0,'','','0000-00-00','janvi','2025-10-27 18:00:26','','0000-00-00 00:00:00'),(0,0,1294,'2025-10-27','2026-01-26',1333,0,'','','0000-00-00','janvi','2025-10-27 18:09:07','','0000-00-00 00:00:00'),(0,0,1295,'2025-10-27','2026-01-26',1334,0,'','','0000-00-00','reception','2025-10-27 18:09:14','','0000-00-00 00:00:00'),(0,0,1296,'2025-10-27','2026-01-26',1335,0,'','','0000-00-00','janvi','2025-10-27 18:20:19','','0000-00-00 00:00:00'),(0,0,1297,'2025-10-27','2026-01-26',1336,0,'','','0000-00-00','janvi','2025-10-27 18:22:09','','0000-00-00 00:00:00'),(0,0,1298,'2025-10-27','2026-01-26',1337,0,'','','0000-00-00','reception','2025-10-27 18:24:06','','0000-00-00 00:00:00'),(0,0,1299,'2025-10-27','2026-01-26',1338,0,'','','0000-00-00','reception','2025-10-27 18:27:47','','0000-00-00 00:00:00'),(0,0,1300,'2025-10-27','2026-01-26',1339,0,'','','0000-00-00','janvi','2025-10-27 18:28:47','','0000-00-00 00:00:00'),(0,0,1301,'2025-10-27','2026-01-26',1340,0,'','','0000-00-00','janvi','2025-10-27 18:31:12','','0000-00-00 00:00:00'),(0,0,1302,'2025-10-27','2026-01-26',1341,0,'','','0000-00-00','manshi','2025-10-27 18:32:38','','0000-00-00 00:00:00'),(0,0,1303,'2025-10-27','2026-01-26',1342,0,'','','0000-00-00','reception','2025-10-27 18:36:21','','0000-00-00 00:00:00'),(0,0,1304,'2025-10-27','2026-01-26',1343,0,'','','0000-00-00','janvi','2025-10-27 18:37:00','','0000-00-00 00:00:00'),(0,0,1305,'2025-10-27','2026-01-26',1344,0,'','','0000-00-00','janvi','2025-10-27 18:40:15','','0000-00-00 00:00:00'),(0,0,1306,'2025-10-27','2026-01-26',1345,0,'','','0000-00-00','reception','2025-10-27 18:40:37','','0000-00-00 00:00:00'),(0,0,1307,'2025-10-27','2026-01-26',1346,0,'','','0000-00-00','shweta','2025-10-27 18:44:51','','0000-00-00 00:00:00'),(0,0,1308,'2025-10-27','2026-01-26',1347,0,'','','0000-00-00','reception','2025-10-27 18:47:12','','0000-00-00 00:00:00'),(0,0,1309,'2025-10-27','2026-01-26',1348,0,'','','0000-00-00','janvi','2025-10-27 18:50:41','','0000-00-00 00:00:00'),(0,0,1310,'2025-10-27','2026-01-26',1349,0,'','','0000-00-00','reception','2025-10-27 18:51:40','','0000-00-00 00:00:00'),(0,0,1311,'2025-10-27','2026-01-26',1350,0,'','','0000-00-00','shweta','2025-10-27 18:51:46','','0000-00-00 00:00:00'),(0,0,1312,'2025-10-27','2026-01-26',1351,0,'','','0000-00-00','reception','2025-10-27 18:57:08','','0000-00-00 00:00:00'),(0,0,1313,'2025-10-27','2026-01-26',1352,0,'','','0000-00-00','shweta','2025-10-27 19:04:04','','0000-00-00 00:00:00'),(0,0,1314,'2025-10-27','2026-01-26',1353,0,'','','0000-00-00','reception','2025-10-27 19:05:02','','0000-00-00 00:00:00'),(0,0,1315,'2025-10-27','2026-01-26',1354,0,'','','0000-00-00','reception','2025-10-27 19:13:39','','0000-00-00 00:00:00'),(0,0,1316,'2025-10-27','2026-01-26',1355,0,'','','0000-00-00','janvi','2025-10-27 19:20:30','','0000-00-00 00:00:00'),(0,0,1317,'2025-10-27','2026-01-26',1356,0,'','','0000-00-00','janvi','2025-10-27 19:31:07','','0000-00-00 00:00:00'),(0,0,1318,'2025-10-27','2026-01-26',1357,0,'','','0000-00-00','shweta','2025-10-27 19:42:17','','0000-00-00 00:00:00'),(0,0,1319,'2025-10-27','2026-01-26',1358,0,'','','0000-00-00','shweta','2025-10-27 19:45:23','','0000-00-00 00:00:00'),(0,0,1320,'2025-10-27','2026-01-26',1359,0,'','','0000-00-00','shweta','2025-10-27 19:48:26','','0000-00-00 00:00:00'),(0,0,1321,'2025-10-27','2026-01-26',1361,0,'','','0000-00-00','shweta','2025-10-27 20:10:19','','0000-00-00 00:00:00'),(0,0,1322,'2025-10-27','2026-01-26',1362,0,'','','0000-00-00','reception','2025-10-27 20:39:49','','0000-00-00 00:00:00'),(0,0,1323,'2025-10-28','2026-01-27',1363,0,'','','0000-00-00','urvashi','2025-10-28 09:07:38','','0000-00-00 00:00:00'),(0,0,1324,'2025-10-28','2026-01-27',1364,0,'','','0000-00-00','reception','2025-10-28 09:29:30','','0000-00-00 00:00:00'),(0,0,1325,'2025-10-28','2026-01-27',1365,0,'','','0000-00-00','reception','2025-10-28 09:40:57','','0000-00-00 00:00:00'),(0,0,1326,'2025-10-28','2026-01-27',1366,0,'','','0000-00-00','reception','2025-10-28 09:44:39','','0000-00-00 00:00:00'),(0,0,1327,'2025-10-28','2026-01-27',1367,0,'','','0000-00-00','reception','2025-10-28 09:49:43','','0000-00-00 00:00:00'),(0,0,1328,'2025-10-28','2026-01-27',1368,0,'','','0000-00-00','reception','2025-10-28 10:04:40','','0000-00-00 00:00:00'),(0,0,1329,'2025-10-28','2026-01-27',1369,0,'','','0000-00-00','drashti','2025-10-28 10:07:47','','0000-00-00 00:00:00'),(0,0,1330,'2025-10-28','2026-01-27',1370,0,'','','0000-00-00','janvi','2025-10-28 10:08:53','','0000-00-00 00:00:00'),(0,0,1331,'2025-10-28','2026-01-27',1371,0,'','','0000-00-00','janvi','2025-10-28 10:21:15','','0000-00-00 00:00:00'),(0,0,1332,'2025-10-28','2026-01-27',1372,0,'','','0000-00-00','reception','2025-10-28 10:26:58','','0000-00-00 00:00:00'),(0,0,1333,'2025-10-28','2026-01-27',1373,0,'','','0000-00-00','janvi','2025-10-28 10:30:13','','0000-00-00 00:00:00'),(0,0,1334,'2025-10-28','2026-01-27',1374,0,'','','0000-00-00','janvi','2025-10-28 10:44:09','','0000-00-00 00:00:00'),(0,0,1335,'2025-10-28','2026-01-27',1375,0,'','','0000-00-00','reception','2025-10-28 10:48:10','','0000-00-00 00:00:00'),(0,0,1336,'2025-10-28','2026-01-27',1376,0,'','','0000-00-00','drashti','2025-10-28 10:57:13','','0000-00-00 00:00:00'),(0,0,1337,'2025-10-28','2026-01-27',1377,0,'','','0000-00-00','janvi','2025-10-28 10:57:28','','0000-00-00 00:00:00'),(0,0,1338,'2025-10-28','2026-01-27',1378,0,'','','0000-00-00','reception','2025-10-28 11:01:39','','0000-00-00 00:00:00'),(0,0,1339,'2025-10-28','2026-01-27',1379,0,'','','0000-00-00','drashti','2025-10-28 11:04:49','','0000-00-00 00:00:00'),(0,0,1340,'2025-10-28','2026-01-27',1380,0,'','','0000-00-00','reception','2025-10-28 11:11:55','','0000-00-00 00:00:00'),(0,0,1341,'2025-10-28','2026-01-27',1381,0,'','','0000-00-00','manshi','2025-10-28 11:15:19','','0000-00-00 00:00:00'),(0,0,1342,'2025-10-28','2026-01-27',1382,0,'','','0000-00-00','reception','2025-10-28 11:22:40','','0000-00-00 00:00:00'),(0,0,1343,'2025-10-28','2026-01-27',1383,0,'','','0000-00-00','janvi','2025-10-28 11:26:30','','0000-00-00 00:00:00'),(0,0,1344,'2025-10-28','2026-01-27',1384,0,'','','0000-00-00','drashti','2025-10-28 11:26:39','','0000-00-00 00:00:00'),(0,0,1345,'2025-10-28','2026-01-27',1385,0,'','','0000-00-00','drashti','2025-10-28 11:28:52','','0000-00-00 00:00:00'),(0,0,1346,'2025-10-28','2026-01-27',1386,0,'','','0000-00-00','reception','2025-10-28 11:29:41','','0000-00-00 00:00:00'),(0,0,1347,'2025-10-28','2026-01-27',1387,0,'','','0000-00-00','drashti','2025-10-28 11:31:08','','0000-00-00 00:00:00'),(0,0,1348,'2025-10-28','2026-01-27',1388,0,'','','0000-00-00','reception','2025-10-28 11:32:06','','0000-00-00 00:00:00'),(0,0,1349,'2025-10-28','2026-01-27',1389,0,'','','0000-00-00','reception','2025-10-28 11:35:50','','0000-00-00 00:00:00'),(0,0,1350,'2025-10-28','2026-01-27',1390,0,'','','0000-00-00','reception','2025-10-28 11:37:55','','0000-00-00 00:00:00'),(0,0,1351,'2025-10-28','2026-01-27',1391,0,'','','0000-00-00','reception','2025-10-28 11:39:58','','0000-00-00 00:00:00'),(0,0,1352,'2025-10-28','2026-01-27',1392,0,'','','0000-00-00','drashti','2025-10-28 11:41:36','','0000-00-00 00:00:00'),(0,0,1353,'2025-10-28','2026-01-27',1393,0,'','','0000-00-00','reception','2025-10-28 11:50:24','','0000-00-00 00:00:00'),(0,0,1354,'2025-10-28','2026-01-27',1394,0,'','','0000-00-00','janvi','2025-10-28 11:51:20','','0000-00-00 00:00:00'),(0,0,1355,'2025-10-28','2026-01-27',1395,0,'','','0000-00-00','drashti','2025-10-28 11:53:13','','0000-00-00 00:00:00'),(0,0,1356,'2025-10-28','2026-01-27',1396,0,'','','0000-00-00','reception','2025-10-28 11:58:47','','0000-00-00 00:00:00'),(0,0,1357,'2025-10-28','2026-01-27',1397,0,'','','0000-00-00','reception','2025-10-28 12:14:21','','0000-00-00 00:00:00'),(0,0,1358,'2025-10-28','2026-01-27',1398,0,'','','0000-00-00','drashti','2025-10-28 12:17:36','','0000-00-00 00:00:00'),(0,0,1359,'2025-10-28','2026-01-27',1399,0,'','','0000-00-00','manshi','2025-10-28 12:21:56','','0000-00-00 00:00:00'),(0,0,1360,'2025-10-28','2026-01-27',1400,0,'','','0000-00-00','drashti','2025-10-28 12:26:07','','0000-00-00 00:00:00'),(0,0,1361,'2025-10-28','2026-01-27',1401,0,'','','0000-00-00','reception','2025-10-28 12:28:27','','0000-00-00 00:00:00'),(0,0,1362,'2025-10-28','2026-01-27',1402,0,'','','0000-00-00','reception','2025-10-28 12:31:27','','0000-00-00 00:00:00'),(0,0,1363,'2025-10-28','2026-01-27',1403,0,'','','0000-00-00','drashti','2025-10-28 12:32:16','','0000-00-00 00:00:00'),(0,0,1364,'2025-10-28','2026-01-27',1404,0,'','','0000-00-00','reception','2025-10-28 12:35:53','','0000-00-00 00:00:00'),(0,0,1365,'2025-10-28','2026-01-27',1405,0,'','','0000-00-00','reception','2025-10-28 12:42:18','','0000-00-00 00:00:00'),(0,0,1366,'2025-10-28','2026-01-27',1406,0,'','','0000-00-00','drashti','2025-10-28 12:51:58','','0000-00-00 00:00:00'),(0,0,1367,'2025-10-28','2026-01-27',1407,0,'','','0000-00-00','reception','2025-10-28 13:08:34','','0000-00-00 00:00:00'),(0,0,1368,'2025-10-28','2026-01-27',1408,0,'','','0000-00-00','drashti','2025-10-28 13:11:15','','0000-00-00 00:00:00'),(0,0,1369,'2025-10-28','2026-01-27',1409,0,'','','0000-00-00','reception','2025-10-28 13:12:12','','0000-00-00 00:00:00'),(0,0,1370,'2025-10-28','2026-01-27',1411,0,'','','0000-00-00','drashti','2025-10-28 14:33:13','','0000-00-00 00:00:00'),(0,0,1371,'2025-10-28','2026-01-27',1412,0,'','','0000-00-00','reception','2025-10-28 16:51:12','','0000-00-00 00:00:00'),(0,0,1372,'2025-10-28','2026-01-27',1413,0,'','','0000-00-00','reception','2025-10-28 17:08:13','','0000-00-00 00:00:00'),(0,0,1373,'2025-10-28','2026-01-27',1414,0,'','','0000-00-00','reception','2025-10-28 17:15:19','','0000-00-00 00:00:00'),(0,0,1374,'2025-10-28','2026-01-27',1415,0,'','','0000-00-00','reception','2025-10-28 17:26:01','','0000-00-00 00:00:00'),(0,0,1375,'2025-10-28','2026-01-27',1416,0,'','','0000-00-00','drashti','2025-10-28 17:33:07','','0000-00-00 00:00:00'),(0,0,1376,'2025-10-28','2026-01-27',1417,0,'','','0000-00-00','reception','2025-10-28 17:35:58','','0000-00-00 00:00:00'),(0,0,1377,'2025-10-28','2026-01-27',1418,0,'','','0000-00-00','drashti','2025-10-28 17:37:21','','0000-00-00 00:00:00'),(0,0,1378,'2025-10-28','2026-01-27',1419,0,'','','0000-00-00','reception','2025-10-28 17:38:35','','0000-00-00 00:00:00'),(0,0,1379,'2025-10-28','2026-01-27',1420,0,'','','0000-00-00','reception','2025-10-28 17:40:35','','0000-00-00 00:00:00'),(0,0,1380,'2025-10-28','2026-01-27',1421,0,'','','0000-00-00','drashti','2025-10-28 17:47:32','','0000-00-00 00:00:00'),(0,0,1381,'2025-10-28','2026-01-27',1422,0,'','','0000-00-00','janvi','2025-10-28 17:50:41','','0000-00-00 00:00:00'),(0,0,1382,'2025-10-28','2026-01-27',1423,0,'','','0000-00-00','drashti','2025-10-28 17:50:44','','0000-00-00 00:00:00'),(0,0,1383,'2025-10-28','2026-01-27',1424,0,'','','0000-00-00','reception','2025-10-28 17:50:59','','0000-00-00 00:00:00'),(0,0,1384,'2025-10-28','2026-01-27',1425,0,'','','0000-00-00','janvi','2025-10-28 17:52:17','','0000-00-00 00:00:00'),(0,0,1385,'2025-10-28','2026-01-27',1426,0,'','','0000-00-00','janvi','2025-10-28 17:53:29','','0000-00-00 00:00:00'),(0,0,1386,'2025-10-28','2026-01-27',1427,0,'','','0000-00-00','reception','2025-10-28 17:53:29','','0000-00-00 00:00:00'),(0,0,1387,'2025-10-28','2026-01-27',1428,0,'','','0000-00-00','reception','2025-10-28 17:55:25','','0000-00-00 00:00:00'),(0,0,1388,'2025-10-28','2026-01-27',393,0,'','','0000-00-00','drashti','2025-10-28 17:57:16','','0000-00-00 00:00:00'),(0,0,1389,'2025-10-28','2026-01-27',1429,0,'','','0000-00-00','reception','2025-10-28 18:02:34','','0000-00-00 00:00:00'),(0,0,1390,'2025-10-28','2026-01-27',1430,0,'','','0000-00-00','manshi','2025-10-28 18:02:41','','0000-00-00 00:00:00'),(0,0,1391,'2025-10-28','2026-01-27',1431,0,'','','0000-00-00','reception','2025-10-28 18:04:16','','0000-00-00 00:00:00'),(0,0,1392,'2025-10-28','2026-01-27',1432,0,'','','0000-00-00','drashti','2025-10-28 18:04:27','','0000-00-00 00:00:00'),(0,0,1393,'2025-10-28','2026-01-27',1433,0,'','','0000-00-00','drashti','2025-10-28 18:13:46','','0000-00-00 00:00:00'),(0,0,1394,'2025-10-28','2026-01-27',1434,0,'','','0000-00-00','drashti','2025-10-28 18:15:39','','0000-00-00 00:00:00'),(0,0,1395,'2025-10-28','2026-01-27',1435,0,'','','0000-00-00','manshi','2025-10-28 18:15:47','','0000-00-00 00:00:00'),(0,0,1396,'2025-10-28','2026-01-27',1436,0,'','','0000-00-00','reception','2025-10-28 18:18:50','','0000-00-00 00:00:00'),(0,0,1397,'2025-10-28','2026-01-27',1437,0,'','','0000-00-00','reception','2025-10-28 18:23:20','','0000-00-00 00:00:00'),(0,0,1398,'2025-10-28','2026-01-27',1438,0,'','','0000-00-00','drashti','2025-10-28 18:27:14','','0000-00-00 00:00:00'),(0,0,1399,'2025-10-28','2026-01-27',1439,0,'','','0000-00-00','drashti','2025-10-28 18:28:44','','0000-00-00 00:00:00'),(0,0,1400,'2025-10-28','2026-01-27',1440,0,'','','0000-00-00','drashti','2025-10-28 18:33:35','','0000-00-00 00:00:00'),(0,0,1401,'2025-10-28','2026-01-27',1441,0,'','','0000-00-00','manshi','2025-10-28 18:36:13','','0000-00-00 00:00:00'),(0,0,1402,'2025-10-28','2026-01-27',1442,0,'','','0000-00-00','drashti','2025-10-28 18:42:23','','0000-00-00 00:00:00'),(0,0,1403,'2025-10-28','2026-01-27',1443,0,'','','0000-00-00','drashti','2025-10-28 18:44:58','','0000-00-00 00:00:00'),(0,0,1404,'2025-10-28','2026-01-27',1444,0,'','','0000-00-00','janvi','2025-10-28 18:50:46','','0000-00-00 00:00:00'),(0,0,1405,'2025-10-28','2026-01-27',1445,0,'','','0000-00-00','janvi','2025-10-28 18:58:28','','0000-00-00 00:00:00'),(0,0,1406,'2025-10-28','2026-01-27',1446,0,'','','0000-00-00','drashti','2025-10-28 19:00:29','','0000-00-00 00:00:00'),(0,0,1407,'2025-10-28','2026-01-27',1447,0,'','','0000-00-00','manshi','2025-10-28 19:05:14','','0000-00-00 00:00:00'),(0,0,1408,'2025-10-28','2026-01-27',1448,0,'','','0000-00-00','janvi','2025-10-28 19:12:12','','0000-00-00 00:00:00'),(0,0,1409,'2025-10-28','2026-01-27',1449,0,'','','0000-00-00','drashti','2025-10-28 19:17:00','','0000-00-00 00:00:00'),(0,0,1410,'2025-10-28','2026-01-27',1450,0,'','','0000-00-00','drashti','2025-10-28 19:45:07','','0000-00-00 00:00:00'),(0,0,1411,'2025-10-29','2026-01-28',1451,0,'','','0000-00-00','urvashi','2025-10-29 08:53:32','','0000-00-00 00:00:00'),(0,0,1412,'2025-10-29','2026-01-28',1452,0,'','','0000-00-00','urvashi','2025-10-29 08:55:55','','0000-00-00 00:00:00'),(0,0,1413,'2025-10-29','2026-01-28',1453,0,'','','0000-00-00','urvashi','2025-10-29 08:57:40','','0000-00-00 00:00:00'),(0,0,1414,'2025-10-29','2026-01-28',1454,0,'','','0000-00-00','urvashi','2025-10-29 09:00:11','','0000-00-00 00:00:00'),(0,0,1415,'2025-10-29','2026-01-28',1455,0,'','','0000-00-00','urvashi','2025-10-29 09:03:01','','0000-00-00 00:00:00'),(0,0,1416,'2025-10-29','2026-01-28',1457,0,'','','0000-00-00','reception','2025-10-29 10:05:12','','0000-00-00 00:00:00'),(0,0,1417,'2025-10-29','2026-01-28',1458,0,'','','0000-00-00','manshi','2025-10-29 10:05:18','','0000-00-00 00:00:00'),(0,0,1418,'2025-10-29','2026-01-28',1459,0,'','','0000-00-00','reception','2025-10-29 10:08:32','','0000-00-00 00:00:00'),(0,0,1419,'2025-10-29','2026-01-28',1460,0,'','','0000-00-00','reception','2025-10-29 10:13:07','','0000-00-00 00:00:00'),(0,0,1420,'2025-10-29','2026-01-28',1461,0,'','','0000-00-00','drashti','2025-10-29 10:16:09','','0000-00-00 00:00:00'),(0,0,1421,'2025-10-29','2026-01-28',1462,0,'','','0000-00-00','reception','2025-10-29 10:19:25','','0000-00-00 00:00:00'),(0,0,1422,'2025-10-29','2026-01-28',1463,0,'','','0000-00-00','drashti','2025-10-29 10:22:35','','0000-00-00 00:00:00'),(0,0,1423,'2025-10-29','2026-01-28',1464,0,'','','0000-00-00','janvi','2025-10-29 10:24:44','','0000-00-00 00:00:00'),(0,0,1424,'2025-10-29','2026-01-28',1465,0,'','','0000-00-00','janvi','2025-10-29 10:39:32','','0000-00-00 00:00:00'),(0,0,1425,'2025-10-29','2026-01-28',1466,0,'','','0000-00-00','reception','2025-10-29 10:52:05','','0000-00-00 00:00:00'),(0,0,1426,'2025-10-29','2026-01-28',1467,0,'','','0000-00-00','reception','2025-10-29 10:55:26','','0000-00-00 00:00:00'),(0,0,1427,'2025-10-29','2026-01-28',1468,0,'','','0000-00-00','drashti','2025-10-29 10:55:54','','0000-00-00 00:00:00'),(0,0,1428,'2025-10-29','2026-01-28',1469,0,'','','0000-00-00','janvi','2025-10-29 10:55:58','','0000-00-00 00:00:00'),(0,0,1429,'2025-10-29','2026-01-28',1470,0,'','','0000-00-00','reception','2025-10-29 10:57:10','','0000-00-00 00:00:00'),(0,0,1430,'2025-10-29','2026-01-28',1471,0,'','','0000-00-00','drashti','2025-10-29 10:59:09','','0000-00-00 00:00:00'),(0,0,1431,'2025-10-29','2026-01-28',1472,0,'','','0000-00-00','janvi','2025-10-29 11:01:53','','0000-00-00 00:00:00'),(0,0,1432,'2025-10-29','2026-01-28',1473,0,'','','0000-00-00','manshi','2025-10-29 11:03:52','','0000-00-00 00:00:00'),(0,0,1433,'2025-10-29','2026-01-28',1474,0,'','','0000-00-00','reception','2025-10-29 11:05:12','','0000-00-00 00:00:00'),(0,0,1434,'2025-10-29','2026-01-28',1475,0,'','','0000-00-00','janvi','2025-10-29 11:07:20','','0000-00-00 00:00:00'),(0,0,1435,'2025-10-29','2026-01-28',1476,0,'','','0000-00-00','drashti','2025-10-29 11:14:09','','0000-00-00 00:00:00'),(0,0,1436,'2025-10-29','2026-01-28',1477,0,'','','0000-00-00','reception','2025-10-29 11:16:04','','0000-00-00 00:00:00'),(0,0,1437,'2025-10-29','2026-01-28',1478,0,'','','0000-00-00','janvi','2025-10-29 11:24:06','','0000-00-00 00:00:00'),(0,0,1438,'2025-10-29','2026-01-28',1479,0,'','','0000-00-00','reception','2025-10-29 11:24:37','','0000-00-00 00:00:00'),(0,0,1439,'2025-10-29','2026-01-28',1480,0,'','','0000-00-00','drashti','2025-10-29 11:26:45','','0000-00-00 00:00:00'),(0,0,1440,'2025-10-29','2026-01-28',1481,0,'','','0000-00-00','janvi','2025-10-29 11:31:55','','0000-00-00 00:00:00'),(0,0,1441,'2025-10-29','2026-01-28',1482,0,'','','0000-00-00','drashti','2025-10-29 11:43:24','','0000-00-00 00:00:00'),(0,0,1442,'2025-10-29','2026-01-28',1483,0,'','','0000-00-00','janvi','2025-10-29 11:43:24','','0000-00-00 00:00:00'),(0,0,1443,'2025-10-29','2026-01-28',1484,0,'','','0000-00-00','janvi','2025-10-29 11:44:33','','0000-00-00 00:00:00'),(0,0,1444,'2025-10-29','2026-01-28',1485,0,'','','0000-00-00','drashti','2025-10-29 11:46:19','','0000-00-00 00:00:00'),(0,0,1445,'2025-10-29','2026-01-28',1486,0,'','','0000-00-00','reception','2025-10-29 11:46:24','','0000-00-00 00:00:00'),(0,0,1446,'2025-10-29','2026-01-28',1487,0,'','','0000-00-00','manshi','2025-10-29 11:46:46','','0000-00-00 00:00:00'),(0,0,1447,'2025-10-29','2026-01-28',1488,0,'','','0000-00-00','drashti','2025-10-29 11:56:39','','0000-00-00 00:00:00'),(0,0,1448,'2025-10-29','2026-01-28',1489,0,'','','0000-00-00','janvi','2025-10-29 11:56:49','','0000-00-00 00:00:00'),(0,0,1449,'2025-10-29','2026-01-28',1490,0,'','','0000-00-00','reception','2025-10-29 11:59:33','','0000-00-00 00:00:00'),(0,0,1450,'2025-10-29','2026-01-28',1491,0,'','','0000-00-00','drashti','2025-10-29 12:01:00','','0000-00-00 00:00:00'),(0,0,1451,'2025-10-29','2026-01-28',1492,0,'','','0000-00-00','reception','2025-10-29 12:17:56','','0000-00-00 00:00:00'),(0,0,1452,'2025-10-29','2026-01-28',1493,0,'','','0000-00-00','manshi','2025-10-29 12:21:42','','0000-00-00 00:00:00'),(0,0,1453,'2025-10-29','2026-01-28',1494,0,'','','0000-00-00','janvi','2025-10-29 12:22:47','','0000-00-00 00:00:00'),(0,0,1454,'2025-10-29','2026-01-28',1495,0,'','','0000-00-00','drashti','2025-10-29 12:31:43','','0000-00-00 00:00:00'),(0,0,1455,'2025-10-29','2026-01-28',1496,0,'','','0000-00-00','drashti','2025-10-29 12:35:01','','0000-00-00 00:00:00'),(0,0,1456,'2025-10-29','2026-01-28',1497,0,'','','0000-00-00','manshi','2025-10-29 12:39:24','','0000-00-00 00:00:00'),(0,0,1457,'2025-10-29','2026-01-28',1498,0,'','','0000-00-00','reception','2025-10-29 12:41:18','','0000-00-00 00:00:00'),(0,0,1458,'2025-10-29','2026-01-28',1499,0,'','','0000-00-00','reception','2025-10-29 12:43:09','','0000-00-00 00:00:00'),(0,0,1459,'2025-10-29','2026-01-28',1500,0,'','','0000-00-00','reception','2025-10-29 12:56:52','','0000-00-00 00:00:00'),(0,0,1460,'2025-10-29','2026-01-28',1501,0,'','','0000-00-00','reception','2025-10-29 13:07:20','','0000-00-00 00:00:00'),(0,0,1461,'2025-10-29','2026-01-28',1502,0,'','','0000-00-00','janvi','2025-10-29 13:18:12','','0000-00-00 00:00:00'),(0,0,1462,'2025-10-29','2026-01-28',1503,0,'','','0000-00-00','reception','2025-10-29 15:37:33','','0000-00-00 00:00:00'),(0,0,1463,'2025-10-29','2026-01-28',1504,0,'','','0000-00-00','reception','2025-10-29 16:27:45','','0000-00-00 00:00:00'),(0,0,1464,'2025-10-29','2026-01-28',1505,0,'','','0000-00-00','reception','2025-10-29 16:34:30','','0000-00-00 00:00:00'),(0,0,1465,'2025-10-29','2026-01-28',1506,0,'','','0000-00-00','reception','2025-10-29 16:38:31','','0000-00-00 00:00:00'),(0,0,1466,'2025-10-29','2026-01-28',1507,0,'','','0000-00-00','reception','2025-10-29 16:44:12','','0000-00-00 00:00:00'),(0,0,1467,'2025-10-29','2026-01-28',1508,0,'','','0000-00-00','reception','2025-10-29 16:48:44','','0000-00-00 00:00:00'),(0,0,1468,'2025-10-29','2026-01-28',1509,0,'','','0000-00-00','reception','2025-10-29 17:09:31','','0000-00-00 00:00:00'),(0,0,1469,'2025-10-29','2026-01-28',1510,0,'','','0000-00-00','drashti','2025-10-29 17:17:15','','0000-00-00 00:00:00'),(0,0,1470,'2025-10-29','2026-01-28',1511,0,'','','0000-00-00','reception','2025-10-29 17:20:37','','0000-00-00 00:00:00'),(0,0,1471,'2025-10-29','2026-01-28',1512,0,'','','0000-00-00','reception','2025-10-29 17:27:17','','0000-00-00 00:00:00'),(0,0,1472,'2025-10-29','2026-01-28',1513,0,'','','0000-00-00','reception','2025-10-29 17:29:36','','0000-00-00 00:00:00'),(0,0,1473,'2025-10-29','2026-01-28',1514,0,'','','0000-00-00','reception','2025-10-29 17:32:46','','0000-00-00 00:00:00'),(0,0,1474,'2025-10-29','2026-01-28',1515,0,'','','0000-00-00','reception','2025-10-29 17:35:51','','0000-00-00 00:00:00'),(0,0,1475,'2025-10-29','2026-01-28',1516,0,'','','0000-00-00','reception','2025-10-29 17:42:01','','0000-00-00 00:00:00'),(0,0,1476,'2025-10-29','2026-01-28',1517,0,'','','0000-00-00','priyanshi','2025-10-29 17:42:38','','0000-00-00 00:00:00'),(0,0,1477,'2025-10-29','2026-01-28',1518,0,'','','0000-00-00','reception','2025-10-29 17:50:23','','0000-00-00 00:00:00'),(0,0,1478,'2025-10-29','2026-01-28',1519,0,'','','0000-00-00','janvi','2025-10-29 17:57:08','','0000-00-00 00:00:00'),(0,0,1479,'2025-10-29','2026-01-28',1520,0,'','','0000-00-00','reception','2025-10-29 17:59:48','','0000-00-00 00:00:00'),(0,0,1480,'2025-10-29','2026-01-28',1521,0,'','','0000-00-00','janvi','2025-10-29 18:02:19','','0000-00-00 00:00:00'),(0,0,1481,'2025-10-29','2026-01-28',1522,0,'','','0000-00-00','reception','2025-10-29 18:08:34','','0000-00-00 00:00:00'),(0,0,1482,'2025-10-29','2026-01-28',1523,0,'','','0000-00-00','reception','2025-10-29 18:15:20','','0000-00-00 00:00:00'),(0,0,1483,'2025-10-29','2026-01-28',1524,0,'','','0000-00-00','manshi','2025-10-29 18:16:10','','0000-00-00 00:00:00'),(0,0,1484,'2025-10-29','2026-01-28',1525,0,'','','0000-00-00','janvi','2025-10-29 18:19:28','','0000-00-00 00:00:00'),(0,0,1485,'2025-10-29','2026-01-28',1526,0,'','','0000-00-00','shweta','2025-10-29 18:21:20','','0000-00-00 00:00:00'),(0,0,1486,'2025-10-29','2026-01-28',1527,0,'','','0000-00-00','shweta','2025-10-29 18:26:19','','0000-00-00 00:00:00'),(0,0,1487,'2025-10-29','2026-01-28',1528,0,'','','0000-00-00','janvi','2025-10-29 18:29:59','','0000-00-00 00:00:00'),(0,0,1488,'2025-10-29','2026-01-28',1529,0,'','','0000-00-00','shweta','2025-10-29 18:31:32','','0000-00-00 00:00:00'),(0,0,1489,'2025-10-29','2026-01-28',1530,0,'','','0000-00-00','janvi','2025-10-29 18:35:54','','0000-00-00 00:00:00'),(0,0,1490,'2025-10-29','2026-01-28',1531,0,'','','0000-00-00','shweta','2025-10-29 18:36:33','','0000-00-00 00:00:00'),(0,0,1491,'2025-10-29','2026-01-28',1532,0,'','','0000-00-00','shweta','2025-10-29 18:40:02','','0000-00-00 00:00:00'),(0,0,1492,'2025-10-29','2026-01-28',1533,0,'','','0000-00-00','reception','2025-10-29 18:40:55','','0000-00-00 00:00:00'),(0,0,1493,'2025-10-29','2026-01-28',1534,0,'','','0000-00-00','reception','2025-10-29 19:03:15','','0000-00-00 00:00:00'),(0,0,1494,'2025-10-29','2026-01-28',1535,0,'','','0000-00-00','drashti','2025-10-29 19:06:28','','0000-00-00 00:00:00'),(0,0,1495,'2025-10-29','2026-01-28',1536,0,'','','0000-00-00','reception','2025-10-29 19:14:54','','0000-00-00 00:00:00'),(0,0,1496,'2025-10-29','2026-01-28',1537,0,'','','0000-00-00','janvi','2025-10-29 19:39:54','','0000-00-00 00:00:00'),(0,0,1497,'2025-10-29','2026-01-28',1538,0,'','','0000-00-00','reception','2025-10-29 19:55:19','','0000-00-00 00:00:00'),(0,0,1498,'2025-10-30','2026-01-29',1539,0,'','','0000-00-00','urvashi','2025-10-30 09:03:25','','0000-00-00 00:00:00'),(0,0,1499,'2025-10-30','2026-01-29',1540,0,'','','0000-00-00','urvashi','2025-10-30 09:05:14','','0000-00-00 00:00:00'),(0,0,1500,'2025-10-30','2026-01-29',1541,0,'','','0000-00-00','reception','2025-10-30 09:31:19','','0000-00-00 00:00:00'),(0,0,1501,'2025-10-30','2026-01-29',1542,0,'','','0000-00-00','reception','2025-10-30 10:18:32','','0000-00-00 00:00:00'),(0,0,1502,'2025-10-30','2026-01-29',1543,0,'','','0000-00-00','drashti','2025-10-30 10:28:09','','0000-00-00 00:00:00'),(0,0,1503,'2025-10-30','2026-01-29',1544,0,'','','0000-00-00','reception','2025-10-30 10:30:13','','0000-00-00 00:00:00'),(0,0,1504,'2025-10-30','2026-01-29',1545,0,'','','0000-00-00','reception','2025-10-30 10:39:56','','0000-00-00 00:00:00'),(0,0,1505,'2025-10-30','2026-01-29',1546,0,'','','0000-00-00','reception','2025-10-30 10:44:58','','0000-00-00 00:00:00'),(0,0,1506,'2025-10-30','2026-01-29',1547,0,'','','0000-00-00','reception','2025-10-30 10:46:53','','0000-00-00 00:00:00'),(0,0,1507,'2025-10-30','2026-01-29',1548,0,'','','0000-00-00','reception','2025-10-30 10:56:15','','0000-00-00 00:00:00'),(0,0,1508,'2025-10-30','2026-01-29',1549,0,'','','0000-00-00','reception','2025-10-30 11:02:13','','0000-00-00 00:00:00'),(0,0,1509,'2025-10-30','2026-01-29',1550,0,'','','0000-00-00','reception','2025-10-30 11:04:34','','0000-00-00 00:00:00'),(0,0,1510,'2025-10-30','2026-01-29',1551,0,'','','0000-00-00','reception','2025-10-30 11:06:15','','0000-00-00 00:00:00'),(0,0,1511,'2025-10-30','2026-01-29',1552,0,'','','0000-00-00','drashti','2025-10-30 11:09:17','','0000-00-00 00:00:00'),(0,0,1512,'2025-10-30','2026-01-29',1553,0,'','','0000-00-00','drashti','2025-10-30 11:12:32','','0000-00-00 00:00:00'),(0,0,1513,'2025-10-30','2026-01-29',1554,0,'','','0000-00-00','janvi','2025-10-30 11:17:59','','0000-00-00 00:00:00'),(0,0,1514,'2025-10-30','2026-01-29',1555,0,'','','0000-00-00','drashti','2025-10-30 11:20:56','','0000-00-00 00:00:00'),(0,0,1515,'2025-10-30','2026-01-29',1556,0,'','','0000-00-00','drashti','2025-10-30 11:33:10','','0000-00-00 00:00:00'),(0,0,1516,'2025-10-30','2026-01-29',1557,0,'','','0000-00-00','reception','2025-10-30 11:35:39','','0000-00-00 00:00:00'),(0,0,1517,'2025-10-30','2026-01-29',1558,0,'','','0000-00-00','janvi','2025-10-30 11:36:52','','0000-00-00 00:00:00'),(0,0,1518,'2025-10-30','2026-01-29',1559,0,'','','0000-00-00','reception','2025-10-30 11:43:01','','0000-00-00 00:00:00'),(0,0,1519,'2025-10-30','2026-01-29',1560,0,'','','0000-00-00','drashti','2025-10-30 11:43:20','','0000-00-00 00:00:00'),(0,0,1520,'2025-10-30','2026-01-29',1561,0,'','','0000-00-00','drashti','2025-10-30 11:45:02','','0000-00-00 00:00:00'),(0,0,1521,'2025-10-30','2026-01-29',1562,0,'','','0000-00-00','janvi','2025-10-30 11:45:59','','0000-00-00 00:00:00'),(0,0,1522,'2025-10-30','2026-01-29',1563,0,'','','0000-00-00','reception','2025-10-30 11:50:39','','0000-00-00 00:00:00'),(0,0,1523,'2025-10-30','2026-01-29',1564,0,'','','0000-00-00','reception','2025-10-30 11:51:34','','0000-00-00 00:00:00'),(0,0,1524,'2025-10-30','2026-01-29',1565,0,'','','0000-00-00','drashti','2025-10-30 11:52:26','','0000-00-00 00:00:00'),(0,0,1525,'2025-10-30','2026-01-29',1566,0,'','','0000-00-00','drashti','2025-10-30 11:54:27','','0000-00-00 00:00:00'),(0,0,1526,'2025-10-30','2026-01-29',1567,0,'','','0000-00-00','drashti','2025-10-30 11:58:42','','0000-00-00 00:00:00'),(0,0,1527,'2025-10-30','2026-01-29',1568,0,'','','0000-00-00','janvi','2025-10-30 12:05:58','','0000-00-00 00:00:00'),(0,0,1528,'2025-10-30','2026-01-29',1569,0,'','','0000-00-00','manshi','2025-10-30 12:08:55','','0000-00-00 00:00:00'),(0,0,1529,'2025-10-30','2026-01-29',1570,0,'','','0000-00-00','drashti','2025-10-30 12:10:43','','0000-00-00 00:00:00'),(0,0,1530,'2025-10-30','2026-01-29',1571,0,'','','0000-00-00','reception','2025-10-30 12:17:16','','0000-00-00 00:00:00'),(0,0,1531,'2025-10-30','2026-01-29',1572,0,'','','0000-00-00','reception','2025-10-30 12:25:46','','0000-00-00 00:00:00'),(0,0,1532,'2025-10-30','2026-01-29',1573,0,'','','0000-00-00','janvi','2025-10-30 12:33:47','','0000-00-00 00:00:00'),(0,0,1533,'2025-10-30','2026-01-29',452,0,'','','0000-00-00','drashti','2025-10-30 12:37:46','','0000-00-00 00:00:00'),(0,0,1534,'2025-10-30','2026-01-29',1574,0,'','','0000-00-00','reception','2025-10-30 12:38:59','','0000-00-00 00:00:00'),(0,0,1535,'2025-10-30','2026-01-29',1576,0,'','','0000-00-00','janvi','2025-10-30 12:47:43','','0000-00-00 00:00:00'),(0,0,1536,'2025-10-30','2026-01-29',1577,0,'','','0000-00-00','manshi','2025-10-30 13:00:44','','0000-00-00 00:00:00'),(0,0,1537,'2025-10-30','2026-01-29',1578,0,'','','0000-00-00','janvi','2025-10-30 13:05:00','','0000-00-00 00:00:00'),(0,0,1538,'2025-10-30','2026-01-29',1579,0,'','','0000-00-00','janvi','2025-10-30 13:40:53','','0000-00-00 00:00:00'),(0,0,1539,'2025-10-30','2026-01-29',1582,0,'','','0000-00-00','reception','2025-10-30 16:47:10','','0000-00-00 00:00:00'),(0,0,1540,'2025-10-30','2026-01-29',1583,0,'','','0000-00-00','reception','2025-10-30 16:52:14','','0000-00-00 00:00:00'),(0,0,1541,'2025-10-30','2026-01-29',1584,0,'','','0000-00-00','reception','2025-10-30 16:59:52','','0000-00-00 00:00:00'),(0,0,1542,'2025-10-30','2026-01-29',1585,0,'','','0000-00-00','reception','2025-10-30 17:01:02','','0000-00-00 00:00:00'),(0,0,1543,'2025-10-30','2026-01-29',1586,0,'','','0000-00-00','reception','2025-10-30 17:05:42','','0000-00-00 00:00:00'),(0,0,1544,'2025-10-30','2026-01-29',1587,0,'','','0000-00-00','reception','2025-10-30 17:07:40','','0000-00-00 00:00:00'),(0,0,1545,'2025-10-30','2026-01-29',1588,0,'','','0000-00-00','reception','2025-10-30 17:09:40','','0000-00-00 00:00:00'),(0,0,1546,'2025-10-30','2026-01-29',1589,0,'','','0000-00-00','reception','2025-10-30 17:11:57','','0000-00-00 00:00:00'),(0,0,1547,'2025-10-30','2026-01-29',1590,0,'','','0000-00-00','reception','2025-10-30 17:17:03','','0000-00-00 00:00:00'),(0,0,1548,'2025-10-30','2026-01-29',1591,0,'','','0000-00-00','reception','2025-10-30 17:34:02','','0000-00-00 00:00:00'),(0,0,1549,'2025-10-30','2026-01-29',1592,0,'','','0000-00-00','reception','2025-10-30 17:36:29','','0000-00-00 00:00:00'),(0,0,1550,'2025-10-30','2026-01-29',1593,0,'','','0000-00-00','reception','2025-10-30 17:39:10','','0000-00-00 00:00:00'),(0,0,1551,'2025-10-30','2026-01-29',1594,0,'','','0000-00-00','drashti','2025-10-30 17:44:49','','0000-00-00 00:00:00'),(0,0,1552,'2025-10-30','2026-01-29',1595,0,'','','0000-00-00','reception','2025-10-30 17:49:43','','0000-00-00 00:00:00'),(0,0,1553,'2025-10-30','2026-01-29',1596,0,'','','0000-00-00','janvi','2025-10-30 17:57:31','','0000-00-00 00:00:00'),(0,0,1554,'2025-10-30','2026-01-29',1597,0,'','','0000-00-00','reception','2025-10-30 18:02:39','','0000-00-00 00:00:00'),(0,0,1555,'2025-10-30','2026-01-29',1598,0,'','','0000-00-00','reception','2025-10-30 18:04:11','','0000-00-00 00:00:00'),(0,0,1556,'2025-10-30','2026-01-29',1599,0,'','','0000-00-00','drashti','2025-10-30 18:14:48','','0000-00-00 00:00:00'),(0,0,1557,'2025-10-30','2026-01-29',1600,0,'','','0000-00-00','janvi','2025-10-30 18:16:47','','0000-00-00 00:00:00'),(0,0,1558,'2025-10-30','2026-01-29',1601,0,'','','0000-00-00','drashti','2025-10-30 18:16:48','','0000-00-00 00:00:00'),(0,0,1559,'2025-10-30','2026-01-29',1602,0,'','','0000-00-00','reception','2025-10-30 18:18:59','','0000-00-00 00:00:00'),(0,0,1560,'2025-10-30','2026-01-29',1603,0,'','','0000-00-00','drashti','2025-10-30 18:19:33','','0000-00-00 00:00:00'),(0,0,1561,'2025-10-30','2026-01-29',1604,0,'','','0000-00-00','drashti','2025-10-30 18:27:03','','0000-00-00 00:00:00'),(0,0,1562,'2025-10-30','2026-01-29',1605,0,'','','0000-00-00','janvi','2025-10-30 18:33:30','','0000-00-00 00:00:00'),(0,0,1563,'2025-10-30','2026-01-29',1606,0,'','','0000-00-00','drashti','2025-10-30 18:40:27','','0000-00-00 00:00:00'),(0,0,1564,'2025-10-30','2026-01-29',1607,0,'','','0000-00-00','manshi','2025-10-30 18:42:27','','0000-00-00 00:00:00'),(0,0,1565,'2025-10-30','2026-01-29',1608,0,'','','0000-00-00','drashti','2025-10-30 18:43:16','','0000-00-00 00:00:00'),(0,0,1566,'2025-10-30','2026-01-29',1609,0,'','','0000-00-00','drashti','2025-10-30 18:46:05','','0000-00-00 00:00:00'),(0,0,1567,'2025-10-30','2026-01-29',1610,0,'','','0000-00-00','janvi','2025-10-30 18:51:23','','0000-00-00 00:00:00'),(0,0,1568,'2025-10-30','2026-01-29',1611,0,'','','0000-00-00','drashti','2025-10-30 18:52:41','','0000-00-00 00:00:00'),(0,0,1569,'2025-10-30','2026-01-29',1612,0,'','','0000-00-00','reception','2025-10-30 19:15:53','','0000-00-00 00:00:00'),(0,0,1570,'2025-10-30','2026-01-29',1613,0,'','','0000-00-00','drashti','2025-10-30 19:17:59','','0000-00-00 00:00:00'),(0,0,1571,'2025-10-30','2026-01-29',1614,0,'','','0000-00-00','drashti','2025-10-30 20:01:49','','0000-00-00 00:00:00'),(0,0,1572,'2025-10-30','2026-01-29',1615,0,'','','0000-00-00','janvi','2025-10-30 20:09:48','','0000-00-00 00:00:00'),(0,0,1573,'2025-10-31','2026-01-30',1617,0,'','','0000-00-00','urvashi','2025-10-31 08:56:34','','0000-00-00 00:00:00'),(0,0,1574,'2025-10-31','2026-01-30',1618,0,'','','0000-00-00','urvashi','2025-10-31 08:59:52','','0000-00-00 00:00:00'),(0,0,1575,'2025-10-31','2026-01-30',1619,0,'','','0000-00-00','reception','2025-10-31 09:02:38','','0000-00-00 00:00:00'),(0,0,1576,'2025-10-31','2026-01-30',1620,0,'','','0000-00-00','urvashi','2025-10-31 09:05:10','','0000-00-00 00:00:00'),(0,0,1577,'2025-10-31','2026-01-30',1621,0,'','','0000-00-00','reception','2025-10-31 09:18:44','','0000-00-00 00:00:00'),(0,0,1578,'2025-10-31','2026-01-30',1622,0,'','','0000-00-00','reception','2025-10-31 09:46:42','','0000-00-00 00:00:00'),(0,0,1579,'2025-10-31','2026-01-30',1623,0,'','','0000-00-00','reception','2025-10-31 09:52:05','','0000-00-00 00:00:00'),(0,0,1580,'2025-10-31','2026-01-30',1624,0,'','','0000-00-00','reception','2025-10-31 10:00:23','','0000-00-00 00:00:00'),(0,0,1581,'2025-10-31','2026-01-30',1625,0,'','','0000-00-00','reception','2025-10-31 10:01:26','','0000-00-00 00:00:00'),(0,0,1582,'2025-10-31','2026-01-30',1626,0,'','','0000-00-00','reception','2025-10-31 10:11:50','','0000-00-00 00:00:00'),(0,0,1583,'2025-10-31','2026-01-30',1627,0,'','','0000-00-00','reception','2025-10-31 10:16:57','','0000-00-00 00:00:00'),(0,0,1584,'2025-10-31','2026-01-30',1628,0,'','','0000-00-00','reception','2025-10-31 10:19:13','','0000-00-00 00:00:00'),(0,0,1585,'2025-10-31','2026-01-30',1629,0,'','','0000-00-00','drashti','2025-10-31 10:31:13','','0000-00-00 00:00:00'),(0,0,1586,'2025-10-31','2026-01-30',1630,0,'','','0000-00-00','drashti','2025-10-31 10:33:20','','0000-00-00 00:00:00'),(0,0,1587,'2025-10-31','2026-01-30',1631,0,'','','0000-00-00','reception','2025-10-31 10:36:27','','0000-00-00 00:00:00'),(0,0,1588,'2025-10-31','2026-01-30',1632,0,'','','0000-00-00','drashti','2025-10-31 10:36:55','','0000-00-00 00:00:00'),(0,0,1589,'2025-10-31','2026-01-30',1633,0,'','','0000-00-00','reception','2025-10-31 10:38:39','','0000-00-00 00:00:00'),(0,0,1590,'2025-10-31','2026-01-30',1634,0,'','','0000-00-00','janvi','2025-10-31 10:48:48','','0000-00-00 00:00:00'),(0,0,1591,'2025-10-31','2026-01-30',1635,0,'','','0000-00-00','reception','2025-10-31 10:49:34','','0000-00-00 00:00:00'),(0,0,1592,'2025-10-31','2026-01-30',1636,0,'','','0000-00-00','janvi','2025-10-31 10:52:51','','0000-00-00 00:00:00'),(0,0,1593,'2025-10-31','2026-01-30',1637,0,'','','0000-00-00','reception','2025-10-31 10:53:22','','0000-00-00 00:00:00'),(0,0,1594,'2025-10-31','2026-01-30',1638,0,'','','0000-00-00','janvi','2025-10-31 10:56:29','','0000-00-00 00:00:00'),(0,0,1595,'2025-10-31','2026-01-30',1639,0,'','','0000-00-00','reception','2025-10-31 10:58:13','','0000-00-00 00:00:00'),(0,0,1596,'2025-10-31','2026-01-30',1640,0,'','','0000-00-00','reception','2025-10-31 11:02:10','','0000-00-00 00:00:00'),(0,0,1597,'2025-10-31','2026-01-30',1642,0,'','','0000-00-00','reception','2025-10-31 11:08:33','','0000-00-00 00:00:00'),(0,0,1598,'2025-10-31','2026-01-30',1643,0,'','','0000-00-00','janvi','2025-10-31 11:10:38','','0000-00-00 00:00:00'),(0,0,1599,'2025-10-31','2026-01-30',1644,0,'','','0000-00-00','reception','2025-10-31 11:19:24','','0000-00-00 00:00:00'),(0,0,1600,'2025-10-31','2026-01-30',1645,0,'','','0000-00-00','drashti','2025-10-31 11:20:23','','0000-00-00 00:00:00'),(0,0,1601,'2025-10-31','2026-01-30',1646,0,'','','0000-00-00','reception','2025-10-31 11:22:12','','0000-00-00 00:00:00'),(0,0,1602,'2025-10-31','2026-01-30',1158,0,'','','0000-00-00','janvi','2025-10-31 11:26:15','','0000-00-00 00:00:00'),(0,0,1603,'2025-10-31','2026-01-30',1648,0,'','','0000-00-00','janvi','2025-10-31 11:32:18','','0000-00-00 00:00:00'),(0,0,1604,'2025-10-31','2026-01-30',1649,0,'','','0000-00-00','drashti','2025-10-31 11:37:02','','0000-00-00 00:00:00'),(0,0,1605,'2025-10-31','2026-01-30',1650,0,'','','0000-00-00','janvi','2025-10-31 11:38:20','','0000-00-00 00:00:00'),(0,0,1606,'2025-10-31','2026-01-30',1651,0,'','','0000-00-00','drashti','2025-10-31 11:39:48','','0000-00-00 00:00:00'),(0,0,1607,'2025-10-31','2026-01-30',1652,0,'','','0000-00-00','reception','2025-10-31 11:40:11','','0000-00-00 00:00:00'),(0,0,1608,'2025-10-31','2026-01-30',1653,0,'','','0000-00-00','janvi','2025-10-31 11:40:13','','0000-00-00 00:00:00'),(0,0,1609,'2025-10-31','2026-01-30',1654,0,'','','0000-00-00','reception','2025-10-31 11:45:08','','0000-00-00 00:00:00'),(0,0,1610,'2025-10-31','2026-01-30',1655,0,'','','0000-00-00','reception','2025-10-31 11:46:45','','0000-00-00 00:00:00'),(0,0,1611,'2025-10-31','2026-01-30',1656,0,'','','0000-00-00','drashti','2025-10-31 11:50:57','','0000-00-00 00:00:00'),(0,0,1612,'2025-10-31','2026-01-30',1657,0,'','','0000-00-00','reception','2025-10-31 11:54:05','','0000-00-00 00:00:00'),(0,0,1613,'2025-10-31','2026-01-30',1658,0,'','','0000-00-00','reception','2025-10-31 11:58:57','','0000-00-00 00:00:00'),(0,0,1614,'2025-10-31','2026-01-30',1659,0,'','','0000-00-00','manshi','2025-10-31 12:01:53','','0000-00-00 00:00:00'),(0,0,1615,'2025-10-31','2026-01-30',1660,0,'','','0000-00-00','drashti','2025-10-31 12:05:07','','0000-00-00 00:00:00'),(0,0,1616,'2025-10-31','2026-01-30',1661,0,'','','0000-00-00','janvi','2025-10-31 12:05:55','','0000-00-00 00:00:00'),(0,0,1617,'2025-10-31','2026-01-30',1662,0,'','','0000-00-00','reception','2025-10-31 12:15:46','','0000-00-00 00:00:00'),(0,0,1618,'2025-10-31','2026-01-30',1663,0,'','','0000-00-00','janvi','2025-10-31 12:15:49','','0000-00-00 00:00:00'),(0,0,1619,'2025-10-31','2026-01-30',1664,0,'','','0000-00-00','drashti','2025-10-31 12:16:15','','0000-00-00 00:00:00'),(0,0,1620,'2025-10-31','2026-01-30',1665,0,'','','0000-00-00','reception','2025-10-31 12:18:59','','0000-00-00 00:00:00'),(0,0,1621,'2025-10-31','2026-01-30',1666,0,'','','0000-00-00','janvi','2025-10-31 12:19:02','','0000-00-00 00:00:00'),(0,0,1622,'2025-10-31','2026-01-30',1667,0,'','','0000-00-00','reception','2025-10-31 12:20:28','','0000-00-00 00:00:00'),(0,0,1623,'2025-10-31','2026-01-30',1668,0,'','','0000-00-00','janvi','2025-10-31 12:30:51','','0000-00-00 00:00:00'),(0,0,1624,'2025-10-31','2026-01-30',1669,0,'','','0000-00-00','reception','2025-10-31 12:31:56','','0000-00-00 00:00:00'),(0,0,1625,'2025-10-31','2026-01-30',1670,0,'','','0000-00-00','manshi','2025-10-31 12:36:19','','0000-00-00 00:00:00'),(0,0,1626,'2025-10-31','2026-01-30',1671,0,'','','0000-00-00','reception','2025-10-31 12:46:17','','0000-00-00 00:00:00'),(0,0,1627,'2025-10-31','2026-01-30',1672,0,'','','0000-00-00','manshi','2025-10-31 12:46:53','','0000-00-00 00:00:00'),(0,0,1628,'2025-10-31','2026-01-30',1673,0,'','','0000-00-00','reception','2025-10-31 12:48:31','','0000-00-00 00:00:00'),(0,0,1629,'2025-10-31','2026-01-30',1674,0,'','','0000-00-00','drashti','2025-10-31 13:03:10','','0000-00-00 00:00:00'),(0,0,1630,'2025-10-31','2026-01-30',1675,0,'','','0000-00-00','drashti','2025-10-31 13:08:36','','0000-00-00 00:00:00'),(0,0,1631,'2025-10-31','2026-01-30',1676,0,'','','0000-00-00','reception','2025-10-31 13:12:05','','0000-00-00 00:00:00'),(0,0,1632,'2025-10-31','2026-01-30',1677,0,'','','0000-00-00','drashti','2025-10-31 13:13:47','','0000-00-00 00:00:00'),(0,0,1633,'2025-10-31','2026-01-30',1678,0,'','','0000-00-00','drashti','2025-10-31 13:15:33','','0000-00-00 00:00:00'),(0,0,1634,'2025-10-31','2026-01-30',1679,0,'','','0000-00-00','drashti','2025-10-31 13:50:18','','0000-00-00 00:00:00'),(0,0,1635,'2025-10-31','2026-01-30',1680,0,'','','0000-00-00','drashti','2025-10-31 14:10:30','','0000-00-00 00:00:00'),(0,0,1636,'2025-10-31','2026-01-30',1681,0,'','','0000-00-00','reception','2025-10-31 14:24:15','','0000-00-00 00:00:00'),(0,0,1637,'2025-10-31','2026-01-30',1682,0,'','','0000-00-00','drashti','2025-10-31 16:11:57','','0000-00-00 00:00:00'),(0,0,1638,'2025-10-31','2026-01-30',1683,0,'','','0000-00-00','reception','2025-10-31 16:24:06','','0000-00-00 00:00:00'),(0,0,1639,'2025-10-31','2026-01-30',1684,0,'','','0000-00-00','reception','2025-10-31 16:26:50','','0000-00-00 00:00:00'),(0,0,1640,'2025-10-31','2026-01-30',1685,0,'','','0000-00-00','reception','2025-10-31 16:34:22','','0000-00-00 00:00:00'),(0,0,1641,'2025-10-31','2026-01-30',1686,0,'','','0000-00-00','reception','2025-10-31 16:42:59','','0000-00-00 00:00:00'),(0,0,1642,'2025-10-31','2026-01-30',1687,0,'','','0000-00-00','reception','2025-10-31 16:46:12','','0000-00-00 00:00:00'),(0,0,1643,'2025-10-31','2026-01-30',1688,0,'','','0000-00-00','reception','2025-10-31 16:47:26','','0000-00-00 00:00:00'),(0,0,1644,'2025-10-31','2026-01-30',1689,0,'','','0000-00-00','reception','2025-10-31 17:02:44','','0000-00-00 00:00:00'),(0,0,1645,'2025-10-31','2026-01-30',1690,0,'','','0000-00-00','reception','2025-10-31 17:07:46','','0000-00-00 00:00:00'),(0,0,1646,'2025-10-31','2026-01-30',1691,0,'','','0000-00-00','manshi','2025-10-31 17:10:48','','0000-00-00 00:00:00'),(0,0,1647,'2025-10-31','2026-01-30',1692,0,'','','0000-00-00','janvi','2025-10-31 17:12:30','','0000-00-00 00:00:00'),(0,0,1648,'2025-10-31','2026-01-30',1693,0,'','','0000-00-00','reception','2025-10-31 17:12:52','','0000-00-00 00:00:00'),(0,0,1649,'2025-10-31','2026-01-30',1694,0,'','','0000-00-00','reception','2025-10-31 17:15:19','','0000-00-00 00:00:00'),(0,0,1650,'2025-10-31','2026-01-30',1695,0,'','','0000-00-00','reception','2025-10-31 17:16:21','','0000-00-00 00:00:00'),(0,0,1651,'2025-10-31','2026-01-30',1696,0,'','','0000-00-00','reception','2025-10-31 17:20:25','','0000-00-00 00:00:00'),(0,0,1652,'2025-10-31','2026-01-30',1697,0,'','','0000-00-00','reception','2025-10-31 17:23:59','','0000-00-00 00:00:00'),(0,0,1653,'2025-10-31','2026-01-30',1698,0,'','','0000-00-00','drashti','2025-10-31 17:37:17','','0000-00-00 00:00:00'),(0,0,1654,'2025-10-31','2026-01-30',1699,0,'','','0000-00-00','drashti','2025-10-31 17:43:43','','0000-00-00 00:00:00'),(0,0,1655,'2025-10-31','2026-01-30',1700,0,'','','0000-00-00','reception','2025-10-31 17:46:34','','0000-00-00 00:00:00'),(0,0,1656,'2025-10-31','2026-01-30',1701,0,'','','0000-00-00','janvi','2025-10-31 17:47:45','','0000-00-00 00:00:00'),(0,0,1657,'2025-10-31','2026-01-30',1702,0,'','','0000-00-00','janvi','2025-10-31 17:49:18','','0000-00-00 00:00:00'),(0,0,1658,'2025-10-31','2026-01-30',1703,0,'','','0000-00-00','drashti','2025-10-31 17:51:10','','0000-00-00 00:00:00'),(0,0,1659,'2025-10-31','2026-01-30',1704,0,'','','0000-00-00','reception','2025-10-31 17:54:46','','0000-00-00 00:00:00'),(0,0,1660,'2025-10-31','2026-01-30',1705,0,'','','0000-00-00','reception','2025-10-31 18:01:59','','0000-00-00 00:00:00'),(0,0,1661,'2025-10-31','2026-01-30',1706,0,'','','0000-00-00','manshi','2025-10-31 18:02:40','','0000-00-00 00:00:00'),(0,0,1662,'2025-10-31','2026-01-30',1707,0,'','','0000-00-00','janvi','2025-10-31 18:07:27','','0000-00-00 00:00:00'),(0,0,1663,'2025-10-31','2026-01-30',1708,0,'','','0000-00-00','reception','2025-10-31 18:13:18','','0000-00-00 00:00:00'),(0,0,1664,'2025-10-31','2026-01-30',1709,0,'','','0000-00-00','drashti','2025-10-31 18:13:20','','0000-00-00 00:00:00'),(0,0,1665,'2025-10-31','2026-01-30',1710,0,'','','0000-00-00','reception','2025-10-31 18:15:23','','0000-00-00 00:00:00'),(0,0,1666,'2025-10-31','2026-01-30',1711,0,'','','0000-00-00','drashti','2025-10-31 18:18:21','','0000-00-00 00:00:00'),(0,0,1667,'2025-10-31','2026-01-30',1712,0,'','','0000-00-00','drashti','2025-10-31 18:20:46','','0000-00-00 00:00:00'),(0,0,1668,'2025-10-31','2026-01-30',1713,0,'','','0000-00-00','drashti','2025-10-31 18:23:31','','0000-00-00 00:00:00'),(0,0,1669,'2025-10-31','2026-01-30',1714,0,'','','0000-00-00','janvi','2025-10-31 18:24:10','','0000-00-00 00:00:00'),(0,0,1670,'2025-10-31','2026-01-30',1715,0,'','','0000-00-00','manshi','2025-10-31 18:24:54','','0000-00-00 00:00:00'),(0,0,1671,'2025-10-31','2026-01-30',1716,0,'','','0000-00-00','reception','2025-10-31 18:29:00','','0000-00-00 00:00:00'),(0,0,1672,'2025-10-31','2026-01-30',1717,0,'','','0000-00-00','drashti','2025-10-31 18:29:31','','0000-00-00 00:00:00'),(0,0,1673,'2025-10-31','2026-01-30',1718,0,'','','0000-00-00','janvi','2025-10-31 18:31:29','','0000-00-00 00:00:00'),(0,0,1674,'2025-10-31','2026-01-30',1719,0,'','','0000-00-00','drashti','2025-10-31 18:31:54','','0000-00-00 00:00:00'),(0,0,1675,'2025-10-31','2026-01-30',1720,0,'','','0000-00-00','reception','2025-10-31 18:33:22','','0000-00-00 00:00:00'),(0,0,1676,'2025-10-31','2026-01-30',1721,0,'','','0000-00-00','reception','2025-10-31 18:37:59','','0000-00-00 00:00:00'),(0,0,1677,'2025-10-31','2026-01-30',1722,0,'','','0000-00-00','drashti','2025-10-31 18:38:54','','0000-00-00 00:00:00'),(0,0,1678,'2025-10-31','2026-01-30',1723,0,'','','0000-00-00','reception','2025-10-31 18:40:06','','0000-00-00 00:00:00'),(0,0,1679,'2025-10-31','2026-01-30',1724,0,'','','0000-00-00','reception','2025-10-31 18:42:29','','0000-00-00 00:00:00'),(0,0,1680,'2025-10-31','2026-01-30',1725,0,'','','0000-00-00','reception','2025-10-31 18:51:46','','0000-00-00 00:00:00'),(0,0,1681,'2025-10-31','2026-01-30',1726,0,'','','0000-00-00','drashti','2025-10-31 19:29:24','','0000-00-00 00:00:00'),(0,0,1682,'2025-10-31','2026-01-30',1727,0,'','','0000-00-00','manshi','2025-10-31 19:38:59','','0000-00-00 00:00:00'),(0,0,1683,'2025-10-31','2026-01-30',1728,0,'','','0000-00-00','reception','2025-10-31 20:56:06','','0000-00-00 00:00:00'),(0,0,1684,'2025-11-01','2026-01-31',1730,0,'','','0000-00-00','urvashi','2025-11-01 09:10:31','','0000-00-00 00:00:00'),(0,0,1685,'2025-11-01','2026-01-31',1731,0,'','','0000-00-00','urvashi','2025-11-01 09:14:04','','0000-00-00 00:00:00'),(0,0,1686,'2025-11-01','2026-01-31',1732,0,'','','0000-00-00','reception','2025-11-01 09:14:27','','0000-00-00 00:00:00'),(0,0,1687,'2025-11-01','2026-01-31',1733,0,'','','0000-00-00','reception','2025-11-01 09:16:11','','0000-00-00 00:00:00'),(0,0,1688,'2025-11-01','2026-01-31',1734,0,'','','0000-00-00','urvashi','2025-11-01 09:16:34','','0000-00-00 00:00:00'),(0,0,1689,'2025-11-01','2026-01-31',1735,0,'','','0000-00-00','urvashi','2025-11-01 09:47:22','','0000-00-00 00:00:00'),(0,0,1690,'2025-11-01','2026-01-31',1736,0,'','','0000-00-00','reception','2025-11-01 09:48:44','','0000-00-00 00:00:00'),(0,0,1691,'2025-11-01','2026-01-31',1737,0,'','','0000-00-00','reception','2025-11-01 10:13:27','','0000-00-00 00:00:00'),(0,0,1692,'2025-11-01','2026-01-31',1738,0,'','','0000-00-00','drashti','2025-11-01 10:19:30','','0000-00-00 00:00:00'),(0,0,1693,'2025-11-01','2026-01-31',1739,0,'','','0000-00-00','reception','2025-11-01 10:21:56','','0000-00-00 00:00:00'),(0,0,1694,'2025-11-01','2026-01-31',1740,0,'','','0000-00-00','manshi','2025-11-01 10:23:39','','0000-00-00 00:00:00'),(0,0,1695,'2025-11-01','2026-01-31',1741,0,'','','0000-00-00','drashti','2025-11-01 10:25:04','','0000-00-00 00:00:00'),(0,0,1696,'2025-11-01','2026-01-31',1742,0,'','','0000-00-00','reception','2025-11-01 10:33:26','','0000-00-00 00:00:00'),(0,0,1697,'2025-11-01','2026-01-31',1743,0,'','','0000-00-00','reception','2025-11-01 10:36:28','','0000-00-00 00:00:00'),(0,0,1698,'2025-11-01','2026-01-31',1744,0,'','','0000-00-00','reception','2025-11-01 10:46:17','','0000-00-00 00:00:00'),(0,0,1699,'2025-11-01','2026-01-31',1745,0,'','','0000-00-00','janvi','2025-11-01 10:47:40','','0000-00-00 00:00:00'),(0,0,1700,'2025-11-01','2026-01-31',1746,0,'','','0000-00-00','reception','2025-11-01 10:48:40','','0000-00-00 00:00:00'),(0,0,1701,'2025-11-01','2026-01-31',1747,0,'','','0000-00-00','manshi','2025-11-01 10:48:41','','0000-00-00 00:00:00'),(0,0,1702,'2025-11-01','2026-01-31',1748,0,'','','0000-00-00','drashti','2025-11-01 10:49:15','','0000-00-00 00:00:00'),(0,0,1703,'2025-11-01','2026-01-31',1749,0,'','','0000-00-00','drashti','2025-11-01 10:51:42','','0000-00-00 00:00:00'),(0,0,1704,'2025-11-01','2026-01-31',1750,0,'','','0000-00-00','drashti','2025-11-01 10:54:55','','0000-00-00 00:00:00'),(0,0,1705,'2025-11-01','2026-01-31',1107,0,'','','0000-00-00','drashti','2025-11-01 10:59:48','','0000-00-00 00:00:00'),(0,0,1706,'2025-11-01','2026-01-31',1751,0,'','','0000-00-00','reception','2025-11-01 11:00:32','','0000-00-00 00:00:00'),(0,0,1707,'2025-11-01','2026-01-31',1752,0,'','','0000-00-00','reception','2025-11-01 11:08:42','','0000-00-00 00:00:00'),(0,0,1708,'2025-11-01','2026-01-31',1753,0,'','','0000-00-00','janvi','2025-11-01 11:12:02','','0000-00-00 00:00:00'),(0,0,1709,'2025-11-01','2026-01-31',1754,0,'','','0000-00-00','drashti','2025-11-01 11:12:24','','0000-00-00 00:00:00'),(0,0,1710,'2025-11-01','2026-01-31',1152,0,'','','0000-00-00','janvi','2025-11-01 11:13:54','','0000-00-00 00:00:00'),(0,0,1711,'2025-11-01','2026-01-31',1755,0,'','','0000-00-00','janvi','2025-11-01 11:15:33','','0000-00-00 00:00:00'),(0,0,1712,'2025-11-01','2026-01-31',1756,0,'','','0000-00-00','reception','2025-11-01 11:15:51','','0000-00-00 00:00:00'),(0,0,1713,'2025-11-01','2026-01-31',1757,0,'','','0000-00-00','drashti','2025-11-01 11:16:08','','0000-00-00 00:00:00'),(0,0,1714,'2025-11-01','2026-01-31',1758,0,'','','0000-00-00','reception','2025-11-01 11:17:40','','0000-00-00 00:00:00'),(0,0,1715,'2025-11-01','2026-01-31',1759,0,'','','0000-00-00','drashti','2025-11-01 11:19:52','','0000-00-00 00:00:00'),(0,0,1716,'2025-11-01','2026-01-31',1760,0,'','','0000-00-00','reception','2025-11-01 11:19:57','','0000-00-00 00:00:00'),(0,0,1717,'2025-11-01','2026-01-31',1761,0,'','','0000-00-00','janvi','2025-11-01 11:22:47','','0000-00-00 00:00:00'),(0,0,1718,'2025-11-01','2026-01-31',1762,0,'','','0000-00-00','drashti','2025-11-01 11:25:53','','0000-00-00 00:00:00'),(0,0,1719,'2025-11-01','2026-01-31',1763,0,'','','0000-00-00','drashti','2025-11-01 11:31:22','','0000-00-00 00:00:00'),(0,0,1720,'2025-11-01','2026-01-31',1764,0,'','','0000-00-00','reception','2025-11-01 11:40:55','','0000-00-00 00:00:00'),(0,0,1721,'2025-11-01','2026-01-31',1765,0,'','','0000-00-00','reception','2025-11-01 11:45:18','','0000-00-00 00:00:00'),(0,0,1722,'2025-11-01','2026-01-31',1766,0,'','','0000-00-00','janvi','2025-11-01 11:46:19','','0000-00-00 00:00:00'),(0,0,1723,'2025-11-01','2026-01-31',1767,0,'','','0000-00-00','reception','2025-11-01 11:48:44','','0000-00-00 00:00:00'),(0,0,1724,'2025-11-01','2026-01-31',1768,0,'','','0000-00-00','janvi','2025-11-01 11:56:09','','0000-00-00 00:00:00'),(0,0,1725,'2025-11-01','2026-01-31',1769,0,'','','0000-00-00','reception','2025-11-01 12:00:18','','0000-00-00 00:00:00'),(0,0,1726,'2025-11-01','2026-01-31',1770,0,'','','0000-00-00','reception','2025-11-01 12:03:54','','0000-00-00 00:00:00'),(0,0,1727,'2025-11-01','2026-01-31',1103,0,'','','0000-00-00','drashti','2025-11-01 12:16:43','','0000-00-00 00:00:00'),(0,0,1728,'2025-11-01','2026-01-31',1771,0,'','','0000-00-00','janvi','2025-11-01 12:17:12','','0000-00-00 00:00:00'),(0,0,1729,'2025-11-01','2026-01-31',1773,0,'','','0000-00-00','manshi','2025-11-01 12:20:46','','0000-00-00 00:00:00'),(0,0,1730,'2025-11-01','2026-01-31',1774,0,'','','0000-00-00','reception','2025-11-01 12:23:22','','0000-00-00 00:00:00'),(0,0,1731,'2025-11-01','2026-01-31',1775,0,'','','0000-00-00','reception','2025-11-01 12:26:57','','0000-00-00 00:00:00'),(0,0,1732,'2025-11-01','2026-01-31',1776,0,'','','0000-00-00','janvi','2025-11-01 12:34:17','','0000-00-00 00:00:00'),(0,0,1733,'2025-11-01','2026-01-31',1777,0,'','','0000-00-00','drashti','2025-11-01 12:45:05','','0000-00-00 00:00:00'),(0,0,1734,'2025-11-01','2026-01-31',1778,0,'','','0000-00-00','reception','2025-11-01 12:49:04','','0000-00-00 00:00:00'),(0,0,1735,'2025-11-01','2026-01-31',1779,0,'','','0000-00-00','reception','2025-11-01 12:51:49','','0000-00-00 00:00:00'),(0,0,1736,'2025-11-01','2026-01-31',1780,0,'','','0000-00-00','reception','2025-11-01 12:54:56','','0000-00-00 00:00:00'),(0,0,1737,'2025-11-01','2026-01-31',1781,0,'','','0000-00-00','drashti','2025-11-01 12:57:17','','0000-00-00 00:00:00'),(0,0,1738,'2025-11-01','2026-01-31',1782,0,'','','0000-00-00','janvi','2025-11-01 12:58:28','','0000-00-00 00:00:00'),(0,0,1739,'2025-11-01','2026-01-31',1783,0,'','','0000-00-00','reception','2025-11-01 16:26:55','','0000-00-00 00:00:00'),(0,0,1740,'2025-11-01','2026-01-31',1784,0,'','','0000-00-00','manshi','2025-11-01 17:05:54','','0000-00-00 00:00:00'),(0,0,1741,'2025-11-01','2026-01-31',1785,0,'','','0000-00-00','janvi','2025-11-01 17:30:57','','0000-00-00 00:00:00'),(0,0,1742,'2025-11-01','2026-01-31',1786,0,'','','0000-00-00','drashti','2025-11-01 18:08:43','','0000-00-00 00:00:00'),(0,0,1743,'2025-11-01','2026-01-31',1787,0,'','','0000-00-00','reception','2025-11-01 18:09:06','','0000-00-00 00:00:00'),(0,0,1744,'2025-11-01','2026-01-31',1789,0,'','','0000-00-00','manshi','2025-11-01 19:19:32','','0000-00-00 00:00:00'),(0,0,1745,'2025-11-01','2026-01-31',1791,0,'','','0000-00-00','manshi','2025-11-01 20:09:23','','0000-00-00 00:00:00'),(0,0,1746,'2025-11-01','2026-01-31',1792,0,'','','0000-00-00','janvi','2025-11-01 20:34:49','','0000-00-00 00:00:00'),(0,0,1747,'2025-11-02','2026-02-01',1456,0,'','','0000-00-00','shweta','2025-11-02 09:40:07','','0000-00-00 00:00:00'),(0,0,1748,'2025-11-02','2026-02-01',1793,0,'','','0000-00-00','shweta','2025-11-02 11:51:49','','0000-00-00 00:00:00'),(0,0,1749,'2025-11-02','2026-02-01',1794,0,'','','0000-00-00','shweta','2025-11-02 12:51:52','','0000-00-00 00:00:00'),(0,0,1750,'2025-11-03','2026-02-02',1796,0,'','','0000-00-00','priyanshi','2025-11-03 09:08:33','','0000-00-00 00:00:00'),(0,0,1751,'2025-11-03','2026-02-02',1797,0,'','','0000-00-00','reception','2025-11-03 09:08:39','','0000-00-00 00:00:00'),(0,0,1752,'2025-11-03','2026-02-02',1798,0,'','','0000-00-00','reception','2025-11-03 09:11:15','','0000-00-00 00:00:00'),(0,0,1753,'2025-11-03','2026-02-02',1799,0,'','','0000-00-00','priyanshi','2025-11-03 09:11:40','','0000-00-00 00:00:00'),(0,0,1754,'2025-11-03','2026-02-02',1800,0,'','','0000-00-00','reception','2025-11-03 09:22:11','','0000-00-00 00:00:00'),(0,0,1755,'2025-11-03','2026-02-02',1801,0,'','','0000-00-00','priyanshi','2025-11-03 09:26:19','','0000-00-00 00:00:00'),(0,0,1756,'2025-11-03','2026-02-02',1802,0,'','','0000-00-00','janvi','2025-11-03 09:50:38','','0000-00-00 00:00:00'),(0,0,1757,'2025-11-03','2026-02-02',1803,0,'','','0000-00-00','reception','2025-11-03 09:52:42','','0000-00-00 00:00:00'),(0,0,1758,'2025-11-03','2026-02-02',1804,0,'','','0000-00-00','reception','2025-11-03 10:00:11','','0000-00-00 00:00:00'),(0,0,1759,'2025-11-03','2026-02-02',1805,0,'','','0000-00-00','reception','2025-11-03 10:20:56','','0000-00-00 00:00:00'),(0,0,1760,'2025-11-03','2026-02-02',1806,0,'','','0000-00-00','drashti','2025-11-03 10:35:22','','0000-00-00 00:00:00'),(0,0,1761,'2025-11-03','2026-02-02',1807,0,'','','0000-00-00','reception','2025-11-03 10:38:28','','0000-00-00 00:00:00'),(0,0,1762,'2025-11-03','2026-02-02',1808,0,'','','0000-00-00','janvi','2025-11-03 10:41:16','','0000-00-00 00:00:00'),(0,0,1763,'2025-11-03','2026-02-02',1809,0,'','','0000-00-00','janvi','2025-11-03 10:42:52','','0000-00-00 00:00:00'),(0,0,1764,'2025-11-03','2026-02-02',1810,0,'','','0000-00-00','reception','2025-11-03 10:44:25','','0000-00-00 00:00:00'),(0,0,1765,'2025-11-03','2026-02-02',1811,0,'','','0000-00-00','reception','2025-11-03 10:48:28','','0000-00-00 00:00:00'),(0,0,1766,'2025-11-03','2026-02-02',1812,0,'','','0000-00-00','drashti','2025-11-03 10:48:48','','0000-00-00 00:00:00'),(0,0,1767,'2025-11-03','2026-02-02',1813,0,'','','0000-00-00','reception','2025-11-03 10:51:10','','0000-00-00 00:00:00'),(0,0,1768,'2025-11-03','2026-02-02',1814,0,'','','0000-00-00','drashti','2025-11-03 10:51:39','','0000-00-00 00:00:00'),(0,0,1769,'2025-11-03','2026-02-02',1815,0,'','','0000-00-00','reception','2025-11-03 10:58:01','','0000-00-00 00:00:00'),(0,0,1770,'2025-11-03','2026-02-02',1816,0,'','','0000-00-00','reception','2025-11-03 10:59:35','','0000-00-00 00:00:00'),(0,0,1771,'2025-11-03','2026-02-02',1817,0,'','','0000-00-00','drashti','2025-11-03 11:00:59','','0000-00-00 00:00:00'),(0,0,1772,'2025-11-03','2026-02-02',1818,0,'','','0000-00-00','reception','2025-11-03 11:01:08','','0000-00-00 00:00:00'),(0,0,1773,'2025-11-03','2026-02-02',1819,0,'','','0000-00-00','reception','2025-11-03 11:02:55','','0000-00-00 00:00:00'),(0,0,1774,'2025-11-03','2026-02-02',1820,0,'','','0000-00-00','shweta','2025-11-03 11:05:05','','0000-00-00 00:00:00'),(0,0,1775,'2025-11-03','2026-02-02',1821,0,'','','0000-00-00','shweta','2025-11-03 11:07:03','','0000-00-00 00:00:00'),(0,0,1776,'2025-11-03','2026-02-02',1253,0,'','','0000-00-00','drashti','2025-11-03 11:08:14','','0000-00-00 00:00:00'),(0,0,1777,'2025-11-03','2026-02-02',1822,0,'','','0000-00-00','shweta','2025-11-03 11:15:36','','0000-00-00 00:00:00'),(0,0,1778,'2025-11-03','2026-02-02',1823,0,'','','0000-00-00','reception','2025-11-03 11:15:38','','0000-00-00 00:00:00'),(0,0,1779,'2025-11-03','2026-02-02',1824,0,'','','0000-00-00','reception','2025-11-03 11:21:02','','0000-00-00 00:00:00'),(0,0,1780,'2025-11-03','2026-02-02',1825,0,'','','0000-00-00','reception','2025-11-03 11:30:13','','0000-00-00 00:00:00'),(0,0,1781,'2025-11-03','2026-02-02',1826,0,'','','0000-00-00','drashti','2025-11-03 11:31:03','','0000-00-00 00:00:00'),(0,0,1782,'2025-11-03','2026-02-02',1827,0,'','','0000-00-00','drashti','2025-11-03 11:34:30','','0000-00-00 00:00:00'),(0,0,1783,'2025-11-03','2026-02-02',1828,0,'','','0000-00-00','reception','2025-11-03 11:36:05','','0000-00-00 00:00:00'),(0,0,1784,'2025-11-03','2026-02-02',1829,0,'','','0000-00-00','reception','2025-11-03 11:53:42','','0000-00-00 00:00:00'),(0,0,1785,'2025-11-03','2026-02-02',1830,0,'','','0000-00-00','reception','2025-11-03 11:58:40','','0000-00-00 00:00:00'),(0,0,1786,'2025-11-03','2026-02-02',1831,0,'','','0000-00-00','drashti','2025-11-03 12:04:10','','0000-00-00 00:00:00'),(0,0,1787,'2025-11-03','2026-02-02',1832,0,'','','0000-00-00','manshi','2025-11-03 12:06:58','','0000-00-00 00:00:00'),(0,0,1788,'2025-11-03','2026-02-02',1833,0,'','','0000-00-00','reception','2025-11-03 12:07:37','','0000-00-00 00:00:00'),(0,0,1789,'2025-11-03','2026-02-02',1834,0,'','','0000-00-00','reception','2025-11-03 12:13:48','','0000-00-00 00:00:00'),(0,0,1790,'2025-11-03','2026-02-02',1835,0,'','','0000-00-00','reception','2025-11-03 12:16:42','','0000-00-00 00:00:00'),(0,0,1791,'2025-11-03','2026-02-02',1836,0,'','','0000-00-00','manshi','2025-11-03 12:17:33','','0000-00-00 00:00:00'),(0,0,1792,'2025-11-03','2026-02-02',1837,0,'','','0000-00-00','manshi','2025-11-03 12:23:06','','0000-00-00 00:00:00'),(0,0,1793,'2025-11-03','2026-02-02',1838,0,'','','0000-00-00','shweta','2025-11-03 12:27:34','','0000-00-00 00:00:00'),(0,0,1794,'2025-11-03','2026-02-02',1839,0,'','','0000-00-00','reception','2025-11-03 12:29:30','','0000-00-00 00:00:00'),(0,0,1795,'2025-11-03','2026-02-02',1840,0,'','','0000-00-00','manshi','2025-11-03 12:34:18','','0000-00-00 00:00:00'),(0,0,1796,'2025-11-03','2026-02-02',1841,0,'','','0000-00-00','reception','2025-11-03 12:34:28','','0000-00-00 00:00:00'),(0,0,1797,'2025-11-03','2026-02-02',1842,0,'','','0000-00-00','reception','2025-11-03 12:36:47','','0000-00-00 00:00:00'),(0,0,1798,'2025-11-03','2026-02-02',1843,0,'','','0000-00-00','shweta','2025-11-03 12:37:16','','0000-00-00 00:00:00'),(0,0,1799,'2025-11-03','2026-02-02',1844,0,'','','0000-00-00','reception','2025-11-03 12:46:08','','0000-00-00 00:00:00'),(0,0,1800,'2025-11-03','2026-02-02',1845,0,'','','0000-00-00','reception','2025-11-03 12:52:13','','0000-00-00 00:00:00'),(0,0,1801,'2025-11-03','2026-02-02',1847,0,'','','0000-00-00','manshi','2025-11-03 13:26:19','','0000-00-00 00:00:00'),(0,0,1802,'2025-11-03','2026-02-02',1848,0,'','','0000-00-00','shweta','2025-11-03 14:05:14','','0000-00-00 00:00:00'),(0,0,1803,'2025-11-03','2026-02-02',1849,0,'','','0000-00-00','priyanshi','2025-11-03 14:27:22','','0000-00-00 00:00:00'),(0,0,1804,'2025-11-03','2026-02-02',1850,0,'','','0000-00-00','priyanshi','2025-11-03 15:07:43','','0000-00-00 00:00:00'),(0,0,1805,'2025-11-03','2026-02-02',1851,0,'','','0000-00-00','reception','2025-11-03 16:15:04','','0000-00-00 00:00:00'),(0,0,1806,'2025-11-03','2026-02-02',1852,0,'','','0000-00-00','reception','2025-11-03 16:21:51','','0000-00-00 00:00:00'),(0,0,1807,'2025-11-03','2026-02-02',1853,0,'','','0000-00-00','reception','2025-11-03 16:27:17','','0000-00-00 00:00:00'),(0,0,1808,'2025-11-03','2026-02-02',1854,0,'','','0000-00-00','drashti','2025-11-03 17:03:50','','0000-00-00 00:00:00'),(0,0,1809,'2025-11-03','2026-02-02',1855,0,'','','0000-00-00','reception','2025-11-03 17:07:38','','0000-00-00 00:00:00'),(0,0,1810,'2025-11-03','2026-02-02',1856,0,'','','0000-00-00','drashti','2025-11-03 17:08:49','','0000-00-00 00:00:00'),(0,0,1811,'2025-11-03','2026-02-02',1857,0,'','','0000-00-00','reception','2025-11-03 17:09:51','','0000-00-00 00:00:00'),(0,0,1812,'2025-11-03','2026-02-02',1858,0,'','','0000-00-00','reception','2025-11-03 17:14:56','','0000-00-00 00:00:00'),(0,0,1813,'2025-11-03','2026-02-02',1859,0,'','','0000-00-00','reception','2025-11-03 17:17:23','','0000-00-00 00:00:00'),(0,0,1814,'2025-11-03','2026-02-02',1860,0,'','','0000-00-00','janvi','2025-11-03 17:23:08','','0000-00-00 00:00:00'),(0,0,1815,'2025-11-03','2026-02-02',1861,0,'','','0000-00-00','reception','2025-11-03 17:44:54','','0000-00-00 00:00:00'),(0,0,1816,'2025-11-03','2026-02-02',1862,0,'','','0000-00-00','reception','2025-11-03 17:51:39','','0000-00-00 00:00:00'),(0,0,1817,'2025-11-03','2026-02-02',1863,0,'','','0000-00-00','drashti','2025-11-03 18:00:34','','0000-00-00 00:00:00'),(0,0,1818,'2025-11-03','2026-02-02',1864,0,'','','0000-00-00','drashti','2025-11-03 18:03:36','','0000-00-00 00:00:00'),(0,0,1819,'2025-11-03','2026-02-02',1865,0,'','','0000-00-00','reception','2025-11-03 18:05:46','','0000-00-00 00:00:00'),(0,0,1820,'2025-11-03','2026-02-02',1866,0,'','','0000-00-00','reception','2025-11-03 18:07:35','','0000-00-00 00:00:00'),(0,0,1821,'2025-11-03','2026-02-02',1867,0,'','','0000-00-00','reception','2025-11-03 18:09:58','','0000-00-00 00:00:00'),(0,0,1822,'2025-11-03','2026-02-02',1868,0,'','','0000-00-00','janvi','2025-11-03 18:10:06','','0000-00-00 00:00:00'),(0,0,1823,'2025-11-03','2026-02-02',1869,0,'','','0000-00-00','drashti','2025-11-03 18:10:32','','0000-00-00 00:00:00'),(0,0,1824,'2025-11-03','2026-02-02',1870,0,'','','0000-00-00','reception','2025-11-03 18:12:12','','0000-00-00 00:00:00'),(0,0,1825,'2025-11-03','2026-02-02',1871,0,'','','0000-00-00','reception','2025-11-03 18:20:08','','0000-00-00 00:00:00'),(0,0,1826,'2025-11-03','2026-02-02',1872,0,'','','0000-00-00','manshi','2025-11-03 18:21:37','','0000-00-00 00:00:00'),(0,0,1827,'2025-11-03','2026-02-02',1873,0,'','','0000-00-00','reception','2025-11-03 18:23:30','','0000-00-00 00:00:00'),(0,0,1828,'2025-11-03','2026-02-02',1874,0,'','','0000-00-00','janvi','2025-11-03 18:27:48','','0000-00-00 00:00:00'),(0,0,1829,'2025-11-03','2026-02-02',1875,0,'','','0000-00-00','janvi','2025-11-03 18:29:29','','0000-00-00 00:00:00'),(0,0,1830,'2025-11-03','2026-02-02',1876,0,'','','0000-00-00','janvi','2025-11-03 18:30:31','','0000-00-00 00:00:00'),(0,0,1831,'2025-11-03','2026-02-02',1877,0,'','','0000-00-00','reception','2025-11-03 18:30:57','','0000-00-00 00:00:00'),(0,0,1832,'2025-11-03','2026-02-02',1878,0,'','','0000-00-00','janvi','2025-11-03 18:33:11','','0000-00-00 00:00:00'),(0,0,1833,'2025-11-03','2026-02-02',1879,0,'','','0000-00-00','reception','2025-11-03 18:43:35','','0000-00-00 00:00:00'),(0,0,1834,'2025-11-03','2026-02-02',1880,0,'','','0000-00-00','reception','2025-11-03 18:45:22','','0000-00-00 00:00:00'),(0,0,1835,'2025-11-03','2026-02-02',1881,0,'','','0000-00-00','janvi','2025-11-03 19:01:49','','0000-00-00 00:00:00'),(0,0,1836,'2025-11-03','2026-02-02',1882,0,'','','0000-00-00','manshi','2025-11-03 19:05:58','','0000-00-00 00:00:00'),(0,0,1837,'2025-11-03','2026-02-02',1883,0,'','','0000-00-00','drashti','2025-11-03 19:29:02','','0000-00-00 00:00:00'),(0,0,1838,'2025-11-03','2026-02-02',1884,0,'','','0000-00-00','janvi','2025-11-03 19:30:05','','0000-00-00 00:00:00'),(0,0,1839,'2025-11-03','2026-02-02',1885,0,'','','0000-00-00','manshi','2025-11-03 19:40:47','','0000-00-00 00:00:00'),(0,0,1840,'2025-11-03','2026-02-02',1886,0,'','','0000-00-00','manshi','2025-11-03 19:48:33','','0000-00-00 00:00:00'),(0,0,1841,'2025-11-03','2026-02-02',1887,0,'','','0000-00-00','reception','2025-11-03 19:53:20','','0000-00-00 00:00:00'),(0,0,1842,'2025-11-04','2026-02-03',1888,0,'','','0000-00-00','reception','2025-11-04 09:10:38','','0000-00-00 00:00:00'),(0,0,1843,'2025-11-04','2026-02-03',1889,0,'','','0000-00-00','reception','2025-11-04 09:29:40','','0000-00-00 00:00:00'),(0,0,1844,'2025-11-04','2026-02-03',1890,0,'','','0000-00-00','reception','2025-11-04 09:32:32','','0000-00-00 00:00:00'),(0,0,1845,'2025-11-04','2026-02-03',1891,0,'','','0000-00-00','reception','2025-11-04 10:07:55','','0000-00-00 00:00:00'),(0,0,1846,'2025-11-04','2026-02-03',1892,0,'','','0000-00-00','janvi','2025-11-04 10:12:03','','0000-00-00 00:00:00'),(0,0,1847,'2025-11-04','2026-02-03',1893,0,'','','0000-00-00','reception','2025-11-04 10:19:33','','0000-00-00 00:00:00'),(0,0,1848,'2025-11-04','2026-02-03',1894,0,'','','0000-00-00','janvi','2025-11-04 10:19:39','','0000-00-00 00:00:00'),(0,0,1849,'2025-11-04','2026-02-03',1895,0,'','','0000-00-00','reception','2025-11-04 10:23:39','','0000-00-00 00:00:00'),(0,0,1850,'2025-11-04','2026-02-03',1896,0,'','','0000-00-00','reception','2025-11-04 10:24:45','','0000-00-00 00:00:00'),(0,0,1851,'2025-11-04','2026-02-03',1897,0,'','','0000-00-00','reception','2025-11-04 10:33:22','','0000-00-00 00:00:00'),(0,0,1852,'2025-11-04','2026-02-03',1898,0,'','','0000-00-00','reception','2025-11-04 10:38:21','','0000-00-00 00:00:00'),(0,0,1853,'2025-11-04','2026-02-03',1899,0,'','','0000-00-00','janvi','2025-11-04 10:56:49','','0000-00-00 00:00:00'),(0,0,1854,'2025-11-04','2026-02-03',1900,0,'','','0000-00-00','reception','2025-11-04 10:57:33','','0000-00-00 00:00:00'),(0,0,1855,'2025-11-04','2026-02-03',1901,0,'','','0000-00-00','drashti','2025-11-04 10:57:41','','0000-00-00 00:00:00'),(0,0,1856,'2025-11-04','2026-02-03',1902,0,'','','0000-00-00','drashti','2025-11-04 11:01:13','','0000-00-00 00:00:00'),(0,0,1857,'2025-11-04','2026-02-03',1903,0,'','','0000-00-00','reception','2025-11-04 11:01:51','','0000-00-00 00:00:00'),(0,0,1858,'2025-11-04','2026-02-03',870,0,'','','0000-00-00','manshi','2025-11-04 11:11:04','','0000-00-00 00:00:00'),(0,0,1859,'2025-11-04','2026-02-03',1904,0,'','','0000-00-00','janvi','2025-11-04 11:13:23','','0000-00-00 00:00:00'),(0,0,1860,'2025-11-04','2026-02-03',1905,0,'','','0000-00-00','drashti','2025-11-04 11:14:13','','0000-00-00 00:00:00'),(0,0,1861,'2025-11-04','2026-02-03',1906,0,'','','0000-00-00','reception','2025-11-04 11:17:28','','0000-00-00 00:00:00'),(0,0,1862,'2025-11-04','2026-02-03',1907,0,'','','0000-00-00','reception','2025-11-04 11:21:54','','0000-00-00 00:00:00'),(0,0,1863,'2025-11-04','2026-02-03',1908,0,'','','0000-00-00','manshi','2025-11-04 11:22:23','','0000-00-00 00:00:00'),(0,0,1864,'2025-11-04','2026-02-03',1909,0,'','','0000-00-00','reception','2025-11-04 11:24:29','','0000-00-00 00:00:00'),(0,0,1865,'2025-11-04','2026-02-03',1910,0,'','','0000-00-00','manshi','2025-11-04 11:32:13','','0000-00-00 00:00:00'),(0,0,1866,'2025-11-04','2026-02-03',1911,0,'','','0000-00-00','reception','2025-11-04 11:41:48','','0000-00-00 00:00:00'),(0,0,1867,'2025-11-04','2026-02-03',1912,0,'','','0000-00-00','reception','2025-11-04 11:44:37','','0000-00-00 00:00:00'),(0,0,1868,'2025-11-04','2026-02-03',1913,0,'','','0000-00-00','janvi','2025-11-04 12:06:18','','0000-00-00 00:00:00'),(0,0,1869,'2025-11-04','2026-02-03',1914,0,'','','0000-00-00','reception','2025-11-04 12:21:43','','0000-00-00 00:00:00'),(0,0,1870,'2025-11-04','2026-02-03',1915,0,'','','0000-00-00','janvi','2025-11-04 12:25:44','','0000-00-00 00:00:00'),(0,0,1871,'2025-11-04','2026-02-03',1916,0,'','','0000-00-00','drashti','2025-11-04 12:32:26','','0000-00-00 00:00:00'),(0,0,1872,'2025-11-04','2026-02-03',1918,0,'','','0000-00-00','reception','2025-11-04 12:33:31','','0000-00-00 00:00:00'),(0,0,1873,'2025-11-04','2026-02-03',1919,0,'','','0000-00-00','reception','2025-11-04 12:36:35','','0000-00-00 00:00:00'),(0,0,1874,'2025-11-04','2026-02-03',1921,0,'','','0000-00-00','reception','2025-11-04 16:49:46','','0000-00-00 00:00:00'),(0,0,1875,'2025-11-04','2026-02-03',1922,0,'','','0000-00-00','reception','2025-11-04 16:51:28','','0000-00-00 00:00:00'),(0,0,1876,'2025-11-04','2026-02-03',1923,0,'','','0000-00-00','reception','2025-11-04 17:04:24','','0000-00-00 00:00:00'),(0,0,1877,'2025-11-04','2026-02-03',1924,0,'','','0000-00-00','reception','2025-11-04 17:20:47','','0000-00-00 00:00:00'),(0,0,1878,'2025-11-04','2026-02-03',1925,0,'','','0000-00-00','reception','2025-11-04 17:35:45','','0000-00-00 00:00:00'),(0,0,1879,'2025-11-04','2026-02-03',1926,0,'','','0000-00-00','reception','2025-11-04 17:37:52','','0000-00-00 00:00:00'),(0,0,1880,'2025-11-04','2026-02-03',1927,0,'','','0000-00-00','janvi','2025-11-04 17:41:17','','0000-00-00 00:00:00'),(0,0,1881,'2025-11-04','2026-02-03',1928,0,'','','0000-00-00','reception','2025-11-04 17:41:27','','0000-00-00 00:00:00'),(0,0,1882,'2025-11-04','2026-02-03',1929,0,'','','0000-00-00','reception','2025-11-04 17:44:23','','0000-00-00 00:00:00'),(0,0,1883,'2025-11-04','2026-02-03',1930,0,'','','0000-00-00','janvi','2025-11-04 17:55:42','','0000-00-00 00:00:00'),(0,0,1884,'2025-11-04','2026-02-03',1931,0,'','','0000-00-00','drashti','2025-11-04 18:04:35','','0000-00-00 00:00:00'),(0,0,1885,'2025-11-04','2026-02-03',1932,0,'','','0000-00-00','reception','2025-11-04 18:19:13','','0000-00-00 00:00:00'),(0,0,1886,'2025-11-04','2026-02-03',1933,0,'','','0000-00-00','reception','2025-11-04 18:23:24','','0000-00-00 00:00:00'),(0,0,1887,'2025-11-04','2026-02-03',1934,0,'','','0000-00-00','drashti','2025-11-04 18:28:16','','0000-00-00 00:00:00'),(0,0,1888,'2025-11-04','2026-02-03',1935,0,'','','0000-00-00','reception','2025-11-04 18:30:30','','0000-00-00 00:00:00'),(0,0,1889,'2025-11-04','2026-02-03',1936,0,'','','0000-00-00','janvi','2025-11-04 18:33:01','','0000-00-00 00:00:00'),(0,0,1890,'2025-11-04','2026-02-03',1937,0,'','','0000-00-00','reception','2025-11-04 18:37:49','','0000-00-00 00:00:00'),(0,0,1891,'2025-11-04','2026-02-03',1938,0,'','','0000-00-00','reception','2025-11-04 18:42:01','','0000-00-00 00:00:00'),(0,0,1892,'2025-11-04','2026-02-03',1939,0,'','','0000-00-00','manshi','2025-11-04 18:52:23','','0000-00-00 00:00:00'),(0,0,1893,'2025-11-04','2026-02-03',1940,0,'','','0000-00-00','drashti','2025-11-04 18:57:42','','0000-00-00 00:00:00'),(0,0,1894,'2025-11-04','2026-02-03',1941,0,'','','0000-00-00','drashti','2025-11-04 19:37:08','','0000-00-00 00:00:00'),(0,0,1895,'2025-11-05','2026-02-04',1942,0,'','','0000-00-00','reception','2025-11-05 09:07:11','','0000-00-00 00:00:00'),(0,0,1896,'2025-11-05','2026-02-04',1944,0,'','','0000-00-00','drashti','2025-11-05 09:50:21','','0000-00-00 00:00:00'),(0,0,1897,'2025-11-05','2026-02-04',1945,0,'','','0000-00-00','reception','2025-11-05 09:50:36','','0000-00-00 00:00:00'),(0,0,1898,'2025-11-05','2026-02-04',1946,0,'','','0000-00-00','drashti','2025-11-05 09:55:09','','0000-00-00 00:00:00'),(0,0,1899,'2025-11-05','2026-02-04',1947,0,'','','0000-00-00','reception','2025-11-05 09:55:53','','0000-00-00 00:00:00'),(0,0,1900,'2025-11-05','2026-02-04',1948,0,'','','0000-00-00','reception','2025-11-05 10:03:15','','0000-00-00 00:00:00'),(0,0,1901,'2025-11-05','2026-02-04',1949,0,'','','0000-00-00','reception','2025-11-05 10:08:48','','0000-00-00 00:00:00'),(0,0,1902,'2025-11-05','2026-02-04',1950,0,'','','0000-00-00','drashti','2025-11-05 10:16:20','','0000-00-00 00:00:00'),(0,0,1903,'2025-11-05','2026-02-04',1951,0,'','','0000-00-00','reception','2025-11-05 10:33:46','','0000-00-00 00:00:00'),(0,0,1904,'2025-11-05','2026-02-04',1952,0,'','','0000-00-00','janvi','2025-11-05 10:37:14','','0000-00-00 00:00:00'),(0,0,1905,'2025-11-05','2026-02-04',1953,0,'','','0000-00-00','drashti','2025-11-05 10:43:39','','0000-00-00 00:00:00'),(0,0,1906,'2025-11-05','2026-02-04',1954,0,'','','0000-00-00','reception','2025-11-05 10:45:57','','0000-00-00 00:00:00'),(0,0,1907,'2025-11-05','2026-02-04',1955,0,'','','0000-00-00','reception','2025-11-05 10:49:57','','0000-00-00 00:00:00'),(0,0,1908,'2025-11-05','2026-02-04',1956,0,'','','0000-00-00','reception','2025-11-05 10:58:20','','0000-00-00 00:00:00'),(0,0,1909,'2025-11-05','2026-02-04',1957,0,'','','0000-00-00','reception','2025-11-05 11:01:35','','0000-00-00 00:00:00'),(0,0,1910,'2025-11-05','2026-02-04',1958,0,'','','0000-00-00','reception','2025-11-05 11:04:06','','0000-00-00 00:00:00'),(0,0,1911,'2025-11-05','2026-02-04',1959,0,'','','0000-00-00','drashti','2025-11-05 11:04:14','','0000-00-00 00:00:00'),(0,0,1912,'2025-11-05','2026-02-04',1960,0,'','','0000-00-00','reception','2025-11-05 11:06:43','','0000-00-00 00:00:00'),(0,0,1913,'2025-11-05','2026-02-04',1961,0,'','','0000-00-00','reception','2025-11-05 11:15:08','','0000-00-00 00:00:00'),(0,0,1914,'2025-11-05','2026-02-04',1962,0,'','','0000-00-00','reception','2025-11-05 11:18:01','','0000-00-00 00:00:00'),(0,0,1915,'2025-11-05','2026-02-04',1963,0,'','','0000-00-00','reception','2025-11-05 11:19:57','','0000-00-00 00:00:00'),(0,0,1916,'2025-11-05','2026-02-04',1964,0,'','','0000-00-00','reception','2025-11-05 11:26:06','','0000-00-00 00:00:00'),(0,0,1917,'2025-11-05','2026-02-04',1965,0,'','','0000-00-00','janvi','2025-11-05 11:27:47','','0000-00-00 00:00:00'),(0,0,1918,'2025-11-05','2026-02-04',1966,0,'','','0000-00-00','manshi','2025-11-05 11:31:31','','0000-00-00 00:00:00'),(0,0,1919,'2025-11-05','2026-02-04',1967,0,'','','0000-00-00','drashti','2025-11-05 11:31:56','','0000-00-00 00:00:00'),(0,0,1920,'2025-11-05','2026-02-04',1968,0,'','','0000-00-00','janvi','2025-11-05 11:36:09','','0000-00-00 00:00:00'),(0,0,1921,'2025-11-05','2026-02-04',1969,0,'','','0000-00-00','drashti','2025-11-05 11:36:17','','0000-00-00 00:00:00'),(0,0,1922,'2025-11-05','2026-02-04',1970,0,'','','0000-00-00','janvi','2025-11-05 11:53:55','','0000-00-00 00:00:00'),(0,0,1923,'2025-11-05','2026-02-04',1971,0,'','','0000-00-00','manshi','2025-11-05 11:58:19','','0000-00-00 00:00:00'),(0,0,1924,'2025-11-05','2026-02-04',1972,0,'','','0000-00-00','drashti','2025-11-05 12:00:02','','0000-00-00 00:00:00'),(0,0,1925,'2025-11-05','2026-02-04',1973,0,'','','0000-00-00','reception','2025-11-05 12:00:19','','0000-00-00 00:00:00'),(0,0,1926,'2025-11-05','2026-02-04',1974,0,'','','0000-00-00','janvi','2025-11-05 12:00:29','','0000-00-00 00:00:00'),(0,0,1927,'2025-11-05','2026-02-04',1975,0,'','','0000-00-00','reception','2025-11-05 12:02:12','','0000-00-00 00:00:00'),(0,0,1928,'2025-11-05','2026-02-04',1976,0,'','','0000-00-00','manshi','2025-11-05 12:03:32','','0000-00-00 00:00:00'),(0,0,1929,'2025-11-05','2026-02-04',1977,0,'','','0000-00-00','reception','2025-11-05 12:05:19','','0000-00-00 00:00:00'),(0,0,1930,'2025-11-05','2026-02-04',1978,0,'','','0000-00-00','drashti','2025-11-05 12:07:01','','0000-00-00 00:00:00'),(0,0,1931,'2025-11-05','2026-02-04',1979,0,'','','0000-00-00','reception','2025-11-05 12:07:08','','0000-00-00 00:00:00'),(0,0,1932,'2025-11-05','2026-02-04',1980,0,'','','0000-00-00','reception','2025-11-05 12:36:00','','0000-00-00 00:00:00'),(0,0,1933,'2025-11-05','2026-02-04',1981,0,'','','0000-00-00','janvi','2025-11-05 12:37:09','','0000-00-00 00:00:00'),(0,0,1934,'2025-11-05','2026-02-04',1982,0,'','','0000-00-00','reception','2025-11-05 12:39:28','','0000-00-00 00:00:00'),(0,0,1935,'2025-11-05','2026-02-04',1983,0,'','','0000-00-00','reception','2025-11-05 12:42:02','','0000-00-00 00:00:00'),(0,0,1936,'2025-11-05','2026-02-04',1984,0,'','','0000-00-00','manshi','2025-11-05 12:44:11','','0000-00-00 00:00:00'),(0,0,1937,'2025-11-05','2026-02-04',1985,0,'','','0000-00-00','manshi','2025-11-05 13:00:36','','0000-00-00 00:00:00'),(0,0,1938,'2025-11-05','2026-02-04',1986,0,'','','0000-00-00','manshi','2025-11-05 13:21:42','','0000-00-00 00:00:00'),(0,0,1939,'2025-11-05','2026-02-04',1987,0,'','','0000-00-00','reception','2025-11-05 13:46:00','','0000-00-00 00:00:00'),(0,0,1940,'2025-11-05','2026-02-04',1988,0,'','','0000-00-00','reception','2025-11-05 16:32:38','','0000-00-00 00:00:00'),(0,0,1941,'2025-11-05','2026-02-04',1989,0,'','','0000-00-00','reception','2025-11-05 16:47:46','','0000-00-00 00:00:00'),(0,0,1942,'2025-11-05','2026-02-04',1990,0,'','','0000-00-00','drashti','2025-11-05 16:57:16','','0000-00-00 00:00:00'),(0,0,1943,'2025-11-05','2026-02-04',1991,0,'','','0000-00-00','reception','2025-11-05 16:57:19','','0000-00-00 00:00:00'),(0,0,1944,'2025-11-05','2026-02-04',1992,0,'','','0000-00-00','drashti','2025-11-05 17:09:40','','0000-00-00 00:00:00'),(0,0,1945,'2025-11-05','2026-02-04',1993,0,'','','0000-00-00','reception','2025-11-05 17:11:16','','0000-00-00 00:00:00'),(0,0,1946,'2025-11-05','2026-02-04',1994,0,'','','0000-00-00','reception','2025-11-05 17:13:55','','0000-00-00 00:00:00'),(0,0,1947,'2025-11-05','2026-02-04',1995,0,'','','0000-00-00','reception','2025-11-05 17:20:16','','0000-00-00 00:00:00'),(0,0,1948,'2025-11-05','2026-02-04',1996,0,'','','0000-00-00','reception','2025-11-05 17:23:44','','0000-00-00 00:00:00'),(0,0,1949,'2025-11-05','2026-02-04',1997,0,'','','0000-00-00','drashti','2025-11-05 17:31:58','','0000-00-00 00:00:00'),(0,0,1950,'2025-11-05','2026-02-04',1998,0,'','','0000-00-00','janvi','2025-11-05 17:32:16','','0000-00-00 00:00:00'),(0,0,1951,'2025-11-05','2026-02-04',1999,0,'','','0000-00-00','reception','2025-11-05 17:39:20','','0000-00-00 00:00:00'),(0,0,1952,'2025-11-05','2026-02-04',2000,0,'','','0000-00-00','reception','2025-11-05 17:40:27','','0000-00-00 00:00:00'),(0,0,1953,'2025-11-05','2026-02-04',2001,0,'','','0000-00-00','janvi','2025-11-05 17:46:29','','0000-00-00 00:00:00'),(0,0,1954,'2025-11-05','2026-02-04',2002,0,'','','0000-00-00','reception','2025-11-05 17:46:53','','0000-00-00 00:00:00'),(0,0,1955,'2025-11-05','2026-02-04',2003,0,'','','0000-00-00','drashti','2025-11-05 17:48:58','','0000-00-00 00:00:00'),(0,0,1956,'2025-11-05','2026-02-04',2004,0,'','','0000-00-00','drashti','2025-11-05 17:52:46','','0000-00-00 00:00:00'),(0,0,1957,'2025-11-05','2026-02-04',2005,0,'','','0000-00-00','manshi','2025-11-05 17:52:55','','0000-00-00 00:00:00'),(0,0,1958,'2025-11-05','2026-02-04',2006,0,'','','0000-00-00','janvi','2025-11-05 17:53:20','','0000-00-00 00:00:00'),(0,0,1959,'2025-11-05','2026-02-04',2007,0,'','','0000-00-00','manshi','2025-11-05 17:57:52','','0000-00-00 00:00:00'),(0,0,1960,'2025-11-05','2026-02-04',2008,0,'','','0000-00-00','reception','2025-11-05 17:58:28','','0000-00-00 00:00:00'),(0,0,1961,'2025-11-05','2026-02-04',2009,0,'','','0000-00-00','janvi','2025-11-05 17:59:37','','0000-00-00 00:00:00'),(0,0,1962,'2025-11-05','2026-02-04',2010,0,'','','0000-00-00','reception','2025-11-05 18:00:51','','0000-00-00 00:00:00'),(0,0,1963,'2025-11-05','2026-02-04',2011,0,'','','0000-00-00','reception','2025-11-05 18:05:16','','0000-00-00 00:00:00'),(0,0,1964,'2025-11-05','2026-02-04',2012,0,'','','0000-00-00','janvi','2025-11-05 18:09:41','','0000-00-00 00:00:00'),(0,0,1965,'2025-11-05','2026-02-04',2013,0,'','','0000-00-00','reception','2025-11-05 18:11:12','','0000-00-00 00:00:00'),(0,0,1966,'2025-11-05','2026-02-04',2014,0,'','','0000-00-00','drashti','2025-11-05 18:34:15','','0000-00-00 00:00:00'),(0,0,1967,'2025-11-05','2026-02-04',2015,0,'','','0000-00-00','reception','2025-11-05 18:36:04','','0000-00-00 00:00:00'),(0,0,1968,'2025-11-05','2026-02-04',2016,0,'','','0000-00-00','drashti','2025-11-05 18:37:49','','0000-00-00 00:00:00'),(0,0,1969,'2025-11-05','2026-02-04',2017,0,'','','0000-00-00','reception','2025-11-05 18:40:22','','0000-00-00 00:00:00'),(0,0,1970,'2025-11-05','2026-02-04',2018,0,'','','0000-00-00','reception','2025-11-05 18:48:41','','0000-00-00 00:00:00'),(0,0,1971,'2025-11-05','2026-02-04',2019,0,'','','0000-00-00','reception','2025-11-05 18:52:02','','0000-00-00 00:00:00'),(0,0,1972,'2025-11-05','2026-02-04',2020,0,'','','0000-00-00','drashti','2025-11-05 19:01:40','','0000-00-00 00:00:00'),(0,0,1973,'2025-11-05','2026-02-04',2021,0,'','','0000-00-00','reception','2025-11-05 19:03:19','','0000-00-00 00:00:00'),(0,0,1974,'2025-11-05','2026-02-04',2022,0,'','','0000-00-00','reception','2025-11-05 19:20:39','','0000-00-00 00:00:00'),(0,0,1975,'2025-11-05','2026-02-04',2023,0,'','','0000-00-00','reception','2025-11-05 19:23:21','','0000-00-00 00:00:00'),(0,0,1976,'2025-11-05','2026-02-04',2024,0,'','','0000-00-00','drashti','2025-11-05 19:37:29','','0000-00-00 00:00:00'),(0,0,1977,'2025-11-05','2026-02-04',2025,0,'','','0000-00-00','manshi','2025-11-05 19:57:47','','0000-00-00 00:00:00'),(0,0,1978,'2025-11-05','2026-02-04',2026,0,'','','0000-00-00','janvi','2025-11-05 20:04:04','','0000-00-00 00:00:00'),(0,0,1979,'2025-11-05','2026-02-04',2027,0,'','','0000-00-00','janvi','2025-11-05 20:12:06','','0000-00-00 00:00:00'),(0,0,1980,'2025-11-06','2026-02-05',2028,0,'','','0000-00-00','reception','2025-11-06 08:33:57','','0000-00-00 00:00:00'),(0,0,1981,'2025-11-06','2026-02-05',2029,0,'','','0000-00-00','reception','2025-11-06 08:55:09','','0000-00-00 00:00:00'),(0,0,1982,'2025-11-06','2026-02-05',2032,0,'','','0000-00-00','reception','2025-11-06 09:48:37','','0000-00-00 00:00:00'),(0,0,1983,'2025-11-06','2026-02-05',2033,0,'','','0000-00-00','reception','2025-11-06 09:49:59','','0000-00-00 00:00:00'),(0,0,1984,'2025-11-06','2026-02-05',2034,0,'','','0000-00-00','reception','2025-11-06 10:01:05','','0000-00-00 00:00:00'),(0,0,1985,'2025-11-06','2026-02-05',2036,0,'','','0000-00-00','manshi','2025-11-06 10:18:15','','0000-00-00 00:00:00'),(0,0,1986,'2025-11-06','2026-02-05',2037,0,'','','0000-00-00','priyanshi','2025-11-06 10:20:05','','0000-00-00 00:00:00'),(0,0,1987,'2025-11-06','2026-02-05',2038,0,'','','0000-00-00','reception','2025-11-06 10:25:44','','0000-00-00 00:00:00'),(0,0,1988,'2025-11-06','2026-02-05',2039,0,'','','0000-00-00','reception','2025-11-06 10:29:50','','0000-00-00 00:00:00'),(0,0,1989,'2025-11-06','2026-02-05',2040,0,'','','0000-00-00','reception','2025-11-06 10:32:15','','0000-00-00 00:00:00'),(0,0,1990,'2025-11-06','2026-02-05',2041,0,'','','0000-00-00','reception','2025-11-06 11:01:33','','0000-00-00 00:00:00'),(0,0,1991,'2025-11-06','2026-02-05',2042,0,'','','0000-00-00','reception','2025-11-06 11:03:33','','0000-00-00 00:00:00'),(0,0,1992,'2025-11-06','2026-02-05',2043,0,'','','0000-00-00','reception','2025-11-06 11:05:28','','0000-00-00 00:00:00'),(0,0,1993,'2025-11-06','2026-02-05',2044,0,'','','0000-00-00','reception','2025-11-06 11:18:48','','0000-00-00 00:00:00'),(0,0,1994,'2025-11-06','2026-02-05',2045,0,'','','0000-00-00','drashti','2025-11-06 11:18:54','','0000-00-00 00:00:00'),(0,0,1995,'2025-11-06','2026-02-05',2046,0,'','','0000-00-00','reception','2025-11-06 11:22:27','','0000-00-00 00:00:00'),(0,0,1996,'2025-11-06','2026-02-05',2047,0,'','','0000-00-00','reception','2025-11-06 11:25:24','','0000-00-00 00:00:00'),(0,0,1997,'2025-11-06','2026-02-05',2048,0,'','','0000-00-00','drashti','2025-11-06 11:28:02','','0000-00-00 00:00:00'),(0,0,1998,'2025-11-06','2026-02-05',2049,0,'','','0000-00-00','reception','2025-11-06 11:29:44','','0000-00-00 00:00:00'),(0,0,1999,'2025-11-06','2026-02-05',2050,0,'','','0000-00-00','reception','2025-11-06 11:37:42','','0000-00-00 00:00:00'),(0,0,2000,'2025-11-06','2026-02-05',2051,0,'','','0000-00-00','drashti','2025-11-06 11:39:13','','0000-00-00 00:00:00'),(0,0,2001,'2025-11-06','2026-02-05',2052,0,'','','0000-00-00','reception','2025-11-06 11:54:54','','0000-00-00 00:00:00'),(0,0,2002,'2025-11-06','2026-02-05',2053,0,'','','0000-00-00','drashti','2025-11-06 11:58:56','','0000-00-00 00:00:00'),(0,0,2003,'2025-11-06','2026-02-05',2054,0,'','','0000-00-00','reception','2025-11-06 12:02:19','','0000-00-00 00:00:00'),(0,0,2004,'2025-11-06','2026-02-05',2055,0,'','','0000-00-00','reception','2025-11-06 12:04:30','','0000-00-00 00:00:00'),(0,0,2005,'2025-11-06','2026-02-05',2056,0,'','','0000-00-00','reception','2025-11-06 12:16:54','','0000-00-00 00:00:00'),(0,0,2006,'2025-11-06','2026-02-05',2057,0,'','','0000-00-00','drashti','2025-11-06 12:37:10','','0000-00-00 00:00:00'),(0,0,2007,'2025-11-06','2026-02-05',2058,0,'','','0000-00-00','drashti','2025-11-06 12:40:42','','0000-00-00 00:00:00'),(0,0,2008,'2025-11-06','2026-02-05',2059,0,'','','0000-00-00','reception','2025-11-06 12:54:32','','0000-00-00 00:00:00'),(0,0,2009,'2025-11-06','2026-02-05',2060,0,'','','0000-00-00','janvi','2025-11-06 12:55:38','','0000-00-00 00:00:00'),(0,0,2010,'2025-11-06','2026-02-05',2061,0,'','','0000-00-00','reception','2025-11-06 13:14:02','','0000-00-00 00:00:00'),(0,0,2011,'2025-11-06','2026-02-05',2062,0,'','','0000-00-00','drashti','2025-11-06 13:14:09','','0000-00-00 00:00:00'),(0,0,2012,'2025-11-06','2026-02-05',2065,0,'','','0000-00-00','reception','2025-11-06 16:10:01','','0000-00-00 00:00:00'),(0,0,2013,'2025-11-06','2026-02-05',2066,0,'','','0000-00-00','janvi','2025-11-06 16:31:31','','0000-00-00 00:00:00'),(0,0,2014,'2025-11-06','2026-02-05',2067,0,'','','0000-00-00','reception','2025-11-06 16:55:08','','0000-00-00 00:00:00'),(0,0,2015,'2025-11-06','2026-02-05',2068,0,'','','0000-00-00','drashti','2025-11-06 17:19:50','','0000-00-00 00:00:00'),(0,0,2016,'2025-11-06','2026-02-05',2069,0,'','','0000-00-00','reception','2025-11-06 17:28:15','','0000-00-00 00:00:00'),(0,0,2017,'2025-11-06','2026-02-05',2070,0,'','','0000-00-00','reception','2025-11-06 17:36:21','','0000-00-00 00:00:00'),(0,0,2018,'2025-11-06','2026-02-05',2071,0,'','','0000-00-00','janvi','2025-11-06 17:47:33','','0000-00-00 00:00:00'),(0,0,2019,'2025-11-06','2026-02-05',2072,0,'','','0000-00-00','drashti','2025-11-06 17:49:46','','0000-00-00 00:00:00'),(0,0,2020,'2025-11-06','2026-02-05',2073,0,'','','0000-00-00','reception','2025-11-06 17:51:59','','0000-00-00 00:00:00'),(0,0,2021,'2025-11-06','2026-02-05',2074,0,'','','0000-00-00','drashti','2025-11-06 17:53:28','','0000-00-00 00:00:00'),(0,0,2022,'2025-11-06','2026-02-05',2075,0,'','','0000-00-00','drashti','2025-11-06 18:02:51','','0000-00-00 00:00:00'),(0,0,2023,'2025-11-06','2026-02-05',2076,0,'','','0000-00-00','drashti','2025-11-06 18:20:39','','0000-00-00 00:00:00'),(0,0,2024,'2025-11-06','2026-02-05',2077,0,'','','0000-00-00','manshi','2025-11-06 18:21:20','','0000-00-00 00:00:00'),(0,0,2025,'2025-11-06','2026-02-05',2079,0,'','','0000-00-00','drashti','2025-11-06 18:23:41','','0000-00-00 00:00:00'),(0,0,2026,'2025-11-06','2026-02-05',2080,0,'','','0000-00-00','drashti','2025-11-06 18:26:09','','0000-00-00 00:00:00'),(0,0,2027,'2025-11-06','2026-02-05',2081,0,'','','0000-00-00','reception','2025-11-06 18:26:17','','0000-00-00 00:00:00'),(0,0,2028,'2025-11-06','2026-02-05',2082,0,'','','0000-00-00','drashti','2025-11-06 18:29:58','','0000-00-00 00:00:00'),(0,0,2029,'2025-11-06','2026-02-05',2083,0,'','','0000-00-00','reception','2025-11-06 18:36:49','','0000-00-00 00:00:00'),(0,0,2030,'2025-11-06','2026-02-05',2084,0,'','','0000-00-00','manshi','2025-11-06 18:40:03','','0000-00-00 00:00:00'),(0,0,2031,'2025-11-06','2026-02-05',2085,0,'','','0000-00-00','reception','2025-11-06 18:49:07','','0000-00-00 00:00:00'),(0,0,2032,'2025-11-06','2026-02-05',2086,0,'','','0000-00-00','reception','2025-11-06 18:52:02','','0000-00-00 00:00:00'),(0,0,2033,'2025-11-06','2026-02-05',2087,0,'','','0000-00-00','drashti','2025-11-06 18:55:53','','0000-00-00 00:00:00'),(0,0,2034,'2025-11-06','2026-02-05',2088,0,'','','0000-00-00','reception','2025-11-06 18:59:49','','0000-00-00 00:00:00'),(0,0,2035,'2025-11-06','2026-02-05',2090,0,'','','0000-00-00','janvi','2025-11-06 19:34:49','','0000-00-00 00:00:00'),(0,0,2036,'2025-11-07','2026-02-06',2091,0,'','','0000-00-00','reception','2025-11-07 08:53:51','','0000-00-00 00:00:00'),(0,0,2037,'2025-11-07','2026-02-06',2092,0,'','','0000-00-00','reception','2025-11-07 09:02:05','','0000-00-00 00:00:00'),(0,0,2038,'2025-11-07','2026-02-06',2093,0,'','','0000-00-00','reception','2025-11-07 09:31:52','','0000-00-00 00:00:00'),(0,0,2039,'2025-11-07','2026-02-06',2094,0,'','','0000-00-00','drashti','2025-11-07 09:43:37','','0000-00-00 00:00:00'),(0,0,2040,'2025-11-07','2026-02-06',2095,0,'','','0000-00-00','reception','2025-11-07 09:44:31','','0000-00-00 00:00:00'),(0,0,2041,'2025-11-07','2026-02-06',2096,0,'','','0000-00-00','reception','2025-11-07 09:47:42','','0000-00-00 00:00:00'),(0,0,2042,'2025-11-07','2026-02-06',2097,0,'','','0000-00-00','reception','2025-11-07 09:56:57','','0000-00-00 00:00:00'),(0,0,2043,'2025-11-07','2026-02-06',2098,0,'','','0000-00-00','manshi','2025-11-07 10:05:51','','0000-00-00 00:00:00'),(0,0,2044,'2025-11-07','2026-02-06',2099,0,'','','0000-00-00','drashti','2025-11-07 10:06:41','','0000-00-00 00:00:00'),(0,0,2045,'2025-11-07','2026-02-06',2100,0,'','','0000-00-00','reception','2025-11-07 10:33:25','','0000-00-00 00:00:00'),(0,0,2046,'2025-11-07','2026-02-06',2101,0,'','','0000-00-00','reception','2025-11-07 10:36:21','','0000-00-00 00:00:00'),(0,0,2047,'2025-11-07','2026-02-06',2102,0,'','','0000-00-00','drashti','2025-11-07 10:39:13','','0000-00-00 00:00:00'),(0,0,2048,'2025-11-07','2026-02-06',2103,0,'','','0000-00-00','reception','2025-11-07 10:54:45','','0000-00-00 00:00:00'),(0,0,2049,'2025-11-07','2026-02-06',2104,0,'','','0000-00-00','janvi','2025-11-07 10:57:21','','0000-00-00 00:00:00'),(0,0,2050,'2025-11-07','2026-02-06',2105,0,'','','0000-00-00','drashti','2025-11-07 10:59:49','','0000-00-00 00:00:00'),(0,0,2051,'2025-11-07','2026-02-06',2106,0,'','','0000-00-00','drashti','2025-11-07 11:02:30','','0000-00-00 00:00:00'),(0,0,2052,'2025-11-07','2026-02-06',1580,0,'','','0000-00-00','drashti','2025-11-07 11:06:16','','0000-00-00 00:00:00'),(0,0,2053,'2025-11-07','2026-02-06',2107,0,'','','0000-00-00','reception','2025-11-07 11:06:52','','0000-00-00 00:00:00'),(0,0,2054,'2025-11-07','2026-02-06',2108,0,'','','0000-00-00','drashti','2025-11-07 11:16:36','','0000-00-00 00:00:00'),(0,0,2055,'2025-11-07','2026-02-06',2109,0,'','','0000-00-00','reception','2025-11-07 11:26:22','','0000-00-00 00:00:00'),(0,0,2056,'2025-11-07','2026-02-06',2110,0,'','','0000-00-00','janvi','2025-11-07 11:26:41','','0000-00-00 00:00:00'),(0,0,2057,'2025-11-07','2026-02-06',2111,0,'','','0000-00-00','drashti','2025-11-07 11:26:55','','0000-00-00 00:00:00'),(0,0,2058,'2025-11-07','2026-02-06',2112,0,'','','0000-00-00','reception','2025-11-07 11:31:02','','0000-00-00 00:00:00'),(0,0,2059,'2025-11-07','2026-02-06',2113,0,'','','0000-00-00','drashti','2025-11-07 11:31:52','','0000-00-00 00:00:00'),(0,0,2060,'2025-11-07','2026-02-06',2114,0,'','','0000-00-00','reception','2025-11-07 11:36:35','','0000-00-00 00:00:00'),(0,0,2061,'2025-11-07','2026-02-06',2115,0,'','','0000-00-00','reception','2025-11-07 11:39:10','','0000-00-00 00:00:00'),(0,0,2062,'2025-11-07','2026-02-06',2116,0,'','','0000-00-00','reception','2025-11-07 11:46:11','','0000-00-00 00:00:00'),(0,0,2063,'2025-11-07','2026-02-06',2117,0,'','','0000-00-00','drashti','2025-11-07 11:54:52','','0000-00-00 00:00:00'),(0,0,2064,'2025-11-07','2026-02-06',2118,0,'','','0000-00-00','reception','2025-11-07 11:55:02','','0000-00-00 00:00:00'),(0,0,2065,'2025-11-07','2026-02-06',2119,0,'','','0000-00-00','manshi','2025-11-07 12:01:43','','0000-00-00 00:00:00'),(0,0,2066,'2025-11-07','2026-02-06',2120,0,'','','0000-00-00','reception','2025-11-07 12:02:27','','0000-00-00 00:00:00'),(0,0,2067,'2025-11-07','2026-02-06',2121,0,'','','0000-00-00','reception','2025-11-07 12:05:37','','0000-00-00 00:00:00'),(0,0,2068,'2025-11-07','2026-02-06',2122,0,'','','0000-00-00','drashti','2025-11-07 12:07:15','','0000-00-00 00:00:00'),(0,0,2069,'2025-11-07','2026-02-06',2123,0,'','','0000-00-00','reception','2025-11-07 12:09:31','','0000-00-00 00:00:00'),(0,0,2070,'2025-11-07','2026-02-06',2124,0,'','','0000-00-00','drashti','2025-11-07 12:10:02','','0000-00-00 00:00:00'),(0,0,2071,'2025-11-07','2026-02-06',2125,0,'','','0000-00-00','janvi','2025-11-07 12:40:57','','0000-00-00 00:00:00'),(0,0,2072,'2025-11-07','2026-02-06',2126,0,'','','0000-00-00','janvi','2025-11-07 13:00:35','','0000-00-00 00:00:00'),(0,0,2073,'2025-11-07','2026-02-06',2127,0,'','','0000-00-00','drashti','2025-11-07 13:24:26','','0000-00-00 00:00:00'),(0,0,2074,'2025-11-07','2026-02-06',2128,0,'','','0000-00-00','reception','2025-11-07 13:33:40','','0000-00-00 00:00:00'),(0,0,2075,'2025-11-07','2026-02-06',2129,0,'','','0000-00-00','reception','2025-11-07 13:50:06','','0000-00-00 00:00:00'),(0,0,2076,'2025-11-07','2026-02-06',2130,0,'','','0000-00-00','priyanshi','2025-11-07 14:52:41','','0000-00-00 00:00:00'),(0,0,2077,'2025-11-07','2026-02-06',2131,0,'','','0000-00-00','reception','2025-11-07 16:05:31','','0000-00-00 00:00:00'),(0,0,2078,'2025-11-07','2026-02-06',2132,0,'','','0000-00-00','reception','2025-11-07 16:34:12','','0000-00-00 00:00:00'),(0,0,2079,'2025-11-07','2026-02-06',2133,0,'','','0000-00-00','priyanshi','2025-11-07 16:40:35','','0000-00-00 00:00:00'),(0,0,2080,'2025-11-07','2026-02-06',2134,0,'','','0000-00-00','reception','2025-11-07 16:49:21','','0000-00-00 00:00:00'),(0,0,2081,'2025-11-07','2026-02-06',2135,0,'','','0000-00-00','reception','2025-11-07 16:54:09','','0000-00-00 00:00:00'),(0,0,2082,'2025-11-07','2026-02-06',2136,0,'','','0000-00-00','reception','2025-11-07 16:55:30','','0000-00-00 00:00:00'),(0,0,2083,'2025-11-07','2026-02-06',2137,0,'','','0000-00-00','reception','2025-11-07 16:56:33','','0000-00-00 00:00:00'),(0,0,2084,'2025-11-07','2026-02-06',2138,0,'','','0000-00-00','drashti','2025-11-07 17:01:31','','0000-00-00 00:00:00'),(0,0,2085,'2025-11-07','2026-02-06',2139,0,'','','0000-00-00','drashti','2025-11-07 17:04:54','','0000-00-00 00:00:00'),(0,0,2086,'2025-11-07','2026-02-06',2140,0,'','','0000-00-00','reception','2025-11-07 17:07:45','','0000-00-00 00:00:00'),(0,0,2087,'2025-11-07','2026-02-06',2141,0,'','','0000-00-00','drashti','2025-11-07 17:14:07','','0000-00-00 00:00:00'),(0,0,2088,'2025-11-07','2026-02-06',2142,0,'','','0000-00-00','reception','2025-11-07 17:27:39','','0000-00-00 00:00:00'),(0,0,2089,'2025-11-07','2026-02-06',2143,0,'','','0000-00-00','drashti','2025-11-07 17:29:42','','0000-00-00 00:00:00'),(0,0,2090,'2025-11-07','2026-02-06',2144,0,'','','0000-00-00','drashti','2025-11-07 17:32:15','','0000-00-00 00:00:00'),(0,0,2091,'2025-11-07','2026-02-06',2145,0,'','','0000-00-00','reception','2025-11-07 17:34:56','','0000-00-00 00:00:00'),(0,0,2092,'2025-11-07','2026-02-06',2146,0,'','','0000-00-00','janvi','2025-11-07 17:37:40','','0000-00-00 00:00:00'),(0,0,2093,'2025-11-07','2026-02-06',2147,0,'','','0000-00-00','drashti','2025-11-07 17:38:46','','0000-00-00 00:00:00'),(0,0,2094,'2025-11-07','2026-02-06',2148,0,'','','0000-00-00','drashti','2025-11-07 17:40:22','','0000-00-00 00:00:00'),(0,0,2095,'2025-11-07','2026-02-06',1245,0,'','','0000-00-00','janvi','2025-11-07 17:47:43','','0000-00-00 00:00:00'),(0,0,2096,'2025-11-07','2026-02-06',2149,0,'','','0000-00-00','drashti','2025-11-07 17:57:17','','0000-00-00 00:00:00'),(0,0,2097,'2025-11-07','2026-02-06',2150,0,'','','0000-00-00','reception','2025-11-07 18:02:24','','0000-00-00 00:00:00'),(0,0,2098,'2025-11-07','2026-02-06',2151,0,'','','0000-00-00','janvi','2025-11-07 18:10:24','','0000-00-00 00:00:00'),(0,0,2099,'2025-11-07','2026-02-06',2152,0,'','','0000-00-00','janvi','2025-11-07 18:15:58','','0000-00-00 00:00:00'),(0,0,2100,'2025-11-07','2026-02-06',2153,0,'','','0000-00-00','manshi','2025-11-07 18:20:17','','0000-00-00 00:00:00'),(0,0,2101,'2025-11-07','2026-02-06',1788,0,'','','0000-00-00','janvi','2025-11-07 18:22:04','','0000-00-00 00:00:00'),(0,0,2102,'2025-11-07','2026-02-06',2154,0,'','','0000-00-00','reception','2025-11-07 18:24:28','','0000-00-00 00:00:00'),(0,0,2103,'2025-11-07','2026-02-06',2155,0,'','','0000-00-00','manshi','2025-11-07 19:06:23','','0000-00-00 00:00:00'),(0,0,2104,'2025-11-08','2026-02-07',2156,0,'','','0000-00-00','reception','2025-11-08 09:04:27','','0000-00-00 00:00:00'),(0,0,2105,'2025-11-08','2026-02-07',2157,0,'','','0000-00-00','reception','2025-11-08 09:14:55','','0000-00-00 00:00:00'),(0,0,2106,'2025-11-08','2026-02-07',2158,0,'','','0000-00-00','reception','2025-11-08 09:18:04','','0000-00-00 00:00:00'),(0,0,2107,'2025-11-08','2026-02-07',2159,0,'','','0000-00-00','reception','2025-11-08 09:25:09','','0000-00-00 00:00:00'),(0,0,2108,'2025-11-08','2026-02-07',2160,0,'','','0000-00-00','reception','2025-11-08 09:50:47','','0000-00-00 00:00:00'),(0,0,2109,'2025-11-08','2026-02-07',2161,0,'','','0000-00-00','reception','2025-11-08 10:01:30','','0000-00-00 00:00:00'),(0,0,2110,'2025-11-08','2026-02-07',2162,0,'','','0000-00-00','reception','2025-11-08 10:18:09','','0000-00-00 00:00:00'),(0,0,2111,'2025-11-08','2026-02-07',2163,0,'','','0000-00-00','reception','2025-11-08 10:23:16','','0000-00-00 00:00:00'),(0,0,2112,'2025-11-08','2026-02-07',2164,0,'','','0000-00-00','drashti','2025-11-08 10:24:11','','0000-00-00 00:00:00'),(0,0,2113,'2025-11-08','2026-02-07',2165,0,'','','0000-00-00','reception','2025-11-08 10:26:06','','0000-00-00 00:00:00'),(0,0,2114,'2025-11-08','2026-02-07',2166,0,'','','0000-00-00','reception','2025-11-08 10:36:57','','0000-00-00 00:00:00'),(0,0,2115,'2025-11-08','2026-02-07',2167,0,'','','0000-00-00','drashti','2025-11-08 10:41:24','','0000-00-00 00:00:00'),(0,0,2116,'2025-11-08','2026-02-07',2168,0,'','','0000-00-00','reception','2025-11-08 10:43:06','','0000-00-00 00:00:00'),(0,0,2117,'2025-11-08','2026-02-07',2169,0,'','','0000-00-00','reception','2025-11-08 10:45:03','','0000-00-00 00:00:00'),(0,0,2118,'2025-11-08','2026-02-07',1763,0,'','','0000-00-00','janvi','2025-11-08 10:49:28','','0000-00-00 00:00:00'),(0,0,2119,'2025-11-08','2026-02-07',2170,0,'','','0000-00-00','reception','2025-11-08 10:57:36','','0000-00-00 00:00:00'),(0,0,2120,'2025-11-08','2026-02-07',2171,0,'','','0000-00-00','drashti','2025-11-08 10:59:35','','0000-00-00 00:00:00'),(0,0,2121,'2025-11-08','2026-02-07',2172,0,'','','0000-00-00','reception','2025-11-08 11:01:53','','0000-00-00 00:00:00'),(0,0,2122,'2025-11-08','2026-02-07',2173,0,'','','0000-00-00','drashti','2025-11-08 11:07:10','','0000-00-00 00:00:00'),(0,0,2123,'2025-11-08','2026-02-07',2174,0,'','','0000-00-00','manshi','2025-11-08 11:13:28','','0000-00-00 00:00:00'),(0,0,2124,'2025-11-08','2026-02-07',2175,0,'','','0000-00-00','manshi','2025-11-08 11:15:46','','0000-00-00 00:00:00'),(0,0,2125,'2025-11-08','2026-02-07',2176,0,'','','0000-00-00','reception','2025-11-08 11:23:31','','0000-00-00 00:00:00'),(0,0,2126,'2025-11-08','2026-02-07',2177,0,'','','0000-00-00','reception','2025-11-08 11:26:16','','0000-00-00 00:00:00'),(0,0,2127,'2025-11-08','2026-02-07',2178,0,'','','0000-00-00','reception','2025-11-08 11:32:03','','0000-00-00 00:00:00'),(0,0,2128,'2025-11-08','2026-02-07',2179,0,'','','0000-00-00','reception','2025-11-08 11:37:40','','0000-00-00 00:00:00'),(0,0,2129,'2025-11-08','2026-02-07',2180,0,'','','0000-00-00','reception','2025-11-08 11:42:27','','0000-00-00 00:00:00'),(0,0,2130,'2025-11-08','2026-02-07',2181,0,'','','0000-00-00','reception','2025-11-08 11:46:55','','0000-00-00 00:00:00'),(0,0,2131,'2025-11-08','2026-02-07',2182,0,'','','0000-00-00','reception','2025-11-08 11:49:39','','0000-00-00 00:00:00'),(0,0,2132,'2025-11-08','2026-02-07',2183,0,'','','0000-00-00','reception','2025-11-08 12:06:11','','0000-00-00 00:00:00'),(0,0,2133,'2025-11-08','2026-02-07',2184,0,'','','0000-00-00','reception','2025-11-08 12:23:03','','0000-00-00 00:00:00'),(0,0,2134,'2025-11-08','2026-02-07',2185,0,'','','0000-00-00','janvi','2025-11-08 12:43:14','','0000-00-00 00:00:00'),(0,0,2135,'2025-11-08','2026-02-07',2186,0,'','','0000-00-00','drashti','2025-11-08 12:43:28','','0000-00-00 00:00:00'),(0,0,2136,'2025-11-08','2026-02-07',2187,0,'','','0000-00-00','reception','2025-11-08 12:45:28','','0000-00-00 00:00:00'),(0,0,2137,'2025-11-08','2026-02-07',2188,0,'','','0000-00-00','janvi','2025-11-08 12:59:56','','0000-00-00 00:00:00'),(0,0,2138,'2025-11-08','2026-02-07',2189,0,'','','0000-00-00','drashti','2025-11-08 13:09:09','','0000-00-00 00:00:00'),(0,0,2139,'2025-11-08','2026-02-07',2190,0,'','','0000-00-00','reception','2025-11-08 13:34:43','','0000-00-00 00:00:00'),(0,0,2140,'2025-11-08','2026-02-07',2191,0,'','','0000-00-00','shweta','2025-11-08 14:03:11','','0000-00-00 00:00:00'),(0,0,2141,'2025-11-08','2026-02-07',2192,0,'','','0000-00-00','shweta','2025-11-08 14:40:19','','0000-00-00 00:00:00'),(0,0,2142,'2025-11-08','2026-02-07',2193,0,'','','0000-00-00','manshi','2025-11-08 16:46:32','','0000-00-00 00:00:00'),(0,0,2143,'2025-11-08','2026-02-07',2194,0,'','','0000-00-00','manshi','2025-11-08 17:48:21','','0000-00-00 00:00:00'),(0,0,2144,'2025-11-08','2026-02-07',2196,0,'','','0000-00-00','manshi','2025-11-08 18:04:19','','0000-00-00 00:00:00'),(0,0,2145,'2025-11-08','2026-02-07',2197,0,'','','0000-00-00','priyanshi','2025-11-08 18:54:15','','0000-00-00 00:00:00'),(0,0,2146,'2025-11-08','2026-02-07',2199,0,'','','0000-00-00','janvi','2025-11-08 19:48:14','','0000-00-00 00:00:00'),(0,0,2147,'2025-11-08','2026-02-07',2200,0,'','','0000-00-00','janvi','2025-11-08 19:56:03','','0000-00-00 00:00:00'),(0,0,2148,'2025-11-09','2026-02-08',2202,0,'','','0000-00-00','reception','2025-11-09 11:50:56','','0000-00-00 00:00:00'),(0,0,2149,'2025-11-10','2026-02-09',2203,0,'','','0000-00-00','reception','2025-11-10 09:11:28','','0000-00-00 00:00:00'),(0,0,2150,'2025-11-10','2026-02-09',2204,0,'','','0000-00-00','reception','2025-11-10 09:15:39','','0000-00-00 00:00:00'),(0,0,2151,'2025-11-10','2026-02-09',2205,0,'','','0000-00-00','reception','2025-11-10 09:24:10','','0000-00-00 00:00:00'),(0,0,2152,'2025-11-10','2026-02-09',2206,0,'','','0000-00-00','janvi','2025-11-10 09:27:53','','0000-00-00 00:00:00'),(0,0,2153,'2025-11-10','2026-02-09',2207,0,'','','0000-00-00','drashti','2025-11-10 09:37:58','','0000-00-00 00:00:00'),(0,0,2154,'2025-11-10','2026-02-09',2208,0,'','','0000-00-00','drashti','2025-11-10 09:42:01','','0000-00-00 00:00:00'),(0,0,2155,'2025-11-10','2026-02-09',2210,0,'','','0000-00-00','reception','2025-11-10 09:47:17','','0000-00-00 00:00:00'),(0,0,2156,'2025-11-10','2026-02-09',2211,0,'','','0000-00-00','drashti','2025-11-10 09:51:48','','0000-00-00 00:00:00'),(0,0,2157,'2025-11-10','2026-02-09',2212,0,'','','0000-00-00','reception','2025-11-10 10:04:12','','0000-00-00 00:00:00'),(0,0,2158,'2025-11-10','2026-02-09',2213,0,'','','0000-00-00','manshi','2025-11-10 10:12:05','','0000-00-00 00:00:00'),(0,0,2159,'2025-11-10','2026-02-09',2214,0,'','','0000-00-00','reception','2025-11-10 10:29:50','','0000-00-00 00:00:00'),(0,0,2160,'2025-11-10','2026-02-09',2215,0,'','','0000-00-00','reception','2025-11-10 10:32:22','','0000-00-00 00:00:00'),(0,0,2161,'2025-11-10','2026-02-09',2216,0,'','','0000-00-00','drashti','2025-11-10 10:39:25','','0000-00-00 00:00:00'),(0,0,2162,'2025-11-10','2026-02-09',2217,0,'','','0000-00-00','reception','2025-11-10 10:40:04','','0000-00-00 00:00:00'),(0,0,2163,'2025-11-10','2026-02-09',2218,0,'','','0000-00-00','drashti','2025-11-10 10:46:47','','0000-00-00 00:00:00'),(0,0,2164,'2025-11-10','2026-02-09',2219,0,'','','0000-00-00','reception','2025-11-10 10:47:04','','0000-00-00 00:00:00'),(0,0,2165,'2025-11-10','2026-02-09',2220,0,'','','0000-00-00','drashti','2025-11-10 10:56:04','','0000-00-00 00:00:00'),(0,0,2166,'2025-11-10','2026-02-09',2221,0,'','','0000-00-00','manshi','2025-11-10 10:58:43','','0000-00-00 00:00:00'),(0,0,2167,'2025-11-10','2026-02-09',2222,0,'','','0000-00-00','drashti','2025-11-10 11:03:48','','0000-00-00 00:00:00'),(0,0,2168,'2025-11-10','2026-02-09',2223,0,'','','0000-00-00','drashti','2025-11-10 11:16:13','','0000-00-00 00:00:00'),(0,0,2169,'2025-11-10','2026-02-09',2224,0,'','','0000-00-00','manshi','2025-11-10 11:17:20','','0000-00-00 00:00:00'),(0,0,2170,'2025-11-10','2026-02-09',2225,0,'','','0000-00-00','reception','2025-11-10 11:18:09','','0000-00-00 00:00:00'),(0,0,2171,'2025-11-10','2026-02-09',2226,0,'','','0000-00-00','reception','2025-11-10 11:27:16','','0000-00-00 00:00:00'),(0,0,2172,'2025-11-10','2026-02-09',2227,0,'','','0000-00-00','drashti','2025-11-10 11:43:23','','0000-00-00 00:00:00'),(0,0,2173,'2025-11-10','2026-02-09',2228,0,'','','0000-00-00','manshi','2025-11-10 11:43:58','','0000-00-00 00:00:00'),(0,0,2174,'2025-11-10','2026-02-09',2229,0,'','','0000-00-00','drashti','2025-11-10 11:46:37','','0000-00-00 00:00:00'),(0,0,2175,'2025-11-10','2026-02-09',2230,0,'','','0000-00-00','manshi','2025-11-10 11:49:18','','0000-00-00 00:00:00'),(0,0,2176,'2025-11-10','2026-02-09',2231,0,'','','0000-00-00','reception','2025-11-10 11:52:41','','0000-00-00 00:00:00'),(0,0,2177,'2025-11-10','2026-02-09',2232,0,'','','0000-00-00','manshi','2025-11-10 11:54:58','','0000-00-00 00:00:00'),(0,0,2178,'2025-11-10','2026-02-09',2233,0,'','','0000-00-00','reception','2025-11-10 11:58:12','','0000-00-00 00:00:00'),(0,0,2179,'2025-11-10','2026-02-09',2234,0,'','','0000-00-00','reception','2025-11-10 12:02:31','','0000-00-00 00:00:00'),(0,0,2180,'2025-11-10','2026-02-09',2235,0,'','','0000-00-00','janvi','2025-11-10 12:08:31','','0000-00-00 00:00:00'),(0,0,2181,'2025-11-10','2026-02-09',2236,0,'','','0000-00-00','drashti','2025-11-10 12:09:15','','0000-00-00 00:00:00'),(0,0,2182,'2025-11-10','2026-02-09',2237,0,'','','0000-00-00','reception','2025-11-10 12:17:45','','0000-00-00 00:00:00'),(0,0,2183,'2025-11-10','2026-02-09',2238,0,'','','0000-00-00','reception','2025-11-10 12:33:27','','0000-00-00 00:00:00'),(0,0,2184,'2025-11-10','2026-02-09',2239,0,'','','0000-00-00','reception','2025-11-10 12:49:40','','0000-00-00 00:00:00'),(0,0,2185,'2025-11-10','2026-02-09',2240,0,'','','0000-00-00','reception','2025-11-10 12:57:08','','0000-00-00 00:00:00'),(0,0,2186,'2025-11-10','2026-02-09',2242,0,'','','0000-00-00','reception','2025-11-10 13:15:08','','0000-00-00 00:00:00'),(0,0,2187,'2025-11-10','2026-02-09',2244,0,'','','0000-00-00','reception','2025-11-10 17:00:11','','0000-00-00 00:00:00'),(0,0,2188,'2025-11-10','2026-02-09',2245,0,'','','0000-00-00','drashti','2025-11-10 17:03:21','','0000-00-00 00:00:00'),(0,0,2189,'2025-11-10','2026-02-09',2246,0,'','','0000-00-00','drashti','2025-11-10 17:23:01','','0000-00-00 00:00:00'),(0,0,2190,'2025-11-10','2026-02-09',2247,0,'','','0000-00-00','reception','2025-11-10 17:27:44','','0000-00-00 00:00:00'),(0,0,2191,'2025-11-10','2026-02-09',2248,0,'','','0000-00-00','reception','2025-11-10 17:33:06','','0000-00-00 00:00:00'),(0,0,2192,'2025-11-10','2026-02-09',2249,0,'','','0000-00-00','reception','2025-11-10 17:45:22','','0000-00-00 00:00:00'),(0,0,2193,'2025-11-10','2026-02-09',2250,0,'','','0000-00-00','drashti','2025-11-10 17:50:56','','0000-00-00 00:00:00'),(0,0,2194,'2025-11-10','2026-02-09',2251,0,'','','0000-00-00','drashti','2025-11-10 18:04:29','','0000-00-00 00:00:00'),(0,0,2195,'2025-11-10','2026-02-09',2252,0,'','','0000-00-00','reception','2025-11-10 18:21:38','','0000-00-00 00:00:00'),(0,0,2196,'2025-11-10','2026-02-09',2253,0,'','','0000-00-00','reception','2025-11-10 18:25:44','','0000-00-00 00:00:00'),(0,0,2197,'2025-11-10','2026-02-09',1295,0,'','','0000-00-00','janvi','2025-11-10 18:26:48','','0000-00-00 00:00:00'),(0,0,2198,'2025-11-10','2026-02-09',2254,0,'','','0000-00-00','drashti','2025-11-10 18:30:11','','0000-00-00 00:00:00'),(0,0,2199,'2025-11-10','2026-02-09',2255,0,'','','0000-00-00','drashti','2025-11-10 18:34:43','','0000-00-00 00:00:00'),(0,0,2200,'2025-11-10','2026-02-09',2256,0,'','','0000-00-00','manshi','2025-11-10 18:53:38','','0000-00-00 00:00:00'),(0,0,2201,'2025-11-10','2026-02-09',2257,0,'','','0000-00-00','manshi','2025-11-10 19:26:27','','0000-00-00 00:00:00'),(0,0,2202,'2025-11-10','2026-02-09',2258,0,'','','0000-00-00','reception','2025-11-10 19:30:09','','0000-00-00 00:00:00'),(0,0,2203,'2025-11-10','2026-02-09',2259,0,'','','0000-00-00','drashti','2025-11-10 19:33:59','','0000-00-00 00:00:00'),(0,0,2204,'2025-11-10','2026-02-09',2260,0,'','','0000-00-00','drashti','2025-11-10 19:48:40','','0000-00-00 00:00:00'),(0,0,2205,'2025-11-10','2026-02-09',2261,0,'','','0000-00-00','reception','2025-11-10 20:24:36','','0000-00-00 00:00:00'),(0,0,2206,'2025-11-11','2026-02-10',2262,0,'','','0000-00-00','reception','2025-11-11 09:13:52','','0000-00-00 00:00:00'),(0,0,2207,'2025-11-11','2026-02-10',2263,0,'','','0000-00-00','reception','2025-11-11 10:05:11','','0000-00-00 00:00:00'),(0,0,2208,'2025-11-11','2026-02-10',2264,0,'','','0000-00-00','drashti','2025-11-11 10:12:13','','0000-00-00 00:00:00'),(0,0,2209,'2025-11-11','2026-02-10',2265,0,'','','0000-00-00','manshi','2025-11-11 10:27:54','','0000-00-00 00:00:00'),(0,0,2210,'2025-11-11','2026-02-10',2266,0,'','','0000-00-00','reception','2025-11-11 10:40:45','','0000-00-00 00:00:00'),(0,0,2211,'2025-11-11','2026-02-10',2267,0,'','','0000-00-00','drashti','2025-11-11 10:44:40','','0000-00-00 00:00:00'),(0,0,2212,'2025-11-11','2026-02-10',2268,0,'','','0000-00-00','reception','2025-11-11 10:49:29','','0000-00-00 00:00:00'),(0,0,2213,'2025-11-11','2026-02-10',2269,0,'','','0000-00-00','reception','2025-11-11 10:51:47','','0000-00-00 00:00:00'),(0,0,2214,'2025-11-11','2026-02-10',2270,0,'','','0000-00-00','drashti','2025-11-11 10:52:11','','0000-00-00 00:00:00'),(0,0,2215,'2025-11-11','2026-02-10',2271,0,'','','0000-00-00','drashti','2025-11-11 10:55:07','','0000-00-00 00:00:00'),(0,0,2216,'2025-11-11','2026-02-10',2272,0,'','','0000-00-00','drashti','2025-11-11 10:57:02','','0000-00-00 00:00:00'),(0,0,2217,'2025-11-11','2026-02-10',2273,0,'','','0000-00-00','manshi','2025-11-11 10:57:57','','0000-00-00 00:00:00'),(0,0,2218,'2025-11-11','2026-02-10',2274,0,'','','0000-00-00','janvi','2025-11-11 11:03:51','','0000-00-00 00:00:00'),(0,0,2219,'2025-11-11','2026-02-10',2275,0,'','','0000-00-00','drashti','2025-11-11 11:04:43','','0000-00-00 00:00:00'),(0,0,2220,'2025-11-11','2026-02-10',2276,0,'','','0000-00-00','manshi','2025-11-11 11:09:55','','0000-00-00 00:00:00'),(0,0,2221,'2025-11-11','2026-02-10',2277,0,'','','0000-00-00','drashti','2025-11-11 11:11:32','','0000-00-00 00:00:00'),(0,0,2222,'2025-11-11','2026-02-10',2278,0,'','','0000-00-00','reception','2025-11-11 11:16:10','','0000-00-00 00:00:00'),(0,0,2223,'2025-11-11','2026-02-10',2279,0,'','','0000-00-00','drashti','2025-11-11 11:17:41','','0000-00-00 00:00:00'),(0,0,2224,'2025-11-11','2026-02-10',2280,0,'','','0000-00-00','reception','2025-11-11 11:19:01','','0000-00-00 00:00:00'),(0,0,2225,'2025-11-11','2026-02-10',2281,0,'','','0000-00-00','janvi','2025-11-11 11:19:47','','0000-00-00 00:00:00'),(0,0,2226,'2025-11-11','2026-02-10',2282,0,'','','0000-00-00','janvi','2025-11-11 11:20:53','','0000-00-00 00:00:00'),(0,0,2227,'2025-11-11','2026-02-10',2283,0,'','','0000-00-00','janvi','2025-11-11 11:31:05','','0000-00-00 00:00:00'),(0,0,2228,'2025-11-11','2026-02-10',2284,0,'','','0000-00-00','reception','2025-11-11 11:33:20','','0000-00-00 00:00:00'),(0,0,2229,'2025-11-11','2026-02-10',2285,0,'','','0000-00-00','janvi','2025-11-11 11:36:04','','0000-00-00 00:00:00'),(0,0,2230,'2025-11-11','2026-02-10',2286,0,'','','0000-00-00','janvi','2025-11-11 11:38:14','','0000-00-00 00:00:00'),(0,0,2231,'2025-11-11','2026-02-10',2287,0,'','','0000-00-00','drashti','2025-11-11 11:39:16','','0000-00-00 00:00:00'),(0,0,2232,'2025-11-11','2026-02-10',2288,0,'','','0000-00-00','janvi','2025-11-11 11:39:22','','0000-00-00 00:00:00'),(0,0,2233,'2025-11-11','2026-02-10',2289,0,'','','0000-00-00','janvi','2025-11-11 11:41:41','','0000-00-00 00:00:00'),(0,0,2234,'2025-11-11','2026-02-10',2290,0,'','','0000-00-00','reception','2025-11-11 11:43:02','','0000-00-00 00:00:00'),(0,0,2235,'2025-11-11','2026-02-10',2291,0,'','','0000-00-00','reception','2025-11-11 11:45:52','','0000-00-00 00:00:00'),(0,0,2236,'2025-11-11','2026-02-10',2292,0,'','','0000-00-00','drashti','2025-11-11 11:54:02','','0000-00-00 00:00:00'),(0,0,2237,'2025-11-11','2026-02-10',2293,0,'','','0000-00-00','reception','2025-11-11 12:01:15','','0000-00-00 00:00:00'),(0,0,2238,'2025-11-11','2026-02-10',2294,0,'','','0000-00-00','drashti','2025-11-11 12:09:25','','0000-00-00 00:00:00'),(0,0,2239,'2025-11-11','2026-02-10',2295,0,'','','0000-00-00','reception','2025-11-11 12:17:18','','0000-00-00 00:00:00'),(0,0,2240,'2025-11-11','2026-02-10',2296,0,'','','0000-00-00','reception','2025-11-11 12:19:42','','0000-00-00 00:00:00'),(0,0,2241,'2025-11-11','2026-02-10',2297,0,'','','0000-00-00','drashti','2025-11-11 12:20:28','','0000-00-00 00:00:00'),(0,0,2242,'2025-11-11','2026-02-10',2298,0,'','','0000-00-00','janvi','2025-11-11 12:21:03','','0000-00-00 00:00:00'),(0,0,2243,'2025-11-11','2026-02-10',2299,0,'','','0000-00-00','drashti','2025-11-11 12:21:49','','0000-00-00 00:00:00'),(0,0,2244,'2025-11-11','2026-02-10',2300,0,'','','0000-00-00','reception','2025-11-11 12:22:52','','0000-00-00 00:00:00'),(0,0,2245,'2025-11-11','2026-02-10',2301,0,'','','0000-00-00','manshi','2025-11-11 12:32:36','','0000-00-00 00:00:00'),(0,0,2246,'2025-11-11','2026-02-10',2303,0,'','','0000-00-00','drashti','2025-11-11 13:50:16','','0000-00-00 00:00:00'),(0,0,2247,'2025-11-11','2026-02-10',2304,0,'','','0000-00-00','janvi','2025-11-11 14:09:49','','0000-00-00 00:00:00'),(0,0,2248,'2025-11-11','2026-02-10',2305,0,'','','0000-00-00','shweta','2025-11-11 14:11:44','','0000-00-00 00:00:00'),(0,0,2249,'2025-11-11','2026-02-10',2306,0,'','','0000-00-00','shweta','2025-11-11 16:41:39','','0000-00-00 00:00:00'),(0,0,2250,'2025-11-11','2026-02-10',2307,0,'','','0000-00-00','drashti','2025-11-11 16:42:36','','0000-00-00 00:00:00'),(0,0,2251,'2025-11-11','2026-02-10',2308,0,'','','0000-00-00','priyanshi','2025-11-11 17:07:01','','0000-00-00 00:00:00'),(0,0,2252,'2025-11-11','2026-02-10',2309,0,'','','0000-00-00','drashti','2025-11-11 17:19:57','','0000-00-00 00:00:00'),(0,0,2253,'2025-11-11','2026-02-10',2310,0,'','','0000-00-00','janvi','2025-11-11 17:25:16','','0000-00-00 00:00:00'),(0,0,2254,'2025-11-11','2026-02-10',2311,0,'','','0000-00-00','drashti','2025-11-11 17:41:31','','0000-00-00 00:00:00'),(0,0,2255,'2025-11-11','2026-02-10',2312,0,'','','0000-00-00','manshi','2025-11-11 17:45:38','','0000-00-00 00:00:00'),(0,0,2256,'2025-11-11','2026-02-10',2313,0,'','','0000-00-00','priyanshi','2025-11-11 17:51:19','','0000-00-00 00:00:00'),(0,0,2257,'2025-11-11','2026-02-10',2314,0,'','','0000-00-00','priyanshi','2025-11-11 17:55:25','','0000-00-00 00:00:00'),(0,0,2258,'2025-11-11','2026-02-10',2315,0,'','','0000-00-00','drashti','2025-11-11 18:00:42','','0000-00-00 00:00:00'),(0,0,2259,'2025-11-11','2026-02-10',2316,0,'','','0000-00-00','priyanshi','2025-11-11 18:01:30','','0000-00-00 00:00:00'),(0,0,2260,'2025-11-11','2026-02-10',2317,0,'','','0000-00-00','janvi','2025-11-11 18:02:25','','0000-00-00 00:00:00'),(0,0,2261,'2025-11-11','2026-02-10',2318,0,'','','0000-00-00','drashti','2025-11-11 18:03:27','','0000-00-00 00:00:00'),(0,0,2262,'2025-11-11','2026-02-10',2319,0,'','','0000-00-00','priyanshi','2025-11-11 18:03:44','','0000-00-00 00:00:00'),(0,0,2263,'2025-11-11','2026-02-10',2320,0,'','','0000-00-00','drashti','2025-11-11 18:10:31','','0000-00-00 00:00:00'),(0,0,2264,'2025-11-11','2026-02-10',2321,0,'','','0000-00-00','priyanshi','2025-11-11 18:10:46','','0000-00-00 00:00:00'),(0,0,2265,'2025-11-11','2026-02-10',2322,0,'','','0000-00-00','janvi','2025-11-11 18:11:30','','0000-00-00 00:00:00'),(0,0,2266,'2025-11-11','2026-02-10',2323,0,'','','0000-00-00','drashti','2025-11-11 18:13:56','','0000-00-00 00:00:00'),(0,0,2267,'2025-11-11','2026-02-10',2324,0,'','','0000-00-00','priyanshi','2025-11-11 18:16:57','','0000-00-00 00:00:00'),(0,0,2268,'2025-11-11','2026-02-10',2325,0,'','','0000-00-00','drashti','2025-11-11 18:21:43','','0000-00-00 00:00:00'),(0,0,2269,'2025-11-11','2026-02-10',2326,0,'','','0000-00-00','manshi','2025-11-11 18:25:55','','0000-00-00 00:00:00'),(0,0,2270,'2025-11-11','2026-02-10',2327,0,'','','0000-00-00','drashti','2025-11-11 18:31:57','','0000-00-00 00:00:00'),(0,0,2271,'2025-11-11','2026-02-10',2328,0,'','','0000-00-00','drashti','2025-11-11 18:33:58','','0000-00-00 00:00:00'),(0,0,2272,'2025-11-11','2026-02-10',2329,0,'','','0000-00-00','priyanshi','2025-11-11 18:36:06','','0000-00-00 00:00:00'),(0,0,2273,'2025-11-11','2026-02-10',2330,0,'','','0000-00-00','drashti','2025-11-11 18:38:06','','0000-00-00 00:00:00'),(0,0,2274,'2025-11-11','2026-02-10',2331,0,'','','0000-00-00','janvi','2025-11-11 18:43:28','','0000-00-00 00:00:00'),(0,0,2275,'2025-11-11','2026-02-10',2332,0,'','','0000-00-00','priyanshi','2025-11-11 18:46:43','','0000-00-00 00:00:00'),(0,0,2276,'2025-11-11','2026-02-10',2333,0,'','','0000-00-00','drashti','2025-11-11 18:46:44','','0000-00-00 00:00:00'),(0,0,2277,'2025-11-11','2026-02-10',2334,0,'','','0000-00-00','priyanshi','2025-11-11 18:51:52','','0000-00-00 00:00:00'),(0,0,2278,'2025-11-11','2026-02-10',2335,0,'','','0000-00-00','drashti','2025-11-11 18:54:16','','0000-00-00 00:00:00'),(0,0,2279,'2025-11-11','2026-02-10',2336,0,'','','0000-00-00','drashti','2025-11-11 19:01:13','','0000-00-00 00:00:00'),(0,0,2280,'2025-11-11','2026-02-10',2337,0,'','','0000-00-00','drashti','2025-11-11 19:06:24','','0000-00-00 00:00:00'),(0,0,2281,'2025-11-11','2026-02-10',2338,0,'','','0000-00-00','drashti','2025-11-11 19:21:59','','0000-00-00 00:00:00'),(0,0,2282,'2025-11-11','2026-02-10',2339,0,'','','0000-00-00','drashti','2025-11-11 19:23:56','','0000-00-00 00:00:00'),(0,0,2283,'2025-11-11','2026-02-10',2340,0,'','','0000-00-00','priyanshi','2025-11-11 19:26:41','','0000-00-00 00:00:00'),(0,0,2284,'2025-11-11','2026-02-10',2341,0,'','','0000-00-00','priyanshi','2025-11-11 19:31:41','','0000-00-00 00:00:00'),(0,0,2285,'2025-11-11','2026-02-10',2342,0,'','','0000-00-00','janvi','2025-11-11 19:43:46','','0000-00-00 00:00:00'),(0,0,2286,'2025-11-11','2026-02-10',2343,0,'','','0000-00-00','drashti','2025-11-11 20:43:51','','0000-00-00 00:00:00'),(0,0,2287,'2025-11-12','2026-02-11',2344,0,'','','0000-00-00','reception','2025-11-12 08:48:07','','0000-00-00 00:00:00'),(0,0,2288,'2025-11-12','2026-02-11',2345,0,'','','0000-00-00','reception','2025-11-12 08:50:36','','0000-00-00 00:00:00'),(0,0,2289,'2025-11-12','2026-02-11',2346,0,'','','0000-00-00','janvi','2025-11-12 09:26:03','','0000-00-00 00:00:00'),(0,0,2290,'2025-11-12','2026-02-11',2347,0,'','','0000-00-00','janvi','2025-11-12 09:48:16','','0000-00-00 00:00:00'),(0,0,2291,'2025-11-12','2026-02-11',2348,0,'','','0000-00-00','reception','2025-11-12 09:50:00','','0000-00-00 00:00:00'),(0,0,2292,'2025-11-12','2026-02-11',2349,0,'','','0000-00-00','drashti','2025-11-12 10:11:17','','0000-00-00 00:00:00'),(0,0,2293,'2025-11-12','2026-02-11',2350,0,'','','0000-00-00','drashti','2025-11-12 10:27:19','','0000-00-00 00:00:00'),(0,0,2294,'2025-11-12','2026-02-11',2351,0,'','','0000-00-00','reception','2025-11-12 10:39:05','','0000-00-00 00:00:00'),(0,0,2295,'2025-11-12','2026-02-11',2352,0,'','','0000-00-00','drashti','2025-11-12 10:41:47','','0000-00-00 00:00:00'),(0,0,2296,'2025-11-12','2026-02-11',2353,0,'','','0000-00-00','janvi','2025-11-12 10:55:59','','0000-00-00 00:00:00'),(0,0,2297,'2025-11-12','2026-02-11',2354,0,'','','0000-00-00','reception','2025-11-12 11:00:03','','0000-00-00 00:00:00'),(0,0,2298,'2025-11-12','2026-02-11',2355,0,'','','0000-00-00','reception','2025-11-12 11:05:38','','0000-00-00 00:00:00'),(0,0,2299,'2025-11-12','2026-02-11',2356,0,'','','0000-00-00','reception','2025-11-12 11:09:59','','0000-00-00 00:00:00'),(0,0,2300,'2025-11-12','2026-02-11',2357,0,'','','0000-00-00','janvi','2025-11-12 11:11:15','','0000-00-00 00:00:00'),(0,0,2301,'2025-11-12','2026-02-11',2358,0,'','','0000-00-00','manshi','2025-11-12 11:11:20','','0000-00-00 00:00:00'),(0,0,2302,'2025-11-12','2026-02-11',2359,0,'','','0000-00-00','reception','2025-11-12 11:15:19','','0000-00-00 00:00:00'),(0,0,2303,'2025-11-12','2026-02-11',2360,0,'','','0000-00-00','reception','2025-11-12 11:17:30','','0000-00-00 00:00:00'),(0,0,2304,'2025-11-12','2026-02-11',2361,0,'','','0000-00-00','shweta','2025-11-12 11:20:12','','0000-00-00 00:00:00'),(0,0,2305,'2025-11-12','2026-02-11',2362,0,'','','0000-00-00','janvi','2025-11-12 11:21:09','','0000-00-00 00:00:00'),(0,0,2306,'2025-11-12','2026-02-11',2363,0,'','','0000-00-00','manshi','2025-11-12 11:27:00','','0000-00-00 00:00:00'),(0,0,2307,'2025-11-12','2026-02-11',2364,0,'','','0000-00-00','reception','2025-11-12 11:27:34','','0000-00-00 00:00:00'),(0,0,2308,'2025-11-12','2026-02-11',2365,0,'','','0000-00-00','reception','2025-11-12 11:29:59','','0000-00-00 00:00:00'),(0,0,2309,'2025-11-12','2026-02-11',2366,0,'','','0000-00-00','manshi','2025-11-12 11:31:59','','0000-00-00 00:00:00'),(0,0,2310,'2025-11-12','2026-02-11',2367,0,'','','0000-00-00','janvi','2025-11-12 11:35:44','','0000-00-00 00:00:00'),(0,0,2311,'2025-11-12','2026-02-11',2368,0,'','','0000-00-00','janvi','2025-11-12 11:41:21','','0000-00-00 00:00:00'),(0,0,2312,'2025-11-12','2026-02-11',2369,0,'','','0000-00-00','manshi','2025-11-12 11:50:51','','0000-00-00 00:00:00'),(0,0,2313,'2025-11-12','2026-02-11',2370,0,'','','0000-00-00','reception','2025-11-12 11:55:22','','0000-00-00 00:00:00'),(0,0,2314,'2025-11-12','2026-02-11',2371,0,'','','0000-00-00','reception','2025-11-12 11:57:21','','0000-00-00 00:00:00'),(0,0,2315,'2025-11-12','2026-02-11',2372,0,'','','0000-00-00','manshi','2025-11-12 12:00:57','','0000-00-00 00:00:00'),(0,0,2316,'2025-11-12','2026-02-11',2373,0,'','','0000-00-00','reception','2025-11-12 12:01:19','','0000-00-00 00:00:00'),(0,0,2317,'2025-11-12','2026-02-11',2374,0,'','','0000-00-00','reception','2025-11-12 12:05:30','','0000-00-00 00:00:00'),(0,0,2318,'2025-11-12','2026-02-11',2375,0,'','','0000-00-00','drashti','2025-11-12 12:10:26','','0000-00-00 00:00:00'),(0,0,2319,'2025-11-12','2026-02-11',2376,0,'','','0000-00-00','drashti','2025-11-12 12:24:31','','0000-00-00 00:00:00'),(0,0,2320,'2025-11-12','2026-02-11',2377,0,'','','0000-00-00','reception','2025-11-12 12:26:42','','0000-00-00 00:00:00'),(0,0,2321,'2025-11-12','2026-02-11',2378,0,'','','0000-00-00','drashti','2025-11-12 12:30:27','','0000-00-00 00:00:00'),(0,0,2322,'2025-11-12','2026-02-11',2379,0,'','','0000-00-00','drashti','2025-11-12 12:42:43','','0000-00-00 00:00:00'),(0,0,2323,'2025-11-12','2026-02-11',2380,0,'','','0000-00-00','janvi','2025-11-12 12:43:13','','0000-00-00 00:00:00'),(0,0,2324,'2025-11-12','2026-02-11',2381,0,'','','0000-00-00','drashti','2025-11-12 12:49:03','','0000-00-00 00:00:00'),(0,0,2325,'2025-11-12','2026-02-11',2382,0,'','','0000-00-00','drashti','2025-11-12 12:53:16','','0000-00-00 00:00:00'),(0,0,2326,'2025-11-12','2026-02-11',2383,0,'','','0000-00-00','drashti','2025-11-12 12:56:48','','0000-00-00 00:00:00'),(0,0,2327,'2025-11-12','2026-02-11',1795,0,'','','0000-00-00','manshi','2025-11-12 13:10:26','','0000-00-00 00:00:00'),(0,0,2328,'2025-11-12','2026-02-11',255,0,'','','0000-00-00','manshi','2025-11-12 13:18:06','','0000-00-00 00:00:00'),(0,0,2329,'2025-11-12','2026-02-11',2385,0,'','','0000-00-00','reception','2025-11-12 16:01:17','','0000-00-00 00:00:00'),(0,0,2330,'2025-11-12','2026-02-11',2386,0,'','','0000-00-00','reception','2025-11-12 16:34:36','','0000-00-00 00:00:00'),(0,0,2331,'2025-11-12','2026-02-11',2387,0,'','','0000-00-00','reception','2025-11-12 16:52:00','','0000-00-00 00:00:00'),(0,0,2332,'2025-11-12','2026-02-11',2388,0,'','','0000-00-00','reception','2025-11-12 16:59:21','','0000-00-00 00:00:00'),(0,0,2333,'2025-11-12','2026-02-11',2389,0,'','','0000-00-00','drashti','2025-11-12 17:06:36','','0000-00-00 00:00:00'),(0,0,2334,'2025-11-12','2026-02-11',2390,0,'','','0000-00-00','reception','2025-11-12 17:08:06','','0000-00-00 00:00:00'),(0,0,2335,'2025-11-12','2026-02-11',2391,0,'','','0000-00-00','reception','2025-11-12 17:12:05','','0000-00-00 00:00:00'),(0,0,2336,'2025-11-12','2026-02-11',2392,0,'','','0000-00-00','reception','2025-11-12 17:18:49','','0000-00-00 00:00:00'),(0,0,2337,'2025-11-12','2026-02-11',2393,0,'','','0000-00-00','reception','2025-11-12 17:20:32','','0000-00-00 00:00:00'),(0,0,2338,'2025-11-12','2026-02-11',2394,0,'','','0000-00-00','drashti','2025-11-12 17:23:39','','0000-00-00 00:00:00'),(0,0,2339,'2025-11-12','2026-02-11',2395,0,'','','0000-00-00','reception','2025-11-12 17:26:06','','0000-00-00 00:00:00'),(0,0,2340,'2025-11-12','2026-02-11',2396,0,'','','0000-00-00','drashti','2025-11-12 17:27:18','','0000-00-00 00:00:00'),(0,0,2341,'2025-11-12','2026-02-11',2397,0,'','','0000-00-00','janvi','2025-11-12 17:27:41','','0000-00-00 00:00:00'),(0,0,2342,'2025-11-12','2026-02-11',2398,0,'','','0000-00-00','reception','2025-11-12 17:29:07','','0000-00-00 00:00:00'),(0,0,2343,'2025-11-12','2026-02-11',2399,0,'','','0000-00-00','reception','2025-11-12 17:31:45','','0000-00-00 00:00:00'),(0,0,2344,'2025-11-12','2026-02-11',2400,0,'','','0000-00-00','reception','2025-11-12 17:33:59','','0000-00-00 00:00:00'),(0,0,2345,'2025-11-12','2026-02-11',2401,0,'','','0000-00-00','reception','2025-11-12 17:37:49','','0000-00-00 00:00:00'),(0,0,2346,'2025-11-12','2026-02-11',2402,0,'','','0000-00-00','drashti','2025-11-12 17:38:10','','0000-00-00 00:00:00'),(0,0,2347,'2025-11-12','2026-02-11',2403,0,'','','0000-00-00','drashti','2025-11-12 17:42:15','','0000-00-00 00:00:00'),(0,0,2348,'2025-11-12','2026-02-11',2404,0,'','','0000-00-00','reception','2025-11-12 17:46:58','','0000-00-00 00:00:00'),(0,0,2349,'2025-11-12','2026-02-11',2405,0,'','','0000-00-00','janvi','2025-11-12 17:49:11','','0000-00-00 00:00:00'),(0,0,2350,'2025-11-12','2026-02-11',2406,0,'','','0000-00-00','reception','2025-11-12 17:52:44','','0000-00-00 00:00:00'),(0,0,2351,'2025-11-12','2026-02-11',2407,0,'','','0000-00-00','manshi','2025-11-12 17:56:02','','0000-00-00 00:00:00'),(0,0,2352,'2025-11-12','2026-02-11',2408,0,'','','0000-00-00','reception','2025-11-12 17:57:13','','0000-00-00 00:00:00'),(0,0,2353,'2025-11-12','2026-02-11',1729,0,'','','0000-00-00','drashti','2025-11-12 17:59:46','','0000-00-00 00:00:00'),(0,0,2354,'2025-11-12','2026-02-11',2409,0,'','','0000-00-00','janvi','2025-11-12 18:07:01','','0000-00-00 00:00:00'),(0,0,2355,'2025-11-12','2026-02-11',2410,0,'','','0000-00-00','drashti','2025-11-12 18:08:55','','0000-00-00 00:00:00'),(0,0,2356,'2025-11-12','2026-02-11',2411,0,'','','0000-00-00','drashti','2025-11-12 18:14:13','','0000-00-00 00:00:00'),(0,0,2357,'2025-11-12','2026-02-11',2412,0,'','','0000-00-00','reception','2025-11-12 18:17:27','','0000-00-00 00:00:00'),(0,0,2358,'2025-11-12','2026-02-11',2413,0,'','','0000-00-00','drashti','2025-11-12 18:23:09','','0000-00-00 00:00:00'),(0,0,2359,'2025-11-12','2026-02-11',2414,0,'','','0000-00-00','drashti','2025-11-12 18:27:41','','0000-00-00 00:00:00'),(0,0,2360,'2025-11-12','2026-02-11',2415,0,'','','0000-00-00','janvi','2025-11-12 18:38:59','','0000-00-00 00:00:00'),(0,0,2361,'2025-11-12','2026-02-11',2416,0,'','','0000-00-00','reception','2025-11-12 18:46:05','','0000-00-00 00:00:00'),(0,0,2362,'2025-11-12','2026-02-11',2417,0,'','','0000-00-00','reception','2025-11-12 18:47:43','','0000-00-00 00:00:00'),(0,0,2363,'2025-11-12','2026-02-11',2418,0,'','','0000-00-00','drashti','2025-11-12 18:49:25','','0000-00-00 00:00:00'),(0,0,2364,'2025-11-12','2026-02-11',2419,0,'','','0000-00-00','reception','2025-11-12 18:54:35','','0000-00-00 00:00:00'),(0,0,2365,'2025-11-12','2026-02-11',2420,0,'','','0000-00-00','drashti','2025-11-12 18:56:45','','0000-00-00 00:00:00'),(0,0,2366,'2025-11-12','2026-02-11',2421,0,'','','0000-00-00','reception','2025-11-12 18:58:33','','0000-00-00 00:00:00'),(0,0,2367,'2025-11-12','2026-02-11',2422,0,'','','0000-00-00','manshi','2025-11-12 19:00:05','','0000-00-00 00:00:00'),(0,0,2368,'2025-11-12','2026-02-11',2423,0,'','','0000-00-00','drashti','2025-11-12 19:04:06','','0000-00-00 00:00:00'),(0,0,2369,'2025-11-12','2026-02-11',2425,0,'','','0000-00-00','janvi','2025-11-12 19:13:00','','0000-00-00 00:00:00'),(0,0,2370,'2025-11-12','2026-02-11',2426,0,'','','0000-00-00','drashti','2025-11-12 19:13:12','','0000-00-00 00:00:00'),(0,0,2371,'2025-11-12','2026-02-11',2427,0,'','','0000-00-00','janvi','2025-11-12 19:14:04','','0000-00-00 00:00:00'),(0,0,2372,'2025-11-12','2026-02-11',2428,0,'','','0000-00-00','drashti','2025-11-12 19:16:49','','0000-00-00 00:00:00'),(0,0,2373,'2025-11-12','2026-02-11',2429,0,'','','0000-00-00','reception','2025-11-12 19:27:07','','0000-00-00 00:00:00'),(0,0,2374,'2025-11-12','2026-02-11',2430,0,'','','0000-00-00','reception','2025-11-12 19:28:36','','0000-00-00 00:00:00'),(0,0,2375,'2025-11-12','2026-02-11',2431,0,'','','0000-00-00','drashti','2025-11-12 19:36:24','','0000-00-00 00:00:00'),(0,0,2376,'2025-11-12','2026-02-11',2432,0,'','','0000-00-00','manshi','2025-11-12 19:38:17','','0000-00-00 00:00:00'),(0,0,2377,'2025-11-12','2026-02-11',2433,0,'','','0000-00-00','reception','2025-11-12 19:50:59','','0000-00-00 00:00:00'),(0,0,2378,'2025-11-12','2026-02-11',2434,0,'','','0000-00-00','drashti','2025-11-12 19:58:45','','0000-00-00 00:00:00'),(0,0,2379,'2025-11-13','2026-02-12',2435,0,'','','0000-00-00','reception','2025-11-13 08:59:54','','0000-00-00 00:00:00'),(0,0,2380,'2025-11-13','2026-02-12',2436,0,'','','0000-00-00','janvi','2025-11-13 09:10:54','','0000-00-00 00:00:00'),(0,0,2381,'2025-11-13','2026-02-12',2437,0,'','','0000-00-00','janvi','2025-11-13 09:12:09','','0000-00-00 00:00:00'),(0,0,2382,'2025-11-13','2026-02-12',1410,0,'','','0000-00-00','janvi','2025-11-13 09:35:11','','0000-00-00 00:00:00'),(0,0,2383,'2025-11-13','2026-02-12',2440,0,'','','0000-00-00','reception','2025-11-13 10:07:42','','0000-00-00 00:00:00'),(0,0,2384,'2025-11-13','2026-02-12',2441,0,'','','0000-00-00','reception','2025-11-13 10:24:18','','0000-00-00 00:00:00'),(0,0,2385,'2025-11-13','2026-02-12',2442,0,'','','0000-00-00','priyanshi','2025-11-13 10:25:52','','0000-00-00 00:00:00'),(0,0,2386,'2025-11-13','2026-02-12',2443,0,'','','0000-00-00','reception','2025-11-13 10:25:57','','0000-00-00 00:00:00'),(0,0,2387,'2025-11-13','2026-02-12',2444,0,'','','0000-00-00','reception','2025-11-13 10:28:34','','0000-00-00 00:00:00'),(0,0,2388,'2025-11-13','2026-02-12',2445,0,'','','0000-00-00','priyanshi','2025-11-13 10:38:13','','0000-00-00 00:00:00'),(0,0,2389,'2025-11-13','2026-02-12',2446,0,'','','0000-00-00','reception','2025-11-13 10:46:07','','0000-00-00 00:00:00'),(0,0,2390,'2025-11-13','2026-02-12',2447,0,'','','0000-00-00','reception','2025-11-13 10:48:22','','0000-00-00 00:00:00'),(0,0,2391,'2025-11-13','2026-02-12',2448,0,'','','0000-00-00','priyanshi','2025-11-13 10:54:12','','0000-00-00 00:00:00'),(0,0,2392,'2025-11-13','2026-02-12',2449,0,'','','0000-00-00','reception','2025-11-13 11:01:53','','0000-00-00 00:00:00'),(0,0,2393,'2025-11-13','2026-02-12',392,0,'','','0000-00-00','priyanshi','2025-11-13 11:03:52','','0000-00-00 00:00:00'),(0,0,2394,'2025-11-13','2026-02-12',2450,0,'','','0000-00-00','reception','2025-11-13 11:08:12','','0000-00-00 00:00:00'),(0,0,2395,'2025-11-13','2026-02-12',2451,0,'','','0000-00-00','janvi','2025-11-13 11:08:51','','0000-00-00 00:00:00'),(0,0,2396,'2025-11-13','2026-02-12',2452,0,'','','0000-00-00','priyanshi','2025-11-13 11:11:49','','0000-00-00 00:00:00'),(0,0,2397,'2025-11-13','2026-02-12',2453,0,'','','0000-00-00','priyanshi','2025-11-13 11:14:03','','0000-00-00 00:00:00'),(0,0,2398,'2025-11-13','2026-02-12',2454,0,'','','0000-00-00','reception','2025-11-13 11:14:11','','0000-00-00 00:00:00'),(0,0,2399,'2025-11-13','2026-02-12',2455,0,'','','0000-00-00','reception','2025-11-13 11:18:17','','0000-00-00 00:00:00'),(0,0,2400,'2025-11-13','2026-02-12',2456,0,'','','0000-00-00','priyanshi','2025-11-13 11:20:54','','0000-00-00 00:00:00'),(0,0,2401,'2025-11-13','2026-02-12',2457,0,'','','0000-00-00','shweta','2025-11-13 11:26:53','','0000-00-00 00:00:00'),(0,0,2402,'2025-11-13','2026-02-12',2458,0,'','','0000-00-00','janvi','2025-11-13 11:27:56','','0000-00-00 00:00:00'),(0,0,2403,'2025-11-13','2026-02-12',2459,0,'','','0000-00-00','reception','2025-11-13 11:33:31','','0000-00-00 00:00:00'),(0,0,2404,'2025-11-13','2026-02-12',2460,0,'','','0000-00-00','janvi','2025-11-13 11:38:00','','0000-00-00 00:00:00'),(0,0,2405,'2025-11-13','2026-02-12',2461,0,'','','0000-00-00','reception','2025-11-13 11:44:21','','0000-00-00 00:00:00'),(0,0,2406,'2025-11-13','2026-02-12',2462,0,'','','0000-00-00','reception','2025-11-13 11:54:24','','0000-00-00 00:00:00'),(0,0,2407,'2025-11-13','2026-02-12',2463,0,'','','0000-00-00','reception','2025-11-13 12:28:40','','0000-00-00 00:00:00'),(0,0,2408,'2025-11-13','2026-02-12',2464,0,'','','0000-00-00','priyanshi','2025-11-13 12:34:01','','0000-00-00 00:00:00'),(0,0,2409,'2025-11-13','2026-02-12',2465,0,'','','0000-00-00','janvi','2025-11-13 12:34:34','','0000-00-00 00:00:00'),(0,0,2410,'2025-11-13','2026-02-12',2466,0,'','','0000-00-00','priyanshi','2025-11-13 12:42:52','','0000-00-00 00:00:00'),(0,0,2411,'2025-11-13','2026-02-12',2467,0,'','','0000-00-00','janvi','2025-11-13 12:45:59','','0000-00-00 00:00:00'),(0,0,2412,'2025-11-13','2026-02-12',2468,0,'','','0000-00-00','priyanshi','2025-11-13 12:46:29','','0000-00-00 00:00:00'),(0,0,2413,'2025-11-13','2026-02-12',2469,0,'','','0000-00-00','priyanshi','2025-11-13 13:21:06','','0000-00-00 00:00:00'),(0,0,2414,'2025-11-13','2026-02-12',2470,0,'','','0000-00-00','janvi','2025-11-13 13:28:26','','0000-00-00 00:00:00'),(0,0,2415,'2025-11-13','2026-02-12',2471,0,'','','0000-00-00','reception','2025-11-13 13:29:24','','0000-00-00 00:00:00'),(0,0,2416,'2025-11-13','2026-02-12',2472,0,'','','0000-00-00','priyanshi','2025-11-13 13:33:32','','0000-00-00 00:00:00'),(0,0,2417,'2025-11-13','2026-02-12',2473,0,'','','0000-00-00','reception','2025-11-13 14:01:44','','0000-00-00 00:00:00'),(0,0,2418,'2025-11-13','2026-02-12',2474,0,'','','0000-00-00','shweta','2025-11-13 15:48:35','','0000-00-00 00:00:00'),(0,0,2419,'2025-11-13','2026-02-12',2475,0,'','','0000-00-00','reception','2025-11-13 16:29:43','','0000-00-00 00:00:00'),(0,0,2420,'2025-11-13','2026-02-12',2476,0,'','','0000-00-00','reception','2025-11-13 16:37:16','','0000-00-00 00:00:00'),(0,0,2421,'2025-11-13','2026-02-12',2477,0,'','','0000-00-00','reception','2025-11-13 16:38:58','','0000-00-00 00:00:00'),(0,0,2422,'2025-11-13','2026-02-12',2478,0,'','','0000-00-00','reception','2025-11-13 17:11:30','','0000-00-00 00:00:00'),(0,0,2423,'2025-11-13','2026-02-12',2479,0,'','','0000-00-00','reception','2025-11-13 17:14:11','','0000-00-00 00:00:00'),(0,0,2424,'2025-11-13','2026-02-12',2480,0,'','','0000-00-00','priyanshi','2025-11-13 17:17:14','','0000-00-00 00:00:00'),(0,0,2425,'2025-11-13','2026-02-12',2481,0,'','','0000-00-00','reception','2025-11-13 17:26:06','','0000-00-00 00:00:00'),(0,0,2426,'2025-11-13','2026-02-12',2482,0,'','','0000-00-00','reception','2025-11-13 17:32:17','','0000-00-00 00:00:00'),(0,0,2427,'2025-11-13','2026-02-12',2483,0,'','','0000-00-00','reception','2025-11-13 17:47:43','','0000-00-00 00:00:00'),(0,0,2428,'2025-11-13','2026-02-12',2484,0,'','','0000-00-00','reception','2025-11-13 17:49:09','','0000-00-00 00:00:00'),(0,0,2429,'2025-11-13','2026-02-12',2485,0,'','','0000-00-00','reception','2025-11-13 17:51:38','','0000-00-00 00:00:00'),(0,0,2430,'2025-11-13','2026-02-12',2486,0,'','','0000-00-00','priyanshi','2025-11-13 17:54:17','','0000-00-00 00:00:00'),(0,0,2431,'2025-11-13','2026-02-12',2487,0,'','','0000-00-00','priyanshi','2025-11-13 18:01:22','','0000-00-00 00:00:00'),(0,0,2432,'2025-11-13','2026-02-12',2488,0,'','','0000-00-00','priyanshi','2025-11-13 18:03:53','','0000-00-00 00:00:00'),(0,0,2433,'2025-11-13','2026-02-12',2489,0,'','','0000-00-00','shweta','2025-11-13 18:05:00','','0000-00-00 00:00:00'),(0,0,2434,'2025-11-13','2026-02-12',2490,0,'','','0000-00-00','manshi','2025-11-13 18:05:16','','0000-00-00 00:00:00'),(0,0,2435,'2025-11-13','2026-02-12',2491,0,'','','0000-00-00','priyanshi','2025-11-13 18:11:09','','0000-00-00 00:00:00'),(0,0,2436,'2025-11-13','2026-02-12',2492,0,'','','0000-00-00','priyanshi','2025-11-13 18:22:51','','0000-00-00 00:00:00'),(0,0,2437,'2025-11-13','2026-02-12',2493,0,'','','0000-00-00','priyanshi','2025-11-13 18:25:09','','0000-00-00 00:00:00'),(0,0,2438,'2025-11-13','2026-02-12',2494,0,'','','0000-00-00','shweta','2025-11-13 18:39:16','','0000-00-00 00:00:00'),(0,0,2439,'2025-11-13','2026-02-12',2495,0,'','','0000-00-00','priyanshi','2025-11-13 18:55:12','','0000-00-00 00:00:00'),(0,0,2440,'2025-11-13','2026-02-12',2496,0,'','','0000-00-00','priyanshi','2025-11-13 19:09:27','','0000-00-00 00:00:00'),(0,0,2441,'2025-11-13','2026-02-12',2497,0,'','','0000-00-00','priyanshi','2025-11-13 19:24:35','','0000-00-00 00:00:00'),(0,0,2442,'2025-11-13','2026-02-12',2498,0,'','','0000-00-00','priyanshi','2025-11-13 19:26:05','','0000-00-00 00:00:00'),(0,0,2443,'2025-11-13','2026-02-12',2500,0,'','','0000-00-00','shweta','2025-11-13 19:58:42','','0000-00-00 00:00:00'),(0,0,2444,'2025-11-14','2026-02-13',2501,0,'','','0000-00-00','reception','2025-11-14 08:46:04','','0000-00-00 00:00:00'),(0,0,2445,'2025-11-14','2026-02-13',2502,0,'','','0000-00-00','janvi','2025-11-14 09:13:20','','0000-00-00 00:00:00'),(0,0,2446,'2025-11-14','2026-02-13',2503,0,'','','0000-00-00','reception','2025-11-14 09:51:04','','0000-00-00 00:00:00'),(0,0,2447,'2025-11-14','2026-02-13',2505,0,'','','0000-00-00','reception','2025-11-14 10:17:14','','0000-00-00 00:00:00'),(0,0,2448,'2025-11-14','2026-02-13',2507,0,'','','0000-00-00','reception','2025-11-14 10:19:46','','0000-00-00 00:00:00'),(0,0,2449,'2025-11-14','2026-02-13',2508,0,'','','0000-00-00','reception','2025-11-14 10:21:53','','0000-00-00 00:00:00'),(0,0,2450,'2025-11-14','2026-02-13',2509,0,'','','0000-00-00','janvi','2025-11-14 10:29:00','','0000-00-00 00:00:00'),(0,0,2451,'2025-11-14','2026-02-13',2510,0,'','','0000-00-00','reception','2025-11-14 10:32:03','','0000-00-00 00:00:00'),(0,0,2452,'2025-11-14','2026-02-13',2511,0,'','','0000-00-00','reception','2025-11-14 10:34:27','','0000-00-00 00:00:00'),(0,0,2453,'2025-11-14','2026-02-13',2512,0,'','','0000-00-00','reception','2025-11-14 10:36:02','','0000-00-00 00:00:00'),(0,0,2454,'2025-11-14','2026-02-13',2513,0,'','','0000-00-00','janvi','2025-11-14 10:42:06','','0000-00-00 00:00:00'),(0,0,2455,'2025-11-14','2026-02-13',2514,0,'','','0000-00-00','reception','2025-11-14 10:42:48','','0000-00-00 00:00:00'),(0,0,2456,'2025-11-14','2026-02-13',2515,0,'','','0000-00-00','reception','2025-11-14 10:45:01','','0000-00-00 00:00:00'),(0,0,2457,'2025-11-14','2026-02-13',2516,0,'','','0000-00-00','reception','2025-11-14 10:48:56','','0000-00-00 00:00:00'),(0,0,2458,'2025-11-14','2026-02-13',2517,0,'','','0000-00-00','urvashi','2025-11-14 11:04:09','','0000-00-00 00:00:00'),(0,0,2459,'2025-11-14','2026-02-13',2518,0,'','','0000-00-00','janvi','2025-11-14 11:08:56','','0000-00-00 00:00:00'),(0,0,2460,'2025-11-14','2026-02-13',2519,0,'','','0000-00-00','urvashi','2025-11-14 11:27:25','','0000-00-00 00:00:00'),(0,0,2461,'2025-11-14','2026-02-13',2520,0,'','','0000-00-00','janvi','2025-11-14 11:28:48','','0000-00-00 00:00:00'),(0,0,2462,'2025-11-14','2026-02-13',2521,0,'','','0000-00-00','urvashi','2025-11-14 11:37:27','','0000-00-00 00:00:00'),(0,0,2463,'2025-11-14','2026-02-13',2522,0,'','','0000-00-00','reception','2025-11-14 11:38:23','','0000-00-00 00:00:00'),(0,0,2464,'2025-11-14','2026-02-13',2523,0,'','','0000-00-00','reception','2025-11-14 11:42:01','','0000-00-00 00:00:00'),(0,0,2465,'2025-11-14','2026-02-13',2524,0,'','','0000-00-00','janvi','2025-11-14 11:51:14','','0000-00-00 00:00:00'),(0,0,2466,'2025-11-14','2026-02-13',2525,0,'','','0000-00-00','urvashi','2025-11-14 11:53:07','','0000-00-00 00:00:00'),(0,0,2467,'2025-11-14','2026-02-13',818,0,'','','0000-00-00','manshi','2025-11-14 11:54:33','','0000-00-00 00:00:00'),(0,0,2468,'2025-11-14','2026-02-13',2526,0,'','','0000-00-00','janvi','2025-11-14 12:02:13','','0000-00-00 00:00:00'),(0,0,2469,'2025-11-14','2026-02-13',2527,0,'','','0000-00-00','reception','2025-11-14 12:02:15','','0000-00-00 00:00:00'),(0,0,2470,'2025-11-14','2026-02-13',2528,0,'','','0000-00-00','shweta','2025-11-14 12:08:33','','0000-00-00 00:00:00'),(0,0,2471,'2025-11-14','2026-02-13',2529,0,'','','0000-00-00','manshi','2025-11-14 12:10:59','','0000-00-00 00:00:00'),(0,0,2472,'2025-11-14','2026-02-13',2530,0,'','','0000-00-00','janvi','2025-11-14 12:20:33','','0000-00-00 00:00:00'),(0,0,2473,'2025-11-14','2026-02-13',2531,0,'','','0000-00-00','urvashi','2025-11-14 12:23:41','','0000-00-00 00:00:00'),(0,0,2474,'2025-11-14','2026-02-13',2532,0,'','','0000-00-00','manshi','2025-11-14 12:32:12','','0000-00-00 00:00:00'),(0,0,2475,'2025-11-14','2026-02-13',2533,0,'','','0000-00-00','urvashi','2025-11-14 12:45:28','','0000-00-00 00:00:00'),(0,0,2476,'2025-11-14','2026-02-13',2534,0,'','','0000-00-00','reception','2025-11-14 12:47:14','','0000-00-00 00:00:00'),(0,0,2477,'2025-11-14','2026-02-13',2535,0,'','','0000-00-00','urvashi','2025-11-14 12:47:15','','0000-00-00 00:00:00'),(0,0,2478,'2025-11-14','2026-02-13',2536,0,'','','0000-00-00','urvashi','2025-11-14 12:49:37','','0000-00-00 00:00:00'),(0,0,2479,'2025-11-14','2026-02-13',2533,0,'','','0000-00-00','manshi','2025-11-14 12:52:07','','0000-00-00 00:00:00'),(0,0,2480,'2025-11-14','2026-02-13',2537,0,'','','0000-00-00','manshi','2025-11-14 13:12:02','','0000-00-00 00:00:00'),(0,0,2481,'2025-11-14','2026-02-13',2538,0,'','','0000-00-00','reception','2025-11-14 13:28:15','','0000-00-00 00:00:00'),(0,0,2482,'2025-11-14','2026-02-13',2540,0,'','','0000-00-00','shweta','2025-11-14 14:33:03','','0000-00-00 00:00:00'),(0,0,2483,'2025-11-14','2026-02-13',2541,0,'','','0000-00-00','reception','2025-11-14 16:26:03','','0000-00-00 00:00:00'),(0,0,2484,'2025-11-14','2026-02-13',2542,0,'','','0000-00-00','reception','2025-11-14 16:36:20','','0000-00-00 00:00:00'),(0,0,2485,'2025-11-14','2026-02-13',2543,0,'','','0000-00-00','reception','2025-11-14 16:38:55','','0000-00-00 00:00:00'),(0,0,2486,'2025-11-14','2026-02-13',2544,0,'','','0000-00-00','reception','2025-11-14 16:43:19','','0000-00-00 00:00:00'),(0,0,2487,'2025-11-14','2026-02-13',2545,0,'','','0000-00-00','reception','2025-11-14 16:51:26','','0000-00-00 00:00:00'),(0,0,2488,'2025-11-14','2026-02-13',2546,0,'','','0000-00-00','drashti','2025-11-14 17:02:02','','0000-00-00 00:00:00'),(0,0,2489,'2025-11-14','2026-02-13',2547,0,'','','0000-00-00','reception','2025-11-14 17:07:29','','0000-00-00 00:00:00'),(0,0,2490,'2025-11-14','2026-02-13',2548,0,'','','0000-00-00','reception','2025-11-14 17:12:04','','0000-00-00 00:00:00'),(0,0,2491,'2025-11-14','2026-02-13',2549,0,'','','0000-00-00','reception','2025-11-14 17:20:36','','0000-00-00 00:00:00'),(0,0,2492,'2025-11-14','2026-02-13',2550,0,'','','0000-00-00','drashti','2025-11-14 17:36:09','','0000-00-00 00:00:00'),(0,0,2493,'2025-11-14','2026-02-13',2551,0,'','','0000-00-00','reception','2025-11-14 17:38:33','','0000-00-00 00:00:00'),(0,0,2494,'2025-11-14','2026-02-13',2552,0,'','','0000-00-00','janvi','2025-11-14 17:40:39','','0000-00-00 00:00:00'),(0,0,2495,'2025-11-14','2026-02-13',2553,0,'','','0000-00-00','drashti','2025-11-14 17:40:52','','0000-00-00 00:00:00'),(0,0,2496,'2025-11-14','2026-02-13',2554,0,'','','0000-00-00','drashti','2025-11-14 17:56:17','','0000-00-00 00:00:00'),(0,0,2497,'2025-11-14','2026-02-13',2555,0,'','','0000-00-00','reception','2025-11-14 18:00:28','','0000-00-00 00:00:00'),(0,0,2498,'2025-11-14','2026-02-13',142,0,'','','0000-00-00','manshi','2025-11-14 18:13:48','','0000-00-00 00:00:00'),(0,0,2499,'2025-11-14','2026-02-13',2556,0,'','','0000-00-00','janvi','2025-11-14 18:21:53','','0000-00-00 00:00:00'),(0,0,2500,'2025-11-14','2026-02-13',2557,0,'','','0000-00-00','reception','2025-11-14 18:22:03','','0000-00-00 00:00:00'),(0,0,2501,'2025-11-14','2026-02-13',2558,0,'','','0000-00-00','reception','2025-11-14 18:24:16','','0000-00-00 00:00:00'),(0,0,2502,'2025-11-14','2026-02-13',2559,0,'','','0000-00-00','manshi','2025-11-14 18:24:37','','0000-00-00 00:00:00'),(0,0,2503,'2025-11-14','2026-02-13',2560,0,'','','0000-00-00','reception','2025-11-14 18:26:27','','0000-00-00 00:00:00'),(0,0,2504,'2025-11-14','2026-02-13',2561,0,'','','0000-00-00','drashti','2025-11-14 18:29:57','','0000-00-00 00:00:00'),(0,0,2505,'2025-11-14','2026-02-13',2562,0,'','','0000-00-00','drashti','2025-11-14 18:38:35','','0000-00-00 00:00:00'),(0,0,2506,'2025-11-14','2026-02-13',2563,0,'','','0000-00-00','drashti','2025-11-14 18:46:57','','0000-00-00 00:00:00'),(0,0,2507,'2025-11-14','2026-02-13',2564,0,'','','0000-00-00','reception','2025-11-14 18:49:34','','0000-00-00 00:00:00'),(0,0,2508,'2025-11-14','2026-02-13',2565,0,'','','0000-00-00','drashti','2025-11-14 18:51:05','','0000-00-00 00:00:00'),(0,0,2509,'2025-11-14','2026-02-13',2566,0,'','','0000-00-00','drashti','2025-11-14 18:52:56','','0000-00-00 00:00:00'),(0,0,2510,'2025-11-14','2026-02-13',2567,0,'','','0000-00-00','janvi','2025-11-14 18:53:16','','0000-00-00 00:00:00'),(0,0,2511,'2025-11-14','2026-02-13',2568,0,'','','0000-00-00','drashti','2025-11-14 19:04:58','','0000-00-00 00:00:00'),(0,0,2512,'2025-11-14','2026-02-13',2569,0,'','','0000-00-00','drashti','2025-11-14 19:11:58','','0000-00-00 00:00:00'),(0,0,2513,'2025-11-14','2026-02-13',2570,0,'','','0000-00-00','drashti','2025-11-14 20:12:50','','0000-00-00 00:00:00'),(0,0,2514,'2025-11-15','2026-02-14',2571,0,'','','0000-00-00','janvi','2025-11-15 09:35:43','','0000-00-00 00:00:00'),(0,0,2515,'2025-11-15','2026-02-14',2572,0,'','','0000-00-00','reception','2025-11-15 09:50:39','','0000-00-00 00:00:00'),(0,0,2516,'2025-11-15','2026-02-14',2574,0,'','','0000-00-00','drashti','2025-11-15 10:11:15','','0000-00-00 00:00:00'),(0,0,2517,'2025-11-15','2026-02-14',2575,0,'','','0000-00-00','reception','2025-11-15 10:23:42','','0000-00-00 00:00:00'),(0,0,2518,'2025-11-15','2026-02-14',2576,0,'','','0000-00-00','drashti','2025-11-15 10:25:21','','0000-00-00 00:00:00'),(0,0,2519,'2025-11-15','2026-02-14',2577,0,'','','0000-00-00','manshi','2025-11-15 10:28:15','','0000-00-00 00:00:00'),(0,0,2520,'2025-11-15','2026-02-14',2578,0,'','','0000-00-00','reception','2025-11-15 10:29:03','','0000-00-00 00:00:00'),(0,0,2521,'2025-11-15','2026-02-14',2579,0,'','','0000-00-00','janvi','2025-11-15 10:29:58','','0000-00-00 00:00:00'),(0,0,2522,'2025-11-15','2026-02-14',2580,0,'','','0000-00-00','reception','2025-11-15 10:31:58','','0000-00-00 00:00:00'),(0,0,2523,'2025-11-15','2026-02-14',2581,0,'','','0000-00-00','drashti','2025-11-15 10:37:19','','0000-00-00 00:00:00'),(0,0,2524,'2025-11-15','2026-02-14',2582,0,'','','0000-00-00','reception','2025-11-15 10:48:56','','0000-00-00 00:00:00'),(0,0,2525,'2025-11-15','2026-02-14',2583,0,'','','0000-00-00','reception','2025-11-15 11:19:14','','0000-00-00 00:00:00'),(0,0,2526,'2025-11-15','2026-02-14',2584,0,'','','0000-00-00','reception','2025-11-15 11:21:15','','0000-00-00 00:00:00'),(0,0,2527,'2025-11-15','2026-02-14',2585,0,'','','0000-00-00','reception','2025-11-15 11:25:40','','0000-00-00 00:00:00'),(0,0,2528,'2025-11-15','2026-02-14',1616,0,'','','0000-00-00','manshi','2025-11-15 11:33:33','','0000-00-00 00:00:00'),(0,0,2529,'2025-11-15','2026-02-14',2586,0,'','','0000-00-00','manshi','2025-11-15 11:41:18','','0000-00-00 00:00:00'),(0,0,2530,'2025-11-15','2026-02-14',2587,0,'','','0000-00-00','janvi','2025-11-15 11:43:12','','0000-00-00 00:00:00'),(0,0,2531,'2025-11-15','2026-02-14',2588,0,'','','0000-00-00','drashti','2025-11-15 11:46:03','','0000-00-00 00:00:00'),(0,0,2532,'2025-11-15','2026-02-14',2589,0,'','','0000-00-00','reception','2025-11-15 12:00:13','','0000-00-00 00:00:00'),(0,0,2533,'2025-11-15','2026-02-14',2590,0,'','','0000-00-00','janvi','2025-11-15 12:25:19','','0000-00-00 00:00:00'),(0,0,2534,'2025-11-15','2026-02-14',2591,0,'','','0000-00-00','reception','2025-11-15 12:28:06','','0000-00-00 00:00:00'),(0,0,2535,'2025-11-15','2026-02-14',2592,0,'','','0000-00-00','drashti','2025-11-15 12:31:05','','0000-00-00 00:00:00'),(0,0,2536,'2025-11-15','2026-02-14',2593,0,'','','0000-00-00','reception','2025-11-15 12:50:16','','0000-00-00 00:00:00'),(0,0,2537,'2025-11-15','2026-02-14',2594,0,'','','0000-00-00','reception','2025-11-15 13:01:45','','0000-00-00 00:00:00'),(0,0,2538,'2025-11-15','2026-02-14',2595,0,'','','0000-00-00','reception','2025-11-15 13:10:48','','0000-00-00 00:00:00'),(0,0,2539,'2025-11-15','2026-02-14',2596,0,'','','0000-00-00','reception','2025-11-15 13:26:34','','0000-00-00 00:00:00'),(0,0,2540,'2025-11-15','2026-02-14',2597,0,'','','0000-00-00','drashti','2025-11-15 13:39:06','','0000-00-00 00:00:00'),(0,0,2541,'2025-11-15','2026-02-14',2598,0,'','','0000-00-00','priyanshi','2025-11-15 17:56:51','','0000-00-00 00:00:00'),(0,0,2542,'2025-11-15','2026-02-14',2599,0,'','','0000-00-00','janvi','2025-11-15 17:57:39','','0000-00-00 00:00:00'),(0,0,2543,'2025-11-15','2026-02-14',2600,0,'','','0000-00-00','priyanshi','2025-11-15 18:00:12','','0000-00-00 00:00:00'),(0,0,2544,'2025-11-15','2026-02-14',2601,0,'','','0000-00-00','reception','2025-11-15 18:10:09','','0000-00-00 00:00:00'),(0,0,2545,'2025-11-15','2026-02-14',2602,0,'','','0000-00-00','priyanshi','2025-11-15 18:27:18','','0000-00-00 00:00:00'),(0,0,2546,'2025-11-15','2026-02-14',2603,0,'','','0000-00-00','reception','2025-11-15 19:01:31','','0000-00-00 00:00:00'),(0,0,2547,'2025-11-15','2026-02-14',2604,0,'','','0000-00-00','reception','2025-11-15 19:23:16','','0000-00-00 00:00:00'),(0,0,2548,'2025-11-15','2026-02-14',2078,0,'','','0000-00-00','reception','2025-11-15 20:00:03','','0000-00-00 00:00:00'),(0,0,2549,'2025-11-16','2026-02-15',2605,0,'','','0000-00-00','manshi','2025-11-16 09:05:11','','0000-00-00 00:00:00'),(0,0,2550,'2025-11-16','2026-02-15',2606,0,'','','0000-00-00','manshi','2025-11-16 09:07:13','','0000-00-00 00:00:00'),(0,0,2551,'2025-11-16','2026-02-15',2609,0,'','','0000-00-00','manshi','2025-11-16 11:48:37','','0000-00-00 00:00:00'),(0,0,2552,'2025-11-16','2026-02-15',2610,0,'','','0000-00-00','manshi','2025-11-16 12:17:38','','0000-00-00 00:00:00'),(0,0,2553,'2025-11-17','2026-02-16',2613,0,'','','0000-00-00','reception','2025-11-17 08:58:53','','0000-00-00 00:00:00'),(0,0,2554,'2025-11-17','2026-02-16',2614,0,'','','0000-00-00','reception','2025-11-17 09:03:07','','0000-00-00 00:00:00'),(0,0,2555,'2025-11-17','2026-02-16',2615,0,'','','0000-00-00','reception','2025-11-17 09:42:59','','0000-00-00 00:00:00'),(0,0,2556,'2025-11-17','2026-02-16',2616,0,'','','0000-00-00','drashti','2025-11-17 10:16:14','','0000-00-00 00:00:00'),(0,0,2557,'2025-11-17','2026-02-16',2617,0,'','','0000-00-00','reception','2025-11-17 10:18:24','','0000-00-00 00:00:00'),(0,0,2558,'2025-11-17','2026-02-16',2618,0,'','','0000-00-00','reception','2025-11-17 10:35:59','','0000-00-00 00:00:00'),(0,0,2559,'2025-11-17','2026-02-16',2619,0,'','','0000-00-00','shweta','2025-11-17 11:02:39','','0000-00-00 00:00:00'),(0,0,2560,'2025-11-17','2026-02-16',2620,0,'','','0000-00-00','reception','2025-11-17 11:15:51','','0000-00-00 00:00:00'),(0,0,2561,'2025-11-17','2026-02-16',2621,0,'','','0000-00-00','drashti','2025-11-17 11:17:32','','0000-00-00 00:00:00'),(0,0,2562,'2025-11-17','2026-02-16',2622,0,'','','0000-00-00','reception','2025-11-17 11:25:00','','0000-00-00 00:00:00'),(0,0,2563,'2025-11-17','2026-02-16',2623,0,'','','0000-00-00','reception','2025-11-17 11:29:55','','0000-00-00 00:00:00'),(0,0,2564,'2025-11-17','2026-02-16',2624,0,'','','0000-00-00','reception','2025-11-17 11:35:52','','0000-00-00 00:00:00'),(0,0,2565,'2025-11-17','2026-02-16',2625,0,'','','0000-00-00','reception','2025-11-17 11:38:30','','0000-00-00 00:00:00'),(0,0,2566,'2025-11-17','2026-02-16',2626,0,'','','0000-00-00','drashti','2025-11-17 11:45:50','','0000-00-00 00:00:00'),(0,0,2567,'2025-11-17','2026-02-16',2627,0,'','','0000-00-00','drashti','2025-11-17 11:55:35','','0000-00-00 00:00:00'),(0,0,2568,'2025-11-17','2026-02-16',2628,0,'','','0000-00-00','janvi','2025-11-17 12:01:03','','0000-00-00 00:00:00'),(0,0,2569,'2025-11-17','2026-02-16',2629,0,'','','0000-00-00','drashti','2025-11-17 12:09:56','','0000-00-00 00:00:00'),(0,0,2570,'2025-11-17','2026-02-16',2630,0,'','','0000-00-00','reception','2025-11-17 12:37:58','','0000-00-00 00:00:00'),(0,0,2571,'2025-11-17','2026-02-16',2631,0,'','','0000-00-00','drashti','2025-11-17 12:44:59','','0000-00-00 00:00:00'),(0,0,2572,'2025-11-17','2026-02-16',2632,0,'','','0000-00-00','reception','2025-11-17 12:46:21','','0000-00-00 00:00:00'),(0,0,2573,'2025-11-17','2026-02-16',2634,0,'','','0000-00-00','reception','2025-11-17 13:03:43','','0000-00-00 00:00:00'),(0,0,2574,'2025-11-17','2026-02-16',2635,0,'','','0000-00-00','shweta','2025-11-17 14:07:09','','0000-00-00 00:00:00'),(0,0,2575,'2025-11-17','2026-02-16',2636,0,'','','0000-00-00','reception','2025-11-17 16:49:02','','0000-00-00 00:00:00'),(0,0,2576,'2025-11-17','2026-02-16',2637,0,'','','0000-00-00','janvi','2025-11-17 16:50:19','','0000-00-00 00:00:00'),(0,0,2577,'2025-11-17','2026-02-16',2638,0,'','','0000-00-00','reception','2025-11-17 16:54:30','','0000-00-00 00:00:00'),(0,0,2578,'2025-11-17','2026-02-16',2639,0,'','','0000-00-00','reception','2025-11-17 16:56:09','','0000-00-00 00:00:00'),(0,0,2579,'2025-11-17','2026-02-16',2640,0,'','','0000-00-00','reception','2025-11-17 17:01:34','','0000-00-00 00:00:00'),(0,0,2580,'2025-11-17','2026-02-16',2641,0,'','','0000-00-00','reception','2025-11-17 17:04:22','','0000-00-00 00:00:00'),(0,0,2581,'2025-11-17','2026-02-16',2642,0,'','','0000-00-00','manshi','2025-11-17 17:20:14','','0000-00-00 00:00:00'),(0,0,2582,'2025-11-17','2026-02-16',2643,0,'','','0000-00-00','manshi','2025-11-17 17:23:10','','0000-00-00 00:00:00'),(0,0,2583,'2025-11-17','2026-02-16',2644,0,'','','0000-00-00','reception','2025-11-17 17:36:35','','0000-00-00 00:00:00'),(0,0,2584,'2025-11-17','2026-02-16',2645,0,'','','0000-00-00','reception','2025-11-17 18:04:35','','0000-00-00 00:00:00'),(0,0,2585,'2025-11-17','2026-02-16',2646,0,'','','0000-00-00','manshi','2025-11-17 18:07:10','','0000-00-00 00:00:00'),(0,0,2586,'2025-11-17','2026-02-16',392,0,'','','0000-00-00','manshi','2025-11-17 18:12:04','','0000-00-00 00:00:00'),(0,0,2587,'2025-11-17','2026-02-16',2647,0,'','','0000-00-00','reception','2025-11-17 18:19:55','','0000-00-00 00:00:00'),(0,0,2588,'2025-11-17','2026-02-16',2648,0,'','','0000-00-00','drashti','2025-11-17 18:49:06','','0000-00-00 00:00:00'),(0,0,2589,'2025-11-17','2026-02-16',2649,0,'','','0000-00-00','reception','2025-11-17 18:56:44','','0000-00-00 00:00:00'),(0,0,2590,'2025-11-17','2026-02-16',2650,0,'','','0000-00-00','manshi','2025-11-17 19:06:42','','0000-00-00 00:00:00'),(0,0,2591,'2025-11-18','2026-02-17',2652,0,'','','0000-00-00','reception','2025-11-18 09:03:37','','0000-00-00 00:00:00'),(0,0,2592,'2025-11-18','2026-02-17',2653,0,'','','0000-00-00','reception','2025-11-18 09:10:56','','0000-00-00 00:00:00'),(0,0,2593,'2025-11-18','2026-02-17',2654,0,'','','0000-00-00','drashti','2025-11-18 09:41:50','','0000-00-00 00:00:00'),(0,0,2594,'2025-11-18','2026-02-17',2655,0,'','','0000-00-00','reception','2025-11-18 10:05:34','','0000-00-00 00:00:00'),(0,0,2595,'2025-11-18','2026-02-17',2656,0,'','','0000-00-00','reception','2025-11-18 10:11:36','','0000-00-00 00:00:00'),(0,0,2596,'2025-11-18','2026-02-17',2657,0,'','','0000-00-00','drashti','2025-11-18 10:20:36','','0000-00-00 00:00:00'),(0,0,2597,'2025-11-18','2026-02-17',2658,0,'','','0000-00-00','reception','2025-11-18 10:26:32','','0000-00-00 00:00:00'),(0,0,2598,'2025-11-18','2026-02-17',2659,0,'','','0000-00-00','manshi','2025-11-18 10:39:43','','0000-00-00 00:00:00'),(0,0,2599,'2025-11-18','2026-02-17',2661,0,'','','0000-00-00','reception','2025-11-18 11:33:59','','0000-00-00 00:00:00'),(0,0,2600,'2025-11-18','2026-02-17',2662,0,'','','0000-00-00','reception','2025-11-18 11:43:03','','0000-00-00 00:00:00'),(0,0,2601,'2025-11-18','2026-02-17',2663,0,'','','0000-00-00','drashti','2025-11-18 11:50:15','','0000-00-00 00:00:00'),(0,0,2602,'2025-11-18','2026-02-17',2664,0,'','','0000-00-00','reception','2025-11-18 11:51:17','','0000-00-00 00:00:00'),(0,0,2603,'2025-11-18','2026-02-17',2665,0,'','','0000-00-00','manshi','2025-11-18 12:06:25','','0000-00-00 00:00:00'),(0,0,2604,'2025-11-18','2026-02-17',2666,0,'','','0000-00-00','reception','2025-11-18 12:28:52','','0000-00-00 00:00:00'),(0,0,2605,'2025-11-18','2026-02-17',2667,0,'','','0000-00-00','reception','2025-11-18 12:35:41','','0000-00-00 00:00:00'),(0,0,2606,'2025-11-18','2026-02-17',2668,0,'','','0000-00-00','drashti','2025-11-18 12:36:07','','0000-00-00 00:00:00'),(0,0,2607,'2025-11-18','2026-02-17',2669,0,'','','0000-00-00','reception','2025-11-18 12:37:17','','0000-00-00 00:00:00'),(0,0,2608,'2025-11-18','2026-02-17',2670,0,'','','0000-00-00','drashti','2025-11-18 12:41:45','','0000-00-00 00:00:00'),(0,0,2609,'2025-11-18','2026-02-17',2671,0,'','','0000-00-00','reception','2025-11-18 12:42:21','','0000-00-00 00:00:00'),(0,0,2610,'2025-11-18','2026-02-17',2672,0,'','','0000-00-00','reception','2025-11-18 12:47:53','','0000-00-00 00:00:00'),(0,0,2611,'2025-11-18','2026-02-17',2674,0,'','','0000-00-00','drashti','2025-11-18 13:10:12','','0000-00-00 00:00:00'),(0,0,2612,'2025-11-18','2026-02-17',2677,0,'','','0000-00-00','reception','2025-11-18 13:56:49','','0000-00-00 00:00:00'),(0,0,2613,'2025-11-18','2026-02-17',2678,0,'','','0000-00-00','drashti','2025-11-18 14:00:27','','0000-00-00 00:00:00'),(0,0,2614,'2025-11-18','2026-02-17',2679,0,'','','0000-00-00','reception','2025-11-18 16:25:28','','0000-00-00 00:00:00'),(0,0,2615,'2025-11-18','2026-02-17',2680,0,'','','0000-00-00','reception','2025-11-18 16:53:50','','0000-00-00 00:00:00'),(0,0,2616,'2025-11-18','2026-02-17',2681,0,'','','0000-00-00','reception','2025-11-18 17:00:33','','0000-00-00 00:00:00'),(0,0,2617,'2025-11-18','2026-02-17',2682,0,'','','0000-00-00','reception','2025-11-18 17:05:18','','0000-00-00 00:00:00'),(0,0,2618,'2025-11-18','2026-02-17',2683,0,'','','0000-00-00','drashti','2025-11-18 17:27:17','','0000-00-00 00:00:00'),(0,0,2619,'2025-11-18','2026-02-17',2684,0,'','','0000-00-00','reception','2025-11-18 17:55:04','','0000-00-00 00:00:00'),(0,0,2620,'2025-11-18','2026-02-17',2686,0,'','','0000-00-00','manshi','2025-11-18 18:06:23','','0000-00-00 00:00:00'),(0,0,2621,'2025-11-18','2026-02-17',2687,0,'','','0000-00-00','janvi','2025-11-18 18:10:50','','0000-00-00 00:00:00'),(0,0,2622,'2025-11-18','2026-02-17',2688,0,'','','0000-00-00','reception','2025-11-18 18:14:39','','0000-00-00 00:00:00'),(0,0,2623,'2025-11-18','2026-02-17',2689,0,'','','0000-00-00','reception','2025-11-18 18:30:15','','0000-00-00 00:00:00'),(0,0,2624,'2025-11-18','2026-02-17',2690,0,'','','0000-00-00','reception','2025-11-18 18:44:30','','0000-00-00 00:00:00'),(0,0,2625,'2025-11-19','2026-02-18',2692,0,'','','0000-00-00','reception','2025-11-19 09:21:21','','0000-00-00 00:00:00'),(0,0,2626,'2025-11-19','2026-02-18',2694,0,'','','0000-00-00','reception','2025-11-19 09:32:48','','0000-00-00 00:00:00'),(0,0,2627,'2025-11-19','2026-02-18',2695,0,'','','0000-00-00','reception','2025-11-19 10:05:22','','0000-00-00 00:00:00'),(0,0,2628,'2025-11-19','2026-02-18',2696,0,'','','0000-00-00','reception','2025-11-19 10:11:43','','0000-00-00 00:00:00'),(0,0,2629,'2025-11-19','2026-02-18',2697,0,'','','0000-00-00','janvi','2025-11-19 10:12:38','','0000-00-00 00:00:00'),(0,0,2630,'2025-11-19','2026-02-18',2698,0,'','','0000-00-00','urvashi','2025-11-19 10:13:02','','0000-00-00 00:00:00'),(0,0,2631,'2025-11-19','2026-02-18',2700,0,'','','0000-00-00','janvi','2025-11-19 10:19:27','','0000-00-00 00:00:00'),(0,0,2632,'2025-11-19','2026-02-18',2701,0,'','','0000-00-00','reception','2025-11-19 10:27:34','','0000-00-00 00:00:00'),(0,0,2633,'2025-11-19','2026-02-18',2702,0,'','','0000-00-00','urvashi','2025-11-19 10:32:24','','0000-00-00 00:00:00'),(0,0,2634,'2025-11-19','2026-02-18',2703,0,'','','0000-00-00','janvi','2025-11-19 10:46:24','','0000-00-00 00:00:00'),(0,0,2635,'2025-11-19','2026-02-18',2704,0,'','','0000-00-00','reception','2025-11-19 10:48:59','','0000-00-00 00:00:00'),(0,0,2636,'2025-11-19','2026-02-18',2706,0,'','','0000-00-00','urvashi','2025-11-19 10:56:58','','0000-00-00 00:00:00'),(0,0,2637,'2025-11-19','2026-02-18',2707,0,'','','0000-00-00','urvashi','2025-11-19 11:01:48','','0000-00-00 00:00:00'),(0,0,2638,'2025-11-19','2026-02-18',2708,0,'','','0000-00-00','reception','2025-11-19 11:03:01','','0000-00-00 00:00:00'),(0,0,2639,'2025-11-19','2026-02-18',2709,0,'','','0000-00-00','urvashi','2025-11-19 11:05:15','','0000-00-00 00:00:00'),(0,0,2640,'2025-11-19','2026-02-18',2710,0,'','','0000-00-00','urvashi','2025-11-19 11:10:55','','0000-00-00 00:00:00'),(0,0,2641,'2025-11-19','2026-02-18',2711,0,'','','0000-00-00','urvashi','2025-11-19 11:24:35','','0000-00-00 00:00:00'),(0,0,2642,'2025-11-19','2026-02-18',2712,0,'','','0000-00-00','reception','2025-11-19 11:28:59','','0000-00-00 00:00:00'),(0,0,2643,'2025-11-19','2026-02-18',2713,0,'','','0000-00-00','janvi','2025-11-19 11:29:24','','0000-00-00 00:00:00'),(0,0,2644,'2025-11-19','2026-02-18',2714,0,'','','0000-00-00','manshi','2025-11-19 11:30:24','','0000-00-00 00:00:00'),(0,0,2645,'2025-11-19','2026-02-18',2715,0,'','','0000-00-00','manshi','2025-11-19 11:39:07','','0000-00-00 00:00:00'),(0,0,2646,'2025-11-19','2026-02-18',2716,0,'','','0000-00-00','urvashi','2025-11-19 11:44:14','','0000-00-00 00:00:00'),(0,0,2647,'2025-11-19','2026-02-18',2717,0,'','','0000-00-00','urvashi','2025-11-19 11:49:50','','0000-00-00 00:00:00'),(0,0,2648,'2025-11-19','2026-02-18',2718,0,'','','0000-00-00','urvashi','2025-11-19 11:51:33','','0000-00-00 00:00:00'),(0,0,2649,'2025-11-19','2026-02-18',2719,0,'','','0000-00-00','reception','2025-11-19 11:53:37','','0000-00-00 00:00:00'),(0,0,2650,'2025-11-19','2026-02-18',2720,0,'','','0000-00-00','reception','2025-11-19 11:56:18','','0000-00-00 00:00:00'),(0,0,2651,'2025-11-19','2026-02-18',2721,0,'','','0000-00-00','reception','2025-11-19 11:59:28','','0000-00-00 00:00:00'),(0,0,2652,'2025-11-19','2026-02-18',2722,0,'','','0000-00-00','janvi','2025-11-19 12:00:55','','0000-00-00 00:00:00'),(0,0,2653,'2025-11-19','2026-02-18',2723,0,'','','0000-00-00','manshi','2025-11-19 12:03:39','','0000-00-00 00:00:00'),(0,0,2654,'2025-11-19','2026-02-18',2724,0,'','','0000-00-00','urvashi','2025-11-19 12:04:19','','0000-00-00 00:00:00'),(0,0,2655,'2025-11-19','2026-02-18',2725,0,'','','0000-00-00','manshi','2025-11-19 12:07:31','','0000-00-00 00:00:00'),(0,0,2656,'2025-11-19','2026-02-18',2726,0,'','','0000-00-00','reception','2025-11-19 12:09:31','','0000-00-00 00:00:00'),(0,0,2657,'2025-11-19','2026-02-18',2727,0,'','','0000-00-00','reception','2025-11-19 12:11:32','','0000-00-00 00:00:00'),(0,0,2658,'2025-11-19','2026-02-18',2728,0,'','','0000-00-00','reception','2025-11-19 12:29:47','','0000-00-00 00:00:00'),(0,0,2659,'2025-11-19','2026-02-18',2729,0,'','','0000-00-00','janvi','2025-11-19 12:30:45','','0000-00-00 00:00:00'),(0,0,2660,'2025-11-19','2026-02-18',2730,0,'','','0000-00-00','reception','2025-11-19 12:39:49','','0000-00-00 00:00:00'),(0,0,2661,'2025-11-19','2026-02-18',2731,0,'','','0000-00-00','urvashi','2025-11-19 12:48:26','','0000-00-00 00:00:00'),(0,0,2662,'2025-11-19','2026-02-18',2384,0,'','','0000-00-00','janvi','2025-11-19 13:01:59','','0000-00-00 00:00:00'),(0,0,2663,'2025-11-19','2026-02-18',2732,0,'','','0000-00-00','reception','2025-11-19 16:39:07','','0000-00-00 00:00:00'),(0,0,2664,'2025-11-19','2026-02-18',2733,0,'','','0000-00-00','reception','2025-11-19 16:40:56','','0000-00-00 00:00:00'),(0,0,2665,'2025-11-19','2026-02-18',2734,0,'','','0000-00-00','reception','2025-11-19 16:42:10','','0000-00-00 00:00:00'),(0,0,2666,'2025-11-19','2026-02-18',2735,0,'','','0000-00-00','reception','2025-11-19 16:54:00','','0000-00-00 00:00:00'),(0,0,2667,'2025-11-19','2026-02-18',2736,0,'','','0000-00-00','reception','2025-11-19 16:57:59','','0000-00-00 00:00:00'),(0,0,2668,'2025-11-19','2026-02-18',2737,0,'','','0000-00-00','reception','2025-11-19 17:17:07','','0000-00-00 00:00:00'),(0,0,2669,'2025-11-19','2026-02-18',2738,0,'','','0000-00-00','reception','2025-11-19 17:21:35','','0000-00-00 00:00:00'),(0,0,2670,'2025-11-19','2026-02-18',2739,0,'','','0000-00-00','reception','2025-11-19 17:25:03','','0000-00-00 00:00:00'),(0,0,2671,'2025-11-19','2026-02-18',2740,0,'','','0000-00-00','drashti','2025-11-19 17:25:13','','0000-00-00 00:00:00'),(0,0,2672,'2025-11-19','2026-02-18',2741,0,'','','0000-00-00','shweta','2025-11-19 17:30:43','','0000-00-00 00:00:00'),(0,0,2673,'2025-11-19','2026-02-18',2742,0,'','','0000-00-00','drashti','2025-11-19 17:33:37','','0000-00-00 00:00:00'),(0,0,2674,'2025-11-19','2026-02-18',2743,0,'','','0000-00-00','urvashi','2025-11-19 17:36:41','','0000-00-00 00:00:00'),(0,0,2675,'2025-11-19','2026-02-18',2744,0,'','','0000-00-00','drashti','2025-11-19 17:37:31','','0000-00-00 00:00:00'),(0,0,2676,'2025-11-19','2026-02-18',2745,0,'','','0000-00-00','drashti','2025-11-19 17:43:05','','0000-00-00 00:00:00'),(0,0,2677,'2025-11-19','2026-02-18',2746,0,'','','0000-00-00','reception','2025-11-19 17:43:23','','0000-00-00 00:00:00'),(0,0,2678,'2025-11-19','2026-02-18',2747,0,'','','0000-00-00','reception','2025-11-19 17:49:45','','0000-00-00 00:00:00'),(0,0,2679,'2025-11-19','2026-02-18',2748,0,'','','0000-00-00','drashti','2025-11-19 17:55:12','','0000-00-00 00:00:00'),(0,0,2680,'2025-11-19','2026-02-18',2749,0,'','','0000-00-00','reception','2025-11-19 17:55:27','','0000-00-00 00:00:00'),(0,0,2681,'2025-11-19','2026-02-18',2750,0,'','','0000-00-00','urvashi','2025-11-19 17:56:58','','0000-00-00 00:00:00'),(0,0,2682,'2025-11-19','2026-02-18',2751,0,'','','0000-00-00','manshi','2025-11-19 17:57:26','','0000-00-00 00:00:00'),(0,0,2683,'2025-11-19','2026-02-18',2752,0,'','','0000-00-00','urvashi','2025-11-19 17:58:43','','0000-00-00 00:00:00'),(0,0,2684,'2025-11-19','2026-02-18',2753,0,'','','0000-00-00','drashti','2025-11-19 18:02:26','','0000-00-00 00:00:00'),(0,0,2685,'2025-11-19','2026-02-18',2754,0,'','','0000-00-00','reception','2025-11-19 18:04:10','','0000-00-00 00:00:00'),(0,0,2686,'2025-11-19','2026-02-18',2755,0,'','','0000-00-00','drashti','2025-11-19 18:09:25','','0000-00-00 00:00:00'),(0,0,2687,'2025-11-19','2026-02-18',2756,0,'','','0000-00-00','drashti','2025-11-19 18:11:50','','0000-00-00 00:00:00'),(0,0,2688,'2025-11-19','2026-02-18',2757,0,'','','0000-00-00','drashti','2025-11-19 18:16:47','','0000-00-00 00:00:00'),(0,0,2689,'2025-11-19','2026-02-18',2758,0,'','','0000-00-00','drashti','2025-11-19 18:22:41','','0000-00-00 00:00:00'),(0,0,2690,'2025-11-19','2026-02-18',2759,0,'','','0000-00-00','drashti','2025-11-19 18:26:17','','0000-00-00 00:00:00'),(0,0,2691,'2025-11-19','2026-02-18',2760,0,'','','0000-00-00','drashti','2025-11-19 18:28:54','','0000-00-00 00:00:00'),(0,0,2692,'2025-11-19','2026-02-18',2761,0,'','','0000-00-00','drashti','2025-11-19 18:32:16','','0000-00-00 00:00:00'),(0,0,2693,'2025-11-19','2026-02-18',2762,0,'','','0000-00-00','reception','2025-11-19 18:42:20','','0000-00-00 00:00:00'),(0,0,2694,'2025-11-19','2026-02-18',2763,0,'','','0000-00-00','drashti','2025-11-19 18:47:43','','0000-00-00 00:00:00'),(0,0,2695,'2025-11-19','2026-02-18',2764,0,'','','0000-00-00','urvashi','2025-11-19 18:48:52','','0000-00-00 00:00:00'),(0,0,2696,'2025-11-19','2026-02-18',2765,0,'','','0000-00-00','drashti','2025-11-19 18:54:31','','0000-00-00 00:00:00'),(0,0,2697,'2025-11-19','2026-02-18',2766,0,'','','0000-00-00','drashti','2025-11-19 18:56:32','','0000-00-00 00:00:00'),(0,0,2698,'2025-11-19','2026-02-18',2767,0,'','','0000-00-00','drashti','2025-11-19 18:58:50','','0000-00-00 00:00:00'),(0,0,2699,'2025-11-19','2026-02-18',2768,0,'','','0000-00-00','urvashi','2025-11-19 19:00:25','','0000-00-00 00:00:00'),(0,0,2700,'2025-11-19','2026-02-18',2769,0,'','','0000-00-00','drashti','2025-11-19 19:01:14','','0000-00-00 00:00:00'),(0,0,2701,'2025-11-19','2026-02-18',2770,0,'','','0000-00-00','manshi','2025-11-19 19:05:51','','0000-00-00 00:00:00'),(0,0,2702,'2025-11-19','2026-02-18',2771,0,'','','0000-00-00','drashti','2025-11-19 19:15:38','','0000-00-00 00:00:00'),(0,0,2703,'2025-11-19','2026-02-18',2772,0,'','','0000-00-00','drashti','2025-11-19 19:49:05','','0000-00-00 00:00:00'),(0,0,2704,'2025-11-19','2026-02-18',2773,0,'','','0000-00-00','drashti','2025-11-19 19:51:55','','0000-00-00 00:00:00'),(0,0,2705,'2025-11-20','2026-02-19',2774,0,'','','0000-00-00','reception','2025-11-20 08:46:52','','0000-00-00 00:00:00'),(0,0,2706,'2025-11-20','2026-02-19',2775,0,'','','0000-00-00','reception','2025-11-20 09:24:14','','0000-00-00 00:00:00'),(0,0,2707,'2025-11-20','2026-02-19',2777,0,'','','0000-00-00','drashti','2025-11-20 09:34:49','','0000-00-00 00:00:00'),(0,0,2708,'2025-11-20','2026-02-19',2651,0,'','','0000-00-00','drashti','2025-11-20 09:44:14','','0000-00-00 00:00:00'),(0,0,2709,'2025-11-20','2026-02-19',2778,0,'','','0000-00-00','reception','2025-11-20 09:50:32','','0000-00-00 00:00:00'),(0,0,2710,'2025-11-20','2026-02-19',2781,0,'','','0000-00-00','manshi','2025-11-20 10:09:28','','0000-00-00 00:00:00'),(0,0,2711,'2025-11-20','2026-02-19',2782,0,'','','0000-00-00','janvi','2025-11-20 10:09:33','','0000-00-00 00:00:00'),(0,0,2712,'2025-11-20','2026-02-19',2783,0,'','','0000-00-00','reception','2025-11-20 10:11:58','','0000-00-00 00:00:00'),(0,0,2713,'2025-11-20','2026-02-19',2784,0,'','','0000-00-00','reception','2025-11-20 10:18:24','','0000-00-00 00:00:00'),(0,0,2714,'2025-11-20','2026-02-19',2785,0,'','','0000-00-00','drashti','2025-11-20 10:19:44','','0000-00-00 00:00:00'),(0,0,2715,'2025-11-20','2026-02-19',2786,0,'','','0000-00-00','reception','2025-11-20 10:37:47','','0000-00-00 00:00:00'),(0,0,2716,'2025-11-20','2026-02-19',2787,0,'','','0000-00-00','reception','2025-11-20 10:43:15','','0000-00-00 00:00:00'),(0,0,2717,'2025-11-20','2026-02-19',2788,0,'','','0000-00-00','janvi','2025-11-20 10:47:47','','0000-00-00 00:00:00'),(0,0,2718,'2025-11-20','2026-02-19',2789,0,'','','0000-00-00','reception','2025-11-20 10:53:03','','0000-00-00 00:00:00'),(0,0,2719,'2025-11-20','2026-02-19',2790,0,'','','0000-00-00','janvi','2025-11-20 10:54:58','','0000-00-00 00:00:00'),(0,0,2720,'2025-11-20','2026-02-19',2791,0,'','','0000-00-00','janvi','2025-11-20 10:56:35','','0000-00-00 00:00:00'),(0,0,2721,'2025-11-20','2026-02-19',2792,0,'','','0000-00-00','drashti','2025-11-20 10:57:44','','0000-00-00 00:00:00'),(0,0,2722,'2025-11-20','2026-02-19',2793,0,'','','0000-00-00','manshi','2025-11-20 11:03:42','','0000-00-00 00:00:00'),(0,0,2723,'2025-11-20','2026-02-19',2794,0,'','','0000-00-00','drashti','2025-11-20 11:04:50','','0000-00-00 00:00:00'),(0,0,2724,'2025-11-20','2026-02-19',2795,0,'','','0000-00-00','drashti','2025-11-20 11:13:37','','0000-00-00 00:00:00'),(0,0,2725,'2025-11-20','2026-02-19',2796,0,'','','0000-00-00','drashti','2025-11-20 11:19:18','','0000-00-00 00:00:00'),(0,0,2726,'2025-11-20','2026-02-19',2797,0,'','','0000-00-00','janvi','2025-11-20 11:21:21','','0000-00-00 00:00:00'),(0,0,2727,'2025-11-20','2026-02-19',2798,0,'','','0000-00-00','janvi','2025-11-20 11:23:51','','0000-00-00 00:00:00'),(0,0,2728,'2025-11-20','2026-02-19',2499,0,'','','0000-00-00','drashti','2025-11-20 11:24:08','','0000-00-00 00:00:00'),(0,0,2729,'2025-11-20','2026-02-19',2799,0,'','','0000-00-00','reception','2025-11-20 11:33:07','','0000-00-00 00:00:00'),(0,0,2730,'2025-11-20','2026-02-19',2800,0,'','','0000-00-00','janvi','2025-11-20 11:39:07','','0000-00-00 00:00:00'),(0,0,2731,'2025-11-20','2026-02-19',2801,0,'','','0000-00-00','reception','2025-11-20 11:46:03','','0000-00-00 00:00:00'),(0,0,2732,'2025-11-20','2026-02-19',2802,0,'','','0000-00-00','drashti','2025-11-20 11:52:50','','0000-00-00 00:00:00'),(0,0,2733,'2025-11-20','2026-02-19',2803,0,'','','0000-00-00','janvi','2025-11-20 11:54:31','','0000-00-00 00:00:00'),(0,0,2734,'2025-11-20','2026-02-19',2804,0,'','','0000-00-00','drashti','2025-11-20 11:58:25','','0000-00-00 00:00:00'),(0,0,2735,'2025-11-20','2026-02-19',2805,0,'','','0000-00-00','reception','2025-11-20 12:01:40','','0000-00-00 00:00:00'),(0,0,2736,'2025-11-20','2026-02-19',2806,0,'','','0000-00-00','drashti','2025-11-20 12:06:25','','0000-00-00 00:00:00'),(0,0,2737,'2025-11-20','2026-02-19',2807,0,'','','0000-00-00','drashti','2025-11-20 12:12:20','','0000-00-00 00:00:00'),(0,0,2738,'2025-11-20','2026-02-19',2808,0,'','','0000-00-00','janvi','2025-11-20 12:12:28','','0000-00-00 00:00:00'),(0,0,2739,'2025-11-20','2026-02-19',2809,0,'','','0000-00-00','drashti','2025-11-20 12:14:21','','0000-00-00 00:00:00'),(0,0,2740,'2025-11-20','2026-02-19',2810,0,'','','0000-00-00','reception','2025-11-20 12:22:32','','0000-00-00 00:00:00'),(0,0,2741,'2025-11-20','2026-02-19',2811,0,'','','0000-00-00','janvi','2025-11-20 12:23:16','','0000-00-00 00:00:00'),(0,0,2742,'2025-11-20','2026-02-19',2812,0,'','','0000-00-00','drashti','2025-11-20 12:25:28','','0000-00-00 00:00:00'),(0,0,2743,'2025-11-20','2026-02-19',2813,0,'','','0000-00-00','janvi','2025-11-20 12:28:21','','0000-00-00 00:00:00'),(0,0,2744,'2025-11-20','2026-02-19',2814,0,'','','0000-00-00','priyanshi','2025-11-20 16:31:49','','0000-00-00 00:00:00'),(0,0,2745,'2025-11-20','2026-02-19',2815,0,'','','0000-00-00','priyanshi','2025-11-20 16:47:24','','0000-00-00 00:00:00'),(0,0,2746,'2025-11-20','2026-02-19',2816,0,'','','0000-00-00','reception','2025-11-20 16:52:03','','0000-00-00 00:00:00'),(0,0,2747,'2025-11-20','2026-02-19',2817,0,'','','0000-00-00','drashti','2025-11-20 16:54:21','','0000-00-00 00:00:00'),(0,0,2748,'2025-11-20','2026-02-19',2818,0,'','','0000-00-00','reception','2025-11-20 17:15:41','','0000-00-00 00:00:00'),(0,0,2749,'2025-11-20','2026-02-19',2819,0,'','','0000-00-00','reception','2025-11-20 17:17:53','','0000-00-00 00:00:00'),(0,0,2750,'2025-11-20','2026-02-19',2820,0,'','','0000-00-00','manshi','2025-11-20 17:27:53','','0000-00-00 00:00:00'),(0,0,2751,'2025-11-20','2026-02-19',2821,0,'','','0000-00-00','reception','2025-11-20 17:32:50','','0000-00-00 00:00:00'),(0,0,2752,'2025-11-20','2026-02-19',2822,0,'','','0000-00-00','reception','2025-11-20 17:39:41','','0000-00-00 00:00:00'),(0,0,2753,'2025-11-20','2026-02-19',2823,0,'','','0000-00-00','reception','2025-11-20 17:45:05','','0000-00-00 00:00:00'),(0,0,2754,'2025-11-20','2026-02-19',2824,0,'','','0000-00-00','drashti','2025-11-20 17:47:21','','0000-00-00 00:00:00'),(0,0,2755,'2025-11-20','2026-02-19',2825,0,'','','0000-00-00','janvi','2025-11-20 18:01:23','','0000-00-00 00:00:00'),(0,0,2756,'2025-11-20','2026-02-19',2826,0,'','','0000-00-00','janvi','2025-11-20 18:11:25','','0000-00-00 00:00:00'),(0,0,2757,'2025-11-20','2026-02-19',2827,0,'','','0000-00-00','manshi','2025-11-20 18:15:46','','0000-00-00 00:00:00'),(0,0,2758,'2025-11-20','2026-02-19',2828,0,'','','0000-00-00','drashti','2025-11-20 18:31:24','','0000-00-00 00:00:00'),(0,0,2759,'2025-11-20','2026-02-19',2829,0,'','','0000-00-00','reception','2025-11-20 18:37:41','','0000-00-00 00:00:00'),(0,0,2760,'2025-11-20','2026-02-19',2830,0,'','','0000-00-00','drashti','2025-11-20 18:43:41','','0000-00-00 00:00:00'),(0,0,2761,'2025-11-20','2026-02-19',2831,0,'','','0000-00-00','drashti','2025-11-20 18:56:10','','0000-00-00 00:00:00'),(0,0,2762,'2025-11-20','2026-02-19',2832,0,'','','0000-00-00','manshi','2025-11-20 19:02:27','','0000-00-00 00:00:00'),(0,0,2763,'2025-11-20','2026-02-19',2833,0,'','','0000-00-00','reception','2025-11-20 20:33:24','','0000-00-00 00:00:00'),(0,0,2764,'2025-11-21','2026-02-20',2241,0,'','','0000-00-00','priyanshi','2025-11-21 08:56:14','','0000-00-00 00:00:00'),(0,0,2765,'2025-11-21','2026-02-20',2835,0,'','','0000-00-00','priyanshi','2025-11-21 08:59:11','','0000-00-00 00:00:00'),(0,0,2766,'2025-11-21','2026-02-20',2836,0,'','','0000-00-00','drashti','2025-11-21 09:42:48','','0000-00-00 00:00:00'),(0,0,2767,'2025-11-21','2026-02-20',2504,0,'','','0000-00-00','janvi','2025-11-21 09:49:41','','0000-00-00 00:00:00'),(0,0,2768,'2025-11-21','2026-02-20',2837,0,'','','0000-00-00','drashti','2025-11-21 10:02:58','','0000-00-00 00:00:00'),(0,0,2769,'2025-11-21','2026-02-20',2838,0,'','','0000-00-00','janvi','2025-11-21 10:03:49','','0000-00-00 00:00:00'),(0,0,2770,'2025-11-21','2026-02-20',2839,0,'','','0000-00-00','drashti','2025-11-21 10:06:28','','0000-00-00 00:00:00'),(0,0,2771,'2025-11-21','2026-02-20',2840,0,'','','0000-00-00','urvashi','2025-11-21 10:17:31','','0000-00-00 00:00:00'),(0,0,2772,'2025-11-21','2026-02-20',2841,0,'','','0000-00-00','urvashi','2025-11-21 10:30:25','','0000-00-00 00:00:00'),(0,0,2773,'2025-11-21','2026-02-20',2842,0,'','','0000-00-00','drashti','2025-11-21 10:31:56','','0000-00-00 00:00:00'),(0,0,2774,'2025-11-21','2026-02-20',2843,0,'','','0000-00-00','drashti','2025-11-21 10:38:49','','0000-00-00 00:00:00'),(0,0,2775,'2025-11-21','2026-02-20',2844,0,'','','0000-00-00','urvashi','2025-11-21 10:39:44','','0000-00-00 00:00:00'),(0,0,2776,'2025-11-21','2026-02-20',2845,0,'','','0000-00-00','urvashi','2025-11-21 10:53:46','','0000-00-00 00:00:00'),(0,0,2777,'2025-11-21','2026-02-20',2846,0,'','','0000-00-00','urvashi','2025-11-21 10:54:35','','0000-00-00 00:00:00'),(0,0,2778,'2025-11-21','2026-02-20',2847,0,'','','0000-00-00','janvi','2025-11-21 11:11:11','','0000-00-00 00:00:00'),(0,0,2779,'2025-11-21','2026-02-20',2848,0,'','','0000-00-00','urvashi','2025-11-21 11:12:33','','0000-00-00 00:00:00'),(0,0,2780,'2025-11-21','2026-02-20',2849,0,'','','0000-00-00','urvashi','2025-11-21 11:20:09','','0000-00-00 00:00:00'),(0,0,2781,'2025-11-21','2026-02-20',2850,0,'','','0000-00-00','manshi','2025-11-21 11:24:43','','0000-00-00 00:00:00'),(0,0,2782,'2025-11-21','2026-02-20',2851,0,'','','0000-00-00','urvashi','2025-11-21 11:30:58','','0000-00-00 00:00:00'),(0,0,2783,'2025-11-21','2026-02-20',2852,0,'','','0000-00-00','drashti','2025-11-21 11:33:21','','0000-00-00 00:00:00'),(0,0,2784,'2025-11-21','2026-02-20',2853,0,'','','0000-00-00','drashti','2025-11-21 11:34:58','','0000-00-00 00:00:00'),(0,0,2785,'2025-11-21','2026-02-20',2854,0,'','','0000-00-00','drashti','2025-11-21 11:45:26','','0000-00-00 00:00:00'),(0,0,2786,'2025-11-21','2026-02-20',2855,0,'','','0000-00-00','drashti','2025-11-21 11:47:38','','0000-00-00 00:00:00'),(0,0,2787,'2025-11-21','2026-02-20',2506,0,'','','0000-00-00','drashti','2025-11-21 11:52:12','','0000-00-00 00:00:00'),(0,0,2788,'2025-11-21','2026-02-20',2856,0,'','','0000-00-00','drashti','2025-11-21 12:03:08','','0000-00-00 00:00:00'),(0,0,2789,'2025-11-21','2026-02-20',2857,0,'','','0000-00-00','urvashi','2025-11-21 12:11:21','','0000-00-00 00:00:00'),(0,0,2790,'2025-11-21','2026-02-20',2858,0,'','','0000-00-00','urvashi','2025-11-21 12:13:11','','0000-00-00 00:00:00'),(0,0,2791,'2025-11-21','2026-02-20',2859,0,'','','0000-00-00','urvashi','2025-11-21 12:18:56','','0000-00-00 00:00:00'),(0,0,2792,'2025-11-21','2026-02-20',2861,0,'','','0000-00-00','urvashi','2025-11-21 12:31:53','','0000-00-00 00:00:00'),(0,0,2793,'2025-11-21','2026-02-20',2862,0,'','','0000-00-00','urvashi','2025-11-21 12:37:09','','0000-00-00 00:00:00'),(0,0,2794,'2025-11-21','2026-02-20',2863,0,'','','0000-00-00','drashti','2025-11-21 12:45:51','','0000-00-00 00:00:00'),(0,0,2795,'2025-11-21','2026-02-20',2864,0,'','','0000-00-00','manshi','2025-11-21 13:02:57','','0000-00-00 00:00:00'),(0,0,2796,'2025-11-21','2026-02-20',2865,0,'','','0000-00-00','janvi','2025-11-21 13:13:09','','0000-00-00 00:00:00'),(0,0,2797,'2025-11-21','2026-02-20',2867,0,'','','0000-00-00','urvashi','2025-11-21 16:33:44','','0000-00-00 00:00:00'),(0,0,2798,'2025-11-21','2026-02-20',2868,0,'','','0000-00-00','urvashi','2025-11-21 16:34:51','','0000-00-00 00:00:00'),(0,0,2799,'2025-11-21','2026-02-20',2869,0,'','','0000-00-00','priyanshi','2025-11-21 16:47:50','','0000-00-00 00:00:00'),(0,0,2800,'2025-11-21','2026-02-20',2870,0,'','','0000-00-00','urvashi','2025-11-21 16:50:46','','0000-00-00 00:00:00'),(0,0,2801,'2025-11-21','2026-02-20',2871,0,'','','0000-00-00','priyanshi','2025-11-21 16:50:48','','0000-00-00 00:00:00'),(0,0,2802,'2025-11-21','2026-02-20',2871,0,'','','0000-00-00','janvi','2025-11-21 16:51:29','','0000-00-00 00:00:00'),(0,0,2803,'2025-11-21','2026-02-20',2872,0,'','','0000-00-00','urvashi','2025-11-21 17:07:07','','0000-00-00 00:00:00'),(0,0,2804,'2025-11-21','2026-02-20',2873,0,'','','0000-00-00','drashti','2025-11-21 17:10:03','','0000-00-00 00:00:00'),(0,0,2805,'2025-11-21','2026-02-20',2874,0,'','','0000-00-00','drashti','2025-11-21 17:21:53','','0000-00-00 00:00:00'),(0,0,2806,'2025-11-21','2026-02-20',2875,0,'','','0000-00-00','urvashi','2025-11-21 17:35:19','','0000-00-00 00:00:00'),(0,0,2807,'2025-11-21','2026-02-20',2876,0,'','','0000-00-00','janvi','2025-11-21 17:41:30','','0000-00-00 00:00:00'),(0,0,2808,'2025-11-21','2026-02-20',2877,0,'','','0000-00-00','drashti','2025-11-21 17:52:15','','0000-00-00 00:00:00'),(0,0,2809,'2025-11-21','2026-02-20',2878,0,'','','0000-00-00','urvashi','2025-11-21 17:56:59','','0000-00-00 00:00:00'),(0,0,2810,'2025-11-21','2026-02-20',2879,0,'','','0000-00-00','urvashi','2025-11-21 18:03:50','','0000-00-00 00:00:00'),(0,0,2811,'2025-11-21','2026-02-20',2880,0,'','','0000-00-00','drashti','2025-11-21 18:08:17','','0000-00-00 00:00:00'),(0,0,2812,'2025-11-21','2026-02-20',2881,0,'','','0000-00-00','drashti','2025-11-21 18:19:46','','0000-00-00 00:00:00'),(0,0,2813,'2025-11-21','2026-02-20',2882,0,'','','0000-00-00','urvashi','2025-11-21 18:28:40','','0000-00-00 00:00:00'),(0,0,2814,'2025-11-21','2026-02-20',2883,0,'','','0000-00-00','urvashi','2025-11-21 18:34:54','','0000-00-00 00:00:00'),(0,0,2815,'2025-11-21','2026-02-20',2884,0,'','','0000-00-00','janvi','2025-11-21 18:39:17','','0000-00-00 00:00:00'),(0,0,2816,'2025-11-21','2026-02-20',2885,0,'','','0000-00-00','drashti','2025-11-21 18:43:28','','0000-00-00 00:00:00'),(0,0,2817,'2025-11-21','2026-02-20',2886,0,'','','0000-00-00','manshi','2025-11-21 18:53:40','','0000-00-00 00:00:00'),(0,0,2818,'2025-11-21','2026-02-20',2887,0,'','','0000-00-00','drashti','2025-11-21 18:54:02','','0000-00-00 00:00:00'),(0,0,2819,'2025-11-21','2026-02-20',2888,0,'','','0000-00-00','drashti','2025-11-21 19:01:57','','0000-00-00 00:00:00'),(0,0,2820,'2025-11-21','2026-02-20',2889,0,'','','0000-00-00','urvashi','2025-11-21 19:29:14','','0000-00-00 00:00:00'),(0,0,2821,'2025-11-21','2026-02-20',2890,0,'','','0000-00-00','janvi','2025-11-21 19:41:25','','0000-00-00 00:00:00'),(0,0,2822,'2025-11-22','2026-02-21',2891,0,'','','0000-00-00','priyanshi','2025-11-22 09:10:02','','0000-00-00 00:00:00'),(0,0,2823,'2025-11-22','2026-02-21',2892,0,'','','0000-00-00','priyanshi','2025-11-22 09:23:09','','0000-00-00 00:00:00'),(0,0,2824,'2025-11-22','2026-02-21',2894,0,'','','0000-00-00','janvi','2025-11-22 09:50:50','','0000-00-00 00:00:00'),(0,0,2825,'2025-11-22','2026-02-21',2895,0,'','','0000-00-00','priyanshi','2025-11-22 10:00:56','','0000-00-00 00:00:00'),(0,0,2826,'2025-11-22','2026-02-21',2896,0,'','','0000-00-00','priyanshi','2025-11-22 10:03:44','','0000-00-00 00:00:00'),(0,0,2827,'2025-11-22','2026-02-21',2898,0,'','','0000-00-00','drashti','2025-11-22 10:15:22','','0000-00-00 00:00:00'),(0,0,2828,'2025-11-22','2026-02-21',2900,0,'','','0000-00-00','drashti','2025-11-22 10:35:01','','0000-00-00 00:00:00'),(0,0,2829,'2025-11-22','2026-02-21',2901,0,'','','0000-00-00','janvi','2025-11-22 10:35:15','','0000-00-00 00:00:00'),(0,0,2830,'2025-11-22','2026-02-21',2902,0,'','','0000-00-00','urvashi','2025-11-22 10:37:28','','0000-00-00 00:00:00'),(0,0,2831,'2025-11-22','2026-02-21',2903,0,'','','0000-00-00','priyanshi','2025-11-22 10:39:37','','0000-00-00 00:00:00'),(0,0,2832,'2025-11-22','2026-02-21',2904,0,'','','0000-00-00','priyanshi','2025-11-22 10:48:03','','0000-00-00 00:00:00'),(0,0,2833,'2025-11-22','2026-02-21',2905,0,'','','0000-00-00','drashti','2025-11-22 10:55:26','','0000-00-00 00:00:00'),(0,0,2834,'2025-11-22','2026-02-21',2906,0,'','','0000-00-00','priyanshi','2025-11-22 10:57:03','','0000-00-00 00:00:00'),(0,0,2835,'2025-11-22','2026-02-21',2907,0,'','','0000-00-00','priyanshi','2025-11-22 10:59:10','','0000-00-00 00:00:00'),(0,0,2836,'2025-11-22','2026-02-21',2908,0,'','','0000-00-00','priyanshi','2025-11-22 11:04:25','','0000-00-00 00:00:00'),(0,0,2837,'2025-11-22','2026-02-21',2909,0,'','','0000-00-00','urvashi','2025-11-22 11:17:24','','0000-00-00 00:00:00'),(0,0,2838,'2025-11-22','2026-02-21',2910,0,'','','0000-00-00','urvashi','2025-11-22 11:26:25','','0000-00-00 00:00:00'),(0,0,2839,'2025-11-22','2026-02-21',2911,0,'','','0000-00-00','janvi','2025-11-22 11:29:47','','0000-00-00 00:00:00'),(0,0,2840,'2025-11-22','2026-02-21',2912,0,'','','0000-00-00','drashti','2025-11-22 11:36:52','','0000-00-00 00:00:00'),(0,0,2841,'2025-11-22','2026-02-21',2913,0,'','','0000-00-00','urvashi','2025-11-22 11:43:23','','0000-00-00 00:00:00'),(0,0,2842,'2025-11-22','2026-02-21',2914,0,'','','0000-00-00','priyanshi','2025-11-22 11:49:35','','0000-00-00 00:00:00'),(0,0,2843,'2025-11-22','2026-02-21',2915,0,'','','0000-00-00','priyanshi','2025-11-22 11:51:51','','0000-00-00 00:00:00'),(0,0,2844,'2025-11-22','2026-02-21',2916,0,'','','0000-00-00','priyanshi','2025-11-22 11:54:51','','0000-00-00 00:00:00'),(0,0,2845,'2025-11-22','2026-02-21',2917,0,'','','0000-00-00','drashti','2025-11-22 11:59:50','','0000-00-00 00:00:00'),(0,0,2846,'2025-11-22','2026-02-21',2918,0,'','','0000-00-00','priyanshi','2025-11-22 12:04:59','','0000-00-00 00:00:00'),(0,0,2847,'2025-11-22','2026-02-21',2919,0,'','','0000-00-00','drashti','2025-11-22 12:05:43','','0000-00-00 00:00:00'),(0,0,2848,'2025-11-22','2026-02-21',2920,0,'','','0000-00-00','urvashi','2025-11-22 12:06:46','','0000-00-00 00:00:00'),(0,0,2849,'2025-11-22','2026-02-21',2921,0,'','','0000-00-00','priyanshi','2025-11-22 12:06:56','','0000-00-00 00:00:00'),(0,0,2850,'2025-11-22','2026-02-21',2922,0,'','','0000-00-00','urvashi','2025-11-22 12:19:43','','0000-00-00 00:00:00'),(0,0,2851,'2025-11-22','2026-02-21',2923,0,'','','0000-00-00','drashti','2025-11-22 12:27:15','','0000-00-00 00:00:00'),(0,0,2852,'2025-11-22','2026-02-21',2924,0,'','','0000-00-00','drashti','2025-11-22 12:30:22','','0000-00-00 00:00:00'),(0,0,2853,'2025-11-22','2026-02-21',2925,0,'','','0000-00-00','priyanshi','2025-11-22 12:44:00','','0000-00-00 00:00:00'),(0,0,2854,'2025-11-22','2026-02-21',2926,0,'','','0000-00-00','drashti','2025-11-22 12:47:59','','0000-00-00 00:00:00'),(0,0,2855,'2025-11-22','2026-02-21',2927,0,'','','0000-00-00','drashti','2025-11-22 13:02:19','','0000-00-00 00:00:00'),(0,0,2856,'2025-11-22','2026-02-21',2928,0,'','','0000-00-00','priyanshi','2025-11-22 13:08:16','','0000-00-00 00:00:00'),(0,0,2857,'2025-11-22','2026-02-21',2929,0,'','','0000-00-00','urvashi','2025-11-22 17:57:03','','0000-00-00 00:00:00'),(0,0,2858,'2025-11-22','2026-02-21',2930,0,'','','0000-00-00','janvi','2025-11-22 19:06:06','','0000-00-00 00:00:00'),(0,0,2859,'2025-11-23','2026-02-22',2931,0,'','','0000-00-00','drashti','2025-11-23 09:04:49','','0000-00-00 00:00:00'),(0,0,2860,'2025-11-23','2026-02-22',2934,0,'','','0000-00-00','drashti','2025-11-23 10:21:07','','0000-00-00 00:00:00'),(0,0,2861,'2025-11-23','2026-02-22',2935,0,'','','0000-00-00','drashti','2025-11-23 11:26:38','','0000-00-00 00:00:00'),(0,0,2862,'2025-11-23','2026-02-22',2936,0,'','','0000-00-00','drashti','2025-11-23 12:28:53','','0000-00-00 00:00:00'),(0,0,2863,'2025-11-24','2026-02-23',2941,0,'','','0000-00-00','reception','2025-11-24 09:12:45','','0000-00-00 00:00:00'),(0,0,2864,'2025-11-24','2026-02-23',2942,0,'','','0000-00-00','reception','2025-11-24 09:19:05','','0000-00-00 00:00:00'),(0,0,2865,'2025-11-24','2026-02-23',2943,0,'','','0000-00-00','reception','2025-11-24 09:25:37','','0000-00-00 00:00:00'),(0,0,2866,'2025-11-24','2026-02-23',2944,0,'','','0000-00-00','reception','2025-11-24 09:28:49','','0000-00-00 00:00:00'),(0,0,2867,'2025-11-24','2026-02-23',2945,0,'','','0000-00-00','drashti','2025-11-24 09:31:27','','0000-00-00 00:00:00'),(0,0,2868,'2025-11-24','2026-02-23',2946,0,'','','0000-00-00','reception','2025-11-24 09:31:45','','0000-00-00 00:00:00'),(0,0,2869,'2025-11-24','2026-02-23',2947,0,'','','0000-00-00','reception','2025-11-24 09:36:04','','0000-00-00 00:00:00'),(0,0,2870,'2025-11-24','2026-02-23',2948,0,'','','0000-00-00','reception','2025-11-24 09:38:49','','0000-00-00 00:00:00'),(0,0,2871,'2025-11-24','2026-02-23',2949,0,'','','0000-00-00','reception','2025-11-24 09:55:08','','0000-00-00 00:00:00'),(0,0,2872,'2025-11-24','2026-02-23',2676,0,'','','0000-00-00','drashti','2025-11-24 10:14:16','','0000-00-00 00:00:00'),(0,0,2873,'2025-11-24','2026-02-23',2950,0,'','','0000-00-00','reception','2025-11-24 10:14:38','','0000-00-00 00:00:00'),(0,0,2874,'2025-11-24','2026-02-23',2201,0,'','','0000-00-00','janvi','2025-11-24 10:14:51','','0000-00-00 00:00:00'),(0,0,2875,'2025-11-24','2026-02-23',2675,0,'','','0000-00-00','drashti','2025-11-24 10:15:12','','0000-00-00 00:00:00'),(0,0,2876,'2025-11-24','2026-02-23',2951,0,'','','0000-00-00','reception','2025-11-24 10:22:32','','0000-00-00 00:00:00'),(0,0,2877,'2025-11-24','2026-02-23',2952,0,'','','0000-00-00','drashti','2025-11-24 10:28:42','','0000-00-00 00:00:00'),(0,0,2878,'2025-11-24','2026-02-23',2953,0,'','','0000-00-00','reception','2025-11-24 10:29:27','','0000-00-00 00:00:00'),(0,0,2879,'2025-11-24','2026-02-23',2954,0,'','','0000-00-00','drashti','2025-11-24 10:33:08','','0000-00-00 00:00:00'),(0,0,2880,'2025-11-24','2026-02-23',2955,0,'','','0000-00-00','reception','2025-11-24 10:35:18','','0000-00-00 00:00:00'),(0,0,2881,'2025-11-24','2026-02-23',2957,0,'','','0000-00-00','janvi','2025-11-24 10:41:26','','0000-00-00 00:00:00'),(0,0,2882,'2025-11-24','2026-02-23',2958,0,'','','0000-00-00','reception','2025-11-24 10:55:18','','0000-00-00 00:00:00'),(0,0,2883,'2025-11-24','2026-02-23',2960,0,'','','0000-00-00','drashti','2025-11-24 11:07:13','','0000-00-00 00:00:00'),(0,0,2884,'2025-11-24','2026-02-23',2961,0,'','','0000-00-00','manshi','2025-11-24 11:12:57','','0000-00-00 00:00:00'),(0,0,2885,'2025-11-24','2026-02-23',2962,0,'','','0000-00-00','drashti','2025-11-24 11:14:24','','0000-00-00 00:00:00'),(0,0,2886,'2025-11-24','2026-02-23',2963,0,'','','0000-00-00','drashti','2025-11-24 11:22:15','','0000-00-00 00:00:00'),(0,0,2887,'2025-11-24','2026-02-23',2964,0,'','','0000-00-00','reception','2025-11-24 11:23:30','','0000-00-00 00:00:00'),(0,0,2888,'2025-11-24','2026-02-23',2965,0,'','','0000-00-00','janvi','2025-11-24 11:24:11','','0000-00-00 00:00:00'),(0,0,2889,'2025-11-24','2026-02-23',2966,0,'','','0000-00-00','janvi','2025-11-24 11:25:45','','0000-00-00 00:00:00'),(0,0,2890,'2025-11-24','2026-02-23',2967,0,'','','0000-00-00','reception','2025-11-24 11:28:53','','0000-00-00 00:00:00'),(0,0,2891,'2025-11-24','2026-02-23',2968,0,'','','0000-00-00','drashti','2025-11-24 11:29:12','','0000-00-00 00:00:00'),(0,0,2892,'2025-11-24','2026-02-23',2969,0,'','','0000-00-00','reception','2025-11-24 11:31:56','','0000-00-00 00:00:00'),(0,0,2893,'2025-11-24','2026-02-23',2970,0,'','','0000-00-00','drashti','2025-11-24 11:33:13','','0000-00-00 00:00:00'),(0,0,2894,'2025-11-24','2026-02-23',2971,0,'','','0000-00-00','drashti','2025-11-24 11:35:46','','0000-00-00 00:00:00'),(0,0,2895,'2025-11-24','2026-02-23',2972,0,'','','0000-00-00','reception','2025-11-24 11:40:00','','0000-00-00 00:00:00'),(0,0,2896,'2025-11-24','2026-02-23',2973,0,'','','0000-00-00','janvi','2025-11-24 11:40:33','','0000-00-00 00:00:00'),(0,0,2897,'2025-11-24','2026-02-23',2974,0,'','','0000-00-00','manshi','2025-11-24 11:47:23','','0000-00-00 00:00:00'),(0,0,2898,'2025-11-24','2026-02-23',2975,0,'','','0000-00-00','drashti','2025-11-24 11:48:11','','0000-00-00 00:00:00'),(0,0,2899,'2025-11-24','2026-02-23',2976,0,'','','0000-00-00','manshi','2025-11-24 11:56:19','','0000-00-00 00:00:00'),(0,0,2900,'2025-11-24','2026-02-23',2977,0,'','','0000-00-00','reception','2025-11-24 12:06:16','','0000-00-00 00:00:00'),(0,0,2901,'2025-11-24','2026-02-23',2978,0,'','','0000-00-00','reception','2025-11-24 12:12:00','','0000-00-00 00:00:00'),(0,0,2902,'2025-11-24','2026-02-23',2979,0,'','','0000-00-00','drashti','2025-11-24 12:17:32','','0000-00-00 00:00:00'),(0,0,2903,'2025-11-24','2026-02-23',2980,0,'','','0000-00-00','janvi','2025-11-24 12:19:43','','0000-00-00 00:00:00'),(0,0,2904,'2025-11-24','2026-02-23',2981,0,'','','0000-00-00','drashti','2025-11-24 12:21:57','','0000-00-00 00:00:00'),(0,0,2905,'2025-11-24','2026-02-23',2982,0,'','','0000-00-00','reception','2025-11-24 12:24:01','','0000-00-00 00:00:00'),(0,0,2906,'2025-11-24','2026-02-23',2983,0,'','','0000-00-00','janvi','2025-11-24 12:30:20','','0000-00-00 00:00:00'),(0,0,2907,'2025-11-24','2026-02-23',2984,0,'','','0000-00-00','manshi','2025-11-24 12:52:44','','0000-00-00 00:00:00'),(0,0,2908,'2025-11-24','2026-02-23',2986,0,'','','0000-00-00','reception','2025-11-24 12:59:51','','0000-00-00 00:00:00'),(0,0,2909,'2025-11-24','2026-02-23',2987,0,'','','0000-00-00','drashti','2025-11-24 13:05:03','','0000-00-00 00:00:00'),(0,0,2910,'2025-11-24','2026-02-23',2988,0,'','','0000-00-00','janvi','2025-11-24 13:15:14','','0000-00-00 00:00:00'),(0,0,2911,'2025-11-24','2026-02-23',2989,0,'','','0000-00-00','manshi','2025-11-24 13:19:36','','0000-00-00 00:00:00'),(0,0,2912,'2025-11-24','2026-02-23',2990,0,'','','0000-00-00','janvi','2025-11-24 13:23:24','','0000-00-00 00:00:00'),(0,0,2913,'2025-11-24','2026-02-23',2950,0,'','','0000-00-00','manshi','2025-11-24 13:43:06','','0000-00-00 00:00:00'),(0,0,2914,'2025-11-24','2026-02-23',2991,0,'','','0000-00-00','drashti','2025-11-24 13:46:31','','0000-00-00 00:00:00'),(0,0,2915,'2025-11-24','2026-02-23',2992,0,'','','0000-00-00','priyanshi','2025-11-24 15:18:43','','0000-00-00 00:00:00'),(0,0,2916,'2025-11-24','2026-02-23',2993,0,'','','0000-00-00','priyanshi','2025-11-24 15:55:25','','0000-00-00 00:00:00'),(0,0,2917,'2025-11-24','2026-02-23',2994,0,'','','0000-00-00','reception','2025-11-24 16:48:05','','0000-00-00 00:00:00'),(0,0,2918,'2025-11-24','2026-02-23',2995,0,'','','0000-00-00','reception','2025-11-24 17:18:57','','0000-00-00 00:00:00'),(0,0,2919,'2025-11-24','2026-02-23',2996,0,'','','0000-00-00','janvi','2025-11-24 17:20:32','','0000-00-00 00:00:00'),(0,0,2920,'2025-11-24','2026-02-23',2997,0,'','','0000-00-00','drashti','2025-11-24 17:51:40','','0000-00-00 00:00:00'),(0,0,2921,'2025-11-24','2026-02-23',2998,0,'','','0000-00-00','reception','2025-11-24 17:52:53','','0000-00-00 00:00:00'),(0,0,2922,'2025-11-24','2026-02-23',2999,0,'','','0000-00-00','reception','2025-11-24 18:09:32','','0000-00-00 00:00:00'),(0,0,2923,'2025-11-24','2026-02-23',3000,0,'','','0000-00-00','janvi','2025-11-24 18:18:45','','0000-00-00 00:00:00'),(0,0,2924,'2025-11-24','2026-02-23',3001,0,'','','0000-00-00','manshi','2025-11-24 18:23:19','','0000-00-00 00:00:00'),(0,0,2925,'2025-11-24','2026-02-23',3002,0,'','','0000-00-00','reception','2025-11-24 18:23:25','','0000-00-00 00:00:00'),(0,0,2926,'2025-11-24','2026-02-23',3003,0,'','','0000-00-00','manshi','2025-11-24 18:25:05','','0000-00-00 00:00:00'),(0,0,2927,'2025-11-24','2026-02-23',3004,0,'','','0000-00-00','drashti','2025-11-24 18:29:07','','0000-00-00 00:00:00'),(0,0,2928,'2025-11-24','2026-02-23',3005,0,'','','0000-00-00','drashti','2025-11-24 18:36:01','','0000-00-00 00:00:00'),(0,0,2929,'2025-11-24','2026-02-23',3006,0,'','','0000-00-00','drashti','2025-11-24 18:42:02','','0000-00-00 00:00:00'),(0,0,2930,'2025-11-24','2026-02-23',3007,0,'','','0000-00-00','janvi','2025-11-24 18:46:11','','0000-00-00 00:00:00'),(0,0,2931,'2025-11-24','2026-02-23',3008,0,'','','0000-00-00','reception','2025-11-24 18:53:30','','0000-00-00 00:00:00'),(0,0,2932,'2025-11-24','2026-02-23',3009,0,'','','0000-00-00','reception','2025-11-24 18:56:49','','0000-00-00 00:00:00'),(0,0,2933,'2025-11-24','2026-02-23',3010,0,'','','0000-00-00','manshi','2025-11-24 19:07:16','','0000-00-00 00:00:00'),(0,0,2934,'2025-11-24','2026-02-23',3011,0,'','','0000-00-00','janvi','2025-11-24 19:18:33','','0000-00-00 00:00:00'),(0,0,2935,'2025-11-24','2026-02-23',3012,0,'','','0000-00-00','drashti','2025-11-24 19:20:26','','0000-00-00 00:00:00'),(0,0,2936,'2025-11-24','2026-02-23',3013,0,'','','0000-00-00','reception','2025-11-24 19:29:20','','0000-00-00 00:00:00'),(0,0,2937,'2025-11-24','2026-02-23',3014,0,'','','0000-00-00','manshi','2025-11-24 19:33:47','','0000-00-00 00:00:00'),(0,0,2938,'2025-11-24','2026-02-23',3015,0,'','','0000-00-00','janvi','2025-11-24 19:35:54','','0000-00-00 00:00:00'),(0,0,2939,'2025-11-24','2026-02-23',3016,0,'','','0000-00-00','manshi','2025-11-24 19:49:53','','0000-00-00 00:00:00'),(0,0,2940,'2025-11-24','2026-02-23',3017,0,'','','0000-00-00','reception','2025-11-24 19:52:59','','0000-00-00 00:00:00'),(0,0,2941,'2025-11-24','2026-02-23',3019,0,'','','0000-00-00','drashti','2025-11-24 20:49:31','','0000-00-00 00:00:00'),(0,0,2942,'2025-11-25','2026-02-24',3020,0,'','','0000-00-00','reception','2025-11-25 09:05:47','','0000-00-00 00:00:00'),(0,0,2943,'2025-11-25','2026-02-24',3022,0,'','','0000-00-00','drashti','2025-11-25 10:07:01','','0000-00-00 00:00:00'),(0,0,2944,'2025-11-25','2026-02-24',3023,0,'','','0000-00-00','manshi','2025-11-25 10:22:37','','0000-00-00 00:00:00'),(0,0,2945,'2025-11-25','2026-02-24',3024,0,'','','0000-00-00','drashti','2025-11-25 10:30:59','','0000-00-00 00:00:00'),(0,0,2946,'2025-11-25','2026-02-24',3025,0,'','','0000-00-00','drashti','2025-11-25 10:34:28','','0000-00-00 00:00:00'),(0,0,2947,'2025-11-25','2026-02-24',3026,0,'','','0000-00-00','janvi','2025-11-25 10:41:03','','0000-00-00 00:00:00'),(0,0,2948,'2025-11-25','2026-02-24',3027,0,'','','0000-00-00','janvi','2025-11-25 10:44:25','','0000-00-00 00:00:00'),(0,0,2949,'2025-11-25','2026-02-24',3028,0,'','','0000-00-00','reception','2025-11-25 11:04:41','','0000-00-00 00:00:00'),(0,0,2950,'2025-11-25','2026-02-24',3029,0,'','','0000-00-00','drashti','2025-11-25 11:05:35','','0000-00-00 00:00:00'),(0,0,2951,'2025-11-25','2026-02-24',3030,0,'','','0000-00-00','drashti','2025-11-25 11:08:58','','0000-00-00 00:00:00'),(0,0,2952,'2025-11-25','2026-02-24',3031,0,'','','0000-00-00','drashti','2025-11-25 11:10:31','','0000-00-00 00:00:00'),(0,0,2953,'2025-11-25','2026-02-24',3032,0,'','','0000-00-00','janvi','2025-11-25 11:10:32','','0000-00-00 00:00:00'),(0,0,2954,'2025-11-25','2026-02-24',3033,0,'','','0000-00-00','janvi','2025-11-25 11:11:46','','0000-00-00 00:00:00'),(0,0,2955,'2025-11-25','2026-02-24',3034,0,'','','0000-00-00','reception','2025-11-25 11:13:34','','0000-00-00 00:00:00'),(0,0,2956,'2025-11-25','2026-02-24',3035,0,'','','0000-00-00','drashti','2025-11-25 11:13:39','','0000-00-00 00:00:00'),(0,0,2957,'2025-11-25','2026-02-24',3036,0,'','','0000-00-00','janvi','2025-11-25 11:14:04','','0000-00-00 00:00:00'),(0,0,2958,'2025-11-25','2026-02-24',3037,0,'','','0000-00-00','reception','2025-11-25 11:16:51','','0000-00-00 00:00:00'),(0,0,2959,'2025-11-25','2026-02-24',3038,0,'','','0000-00-00','janvi','2025-11-25 11:19:19','','0000-00-00 00:00:00'),(0,0,2960,'2025-11-25','2026-02-24',3039,0,'','','0000-00-00','reception','2025-11-25 11:23:37','','0000-00-00 00:00:00'),(0,0,2961,'2025-11-25','2026-02-24',3040,0,'','','0000-00-00','drashti','2025-11-25 11:29:02','','0000-00-00 00:00:00'),(0,0,2962,'2025-11-25','2026-02-24',3041,0,'','','0000-00-00','reception','2025-11-25 11:34:51','','0000-00-00 00:00:00'),(0,0,2963,'2025-11-25','2026-02-24',3042,0,'','','0000-00-00','drashti','2025-11-25 11:35:45','','0000-00-00 00:00:00'),(0,0,2964,'2025-11-25','2026-02-24',3043,0,'','','0000-00-00','reception','2025-11-25 11:41:05','','0000-00-00 00:00:00'),(0,0,2965,'2025-11-25','2026-02-24',3044,0,'','','0000-00-00','reception','2025-11-25 11:42:48','','0000-00-00 00:00:00'),(0,0,2966,'2025-11-25','2026-02-24',3045,0,'','','0000-00-00','drashti','2025-11-25 11:46:31','','0000-00-00 00:00:00'),(0,0,2967,'2025-11-25','2026-02-24',2607,0,'','','0000-00-00','drashti','2025-11-25 11:58:23','','0000-00-00 00:00:00'),(0,0,2968,'2025-11-25','2026-02-24',3046,0,'','','0000-00-00','reception','2025-11-25 12:03:31','','0000-00-00 00:00:00'),(0,0,2969,'2025-11-25','2026-02-24',3047,0,'','','0000-00-00','reception','2025-11-25 12:25:28','','0000-00-00 00:00:00'),(0,0,2970,'2025-11-25','2026-02-24',3048,0,'','','0000-00-00','reception','2025-11-25 12:28:50','','0000-00-00 00:00:00'),(0,0,2971,'2025-11-25','2026-02-24',3049,0,'','','0000-00-00','reception','2025-11-25 12:54:22','','0000-00-00 00:00:00'),(0,0,2972,'2025-11-25','2026-02-24',3050,0,'','','0000-00-00','reception','2025-11-25 13:27:05','','0000-00-00 00:00:00'),(0,0,2973,'2025-11-25','2026-02-24',3051,0,'','','0000-00-00','drashti','2025-11-25 17:07:22','','0000-00-00 00:00:00'),(0,0,2974,'2025-11-25','2026-02-24',3052,0,'','','0000-00-00','reception','2025-11-25 17:07:22','','0000-00-00 00:00:00'),(0,0,2975,'2025-11-25','2026-02-24',3053,0,'','','0000-00-00','janvi','2025-11-25 17:14:38','','0000-00-00 00:00:00'),(0,0,2976,'2025-11-25','2026-02-24',3054,0,'','','0000-00-00','reception','2025-11-25 17:41:02','','0000-00-00 00:00:00'),(0,0,2977,'2025-11-25','2026-02-24',3055,0,'','','0000-00-00','drashti','2025-11-25 17:42:12','','0000-00-00 00:00:00'),(0,0,2978,'2025-11-25','2026-02-24',3056,0,'','','0000-00-00','janvi','2025-11-25 17:47:35','','0000-00-00 00:00:00'),(0,0,2979,'2025-11-25','2026-02-24',3057,0,'','','0000-00-00','janvi','2025-11-25 17:49:20','','0000-00-00 00:00:00'),(0,0,2980,'2025-11-25','2026-02-24',3058,0,'','','0000-00-00','reception','2025-11-25 17:49:30','','0000-00-00 00:00:00'),(0,0,2981,'2025-11-25','2026-02-24',3059,0,'','','0000-00-00','drashti','2025-11-25 17:50:12','','0000-00-00 00:00:00'),(0,0,2982,'2025-11-25','2026-02-24',3060,0,'','','0000-00-00','reception','2025-11-25 17:52:54','','0000-00-00 00:00:00'),(0,0,2983,'2025-11-25','2026-02-24',3061,0,'','','0000-00-00','reception','2025-11-25 17:58:35','','0000-00-00 00:00:00'),(0,0,2984,'2025-11-25','2026-02-24',3062,0,'','','0000-00-00','drashti','2025-11-25 17:59:28','','0000-00-00 00:00:00'),(0,0,2985,'2025-11-25','2026-02-24',3063,0,'','','0000-00-00','reception','2025-11-25 18:04:01','','0000-00-00 00:00:00'),(0,0,2986,'2025-11-25','2026-02-24',3064,0,'','','0000-00-00','reception','2025-11-25 18:05:17','','0000-00-00 00:00:00'),(0,0,2987,'2025-11-25','2026-02-24',3065,0,'','','0000-00-00','reception','2025-11-25 18:07:37','','0000-00-00 00:00:00'),(0,0,2988,'2025-11-25','2026-02-24',3066,0,'','','0000-00-00','manshi','2025-11-25 18:10:15','','0000-00-00 00:00:00'),(0,0,2989,'2025-11-25','2026-02-24',3067,0,'','','0000-00-00','reception','2025-11-25 18:10:53','','0000-00-00 00:00:00'),(0,0,2990,'2025-11-25','2026-02-24',3068,0,'','','0000-00-00','drashti','2025-11-25 18:16:57','','0000-00-00 00:00:00'),(0,0,2991,'2025-11-25','2026-02-24',3069,0,'','','0000-00-00','janvi','2025-11-25 18:29:51','','0000-00-00 00:00:00'),(0,0,2992,'2025-11-25','2026-02-24',3070,0,'','','0000-00-00','reception','2025-11-25 18:32:09','','0000-00-00 00:00:00'),(0,0,2993,'2025-11-25','2026-02-24',3071,0,'','','0000-00-00','manshi','2025-11-25 18:43:08','','0000-00-00 00:00:00'),(0,0,2994,'2025-11-25','2026-02-24',3072,0,'','','0000-00-00','manshi','2025-11-25 18:45:37','','0000-00-00 00:00:00'),(0,0,2995,'2025-11-25','2026-02-24',3073,0,'','','0000-00-00','reception','2025-11-25 18:54:18','','0000-00-00 00:00:00'),(0,0,2996,'2025-11-25','2026-02-24',3074,0,'','','0000-00-00','reception','2025-11-25 18:56:16','','0000-00-00 00:00:00'),(0,0,2997,'2025-11-25','2026-02-24',3075,0,'','','0000-00-00','manshi','2025-11-25 19:00:28','','0000-00-00 00:00:00'),(0,0,2998,'2025-11-25','2026-02-24',3076,0,'','','0000-00-00','reception','2025-11-25 19:05:36','','0000-00-00 00:00:00'),(0,0,2999,'2025-11-25','2026-02-24',3078,0,'','','0000-00-00','janvi','2025-11-25 20:05:07','','0000-00-00 00:00:00'),(0,0,3000,'2025-11-26','2026-02-25',3079,0,'','','0000-00-00','reception','2025-11-26 08:49:46','','0000-00-00 00:00:00'),(0,0,3001,'2025-11-26','2026-02-25',3080,0,'','','0000-00-00','reception','2025-11-26 08:56:51','','0000-00-00 00:00:00'),(0,0,3002,'2025-11-26','2026-02-25',3081,0,'','','0000-00-00','reception','2025-11-26 09:36:55','','0000-00-00 00:00:00'),(0,0,3003,'2025-11-26','2026-02-25',3082,0,'','','0000-00-00','reception','2025-11-26 09:42:22','','0000-00-00 00:00:00'),(0,0,3004,'2025-11-26','2026-02-25',3083,0,'','','0000-00-00','reception','2025-11-26 09:44:15','','0000-00-00 00:00:00'),(0,0,3005,'2025-11-26','2026-02-25',3084,0,'','','0000-00-00','janvi','2025-11-26 10:00:57','','0000-00-00 00:00:00'),(0,0,3006,'2025-11-26','2026-02-25',3086,0,'','','0000-00-00','drashti','2025-11-26 10:53:57','','0000-00-00 00:00:00'),(0,0,3007,'2025-11-26','2026-02-25',3087,0,'','','0000-00-00','reception','2025-11-26 10:55:22','','0000-00-00 00:00:00'),(0,0,3008,'2025-11-26','2026-02-25',3088,0,'','','0000-00-00','drashti','2025-11-26 10:58:08','','0000-00-00 00:00:00'),(0,0,3009,'2025-11-26','2026-02-25',3089,0,'','','0000-00-00','reception','2025-11-26 11:01:41','','0000-00-00 00:00:00'),(0,0,3010,'2025-11-26','2026-02-25',3090,0,'','','0000-00-00','reception','2025-11-26 11:09:49','','0000-00-00 00:00:00'),(0,0,3011,'2025-11-26','2026-02-25',3091,0,'','','0000-00-00','reception','2025-11-26 11:13:41','','0000-00-00 00:00:00'),(0,0,3012,'2025-11-26','2026-02-25',3092,0,'','','0000-00-00','drashti','2025-11-26 11:18:13','','0000-00-00 00:00:00'),(0,0,3013,'2025-11-26','2026-02-25',3093,0,'','','0000-00-00','reception','2025-11-26 11:18:39','','0000-00-00 00:00:00'),(0,0,3014,'2025-11-26','2026-02-25',3094,0,'','','0000-00-00','drashti','2025-11-26 11:24:01','','0000-00-00 00:00:00'),(0,0,3015,'2025-11-26','2026-02-25',3095,0,'','','0000-00-00','reception','2025-11-26 11:26:29','','0000-00-00 00:00:00'),(0,0,3016,'2025-11-26','2026-02-25',3096,0,'','','0000-00-00','reception','2025-11-26 11:39:41','','0000-00-00 00:00:00'),(0,0,3017,'2025-11-26','2026-02-25',3097,0,'','','0000-00-00','reception','2025-11-26 11:42:21','','0000-00-00 00:00:00'),(0,0,3018,'2025-11-26','2026-02-25',3098,0,'','','0000-00-00','janvi','2025-11-26 11:45:07','','0000-00-00 00:00:00'),(0,0,3019,'2025-11-26','2026-02-25',3099,0,'','','0000-00-00','drashti','2025-11-26 11:46:41','','0000-00-00 00:00:00'),(0,0,3020,'2025-11-26','2026-02-25',3100,0,'','','0000-00-00','drashti','2025-11-26 11:48:09','','0000-00-00 00:00:00'),(0,0,3021,'2025-11-26','2026-02-25',3101,0,'','','0000-00-00','janvi','2025-11-26 11:50:24','','0000-00-00 00:00:00'),(0,0,3022,'2025-11-26','2026-02-25',3102,0,'','','0000-00-00','reception','2025-11-26 11:52:54','','0000-00-00 00:00:00'),(0,0,3023,'2025-11-26','2026-02-25',3103,0,'','','0000-00-00','reception','2025-11-26 11:55:12','','0000-00-00 00:00:00'),(0,0,3024,'2025-11-26','2026-02-25',3104,0,'','','0000-00-00','drashti','2025-11-26 12:00:04','','0000-00-00 00:00:00'),(0,0,3025,'2025-11-26','2026-02-25',3105,0,'','','0000-00-00','drashti','2025-11-26 12:04:43','','0000-00-00 00:00:00'),(0,0,3026,'2025-11-26','2026-02-25',3106,0,'','','0000-00-00','janvi','2025-11-26 12:14:47','','0000-00-00 00:00:00'),(0,0,3027,'2025-11-26','2026-02-25',3107,0,'','','0000-00-00','janvi','2025-11-26 12:22:43','','0000-00-00 00:00:00'),(0,0,3028,'2025-11-26','2026-02-25',3108,0,'','','0000-00-00','drashti','2025-11-26 12:25:12','','0000-00-00 00:00:00'),(0,0,3029,'2025-11-26','2026-02-25',3109,0,'','','0000-00-00','reception','2025-11-26 12:48:17','','0000-00-00 00:00:00'),(0,0,3030,'2025-11-26','2026-02-25',3110,0,'','','0000-00-00','janvi','2025-11-26 13:50:56','','0000-00-00 00:00:00'),(0,0,3031,'2025-11-26','2026-02-25',3112,0,'','','0000-00-00','priyanshi','2025-11-26 15:25:32','','0000-00-00 00:00:00'),(0,0,3032,'2025-11-26','2026-02-25',3113,0,'','','0000-00-00','reception','2025-11-26 16:41:55','','0000-00-00 00:00:00'),(0,0,3033,'2025-11-26','2026-02-25',3114,0,'','','0000-00-00','reception','2025-11-26 17:08:28','','0000-00-00 00:00:00'),(0,0,3034,'2025-11-26','2026-02-25',3115,0,'','','0000-00-00','janvi','2025-11-26 17:31:59','','0000-00-00 00:00:00'),(0,0,3035,'2025-11-26','2026-02-25',3116,0,'','','0000-00-00','janvi','2025-11-26 17:42:38','','0000-00-00 00:00:00'),(0,0,3036,'2025-11-26','2026-02-25',3117,0,'','','0000-00-00','janvi','2025-11-26 17:45:59','','0000-00-00 00:00:00'),(0,0,3037,'2025-11-26','2026-02-25',3118,0,'','','0000-00-00','janvi','2025-11-26 17:52:04','','0000-00-00 00:00:00'),(0,0,3038,'2025-11-26','2026-02-25',3119,0,'','','0000-00-00','reception','2025-11-26 17:54:31','','0000-00-00 00:00:00'),(0,0,3039,'2025-11-26','2026-02-25',3120,0,'','','0000-00-00','reception','2025-11-26 17:57:21','','0000-00-00 00:00:00'),(0,0,3040,'2025-11-26','2026-02-25',3121,0,'','','0000-00-00','reception','2025-11-26 18:11:27','','0000-00-00 00:00:00'),(0,0,3041,'2025-11-26','2026-02-25',3122,0,'','','0000-00-00','janvi','2025-11-26 18:14:42','','0000-00-00 00:00:00'),(0,0,3042,'2025-11-26','2026-02-25',3123,0,'','','0000-00-00','reception','2025-11-26 18:18:41','','0000-00-00 00:00:00'),(0,0,3043,'2025-11-26','2026-02-25',3124,0,'','','0000-00-00','drashti','2025-11-26 18:24:21','','0000-00-00 00:00:00'),(0,0,3044,'2025-11-26','2026-02-25',3125,0,'','','0000-00-00','janvi','2025-11-26 18:31:13','','0000-00-00 00:00:00'),(0,0,3045,'2025-11-26','2026-02-25',3126,0,'','','0000-00-00','drashti','2025-11-26 18:47:48','','0000-00-00 00:00:00'),(0,0,3046,'2025-11-26','2026-02-25',3127,0,'','','0000-00-00','drashti','2025-11-26 18:53:52','','0000-00-00 00:00:00'),(0,0,3047,'2025-11-26','2026-02-25',3128,0,'','','0000-00-00','drashti','2025-11-26 18:56:27','','0000-00-00 00:00:00'),(0,0,3048,'2025-11-26','2026-02-25',3129,0,'','','0000-00-00','drashti','2025-11-26 18:59:51','','0000-00-00 00:00:00'),(0,0,3049,'2025-11-26','2026-02-25',3130,0,'','','0000-00-00','reception','2025-11-26 19:01:06','','0000-00-00 00:00:00'),(0,0,3050,'2025-11-26','2026-02-25',3131,0,'','','0000-00-00','janvi','2025-11-26 19:04:18','','0000-00-00 00:00:00'),(0,0,3051,'2025-11-26','2026-02-25',3132,0,'','','0000-00-00','drashti','2025-11-26 19:11:11','','0000-00-00 00:00:00'),(0,0,3052,'2025-11-26','2026-02-25',3133,0,'','','0000-00-00','reception','2025-11-26 19:12:49','','0000-00-00 00:00:00'),(0,0,3053,'2025-11-26','2026-02-25',3134,0,'','','0000-00-00','janvi','2025-11-26 19:17:10','','0000-00-00 00:00:00'),(0,0,3054,'2025-11-26','2026-02-25',3135,0,'','','0000-00-00','drashti','2025-11-26 19:20:11','','0000-00-00 00:00:00'),(0,0,3055,'2025-11-26','2026-02-25',3136,0,'','','0000-00-00','manshi','2025-11-26 19:28:42','','0000-00-00 00:00:00'),(0,0,3056,'2025-11-26','2026-02-25',3137,0,'','','0000-00-00','drashti','2025-11-26 19:29:32','','0000-00-00 00:00:00'),(0,0,3057,'2025-11-26','2026-02-25',3138,0,'','','0000-00-00','drashti','2025-11-26 19:47:07','','0000-00-00 00:00:00'),(0,0,3058,'2025-11-26','2026-02-25',3139,0,'','','0000-00-00','janvi','2025-11-26 19:53:17','','0000-00-00 00:00:00'),(0,0,3059,'2025-11-26','2026-02-25',3140,0,'','','0000-00-00','drashti','2025-11-26 19:55:15','','0000-00-00 00:00:00'),(0,0,3060,'2025-11-27','2026-02-26',3144,0,'','','0000-00-00','reception','2025-11-27 08:45:37','','0000-00-00 00:00:00'),(0,0,3061,'2025-11-27','2026-02-26',3145,0,'','','0000-00-00','reception','2025-11-27 08:48:30','','0000-00-00 00:00:00'),(0,0,3062,'2025-11-27','2026-02-26',3146,0,'','','0000-00-00','reception','2025-11-27 08:50:28','','0000-00-00 00:00:00'),(0,0,3063,'2025-11-27','2026-02-26',3147,0,'','','0000-00-00','reception','2025-11-27 08:52:49','','0000-00-00 00:00:00'),(0,0,3064,'2025-11-27','2026-02-26',3148,0,'','','0000-00-00','reception','2025-11-27 09:13:19','','0000-00-00 00:00:00'),(0,0,3065,'2025-11-27','2026-02-26',3150,0,'','','0000-00-00','drashti','2025-11-27 09:43:47','','0000-00-00 00:00:00'),(0,0,3066,'2025-11-27','2026-02-26',3152,0,'','','0000-00-00','reception','2025-11-27 09:53:29','','0000-00-00 00:00:00'),(0,0,3067,'2025-11-27','2026-02-26',3153,0,'','','0000-00-00','reception','2025-11-27 09:58:34','','0000-00-00 00:00:00'),(0,0,3068,'2025-11-27','2026-02-26',3154,0,'','','0000-00-00','janvi','2025-11-27 10:14:45','','0000-00-00 00:00:00'),(0,0,3069,'2025-11-27','2026-02-26',3155,0,'','','0000-00-00','drashti','2025-11-27 10:17:12','','0000-00-00 00:00:00'),(0,0,3070,'2025-11-27','2026-02-26',3156,0,'','','0000-00-00','reception','2025-11-27 10:19:52','','0000-00-00 00:00:00'),(0,0,3071,'2025-11-27','2026-02-26',3157,0,'','','0000-00-00','reception','2025-11-27 10:35:47','','0000-00-00 00:00:00'),(0,0,3072,'2025-11-27','2026-02-26',3158,0,'','','0000-00-00','janvi','2025-11-27 10:37:19','','0000-00-00 00:00:00'),(0,0,3073,'2025-11-27','2026-02-26',3159,0,'','','0000-00-00','reception','2025-11-27 10:37:36','','0000-00-00 00:00:00'),(0,0,3074,'2025-11-27','2026-02-26',3160,0,'','','0000-00-00','drashti','2025-11-27 10:38:24','','0000-00-00 00:00:00'),(0,0,3075,'2025-11-27','2026-02-26',3161,0,'','','0000-00-00','reception','2025-11-27 10:39:24','','0000-00-00 00:00:00'),(0,0,3076,'2025-11-27','2026-02-26',3162,0,'','','0000-00-00','drashti','2025-11-27 10:40:59','','0000-00-00 00:00:00'),(0,0,3077,'2025-11-27','2026-02-26',3163,0,'','','0000-00-00','reception','2025-11-27 10:41:31','','0000-00-00 00:00:00'),(0,0,3078,'2025-11-27','2026-02-26',3164,0,'','','0000-00-00','drashti','2025-11-27 10:42:50','','0000-00-00 00:00:00'),(0,0,3079,'2025-11-27','2026-02-26',3165,0,'','','0000-00-00','reception','2025-11-27 10:44:50','','0000-00-00 00:00:00'),(0,0,3080,'2025-11-27','2026-02-26',3166,0,'','','0000-00-00','reception','2025-11-27 10:48:41','','0000-00-00 00:00:00'),(0,0,3081,'2025-11-27','2026-02-26',3167,0,'','','0000-00-00','drashti','2025-11-27 10:50:34','','0000-00-00 00:00:00'),(0,0,3082,'2025-11-27','2026-02-26',3168,0,'','','0000-00-00','priyanshi','2025-11-27 11:03:35','','0000-00-00 00:00:00'),(0,0,3083,'2025-11-27','2026-02-26',3169,0,'','','0000-00-00','reception','2025-11-27 11:05:51','','0000-00-00 00:00:00'),(0,0,3084,'2025-11-27','2026-02-26',3170,0,'','','0000-00-00','reception','2025-11-27 11:16:55','','0000-00-00 00:00:00'),(0,0,3085,'2025-11-27','2026-02-26',3171,0,'','','0000-00-00','reception','2025-11-27 11:21:18','','0000-00-00 00:00:00'),(0,0,3086,'2025-11-27','2026-02-26',3172,0,'','','0000-00-00','janvi','2025-11-27 11:24:15','','0000-00-00 00:00:00'),(0,0,3087,'2025-11-27','2026-02-26',3173,0,'','','0000-00-00','reception','2025-11-27 11:28:26','','0000-00-00 00:00:00'),(0,0,3088,'2025-11-27','2026-02-26',3174,0,'','','0000-00-00','reception','2025-11-27 12:02:12','','0000-00-00 00:00:00'),(0,0,3089,'2025-11-27','2026-02-26',3175,0,'','','0000-00-00','priyanshi','2025-11-27 12:02:46','','0000-00-00 00:00:00'),(0,0,3090,'2025-11-27','2026-02-26',3176,0,'','','0000-00-00','janvi','2025-11-27 12:11:40','','0000-00-00 00:00:00'),(0,0,3091,'2025-11-27','2026-02-26',3177,0,'','','0000-00-00','reception','2025-11-27 12:18:32','','0000-00-00 00:00:00'),(0,0,3092,'2025-11-27','2026-02-26',2919,0,'','','0000-00-00','reception','2025-11-27 12:21:34','','0000-00-00 00:00:00'),(0,0,3093,'2025-11-27','2026-02-26',3178,0,'','','0000-00-00','priyanshi','2025-11-27 12:35:56','','0000-00-00 00:00:00'),(0,0,3094,'2025-11-27','2026-02-26',3179,0,'','','0000-00-00','reception','2025-11-27 13:14:47','','0000-00-00 00:00:00'),(0,0,3095,'2025-11-27','2026-02-26',3180,0,'','','0000-00-00','reception','2025-11-27 13:20:15','','0000-00-00 00:00:00'),(0,0,3096,'2025-11-27','2026-02-26',3181,0,'','','0000-00-00','reception','2025-11-27 14:30:31','','0000-00-00 00:00:00'),(0,0,3097,'2025-11-27','2026-02-26',3183,0,'','','0000-00-00','drashti','2025-11-27 16:37:51','','0000-00-00 00:00:00'),(0,0,3098,'2025-11-27','2026-02-26',3184,0,'','','0000-00-00','drashti','2025-11-27 16:53:57','','0000-00-00 00:00:00'),(0,0,3099,'2025-11-27','2026-02-26',3185,0,'','','0000-00-00','reception','2025-11-27 17:02:02','','0000-00-00 00:00:00'),(0,0,3100,'2025-11-27','2026-02-26',3187,0,'','','0000-00-00','manshi','2025-11-27 17:03:32','','0000-00-00 00:00:00'),(0,0,3101,'2025-11-27','2026-02-26',3188,0,'','','0000-00-00','reception','2025-11-27 17:26:22','','0000-00-00 00:00:00'),(0,0,3102,'2025-11-27','2026-02-26',3189,0,'','','0000-00-00','reception','2025-11-27 17:34:10','','0000-00-00 00:00:00'),(0,0,3103,'2025-11-27','2026-02-26',3190,0,'','','0000-00-00','reception','2025-11-27 17:39:40','','0000-00-00 00:00:00'),(0,0,3104,'2025-11-27','2026-02-26',3191,0,'','','0000-00-00','drashti','2025-11-27 17:43:45','','0000-00-00 00:00:00'),(0,0,3105,'2025-11-27','2026-02-26',3192,0,'','','0000-00-00','drashti','2025-11-27 17:44:36','','0000-00-00 00:00:00'),(0,0,3106,'2025-11-27','2026-02-26',3193,0,'','','0000-00-00','janvi','2025-11-27 18:03:27','','0000-00-00 00:00:00'),(0,0,3107,'2025-11-27','2026-02-26',3194,0,'','','0000-00-00','manshi','2025-11-27 18:07:58','','0000-00-00 00:00:00'),(0,0,3108,'2025-11-27','2026-02-26',3195,0,'','','0000-00-00','janvi','2025-11-27 18:08:25','','0000-00-00 00:00:00'),(0,0,3109,'2025-11-27','2026-02-26',3196,0,'','','0000-00-00','reception','2025-11-27 18:12:30','','0000-00-00 00:00:00'),(0,0,3110,'2025-11-27','2026-02-26',3197,0,'','','0000-00-00','manshi','2025-11-27 18:14:32','','0000-00-00 00:00:00'),(0,0,3111,'2025-11-27','2026-02-26',3198,0,'','','0000-00-00','manshi','2025-11-27 18:16:02','','0000-00-00 00:00:00'),(0,0,3112,'2025-11-27','2026-02-26',3199,0,'','','0000-00-00','reception','2025-11-27 18:17:05','','0000-00-00 00:00:00'),(0,0,3113,'2025-11-27','2026-02-26',3200,0,'','','0000-00-00','manshi','2025-11-27 18:19:56','','0000-00-00 00:00:00'),(0,0,3114,'2025-11-27','2026-02-26',2933,0,'','','0000-00-00','drashti','2025-11-27 18:25:08','','0000-00-00 00:00:00'),(0,0,3115,'2025-11-27','2026-02-26',3201,0,'','','0000-00-00','reception','2025-11-27 18:26:59','','0000-00-00 00:00:00'),(0,0,3116,'2025-11-27','2026-02-26',3202,0,'','','0000-00-00','reception','2025-11-27 18:29:02','','0000-00-00 00:00:00'),(0,0,3117,'2025-11-27','2026-02-26',3203,0,'','','0000-00-00','drashti','2025-11-27 18:30:25','','0000-00-00 00:00:00'),(0,0,3118,'2025-11-27','2026-02-26',3204,0,'','','0000-00-00','janvi','2025-11-27 18:31:43','','0000-00-00 00:00:00'),(0,0,3119,'2025-11-27','2026-02-26',3205,0,'','','0000-00-00','drashti','2025-11-27 18:34:30','','0000-00-00 00:00:00'),(0,0,3120,'2025-11-27','2026-02-26',3206,0,'','','0000-00-00','janvi','2025-11-27 18:44:51','','0000-00-00 00:00:00'),(0,0,3121,'2025-11-27','2026-02-26',3207,0,'','','0000-00-00','janvi','2025-11-27 18:55:09','','0000-00-00 00:00:00'),(0,0,3122,'2025-11-27','2026-02-26',3208,0,'','','0000-00-00','janvi','2025-11-27 18:57:01','','0000-00-00 00:00:00'),(0,0,3123,'2025-11-27','2026-02-26',3209,0,'','','0000-00-00','reception','2025-11-27 19:00:24','','0000-00-00 00:00:00'),(0,0,3124,'2025-11-27','2026-02-26',3210,0,'','','0000-00-00','drashti','2025-11-27 19:00:54','','0000-00-00 00:00:00'),(0,0,3125,'2025-11-27','2026-02-26',3211,0,'','','0000-00-00','drashti','2025-11-27 19:08:12','','0000-00-00 00:00:00'),(0,0,3126,'2025-11-27','2026-02-26',3212,0,'','','0000-00-00','drashti','2025-11-27 20:13:58','','0000-00-00 00:00:00'),(0,0,3127,'2025-11-27','2026-02-26',3213,0,'','','0000-00-00','drashti','2025-11-27 20:41:29','','0000-00-00 00:00:00'),(0,0,3128,'2025-11-28','2026-02-27',3214,0,'','','0000-00-00','reception','2025-11-28 08:49:16','','0000-00-00 00:00:00'),(0,0,3129,'2025-11-28','2026-02-27',3215,0,'','','0000-00-00','urvashi','2025-11-28 08:55:57','','0000-00-00 00:00:00'),(0,0,3130,'2025-11-28','2026-02-27',3216,0,'','','0000-00-00','reception','2025-11-28 09:21:22','','0000-00-00 00:00:00'),(0,0,3131,'2025-11-28','2026-02-27',3217,0,'','','0000-00-00','reception','2025-11-28 10:04:33','','0000-00-00 00:00:00'),(0,0,3132,'2025-11-28','2026-02-27',3218,0,'','','0000-00-00','reception','2025-11-28 10:06:31','','0000-00-00 00:00:00'),(0,0,3133,'2025-11-28','2026-02-27',3219,0,'','','0000-00-00','manshi','2025-11-28 10:13:31','','0000-00-00 00:00:00'),(0,0,3134,'2025-11-28','2026-02-27',3220,0,'','','0000-00-00','drashti','2025-11-28 10:15:29','','0000-00-00 00:00:00'),(0,0,3135,'2025-11-28','2026-02-27',3221,0,'','','0000-00-00','reception','2025-11-28 10:16:40','','0000-00-00 00:00:00'),(0,0,3136,'2025-11-28','2026-02-27',3222,0,'','','0000-00-00','reception','2025-11-28 10:28:14','','0000-00-00 00:00:00'),(0,0,3137,'2025-11-28','2026-02-27',3223,0,'','','0000-00-00','janvi','2025-11-28 10:32:14','','0000-00-00 00:00:00'),(0,0,3138,'2025-11-28','2026-02-27',3224,0,'','','0000-00-00','drashti','2025-11-28 10:42:13','','0000-00-00 00:00:00'),(0,0,3139,'2025-11-28','2026-02-27',3225,0,'','','0000-00-00','janvi','2025-11-28 11:05:58','','0000-00-00 00:00:00'),(0,0,3140,'2025-11-28','2026-02-27',3226,0,'','','0000-00-00','reception','2025-11-28 11:06:45','','0000-00-00 00:00:00'),(0,0,3141,'2025-11-28','2026-02-27',3227,0,'','','0000-00-00','reception','2025-11-28 11:13:48','','0000-00-00 00:00:00'),(0,0,3142,'2025-11-28','2026-02-27',3228,0,'','','0000-00-00','reception','2025-11-28 11:18:28','','0000-00-00 00:00:00'),(0,0,3143,'2025-11-28','2026-02-27',3229,0,'','','0000-00-00','manshi','2025-11-28 11:24:37','','0000-00-00 00:00:00'),(0,0,3144,'2025-11-28','2026-02-27',3230,0,'','','0000-00-00','drashti','2025-11-28 11:27:53','','0000-00-00 00:00:00'),(0,0,3145,'2025-11-28','2026-02-27',3231,0,'','','0000-00-00','janvi','2025-11-28 11:28:25','','0000-00-00 00:00:00'),(0,0,3146,'2025-11-28','2026-02-27',3232,0,'','','0000-00-00','drashti','2025-11-28 11:30:39','','0000-00-00 00:00:00'),(0,0,3147,'2025-11-28','2026-02-27',3233,0,'','','0000-00-00','reception','2025-11-28 11:34:11','','0000-00-00 00:00:00'),(0,0,3148,'2025-11-28','2026-02-27',3234,0,'','','0000-00-00','janvi','2025-11-28 11:38:21','','0000-00-00 00:00:00'),(0,0,3149,'2025-11-28','2026-02-27',3235,0,'','','0000-00-00','drashti','2025-11-28 11:38:51','','0000-00-00 00:00:00'),(0,0,3150,'2025-11-28','2026-02-27',3236,0,'','','0000-00-00','reception','2025-11-28 11:40:01','','0000-00-00 00:00:00'),(0,0,3151,'2025-11-28','2026-02-27',3237,0,'','','0000-00-00','janvi','2025-11-28 11:40:22','','0000-00-00 00:00:00'),(0,0,3152,'2025-11-28','2026-02-27',3238,0,'','','0000-00-00','janvi','2025-11-28 11:42:46','','0000-00-00 00:00:00'),(0,0,3153,'2025-11-28','2026-02-27',3239,0,'','','0000-00-00','janvi','2025-11-28 11:46:25','','0000-00-00 00:00:00'),(0,0,3154,'2025-11-28','2026-02-27',3240,0,'','','0000-00-00','reception','2025-11-28 11:47:51','','0000-00-00 00:00:00'),(0,0,3155,'2025-11-28','2026-02-27',3241,0,'','','0000-00-00','reception','2025-11-28 11:49:03','','0000-00-00 00:00:00'),(0,0,3156,'2025-11-28','2026-02-27',3242,0,'','','0000-00-00','reception','2025-11-28 11:50:48','','0000-00-00 00:00:00'),(0,0,3157,'2025-11-28','2026-02-27',3243,0,'','','0000-00-00','janvi','2025-11-28 11:50:56','','0000-00-00 00:00:00'),(0,0,3158,'2025-11-28','2026-02-27',3244,0,'','','0000-00-00','janvi','2025-11-28 11:52:17','','0000-00-00 00:00:00'),(0,0,3159,'2025-11-28','2026-02-27',3245,0,'','','0000-00-00','reception','2025-11-28 11:54:17','','0000-00-00 00:00:00'),(0,0,3160,'2025-11-28','2026-02-27',3246,0,'','','0000-00-00','manshi','2025-11-28 12:00:15','','0000-00-00 00:00:00'),(0,0,3161,'2025-11-28','2026-02-27',3247,0,'','','0000-00-00','reception','2025-11-28 12:06:32','','0000-00-00 00:00:00'),(0,0,3162,'2025-11-28','2026-02-27',3248,0,'','','0000-00-00','reception','2025-11-28 12:10:46','','0000-00-00 00:00:00'),(0,0,3163,'2025-11-28','2026-02-27',3249,0,'','','0000-00-00','drashti','2025-11-28 12:16:26','','0000-00-00 00:00:00'),(0,0,3164,'2025-11-28','2026-02-27',3250,0,'','','0000-00-00','reception','2025-11-28 12:18:59','','0000-00-00 00:00:00'),(0,0,3165,'2025-11-28','2026-02-27',3251,0,'','','0000-00-00','drashti','2025-11-28 12:45:05','','0000-00-00 00:00:00'),(0,0,3166,'2025-11-28','2026-02-27',3252,0,'','','0000-00-00','darshan','2025-11-28 13:34:46','','0000-00-00 00:00:00'),(0,0,3167,'2025-11-28','2026-02-27',3253,0,'','','0000-00-00','reception','2025-11-28 14:22:29','','0000-00-00 00:00:00'),(0,0,3168,'2025-11-28','2026-02-27',3254,0,'','','0000-00-00','reception','2025-11-28 14:25:23','','0000-00-00 00:00:00'),(0,0,3169,'2025-11-28','2026-02-27',3255,0,'','','0000-00-00','reception','2025-11-28 15:06:03','','0000-00-00 00:00:00'),(0,0,3170,'2025-11-28','2026-02-27',3256,0,'','','0000-00-00','reception','2025-11-28 16:19:49','','0000-00-00 00:00:00'),(0,0,3171,'2025-11-28','2026-02-27',3257,0,'','','0000-00-00','reception','2025-11-28 16:31:29','','0000-00-00 00:00:00'),(0,0,3172,'2025-11-28','2026-02-27',3258,0,'','','0000-00-00','reception','2025-11-28 16:45:07','','0000-00-00 00:00:00'),(0,0,3173,'2025-11-28','2026-02-27',3259,0,'','','0000-00-00','reception','2025-11-28 16:52:25','','0000-00-00 00:00:00'),(0,0,3174,'2025-11-28','2026-02-27',3260,0,'','','0000-00-00','reception','2025-11-28 16:54:27','','0000-00-00 00:00:00'),(0,0,3175,'2025-11-28','2026-02-27',3261,0,'','','0000-00-00','drashti','2025-11-28 17:12:22','','0000-00-00 00:00:00'),(0,0,3176,'2025-11-28','2026-02-27',3262,0,'','','0000-00-00','manshi','2025-11-28 17:16:00','','0000-00-00 00:00:00'),(0,0,3177,'2025-11-28','2026-02-27',3263,0,'','','0000-00-00','manshi','2025-11-28 17:16:15','','0000-00-00 00:00:00'),(0,0,3178,'2025-11-28','2026-02-27',3264,0,'','','0000-00-00','manshi','2025-11-28 17:17:30','','0000-00-00 00:00:00'),(0,0,3179,'2025-11-28','2026-02-27',3265,0,'','','0000-00-00','drashti','2025-11-28 17:32:21','','0000-00-00 00:00:00'),(0,0,3180,'2025-11-28','2026-02-27',3266,0,'','','0000-00-00','reception','2025-11-28 17:35:46','','0000-00-00 00:00:00'),(0,0,3181,'2025-11-28','2026-02-27',3267,0,'','','0000-00-00','drashti','2025-11-28 17:44:36','','0000-00-00 00:00:00'),(0,0,3182,'2025-11-28','2026-02-27',3268,0,'','','0000-00-00','reception','2025-11-28 17:49:59','','0000-00-00 00:00:00'),(0,0,3183,'2025-11-28','2026-02-27',3269,0,'','','0000-00-00','janvi','2025-11-28 17:50:32','','0000-00-00 00:00:00'),(0,0,3184,'2025-11-28','2026-02-27',3270,0,'','','0000-00-00','janvi','2025-11-28 17:57:39','','0000-00-00 00:00:00'),(0,0,3185,'2025-11-28','2026-02-27',3271,0,'','','0000-00-00','drashti','2025-11-28 17:58:17','','0000-00-00 00:00:00'),(0,0,3186,'2025-11-28','2026-02-27',3272,0,'','','0000-00-00','janvi','2025-11-28 18:10:14','','0000-00-00 00:00:00'),(0,0,3187,'2025-11-28','2026-02-27',3273,0,'','','0000-00-00','reception','2025-11-28 18:11:22','','0000-00-00 00:00:00'),(0,0,3188,'2025-11-28','2026-02-27',3274,0,'','','0000-00-00','drashti','2025-11-28 18:12:41','','0000-00-00 00:00:00'),(0,0,3189,'2025-11-28','2026-02-27',3275,0,'','','0000-00-00','janvi','2025-11-28 18:24:24','','0000-00-00 00:00:00'),(0,0,3190,'2025-11-28','2026-02-27',3276,0,'','','0000-00-00','drashti','2025-11-28 18:32:47','','0000-00-00 00:00:00'),(0,0,3191,'2025-11-28','2026-02-27',3277,0,'','','0000-00-00','drashti','2025-11-28 18:34:55','','0000-00-00 00:00:00'),(0,0,3192,'2025-11-28','2026-02-27',3278,0,'','','0000-00-00','reception','2025-11-28 18:40:44','','0000-00-00 00:00:00'),(0,0,3193,'2025-11-28','2026-02-27',3279,0,'','','0000-00-00','manshi','2025-11-28 18:47:01','','0000-00-00 00:00:00'),(0,0,3194,'2025-11-28','2026-02-27',3280,0,'','','0000-00-00','manshi','2025-11-28 18:49:34','','0000-00-00 00:00:00'),(0,0,3195,'2025-11-28','2026-02-27',3281,0,'','','0000-00-00','manshi','2025-11-28 18:49:40','','0000-00-00 00:00:00'),(0,0,3196,'2025-11-28','2026-02-27',3282,0,'','','0000-00-00','drashti','2025-11-28 18:50:00','','0000-00-00 00:00:00'),(0,0,3197,'2025-11-28','2026-02-27',3283,0,'','','0000-00-00','drashti','2025-11-28 18:54:17','','0000-00-00 00:00:00'),(0,0,3198,'2025-11-28','2026-02-27',3284,0,'','','0000-00-00','reception','2025-11-28 18:54:35','','0000-00-00 00:00:00'),(0,0,3199,'2025-11-28','2026-02-27',3285,0,'','','0000-00-00','reception','2025-11-28 18:57:45','','0000-00-00 00:00:00'),(0,0,3200,'2025-11-28','2026-02-27',3286,0,'','','0000-00-00','drashti','2025-11-28 19:22:16','','0000-00-00 00:00:00'),(0,0,3201,'2025-11-29','2026-02-28',3288,0,'','','0000-00-00','reception','2025-11-29 09:02:43','','0000-00-00 00:00:00'),(0,0,3202,'2025-11-29','2026-02-28',3289,0,'','','0000-00-00','reception','2025-11-29 09:07:20','','0000-00-00 00:00:00'),(0,0,3203,'2025-11-29','2026-02-28',3290,0,'','','0000-00-00','reception','2025-11-29 09:08:34','','0000-00-00 00:00:00'),(0,0,3204,'2025-11-29','2026-02-28',3291,0,'','','0000-00-00','drashti','2025-11-29 09:21:41','','0000-00-00 00:00:00'),(0,0,3205,'2025-11-29','2026-02-28',3292,0,'','','0000-00-00','reception','2025-11-29 09:55:02','','0000-00-00 00:00:00'),(0,0,3206,'2025-11-29','2026-02-28',3293,0,'','','0000-00-00','drashti','2025-11-29 09:58:16','','0000-00-00 00:00:00'),(0,0,3207,'2025-11-29','2026-02-28',3294,0,'','','0000-00-00','drashti','2025-11-29 10:01:35','','0000-00-00 00:00:00'),(0,0,3208,'2025-11-29','2026-02-28',3295,0,'','','0000-00-00','reception','2025-11-29 10:14:04','','0000-00-00 00:00:00'),(0,0,3209,'2025-11-29','2026-02-28',3296,0,'','','0000-00-00','reception','2025-11-29 10:15:18','','0000-00-00 00:00:00'),(0,0,3210,'2025-11-29','2026-02-28',3297,0,'','','0000-00-00','reception','2025-11-29 10:37:20','','0000-00-00 00:00:00'),(0,0,3211,'2025-11-29','2026-02-28',3298,0,'','','0000-00-00','reception','2025-11-29 10:53:23','','0000-00-00 00:00:00'),(0,0,3212,'2025-11-29','2026-02-28',2699,0,'','','0000-00-00','janvi','2025-11-29 10:54:19','','0000-00-00 00:00:00'),(0,0,3213,'2025-11-29','2026-02-28',3299,0,'','','0000-00-00','reception','2025-11-29 10:55:50','','0000-00-00 00:00:00'),(0,0,3214,'2025-11-29','2026-02-28',3300,0,'','','0000-00-00','janvi','2025-11-29 10:57:25','','0000-00-00 00:00:00'),(0,0,3215,'2025-11-29','2026-02-28',3301,0,'','','0000-00-00','drashti','2025-11-29 11:06:15','','0000-00-00 00:00:00'),(0,0,3216,'2025-11-29','2026-02-28',3302,0,'','','0000-00-00','janvi','2025-11-29 11:06:54','','0000-00-00 00:00:00'),(0,0,3217,'2025-11-29','2026-02-28',3303,0,'','','0000-00-00','drashti','2025-11-29 11:15:37','','0000-00-00 00:00:00'),(0,0,3218,'2025-11-29','2026-02-28',3304,0,'','','0000-00-00','drashti','2025-11-29 11:18:31','','0000-00-00 00:00:00'),(0,0,3219,'2025-11-29','2026-02-28',3305,0,'','','0000-00-00','reception','2025-11-29 11:26:40','','0000-00-00 00:00:00'),(0,0,3220,'2025-11-29','2026-02-28',3306,0,'','','0000-00-00','drashti','2025-11-29 11:27:33','','0000-00-00 00:00:00'),(0,0,3221,'2025-11-29','2026-02-28',3307,0,'','','0000-00-00','drashti','2025-11-29 11:31:19','','0000-00-00 00:00:00'),(0,0,3222,'2025-11-29','2026-02-28',3308,0,'','','0000-00-00','janvi','2025-11-29 11:32:11','','0000-00-00 00:00:00'),(0,0,3223,'2025-11-29','2026-02-28',3309,0,'','','0000-00-00','drashti','2025-11-29 11:35:29','','0000-00-00 00:00:00'),(0,0,3224,'2025-11-29','2026-02-28',3310,0,'','','0000-00-00','reception','2025-11-29 11:36:44','','0000-00-00 00:00:00'),(0,0,3225,'2025-11-29','2026-02-28',3311,0,'','','0000-00-00','reception','2025-11-29 11:38:13','','0000-00-00 00:00:00'),(0,0,3226,'2025-11-29','2026-02-28',3312,0,'','','0000-00-00','drashti','2025-11-29 11:38:26','','0000-00-00 00:00:00'),(0,0,3227,'2025-11-29','2026-02-28',3313,0,'','','0000-00-00','drashti','2025-11-29 11:52:19','','0000-00-00 00:00:00'),(0,0,3228,'2025-11-29','2026-02-28',3314,0,'','','0000-00-00','reception','2025-11-29 11:52:35','','0000-00-00 00:00:00'),(0,0,3229,'2025-11-29','2026-02-28',3315,0,'','','0000-00-00','janvi','2025-11-29 11:54:23','','0000-00-00 00:00:00'),(0,0,3230,'2025-11-29','2026-02-28',3316,0,'','','0000-00-00','urvashi','2025-11-29 11:54:28','','0000-00-00 00:00:00'),(0,0,3231,'2025-11-29','2026-02-28',2893,0,'','','0000-00-00','drashti','2025-11-29 11:54:30','','0000-00-00 00:00:00'),(0,0,3232,'2025-11-29','2026-02-28',2779,0,'','','0000-00-00','janvi','2025-11-29 11:55:14','','0000-00-00 00:00:00'),(0,0,3233,'2025-11-29','2026-02-28',2939,0,'','','0000-00-00','janvi','2025-11-29 11:57:44','','0000-00-00 00:00:00'),(0,0,3234,'2025-11-29','2026-02-28',3317,0,'','','0000-00-00','drashti','2025-11-29 11:59:33','','0000-00-00 00:00:00'),(0,0,3235,'2025-11-29','2026-02-28',3318,0,'','','0000-00-00','urvashi','2025-11-29 11:59:48','','0000-00-00 00:00:00'),(0,0,3236,'2025-11-29','2026-02-28',3319,0,'','','0000-00-00','janvi','2025-11-29 12:02:23','','0000-00-00 00:00:00'),(0,0,3237,'2025-11-29','2026-02-28',2539,0,'','','0000-00-00','drashti','2025-11-29 12:10:12','','0000-00-00 00:00:00'),(0,0,3238,'2025-11-29','2026-02-28',3320,0,'','','0000-00-00','janvi','2025-11-29 12:12:43','','0000-00-00 00:00:00'),(0,0,3239,'2025-11-29','2026-02-28',3321,0,'','','0000-00-00','reception','2025-11-29 12:16:35','','0000-00-00 00:00:00'),(0,0,3240,'2025-11-29','2026-02-28',3322,0,'','','0000-00-00','drashti','2025-11-29 12:17:26','','0000-00-00 00:00:00'),(0,0,3241,'2025-11-29','2026-02-28',3323,0,'','','0000-00-00','janvi','2025-11-29 12:26:13','','0000-00-00 00:00:00'),(0,0,3242,'2025-11-29','2026-02-28',3324,0,'','','0000-00-00','janvi','2025-11-29 12:27:16','','0000-00-00 00:00:00'),(0,0,3243,'2025-11-29','2026-02-28',3325,0,'','','0000-00-00','reception','2025-11-29 12:27:23','','0000-00-00 00:00:00'),(0,0,3244,'2025-11-29','2026-02-28',3326,0,'','','0000-00-00','reception','2025-11-29 12:29:16','','0000-00-00 00:00:00'),(0,0,3245,'2025-11-29','2026-02-28',3327,0,'','','0000-00-00','reception','2025-11-29 12:30:20','','0000-00-00 00:00:00'),(0,0,3246,'2025-11-29','2026-02-28',3328,0,'','','0000-00-00','reception','2025-11-29 12:33:23','','0000-00-00 00:00:00'),(0,0,3247,'2025-11-29','2026-02-28',3329,0,'','','0000-00-00','drashti','2025-11-29 12:34:16','','0000-00-00 00:00:00'),(0,0,3248,'2025-11-29','2026-02-28',3330,0,'','','0000-00-00','reception','2025-11-29 12:38:26','','0000-00-00 00:00:00'),(0,0,3249,'2025-11-29','2026-02-28',3331,0,'','','0000-00-00','drashti','2025-11-29 12:45:47','','0000-00-00 00:00:00'),(0,0,3250,'2025-11-29','2026-02-28',3332,0,'','','0000-00-00','reception','2025-11-29 12:48:47','','0000-00-00 00:00:00'),(0,0,3251,'2025-11-29','2026-02-28',3333,0,'','','0000-00-00','janvi','2025-11-29 12:54:05','','0000-00-00 00:00:00'),(0,0,3252,'2025-11-29','2026-02-28',3334,0,'','','0000-00-00','reception','2025-11-29 13:14:41','','0000-00-00 00:00:00'),(0,0,3253,'2025-11-29','2026-02-28',3335,0,'','','0000-00-00','drashti','2025-11-29 13:16:45','','0000-00-00 00:00:00'),(0,0,3254,'2025-11-29','2026-02-28',3337,0,'','','0000-00-00','janvi','2025-11-29 17:55:46','','0000-00-00 00:00:00'),(0,0,3255,'2025-11-29','2026-02-28',3338,0,'','','0000-00-00','manshi','2025-11-29 18:09:14','','0000-00-00 00:00:00'),(0,0,3256,'2025-11-29','2026-02-28',3339,0,'','','0000-00-00','janvi','2025-11-29 18:14:01','','0000-00-00 00:00:00'),(0,0,3257,'2025-11-29','2026-02-28',3340,0,'','','0000-00-00','manshi','2025-11-29 18:39:39','','0000-00-00 00:00:00'),(0,0,3258,'2025-11-29','2026-02-28',3341,0,'','','0000-00-00','janvi','2025-11-29 18:50:59','','0000-00-00 00:00:00'),(0,0,3259,'2025-11-29','2026-02-28',3342,0,'','','0000-00-00','janvi','2025-11-29 19:27:00','','0000-00-00 00:00:00'),(0,0,3260,'2025-11-30','2026-03-01',3344,0,'','','0000-00-00','urvashi','2025-11-30 09:27:08','','0000-00-00 00:00:00'),(0,0,3261,'2025-11-30','2026-03-01',3143,0,'','','0000-00-00','urvashi','2025-11-30 11:05:10','','0000-00-00 00:00:00'),(0,0,3262,'2025-11-30','2026-03-01',3348,0,'','','0000-00-00','urvashi','2025-11-30 12:03:42','','0000-00-00 00:00:00'),(0,0,3263,'2025-12-01','2026-02-28',3351,0,'','','0000-00-00','reception','2025-12-01 08:40:03','','0000-00-00 00:00:00'),(0,0,3264,'2025-12-01','2026-02-28',3352,0,'','','0000-00-00','reception','2025-12-01 09:09:16','','0000-00-00 00:00:00'),(0,0,3265,'2025-12-01','2026-02-28',3353,0,'','','0000-00-00','reception','2025-12-01 09:12:13','','0000-00-00 00:00:00'),(0,0,3266,'2025-12-01','2026-02-28',3354,0,'','','0000-00-00','reception','2025-12-01 09:25:07','','0000-00-00 00:00:00'),(0,0,3267,'2025-12-01','2026-02-28',3355,0,'','','0000-00-00','reception','2025-12-01 09:28:43','','0000-00-00 00:00:00'),(0,0,3268,'2025-12-01','2026-02-28',3356,0,'','','0000-00-00','drashti','2025-12-01 09:48:13','','0000-00-00 00:00:00'),(0,0,3269,'2025-12-01','2026-02-28',3357,0,'','','0000-00-00','reception','2025-12-01 10:00:03','','0000-00-00 00:00:00'),(0,0,3270,'2025-12-01','2026-02-28',3358,0,'','','0000-00-00','reception','2025-12-01 10:02:52','','0000-00-00 00:00:00'),(0,0,3271,'2025-12-01','2026-02-28',3359,0,'','','0000-00-00','drashti','2025-12-01 10:03:10','','0000-00-00 00:00:00'),(0,0,3272,'2025-12-01','2026-02-28',3360,0,'','','0000-00-00','reception','2025-12-01 10:15:12','','0000-00-00 00:00:00'),(0,0,3273,'2025-12-01','2026-02-28',3362,0,'','','0000-00-00','janvi','2025-12-01 10:21:26','','0000-00-00 00:00:00'),(0,0,3274,'2025-12-01','2026-02-28',3363,0,'','','0000-00-00','reception','2025-12-01 10:33:09','','0000-00-00 00:00:00'),(0,0,3275,'2025-12-01','2026-02-28',3364,0,'','','0000-00-00','reception','2025-12-01 10:37:48','','0000-00-00 00:00:00'),(0,0,3276,'2025-12-01','2026-02-28',3365,0,'','','0000-00-00','janvi','2025-12-01 10:41:27','','0000-00-00 00:00:00'),(0,0,3277,'2025-12-01','2026-02-28',3366,0,'','','0000-00-00','reception','2025-12-01 10:45:49','','0000-00-00 00:00:00'),(0,0,3278,'2025-12-01','2026-02-28',3367,0,'','','0000-00-00','janvi','2025-12-01 10:46:46','','0000-00-00 00:00:00'),(0,0,3279,'2025-12-01','2026-02-28',3368,0,'','','0000-00-00','janvi','2025-12-01 11:00:59','','0000-00-00 00:00:00'),(0,0,3280,'2025-12-01','2026-02-28',3369,0,'','','0000-00-00','drashti','2025-12-01 11:03:31','','0000-00-00 00:00:00'),(0,0,3281,'2025-12-01','2026-02-28',3370,0,'','','0000-00-00','janvi','2025-12-01 11:03:37','','0000-00-00 00:00:00'),(0,0,3282,'2025-12-01','2026-02-28',3371,0,'','','0000-00-00','reception','2025-12-01 11:04:13','','0000-00-00 00:00:00'),(0,0,3283,'2025-12-01','2026-02-28',3372,0,'','','0000-00-00','janvi','2025-12-01 11:04:56','','0000-00-00 00:00:00'),(0,0,3284,'2025-12-01','2026-02-28',3373,0,'','','0000-00-00','drashti','2025-12-01 11:07:05','','0000-00-00 00:00:00'),(0,0,3285,'2025-12-01','2026-02-28',3374,0,'','','0000-00-00','manshi','2025-12-01 11:11:12','','0000-00-00 00:00:00'),(0,0,3286,'2025-12-01','2026-02-28',3375,0,'','','0000-00-00','reception','2025-12-01 11:11:27','','0000-00-00 00:00:00'),(0,0,3287,'2025-12-01','2026-02-28',3376,0,'','','0000-00-00','reception','2025-12-01 11:19:35','','0000-00-00 00:00:00'),(0,0,3288,'2025-12-01','2026-02-28',3377,0,'','','0000-00-00','janvi','2025-12-01 11:43:02','','0000-00-00 00:00:00'),(0,0,3289,'2025-12-01','2026-02-28',3378,0,'','','0000-00-00','drashti','2025-12-01 11:43:48','','0000-00-00 00:00:00'),(0,0,3290,'2025-12-01','2026-02-28',3379,0,'','','0000-00-00','reception','2025-12-01 11:44:19','','0000-00-00 00:00:00'),(0,0,3291,'2025-12-01','2026-02-28',3380,0,'','','0000-00-00','janvi','2025-12-01 11:45:16','','0000-00-00 00:00:00'),(0,0,3292,'2025-12-01','2026-02-28',3381,0,'','','0000-00-00','janvi','2025-12-01 11:46:58','','0000-00-00 00:00:00'),(0,0,3293,'2025-12-01','2026-02-28',3382,0,'','','0000-00-00','drashti','2025-12-01 11:53:25','','0000-00-00 00:00:00'),(0,0,3294,'2025-12-01','2026-02-28',3384,0,'','','0000-00-00','drashti','2025-12-01 12:13:21','','0000-00-00 00:00:00'),(0,0,3295,'2025-12-01','2026-02-28',3385,0,'','','0000-00-00','janvi','2025-12-01 12:13:24','','0000-00-00 00:00:00'),(0,0,3296,'2025-12-01','2026-02-28',3386,0,'','','0000-00-00','reception','2025-12-01 12:14:26','','0000-00-00 00:00:00'),(0,0,3297,'2025-12-01','2026-02-28',3387,0,'','','0000-00-00','reception','2025-12-01 12:25:59','','0000-00-00 00:00:00'),(0,0,3298,'2025-12-01','2026-02-28',3388,0,'','','0000-00-00','reception','2025-12-01 12:27:39','','0000-00-00 00:00:00'),(0,0,3299,'2025-12-01','2026-02-28',2660,0,'','','0000-00-00','janvi','2025-12-01 12:28:25','','0000-00-00 00:00:00'),(0,0,3300,'2025-12-01','2026-02-28',3389,0,'','','0000-00-00','manshi','2025-12-01 12:35:45','','0000-00-00 00:00:00'),(0,0,3301,'2025-12-01','2026-02-28',3390,0,'','','0000-00-00','drashti','2025-12-01 12:37:49','','0000-00-00 00:00:00'),(0,0,3302,'2025-12-01','2026-02-28',3391,0,'','','0000-00-00','reception','2025-12-01 12:44:44','','0000-00-00 00:00:00'),(0,0,3303,'2025-12-01','2026-02-28',3392,0,'','','0000-00-00','reception','2025-12-01 12:49:01','','0000-00-00 00:00:00'),(0,0,3304,'2025-12-01','2026-02-28',3393,0,'','','0000-00-00','janvi','2025-12-01 12:49:58','','0000-00-00 00:00:00'),(0,0,3305,'2025-12-01','2026-02-28',3394,0,'','','0000-00-00','janvi','2025-12-01 12:53:36','','0000-00-00 00:00:00'),(0,0,3306,'2025-12-01','2026-02-28',3395,0,'','','0000-00-00','reception','2025-12-01 12:55:50','','0000-00-00 00:00:00'),(0,0,3307,'2025-12-01','2026-02-28',3396,0,'','','0000-00-00','reception','2025-12-01 13:00:16','','0000-00-00 00:00:00'),(0,0,3308,'2025-12-01','2026-02-28',3397,0,'','','0000-00-00','reception','2025-12-01 13:02:48','','0000-00-00 00:00:00'),(0,0,3309,'2025-12-01','2026-02-28',3398,0,'','','0000-00-00','drashti','2025-12-01 13:30:30','','0000-00-00 00:00:00'),(0,0,3310,'2025-12-01','2026-02-28',3399,0,'','','0000-00-00','janvi','2025-12-01 13:53:41','','0000-00-00 00:00:00'),(0,0,3311,'2025-12-01','2026-02-28',3402,0,'','','0000-00-00','reception','2025-12-01 14:32:42','','0000-00-00 00:00:00'),(0,0,3312,'2025-12-01','2026-02-28',3405,0,'','','0000-00-00','shweta','2025-12-01 17:18:31','','0000-00-00 00:00:00'),(0,0,3313,'2025-12-01','2026-02-28',3406,0,'','','0000-00-00','drashti','2025-12-01 17:20:13','','0000-00-00 00:00:00'),(0,0,3314,'2025-12-01','2026-02-28',2691,0,'','','0000-00-00','shweta','2025-12-01 17:21:57','','0000-00-00 00:00:00'),(0,0,3315,'2025-12-01','2026-02-28',3407,0,'','','0000-00-00','drashti','2025-12-01 17:29:50','','0000-00-00 00:00:00'),(0,0,3316,'2025-12-01','2026-02-28',3408,0,'','','0000-00-00','reception','2025-12-01 17:31:46','','0000-00-00 00:00:00'),(0,0,3317,'2025-12-01','2026-02-28',3409,0,'','','0000-00-00','reception','2025-12-01 17:34:16','','0000-00-00 00:00:00'),(0,0,3318,'2025-12-01','2026-02-28',3410,0,'','','0000-00-00','janvi','2025-12-01 17:35:13','','0000-00-00 00:00:00'),(0,0,3319,'2025-12-01','2026-02-28',3411,0,'','','0000-00-00','janvi','2025-12-01 17:46:06','','0000-00-00 00:00:00'),(0,0,3320,'2025-12-01','2026-02-28',3412,0,'','','0000-00-00','reception','2025-12-01 17:49:20','','0000-00-00 00:00:00'),(0,0,3321,'2025-12-01','2026-02-28',3413,0,'','','0000-00-00','drashti','2025-12-01 17:51:41','','0000-00-00 00:00:00'),(0,0,3322,'2025-12-01','2026-02-28',3414,0,'','','0000-00-00','manshi','2025-12-01 17:58:41','','0000-00-00 00:00:00'),(0,0,3323,'2025-12-01','2026-02-28',3415,0,'','','0000-00-00','manshi','2025-12-01 17:59:04','','0000-00-00 00:00:00'),(0,0,3324,'2025-12-01','2026-02-28',3416,0,'','','0000-00-00','janvi','2025-12-01 18:02:28','','0000-00-00 00:00:00'),(0,0,3325,'2025-12-01','2026-02-28',3417,0,'','','0000-00-00','janvi','2025-12-01 18:03:44','','0000-00-00 00:00:00'),(0,0,3326,'2025-12-01','2026-02-28',3418,0,'','','0000-00-00','drashti','2025-12-01 18:10:28','','0000-00-00 00:00:00'),(0,0,3327,'2025-12-01','2026-02-28',3419,0,'','','0000-00-00','reception','2025-12-01 18:11:11','','0000-00-00 00:00:00'),(0,0,3328,'2025-12-01','2026-02-28',3420,0,'','','0000-00-00','reception','2025-12-01 18:12:58','','0000-00-00 00:00:00'),(0,0,3329,'2025-12-01','2026-02-28',3421,0,'','','0000-00-00','drashti','2025-12-01 18:15:21','','0000-00-00 00:00:00'),(0,0,3330,'2025-12-01','2026-02-28',3422,0,'','','0000-00-00','reception','2025-12-01 18:16:11','','0000-00-00 00:00:00'),(0,0,3331,'2025-12-01','2026-02-28',3423,0,'','','0000-00-00','janvi','2025-12-01 18:18:11','','0000-00-00 00:00:00'),(0,0,3332,'2025-12-01','2026-02-28',3424,0,'','','0000-00-00','manshi','2025-12-01 18:29:42','','0000-00-00 00:00:00'),(0,0,3333,'2025-12-01','2026-02-28',3425,0,'','','0000-00-00','janvi','2025-12-01 18:30:21','','0000-00-00 00:00:00'),(0,0,3334,'2025-12-01','2026-02-28',3426,0,'','','0000-00-00','janvi','2025-12-01 18:32:57','','0000-00-00 00:00:00'),(0,0,3335,'2025-12-01','2026-02-28',3428,0,'','','0000-00-00','drashti','2025-12-01 18:35:56','','0000-00-00 00:00:00'),(0,0,3336,'2025-12-01','2026-02-28',3429,0,'','','0000-00-00','reception','2025-12-01 18:46:27','','0000-00-00 00:00:00'),(0,0,3337,'2025-12-01','2026-02-28',3430,0,'','','0000-00-00','drashti','2025-12-01 18:49:14','','0000-00-00 00:00:00'),(0,0,3338,'2025-12-01','2026-02-28',3431,0,'','','0000-00-00','janvi','2025-12-01 18:51:38','','0000-00-00 00:00:00'),(0,0,3339,'2025-12-01','2026-02-28',3432,0,'','','0000-00-00','reception','2025-12-01 19:08:56','','0000-00-00 00:00:00'),(0,0,3340,'2025-12-01','2026-02-28',3433,0,'','','0000-00-00','drashti','2025-12-01 19:15:31','','0000-00-00 00:00:00'),(0,0,3341,'2025-12-01','2026-02-28',3434,0,'','','0000-00-00','reception','2025-12-01 19:17:10','','0000-00-00 00:00:00'),(0,0,3342,'2025-12-01','2026-02-28',3435,0,'','','0000-00-00','drashti','2025-12-01 19:37:45','','0000-00-00 00:00:00'),(0,0,3343,'2025-12-02','2026-03-01',3436,0,'','','0000-00-00','reception','2025-12-02 09:06:00','','0000-00-00 00:00:00'),(0,0,3344,'2025-12-02','2026-03-01',3437,0,'','','0000-00-00','reception','2025-12-02 09:20:36','','0000-00-00 00:00:00'),(0,0,3345,'2025-12-02','2026-03-01',3439,0,'','','0000-00-00','shweta','2025-12-02 09:58:28','','0000-00-00 00:00:00'),(0,0,3346,'2025-12-02','2026-03-01',3441,0,'','','0000-00-00','reception','2025-12-02 10:04:28','','0000-00-00 00:00:00'),(0,0,3347,'2025-12-02','2026-03-01',3442,0,'','','0000-00-00','reception','2025-12-02 10:06:20','','0000-00-00 00:00:00'),(0,0,3348,'2025-12-02','2026-03-01',3443,0,'','','0000-00-00','janvi','2025-12-02 10:15:15','','0000-00-00 00:00:00'),(0,0,3349,'2025-12-02','2026-03-01',3445,0,'','','0000-00-00','reception','2025-12-02 10:23:39','','0000-00-00 00:00:00'),(0,0,3350,'2025-12-02','2026-03-01',3446,0,'','','0000-00-00','reception','2025-12-02 10:31:11','','0000-00-00 00:00:00'),(0,0,3351,'2025-12-02','2026-03-01',3448,0,'','','0000-00-00','reception','2025-12-02 10:42:04','','0000-00-00 00:00:00'),(0,0,3352,'2025-12-02','2026-03-01',3449,0,'','','0000-00-00','janvi','2025-12-02 10:44:35','','0000-00-00 00:00:00'),(0,0,3353,'2025-12-02','2026-03-01',3450,0,'','','0000-00-00','janvi','2025-12-02 10:48:30','','0000-00-00 00:00:00'),(0,0,3354,'2025-12-02','2026-03-01',3451,0,'','','0000-00-00','reception','2025-12-02 10:50:50','','0000-00-00 00:00:00'),(0,0,3355,'2025-12-02','2026-03-01',3452,0,'','','0000-00-00','shweta','2025-12-02 10:51:16','','0000-00-00 00:00:00'),(0,0,3356,'2025-12-02','2026-03-01',3453,0,'','','0000-00-00','reception','2025-12-02 11:07:53','','0000-00-00 00:00:00'),(0,0,3357,'2025-12-02','2026-03-01',3454,0,'','','0000-00-00','janvi','2025-12-02 11:13:04','','0000-00-00 00:00:00'),(0,0,3358,'2025-12-02','2026-03-01',3455,0,'','','0000-00-00','reception','2025-12-02 11:14:18','','0000-00-00 00:00:00'),(0,0,3359,'2025-12-02','2026-03-01',3456,0,'','','0000-00-00','reception','2025-12-02 11:23:11','','0000-00-00 00:00:00'),(0,0,3360,'2025-12-02','2026-03-01',3457,0,'','','0000-00-00','reception','2025-12-02 11:25:45','','0000-00-00 00:00:00'),(0,0,3361,'2025-12-02','2026-03-01',3458,0,'','','0000-00-00','reception','2025-12-02 11:27:43','','0000-00-00 00:00:00'),(0,0,3362,'2025-12-02','2026-03-01',3459,0,'','','0000-00-00','manshi','2025-12-02 11:31:19','','0000-00-00 00:00:00'),(0,0,3363,'2025-12-02','2026-03-01',3460,0,'','','0000-00-00','shweta','2025-12-02 11:33:04','','0000-00-00 00:00:00'),(0,0,3364,'2025-12-02','2026-03-01',3461,0,'','','0000-00-00','reception','2025-12-02 11:33:36','','0000-00-00 00:00:00'),(0,0,3365,'2025-12-02','2026-03-01',3462,0,'','','0000-00-00','janvi','2025-12-02 11:34:02','','0000-00-00 00:00:00'),(0,0,3366,'2025-12-02','2026-03-01',3463,0,'','','0000-00-00','reception','2025-12-02 11:36:39','','0000-00-00 00:00:00'),(0,0,3367,'2025-12-02','2026-03-01',3464,0,'','','0000-00-00','shweta','2025-12-02 11:39:11','','0000-00-00 00:00:00'),(0,0,3368,'2025-12-02','2026-03-01',3465,0,'','','0000-00-00','reception','2025-12-02 11:41:20','','0000-00-00 00:00:00'),(0,0,3369,'2025-12-02','2026-03-01',1481,0,'','','0000-00-00','manshi','2025-12-02 11:46:09','','0000-00-00 00:00:00'),(0,0,3370,'2025-12-02','2026-03-01',3466,0,'','','0000-00-00','reception','2025-12-02 11:49:36','','0000-00-00 00:00:00'),(0,0,3371,'2025-12-02','2026-03-01',3446,0,'','','0000-00-00','manshi','2025-12-02 11:53:22','','0000-00-00 00:00:00'),(0,0,3372,'2025-12-02','2026-03-01',3467,0,'','','0000-00-00','shweta','2025-12-02 11:55:39','','0000-00-00 00:00:00'),(0,0,3373,'2025-12-02','2026-03-01',3468,0,'','','0000-00-00','reception','2025-12-02 12:00:15','','0000-00-00 00:00:00'),(0,0,3374,'2025-12-02','2026-03-01',3469,0,'','','0000-00-00','shweta','2025-12-02 12:00:21','','0000-00-00 00:00:00'),(0,0,3375,'2025-12-02','2026-03-01',3470,0,'','','0000-00-00','reception','2025-12-02 12:04:03','','0000-00-00 00:00:00'),(0,0,3376,'2025-12-02','2026-03-01',3471,0,'','','0000-00-00','janvi','2025-12-02 12:06:43','','0000-00-00 00:00:00'),(0,0,3377,'2025-12-02','2026-03-01',3472,0,'','','0000-00-00','reception','2025-12-02 12:13:12','','0000-00-00 00:00:00'),(0,0,3378,'2025-12-02','2026-03-01',3473,0,'','','0000-00-00','reception','2025-12-02 12:20:37','','0000-00-00 00:00:00'),(0,0,3379,'2025-12-02','2026-03-01',3474,0,'','','0000-00-00','shweta','2025-12-02 12:23:24','','0000-00-00 00:00:00'),(0,0,3380,'2025-12-02','2026-03-01',3475,0,'','','0000-00-00','janvi','2025-12-02 12:32:28','','0000-00-00 00:00:00'),(0,0,3381,'2025-12-02','2026-03-01',3476,0,'','','0000-00-00','reception','2025-12-02 12:38:20','','0000-00-00 00:00:00'),(0,0,3382,'2025-12-02','2026-03-01',3477,0,'','','0000-00-00','janvi','2025-12-02 12:49:47','','0000-00-00 00:00:00'),(0,0,3383,'2025-12-02','2026-03-01',3478,0,'','','0000-00-00','manshi','2025-12-02 12:51:06','','0000-00-00 00:00:00'),(0,0,3384,'2025-12-02','2026-03-01',3479,0,'','','0000-00-00','manshi','2025-12-02 13:00:06','','0000-00-00 00:00:00'),(0,0,3385,'2025-12-02','2026-03-01',3481,0,'','','0000-00-00','shweta','2025-12-02 13:52:14','','0000-00-00 00:00:00'),(0,0,3386,'2025-12-02','2026-03-01',3482,0,'','','0000-00-00','reception','2025-12-02 16:08:29','','0000-00-00 00:00:00'),(0,0,3387,'2025-12-02','2026-03-01',3483,0,'','','0000-00-00','reception','2025-12-02 16:49:58','','0000-00-00 00:00:00'),(0,0,3388,'2025-12-02','2026-03-01',3484,0,'','','0000-00-00','reception','2025-12-02 17:24:35','','0000-00-00 00:00:00'),(0,0,3389,'2025-12-02','2026-03-01',3485,0,'','','0000-00-00','janvi','2025-12-02 17:32:03','','0000-00-00 00:00:00'),(0,0,3390,'2025-12-02','2026-03-01',3486,0,'','','0000-00-00','shweta','2025-12-02 17:32:31','','0000-00-00 00:00:00'),(0,0,3391,'2025-12-02','2026-03-01',3487,0,'','','0000-00-00','reception','2025-12-02 17:41:24','','0000-00-00 00:00:00'),(0,0,3392,'2025-12-02','2026-03-01',3021,0,'','','0000-00-00','shweta','2025-12-02 17:42:21','','0000-00-00 00:00:00'),(0,0,3393,'2025-12-02','2026-03-01',3488,0,'','','0000-00-00','reception','2025-12-02 17:46:43','','0000-00-00 00:00:00'),(0,0,3394,'2025-12-02','2026-03-01',3489,0,'','','0000-00-00','janvi','2025-12-02 17:50:01','','0000-00-00 00:00:00'),(0,0,3395,'2025-12-02','2026-03-01',3490,0,'','','0000-00-00','reception','2025-12-02 18:05:17','','0000-00-00 00:00:00'),(0,0,3396,'2025-12-02','2026-03-01',3491,0,'','','0000-00-00','shweta','2025-12-02 18:05:47','','0000-00-00 00:00:00'),(0,0,3397,'2025-12-02','2026-03-01',3492,0,'','','0000-00-00','janvi','2025-12-02 18:08:13','','0000-00-00 00:00:00'),(0,0,3398,'2025-12-02','2026-03-01',3493,0,'','','0000-00-00','shweta','2025-12-02 18:09:17','','0000-00-00 00:00:00'),(0,0,3399,'2025-12-02','2026-03-01',3494,0,'','','0000-00-00','reception','2025-12-02 18:10:14','','0000-00-00 00:00:00'),(0,0,3400,'2025-12-02','2026-03-01',3495,0,'','','0000-00-00','reception','2025-12-02 18:18:42','','0000-00-00 00:00:00'),(0,0,3401,'2025-12-02','2026-03-01',3496,0,'','','0000-00-00','shweta','2025-12-02 18:32:23','','0000-00-00 00:00:00'),(0,0,3402,'2025-12-02','2026-03-01',3497,0,'','','0000-00-00','shweta','2025-12-02 18:34:10','','0000-00-00 00:00:00'),(0,0,3403,'2025-12-02','2026-03-01',3498,0,'','','0000-00-00','shweta','2025-12-02 18:39:29','','0000-00-00 00:00:00'),(0,0,3404,'2025-12-02','2026-03-01',3499,0,'','','0000-00-00','shweta','2025-12-02 18:50:46','','0000-00-00 00:00:00'),(0,0,3405,'2025-12-02','2026-03-01',3500,0,'','','0000-00-00','reception','2025-12-02 19:06:09','','0000-00-00 00:00:00'),(0,0,3406,'2025-12-02','2026-03-01',3501,0,'','','0000-00-00','janvi','2025-12-02 19:08:25','','0000-00-00 00:00:00'),(0,0,3407,'2025-12-02','2026-03-01',3502,0,'','','0000-00-00','reception','2025-12-02 19:08:43','','0000-00-00 00:00:00'),(0,0,3408,'2025-12-02','2026-03-01',3503,0,'','','0000-00-00','shweta','2025-12-02 19:32:42','','0000-00-00 00:00:00'),(0,0,3409,'2025-12-02','2026-03-01',3504,0,'','','0000-00-00','reception','2025-12-02 19:46:32','','0000-00-00 00:00:00'),(0,0,3410,'2025-12-02','2026-03-01',3505,0,'','','0000-00-00','reception','2025-12-02 20:24:01','','0000-00-00 00:00:00'),(0,0,3411,'2025-12-03','2026-03-02',3507,0,'','','0000-00-00','reception','2025-12-03 08:43:19','','0000-00-00 00:00:00'),(0,0,3412,'2025-12-03','2026-03-02',3508,0,'','','0000-00-00','reception','2025-12-03 09:11:14','','0000-00-00 00:00:00'),(0,0,3413,'2025-12-03','2026-03-02',3509,0,'','','0000-00-00','reception','2025-12-03 09:23:06','','0000-00-00 00:00:00'),(0,0,3414,'2025-12-03','2026-03-02',3511,0,'','','0000-00-00','janvi','2025-12-03 09:47:52','','0000-00-00 00:00:00'),(0,0,3415,'2025-12-03','2026-03-02',3512,0,'','','0000-00-00','janvi','2025-12-03 09:50:02','','0000-00-00 00:00:00'),(0,0,3416,'2025-12-03','2026-03-02',3513,0,'','','0000-00-00','janvi','2025-12-03 10:08:39','','0000-00-00 00:00:00'),(0,0,3417,'2025-12-03','2026-03-02',3514,0,'','','0000-00-00','janvi','2025-12-03 10:14:13','','0000-00-00 00:00:00'),(0,0,3418,'2025-12-03','2026-03-02',3515,0,'','','0000-00-00','reception','2025-12-03 10:23:53','','0000-00-00 00:00:00'),(0,0,3419,'2025-12-03','2026-03-02',3516,0,'','','0000-00-00','urvashi','2025-12-03 10:28:51','','0000-00-00 00:00:00'),(0,0,3420,'2025-12-03','2026-03-02',3517,0,'','','0000-00-00','urvashi','2025-12-03 10:31:30','','0000-00-00 00:00:00'),(0,0,3421,'2025-12-03','2026-03-02',3518,0,'','','0000-00-00','urvashi','2025-12-03 10:37:01','','0000-00-00 00:00:00'),(0,0,3422,'2025-12-03','2026-03-02',3519,0,'','','0000-00-00','reception','2025-12-03 10:37:13','','0000-00-00 00:00:00'),(0,0,3423,'2025-12-03','2026-03-02',3520,0,'','','0000-00-00','reception','2025-12-03 10:39:40','','0000-00-00 00:00:00'),(0,0,3424,'2025-12-03','2026-03-02',3521,0,'','','0000-00-00','urvashi','2025-12-03 10:51:24','','0000-00-00 00:00:00'),(0,0,3425,'2025-12-03','2026-03-02',3522,0,'','','0000-00-00','janvi','2025-12-03 10:56:08','','0000-00-00 00:00:00'),(0,0,3426,'2025-12-03','2026-03-02',3523,0,'','','0000-00-00','reception','2025-12-03 11:01:43','','0000-00-00 00:00:00'),(0,0,3427,'2025-12-03','2026-03-02',3524,0,'','','0000-00-00','janvi','2025-12-03 11:02:08','','0000-00-00 00:00:00'),(0,0,3428,'2025-12-03','2026-03-02',3525,0,'','','0000-00-00','reception','2025-12-03 11:10:34','','0000-00-00 00:00:00'),(0,0,3429,'2025-12-03','2026-03-02',3526,0,'','','0000-00-00','urvashi','2025-12-03 11:12:24','','0000-00-00 00:00:00'),(0,0,3430,'2025-12-03','2026-03-02',3527,0,'','','0000-00-00','urvashi','2025-12-03 11:15:41','','0000-00-00 00:00:00'),(0,0,3431,'2025-12-03','2026-03-02',3528,0,'','','0000-00-00','reception','2025-12-03 11:33:35','','0000-00-00 00:00:00'),(0,0,3432,'2025-12-03','2026-03-02',3529,0,'','','0000-00-00','urvashi','2025-12-03 11:35:19','','0000-00-00 00:00:00'),(0,0,3433,'2025-12-03','2026-03-02',3530,0,'','','0000-00-00','reception','2025-12-03 11:36:27','','0000-00-00 00:00:00'),(0,0,3434,'2025-12-03','2026-03-02',3531,0,'','','0000-00-00','reception','2025-12-03 11:38:49','','0000-00-00 00:00:00'),(0,0,3435,'2025-12-03','2026-03-02',3532,0,'','','0000-00-00','janvi','2025-12-03 11:41:34','','0000-00-00 00:00:00'),(0,0,3436,'2025-12-03','2026-03-02',3533,0,'','','0000-00-00','urvashi','2025-12-03 11:46:36','','0000-00-00 00:00:00'),(0,0,3437,'2025-12-03','2026-03-02',3534,0,'','','0000-00-00','reception','2025-12-03 11:51:52','','0000-00-00 00:00:00'),(0,0,3438,'2025-12-03','2026-03-02',3535,0,'','','0000-00-00','janvi','2025-12-03 11:59:53','','0000-00-00 00:00:00'),(0,0,3439,'2025-12-03','2026-03-02',3536,0,'','','0000-00-00','urvashi','2025-12-03 12:09:44','','0000-00-00 00:00:00'),(0,0,3440,'2025-12-03','2026-03-02',3537,0,'','','0000-00-00','urvashi','2025-12-03 12:17:41','','0000-00-00 00:00:00'),(0,0,3441,'2025-12-03','2026-03-02',3538,0,'','','0000-00-00','urvashi','2025-12-03 12:22:56','','0000-00-00 00:00:00'),(0,0,3442,'2025-12-03','2026-03-02',3539,0,'','','0000-00-00','janvi','2025-12-03 12:27:53','','0000-00-00 00:00:00'),(0,0,3443,'2025-12-03','2026-03-02',3540,0,'','','0000-00-00','urvashi','2025-12-03 12:41:39','','0000-00-00 00:00:00'),(0,0,3444,'2025-12-03','2026-03-02',3541,0,'','','0000-00-00','janvi','2025-12-03 12:47:05','','0000-00-00 00:00:00'),(0,0,3445,'2025-12-03','2026-03-02',3542,0,'','','0000-00-00','reception','2025-12-03 13:21:43','','0000-00-00 00:00:00'),(0,0,3446,'2025-12-03','2026-03-02',3545,0,'','','0000-00-00','reception','2025-12-03 16:19:34','','0000-00-00 00:00:00'),(0,0,3447,'2025-12-03','2026-03-02',3546,0,'','','0000-00-00','reception','2025-12-03 16:29:09','','0000-00-00 00:00:00'),(0,0,3448,'2025-12-03','2026-03-02',3547,0,'','','0000-00-00','shweta','2025-12-03 16:36:38','','0000-00-00 00:00:00'),(0,0,3449,'2025-12-03','2026-03-02',3548,0,'','','0000-00-00','reception','2025-12-03 16:37:32','','0000-00-00 00:00:00'),(0,0,3450,'2025-12-03','2026-03-02',3549,0,'','','0000-00-00','manshi','2025-12-03 17:09:52','','0000-00-00 00:00:00'),(0,0,3451,'2025-12-03','2026-03-02',3550,0,'','','0000-00-00','manshi','2025-12-03 17:10:46','','0000-00-00 00:00:00'),(0,0,3452,'2025-12-03','2026-03-02',3551,0,'','','0000-00-00','manshi','2025-12-03 17:12:45','','0000-00-00 00:00:00'),(0,0,3453,'2025-12-03','2026-03-02',3552,0,'','','0000-00-00','reception','2025-12-03 17:19:03','','0000-00-00 00:00:00'),(0,0,3454,'2025-12-03','2026-03-02',3553,0,'','','0000-00-00','reception','2025-12-03 17:24:05','','0000-00-00 00:00:00'),(0,0,3455,'2025-12-03','2026-03-02',3554,0,'','','0000-00-00','manshi','2025-12-03 17:24:11','','0000-00-00 00:00:00'),(0,0,3456,'2025-12-03','2026-03-02',3555,0,'','','0000-00-00','reception','2025-12-03 17:28:44','','0000-00-00 00:00:00'),(0,0,3457,'2025-12-03','2026-03-02',3556,0,'','','0000-00-00','reception','2025-12-03 17:32:33','','0000-00-00 00:00:00'),(0,0,3458,'2025-12-03','2026-03-02',3557,0,'','','0000-00-00','reception','2025-12-03 17:38:12','','0000-00-00 00:00:00'),(0,0,3459,'2025-12-03','2026-03-02',3558,0,'','','0000-00-00','manshi','2025-12-03 17:40:10','','0000-00-00 00:00:00'),(0,0,3460,'2025-12-03','2026-03-02',3559,0,'','','0000-00-00','urvashi','2025-12-03 17:43:18','','0000-00-00 00:00:00'),(0,0,3461,'2025-12-03','2026-03-02',3560,0,'','','0000-00-00','manshi','2025-12-03 17:46:19','','0000-00-00 00:00:00'),(0,0,3462,'2025-12-03','2026-03-02',3561,0,'','','0000-00-00','reception','2025-12-03 18:00:49','','0000-00-00 00:00:00'),(0,0,3463,'2025-12-03','2026-03-02',3562,0,'','','0000-00-00','urvashi','2025-12-03 18:03:39','','0000-00-00 00:00:00'),(0,0,3464,'2025-12-03','2026-03-02',3563,0,'','','0000-00-00','reception','2025-12-03 18:04:42','','0000-00-00 00:00:00'),(0,0,3465,'2025-12-03','2026-03-02',3564,0,'','','0000-00-00','janvi','2025-12-03 18:05:11','','0000-00-00 00:00:00'),(0,0,3466,'2025-12-03','2026-03-02',3565,0,'','','0000-00-00','urvashi','2025-12-03 18:05:27','','0000-00-00 00:00:00'),(0,0,3467,'2025-12-03','2026-03-02',3566,0,'','','0000-00-00','reception','2025-12-03 18:07:17','','0000-00-00 00:00:00'),(0,0,3468,'2025-12-03','2026-03-02',3567,0,'','','0000-00-00','urvashi','2025-12-03 18:07:39','','0000-00-00 00:00:00'),(0,0,3469,'2025-12-03','2026-03-02',3568,0,'','','0000-00-00','reception','2025-12-03 18:10:06','','0000-00-00 00:00:00'),(0,0,3470,'2025-12-03','2026-03-02',3569,0,'','','0000-00-00','urvashi','2025-12-03 18:11:34','','0000-00-00 00:00:00'),(0,0,3471,'2025-12-03','2026-03-02',3570,0,'','','0000-00-00','urvashi','2025-12-03 18:12:48','','0000-00-00 00:00:00'),(0,0,3472,'2025-12-03','2026-03-02',3571,0,'','','0000-00-00','janvi','2025-12-03 18:12:59','','0000-00-00 00:00:00'),(0,0,3473,'2025-12-03','2026-03-02',3572,0,'','','0000-00-00','urvashi','2025-12-03 18:13:33','','0000-00-00 00:00:00'),(0,0,3474,'2025-12-03','2026-03-02',3573,0,'','','0000-00-00','manshi','2025-12-03 18:15:07','','0000-00-00 00:00:00'),(0,0,3475,'2025-12-03','2026-03-02',3574,0,'','','0000-00-00','janvi','2025-12-03 18:15:58','','0000-00-00 00:00:00'),(0,0,3476,'2025-12-03','2026-03-02',3575,0,'','','0000-00-00','urvashi','2025-12-03 18:17:07','','0000-00-00 00:00:00'),(0,0,3477,'2025-12-03','2026-03-02',3576,0,'','','0000-00-00','reception','2025-12-03 18:18:39','','0000-00-00 00:00:00'),(0,0,3478,'2025-12-03','2026-03-02',3577,0,'','','0000-00-00','urvashi','2025-12-03 18:19:28','','0000-00-00 00:00:00'),(0,0,3479,'2025-12-03','2026-03-02',3578,0,'','','0000-00-00','janvi','2025-12-03 18:24:46','','0000-00-00 00:00:00'),(0,0,3480,'2025-12-03','2026-03-02',3579,0,'','','0000-00-00','janvi','2025-12-03 18:27:30','','0000-00-00 00:00:00'),(0,0,3481,'2025-12-03','2026-03-02',3580,0,'','','0000-00-00','urvashi','2025-12-03 18:28:05','','0000-00-00 00:00:00'),(0,0,3482,'2025-12-03','2026-03-02',3581,0,'','','0000-00-00','janvi','2025-12-03 18:29:24','','0000-00-00 00:00:00'),(0,0,3483,'2025-12-03','2026-03-02',3582,0,'','','0000-00-00','urvashi','2025-12-03 18:30:09','','0000-00-00 00:00:00'),(0,0,3484,'2025-12-03','2026-03-02',3584,0,'','','0000-00-00','reception','2025-12-03 18:44:40','','0000-00-00 00:00:00'),(0,0,3485,'2025-12-03','2026-03-02',3585,0,'','','0000-00-00','urvashi','2025-12-03 18:45:38','','0000-00-00 00:00:00'),(0,0,3486,'2025-12-03','2026-03-02',3586,0,'','','0000-00-00','janvi','2025-12-03 18:48:29','','0000-00-00 00:00:00'),(0,0,3487,'2025-12-03','2026-03-02',3587,0,'','','0000-00-00','reception','2025-12-03 18:49:01','','0000-00-00 00:00:00'),(0,0,3488,'2025-12-03','2026-03-02',3588,0,'','','0000-00-00','urvashi','2025-12-03 18:51:18','','0000-00-00 00:00:00'),(0,0,3489,'2025-12-03','2026-03-02',3589,0,'','','0000-00-00','reception','2025-12-03 18:53:12','','0000-00-00 00:00:00'),(0,0,3490,'2025-12-03','2026-03-02',3590,0,'','','0000-00-00','urvashi','2025-12-03 18:55:54','','0000-00-00 00:00:00'),(0,0,3491,'2025-12-03','2026-03-02',3591,0,'','','0000-00-00','reception','2025-12-03 18:58:00','','0000-00-00 00:00:00'),(0,0,3492,'2025-12-03','2026-03-02',3592,0,'','','0000-00-00','urvashi','2025-12-03 19:00:00','','0000-00-00 00:00:00'),(0,0,3493,'2025-12-03','2026-03-02',3593,0,'','','0000-00-00','janvi','2025-12-03 19:00:44','','0000-00-00 00:00:00'),(0,0,3494,'2025-12-04','2026-03-03',3594,0,'','','0000-00-00','reception','2025-12-04 08:41:36','','0000-00-00 00:00:00'),(0,0,3495,'2025-12-04','2026-03-03',3595,0,'','','0000-00-00','reception','2025-12-04 08:43:38','','0000-00-00 00:00:00'),(0,0,3496,'2025-12-04','2026-03-03',3596,0,'','','0000-00-00','reception','2025-12-04 08:47:27','','0000-00-00 00:00:00'),(0,0,3497,'2025-12-04','2026-03-03',3597,0,'','','0000-00-00','janvi','2025-12-04 09:44:00','','0000-00-00 00:00:00'),(0,0,3498,'2025-12-04','2026-03-03',3599,0,'','','0000-00-00','shweta','2025-12-04 10:22:14','','0000-00-00 00:00:00'),(0,0,3499,'2025-12-04','2026-03-03',3600,0,'','','0000-00-00','shweta','2025-12-04 10:46:30','','0000-00-00 00:00:00'),(0,0,3500,'2025-12-04','2026-03-03',3602,0,'','','0000-00-00','reception','2025-12-04 10:56:20','','0000-00-00 00:00:00'),(0,0,3501,'2025-12-04','2026-03-03',3603,0,'','','0000-00-00','reception','2025-12-04 10:59:05','','0000-00-00 00:00:00'),(0,0,3502,'2025-12-04','2026-03-03',3604,0,'','','0000-00-00','reception','2025-12-04 11:01:46','','0000-00-00 00:00:00'),(0,0,3503,'2025-12-04','2026-03-03',3605,0,'','','0000-00-00','reception','2025-12-04 11:12:10','','0000-00-00 00:00:00'),(0,0,3504,'2025-12-04','2026-03-03',3606,0,'','','0000-00-00','janvi','2025-12-04 11:15:55','','0000-00-00 00:00:00'),(0,0,3505,'2025-12-04','2026-03-03',3607,0,'','','0000-00-00','urvashi','2025-12-04 11:18:34','','0000-00-00 00:00:00'),(0,0,3506,'2025-12-04','2026-03-03',3608,0,'','','0000-00-00','reception','2025-12-04 11:21:28','','0000-00-00 00:00:00'),(0,0,3507,'2025-12-04','2026-03-03',3609,0,'','','0000-00-00','manshi','2025-12-04 11:26:32','','0000-00-00 00:00:00'),(0,0,3508,'2025-12-04','2026-03-03',3610,0,'','','0000-00-00','urvashi','2025-12-04 11:31:16','','0000-00-00 00:00:00'),(0,0,3509,'2025-12-04','2026-03-03',3611,0,'','','0000-00-00','urvashi','2025-12-04 11:33:24','','0000-00-00 00:00:00'),(0,0,3510,'2025-12-04','2026-03-03',3085,0,'','','0000-00-00','janvi','2025-12-04 11:34:04','','0000-00-00 00:00:00'),(0,0,3511,'2025-12-04','2026-03-03',3612,0,'','','0000-00-00','reception','2025-12-04 11:41:01','','0000-00-00 00:00:00'),(0,0,3512,'2025-12-04','2026-03-03',3613,0,'','','0000-00-00','reception','2025-12-04 11:46:07','','0000-00-00 00:00:00'),(0,0,3513,'2025-12-04','2026-03-03',3614,0,'','','0000-00-00','urvashi','2025-12-04 11:48:41','','0000-00-00 00:00:00'),(0,0,3514,'2025-12-04','2026-03-03',3615,0,'','','0000-00-00','reception','2025-12-04 11:48:52','','0000-00-00 00:00:00'),(0,0,3515,'2025-12-04','2026-03-03',3616,0,'','','0000-00-00','reception','2025-12-04 11:51:59','','0000-00-00 00:00:00'),(0,0,3516,'2025-12-04','2026-03-03',3617,0,'','','0000-00-00','urvashi','2025-12-04 12:05:23','','0000-00-00 00:00:00'),(0,0,3517,'2025-12-04','2026-03-03',3618,0,'','','0000-00-00','urvashi','2025-12-04 12:15:37','','0000-00-00 00:00:00'),(0,0,3518,'2025-12-04','2026-03-03',3619,0,'','','0000-00-00','reception','2025-12-04 12:15:57','','0000-00-00 00:00:00'),(0,0,3519,'2025-12-04','2026-03-03',3620,0,'','','0000-00-00','urvashi','2025-12-04 12:19:55','','0000-00-00 00:00:00'),(0,0,3520,'2025-12-04','2026-03-03',3622,0,'','','0000-00-00','urvashi','2025-12-04 12:26:05','','0000-00-00 00:00:00'),(0,0,3521,'2025-12-04','2026-03-03',3623,0,'','','0000-00-00','reception','2025-12-04 12:27:40','','0000-00-00 00:00:00'),(0,0,3522,'2025-12-04','2026-03-03',3624,0,'','','0000-00-00','reception','2025-12-04 12:29:59','','0000-00-00 00:00:00'),(0,0,3523,'2025-12-04','2026-03-03',3625,0,'','','0000-00-00','urvashi','2025-12-04 12:43:49','','0000-00-00 00:00:00'),(0,0,3524,'2025-12-04','2026-03-03',3626,0,'','','0000-00-00','janvi','2025-12-04 12:46:05','','0000-00-00 00:00:00'),(0,0,3525,'2025-12-04','2026-03-03',3627,0,'','','0000-00-00','urvashi','2025-12-04 12:47:18','','0000-00-00 00:00:00'),(0,0,3526,'2025-12-04','2026-03-03',3628,0,'','','0000-00-00','urvashi','2025-12-04 13:01:38','','0000-00-00 00:00:00'),(0,0,3527,'2025-12-04','2026-03-03',3629,0,'','','0000-00-00','reception','2025-12-04 13:04:51','','0000-00-00 00:00:00'),(0,0,3528,'2025-12-04','2026-03-03',3632,0,'','','0000-00-00','reception','2025-12-04 16:08:37','','0000-00-00 00:00:00'),(0,0,3529,'2025-12-04','2026-03-03',3633,0,'','','0000-00-00','reception','2025-12-04 16:48:08','','0000-00-00 00:00:00'),(0,0,3530,'2025-12-04','2026-03-03',1943,0,'','','0000-00-00','drpratapsinh','2025-12-04 00:00:00','','0000-00-00 00:00:00'),(0,0,3531,'2025-12-04','2026-03-03',2030,0,'','','0000-00-00','drpratapsinh','2025-12-04 00:00:00','','0000-00-00 00:00:00'),(0,0,3532,'2025-12-04','2026-03-03',3634,0,'','','0000-00-00','reception','2025-12-04 16:53:45','','0000-00-00 00:00:00'),(0,0,3533,'2025-12-04','2026-03-03',3635,0,'','','0000-00-00','reception','2025-12-04 17:10:25','','0000-00-00 00:00:00'),(0,0,3534,'2025-12-04','2026-03-03',2693,0,'','','0000-00-00','drpratapsinh','2025-12-04 00:00:00','','0000-00-00 00:00:00'),(0,0,3535,'2025-12-04','2026-03-03',3637,0,'','','0000-00-00','reception','2025-12-04 17:31:37','','0000-00-00 00:00:00'),(0,0,3536,'2025-12-04','2026-03-03',3638,0,'','','0000-00-00','reception','2025-12-04 17:37:01','','0000-00-00 00:00:00'),(0,0,3537,'2025-12-04','2026-03-03',3639,0,'','','0000-00-00','manshi','2025-12-04 17:40:06','','0000-00-00 00:00:00'),(0,0,3538,'2025-12-04','2026-03-03',3640,0,'','','0000-00-00','janvi','2025-12-04 17:49:23','','0000-00-00 00:00:00'),(0,0,3539,'2025-12-04','2026-03-03',3641,0,'','','0000-00-00','reception','2025-12-04 17:56:17','','0000-00-00 00:00:00'),(0,0,3540,'2025-12-04','2026-03-03',3642,0,'','','0000-00-00','urvashi','2025-12-04 17:59:38','','0000-00-00 00:00:00'),(0,0,3541,'2025-12-04','2026-03-03',3643,0,'','','0000-00-00','urvashi','2025-12-04 18:05:52','','0000-00-00 00:00:00'),(0,0,3542,'2025-12-04','2026-03-03',2780,0,'','','0000-00-00','reception','2025-12-04 18:08:26','','0000-00-00 00:00:00'),(0,0,3543,'2025-12-04','2026-03-03',3644,0,'','','0000-00-00','manshi','2025-12-04 18:16:18','','0000-00-00 00:00:00'),(0,0,3544,'2025-12-04','2026-03-03',3645,0,'','','0000-00-00','urvashi','2025-12-04 18:16:26','','0000-00-00 00:00:00'),(0,0,3545,'2025-12-04','2026-03-03',3646,0,'','','0000-00-00','manshi','2025-12-04 18:23:35','','0000-00-00 00:00:00'),(0,0,3546,'2025-12-04','2026-03-03',3647,0,'','','0000-00-00','urvashi','2025-12-04 18:35:43','','0000-00-00 00:00:00'),(0,0,3547,'2025-12-04','2026-03-03',3648,0,'','','0000-00-00','janvi','2025-12-04 18:45:33','','0000-00-00 00:00:00'),(0,0,3548,'2025-12-04','2026-03-03',3649,0,'','','0000-00-00','reception','2025-12-04 18:45:41','','0000-00-00 00:00:00'),(0,0,3549,'2025-12-04','2026-03-03',3650,0,'','','0000-00-00','reception','2025-12-04 18:56:49','','0000-00-00 00:00:00'),(0,0,3550,'2025-12-04','2026-03-03',3651,0,'','','0000-00-00','reception','2025-12-04 18:58:00','','0000-00-00 00:00:00'),(0,0,3551,'2025-12-04','2026-03-03',3652,0,'','','0000-00-00','reception','2025-12-04 19:03:23','','0000-00-00 00:00:00'),(0,0,3552,'2025-12-04','2026-03-03',3346,0,'','','0000-00-00','janvi','2025-12-04 19:20:53','','0000-00-00 00:00:00'),(0,0,3553,'2025-12-05','2026-03-04',3653,0,'','','0000-00-00','reception','2025-12-05 08:39:14','','0000-00-00 00:00:00'),(0,0,3554,'2025-12-05','2026-03-04',3654,0,'','','0000-00-00','reception','2025-12-05 08:47:15','','0000-00-00 00:00:00'),(0,0,3555,'2025-12-05','2026-03-04',3655,0,'','','0000-00-00','reception','2025-12-05 09:49:47','','0000-00-00 00:00:00'),(0,0,3556,'2025-12-05','2026-03-04',3656,0,'','','0000-00-00','reception','2025-12-05 09:57:34','','0000-00-00 00:00:00'),(0,0,3557,'2025-12-05','2026-03-04',3657,0,'','','0000-00-00','janvi','2025-12-05 10:15:46','','0000-00-00 00:00:00'),(0,0,3558,'2025-12-05','2026-03-04',3658,0,'','','0000-00-00','reception','2025-12-05 10:16:30','','0000-00-00 00:00:00'),(0,0,3559,'2025-12-05','2026-03-04',3659,0,'','','0000-00-00','reception','2025-12-05 10:18:41','','0000-00-00 00:00:00'),(0,0,3560,'2025-12-05','2026-03-04',3660,0,'','','0000-00-00','reception','2025-12-05 10:44:55','','0000-00-00 00:00:00'),(0,0,3561,'2025-12-05','2026-03-04',3661,0,'','','0000-00-00','janvi','2025-12-05 10:51:33','','0000-00-00 00:00:00'),(0,0,3562,'2025-12-05','2026-03-04',3662,0,'','','0000-00-00','reception','2025-12-05 10:54:29','','0000-00-00 00:00:00'),(0,0,3563,'2025-12-05','2026-03-04',3663,0,'','','0000-00-00','urvashi','2025-12-05 11:01:29','','0000-00-00 00:00:00'),(0,0,3564,'2025-12-05','2026-03-04',3664,0,'','','0000-00-00','urvashi','2025-12-05 11:04:15','','0000-00-00 00:00:00'),(0,0,3565,'2025-12-05','2026-03-04',3665,0,'','','0000-00-00','reception','2025-12-05 11:04:28','','0000-00-00 00:00:00'),(0,0,3566,'2025-12-05','2026-03-04',3666,0,'','','0000-00-00','reception','2025-12-05 11:06:35','','0000-00-00 00:00:00'),(0,0,3567,'2025-12-05','2026-03-04',3667,0,'','','0000-00-00','urvashi','2025-12-05 11:08:14','','0000-00-00 00:00:00'),(0,0,3568,'2025-12-05','2026-03-04',3668,0,'','','0000-00-00','janvi','2025-12-05 11:09:00','','0000-00-00 00:00:00'),(0,0,3569,'2025-12-05','2026-03-04',3669,0,'','','0000-00-00','reception','2025-12-05 11:09:26','','0000-00-00 00:00:00'),(0,0,3570,'2025-12-05','2026-03-04',3670,0,'','','0000-00-00','urvashi','2025-12-05 11:11:10','','0000-00-00 00:00:00'),(0,0,3571,'2025-12-05','2026-03-04',3522,0,'','','0000-00-00','manshi','2025-12-05 11:19:21','','0000-00-00 00:00:00'),(0,0,3572,'2025-12-05','2026-03-04',3671,0,'','','0000-00-00','reception','2025-12-05 11:26:45','','0000-00-00 00:00:00'),(0,0,3573,'2025-12-05','2026-03-04',3672,0,'','','0000-00-00','urvashi','2025-12-05 11:41:29','','0000-00-00 00:00:00'),(0,0,3574,'2025-12-05','2026-03-04',3673,0,'','','0000-00-00','manshi','2025-12-05 11:43:46','','0000-00-00 00:00:00'),(0,0,3575,'2025-12-05','2026-03-04',3674,0,'','','0000-00-00','manshi','2025-12-05 11:44:27','','0000-00-00 00:00:00'),(0,0,3576,'2025-12-05','2026-03-04',3675,0,'','','0000-00-00','urvashi','2025-12-05 11:44:41','','0000-00-00 00:00:00'),(0,0,3577,'2025-12-05','2026-03-04',3676,0,'','','0000-00-00','urvashi','2025-12-05 11:53:07','','0000-00-00 00:00:00'),(0,0,3578,'2025-12-05','2026-03-04',3677,0,'','','0000-00-00','reception','2025-12-05 12:06:21','','0000-00-00 00:00:00'),(0,0,3579,'2025-12-05','2026-03-04',3678,0,'','','0000-00-00','janvi','2025-12-05 12:18:04','','0000-00-00 00:00:00'),(0,0,3580,'2025-12-05','2026-03-04',3679,0,'','','0000-00-00','reception','2025-12-05 12:23:22','','0000-00-00 00:00:00'),(0,0,3581,'2025-12-05','2026-03-04',3680,0,'','','0000-00-00','janvi','2025-12-05 12:26:23','','0000-00-00 00:00:00'),(0,0,3582,'2025-12-05','2026-03-04',3681,0,'','','0000-00-00','urvashi','2025-12-05 12:37:11','','0000-00-00 00:00:00'),(0,0,3583,'2025-12-05','2026-03-04',3682,0,'','','0000-00-00','reception','2025-12-05 12:42:56','','0000-00-00 00:00:00'),(0,0,3584,'2025-12-05','2026-03-04',3683,0,'','','0000-00-00','urvashi','2025-12-05 12:43:40','','0000-00-00 00:00:00'),(0,0,3585,'2025-12-05','2026-03-04',3684,0,'','','0000-00-00','urvashi','2025-12-05 12:46:07','','0000-00-00 00:00:00'),(0,0,3586,'2025-12-05','2026-03-04',3685,0,'','','0000-00-00','reception','2025-12-05 12:50:59','','0000-00-00 00:00:00'),(0,0,3587,'2025-12-05','2026-03-04',3686,0,'','','0000-00-00','manshi','2025-12-05 13:33:57','','0000-00-00 00:00:00'),(0,0,3588,'2025-12-05','2026-03-04',3687,0,'','','0000-00-00','reception','2025-12-05 13:38:17','','0000-00-00 00:00:00'),(0,0,3589,'2025-12-05','2026-03-04',3688,0,'','','0000-00-00','reception','2025-12-05 16:30:36','','0000-00-00 00:00:00'),(0,0,3590,'2025-12-05','2026-03-04',3447,0,'','','0000-00-00','janvi','2025-12-05 16:57:42','','0000-00-00 00:00:00'),(0,0,3591,'2025-12-05','2026-03-04',3689,0,'','','0000-00-00','reception','2025-12-05 17:03:10','','0000-00-00 00:00:00'),(0,0,3592,'2025-12-05','2026-03-04',3690,0,'','','0000-00-00','reception','2025-12-05 17:28:22','','0000-00-00 00:00:00'),(0,0,3593,'2025-12-05','2026-03-04',3691,0,'','','0000-00-00','janvi','2025-12-05 17:31:49','','0000-00-00 00:00:00'),(0,0,3594,'2025-12-05','2026-03-04',3692,0,'','','0000-00-00','reception','2025-12-05 17:34:33','','0000-00-00 00:00:00'),(0,0,3595,'2025-12-05','2026-03-04',3693,0,'','','0000-00-00','manshi','2025-12-05 17:39:12','','0000-00-00 00:00:00'),(0,0,3596,'2025-12-05','2026-03-04',3694,0,'','','0000-00-00','reception','2025-12-05 17:56:16','','0000-00-00 00:00:00'),(0,0,3597,'2025-12-05','2026-03-04',3695,0,'','','0000-00-00','reception','2025-12-05 18:03:36','','0000-00-00 00:00:00'),(0,0,3598,'2025-12-05','2026-03-04',3696,0,'','','0000-00-00','urvashi','2025-12-05 18:09:12','','0000-00-00 00:00:00'),(0,0,3599,'2025-12-05','2026-03-04',3697,0,'','','0000-00-00','reception','2025-12-05 18:11:54','','0000-00-00 00:00:00'),(0,0,3600,'2025-12-05','2026-03-04',3699,0,'','','0000-00-00','reception','2025-12-05 18:18:06','','0000-00-00 00:00:00'),(0,0,3601,'2025-12-05','2026-03-04',3701,0,'','','0000-00-00','janvi','2025-12-05 18:24:13','','0000-00-00 00:00:00'),(0,0,3602,'2025-12-05','2026-03-04',3702,0,'','','0000-00-00','urvashi','2025-12-05 18:26:34','','0000-00-00 00:00:00'),(0,0,3603,'2025-12-05','2026-03-04',3703,0,'','','0000-00-00','reception','2025-12-05 18:28:40','','0000-00-00 00:00:00'),(0,0,3604,'2025-12-05','2026-03-04',3704,0,'','','0000-00-00','janvi','2025-12-05 18:30:18','','0000-00-00 00:00:00'),(0,0,3605,'2025-12-05','2026-03-04',3705,0,'','','0000-00-00','janvi','2025-12-05 18:38:37','','0000-00-00 00:00:00'),(0,0,3606,'2025-12-05','2026-03-04',3707,0,'','','0000-00-00','reception','2025-12-05 18:46:13','','0000-00-00 00:00:00'),(0,0,3607,'2025-12-05','2026-03-04',3708,0,'','','0000-00-00','reception','2025-12-05 18:50:57','','0000-00-00 00:00:00'),(0,0,3608,'2025-12-05','2026-03-04',3709,0,'','','0000-00-00','janvi','2025-12-05 18:52:49','','0000-00-00 00:00:00'),(0,0,3609,'2025-12-05','2026-03-04',3710,0,'','','0000-00-00','urvashi','2025-12-05 18:55:49','','0000-00-00 00:00:00'),(0,0,3610,'2025-12-05','2026-03-04',3711,0,'','','0000-00-00','urvashi','2025-12-05 19:04:36','','0000-00-00 00:00:00'),(0,0,3611,'2025-12-05','2026-03-04',3712,0,'','','0000-00-00','urvashi','2025-12-05 19:06:27','','0000-00-00 00:00:00'),(0,0,3612,'2025-12-05','2026-03-04',3713,0,'','','0000-00-00','urvashi','2025-12-05 19:13:03','','0000-00-00 00:00:00'),(0,0,3613,'2025-12-05','2026-03-04',3151,0,'','','0000-00-00','reception','2025-12-05 19:19:19','','0000-00-00 00:00:00'),(0,0,3614,'2025-12-05','2026-03-04',3714,0,'','','0000-00-00','janvi','2025-12-05 19:21:54','','0000-00-00 00:00:00'),(0,0,3615,'2025-12-05','2026-03-04',3715,0,'','','0000-00-00','reception','2025-12-05 19:22:31','','0000-00-00 00:00:00'),(0,0,3616,'2025-12-05','2026-03-04',3716,0,'','','0000-00-00','reception','2025-12-05 19:33:32','','0000-00-00 00:00:00'),(0,0,3617,'2025-12-05','2026-03-04',3717,0,'','','0000-00-00','reception','2025-12-05 19:41:05','','0000-00-00 00:00:00'),(0,0,3618,'2025-12-05','2026-03-04',3718,0,'','','0000-00-00','urvashi','2025-12-05 20:50:41','','0000-00-00 00:00:00'),(0,0,3619,'2025-12-06','2026-03-05',3722,0,'','','0000-00-00','shweta','2025-12-06 10:02:19','','0000-00-00 00:00:00'),(0,0,3620,'2025-12-06','2026-03-05',3723,0,'','','0000-00-00','shweta','2025-12-06 10:05:12','','0000-00-00 00:00:00'),(0,0,3621,'2025-12-06','2026-03-05',3724,0,'','','0000-00-00','reception','2025-12-06 10:11:14','','0000-00-00 00:00:00'),(0,0,3622,'2025-12-06','2026-03-05',3725,0,'','','0000-00-00','reception','2025-12-06 10:30:37','','0000-00-00 00:00:00'),(0,0,3623,'2025-12-06','2026-03-05',3726,0,'','','0000-00-00','reception','2025-12-06 10:35:33','','0000-00-00 00:00:00'),(0,0,3624,'2025-12-06','2026-03-05',3727,0,'','','0000-00-00','urvashi','2025-12-06 10:37:30','','0000-00-00 00:00:00'),(0,0,3625,'2025-12-06','2026-03-05',3728,0,'','','0000-00-00','reception','2025-12-06 10:42:40','','0000-00-00 00:00:00'),(0,0,3626,'2025-12-06','2026-03-05',3729,0,'','','0000-00-00','urvashi','2025-12-06 10:50:02','','0000-00-00 00:00:00'),(0,0,3627,'2025-12-06','2026-03-05',3730,0,'','','0000-00-00','reception','2025-12-06 10:50:11','','0000-00-00 00:00:00'),(0,0,3628,'2025-12-06','2026-03-05',3731,0,'','','0000-00-00','urvashi','2025-12-06 10:53:44','','0000-00-00 00:00:00'),(0,0,3629,'2025-12-06','2026-03-05',3732,0,'','','0000-00-00','urvashi','2025-12-06 11:02:20','','0000-00-00 00:00:00'),(0,0,3630,'2025-12-06','2026-03-05',3733,0,'','','0000-00-00','reception','2025-12-06 11:11:58','','0000-00-00 00:00:00'),(0,0,3631,'2025-12-06','2026-03-05',3734,0,'','','0000-00-00','janvi','2025-12-06 11:39:07','','0000-00-00 00:00:00'),(0,0,3632,'2025-12-06','2026-03-05',3735,0,'','','0000-00-00','janvi','2025-12-06 11:46:25','','0000-00-00 00:00:00'),(0,0,3633,'2025-12-06','2026-03-05',3736,0,'','','0000-00-00','urvashi','2025-12-06 11:49:50','','0000-00-00 00:00:00'),(0,0,3634,'2025-12-06','2026-03-05',3737,0,'','','0000-00-00','urvashi','2025-12-06 11:58:41','','0000-00-00 00:00:00'),(0,0,3635,'2025-12-06','2026-03-05',3738,0,'','','0000-00-00','manshi','2025-12-06 12:04:03','','0000-00-00 00:00:00'),(0,0,3636,'2025-12-06','2026-03-05',3739,0,'','','0000-00-00','reception','2025-12-06 12:21:29','','0000-00-00 00:00:00'),(0,0,3637,'2025-12-06','2026-03-05',3740,0,'','','0000-00-00','janvi','2025-12-06 12:23:13','','0000-00-00 00:00:00'),(0,0,3638,'2025-12-06','2026-03-05',3741,0,'','','0000-00-00','urvashi','2025-12-06 12:26:07','','0000-00-00 00:00:00'),(0,0,3639,'2025-12-06','2026-03-05',3742,0,'','','0000-00-00','urvashi','2025-12-06 12:28:04','','0000-00-00 00:00:00'),(0,0,3640,'2025-12-06','2026-03-05',3743,0,'','','0000-00-00','reception','2025-12-06 12:28:41','','0000-00-00 00:00:00'),(0,0,3641,'2025-12-06','2026-03-05',3744,0,'','','0000-00-00','urvashi','2025-12-06 12:32:50','','0000-00-00 00:00:00'),(0,0,3642,'2025-12-06','2026-03-05',3745,0,'','','0000-00-00','reception','2025-12-06 12:36:32','','0000-00-00 00:00:00'),(0,0,3643,'2025-12-06','2026-03-05',3746,0,'','','0000-00-00','urvashi','2025-12-06 12:44:21','','0000-00-00 00:00:00'),(0,0,3644,'2025-12-06','2026-03-05',3747,0,'','','0000-00-00','manshi','2025-12-06 12:47:17','','0000-00-00 00:00:00'),(0,0,3645,'2025-12-06','2026-03-05',3748,0,'','','0000-00-00','urvashi','2025-12-06 12:52:49','','0000-00-00 00:00:00'),(0,0,3646,'2025-12-06','2026-03-05',3749,0,'','','0000-00-00','reception','2025-12-06 13:04:27','','0000-00-00 00:00:00'),(0,0,3647,'2025-12-06','2026-03-05',3750,0,'','','0000-00-00','urvashi','2025-12-06 13:04:37','','0000-00-00 00:00:00'),(0,0,3648,'2025-12-06','2026-03-05',3751,0,'','','0000-00-00','reception','2025-12-06 14:01:04','','0000-00-00 00:00:00'),(0,0,3649,'2025-12-06','2026-03-05',3752,0,'','','0000-00-00','reception','2025-12-06 14:03:40','','0000-00-00 00:00:00'),(0,0,3650,'2025-12-06','2026-03-05',3753,0,'','','0000-00-00','shweta','2025-12-06 15:03:48','','0000-00-00 00:00:00'),(0,0,3651,'2025-12-06','2026-03-05',3754,0,'','','0000-00-00','manshi','2025-12-06 16:58:12','','0000-00-00 00:00:00'),(0,0,3652,'2025-12-06','2026-03-05',3755,0,'','','0000-00-00','manshi','2025-12-06 17:45:59','','0000-00-00 00:00:00'),(0,0,3653,'2025-12-06','2026-03-05',3756,0,'','','0000-00-00','manshi','2025-12-06 17:59:33','','0000-00-00 00:00:00'),(0,0,3654,'2025-12-06','2026-03-05',3757,0,'','','0000-00-00','manshi','2025-12-06 18:25:37','','0000-00-00 00:00:00'),(0,0,3655,'2025-12-06','2026-03-05',3758,0,'','','0000-00-00','manshi','2025-12-06 19:05:32','','0000-00-00 00:00:00'),(0,0,3656,'2025-12-06','2026-03-05',3759,0,'','','0000-00-00','manshi','2025-12-06 19:06:26','','0000-00-00 00:00:00'),(0,0,3657,'2025-12-06','2026-03-05',3760,0,'','','0000-00-00','reception','2025-12-06 19:24:36','','0000-00-00 00:00:00'),(0,0,3658,'2025-12-06','2026-03-05',3761,0,'','','0000-00-00','urvashi','2025-12-06 19:27:56','','0000-00-00 00:00:00'),(0,0,3659,'2025-12-07','2026-03-06',3762,0,'','','0000-00-00','janvi','2025-12-07 09:33:03','','0000-00-00 00:00:00'),(0,0,3660,'2025-12-07','2026-03-06',3598,0,'','','0000-00-00','janvi','2025-12-07 09:34:18','','0000-00-00 00:00:00'),(0,0,3661,'2025-12-07','2026-03-06',3763,0,'','','0000-00-00','janvi','2025-12-07 11:20:07','','0000-00-00 00:00:00'),(0,0,3662,'2025-12-08','2026-03-07',3766,0,'','','0000-00-00','urvashi','2025-12-08 08:46:56','','0000-00-00 00:00:00'),(0,0,3663,'2025-12-08','2026-03-07',3767,0,'','','0000-00-00','urvashi','2025-12-08 08:49:18','','0000-00-00 00:00:00'),(0,0,3664,'2025-12-08','2026-03-07',3768,0,'','','0000-00-00','urvashi','2025-12-08 08:50:32','','0000-00-00 00:00:00'),(0,0,3665,'2025-12-08','2026-03-07',3769,0,'','','0000-00-00','urvashi','2025-12-08 08:52:32','','0000-00-00 00:00:00'),(0,0,3666,'2025-12-08','2026-03-07',3770,0,'','','0000-00-00','urvashi','2025-12-08 08:55:42','','0000-00-00 00:00:00'),(0,0,3667,'2025-12-08','2026-03-07',3771,0,'','','0000-00-00','urvashi','2025-12-08 08:57:38','','0000-00-00 00:00:00'),(0,0,3668,'2025-12-08','2026-03-07',3772,0,'','','0000-00-00','urvashi','2025-12-08 08:59:03','','0000-00-00 00:00:00'),(0,0,3669,'2025-12-08','2026-03-07',3773,0,'','','0000-00-00','urvashi','2025-12-08 09:00:38','','0000-00-00 00:00:00'),(0,0,3670,'2025-12-08','2026-03-07',3774,0,'','','0000-00-00','urvashi','2025-12-08 09:03:35','','0000-00-00 00:00:00'),(0,0,3671,'2025-12-08','2026-03-07',3775,0,'','','0000-00-00','reception','2025-12-08 09:26:19','','0000-00-00 00:00:00'),(0,0,3672,'2025-12-08','2026-03-07',3776,0,'','','0000-00-00','janvi','2025-12-08 09:26:51','','0000-00-00 00:00:00'),(0,0,3673,'2025-12-08','2026-03-07',3777,0,'','','0000-00-00','janvi','2025-12-08 09:31:08','','0000-00-00 00:00:00'),(0,0,3674,'2025-12-08','2026-03-07',3779,0,'','','0000-00-00','reception','2025-12-08 09:41:57','','0000-00-00 00:00:00'),(0,0,3675,'2025-12-08','2026-03-07',3781,0,'','','0000-00-00','reception','2025-12-08 09:48:12','','0000-00-00 00:00:00'),(0,0,3676,'2025-12-08','2026-03-07',3782,0,'','','0000-00-00','reception','2025-12-08 09:51:16','','0000-00-00 00:00:00'),(0,0,3677,'2025-12-08','2026-03-07',3401,0,'','','0000-00-00','janvi','2025-12-08 10:06:10','','0000-00-00 00:00:00'),(0,0,3678,'2025-12-08','2026-03-07',3783,0,'','','0000-00-00','reception','2025-12-08 10:06:36','','0000-00-00 00:00:00'),(0,0,3679,'2025-12-08','2026-03-07',3784,0,'','','0000-00-00','janvi','2025-12-08 10:12:20','','0000-00-00 00:00:00'),(0,0,3680,'2025-12-08','2026-03-07',3785,0,'','','0000-00-00','reception','2025-12-08 10:20:07','','0000-00-00 00:00:00'),(0,0,3681,'2025-12-08','2026-03-07',3786,0,'','','0000-00-00','reception','2025-12-08 10:21:24','','0000-00-00 00:00:00'),(0,0,3682,'2025-12-08','2026-03-07',3787,0,'','','0000-00-00','reception','2025-12-08 10:26:58','','0000-00-00 00:00:00'),(0,0,3683,'2025-12-08','2026-03-07',3788,0,'','','0000-00-00','reception','2025-12-08 10:31:57','','0000-00-00 00:00:00'),(0,0,3684,'2025-12-08','2026-03-07',3789,0,'','','0000-00-00','manshi','2025-12-08 10:41:52','','0000-00-00 00:00:00'),(0,0,3685,'2025-12-08','2026-03-07',3790,0,'','','0000-00-00','drashti','2025-12-08 10:43:19','','0000-00-00 00:00:00'),(0,0,3686,'2025-12-08','2026-03-07',3791,0,'','','0000-00-00','manshi','2025-12-08 10:44:28','','0000-00-00 00:00:00'),(0,0,3687,'2025-12-08','2026-03-07',3792,0,'','','0000-00-00','drashti','2025-12-08 10:49:13','','0000-00-00 00:00:00'),(0,0,3688,'2025-12-08','2026-03-07',3793,0,'','','0000-00-00','drashti','2025-12-08 10:53:35','','0000-00-00 00:00:00'),(0,0,3689,'2025-12-08','2026-03-07',3794,0,'','','0000-00-00','reception','2025-12-08 10:55:26','','0000-00-00 00:00:00'),(0,0,3690,'2025-12-08','2026-03-07',3795,0,'','','0000-00-00','drashti','2025-12-08 10:59:05','','0000-00-00 00:00:00'),(0,0,3691,'2025-12-08','2026-03-07',3796,0,'','','0000-00-00','drashti','2025-12-08 11:05:22','','0000-00-00 00:00:00'),(0,0,3692,'2025-12-08','2026-03-07',3797,0,'','','0000-00-00','janvi','2025-12-08 11:08:04','','0000-00-00 00:00:00'),(0,0,3693,'2025-12-08','2026-03-07',3798,0,'','','0000-00-00','drashti','2025-12-08 11:10:55','','0000-00-00 00:00:00'),(0,0,3694,'2025-12-08','2026-03-07',3799,0,'','','0000-00-00','reception','2025-12-08 11:12:20','','0000-00-00 00:00:00'),(0,0,3695,'2025-12-08','2026-03-07',3347,0,'','','0000-00-00','drashti','2025-12-08 11:12:39','','0000-00-00 00:00:00'),(0,0,3696,'2025-12-08','2026-03-07',3800,0,'','','0000-00-00','janvi','2025-12-08 11:21:43','','0000-00-00 00:00:00'),(0,0,3697,'2025-12-08','2026-03-07',2834,0,'','','0000-00-00','drashti','2025-12-08 11:22:59','','0000-00-00 00:00:00'),(0,0,3698,'2025-12-08','2026-03-07',3801,0,'','','0000-00-00','reception','2025-12-08 11:25:08','','0000-00-00 00:00:00'),(0,0,3699,'2025-12-08','2026-03-07',3802,0,'','','0000-00-00','reception','2025-12-08 11:27:05','','0000-00-00 00:00:00'),(0,0,3700,'2025-12-08','2026-03-07',3803,0,'','','0000-00-00','drashti','2025-12-08 11:27:19','','0000-00-00 00:00:00'),(0,0,3701,'2025-12-08','2026-03-07',3804,0,'','','0000-00-00','manshi','2025-12-08 11:30:36','','0000-00-00 00:00:00'),(0,0,3702,'2025-12-08','2026-03-07',3805,0,'','','0000-00-00','reception','2025-12-08 11:30:38','','0000-00-00 00:00:00'),(0,0,3703,'2025-12-08','2026-03-07',3806,0,'','','0000-00-00','drashti','2025-12-08 11:30:40','','0000-00-00 00:00:00'),(0,0,3704,'2025-12-08','2026-03-07',3807,0,'','','0000-00-00','janvi','2025-12-08 11:31:44','','0000-00-00 00:00:00'),(0,0,3705,'2025-12-08','2026-03-07',3808,0,'','','0000-00-00','drashti','2025-12-08 11:32:56','','0000-00-00 00:00:00'),(0,0,3706,'2025-12-08','2026-03-07',3809,0,'','','0000-00-00','reception','2025-12-08 11:35:38','','0000-00-00 00:00:00'),(0,0,3707,'2025-12-08','2026-03-07',3810,0,'','','0000-00-00','manshi','2025-12-08 11:40:23','','0000-00-00 00:00:00'),(0,0,3708,'2025-12-08','2026-03-07',3811,0,'','','0000-00-00','reception','2025-12-08 11:43:51','','0000-00-00 00:00:00'),(0,0,3709,'2025-12-08','2026-03-07',3812,0,'','','0000-00-00','drashti','2025-12-08 11:44:28','','0000-00-00 00:00:00'),(0,0,3710,'2025-12-08','2026-03-07',3813,0,'','','0000-00-00','reception','2025-12-08 11:48:35','','0000-00-00 00:00:00'),(0,0,3711,'2025-12-08','2026-03-07',2866,0,'','','0000-00-00','drashti','2025-12-08 11:49:34','','0000-00-00 00:00:00'),(0,0,3712,'2025-12-08','2026-03-07',3814,0,'','','0000-00-00','janvi','2025-12-08 11:57:25','','0000-00-00 00:00:00'),(0,0,3713,'2025-12-08','2026-03-07',3815,0,'','','0000-00-00','drashti','2025-12-08 11:57:30','','0000-00-00 00:00:00'),(0,0,3714,'2025-12-08','2026-03-07',3816,0,'','','0000-00-00','reception','2025-12-08 11:58:03','','0000-00-00 00:00:00'),(0,0,3715,'2025-12-08','2026-03-07',3817,0,'','','0000-00-00','manshi','2025-12-08 11:58:23','','0000-00-00 00:00:00'),(0,0,3716,'2025-12-08','2026-03-07',3818,0,'','','0000-00-00','reception','2025-12-08 12:04:20','','0000-00-00 00:00:00'),(0,0,3717,'2025-12-08','2026-03-07',3819,0,'','','0000-00-00','drashti','2025-12-08 12:15:55','','0000-00-00 00:00:00'),(0,0,3718,'2025-12-08','2026-03-07',3820,0,'','','0000-00-00','reception','2025-12-08 12:17:33','','0000-00-00 00:00:00'),(0,0,3719,'2025-12-08','2026-03-07',3821,0,'','','0000-00-00','drashti','2025-12-08 12:32:58','','0000-00-00 00:00:00'),(0,0,3720,'2025-12-08','2026-03-07',3721,0,'','','0000-00-00','janvi','2025-12-08 12:34:36','','0000-00-00 00:00:00'),(0,0,3721,'2025-12-08','2026-03-07',3822,0,'','','0000-00-00','reception','2025-12-08 12:36:26','','0000-00-00 00:00:00'),(0,0,3722,'2025-12-08','2026-03-07',3823,0,'','','0000-00-00','drashti','2025-12-08 12:36:45','','0000-00-00 00:00:00'),(0,0,3723,'2025-12-08','2026-03-07',3825,0,'','','0000-00-00','janvi','2025-12-08 12:40:25','','0000-00-00 00:00:00'),(0,0,3724,'2025-12-08','2026-03-07',3826,0,'','','0000-00-00','janvi','2025-12-08 12:42:18','','0000-00-00 00:00:00'),(0,0,3725,'2025-12-08','2026-03-07',3828,0,'','','0000-00-00','manshi','2025-12-08 13:07:59','','0000-00-00 00:00:00'),(0,0,3726,'2025-12-08','2026-03-07',3829,0,'','','0000-00-00','manshi','2025-12-08 13:17:55','','0000-00-00 00:00:00'),(0,0,3727,'2025-12-08','2026-03-07',3830,0,'','','0000-00-00','drashti','2025-12-08 13:19:13','','0000-00-00 00:00:00'),(0,0,3728,'2025-12-08','2026-03-07',3831,0,'','','0000-00-00','drashti','2025-12-08 13:32:27','','0000-00-00 00:00:00'),(0,0,3729,'2025-12-08','2026-03-07',3832,0,'','','0000-00-00','reception','2025-12-08 13:33:13','','0000-00-00 00:00:00'),(0,0,3730,'2025-12-08','2026-03-07',3833,0,'','','0000-00-00','janvi','2025-12-08 14:28:04','','0000-00-00 00:00:00'),(0,0,3731,'2025-12-08','2026-03-07',3834,0,'','','0000-00-00','urvashi','2025-12-08 15:59:12','','0000-00-00 00:00:00'),(0,0,3732,'2025-12-08','2026-03-07',3835,0,'','','0000-00-00','reception','2025-12-08 16:53:58','','0000-00-00 00:00:00'),(0,0,3733,'2025-12-08','2026-03-07',3836,0,'','','0000-00-00','reception','2025-12-08 16:56:57','','0000-00-00 00:00:00'),(0,0,3734,'2025-12-08','2026-03-07',3837,0,'','','0000-00-00','reception','2025-12-08 16:59:38','','0000-00-00 00:00:00'),(0,0,3735,'2025-12-08','2026-03-07',3838,0,'','','0000-00-00','manshi','2025-12-08 17:03:39','','0000-00-00 00:00:00'),(0,0,3736,'2025-12-08','2026-03-07',3839,0,'','','0000-00-00','reception','2025-12-08 17:05:02','','0000-00-00 00:00:00'),(0,0,3737,'2025-12-08','2026-03-07',3840,0,'','','0000-00-00','priyanshi','2025-12-08 17:05:24','','0000-00-00 00:00:00'),(0,0,3738,'2025-12-08','2026-03-07',3841,0,'','','0000-00-00','reception','2025-12-08 17:06:16','','0000-00-00 00:00:00'),(0,0,3739,'2025-12-08','2026-03-07',3842,0,'','','0000-00-00','reception','2025-12-08 17:09:17','','0000-00-00 00:00:00'),(0,0,3740,'2025-12-08','2026-03-07',3843,0,'','','0000-00-00','drashti','2025-12-08 17:14:33','','0000-00-00 00:00:00'),(0,0,3741,'2025-12-08','2026-03-07',3844,0,'','','0000-00-00','reception','2025-12-08 17:15:19','','0000-00-00 00:00:00'),(0,0,3742,'2025-12-08','2026-03-07',3845,0,'','','0000-00-00','reception','2025-12-08 17:18:30','','0000-00-00 00:00:00'),(0,0,3743,'2025-12-08','2026-03-07',3846,0,'','','0000-00-00','priyanshi','2025-12-08 17:23:38','','0000-00-00 00:00:00'),(0,0,3744,'2025-12-08','2026-03-07',3847,0,'','','0000-00-00','priyanshi','2025-12-08 17:25:51','','0000-00-00 00:00:00'),(0,0,3745,'2025-12-08','2026-03-07',3848,0,'','','0000-00-00','priyanshi','2025-12-08 17:26:40','','0000-00-00 00:00:00'),(0,0,3746,'2025-12-08','2026-03-07',3849,0,'','','0000-00-00','janvi','2025-12-08 17:43:15','','0000-00-00 00:00:00'),(0,0,3747,'2025-12-08','2026-03-07',3850,0,'','','0000-00-00','drashti','2025-12-08 17:54:27','','0000-00-00 00:00:00'),(0,0,3748,'2025-12-08','2026-03-07',3851,0,'','','0000-00-00','drashti','2025-12-08 18:11:01','','0000-00-00 00:00:00'),(0,0,3749,'2025-12-08','2026-03-07',3852,0,'','','0000-00-00','janvi','2025-12-08 18:12:11','','0000-00-00 00:00:00'),(0,0,3750,'2025-12-08','2026-03-07',3853,0,'','','0000-00-00','reception','2025-12-08 18:21:26','','0000-00-00 00:00:00'),(0,0,3751,'2025-12-08','2026-03-07',3854,0,'','','0000-00-00','janvi','2025-12-08 18:21:49','','0000-00-00 00:00:00'),(0,0,3752,'2025-12-08','2026-03-07',3855,0,'','','0000-00-00','drashti','2025-12-08 18:23:32','','0000-00-00 00:00:00'),(0,0,3753,'2025-12-08','2026-03-07',3856,0,'','','0000-00-00','janvi','2025-12-08 18:29:12','','0000-00-00 00:00:00'),(0,0,3754,'2025-12-08','2026-03-07',3857,0,'','','0000-00-00','manshi','2025-12-08 18:29:32','','0000-00-00 00:00:00'),(0,0,3755,'2025-12-08','2026-03-07',3858,0,'','','0000-00-00','janvi','2025-12-08 18:42:07','','0000-00-00 00:00:00'),(0,0,3756,'2025-12-08','2026-03-07',3859,0,'','','0000-00-00','reception','2025-12-08 18:44:36','','0000-00-00 00:00:00'),(0,0,3757,'2025-12-08','2026-03-07',3860,0,'','','0000-00-00','drashti','2025-12-08 18:44:56','','0000-00-00 00:00:00'),(0,0,3758,'2025-12-08','2026-03-07',3861,0,'','','0000-00-00','reception','2025-12-08 18:46:01','','0000-00-00 00:00:00'),(0,0,3759,'2025-12-08','2026-03-07',3862,0,'','','0000-00-00','drashti','2025-12-08 18:51:54','','0000-00-00 00:00:00'),(0,0,3760,'2025-12-08','2026-03-07',3864,0,'','','0000-00-00','drashti','2025-12-08 19:15:19','','0000-00-00 00:00:00'),(0,0,3761,'2025-12-08','2026-03-07',3865,0,'','','0000-00-00','janvi','2025-12-08 19:18:03','','0000-00-00 00:00:00'),(0,0,3762,'2025-12-08','2026-03-07',3866,0,'','','0000-00-00','manshi','2025-12-08 19:24:04','','0000-00-00 00:00:00'),(0,0,3763,'2025-12-08','2026-03-07',3867,0,'','','0000-00-00','manshi','2025-12-08 19:28:45','','0000-00-00 00:00:00'),(0,0,3764,'2025-12-08','2026-03-07',3868,0,'','','0000-00-00','reception','2025-12-08 20:14:14','','0000-00-00 00:00:00'),(0,0,3765,'2025-12-08','2026-03-07',3869,0,'','','0000-00-00','drashti','2025-12-08 20:19:29','','0000-00-00 00:00:00'),(0,0,3766,'2025-12-09','2026-03-08',3870,0,'','','0000-00-00','reception','2025-12-09 08:56:30','','0000-00-00 00:00:00'),(0,0,3767,'2025-12-09','2026-03-08',3720,0,'','','0000-00-00','reception','2025-12-09 10:03:50','','0000-00-00 00:00:00'),(0,0,3768,'2025-12-09','2026-03-08',3872,0,'','','0000-00-00','reception','2025-12-09 10:05:50','','0000-00-00 00:00:00'),(0,0,3769,'2025-12-09','2026-03-08',3873,0,'','','0000-00-00','reception','2025-12-09 10:09:47','','0000-00-00 00:00:00'),(0,0,3770,'2025-12-09','2026-03-08',3874,0,'','','0000-00-00','reception','2025-12-09 10:14:01','','0000-00-00 00:00:00'),(0,0,3771,'2025-12-09','2026-03-08',3875,0,'','','0000-00-00','drashti','2025-12-09 10:15:56','','0000-00-00 00:00:00'),(0,0,3772,'2025-12-09','2026-03-08',3876,0,'','','0000-00-00','reception','2025-12-09 10:15:57','','0000-00-00 00:00:00'),(0,0,3773,'2025-12-09','2026-03-08',3877,0,'','','0000-00-00','reception','2025-12-09 10:19:06','','0000-00-00 00:00:00'),(0,0,3774,'2025-12-09','2026-03-08',3878,0,'','','0000-00-00','reception','2025-12-09 10:28:45','','0000-00-00 00:00:00'),(0,0,3775,'2025-12-09','2026-03-08',3879,0,'','','0000-00-00','drashti','2025-12-09 10:34:31','','0000-00-00 00:00:00'),(0,0,3776,'2025-12-09','2026-03-08',3880,0,'','','0000-00-00','reception','2025-12-09 10:41:43','','0000-00-00 00:00:00'),(0,0,3777,'2025-12-09','2026-03-08',3881,0,'','','0000-00-00','reception','2025-12-09 10:50:29','','0000-00-00 00:00:00'),(0,0,3778,'2025-12-09','2026-03-08',3882,0,'','','0000-00-00','drashti','2025-12-09 10:51:33','','0000-00-00 00:00:00'),(0,0,3779,'2025-12-09','2026-03-08',3883,0,'','','0000-00-00','manshi','2025-12-09 10:52:03','','0000-00-00 00:00:00'),(0,0,3780,'2025-12-09','2026-03-08',3884,0,'','','0000-00-00','reception','2025-12-09 10:52:49','','0000-00-00 00:00:00'),(0,0,3781,'2025-12-09','2026-03-08',3885,0,'','','0000-00-00','reception','2025-12-09 10:57:47','','0000-00-00 00:00:00'),(0,0,3782,'2025-12-09','2026-03-08',3886,0,'','','0000-00-00','drashti','2025-12-09 10:57:53','','0000-00-00 00:00:00'),(0,0,3783,'2025-12-09','2026-03-08',3887,0,'','','0000-00-00','reception','2025-12-09 10:59:38','','0000-00-00 00:00:00'),(0,0,3784,'2025-12-09','2026-03-08',3888,0,'','','0000-00-00','drashti','2025-12-09 11:01:15','','0000-00-00 00:00:00'),(0,0,3785,'2025-12-09','2026-03-08',3889,0,'','','0000-00-00','reception','2025-12-09 11:01:17','','0000-00-00 00:00:00'),(0,0,3786,'2025-12-09','2026-03-08',3890,0,'','','0000-00-00','drashti','2025-12-09 11:05:42','','0000-00-00 00:00:00'),(0,0,3787,'2025-12-09','2026-03-08',3891,0,'','','0000-00-00','drashti','2025-12-09 11:17:05','','0000-00-00 00:00:00'),(0,0,3788,'2025-12-09','2026-03-08',3892,0,'','','0000-00-00','manshi','2025-12-09 11:18:12','','0000-00-00 00:00:00'),(0,0,3789,'2025-12-09','2026-03-08',3893,0,'','','0000-00-00','reception','2025-12-09 11:25:31','','0000-00-00 00:00:00'),(0,0,3790,'2025-12-09','2026-03-08',3894,0,'','','0000-00-00','drashti','2025-12-09 11:45:42','','0000-00-00 00:00:00'),(0,0,3791,'2025-12-09','2026-03-08',3895,0,'','','0000-00-00','janvi','2025-12-09 11:47:16','','0000-00-00 00:00:00'),(0,0,3792,'2025-12-09','2026-03-08',3896,0,'','','0000-00-00','reception','2025-12-09 11:50:21','','0000-00-00 00:00:00'),(0,0,3793,'2025-12-09','2026-03-08',3897,0,'','','0000-00-00','janvi','2025-12-09 11:56:23','','0000-00-00 00:00:00'),(0,0,3794,'2025-12-09','2026-03-08',3898,0,'','','0000-00-00','reception','2025-12-09 11:56:42','','0000-00-00 00:00:00'),(0,0,3795,'2025-12-09','2026-03-08',3899,0,'','','0000-00-00','reception','2025-12-09 11:59:44','','0000-00-00 00:00:00'),(0,0,3796,'2025-12-09','2026-03-08',3900,0,'','','0000-00-00','reception','2025-12-09 12:16:07','','0000-00-00 00:00:00'),(0,0,3797,'2025-12-09','2026-03-08',3901,0,'','','0000-00-00','manshi','2025-12-09 12:28:04','','0000-00-00 00:00:00'),(0,0,3798,'2025-12-09','2026-03-08',3902,0,'','','0000-00-00','drashti','2025-12-09 12:32:17','','0000-00-00 00:00:00'),(0,0,3799,'2025-12-09','2026-03-08',3903,0,'','','0000-00-00','drashti','2025-12-09 12:57:32','','0000-00-00 00:00:00'),(0,0,3800,'2025-12-09','2026-03-08',3904,0,'','','0000-00-00','manshi','2025-12-09 13:11:50','','0000-00-00 00:00:00'),(0,0,3801,'2025-12-09','2026-03-08',3905,0,'','','0000-00-00','drashti','2025-12-09 14:53:29','','0000-00-00 00:00:00'),(0,0,3802,'2025-12-09','2026-03-08',3907,0,'','','0000-00-00','reception','2025-12-09 16:56:24','','0000-00-00 00:00:00'),(0,0,3803,'2025-12-09','2026-03-08',3908,0,'','','0000-00-00','reception','2025-12-09 17:06:29','','0000-00-00 00:00:00'),(0,0,3804,'2025-12-09','2026-03-08',3909,0,'','','0000-00-00','reception','2025-12-09 17:08:11','','0000-00-00 00:00:00'),(0,0,3805,'2025-12-09','2026-03-08',3910,0,'','','0000-00-00','drashti','2025-12-09 17:25:13','','0000-00-00 00:00:00'),(0,0,3806,'2025-12-09','2026-03-08',3911,0,'','','0000-00-00','reception','2025-12-09 17:36:46','','0000-00-00 00:00:00'),(0,0,3807,'2025-12-09','2026-03-08',3913,0,'','','0000-00-00','reception','2025-12-09 17:46:49','','0000-00-00 00:00:00'),(0,0,3808,'2025-12-09','2026-03-08',3914,0,'','','0000-00-00','janvi','2025-12-09 17:50:37','','0000-00-00 00:00:00'),(0,0,3809,'2025-12-09','2026-03-08',3915,0,'','','0000-00-00','janvi','2025-12-09 17:53:35','','0000-00-00 00:00:00'),(0,0,3810,'2025-12-09','2026-03-08',3916,0,'','','0000-00-00','reception','2025-12-09 18:03:29','','0000-00-00 00:00:00'),(0,0,3811,'2025-12-09','2026-03-08',3917,0,'','','0000-00-00','drashti','2025-12-09 18:03:34','','0000-00-00 00:00:00'),(0,0,3812,'2025-12-09','2026-03-08',3918,0,'','','0000-00-00','janvi','2025-12-09 18:04:31','','0000-00-00 00:00:00'),(0,0,3813,'2025-12-09','2026-03-08',3919,0,'','','0000-00-00','reception','2025-12-09 18:05:14','','0000-00-00 00:00:00'),(0,0,3814,'2025-12-09','2026-03-08',3920,0,'','','0000-00-00','janvi','2025-12-09 18:06:11','','0000-00-00 00:00:00'),(0,0,3815,'2025-12-09','2026-03-08',3921,0,'','','0000-00-00','drashti','2025-12-09 18:13:58','','0000-00-00 00:00:00'),(0,0,3816,'2025-12-09','2026-03-08',3922,0,'','','0000-00-00','janvi','2025-12-09 18:17:03','','0000-00-00 00:00:00'),(0,0,3817,'2025-12-09','2026-03-08',3923,0,'','','0000-00-00','drashti','2025-12-09 18:17:49','','0000-00-00 00:00:00'),(0,0,3818,'2025-12-09','2026-03-08',3924,0,'','','0000-00-00','drashti','2025-12-09 18:21:04','','0000-00-00 00:00:00'),(0,0,3819,'2025-12-09','2026-03-08',3349,0,'','','0000-00-00','reception','2025-12-09 18:21:57','','0000-00-00 00:00:00'),(0,0,3820,'2025-12-09','2026-03-08',3925,0,'','','0000-00-00','reception','2025-12-09 18:24:29','','0000-00-00 00:00:00'),(0,0,3821,'2025-12-09','2026-03-08',3926,0,'','','0000-00-00','janvi','2025-12-09 18:28:05','','0000-00-00 00:00:00'),(0,0,3822,'2025-12-09','2026-03-08',3927,0,'','','0000-00-00','janvi','2025-12-09 18:32:32','','0000-00-00 00:00:00'),(0,0,3823,'2025-12-09','2026-03-08',3928,0,'','','0000-00-00','janvi','2025-12-09 18:36:46','','0000-00-00 00:00:00'),(0,0,3824,'2025-12-09','2026-03-08',3929,0,'','','0000-00-00','reception','2025-12-09 18:46:55','','0000-00-00 00:00:00'),(0,0,3825,'2025-12-09','2026-03-08',3930,0,'','','0000-00-00','drashti','2025-12-09 18:48:04','','0000-00-00 00:00:00'),(0,0,3826,'2025-12-09','2026-03-08',3931,0,'','','0000-00-00','drashti','2025-12-09 18:59:25','','0000-00-00 00:00:00'),(0,0,3827,'2025-12-09','2026-03-08',3932,0,'','','0000-00-00','reception','2025-12-09 19:09:55','','0000-00-00 00:00:00'),(0,0,3828,'2025-12-09','2026-03-08',3933,0,'','','0000-00-00','reception','2025-12-09 19:12:44','','0000-00-00 00:00:00'),(0,0,3829,'2025-12-09','2026-03-08',3934,0,'','','0000-00-00','priyanshi','2025-12-09 19:15:39','','0000-00-00 00:00:00'),(0,0,3830,'2025-12-09','2026-03-08',3935,0,'','','0000-00-00','reception','2025-12-09 19:26:58','','0000-00-00 00:00:00'),(0,0,3831,'2025-12-09','2026-03-08',3936,0,'','','0000-00-00','priyanshi','2025-12-09 19:41:53','','0000-00-00 00:00:00'),(0,0,3832,'2025-12-09','2026-03-08',3937,0,'','','0000-00-00','janvi','2025-12-09 19:50:53','','0000-00-00 00:00:00'),(0,0,3833,'2025-12-10','2026-03-09',3940,0,'','','0000-00-00','urvashi','2025-12-10 08:54:44','','0000-00-00 00:00:00'),(0,0,3834,'2025-12-10','2026-03-09',3942,0,'','','0000-00-00','drashti','2025-12-10 09:49:59','','0000-00-00 00:00:00'),(0,0,3835,'2025-12-10','2026-03-09',3944,0,'','','0000-00-00','manshi','2025-12-10 10:07:44','','0000-00-00 00:00:00'),(0,0,3836,'2025-12-10','2026-03-09',3945,0,'','','0000-00-00','manshi','2025-12-10 10:11:00','','0000-00-00 00:00:00'),(0,0,3837,'2025-12-10','2026-03-09',3946,0,'','','0000-00-00','reception','2025-12-10 10:19:02','','0000-00-00 00:00:00'),(0,0,3838,'2025-12-10','2026-03-09',3947,0,'','','0000-00-00','janvi','2025-12-10 10:24:04','','0000-00-00 00:00:00'),(0,0,3839,'2025-12-10','2026-03-09',3948,0,'','','0000-00-00','janvi','2025-12-10 10:27:49','','0000-00-00 00:00:00'),(0,0,3840,'2025-12-10','2026-03-09',3949,0,'','','0000-00-00','reception','2025-12-10 10:29:51','','0000-00-00 00:00:00'),(0,0,3841,'2025-12-10','2026-03-09',3950,0,'','','0000-00-00','drashti','2025-12-10 10:33:16','','0000-00-00 00:00:00'),(0,0,3842,'2025-12-10','2026-03-09',3951,0,'','','0000-00-00','reception','2025-12-10 10:42:50','','0000-00-00 00:00:00'),(0,0,3843,'2025-12-10','2026-03-09',3952,0,'','','0000-00-00','reception','2025-12-10 10:51:37','','0000-00-00 00:00:00'),(0,0,3844,'2025-12-10','2026-03-09',3953,0,'','','0000-00-00','reception','2025-12-10 10:58:48','','0000-00-00 00:00:00'),(0,0,3845,'2025-12-10','2026-03-09',3954,0,'','','0000-00-00','drashti','2025-12-10 11:03:09','','0000-00-00 00:00:00'),(0,0,3846,'2025-12-10','2026-03-09',3955,0,'','','0000-00-00','manshi','2025-12-10 11:07:07','','0000-00-00 00:00:00'),(0,0,3847,'2025-12-10','2026-03-09',3956,0,'','','0000-00-00','reception','2025-12-10 11:07:51','','0000-00-00 00:00:00'),(0,0,3848,'2025-12-10','2026-03-09',3957,0,'','','0000-00-00','drashti','2025-12-10 11:12:20','','0000-00-00 00:00:00'),(0,0,3849,'2025-12-10','2026-03-09',3958,0,'','','0000-00-00','reception','2025-12-10 11:14:16','','0000-00-00 00:00:00'),(0,0,3850,'2025-12-10','2026-03-09',3959,0,'','','0000-00-00','drashti','2025-12-10 11:28:24','','0000-00-00 00:00:00'),(0,0,3851,'2025-12-10','2026-03-09',3960,0,'','','0000-00-00','janvi','2025-12-10 11:29:02','','0000-00-00 00:00:00'),(0,0,3852,'2025-12-10','2026-03-09',3961,0,'','','0000-00-00','reception','2025-12-10 11:36:49','','0000-00-00 00:00:00'),(0,0,3853,'2025-12-10','2026-03-09',3962,0,'','','0000-00-00','janvi','2025-12-10 11:37:15','','0000-00-00 00:00:00'),(0,0,3854,'2025-12-10','2026-03-09',3963,0,'','','0000-00-00','drashti','2025-12-10 11:39:59','','0000-00-00 00:00:00'),(0,0,3855,'2025-12-10','2026-03-09',3964,0,'','','0000-00-00','reception','2025-12-10 11:42:32','','0000-00-00 00:00:00'),(0,0,3856,'2025-12-10','2026-03-09',3965,0,'','','0000-00-00','reception','2025-12-10 11:46:18','','0000-00-00 00:00:00'),(0,0,3857,'2025-12-10','2026-03-09',3966,0,'','','0000-00-00','janvi','2025-12-10 11:47:09','','0000-00-00 00:00:00'),(0,0,3858,'2025-12-10','2026-03-09',3967,0,'','','0000-00-00','janvi','2025-12-10 11:50:31','','0000-00-00 00:00:00'),(0,0,3859,'2025-12-10','2026-03-09',3968,0,'','','0000-00-00','drashti','2025-12-10 12:00:41','','0000-00-00 00:00:00'),(0,0,3860,'2025-12-10','2026-03-09',3969,0,'','','0000-00-00','manshi','2025-12-10 12:07:27','','0000-00-00 00:00:00'),(0,0,3861,'2025-12-10','2026-03-09',3343,0,'','','0000-00-00','reception','2025-12-10 12:07:39','','0000-00-00 00:00:00'),(0,0,3862,'2025-12-10','2026-03-09',3970,0,'','','0000-00-00','drashti','2025-12-10 12:08:44','','0000-00-00 00:00:00'),(0,0,3863,'2025-12-10','2026-03-09',3971,0,'','','0000-00-00','drashti','2025-12-10 12:20:32','','0000-00-00 00:00:00'),(0,0,3864,'2025-12-10','2026-03-09',3972,0,'','','0000-00-00','janvi','2025-12-10 12:20:55','','0000-00-00 00:00:00'),(0,0,3865,'2025-12-10','2026-03-09',3973,0,'','','0000-00-00','reception','2025-12-10 12:22:51','','0000-00-00 00:00:00'),(0,0,3866,'2025-12-10','2026-03-09',3974,0,'','','0000-00-00','drashti','2025-12-10 12:26:39','','0000-00-00 00:00:00'),(0,0,3867,'2025-12-10','2026-03-09',3975,0,'','','0000-00-00','reception','2025-12-10 12:27:02','','0000-00-00 00:00:00'),(0,0,3868,'2025-12-10','2026-03-09',3976,0,'','','0000-00-00','drashti','2025-12-10 12:28:56','','0000-00-00 00:00:00'),(0,0,3869,'2025-12-10','2026-03-09',3978,0,'','','0000-00-00','janvi','2025-12-10 13:28:10','','0000-00-00 00:00:00'),(0,0,3870,'2025-12-10','2026-03-09',3979,0,'','','0000-00-00','reception','2025-12-10 13:30:47','','0000-00-00 00:00:00'),(0,0,3871,'2025-12-10','2026-03-09',3980,0,'','','0000-00-00','reception','2025-12-10 14:27:17','','0000-00-00 00:00:00'),(0,0,3872,'2025-12-10','2026-03-09',3981,0,'','','0000-00-00','urvashi','2025-12-10 14:53:34','','0000-00-00 00:00:00'),(0,0,3873,'2025-12-10','2026-03-09',3982,0,'','','0000-00-00','urvashi','2025-12-10 14:58:55','','0000-00-00 00:00:00'),(0,0,3874,'2025-12-10','2026-03-09',3983,0,'','','0000-00-00','reception','2025-12-10 16:12:36','','0000-00-00 00:00:00'),(0,0,3875,'2025-12-10','2026-03-09',3984,0,'','','0000-00-00','urvashi','2025-12-10 16:14:08','','0000-00-00 00:00:00'),(0,0,3876,'2025-12-10','2026-03-09',3985,0,'','','0000-00-00','reception','2025-12-10 16:53:51','','0000-00-00 00:00:00'),(0,0,3877,'2025-12-10','2026-03-09',3986,0,'','','0000-00-00','manshi','2025-12-10 16:57:47','','0000-00-00 00:00:00'),(0,0,3878,'2025-12-10','2026-03-09',3987,0,'','','0000-00-00','reception','2025-12-10 16:58:02','','0000-00-00 00:00:00'),(0,0,3879,'2025-12-10','2026-03-09',3988,0,'','','0000-00-00','priyanshi','2025-12-10 17:06:57','','0000-00-00 00:00:00'),(0,0,3880,'2025-12-10','2026-03-09',3989,0,'','','0000-00-00','reception','2025-12-10 17:09:13','','0000-00-00 00:00:00'),(0,0,3881,'2025-12-10','2026-03-09',3990,0,'','','0000-00-00','priyanshi','2025-12-10 17:15:56','','0000-00-00 00:00:00'),(0,0,3882,'2025-12-10','2026-03-09',3991,0,'','','0000-00-00','priyanshi','2025-12-10 17:22:22','','0000-00-00 00:00:00'),(0,0,3883,'2025-12-10','2026-03-09',3992,0,'','','0000-00-00','reception','2025-12-10 17:28:00','','0000-00-00 00:00:00'),(0,0,3884,'2025-12-10','2026-03-09',3993,0,'','','0000-00-00','reception','2025-12-10 17:35:49','','0000-00-00 00:00:00'),(0,0,3885,'2025-12-10','2026-03-09',3994,0,'','','0000-00-00','priyanshi','2025-12-10 17:54:12','','0000-00-00 00:00:00'),(0,0,3886,'2025-12-10','2026-03-09',3995,0,'','','0000-00-00','reception','2025-12-10 17:57:44','','0000-00-00 00:00:00'),(0,0,3887,'2025-12-10','2026-03-09',3996,0,'','','0000-00-00','janvi','2025-12-10 17:59:39','','0000-00-00 00:00:00'),(0,0,3888,'2025-12-10','2026-03-09',3997,0,'','','0000-00-00','priyanshi','2025-12-10 18:01:09','','0000-00-00 00:00:00'),(0,0,3889,'2025-12-10','2026-03-09',3998,0,'','','0000-00-00','janvi','2025-12-10 18:02:45','','0000-00-00 00:00:00'),(0,0,3890,'2025-12-10','2026-03-09',3999,0,'','','0000-00-00','manshi','2025-12-10 18:34:56','','0000-00-00 00:00:00'),(0,0,3891,'2025-12-10','2026-03-09',4000,0,'','','0000-00-00','reception','2025-12-10 18:34:58','','0000-00-00 00:00:00'),(0,0,3892,'2025-12-10','2026-03-09',4002,0,'','','0000-00-00','priyanshi','2025-12-10 18:39:13','','0000-00-00 00:00:00'),(0,0,3893,'2025-12-10','2026-03-09',4003,0,'','','0000-00-00','priyanshi','2025-12-10 18:51:11','','0000-00-00 00:00:00'),(0,0,3894,'2025-12-10','2026-03-09',4004,0,'','','0000-00-00','janvi','2025-12-10 18:57:09','','0000-00-00 00:00:00'),(0,0,3895,'2025-12-10','2026-03-09',4005,0,'','','0000-00-00','manshi','2025-12-10 19:06:14','','0000-00-00 00:00:00'),(0,0,3896,'2025-12-10','2026-03-09',4006,0,'','','0000-00-00','reception','2025-12-10 19:16:03','','0000-00-00 00:00:00'),(0,0,3897,'2025-12-10','2026-03-09',3543,0,'','','0000-00-00','janvi','2025-12-10 19:31:26','','0000-00-00 00:00:00'),(0,0,3898,'2025-12-10','2026-03-09',3440,0,'','','0000-00-00','shweta','2025-12-10 19:31:53','','0000-00-00 00:00:00'),(0,0,3899,'2025-12-10','2026-03-09',4007,0,'','','0000-00-00','shweta','2025-12-10 19:33:25','','0000-00-00 00:00:00'),(0,0,3900,'2025-12-10','2026-03-09',4008,0,'','','0000-00-00','janvi','2025-12-10 19:37:56','','0000-00-00 00:00:00'),(0,0,3901,'2025-12-10','2026-03-09',4009,0,'','','0000-00-00','shweta','2025-12-10 20:09:37','','0000-00-00 00:00:00'),(0,0,3902,'2025-12-11','2026-03-10',4011,0,'','','0000-00-00','reception','2025-12-11 08:38:55','','0000-00-00 00:00:00'),(0,0,3903,'2025-12-11','2026-03-10',4012,0,'','','0000-00-00','drashti','2025-12-11 10:00:40','','0000-00-00 00:00:00'),(0,0,3904,'2025-12-11','2026-03-10',4013,0,'','','0000-00-00','janvi','2025-12-11 10:19:15','','0000-00-00 00:00:00'),(0,0,3905,'2025-12-11','2026-03-10',4014,0,'','','0000-00-00','janvi','2025-12-11 10:22:35','','0000-00-00 00:00:00'),(0,0,3906,'2025-12-11','2026-03-10',4015,0,'','','0000-00-00','reception','2025-12-11 10:31:47','','0000-00-00 00:00:00'),(0,0,3907,'2025-12-11','2026-03-10',4016,0,'','','0000-00-00','reception','2025-12-11 10:36:32','','0000-00-00 00:00:00'),(0,0,3908,'2025-12-11','2026-03-10',4017,0,'','','0000-00-00','reception','2025-12-11 10:45:07','','0000-00-00 00:00:00'),(0,0,3909,'2025-12-11','2026-03-10',4018,0,'','','0000-00-00','drashti','2025-12-11 10:53:38','','0000-00-00 00:00:00'),(0,0,3910,'2025-12-11','2026-03-10',4019,0,'','','0000-00-00','reception','2025-12-11 10:57:37','','0000-00-00 00:00:00'),(0,0,3911,'2025-12-11','2026-03-10',4020,0,'','','0000-00-00','manshi','2025-12-11 11:15:36','','0000-00-00 00:00:00'),(0,0,3912,'2025-12-11','2026-03-10',4021,0,'','','0000-00-00','janvi','2025-12-11 11:21:00','','0000-00-00 00:00:00'),(0,0,3913,'2025-12-11','2026-03-10',3583,0,'','','0000-00-00','drashti','2025-12-11 11:22:55','','0000-00-00 00:00:00'),(0,0,3914,'2025-12-11','2026-03-10',4022,0,'','','0000-00-00','drashti','2025-12-11 11:26:09','','0000-00-00 00:00:00'),(0,0,3915,'2025-12-11','2026-03-10',4023,0,'','','0000-00-00','reception','2025-12-11 11:27:11','','0000-00-00 00:00:00'),(0,0,3916,'2025-12-11','2026-03-10',4024,0,'','','0000-00-00','drashti','2025-12-11 11:36:02','','0000-00-00 00:00:00'),(0,0,3917,'2025-12-11','2026-03-10',4025,0,'','','0000-00-00','reception','2025-12-11 11:41:48','','0000-00-00 00:00:00'),(0,0,3918,'2025-12-11','2026-03-10',4026,0,'','','0000-00-00','reception','2025-12-11 11:43:12','','0000-00-00 00:00:00'),(0,0,3919,'2025-12-11','2026-03-10',4027,0,'','','0000-00-00','manshi','2025-12-11 11:49:22','','0000-00-00 00:00:00'),(0,0,3920,'2025-12-11','2026-03-10',4028,0,'','','0000-00-00','reception','2025-12-11 11:49:39','','0000-00-00 00:00:00'),(0,0,3921,'2025-12-11','2026-03-10',4029,0,'','','0000-00-00','drashti','2025-12-11 12:04:31','','0000-00-00 00:00:00'),(0,0,3922,'2025-12-11','2026-03-10',4030,0,'','','0000-00-00','drashti','2025-12-11 12:07:24','','0000-00-00 00:00:00'),(0,0,3923,'2025-12-11','2026-03-10',4031,0,'','','0000-00-00','reception','2025-12-11 12:09:14','','0000-00-00 00:00:00'),(0,0,3924,'2025-12-11','2026-03-10',4032,0,'','','0000-00-00','drashti','2025-12-11 12:17:01','','0000-00-00 00:00:00'),(0,0,3925,'2025-12-11','2026-03-10',4033,0,'','','0000-00-00','reception','2025-12-11 12:19:07','','0000-00-00 00:00:00'),(0,0,3926,'2025-12-11','2026-03-10',4034,0,'','','0000-00-00','janvi','2025-12-11 12:24:39','','0000-00-00 00:00:00'),(0,0,3927,'2025-12-11','2026-03-10',4035,0,'','','0000-00-00','drashti','2025-12-11 12:29:23','','0000-00-00 00:00:00'),(0,0,3928,'2025-12-11','2026-03-10',4036,0,'','','0000-00-00','reception','2025-12-11 12:36:11','','0000-00-00 00:00:00'),(0,0,3929,'2025-12-11','2026-03-10',4037,0,'','','0000-00-00','drashti','2025-12-11 12:43:33','','0000-00-00 00:00:00'),(0,0,3930,'2025-12-11','2026-03-10',4038,0,'','','0000-00-00','drashti','2025-12-11 12:45:40','','0000-00-00 00:00:00'),(0,0,3931,'2025-12-11','2026-03-10',4039,0,'','','0000-00-00','reception','2025-12-11 12:47:27','','0000-00-00 00:00:00'),(0,0,3932,'2025-12-11','2026-03-10',4040,0,'','','0000-00-00','reception','2025-12-11 12:54:37','','0000-00-00 00:00:00'),(0,0,3933,'2025-12-11','2026-03-10',4041,0,'','','0000-00-00','janvi','2025-12-11 13:11:38','','0000-00-00 00:00:00'),(0,0,3934,'2025-12-11','2026-03-10',4042,0,'','','0000-00-00','drashti','2025-12-11 13:19:27','','0000-00-00 00:00:00'),(0,0,3935,'2025-12-11','2026-03-10',4043,0,'','','0000-00-00','reception','2025-12-11 14:17:22','','0000-00-00 00:00:00'),(0,0,3936,'2025-12-11','2026-03-10',4044,0,'','','0000-00-00','reception','2025-12-11 16:02:35','','0000-00-00 00:00:00'),(0,0,3937,'2025-12-11','2026-03-10',4045,0,'','','0000-00-00','reception','2025-12-11 16:07:42','','0000-00-00 00:00:00'),(0,0,3938,'2025-12-11','2026-03-10',4046,0,'','','0000-00-00','reception','2025-12-11 16:33:17','','0000-00-00 00:00:00'),(0,0,3939,'2025-12-11','2026-03-10',4047,0,'','','0000-00-00','reception','2025-12-11 16:39:20','','0000-00-00 00:00:00'),(0,0,3940,'2025-12-11','2026-03-10',4048,0,'','','0000-00-00','drashti','2025-12-11 16:45:01','','0000-00-00 00:00:00'),(0,0,3941,'2025-12-11','2026-03-10',4049,0,'','','0000-00-00','manshi','2025-12-11 17:03:43','','0000-00-00 00:00:00'),(0,0,3942,'2025-12-11','2026-03-10',4050,0,'','','0000-00-00','manshi','2025-12-11 17:24:55','','0000-00-00 00:00:00'),(0,0,3943,'2025-12-11','2026-03-10',4051,0,'','','0000-00-00','manshi','2025-12-11 17:38:20','','0000-00-00 00:00:00'),(0,0,3944,'2025-12-11','2026-03-10',4052,0,'','','0000-00-00','reception','2025-12-11 18:02:39','','0000-00-00 00:00:00'),(0,0,3945,'2025-12-11','2026-03-10',4053,0,'','','0000-00-00','drashti','2025-12-11 18:14:29','','0000-00-00 00:00:00'),(0,0,3946,'2025-12-11','2026-03-10',4054,0,'','','0000-00-00','manshi','2025-12-11 18:14:40','','0000-00-00 00:00:00'),(0,0,3947,'2025-12-11','2026-03-10',4055,0,'','','0000-00-00','drashti','2025-12-11 18:22:22','','0000-00-00 00:00:00'),(0,0,3948,'2025-12-11','2026-03-10',4056,0,'','','0000-00-00','drashti','2025-12-11 18:28:13','','0000-00-00 00:00:00'),(0,0,3949,'2025-12-11','2026-03-10',4057,0,'','','0000-00-00','janvi','2025-12-11 18:28:24','','0000-00-00 00:00:00'),(0,0,3950,'2025-12-11','2026-03-10',4058,0,'','','0000-00-00','janvi','2025-12-11 18:29:57','','0000-00-00 00:00:00'),(0,0,3951,'2025-12-11','2026-03-10',4059,0,'','','0000-00-00','janvi','2025-12-11 18:34:38','','0000-00-00 00:00:00'),(0,0,3952,'2025-12-11','2026-03-10',4060,0,'','','0000-00-00','reception','2025-12-11 18:41:28','','0000-00-00 00:00:00'),(0,0,3953,'2025-12-11','2026-03-10',4061,0,'','','0000-00-00','reception','2025-12-11 18:43:49','','0000-00-00 00:00:00'),(0,0,3954,'2025-12-11','2026-03-10',4062,0,'','','0000-00-00','reception','2025-12-11 18:46:36','','0000-00-00 00:00:00'),(0,0,3955,'2025-12-11','2026-03-10',4063,0,'','','0000-00-00','drashti','2025-12-11 18:52:49','','0000-00-00 00:00:00'),(0,0,3956,'2025-12-11','2026-03-10',4064,0,'','','0000-00-00','reception','2025-12-11 18:59:43','','0000-00-00 00:00:00'),(0,0,3957,'2025-12-11','2026-03-10',4065,0,'','','0000-00-00','drashti','2025-12-11 19:07:49','','0000-00-00 00:00:00'),(0,0,3958,'2025-12-11','2026-03-10',4066,0,'','','0000-00-00','janvi','2025-12-11 19:13:21','','0000-00-00 00:00:00'),(0,0,3959,'2025-12-11','2026-03-10',3943,0,'','','0000-00-00','janvi','2025-12-11 20:05:32','','0000-00-00 00:00:00'),(0,0,3960,'2025-12-12','2026-03-11',4067,0,'','','0000-00-00','reception','2025-12-12 08:35:28','','0000-00-00 00:00:00'),(0,0,3961,'2025-12-12','2026-03-11',4068,0,'','','0000-00-00','reception','2025-12-12 08:39:21','','0000-00-00 00:00:00'),(0,0,3962,'2025-12-12','2026-03-11',4069,0,'','','0000-00-00','reception','2025-12-12 10:24:15','','0000-00-00 00:00:00'),(0,0,3963,'2025-12-12','2026-03-11',4070,0,'','','0000-00-00','reception','2025-12-12 10:33:10','','0000-00-00 00:00:00'),(0,0,3964,'2025-12-12','2026-03-11',4071,0,'','','0000-00-00','drashti','2025-12-12 10:33:35','','0000-00-00 00:00:00'),(0,0,3965,'2025-12-12','2026-03-11',4072,0,'','','0000-00-00','reception','2025-12-12 10:51:17','','0000-00-00 00:00:00'),(0,0,3966,'2025-12-12','2026-03-11',4073,0,'','','0000-00-00','janvi','2025-12-12 10:51:57','','0000-00-00 00:00:00'),(0,0,3967,'2025-12-12','2026-03-11',4074,0,'','','0000-00-00','drashti','2025-12-12 10:52:25','','0000-00-00 00:00:00'),(0,0,3968,'2025-12-12','2026-03-11',4075,0,'','','0000-00-00','manshi','2025-12-12 11:05:38','','0000-00-00 00:00:00'),(0,0,3969,'2025-12-12','2026-03-11',4076,0,'','','0000-00-00','manshi','2025-12-12 11:23:56','','0000-00-00 00:00:00'),(0,0,3970,'2025-12-12','2026-03-11',4077,0,'','','0000-00-00','reception','2025-12-12 11:24:47','','0000-00-00 00:00:00'),(0,0,3971,'2025-12-12','2026-03-11',4078,0,'','','0000-00-00','drashti','2025-12-12 11:25:15','','0000-00-00 00:00:00'),(0,0,3972,'2025-12-12','2026-03-11',4079,0,'','','0000-00-00','drashti','2025-12-12 11:26:44','','0000-00-00 00:00:00'),(0,0,3973,'2025-12-12','2026-03-11',4080,0,'','','0000-00-00','janvi','2025-12-12 11:28:02','','0000-00-00 00:00:00'),(0,0,3974,'2025-12-12','2026-03-11',4081,0,'','','0000-00-00','drashti','2025-12-12 11:33:31','','0000-00-00 00:00:00'),(0,0,3975,'2025-12-12','2026-03-11',4082,0,'','','0000-00-00','janvi','2025-12-12 11:41:19','','0000-00-00 00:00:00'),(0,0,3976,'2025-12-12','2026-03-11',4083,0,'','','0000-00-00','drashti','2025-12-12 11:43:59','','0000-00-00 00:00:00'),(0,0,3977,'2025-12-12','2026-03-11',4084,0,'','','0000-00-00','janvi','2025-12-12 11:58:33','','0000-00-00 00:00:00'),(0,0,3978,'2025-12-12','2026-03-11',4085,0,'','','0000-00-00','reception','2025-12-12 12:14:58','','0000-00-00 00:00:00'),(0,0,3979,'2025-12-12','2026-03-11',4086,0,'','','0000-00-00','drashti','2025-12-12 12:17:42','','0000-00-00 00:00:00'),(0,0,3980,'2025-12-12','2026-03-11',4087,0,'','','0000-00-00','drashti','2025-12-12 12:27:24','','0000-00-00 00:00:00'),(0,0,3981,'2025-12-12','2026-03-11',4088,0,'','','0000-00-00','drashti','2025-12-12 12:38:25','','0000-00-00 00:00:00'),(0,0,3982,'2025-12-12','2026-03-11',4089,0,'','','0000-00-00','drashti','2025-12-12 12:42:21','','0000-00-00 00:00:00'),(0,0,3983,'2025-12-12','2026-03-11',4090,0,'','','0000-00-00','reception','2025-12-12 12:53:05','','0000-00-00 00:00:00'),(0,0,3984,'2025-12-12','2026-03-11',4091,0,'','','0000-00-00','janvi','2025-12-12 13:32:46','','0000-00-00 00:00:00'),(0,0,3985,'2025-12-12','2026-03-11',4092,0,'','','0000-00-00','reception','2025-12-12 16:14:59','','0000-00-00 00:00:00'),(0,0,3986,'2025-12-12','2026-03-11',4093,0,'','','0000-00-00','reception','2025-12-12 16:23:45','','0000-00-00 00:00:00'),(0,0,3987,'2025-12-12','2026-03-11',4094,0,'','','0000-00-00','drashti','2025-12-12 16:44:53','','0000-00-00 00:00:00'),(0,0,3988,'2025-12-12','2026-03-11',4095,0,'','','0000-00-00','reception','2025-12-12 16:55:42','','0000-00-00 00:00:00'),(0,0,3989,'2025-12-12','2026-03-11',4096,0,'','','0000-00-00','reception','2025-12-12 17:07:58','','0000-00-00 00:00:00'),(0,0,3990,'2025-12-12','2026-03-11',4097,0,'','','0000-00-00','drashti','2025-12-12 17:09:27','','0000-00-00 00:00:00'),(0,0,3991,'2025-12-12','2026-03-11',4098,0,'','','0000-00-00','reception','2025-12-12 17:10:04','','0000-00-00 00:00:00'),(0,0,3992,'2025-12-12','2026-03-11',4099,0,'','','0000-00-00','reception','2025-12-12 17:13:04','','0000-00-00 00:00:00'),(0,0,3993,'2025-12-12','2026-03-11',4100,0,'','','0000-00-00','reception','2025-12-12 17:16:48','','0000-00-00 00:00:00'),(0,0,3994,'2025-12-12','2026-03-11',4101,0,'','','0000-00-00','reception','2025-12-12 17:29:09','','0000-00-00 00:00:00'),(0,0,3995,'2025-12-12','2026-03-11',4102,0,'','','0000-00-00','reception','2025-12-12 17:33:27','','0000-00-00 00:00:00'),(0,0,3996,'2025-12-12','2026-03-11',4103,0,'','','0000-00-00','drashti','2025-12-12 17:46:25','','0000-00-00 00:00:00'),(0,0,3997,'2025-12-12','2026-03-11',4104,0,'','','0000-00-00','reception','2025-12-12 17:55:57','','0000-00-00 00:00:00'),(0,0,3998,'2025-12-12','2026-03-11',4105,0,'','','0000-00-00','reception','2025-12-12 17:58:04','','0000-00-00 00:00:00'),(0,0,3999,'2025-12-12','2026-03-11',4106,0,'','','0000-00-00','reception','2025-12-12 18:05:32','','0000-00-00 00:00:00'),(0,0,4000,'2025-12-12','2026-03-11',4107,0,'','','0000-00-00','manshi','2025-12-12 18:11:40','','0000-00-00 00:00:00'),(0,0,4001,'2025-12-12','2026-03-11',4108,0,'','','0000-00-00','reception','2025-12-12 18:12:25','','0000-00-00 00:00:00'),(0,0,4002,'2025-12-12','2026-03-11',4109,0,'','','0000-00-00','reception','2025-12-12 18:14:10','','0000-00-00 00:00:00'),(0,0,4003,'2025-12-12','2026-03-11',4110,0,'','','0000-00-00','reception','2025-12-12 18:16:32','','0000-00-00 00:00:00'),(0,0,4004,'2025-12-12','2026-03-11',4111,0,'','','0000-00-00','drashti','2025-12-12 18:19:15','','0000-00-00 00:00:00'),(0,0,4005,'2025-12-12','2026-03-11',4112,0,'','','0000-00-00','janvi','2025-12-12 18:19:16','','0000-00-00 00:00:00'),(0,0,4006,'2025-12-12','2026-03-11',4113,0,'','','0000-00-00','drashti','2025-12-12 18:21:05','','0000-00-00 00:00:00'),(0,0,4007,'2025-12-12','2026-03-11',4114,0,'','','0000-00-00','drashti','2025-12-12 18:22:58','','0000-00-00 00:00:00'),(0,0,4008,'2025-12-12','2026-03-11',4115,0,'','','0000-00-00','janvi','2025-12-12 18:23:37','','0000-00-00 00:00:00'),(0,0,4009,'2025-12-12','2026-03-11',4116,0,'','','0000-00-00','drashti','2025-12-12 18:30:26','','0000-00-00 00:00:00'),(0,0,4010,'2025-12-12','2026-03-11',4117,0,'','','0000-00-00','manshi','2025-12-12 18:34:23','','0000-00-00 00:00:00'),(0,0,4011,'2025-12-12','2026-03-11',4118,0,'','','0000-00-00','janvi','2025-12-12 18:46:08','','0000-00-00 00:00:00'),(0,0,4012,'2025-12-12','2026-03-11',4119,0,'','','0000-00-00','drashti','2025-12-12 18:46:22','','0000-00-00 00:00:00'),(0,0,4013,'2025-12-12','2026-03-11',4120,0,'','','0000-00-00','reception','2025-12-12 18:47:30','','0000-00-00 00:00:00'),(0,0,4014,'2025-12-12','2026-03-11',4121,0,'','','0000-00-00','reception','2025-12-12 18:59:52','','0000-00-00 00:00:00'),(0,0,4015,'2025-12-12','2026-03-11',4122,0,'','','0000-00-00','drashti','2025-12-12 19:07:52','','0000-00-00 00:00:00'),(0,0,4016,'2025-12-12','2026-03-11',4124,0,'','','0000-00-00','drashti','2025-12-12 19:25:48','','0000-00-00 00:00:00'),(0,0,4017,'2025-12-12','2026-03-11',4125,0,'','','0000-00-00','reception','2025-12-12 19:34:41','','0000-00-00 00:00:00'),(0,0,4018,'2025-12-12','2026-03-11',4126,0,'','','0000-00-00','manshi','2025-12-12 19:49:37','','0000-00-00 00:00:00'),(0,0,4019,'2025-12-12','2026-03-11',4127,0,'','','0000-00-00','reception','2025-12-12 19:52:40','','0000-00-00 00:00:00'),(0,0,4020,'2025-12-12','2026-03-11',4128,0,'','','0000-00-00','shweta','2025-12-12 20:05:10','','0000-00-00 00:00:00'),(0,0,4021,'2025-12-12','2026-03-11',4129,0,'','','0000-00-00','shweta','2025-12-12 20:25:41','','0000-00-00 00:00:00'),(0,0,4022,'2025-12-12','2026-03-11',4130,0,'','','0000-00-00','priyanshi','2025-12-12 20:26:58','','0000-00-00 00:00:00'),(0,0,4023,'2025-12-13','2026-03-12',3780,0,'','','0000-00-00','reception','2025-12-13 08:38:41','','0000-00-00 00:00:00'),(0,0,4024,'2025-12-13','2026-03-12',4131,0,'','','0000-00-00','reception','2025-12-13 09:58:10','','0000-00-00 00:00:00'),(0,0,4025,'2025-12-13','2026-03-12',4132,0,'','','0000-00-00','priyanshi','2025-12-13 10:01:16','','0000-00-00 00:00:00'),(0,0,4026,'2025-12-13','2026-03-12',4133,0,'','','0000-00-00','drashti','2025-12-13 10:01:36','','0000-00-00 00:00:00'),(0,0,4027,'2025-12-13','2026-03-12',4134,0,'','','0000-00-00','reception','2025-12-13 10:09:45','','0000-00-00 00:00:00'),(0,0,4028,'2025-12-13','2026-03-12',4135,0,'','','0000-00-00','priyanshi','2025-12-13 10:28:29','','0000-00-00 00:00:00'),(0,0,4029,'2025-12-13','2026-03-12',4136,0,'','','0000-00-00','drashti','2025-12-13 10:33:55','','0000-00-00 00:00:00'),(0,0,4030,'2025-12-13','2026-03-12',4137,0,'','','0000-00-00','priyanshi','2025-12-13 10:34:00','','0000-00-00 00:00:00'),(0,0,4031,'2025-12-13','2026-03-12',4138,0,'','','0000-00-00','reception','2025-12-13 10:34:23','','0000-00-00 00:00:00'),(0,0,4032,'2025-12-13','2026-03-12',4139,0,'','','0000-00-00','reception','2025-12-13 10:36:18','','0000-00-00 00:00:00'),(0,0,4033,'2025-12-13','2026-03-12',4140,0,'','','0000-00-00','priyanshi','2025-12-13 10:39:55','','0000-00-00 00:00:00'),(0,0,4034,'2025-12-13','2026-03-12',4141,0,'','','0000-00-00','drashti','2025-12-13 10:46:22','','0000-00-00 00:00:00'),(0,0,4035,'2025-12-13','2026-03-12',4142,0,'','','0000-00-00','reception','2025-12-13 10:51:57','','0000-00-00 00:00:00'),(0,0,4036,'2025-12-13','2026-03-12',4143,0,'','','0000-00-00','priyanshi','2025-12-13 10:55:05','','0000-00-00 00:00:00'),(0,0,4037,'2025-12-13','2026-03-12',4144,0,'','','0000-00-00','reception','2025-12-13 11:04:23','','0000-00-00 00:00:00'),(0,0,4038,'2025-12-13','2026-03-12',4145,0,'','','0000-00-00','drashti','2025-12-13 11:04:24','','0000-00-00 00:00:00'),(0,0,4039,'2025-12-13','2026-03-12',4146,0,'','','0000-00-00','priyanshi','2025-12-13 11:06:11','','0000-00-00 00:00:00'),(0,0,4040,'2025-12-13','2026-03-12',4147,0,'','','0000-00-00','reception','2025-12-13 11:08:39','','0000-00-00 00:00:00'),(0,0,4041,'2025-12-13','2026-03-12',4148,0,'','','0000-00-00','reception','2025-12-13 11:13:30','','0000-00-00 00:00:00'),(0,0,4042,'2025-12-13','2026-03-12',4149,0,'','','0000-00-00','reception','2025-12-13 11:27:29','','0000-00-00 00:00:00'),(0,0,4043,'2025-12-13','2026-03-12',4150,0,'','','0000-00-00','reception','2025-12-13 11:30:16','','0000-00-00 00:00:00'),(0,0,4044,'2025-12-13','2026-03-12',4151,0,'','','0000-00-00','priyanshi','2025-12-13 11:30:40','','0000-00-00 00:00:00'),(0,0,4045,'2025-12-13','2026-03-12',4152,0,'','','0000-00-00','reception','2025-12-13 11:35:39','','0000-00-00 00:00:00'),(0,0,4046,'2025-12-13','2026-03-12',4153,0,'','','0000-00-00','reception','2025-12-13 12:14:04','','0000-00-00 00:00:00'),(0,0,4047,'2025-12-13','2026-03-12',4154,0,'','','0000-00-00','drashti','2025-12-13 12:14:41','','0000-00-00 00:00:00'),(0,0,4048,'2025-12-13','2026-03-12',4155,0,'','','0000-00-00','reception','2025-12-13 12:17:35','','0000-00-00 00:00:00'),(0,0,4049,'2025-12-13','2026-03-12',4156,0,'','','0000-00-00','janvi','2025-12-13 12:19:27','','0000-00-00 00:00:00'),(0,0,4050,'2025-12-13','2026-03-12',3510,0,'','','0000-00-00','drashti','2025-12-13 12:30:22','','0000-00-00 00:00:00'),(0,0,4051,'2025-12-13','2026-03-12',4158,0,'','','0000-00-00','reception','2025-12-13 12:33:02','','0000-00-00 00:00:00'),(0,0,4052,'2025-12-13','2026-03-12',4159,0,'','','0000-00-00','drashti','2025-12-13 12:34:20','','0000-00-00 00:00:00'),(0,0,4053,'2025-12-13','2026-03-12',4160,0,'','','0000-00-00','drashti','2025-12-13 12:35:29','','0000-00-00 00:00:00'),(0,0,4054,'2025-12-13','2026-03-12',4161,0,'','','0000-00-00','shweta','2025-12-13 13:12:13','','0000-00-00 00:00:00'),(0,0,4055,'2025-12-13','2026-03-12',4162,0,'','','0000-00-00','janvi','2025-12-13 17:34:11','','0000-00-00 00:00:00'),(0,0,4056,'2025-12-13','2026-03-12',4163,0,'','','0000-00-00','reception','2025-12-13 17:48:12','','0000-00-00 00:00:00'),(0,0,4057,'2025-12-13','2026-03-12',4164,0,'','','0000-00-00','reception','2025-12-13 17:57:54','','0000-00-00 00:00:00'),(0,0,4058,'2025-12-13','2026-03-12',4165,0,'','','0000-00-00','shweta','2025-12-13 18:01:39','','0000-00-00 00:00:00'),(0,0,4059,'2025-12-13','2026-03-12',4166,0,'','','0000-00-00','shweta','2025-12-13 18:42:23','','0000-00-00 00:00:00'),(0,0,4060,'2025-12-13','2026-03-12',4167,0,'','','0000-00-00','shweta','2025-12-13 19:26:43','','0000-00-00 00:00:00'),(0,0,4061,'2025-12-14','2026-03-13',4168,0,'','','0000-00-00','priyanshi','2025-12-14 09:36:01','','0000-00-00 00:00:00'),(0,0,4062,'2025-12-14','2026-03-13',3765,0,'','','0000-00-00','priyanshi','2025-12-14 09:50:53','','0000-00-00 00:00:00'),(0,0,4063,'2025-12-14','2026-03-13',4169,0,'','','0000-00-00','priyanshi','2025-12-14 10:01:42','','0000-00-00 00:00:00'),(0,0,4064,'2025-12-14','2026-03-13',4170,0,'','','0000-00-00','priyanshi','2025-12-14 10:40:01','','0000-00-00 00:00:00'),(0,0,4065,'2025-12-15','2026-03-14',4175,0,'','','0000-00-00','reception','2025-12-15 08:50:21','','0000-00-00 00:00:00'),(0,0,4066,'2025-12-15','2026-03-14',4176,0,'','','0000-00-00','priyanshi','2025-12-15 09:14:59','','0000-00-00 00:00:00'),(0,0,4067,'2025-12-15','2026-03-14',4177,0,'','','0000-00-00','reception','2025-12-15 09:15:05','','0000-00-00 00:00:00'),(0,0,4068,'2025-12-15','2026-03-14',4178,0,'','','0000-00-00','reception','2025-12-15 10:10:32','','0000-00-00 00:00:00'),(0,0,4069,'2025-12-15','2026-03-14',4179,0,'','','0000-00-00','drashti','2025-12-15 10:15:39','','0000-00-00 00:00:00'),(0,0,4070,'2025-12-15','2026-03-14',4180,0,'','','0000-00-00','reception','2025-12-15 10:25:08','','0000-00-00 00:00:00'),(0,0,4071,'2025-12-15','2026-03-14',4181,0,'','','0000-00-00','reception','2025-12-15 10:30:15','','0000-00-00 00:00:00'),(0,0,4072,'2025-12-15','2026-03-14',4182,0,'','','0000-00-00','shweta','2025-12-15 10:32:50','','0000-00-00 00:00:00'),(0,0,4073,'2025-12-15','2026-03-14',4183,0,'','','0000-00-00','shweta','2025-12-15 10:39:47','','0000-00-00 00:00:00'),(0,0,4074,'2025-12-15','2026-03-14',3778,0,'','','0000-00-00','priyanshi','2025-12-15 10:43:18','','0000-00-00 00:00:00'),(0,0,4075,'2025-12-15','2026-03-14',4184,0,'','','0000-00-00','reception','2025-12-15 10:48:23','','0000-00-00 00:00:00'),(0,0,4076,'2025-12-15','2026-03-14',4185,0,'','','0000-00-00','reception','2025-12-15 10:51:10','','0000-00-00 00:00:00'),(0,0,4077,'2025-12-15','2026-03-14',4186,0,'','','0000-00-00','reception','2025-12-15 10:53:24','','0000-00-00 00:00:00'),(0,0,4078,'2025-12-15','2026-03-14',4187,0,'','','0000-00-00','priyanshi','2025-12-15 10:54:40','','0000-00-00 00:00:00'),(0,0,4079,'2025-12-15','2026-03-14',4188,0,'','','0000-00-00','reception','2025-12-15 10:56:40','','0000-00-00 00:00:00'),(0,0,4080,'2025-12-15','2026-03-14',4190,0,'','','0000-00-00','shweta','2025-12-15 11:07:44','','0000-00-00 00:00:00'),(0,0,4081,'2025-12-15','2026-03-14',4191,0,'','','0000-00-00','reception','2025-12-15 11:11:13','','0000-00-00 00:00:00'),(0,0,4082,'2025-12-15','2026-03-14',4192,0,'','','0000-00-00','priyanshi','2025-12-15 11:12:09','','0000-00-00 00:00:00'),(0,0,4083,'2025-12-15','2026-03-14',4193,0,'','','0000-00-00','priyanshi','2025-12-15 11:12:58','','0000-00-00 00:00:00'),(0,0,4084,'2025-12-15','2026-03-14',4194,0,'','','0000-00-00','shweta','2025-12-15 11:14:02','','0000-00-00 00:00:00'),(0,0,4085,'2025-12-15','2026-03-14',4195,0,'','','0000-00-00','drashti','2025-12-15 11:14:09','','0000-00-00 00:00:00'),(0,0,4086,'2025-12-15','2026-03-14',4196,0,'','','0000-00-00','priyanshi','2025-12-15 11:14:37','','0000-00-00 00:00:00'),(0,0,4087,'2025-12-15','2026-03-14',4197,0,'','','0000-00-00','drashti','2025-12-15 11:17:17','','0000-00-00 00:00:00'),(0,0,4088,'2025-12-15','2026-03-14',4198,0,'','','0000-00-00','reception','2025-12-15 11:17:59','','0000-00-00 00:00:00'),(0,0,4089,'2025-12-15','2026-03-14',4199,0,'','','0000-00-00','priyanshi','2025-12-15 11:19:19','','0000-00-00 00:00:00'),(0,0,4090,'2025-12-15','2026-03-14',4200,0,'','','0000-00-00','reception','2025-12-15 11:19:46','','0000-00-00 00:00:00'),(0,0,4091,'2025-12-15','2026-03-14',4201,0,'','','0000-00-00','shweta','2025-12-15 11:20:16','','0000-00-00 00:00:00'),(0,0,4092,'2025-12-15','2026-03-14',4202,0,'','','0000-00-00','drashti','2025-12-15 11:26:03','','0000-00-00 00:00:00'),(0,0,4093,'2025-12-15','2026-03-14',4203,0,'','','0000-00-00','shweta','2025-12-15 11:27:43','','0000-00-00 00:00:00'),(0,0,4094,'2025-12-15','2026-03-14',4204,0,'','','0000-00-00','shweta','2025-12-15 11:30:53','','0000-00-00 00:00:00'),(0,0,4095,'2025-12-15','2026-03-14',4205,0,'','','0000-00-00','shweta','2025-12-15 11:35:05','','0000-00-00 00:00:00'),(0,0,4096,'2025-12-15','2026-03-14',4206,0,'','','0000-00-00','reception','2025-12-15 11:37:32','','0000-00-00 00:00:00'),(0,0,4097,'2025-12-15','2026-03-14',4207,0,'','','0000-00-00','drashti','2025-12-15 11:37:40','','0000-00-00 00:00:00'),(0,0,4098,'2025-12-15','2026-03-14',4208,0,'','','0000-00-00','drashti','2025-12-15 11:40:47','','0000-00-00 00:00:00'),(0,0,4099,'2025-12-15','2026-03-14',4209,0,'','','0000-00-00','shweta','2025-12-15 11:43:33','','0000-00-00 00:00:00'),(0,0,4100,'2025-12-15','2026-03-14',4210,0,'','','0000-00-00','reception','2025-12-15 11:47:17','','0000-00-00 00:00:00'),(0,0,4101,'2025-12-15','2026-03-14',4211,0,'','','0000-00-00','drashti','2025-12-15 11:51:38','','0000-00-00 00:00:00'),(0,0,4102,'2025-12-15','2026-03-14',4212,0,'','','0000-00-00','shweta','2025-12-15 11:54:29','','0000-00-00 00:00:00'),(0,0,4103,'2025-12-15','2026-03-14',4213,0,'','','0000-00-00','priyanshi','2025-12-15 11:57:11','','0000-00-00 00:00:00'),(0,0,4104,'2025-12-15','2026-03-14',4214,0,'','','0000-00-00','shweta','2025-12-15 12:04:46','','0000-00-00 00:00:00'),(0,0,4105,'2025-12-15','2026-03-14',3871,0,'','','0000-00-00','drashti','2025-12-15 12:06:26','','0000-00-00 00:00:00'),(0,0,4106,'2025-12-15','2026-03-14',4215,0,'','','0000-00-00','urvashi','2025-12-15 12:08:29','','0000-00-00 00:00:00'),(0,0,4107,'2025-12-15','2026-03-14',4216,0,'','','0000-00-00','reception','2025-12-15 12:11:32','','0000-00-00 00:00:00'),(0,0,4108,'2025-12-15','2026-03-14',4217,0,'','','0000-00-00','urvashi','2025-12-15 12:12:44','','0000-00-00 00:00:00'),(0,0,4109,'2025-12-15','2026-03-14',4218,0,'','','0000-00-00','urvashi','2025-12-15 12:15:14','','0000-00-00 00:00:00'),(0,0,4110,'2025-12-15','2026-03-14',4219,0,'','','0000-00-00','shweta','2025-12-15 12:15:40','','0000-00-00 00:00:00'),(0,0,4111,'2025-12-15','2026-03-14',4220,0,'','','0000-00-00','drashti','2025-12-15 12:17:33','','0000-00-00 00:00:00'),(0,0,4112,'2025-12-15','2026-03-14',4221,0,'','','0000-00-00','reception','2025-12-15 12:18:18','','0000-00-00 00:00:00'),(0,0,4113,'2025-12-15','2026-03-14',4223,0,'','','0000-00-00','drashti','2025-12-15 12:39:15','','0000-00-00 00:00:00'),(0,0,4114,'2025-12-15','2026-03-14',4224,0,'','','0000-00-00','reception','2025-12-15 12:42:08','','0000-00-00 00:00:00'),(0,0,4115,'2025-12-15','2026-03-14',4225,0,'','','0000-00-00','drashti','2025-12-15 13:02:56','','0000-00-00 00:00:00'),(0,0,4116,'2025-12-15','2026-03-14',4226,0,'','','0000-00-00','urvashi','2025-12-15 13:26:45','','0000-00-00 00:00:00'),(0,0,4117,'2025-12-15','2026-03-14',4230,0,'','','0000-00-00','reception','2025-12-15 16:27:58','','0000-00-00 00:00:00'),(0,0,4118,'2025-12-15','2026-03-14',4231,0,'','','0000-00-00','drashti','2025-12-15 16:41:38','','0000-00-00 00:00:00'),(0,0,4119,'2025-12-15','2026-03-14',3350,0,'','','0000-00-00','reception','2025-12-15 17:01:22','','0000-00-00 00:00:00'),(0,0,4120,'2025-12-15','2026-03-14',4232,0,'','','0000-00-00','reception','2025-12-15 17:07:25','','0000-00-00 00:00:00'),(0,0,4121,'2025-12-15','2026-03-14',4234,0,'','','0000-00-00','reception','2025-12-15 17:17:21','','0000-00-00 00:00:00'),(0,0,4122,'2025-12-15','2026-03-14',4235,0,'','','0000-00-00','urvashi','2025-12-15 17:20:18','','0000-00-00 00:00:00'),(0,0,4123,'2025-12-15','2026-03-14',4236,0,'','','0000-00-00','drashti','2025-12-15 17:25:45','','0000-00-00 00:00:00'),(0,0,4124,'2025-12-15','2026-03-14',4237,0,'','','0000-00-00','urvashi','2025-12-15 17:32:13','','0000-00-00 00:00:00'),(0,0,4125,'2025-12-15','2026-03-14',4238,0,'','','0000-00-00','reception','2025-12-15 17:32:59','','0000-00-00 00:00:00'),(0,0,4126,'2025-12-15','2026-03-14',4239,0,'','','0000-00-00','reception','2025-12-15 17:41:15','','0000-00-00 00:00:00'),(0,0,4127,'2025-12-15','2026-03-14',4240,0,'','','0000-00-00','drashti','2025-12-15 17:52:39','','0000-00-00 00:00:00'),(0,0,4128,'2025-12-15','2026-03-14',4241,0,'','','0000-00-00','shweta','2025-12-15 17:59:18','','0000-00-00 00:00:00'),(0,0,4129,'2025-12-15','2026-03-14',4242,0,'','','0000-00-00','urvashi','2025-12-15 18:03:31','','0000-00-00 00:00:00'),(0,0,4130,'2025-12-15','2026-03-14',4243,0,'','','0000-00-00','shweta','2025-12-15 18:06:31','','0000-00-00 00:00:00'),(0,0,4131,'2025-12-15','2026-03-14',4244,0,'','','0000-00-00','drashti','2025-12-15 18:06:34','','0000-00-00 00:00:00'),(0,0,4132,'2025-12-15','2026-03-14',4245,0,'','','0000-00-00','reception','2025-12-15 18:08:28','','0000-00-00 00:00:00'),(0,0,4133,'2025-12-15','2026-03-14',4246,0,'','','0000-00-00','drashti','2025-12-15 18:14:37','','0000-00-00 00:00:00'),(0,0,4134,'2025-12-15','2026-03-14',4247,0,'','','0000-00-00','reception','2025-12-15 18:15:27','','0000-00-00 00:00:00'),(0,0,4135,'2025-12-15','2026-03-14',4248,0,'','','0000-00-00','reception','2025-12-15 18:28:54','','0000-00-00 00:00:00'),(0,0,4136,'2025-12-15','2026-03-14',4249,0,'','','0000-00-00','urvashi','2025-12-15 18:29:00','','0000-00-00 00:00:00'),(0,0,4137,'2025-12-15','2026-03-14',3764,0,'','','0000-00-00','drashti','2025-12-15 18:29:06','','0000-00-00 00:00:00'),(0,0,4138,'2025-12-15','2026-03-14',4250,0,'','','0000-00-00','drashti','2025-12-15 18:43:02','','0000-00-00 00:00:00'),(0,0,4139,'2025-12-15','2026-03-14',4251,0,'','','0000-00-00','reception','2025-12-15 18:46:36','','0000-00-00 00:00:00'),(0,0,4140,'2025-12-15','2026-03-14',4252,0,'','','0000-00-00','reception','2025-12-15 18:55:35','','0000-00-00 00:00:00'),(0,0,4141,'2025-12-15','2026-03-14',4253,0,'','','0000-00-00','drashti','2025-12-15 18:58:57','','0000-00-00 00:00:00'),(0,0,4142,'2025-12-15','2026-03-14',4254,0,'','','0000-00-00','drashti','2025-12-15 19:20:31','','0000-00-00 00:00:00'),(0,0,4143,'2025-12-15','2026-03-14',4255,0,'','','0000-00-00','reception','2025-12-15 19:20:55','','0000-00-00 00:00:00'),(0,0,4144,'2025-12-15','2026-03-14',4256,0,'','','0000-00-00','urvashi','2025-12-15 19:36:14','','0000-00-00 00:00:00'),(0,0,4145,'2025-12-15','2026-03-14',4257,0,'','','0000-00-00','drashti','2025-12-15 20:02:47','','0000-00-00 00:00:00'),(0,0,4146,'2025-12-15','2026-03-14',4258,0,'','','0000-00-00','urvashi','2025-12-15 20:04:09','','0000-00-00 00:00:00'),(0,0,4147,'2025-12-15','2026-03-14',4259,0,'','','0000-00-00','reception','2025-12-15 20:16:19','','0000-00-00 00:00:00'),(0,0,4148,'2025-12-16','2026-03-15',4261,0,'','','0000-00-00','janvi','2025-12-16 10:02:05','','0000-00-00 00:00:00'),(0,0,4149,'2025-12-16','2026-03-15',4263,0,'','','0000-00-00','drashti','2025-12-16 10:05:53','','0000-00-00 00:00:00'),(0,0,4150,'2025-12-16','2026-03-15',4264,0,'','','0000-00-00','drashti','2025-12-16 10:08:39','','0000-00-00 00:00:00'),(0,0,4151,'2025-12-16','2026-03-15',4265,0,'','','0000-00-00','drashti','2025-12-16 10:25:11','','0000-00-00 00:00:00'),(0,0,4152,'2025-12-16','2026-03-15',4266,0,'','','0000-00-00','reception','2025-12-16 10:28:15','','0000-00-00 00:00:00'),(0,0,4153,'2025-12-16','2026-03-15',4267,0,'','','0000-00-00','drashti','2025-12-16 10:38:06','','0000-00-00 00:00:00'),(0,0,4154,'2025-12-16','2026-03-15',4268,0,'','','0000-00-00','reception','2025-12-16 10:43:47','','0000-00-00 00:00:00'),(0,0,4155,'2025-12-16','2026-03-15',4269,0,'','','0000-00-00','reception','2025-12-16 10:52:39','','0000-00-00 00:00:00'),(0,0,4156,'2025-12-16','2026-03-15',4270,0,'','','0000-00-00','shweta','2025-12-16 11:01:04','','0000-00-00 00:00:00'),(0,0,4157,'2025-12-16','2026-03-15',4271,0,'','','0000-00-00','reception','2025-12-16 11:06:02','','0000-00-00 00:00:00'),(0,0,4158,'2025-12-16','2026-03-15',4272,0,'','','0000-00-00','janvi','2025-12-16 11:07:15','','0000-00-00 00:00:00'),(0,0,4159,'2025-12-16','2026-03-15',4273,0,'','','0000-00-00','reception','2025-12-16 11:08:55','','0000-00-00 00:00:00'),(0,0,4160,'2025-12-16','2026-03-15',4274,0,'','','0000-00-00','drashti','2025-12-16 11:10:22','','0000-00-00 00:00:00'),(0,0,4161,'2025-12-16','2026-03-15',4275,0,'','','0000-00-00','drashti','2025-12-16 11:16:47','','0000-00-00 00:00:00'),(0,0,4162,'2025-12-16','2026-03-15',4276,0,'','','0000-00-00','janvi','2025-12-16 11:18:10','','0000-00-00 00:00:00'),(0,0,4163,'2025-12-16','2026-03-15',4277,0,'','','0000-00-00','drashti','2025-12-16 11:20:09','','0000-00-00 00:00:00'),(0,0,4164,'2025-12-16','2026-03-15',4278,0,'','','0000-00-00','janvi','2025-12-16 11:27:27','','0000-00-00 00:00:00'),(0,0,4165,'2025-12-16','2026-03-15',4279,0,'','','0000-00-00','drashti','2025-12-16 11:28:03','','0000-00-00 00:00:00'),(0,0,4166,'2025-12-16','2026-03-15',4280,0,'','','0000-00-00','reception','2025-12-16 11:28:58','','0000-00-00 00:00:00'),(0,0,4167,'2025-12-16','2026-03-15',4281,0,'','','0000-00-00','janvi','2025-12-16 11:34:24','','0000-00-00 00:00:00'),(0,0,4168,'2025-12-16','2026-03-15',4282,0,'','','0000-00-00','drashti','2025-12-16 11:44:19','','0000-00-00 00:00:00'),(0,0,4169,'2025-12-16','2026-03-15',4283,0,'','','0000-00-00','janvi','2025-12-16 11:44:49','','0000-00-00 00:00:00'),(0,0,4170,'2025-12-16','2026-03-15',4123,0,'','','0000-00-00','drashti','2025-12-16 11:46:43','','0000-00-00 00:00:00'),(0,0,4171,'2025-12-16','2026-03-15',4284,0,'','','0000-00-00','reception','2025-12-16 11:50:47','','0000-00-00 00:00:00'),(0,0,4172,'2025-12-16','2026-03-15',4285,0,'','','0000-00-00','drashti','2025-12-16 11:51:13','','0000-00-00 00:00:00'),(0,0,4173,'2025-12-16','2026-03-15',4286,0,'','','0000-00-00','drashti','2025-12-16 11:57:51','','0000-00-00 00:00:00'),(0,0,4174,'2025-12-16','2026-03-15',4287,0,'','','0000-00-00','drashti','2025-12-16 11:59:46','','0000-00-00 00:00:00'),(0,0,4175,'2025-12-16','2026-03-15',4288,0,'','','0000-00-00','reception','2025-12-16 12:14:03','','0000-00-00 00:00:00'),(0,0,4176,'2025-12-16','2026-03-15',4289,0,'','','0000-00-00','drashti','2025-12-16 12:16:01','','0000-00-00 00:00:00'),(0,0,4177,'2025-12-16','2026-03-15',4290,0,'','','0000-00-00','drashti','2025-12-16 12:21:18','','0000-00-00 00:00:00'),(0,0,4178,'2025-12-16','2026-03-15',4291,0,'','','0000-00-00','janvi','2025-12-16 12:34:20','','0000-00-00 00:00:00'),(0,0,4179,'2025-12-16','2026-03-15',4292,0,'','','0000-00-00','drashti','2025-12-16 12:44:16','','0000-00-00 00:00:00'),(0,0,4180,'2025-12-16','2026-03-15',4293,0,'','','0000-00-00','drashti','2025-12-16 12:55:15','','0000-00-00 00:00:00'),(0,0,4181,'2025-12-16','2026-03-15',4294,0,'','','0000-00-00','reception','2025-12-16 12:59:44','','0000-00-00 00:00:00'),(0,0,4182,'2025-12-16','2026-03-15',4295,0,'','','0000-00-00','janvi','2025-12-16 13:08:19','','0000-00-00 00:00:00'),(0,0,4183,'2025-12-16','2026-03-15',4296,0,'','','0000-00-00','drashti','2025-12-16 13:08:38','','0000-00-00 00:00:00'),(0,0,4184,'2025-12-16','2026-03-15',4297,0,'','','0000-00-00','reception','2025-12-16 13:10:07','','0000-00-00 00:00:00'),(0,0,4185,'2025-12-16','2026-03-15',4298,0,'','','0000-00-00','drashti','2025-12-16 13:13:41','','0000-00-00 00:00:00'),(0,0,4186,'2025-12-16','2026-03-15',4299,0,'','','0000-00-00','reception','2025-12-16 13:16:23','','0000-00-00 00:00:00'),(0,0,4187,'2025-12-16','2026-03-15',4300,0,'','','0000-00-00','reception','2025-12-16 14:23:02','','0000-00-00 00:00:00'),(0,0,4188,'2025-12-16','2026-03-15',4302,0,'','','0000-00-00','reception','2025-12-16 16:20:07','','0000-00-00 00:00:00'),(0,0,4189,'2025-12-16','2026-03-15',4303,0,'','','0000-00-00','reception','2025-12-16 16:39:26','','0000-00-00 00:00:00'),(0,0,4190,'2025-12-16','2026-03-15',4304,0,'','','0000-00-00','reception','2025-12-16 16:46:06','','0000-00-00 00:00:00'),(0,0,4191,'2025-12-16','2026-03-15',4305,0,'','','0000-00-00','reception','2025-12-16 17:23:58','','0000-00-00 00:00:00'),(0,0,4192,'2025-12-16','2026-03-15',4306,0,'','','0000-00-00','urvashi','2025-12-16 17:27:37','','0000-00-00 00:00:00'),(0,0,4193,'2025-12-16','2026-03-15',4307,0,'','','0000-00-00','urvashi','2025-12-16 17:42:47','','0000-00-00 00:00:00'),(0,0,4194,'2025-12-16','2026-03-15',4308,0,'','','0000-00-00','shweta','2025-12-16 17:42:58','','0000-00-00 00:00:00'),(0,0,4195,'2025-12-16','2026-03-15',4309,0,'','','0000-00-00','reception','2025-12-16 17:50:05','','0000-00-00 00:00:00'),(0,0,4196,'2025-12-16','2026-03-15',4310,0,'','','0000-00-00','urvashi','2025-12-16 17:58:59','','0000-00-00 00:00:00'),(0,0,4197,'2025-12-16','2026-03-15',4311,0,'','','0000-00-00','janvi','2025-12-16 18:01:34','','0000-00-00 00:00:00'),(0,0,4198,'2025-12-16','2026-03-15',4312,0,'','','0000-00-00','shweta','2025-12-16 18:03:50','','0000-00-00 00:00:00'),(0,0,4199,'2025-12-16','2026-03-15',4313,0,'','','0000-00-00','reception','2025-12-16 18:05:50','','0000-00-00 00:00:00'),(0,0,4200,'2025-12-16','2026-03-15',4314,0,'','','0000-00-00','urvashi','2025-12-16 18:18:57','','0000-00-00 00:00:00'),(0,0,4201,'2025-12-16','2026-03-15',4315,0,'','','0000-00-00','reception','2025-12-16 18:24:26','','0000-00-00 00:00:00'),(0,0,4202,'2025-12-16','2026-03-15',4316,0,'','','0000-00-00','reception','2025-12-16 18:28:19','','0000-00-00 00:00:00'),(0,0,4203,'2025-12-16','2026-03-15',4317,0,'','','0000-00-00','urvashi','2025-12-16 18:33:34','','0000-00-00 00:00:00'),(0,0,4204,'2025-12-16','2026-03-15',4318,0,'','','0000-00-00','urvashi','2025-12-16 18:45:15','','0000-00-00 00:00:00'),(0,0,4205,'2025-12-16','2026-03-15',4319,0,'','','0000-00-00','janvi','2025-12-16 18:48:04','','0000-00-00 00:00:00'),(0,0,4206,'2025-12-16','2026-03-15',4320,0,'','','0000-00-00','urvashi','2025-12-16 18:56:41','','0000-00-00 00:00:00'),(0,0,4207,'2025-12-16','2026-03-15',4321,0,'','','0000-00-00','urvashi','2025-12-16 19:04:27','','0000-00-00 00:00:00'),(0,0,4208,'2025-12-16','2026-03-15',4322,0,'','','0000-00-00','reception','2025-12-16 19:06:19','','0000-00-00 00:00:00'),(0,0,4209,'2025-12-16','2026-03-15',4323,0,'','','0000-00-00','urvashi','2025-12-16 19:09:49','','0000-00-00 00:00:00'),(0,0,4210,'2025-12-16','2026-03-15',4324,0,'','','0000-00-00','urvashi','2025-12-16 19:36:01','','0000-00-00 00:00:00'),(0,0,4211,'2025-12-17','2026-03-16',4326,0,'','','0000-00-00','reception','2025-12-17 08:40:16','','0000-00-00 00:00:00'),(0,0,4212,'2025-12-17','2026-03-16',4327,0,'','','0000-00-00','reception','2025-12-17 08:45:14','','0000-00-00 00:00:00'),(0,0,4213,'2025-12-17','2026-03-16',4328,0,'','','0000-00-00','reception','2025-12-17 09:50:05','','0000-00-00 00:00:00'),(0,0,4214,'2025-12-17','2026-03-16',4329,0,'','','0000-00-00','reception','2025-12-17 09:56:01','','0000-00-00 00:00:00'),(0,0,4215,'2025-12-17','2026-03-16',4330,0,'','','0000-00-00','reception','2025-12-17 10:16:46','','0000-00-00 00:00:00'),(0,0,4216,'2025-12-17','2026-03-16',4331,0,'','','0000-00-00','reception','2025-12-17 10:38:45','','0000-00-00 00:00:00'),(0,0,4217,'2025-12-17','2026-03-16',4332,0,'','','0000-00-00','priyanshi','2025-12-17 10:45:40','','0000-00-00 00:00:00'),(0,0,4218,'2025-12-17','2026-03-16',4333,0,'','','0000-00-00','reception','2025-12-17 10:51:17','','0000-00-00 00:00:00'),(0,0,4219,'2025-12-17','2026-03-16',4334,0,'','','0000-00-00','priyanshi','2025-12-17 10:55:54','','0000-00-00 00:00:00'),(0,0,4220,'2025-12-17','2026-03-16',4335,0,'','','0000-00-00','reception','2025-12-17 10:58:07','','0000-00-00 00:00:00'),(0,0,4221,'2025-12-17','2026-03-16',4336,0,'','','0000-00-00','reception','2025-12-17 11:02:54','','0000-00-00 00:00:00'),(0,0,4222,'2025-12-17','2026-03-16',4337,0,'','','0000-00-00','shweta','2025-12-17 11:09:52','','0000-00-00 00:00:00'),(0,0,4223,'2025-12-17','2026-03-16',4338,0,'','','0000-00-00','shweta','2025-12-17 11:12:56','','0000-00-00 00:00:00'),(0,0,4224,'2025-12-17','2026-03-16',4339,0,'','','0000-00-00','shweta','2025-12-17 11:21:24','','0000-00-00 00:00:00'),(0,0,4225,'2025-12-17','2026-03-16',4340,0,'','','0000-00-00','drashti','2025-12-17 11:26:58','','0000-00-00 00:00:00'),(0,0,4226,'2025-12-17','2026-03-16',4341,0,'','','0000-00-00','priyanshi','2025-12-17 11:29:54','','0000-00-00 00:00:00'),(0,0,4227,'2025-12-17','2026-03-16',4342,0,'','','0000-00-00','shweta','2025-12-17 11:48:33','','0000-00-00 00:00:00'),(0,0,4228,'2025-12-17','2026-03-16',4343,0,'','','0000-00-00','reception','2025-12-17 11:51:22','','0000-00-00 00:00:00'),(0,0,4229,'2025-12-17','2026-03-16',4344,0,'','','0000-00-00','drashti','2025-12-17 11:51:26','','0000-00-00 00:00:00'),(0,0,4230,'2025-12-17','2026-03-16',4345,0,'','','0000-00-00','drashti','2025-12-17 11:52:55','','0000-00-00 00:00:00'),(0,0,4231,'2025-12-17','2026-03-16',4346,0,'','','0000-00-00','drashti','2025-12-17 12:39:36','','0000-00-00 00:00:00'),(0,0,4232,'2025-12-17','2026-03-16',4347,0,'','','0000-00-00','drashti','2025-12-17 12:42:56','','0000-00-00 00:00:00'),(0,0,4233,'2025-12-17','2026-03-16',4348,0,'','','0000-00-00','reception','2025-12-17 12:47:00','','0000-00-00 00:00:00'),(0,0,4234,'2025-12-17','2026-03-16',4349,0,'','','0000-00-00','shweta','2025-12-17 13:03:12','','0000-00-00 00:00:00'),(0,0,4235,'2025-12-17','2026-03-16',4350,0,'','','0000-00-00','reception','2025-12-17 13:18:49','','0000-00-00 00:00:00'),(0,0,4236,'2025-12-17','2026-03-16',4351,0,'','','0000-00-00','reception','2025-12-17 16:17:11','','0000-00-00 00:00:00'),(0,0,4237,'2025-12-17','2026-03-16',4352,0,'','','0000-00-00','reception','2025-12-17 16:48:00','','0000-00-00 00:00:00'),(0,0,4238,'2025-12-17','2026-03-16',4353,0,'','','0000-00-00','reception','2025-12-17 17:03:44','','0000-00-00 00:00:00'),(0,0,4239,'2025-12-17','2026-03-16',4354,0,'','','0000-00-00','reception','2025-12-17 17:11:03','','0000-00-00 00:00:00'),(0,0,4240,'2025-12-17','2026-03-16',4355,0,'','','0000-00-00','reception','2025-12-17 17:19:35','','0000-00-00 00:00:00'),(0,0,4241,'2025-12-17','2026-03-16',4356,0,'','','0000-00-00','reception','2025-12-17 17:23:44','','0000-00-00 00:00:00'),(0,0,4242,'2025-12-17','2026-03-16',4357,0,'','','0000-00-00','priyanshi','2025-12-17 17:32:11','','0000-00-00 00:00:00'),(0,0,4243,'2025-12-17','2026-03-16',4358,0,'','','0000-00-00','reception','2025-12-17 17:33:33','','0000-00-00 00:00:00'),(0,0,4244,'2025-12-17','2026-03-16',4359,0,'','','0000-00-00','priyanshi','2025-12-17 17:41:41','','0000-00-00 00:00:00'),(0,0,4245,'2025-12-17','2026-03-16',4360,0,'','','0000-00-00','reception','2025-12-17 17:48:59','','0000-00-00 00:00:00'),(0,0,4246,'2025-12-17','2026-03-16',4361,0,'','','0000-00-00','reception','2025-12-17 17:59:58','','0000-00-00 00:00:00'),(0,0,4247,'2025-12-17','2026-03-16',4362,0,'','','0000-00-00','reception','2025-12-17 18:02:43','','0000-00-00 00:00:00'),(0,0,4248,'2025-12-17','2026-03-16',4363,0,'','','0000-00-00','drashti','2025-12-17 18:06:02','','0000-00-00 00:00:00'),(0,0,4249,'2025-12-17','2026-03-16',4364,0,'','','0000-00-00','reception','2025-12-17 18:07:26','','0000-00-00 00:00:00'),(0,0,4250,'2025-12-17','2026-03-16',4365,0,'','','0000-00-00','priyanshi','2025-12-17 18:09:53','','0000-00-00 00:00:00'),(0,0,4251,'2025-12-17','2026-03-16',4366,0,'','','0000-00-00','drashti','2025-12-17 18:10:03','','0000-00-00 00:00:00'),(0,0,4252,'2025-12-17','2026-03-16',4367,0,'','','0000-00-00','drashti','2025-12-17 18:13:56','','0000-00-00 00:00:00'),(0,0,4253,'2025-12-17','2026-03-16',4368,0,'','','0000-00-00','reception','2025-12-17 18:15:33','','0000-00-00 00:00:00'),(0,0,4254,'2025-12-17','2026-03-16',4369,0,'','','0000-00-00','drashti','2025-12-17 18:19:43','','0000-00-00 00:00:00'),(0,0,4255,'2025-12-17','2026-03-16',4370,0,'','','0000-00-00','shweta','2025-12-17 18:21:34','','0000-00-00 00:00:00'),(0,0,4256,'2025-12-17','2026-03-16',4371,0,'','','0000-00-00','drashti','2025-12-17 18:27:23','','0000-00-00 00:00:00'),(0,0,4257,'2025-12-17','2026-03-16',4372,0,'','','0000-00-00','reception','2025-12-17 18:30:02','','0000-00-00 00:00:00'),(0,0,4258,'2025-12-17','2026-03-16',4373,0,'','','0000-00-00','reception','2025-12-17 18:33:19','','0000-00-00 00:00:00'),(0,0,4259,'2025-12-17','2026-03-16',4374,0,'','','0000-00-00','drashti','2025-12-17 18:42:22','','0000-00-00 00:00:00'),(0,0,4260,'2025-12-17','2026-03-16',4375,0,'','','0000-00-00','drashti','2025-12-17 18:51:43','','0000-00-00 00:00:00'),(0,0,4261,'2025-12-17','2026-03-16',4376,0,'','','0000-00-00','drashti','2025-12-17 18:56:05','','0000-00-00 00:00:00'),(0,0,4262,'2025-12-17','2026-03-16',4377,0,'','','0000-00-00','janvi','2025-12-17 18:57:21','','0000-00-00 00:00:00'),(0,0,4263,'2025-12-17','2026-03-16',4378,0,'','','0000-00-00','janvi','2025-12-17 19:07:15','','0000-00-00 00:00:00'),(0,0,4264,'2025-12-17','2026-03-16',4379,0,'','','0000-00-00','drashti','2025-12-17 19:15:55','','0000-00-00 00:00:00'),(0,0,4265,'2025-12-17','2026-03-16',4380,0,'','','0000-00-00','janvi','2025-12-17 19:28:21','','0000-00-00 00:00:00'),(0,0,4266,'2025-12-17','2026-03-16',4381,0,'','','0000-00-00','drashti','2025-12-17 19:38:53','','0000-00-00 00:00:00'),(0,0,4267,'2025-12-17','2026-03-16',4382,0,'','','0000-00-00','drashti','2025-12-17 19:50:47','','0000-00-00 00:00:00'),(0,0,4268,'2025-12-17','2026-03-16',4383,0,'','','0000-00-00','janvi','2025-12-17 19:59:09','','0000-00-00 00:00:00'),(0,0,4269,'2025-12-17','2026-03-16',4384,0,'','','0000-00-00','reception','2025-12-17 20:11:55','','0000-00-00 00:00:00'),(0,0,4270,'2025-12-18','2026-03-17',4385,0,'','','0000-00-00','reception','2025-12-18 08:47:33','','0000-00-00 00:00:00'),(0,0,4271,'2025-12-18','2026-03-17',4386,0,'','','0000-00-00','reception','2025-12-18 08:50:55','','0000-00-00 00:00:00'),(0,0,4272,'2025-12-18','2026-03-17',4387,0,'','','0000-00-00','reception','2025-12-18 08:52:22','','0000-00-00 00:00:00'),(0,0,4273,'2025-12-18','2026-03-17',4388,0,'','','0000-00-00','drashti','2025-12-18 09:49:47','','0000-00-00 00:00:00'),(0,0,4274,'2025-12-18','2026-03-17',4389,0,'','','0000-00-00','drashti','2025-12-18 09:56:04','','0000-00-00 00:00:00'),(0,0,4275,'2025-12-18','2026-03-17',4390,0,'','','0000-00-00','shweta','2025-12-18 10:33:57','','0000-00-00 00:00:00'),(0,0,4276,'2025-12-18','2026-03-17',4391,0,'','','0000-00-00','reception','2025-12-18 10:40:11','','0000-00-00 00:00:00'),(0,0,4277,'2025-12-17','2026-03-16',4392,0,'','','0000-00-00','shweta','2025-12-18 10:40:14','','0000-00-00 00:00:00'),(0,0,4278,'2025-12-18','2026-03-17',4393,0,'','','0000-00-00','reception','2025-12-18 10:43:57','','0000-00-00 00:00:00'),(0,0,4279,'2025-12-18','2026-03-17',4394,0,'','','0000-00-00','janvi','2025-12-18 10:44:50','','0000-00-00 00:00:00'),(0,0,4280,'2025-12-18','2026-03-17',4395,0,'','','0000-00-00','drashti','2025-12-18 10:47:43','','0000-00-00 00:00:00'),(0,0,4281,'2025-12-18','2026-03-17',4396,0,'','','0000-00-00','reception','2025-12-18 10:48:03','','0000-00-00 00:00:00'),(0,0,4282,'2025-12-18','2026-03-17',4397,0,'','','0000-00-00','drashti','2025-12-18 10:51:54','','0000-00-00 00:00:00'),(0,0,4283,'2025-12-18','2026-03-17',4398,0,'','','0000-00-00','reception','2025-12-18 10:55:44','','0000-00-00 00:00:00'),(0,0,4284,'2025-12-18','2026-03-17',4399,0,'','','0000-00-00','drashti','2025-12-18 11:00:26','','0000-00-00 00:00:00'),(0,0,4285,'2025-12-18','2026-03-17',4400,0,'','','0000-00-00','reception','2025-12-18 11:02:16','','0000-00-00 00:00:00'),(0,0,4286,'2025-12-18','2026-03-17',4401,0,'','','0000-00-00','drashti','2025-12-18 11:10:44','','0000-00-00 00:00:00'),(0,0,4287,'2025-12-18','2026-03-17',4402,0,'','','0000-00-00','reception','2025-12-18 11:12:13','','0000-00-00 00:00:00'),(0,0,4288,'2025-12-18','2026-03-17',4403,0,'','','0000-00-00','janvi','2025-12-18 11:13:33','','0000-00-00 00:00:00'),(0,0,4289,'2025-12-18','2026-03-17',4404,0,'','','0000-00-00','reception','2025-12-18 11:27:19','','0000-00-00 00:00:00'),(0,0,4290,'2025-12-18','2026-03-17',4406,0,'','','0000-00-00','janvi','2025-12-18 11:38:01','','0000-00-00 00:00:00'),(0,0,4291,'2025-12-18','2026-03-17',4407,0,'','','0000-00-00','drashti','2025-12-18 11:40:03','','0000-00-00 00:00:00'),(0,0,4292,'2025-12-18','2026-03-17',4408,0,'','','0000-00-00','drashti','2025-12-18 11:45:11','','0000-00-00 00:00:00'),(0,0,4293,'2025-12-18','2026-03-17',4409,0,'','','0000-00-00','shweta','2025-12-18 11:47:38','','0000-00-00 00:00:00'),(0,0,4294,'2025-12-18','2026-03-17',4410,0,'','','0000-00-00','drashti','2025-12-18 11:49:53','','0000-00-00 00:00:00'),(0,0,4295,'2025-12-18','2026-03-17',3630,0,'','','0000-00-00','janvi','2025-12-18 11:56:39','','0000-00-00 00:00:00'),(0,0,4296,'2025-12-18','2026-03-17',4411,0,'','','0000-00-00','shweta','2025-12-18 12:01:30','','0000-00-00 00:00:00'),(0,0,4297,'2025-12-18','2026-03-17',4412,0,'','','0000-00-00','janvi','2025-12-18 12:21:39','','0000-00-00 00:00:00'),(0,0,4298,'2025-12-18','2026-03-17',4413,0,'','','0000-00-00','drashti','2025-12-18 12:21:43','','0000-00-00 00:00:00'),(0,0,4299,'2025-12-18','2026-03-17',4414,0,'','','0000-00-00','reception','2025-12-18 12:28:01','','0000-00-00 00:00:00'),(0,0,4300,'2025-12-18','2026-03-17',4415,0,'','','0000-00-00','reception','2025-12-18 12:29:20','','0000-00-00 00:00:00'),(0,0,4301,'2025-12-18','2026-03-17',4416,0,'','','0000-00-00','janvi','2025-12-18 12:36:06','','0000-00-00 00:00:00'),(0,0,4302,'2025-12-18','2026-03-17',3863,0,'','','0000-00-00','drashti','2025-12-18 12:41:52','','0000-00-00 00:00:00'),(0,0,4303,'2025-12-18','2026-03-17',4417,0,'','','0000-00-00','reception','2025-12-18 12:43:15','','0000-00-00 00:00:00'),(0,0,4304,'2025-12-18','2026-03-17',4418,0,'','','0000-00-00','shweta','2025-12-18 13:45:39','','0000-00-00 00:00:00'),(0,0,4305,'2025-12-18','2026-03-17',4419,0,'','','0000-00-00','priyanshi','2025-12-18 14:44:17','','0000-00-00 00:00:00'),(0,0,4306,'2025-12-18','2026-03-17',4420,0,'','','0000-00-00','priyanshi','2025-12-18 16:23:35','','0000-00-00 00:00:00'),(0,0,4307,'2025-12-18','2026-03-17',4421,0,'','','0000-00-00','reception','2025-12-18 16:23:40','','0000-00-00 00:00:00'),(0,0,4308,'2025-12-18','2026-03-17',4422,0,'','','0000-00-00','reception','2025-12-18 16:26:51','','0000-00-00 00:00:00'),(0,0,4309,'2025-12-18','2026-03-17',4423,0,'','','0000-00-00','reception','2025-12-18 17:18:29','','0000-00-00 00:00:00'),(0,0,4310,'2025-12-18','2026-03-17',4424,0,'','','0000-00-00','manshi','2025-12-18 17:22:50','','0000-00-00 00:00:00'),(0,0,4311,'2025-12-18','2026-03-17',4425,0,'','','0000-00-00','reception','2025-12-18 17:40:38','','0000-00-00 00:00:00'),(0,0,4312,'2025-12-18','2026-03-17',4426,0,'','','0000-00-00','manshi','2025-12-18 17:44:57','','0000-00-00 00:00:00'),(0,0,4313,'2025-12-18','2026-03-17',4427,0,'','','0000-00-00','reception','2025-12-18 17:46:38','','0000-00-00 00:00:00'),(0,0,4314,'2025-12-18','2026-03-17',4428,0,'','','0000-00-00','urvashi','2025-12-18 17:58:27','','0000-00-00 00:00:00'),(0,0,4315,'2025-12-18','2026-03-17',4429,0,'','','0000-00-00','reception','2025-12-18 17:58:31','','0000-00-00 00:00:00'),(0,0,4316,'2025-12-18','2026-03-17',4430,0,'','','0000-00-00','drashti','2025-12-18 18:03:34','','0000-00-00 00:00:00'),(0,0,4317,'2025-12-18','2026-03-17',4431,0,'','','0000-00-00','reception','2025-12-18 18:05:00','','0000-00-00 00:00:00'),(0,0,4318,'2025-12-18','2026-03-17',4432,0,'','','0000-00-00','urvashi','2025-12-18 18:05:26','','0000-00-00 00:00:00'),(0,0,4319,'2025-12-18','2026-03-17',3345,0,'','','0000-00-00','drashti','2025-12-18 18:06:22','','0000-00-00 00:00:00'),(0,0,4320,'2025-12-18','2026-03-17',4433,0,'','','0000-00-00','manshi','2025-12-18 18:06:44','','0000-00-00 00:00:00'),(0,0,4321,'2025-12-18','2026-03-17',4434,0,'','','0000-00-00','drashti','2025-12-18 18:10:07','','0000-00-00 00:00:00'),(0,0,4322,'2025-12-18','2026-03-17',4435,0,'','','0000-00-00','reception','2025-12-18 18:11:06','','0000-00-00 00:00:00'),(0,0,4323,'2025-12-18','2026-03-17',4436,0,'','','0000-00-00','urvashi','2025-12-18 18:11:07','','0000-00-00 00:00:00'),(0,0,4324,'2025-12-18','2026-03-17',4437,0,'','','0000-00-00','urvashi','2025-12-18 18:12:39','','0000-00-00 00:00:00'),(0,0,4325,'2025-12-18','2026-03-17',4438,0,'','','0000-00-00','drashti','2025-12-18 18:15:59','','0000-00-00 00:00:00'),(0,0,4326,'2025-12-18','2026-03-17',4439,0,'','','0000-00-00','urvashi','2025-12-18 18:20:21','','0000-00-00 00:00:00'),(0,0,4327,'2025-12-18','2026-03-17',4440,0,'','','0000-00-00','reception','2025-12-18 18:21:50','','0000-00-00 00:00:00'),(0,0,4328,'2025-12-18','2026-03-17',4441,0,'','','0000-00-00','drashti','2025-12-18 18:24:03','','0000-00-00 00:00:00'),(0,0,4329,'2025-12-18','2026-03-17',4442,0,'','','0000-00-00','urvashi','2025-12-18 18:24:58','','0000-00-00 00:00:00'),(0,0,4330,'2025-12-18','2026-03-17',4443,0,'','','0000-00-00','urvashi','2025-12-18 18:25:21','','0000-00-00 00:00:00'),(0,0,4331,'2025-12-18','2026-03-17',4444,0,'','','0000-00-00','drashti','2025-12-18 18:31:59','','0000-00-00 00:00:00'),(0,0,4332,'2025-12-18','2026-03-17',4445,0,'','','0000-00-00','janvi','2025-12-18 18:53:48','','0000-00-00 00:00:00'),(0,0,4333,'2025-12-18','2026-03-17',4446,0,'','','0000-00-00','reception','2025-12-18 18:58:50','','0000-00-00 00:00:00'),(0,0,4334,'2025-12-18','2026-03-17',4447,0,'','','0000-00-00','manshi','2025-12-18 19:12:19','','0000-00-00 00:00:00'),(0,0,4335,'2025-12-18','2026-03-17',4448,0,'','','0000-00-00','drashti','2025-12-18 19:20:01','','0000-00-00 00:00:00'),(0,0,4336,'2025-12-18','2026-03-17',4449,0,'','','0000-00-00','drashti','2025-12-18 19:20:46','','0000-00-00 00:00:00'),(0,0,4337,'2025-12-18','2026-03-17',4450,0,'','','0000-00-00','janvi','2025-12-18 19:24:05','','0000-00-00 00:00:00'),(0,0,4338,'2025-12-18','2026-03-17',4451,0,'','','0000-00-00','drashti','2025-12-18 19:48:23','','0000-00-00 00:00:00'),(0,0,4339,'2025-12-19','2026-03-18',4454,0,'','','0000-00-00','reception','2025-12-19 08:52:12','','0000-00-00 00:00:00'),(0,0,4340,'2025-12-19','2026-03-18',4455,0,'','','0000-00-00','reception','2025-12-19 10:10:41','','0000-00-00 00:00:00'),(0,0,4341,'2025-12-19','2026-03-18',4456,0,'','','0000-00-00','reception','2025-12-19 10:15:17','','0000-00-00 00:00:00'),(0,0,4342,'2025-12-19','2026-03-18',4457,0,'','','0000-00-00','drashti','2025-12-19 10:25:10','','0000-00-00 00:00:00'),(0,0,4343,'2025-12-19','2026-03-18',4458,0,'','','0000-00-00','drashti','2025-12-19 10:28:42','','0000-00-00 00:00:00'),(0,0,4344,'2025-12-19','2026-03-18',4459,0,'','','0000-00-00','drashti','2025-12-19 10:31:01','','0000-00-00 00:00:00'),(0,0,4345,'2025-12-19','2026-03-18',4460,0,'','','0000-00-00','reception','2025-12-19 10:41:28','','0000-00-00 00:00:00'),(0,0,4346,'2025-12-19','2026-03-18',4461,0,'','','0000-00-00','drashti','2025-12-19 10:41:39','','0000-00-00 00:00:00'),(0,0,4347,'2025-12-19','2026-03-18',4462,0,'','','0000-00-00','drashti','2025-12-19 10:45:32','','0000-00-00 00:00:00'),(0,0,4348,'2025-12-19','2026-03-18',4463,0,'','','0000-00-00','drashti','2025-12-19 10:49:49','','0000-00-00 00:00:00'),(0,0,4349,'2025-12-19','2026-03-18',4464,0,'','','0000-00-00','reception','2025-12-19 10:56:09','','0000-00-00 00:00:00'),(0,0,4350,'2025-12-19','2026-03-18',4465,0,'','','0000-00-00','drashti','2025-12-19 11:08:42','','0000-00-00 00:00:00'),(0,0,4351,'2025-12-19','2026-03-18',4466,0,'','','0000-00-00','drashti','2025-12-19 11:13:34','','0000-00-00 00:00:00'),(0,0,4352,'2025-12-19','2026-03-18',4468,0,'','','0000-00-00','drashti','2025-12-19 11:19:50','','0000-00-00 00:00:00'),(0,0,4353,'2025-12-19','2026-03-18',4469,0,'','','0000-00-00','reception','2025-12-19 11:23:53','','0000-00-00 00:00:00'),(0,0,4354,'2025-12-19','2026-03-18',4470,0,'','','0000-00-00','janvi','2025-12-19 11:25:35','','0000-00-00 00:00:00'),(0,0,4355,'2025-12-19','2026-03-18',4471,0,'','','0000-00-00','reception','2025-12-19 11:26:46','','0000-00-00 00:00:00'),(0,0,4356,'2025-12-19','2026-03-18',4472,0,'','','0000-00-00','reception','2025-12-19 11:30:41','','0000-00-00 00:00:00'),(0,0,4357,'2025-12-19','2026-03-18',4473,0,'','','0000-00-00','janvi','2025-12-19 11:34:04','','0000-00-00 00:00:00'),(0,0,4358,'2025-12-19','2026-03-18',4474,0,'','','0000-00-00','drashti','2025-12-19 11:38:07','','0000-00-00 00:00:00'),(0,0,4359,'2025-12-19','2026-03-18',4475,0,'','','0000-00-00','janvi','2025-12-19 11:46:46','','0000-00-00 00:00:00'),(0,0,4360,'2025-12-19','2026-03-18',3731,0,'','','0000-00-00','manshi','2025-12-19 11:48:02','','0000-00-00 00:00:00'),(0,0,4361,'2025-12-19','2026-03-18',4476,0,'','','0000-00-00','reception','2025-12-19 11:50:06','','0000-00-00 00:00:00'),(0,0,4362,'2025-12-19','2026-03-18',4477,0,'','','0000-00-00','janvi','2025-12-19 11:55:04','','0000-00-00 00:00:00'),(0,0,4363,'2025-12-19','2026-03-18',4478,0,'','','0000-00-00','drashti','2025-12-19 11:55:36','','0000-00-00 00:00:00'),(0,0,4364,'2025-12-19','2026-03-18',4479,0,'','','0000-00-00','reception','2025-12-19 11:58:15','','0000-00-00 00:00:00'),(0,0,4365,'2025-12-19','2026-03-18',4480,0,'','','0000-00-00','janvi','2025-12-19 12:01:01','','0000-00-00 00:00:00'),(0,0,4366,'2025-12-19','2026-03-18',4481,0,'','','0000-00-00','reception','2025-12-19 12:14:50','','0000-00-00 00:00:00'),(0,0,4367,'2025-12-19','2026-03-18',4482,0,'','','0000-00-00','janvi','2025-12-19 12:21:08','','0000-00-00 00:00:00'),(0,0,4368,'2025-12-19','2026-03-18',4483,0,'','','0000-00-00','reception','2025-12-19 12:23:34','','0000-00-00 00:00:00'),(0,0,4369,'2025-12-19','2026-03-18',4485,0,'','','0000-00-00','drashti','2025-12-19 12:28:12','','0000-00-00 00:00:00'),(0,0,4370,'2025-12-19','2026-03-18',4486,0,'','','0000-00-00','drashti','2025-12-19 12:41:58','','0000-00-00 00:00:00'),(0,0,4371,'2025-12-19','2026-03-18',4487,0,'','','0000-00-00','reception','2025-12-19 12:43:06','','0000-00-00 00:00:00'),(0,0,4372,'2025-12-19','2026-03-18',4488,0,'','','0000-00-00','drashti','2025-12-19 12:47:53','','0000-00-00 00:00:00'),(0,0,4373,'2025-12-19','2026-03-18',4489,0,'','','0000-00-00','reception','2025-12-19 12:53:08','','0000-00-00 00:00:00'),(0,0,4374,'2025-12-19','2026-03-18',4491,0,'','','0000-00-00','reception','2025-12-19 16:16:35','','0000-00-00 00:00:00'),(0,0,4375,'2025-12-19','2026-03-18',4492,0,'','','0000-00-00','reception','2025-12-19 16:22:03','','0000-00-00 00:00:00'),(0,0,4376,'2025-12-19','2026-03-18',4493,0,'','','0000-00-00','reception','2025-12-19 16:30:10','','0000-00-00 00:00:00'),(0,0,4377,'2025-12-19','2026-03-18',4494,0,'','','0000-00-00','priyanshi','2025-12-19 16:47:57','','0000-00-00 00:00:00'),(0,0,4378,'2025-12-19','2026-03-18',4495,0,'','','0000-00-00','reception','2025-12-19 17:10:19','','0000-00-00 00:00:00'),(0,0,4379,'2025-12-19','2026-03-18',4496,0,'','','0000-00-00','manshi','2025-12-19 17:12:20','','0000-00-00 00:00:00'),(0,0,4380,'2025-12-19','2026-03-18',4497,0,'','','0000-00-00','priyanshi','2025-12-19 17:14:22','','0000-00-00 00:00:00'),(0,0,4381,'2025-12-19','2026-03-18',4498,0,'','','0000-00-00','manshi','2025-12-19 17:23:57','','0000-00-00 00:00:00'),(0,0,4382,'2025-12-19','2026-03-18',4499,0,'','','0000-00-00','reception','2025-12-19 17:43:12','','0000-00-00 00:00:00'),(0,0,4383,'2025-12-19','2026-03-18',4500,0,'','','0000-00-00','reception','2025-12-19 17:49:01','','0000-00-00 00:00:00'),(0,0,4384,'2025-12-19','2026-03-18',4501,0,'','','0000-00-00','drashti','2025-12-19 17:52:17','','0000-00-00 00:00:00'),(0,0,4385,'2025-12-19','2026-03-18',4502,0,'','','0000-00-00','reception','2025-12-19 17:52:48','','0000-00-00 00:00:00'),(0,0,4386,'2025-12-19','2026-03-18',4503,0,'','','0000-00-00','drashti','2025-12-19 18:00:18','','0000-00-00 00:00:00'),(0,0,4387,'2025-12-19','2026-03-18',4504,0,'','','0000-00-00','reception','2025-12-19 18:00:19','','0000-00-00 00:00:00'),(0,0,4388,'2025-12-19','2026-03-18',4505,0,'','','0000-00-00','reception','2025-12-19 18:22:36','','0000-00-00 00:00:00'),(0,0,4389,'2025-12-19','2026-03-18',4506,0,'','','0000-00-00','priyanshi','2025-12-19 18:35:55','','0000-00-00 00:00:00'),(0,0,4390,'2025-12-19','2026-03-18',4507,0,'','','0000-00-00','manshi','2025-12-19 18:37:26','','0000-00-00 00:00:00'),(0,0,4391,'2025-12-19','2026-03-18',4508,0,'','','0000-00-00','drashti','2025-12-19 18:37:49','','0000-00-00 00:00:00'),(0,0,4392,'2025-12-19','2026-03-18',4509,0,'','','0000-00-00','priyanshi','2025-12-19 18:51:53','','0000-00-00 00:00:00'),(0,0,4393,'2025-12-19','2026-03-18',4510,0,'','','0000-00-00','priyanshi','2025-12-19 18:53:11','','0000-00-00 00:00:00'),(0,0,4394,'2025-12-19','2026-03-18',4511,0,'','','0000-00-00','reception','2025-12-19 19:00:50','','0000-00-00 00:00:00'),(0,0,4395,'2025-12-19','2026-03-18',4512,0,'','','0000-00-00','manshi','2025-12-19 19:01:27','','0000-00-00 00:00:00'),(0,0,4396,'2025-12-19','2026-03-18',4513,0,'','','0000-00-00','drashti','2025-12-19 19:02:32','','0000-00-00 00:00:00'),(0,0,4397,'2025-12-19','2026-03-18',4514,0,'','','0000-00-00','drashti','2025-12-19 19:14:02','','0000-00-00 00:00:00'),(0,0,4398,'2025-12-20','2026-03-19',4516,0,'','','0000-00-00','priyanshi','2025-12-20 08:50:14','','0000-00-00 00:00:00'),(0,0,4399,'2025-12-20','2026-03-19',4517,0,'','','0000-00-00','manshi','2025-12-20 10:19:29','','0000-00-00 00:00:00'),(0,0,4400,'2025-12-20','2026-03-19',4518,0,'','','0000-00-00','drashti','2025-12-20 10:34:14','','0000-00-00 00:00:00'),(0,0,4401,'2025-12-20','2026-03-19',4519,0,'','','0000-00-00','manshi','2025-12-20 11:00:49','','0000-00-00 00:00:00'),(0,0,4402,'2025-12-20','2026-03-19',4520,0,'','','0000-00-00','drashti','2025-12-20 11:01:39','','0000-00-00 00:00:00'),(0,0,4403,'2025-12-20','2026-03-19',4521,0,'','','0000-00-00','manshi','2025-12-20 11:07:26','','0000-00-00 00:00:00'),(0,0,4404,'2025-12-20','2026-03-19',4522,0,'','','0000-00-00','drashti','2025-12-20 11:09:53','','0000-00-00 00:00:00'),(0,0,4405,'2025-12-20','2026-03-19',4523,0,'','','0000-00-00','priyanshi','2025-12-20 11:10:36','','0000-00-00 00:00:00'),(0,0,4406,'2025-12-20','2026-03-19',4524,0,'','','0000-00-00','priyanshi','2025-12-20 11:15:46','','0000-00-00 00:00:00'),(0,0,4407,'2025-12-20','2026-03-19',4525,0,'','','0000-00-00','priyanshi','2025-12-20 11:27:11','','0000-00-00 00:00:00'),(0,0,4408,'2025-12-20','2026-03-19',4526,0,'','','0000-00-00','janvi','2025-12-20 11:38:22','','0000-00-00 00:00:00'),(0,0,4409,'2025-12-20','2026-03-19',4527,0,'','','0000-00-00','manshi','2025-12-20 11:44:47','','0000-00-00 00:00:00'),(0,0,4410,'2025-12-20','2026-03-19',4325,0,'','','0000-00-00','drashti','2025-12-20 11:45:40','','0000-00-00 00:00:00'),(0,0,4411,'2025-12-20','2026-03-19',4528,0,'','','0000-00-00','drashti','2025-12-20 11:48:42','','0000-00-00 00:00:00'),(0,0,4412,'2025-12-20','2026-03-19',4529,0,'','','0000-00-00','priyanshi','2025-12-20 11:53:06','','0000-00-00 00:00:00'),(0,0,4413,'2025-12-20','2026-03-19',4530,0,'','','0000-00-00','priyanshi','2025-12-20 12:03:53','','0000-00-00 00:00:00'),(0,0,4414,'2025-12-20','2026-03-19',4531,0,'','','0000-00-00','priyanshi','2025-12-20 12:14:26','','0000-00-00 00:00:00'),(0,0,4415,'2025-12-20','2026-03-19',4532,0,'','','0000-00-00','drashti','2025-12-20 12:15:19','','0000-00-00 00:00:00'),(0,0,4416,'2025-12-20','2026-03-19',4533,0,'','','0000-00-00','manshi','2025-12-20 12:21:42','','0000-00-00 00:00:00'),(0,0,4417,'2025-12-20','2026-03-19',4534,0,'','','0000-00-00','drashti','2025-12-20 12:27:47','','0000-00-00 00:00:00'),(0,0,4418,'2025-12-20','2026-03-19',4535,0,'','','0000-00-00','shweta','2025-12-20 12:27:55','','0000-00-00 00:00:00'),(0,0,4419,'2025-12-20','2026-03-19',4536,0,'','','0000-00-00','drashti','2025-12-20 12:29:58','','0000-00-00 00:00:00'),(0,0,4420,'2025-12-20','2026-03-19',4537,0,'','','0000-00-00','janvi','2025-12-20 12:32:23','','0000-00-00 00:00:00'),(0,0,4421,'2025-12-20','2026-03-19',4538,0,'','','0000-00-00','drashti','2025-12-20 12:32:56','','0000-00-00 00:00:00'),(0,0,4422,'2025-12-20','2026-03-19',4539,0,'','','0000-00-00','manshi','2025-12-20 13:04:44','','0000-00-00 00:00:00'),(0,0,4423,'2025-12-20','2026-03-19',4540,0,'','','0000-00-00','shweta','2025-12-20 13:11:52','','0000-00-00 00:00:00'),(0,0,4424,'2025-12-20','2026-03-19',4542,0,'','','0000-00-00','janvi','2025-12-20 17:56:50','','0000-00-00 00:00:00'),(0,0,4425,'2025-12-20','2026-03-19',4543,0,'','','0000-00-00','janvi','2025-12-20 18:07:51','','0000-00-00 00:00:00'),(0,0,4426,'2025-12-20','2026-03-19',4544,0,'','','0000-00-00','manshi','2025-12-20 19:08:51','','0000-00-00 00:00:00'),(0,0,4427,'2025-12-20','2026-03-19',4545,0,'','','0000-00-00','janvi','2025-12-20 19:12:10','','0000-00-00 00:00:00'),(0,0,4428,'2025-12-21','2026-03-20',4546,0,'','','0000-00-00','drashti','2025-12-21 09:13:05','','0000-00-00 00:00:00'),(0,0,4429,'2025-12-21','2026-03-20',4547,0,'','','0000-00-00','drashti','2025-12-21 09:16:41','','0000-00-00 00:00:00'),(0,0,4430,'2025-12-21','2026-03-20',4548,0,'','','0000-00-00','drashti','2025-12-21 09:19:08','','0000-00-00 00:00:00'),(0,0,4431,'2025-12-21','2026-03-20',4549,0,'','','0000-00-00','drashti','2025-12-21 12:07:53','','0000-00-00 00:00:00'),(0,0,4432,'2025-12-22','2026-03-21',4551,0,'','','0000-00-00','reception','2025-12-22 08:58:19','','0000-00-00 00:00:00'),(0,0,4433,'2025-12-22','2026-03-21',4552,0,'','','0000-00-00','reception','2025-12-22 09:01:33','','0000-00-00 00:00:00'),(0,0,4434,'2025-12-22','2026-03-21',4553,0,'','','0000-00-00','reception','2025-12-22 09:13:23','','0000-00-00 00:00:00'),(0,0,4435,'2025-12-22','2026-03-21',4554,0,'','','0000-00-00','reception','2025-12-22 09:22:01','','0000-00-00 00:00:00'),(0,0,4436,'2025-12-22','2026-03-21',4555,0,'','','0000-00-00','janvi','2025-12-22 09:26:41','','0000-00-00 00:00:00'),(0,0,4437,'2025-12-22','2026-03-21',4556,0,'','','0000-00-00','reception','2025-12-22 09:29:33','','0000-00-00 00:00:00'),(0,0,4438,'2025-12-22','2026-03-21',4557,0,'','','0000-00-00','reception','2025-12-22 09:32:57','','0000-00-00 00:00:00'),(0,0,4439,'2025-12-22','2026-03-21',4559,0,'','','0000-00-00','reception','2025-12-22 09:42:04','','0000-00-00 00:00:00'),(0,0,4440,'2025-12-22','2026-03-21',4561,0,'','','0000-00-00','reception','2025-12-22 09:59:58','','0000-00-00 00:00:00'),(0,0,4441,'2025-12-22','2026-03-21',4562,0,'','','0000-00-00','urvashi','2025-12-22 10:04:05','','0000-00-00 00:00:00'),(0,0,4442,'2025-12-22','2026-03-21',4563,0,'','','0000-00-00','reception','2025-12-22 10:05:17','','0000-00-00 00:00:00'),(0,0,4443,'2025-12-22','2026-03-21',4565,0,'','','0000-00-00','janvi','2025-12-22 10:14:00','','0000-00-00 00:00:00'),(0,0,4444,'2025-12-22','2026-03-21',4566,0,'','','0000-00-00','reception','2025-12-22 10:18:36','','0000-00-00 00:00:00'),(0,0,4445,'2025-12-22','2026-03-21',4567,0,'','','0000-00-00','janvi','2025-12-22 10:20:35','','0000-00-00 00:00:00'),(0,0,4446,'2025-12-22','2026-03-21',4568,0,'','','0000-00-00','janvi','2025-12-22 10:22:45','','0000-00-00 00:00:00'),(0,0,4447,'2025-12-22','2026-03-21',4569,0,'','','0000-00-00','priyanshi','2025-12-22 10:26:56','','0000-00-00 00:00:00'),(0,0,4448,'2025-12-22','2026-03-21',4570,0,'','','0000-00-00','priyanshi','2025-12-22 10:30:41','','0000-00-00 00:00:00'),(0,0,4449,'2025-12-22','2026-03-21',4571,0,'','','0000-00-00','janvi','2025-12-22 10:34:50','','0000-00-00 00:00:00'),(0,0,4450,'2025-12-22','2026-03-21',4572,0,'','','0000-00-00','priyanshi','2025-12-22 10:43:34','','0000-00-00 00:00:00'),(0,0,4451,'2025-12-22','2026-03-21',4573,0,'','','0000-00-00','reception','2025-12-22 10:44:25','','0000-00-00 00:00:00'),(0,0,4452,'2025-12-22','2026-03-21',4574,0,'','','0000-00-00','drashti','2025-12-22 10:46:35','','0000-00-00 00:00:00'),(0,0,4453,'2025-12-22','2026-03-21',4575,0,'','','0000-00-00','drashti','2025-12-22 10:47:53','','0000-00-00 00:00:00'),(0,0,4454,'2025-12-22','2026-03-21',4576,0,'','','0000-00-00','janvi','2025-12-22 10:54:58','','0000-00-00 00:00:00'),(0,0,4455,'2025-12-22','2026-03-21',4577,0,'','','0000-00-00','drashti','2025-12-22 10:56:19','','0000-00-00 00:00:00'),(0,0,4456,'2025-12-22','2026-03-21',4578,0,'','','0000-00-00','reception','2025-12-22 11:02:49','','0000-00-00 00:00:00'),(0,0,4457,'2025-12-22','2026-03-21',4579,0,'','','0000-00-00','reception','2025-12-22 11:10:23','','0000-00-00 00:00:00'),(0,0,4458,'2025-12-22','2026-03-21',4580,0,'','','0000-00-00','reception','2025-12-22 11:13:08','','0000-00-00 00:00:00'),(0,0,4459,'2025-12-22','2026-03-21',4581,0,'','','0000-00-00','drashti','2025-12-22 11:15:56','','0000-00-00 00:00:00'),(0,0,4460,'2025-12-22','2026-03-21',4582,0,'','','0000-00-00','janvi','2025-12-22 11:16:08','','0000-00-00 00:00:00'),(0,0,4461,'2025-12-22','2026-03-21',4583,0,'','','0000-00-00','reception','2025-12-22 11:18:11','','0000-00-00 00:00:00'),(0,0,4462,'2025-12-22','2026-03-21',4584,0,'','','0000-00-00','janvi','2025-12-22 11:18:34','','0000-00-00 00:00:00'),(0,0,4463,'2025-12-22','2026-03-21',4585,0,'','','0000-00-00','drashti','2025-12-22 11:26:32','','0000-00-00 00:00:00'),(0,0,4464,'2025-12-22','2026-03-21',4586,0,'','','0000-00-00','reception','2025-12-22 11:26:42','','0000-00-00 00:00:00'),(0,0,4465,'2025-12-22','2026-03-21',4587,0,'','','0000-00-00','janvi','2025-12-22 11:28:06','','0000-00-00 00:00:00'),(0,0,4466,'2025-12-22','2026-03-21',4589,0,'','','0000-00-00','drashti','2025-12-22 11:34:47','','0000-00-00 00:00:00'),(0,0,4467,'2025-12-22','2026-03-21',3824,0,'','','0000-00-00','janvi','2025-12-22 11:36:28','','0000-00-00 00:00:00'),(0,0,4468,'2025-12-22','2026-03-21',4590,0,'','','0000-00-00','reception','2025-12-22 11:41:05','','0000-00-00 00:00:00'),(0,0,4469,'2025-12-22','2026-03-21',4591,0,'','','0000-00-00','manshi','2025-12-22 11:43:09','','0000-00-00 00:00:00'),(0,0,4470,'2025-12-22','2026-03-21',4592,0,'','','0000-00-00','drashti','2025-12-22 11:48:45','','0000-00-00 00:00:00'),(0,0,4471,'2025-12-22','2026-03-21',4594,0,'','','0000-00-00','reception','2025-12-22 11:56:28','','0000-00-00 00:00:00'),(0,0,4472,'2025-12-22','2026-03-21',4595,0,'','','0000-00-00','reception','2025-12-22 11:58:52','','0000-00-00 00:00:00'),(0,0,4473,'2025-12-22','2026-03-21',4596,0,'','','0000-00-00','reception','2025-12-22 12:00:47','','0000-00-00 00:00:00'),(0,0,4474,'2025-12-22','2026-03-21',4597,0,'','','0000-00-00','reception','2025-12-22 12:09:32','','0000-00-00 00:00:00'),(0,0,4475,'2025-12-22','2026-03-21',4599,0,'','','0000-00-00','janvi','2025-12-22 12:19:15','','0000-00-00 00:00:00'),(0,0,4476,'2025-12-22','2026-03-21',4189,0,'','','0000-00-00','janvi','2025-12-22 12:22:15','','0000-00-00 00:00:00'),(0,0,4477,'2025-12-22','2026-03-21',4601,0,'','','0000-00-00','reception','2025-12-22 12:35:07','','0000-00-00 00:00:00'),(0,0,4478,'2025-12-22','2026-03-21',4602,0,'','','0000-00-00','reception','2025-12-22 12:37:09','','0000-00-00 00:00:00'),(0,0,4479,'2025-12-22','2026-03-21',4603,0,'','','0000-00-00','priyanshi','2025-12-22 12:40:14','','0000-00-00 00:00:00'),(0,0,4480,'2025-12-22','2026-03-21',4604,0,'','','0000-00-00','priyanshi','2025-12-22 13:00:36','','0000-00-00 00:00:00'),(0,0,4481,'2025-12-22','2026-03-21',4605,0,'','','0000-00-00','reception','2025-12-22 13:07:16','','0000-00-00 00:00:00'),(0,0,4482,'2025-12-22','2026-03-21',4606,0,'','','0000-00-00','reception','2025-12-22 13:10:58','','0000-00-00 00:00:00'),(0,0,4483,'2025-12-22','2026-03-21',4607,0,'','','0000-00-00','priyanshi','2025-12-22 13:26:02','','0000-00-00 00:00:00'),(0,0,4484,'2025-12-22','2026-03-21',4608,0,'','','0000-00-00','janvi','2025-12-22 13:33:52','','0000-00-00 00:00:00'),(0,0,4485,'2025-12-22','2026-03-21',4609,0,'','','0000-00-00','janvi','2025-12-22 13:56:15','','0000-00-00 00:00:00'),(0,0,4486,'2025-12-22','2026-03-21',4610,0,'','','0000-00-00','drashti','2025-12-22 14:32:33','','0000-00-00 00:00:00'),(0,0,4487,'2025-12-22','2026-03-21',4612,0,'','','0000-00-00','reception','2025-12-22 17:09:48','','0000-00-00 00:00:00'),(0,0,4488,'2025-12-22','2026-03-21',4613,0,'','','0000-00-00','drashti','2025-12-22 17:16:54','','0000-00-00 00:00:00'),(0,0,4489,'2025-12-22','2026-03-21',4614,0,'','','0000-00-00','reception','2025-12-22 17:20:12','','0000-00-00 00:00:00'),(0,0,4490,'2025-12-22','2026-03-21',4615,0,'','','0000-00-00','reception','2025-12-22 17:34:33','','0000-00-00 00:00:00'),(0,0,4491,'2025-12-22','2026-03-21',4616,0,'','','0000-00-00','reception','2025-12-22 17:40:04','','0000-00-00 00:00:00'),(0,0,4492,'2025-12-22','2026-03-21',4618,0,'','','0000-00-00','manshi','2025-12-22 17:42:31','','0000-00-00 00:00:00'),(0,0,4493,'2025-12-22','2026-03-21',4619,0,'','','0000-00-00','drashti','2025-12-22 17:50:19','','0000-00-00 00:00:00'),(0,0,4494,'2025-12-22','2026-03-21',4620,0,'','','0000-00-00','janvi','2025-12-22 17:51:28','','0000-00-00 00:00:00'),(0,0,4495,'2025-12-22','2026-03-21',4621,0,'','','0000-00-00','reception','2025-12-22 18:05:04','','0000-00-00 00:00:00'),(0,0,4496,'2025-12-22','2026-03-21',4622,0,'','','0000-00-00','reception','2025-12-22 18:12:24','','0000-00-00 00:00:00'),(0,0,4497,'2025-12-22','2026-03-21',4623,0,'','','0000-00-00','manshi','2025-12-22 18:13:32','','0000-00-00 00:00:00'),(0,0,4498,'2025-12-22','2026-03-21',4624,0,'','','0000-00-00','drashti','2025-12-22 18:17:48','','0000-00-00 00:00:00'),(0,0,4499,'2025-12-22','2026-03-21',4625,0,'','','0000-00-00','drashti','2025-12-22 18:22:05','','0000-00-00 00:00:00'),(0,0,4500,'2025-12-22','2026-03-21',4626,0,'','','0000-00-00','drashti','2025-12-22 18:32:02','','0000-00-00 00:00:00'),(0,0,4501,'2025-12-22','2026-03-21',4627,0,'','','0000-00-00','janvi','2025-12-22 18:32:33','','0000-00-00 00:00:00'),(0,0,4502,'2025-12-22','2026-03-21',4628,0,'','','0000-00-00','drashti','2025-12-22 18:34:44','','0000-00-00 00:00:00'),(0,0,4503,'2025-12-22','2026-03-21',4629,0,'','','0000-00-00','manshi','2025-12-22 18:39:08','','0000-00-00 00:00:00'),(0,0,4504,'2025-12-22','2026-03-21',4630,0,'','','0000-00-00','reception','2025-12-22 18:40:14','','0000-00-00 00:00:00'),(0,0,4505,'2025-12-22','2026-03-21',4631,0,'','','0000-00-00','janvi','2025-12-22 18:44:01','','0000-00-00 00:00:00'),(0,0,4506,'2025-12-22','2026-03-21',4632,0,'','','0000-00-00','janvi','2025-12-22 18:50:02','','0000-00-00 00:00:00'),(0,0,4507,'2025-12-22','2026-03-21',4633,0,'','','0000-00-00','drashti','2025-12-22 18:51:54','','0000-00-00 00:00:00'),(0,0,4508,'2025-12-22','2026-03-21',4634,0,'','','0000-00-00','janvi','2025-12-22 18:53:49','','0000-00-00 00:00:00'),(0,0,4509,'2025-12-22','2026-03-21',4635,0,'','','0000-00-00','reception','2025-12-22 18:56:41','','0000-00-00 00:00:00'),(0,0,4510,'2025-12-22','2026-03-21',4636,0,'','','0000-00-00','drashti','2025-12-22 19:00:06','','0000-00-00 00:00:00'),(0,0,4511,'2025-12-22','2026-03-21',4637,0,'','','0000-00-00','drashti','2025-12-22 19:08:41','','0000-00-00 00:00:00'),(0,0,4512,'2025-12-22','2026-03-21',4638,0,'','','0000-00-00','drashti','2025-12-22 19:15:51','','0000-00-00 00:00:00'),(0,0,4513,'2025-12-22','2026-03-21',4639,0,'','','0000-00-00','manshi','2025-12-22 19:50:50','','0000-00-00 00:00:00'),(0,0,4514,'2025-12-22','2026-03-21',4640,0,'','','0000-00-00','janvi','2025-12-22 19:53:02','','0000-00-00 00:00:00'),(0,0,4515,'2025-12-22','2026-03-21',4641,0,'','','0000-00-00','janvi','2025-12-22 19:55:49','','0000-00-00 00:00:00'),(0,0,4516,'2025-12-22','2026-03-21',4642,0,'','','0000-00-00','drashti','2025-12-22 20:01:53','','0000-00-00 00:00:00'),(0,0,4517,'2025-12-22','2026-03-21',4643,0,'','','0000-00-00','drashti','2025-12-22 20:15:09','','0000-00-00 00:00:00'),(0,0,4518,'2025-12-22','2026-03-21',4644,0,'','','0000-00-00','priyanshi','2025-12-22 21:00:20','','0000-00-00 00:00:00'),(0,0,4519,'2025-12-23','2026-03-22',4646,0,'','','0000-00-00','drashti','2025-12-23 09:46:41','','0000-00-00 00:00:00'),(0,0,4520,'2025-12-23','2026-03-22',4647,0,'','','0000-00-00','drashti','2025-12-23 10:08:02','','0000-00-00 00:00:00'),(0,0,4521,'2025-12-23','2026-03-22',4648,0,'','','0000-00-00','reception','2025-12-23 10:08:14','','0000-00-00 00:00:00'),(0,0,4522,'2025-12-23','2026-03-22',4649,0,'','','0000-00-00','manshi','2025-12-23 10:16:54','','0000-00-00 00:00:00'),(0,0,4523,'2025-12-23','2026-03-22',4650,0,'','','0000-00-00','manshi','2025-12-23 10:17:45','','0000-00-00 00:00:00'),(0,0,4524,'2025-12-23','2026-03-22',4651,0,'','','0000-00-00','drashti','2025-12-23 10:21:55','','0000-00-00 00:00:00'),(0,0,4525,'2025-12-23','2026-03-22',4652,0,'','','0000-00-00','reception','2025-12-23 10:27:17','','0000-00-00 00:00:00'),(0,0,4526,'2025-12-23','2026-03-22',4653,0,'','','0000-00-00','reception','2025-12-23 10:50:41','','0000-00-00 00:00:00'),(0,0,4527,'2025-12-23','2026-03-22',4654,0,'','','0000-00-00','janvi','2025-12-23 10:59:58','','0000-00-00 00:00:00'),(0,0,4528,'2025-12-23','2026-03-22',4655,0,'','','0000-00-00','reception','2025-12-23 11:04:20','','0000-00-00 00:00:00'),(0,0,4529,'2025-12-23','2026-03-22',4656,0,'','','0000-00-00','janvi','2025-12-23 11:06:21','','0000-00-00 00:00:00'),(0,0,4530,'2025-12-23','2026-03-22',4657,0,'','','0000-00-00','drashti','2025-12-23 11:07:41','','0000-00-00 00:00:00'),(0,0,4531,'2025-12-23','2026-03-22',4658,0,'','','0000-00-00','janvi','2025-12-23 11:08:43','','0000-00-00 00:00:00'),(0,0,4532,'2025-12-23','2026-03-22',4659,0,'','','0000-00-00','reception','2025-12-23 11:08:44','','0000-00-00 00:00:00'),(0,0,4533,'2025-12-23','2026-03-22',4660,0,'','','0000-00-00','reception','2025-12-23 11:11:22','','0000-00-00 00:00:00'),(0,0,4534,'2025-12-23','2026-03-22',4661,0,'','','0000-00-00','drashti','2025-12-23 11:16:19','','0000-00-00 00:00:00'),(0,0,4535,'2025-12-23','2026-03-22',4662,0,'','','0000-00-00','janvi','2025-12-23 11:18:15','','0000-00-00 00:00:00'),(0,0,4536,'2025-12-23','2026-03-22',4663,0,'','','0000-00-00','drashti','2025-12-23 11:19:29','','0000-00-00 00:00:00'),(0,0,4537,'2025-12-23','2026-03-22',4664,0,'','','0000-00-00','reception','2025-12-23 11:20:05','','0000-00-00 00:00:00'),(0,0,4538,'2025-12-23','2026-03-22',4665,0,'','','0000-00-00','reception','2025-12-23 11:22:00','','0000-00-00 00:00:00'),(0,0,4539,'2025-12-23','2026-03-22',4666,0,'','','0000-00-00','drashti','2025-12-23 11:24:03','','0000-00-00 00:00:00'),(0,0,4540,'2025-12-23','2026-03-22',4667,0,'','','0000-00-00','reception','2025-12-23 11:28:41','','0000-00-00 00:00:00'),(0,0,4541,'2025-12-23','2026-03-22',4668,0,'','','0000-00-00','drashti','2025-12-23 11:35:00','','0000-00-00 00:00:00'),(0,0,4542,'2025-12-23','2026-03-22',4669,0,'','','0000-00-00','drashti','2025-12-23 11:38:26','','0000-00-00 00:00:00'),(0,0,4543,'2025-12-23','2026-03-22',4670,0,'','','0000-00-00','janvi','2025-12-23 11:39:14','','0000-00-00 00:00:00'),(0,0,4544,'2025-12-23','2026-03-22',4671,0,'','','0000-00-00','drashti','2025-12-23 11:46:00','','0000-00-00 00:00:00'),(0,0,4545,'2025-12-23','2026-03-22',4672,0,'','','0000-00-00','janvi','2025-12-23 11:47:15','','0000-00-00 00:00:00'),(0,0,4546,'2025-12-23','2026-03-22',4673,0,'','','0000-00-00','reception','2025-12-23 11:47:40','','0000-00-00 00:00:00'),(0,0,4547,'2025-12-23','2026-03-22',4674,0,'','','0000-00-00','janvi','2025-12-23 11:48:50','','0000-00-00 00:00:00'),(0,0,4548,'2025-12-23','2026-03-22',4675,0,'','','0000-00-00','reception','2025-12-23 11:51:58','','0000-00-00 00:00:00'),(0,0,4549,'2025-12-23','2026-03-22',4676,0,'','','0000-00-00','reception','2025-12-23 11:53:26','','0000-00-00 00:00:00'),(0,0,4550,'2025-12-23','2026-03-22',4677,0,'','','0000-00-00','drashti','2025-12-23 12:09:11','','0000-00-00 00:00:00'),(0,0,4551,'2025-12-23','2026-03-22',4678,0,'','','0000-00-00','janvi','2025-12-23 12:11:54','','0000-00-00 00:00:00'),(0,0,4552,'2025-12-23','2026-03-22',4679,0,'','','0000-00-00','janvi','2025-12-23 12:14:43','','0000-00-00 00:00:00'),(0,0,4553,'2025-12-23','2026-03-22',4680,0,'','','0000-00-00','reception','2025-12-23 12:27:27','','0000-00-00 00:00:00'),(0,0,4554,'2025-12-23','2026-03-22',4681,0,'','','0000-00-00','manshi','2025-12-23 12:35:05','','0000-00-00 00:00:00'),(0,0,4555,'2025-12-23','2026-03-22',4682,0,'','','0000-00-00','reception','2025-12-23 12:36:01','','0000-00-00 00:00:00'),(0,0,4556,'2025-12-23','2026-03-22',4683,0,'','','0000-00-00','reception','2025-12-23 13:17:06','','0000-00-00 00:00:00'),(0,0,4557,'2025-12-23','2026-03-22',4684,0,'','','0000-00-00','reception','2025-12-23 13:46:58','','0000-00-00 00:00:00'),(0,0,4558,'2025-12-23','2026-03-22',4685,0,'','','0000-00-00','reception','2025-12-23 13:51:54','','0000-00-00 00:00:00'),(0,0,4559,'2025-12-23','2026-03-22',4686,0,'','','0000-00-00','reception','2025-12-23 16:38:01','','0000-00-00 00:00:00'),(0,0,4560,'2025-12-23','2026-03-22',4687,0,'','','0000-00-00','reception','2025-12-23 16:42:17','','0000-00-00 00:00:00'),(0,0,4561,'2025-12-23','2026-03-22',4688,0,'','','0000-00-00','reception','2025-12-23 17:15:56','','0000-00-00 00:00:00'),(0,0,4562,'2025-12-23','2026-03-22',4689,0,'','','0000-00-00','manshi','2025-12-23 17:20:34','','0000-00-00 00:00:00'),(0,0,4563,'2025-12-23','2026-03-22',4690,0,'','','0000-00-00','reception','2025-12-23 17:35:12','','0000-00-00 00:00:00'),(0,0,4564,'2025-12-23','2026-03-22',4691,0,'','','0000-00-00','reception','2025-12-23 17:36:26','','0000-00-00 00:00:00'),(0,0,4565,'2025-12-23','2026-03-22',4692,0,'','','0000-00-00','manshi','2025-12-23 17:42:07','','0000-00-00 00:00:00'),(0,0,4566,'2025-12-23','2026-03-22',4693,0,'','','0000-00-00','reception','2025-12-23 17:45:34','','0000-00-00 00:00:00'),(0,0,4567,'2025-12-23','2026-03-22',4694,0,'','','0000-00-00','reception','2025-12-23 17:46:53','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `patient_reg` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `patient_vitals`
--

DROP TABLE IF EXISTS `patient_vitals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `patient_vitals` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `op_id` bigint(20) NOT NULL,
  `ip_id` bigint(20) NOT NULL,
  `date` date NOT NULL COMMENT 'visit date ',
  `vital_stage` enum('OA','OD','AV') NOT NULL DEFAULT 'OA' COMMENT 'ON Admission,ON Discharge,AV Additional vitals',
  `vital_cd` varchar(15) NOT NULL,
  `vital_value` varchar(8) NOT NULL,
  `CreatedBy` varchar(50) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(50) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `patient_id` (`patient_id`),
  KEY `visit_id` (`visit_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3484 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `patient_vitals`
--

LOCK TABLES `patient_vitals` WRITE;
/*!40000 ALTER TABLE `patient_vitals` DISABLE KEYS */;
INSERT INTO `patient_vitals` VALUES (1,0,0,37,37,0,4,'2025-10-07','OA','PR','89','mo','2025-10-08 11:35:54','','0000-00-00 00:00:00'),(2,0,0,37,37,0,4,'2025-10-07','OA','SpO2','97','mo','2025-10-08 11:35:56','','0000-00-00 00:00:00'),(3,0,0,37,37,0,4,'2025-10-07','OA','BP','106/70','mo','2025-10-08 11:36:01','','0000-00-00 00:00:00'),(4,0,0,37,37,0,4,'2025-10-07','OA','RR','20','mo','2025-10-08 11:36:06','','0000-00-00 00:00:00'),(5,0,0,37,37,0,4,'2025-10-07','OA','RBS','130','mo','2025-10-08 11:36:20','','0000-00-00 00:00:00'),(6,0,0,37,37,0,4,'2025-10-07','OD','PR','72','mo','2025-10-08 11:37:14','','0000-00-00 00:00:00'),(7,0,0,37,37,0,4,'2025-10-07','OD','SpO2','99','mo','2025-10-08 11:37:18','','0000-00-00 00:00:00'),(8,0,0,37,37,0,4,'2025-10-07','OD','BP','106/60','mo','2025-10-08 11:37:36','','0000-00-00 00:00:00'),(9,0,0,35,35,32,0,'2025-10-08','OA','BP','134/86','drarchit','2025-10-08 11:52:29','','0000-00-00 00:00:00'),(10,0,0,117,117,106,0,'2025-10-08','OA','SpO2','97','drjayant','2025-10-08 18:14:28','','0000-00-00 00:00:00'),(11,0,0,118,118,107,0,'2025-10-08','OA','BP','132/86','drarchit','2025-10-08 18:33:10','','0000-00-00 00:00:00'),(12,0,0,60,60,0,8,'2025-10-06','OA','PR','121','mo','2025-10-08 23:18:25','mo','2025-10-09 00:02:03'),(13,0,0,60,60,0,8,'2025-10-06','OA','SpO2','97','mo','2025-10-08 23:18:27','mo','2025-10-09 00:02:05'),(14,0,0,60,60,0,8,'2025-10-06','OA','BP','140/80','mo','2025-10-08 23:18:41','mo','2025-10-09 00:02:10'),(15,0,0,60,60,0,8,'2025-10-06','OA','RBS','102','mo','2025-10-08 23:18:51','mo','2025-10-09 00:00:37'),(16,0,0,34,34,0,3,'2025-10-03','OA','PR','88','mo','2025-10-08 23:29:09','','0000-00-00 00:00:00'),(17,0,0,34,34,0,3,'2025-10-03','OA','BP','130/90','mo','2025-10-08 23:29:18','','0000-00-00 00:00:00'),(18,0,0,34,34,0,3,'2025-10-03','OA','RR','20','mo','2025-10-08 23:29:23','','0000-00-00 00:00:00'),(19,0,0,34,34,0,3,'2025-10-03','OA','SpO2','96','mo','2025-10-08 23:29:31','','0000-00-00 00:00:00'),(20,0,0,34,34,0,3,'2025-10-03','OA','RBS','69','mo','2025-10-08 23:29:45','','0000-00-00 00:00:00'),(21,0,0,62,62,0,9,'2025-10-06','OA','PR','78','mo','2025-10-08 23:43:46','','0000-00-00 00:00:00'),(22,0,0,62,62,0,9,'2025-10-06','OA','SpO2','97','mo','2025-10-08 23:43:48','','0000-00-00 00:00:00'),(23,0,0,62,62,0,9,'2025-10-06','OA','BP','124/80','mo','2025-10-08 23:43:52','','0000-00-00 00:00:00'),(24,0,0,62,62,0,9,'2025-10-06','OA','RR','20','mo','2025-10-08 23:43:55','','0000-00-00 00:00:00'),(25,0,0,62,62,0,9,'2025-10-06','OA','RBS','85','mo','2025-10-08 23:44:06','','0000-00-00 00:00:00'),(26,0,0,66,66,0,11,'2025-10-08','OA','SpO2','98','mo','2025-10-08 23:51:10','','0000-00-00 00:00:00'),(27,0,0,66,66,0,11,'2025-10-08','OA','PR','90','mo','2025-10-08 23:51:15','','0000-00-00 00:00:00'),(28,0,0,66,66,0,11,'2025-10-08','OA','BP','140/90','mo','2025-10-08 23:51:17','','0000-00-00 00:00:00'),(29,0,0,66,66,0,11,'2025-10-08','OA','RR','22','mo','2025-10-08 23:51:33','','0000-00-00 00:00:00'),(30,0,0,56,56,0,7,'2025-10-07','OA','SpO2','98','mo','2025-10-08 23:58:46','','0000-00-00 00:00:00'),(31,0,0,56,56,0,7,'2025-10-07','OA','PR','128','mo','2025-10-08 23:58:49','','0000-00-00 00:00:00'),(32,0,0,56,56,0,7,'2025-10-07','OA','BP','106/60','mo','2025-10-08 23:58:52','','0000-00-00 00:00:00'),(33,0,0,56,56,0,7,'2025-10-07','OA','RR','22','mo','2025-10-08 23:58:59','','0000-00-00 00:00:00'),(34,0,0,56,56,0,7,'2025-10-07','OA','RBS','135','mo','2025-10-08 23:59:14','','0000-00-00 00:00:00'),(35,0,0,60,60,0,8,'2025-10-06','OA','RR','20','mo','2025-10-09 00:02:17','','0000-00-00 00:00:00'),(36,0,0,16,150,0,12,'2025-10-08','OA','SpO2','98','mo','2025-10-09 00:20:51','','0000-00-00 00:00:00'),(37,0,0,16,150,0,12,'2025-10-08','OA','BP','122/70','mo','2025-10-09 00:20:56','','0000-00-00 00:00:00'),(38,0,0,16,150,0,12,'2025-10-08','OA','RR','22','mo','2025-10-09 00:20:58','','0000-00-00 00:00:00'),(39,0,0,16,150,0,12,'2025-10-08','OA','PR','62','mo','2025-10-09 00:21:04','','0000-00-00 00:00:00'),(40,0,0,34,34,0,3,'2025-10-03','OA','TP','97.3','mo','2025-10-09 11:59:48','','0000-00-00 00:00:00'),(41,0,0,34,34,0,3,'2025-10-03','OD','TP','97','mo','2025-10-09 11:59:56','','0000-00-00 00:00:00'),(42,0,0,34,34,0,3,'2025-10-03','OD','PR','88','mo','2025-10-09 11:59:59','mo','2025-10-09 12:00:11'),(43,0,0,34,34,0,3,'2025-10-03','OD','SpO2','96','mo','2025-10-09 12:00:18','','0000-00-00 00:00:00'),(44,0,0,34,34,0,3,'2025-10-03','OD','BP','130/90','mo','2025-10-09 12:00:26','','0000-00-00 00:00:00'),(45,0,0,34,34,0,3,'2025-10-03','OD','RR','20','mo','2025-10-09 12:00:31','','0000-00-00 00:00:00'),(46,0,0,21,21,0,1,'2025-10-04','OA','SpO2','91','mo','2025-10-09 13:17:26','mo','2025-10-09 13:17:44'),(47,0,0,21,21,0,1,'2025-10-04','OA','PR','48','mo','2025-10-09 13:17:29','','0000-00-00 00:00:00'),(48,0,0,21,21,0,1,'2025-10-04','OA','BP','110/60','mo','2025-10-09 13:17:34','','0000-00-00 00:00:00'),(49,0,0,21,21,0,1,'2025-10-04','OD','SpO2','98','mo','2025-10-09 13:17:49','','0000-00-00 00:00:00'),(50,0,0,21,21,0,1,'2025-10-04','OD','BP','114/70','mo','2025-10-09 13:17:52','','0000-00-00 00:00:00'),(51,0,0,21,21,0,1,'2025-10-04','OD','PR','78','mo','2025-10-09 13:18:23','','0000-00-00 00:00:00'),(52,0,0,162,165,0,13,'2025-10-09','OA','PR','60','mo','2025-10-09 15:47:41','','0000-00-00 00:00:00'),(53,0,0,162,165,0,13,'2025-10-09','OA','SpO2','98','mo','2025-10-09 15:47:43','','0000-00-00 00:00:00'),(54,0,0,162,165,0,13,'2025-10-09','OA','BP','110/70','mo','2025-10-09 15:47:50','','0000-00-00 00:00:00'),(55,0,0,162,165,0,13,'2025-10-09','OA','RR','21','mo','2025-10-09 15:48:05','','0000-00-00 00:00:00'),(56,0,0,162,165,0,13,'2025-10-09','OD','PR','65','mo','2025-10-09 15:52:42','','0000-00-00 00:00:00'),(57,0,0,162,165,0,13,'2025-10-09','OD','SpO2','98','mo','2025-10-09 15:52:43','','0000-00-00 00:00:00'),(58,0,0,162,165,0,13,'2025-10-09','OD','BP','100/60','mo','2025-10-09 15:52:51','','0000-00-00 00:00:00'),(59,0,0,162,165,0,13,'2025-10-09','OD','RR','22','mo','2025-10-09 15:52:54','','0000-00-00 00:00:00'),(60,0,0,63,63,0,10,'2025-10-07','OA','PR','87','mo','2025-10-09 16:43:46','','0000-00-00 00:00:00'),(61,0,0,63,63,0,10,'2025-10-07','OA','SpO2','98','mo','2025-10-09 16:43:48','','0000-00-00 00:00:00'),(62,0,0,63,63,0,10,'2025-10-07','OA','BP','114/76','mo','2025-10-09 16:43:52','','0000-00-00 00:00:00'),(63,0,0,63,63,0,10,'2025-10-07','OA','RR','18','mo','2025-10-09 16:44:01','','0000-00-00 00:00:00'),(64,0,0,161,193,0,15,'2025-10-09','OA','PR','80','mo','2025-10-09 17:07:56','','0000-00-00 00:00:00'),(65,0,0,161,193,0,15,'2025-10-09','OA','SpO2','96','mo','2025-10-09 17:08:02','','0000-00-00 00:00:00'),(66,0,0,161,193,0,15,'2025-10-09','OA','BP','170/100','mo','2025-10-09 17:08:08','','0000-00-00 00:00:00'),(67,0,0,161,193,0,15,'2025-10-09','OA','RR','20','mo','2025-10-09 17:08:20','','0000-00-00 00:00:00'),(68,0,0,48,48,0,5,'2025-10-06','OA','PR','104','mo','2025-10-09 17:16:29','','0000-00-00 00:00:00'),(69,0,0,48,48,0,5,'2025-10-06','OA','SpO2','96','mo','2025-10-09 17:16:30','','0000-00-00 00:00:00'),(70,0,0,48,48,0,5,'2025-10-06','OA','BP','90/60','mo','2025-10-09 17:16:35','','0000-00-00 00:00:00'),(71,0,0,48,48,0,5,'2025-10-06','OA','RR','22','mo','2025-10-09 17:16:42','','0000-00-00 00:00:00'),(72,0,0,165,168,0,14,'2025-10-09','OA','PR','80','mo','2025-10-09 23:57:13','','0000-00-00 00:00:00'),(73,0,0,165,168,0,14,'2025-10-09','OA','SpO2','98','mo','2025-10-09 23:57:15','','0000-00-00 00:00:00'),(74,0,0,165,168,0,14,'2025-10-09','OA','BP','148/80','mo','2025-10-09 23:57:19','','0000-00-00 00:00:00'),(75,0,0,165,168,0,14,'2025-10-09','OA','RR','22','mo','2025-10-09 23:57:28','','0000-00-00 00:00:00'),(76,0,0,28,28,0,2,'2025-10-04','OA','PR','108','mo','2025-10-10 00:11:45','','0000-00-00 00:00:00'),(77,0,0,28,28,0,2,'2025-10-04','OA','SpO2','93','mo','2025-10-10 00:11:47','','0000-00-00 00:00:00'),(78,0,0,28,28,0,2,'2025-10-04','OA','BP','118/50','mo','2025-10-10 00:11:52','','0000-00-00 00:00:00'),(79,0,0,28,28,0,2,'2025-10-04','OA','RR','24','mo','2025-10-10 00:12:07','','0000-00-00 00:00:00'),(80,0,0,274,284,0,21,'2025-10-09','OA','PR','80','mo','2025-10-10 00:16:33','','0000-00-00 00:00:00'),(81,0,0,274,284,0,21,'2025-10-09','OA','SpO2','98','mo','2025-10-10 00:16:34','','0000-00-00 00:00:00'),(82,0,0,274,284,0,21,'2025-10-09','OA','BP','110/70','mo','2025-10-10 00:16:37','','0000-00-00 00:00:00'),(83,0,0,274,284,0,21,'2025-10-09','OA','RR','22','mo','2025-10-10 00:16:41','','0000-00-00 00:00:00'),(84,0,0,249,257,0,19,'2025-10-08','OA','PR','103','mo','2025-10-10 00:23:06','','0000-00-00 00:00:00'),(85,0,0,249,257,0,19,'2025-10-08','OA','SpO2','98','mo','2025-10-10 00:23:08','','0000-00-00 00:00:00'),(86,0,0,249,257,0,19,'2025-10-08','OA','BP','74/50','mo','2025-10-10 00:23:11','','0000-00-00 00:00:00'),(87,0,0,249,257,0,19,'2025-10-08','OA','RR','22','mo','2025-10-10 00:23:20','','0000-00-00 00:00:00'),(88,0,0,28,28,0,2,'2025-10-04','OD','SpO2','98','mo','2025-10-10 10:59:48','','0000-00-00 00:00:00'),(89,0,0,28,28,0,2,'2025-10-04','OD','PR','78','mo','2025-10-10 10:59:50','','0000-00-00 00:00:00'),(90,0,0,28,28,0,2,'2025-10-04','OD','BP','122/80','mo','2025-10-10 11:00:06','','0000-00-00 00:00:00'),(91,0,0,165,168,0,14,'2025-10-09','OD','PR','78','mo','2025-10-10 11:20:40','','0000-00-00 00:00:00'),(92,0,0,165,168,0,14,'2025-10-09','OD','SpO2','98','mo','2025-10-10 11:20:42','','0000-00-00 00:00:00'),(93,0,0,165,168,0,14,'2025-10-09','OD','BP','150/80','mo','2025-10-10 11:20:49','','0000-00-00 00:00:00'),(94,0,0,249,257,0,19,'2025-10-08','OD','PR','118','mo','2025-10-10 11:34:40','','0000-00-00 00:00:00'),(95,0,0,249,257,0,19,'2025-10-08','OD','SpO2','98','mo','2025-10-10 11:34:43','','0000-00-00 00:00:00'),(96,0,0,249,257,0,19,'2025-10-08','OD','BP','96/50','mo','2025-10-10 11:34:48','','0000-00-00 00:00:00'),(97,0,0,62,62,0,9,'2025-10-06','OD','PR','100','mo','2025-10-10 11:41:51','','0000-00-00 00:00:00'),(98,0,0,62,62,0,9,'2025-10-06','OD','SpO2','98','mo','2025-10-10 11:41:52','','0000-00-00 00:00:00'),(99,0,0,62,62,0,9,'2025-10-06','OD','BP','110/74','mo','2025-10-10 11:41:56','','0000-00-00 00:00:00'),(100,0,0,60,60,0,8,'2025-10-06','OD','SpO2','98','mo','2025-10-10 12:50:51','','0000-00-00 00:00:00'),(101,0,0,60,60,0,8,'2025-10-06','OD','PR','100','mo','2025-10-10 12:50:54','','0000-00-00 00:00:00'),(102,0,0,60,60,0,8,'2025-10-06','OD','BP','150/90','mo','2025-10-10 12:50:58','','0000-00-00 00:00:00'),(103,0,0,161,193,0,15,'2025-10-09','OA','TP','98.7','mo','2025-10-10 18:18:28','','0000-00-00 00:00:00'),(104,0,0,161,193,0,15,'2025-10-09','OA','RBS','119','mo','2025-10-10 18:18:38','','0000-00-00 00:00:00'),(105,0,0,161,193,0,15,'2025-10-09','OD','TP','98.6','mo','2025-10-10 18:19:00','','0000-00-00 00:00:00'),(106,0,0,161,193,0,15,'2025-10-09','OD','PR','78','mo','2025-10-10 18:19:06','','0000-00-00 00:00:00'),(107,0,0,161,193,0,15,'2025-10-09','OD','SpO2','96','mo','2025-10-10 18:19:08','mo','2025-10-10 18:19:20'),(108,0,0,161,193,0,15,'2025-10-09','OD','BP','150/90','mo','2025-10-10 18:19:25','mo','2025-10-11 11:18:35'),(109,0,0,161,193,0,15,'2025-10-09','OD','RR','22','mo','2025-10-10 18:19:30','','0000-00-00 00:00:00'),(110,0,0,292,416,0,27,'2025-10-10','OA','TP','100.4','mo','2025-10-10 23:55:10','','0000-00-00 00:00:00'),(111,0,0,292,416,0,27,'2025-10-10','OA','PR','112','mo','2025-10-10 23:55:26','','0000-00-00 00:00:00'),(112,0,0,292,416,0,27,'2025-10-10','OA','SpO2','92','mo','2025-10-10 23:55:28','','0000-00-00 00:00:00'),(113,0,0,292,416,0,27,'2025-10-10','OA','BP','110/72','mo','2025-10-10 23:55:31','','0000-00-00 00:00:00'),(114,0,0,292,416,0,27,'2025-10-10','OA','RR','22','mo','2025-10-10 23:55:37','','0000-00-00 00:00:00'),(115,0,0,385,406,0,22,'2025-10-10','OA','PR','77','mo','2025-10-11 00:38:02','','0000-00-00 00:00:00'),(116,0,0,385,406,0,22,'2025-10-10','OA','SpO2','98','mo','2025-10-11 00:38:04','','0000-00-00 00:00:00'),(117,0,0,385,406,0,22,'2025-10-10','OA','BP','152/90','mo','2025-10-11 00:38:11','','0000-00-00 00:00:00'),(118,0,0,385,406,0,22,'2025-10-10','OA','RR','22','mo','2025-10-11 00:38:16','','0000-00-00 00:00:00'),(119,0,0,393,415,0,26,'2025-10-10','OA','PR','78','mo','2025-10-11 01:33:55','','0000-00-00 00:00:00'),(120,0,0,393,415,0,26,'2025-10-10','OA','SpO2','97','mo','2025-10-11 01:33:57','','0000-00-00 00:00:00'),(121,0,0,393,415,0,26,'2025-10-10','OA','BP','92/54','mo','2025-10-11 01:34:02','','0000-00-00 00:00:00'),(122,0,0,393,415,0,26,'2025-10-10','OA','RR','24','mo','2025-10-11 01:34:06','','0000-00-00 00:00:00'),(123,0,0,273,283,0,20,'2025-10-09','OA','TP','97.3','mo','2025-10-11 10:11:09','','0000-00-00 00:00:00'),(124,0,0,273,283,0,20,'2025-10-09','OA','PR','146','mo','2025-10-11 10:11:11','','0000-00-00 00:00:00'),(125,0,0,273,283,0,20,'2025-10-09','OA','SpO2','90','mo','2025-10-11 10:11:15','','0000-00-00 00:00:00'),(126,0,0,273,283,0,20,'2025-10-09','OA','BP','146/74','mo','2025-10-11 10:11:23','','0000-00-00 00:00:00'),(127,0,0,273,283,0,20,'2025-10-09','OA','RR','32','mo','2025-10-11 10:11:48','','0000-00-00 00:00:00'),(128,0,0,56,56,0,7,'2025-10-07','OD','SpO2','98','mo','2025-10-11 12:32:31','','0000-00-00 00:00:00'),(129,0,0,56,56,0,7,'2025-10-07','OD','PR','78','mo','2025-10-11 12:32:33','','0000-00-00 00:00:00'),(130,0,0,56,56,0,7,'2025-10-07','OD','BP','118/70','mo','2025-10-11 12:32:40','','0000-00-00 00:00:00'),(131,0,0,321,422,0,29,'2025-10-11','OA','SpO2','99','mo','2025-10-11 17:23:32','','0000-00-00 00:00:00'),(132,0,0,321,422,0,29,'2025-10-11','OA','BP','130/80','mo','2025-10-11 17:23:40','','0000-00-00 00:00:00'),(133,0,0,321,422,0,29,'2025-10-11','OA','PR','91','mo','2025-10-11 17:23:51','','0000-00-00 00:00:00'),(134,0,0,321,422,0,29,'2025-10-11','OD','SpO2','99','mo','2025-10-11 17:23:56','','0000-00-00 00:00:00'),(135,0,0,321,422,0,29,'2025-10-11','OD','BP','126/80','mo','2025-10-11 17:23:59','','0000-00-00 00:00:00'),(136,0,0,321,422,0,29,'2025-10-11','OD','PR','78','mo','2025-10-11 17:24:03','','0000-00-00 00:00:00'),(137,0,0,16,150,0,12,'2025-10-08','OD','PR','58','mo','2025-10-11 18:36:59','','0000-00-00 00:00:00'),(138,0,0,16,150,0,12,'2025-10-08','OD','SpO2','98','mo','2025-10-11 18:36:59','','0000-00-00 00:00:00'),(139,0,0,16,150,0,12,'2025-10-08','OD','BP','110/70','mo','2025-10-11 18:37:03','','0000-00-00 00:00:00'),(140,0,0,429,488,0,37,'2025-10-11','OA','PR','74','mo','2025-10-11 22:23:58','','0000-00-00 00:00:00'),(141,0,0,429,488,0,37,'2025-10-11','OA','SpO2','97','mo','2025-10-11 22:24:10','','0000-00-00 00:00:00'),(142,0,0,429,488,0,37,'2025-10-11','OA','BP','110/70','mo','2025-10-11 22:24:14','','0000-00-00 00:00:00'),(143,0,0,429,488,0,37,'2025-10-11','OA','RR','22','mo','2025-10-11 22:24:18','','0000-00-00 00:00:00'),(144,0,0,429,488,0,37,'2025-10-11','OD','PR','80','mo','2025-10-11 22:24:21','','0000-00-00 00:00:00'),(145,0,0,429,488,0,37,'2025-10-11','OD','SpO2','98','mo','2025-10-11 22:24:23','','0000-00-00 00:00:00'),(146,0,0,429,488,0,37,'2025-10-11','OD','BP','114/70','mo','2025-10-11 22:24:50','','0000-00-00 00:00:00'),(147,0,0,429,488,0,37,'2025-10-11','OD','RR','22','mo','2025-10-11 22:24:53','','0000-00-00 00:00:00'),(148,0,0,403,430,0,32,'2025-10-11','OA','PR','66','mo','2025-10-12 00:22:12','','0000-00-00 00:00:00'),(149,0,0,403,430,0,32,'2025-10-11','OA','SpO2','98','mo','2025-10-12 00:22:13','','0000-00-00 00:00:00'),(150,0,0,403,430,0,32,'2025-10-11','OA','BP','110/80','mo','2025-10-12 00:22:22','','0000-00-00 00:00:00'),(151,0,0,403,430,0,32,'2025-10-11','OA','RR','22','mo','2025-10-12 00:22:27','','0000-00-00 00:00:00'),(152,0,0,179,216,0,16,'2025-10-09','OA','PR','80','mo','2025-10-12 00:27:56','','0000-00-00 00:00:00'),(153,0,0,179,216,0,16,'2025-10-09','OA','TP','99.2','mo','2025-10-12 00:28:00','','0000-00-00 00:00:00'),(154,0,0,179,216,0,16,'2025-10-09','OA','SpO2','96','mo','2025-10-12 00:28:02','','0000-00-00 00:00:00'),(155,0,0,179,216,0,16,'2025-10-09','OA','BP','140/80','mo','2025-10-12 00:28:05','','0000-00-00 00:00:00'),(156,0,0,179,216,0,16,'2025-10-09','OA','RR','20','mo','2025-10-12 00:28:40','','0000-00-00 00:00:00'),(157,0,0,464,505,0,39,'2025-10-11','OA','PR','105','mo','2025-10-12 00:45:01','','0000-00-00 00:00:00'),(158,0,0,464,505,0,39,'2025-10-11','OA','SpO2','98','mo','2025-10-12 00:45:03','','0000-00-00 00:00:00'),(159,0,0,464,505,0,39,'2025-10-11','OA','BP','110/72','mo','2025-10-12 00:45:13','','0000-00-00 00:00:00'),(160,0,0,464,505,0,39,'2025-10-11','OA','RR','22','mo','2025-10-12 00:45:26','','0000-00-00 00:00:00'),(161,0,0,286,434,0,33,'2025-10-11','OA','PR','99','mo','2025-10-12 01:02:01','','0000-00-00 00:00:00'),(162,0,0,286,434,0,33,'2025-10-11','OA','RR','22','mo','2025-10-12 01:02:02','','0000-00-00 00:00:00'),(163,0,0,286,434,0,33,'2025-10-11','OA','BP','124/70','mo','2025-10-12 01:02:07','','0000-00-00 00:00:00'),(164,0,0,286,434,0,33,'2025-10-11','OA','SpO2','96','mo','2025-10-12 01:02:12','','0000-00-00 00:00:00'),(165,0,0,234,426,0,30,'2025-10-11','OA','PR','111','mo','2025-10-12 01:10:07','','0000-00-00 00:00:00'),(166,0,0,234,426,0,30,'2025-10-11','OA','SpO2','94','mo','2025-10-12 01:10:09','mo','2025-10-12 01:10:30'),(167,0,0,234,426,0,30,'2025-10-11','OA','BP','136/90','mo','2025-10-12 01:10:25','','0000-00-00 00:00:00'),(168,0,0,234,426,0,30,'2025-10-11','OA','RR','22','mo','2025-10-12 01:10:34','','0000-00-00 00:00:00'),(169,0,0,224,428,0,31,'2025-10-11','OA','PR','75','mo','2025-10-12 01:14:48','','0000-00-00 00:00:00'),(170,0,0,224,428,0,31,'2025-10-11','OA','SpO2','98','mo','2025-10-12 01:14:50','','0000-00-00 00:00:00'),(171,0,0,224,428,0,31,'2025-10-11','OA','BP','110/70','mo','2025-10-12 01:14:53','','0000-00-00 00:00:00'),(172,0,0,224,428,0,31,'2025-10-11','OA','RR','20','mo','2025-10-12 01:14:58','','0000-00-00 00:00:00'),(173,0,0,224,428,0,31,'2025-10-11','OD','PR','78','mo','2025-10-12 08:45:33','','0000-00-00 00:00:00'),(174,0,0,224,428,0,31,'2025-10-11','OD','SpO2','99','mo','2025-10-12 08:45:34','','0000-00-00 00:00:00'),(175,0,0,224,428,0,31,'2025-10-11','OD','BP','114/70','mo','2025-10-12 08:45:42','','0000-00-00 00:00:00'),(176,0,0,224,428,0,31,'2025-10-11','OD','RR','20','mo','2025-10-12 08:45:45','','0000-00-00 00:00:00'),(177,0,0,286,434,0,33,'2025-10-11','OD','PR','88','mo','2025-10-12 10:10:21','','0000-00-00 00:00:00'),(178,0,0,286,434,0,33,'2025-10-11','OD','SpO2','98','mo','2025-10-12 10:10:23','','0000-00-00 00:00:00'),(179,0,0,286,434,0,33,'2025-10-11','OD','BP','100/62','mo','2025-10-12 10:10:27','','0000-00-00 00:00:00'),(180,0,0,286,434,0,33,'2025-10-11','OD','RR','22','mo','2025-10-12 10:10:31','','0000-00-00 00:00:00'),(181,0,0,394,417,0,28,'2025-10-10','OD','TP','97.6','mo','2025-10-12 10:45:41','','0000-00-00 00:00:00'),(182,0,0,394,417,0,28,'2025-10-10','OD','SpO2','97','mo','2025-10-12 10:45:45','','0000-00-00 00:00:00'),(183,0,0,394,417,0,28,'2025-10-10','OD','BP','168/90','mo','2025-10-12 10:45:54','','0000-00-00 00:00:00'),(184,0,0,394,417,0,28,'2025-10-10','OD','RR','22','mo','2025-10-12 10:46:02','','0000-00-00 00:00:00'),(185,0,0,394,417,0,28,'2025-10-10','OD','RBS','132','mo','2025-10-12 10:46:17','','0000-00-00 00:00:00'),(186,0,0,66,66,0,11,'2025-10-08','OD','PR','88','mo','2025-10-12 11:32:03','','0000-00-00 00:00:00'),(187,0,0,66,66,0,11,'2025-10-08','OD','SpO2','98','mo','2025-10-12 11:32:10','','0000-00-00 00:00:00'),(188,0,0,66,66,0,11,'2025-10-08','OD','BP','128/80','mo','2025-10-12 11:32:13','','0000-00-00 00:00:00'),(189,0,0,66,66,0,11,'2025-10-08','OD','RR','22','mo','2025-10-12 11:32:16','','0000-00-00 00:00:00'),(190,0,0,234,426,0,30,'2025-10-11','OD','PR','85','mo','2025-10-12 12:46:28','','0000-00-00 00:00:00'),(191,0,0,234,426,0,30,'2025-10-11','OD','SpO2','98','mo','2025-10-12 12:46:30','','0000-00-00 00:00:00'),(192,0,0,234,426,0,30,'2025-10-11','OD','BP','130/80','mo','2025-10-12 12:46:45','','0000-00-00 00:00:00'),(193,0,0,234,426,0,30,'2025-10-11','OD','RR','22','mo','2025-10-12 12:46:51','','0000-00-00 00:00:00'),(194,0,0,467,509,0,41,'2025-10-12','OA','PR','80','mo','2025-10-12 21:13:04','','0000-00-00 00:00:00'),(195,0,0,467,509,0,41,'2025-10-12','OA','SpO2','98','mo','2025-10-12 21:13:05','','0000-00-00 00:00:00'),(196,0,0,467,509,0,41,'2025-10-12','OA','BP','110/70','mo','2025-10-12 21:13:14','','0000-00-00 00:00:00'),(197,0,0,467,509,0,41,'2025-10-12','OA','RR','21','mo','2025-10-12 21:13:20','','0000-00-00 00:00:00'),(198,0,0,44,510,0,42,'2025-10-12','OA','PR','86','mo','2025-10-12 21:41:56','','0000-00-00 00:00:00'),(199,0,0,44,510,0,42,'2025-10-12','OA','SpO2','95','mo','2025-10-12 21:42:01','','0000-00-00 00:00:00'),(200,0,0,44,510,0,42,'2025-10-12','OA','BP','80/60','mo','2025-10-12 21:42:06','','0000-00-00 00:00:00'),(201,0,0,44,510,0,42,'2025-10-12','OA','RR','20','mo','2025-10-12 21:42:09','','0000-00-00 00:00:00'),(202,0,0,44,510,0,42,'2025-10-12','OD','PR','78','mo','2025-10-12 21:42:14','','0000-00-00 00:00:00'),(203,0,0,44,510,0,42,'2025-10-12','OD','SpO2','96','mo','2025-10-12 21:42:18','','0000-00-00 00:00:00'),(204,0,0,44,510,0,42,'2025-10-12','OD','BP','94/62','mo','2025-10-12 21:42:25','','0000-00-00 00:00:00'),(205,0,0,44,510,0,42,'2025-10-12','OD','RR','20','mo','2025-10-12 21:42:29','','0000-00-00 00:00:00'),(206,0,0,500,549,474,0,'2025-10-13','OA','BP','132/78','drarchit','2025-10-13 11:08:38','','0000-00-00 00:00:00'),(207,0,0,393,415,0,26,'2025-10-10','OD','PR','88','mo','2025-10-13 11:45:07','','0000-00-00 00:00:00'),(208,0,0,393,415,0,26,'2025-10-10','OD','SpO2','96','mo','2025-10-13 11:45:09','','0000-00-00 00:00:00'),(209,0,0,393,415,0,26,'2025-10-10','OD','BP','118/74','mo','2025-10-13 11:45:14','','0000-00-00 00:00:00'),(210,0,0,393,415,0,26,'2025-10-10','OD','RR','22','mo','2025-10-13 11:45:29','','0000-00-00 00:00:00'),(211,0,0,276,413,0,24,'2025-10-10','OA','PR','104','mo','2025-10-13 12:56:31','','0000-00-00 00:00:00'),(212,0,0,276,413,0,24,'2025-10-10','OA','SpO2','98','mo','2025-10-13 12:56:34','','0000-00-00 00:00:00'),(213,0,0,276,413,0,24,'2025-10-10','OA','BP','80/52','mo','2025-10-13 12:56:37','','0000-00-00 00:00:00'),(214,0,0,276,413,0,24,'2025-10-10','OA','RR','24','mo','2025-10-13 12:56:43','','0000-00-00 00:00:00'),(215,0,0,276,413,0,24,'2025-10-10','OD','PR','90','mo','2025-10-13 12:56:46','','0000-00-00 00:00:00'),(216,0,0,276,413,0,24,'2025-10-10','OD','SpO2','98','mo','2025-10-13 12:56:48','','0000-00-00 00:00:00'),(217,0,0,276,413,0,24,'2025-10-10','OD','BP','118/76','mo','2025-10-13 12:56:52','','0000-00-00 00:00:00'),(218,0,0,276,413,0,24,'2025-10-10','OD','RR','22','mo','2025-10-13 12:56:55','','0000-00-00 00:00:00'),(219,0,0,63,63,0,10,'2025-10-07','OD','PR','68','mo','2025-10-13 13:07:35','','0000-00-00 00:00:00'),(220,0,0,63,63,0,10,'2025-10-07','OD','SpO2','97','mo','2025-10-13 13:07:37','','0000-00-00 00:00:00'),(221,0,0,63,63,0,10,'2025-10-07','OD','BP','134/78','mo','2025-10-13 13:07:41','','0000-00-00 00:00:00'),(222,0,0,63,63,0,10,'2025-10-07','OD','RR','20','mo','2025-10-13 13:09:17','','0000-00-00 00:00:00'),(223,0,0,520,572,495,0,'2025-10-13','OA','BP','142/86','drarchit','2025-10-13 13:44:43','','0000-00-00 00:00:00'),(224,0,0,403,430,0,32,'2025-10-11','OD','PR','74','mo','2025-10-13 14:45:00','','0000-00-00 00:00:00'),(225,0,0,403,430,0,32,'2025-10-11','OD','SpO2','99','mo','2025-10-13 14:45:07','','0000-00-00 00:00:00'),(226,0,0,403,430,0,32,'2025-10-11','OD','BP','126/84','mo','2025-10-13 14:45:21','','0000-00-00 00:00:00'),(227,0,0,403,430,0,32,'2025-10-11','OD','RR','20','mo','2025-10-13 14:45:23','','0000-00-00 00:00:00'),(228,0,0,387,527,0,43,'2025-10-13','OA','PR','80','mo','2025-10-13 16:13:07','','0000-00-00 00:00:00'),(229,0,0,387,527,0,43,'2025-10-13','OA','SpO2','98','mo','2025-10-13 16:13:08','','0000-00-00 00:00:00'),(230,0,0,387,527,0,43,'2025-10-13','OA','BP','130/80','mo','2025-10-13 16:13:15','','0000-00-00 00:00:00'),(231,0,0,387,527,0,43,'2025-10-13','OA','RR','20','mo','2025-10-13 16:13:20','','0000-00-00 00:00:00'),(232,0,0,387,527,0,43,'2025-10-13','OD','PR','84','mo','2025-10-13 16:13:26','','0000-00-00 00:00:00'),(233,0,0,387,527,0,43,'2025-10-13','OD','SpO2','99','mo','2025-10-13 16:13:28','','0000-00-00 00:00:00'),(234,0,0,387,527,0,43,'2025-10-13','OD','BP','124/76','mo','2025-10-13 16:13:42','','0000-00-00 00:00:00'),(235,0,0,387,527,0,43,'2025-10-13','OD','RR','22','mo','2025-10-13 16:19:49','','0000-00-00 00:00:00'),(236,0,0,576,634,550,0,'2025-10-13','OA','BP','132/78','drarchit','2025-10-13 18:22:02','','0000-00-00 00:00:00'),(237,0,0,561,618,535,0,'2025-10-13','OA','BP','134/86','drarchit','2025-10-13 18:54:34','','0000-00-00 00:00:00'),(238,0,0,559,615,533,0,'2025-10-13','OA','BP','142/86','drarchit','2025-10-13 19:11:52','','0000-00-00 00:00:00'),(239,0,0,465,506,0,40,'2025-10-11','OA','PR','83','mo','2025-10-13 19:33:14','','0000-00-00 00:00:00'),(240,0,0,465,506,0,40,'2025-10-11','OA','SpO2','98','mo','2025-10-13 19:33:16','','0000-00-00 00:00:00'),(241,0,0,465,506,0,40,'2025-10-11','OA','BP','120/80','mo','2025-10-13 19:33:20','','0000-00-00 00:00:00'),(242,0,0,465,506,0,40,'2025-10-11','OA','RR','22','mo','2025-10-13 19:33:32','','0000-00-00 00:00:00'),(243,0,0,465,506,0,40,'2025-10-11','OD','PR','76','mo','2025-10-13 19:33:43','','0000-00-00 00:00:00'),(244,0,0,465,506,0,40,'2025-10-11','OD','SpO2','99','mo','2025-10-13 19:33:45','','0000-00-00 00:00:00'),(245,0,0,465,506,0,40,'2025-10-11','OD','BP','128/74','mo','2025-10-13 19:33:57','','0000-00-00 00:00:00'),(246,0,0,590,656,563,0,'2025-10-13','OA','BP','132/78','drarchit','2025-10-13 19:34:44','','0000-00-00 00:00:00'),(247,0,0,464,505,0,39,'2025-10-11','OD','PR','78','mo','2025-10-13 21:55:18','','0000-00-00 00:00:00'),(248,0,0,464,505,0,39,'2025-10-11','OD','SpO2','97','mo','2025-10-13 21:55:24','','0000-00-00 00:00:00'),(249,0,0,464,505,0,39,'2025-10-11','OD','BP','110/70','mo','2025-10-13 21:55:32','','0000-00-00 00:00:00'),(250,0,0,464,505,0,39,'2025-10-11','OD','RR','18','mo','2025-10-13 21:55:53','','0000-00-00 00:00:00'),(251,0,0,22,477,0,35,'2025-10-11','OA','TP','98.2','mo','2025-10-13 22:31:14','','0000-00-00 00:00:00'),(252,0,0,22,477,0,35,'2025-10-11','OA','PR','76','mo','2025-10-13 22:31:16','','0000-00-00 00:00:00'),(253,0,0,22,477,0,35,'2025-10-11','OA','SpO2','98','mo','2025-10-13 22:31:19','','0000-00-00 00:00:00'),(254,0,0,22,477,0,35,'2025-10-11','OA','BP','130/90','mo','2025-10-13 22:31:23','','0000-00-00 00:00:00'),(255,0,0,22,477,0,35,'2025-10-11','OA','RR','24','mo','2025-10-13 22:31:29','','0000-00-00 00:00:00'),(256,0,0,22,477,0,35,'2025-10-11','OD','TP','98.1','mo','2025-10-13 22:31:32','','0000-00-00 00:00:00'),(257,0,0,22,477,0,35,'2025-10-11','OD','PR','76','mo','2025-10-13 22:37:02','','0000-00-00 00:00:00'),(258,0,0,22,477,0,35,'2025-10-11','OD','SpO2','98','mo','2025-10-13 22:37:12','','0000-00-00 00:00:00'),(259,0,0,22,477,0,35,'2025-10-11','OD','BP','136/80','mo','2025-10-13 22:37:21','','0000-00-00 00:00:00'),(260,0,0,22,477,0,35,'2025-10-11','OD','RR','22','mo','2025-10-13 22:37:24','','0000-00-00 00:00:00'),(261,0,0,602,668,0,47,'2025-09-25','OA','PR','110','mo','2025-10-14 09:16:02','','0000-00-00 00:00:00'),(262,0,0,602,668,0,47,'2025-09-25','OA','SpO2','94','mo','2025-10-14 09:16:06','','0000-00-00 00:00:00'),(263,0,0,602,668,0,47,'2025-09-25','OA','BP','80/40','mo','2025-10-14 09:16:10','','0000-00-00 00:00:00'),(264,0,0,602,668,0,47,'2025-09-25','OA','RR','32','mo','2025-10-14 09:16:15','','0000-00-00 00:00:00'),(265,0,0,602,668,0,47,'2025-09-25','OD','PR','82','mo','2025-10-14 09:16:20','','0000-00-00 00:00:00'),(266,0,0,602,668,0,47,'2025-09-25','OD','SpO2','97','mo','2025-10-14 09:16:25','','0000-00-00 00:00:00'),(267,0,0,602,668,0,47,'2025-09-25','OD','BP','114/78','mo','2025-10-14 09:16:32','','0000-00-00 00:00:00'),(268,0,0,602,668,0,47,'2025-09-25','OD','RR','22','mo','2025-10-14 09:16:35','','0000-00-00 00:00:00'),(269,0,0,388,684,0,53,'2025-09-30','OA','PR','68','mo','2025-10-14 09:33:43','','0000-00-00 00:00:00'),(270,0,0,388,684,0,53,'2025-09-30','OA','SpO2','98','mo','2025-10-14 09:33:46','','0000-00-00 00:00:00'),(271,0,0,388,684,0,53,'2025-09-30','OA','BP','132/80','mo','2025-10-14 09:33:52','','0000-00-00 00:00:00'),(272,0,0,388,684,0,53,'2025-09-30','OA','RR','18','mo','2025-10-14 09:33:57','','0000-00-00 00:00:00'),(273,0,0,388,684,0,53,'2025-09-30','OD','PR','72','mo','2025-10-14 09:34:00','','0000-00-00 00:00:00'),(274,0,0,388,684,0,53,'2025-09-30','OD','SpO2','98','mo','2025-10-14 09:34:02','','0000-00-00 00:00:00'),(275,0,0,388,684,0,53,'2025-09-30','OD','BP','126/80','mo','2025-10-14 09:34:06','','0000-00-00 00:00:00'),(276,0,0,388,684,0,53,'2025-09-30','OD','RR','20','mo','2025-10-14 09:34:08','','0000-00-00 00:00:00'),(277,0,0,21,689,586,0,'2025-10-14','OA','BP','134/86','drarchit','2025-10-14 11:03:59','','0000-00-00 00:00:00'),(278,0,0,631,708,601,0,'2025-10-14','OA','BP','132/78','drarchit','2025-10-14 11:24:34','','0000-00-00 00:00:00'),(279,0,0,635,712,605,0,'2025-10-14','OA','BP','132/78','drarchit','2025-10-14 11:37:52','','0000-00-00 00:00:00'),(280,0,0,640,717,610,0,'2025-10-14','OA','BP','134/86','drarchit','2025-10-14 12:05:07','','0000-00-00 00:00:00'),(281,0,0,385,406,0,22,'2025-10-10','OD','PR','80','mo','2025-10-14 12:07:59','','0000-00-00 00:00:00'),(282,0,0,385,406,0,22,'2025-10-10','OD','SpO2','98','mo','2025-10-14 12:08:01','','0000-00-00 00:00:00'),(283,0,0,385,406,0,22,'2025-10-10','OD','BP','130/80','mo','2025-10-14 12:08:07','','0000-00-00 00:00:00'),(284,0,0,385,406,0,22,'2025-10-10','OD','RR','20','mo','2025-10-14 12:08:09','','0000-00-00 00:00:00'),(285,0,0,467,509,0,41,'2025-10-12','OD','PR','68','mo','2025-10-14 12:18:45','','0000-00-00 00:00:00'),(286,0,0,467,509,0,41,'2025-10-12','OD','SpO2','98','mo','2025-10-14 12:18:49','','0000-00-00 00:00:00'),(287,0,0,467,509,0,41,'2025-10-12','OD','BP','110/68','mo','2025-10-14 12:18:57','','0000-00-00 00:00:00'),(288,0,0,467,509,0,41,'2025-10-12','OD','RR','20','mo','2025-10-14 12:19:06','','0000-00-00 00:00:00'),(289,0,0,388,409,0,23,'2025-09-30','OA','PR','68','mo','2025-10-14 12:56:04','','0000-00-00 00:00:00'),(290,0,0,388,409,0,23,'2025-09-30','OA','SpO2','98','mo','2025-10-14 12:56:06','','0000-00-00 00:00:00'),(291,0,0,388,409,0,23,'2025-09-30','OA','BP','132/80','mo','2025-10-14 12:56:10','','0000-00-00 00:00:00'),(292,0,0,388,409,0,23,'2025-09-30','OA','RR','18','mo','2025-10-14 12:56:17','','0000-00-00 00:00:00'),(293,0,0,388,409,0,23,'2025-09-30','OD','PR','80','mo','2025-10-14 12:56:18','','0000-00-00 00:00:00'),(294,0,0,388,409,0,23,'2025-09-30','OD','SpO2','98','mo','2025-10-14 12:56:21','','0000-00-00 00:00:00'),(295,0,0,388,409,0,23,'2025-09-30','OD','BP','120/76','mo','2025-10-14 12:56:24','','0000-00-00 00:00:00'),(296,0,0,388,409,0,23,'2025-09-30','OD','RR','20','mo','2025-10-14 12:56:26','','0000-00-00 00:00:00'),(297,0,0,648,725,618,0,'2025-10-14','OA','BP','132/78','drarchit','2025-10-14 13:07:19','','0000-00-00 00:00:00'),(298,0,0,698,782,668,0,'2025-10-14','OA','BP','142/88','drarchit','2025-10-14 18:58:16','','0000-00-00 00:00:00'),(299,0,0,454,683,0,52,'2025-10-14','OA','PR','80','mo','2025-10-14 19:10:42','','0000-00-00 00:00:00'),(300,0,0,454,683,0,52,'2025-10-14','OA','SpO2','98','mo','2025-10-14 19:10:46','','0000-00-00 00:00:00'),(301,0,0,454,683,0,52,'2025-10-14','OA','BP','130/80','mo','2025-10-14 19:10:49','','0000-00-00 00:00:00'),(302,0,0,454,683,0,52,'2025-10-14','OA','RR','22','mo','2025-10-14 19:10:55','','0000-00-00 00:00:00'),(303,0,0,454,683,0,52,'2025-10-14','OD','PR','76','mo','2025-10-14 19:10:58','','0000-00-00 00:00:00'),(304,0,0,454,683,0,52,'2025-10-14','OD','SpO2','99','mo','2025-10-14 19:11:09','','0000-00-00 00:00:00'),(305,0,0,454,683,0,52,'2025-10-14','OD','BP','124/86','mo','2025-10-14 19:11:14','','0000-00-00 00:00:00'),(306,0,0,454,683,0,52,'2025-10-14','OD','RR','20','mo','2025-10-14 19:11:16','','0000-00-00 00:00:00'),(307,0,0,292,416,0,27,'2025-10-10','OD','PR','78','mo','2025-10-14 19:28:26','','0000-00-00 00:00:00'),(308,0,0,292,416,0,27,'2025-10-10','OD','SpO2','98','mo','2025-10-14 19:28:41','','0000-00-00 00:00:00'),(309,0,0,292,416,0,27,'2025-10-10','OD','BP','126/82','mo','2025-10-14 19:28:49','','0000-00-00 00:00:00'),(310,0,0,292,416,0,27,'2025-10-10','OD','RR','22','mo','2025-10-14 19:28:50','','0000-00-00 00:00:00'),(311,0,0,605,673,0,49,'2025-10-06','OA','PR','102','mo','2025-10-14 19:48:35','mo','2025-10-14 19:49:32'),(312,0,0,605,673,0,49,'2025-10-06','OA','SpO2','98','mo','2025-10-14 19:48:38','','0000-00-00 00:00:00'),(313,0,0,605,673,0,49,'2025-10-06','OA','BP','134/80','mo','2025-10-14 19:48:44','mo','2025-10-14 19:49:26'),(314,0,0,605,673,0,49,'2025-10-06','OA','RR','20','mo','2025-10-14 19:48:46','mo','2025-10-14 19:49:17'),(315,0,0,605,673,0,49,'2025-10-06','OD','PR','80','mo','2025-10-14 19:48:57','','0000-00-00 00:00:00'),(316,0,0,605,673,0,49,'2025-10-06','OD','SpO2','98','mo','2025-10-14 19:48:58','','0000-00-00 00:00:00'),(317,0,0,605,673,0,49,'2025-10-06','OD','BP','126/74','mo','2025-10-14 19:49:03','','0000-00-00 00:00:00'),(318,0,0,605,673,0,49,'2025-10-06','OD','RR','22','mo','2025-10-14 19:49:05','','0000-00-00 00:00:00'),(319,0,0,649,743,0,58,'2025-10-14','OA','PR','68','mo','2025-10-14 20:07:37','','0000-00-00 00:00:00'),(320,0,0,649,743,0,58,'2025-10-14','OA','SpO2','98','mo','2025-10-14 20:07:39','','0000-00-00 00:00:00'),(321,0,0,649,743,0,58,'2025-10-14','OA','RR','16','mo','2025-10-14 20:07:45','','0000-00-00 00:00:00'),(322,0,0,607,675,0,51,'2025-10-13','OA','PR','86','mo','2025-10-14 20:33:21','','0000-00-00 00:00:00'),(323,0,0,607,675,0,51,'2025-10-13','OA','SpO2','98','mo','2025-10-14 20:33:33','','0000-00-00 00:00:00'),(324,0,0,607,675,0,51,'2025-10-13','OA','BP','110/70','mo','2025-10-14 20:33:41','','0000-00-00 00:00:00'),(325,0,0,607,675,0,51,'2025-10-13','OA','RBS','119','mo','2025-10-14 20:33:48','','0000-00-00 00:00:00'),(326,0,0,607,675,0,51,'2025-10-13','OA','RR','20','mo','2025-10-14 20:33:52','','0000-00-00 00:00:00'),(327,0,0,607,675,0,51,'2025-10-13','OD','PR','74','mo','2025-10-14 20:33:56','','0000-00-00 00:00:00'),(328,0,0,607,675,0,51,'2025-10-13','OD','SpO2','98','mo','2025-10-14 20:33:58','','0000-00-00 00:00:00'),(329,0,0,607,675,0,51,'2025-10-13','OD','BP','124/80','mo','2025-10-14 20:34:02','','0000-00-00 00:00:00'),(330,0,0,582,645,0,46,'2025-10-13','OA','TP','100.4','mo','2025-10-14 23:00:11','','0000-00-00 00:00:00'),(331,0,0,582,645,0,46,'2025-10-13','OA','PR','79','mo','2025-10-14 23:00:14','','0000-00-00 00:00:00'),(332,0,0,582,645,0,46,'2025-10-13','OA','SpO2','95','mo','2025-10-14 23:00:17','','0000-00-00 00:00:00'),(333,0,0,582,645,0,46,'2025-10-13','OA','BP','150/90','mo','2025-10-14 23:00:21','','0000-00-00 00:00:00'),(334,0,0,582,645,0,46,'2025-10-13','OA','RR','22','mo','2025-10-14 23:00:26','','0000-00-00 00:00:00'),(335,0,0,582,645,0,46,'2025-10-13','OA','RBS','137','mo','2025-10-14 23:00:38','','0000-00-00 00:00:00'),(336,0,0,66,690,0,55,'2025-10-14','OA','PR','82','mo','2025-10-14 23:08:45','','0000-00-00 00:00:00'),(337,0,0,66,690,0,55,'2025-10-14','OA','RR','22','mo','2025-10-14 23:08:45','','0000-00-00 00:00:00'),(338,0,0,66,690,0,55,'2025-10-14','OA','BP','122/72','mo','2025-10-14 23:08:51','','0000-00-00 00:00:00'),(339,0,0,66,690,0,55,'2025-10-14','OA','SpO2','98','mo','2025-10-14 23:09:02','','0000-00-00 00:00:00'),(340,0,0,606,674,0,50,'2025-10-13','OA','PR','78','mo','2025-10-14 23:19:44','','0000-00-00 00:00:00'),(341,0,0,606,674,0,50,'2025-10-13','OA','BP','110/70','mo','2025-10-14 23:19:47','','0000-00-00 00:00:00'),(342,0,0,606,674,0,50,'2025-10-13','OA','SpO2','95','mo','2025-10-14 23:19:52','','0000-00-00 00:00:00'),(343,0,0,606,674,0,50,'2025-10-13','OA','RR','16','mo','2025-10-14 23:19:56','','0000-00-00 00:00:00'),(344,0,0,127,224,0,17,'2025-10-09','OA','PR','82','mo','2025-10-14 23:29:41','','0000-00-00 00:00:00'),(345,0,0,127,224,0,17,'2025-10-09','OA','SpO2','99','mo','2025-10-14 23:29:43','','0000-00-00 00:00:00'),(346,0,0,127,224,0,17,'2025-10-09','OA','BP','150/90','mo','2025-10-14 23:29:48','','0000-00-00 00:00:00'),(347,0,0,127,224,0,17,'2025-10-09','OA','RR','22','mo','2025-10-14 23:29:51','','0000-00-00 00:00:00'),(348,0,0,127,224,0,17,'2025-10-09','OA','RBS','119','mo','2025-10-14 23:29:59','','0000-00-00 00:00:00'),(349,0,0,508,687,0,54,'2025-10-14','OA','SpO2','98','mo','2025-10-14 23:43:27','','0000-00-00 00:00:00'),(350,0,0,508,687,0,54,'2025-10-14','OA','BP','130/80','mo','2025-10-14 23:43:29','','0000-00-00 00:00:00'),(351,0,0,508,687,0,54,'2025-10-14','OA','RR','20','mo','2025-10-14 23:43:33','','0000-00-00 00:00:00'),(352,0,0,508,687,0,54,'2025-10-14','OA','PR','66','mo','2025-10-14 23:43:36','','0000-00-00 00:00:00'),(353,0,0,508,687,0,54,'2025-10-14','OA','RBS','159','mo','2025-10-14 23:43:51','','0000-00-00 00:00:00'),(354,0,0,71,487,0,36,'2025-10-11','OA','RBS','269','mo','2025-10-15 00:00:46','','0000-00-00 00:00:00'),(355,0,0,71,487,0,36,'2025-10-11','OA','BP','108/70','mo','2025-10-15 00:00:51','','0000-00-00 00:00:00'),(356,0,0,71,487,0,36,'2025-10-11','OA','RR','24','mo','2025-10-15 00:00:54','','0000-00-00 00:00:00'),(357,0,0,71,487,0,36,'2025-10-11','OA','SpO2','94','mo','2025-10-15 00:00:57','','0000-00-00 00:00:00'),(358,0,0,71,487,0,36,'2025-10-11','OA','PR','105','mo','2025-10-15 00:01:04','','0000-00-00 00:00:00'),(359,0,0,625,701,0,56,'2025-10-14','OA','SpO2','99','mo','2025-10-15 00:09:33','','0000-00-00 00:00:00'),(360,0,0,625,701,0,56,'2025-10-14','OA','PR','89','mo','2025-10-15 00:09:36','','0000-00-00 00:00:00'),(361,0,0,625,701,0,56,'2025-10-14','OA','BP','120/80','mo','2025-10-15 00:09:41','','0000-00-00 00:00:00'),(362,0,0,625,701,0,56,'2025-10-14','OA','RR','22','mo','2025-10-15 00:09:44','','0000-00-00 00:00:00'),(363,0,0,625,701,0,56,'2025-10-14','OD','SpO2','99','mo','2025-10-15 00:13:20','','0000-00-00 00:00:00'),(364,0,0,625,701,0,56,'2025-10-14','OD','BP','140/80','mo','2025-10-15 00:13:25','','0000-00-00 00:00:00'),(365,0,0,625,701,0,56,'2025-10-14','OD','PR','84','mo','2025-10-15 00:13:28','','0000-00-00 00:00:00'),(366,0,0,142,470,0,34,'2025-10-11','OA','BP','114/60','mo','2025-10-15 00:29:06','','0000-00-00 00:00:00'),(367,0,0,142,470,0,34,'2025-10-11','OA','SpO2','96','mo','2025-10-15 00:29:13','','0000-00-00 00:00:00'),(368,0,0,142,470,0,34,'2025-10-11','OA','PR','56','mo','2025-10-15 00:29:17','','0000-00-00 00:00:00'),(369,0,0,142,470,0,34,'2025-10-11','OA','RR','22','mo','2025-10-15 00:29:20','','0000-00-00 00:00:00'),(370,0,0,142,470,0,34,'2025-10-11','OA','RBS','103','mo','2025-10-15 00:29:31','','0000-00-00 00:00:00'),(371,0,0,507,574,0,44,'2025-10-13','OA','PR','90','mo','2025-10-15 00:35:57','','0000-00-00 00:00:00'),(372,0,0,507,574,0,44,'2025-10-13','OA','SpO2','98','mo','2025-10-15 00:36:00','','0000-00-00 00:00:00'),(373,0,0,507,574,0,44,'2025-10-13','OA','BP','130/80','mo','2025-10-15 00:36:05','','0000-00-00 00:00:00'),(374,0,0,507,574,0,44,'2025-10-13','OA','RR','21','mo','2025-10-15 00:36:08','','0000-00-00 00:00:00'),(375,0,0,239,246,0,18,'2025-10-09','OA','SpO2','94','mo','2025-10-15 00:42:16','','0000-00-00 00:00:00'),(376,0,0,239,246,0,18,'2025-10-09','OA','BP','70/50','mo','2025-10-15 00:42:22','','0000-00-00 00:00:00'),(377,0,0,239,246,0,18,'2025-10-09','OA','PR','80','mo','2025-10-15 00:42:26','','0000-00-00 00:00:00'),(378,0,0,239,246,0,18,'2025-10-09','OA','RR','14','mo','2025-10-15 00:42:29','','0000-00-00 00:00:00'),(379,0,0,239,246,0,18,'2025-10-09','OA','RBS','45','mo','2025-10-15 00:42:55','','0000-00-00 00:00:00'),(380,0,0,508,687,0,54,'2025-10-14','OD','PR','78','mo','2025-10-15 10:37:40','','0000-00-00 00:00:00'),(381,0,0,508,687,0,54,'2025-10-14','OD','SpO2','98','mo','2025-10-15 10:37:42','','0000-00-00 00:00:00'),(382,0,0,508,687,0,54,'2025-10-14','OD','BP','136/80','mo','2025-10-15 10:37:52','','0000-00-00 00:00:00'),(383,0,0,66,690,0,55,'2025-10-14','OD','SpO2','98','mo','2025-10-15 11:08:40','','0000-00-00 00:00:00'),(384,0,0,66,690,0,55,'2025-10-14','OD','PR','78','mo','2025-10-15 11:08:44','','0000-00-00 00:00:00'),(385,0,0,66,690,0,55,'2025-10-14','OD','BP','116/70','mo','2025-10-15 11:08:49','','0000-00-00 00:00:00'),(386,0,0,71,487,0,36,'2025-10-11','OD','PR','90','mo','2025-10-15 11:31:25','','0000-00-00 00:00:00'),(387,0,0,71,487,0,36,'2025-10-11','OD','SpO2','96','mo','2025-10-15 11:31:27','','0000-00-00 00:00:00'),(388,0,0,71,487,0,36,'2025-10-11','OD','BP','120/74','mo','2025-10-15 11:31:31','','0000-00-00 00:00:00'),(389,0,0,71,487,0,36,'2025-10-11','OD','RR','22','mo','2025-10-15 11:31:34','','0000-00-00 00:00:00'),(390,0,0,649,743,0,58,'2025-10-14','OD','PR','72','mo','2025-10-15 12:13:53','','0000-00-00 00:00:00'),(391,0,0,649,743,0,58,'2025-10-14','OD','SpO2','98','mo','2025-10-15 12:13:58','','0000-00-00 00:00:00'),(392,0,0,649,743,0,58,'2025-10-14','OD','RR','20','mo','2025-10-15 12:14:10','','0000-00-00 00:00:00'),(393,0,0,179,216,0,16,'2025-10-09','OD','TP','98.1','mo','2025-10-15 12:32:04','','0000-00-00 00:00:00'),(394,0,0,179,216,0,16,'2025-10-09','OD','PR','82','mo','2025-10-15 12:32:06','','0000-00-00 00:00:00'),(395,0,0,179,216,0,16,'2025-10-09','OD','SpO2','97','mo','2025-10-15 12:32:08','','0000-00-00 00:00:00'),(396,0,0,179,216,0,16,'2025-10-09','OD','BP','136/80','mo','2025-10-15 12:32:13','','0000-00-00 00:00:00'),(397,0,0,179,216,0,16,'2025-10-09','OD','RR','22','mo','2025-10-15 12:32:16','','0000-00-00 00:00:00'),(398,0,0,477,841,0,61,'2025-10-15','OA','SpO2','98','mo','2025-10-15 22:08:53','','0000-00-00 00:00:00'),(399,0,0,477,841,0,61,'2025-10-15','OA','BP','100/60','mo','2025-10-15 22:08:55','','0000-00-00 00:00:00'),(400,0,0,477,841,0,61,'2025-10-15','OA','PR','79','mo','2025-10-15 22:09:06','','0000-00-00 00:00:00'),(401,0,0,477,841,0,61,'2025-10-15','OA','RBS','105','mo','2025-10-15 22:09:15','','0000-00-00 00:00:00'),(402,0,0,720,809,0,60,'2025-10-15','OA','SpO2','98','mo','2025-10-15 22:14:41','','0000-00-00 00:00:00'),(403,0,0,720,809,0,60,'2025-10-15','OA','PR','88','mo','2025-10-15 22:14:44','','0000-00-00 00:00:00'),(404,0,0,720,809,0,60,'2025-10-15','OA','BP','90/60','mo','2025-10-15 22:14:53','','0000-00-00 00:00:00'),(405,0,0,720,809,0,60,'2025-10-15','OA','RBS','102','mo','2025-10-15 22:15:34','','0000-00-00 00:00:00'),(406,0,0,720,809,0,60,'2025-10-15','OA','RR','20','mo','2025-10-15 22:15:40','','0000-00-00 00:00:00'),(407,0,0,714,803,0,59,'2025-10-14','OA','PR','112','mo','2025-10-15 22:21:35','mo','2025-10-16 12:34:48'),(408,0,0,714,803,0,59,'2025-10-14','OA','SpO2','98','mo','2025-10-15 22:21:39','mo','2025-10-16 12:34:47'),(409,0,0,714,803,0,59,'2025-10-14','OA','BP','100/60','mo','2025-10-15 22:21:43','mo','2025-10-16 12:35:22'),(410,0,0,714,803,0,59,'2025-10-14','OA','RR','20','mo','2025-10-15 22:21:47','mo','2025-10-16 12:34:50'),(411,0,0,714,803,0,59,'2025-10-14','OA','RBS','271','mo','2025-10-15 22:22:04','mo','2025-10-16 12:34:52'),(412,0,0,752,871,0,62,'2025-10-15','OA','PR','88','mo','2025-10-15 22:35:24','','0000-00-00 00:00:00'),(413,0,0,752,871,0,62,'2025-10-15','OA','SpO2','98','mo','2025-10-15 22:35:26','','0000-00-00 00:00:00'),(414,0,0,752,871,0,62,'2025-10-15','OA','BP','90/60','mo','2025-10-15 22:35:30','','0000-00-00 00:00:00'),(415,0,0,752,871,0,62,'2025-10-15','OA','RR','20','mo','2025-10-15 22:35:40','','0000-00-00 00:00:00'),(416,0,0,752,871,0,62,'2025-10-15','OA','RBS','121','mo','2025-10-15 22:35:45','','0000-00-00 00:00:00'),(417,0,0,507,574,0,44,'2025-10-13','OD','PR','78','mo','2025-10-16 08:36:20','','0000-00-00 00:00:00'),(418,0,0,507,574,0,44,'2025-10-13','OD','SpO2','98','mo','2025-10-16 08:36:21','','0000-00-00 00:00:00'),(419,0,0,507,574,0,44,'2025-10-13','OD','BP','130/80','mo','2025-10-16 08:36:24','','0000-00-00 00:00:00'),(420,0,0,838,958,807,0,'2025-10-16','OA','BP','134/86','drarchit','2025-10-16 11:16:03','','0000-00-00 00:00:00'),(421,0,0,606,674,0,50,'2025-10-13','OD','PR','78','mo','2025-10-16 11:29:56','','0000-00-00 00:00:00'),(422,0,0,606,674,0,50,'2025-10-13','OD','SpO2','99','mo','2025-10-16 11:29:57','','0000-00-00 00:00:00'),(423,0,0,606,674,0,50,'2025-10-13','OD','BP','114/70','mo','2025-10-16 11:30:00','','0000-00-00 00:00:00'),(424,0,0,142,470,0,34,'2025-10-11','OD','PR','72','mo','2025-10-16 11:40:10','','0000-00-00 00:00:00'),(425,0,0,142,470,0,34,'2025-10-11','OD','SpO2','98','mo','2025-10-16 11:40:14','','0000-00-00 00:00:00'),(426,0,0,142,470,0,34,'2025-10-11','OD','BP','152/80','mo','2025-10-16 11:40:18','','0000-00-00 00:00:00'),(427,0,0,582,645,0,46,'2025-10-13','OD','SpO2','98','mo','2025-10-16 12:13:08','','0000-00-00 00:00:00'),(428,0,0,582,645,0,46,'2025-10-13','OD','PR','78','mo','2025-10-16 12:13:10','','0000-00-00 00:00:00'),(429,0,0,582,645,0,46,'2025-10-13','OD','BP','150/80','mo','2025-10-16 12:13:15','','0000-00-00 00:00:00'),(430,0,0,714,803,0,59,'2025-10-14','OD','SpO2','98','mo','2025-10-16 12:35:25','','0000-00-00 00:00:00'),(431,0,0,714,803,0,59,'2025-10-14','OD','PR','72','mo','2025-10-16 12:36:01','','0000-00-00 00:00:00'),(432,0,0,714,803,0,59,'2025-10-14','OD','BP',' 116/80','mo','2025-10-16 12:37:11','','0000-00-00 00:00:00'),(433,0,0,720,809,0,60,'2025-10-15','OD','SpO2','99','mo','2025-10-16 13:09:38','','0000-00-00 00:00:00'),(434,0,0,720,809,0,60,'2025-10-15','OD','PR','80','mo','2025-10-16 13:09:40','','0000-00-00 00:00:00'),(435,0,0,720,809,0,60,'2025-10-15','OD','BP','114/70','mo','2025-10-16 13:09:43','','0000-00-00 00:00:00'),(436,0,0,740,939,0,65,'2025-10-15','OA','PR','82','mo','2025-10-16 16:45:22','','0000-00-00 00:00:00'),(437,0,0,740,939,0,65,'2025-10-15','OA','SpO2','96','mo','2025-10-16 16:45:23','','0000-00-00 00:00:00'),(438,0,0,740,939,0,65,'2025-10-15','OA','BP','130/76','mo','2025-10-16 16:45:27','','0000-00-00 00:00:00'),(439,0,0,740,939,0,65,'2025-10-15','OA','RR','22','mo','2025-10-16 16:45:41','','0000-00-00 00:00:00'),(440,0,0,127,224,0,17,'2025-10-09','OD','PR','78','mo','2025-10-16 17:45:14','','0000-00-00 00:00:00'),(441,0,0,127,224,0,17,'2025-10-09','OD','SpO2','98','mo','2025-10-16 17:45:18','','0000-00-00 00:00:00'),(442,0,0,127,224,0,17,'2025-10-09','OD','BP','154/90','mo','2025-10-16 17:45:28','','0000-00-00 00:00:00'),(443,0,0,127,224,0,17,'2025-10-09','OD','RR','22','mo','2025-10-16 17:45:34','','0000-00-00 00:00:00'),(444,0,0,127,224,0,17,'2025-10-09','OD','RBS','104','mo','2025-10-16 17:47:43','','0000-00-00 00:00:00'),(445,0,0,720,809,0,60,'2025-10-15','OD','RR','22','mo','2025-10-16 17:50:57','','0000-00-00 00:00:00'),(446,0,0,477,841,0,61,'2025-10-15','OA','RR','22','mo','2025-10-16 18:03:03','','0000-00-00 00:00:00'),(447,0,0,477,841,0,61,'2025-10-15','OD','BP','110/70','mo','2025-10-16 18:03:11','','0000-00-00 00:00:00'),(448,0,0,477,841,0,61,'2025-10-15','OD','RR','20','mo','2025-10-16 18:03:13','','0000-00-00 00:00:00'),(449,0,0,477,841,0,61,'2025-10-15','OD','SpO2','99','mo','2025-10-16 18:03:15','mo','2025-10-16 18:03:23'),(450,0,0,477,841,0,61,'2025-10-15','OD','PR','78','mo','2025-10-16 18:03:19','','0000-00-00 00:00:00'),(451,0,0,925,1059,893,0,'2025-10-16','OA','BP','134/86','drarchit','2025-10-16 19:38:00','','0000-00-00 00:00:00'),(452,0,0,752,871,0,62,'2025-10-15','OD','PR','82','mo','2025-10-16 20:45:47','','0000-00-00 00:00:00'),(453,0,0,752,871,0,62,'2025-10-15','OD','SpO2','99','mo','2025-10-16 20:45:48','','0000-00-00 00:00:00'),(454,0,0,752,871,0,62,'2025-10-15','OD','BP','124/82','mo','2025-10-16 20:45:55','','0000-00-00 00:00:00'),(455,0,0,752,871,0,62,'2025-10-15','OD','RR','20','mo','2025-10-16 20:45:58','','0000-00-00 00:00:00'),(456,0,0,1018,1182,986,0,'2025-10-17','OA','BP','168/88','drarchit','2025-10-17 18:28:32','drarchit','2025-10-17 18:28:58'),(457,0,0,1020,1184,988,0,'2025-10-17','OA','BP','140/88','drarchit','2025-10-17 19:01:01','','0000-00-00 00:00:00'),(458,0,0,1040,1213,0,71,'2025-10-17','OA','PR','68','mo','2025-10-17 23:52:59','','0000-00-00 00:00:00'),(459,0,0,1040,1213,0,71,'2025-10-17','OA','SpO2','98','mo','2025-10-17 23:53:02','','0000-00-00 00:00:00'),(460,0,0,1040,1213,0,71,'2025-10-17','OA','BP','146/90','mo','2025-10-17 23:53:05','','0000-00-00 00:00:00'),(461,0,0,1040,1213,0,71,'2025-10-17','OA','RR','22','mo','2025-10-17 23:53:10','','0000-00-00 00:00:00'),(462,0,0,989,1147,0,70,'2025-10-17','OA','PR','89','mo','2025-10-18 00:02:33','','0000-00-00 00:00:00'),(463,0,0,989,1147,0,70,'2025-10-17','OA','TP','99.4','mo','2025-10-18 00:02:35','','0000-00-00 00:00:00'),(464,0,0,989,1147,0,70,'2025-10-17','OA','SpO2','97','mo','2025-10-18 00:02:39','','0000-00-00 00:00:00'),(465,0,0,989,1147,0,70,'2025-10-17','OA','BP','110/80','mo','2025-10-18 00:03:17','','0000-00-00 00:00:00'),(466,0,0,989,1147,0,70,'2025-10-17','OA','RR','22','mo','2025-10-18 00:03:25','','0000-00-00 00:00:00'),(467,0,0,969,1140,0,68,'2025-10-17','OA','PR','108','mo','2025-10-18 00:15:37','','0000-00-00 00:00:00'),(468,0,0,969,1140,0,68,'2025-10-17','OA','SpO2','98','mo','2025-10-18 00:15:40','','0000-00-00 00:00:00'),(469,0,0,969,1140,0,68,'2025-10-17','OA','BP','124/80','mo','2025-10-18 00:15:46','','0000-00-00 00:00:00'),(470,0,0,969,1140,0,68,'2025-10-17','OA','RR','16','mo','2025-10-18 00:15:50','','0000-00-00 00:00:00'),(471,0,0,987,1144,0,69,'2025-10-17','OA','PR','113','mo','2025-10-18 00:36:19','','0000-00-00 00:00:00'),(472,0,0,987,1144,0,69,'2025-10-17','OA','SpO2','98','mo','2025-10-18 00:36:21','','0000-00-00 00:00:00'),(473,0,0,987,1144,0,69,'2025-10-17','OA','BP','126/80','mo','2025-10-18 00:36:24','','0000-00-00 00:00:00'),(474,0,0,987,1144,0,69,'2025-10-17','OA','RR','20','mo','2025-10-18 00:36:35','','0000-00-00 00:00:00'),(475,0,0,239,246,0,18,'2025-10-09','OD','PR','90','mo','2025-10-18 08:42:10','','0000-00-00 00:00:00'),(476,0,0,239,246,0,18,'2025-10-09','OD','SpO2','99','mo','2025-10-18 08:42:12','','0000-00-00 00:00:00'),(477,0,0,239,246,0,18,'2025-10-09','OD','RR','24','mo','2025-10-18 08:42:23','','0000-00-00 00:00:00'),(478,0,0,933,1072,0,67,'2025-10-16','OA','TP','98.6','mo','2025-10-18 10:38:02','','0000-00-00 00:00:00'),(479,0,0,933,1072,0,67,'2025-10-16','OA','PR','75','mo','2025-10-18 10:38:06','','0000-00-00 00:00:00'),(480,0,0,933,1072,0,67,'2025-10-16','OA','SpO2','96','mo','2025-10-18 10:38:10','','0000-00-00 00:00:00'),(481,0,0,933,1072,0,67,'2025-10-16','OA','BP','160/80','mo','2025-10-18 10:38:20','mo','2025-10-18 10:45:53'),(482,0,0,933,1072,0,67,'2025-10-16','OA','RR','20','mo','2025-10-18 10:45:56','','0000-00-00 00:00:00'),(483,0,0,780,882,0,63,'2025-10-15','OA','TP','98.6','mo','2025-10-18 11:09:06','','0000-00-00 00:00:00'),(484,0,0,780,882,0,63,'2025-10-15','OA','PR','101','mo','2025-10-18 11:09:20','','0000-00-00 00:00:00'),(485,0,0,780,882,0,63,'2025-10-15','OA','BMI','NaN','mo','2025-10-18 11:09:20','mo','2025-10-18 11:09:31'),(486,0,0,780,882,0,63,'2025-10-15','OA','SpO2','98','mo','2025-10-18 11:09:27','','0000-00-00 00:00:00'),(487,0,0,780,882,0,63,'2025-10-15','OA','BP','116/60','mo','2025-10-18 11:09:41','','0000-00-00 00:00:00'),(488,0,0,780,882,0,63,'2025-10-15','OA','RR','28','mo','2025-10-18 11:09:56','','0000-00-00 00:00:00'),(489,0,0,274,284,0,21,'2025-10-09','OD','BP','124/82','mo','2025-10-18 12:02:57','','0000-00-00 00:00:00'),(490,0,0,274,284,0,21,'2025-10-09','OD','RR','22','mo','2025-10-18 12:03:00','','0000-00-00 00:00:00'),(491,0,0,274,284,0,21,'2025-10-09','OD','SpO2','96','mo','2025-10-18 12:03:06','','0000-00-00 00:00:00'),(492,0,0,274,284,0,21,'2025-10-09','OD','PR','88','mo','2025-10-18 12:03:12','','0000-00-00 00:00:00'),(493,0,0,239,246,0,18,'2025-10-09','OD','BP','92/60','mo','2025-10-18 12:54:57','','0000-00-00 00:00:00'),(494,0,0,969,1140,0,68,'2025-10-17','OD','PR','80','mo','2025-10-18 15:37:29','','0000-00-00 00:00:00'),(495,0,0,969,1140,0,68,'2025-10-17','OD','SpO2','98','mo','2025-10-18 15:37:35','','0000-00-00 00:00:00'),(496,0,0,969,1140,0,68,'2025-10-17','OD','BP','126/68','mo','2025-10-18 15:37:49','','0000-00-00 00:00:00'),(497,0,0,969,1140,0,68,'2025-10-17','OD','RR','20','mo','2025-10-18 15:37:52','','0000-00-00 00:00:00'),(498,0,0,911,1266,0,73,'2025-10-18','OA','PR','76','mo','2025-10-18 16:28:15','','0000-00-00 00:00:00'),(499,0,0,911,1266,0,73,'2025-10-18','OA','SpO2','98','mo','2025-10-18 16:28:18','','0000-00-00 00:00:00'),(500,0,0,911,1266,0,73,'2025-10-18','OA','BP','110/70','mo','2025-10-18 16:28:23','','0000-00-00 00:00:00'),(501,0,0,911,1266,0,73,'2025-10-18','OA','RR','22','mo','2025-10-18 16:28:37','','0000-00-00 00:00:00'),(502,0,0,911,1266,0,73,'2025-10-18','OD','PR','62','mo','2025-10-18 16:28:42','','0000-00-00 00:00:00'),(503,0,0,911,1266,0,73,'2025-10-18','OD','SpO2','98','mo','2025-10-18 16:28:45','','0000-00-00 00:00:00'),(504,0,0,911,1266,0,73,'2025-10-18','OD','BP','100/62','mo','2025-10-18 16:29:06','','0000-00-00 00:00:00'),(505,0,0,911,1266,0,73,'2025-10-18','OD','RR','22','mo','2025-10-18 16:29:10','','0000-00-00 00:00:00'),(506,0,0,879,1004,0,66,'2025-10-16','OD','TP','98.6','mo','2025-10-18 16:42:34','','0000-00-00 00:00:00'),(507,0,0,879,1004,0,66,'2025-10-16','OD','PR','56','mo','2025-10-18 16:42:38','','0000-00-00 00:00:00'),(508,0,0,879,1004,0,66,'2025-10-16','OD','SpO2','96','mo','2025-10-18 16:42:41','','0000-00-00 00:00:00'),(509,0,0,879,1004,0,66,'2025-10-16','OD','BP','110/70','mo','2025-10-18 16:42:47','','0000-00-00 00:00:00'),(510,0,0,879,1004,0,66,'2025-10-16','OD','RR','20','mo','2025-10-18 16:42:50','','0000-00-00 00:00:00'),(511,0,0,879,1004,0,66,'2025-10-16','OD','RBS','114','mo','2025-10-18 16:42:55','','0000-00-00 00:00:00'),(512,0,0,1095,1281,0,75,'2025-10-18','OA','TP','98.2','mo','2025-10-18 23:18:59','','0000-00-00 00:00:00'),(513,0,0,1095,1281,0,75,'2025-10-18','OA','SpO2','98','mo','2025-10-18 23:19:01','','0000-00-00 00:00:00'),(514,0,0,1095,1281,0,75,'2025-10-18','OA','PR','68','mo','2025-10-18 23:19:06','','0000-00-00 00:00:00'),(515,0,0,1095,1281,0,75,'2025-10-18','OA','BP','90/60','mo','2025-10-18 23:20:25','','0000-00-00 00:00:00'),(516,0,0,1093,1279,0,74,'2025-10-18','OA','SpO2','98','mo','2025-10-19 01:50:33','','0000-00-00 00:00:00'),(517,0,0,1093,1279,0,74,'2025-10-18','OA','BP','128/80','mo','2025-10-19 01:50:41','','0000-00-00 00:00:00'),(518,0,0,1093,1279,0,74,'2025-10-18','OA','RR','20','mo','2025-10-19 01:50:49','','0000-00-00 00:00:00'),(519,0,0,1093,1279,0,74,'2025-10-18','OD','TP','98.2','mo','2025-10-19 10:41:00','','0000-00-00 00:00:00'),(520,0,0,1093,1279,0,74,'2025-10-18','OD','SpO2','99','mo','2025-10-19 10:41:02','','0000-00-00 00:00:00'),(521,0,0,1093,1279,0,74,'2025-10-18','OD','BP','126/82','mo','2025-10-19 10:41:19','','0000-00-00 00:00:00'),(522,0,0,1093,1279,0,74,'2025-10-18','OD','RR','18','mo','2025-10-19 10:41:23','','0000-00-00 00:00:00'),(523,0,0,1093,1279,0,74,'2025-10-18','OD','PR','90','mo','2025-10-19 10:41:26','','0000-00-00 00:00:00'),(524,0,0,1095,1281,0,75,'2025-10-18','OD','TP','98.2','mo','2025-10-19 11:36:16','','0000-00-00 00:00:00'),(525,0,0,1095,1281,0,75,'2025-10-18','OD','SpO2','98','mo','2025-10-19 11:36:18','','0000-00-00 00:00:00'),(526,0,0,1095,1281,0,75,'2025-10-18','OD','BP','114/72','mo','2025-10-19 11:36:23','','0000-00-00 00:00:00'),(527,0,0,1095,1281,0,75,'2025-10-18','OD','RR','20','mo','2025-10-19 11:36:27','','0000-00-00 00:00:00'),(528,0,0,1095,1281,0,75,'2025-10-18','OD','PR','80','mo','2025-10-19 11:36:39','','0000-00-00 00:00:00'),(529,0,0,740,939,0,65,'2025-10-15','OD','PR','84','mo','2025-10-20 09:07:56','','0000-00-00 00:00:00'),(530,0,0,740,939,0,65,'2025-10-15','OD','SpO2','98','mo','2025-10-20 09:07:57','','0000-00-00 00:00:00'),(531,0,0,740,939,0,65,'2025-10-15','OD','BP','118/70','mo','2025-10-20 09:08:07','','0000-00-00 00:00:00'),(532,0,0,740,939,0,65,'2025-10-15','OD','RR','22','mo','2025-10-20 09:08:23','','0000-00-00 00:00:00'),(533,0,0,1047,1220,0,72,'2025-10-18','OA','PR','74','mo','2025-10-20 09:33:00','','0000-00-00 00:00:00'),(534,0,0,1047,1220,0,72,'2025-10-18','OA','SpO2','97','mo','2025-10-20 09:33:02','','0000-00-00 00:00:00'),(535,0,0,1047,1220,0,72,'2025-10-18','OA','BP','110/70','mo','2025-10-20 09:33:05','','0000-00-00 00:00:00'),(536,0,0,1047,1220,0,72,'2025-10-18','OA','RR','22','mo','2025-10-20 09:33:23','','0000-00-00 00:00:00'),(537,0,0,1047,1220,0,72,'2025-10-18','OD','PR','70','mo','2025-10-20 11:04:07','','0000-00-00 00:00:00'),(538,0,0,1105,1295,0,80,'2025-10-20','OA','PR','88','mo','2025-10-21 10:33:32','','0000-00-00 00:00:00'),(539,0,0,1105,1295,0,80,'2025-10-20','OA','BP','110/70','mo','2025-10-21 10:33:36','','0000-00-00 00:00:00'),(540,0,0,1105,1295,0,80,'2025-10-20','OA','SpO2','98','mo','2025-10-21 10:33:41','','0000-00-00 00:00:00'),(541,0,0,1105,1295,0,80,'2025-10-20','OD','PR','78','mo','2025-10-21 14:56:44','','0000-00-00 00:00:00'),(542,0,0,1105,1295,0,80,'2025-10-20','OD','SpO2','98','mo','2025-10-21 14:56:47','','0000-00-00 00:00:00'),(543,0,0,1105,1295,0,80,'2025-10-20','OD','BP','108/72','mo','2025-10-21 14:56:59','','0000-00-00 00:00:00'),(544,0,0,1105,1295,0,80,'2025-10-20','OD','RR','22','mo','2025-10-21 14:57:00','','0000-00-00 00:00:00'),(545,0,0,982,1296,0,81,'2025-10-21','OA','PR','90','mo','2025-10-21 18:58:53','','0000-00-00 00:00:00'),(546,0,0,982,1296,0,81,'2025-10-21','OA','SpO2','99','mo','2025-10-21 18:58:55','','0000-00-00 00:00:00'),(547,0,0,982,1296,0,81,'2025-10-21','OA','BP','100/60','mo','2025-10-21 18:59:00','','0000-00-00 00:00:00'),(548,0,0,982,1296,0,81,'2025-10-21','OA','RR','22','mo','2025-10-21 18:59:04','','0000-00-00 00:00:00'),(549,0,0,987,1144,0,69,'2025-10-17','OD','PR','90','mo','2025-10-21 23:07:26','','0000-00-00 00:00:00'),(550,0,0,987,1144,0,69,'2025-10-17','OD','SpO2','98','mo','2025-10-21 23:07:28','','0000-00-00 00:00:00'),(551,0,0,987,1144,0,69,'2025-10-17','OD','BP','128/80','mo','2025-10-21 23:07:33','','0000-00-00 00:00:00'),(552,0,0,987,1144,0,69,'2025-10-17','OD','RR','22','mo','2025-10-21 23:07:41','','0000-00-00 00:00:00'),(553,0,0,1040,1213,0,71,'2025-10-17','OD','PR','64','mo','2025-10-22 12:58:48','','0000-00-00 00:00:00'),(554,0,0,1040,1213,0,71,'2025-10-17','OD','SpO2','99','mo','2025-10-22 12:58:50','','0000-00-00 00:00:00'),(555,0,0,1040,1213,0,71,'2025-10-17','OD','BP','122/70','mo','2025-10-22 12:58:54','','0000-00-00 00:00:00'),(556,0,0,1040,1213,0,71,'2025-10-17','OD','RR','20','mo','2025-10-22 12:58:56','','0000-00-00 00:00:00'),(557,0,0,1102,1292,0,77,'2025-10-19','OA','BP','190/110','mo','2025-10-22 18:41:02','','0000-00-00 00:00:00'),(558,0,0,1102,1292,0,77,'2025-10-19','OA','PR','120','mo','2025-10-22 18:41:06','','0000-00-00 00:00:00'),(559,0,0,1102,1292,0,77,'2025-10-19','OA','SpO2','89','mo','2025-10-22 18:41:17','','0000-00-00 00:00:00'),(560,0,0,1102,1292,0,77,'2025-10-19','OA','RR','32','mo','2025-10-22 18:41:24','','0000-00-00 00:00:00'),(561,0,0,1102,1292,0,77,'2025-10-19','OD','PR','100','mo','2025-10-22 18:41:45','','0000-00-00 00:00:00'),(562,0,0,1102,1292,0,77,'2025-10-19','OD','SpO2','95','mo','2025-10-22 18:41:48','','0000-00-00 00:00:00'),(563,0,0,1102,1292,0,77,'2025-10-19','OD','BP','160/94','mo','2025-10-22 18:41:55','','0000-00-00 00:00:00'),(564,0,0,1102,1292,0,77,'2025-10-19','OD','RR','24','mo','2025-10-22 18:41:57','','0000-00-00 00:00:00'),(565,0,0,1106,1339,0,83,'2025-10-23','OA','PR','82','mo','2025-10-23 17:41:55','','0000-00-00 00:00:00'),(566,0,0,1106,1339,0,83,'2025-10-23','OA','SpO2','99','mo','2025-10-23 17:41:57','','0000-00-00 00:00:00'),(567,0,0,1106,1339,0,83,'2025-10-23','OA','BP','110/70','mo','2025-10-23 17:42:02','','0000-00-00 00:00:00'),(568,0,0,1106,1339,0,83,'2025-10-23','OA','RR','22','mo','2025-10-23 17:42:05','','0000-00-00 00:00:00'),(569,0,0,1104,1294,0,79,'2025-10-20','OA','BP','180/110','mo','2025-10-23 21:12:48','','0000-00-00 00:00:00'),(570,0,0,1104,1294,0,79,'2025-10-20','OA','RR','22','mo','2025-10-23 21:12:58','','0000-00-00 00:00:00'),(571,0,0,1104,1294,0,79,'2025-10-20','OA','SpO2','44','mo','2025-10-23 21:13:00','','0000-00-00 00:00:00'),(572,0,0,1104,1294,0,79,'2025-10-20','OA','PR','126','mo','2025-10-23 21:13:42','','0000-00-00 00:00:00'),(573,0,0,1104,1294,0,79,'2025-10-20','OD','PR','82','mo','2025-10-23 21:14:16','','0000-00-00 00:00:00'),(574,0,0,1104,1294,0,79,'2025-10-20','OD','SpO2','98','mo','2025-10-23 21:14:21','','0000-00-00 00:00:00'),(575,0,0,1104,1294,0,79,'2025-10-20','OD','BP','106/68','mo','2025-10-23 21:14:28','','0000-00-00 00:00:00'),(576,0,0,1104,1294,0,79,'2025-10-20','OD','RR','22','mo','2025-10-23 21:14:30','','0000-00-00 00:00:00'),(577,0,0,1106,1339,0,83,'2025-10-23','OD','PR','78','mo','2025-10-24 00:36:04','','0000-00-00 00:00:00'),(578,0,0,1106,1339,0,83,'2025-10-23','OD','SpO2','98','mo','2025-10-24 00:36:06','','0000-00-00 00:00:00'),(579,0,0,1106,1339,0,83,'2025-10-23','OD','BP','110/70','mo','2025-10-24 00:36:09','','0000-00-00 00:00:00'),(580,0,0,1106,1339,0,83,'2025-10-23','OD','RR','22','mo','2025-10-24 00:36:11','','0000-00-00 00:00:00'),(581,0,0,1036,1341,0,84,'2025-10-23','OA','PR','94','mo','2025-10-24 00:49:44','','0000-00-00 00:00:00'),(582,0,0,1036,1341,0,84,'2025-10-23','OA','SpO2','98','mo','2025-10-24 00:49:47','','0000-00-00 00:00:00'),(583,0,0,1036,1341,0,84,'2025-10-23','OA','BP','100/62','mo','2025-10-24 00:49:51','','0000-00-00 00:00:00'),(584,0,0,1036,1341,0,84,'2025-10-23','OA','RR','22','mo','2025-10-24 00:49:55','','0000-00-00 00:00:00'),(585,0,0,1036,1341,0,84,'2025-10-23','OD','PR','88','mo','2025-10-24 00:49:59','','0000-00-00 00:00:00'),(586,0,0,1036,1341,0,84,'2025-10-23','OD','SpO2','98','mo','2025-10-24 00:50:02','','0000-00-00 00:00:00'),(587,0,0,1036,1341,0,84,'2025-10-23','OD','BP','110/70','mo','2025-10-24 00:50:06','','0000-00-00 00:00:00'),(588,0,0,1036,1341,0,84,'2025-10-23','OD','RR','22','mo','2025-10-24 00:50:08','','0000-00-00 00:00:00'),(589,0,0,1151,1362,0,85,'2025-10-23','OA','PR','90','mo','2025-10-24 01:02:30','','0000-00-00 00:00:00'),(590,0,0,1151,1362,0,85,'2025-10-23','OA','SpO2','98','mo','2025-10-24 01:02:34','','0000-00-00 00:00:00'),(591,0,0,1151,1362,0,85,'2025-10-23','OA','BP','120/78','mo','2025-10-24 01:02:39','','0000-00-00 00:00:00'),(592,0,0,1151,1362,0,85,'2025-10-23','OA','RR','20','mo','2025-10-24 01:02:44','','0000-00-00 00:00:00'),(593,0,0,452,489,0,38,'2025-10-11','OA','PR','78','mo','2025-10-24 01:07:54','','0000-00-00 00:00:00'),(594,0,0,452,489,0,38,'2025-10-11','OA','SpO2','98','mo','2025-10-24 01:08:00','','0000-00-00 00:00:00'),(595,0,0,452,489,0,38,'2025-10-11','OA','BP','210/110','mo','2025-10-24 01:08:12','','0000-00-00 00:00:00'),(596,0,0,452,489,0,38,'2025-10-11','OA','RR','20','mo','2025-10-24 01:08:16','','0000-00-00 00:00:00'),(597,0,0,1107,1298,0,82,'2025-10-23','OA','PR','100','mo','2025-10-24 01:16:34','','0000-00-00 00:00:00'),(598,0,0,1107,1298,0,82,'2025-10-23','OA','SpO2','96','mo','2025-10-24 01:16:36','','0000-00-00 00:00:00'),(599,0,0,1107,1298,0,82,'2025-10-23','OA','BP','160/90','mo','2025-10-24 01:16:39','','0000-00-00 00:00:00'),(600,0,0,1107,1298,0,82,'2025-10-23','OA','RR','22','mo','2025-10-24 01:16:45','','0000-00-00 00:00:00'),(601,0,0,1152,1363,0,86,'2025-10-23','OA','TP','104.9','mo','2025-10-24 01:22:02','','0000-00-00 00:00:00'),(602,0,0,1152,1363,0,86,'2025-10-23','OA','PR','142','mo','2025-10-24 01:22:04','','0000-00-00 00:00:00'),(603,0,0,1152,1363,0,86,'2025-10-23','OA','SpO2','96','mo','2025-10-24 01:22:06','','0000-00-00 00:00:00'),(604,0,0,1152,1363,0,86,'2025-10-23','OA','BP','120/74','mo','2025-10-24 01:22:10','','0000-00-00 00:00:00'),(605,0,0,1152,1363,0,86,'2025-10-23','OA','RR','26','mo','2025-10-24 01:22:14','','0000-00-00 00:00:00'),(606,0,0,1180,1405,0,88,'2025-10-24','OA','PR','130','mo','2025-10-24 23:10:48','','0000-00-00 00:00:00'),(607,0,0,1180,1405,0,88,'2025-10-24','OA','SpO2','98','mo','2025-10-24 23:10:49','','0000-00-00 00:00:00'),(608,0,0,1180,1405,0,88,'2025-10-24','OA','BP','90/60','mo','2025-10-24 23:10:52','','0000-00-00 00:00:00'),(609,0,0,1180,1405,0,88,'2025-10-24','OA','RR','26','mo','2025-10-24 23:10:56','','0000-00-00 00:00:00'),(610,0,0,1034,1434,0,89,'2025-10-24','OA','PR','91','mo','2025-10-25 00:17:26','','0000-00-00 00:00:00'),(611,0,0,1034,1434,0,89,'2025-10-24','OA','SpO2','98','mo','2025-10-25 00:17:27','','0000-00-00 00:00:00'),(612,0,0,1034,1434,0,89,'2025-10-24','OA','BP','94/60','mo','2025-10-25 00:17:31','','0000-00-00 00:00:00'),(613,0,0,1034,1434,0,89,'2025-10-24','OA','RR','16','mo','2025-10-25 00:17:36','','0000-00-00 00:00:00'),(614,0,0,1174,1437,0,90,'2025-10-24','OA','PR','74','mo','2025-10-25 00:28:04','','0000-00-00 00:00:00'),(615,0,0,1174,1437,0,90,'2025-10-24','OA','SpO2','96','mo','2025-10-25 00:28:06','','0000-00-00 00:00:00'),(616,0,0,1174,1437,0,90,'2025-10-24','OA','BP','140/80','mo','2025-10-25 00:28:08','','0000-00-00 00:00:00'),(617,0,0,1174,1437,0,90,'2025-10-24','OA','RR','20','mo','2025-10-25 00:28:12','','0000-00-00 00:00:00'),(618,0,0,1179,1438,0,91,'2025-10-24','OA','TP','100.4','mo','2025-10-25 02:10:48','','0000-00-00 00:00:00'),(619,0,0,1179,1438,0,91,'2025-10-24','OA','PR','120','mo','2025-10-25 02:10:50','','0000-00-00 00:00:00'),(620,0,0,1179,1438,0,91,'2025-10-24','OA','SpO2','98','mo','2025-10-25 02:10:52','','0000-00-00 00:00:00'),(621,0,0,1179,1438,0,91,'2025-10-24','OA','BP','80/50','mo','2025-10-25 02:10:58','','0000-00-00 00:00:00'),(622,0,0,1179,1438,0,91,'2025-10-24','OA','RR','22','mo','2025-10-25 02:11:05','','0000-00-00 00:00:00'),(623,0,0,1158,1369,0,87,'2025-10-24','OA','PR','80','mo','2025-10-25 02:19:34','','0000-00-00 00:00:00'),(624,0,0,1158,1369,0,87,'2025-10-24','OA','RR','20','mo','2025-10-25 02:19:35','','0000-00-00 00:00:00'),(625,0,0,1158,1369,0,87,'2025-10-24','OA','BP','120/80','mo','2025-10-25 02:19:39','','0000-00-00 00:00:00'),(626,0,0,1158,1369,0,87,'2025-10-24','OA','SpO2','98','mo','2025-10-25 02:20:03','','0000-00-00 00:00:00'),(627,0,0,1103,1293,0,78,'2025-10-19','OA','PR','162','mo','2025-10-25 02:44:45','','0000-00-00 00:00:00'),(628,0,0,1103,1293,0,78,'2025-10-19','OA','SpO2','82','mo','2025-10-25 02:44:47','','0000-00-00 00:00:00'),(629,0,0,1103,1293,0,78,'2025-10-19','OA','BP','90/44','mo','2025-10-25 02:44:54','','0000-00-00 00:00:00'),(630,0,0,1103,1293,0,78,'2025-10-19','OA','RR','44','mo','2025-10-25 02:45:00','','0000-00-00 00:00:00'),(631,0,0,1103,1293,0,78,'2025-10-19','OA','TP','102.2','mo','2025-10-25 02:45:05','','0000-00-00 00:00:00'),(632,0,0,1103,1293,0,78,'2025-10-19','OA','RBS','144','mo','2025-10-25 02:45:22','','0000-00-00 00:00:00'),(633,0,0,1151,1362,0,85,'2025-10-23','OD','SpO2','98','mo','2025-10-25 10:31:56','','0000-00-00 00:00:00'),(634,0,0,1151,1362,0,85,'2025-10-23','OD','BP','130/90','mo','2025-10-25 10:32:00','','0000-00-00 00:00:00'),(635,0,0,1151,1362,0,85,'2025-10-23','OD','PR','84','mo','2025-10-25 10:32:07','','0000-00-00 00:00:00'),(636,0,0,1180,1405,0,88,'2025-10-24','OD','SpO2','98','mo','2025-10-25 11:42:02','','0000-00-00 00:00:00'),(637,0,0,1180,1405,0,88,'2025-10-24','OD','BP','94/60','mo','2025-10-25 11:42:05','mo','2025-10-25 11:42:23'),(638,0,0,1180,1405,0,88,'2025-10-24','OD','PR','120','mo','2025-10-25 11:42:14','','0000-00-00 00:00:00'),(639,0,0,989,1147,0,70,'2025-10-17','OD','PR','78','mo','2025-10-25 11:44:48','','0000-00-00 00:00:00'),(640,0,0,989,1147,0,70,'2025-10-17','OD','SpO2','98','mo','2025-10-25 11:44:53','','0000-00-00 00:00:00'),(641,0,0,989,1147,0,70,'2025-10-17','OD','BP','134/84','mo','2025-10-25 11:44:57','','0000-00-00 00:00:00'),(642,0,0,1232,1471,1193,0,'2025-10-25','OA','BP','152/88','drjayant','2025-10-25 12:05:00','','0000-00-00 00:00:00'),(643,0,0,982,1296,0,81,'2025-10-21','OD','PR','74','mo','2025-10-25 12:50:04','','0000-00-00 00:00:00'),(644,0,0,982,1296,0,81,'2025-10-21','OD','SpO2','98','mo','2025-10-25 12:50:05','','0000-00-00 00:00:00'),(645,0,0,982,1296,0,81,'2025-10-21','OD','BP','130/80','mo','2025-10-25 12:50:43','','0000-00-00 00:00:00'),(646,0,0,452,489,0,38,'2025-10-11','OD','BP','126/80','mo','2025-10-25 18:47:08','','0000-00-00 00:00:00'),(647,0,0,452,489,0,38,'2025-10-11','OD','RR','24','mo','2025-10-25 18:47:13','','0000-00-00 00:00:00'),(648,0,0,452,489,0,38,'2025-10-11','OD','SpO2','91','mo','2025-10-25 18:47:16','','0000-00-00 00:00:00'),(649,0,0,452,489,0,38,'2025-10-11','OD','PR','100','mo','2025-10-25 18:47:21','','0000-00-00 00:00:00'),(650,0,0,1189,1443,0,92,'2025-10-25','OA','PR','72','mo','2025-10-25 22:08:36','','0000-00-00 00:00:00'),(651,0,0,1189,1443,0,92,'2025-10-25','OA','SpO2','98','mo','2025-10-25 22:08:38','','0000-00-00 00:00:00'),(652,0,0,1189,1443,0,92,'2025-10-25','OA','BP','132/80','mo','2025-10-25 22:08:42','','0000-00-00 00:00:00'),(653,0,0,1189,1443,0,92,'2025-10-25','OA','RR','20','mo','2025-10-25 22:08:54','','0000-00-00 00:00:00'),(654,0,0,1158,1369,0,87,'2025-10-24','OD','PR','80','mo','2025-10-25 22:19:19','','0000-00-00 00:00:00'),(655,0,0,1158,1369,0,87,'2025-10-24','OD','SpO2','98','mo','2025-10-25 22:19:20','','0000-00-00 00:00:00'),(656,0,0,1158,1369,0,87,'2025-10-24','OD','BP','118/70','mo','2025-10-25 22:19:23','','0000-00-00 00:00:00'),(657,0,0,1034,1434,0,89,'2025-10-24','OD','SpO2','98','mo','2025-10-26 12:06:59','','0000-00-00 00:00:00'),(658,0,0,1034,1434,0,89,'2025-10-24','OD','PR','95','mo','2025-10-26 12:07:03','','0000-00-00 00:00:00'),(659,0,0,1034,1434,0,89,'2025-10-24','OD','BP','100/60','mo','2025-10-26 12:07:10','','0000-00-00 00:00:00'),(660,0,0,197,1506,0,96,'2025-10-26','OA','PR','78','mo','2025-10-26 23:47:57','','0000-00-00 00:00:00'),(661,0,0,197,1506,0,96,'2025-10-26','OA','BP','130/90','mo','2025-10-26 23:48:05','','0000-00-00 00:00:00'),(662,0,0,197,1506,0,96,'2025-10-26','OA','SpO2','98','mo','2025-10-26 23:48:07','','0000-00-00 00:00:00'),(663,0,0,1254,1505,0,95,'2025-10-26','OA','PR','102','mo','2025-10-26 23:52:26','','0000-00-00 00:00:00'),(664,0,0,1254,1505,0,95,'2025-10-26','OA','BP','106/70','mo','2025-10-26 23:52:34','','0000-00-00 00:00:00'),(665,0,0,1254,1505,0,95,'2025-10-26','OA','SpO2','98','mo','2025-10-26 23:52:41','','0000-00-00 00:00:00'),(666,0,0,1263,1518,1222,0,'2025-10-27','OA','BP','132/78','drarchit','2025-10-27 10:54:25','','0000-00-00 00:00:00'),(667,0,0,1254,1505,0,95,'2025-10-26','OD','SpO2','98','mo','2025-10-27 11:42:37','','0000-00-00 00:00:00'),(668,0,0,1254,1505,0,95,'2025-10-26','OD','PR','78','mo','2025-10-27 11:42:39','','0000-00-00 00:00:00'),(669,0,0,1254,1505,0,95,'2025-10-26','OD','BP','100/60','mo','2025-10-27 11:43:13','','0000-00-00 00:00:00'),(670,0,0,1300,1571,1259,0,'2025-10-27','OA','BP','142/78','drarchit','2025-10-27 12:14:35','','0000-00-00 00:00:00'),(671,0,0,1189,1443,0,92,'2025-10-25','OD','PR','78','mo','2025-10-27 12:46:51','','0000-00-00 00:00:00'),(672,0,0,1189,1443,0,92,'2025-10-25','OD','SpO2','99','mo','2025-10-27 12:46:52','','0000-00-00 00:00:00'),(673,0,0,1189,1443,0,92,'2025-10-25','OD','BP','132/90','mo','2025-10-27 12:47:07','','0000-00-00 00:00:00'),(674,0,0,1253,1504,0,94,'2025-10-25','OA','PR','110','mo','2025-10-27 13:37:52','','0000-00-00 00:00:00'),(675,0,0,1253,1504,0,94,'2025-10-25','OA','SpO2','98','mo','2025-10-27 13:37:57','','0000-00-00 00:00:00'),(676,0,0,1253,1504,0,94,'2025-10-25','OA','BP','190/110','mo','2025-10-27 13:38:04','','0000-00-00 00:00:00'),(677,0,0,1253,1504,0,94,'2025-10-25','OA','RR','24','mo','2025-10-27 13:38:34','','0000-00-00 00:00:00'),(678,0,0,1253,1504,0,94,'2025-10-25','OD','PR','80','mo','2025-10-27 13:38:42','','0000-00-00 00:00:00'),(679,0,0,1253,1504,0,94,'2025-10-25','OD','SpO2','98','mo','2025-10-27 13:38:43','','0000-00-00 00:00:00'),(680,0,0,1253,1504,0,94,'2025-10-25','OD','BP','134/80','mo','2025-10-27 13:38:52','','0000-00-00 00:00:00'),(681,0,0,1173,1519,0,97,'2025-10-27','OA','SpO2','94','mo','2025-10-27 14:09:32','','0000-00-00 00:00:00'),(682,0,0,1173,1519,0,97,'2025-10-27','OA','PR','81','mo','2025-10-27 14:09:35','','0000-00-00 00:00:00'),(683,0,0,1173,1519,0,97,'2025-10-27','OA','BP','114/70','mo','2025-10-27 14:09:40','','0000-00-00 00:00:00'),(684,0,0,1173,1519,0,97,'2025-10-27','OA','RR','18','mo','2025-10-27 14:09:46','','0000-00-00 00:00:00'),(685,0,0,1173,1519,0,97,'2025-10-27','OD','PR','80','mo','2025-10-27 14:09:49','','0000-00-00 00:00:00'),(686,0,0,1173,1519,0,97,'2025-10-27','OD','SpO2','99','mo','2025-10-27 14:09:51','','0000-00-00 00:00:00'),(687,0,0,1173,1519,0,97,'2025-10-27','OD','BP','110/70','mo','2025-10-27 14:09:53','','0000-00-00 00:00:00'),(688,0,0,1174,1437,0,90,'2025-10-24','OD','PR','84','mo','2025-10-27 18:06:56','','0000-00-00 00:00:00'),(689,0,0,1174,1437,0,90,'2025-10-24','OD','SpO2','98','mo','2025-10-27 18:06:56','','0000-00-00 00:00:00'),(690,0,0,1174,1437,0,90,'2025-10-24','OD','BP','128/80','mo','2025-10-27 18:06:59','','0000-00-00 00:00:00'),(691,0,0,197,1506,0,96,'2025-10-26','OD','SpO2','98','mo','2025-10-27 21:15:58','','0000-00-00 00:00:00'),(692,0,0,197,1506,0,96,'2025-10-26','OD','PR','80','mo','2025-10-27 21:16:00','','0000-00-00 00:00:00'),(693,0,0,197,1506,0,96,'2025-10-26','OD','BP','110/70','mo','2025-10-27 21:16:10','','0000-00-00 00:00:00'),(694,0,0,1264,1536,0,98,'2025-10-27','OA','TP','98.1','mo','2025-10-27 23:47:34','','0000-00-00 00:00:00'),(695,0,0,1264,1536,0,98,'2025-10-27','OA','SpO2','98','mo','2025-10-27 23:47:36','','0000-00-00 00:00:00'),(696,0,0,1264,1536,0,98,'2025-10-27','OA','PR','84','mo','2025-10-27 23:48:07','','0000-00-00 00:00:00'),(697,0,0,1264,1536,0,98,'2025-10-27','OA','BP','122/80','mo','2025-10-27 23:48:39','','0000-00-00 00:00:00'),(698,0,0,1276,1572,0,100,'2025-10-27','OA','PR','81','mo','2025-10-28 08:07:47','','0000-00-00 00:00:00'),(699,0,0,1276,1572,0,100,'2025-10-27','OA','BP','122/70','mo','2025-10-28 08:07:52','','0000-00-00 00:00:00'),(700,0,0,1276,1572,0,100,'2025-10-27','OA','SpO2','92','mo','2025-10-28 08:08:01','','0000-00-00 00:00:00'),(701,0,0,1195,1501,0,93,'2025-10-25','OA','TP','98.4','mo','2025-10-28 10:05:35','','0000-00-00 00:00:00'),(702,0,0,1195,1501,0,93,'2025-10-25','OA','PR','78','mo','2025-10-28 10:05:50','','0000-00-00 00:00:00'),(703,0,0,1195,1501,0,93,'2025-10-25','OA','SpO2','96','mo','2025-10-28 10:05:55','','0000-00-00 00:00:00'),(704,0,0,1195,1501,0,93,'2025-10-25','OA','BP','168/100','mo','2025-10-28 10:06:00','mo','2025-10-28 10:06:13'),(705,0,0,1195,1501,0,93,'2025-10-25','OA','RR','16','mo','2025-10-28 10:06:26','','0000-00-00 00:00:00'),(706,0,0,1103,1293,0,78,'2025-10-19','OD','PR','78','mo','2025-10-28 11:35:32','','0000-00-00 00:00:00'),(707,0,0,1103,1293,0,78,'2025-10-19','OD','SpO2','97','mo','2025-10-28 11:35:33','','0000-00-00 00:00:00'),(708,0,0,1103,1293,0,78,'2025-10-19','OD','BP','114/70','mo','2025-10-28 11:35:37','','0000-00-00 00:00:00'),(709,0,0,1103,1293,0,78,'2025-10-19','OD','RR','22','mo','2025-10-28 11:36:08','','0000-00-00 00:00:00'),(710,0,0,1377,1677,1337,0,'2025-10-28','OA','BP','136/86','drarchit','2025-10-28 11:48:29','','0000-00-00 00:00:00'),(711,0,0,1379,1681,1339,0,'2025-10-28','OA','BP','138/88','drarchit','2025-10-28 12:13:42','','0000-00-00 00:00:00'),(712,0,0,1387,1692,1347,0,'2025-10-28','OA','BP','132/78','drarchit','2025-10-28 12:19:02','','0000-00-00 00:00:00'),(713,0,0,1395,1702,1355,0,'2025-10-28','OA','BP','110/76','drarchit','2025-10-28 12:47:57','','0000-00-00 00:00:00'),(714,0,0,204,1716,191,0,'2025-10-28','OA','BP','132/78','drarchit','2025-10-28 13:09:51','','0000-00-00 00:00:00'),(715,0,0,1406,1717,1366,0,'2025-10-28','OA','BP','142/88','drarchit','2025-10-28 13:15:12','','0000-00-00 00:00:00'),(716,0,0,1107,1298,0,82,'2025-10-22','OD','PR','85','mo','2025-10-28 13:28:11','','0000-00-00 00:00:00'),(717,0,0,1107,1298,0,82,'2025-10-22','OD','SpO2','97','mo','2025-10-28 13:28:12','','0000-00-00 00:00:00'),(718,0,0,1107,1298,0,82,'2025-10-22','OD','BP','130/90','mo','2025-10-28 13:28:17','','0000-00-00 00:00:00'),(719,0,0,657,1601,0,101,'2025-10-27','OD','TP','98.0','mo','2025-10-28 15:40:39','','0000-00-00 00:00:00'),(720,0,0,657,1601,0,101,'2025-10-27','OD','PR','75','mo','2025-10-28 15:40:45','','0000-00-00 00:00:00'),(721,0,0,657,1601,0,101,'2025-10-27','OD','SpO2','98','mo','2025-10-28 15:40:48','','0000-00-00 00:00:00'),(722,0,0,657,1601,0,101,'2025-10-27','OD','BP','150/90','mo','2025-10-28 15:41:01','mo','2025-10-28 15:42:07'),(723,0,0,657,1601,0,101,'2025-10-27','OD','RR','24','mo','2025-10-28 15:41:08','','0000-00-00 00:00:00'),(724,0,0,657,1601,0,101,'2025-10-27','OA','TP','98.2','mo','2025-10-28 15:41:33','','0000-00-00 00:00:00'),(725,0,0,657,1601,0,101,'2025-10-27','OA','PR','124','mo','2025-10-28 15:41:35','mo','2025-10-31 19:14:24'),(726,0,0,657,1601,0,101,'2025-10-27','OA','SpO2','76','mo','2025-10-28 15:41:40','mo','2025-10-31 19:14:21'),(727,0,0,657,1601,0,101,'2025-10-27','OA','BP','210/110','mo','2025-10-28 15:41:51','mo','2025-10-31 19:14:30'),(728,0,0,657,1601,0,101,'2025-10-27','OA','RR','44','mo','2025-10-28 15:41:57','mo','2025-10-31 19:14:39'),(729,0,0,1400,1709,1360,0,'2025-10-28','OA','BP','132/78','drarchit','2025-10-28 18:09:19','','0000-00-00 00:00:00'),(730,0,0,1423,1739,1382,0,'2025-10-28','OA','BP','132/78','drarchit','2025-10-28 18:28:33','','0000-00-00 00:00:00'),(731,0,0,1416,1732,1375,0,'2025-10-28','OA','BP','144/78','drarchit','2025-10-28 18:44:13','','0000-00-00 00:00:00'),(732,0,0,1434,1753,1394,0,'2025-10-28','OA','BP','132/78','drarchit','2025-10-28 18:58:18','','0000-00-00 00:00:00'),(733,0,0,1433,1752,1393,0,'2025-10-28','OA','BP','134/86','drarchit','2025-10-28 19:04:07','','0000-00-00 00:00:00'),(734,0,0,1432,1749,1392,0,'2025-10-28','OA','BP','142/90','drarchit','2025-10-28 19:12:52','drarchit','2025-10-28 19:13:17'),(735,0,0,1444,1766,1404,0,'2025-10-28','OA','BP','132/78','drarchit','2025-10-28 19:27:33','','0000-00-00 00:00:00'),(736,0,0,1446,1769,1406,0,'2025-10-28','OA','BP','124/86','drarchit','2025-10-28 19:35:41','drarchit','2025-10-28 19:51:15'),(737,0,0,255,1773,240,0,'2025-10-28','OA','BP','134/78','drarchit','2025-10-28 19:44:04','','0000-00-00 00:00:00'),(738,0,0,1446,1769,1406,0,'2025-10-28','OA','RBS','163','drarchit','2025-10-28 19:51:15','','0000-00-00 00:00:00'),(739,0,0,1450,1775,1410,0,'2025-10-28','OA','BP','184/88','drarchit','2025-10-28 19:54:53','drarchit','2025-10-28 19:55:12'),(740,0,0,1450,1775,1410,0,'2025-10-28','OA','RBS','159','drarchit','2025-10-28 19:55:12','','0000-00-00 00:00:00'),(741,0,0,1276,1572,0,100,'2025-10-27','OA','RR','22','mo','2025-10-29 01:24:25','','0000-00-00 00:00:00'),(742,0,0,1410,1724,0,106,'2025-10-28','OA','PR','198','mo','2025-10-29 01:29:14','','0000-00-00 00:00:00'),(743,0,0,1410,1724,0,106,'2025-10-28','OA','SpO2','96','mo','2025-10-29 01:29:19','','0000-00-00 00:00:00'),(744,0,0,1410,1724,0,106,'2025-10-28','OA','BP','134/80','mo','2025-10-29 01:29:27','','0000-00-00 00:00:00'),(745,0,0,1410,1724,0,106,'2025-10-28','OA','RR','26','mo','2025-10-29 01:29:42','','0000-00-00 00:00:00'),(746,0,0,1408,1723,0,105,'2025-10-28','OA','PR','111','mo','2025-10-29 01:40:31','','0000-00-00 00:00:00'),(747,0,0,1408,1723,0,105,'2025-10-28','OA','SpO2','98','mo','2025-10-29 01:40:31','','0000-00-00 00:00:00'),(748,0,0,1408,1723,0,105,'2025-10-28','OA','BP','130/80','mo','2025-10-29 01:40:33','','0000-00-00 00:00:00'),(749,0,0,1408,1723,0,105,'2025-10-28','OA','RR','18','mo','2025-10-29 01:40:37','','0000-00-00 00:00:00'),(750,0,0,1403,1727,0,107,'2025-10-28','OA','PR','103','mo','2025-10-29 01:57:39','','0000-00-00 00:00:00'),(751,0,0,1403,1727,0,107,'2025-10-28','OA','BP','120/70','mo','2025-10-29 01:57:48','','0000-00-00 00:00:00'),(752,0,0,1403,1727,0,107,'2025-10-28','OA','RR','28','mo','2025-10-29 01:57:50','','0000-00-00 00:00:00'),(753,0,0,1403,1727,0,107,'2025-10-28','OA','TP','100.4','mo','2025-10-29 01:58:05','','0000-00-00 00:00:00'),(754,0,0,1295,1563,0,99,'2025-10-27','OA','SpO2','98','mo','2025-10-29 02:16:31','','0000-00-00 00:00:00'),(755,0,0,1295,1563,0,99,'2025-10-27','OA','BP','154/100','mo','2025-10-29 02:16:34','','0000-00-00 00:00:00'),(756,0,0,1295,1563,0,99,'2025-10-27','OA','RR','22','mo','2025-10-29 02:16:38','','0000-00-00 00:00:00'),(757,0,0,1295,1563,0,99,'2025-10-27','OA','PR','81','mo','2025-10-29 02:16:47','','0000-00-00 00:00:00'),(758,0,0,1471,1802,1430,0,'2025-10-29','OA','BP','132/78','drarchit','2025-10-29 11:32:14','','0000-00-00 00:00:00'),(759,0,0,714,1804,1085,0,'2025-10-29','OA','BP','134/86','drarchit','2025-10-29 11:38:00','drarchit','2025-10-29 11:38:11'),(760,0,0,714,1804,1085,0,'2025-10-29','OA','RBS','98','drarchit','2025-10-29 11:38:11','','0000-00-00 00:00:00'),(761,0,0,1264,1536,0,98,'2025-10-27','OD','PR','80','mo','2025-10-29 11:50:18','','0000-00-00 00:00:00'),(762,0,0,1264,1536,0,98,'2025-10-27','OD','SpO2','98','mo','2025-10-29 11:50:19','','0000-00-00 00:00:00'),(763,0,0,1264,1536,0,98,'2025-10-27','OD','BP','122/78','mo','2025-10-29 11:50:33','','0000-00-00 00:00:00'),(764,0,0,422,1807,400,0,'2025-10-29','OA','BP','120/76','drarchit','2025-10-29 11:59:03','drarchit','2025-10-29 11:59:06'),(765,0,0,422,1807,400,0,'2025-10-29','OA','RBS','108','drarchit','2025-10-29 11:59:06','','0000-00-00 00:00:00'),(766,0,0,1480,1814,1439,0,'2025-10-29','OA','BP','134/78','drarchit','2025-10-29 12:24:18','','0000-00-00 00:00:00'),(767,0,0,1179,1438,0,91,'2025-10-24','OD','TP','98.2','mo','2025-10-29 12:27:51','','0000-00-00 00:00:00'),(768,0,0,1276,1572,0,100,'2025-10-27','OD','PR','62','mo','2025-10-29 12:27:55','','0000-00-00 00:00:00'),(769,0,0,1276,1572,0,100,'2025-10-27','OD','SpO2','96','mo','2025-10-29 12:27:57','','0000-00-00 00:00:00'),(770,0,0,1276,1572,0,100,'2025-10-27','OD','BP','136/80','mo','2025-10-29 12:28:07','','0000-00-00 00:00:00'),(771,0,0,1179,1438,0,91,'2025-10-24','OD','SpO2','88','mo','2025-10-29 12:29:12','','0000-00-00 00:00:00'),(772,0,0,1179,1438,0,91,'2025-10-24','OD','BP','128/76','mo','2025-10-29 12:29:18','','0000-00-00 00:00:00'),(773,0,0,1179,1438,0,91,'2025-10-24','OD','RR','24','mo','2025-10-29 12:29:25','','0000-00-00 00:00:00'),(774,0,0,1484,1818,1443,0,'2025-10-29','OA','RBS','159','drarchit','2025-10-29 12:37:15','drarchit','2025-10-29 12:37:19'),(775,0,0,1484,1818,1443,0,'2025-10-29','OA','BP','142/88','drarchit','2025-10-29 12:37:19','','0000-00-00 00:00:00'),(776,0,0,1483,1817,1442,0,'2025-10-29','OA','BP','132/78','drarchit','2025-10-29 12:44:31','','0000-00-00 00:00:00'),(777,0,0,1485,1819,1444,0,'2025-10-29','OA','BP','124/78','drarchit','2025-10-29 12:51:10','','0000-00-00 00:00:00'),(778,0,0,1463,1791,1422,0,'2025-10-29','OA','BP','132/78','drarchit','2025-10-29 12:53:48','','0000-00-00 00:00:00'),(779,0,0,1465,1793,1424,0,'2025-10-29','OA','BP','142/78','drarchit','2025-10-29 13:00:16','','0000-00-00 00:00:00'),(780,0,0,1476,1809,1435,0,'2025-10-29','OA','BP','132/78','drarchit','2025-10-29 13:10:32','drarchit','2025-10-29 13:10:37'),(781,0,0,1476,1809,1435,0,'2025-10-29','OA','RBS','142','drarchit','2025-10-29 13:10:37','','0000-00-00 00:00:00'),(782,0,0,1295,1563,0,99,'2025-10-27','OD','SpO2','98','mo','2025-10-29 13:16:05','','0000-00-00 00:00:00'),(783,0,0,1295,1563,0,99,'2025-10-27','OD','PR','80','mo','2025-10-29 13:16:06','','0000-00-00 00:00:00'),(784,0,0,1295,1563,0,99,'2025-10-27','OD','BP','150/70','mo','2025-10-29 13:16:13','','0000-00-00 00:00:00'),(785,0,0,1496,1832,1455,0,'2025-10-29','OA','BP','132/78','drarchit','2025-10-29 13:18:28','','0000-00-00 00:00:00'),(786,0,0,1410,1724,0,106,'2025-10-28','OD','SpO2','99','mo','2025-10-29 14:32:59','','0000-00-00 00:00:00'),(787,0,0,1410,1724,0,106,'2025-10-28','OD','BP','124/86','mo','2025-10-29 14:33:06','','0000-00-00 00:00:00'),(788,0,0,1410,1724,0,106,'2025-10-28','OD','RR','20','mo','2025-10-29 14:33:58','','0000-00-00 00:00:00'),(789,0,0,1410,1724,0,106,'2025-10-28','OD','PR','69','mo','2025-10-29 14:42:24','','0000-00-00 00:00:00'),(790,0,0,1456,1782,0,108,'2025-10-29','OA','SpO2','98','mo','2025-10-29 16:11:46','','0000-00-00 00:00:00'),(791,0,0,1456,1782,0,108,'2025-10-29','OA','BP','90/60','mo','2025-10-29 16:11:51','','0000-00-00 00:00:00'),(792,0,0,1403,1727,0,107,'2025-10-28','OA','SpO2','96','mo','2025-10-29 16:15:49','','0000-00-00 00:00:00'),(793,0,0,1461,1788,1420,0,'2025-10-29','OA','BP','134/86','drarchit','2025-10-29 18:12:39','drarchit','2025-10-29 18:12:59'),(794,0,0,1461,1788,1420,0,'2025-10-29','OA','RBS','165','drarchit','2025-10-29 18:12:59','','0000-00-00 00:00:00'),(795,0,0,1152,1363,0,86,'2025-10-23','OD','SpO2','98','mo','2025-10-29 18:25:24','','0000-00-00 00:00:00'),(796,0,0,1152,1363,0,86,'2025-10-23','OD','BP','116/78','mo','2025-10-29 18:26:08','','0000-00-00 00:00:00'),(797,0,0,1152,1363,0,86,'2025-10-23','OD','TP','98.2','mo','2025-10-29 18:26:12','','0000-00-00 00:00:00'),(798,0,0,1152,1363,0,86,'2025-10-23','OD','PR','80','mo','2025-10-29 18:26:15','','0000-00-00 00:00:00'),(799,0,0,1489,1823,1448,0,'2025-10-29','OA','BP','134/78','drarchit','2025-10-29 18:33:28','','0000-00-00 00:00:00'),(800,0,0,1529,1868,1488,0,'2025-10-29','OA','BP','142/86','drarchit','2025-10-29 18:53:46','','0000-00-00 00:00:00'),(801,0,0,1530,1871,1489,0,'2025-10-29','OA','BP','168/78','drarchit','2025-10-29 19:01:54','','0000-00-00 00:00:00'),(802,0,0,1521,1858,1480,0,'2025-10-29','OA','BP','132/78','drarchit','2025-10-29 19:11:16','','0000-00-00 00:00:00'),(803,0,0,1532,1873,1491,0,'2025-10-29','OA','BP','112/78','drarchit','2025-10-29 19:28:02','','0000-00-00 00:00:00'),(804,0,0,1535,1877,1494,0,'2025-10-29','OA','BP','132/78','drarchit','2025-10-29 19:39:34','','0000-00-00 00:00:00'),(805,0,0,1195,1501,0,93,'2025-10-25','OD','PR','79','mo','2025-10-29 20:19:36','','0000-00-00 00:00:00'),(806,0,0,1195,1501,0,93,'2025-10-25','OD','SpO2','98','mo','2025-10-29 20:19:39','','0000-00-00 00:00:00'),(807,0,0,1195,1501,0,93,'2025-10-25','OD','BP','152/80','mo','2025-10-29 20:19:47','','0000-00-00 00:00:00'),(808,0,0,1195,1501,0,93,'2025-10-25','OD','RR','20','mo','2025-10-29 20:19:54','','0000-00-00 00:00:00'),(809,0,0,1195,1501,0,93,'2025-10-25','OD','TP','98.2','mo','2025-10-29 20:20:27','','0000-00-00 00:00:00'),(810,0,0,1383,1711,0,104,'2025-10-28','OA','PR','120','mo','2025-10-29 23:26:35','','0000-00-00 00:00:00'),(811,0,0,1383,1711,0,104,'2025-10-28','OA','SpO2','97','mo','2025-10-29 23:26:38','','0000-00-00 00:00:00'),(812,0,0,1383,1711,0,104,'2025-10-28','OA','BP','80/50','mo','2025-10-29 23:26:42','','0000-00-00 00:00:00'),(813,0,0,1383,1711,0,104,'2025-10-28','OA','RR','18','mo','2025-10-29 23:26:46','','0000-00-00 00:00:00'),(814,0,0,1346,1700,0,103,'2025-10-28','OA','PR','77','mo','2025-10-30 00:43:21','','0000-00-00 00:00:00'),(815,0,0,1346,1700,0,103,'2025-10-28','OA','SpO2','96','mo','2025-10-30 00:43:22','','0000-00-00 00:00:00'),(816,0,0,1346,1700,0,103,'2025-10-28','OA','BP','96/50','mo','2025-10-30 00:43:27','','0000-00-00 00:00:00'),(817,0,0,1346,1700,0,103,'2025-10-28','OA','RR','22','mo','2025-10-30 00:43:31','','0000-00-00 00:00:00'),(818,0,0,1456,1782,0,108,'2025-10-29','OA','PR','120','mo','2025-10-30 00:49:35','','0000-00-00 00:00:00'),(819,0,0,1456,1782,0,108,'2025-10-29','OA','RR','20','mo','2025-10-30 00:49:38','','0000-00-00 00:00:00'),(820,0,0,56,1900,757,0,'2025-10-30','OA','BP','126/82','drjayant','2025-10-30 11:27:09','','0000-00-00 00:00:00'),(821,0,0,1553,1906,1512,0,'2025-10-30','OA','BP','132/78','drarchit','2025-10-30 11:30:13','','0000-00-00 00:00:00'),(822,0,0,464,505,0,39,'2025-10-11','OA','TP','101.6','mo','2025-10-30 11:30:17','','0000-00-00 00:00:00'),(823,0,0,1556,1911,1515,0,'2025-10-30','OA','BP','144/86','drarchit','2025-10-30 11:49:09','','0000-00-00 00:00:00'),(824,0,0,1346,1700,0,103,'2025-10-28','OD','SpO2','98','mo','2025-10-30 11:56:01','','0000-00-00 00:00:00'),(825,0,0,1346,1700,0,103,'2025-10-28','OD','PR','80','mo','2025-10-30 11:56:03','','0000-00-00 00:00:00'),(826,0,0,1346,1700,0,103,'2025-10-28','OD','BP','150/90','mo','2025-10-30 11:56:07','','0000-00-00 00:00:00'),(827,0,0,804,1910,773,0,'2025-10-30','OA','BP','132/78','drarchit','2025-10-30 11:56:54','','0000-00-00 00:00:00'),(828,0,0,1565,1921,1524,0,'2025-10-30','OA','BP','142/78','drarchit','2025-10-30 12:18:53','','0000-00-00 00:00:00'),(829,0,0,1566,1922,1525,0,'2025-10-30','OA','BP','138/76','drarchit','2025-10-30 12:21:53','drarchit','2025-10-30 12:21:58'),(830,0,0,1561,1917,1520,0,'2025-10-30','OA','RBS','219','drarchit','2025-10-30 12:30:47','drarchit','2025-10-30 12:36:34'),(831,0,0,1561,1917,1520,0,'2025-10-30','OA','BP','138/88','drarchit','2025-10-30 12:30:51','drarchit','2025-10-30 12:36:34'),(832,0,0,1555,1908,1514,0,'2025-10-30','OA','BP','80/50','drarchit','2025-10-30 12:48:47','drarchit','2025-10-30 12:48:59'),(833,0,0,1555,1908,1514,0,'2025-10-30','OA','SpO2','85','drarchit','2025-10-30 12:48:52','drarchit','2025-10-30 12:48:59'),(834,0,0,1555,1908,1514,0,'2025-10-30','OA','PR','50','drarchit','2025-10-30 12:48:59','','0000-00-00 00:00:00'),(835,0,0,1552,1905,1511,0,'2025-10-30','OA','BP','132/78','drarchit','2025-10-30 13:17:32','','0000-00-00 00:00:00'),(836,0,0,1578,1938,1537,0,'2025-10-30','OA','BP','110/78','drarchit','2025-10-30 13:27:41','drarchit','2025-10-30 13:27:46'),(837,0,0,1578,1938,1537,0,'2025-10-30','OA','SpO2','92','drarchit','2025-10-30 13:27:43','drarchit','2025-10-30 13:27:46'),(838,0,0,1578,1938,1537,0,'2025-10-30','OA','PR','130','drarchit','2025-10-30 13:27:46','','0000-00-00 00:00:00'),(839,0,0,452,1932,1533,0,'2025-10-30','OA','BP','132/78','drarchit','2025-10-30 13:30:09','drarchit','2025-10-30 13:30:54'),(840,0,0,452,1932,1533,0,'2025-10-30','OA','SpO2','92','drarchit','2025-10-30 13:30:47','drarchit','2025-10-30 13:30:54'),(841,0,0,452,1932,1533,0,'2025-10-30','OA','PR','98','drarchit','2025-10-30 13:30:54','','0000-00-00 00:00:00'),(842,0,0,1579,1939,1538,0,'2025-10-30','OA','BP','132/78','drarchit','2025-10-30 13:49:58','','0000-00-00 00:00:00'),(843,0,0,1594,1960,1551,0,'2025-10-30','OA','BP','132/78','drarchit','2025-10-30 18:19:29','','0000-00-00 00:00:00'),(844,0,0,1599,1966,1556,0,'2025-10-30','OA','BP','132/78','drarchit','2025-10-30 18:24:38','','0000-00-00 00:00:00'),(845,0,0,1601,1968,1558,0,'2025-10-30','OA','BP','134/78','drarchit','2025-10-30 18:34:04','','0000-00-00 00:00:00'),(846,0,0,1575,1934,0,110,'2025-10-30','OA','TP','98.2','mo','2025-10-30 18:36:05','','0000-00-00 00:00:00'),(847,0,0,1575,1934,0,110,'2025-10-30','OA','PR','90','mo','2025-10-30 18:36:10','','0000-00-00 00:00:00'),(848,0,0,1575,1934,0,110,'2025-10-30','OA','SpO2','96','mo','2025-10-30 18:36:12','','0000-00-00 00:00:00'),(849,0,0,1575,1934,0,110,'2025-10-30','OA','BP','240/120','mo','2025-10-30 18:36:24','','0000-00-00 00:00:00'),(850,0,0,1575,1934,0,110,'2025-10-30','OA','RR','30','mo','2025-10-30 18:36:31','','0000-00-00 00:00:00'),(851,0,0,1575,1934,0,110,'2025-10-30','OD','TP','98.2','mo','2025-10-30 18:36:36','mo','2025-10-30 18:49:54'),(852,0,0,1575,1934,0,110,'2025-10-30','OD','PR','70','mo','2025-10-30 18:36:40','mo','2025-10-30 18:59:30'),(853,0,0,1575,1934,0,110,'2025-10-30','OD','SpO2','98','mo','2025-10-30 18:36:52','mo','2025-10-30 18:50:03'),(854,0,0,1575,1934,0,110,'2025-10-30','OD','BP','130/64','mo','2025-10-30 18:37:09','mo','2025-10-30 18:59:40'),(855,0,0,1575,1934,0,110,'2025-10-30','OD','RR','20','mo','2025-10-30 18:37:16','mo','2025-10-30 18:50:17'),(856,0,0,1603,1970,1560,0,'2025-10-30','OA','BP','134/86','drarchit','2025-10-30 18:45:30','','0000-00-00 00:00:00'),(857,0,0,1608,1976,1565,0,'2025-10-30','OA','BP','136/72','drarchit','2025-10-30 19:04:46','','0000-00-00 00:00:00'),(858,0,0,982,1923,951,0,'2025-10-30','OA','BP','134/86','drarchit','2025-10-30 19:06:33','','0000-00-00 00:00:00'),(859,0,0,449,1983,427,0,'2025-10-30','OA','BP','132/78','drarchit','2025-10-30 19:37:53','','0000-00-00 00:00:00'),(860,0,0,1581,1942,0,114,'2025-10-30','OA','PR','130','mo','2025-10-30 19:53:26','','0000-00-00 00:00:00'),(861,0,0,1581,1942,0,114,'2025-10-30','OA','SpO2','92','mo','2025-10-30 19:53:33','','0000-00-00 00:00:00'),(862,0,0,1581,1942,0,114,'2025-10-30','OA','BP','110/78','mo','2025-10-30 19:53:39','','0000-00-00 00:00:00'),(863,0,0,1581,1942,0,114,'2025-10-30','OA','RR','24','mo','2025-10-30 19:53:44','','0000-00-00 00:00:00'),(864,0,0,1573,1940,0,112,'2025-10-30','OA','PR','74','mo','2025-10-30 20:03:58','','0000-00-00 00:00:00'),(865,0,0,1573,1940,0,112,'2025-10-30','OA','SpO2','98','mo','2025-10-30 20:04:00','','0000-00-00 00:00:00'),(866,0,0,1573,1940,0,112,'2025-10-30','OA','BP','110/60','mo','2025-10-30 20:04:05','','0000-00-00 00:00:00'),(867,0,0,1573,1940,0,112,'2025-10-30','OA','RR','20','mo','2025-10-30 20:04:11','','0000-00-00 00:00:00'),(868,0,0,1495,1888,0,109,'2025-10-30','OA','PR','74','mo','2025-10-30 21:04:36','','0000-00-00 00:00:00'),(869,0,0,1495,1888,0,109,'2025-10-30','OA','SpO2','97','mo','2025-10-30 21:04:39','','0000-00-00 00:00:00'),(870,0,0,1495,1888,0,109,'2025-10-30','OA','BP','154/70','mo','2025-10-30 21:04:47','','0000-00-00 00:00:00'),(871,0,0,1580,1941,0,113,'2025-10-30','OA','PR','140','mo','2025-10-30 22:00:34','','0000-00-00 00:00:00'),(872,0,0,1580,1941,0,113,'2025-10-30','OA','BP','84/46','mo','2025-10-30 22:00:44','','0000-00-00 00:00:00'),(873,0,0,1580,1941,0,113,'2025-10-30','OA','SpO2','96','mo','2025-10-30 22:00:56','','0000-00-00 00:00:00'),(874,0,0,1632,2008,1588,0,'2025-10-31','OA','BP','132/78','drarchit','2025-10-31 11:32:05','','0000-00-00 00:00:00'),(875,0,0,1631,2007,1587,0,'2025-10-31','OA','BP','142/78','drarchit','2025-10-31 11:36:33','','0000-00-00 00:00:00'),(876,0,0,1020,2023,988,0,'2025-10-31','OA','BP','142/88','drarchit','2025-10-31 12:01:19','','0000-00-00 00:00:00'),(877,0,0,1634,2011,1590,0,'2025-10-31','OA','BP','124/78','drarchit','2025-10-31 12:15:15','','0000-00-00 00:00:00'),(878,0,0,1650,2030,1605,0,'2025-10-31','OA','BP','142/78','drarchit','2025-10-31 12:19:18','','0000-00-00 00:00:00'),(879,0,0,1360,1660,0,102,'2025-10-27','OA','PR','87','mo','2025-10-31 12:20:03','','0000-00-00 00:00:00'),(880,0,0,1360,1660,0,102,'2025-10-27','OA','SpO2','99','mo','2025-10-31 12:20:06','','0000-00-00 00:00:00'),(881,0,0,1360,1660,0,102,'2025-10-27','OA','BP','160/80','mo','2025-10-31 12:20:12','','0000-00-00 00:00:00'),(882,0,0,1360,1660,0,102,'2025-10-27','OA','RR','32','mo','2025-10-31 12:20:17','','0000-00-00 00:00:00'),(883,0,0,1360,1660,0,102,'2025-10-27','OA','TP','97.8','mo','2025-10-31 12:20:24','','0000-00-00 00:00:00'),(884,0,0,1360,1660,0,102,'2025-10-27','OD','TP','98.2','mo','2025-10-31 12:20:26','','0000-00-00 00:00:00'),(885,0,0,1360,1660,0,102,'2025-10-27','OD','PR','82','mo','2025-10-31 12:20:33','','0000-00-00 00:00:00'),(886,0,0,1360,1660,0,102,'2025-10-27','OD','SpO2','92','mo','2025-10-31 12:20:41','','0000-00-00 00:00:00'),(887,0,0,1360,1660,0,102,'2025-10-27','OD','BP','124/80','mo','2025-10-31 12:20:47','','0000-00-00 00:00:00'),(888,0,0,1360,1660,0,102,'2025-10-27','OD','RR','22','mo','2025-10-31 12:20:49','','0000-00-00 00:00:00'),(889,0,0,1653,2033,1608,0,'2025-10-31','OA','BP','134/86','drarchit','2025-10-31 12:27:14','','0000-00-00 00:00:00'),(890,0,0,1649,2029,1604,0,'2025-10-31','OA','BP','134/86','drarchit','2025-10-31 12:32:22','','0000-00-00 00:00:00'),(891,0,0,1656,2036,1611,0,'2025-10-31','OA','BP','134/86','drarchit','2025-10-31 12:34:55','','0000-00-00 00:00:00'),(892,0,0,1660,2041,1615,0,'2025-10-31','OA','BP','138/74','drarchit','2025-10-31 12:39:01','drarchit','2025-10-31 12:39:27'),(893,0,0,1581,1942,0,114,'2025-10-30','OA','TP','98.2','mo','2025-10-31 12:48:04','','0000-00-00 00:00:00'),(894,0,0,1581,1942,0,114,'2025-10-30','OD','TP','98.4','mo','2025-10-31 12:48:10','','0000-00-00 00:00:00'),(895,0,0,1581,1942,0,114,'2025-10-30','OD','PR','100','mo','2025-10-31 12:48:16','','0000-00-00 00:00:00'),(896,0,0,1581,1942,0,114,'2025-10-30','OD','SpO2','97','mo','2025-10-31 12:48:21','','0000-00-00 00:00:00'),(897,0,0,1581,1942,0,114,'2025-10-30','OD','BP','114/76','mo','2025-10-31 12:48:34','','0000-00-00 00:00:00'),(898,0,0,1581,1942,0,114,'2025-10-30','OD','RR','18','mo','2025-10-31 12:48:37','','0000-00-00 00:00:00'),(899,0,0,1611,1979,1568,0,'2025-10-30','OA','BP','134/86','drarchit','2025-10-31 13:05:35','','0000-00-00 00:00:00'),(900,0,0,1674,2057,1629,0,'2025-10-31','OA','BP','134/86','drarchit','2025-10-31 13:17:59','','0000-00-00 00:00:00'),(901,0,0,1675,2058,1630,0,'2025-10-31','OA','BP','132/78','drarchit','2025-10-31 13:30:24','','0000-00-00 00:00:00'),(902,0,0,1663,2044,1618,0,'2025-10-31','OA','BP','132/78','drarchit','2025-10-31 13:34:03','','0000-00-00 00:00:00'),(903,0,0,1403,1727,0,107,'2025-10-28','OD','TP','98.2','mo','2025-10-31 13:41:53','','0000-00-00 00:00:00'),(904,0,0,1403,1727,0,107,'2025-10-28','OD','PR','84','mo','2025-10-31 13:41:59','','0000-00-00 00:00:00'),(905,0,0,1403,1727,0,107,'2025-10-28','OD','SpO2','98','mo','2025-10-31 13:42:01','','0000-00-00 00:00:00'),(906,0,0,1403,1727,0,107,'2025-10-28','OD','BP','124/76','mo','2025-10-31 13:42:38','','0000-00-00 00:00:00'),(907,0,0,1403,1727,0,107,'2025-10-28','OD','RR','22','mo','2025-10-31 13:42:40','','0000-00-00 00:00:00'),(908,0,0,1616,1988,0,115,'2025-10-30','OA','PR','90','mo','2025-10-31 16:01:54','','0000-00-00 00:00:00'),(909,0,0,1616,1988,0,115,'2025-10-30','OA','SpO2','98','mo','2025-10-31 16:01:55','','0000-00-00 00:00:00'),(910,0,0,1616,1988,0,115,'2025-10-30','OA','BP','124/80','mo','2025-10-31 16:02:05','','0000-00-00 00:00:00'),(911,0,0,1616,1988,0,115,'2025-10-30','OA','RR','20','mo','2025-10-31 16:02:10','','0000-00-00 00:00:00'),(912,0,0,1616,1988,0,115,'2025-10-30','OD','PR','100','mo','2025-10-31 16:02:17','','0000-00-00 00:00:00'),(913,0,0,1616,1988,0,115,'2025-10-30','OD','SpO2','98','mo','2025-10-31 16:02:25','','0000-00-00 00:00:00'),(914,0,0,1616,1988,0,115,'2025-10-30','OD','BP','128/76','mo','2025-10-31 16:02:36','','0000-00-00 00:00:00'),(915,0,0,1616,1988,0,115,'2025-10-30','OD','RR','20','mo','2025-10-31 16:02:38','','0000-00-00 00:00:00'),(916,0,0,657,2102,627,0,'2025-10-31','OA','BP','142/86','drarchit','2025-10-31 18:30:16','','0000-00-00 00:00:00'),(917,0,0,1711,2112,1666,0,'2025-10-31','OA','BP','132/78','drarchit','2025-10-31 18:37:46','','0000-00-00 00:00:00'),(918,0,0,1712,2114,1667,0,'2025-10-31','OA','BP','130/82','drjayant','2025-10-31 18:46:56','','0000-00-00 00:00:00'),(919,0,0,1719,2123,1674,0,'2025-10-31','OA','BP','132/86','drarchit','2025-10-31 18:54:33','','0000-00-00 00:00:00'),(920,0,0,1722,2126,1677,0,'2025-10-31','OA','BP','112/78','drarchit','2025-10-31 19:23:45','','0000-00-00 00:00:00'),(921,0,0,1717,2121,1672,0,'2025-10-31','OA','BP','208/104','drarchit','2025-10-31 20:09:09','','0000-00-00 00:00:00'),(922,0,0,1495,1888,0,109,'2025-10-30','OD','SpO2','98','mo','2025-10-31 21:07:53','','0000-00-00 00:00:00'),(923,0,0,1495,1888,0,109,'2025-10-30','OD','BP','130/80','mo','2025-10-31 21:08:03','','0000-00-00 00:00:00'),(924,0,0,1495,1888,0,109,'2025-10-30','OD','PR','78','mo','2025-10-31 21:08:07','','0000-00-00 00:00:00'),(925,0,0,1641,2018,0,117,'2025-10-31','OA','SpO2','97','mo','2025-10-31 23:02:44','','0000-00-00 00:00:00'),(926,0,0,1641,2018,0,117,'2025-10-31','OA','BP','170/90','mo','2025-10-31 23:02:54','','0000-00-00 00:00:00'),(927,0,0,1641,2018,0,117,'2025-10-31','OA','RR','30','mo','2025-10-31 23:02:57','','0000-00-00 00:00:00'),(928,0,0,1641,2018,0,117,'2025-10-31','OA','PR','80','mo','2025-10-31 23:03:01','','0000-00-00 00:00:00'),(929,0,0,1641,2018,0,117,'2025-10-31','OA','TP','101','mo','2025-10-31 23:03:04','','0000-00-00 00:00:00'),(930,0,0,1641,2018,0,117,'2025-10-31','OA','RBS','137','mo','2025-10-31 23:03:14','','0000-00-00 00:00:00'),(931,0,0,1680,2065,0,119,'2025-10-31','OA','PR','83','mo','2025-10-31 23:16:48','','0000-00-00 00:00:00'),(932,0,0,1680,2065,0,119,'2025-10-31','OA','SpO2','98','mo','2025-10-31 23:16:51','','0000-00-00 00:00:00'),(933,0,0,1680,2065,0,119,'2025-10-31','OA','BP','142/90','mo','2025-10-31 23:16:57','','0000-00-00 00:00:00'),(934,0,0,1680,2065,0,119,'2025-10-31','OA','RR','22','mo','2025-10-31 23:16:58','','0000-00-00 00:00:00'),(935,0,0,1680,2065,0,119,'2025-10-31','OA','RBS','200','mo','2025-10-31 23:17:05','','0000-00-00 00:00:00'),(936,0,0,1748,2161,1702,0,'2025-11-01','OA','BP','102/64','drjayant','2025-11-01 10:57:44','drjayant','2025-11-01 10:57:47'),(937,0,0,1748,2161,1702,0,'2025-11-01','OA','PR','70','drjayant','2025-11-01 10:57:47','','0000-00-00 00:00:00'),(938,0,0,1456,1782,0,108,'2025-10-29','OA','TP','98.2','mo','2025-11-01 11:21:53','','0000-00-00 00:00:00'),(939,0,0,1456,1782,0,108,'2025-10-29','OD','TP','98.4','mo','2025-11-01 11:21:57','','0000-00-00 00:00:00'),(940,0,0,1456,1782,0,108,'2025-10-29','OD','PR','67','mo','2025-11-01 11:22:03','','0000-00-00 00:00:00'),(941,0,0,1456,1782,0,108,'2025-10-29','OD','SpO2','96','mo','2025-11-01 11:22:05','','0000-00-00 00:00:00'),(942,0,0,1456,1782,0,108,'2025-10-29','OD','BP','128/84','mo','2025-11-01 11:22:17','','0000-00-00 00:00:00'),(943,0,0,1456,1782,0,108,'2025-10-29','OD','RR','22','mo','2025-11-01 11:22:22','','0000-00-00 00:00:00'),(944,0,0,1107,2165,1705,0,'2025-11-01','OA','SpO2','96','drjayant','2025-11-01 11:24:11','drjayant','2025-11-01 13:13:49'),(945,0,0,1756,2174,1712,0,'2025-11-01','OA','BP','120/74','drjayant','2025-11-01 11:32:30','','0000-00-00 00:00:00'),(946,0,0,1762,2180,1718,0,'2025-11-01','OA','BP','124/86','drarchit','2025-11-01 12:11:00','','0000-00-00 00:00:00'),(947,0,0,1763,2181,1719,0,'2025-11-01','OA','BP','132/78','drarchit','2025-11-01 12:22:16','','0000-00-00 00:00:00'),(948,0,0,1768,2189,1724,0,'2025-11-01','OA','BP','132/78','drarchit','2025-11-01 12:31:09','','0000-00-00 00:00:00'),(949,0,0,1152,2172,1710,0,'2025-11-01','OA','BP','130/80','drjayant','2025-11-01 12:41:24','','0000-00-00 00:00:00'),(950,0,0,1107,2165,1705,0,'2025-11-01','OA','BP','130/80','drjayant','2025-11-01 13:13:49','','0000-00-00 00:00:00'),(951,0,0,1750,2164,1704,0,'2025-11-01','OA','BP','134/78','drarchit','2025-11-01 13:15:34','','0000-00-00 00:00:00'),(952,0,0,392,414,0,25,'2025-10-10','OA','RR','38','mo','2025-11-01 13:20:46','','0000-00-00 00:00:00'),(953,0,0,392,414,0,25,'2025-10-10','OA','BP','NR','mo','2025-11-01 13:20:51','','0000-00-00 00:00:00'),(954,0,0,1761,2179,1717,0,'2025-11-01','OA','BP','132/78','drarchit','2025-11-01 13:21:02','','0000-00-00 00:00:00'),(955,0,0,392,414,0,25,'2025-10-10','OA','SpO2','42','mo','2025-11-01 13:21:11','','0000-00-00 00:00:00'),(956,0,0,392,414,0,25,'2025-10-10','OD','TP','98.2','mo','2025-11-01 13:21:29','','0000-00-00 00:00:00'),(957,0,0,392,414,0,25,'2025-10-10','OD','PR','102','mo','2025-11-01 13:21:34','','0000-00-00 00:00:00'),(958,0,0,392,414,0,25,'2025-10-10','OD','SpO2','90','mo','2025-11-01 13:21:42','','0000-00-00 00:00:00'),(959,0,0,392,414,0,25,'2025-10-10','OD','BP','124/76','mo','2025-11-01 13:21:48','','0000-00-00 00:00:00'),(960,0,0,392,414,0,25,'2025-10-10','OD','RR','22','mo','2025-11-01 13:21:51','','0000-00-00 00:00:00'),(961,0,0,1777,2200,1733,0,'2025-11-01','OA','BP','138/88','drarchit','2025-11-01 13:38:05','drarchit','2025-11-01 13:38:14'),(962,0,0,1754,2171,1709,0,'2025-11-01','OA','BP','132/78','drarchit','2025-11-01 13:44:40','','0000-00-00 00:00:00'),(963,0,0,1555,1936,0,111,'2025-10-30','OD','TP','98.1','mo','2025-11-01 15:16:41','','0000-00-00 00:00:00'),(964,0,0,1555,1936,0,111,'2025-10-30','OD','PR','92','mo','2025-11-01 15:16:45','','0000-00-00 00:00:00'),(965,0,0,1555,1936,0,111,'2025-10-30','OD','SpO2','97','mo','2025-11-01 15:16:54','','0000-00-00 00:00:00'),(966,0,0,1555,1936,0,111,'2025-10-30','OD','BP','90/40','mo','2025-11-01 15:16:58','','0000-00-00 00:00:00'),(967,0,0,1555,1936,0,111,'2025-10-30','OD','RR','22','mo','2025-11-01 15:17:03','','0000-00-00 00:00:00'),(968,0,0,1555,1936,0,111,'2025-10-30','OD','RBS','138','mo','2025-11-01 15:17:06','','0000-00-00 00:00:00'),(969,0,0,1245,1995,0,116,'2025-10-31','OA','PR','92','mo','2025-11-01 22:03:22','','0000-00-00 00:00:00'),(970,0,0,1245,1995,0,116,'2025-10-31','OA','RR','22','mo','2025-11-01 22:03:23','','0000-00-00 00:00:00'),(971,0,0,1245,1995,0,116,'2025-10-31','OA','SpO2','98','mo','2025-11-01 22:03:27','','0000-00-00 00:00:00'),(972,0,0,1245,1995,0,116,'2025-10-31','OA','BP','130/80','mo','2025-11-01 22:03:48','','0000-00-00 00:00:00'),(973,0,0,1245,1995,0,116,'2025-10-31','OA','RBS','158','mo','2025-11-01 22:04:17','','0000-00-00 00:00:00'),(974,0,0,1245,1995,0,116,'2025-10-31','OD','PR','82','mo','2025-11-01 22:05:49','','0000-00-00 00:00:00'),(975,0,0,1245,1995,0,116,'2025-10-31','OD','SpO2','98','mo','2025-11-01 22:05:50','','0000-00-00 00:00:00'),(976,0,0,1245,1995,0,116,'2025-10-31','OD','BP','130/80','mo','2025-11-01 22:05:52','','0000-00-00 00:00:00'),(977,0,0,1788,2214,0,122,'2025-11-01','OA','PR','82','mo','2025-11-01 22:29:42','','0000-00-00 00:00:00'),(978,0,0,1788,2214,0,122,'2025-11-01','OA','SpO2','98','mo','2025-11-01 22:29:44','','0000-00-00 00:00:00'),(979,0,0,1788,2214,0,122,'2025-11-01','OA','BP','124/80','mo','2025-11-01 22:29:48','','0000-00-00 00:00:00'),(980,0,0,1788,2214,0,122,'2025-11-01','OA','RR','18','mo','2025-11-01 22:29:50','','0000-00-00 00:00:00'),(981,0,0,1788,2214,0,122,'2025-11-01','OD','PR','78','mo','2025-11-01 22:36:54','','0000-00-00 00:00:00'),(982,0,0,1788,2214,0,122,'2025-11-01','OD','SpO2','98','mo','2025-11-01 22:36:55','','0000-00-00 00:00:00'),(983,0,0,1788,2214,0,122,'2025-11-01','OD','BP','126/80','mo','2025-11-01 22:36:57','','0000-00-00 00:00:00'),(984,0,0,1641,2018,0,117,'2025-10-31','OA','Wt','62.1','mo','2025-11-01 22:44:32','','0000-00-00 00:00:00'),(985,0,0,1680,2065,0,119,'2025-10-31','OD','SpO2','98','mo','2025-11-02 09:29:05','','0000-00-00 00:00:00'),(986,0,0,1680,2065,0,119,'2025-10-31','OD','BP','146/90','mo','2025-11-02 09:29:12','','0000-00-00 00:00:00'),(987,0,0,1680,2065,0,119,'2025-10-31','OD','PR','68','mo','2025-11-02 09:29:18','','0000-00-00 00:00:00'),(988,0,0,1647,2027,0,118,'2025-10-31','OD','TP','98.2','mo','2025-11-02 10:13:59','','0000-00-00 00:00:00'),(989,0,0,1647,2027,0,118,'2025-10-31','OD','PR','94','mo','2025-11-02 10:14:03','','0000-00-00 00:00:00'),(990,0,0,1647,2027,0,118,'2025-10-31','OD','SpO2','99','mo','2025-11-02 10:14:06','','0000-00-00 00:00:00'),(991,0,0,1647,2027,0,118,'2025-10-31','OD','BP','140/80','mo','2025-11-02 10:14:12','','0000-00-00 00:00:00'),(992,0,0,1647,2027,0,118,'2025-10-31','OD','RR','22','mo','2025-11-02 10:14:15','','0000-00-00 00:00:00'),(993,0,0,1647,2027,0,118,'2025-10-31','OD','RBS','138','mo','2025-11-02 10:14:26','','0000-00-00 00:00:00'),(994,0,0,1788,2214,0,122,'2025-11-01','OA','TP','98.2','mo','2025-11-02 17:03:42','','0000-00-00 00:00:00'),(995,0,0,1788,2214,0,122,'2025-11-01','OD','TP','98.4','mo','2025-11-02 17:03:46','','0000-00-00 00:00:00'),(996,0,0,1795,2226,0,124,'2025-11-02','OA','TP','98.2','mo','2025-11-02 21:22:51','','0000-00-00 00:00:00'),(997,0,0,1795,2226,0,124,'2025-11-02','OA','PR','78','mo','2025-11-02 21:22:55','mo','2025-11-02 21:23:45'),(998,0,0,1795,2226,0,124,'2025-11-02','OA','BP','100/60','mo','2025-11-02 21:23:08','','0000-00-00 00:00:00'),(999,0,0,1795,2226,0,124,'2025-11-02','OA','RR','18','mo','2025-11-02 21:23:08','','0000-00-00 00:00:00'),(1000,0,0,1795,2226,0,124,'2025-11-02','OA','SpO2','98','mo','2025-11-02 21:23:46','','0000-00-00 00:00:00'),(1001,0,0,1580,1941,0,113,'2025-10-30','OA','RR','24','mo','2025-11-02 21:25:38','','0000-00-00 00:00:00'),(1002,0,0,1772,2195,0,121,'2025-11-01','OA','PR','116','mo','2025-11-02 21:50:41','mo','2025-11-02 21:50:50'),(1003,0,0,1772,2195,0,121,'2025-11-01','OA','BP','168/80','mo','2025-11-02 21:50:45','','0000-00-00 00:00:00'),(1004,0,0,1772,2195,0,121,'2025-11-01','OA','RR','36','mo','2025-11-02 21:50:59','','0000-00-00 00:00:00'),(1005,0,0,1772,2195,0,121,'2025-11-01','OA','SpO2','93','mo','2025-11-02 21:51:04','','0000-00-00 00:00:00'),(1006,0,0,1253,2266,1776,0,'2025-11-03','OA','BP','118/72','drjayant','2025-11-03 11:23:51','drjayant','2025-11-03 11:26:46'),(1007,0,0,1253,2266,1776,0,'2025-11-03','OA','PR','80','drjayant','2025-11-03 11:23:53','drjayant','2025-11-03 11:26:46'),(1008,0,0,1253,2266,1776,0,'2025-11-03','OA','RBS','214','drjayant','2025-11-03 11:26:46','','0000-00-00 00:00:00'),(1009,0,0,1827,2274,1782,0,'2025-11-03','OA','BP','120/74','drjayant','2025-11-03 12:05:57','drjayant','2025-11-03 12:06:01'),(1010,0,0,1827,2274,1782,0,'2025-11-03','OA','PR','85','drjayant','2025-11-03 12:06:01','','0000-00-00 00:00:00'),(1011,0,0,1408,1723,0,105,'2025-10-28','OD','PR','80','mo','2025-11-03 12:31:29','','0000-00-00 00:00:00'),(1012,0,0,1408,1723,0,105,'2025-10-28','OD','BP','128/76','mo','2025-11-03 12:31:35','','0000-00-00 00:00:00'),(1013,0,0,1408,1723,0,105,'2025-10-28','OD','SpO2','98','mo','2025-11-03 12:31:40','','0000-00-00 00:00:00'),(1014,0,0,1573,1940,0,112,'2025-10-30','OD','PR','87','mo','2025-11-03 12:42:40','','0000-00-00 00:00:00'),(1015,0,0,1573,1940,0,112,'2025-10-30','OD','BP','108/68','mo','2025-11-03 12:42:44','','0000-00-00 00:00:00'),(1016,0,0,1573,1940,0,112,'2025-10-30','OD','SpO2','98','mo','2025-11-03 12:42:47','','0000-00-00 00:00:00'),(1017,0,0,1580,1941,0,113,'2025-10-30','OD','PR','78','mo','2025-11-03 12:53:54','','0000-00-00 00:00:00'),(1018,0,0,1580,1941,0,113,'2025-10-30','OD','SpO2','98','mo','2025-11-03 12:53:55','','0000-00-00 00:00:00'),(1019,0,0,1580,1941,0,113,'2025-10-30','OD','BP','132/82','mo','2025-11-03 12:53:59','','0000-00-00 00:00:00'),(1020,0,0,1795,2226,0,124,'2025-11-02','OD','PR','85','mo','2025-11-03 18:47:01','','0000-00-00 00:00:00'),(1021,0,0,1795,2226,0,124,'2025-11-02','OD','SpO2','98','mo','2025-11-03 18:47:02','','0000-00-00 00:00:00'),(1022,0,0,1795,2226,0,124,'2025-11-02','OD','BP','110/70','mo','2025-11-03 18:47:05','','0000-00-00 00:00:00'),(1023,0,0,1846,2298,0,127,'2025-11-03','OA','PR','116','mo','2025-11-03 21:01:11','','0000-00-00 00:00:00'),(1024,0,0,1846,2298,0,127,'2025-11-03','OA','SpO2','98','mo','2025-11-03 21:01:11','','0000-00-00 00:00:00'),(1025,0,0,1846,2298,0,127,'2025-11-03','OA','BP','112/78','mo','2025-11-03 21:01:17','','0000-00-00 00:00:00'),(1026,0,0,1846,2298,0,127,'2025-11-03','OA','RR','20','mo','2025-11-03 21:01:19','','0000-00-00 00:00:00'),(1027,0,0,1846,2298,0,127,'2025-11-03','OA','TP','98.5','mo','2025-11-03 21:01:29','','0000-00-00 00:00:00'),(1028,0,0,1703,2264,0,126,'2025-11-02','OA','TP','97.8','mo','2025-11-03 22:33:22','','0000-00-00 00:00:00'),(1029,0,0,1703,2264,0,126,'2025-11-02','OA','PR','90','mo','2025-11-03 22:33:25','','0000-00-00 00:00:00'),(1030,0,0,1703,2264,0,126,'2025-11-02','OA','SpO2','93','mo','2025-11-03 22:33:29','','0000-00-00 00:00:00'),(1031,0,0,1703,2264,0,126,'2025-11-02','OA','BP','184/100','mo','2025-11-03 22:33:32','','0000-00-00 00:00:00'),(1032,0,0,1703,2264,0,126,'2025-11-02','OA','RR','30','mo','2025-11-03 22:33:47','','0000-00-00 00:00:00'),(1033,0,0,1763,2240,0,125,'2025-11-03','OA','TP','98.2','mo','2025-11-03 22:56:30','','0000-00-00 00:00:00'),(1034,0,0,1763,2240,0,125,'2025-11-03','OA','PR','102','mo','2025-11-03 22:56:33','','0000-00-00 00:00:00'),(1035,0,0,1763,2240,0,125,'2025-11-03','OA','SpO2','98','mo','2025-11-03 22:56:35','','0000-00-00 00:00:00'),(1036,0,0,1763,2240,0,125,'2025-11-03','OA','BP','134/86','mo','2025-11-03 22:56:53','','0000-00-00 00:00:00'),(1037,0,0,1763,2240,0,125,'2025-11-03','OA','RR','20','mo','2025-11-03 22:57:09','','0000-00-00 00:00:00'),(1038,0,0,1763,2240,0,125,'2025-11-03','OD','PR','87','mo','2025-11-03 22:57:36','','0000-00-00 00:00:00'),(1039,0,0,1763,2240,0,125,'2025-11-03','OD','SpO2','99','mo','2025-11-03 22:57:39','','0000-00-00 00:00:00'),(1040,0,0,1763,2240,0,125,'2025-11-03','OD','BP','136/82','mo','2025-11-03 22:57:53','','0000-00-00 00:00:00'),(1041,0,0,1763,2240,0,125,'2025-11-03','OD','RR','20','mo','2025-11-03 22:57:56','','0000-00-00 00:00:00'),(1042,0,0,1763,2240,0,125,'2025-11-03','OD','TP','98.4','mo','2025-11-03 23:04:28','','0000-00-00 00:00:00'),(1043,0,0,1916,2391,1871,0,'2025-11-04','OA','SpO2','98','drjayant','2025-11-04 12:40:50','drjayant','2025-11-04 17:55:49'),(1044,0,0,1916,2391,1871,0,'2025-11-04','OA','BP','130/80','drjayant','2025-11-04 12:41:06','drjayant','2025-11-04 17:55:49'),(1045,0,0,1383,1711,0,104,'2025-10-28','OD','PR','82','mo','2025-11-04 15:56:13','','0000-00-00 00:00:00'),(1046,0,0,1383,1711,0,104,'2025-10-28','OD','SpO2','98','mo','2025-11-04 15:56:16','','0000-00-00 00:00:00'),(1047,0,0,1383,1711,0,104,'2025-10-28','OD','BP','102/70','mo','2025-11-04 15:56:21','','0000-00-00 00:00:00'),(1048,0,0,1383,1711,0,104,'2025-10-28','OD','RR','20','mo','2025-11-04 15:56:30','','0000-00-00 00:00:00'),(1049,0,0,1916,2391,1871,0,'2025-11-04','OA','PR','90','drjayant','2025-11-04 17:55:49','','0000-00-00 00:00:00'),(1050,0,0,1703,2264,0,126,'2025-11-02','OD','PR','97','mo','2025-11-04 18:43:02','','0000-00-00 00:00:00'),(1051,0,0,1703,2264,0,126,'2025-11-02','OD','SpO2','98','mo','2025-11-04 18:43:04','','0000-00-00 00:00:00'),(1052,0,0,1703,2264,0,126,'2025-11-02','OD','BP','110/70','mo','2025-11-04 18:43:08','','0000-00-00 00:00:00'),(1053,0,0,1703,2264,0,126,'2025-11-02','OD','RR','22','mo','2025-11-04 18:43:11','','0000-00-00 00:00:00'),(1054,0,0,1917,2392,0,128,'2025-11-04','OD','PR','85','mo','2025-11-04 21:43:39','mo','2025-11-05 19:29:58'),(1055,0,0,1917,2392,0,128,'2025-11-04','OD','SpO2','98','mo','2025-11-04 21:43:41','','0000-00-00 00:00:00'),(1056,0,0,1917,2392,0,128,'2025-11-04','OD','BP','114/72','mo','2025-11-04 21:43:47','mo','2025-11-05 19:30:01'),(1057,0,0,1917,2392,0,128,'2025-11-04','OD','RR','20','mo','2025-11-04 21:43:48','','0000-00-00 00:00:00'),(1058,0,0,1917,2392,0,128,'2025-11-04','OD','RBS','203','mo','2025-11-04 21:45:34','','0000-00-00 00:00:00'),(1059,0,0,1920,2395,0,129,'2025-11-04','OA','SpO2','98','mo','2025-11-04 21:57:39','','0000-00-00 00:00:00'),(1060,0,0,1920,2395,0,129,'2025-11-04','OA','BP','136/80','mo','2025-11-04 21:57:41','','0000-00-00 00:00:00'),(1061,0,0,1920,2395,0,129,'2025-11-04','OA','RR','22','mo','2025-11-04 21:57:44','','0000-00-00 00:00:00'),(1062,0,0,1920,2395,0,129,'2025-11-04','OA','PR','82','mo','2025-11-04 21:57:47','','0000-00-00 00:00:00'),(1063,0,0,1920,2395,0,129,'2025-11-04','OA','RBS','147','mo','2025-11-04 21:57:53','','0000-00-00 00:00:00'),(1064,0,0,1641,2018,0,117,'2025-10-31','OD','PR','78','mo','2025-11-04 22:03:01','','0000-00-00 00:00:00'),(1065,0,0,1641,2018,0,117,'2025-10-31','OD','SpO2','97','mo','2025-11-04 22:03:05','','0000-00-00 00:00:00'),(1066,0,0,1641,2018,0,117,'2025-10-31','OD','BP','146/90','mo','2025-11-04 22:03:09','','0000-00-00 00:00:00'),(1067,0,0,1641,2018,0,117,'2025-10-31','OD','Wt','63.2','mo','2025-11-04 22:03:22','','0000-00-00 00:00:00'),(1068,0,0,1950,2445,1902,0,'2025-11-05','OA','BP','144/86','drjayant','2025-11-05 11:02:45','drjayant','2025-11-05 13:19:50'),(1069,0,0,1641,2018,0,117,'2025-10-31','OD','RR','24','mo','2025-11-05 11:14:08','','0000-00-00 00:00:00'),(1070,0,0,1952,2449,1904,0,'2025-11-05','OA','SpO2','98','drjayant','2025-11-05 11:20:02','drjayant','2025-11-05 11:20:24'),(1071,0,0,1952,2449,1904,0,'2025-11-05','OA','BP','136/82','drjayant','2025-11-05 11:20:21','drjayant','2025-11-05 11:20:24'),(1072,0,0,1952,2449,1904,0,'2025-11-05','OA','PR','100','drjayant','2025-11-05 11:20:24','','0000-00-00 00:00:00'),(1073,0,0,1950,2445,1902,0,'2025-11-05','OA','PR','90','drjayant','2025-11-05 13:19:50','','0000-00-00 00:00:00'),(1074,0,0,1943,2437,0,130,'2025-11-05','OA','PR','84','mo','2025-11-05 14:21:57','','0000-00-00 00:00:00'),(1075,0,0,1943,2437,0,130,'2025-11-05','OA','SpO2','99','mo','2025-11-05 14:22:01','','0000-00-00 00:00:00'),(1076,0,0,1943,2437,0,130,'2025-11-05','OA','BP','100/70','mo','2025-11-05 14:22:04','','0000-00-00 00:00:00'),(1077,0,0,1943,2437,0,130,'2025-11-05','OA','RR','18','mo','2025-11-05 14:22:08','','0000-00-00 00:00:00'),(1078,0,0,1943,2437,0,130,'2025-11-05','OA','RBS','115','mo','2025-11-05 14:22:16','','0000-00-00 00:00:00'),(1079,0,0,1943,2437,0,130,'2025-11-05','OD','PR','80','mo','2025-11-05 14:27:41','','0000-00-00 00:00:00'),(1080,0,0,1943,2437,0,130,'2025-11-05','OD','SpO2','99','mo','2025-11-05 14:27:43','','0000-00-00 00:00:00'),(1081,0,0,1943,2437,0,130,'2025-11-05','OD','BP','124/80','mo','2025-11-05 14:27:47','','0000-00-00 00:00:00'),(1082,0,0,1992,2502,1944,0,'2025-11-05','OA','SpO2','98','drjayant','2025-11-05 17:59:03','drjayant','2025-11-05 17:59:15'),(1083,0,0,1992,2502,1944,0,'2025-11-05','OA','BP','120/72','drjayant','2025-11-05 17:59:12','drjayant','2025-11-05 17:59:15'),(1084,0,0,1992,2502,1944,0,'2025-11-05','OA','RR','74','drjayant','2025-11-05 17:59:15','','0000-00-00 00:00:00'),(1085,0,0,1920,2395,0,129,'2025-11-04','OD','PR','81','mo','2025-11-05 18:42:03','','0000-00-00 00:00:00'),(1086,0,0,1920,2395,0,129,'2025-11-04','OD','SpO2','98','mo','2025-11-05 18:42:03','','0000-00-00 00:00:00'),(1087,0,0,1920,2395,0,129,'2025-11-04','OD','BP','130/80','mo','2025-11-05 18:42:05','','0000-00-00 00:00:00'),(1088,0,0,1967,2469,1919,0,'2025-11-05','OA','BP','128/74','drjayant','2025-11-05 18:42:11','drjayant','2025-11-05 18:42:27'),(1089,0,0,1967,2469,1919,0,'2025-11-05','OA','SpO2','98','drjayant','2025-11-05 18:42:24','drjayant','2025-11-05 18:42:27'),(1090,0,0,1967,2469,1919,0,'2025-11-05','OA','PR','80','drjayant','2025-11-05 18:42:27','','0000-00-00 00:00:00'),(1091,0,0,2014,2533,1966,0,'2025-11-05','OA','BP','136/85','drjayant','2025-11-05 18:48:45','','0000-00-00 00:00:00'),(1092,0,0,1917,2392,0,128,'2025-11-04','OA','BP','108/72','mo','2025-11-05 19:29:29','','0000-00-00 00:00:00'),(1093,0,0,1917,2392,0,128,'2025-11-04','OA','RR','20','mo','2025-11-05 19:29:32','','0000-00-00 00:00:00'),(1094,0,0,1917,2392,0,128,'2025-11-04','OA','BMI','NaN','mo','2025-11-05 19:29:32','mo','2025-11-05 19:29:41'),(1095,0,0,1917,2392,0,128,'2025-11-04','OA','SpO2','98','mo','2025-11-05 19:29:39','','0000-00-00 00:00:00'),(1096,0,0,1917,2392,0,128,'2025-11-04','OA','PR','128','mo','2025-11-05 19:29:46','','0000-00-00 00:00:00'),(1097,0,0,1917,2392,0,128,'2025-11-04','OA','RBS','203','mo','2025-11-05 19:29:53','','0000-00-00 00:00:00'),(1098,0,0,2075,2621,2022,0,'2025-11-06','OA','SpO2','98','drjayant','2025-11-06 18:11:03','','0000-00-00 00:00:00'),(1099,0,0,2080,2626,2026,0,'2025-11-06','OA','BP','136/82','drjayant','2025-11-06 18:36:45','drjayant','2025-11-06 18:36:55'),(1100,0,0,2080,2626,2026,0,'2025-11-06','OA','PR','90','drjayant','2025-11-06 18:36:55','','0000-00-00 00:00:00'),(1101,0,0,842,2631,811,0,'2025-11-06','OA','BP','132/80','drjayant','2025-11-06 18:54:15','','0000-00-00 00:00:00'),(1102,0,0,2082,2628,2028,0,'2025-11-06','OA','BP','130/88','drjayant','2025-11-06 19:02:37','drjayant','2025-11-06 19:04:49'),(1103,0,0,2082,2628,2028,0,'2025-11-06','OA','PR','90','drjayant','2025-11-06 19:02:39','drjayant','2025-11-06 19:04:49'),(1104,0,0,2082,2628,2028,0,'2025-11-06','OA','Wt','105','drjayant','2025-11-06 19:04:49','','0000-00-00 00:00:00'),(1105,0,0,2030,2555,0,131,'2025-11-06','OA','PR','84','mo','2025-11-06 23:54:41','','0000-00-00 00:00:00'),(1106,0,0,2030,2555,0,131,'2025-11-06','OA','BP','110/70','mo','2025-11-06 23:54:46','','0000-00-00 00:00:00'),(1107,0,0,2030,2555,0,131,'2025-11-06','OA','SpO2','98','mo','2025-11-06 23:54:51','','0000-00-00 00:00:00'),(1108,0,0,2031,2556,0,132,'2025-11-06','OA','PR','82','mo','2025-11-07 00:05:45','','0000-00-00 00:00:00'),(1109,0,0,2031,2556,0,132,'2025-11-06','OA','BP','130/82','mo','2025-11-07 00:05:50','','0000-00-00 00:00:00'),(1110,0,0,2031,2556,0,132,'2025-11-06','OA','SpO2','98','mo','2025-11-07 00:05:55','','0000-00-00 00:00:00'),(1111,0,0,2063,2599,0,134,'2025-11-06','OA','PR','56','mo','2025-11-07 00:38:10','','0000-00-00 00:00:00'),(1112,0,0,2063,2599,0,134,'2025-11-06','OA','SpO2','97','mo','2025-11-07 00:38:12','','0000-00-00 00:00:00'),(1113,0,0,2063,2599,0,134,'2025-11-06','OA','BP','106/66','mo','2025-11-07 00:38:21','','0000-00-00 00:00:00'),(1114,0,0,2035,2561,0,133,'2025-11-06','OA','SpO2','98','mo','2025-11-07 00:43:50','mo','2025-11-07 00:44:09'),(1115,0,0,2035,2561,0,133,'2025-11-06','OA','PR','59','mo','2025-11-07 00:43:55','','0000-00-00 00:00:00'),(1116,0,0,2035,2561,0,133,'2025-11-06','OA','BP','114/70','mo','2025-11-07 00:44:03','','0000-00-00 00:00:00'),(1117,0,0,2031,2556,0,132,'2025-11-06','OD','PR','80','mo','2025-11-07 08:35:08','','0000-00-00 00:00:00'),(1118,0,0,2031,2556,0,132,'2025-11-06','OD','SpO2','98','mo','2025-11-07 08:35:10','','0000-00-00 00:00:00'),(1119,0,0,2031,2556,0,132,'2025-11-06','OD','BP','110/70','mo','2025-11-07 08:35:16','','0000-00-00 00:00:00'),(1120,0,0,2031,2556,0,132,'2025-11-06','OA','RR','22','mo','2025-11-07 08:35:58','','0000-00-00 00:00:00'),(1121,0,0,2031,2556,0,132,'2025-11-06','OD','RR','20','mo','2025-11-07 08:36:00','','0000-00-00 00:00:00'),(1122,0,0,2035,2561,0,133,'2025-11-06','OD','PR','64','mo','2025-11-07 08:41:08','','0000-00-00 00:00:00'),(1123,0,0,2035,2561,0,133,'2025-11-06','OD','SpO2','98','mo','2025-11-07 08:41:09','','0000-00-00 00:00:00'),(1124,0,0,2035,2561,0,133,'2025-11-06','OD','BP','106/64','mo','2025-11-07 08:41:44','','0000-00-00 00:00:00'),(1125,0,0,2035,2561,0,133,'2025-11-06','OA','RR','20','mo','2025-11-07 08:41:47','','0000-00-00 00:00:00'),(1126,0,0,2035,2561,0,133,'2025-11-06','OD','RR','22','mo','2025-11-07 08:41:50','','0000-00-00 00:00:00'),(1127,0,0,1846,2298,0,127,'2025-11-03','OD','TP','97.8','mo','2025-11-07 12:05:25','','0000-00-00 00:00:00'),(1128,0,0,1846,2298,0,127,'2025-11-03','OD','PR','91','mo','2025-11-07 12:05:33','','0000-00-00 00:00:00'),(1129,0,0,1846,2298,0,127,'2025-11-03','OD','SpO2','98','mo','2025-11-07 12:05:36','','0000-00-00 00:00:00'),(1130,0,0,1846,2298,0,127,'2025-11-03','OD','BP','118/72','mo','2025-11-07 12:05:47','','0000-00-00 00:00:00'),(1131,0,0,1846,2298,0,127,'2025-11-03','OD','RR','20','mo','2025-11-07 12:05:54','','0000-00-00 00:00:00'),(1132,0,0,1729,2135,0,120,'2025-10-31','OA','PR','120','mo','2025-11-07 12:38:27','','0000-00-00 00:00:00'),(1133,0,0,1729,2135,0,120,'2025-10-31','OA','RR','28','mo','2025-11-07 12:38:28','','0000-00-00 00:00:00'),(1134,0,0,1729,2135,0,120,'2025-10-31','OA','BP','200/120','mo','2025-11-07 12:38:43','','0000-00-00 00:00:00'),(1135,0,0,1729,2135,0,120,'2025-10-31','OA','SpO2','99','mo','2025-11-07 12:38:53','','0000-00-00 00:00:00'),(1136,0,0,1729,2135,0,120,'2025-10-31','OD','PR','98','mo','2025-11-07 12:39:05','','0000-00-00 00:00:00'),(1137,0,0,1729,2135,0,120,'2025-10-31','OD','SpO2','97','mo','2025-11-07 12:39:23','','0000-00-00 00:00:00'),(1138,0,0,1729,2135,0,120,'2025-10-31','OD','BP','128/78','mo','2025-11-07 12:39:27','','0000-00-00 00:00:00'),(1139,0,0,1729,2135,0,120,'2025-10-31','OD','RR','20','mo','2025-11-07 12:39:32','','0000-00-00 00:00:00'),(1140,0,0,2030,2555,0,131,'2025-11-06','OD','PR','80','mo','2025-11-07 14:52:55','','0000-00-00 00:00:00'),(1141,0,0,2030,2555,0,131,'2025-11-06','OD','SpO2','98','mo','2025-11-07 14:52:57','','0000-00-00 00:00:00'),(1142,0,0,2030,2555,0,131,'2025-11-06','OD','BP','112/70','mo','2025-11-07 14:53:04','','0000-00-00 00:00:00'),(1143,0,0,2089,2640,0,137,'2025-09-28','OA','BP','100/60','mo','2025-11-07 18:58:40','','0000-00-00 00:00:00'),(1144,0,0,2089,2640,0,137,'2025-09-28','OA','SpO2','96','mo','2025-11-07 18:58:42','','0000-00-00 00:00:00'),(1145,0,0,2089,2640,0,137,'2025-09-28','OA','PR','76','mo','2025-11-07 18:58:46','','0000-00-00 00:00:00'),(1146,0,0,2089,2640,0,137,'2025-09-28','OA','RR','22','mo','2025-11-07 18:59:23','','0000-00-00 00:00:00'),(1147,0,0,2089,2640,0,137,'2025-09-28','OD','SpO2','194','mo','2025-11-07 19:04:54','','0000-00-00 00:00:00'),(1148,0,0,2089,2640,0,137,'2025-09-28','OD','BP','140/70','mo','2025-11-07 19:05:00','','0000-00-00 00:00:00'),(1149,0,0,2089,2640,0,137,'2025-09-28','OD','PR','100','mo','2025-11-07 19:05:20','','0000-00-00 00:00:00'),(1150,0,0,2089,2640,0,137,'2025-09-28','OA','RBS','306','mo','2025-11-07 19:05:38','','0000-00-00 00:00:00'),(1151,0,0,2089,2640,0,137,'2025-09-28','OD','RBS','201','mo','2025-11-07 19:05:52','','0000-00-00 00:00:00'),(1152,0,0,2030,2555,0,131,'2025-11-06','OA','RR','22','mo','2025-11-07 19:50:33','','0000-00-00 00:00:00'),(1153,0,0,2064,2602,0,135,'2025-11-06','OA','PR','74','mo','2025-11-07 22:24:21','','0000-00-00 00:00:00'),(1154,0,0,2064,2602,0,135,'2025-11-06','OA','BP','140/90','mo','2025-11-07 22:24:27','','0000-00-00 00:00:00'),(1155,0,0,2064,2602,0,135,'2025-11-06','OA','SpO2','98','mo','2025-11-07 22:25:30','','0000-00-00 00:00:00'),(1156,0,0,2078,2624,0,136,'2025-11-06','OA','PR','87','mo','2025-11-07 23:05:37','','0000-00-00 00:00:00'),(1157,0,0,2078,2624,0,136,'2025-11-06','OA','SpO2','92','mo','2025-11-07 23:05:41','mo','2025-11-09 12:13:34'),(1158,0,0,2078,2624,0,136,'2025-11-06','OA','BP','90/60','mo','2025-11-07 23:05:50','','0000-00-00 00:00:00'),(1159,0,0,2127,2691,0,138,'2025-11-07','OA','PR','120','mo','2025-11-07 23:15:23','','0000-00-00 00:00:00'),(1160,0,0,2127,2691,0,138,'2025-11-07','OA','BP','110/60','mo','2025-11-07 23:15:28','','0000-00-00 00:00:00'),(1161,0,0,2127,2691,0,138,'2025-11-07','OA','SpO2','98','mo','2025-11-07 23:15:32','','0000-00-00 00:00:00'),(1162,0,0,1772,2195,0,121,'2025-11-01','OD','PR','96','mo','2025-11-08 09:00:51','','0000-00-00 00:00:00'),(1163,0,0,1772,2195,0,121,'2025-11-01','OD','SpO2','97','mo','2025-11-08 09:00:55','','0000-00-00 00:00:00'),(1164,0,0,1772,2195,0,121,'2025-11-01','OD','BP','128/84','mo','2025-11-08 09:01:05','','0000-00-00 00:00:00'),(1165,0,0,1772,2195,0,121,'2025-11-01','OD','RR','22','mo','2025-11-08 09:01:16','','0000-00-00 00:00:00'),(1166,0,0,2064,2602,0,135,'2025-11-06','OD','PR','76','mo','2025-11-08 11:05:22','','0000-00-00 00:00:00'),(1167,0,0,2064,2602,0,135,'2025-11-06','OD','SpO2','98','mo','2025-11-08 11:05:28','','0000-00-00 00:00:00'),(1168,0,0,2168,2755,2116,0,'2025-11-08','OA','BP','126/74','drjayant','2025-11-08 11:05:29','','0000-00-00 00:00:00'),(1169,0,0,2064,2602,0,135,'2025-11-06','OD','BP','132/84','mo','2025-11-08 11:05:37','','0000-00-00 00:00:00'),(1170,0,0,2064,2602,0,135,'2025-11-06','OD','RR','20','mo','2025-11-08 11:05:52','','0000-00-00 00:00:00'),(1171,0,0,2064,2602,0,135,'2025-11-06','OA','RR','22','mo','2025-11-08 11:05:54','','0000-00-00 00:00:00'),(1172,0,0,2064,2602,0,135,'2025-11-06','OA','TP','98.2','mo','2025-11-08 12:01:40','','0000-00-00 00:00:00'),(1173,0,0,2024,2747,0,139,'2025-11-08','OA','TP','98.2','mo','2025-11-08 13:32:35','','0000-00-00 00:00:00'),(1174,0,0,2024,2747,0,139,'2025-11-08','OA','PR','84','mo','2025-11-08 13:32:49','','0000-00-00 00:00:00'),(1175,0,0,2024,2747,0,139,'2025-11-08','OA','SpO2','98','mo','2025-11-08 13:32:54','','0000-00-00 00:00:00'),(1176,0,0,2024,2747,0,139,'2025-11-08','OA','BP','132/80','mo','2025-11-08 13:33:14','mo','2025-11-08 13:33:23'),(1177,0,0,2024,2747,0,139,'2025-11-08','OA','RR','22','mo','2025-11-08 13:34:16','','0000-00-00 00:00:00'),(1178,0,0,2195,2801,0,141,'2025-11-08','OA','PR','77','mo','2025-11-08 22:24:58','','0000-00-00 00:00:00'),(1179,0,0,2195,2801,0,141,'2025-11-08','OA','SpO2','98','mo','2025-11-08 22:25:00','','0000-00-00 00:00:00'),(1180,0,0,2195,2801,0,141,'2025-11-08','OA','BP','100/70','mo','2025-11-08 22:25:05','','0000-00-00 00:00:00'),(1181,0,0,2195,2801,0,141,'2025-11-08','OA','RR','18','mo','2025-11-08 22:25:12','','0000-00-00 00:00:00'),(1182,0,0,2198,2806,0,142,'2025-11-08','OA','PR','69','mo','2025-11-09 00:19:47','','0000-00-00 00:00:00'),(1183,0,0,2198,2806,0,142,'2025-11-08','OA','SpO2','98','mo','2025-11-09 00:19:49','','0000-00-00 00:00:00'),(1184,0,0,2198,2806,0,142,'2025-11-08','OA','BP','114/70','mo','2025-11-09 00:19:53','','0000-00-00 00:00:00'),(1185,0,0,2198,2806,0,142,'2025-11-08','OA','RR','20','mo','2025-11-09 00:19:58','','0000-00-00 00:00:00'),(1186,0,0,2188,2793,0,140,'2025-11-08','OA','PR','68','mo','2025-11-09 01:25:10','','0000-00-00 00:00:00'),(1187,0,0,2188,2793,0,140,'2025-11-08','OA','SpO2','97','mo','2025-11-09 01:25:14','','0000-00-00 00:00:00'),(1188,0,0,2188,2793,0,140,'2025-11-08','OA','BP','130/82','mo','2025-11-09 01:25:20','','0000-00-00 00:00:00'),(1189,0,0,2188,2793,0,140,'2025-11-08','OA','RR','20','mo','2025-11-09 01:25:48','','0000-00-00 00:00:00'),(1190,0,0,2063,2599,0,134,'2025-11-06','OD','PR','68','mo','2025-11-09 10:13:39','','0000-00-00 00:00:00'),(1191,0,0,2063,2599,0,134,'2025-11-06','OD','SpO2','98','mo','2025-11-09 10:13:41','','0000-00-00 00:00:00'),(1192,0,0,2063,2599,0,134,'2025-11-06','OD','BP','126/80','mo','2025-11-09 10:13:46','','0000-00-00 00:00:00'),(1193,0,0,2063,2599,0,134,'2025-11-06','OD','RR','22','mo','2025-11-09 10:14:14','','0000-00-00 00:00:00'),(1194,0,0,2078,2624,0,136,'2025-11-06','OD','SpO2','97','mo','2025-11-09 10:36:03','','0000-00-00 00:00:00'),(1195,0,0,2078,2624,0,136,'2025-11-06','OD','PR','80','mo','2025-11-09 10:36:05','','0000-00-00 00:00:00'),(1196,0,0,2078,2624,0,136,'2025-11-06','OD','BP','126/80','mo','2025-11-09 10:36:08','','0000-00-00 00:00:00'),(1197,0,0,2078,2624,0,136,'2025-11-06','OD','RR','20','mo','2025-11-09 10:36:11','','0000-00-00 00:00:00'),(1198,0,0,2195,2801,0,141,'2025-11-08','OD','SpO2','98','mo','2025-11-09 12:05:37','','0000-00-00 00:00:00'),(1199,0,0,2195,2801,0,141,'2025-11-08','OD','BP','110/70','mo','2025-11-09 12:05:40','mo','2025-11-09 12:17:44'),(1200,0,0,2195,2801,0,141,'2025-11-08','OD','PR','78','mo','2025-11-09 12:05:41','','0000-00-00 00:00:00'),(1201,0,0,2198,2806,0,142,'2025-11-08','OD','SpO2','98','mo','2025-11-09 12:31:24','','0000-00-00 00:00:00'),(1202,0,0,2198,2806,0,142,'2025-11-08','OD','PR','60','mo','2025-11-09 12:31:40','','0000-00-00 00:00:00'),(1203,0,0,2198,2806,0,142,'2025-11-08','OD','BP','100/60','mo','2025-11-09 12:31:48','','0000-00-00 00:00:00'),(1204,0,0,2188,2793,0,140,'2025-11-08','OD','PR','52','mo','2025-11-10 11:28:02','','0000-00-00 00:00:00'),(1205,0,0,2188,2793,0,140,'2025-11-08','OD','BP','130/80','mo','2025-11-10 11:28:06','','0000-00-00 00:00:00'),(1206,0,0,2188,2793,0,140,'2025-11-08','OD','SpO2','96','mo','2025-11-10 11:28:08','','0000-00-00 00:00:00'),(1207,0,0,2201,2811,0,143,'2025-11-09','OA','SpO2','96','mo','2025-11-10 14:44:41','','0000-00-00 00:00:00'),(1208,0,0,2201,2811,0,143,'2025-11-09','OA','RR','20','mo','2025-11-10 14:44:43','','0000-00-00 00:00:00'),(1209,0,0,2201,2811,0,143,'2025-11-09','OA','RBS','132','mo','2025-11-10 14:44:48','','0000-00-00 00:00:00'),(1210,0,0,2201,2811,0,143,'2025-11-09','OA','BP','120/72','mo','2025-11-10 14:44:53','','0000-00-00 00:00:00'),(1211,0,0,2201,2811,0,143,'2025-11-09','OA','PR','114','mo','2025-11-10 14:44:56','','0000-00-00 00:00:00'),(1212,0,0,2201,2811,0,143,'2025-11-09','OA','TP','101.4','mo','2025-11-10 14:45:01','','0000-00-00 00:00:00'),(1213,0,0,2209,2825,0,144,'2025-11-10','OA','PR','73','mo','2025-11-10 14:47:35','','0000-00-00 00:00:00'),(1214,0,0,2209,2825,0,144,'2025-11-10','OA','SpO2','98','mo','2025-11-10 14:47:37','','0000-00-00 00:00:00'),(1215,0,0,2209,2825,0,144,'2025-11-10','OA','BP','116/76','mo','2025-11-10 14:47:40','','0000-00-00 00:00:00'),(1216,0,0,2209,2825,0,144,'2025-11-10','OA','RR','18','mo','2025-11-10 14:47:44','','0000-00-00 00:00:00'),(1217,0,0,2209,2825,0,144,'2025-11-10','OA','Wt','40','mo','2025-11-10 14:48:01','','0000-00-00 00:00:00'),(1218,0,0,2209,2825,0,144,'2025-11-10','OD','SpO2','99','mo','2025-11-10 14:52:57','','0000-00-00 00:00:00'),(1219,0,0,2209,2825,0,144,'2025-11-10','OD','BP','114/72','mo','2025-11-10 14:53:00','','0000-00-00 00:00:00'),(1220,0,0,2209,2825,0,144,'2025-11-10','OD','RR','20','mo','2025-11-10 14:53:02','','0000-00-00 00:00:00'),(1221,0,0,2209,2825,0,144,'2025-11-10','OD','PR','86','mo','2025-11-10 14:53:05','','0000-00-00 00:00:00'),(1222,0,0,2127,2691,0,138,'2025-11-07','OA','RR','20','mo','2025-11-10 20:35:17','','0000-00-00 00:00:00'),(1223,0,0,982,2919,0,147,'2025-11-10','OA','PR','99','mo','2025-11-10 23:25:12','','0000-00-00 00:00:00'),(1224,0,0,982,2919,0,147,'2025-11-10','OA','SpO2','97','mo','2025-11-10 23:25:13','','0000-00-00 00:00:00'),(1225,0,0,982,2919,0,147,'2025-11-10','OA','BP','140/80','mo','2025-11-10 23:25:23','','0000-00-00 00:00:00'),(1226,0,0,982,2919,0,147,'2025-11-10','OA','RR','22','mo','2025-11-10 23:25:30','','0000-00-00 00:00:00'),(1227,0,0,518,2929,493,0,'2025-11-11','OA','BP','142/88','drarchit','2025-11-11 11:26:13','','0000-00-00 00:00:00'),(1228,0,0,2282,2957,2226,0,'2025-11-11','OA','BP','188/90','drarchit','2025-11-11 11:50:47','','0000-00-00 00:00:00'),(1229,0,0,2279,2954,2223,0,'2025-11-11','OA','BP','138/84','drarchit','2025-11-11 12:35:53','','0000-00-00 00:00:00'),(1230,0,0,847,2975,816,0,'2025-11-11','OA','BP','170/98','drarchit','2025-11-11 13:00:15','','0000-00-00 00:00:00'),(1231,0,0,2294,2976,2238,0,'2025-11-11','OA','BP','142/88','drarchit','2025-11-11 13:19:21','','0000-00-00 00:00:00'),(1232,0,0,1552,2990,1511,0,'2025-11-11','OA','BP','132/78','drarchit','2025-11-11 13:32:51','','0000-00-00 00:00:00'),(1233,0,0,2297,2983,2241,0,'2025-11-11','OA','BP','132/78','drarchit','2025-11-11 13:37:02','','0000-00-00 00:00:00'),(1234,0,0,2298,2984,2242,0,'2025-11-11','OA','BP','134/86','drarchit','2025-11-11 13:40:51','','0000-00-00 00:00:00'),(1235,0,0,2299,2985,2243,0,'2025-11-11','OA','BP','124/76','drarchit','2025-11-11 13:44:07','','0000-00-00 00:00:00'),(1236,0,0,804,2970,773,0,'2025-11-11','OA','BP','132/78','drarchit','2025-11-11 13:48:11','','0000-00-00 00:00:00'),(1237,0,0,533,2989,508,0,'2025-11-11','OA','BP','178/88','drarchit','2025-11-11 13:52:53','','0000-00-00 00:00:00'),(1238,0,0,2287,2963,2231,0,'2025-11-11','OA','BP','134/86','drarchit','2025-11-11 13:56:53','','0000-00-00 00:00:00'),(1239,0,0,2272,2938,2216,0,'2025-11-11','OA','BP','144/86','drarchit','2025-11-11 14:03:56','','0000-00-00 00:00:00'),(1240,0,0,2283,2958,2227,0,'2025-11-11','OA','BP','186/92','drarchit','2025-11-11 18:09:32','','0000-00-00 00:00:00'),(1241,0,0,2311,3010,2254,0,'2025-11-11','OA','BP','144/86','drarchit','2025-11-11 18:19:30','drarchit','2025-11-11 18:19:31'),(1242,0,0,1719,3012,1674,0,'2025-11-11','OA','BP','134/86','drarchit','2025-11-11 18:21:23','','0000-00-00 00:00:00'),(1243,0,0,2313,3013,2256,0,'2025-11-11','OA','BP','134/86','drarchit','2025-11-11 18:28:57','','0000-00-00 00:00:00'),(1244,0,0,2315,3016,2258,0,'2025-11-11','OA','BP','132/78','drarchit','2025-11-11 18:32:46','','0000-00-00 00:00:00'),(1245,0,0,2316,3017,2259,0,'2025-11-11','OA','BP','132/78','drarchit','2025-11-11 18:36:56','','0000-00-00 00:00:00'),(1246,0,0,2289,2966,2233,0,'2025-11-11','OA','BP','134/86','drarchit','2025-11-11 18:40:38','','0000-00-00 00:00:00'),(1247,0,0,2320,3022,2263,0,'2025-11-11','OA','BP','144/78','drarchit','2025-11-11 18:45:23','','0000-00-00 00:00:00'),(1248,0,0,2322,3024,2265,0,'2025-11-11','OA','BP','134/86','drarchit','2025-11-11 18:49:35','','0000-00-00 00:00:00'),(1249,0,0,2319,3020,2262,0,'2025-11-11','OA','BP','162/78','drarchit','2025-11-11 18:55:35','','0000-00-00 00:00:00'),(1250,0,0,2323,3026,2266,0,'2025-11-11','OA','BP','132/78','drarchit','2025-11-11 18:57:48','','0000-00-00 00:00:00'),(1251,0,0,924,3034,892,0,'2025-11-11','OA','BP','132/78','drarchit','2025-11-11 19:08:34','','0000-00-00 00:00:00'),(1252,0,0,2331,3039,2274,0,'2025-11-11','OA','BP','134/86','drarchit','2025-11-11 19:22:47','','0000-00-00 00:00:00'),(1253,0,0,2328,3035,2271,0,'2025-11-11','OA','BP','134/86','drarchit','2025-11-11 19:28:05','','0000-00-00 00:00:00'),(1254,0,0,2330,3038,2273,0,'2025-11-11','OA','BP','132/78','drarchit','2025-11-11 19:33:01','','0000-00-00 00:00:00'),(1255,0,0,2335,3046,2278,0,'2025-11-11','OA','BP','142/86','drarchit','2025-11-11 19:37:17','','0000-00-00 00:00:00'),(1256,0,0,2336,3047,2279,0,'2025-11-11','OA','BP','142/86','drarchit','2025-11-11 19:42:56','','0000-00-00 00:00:00'),(1257,0,0,2340,3052,2283,0,'2025-11-11','OA','BP','192/88','drarchit','2025-11-11 20:15:47','','0000-00-00 00:00:00'),(1258,0,0,2341,3053,2284,0,'2025-11-11','OA','BP','132/78','drarchit','2025-11-11 20:19:32','','0000-00-00 00:00:00'),(1259,0,0,2304,3027,0,149,'2025-11-11','OA','PR','109','mo','2025-11-11 21:30:08','','0000-00-00 00:00:00'),(1260,0,0,2304,3027,0,149,'2025-11-11','OA','BP','140/80','mo','2025-11-11 21:30:23','','0000-00-00 00:00:00'),(1261,0,0,2304,3027,0,149,'2025-11-11','OA','SpO2','98','mo','2025-11-11 21:30:30','','0000-00-00 00:00:00'),(1262,0,0,2302,2994,0,148,'2025-11-11','OA','PR','63','mo','2025-11-11 21:50:06','','0000-00-00 00:00:00'),(1263,0,0,2302,2994,0,148,'2025-11-11','OA','SpO2','98','mo','2025-11-11 21:50:07','','0000-00-00 00:00:00'),(1264,0,0,2302,2994,0,148,'2025-11-11','OA','BP','124/80','mo','2025-11-11 21:50:19','','0000-00-00 00:00:00'),(1265,0,0,2349,3061,2292,0,'2025-11-12','OA','BP','126/84','drarchit','2025-11-12 11:04:17','','0000-00-00 00:00:00'),(1266,0,0,2352,3067,2295,0,'2025-11-12','OA','BP','132/78','drarchit','2025-11-12 11:18:47','','0000-00-00 00:00:00'),(1267,0,0,2302,2994,0,148,'2025-11-11','OD','PR','57','mo','2025-11-12 11:22:33','','0000-00-00 00:00:00'),(1268,0,0,2302,2994,0,148,'2025-11-11','OD','SpO2','98','mo','2025-11-12 11:22:34','','0000-00-00 00:00:00'),(1269,0,0,2302,2994,0,148,'2025-11-11','OD','BP','128/80','mo','2025-11-12 11:22:38','','0000-00-00 00:00:00'),(1270,0,0,2302,2994,0,148,'2025-11-11','OD','RR','22','mo','2025-11-12 11:22:41','','0000-00-00 00:00:00'),(1271,0,0,2346,3058,2289,0,'2025-11-12','OA','BP','132/78','drarchit','2025-11-12 11:24:27','','0000-00-00 00:00:00'),(1272,0,0,2353,3069,2296,0,'2025-11-12','OA','BP','176/92','drarchit','2025-11-12 11:32:55','','0000-00-00 00:00:00'),(1273,0,0,1276,3076,1235,0,'2025-11-12','OA','BP','134/86','drarchit','2025-11-12 11:38:37','','0000-00-00 00:00:00'),(1274,0,0,2362,3081,2305,0,'2025-11-12','OA','BP','134/86','drarchit','2025-11-12 11:52:33','','0000-00-00 00:00:00'),(1275,0,0,2375,3099,2318,0,'2025-11-12','OA','BP','132/78','drarchit','2025-11-12 12:21:16','','0000-00-00 00:00:00'),(1276,0,0,20,3065,20,0,'2025-11-12','OA','BP','132/78','drarchit','2025-11-12 12:25:21','','0000-00-00 00:00:00'),(1277,0,0,2377,3102,2320,0,'2025-11-12','OA','BP','132/78','drarchit','2025-11-12 12:36:35','','0000-00-00 00:00:00'),(1278,0,0,2376,3100,2319,0,'2025-11-12','OA','BP','134/86','drarchit','2025-11-12 12:56:08','','0000-00-00 00:00:00'),(1279,0,0,212,3105,199,0,'2025-11-12','OA','BP','132/78','drarchit','2025-11-12 13:00:02','','0000-00-00 00:00:00'),(1280,0,0,2383,3110,2326,0,'2025-11-12','OA','BP','134/86','drarchit','2025-11-12 13:15:50','','0000-00-00 00:00:00'),(1281,0,0,2381,3108,2324,0,'2025-11-12','OA','BP','134/86','drarchit','2025-11-12 13:23:48','','0000-00-00 00:00:00'),(1282,0,0,2368,3088,2311,0,'2025-11-12','OA','BP','144/86','drarchit','2025-11-12 18:30:28','','0000-00-00 00:00:00'),(1283,0,0,648,3146,618,0,'2025-11-12','OA','BP','138/86','drarchit','2025-11-12 18:56:28','','0000-00-00 00:00:00'),(1284,0,0,1729,3151,2353,0,'2025-11-12','OA','BP','132/78','drarchit','2025-11-12 19:18:13','','0000-00-00 00:00:00'),(1285,0,0,2413,3161,2358,0,'2025-11-12','OA','BP','134/86','drarchit','2025-11-12 19:25:36','','0000-00-00 00:00:00'),(1286,0,0,2414,3162,2359,0,'2025-11-12','OA','BP','164/78','drarchit','2025-11-12 19:42:32','','0000-00-00 00:00:00'),(1287,0,0,519,3170,494,0,'2025-11-12','OA','BP','134/86','drarchit','2025-11-12 19:51:01','','0000-00-00 00:00:00'),(1288,0,0,2388,3122,2332,0,'2025-11-12','OA','BP','132/78','drarchit','2025-11-12 20:01:35','','0000-00-00 00:00:00'),(1289,0,0,2425,3177,2369,0,'2025-11-12','OA','BP','162/86','drarchit','2025-11-12 20:04:48','','0000-00-00 00:00:00'),(1290,0,0,2427,3179,2371,0,'2025-11-12','OA','BP','132/78','drarchit','2025-11-12 20:08:55','','0000-00-00 00:00:00'),(1291,0,0,2420,3172,2365,0,'2025-11-12','OA','BP','180/100','drarchit','2025-11-12 20:24:31','','0000-00-00 00:00:00'),(1292,0,0,2421,3173,2366,0,'2025-11-12','OA','BP','142/78','drarchit','2025-11-12 20:31:11','','0000-00-00 00:00:00'),(1293,0,0,2423,3175,2368,0,'2025-11-12','OA','BP','164/88','drarchit','2025-11-12 20:34:20','drarchit','2025-11-12 20:34:24'),(1294,0,0,2423,3175,2368,0,'2025-11-12','OA','RBS','250','drarchit','2025-11-12 20:34:24','','0000-00-00 00:00:00'),(1295,0,0,2426,3178,2370,0,'2025-11-12','OA','BP','132/78','drarchit','2025-11-12 20:41:22','','0000-00-00 00:00:00'),(1296,0,0,1532,3188,1491,0,'2025-11-12','OA','BP','132/78','drarchit','2025-11-12 20:50:02','','0000-00-00 00:00:00'),(1297,0,0,2385,3190,0,153,'2025-11-12','OA','BP','128/80','mo','2025-11-12 22:21:09','','0000-00-00 00:00:00'),(1298,0,0,2385,3190,0,153,'2025-11-12','OA','RR','20','mo','2025-11-12 22:21:11','','0000-00-00 00:00:00'),(1299,0,0,2385,3190,0,153,'2025-11-12','OA','SpO2','98','mo','2025-11-12 22:21:13','','0000-00-00 00:00:00'),(1300,0,0,2385,3190,0,153,'2025-11-12','OA','PR','118','mo','2025-11-12 22:22:03','','0000-00-00 00:00:00'),(1301,0,0,2367,3114,0,151,'2025-11-12','OA','SpO2','98','mo','2025-11-12 22:27:55','','0000-00-00 00:00:00'),(1302,0,0,2367,3114,0,151,'2025-11-12','OA','BP','112/70','mo','2025-11-12 22:27:59','','0000-00-00 00:00:00'),(1303,0,0,2367,3114,0,151,'2025-11-12','OA','RR','18','mo','2025-11-12 22:28:03','','0000-00-00 00:00:00'),(1304,0,0,2367,3114,0,151,'2025-11-12','OA','PR','64','mo','2025-11-12 22:28:07','','0000-00-00 00:00:00'),(1305,0,0,2367,3114,0,151,'2025-11-12','OD','SpO2','99','mo','2025-11-12 22:34:30','','0000-00-00 00:00:00'),(1306,0,0,2367,3114,0,151,'2025-11-12','OD','BP','116/74','mo','2025-11-12 22:34:33','mo','2025-11-13 08:37:09'),(1307,0,0,2367,3114,0,151,'2025-11-12','OD','RR','20','mo','2025-11-12 22:34:36','','0000-00-00 00:00:00'),(1308,0,0,2367,3114,0,151,'2025-11-12','OD','PR','68','mo','2025-11-12 22:34:38','','0000-00-00 00:00:00'),(1309,0,0,1410,3195,2382,0,'2025-11-13','OA','BP','142/86','drarchit','2025-11-13 11:04:58','','0000-00-00 00:00:00'),(1310,0,0,2437,3193,2381,0,'2025-11-13','OA','BP','142/78','drarchit','2025-11-13 11:14:22','','0000-00-00 00:00:00'),(1311,0,0,2436,3192,2380,0,'2025-11-13','OA','BP','138/76','drarchit','2025-11-13 11:19:53','drarchit','2025-11-13 11:19:56'),(1312,0,0,2412,3159,2357,0,'2025-11-12','OA','BP','124/78','drarchit','2025-11-13 11:24:20','','0000-00-00 00:00:00'),(1313,0,0,392,3212,2393,0,'2025-11-13','OA','BP','124/78','drarchit','2025-11-13 11:30:45','','0000-00-00 00:00:00'),(1314,0,0,2367,3114,0,151,'2025-11-12','OA','TP','97.6','mo','2025-11-13 11:34:13','','0000-00-00 00:00:00'),(1315,0,0,2367,3114,0,151,'2025-11-12','OD','TP','98.2','mo','2025-11-13 11:34:24','','0000-00-00 00:00:00'),(1316,0,0,2452,3217,2396,0,'2025-11-13','OA','BP','132/78','drarchit','2025-11-13 11:40:08','','0000-00-00 00:00:00'),(1317,0,0,631,3213,601,0,'2025-11-13','OA','BP','132/78','drarchit','2025-11-13 11:47:53','','0000-00-00 00:00:00'),(1318,0,0,2456,3222,2400,0,'2025-11-13','OA','BP','134/86','drarchit','2025-11-13 11:52:52','','0000-00-00 00:00:00'),(1319,0,0,2460,3227,2404,0,'2025-11-13','OA','BP','134/86','drarchit','2025-11-13 12:10:42','','0000-00-00 00:00:00'),(1320,0,0,739,3231,708,0,'2025-11-13','OA','BP','144/86','drarchit','2025-11-13 12:45:41','','0000-00-00 00:00:00'),(1321,0,0,2458,3225,2402,0,'2025-11-13','OA','BP','132/78','drarchit','2025-11-13 12:49:26','','0000-00-00 00:00:00'),(1322,0,0,2439,3196,0,155,'2025-11-13','OA','TP','98.6','mo','2025-11-13 12:49:47','','0000-00-00 00:00:00'),(1323,0,0,2439,3196,0,155,'2025-11-13','OA','PR','108','mo','2025-11-13 12:49:50','','0000-00-00 00:00:00'),(1324,0,0,2439,3196,0,155,'2025-11-13','OA','SpO2','100','mo','2025-11-13 12:49:59','','0000-00-00 00:00:00'),(1325,0,0,2439,3196,0,155,'2025-11-13','OA','BP','146/92','mo','2025-11-13 12:50:08','','0000-00-00 00:00:00'),(1326,0,0,2439,3196,0,155,'2025-11-13','OA','RR','20','mo','2025-11-13 12:50:17','','0000-00-00 00:00:00'),(1327,0,0,2439,3196,0,155,'2025-11-13','OD','TP','98.5','mo','2025-11-13 12:51:55','','0000-00-00 00:00:00'),(1328,0,0,2439,3196,0,155,'2025-11-13','OD','PR','109','mo','2025-11-13 12:51:58','','0000-00-00 00:00:00'),(1329,0,0,2439,3196,0,155,'2025-11-13','OD','SpO2','97','mo','2025-11-13 12:52:01','','0000-00-00 00:00:00'),(1330,0,0,2439,3196,0,155,'2025-11-13','OD','BP','140/80','mo','2025-11-13 12:52:08','','0000-00-00 00:00:00'),(1331,0,0,2439,3196,0,155,'2025-11-13','OD','RR','36','mo','2025-11-13 12:52:23','','0000-00-00 00:00:00'),(1332,0,0,2459,3226,2403,0,'2025-11-13','OA','BP','132/78','drarchit','2025-11-13 12:54:41','','0000-00-00 00:00:00'),(1333,0,0,2453,3219,2397,0,'2025-11-13','OA','BP','134/86','drarchit','2025-11-13 12:57:02','','0000-00-00 00:00:00'),(1334,0,0,2344,3056,2287,0,'2025-11-12','OA','BP','164/92','drarchit','2025-11-13 13:07:23','','0000-00-00 00:00:00'),(1335,0,0,1403,3236,1363,0,'2025-11-13','OA','BP','180/92','drarchit','2025-11-13 13:14:23','','0000-00-00 00:00:00'),(1336,0,0,2465,3239,2409,0,'2025-11-13','OA','BP','132/78','drarchit','2025-11-13 13:26:20','','0000-00-00 00:00:00'),(1337,0,0,2466,3240,2410,0,'2025-11-13','OA','BP','134/86','drarchit','2025-11-13 13:32:30','','0000-00-00 00:00:00'),(1338,0,0,2467,3241,2411,0,'2025-11-13','OA','BP','144/92','drarchit','2025-11-13 13:42:42','','0000-00-00 00:00:00'),(1339,0,0,2442,3201,2385,0,'2025-11-13','OA','BP','134/82','drarchit','2025-11-13 13:47:14','','0000-00-00 00:00:00'),(1340,0,0,2457,3224,2401,0,'2025-11-13','OA','BP','142/86','drarchit','2025-11-13 13:52:17','','0000-00-00 00:00:00'),(1341,0,0,2464,3238,2408,0,'2025-11-13','OA','BP','132/78','drarchit','2025-11-13 14:04:36','','0000-00-00 00:00:00'),(1342,0,0,2472,3249,2416,0,'2025-11-13','OA','BP','132/78','drarchit','2025-11-13 18:26:05','','0000-00-00 00:00:00'),(1343,0,0,2488,3270,2432,0,'2025-11-13','OA','BP','142/78','drarchit','2025-11-13 18:39:28','','0000-00-00 00:00:00'),(1344,0,0,2489,3271,2433,0,'2025-11-13','OA','BP','134/86','drarchit','2025-11-13 18:45:20','','0000-00-00 00:00:00'),(1345,0,0,2486,3267,2430,0,'2025-11-13','OA','BP','112/78','drarchit','2025-11-13 19:00:06','','0000-00-00 00:00:00'),(1346,0,0,2496,3289,2440,0,'2025-11-13','OA','BP','132/78','drarchit','2025-11-13 19:25:55','','0000-00-00 00:00:00'),(1347,0,0,2494,3282,2438,0,'2025-11-13','OA','BP','124/78','drarchit','2025-11-13 19:37:42','','0000-00-00 00:00:00'),(1348,0,0,2445,3206,2388,0,'2025-11-13','OA','BP','132/78','drarchit','2025-11-13 19:44:26','','0000-00-00 00:00:00'),(1349,0,0,1195,3284,1156,0,'2025-11-13','OA','BP','168/78','drarchit','2025-11-13 19:49:56','','0000-00-00 00:00:00'),(1350,0,0,982,2919,0,147,'2025-11-10','OD','PR','84','mo','2025-11-13 20:49:23','','0000-00-00 00:00:00'),(1351,0,0,982,2919,0,147,'2025-11-10','OD','SpO2','96','mo','2025-11-13 20:49:26','','0000-00-00 00:00:00'),(1352,0,0,982,2919,0,147,'2025-11-10','OD','BP','132/84','mo','2025-11-13 20:49:56','','0000-00-00 00:00:00'),(1353,0,0,982,2919,0,147,'2025-11-10','OD','RR','20','mo','2025-11-13 20:49:58','','0000-00-00 00:00:00'),(1354,0,0,2505,3300,2447,0,'2025-11-14','OA','BP','124/86','drarchit','2025-11-14 11:01:25','','0000-00-00 00:00:00'),(1355,0,0,21,3312,586,0,'2025-11-14','OA','BP','134/84','drarchit','2025-11-14 11:37:40','drarchit','2025-11-14 11:38:07'),(1356,0,0,520,3303,495,0,'2025-11-14','OA','BP','132/78','drarchit','2025-11-14 11:42:20','','0000-00-00 00:00:00'),(1357,0,0,2501,3296,2444,0,'2025-11-14','OA','BP','152/86','drarchit','2025-11-14 12:20:23','','0000-00-00 00:00:00'),(1358,0,0,2531,3338,2473,0,'2025-11-14','OA','PR','72','drarchit','2025-11-14 12:30:29','drarchit','2025-11-14 12:30:39'),(1359,0,0,2531,3338,2473,0,'2025-11-14','OA','SpO2','98','drarchit','2025-11-14 12:30:31','drarchit','2025-11-14 12:30:39'),(1360,0,0,2531,3338,2473,0,'2025-11-14','OA','BP','140/88','drarchit','2025-11-14 12:30:36','drarchit','2025-11-14 12:30:39'),(1361,0,0,2531,3338,2473,0,'2025-11-14','OA','RR','14','drarchit','2025-11-14 12:30:39','','0000-00-00 00:00:00'),(1362,0,0,2521,3324,2462,0,'2025-11-14','OA','BP','134/78','drarchit','2025-11-14 12:47:31','','0000-00-00 00:00:00'),(1363,0,0,2525,3329,2466,0,'2025-11-14','OA','BP','132/78','drarchit','2025-11-14 12:51:41','','0000-00-00 00:00:00'),(1364,0,0,2519,3321,2460,0,'2025-11-14','OA','BP','134/78','drarchit','2025-11-14 13:06:10','','0000-00-00 00:00:00'),(1365,0,0,2509,3306,2450,0,'2025-11-14','OA','BP','132/78','drarchit','2025-11-14 13:12:51','','0000-00-00 00:00:00'),(1366,0,0,2527,3333,2469,0,'2025-11-14','OA','BP','134/78','drarchit','2025-11-14 13:48:25','','0000-00-00 00:00:00'),(1367,0,0,2538,3347,2481,0,'2025-11-14','OA','BP','132/78','drarchit','2025-11-14 13:58:09','','0000-00-00 00:00:00'),(1368,0,0,2424,3176,0,152,'2025-11-12','OD','TP','98.6','mo','2025-11-14 13:59:03','','0000-00-00 00:00:00'),(1369,0,0,2424,3176,0,152,'2025-11-12','OD','PR','112','mo','2025-11-14 13:59:07','mo','2025-11-15 08:48:57'),(1370,0,0,2424,3176,0,152,'2025-11-12','OD','SpO2','94','mo','2025-11-14 13:59:13','mo','2025-11-15 08:49:02'),(1371,0,0,2424,3176,0,152,'2025-11-12','OD','BP','110/70','mo','2025-11-14 13:59:25','','0000-00-00 00:00:00'),(1372,0,0,2424,3176,0,152,'2025-11-12','OD','RR','24','mo','2025-11-14 13:59:30','','0000-00-00 00:00:00'),(1373,0,0,2536,3344,2478,0,'2025-11-14','OA','BP','132/78','drarchit','2025-11-14 14:00:32','drarchit','2025-11-14 14:00:37'),(1374,0,0,2536,3344,2478,0,'2025-11-14','OA','RBS','333','drarchit','2025-11-14 14:00:37','','0000-00-00 00:00:00'),(1375,0,0,2546,3360,2488,0,'2025-11-14','OA','BP','142/88','drarchit','2025-11-14 18:17:31','','0000-00-00 00:00:00'),(1376,0,0,2554,3372,2496,0,'2025-11-14','OA','BP','132/78','drarchit','2025-11-14 18:24:42','','0000-00-00 00:00:00'),(1377,0,0,2468,3242,2412,0,'2025-11-13','OA','BP','139/86','drarchit','2025-11-14 18:28:58','','0000-00-00 00:00:00'),(1378,0,0,2241,2876,0,145,'2025-11-10','OA','PR','110','mo','2025-11-14 18:33:16','','0000-00-00 00:00:00'),(1379,0,0,2241,2876,0,145,'2025-11-10','OA','SpO2','96','mo','2025-11-14 18:33:19','','0000-00-00 00:00:00'),(1380,0,0,2241,2876,0,145,'2025-11-10','OA','BP','100/60','mo','2025-11-14 18:33:24','','0000-00-00 00:00:00'),(1381,0,0,2241,2876,0,145,'2025-11-10','OA','RR','18','mo','2025-11-14 18:33:29','','0000-00-00 00:00:00'),(1382,0,0,2241,2876,0,145,'2025-11-10','OD','PR','84','mo','2025-11-14 18:33:46','','0000-00-00 00:00:00'),(1383,0,0,2241,2876,0,145,'2025-11-10','OD','SpO2','98','mo','2025-11-14 18:33:48','','0000-00-00 00:00:00'),(1384,0,0,2241,2876,0,145,'2025-11-10','OD','BP','136/80','mo','2025-11-14 18:33:52','','0000-00-00 00:00:00'),(1385,0,0,2241,2876,0,145,'2025-11-10','OD','RR','20','mo','2025-11-14 18:33:54','','0000-00-00 00:00:00'),(1386,0,0,2550,3367,2492,0,'2025-11-14','OA','BP','132/78','drarchit','2025-11-14 18:36:00','','0000-00-00 00:00:00'),(1387,0,0,2528,3335,2470,0,'2025-11-14','OA','BP','134/86','drarchit','2025-11-14 18:41:42','','0000-00-00 00:00:00'),(1388,0,0,2561,3385,2504,0,'2025-11-14','OA','BP','132/84','drarchit','2025-11-14 18:50:11','drarchit','2025-11-14 18:51:18'),(1389,0,0,2561,3385,2504,0,'2025-11-14','OA','RBS','124','drarchit','2025-11-14 18:51:18','','0000-00-00 00:00:00'),(1390,0,0,2553,3370,2495,0,'2025-11-14','OA','BP','132/78','drarchit','2025-11-14 19:01:03','','0000-00-00 00:00:00'),(1391,0,0,2562,3386,2505,0,'2025-11-14','OA','BP','132/78','drarchit','2025-11-14 19:18:15','','0000-00-00 00:00:00'),(1392,0,0,2549,3364,2491,0,'2025-11-14','OA','BP','142/86','drarchit','2025-11-14 19:20:45','','0000-00-00 00:00:00'),(1393,0,0,2569,3397,2512,0,'2025-11-14','OA','BP','134/86','drarchit','2025-11-14 19:25:31','','0000-00-00 00:00:00'),(1394,0,0,2563,3390,2506,0,'2025-11-14','OA','BP','180/100 ','drarchit','2025-11-14 19:40:20','','0000-00-00 00:00:00'),(1395,0,0,2564,3391,2507,0,'2025-11-14','OA','BP','134/86','drarchit','2025-11-14 19:41:42','','0000-00-00 00:00:00'),(1396,0,0,2565,3392,2508,0,'2025-11-14','OA','BP','144/86','drarchit','2025-11-14 19:46:07','','0000-00-00 00:00:00'),(1397,0,0,2567,3395,2510,0,'2025-11-14','OA','BP','132/78','drarchit','2025-11-14 19:55:25','','0000-00-00 00:00:00'),(1398,0,0,2568,3396,2511,0,'2025-11-14','OA','BP','134/86','drarchit','2025-11-14 20:01:28','','0000-00-00 00:00:00'),(1399,0,0,2539,3348,0,159,'2025-11-14','OA','TP','99.5','mo','2025-11-14 20:49:01','','0000-00-00 00:00:00'),(1400,0,0,2539,3348,0,159,'2025-11-14','OA','PR','138','mo','2025-11-14 20:49:04','','0000-00-00 00:00:00'),(1401,0,0,2539,3348,0,159,'2025-11-14','OA','SpO2','90','mo','2025-11-14 20:49:07','','0000-00-00 00:00:00'),(1402,0,0,2539,3348,0,159,'2025-11-14','OA','BP','132/80','mo','2025-11-14 20:49:10','','0000-00-00 00:00:00'),(1403,0,0,2539,3348,0,159,'2025-11-14','OA','RR','20','mo','2025-11-14 20:49:21','','0000-00-00 00:00:00'),(1404,0,0,2504,3299,0,157,'2025-11-14','OA','PR','87','mo','2025-11-14 22:57:25','','0000-00-00 00:00:00'),(1405,0,0,2504,3299,0,157,'2025-11-14','OA','SpO2','98','mo','2025-11-14 22:57:27','','0000-00-00 00:00:00'),(1406,0,0,2504,3299,0,157,'2025-11-14','OA','BP','100/70','mo','2025-11-14 22:57:33','','0000-00-00 00:00:00'),(1407,0,0,2504,3299,0,157,'2025-11-14','OA','RR','18','mo','2025-11-14 22:57:37','','0000-00-00 00:00:00'),(1408,0,0,2556,3378,2499,0,'2025-11-14','OA','BP','134/86','drarchit','2025-11-15 11:13:28','','0000-00-00 00:00:00'),(1409,0,0,2576,3408,2518,0,'2025-11-15','OA','BP','132/78','drarchit','2025-11-15 11:24:48','','0000-00-00 00:00:00'),(1410,0,0,2574,3406,2516,0,'2025-11-15','OA','BP','134/86','drarchit','2025-11-15 11:32:00','','0000-00-00 00:00:00'),(1411,0,0,2385,3190,0,153,'2025-11-12','OD','PR','80','mo','2025-11-15 11:40:58','','0000-00-00 00:00:00'),(1412,0,0,2385,3190,0,153,'2025-11-12','OD','SpO2','98','mo','2025-11-15 11:40:59','','0000-00-00 00:00:00'),(1413,0,0,2385,3190,0,153,'2025-11-12','OD','BP','138/82','mo','2025-11-15 11:41:07','','0000-00-00 00:00:00'),(1414,0,0,849,3418,818,0,'2025-11-15','OA','BP','132/78','drarchit','2025-11-15 11:43:11','','0000-00-00 00:00:00'),(1415,0,0,657,3426,627,0,'2025-11-15','OA','BP','138/88','drarchit','2025-11-15 12:00:31','','0000-00-00 00:00:00'),(1416,0,0,2384,3113,0,150,'2025-11-12','OA','TP','98.2','mo','2025-11-15 12:12:55','','0000-00-00 00:00:00'),(1417,0,0,2384,3113,0,150,'2025-11-12','OA','PR','124','mo','2025-11-15 12:12:59','','0000-00-00 00:00:00'),(1418,0,0,2384,3113,0,150,'2025-11-12','OA','SpO2','97','mo','2025-11-15 12:13:05','','0000-00-00 00:00:00'),(1419,0,0,2384,3113,0,150,'2025-11-12','OA','BP','114/70','mo','2025-11-15 12:13:22','','0000-00-00 00:00:00'),(1420,0,0,2384,3113,0,150,'2025-11-12','OD','PR','101','mo','2025-11-15 12:37:49','','0000-00-00 00:00:00'),(1421,0,0,2384,3113,0,150,'2025-11-12','OD','SpO2','96','mo','2025-11-15 12:37:51','','0000-00-00 00:00:00'),(1422,0,0,2384,3113,0,150,'2025-11-12','OD','BP','124/76','mo','2025-11-15 12:37:55','','0000-00-00 00:00:00'),(1423,0,0,2504,3299,0,157,'2025-11-14','OD','SpO2','98','mo','2025-11-15 18:40:02','','0000-00-00 00:00:00'),(1424,0,0,2504,3299,0,157,'2025-11-14','OD','BP','100/60','mo','2025-11-15 18:40:05','','0000-00-00 00:00:00'),(1425,0,0,2504,3299,0,157,'2025-11-14','OD','RR','20','mo','2025-11-15 18:40:07','','0000-00-00 00:00:00'),(1426,0,0,2504,3299,0,157,'2025-11-14','OD','PR','78','mo','2025-11-15 18:40:17','','0000-00-00 00:00:00'),(1427,0,0,2499,3294,0,156,'2025-11-13','OA','SpO2','96','mo','2025-11-15 19:17:01','','0000-00-00 00:00:00'),(1428,0,0,2499,3294,0,156,'2025-11-13','OA','BP','176/90','mo','2025-11-15 19:17:05','','0000-00-00 00:00:00'),(1429,0,0,2499,3294,0,156,'2025-11-13','OA','RR','20','mo','2025-11-15 19:17:08','','0000-00-00 00:00:00'),(1430,0,0,2499,3294,0,156,'2025-11-13','OA','PR','76','mo','2025-11-15 19:17:12','','0000-00-00 00:00:00'),(1431,0,0,2499,3294,0,156,'2025-11-13','OD','PR','60','mo','2025-11-15 19:17:15','','0000-00-00 00:00:00'),(1432,0,0,2499,3294,0,156,'2025-11-13','OD','SpO2','98','mo','2025-11-15 19:17:17','','0000-00-00 00:00:00'),(1433,0,0,2499,3294,0,156,'2025-11-13','OD','BP','140/60','mo','2025-11-15 19:17:23','','0000-00-00 00:00:00'),(1434,0,0,2506,3301,0,158,'2025-11-14','OA','PR','111','mo','2025-11-16 11:03:23','','0000-00-00 00:00:00'),(1435,0,0,2506,3301,0,158,'2025-11-14','OA','SpO2','75','mo','2025-11-16 11:03:33','','0000-00-00 00:00:00'),(1436,0,0,2506,3301,0,158,'2025-11-14','OA','BP','128/80','mo','2025-11-16 11:03:41','','0000-00-00 00:00:00'),(1437,0,0,2506,3301,0,158,'2025-11-14','OA','RR','24','mo','2025-11-16 11:03:44','','0000-00-00 00:00:00'),(1438,0,0,2506,3301,0,158,'2025-11-14','OA','TP','103','mo','2025-11-16 11:04:13','','0000-00-00 00:00:00'),(1439,0,0,2506,3301,0,158,'2025-11-14','OA','RBS','196','mo','2025-11-16 11:04:15','','0000-00-00 00:00:00'),(1440,0,0,2506,3301,0,158,'2025-11-14','OD','SpO2','98','mo','2025-11-16 19:35:27','','0000-00-00 00:00:00'),(1441,0,0,2506,3301,0,158,'2025-11-14','OD','BP','130/80','mo','2025-11-16 19:35:30','','0000-00-00 00:00:00'),(1442,0,0,2506,3301,0,158,'2025-11-14','OD','PR','68','mo','2025-11-16 19:35:34','','0000-00-00 00:00:00'),(1443,0,0,2506,3301,0,158,'2025-11-14','OD','RR','20','mo','2025-11-16 19:35:46','','0000-00-00 00:00:00'),(1444,0,0,2608,3470,0,162,'2025-11-16','OA','PR','68','mo','2025-11-17 00:37:44','','0000-00-00 00:00:00'),(1445,0,0,2608,3470,0,162,'2025-11-16','OA','SpO2','92','mo','2025-11-17 00:37:46','','0000-00-00 00:00:00'),(1446,0,0,2608,3470,0,162,'2025-11-16','OA','BP','124/80','mo','2025-11-17 00:37:49','','0000-00-00 00:00:00'),(1447,0,0,2608,3470,0,162,'2025-11-16','OA','RR','24','mo','2025-11-17 00:37:55','','0000-00-00 00:00:00'),(1448,0,0,2611,3473,0,163,'2025-11-16','OA','TP','100','mo','2025-11-17 00:47:34','','0000-00-00 00:00:00'),(1449,0,0,2611,3473,0,163,'2025-11-16','OA','PR','100','mo','2025-11-17 00:47:36','','0000-00-00 00:00:00'),(1450,0,0,2611,3473,0,163,'2025-11-16','OA','SpO2','97','mo','2025-11-17 00:47:39','','0000-00-00 00:00:00'),(1451,0,0,2611,3473,0,163,'2025-11-16','OA','BP','118/70','mo','2025-11-17 00:47:44','','0000-00-00 00:00:00'),(1452,0,0,2611,3473,0,163,'2025-11-16','OA','RR','20','mo','2025-11-17 00:47:51','','0000-00-00 00:00:00'),(1453,0,0,2304,3027,0,149,'2025-11-11','OD','PR','80','mo','2025-11-17 09:48:45','','0000-00-00 00:00:00'),(1454,0,0,2304,3027,0,149,'2025-11-11','OD','SpO2','98','mo','2025-11-17 09:48:46','','0000-00-00 00:00:00'),(1455,0,0,2304,3027,0,149,'2025-11-11','OD','BP','122/74','mo','2025-11-17 09:49:04','','0000-00-00 00:00:00'),(1456,0,0,2608,3470,0,162,'2025-11-16','OD','PR','78','mo','2025-11-17 12:12:12','','0000-00-00 00:00:00'),(1457,0,0,2608,3470,0,162,'2025-11-16','OD','SpO2','95','mo','2025-11-17 12:12:43','','0000-00-00 00:00:00'),(1458,0,0,2608,3470,0,162,'2025-11-16','OD','BP','124/80','mo','2025-11-17 12:12:46','','0000-00-00 00:00:00'),(1459,0,0,2651,3553,0,166,'2025-11-17','OA','TP','102.5','mo','2025-11-17 21:17:18','','0000-00-00 00:00:00'),(1460,0,0,2651,3553,0,166,'2025-11-17','OA','PR','90','mo','2025-11-17 21:17:21','','0000-00-00 00:00:00'),(1461,0,0,2651,3553,0,166,'2025-11-17','OA','SpO2','97','mo','2025-11-17 21:17:26','','0000-00-00 00:00:00'),(1462,0,0,2651,3553,0,166,'2025-11-17','OA','BP','100/60','mo','2025-11-17 21:17:28','','0000-00-00 00:00:00'),(1463,0,0,2651,3553,0,166,'2025-11-17','OA','RR','22','mo','2025-11-17 21:17:34','','0000-00-00 00:00:00'),(1464,0,0,2633,3517,0,165,'2025-11-17','OA','TP','98.4','mo','2025-11-17 21:25:43','','0000-00-00 00:00:00'),(1465,0,0,2633,3517,0,165,'2025-11-17','OA','PR','100','mo','2025-11-17 21:25:44','','0000-00-00 00:00:00'),(1466,0,0,2633,3517,0,165,'2025-11-17','OA','SpO2','97','mo','2025-11-17 21:25:48','','0000-00-00 00:00:00'),(1467,0,0,2633,3517,0,165,'2025-11-17','OA','BP','100/70','mo','2025-11-17 21:25:56','','0000-00-00 00:00:00'),(1468,0,0,2633,3517,0,165,'2025-11-17','OA','RR','24','mo','2025-11-17 21:25:58','','0000-00-00 00:00:00'),(1469,0,0,2607,3468,0,161,'2025-11-16','OA','TP','104.6','mo','2025-11-18 08:51:38','','0000-00-00 00:00:00'),(1470,0,0,2607,3468,0,161,'2025-11-16','OA','PR','118','mo','2025-11-18 08:51:41','','0000-00-00 00:00:00'),(1471,0,0,2607,3468,0,161,'2025-11-16','OA','SpO2','88','mo','2025-11-18 08:51:45','','0000-00-00 00:00:00'),(1472,0,0,2607,3468,0,161,'2025-11-16','OA','BP','118/70','mo','2025-11-18 08:51:53','','0000-00-00 00:00:00'),(1473,0,0,2607,3468,0,161,'2025-11-16','OA','RR','28','mo','2025-11-18 08:52:00','','0000-00-00 00:00:00'),(1474,0,0,2612,3474,0,164,'2025-11-16','OA','SpO2','72','mo','2025-11-19 00:35:30','','0000-00-00 00:00:00'),(1475,0,0,2612,3474,0,164,'2025-11-16','OA','BP','168/100','mo','2025-11-19 00:35:34','','0000-00-00 00:00:00'),(1476,0,0,2612,3474,0,164,'2025-11-16','OA','RR','36','mo','2025-11-19 00:35:38','','0000-00-00 00:00:00'),(1477,0,0,2612,3474,0,164,'2025-11-16','OA','PR','90','mo','2025-11-19 00:35:42','','0000-00-00 00:00:00'),(1478,0,0,2675,3594,0,169,'2025-11-18','OA','PR','88','mo','2025-11-19 00:50:15','','0000-00-00 00:00:00'),(1479,0,0,2675,3594,0,169,'2025-11-18','OA','SpO2','94','mo','2025-11-19 00:50:18','','0000-00-00 00:00:00'),(1480,0,0,2675,3594,0,169,'2025-11-18','OA','TP','100.4','mo','2025-11-19 00:50:22','','0000-00-00 00:00:00'),(1481,0,0,2675,3594,0,169,'2025-11-18','OA','BP','156/90','mo','2025-11-19 00:50:29','','0000-00-00 00:00:00'),(1482,0,0,2675,3594,0,169,'2025-11-18','OA','RR','22','mo','2025-11-19 00:50:30','','0000-00-00 00:00:00'),(1483,0,0,2675,3594,0,169,'2025-11-18','OA','RBS','120','mo','2025-11-19 00:50:38','','0000-00-00 00:00:00'),(1484,0,0,2676,3595,0,170,'2025-11-18','OA','SpO2','97','mo','2025-11-19 00:55:51','','0000-00-00 00:00:00'),(1485,0,0,2676,3595,0,170,'2025-11-18','OA','BP','110/70','mo','2025-11-19 00:55:54','','0000-00-00 00:00:00'),(1486,0,0,2676,3595,0,170,'2025-11-18','OA','RR','22','mo','2025-11-19 00:55:57','','0000-00-00 00:00:00'),(1487,0,0,2676,3595,0,170,'2025-11-18','OA','PR','115','mo','2025-11-19 00:56:10','','0000-00-00 00:00:00'),(1488,0,0,2651,3553,0,166,'2025-11-17','OD','TP','98.4','mo','2025-11-19 09:02:18','','0000-00-00 00:00:00'),(1489,0,0,2651,3553,0,166,'2025-11-17','OD','PR','78','mo','2025-11-19 09:02:26','','0000-00-00 00:00:00'),(1490,0,0,2651,3553,0,166,'2025-11-17','OD','SpO2','98','mo','2025-11-19 09:02:28','','0000-00-00 00:00:00'),(1491,0,0,2651,3553,0,166,'2025-11-17','OD','BP','104/72','mo','2025-11-19 09:02:41','','0000-00-00 00:00:00'),(1492,0,0,2651,3553,0,166,'2025-11-17','OD','RR','18','mo','2025-11-19 09:02:49','','0000-00-00 00:00:00'),(1493,0,0,2711,3651,2641,0,'2025-11-19','OA','BP','134/86','drarchit','2025-11-19 11:49:09','','0000-00-00 00:00:00'),(1494,0,0,2676,3595,0,170,'2025-11-18','OA','TP','98.4','mo','2025-11-19 12:31:47','','0000-00-00 00:00:00'),(1495,0,0,2676,3595,0,170,'2025-11-18','OD','TP','98.2','mo','2025-11-19 12:31:48','','0000-00-00 00:00:00'),(1496,0,0,2676,3595,0,170,'2025-11-18','OD','PR','68','mo','2025-11-19 12:31:54','','0000-00-00 00:00:00'),(1497,0,0,2676,3595,0,170,'2025-11-18','OD','SpO2','98','mo','2025-11-19 12:31:58','','0000-00-00 00:00:00'),(1498,0,0,2676,3595,0,170,'2025-11-18','OD','BP','112/74','mo','2025-11-19 12:32:07','','0000-00-00 00:00:00'),(1499,0,0,2676,3595,0,170,'2025-11-18','OD','RR','20','mo','2025-11-19 12:32:08','','0000-00-00 00:00:00'),(1500,0,0,2716,3659,2646,0,'2025-11-19','OA','BP','132/78','drarchit','2025-11-19 12:47:44','','0000-00-00 00:00:00'),(1501,0,0,2718,3661,2648,0,'2025-11-19','OA','BP','132/78','drarchit','2025-11-19 12:54:31','','0000-00-00 00:00:00'),(1502,0,0,1313,3662,1274,0,'2025-11-19','OA','BP','132/78','drarchit','2025-11-19 13:06:51','drarchit','2025-11-19 13:06:55'),(1503,0,0,1313,3662,1274,0,'2025-11-19','OA','PR','158','drarchit','2025-11-19 13:06:55','','0000-00-00 00:00:00'),(1504,0,0,2717,3660,2647,0,'2025-11-19','OA','BP','134/86','drarchit','2025-11-19 13:08:55','','0000-00-00 00:00:00'),(1505,0,0,533,3674,508,0,'2025-11-19','OA','BP','158/88','drarchit','2025-11-19 13:15:33','drarchit','2025-11-19 13:16:11'),(1506,0,0,2220,3670,2165,0,'2025-11-19','OA','BP','134/86','drarchit','2025-11-19 13:22:42','','0000-00-00 00:00:00'),(1507,0,0,2710,3649,2640,0,'2025-11-19','OA','BP','132/78','drarchit','2025-11-19 13:25:27','','0000-00-00 00:00:00'),(1508,0,0,1495,3678,1454,0,'2025-11-19','OA','BP','132/78','drarchit','2025-11-19 13:32:21','','0000-00-00 00:00:00'),(1509,0,0,2729,3677,2659,0,'2025-11-19','OA','BP','134/86','drarchit','2025-11-19 13:35:51','','0000-00-00 00:00:00'),(1510,0,0,962,3685,931,0,'2025-11-19','OA','BP','134/86','drarchit','2025-11-19 13:56:13','','0000-00-00 00:00:00'),(1511,0,0,2706,3642,2636,0,'2025-11-19','OA','BP','132/78','drarchit','2025-11-19 14:09:33','','0000-00-00 00:00:00'),(1512,0,0,2748,3716,2679,0,'2025-11-19','OA','BP','110/78','drarchit','2025-11-19 18:28:04','drarchit','2025-11-19 18:28:08'),(1513,0,0,2748,3716,2679,0,'2025-11-19','OA','RBS','113','drarchit','2025-11-19 18:28:08','','0000-00-00 00:00:00'),(1514,0,0,2742,3706,2673,0,'2025-11-19','OA','BP','124/86','drarchit','2025-11-19 18:36:17','','0000-00-00 00:00:00'),(1515,0,0,2753,3724,2684,0,'2025-11-19','OA','BP','142/86','drarchit','2025-11-19 18:40:39','','0000-00-00 00:00:00'),(1516,0,0,2744,3708,2675,0,'2025-11-19','OA','BP','132/86','drarchit','2025-11-19 18:44:15','','0000-00-00 00:00:00'),(1517,0,0,2745,3710,2676,0,'2025-11-19','OA','BP','142/86','drarchit','2025-11-19 18:49:04','','0000-00-00 00:00:00'),(1518,0,0,2759,3732,2690,0,'2025-11-19','OA','BP','132/78','drarchit','2025-11-19 19:13:31','','0000-00-00 00:00:00'),(1519,0,0,2763,3743,2694,0,'2025-11-19','OA','BP','134/86','drarchit','2025-11-19 19:36:14','','0000-00-00 00:00:00'),(1520,0,0,2765,3745,2696,0,'2025-11-19','OA','BP','134/86','drarchit','2025-11-19 19:41:35','','0000-00-00 00:00:00'),(1521,0,0,2766,3746,2697,0,'2025-11-19','OA','BP','134/86','drarchit','2025-11-19 19:44:12','','0000-00-00 00:00:00'),(1522,0,0,2769,3749,2700,0,'2025-11-19','OA','BP','154/78','drarchit','2025-11-19 19:48:06','','0000-00-00 00:00:00'),(1523,0,0,2768,3748,2699,0,'2025-11-19','OA','BP','132/78','drarchit','2025-11-19 19:56:36','','0000-00-00 00:00:00'),(1524,0,0,2771,3751,2702,0,'2025-11-19','OA','BP','162/78','drarchit','2025-11-19 20:08:15','drarchit','2025-11-19 20:08:21'),(1525,0,0,2773,3754,2704,0,'2025-11-19','OA','BP','170/92','drarchit','2025-11-19 20:33:06','','0000-00-00 00:00:00'),(1526,0,0,2705,3641,0,175,'2025-11-19','OA','PR','87','mo','2025-11-19 21:40:08','','0000-00-00 00:00:00'),(1527,0,0,2705,3641,0,175,'2025-11-19','OA','SpO2','97','mo','2025-11-19 21:40:10','','0000-00-00 00:00:00'),(1528,0,0,2705,3641,0,175,'2025-11-19','OA','BP','138/90','mo','2025-11-19 21:40:21','','0000-00-00 00:00:00'),(1529,0,0,2693,3623,0,173,'2025-11-19','OA','SpO2','98','mo','2025-11-19 23:32:36','','0000-00-00 00:00:00'),(1530,0,0,2693,3623,0,173,'2025-11-19','OA','PR','87','mo','2025-11-19 23:32:40','','0000-00-00 00:00:00'),(1531,0,0,2693,3623,0,173,'2025-11-19','OA','BP','122/80','mo','2025-11-19 23:32:59','','0000-00-00 00:00:00'),(1532,0,0,2660,3566,0,167,'2025-11-18','OA','PR','92','mo','2025-11-20 00:37:23','','0000-00-00 00:00:00'),(1533,0,0,2660,3566,0,167,'2025-11-18','OA','BP','108/62','mo','2025-11-20 00:37:27','','0000-00-00 00:00:00'),(1534,0,0,2660,3566,0,167,'2025-11-18','OA','SpO2','98','mo','2025-11-20 00:37:42','','0000-00-00 00:00:00'),(1535,0,0,2705,3641,0,175,'2025-11-19','OD','PR','69','mo','2025-11-20 10:41:25','','0000-00-00 00:00:00'),(1536,0,0,2705,3641,0,175,'2025-11-19','OD','SpO2','99','mo','2025-11-20 10:41:27','','0000-00-00 00:00:00'),(1537,0,0,2705,3641,0,175,'2025-11-19','OD','BP','140/80','mo','2025-11-20 10:41:35','','0000-00-00 00:00:00'),(1538,0,0,2693,3623,0,173,'2025-11-19','OD','PR','80','mo','2025-11-20 10:46:09','','0000-00-00 00:00:00'),(1539,0,0,2693,3623,0,173,'2025-11-19','OD','SpO2','98','mo','2025-11-20 10:46:11','','0000-00-00 00:00:00'),(1540,0,0,2693,3623,0,173,'2025-11-19','OD','BP','110/70','mo','2025-11-20 10:46:20','','0000-00-00 00:00:00'),(1541,0,0,2792,3779,2721,0,'2025-11-20','OA','BP','138/78','drarchit','2025-11-20 11:14:17','','0000-00-00 00:00:00'),(1542,0,0,2794,3781,2723,0,'2025-11-20','OA','RBS','154','drarchit','2025-11-20 11:18:26','','0000-00-00 00:00:00'),(1543,0,0,2796,3787,2725,0,'2025-11-20','OA','BP','134/86','drarchit','2025-11-20 11:39:22','','0000-00-00 00:00:00'),(1544,0,0,2795,3786,2724,0,'2025-11-20','OA','BP','132//78','drarchit','2025-11-20 11:42:32','drarchit','2025-11-20 11:42:35'),(1545,0,0,2795,3786,2724,0,'2025-11-20','OA','RBS','125','drarchit','2025-11-20 11:42:35','','0000-00-00 00:00:00'),(1546,0,0,2798,3789,2727,0,'2025-11-20','OA','BP','134/86','drarchit','2025-11-20 11:48:28','','0000-00-00 00:00:00'),(1547,0,0,2343,3792,2286,0,'2025-11-20','OA','BP','142/88','drarchit','2025-11-20 11:53:49','','0000-00-00 00:00:00'),(1548,0,0,2499,3790,2728,0,'2025-11-20','OA','BP','134/86','drarchit','2025-11-20 12:02:16','','0000-00-00 00:00:00'),(1549,0,0,2800,3794,2730,0,'2025-11-20','OA','BP','134/86','drarchit','2025-11-20 12:06:31','','0000-00-00 00:00:00'),(1550,0,0,2777,3760,2707,0,'2025-11-20','OA','BP','162/94','drarchit','2025-11-20 12:12:58','drarchit','2025-11-20 12:13:25'),(1551,0,0,2802,3798,2732,0,'2025-11-20','OA','BP','134/86','drarchit','2025-11-20 12:20:22','','0000-00-00 00:00:00'),(1552,0,0,2675,3594,0,169,'2025-11-18','OD','PR','80','mo','2025-11-20 12:22:02','','0000-00-00 00:00:00'),(1553,0,0,2675,3594,0,169,'2025-11-18','OD','BP','130/80','mo','2025-11-20 12:22:08','','0000-00-00 00:00:00'),(1554,0,0,2675,3594,0,169,'2025-11-18','OD','SpO2','95','mo','2025-11-20 12:22:11','mo','2025-11-20 12:22:54'),(1555,0,0,2803,3799,2733,0,'2025-11-20','OA','BP','132/78','drarchit','2025-11-20 12:29:58','','0000-00-00 00:00:00'),(1556,0,0,2607,3468,0,161,'2025-11-16','OD','PR','88','mo','2025-11-20 12:53:13','','0000-00-00 00:00:00'),(1557,0,0,2607,3468,0,161,'2025-11-16','OD','SpO2','95','mo','2025-11-20 12:53:16','','0000-00-00 00:00:00'),(1558,0,0,2607,3468,0,161,'2025-11-16','OD','BP','110/70','mo','2025-11-20 12:53:19','','0000-00-00 00:00:00'),(1559,0,0,2775,3757,2706,0,'2025-11-20','OA','BP','134/78','drarchit','2025-11-20 12:55:35','','0000-00-00 00:00:00'),(1560,0,0,2673,3591,0,168,'2025-11-18','OD','TP','97.6','mo','2025-11-20 13:00:09','','0000-00-00 00:00:00'),(1561,0,0,2673,3591,0,168,'2025-11-18','OD','PR','80','mo','2025-11-20 13:00:11','','0000-00-00 00:00:00'),(1562,0,0,2673,3591,0,168,'2025-11-18','OD','SpO2','98','mo','2025-11-20 13:00:14','','0000-00-00 00:00:00'),(1563,0,0,2673,3591,0,168,'2025-11-18','OD','BP','124/70','mo','2025-11-20 13:00:20','','0000-00-00 00:00:00'),(1564,0,0,2673,3591,0,168,'2025-11-18','OD','RR','16','mo','2025-11-20 13:00:24','','0000-00-00 00:00:00'),(1565,0,0,2673,3591,0,168,'2025-11-18','OD','RBS','126','mo','2025-11-20 13:00:30','','0000-00-00 00:00:00'),(1566,0,0,2806,3803,2736,0,'2025-11-20','OA','BP','134/86','drarchit','2025-11-20 13:03:45','','0000-00-00 00:00:00'),(1567,0,0,2804,3801,2734,0,'2025-11-20','OA','BP','144/78','drarchit','2025-11-20 13:06:56','drarchit','2025-11-20 14:04:15'),(1568,0,0,1284,3758,1243,0,'2025-11-20','OA','BP','134//78','drarchit','2025-11-20 13:11:20','','0000-00-00 00:00:00'),(1569,0,0,2809,3806,2739,0,'2025-11-20','OA','BP','134/86','drarchit','2025-11-20 13:27:59','','0000-00-00 00:00:00'),(1570,0,0,2774,3756,2705,0,'2025-11-20','OA','BP','134/86','drarchit','2025-11-20 13:32:55','','0000-00-00 00:00:00'),(1571,0,0,645,3800,615,0,'2025-11-20','OA','BP','134/86','drarchit','2025-11-20 13:36:07','','0000-00-00 00:00:00'),(1572,0,0,391,3814,373,0,'2025-11-20','OA','BP','142/78','drarchit','2025-11-20 13:46:49','','0000-00-00 00:00:00'),(1573,0,0,2660,3566,0,167,'2025-11-18','OD','PR','80','mo','2025-11-20 14:09:33','','0000-00-00 00:00:00'),(1574,0,0,2660,3566,0,167,'2025-11-18','OD','SpO2','98','mo','2025-11-20 14:09:33','','0000-00-00 00:00:00'),(1575,0,0,2660,3566,0,167,'2025-11-18','OD','BP','112/80','mo','2025-11-20 14:09:41','','0000-00-00 00:00:00'),(1576,0,0,2813,3811,2743,0,'2025-11-20','OA','BP','134/78','drarchit','2025-11-20 14:16:04','','0000-00-00 00:00:00'),(1577,0,0,204,3817,191,0,'2025-11-20','OA','BP','138/78','drarchit','2025-11-20 14:21:44','drarchit','2025-11-20 14:22:44'),(1578,0,0,2824,3835,2754,0,'2025-11-20','OA','BP','142/86','drarchit','2025-11-20 18:18:18','','0000-00-00 00:00:00'),(1579,0,0,2825,3837,2755,0,'2025-11-20','OA','BP','164/86','drarchit','2025-11-20 18:27:07','drarchit','2025-11-20 20:10:45'),(1580,0,0,2828,3845,2758,0,'2025-11-20','OA','BP','132/78','drarchit','2025-11-20 18:35:36','','0000-00-00 00:00:00'),(1581,0,0,2830,3850,2760,0,'2025-11-20','OA','BP','164/86','drarchit','2025-11-20 18:58:47','','0000-00-00 00:00:00'),(1582,0,0,2776,3759,0,176,'2025-11-20','OA','PR','76','mo','2025-11-20 19:02:33','','0000-00-00 00:00:00'),(1583,0,0,2776,3759,0,176,'2025-11-20','OA','SpO2','98','mo','2025-11-20 19:02:35','','0000-00-00 00:00:00'),(1584,0,0,2776,3759,0,176,'2025-11-20','OA','BP','180/100','mo','2025-11-20 19:02:39','','0000-00-00 00:00:00'),(1585,0,0,2776,3759,0,176,'2025-11-20','OA','RR','18','mo','2025-11-20 19:02:47','','0000-00-00 00:00:00'),(1586,0,0,2776,3759,0,176,'2025-11-20','OD','PR','74','mo','2025-11-20 19:02:51','','0000-00-00 00:00:00'),(1587,0,0,2776,3759,0,176,'2025-11-20','OD','SpO2','98','mo','2025-11-20 19:02:54','','0000-00-00 00:00:00'),(1588,0,0,2776,3759,0,176,'2025-11-20','OD','BP','142/90','mo','2025-11-20 19:02:57','','0000-00-00 00:00:00'),(1589,0,0,2776,3759,0,176,'2025-11-20','OD','RR','20','mo','2025-11-20 19:03:00','','0000-00-00 00:00:00'),(1590,0,0,2831,3852,2761,0,'2025-11-20','OA','BP','132/78','drarchit','2025-11-20 19:10:06','','0000-00-00 00:00:00'),(1591,0,0,2612,3474,0,164,'2025-11-16','OD','PR','85','mo','2025-11-20 20:34:50','','0000-00-00 00:00:00'),(1592,0,0,2612,3474,0,164,'2025-11-16','OD','SpO2','96','mo','2025-11-20 20:34:54','','0000-00-00 00:00:00'),(1593,0,0,2612,3474,0,164,'2025-11-16','OD','BP','138/80','mo','2025-11-20 20:35:15','','0000-00-00 00:00:00'),(1594,0,0,2691,3621,0,172,'2025-11-18','OA','PR','68','mo','2025-11-20 23:12:07','','0000-00-00 00:00:00'),(1595,0,0,2691,3621,0,172,'2025-11-18','OA','SpO2','99','mo','2025-11-20 23:12:10','','0000-00-00 00:00:00'),(1596,0,0,2691,3621,0,172,'2025-11-18','OA','BP','160/100','mo','2025-11-20 23:12:20','','0000-00-00 00:00:00'),(1597,0,0,2839,3871,2770,0,'2025-11-21','OA','BP','134/86','drarchit','2025-11-21 11:53:59','','0000-00-00 00:00:00'),(1598,0,0,2836,3867,2766,0,'2025-11-21','OA','BP','124/86','drarchit','2025-11-21 11:57:46','','0000-00-00 00:00:00'),(1599,0,0,1969,3882,1921,0,'2025-11-21','OA','BP','134/78','drarchit','2025-11-21 12:02:43','','0000-00-00 00:00:00'),(1600,0,0,2855,3893,2786,0,'2025-11-21','OA','BP','132/78','drarchit','2025-11-21 12:18:45','','0000-00-00 00:00:00'),(1601,0,0,2848,3884,2779,0,'2025-11-21','OA','BP','132/78','drarchit','2025-11-21 12:26:49','','0000-00-00 00:00:00'),(1602,0,0,2853,3890,2784,0,'2025-11-21','OA','BP','142/86','drarchit','2025-11-21 12:37:46','','0000-00-00 00:00:00'),(1603,0,0,2856,3896,2788,0,'2025-11-21','OA','BP','132/78','drarchit','2025-11-21 12:47:32','','0000-00-00 00:00:00'),(1604,0,0,2506,3894,2787,0,'2025-11-21','OA','BP','132/78','drarchit','2025-11-21 12:53:59','drarchit','2025-11-21 12:54:37'),(1605,0,0,2241,3862,2764,0,'2025-11-21','OA','BP','124/86','drarchit','2025-11-21 13:06:40','','0000-00-00 00:00:00'),(1606,0,0,1674,3810,1629,0,'2025-11-20','OA','BP','154/86','drarchit','2025-11-21 13:18:26','','0000-00-00 00:00:00'),(1607,0,0,2863,3905,2794,0,'2025-11-21','OA','BP','132/78','drarchit','2025-11-21 13:34:35','drarchit','2025-11-21 13:34:40'),(1608,0,0,2863,3905,2794,0,'2025-11-21','OA','RBS','240','drarchit','2025-11-21 13:34:40','','0000-00-00 00:00:00'),(1609,0,0,2871,3916,2802,0,'2025-11-21','OA','BP','132/78','drarchit','2025-11-21 18:08:02','','0000-00-00 00:00:00'),(1610,0,0,2877,3926,2808,0,'2025-11-21','OA','BP','132/78','drarchit','2025-11-21 18:15:24','','0000-00-00 00:00:00'),(1611,0,0,2874,3920,2805,0,'2025-11-21','OA','BP','164/88','drarchit','2025-11-21 18:27:13','','0000-00-00 00:00:00'),(1612,0,0,2779,3763,0,177,'2025-11-20','OA','TP','98.2','mo','2025-11-21 18:30:34','','0000-00-00 00:00:00'),(1613,0,0,2779,3763,0,177,'2025-11-20','OA','PR','87','mo','2025-11-21 18:30:37','','0000-00-00 00:00:00'),(1614,0,0,2779,3763,0,177,'2025-11-20','OA','SpO2','94','mo','2025-11-21 18:30:46','mo','2025-11-21 18:31:11'),(1615,0,0,2779,3763,0,177,'2025-11-20','OA','BP','116/80','mo','2025-11-21 18:30:56','mo','2025-11-21 18:31:27'),(1616,0,0,2779,3763,0,177,'2025-11-20','OA','RR','24','mo','2025-11-21 18:31:07','','0000-00-00 00:00:00'),(1617,0,0,2779,3763,0,177,'2025-11-20','OD','TP','98.4','mo','2025-11-21 18:31:28','','0000-00-00 00:00:00'),(1618,0,0,2779,3763,0,177,'2025-11-20','OD','PR','68','mo','2025-11-21 18:31:47','','0000-00-00 00:00:00'),(1619,0,0,2779,3763,0,177,'2025-11-20','OD','SpO2','96','mo','2025-11-21 18:31:51','','0000-00-00 00:00:00'),(1620,0,0,2779,3763,0,177,'2025-11-20','OD','BP','110/70','mo','2025-11-21 18:32:11','','0000-00-00 00:00:00'),(1621,0,0,2779,3763,0,177,'2025-11-20','OD','RR','20','mo','2025-11-21 18:32:15','','0000-00-00 00:00:00'),(1622,0,0,2852,3889,2783,0,'2025-11-21','OA','BP','134/86','drarchit','2025-11-21 19:01:04','','0000-00-00 00:00:00'),(1623,0,0,2570,3938,2513,0,'2025-11-21','OA','BP','134/86','drarchit','2025-11-21 19:14:59','','0000-00-00 00:00:00'),(1624,0,0,2884,3941,2815,0,'2025-11-21','OA','BP','142/86','drarchit','2025-11-21 19:24:11','','0000-00-00 00:00:00'),(1625,0,0,2885,3943,2816,0,'2025-11-21','OA','BP','132/86','drarchit','2025-11-21 19:33:48','','0000-00-00 00:00:00'),(1626,0,0,2883,3939,2814,0,'2025-11-21','OA','BP','134/86','drarchit','2025-11-21 19:39:17','','0000-00-00 00:00:00'),(1627,0,0,714,3944,1085,0,'2025-11-21','OA','BP','134/86','drarchit','2025-11-21 19:44:54','','0000-00-00 00:00:00'),(1628,0,0,1463,3922,1422,0,'2025-11-21','OA','BP','132/78','drarchit','2025-11-21 19:49:41','','0000-00-00 00:00:00'),(1629,0,0,2685,3611,0,171,'2025-11-18','OA','PR','102','mo','2025-11-22 00:36:15','','0000-00-00 00:00:00'),(1630,0,0,2685,3611,0,171,'2025-11-18','OA','SpO2','98','mo','2025-11-22 00:36:19','','0000-00-00 00:00:00'),(1631,0,0,2685,3611,0,171,'2025-11-18','OA','BP','128/90','mo','2025-11-22 00:36:27','mo','2025-12-02 15:47:27'),(1632,0,0,2685,3611,0,171,'2025-11-18','OA','RR','18','mo','2025-11-22 00:36:31','','0000-00-00 00:00:00'),(1633,0,0,2243,2879,0,146,'2025-11-10','OA','PR','114','mo','2025-11-22 00:44:17','','0000-00-00 00:00:00'),(1634,0,0,2243,2879,0,146,'2025-11-10','OA','SpO2','93','mo','2025-11-22 00:44:20','','0000-00-00 00:00:00'),(1635,0,0,2243,2879,0,146,'2025-11-10','OA','BP','130/86','mo','2025-11-22 00:44:24','','0000-00-00 00:00:00'),(1636,0,0,2243,2879,0,146,'2025-11-10','OA','RR','24','mo','2025-11-22 00:44:27','','0000-00-00 00:00:00'),(1637,0,0,2887,3946,2818,0,'2025-11-21','OA','BP','110/80','drarchit','2025-11-22 11:16:09','','0000-00-00 00:00:00'),(1638,0,0,2895,3957,2825,0,'2025-11-22','OA','BP','110/80','drarchit','2025-11-22 11:17:03','','0000-00-00 00:00:00'),(1639,0,0,2910,3975,2838,0,'2025-11-22','OA','BP','112/78','drarchit','2025-11-22 11:55:05','','0000-00-00 00:00:00'),(1640,0,0,2909,3974,2837,0,'2025-11-22','OA','BP','138/72','drarchit','2025-11-22 12:05:14','','0000-00-00 00:00:00'),(1641,0,0,2539,3348,0,159,'2025-11-14','OD','PR','79','mo','2025-11-22 12:58:38','','0000-00-00 00:00:00'),(1642,0,0,2539,3348,0,159,'2025-11-14','OD','SpO2','96','mo','2025-11-22 12:59:08','','0000-00-00 00:00:00'),(1643,0,0,2539,3348,0,159,'2025-11-14','OD','BP','134/82','mo','2025-11-22 13:00:12','','0000-00-00 00:00:00'),(1644,0,0,2912,3978,2840,0,'2025-11-22','OA','BP','132/78','drarchit','2025-11-22 13:14:20','','0000-00-00 00:00:00'),(1645,0,0,2903,3966,2831,0,'2025-11-22','OA','BP','132/78','drarchit','2025-11-22 13:36:10','','0000-00-00 00:00:00'),(1646,0,0,2899,3962,0,184,'2025-11-22','OA','TP','98.4','mo','2025-11-22 18:47:47','','0000-00-00 00:00:00'),(1647,0,0,2899,3962,0,184,'2025-11-22','OA','PR','150','mo','2025-11-22 18:47:51','','0000-00-00 00:00:00'),(1648,0,0,2899,3962,0,184,'2025-11-22','OA','SpO2','89','mo','2025-11-22 18:47:56','','0000-00-00 00:00:00'),(1649,0,0,2899,3962,0,184,'2025-11-22','OA','BP','130/80','mo','2025-11-22 18:47:57','','0000-00-00 00:00:00'),(1650,0,0,2899,3962,0,184,'2025-11-22','OA','RR','20','mo','2025-11-22 18:48:03','','0000-00-00 00:00:00'),(1651,0,0,2691,3621,0,172,'2025-11-18','OD','SpO2','98','mo','2025-11-23 12:47:48','mo','2025-11-23 12:48:02'),(1652,0,0,2691,3621,0,172,'2025-11-18','OD','BP','130/80','mo','2025-11-23 12:47:52','','0000-00-00 00:00:00'),(1653,0,0,2691,3621,0,172,'2025-11-18','OD','PR','97','mo','2025-11-23 12:48:00','','0000-00-00 00:00:00'),(1654,0,0,2611,3473,0,163,'2025-11-16','OD','SpO2','98','mo','2025-11-23 13:07:54','','0000-00-00 00:00:00'),(1655,0,0,2611,3473,0,163,'2025-11-16','OD','BP','114/70','mo','2025-11-23 13:08:15','','0000-00-00 00:00:00'),(1656,0,0,2611,3473,0,163,'2025-11-16','OD','PR','78','mo','2025-11-23 13:08:21','','0000-00-00 00:00:00'),(1657,0,0,2933,4011,0,186,'2025-11-23','OA','BP','122/80','mo','2025-11-23 14:26:14','','0000-00-00 00:00:00'),(1658,0,0,2933,4011,0,186,'2025-11-23','OA','SpO2','98','mo','2025-11-23 14:26:14','','0000-00-00 00:00:00'),(1659,0,0,2933,4011,0,186,'2025-11-23','OA','PR','75','mo','2025-11-23 14:26:22','','0000-00-00 00:00:00'),(1660,0,0,2933,4011,0,186,'2025-11-23','OD','SpO2','99','mo','2025-11-23 14:28:34','','0000-00-00 00:00:00'),(1661,0,0,2933,4011,0,186,'2025-11-23','OD','BP','110/70','mo','2025-11-23 14:28:38','mo','2025-11-24 12:26:25'),(1662,0,0,2933,4011,0,186,'2025-11-23','OD','PR','78','mo','2025-11-23 14:28:39','','0000-00-00 00:00:00'),(1663,0,0,2939,4019,0,189,'2025-11-23','OA','TP','98.4','mo','2025-11-24 00:56:54','','0000-00-00 00:00:00'),(1664,0,0,2939,4019,0,189,'2025-11-23','OA','PR','94','mo','2025-11-24 00:56:58','','0000-00-00 00:00:00'),(1665,0,0,2939,4019,0,189,'2025-11-23','OA','SpO2','98','mo','2025-11-24 00:56:59','','0000-00-00 00:00:00'),(1666,0,0,2939,4019,0,189,'2025-11-23','OA','BP','110/70','mo','2025-11-24 00:57:02','','0000-00-00 00:00:00'),(1667,0,0,2939,4019,0,189,'2025-11-23','OA','RR','20','mo','2025-11-24 00:57:23','','0000-00-00 00:00:00'),(1668,0,0,2893,3954,0,182,'2025-11-21','OA','PR','106','mo','2025-11-24 01:08:32','','0000-00-00 00:00:00'),(1669,0,0,2893,3954,0,182,'2025-11-21','OA','SpO2','96','mo','2025-11-24 01:08:34','','0000-00-00 00:00:00'),(1670,0,0,2893,3954,0,182,'2025-11-21','OA','BP','160/90','mo','2025-11-24 01:08:41','','0000-00-00 00:00:00'),(1671,0,0,2893,3954,0,182,'2025-11-21','OA','RR','26','mo','2025-11-24 01:08:44','','0000-00-00 00:00:00'),(1672,0,0,2893,3954,0,182,'2025-11-21','OA','TP','102','mo','2025-11-24 01:08:52','','0000-00-00 00:00:00'),(1673,0,0,2699,3630,0,174,'2025-11-19','OA','TP','99.5','mo','2025-11-24 10:40:11','','0000-00-00 00:00:00'),(1674,0,0,2699,3630,0,174,'2025-11-19','OA','PR','64','mo','2025-11-24 10:40:14','','0000-00-00 00:00:00'),(1675,0,0,2699,3630,0,174,'2025-11-19','OA','SpO2','99','mo','2025-11-24 10:40:17','','0000-00-00 00:00:00'),(1676,0,0,2699,3630,0,174,'2025-11-19','OA','BP','110/70','mo','2025-11-24 10:40:24','','0000-00-00 00:00:00'),(1677,0,0,2699,3630,0,174,'2025-11-19','OA','RR','24','mo','2025-11-24 10:40:29','','0000-00-00 00:00:00'),(1678,0,0,2945,4026,2867,0,'2025-11-24','OA','BP','134/86','drarchit','2025-11-24 11:49:21','','0000-00-00 00:00:00'),(1679,0,0,2944,4025,2866,0,'2025-11-24','OA','BP','124/78','drarchit','2025-11-24 11:53:26','','0000-00-00 00:00:00'),(1680,0,0,2963,4058,2886,0,'2025-11-24','OA','BP','142/86','drarchit','2025-11-24 11:59:11','','0000-00-00 00:00:00'),(1681,0,0,2941,4021,2863,0,'2025-11-24','OA','BP','134/86','drarchit','2025-11-24 12:02:55','','0000-00-00 00:00:00'),(1682,0,0,2957,4049,2881,0,'2025-11-24','OA','BP','134/86','drarchit','2025-11-24 12:11:33','','0000-00-00 00:00:00'),(1683,0,0,2968,4066,2891,0,'2025-11-24','OA','BP','132/78','drarchit','2025-11-24 12:22:49','','0000-00-00 00:00:00'),(1684,0,0,22,4079,21,0,'2025-11-24','OA','BP','132/78','drarchit','2025-11-24 12:26:40','','0000-00-00 00:00:00'),(1685,0,0,2933,4011,0,186,'2025-11-23','OD','RR','20','mo','2025-11-24 12:26:58','','0000-00-00 00:00:00'),(1686,0,0,2970,4069,2893,0,'2025-11-24','OA','BP','124/86','drarchit','2025-11-24 12:31:06','','0000-00-00 00:00:00'),(1687,0,0,2893,3954,0,182,'2025-11-21','OD','PR','64','mo','2025-11-24 12:36:30','','0000-00-00 00:00:00'),(1688,0,0,2893,3954,0,182,'2025-11-21','OD','SpO2','98','mo','2025-11-24 12:36:32','','0000-00-00 00:00:00'),(1689,0,0,2893,3954,0,182,'2025-11-21','OD','BP','110/70','mo','2025-11-24 12:36:36','','0000-00-00 00:00:00'),(1690,0,0,2893,3954,0,182,'2025-11-21','OD','RR','22','mo','2025-11-24 12:36:39','','0000-00-00 00:00:00'),(1691,0,0,2975,4075,2898,0,'2025-11-24','OA','BP','134/86','drarchit','2025-11-24 12:36:47','','0000-00-00 00:00:00'),(1692,0,0,2973,4073,2896,0,'2025-11-24','OA','BP','168/88','drarchit','2025-11-24 12:53:03','','0000-00-00 00:00:00'),(1693,0,0,2950,4035,2873,0,'2025-11-24','OA','BP','142/86','drarchit','2025-11-24 13:38:16','','0000-00-00 00:00:00'),(1694,0,0,2979,4083,2902,0,'2025-11-24','OA','BP','134/86','drarchit','2025-11-24 13:44:22','','0000-00-00 00:00:00'),(1695,0,0,2985,4092,0,193,'2025-11-24','OA','PR','74','mo','2025-11-24 16:20:25','','0000-00-00 00:00:00'),(1696,0,0,2985,4092,0,193,'2025-11-24','OA','SpO2','98','mo','2025-11-24 16:20:28','','0000-00-00 00:00:00'),(1697,0,0,2985,4092,0,193,'2025-11-24','OA','TP','98.4','mo','2025-11-24 16:20:33','','0000-00-00 00:00:00'),(1698,0,0,2985,4092,0,193,'2025-11-24','OA','BP','140/84','mo','2025-11-24 16:20:37','','0000-00-00 00:00:00'),(1699,0,0,2985,4092,0,193,'2025-11-24','OA','RR','22','mo','2025-11-24 16:21:27','','0000-00-00 00:00:00'),(1700,0,0,2956,4047,0,191,'2025-11-24','OA','TP','98.4','mo','2025-11-24 16:37:45','','0000-00-00 00:00:00'),(1701,0,0,2956,4047,0,191,'2025-11-24','OA','PR','118','mo','2025-11-24 16:37:54','','0000-00-00 00:00:00'),(1702,0,0,2956,4047,0,191,'2025-11-24','OA','BP','100/70','mo','2025-11-24 16:38:09','','0000-00-00 00:00:00'),(1703,0,0,2956,4047,0,191,'2025-11-24','OA','SpO2','91','mo','2025-11-24 16:38:14','','0000-00-00 00:00:00'),(1704,0,0,2956,4047,0,191,'2025-11-24','OA','RR','20','mo','2025-11-24 16:38:18','','0000-00-00 00:00:00'),(1705,0,0,2940,4020,0,190,'2025-11-24','OA','TP','98.4','mo','2025-11-24 16:57:27','','0000-00-00 00:00:00'),(1706,0,0,2940,4020,0,190,'2025-11-24','OA','PR','84','mo','2025-11-24 16:57:31','','0000-00-00 00:00:00'),(1707,0,0,2940,4020,0,190,'2025-11-24','OA','SpO2','98','mo','2025-11-24 16:57:32','','0000-00-00 00:00:00'),(1708,0,0,2940,4020,0,190,'2025-11-24','OA','BP','140/84','mo','2025-11-24 16:57:38','','0000-00-00 00:00:00'),(1709,0,0,2940,4020,0,190,'2025-11-24','OA','RR','20','mo','2025-11-24 16:57:55','','0000-00-00 00:00:00'),(1710,0,0,1403,4087,1363,0,'2025-11-24','OA','BP','134/86','drarchit','2025-11-24 18:04:06','','0000-00-00 00:00:00'),(1711,0,0,2997,4117,2920,0,'2025-11-24','OA','BP','134/86','drarchit','2025-11-24 18:12:08','','0000-00-00 00:00:00'),(1712,0,0,2501,4121,2444,0,'2025-11-24','OA','BP','138/82','drarchit','2025-11-24 18:34:14','','0000-00-00 00:00:00'),(1713,0,0,3004,4132,2927,0,'2025-11-24','OA','BP','168/88','drarchit','2025-11-24 18:56:44','','0000-00-00 00:00:00'),(1714,0,0,2938,4018,0,188,'2025-11-23','OA','TP','98.0','mo','2025-11-24 19:00:09','mo','2025-11-24 19:01:15'),(1715,0,0,2938,4018,0,188,'2025-11-23','OA','PR','90','mo','2025-11-24 19:00:13','mo','2025-11-24 19:01:19'),(1716,0,0,2938,4018,0,188,'2025-11-23','OA','SpO2','98','mo','2025-11-24 19:00:15','mo','2025-11-24 19:01:29'),(1717,0,0,2938,4018,0,188,'2025-11-23','OA','BP','110/70','mo','2025-11-24 19:00:18','','0000-00-00 00:00:00'),(1718,0,0,2938,4018,0,188,'2025-11-23','OA','RR','22','mo','2025-11-24 19:00:23','','0000-00-00 00:00:00'),(1719,0,0,2938,4018,0,188,'2025-11-23','OA','RBS','90','mo','2025-11-24 19:01:32','','0000-00-00 00:00:00'),(1720,0,0,2938,4018,0,188,'2025-11-23','OD','TP','98.0','mo','2025-11-24 19:01:39','','0000-00-00 00:00:00'),(1721,0,0,2938,4018,0,188,'2025-11-23','OD','PR','80','mo','2025-11-24 19:01:45','','0000-00-00 00:00:00'),(1722,0,0,2938,4018,0,188,'2025-11-23','OD','SpO2','98','mo','2025-11-24 19:01:48','','0000-00-00 00:00:00'),(1723,0,0,2938,4018,0,188,'2025-11-23','OD','BP','117/82','mo','2025-11-24 19:02:00','','0000-00-00 00:00:00'),(1724,0,0,2938,4018,0,188,'2025-11-23','OD','RR','22','mo','2025-11-24 19:02:07','','0000-00-00 00:00:00'),(1725,0,0,3006,4136,2929,0,'2025-11-24','OA','BP','142/86','drarchit','2025-11-24 19:15:21','','0000-00-00 00:00:00'),(1726,0,0,3012,4147,2935,0,'2025-11-24','OA','BP','132/78','drarchit','2025-11-24 19:41:21','','0000-00-00 00:00:00'),(1727,0,0,3015,4151,2938,0,'2025-11-24','OA','BP','132/78','drarchit','2025-11-24 19:44:49','','0000-00-00 00:00:00'),(1728,0,0,2932,4010,0,185,'2025-11-23','OA','PR','62','mo','2025-11-24 21:11:57','','0000-00-00 00:00:00'),(1729,0,0,2932,4010,0,185,'2025-11-23','OA','BP','150/100','mo','2025-11-24 21:12:00','','0000-00-00 00:00:00'),(1730,0,0,2932,4010,0,185,'2025-11-23','OA','RR','32','mo','2025-11-24 21:12:09','','0000-00-00 00:00:00'),(1731,0,0,2932,4010,0,185,'2025-11-23','OD','SpO2','95','mo','2025-11-24 21:18:35','','0000-00-00 00:00:00'),(1732,0,0,2932,4010,0,185,'2025-11-23','OD','BP','150/90','mo','2025-11-24 21:18:39','','0000-00-00 00:00:00'),(1733,0,0,2932,4010,0,185,'2025-11-23','OD','PR','63','mo','2025-11-24 21:18:43','','0000-00-00 00:00:00'),(1734,0,0,2932,4010,0,185,'2025-11-23','OD','RR','24','mo','2025-11-24 21:18:46','','0000-00-00 00:00:00'),(1735,0,0,2932,4010,0,185,'2025-11-23','OD','RBS','127','mo','2025-11-24 21:18:57','','0000-00-00 00:00:00'),(1736,0,0,2932,4010,0,185,'2025-11-23','OA','RBS','135','mo','2025-11-24 21:19:05','','0000-00-00 00:00:00'),(1737,0,0,2699,3630,0,174,'2025-11-19','OD','TP','98.2','mo','2025-11-24 22:00:16','','0000-00-00 00:00:00'),(1738,0,0,2699,3630,0,174,'2025-11-19','OD','PR','67','mo','2025-11-24 22:00:20','','0000-00-00 00:00:00'),(1739,0,0,2699,3630,0,174,'2025-11-19','OD','SpO2','96','mo','2025-11-24 22:00:23','','0000-00-00 00:00:00'),(1740,0,0,2699,3630,0,174,'2025-11-19','OD','BP','126/82','mo','2025-11-24 22:00:28','','0000-00-00 00:00:00'),(1741,0,0,2699,3630,0,174,'2025-11-19','OD','RR','20','mo','2025-11-24 22:00:29','','0000-00-00 00:00:00'),(1742,0,0,2959,4054,0,192,'2025-11-24','OA','TP','98.2','mo','2025-11-25 01:14:19','','0000-00-00 00:00:00'),(1743,0,0,2959,4054,0,192,'2025-11-24','OA','PR','80','mo','2025-11-25 01:14:22','','0000-00-00 00:00:00'),(1744,0,0,2959,4054,0,192,'2025-11-24','OA','SpO2','98','mo','2025-11-25 01:14:25','','0000-00-00 00:00:00'),(1745,0,0,2959,4054,0,192,'2025-11-24','OA','BP','110/70','mo','2025-11-25 01:14:28','','0000-00-00 00:00:00'),(1746,0,0,2959,4054,0,192,'2025-11-24','OA','RR','20','mo','2025-11-25 01:14:29','','0000-00-00 00:00:00'),(1747,0,0,2940,4020,0,190,'2025-11-24','OD','SpO2','98','mo','2025-11-25 11:45:03','','0000-00-00 00:00:00'),(1748,0,0,2940,4020,0,190,'2025-11-24','OD','BP','114/70','mo','2025-11-25 11:45:05','','0000-00-00 00:00:00'),(1749,0,0,2940,4020,0,190,'2025-11-24','OD','RR','22','mo','2025-11-25 11:45:07','','0000-00-00 00:00:00'),(1750,0,0,2940,4020,0,190,'2025-11-24','OD','PR','78','mo','2025-11-25 11:45:10','','0000-00-00 00:00:00'),(1751,0,0,2899,3962,0,184,'2025-11-22','OD','BP','104/60','mo','2025-11-25 11:55:10','','0000-00-00 00:00:00'),(1752,0,0,2899,3962,0,184,'2025-11-22','OD','RR','24','mo','2025-11-25 11:55:12','','0000-00-00 00:00:00'),(1753,0,0,2899,3962,0,184,'2025-11-22','OD','PR','100','mo','2025-11-25 11:55:31','','0000-00-00 00:00:00'),(1754,0,0,2899,3962,0,184,'2025-11-22','OD','RBS','176','mo','2025-11-25 11:55:35','','0000-00-00 00:00:00'),(1755,0,0,3035,4181,2956,0,'2025-11-25','OA','BP','142/82','drarchit','2025-11-25 12:10:11','','0000-00-00 00:00:00'),(1756,0,0,2993,4103,2916,0,'2025-11-24','OA','BP','134/86','drarchit','2025-11-25 12:26:50','','0000-00-00 00:00:00'),(1757,0,0,3045,4193,2966,0,'2025-11-25','OA','BP','134/86','drarchit','2025-11-25 12:35:08','drarchit','2025-11-25 12:35:24'),(1758,0,0,3045,4193,2966,0,'2025-11-25','OA','RBS','115','drarchit','2025-11-25 12:35:24','','0000-00-00 00:00:00'),(1759,0,0,2607,4194,2967,0,'2025-11-25','OA','BP','138/76','drarchit','2025-11-25 12:52:59','','0000-00-00 00:00:00'),(1760,0,0,3022,4163,2943,0,'2025-11-25','OA','BP','138/76','drarchit','2025-11-25 13:05:34','','0000-00-00 00:00:00'),(1761,0,0,3049,4202,2971,0,'2025-11-25','OA','BP','132/78','drarchit','2025-11-25 13:12:24','','0000-00-00 00:00:00'),(1762,0,0,3025,4171,2946,0,'2025-11-25','OA','BP','134/86','drarchit','2025-11-25 13:16:41','','0000-00-00 00:00:00'),(1763,0,0,3031,4177,2952,0,'2025-11-25','OA','BP','142/78','drarchit','2025-11-25 13:39:55','','0000-00-00 00:00:00'),(1764,0,0,3030,4176,2951,0,'2025-11-25','OA','BP','134/86','drarchit','2025-11-25 13:42:13','','0000-00-00 00:00:00'),(1765,0,0,2985,4092,0,193,'2025-11-24','OD','SpO2','95','mo','2025-11-25 13:57:30','','0000-00-00 00:00:00'),(1766,0,0,2985,4092,0,193,'2025-11-24','OD','BP','140/90','mo','2025-11-25 13:57:35','','0000-00-00 00:00:00'),(1767,0,0,2985,4092,0,193,'2025-11-24','OD','PR','80','mo','2025-11-25 13:58:14','','0000-00-00 00:00:00'),(1768,0,0,3021,4158,0,196,'2025-11-25','OA','TP','98.4','mo','2025-11-25 16:34:01','','0000-00-00 00:00:00'),(1769,0,0,3021,4158,0,196,'2025-11-25','OA','PR','71','mo','2025-11-25 16:34:05','','0000-00-00 00:00:00'),(1770,0,0,3021,4158,0,196,'2025-11-25','OA','SpO2','80','mo','2025-11-25 16:34:08','','0000-00-00 00:00:00'),(1771,0,0,3021,4158,0,196,'2025-11-25','OA','BP','154/90','mo','2025-11-25 16:34:15','','0000-00-00 00:00:00'),(1772,0,0,3021,4158,0,196,'2025-11-25','OA','RR','24','mo','2025-11-25 16:34:19','','0000-00-00 00:00:00'),(1773,0,0,2380,4166,0,199,'2025-11-25','OA','TP','98.2','mo','2025-11-25 16:50:06','','0000-00-00 00:00:00'),(1774,0,0,2380,4166,0,199,'2025-11-25','OA','PR','82','mo','2025-11-25 16:50:09','','0000-00-00 00:00:00'),(1775,0,0,2380,4166,0,199,'2025-11-25','OA','SpO2','97','mo','2025-11-25 16:50:13','','0000-00-00 00:00:00'),(1776,0,0,2380,4166,0,199,'2025-11-25','OA','BP','140/84','mo','2025-11-25 16:50:20','','0000-00-00 00:00:00'),(1777,0,0,2380,4166,0,199,'2025-11-25','OA','RR','20','mo','2025-11-25 16:50:23','','0000-00-00 00:00:00'),(1778,0,0,2939,4019,0,189,'2025-11-23','OD','TP','98.1','mo','2025-11-25 16:53:56','','0000-00-00 00:00:00'),(1779,0,0,2939,4019,0,189,'2025-11-23','OD','PR','86','mo','2025-11-25 16:54:09','','0000-00-00 00:00:00'),(1780,0,0,2939,4019,0,189,'2025-11-23','OD','SpO2','98','mo','2025-11-25 16:54:15','','0000-00-00 00:00:00'),(1781,0,0,2939,4019,0,189,'2025-11-23','OD','BP','112/74','mo','2025-11-25 16:54:26','','0000-00-00 00:00:00'),(1782,0,0,2939,4019,0,189,'2025-11-23','OD','RR','18','mo','2025-11-25 16:54:29','','0000-00-00 00:00:00'),(1783,0,0,3063,4224,2985,0,'2025-11-25','OA','BP','140/86','drarchit','2025-11-25 18:29:48','','0000-00-00 00:00:00'),(1784,0,0,3068,4231,2990,0,'2025-11-25','OA','BP','170/110','drarchit','2025-11-25 18:38:27','','0000-00-00 00:00:00'),(1785,0,0,429,4212,407,0,'2025-11-25','OA','BP','132/78','drarchit','2025-11-25 18:43:59','','0000-00-00 00:00:00'),(1786,0,0,3056,4216,2978,0,'2025-11-25','OA','BP','134/86','drarchit','2025-11-25 18:57:35','','0000-00-00 00:00:00'),(1787,0,0,3061,4221,2983,0,'2025-11-25','OA','BP','142/78','drarchit','2025-11-25 19:02:57','','0000-00-00 00:00:00'),(1788,0,0,1052,4234,1018,0,'2025-11-25','OA','BP','142/86','drarchit','2025-11-25 19:08:38','','0000-00-00 00:00:00'),(1789,0,0,3070,4236,2992,0,'2025-11-25','OA','BP','142/86','drarchit','2025-11-25 19:13:53','drarchit','2025-11-25 19:27:02'),(1790,0,0,3070,4236,2992,0,'2025-11-25','OA','RBS','109','drarchit','2025-11-25 19:27:02','','0000-00-00 00:00:00'),(1791,0,0,3077,4245,0,200,'2025-11-25','OA','TP','99','mo','2025-11-25 22:55:45','','0000-00-00 00:00:00'),(1792,0,0,3077,4245,0,200,'2025-11-25','OA','PR','115','mo','2025-11-25 22:55:47','','0000-00-00 00:00:00'),(1793,0,0,3077,4245,0,200,'2025-11-25','OA','SpO2','97','mo','2025-11-25 22:55:50','','0000-00-00 00:00:00'),(1794,0,0,3077,4245,0,200,'2025-11-25','OA','BP','90/60','mo','2025-11-25 22:55:53','','0000-00-00 00:00:00'),(1795,0,0,3077,4245,0,200,'2025-11-25','OA','RR','20','mo','2025-11-25 22:55:55','','0000-00-00 00:00:00'),(1796,0,0,3092,4277,3012,0,'2025-11-26','OA','BP','132/78','drarchit','2025-11-26 11:26:29','','0000-00-00 00:00:00'),(1797,0,0,3088,4273,3008,0,'2025-11-26','OA','BP','186/78','drarchit','2025-11-26 11:31:20','','0000-00-00 00:00:00'),(1798,0,0,3090,4275,3010,0,'2025-11-26','OA','BP','134/86','drarchit','2025-11-26 11:33:46','','0000-00-00 00:00:00'),(1799,0,0,3021,4158,0,196,'2025-11-25','OD','SpO2','94','mo','2025-11-26 11:38:36','','0000-00-00 00:00:00'),(1800,0,0,3021,4158,0,196,'2025-11-25','OD','PR','78','mo','2025-11-26 11:38:41','','0000-00-00 00:00:00'),(1801,0,0,3094,4279,3014,0,'2025-11-26','OA','BP','138/86','drarchit','2025-11-26 11:38:52','','0000-00-00 00:00:00'),(1802,0,0,3021,4158,0,196,'2025-11-25','OD','BP','130/80','mo','2025-11-26 11:39:00','','0000-00-00 00:00:00'),(1803,0,0,3097,4284,3017,0,'2025-11-26','OA','BP','164/83','drarchit','2025-11-26 11:56:57','','0000-00-00 00:00:00'),(1804,0,0,3099,4287,3019,0,'2025-11-26','OA','BP','172/108','drarchit','2025-11-26 12:07:07','','0000-00-00 00:00:00'),(1805,0,0,3098,4285,3018,0,'2025-11-26','OA','BP','132/78','drarchit','2025-11-26 12:16:16','','0000-00-00 00:00:00'),(1806,0,0,2959,4054,0,192,'2025-11-24','OD','PR','72','mo','2025-11-26 12:26:13','','0000-00-00 00:00:00'),(1807,0,0,2959,4054,0,192,'2025-11-24','OD','SpO2','98','mo','2025-11-26 12:26:17','','0000-00-00 00:00:00'),(1808,0,0,2959,4054,0,192,'2025-11-24','OD','BP','106/70','mo','2025-11-26 12:26:21','','0000-00-00 00:00:00'),(1809,0,0,2959,4054,0,192,'2025-11-24','OD','RR','20','mo','2025-11-26 12:26:25','','0000-00-00 00:00:00'),(1810,0,0,533,4296,508,0,'2025-11-26','OA','BP','142/88','drarchit','2025-11-26 12:43:24','','0000-00-00 00:00:00'),(1811,0,0,2633,3517,0,165,'2025-11-17','OD','SpO2','96','mo','2025-11-26 13:07:48','','0000-00-00 00:00:00'),(1812,0,0,2633,3517,0,165,'2025-11-17','OD','BP','130/90','mo','2025-11-26 13:07:51','','0000-00-00 00:00:00'),(1813,0,0,2633,3517,0,165,'2025-11-17','OD','PR','80','mo','2025-11-26 13:07:54','','0000-00-00 00:00:00'),(1814,0,0,3057,4217,2979,0,'2025-11-25','OA','BP','134/86','drarchit','2025-11-26 13:16:39','','0000-00-00 00:00:00'),(1815,0,0,452,4303,1533,0,'2025-11-26','OA','BP','132/78','drarchit','2025-11-26 13:54:14','','0000-00-00 00:00:00'),(1816,0,0,3116,4316,3035,0,'2025-11-26','OA','BP','132/78','drarchit','2025-11-26 18:06:53','','0000-00-00 00:00:00'),(1817,0,0,3119,4319,3038,0,'2025-11-26','OA','BP','210/110','drarchit','2025-11-26 18:15:27','','0000-00-00 00:00:00'),(1818,0,0,3122,4323,3041,0,'2025-11-26','OA','BP','132/78','drarchit','2025-11-26 18:17:58','','0000-00-00 00:00:00'),(1819,0,0,392,4321,2393,0,'2025-11-26','OA','BP','132/78','drarchit','2025-11-26 18:25:12','','0000-00-00 00:00:00'),(1820,0,0,2380,4166,0,199,'2025-11-25','OD','TP','98.4','mo','2025-11-26 18:36:07','','0000-00-00 00:00:00'),(1821,0,0,2380,4166,0,199,'2025-11-25','OD','PR','78','mo','2025-11-26 18:36:11','','0000-00-00 00:00:00'),(1822,0,0,2380,4166,0,199,'2025-11-25','OD','SpO2','98','mo','2025-11-26 18:36:13','','0000-00-00 00:00:00'),(1823,0,0,2380,4166,0,199,'2025-11-25','OD','BP','142/88','mo','2025-11-26 18:36:18','','0000-00-00 00:00:00'),(1824,0,0,2380,4166,0,199,'2025-11-25','OD','RR','20','mo','2025-11-26 18:36:21','','0000-00-00 00:00:00'),(1825,0,0,3108,4299,3028,0,'2025-11-26','OA','BP','142/88','drarchit','2025-11-26 18:43:23','','0000-00-00 00:00:00'),(1826,0,0,3124,4325,3043,0,'2025-11-26','OA','BP','134/86','drarchit','2025-11-26 18:50:51','','0000-00-00 00:00:00'),(1827,0,0,3100,4288,3020,0,'2025-11-26','OA','BP','134/86','drarchit','2025-11-26 18:59:38','','0000-00-00 00:00:00'),(1828,0,0,3111,4305,0,204,'2025-11-26','OA','PR','86','mo','2025-11-26 19:00:53','','0000-00-00 00:00:00'),(1829,0,0,3111,4305,0,204,'2025-11-26','OA','SpO2','98','mo','2025-11-26 19:00:53','','0000-00-00 00:00:00'),(1830,0,0,3111,4305,0,204,'2025-11-26','OA','BP','122/76','mo','2025-11-26 19:01:05','','0000-00-00 00:00:00'),(1831,0,0,3111,4305,0,204,'2025-11-26','OA','RR','22','mo','2025-11-26 19:01:10','','0000-00-00 00:00:00'),(1832,0,0,3110,4304,3030,0,'2025-11-26','OA','BP','134/86','drarchit','2025-11-26 19:07:28','','0000-00-00 00:00:00'),(1833,0,0,3127,4331,3046,0,'2025-11-26','OA','BP','132/78','drarchit','2025-11-26 19:15:02','','0000-00-00 00:00:00'),(1834,0,0,3126,4329,3045,0,'2025-11-26','OA','BP','132/78','drarchit','2025-11-26 19:23:10','','0000-00-00 00:00:00'),(1835,0,0,3132,4338,3051,0,'2025-11-26','OA','BP','132/78','drarchit','2025-11-26 19:36:02','','0000-00-00 00:00:00'),(1836,0,0,3137,4345,3056,0,'2025-11-26','OA','BP','142/86','drarchit','2025-11-26 19:59:30','','0000-00-00 00:00:00'),(1837,0,0,3140,4348,3059,0,'2025-11-26','OA','BP','134/86','drarchit','2025-11-26 20:18:19','','0000-00-00 00:00:00'),(1838,0,0,2980,4265,0,202,'2025-11-26','OA','PR','95','mo','2025-11-26 23:56:46','','0000-00-00 00:00:00'),(1839,0,0,2980,4265,0,202,'2025-11-26','OA','BMI','NaN','mo','2025-11-26 23:56:47','mo','2025-11-26 23:56:59'),(1840,0,0,2980,4265,0,202,'2025-11-26','OA','SpO2','98','mo','2025-11-26 23:56:54','','0000-00-00 00:00:00'),(1841,0,0,2980,4265,0,202,'2025-11-26','OA','BP','122/70','mo','2025-11-26 23:57:05','','0000-00-00 00:00:00'),(1842,0,0,2980,4265,0,202,'2025-11-26','OA','RR','20','mo','2025-11-26 23:57:08','','0000-00-00 00:00:00'),(1843,0,0,3005,4261,0,201,'2025-11-26','OA','PR','100','mo','2025-11-27 00:25:44','','0000-00-00 00:00:00'),(1844,0,0,3005,4261,0,201,'2025-11-26','OA','SpO2','98','mo','2025-11-27 00:25:46','','0000-00-00 00:00:00'),(1845,0,0,3005,4261,0,201,'2025-11-26','OA','BP','110/80','mo','2025-11-27 00:25:55','','0000-00-00 00:00:00'),(1846,0,0,3005,4261,0,201,'2025-11-26','OA','RR','20','mo','2025-11-27 00:26:02','','0000-00-00 00:00:00'),(1847,0,0,3141,4349,0,205,'2025-11-26','OA','SpO2','98','mo','2025-11-27 09:27:40','','0000-00-00 00:00:00'),(1848,0,0,3141,4349,0,205,'2025-11-26','OA','BP','220/130','mo','2025-11-27 09:36:01','','0000-00-00 00:00:00'),(1849,0,0,3141,4349,0,205,'2025-11-26','OA','PR','105','mo','2025-11-27 09:36:04','','0000-00-00 00:00:00'),(1850,0,0,3141,4349,0,205,'2025-11-26','OD','PR','91','mo','2025-11-27 09:36:11','','0000-00-00 00:00:00'),(1851,0,0,3141,4349,0,205,'2025-11-26','OD','SpO2','96','mo','2025-11-27 09:36:14','','0000-00-00 00:00:00'),(1852,0,0,3141,4349,0,205,'2025-11-26','OD','BP','180/100','mo','2025-11-27 09:36:21','','0000-00-00 00:00:00'),(1853,0,0,3164,4377,3078,0,'2025-11-27','OA','BP','126/80','drarchit','2025-11-27 11:45:00','','0000-00-00 00:00:00'),(1854,0,0,3149,4357,0,208,'2025-11-27','OA','PR','90','mo','2025-11-27 12:15:29','','0000-00-00 00:00:00'),(1855,0,0,3149,4357,0,208,'2025-11-27','OA','SpO2','97','mo','2025-11-27 12:15:33','','0000-00-00 00:00:00'),(1856,0,0,3149,4357,0,208,'2025-11-27','OA','BP','140/80','mo','2025-11-27 12:15:44','','0000-00-00 00:00:00'),(1857,0,0,3149,4357,0,208,'2025-11-27','OA','RR','22','mo','2025-11-27 12:16:33','','0000-00-00 00:00:00'),(1858,0,0,3149,4357,0,208,'2025-11-27','OD','SpO2','98','mo','2025-11-27 12:16:37','','0000-00-00 00:00:00'),(1859,0,0,3149,4357,0,208,'2025-11-27','OD','PR','78','mo','2025-11-27 12:16:37','','0000-00-00 00:00:00'),(1860,0,0,3149,4357,0,208,'2025-11-27','OD','BP','124/86','mo','2025-11-27 12:16:41','','0000-00-00 00:00:00'),(1861,0,0,3149,4357,0,208,'2025-11-27','OD','RR','20','mo','2025-11-27 12:16:44','','0000-00-00 00:00:00'),(1862,0,0,3155,4367,3069,0,'2025-11-27','OA','BP','134/86','drarchit','2025-11-27 12:18:41','','0000-00-00 00:00:00'),(1863,0,0,2919,4400,3092,0,'2025-11-27','OA','BP','160/90','drarchit','2025-11-27 12:24:55','drarchit','2025-11-27 12:54:58'),(1864,0,0,3176,4398,3090,0,'2025-11-27','OA','PR','90','drjayant','2025-11-27 12:45:38','drjayant','2025-11-27 12:55:06'),(1865,0,0,3176,4398,3090,0,'2025-11-27','OA','BP','190/90','drjayant','2025-11-27 12:45:38','drjayant','2025-11-27 12:55:06'),(1866,0,0,2612,4125,0,194,'2025-11-24','OA','BP','200/120','mo','2025-11-27 12:47:48','','0000-00-00 00:00:00'),(1867,0,0,2612,4125,0,194,'2025-11-24','OA','RR','30','mo','2025-11-27 12:47:50','','0000-00-00 00:00:00'),(1868,0,0,2612,4125,0,194,'2025-11-24','OA','SpO2','85','mo','2025-11-27 12:47:53','','0000-00-00 00:00:00'),(1869,0,0,2612,4125,0,194,'2025-11-24','OA','PR','80','mo','2025-11-27 12:48:05','','0000-00-00 00:00:00'),(1870,0,0,2612,4125,0,194,'2025-11-24','OD','SpO2','95','mo','2025-11-27 12:48:16','','0000-00-00 00:00:00'),(1871,0,0,2612,4125,0,194,'2025-11-24','OD','BP','114/70','mo','2025-11-27 12:48:18','','0000-00-00 00:00:00'),(1872,0,0,2612,4125,0,194,'2025-11-24','OD','PR','85','mo','2025-11-27 12:48:23','','0000-00-00 00:00:00'),(1873,0,0,3142,4350,0,206,'2025-11-26','OD','TP','98.6','mo','2025-11-27 13:28:46','','0000-00-00 00:00:00'),(1874,0,0,3142,4350,0,206,'2025-11-26','OD','PR','72','mo','2025-11-27 13:28:56','','0000-00-00 00:00:00'),(1875,0,0,3142,4350,0,206,'2025-11-26','OD','SpO2','98','mo','2025-11-27 13:29:01','','0000-00-00 00:00:00'),(1876,0,0,3142,4350,0,206,'2025-11-26','OD','BP','144/74','mo','2025-11-27 13:29:16','','0000-00-00 00:00:00'),(1877,0,0,3142,4350,0,206,'2025-11-26','OD','RR','16','mo','2025-11-27 13:29:20','','0000-00-00 00:00:00'),(1878,0,0,2782,4161,0,198,'2025-11-25','OA','PR','70','mo','2025-11-27 14:02:26','','0000-00-00 00:00:00'),(1879,0,0,2782,4161,0,198,'2025-11-25','OA','SpO2','98','mo','2025-11-27 14:02:26','','0000-00-00 00:00:00'),(1880,0,0,2782,4161,0,198,'2025-11-25','OA','BP','130/70','mo','2025-11-27 14:02:31','','0000-00-00 00:00:00'),(1881,0,0,3005,4261,0,201,'2025-11-26','OD','PR','84','mo','2025-11-27 16:47:58','','0000-00-00 00:00:00'),(1882,0,0,3005,4261,0,201,'2025-11-26','OD','SpO2','97','mo','2025-11-27 16:48:01','','0000-00-00 00:00:00'),(1883,0,0,3005,4261,0,201,'2025-11-26','OD','BP','110/70','mo','2025-11-27 16:48:09','','0000-00-00 00:00:00'),(1884,0,0,3005,4261,0,201,'2025-11-26','OD','RR','20','mo','2025-11-27 16:48:11','','0000-00-00 00:00:00'),(1885,0,0,3163,4376,3077,0,'2025-11-27','OA','BP','134/86','drarchit','2025-11-27 18:13:27','','0000-00-00 00:00:00'),(1886,0,0,3195,4434,3108,0,'2025-11-27','OA','BP','132/78','drarchit','2025-11-27 18:27:50','','0000-00-00 00:00:00'),(1887,0,0,3193,4431,3106,0,'2025-11-27','OA','BP','134/86','drarchit','2025-11-27 18:34:58','','0000-00-00 00:00:00'),(1888,0,0,3143,4351,0,207,'2025-11-26','OA','PR','74','mo','2025-11-27 18:53:47','','0000-00-00 00:00:00'),(1889,0,0,3143,4351,0,207,'2025-11-26','OA','SpO2','97','mo','2025-11-27 18:54:02','','0000-00-00 00:00:00'),(1890,0,0,3143,4351,0,207,'2025-11-26','OA','BP','116/74','mo','2025-11-27 18:54:10','','0000-00-00 00:00:00'),(1891,0,0,3143,4351,0,207,'2025-11-26','OA','RR','22','mo','2025-11-27 18:54:16','','0000-00-00 00:00:00'),(1892,0,0,3206,4455,3120,0,'2025-11-27','OA','BP','132/78','drarchit','2025-11-27 18:59:06','','0000-00-00 00:00:00'),(1893,0,0,2980,4265,0,202,'2025-11-26','OD','PR','88','mo','2025-11-27 19:06:42','','0000-00-00 00:00:00'),(1894,0,0,2980,4265,0,202,'2025-11-26','OD','SpO2','99','mo','2025-11-27 19:06:46','','0000-00-00 00:00:00'),(1895,0,0,2980,4265,0,202,'2025-11-26','OD','BP','136/80','mo','2025-11-27 19:06:50','','0000-00-00 00:00:00'),(1896,0,0,2980,4265,0,202,'2025-11-26','OD','RR','20','mo','2025-11-27 19:07:08','','0000-00-00 00:00:00'),(1897,0,0,3209,4459,3123,0,'2025-11-27','OA','BP','180/88','drarchit','2025-11-27 19:07:23','drarchit','2025-11-27 19:07:29'),(1898,0,0,3209,4459,3123,0,'2025-11-27','OA','RBS','194','drarchit','2025-11-27 19:07:29','','0000-00-00 00:00:00'),(1899,0,0,3133,4339,3052,0,'2025-11-26','OA','BP','145/86','drarchit','2025-11-27 19:16:12','','0000-00-00 00:00:00'),(1900,0,0,3211,4463,3125,0,'2025-11-27','OA','BP','132/78','drarchit','2025-11-27 19:25:16','','0000-00-00 00:00:00'),(1901,0,0,3128,4333,3047,0,'2025-11-26','OA','BP','142/86','drarchit','2025-11-27 19:28:31','','0000-00-00 00:00:00'),(1902,0,0,2782,4161,0,198,'2025-11-25','OD','PR','78','mo','2025-11-27 19:34:42','','0000-00-00 00:00:00'),(1903,0,0,2782,4161,0,198,'2025-11-25','OD','SpO2','98','mo','2025-11-27 19:34:44','','0000-00-00 00:00:00'),(1904,0,0,2782,4161,0,198,'2025-11-25','OD','BP','146/88','mo','2025-11-27 19:34:49','','0000-00-00 00:00:00'),(1905,0,0,2782,4161,0,198,'2025-11-25','OD','RR','20','mo','2025-11-27 19:34:50','','0000-00-00 00:00:00'),(1906,0,0,3018,4154,0,195,'2025-09-30','OA','PR','82','mo','2025-11-28 00:13:51','','0000-00-00 00:00:00'),(1907,0,0,3018,4154,0,195,'2025-09-30','OA','SpO2','98','mo','2025-11-28 00:13:55','','0000-00-00 00:00:00'),(1908,0,0,3018,4154,0,195,'2025-09-30','OA','BP','100/60','mo','2025-11-28 00:14:08','','0000-00-00 00:00:00'),(1909,0,0,3018,4154,0,195,'2025-09-30','OA','RR','22','mo','2025-11-28 00:14:12','','0000-00-00 00:00:00'),(1910,0,0,3018,4154,0,195,'2025-09-30','OD','PR','80','mo','2025-11-28 00:14:14','','0000-00-00 00:00:00'),(1911,0,0,3018,4154,0,195,'2025-09-30','OD','SpO2','98','mo','2025-11-28 00:14:16','','0000-00-00 00:00:00'),(1912,0,0,3018,4154,0,195,'2025-09-30','OD','BP','110/70','mo','2025-11-28 00:14:20','','0000-00-00 00:00:00'),(1913,0,0,3018,4154,0,195,'2025-09-30','OD','RR','20','mo','2025-11-28 00:14:23','','0000-00-00 00:00:00'),(1914,0,0,3186,4417,0,211,'2025-11-27','OA','PR','92','mo','2025-11-28 00:24:48','','0000-00-00 00:00:00'),(1915,0,0,3186,4417,0,211,'2025-11-27','OA','SpO2','98','mo','2025-11-28 00:24:50','','0000-00-00 00:00:00'),(1916,0,0,3186,4417,0,211,'2025-11-27','OA','BP','110/70','mo','2025-11-28 00:24:54','','0000-00-00 00:00:00'),(1917,0,0,3186,4417,0,211,'2025-11-27','OA','RR','22','mo','2025-11-28 00:25:02','','0000-00-00 00:00:00'),(1918,0,0,2866,3909,0,181,'2025-11-21','OA','PR','111','mo','2025-11-28 00:36:45','','0000-00-00 00:00:00'),(1919,0,0,2866,3909,0,181,'2025-11-21','OA','SpO2','97','mo','2025-11-28 00:36:48','','0000-00-00 00:00:00'),(1920,0,0,2866,3909,0,181,'2025-11-21','OA','BP','132/74','mo','2025-11-28 00:36:54','','0000-00-00 00:00:00'),(1921,0,0,2866,3909,0,181,'2025-11-21','OA','RR','21','mo','2025-11-28 00:37:11','','0000-00-00 00:00:00'),(1922,0,0,2780,3764,0,178,'2025-11-20','OA','PR','120','mo','2025-11-28 00:46:12','','0000-00-00 00:00:00'),(1923,0,0,2780,3764,0,178,'2025-11-20','OA','SpO2','92','mo','2025-11-28 00:46:15','','0000-00-00 00:00:00'),(1924,0,0,2780,3764,0,178,'2025-11-20','OA','BP','160/80','mo','2025-11-28 00:46:19','','0000-00-00 00:00:00'),(1925,0,0,2780,3764,0,178,'2025-11-20','OA','RR','30','mo','2025-11-28 00:47:01','','0000-00-00 00:00:00'),(1926,0,0,2834,3861,0,179,'2025-11-20','OA','PR','120','mo','2025-11-28 08:34:28','','0000-00-00 00:00:00'),(1927,0,0,2834,3861,0,179,'2025-11-20','OA','SpO2','82','mo','2025-11-28 08:34:38','','0000-00-00 00:00:00'),(1928,0,0,2834,3861,0,179,'2025-11-20','OA','BP','160/100','mo','2025-11-28 08:34:42','','0000-00-00 00:00:00'),(1929,0,0,2834,3861,0,179,'2025-11-20','OA','RR','32','mo','2025-11-28 08:34:47','','0000-00-00 00:00:00'),(1930,0,0,3077,4245,0,200,'2025-11-25','OD','PR','90','mo','2025-11-28 10:42:29','','0000-00-00 00:00:00'),(1931,0,0,3077,4245,0,200,'2025-11-25','OD','SpO2','98','mo','2025-11-28 10:42:32','','0000-00-00 00:00:00'),(1932,0,0,3077,4245,0,200,'2025-11-25','OD','BP','110/70','mo','2025-11-28 10:42:39','','0000-00-00 00:00:00'),(1933,0,0,3077,4245,0,200,'2025-11-25','OD','RR','22','mo','2025-11-28 10:42:45','','0000-00-00 00:00:00'),(1934,0,0,3214,4470,3128,0,'2025-11-28','OA','BP','134/86','drarchit','2025-11-28 11:14:51','','0000-00-00 00:00:00'),(1935,0,0,3216,4473,3130,0,'2025-11-28','OA','BP','134/98','drjayant','2025-11-28 11:31:22','','0000-00-00 00:00:00'),(1936,0,0,624,4496,594,0,'2025-11-28','OA','BP','174/92','drarchit','2025-11-28 11:42:04','','0000-00-00 00:00:00'),(1937,0,0,3223,4484,3137,0,'2025-11-28','OA','BP','134/86','drarchit','2025-11-28 11:49:35','','0000-00-00 00:00:00'),(1938,0,0,3237,4513,3151,0,'2025-11-28','OA','BP','130/80','drjayant','2025-11-28 11:55:04','','0000-00-00 00:00:00'),(1939,0,0,3230,4502,3144,0,'2025-11-28','OA','BP','164/86','drarchit','2025-11-28 11:55:36','','0000-00-00 00:00:00'),(1940,0,0,3220,4479,3134,0,'2025-11-28','OA','BP','142/78','drarchit','2025-11-28 11:57:44','','0000-00-00 00:00:00'),(1941,0,0,393,4159,0,197,'2025-11-24','OA','PR','96','mo','2025-11-28 11:58:36','','0000-00-00 00:00:00'),(1942,0,0,393,4159,0,197,'2025-11-24','OA','SpO2','94','mo','2025-11-28 11:58:45','','0000-00-00 00:00:00'),(1943,0,0,393,4159,0,197,'2025-11-24','OA','BP','120/70','mo','2025-11-28 11:58:49','','0000-00-00 00:00:00'),(1944,0,0,393,4159,0,197,'2025-11-24','OA','RR','34','mo','2025-11-28 11:58:56','','0000-00-00 00:00:00'),(1945,0,0,393,4159,0,197,'2025-11-24','OD','PR','100','mo','2025-11-28 11:59:04','','0000-00-00 00:00:00'),(1946,0,0,393,4159,0,197,'2025-11-24','OD','SpO2','97','mo','2025-11-28 11:59:04','','0000-00-00 00:00:00'),(1947,0,0,393,4159,0,197,'2025-11-24','OD','BP','120/78','mo','2025-11-28 11:59:14','','0000-00-00 00:00:00'),(1948,0,0,393,4159,0,197,'2025-11-24','OD','RR','22','mo','2025-11-28 11:59:16','','0000-00-00 00:00:00'),(1949,0,0,3236,4512,3150,0,'2025-11-28','OA','BP','142/87','drarchit','2025-11-28 12:18:16','','0000-00-00 00:00:00'),(1950,0,0,3235,4511,3149,0,'2025-11-28','OA','BP','134/86','drarchit','2025-11-28 12:21:20','','0000-00-00 00:00:00'),(1951,0,0,3244,4521,3158,0,'2025-11-28','OA','BP','134/86','drarchit','2025-11-28 12:28:03','','0000-00-00 00:00:00'),(1952,0,0,3239,4516,3153,0,'2025-11-28','OA','BP','132/78','drarchit','2025-11-28 18:17:07','drarchit','2025-11-28 19:23:26'),(1953,0,0,200,4566,187,0,'2025-11-28','OA','BP','132/78','drarchit','2025-11-28 18:27:22','','0000-00-00 00:00:00'),(1954,0,0,3275,4569,3189,0,'2025-11-28','OA','BP','140/82','drjayant','2025-11-28 18:42:27','','0000-00-00 00:00:00'),(1955,0,0,120,4575,109,0,'2025-11-28','OA','BP','130/80','drjayant','2025-11-28 18:47:51','drjayant','2025-11-28 18:48:20'),(1956,0,0,120,4575,109,0,'2025-11-28','OA','PR','70','drjayant','2025-11-28 18:47:54','drjayant','2025-11-28 18:48:20'),(1957,0,0,3276,4574,3190,0,'2025-11-28','OA','BP','168/88','drarchit','2025-11-28 18:51:26','','0000-00-00 00:00:00'),(1958,0,0,3277,4576,3191,0,'2025-11-28','OA','BP','148/78','drarchit','2025-11-28 19:02:44','','0000-00-00 00:00:00'),(1959,0,0,3282,4584,3196,0,'2025-11-28','OA','BP','142/90','drarchit','2025-11-28 19:07:22','drarchit','2025-11-28 19:15:04'),(1960,0,0,3283,4585,3197,0,'2025-11-28','OA','BP','144/86','drarchit','2025-11-28 19:15:44','','0000-00-00 00:00:00'),(1961,0,0,1363,4589,1323,0,'2025-11-28','OA','BP','134/86','drarchit','2025-11-28 19:27:09','','0000-00-00 00:00:00'),(1962,0,0,3249,4526,3163,0,'2025-11-28','OA','BP','134/86','drarchit','2025-11-28 19:34:59','','0000-00-00 00:00:00'),(1963,0,0,2563,4591,2506,0,'2025-11-28','OA','BP','146/92','drarchit','2025-11-28 19:43:10','','0000-00-00 00:00:00'),(1964,0,0,3286,4592,3200,0,'2025-11-28','OA','BP','142/88','drarchit','2025-11-28 19:56:41','','0000-00-00 00:00:00'),(1965,0,0,3143,4351,0,207,'2025-11-26','OD','PR','78','mo','2025-11-29 00:05:56','','0000-00-00 00:00:00'),(1966,0,0,3143,4351,0,207,'2025-11-26','OD','SpO2','98','mo','2025-11-29 00:05:57','','0000-00-00 00:00:00'),(1967,0,0,3143,4351,0,207,'2025-11-26','OD','BP','124/78','mo','2025-11-29 00:06:02','','0000-00-00 00:00:00'),(1968,0,0,3143,4351,0,207,'2025-11-26','OD','RR','20','mo','2025-11-29 00:06:05','','0000-00-00 00:00:00'),(1969,0,0,3182,4409,0,210,'2025-11-27','OA','TP','98.7','mo','2025-11-29 08:54:56','','0000-00-00 00:00:00'),(1970,0,0,3182,4409,0,210,'2025-11-27','OA','PR','127','mo','2025-11-29 08:55:01','','0000-00-00 00:00:00'),(1971,0,0,3182,4409,0,210,'2025-11-27','OA','SpO2','99','mo','2025-11-29 08:55:04','','0000-00-00 00:00:00'),(1972,0,0,3182,4409,0,210,'2025-11-27','OA','BP','110/70','mo','2025-11-29 08:55:08','','0000-00-00 00:00:00'),(1973,0,0,3182,4409,0,210,'2025-11-27','OA','RR','24','mo','2025-11-29 08:55:14','','0000-00-00 00:00:00'),(1974,0,0,3182,4409,0,210,'2025-11-27','OD','TP','98.4','mo','2025-11-29 08:55:16','','0000-00-00 00:00:00'),(1975,0,0,3182,4409,0,210,'2025-11-27','OD','PR','90','mo','2025-11-29 08:55:27','','0000-00-00 00:00:00'),(1976,0,0,3182,4409,0,210,'2025-11-27','OD','SpO2','97','mo','2025-11-29 08:55:29','','0000-00-00 00:00:00'),(1977,0,0,3182,4409,0,210,'2025-11-27','OD','BP','142/80','mo','2025-11-29 08:55:49','','0000-00-00 00:00:00'),(1978,0,0,3182,4409,0,210,'2025-11-27','OD','RR','20','mo','2025-11-29 08:56:17','','0000-00-00 00:00:00'),(1979,0,0,3186,4417,0,211,'2025-11-27','OD','PR','80','mo','2025-11-29 11:22:33','','0000-00-00 00:00:00'),(1980,0,0,3186,4417,0,211,'2025-11-27','OD','SpO2','99','mo','2025-11-29 11:22:36','','0000-00-00 00:00:00'),(1981,0,0,3186,4417,0,211,'2025-11-27','OD','BP','112/74','mo','2025-11-29 11:22:46','mo','2025-11-29 11:33:33'),(1982,0,0,3186,4417,0,211,'2025-11-27','OD','RR','18','mo','2025-11-29 11:22:53','mo','2025-11-29 11:33:52'),(1983,0,0,3291,4598,3204,0,'2025-11-29','OA','BP','134/86','drarchit','2025-11-29 11:31:24','','0000-00-00 00:00:00'),(1984,0,0,3315,4638,3229,0,'2025-11-29','OA','BP','150/84','drjayant','2025-11-29 12:02:40','drjayant','2025-11-29 12:02:41'),(1985,0,0,3315,4638,3229,0,'2025-11-29','OA','PR','85','drjayant','2025-11-29 12:02:41','','0000-00-00 00:00:00'),(1986,0,0,3312,4634,3226,0,'2025-11-29','OA','BP','134/86','drarchit','2025-11-29 12:03:27','drarchit','2025-11-29 12:03:34'),(1987,0,0,3307,4628,3221,0,'2025-11-29','OA','BP','142/86','drarchit','2025-11-29 12:17:19','','0000-00-00 00:00:00'),(1988,0,0,2779,4641,3232,0,'2025-11-29','OA','BP','132/78','drarchit','2025-11-29 12:30:34','','0000-00-00 00:00:00'),(1989,0,0,2939,4644,3233,0,'2025-11-29','OA','BP','132/','drarchit','2025-11-29 12:40:29','','0000-00-00 00:00:00'),(1990,0,0,3333,4670,3251,0,'2025-11-29','OA','BP','176/88','drarchit','2025-11-29 12:55:24','','0000-00-00 00:00:00'),(1991,0,0,2539,4650,3237,0,'2025-11-29','OA','BP','132/78','drarchit','2025-11-29 12:59:22','','0000-00-00 00:00:00'),(1992,0,0,3324,4660,3242,0,'2025-11-29','OA','BP','134/86','drarchit','2025-11-29 13:07:22','','0000-00-00 00:00:00'),(1993,0,0,3309,4631,3223,0,'2025-11-29','OA','BP','128/78','drjayant','2025-11-29 13:09:44','drjayant','2025-11-29 13:09:45'),(1994,0,0,3309,4631,3223,0,'2025-11-29','OA','PR','85','drjayant','2025-11-29 13:09:45','','0000-00-00 00:00:00'),(1995,0,0,3323,4659,3241,0,'2025-11-29','OA','BP','158/86','drarchit','2025-11-29 13:10:37','','0000-00-00 00:00:00'),(1996,0,0,3322,4654,3240,0,'2025-11-29','OA','BP','125/78','drjayant','2025-11-29 13:15:45','','0000-00-00 00:00:00'),(1997,0,0,3303,4630,0,214,'2025-11-29','OA','PR','117','mo','2025-11-29 20:47:34','','0000-00-00 00:00:00'),(1998,0,0,3303,4630,0,214,'2025-11-29','OA','SpO2','98','mo','2025-11-29 20:47:40','','0000-00-00 00:00:00'),(1999,0,0,3303,4630,0,214,'2025-11-29','OA','BP','100/60','mo','2025-11-29 20:47:48','','0000-00-00 00:00:00'),(2000,0,0,3303,4630,0,214,'2025-11-29','OA','RR','24','mo','2025-11-29 20:48:01','','0000-00-00 00:00:00'),(2001,0,0,3336,4674,0,215,'2025-11-29','OA','PR','98','mo','2025-11-30 01:13:12','','0000-00-00 00:00:00'),(2002,0,0,3336,4674,0,215,'2025-11-29','OA','SpO2','98','mo','2025-11-30 01:13:14','','0000-00-00 00:00:00'),(2003,0,0,3336,4674,0,215,'2025-11-29','OA','BP','130/90','mo','2025-11-30 01:13:18','','0000-00-00 00:00:00'),(2004,0,0,3336,4674,0,215,'2025-11-29','OA','RR','20','mo','2025-11-30 01:13:20','','0000-00-00 00:00:00'),(2005,0,0,3151,4359,0,209,'2025-11-27','OA','PR','113','mo','2025-11-30 01:29:44','','0000-00-00 00:00:00'),(2006,0,0,3151,4359,0,209,'2025-11-27','OA','SpO2','98','mo','2025-11-30 01:29:48','','0000-00-00 00:00:00'),(2007,0,0,3151,4359,0,209,'2025-11-27','OA','BP','150/90','mo','2025-11-30 01:29:51','','0000-00-00 00:00:00'),(2008,0,0,3151,4359,0,209,'2025-11-27','OA','RR','28','mo','2025-11-30 01:29:57','','0000-00-00 00:00:00'),(2009,0,0,3295,4675,0,216,'2025-11-29','OA','PR','98','mo','2025-11-30 01:43:38','','0000-00-00 00:00:00'),(2010,0,0,3295,4675,0,216,'2025-11-29','OA','SpO2','98','mo','2025-11-30 01:43:40','','0000-00-00 00:00:00'),(2011,0,0,3295,4675,0,216,'2025-11-29','OA','BP','110/70','mo','2025-11-30 01:43:43','','0000-00-00 00:00:00'),(2012,0,0,3295,4675,0,216,'2025-11-29','OA','RR','20','mo','2025-11-30 01:43:47','','0000-00-00 00:00:00'),(2013,0,0,3295,4675,0,216,'2025-11-29','OD','PR','80','mo','2025-11-30 11:44:44','','0000-00-00 00:00:00'),(2014,0,0,3295,4675,0,216,'2025-11-29','OD','SpO2','98','mo','2025-11-30 11:44:46','','0000-00-00 00:00:00'),(2015,0,0,3295,4675,0,216,'2025-11-29','OD','BP','110/70','mo','2025-11-30 11:44:53','','0000-00-00 00:00:00'),(2016,0,0,3295,4675,0,216,'2025-11-29','OD','RR','20','mo','2025-11-30 11:44:55','','0000-00-00 00:00:00'),(2017,0,0,2834,3861,0,179,'2025-11-20','OD','PR','100','mo','2025-11-30 13:32:31','','0000-00-00 00:00:00'),(2018,0,0,2834,3861,0,179,'2025-11-20','OD','SpO2','98','mo','2025-11-30 13:32:37','','0000-00-00 00:00:00'),(2019,0,0,2834,3861,0,179,'2025-11-20','OD','BP','126/80','mo','2025-11-30 13:32:41','','0000-00-00 00:00:00'),(2020,0,0,2834,3861,0,179,'2025-11-20','OD','RR','22','mo','2025-11-30 13:32:44','','0000-00-00 00:00:00'),(2021,0,0,3151,4359,0,209,'2025-11-27','OD','PR','88','mo','2025-11-30 13:43:02','','0000-00-00 00:00:00'),(2022,0,0,3151,4359,0,209,'2025-11-27','OD','SpO2','98','mo','2025-11-30 13:43:04','','0000-00-00 00:00:00'),(2023,0,0,3151,4359,0,209,'2025-11-27','OD','BP','140/90','mo','2025-11-30 13:43:09','','0000-00-00 00:00:00'),(2024,0,0,3151,4359,0,209,'2025-11-27','OD','RR','20','mo','2025-11-30 13:43:15','','0000-00-00 00:00:00'),(2025,0,0,3287,4594,0,213,'2025-11-28','OA','PR','84','mo','2025-12-01 00:21:22','','0000-00-00 00:00:00'),(2026,0,0,3287,4594,0,213,'2025-11-28','OA','SpO2','98','mo','2025-12-01 00:21:24','','0000-00-00 00:00:00'),(2027,0,0,3287,4594,0,213,'2025-11-28','OA','BP','100/60','mo','2025-12-01 00:21:27','','0000-00-00 00:00:00'),(2028,0,0,3287,4594,0,213,'2025-11-28','OA','RR','18','mo','2025-12-01 00:21:30','','0000-00-00 00:00:00'),(2029,0,0,3287,4594,0,213,'2025-11-28','OA','RBS','171','mo','2025-12-01 00:22:24','','0000-00-00 00:00:00'),(2030,0,0,3347,4691,0,220,'2025-11-30','OA','SpO2','98','mo','2025-12-01 00:33:34','','0000-00-00 00:00:00'),(2031,0,0,3347,4691,0,220,'2025-11-30','OA','BP','122/74','mo','2025-12-01 00:33:40','','0000-00-00 00:00:00'),(2032,0,0,3347,4691,0,220,'2025-11-30','OA','PR','116','mo','2025-12-01 00:34:00','','0000-00-00 00:00:00'),(2033,0,0,3343,4686,0,217,'2025-11-29','OA','SpO2','96','mo','2025-12-01 01:04:26','','0000-00-00 00:00:00'),(2034,0,0,3343,4686,0,217,'2025-11-29','OA','BP','60sys','mo','2025-12-01 01:04:28','','0000-00-00 00:00:00'),(2035,0,0,3343,4686,0,217,'2025-11-29','OA','RR','18','mo','2025-12-01 01:04:33','','0000-00-00 00:00:00'),(2036,0,0,3343,4686,0,217,'2025-11-29','OA','PR','46','mo','2025-12-01 01:11:25','','0000-00-00 00:00:00'),(2037,0,0,3346,4690,0,219,'2025-11-29','OA','BP','122/70','mo','2025-12-01 01:16:18','','0000-00-00 00:00:00'),(2038,0,0,3346,4690,0,219,'2025-11-29','OA','RR','22','mo','2025-12-01 01:16:20','','0000-00-00 00:00:00'),(2039,0,0,3346,4690,0,219,'2025-11-29','OA','SpO2','97','mo','2025-12-01 01:16:22','','0000-00-00 00:00:00'),(2040,0,0,3346,4690,0,219,'2025-11-29','OA','PR','88','mo','2025-12-01 01:16:27','','0000-00-00 00:00:00'),(2041,0,0,3350,4694,0,222,'2025-11-30','OA','RBS','260','mo','2025-12-01 01:23:06','','0000-00-00 00:00:00'),(2042,0,0,3350,4694,0,222,'2025-11-30','OA','BP','110/70','mo','2025-12-01 01:23:08','','0000-00-00 00:00:00'),(2043,0,0,3350,4694,0,222,'2025-11-30','OA','SpO2','98','mo','2025-12-01 01:23:11','','0000-00-00 00:00:00'),(2044,0,0,3350,4694,0,222,'2025-11-30','OA','PR','88','mo','2025-12-01 01:23:13','','0000-00-00 00:00:00'),(2045,0,0,3350,4694,0,222,'2025-11-30','OA','RR','22','mo','2025-12-01 01:23:36','','0000-00-00 00:00:00'),(2046,0,0,3349,4693,0,221,'2025-11-30','OA','BP','120/70','mo','2025-12-01 01:33:40','','0000-00-00 00:00:00'),(2047,0,0,3349,4693,0,221,'2025-11-30','OA','RR','22','mo','2025-12-01 01:33:41','','0000-00-00 00:00:00'),(2048,0,0,3349,4693,0,221,'2025-11-30','OA','SpO2','97','mo','2025-12-01 01:33:45','','0000-00-00 00:00:00'),(2049,0,0,3349,4693,0,221,'2025-11-30','OA','PR','80','mo','2025-12-01 01:33:51','','0000-00-00 00:00:00'),(2050,0,0,2243,2879,0,146,'2025-11-10','OD','SpO2','95','mo','2025-12-01 01:44:13','','0000-00-00 00:00:00'),(2051,0,0,2243,2879,0,146,'2025-11-10','OD','PR','90','mo','2025-12-01 01:44:15','','0000-00-00 00:00:00'),(2052,0,0,2243,2879,0,146,'2025-11-10','OD','BP','140/90','mo','2025-12-01 01:44:20','','0000-00-00 00:00:00'),(2053,0,0,2956,4047,0,191,'2025-11-24','OD','SpO2','99','mo','2025-12-01 10:27:14','','0000-00-00 00:00:00'),(2054,0,0,2956,4047,0,191,'2025-11-24','OD','BP','120/80','mo','2025-12-01 10:27:17','','0000-00-00 00:00:00'),(2055,0,0,2956,4047,0,191,'2025-11-24','OD','PR','94','mo','2025-12-01 10:27:24','','0000-00-00 00:00:00'),(2056,0,0,961,4713,930,0,'2025-12-01','OA','BP','125/82','drjayant','2025-12-01 11:17:22','drjayant','2025-12-01 11:17:23'),(2057,0,0,961,4713,930,0,'2025-12-01','OA','PR','85','drjayant','2025-12-01 11:17:23','','0000-00-00 00:00:00'),(2058,0,0,3359,4707,3271,0,'2025-12-01','OA','BP','164/88','drarchit','2025-12-01 11:21:08','','0000-00-00 00:00:00'),(2059,0,0,3368,4728,3279,0,'2025-12-01','OA','BP','130/84','drjayant','2025-12-01 11:24:01','drjayant','2025-12-01 11:24:01'),(2060,0,0,3368,4728,3279,0,'2025-12-01','OA','PR','85','drjayant','2025-12-01 11:24:01','','0000-00-00 00:00:00'),(2061,0,0,3162,4718,3076,0,'2025-12-01','OA','BP','132/78','drarchit','2025-12-01 11:28:44','','0000-00-00 00:00:00'),(2062,0,0,2780,3764,0,178,'2025-11-20','OD','SpO2','98','mo','2025-12-01 11:36:01','','0000-00-00 00:00:00'),(2063,0,0,2780,3764,0,178,'2025-11-20','OD','BP','142/80','mo','2025-12-01 11:36:02','','0000-00-00 00:00:00'),(2064,0,0,2780,3764,0,178,'2025-11-20','OD','PR','84','mo','2025-12-01 11:36:06','','0000-00-00 00:00:00'),(2065,0,0,3372,4732,3283,0,'2025-12-01','OA','BP','154/86','drarchit','2025-12-01 11:47:02','','0000-00-00 00:00:00'),(2066,0,0,3378,4743,3289,0,'2025-12-01','OA','BP','130/84','drjayant','2025-12-01 11:51:29','drjayant','2025-12-01 11:51:31'),(2067,0,0,3378,4743,3289,0,'2025-12-01','OA','PR','85','drjayant','2025-12-01 11:51:31','','0000-00-00 00:00:00'),(2068,0,0,3287,4594,0,213,'2025-11-28','OD','SpO2','98','mo','2025-12-01 11:54:35','','0000-00-00 00:00:00'),(2069,0,0,3287,4594,0,213,'2025-11-28','OD','BP','120/70','mo','2025-12-01 11:54:40','','0000-00-00 00:00:00'),(2070,0,0,3287,4594,0,213,'2025-11-28','OD','PR','75','mo','2025-12-01 11:54:46','','0000-00-00 00:00:00'),(2071,0,0,3370,4730,3281,0,'2025-12-01','OA','BP','132/78','drarchit','2025-12-01 12:13:09','','0000-00-00 00:00:00'),(2072,0,0,3019,4725,2941,0,'2025-12-01','OA','BP','132/78','drarchit','2025-12-01 12:24:09','','0000-00-00 00:00:00'),(2073,0,0,2971,4727,2894,0,'2025-12-01','OA','BP','200/108','drarchit','2025-12-01 13:04:20','drarchit','2025-12-01 13:07:29'),(2074,0,0,2311,4760,2254,0,'2025-12-01','OA','BP','134/86','drarchit','2025-12-01 13:16:28','','0000-00-00 00:00:00'),(2075,0,0,1826,4769,1781,0,'2025-12-01','OA','BP','130/82','drjayant','2025-12-01 13:16:52','drjayant','2025-12-01 13:16:56'),(2076,0,0,1826,4769,1781,0,'2025-12-01','OA','PR','84','drjayant','2025-12-01 13:16:56','','0000-00-00 00:00:00'),(2077,0,0,3384,4753,3294,0,'2025-12-01','OA','BP','142/78','drarchit','2025-12-01 13:29:59','drarchit','2025-12-01 13:31:45'),(2078,0,0,3343,4686,0,217,'2025-11-29','OD','PR','80','mo','2025-12-01 13:38:26','','0000-00-00 00:00:00'),(2079,0,0,3343,4686,0,217,'2025-11-29','OD','SpO2','98','mo','2025-12-01 13:38:27','','0000-00-00 00:00:00'),(2080,0,0,3343,4686,0,217,'2025-11-29','OD','BP','110/70','mo','2025-12-01 13:38:32','','0000-00-00 00:00:00'),(2081,0,0,3385,4754,3295,0,'2025-12-01','OA','BP','132/78','drarchit','2025-12-01 13:40:51','','0000-00-00 00:00:00'),(2082,0,0,212,4766,199,0,'2025-12-01','OA','BP','134/86','drarchit','2025-12-01 13:44:33','','0000-00-00 00:00:00'),(2083,0,0,3355,4808,3267,0,'2025-12-01','OA','BP','142/86','drarchit','2025-12-01 18:12:41','','0000-00-00 00:00:00'),(2084,0,0,3351,4695,3263,0,'2025-12-01','OA','BP','126/86','drarchit','2025-12-01 18:25:02','','0000-00-00 00:00:00'),(2085,0,0,3418,4818,3326,0,'2025-12-01','OA','BP','140/82','drjayant','2025-12-01 18:28:09','drjayant','2025-12-01 18:28:10'),(2086,0,0,3418,4818,3326,0,'2025-12-01','OA','PR','85','drjayant','2025-12-01 18:28:10','','0000-00-00 00:00:00'),(2087,0,0,3407,4793,3315,0,'2025-12-01','OA','BP','158/90','drarchit','2025-12-01 18:30:50','drarchit','2025-12-01 18:31:57'),(2088,0,0,3413,4807,3321,0,'2025-12-01','OA','BP','144/86','drarchit','2025-12-01 18:41:25','','0000-00-00 00:00:00'),(2089,0,0,3428,4835,3335,0,'2025-12-01','OA','BP','138/80','drjayant','2025-12-01 18:46:57','drjayant','2025-12-01 18:46:59'),(2090,0,0,3428,4835,3335,0,'2025-12-01','OA','PR','90','drjayant','2025-12-01 18:46:59','','0000-00-00 00:00:00'),(2091,0,0,3346,4690,0,219,'2025-11-29','OD','SpO2','98','mo','2025-12-01 18:47:10','','0000-00-00 00:00:00'),(2092,0,0,3346,4690,0,219,'2025-11-29','OD','BP','126/80','mo','2025-12-01 18:47:12','','0000-00-00 00:00:00'),(2093,0,0,3346,4690,0,219,'2025-11-29','OD','PR','85','mo','2025-12-01 18:47:16','','0000-00-00 00:00:00'),(2094,0,0,3429,4838,3336,0,'2025-12-01','OA','BP','142/86','drarchit','2025-12-01 18:47:57','','0000-00-00 00:00:00'),(2095,0,0,3366,4721,3277,0,'2025-12-01','OA','BP','134/78','drarchit','2025-12-01 18:55:25','','0000-00-00 00:00:00'),(2096,0,0,1279,4827,1238,0,'2025-12-01','OA','BP','124/86','drarchit','2025-12-01 19:02:10','','0000-00-00 00:00:00'),(2097,0,0,3090,4795,3010,0,'2025-12-01','OA','BP','142/86','drarchit','2025-12-01 19:08:07','','0000-00-00 00:00:00'),(2098,0,0,3431,4841,3338,0,'2025-12-01','OA','BP','138/ 82','drjayant','2025-12-01 19:09:12','drjayant','2025-12-01 19:09:21'),(2099,0,0,3431,4841,3338,0,'2025-12-01','OA','PR','85','drjayant','2025-12-01 19:09:21','','0000-00-00 00:00:00'),(2100,0,0,3379,4744,3290,0,'2025-12-01','OA','BP','142/86','drarchit','2025-12-01 19:17:16','','0000-00-00 00:00:00'),(2101,0,0,1717,4812,1672,0,'2025-12-01','OA','BP','167/96','drarchit','2025-12-01 19:23:55','','0000-00-00 00:00:00'),(2102,0,0,3416,4813,3324,0,'2025-12-01','OA','BP','134/86','drarchit','2025-12-01 19:28:18','','0000-00-00 00:00:00'),(2103,0,0,601,4826,574,0,'2025-12-01','OA','BP','142/86','drarchit','2025-12-01 19:41:59','','0000-00-00 00:00:00'),(2104,0,0,1521,4846,1480,0,'2025-12-01','OA','BP','132/78','drarchit','2025-12-01 19:53:17','','0000-00-00 00:00:00'),(2105,0,0,1313,4837,1274,0,'2025-12-01','OA','BP','132/78','drarchit','2025-12-01 19:58:38','','0000-00-00 00:00:00'),(2106,0,0,3425,4829,3333,0,'2025-12-01','OA','BP','134/86','drarchit','2025-12-01 20:04:20','','0000-00-00 00:00:00'),(2107,0,0,3421,4823,3329,0,'2025-12-01','OA','BP','132/78','drarchit','2025-12-01 20:10:16','','0000-00-00 00:00:00'),(2108,0,0,3433,4847,3340,0,'2025-12-01','OA','BP','132/78','drarchit','2025-12-01 20:18:13','','0000-00-00 00:00:00'),(2109,0,0,3403,4780,0,227,'2025-12-01','OA','TP','98.4','mo','2025-12-02 00:38:06','','0000-00-00 00:00:00'),(2110,0,0,3403,4780,0,227,'2025-12-01','OA','PR','84','mo','2025-12-02 00:38:15','','0000-00-00 00:00:00'),(2111,0,0,3403,4780,0,227,'2025-12-01','OA','SpO2','98','mo','2025-12-02 00:38:18','','0000-00-00 00:00:00'),(2112,0,0,3403,4780,0,227,'2025-12-01','OA','BP','100/70','mo','2025-12-02 00:38:26','','0000-00-00 00:00:00'),(2113,0,0,3403,4780,0,227,'2025-12-01','OA','RR','24','mo','2025-12-02 00:38:30','','0000-00-00 00:00:00'),(2114,0,0,3403,4780,0,227,'2025-12-01','OA','RBS','119','mo','2025-12-02 00:38:54','','0000-00-00 00:00:00'),(2115,0,0,3347,4691,0,220,'2025-11-30','OA','RBS','154','mo','2025-12-02 00:51:34','','0000-00-00 00:00:00'),(2116,0,0,3394,4802,0,229,'2025-12-01','OA','TP','99.1','mo','2025-12-02 00:58:02','','0000-00-00 00:00:00'),(2117,0,0,3394,4802,0,229,'2025-12-01','OA','PR','112','mo','2025-12-02 00:58:04','','0000-00-00 00:00:00'),(2118,0,0,3394,4802,0,229,'2025-12-01','OA','SpO2','99','mo','2025-12-02 00:58:07','','0000-00-00 00:00:00'),(2119,0,0,3394,4802,0,229,'2025-12-01','OA','BP','126/80','mo','2025-12-02 00:58:12','','0000-00-00 00:00:00'),(2120,0,0,3394,4802,0,229,'2025-12-01','OA','RR','20','mo','2025-12-02 00:58:14','','0000-00-00 00:00:00'),(2121,0,0,3394,4802,0,229,'2025-12-01','OA','BMI','NaN','mo','2025-12-02 00:58:16','','0000-00-00 00:00:00'),(2122,0,0,3394,4802,0,229,'2025-12-01','OA','RBS','174','mo','2025-12-02 00:58:32','','0000-00-00 00:00:00'),(2123,0,0,3427,4834,0,230,'2025-12-01','OA','TP','98','mo','2025-12-02 01:17:56','','0000-00-00 00:00:00'),(2124,0,0,3427,4834,0,230,'2025-12-01','OA','PR','60','mo','2025-12-02 01:17:58','','0000-00-00 00:00:00'),(2125,0,0,3427,4834,0,230,'2025-12-01','OA','SpO2','96','mo','2025-12-02 01:18:01','','0000-00-00 00:00:00'),(2126,0,0,3427,4834,0,230,'2025-12-01','OA','BP','164/80','mo','2025-12-02 01:18:09','','0000-00-00 00:00:00'),(2127,0,0,3427,4834,0,230,'2025-12-01','OA','RR','18','mo','2025-12-02 01:18:11','','0000-00-00 00:00:00'),(2128,0,0,3427,4834,0,230,'2025-12-01','OA','BMI','NaN','mo','2025-12-02 01:18:12','','0000-00-00 00:00:00'),(2129,0,0,3427,4834,0,230,'2025-12-01','OA','RBS','149','mo','2025-12-02 01:18:29','','0000-00-00 00:00:00'),(2130,0,0,3401,4778,0,226,'2025-12-01','OA','TP','98','mo','2025-12-02 01:47:28','','0000-00-00 00:00:00'),(2131,0,0,3401,4778,0,226,'2025-12-01','OA','PR','84','mo','2025-12-02 01:47:31','','0000-00-00 00:00:00'),(2132,0,0,3401,4778,0,226,'2025-12-01','OA','SpO2','98','mo','2025-12-02 01:47:33','','0000-00-00 00:00:00'),(2133,0,0,3401,4778,0,226,'2025-12-01','OA','BP','130/80','mo','2025-12-02 01:47:37','','0000-00-00 00:00:00'),(2134,0,0,3401,4778,0,226,'2025-12-01','OA','RR','18','mo','2025-12-02 01:47:39','','0000-00-00 00:00:00'),(2135,0,0,3401,4778,0,226,'2025-12-01','OA','BMI','NaN','mo','2025-12-02 01:47:40','','0000-00-00 00:00:00'),(2136,0,0,3361,4711,0,223,'2025-12-01','OA','TP','98.4','mo','2025-12-02 02:04:06','','0000-00-00 00:00:00'),(2137,0,0,3361,4711,0,223,'2025-12-01','OA','PR','81','mo','2025-12-02 02:04:15','','0000-00-00 00:00:00'),(2138,0,0,3361,4711,0,223,'2025-12-01','OA','SpO2','98','mo','2025-12-02 02:04:17','','0000-00-00 00:00:00'),(2139,0,0,3361,4711,0,223,'2025-12-01','OA','BP','136/80','mo','2025-12-02 02:04:24','','0000-00-00 00:00:00'),(2140,0,0,3361,4711,0,223,'2025-12-01','OA','RR','20','mo','2025-12-02 02:04:27','','0000-00-00 00:00:00'),(2141,0,0,3361,4711,0,223,'2025-12-01','OA','BMI','NaN','mo','2025-12-02 02:04:28','','0000-00-00 00:00:00'),(2142,0,0,3361,4711,0,223,'2025-12-01','OA','RBS','117','mo','2025-12-02 02:04:53','','0000-00-00 00:00:00'),(2143,0,0,3449,4872,3352,0,'2025-12-02','OA','BP','134/86','drarchit','2025-12-02 11:08:19','','0000-00-00 00:00:00'),(2144,0,0,3450,4875,3353,0,'2025-12-02','OA','BP','132/78','drarchit','2025-12-02 11:15:41','','0000-00-00 00:00:00'),(2145,0,0,3452,4877,3355,0,'2025-12-02','OA','BP','132/78','drarchit','2025-12-02 11:29:37','','0000-00-00 00:00:00'),(2146,0,0,3453,4882,3356,0,'2025-12-02','OA','BP','134/86','drarchit','2025-12-02 11:53:05','','0000-00-00 00:00:00'),(2147,0,0,3465,4896,3368,0,'2025-12-02','OA','BP','142/86','drarchit','2025-12-02 12:02:27','','0000-00-00 00:00:00'),(2148,0,0,193,4616,180,0,'2025-11-29','OA','BP','125/78','drjayant','2025-12-02 12:13:13','drjayant','2025-12-02 12:13:15'),(2149,0,0,193,4616,180,0,'2025-11-29','OA','PR','110','drjayant','2025-12-02 12:13:15','','0000-00-00 00:00:00'),(2150,0,0,3467,4900,3372,0,'2025-12-02','OA','BP','134/86','drarchit','2025-12-02 12:21:28','','0000-00-00 00:00:00'),(2151,0,0,3471,4904,3376,0,'2025-12-02','OA','BP','132/78','drarchit','2025-12-02 12:48:10','','0000-00-00 00:00:00'),(2152,0,0,3475,4910,3380,0,'2025-12-02','OA','BP','132/78','drarchit','2025-12-02 12:59:58','','0000-00-00 00:00:00'),(2153,0,0,2336,4912,2279,0,'2025-12-02','OA','BP','134/78','drarchit','2025-12-02 13:07:33','drarchit','2025-12-02 13:07:49'),(2154,0,0,3477,4913,3382,0,'2025-12-02','OA','BP','142/86','drarchit','2025-12-02 13:19:53','','0000-00-00 00:00:00'),(2155,0,0,3403,4780,0,227,'2025-12-01','OD','TP','98.4','mo','2025-12-02 14:08:11','','0000-00-00 00:00:00'),(2156,0,0,3403,4780,0,227,'2025-12-01','OD','PR','80','mo','2025-12-02 14:08:14','','0000-00-00 00:00:00'),(2157,0,0,3403,4780,0,227,'2025-12-01','OD','SpO2','98','mo','2025-12-02 14:08:18','','0000-00-00 00:00:00'),(2158,0,0,3403,4780,0,227,'2025-12-01','OD','BP','110/80','mo','2025-12-02 14:08:33','','0000-00-00 00:00:00'),(2159,0,0,3403,4780,0,227,'2025-12-01','OD','RR','20','mo','2025-12-02 14:08:37','','0000-00-00 00:00:00'),(2160,0,0,3403,4780,0,227,'2025-12-01','OD','BMI','NaN','mo','2025-12-02 14:08:38','','0000-00-00 00:00:00'),(2161,0,0,3336,4674,0,215,'2025-11-29','OD','SpO2','98','mo','2025-12-02 14:47:45','','0000-00-00 00:00:00'),(2162,0,0,3336,4674,0,215,'2025-11-29','OD','PR','78','mo','2025-12-02 14:47:47','','0000-00-00 00:00:00'),(2163,0,0,3336,4674,0,215,'2025-11-29','OD','BP','140/90','mo','2025-12-02 14:47:58','','0000-00-00 00:00:00'),(2164,0,0,2685,3611,0,171,'2025-11-18','OD','BP','118/70','mo','2025-12-02 15:21:30','','0000-00-00 00:00:00'),(2165,0,0,2685,3611,0,171,'2025-11-18','OD','SpO2','98','mo','2025-12-02 15:21:33','','0000-00-00 00:00:00'),(2166,0,0,2685,3611,0,171,'2025-11-18','OD','PR','86','mo','2025-12-02 15:21:36','','0000-00-00 00:00:00'),(2167,0,0,3447,4868,0,234,'2025-12-02','OA','SpO2','99','mo','2025-12-02 16:55:23','','0000-00-00 00:00:00'),(2168,0,0,3447,4868,0,234,'2025-12-02','OA','BP','130/90','mo','2025-12-02 16:55:27','','0000-00-00 00:00:00'),(2169,0,0,3447,4868,0,234,'2025-12-02','OA','PR','90','mo','2025-12-02 16:55:44','','0000-00-00 00:00:00'),(2170,0,0,3447,4868,0,234,'2025-12-02','OA','RBS','168','mo','2025-12-02 16:55:48','','0000-00-00 00:00:00'),(2171,0,0,3447,4868,0,234,'2025-12-02','OD','SpO2','99','mo','2025-12-02 16:55:55','','0000-00-00 00:00:00'),(2172,0,0,3447,4868,0,234,'2025-12-02','OD','BP','126/80','mo','2025-12-02 16:55:57','','0000-00-00 00:00:00'),(2173,0,0,3447,4868,0,234,'2025-12-02','OD','PR','78','mo','2025-12-02 16:55:59','','0000-00-00 00:00:00'),(2174,0,0,3485,4932,3389,0,'2025-12-02','OA','BP','134/78','drarchit','2025-12-02 18:11:16','','0000-00-00 00:00:00'),(2175,0,0,3486,4933,3390,0,'2025-12-02','OA','BP','154/86','drarchit','2025-12-02 18:16:54','','0000-00-00 00:00:00'),(2176,0,0,3492,4945,3397,0,'2025-12-02','OA','BP','152/90','drjayant','2025-12-02 18:20:34','drjayant','2025-12-02 18:32:58'),(2177,0,0,3492,4945,3397,0,'2025-12-02','OA','PR','80','drjayant','2025-12-02 18:20:36','drjayant','2025-12-02 18:32:58'),(2178,0,0,3317,4645,3234,0,'2025-11-29','OA','BP','132/78','drarchit','2025-12-02 18:22:24','','0000-00-00 00:00:00'),(2179,0,0,3494,4947,3399,0,'2025-12-02','OA','BP','130/82','drjayant','2025-12-02 18:25:51','drjayant','2025-12-02 18:25:56'),(2180,0,0,3494,4947,3399,0,'2025-12-02','OA','PR','85','drjayant','2025-12-02 18:25:56','','0000-00-00 00:00:00'),(2181,0,0,3489,4940,3394,0,'2025-12-02','OA','BP','134/86','drarchit','2025-12-02 18:29:31','','0000-00-00 00:00:00'),(2182,0,0,3492,4945,3397,0,'2025-12-02','OA','RBS','137','drjayant','2025-12-02 18:32:58','','0000-00-00 00:00:00'),(2183,0,0,3347,4691,0,220,'2025-11-30','OD','SpO2','98','mo','2025-12-02 18:35:22','','0000-00-00 00:00:00'),(2184,0,0,3347,4691,0,220,'2025-11-30','OD','BP','110/70','mo','2025-12-02 18:35:26','','0000-00-00 00:00:00'),(2185,0,0,3347,4691,0,220,'2025-11-30','OD','PR','84','mo','2025-12-02 18:35:30','','0000-00-00 00:00:00'),(2186,0,0,3493,4946,3398,0,'2025-12-02','OA','BP','132/78','drarchit','2025-12-02 18:45:01','','0000-00-00 00:00:00'),(2187,0,0,3491,4943,3396,0,'2025-12-02','OA','BP','132/86','drarchit','2025-12-02 18:46:24','','0000-00-00 00:00:00'),(2188,0,0,3361,4711,0,223,'2025-12-01','OD','SpO2','99','mo','2025-12-02 18:48:10','','0000-00-00 00:00:00'),(2189,0,0,3361,4711,0,223,'2025-12-01','OD','BP','136/80','mo','2025-12-02 18:48:17','','0000-00-00 00:00:00'),(2190,0,0,3361,4711,0,223,'2025-12-01','OD','PR','66','mo','2025-12-02 18:48:19','','0000-00-00 00:00:00'),(2191,0,0,3495,4948,3400,0,'2025-12-02','OA','BP','134/86','drarchit','2025-12-02 18:50:48','','0000-00-00 00:00:00'),(2192,0,0,3497,4952,3402,0,'2025-12-02','OA','BP','132/74','drarchit','2025-12-02 18:57:17','','0000-00-00 00:00:00'),(2193,0,0,3496,4951,3401,0,'2025-12-02','OA','BP','164/92','drarchit','2025-12-02 19:03:41','drarchit','2025-12-02 19:04:03'),(2194,0,0,3499,4957,3404,0,'2025-12-02','OA','BP','186/98','drarchit','2025-12-02 19:16:18','','0000-00-00 00:00:00'),(2195,0,0,3498,4954,3403,0,'2025-12-02','OA','BP','132/78','drarchit','2025-12-02 19:26:50','','0000-00-00 00:00:00'),(2196,0,0,3502,4962,3407,0,'2025-12-02','OA','BP','130/82','drjayant','2025-12-02 19:29:32','drjayant','2025-12-02 19:29:36'),(2197,0,0,3502,4962,3407,0,'2025-12-02','OA','PR','85','drjayant','2025-12-02 19:29:36','','0000-00-00 00:00:00'),(2198,0,0,3500,4960,3405,0,'2025-12-02','OA','BP','132/78','drarchit','2025-12-02 19:36:46','','0000-00-00 00:00:00'),(2199,0,0,3503,4966,3408,0,'2025-12-02','OA','BP','134/86','drarchit','2025-12-02 19:57:38','','0000-00-00 00:00:00'),(2200,0,0,3440,4857,0,232,'2025-12-02','OA','TP','98.4','mo','2025-12-02 23:53:31','','0000-00-00 00:00:00'),(2201,0,0,3440,4857,0,232,'2025-12-02','OA','PR','80','mo','2025-12-02 23:53:32','','0000-00-00 00:00:00'),(2202,0,0,3440,4857,0,232,'2025-12-02','OA','SpO2','97','mo','2025-12-02 23:53:33','','0000-00-00 00:00:00'),(2203,0,0,3440,4857,0,232,'2025-12-02','OA','BP','120/60','mo','2025-12-02 23:53:40','','0000-00-00 00:00:00'),(2204,0,0,3440,4857,0,232,'2025-12-02','OA','RR','20','mo','2025-12-02 23:53:49','','0000-00-00 00:00:00'),(2205,0,0,3438,4855,0,231,'2025-12-02','OA','PR','90','mo','2025-12-03 01:15:51','','0000-00-00 00:00:00'),(2206,0,0,3438,4855,0,231,'2025-12-02','OA','SpO2','98','mo','2025-12-03 01:15:53','','0000-00-00 00:00:00'),(2207,0,0,3438,4855,0,231,'2025-12-02','OA','BP','110/80','mo','2025-12-03 01:16:00','','0000-00-00 00:00:00'),(2208,0,0,3438,4855,0,231,'2025-12-02','OA','RR','20','mo','2025-12-03 01:16:03','','0000-00-00 00:00:00'),(2209,0,0,3438,4855,0,231,'2025-12-02','OD','TP','98.4','mo','2025-12-03 10:10:49','','0000-00-00 00:00:00'),(2210,0,0,3438,4855,0,231,'2025-12-02','OD','PR','78','mo','2025-12-03 10:10:53','','0000-00-00 00:00:00'),(2211,0,0,3438,4855,0,231,'2025-12-02','OD','SpO2','98','mo','2025-12-03 10:10:54','','0000-00-00 00:00:00'),(2212,0,0,3438,4855,0,231,'2025-12-02','OD','BP','126/82','mo','2025-12-03 10:10:59','','0000-00-00 00:00:00'),(2213,0,0,3438,4855,0,231,'2025-12-02','OD','RR','20','mo','2025-12-03 10:11:16','','0000-00-00 00:00:00'),(2214,0,0,3522,4997,3425,0,'2025-12-03','OA','BP','160/95','drjayant','2025-12-03 11:21:56','drjayant','2025-12-03 11:22:15'),(2215,0,0,3522,4997,3425,0,'2025-12-03','OA','PR','82','drjayant','2025-12-03 11:22:15','','0000-00-00 00:00:00'),(2216,0,0,3524,5000,3427,0,'2025-12-03','OA','SpO2','97','drjayant','2025-12-03 11:27:46','','0000-00-00 00:00:00'),(2217,0,0,3516,4986,3419,0,'2025-12-03','OA','BP','        ','drarchit','2025-12-03 11:30:02','drarchit','2025-12-03 13:08:42'),(2218,0,0,36,5007,33,0,'2025-12-03','OA','BP','150/88','drarchit','2025-12-03 11:40:09','drarchit','2025-12-03 11:40:47'),(2219,0,0,36,5007,33,0,'2025-12-03','OA','RBS','161','drarchit','2025-12-03 11:40:36','drarchit','2025-12-03 11:40:47'),(2220,0,0,36,5007,33,0,'2025-12-03','OA','PR','80','drarchit','2025-12-03 11:40:47','','0000-00-00 00:00:00'),(2221,0,0,3529,5011,3432,0,'2025-12-03','OA','BP','152/84','drjayant','2025-12-03 11:42:46','drjayant','2025-12-03 11:42:48'),(2222,0,0,3529,5011,3432,0,'2025-12-03','OA','PR','70','drjayant','2025-12-03 11:42:48','','0000-00-00 00:00:00'),(2223,0,0,3537,5026,3440,0,'2025-12-03','OA','BP','132/78','drarchit','2025-12-03 12:32:31','','0000-00-00 00:00:00'),(2224,0,0,3541,5032,3444,0,'2025-12-03','OA','BP','132/78','drarchit','2025-12-03 13:06:11','','0000-00-00 00:00:00'),(2225,0,0,2866,3909,0,181,'2025-11-21','OD','TP','98.4','mo','2025-12-03 16:17:52','','0000-00-00 00:00:00'),(2226,0,0,2866,3909,0,181,'2025-11-21','OD','PR','80','mo','2025-12-03 16:17:55','','0000-00-00 00:00:00'),(2227,0,0,2866,3909,0,181,'2025-11-21','OD','SpO2','98','mo','2025-12-03 16:18:02','','0000-00-00 00:00:00'),(2228,0,0,2866,3909,0,181,'2025-11-21','OD','BP','130/80','mo','2025-12-03 16:18:42','','0000-00-00 00:00:00'),(2229,0,0,3480,4920,0,235,'2025-12-02','OA','TP','98.4','mo','2025-12-03 17:39:56','','0000-00-00 00:00:00'),(2230,0,0,3480,4920,0,235,'2025-12-02','OA','PR','80','mo','2025-12-03 17:40:25','','0000-00-00 00:00:00'),(2231,0,0,3480,4920,0,235,'2025-12-02','OA','SpO2','97','mo','2025-12-03 17:40:32','','0000-00-00 00:00:00'),(2232,0,0,3564,5068,3465,0,'2025-12-03','OA','BP','164/86','drarchit','2025-12-03 18:27:29','','0000-00-00 00:00:00'),(2233,0,0,3565,5069,3466,0,'2025-12-03','OA','BP','132/78','drarchit','2025-12-03 18:35:12','','0000-00-00 00:00:00'),(2234,0,0,3394,4802,0,229,'2025-12-01','OD','TP','98.4','mo','2025-12-03 18:35:23','','0000-00-00 00:00:00'),(2235,0,0,3394,4802,0,229,'2025-12-01','OD','PR','89','mo','2025-12-03 18:35:25','','0000-00-00 00:00:00'),(2236,0,0,3394,4802,0,229,'2025-12-01','OD','SpO2','99','mo','2025-12-03 18:35:29','','0000-00-00 00:00:00'),(2237,0,0,3394,4802,0,229,'2025-12-01','OD','BP','126/80','mo','2025-12-03 18:35:34','','0000-00-00 00:00:00'),(2238,0,0,3394,4802,0,229,'2025-12-01','OD','RR','20','mo','2025-12-03 18:35:38','','0000-00-00 00:00:00'),(2239,0,0,3572,5077,3473,0,'2025-12-03','OA','BP','130/82','drjayant','2025-12-03 18:40:53','','0000-00-00 00:00:00'),(2240,0,0,3085,4266,0,203,'2025-11-26','OA','TP','98.2','mo','2025-12-03 18:55:35','','0000-00-00 00:00:00'),(2241,0,0,3085,4266,0,203,'2025-11-26','OA','PR','114','mo','2025-12-03 18:55:38','','0000-00-00 00:00:00'),(2242,0,0,3582,5088,3483,0,'2025-12-03','OA','PR','90','drjayant','2025-12-03 18:56:15','','0000-00-00 00:00:00'),(2243,0,0,3582,5088,3483,0,'2025-12-03','OA','BP','150/82','drjayant','2025-12-03 18:56:15','drjayant','2025-12-03 18:56:16'),(2244,0,0,3085,4266,0,203,'2025-11-26','OA','SpO2','60','mo','2025-12-03 18:57:27','','0000-00-00 00:00:00'),(2245,0,0,3085,4266,0,203,'2025-11-26','OA','BP','100/60','mo','2025-12-03 18:57:42','','0000-00-00 00:00:00'),(2246,0,0,3085,4266,0,203,'2025-11-26','OA','RR','54','mo','2025-12-03 18:57:46','','0000-00-00 00:00:00'),(2247,0,0,3085,4266,0,203,'2025-11-26','OA','RBS','210','mo','2025-12-03 18:58:30','','0000-00-00 00:00:00'),(2248,0,0,3085,4266,0,203,'2025-11-26','OD','TP','98.4','mo','2025-12-03 18:58:45','','0000-00-00 00:00:00'),(2249,0,0,3085,4266,0,203,'2025-11-26','OD','PR','90','mo','2025-12-03 18:58:50','','0000-00-00 00:00:00'),(2250,0,0,3085,4266,0,203,'2025-11-26','OD','SpO2','96','mo','2025-12-03 18:58:54','','0000-00-00 00:00:00'),(2251,0,0,3085,4266,0,203,'2025-11-26','OD','BP','136/54','mo','2025-12-03 18:59:11','','0000-00-00 00:00:00'),(2252,0,0,3085,4266,0,203,'2025-11-26','OD','RR','20','mo','2025-12-03 18:59:15','','0000-00-00 00:00:00'),(2253,0,0,3575,5080,3476,0,'2025-12-03','OA','BP','134/86','drarchit','2025-12-03 19:02:10','','0000-00-00 00:00:00'),(2254,0,0,3579,5085,3480,0,'2025-12-03','OA','BP','134/86','drarchit','2025-12-03 19:07:24','','0000-00-00 00:00:00'),(2255,0,0,3578,5084,3479,0,'2025-12-03','OA','BP','134/86','drarchit','2025-12-03 19:14:10','','0000-00-00 00:00:00'),(2256,0,0,3581,5087,3482,0,'2025-12-03','OA','BP','132/86','drarchit','2025-12-03 19:19:36','','0000-00-00 00:00:00'),(2257,0,0,3427,4834,0,230,'2025-12-01','OD','PR','66','mo','2025-12-03 20:49:48','','0000-00-00 00:00:00'),(2258,0,0,3427,4834,0,230,'2025-12-01','OD','SpO2','97','mo','2025-12-03 20:49:52','','0000-00-00 00:00:00'),(2259,0,0,3427,4834,0,230,'2025-12-01','OD','BP','136/80','mo','2025-12-03 20:49:56','','0000-00-00 00:00:00'),(2260,0,0,3501,4968,0,236,'2025-12-02','OA','SpO2','95','mo','2025-12-03 23:45:39','','0000-00-00 00:00:00'),(2261,0,0,3501,4968,0,236,'2025-12-02','OA','BP','100/60','mo','2025-12-03 23:45:42','','0000-00-00 00:00:00'),(2262,0,0,3501,4968,0,236,'2025-12-02','OA','RR','24','mo','2025-12-03 23:45:45','','0000-00-00 00:00:00'),(2263,0,0,3501,4968,0,236,'2025-12-02','OA','PR','103','mo','2025-12-03 23:46:28','','0000-00-00 00:00:00'),(2264,0,0,3501,4968,0,236,'2025-12-02','OA','TP','102','mo','2025-12-03 23:46:37','','0000-00-00 00:00:00'),(2265,0,0,3501,4968,0,236,'2025-12-02','OA','RBS','105','mo','2025-12-03 23:46:42','','0000-00-00 00:00:00'),(2266,0,0,3345,4688,0,218,'2025-11-30','OA','BP','130/82','mo','2025-12-03 23:51:16','','0000-00-00 00:00:00'),(2267,0,0,3345,4688,0,218,'2025-11-30','OA','SpO2','98','mo','2025-12-03 23:51:16','','0000-00-00 00:00:00'),(2268,0,0,3345,4688,0,218,'2025-11-30','OA','PR','128','mo','2025-12-03 23:51:20','','0000-00-00 00:00:00'),(2269,0,0,3345,4688,0,218,'2025-11-30','OA','TP','101.2','mo','2025-12-03 23:51:27','','0000-00-00 00:00:00'),(2270,0,0,3543,5036,0,239,'2025-12-03','OA','PR','80','mo','2025-12-03 23:59:36','','0000-00-00 00:00:00'),(2271,0,0,3543,5036,0,239,'2025-12-03','OA','TP','101','mo','2025-12-03 23:59:37','','0000-00-00 00:00:00'),(2272,0,0,3543,5036,0,239,'2025-12-03','OA','RR','24','mo','2025-12-03 23:59:39','','0000-00-00 00:00:00'),(2273,0,0,3543,5036,0,239,'2025-12-03','OA','BP','110/70','mo','2025-12-03 23:59:43','','0000-00-00 00:00:00'),(2274,0,0,3543,5036,0,239,'2025-12-03','OA','SpO2','96','mo','2025-12-03 23:59:47','','0000-00-00 00:00:00'),(2275,0,0,3543,5036,0,239,'2025-12-03','OA','RBS','169','mo','2025-12-04 00:00:01','','0000-00-00 00:00:00'),(2276,0,0,3444,4863,0,233,'2025-12-02','OA','PR','94','mo','2025-12-04 00:08:38','','0000-00-00 00:00:00'),(2277,0,0,3444,4863,0,233,'2025-12-02','OA','SpO2','94','mo','2025-12-04 00:08:42','','0000-00-00 00:00:00'),(2278,0,0,3444,4863,0,233,'2025-12-02','OA','BP','60sys','mo','2025-12-04 00:08:49','','0000-00-00 00:00:00'),(2279,0,0,3444,4863,0,233,'2025-12-02','OA','RR','16','mo','2025-12-04 00:08:55','','0000-00-00 00:00:00'),(2280,0,0,3597,5112,3497,0,'2025-12-04','OA','BP','132/82','drjayant','2025-12-04 11:22:40','drjayant','2025-12-04 11:22:45'),(2281,0,0,3597,5112,3497,0,'2025-12-04','OA','SpO2','98','drjayant','2025-12-04 11:22:43','drjayant','2025-12-04 11:22:45'),(2282,0,0,3597,5112,3497,0,'2025-12-04','OA','PR','85','drjayant','2025-12-04 11:22:45','','0000-00-00 00:00:00'),(2283,0,0,3600,5118,3499,0,'2025-12-04','OA','BP','140/86','drarchit','2025-12-04 11:27:11','','0000-00-00 00:00:00'),(2284,0,0,3440,4857,0,232,'2025-12-02','OD','TP','98.1','mo','2025-12-04 11:38:46','','0000-00-00 00:00:00'),(2285,0,0,3440,4857,0,232,'2025-12-02','OD','PR','72','mo','2025-12-04 11:39:33','','0000-00-00 00:00:00'),(2286,0,0,3440,4857,0,232,'2025-12-02','OD','SpO2','98','mo','2025-12-04 11:39:36','','0000-00-00 00:00:00'),(2287,0,0,3440,4857,0,232,'2025-12-02','OD','BP','138/82','mo','2025-12-04 11:39:45','','0000-00-00 00:00:00'),(2288,0,0,3440,4857,0,232,'2025-12-02','OD','RR','20','mo','2025-12-04 11:39:47','','0000-00-00 00:00:00'),(2289,0,0,3606,5128,3504,0,'2025-12-04','OA','BP','144/86','drarchit','2025-12-04 11:49:58','','0000-00-00 00:00:00'),(2290,0,0,3543,5036,0,239,'2025-12-03','OD','TP','98.2','mo','2025-12-04 11:51:59','','0000-00-00 00:00:00'),(2291,0,0,3543,5036,0,239,'2025-12-03','OD','PR','85','mo','2025-12-04 11:52:11','','0000-00-00 00:00:00'),(2292,0,0,3543,5036,0,239,'2025-12-03','OD','SpO2','97','mo','2025-12-04 11:52:18','','0000-00-00 00:00:00'),(2293,0,0,3543,5036,0,239,'2025-12-03','OD','BP','122/78','mo','2025-12-04 11:52:37','','0000-00-00 00:00:00'),(2294,0,0,3543,5036,0,239,'2025-12-03','OD','RR','22','mo','2025-12-04 11:52:43','','0000-00-00 00:00:00'),(2295,0,0,3616,5142,3515,0,'2025-12-04','OA','BP','128/74','drjayant','2025-12-04 12:18:05','drjayant','2025-12-04 12:18:13'),(2296,0,0,3616,5142,3515,0,'2025-12-04','OA','PR','140','drjayant','2025-12-04 12:18:13','','0000-00-00 00:00:00'),(2297,0,0,3622,5150,3520,0,'2025-12-04','OA','BP','118/72','drjayant','2025-12-04 12:39:51','drjayant','2025-12-04 12:39:52'),(2298,0,0,3622,5150,3520,0,'2025-12-04','OA','PR','90','drjayant','2025-12-04 12:39:52','','0000-00-00 00:00:00'),(2299,0,0,2780,5189,3542,0,'2025-12-04','OA','BP','134/78','drarchit','2025-12-04 18:34:42','','0000-00-00 00:00:00'),(2300,0,0,3404,4781,0,228,'2025-12-01','OA','TP','98.2','mo','2025-12-04 18:36:03','','0000-00-00 00:00:00'),(2301,0,0,3404,4781,0,228,'2025-12-01','OA','PR','164','mo','2025-12-04 18:36:08','','0000-00-00 00:00:00'),(2302,0,0,3404,4781,0,228,'2025-12-01','OA','SpO2','60','mo','2025-12-04 18:36:12','','0000-00-00 00:00:00'),(2303,0,0,3404,4781,0,228,'2025-12-01','OA','BP','180/110','mo','2025-12-04 18:36:29','','0000-00-00 00:00:00'),(2304,0,0,3404,4781,0,228,'2025-12-01','OA','RR','40','mo','2025-12-04 18:36:42','','0000-00-00 00:00:00'),(2305,0,0,3098,5192,3018,0,'2025-12-04','OA','BP','132/78','drarchit','2025-12-04 18:43:56','drarchit','2025-12-04 18:45:56'),(2306,0,0,3098,5192,3018,0,'2025-12-04','OA','RBS','165','drarchit','2025-12-04 18:45:56','','0000-00-00 00:00:00'),(2307,0,0,2567,5199,2510,0,'2025-12-04','OA','BP','134/86','drarchit','2025-12-04 18:57:02','','0000-00-00 00:00:00'),(2308,0,0,3649,5205,3548,0,'2025-12-04','OA','BP','134/86','drarchit','2025-12-04 19:17:28','','0000-00-00 00:00:00'),(2309,0,0,3349,4693,0,221,'2025-11-30','OD','TP','98.4','mo','2025-12-04 19:18:19','','0000-00-00 00:00:00'),(2310,0,0,3349,4693,0,221,'2025-11-30','OA','TP','98.2','mo','2025-12-04 19:18:22','','0000-00-00 00:00:00'),(2311,0,0,3349,4693,0,221,'2025-11-30','OD','PR','78','mo','2025-12-04 19:18:24','','0000-00-00 00:00:00'),(2312,0,0,3349,4693,0,221,'2025-11-30','OD','SpO2','98','mo','2025-12-04 19:18:27','','0000-00-00 00:00:00'),(2313,0,0,3349,4693,0,221,'2025-11-30','OD','BP','122/78','mo','2025-12-04 19:18:33','','0000-00-00 00:00:00'),(2314,0,0,3349,4693,0,221,'2025-11-30','OD','RR','20','mo','2025-12-04 19:18:36','','0000-00-00 00:00:00'),(2315,0,0,3647,5201,3546,0,'2025-12-04','OA','RBS','143','drarchit','2025-12-04 19:23:12','drarchit','2025-12-04 19:23:32'),(2316,0,0,3647,5201,3546,0,'2025-12-04','OA','BP','132/78','drarchit','2025-12-04 19:23:32','','0000-00-00 00:00:00'),(2317,0,0,3631,5164,0,246,'2025-12-04','OA','TP','98.4','mo','2025-12-04 19:31:36','','0000-00-00 00:00:00'),(2318,0,0,3631,5164,0,246,'2025-12-04','OD','TP','98.2','mo','2025-12-04 19:31:55','','0000-00-00 00:00:00'),(2319,0,0,3631,5164,0,246,'2025-12-04','OD','PR','78','mo','2025-12-04 19:31:57','','0000-00-00 00:00:00'),(2320,0,0,3631,5164,0,246,'2025-12-04','OD','SpO2','99','mo','2025-12-04 19:32:04','','0000-00-00 00:00:00'),(2321,0,0,3631,5164,0,246,'2025-12-04','OA','PR','103','mo','2025-12-04 19:32:16','','0000-00-00 00:00:00'),(2322,0,0,3631,5164,0,246,'2025-12-04','OA','SpO2','96','mo','2025-12-04 19:32:18','','0000-00-00 00:00:00'),(2323,0,0,3631,5164,0,246,'2025-12-04','OA','RR','20','mo','2025-12-04 19:32:22','','0000-00-00 00:00:00'),(2324,0,0,3631,5164,0,246,'2025-12-04','OD','RR','20','mo','2025-12-04 19:32:24','','0000-00-00 00:00:00'),(2325,0,0,3631,5164,0,246,'2025-12-04','OD','BP','116/74','mo','2025-12-04 19:32:33','','0000-00-00 00:00:00'),(2326,0,0,3031,5215,2952,0,'2025-12-04','OA','BP','168/88','drarchit','2025-12-04 20:13:40','drarchit','2025-12-04 20:13:58'),(2327,0,0,3031,5215,2952,0,'2025-12-04','OA','RBS','125','drarchit','2025-12-04 20:13:58','','0000-00-00 00:00:00'),(2328,0,0,3631,5164,0,246,'2025-12-04','OA','BP','126/78','mo','2025-12-04 20:40:15','','0000-00-00 00:00:00'),(2329,0,0,3506,4970,0,237,'2025-12-02','OD','TP','100.4','mo','2025-12-04 22:14:09','','0000-00-00 00:00:00'),(2330,0,0,3506,4970,0,237,'2025-12-02','OD','PR','112','mo','2025-12-04 22:14:11','','0000-00-00 00:00:00'),(2331,0,0,3506,4970,0,237,'2025-12-02','OD','SpO2','98','mo','2025-12-04 22:14:14','','0000-00-00 00:00:00'),(2332,0,0,3506,4970,0,237,'2025-12-02','OD','BP','124/70','mo','2025-12-04 22:14:19','','0000-00-00 00:00:00'),(2333,0,0,3506,4970,0,237,'2025-12-02','OD','RR','24','mo','2025-12-04 22:14:26','','0000-00-00 00:00:00'),(2334,0,0,3506,4970,0,237,'2025-12-02','OD','RBS','146','mo','2025-12-04 22:14:30','','0000-00-00 00:00:00'),(2335,0,0,3401,4778,0,226,'2025-12-01','OD','PR','89','mo','2025-12-05 11:22:38','','0000-00-00 00:00:00'),(2336,0,0,3401,4778,0,226,'2025-12-01','OD','SpO2','99','mo','2025-12-05 11:22:42','','0000-00-00 00:00:00'),(2337,0,0,3401,4778,0,226,'2025-12-01','OD','BP','120/80','mo','2025-12-05 11:22:47','','0000-00-00 00:00:00'),(2338,0,0,3401,4778,0,226,'2025-12-01','OD','RR','22','mo','2025-12-05 11:22:49','','0000-00-00 00:00:00'),(2339,0,0,3657,5225,3557,0,'2025-12-05','OA','BP','124/86','drarchit','2025-12-05 11:27:45','','0000-00-00 00:00:00'),(2340,0,0,2352,5230,2295,0,'2025-12-05','OA','BP','114/86','drarchit','2025-12-05 11:29:52','','0000-00-00 00:00:00'),(2341,0,0,3501,4968,0,236,'2025-12-02','OD','BP','116/80','mo','2025-12-05 11:30:26','','0000-00-00 00:00:00'),(2342,0,0,3501,4968,0,236,'2025-12-02','OD','RR','22','mo','2025-12-05 11:30:28','','0000-00-00 00:00:00'),(2343,0,0,3501,4968,0,236,'2025-12-02','OD','PR','77','mo','2025-12-05 11:30:32','','0000-00-00 00:00:00'),(2344,0,0,3501,4968,0,236,'2025-12-02','OD','SpO2','97','mo','2025-12-05 11:30:40','','0000-00-00 00:00:00'),(2345,0,0,3661,5231,3561,0,'2025-12-05','OA','BP','134/86','drarchit','2025-12-05 11:33:36','','0000-00-00 00:00:00'),(2346,0,0,3675,5248,3576,0,'2025-12-05','OA','BP','142/86','drarchit','2025-12-05 11:53:41','','0000-00-00 00:00:00'),(2347,0,0,3678,5255,3579,0,'2025-12-05','OA','BP','134/86','drarchit','2025-12-05 12:33:16','','0000-00-00 00:00:00'),(2348,0,0,3681,5258,3582,0,'2025-12-05','OA','BP','134/86','drarchit','2025-12-05 12:46:42','','0000-00-00 00:00:00'),(2349,0,0,3684,5261,3585,0,'2025-12-05','OA','BP',' ','drarchit','2025-12-05 12:52:28','','0000-00-00 00:00:00'),(2350,0,0,3444,4863,0,233,'2025-12-02','OD','PR','78','mo','2025-12-05 12:57:48','','0000-00-00 00:00:00'),(2351,0,0,3444,4863,0,233,'2025-12-02','OD','SpO2','99','mo','2025-12-05 12:57:50','','0000-00-00 00:00:00'),(2352,0,0,3444,4863,0,233,'2025-12-02','OD','BP','116/70','mo','2025-12-05 12:57:55','','0000-00-00 00:00:00'),(2353,0,0,3404,4781,0,228,'2025-12-01','OD','PR','100','mo','2025-12-05 13:21:27','','0000-00-00 00:00:00'),(2354,0,0,3404,4781,0,228,'2025-12-01','OD','SpO2','94','mo','2025-12-05 13:21:30','','0000-00-00 00:00:00'),(2355,0,0,3404,4781,0,228,'2025-12-01','OD','BP','140/90','mo','2025-12-05 13:21:41','','0000-00-00 00:00:00'),(2356,0,0,3627,5223,0,248,'2025-12-05','OA','TP','98.4','mo','2025-12-05 15:46:17','','0000-00-00 00:00:00'),(2357,0,0,3627,5223,0,248,'2025-12-05','OA','PR','120','mo','2025-12-05 15:46:20','','0000-00-00 00:00:00'),(2358,0,0,3627,5223,0,248,'2025-12-05','OA','SpO2','97','mo','2025-12-05 15:46:25','','0000-00-00 00:00:00'),(2359,0,0,3627,5223,0,248,'2025-12-05','OA','BP','118/70','mo','2025-12-05 15:46:29','','0000-00-00 00:00:00'),(2360,0,0,3627,5223,0,248,'2025-12-05','OA','RR','22','mo','2025-12-05 15:46:42','','0000-00-00 00:00:00'),(2361,0,0,3627,5223,0,248,'2025-12-05','OD','TP','98.2','mo','2025-12-05 15:52:51','','0000-00-00 00:00:00'),(2362,0,0,3627,5223,0,248,'2025-12-05','OD','PR','81','mo','2025-12-05 15:52:56','','0000-00-00 00:00:00'),(2363,0,0,3627,5223,0,248,'2025-12-05','OD','SpO2','99','mo','2025-12-05 15:53:02','','0000-00-00 00:00:00'),(2364,0,0,3627,5223,0,248,'2025-12-05','OD','BP','122/78','mo','2025-12-05 15:53:07','','0000-00-00 00:00:00'),(2365,0,0,3627,5223,0,248,'2025-12-05','OD','RR','18','mo','2025-12-05 15:53:14','','0000-00-00 00:00:00'),(2366,0,0,3696,5298,3598,0,'2025-12-05','OA','BP','132/78','drarchit','2025-12-05 18:18:52','','0000-00-00 00:00:00'),(2367,0,0,3703,5310,3603,0,'2025-12-05','OA','BP','184/98','drarchit','2025-12-05 18:32:27','drarchit','2025-12-05 18:58:39'),(2368,0,0,3703,5310,3603,0,'2025-12-05','OA','RBS','399','drarchit','2025-12-05 18:58:39','','0000-00-00 00:00:00'),(2369,0,0,3702,5309,3602,0,'2025-12-05','OA','BP','133/78','drarchit','2025-12-05 19:08:10','','0000-00-00 00:00:00'),(2370,0,0,3707,5317,3606,0,'2025-12-05','OA','BP','134/86','drarchit','2025-12-05 19:13:56','','0000-00-00 00:00:00'),(2371,0,0,1463,5319,1422,0,'2025-12-05','OA','BP','134/78','drarchit','2025-12-05 19:17:09','','0000-00-00 00:00:00'),(2372,0,0,3695,5296,3597,0,'2025-12-05','OA','BP','132/78','drarchit','2025-12-05 19:20:07','','0000-00-00 00:00:00'),(2373,0,0,3712,5325,3611,0,'2025-12-05','OA','BP','130/82','drjayant','2025-12-05 19:22:15','drjayant','2025-12-05 19:23:41'),(2374,0,0,3712,5325,3611,0,'2025-12-05','OA','SpO2','97','drjayant','2025-12-05 19:23:38','drjayant','2025-12-05 19:23:41'),(2375,0,0,3712,5325,3611,0,'2025-12-05','OA','PR','90','drjayant','2025-12-05 19:23:41','','0000-00-00 00:00:00'),(2376,0,0,3709,5320,3608,0,'2025-12-05','OA','BP','134/86','drarchit','2025-12-05 19:24:27','','0000-00-00 00:00:00'),(2377,0,0,3711,5323,3610,0,'2025-12-05','OA','BP','138/78','drarchit','2025-12-05 19:32:46','','0000-00-00 00:00:00'),(2378,0,0,3598,5113,0,242,'2025-12-04','OD','TP','98.4','mo','2025-12-05 19:38:03','','0000-00-00 00:00:00'),(2379,0,0,3598,5113,0,242,'2025-12-04','OD','PR','87','mo','2025-12-05 19:38:05','','0000-00-00 00:00:00'),(2380,0,0,3598,5113,0,242,'2025-12-04','OD','SpO2','96','mo','2025-12-05 19:38:08','','0000-00-00 00:00:00'),(2381,0,0,3598,5113,0,242,'2025-12-04','OD','BP','120/70','mo','2025-12-05 19:38:13','','0000-00-00 00:00:00'),(2382,0,0,3598,5113,0,242,'2025-12-04','OD','RR','20','mo','2025-12-05 19:38:17','mo','2025-12-06 19:22:31'),(2383,0,0,3151,5328,3613,0,'2025-12-05','OA','BP','144/88','drarchit','2025-12-05 19:41:34','','0000-00-00 00:00:00'),(2384,0,0,3713,5326,3612,0,'2025-12-05','OA','BP','134/86','drarchit','2025-12-05 19:46:35','','0000-00-00 00:00:00'),(2385,0,0,3715,5330,3615,0,'2025-12-05','OA','BP','134/86','drarchit','2025-12-05 19:57:23','drarchit','2025-12-05 19:57:28'),(2386,0,0,3715,5330,3615,0,'2025-12-05','OA','RBS','187','drarchit','2025-12-05 19:57:28','','0000-00-00 00:00:00'),(2387,0,0,792,5333,761,0,'2025-12-05','OA','BP','134/86','drarchit','2025-12-05 20:04:37','','0000-00-00 00:00:00'),(2388,0,0,3698,5301,0,249,'2025-12-05','OA','TP','98.4','mo','2025-12-06 01:17:33','','0000-00-00 00:00:00'),(2389,0,0,3698,5301,0,249,'2025-12-05','OA','PR','100','mo','2025-12-06 01:17:36','','0000-00-00 00:00:00'),(2390,0,0,3698,5301,0,249,'2025-12-05','OA','SpO2','97','mo','2025-12-06 01:17:40','','0000-00-00 00:00:00'),(2391,0,0,3698,5301,0,249,'2025-12-05','OA','BP','122/76','mo','2025-12-06 01:17:48','','0000-00-00 00:00:00'),(2392,0,0,3698,5301,0,249,'2025-12-05','OA','RR','22','mo','2025-12-06 01:17:56','','0000-00-00 00:00:00'),(2393,0,0,3383,4751,0,224,'2025-12-01','OA','TP','98.4','mo','2025-12-06 01:27:14','','0000-00-00 00:00:00'),(2394,0,0,3383,4751,0,224,'2025-12-01','OA','PR','130','mo','2025-12-06 01:27:18','','0000-00-00 00:00:00'),(2395,0,0,3383,4751,0,224,'2025-12-01','OA','BP','160/100','mo','2025-12-06 01:27:27','','0000-00-00 00:00:00'),(2396,0,0,3383,4751,0,224,'2025-12-01','OA','RR','24','mo','2025-12-06 01:27:33','','0000-00-00 00:00:00'),(2397,0,0,3621,5148,0,244,'2025-12-04','OA','TP','98.4','mo','2025-12-06 01:44:13','','0000-00-00 00:00:00'),(2398,0,0,3621,5148,0,244,'2025-12-04','OA','PR','70','mo','2025-12-06 01:44:27','','0000-00-00 00:00:00'),(2399,0,0,3621,5148,0,244,'2025-12-04','OA','SpO2','95','mo','2025-12-06 01:44:28','','0000-00-00 00:00:00'),(2400,0,0,3621,5148,0,244,'2025-12-04','OA','BP','124/86','mo','2025-12-06 01:44:34','','0000-00-00 00:00:00'),(2401,0,0,3621,5148,0,244,'2025-12-04','OA','RR','22','mo','2025-12-06 01:44:37','','0000-00-00 00:00:00'),(2402,0,0,3723,5343,3620,0,'2025-12-06','OA','BP','132/78','drarchit','2025-12-06 11:35:02','','0000-00-00 00:00:00'),(2403,0,0,574,5362,548,0,'2025-12-06','OA','BP','134/86','drarchit','2025-12-06 11:48:36','','0000-00-00 00:00:00'),(2404,0,0,3621,5148,0,244,'2025-12-04','OD','TP','98.2','mo','2025-12-06 12:03:17','','0000-00-00 00:00:00'),(2405,0,0,3621,5148,0,244,'2025-12-04','OD','PR','74','mo','2025-12-06 12:03:20','','0000-00-00 00:00:00'),(2406,0,0,3621,5148,0,244,'2025-12-04','OD','SpO2','99','mo','2025-12-06 12:03:25','','0000-00-00 00:00:00'),(2407,0,0,3621,5148,0,244,'2025-12-04','OD','BP','122/78','mo','2025-12-06 12:03:33','','0000-00-00 00:00:00'),(2408,0,0,3621,5148,0,244,'2025-12-04','OD','RR','20','mo','2025-12-06 12:03:35','','0000-00-00 00:00:00'),(2409,0,0,1561,5368,1520,0,'2025-12-06','OA','BP','134/86','drarchit','2025-12-06 12:05:55','','0000-00-00 00:00:00'),(2410,0,0,3737,5378,3634,0,'2025-12-06','OA','BP','142/76','drarchit','2025-12-06 12:26:01','','0000-00-00 00:00:00'),(2411,0,0,3744,5392,3641,0,'2025-12-06','OA','BP','150/94','drjayant','2025-12-06 12:37:27','drjayant','2025-12-06 12:37:47'),(2412,0,0,3744,5392,3641,0,'2025-12-06','OA','PR','75','drjayant','2025-12-06 12:37:29','drjayant','2025-12-06 12:37:47'),(2413,0,0,3744,5392,3641,0,'2025-12-06','OA','SpO2','98','drjayant','2025-12-06 12:37:32','drjayant','2025-12-06 12:37:47'),(2414,0,0,3744,5392,3641,0,'2025-12-06','OA','RBS','240','drjayant','2025-12-06 12:37:47','','0000-00-00 00:00:00'),(2415,0,0,3698,5301,0,249,'2025-12-05','OD','TP','98.2','mo','2025-12-06 12:39:25','','0000-00-00 00:00:00'),(2416,0,0,3698,5301,0,249,'2025-12-05','OD','PR','91','mo','2025-12-06 12:39:32','','0000-00-00 00:00:00'),(2417,0,0,3698,5301,0,249,'2025-12-05','OD','SpO2','98','mo','2025-12-06 12:39:33','','0000-00-00 00:00:00'),(2418,0,0,3698,5301,0,249,'2025-12-05','OD','BP','126/82','mo','2025-12-06 12:39:43','','0000-00-00 00:00:00'),(2419,0,0,3698,5301,0,249,'2025-12-05','OD','RR','20','mo','2025-12-06 12:39:45','','0000-00-00 00:00:00'),(2420,0,0,3670,5241,3570,0,'2025-12-05','OA','BP','176/88','drarchit','2025-12-06 12:39:54','drarchit','2025-12-06 12:39:58'),(2421,0,0,3670,5241,3570,0,'2025-12-05','OA','RBS','419','drarchit','2025-12-06 12:39:58','','0000-00-00 00:00:00'),(2422,0,0,3729,5357,3626,0,'2025-12-06','OA','BP','134/86','drarchit','2025-12-06 12:46:58','','0000-00-00 00:00:00'),(2423,0,0,3383,4751,0,224,'2025-12-01','OD','TP','98.4','mo','2025-12-06 13:01:26','','0000-00-00 00:00:00'),(2424,0,0,3383,4751,0,224,'2025-12-01','OD','PR','80','mo','2025-12-06 13:01:34','','0000-00-00 00:00:00'),(2425,0,0,3383,4751,0,224,'2025-12-01','OD','SpO2','98','mo','2025-12-06 13:01:37','','0000-00-00 00:00:00'),(2426,0,0,3383,4751,0,224,'2025-12-01','OD','BP','124/80','mo','2025-12-06 13:01:42','','0000-00-00 00:00:00'),(2427,0,0,3383,4751,0,224,'2025-12-01','OD','RR','20','mo','2025-12-06 13:01:47','','0000-00-00 00:00:00'),(2428,0,0,3740,5383,3637,0,'2025-12-06','OA','BP','134/86','drarchit','2025-12-06 13:07:30','drarchit','2025-12-06 13:07:32'),(2429,0,0,3740,5383,3637,0,'2025-12-06','OA','RBS','223','drarchit','2025-12-06 13:07:32','','0000-00-00 00:00:00'),(2430,0,0,3749,5398,3646,0,'2025-12-06','OA','BP','128/82','drjayant','2025-12-06 13:10:34','drjayant','2025-12-06 13:10:35'),(2431,0,0,3749,5398,3646,0,'2025-12-06','OA','PR','85','drjayant','2025-12-06 13:10:35','','0000-00-00 00:00:00'),(2432,0,0,3750,5399,3647,0,'2025-12-06','OA','BP','134/78','drarchit','2025-12-06 13:20:13','','0000-00-00 00:00:00'),(2433,0,0,3721,5341,0,254,'2025-12-06','OA','TP','98.5','mo','2025-12-06 16:42:16','','0000-00-00 00:00:00'),(2434,0,0,3721,5341,0,254,'2025-12-06','OA','PR','92','mo','2025-12-06 16:42:23','','0000-00-00 00:00:00'),(2435,0,0,3721,5341,0,254,'2025-12-06','OA','SpO2','98','mo','2025-12-06 16:42:29','','0000-00-00 00:00:00'),(2436,0,0,3721,5341,0,254,'2025-12-06','OA','BP','128/76','mo','2025-12-06 16:42:42','','0000-00-00 00:00:00'),(2437,0,0,3721,5341,0,254,'2025-12-06','OA','RR','20','mo','2025-12-06 16:42:49','','0000-00-00 00:00:00'),(2438,0,0,3598,5113,0,242,'2025-12-04','OA','TP','98.2','mo','2025-12-06 18:58:12','','0000-00-00 00:00:00'),(2439,0,0,3598,5113,0,242,'2025-12-04','OA','PR','87','mo','2025-12-06 18:58:26','','0000-00-00 00:00:00'),(2440,0,0,3598,5113,0,242,'2025-12-04','OA','SpO2','96','mo','2025-12-06 18:58:28','','0000-00-00 00:00:00'),(2441,0,0,3598,5113,0,242,'2025-12-04','OA','BP','120/70','mo','2025-12-06 19:22:24','','0000-00-00 00:00:00'),(2442,0,0,3598,5113,0,242,'2025-12-04','OA','RR','22','mo','2025-12-06 19:22:28','','0000-00-00 00:00:00'),(2443,0,0,3719,5337,0,252,'2025-12-05','OA','TP','103','mo','2025-12-07 14:46:25','','0000-00-00 00:00:00'),(2444,0,0,3719,5337,0,252,'2025-12-05','OA','PR','80','mo','2025-12-07 14:46:30','','0000-00-00 00:00:00'),(2445,0,0,3719,5337,0,252,'2025-12-05','OA','SpO2','98','mo','2025-12-07 14:46:36','','0000-00-00 00:00:00'),(2446,0,0,3719,5337,0,252,'2025-12-05','OA','BP','130/100','mo','2025-12-07 14:46:43','','0000-00-00 00:00:00'),(2447,0,0,3719,5337,0,252,'2025-12-05','OA','RR','20','mo','2025-12-07 14:46:50','','0000-00-00 00:00:00'),(2448,0,0,3719,5337,0,252,'2025-12-05','OA','BMI','NaN','mo','2025-12-07 14:46:50','','0000-00-00 00:00:00'),(2449,0,0,3721,5341,0,254,'2025-12-06','OD','TP','98.4','mo','2025-12-07 17:22:00','','0000-00-00 00:00:00'),(2450,0,0,3721,5341,0,254,'2025-12-06','OD','PR','80','mo','2025-12-07 17:22:07','','0000-00-00 00:00:00'),(2451,0,0,3721,5341,0,254,'2025-12-06','OD','SpO2','99','mo','2025-12-07 17:22:11','','0000-00-00 00:00:00'),(2452,0,0,3721,5341,0,254,'2025-12-06','OD','BP','120/80','mo','2025-12-07 17:22:15','','0000-00-00 00:00:00'),(2453,0,0,3721,5341,0,254,'2025-12-06','OD','RR','20','mo','2025-12-07 17:22:23','','0000-00-00 00:00:00'),(2454,0,0,3636,5175,0,247,'2025-12-04','OA','SpO2','96','mo','2025-12-08 09:29:23','','0000-00-00 00:00:00'),(2455,0,0,3636,5175,0,247,'2025-12-04','OA','BP','156/88','mo','2025-12-08 09:29:29','','0000-00-00 00:00:00'),(2456,0,0,3636,5175,0,247,'2025-12-04','OA','PR','70','mo','2025-12-08 09:29:36','','0000-00-00 00:00:00'),(2457,0,0,3636,5175,0,247,'2025-12-04','OA','TP','98','mo','2025-12-08 09:29:39','','0000-00-00 00:00:00'),(2458,0,0,3636,5175,0,247,'2025-12-04','OA','RR','24','mo','2025-12-08 09:29:44','','0000-00-00 00:00:00'),(2459,0,0,3583,5089,0,241,'2025-12-03','OA','PR','120','mo','2025-12-08 09:36:38','','0000-00-00 00:00:00'),(2460,0,0,3583,5089,0,241,'2025-12-03','OA','RBS','162','mo','2025-12-08 09:36:57','','0000-00-00 00:00:00'),(2461,0,0,3776,5441,3672,0,'2025-12-08','OA','BP','230/108','drarchit','2025-12-08 11:30:33','','0000-00-00 00:00:00'),(2462,0,0,3799,5475,3694,0,'2025-12-08','OA','BP','124/86','drarchit','2025-12-08 11:50:22','','0000-00-00 00:00:00'),(2463,0,0,3583,5089,0,241,'2025-12-03','OD','SpO2','98','mo','2025-12-08 11:52:45','','0000-00-00 00:00:00'),(2464,0,0,3583,5089,0,241,'2025-12-03','OD','BP','146/80','mo','2025-12-08 11:52:50','','0000-00-00 00:00:00'),(2465,0,0,3583,5089,0,241,'2025-12-03','OD','PR','73','mo','2025-12-08 11:52:53','','0000-00-00 00:00:00'),(2466,0,0,3808,5489,3705,0,'2025-12-08','OA','BP','134/86','drarchit','2025-12-08 12:04:36','drarchit','2025-12-08 12:05:10'),(2467,0,0,3808,5489,3705,0,'2025-12-08','OA','RBS','194','drarchit','2025-12-08 12:05:10','','0000-00-00 00:00:00'),(2468,0,0,3806,5487,3703,0,'2025-12-08','OA','BP','134/78','drarchit','2025-12-08 12:08:05','','0000-00-00 00:00:00'),(2469,0,0,3781,5446,3675,0,'2025-12-08','OA','BP','142/78','drarchit','2025-12-08 12:12:59','drarchit','2025-12-08 12:13:03'),(2470,0,0,3781,5446,3675,0,'2025-12-08','OA','RBS','105','drarchit','2025-12-08 12:13:03','','0000-00-00 00:00:00'),(2471,0,0,3771,5435,3667,0,'2025-12-08','OA','BP','132/78','drarchit','2025-12-08 12:19:43','','0000-00-00 00:00:00'),(2472,0,0,3793,5466,3688,0,'2025-12-08','OA','BP','132/78','drarchit','2025-12-08 12:29:20','','0000-00-00 00:00:00'),(2473,0,0,2866,5498,3711,0,'2025-12-08','OA','BP','134/78','drarchit','2025-12-08 12:33:18','','0000-00-00 00:00:00'),(2474,0,0,3510,4977,0,238,'2025-12-03','OA','SpO2','85','mo','2025-12-08 12:42:45','','0000-00-00 00:00:00'),(2475,0,0,3510,4977,0,238,'2025-12-03','OA','BP','60','mo','2025-12-08 12:42:48','','0000-00-00 00:00:00'),(2476,0,0,3510,4977,0,238,'2025-12-03','OA','RR','26','mo','2025-12-08 12:42:54','mo','2025-12-08 12:43:06'),(2477,0,0,3510,4977,0,238,'2025-12-03','OA','PR','58','mo','2025-12-08 12:42:58','','0000-00-00 00:00:00'),(2478,0,0,3510,4977,0,238,'2025-12-03','OD','SpO2','98','mo','2025-12-08 12:43:17','','0000-00-00 00:00:00'),(2479,0,0,3510,4977,0,238,'2025-12-03','OD','PR','102','mo','2025-12-08 12:43:21','','0000-00-00 00:00:00'),(2480,0,0,3510,4977,0,238,'2025-12-03','OD','BP','110/70','mo','2025-12-08 12:43:29','','0000-00-00 00:00:00'),(2481,0,0,3510,4977,0,238,'2025-12-03','OD','RR','22','mo','2025-12-08 12:43:42','','0000-00-00 00:00:00'),(2482,0,0,3815,5502,3713,0,'2025-12-08','OA','BP','132/78','drarchit','2025-12-08 13:04:06','','0000-00-00 00:00:00'),(2483,0,0,3719,5337,0,252,'2025-12-05','OD','SpO2','99','mo','2025-12-08 13:20:09','','0000-00-00 00:00:00'),(2484,0,0,3719,5337,0,252,'2025-12-05','OD','BP','120/80','mo','2025-12-08 13:20:13','','0000-00-00 00:00:00'),(2485,0,0,3719,5337,0,252,'2025-12-05','OD','PR','77','mo','2025-12-08 13:20:24','','0000-00-00 00:00:00'),(2486,0,0,3501,5506,3406,0,'2025-12-08','OA','BP','132/78','drarchit','2025-12-08 13:22:48','','0000-00-00 00:00:00'),(2487,0,0,3824,5521,0,259,'2025-12-08','OA','PR','100','mo','2025-12-08 17:49:14','','0000-00-00 00:00:00'),(2488,0,0,3824,5521,0,259,'2025-12-08','OA','SpO2','97','mo','2025-12-08 17:49:17','','0000-00-00 00:00:00'),(2489,0,0,3824,5521,0,259,'2025-12-08','OA','BP','120/70','mo','2025-12-08 17:49:27','','0000-00-00 00:00:00'),(2490,0,0,3824,5521,0,259,'2025-12-08','OA','RR','22','mo','2025-12-08 17:49:31','','0000-00-00 00:00:00'),(2491,0,0,3778,5443,0,257,'2025-12-08','OA','PR','78','mo','2025-12-08 18:06:58','','0000-00-00 00:00:00'),(2492,0,0,3778,5443,0,257,'2025-12-08','OA','SpO2','98','mo','2025-12-08 18:07:06','','0000-00-00 00:00:00'),(2493,0,0,3778,5443,0,257,'2025-12-08','OA','BP','140/90','mo','2025-12-08 18:07:23','','0000-00-00 00:00:00'),(2494,0,0,3778,5443,0,257,'2025-12-08','OA','RR','20','mo','2025-12-08 18:07:30','','0000-00-00 00:00:00'),(2495,0,0,3812,5496,3709,0,'2025-12-08','OA','BP','134/86','drarchit','2025-12-08 18:08:08','drarchit','2025-12-08 18:12:40'),(2496,0,0,3792,5463,3687,0,'2025-12-08','OA','BP','142/86','drarchit','2025-12-08 18:09:00','','0000-00-00 00:00:00'),(2497,0,0,3850,5557,3747,0,'2025-12-08','OA','BP','138/86','drarchit','2025-12-08 18:36:23','','0000-00-00 00:00:00'),(2498,0,0,3851,5561,3748,0,'2025-12-08','OA','BP','142/86','drarchit','2025-12-08 18:41:28','','0000-00-00 00:00:00'),(2499,0,0,3855,5566,3752,0,'2025-12-08','OA','BP','134/86','drarchit','2025-12-08 18:44:54','','0000-00-00 00:00:00'),(2500,0,0,383,5563,367,0,'2025-12-08','OA','BP','134/86','drarchit','2025-12-08 18:51:38','','0000-00-00 00:00:00'),(2501,0,0,3858,5574,3755,0,'2025-12-08','OA','BP','142/86','drarchit','2025-12-08 18:58:47','','0000-00-00 00:00:00'),(2502,0,0,3821,5517,3719,0,'2025-12-08','OA','BP','134/86','drarchit','2025-12-08 19:17:18','','0000-00-00 00:00:00'),(2503,0,0,3421,5586,3329,0,'2025-12-08','OA','BP','110/78','drarchit','2025-12-08 19:24:59','','0000-00-00 00:00:00'),(2504,0,0,3826,5524,3724,0,'2025-12-08','OA','BP','168/92','drarchit','2025-12-08 20:24:47','','0000-00-00 00:00:00'),(2505,0,0,3720,5338,0,253,'2025-12-05','OA','TP','98.4','mo','2025-12-08 20:53:11','','0000-00-00 00:00:00'),(2506,0,0,3720,5338,0,253,'2025-12-05','OA','PR','92','mo','2025-12-08 20:53:15','','0000-00-00 00:00:00'),(2507,0,0,3720,5338,0,253,'2025-12-05','OA','SpO2','80','mo','2025-12-08 20:53:34','','0000-00-00 00:00:00'),(2508,0,0,3720,5338,0,253,'2025-12-05','OA','BP','110/60','mo','2025-12-08 20:53:38','','0000-00-00 00:00:00'),(2509,0,0,3720,5338,0,253,'2025-12-05','OA','RR','22','mo','2025-12-08 20:53:48','','0000-00-00 00:00:00'),(2510,0,0,3720,5338,0,253,'2025-12-05','OD','TP','98.2','mo','2025-12-08 20:54:24','','0000-00-00 00:00:00'),(2511,0,0,3720,5338,0,253,'2025-12-05','OD','PR','82','mo','2025-12-08 20:54:27','','0000-00-00 00:00:00'),(2512,0,0,3720,5338,0,253,'2025-12-05','OD','SpO2','97','mo','2025-12-08 20:54:37','','0000-00-00 00:00:00'),(2513,0,0,3720,5338,0,253,'2025-12-05','OD','BP','112/74','mo','2025-12-08 20:54:45','','0000-00-00 00:00:00'),(2514,0,0,3720,5338,0,253,'2025-12-05','OD','RR','20','mo','2025-12-08 20:54:48','','0000-00-00 00:00:00'),(2515,0,0,3863,5583,0,261,'2025-12-08','OA','TP','98.2','mo','2025-12-09 01:53:06','','0000-00-00 00:00:00'),(2516,0,0,3863,5583,0,261,'2025-12-08','OA','PR','80','mo','2025-12-09 01:53:07','','0000-00-00 00:00:00'),(2517,0,0,3863,5583,0,261,'2025-12-08','OA','SpO2','90','mo','2025-12-09 01:53:10','','0000-00-00 00:00:00'),(2518,0,0,3863,5583,0,261,'2025-12-08','OA','BP','90/50','mo','2025-12-09 01:53:14','','0000-00-00 00:00:00'),(2519,0,0,3863,5583,0,261,'2025-12-08','OA','RR','24','mo','2025-12-09 01:53:16','','0000-00-00 00:00:00'),(2520,0,0,3636,5175,0,247,'2025-12-04','OD','SpO2','97','mo','2025-12-09 10:31:02','','0000-00-00 00:00:00'),(2521,0,0,3636,5175,0,247,'2025-12-04','OD','BP','134/80','mo','2025-12-09 10:31:13','','0000-00-00 00:00:00'),(2522,0,0,3636,5175,0,247,'2025-12-04','OD','PR','66','mo','2025-12-09 10:31:23','','0000-00-00 00:00:00'),(2523,0,0,624,5604,0,264,'2025-12-08','OD','TP','98.2','mo','2025-12-09 11:15:00','','0000-00-00 00:00:00'),(2524,0,0,624,5604,0,264,'2025-12-08','OD','PR','90','mo','2025-12-09 11:15:02','','0000-00-00 00:00:00'),(2525,0,0,624,5604,0,264,'2025-12-08','OD','SpO2','96','mo','2025-12-09 11:15:08','','0000-00-00 00:00:00'),(2526,0,0,624,5604,0,264,'2025-12-08','OD','BP','136/90','mo','2025-12-09 11:15:15','','0000-00-00 00:00:00'),(2527,0,0,624,5604,0,264,'2025-12-08','OD','RR','20','mo','2025-12-09 11:15:19','','0000-00-00 00:00:00'),(2528,0,0,624,5604,0,264,'2025-12-08','OD','RBS','134','mo','2025-12-09 11:15:27','','0000-00-00 00:00:00'),(2529,0,0,624,5604,0,264,'2025-12-08','OA','TP','97','mo','2025-12-09 11:15:35','','0000-00-00 00:00:00'),(2530,0,0,624,5604,0,264,'2025-12-08','OA','PR','130','mo','2025-12-09 11:15:38','','0000-00-00 00:00:00'),(2531,0,0,624,5604,0,264,'2025-12-08','OA','SpO2','95','mo','2025-12-09 11:15:44','','0000-00-00 00:00:00'),(2532,0,0,624,5604,0,264,'2025-12-08','OA','BP','200/106','mo','2025-12-09 11:15:50','','0000-00-00 00:00:00'),(2533,0,0,624,5604,0,264,'2025-12-08','OA','RR','28','mo','2025-12-09 11:15:55','','0000-00-00 00:00:00'),(2534,0,0,624,5604,0,264,'2025-12-08','OA','RBS','222','mo','2025-12-09 11:16:10','','0000-00-00 00:00:00'),(2535,0,0,3875,5615,3771,0,'2025-12-09','OA','RBS','190','drarchit','2025-12-09 12:06:43','drarchit','2025-12-09 12:06:52'),(2536,0,0,3875,5615,3771,0,'2025-12-09','OA','BP','132/86','drarchit','2025-12-09 12:06:52','','0000-00-00 00:00:00'),(2537,0,0,3891,5639,3787,0,'2025-12-09','OA','PR','88','drarchit','2025-12-09 12:45:26','drarchit','2025-12-09 12:46:15'),(2538,0,0,3891,5639,3787,0,'2025-12-09','OA','SpO2','98','drarchit','2025-12-09 12:45:29','drarchit','2025-12-09 12:46:15'),(2539,0,0,3891,5639,3787,0,'2025-12-09','OA','BP','136/84','drarchit','2025-12-09 12:45:45','drarchit','2025-12-09 12:46:15'),(2540,0,0,3891,5639,3787,0,'2025-12-09','OA','RR','20','drarchit','2025-12-09 12:46:15','','0000-00-00 00:00:00'),(2541,0,0,3894,5644,3790,0,'2025-12-09','OA','BP','142/88','drarchit','2025-12-09 13:04:54','drarchit','2025-12-09 13:04:57'),(2542,0,0,3894,5644,3790,0,'2025-12-09','OA','RR','76','drarchit','2025-12-09 13:04:57','','0000-00-00 00:00:00'),(2543,0,0,3778,5443,0,257,'2025-12-08','OD','SpO2','98','mo','2025-12-09 13:35:17','','0000-00-00 00:00:00'),(2544,0,0,3778,5443,0,257,'2025-12-08','OD','BP','136/80','mo','2025-12-09 13:35:20','','0000-00-00 00:00:00'),(2545,0,0,3778,5443,0,257,'2025-12-08','OD','PR','68','mo','2025-12-09 13:35:26','','0000-00-00 00:00:00'),(2546,0,0,3847,5552,3744,0,'2025-12-08','OA','BP','134/86','drarchit','2025-12-09 18:12:45','','0000-00-00 00:00:00'),(2547,0,0,3848,5553,3745,0,'2025-12-08','OA','BP','132/78','drarchit','2025-12-09 18:14:23','','0000-00-00 00:00:00'),(2548,0,0,3910,5676,3805,0,'2025-12-09','OA','BP','124/86','drarchit','2025-12-09 18:18:53','','0000-00-00 00:00:00'),(2549,0,0,3917,5686,3811,0,'2025-12-09','OA','PR','90','drjayant','2025-12-09 18:23:03','drjayant','2025-12-09 18:23:21'),(2550,0,0,3917,5686,3811,0,'2025-12-09','OA','BP','114/78','drjayant','2025-12-09 18:23:21','','0000-00-00 00:00:00'),(2551,0,0,2729,5661,2659,0,'2025-12-09','OA','BP','134/86','drarchit','2025-12-09 18:24:29','','0000-00-00 00:00:00'),(2552,0,0,3921,5690,3815,0,'2025-12-09','OA','BP','150/88','drjayant','2025-12-09 18:26:45','drjayant','2025-12-09 18:26:47'),(2553,0,0,3921,5690,3815,0,'2025-12-09','OA','PR','90','drjayant','2025-12-09 18:26:47','','0000-00-00 00:00:00'),(2554,0,0,3926,5698,3821,0,'2025-12-09','OA','PR','75','drjayant','2025-12-09 18:33:42','drjayant','2025-12-09 18:33:56'),(2555,0,0,3926,5698,3821,0,'2025-12-09','OA','BP','130/78','drjayant','2025-12-09 18:33:56','','0000-00-00 00:00:00'),(2556,0,0,3924,5695,3818,0,'2025-12-09','OA','BP','140/86','drarchit','2025-12-09 18:52:03','drarchit','2025-12-09 18:52:24'),(2557,0,0,3920,5689,3814,0,'2025-12-09','OA','BP','132/78','drarchit','2025-12-09 19:01:48','','0000-00-00 00:00:00'),(2558,0,0,3923,5693,3817,0,'2025-12-09','OA','BP','134/86','drarchit','2025-12-09 19:10:00','drarchit','2025-12-09 19:10:11'),(2559,0,0,922,5702,890,0,'2025-12-09','OA','BP','130/90','drjayant','2025-12-09 19:11:42','drjayant','2025-12-09 19:11:54'),(2560,0,0,922,5702,890,0,'2025-12-09','OA','SpO2','97','drjayant','2025-12-09 19:11:52','drjayant','2025-12-09 19:11:54'),(2561,0,0,922,5702,890,0,'2025-12-09','OA','PR','85','drjayant','2025-12-09 19:11:54','','0000-00-00 00:00:00'),(2562,0,0,3712,5715,3611,0,'2025-12-09','OA','BP','140/90','drjayant','2025-12-09 19:20:21','drjayant','2025-12-09 19:21:34'),(2563,0,0,3712,5715,3611,0,'2025-12-09','OA','PR','85','drjayant','2025-12-09 19:20:40','drjayant','2025-12-09 19:21:34'),(2564,0,0,3930,5704,3825,0,'2025-12-09','OA','BP','132/78','drarchit','2025-12-09 19:36:15','','0000-00-00 00:00:00'),(2565,0,0,3935,5717,3830,0,'2025-12-09','OA','BP','160/88','drarchit','2025-12-09 19:40:30','drarchit','2025-12-09 19:41:06'),(2566,0,0,3912,5678,0,267,'2025-12-09','OA','TP','98.4','mo','2025-12-09 19:47:27','','0000-00-00 00:00:00'),(2567,0,0,3912,5678,0,267,'2025-12-09','OA','PR','83','mo','2025-12-09 19:47:31','','0000-00-00 00:00:00'),(2568,0,0,3912,5678,0,267,'2025-12-09','OA','SpO2','99','mo','2025-12-09 19:47:34','','0000-00-00 00:00:00'),(2569,0,0,3912,5678,0,267,'2025-12-09','OA','BP','100/60','mo','2025-12-09 19:47:38','','0000-00-00 00:00:00'),(2570,0,0,3912,5678,0,267,'2025-12-09','OA','RR','20','mo','2025-12-09 19:47:43','','0000-00-00 00:00:00'),(2571,0,0,3827,5527,0,260,'2025-12-08','OA','TP','98.4','mo','2025-12-09 19:57:11','','0000-00-00 00:00:00'),(2572,0,0,3827,5527,0,260,'2025-12-08','OA','PR','40','mo','2025-12-09 19:57:18','','0000-00-00 00:00:00'),(2573,0,0,3827,5527,0,260,'2025-12-08','OA','SpO2','96','mo','2025-12-09 19:57:21','','0000-00-00 00:00:00'),(2574,0,0,3827,5527,0,260,'2025-12-08','OA','BP','102/68','mo','2025-12-09 19:57:31','','0000-00-00 00:00:00'),(2575,0,0,3827,5527,0,260,'2025-12-08','OA','RR','16','mo','2025-12-09 19:57:42','','0000-00-00 00:00:00'),(2576,0,0,3630,5163,0,245,'2025-12-04','OA','TP','102','mo','2025-12-10 00:51:45','','0000-00-00 00:00:00'),(2577,0,0,3630,5163,0,245,'2025-12-04','OA','PR','108','mo','2025-12-10 00:51:48','','0000-00-00 00:00:00'),(2578,0,0,3630,5163,0,245,'2025-12-04','OA','SpO2','85','mo','2025-12-10 00:51:52','','0000-00-00 00:00:00'),(2579,0,0,3630,5163,0,245,'2025-12-04','OA','BP','140/80','mo','2025-12-10 00:52:04','','0000-00-00 00:00:00'),(2580,0,0,3765,5426,0,256,'2025-12-07','OA','PR','110','mo','2025-12-10 01:00:36','','0000-00-00 00:00:00'),(2581,0,0,3765,5426,0,256,'2025-12-07','OA','BP','190/110','mo','2025-12-10 01:00:49','','0000-00-00 00:00:00'),(2582,0,0,3765,5426,0,256,'2025-12-07','OA','SpO2','98','mo','2025-12-10 01:00:56','','0000-00-00 00:00:00'),(2583,0,0,3706,5316,0,251,'2025-12-05','OA','BP','80/60','mo','2025-12-10 01:21:21','','0000-00-00 00:00:00'),(2584,0,0,3706,5316,0,251,'2025-12-05','OA','PR','110','mo','2025-12-10 01:21:23','','0000-00-00 00:00:00'),(2585,0,0,3706,5316,0,251,'2025-12-05','OA','SpO2','100','mo','2025-12-10 01:21:58','','0000-00-00 00:00:00'),(2586,0,0,3833,5588,0,262,'2025-12-08','OA','TP','101','mo','2025-12-10 01:51:06','','0000-00-00 00:00:00'),(2587,0,0,3833,5588,0,262,'2025-12-08','OA','SpO2','98','mo','2025-12-10 01:51:10','','0000-00-00 00:00:00'),(2588,0,0,3833,5588,0,262,'2025-12-08','OA','BP','110/70','mo','2025-12-10 01:51:18','','0000-00-00 00:00:00'),(2589,0,0,3833,5588,0,262,'2025-12-08','OA','PR','112','mo','2025-12-10 01:51:30','','0000-00-00 00:00:00'),(2590,0,0,3780,5445,0,258,'2025-12-08','OA','BP','240/130','mo','2025-12-10 01:59:42','','0000-00-00 00:00:00'),(2591,0,0,3780,5445,0,258,'2025-12-08','OA','PR','130','mo','2025-12-10 02:00:03','','0000-00-00 00:00:00'),(2592,0,0,3780,5445,0,258,'2025-12-08','OA','SpO2','80','mo','2025-12-10 02:00:08','','0000-00-00 00:00:00'),(2593,0,0,3780,5445,0,258,'2025-12-08','OA','RR','38','mo','2025-12-10 02:01:28','','0000-00-00 00:00:00'),(2594,0,0,3871,5603,0,263,'2025-12-09','OA','TP','98.4','mo','2025-12-10 02:03:10','','0000-00-00 00:00:00'),(2595,0,0,3871,5603,0,263,'2025-12-09','OA','SpO2','98','mo','2025-12-10 02:03:16','','0000-00-00 00:00:00'),(2596,0,0,3871,5603,0,263,'2025-12-09','OA','PR','80','mo','2025-12-10 02:03:21','','0000-00-00 00:00:00'),(2597,0,0,3871,5603,0,263,'2025-12-09','OA','BP','180/100','mo','2025-12-10 02:04:13','','0000-00-00 00:00:00'),(2598,0,0,3894,5660,0,265,'2025-12-09','OD','TP','98.2','mo','2025-12-10 11:23:07','','0000-00-00 00:00:00'),(2599,0,0,3894,5660,0,265,'2025-12-09','OD','PR','64','mo','2025-12-10 11:23:11','','0000-00-00 00:00:00'),(2600,0,0,3894,5660,0,265,'2025-12-09','OD','SpO2','98','mo','2025-12-10 11:23:13','','0000-00-00 00:00:00'),(2601,0,0,3894,5660,0,265,'2025-12-09','OD','BP','146/90','mo','2025-12-10 11:23:20','','0000-00-00 00:00:00'),(2602,0,0,3894,5660,0,265,'2025-12-09','OD','RR','18','mo','2025-12-10 11:23:24','','0000-00-00 00:00:00'),(2603,0,0,3894,5660,0,265,'2025-12-09','OD','RBS','142','mo','2025-12-10 11:23:29','','0000-00-00 00:00:00'),(2604,0,0,3331,5750,3249,0,'2025-12-10','OA','BP','164/86','drarchit','2025-12-10 11:23:38','','0000-00-00 00:00:00'),(2605,0,0,3706,5316,0,251,'2025-12-05','OD','PR','88','mo','2025-12-10 11:25:10','','0000-00-00 00:00:00'),(2606,0,0,3706,5316,0,251,'2025-12-05','OD','SpO2','99','mo','2025-12-10 11:25:14','','0000-00-00 00:00:00'),(2607,0,0,3706,5316,0,251,'2025-12-05','OD','BP','100/70','mo','2025-12-10 11:25:19','','0000-00-00 00:00:00'),(2608,0,0,2075,5729,2022,0,'2025-12-10','OA','BP','120/72','drjayant','2025-12-10 11:34:49','drjayant','2025-12-10 11:34:55'),(2609,0,0,2075,5729,2022,0,'2025-12-10','OA','PR','100','drjayant','2025-12-10 11:34:53','drjayant','2025-12-10 11:34:55'),(2610,0,0,2075,5729,2022,0,'2025-12-10','OA','SpO2','97','drjayant','2025-12-10 11:34:55','','0000-00-00 00:00:00'),(2611,0,0,3960,5765,3851,0,'2025-12-10','OA','BP','142/78','drarchit','2025-12-10 11:36:13','','0000-00-00 00:00:00'),(2612,0,0,1302,5767,1261,0,'2025-12-10','OA','BP','130/80','drjayant','2025-12-10 11:37:02','drjayant','2025-12-10 11:37:06'),(2613,0,0,1302,5767,1261,0,'2025-12-10','OA','PR','90','drjayant','2025-12-10 11:37:06','','0000-00-00 00:00:00'),(2614,0,0,3948,5742,3839,0,'2025-12-10','OA','BP','164/86','drarchit','2025-12-10 12:28:39','','0000-00-00 00:00:00'),(2615,0,0,3972,5785,3864,0,'2025-12-10','OA','BP','134/78','drarchit','2025-12-10 12:43:57','','0000-00-00 00:00:00'),(2616,0,0,3976,5790,3868,0,'2025-12-10','OA','BP','132/78','drarchit','2025-12-10 12:59:34','','0000-00-00 00:00:00'),(2617,0,0,1631,5818,1587,0,'2025-12-10','OA','BP','142/78','drarchit','2025-12-10 18:31:53','drarchit','2025-12-10 18:32:10'),(2618,0,0,3941,5728,0,270,'2025-12-10','OA','TP','98.4','mo','2025-12-10 18:33:21','','0000-00-00 00:00:00'),(2619,0,0,3941,5728,0,270,'2025-12-10','OA','PR','79','mo','2025-12-10 18:33:23','','0000-00-00 00:00:00'),(2620,0,0,3941,5728,0,270,'2025-12-10','OA','SpO2','99','mo','2025-12-10 18:33:26','','0000-00-00 00:00:00'),(2621,0,0,3941,5728,0,270,'2025-12-10','OA','BP','124/80','mo','2025-12-10 18:33:30','','0000-00-00 00:00:00'),(2622,0,0,3941,5728,0,270,'2025-12-10','OA','RR','20','mo','2025-12-10 18:33:32','','0000-00-00 00:00:00'),(2623,0,0,3941,5728,0,270,'2025-12-10','OA','BMI','NaN','mo','2025-12-10 18:33:33','','0000-00-00 00:00:00'),(2624,0,0,3941,5728,0,270,'2025-12-10','OD','TP','98.4','mo','2025-12-10 18:33:44','','0000-00-00 00:00:00'),(2625,0,0,3941,5728,0,270,'2025-12-10','OD','PR','84','mo','2025-12-10 18:34:04','','0000-00-00 00:00:00'),(2626,0,0,3941,5728,0,270,'2025-12-10','OD','SpO2','98','mo','2025-12-10 18:34:06','','0000-00-00 00:00:00'),(2627,0,0,3941,5728,0,270,'2025-12-10','OD','BP','142/80','mo','2025-12-10 18:34:11','','0000-00-00 00:00:00'),(2628,0,0,3941,5728,0,270,'2025-12-10','OD','RR','22','mo','2025-12-10 18:34:13','','0000-00-00 00:00:00'),(2629,0,0,3941,5728,0,270,'2025-12-10','OD','BMI','NaN','mo','2025-12-10 18:34:15','','0000-00-00 00:00:00'),(2630,0,0,3941,5728,0,270,'2025-12-10','OA','RBS','128','mo','2025-12-10 18:36:05','','0000-00-00 00:00:00'),(2631,0,0,3994,5819,3885,0,'2025-12-10','OA','BP','132/86','drarchit','2025-12-10 18:38:38','drarchit','2025-12-10 18:39:59'),(2632,0,0,4002,5832,3892,0,'2025-12-10','OA','PR','90','drjayant','2025-12-10 18:53:23','drjayant','2025-12-10 18:53:33'),(2633,0,0,4002,5832,3892,0,'2025-12-10','OA','BP','116/82','drjayant','2025-12-10 18:53:33','','0000-00-00 00:00:00'),(2634,0,0,3998,5825,3889,0,'2025-12-10','OA','BP','132/78','drarchit','2025-12-10 18:54:15','','0000-00-00 00:00:00'),(2635,0,0,4003,5834,3893,0,'2025-12-10','OA','BP','142/86','drarchit','2025-12-10 19:10:35','','0000-00-00 00:00:00'),(2636,0,0,3943,5732,0,271,'2025-12-10','OA','PR','82','mo','2025-12-10 20:45:31','','0000-00-00 00:00:00'),(2637,0,0,3943,5732,0,271,'2025-12-10','OA','SpO2','96','mo','2025-12-10 20:45:41','','0000-00-00 00:00:00'),(2638,0,0,3943,5732,0,271,'2025-12-10','OA','BP','122/80','mo','2025-12-10 20:45:49','','0000-00-00 00:00:00'),(2639,0,0,3943,5732,0,271,'2025-12-10','OA','RR','20','mo','2025-12-10 20:45:52','','0000-00-00 00:00:00'),(2640,0,0,3943,5732,0,271,'2025-12-10','OD','TP','98.4','mo','2025-12-10 20:45:53','','0000-00-00 00:00:00'),(2641,0,0,3943,5732,0,271,'2025-12-10','OD','PR','78','mo','2025-12-10 20:45:55','','0000-00-00 00:00:00'),(2642,0,0,3943,5732,0,271,'2025-12-10','OD','SpO2','98','mo','2025-12-10 20:45:57','','0000-00-00 00:00:00'),(2643,0,0,3943,5732,0,271,'2025-12-10','OD','BP','124/80','mo','2025-12-10 20:46:00','','0000-00-00 00:00:00'),(2644,0,0,3943,5732,0,271,'2025-12-10','OD','RR','20','mo','2025-12-10 20:46:02','','0000-00-00 00:00:00'),(2645,0,0,3765,5426,0,256,'2025-12-07','OA','RR','24','mo','2025-12-10 20:53:42','','0000-00-00 00:00:00'),(2646,0,0,3765,5426,0,256,'2025-12-07','OD','TP','98.2','mo','2025-12-10 20:53:43','','0000-00-00 00:00:00'),(2647,0,0,3765,5426,0,256,'2025-12-07','OD','PR','78','mo','2025-12-10 20:53:48','','0000-00-00 00:00:00'),(2648,0,0,3765,5426,0,256,'2025-12-07','OD','SpO2','98','mo','2025-12-10 20:55:57','','0000-00-00 00:00:00'),(2649,0,0,3765,5426,0,256,'2025-12-07','OD','BP','122/70','mo','2025-12-10 20:56:09','','0000-00-00 00:00:00'),(2650,0,0,3765,5426,0,256,'2025-12-07','OD','RR','20','mo','2025-12-10 20:56:14','','0000-00-00 00:00:00'),(2651,0,0,3871,5603,0,263,'2025-12-09','OD','TP','98.4','mo','2025-12-10 21:17:43','','0000-00-00 00:00:00'),(2652,0,0,3871,5603,0,263,'2025-12-09','OD','PR','88','mo','2025-12-10 21:17:48','','0000-00-00 00:00:00'),(2653,0,0,3871,5603,0,263,'2025-12-09','OD','SpO2','97','mo','2025-12-10 21:17:52','','0000-00-00 00:00:00'),(2654,0,0,3871,5603,0,263,'2025-12-09','OD','BP','134/82','mo','2025-12-10 21:17:58','','0000-00-00 00:00:00'),(2655,0,0,3871,5603,0,263,'2025-12-09','OD','RR','20','mo','2025-12-10 21:18:00','','0000-00-00 00:00:00'),(2656,0,0,3400,4777,0,225,'2025-12-01','OA','BP','80/50','mo','2025-12-10 23:50:42','','0000-00-00 00:00:00'),(2657,0,0,3400,4777,0,225,'2025-12-01','OA','RR','32','mo','2025-12-10 23:50:48','','0000-00-00 00:00:00'),(2658,0,0,3400,4777,0,225,'2025-12-01','OA','SpO2','82','mo','2025-12-10 23:50:52','','0000-00-00 00:00:00'),(2659,0,0,3400,4777,0,225,'2025-12-01','OA','PR','112','mo','2025-12-10 23:50:57','','0000-00-00 00:00:00'),(2660,0,0,3400,4777,0,225,'2025-12-01','OA','TP','97.6','mo','2025-12-10 23:51:23','','0000-00-00 00:00:00'),(2661,0,0,3400,4777,0,225,'2025-12-01','OD','TP','98.1','mo','2025-12-10 23:51:25','','0000-00-00 00:00:00'),(2662,0,0,3400,4777,0,225,'2025-12-01','OD','PR','78','mo','2025-12-10 23:51:28','','0000-00-00 00:00:00'),(2663,0,0,3400,4777,0,225,'2025-12-01','OD','SpO2','95','mo','2025-12-10 23:51:32','','0000-00-00 00:00:00'),(2664,0,0,3400,4777,0,225,'2025-12-01','OD','BP','134/86','mo','2025-12-10 23:51:50','','0000-00-00 00:00:00'),(2665,0,0,3400,4777,0,225,'2025-12-01','OD','RR','22','mo','2025-12-10 23:51:52','','0000-00-00 00:00:00'),(2666,0,0,4001,5831,0,273,'2025-12-10','OA','PR','78','mo','2025-12-11 00:29:48','','0000-00-00 00:00:00'),(2667,0,0,4001,5831,0,273,'2025-12-10','OA','SpO2','98','mo','2025-12-11 00:29:49','','0000-00-00 00:00:00'),(2668,0,0,4001,5831,0,273,'2025-12-10','OA','BP','124/60','mo','2025-12-11 00:30:09','','0000-00-00 00:00:00'),(2669,0,0,4001,5831,0,273,'2025-12-10','OA','RR','20','mo','2025-12-11 00:30:13','','0000-00-00 00:00:00'),(2670,0,0,3345,4688,0,218,'2025-11-30','OA','RR','22','mo','2025-12-11 00:51:02','','0000-00-00 00:00:00'),(2671,0,0,3345,4688,0,218,'2025-11-30','OD','PR','78','mo','2025-12-11 00:51:04','','0000-00-00 00:00:00'),(2672,0,0,3345,4688,0,218,'2025-11-30','OD','SpO2','98','mo','2025-12-11 00:51:07','','0000-00-00 00:00:00'),(2673,0,0,3345,4688,0,218,'2025-11-30','OD','BP','108/72','mo','2025-12-11 00:51:17','','0000-00-00 00:00:00'),(2674,0,0,3345,4688,0,218,'2025-11-30','OD','RR','20','mo','2025-12-11 00:51:19','','0000-00-00 00:00:00'),(2675,0,0,3583,5871,3913,0,'2025-12-11','OA','BP','134/84','drjayant','2025-12-11 11:38:01','drjayant','2025-12-11 11:38:04'),(2676,0,0,3583,5871,3913,0,'2025-12-11','OA','PR','85','drjayant','2025-12-11 11:38:04','','0000-00-00 00:00:00'),(2677,0,0,3780,5445,0,258,'2025-12-08','OD','TP','98.4','mo','2025-12-11 11:39:07','','0000-00-00 00:00:00'),(2678,0,0,3780,5445,0,258,'2025-12-08','OD','PR','78','mo','2025-12-11 11:39:10','','0000-00-00 00:00:00'),(2679,0,0,3780,5445,0,258,'2025-12-08','OD','SpO2','97','mo','2025-12-11 11:39:12','','0000-00-00 00:00:00'),(2680,0,0,3780,5445,0,258,'2025-12-08','OD','BP','134/82','mo','2025-12-11 11:39:17','','0000-00-00 00:00:00'),(2681,0,0,3780,5445,0,258,'2025-12-08','OD','RR','22','mo','2025-12-11 11:39:23','','0000-00-00 00:00:00'),(2682,0,0,4021,5869,3912,0,'2025-12-11','OA','BP','134/86','drarchit','2025-12-11 11:41:00','','0000-00-00 00:00:00'),(2683,0,0,3477,5868,3382,0,'2025-12-11','OA','BP','142/86','drarchit','2025-12-11 11:44:32','','0000-00-00 00:00:00'),(2684,0,0,2893,5864,3231,0,'2025-12-11','OA','BP','134/86','drarchit','2025-12-11 11:56:11','','0000-00-00 00:00:00'),(2685,0,0,4029,5885,3921,0,'2025-12-11','OA','BP','144/78','drarchit','2025-12-11 12:09:15','drarchit','2025-12-11 12:09:34'),(2686,0,0,4028,5882,3920,0,'2025-12-11','OA','BP','110/72','drjayant','2025-12-11 12:18:38','drjayant','2025-12-11 12:18:47'),(2687,0,0,4028,5882,3920,0,'2025-12-11','OA','PR','100','drjayant','2025-12-11 12:18:47','','0000-00-00 00:00:00'),(2688,0,0,3833,5588,0,262,'2025-12-08','OD','TP','98.2','mo','2025-12-11 12:28:13','','0000-00-00 00:00:00'),(2689,0,0,3833,5588,0,262,'2025-12-08','OD','PR','86','mo','2025-12-11 12:28:17','','0000-00-00 00:00:00'),(2690,0,0,3833,5588,0,262,'2025-12-08','OD','SpO2','93','mo','2025-12-11 12:28:21','','0000-00-00 00:00:00'),(2691,0,0,3833,5588,0,262,'2025-12-08','OD','BP','112/74','mo','2025-12-11 12:28:24','','0000-00-00 00:00:00'),(2692,0,0,3833,5588,0,262,'2025-12-08','OD','RR','22','mo','2025-12-11 12:28:28','','0000-00-00 00:00:00'),(2693,0,0,4035,5892,3927,0,'2025-12-11','OA','BP','132/78','drarchit','2025-12-11 12:32:40','','0000-00-00 00:00:00'),(2694,0,0,4033,5890,3925,0,'2025-12-11','OA','BP','132/78','drarchit','2025-12-11 12:38:36','','0000-00-00 00:00:00'),(2695,0,0,3938,5722,0,268,'2025-12-09','OA','TP','98.2','mo','2025-12-11 12:40:42','','0000-00-00 00:00:00'),(2696,0,0,3938,5722,0,268,'2025-12-09','OA','PR','102','mo','2025-12-11 12:40:46','','0000-00-00 00:00:00'),(2697,0,0,3938,5722,0,268,'2025-12-09','OA','SpO2','96','mo','2025-12-11 12:40:48','','0000-00-00 00:00:00'),(2698,0,0,3938,5722,0,268,'2025-12-09','OA','BP','96/60','mo','2025-12-11 12:40:52','','0000-00-00 00:00:00'),(2699,0,0,3938,5722,0,268,'2025-12-09','OA','RR','28','mo','2025-12-11 12:41:01','','0000-00-00 00:00:00'),(2700,0,0,3938,5722,0,268,'2025-12-09','OD','RR','22','mo','2025-12-11 12:41:02','','0000-00-00 00:00:00'),(2701,0,0,3938,5722,0,268,'2025-12-09','OD','BP','112/74','mo','2025-12-11 12:41:05','','0000-00-00 00:00:00'),(2702,0,0,3938,5722,0,268,'2025-12-09','OD','SpO2','97','mo','2025-12-11 12:41:07','','0000-00-00 00:00:00'),(2703,0,0,3938,5722,0,268,'2025-12-09','OD','PR','78','mo','2025-12-11 12:41:09','','0000-00-00 00:00:00'),(2704,0,0,3938,5722,0,268,'2025-12-09','OD','TP','98.1','mo','2025-12-11 12:41:11','','0000-00-00 00:00:00'),(2705,0,0,421,5893,399,0,'2025-12-11','OA','BP','134/78','drarchit','2025-12-11 12:42:39','','0000-00-00 00:00:00'),(2706,0,0,4030,5886,3922,0,'2025-12-11','OA','BP','134/86','drarchit','2025-12-11 12:50:38','','0000-00-00 00:00:00'),(2707,0,0,4032,5888,3924,0,'2025-12-11','OA','BP','148/88','drjayant','2025-12-11 12:55:47','drjayant','2025-12-11 12:55:49'),(2708,0,0,4032,5888,3924,0,'2025-12-11','OA','PR','90','drjayant','2025-12-11 12:55:49','','0000-00-00 00:00:00'),(2709,0,0,4038,5900,3930,0,'2025-12-11','OA','BP','167/88','drarchit','2025-12-11 12:58:57','','0000-00-00 00:00:00'),(2710,0,0,4037,5897,3929,0,'2025-12-11','OA','BP','174/100','drarchit','2025-12-11 13:00:15','','0000-00-00 00:00:00'),(2711,0,0,3764,5425,0,255,'2025-12-07','OA','TP','98.4','mo','2025-12-11 13:37:56','','0000-00-00 00:00:00'),(2712,0,0,3764,5425,0,255,'2025-12-07','OA','PR','70','mo','2025-12-11 13:38:00','','0000-00-00 00:00:00'),(2713,0,0,3764,5425,0,255,'2025-12-07','OA','SpO2','96','mo','2025-12-11 13:38:07','','0000-00-00 00:00:00'),(2714,0,0,3764,5425,0,255,'2025-12-07','OA','BP','180/100','mo','2025-12-11 13:38:11','','0000-00-00 00:00:00'),(2715,0,0,3764,5425,0,255,'2025-12-07','OA','RR','28','mo','2025-12-11 13:38:17','','0000-00-00 00:00:00'),(2716,0,0,3764,5425,0,255,'2025-12-07','OD','RR','20','mo','2025-12-11 13:38:19','','0000-00-00 00:00:00'),(2717,0,0,3764,5425,0,255,'2025-12-07','OD','BP','132/84','mo','2025-12-11 13:38:36','','0000-00-00 00:00:00'),(2718,0,0,3764,5425,0,255,'2025-12-07','OD','SpO2','97','mo','2025-12-11 13:38:39','','0000-00-00 00:00:00'),(2719,0,0,3764,5425,0,255,'2025-12-07','OD','PR','78','mo','2025-12-11 13:38:42','','0000-00-00 00:00:00'),(2720,0,0,3764,5425,0,255,'2025-12-07','OD','TP','98.1','mo','2025-12-11 13:38:44','','0000-00-00 00:00:00'),(2721,0,0,3345,4688,0,218,'2025-11-30','OD','TP','98.4','mo','2025-12-11 13:58:03','','0000-00-00 00:00:00'),(2722,0,0,3700,5307,0,250,'2025-12-05','OA','SpO2','95','mo','2025-12-11 15:03:37','','0000-00-00 00:00:00'),(2723,0,0,3700,5307,0,250,'2025-12-05','OA','BP','160/116','mo','2025-12-11 15:03:44','','0000-00-00 00:00:00'),(2724,0,0,3700,5307,0,250,'2025-12-05','OA','RR','26','mo','2025-12-11 15:03:46','','0000-00-00 00:00:00'),(2725,0,0,3700,5307,0,250,'2025-12-05','OA','PR','93','mo','2025-12-11 15:04:05','','0000-00-00 00:00:00'),(2726,0,0,3700,5307,0,250,'2025-12-05','OD','BP','130/80','mo','2025-12-11 15:04:09','','0000-00-00 00:00:00'),(2727,0,0,3700,5307,0,250,'2025-12-05','OD','SpO2','97','mo','2025-12-11 15:04:13','','0000-00-00 00:00:00'),(2728,0,0,3700,5307,0,250,'2025-12-05','OD','PR','78','mo','2025-12-11 15:04:20','','0000-00-00 00:00:00'),(2729,0,0,3977,5791,0,272,'2025-12-10','OA','TP','97.4','mo','2025-12-11 15:59:01','','0000-00-00 00:00:00'),(2730,0,0,3977,5791,0,272,'2025-12-10','OA','SpO2','97','mo','2025-12-11 15:59:05','','0000-00-00 00:00:00'),(2731,0,0,3977,5791,0,272,'2025-12-10','OA','BP','240/140','mo','2025-12-11 15:59:12','','0000-00-00 00:00:00'),(2732,0,0,3977,5791,0,272,'2025-12-10','OA','RR','30','mo','2025-12-11 15:59:17','','0000-00-00 00:00:00'),(2733,0,0,3977,5791,0,272,'2025-12-10','OA','RBS','136','mo','2025-12-11 15:59:32','','0000-00-00 00:00:00'),(2734,0,0,3977,5791,0,272,'2025-12-10','OD','TP','98.2','mo','2025-12-11 15:59:34','','0000-00-00 00:00:00'),(2735,0,0,3977,5791,0,272,'2025-12-10','OD','PR','79','mo','2025-12-11 15:59:40','','0000-00-00 00:00:00'),(2736,0,0,3977,5791,0,272,'2025-12-10','OD','SpO2','99','mo','2025-12-11 15:59:43','','0000-00-00 00:00:00'),(2737,0,0,3977,5791,0,272,'2025-12-10','OD','BP','170/106','mo','2025-12-11 15:59:49','','0000-00-00 00:00:00'),(2738,0,0,3977,5791,0,272,'2025-12-10','OD','RR','26','mo','2025-12-11 15:59:55','','0000-00-00 00:00:00'),(2739,0,0,3155,5894,3069,0,'2025-12-11','OA','BP','132/78','drarchit','2025-12-11 18:17:17','','0000-00-00 00:00:00'),(2740,0,0,4055,5927,3947,0,'2025-12-11','OA','BP','134/86','drarchit','2025-12-11 18:40:26','','0000-00-00 00:00:00'),(2741,0,0,3997,5823,3888,0,'2025-12-10','OA','Wt','53','drjayant','2025-12-11 18:44:53','','0000-00-00 00:00:00'),(2742,0,0,4057,5931,3949,0,'2025-12-11','OA','BP','134/86','drarchit','2025-12-11 18:46:00','','0000-00-00 00:00:00'),(2743,0,0,4056,5930,3948,0,'2025-12-11','OA','BP','136/76','drarchit','2025-12-11 18:49:19','','0000-00-00 00:00:00'),(2744,0,0,4060,5936,3952,0,'2025-12-11','OA','SpO2','98','drjayant','2025-12-11 18:53:13','drjayant','2025-12-11 18:53:16'),(2745,0,0,4060,5936,3952,0,'2025-12-11','OA','PR','90','drjayant','2025-12-11 18:53:16','','0000-00-00 00:00:00'),(2746,0,0,1930,5928,1883,0,'2025-12-11','OA','BP','150/88','drjayant','2025-12-11 19:02:39','drjayant','2025-12-11 19:02:41'),(2747,0,0,1930,5928,1883,0,'2025-12-11','OA','PR','90','drjayant','2025-12-11 19:02:41','','0000-00-00 00:00:00'),(2748,0,0,4024,5876,3916,0,'2025-12-11','OA','BP','132/78','drarchit','2025-12-11 19:18:59','','0000-00-00 00:00:00'),(2749,0,0,4059,5934,3951,0,'2025-12-11','OA','BP','134/86','drarchit','2025-12-11 19:38:28','','0000-00-00 00:00:00'),(2750,0,0,4066,5945,3958,0,'2025-12-11','OA','BP','164/86','drarchit','2025-12-11 20:03:40','','0000-00-00 00:00:00'),(2751,0,0,937,5953,905,0,'2025-12-12','OA','BP','164/88','drarchit','2025-12-12 11:09:41','','0000-00-00 00:00:00'),(2752,0,0,1878,5970,1832,0,'2025-12-12','OA','BP','150/108','drjayant','2025-12-12 11:25:26','drjayant','2025-12-12 11:40:26'),(2753,0,0,1878,5970,1832,0,'2025-12-12','OA','PR','90','drjayant','2025-12-12 11:25:28','drjayant','2025-12-12 11:40:26'),(2754,0,0,56,5972,757,0,'2025-12-12','OA','BP','140/88','drjayant','2025-12-12 11:32:55','drjayant','2025-12-12 11:32:57'),(2755,0,0,56,5972,757,0,'2025-12-12','OA','PR','85','drjayant','2025-12-12 11:32:57','','0000-00-00 00:00:00'),(2756,0,0,2464,5952,2408,0,'2025-12-12','OA','BP','134/86','drarchit','2025-12-12 11:36:33','','0000-00-00 00:00:00'),(2757,0,0,1878,5970,1832,0,'2025-12-12','OA','SpO2','99','drjayant','2025-12-12 11:40:26','','0000-00-00 00:00:00'),(2758,0,0,4078,5975,3971,0,'2025-12-12','OA','BP','138/84','drjayant','2025-12-12 11:49:08','drjayant','2025-12-12 11:49:09'),(2759,0,0,4078,5975,3971,0,'2025-12-12','OA','PR','90','drjayant','2025-12-12 11:49:09','','0000-00-00 00:00:00'),(2760,0,0,4001,5831,0,273,'2025-12-10','OD','TP','98.4','mo','2025-12-12 11:54:47','','0000-00-00 00:00:00'),(2761,0,0,4001,5831,0,273,'2025-12-10','OD','PR','96','mo','2025-12-12 11:55:16','','0000-00-00 00:00:00'),(2762,0,0,4001,5831,0,273,'2025-12-10','OD','SpO2','98','mo','2025-12-12 11:55:17','','0000-00-00 00:00:00'),(2763,0,0,4001,5831,0,273,'2025-12-10','OD','BP','120/70','mo','2025-12-12 11:55:22','','0000-00-00 00:00:00'),(2764,0,0,4001,5831,0,273,'2025-12-10','OD','RR','20','mo','2025-12-12 11:55:24','mo','2025-12-12 11:55:39'),(2765,0,0,4001,5831,0,273,'2025-12-10','OD','BMI','NaN','mo','2025-12-12 11:55:27','','0000-00-00 00:00:00'),(2766,0,0,4001,5831,0,273,'2025-12-10','OA','TP','99.4','mo','2025-12-12 11:55:34','mo','2025-12-16 13:28:58'),(2767,0,0,1552,5962,1511,0,'2025-12-12','OA','BP','134/86','drarchit','2025-12-12 12:17:49','','0000-00-00 00:00:00'),(2768,0,0,4083,5984,3976,0,'2025-12-12','OA','BP','132/78','drarchit','2025-12-12 12:23:28','','0000-00-00 00:00:00'),(2769,0,0,4086,5991,3979,0,'2025-12-12','OA','BP','134/86','drarchit','2025-12-12 12:27:58','','0000-00-00 00:00:00'),(2770,0,0,4073,5965,3966,0,'2025-12-12','OA','BP','132/78','drarchit','2025-12-12 12:47:41','','0000-00-00 00:00:00'),(2771,0,0,4074,5966,3967,0,'2025-12-12','OA','BP','132/78','drarchit','2025-12-12 12:51:00','','0000-00-00 00:00:00'),(2772,0,0,4081,5980,3974,0,'2025-12-12','OA','BP','142/86','drarchit','2025-12-12 12:59:22','','0000-00-00 00:00:00'),(2773,0,0,3630,5163,0,245,'2025-12-04','OD','BP','112/78','mo','2025-12-12 14:42:54','','0000-00-00 00:00:00'),(2774,0,0,3630,5163,0,245,'2025-12-04','OD','RR','24','mo','2025-12-12 14:42:55','','0000-00-00 00:00:00'),(2775,0,0,3630,5163,0,245,'2025-12-04','OD','SpO2','86','mo','2025-12-12 14:43:03','','0000-00-00 00:00:00'),(2776,0,0,3630,5163,0,245,'2025-12-04','OD','PR','98','mo','2025-12-12 14:43:27','','0000-00-00 00:00:00'),(2777,0,0,3601,5120,0,243,'2025-12-04','OA','BP','120/90','mo','2025-12-12 17:06:00','','0000-00-00 00:00:00'),(2778,0,0,3601,5120,0,243,'2025-12-04','OA','PR','103','mo','2025-12-12 17:06:08','','0000-00-00 00:00:00'),(2779,0,0,3601,5120,0,243,'2025-12-04','OA','RR','22','mo','2025-12-12 17:06:10','','0000-00-00 00:00:00'),(2780,0,0,3601,5120,0,243,'2025-12-04','OA','TP','98','mo','2025-12-12 17:06:14','','0000-00-00 00:00:00'),(2781,0,0,4103,6021,3996,0,'2025-12-12','OA','BP','132/86','drarchit','2025-12-12 18:13:44','','0000-00-00 00:00:00'),(2782,0,0,4111,6033,4004,0,'2025-12-12','OA','BP','156/86','drarchit','2025-12-12 18:31:17','','0000-00-00 00:00:00'),(2783,0,0,4097,6014,3990,0,'2025-12-12','OA','BP','162/98','drjayant','2025-12-12 18:32:23','drjayant','2025-12-13 12:06:29'),(2784,0,0,4097,6014,3990,0,'2025-12-12','OA','PR','70','drjayant','2025-12-12 18:33:06','drjayant','2025-12-13 12:06:29'),(2785,0,0,4113,6035,4006,0,'2025-12-12','OA','BP','132/78','drarchit','2025-12-12 18:39:21','','0000-00-00 00:00:00'),(2786,0,0,322,6030,306,0,'2025-12-12','OA','PR','90','drjayant','2025-12-12 18:41:55','drjayant','2025-12-12 18:42:07'),(2787,0,0,322,6030,306,0,'2025-12-12','OA','BP','116/78','drjayant','2025-12-12 18:42:07','','0000-00-00 00:00:00'),(2788,0,0,4114,6037,4007,0,'2025-12-12','OA','BP','164/88','drarchit','2025-12-12 18:47:11','','0000-00-00 00:00:00'),(2789,0,0,4082,5983,3975,0,'2025-12-12','OA','BP','132/78','drarchit','2025-12-12 18:55:15','','0000-00-00 00:00:00'),(2790,0,0,4115,6038,4008,0,'2025-12-12','OA','BP','170/96','drarchit','2025-12-12 19:03:04','','0000-00-00 00:00:00'),(2791,0,0,4112,6034,4005,0,'2025-12-12','OA','PR','90','drjayant','2025-12-12 19:04:37','drjayant','2025-12-12 19:04:46'),(2792,0,0,4112,6034,4005,0,'2025-12-12','OA','BP','136/88','drjayant','2025-12-12 19:04:46','','0000-00-00 00:00:00'),(2793,0,0,4063,5997,3955,0,'2025-12-12','OA','BP','168/88','drarchit','2025-12-12 19:07:21','','0000-00-00 00:00:00'),(2794,0,0,4121,6052,4014,0,'2025-12-12','OA','BP','150/92','drjayant','2025-12-12 19:11:42','drjayant','2025-12-12 19:11:48'),(2795,0,0,3912,5678,0,267,'2025-12-09','OD','SpO2','98','mo','2025-12-12 19:13:56','','0000-00-00 00:00:00'),(2796,0,0,3912,5678,0,267,'2025-12-09','OD','BP','112/70','mo','2025-12-12 19:13:58','','0000-00-00 00:00:00'),(2797,0,0,3912,5678,0,267,'2025-12-09','OD','PR','76','mo','2025-12-12 19:14:04','','0000-00-00 00:00:00'),(2798,0,0,4094,6009,3987,0,'2025-12-12','OA','BP','134/86','drarchit','2025-12-12 19:21:04','','0000-00-00 00:00:00'),(2799,0,0,2423,6044,2368,0,'2025-12-12','OA','BP','134/78','drarchit','2025-12-12 19:31:10','','0000-00-00 00:00:00'),(2800,0,0,2742,6050,2673,0,'2025-12-12','OA','BP','142/86','drarchit','2025-12-12 19:34:39','','0000-00-00 00:00:00'),(2801,0,0,1195,6051,1156,0,'2025-12-12','OA','BP','164/86','drarchit','2025-12-12 19:44:05','','0000-00-00 00:00:00'),(2802,0,0,2553,6053,2495,0,'2025-12-12','OA','BP','142/86','drarchit','2025-12-12 19:48:49','','0000-00-00 00:00:00'),(2803,0,0,364,6059,348,0,'2025-12-12','OA','BP','132/78','drarchit','2025-12-12 20:05:19','','0000-00-00 00:00:00'),(2804,0,0,4125,6060,4017,0,'2025-12-12','OA','BP','164/78','drarchit','2025-12-12 20:11:46','','0000-00-00 00:00:00'),(2805,0,0,4123,6056,0,276,'2025-12-12','OA','SpO2','98','mo','2025-12-13 00:37:18','','0000-00-00 00:00:00'),(2806,0,0,4123,6056,0,276,'2025-12-12','OA','BP','102/70','mo','2025-12-13 00:37:21','','0000-00-00 00:00:00'),(2807,0,0,4123,6056,0,276,'2025-12-12','OA','RR','20','mo','2025-12-13 00:37:25','','0000-00-00 00:00:00'),(2808,0,0,4123,6056,0,276,'2025-12-12','OA','PR','81','mo','2025-12-13 00:37:31','','0000-00-00 00:00:00'),(2809,0,0,4109,6047,0,275,'2025-12-12','OA','SpO2','91','mo','2025-12-13 01:23:12','','0000-00-00 00:00:00'),(2810,0,0,4109,6047,0,275,'2025-12-12','OA','BP','208/100','mo','2025-12-13 01:23:16','','0000-00-00 00:00:00'),(2811,0,0,4109,6047,0,275,'2025-12-12','OA','PR','136','mo','2025-12-13 01:23:20','','0000-00-00 00:00:00'),(2812,0,0,4109,6047,0,275,'2025-12-12','OA','RR','22','mo','2025-12-13 01:23:25','','0000-00-00 00:00:00'),(2813,0,0,4124,6061,0,277,'2025-12-12','OA','BP','150/90','mo','2025-12-13 01:32:13','','0000-00-00 00:00:00'),(2814,0,0,4124,6061,0,277,'2025-12-12','OA','SpO2','98','mo','2025-12-13 01:32:14','','0000-00-00 00:00:00'),(2815,0,0,4124,6061,0,277,'2025-12-12','OA','PR','120','mo','2025-12-13 01:32:21','','0000-00-00 00:00:00'),(2816,0,0,624,6079,594,0,'2025-12-13','OA','BP','154/78','drarchit','2025-12-13 11:15:50','','0000-00-00 00:00:00'),(2817,0,0,3681,6103,3582,0,'2025-12-13','OA','BP','134/78','drarchit','2025-12-13 11:26:04','drarchit','2025-12-13 11:26:23'),(2818,0,0,3681,6103,3582,0,'2025-12-13','OA','RBS','146','drarchit','2025-12-13 11:26:23','','0000-00-00 00:00:00'),(2819,0,0,168,6069,155,0,'2025-12-13','OA','SpO2','99','drjayant','2025-12-13 11:28:22','drjayant','2025-12-13 11:28:30'),(2820,0,0,168,6069,155,0,'2025-12-13','OA','BP','130/78','drjayant','2025-12-13 11:28:28','drjayant','2025-12-13 11:28:30'),(2821,0,0,168,6069,155,0,'2025-12-13','OA','PR','85','drjayant','2025-12-13 11:28:30','','0000-00-00 00:00:00'),(2822,0,0,4133,6074,4026,0,'2025-12-13','OA','SpO2','99','drjayant','2025-12-13 11:32:21','drjayant','2025-12-13 11:32:24'),(2823,0,0,4133,6074,4026,0,'2025-12-13','OA','PR','110','drjayant','2025-12-13 11:32:24','','0000-00-00 00:00:00'),(2824,0,0,4143,6101,4036,0,'2025-12-13','OA','BP','150/98','drjayant','2025-12-13 11:36:06','drjayant','2025-12-13 11:36:08'),(2825,0,0,4143,6101,4036,0,'2025-12-13','OA','PR','90','drjayant','2025-12-13 11:36:08','','0000-00-00 00:00:00'),(2826,0,0,1319,6114,1280,0,'2025-12-13','OA','BP','134/86','drarchit','2025-12-13 11:48:59','','0000-00-00 00:00:00'),(2827,0,0,4136,6087,4029,0,'2025-12-13','OA','BP','134/86','drarchit','2025-12-13 12:04:11','','0000-00-00 00:00:00'),(2828,0,0,252,6122,237,0,'2025-12-13','OA','BP','124/86','drarchit','2025-12-13 12:28:27','','0000-00-00 00:00:00'),(2829,0,0,4154,6124,4047,0,'2025-12-13','OA','BP','132/78','drarchit','2025-12-13 12:33:38','','0000-00-00 00:00:00'),(2830,0,0,4156,6126,4049,0,'2025-12-13','OA','BP','134/86','drarchit','2025-12-13 12:42:19','','0000-00-00 00:00:00'),(2831,0,0,4158,6132,4051,0,'2025-12-13','OA','BP','152/86','drarchit','2025-12-13 12:50:59','drarchit','2025-12-13 12:52:22'),(2832,0,0,4122,6054,4015,0,'2025-12-12','OA','BP','142/88','drarchit','2025-12-13 13:05:05','drarchit','2025-12-13 13:05:16'),(2833,0,0,4122,6054,4015,0,'2025-12-12','OA','RBS','127','drarchit','2025-12-13 13:05:16','','0000-00-00 00:00:00'),(2834,0,0,2835,6139,2765,0,'2025-12-13','OA','BP','130/78','drarchit','2025-12-13 13:18:17','drarchit','2025-12-13 13:18:59'),(2835,0,0,3510,6129,4050,0,'2025-12-13','OA','BP','130/82','drjayant','2025-12-13 13:28:42','drjayant','2025-12-13 13:28:48'),(2836,0,0,3510,6129,4050,0,'2025-12-13','OA','PR','85','drjayant','2025-12-13 13:28:48','','0000-00-00 00:00:00'),(2837,0,0,3827,5527,0,260,'2025-12-08','OD','TP','98.4','mo','2025-12-13 13:29:32','','0000-00-00 00:00:00'),(2838,0,0,3827,5527,0,260,'2025-12-08','OD','PR','40','mo','2025-12-13 13:29:35','','0000-00-00 00:00:00'),(2839,0,0,3827,5527,0,260,'2025-12-08','OD','SpO2','97','mo','2025-12-13 13:29:39','','0000-00-00 00:00:00'),(2840,0,0,3827,5527,0,260,'2025-12-08','OD','BP','130/70','mo','2025-12-13 13:29:42','','0000-00-00 00:00:00'),(2841,0,0,3827,5527,0,260,'2025-12-08','OD','RR','20','mo','2025-12-13 13:29:49','','0000-00-00 00:00:00'),(2842,0,0,3625,6119,3523,0,'2025-12-13','OA','BP','132/78','drarchit','2025-12-13 13:33:18','','0000-00-00 00:00:00'),(2843,0,0,3350,4694,0,222,'2025-11-30','OD','TP','98.2','mo','2025-12-13 14:01:42','','0000-00-00 00:00:00'),(2844,0,0,3350,4694,0,222,'2025-11-30','OD','PR','90','mo','2025-12-13 14:01:48','','0000-00-00 00:00:00'),(2845,0,0,3350,4694,0,222,'2025-11-30','OD','SpO2','99','mo','2025-12-13 14:01:50','','0000-00-00 00:00:00'),(2846,0,0,3350,4694,0,222,'2025-11-30','OD','BP','130/80','mo','2025-12-13 14:01:55','','0000-00-00 00:00:00'),(2847,0,0,3350,4694,0,222,'2025-11-30','OD','RR','20','mo','2025-12-13 14:01:56','','0000-00-00 00:00:00'),(2848,0,0,3350,4694,0,222,'2025-11-30','OA','TP','98.2','mo','2025-12-13 14:15:35','','0000-00-00 00:00:00'),(2849,0,0,4157,6131,0,281,'2025-12-13','OA','SpO2','94','mo','2025-12-13 15:36:04','','0000-00-00 00:00:00'),(2850,0,0,4157,6131,0,281,'2025-12-13','OA','PR','122','mo','2025-12-13 15:36:07','','0000-00-00 00:00:00'),(2851,0,0,4157,6131,0,281,'2025-12-13','OA','TP','99.9','mo','2025-12-13 15:36:14','','0000-00-00 00:00:00'),(2852,0,0,4157,6131,0,281,'2025-12-13','OA','BP','80/50','mo','2025-12-13 15:36:19','','0000-00-00 00:00:00'),(2853,0,0,4157,6131,0,281,'2025-12-13','OA','RR','24','mo','2025-12-13 15:36:31','','0000-00-00 00:00:00'),(2854,0,0,4157,6131,0,281,'2025-12-13','OD','SpO2','93','mo','2025-12-13 15:50:14','','0000-00-00 00:00:00'),(2855,0,0,4157,6131,0,281,'2025-12-13','OD','BP','110/70','mo','2025-12-13 15:50:17','','0000-00-00 00:00:00'),(2856,0,0,4157,6131,0,281,'2025-12-13','OD','PR','100','mo','2025-12-13 15:50:28','','0000-00-00 00:00:00'),(2857,0,0,4123,6056,0,276,'2025-12-12','OD','PR','85','mo','2025-12-13 18:11:22','','0000-00-00 00:00:00'),(2858,0,0,4123,6056,0,276,'2025-12-12','OD','SpO2','99','mo','2025-12-13 18:11:23','','0000-00-00 00:00:00'),(2859,0,0,4123,6056,0,276,'2025-12-12','OD','BP','110/70','mo','2025-12-13 18:11:25','','0000-00-00 00:00:00'),(2860,0,0,4087,6070,0,278,'2025-12-13','OA','SpO2','96','mo','2025-12-13 19:00:15','','0000-00-00 00:00:00'),(2861,0,0,4087,6070,0,278,'2025-12-13','OA','BP','130/90','mo','2025-12-13 19:00:17','','0000-00-00 00:00:00'),(2862,0,0,4087,6070,0,278,'2025-12-13','OA','PR','82','mo','2025-12-13 19:00:20','','0000-00-00 00:00:00'),(2863,0,0,4087,6070,0,278,'2025-12-13','OA','RR','22','mo','2025-12-13 19:00:24','','0000-00-00 00:00:00'),(2864,0,0,4010,5848,0,274,'2025-12-10','OA','BP','260/140','mo','2025-12-13 19:02:38','','0000-00-00 00:00:00'),(2865,0,0,4010,5848,0,274,'2025-12-10','OA','SpO2','80','mo','2025-12-13 19:02:41','','0000-00-00 00:00:00'),(2866,0,0,4010,5848,0,274,'2025-12-10','OA','PR','76','mo','2025-12-13 19:02:43','','0000-00-00 00:00:00'),(2867,0,0,4010,5848,0,274,'2025-12-10','OA','RR','24','mo','2025-12-13 19:02:54','','0000-00-00 00:00:00'),(2868,0,0,4010,5848,0,274,'2025-12-10','OA','RBS','162','mo','2025-12-13 19:03:04','','0000-00-00 00:00:00'),(2869,0,0,4106,6084,0,280,'2025-12-13','OA','BP','120/70','mo','2025-12-13 19:16:12','','0000-00-00 00:00:00'),(2870,0,0,4106,6084,0,280,'2025-12-13','OA','SpO2','96','mo','2025-12-13 19:16:13','','0000-00-00 00:00:00'),(2871,0,0,4106,6084,0,280,'2025-12-13','OA','PR','82','mo','2025-12-13 19:16:17','','0000-00-00 00:00:00'),(2872,0,0,4106,6084,0,280,'2025-12-13','OA','RR','22','mo','2025-12-13 19:16:20','','0000-00-00 00:00:00'),(2873,0,0,3134,6082,0,279,'2025-12-13','OA','PR','80','mo','2025-12-13 19:21:33','','0000-00-00 00:00:00'),(2874,0,0,3134,6082,0,279,'2025-12-13','OA','SpO2','98','mo','2025-12-13 19:21:38','','0000-00-00 00:00:00'),(2875,0,0,3134,6082,0,279,'2025-12-13','OA','BP','130/80','mo','2025-12-13 19:21:43','','0000-00-00 00:00:00'),(2876,0,0,3134,6082,0,279,'2025-12-13','OA','RR','22','mo','2025-12-13 19:21:46','','0000-00-00 00:00:00'),(2877,0,0,3134,6082,0,279,'2025-12-13','OD','SpO2','99','mo','2025-12-13 20:16:05','','0000-00-00 00:00:00'),(2878,0,0,3134,6082,0,279,'2025-12-13','OD','PR','82','mo','2025-12-13 20:16:09','','0000-00-00 00:00:00'),(2879,0,0,3134,6082,0,279,'2025-12-13','OD','BP','126/82','mo','2025-12-13 20:16:19','','0000-00-00 00:00:00'),(2880,0,0,4140,6155,0,282,'2025-12-13','OA','SpO2','99','mo','2025-12-13 23:47:49','','0000-00-00 00:00:00'),(2881,0,0,4140,6155,0,282,'2025-12-13','OA','BP','150/90','mo','2025-12-13 23:47:51','','0000-00-00 00:00:00'),(2882,0,0,4140,6155,0,282,'2025-12-13','OA','RR','22','mo','2025-12-13 23:47:53','','0000-00-00 00:00:00'),(2883,0,0,4140,6155,0,282,'2025-12-13','OA','PR','59','mo','2025-12-13 23:47:58','','0000-00-00 00:00:00'),(2884,0,0,4140,6155,0,282,'2025-12-13','OA','RBS','128','mo','2025-12-13 23:48:07','','0000-00-00 00:00:00'),(2885,0,0,3134,6082,0,279,'2025-12-13','OD','RR','20','mo','2025-12-14 10:55:11','','0000-00-00 00:00:00'),(2886,0,0,3863,5583,0,261,'2025-12-08','OD','TP','98.1','mo','2025-12-14 11:26:05','','0000-00-00 00:00:00'),(2887,0,0,3863,5583,0,261,'2025-12-08','OD','PR','78','mo','2025-12-14 11:26:09','','0000-00-00 00:00:00'),(2888,0,0,3863,5583,0,261,'2025-12-08','OD','SpO2','97','mo','2025-12-14 11:26:21','mo','2025-12-14 11:26:26'),(2889,0,0,3863,5583,0,261,'2025-12-08','OD','BP','106/74','mo','2025-12-14 11:26:42','','0000-00-00 00:00:00'),(2890,0,0,3863,5583,0,261,'2025-12-08','OD','RR','20','mo','2025-12-14 11:26:44','','0000-00-00 00:00:00'),(2891,0,0,4109,6047,0,275,'2025-12-12','OD','TP','98.2','mo','2025-12-14 12:09:40','','0000-00-00 00:00:00'),(2892,0,0,4109,6047,0,275,'2025-12-12','OD','PR','79','mo','2025-12-14 12:09:46','','0000-00-00 00:00:00'),(2893,0,0,4109,6047,0,275,'2025-12-12','OD','SpO2','97','mo','2025-12-14 12:09:47','','0000-00-00 00:00:00'),(2894,0,0,4109,6047,0,275,'2025-12-12','OD','BP','152/80','mo','2025-12-14 12:09:54','','0000-00-00 00:00:00'),(2895,0,0,4109,6047,0,275,'2025-12-12','OD','RR','20','mo','2025-12-14 12:09:55','','0000-00-00 00:00:00'),(2896,0,0,4087,6070,0,278,'2025-12-13','OD','TP','98.2','mo','2025-12-14 12:37:06','','0000-00-00 00:00:00'),(2897,0,0,4087,6070,0,278,'2025-12-13','OD','PR','88','mo','2025-12-14 12:37:12','','0000-00-00 00:00:00'),(2898,0,0,4087,6070,0,278,'2025-12-13','OD','SpO2','97','mo','2025-12-14 12:37:16','','0000-00-00 00:00:00'),(2899,0,0,4087,6070,0,278,'2025-12-13','OD','BP','112/74','mo','2025-12-14 12:37:25','','0000-00-00 00:00:00'),(2900,0,0,4087,6070,0,278,'2025-12-13','OD','RR','20','mo','2025-12-14 12:37:25','','0000-00-00 00:00:00'),(2901,0,0,4087,6070,0,278,'2025-12-13','OA','TP','98.4','mo','2025-12-14 12:49:30','','0000-00-00 00:00:00'),(2902,0,0,4171,6161,0,283,'2025-12-14','OA','TP','98.4','mo','2025-12-14 15:42:52','','0000-00-00 00:00:00'),(2903,0,0,4171,6161,0,283,'2025-12-14','OA','PR','82','mo','2025-12-14 15:42:54','mo','2025-12-14 15:44:22'),(2904,0,0,4171,6161,0,283,'2025-12-14','OA','SpO2','99','mo','2025-12-14 15:42:57','mo','2025-12-14 15:44:26'),(2905,0,0,4171,6161,0,283,'2025-12-14','OA','BP','80/50','mo','2025-12-14 15:43:34','mo','2025-12-14 15:44:01'),(2906,0,0,4171,6161,0,283,'2025-12-14','OA','RR','20','mo','2025-12-14 15:43:36','','0000-00-00 00:00:00'),(2907,0,0,4171,6161,0,283,'2025-12-14','OD','TP','98.4','mo','2025-12-14 15:44:28','','0000-00-00 00:00:00'),(2908,0,0,4171,6161,0,283,'2025-12-14','OD','PR','80','mo','2025-12-14 15:44:55','','0000-00-00 00:00:00'),(2909,0,0,4171,6161,0,283,'2025-12-14','OD','SpO2','98','mo','2025-12-14 15:45:00','','0000-00-00 00:00:00'),(2910,0,0,4171,6161,0,283,'2025-12-14','OD','BP','140/80','mo','2025-12-14 15:45:05','','0000-00-00 00:00:00'),(2911,0,0,4171,6161,0,283,'2025-12-14','OD','RR','20','mo','2025-12-14 15:45:13','','0000-00-00 00:00:00'),(2912,0,0,4106,6084,0,280,'2025-12-13','OA','TP','98.4','vishal','2025-12-14 16:55:29','','0000-00-00 00:00:00'),(2913,0,0,4106,6084,0,280,'2025-12-13','OD','TP','98.4','vishal','2025-12-14 16:55:37','','0000-00-00 00:00:00'),(2914,0,0,4106,6084,0,280,'2025-12-13','OD','PR','64','vishal','2025-12-14 16:55:43','','0000-00-00 00:00:00'),(2915,0,0,4106,6084,0,280,'2025-12-13','OD','SpO2','100','vishal','2025-12-14 16:55:45','','0000-00-00 00:00:00'),(2916,0,0,4106,6084,0,280,'2025-12-13','OD','BP','120/70','vishal','2025-12-14 16:55:50','','0000-00-00 00:00:00'),(2917,0,0,4106,6084,0,280,'2025-12-13','OD','RR','20','vishal','2025-12-14 16:55:57','','0000-00-00 00:00:00'),(2918,0,0,3858,6195,3755,0,'2025-12-15','OA','BP','134/86','drarchit','2025-12-15 11:14:51','','0000-00-00 00:00:00'),(2919,0,0,3234,6197,3148,0,'2025-12-15','OA','BP','134/86','drarchit','2025-12-15 11:22:42','','0000-00-00 00:00:00'),(2920,0,0,4179,6175,4069,0,'2025-12-15','OA','BP','125/78','drjayant','2025-12-15 11:33:47','drjayant','2025-12-15 11:33:49'),(2921,0,0,4179,6175,4069,0,'2025-12-15','OA','PR','80','drjayant','2025-12-15 11:33:49','','0000-00-00 00:00:00'),(2922,0,0,4195,6209,4085,0,'2025-12-15','OA','BP','138/86','drarchit','2025-12-15 11:34:00','','0000-00-00 00:00:00'),(2923,0,0,4202,6218,4092,0,'2025-12-15','OA','BP','138/86','drarchit','2025-12-15 11:52:44','drarchit','2025-12-15 18:24:26'),(2924,0,0,4207,6225,4097,0,'2025-12-15','OA','BP','142/86','drarchit','2025-12-15 11:56:01','','0000-00-00 00:00:00'),(2925,0,0,4208,6226,4098,0,'2025-12-15','OA','BP','138/84','drarchit','2025-12-15 12:02:42','','0000-00-00 00:00:00'),(2926,0,0,4217,6246,4108,0,'2025-12-15','OA','BP','124/80','drjayant','2025-12-15 12:52:21','drjayant','2025-12-15 14:07:22'),(2927,0,0,4217,6246,4108,0,'2025-12-15','OA','PR','75','drjayant','2025-12-15 12:52:29','drjayant','2025-12-15 14:07:22'),(2928,0,0,4223,6255,4113,0,'2025-12-15','OA','BP','130/80','drjayant','2025-12-15 13:32:15','drjayant','2025-12-15 13:37:34'),(2929,0,0,4223,6255,4113,0,'2025-12-15','OA','PR','90','drjayant','2025-12-15 13:32:18','drjayant','2025-12-15 13:37:34'),(2930,0,0,4223,6255,4113,0,'2025-12-15','OA','RBS','88','drjayant','2025-12-15 13:37:32','drjayant','2025-12-15 13:37:34'),(2931,0,0,4223,6255,4113,0,'2025-12-15','OA','Wt','102','drjayant','2025-12-15 13:37:34','','0000-00-00 00:00:00'),(2932,0,0,3871,6241,4105,0,'2025-12-15','OA','BP','150/88','drjayant','2025-12-15 13:40:03','','0000-00-00 00:00:00'),(2933,0,0,4217,6246,4108,0,'2025-12-15','OA','SpO2','93','drjayant','2025-12-15 14:07:22','','0000-00-00 00:00:00'),(2934,0,0,4010,5848,0,274,'2025-12-10','OD','SpO2','95','mo','2025-12-15 16:53:37','','0000-00-00 00:00:00'),(2935,0,0,4010,5848,0,274,'2025-12-10','OD','BP','160/90','mo','2025-12-15 16:53:47','','0000-00-00 00:00:00'),(2936,0,0,4010,5848,0,274,'2025-12-10','OD','PR','72','mo','2025-12-15 16:53:50','','0000-00-00 00:00:00'),(2937,0,0,4189,6201,0,288,'2025-12-15','OA','SpO2','98','mo','2025-12-15 17:59:00','','0000-00-00 00:00:00'),(2938,0,0,4189,6201,0,288,'2025-12-15','OA','BP','132/90','mo','2025-12-15 17:59:33','','0000-00-00 00:00:00'),(2939,0,0,4189,6201,0,288,'2025-12-15','OA','PR','78','mo','2025-12-15 18:00:04','','0000-00-00 00:00:00'),(2940,0,0,4222,6254,0,289,'2025-12-15','OA','PR','78','mo','2025-12-15 18:10:22','','0000-00-00 00:00:00'),(2941,0,0,4222,6254,0,289,'2025-12-15','OA','BP','180/86','mo','2025-12-15 18:10:29','','0000-00-00 00:00:00'),(2942,0,0,4222,6254,0,289,'2025-12-15','OA','SpO2','97','mo','2025-12-15 18:10:38','','0000-00-00 00:00:00'),(2943,0,0,4222,6254,0,289,'2025-12-15','OA','RBS','154','mo','2025-12-15 18:11:12','','0000-00-00 00:00:00'),(2944,0,0,4202,6218,4092,0,'2025-12-15','OA','SpO2','88','drarchit','2025-12-15 18:24:26','','0000-00-00 00:00:00'),(2945,0,0,4229,6264,0,292,'2025-12-15','OA','BP','130/90','mo','2025-12-15 18:25:46','','0000-00-00 00:00:00'),(2946,0,0,4229,6264,0,292,'2025-12-15','OA','SpO2','98','mo','2025-12-15 18:25:51','','0000-00-00 00:00:00'),(2947,0,0,4229,6264,0,292,'2025-12-15','OA','PR','90','mo','2025-12-15 18:26:00','','0000-00-00 00:00:00'),(2948,0,0,688,6281,658,0,'2025-12-15','OA','BP','134/83','drarchit','2025-12-15 18:30:51','','0000-00-00 00:00:00'),(2949,0,0,4227,6262,0,290,'2025-12-15','OA','PR','88','mo','2025-12-15 18:33:50','','0000-00-00 00:00:00'),(2950,0,0,4227,6262,0,290,'2025-12-15','OA','SpO2','98','mo','2025-12-15 18:33:52','','0000-00-00 00:00:00'),(2951,0,0,4227,6262,0,290,'2025-12-15','OA','BP','110/70','mo','2025-12-15 18:34:00','','0000-00-00 00:00:00'),(2952,0,0,4242,6289,4129,0,'2025-12-15','OA','BP','132/78','drarchit','2025-12-15 18:34:49','','0000-00-00 00:00:00'),(2953,0,0,4140,6155,0,282,'2025-12-13','OD','BP','136/80','mo','2025-12-15 18:38:53','','0000-00-00 00:00:00'),(2954,0,0,4140,6155,0,282,'2025-12-13','OD','SpO2','98','mo','2025-12-15 18:38:59','','0000-00-00 00:00:00'),(2955,0,0,4140,6155,0,282,'2025-12-13','OD','PR','77','mo','2025-12-15 18:39:02','','0000-00-00 00:00:00'),(2956,0,0,4244,6291,4131,0,'2025-12-15','OA','BP','134/86','drarchit','2025-12-15 18:40:27','','0000-00-00 00:00:00'),(2957,0,0,4245,6292,4132,0,'2025-12-15','OA','BP','134/86','drarchit','2025-12-15 18:47:47','','0000-00-00 00:00:00'),(2958,0,0,4174,6167,0,287,'2025-12-14','OA','SpO2','98','mo','2025-12-15 18:50:01','','0000-00-00 00:00:00'),(2959,0,0,4174,6167,0,287,'2025-12-14','OA','BP','80/40','mo','2025-12-15 18:50:04','','0000-00-00 00:00:00'),(2960,0,0,4174,6167,0,287,'2025-12-14','OA','RR','20','mo','2025-12-15 18:50:06','','0000-00-00 00:00:00'),(2961,0,0,4174,6167,0,287,'2025-12-14','OA','PR','94','mo','2025-12-15 18:50:10','','0000-00-00 00:00:00'),(2962,0,0,4174,6167,0,287,'2025-12-14','OA','RBS','130','mo','2025-12-15 18:50:15','','0000-00-00 00:00:00'),(2963,0,0,1344,6296,1305,0,'2025-12-15','OA','BP','142/86 ','drarchit','2025-12-15 18:51:08','','0000-00-00 00:00:00'),(2964,0,0,767,6298,736,0,'2025-12-15','OA','BP','124/86','drarchit','2025-12-15 18:57:31','','0000-00-00 00:00:00'),(2965,0,0,4249,6301,4136,0,'2025-12-15','OA','BP','164/88','drarchit','2025-12-15 19:10:37','','0000-00-00 00:00:00'),(2966,0,0,4107,6166,0,286,'2025-12-14','OA','SpO2','99','mo','2025-12-15 19:12:14','','0000-00-00 00:00:00'),(2967,0,0,4107,6166,0,286,'2025-12-14','OA','BP','110/70','mo','2025-12-15 19:12:16','','0000-00-00 00:00:00'),(2968,0,0,4107,6166,0,286,'2025-12-14','OA','PR','76','mo','2025-12-15 19:12:23','','0000-00-00 00:00:00'),(2969,0,0,3988,6299,3879,0,'2025-12-15','OA','BP','132/78','drarchit','2025-12-15 19:15:50','','0000-00-00 00:00:00'),(2970,0,0,2825,6304,2755,0,'2025-12-15','OA','BP','134/86','drarchit','2025-12-15 19:20:32','','0000-00-00 00:00:00'),(2971,0,0,4250,6305,4138,0,'2025-12-15','OA','BP','134/86','drarchit','2025-12-15 19:27:08','','0000-00-00 00:00:00'),(2972,0,0,4251,6306,4139,0,'2025-12-15','OA','BP','142/86','drarchit','2025-12-15 19:30:56','','0000-00-00 00:00:00'),(2973,0,0,4253,6310,4141,0,'2025-12-15','OA','BP','134/86','drarchit','2025-12-15 19:34:19','','0000-00-00 00:00:00'),(2974,0,0,296,6312,280,0,'2025-12-15','OA','BP','132/78','drarchit','2025-12-15 19:38:39','','0000-00-00 00:00:00'),(2975,0,0,4256,6321,4144,0,'2025-12-15','OA','BP','142/88','drarchit','2025-12-15 19:48:50','','0000-00-00 00:00:00'),(2976,0,0,4174,6167,0,287,'2025-12-14','OD','PR','78','mo','2025-12-15 21:00:12','','0000-00-00 00:00:00'),(2977,0,0,4174,6167,0,287,'2025-12-14','OD','SpO2','97','mo','2025-12-15 21:00:14','','0000-00-00 00:00:00'),(2978,0,0,4174,6167,0,287,'2025-12-14','OD','BP','130/70','mo','2025-12-15 21:00:19','','0000-00-00 00:00:00'),(2979,0,0,4174,6167,0,287,'2025-12-14','OD','RR','20','mo','2025-12-15 21:00:27','','0000-00-00 00:00:00'),(2980,0,0,4189,6201,0,288,'2025-12-15','OA','RR','20','mo','2025-12-15 23:05:01','','0000-00-00 00:00:00'),(2981,0,0,4189,6201,0,288,'2025-12-15','OA','TP','97.6','mo','2025-12-15 23:05:07','','0000-00-00 00:00:00'),(2982,0,0,4189,6201,0,288,'2025-12-15','OD','TP','98.2','mo','2025-12-15 23:05:08','','0000-00-00 00:00:00'),(2983,0,0,4189,6201,0,288,'2025-12-15','OD','PR','80','mo','2025-12-15 23:05:21','','0000-00-00 00:00:00'),(2984,0,0,4189,6201,0,288,'2025-12-15','OD','SpO2','98','mo','2025-12-15 23:05:23','','0000-00-00 00:00:00'),(2985,0,0,4189,6201,0,288,'2025-12-15','OD','BP','124/80','mo','2025-12-15 23:05:27','','0000-00-00 00:00:00'),(2986,0,0,4189,6201,0,288,'2025-12-15','OD','RR','20','mo','2025-12-15 23:05:29','','0000-00-00 00:00:00'),(2987,0,0,4173,6165,0,285,'2025-12-14','OA','PR','87','mo','2025-12-16 01:47:19','','0000-00-00 00:00:00'),(2988,0,0,4173,6165,0,285,'2025-12-14','OA','SpO2','97','mo','2025-12-16 01:47:26','','0000-00-00 00:00:00'),(2989,0,0,4173,6165,0,285,'2025-12-14','OA','BP','130/80','mo','2025-12-16 01:47:27','','0000-00-00 00:00:00'),(2990,0,0,4173,6165,0,285,'2025-12-14','OA','RR','22','mo','2025-12-16 01:47:32','','0000-00-00 00:00:00'),(2991,0,0,4233,6274,0,293,'2025-12-15','OD','TP','103','mo','2025-12-16 11:24:49','','0000-00-00 00:00:00'),(2992,0,0,4233,6274,0,293,'2025-12-15','OD','PR','122','mo','2025-12-16 11:24:52','','0000-00-00 00:00:00'),(2993,0,0,4233,6274,0,293,'2025-12-15','OD','SpO2','99','mo','2025-12-16 11:24:55','','0000-00-00 00:00:00'),(2994,0,0,4233,6274,0,293,'2025-12-15','OD','BP','100/60','mo','2025-12-16 11:25:00','','0000-00-00 00:00:00'),(2995,0,0,4233,6274,0,293,'2025-12-15','OD','RR','20','mo','2025-12-16 11:25:04','','0000-00-00 00:00:00'),(2996,0,0,4233,6274,0,293,'2025-12-15','OD','RBS','302','mo','2025-12-16 11:25:07','','0000-00-00 00:00:00'),(2997,0,0,4263,6335,4149,0,'2025-12-16','OA','BP','168/92','drarchit','2025-12-16 11:34:05','','0000-00-00 00:00:00'),(2998,0,0,4265,6340,4151,0,'2025-12-16','OA','BP','134/86','drarchit','2025-12-16 11:37:20','','0000-00-00 00:00:00'),(2999,0,0,4267,6344,4153,0,'2025-12-16','OA','BP','142/78','drarchit','2025-12-16 11:44:25','','0000-00-00 00:00:00'),(3000,0,0,4276,6360,4162,0,'2025-12-16','OA','BP','132/78','drarchit','2025-12-16 11:53:06','','0000-00-00 00:00:00'),(3001,0,0,4279,6364,4165,0,'2025-12-16','OA','BP','130/82','drjayant','2025-12-16 11:58:25','drjayant','2025-12-16 11:58:27'),(3002,0,0,1282,6349,1241,0,'2025-12-16','OA','BP','132/78','drarchit','2025-12-16 11:58:25','','0000-00-00 00:00:00'),(3003,0,0,4279,6364,4165,0,'2025-12-16','OA','PR','80','drjayant','2025-12-16 11:58:27','','0000-00-00 00:00:00'),(3004,0,0,4286,6375,4173,0,'2025-12-16','OA','BP','140/88','drjayant','2025-12-16 12:04:45','drjayant','2025-12-16 12:05:10'),(3005,0,0,4286,6375,4173,0,'2025-12-16','OA','PR','85','drjayant','2025-12-16 12:05:10','','0000-00-00 00:00:00'),(3006,0,0,4278,6363,4164,0,'2025-12-16','OA','BP','142/78','drarchit','2025-12-16 12:08:44','','0000-00-00 00:00:00'),(3007,0,0,4273,6355,4159,0,'2025-12-16','OA','BP','142/78','drarchit','2025-12-16 12:10:09','','0000-00-00 00:00:00'),(3008,0,0,4283,6371,4169,0,'2025-12-16','OA','BP','132/88','drjayant','2025-12-16 12:15:47','drjayant','2025-12-16 12:15:53'),(3009,0,0,4283,6371,4169,0,'2025-12-16','OA','PR','80','drjayant','2025-12-16 12:15:53','','0000-00-00 00:00:00'),(3010,0,0,4275,6358,4161,0,'2025-12-16','OA','BP','134/78','drarchit','2025-12-16 12:16:07','','0000-00-00 00:00:00'),(3011,0,0,663,6359,633,0,'2025-12-16','OA','BP','134/78','drarchit','2025-12-16 12:20:28','','0000-00-00 00:00:00'),(3012,0,0,4287,6376,4174,0,'2025-12-16','OA','PR','90','drjayant','2025-12-16 12:22:27','drjayant','2025-12-16 12:22:36'),(3013,0,0,4287,6376,4174,0,'2025-12-16','OA','BP','145/88','drjayant','2025-12-16 12:22:36','','0000-00-00 00:00:00'),(3014,0,0,4280,6365,4166,0,'2025-12-16','OA','BP','134/86','drarchit','2025-12-16 12:35:22','','0000-00-00 00:00:00'),(3015,0,0,4226,6382,4116,0,'2025-12-16','OA','BP','104/76','drarchit','2025-12-16 12:50:18','','0000-00-00 00:00:00'),(3016,0,0,4292,6383,4179,0,'2025-12-16','OA','BP','180/104','drarchit','2025-12-16 12:54:51','','0000-00-00 00:00:00'),(3017,0,0,4293,6386,4180,0,'2025-12-16','OA','BP','132/78','drarchit','2025-12-16 12:59:31','','0000-00-00 00:00:00'),(3018,0,0,4295,6388,4182,0,'2025-12-16','OA','PR','90','drjayant','2025-12-16 13:18:10','drjayant','2025-12-16 13:18:15'),(3019,0,0,4295,6388,4182,0,'2025-12-16','OA','BP','132/86','drjayant','2025-12-16 13:18:15','','0000-00-00 00:00:00'),(3020,0,0,4294,6387,4181,0,'2025-12-16','OA','BP','140/88','drarchit','2025-12-16 13:21:00','','0000-00-00 00:00:00'),(3021,0,0,3719,6329,0,294,'2025-12-16','OA','TP','98.2','mo','2025-12-16 13:51:32','','0000-00-00 00:00:00'),(3022,0,0,3719,6329,0,294,'2025-12-16','OA','PR','84','mo','2025-12-16 13:51:39','','0000-00-00 00:00:00'),(3023,0,0,3719,6329,0,294,'2025-12-16','OA','SpO2','98','mo','2025-12-16 13:51:42','','0000-00-00 00:00:00'),(3024,0,0,3719,6329,0,294,'2025-12-16','OA','BP','122/80','mo','2025-12-16 13:51:49','','0000-00-00 00:00:00'),(3025,0,0,3719,6329,0,294,'2025-12-16','OA','RR','20','mo','2025-12-16 13:51:57','','0000-00-00 00:00:00'),(3026,0,0,3719,6329,0,294,'2025-12-16','OD','TP','98.4','mo','2025-12-16 13:52:41','','0000-00-00 00:00:00'),(3027,0,0,3719,6329,0,294,'2025-12-16','OD','PR','72','mo','2025-12-16 13:52:47','mo','2025-12-16 13:53:15'),(3028,0,0,3719,6329,0,294,'2025-12-16','OD','SpO2','98','mo','2025-12-16 13:52:50','','0000-00-00 00:00:00'),(3029,0,0,3719,6329,0,294,'2025-12-16','OD','BP','142/90','mo','2025-12-16 13:53:10','','0000-00-00 00:00:00'),(3030,0,0,3719,6329,0,294,'2025-12-16','OD','RR','20','mo','2025-12-16 13:53:25','','0000-00-00 00:00:00'),(3031,0,0,4229,6264,0,292,'2025-12-15','OA','TP','98.2','mo','2025-12-16 14:10:35','','0000-00-00 00:00:00'),(3032,0,0,4229,6264,0,292,'2025-12-15','OA','RR','22','mo','2025-12-16 14:10:42','','0000-00-00 00:00:00'),(3033,0,0,4229,6264,0,292,'2025-12-15','OD','TP','98.4','mo','2025-12-16 14:11:09','','0000-00-00 00:00:00'),(3034,0,0,4229,6264,0,292,'2025-12-15','OD','PR','100','mo','2025-12-16 14:11:11','','0000-00-00 00:00:00'),(3035,0,0,4229,6264,0,292,'2025-12-15','OD','SpO2','98','mo','2025-12-16 14:11:20','','0000-00-00 00:00:00'),(3036,0,0,4229,6264,0,292,'2025-12-15','OD','BP','110/70','mo','2025-12-16 14:11:23','','0000-00-00 00:00:00'),(3037,0,0,4229,6264,0,292,'2025-12-15','OD','RR','20','mo','2025-12-16 14:11:27','','0000-00-00 00:00:00'),(3038,0,0,4260,6330,0,295,'2025-12-16','OA','TP','98.1','mo','2025-12-16 16:22:14','','0000-00-00 00:00:00'),(3039,0,0,4260,6330,0,295,'2025-12-16','OA','PR','81','mo','2025-12-16 16:22:17','','0000-00-00 00:00:00'),(3040,0,0,4260,6330,0,295,'2025-12-16','OA','SpO2','97','mo','2025-12-16 16:22:19','','0000-00-00 00:00:00'),(3041,0,0,4260,6330,0,295,'2025-12-16','OA','BP','130/80','mo','2025-12-16 16:22:22','','0000-00-00 00:00:00'),(3042,0,0,4260,6330,0,295,'2025-12-16','OA','RR','22','mo','2025-12-16 16:22:25','','0000-00-00 00:00:00'),(3043,0,0,4260,6330,0,295,'2025-12-16','OD','TP','98.2','mo','2025-12-16 16:22:26','','0000-00-00 00:00:00'),(3044,0,0,4260,6330,0,295,'2025-12-16','OD','PR','78','mo','2025-12-16 16:22:28','','0000-00-00 00:00:00'),(3045,0,0,4260,6330,0,295,'2025-12-16','OD','SpO2','98','mo','2025-12-16 16:22:30','','0000-00-00 00:00:00'),(3046,0,0,4260,6330,0,295,'2025-12-16','OD','BP','124/76','mo','2025-12-16 16:22:39','','0000-00-00 00:00:00'),(3047,0,0,4260,6330,0,295,'2025-12-16','OD','RR','20','mo','2025-12-16 16:22:41','','0000-00-00 00:00:00'),(3048,0,0,4262,6334,0,296,'2025-12-16','OA','TP','97','mo','2025-12-16 18:19:40','','0000-00-00 00:00:00'),(3049,0,0,4262,6334,0,296,'2025-12-16','OA','PR','73','mo','2025-12-16 18:19:45','','0000-00-00 00:00:00'),(3050,0,0,4262,6334,0,296,'2025-12-16','OA','SpO2','97','mo','2025-12-16 18:19:47','','0000-00-00 00:00:00'),(3051,0,0,4262,6334,0,296,'2025-12-16','OA','BP','220/120','mo','2025-12-16 18:19:56','','0000-00-00 00:00:00'),(3052,0,0,4262,6334,0,296,'2025-12-16','OA','RR','24','mo','2025-12-16 18:20:00','','0000-00-00 00:00:00'),(3053,0,0,4305,6404,4191,0,'2025-12-16','OA','BP','190/112','drarchit','2025-12-16 18:20:27','','0000-00-00 00:00:00'),(3054,0,0,4227,6262,0,290,'2025-12-15','OA','RR','22','mo','2025-12-16 18:24:14','','0000-00-00 00:00:00'),(3055,0,0,3780,6411,4023,0,'2025-12-16','OA','BP','144/86','drarchit','2025-12-16 18:26:46','drarchit','2025-12-16 18:27:27'),(3056,0,0,3780,6411,4023,0,'2025-12-16','OA','RBS','250','drarchit','2025-12-16 18:27:27','','0000-00-00 00:00:00'),(3057,0,0,4277,6361,4163,0,'2025-12-16','OA','BP','134/86','drarchit','2025-12-16 18:37:35','','0000-00-00 00:00:00'),(3058,0,0,4163,6346,0,297,'2025-12-16','OA','TP','98.1','mo','2025-12-16 18:40:10','','0000-00-00 00:00:00'),(3059,0,0,4163,6346,0,297,'2025-12-16','OA','PR','78','mo','2025-12-16 18:40:11','','0000-00-00 00:00:00'),(3060,0,0,4163,6346,0,297,'2025-12-16','OA','SpO2','99','mo','2025-12-16 18:40:13','','0000-00-00 00:00:00'),(3061,0,0,4163,6346,0,297,'2025-12-16','OA','BP','110/60','mo','2025-12-16 18:40:19','','0000-00-00 00:00:00'),(3062,0,0,4163,6346,0,297,'2025-12-16','OA','RR','20','mo','2025-12-16 18:40:32','','0000-00-00 00:00:00'),(3063,0,0,75,6429,64,0,'2025-12-16','OA','BP','168/78','drarchit','2025-12-16 18:41:52','','0000-00-00 00:00:00'),(3064,0,0,4310,6413,4196,0,'2025-12-16','OA','BP','134/86','drarchit','2025-12-16 18:46:08','drarchit','2025-12-16 18:46:13'),(3065,0,0,4310,6413,4196,0,'2025-12-16','OA','RBS','198','drarchit','2025-12-16 18:46:13','','0000-00-00 00:00:00'),(3066,0,0,4311,6414,4197,0,'2025-12-16','OA','BP',' 138/78','drarchit','2025-12-16 18:51:17','','0000-00-00 00:00:00'),(3067,0,0,4314,6420,4200,0,'2025-12-16','OA','BP','132/78','drarchit','2025-12-16 18:58:54','','0000-00-00 00:00:00'),(3068,0,0,4320,6438,4206,0,'2025-12-16','OA','PR','90','drjayant','2025-12-16 19:04:56','drjayant','2025-12-16 19:05:00'),(3069,0,0,4320,6438,4206,0,'2025-12-16','OA','SpO2','98','drjayant','2025-12-16 19:05:00','','0000-00-00 00:00:00'),(3070,0,0,4318,6431,4204,0,'2025-12-16','OA','BP','142/88','drarchit','2025-12-16 19:13:15','','0000-00-00 00:00:00'),(3071,0,0,4323,6442,4209,0,'2025-12-16','OA','SpO2','96','drjayant','2025-12-16 19:16:43','','0000-00-00 00:00:00'),(3072,0,0,4315,6424,4201,0,'2025-12-16','OA','BP','144/86','drarchit','2025-12-16 19:19:11','','0000-00-00 00:00:00'),(3073,0,0,4317,6428,4203,0,'2025-12-16','OA','BP','124/86','drarchit','2025-12-16 19:29:27','','0000-00-00 00:00:00'),(3074,0,0,3920,6435,3814,0,'2025-12-16','OA','BP','100/60','drarchit','2025-12-16 19:38:49','','0000-00-00 00:00:00'),(3075,0,0,3070,6436,2992,0,'2025-12-16','OA','BP','130/78','drarchit','2025-12-16 19:51:37','','0000-00-00 00:00:00'),(3076,0,0,4289,6379,4176,0,'2025-12-16','OA','BP','134/86','drarchit','2025-12-16 19:54:59','','0000-00-00 00:00:00'),(3077,0,0,4262,6334,0,296,'2025-12-16','OD','TP','98.2','mo','2025-12-16 20:03:13','','0000-00-00 00:00:00'),(3078,0,0,4262,6334,0,296,'2025-12-16','OD','PR','78','mo','2025-12-16 20:03:15','','0000-00-00 00:00:00'),(3079,0,0,4262,6334,0,296,'2025-12-16','OD','SpO2','97','mo','2025-12-16 20:03:21','','0000-00-00 00:00:00'),(3080,0,0,4262,6334,0,296,'2025-12-16','OD','BP','142/86','mo','2025-12-16 20:03:35','','0000-00-00 00:00:00'),(3081,0,0,4262,6334,0,296,'2025-12-16','OD','RR','20','mo','2025-12-16 20:03:38','','0000-00-00 00:00:00'),(3082,0,0,4334,6468,4219,0,'2025-12-17','OA','BP','140/84','drjayant','2025-12-17 11:38:15','drjayant','2025-12-17 11:38:17'),(3083,0,0,4334,6468,4219,0,'2025-12-17','OA','PR','90','drjayant','2025-12-17 11:38:17','','0000-00-00 00:00:00'),(3084,0,0,4285,6421,4172,0,'2025-12-16','OA','BP','138/78','drarchit','2025-12-17 11:47:36','drarchit','2025-12-17 11:47:54'),(3085,0,0,4285,6421,4172,0,'2025-12-16','OA','RBS','127','drarchit','2025-12-17 11:47:46','drarchit','2025-12-17 11:47:54'),(3086,0,0,4285,6421,4172,0,'2025-12-16','OA','RR','18','drarchit','2025-12-17 11:47:50','drarchit','2025-12-17 11:47:54'),(3087,0,0,4285,6421,4172,0,'2025-12-16','OA','SpO2','98','drarchit','2025-12-17 11:47:52','drarchit','2025-12-17 11:47:54'),(3088,0,0,4285,6421,4172,0,'2025-12-16','OA','PR','74','drarchit','2025-12-17 11:47:54','','0000-00-00 00:00:00'),(3089,0,0,2588,6479,2531,0,'2025-12-17','OA','BP','134/78','drarchit','2025-12-17 11:53:09','','0000-00-00 00:00:00'),(3090,0,0,2270,6483,2214,0,'2025-12-17','OA','BP','134/86','drarchit','2025-12-17 11:59:07','','0000-00-00 00:00:00'),(3091,0,0,4345,6489,4230,0,'2025-12-17','OA','BP','156/82','drjayant','2025-12-17 12:17:26','drjayant','2025-12-17 12:17:27'),(3092,0,0,4345,6489,4230,0,'2025-12-17','OA','PR','90','drjayant','2025-12-17 12:17:27','','0000-00-00 00:00:00'),(3093,0,0,4344,6488,4229,0,'2025-12-17','OA','SpO2','93','drjayant','2025-12-17 12:27:39','drjayant','2025-12-17 12:27:42'),(3094,0,0,4344,6488,4229,0,'2025-12-17','OA','PR','90','drjayant','2025-12-17 12:27:42','','0000-00-00 00:00:00'),(3095,0,0,4347,6495,4232,0,'2025-12-17','OA','BP','142/78','drarchit','2025-12-17 12:48:09','','0000-00-00 00:00:00'),(3096,0,0,4124,6061,0,277,'2025-12-12','OD','PR','78','mo','2025-12-17 12:52:37','','0000-00-00 00:00:00'),(3097,0,0,4124,6061,0,277,'2025-12-12','OD','SpO2','98','mo','2025-12-17 12:52:38','','0000-00-00 00:00:00'),(3098,0,0,4124,6061,0,277,'2025-12-12','OD','BP','124/82','mo','2025-12-17 12:52:44','','0000-00-00 00:00:00'),(3099,0,0,4124,6061,0,277,'2025-12-12','OD','RR','20','mo','2025-12-17 12:52:50','','0000-00-00 00:00:00'),(3100,0,0,4227,6262,0,290,'2025-12-15','OD','TP','98.2','mo','2025-12-17 13:02:25','','0000-00-00 00:00:00'),(3101,0,0,4227,6262,0,290,'2025-12-15','OD','PR','84','mo','2025-12-17 13:02:29','','0000-00-00 00:00:00'),(3102,0,0,4227,6262,0,290,'2025-12-15','OD','SpO2','99','mo','2025-12-17 13:02:31','','0000-00-00 00:00:00'),(3103,0,0,4227,6262,0,290,'2025-12-15','OD','BP','122/74','mo','2025-12-17 13:02:38','','0000-00-00 00:00:00'),(3104,0,0,4227,6262,0,290,'2025-12-15','OD','RR','20','mo','2025-12-17 13:02:41','','0000-00-00 00:00:00'),(3105,0,0,3824,5521,0,259,'2025-12-08','OD','TP','98.2','mo','2025-12-17 13:36:37','','0000-00-00 00:00:00'),(3106,0,0,3824,5521,0,259,'2025-12-08','OD','PR','72','mo','2025-12-17 13:36:40','','0000-00-00 00:00:00'),(3107,0,0,3824,5521,0,259,'2025-12-08','OD','SpO2','97','mo','2025-12-17 13:36:44','','0000-00-00 00:00:00'),(3108,0,0,3824,5521,0,259,'2025-12-08','OD','BP','128/84','mo','2025-12-17 13:36:48','','0000-00-00 00:00:00'),(3109,0,0,3824,5521,0,259,'2025-12-08','OD','RR','20','mo','2025-12-17 13:36:50','','0000-00-00 00:00:00'),(3110,0,0,4107,6166,0,286,'2025-12-14','OD','BP','118/80','mo','2025-12-17 14:14:23','','0000-00-00 00:00:00'),(3111,0,0,4107,6166,0,286,'2025-12-14','OD','SpO2','99','mo','2025-12-17 14:14:24','','0000-00-00 00:00:00'),(3112,0,0,4107,6166,0,286,'2025-12-14','OD','PR','79','mo','2025-12-17 14:14:28','','0000-00-00 00:00:00'),(3113,0,0,4222,6254,0,289,'2025-12-15','OD','PR','78','mo','2025-12-17 14:21:57','','0000-00-00 00:00:00'),(3114,0,0,4222,6254,0,289,'2025-12-15','OD','SpO2','98','mo','2025-12-17 14:21:58','','0000-00-00 00:00:00'),(3115,0,0,4222,6254,0,289,'2025-12-15','OD','BP','128/84','mo','2025-12-17 14:22:14','','0000-00-00 00:00:00'),(3116,0,0,4222,6254,0,289,'2025-12-15','OD','RR','20','mo','2025-12-17 14:22:15','','0000-00-00 00:00:00'),(3117,0,0,4107,6166,0,286,'2025-12-14','OA','RR','22','mo','2025-12-17 14:27:08','','0000-00-00 00:00:00'),(3118,0,0,4107,6166,0,286,'2025-12-14','OD','RR','20','mo','2025-12-17 14:27:12','','0000-00-00 00:00:00'),(3119,0,0,4354,6516,4239,0,'2025-12-17','OA','BP','150/80','drjayant','2025-12-17 18:21:15','drjayant','2025-12-17 18:21:17'),(3120,0,0,4354,6516,4239,0,'2025-12-17','OA','PR','80','drjayant','2025-12-17 18:21:17','','0000-00-00 00:00:00'),(3121,0,0,4353,6515,4238,0,'2025-12-17','OA','BP','134/86','drarchit','2025-12-17 18:26:21','','0000-00-00 00:00:00'),(3122,0,0,4365,6532,4250,0,'2025-12-17','OA','BP','112/72','drjayant','2025-12-17 18:28:38','drjayant','2025-12-17 18:29:25'),(3123,0,0,4356,6519,4241,0,'2025-12-17','OA','BP','144/86','drarchit','2025-12-17 18:29:55','','0000-00-00 00:00:00'),(3124,0,0,3133,6539,3052,0,'2025-12-17','OA','BP','178/86','drarchit','2025-12-17 18:43:35','','0000-00-00 00:00:00'),(3125,0,0,2802,6529,2732,0,'2025-12-17','OA','BP','132/78','drarchit','2025-12-17 18:50:13','','0000-00-00 00:00:00'),(3126,0,0,4363,6530,4248,0,'2025-12-17','OA','BP','132/78','drarchit','2025-12-17 19:00:25','','0000-00-00 00:00:00'),(3127,0,0,4325,6448,0,300,'2025-12-16','OA','TP','98.4','mo','2025-12-17 19:06:48','','0000-00-00 00:00:00'),(3128,0,0,4325,6448,0,300,'2025-12-16','OA','PR','85','mo','2025-12-17 19:06:54','','0000-00-00 00:00:00'),(3129,0,0,4325,6448,0,300,'2025-12-16','OA','SpO2','97','mo','2025-12-17 19:07:00','','0000-00-00 00:00:00'),(3130,0,0,4325,6448,0,300,'2025-12-16','OA','BP','120/78','mo','2025-12-17 19:07:08','','0000-00-00 00:00:00'),(3131,0,0,4325,6448,0,300,'2025-12-16','OA','RR','22','mo','2025-12-17 19:07:15','','0000-00-00 00:00:00'),(3132,0,0,4325,6448,0,300,'2025-12-16','OD','TP','98.4','mo','2025-12-17 19:07:26','','0000-00-00 00:00:00'),(3133,0,0,4325,6448,0,300,'2025-12-16','OD','PR','68','mo','2025-12-17 19:08:04','','0000-00-00 00:00:00'),(3134,0,0,4325,6448,0,300,'2025-12-16','OD','SpO2','98','mo','2025-12-17 19:08:08','','0000-00-00 00:00:00'),(3135,0,0,4325,6448,0,300,'2025-12-16','OD','BP','112/80','mo','2025-12-17 19:08:20','','0000-00-00 00:00:00'),(3136,0,0,4325,6448,0,300,'2025-12-16','OD','RR','20','mo','2025-12-17 19:08:30','','0000-00-00 00:00:00'),(3137,0,0,4364,6531,4249,0,'2025-12-17','OA','BP','132/78','drarchit','2025-12-17 19:17:28','','0000-00-00 00:00:00'),(3138,0,0,4372,6545,4257,0,'2025-12-17','OA','BP','145/78','drarchit','2025-12-17 19:26:30','','0000-00-00 00:00:00'),(3139,0,0,4374,6551,4259,0,'2025-12-17','OA','BP','124/86','drarchit','2025-12-17 19:32:01','','0000-00-00 00:00:00'),(3140,0,0,4380,6569,4265,0,'2025-12-17','OA','BP','145/85','drjayant','2025-12-17 19:33:36','drjayant','2025-12-17 19:33:38'),(3141,0,0,4380,6569,4265,0,'2025-12-17','OA','PR','90','drjayant','2025-12-17 19:33:38','','0000-00-00 00:00:00'),(3142,0,0,4376,6559,4261,0,'2025-12-17','OA','BP','132/78','drarchit','2025-12-17 19:44:45','','0000-00-00 00:00:00'),(3143,0,0,4377,6560,4262,0,'2025-12-17','OA','BP','132/78','drarchit','2025-12-17 19:49:45','','0000-00-00 00:00:00'),(3144,0,0,4381,6571,4266,0,'2025-12-17','OA','BP','134/80','drjayant','2025-12-17 19:55:05','drjayant','2025-12-17 19:55:06'),(3145,0,0,4381,6571,4266,0,'2025-12-17','OA','PR','80','drjayant','2025-12-17 19:55:06','','0000-00-00 00:00:00'),(3146,0,0,4379,6567,4264,0,'2025-12-17','OA','BP','142/78','drarchit','2025-12-17 20:15:47','','0000-00-00 00:00:00'),(3147,0,0,4320,6461,0,301,'2025-12-17','OA','BP','136/90','mo','2025-12-17 22:28:42','','0000-00-00 00:00:00'),(3148,0,0,4320,6461,0,301,'2025-12-17','OA','SpO2','98','mo','2025-12-17 22:28:44','','0000-00-00 00:00:00'),(3149,0,0,4320,6461,0,301,'2025-12-17','OA','PR','78','mo','2025-12-17 22:28:47','','0000-00-00 00:00:00'),(3150,0,0,4320,6461,0,301,'2025-12-17','OA','RR','22','mo','2025-12-17 22:28:48','','0000-00-00 00:00:00'),(3151,0,0,4320,6461,0,301,'2025-12-17','OA','RBS','108','mo','2025-12-17 22:28:57','','0000-00-00 00:00:00'),(3152,0,0,4172,6163,0,284,'2025-12-14','OA','BP','154/90','mo','2025-12-17 22:32:43','','0000-00-00 00:00:00'),(3153,0,0,4172,6163,0,284,'2025-12-14','OA','RR','20','mo','2025-12-17 22:32:45','','0000-00-00 00:00:00'),(3154,0,0,4172,6163,0,284,'2025-12-14','OA','SpO2','94','mo','2025-12-17 22:32:48','','0000-00-00 00:00:00'),(3155,0,0,4172,6163,0,284,'2025-12-14','OA','PR','68','mo','2025-12-17 22:32:56','','0000-00-00 00:00:00'),(3156,0,0,4323,6447,0,299,'2025-12-16','OA','BP','130/80','mo','2025-12-17 22:35:10','','0000-00-00 00:00:00'),(3157,0,0,4323,6447,0,299,'2025-12-16','OA','SpO2','97','mo','2025-12-17 22:35:13','','0000-00-00 00:00:00'),(3158,0,0,4323,6447,0,299,'2025-12-16','OA','RR','22','mo','2025-12-17 22:35:15','','0000-00-00 00:00:00'),(3159,0,0,4323,6447,0,299,'2025-12-16','OA','PR','102','mo','2025-12-17 22:35:19','','0000-00-00 00:00:00'),(3160,0,0,4323,6447,0,299,'2025-12-16','OA','RBS','131','mo','2025-12-17 22:35:28','','0000-00-00 00:00:00'),(3161,0,0,4384,6576,0,302,'2025-12-17','OA','BP','128/80','mo','2025-12-17 22:41:52','','0000-00-00 00:00:00'),(3162,0,0,4384,6576,0,302,'2025-12-17','OA','SpO2','97','mo','2025-12-17 22:41:54','','0000-00-00 00:00:00'),(3163,0,0,4384,6576,0,302,'2025-12-17','OA','RR','22','mo','2025-12-17 22:41:56','','0000-00-00 00:00:00'),(3164,0,0,4384,6576,0,302,'2025-12-17','OA','PR','103','mo','2025-12-17 22:42:04','','0000-00-00 00:00:00'),(3165,0,0,4384,6576,0,302,'2025-12-17','OA','RBS','224','mo','2025-12-17 22:42:16','','0000-00-00 00:00:00'),(3166,0,0,4395,6594,4280,0,'2025-12-18','OA','BP','132/78','drarchit','2025-12-18 10:50:14','','0000-00-00 00:00:00'),(3167,0,0,4402,6607,4287,0,'2025-12-18','OA','BP','132/78','drarchit','2025-12-18 11:16:55','','0000-00-00 00:00:00'),(3168,0,0,4403,6609,4288,0,'2025-12-18','OA','PR','85','drjayant','2025-12-18 11:25:37','drjayant','2025-12-18 11:25:54'),(3169,0,0,4403,6609,4288,0,'2025-12-18','OA','BP','116/78','drjayant','2025-12-18 11:25:54','','0000-00-00 00:00:00'),(3170,0,0,4406,6615,4290,0,'2025-12-18','OA','BP','180/98','drarchit','2025-12-18 11:48:50','','0000-00-00 00:00:00'),(3171,0,0,4407,6616,4291,0,'2025-12-18','OA','BP','134/78','drarchit','2025-12-18 11:54:18','','0000-00-00 00:00:00'),(3172,0,0,4414,6631,4299,0,'2025-12-18','OA','BP','142/86','drarchit','2025-12-18 12:38:06','','0000-00-00 00:00:00'),(3173,0,0,3345,6665,4319,0,'2025-12-18','OA','BP','120/78','drjayant','2025-12-18 18:18:12','drjayant','2025-12-18 18:18:15'),(3174,0,0,3345,6665,4319,0,'2025-12-18','OA','PR','110','drjayant','2025-12-18 18:18:15','','0000-00-00 00:00:00'),(3175,0,0,4430,6661,4316,0,'2025-12-18','OA','BP','132/78','drarchit','2025-12-18 18:24:06','','0000-00-00 00:00:00'),(3176,0,0,4438,6671,4325,0,'2025-12-18','OA','BP','134/86','drarchit','2025-12-18 18:31:57','','0000-00-00 00:00:00'),(3177,0,0,4434,6667,4321,0,'2025-12-18','OA','BP','150/92','drjayant','2025-12-18 18:32:40','drjayant','2025-12-18 18:32:47'),(3178,0,0,4434,6667,4321,0,'2025-12-18','OA','PR','110','drjayant','2025-12-18 18:32:47','','0000-00-00 00:00:00'),(3179,0,0,788,6675,756,0,'2025-12-18','OA','BP','132/76','drarchit','2025-12-18 18:35:51','drarchit','2025-12-18 18:35:55'),(3180,0,0,788,6675,756,0,'2025-12-18','OA','RBS','144','drarchit','2025-12-18 18:35:55','','0000-00-00 00:00:00'),(3181,0,0,4435,6668,4322,0,'2025-12-18','OA','BP','160/98','drjayant','2025-12-18 18:39:06','drjayant','2025-12-19 11:36:57'),(3182,0,0,4435,6668,4322,0,'2025-12-18','OA','PR','100','drjayant','2025-12-18 18:39:08','drjayant','2025-12-19 11:36:57'),(3183,0,0,4439,6674,4326,0,'2025-12-18','OA','BP','168/96','drarchit','2025-12-18 18:40:04','','0000-00-00 00:00:00'),(3184,0,0,4436,6669,4323,0,'2025-12-18','OA','BP','138/80','drjayant','2025-12-18 18:44:57','drjayant','2025-12-18 18:45:01'),(3185,0,0,4436,6669,4323,0,'2025-12-18','OA','PR','90','drjayant','2025-12-18 18:45:01','','0000-00-00 00:00:00'),(3186,0,0,4441,6678,4328,0,'2025-12-18','OA','BP','200/108','drarchit','2025-12-18 18:49:19','','0000-00-00 00:00:00'),(3187,0,0,4437,6670,4324,0,'2025-12-18','OA','BP','120/78','drjayant','2025-12-18 18:51:13','drjayant','2025-12-18 18:51:15'),(3188,0,0,4437,6670,4324,0,'2025-12-18','OA','PR','70','drjayant','2025-12-18 18:51:15','','0000-00-00 00:00:00'),(3189,0,0,4443,6680,4330,0,'2025-12-18','OA','BP','132/78','drarchit','2025-12-18 18:53:46','','0000-00-00 00:00:00'),(3190,0,0,1340,6691,1301,0,'2025-12-18','OA','PR','90','drjayant','2025-12-18 18:57:55','drjayant','2025-12-18 18:57:59'),(3191,0,0,1340,6691,1301,0,'2025-12-18','OA','BP','136/78','drjayant','2025-12-18 18:57:59','','0000-00-00 00:00:00'),(3192,0,0,856,6686,825,0,'2025-12-18','OA','BP','142/88','drarchit','2025-12-18 19:10:52','','0000-00-00 00:00:00'),(3193,0,0,4445,6693,4332,0,'2025-12-18','OA','BP','134/86','drarchit','2025-12-18 19:14:52','','0000-00-00 00:00:00'),(3194,0,0,3823,6694,3722,0,'2025-12-18','OA','BP','134/86','drarchit','2025-12-18 19:21:56','','0000-00-00 00:00:00'),(3195,0,0,4448,6698,4335,0,'2025-12-18','OA','BP','132/78','drarchit','2025-12-18 19:24:37','drarchit','2025-12-18 19:24:47'),(3196,0,0,4448,6698,4335,0,'2025-12-18','OA','RBS','125','drarchit','2025-12-18 19:24:47','','0000-00-00 00:00:00'),(3197,0,0,4449,6699,4336,0,'2025-12-18','OA','BP','136/88','drarchit','2025-12-18 19:27:18','drarchit','2025-12-18 19:27:24'),(3198,0,0,4449,6699,4336,0,'2025-12-18','OA','RBS','101','drarchit','2025-12-18 19:27:24','','0000-00-00 00:00:00'),(3199,0,0,3630,6623,4295,0,'2025-12-18','OA','BP','134/86','drarchit','2025-12-18 19:30:57','','0000-00-00 00:00:00'),(3200,0,0,4383,6610,0,303,'2025-12-17','OA','BP','100/70','mo','2025-12-18 19:58:13','','0000-00-00 00:00:00'),(3201,0,0,4383,6610,0,303,'2025-12-17','OA','SpO2','98','mo','2025-12-18 19:58:13','','0000-00-00 00:00:00'),(3202,0,0,4383,6610,0,303,'2025-12-17','OA','PR','91','mo','2025-12-18 19:58:17','','0000-00-00 00:00:00'),(3203,0,0,4383,6610,0,303,'2025-12-17','OA','RR','22','mo','2025-12-18 19:58:26','','0000-00-00 00:00:00'),(3204,0,0,4451,6705,4338,0,'2025-12-18','OA','BP','136/78','drarchit','2025-12-18 19:58:39','','0000-00-00 00:00:00'),(3205,0,0,4383,6610,0,303,'2025-12-17','OD','SpO2','99','mo','2025-12-18 19:59:55','','0000-00-00 00:00:00'),(3206,0,0,4383,6610,0,303,'2025-12-17','OD','BP','114/70','mo','2025-12-18 20:00:04','','0000-00-00 00:00:00'),(3207,0,0,4383,6610,0,303,'2025-12-17','OD','PR','76','mo','2025-12-18 20:00:19','','0000-00-00 00:00:00'),(3208,0,0,4457,6717,4342,0,'2025-12-19','OA','BP','132/78','drarchit','2025-12-19 11:06:30','','0000-00-00 00:00:00'),(3209,0,0,329,6726,313,0,'2025-12-19','OA','BP','134/78','drarchit','2025-12-19 11:17:35','','0000-00-00 00:00:00'),(3210,0,0,4467,6737,0,308,'2025-12-19','OA','PR','80','mo','2025-12-19 11:31:13','','0000-00-00 00:00:00'),(3211,0,0,4467,6737,0,308,'2025-12-19','OA','SpO2','99','mo','2025-12-19 11:31:16','','0000-00-00 00:00:00'),(3212,0,0,4467,6737,0,308,'2025-12-19','OA','BP','122/80','mo','2025-12-19 11:31:20','','0000-00-00 00:00:00'),(3213,0,0,4467,6737,0,308,'2025-12-19','OA','RR','20','mo','2025-12-19 11:31:24','','0000-00-00 00:00:00'),(3214,0,0,4459,6719,4344,0,'2025-12-19','OA','BP','132/78','drarchit','2025-12-19 11:38:04','','0000-00-00 00:00:00'),(3215,0,0,4468,6739,4352,0,'2025-12-19','OA','BP','136/84','drarchit','2025-12-19 11:39:54','','0000-00-00 00:00:00'),(3216,0,0,4463,6727,4348,0,'2025-12-19','OA','BP','110/78','drjayant','2025-12-19 11:46:19','','0000-00-00 00:00:00'),(3217,0,0,4473,6749,4357,0,'2025-12-19','OA','BP','136/74','drarchit','2025-12-19 11:49:37','drarchit','2025-12-19 11:49:48'),(3218,0,0,4470,6742,4354,0,'2025-12-19','OA','BP','155/104','drjayant','2025-12-19 11:50:55','','0000-00-00 00:00:00'),(3219,0,0,4466,6736,4351,0,'2025-12-19','OA','BP','128/80','drarchit','2025-12-19 11:55:36','','0000-00-00 00:00:00'),(3220,0,0,9,6744,9,0,'2025-12-19','OA','BP','130/84','drjayant','2025-12-19 11:55:38','drjayant','2025-12-19 11:55:40'),(3221,0,0,9,6744,9,0,'2025-12-19','OA','PR','80','drjayant','2025-12-19 11:55:40','','0000-00-00 00:00:00'),(3222,0,0,4477,6759,4362,0,'2025-12-19','OA','BP','138/84','drarchit','2025-12-19 12:03:03','','0000-00-00 00:00:00'),(3223,0,0,4478,6760,4363,0,'2025-12-19','OA','BP','142/88','drarchit','2025-12-19 12:05:45','','0000-00-00 00:00:00'),(3224,0,0,925,6761,893,0,'2025-12-19','OA','BP','180/100','drarchit','2025-12-19 12:09:51','','0000-00-00 00:00:00'),(3225,0,0,4480,6763,4365,0,'2025-12-19','OA','BP','122/76','drarchit','2025-12-19 12:14:50','','0000-00-00 00:00:00'),(3226,0,0,2792,6768,2721,0,'2025-12-19','OA','BP','144/86','drarchit','2025-12-19 12:30:38','','0000-00-00 00:00:00'),(3227,0,0,4489,6775,4373,0,'2025-12-19','OA','SpO2','98','drjayant','2025-12-19 12:58:36','drjayant','2025-12-19 12:58:37'),(3228,0,0,4489,6775,4373,0,'2025-12-19','OA','PR','100','drjayant','2025-12-19 12:58:37','','0000-00-00 00:00:00'),(3229,0,0,4488,6774,4372,0,'2025-12-19','OA','BP','132/78','drarchit','2025-12-19 13:09:36','','0000-00-00 00:00:00'),(3230,0,0,4172,6163,0,284,'2025-12-14','OD','PR','90','mo','2025-12-19 13:46:40','','0000-00-00 00:00:00'),(3231,0,0,4172,6163,0,284,'2025-12-14','OD','SpO2','92','mo','2025-12-19 13:46:50','','0000-00-00 00:00:00'),(3232,0,0,4172,6163,0,284,'2025-12-14','OD','BP','140/80','mo','2025-12-19 13:46:55','','0000-00-00 00:00:00'),(3233,0,0,4172,6163,0,284,'2025-12-14','OD','RR','20','mo','2025-12-19 13:46:59','','0000-00-00 00:00:00'),(3234,0,0,2808,6712,0,307,'2025-12-19','OA','BP','140/80','mo','2025-12-19 15:22:58','','0000-00-00 00:00:00'),(3235,0,0,2808,6712,0,307,'2025-12-19','OA','SpO2','99','mo','2025-12-19 15:22:59','','0000-00-00 00:00:00'),(3236,0,0,2808,6712,0,307,'2025-12-19','OA','PR','85','mo','2025-12-19 15:23:08','','0000-00-00 00:00:00'),(3237,0,0,2808,6712,0,307,'2025-12-19','OA','RBS','108','mo','2025-12-19 15:23:14','','0000-00-00 00:00:00'),(3238,0,0,2808,6712,0,307,'2025-12-19','OD','SpO2','99','mo','2025-12-19 15:25:49','','0000-00-00 00:00:00'),(3239,0,0,4501,6806,4384,0,'2025-12-19','OA','BP','134/86','drarchit','2025-12-19 18:27:25','','0000-00-00 00:00:00'),(3240,0,0,4497,6795,4380,0,'2025-12-19','OA','BP','132/78','drarchit','2025-12-19 18:43:42','','0000-00-00 00:00:00'),(3241,0,0,4371,6543,4256,0,'2025-12-17','OA','BP','132/74','drarchit','2025-12-19 18:52:54','drarchit','2025-12-19 18:52:57'),(3242,0,0,4371,6543,4256,0,'2025-12-17','OA','RBS','231','drarchit','2025-12-19 18:52:57','','0000-00-00 00:00:00'),(3243,0,0,4506,6823,4389,0,'2025-12-19','OA','BP','142/78','drarchit','2025-12-19 18:59:46','drarchit','2025-12-19 19:00:18'),(3244,0,0,4506,6823,4389,0,'2025-12-19','OA','RBS','151','drarchit','2025-12-19 19:00:18','','0000-00-00 00:00:00'),(3245,0,0,4323,6447,0,299,'2025-12-16','OD','SpO2','98','mo','2025-12-19 19:03:18','','0000-00-00 00:00:00'),(3246,0,0,4323,6447,0,299,'2025-12-16','OD','BP','150/90','mo','2025-12-19 19:03:21','','0000-00-00 00:00:00'),(3247,0,0,4323,6447,0,299,'2025-12-16','OD','PR','78','mo','2025-12-19 19:03:23','','0000-00-00 00:00:00'),(3248,0,0,4323,6447,0,299,'2025-12-16','OD','RR','22','mo','2025-12-19 19:03:25','','0000-00-00 00:00:00'),(3249,0,0,4508,6825,4391,0,'2025-12-19','OA','BP','132/78','drarchit','2025-12-19 19:05:19','','0000-00-00 00:00:00'),(3250,0,0,4509,6833,4392,0,'2025-12-19','OA','BP','150/92','drarchit','2025-12-19 19:12:25','','0000-00-00 00:00:00'),(3251,0,0,4510,6834,4393,0,'2025-12-19','OA','BP','132/78','drarchit','2025-12-19 19:15:38','','0000-00-00 00:00:00'),(3252,0,0,4511,6836,4394,0,'2025-12-19','OA','BP','124/78','drarchit','2025-12-19 19:26:14','','0000-00-00 00:00:00'),(3253,0,0,4505,6814,4388,0,'2025-12-19','OA','BP','120/82','drjayant','2025-12-19 19:28:29','drjayant','2025-12-19 19:28:32'),(3254,0,0,4505,6814,4388,0,'2025-12-19','OA','PR','90','drjayant','2025-12-19 19:28:32','','0000-00-00 00:00:00'),(3255,0,0,2808,6712,0,307,'2025-12-19','OD','BP','140/90','mo','2025-12-19 19:30:31','','0000-00-00 00:00:00'),(3256,0,0,2808,6712,0,307,'2025-12-19','OD','PR','60','mo','2025-12-19 19:30:34','','0000-00-00 00:00:00'),(3257,0,0,4514,6840,4397,0,'2025-12-19','OA','BP','180/78','drarchit','2025-12-19 19:33:07','','0000-00-00 00:00:00'),(3258,0,0,4444,6683,4331,0,'2025-12-18','OA','BP','154/88','drarchit','2025-12-19 19:38:55','','0000-00-00 00:00:00'),(3259,0,0,4453,6707,0,306,'2025-12-18','OA','BP','118/70','mo','2025-12-19 19:48:49','','0000-00-00 00:00:00'),(3260,0,0,4453,6707,0,306,'2025-12-18','OA','SpO2','97','mo','2025-12-19 19:48:51','','0000-00-00 00:00:00'),(3261,0,0,4453,6707,0,306,'2025-12-18','OA','PR','100','mo','2025-12-19 19:48:57','','0000-00-00 00:00:00'),(3262,0,0,4453,6707,0,306,'2025-12-18','OD','BP','130/80','mo','2025-12-19 19:49:16','','0000-00-00 00:00:00'),(3263,0,0,4453,6707,0,306,'2025-12-18','OD','SpO2','99','mo','2025-12-19 19:49:25','','0000-00-00 00:00:00'),(3264,0,0,4453,6707,0,306,'2025-12-18','OD','PR','76','mo','2025-12-19 19:49:33','','0000-00-00 00:00:00'),(3265,0,0,4490,6780,0,310,'2025-12-19','OA','PR','134','mo','2025-12-20 01:21:04','','0000-00-00 00:00:00'),(3266,0,0,4490,6780,0,310,'2025-12-19','OA','BP','118/80','mo','2025-12-20 01:21:08','','0000-00-00 00:00:00'),(3267,0,0,4490,6780,0,310,'2025-12-19','OA','SpO2','98','mo','2025-12-20 01:21:13','','0000-00-00 00:00:00'),(3268,0,0,4405,6613,0,304,'2025-12-18','OA','PR','71','mo','2025-12-20 01:50:06','','0000-00-00 00:00:00'),(3269,0,0,4405,6613,0,304,'2025-12-18','OA','BP','134/80','mo','2025-12-20 01:50:12','','0000-00-00 00:00:00'),(3270,0,0,4405,6613,0,304,'2025-12-18','OA','SpO2','98','mo','2025-12-20 01:50:15','','0000-00-00 00:00:00'),(3271,0,0,392,6801,2393,0,'2025-12-19','OA','BP','142/78','drarchit','2025-12-20 11:05:05','','0000-00-00 00:00:00'),(3272,0,0,4522,6855,4404,0,'2025-12-20','OA','BP','124/86','drarchit','2025-12-20 11:22:00','drarchit','2025-12-20 11:22:08'),(3273,0,0,4522,6855,4404,0,'2025-12-20','OA','RBS','213','drarchit','2025-12-20 11:22:08','','0000-00-00 00:00:00'),(3274,0,0,4520,6853,4402,0,'2025-12-20','OA','SpO2','97','drjayant','2025-12-20 11:29:00','drjayant','2025-12-20 11:29:03'),(3275,0,0,4520,6853,4402,0,'2025-12-20','OA','PR','90','drjayant','2025-12-20 11:29:03','','0000-00-00 00:00:00'),(3276,0,0,4524,6858,4406,0,'2025-12-20','OA','BP','166/88','drarchit','2025-12-20 11:31:08','drarchit','2025-12-20 11:32:43'),(3277,0,0,4523,6856,4405,0,'2025-12-20','OA','BP','138/82','drjayant','2025-12-20 11:32:28','drjayant','2025-12-20 11:32:30'),(3278,0,0,4523,6856,4405,0,'2025-12-20','OA','PR','90','drjayant','2025-12-20 11:32:30','','0000-00-00 00:00:00'),(3279,0,0,4405,6613,0,304,'2025-12-18','OD','SpO2','98','mo','2025-12-20 11:39:31','','0000-00-00 00:00:00'),(3280,0,0,4405,6613,0,304,'2025-12-18','OD','BP','136/80','mo','2025-12-20 11:39:34','','0000-00-00 00:00:00'),(3281,0,0,4525,6861,4407,0,'2025-12-20','OA','BP','132/78','drarchit','2025-12-20 11:40:25','','0000-00-00 00:00:00'),(3282,0,0,4405,6613,0,304,'2025-12-18','OD','PR','86','mo','2025-12-20 11:40:25','','0000-00-00 00:00:00'),(3283,0,0,4154,6851,4047,0,'2025-12-20','OA','BP','121/78','drarchit','2025-12-20 11:47:29','','0000-00-00 00:00:00'),(3284,0,0,266,6862,251,0,'2025-12-20','OA','BP','134/86','drarchit','2025-12-20 11:52:55','','0000-00-00 00:00:00'),(3285,0,0,296,6857,280,0,'2025-12-20','OA','BP','132/78','drarchit','2025-12-20 12:08:10','','0000-00-00 00:00:00'),(3286,0,0,4526,6863,4408,0,'2025-12-20','OA','BP','180/88','drarchit','2025-12-20 12:13:16','','0000-00-00 00:00:00'),(3287,0,0,4325,6865,4410,0,'2025-12-20','OA','BP','154/86','drarchit','2025-12-20 12:20:17','','0000-00-00 00:00:00'),(3288,0,0,4530,6870,4413,0,'2025-12-20','OA','BP','138/86','drarchit','2025-12-20 12:26:54','drarchit','2025-12-20 12:27:58'),(3289,0,0,4530,6870,4413,0,'2025-12-20','OA','RBS','92','drarchit','2025-12-20 12:27:58','','0000-00-00 00:00:00'),(3290,0,0,4320,6461,0,301,'2025-12-17','OD','SpO2','98','mo','2025-12-20 12:28:32','','0000-00-00 00:00:00'),(3291,0,0,4320,6461,0,301,'2025-12-17','OD','BP','140/90','mo','2025-12-20 12:28:38','','0000-00-00 00:00:00'),(3292,0,0,4320,6461,0,301,'2025-12-17','OD','PR','90','mo','2025-12-20 12:29:04','','0000-00-00 00:00:00'),(3293,0,0,3351,6867,3263,0,'2025-12-20','OA','BP','124/86','drarchit','2025-12-20 12:31:41','drarchit','2025-12-20 12:31:46'),(3294,0,0,3006,6866,2929,0,'2025-12-20','OA','BP','134/78','drarchit','2025-12-20 12:35:08','','0000-00-00 00:00:00'),(3295,0,0,4529,6869,4412,0,'2025-12-20','OA','BP','124/86','drarchit','2025-12-20 12:39:47','','0000-00-00 00:00:00'),(3296,0,0,4384,6576,0,302,'2025-12-17','OD','BP','118/70','mo','2025-12-20 12:41:10','','0000-00-00 00:00:00'),(3297,0,0,4384,6576,0,302,'2025-12-17','OD','RR','24','mo','2025-12-20 12:41:13','','0000-00-00 00:00:00'),(3298,0,0,4384,6576,0,302,'2025-12-17','OD','PR','103','mo','2025-12-20 12:41:19','','0000-00-00 00:00:00'),(3299,0,0,4534,6874,4417,0,'2025-12-20','OA','BP','134/82','drjayant','2025-12-20 12:47:39','drjayant','2025-12-20 12:47:40'),(3300,0,0,4534,6874,4417,0,'2025-12-20','OA','PR','90','drjayant','2025-12-20 12:47:40','','0000-00-00 00:00:00'),(3301,0,0,4531,6871,4414,0,'2025-12-20','OA','BP','122/86','drarchit','2025-12-20 12:51:38','','0000-00-00 00:00:00'),(3302,0,0,4536,6876,4419,0,'2025-12-20','OA','BP','184/88','drarchit','2025-12-20 12:55:32','','0000-00-00 00:00:00'),(3303,0,0,4538,6879,4421,0,'2025-12-20','OA','BP','138/76','drarchit','2025-12-20 13:00:32','','0000-00-00 00:00:00'),(3304,0,0,2729,6877,2659,0,'2025-12-20','OA','BP','134/86','drarchit','2025-12-20 13:02:56','','0000-00-00 00:00:00'),(3305,0,0,4301,6397,0,298,'2025-12-16','OA','TP','98.2','mo','2025-12-20 17:31:20','','0000-00-00 00:00:00'),(3306,0,0,4301,6397,0,298,'2025-12-16','OA','PR','92','mo','2025-12-20 17:31:24','','0000-00-00 00:00:00'),(3307,0,0,4301,6397,0,298,'2025-12-16','OA','SpO2','98','mo','2025-12-20 17:31:30','','0000-00-00 00:00:00'),(3308,0,0,4301,6397,0,298,'2025-12-16','OA','BP','140/90','mo','2025-12-20 17:31:43','','0000-00-00 00:00:00'),(3309,0,0,4301,6397,0,298,'2025-12-16','OA','RR','20','mo','2025-12-20 17:31:47','','0000-00-00 00:00:00'),(3310,0,0,4301,6397,0,298,'2025-12-16','OD','PR','88','mo','2025-12-20 17:32:06','','0000-00-00 00:00:00'),(3311,0,0,4301,6397,0,298,'2025-12-16','OD','TP','98.2','mo','2025-12-20 17:32:08','','0000-00-00 00:00:00'),(3312,0,0,4301,6397,0,298,'2025-12-16','OD','SpO2','96','mo','2025-12-20 17:32:12','','0000-00-00 00:00:00'),(3313,0,0,4301,6397,0,298,'2025-12-16','OD','BP','132/90','mo','2025-12-20 17:32:17','','0000-00-00 00:00:00'),(3314,0,0,4301,6397,0,298,'2025-12-16','OD','RR','20','mo','2025-12-20 17:32:20','','0000-00-00 00:00:00'),(3315,0,0,2749,6884,0,313,'2025-12-20','OA','TP','100','mo','2025-12-21 10:54:36','','0000-00-00 00:00:00'),(3316,0,0,2749,6884,0,313,'2025-12-20','OA','SpO2','97','mo','2025-12-21 10:54:40','','0000-00-00 00:00:00'),(3317,0,0,2749,6884,0,313,'2025-12-20','OA','BP','90/60','mo','2025-12-21 10:54:47','','0000-00-00 00:00:00'),(3318,0,0,2749,6884,0,313,'2025-12-20','OA','PR','112','mo','2025-12-21 10:55:28','','0000-00-00 00:00:00'),(3319,0,0,4515,6843,0,311,'2025-12-19','OA','PR','115','mo','2025-12-21 11:42:02','','0000-00-00 00:00:00'),(3320,0,0,4515,6843,0,311,'2025-12-19','OA','TP','101.6','mo','2025-12-21 11:42:06','','0000-00-00 00:00:00'),(3321,0,0,4515,6843,0,311,'2025-12-19','OA','SpO2','99','mo','2025-12-21 11:42:11','','0000-00-00 00:00:00'),(3322,0,0,4515,6843,0,311,'2025-12-19','OA','BP','144/80','mo','2025-12-21 11:42:16','','0000-00-00 00:00:00'),(3323,0,0,4515,6843,0,311,'2025-12-19','OA','RR','20','mo','2025-12-21 11:42:23','','0000-00-00 00:00:00'),(3324,0,0,4550,6898,0,315,'2025-12-21','OA','TP','101','mo','2025-12-22 01:08:02','','0000-00-00 00:00:00'),(3325,0,0,4550,6898,0,315,'2025-12-21','OA','PR','105','mo','2025-12-22 01:08:04','','0000-00-00 00:00:00'),(3326,0,0,4550,6898,0,315,'2025-12-21','OA','BP','140/90','mo','2025-12-22 01:08:12','','0000-00-00 00:00:00'),(3327,0,0,4285,6899,0,316,'2025-12-21','OA','PR','90','mo','2025-12-22 01:22:38','','0000-00-00 00:00:00'),(3328,0,0,4285,6899,0,316,'2025-12-21','OA','SpO2','96','mo','2025-12-22 01:22:42','','0000-00-00 00:00:00'),(3329,0,0,4285,6899,0,316,'2025-12-21','OA','BP','130/80','mo','2025-12-22 01:22:47','','0000-00-00 00:00:00'),(3330,0,0,4339,6892,0,314,'2025-12-20','OA','PR','77','mo','2025-12-22 02:30:07','','0000-00-00 00:00:00'),(3331,0,0,4339,6892,0,314,'2025-12-20','OA','BP','122/74','mo','2025-12-22 02:30:39','','0000-00-00 00:00:00'),(3332,0,0,4339,6892,0,314,'2025-12-20','OA','SpO2','98','mo','2025-12-22 02:30:42','','0000-00-00 00:00:00'),(3333,0,0,4567,6926,4445,0,'2025-12-22','OA','BP','134/86','drarchit','2025-12-22 10:56:05','','0000-00-00 00:00:00'),(3334,0,0,4576,6941,4454,0,'2025-12-22','OA','BP','134/86','drarchit','2025-12-22 11:03:09','','0000-00-00 00:00:00'),(3335,0,0,4574,6937,4452,0,'2025-12-22','OA','BP','142/88','drarchit','2025-12-22 11:09:50','','0000-00-00 00:00:00'),(3336,0,0,4571,6930,4449,0,'2025-12-22','OA','BP','130/78','drjayant','2025-12-22 11:19:05','drjayant','2025-12-22 11:19:06'),(3337,0,0,4571,6930,4449,0,'2025-12-22','OA','PR','78','drjayant','2025-12-22 11:19:06','','0000-00-00 00:00:00'),(3338,0,0,4569,6928,4447,0,'2025-12-22','OA','BP','132/78','drarchit','2025-12-22 11:29:17','','0000-00-00 00:00:00'),(3339,0,0,4568,6927,4446,0,'2025-12-22','OA','BP','174/86','drarchit','2025-12-22 11:40:34','','0000-00-00 00:00:00'),(3340,0,0,4587,6960,4465,0,'2025-12-22','OA','BP','132/78','drarchit','2025-12-22 11:49:37','','0000-00-00 00:00:00'),(3341,0,0,4552,6902,4433,0,'2025-12-22','OA','BP','130/80','drjayant','2025-12-22 11:57:31','drjayant','2025-12-22 11:57:38'),(3342,0,0,4552,6902,4433,0,'2025-12-22','OA','PR','90','drjayant','2025-12-22 11:57:38','','0000-00-00 00:00:00'),(3343,0,0,3824,6963,4467,0,'2025-12-22','OA','BP','140/90','drjayant','2025-12-22 12:07:27','drjayant','2025-12-22 12:09:11'),(3344,0,0,3824,6963,4467,0,'2025-12-22','OA','PR','85','drjayant','2025-12-22 12:07:28','drjayant','2025-12-22 12:09:11'),(3345,0,0,3824,6963,4467,0,'2025-12-22','OA','SpO2','98','drjayant','2025-12-22 12:09:11','','0000-00-00 00:00:00'),(3346,0,0,4577,6943,4455,0,'2025-12-22','OA','SpO2','97','drjayant','2025-12-22 12:12:46','','0000-00-00 00:00:00'),(3347,0,0,2834,6964,3697,0,'2025-12-22','OA','BP','137/86','drarchit','2025-12-22 12:20:22','','0000-00-00 00:00:00'),(3348,0,0,4595,6971,4472,0,'2025-12-22','OA','BP','134/86','drarchit','2025-12-22 12:37:03','','0000-00-00 00:00:00'),(3349,0,0,4198,6945,4088,0,'2025-12-22','OA','BP','132/78','drarchit','2025-12-22 12:59:21','','0000-00-00 00:00:00'),(3350,0,0,4541,6882,0,312,'2025-12-20','OA','PR','88','mo','2025-12-22 13:13:16','','0000-00-00 00:00:00'),(3351,0,0,4541,6882,0,312,'2025-12-20','OA','SpO2','97','mo','2025-12-22 13:13:24','','0000-00-00 00:00:00'),(3352,0,0,4541,6882,0,312,'2025-12-20','OA','BP','80/50','mo','2025-12-22 13:13:30','','0000-00-00 00:00:00'),(3353,0,0,4541,6882,0,312,'2025-12-20','OA','RR','20','mo','2025-12-22 13:13:34','','0000-00-00 00:00:00'),(3354,0,0,4541,6882,0,312,'2025-12-20','OD','PR','99','mo','2025-12-22 13:15:23','','0000-00-00 00:00:00'),(3355,0,0,4541,6882,0,312,'2025-12-20','OD','SpO2','97','mo','2025-12-22 13:15:26','','0000-00-00 00:00:00'),(3356,0,0,4541,6882,0,312,'2025-12-20','OD','BP','124/80','mo','2025-12-22 13:15:41','','0000-00-00 00:00:00'),(3357,0,0,4541,6882,0,312,'2025-12-20','OD','RR','20','mo','2025-12-22 13:15:55','','0000-00-00 00:00:00'),(3358,0,0,4339,6892,0,314,'2025-12-20','OD','PR','75','mo','2025-12-22 13:25:48','','0000-00-00 00:00:00'),(3359,0,0,4339,6892,0,314,'2025-12-20','OA','RR','22','mo','2025-12-22 13:35:22','','0000-00-00 00:00:00'),(3360,0,0,4339,6892,0,314,'2025-12-20','OD','RR','20','mo','2025-12-22 13:35:22','','0000-00-00 00:00:00'),(3361,0,0,4339,6892,0,314,'2025-12-20','OD','BP','112/74','mo','2025-12-22 13:35:29','','0000-00-00 00:00:00'),(3362,0,0,4339,6892,0,314,'2025-12-20','OD','SpO2','98','mo','2025-12-22 13:35:31','','0000-00-00 00:00:00'),(3363,0,0,4515,6843,0,311,'2025-12-19','OD','TP','97.8','mo','2025-12-22 16:10:06','','0000-00-00 00:00:00'),(3364,0,0,4515,6843,0,311,'2025-12-19','OD','PR','84','mo','2025-12-22 16:10:14','','0000-00-00 00:00:00'),(3365,0,0,4515,6843,0,311,'2025-12-19','OD','SpO2','97','mo','2025-12-22 16:10:16','','0000-00-00 00:00:00'),(3366,0,0,4515,6843,0,311,'2025-12-19','OD','BP','118/76','mo','2025-12-22 16:10:39','','0000-00-00 00:00:00'),(3367,0,0,4515,6843,0,311,'2025-12-19','OD','RR','20','mo','2025-12-22 16:10:41','','0000-00-00 00:00:00'),(3368,0,0,4124,7012,4016,0,'2025-12-22','OA','BP','140/84','drjayant','2025-12-22 18:12:23','drjayant','2025-12-22 18:15:13'),(3369,0,0,4124,7012,4016,0,'2025-12-22','OA','PR','100','drjayant','2025-12-22 18:12:25','drjayant','2025-12-22 18:15:13'),(3370,0,0,4555,6909,4436,0,'2025-12-22','OA','BP','132/78','drarchit','2025-12-22 18:21:56','','0000-00-00 00:00:00'),(3371,0,0,4613,7005,4488,0,'2025-12-22','OA','BP','134/86','drarchit','2025-12-22 18:26:43','','0000-00-00 00:00:00'),(3372,0,0,4564,6922,0,320,'2025-12-22','OA','PR','84','mo','2025-12-22 18:33:17','','0000-00-00 00:00:00'),(3373,0,0,4564,6922,0,320,'2025-12-22','OA','TP','98.1','mo','2025-12-22 18:33:19','','0000-00-00 00:00:00'),(3374,0,0,4564,6922,0,320,'2025-12-22','OA','SpO2','97','mo','2025-12-22 18:33:22','','0000-00-00 00:00:00'),(3375,0,0,4564,6922,0,320,'2025-12-22','OA','BP','110/80','mo','2025-12-22 18:33:29','','0000-00-00 00:00:00'),(3376,0,0,4564,6922,0,320,'2025-12-22','OA','RR','22','mo','2025-12-22 18:33:36','','0000-00-00 00:00:00'),(3377,0,0,4564,6922,0,320,'2025-12-22','OD','TP','98.4','mo','2025-12-22 18:33:37','','0000-00-00 00:00:00'),(3378,0,0,4564,6922,0,320,'2025-12-22','OD','PR','78','mo','2025-12-22 18:33:40','','0000-00-00 00:00:00'),(3379,0,0,4564,6922,0,320,'2025-12-22','OD','SpO2','98','mo','2025-12-22 18:33:42','','0000-00-00 00:00:00'),(3380,0,0,4603,6981,4479,0,'2025-12-22','OA','BP','132/78','drarchit','2025-12-22 18:33:44','','0000-00-00 00:00:00'),(3381,0,0,4564,6922,0,320,'2025-12-22','OD','BP','114/78','mo','2025-12-22 18:36:11','','0000-00-00 00:00:00'),(3382,0,0,4564,6922,0,320,'2025-12-22','OD','RR','20','mo','2025-12-22 18:36:12','','0000-00-00 00:00:00'),(3383,0,0,4624,7027,4498,0,'2025-12-22','OA','SpO2','97','drjayant','2025-12-22 18:46:34','','0000-00-00 00:00:00'),(3384,0,0,4575,6939,4453,0,'2025-12-22','OA','BP','134/88','drarchit','2025-12-22 18:47:04','drarchit','2025-12-22 18:47:09'),(3385,0,0,4575,6939,4453,0,'2025-12-22','OA','PR','114','drarchit','2025-12-22 18:47:09','','0000-00-00 00:00:00'),(3386,0,0,4628,7037,4502,0,'2025-12-22','OA','SpO2','99','drjayant','2025-12-22 18:48:33','drjayant','2025-12-22 18:48:35'),(3387,0,0,4628,7037,4502,0,'2025-12-22','OA','PR','90','drjayant','2025-12-22 18:48:35','','0000-00-00 00:00:00'),(3388,0,0,4556,6910,4437,0,'2025-12-22','OA','BP','132/78','drarchit','2025-12-22 18:51:06','','0000-00-00 00:00:00'),(3389,0,0,3407,7031,3315,0,'2025-12-22','OA','BP','140/88','drarchit','2025-12-22 18:55:04','','0000-00-00 00:00:00'),(3390,0,0,4588,6961,0,321,'2025-12-21','OA','TP','98.7','mo','2025-12-22 18:57:18','mo','2025-12-22 18:57:22'),(3391,0,0,4588,6961,0,321,'2025-12-21','OA','PR','130','mo','2025-12-22 18:57:25','','0000-00-00 00:00:00'),(3392,0,0,4588,6961,0,321,'2025-12-21','OA','SpO2','98','mo','2025-12-22 18:57:29','','0000-00-00 00:00:00'),(3393,0,0,4588,6961,0,321,'2025-12-21','OA','BP','128/84','mo','2025-12-22 18:57:32','','0000-00-00 00:00:00'),(3394,0,0,4588,6961,0,321,'2025-12-21','OA','RR','18','mo','2025-12-22 18:57:36','','0000-00-00 00:00:00'),(3395,0,0,4626,7034,4500,0,'2025-12-22','OA','BP','160/110','drarchit','2025-12-22 19:00:31','','0000-00-00 00:00:00'),(3396,0,0,2241,7044,2764,0,'2025-12-22','OA','BP','134/86','drarchit','2025-12-22 19:06:04','','0000-00-00 00:00:00'),(3397,0,0,4634,7047,4508,0,'2025-12-22','OA','BP','182/92','drarchit','2025-12-22 19:15:04','','0000-00-00 00:00:00'),(3398,0,0,4636,7051,4510,0,'2025-12-22','OA','BP','134/78','drarchit','2025-12-22 19:28:31','drarchit','2025-12-22 19:28:38'),(3399,0,0,4636,7051,4510,0,'2025-12-22','OA','RBS','145','drarchit','2025-12-22 19:28:38','','0000-00-00 00:00:00'),(3400,0,0,4637,7053,4511,0,'2025-12-22','OA','BP','134/78','drarchit','2025-12-22 19:38:40','drarchit','2025-12-22 19:38:43'),(3401,0,0,4637,7053,4511,0,'2025-12-22','OA','RBS','110','drarchit','2025-12-22 19:38:43','','0000-00-00 00:00:00'),(3402,0,0,4638,7055,4512,0,'2025-12-22','OA','BP','142/78','drarchit','2025-12-22 19:48:42','','0000-00-00 00:00:00'),(3403,0,0,4600,6978,0,324,'2025-12-22','OA','PR','87','mo','2025-12-22 19:57:14','','0000-00-00 00:00:00'),(3404,0,0,4600,6978,0,324,'2025-12-22','OA','SpO2','95','mo','2025-12-22 19:57:15','','0000-00-00 00:00:00'),(3405,0,0,4600,6978,0,324,'2025-12-22','OA','BP','132/84','mo','2025-12-22 19:57:21','','0000-00-00 00:00:00'),(3406,0,0,4600,6978,0,324,'2025-12-22','OA','RR','22','mo','2025-12-22 19:57:25','','0000-00-00 00:00:00'),(3407,0,0,4600,6978,0,324,'2025-12-22','OD','TP','98.1','mo','2025-12-22 19:57:28','mo','2025-12-22 19:57:35'),(3408,0,0,4600,6978,0,324,'2025-12-22','OA','TP','98.4','mo','2025-12-22 19:57:32','','0000-00-00 00:00:00'),(3409,0,0,4600,6978,0,324,'2025-12-22','OD','PR','78','mo','2025-12-22 19:57:37','','0000-00-00 00:00:00'),(3410,0,0,4600,6978,0,324,'2025-12-22','OD','SpO2','97','mo','2025-12-22 19:57:44','','0000-00-00 00:00:00'),(3411,0,0,4600,6978,0,324,'2025-12-22','OD','BP','126/76','mo','2025-12-22 19:57:51','','0000-00-00 00:00:00'),(3412,0,0,4600,6978,0,324,'2025-12-22','OD','RR','20','mo','2025-12-22 19:57:54','','0000-00-00 00:00:00'),(3413,0,0,4537,6878,4420,0,'2025-12-20','OA','BP','134/86','drarchit','2025-12-22 20:09:33','','0000-00-00 00:00:00'),(3414,0,0,4642,7062,4516,0,'2025-12-22','OA','BP','142/78','drarchit','2025-12-22 20:18:06','drarchit','2025-12-22 20:18:17'),(3415,0,0,4642,7062,4516,0,'2025-12-22','OA','RBS','207','drarchit','2025-12-22 20:18:17','','0000-00-00 00:00:00'),(3416,0,0,3601,5120,0,243,'2025-12-04','OA','SpO2','96','mo','2025-12-22 22:02:34','','0000-00-00 00:00:00'),(3417,0,0,3601,5120,0,243,'2025-12-04','OD','TP','98.4','mo','2025-12-22 22:02:35','','0000-00-00 00:00:00'),(3418,0,0,3601,5120,0,243,'2025-12-04','OD','PR','80','mo','2025-12-22 22:02:37','','0000-00-00 00:00:00'),(3419,0,0,3601,5120,0,243,'2025-12-04','OD','SpO2','94','mo','2025-12-22 22:02:41','','0000-00-00 00:00:00'),(3420,0,0,3601,5120,0,243,'2025-12-04','OD','BP','144/84','mo','2025-12-22 22:02:47','','0000-00-00 00:00:00'),(3421,0,0,4617,7010,0,326,'2025-12-22','OA','BP','124/80','mo','2025-12-23 01:51:36','','0000-00-00 00:00:00'),(3422,0,0,4617,7010,0,326,'2025-12-22','OA','SpO2','98','mo','2025-12-23 01:51:38','','0000-00-00 00:00:00'),(3423,0,0,4617,7010,0,326,'2025-12-22','OA','PR','102','mo','2025-12-23 01:51:51','','0000-00-00 00:00:00'),(3424,0,0,3698,6900,0,317,'2025-12-21','OA','SpO2','97','mo','2025-12-23 02:12:28','','0000-00-00 00:00:00'),(3425,0,0,3698,6900,0,317,'2025-12-21','OA','BP','110/70','mo','2025-12-23 02:12:29','','0000-00-00 00:00:00'),(3426,0,0,3698,6900,0,317,'2025-12-21','OA','PR','82','mo','2025-12-23 02:12:35','','0000-00-00 00:00:00'),(3427,0,0,4560,6917,0,319,'2025-12-22','OA','PR','82','mo','2025-12-23 02:16:59','','0000-00-00 00:00:00'),(3428,0,0,4560,6917,0,319,'2025-12-22','OA','BP','120/80','mo','2025-12-23 02:17:02','','0000-00-00 00:00:00'),(3429,0,0,4560,6917,0,319,'2025-12-22','OA','SpO2','97','mo','2025-12-23 02:17:08','','0000-00-00 00:00:00'),(3430,0,0,4490,6780,0,310,'2025-12-19','OA','RR','22','mo','2025-12-23 09:20:52','','0000-00-00 00:00:00'),(3431,0,0,4490,6780,0,310,'2025-12-19','OD','PR','78','mo','2025-12-23 09:20:54','','0000-00-00 00:00:00'),(3432,0,0,4490,6780,0,310,'2025-12-19','OD','SpO2','98','mo','2025-12-23 09:20:56','','0000-00-00 00:00:00'),(3433,0,0,4490,6780,0,310,'2025-12-19','OD','BP','114/80','mo','2025-12-23 09:20:58','mo','2025-12-23 09:21:05'),(3434,0,0,4490,6780,0,310,'2025-12-19','OD','RR','20','mo','2025-12-23 09:21:00','','0000-00-00 00:00:00'),(3435,0,0,4654,7085,4527,0,'2025-12-23','OA','BP','130/80','drjayant','2025-12-23 11:12:21','drjayant','2025-12-23 11:12:27'),(3436,0,0,4654,7085,4527,0,'2025-12-23','OA','PR','82','drjayant','2025-12-23 11:12:27','','0000-00-00 00:00:00'),(3437,0,0,4658,7089,4531,0,'2025-12-23','OA','BP','142/86','drarchit','2025-12-23 11:20:52','','0000-00-00 00:00:00'),(3438,0,0,4664,7097,4537,0,'2025-12-23','OA','BP','136/86','drarchit','2025-12-23 11:25:59','','0000-00-00 00:00:00'),(3439,0,0,4662,7095,4535,0,'2025-12-23','OA','BP','138/80','drjayant','2025-12-23 11:28:41','','0000-00-00 00:00:00'),(3440,0,0,4666,7099,4539,0,'2025-12-23','OA','BP','142/86','drarchit','2025-12-23 11:36:53','','0000-00-00 00:00:00'),(3441,0,0,4657,7088,4530,0,'2025-12-23','OA','BP','138/88','drarchit','2025-12-23 11:51:06','','0000-00-00 00:00:00'),(3442,0,0,4668,7102,4541,0,'2025-12-23','OA','BP','138/88','drarchit','2025-12-23 11:55:17','drarchit','2025-12-23 11:55:23'),(3443,0,0,4668,7102,4541,0,'2025-12-23','OA','RBS','78','drarchit','2025-12-23 11:55:19','drarchit','2025-12-23 11:55:23'),(3444,0,0,4668,7102,4541,0,'2025-12-23','OA','SpO2','98','drarchit','2025-12-23 11:55:23','','0000-00-00 00:00:00'),(3445,0,0,4669,7105,4542,0,'2025-12-23','OA','BP','132/78','drarchit','2025-12-23 11:57:12','','0000-00-00 00:00:00'),(3446,0,0,4646,7070,4519,0,'2025-12-23','OA','BP','124/78','drarchit','2025-12-23 11:59:45','','0000-00-00 00:00:00'),(3447,0,0,4672,7109,4545,0,'2025-12-23','OA','BP','132/78','drarchit','2025-12-23 12:02:39','','0000-00-00 00:00:00'),(3448,0,0,4651,7079,4524,0,'2025-12-23','OA','BP','142/88','drarchit','2025-12-23 12:12:42','drarchit','2025-12-23 12:12:51'),(3449,0,0,4651,7079,4524,0,'2025-12-23','OA','RBS','170','drarchit','2025-12-23 12:12:51','','0000-00-00 00:00:00'),(3450,0,0,4679,7120,4552,0,'2025-12-23','OA','BP','154/78','drarchit','2025-12-23 12:25:00','','0000-00-00 00:00:00'),(3451,0,0,4560,6917,0,319,'2025-12-22','OD','PR','78','mo','2025-12-23 12:31:09','','0000-00-00 00:00:00'),(3452,0,0,4560,6917,0,319,'2025-12-22','OD','SpO2','98','mo','2025-12-23 12:31:10','','0000-00-00 00:00:00'),(3453,0,0,4560,6917,0,319,'2025-12-22','OD','BP','118/76','mo','2025-12-23 12:31:21','','0000-00-00 00:00:00'),(3454,0,0,4560,6917,0,319,'2025-12-22','OD','RR','20','mo','2025-12-23 12:32:11','','0000-00-00 00:00:00'),(3455,0,0,4671,7108,4544,0,'2025-12-23','OA','BP','138/76','drarchit','2025-12-23 12:57:28','drarchit','2025-12-23 12:57:59'),(3456,0,0,4671,7108,4544,0,'2025-12-23','OA','RBS','128','drarchit','2025-12-23 12:57:35','drarchit','2025-12-23 12:57:59'),(3457,0,0,4671,7108,4544,0,'2025-12-23','OA','SpO2','98','drarchit','2025-12-23 12:57:38','drarchit','2025-12-23 12:57:59'),(3458,0,0,4671,7108,4544,0,'2025-12-23','OA','RR','12','drarchit','2025-12-23 12:57:41','drarchit','2025-12-23 12:57:59'),(3459,0,0,4671,7108,4544,0,'2025-12-23','OA','PR','104','drarchit','2025-12-23 12:57:59','','0000-00-00 00:00:00'),(3460,0,0,4129,7127,4021,0,'2025-12-23','OA','BP','134/78','drarchit','2025-12-23 13:07:49','','0000-00-00 00:00:00'),(3461,0,0,4617,7010,0,326,'2025-12-22','OD','TP','98.2','mo','2025-12-23 13:28:04','','0000-00-00 00:00:00'),(3462,0,0,4617,7010,0,326,'2025-12-22','OA','TP','98.4','mo','2025-12-23 13:28:08','','0000-00-00 00:00:00'),(3463,0,0,4617,7010,0,326,'2025-12-22','OD','PR','78','mo','2025-12-23 13:28:11','','0000-00-00 00:00:00'),(3464,0,0,4617,7010,0,326,'2025-12-22','OD','SpO2','99','mo','2025-12-23 13:28:16','','0000-00-00 00:00:00'),(3465,0,0,4617,7010,0,326,'2025-12-22','OD','BP','116/74','mo','2025-12-23 13:28:22','','0000-00-00 00:00:00'),(3466,0,0,4617,7010,0,326,'2025-12-22','OD','RR','20','mo','2025-12-23 13:28:24','','0000-00-00 00:00:00'),(3467,0,0,4285,6899,0,316,'2025-12-21','OD','TP','98.4','mo','2025-12-23 13:45:42','','0000-00-00 00:00:00'),(3468,0,0,4285,6899,0,316,'2025-12-21','OD','PR','79','mo','2025-12-23 13:45:46','','0000-00-00 00:00:00'),(3469,0,0,4285,6899,0,316,'2025-12-21','OD','SpO2','98','mo','2025-12-23 13:45:47','','0000-00-00 00:00:00'),(3470,0,0,4285,6899,0,316,'2025-12-21','OD','BP','118/76','mo','2025-12-23 13:46:02','','0000-00-00 00:00:00'),(3471,0,0,4285,6899,0,316,'2025-12-21','OA','RR','22','mo','2025-12-23 13:46:03','','0000-00-00 00:00:00'),(3472,0,0,4285,6899,0,316,'2025-12-21','OD','RR','20','mo','2025-12-23 13:46:31','','0000-00-00 00:00:00'),(3473,0,0,4285,6899,0,316,'2025-12-21','OA','TP','98.6','mo','2025-12-23 14:07:21','','0000-00-00 00:00:00'),(3474,0,0,4484,6769,0,309,'2025-12-19','OA','PR','123','mo','2025-12-23 15:42:16','','0000-00-00 00:00:00'),(3475,0,0,4484,6769,0,309,'2025-12-19','OA','SpO2','96','mo','2025-12-23 15:43:08','','0000-00-00 00:00:00'),(3476,0,0,4484,6769,0,309,'2025-12-19','OA','BP','120/70','mo','2025-12-23 15:43:27','','0000-00-00 00:00:00'),(3477,0,0,4484,6769,0,309,'2025-12-19','OA','RR','40','mo','2025-12-23 15:43:32','','0000-00-00 00:00:00'),(3478,0,0,4484,6769,0,309,'2025-12-19','OA','TP','101.2','mo','2025-12-23 15:43:52','','0000-00-00 00:00:00'),(3479,0,0,4484,6769,0,309,'2025-12-19','OD','TP','98.4','mo','2025-12-23 15:43:59','','0000-00-00 00:00:00'),(3480,0,0,4484,6769,0,309,'2025-12-19','OD','PR','103','mo','2025-12-23 15:44:28','','0000-00-00 00:00:00'),(3481,0,0,4484,6769,0,309,'2025-12-19','OD','SpO2','96','mo','2025-12-23 15:44:33','','0000-00-00 00:00:00'),(3482,0,0,4484,6769,0,309,'2025-12-19','OD','BP','146/90','mo','2025-12-23 15:44:50','','0000-00-00 00:00:00'),(3483,0,0,4484,6769,0,309,'2025-12-19','OD','RR','20','mo','2025-12-23 15:45:05','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `patient_vitals` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payment_gateway_status`
--

DROP TABLE IF EXISTS `payment_gateway_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_gateway_status` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `trn_type` enum('O','I','PS','HA','PHA','PC','PHPC','PHS') NOT NULL COMMENT 'O=op bill, I=ip bill, PS=pharmacy bill, HA=hospital advance, PHA=pharmacy advance,PC=payment collection,PHPC=pharmacy payment collection, PHS=pharmacy sale',
  `transaction_id` varchar(30) DEFAULT NULL,
  `bill_receipt_number` int(11) NOT NULL,
  `fyear` smallint(6) DEFAULT NULL,
  `patient_id` int(11) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `amount` float NOT NULL,
  `imei_no` varchar(20) NOT NULL,
  `merchant_id` varchar(30) NOT NULL,
  `terminal_id` varchar(30) NOT NULL,
  `ptrn_ref_no` int(11) NOT NULL,
  `transaction_date` date NOT NULL,
  `response_code` int(11) DEFAULT NULL,
  `response_message` text NOT NULL,
  `response_transaction_id` varchar(50) NOT NULL,
  `bank_tid` varchar(30) NOT NULL,
  `payment_mode` varchar(20) NOT NULL,
  `bank_mid` varchar(50) NOT NULL,
  `callback_amount` float NOT NULL,
  `approval_code` varchar(50) NOT NULL,
  `rrn` varchar(60) NOT NULL,
  `invoice` varchar(50) NOT NULL,
  `batch_number` varchar(50) NOT NULL,
  `card_number` varchar(30) NOT NULL,
  `expiry_date` varchar(10) NOT NULL,
  `issuing_bank` varchar(20) NOT NULL,
  `acquirer_code` varchar(60) NOT NULL,
  `callback_transaction_date` varchar(10) NOT NULL,
  `callback_transaction_time` varchar(50) NOT NULL,
  `card_type` varchar(25) NOT NULL,
  `created_by` varchar(20) NOT NULL,
  `careated_date` datetime NOT NULL,
  `lastmodified_by` varchar(20) NOT NULL,
  `lastmodified_date` datetime NOT NULL,
  `lastmodified_date_timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `patient_id` (`patient_id`),
  KEY `visit_id` (`visit_id`),
  KEY `amount` (`amount`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_gateway_status`
--

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

--
-- Table structure for table `pc_case_dtl`
--

DROP TABLE IF EXISTS `pc_case_dtl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pc_case_dtl` (
  `patient_id` int(11) NOT NULL,
  `case_id` bigint(20) NOT NULL,
  `case_grp` varchar(30) NOT NULL,
  `case_sub_grp` varchar(30) NOT NULL,
  `case_sub_sub_grp` varchar(30) NOT NULL,
  `case_sub_val` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pc_case_dtl`
--

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

--
-- Table structure for table `pc_case_hdr`
--

DROP TABLE IF EXISTS `pc_case_hdr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pc_case_hdr` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `dept_id` varchar(4) NOT NULL,
  `profile` varchar(6) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `case_id` bigint(20) NOT NULL,
  `happen_date` date NOT NULL,
  `target_date` date NOT NULL,
  `present_condition` varchar(50) NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`patient_id`,`case_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pc_case_hdr`
--

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

--
-- Table structure for table `pc_comorbidity`
--

DROP TABLE IF EXISTS `pc_comorbidity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pc_comorbidity` (
  `pd_seq_no` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `pd_patient_id` int(11) NOT NULL,
  `pd_grp` varchar(15) NOT NULL,
  `pd_grp_val` text CHARACTER SET utf8 NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`pd_seq_no`),
  KEY `pd_patient_id` (`pd_patient_id`,`pd_grp`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=520 DEFAULT CHARSET=latin1 COMMENT='patient care encounter detail table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pc_comorbidity`
--

LOCK TABLES `pc_comorbidity` WRITE;
/*!40000 ALTER TABLE `pc_comorbidity` DISABLE KEYS */;
INSERT INTO `pc_comorbidity` VALUES (2,0,4,'CO-MOR','BR ASTHMA','drjayant','2025-10-08 11:19:03','','0000-00-00 00:00:00'),(3,0,41,'CO-MOR','HTN','drjayant','2025-10-08 11:43:47','','0000-00-00 00:00:00'),(4,0,41,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-10-08 11:43:54','','0000-00-00 00:00:00'),(5,0,41,'CO-MOR','CKD','drjayant','2025-10-08 11:43:58','','0000-00-00 00:00:00'),(6,0,120,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-10-08 18:23:54','','0000-00-00 00:00:00'),(7,0,120,'CO-MOR','POLIOMYELITIS','drjayant','2025-10-08 18:24:04','','0000-00-00 00:00:00'),(8,0,121,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-10-08 18:24:26','','0000-00-00 00:00:00'),(9,0,121,'CO-MOR','LUMBUR DISC DX','drjayant','2025-10-08 18:24:33','','0000-00-00 00:00:00'),(10,0,130,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-10-08 18:43:55','','0000-00-00 00:00:00'),(11,0,130,'CO-MOR','HYPOTHYROIDISM','drjayant','2025-10-08 18:44:09','','0000-00-00 00:00:00'),(12,0,130,'CO-MOR','PRE DM','drjayant','2025-10-08 18:44:16','','0000-00-00 00:00:00'),(13,0,139,'CO-MOR','OBESITY, HT, DYSLIPIDEMIA','drjayant','2025-10-08 18:58:03','','0000-00-00 00:00:00'),(14,0,142,'CO-MOR','HT, DM, BPH','drjayant','2025-10-08 19:06:08','','0000-00-00 00:00:00'),(15,0,146,'CO-MOR','ANXIETY','drjayant','2025-10-08 19:20:12','','0000-00-00 00:00:00'),(16,0,168,'CO-MOR','DM, DYSLIPIDEMIA','drjayant','2025-10-09 11:19:45','','0000-00-00 00:00:00'),(17,0,188,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-10-09 11:29:40','','0000-00-00 00:00:00'),(18,0,193,'CO-MOR','HT, DM, CKD','drjayant','2025-10-09 11:35:11','','0000-00-00 00:00:00'),(19,0,193,'CO-MOR','CA LARYNX','drjayant','2025-10-09 11:35:21','','0000-00-00 00:00:00'),(20,0,207,'CO-MOR','HT, ILD','drjayant','2025-10-09 12:27:46','','0000-00-00 00:00:00'),(21,0,254,'CO-MOR','HTN','drjayant','2025-10-09 18:45:49','','0000-00-00 00:00:00'),(22,0,254,'CO-MOR','ACID PEPTIC DX','drjayant','2025-10-09 18:46:01','','0000-00-00 00:00:00'),(23,0,254,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-10-09 18:46:17','','0000-00-00 00:00:00'),(25,0,260,'CO-MOR','HYPOTHYROIDISM','drjayant','2025-10-09 19:08:59','','0000-00-00 00:00:00'),(26,0,278,'CO-MOR','DCMP WITH SEVERE LVD','drjayant','2025-10-10 11:33:21','','0000-00-00 00:00:00'),(27,0,278,'CO-MOR','CKD','drjayant','2025-10-10 11:33:27','','0000-00-00 00:00:00'),(28,0,306,'CO-MOR','IRON DEF ANAEMIA','drjayant','2025-10-10 11:37:42','','0000-00-00 00:00:00'),(29,0,299,'CO-MOR','DM','drjayant','2025-10-10 12:54:31','','0000-00-00 00:00:00'),(30,0,322,'CO-MOR','HT, DM, CVA','drjayant','2025-10-10 13:12:44','','0000-00-00 00:00:00'),(31,0,368,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-10-10 18:41:15','','0000-00-00 00:00:00'),(32,0,425,'CO-MOR','DM','drjayant','2025-10-11 11:43:22','','0000-00-00 00:00:00'),(33,0,396,'CO-MOR','HYPOTHYROIDISM','drjayant','2025-10-11 11:44:09','','0000-00-00 00:00:00'),(34,0,407,'CO-MOR','HYPOTHYROIDISM','drjayant','2025-10-11 12:44:03','','0000-00-00 00:00:00'),(35,0,450,'CO-MOR','HT, IHD','drjayant','2025-10-11 13:10:11','','0000-00-00 00:00:00'),(36,0,450,'CO-MOR','SEVERE LVD','drjayant','2025-10-11 13:10:20','','0000-00-00 00:00:00'),(37,0,530,'CO-MOR','MORBID OBESITY','drjayant','2025-10-13 12:17:37','','0000-00-00 00:00:00'),(38,0,530,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-10-13 12:17:47','','0000-00-00 00:00:00'),(39,0,540,'CO-MOR','OBESITY, HT, DM, DYSLIPIDEMIA','drjayant','2025-10-13 13:12:54','','0000-00-00 00:00:00'),(40,0,563,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-10-13 18:16:46','','0000-00-00 00:00:00'),(41,0,567,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-10-13 18:21:39','','0000-00-00 00:00:00'),(42,0,581,'CO-MOR','OBESITY, HT, DM, CVA','drjayant','2025-10-13 18:48:11','','0000-00-00 00:00:00'),(43,0,561,'CO-MOR','CAD (CABG), TYPE II DM, HT','drarchit','2025-10-13 18:54:23','','0000-00-00 00:00:00'),(44,0,721,'CO-MOR','LUMBUR DISC DX','darshan','2025-10-15 13:06:41','','0000-00-00 00:00:00'),(45,0,785,'CO-MOR','HTN','drjayant','2025-10-15 18:08:27','','0000-00-00 00:00:00'),(46,0,718,'CO-MOR','HTN','drjayant','2025-10-15 18:30:45','','0000-00-00 00:00:00'),(47,0,798,'CO-MOR','OBESITY, HT, DYSLIPIDEMIA','drjayant','2025-10-15 18:44:57','','0000-00-00 00:00:00'),(48,0,800,'CO-MOR','IHD','drjayant','2025-10-15 19:33:08','','0000-00-00 00:00:00'),(49,0,909,'CO-MOR','HTN','drjayant','2025-10-16 18:40:45','','0000-00-00 00:00:00'),(50,0,922,'CO-MOR','HT, DM','drjayant','2025-10-16 18:58:47','','0000-00-00 00:00:00'),(52,0,937,'CO-MOR','HTN','drarchit','2025-10-17 10:55:19','','0000-00-00 00:00:00'),(53,0,937,'CO-MOR','CKD','drarchit','2025-10-17 10:55:24','','0000-00-00 00:00:00'),(54,0,937,'CO-MOR','DM','drarchit','2025-10-17 10:55:28','','0000-00-00 00:00:00'),(55,0,961,'CO-MOR','HTN','drjayant','2025-10-17 11:38:43','','0000-00-00 00:00:00'),(56,0,961,'CO-MOR','ANXIETY','drjayant','2025-10-17 11:38:47','','0000-00-00 00:00:00'),(57,0,961,'CO-MOR','GERD ?','drjayant','2025-10-17 11:39:03','','0000-00-00 00:00:00'),(58,0,951,'CO-MOR','HT, DM','drjayant','2025-10-17 12:01:10','','0000-00-00 00:00:00'),(59,0,951,'CO-MOR','DEPRESSION','drjayant','2025-10-17 12:01:18','','0000-00-00 00:00:00'),(60,0,919,'CO-MOR','HYPOTHYROIDISM','drjayant','2025-10-17 12:22:42','','0000-00-00 00:00:00'),(61,0,977,'CO-MOR','HT, DM, CVA','drjayant','2025-10-17 12:28:50','','0000-00-00 00:00:00'),(62,0,1030,'CO-MOR','DM','drjayant','2025-10-17 18:55:30','','0000-00-00 00:00:00'),(63,0,1030,'CO-MOR','ANXIETY','drjayant','2025-10-17 18:55:36','','0000-00-00 00:00:00'),(64,0,1031,'CO-MOR','HT, DM','drjayant','2025-10-17 19:06:15','','0000-00-00 00:00:00'),(65,0,1077,'CO-MOR','CH SMOKER','drjayant','2025-10-18 12:06:58','','0000-00-00 00:00:00'),(66,0,1077,'CO-MOR','COPD','drjayant','2025-10-18 12:07:03','','0000-00-00 00:00:00'),(67,0,1077,'CO-MOR','DM','drjayant','2025-10-18 12:07:08','','0000-00-00 00:00:00'),(68,0,1135,'SENSIT','PT NOT TOLERATING MANEVUERS','darshan','2025-10-23 17:56:39','','0000-00-00 00:00:00'),(69,0,1156,'CO-MOR','BR ASTHMA','drjayant','2025-10-24 11:25:14','','0000-00-00 00:00:00'),(70,0,1190,'CO-MOR','HT, BPH','drjayant','2025-10-24 18:22:09','','0000-00-00 00:00:00'),(71,0,1194,'CO-MOR','ILD ON STEROID','darshan','2025-10-24 19:07:54','','0000-00-00 00:00:00'),(72,0,1200,'CO-MOR','HTN','drjayant','2025-10-24 19:33:28','','0000-00-00 00:00:00'),(73,0,1220,'CO-MOR','CERVICAL SPINE DX','drjayant','2025-10-25 11:39:22','','0000-00-00 00:00:00'),(74,0,1223,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-10-25 11:43:23','','0000-00-00 00:00:00'),(75,0,1302,'CO-MOR','HTN','drjayant','2025-10-27 12:07:08','','0000-00-00 00:00:00'),(76,0,1302,'CO-MOR','ACID PEPTIC DX','drjayant','2025-10-27 12:07:12','','0000-00-00 00:00:00'),(77,0,1332,'CO-MOR','HTN','drjayant','2025-10-27 18:25:15','','0000-00-00 00:00:00'),(78,0,1335,'CO-MOR','DM','drjayant','2025-10-27 18:30:16','','0000-00-00 00:00:00'),(79,0,1335,'CO-MOR','CVST','drjayant','2025-10-27 18:30:19','','0000-00-00 00:00:00'),(81,0,1339,'CO-MOR','HTN','drjayant','2025-10-27 18:32:49','','0000-00-00 00:00:00'),(82,0,1339,'CO-MOR','HYPOTHYROIDISM','drjayant','2025-10-27 18:32:58','','0000-00-00 00:00:00'),(83,0,1340,'CO-MOR','HT, DM, CVA','drjayant','2025-10-27 18:57:34','','0000-00-00 00:00:00'),(85,0,1352,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-10-27 19:19:52','','0000-00-00 00:00:00'),(86,0,1345,'CO-MOR','CA PROSTATE','darshan','2025-10-27 20:11:46','','0000-00-00 00:00:00'),(87,0,1370,'CO-MOR','HTN','drjayant','2025-10-28 11:21:42','','0000-00-00 00:00:00'),(88,0,1376,'CO-MOR','HT, DM, CVA','drjayant','2025-10-28 11:31:19','','0000-00-00 00:00:00'),(89,0,1376,'CO-MOR','BED RIDDEN STATUS','drjayant','2025-10-28 11:31:34','','0000-00-00 00:00:00'),(90,0,1387,'CO-MOR','CAD (PTCA TO RCA JAN 2025), HT','drarchit','2025-10-28 12:18:57','','0000-00-00 00:00:00'),(91,0,1395,'CO-MOR','DM , HT .','drarchit','2025-10-28 12:47:45','','0000-00-00 00:00:00'),(92,0,204,'CO-MOR','HT , CAG DONE 22 OCT (NORMAL CORONARY)','drarchit','2025-10-28 13:09:47','','0000-00-00 00:00:00'),(93,0,1406,'CO-MOR','HT','drarchit','2025-10-28 13:15:04','','0000-00-00 00:00:00'),(94,0,1418,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-10-28 17:55:52','','0000-00-00 00:00:00'),(95,0,1445,'CO-MOR','EPILEPSY','drjayant','2025-10-28 19:11:03','','0000-00-00 00:00:00'),(96,0,1472,'CO-MOR','HT, DM, CKD, HYPERURICEMIA','drjayant','2025-10-29 11:13:12','','0000-00-00 00:00:00'),(97,0,1475,'CO-MOR','HTN','drjayant','2025-10-29 11:20:01','','0000-00-00 00:00:00'),(98,0,1475,'CO-MOR','PSYCHIATRIC ILLNESS','drjayant','2025-10-29 11:20:17','','0000-00-00 00:00:00'),(99,0,1460,'CO-MOR','5MA','darshan','2025-10-29 11:28:53','','0000-00-00 00:00:00'),(100,0,1471,'CO-MOR','DILATED CARDIOMYOPAHTY','drarchit','2025-10-29 11:32:10','','0000-00-00 00:00:00'),(101,0,714,'CO-MOR','DM (15 YEARS), CAD ( PTCA TO LAD MARCH 2025)','drarchit','2025-10-29 11:36:20','','0000-00-00 00:00:00'),(102,0,422,'CO-MOR','DM (18 YEARS),  EARLY CKD','drarchit','2025-10-29 11:47:11','','0000-00-00 00:00:00'),(103,0,1461,'CO-MOR','DM ,HT , HYPOTHYROID, DISLIPIDEMIA','drarchit','2025-10-29 11:57:21','','0000-00-00 00:00:00'),(104,0,1478,'CO-MOR','DM','drjayant','2025-10-29 12:11:40','','0000-00-00 00:00:00'),(105,0,1480,'CO-MOR','DM','drarchit','2025-10-29 12:24:01','','0000-00-00 00:00:00'),(106,0,1484,'CO-MOR','DM , HT .','drarchit','2025-10-29 12:36:49','','0000-00-00 00:00:00'),(107,0,1494,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-10-29 12:44:48','','0000-00-00 00:00:00'),(108,0,1463,'CO-MOR','HT, CAD','drarchit','2025-10-29 12:53:45','','0000-00-00 00:00:00'),(109,0,1465,'CO-MOR','SEVERE MR (PML PROLAPSE ), V.TECH (JUNE 25)','drarchit','2025-10-29 12:59:11','','0000-00-00 00:00:00'),(110,0,1476,'CO-MOR','DM ,CAD (PTCA TO LAD 2017, CRITICAL RCA LESION ), EF -20%','drarchit','2025-10-29 13:10:28','','0000-00-00 00:00:00'),(111,0,1496,'CO-MOR','SEVERE AS (AVR DONE)','drarchit','2025-10-29 13:17:33','','0000-00-00 00:00:00'),(112,0,1519,'CO-MOR','DM, DYSLIPIDEMIA','drjayant','2025-10-29 18:01:54','','0000-00-00 00:00:00'),(113,0,1526,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-10-29 18:30:59','','0000-00-00 00:00:00'),(114,0,1529,'CO-MOR','DM, HT','drarchit','2025-10-29 18:53:36','','0000-00-00 00:00:00'),(115,0,1536,'CO-MOR','PSYCHIATRIC ILLNESS','drjayant','2025-10-29 19:35:35','','0000-00-00 00:00:00'),(116,0,1536,'CO-MOR','LIMITED MOBILITY','drjayant','2025-10-29 19:35:53','','0000-00-00 00:00:00'),(117,0,56,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-10-30 11:21:52','','0000-00-00 00:00:00'),(118,0,1567,'CO-MOR','DM','drjayant','2025-10-30 12:14:40','','0000-00-00 00:00:00'),(119,0,1565,'CO-MOR','HT','drarchit','2025-10-30 12:18:19','','0000-00-00 00:00:00'),(120,0,1555,'CO-MOR','K/C/O CAD (CABG , PTCA ), DM , HT , RA','drarchit','2025-10-30 12:47:35','','0000-00-00 00:00:00'),(121,0,452,'CO-MOR','THALAMOCAPSULAR HEMORRHAE , HT','drarchit','2025-10-30 13:30:43','','0000-00-00 00:00:00'),(122,0,785,'CO-MOR','GERD ?','drjayant','2025-10-30 18:00:35','','0000-00-00 00:00:00'),(123,0,1604,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-10-30 18:51:22','','0000-00-00 00:00:00'),(124,0,1613,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-10-30 19:23:25','','0000-00-00 00:00:00'),(125,0,1645,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-10-31 11:41:51','','0000-00-00 00:00:00'),(126,0,1661,'CO-MOR','HT, CVA','drjayant','2025-10-31 12:12:09','','0000-00-00 00:00:00'),(127,0,1703,'CO-MOR','COPD','drjayant','2025-10-31 18:19:56','','0000-00-00 00:00:00'),(128,0,1703,'CO-MOR','DM','drjayant','2025-10-31 18:19:57','','0000-00-00 00:00:00'),(129,0,1707,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-10-31 18:23:54','','0000-00-00 00:00:00'),(130,0,1174,'CO-MOR','HT, CVA','drjayant','2025-10-31 18:34:23','','0000-00-00 00:00:00'),(131,0,1174,'CO-MOR','CH ALCOHOLIC','drjayant','2025-10-31 18:34:34','','0000-00-00 00:00:00'),(132,0,1712,'CO-MOR','HT, DM','drjayant','2025-10-31 18:36:45','','0000-00-00 00:00:00'),(133,0,1712,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-10-31 18:37:03','','0000-00-00 00:00:00'),(134,0,1713,'CO-MOR','HT, DM, HYPOTHYROIDISM','drjayant','2025-10-31 19:02:39','','0000-00-00 00:00:00'),(135,0,1748,'CO-MOR','HT, IHD(POST PTCA), DM, DCMP','drjayant','2025-11-01 10:57:13','','0000-00-00 00:00:00'),(136,0,1107,'CO-MOR','HT, IHD(POST PTCA), DYSLIPIDEMIA, HYPOTHYROIDISM, BPH','drjayant','2025-11-01 11:14:55','','0000-00-00 00:00:00'),(137,0,1152,'CO-MOR','DM','drjayant','2025-11-01 11:25:01','','0000-00-00 00:00:00'),(138,0,1756,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-11-01 11:31:47','','0000-00-00 00:00:00'),(139,0,1756,'CO-MOR','ACID PEPTIC DX','drjayant','2025-11-01 11:31:53','','0000-00-00 00:00:00'),(140,0,1756,'CO-MOR','CKD?','drjayant','2025-11-01 11:32:07','','0000-00-00 00:00:00'),(141,0,1302,'CO-MOR','DEPRESSION','drjayant','2025-11-01 11:58:22','','0000-00-00 00:00:00'),(142,0,1762,'CO-MOR','CLASSSICAL MIGRAIN','drarchit','2025-11-01 12:10:56','','0000-00-00 00:00:00'),(143,0,1771,'CO-MOR','HT, DM, CKD','drjayant','2025-11-01 12:39:43','','0000-00-00 00:00:00'),(144,0,1769,'SENSIT','NSAID','darshan','2025-11-01 13:04:26','','0000-00-00 00:00:00'),(145,0,1777,'CO-MOR','HT','drarchit','2025-11-01 13:35:20','','0000-00-00 00:00:00'),(146,0,1812,'CO-MOR','NAD','drjayant','2025-11-03 11:13:30','','0000-00-00 00:00:00'),(147,0,1814,'CO-MOR','NAD','drjayant','2025-11-03 11:19:42','','0000-00-00 00:00:00'),(148,0,1814,'CO-MOR','IRON DEF ANAEMIA','drjayant','2025-11-03 11:19:48','','0000-00-00 00:00:00'),(149,0,1253,'CO-MOR','HT, DM, BPH','drjayant','2025-11-03 11:22:50','','0000-00-00 00:00:00'),(150,0,1253,'CO-MOR','POST TURP','drjayant','2025-11-03 11:23:13','','0000-00-00 00:00:00'),(151,0,1827,'CO-MOR','HT, DM, HYPOTHYROIDISM','drjayant','2025-11-03 12:05:07','','0000-00-00 00:00:00'),(152,0,1827,'CO-MOR','PPI IN SITU','drjayant','2025-11-03 12:05:16','','0000-00-00 00:00:00'),(153,0,1827,'CO-MOR','DEPRESSION','drjayant','2025-11-03 12:05:23','','0000-00-00 00:00:00'),(154,0,1827,'CO-MOR','CH HYPONATREMIA','drjayant','2025-11-03 12:05:41','','0000-00-00 00:00:00'),(155,0,1809,'CO-MOR','IHD','drjayant','2025-11-03 12:22:12','','0000-00-00 00:00:00'),(156,0,1843,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-11-03 13:03:36','','0000-00-00 00:00:00'),(157,0,1843,'CO-MOR','CKD?','drjayant','2025-11-03 13:03:39','','0000-00-00 00:00:00'),(158,0,1869,'CO-MOR','HYPOTHYROIDISM','drjayant','2025-11-03 18:30:09','','0000-00-00 00:00:00'),(159,0,1868,'CO-MOR','HT, DM','drjayant','2025-11-03 18:36:03','','0000-00-00 00:00:00'),(161,0,1874,'CO-MOR','IHD(POST PTCA )','drjayant','2025-11-03 18:39:00','','0000-00-00 00:00:00'),(163,0,1875,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-11-03 18:48:25','','0000-00-00 00:00:00'),(164,0,1875,'CO-MOR','PRE DM','drjayant','2025-11-03 18:48:28','','0000-00-00 00:00:00'),(165,0,1876,'CO-MOR','OBESITY, HT, DYSLIPIDEMIA','drjayant','2025-11-03 18:50:14','','0000-00-00 00:00:00'),(167,0,1870,'CO-MOR','TYPE-1 DM','darshan','2025-11-03 19:26:32','','0000-00-00 00:00:00'),(168,0,1884,'CO-MOR','HT, DM','drjayant','2025-11-03 19:32:11','','0000-00-00 00:00:00'),(169,0,1894,'CO-MOR','HT, DM, CVA','drjayant','2025-11-04 11:05:59','','0000-00-00 00:00:00'),(170,0,1897,'CO-MOR','ON PSY TREATMENT','darshan','2025-11-04 11:47:04','','0000-00-00 00:00:00'),(171,0,1916,'CO-MOR','HT, DM','drjayant','2025-11-04 12:40:32','','0000-00-00 00:00:00'),(172,0,1930,'CO-MOR','HT, DM, BR ASTHMA, DYSLIPIDEMIA, HYPERURICEMIA','drjayant','2025-11-04 18:07:13','','0000-00-00 00:00:00'),(173,0,1934,'CO-MOR','HT, DM, IHD','drjayant','2025-11-04 18:48:08','','0000-00-00 00:00:00'),(174,0,1936,'CO-MOR','HYPOTHYROIDISM','drjayant','2025-11-04 18:55:17','','0000-00-00 00:00:00'),(175,0,1950,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-11-05 10:59:30','','0000-00-00 00:00:00'),(176,0,1969,'CO-MOR','DM','drjayant','2025-11-05 11:59:09','','0000-00-00 00:00:00'),(177,0,1972,'CO-MOR','HT (DEFAULTER)','drjayant','2025-11-05 12:24:39','','0000-00-00 00:00:00'),(178,0,1958,'SENSIT','PERINORM,STEMETIL','darshan','2025-11-05 12:55:40','','0000-00-00 00:00:00'),(179,0,1950,'CO-MOR','OPERATED FOR LT BREAST','drjayant','2025-11-05 13:21:42','','0000-00-00 00:00:00'),(180,0,1998,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-11-05 18:04:42','','0000-00-00 00:00:00'),(181,0,2006,'CO-MOR','HT, HYPOTHYROIDISM','drjayant','2025-11-05 18:15:38','','0000-00-00 00:00:00'),(182,0,2012,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-11-05 18:25:00','','0000-00-00 00:00:00'),(184,0,2010,'CO-MOR','DM','drjayant','2025-11-05 18:27:59','','0000-00-00 00:00:00'),(185,0,2014,'CO-MOR','DM ( DEFAULTER )','drjayant','2025-11-05 18:40:03','','0000-00-00 00:00:00'),(186,0,1952,'CO-MOR','OBESITY','drjayant','2025-11-05 19:05:33','','0000-00-00 00:00:00'),(187,0,1068,'CO-MOR','MORBID OBESITY','drjayant','2025-11-05 19:14:33','','0000-00-00 00:00:00'),(188,0,1068,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-11-05 19:14:39','','0000-00-00 00:00:00'),(189,0,1068,'CO-MOR','PRE DM','drjayant','2025-11-05 19:15:09','','0000-00-00 00:00:00'),(190,0,2019,'CO-MOR','NAD','drjayant','2025-11-05 19:16:41','','0000-00-00 00:00:00'),(191,0,1990,'CO-MOR','ANXIETY','drjayant','2025-11-05 19:36:45','','0000-00-00 00:00:00'),(192,0,2037,'CO-MOR','HT, CVA','drjayant','2025-11-06 11:05:56','','0000-00-00 00:00:00'),(193,0,893,'CO-MOR','HT, DM','drjayant','2025-11-06 11:11:57','','0000-00-00 00:00:00'),(194,0,893,'CO-MOR','CKD','drjayant','2025-11-06 11:12:04','','0000-00-00 00:00:00'),(195,0,893,'CO-MOR','SOLITARY KIDNEY','drjayant','2025-11-06 11:12:14','','0000-00-00 00:00:00'),(196,0,893,'CO-MOR','PVD','drjayant','2025-11-06 11:12:19','','0000-00-00 00:00:00'),(197,0,2048,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-11-06 11:38:04','','0000-00-00 00:00:00'),(198,0,2048,'CO-MOR','CH ALCOHOLIC','drjayant','2025-11-06 11:38:10','','0000-00-00 00:00:00'),(199,0,2048,'CO-MOR','PRE DM','drjayant','2025-11-06 11:38:14','','0000-00-00 00:00:00'),(200,0,2062,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-11-06 13:27:08','','0000-00-00 00:00:00'),(201,0,2053,'CO-MOR','CA LARYNX','darshan','2025-11-06 13:29:32','','0000-00-00 00:00:00'),(202,0,2071,'CO-MOR','HT, PSYCHIATRIC ILLNESS','drjayant','2025-11-06 17:54:02','','0000-00-00 00:00:00'),(203,0,2072,'CO-MOR','HT, DM, IHD, PVD, OLD CVA, DYSLIPIDEMIA, CKD','drjayant','2025-11-06 17:59:46','','0000-00-00 00:00:00'),(204,0,2073,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-11-06 18:05:40','','0000-00-00 00:00:00'),(205,0,2075,'CO-MOR','DM, COPD','drjayant','2025-11-06 18:10:35','','0000-00-00 00:00:00'),(206,0,2075,'CO-MOR','CH SMOKER','drjayant','2025-11-06 18:10:40','','0000-00-00 00:00:00'),(207,0,2079,'CO-MOR','ALLERGIC RHINITIS','drjayant','2025-11-06 18:34:28','','0000-00-00 00:00:00'),(208,0,2080,'CO-MOR','HT, IHD','drjayant','2025-11-06 18:36:32','','0000-00-00 00:00:00'),(209,0,2076,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-11-06 18:39:10','','0000-00-00 00:00:00'),(210,0,842,'CO-MOR','HT','drjayant','2025-11-06 18:53:48','','0000-00-00 00:00:00'),(211,0,2090,'CO-MOR','HT, CLD','drjayant','2025-11-06 19:41:28','','0000-00-00 00:00:00'),(212,0,2090,'CO-MOR','TRIGEMINAL NERALGIA','drjayant','2025-11-06 19:41:40','','0000-00-00 00:00:00'),(213,0,2099,'CO-MOR','HT, CVA','drjayant','2025-11-07 11:14:26','','0000-00-00 00:00:00'),(214,0,2099,'CO-MOR','POST TURP','drjayant','2025-11-07 11:14:30','','0000-00-00 00:00:00'),(215,0,2104,'CO-MOR','HT, IHD(POST CABG)','drjayant','2025-11-07 11:21:09','','0000-00-00 00:00:00'),(216,0,1580,'CO-MOR','HT','drjayant','2025-11-07 11:25:21','','0000-00-00 00:00:00'),(217,0,2105,'CO-MOR','ORAL DYSKINESIA','darshan','2025-11-07 11:50:29','','0000-00-00 00:00:00'),(218,0,2117,'CO-MOR','DM, DYSLIPIDEMIA','drjayant','2025-11-07 11:59:48','','0000-00-00 00:00:00'),(219,0,2122,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-11-07 12:13:23','','0000-00-00 00:00:00'),(220,0,2122,'CO-MOR','ANXIETY','drjayant','2025-11-07 12:17:50','','0000-00-00 00:00:00'),(221,0,2144,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-11-07 18:00:28','','0000-00-00 00:00:00'),(224,0,2271,'CO-MOR','DM','drarchit','2025-11-11 11:40:42','','0000-00-00 00:00:00'),(225,0,2305,'CO-MOR','VP SHUNT','darshan','2025-11-11 14:23:54','','0000-00-00 00:00:00'),(226,0,2311,'CO-MOR','DM, HT','drarchit','2025-11-11 18:15:43','','0000-00-00 00:00:00'),(227,0,2349,'CO-MOR','DM, HT','drarchit','2025-11-12 11:03:52','','0000-00-00 00:00:00'),(228,0,2352,'CO-MOR','MVR DONE (ON ORAL ANTICOAGULNAT) RECURRENT PNEUMONTITIS , POST COVID STATUS','drarchit','2025-11-12 11:18:39','','0000-00-00 00:00:00'),(229,0,2353,'CO-MOR','HT','drarchit','2025-11-12 11:32:47','','0000-00-00 00:00:00'),(230,0,2423,'CO-MOR','DM , HT .','drarchit','2025-11-12 20:33:51','','0000-00-00 00:00:00'),(231,0,1410,'CO-MOR','RECUREENT SVT','drarchit','2025-11-13 11:04:55','','0000-00-00 00:00:00'),(232,0,2436,'CO-MOR','HT','drarchit','2025-11-13 11:20:33','','0000-00-00 00:00:00'),(233,0,631,'CO-MOR','HT','drarchit','2025-11-13 11:47:47','','0000-00-00 00:00:00'),(234,0,2442,'CO-MOR','O/C/O CA LARYNX','drarchit','2025-11-13 13:46:34','','0000-00-00 00:00:00'),(235,0,2489,'CO-MOR','DM','drarchit','2025-11-13 18:45:22','','0000-00-00 00:00:00'),(236,0,21,'CO-MOR','POSTERIOUR CIRCULATORY STROKE','drarchit','2025-11-14 11:38:00','','0000-00-00 00:00:00'),(237,0,2531,'CO-MOR','K/C/O HT ON CORTEL H, MOXOVAS 0.2, EOSPRIN AV 75 MG','drarchit','2025-11-14 12:28:58','','0000-00-00 00:00:00'),(238,0,2561,'CO-MOR','K/C/O HT ON TAB LTK-H','drarchit','2025-11-14 18:49:37','','0000-00-00 00:00:00'),(239,0,2576,'CO-MOR','SEVERE RT LUNG VOLUME LOS WITH BRONCHIACTESIS','drarchit','2025-11-15 11:24:45','','0000-00-00 00:00:00'),(242,0,1531,'CO-MOR','DM','drarchit','2025-11-15 12:32:34','','0000-00-00 00:00:00'),(243,0,1531,'CO-MOR','HTN','drarchit','2025-11-15 12:32:36','','0000-00-00 00:00:00'),(244,0,1531,'CO-MOR','CAD','drarchit','2025-11-15 12:32:40','','0000-00-00 00:00:00'),(245,0,2810,'CO-MOR','HYPOTHYROIDISM','darshan','2025-11-20 13:03:36','','0000-00-00 00:00:00'),(246,0,2825,'CO-MOR','HT ON TAB AMLODEPINE 5 MG OD','drarchit','2025-11-20 18:26:37','','0000-00-00 00:00:00'),(247,0,2830,'CO-MOR','HT','drarchit','2025-11-20 18:58:43','','0000-00-00 00:00:00'),(248,0,2852,'CO-MOR','K/C/O CAD , HT , DM','drarchit','2025-11-21 12:44:29','','0000-00-00 00:00:00'),(249,0,2872,'CO-MOR','CKD','darshan','2025-11-21 17:28:33','','0000-00-00 00:00:00'),(250,0,2881,'CO-MOR','HYPOTHYROIDISM','darshan','2025-11-21 18:45:02','','0000-00-00 00:00:00'),(251,0,2883,'CO-MOR','HT','drarchit','2025-11-21 19:38:42','','0000-00-00 00:00:00'),(252,0,2950,'CO-MOR','DM WITH HT','drarchit','2025-11-24 13:38:11','','0000-00-00 00:00:00'),(253,0,3176,'CO-MOR','HT, DM, IHD WITH SEVERE LVD','drjayant','2025-11-27 12:44:36','','0000-00-00 00:00:00'),(254,0,3176,'CO-MOR','CH SMOKER','drjayant','2025-11-27 12:44:43','','0000-00-00 00:00:00'),(255,0,3180,'CO-MOR','HT','darshan','2025-11-27 13:50:56','','0000-00-00 00:00:00'),(256,0,3192,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-11-27 18:22:13','','0000-00-00 00:00:00'),(257,0,3191,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-11-27 18:24:39','','0000-00-00 00:00:00'),(258,0,3204,'CO-MOR','DM, DYSLIPIDEMIA','drjayant','2025-11-27 18:41:54','','0000-00-00 00:00:00'),(259,0,3167,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-11-27 19:48:40','','0000-00-00 00:00:00'),(260,0,3172,'CO-MOR','DM, DYSLIPIDEMIA','drjayant','2025-11-27 19:49:05','','0000-00-00 00:00:00'),(261,0,3216,'CO-MOR','HT, IHD(POST CABG)','drjayant','2025-11-28 11:31:10','','0000-00-00 00:00:00'),(262,0,3237,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-11-28 11:54:53','','0000-00-00 00:00:00'),(263,0,3243,'CO-MOR','H/O CORROSION POISOSNING','darshan','2025-11-28 14:11:20','','0000-00-00 00:00:00'),(264,0,3247,'CO-MOR','DEPRESSION','darshan','2025-11-28 14:26:49','','0000-00-00 00:00:00'),(265,0,3275,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-11-28 18:42:07','','0000-00-00 00:00:00'),(266,0,3261,'CO-MOR','RA','drjayant','2025-11-28 18:54:55','','0000-00-00 00:00:00'),(267,0,3226,'CO-MOR','HT, CKD','drjayant','2025-11-28 19:06:08','','0000-00-00 00:00:00'),(268,0,3286,'CO-MOR','DM','drarchit','2025-11-28 19:56:02','','0000-00-00 00:00:00'),(269,0,3302,'CO-MOR','DM, DYSLIPIDEMIA','drjayant','2025-11-29 11:57:12','','0000-00-00 00:00:00'),(270,0,3302,'CO-MOR','ACID PEPTIC DX','drjayant','2025-11-29 11:57:20','','0000-00-00 00:00:00'),(271,0,3315,'CO-MOR','OBESITY, HT, DM, DYSLIPIDEMIA','drjayant','2025-11-29 12:02:20','','0000-00-00 00:00:00'),(272,0,3313,'CO-MOR','HT, DM','drjayant','2025-11-29 12:20:21','','0000-00-00 00:00:00'),(273,0,3310,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-11-29 12:26:38','','0000-00-00 00:00:00'),(275,0,3322,'CO-MOR','DM ( DEFAULTER )','drjayant','2025-11-29 12:50:10','','0000-00-00 00:00:00'),(276,0,3293,'CO-MOR','CLD, DM','drjayant','2025-11-29 13:01:40','','0000-00-00 00:00:00'),(277,0,3294,'CO-MOR','FATTY LIVER','drjayant','2025-11-29 13:07:40','','0000-00-00 00:00:00'),(278,0,3294,'CO-MOR','DM','drjayant','2025-11-29 13:07:46','','0000-00-00 00:00:00'),(279,0,3309,'CO-MOR','DM, DYSLIPIDEMIA','drjayant','2025-11-29 13:08:46','','0000-00-00 00:00:00'),(280,0,3309,'CO-MOR','ACID PEPTIC DX','drjayant','2025-11-29 13:08:52','','0000-00-00 00:00:00'),(281,0,3308,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-11-29 13:46:26','','0000-00-00 00:00:00'),(283,0,3368,'CO-MOR','IHD WITH LVD','drjayant','2025-12-01 11:22:54','','0000-00-00 00:00:00'),(284,0,3368,'CO-MOR','MODERATE MR','drjayant','2025-12-01 11:23:10','','0000-00-00 00:00:00'),(286,0,3368,'CO-MOR','BPH','drjayant','2025-12-01 11:23:29','','0000-00-00 00:00:00'),(287,0,3368,'CO-MOR','POST TURP','drjayant','2025-12-01 11:23:39','','0000-00-00 00:00:00'),(288,0,3378,'CO-MOR','OBESITY, HT, DYSLIPIDEMIA','drjayant','2025-12-01 11:51:21','','0000-00-00 00:00:00'),(289,0,1826,'CO-MOR','HT, DM, HYPOTHYROIDISM','drjayant','2025-12-01 13:16:22','','0000-00-00 00:00:00'),(290,0,3418,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-12-01 18:27:45','','0000-00-00 00:00:00'),(291,0,3428,'CO-MOR','OBESITY','drjayant','2025-12-01 18:47:09','','0000-00-00 00:00:00'),(292,0,3423,'CO-MOR','HT','drjayant','2025-12-01 18:54:23','','0000-00-00 00:00:00'),(293,0,3410,'CO-MOR','RA, HT','drjayant','2025-12-01 18:55:05','','0000-00-00 00:00:00'),(294,0,3417,'CO-MOR','HT','drjayant','2025-12-01 18:55:26','','0000-00-00 00:00:00'),(295,0,3431,'CO-MOR','OBESITY, HT, DYSLIPIDEMIA','drjayant','2025-12-01 19:08:46','','0000-00-00 00:00:00'),(296,0,3431,'CO-MOR','DM','drjayant','2025-12-01 19:08:48','','0000-00-00 00:00:00'),(297,0,3434,'CO-MOR','HYPOTHYROIDISM','drjayant','2025-12-01 19:29:49','','0000-00-00 00:00:00'),(298,0,3434,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-01 19:29:56','','0000-00-00 00:00:00'),(299,0,601,'CO-MOR','CV STROKE WITH HT WITH AKI','drarchit','2025-12-01 19:41:42','','0000-00-00 00:00:00'),(300,0,3435,'CO-MOR','LYMPHADENITIS','drjayant','2025-12-01 19:54:44','','0000-00-00 00:00:00'),(301,0,3464,'CO-MOR','HT','drjayant','2025-12-02 11:45:52','','0000-00-00 00:00:00'),(302,0,3428,'CO-MOR','HYPERURICEMIA','drjayant','2025-12-02 12:00:13','','0000-00-00 00:00:00'),(303,0,193,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-02 12:12:32','','0000-00-00 00:00:00'),(304,0,2336,'CO-MOR','DM , HT .','drarchit','2025-12-02 13:07:37','','0000-00-00 00:00:00'),(305,0,3492,'CO-MOR','OBESITY, HT, DM, DYSLIPIDEMIA','drjayant','2025-12-02 18:20:05','','0000-00-00 00:00:00'),(306,0,3492,'CO-MOR','HYPOTHYROIDISM','drjayant','2025-12-02 18:20:14','','0000-00-00 00:00:00'),(307,0,3494,'CO-MOR','DM','drjayant','2025-12-02 18:24:47','','0000-00-00 00:00:00'),(308,0,3494,'CO-MOR','OPERATED RT LYMH NODE DETECTED CA','drjayant','2025-12-02 18:25:19','','0000-00-00 00:00:00'),(309,0,3494,'CO-MOR','LT DVT','drjayant','2025-12-02 18:25:27','','0000-00-00 00:00:00'),(310,0,3021,'CO-MOR','HT','drjayant','2025-12-02 18:34:34','','0000-00-00 00:00:00'),(311,0,3487,'CO-MOR','SJOGRENS SYNDROME','drjayant','2025-12-02 18:36:14','','0000-00-00 00:00:00'),(312,0,3502,'CO-MOR','DM','drjayant','2025-12-02 19:29:25','','0000-00-00 00:00:00'),(313,0,3522,'CO-MOR','HT ( 1 ST TIME DETECTED )','drjayant','2025-12-03 11:21:38','','0000-00-00 00:00:00'),(314,0,3524,'CO-MOR','HT, DM','drjayant','2025-12-03 11:27:26','','0000-00-00 00:00:00'),(315,0,3512,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-03 11:29:12','','0000-00-00 00:00:00'),(316,0,3529,'CO-MOR','HT, DM','drjayant','2025-12-03 11:42:27','','0000-00-00 00:00:00'),(318,0,3532,'CO-MOR','HT, HYPERURICEMIA','drjayant','2025-12-03 11:52:35','','0000-00-00 00:00:00'),(319,0,3532,'CO-MOR','GERD ?','drjayant','2025-12-03 11:52:38','','0000-00-00 00:00:00'),(320,0,3511,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-12-03 12:02:49','','0000-00-00 00:00:00'),(321,0,3566,'CO-MOR','HYPOTHYROIDISM','drjayant','2025-12-03 18:24:16','','0000-00-00 00:00:00'),(322,0,3564,'CO-MOR','CAD (PTCA), HT, MESENTERIC VESELSES ISCHEMIA , EARLT CKD','drarchit','2025-12-03 18:30:00','','0000-00-00 00:00:00'),(323,0,3572,'CO-MOR','DM, DYSLIPIDEMIA','drjayant','2025-12-03 18:40:15','','0000-00-00 00:00:00'),(324,0,3572,'CO-MOR','IRON DEF ANAEMIA','drjayant','2025-12-03 18:40:24','','0000-00-00 00:00:00'),(325,0,3570,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-03 18:52:03','','0000-00-00 00:00:00'),(326,0,3582,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-12-03 18:55:30','','0000-00-00 00:00:00'),(327,0,3582,'CO-MOR','HYPERTHYROIDISM','drjayant','2025-12-03 18:55:48','','0000-00-00 00:00:00'),(328,0,3582,'CO-MOR','RECURRENT SVT','drjayant','2025-12-03 18:55:59','','0000-00-00 00:00:00'),(329,0,3587,'CO-MOR','HT, DM, CA BREAST','drjayant','2025-12-03 19:13:37','','0000-00-00 00:00:00'),(330,0,3578,'CO-MOR','DM , HT WITH HYPOTHYRODISM','drarchit','2025-12-03 19:13:59','','0000-00-00 00:00:00'),(331,0,3548,'CO-MOR','IRON DEF ANAEMIA','drjayant','2025-12-03 19:20:11','','0000-00-00 00:00:00'),(332,0,3597,'CO-MOR','HT, DM, CKD, CVA, BPH, PKD','drjayant','2025-12-04 11:22:11','','0000-00-00 00:00:00'),(334,0,3616,'CO-MOR','HYPERTHYROIDISM','drjayant','2025-12-04 12:18:22','','0000-00-00 00:00:00'),(335,0,3622,'CO-MOR','HT, DM, CKD','drjayant','2025-12-04 12:37:36','','0000-00-00 00:00:00'),(336,0,3098,'CO-MOR','CML WITH CAD ON REGULAR TREATMENT','drarchit','2025-12-04 18:42:23','','0000-00-00 00:00:00'),(337,0,580,'CO-MOR','IRON DEF ANAEMIA','drjayant','2025-12-04 19:39:53','','0000-00-00 00:00:00'),(338,0,2116,'SENSIT','INDERAL AND FLUNNARAZINE','darshan','2025-12-05 11:03:54','','0000-00-00 00:00:00'),(339,0,3663,'CO-MOR','HT, DM','drjayant','2025-12-05 11:14:33','','0000-00-00 00:00:00'),(340,0,3663,'CO-MOR','HYPERURICEMIA','drjayant','2025-12-05 11:14:42','','0000-00-00 00:00:00'),(341,0,3657,'CO-MOR','HYPOTHYROIDISM','drarchit','2025-12-05 11:26:10','','0000-00-00 00:00:00'),(342,0,3657,'CO-MOR','ANXIETY DISORDER','drarchit','2025-12-05 11:26:28','','0000-00-00 00:00:00'),(343,0,3657,'CO-MOR','CAG DONE ON MARCH 2022','drarchit','2025-12-05 11:27:32','','0000-00-00 00:00:00'),(344,0,3675,'CO-MOR','LEFT MCA INFARCT (2024)','drarchit','2025-12-05 11:53:32','','0000-00-00 00:00:00'),(345,0,3672,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-12-05 12:00:09','','0000-00-00 00:00:00'),(346,0,3522,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-05 12:57:43','','0000-00-00 00:00:00'),(347,0,3712,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-12-05 19:17:10','','0000-00-00 00:00:00'),(348,0,3712,'CO-MOR','HYPOTHYROIDISM','drjayant','2025-12-05 19:17:19','','0000-00-00 00:00:00'),(349,0,3712,'CO-MOR','COPD','drjayant','2025-12-05 19:17:27','','0000-00-00 00:00:00'),(350,0,3712,'CO-MOR','LUMBUR SPONDYLOSIS','drjayant','2025-12-05 19:18:04','','0000-00-00 00:00:00'),(351,0,3712,'CO-MOR','CH CONSTIPATION','drjayant','2025-12-05 19:22:41','','0000-00-00 00:00:00'),(352,0,3744,'CO-MOR','HT, DM, HYPOTHYROIDISM','drjayant','2025-12-06 12:36:57','','0000-00-00 00:00:00'),(353,0,3744,'CO-MOR','IHD','drjayant','2025-12-06 12:37:03','','0000-00-00 00:00:00'),(354,0,3744,'CO-MOR','BR ASTHMA','drjayant','2025-12-06 12:37:11','','0000-00-00 00:00:00'),(355,0,3670,'CO-MOR','DM WITH HT','drarchit','2025-12-06 12:39:00','','0000-00-00 00:00:00'),(356,0,3749,'CO-MOR','VERTIGO','drjayant','2025-12-06 13:09:07','','0000-00-00 00:00:00'),(357,0,3826,'CO-MOR','HT WITH ? CAD','drarchit','2025-12-08 13:40:12','','0000-00-00 00:00:00'),(358,0,3830,'CO-MOR','DM','darshan','2025-12-08 14:45:31','','0000-00-00 00:00:00'),(359,0,3858,'CO-MOR','CAD , HT WITH PSCHYATRIC ILLNESS (0N ESCITALOPRAM)','drarchit','2025-12-08 18:58:41','','0000-00-00 00:00:00'),(360,0,3860,'CO-MOR','KIDNEY DONER TO HER HUSBAND','darshan','2025-12-08 19:21:39','','0000-00-00 00:00:00'),(361,0,3917,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-12-09 18:22:49','','0000-00-00 00:00:00'),(362,0,3926,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-12-09 18:33:23','','0000-00-00 00:00:00'),(363,0,3931,'CO-MOR','HT, PHT, AHF','drjayant','2025-12-09 19:40:45','','0000-00-00 00:00:00'),(364,0,3994,'CO-MOR','? LEFT MCA INFARCT','drarchit','2025-12-10 18:39:00','','0000-00-00 00:00:00'),(365,0,4002,'CO-MOR','HT, DM','drjayant','2025-12-10 18:53:04','','0000-00-00 00:00:00'),(366,0,4002,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-10 18:55:17','','0000-00-00 00:00:00'),(367,0,922,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-10 19:38:26','','0000-00-00 00:00:00'),(368,0,4012,'CO-MOR','RHD, CVA','drjayant','2025-12-11 11:24:23','','0000-00-00 00:00:00'),(369,0,4018,'CO-MOR','HT, IHD (POST PTCA )','drjayant','2025-12-11 11:29:27','','0000-00-00 00:00:00'),(370,0,4018,'CO-MOR','GERD ?','drjayant','2025-12-11 11:29:32','','0000-00-00 00:00:00'),(371,0,3583,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-11 11:36:58','','0000-00-00 00:00:00'),(372,0,3583,'CO-MOR','POST BARIATRIC SX','drjayant','2025-12-11 11:37:14','','0000-00-00 00:00:00'),(373,0,4032,'CO-MOR','DM, DYSLIPIDEMIA ( 1ST TIME DETECTRED )','drjayant','2025-12-11 12:55:25','','0000-00-00 00:00:00'),(374,0,3997,'CO-MOR','THALASAMIA MINOR','drjayant','2025-12-11 18:44:40','','0000-00-00 00:00:00'),(375,0,4053,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-12-11 19:26:32','','0000-00-00 00:00:00'),(376,0,4053,'CO-MOR','MYETHENIA GRAVIS','drjayant','2025-12-11 19:27:14','','0000-00-00 00:00:00'),(377,0,4042,'CO-MOR','DM, HYPOTHYROIDISM','drjayant','2025-12-11 19:30:42','','0000-00-00 00:00:00'),(378,0,4042,'CO-MOR','HYPERURICEMIA','drjayant','2025-12-11 19:30:53','','0000-00-00 00:00:00'),(379,0,4041,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-12-11 19:36:22','','0000-00-00 00:00:00'),(380,0,299,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-12 11:18:25','','0000-00-00 00:00:00'),(381,0,4078,'CO-MOR','HT, ACID PEPTIC DX','drjayant','2025-12-12 11:48:16','','0000-00-00 00:00:00'),(382,0,4078,'CO-MOR','ANXIETY','drjayant','2025-12-12 11:54:12','','0000-00-00 00:00:00'),(383,0,1425,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-12-12 11:56:34','','0000-00-00 00:00:00'),(384,0,4067,'CO-MOR','HT','drjayant','2025-12-12 13:13:32','','0000-00-00 00:00:00'),(385,0,4067,'CO-MOR','ACID PEPTIC DX','drjayant','2025-12-12 13:14:04','','0000-00-00 00:00:00'),(386,0,4097,'CO-MOR','HT, HYPOTHYROIDISM','drjayant','2025-12-12 18:31:38','','0000-00-00 00:00:00'),(387,0,4097,'CO-MOR','POST THYROIDECTOMY','drjayant','2025-12-12 18:32:07','','0000-00-00 00:00:00'),(388,0,322,'CO-MOR','PAST ICH','drjayant','2025-12-12 18:48:21','','0000-00-00 00:00:00'),(389,0,4112,'CO-MOR','OBESITY, HT, DM','drjayant','2025-12-12 19:04:30','','0000-00-00 00:00:00'),(390,0,4121,'CO-MOR','HT','drjayant','2025-12-12 19:11:32','','0000-00-00 00:00:00'),(391,0,4124,'CO-MOR','HT','drjayant','2025-12-12 19:36:25','','0000-00-00 00:00:00'),(392,0,4143,'CO-MOR','OBESITY, HT, DYSLIPIDEMIA','drjayant','2025-12-13 11:34:22','','0000-00-00 00:00:00'),(393,0,4097,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-13 12:09:59','','0000-00-00 00:00:00'),(394,0,4078,'CO-MOR','DCMP','drjayant','2025-12-13 12:33:20','','0000-00-00 00:00:00'),(395,0,4078,'CO-MOR','MODERATE LVD','drjayant','2025-12-13 12:33:34','','0000-00-00 00:00:00'),(396,0,4078,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-13 12:36:54','','0000-00-00 00:00:00'),(397,0,4159,'CO-MOR','HT, DM, HYPOTHYROIDISM','drjayant','2025-12-13 13:12:26','','0000-00-00 00:00:00'),(398,0,4159,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-13 13:12:35','','0000-00-00 00:00:00'),(399,0,3510,'CO-MOR','HT, IHD','drjayant','2025-12-13 13:30:51','','0000-00-00 00:00:00'),(400,0,3510,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-13 13:31:00','','0000-00-00 00:00:00'),(401,0,3510,'CO-MOR','LUMBUR DISC DX','drjayant','2025-12-13 13:31:17','','0000-00-00 00:00:00'),(402,0,3510,'CO-MOR','PAH','drjayant','2025-12-13 13:31:37','','0000-00-00 00:00:00'),(403,0,3510,'CO-MOR','CH HYPONATREMIA','drjayant','2025-12-13 13:34:07','','0000-00-00 00:00:00'),(404,0,4179,'CO-MOR','DM','drjayant','2025-12-15 11:33:29','','0000-00-00 00:00:00'),(405,0,4199,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-12-15 11:51:05','','0000-00-00 00:00:00'),(406,0,4199,'CO-MOR','HYPOTHYROIDISM','drjayant','2025-12-15 11:51:14','','0000-00-00 00:00:00'),(408,0,4217,'CO-MOR','CH BRONCHITIS','drjayant','2025-12-15 12:51:26','','0000-00-00 00:00:00'),(409,0,4223,'CO-MOR','OBESITY, HT, DM','drjayant','2025-12-15 13:31:03','','0000-00-00 00:00:00'),(410,0,3871,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-12-15 13:39:55','','0000-00-00 00:00:00'),(411,0,4193,'CO-MOR','HT','drjayant','2025-12-15 13:41:24','','0000-00-00 00:00:00'),(412,0,4192,'CO-MOR','MORBID OBESITY','drjayant','2025-12-15 13:41:50','','0000-00-00 00:00:00'),(413,0,4192,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-12-15 13:42:00','','0000-00-00 00:00:00'),(414,0,4217,'CO-MOR','MILD PAH','drjayant','2025-12-15 14:07:09','','0000-00-00 00:00:00'),(415,0,688,'CO-MOR','HT, CAD','drarchit','2025-12-15 18:30:45','','0000-00-00 00:00:00'),(416,0,4240,'CO-MOR','DM, TYPE 1','drjayant','2025-12-15 18:39:29','','0000-00-00 00:00:00'),(417,0,4263,'CO-MOR','HT ON TAB AMLODEPINE','drarchit','2025-12-16 11:33:32','','0000-00-00 00:00:00'),(419,0,4265,'CO-MOR','DM 13 YEARS, CV STROKE (POSTERIOR CIRCULATORY STROKE 2021), POST CABG (AUG 2023)','drarchit','2025-12-16 11:37:17','','0000-00-00 00:00:00'),(420,0,4267,'CO-MOR','RT HYPERTENSIVE ICH  (THALAMO CAPSULAR REGION , APRIL 2025)','drarchit','2025-12-16 11:42:17','','0000-00-00 00:00:00'),(421,0,4279,'CO-MOR','HT, HYPERTHYROIDISM, CVA','drjayant','2025-12-16 11:57:48','','0000-00-00 00:00:00'),(422,0,4279,'CO-MOR','ACID PEPTIC DX','drjayant','2025-12-16 11:57:58','','0000-00-00 00:00:00'),(423,0,4286,'CO-MOR','HT, HYPOTHYROIDISM, DYSLIPIDEMIA','drjayant','2025-12-16 12:04:28','','0000-00-00 00:00:00'),(424,0,4286,'CO-MOR','ANXIETY','drjayant','2025-12-16 12:04:35','','0000-00-00 00:00:00'),(425,0,4278,'CO-MOR','OPERATED CASE OF LT CP ANGLE TUMOUE 1994-95','drarchit','2025-12-16 12:08:20','','0000-00-00 00:00:00'),(426,0,4283,'CO-MOR','NAD','drjayant','2025-12-16 12:18:14','','0000-00-00 00:00:00'),(427,0,4287,'CO-MOR','HT','drjayant','2025-12-16 12:21:44','','0000-00-00 00:00:00'),(428,0,4256,'CO-MOR','DM ,HT , PSCHYATIRC ILNESS','drarchit','2025-12-16 12:44:12','','0000-00-00 00:00:00'),(429,0,4295,'CO-MOR','OBESITY, HT, DYSLIPIDEMIA','drjayant','2025-12-16 13:18:02','','0000-00-00 00:00:00'),(431,0,4294,'CO-MOR','DM, HT , DYSLIPDEMIA, PSCHYATRIST ILLNESS','drarchit','2025-12-16 13:20:28','','0000-00-00 00:00:00'),(432,0,4279,'CO-MOR','RT OA KNEE','drjayant','2025-12-16 13:28:11','','0000-00-00 00:00:00'),(433,0,3780,'CO-MOR','RECENT CAP , CAD WITH DM WITH HT WITH AKI','drarchit','2025-12-16 18:26:42','','0000-00-00 00:00:00'),(434,0,4310,'CO-MOR','DM , HT .','drarchit','2025-12-16 18:46:01','','0000-00-00 00:00:00'),(435,0,260,'CO-MOR','PRE DM','drjayant','2025-12-16 19:03:03','','0000-00-00 00:00:00'),(436,0,4323,'CO-MOR','HT','drjayant','2025-12-16 19:15:42','','0000-00-00 00:00:00'),(437,0,4315,'CO-MOR','HT, DM, HYPOTHYROIDISM','drarchit','2025-12-16 19:19:00','','0000-00-00 00:00:00'),(438,0,3920,'CO-MOR','CAD, CKD','drarchit','2025-12-16 19:38:42','','0000-00-00 00:00:00'),(439,0,4334,'CO-MOR','DM','drjayant','2025-12-17 11:38:07','','0000-00-00 00:00:00'),(440,0,4285,'CO-MOR','DM, HT ,CAD','drarchit','2025-12-17 11:46:44','','0000-00-00 00:00:00'),(441,0,4345,'CO-MOR','NAD','drjayant','2025-12-17 12:16:56','','0000-00-00 00:00:00'),(442,0,4344,'CO-MOR','DDDDD','drjayant','2025-12-17 12:25:05','','0000-00-00 00:00:00'),(443,0,4344,'CO-MOR','DM','drjayant','2025-12-17 12:25:12','','0000-00-00 00:00:00'),(444,0,4344,'CO-MOR','COPD','drjayant','2025-12-17 12:27:14','','0000-00-00 00:00:00'),(445,0,4344,'CO-MOR','GERD ?','drjayant','2025-12-17 12:27:22','','0000-00-00 00:00:00'),(446,0,4334,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-17 12:34:27','','0000-00-00 00:00:00'),(447,0,4347,'CO-MOR','RECUREENT SVT','drarchit','2025-12-17 12:47:33','','0000-00-00 00:00:00'),(448,0,4347,'CO-MOR','HT','drarchit','2025-12-17 12:47:40','','0000-00-00 00:00:00'),(449,0,4345,'CO-MOR','TOBACCO CHEWER','drjayant','2025-12-17 18:15:43','','0000-00-00 00:00:00'),(450,0,4354,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-12-17 18:19:17','','0000-00-00 00:00:00'),(451,0,4354,'CO-MOR','BPH','drjayant','2025-12-17 18:19:24','','0000-00-00 00:00:00'),(452,0,4353,'CO-MOR','DM, HT ,CAD','drarchit','2025-12-17 18:26:12','','0000-00-00 00:00:00'),(453,0,4365,'CO-MOR','IHD, POST CABG','drjayant','2025-12-17 18:26:36','','0000-00-00 00:00:00'),(454,0,4365,'CO-MOR','DM','drjayant','2025-12-17 18:26:42','','0000-00-00 00:00:00'),(455,0,4365,'CO-MOR','BPH','drjayant','2025-12-17 18:29:44','','0000-00-00 00:00:00'),(456,0,4356,'CO-MOR','DM, DCM, EARLY CKD, HYPERICEMIA, BPH','drarchit','2025-12-17 18:32:38','','0000-00-00 00:00:00'),(457,0,4380,'CO-MOR','NAD','drjayant','2025-12-17 19:37:47','','0000-00-00 00:00:00'),(458,0,4380,'CO-MOR','IHD','drjayant','2025-12-17 19:39:00','','0000-00-00 00:00:00'),(459,0,4381,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-12-17 19:50:59','','0000-00-00 00:00:00'),(460,0,4381,'CO-MOR','IHD','drjayant','2025-12-17 19:51:09','','0000-00-00 00:00:00'),(461,0,4381,'CO-MOR','RECUREENT SVT','drjayant','2025-12-17 19:51:14','','0000-00-00 00:00:00'),(462,0,4394,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-18 11:21:07','','0000-00-00 00:00:00'),(463,0,4403,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-12-18 11:25:09','','0000-00-00 00:00:00'),(464,0,4403,'CO-MOR','HYPOTHYROIDISM','drjayant','2025-12-18 11:28:31','','0000-00-00 00:00:00'),(465,0,4394,'CO-MOR','CKD','drjayant','2025-12-18 12:26:03','','0000-00-00 00:00:00'),(466,0,4413,'CO-MOR','DM, CVA','drjayant','2025-12-18 12:34:16','','0000-00-00 00:00:00'),(467,0,4416,'CO-MOR','POLYCYTHEMIA VERA','drjayant','2025-12-18 12:42:43','','0000-00-00 00:00:00'),(468,0,3345,'CO-MOR','DM, ON INSULIN','drjayant','2025-12-18 18:17:17','','0000-00-00 00:00:00'),(469,0,4434,'CO-MOR','HT','drjayant','2025-12-18 18:31:41','','0000-00-00 00:00:00'),(470,0,4435,'CO-MOR','OBESITY, HT, DM','drjayant','2025-12-18 18:36:48','','0000-00-00 00:00:00'),(471,0,4435,'CO-MOR','OBE','drjayant','2025-12-18 18:36:54','','0000-00-00 00:00:00'),(472,0,4435,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-18 18:38:50','','0000-00-00 00:00:00'),(473,0,4436,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-18 18:44:04','','0000-00-00 00:00:00'),(474,0,4436,'CO-MOR','1 ST TIME DETACTED','drjayant','2025-12-18 18:44:24','','0000-00-00 00:00:00'),(475,0,4436,'CO-MOR','HT','drjayant','2025-12-18 18:44:51','','0000-00-00 00:00:00'),(476,0,4437,'CO-MOR','HT','drjayant','2025-12-18 18:50:36','','0000-00-00 00:00:00'),(477,0,4437,'CO-MOR','OPERATED BREAST CA','drjayant','2025-12-18 18:50:45','','0000-00-00 00:00:00'),(478,0,4437,'CO-MOR','DM ON AYURVEDIC TX','drjayant','2025-12-18 18:51:01','','0000-00-00 00:00:00'),(479,0,4437,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-18 18:53:04','','0000-00-00 00:00:00'),(480,0,4434,'CO-MOR','DM, DYSLIPIDEMIA ( 1ST TIME DE','drjayant','2025-12-19 11:25:53','','0000-00-00 00:00:00'),(481,0,4434,'CO-MOR','BPH ( 1ST TIME DETECTED )','drjayant','2025-12-19 11:29:36','','0000-00-00 00:00:00'),(482,0,4436,'CO-MOR','PRE DM','drjayant','2025-12-19 11:33:35','','0000-00-00 00:00:00'),(483,0,4461,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-12-19 11:42:53','','0000-00-00 00:00:00'),(484,0,4461,'CO-MOR','DEPRESSION','drjayant','2025-12-19 11:43:05','','0000-00-00 00:00:00'),(485,0,4470,'CO-MOR','OBESITY, HT, HYPOTHYROIDISM','drjayant','2025-12-19 11:50:46','','0000-00-00 00:00:00'),(486,0,9,'CO-MOR','HT, ACID PEPTIC DX','drjayant','2025-12-19 11:53:28','','0000-00-00 00:00:00'),(487,0,9,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-19 12:00:44','','0000-00-00 00:00:00'),(488,0,4489,'CO-MOR','CH SMOKER','drjayant','2025-12-19 12:57:13','','0000-00-00 00:00:00'),(489,0,4510,'CO-MOR','HYPERTHYROIDISM','drarchit','2025-12-19 19:15:31','','0000-00-00 00:00:00'),(490,0,4523,'CO-MOR','DM, DYSLIPIDEMIA','drjayant','2025-12-20 11:32:06','','0000-00-00 00:00:00'),(491,0,4530,'CO-MOR','K/C/O SCIZOPHRENIA','drarchit','2025-12-20 12:14:41','','0000-00-00 00:00:00'),(492,0,4534,'CO-MOR','OBESITY, HT, HYPOTHYROIDISM','drjayant','2025-12-20 12:43:35','','0000-00-00 00:00:00'),(493,0,4534,'CO-MOR','LUMBUR DISC DX','drjayant','2025-12-20 12:43:52','','0000-00-00 00:00:00'),(494,0,4534,'CO-MOR','BILAT OA KNEE','drjayant','2025-12-20 12:44:06','','0000-00-00 00:00:00'),(495,0,4534,'CO-MOR','HYPERURICEMIA','drjayant','2025-12-20 12:44:14','','0000-00-00 00:00:00'),(496,0,4571,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-12-22 11:18:52','','0000-00-00 00:00:00'),(497,0,4587,'CO-MOR','CHRONIC ALCOHOLIC HEPATITS','drarchit','2025-12-22 11:49:32','','0000-00-00 00:00:00'),(498,0,4552,'CO-MOR','DYSLIPIDEMIA','drjayant','2025-12-22 11:55:27','','0000-00-00 00:00:00'),(499,0,4552,'CO-MOR','BPH','drjayant','2025-12-22 11:55:30','','0000-00-00 00:00:00'),(500,0,3824,'CO-MOR','HT, DM, HYPOTHYROIDISM','drjayant','2025-12-22 12:07:14','','0000-00-00 00:00:00'),(501,0,4571,'CO-MOR','PRE DM','drjayant','2025-12-22 13:19:33','','0000-00-00 00:00:00'),(502,0,4619,'CO-MOR','OBESITY, DM','drjayant','2025-12-22 18:24:32','','0000-00-00 00:00:00'),(503,0,4624,'CO-MOR','HYPERSENSITIVITY PNEUMONITIS','drjayant','2025-12-22 18:42:41','','0000-00-00 00:00:00'),(504,0,4575,'CO-MOR','HYPERTHYRODISM','drarchit','2025-12-22 18:46:59','','0000-00-00 00:00:00'),(505,0,4636,'CO-MOR','HYPOTHYRODISM, DM','drarchit','2025-12-22 19:28:20','','0000-00-00 00:00:00'),(506,0,1439,'CO-MOR','P','drjayant','2025-12-22 19:32:07','','0000-00-00 00:00:00'),(507,0,1439,'CO-MOR','PULMO','drjayant','2025-12-22 19:32:15','','0000-00-00 00:00:00'),(508,0,4654,'CO-MOR','HT, HYPOTHYROIDISM, DYSLIPIDEM','drjayant','2025-12-23 11:11:52','','0000-00-00 00:00:00'),(509,0,4654,'CO-MOR','CH TCP','drjayant','2025-12-23 11:14:37','','0000-00-00 00:00:00'),(510,0,4664,'CO-MOR','DM, CAD , LVEF -25%, CA BUCCAL MUCOSA MARCH 2025','drarchit','2025-12-23 11:25:55','','0000-00-00 00:00:00'),(511,0,4663,'CO-MOR','HT, DYSLIPIDEMIA','drjayant','2025-12-23 11:27:29','','0000-00-00 00:00:00'),(512,0,4663,'CO-MOR','LUMBUR DISC DX','drjayant','2025-12-23 11:27:35','','0000-00-00 00:00:00'),(513,0,4662,'CO-MOR','OBESITY, HT, DM, DYSLIPIDEMIA','drjayant','2025-12-23 11:28:01','','0000-00-00 00:00:00'),(514,0,4657,'CO-MOR','CAD WITH BPH','drarchit','2025-12-23 11:50:39','','0000-00-00 00:00:00'),(515,0,4668,'CO-MOR','CAD WITH BPH','drarchit','2025-12-23 11:54:50','','0000-00-00 00:00:00'),(516,0,4651,'CO-MOR','HT, DM, BPH','drarchit','2025-12-23 12:12:36','','0000-00-00 00:00:00'),(517,0,4677,'CO-MOR','DM CAD , LAPCHOLYCYSTECTOMY','drarchit','2025-12-23 12:16:37','','0000-00-00 00:00:00'),(518,0,4673,'CO-MOR','HT, DM, DYSLIPIDEMIA','drjayant','2025-12-23 12:42:33','','0000-00-00 00:00:00'),(519,0,4671,'CO-MOR','HT ,','drarchit','2025-12-23 12:56:55','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `pc_comorbidity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pc_dca_sch_case`
--

DROP TABLE IF EXISTS `pc_dca_sch_case`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pc_dca_sch_case` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `case_id` bigint(20) NOT NULL,
  `schedule_id` int(11) NOT NULL,
  `sch_from` int(11) NOT NULL,
  `sch_to` int(11) NOT NULL,
  `sch_duration_in` varchar(6) NOT NULL,
  `sch_action` varchar(40) NOT NULL,
  `action_date` date NOT NULL,
  `action_remark` varchar(40) NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`patient_id`,`case_id`,`schedule_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pc_dca_sch_case`
--

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

--
-- Table structure for table `pc_dca_sch_mst`
--

DROP TABLE IF EXISTS `pc_dca_sch_mst`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pc_dca_sch_mst` (
  `schedule_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `dept_id` varchar(4) NOT NULL,
  `profile` varchar(6) NOT NULL,
  `sch_from` int(11) NOT NULL,
  `sch_to` int(11) NOT NULL,
  `sch_duration` varchar(6) NOT NULL COMMENT 'day,week,month',
  `sch_action` varchar(40) NOT NULL,
  PRIMARY KEY (`schedule_id`)
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pc_dca_sch_mst`
--

LOCK TABLES `pc_dca_sch_mst` WRITE;
/*!40000 ALTER TABLE `pc_dca_sch_mst` DISABLE KEYS */;
INSERT INTO `pc_dca_sch_mst` VALUES (1,0,0,'D04','ANC',5,10,'Weeks','To Confirm Pregnancy'),(2,0,0,'D04','ANC',5,10,'Weeks','To Confirm Viablity'),(3,0,0,'D04','ANC',12,14,'Weeks','USG'),(4,0,0,'D04','ANC',12,14,'Weeks','Double Marker'),(5,0,0,'D04','ANC',12,14,'Weeks','ANC Profile'),(6,0,0,'D04','ANC',12,14,'Weeks','S.TSH, Free T3, Free T4'),(7,0,0,'D04','ANC',12,14,'Weeks','1st T.T. Inj.'),(8,0,0,'D04','ANC',18,20,'Weeks','2nd T.T. Inj.'),(9,0,0,'D04','ANC',18,20,'Weeks','Anomaly Scan'),(10,0,0,'D04','ANC',18,20,'Weeks','GTT'),(11,0,0,'D04','ANC',18,20,'Weeks','Triple Marker'),(12,0,0,'D04','ANC',18,20,'Weeks','Stem Cell Counseling'),(13,0,0,'D04','ANC',28,32,'Weeks','Growth Scan'),(14,0,0,'D04','ANC',28,32,'Weeks','Maternal & foetal'),(15,0,0,'D04','ANC',28,32,'Weeks','Monitoring'),(16,0,0,'D04','ANC',34,0,'Weeks','Doppler'),(17,0,0,'D04','ANC',36,0,'Weeks','Foetal Monitoring'),(18,0,0,'D04','ANC',36,0,'Weeks','Breast Examination'),(19,0,0,'D04','ANC',37,38,'Weeks','Explain about Labour Sings'),(20,0,0,'D04','ANC',37,38,'Weeks','Psychological Reassurance'),(21,0,0,'D04','ANC',40,0,'Weeks','Explain about foetal Monitoring'),(22,0,0,'D04','ANC',40,0,'Weeks','Induction of Labour'),(23,0,0,'D04','ANC',40,0,'Weeks','Augmentation of Labour'),(24,0,0,'D05','PED1',0,0,'Days','Hep B Birth dose'),(25,0,0,'D05','PED1',120,0,'Months','TT1'),(26,0,0,'D05','PED1',60,72,'Months','DPT 2nd Booster'),(27,0,0,'D05','PED1',16,24,'Months','JE Vaccine-2 '),(28,0,0,'D05','PED1',16,24,'Months','DPT 1st Booster'),(29,0,0,'D05','PED1',16,24,'Months','OPV Booster'),(30,0,0,'D05','PED1',16,24,'Months','MMR-1'),(31,0,0,'D05','PED1',9,0,'Months','JE Vaccine-1'),(32,0,0,'D05','PED1',9,0,'Months','MMR-1, /MR/Measels'),(33,0,0,'D05','PED1',14,0,'Weeks','IPV'),(34,0,0,'D05','PED1',14,0,'Weeks','Penta3(DPT+HepB+HiB)'),(35,0,0,'D05','PED1',14,0,'Weeks','OPV3'),(36,0,0,'D05','PED1',10,0,'Weeks','Penta2(DPT+HepB+HiB)'),(37,0,0,'D05','PED1',10,0,'Weeks','OPV2'),(38,0,0,'D05','PED1',6,0,'Weeks','Penta1(DPT+HepB+HiB)'),(39,0,0,'D05','PED1',6,0,'Weeks','OPV1'),(40,0,0,'D05','PED1',192,0,'Months','TT2');
/*!40000 ALTER TABLE `pc_dca_sch_mst` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pc_enc_dtl`
--

DROP TABLE IF EXISTS `pc_enc_dtl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pc_enc_dtl` (
  `ED_Seq_No` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `ED_Patient_ID` int(11) NOT NULL,
  `ED_Case_ID` bigint(20) NOT NULL,
  `ED_Encounter_ID` int(11) NOT NULL,
  `ED_Followup_No` smallint(6) NOT NULL,
  `ED_Doctor_ID` int(11) NOT NULL,
  `ED_role_holder_id` varchar(50) DEFAULT NULL,
  `ED_Profile_Code` varchar(6) NOT NULL,
  `ED_Grp` varchar(30) NOT NULL,
  `ED_Sub_Grp` varchar(50) NOT NULL,
  `ED_Sub_Sub_Grp` varchar(50) NOT NULL,
  `ED_Sub_Val1` text CHARACTER SET utf8 NOT NULL,
  `ED_Sub_Val2` varchar(100) CHARACTER SET utf8 NOT NULL,
  `ED_Mast_Seq` varchar(6) NOT NULL,
  `ED_Shift_id` int(11) NOT NULL,
  `ED_Note_datetime` datetime NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`ED_Seq_No`)
) ENGINE=InnoDB AUTO_INCREMENT=11891 DEFAULT CHARSET=latin1 COMMENT='patient care encounter detail table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pc_enc_dtl`
--

LOCK TABLES `pc_enc_dtl` WRITE;
/*!40000 ALTER TABLE `pc_enc_dtl` DISABLE KEYS */;
INSERT INTO `pc_enc_dtl` VALUES (1,0,0,3,2,3,0,0,NULL,'','PLAN','ZZZ','Remark','5','','',0,'0000-00-00 00:00:00','thims','2024-05-08 16:38:19','','0000-00-00 00:00:00'),(2,0,0,4,4,4,0,0,NULL,'','CC','ZZZ','Remark','URTI | 3 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-08 11:18:51','','0000-00-00 00:00:00'),(3,0,0,28,2,28,0,0,NULL,'','DISCDIAG','','','<P><STRONG>? SEIUZURE&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>URINARY TRACT INFECTION WITH SEPTIC SHOCK</STRONG></P>\r\n\r\n<P><STRONG>K/C/O DM;HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 11:22:39','mo','2025-10-10 11:14:58'),(4,0,0,28,2,28,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>DM;HTN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 11:22:39','mo','2025-10-10 11:14:58'),(5,0,0,13,13,13,0,0,NULL,'','HIST','ZZZ','Remark','<p>fofllow u pcase----bettter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 11:27:07','','0000-00-00 00:00:00'),(6,0,0,10,10,10,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 11:28:31','','0000-00-00 00:00:00'),(7,0,0,37,4,37,0,0,NULL,'','DISCDIAG','','','<P><STRONG>AGE</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 11:38:39','mo','2025-10-08 12:00:00'),(8,0,0,37,4,37,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 33 YEARS OLD MALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:STOMATITIS BEFORE 12-15 DAYS&nbsp;<BR />\r\nC/O:DIFFUSE ABDOMINAL PAIN&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FEVER WITH CHILL</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;WATERY DIARRHOEA(5-6 TIMES/DAY)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA &AMP; VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;MILD BURNING MICTURITION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 4-5 DAYS FOR THAT PATIENT PRIMARY CONSULTED TO GENERAL PRACTITIONER AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN &AMP; PELVIS DONE ON 16/10/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>URINE R/M DONE ON 6/10/2025 WHICH S/O: NAD&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-89/MIN, BP-106/70MMHG, SPO2-97% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 11:38:39','mo','2025-10-08 12:00:00'),(9,0,0,37,4,37,0,0,NULL,'','CONDONADDMISSION','','','<P>WEAKNESS</P>\r\n\r\n<P>DIARRHOEA</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 11:38:39','mo','2025-10-08 12:00:00'),(10,0,0,37,4,37,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 11:38:39','mo','2025-10-08 12:00:00'),(11,0,0,37,4,37,0,0,NULL,'','ADVICE','','','<P>TAKE LIGHT DIET&nbsp;</P>\r\n\r\n<P>AVOID OILY/FATTY FOOD</P>\r\n\r\n<P>FOLLOW AFTER 5 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 11:38:39','mo','2025-10-08 12:00:00'),(12,0,0,37,4,37,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>TAB RIFAGUT</P>\r\n\r\n<P>TAB SPORLAC</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n\r\n<P>INJ ELDERVIT&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 11:38:39','mo','2025-10-08 12:00:00'),(13,0,0,8,8,8,0,0,NULL,'','MADVICE','ZZZ','Remark','SEND FOR MRI','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-08 11:41:38','','0000-00-00 00:00:00'),(14,0,0,37,4,37,0,0,NULL,'','TREATDISC_TI','','','<P>INJ LACTAGARD 1.5GM/DILUTED&nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; 9AM--9PM&nbsp; &nbsp; &nbsp; &nbsp;.......3 DAYS (7 INJ)&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 11:43:45','mo','2025-10-08 12:00:00'),(15,0,0,6,6,6,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 11:44:50','','0000-00-00 00:00:00'),(16,0,0,37,4,37,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY - NO ANY HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY- NO ANY HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 11:45:28','mo','2025-10-08 12:00:00'),(17,0,0,39,35,39,0,0,NULL,'','DIAG','ZZZ','Remark','RT SIDE DUCT ECTASIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-08 11:48:29','','0000-00-00 00:00:00'),(18,0,0,18,18,18,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 12:05:56','','0000-00-00 00:00:00'),(19,0,0,32,30,32,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 12:15:33','','0000-00-00 00:00:00'),(20,0,0,33,31,33,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 12:17:38','','0000-00-00 00:00:00'),(21,0,0,19,19,19,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 12:20:31','','0000-00-00 00:00:00'),(22,0,0,15,15,15,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 12:23:34','','0000-00-00 00:00:00'),(23,0,0,26,25,26,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 12:26:57','','0000-00-00 00:00:00'),(24,0,0,29,27,29,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 12:40:33','','0000-00-00 00:00:00'),(25,0,0,30,28,30,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 12:44:47','','0000-00-00 00:00:00'),(26,0,0,65,55,65,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 12:47:48','','0000-00-00 00:00:00'),(27,0,0,55,49,55,0,0,NULL,'','HIST','ZZZ','Remark','<p>doe</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 12:51:29','','0000-00-00 00:00:00'),(28,0,0,31,29,31,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 12:56:18','','0000-00-00 00:00:00'),(29,0,0,40,36,40,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 13:00:01','','0000-00-00 00:00:00'),(30,0,0,42,38,42,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 13:12:32','','0000-00-00 00:00:00'),(31,0,0,46,42,46,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 13:22:14','','0000-00-00 00:00:00'),(32,0,0,58,51,58,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 13:34:09','','0000-00-00 00:00:00'),(33,0,0,76,65,76,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 14:05:57','darshan','2025-10-08 14:12:42'),(34,0,0,79,68,79,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 14:26:55','','0000-00-00 00:00:00'),(35,0,0,76,65,76,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 14:51:11','','0000-00-00 00:00:00'),(36,0,0,83,72,83,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 17:08:40','','0000-00-00 00:00:00'),(37,0,0,84,73,84,0,0,NULL,'','HIST','ZZZ','Remark','<p>attemded</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 17:09:26','','0000-00-00 00:00:00'),(38,0,0,85,74,85,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 17:12:26','','0000-00-00 00:00:00'),(39,0,0,86,75,86,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 17:13:11','','0000-00-00 00:00:00'),(41,0,0,68,57,68,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-08 17:19:09','','0000-00-00 00:00:00'),(42,0,0,68,57,68,0,0,NULL,'','DIAG','ZZZ','Remark','IHD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-08 17:19:14','','0000-00-00 00:00:00'),(43,0,0,97,86,97,0,0,NULL,'','DIAG','ZZZ','Remark','GERD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-08 17:23:28','','0000-00-00 00:00:00'),(44,0,0,87,76,87,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 17:23:59','','0000-00-00 00:00:00'),(45,0,0,88,77,88,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 17:28:02','','0000-00-00 00:00:00'),(46,0,0,89,78,89,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 17:32:28','','0000-00-00 00:00:00'),(47,0,0,90,79,90,0,0,NULL,'','HIST','ZZZ','Remark','<p>dome</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 17:36:27','','0000-00-00 00:00:00'),(48,0,0,92,81,92,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 17:41:30','darshan','2025-10-08 17:41:37'),(49,0,0,91,80,91,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 17:46:11','','0000-00-00 00:00:00'),(50,0,0,93,82,93,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 17:50:33','','0000-00-00 00:00:00'),(51,0,0,95,84,95,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 17:56:19','','0000-00-00 00:00:00'),(52,0,0,111,100,111,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','drjayant','2025-10-08 18:11:28','','0000-00-00 00:00:00'),(53,0,0,117,106,117,0,0,NULL,'','CC','ZZZ','Remark','URTI | 3 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-08 18:14:21','','0000-00-00 00:00:00'),(54,0,0,117,106,117,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-08 18:14:23','drjayant','2025-10-08 18:14:31'),(55,0,0,108,97,108,0,0,NULL,'','HIST','ZZZ','Remark','<p>dome</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 18:14:33','','0000-00-00 00:00:00'),(56,0,0,107,96,107,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 18:18:43','','0000-00-00 00:00:00'),(57,0,0,94,83,94,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 18:21:06','','0000-00-00 00:00:00'),(58,0,0,110,99,110,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 18:37:37','','0000-00-00 00:00:00'),(59,0,0,116,105,116,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ACL TEAR ?','','',0,'0000-00-00 00:00:00','drsagar','2025-10-08 18:45:27','','0000-00-00 00:00:00'),(60,0,0,98,87,98,0,0,NULL,'','DIAG','ZZZ','Remark','LIPOMA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-08 19:04:40','','0000-00-00 00:00:00'),(61,0,0,142,131,142,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-08 19:06:13','','0000-00-00 00:00:00'),(62,0,0,131,120,131,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 19:08:11','','0000-00-00 00:00:00'),(63,0,0,101,90,101,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 19:17:13','','0000-00-00 00:00:00'),(64,0,0,102,91,102,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 19:20:20','','0000-00-00 00:00:00'),(65,0,0,149,138,149,0,0,NULL,'','CC','ZZZ','Remark','URTI ? | 10 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-08 19:28:18','','0000-00-00 00:00:00'),(66,0,0,149,138,149,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-08 19:28:22','','0000-00-00 00:00:00'),(67,0,0,103,92,103,0,0,NULL,'','HIST','ZZZ','Remark','<p>donee</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 19:30:59','','0000-00-00 00:00:00'),(68,0,0,125,114,125,0,0,NULL,'','DIAG','ZZZ','Remark','LT DM FOOT','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-08 19:36:18','','0000-00-00 00:00:00'),(69,0,0,125,114,125,0,0,NULL,'','DIAG','ZZZ','Remark','DM','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-08 19:36:20','','0000-00-00 00:00:00'),(70,0,0,105,94,105,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 19:49:23','','0000-00-00 00:00:00'),(71,0,0,104,93,104,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 19:50:09','','0000-00-00 00:00:00'),(72,0,0,133,122,133,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 20:07:28','','0000-00-00 00:00:00'),(73,0,0,123,112,123,0,0,NULL,'','HIST','ZZZ','Remark','<p>dome</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-08 20:29:01','','0000-00-00 00:00:00'),(74,0,0,60,8,60,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ENTERIC FEVER</STRONG></P>\r\n\r\n<P><STRONG>UTI</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: CKD,HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:22:08','mo','2025-10-10 13:10:13'),(75,0,0,60,8,60,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:22:08','mo','2025-10-10 13:10:13'),(76,0,0,60,8,60,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 52 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: CKD,HTN<BR />\r\nC/O:FEVER WITH CHILL</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DIFFUSE ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;BURNING MICTURITION</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 10-15 DAYS FOR THAT PATIENT PRIMARY CONSULTED AT OPD BASE AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>URINE R/M DONE ON 29/9/2025 WHICH S/O: 50-60 PUS CELL, 2-3 RBC,FEW BACTERIA DETECTED&nbsp;</P>\r\n\r\n<P>TYPHI DOT DONE ON 29/09/2025 WHICH S/O: WEAK POSITIVE</P>\r\n\r\n<P>URINE R/M DONE ON 2/10/2025 WHICH S/O: NAD</P>\r\n\r\n<P>URINE R/M DONE ON 6/10/2025 WHICH S/O: NO ANY GROWTH&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-121/MIN, BP-140/80MMHG, SPO2-97% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\nDAILY REFERENCE OF DR.DENISH SAVALIYA (NEPHROLOGIST) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>USG ABDOMEN DONE ON 7/10/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>URINE C/S SENT ON 6/10/2025 WHICH S/O: NO GROWTH&nbsp;</P>\r\n\r\n<P>BLOOD C/S SENT ON 6/10/2025 WHICH S/O: NO ANY GROWTH&nbsp;</P>\r\n\r\n<P>IN VIEW OF PERSISTENT HIGH GRADE FEVER REFERENCE OF DR.AKASH DOSHI(ID SPECIALIST) DONE ON 8/10/2025 AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>CHEST X-RAY DONE ON 8/10/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>BRUCELLA DONE ON 9/10/2025 WHICH S/O:NEGATIVE&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT GENERAL CONDITION AND PROGNOSIS EXPLAINED TO PATIENT AND RELATIVE BUT THET WANT DISCHARGE AGAINST MEDICAL ADVICE SO NOW PATIENT BEING DAMA&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:22:08','mo','2025-10-10 13:10:13'),(77,0,0,60,8,60,0,0,NULL,'','CONDONADDMISSION','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:22:08','mo','2025-10-10 13:10:13'),(78,0,0,60,8,60,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ GUFIMER&nbsp; 1GM /100ML NS&nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp;TDS&nbsp; (DAY-5)</P>\r\n\r\n<P>TAB ZIFI CV 200MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;1--0--1 DAY-8</P>\r\n\r\n<P>TAB EZITHRO 500MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;0--1--0&nbsp; FOR 7 DAYS GIVEN</P>\r\n\r\n<P>CAP PANTODAC DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; 1--0--0</P>\r\n\r\n<P>TAB LANOL ER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; 1--0--1</P>\r\n\r\n<P>TAB NICARDIA XL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; 1--0--1</P>\r\n\r\n<P>TAB ARKASHINE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;1--0--1</P>\r\n\r\n<P>TAB PRAZOSAFE XL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1</P>\r\n\r\n<P>TAB SOBISIS FORTE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--1--1</P>\r\n\r\n<P>TAB KETOADD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--1--1</P>\r\n\r\n<P>TAB LANUM ( 667)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1</P>\r\n\r\n<P>TAB SILOCAP(8MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp;</P>\r\n\r\n<P>INJ VITNEURIN</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:22:08','mo','2025-10-10 13:10:13'),(79,0,0,34,3,34,0,0,NULL,'','DISCDIAG','','','<P>RIGHT FEET CELLULITIS WITH SEPSIS WITH KLEBSIELLA BACTERIA&nbsp;</P>\r\n\r\n<P>K/C/O: HTN,DM II,DYSLIPIDEMIA,IHD ,VITILIGO</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:39:33','mo','2025-10-09 12:29:35'),(80,0,0,34,3,34,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY: NAD</STRONG><BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY:</STRONG>K/C/O: HTN,DM II,DYSLIPIDEMIA,IHD ,VITILIGO</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:39:33','mo','2025-10-09 12:29:35'),(81,0,0,34,3,34,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 80 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN,DM II,DYSLIPIDEMIA,IHD ,VITILIGO<BR />\r\nH/O:LEFT LEG CELLULITIS BEFORE 1 YEAR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FALL DOWN AT HOME DUE TO SLIPPED BEFORE 10 DAYS F&#39;BY<BR />\r\nC/O:RIGHT L/L SWELLING ,REDNESS,PUS DISCHARGE ,PAIN&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;RIGHT U/L INJURY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FEVER WITH CHILL</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DECREASE URINE OUTPUT&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;CHEST PAIN,GABHRAMAN,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DOE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;SEVERE GENERALISED WEAKNESS</P>\r\n\r\n<P>L/E: RIGHT L/L REDNESS,SWELLING&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; FOLEY&#39;S IN SITU (DAY-2,NO-14)&nbsp;</P>\r\n\r\n<P>ALL ABOVE ENTIONED COMPLAIN PRESENTED SINCE 7-8 DAYS FOR THAT PATIENT ADMITTED AT SHAKTI HOSPITAL PORBANDAR&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>BLOOD C/S DONE ON 28/09/2025 WHICH S/O: KLEIBSIELLA&nbsp;</P>\r\n\r\n<P>CT ABDOMEN DONE ON 1/10/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>FEVER PROFILE MP CARD,DENGUE CARD ,TYPHI DOT DONE ON 28/09/2025 WHICH S/O: -VE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-88/MIN, BP-130/90MMHG, SPO2-96% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>3/10/2025:</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF HYPOGLYCEMIA INJ D25% GIVEN</P>\r\n\r\n<P>REFERENCE OF DR PRATAP SINH DODIYA (GENERAL SURGEON) DONE AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>BOOD C/S 2 SET SENT..</P>\r\n\r\n<P>RIGHT LOWER LIMB COLOUR DOPPLER DONE REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>4/10/2025</P>\r\n\r\n<P>REVIEW OF DR PRATAPSINH DODIYA DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>DAILY DRESSING APPLIED WITH NEOSPORIN OINT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>5/10/2025</P>\r\n\r\n<P>BLOOD C/S INTRIM REPORT S/O NO ANY GROWTH&nbsp;</P>\r\n\r\n<P>CATHETER CLAMPING START</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>6/10/2025</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n\r\n<P>CONTINUE SAME RX</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>7/10/2025</P>\r\n\r\n<P>REVIEW OF DR PRATAPSINH DODIYA DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>DAILY DRESSING APPILED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>8/10/2025&nbsp;</P>\r\n\r\n<P>BLOOD C/S S/O: NO ANY GROWTH&nbsp;</P>\r\n\r\n<P>IMPROVE GENERALISED CONDITION</P>\r\n\r\n<P>CATHER CLAMP AND REMOVE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>9/10/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:39:33','mo','2025-10-09 12:29:35'),(82,0,0,34,3,34,0,0,NULL,'','CONDONADDMISSION','','','<P>FEVER WITH CHILL</P>\r\n\r\n<P>SEVERE GENERALISED WEAKNESS</P>\r\n\r\n<P>RIGHT L/L SWELLING REDNESS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:39:33','mo','2025-10-09 12:29:35'),(83,0,0,34,3,34,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MERO</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ LINOX</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ MIKACIN</P>\r\n\r\n<P>CAP DOXY</P>\r\n\r\n<P>TAB LINOX</P>\r\n\r\n<P>TAB CHYMORAL FORTE</P>\r\n\r\n<P>TAB ZERODOL SP</P>\r\n\r\n<P>TAB OMNACORTIL</P>\r\n\r\n<P>TAB METRO ER</P>\r\n\r\n<P>TAB NEXPROFAST</P>\r\n\r\n<P>NEOSPORIN OINTMENT&nbsp;</P>\r\n\r\n<P>TAB RUTORIS&nbsp;</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:39:33','mo','2025-10-09 12:29:35'),(84,0,0,62,9,62,0,0,NULL,'','DISCDIAG','','','<P>LEFT UPPER COMMUNITY ACQUIRED PNEUMONIA&nbsp;</P>\r\n\r\n<P>K/C/O: HYPOTHYROIDISM&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:47:06','mo','2025-10-10 12:26:15'),(85,0,0,62,9,62,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:47:06','mo','2025-10-10 12:26:15'),(86,0,0,62,9,62,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 29 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HYPOTHYROIDISM</P>\r\n\r\n<P>H/O: LSCS BEFORE 6 MONTH (LACTATING MOTHER)<BR />\r\nC/O:FEVER WITH CHILL</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DRY COUGHING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;EARACHE</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 4-5 DAYS FOR THAT PATIENT PRIMARY CONSULTED AT GENERAL PRACTITIONER AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>CHEST X-RAY DONE ON 6/10/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-78/MIN, BP-124/80MMHG, SPO2-97% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>HRCT THORAX DONE ON 7/10/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:47:06','mo','2025-10-10 12:26:15'),(87,0,0,62,9,62,0,0,NULL,'','CONDONADDMISSION','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:47:06','mo','2025-10-10 12:26:15'),(88,0,0,62,9,62,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>INJ UNITREX-S</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n\r\n<P>CAP FLUVIR</P>\r\n\r\n<P>INJ AMIKACIN</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>TAB CETZINE COLD</P>\r\n\r\n<P>SYP KOLTUS C</P>\r\n\r\n<P>NEB DUOLIN /BUDECORT</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>TAB PROZIL MD&nbsp;</P>\r\n\r\n<P>TAB ETOLOK</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:47:06','mo','2025-10-10 12:26:15'),(89,0,0,66,11,66,0,0,NULL,'','DISCDIAG','','','<P><STRONG>BLEEDING HEMORROIDS WITH</STRONG></P>\r\n\r\n<P><STRONG>SEVERE ANEMIA WITH</STRONG></P>\r\n\r\n<P><STRONG>(?) DUODENAL NODULE (?) NET</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:56:03','mo','2025-10-13 11:31:47'),(90,0,0,66,11,66,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:56:03','mo','2025-10-13 11:31:47'),(91,0,0,66,11,66,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 67 YEARS OLD MALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:NAD<BR />\r\nC/O:DOE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;SEVERE&nbsp; BREATHLESSNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GABHRAMAN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FATIGUE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;BLEEDING P/R</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;CONSTIPATION</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 20-25 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-90/MIN, BP-140/90MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>8/10/2025</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>S.VIT B12 DONE WHICH S/O: &GT;1500 PG/ML</P>\r\n\r\n<P>S.VIT D DONE WHICH S/O: 48.7 NG/ML</P>\r\n\r\n<P>S.FERRITIN DONE WHICH S/O: 18.1 NG/ML</P>\r\n\r\n<P>USG ABDOMEN DONE REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>IN VIEW OF LOW HB 2 UNIT LR RCC GIVEN&nbsp;</P>\r\n\r\n<P>IN VIEW OF P/R BLEEDING REFERENCE OF DR.PRATAPSINH DODIYA DONE AND ADVICE FOR COLONOSCOPY&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>9/10/2025</P>\r\n\r\n<P>COLONOSCOPY AND UGISCOPY DONE AT STERLING HOSPITAL BY DR RISHIKESH KALARIA (GASTROLOGIST).</P>\r\n\r\n<P>STOOL OB DONE WHICH S/O: PRESENT (+++)</P>\r\n\r\n<P>IN VIEW OF LOW HB 1UNIT LR RCC GIVEN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10/10/2025</P>\r\n\r\n<P>CECT ABDOMEN WITH (IV + ORAL CONSTRAST) DONE&nbsp;</P>\r\n\r\n<P>INJ NEC FCM IN ICU UNDER OBSERVATION GIVEN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11/10/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:56:03','mo','2025-10-13 11:31:47'),(92,0,0,66,11,66,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAINT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:56:03','mo','2025-10-13 11:31:47'),(93,0,0,66,11,66,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ PANTODAC</P>\r\n\r\n<P>INJ LR RCC 3 UNIT</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>INJ DICLO</P>\r\n\r\n<P>TAB COSKLOT PULS</P>\r\n\r\n<P>TAB BANDY</P>\r\n\r\n<P>TAB TRICIUM HD</P>\r\n\r\n<P>TAB SITLOM FORTE</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp;</P>\r\n\r\n<P>LOX JELLY 2%</P>\r\n\r\n<P>SUCRAL ANO CREAM&nbsp;</P>\r\n\r\n<P>PEGLEG BOWEL PREP&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:56:03','mo','2025-10-13 11:31:47'),(94,0,0,56,7,56,0,0,NULL,'','DISCDIAG','','','<P>HAEMORRHAGIC ENETEROCOLITIS</P>\r\n\r\n<P>K/C/O: DM,HTN,DYSLIPIDEMIA</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:59:14','mo','2025-10-11 12:52:40'),(95,0,0,56,7,56,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:59:14','mo','2025-10-11 12:52:40'),(96,0,0,56,7,56,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 52 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM,HTN,DYSLIPIDEMIA<BR />\r\nC/O:DIARRHOEA (3-4 TIME/DAY)&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;VOMITING (6-7 TIME/DAY)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FEVER ON AND OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;EPIGASTRIC PAIN&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;HEADACHE</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 3 DAYS FOR THAT PATIENT PRIMARY CONSULTED TO GENERALPRACTITIONER AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-128/MIN, BP-108/60MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>STOOL R/M DONE ON 7/10/2025 WHICH S/O: OCCULT BLOOD -: ++++, 22-25 PUS CELL, 18-20 RBC,E-HISTOLYTICA&nbsp;</P>\r\n\r\n<P>HBA1C DONE ON 10/10/2025 WHICH S/O: 8.3%</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:59:14','mo','2025-10-11 12:52:40'),(97,0,0,56,7,56,0,0,NULL,'','CONDONADDMISSION','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:59:14','mo','2025-10-11 12:52:40'),(98,0,0,56,7,56,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ ECOTAZ</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>CAP ROTOGUT</P>\r\n\r\n<P>CAP ENUFF</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>INJ VITNEURIN</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-08 23:59:14','mo','2025-10-11 12:52:40'),(99,0,0,16,12,150,0,0,NULL,'','DISCDIAG','','','<P>SMALL BOWEL OBSTRUCTION</P>\r\n\r\n<P>K/C/O: DM,HTN(DRUG DEFAULTER)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 00:23:47','mo','2025-10-11 18:40:47'),(100,0,0,16,12,150,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY-</STRONG></P>\r\n\r\n<P><STRONG>- </STRONG>OPERATED FOR ACUTE SMALL BOWEL OBSTRUCTION DUE TO ADHESION IN 2021<BR />\r\n- APPENDICECTOMY BEFORE MANY YEAR<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY-</STRONG>HTN,DM&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 00:23:47','mo','2025-10-11 18:40:47'),(101,0,0,16,12,150,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 75 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM,HTN(DRUG DEFAULTER)<BR />\r\nH/O:OPERATED FOR ACUTE SMALL BOWEL OBSTRUCTION IN 2021</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;APPNDICECTOMY BEFORE MANY YEAR<BR />\r\nC/O:ABDOMINAL PAIN AND HEAVINESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA,VOMITING (1 EPISODE)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;COUGHING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 3-4 DAYS SO&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-62/MIN, BP-122/70MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>CT ABDOMEN WITH CONTRAST DONE ON 8/10/2025 WHICH S/O: SMALL BOWEL OBSTRUCTION</P>\r\n\r\n<P>IN VIEW OF SMALL BOWEL OBSTRUCTION REF OF DR PRATAPSINH DODIYA (GENERAL SURGEON) DONE AND FOLLOW HIS ALL ADVICE.</P>\r\n\r\n<P>X RAY ABDOMEN STANDING DONE ON 10/10/2025.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 00:23:47','mo','2025-10-11 18:40:47'),(102,0,0,16,12,150,0,0,NULL,'','CONDONADDMISSION','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-09 00:23:47','mo','2025-10-11 18:40:47'),(103,0,0,16,12,150,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX-S</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>SYP PEGCLEAR</P>\r\n\r\n<P>PC ENEMA</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 00:23:47','mo','2025-10-11 18:40:47'),(104,0,0,163,151,166,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 10:47:18','darshan','2025-10-09 13:09:28'),(105,0,0,159,148,161,0,0,NULL,'','HIST','ZZZ','Remark','<p>right nasal fb removed yellow gram removed unevenfully</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 10:48:04','','0000-00-00 00:00:00'),(106,0,0,169,156,172,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 11:05:34','','0000-00-00 00:00:00'),(107,0,0,170,157,173,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 11:10:41','','0000-00-00 00:00:00'),(108,0,0,173,160,176,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 11:16:00','','0000-00-00 00:00:00'),(109,0,0,174,161,177,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 11:31:22','','0000-00-00 00:00:00'),(110,0,0,177,164,180,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 11:32:28','darshan','2025-10-09 11:55:27'),(111,0,0,193,180,197,0,0,NULL,'','CC','ZZZ','Remark','FEVER INTERMITTENTLY +||','','',0,'0000-00-00 00:00:00','drjayant','2025-10-09 11:36:18','','0000-00-00 00:00:00'),(112,0,0,34,3,34,0,0,NULL,'','DISCCOND','','','<P>VITALLY STABLE</P>\r\n\r\n<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 12:02:41','mo','2025-10-09 12:29:35'),(113,0,0,34,3,34,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS.</P>\r\n\r\n<P>RIGHT LEG ELEVATION.</P>\r\n\r\n<P>HOLD ON MEDICINE.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 12:02:41','mo','2025-10-09 12:29:35'),(114,0,0,201,188,205,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 12:08:17','darshan','2025-10-09 12:08:28'),(115,0,0,180,167,183,0,0,NULL,'','DIAG','ZZZ','Remark','URTI','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-09 12:11:43','','0000-00-00 00:00:00'),(116,0,0,181,168,184,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 12:12:41','','0000-00-00 00:00:00'),(117,0,0,207,194,211,0,0,NULL,'','CC','ZZZ','Remark','ABD PAIN, DYSPEPSIA | 7 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-09 12:28:01','','0000-00-00 00:00:00'),(118,0,0,207,194,211,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-09 12:28:28','','0000-00-00 00:00:00'),(119,0,0,34,3,34,0,0,NULL,'','TREATDISC_TI','','','<P>CAP XOXE CV 250MG&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp;FOR 5 DAYS&nbsp; AFTER FOOD</P>\r\n\r\n<P>CAP ROSULESS A (75/10)&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;0-1-0&nbsp; &nbsp;FOR 5 DAYS&nbsp;&nbsp;AFTER FOOD</P>\r\n\r\n<P>TAB NEXPROFAST 40 MG&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1-0-0&nbsp; &nbsp;FOR 5 DAYS&nbsp;&nbsp;BEFOREFOOD</P>\r\n\r\n<P>TAB CHYMORAL FORTE&nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 1-1-1&nbsp; &nbsp;FOR 5 DAYS&nbsp; AFTER FOOD</P>\r\n\r\n<P>TAB RUTORIS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; FOR 5 DAYS&nbsp;&nbsp;AFTER FOOD</P>\r\n\r\n<P>TAB BISOBIS(5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 1-0-0&nbsp; &nbsp;FOR 5 DAYS&nbsp;&nbsp;AFTER FOOD</P>\r\n\r\n<P>TAB SIDIA (100)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-1-0&nbsp; FOR 5 DAYS BEFORE FOOD</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>NEOSPORIN OINTMENT&nbsp; &nbsp; L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;RIGHT LOWER LIMB OD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 12:28:39','mo','2025-10-09 12:29:35'),(120,0,0,183,170,186,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 12:33:24','','0000-00-00 00:00:00'),(121,0,0,184,171,187,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 12:36:34','','0000-00-00 00:00:00'),(122,0,0,190,177,194,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 12:41:09','','0000-00-00 00:00:00'),(123,0,0,192,179,196,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 12:43:48','','0000-00-00 00:00:00'),(124,0,0,206,193,210,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 12:46:52','','0000-00-00 00:00:00'),(125,0,0,21,1,21,0,0,NULL,'','DISCDIAG','','','<P>POSTERIOR CIRCULATORY STROKE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 13:07:15','mo','2025-10-09 13:21:12'),(126,0,0,21,1,21,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 13:07:15','mo','2025-10-09 13:21:12'),(127,0,0,21,1,21,0,0,NULL,'','HISTHOSPCOURSE','','','<P>HISTORY GIVEN BY PATIENT&#39;S RELATIVE.</P>\r\n\r\n<P>A 65 YEARS OLD MALE PATIENT P/W C/O GIDDINESS SINCE YESTERDAY EVENING,SLURRED SPEECH;GAIT IMBALANCE;DROWSINESS;LEFT SIDED WEAKNESS SINCE TODAY MORNING.</P>\r\n\r\n<P>SO,RELATIVE BROUGHT HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-97.6 F</P>\r\n\r\n<P>PR-48/MIN</P>\r\n\r\n<P>BP-110/60MMHG</P>\r\n\r\n<P>SPO2--94% ON RA</P>\r\n\r\n<P>RR-16/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C;RIGHT SIDED WEAKNESS +;SLURRED SPEECH+;E4V5M6</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-125MG/DL</P>\r\n\r\n<P>-WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04/10/25,</P>\r\n\r\n<P>-REQUIRED ALL BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>-MRI BRAIN DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>-NEUROPHYSICIAN DR.KAUMIL KOTHARI REFERENCE DONE.GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.FOLLOWED ALL HIS ADVICE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05/10/25,</P>\r\n\r\n<P>-PATIENT CONSCIOUS/ORIENTED,F/V/C,E4V5M6</P>\r\n\r\n<P>-REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>-2D ECHO DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>-REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>06/10/25,</P>\r\n\r\n<P>-B/L CAROTID DOPPLER DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>-NEUROPHYSICIAN REVIEW DONE.</P>\r\n\r\n<P>-PHYSITHERAPY STARTED.</P>\r\n\r\n<P>-FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>7/10/2025</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n\r\n<P>CONTINUE SAME RX</P>\r\n\r\n<P>PHYSIOTHERAPYB STARTED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>8/10/2025</P>\r\n\r\n<P>IMPROVE GENERALISED CONDITION</P>\r\n\r\n<P>PHYSIOTHERAPY CONTINUE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>9/10/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 13:07:15','mo','2025-10-09 13:21:12'),(128,0,0,209,196,213,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 13:11:00','','0000-00-00 00:00:00'),(129,0,0,209,196,213,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 13:15:27','','0000-00-00 00:00:00'),(130,0,0,21,1,21,0,0,NULL,'','CONDONADDMISSION','','','<P>WEAKNESS OF RIGHT SIDED EXTREMITES</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 13:21:10','mo','2025-10-09 13:21:12'),(131,0,0,21,1,21,0,0,NULL,'','DISCCOND','','','<P>IMPROVE CONDITION</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 13:21:10','mo','2025-10-09 13:21:12'),(132,0,0,21,1,21,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n\r\n<P>PHYSIOTHERAPY CONTINUE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 13:21:10','mo','2025-10-09 13:21:12'),(133,0,0,21,1,21,0,0,NULL,'','TREATGIVEN_TI','','','<P>TAB KRIRAB DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB ECOSPRIN (150MG)&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB LIPITAS (40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB LEVIPIL (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB CREMALAX (10MG)&nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 13:21:10','mo','2025-10-09 13:21:12'),(134,0,0,205,192,209,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 13:25:52','','0000-00-00 00:00:00'),(135,0,0,198,185,202,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 13:30:31','','0000-00-00 00:00:00'),(136,0,0,214,201,219,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 13:46:48','darshan','2025-10-09 14:31:41'),(137,0,0,202,189,206,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 14:01:25','','0000-00-00 00:00:00'),(138,0,0,202,189,206,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 14:01:30','','0000-00-00 00:00:00'),(139,0,0,217,204,222,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 14:05:43','','0000-00-00 00:00:00'),(140,0,0,182,169,185,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 14:28:17','','0000-00-00 00:00:00'),(141,0,0,218,205,223,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 14:36:28','','0000-00-00 00:00:00'),(142,0,0,162,13,165,0,0,NULL,'','DISCDIAG','','','<P><STRONG>RIGHT BREAST ABSCESS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 15:55:00','mo','2025-10-09 19:38:02'),(143,0,0,162,13,165,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY-LSCS BEFORE 9 YEAR</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY-NAD</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 15:55:00','mo','2025-10-09 19:38:02'),(144,0,0,162,13,165,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 35 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O: LSCS BEFORE 9 YEAR<BR />\r\nC/O: RIGHT BREAST PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-NO NIPPLE DISCHARGE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-NO FEVER</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-SWELLING</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 8-10 DAYS FOR THAT RPIMARY CONSULTED ON OPD BASE AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-60/MIN, BP-110/70MMHG, SPO2-98% ON RA, RR-21/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nINCISION &AMP; DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 09/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 15:55:00','mo','2025-10-09 19:38:02'),(145,0,0,162,13,165,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:INCISION &AMP; DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 09/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 15:55:00','mo','2025-10-09 19:38:02'),(146,0,0,162,13,165,0,0,NULL,'','OTNOTE','','','<p>-right breast abscess at 9 o&#39;clock position</p>\r\n\r\n<p>-incision kept periareolar area</p>\r\n\r\n<p>-multiloculated collection&nbsp;</p>\r\n\r\n<p>-whole pus drained</p>\r\n\r\n<p>-ductal ectasia -present</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-dressing kept</p>\r\n\r\n<p>-pus &amp; breast tissue sent for hpe</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 15:55:00','mo','2025-10-09 19:38:02'),(147,0,0,162,13,165,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 15:55:00','mo','2025-10-09 19:38:02'),(148,0,0,162,13,165,0,0,NULL,'','ADVICE','','','<P>-FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>-DAILY DRESSING</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>-REPORT AWAITED PUS CS &AMP; HPE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 15:55:00','mo','2025-10-09 19:38:02'),(149,0,0,162,13,165,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 15:55:00','mo','2025-10-09 19:38:02'),(150,0,0,162,13,165,0,0,NULL,'','TREATDISC_TI','','','<P>TAB AUGMENTIN 625MG&nbsp; &nbsp; P/O&nbsp; &nbsp; 1--1--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; 1--0--1&nbsp; BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp; &nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 15:57:25','mo','2025-10-09 19:38:02'),(151,0,0,66,11,66,0,0,NULL,'','CONDONADDMISSION','','','<P>FATIGUE</P>\r\n\r\n<P>WEAKNESS</P>\r\n\r\n<P>PALLOR+</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 16:06:54','mo','2025-10-13 11:31:47'),(152,0,0,179,16,216,0,0,NULL,'','DISCDIAG','','','<P><STRONG>COMMUNITY ACQUIRED PNEUMONIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>WITH&nbsp; (?) MIGRAINE</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, DYSLIPIDEMIA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 16:17:39','mo','2025-10-15 12:45:31'),(153,0,0,179,16,216,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY - NO ANY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY -NO ANY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 16:17:39','mo','2025-10-15 12:45:31'),(154,0,0,179,16,216,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 60 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, DYSLIPIDEMIA<BR />\r\nC/O: FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-BODYACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-COUGHING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-THROAT PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 3-4 DAYS FOR THAT PRIMARY CONSULTED AT DR SUBHASH SHETH AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>TYPHI DOT TEST DONE WHICH WAS NEGATIVE ON 09/10/2025</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-99.2&#39;F, PR-80/MIN, BP-140/80MMHG, SPO2-96% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>SPUTUM R/M DONE WHICH S/O:&nbsp; PUS CELLS: 28-30/HPF , RBS: 6-8/HPF , GRAM&#39;S STAIN 1:FEW GRAM NEGATIVE BACILLI SEEN SO SPUTUM C/S SENT WHICH S/O NO GROWTH</P>\r\n\r\n<P>SPUTUM CS SENT WHICH S/O NO GROWTH</P>\r\n\r\n<P>CHEST X-RAY DONE ON 13/10/2025 REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 16:17:39','mo','2025-10-15 12:45:31'),(155,0,0,179,16,216,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 16:17:39','mo','2025-10-15 12:45:31'),(156,0,0,179,16,216,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX-S</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>TAB LANOL-ER</P>\r\n\r\n<P>TAB DX</P>\r\n\r\n<P>SYP RESWAS</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>INJ AMIKACIN</P>\r\n\r\n<P>INJ TAZOWAR</P>\r\n\r\n<P>TAB NAPROSYN</P>\r\n\r\n<P>TAB KRINAP</P>\r\n\r\n<P>THROMBOPHOB OINT&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 16:17:39','mo','2025-10-15 12:45:31'),(157,0,0,63,10,63,0,0,NULL,'','DISCDIAG','','','<P><STRONG>OPERATED CASE OF LAPAROTOMY + APPENDICECTOMY + SIGMOID COLON PERFORATION REPAIR + COLOSTOMY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 16:23:34','mo','2025-10-13 13:49:49'),(158,0,0,63,10,63,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY -</STRONG> EMERGENCY LAPROTOMY + APPENDICECTOMY + CLOSURE OF SIGMOID PERFORATION + RIGHT TRANSVERSE LOOP COLOSTOMY + THOROUGH PERITONEAL LAVAGE DONE BY DR PRATAPSINH DODIYA ON 11/08/2025</P>\r\n\r\n<P>-COLOSTOMY BAG IN SITU<BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY - NO ANY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 16:23:34','mo','2025-10-13 13:49:49'),(159,0,0,63,10,63,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 54 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:EMERGENCY LAPROTOMY + APPENDICECTOMY + CLOSURE OF SIGMOID PERFORATION + RIGHT TRANSVERSE LOOP COLOSTOMY + THOROUGH PERITONEAL LAVAGE DONE BY DR PRATAPSINH DODIYA ON 11/08/2025</P>\r\n\r\n<P>-COLOSTOMY BAG IN SITU</P>\r\n\r\n<P>NOW PATIENT ADMITTED HERE FOR COLOSTOMY CLOSURE AND&nbsp;FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-87/MIN, BP-114/76MMHG, SPO2-98% ON RA, RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nCT ABDOMEN + DISTAL LOOPOGRAM DONE ON 07/10/2025 AND REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>COLONOSCOPY DONE AT STERLING HOSPITAL ON 08/10/2025 BY DR RISHIKESH KALARIA (GASTROLOGIST).<BR />\r\nCOLOSTOMY CLOSURE DONE BY DR PRATAPSINH DODIYA ON 08/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>REFERENCE OF DR ARCHIT RATHOD DONE AND FOLLOW HIS ALL ADVICE.</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL.</P>\r\n\r\n<P>I VIEW OF SKIN ALLERGY REFERENCE OF DR CHAITALI PATEL(DERMATOLOGIST) DONE ON 11/10/2025 AND FOLLOW HER&nbsp;ALL ADVICE.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 16:23:34','mo','2025-10-13 13:49:49'),(160,0,0,63,10,63,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>COLOSTOMY CLOSURE DONE BY DR PRATAPSINH DODIYA ON 08/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 16:46:01','mo','2025-10-13 13:49:49'),(161,0,0,63,10,63,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS AT EVENING (5 TO 7 PM)</P>\r\n\r\n<P>MOBILIZATION</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 16:46:01','mo','2025-10-13 13:49:49'),(162,0,0,63,10,63,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ TRAMADOL</P>\r\n\r\n<P>INJ KCL</P>\r\n\r\n<P>TAB RIFAGUT</P>\r\n\r\n<P>TAB SPOROLAC</P>\r\n\r\n<P>PEG LEG SACHET</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>TAB XYZAL M</P>\r\n\r\n<P>MOSTURIZER + FLUCORT LOTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 16:46:01','mo','2025-10-13 13:49:49'),(163,0,0,62,9,62,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 4&nbsp;DAYS&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE&nbsp;</P>\r\n\r\n<P>AVOID COLD THINGS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 16:56:38','mo','2025-10-10 12:26:15'),(164,0,0,60,8,60,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 16:59:24','mo','2025-10-10 13:10:13'),(165,0,0,28,2,28,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 70 YEARS OLD FEMALE PATIENT P/W K/C/O DM;HTN</P>\r\n\r\n<P>WITH H/O FALL DOWN FROM&nbsp;BED TODAY MORNING&nbsp;</P>\r\n\r\n<P>F/BY C/O GENERALISED WEAKNESS;2-3 EPISODES OF VOMITING</P>\r\n\r\n<P>NO H/O FEVER/COUGH-COLD/LOC ETC.</P>\r\n\r\n<P>SO,PRIMARY TREATMENT TAKEN AT STERLING HOSPITAL,RAJKOT UNDER DR,KRUTARTH KANJIYA.AT THERE MRI BRAIN(UNDER SEDATION )&nbsp;AND BLOOD INVESTIGATION SENT.S/O HYPONATREMIA .</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-98 F</P>\r\n\r\n<P>PR-108/MIN</P>\r\n\r\n<P>BP-118/50MMHG</P>\r\n\r\n<P>SPO2-93% ON RA</P>\r\n\r\n<P>RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-UNDER SEDATION,MOVING ALL 4 LIMBS.</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-213 MG/DL</P>\r\n\r\n<P>-WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04/10/25,</P>\r\n\r\n<P>-ALL REQUIRED BLOOD INVESTIGATION SENT.TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>-IN VIEW OF LOW SPO2 SO,O2 SUPPORT GIVEN.</P>\r\n\r\n<P>-CHEST X-RAY DONE.</P>\r\n\r\n<P>-ABG DONE.</P>\r\n\r\n<P>-URINE ROUTINE/MICRO SENT.S/O NAD.</P>\r\n\r\n<P>-IN VIEW OF HYPONATREMIA MANAGED BY 3% NS.</P>\r\n\r\n<P>-INTENSIVIST AND MD PHYSICIAN DR.ARCHIT RATHOD REFERENCE DONE.FOLLOWED ALL HIS ADVICE.</P>\r\n\r\n<P>-GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05/10/25,</P>\r\n\r\n<P>-REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>-O2 SUPPORT TAPER AND OFF.</P>\r\n\r\n<P>-HYPOKALEMIA MANAGED BY KCL DRIP.</P>\r\n\r\n<P>-PATIENT DEVELOPED HYPOTENSION WITH OLIGURIA MANAGED BY IV FLUID THERAPY F/BY INOTROPIC SUPPORT STARTED.DIURETIC GIVEN.</P>\r\n\r\n<P>-2D ECHO DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>-IN VIEW OF FEBRILE STATUS BLOOD CULTURE SENT AND ANTI-BIOTIC STEP UP.</P>\r\n\r\n<P>-RYLE&#39;S TUBE DONE AND FEEDING STARTED.</P>\r\n\r\n<P>-BLOOD CS SENT WHICH S/O NO GROWTH.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>06/10/25,</P>\r\n\r\n<P>-PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>-INOTROPIC SUPPORT TAPER AND OFF.</P>\r\n\r\n<P>-REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>-IV KCL DRIP GIVEN.</P>\r\n\r\n<P>-USG CHEST +ABDOMEN DONE.</P>\r\n\r\n<P>-REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>07/10/25,</P>\r\n\r\n<P>-REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>-FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>08/10/2025,<BR />\r\n-REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>-REST CT SAME TREATMENT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>09/10/2025,</P>\r\n\r\n<P>-REFERANCE OF DR MITUL KASUNDRA (NEUROPHYSICIAN) WAS DONE AND FOLLOWED HIS ALL ADVICE</P>\r\n\r\n<P>-PHYSIOTHERAPY STARTED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10/10/2025,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 17:06:54','mo','2025-10-10 11:14:58'),(166,0,0,222,209,228,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 17:09:20','','0000-00-00 00:00:00'),(167,0,0,161,15,193,0,0,NULL,'','DISCDIAG','','','<P>HYPONATREMIA&nbsp;WITH ACCELERATED HYPERTENSION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 17:09:36','mo','2025-10-11 11:22:06'),(168,0,0,161,15,193,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-09 17:09:36','mo','2025-10-11 11:22:06'),(169,0,0,161,15,193,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 75 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN (RECENTLY DETECTED)<BR />\r\nC/O: -CHEST PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -GABHARAMAN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -PERSISTANT VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -GENERAKISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 1 WEEK SO FOR THAT NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-80/MIN, BP-170/100MMHG, SPO2-96% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>URINE R/M DONE WHICH S/O PROTEIN PRESENT (+), KETONES: PRESENT (TRACE)</P>\r\n\r\n<P>HYPONATREMIA CORRECTED BY NS 3% SUPPLEMENT.</P>\r\n\r\n<P>USG ABDOMEN WITH PELVIS DONE ON 10/10/2025; REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\nSO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 17:09:36','mo','2025-10-11 11:22:06'),(170,0,0,161,15,193,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 7&nbsp;DAYS</P>\r\n\r\n<P>SALT RICH DIET</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 17:09:36','mo','2025-10-11 11:22:06'),(171,0,0,161,15,193,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ NS 3%</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>TAB TOLVAPTAN</P>\r\n\r\n<P>TAB BISOWIN-T</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>TAB CREMALAX</P>\r\n\r\n<P>TAB C UDP</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 17:09:36','mo','2025-10-11 11:22:06'),(172,0,0,28,2,28,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MERO</P>\r\n\r\n<P>TAB LINOX</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ LEVERA</P>\r\n\r\n<P>INJ NORAD</P>\r\n\r\n<P>INJ KCL</P>\r\n\r\n<P>INJ MGSO4</P>\r\n\r\n<P>INJ NAHCO3</P>\r\n\r\n<P>INJ 3% NS</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ CLEXANE</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>TAB ADDKAY</P>\r\n\r\n<P>TAB BRIV</P>\r\n\r\n<P>TAB PANTODAC</P>\r\n\r\n<P>NEB DUOLIN/BUDECORT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 17:19:38','mo','2025-10-10 11:14:58'),(173,0,0,48,5,48,0,0,NULL,'','DISCDIAG','','','<P><STRONG>CARDIOGENIC SHOCK WITH LVF WITH CAD(TVD LVEF= 15%) WITH AKI WITH HYPONATREMAI</STRONG></P>\r\n\r\n<P><STRONG>IN K/C/O DM WITH IHD.</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 17:27:56','mo','2025-10-14 13:34:57'),(174,0,0,48,5,48,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>K/C/O DM, IHD.<BR />\r\n<BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 17:27:56','mo','2025-10-14 13:34:57'),(175,0,0,48,5,48,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 75 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II, IHD<BR />\r\nC/O: NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-VOMITING (3-4 EPISODE/DAY)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-SEVERE WATERY DIARRHOEA (PERSISTENT) BEFORE 2 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-HICCOUGH</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-SEVERE GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-ABDOMINAL PAIN</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 4-5 DAYS FOR THAR NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE,</P>\r\n\r\n<P>PR-104/MIN,</P>\r\n\r\n<P>BP-90/60MMHG,</P>\r\n\r\n<P>SPO2-96% ON RA,</P>\r\n\r\n<P>RR-22/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>CNS-CONSCIOUS AND ORIENTED F/V/C,</P>\r\n\r\n<P>RS-BLAE+,</P>\r\n\r\n<P>CVS-S1S2+,</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>06-10-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>USG KUB DONE ON 06/10/2025 AND ATTACHED WITH FILE</P>\r\n\r\n<P>THPHI DOT DONE WHICH WAS NEGATIVE</P>\r\n\r\n<P>FOLEY&#39;S CATHETER DONE WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>IN VIEW OF DECREASED ORAL INTAKE RYLE&#39;S TUBE INSERTION DONE&nbsp;WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>07-10-2025,</P>\r\n\r\n<P>CHEST X RAY DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>IN VIEW OF DECREASED ORAL INTAKE RYLE&#39;S TUBE INSERTION DONE&nbsp;WITH ALL ASEPTIC PRECAUTION.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>08-10-2025,</P>\r\n\r\n<P>PATIENT SI CONSIOUS, ORIENTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>09-10-2025,</P>\r\n\r\n<P>IN VIEW OF HYPONATREMIA INJ.NS 3% START.</P>\r\n\r\n<P>PATIENT IS DROWSY SO SHIFT TO ICU.</P>\r\n\r\n<P>SPO2 LEVEL DECRESED O2 SUPPORT GIVEN VIA MASK.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10-10-2025,</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION INJ.NORAD START BY INFUSION PUMP.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, GENERLIZED WEAKNESS.</P>\r\n\r\n<P>INJ. NORAD CONTINUE BY S/P.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, GENERLIZED WEAKNESS.</P>\r\n\r\n<P>INJ. NORAD CONTINUE BY S/P.</P>\r\n\r\n<P>IN VIEW OF AF INJ. CORDERON GIVEN IV STAT, INJ. MGSO4 GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13-10-2025,</P>\r\n\r\n<P>IN VIEW OF CONVULSION INJ. LEVIPIL GIVEN.</P>\r\n\r\n<P>INJ. NORAD CONTINUE BY S/P.</P>\r\n\r\n<P>INJ. DYTOR DRIP START BY INFUSION PUMP.</P>\r\n\r\n<P>ABG DONE.</P>\r\n\r\n<P>REFERENCE DONE DR. RAVI BHOJANI(CARDIOLOGIST) ADVICE FOLLOWED, 2 D ECHO DONE LVEF = 15%.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14-10-2025,</P>\r\n\r\n<P>PATIENT IS DROWSY, OCC FOLLO VERBAL COMAND.</P>\r\n\r\n<P>INJ. NORAD CONTINUE BY S/P.</P>\r\n\r\n<P>INJ. DYTOR DRIP START BY INFUSION PUMP.</P>\r\n\r\n<P>PATIENT RELETIVE WANT DISCHARGE AGAIN MEDICAL ADVICE.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 17:27:56','mo','2025-10-14 13:34:57'),(176,0,0,48,5,48,0,0,NULL,'','ADVICE','','','<P>FOLY`S CARE.</P>\r\n\r\n<P>RTF = 150ML/2HRLY.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 17:27:56','mo','2025-10-14 13:34:57'),(177,0,0,48,5,48,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX-S</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ. MEZOR</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>INJ B29 AQ PFS</P>\r\n\r\n<P>INJ NS 3%</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>CAP ENUFF</P>\r\n\r\n<P>TAB ECOSPRIN AV</P>\r\n\r\n<P>VIT D3 SHOT</P>\r\n\r\n<P>TAB CREMALAX</P>\r\n\r\n<P>TAB LIOFAN</P>\r\n\r\n<P>TAB LARGECTIL</P>\r\n\r\n<P>TAB TOLVAPTAN</P>\r\n\r\n<P>TAB METRIDE</P>\r\n\r\n<P>INJ. LEVIGRESS</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-09 17:27:56','mo','2025-10-14 13:34:57'),(178,0,0,220,207,226,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 17:38:56','darshan','2025-10-09 17:39:42'),(179,0,0,225,212,231,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 17:44:03','','0000-00-00 00:00:00'),(180,0,0,228,215,234,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 17:46:50','','0000-00-00 00:00:00'),(181,0,0,229,216,235,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 18:00:08','','0000-00-00 00:00:00'),(182,0,0,233,220,239,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 18:17:22','','0000-00-00 00:00:00'),(183,0,0,227,214,233,0,0,NULL,'','HIST','ZZZ','Remark','<p>will come late on</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 18:30:43','','0000-00-00 00:00:00'),(184,0,0,241,227,248,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 18:35:02','','0000-00-00 00:00:00'),(185,0,0,235,222,241,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 18:38:51','','0000-00-00 00:00:00'),(186,0,0,237,224,244,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 18:44:09','darshan','2025-10-09 18:46:54'),(187,0,0,237,224,244,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 18:47:15','','0000-00-00 00:00:00'),(188,0,0,247,233,254,0,0,NULL,'','DIAG','ZZZ','Remark','PAIN OVER COCCYX','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-09 18:48:40','','0000-00-00 00:00:00'),(189,0,0,246,232,253,0,0,NULL,'','DIAG','ZZZ','Remark','FISTULA IN ANO','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-09 18:51:33','','0000-00-00 00:00:00'),(190,0,0,187,174,190,0,0,NULL,'','DIAG','ZZZ','Remark','LT GYNECOMASTIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-09 19:51:44','','0000-00-00 00:00:00'),(191,0,0,231,218,237,0,0,NULL,'','DIAG','ZZZ','Remark','INTERNAL HEMORRHOIDS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-09 19:56:47','','0000-00-00 00:00:00'),(192,0,0,261,246,270,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 19:57:38','','0000-00-00 00:00:00'),(193,0,0,265,250,275,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-09 20:23:20','','0000-00-00 00:00:00'),(194,0,0,165,14,168,0,0,NULL,'','DISCDIAG','','','<P>FISTULA IN ANO + PHIMOSIS&nbsp;</P>\r\n\r\n<P>K/C/O: DM II</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 00:06:13','mo','2025-10-10 12:36:39'),(195,0,0,165,14,168,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY - NO ANY HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY- DM II</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 00:06:13','mo','2025-10-10 12:36:39'),(196,0,0,165,14,168,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 44 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II<BR />\r\nC/O: PAIN IN ANUS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-SWELLING AROUND ANUS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-BODYACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-FEVER</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-INABILY TO RETRACT PRE-PENILE SKIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-RECURRENT BALENOPOSTHITIS</P>\r\n\r\n<P>O/E: SWELLING 10 O&#39;CLOCK POSITION, PHIMOSIS PRESENT</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 20-25 DAYS FOR THAT NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>MR FISTULOGRAM DONE ON 24/09/2025</P>\r\n\r\n<P>PERIANAL USG DONE ON 24/09/2025</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-80/MIN, BP-148/80MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nFISTULECTOMY + CIRCUMSCISION WITH ZSR STAPPLER DONE BY DR PRATAPSINH DODIYA ON 09/10/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 00:06:13','mo','2025-10-10 12:36:39'),(197,0,0,165,14,168,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:FISTULECTOMY + CIRCUMSCISION WITH ZSR STAPPLER DONE BY DR PRATAPSINH DODIYA ON 09/10/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 00:06:13','mo','2025-10-10 12:36:39'),(198,0,0,165,14,168,0,0,NULL,'','OTNOTE','','','<p>circumscision:</p>\r\n\r\n<p>-INABILITY TO RETRACT SKIN,DORSAL SLIT KEPT</p>\r\n\r\n<p>-glans penis -normal,THICKENED SKIN WITH MULTIPLE ULCERATION</p>\r\n\r\n<p>-meatus -normal</p>\r\n\r\n<p>-circumscision done with ZSr stappler (32mm)</p>\r\n\r\n<p>-hemostasis achived</p>\r\n\r\n<p>-dressing kept</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>fistula:</p>\r\n\r\n<p>-fistula in ano present</p>\r\n\r\n<p>-external opening at 1 o&#39;clock position</p>\r\n\r\n<p>-internal opening at 12 o&#39;clock position</p>\r\n\r\n<p>-fistulectomy done</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-dressing kept</p>\r\n\r\n<p>-fistula tract sent for hpe.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 00:06:13','mo','2025-10-10 12:36:39'),(199,0,0,165,14,168,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3&nbsp;DAYS&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>NOTE: HPE REPORT AWAITED&nbsp;</P>\r\n\r\n<P>BUPRAGESIC PATCH REMOCE AFTER 3 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 00:06:13','mo','2025-10-10 12:36:39'),(200,0,0,165,14,168,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>TAB JANUMET</P>\r\n\r\n<P>SYP CREMAFFIN PLUS</P>\r\n\r\n<P>BUPRAGESIC PATCH</P>\r\n\r\n<P>METROGYL-P OIN.</P>\r\n\r\n<P>NEOSPORIN OINMENT</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 00:06:13','mo','2025-10-10 12:36:39'),(201,0,0,28,2,28,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS</P>\r\n\r\n<P>CVP CARE&nbsp;</P>\r\n\r\n<P>FOLEY&#39;S CARE</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>PHYSIOTHERAPY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 00:12:31','mo','2025-10-10 11:14:58'),(202,0,0,274,21,284,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PEPTIC PERFORATION</STRONG>&nbsp;<STRONG>WITH SEPTIC SHOCK</STRONG></P>\r\n\r\n<P><STRONG>IN CASE OF ALCOHOLIC LIVE DISEASE</STRONG></P>\r\n\r\n<P><STRONG>WITH CIRRHOSIS OF LIVER</STRONG></P>\r\n\r\n<P><STRONG>WITH ESOPHAGEAL VARICES</STRONG></P>\r\n\r\n<P><STRONG>WITH ASCITES</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 00:17:20','mo','2025-10-18 12:50:56'),(203,0,0,274,21,284,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-10 00:17:20','mo','2025-10-18 12:50:56'),(204,0,0,274,21,284,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 35 YEARS OLD &nbsp;PATIENT PRESENTED WITH,<BR />\r\nH/O: ALCOHOLIC<BR />\r\nC/O: PERSISTANT NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;- VOMITING (1 EPISODE/DAY)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-&nbsp; ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;- GABHARAMAN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;- PALLORNESS OF BODY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;- CHEST PAIN</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 2 DAYS FOR THAT PRIMATRY CONSULTED AT ER AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE,</P>\r\n\r\n<P>PR-80/MIN,</P>\r\n\r\n<P>BP-110/70MMHG,</P>\r\n\r\n<P>SPO2-98% ON RA,</P>\r\n\r\n<P>RR-22/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>CNS-CONSCIOUS AND ORIENTED F/V/C,</P>\r\n\r\n<P>RS-BLAE+,</P>\r\n\r\n<P>CVS-S1S2+,</P>\r\n\r\n<P>P/A-MILD TENDER</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>09-10-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>PATIENT BEING&nbsp;IRRITABLE AND&nbsp; TENDERNESS OF ABDOMEN INCREASE SO SHIFT TO ICU.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10-10-2025,</P>\r\n\r\n<P>USG ABDOMEN DONE - REPROT ATTACH WITH FILE.</P>\r\n\r\n<P>REFRERNCE DONE DR. PRATAPSINH DODIYA (GENERAL SURGEON), ADVICE FOLLOWED.</P>\r\n\r\n<P>CHEST X RAY DONE - REPROT ATTACH WITH FILE.</P>\r\n\r\n<P>PLAIN MDCT SCAN OF ABDOMEN DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>S. BILIRUBIN TOTAL -&nbsp; 7.54 MG/DL.</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; DIRECT - 5.23 MG/DL.</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; INDIRECT - 2.31 MG/DL.</P>\r\n\r\n<P>S.GGT - 481 U/L.</P>\r\n\r\n<P>FOLY`S CATH DONE.</P>\r\n\r\n<P>4 UNIT FFP GIVEN.</P>\r\n\r\n<P>RIGHT SIDE IJV CVP DONE DR. CHAITANYASINH GOHIL.</P>\r\n\r\n<P>EMERGENCY LAPROTOMY + CLOSURE OF STOMACH PERFORATION + THOROUGH PERITONEAL WASH&nbsp; DONE BY DR. PRATAPSINH DODIYA.UNDER GENERAL ANEASTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>INJ. ALBUMIN GIEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11-10-2025,</P>\r\n\r\n<P>RT DONE.</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED, FOLLO VERABL COMAND.</P>\r\n\r\n<P>INJ. ALBUMIN GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12-10-2025,</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL DRIP</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13-10-2025,</P>\r\n\r\n<P>CONTINUE SAME RX</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14-10-2025,</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFULL SO PATIENT SHIFTED TO WARD</P>\r\n\r\n<P>ORALLY SIPS START PATIENT TOLERATE WELL</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15-10-2025</P>\r\n\r\n<P>ORALLY PATIENT TOLERATE WELL NO ANY COMPLAIN SO RT REMOVE</P>\r\n\r\n<P>FOLEY&#39;S CLAMPING START&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16-10-2025</P>\r\n\r\n<P>FOLEY&#39;S CLAMP AND REMOVE</P>\r\n\r\n<P>ORALLY TOLERATE WELL</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17-10-2025</P>\r\n\r\n<P>DRAIN REMOVAL DONE BY DR PRATAPSINH DODIYA</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18-10-2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 00:17:20','mo','2025-10-18 12:50:56'),(205,0,0,274,21,284,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 00:17:20','mo','2025-10-18 12:50:56'),(206,0,0,274,21,284,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>INJ TAZOWAR</P>\r\n\r\n<P>INJ MEZOR</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>INJ THIAMIN</P>\r\n\r\n<P>TAB URSOCOL</P>\r\n\r\n<P>INJ. ALBUMIN</P>\r\n\r\n<P>INJ. VIT K</P>\r\n\r\n<P>INJ. THAYA B</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>FFP 4 UNIT</P>\r\n\r\n<P>TAB LIBRIUM</P>\r\n\r\n<P>INJ MGSO4</P>\r\n\r\n<P>LIQ LOOZ</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>SYP LIV 52</P>\r\n\r\n<P>SYP SUCRAL O</P>\r\n\r\n<P>TAB CARDIVAS</P>\r\n\r\n<P>TAB LASILACTONE</P>\r\n\r\n<P>INJ TERLIPRESSIN</P>\r\n\r\n<P>LOOZ ENEMA</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n\r\n<P>CAP SOMPRAZ-D</P>\r\n\r\n<P>PROTEINEX POWDER&nbsp;</P>\r\n\r\n<P>TAB THAYA B</P>\r\n\r\n<P>TAB RIFAGUT</P>\r\n\r\n<P>TAB SPORLAC</P>\r\n\r\n<P>CAP SOMPRAZ D</P>\r\n\r\n<P>PROTINEX POWDER</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 00:17:20','mo','2025-10-18 12:50:56'),(207,0,0,249,19,257,0,0,NULL,'','DISCDIAG','','','<P>CARDIOGENIC SHOCK WITH MILD ACUTE LVF</P>\r\n\r\n<P>WITH POOR LV FUNCTION&nbsp;</P>\r\n\r\n<P>WITH CAD</P>\r\n\r\n<P>K/C/O: HTN, DM II, CCF</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 00:25:18','mo','2025-10-10 12:27:54'),(208,0,0,249,19,257,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 00:25:18','mo','2025-10-10 12:27:54'),(209,0,0,249,19,257,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 77 YEARS OLD&nbsp;MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, DM II , CCF<BR />\r\nC/O: DOE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-CHEST PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-GIDDINESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-NO URINARY COMPLAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE&nbsp; &nbsp;DAYS FOR THAT PRIMARY CONSULTED AT SHIVAM HOSPITAL AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>COLOR DOPPLER DONE ON 6/10/2025 WHICH S/O: EF-18-20%</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-103/MIN, BP-70/50MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION INJ NORAD INFUSION STARTED</P>\r\n\r\n<P>BLOOD PRESSURE GRADUALLY IMPROVING&nbsp;SO INJ NORAD TAPPER AND OFF</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 00:25:18','mo','2025-10-10 12:27:54'),(210,0,0,249,19,257,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3&nbsp;DAYS</P>\r\n\r\n<P>TAKE LIQUID&nbsp; &LT; 1.5LIT/DAY</P>\r\n\r\n<P>HOLD OWN MEDICINE</P>\r\n\r\n<P>PLAN CAG SOS INTERVENTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 00:25:18','mo','2025-10-10 12:27:54'),(211,0,0,249,19,257,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ NORAD</P>\r\n\r\n<P>INJ H ACTRAPID</P>\r\n\r\n<P>INJ D25%</P>\r\n\r\n<P>INJ STEMETIL</P>\r\n\r\n<P>TAB ROSULESS GOLD</P>\r\n\r\n<P>TAB ZAYA</P>\r\n\r\n<P>TAB GLIMSON MP</P>\r\n\r\n<P>TAB EMPACREST-L</P>\r\n\r\n<P>TAB CREMALAX</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 00:25:18','mo','2025-10-10 12:27:54'),(212,0,0,279,263,294,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 10:46:34','','0000-00-00 00:00:00'),(213,0,0,127,17,224,0,0,NULL,'','DISCDIAG','','','<P><STRONG>TRANSVERSE COLON CARCINOMA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 10:47:44','mo','2025-10-16 19:08:19'),(214,0,0,127,17,224,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-10 10:47:44','mo','2025-10-16 19:08:19'),(215,0,0,127,17,224,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 38 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:PAIN IN ABDOMEN&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;OCCASIONALLY CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;BLOOD IN STOOL</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO FEVER</P>\r\n\r\n<P>O/E: TENDERNESS + IN EPIGASTRIC REGION</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 9-10 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>CT ABDOMEN AND PELVIS PLAIN + CONTRAST DONE ON 8/10/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>COLONOSCOPY DONE ON 8/10/2025 WHICH S/O?ADENOCARCINOMA</P>\r\n\r\n<P>USG ABDOMEN DONE ON 4/10/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-82/MIN, BP-150/90MMHG, SPO2-99% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>9/10/2025</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ECG DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10/10/2025<BR />\r\nLAPAROTOMY + RIGHT HEMICOLONECTOMY + ILEO COLONIC ANASTOMOSIS (STAPPLED) DONE BY DR PRATAPSINH DODIYA&nbsp; UNDER&nbsp; GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>RYLES TUBE INSERTION DONE WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>FOLEY&#39;S DONE WITH ALL ASEPTIC PRACAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO ICU</P>\r\n\r\n<P>POS OP O2 SUPPORT GIVEN FOR FEW HOURS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11/10/2025</P>\r\n\r\n<P>DUE TO MINOR BLOOD LOSS 1&nbsp;UNIT RCC GIVEN&nbsp;</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFULL SO PATIENT SHIFTED TO WARD</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12/10/2025</P>\r\n\r\n<P>1 UNIT RCC GIVEN&nbsp;</P>\r\n\r\n<P>RT ASPIRATION 4 HOURLY&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13/10/2025</P>\r\n\r\n<P>HYPOPROTEINEMIA CORRECTED WITH INJ ALBUMIN&nbsp;</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>MOBILIZATION START</P>\r\n\r\n<P>CATHETER CLAMPING START</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14/10/2025</P>\r\n\r\n<P>FOLEY&#39;S CLAMP AND REMOVE</P>\r\n\r\n<P>ORALLY SIPS START PATIENT TOLERATE WELL SO RYLES TUBE REMOVE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15/10/2025</P>\r\n\r\n<P>IN VIEW OF PERSISTENT HIGH BLOOD PRESSURE REFERENCE OF DR ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16/10/2025</P>\r\n\r\n<P>USG ABDOMEN DONE REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ORAL DIET STARTED ; TOLERATE&nbsp;WELL.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE AND DRAIN IN SITU SO CONSIDER FOR DISCHARGE ON REQUEST.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 10:47:44','mo','2025-10-16 19:08:19'),(216,0,0,281,265,296,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 10:52:34','','0000-00-00 00:00:00'),(217,0,0,284,268,299,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 10:55:54','','0000-00-00 00:00:00'),(218,0,0,280,264,295,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 11:00:40','','0000-00-00 00:00:00'),(219,0,0,28,2,28,0,0,NULL,'','DISCCOND','','','<P>CONSCIOUS &AMP; ORIENTED&nbsp;</P>\r\n\r\n<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN<BR />\r\nFOLEY&#39;S IN SITU D:-7 NO.14</P>\r\n\r\n<P>RIGHT SIDE SUBCLAVIAN CVP IN SITU D:-5</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 11:04:03','mo','2025-10-10 11:14:58'),(220,0,0,28,2,28,0,0,NULL,'','TREATDISC_TI','','','<P>INJ.MERO (1GM/100 ML NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 7AM---3PM---10PM&nbsp; &nbsp; ........FOR 2&nbsp;DAYS ( 7 INJ)</P>\r\n\r\n<P>TAB.LINOX (600)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; FOR&nbsp; &nbsp; 3DAYS&nbsp; (7 TAB)</P>\r\n\r\n<P>TAB.PANTODAC(40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; FOR&nbsp; &nbsp; 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB.BRIV(75)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp; &nbsp; 5 DAYS</P>\r\n\r\n<P>SYP. LOOSE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--30ML FOR 5 DAYS&nbsp;&nbsp;</P>\r\n\r\n<P>SMUTH OINTMENT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp;&nbsp;LOCAL APPLICATION ANAL REGION&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>BETADINE 100 ML&nbsp; &nbsp;FOR FOLEYS CARE &AMP; CVP CARE&nbsp;&nbsp;</P>\r\n\r\n<P>GAUZE PIECE&nbsp; 2 PACKETS FOR CVP &AMP; FOLEYS CARE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 11:04:03','mo','2025-10-10 11:14:58'),(221,0,0,276,259,286,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE GASTRITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-10 11:07:31','','0000-00-00 00:00:00'),(222,0,0,276,259,286,0,0,NULL,'','DIAG','ZZZ','Remark','HTN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-10 11:07:33','','0000-00-00 00:00:00'),(223,0,0,286,270,301,0,0,NULL,'','DIAG','ZZZ','Remark','FISSURE IN ANO','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-10 11:12:58','','0000-00-00 00:00:00'),(224,0,0,165,14,168,0,0,NULL,'','DISCCOND','','','<P>NO ANY FRESH COMPAIN</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 11:22:12','mo','2025-10-10 12:36:39'),(225,0,0,165,14,168,0,0,NULL,'','TREATDISC_TI','','','<P>TAB METRO-ER&nbsp; (600MG)&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;0--0--10ML&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>METROGYL-P OINTMENT&nbsp; &nbsp; &nbsp; L/A&nbsp; &nbsp; &nbsp;AFTER DEFECATION&nbsp; &nbsp; &nbsp; &nbsp; ....(1)</P>\r\n\r\n<P>NEOSPORIN OINTMENT&nbsp; &nbsp; &nbsp; &nbsp; L/A&nbsp; &nbsp; &nbsp;PREPENILE SKIN AS EXPLAINED&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...(1)&nbsp;&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE :</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB JANUMET(50/1000)&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 11:22:12','mo','2025-10-10 12:36:39'),(226,0,0,275,258,285,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-10 11:23:07','','0000-00-00 00:00:00'),(227,0,0,298,282,313,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER AND MIDDLE BACK PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-10 11:30:10','','0000-00-00 00:00:00'),(228,0,0,282,266,297,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 11:31:02','','0000-00-00 00:00:00'),(229,0,0,278,262,291,0,0,NULL,'','CC','ZZZ','Remark','BILAT PEDAL EDEMA |  5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-10 11:34:00','','0000-00-00 00:00:00'),(230,0,0,285,269,300,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 11:35:26','','0000-00-00 00:00:00'),(231,0,0,302,286,318,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT SIDE LOWER CHEST PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-10 11:36:52','','0000-00-00 00:00:00'),(232,0,0,249,19,257,0,0,NULL,'','DISCCOND','','','<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 11:39:11','mo','2025-10-10 12:27:54'),(233,0,0,249,19,257,0,0,NULL,'','TREATDISC_TI','','','<P>TAB NEXPROFAST (40MG)&nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 3&nbsp;DAYS</P>\r\n\r\n<P>TAB ROSULESS-GOLD (20)&nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS</P>\r\n\r\n<P>TAB GLIMIFINE M2&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 3&nbsp;DAYS</P>\r\n\r\n<P>TAB ZAYO(25)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3&nbsp;DAYS</P>\r\n\r\n<P>TAB EMPACREST-L&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 3&nbsp;DAYS</P>\r\n\r\n<P>TAB CREMALAX&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IF CONSTIPATION&nbsp;&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 11:39:11','mo','2025-10-10 12:27:54'),(234,0,0,293,277,308,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 11:39:33','','0000-00-00 00:00:00'),(236,0,0,307,291,323,0,0,NULL,'','DIAG','ZZZ','Remark','RT INGROWING NAIL','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-10 11:43:42','','0000-00-00 00:00:00'),(237,0,0,283,267,298,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 11:44:00','','0000-00-00 00:00:00'),(238,0,0,289,273,304,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 12:03:17','','0000-00-00 00:00:00'),(239,0,0,62,9,62,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 12:05:25','mo','2025-10-10 12:26:15'),(240,0,0,62,9,62,0,0,NULL,'','TREATDISC_TI','','','<P>INJ UNITREX-S&nbsp; 1.5GM/DILUTED&nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp;9AM--9PM&nbsp; &nbsp; &nbsp; &nbsp;FOR 4 DAYS ( 9 INJ)</P>\r\n\r\n<P>INJ AMIKACIN 500MG/DILUTED&nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; 2PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 2&nbsp;DAYS(2&nbsp;INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB NEXPROFAST (40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZOFER MD (4MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;P/O&nbsp; &nbsp; &nbsp; SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FODD&nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB PROZIL MD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IF GIDDINESS&nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>SYP KOLTUS-C&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IF COUGHING&nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB AFASMA SR (200)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE :</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB THYRONORM 25MG&nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 12:05:25','mo','2025-10-10 12:26:15'),(241,0,0,317,301,333,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT SCAPULA FRACTURE','','',0,'0000-00-00 00:00:00','drsagar','2025-10-10 12:16:11','','0000-00-00 00:00:00'),(242,0,0,294,278,309,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 12:18:04','','0000-00-00 00:00:00'),(243,0,0,318,302,334,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT 5TH METATARSAL FRACTURE','','',0,'0000-00-00 00:00:00','drsagar','2025-10-10 12:19:34','','0000-00-00 00:00:00'),(244,0,0,300,284,315,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 12:26:50','','0000-00-00 00:00:00'),(245,0,0,290,274,305,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 12:39:14','','0000-00-00 00:00:00'),(246,0,0,304,288,320,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 12:46:11','','0000-00-00 00:00:00'),(247,0,0,60,8,60,0,0,NULL,'','DISCCOND','','','<P>INTERMITTENT FEVER</P>\r\n\r\n<P>URINE OUTPUT ADEQUET&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 12:56:00','mo','2025-10-10 13:10:13'),(248,0,0,313,297,329,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 13:02:44','','0000-00-00 00:00:00'),(249,0,0,314,298,330,0,0,NULL,'','HIST','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 13:07:54','','0000-00-00 00:00:00'),(250,0,0,324,308,340,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 13:33:35','','0000-00-00 00:00:00'),(251,0,0,333,317,350,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 17:14:30','','0000-00-00 00:00:00'),(252,0,0,338,322,355,0,0,NULL,'','HIST','ZZZ','Remark','<p>attemded</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 17:15:11','','0000-00-00 00:00:00'),(253,0,0,341,325,358,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 17:16:22','','0000-00-00 00:00:00'),(254,0,0,342,326,359,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 17:19:02','','0000-00-00 00:00:00'),(255,0,0,347,331,364,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 17:55:48','darshan','2025-10-10 17:58:50'),(256,0,0,327,311,343,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-10 18:15:20','','0000-00-00 00:00:00'),(257,0,0,327,311,343,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT SHOULDER PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-10 18:15:27','','0000-00-00 00:00:00'),(258,0,0,161,15,193,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>CONSCIOUS &AMP;&nbsp;ORIENTED</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 18:21:03','mo','2025-10-11 11:22:06'),(259,0,0,161,15,193,0,0,NULL,'','TREATDISC_TI','','','<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp;(BEFORE FOOD)&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;FOR 7 DAYS</P>\r\n\r\n<P>TAB ZOFER MD (4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp;&nbsp;&nbsp;(BEFORE FOOD) &nbsp; &nbsp; &nbsp;FOR 7&nbsp;DAYS</P>\r\n\r\n<P>TAB TOLVAPTAN (15 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; (AFTER FOOD)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 7&nbsp;DAYS</P>\r\n\r\n<P>TAB BISOWIN T (40/5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 1--0--0&nbsp; &nbsp; (AFTER FOOD)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 7&nbsp;DAYS</P>\r\n\r\n<P>TAB C UDP (20)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp;(AFTER FOOD)&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;FOR 7 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 18:24:25','mo','2025-10-11 11:22:06'),(260,0,0,345,329,362,0,0,NULL,'','DIAG','ZZZ','Remark','OPERATED CASE OF RIGHT TKR','','',0,'0000-00-00 00:00:00','drsagar','2025-10-10 18:25:27','','0000-00-00 00:00:00'),(263,0,0,370,354,388,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER BACK PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-10 18:32:00','','0000-00-00 00:00:00'),(264,0,0,369,353,387,0,0,NULL,'','DIAG','ZZZ','Remark','DENGUE FEVER','','',0,'0000-00-00 00:00:00','drjayant','2025-10-10 18:32:19','','0000-00-00 00:00:00'),(265,0,0,363,347,381,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV VS VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 18:48:03','','0000-00-00 00:00:00'),(266,0,0,360,344,377,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 18:56:14','','0000-00-00 00:00:00'),(267,0,0,275,258,285,0,0,NULL,'','DIAG','ZZZ','Remark','LUMBUR DISC DX','','',0,'0000-00-00 00:00:00','drjayant','2025-10-10 18:59:05','','0000-00-00 00:00:00'),(268,0,0,374,358,392,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-10 19:19:00','','0000-00-00 00:00:00'),(269,0,0,292,27,416,0,0,NULL,'','DISCDIAG','','','<P><STRONG>RIGHT LOWER ZONE CONSOLIDATION</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 23:56:44','mo','2025-10-14 19:34:33'),(270,0,0,292,27,416,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-10 23:56:44','mo','2025-10-14 19:34:33'),(271,0,0,292,27,416,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 70 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; -COUGHING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; -COLD</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; -ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; -CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; -GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 12-15 DAYS FOR THAT PRIMARY CONSULTED AT OPD BASE AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>TYPHI DOT DONE ON 29/09/2025 WHICH WAS NEGATIVE</P>\r\n\r\n<P>CHEST X RAY DONE 30/09/2025</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-100.4&#39;F, PR-112/MIN, BP-110/72MMHG, SPO2-92% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>URINE R/M DONE WHICH S/O: PUS CELLS: 2-3 CELL/HPF ,&nbsp; RBCS: 5-6 CELL/HPF, KETONES: [RESENT (++)</P>\r\n\r\n<P>CHET X-RAY DONE ON 10/10/2025 ; REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>HYPONATREMIA CORRECTED BY INJ NS 3%.</P>\r\n\r\n<P>SPUTUM R/M DONE ON 12/10/2025 WHICH S/O: PUS CELL:150-160, RBC:3-4,FEW GRAM NEGATIVE BACILLI.</P>\r\n\r\n<P>SPUTUM C/S SENT WHICH S/O NO GROWTH</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 23:56:44','mo','2025-10-14 19:34:33'),(272,0,0,292,27,416,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 23:56:44','mo','2025-10-14 19:34:33'),(273,0,0,292,27,416,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX-S</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n\r\n<P>IN PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ NS 3%</P>\r\n\r\n<P>TAB MONDESLOR</P>\r\n\r\n<P>TAB ETOLOK</P>\r\n\r\n<P>SYO KOLTUS-C</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>TAB DX 30</P>\r\n\r\n<P>DULCOLAX SUPPO.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 23:56:44','mo','2025-10-14 19:34:33'),(274,0,0,16,12,150,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>SOS - SURGICAL INTERVENTION&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-10 23:59:08','mo','2025-10-11 18:40:47'),(275,0,0,385,22,406,0,0,NULL,'','DISCDIAG','','','<P><STRONG>RIGHT SIDE SEVERE OSTEOARTHRITIS OF KNEE</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 00:07:09','mo','2025-10-14 13:17:46'),(276,0,0,385,22,406,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-11 00:07:09','mo','2025-10-14 13:17:46'),(277,0,0,385,22,406,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 54 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O: BOTH KNEE PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-PAIN INCREASE WHILE MOBILIZATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-DIFFICULTY IN WALKING</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE MANY YEAR AND INCREASE SINCE LAST 6 MONTH FOR THAT NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>PRE OP PROFILE DONE ON 30/09/2025</P>\r\n\r\n<P>PHYSICIAN FITNESS GIVEN BY DR ARCHIT&nbsp;RATHOD (MD MEDICINE &AMP; INTENSIVIST) ON 30/09/2025</P>\r\n\r\n<P>2D ECHO DONE ON 01/10/2025 WHICH S/O: EF-60%</P>\r\n\r\n<P>X RAY BOTH KNEE DONE ON 05/09/2025</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-77/MIN, BP-152/90MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>TOTAL KNEE REPLACEMENT RIGHT SIDE&nbsp;DONE BY DR PARIN KANTESARIYA AND DR SAGAR KHANPARA ON 11/10/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>IN VIEW OF PAIN INJ ROPIN AS ADVICE STARTED</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 00:07:09','mo','2025-10-14 13:17:46'),(278,0,0,385,22,406,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ TT</P>\r\n\r\n<P>INJ TECOPLANIN</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>TAB CHYMORAL FORTE</P>\r\n\r\n<P>TAB GB 29 TOTAL</P>\r\n\r\n<P>TAB ACETLE SP</P>\r\n\r\n<P>INJ ROPIN</P>\r\n\r\n<P>INJ TRAMADOL</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 00:38:16','mo','2025-10-14 13:17:46'),(279,0,0,393,26,415,0,0,NULL,'','DISCDIAG','','','<P><STRONG>CCF WITH AKI</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN,OLD CVA ,DCMP WITH SEVERE LVD,BPH,CKD,IHD</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 01:19:04','mo','2025-10-13 12:37:00'),(280,0,0,393,26,415,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-11 01:19:04','mo','2025-10-13 12:37:00'),(281,0,0,393,26,415,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 79 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN,OLD CVA ,DCMP WITH SEVERE LVD,BPH,CKD,IHD<BR />\r\nH/O:ADMITTED HERE FOR ACUTE CORONARY SYNDROME<BR />\r\nC/O: DOE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-SEVERE GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-B/L PEDAL OEDEMA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-OCCATINALLY CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-DECREASED URINE OUTPUT</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 2-3 DAYS FOR THAT NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-78/MIN, BP-92/54MMHG, SPO2-97% ON RA, RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>INJ LASIX INFUSION STARTED</P>\r\n\r\n<P>INJ DOBUTAX INFUSION STARTED</P>\r\n\r\n<P>REFERENCE OF DR MAYUR KAPURIYA(NEPHROLOGIST) DONE ON 11/10/2025 AND FOLOW HIS ALL ADVICE.</P>\r\n\r\n<P>FURTHER URINE OUTPUT MONITORING AND INJ LASIX INFUSION TAPPER AND OFF.</P>\r\n\r\n<P>FURTHER BLOOD&nbsp;PRESSURE IMPROVING SO INJ DOBUTEX INFUSION TAPPER AND OFF.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE, SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 01:19:04','mo','2025-10-13 12:37:00'),(282,0,0,393,26,415,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER&nbsp;&nbsp;&nbsp;DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 01:35:09','mo','2025-10-13 12:37:00'),(283,0,0,393,26,415,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>INJ LASIX</P>\r\n\r\n<P>INJ DOBUTAX</P>\r\n\r\n<P>INJ RENOCRIT</P>\r\n\r\n<P>TAB ECOTOR GOLD</P>\r\n\r\n<P>TAB SODACON</P>\r\n\r\n<P>TAB BISOBIS</P>\r\n\r\n<P>TAB TAMWELL</P>\r\n\r\n<P>SYP MOVICOL</P>\r\n\r\n<P>TAB CEFICOOL</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 01:35:09','mo','2025-10-13 12:37:00'),(284,0,0,273,20,283,0,0,NULL,'','DISCDIAG','','','<P>ACUTE ISCHAEMIC STROKE WITH GTCS CONVULSIONS +</P>\r\n\r\n<P>HYPONATREMIA + RECURRENT URO-SEPSIS&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>K/C/O: PARKINSON PLUS SYNDROME&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 09:53:06','mo','2025-10-11 10:25:30'),(285,0,0,273,20,283,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY&nbsp; :&nbsp;&nbsp;</STRONG>PARKINSON PLUS SYNDROME&nbsp;ON RX</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 09:53:06','mo','2025-10-11 10:25:30'),(286,0,0,273,20,283,0,0,NULL,'','HISTHOSPCOURSE','','','<P>80Y YEARS OLD MALE FEMALE ADMITTED IN HOSPITAL UNDER CARE OF DR ARCHIT RATHOD&nbsp;WITH&nbsp; 1 EPISODE OF GTCS TODAY AT HOME 7:30PM</P>\r\n\r\n<P>NO FEVER -NO VOMITING _</P>\r\n\r\n<P>ABOVE MENTION COMPLAIN. ALLPHYSICAL EXAMINATION DONE AFTER REQUIED INVESTIGATIONS SENT AND TREATMENT STARTED AS PER ADVISED.</P>\r\n\r\n<P>10/10/2025 ON VIEW OF PATIENT DROWSY AND DISORIENTED, HYPOTENSION ,URINE OUTPUT SO INJ.NORAD SUPPORT STARTED THEN PATIENT INCUBATION DONE AFTER SENT FOR MRI BRAIN AND AFTER REPORT DONE PATIENT KEEP ON VENTI. SUPPORT. GC EXPLAINED IN DETAILING TO RELATIVES.</P>\r\n\r\n<P>11/10/2025 ON REPORTS ARE NOTE, TRACHYCARDIA&nbsp; AND HYPOTENSION SO TREATMENT CONTINUES.</P>\r\n\r\n<P>ADVISED CONTINUES HOPSPITAL STAY AND TREATMENT VENTI SUPPORT BUT PATIENT RELATIVES ARE NO WILLING FOR FURTHER TREATMENT SO PATIENT DAMA WITH OWN RISK.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 09:53:06','mo','2025-10-11 10:25:30'),(287,0,0,397,376,421,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 09:57:57','','0000-00-00 00:00:00'),(288,0,0,397,376,421,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional gidiness without any&thinsp; cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 09:59:48','','0000-00-00 00:00:00'),(289,0,0,397,376,421,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--a-bsent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--bilateal high frq severe sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 10:00:00','darshan','2025-10-11 11:28:40'),(291,0,0,273,20,283,0,0,NULL,'','FOOD_DRUG_ALLERGIES','','','<P>NO ANY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 10:03:51','mo','2025-10-11 10:25:30'),(292,0,0,399,378,424,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 10:03:57','','0000-00-00 00:00:00'),(293,0,0,400,379,425,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtpmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 10:13:03','darshan','2025-10-11 10:16:25'),(294,0,0,400,379,425,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 10:13:07','','0000-00-00 00:00:00'),(295,0,0,273,20,283,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>INCUBATION DONE ON 10/10/2025&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 10:15:35','mo','2025-10-11 10:25:30'),(296,0,0,273,20,283,0,0,NULL,'','DISCCOND','','','<P>PR: 132/MIN</P>\r\n\r\n<P>BP:122/76 MMHG WITH INJ.NORAD 2X50 @10ML/HR</P>\r\n\r\n<P>SPO2 : 99 % ON VENTI A/CVC MODE 50 % FIO2&nbsp;</P>\r\n\r\n<P>TEMP : 98.6 F&nbsp;</P>\r\n\r\n<P>CVS : S1/S2 ++</P>\r\n\r\n<P>CNS : DISORIENTED /DROWSY, UNCOUSIOUS ++</P>\r\n\r\n<P>P/A : SOFT&nbsp;</P>\r\n\r\n<P>O/E : ET IN SITU +</P>\r\n\r\n<P>FOLEYS IN SITU +</P>\r\n\r\n<P>RT IN SITU ++</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>C/O: TRACHYCARDIA ++</P>\r\n\r\n<P>HYPOTENSION +</P>\r\n\r\n<P>URINE OUTPUT DECREASING,</P>\r\n\r\n<P>DROWSY+</P>\r\n\r\n<P>DISORIENTED</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 10:15:35','mo','2025-10-11 10:25:30'),(297,0,0,400,379,425,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---bialtelr high frq moderate sn deafness</p>\n\n<p>stabiloemtry---reduced vestiblar score</p>\n\n<p>vng--central&thinsp;vareity of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 10:16:34','darshan','2025-10-11 11:51:03'),(299,0,0,273,20,283,0,0,NULL,'','ADVICE','','','<P>ADVISE :</P>\r\n\r\n<P>- CONTINUES ICU CARE.</P>\r\n\r\n<P>- HOSPILIZATION.</P>\r\n\r\n<P>- VENTI SUPPORT.</P>\r\n\r\n<P>- INOTROPIC SUPPORT.</P>\r\n\r\n<P>- CONTINUES INTENSIVE CARE.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 10:17:40','mo','2025-10-11 10:25:30'),(300,0,0,273,20,283,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX -S 1.5GM IV BD</P>\r\n\r\n<P>INJ.PANTODAC 40MG IV OD</P>\r\n\r\n<P>INJ.VOMISET 4MG IV TDS</P>\r\n\r\n<P>INJ.LEVIGRESS 500MG IV TDS</P>\r\n\r\n<P>INJ.LACOSAM 100MG IV BD</P>\r\n\r\n<P>INJ.NORAD 2X50 @ ML/HR</P>\r\n\r\n<P>INJ.CLEXANE 0.6 MG S/C OD</P>\r\n\r\n<P>TAB ECOSPRIN 150MG&nbsp;</P>\r\n\r\n<P>TAB.CLAVIX 75MG</P>\r\n\r\n<P>TAB ATORVA&nbsp;</P>\r\n\r\n<P>TAB CLOBAZAM</P>\r\n\r\n<P>INJ.DYTOR&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 10:22:00','mo','2025-10-11 10:25:30'),(301,0,0,273,20,283,0,0,NULL,'','TREATDISC_TI','','','<P>ON GOING TREATMENT AS PER HOSPITAL.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 10:22:22','mo','2025-10-11 10:25:30'),(302,0,0,402,381,429,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ----mild positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 10:24:24','','0000-00-00 00:00:00'),(304,0,0,402,381,429,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-11 10:25:20','','0000-00-00 00:00:00'),(305,0,0,406,384,433,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 10:28:50','','0000-00-00 00:00:00'),(306,0,0,409,387,437,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>pta----bilaterl moderate to severe sn deafness --same as previous</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 10:37:34','darshan','2025-10-11 12:03:51'),(307,0,0,410,388,438,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---left side parin around ear</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 10:45:33','','0000-00-00 00:00:00'),(308,0,0,410,388,438,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left neuralgic pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 10:47:21','','0000-00-00 00:00:00'),(309,0,0,412,390,440,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow&thinsp; up case--partially better</p>\n\n<p>3 episodes of headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 10:53:33','darshan','2025-10-11 10:54:37'),(310,0,0,413,391,441,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 11:03:51','','0000-00-00 00:00:00'),(311,0,0,413,391,441,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR PAIN---3-4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 11:03:57','','0000-00-00 00:00:00'),(312,0,0,413,391,441,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right otitis externa</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 11:04:04','','0000-00-00 00:00:00'),(313,0,0,415,393,443,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n\n<p>occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 11:09:40','','0000-00-00 00:00:00'),(314,0,0,404,382,431,0,0,NULL,'','CC','ZZZ','Remark','URTI | 2 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-11 11:16:50','','0000-00-00 00:00:00'),(315,0,0,404,382,431,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-11 11:16:55','','0000-00-00 00:00:00'),(316,0,0,397,376,421,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 11:29:13','','0000-00-00 00:00:00'),(318,0,0,417,395,445,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--2-3 episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 11:32:49','','0000-00-00 00:00:00'),(319,0,0,416,394,444,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR DEAFNESS---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 11:36:53','','0000-00-00 00:00:00'),(320,0,0,416,394,444,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>BTM---i/n</p>\n\n<p>pta--right&thinsp; very severe to profound deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 11:36:59','darshan','2025-10-11 12:21:46'),(321,0,0,416,394,444,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT SUDDEN SNHL','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 11:37:18','','0000-00-00 00:00:00'),(322,0,0,419,397,448,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---since since 3-4&thinsp; day recurence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 11:40:05','','0000-00-00 00:00:00'),(323,0,0,257,242,457,0,0,NULL,'','CC','ZZZ','Remark','URTI | 3 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-11 11:43:49','','0000-00-00 00:00:00'),(324,0,0,257,242,457,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-11 11:43:54','','0000-00-00 00:00:00'),(325,0,0,396,375,420,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','drjayant','2025-10-11 11:44:20','','0000-00-00 00:00:00'),(327,0,0,397,376,421,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-11 11:44:39','','0000-00-00 00:00:00'),(328,0,0,400,379,425,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 11:51:44','','0000-00-00 00:00:00'),(330,0,0,424,402,453,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----8-10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 11:57:44','','0000-00-00 00:00:00'),(331,0,0,424,402,453,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling&thinsp; when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no assoc iated other cns&thinsp; symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 11:57:45','darshan','2025-10-11 12:00:19'),(332,0,0,424,402,453,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnet</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--wnl</p>\n\n<p>stabilomtyry--reduced vestibular score</p>\n\n<p>vng--left post cana lbppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:00:29','darshan','2025-10-11 12:36:09'),(334,0,0,426,404,455,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:09:00','','0000-00-00 00:00:00'),(335,0,0,426,404,455,0,0,NULL,'','HIST','ZZZ','Remark','<p>k/c/o---bialtelr vestibulopathy&thinsp;</p>\n\n<p>recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:09:19','','0000-00-00 00:00:00'),(336,0,0,426,404,455,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:09:43','','0000-00-00 00:00:00'),(337,0,0,426,404,455,0,0,NULL,'','DIAG','ZZZ','Remark','VESTIBULOPATHY  VS OTHER','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:09:49','','0000-00-00 00:00:00'),(338,0,0,391,373,476,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-10-11 12:11:43','','0000-00-00 00:00:00'),(340,0,0,400,379,425,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MEANVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:14:23','','0000-00-00 00:00:00'),(341,0,0,438,416,469,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:25:09','','0000-00-00 00:00:00'),(342,0,0,439,417,471,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:29:07','','0000-00-00 00:00:00'),(343,0,0,439,417,471,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left sm swelling reduced</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:29:17','','0000-00-00 00:00:00'),(345,0,0,439,417,471,0,0,NULL,'','MADVICE','ZZZ','Remark','MASSAGE AT SM REGION','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:31:31','','0000-00-00 00:00:00'),(346,0,0,424,402,453,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:36:14','','0000-00-00 00:00:00'),(347,0,0,424,402,453,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:36:54','','0000-00-00 00:00:00'),(349,0,0,56,7,56,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 12:38:51','mo','2025-10-11 12:52:40'),(350,0,0,56,7,56,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3&nbsp;DAYS&nbsp;</P>\r\n\r\n<P>HOLD ANTIHYPERTENSIVE MEDICINE TILL FOLLOW UP&nbsp;</P>\r\n\r\n<P>TAKE PLENTY OF LIQUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 12:38:51','mo','2025-10-11 12:52:40'),(351,0,0,56,7,56,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ORNIFLOX&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 3&nbsp;DAYS&nbsp;</P>\r\n\r\n<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp;FOR 3&nbsp;DAYS</P>\r\n\r\n<P>CAP ENUFF (100MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; SOS&nbsp; &nbsp; &nbsp; &nbsp;IF DIARRHOEA</P>\r\n\r\n<P>CAP ROTOGUT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>OWN MEDICINE:</P>\r\n\r\n<P>TAB LINABITE (5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; BEFORE FOOD&nbsp;</P>\r\n\r\n<P>TAB GLYCOMET TRIO&nbsp; (2/0.2)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;0--1/2--0&nbsp; BEFORE FOOD</P>\r\n\r\n<P>TAB ROSEDAY (5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp;&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 12:38:51','mo','2025-10-11 12:52:40'),(352,0,0,423,401,452,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--8-10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:40:52','','0000-00-00 00:00:00'),(353,0,0,423,401,452,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:41:02','','0000-00-00 00:00:00'),(354,0,0,423,401,452,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:41:30','','0000-00-00 00:00:00'),(356,0,0,436,414,467,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-11 12:42:13','','0000-00-00 00:00:00'),(357,0,0,423,401,452,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:42:17','','0000-00-00 00:00:00'),(358,0,0,443,421,478,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:44:29','','0000-00-00 00:00:00'),(360,0,0,424,402,453,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:47:31','','0000-00-00 00:00:00'),(361,0,0,446,424,481,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case --mild sense of imbalance&thinsp;</p>\n\n<p>headache --better&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-11 12:57:21','','0000-00-00 00:00:00'),(362,0,0,450,428,485,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-10-11 13:10:26','','0000-00-00 00:00:00'),(363,0,0,450,428,485,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-11 13:10:34','','0000-00-00 00:00:00'),(364,0,0,321,29,422,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ABDOMINAL WALL GRANULOMA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 17:25:06','mo','2025-10-11 19:21:28'),(365,0,0,321,29,422,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 32 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:SWELLING AND REDNESS IN UMBILICAL&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PUS DISCHARGE FROM THAT SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PAIN AT THAT SITE&nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 22-25 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG LOCAL PART DONE ON 10/10/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-91/MIN, BP-130/80MMHG, SPO2-99% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nGRANULOMA EXCISION DONE BY DR PRATAPSINH DODIYA ON 11/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 17:25:06','mo','2025-10-11 19:21:28'),(366,0,0,321,29,422,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>GRANULOMA EXCISION DONE BY DR PRATAPSINH DODIYA ON 11/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 17:25:06','mo','2025-10-11 19:21:28'),(367,0,0,321,29,422,0,0,NULL,'','OTNOTE','','','<p>PER-OP FINDINGS:</p>\r\n\r\n<p>- ABDOMINAL WALL GRANULOMA AT UMBILICAL AREA</p>\r\n\r\n<p>- INCISION KEPT BELOW UMBILICUS</p>\r\n\r\n<p>- GRANULOMA REAHING UPTO PERITONEAL CAVITY</p>\r\n\r\n<p>- GRANULOMA EXCISION DONE</p>\r\n\r\n<p>- HEMOSTASIS ACHIEVED</p>\r\n\r\n<p>- CAVITY CLEAR WITH SALINE</p>\r\n\r\n<p>- FASCIA CLOSED WITH PROLENE NO-1</p>\r\n\r\n<p>- SKIN CLOSED WITH ETHILON 3-0</p>\r\n\r\n<p>- DRESSING KEPT&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 17:25:06','mo','2025-10-11 19:21:28'),(368,0,0,321,29,422,0,0,NULL,'','DISCCOND','','','<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 17:25:06','mo','2025-10-11 19:21:28'),(369,0,0,321,29,422,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3&nbsp;DAYS AT EVENING (5 TO 7 PM)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 17:25:06','mo','2025-10-11 19:21:28'),(370,0,0,321,29,422,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 17:27:42','mo','2025-10-11 19:21:28'),(371,0,0,321,29,422,0,0,NULL,'','TREATDISC_TI','','','<P>TAB PHEXIN (500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;&nbsp;1--0--1&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;.........FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS-P&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 17:27:42','mo','2025-10-11 19:21:28'),(372,0,0,456,433,493,0,0,NULL,'','DIAG','ZZZ','Remark','PLANTAR FASCITIS RIGHT SIDE','','',0,'0000-00-00 00:00:00','drsagar','2025-10-11 18:23:30','','0000-00-00 00:00:00'),(373,0,0,457,434,495,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT SIDE LOWER CHEST PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-11 18:26:36','','0000-00-00 00:00:00'),(374,0,0,458,435,497,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER AND MIDDLE BACK PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-11 18:36:44','','0000-00-00 00:00:00'),(375,0,0,16,12,150,0,0,NULL,'','DISCCOND','','','<P>NO PAIN</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 18:40:46','mo','2025-10-11 18:40:47'),(376,0,0,16,12,150,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE 250MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB PERINORM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 10ML --0--10ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 18:40:46','mo','2025-10-11 18:40:47'),(377,0,0,429,37,488,0,0,NULL,'','DISCDIAG','','','<P><STRONG>SEVERE ANEMIA</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM,HTN,DYSLIPIDEMIA,CA BREAST METS.</STRONG></P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 18:48:09','mo','2025-10-11 22:28:56'),(378,0,0,429,37,488,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 18:48:09','mo','2025-10-11 22:28:56'),(379,0,0,429,37,488,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 62 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM,HTN,DYSLIPIDEMIA,CA BREAST METS.<BR />\r\nH/O: PATIENT ADMITTED HERE FOR UROSEPSIS WITH AKI WITH SEVERE ANEMIA (? DUE TO UPPER GI BLEED) WITH COMPRESSION OF SUBCLAVIAN VEIN&nbsp;&nbsp;<BR />\r\nC/O:SEVERE GENERALISED WEAKNESS&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PAIN IN LEFT HAND&nbsp;</P>\r\n\r\n<P>O/E: PALLOR++</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;CVP IN SITU (SINCE 1 MONTH)&nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 7-8 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-74/MIN, BP-110/70MMHG, SPO2-97% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF LOW HB(7.5) 2 UNIT RCC GIVEN ( BGRH- B +VE)</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 18:48:09','mo','2025-10-11 22:28:56'),(380,0,0,459,436,498,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-11 19:33:42','','0000-00-00 00:00:00'),(381,0,0,398,377,423,0,0,NULL,'','DIAG','ZZZ','Remark','BRACHIAL CYST','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-11 19:56:16','','0000-00-00 00:00:00'),(382,0,0,448,426,483,0,0,NULL,'','DIAG','ZZZ','Remark','BOO','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-11 20:00:58','','0000-00-00 00:00:00'),(383,0,0,448,426,483,0,0,NULL,'','DIAG','ZZZ','Remark','IHD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-11 20:01:02','','0000-00-00 00:00:00'),(384,0,0,448,426,483,0,0,NULL,'','DIAG','ZZZ','Remark','HTN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-11 20:01:04','','0000-00-00 00:00:00'),(385,0,0,448,426,483,0,0,NULL,'','DIAG','ZZZ','Remark','DM','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-11 20:01:07','','0000-00-00 00:00:00'),(386,0,0,234,30,426,0,0,NULL,'','DISCDIAG','','','<P><STRONG>POST TRAUMATIC RAW AREA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 20:58:00','mo','2025-10-12 13:26:41'),(387,0,0,234,30,426,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 20:58:00','mo','2025-10-12 13:26:41'),(388,0,0,234,30,426,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 87 YEARS OLD MALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nH/O: HIT BY BIKE AT RACECOURSE WHIILE WALKING BEFORE 1.5 MONTH<BR />\r\nC/O: LEFT FOOT PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; LEFT FOOT INJURY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SWELLING &AMP; REDNESS OF THAT AREA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PUS DISCHARGE FROM THAT SITE</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 1.5 MONTH&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-111/MIN, BP-136/90MMHG, SPO2-94% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nLEFT FOOT RAW AREA DEBRIDEMENT AND SKIN GRAFTING DONE BY DR PRATAPSINH DODIYA ON 11/10/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 20:58:00','mo','2025-10-12 13:26:41'),(389,0,0,429,37,488,0,0,NULL,'','DISCCOND','','','<P>AFBERIL</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 22:28:56','','0000-00-00 00:00:00'),(390,0,0,429,37,488,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 22:28:56','','0000-00-00 00:00:00'),(391,0,0,429,37,488,0,0,NULL,'','TREATGIVEN_TI','','','<P>2 UNIT RCC</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ CAL. GLUCONATE</P>\r\n\r\n<P>TAB BISOBIS</P>\r\n\r\n<P>TAB NEXPROFAT</P>\r\n\r\n<P>TAB STAGLIM M1</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 22:28:56','','0000-00-00 00:00:00'),(392,0,0,429,37,488,0,0,NULL,'','TREATDISC_TI','','','<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>TAB BISOBIS</P>\r\n\r\n<P>TAB STAGLIM M1</P>\r\n\r\n<P>TAB NEXPROFAST</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-11 22:28:56','','0000-00-00 00:00:00'),(393,0,0,403,32,430,0,0,NULL,'','DISCDIAG','','','<P><STRONG>BILATERAL INGUINAL HERNIA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 00:24:06','mo','2025-10-13 17:02:50'),(394,0,0,403,32,430,0,0,NULL,'','FOOD_DRUG_ALLERGIES','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-12 00:24:06','mo','2025-10-13 17:02:50'),(395,0,0,403,32,430,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 56 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nH/O: MIPH BEFORE 2 YEAR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; OPEN APPENDICECTOMY IN 1993<BR />\r\nC/O: RIGHT INGUINAL PAIN SINCE 13-15 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; RIGHT INGUINAL SWELLING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION+</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO BURNING MICTURITION</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 13-15 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-66/MIN, BP-110/80MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nLAPAROSCOPIC B/L INGUINAL HERNIOPLASTY(TAPP) DONE BY DR PRATAPSINH DODIYA ON 11/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO ICU.</P>\r\n\r\n<P>FURTHER ICU STAY UNEVENT FUL SO PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>REVIEW OF DR ARCHIT RATHOD DONE AND FOLLOW HIS ALL ADVICE.</P>\r\n\r\n<P>REFERENCE OF DR ARCHIT RATHOD DONE ON 12/10/2025 AND FOLLOW HIS ALL ADVICE.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\nSO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 00:24:06','mo','2025-10-13 17:02:50'),(396,0,0,403,32,430,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>LAPAROSCOPIC B/L INGUINAL HERNIOPLASTY(TAPP) DONE BY DR PRATAPSINH DODIYA ON 11/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 00:24:06','mo','2025-10-13 17:02:50'),(397,0,0,403,32,430,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP ADVICE 5 DAYS</P>\r\n\r\n<P>AVOID HEAVY WEIGHT LIFT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 00:24:06','mo','2025-10-13 17:02:50'),(398,0,0,403,32,430,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>SYP SUCRAWELL O</P>\r\n\r\n<P>ALLEX LOGENGES</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 00:24:06','mo','2025-10-13 17:02:50'),(399,0,0,465,40,506,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-12 00:44:02','mo','2025-10-13 19:47:47'),(400,0,0,465,40,506,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 43 YEARS OLD MALE PATIENT PRESENT WITH,<BR />\r\nH/O : ALCOHOLIC<BR />\r\nK/C/O: HTN, DYSLIPIDEMIA, HEPATOMEGALY FATTY LIVER GRADE - I&nbsp; CHANGES.<BR />\r\nC/O: GEN. WEAKNESS,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ALTERED SENSORIOUM,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;URINE UNCONTROL</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FALL DOWN 2 TIMES.</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; TODAY EVENING.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP-&nbsp; 98.0`F<BR />\r\nPR- 82/MIN<BR />\r\nBP- 120/80 MMHG&nbsp;<BR />\r\nSPO2-98%&nbsp; ON RA&nbsp;<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS- SLEEPY, CONSIOUS, ORIENTED, FOLLO VERBAL COMAND.<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11-10-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>START SYMPTOMATIC AND SUPPORTIVE RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12-10-2025,</P>\r\n\r\n<P>MRI BRAIN DONE ; REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>REFERENCE OF DR KAUMIL KOTHARI(NEUROPHYSICIAN) DONE AND FOLLOW HIS ALL ADVICE.</P>\r\n\r\n<P>REFERENCE OF DR RISHIKESH KALARIA(NEPHROLOGIST) DONE AND ALL HIS ADVICE FOLLOWED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13-10-2025,</P>\r\n\r\n<P>FURTHER ICU STAY UNEVENT FUL SO PATIENT SHIFTED TO WARD</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.<BR />\r\nPATIENT RESPONDS WELL WITH ONGOING TREATMENT.</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 00:44:02','mo','2025-10-13 19:47:47'),(401,0,0,464,39,505,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ICD CODE:&nbsp;</STRONG>L02.411&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>BILATERAL DEVELOPING AXILLARY ABSCESS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 00:46:51','mo','2025-10-30 11:39:13'),(402,0,0,464,39,505,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-12 00:46:51','mo','2025-10-30 11:39:13'),(403,0,0,464,39,505,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 57 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nH/O: APPENDICECTOMY BEFORE 20 YEAR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; TUBECTOMY BEFORE 20 YEAR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; JOINT PAIN SINCE 2 YEAR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; TOOTH EXTRACTION YESTERDAY<BR />\r\nC/O:HIGH GRADE FEVER WITH CHILL</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PAIN AND SWELLING IN BOTH AXILLA (RT &GT; LEFT)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; HEADACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA, VOMITING(2-3&nbsp;EPISODE TODAY)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 5-6 FOR THAT PT PRIMARY CONSULTED OPD BASED AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-101.6&#39;F, PR-105/MIN, BP-110/72MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>TYPHI DOT DONE ON 12/10/2025 NEGATIVE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 00:46:51','mo','2025-10-30 11:39:13'),(404,0,0,464,39,505,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS.&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 00:46:51','mo','2025-10-30 11:39:13'),(405,0,0,464,39,505,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX S</P>\r\n\r\n<P>INJ LINOX</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ BUSCOPAN</P>\r\n\r\n<P>TAB LANOL ER</P>\r\n\r\n<P>NEOSPORIN POWDER</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 00:46:51','mo','2025-10-30 11:39:13'),(406,0,0,385,22,406,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 4 DAYS</P>\r\n\r\n<P>PHYISOTHERAPY AS EXPLAINED</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 00:53:55','mo','2025-10-14 13:17:46'),(407,0,0,465,40,506,0,0,NULL,'','DISCDIAG','','','<P><STRONG>HEPATIC ENCEPHALOPATHY</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, DYSLIPIDEMIA, HEPATOMEGALY FATTY LIVER GRADE - I&nbsp; CHANGES</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:02:10','mo','2025-10-13 19:47:47'),(408,0,0,465,40,506,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. RABICROSS</P>\r\n\r\n<P>INJ. QUICKSET</P>\r\n\r\n<P>INJ. NS&nbsp;</P>\r\n\r\n<P>INJ. THIAMINE</P>\r\n\r\n<P>LIQ LOOZ</P>\r\n\r\n<P>TAB QUTAN</P>\r\n\r\n<P>INJ TRULEV</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>INJ DICLO</P>\r\n\r\n<P>TAB LANOL ER</P>\r\n\r\n<P>INJ OPTINEURIN</P>\r\n\r\n<P>TAB NAXITO</P>\r\n\r\n<P>TAB NAXITO PLUS</P>\r\n\r\n<P>TAB LIBRIUM</P>\r\n\r\n<P>HEPAGARD SACHET</P>\r\n\r\n<P>CAP MAC RD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:02:10','mo','2025-10-13 19:47:47'),(409,0,0,286,33,434,0,0,NULL,'','DISCDIAG','','','<P><STRONG>POSTERIOR ANAL FISSURE</STRONG></P>\r\n\r\n<P><STRONG>SKIN TAG</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:03:52','mo','2025-10-12 13:08:36'),(410,0,0,286,33,434,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:03:52','mo','2025-10-12 13:08:36'),(411,0,0,286,33,434,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 27 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nC/O: PAIN IN ANUS SINCE 1 WEEK</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BLEEDING PER RECTUM</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION</P>\r\n\r\n<P>O/E: POSTERIOR ANAL FISSURE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SKIN TAG++</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 1 WEEK FOR THAT PT PRIMARY CONSULTED AT OPD BASED AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-99/MIN, BP-124/70MMHG, SPO2-96% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nLATERAL INTERNAL SPHINCTEROTOMY + SKIN TAG EXCISION DONE BY DR PRATAPSINH DODIYA ON 11/10/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:03:52','mo','2025-10-12 13:08:36'),(412,0,0,286,33,434,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>LATERAL INTERNAL SPHINCTEROTOMY + SKIN TAG EXCISION DONE BY DR PRATAPSINH DODIYA ON 11/10/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:03:52','mo','2025-10-12 13:08:36'),(413,0,0,286,33,434,0,0,NULL,'','OTNOTE','','','<p>-TIGHT INTERNAL SPHINCTER+</p>\r\n\r\n<p>-POSTERIOR ANAL FISSURE AT 6 O&#39;CLOCK POSITION</p>\r\n\r\n<p>-SKIN TAG AT 12 &amp; 6 O&#39;CLOCK POSITION</p>\r\n\r\n<p>-SKIN TAG EXCISION DONE</p>\r\n\r\n<p>-LATERAL INTERNAL SPHINCTEROTOMY AT 3 O&#39;CLOCK POSITION.</p>\r\n\r\n<p>-HEMOSTASIS ACHIEVED</p>\r\n\r\n<p>-DRESSING KEPT</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:03:52','mo','2025-10-12 13:08:36'),(414,0,0,286,33,434,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS (EVENING 5 TO 7)</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n\r\n<P>HOT SEAT BATH</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:03:52','mo','2025-10-12 13:08:36'),(415,0,0,286,33,434,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>SYP CREMAFFIN PLUS</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>TAB ZENFLOX OZ</P>\r\n\r\n<P>TAB ULPAN DSR</P>\r\n\r\n<P>TAB AKILOS SP</P>\r\n\r\n<P>SYP CREMAFFIN PLUS</P>\r\n\r\n<P>LOX JELLY 2%</P>\r\n\r\n<P>SUCRAL ANO CREAM</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:03:52','mo','2025-10-12 13:08:36'),(416,0,0,234,30,426,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>LEFT FOOT RAW AREA DEBRIDEMENT AND SKIN GRAFTING&nbsp;DONE BY DR PRATAPSINH DODIYA ON 11/10/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:11:33','mo','2025-10-12 13:26:41'),(417,0,0,234,30,426,0,0,NULL,'','OTNOTE','','','<p>-LEFT FOOT RAW AREA</p>\r\n\r\n<p>-SKIN HAEVESTED FROM LEFT SIDE THIGH ANTERIOR ASPECT</p>\r\n\r\n<p>-HEMOSTASIS ACHIEVED</p>\r\n\r\n<p>-JELLONATE DRESSING KEPT</p>\r\n\r\n<p>-LEFT FOOT RAW AREA DEBRIDEMENT DONE</p>\r\n\r\n<p>-SKIN APPLIEDE OVER RAW AREA &amp; FIXED WITH SKIN STAPPLER</p>\r\n\r\n<p>-HEMOSTASIS ACHIEVED</p>\r\n\r\n<p>-CAST DRESSING KEPT</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:11:33','mo','2025-10-12 13:26:41'),(418,0,0,234,30,426,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>DRESSING TOMORROW EVENING 6 PM</P>\r\n\r\n<P>CARE OF THIGH DRESSING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:11:33','mo','2025-10-12 13:26:41'),(419,0,0,234,30,426,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:11:33','mo','2025-10-12 13:26:41'),(420,0,0,452,38,489,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LEFT THALAMOCAPSULAR HAMORRHAGE&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:12:07','mo','2025-10-25 21:21:49'),(421,0,0,452,38,489,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:12:07','mo','2025-10-25 21:21:49'),(422,0,0,452,38,489,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 70 YEARS OLD FEMALE&nbsp; PATIENT PRESENT WITH,</P>\r\n\r\n<P>KC/O; HTN<BR />\r\nC/O: SUDDEN ONSET OF RIGHT SIDE WEAKNESS, DROWSINESS,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;UNRESPONSIVNESS,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;PRESPIRATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BREATHING DIFFICULTY</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; TODAY 4.30 PM.<BR />\r\nPRIMARY TREATMENT TAKEN AT GENERAL PHYSIAN.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>NO H/O FEVER, HEADACHE, NUMBNESS, VOMITING,GTCS.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 97.6`F&nbsp;<BR />\r\nPR- 78/MIN<BR />\r\nBP- 210/110 MMHG&nbsp;<BR />\r\nSPO2-98% ON 2LIT O2&nbsp;<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS- DROWSY, NOT FOLLO VERBAL COMAND, GCS = E2V1M4,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; RIGHT SIDED WEAKNESS,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; PUPIL - BERAL<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11-10-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF ASPIRATION ENDROTRACEHAL INTUBATION DONE ET TUBE - 7.5 NO. AND PUT ON VENTILATOR SUPPORT AC/VC MODE.</P>\r\n\r\n<P>INJ. PROPOFOL DRIP START.</P>\r\n\r\n<P>MRI BRAIN DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>REFERENCE DONE DR. RIDHAM KHANDERIYA (NEUROSURGEON) ADVICE FOLLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12-10-2025,</P>\r\n\r\n<P>PATIENT UNDER SEDATION ON VENTIALTOR SUPPORT.</P>\r\n\r\n<P>RTF START.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13-10-2025,</P>\r\n\r\n<P>SEDATION OFF.</P>\r\n\r\n<P>CT BRAIN DONE REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>AC/VC AND CPAP SUPPORT ALTERNATE GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14-10-2025,</P>\r\n\r\n<P>AC/VC AND CPAP SUPPORT ALTERNATE GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15-10-2025,</P>\r\n\r\n<P>O2 SUPPORT 2LIT GIVEN VIA ET TUBE.</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, RIGHT SIDE WEAKNESS, LEFT SIDE MOVEMENT +NT, FOLLO COMAND.</P>\r\n\r\n<P>EXTUBATION DONE, O2 SUPPORT GIVENA VAI MASK.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, RIGHT SIDE WEAKNESS, LEFT SIDE MOVEMENT +NT, FOLLO COMAND.</P>\r\n\r\n<P>CHEST PT AND LIMB PHYSIO START.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, RIGHT SIDE WEAKNESS, LEFT SIDE MOVEMENT +NT, FOLLO COMAND.</P>\r\n\r\n<P>CHEST PT AND LIMB PHYSIO GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, RIGHT SIDE WEAKNESS, LEFT SIDE MOVEMENT +NT, FOLLO COMAND.</P>\r\n\r\n<P>CHEST PT AND LIMB PHYSIO GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, RIGHT SIDE WEAKNESS, LEFT SIDE MOVEMENT +NT, FOLLO COMAND.</P>\r\n\r\n<P>CHEST PT AND LIMB PHYSIO GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, RIGHT SIDE WEAKNESS, LEFT SIDE MOVEMENT +NT, FOLLO COMAND.</P>\r\n\r\n<P>CHEST PT AND LIMB PHYSIO GIVEN.</P>\r\n\r\n<P>CT BRAIN DONE - REPROT ATTACH WITH FILE.</P>\r\n\r\n<P>PATIENT SHIFT TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22-10-2025,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23-10-2025,</P>\r\n\r\n<P>OFF O2 TRIAL GIVEN</P>\r\n\r\n<P>WHEEL CHAIR MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24-10-2025,</P>\r\n\r\n<P>OFF O2 TRIAL GIVEN PATIENT MAINTAIN WELL ON ROOM AIR SO O2 SUPPORT OFF</P>\r\n\r\n<P>CONTINUE SAME RX GIVEN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>25-10-2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:12:07','mo','2025-10-25 21:21:49'),(423,0,0,452,38,489,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. UNITREX S&nbsp;</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. VOMIEST</P>\r\n\r\n<P>INJ. LEVIGRESS</P>\r\n\r\n<P>INJ. MANITOL</P>\r\n\r\n<P>INJ. VIT K</P>\r\n\r\n<P>INJ. TRENEXA</P>\r\n\r\n<P>INJ. DNS/RL.</P>\r\n\r\n<P>INJ. ELDERVIT</P>\r\n\r\n<P>TAB LEVIGRESS</P>\r\n\r\n<P>SYP POTKOLAR</P>\r\n\r\n<P>TAB STATEL</P>\r\n\r\n<P>TAB MODALART</P>\r\n\r\n<P>NEB DUOLIN/BUDACORT</P>\r\n\r\n<P>NEB MUCOMIX</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>PROTEIN POWDER</P>\r\n\r\n<P>LIQ LOOS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:12:07','mo','2025-10-25 21:21:49'),(424,0,0,224,31,428,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PERIANAL ABSCESS</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM II</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:16:35','mo','2025-10-12 09:44:16'),(425,0,0,224,31,428,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:16:35','mo','2025-10-12 09:44:16'),(426,0,0,224,31,428,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 55 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II<BR />\r\nH/O: TLH BEFORE 22 DAYS<BR />\r\nC/O: PAIN IN ANAL REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SWELING, REDNESS, PUS DISCHARGE FROM THAT SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 15-20 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-75/MIN, BP-110/70MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nINCISION &AMP; DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 11/10/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:16:35','mo','2025-10-12 09:44:16'),(427,0,0,224,31,428,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3&nbsp;DAYS EVENING (5 TO 7)</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:16:35','mo','2025-10-12 09:44:16'),(428,0,0,224,31,428,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>TAB ZIFI</P>\r\n\r\n<P>TAB DOMPAN</P>\r\n\r\n<P>TAB HYOSIMAX S</P>\r\n\r\n<P>SYP CREMAFFIN PLUS</P>\r\n\r\n<P>METROGYL P OINTMENT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:16:35','mo','2025-10-12 09:44:16'),(429,0,0,224,31,428,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>INCISION &AMP; DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 11/10/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:19:15','mo','2025-10-12 09:44:16'),(430,0,0,224,31,428,0,0,NULL,'','OTNOTE','','','<p>-PERIANAL ABSCESS AT 12 O&#39;CLOCK POSITION</p>\r\n\r\n<p>-SMALL ABSCESS CAVITY</p>\r\n\r\n<p>-INCISION KEPT</p>\r\n\r\n<p>-WHOLE PUS DRAINED</p>\r\n\r\n<p>-ABSCESS CAVITY NOT COMMUNICATED WITH ANUS</p>\r\n\r\n<p>-HEMOSTASIS ACHIEVED</p>\r\n\r\n<p>-DRESSING KEPT</p>\r\n\r\n<p>-PUS SENT FOR HPE</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:19:15','mo','2025-10-12 09:44:16'),(431,0,0,394,28,417,0,0,NULL,'','DISCDIAG','','','<P>ALTERED SENSORIUM UNDER INVESTIGATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:22:22','mo','2025-10-12 12:06:24'),(432,0,0,394,28,417,0,0,NULL,'','FOOD_DRUG_ALLERGIES','','','<P>DICLO REACTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:22:22','mo','2025-10-12 12:06:24'),(433,0,0,394,28,417,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:22:22','mo','2025-10-12 12:06:24'),(434,0,0,394,28,417,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 80 YEARS OLD FEMAEL&nbsp; PATIENT P/W<BR />\r\nH/O : DOMESTIC FALL DOWN &nbsp;(DUE TO IMBALANCE) BEFORE 4 DAYS, RX TAKEN AT G.T SHETH HOSPITAL(CONSERVATIVE RX)<BR />\r\nK/C/O: ALZHEIMER&#39;S DISEASE.<BR />\r\nC/O: INSOMNIA;DECREASED ORAL&nbsp;INTAKE,ALTERED SENSORIUN, FORGETFULNESS,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; URINARY INCONTINENCE;BACKPAIN.</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; 2 DAYS&nbsp;<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 97.0`F<BR />\r\nPR- 100/MIN<BR />\r\nBP- 168/96 MMHG&nbsp;<BR />\r\nSPO2-90% ON RA&nbsp;<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS- DROWSY,NOT F/V/C, MOVING ALL 4&nbsp;LIMBES,PUPIL-BERL<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>RBS-156 G/DL</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10-10-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>FOLEY&#39;S CATHETER DONE.WITH ALL ASEPTIC PRECAUTIONS.</P>\r\n\r\n<P>URINE ROUTINE MICRO SENT.</P>\r\n\r\n<P>RYLE&#39;S TUBE DONE.RT FEEDING STARTED.</P>\r\n\r\n<P>IN VIEW OF ALTERED SENSORIUM SO,ADV:MRI BRAIN AND NEUROPHYSICIAN OPINION.RELATIVE REFUSED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11-10-25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/DISORIENTED</P>\r\n\r\n<P>ORTHOPEDIC DR.SAGAR KHANPARA REFERENCE DONE.FOLLOWED ALL HIS ADVICE.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12-10-2025,</P>\r\n\r\n<P>PATIENT CONSCIOUS/DISORIENTED</P>\r\n\r\n<P>U/O ADEQUATE.</P>\r\n\r\n<P>PATIENT NEED FURTHER TREATMENT BUT RELATIVE WANT TO PATIENT DISCHARGED AGAINST MEDICAL ADVICE.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:22:22','mo','2025-10-12 12:06:24'),(435,0,0,394,28,417,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. RABICROSS</P>\r\n\r\n<P>INJ. QUIKSET</P>\r\n\r\n<P>INJ. NS</P>\r\n\r\n<P>INJ. VITNEURIN</P>\r\n\r\n<P>TAB. TELSAR</P>\r\n\r\n<P>TAB. TELMICON LN</P>\r\n\r\n<P>TAB. SERADASE AP</P>\r\n\r\n<P>TAB. BONEWELL PLUS&nbsp;</P>\r\n\r\n<P>TAB&nbsp; SERENACE</P>\r\n\r\n<P>UPRISE D3 SACHET</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:22:22','mo','2025-10-12 12:06:24'),(436,0,0,239,18,246,0,0,NULL,'','DISCDIAG','','','<P><STRONG>RIGHT LEG CELLULITIS WITH GANGRENE OF TOE</STRONG></P>\r\n\r\n<P><STRONG>ALCOHOLIC LIVE DISEASE (DECOMPENSATED)</STRONG></P>\r\n\r\n<P><STRONG>SEPTICEMIC SHOCK + ARF</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:24:47','mo','2025-10-18 14:19:44'),(437,0,0,239,18,246,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 45&nbsp;YEARS OLD MALE&nbsp;PATIENT PRESENT WITH,<BR />\r\nH/O :&nbsp; NON HEALING ULCER (SHOE BITE RIGHT FOOT) SICNE 2 MONTH.<BR />\r\nK/C/O: DM<BR />\r\nC/O: GEN.&nbsp;WEAKNESS,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA, VOMINTING, LOOSE MOTION,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; INTERMITTENT FEVER WITH RIGOR,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; RIGHT LOWER LIMB PAIN WITH SWELLING WITH MULTIPLE JOINT PAIN,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PUS DISCHARGE SINCE LAST 1 WK.</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PRESPIRATION, DROWSINESS LAST 3-4 HRS.</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE 2-3&nbsp; DAYS&nbsp;<BR />\r\nPRIMARY TREATMENT TAKEN AT DR.V.R VACHHRAJANI.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 96.8`F<BR />\r\nPR- 80/MIN<BR />\r\nBP- 70/50 MMHG&nbsp;<BR />\r\nSPO2-94% ON RA&nbsp;<BR />\r\nRR-14/MIN</P>\r\n\r\n<P>RBS - 41MG/DL.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS- DROWSY, NOT FOLLO VERBAL COMAND, PUPIL - BERL<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>09-10-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF HYPOGLYCEMIA INJ. D25% 200 ML GIVEN.</P>\r\n\r\n<P>SEEN BY DR. ARCHIT RATHOD (MD INTENSIVIST) ADVICE FOLLOWED.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION INJ.NORAD START BY INFUSION PUMP.</P>\r\n\r\n<P>ONE UNIT SDP GIVEN.</P>\r\n\r\n<P>FOLY`S CATH DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10-10-2025,</P>\r\n\r\n<P>INCISION AND DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 10/10/2025 UNDER REGIONAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P><BR />\r\n&nbsp;</P>\r\n\r\n<P>USG ABDOMEN DONE REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>ONE UNIT SDP GIVEN.</P>\r\n\r\n<P>INJ. ALBUMIN GIVEN.</P>\r\n\r\n<P>ANTIBIOTIC STEP UP.</P>\r\n\r\n<P>CVP DONE BY DR. CHITANYSINH GOHIL.</P>\r\n\r\n<P>BLOOD CULTURE S/O - GRAM NEGATIVE BACILLI ARE SEEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>INJ. NORAD SUPPORT CONTINUE.</P>\r\n\r\n<P>REFERENCE DONE DR. RISHIKESH KALARIYA (GASTROPHYSIAN) ADVICE FOLLOWED.</P>\r\n\r\n<P>RIGHT LOWER LIMB ARTERIAL AND VENOUS DOPPLER DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>RIGHT FOOT DRESSING DONE.</P>\r\n\r\n<P>RT DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>RIGHT FOOT DRESSING DONE.</P>\r\n\r\n<P>ONE UNIT SDP GIVEN.</P>\r\n\r\n<P>RTF START.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13-10-2025,</P>\r\n\r\n<P>CHEST X-RAY DONE&nbsp;</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>INJ. KCL 2 AMP GIVEN BY S/P.</P>\r\n\r\n<P>O2 SUPPORT 2 LIT VIA NC.</P>\r\n\r\n<P>REFERENCE DONE DR. RISHIKESH KALARIYA (GASTROENTROLOGIST) ADVICE FOLLOWED.</P>\r\n\r\n<P>INJ. NORAD SUPPROT OFF.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>INJ. KCL 2 AMP GIVEN BY S/P.</P>\r\n\r\n<P>O2 SUPPORT 2 LIT VIA NC.</P>\r\n\r\n<P>FURHTER ICU STAY WAS UNEVENTFULL SO PATIENT SHIFTED TO WARD WITH O2 SUPPORT&nbsp;</P>\r\n\r\n<P>RYLES TUBE REMOVE BY PATIENT HIMSELF</P>\r\n\r\n<P>ORALLY SIPS STARTED PATIENT TOLERATE WELL</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15/10/2025,</P>\r\n\r\n<P>ABG WITH LACTATE DONE</P>\r\n\r\n<P>IN A VIEW OF HYPOXIA AND PATIENT BEING TACHYPNIC PATIENT SHIFT TO ICU.</P>\r\n\r\n<P>ONE UNIT RCC GIVEN.</P>\r\n\r\n<P>O2 SUPPORT GIVEN VIA MASK.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16-10-2025,</P>\r\n\r\n<P>PATIENT SHIFT TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17-10-2025</P>\r\n\r\n<P>SPIROMETRY STARTED</P>\r\n\r\n<P>CATHTER CLAMPING STARTED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18-10-2025</P>\r\n\r\n<P>CATHETER CLAMP AND REMOVED</P>\r\n\r\n<P>SPIROMETRY CONTINUE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.<BR />\r\nPATIENT RESPONDS WELL WITH ONGOING TREATMENT.</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:24:47','mo','2025-10-18 14:19:44'),(438,0,0,239,18,246,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:43:29','mo','2025-10-18 14:19:44'),(439,0,0,239,18,246,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. MERO</P>\r\n\r\n<P>INJ. TARGOCID</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ. ALBUMIN</P>\r\n\r\n<P>INJ. THAYA B</P>\r\n\r\n<P>INJ. TRAMADOL</P>\r\n\r\n<P>INJ. VIT K</P>\r\n\r\n<P>LIQ. DUPHALAC</P>\r\n\r\n<P>TAB. RIFAGUT</P>\r\n\r\n<P>INJ.NORAD</P>\r\n\r\n<P>INJ. DNS, RL</P>\r\n\r\n<P>INJ. ELDERVIT</P>\r\n\r\n<P>INJ KCL DRIP</P>\r\n\r\n<P>INJ H ACTRAPID</P>\r\n\r\n<P>TAB ALCOMAX</P>\r\n\r\n<P>SYP POTCHLOR</P>\r\n\r\n<P>LAMINA HEPA POWDER</P>\r\n\r\n<P>TAB COBADEX-CZS</P>\r\n\r\n<P>TAB OTSKI</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:43:29','mo','2025-10-18 14:19:44'),(440,0,0,392,25,414,0,0,NULL,'','DISCDIAG','','','<P><STRONG>BILATERAL COMMUNITY ACQUIRED PNEUMONIA</STRONG></P>\r\n\r\n<P><STRONG>RESTRICTIVE LUNG DISEASE</STRONG></P>\r\n\r\n<P><STRONG>(?) OSA</STRONG></P>\r\n\r\n<P><STRONG>SEVERE PAH</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, DM</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:57:08','mo','2025-11-01 14:13:29'),(441,0,0,392,25,414,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:57:08','mo','2025-11-01 14:13:29'),(442,0,0,392,25,414,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 71 YEARS OLD FEMALE&nbsp; PATIENT PRESENT WITH,</P>\r\n\r\n<P>K/C/O: HTN SINCE 20 YEAR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; DM SINCE 20 YEAR<BR />\r\nH/O : COUGH AND COLD, FEVER SINCE 2 DAYS.<BR />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; POST LAPAROSCOPIC&nbsp;CHOLECYSTECTOMY IN 2021, POST HERPETIC NEURALGIA</P>\r\n\r\n<P><BR />\r\nC/O: SUDDEN ONSET OF DOE AND BREATHLESSNESS,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DROWSY, NOT FOLLOW VERBAL COMMAND</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;GASPING RESPIRATION.</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE LAST 20-30 MIN SO,&nbsp;<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- COLD EXTREIMITIES<BR />\r\nPR- NR&nbsp;<BR />\r\nBP- NR<BR />\r\nSPO2- 42% ON RA&nbsp;<BR />\r\nRR- 38/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS- DROWSY, DISORIENTED, NOT&nbsp; FOLLO VERBAL COMAND.<BR />\r\nRS-BLAE+,</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.<BR />\r\n<BR />\r\n10-10-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF GASPING RESPIRATION ENDOTRACHEAL INTUBATION DONE ET TUEB 7.5 NO AND PUT ON VENTILATOR SUPPORT AC/VC MODE.</P>\r\n\r\n<P>IN VEIW OF BRADYCARIDA CPR GIVEN AS PAR ACLS PROTOCOL, INJ. ATROPIN AND INJ. ADR GIVEN, PATIENT REVIVED.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION INJ. NORAD SUPPORT START BY INFUSION PUMP.</P>\r\n\r\n<P>ABG DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11-10-2025,</P>\r\n\r\n<P>PATIENT ON VENTILATOR SUPPORT AC/VC MODE.</P>\r\n\r\n<P>INJ. NORAD SUPPORT CONTINUE.</P>\r\n\r\n<P>PATIENT IS CONSCIOUS, ORIENTED.</P>\r\n\r\n<P>CHEST X RAY DONE&nbsp; - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>HR CT THORAX DONE - REPROT ATTACH WITH FILE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12-10-2025,</P>\r\n\r\n<P>PATIENT ON VENTILATOR SUPPORT AC/VC AND CPAP SUPPORT ALTERNATE GIVEN.</P>\r\n\r\n<P>PATIENT IS CONSCIOUS, ORIENTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13-10-2025,</P>\r\n\r\n<P>PATIENT ON VENTILATOR SUPPORT AC/VC AND CPAP SUPPORT ALTERNATE GIVEN.</P>\r\n\r\n<P>PATIENT IS CONSCIOUS, ORIENTED.</P>\r\n\r\n<P>CHEST PT GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14-10-2025,</P>\r\n\r\n<P>PATIENT ON VENTILATOR SUPPORT AC/VC AND CPAP SUPPORT ALTERNATE GIVEN.</P>\r\n\r\n<P>PATIENT IS CONSCIOUS, ORIENTED.</P>\r\n\r\n<P>CHEST PT GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15-10-2025,</P>\r\n\r\n<P>O2 SUPPORT 1 LIT GIVEN VIA ET TUBE.</P>\r\n\r\n<P>PATIENT IS CONSCIOUS, ORIENTED.</P>\r\n\r\n<P>CHEST PT GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16-10-2025,</P>\r\n\r\n<P>EXTUBATION DONE. O2 SUPPORT GIVEN VIA MASK.</P>\r\n\r\n<P>PATIENT IS CONSCIOUS, ORIENTED.</P>\r\n\r\n<P>CHEST PT GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17-10-2025,</P>\r\n\r\n<P>O2 SUPPORT VIA MASK, ALTERNATE NIV SUPPORT.</P>\r\n\r\n<P>PATIENT IS CONSCIOUS, ORIENTED.</P>\r\n\r\n<P>CHEST PT GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSCIOUS, ORIENTED.</P>\r\n\r\n<P>O2 SUPPORT GIVEN VIA MASK.</P>\r\n\r\n<P>CHEST PT GIVEN.</P>\r\n\r\n<P>SEEN BY DR. KRUTARTH KANJIYA (ID) ADVICE FOLLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSCIOUS, ORIENTED.</P>\r\n\r\n<P>O2 SUPPORT GIVEN VIA MASK.</P>\r\n\r\n<P>CHEST PT GIVEN.</P>\r\n\r\n<P>SEEN BY DR. NIRAJ MEHTA (PULMONOLOGIST) ADVICE FOLLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSCIOUS, ORIENTED.</P>\r\n\r\n<P>O2 SUPPORT GIVEN VIA NASAL CANULA.</P>\r\n\r\n<P>CHEST PT GIVEN, MOBILIZATION DONE.</P>\r\n\r\n<P>INJ. KCL GIVEN VIA INFUSION PUMP.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSCIOUS, ORIENTED.</P>\r\n\r\n<P>O2 SUPPORT GIVEN VIA NASAL CANULA.</P>\r\n\r\n<P>CHEST PT GIVEN, MOBILIZATION DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>O2 SUPPORT GIVEN VIA NASAL CANULA.</P>\r\n\r\n<P>CHEST PT GIVEN, MOBILIZATION DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>O2 SUPPORT GIVEN VIA NASAL CANULA.</P>\r\n\r\n<P>CHEST PT GIVEN, MOBILIZATION DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>O2 SUPPORT GIVEN VIA NASAL CANULA, SOME TIME NIV SUPPORT.</P>\r\n\r\n<P>SEEN BY DR. DARSHAN BHATT (ENT SURGEON), FLAXIBAL LARYNGOSCOPY DONE - REPROT ATTACH WITH FILE.</P>\r\n\r\n<P>CHEST PT GIVEN, MOBILIZATION DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>25-10-2025,</P>\r\n\r\n<P>CT SCAN PNS DONE.</P>\r\n\r\n<P>O2 SUPPORT GIVEN VIA NASAL CANULA</P>\r\n\r\n<P>CHEST PT GIVEN. MOBILIZATION DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26-10-2025,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ASPERGILLUS ANTIGEN(GALACTOMANNAN) DONE WHICH IS NEGATIVE.</P>\r\n\r\n<P>O2 SUPPORT GIVEN VIA NASAL CANULLA</P>\r\n\r\n<P>CHEST PT GIVEN. MOBILIZATION DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>CHEST PT GIVEN. MOBILIZATION DONE.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION INJ.NORAD START, IV FULID BOLUS GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28-10-2015,</P>\r\n\r\n<P>PATIENT&#39;S ICU STAY WAS UNEVENTFUL&nbsp;&nbsp;SO PATIENT SHIFTED TO WARD WITH 2 LIT O2 SUPPORT AND NORAD DRIP.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD AND BLOOD PRESUURE MONITORED.</P>\r\n\r\n<P>CHEST X-RAY DONE&nbsp;</P>\r\n\r\n<P>PHYSIOTHERAPY CONTINUED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>29-10-2025,</P>\r\n\r\n<P>SAME TREATMENT CONTINUED</P>\r\n\r\n<P>GRADUALLY PATIENT&#39;S BLOOD PRESSURE IMPROVED SO NORAD DRIP TAPPERD AND OFF.</P>\r\n\r\n<P>SPIROMETRY STARTED</P>\r\n\r\n<P>USG FOR DIAPHAGMATIC MOVEMENT DONE, REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>NEUROPHYSICIAN DR KAUMIL KOTHARI&#39;S REFERANCE DONE AND ALL HID ADVICE FOLLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>30-10-2015,</P>\r\n\r\n<P>GRADUALLY&nbsp;PATIENT&#39;S OXYGEN LEVEL IMPROVED SO OXYGEN SUPPORT TAPPERD AND OFF</P>\r\n\r\n<P>PATIENT MAINTAINED WELL AT ROOM AIR.</P>\r\n\r\n<P>ORAL DIET STARTED AND PATIENT TOLERATED WELL.</P>\r\n\r\n<P>PHYSIOTHERAPY CONTINUED.</P>\r\n\r\n<P>SPIROMETRY CONTINUE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>31-10-2025,&nbsp;&nbsp;</P>\r\n\r\n<P>ORAL DIET TOLERATING WELL SO RYLES TUBE REMOVE</P>\r\n\r\n<P>CATHETER CLAMPING START</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>PHYSIOTHERAPY CONTINUED</P>\r\n\r\n<P>SPIROMETRY CONTINUE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>01-11-2025,</P>\r\n\r\n<P>CATHETER CLAMP AND REMOVE.</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>PHYSIOTHERAPY CONTINUED</P>\r\n\r\n<P>SPIROMETRY CONTINUE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:57:08','mo','2025-11-01 14:13:29'),(443,0,0,392,25,414,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. MEZOR</P>\r\n\r\n<P>INJ. CLARIBID</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ. DOXOPHYLIN</P>\r\n\r\n<P>INJ. LOXOF</P>\r\n\r\n<P>INJ. DERIPHYLIN</P>\r\n\r\n<P>INJ. PRIMACORT</P>\r\n\r\n<P>INJ. IVPRED</P>\r\n\r\n<P>INJ. NORAD</P>\r\n\r\n<P>INJ. NS</P>\r\n\r\n<P>TAB. ROSAVEL</P>\r\n\r\n<P>TAB. PAH</P>\r\n\r\n<P>TAB. DYTOR PLUS</P>\r\n\r\n<P>TAB. BISOBIS</P>\r\n\r\n<P>CAP. ECOSPIRIN AV</P>\r\n\r\n<P>NEB. DUOLIN</P>\r\n\r\n<P>PC ENEMA</P>\r\n\r\n<P>MOVICOL SACHET</P>\r\n\r\n<P>TAB DUNEX P20</P>\r\n\r\n<P>DUPHALAC ENEMA</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>TAB SITAPRIDE</P>\r\n\r\n<P>CANDID MOUTH PAINT</P>\r\n\r\n<P>INJ OTSKI</P>\r\n\r\n<P>VIT D3 60K</P>\r\n\r\n<P>TAB GAMCAL XT</P>\r\n\r\n<P>ABPRESS EYEDROPS</P>\r\n\r\n<P>METROGYL P OINTMENT</P>\r\n\r\n<P>INJ KCL</P>\r\n\r\n<P>TAB ADDKAY</P>\r\n\r\n<P>INJ LANTUS</P>\r\n\r\n<P>TAB VONAS</P>\r\n\r\n<P>LIQ LOOSE</P>\r\n\r\n<P>INJ IVEPRED</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 01:57:08','mo','2025-11-01 14:13:29'),(444,0,0,224,31,428,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 08:54:23','mo','2025-10-12 09:44:16'),(445,0,0,224,31,428,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZIFI (200)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp;&nbsp;BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB HYOCIMAX-S&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 0--0--10ML AFTER FOOD&nbsp; FOR 5 DAYS</P>\r\n\r\n<P>METROGYL-P OINTMENT FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTNUE OWN MEDICINE</P>\r\n\r\n<P>TAB GAMER DS&nbsp; &nbsp; &nbsp; 1--0--0</P>\r\n\r\n<P>TAB COSPLAQ S(20/100) 0--1--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 08:54:23','mo','2025-10-12 09:44:16'),(446,0,0,286,33,434,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 10:17:27','mo','2025-10-12 13:08:36'),(447,0,0,286,33,434,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZENFLOX OZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; BEFORE&nbsp;FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS-SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB COSKLOT PLUS&nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;0--0--10ML AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>LOX JELLY 2 %&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp;BEFORE DEFECATION (1)</P>\r\n\r\n<P>SUCRAL ANO CREAM&nbsp; &nbsp;FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp;AFTER DEFECATION&nbsp; &nbsp; (1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 10:17:27','mo','2025-10-12 13:08:36'),(448,0,0,394,28,417,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CYRA 20MG ----- 5&nbsp;</P>\r\n\r\n<P>0-0-1 EMPTY STOMACH</P>\r\n\r\n<P>TAB TELMICON LN 10MG ----- 10</P>\r\n\r\n<P>0-0-1</P>\r\n\r\n<P>TAB SEREDASE AP ----- 10</P>\r\n\r\n<P>1-0-1</P>\r\n\r\n<P>TAB BONEWELL PLUS ----- 10</P>\r\n\r\n<P>1-0-0</P>\r\n\r\n<P>TAB SERANACE 0.5 ----- 5</P>\r\n\r\n<P>0-0-1/2</P>\r\n\r\n<P>BETADIN SOLUTION ---1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 10:42:34','mo','2025-10-12 12:06:24'),(449,0,0,394,28,417,0,0,NULL,'','DISCCOND','','','<P>PATIENT CONSCIOUS/DISORIENTED.</P>\r\n\r\n<P>RYLE&#39;S TUBE(NO-16,D-3);FOLEY&#39;S CATHETER (NO-14,D-3) IN SITU.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 10:45:15','mo','2025-10-12 12:06:24'),(450,0,0,394,28,417,0,0,NULL,'','ADVICE','','','<P>BEDSORE DRESSING</P>\r\n\r\n<P>BACK CARE;FOLEY&#39;S CARE</P>\r\n\r\n<P>RTF-200ML/3&nbsp;HOURLY.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>HOSPITALIZATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 10:45:15','mo','2025-10-12 12:06:24'),(451,0,0,66,11,66,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>BIOPSY REPORT AWAITED</P>\r\n\r\n<P>ADVICE: HEMORROIDECTOMY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 11:33:10','mo','2025-10-13 11:31:47'),(452,0,0,66,11,66,0,0,NULL,'','TREATDISC_TI','','','<P>TAB LUPIHEME&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB NEXPROFAST(40)&nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB TRENEXA (500)&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB SITLOM FORTE&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 3&nbsp;DAYS</P>\r\n\r\n<P>SYP DIGERAFT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;5ML TDS&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; FOR 5 DAYS</P>\r\n\r\n<P>LOX JELLY 2%&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; LOCAL APPLICATION&nbsp; &nbsp;BEFORE DEFACATION&nbsp; &nbsp;(1)</P>\r\n\r\n<P>SUCRAL ANO CREAM&nbsp; LOCAL APPLICATION&nbsp; AFTER DEFECATION&nbsp; &nbsp; &nbsp;(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 11:49:59','mo','2025-10-13 11:31:47'),(453,0,0,234,30,426,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 12:52:46','mo','2025-10-12 13:26:41'),(454,0,0,234,30,426,0,0,NULL,'','TREATDISC_TI','','','<P>INJ MEROPENUM&nbsp; &nbsp; 1GM/NS -100&nbsp; &nbsp;IV&nbsp; &nbsp;TDS&nbsp; &nbsp;6AM...2PM...10PM&nbsp; &nbsp; FOR 5 DAYS&nbsp; (15 INJ)</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODL SP&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>FREEGO POWDER&nbsp; &nbsp;PO&nbsp; &nbsp; &nbsp; 0--0--2TSF&nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 12:52:46','mo','2025-10-12 13:26:41'),(455,0,0,44,42,510,0,0,NULL,'','DISCDIAG','','','<P><STRONG>SEVERE HYPOGLYCEMIA WITH HYPONATREMIA</STRONG></P>\r\n\r\n<P><STRONG>WITH AKI IN CASE ON CIRRHOSIS OF LIVER</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM II, CA INTESTINE</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 20:40:16','mo','2025-10-12 21:53:47'),(456,0,0,44,42,510,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-12 20:40:16','mo','2025-10-12 21:53:47'),(457,0,0,44,42,510,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 65 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II, CA INTESTINE<BR />\r\nC/O: UNEASINESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DIZZINESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS</P>\r\n\r\n<P>RBS: 35 MG/DL</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 2-3 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-86/MIN, BP-80/60MMHG, SPO2-95% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>HYPOGLYCEMIA CORRECTED WITH INJ D25%.</P>\r\n\r\n<P>HYPONATREMIA CORRECTED WITH INJ NS 3%.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 20:40:16','mo','2025-10-12 21:53:47'),(458,0,0,403,32,430,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 20:44:20','mo','2025-10-13 17:02:50'),(459,0,0,467,41,509,0,0,NULL,'','DISCDIAG','','','<P><STRONG>VIRAL FEVER WITH THROMBOCYTOPENIA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 21:30:23','mo','2025-10-14 12:28:34'),(460,0,0,467,41,509,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-12 21:30:23','mo','2025-10-14 12:28:34'),(461,0,0,467,41,509,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 25 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nC/O: FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ANOREXIA</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 4-5 DAYS FOR THAT PT PRIMARY CONSULTED AT GP AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-80/MIN, BP-110/70MMHG, SPO2-98% ON RA, RR-21/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>MP BY CARD TEST DONE ON 12/10/2025 WHICH S/O NEGATIVE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 21:30:23','mo','2025-10-14 12:28:34'),(462,0,0,467,41,509,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 21:30:23','mo','2025-10-14 12:28:34'),(463,0,0,44,42,510,0,0,NULL,'','DISCCOND','','','<P>CONSCIOUS &AMP; ORIENTED</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 21:50:01','mo','2025-10-12 21:53:47'),(464,0,0,44,42,510,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>TAKE SALT RICH DIET</P>\r\n\r\n<P>HOLD ANTIDIABETIC MEDICINE FOR 2 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 21:50:01','mo','2025-10-12 21:53:47'),(465,0,0,44,42,510,0,0,NULL,'','TREATGIVEN_TI','','','<P>TAB XOXE CV (250 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;FOR 2&nbsp;DAYS</P>\r\n\r\n<P>TAB LOXOF (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp;FOR 2 DAYS</P>\r\n\r\n<P>TAB ETOLOK&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1</P>\r\n\r\n<P>TAB KRIRAB DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp;FOR 2 DAYS</P>\r\n\r\n<P>TAB CARDIVAS(3.125)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1</P>\r\n\r\n<P>TAB SOBIOSIS(500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>START ON 15/10/2025 (WEDNESDAY):</STRONG></P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB SIDIA (100)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; BBF--0--0</P>\r\n\r\n<P>TAB APTIGRIM MV2&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 0--0--BD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-12 21:50:01','mo','2025-10-12 21:53:47'),(467,0,0,471,445,514,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo--sudden onset of rotaotyr feeling for few mins on change of posture</p>\n\n<p>heaviness of head +</p>\n\n<p>left ear deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 10:37:05','darshan','2025-10-13 10:38:14'),(468,0,0,471,445,514,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----3 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 10:37:13','','0000-00-00 00:00:00'),(469,0,0,471,445,514,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Ltm---moderate&thinsp; central perforation</p>\n\n<p>Rtm--i/scarred&thinsp;</p>\n\n<p>nystmgus---absent</p>\n\n<p>dix hallpike--nads</p>\n\n<p>hit--nbads</p>\n\n<p>pta---left very severe sn deafness</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng--left psot canal bppv with vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 10:38:40','darshan','2025-10-13 12:52:24'),(471,0,0,472,446,515,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 10:45:43','','0000-00-00 00:00:00'),(472,0,0,472,446,515,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtpmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 10:46:14','','0000-00-00 00:00:00'),(473,0,0,472,446,515,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemty--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 10:46:22','darshan','2025-10-13 13:11:17'),(474,0,0,472,446,515,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 10:46:23','','0000-00-00 00:00:00'),(475,0,0,476,450,522,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----jurky feeling in head</p>\n\n<p>occassional giddiness +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 10:49:40','','0000-00-00 00:00:00'),(476,0,0,484,458,531,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 10:58:04','','0000-00-00 00:00:00'),(477,0,0,491,465,538,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case=---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 11:02:24','','0000-00-00 00:00:00'),(480,0,0,491,465,538,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 11:04:03','','0000-00-00 00:00:00'),(481,0,0,500,474,549,0,0,NULL,'','CC','ZZZ','Remark','CHEST PAIN LT SIDE | 1 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-13 11:08:34','','0000-00-00 00:00:00'),(482,0,0,496,470,544,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 11:08:37','','0000-00-00 00:00:00'),(483,0,0,500,474,549,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALY NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-10-13 11:08:48','','0000-00-00 00:00:00'),(484,0,0,496,470,544,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of giddiness without any cns symptoms&thinsp;</p>\n\n<p>occassional chest pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 11:11:10','darshan','2025-10-13 11:13:45'),(485,0,0,496,470,544,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus--absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>cardiac evaluation done for chest pain at apex ahmedabad</p>\n\n<p>CCG---abnomal AP deviation</p>\n\n<p>stabilometyry---nad</p>\n\n<p>vng-central variety of nystmagus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 11:14:16','darshan','2025-10-13 14:07:29'),(486,0,0,496,470,544,0,0,NULL,'','DIAG','ZZZ','Remark','PPPD','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 11:14:31','','0000-00-00 00:00:00'),(487,0,0,480,454,526,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 11:23:26','','0000-00-00 00:00:00'),(488,0,0,487,461,534,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---YESTERDAY||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 11:30:49','','0000-00-00 00:00:00'),(489,0,0,487,461,534,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 11:31:24','','0000-00-00 00:00:00'),(490,0,0,487,461,534,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nads</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng-right pst canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 11:31:33','darshan','2025-10-13 14:29:06'),(491,0,0,487,461,534,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 11:31:41','','0000-00-00 00:00:00'),(492,0,0,473,447,517,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 11:37:35','','0000-00-00 00:00:00'),(494,0,0,473,447,517,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 11:41:54','','0000-00-00 00:00:00'),(495,0,0,510,486,561,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT TENNIS ELBOW','','',0,'0000-00-00 00:00:00','drsagar','2025-10-13 11:42:33','','0000-00-00 00:00:00'),(496,0,0,483,457,530,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 11:44:34','','0000-00-00 00:00:00'),(497,0,0,393,26,415,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>B/L EDEMA REDUCED</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 11:46:59','mo','2025-10-13 12:37:00'),(498,0,0,475,449,521,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----8 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 11:54:43','','0000-00-00 00:00:00'),(499,0,0,475,449,521,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is in any posture</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 11:56:08','','0000-00-00 00:00:00'),(500,0,0,475,449,521,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--right modeate to severe sn deafness(o)</p>\n\n<p>stabiloemtry---reduced vestibular scoree</p>\n\n<p>&thinsp;CCG--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 11:56:29','darshan','2025-10-13 14:54:11'),(501,0,0,475,449,521,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 11:57:20','','0000-00-00 00:00:00'),(502,0,0,470,444,513,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT SHOULDER DISLOCATION','','',0,'0000-00-00 00:00:00','drsagar','2025-10-13 12:00:18','','0000-00-00 00:00:00'),(503,0,0,495,469,543,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----15-20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:01:17','','0000-00-00 00:00:00'),(504,0,0,495,469,543,0,0,NULL,'','DIAG','ZZZ','Remark','RGITH POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:01:25','','0000-00-00 00:00:00'),(505,0,0,495,469,543,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short&thinsp; duration positional giddiness&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptosm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:02:36','darshan','2025-10-13 12:03:08'),(506,0,0,495,469,543,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilomeatry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:03:21','darshan','2025-10-13 14:52:38'),(507,0,0,479,453,525,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rtoaoty feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated othe cns sympotms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:07:44','darshan','2025-10-13 12:10:38'),(508,0,0,479,453,525,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:07:49','','0000-00-00 00:00:00'),(509,0,0,523,498,576,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT CARPAL TUNNEL SYNDROME WITH 1.5 MONTH AMENNOROHEA','','',0,'0000-00-00 00:00:00','drsagar','2025-10-13 12:07:55','','0000-00-00 00:00:00'),(510,0,0,479,453,525,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnet</p>\n\n<p>dix hallpoike--nads</p>\n\n<p>ht--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilomtry--reduced vestibualre score</p>\n\n<p>vng--right opst cnal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:10:50','darshan','2025-10-13 15:02:43'),(511,0,0,479,453,525,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:10:56','','0000-00-00 00:00:00'),(512,0,0,530,505,583,0,0,NULL,'','CC','ZZZ','Remark','FEVER, INTERMITTENT | 7 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-13 12:18:16','','0000-00-00 00:00:00'),(513,0,0,393,26,415,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFICOOL (200 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS (7 TAB)</P>\r\n\r\n<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ECOTOR GOLD (10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB SODACON (500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB BISOBIS (2.5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB KETOADD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB TAMWELL (0.4)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB TORKID (20 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB TORKID (10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB MYZINC AO&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP MOVICOL (25ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 12:22:40','mo','2025-10-13 12:37:00'),(514,0,0,481,455,528,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better for giddiness&thinsp;</p>\n\n<p>right ear pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:24:19','','0000-00-00 00:00:00'),(515,0,0,482,456,529,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR PAIN---FEW DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:35:03','','0000-00-00 00:00:00'),(516,0,0,482,456,529,0,0,NULL,'','HIST','ZZZ','Remark','<p>pt is using hearing aid&thinsp; with hard mould</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:35:58','','0000-00-00 00:00:00'),(517,0,0,482,456,529,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>BTM---i/n</p>\n\n<p>rigth ear scanty wax</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:36:13','','0000-00-00 00:00:00'),(520,0,0,482,456,529,0,0,NULL,'','MADVICE','ZZZ','Remark','KINDLY USE SOFT MOULD IN BOTH EAR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:37:47','','0000-00-00 00:00:00'),(521,0,0,488,462,535,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:44:43','','0000-00-00 00:00:00'),(522,0,0,488,462,535,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:46:39','','0000-00-00 00:00:00'),(524,0,0,488,462,535,0,0,NULL,'','MADVICE','ZZZ','Remark','GF AMEVNEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:46:51','','0000-00-00 00:00:00'),(525,0,0,471,445,514,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:53:25','','0000-00-00 00:00:00'),(527,0,0,486,460,533,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:57:19','','0000-00-00 00:00:00'),(528,0,0,493,467,540,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 12:59:44','darshan','2025-10-13 13:25:18'),(529,0,0,485,459,532,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:01:33','','0000-00-00 00:00:00'),(530,0,0,276,24,413,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE GASTRO ENTERITIS</STRONG></P>\r\n\r\n<P><STRONG>WITH AKI</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 13:01:42','mo','2025-10-13 13:45:29'),(531,0,0,276,24,413,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 66 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN<BR />\r\nH/O: LSCS BEFORE 25 YEARS<BR />\r\nC/O: ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PERSISTANT VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;SEVERE GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DECREASED URINE OUTPUT</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 3-4 DAYS FOR THAT PT PRIMARY CONSULTED AT SAKET HOSPITAL AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN + PELVIS (07-10-2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-104/MIN, BP-80/52MMHG, SPO2-98% ON RA, RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION &AMP; CHEST PAIN PATIENT SHIFTED TO ICU.</P>\r\n\r\n<P>HYPOTENSION CORRECTED BY INJ NORAD INFUSION.</P>\r\n\r\n<P>S.TROP I DONE WHICH IS NORMAL</P>\r\n\r\n<P>TYPHI DOT TEST DONE ON 11/10/2025 WHICH IS NEGATIVE.</P>\r\n\r\n<P>URINE R/M DONE ON 11/10/2025 WHICH IS NORMAL</P>\r\n\r\n<P>WIDAL TUBE TEST DONE WHICH IS NEGATIVE</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED BY INJ KCL.</P>\r\n\r\n<P>FURTHER ICU STAY UNEVENTFUL SO PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 13:01:42','mo','2025-10-13 13:45:29'),(532,0,0,276,24,413,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>CONSCIOUS &AMP; ORIENTED</P>\r\n\r\n<P>NO ANY FERSH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 13:01:42','mo','2025-10-13 13:45:29'),(533,0,0,276,24,413,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS AT EVENING (5-7 PM)</P>\r\n\r\n<P>BLOOD PRESSURE MONITORING</P>\r\n\r\n<P>TAKE PLENTY OF LIQUID</P>\r\n\r\n<P>HOLD OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 13:01:42','mo','2025-10-13 13:45:29'),(534,0,0,276,24,413,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGY</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ&nbsp;NS 3%</P>\r\n\r\n<P>INJ KCL</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ ELDRVIT</P>\r\n\r\n<P>INJ NORAD DRIP</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 13:01:42','mo','2025-10-13 13:45:29'),(535,0,0,276,24,413,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZIFI-O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB CALPOL (500 MG)&nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>HOLD OWN MEDICINE:</STRONG></P>\r\n\r\n<P>TAB TEMONE-H (40/12.5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 13:01:42','mo','2025-10-13 13:45:29'),(536,0,0,485,459,532,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR BLOCAKGE --1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:01:48','','0000-00-00 00:00:00'),(537,0,0,485,459,532,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right ear SOM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:01:56','','0000-00-00 00:00:00'),(538,0,0,472,446,515,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:11:40','','0000-00-00 00:00:00'),(540,0,0,521,496,573,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:17:06','','0000-00-00 00:00:00'),(541,0,0,63,10,63,0,0,NULL,'','OTNOTE','','','<p>-colostomy separated from skin and rectus&nbsp;sheath</p>\r\n\r\n<p>-both loop separated from peritoneum</p>\r\n\r\n<p>-colostomy closure done with mersilk 3 0 in single layer.</p>\r\n\r\n<p>-drain kept in peritoneal cavity</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-mass closure done with prolene no 1</p>\r\n\r\n<p>-skin closed with ethilon 3-0.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 13:17:17','mo','2025-10-13 13:49:49'),(542,0,0,63,10,63,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>DRAIN IN SITU (DAY-5)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 13:17:17','mo','2025-10-13 13:49:49'),(543,0,0,63,10,63,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB METRO ER(600 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB RIFAGUT (200 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB SPOROLAC&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB XYZAL M&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>MOSTURISER + FLUCORT LOTION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 7AM------7PM</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 13:17:17','mo','2025-10-13 13:49:49'),(544,0,0,513,488,565,0,0,NULL,'','HIST','ZZZ','Remark','<p>fofllow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:20:04','','0000-00-00 00:00:00'),(545,0,0,501,475,550,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----beter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:22:44','','0000-00-00 00:00:00'),(546,0,0,525,500,578,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:28:03','','0000-00-00 00:00:00'),(547,0,0,532,507,585,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE 1 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:33:38','','0000-00-00 00:00:00'),(548,0,0,532,507,585,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS 1 YR||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:33:38','','0000-00-00 00:00:00'),(549,0,0,532,507,585,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache with giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:33:51','','0000-00-00 00:00:00'),(550,0,0,532,507,585,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--n ad</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng--central vareity of nystmagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:33:59','darshan','2025-10-13 15:13:31'),(551,0,0,532,507,585,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:34:03','','0000-00-00 00:00:00'),(552,0,0,529,504,582,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2 YRS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:37:03','','0000-00-00 00:00:00'),(553,0,0,529,504,582,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling with sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:37:30','','0000-00-00 00:00:00'),(554,0,0,529,504,582,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystsamgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>&thinsp;pta---bilateral severe sn deafness</p>\n\n<p>stabilometry--reduced SS score</p>\n\n<p>vng---bilatelr vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:38:18','darshan','2025-10-13 18:14:22'),(555,0,0,534,509,587,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better partially&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:43:26','','0000-00-00 00:00:00'),(556,0,0,534,509,587,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:44:05','','0000-00-00 00:00:00'),(558,0,0,520,495,572,0,0,NULL,'','CC','ZZZ','Remark','C/O COUGH  | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-13 13:44:36','','0000-00-00 00:00:00'),(559,0,0,534,509,587,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:44:49','','0000-00-00 00:00:00'),(560,0,0,498,472,546,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE--2 YRS||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:48:47','','0000-00-00 00:00:00'),(561,0,0,498,472,546,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS --2 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:48:47','','0000-00-00 00:00:00'),(562,0,0,498,472,546,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onst any time with headache&thinsp;</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:49:08','','0000-00-00 00:00:00'),(563,0,0,498,472,546,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absnt</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry-reduced vestibular sc ore</p>\n\n<p>vng--central variety of nystmgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:49:17','darshan','2025-10-13 15:19:51'),(564,0,0,498,472,546,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:49:18','','0000-00-00 00:00:00'),(566,0,0,471,445,514,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENV UER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:54:52','','0000-00-00 00:00:00'),(568,0,0,472,446,515,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 13:55:25','','0000-00-00 00:00:00'),(570,0,0,499,473,547,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS----7 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 14:03:24','','0000-00-00 00:00:00'),(571,0,0,499,473,547,0,0,NULL,'','CC','ZZZ','Remark','HAADACHE ---7 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 14:03:24','','0000-00-00 00:00:00'),(572,0,0,499,473,547,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 14:03:36','','0000-00-00 00:00:00'),(574,0,0,499,473,547,0,0,NULL,'','MADVICE','ZZZ','Remark','PT WILL COME LATER ON','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 14:05:21','','0000-00-00 00:00:00'),(576,0,0,497,471,545,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 14:10:30','','0000-00-00 00:00:00'),(577,0,0,541,516,594,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 14:13:29','','0000-00-00 00:00:00'),(578,0,0,492,466,539,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 14:17:19','','0000-00-00 00:00:00'),(579,0,0,503,477,552,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR BLOOD --2 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 14:20:38','','0000-00-00 00:00:00'),(580,0,0,503,477,552,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 14:20:44','','0000-00-00 00:00:00'),(581,0,0,531,506,584,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 14:22:56','','0000-00-00 00:00:00'),(583,0,0,496,470,544,0,0,NULL,'','MADVICE','ZZZ','Remark','REST AS PER CARDIOLOGIST','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 14:24:25','','0000-00-00 00:00:00'),(584,0,0,487,461,534,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 14:29:41','','0000-00-00 00:00:00'),(586,0,0,535,510,588,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrencxe of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 14:33:04','','0000-00-00 00:00:00'),(587,0,0,535,510,588,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 14:33:12','','0000-00-00 00:00:00'),(589,0,0,487,461,534,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHTI SM MAENV UER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 14:35:08','','0000-00-00 00:00:00'),(590,0,0,543,518,596,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS-----YESTERDAY||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 14:46:49','','0000-00-00 00:00:00'),(591,0,0,543,518,596,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 14:47:00','','0000-00-00 00:00:00'),(592,0,0,495,469,543,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 14:53:03','','0000-00-00 00:00:00'),(594,0,0,479,453,525,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 15:03:03','','0000-00-00 00:00:00'),(597,0,0,495,469,543,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 15:03:47','','0000-00-00 00:00:00'),(598,0,0,536,511,589,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 15:11:13','','0000-00-00 00:00:00'),(599,0,0,536,511,589,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--faint torsonal geotropic nystagmus&thinsp;</p>\n\n<p>pta---rigth high freq severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 15:11:23','darshan','2025-10-13 15:45:25'),(602,0,0,479,453,525,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM AMENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 15:14:35','','0000-00-00 00:00:00'),(603,0,0,538,513,591,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow&thinsp; &thinsp;up case --heaviness of head&thinsp;</p>\n\n<p>thraot pain&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 15:24:35','','0000-00-00 00:00:00'),(604,0,0,536,511,589,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 15:45:43','','0000-00-00 00:00:00'),(605,0,0,536,511,589,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 15:46:12','','0000-00-00 00:00:00'),(608,0,0,536,511,589,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MAEVNEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 15:50:58','','0000-00-00 00:00:00'),(609,0,0,403,32,430,0,0,NULL,'','OTNOTE','','','<p>-right side large direct inguinal hernia</p>\r\n\r\n<p>-left side small direct inguinal hernia</p>\r\n\r\n<p>-b/l pre-peritoneal space cleared.</p>\r\n\r\n<p>-b/l cord structure reserved</p>\r\n\r\n<p>-prolene mesh 13 x 17 cm kept i both side &amp; fixed with cooper ligament with prolene no 1.</p>\r\n\r\n<p>-peritoneal flap closed with vicryl 3-0.</p>\r\n\r\n<p>-10 mm linea alba closed with vicryl no 1.</p>\r\n\r\n<p>-skin closed with skin stappler.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 16:01:16','mo','2025-10-13 17:02:50'),(610,0,0,387,43,527,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LEFT DM FOOT</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM, B/L LOWER LIMB VERICOSE VEIN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 16:19:06','mo','2025-10-13 17:46:53'),(611,0,0,387,43,527,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-13 16:19:06','mo','2025-10-13 17:46:53'),(612,0,0,387,43,527,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 60&nbsp; YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM, VERICOSE VEIN<BR />\r\nH/O: RIGHT FOOT DEBRIDEMENT BEFORE 1 YEAR<BR />\r\nC/O: PAIN AT LEFT FOOT</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PUS DISCHARGE AT SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO FEVER</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 8-10 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>SWAB CS (10/10/2025) ; REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-80/MIN, BP-130/80MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ECG DONE.<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)</P>\r\n\r\n<P>IN VIEW OF HYPOGLYCEMIA (RBS: 57 MG/DL) INJ D25% GIVEN.<BR />\r\nDEBRIDEMENT DONE BY DR PRATAPSINH DODIYA ON 13/10/2025 UNDER REGIONAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 16:19:06','mo','2025-10-13 17:46:53'),(613,0,0,387,43,527,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>DEBRIDEMENT DONE BY DR PRATAPSINH DODIYA ON 13/10/2025 UNDER REGIONAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 16:19:06','mo','2025-10-13 17:46:53'),(614,0,0,387,43,527,0,0,NULL,'','OTNOTE','','','<p>-left dm foot cellulitis +</p>\r\n\r\n<p>-whole slough &amp; pus excised from left heal area</p>\r\n\r\n<p>-hemostasis achieved.</p>\r\n\r\n<p>-dressing kept.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 16:19:06','mo','2025-10-13 17:46:53'),(615,0,0,387,43,527,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 16:19:06','mo','2025-10-13 17:46:53'),(616,0,0,387,43,527,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS AT EVENING (5 TO 7 PM)</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n\r\n<P>COMTINUE OWN MEDICINE AS PER MD PYSICIAN</P>\r\n\r\n<P>RBS MONITORING</P>\r\n\r\n<P>SURGERY FOR VERICOSE VEIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 16:19:06','mo','2025-10-13 17:46:53'),(617,0,0,387,43,527,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ D 25%</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 16:19:06','mo','2025-10-13 17:46:53'),(618,0,0,403,32,430,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-13 16:22:50','mo','2025-10-13 17:02:50'),(619,0,0,403,32,430,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP SUCRAWALL O (2 TSF)&nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>ALLEX LOGENGES&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>SYP CREMAFIN PLUS (10 ML)&nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 16:22:50','mo','2025-10-13 17:02:50'),(620,0,0,546,520,599,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---25 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:06:03','','0000-00-00 00:00:00'),(621,0,0,546,520,599,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:06:33','','0000-00-00 00:00:00'),(622,0,0,546,520,599,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry--reduced v estibular score</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:06:44','darshan','2025-10-13 18:30:44'),(623,0,0,546,520,599,0,0,NULL,'','DIAG','ZZZ','Remark','VM VS BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:06:52','','0000-00-00 00:00:00'),(624,0,0,547,521,600,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:14:46','','0000-00-00 00:00:00'),(625,0,0,547,521,600,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotry feeling when pt is getting out of bed and lying donw in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:15:23','','0000-00-00 00:00:00'),(626,0,0,547,521,600,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bialtelr high frqe severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:15:33','darshan','2025-10-13 19:09:02'),(629,0,0,549,523,603,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----recurence of vertigo&thinsp;</p>\n\n<p>left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:18:54','','0000-00-00 00:00:00'),(630,0,0,549,523,603,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:19:19','','0000-00-00 00:00:00'),(632,0,0,549,523,603,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAEVNEUR---15 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:23:12','','0000-00-00 00:00:00'),(633,0,0,548,522,602,0,0,NULL,'','HIST','ZZZ','Remark','<p>both ear tinnitus&thinsp;</p>\n\n<p>heaviness of head</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:26:36','','0000-00-00 00:00:00'),(634,0,0,387,43,527,0,0,NULL,'','TREATDISC_TI','','','<P>CAP AUGMENTIN (625 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>CONTINUE OWN MEDICINE:</STRONG></P>\r\n\r\n<P>TABPREGATOP M SR (75 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>TAB STILOZ (50 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1</P>\r\n\r\n<P>TAB VILVEL-M&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1</P>\r\n\r\n<P>TAB REZIDE-M&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1</P>\r\n\r\n<P>HUMALOG MIX 25&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;12&nbsp;UNIT BBF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 8 UNIT BD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 17:32:18','mo','2025-10-13 17:46:53'),(635,0,0,550,524,604,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----better for giddiness&thinsp;</p>\n\n<p>headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:35:06','','0000-00-00 00:00:00'),(637,0,0,553,527,608,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rotaotyr feeling with imbalance sense&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:44:46','darshan','2025-10-13 17:45:34'),(638,0,0,553,527,608,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO WITH SENSE OF IMBALANCE ----20-25 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:44:59','','0000-00-00 00:00:00'),(639,0,0,553,527,608,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--bilatelr wnl</p>\n\n<p>stabilometyr---redcued vestibular score</p>\n\n<p>vng----central vareity of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:45:45','darshan','2025-10-13 19:44:34'),(642,0,0,556,530,611,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcse---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:51:24','','0000-00-00 00:00:00'),(643,0,0,557,531,612,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--heaviness of head&thinsp;</p>\n\n<p>recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:52:41','darshan','2025-10-13 17:54:49'),(644,0,0,557,531,612,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:55:21','','0000-00-00 00:00:00'),(647,0,0,557,531,612,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAEVNUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 17:57:18','','0000-00-00 00:00:00'),(648,0,0,363,347,381,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO ---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 18:01:39','','0000-00-00 00:00:00'),(649,0,0,363,347,381,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 18:01:57','','0000-00-00 00:00:00'),(650,0,0,363,347,381,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dx hallpike--nad</p>\n\n<p>hit--nadstabilometry---reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 18:02:13','darshan','2025-10-13 18:02:38'),(652,0,0,363,347,381,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 18:05:01','','0000-00-00 00:00:00'),(653,0,0,111,100,613,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','drjayant','2025-10-13 18:06:44','','0000-00-00 00:00:00'),(654,0,0,552,526,607,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 18:07:09','','0000-00-00 00:00:00'),(655,0,0,555,529,610,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 18:09:51','','0000-00-00 00:00:00'),(656,0,0,560,534,616,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 18:18:38','','0000-00-00 00:00:00'),(657,0,0,562,536,619,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW WEEKS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 18:25:00','','0000-00-00 00:00:00'),(658,0,0,562,536,619,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of sense of imbalance any time and r emains for few mins&thinsp;</p>\n\n<p>haviness of head +</p>\n\n<p>no associted other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 18:25:31','','0000-00-00 00:00:00'),(659,0,0,562,536,619,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bialtelr very severe sn deafness</p>\n\n<p>stabilometry--redcued both vestibular and SS score</p>\n\n<p>Vng---bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 18:25:42','darshan','2025-10-13 19:58:58'),(663,0,0,562,536,619,0,0,NULL,'','DIAG','ZZZ','Remark','BILATERAL VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 18:26:10','','0000-00-00 00:00:00'),(664,0,0,546,520,599,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 18:30:52','','0000-00-00 00:00:00'),(666,0,0,573,547,631,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---medicine skipped&thinsp;</p>\n\n<p>recurrence of veritigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 18:44:21','','0000-00-00 00:00:00'),(667,0,0,148,137,643,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER BACK PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-13 18:47:09','','0000-00-00 00:00:00'),(668,0,0,539,514,592,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT SHOULDER DISLOCATION','','',0,'0000-00-00 00:00:00','drsagar','2025-10-13 18:48:05','','0000-00-00 00:00:00'),(670,0,0,573,547,631,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 18:49:40','','0000-00-00 00:00:00'),(672,0,0,546,520,599,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 18:52:17','','0000-00-00 00:00:00'),(673,0,0,508,482,557,0,0,NULL,'','DIAG','ZZZ','Remark','FISSURE IN ANO','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-13 18:55:58','','0000-00-00 00:00:00'),(674,0,0,558,532,614,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 18:56:26','','0000-00-00 00:00:00'),(675,0,0,511,485,560,0,0,NULL,'','DIAG','ZZZ','Remark','OLIGOSPERMIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-13 18:56:36','','0000-00-00 00:00:00'),(676,0,0,428,406,562,0,0,NULL,'','DIAG','ZZZ','Remark','PHIMOSIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-13 18:56:54','','0000-00-00 00:00:00'),(677,0,0,527,502,580,0,0,NULL,'','DIAG','ZZZ','Remark','LT GROIN LIPOMA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-13 18:57:36','','0000-00-00 00:00:00'),(678,0,0,565,539,622,0,0,NULL,'','HIST','ZZZ','Remark','<p>left ear discharge +</p>\n\n<p>left ear fungus with dischargea&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 18:58:59','','0000-00-00 00:00:00'),(679,0,0,547,521,600,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 19:09:41','','0000-00-00 00:00:00'),(681,0,0,145,134,640,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 19:13:23','','0000-00-00 00:00:00'),(682,0,0,584,557,648,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 19:23:24','darshan','2025-10-13 19:25:57'),(683,0,0,584,557,648,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----20-25 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 19:23:44','','0000-00-00 00:00:00'),(684,0,0,584,557,648,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit---nad</p>\n\n<p>pta---bilatelr high freq severe sn defness</p>\n\n<p>vng--left post canal bppv with bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 19:26:12','darshan','2025-10-13 20:12:50'),(686,0,0,568,542,625,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR BLOCAGE FEELING ---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 19:31:51','','0000-00-00 00:00:00'),(687,0,0,568,542,625,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left ear wax--removed&thinsp;</p>\n\n<p>Ltm---i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 19:32:10','','0000-00-00 00:00:00'),(689,0,0,547,521,600,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER\n','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 19:38:16','','0000-00-00 00:00:00'),(690,0,0,465,40,506,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>CONSCIOUS &AMP; ORIENTED</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 19:44:39','mo','2025-10-13 19:47:47'),(691,0,0,465,40,506,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>TAKE REST</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 19:44:39','mo','2025-10-13 19:47:47'),(692,0,0,465,40,506,0,0,NULL,'','TREATDISC_TI','','','<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB LIBRIUM (10 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB NEXITO PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1/2&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>LIQ LOOZ (20 ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>HEPAGARD SACHET&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>CONTINUE OWN MEDICINE:</STRONG></P>\r\n\r\n<P>TAB AMLOPRESS (5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1</P>\r\n\r\n<P>TAB CORBIS TS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>TAB ETIZOLUM (0.5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1</P>\r\n\r\n<P>TAB CREVAST-F(10 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 19:44:39','mo','2025-10-13 19:47:47'),(693,0,0,593,566,659,0,0,NULL,'','CC','ZZZ','Remark','URTI | 7 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-13 19:45:44','','0000-00-00 00:00:00'),(694,0,0,593,566,659,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-13 19:45:49','','0000-00-00 00:00:00'),(695,0,0,589,562,654,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---vertigo since 1 week</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 19:49:37','','0000-00-00 00:00:00'),(696,0,0,589,562,654,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--right post canal bppv&thinsp;</p>\n\n<p>hit---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 19:49:50','','0000-00-00 00:00:00'),(697,0,0,589,562,654,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 19:50:22','','0000-00-00 00:00:00'),(699,0,0,589,562,654,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 19:51:05','','0000-00-00 00:00:00'),(700,0,0,591,564,657,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>medicine skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 19:53:36','','0000-00-00 00:00:00'),(701,0,0,585,558,650,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 20:08:12','','0000-00-00 00:00:00'),(703,0,0,585,558,650,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR INVESTIGATIONS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 20:09:44','','0000-00-00 00:00:00'),(704,0,0,584,557,648,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV WITH BILATERAL VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 20:13:13','','0000-00-00 00:00:00'),(705,0,0,584,557,648,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 20:13:48','','0000-00-00 00:00:00'),(708,0,0,584,557,648,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-13 20:18:05','','0000-00-00 00:00:00'),(709,0,0,603,575,669,0,0,NULL,'','DIAG','ZZZ','Remark','CLW ON RT LOIN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-13 20:21:52','','0000-00-00 00:00:00'),(710,0,0,592,565,658,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--recurence of vertigo and nausea vomiting&thinsp;</p>\n\n<p>headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-13 20:23:32','','0000-00-00 00:00:00'),(711,0,0,582,46,645,0,0,NULL,'','DISCDIAG','','','<P><STRONG>RIGHT RENAL ABSCESS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>LEFT LOWER PARAAORTIC SOFT TISSUE LESION</STRONG></P>\r\n\r\n<P><STRONG>HYPERTENSION FIRST TIME DETECTED&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM&nbsp;II&nbsp;</STRONG></P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 20:59:45','mo','2025-10-16 12:57:48'),(712,0,0,582,46,645,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-13 20:59:45','mo','2025-10-16 12:57:48'),(713,0,0,582,46,645,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 62 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II&nbsp;<BR />\r\nH/O:S/P FOR RENAL ABSCESS DONE&nbsp;<BR />\r\nC/O:BACK PAIN SINCE 15-20 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;HIGH GRADE FEVER</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA,VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;INTOLERANCE OF&nbsp;FOOD</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 15-20 DAYS FOR THAT PATIENT PRIMARY CONSULTED STERING HOSPITAL DR KRUTARTH KANJIYA AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>CT KUB DONE ON 10/09/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>PUS C/S DONE ON 15/09/2025 WHICH S/O: E-COLI HEAVY GROWTH&nbsp;</P>\r\n\r\n<P>MRI OF LUMBAR SPINE DONE ON 13/10/2025 REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-100.&#39;F, PR-79/MIN, BP-150/90MMHG, SPO2-95% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF PERSISTENT FEVER SINCE MANY DAYS BLOOD CS SENT ON 13/10/2025 WHICH S/O: GRAM +VE BACTERIA E COLI&nbsp; AND CONTINUE SAME TREATMENT</P>\r\n\r\n<P>2D ECHO DONE ON 15/10/2025 WHICH S/O: EF- 60%</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 20:59:45','mo','2025-10-16 12:57:48'),(714,0,0,464,39,505,0,0,NULL,'','DISCCOND','','','<P>AFERBRILE AND HEMODYNAMICALLY STABLE.&nbsp;</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS.&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 22:05:38','mo','2025-10-30 11:39:13'),(715,0,0,464,39,505,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE 250MG&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 2 DAYS</P>\r\n\r\n<P>TAB LINOX 600MG&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 4 DAYS&nbsp;</P>\r\n\r\n<P>TAB NEXPRO FAST 40MG&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BBF&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB BIFOLATE P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0-1-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DASY&nbsp;</P>\r\n\r\n<P>TAB ZERODOL P P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS.&nbsp;</P>\r\n\r\n<P>TAB CREMALAX P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>NEOSPORINE POWDER L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1</P>\r\n\r\n<P>TESS CREAM L/A (ORAL ULCER)&nbsp; &nbsp;&nbsp;&nbsp;1-1-1&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 22:05:38','mo','2025-10-30 11:39:13'),(716,0,0,22,35,477,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ICD CODE:&nbsp;&nbsp;J12.9</STRONG></P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>B/L VIRAL PNEUMONIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O -&nbsp; IHD (S/P PTCA ) , CKD, HYPOTHYROIDISM , BRONCHIAL ASTHMA.&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 22:51:20','mo','2025-10-13 22:53:20'),(717,0,0,22,35,477,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 73 YEARS OLD FEMALE&nbsp; PATIENT PRESENTED WITH,&nbsp;<BR />\r\nK/C/O:&nbsp; IHD (S/P PTCA) , HYPOTHYROIDISM , CKD , BRONCHIAL ASTHMA&nbsp;<BR />\r\nH/O: PATIENT ADMITTED HERE FROM 6/1/2025 TO 9/1/2025 FOR UTI WITH ACUTE EXACERBATION OF BRONCHIAL ASTHMA&nbsp;<BR />\r\nC/O: COUGH AND COLD , DORE THROAT , PAINFULL SWALLOWING</P>\r\n\r\n<P>- PERIORBITAL OEDEMA , SWELLING IN NECK REGION</P>\r\n\r\n<P>- RETROSTERNAL PAIN</P>\r\n\r\n<P>- NO URINARY COMPLAINTS.&nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE 2 WEEKS</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-76/MIN, BP-130/80MMHG, SPO2-98% ON RA, RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ON 12/10/2025 SUDDEN BREATHLESSNESS AND SWEATING SO TROP - I AND ECG DONE SHOWS NORMAL.&nbsp;</P>\r\n\r\n<P>ON 13/10/2025 ORALLY DIET TOLERATED WELL AND MOBILIZATION DONE.&nbsp;&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 22:51:20','mo','2025-10-13 22:53:20'),(718,0,0,22,35,477,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE&nbsp;</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS.&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 22:51:20','mo','2025-10-13 22:53:20'),(719,0,0,22,35,477,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITRX&nbsp;</P>\r\n\r\n<P>INJ PANTOCID&nbsp;</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>TAB AZI 250MG&nbsp;</P>\r\n\r\n<P>INJ IVEPRED</P>\r\n\r\n<P>INJ DERIPHYLLIN</P>\r\n\r\n<P>TAB MUCYST</P>\r\n\r\n<P>TAB THYRONORM&nbsp;</P>\r\n\r\n<P>CAP ECOSPRIN AV 75</P>\r\n\r\n<P>TAB LIPITUS 40</P>\r\n\r\n<P>NEB DUOLIN : BUDECORT</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 22:51:20','mo','2025-10-13 22:53:20'),(720,0,0,22,35,477,0,0,NULL,'','TREATDISC_TI','','','<P>INJ UNITREX -S 1.5GM IN 100ML NS IV 1-0-1 FOR 2 DAYS&nbsp;</P>\r\n\r\n<P>TAB NEXPRO FAST 40MG P/O 1-0-0 BBF FOR 5 DAYS</P>\r\n\r\n<P>TAB IVEPRED 8MG P/O 0-1-0 AFTER FOOD FOR 5 DAYS.&nbsp;</P>\r\n\r\n<P>TAB AFASMA SR 200MG P/O 1-0-0 AFTER FOOD FOR 5 DAYS</P>\r\n\r\n<P>TAB THYRONORM 50MCG P/O 1-0-0 BBF FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>CAP ECOSPRIN AV 75 P/O 0-1-0 AFTER FOOD FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB LIPITUS 40MG P/O 0-0-1 AFTER FOOD FOR 5 DAYS.&nbsp;</P>\r\n\r\n<P>SYP RESWAS 5ML P/O 1-1-1 FOR 5 DAYS.&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 22:51:20','mo','2025-10-13 22:53:20'),(721,0,0,22,35,477,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-13 22:53:20','','0000-00-00 00:00:00'),(722,0,0,602,47,668,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ANAPHYLACTIC SHOCK</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 09:13:57','mo','2025-10-14 09:19:49'),(723,0,0,602,47,668,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 09:13:57','mo','2025-10-14 09:19:49'),(724,0,0,602,47,668,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 37 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:ITCHING AND RASHES ALL OVER BODY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SCROTAL SWELLING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DIZZINESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; EXCESSIVE PERSPIRATION SINCE 1 HOUR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; UNEASINESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; LETHARGY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; VOMITING (1 EPISODE)</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE LAST 1 HOUR FOR THAT PRIMARY CONSULTED TO DR SAMIR NAYAK AND&nbsp; NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-110/MIN, BP-80/40MMHG, SPO2-94% ON RA, RR-32/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU&nbsp;AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION MANAGED BY IV FLUIDS THERAPY</P>\r\n\r\n<P>HYPERKALEMIA MANAGED BY CALCIUM GLUCONATE AND NAHCO3FURTHUT ICU STAY WAS UNEVENTFULL SO PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26/09/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 09:13:57','mo','2025-10-14 09:19:49'),(725,0,0,602,47,668,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 09:19:49','','0000-00-00 00:00:00'),(726,0,0,602,47,668,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS</P>\r\n\r\n<P>PLAN: ALLERGY PANEL TEST</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 09:19:49','','0000-00-00 00:00:00'),(727,0,0,602,47,668,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ PRIMACORT</P>\r\n\r\n<P>INJ AVIL</P>\r\n\r\n<P>INJ ADR</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>INJ NAHCO3</P>\r\n\r\n<P>INJ CAL GLUCONATE</P>\r\n\r\n<P>TAB MONTICOPE</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 09:19:49','','0000-00-00 00:00:00'),(728,0,0,602,47,668,0,0,NULL,'','TREATDISC_TI','','','<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS</P>\r\n\r\n<P>TAB ZOFER MD&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IF VOMITING&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS</P>\r\n\r\n<P>TAB MEDROL(4)&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 3 DAYS</P>\r\n\r\n<P>TAB AIR 180&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 09:19:49','','0000-00-00 00:00:00'),(729,0,0,388,53,684,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ICD CODE:</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 09:30:49','mo','2025-10-14 09:39:01'),(730,0,0,388,53,684,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 09:30:49','mo','2025-10-14 09:39:01'),(731,0,0,388,53,684,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 56 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN<BR />\r\nH/O: I &AMP; D DONE ON 20/09/2025 FOR PERIANAL ABSCESS&nbsp;<BR />\r\nC/O: MILD BURNING IN ANAL REGION</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR DRESSING UNDER GA&nbsp; AND FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>PUS C/S (PREVIOUS ABSCESS)&nbsp; S/O: HEAVY GROWTH OF E.CHOLI.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-68/MIN, BP-132/80MMHG, SPO2-98% ON RA, RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nDRESSING DONE BY DR PRATAPSINH DODIYA ON 30/09/2025/2025 UNDER SEDATION&nbsp;WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 09:30:49','mo','2025-10-14 09:39:01'),(732,0,0,388,53,684,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:DRESSING DONE BY DR PRATAPSINH DODIYA ON 30/09/2025/2025 UNDER SEDATION&nbsp;WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 09:30:49','mo','2025-10-14 09:39:01'),(733,0,0,388,53,684,0,0,NULL,'','OTNOTE','','','<p>-unhealthy granulation tissue removal</p>\r\n\r\n<p>-cavity clear with betadine</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-dressing kept</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 09:30:49','mo','2025-10-14 09:39:01'),(734,0,0,388,53,684,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 09:39:01','','0000-00-00 00:00:00'),(735,0,0,388,53,684,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS (06/10/2025)</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 09:39:01','','0000-00-00 00:00:00'),(736,0,0,388,53,684,0,0,NULL,'','TREATGIVEN_TI','','','<P>TAB ZOSTUM-O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 0-0-15ML&nbsp; AFTETR FOOD FOR 5 DAYS</P>\r\n\r\n<P>LOX JELLY 2%&nbsp; &nbsp; &nbsp;FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (1)</P>\r\n\r\n<P>METROGYL-P OINTMENT&nbsp; &nbsp; &nbsp;FOR LOCAL APPLICATION&nbsp; &nbsp;(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>TAB LTK-H&nbsp; &nbsp; &nbsp;1--0--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 09:39:01','','0000-00-00 00:00:00'),(737,0,0,603,575,676,0,0,NULL,'','DIAG','ZZZ','Remark','CLW ON RT LOIN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-14 10:35:53','','0000-00-00 00:00:00'),(738,0,0,614,583,685,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 10:53:53','','0000-00-00 00:00:00'),(740,0,0,614,583,685,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 10:55:01','','0000-00-00 00:00:00'),(742,0,0,21,586,689,0,0,NULL,'','MADVICE','ZZZ','Remark','PHYSIOTHERAPY ','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-10-14 11:06:18','','0000-00-00 00:00:00'),(743,0,0,616,585,688,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:08:41','','0000-00-00 00:00:00'),(744,0,0,616,585,688,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out&thinsp; of bed&thinsp; and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:09:18','','0000-00-00 00:00:00'),(745,0,0,616,585,688,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>CCG---AP displacement abnormal</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:09:36','darshan','2025-10-14 13:27:26'),(747,0,0,615,584,686,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partially better</p>\n\n<p>left bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:14:45','','0000-00-00 00:00:00'),(748,0,0,619,589,693,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--ppartialy better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:18:24','','0000-00-00 00:00:00'),(749,0,0,622,592,696,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:23:03','','0000-00-00 00:00:00'),(750,0,0,611,580,680,0,0,NULL,'','DIAG','ZZZ','Remark','PAIN OVER COCCYX','','',0,'0000-00-00 00:00:00','drsagar','2025-10-14 11:23:47','','0000-00-00 00:00:00'),(751,0,0,622,592,696,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:24:29','','0000-00-00 00:00:00'),(753,0,0,622,592,696,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAEVNUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:25:20','','0000-00-00 00:00:00'),(754,0,0,623,593,697,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:27:18','darshan','2025-10-14 11:35:19'),(755,0,0,633,603,710,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT LITTLE FINGER PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-14 11:31:15','','0000-00-00 00:00:00'),(756,0,0,623,593,697,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----20-25 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:34:41','','0000-00-00 00:00:00'),(757,0,0,623,593,697,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry---wnl</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:35:31','darshan','2025-10-14 13:39:46'),(758,0,0,623,593,697,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:35:35','','0000-00-00 00:00:00'),(759,0,0,635,605,712,0,0,NULL,'','CC','ZZZ','Remark','C/O NASAL BLOCAKAGE  | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-14 11:37:45','','0000-00-00 00:00:00'),(760,0,0,618,588,692,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:43:10','','0000-00-00 00:00:00'),(762,0,0,618,588,692,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:44:29','','0000-00-00 00:00:00'),(763,0,0,629,599,705,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:46:35','','0000-00-00 00:00:00'),(765,0,0,629,599,705,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAEVNEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:47:55','','0000-00-00 00:00:00'),(766,0,0,621,591,695,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better partially</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:51:32','','0000-00-00 00:00:00'),(767,0,0,621,591,695,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:52:03','','0000-00-00 00:00:00'),(769,0,0,621,591,695,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:53:12','','0000-00-00 00:00:00'),(770,0,0,626,596,700,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 11:55:41','','0000-00-00 00:00:00'),(774,0,0,640,610,717,0,0,NULL,'','CC','ZZZ','Remark','RT SHOULDER PAIN  | 1 MONTHS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-14 12:05:04','','0000-00-00 00:00:00'),(775,0,0,636,606,713,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 12:05:57','darshan','2025-10-14 12:06:17'),(776,0,0,636,606,713,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR PAIN---4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 12:06:11','','0000-00-00 00:00:00'),(777,0,0,636,606,713,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Ltm---small central perforation</p>\n\n<p>RTM---i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 12:06:33','','0000-00-00 00:00:00'),(779,0,0,385,22,406,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:TOTAL KNEE REPLACEMENT RIGHT SIDE&nbsp;DONE BY DR PARIN KANTESARIYA AND DR SAGAR KHANPARA ON 11/10/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 12:13:56','mo','2025-10-14 13:17:46'),(780,0,0,385,22,406,0,0,NULL,'','OTNOTE','','','<p>-under spinal anesthesia and under aap paint and draped done for right knee.</p>\r\n\r\n<p>-through parapatellar approached of right knee.</p>\r\n\r\n<p>-arthrotomy done.</p>\r\n\r\n<p>-meniscus excised</p>\r\n\r\n<p>-acl &amp; pcl excised</p>\r\n\r\n<p>-femur cut done</p>\r\n\r\n<p>-tibia cut done</p>\r\n\r\n<p>-wash given by pulse lavage</p>\r\n\r\n<p>-cruciate retaining</p>\r\n\r\n<p>-cemented narrow femur size-5 placed on to femur&nbsp;</p>\r\n\r\n<p>-5 degree right size e cemented stemmed tibia placed</p>\r\n\r\n<p>-fixed bearing ultra congruent&nbsp; spacer size-12 mm</p>\r\n\r\n<p>-patella tracking checked</p>\r\n\r\n<p>-wash given</p>\r\n\r\n<p>-wound closure done layer wise</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 12:13:56','mo','2025-10-14 13:17:46'),(781,0,0,385,22,406,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 12:13:56','mo','2025-10-14 13:17:46'),(782,0,0,385,22,406,0,0,NULL,'','TREATDISC_TI','','','<P>TAB FUROLIV (500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 4 DAYS</P>\r\n\r\n<P>TAB LINOGRAM (600)&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 4 DAYS</P>\r\n\r\n<P>TAB ACETLE-SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 4 DAYS</P>\r\n\r\n<P>TAB ULTRACET&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 4 DAYS</P>\r\n\r\n<P>TAB REBEC-L&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; FOR 4 DAYS</P>\r\n\r\n<P>TAB CHYMORAL FORTE&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 4 DAYS</P>\r\n\r\n<P>TAB GB29 TOTAL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; 7PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 4 DAYS</P>\r\n\r\n<P>TAB RIVOROXABAN*(10)&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 4 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 12:13:56','mo','2025-10-14 13:17:46'),(783,0,0,626,596,700,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 12:15:34','','0000-00-00 00:00:00'),(784,0,0,632,602,709,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---3-4 episodes of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 12:18:37','','0000-00-00 00:00:00'),(785,0,0,632,602,709,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>follow up case----3-4 episodes of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 12:21:25','','0000-00-00 00:00:00'),(786,0,0,467,41,509,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS WITH CBC, SGPT</P>\r\n\r\n<P>PLENTY OF FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 12:24:40','mo','2025-10-14 12:28:34'),(787,0,0,467,41,509,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>TAB FDSON MP</P>\r\n\r\n<P>DEX Z POWDER</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 12:24:40','mo','2025-10-14 12:28:34'),(788,0,0,467,41,509,0,0,NULL,'','TREATDISC_TI','','','<P>TAB FDSON MP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp;&nbsp;&nbsp;1--0--1&nbsp; &nbsp; FOR 3 DAYS</P>\r\n\r\n<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp;FOR 3 DAYS</P>\r\n\r\n<P>DEX Z POWDER WITH WATER&nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; FOR 3 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 12:26:52','mo','2025-10-14 12:28:34'),(790,0,0,627,597,703,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotry feeling with sense of imbalance remains for few mins&thinsp;</p>\n\n<p>heaviness of head&thinsp; +</p>\n\n<p>no associated other cns symtoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 12:34:19','darshan','2025-10-14 12:36:04'),(791,0,0,627,597,703,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----FEW MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 12:34:42','','0000-00-00 00:00:00'),(792,0,0,627,597,703,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 12:36:15','darshan','2025-10-14 14:03:20'),(794,0,0,184,171,706,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 12:39:27','','0000-00-00 00:00:00'),(795,0,0,643,613,720,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 12:47:14','darshan','2025-10-14 12:49:19'),(796,0,0,643,613,720,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 12:48:47','','0000-00-00 00:00:00'),(797,0,0,643,613,720,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---abssent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit-nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabiloemtry---reduced SS score</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 12:49:31','darshan','2025-10-14 14:22:37'),(799,0,0,634,604,711,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---occasssional giddiness&thinsp;</p>\n\n<p>left ear blockage feeling&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 12:59:31','','0000-00-00 00:00:00'),(800,0,0,634,604,711,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 12:59:43','','0000-00-00 00:00:00'),(802,0,0,634,604,711,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:00:51','','0000-00-00 00:00:00'),(803,0,0,388,23,409,0,0,NULL,'','DISCDIAG','','','<P><STRONG>OPARATED CASE OF PERIANAL ABSCESS</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 13:01:01','','0000-00-00 00:00:00'),(804,0,0,388,23,409,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 13:01:01','','0000-00-00 00:00:00'),(805,0,0,388,23,409,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 56 YEARS OLD&nbsp; FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN<BR />\r\nH/O:I &AMP; D DONE ON 20/9/25 FOR PERIANL ABSCESS FOR PERIANAL ABSCESS<BR />\r\nC/O:MILD BURNING IN ANAL REGION</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR DRESSING UNDER GA.</P>\r\n\r\n<P>PUS C/S: (PREVIOUS ABSCESS): S/O: HEAVY GROWTH OF E.CHOLI</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-68/MIN, BP-132/80MMHG, SPO2-98% ON RA, RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nDRESSING DONE BY DR PRATAPSINH DODIYA ON 30/09/2025 UNDER GENERAL ANAESTHESIA AND SEDATION WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 13:01:01','','0000-00-00 00:00:00'),(806,0,0,388,23,409,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:DRESSING DONE BY DR PRATAPSINH DODIYA ON 30/09/2025 UNDER GENERAL ANAESTHESIA AND SEDATION WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 13:01:01','','0000-00-00 00:00:00'),(807,0,0,388,23,409,0,0,NULL,'','OTNOTE','','','<p>-unhealthy granulation tissue removed</p>\r\n\r\n<p>-cavity clean with betadine</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-dressing kept</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 13:01:01','','0000-00-00 00:00:00'),(808,0,0,388,23,409,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 13:01:01','','0000-00-00 00:00:00'),(809,0,0,388,23,409,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 13:01:01','','0000-00-00 00:00:00'),(810,0,0,388,23,409,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 13:01:01','','0000-00-00 00:00:00'),(811,0,0,388,23,409,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZOSTUM-O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 0-0-10ML&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>LOX 2% JELLY&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp;(1)</P>\r\n\r\n<P>METROGYL-P OINTMENT&nbsp; &nbsp;FOR LOCAL APPLICATION&nbsp; (1)&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB LTK-H&nbsp; &nbsp; 1--0--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 13:01:01','','0000-00-00 00:00:00'),(812,0,0,644,614,721,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----beter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:02:43','darshan','2025-10-14 13:04:40'),(813,0,0,648,618,725,0,0,NULL,'','CC','ZZZ','Remark','C/O GIDDINESS | 7 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-14 13:07:14','','0000-00-00 00:00:00'),(814,0,0,48,5,48,0,0,NULL,'','DISCCOND','','','<P>ON DISCHARGE TIME PATIENT IS DROWSY, OCC FOLLO VERABL COMAND.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE,</P>\r\n\r\n<P>PR-114/MIN,</P>\r\n\r\n<P>BP-110/60MMHG,</P>\r\n\r\n<P>SPO2-94% ON RA,</P>\r\n\r\n<P>RR-22/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>CNS-DROWSY, OCC FOLLO VERBALCOMAND.</P>\r\n\r\n<P>RS-BLAE+,</P>\r\n\r\n<P>CVS-S1S2+,</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>FOLY`S CATH - 09 DAYS.</P>\r\n\r\n<P>RT - 08 DAYS.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 13:07:53','mo','2025-10-14 13:34:57'),(815,0,0,615,584,686,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:12:08','','0000-00-00 00:00:00'),(816,0,0,615,584,686,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:12:42','','0000-00-00 00:00:00'),(818,0,0,650,620,727,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up cas----heaviness of head&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:16:36','','0000-00-00 00:00:00'),(819,0,0,650,620,727,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:17:18','','0000-00-00 00:00:00'),(821,0,0,650,620,727,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAEN VUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:17:31','','0000-00-00 00:00:00'),(822,0,0,48,5,48,0,0,NULL,'','TREATDISC_TI','','','<P>INJ. MEZOR 1 GM + NS 100MI IV BD (3DAYS GIVEN)</P>\r\n\r\n<P>INJ. PANTODAC 40MG IV OD</P>\r\n\r\n<P>INJ. LEVIGRESS 500MG IV TDS</P>\r\n\r\n<P>INJ. CLEXANE 0.4 ML S/C OD</P>\r\n\r\n<P>CAP. ECOSPIRIN AV 75/10 MG R/T 0-0-1</P>\r\n\r\n<P>TAB. CLOPITAB 75 MG R/T 0-1-0</P>\r\n\r\n<P>TAB. CORDERON 100MG R/T 1-1-1</P>\r\n\r\n<P>TAB. METRIDE 2MG R/T 0-1-0</P>\r\n\r\n<P>NEB. DUOLIN :BUDACORT TDS</P>\r\n\r\n<P>LIQ.CREMAFIN PLUS 30ML R/T HS</P>\r\n\r\n<P>INJ. NORAD (2/50 BY S/P) ...5ML/HR.</P>\r\n\r\n<P>INJ. DYTOR BY S/P ....0.5 ML/HR.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 13:18:33','mo','2025-10-14 13:34:57'),(823,0,0,654,624,731,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:19:24','','0000-00-00 00:00:00'),(824,0,0,655,625,732,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:22:07','','0000-00-00 00:00:00'),(826,0,0,655,625,732,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAEN V UER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:23:07','','0000-00-00 00:00:00'),(827,0,0,616,585,688,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:27:30','','0000-00-00 00:00:00'),(828,0,0,616,585,688,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:27:59','','0000-00-00 00:00:00'),(831,0,0,615,584,686,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MAENVUE','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:31:06','','0000-00-00 00:00:00'),(832,0,0,637,607,714,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:35:44','','0000-00-00 00:00:00'),(833,0,0,637,607,714,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associtted other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:36:20','darshan','2025-10-14 14:46:10'),(834,0,0,637,607,714,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:36:32','darshan','2025-10-14 14:46:32'),(836,0,0,623,593,697,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:40:15','','0000-00-00 00:00:00'),(838,0,0,641,611,718,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:43:45','','0000-00-00 00:00:00'),(840,0,0,641,611,718,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:45:24','','0000-00-00 00:00:00'),(841,0,0,469,443,512,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2-3 DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:50:08','','0000-00-00 00:00:00'),(842,0,0,469,443,512,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:50:27','','0000-00-00 00:00:00'),(843,0,0,469,443,512,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absnt</p>\n\n<p>dix hallpike--left faint torsonal nystagmus&thinsp;</p>\n\n<p>hit---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:50:48','','0000-00-00 00:00:00'),(844,0,0,469,443,512,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER\nSOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:51:20','','0000-00-00 00:00:00'),(846,0,0,616,585,688,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:52:27','','0000-00-00 00:00:00'),(847,0,0,662,632,740,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:56:51','','0000-00-00 00:00:00'),(849,0,0,662,632,740,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVEUR----10 DAYS \nSOS HAT','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 13:58:20','','0000-00-00 00:00:00'),(850,0,0,627,597,703,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:04:01','','0000-00-00 00:00:00'),(852,0,0,658,628,735,0,0,NULL,'','HIST','ZZZ','Remark','<p>fofllow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:07:51','','0000-00-00 00:00:00'),(854,0,0,658,628,735,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:09:06','','0000-00-00 00:00:00'),(855,0,0,661,631,739,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:11:23','','0000-00-00 00:00:00'),(857,0,0,627,597,703,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:12:53','','0000-00-00 00:00:00'),(859,0,0,623,593,697,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT  SM MAENVEUR ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:15:26','','0000-00-00 00:00:00'),(860,0,0,643,613,720,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:23:13','','0000-00-00 00:00:00'),(862,0,0,265,250,742,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:26:07','','0000-00-00 00:00:00'),(863,0,0,265,250,742,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of giddiness&thinsp;</p>\n\n<p>sense of imbalance +</p>\n\n<p>heaviness of head +</p>\n\n<p>k/c/o---migraine&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:28:43','','0000-00-00 00:00:00'),(864,0,0,265,250,742,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nads</p>\n\n<p>Mri brain---nad</p>\n\n<p>Neurologist opinion taken--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:29:19','','0000-00-00 00:00:00'),(865,0,0,265,250,742,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:29:22','','0000-00-00 00:00:00'),(867,0,0,643,613,720,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:35:45','','0000-00-00 00:00:00'),(868,0,0,659,629,736,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:42:35','','0000-00-00 00:00:00'),(869,0,0,659,629,736,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo--sudden onset of rtoaotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:43:33','','0000-00-00 00:00:00'),(870,0,0,659,629,736,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:43:46','darshan','2025-10-14 18:48:37'),(872,0,0,637,607,714,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:47:01','','0000-00-00 00:00:00'),(874,0,0,665,635,745,0,0,NULL,'','HIST','ZZZ','Remark','<p>left tonsillar cyst&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:55:20','','0000-00-00 00:00:00'),(875,0,0,665,635,745,0,0,NULL,'','MADVICE','ZZZ','Remark','FOLLOW UP SOS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:55:25','','0000-00-00 00:00:00'),(877,0,0,637,607,714,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 14:57:49','','0000-00-00 00:00:00'),(878,0,0,666,636,747,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 17:22:18','','0000-00-00 00:00:00'),(879,0,0,668,638,749,0,0,NULL,'','CC','ZZZ','Remark','SENSE OF IMBALANCE ----FEW YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 17:32:14','','0000-00-00 00:00:00'),(880,0,0,668,638,749,0,0,NULL,'','HIST','ZZZ','Remark','<p>when pt walks he feels imbalance sense&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n\n<p>on psychiatrist treatment</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 17:32:37','darshan','2025-10-14 17:33:14'),(881,0,0,668,638,749,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 17:32:54','','0000-00-00 00:00:00'),(883,0,0,671,641,752,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up&thinsp; case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 17:37:30','','0000-00-00 00:00:00'),(884,0,0,669,639,750,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----5-6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 17:42:07','','0000-00-00 00:00:00'),(885,0,0,669,639,750,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo--sudden onset of rotaotyr feeling any time and remains for few hrs&thinsp;</p>\n\n<p>left ear deafness and tinnitus&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 17:44:16','darshan','2025-10-14 17:48:03'),(886,0,0,669,639,750,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>Mri brain --no SOL...? vascular loop</p>\n\n<p>pta---left moderate to severe sn deafness(O)</p>\n\n<p>&thinsp;stabilometry---reduced vestibular score</p>\n\n<p>vng--leftl abyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 17:48:15','darshan','2025-10-14 19:33:15'),(888,0,0,388,57,737,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ICD CODE:</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 17:51:39','','0000-00-00 00:00:00'),(889,0,0,388,57,737,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 17:51:39','','0000-00-00 00:00:00'),(890,0,0,388,57,737,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 56 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O:&nbsp;<BR />\r\nH/O:<BR />\r\nC/O:</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-85/MIN, BP-130/80MMHG, SPO2-99% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nDONE BY DR PRATAPSINH DODIYA ON/2025 UNDER ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 17:51:39','','0000-00-00 00:00:00'),(891,0,0,388,57,737,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 17:51:39','','0000-00-00 00:00:00'),(892,0,0,667,637,748,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----5-6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 17:55:42','','0000-00-00 00:00:00'),(893,0,0,667,637,748,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo---sudden onset of rotaoty feeling any time and remains for few hrs&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 17:56:31','','0000-00-00 00:00:00'),(894,0,0,667,637,748,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometyr---reduced v estibular score</p>\n\n<p>vng--central variety of nystagmus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 17:56:45','darshan','2025-10-14 19:57:09'),(896,0,0,605,49,673,0,0,NULL,'','DISCDIAG','','','<P><STRONG>RIGHT SIDE HYDROCELE</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM II</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 18:00:40','mo','2025-10-17 09:39:27'),(897,0,0,605,49,673,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-14 18:00:40','mo','2025-10-17 09:39:27'),(898,0,0,605,49,673,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 66 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II<BR />\r\nC/O:RIGHT SIDE SCROTAL SWELLING &AMP; PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SENSATION OF HEAVINESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BURNING MICTURITION<BR />\r\n&nbsp; &nbsp; &nbsp; &nbsp; DIFFICULTY IN URINATION</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 2-3 MONTH SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN (27-08-2025)</P>\r\n\r\n<P>USG SCROTUM (27-08-2025)</P>\r\n\r\n<P>S.PSA (15-09-2025) ;-2.14 NG/ML</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-102/MIN, BP-134/80MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nHYDROCELE SAC EXCISION + PLICATION OF RESIDUAL SAC DONE BY DR PRATAPSINH DODIYA ON 06/10/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 18:00:40','mo','2025-10-17 09:39:27'),(899,0,0,605,49,673,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 18:00:40','mo','2025-10-17 09:39:27'),(900,0,0,605,49,673,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS AT EVENING</P>\r\n\r\n<P>WEAR TIGHT UNDERWEAR</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 18:00:40','mo','2025-10-17 09:39:27'),(901,0,0,605,49,673,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 18:00:40','mo','2025-10-17 09:39:27'),(902,0,0,605,49,673,0,0,NULL,'','TREATDISC_TI','','','<P>CAP AUGMENTIN (625 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB CIBAX&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0</P>\r\n\r\n<P>TAB SITABAX E&nbsp; &nbsp; &nbsp; &nbsp;0--1--1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 18:00:40','mo','2025-10-17 09:39:27'),(903,0,0,672,642,753,0,0,NULL,'','HIST','ZZZ','Remark','<p>heaviness of head +</p>\n\n<p>coughing +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 18:07:03','','0000-00-00 00:00:00'),(904,0,0,675,645,756,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-14 18:19:32','','0000-00-00 00:00:00'),(905,0,0,675,645,756,0,0,NULL,'','DIAG','ZZZ','Remark','DIFFICULTY IN CROSS LEG SITTING','','',0,'0000-00-00 00:00:00','drsagar','2025-10-14 18:19:44','','0000-00-00 00:00:00'),(906,0,0,677,647,758,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up---better</p>\n\n<p>single episode of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 18:20:09','','0000-00-00 00:00:00'),(907,0,0,682,652,764,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 18:23:21','','0000-00-00 00:00:00'),(908,0,0,683,653,765,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache --sudden onset of any time remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 18:28:48','darshan','2025-10-14 18:29:57'),(909,0,0,683,653,765,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 18:28:58','','0000-00-00 00:00:00'),(910,0,0,683,653,765,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 18:29:25','','0000-00-00 00:00:00'),(911,0,0,683,653,765,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometyr---reduced SS score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 18:30:10','darshan','2025-10-14 20:28:28'),(913,0,0,670,640,751,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 18:31:34','darshan','2025-10-14 18:37:04'),(914,0,0,670,640,751,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 18:35:20','','0000-00-00 00:00:00'),(915,0,0,670,640,751,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix halpike--nasd</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 18:37:14','','0000-00-00 00:00:00'),(919,0,0,670,640,751,0,0,NULL,'','MADVICE','ZZZ','Remark','VESTIBULAR IX ---PT WILL COME LATER ON','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 18:38:54','','0000-00-00 00:00:00'),(920,0,0,690,660,773,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----throat pain</p>\n\n<p>coughing</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 18:40:53','','0000-00-00 00:00:00'),(921,0,0,692,662,776,0,0,NULL,'','HIST','ZZZ','Remark','<p>both ear wax&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 18:44:11','','0000-00-00 00:00:00'),(922,0,0,692,662,776,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 18:44:14','','0000-00-00 00:00:00'),(924,0,0,692,662,776,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT EAR WAX REMOVAL NEXT TIME ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 18:45:35','','0000-00-00 00:00:00'),(925,0,0,673,643,754,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 18:52:31','','0000-00-00 00:00:00'),(926,0,0,679,649,761,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--thraot pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 18:55:40','','0000-00-00 00:00:00'),(927,0,0,696,666,780,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 19:06:45','','0000-00-00 00:00:00'),(928,0,0,691,661,774,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 19:10:17','','0000-00-00 00:00:00'),(929,0,0,699,669,783,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 19:12:44','','0000-00-00 00:00:00'),(930,0,0,454,52,683,0,0,NULL,'','DISCDIAG','','','<P><STRONG>B/L AXILLARY LIPOMA, (?) ACCESSORY BREAST TISSUE</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 19:13:29','mo','2025-10-14 19:37:07'),(931,0,0,454,52,683,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-14 19:13:29','mo','2025-10-14 19:37:07'),(932,0,0,454,52,683,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 35 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: PCOD<BR />\r\nH/O: SUBCUTANEOUS CYST ON BACK BEFORE 11 MONTH<BR />\r\nC/O: PAIN IN BOTH AXILLA (RIGHT &GT; LEFT)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SWELLING AT SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO PUS DISCHARGE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO FEVER</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 5-6 YR SO&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>HIGH RESOLUTION USG OF BOTH AXILLA (13-10-2025)&nbsp; &nbsp; ATTACHED WITH FILE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-80/MIN, BP-130/80MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nB/L AXILLARY LIPOMA EXCISION DONE BY DR PRATAPSINH DODIYA ON 14/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 19:13:29','mo','2025-10-14 19:37:07'),(933,0,0,454,52,683,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>B/L AXILLARY LIPOMA EXCISION DONE BY DR PRATAPSINH DODIYA ON 14/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 19:13:29','mo','2025-10-14 19:37:07'),(934,0,0,454,52,683,0,0,NULL,'','OTNOTE','','','<p>-b/l axillary lipoma +</p>\r\n\r\n<p>-left side axilla incision kept</p>\r\n\r\n<p>-fat in sub cutaneous tissue excision done</p>\r\n\r\n<p>-hemostasis achieved.</p>\r\n\r\n<p>-axillary lymphnode preserved.</p>\r\n\r\n<p>-skin closed with ethilon 3-0.</p>\r\n\r\n<p>-dressing kept.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 19:13:29','mo','2025-10-14 19:37:07'),(935,0,0,454,52,683,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 19:13:29','mo','2025-10-14 19:37:07'),(936,0,0,454,52,683,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP ON FRIDAY (17-10-2025)&nbsp;IN&nbsp;EVENING (5 TO 7 PM)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 19:13:29','mo','2025-10-14 19:37:07'),(937,0,0,454,52,683,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 19:13:29','mo','2025-10-14 19:37:07'),(938,0,0,680,650,762,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 19:15:12','','0000-00-00 00:00:00'),(939,0,0,454,52,683,0,0,NULL,'','TREATDISC_TI','','','<P>TAB AUGMENTIN (625 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL-SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB CHYMORAL FORTE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS&nbsp; &nbsp;&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 19:20:39','mo','2025-10-14 19:37:07'),(940,0,0,659,629,746,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 19:27:01','','0000-00-00 00:00:00'),(941,0,0,292,27,416,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 19:34:32','mo','2025-10-14 19:34:33'),(942,0,0,292,27,416,0,0,NULL,'','TREATDISC_TI','','','<P>INJ UNITREX-S (1.5 GM/DIL)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 9AM----9PM&nbsp; &nbsp; &nbsp; &nbsp; FOR 2 DAYS (4 INJ)</P>\r\n\r\n<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB MONDESLOR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DX 30&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB VIMGRAM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP KOLTUS-C (5 ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 19:34:32','mo','2025-10-14 19:34:33'),(943,0,0,685,655,767,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 19:40:36','','0000-00-00 00:00:00'),(944,0,0,668,638,749,0,0,NULL,'','DIAG','ZZZ','Remark','BILATERAL VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 19:48:12','','0000-00-00 00:00:00'),(945,0,0,605,49,673,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>HYDROCELE SAC EXCISION + PLICATION OF RESIDUAL SAC DONE BY DR PRATAPSINH DODIYA ON 06/10/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 19:49:47','mo','2025-10-17 09:39:27'),(946,0,0,605,49,673,0,0,NULL,'','OTNOTE','','','<p>- skin incision kept alen&nbsp;median raphe</p>\r\n\r\n<p>- skin &amp; cremasteric muscle cut</p>\r\n\r\n<p>- hydrocele sac opened &amp; fluid drained</p>\r\n\r\n<p>- sac excision done</p>\r\n\r\n<p>- plication of remaining sac done</p>\r\n\r\n<p>- hemostasis achieved</p>\r\n\r\n<p>- cremasteric&nbsp;muscle closed with vicryl 3-0</p>\r\n\r\n<p>- skin closed with ethilon 3-0</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 19:49:47','mo','2025-10-17 09:39:27'),(947,0,0,687,657,769,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 19:51:08','','0000-00-00 00:00:00'),(948,0,0,667,637,748,0,0,NULL,'','DIAG','ZZZ','Remark','CENTRAL VAREIYT OF NYSTAGMUS','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 19:57:17','','0000-00-00 00:00:00'),(949,0,0,649,58,743,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PHIMOSIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 20:08:55','mo','2025-10-15 12:54:42'),(950,0,0,649,58,743,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 9 YEAR 9 MONTHS&nbsp;OLD MALE PATIENT PRESENTED WITH,<BR />\r\nC/O: UNABLE TO RETRACT PRE-PENILE SKIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BURNING MICTURITION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SWELLING &AMP; PAIN AT PENILE AREA&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO FEVER</P>\r\n\r\n<P>ALL ABOCE MENTIONED C/O PRESENTED SINCE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR THAT PRIMARY CONSULTED AT OPD BASED AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-68/MIN,SPO2-97% ON RA, RR-16/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nCIRCUMSCISION WITH ZSR STAPPLER DONE BY DR PRATAPSINH DODIYA ON 14/10/2025 UNDER REGIONAL + SEDATION ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 20:08:55','mo','2025-10-15 12:54:42'),(951,0,0,649,58,743,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>CIRCUMSCISION WITH ZSR STAPPLER DONE BY DR PRATAPSINH DODIYA ON 14/10/2025 UNDER REGIONAL + SEDATION ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 20:08:55','mo','2025-10-15 12:54:42'),(952,0,0,649,58,743,0,0,NULL,'','OTNOTE','','','<p>-thickened pre-penile skin adherent with glans penis</p>\r\n\r\n<p>-glans penis normal</p>\r\n\r\n<p>-meatus normal</p>\r\n\r\n<p>-circumscision done with zsr (stappler) clonmed (18 mm)</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-dressing kept</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 20:08:55','mo','2025-10-15 12:54:42'),(953,0,0,649,58,743,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 20:08:55','mo','2025-10-15 12:54:42'),(954,0,0,649,58,743,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 10&nbsp;DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 20:08:55','mo','2025-10-15 12:54:42'),(955,0,0,649,58,743,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ TEXIM</P>\r\n\r\n<P>INJ RANTAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 20:08:55','mo','2025-10-15 12:54:42'),(956,0,0,649,58,743,0,0,NULL,'','TREATDISC_TI','','','<P>SYP ZIFI&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;5ML&nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>SYP IBUGESIC PLUS&nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;5ML&nbsp; &nbsp; 1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>NEOSPORIN OINTMENT&nbsp; FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; (1)</P>\r\n\r\n<P>LOX 2% JELLY&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 20:08:55','mo','2025-10-15 12:54:42'),(957,0,0,695,665,779,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 20:11:38','','0000-00-00 00:00:00'),(958,0,0,706,677,792,0,0,NULL,'','HIST','ZZZ','Remark','<p>fofllow up case---medicne skipped&thinsp;</p>\n\n<p>recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 20:15:57','','0000-00-00 00:00:00'),(959,0,0,708,679,795,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>Ltm---small central perforation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 20:22:16','','0000-00-00 00:00:00'),(960,0,0,683,653,765,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-14 20:29:05','','0000-00-00 00:00:00'),(964,0,0,683,653,765,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-14 20:29:54','','0000-00-00 00:00:00'),(965,0,0,607,51,675,0,0,NULL,'','DISCDIAG','','','<P><STRONG>COLITIS&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 20:37:35','mo','2025-10-14 20:37:39'),(966,0,0,607,51,675,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY- 2 LSCS&nbsp;</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY - NAD</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 20:37:35','mo','2025-10-14 20:37:39'),(967,0,0,607,51,675,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 36 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:2 LSCS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DIARRHOEA BEFORE 7 DAYS<BR />\r\nC/O:SEVERE ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ABDOMINAL BLOATING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSE &AMP; VOMITING 8-9 EPISODE /DAY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;LOOSE MOTION 4 TIME/DAY</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 5-7 DAYS AND INCREASE SINCE 2-3 DAYS SO&nbsp; NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN DONE ON 13/10/2025 REPORT ARRACHED WITH FILE</P>\r\n\r\n<P>TYPHI DOT DONE ON 13/10/2025 WHICH S/O: NEGATIVE&nbsp;</P>\r\n\r\n<P>URINE R/M DONE ON 13/10/2025 WHICH S/O: BACTERIA PRESENT&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-86/MIN, BP-110/70MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>REFERENCE OF DR ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST) DONE ON 14/10/2025 AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 20:37:35','mo','2025-10-14 20:37:39'),(968,0,0,607,51,675,0,0,NULL,'','DISCCOND','','','<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 20:37:35','mo','2025-10-14 20:37:39'),(969,0,0,607,51,675,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS IN EVENING 5 TO 7 PM&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 20:37:35','mo','2025-10-14 20:37:39'),(970,0,0,607,51,675,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ TRAMADOL</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 20:37:35','mo','2025-10-14 20:37:39'),(971,0,0,607,51,675,0,0,NULL,'','TREATDISC_TI','','','<P>TAB METROGYL-ER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB RIFAGUT 200MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB SPORLAC&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN-L&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; FOR 5 DAYS&nbsp;&nbsp;&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 20:37:35','mo','2025-10-14 20:37:39'),(972,0,0,582,46,645,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 7 DAYS WITH CBC,CRP,CREAT,NA,K+</P>\r\n\r\n<P>CONTINUE OWN MEDICINE&nbsp;</P>\r\n\r\n<P>- STRICT SUGAR CONTROL</P>\r\n\r\n<P>- FOLLOW UP WITH ENDOCRINOLOGIST</P>\r\n\r\n<P>- SOS SURGICAL INTERVENTION FOR LEFT LOWER PARAAORTIC REGION LESION</P>\r\n\r\n<P>- SOS CVP LINE INSERTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:02:58','mo','2025-10-16 12:57:48'),(973,0,0,582,46,645,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MERO</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ TRAMADOL</P>\r\n\r\n<P>TAB SOBIOSIS</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>TAB ROSULESS</P>\r\n\r\n<P>INJ XSULIN&nbsp;</P>\r\n\r\n<P>INJ XSULIN R</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n\r\n<P>SYP RESWAS</P>\r\n\r\n<P>NEB DUOLIN</P>\r\n\r\n<P>NEB BUDECORT</P>\r\n\r\n<P>INJ LASIX&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:02:58','mo','2025-10-16 12:57:48'),(974,0,0,66,55,690,0,0,NULL,'','DISCDIAG','','','<P><STRONG>2ND DEGREE INTERNAL HEMORRHOIDS (3,7,11 O&#39;CLOCK) + GIST</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:15:56','mo','2025-10-15 13:06:22'),(975,0,0,66,55,690,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:15:56','mo','2025-10-15 13:06:22'),(976,0,0,66,55,690,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 67 YEARS OLD MALE&nbsp; PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:RECENTLY ADMITTED HERE FOR BLEEDING HEMORRHOIDS WITH SEVERE ANEMIA WITH (?)DUODENAL NODULE(?)NET FROM 8/10/2025 TO 11/10/2025<BR />\r\nC/O:BLEEDING P/R</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;PAIN IN ANUS</P>\r\n\r\n<P>SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-82/MIN, BP-122/72MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nOPEN HEMORRHOIDECTOPMY (11 O CLOCK POSITION) &AMP; LASER ABLATION (3,7 O&#39;CLOCK POSITION) DONE BY DR PRATAPSINH DODIYA ON 14/10/2025 UNDER SPINAL&nbsp; ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:15:56','mo','2025-10-15 13:06:22'),(977,0,0,66,55,690,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>OPEN HEMORRHOIDECTOPMY (11 O CLOCK POSITION) &AMP; LASER ABLATION (3<BR />\r\n7 O&#39;CLOCK POSITION) DONE BY DR PRATAPSINH DODIYA ON 14/10/2025 UNDER SPINAL&nbsp; ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:15:56','mo','2025-10-15 13:06:22'),(978,0,0,66,55,690,0,0,NULL,'','OTNOTE','','','<p>- multiple internal hemorrhoids at (3,7,11 o&#39;clock )</p>\r\n\r\n<p>- open hemorrhoidectomy at 11 o&#39;clock position</p>\r\n\r\n<p>- 3 &amp; 7 o&#39;clock position hemorrhoids laser ablation done with lasotronix (7 w)</p>\r\n\r\n<p>- hemostasis achieved</p>\r\n\r\n<p>&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:15:56','mo','2025-10-15 13:06:22'),(979,0,0,66,55,690,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS IN EVENING 5 TO 7 PM</P>\r\n\r\n<P>BUPRAGESIC PATCH REMOVE AFTER 3 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:15:56','mo','2025-10-15 13:06:22'),(980,0,0,66,55,690,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>BUPRAGESIC PATCH</P>\r\n\r\n<P>TAB COSKLOT PLUS</P>\r\n\r\n<P>TAB SITLOM FORTE</P>\r\n\r\n<P>SYP CREMAFFIN PLUS</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:15:56','mo','2025-10-15 13:06:22'),(981,0,0,606,50,674,0,0,NULL,'','DISCDIAG','','','<P><STRONG>DENGUE FEVER WITH SEVERE THROMBOCYTOPENIA&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:25:28','mo','2025-10-16 11:46:33'),(982,0,0,606,50,674,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:25:28','mo','2025-10-16 11:46:33'),(983,0,0,606,50,674,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 34 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nH/O:LSCS BEFORE 4 YEAR<BR />\r\nC/O:INTERMITTENT FEVER SINCE 5 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;BODYACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;HEADACHE</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESNTED SINCE 5 DAYS SO PATIENT PRIMARY CONSULTED TO GENERAL PHYSICIAN PRIMARY BLOOD IX SENT WHICH S/O: VERY LOW PLATELET COUNT(19000) AND REFER TO HERE , AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>DENGUE CARD TEST DONE ON 13/10/2025 WHICH S/O; IGG +VE</P>\r\n\r\n<P>URINE R/M DONE ON 13/10/2025 WHICH S/O: NAD</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-78/MIN, BP-110/70MMHG, SPO2-78% ON RA, RR-16/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>MP CARD,TYPHI DOT DONE ON 14/10/2025 WHICH S/O: -VE</P>\r\n\r\n<P>DENGUE PCR DONE ON 14/10/2025 WHICH S/O: DENGUE VIRUS DETECTED</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:25:28','mo','2025-10-16 11:46:33'),(984,0,0,606,50,674,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 2 DAYS ON SATURDAY WITH CBC , SGPT</P>\r\n\r\n<P>TAKE PLENTY OF LIQUID</P>\r\n\r\n<P>AVOID OILY/FATTY FOOD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:25:28','mo','2025-10-16 11:46:33'),(985,0,0,606,50,674,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>INJ KANADION</P>\r\n\r\n<P>TAB FDSON MP</P>\r\n\r\n<P>TAB LANOL ER</P>\r\n\r\n<P>INJ VITNEURIN</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n\r\n<P>TAB AIR</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:25:28','mo','2025-10-16 11:46:33'),(986,0,0,127,17,224,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTGARD</P>\r\n\r\n<P>INJ TAZOMAC</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>PEG LEG PREP</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ TRAMADOL</P>\r\n\r\n<P>INJ ALBUREL</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>2 UNIT RCC</P>\r\n\r\n<P>ALLEX LOGENGES</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n\r\n<P>SYP ZINCOVIT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:38:45','mo','2025-10-16 19:08:19'),(987,0,0,127,17,224,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 2&nbsp;DAYS AT MORNING</P>\r\n\r\n<P>ABDOMINAL BELT</P>\r\n\r\n<P>PENDING REPORT; HPE AWAITED</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:39:08','mo','2025-10-16 19:08:19'),(988,0,0,508,54,687,0,0,NULL,'','DISCDIAG','','','<P><STRONG>POSTERIOR ANAL FISSURE + SKIN TAG</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:47:32','mo','2025-10-15 12:49:10'),(989,0,0,508,54,687,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 38 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN SINCE 3 MONTH<BR />\r\nC/O:PAIN IN ANUS ON &AMP; OFF SINCE 4 MONTH</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO BLEEDING P/R</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;SOMETHING COMING OUT P/R</P>\r\n\r\n<P>O/E;POSTERIOR ANAL FISSURE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;SKIN TAG PRESENT</P>\r\n\r\n<P>ALL AOVE MENTIONED COMPLAIN PRESENTED SINCE 4 MONTH SONOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-66/MIN, BP-130/80MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ECG DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nFISSURECTOMY + LORD&#39;S DILATATION DONE BY DR PRATAPSINH DODIYA ON 14/10/2025 UNDER SPINAL ANAESTHESIA&nbsp; WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:47:32','mo','2025-10-15 12:49:10'),(990,0,0,508,54,687,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:&nbsp;</P>\r\n\r\n<P>FISSURECTOMY + LORD&#39;S DILATATION DONE BY DR PRATAPSINH DODIYA ON 14/10/2025 UNDER SPINAL ANAESTHESIA&nbsp; WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:47:32','mo','2025-10-15 12:49:10'),(991,0,0,508,54,687,0,0,NULL,'','OTNOTE','','','<p>- posterior anal fissure +</p>\r\n\r\n<p>- tight internal sphincter+</p>\r\n\r\n<p>-skin tag at 6 o&#39;clock position</p>\r\n\r\n<p>- fissurectomy done at 6 o&#39;clock position</p>\r\n\r\n<p>- lord&#39;s dilatation done</p>\r\n\r\n<p>-skin excision done</p>\r\n\r\n<p>- hemostasis achieved</p>\r\n\r\n<p>- dressing kept</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:47:32','mo','2025-10-15 12:49:10'),(992,0,0,508,54,687,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS IN EVENING 5 PM TO 7PM&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:47:32','mo','2025-10-15 12:49:10'),(993,0,0,508,54,687,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>BUPRAGESIC PATCH&nbsp;</P>\r\n\r\n<P>SYP CREMAFFIN PLUS</P>\r\n\r\n<P>PC ENEMA&nbsp;</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:47:32','mo','2025-10-15 12:49:10'),(994,0,0,508,54,687,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:53:53','mo','2025-10-15 12:49:10'),(995,0,0,508,54,687,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZENFLOX OZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;0--0--10ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>LOX JELLY 2%&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR L/A&nbsp; &nbsp; &nbsp; &nbsp; BEFORE DEFECATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;....(2)</P>\r\n\r\n<P>SUCRAL ANO CREAM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR L/A&nbsp; &nbsp; &nbsp; &nbsp; AFTER DEFECATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .....(2)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>CONTINUE OWN MEDICINE:</STRONG></P>\r\n\r\n<P>TAB BISOPRIC T&nbsp; 5MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; 1--0--0&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:53:53','mo','2025-10-15 12:49:10'),(996,0,0,508,54,687,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:54:45','mo','2025-10-15 12:49:10'),(997,0,0,71,36,487,0,0,NULL,'','DISCDIAG','','','<P><STRONG>BILATERAL VIRAL PNEUMONITIS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM I , AUTISM DISORDER, OBESITY</STRONG></P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:56:28','mo','2025-10-15 11:52:18'),(998,0,0,71,36,487,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:56:28','mo','2025-10-15 11:52:18'),(999,0,0,71,36,487,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 26 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM I , AUTISM DISORDER, OBESITY<BR />\r\nC/O:FEVER WITH CHILL</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;COUGH AND COLD</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;POOR COUGH REFLEX&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DOE</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 7-8 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-105/MIN, BP-108/70MMHG, SPO2-94% ON RA, RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS ,AUTISM BEHAVIOUR P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>CHEST X RAY DONE ON 13/10/2025 AND ATTACHED WITH FILE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-14 23:56:28','mo','2025-10-15 11:52:18'),(1000,0,0,71,36,487,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:02:27','mo','2025-10-15 11:52:18'),(1001,0,0,71,36,487,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX-S</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n\r\n<P>CAP FLUVIR</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ DERIPHYLLIN</P>\r\n\r\n<P>INJ PRIMACORT</P>\r\n\r\n<P>NEB DUOLIN BUDECORT</P>\r\n\r\n<P>TAB DX</P>\r\n\r\n<P>SYP KOLTUS C</P>\r\n\r\n<P>TAB SERANACE&nbsp;</P>\r\n\r\n<P>TAB MELOTE</P>\r\n\r\n<P>TAB NITRON</P>\r\n\r\n<P>TAB RIVATRIL</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:02:27','mo','2025-10-15 11:52:18'),(1002,0,0,625,56,701,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PILONIDAL SINUS&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:15:50','mo','2025-10-15 13:22:23'),(1003,0,0,625,56,701,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 21 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:PAIN IN CLEFT REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;SELLING AT THAT SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;PUS DISCHARGE FROM THAT SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO FEVER&nbsp;</P>\r\n\r\n<P>ALL AOVE MENTIONED COMPLAIN PRESENTED SINCE 1.5 MONT SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG LOCAL PART (PILONIDAL SINUS) DONE ON 29/08/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-89/MIN, BP-120/80MMHG, SPO2-99% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nLASE ABLATION OF PILONIDAL SINUS TRACT DONE BY DR PRATAPSINH DODIYA ON 14/10/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:15:50','mo','2025-10-15 13:22:23'),(1004,0,0,625,56,701,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:&nbsp;</P>\r\n\r\n<P>LASE ABLATION OF PILONIDAL SINUS TRACT DONE BY DR PRATAPSINH DODIYA ON 14/10/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:15:50','mo','2025-10-15 13:22:23'),(1005,0,0,625,56,701,0,0,NULL,'','OTNOTE','','','<p>- pilonidal sinus tract b/w intergluteal cleft</p>\r\n\r\n<p>- multiple hair ,&nbsp;slough ,dead tissue excised by scooping and curratage</p>\r\n\r\n<p>- whole tract clean with betadine &amp; saline</p>\r\n\r\n<p>- primary laser ablation done with 7w (lasotronix)</p>\r\n\r\n<p>- re scooping &amp; tract cleaning done</p>\r\n\r\n<p>- laser ablation done with 12w (lastronix)</p>\r\n\r\n<p>- hemostasis achieved</p>\r\n\r\n<p>- dressing kept</p>\r\n\r\n<p>-risk of recurrence explained</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:15:50','mo','2025-10-15 13:22:23'),(1006,0,0,625,56,701,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:15:50','mo','2025-10-15 13:22:23'),(1007,0,0,625,56,701,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3&nbsp;DAYS&nbsp;</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n\r\n<P>AVOID PROLONGED SITTING ON HARD SURFACE,HAIR REDUCTION ON BUTTOCK</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:15:50','mo','2025-10-15 13:22:23'),(1008,0,0,625,56,701,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:15:50','mo','2025-10-15 13:22:23'),(1009,0,0,625,56,701,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZIFI CV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;......FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; .......FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS P&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; ......FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:15:50','mo','2025-10-15 13:22:23'),(1010,0,0,142,34,470,0,0,NULL,'','DISCDIAG','','','<P><STRONG>RIGHT INTRA CRANIAL BLEED</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM,HTN,DYSLIPIDEMIA,POST TURP</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:34:56','mo','2025-10-16 12:16:12'),(1011,0,0,142,34,470,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:34:56','mo','2025-10-16 12:16:12'),(1012,0,0,142,34,470,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 89 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM,HTN,DYSLIPIDEMIA<BR />\r\nH/O:FOR ACUTE GASTRITIS PATIENT ADMITTED AT WHOCKARDT HOSPITAL FROM 3/10/2025 TO 4/10/2025</P>\r\n\r\n<P>TURP DONE BEFORE 2 YR<BR />\r\nC/O:VOMITING BEFORE 3 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;PERSPIRATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;SEVERE GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;SEVERE HEADACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FORGETFULLNESS SINCE 2-3 DAYS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 6-7 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-56/MIN, BP-114/60MMHG, SPO2-96% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>URINE R/M DONE ON 11/10/2025 WHICH S/O: NAD</P>\r\n\r\n<P>USG ABDOMEN DONE ON 11/10/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>MRI BRAIN LIMITED STUDY DONE ON 11/10/2025 WHICH S/O: LATE SUBACUTE STAGE OF INTRAPARANCHYMAL HEMORRHAGE IN RIGHT GANGLIO PARIETAL REGION OTHER FINDINGS AS PER REPORT&nbsp;</P>\r\n\r\n<P>REFERENCE OF DR RIDHAM RIDHAM KHANDERIA(NEUROSURGEON) DONE ON 12/10/2025 AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>IN A VIEW OF DIFFICULTY IN URINATION FOLEY&#39;S INSERTION DONE BY DR PRATAPSINH DODIYA(GENERAL SURGEON) ON 12/10/2025 WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>HYPONATREMIA CORRECTED WITH INJ NS 3%</P>\r\n\r\n<P>SEEN BY DR RIDHAM KHANDERIA AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>FOLEY&#39;S CLAMPING START AND REMOVE&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLESO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:34:56','mo','2025-10-16 12:16:12'),(1013,0,0,142,34,470,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 7 DAYS TO DR JAYANT MEHTA AND DR RIDHAM KHANDERIA&nbsp;</P>\r\n\r\n<P>CT ANGIO BRAIN WITH CAROTID&nbsp;</P>\r\n\r\n<P>HOLD OWN MEDICINE TILL FOLLOW UP&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:34:56','mo','2025-10-16 12:16:12'),(1014,0,0,142,34,470,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ CEFCON</P>\r\n\r\n<P>INJ MANNITOL</P>\r\n\r\n<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>INJ TRAMADOL</P>\r\n\r\n<P>INJ NS %</P>\r\n\r\n<P>TAB AMTAS</P>\r\n\r\n<P>TAB CALPOL</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ VITNEURIN</P>\r\n\r\n<P>TAB LIOFEN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:34:56','mo','2025-10-16 12:16:12'),(1015,0,0,507,44,574,0,0,NULL,'','DISCDIAG','','','<P><STRONG>COMMUNITY ACQUIRED PNEUMONIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: OA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:40:56','mo','2025-10-16 11:25:20'),(1016,0,0,507,44,574,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 64 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: OA<BR />\r\nC/O:COUGHING WITH EXPECTORATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;THROAT PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DIFFICULTY IN BREATHING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;WEANESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 4-5 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-90/MIN, BP-130/80MMHG, SPO2-98% ON RA, RR-21/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>HRCT THORAX DONE ON 13/10/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>SPUTUM R/M DONE ON 13/10/2025 WHICH S/O: 110-120 PUS CELL,8-10 RBC,FEW GRAM NEGATIVE BACILLI SEEN SO SPUTUM C/S SENT WHICH S/O: NO GROWTH&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:40:56','mo','2025-10-16 11:25:20'),(1017,0,0,507,44,574,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:40:56','mo','2025-10-16 11:25:20'),(1018,0,0,507,44,574,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX-S</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n\r\n<P>CAP FLUVIR</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ DERIPHYLLIN</P>\r\n\r\n<P>NEB DUOILIN/BUDECORT</P>\r\n\r\n<P>TAB ZERODOL-P</P>\r\n\r\n<P>TAB DX&nbsp;</P>\r\n\r\n<P>TAB CREMALAX</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 00:40:56','mo','2025-10-16 11:25:20'),(1019,0,0,733,702,826,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT TENNIS ELBOW','','',0,'0000-00-00 00:00:00','drsagar','2025-10-15 11:03:02','','0000-00-00 00:00:00'),(1020,0,0,733,702,826,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT BICIPITAL TENDINITIS','','',0,'0000-00-00 00:00:00','drsagar','2025-10-15 11:03:13','','0000-00-00 00:00:00'),(1021,0,0,716,686,805,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:06:06','','0000-00-00 00:00:00'),(1022,0,0,722,691,813,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:12:00','darshan','2025-10-15 11:12:53'),(1023,0,0,66,55,690,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 11:12:42','mo','2025-10-15 13:06:22'),(1024,0,0,66,55,690,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZENFLOX OZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB COSKLOT PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB SITLOM FORTE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 6&nbsp;DAYS</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;0--0--15ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>LOX JELLY 2 %&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE DEFECATION&nbsp; &nbsp; &nbsp; &nbsp;..(1)</P>\r\n\r\n<P>SUCRAL ANO CREAM&nbsp; &nbsp; &nbsp; FOR L/A&nbsp; &nbsp; AFTER DEFECATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...(1)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 11:12:42','mo','2025-10-15 13:06:22'),(1025,0,0,717,687,806,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:17:30','','0000-00-00 00:00:00'),(1026,0,0,728,697,820,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:22:58','','0000-00-00 00:00:00'),(1027,0,0,721,690,811,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----15 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:30:11','','0000-00-00 00:00:00'),(1028,0,0,721,690,811,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo---sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:31:09','','0000-00-00 00:00:00'),(1029,0,0,721,690,811,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilometry----reduced vestibular score</p>\n\n<p>vng---central vareity of nystagmus with bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:31:27','darshan','2025-10-15 13:05:55'),(1030,0,0,721,690,811,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:31:28','','0000-00-00 00:00:00'),(1031,0,0,71,36,487,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 11:35:32','mo','2025-10-15 11:52:18'),(1032,0,0,71,36,487,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE-CV 250&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; FATER FOOD&nbsp; &nbsp; &nbsp; FOR 3 DAYS</P>\r\n\r\n<P>CAP FLUVIR 75&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 1 DAYS (3 TAB)</P>\r\n\r\n<P>TAB NEXPROFAST 40&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp;FOR 3 DAYS</P>\r\n\r\n<P>TAB AFSMA-SR 200&nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 3 DAYS</P>\r\n\r\n<P>TAB DX 30&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 3 DAYS</P>\r\n\r\n<P>SYP KOLTUS-C&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O 5ML 1--1--1&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 3 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>TAB SITASON-D(100/10)&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;1--0--0</P>\r\n\r\n<P>TAB APRIGLIM MV (2)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>TAB SERANACE (5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0--1--2</P>\r\n\r\n<P>TAB MELOCET 3&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1</P>\r\n\r\n<P>TAB NITRON 10&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--2</P>\r\n\r\n<P>TAB RIVOTRIL (2)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 11:35:32','mo','2025-10-15 11:52:18'),(1033,0,0,731,700,824,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:38:55','','0000-00-00 00:00:00'),(1034,0,0,731,700,824,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotry feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:39:25','','0000-00-00 00:00:00'),(1035,0,0,731,700,824,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----wnl</p>\n\n<p>CCG-left ward rotation</p>\n\n<p>vng---right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:39:40','darshan','2025-10-15 13:29:59'),(1037,0,0,737,706,832,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:42:38','','0000-00-00 00:00:00'),(1038,0,0,90,79,819,0,0,NULL,'','HIST','ZZZ','Remark','<p>headache&thinsp;---<br />\nct pns---mucosal thickening&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:47:32','darshan','2025-10-15 14:27:54'),(1039,0,0,90,79,819,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>ct pns</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:47:37','','0000-00-00 00:00:00'),(1040,0,0,742,711,838,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS----2-3 MONTHS 2 EPISODES ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:55:39','','0000-00-00 00:00:00'),(1041,0,0,742,711,838,0,0,NULL,'','CC','ZZZ','Remark','LEFT UPPER LIMB WEAKNESS WITH NUMBNESS BEFORE 1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:55:39','','0000-00-00 00:00:00'),(1042,0,0,742,711,838,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden jurky feeling with heaviness of head&thinsp;</p>\n\n<p>no associated other cns symtpsmo&thinsp;&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:55:57','','0000-00-00 00:00:00'),(1043,0,0,742,711,838,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>physician opinion taken</p>\n\n<p>CT brain done</p>\n\n<p>MRI brain ---small early subacute infarct in right thalamo capsular and medial temoporal region</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:56:18','darshan','2025-10-15 17:26:28'),(1045,0,0,732,701,825,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 11:58:56','','0000-00-00 00:00:00'),(1047,0,0,732,701,825,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ---1 WEEK','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-15 12:00:27','','0000-00-00 00:00:00'),(1048,0,0,746,715,843,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>giddiness +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 12:03:38','','0000-00-00 00:00:00'),(1049,0,0,625,56,701,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 12:03:42','mo','2025-10-15 13:22:23'),(1050,0,0,741,710,837,0,0,NULL,'','HIST','ZZZ','Remark','<p>vertigo---better for hearing&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 12:08:39','darshan','2025-10-15 12:44:33'),(1051,0,0,649,58,743,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 12:14:17','mo','2025-10-15 12:54:42'),(1052,0,0,719,689,808,0,0,NULL,'','HIST','ZZZ','Remark','<p>nasal injury--yesterday night&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 12:20:18','','0000-00-00 00:00:00'),(1053,0,0,719,689,808,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose --external deviation left side</p>\n\n<p>ARC--nad</p>\n\n<p>phx--clear&thinsp;</p>\n\n<p>no acitive beeling&thinsp;</p>\n\n<p>CT pns---linear displace # of nasal bone&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 12:20:48','darshan','2025-10-15 14:02:56'),(1055,0,0,747,716,844,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR TINNITUS AND DEAFNESS----4-5 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 12:24:25','','0000-00-00 00:00:00'),(1056,0,0,747,716,844,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>BTM---i/n</p>\n\n<p>pta---right moderate sn deafness</p>\n\n<p>Oae--poor corelation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 12:24:33','darshan','2025-10-15 13:43:05'),(1058,0,0,753,722,851,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n\n<p>pta--moderate to severe sn deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 12:27:45','darshan','2025-10-15 13:16:23'),(1059,0,0,751,720,849,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 12:35:29','darshan','2025-10-15 12:36:40'),(1060,0,0,179,16,216,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 12:41:52','mo','2025-10-15 12:45:31'),(1061,0,0,179,16,216,0,0,NULL,'','TREATDISC_TI','','','<P>INJ TAZOWAR 4.5GM/ NS 100&nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; TDS&nbsp; 6AM....2...PM...10PM&nbsp; &nbsp;FOR 2 DAYS&nbsp; (7 INJ)</P>\r\n\r\n<P>INJ AMIKACIN 500MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp;OD&nbsp; &nbsp; &nbsp;2PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 2 DAYS&nbsp; (2 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB NEXPROFAST 40&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; FOR 3 DAYS</P>\r\n\r\n<P>TAB DX 30&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 3 DAYS</P>\r\n\r\n<P>TAB NAPROSYN&nbsp; &nbsp;250&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 3 DAYS</P>\r\n\r\n<P>TAB BETACAP PLUS&nbsp; 40/10&nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 10 DAYS</P>\r\n\r\n<P>TAB KRINAP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS</P>\r\n\r\n<P>SYP RESWAS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;5ML TDS&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 3 DAYS&nbsp; LAST BATTLE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>TAB ATORVASTIN&nbsp; &nbsp;5MG&nbsp; &nbsp; &nbsp;1--0--0</P>\r\n\r\n<P>TAB NEBICARD&nbsp; 5MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0</P>\r\n\r\n<P>TAB CORTEL&nbsp; &nbsp;40&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 12:41:52','mo','2025-10-15 12:45:31'),(1062,0,0,757,726,856,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--28 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 12:58:47','','0000-00-00 00:00:00'),(1063,0,0,757,726,856,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatyr feeling for few seconnds only and repated on movement of head&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 12:59:30','','0000-00-00 00:00:00'),(1064,0,0,757,726,856,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilomtyry---reduced vestibulare score</p>\n\n<p>vng---central vareity of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 12:59:40','darshan','2025-10-15 13:56:21'),(1065,0,0,757,726,856,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 12:59:44','','0000-00-00 00:00:00'),(1066,0,0,757,726,856,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 12:59:55','','0000-00-00 00:00:00'),(1069,0,0,759,728,859,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 13:11:58','','0000-00-00 00:00:00'),(1071,0,0,721,690,811,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS BD MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-15 13:20:46','','0000-00-00 00:00:00'),(1072,0,0,731,700,824,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 13:30:56','','0000-00-00 00:00:00'),(1074,0,0,730,699,823,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 13:40:46','','0000-00-00 00:00:00'),(1075,0,0,730,699,823,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden osnet of&thinsp; rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 13:41:15','','0000-00-00 00:00:00'),(1076,0,0,730,699,823,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dixc hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---bialtel high freq severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 13:41:24','darshan','2025-10-15 14:17:04'),(1077,0,0,730,699,823,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 13:41:29','','0000-00-00 00:00:00'),(1079,0,0,731,700,824,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-15 13:44:23','','0000-00-00 00:00:00'),(1080,0,0,763,732,863,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--left ear pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 13:52:10','','0000-00-00 00:00:00'),(1081,0,0,757,726,856,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 13:57:06','','0000-00-00 00:00:00'),(1084,0,0,719,689,808,0,0,NULL,'','MADVICE','ZZZ','Remark','REDUCTION FOR # NASAL BONE ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-15 14:06:47','','0000-00-00 00:00:00'),(1085,0,0,769,738,870,0,0,NULL,'','HIST','ZZZ','Remark','<p>throat pain----</p>\n\n<p>coughing&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 14:09:14','','0000-00-00 00:00:00'),(1086,0,0,730,699,823,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 14:17:30','','0000-00-00 00:00:00'),(1089,0,0,730,699,823,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-15 14:31:32','','0000-00-00 00:00:00'),(1090,0,0,774,743,876,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 17:16:36','','0000-00-00 00:00:00'),(1092,0,0,757,726,856,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-15 17:18:08','','0000-00-00 00:00:00'),(1093,0,0,778,747,880,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 17:21:39','','0000-00-00 00:00:00'),(1094,0,0,778,747,880,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symptoms&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 17:21:44','darshan','2025-10-15 17:23:32'),(1095,0,0,778,747,880,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus-absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>iht--nad</p>\n\n<p>pta----wnl</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 17:23:49','darshan','2025-10-15 18:39:44'),(1096,0,0,778,747,880,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 17:23:53','','0000-00-00 00:00:00'),(1099,0,0,742,711,838,0,0,NULL,'','MADVICE','ZZZ','Remark','NEUROLOGIST  OPINION ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-15 17:30:22','','0000-00-00 00:00:00'),(1100,0,0,777,746,879,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 17:37:09','','0000-00-00 00:00:00'),(1101,0,0,772,741,874,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 17:43:45','','0000-00-00 00:00:00'),(1102,0,0,772,741,874,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 17:44:11','darshan','2025-10-15 18:53:38'),(1103,0,0,772,741,874,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----bialtle high frq severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---bilateral vestibulopathy with bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 17:44:23','darshan','2025-10-15 18:54:44'),(1105,0,0,779,748,881,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 17:47:37','','0000-00-00 00:00:00'),(1107,0,0,779,748,881,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER---10 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-15 17:49:02','','0000-00-00 00:00:00'),(1108,0,0,775,744,877,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 17:52:02','','0000-00-00 00:00:00'),(1109,0,0,776,745,878,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 17:53:21','','0000-00-00 00:00:00'),(1110,0,0,773,742,875,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ---occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 17:55:24','','0000-00-00 00:00:00'),(1111,0,0,773,742,875,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hllpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 17:55:33','','0000-00-00 00:00:00'),(1112,0,0,507,44,574,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-15 17:55:50','mo','2025-10-16 11:25:20'),(1114,0,0,773,742,875,0,0,NULL,'','MADVICE','ZZZ','Remark','PHYSICIAN OPINION FOR BREATHLESSNESS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-15 17:56:53','','0000-00-00 00:00:00'),(1115,0,0,781,749,883,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:01:49','','0000-00-00 00:00:00'),(1116,0,0,781,749,883,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR ITCHING WITH BLOCKAGE FEELING ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:02:02','','0000-00-00 00:00:00'),(1117,0,0,781,749,883,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left ear hard wax&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:02:11','','0000-00-00 00:00:00'),(1118,0,0,784,752,887,0,0,NULL,'','CC','ZZZ','Remark','ABD PAIN | 30 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-15 18:02:24','','0000-00-00 00:00:00'),(1119,0,0,784,752,887,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-15 18:02:27','','0000-00-00 00:00:00'),(1120,0,0,781,749,883,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT EAR WAX REMOVAL NEXT TIME','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:04:31','','0000-00-00 00:00:00'),(1121,0,0,782,750,885,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase----heaviness of head with headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:06:36','','0000-00-00 00:00:00'),(1122,0,0,783,751,886,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:12:36','','0000-00-00 00:00:00'),(1123,0,0,260,245,891,0,0,NULL,'','CC','ZZZ','Remark','URTI||','','',0,'0000-00-00 00:00:00','drjayant','2025-10-15 18:15:43','','0000-00-00 00:00:00'),(1124,0,0,260,245,891,0,0,NULL,'','CC','ZZZ','Remark','URTI | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-15 18:15:46','','0000-00-00 00:00:00'),(1125,0,0,260,245,891,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-15 18:15:50','','0000-00-00 00:00:00'),(1126,0,0,787,755,890,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo---sudden onset of rotaotyr feeling when pt is in any posture she feels sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associted othew cns sysmtpsm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:18:37','darshan','2025-10-15 18:22:06'),(1127,0,0,787,755,890,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 YR||','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:21:27','','0000-00-00 00:00:00'),(1128,0,0,787,755,890,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>Pta--right moderate to severe sn deafness(o)</p>\n\n<p>&thinsp;vemp----wnl</p>\n\n<p>CCGwnl</p>\n\n<p>vng--right labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:22:22','darshan','2025-10-15 19:15:04'),(1129,0,0,787,755,890,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:22:52','','0000-00-00 00:00:00'),(1130,0,0,789,758,894,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for headche&thinsp;</p>\n\n<p>giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:25:18','','0000-00-00 00:00:00'),(1131,0,0,791,760,897,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:30:25','','0000-00-00 00:00:00'),(1132,0,0,725,694,816,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT BICIPITAL TENDINITIS','','',0,'0000-00-00 00:00:00','drsagar','2025-10-15 18:33:23','','0000-00-00 00:00:00'),(1133,0,0,725,694,816,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT 1ST CMC JOINT ARTHRITIS','','',0,'0000-00-00 00:00:00','drsagar','2025-10-15 18:34:22','','0000-00-00 00:00:00'),(1134,0,0,793,762,902,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:35:48','','0000-00-00 00:00:00'),(1135,0,0,778,747,880,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:40:29','','0000-00-00 00:00:00'),(1137,0,0,796,765,906,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 YR  OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:49:12','','0000-00-00 00:00:00'),(1138,0,0,796,765,906,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>positional giddiness&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:49:50','','0000-00-00 00:00:00'),(1139,0,0,796,765,906,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:50:09','darshan','2025-10-15 19:37:25'),(1141,0,0,772,741,874,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:55:32','','0000-00-00 00:00:00'),(1144,0,0,778,747,880,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MANNEUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-15 18:59:41','','0000-00-00 00:00:00'),(1145,0,0,795,764,904,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 19:01:10','','0000-00-00 00:00:00'),(1146,0,0,803,772,913,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-15 19:02:53','','0000-00-00 00:00:00'),(1147,0,0,805,774,916,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset any time and remains for few mins&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 19:07:45','darshan','2025-10-15 19:11:04'),(1148,0,0,805,774,916,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 YR OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 19:10:43','','0000-00-00 00:00:00'),(1149,0,0,805,774,916,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR PAIN WITH FULLNESS FEELING FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 19:10:43','','0000-00-00 00:00:00'),(1150,0,0,805,774,916,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 19:10:43','','0000-00-00 00:00:00'),(1151,0,0,805,774,916,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta----bialtelr high freq severe sn deafness</p>\n\n<p>stabilomtry---right side reduced</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 19:11:23','darshan','2025-10-15 19:52:27'),(1153,0,0,257,242,919,0,0,NULL,'','CC','ZZZ','Remark','URTI||','','',0,'0000-00-00 00:00:00','drjayant','2025-10-15 19:13:32','','0000-00-00 00:00:00'),(1154,0,0,807,776,918,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---medicine skipped&thinsp;</p>\n\n<p>recurernce of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 19:19:26','','0000-00-00 00:00:00'),(1156,0,0,772,741,874,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-15 19:22:30','','0000-00-00 00:00:00'),(1157,0,0,797,766,907,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---occassional sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 19:26:25','','0000-00-00 00:00:00'),(1158,0,0,797,766,907,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix ahllpike--nad</p>\n\n<p>hit-nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 19:26:39','','0000-00-00 00:00:00'),(1159,0,0,796,765,906,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 19:38:32','','0000-00-00 00:00:00'),(1161,0,0,808,777,920,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 19:48:24','','0000-00-00 00:00:00'),(1162,0,0,808,777,920,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 19:48:59','','0000-00-00 00:00:00'),(1163,0,0,808,777,920,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>MRI brain---nad</p>\n\n<p>pta--bilatearal moderate to severe sn deafness(o)</p>\n\n<p>stabiloemtry---reduced ss score</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 19:49:08','darshan','2025-10-16 18:43:03'),(1166,0,0,796,765,906,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-15 19:55:44','','0000-00-00 00:00:00'),(1167,0,0,810,779,923,0,0,NULL,'','HIST','ZZZ','Remark','<p>burning sensation in tongue</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 20:02:04','','0000-00-00 00:00:00'),(1168,0,0,810,779,923,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>oral cavity----osmf</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 20:02:11','','0000-00-00 00:00:00'),(1169,0,0,815,784,928,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-15 20:13:41','','0000-00-00 00:00:00'),(1170,0,0,477,61,841,0,0,NULL,'','DISCDIAG','','','<P><STRONG>APPENDICULAR PERFORATION</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:10:10','mo','2025-10-16 18:50:02'),(1171,0,0,477,61,841,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 42 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:RIGHT LOWER CHEST LIPOMA EXCISION DONE BEFORE MANY YEAR<BR />\r\nC/O:ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;VOMITING BEFORE 2 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO FEVER</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 3 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN DONE ON 13/10/2025 WHICH S/O: APPENDICITIS</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-79/MIN, BP-100/60MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nLAPAROSCOPIC APPENDICECTOMY DONE BY DR PRATAPSINH DODIYA ON 15/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:10:10','mo','2025-10-16 18:50:02'),(1172,0,0,477,61,841,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>LAPAROSCOPIC APPENDICECTOMY DONE BY DR PRATAPSINH DODIYA ON 15/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:10:10','mo','2025-10-16 18:50:02'),(1173,0,0,477,61,841,0,0,NULL,'','OTNOTE','','','<p>- inflammed , thick wall perforated appendix</p>\r\n\r\n<p>- appendix adherent with omentum</p>\r\n\r\n<p>- no meckel&#39;s diverticula</p>\r\n\r\n<p>- pus flakes near base of appendix</p>\r\n\r\n<p>- thoroughly saline wash given</p>\r\n\r\n<p>- appendicectomy done</p>\r\n\r\n<p>- hemostasis achieved</p>\r\n\r\n<p>- 10mm port sheath closed with vicryl(port)</p>\r\n\r\n<p>- skin closed with skin stappler</p>\r\n\r\n<p>- dressing kept</p>\r\n\r\n<p>- appendix sent for hpe</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:10:10','mo','2025-10-16 18:50:02'),(1174,0,0,477,61,841,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 10&nbsp;DAYS AT EVENING (5 TO 7 PM)</P>\r\n\r\n<P>DRESSING AFTER 5 DAYS</P>\r\n\r\n<P>REST FOR 6 WEEKS</P>\r\n\r\n<P>HPE REPORT AWAITED</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:10:10','mo','2025-10-16 18:50:02'),(1175,0,0,477,61,841,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>INJ INFUPAR&nbsp;</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:10:10','mo','2025-10-16 18:50:02'),(1176,0,0,720,60,809,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE APPENDICITIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:19:46','mo','2025-10-16 18:53:04'),(1177,0,0,720,60,809,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 30 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;VOMITING&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FEVER ON AND OFF</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 15 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN AND PELVIS DONE ON 1/10/2025,8/10/2025 WHICH S/O: ACUTE APPENDICITIS</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-88/MIN, BP-90/60MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nLAPAROSCOPIC APPENDICECTOMY DONE BY DR PRATAPSINH DODIYA ON 15/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:19:46','mo','2025-10-16 18:53:04'),(1178,0,0,720,60,809,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>LAPAROSCOPIC APPENDICECTOMY DONE BY DR PRATAPSINH DODIYA ON 15/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:19:46','mo','2025-10-16 18:53:04'),(1179,0,0,720,60,809,0,0,NULL,'','OTNOTE','','','<p>- thick wall,inflammed appendix in rif&nbsp;</p>\r\n\r\n<p>- no meckel&#39;s diverticula</p>\r\n\r\n<p>- appendicectomy done</p>\r\n\r\n<p>- pelvic organ normal&nbsp;</p>\r\n\r\n<p>- hemostasis achieved</p>\r\n\r\n<p>- 10mm port sheath closed with vicryl (port)</p>\r\n\r\n<p>- skin closed with skin stappler</p>\r\n\r\n<p>- appendix sent for hpe&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:19:46','mo','2025-10-16 18:53:04'),(1180,0,0,720,60,809,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 10 DAYS AT EVENING (5 TO 7 PM)</P>\r\n\r\n<P>DRESSING AFTER 5 DAYS</P>\r\n\r\n<P>HPE REPORT AWAITED&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:19:46','mo','2025-10-16 18:53:04'),(1181,0,0,720,60,809,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ METROGYL&nbsp;</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:19:46','mo','2025-10-16 18:53:04'),(1182,0,0,714,59,803,0,0,NULL,'','DISCDIAG','','','<P><STRONG>- STEROID WITHDRAWAL WITH HYPONATREMIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>- WITH GASTROENTERITITIS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>- K/C/O: DM,IHD-CAD(POST PTCA-LAD ON (3/10/2025)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:28:19','mo','2025-10-16 12:52:05'),(1183,0,0,714,59,803,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 56 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM,IHD-CAD(POST PTCA-LAD ON 3/10/2025)<BR />\r\nH/O:CHRONIC SMOKER / TOBACCO<BR />\r\nC/O:DECREASE ORAL INTAKE&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA-VOMITING&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;INCREASED GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DRYNESS OF MOUTH&nbsp;</P>\r\n\r\n<P>&nbsp;ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE LAST 2 DAYS AND INCREASE SICE TODAY MORNING SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-112/MIN, BP-100/60MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU&nbsp;AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>CHEST X-RAY DONE ON 15/10/2025&nbsp;</P>\r\n\r\n<P>HYPONATREMIA CORRECTED WITH INJ NS 3% SUPPLIMENT&nbsp;</P>\r\n\r\n<P>FURTHER 24 HOUR WAS UNEVENTFULL IN ICU SO PATIENT SHIFTED TO WARD&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:28:19','mo','2025-10-16 12:52:05'),(1184,0,0,714,59,803,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:28:19','mo','2025-10-16 12:52:05'),(1185,0,0,714,59,803,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ H ACTRAPID</P>\r\n\r\n<P>INJ NS 3%</P>\r\n\r\n<P>TAB BETAVERT OD</P>\r\n\r\n<P>TAB ECOSPRIN</P>\r\n\r\n<P>TAB CLAVIX</P>\r\n\r\n<P>TAB TORVASON</P>\r\n\r\n<P>TAB DYTOR PLUS</P>\r\n\r\n<P>TAB STEMETIL MD</P>\r\n\r\n<P>INJ ELDETVIT</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:28:19','mo','2025-10-16 12:52:05'),(1186,0,0,752,62,871,0,0,NULL,'','DISCDIAG','','','<P><STRONG>VIRAL FEVER WITH ARTHRALGIA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:37:04','mo','2025-10-17 12:02:33'),(1187,0,0,752,62,871,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 61 YEARS OLD&nbsp;MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:LOWER LIMB JOINT PAIN&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DIFFICULTY IN WALKING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FEVER ON AND OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 10 DAYS FOR THAT PATIENT PRIMARY CONSULTED AT MANGALAM HOSPITAL MORBI AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-88/MIN, BP-90/60MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>CHIKENGUNIYA PCR SENT ON 15/10/2025 WHICH WAS&nbsp;NEGATIVE.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:37:04','mo','2025-10-17 12:02:33'),(1188,0,0,752,62,871,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 10 DAYS&nbsp;&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:37:04','mo','2025-10-17 12:02:33'),(1189,0,0,752,62,871,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ IVEPRED</P>\r\n\r\n<P>TAB ETOLOK</P>\r\n\r\n<P>TAB HCQ</P>\r\n\r\n<P>TAB JAKSEAS</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-15 22:37:04','mo','2025-10-17 12:02:33'),(1190,0,0,507,44,574,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 08:37:40','mo','2025-10-16 11:25:20'),(1191,0,0,829,798,948,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 11:04:52','','0000-00-00 00:00:00'),(1192,0,0,836,805,956,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-16 11:07:40','','0000-00-00 00:00:00'),(1193,0,0,824,793,943,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 11:08:05','','0000-00-00 00:00:00'),(1195,0,0,824,793,943,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAVNUER ----5 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-16 11:09:08','','0000-00-00 00:00:00'),(1196,0,0,828,797,947,0,0,NULL,'','CC','ZZZ','Remark','URTI | 2 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-16 11:09:15','','0000-00-00 00:00:00'),(1197,0,0,828,797,947,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-16 11:09:20','','0000-00-00 00:00:00'),(1198,0,0,842,811,962,0,0,NULL,'','CC','ZZZ','Remark','URTI | 3 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-16 11:14:05','','0000-00-00 00:00:00'),(1199,0,0,507,44,574,0,0,NULL,'','TREATDISC_TI','','','<P>INJ UNITREX-S&nbsp; &nbsp;1.5GM/DILUTED&nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; 8AM--8PM&nbsp; &nbsp; &nbsp; FOR 3 DAYS (7 INJ)&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB CLARIBID (500MG)&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 2&nbsp;DAYS (3 TAB)</P>\r\n\r\n<P>CAP FLUVIR(75MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 2&nbsp;DAYS&nbsp; (3 TAB)</P>\r\n\r\n<P>TAB KRIRAB DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS</P>\r\n\r\n<P>TAB DX(30MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 3&nbsp;DAYS</P>\r\n\r\n<P>TAB AFASHMA SR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp; 3&nbsp;DAYS</P>\r\n\r\n<P>TAB CREMALAX 10MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp;IF CONSTIPATION&nbsp;&nbsp;</P>\r\n\r\n<P>SYP KOLTUS - C&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; 5ML TDS&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 11:18:40','mo','2025-10-16 11:25:20'),(1200,0,0,831,800,950,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---15 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 11:20:55','','0000-00-00 00:00:00'),(1201,0,0,831,800,950,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no assciated other cns symptos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 11:21:35','','0000-00-00 00:00:00'),(1202,0,0,831,800,950,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absnet</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----bialtelr high freq severe sn deafness</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng---right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 11:21:51','darshan','2025-10-16 13:04:01'),(1204,0,0,834,803,954,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 11:24:34','','0000-00-00 00:00:00'),(1205,0,0,835,804,955,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 11:29:17','','0000-00-00 00:00:00'),(1206,0,0,606,50,674,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 11:32:26','mo','2025-10-16 11:46:33'),(1207,0,0,606,50,674,0,0,NULL,'','TREATDISC_TI','','','<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 2 DAYS</P>\r\n\r\n<P>TAB FDSON MP&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 2 DAYS</P>\r\n\r\n<P>TAB AIR (120)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; SOS&nbsp; &nbsp; &nbsp;IF ITCHING&nbsp; &nbsp; &nbsp; 3 TAB</P>\r\n\r\n<P>&nbsp; &nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 11:32:26','mo','2025-10-16 11:46:33'),(1208,0,0,822,791,940,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---headache +</p>\n\n<p>episodic headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 11:36:47','','0000-00-00 00:00:00'),(1209,0,0,823,792,942,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 11:43:44','','0000-00-00 00:00:00'),(1210,0,0,142,34,470,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>MOBILIZATION+</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 11:44:11','mo','2025-10-16 12:16:12'),(1211,0,0,142,34,470,0,0,NULL,'','TREATDISC_TI','','','<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 7 DAYS</P>\r\n\r\n<P>TAB LEVIPIL (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 7 DAYS</P>\r\n\r\n<P>TAB TELMICON-LN (10MG)&nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 7 DAYS</P>\r\n\r\n<P>TAB TAMWELL&nbsp; (0.4)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 7&nbsp;DAYS</P>\r\n\r\n<P>TAB CALPOL (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp; &nbsp; IF HEADACHE&nbsp; &nbsp; (6 TAB)</P>\r\n\r\n<P>TAB LIOFEN(10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; SOS&nbsp; &nbsp; &nbsp; &nbsp;IF HICCOUGH&nbsp; &nbsp; &nbsp;(6 TAB)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 11:44:11','mo','2025-10-16 12:16:12'),(1212,0,0,825,794,944,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 11:54:57','','0000-00-00 00:00:00'),(1213,0,0,825,794,944,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotoatyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associtaed other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 11:55:28','','0000-00-00 00:00:00'),(1214,0,0,825,794,944,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nads</p>\n\n<p>hit-nad<br />\nmri brain----arnold chiary I</p>\n\n<p>pta---bialtelr high freq severe sn deafness</p>\n\n<p>stabilomtry-reduced vestibualr score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 11:55:39','darshan','2025-10-16 13:48:46'),(1217,0,0,413,391,952,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better for ear pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 11:58:16','','0000-00-00 00:00:00'),(1218,0,0,413,391,952,0,0,NULL,'','PLAN','ZZZ','Remark','14','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 11:58:56','','0000-00-00 00:00:00'),(1219,0,0,827,796,946,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 12:11:11','','0000-00-00 00:00:00'),(1220,0,0,827,796,946,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR TINNITUS ---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 12:11:57','','0000-00-00 00:00:00'),(1221,0,0,827,796,946,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>Pta---bilaterl moderate to severe sn deafness (o)</p>\n\n<p>OAE--poor corealtion</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 12:12:10','darshan','2025-10-16 14:13:31'),(1222,0,0,582,46,645,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 12:14:41','mo','2025-10-16 12:57:48'),(1223,0,0,832,801,951,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 12:15:31','','0000-00-00 00:00:00'),(1224,0,0,866,835,989,0,0,NULL,'','CC','ZZZ','Remark','ABD PAIN, BODYACHE | 3 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-16 12:21:49','','0000-00-00 00:00:00'),(1225,0,0,866,835,989,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-16 12:23:10','','0000-00-00 00:00:00'),(1226,0,0,826,795,945,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 12:30:13','','0000-00-00 00:00:00'),(1227,0,0,582,46,645,0,0,NULL,'','TREATDISC_TI','','','<P>INJ MEROPENUM 1GM IN 100ML NS IV OVER 30 MINUTES THREE TIMES IN A DAY&nbsp; FOR 7 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;7AM--1PM--9PM&nbsp; &nbsp; (22 INJ)&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB SOBIOSIS&nbsp; 500MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 7 DAYS</P>\r\n\r\n<P>SYP RESWAS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; 5ML&nbsp; TDS&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 7 DAYS</P>\r\n\r\n<P>TAB STAMLO(5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 7 DAYS</P>\r\n\r\n<P>TAB PANTO&nbsp; &nbsp;(40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 7 DAYS</P>\r\n\r\n<P>TAB FOLISPOR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 7 DAYS</P>\r\n\r\n<P>TAB ULTRACET&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp;IF PAIN&nbsp; &nbsp; &nbsp; &nbsp;5 TAB</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 12:30:21','mo','2025-10-16 12:57:48'),(1228,0,0,826,795,945,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 12:30:41','','0000-00-00 00:00:00'),(1231,0,0,826,795,945,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-16 12:31:20','','0000-00-00 00:00:00'),(1232,0,0,830,799,949,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 12:33:13','','0000-00-00 00:00:00'),(1233,0,0,858,827,981,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO ---2 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 12:37:13','','0000-00-00 00:00:00'),(1234,0,0,858,827,981,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other c ns symtpsmo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 12:37:20','darshan','2025-10-16 12:39:04'),(1235,0,0,858,827,981,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry--wnl</p>\n\n<p>vng-left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 12:39:14','darshan','2025-10-16 14:03:16'),(1236,0,0,858,827,981,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 12:39:18','','0000-00-00 00:00:00'),(1237,0,0,714,59,803,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE&nbsp; CV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB NEXPROFAST&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ZOFER MD (8MG)&nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB BETAVERT OD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP DIGERAFT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; 5ML&nbsp; TDS&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB SITASON-D(10/100)&nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB STAGLIM M1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;0--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB OMNACORTIL (10MG)&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp;<STRONG>F&#39;BYSTART</STRONG>&nbsp; &nbsp; &nbsp;(5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:</P>\r\n\r\n<P>TAB ECOSPRIN150MG&nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB CLAVIX(75MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB TORVASON (40MG)&nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 12:49:29','mo','2025-10-16 12:52:05'),(1238,0,0,714,59,803,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY- POST PTCA (3/10/2025)</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY- DM,IHD-CAD(POST PTCA-LAD ON (3/10/2025)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 12:49:56','mo','2025-10-16 12:52:05'),(1239,0,0,859,828,982,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow upcase--recurecne of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 12:51:08','','0000-00-00 00:00:00'),(1240,0,0,859,828,982,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 12:51:12','','0000-00-00 00:00:00'),(1241,0,0,859,828,982,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 12:51:39','','0000-00-00 00:00:00'),(1243,0,0,859,828,982,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAE  NVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-16 12:51:55','','0000-00-00 00:00:00'),(1244,0,0,854,823,977,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 12:54:12','','0000-00-00 00:00:00'),(1245,0,0,831,800,950,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:04:34','','0000-00-00 00:00:00'),(1247,0,0,876,845,999,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-16 13:05:22','','0000-00-00 00:00:00'),(1248,0,0,720,60,809,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 13:11:34','mo','2025-10-16 18:53:04'),(1249,0,0,720,60,809,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZENFLOX- OZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB AKILOS - P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5&nbsp;DAYS&nbsp; &nbsp;&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 13:11:34','mo','2025-10-16 18:53:04'),(1250,0,0,274,21,284,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>EMERGENCY LAPAROTOMY + CLOSURE OF STOMACH PERFORATION + THOROUGH PERITONEAL WASH DONE BY DR. PRATAPSINH DODIYA ON 10/10/2025 UNDER GENERAL ANEASTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 13:20:52','mo','2025-10-18 12:50:56'),(1251,0,0,274,21,284,0,0,NULL,'','OTNOTE','','','<p>- upper midline incision kept</p>\r\n\r\n<p>- skin incision kept</p>\r\n\r\n<p>- abdomen opened in layer</p>\r\n\r\n<p>- billiary peritonitis 2l +</p>\r\n\r\n<p>- thorough peritoneal wash given</p>\r\n\r\n<p>- 2 x 1 cm perforation on anterior wall of stomach in pylorus</p>\r\n\r\n<p>- cirrhotic hard enlarge liver</p>\r\n\r\n<p>- multiple dilated veins around stomach , abdominal wall</p>\r\n\r\n<p>- omentum bleed on touch</p>\r\n\r\n<p>- ligamentum teres&nbsp;mobilazation done</p>\r\n\r\n<p>- stomach perforation closed with mersilk 3-0</p>\r\n\r\n<p>- ligamentum teres put &amp; fixed over perforation site</p>\r\n\r\n<p>- drain kept in subhepatic space</p>\r\n\r\n<p>- swab &amp; instrument count done</p>\r\n\r\n<p>- linea&nbsp;alba closed with pds no-1</p>\r\n\r\n<p>- skin closed with skin stappler&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 13:20:52','mo','2025-10-18 12:50:56'),(1252,0,0,872,841,995,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT SIDE DQ','','',0,'0000-00-00 00:00:00','drsagar','2025-10-16 13:21:18','','0000-00-00 00:00:00'),(1253,0,0,863,832,986,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:23:12','','0000-00-00 00:00:00'),(1254,0,0,863,832,986,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:23:12','','0000-00-00 00:00:00'),(1255,0,0,863,832,986,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling with headache remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:23:14','darshan','2025-10-16 14:27:26'),(1256,0,0,863,832,986,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--wnl</p>\n\n<p>stabilomtry--reduced vestibular scoree</p>\n\n<p>vng---central&thinsp; variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:23:23','darshan','2025-10-16 14:28:26'),(1257,0,0,863,832,986,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:23:23','','0000-00-00 00:00:00'),(1258,0,0,833,802,953,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--2 YRS||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:27:17','','0000-00-00 00:00:00'),(1259,0,0,833,802,953,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>right ear deafness +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:28:50','','0000-00-00 00:00:00'),(1260,0,0,833,802,953,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nasd</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain--nad</p>\n\n<p>pta---right severe sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>CCG---</p>\n\n<p>vng--right endolymphatic hydrops with bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:28:59','darshan','2025-10-16 15:21:09'),(1263,0,0,831,800,950,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAE  NVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:30:23','','0000-00-00 00:00:00'),(1264,0,0,837,806,957,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up ---self medication done&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:35:43','','0000-00-00 00:00:00'),(1265,0,0,841,810,961,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:39:07','','0000-00-00 00:00:00'),(1266,0,0,127,17,224,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>LAPAROTOMY + RIGHT HEMICOLONECTOMY + ILEO COLONIC ANASTOMOSIS (STAPPLED) DONE BY DR PRATAPSINH DODIYA&nbsp; ON 10/10/2025 UNDER&nbsp; GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 13:40:41','mo','2025-10-16 19:08:19'),(1267,0,0,127,17,224,0,0,NULL,'','OTNOTE','','','<p>per-op:</p>\r\n\r\n<p>- large mass in proximal transverse colon</p>\r\n\r\n<p>- liver surface normal</p>\r\n\r\n<p>- peritoneal surface normal</p>\r\n\r\n<p>- rest of small bowel/colon normal&nbsp;</p>\r\n\r\n<p>- enlarge node in transverse mesocolon&nbsp;</p>\r\n\r\n<p>- undersurface of diaphragm normal</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>operative steps:</p>\r\n\r\n<p>- midline incision kept</p>\r\n\r\n<p>- abdomen opened in layer</p>\r\n\r\n<p>- peritoneal cavity excavated</p>\r\n\r\n<p>- caecum ,ascending colon mobilization done</p>\r\n\r\n<p>- transverse colon mobilization done</p>\r\n\r\n<p>- duodenum identified</p>\r\n\r\n<p>- ileo colic ,right middle ,right colic pedicle ligated near origin.</p>\r\n\r\n<p>- ileum(15 cm) + caecum + ascending colon + proximal transverse colon with growth resection done</p>\r\n\r\n<p>- ileo-colonic anastomosis done with stappler (side to side)</p>\r\n\r\n<p>- mesenteric defect closed with mersilk 3-0</p>\r\n\r\n<p>- thoroughly saline wash given</p>\r\n\r\n<p>- drain kept in right paracolic gutter</p>\r\n\r\n<p>- swab &amp; instrument count done - ok</p>\r\n\r\n<p>- hemostasis achieved</p>\r\n\r\n<p>- linea alba closed with pds no-1 (continue stitches)</p>\r\n\r\n<p>- romovac kept in subcutaneous tissue</p>\r\n\r\n<p>- skin closed with skin stappler&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 13:40:41','mo','2025-10-16 19:08:19'),(1268,0,0,843,812,963,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:44:08','','0000-00-00 00:00:00'),(1269,0,0,825,794,944,0,0,NULL,'','PLAN','ZZZ','Remark','1','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:49:23','','0000-00-00 00:00:00'),(1271,0,0,844,813,965,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2 WEEKS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:55:43','','0000-00-00 00:00:00'),(1272,0,0,844,813,965,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotyr feeling any time and remains for few mins to hrs&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other&thinsp; cns symtpsmo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:56:25','','0000-00-00 00:00:00'),(1273,0,0,844,813,965,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced SS score</p>\n\n<p>vng--central varieaty of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:56:44','darshan','2025-10-16 14:45:45'),(1276,0,0,848,817,970,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:59:17','','0000-00-00 00:00:00'),(1277,0,0,848,817,970,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--2 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:59:22','','0000-00-00 00:00:00'),(1278,0,0,848,817,970,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 13:59:37','','0000-00-00 00:00:00'),(1279,0,0,848,817,970,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 14:00:21','','0000-00-00 00:00:00'),(1281,0,0,848,817,970,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-16 14:00:40','','0000-00-00 00:00:00'),(1282,0,0,858,827,981,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 14:04:07','','0000-00-00 00:00:00'),(1284,0,0,853,822,976,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----better for imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 14:09:23','','0000-00-00 00:00:00'),(1286,0,0,825,794,944,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-16 14:10:51','','0000-00-00 00:00:00'),(1287,0,0,860,829,983,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--mild sense of imblaance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 14:15:41','','0000-00-00 00:00:00'),(1289,0,0,858,827,981,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-16 14:17:07','','0000-00-00 00:00:00'),(1290,0,0,861,830,984,0,0,NULL,'','HIST','ZZZ','Remark','<p>foflow up case--beter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 14:24:04','','0000-00-00 00:00:00'),(1292,0,0,861,830,984,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-16 14:24:54','','0000-00-00 00:00:00'),(1293,0,0,869,838,992,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR TINNITUS ---FEW YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 14:43:23','','0000-00-00 00:00:00'),(1294,0,0,869,838,992,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR PAIN||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 14:43:23','','0000-00-00 00:00:00'),(1295,0,0,869,838,992,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>bialtel neuralgic pain</p>\n\n<p>pta---wnl</p>\n\n<p>OAE---bialtelr poor corelation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 14:43:35','darshan','2025-10-16 15:13:13'),(1296,0,0,880,848,1005,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---heaviness of head +</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 14:53:09','','0000-00-00 00:00:00'),(1297,0,0,874,843,997,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 15:06:47','','0000-00-00 00:00:00'),(1298,0,0,874,843,997,0,0,NULL,'','CC','ZZZ','Remark','NASAL DISCHARGE BLOOD STAINED||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 15:07:49','','0000-00-00 00:00:00'),(1299,0,0,874,843,997,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose---mild congested</p>\n\n<p>phx--clear</p>\n\n<p>neck--nad</p>\n\n<p>ct pns---mild polypoidal thickening</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 15:08:05','darshan','2025-10-16 20:03:35'),(1301,0,0,873,842,996,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----recuerence of veritgo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 15:10:42','','0000-00-00 00:00:00'),(1302,0,0,833,802,953,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 15:21:16','','0000-00-00 00:00:00'),(1303,0,0,833,802,953,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 15:21:21','','0000-00-00 00:00:00'),(1304,0,0,127,17,224,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>DRAIN IN SITU (DAY-7)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 15:21:28','mo','2025-10-16 19:08:19'),(1305,0,0,127,17,224,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZENFLOX-OZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB AKILOS-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB SPOROLAC&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB RIFAGUT (200 MG)&nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5&nbsp;DAYS</P>\r\n\r\n<P>SYP ZINCOVIT (5 ML)&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5&nbsp;DAYS</P>\r\n\r\n<P>ABDOMINAL BELT............(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 15:21:28','mo','2025-10-16 19:08:19'),(1306,0,0,833,802,953,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 15:22:17','','0000-00-00 00:00:00'),(1309,0,0,833,802,953,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-16 15:22:32','','0000-00-00 00:00:00'),(1310,0,0,740,65,939,0,0,NULL,'','DISCDIAG','','','<P><STRONG>EOSINOPHILIC GRANULOMATOSIS WITH POLYANGITIS</STRONG></P>\r\n\r\n<P><STRONG>MONONEURITIS MULTIPLEX</STRONG></P>\r\n\r\n<P><STRONG>EOSINOPHILIC CHOLECYSTITIS</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: ASTHMA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 15:29:07','mo','2025-10-20 11:57:40'),(1311,0,0,740,65,939,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O: LAPAROSCOPIC CHOLECYSTECTOMY DONE ON 11/09/2025 BY DR PRATAPSINH DODIYA</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 15:29:07','mo','2025-10-20 11:57:40'),(1312,0,0,740,65,939,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 66 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: ASTHMA<BR />\r\nC/O: SEVERE PAIN &AMP; NUMBNESS IN BOTH LOWER LIMB</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DIFFICULTY IN WALKING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; MILD NUMBNESS IN RIGHT HAND</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO FEVER</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 20-25 DAYS AND INCREASED SINCE 2-3 DAYS SO PT CAME TO ER DEPARTMENT AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>MRI WHOLE SPINE SCREENING WITH LUMBER SPINE CONTRAST (15/10/2025)</P>\r\n\r\n<P>NCS REPORT (15/10/2025) WHICH S/O: SEVERE SENSORY &GT; MOTOR</P>\r\n\r\n<P>ESR, CPK TOTAL, URINE R/M (15/10/2025) ; REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>ABSOLUTE EOSINOPHIL COUNT (15/10/2025) S/O: 23760 /UL</P>\r\n\r\n<P>ANA BY IF (15/10/2025) WHICH IS NEGATIVE.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-82/MIN, BP-130/76MMHG, SPO2-96% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>CSF R/M DONE WHICH IS NORMAL</P>\r\n\r\n<P>P ANCA, C ANCA SENT BOTH ARE NEGATIVE</P>\r\n\r\n<P>REFERENCE OF DR ROSHAN MISTRY (NEUROPHYSICIAN) DONE ON 16/10/2025 AND FOLLOW HIS ALL ADVICE.</P>\r\n\r\n<P>REFERENCE OF DR PRASHANT DUDHAGARA (RHEUMOTOLOGIST) DONE ON 17/10/2025 AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>RA FACTOR DONE WHICH WAS POSITIVE :153.3 IU/ML.</P>\r\n\r\n<P>IGRA S/O NEGATIVE</P>\r\n\r\n<P>REVIEW OF DR ROSHAN MISTRY DONE AND ALL HIS ADVICE FOLLOWED.</P>\r\n\r\n<P>INJ MABALL RA UNDER ICU OBSERVATION GIVEN ON 19/10/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 15:29:07','mo','2025-10-20 11:57:40'),(1313,0,0,740,65,939,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 8&nbsp;DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 16:47:26','mo','2025-10-20 11:57:40'),(1314,0,0,740,65,939,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>TAB MAXGALIP AT</P>\r\n\r\n<P>TAB ATIVAN</P>\r\n\r\n<P>TAB GABAPIN</P>\r\n\r\n<P>INJ SOLUMEDROL</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>INJ CYCLOXAN</P>\r\n\r\n<P>TAB QUTAN</P>\r\n\r\n<P>TAB MBTRON PLUS</P>\r\n\r\n<P>TAB SHECAL HD</P>\r\n\r\n<P>TAB MAXGALIN AT</P>\r\n\r\n<P>TA SYMBAL&nbsp;</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 16:47:26','mo','2025-10-20 11:57:40'),(1315,0,0,882,850,1007,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better for giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 17:23:12','','0000-00-00 00:00:00'),(1316,0,0,884,852,1009,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--two episodes of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 17:27:50','','0000-00-00 00:00:00'),(1317,0,0,887,855,1012,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 17:41:26','','0000-00-00 00:00:00'),(1318,0,0,888,856,1013,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 17:46:39','','0000-00-00 00:00:00'),(1319,0,0,895,863,1021,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtpoms&thinsp;</p>\n\n<p>h/o---head injury befre 6 months&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 17:56:39','darshan','2025-10-16 17:57:23'),(1320,0,0,895,863,1021,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ---6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 17:56:52','','0000-00-00 00:00:00'),(1321,0,0,895,863,1021,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 17:57:33','','0000-00-00 00:00:00'),(1322,0,0,895,863,1021,0,0,NULL,'','DIAG','ZZZ','Remark','P/O---POST TRAUMATIC BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 17:57:49','','0000-00-00 00:00:00'),(1325,0,0,895,863,1021,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEUVER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:02:26','','0000-00-00 00:00:00'),(1326,0,0,477,61,841,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRSH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 18:05:05','mo','2025-10-16 18:50:02'),(1327,0,0,477,61,841,0,0,NULL,'','TREATDISC_TI','','','<P>CAP AUGMENTIN (625 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 18:05:05','mo','2025-10-16 18:50:02'),(1328,0,0,889,857,1014,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:07:34','','0000-00-00 00:00:00'),(1329,0,0,889,857,1014,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>&thinsp;heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:08:32','darshan','2025-10-16 19:38:52'),(1330,0,0,889,857,1014,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:08:59','darshan','2025-10-16 19:23:18'),(1332,0,0,886,854,1011,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:13:06','','0000-00-00 00:00:00'),(1333,0,0,890,858,1015,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:15:43','','0000-00-00 00:00:00'),(1334,0,0,890,858,1015,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR DEAFNESS ----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:15:54','','0000-00-00 00:00:00'),(1335,0,0,890,858,1015,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---i/dull</p>\n\n<p>pta---bialtelo high frq severe sn deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:16:08','darshan','2025-10-16 19:27:00'),(1336,0,0,903,871,1030,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:18:34','','0000-00-00 00:00:00'),(1337,0,0,907,875,1034,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:28:35','','0000-00-00 00:00:00'),(1338,0,0,907,875,1034,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden&thinsp; onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:30:44','','0000-00-00 00:00:00'),(1339,0,0,907,875,1034,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilomtyry----reduced vestibular score</p>\n\n<p>vng---left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:31:02','darshan','2025-10-16 19:49:15'),(1340,0,0,907,875,1034,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:31:03','','0000-00-00 00:00:00'),(1341,0,0,907,875,1034,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:31:08','','0000-00-00 00:00:00'),(1342,0,0,892,860,1017,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:33:41','darshan','2025-10-16 18:38:42'),(1343,0,0,902,870,1029,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-16 18:37:19','','0000-00-00 00:00:00'),(1344,0,0,894,862,1019,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache --remains for few mins to hrs&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:38:58','darshan','2025-10-16 18:39:38'),(1345,0,0,894,862,1019,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:39:09','','0000-00-00 00:00:00'),(1346,0,0,894,862,1019,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>vemp---wnl</p>\n\n<p>vng---central vareity of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:39:50','darshan','2025-10-17 19:33:25'),(1347,0,0,894,862,1019,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:39:51','','0000-00-00 00:00:00'),(1348,0,0,808,777,920,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:43:07','','0000-00-00 00:00:00'),(1349,0,0,808,777,920,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:45:59','','0000-00-00 00:00:00'),(1351,0,0,808,777,920,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:48:28','','0000-00-00 00:00:00'),(1352,0,0,896,864,1022,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow upcase---throat pain and nasal irritation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:50:38','','0000-00-00 00:00:00'),(1354,0,0,919,887,1050,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-16 18:51:41','','0000-00-00 00:00:00'),(1355,0,0,896,864,1022,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS CT PNS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:52:27','','0000-00-00 00:00:00'),(1356,0,0,897,865,1023,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:53:10','','0000-00-00 00:00:00'),(1357,0,0,897,865,1023,0,0,NULL,'','CC','ZZZ','Remark','LEFT SIDE NASAL BLOCKAGE -----1 MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:55:48','','0000-00-00 00:00:00'),(1358,0,0,897,865,1023,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose---left side discharge +</p>\n\n<p>CT pns--left sino nasal mucosal thickeining&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 18:56:32','','0000-00-00 00:00:00'),(1359,0,0,899,867,1026,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 19:02:57','','0000-00-00 00:00:00'),(1360,0,0,901,869,1028,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of giddiness of short duration</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 19:08:10','darshan','2025-10-16 19:08:49'),(1361,0,0,901,869,1028,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 19:08:28','','0000-00-00 00:00:00'),(1362,0,0,901,869,1028,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit-nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 19:09:01','','0000-00-00 00:00:00'),(1363,0,0,920,888,1052,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 19:16:56','','0000-00-00 00:00:00'),(1364,0,0,923,891,1056,0,0,NULL,'','HIST','ZZZ','Remark','<p>foflflow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 19:19:47','','0000-00-00 00:00:00'),(1365,0,0,923,891,1056,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 19:19:49','','0000-00-00 00:00:00'),(1366,0,0,889,857,1014,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 19:23:51','','0000-00-00 00:00:00'),(1368,0,0,904,872,1031,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 19:29:52','','0000-00-00 00:00:00'),(1370,0,0,889,857,1014,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-16 19:38:52','','0000-00-00 00:00:00'),(1371,0,0,912,880,1039,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 19:40:30','','0000-00-00 00:00:00'),(1373,0,0,912,880,1039,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY\nBD MENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-16 19:41:55','','0000-00-00 00:00:00'),(1374,0,0,915,883,1045,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case --better</p>\n\n<p>heaviness of head&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 19:44:22','','0000-00-00 00:00:00'),(1375,0,0,907,875,1034,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 19:50:00','','0000-00-00 00:00:00'),(1377,0,0,916,884,1046,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 19:52:35','','0000-00-00 00:00:00'),(1379,0,0,916,884,1046,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER FOR  10 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-16 19:53:43','','0000-00-00 00:00:00'),(1380,0,0,917,885,1047,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case------recurence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 19:57:01','','0000-00-00 00:00:00'),(1381,0,0,917,885,1047,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus----absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 19:57:13','','0000-00-00 00:00:00'),(1382,0,0,921,889,1053,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 20:01:39','','0000-00-00 00:00:00'),(1384,0,0,907,875,1034,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-16 20:18:16','','0000-00-00 00:00:00'),(1385,0,0,927,895,1061,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 20:28:26','','0000-00-00 00:00:00'),(1387,0,0,927,895,1061,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-16 20:30:00','','0000-00-00 00:00:00'),(1388,0,0,931,899,1068,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotyr feeling when pt is in any posture he feels imbalance sense&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 20:39:15','darshan','2025-10-16 20:41:04'),(1389,0,0,931,899,1068,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--5-6 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 20:40:01','','0000-00-00 00:00:00'),(1390,0,0,931,899,1068,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain --multiple small and patchy non h&#39;gic cerebellar infarct&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-16 20:41:15','darshan','2025-10-17 13:05:54'),(1395,0,0,752,62,871,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO JOINT PAIN</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 20:48:09','mo','2025-10-17 12:02:33'),(1396,0,0,752,62,871,0,0,NULL,'','TREATDISC_TI','','','<P>TAB KRIRAB DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 10 DAYS</P>\r\n\r\n<P>TAB ETOLOK (90 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS</P>\r\n\r\n<P>TAB JAKSEAS (5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS</P>\r\n\r\n<P>TAB HCQ (200 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 10 DAYS</P>\r\n\r\n<P>TAB APTIPRED(4MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 20:48:09','mo','2025-10-17 12:02:33'),(1397,0,0,879,66,1004,0,0,NULL,'','DISCDIAG','','','<P>DENGUE FEVER</P>\r\n\r\n<P>K/C/O CAD-POST PTCA</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 23:49:19','mo','2025-10-18 16:53:09'),(1398,0,0,879,66,1004,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 73 YEARS OLD MALE&nbsp;PATIENT PRESENT WITH,</P>\r\n\r\n<P>HISTORY GIVEN BY PATIENT HIMSELF.</P>\r\n\r\n<P>K/C/O: IHD, POST PTCA - LAD, LVEF = 25%.<BR />\r\nC/O: INTERMITTENT FEVER WITH RIGOR;GENERALISED&nbsp;WEAKNESS WITH ANOREXIA;NAUSEA SINCE 2 DAYS.<BR />\r\nPRIMARY TREATMENT TAKEN AT GENERAL PHYSIAN AND DIAGNOSED DENGUE FEVER.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:&nbsp;<BR />\r\nTEMP- 101`F<BR />\r\nPR- 46/MIN<BR />\r\nBP- 100/50 MMHG&nbsp;<BR />\r\nSPO2-95% ON RA&nbsp;<BR />\r\nRR- 18/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>RBS-116MG/DL</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16-10-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION MANAGED BY IV FLUID THERAPY.</P>\r\n\r\n<P>GENERAL CONDITION EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17-10-2025,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE.PLT S/O 1,27,000 CELLS/MICRO.</P>\r\n\r\n<P>GENERAL CONDITION OBSERVED IN ICU.</P>\r\n\r\n<P>CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18-10-2025,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.PLT S/O 92,000 CELLS/MICRO.</P>\r\n\r\n<P>2D ECHO DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>GENERAL CONDITION EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>PATIENT WANTS&nbsp; TO DISACHEGED AGAINST MEDICAL ADVICE.&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 23:49:19','mo','2025-10-18 16:53:09'),(1399,0,0,879,66,1004,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. RABICROSS</P>\r\n\r\n<P>INJ. QUICKSET</P>\r\n\r\n<P>INJ. NS/RL</P>\r\n\r\n<P>TAB. FDSON MP</P>\r\n\r\n<P>INJ. VITNEURIN</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>TAB LANOL ER</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-16 23:49:19','mo','2025-10-18 16:53:09'),(1400,0,0,800,64,936,0,0,NULL,'','DISCDIAG','','','<P>ACUTE CORONARY SYNDROME (NSTEMI) + UTI&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>K/C/O : MULTIPLE SCLEROSIS +</P>\r\n\r\n<P>BED RIDDEN STATUS + IHD&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-17 00:06:27','mo','2025-10-18 15:23:10'),(1401,0,0,800,64,936,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 59 YEARS OLD MALE&nbsp; PATIENT PRESENT WITH,<BR />\r\nK/C/O: IHD, MULTIPLE SCLEROSIS.<BR />\r\nC/O: INTERMITTENT CHEST PAIN</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; Y`DAY EVENING.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:&nbsp;<BR />\r\nTEMP- 98.0`F<BR />\r\nPR- 82/MIN<BR />\r\nBP- 160/100 MMHG&nbsp;<BR />\r\nSPO2- 98% ON RA&nbsp;<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15-10-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF HYPERTENSION INJ. NTG START BY INFUSION.</P>\r\n\r\n<P>TROP- I = 4954NG/L.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16-10-2025,</P>\r\n\r\n<P>INJ. NTG TAPPER.</P>\r\n\r\n<P>REFERENCE DONE DR. RAVI BHOJANI (CARDIOLOGIST) ADVICE FOLLOWED, 2 D ECHO DONE ,LVEF = 30%.TREATMENT MODIFIED AND ADVISE CAG.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17-10-2025 ON INJ NTG DRIP TAPPRING OFF AND TREATMENT MODIFIED.ORALLY SOFT DIET GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18/10/2025 ON PATIENT GAG REFLEX POOR SO RT INSERTION DONE BY ON DUTY MO. IN VIEW OF FEVER SPIKE INTERMITTENT SO REPORTS DONE URINE R/M SHOW PUS CELLS SO TREATMENT MODIFIED AND URINE C/S SENT ADVISE CONTINUES ICU CARE.</P>\r\n\r\n<P>GC EXPLAINED TO RELATIVES IN DETAILING.</P>\r\n\r\n<P>PATIENT WANTS TO SHIFT AT STERLING HOSPITAL,RAJKOT.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-17 00:06:27','mo','2025-10-18 15:23:10'),(1402,0,0,933,67,1072,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 68 YEARS OLD MALE&nbsp; PATIENT PRESENT WITH,<BR />\r\nK/C/O: DM WITH HTN.<BR />\r\nC/O: EPISTAXIS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; HYPERTENSION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BLEEDING FROM BOTH NOSE (SEVERE)</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE TODAY EVENING.&nbsp;<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 97.8`F<BR />\r\nPR- 75/MIN<BR />\r\nBP- 160/110 MMHG&nbsp;<BR />\r\nSPO2- 96% ON RA&nbsp;<BR />\r\nRR- 24/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS- CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS- BLAE+,<BR />\r\nCVS- S1S2+,&nbsp;<BR />\r\nP/A- SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16-10-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>NASAL PACK GIVEN.</P>\r\n\r\n<P>IN VIEW OF HYPERTENSION INJ. NTG START BY INFUSION PUMP.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17-10-2025&nbsp;</P>\r\n\r\n<P>ON INJ.NTG DRIP TAPPRING &nbsp;AFTER TREATMENT MODIFIED AND ORALLY DIET TOLERTAED WELL.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18/10/2025 ON INJ.NTG DRIP OFF GC EXPLAINED TO RELATIVE IN DETAILING AFTER ADVISE PATIENT SHIFT TO WARD BUT PATIENT RELATIVES ARE NOT WILLING FURTHER TREATMENT AND HOSPITAL STAY AND WANTS TO DISCHARGE SO PATIENT DAMA WITH OWN RISK.&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-17 00:12:13','mo','2025-10-18 13:02:42'),(1403,0,0,933,67,1072,0,0,NULL,'','DISCDIAG','','','<P>EPISTAXIS WITH&nbsp; ACCELERATED HYPERTENSION&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>K/C/O: DM-2 + HTN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-17 00:13:50','mo','2025-10-18 13:02:42'),(1404,0,0,933,67,1072,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY : DM-2 + HTN ON RX.</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-17 00:13:50','mo','2025-10-18 13:02:42'),(1405,0,0,933,67,1072,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. CEFCON&nbsp;</P>\r\n\r\n<P>INJ. RABICROSS</P>\r\n\r\n<P>INJ. QUICKSET</P>\r\n\r\n<P>INJ. VIT K</P>\r\n\r\n<P>INJ. TRENEXA</P>\r\n\r\n<P>INJ. NTG</P>\r\n\r\n<P>BUTROCLOT DROPS</P>\r\n\r\n<P>INJ. VITNEURON</P>\r\n\r\n<P>TAB.TELSTAR 40MG&nbsp; 0-0-1&nbsp;</P>\r\n\r\n<P>TAB.TELMICON TRIO&nbsp; 1-0-0</P>\r\n\r\n<P>TAB ECOTRIL 0.5MG 0-0-1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-17 00:13:50','mo','2025-10-18 13:02:42'),(1406,0,0,800,64,936,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n<BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-17 00:21:50','mo','2025-10-18 15:23:10'),(1407,0,0,800,64,936,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. RABICROSS</P>\r\n\r\n<P>INJ. QUICKSET</P>\r\n\r\n<P>INJ. CLEXANE</P>\r\n\r\n<P>TAB. CC BEST M</P>\r\n\r\n<P>TAB. LIPITAS</P>\r\n\r\n<P>TAB. ECOSPIRIN</P>\r\n\r\n<P>INJ. NTG DRIP</P>\r\n\r\n<P>INJ ECOTAR 4.5GM</P>\r\n\r\n<P>TAB NEFWEL SR 100MG&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-17 00:21:50','mo','2025-10-18 15:23:10'),(1408,0,0,780,63,882,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 39 YEARS OLD &nbsp;PATIENT PRESENT WITH,<BR />\r\nH/O : FEVER,COUGH WITH EXPECTORATION, BREATHING DIFFICULTY, GEN. WEAKNESS, HEADACHE, LOSS OF APETITE FOR THIS C/O&nbsp;PRIMARY RX TAKEN AT HOP HOSPITAL&nbsp; AND CRITICAL CARE 27-08-2025TO 27-08-2025.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>THAN PATIENT WAS ADIMETD TRIMURTI HOPSITAL JUNAGADH FROM17-08-2025 TO 01-09-2025.</P>\r\n\r\n<P>THAN PATIENT WAS ADMITED AT STERLING HOSPITAL RAJKOT FROM 01-09-2025 TO 18-09-2025,</P>\r\n\r\n<P>THAN AGAIN RE ADMITED AT STERLING HOSPITAL RAJKOT FROM 29-09-2025 TO 15-10-2025.&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT WAS DIAGONESD CHRONIC TYPE - I RESPIRATORY FAILURE (WITH T`STOMY), RECOVERING STERNOCLAVICULAR # (PSOT CPR STATUS), COPD, BRONCHIECTASIS WITH PERSISTANT INFECTION AND COCAL CORD PALSY (? CAUSE), K/C/O DCMP (H/O VT - VF ON SEPT 25)<BR />\r\nK/C/O: COPD WITH BRONCHIECTASIS<BR />\r\nC/O: FEVERE ON AND OFF.</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;T`STOMY AND RT AND FOLY`S CATH IN SITU.</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TRACHEAL SECRETION+NT.</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP-&nbsp;<BR />\r\nPR-/MIN<BR />\r\nBP- MMHG&nbsp;<BR />\r\nSPO2-99% &nbsp;T`STOMY 2 LIT O2.<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+, SPASAM +NT, T`STOMY IN SITU.<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT, FOLY`S CATH IN SITU.</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15-10-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16-10-2025 ON PATIENT IS CONSIOUS, ORIENTED AND RT FEEDING CONTINUES.</P>\r\n\r\n<P>TRACHEAL CULTURE SEND.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17-10-2025 ON NO FEVER AND SECRETION VERY THICK SOSUCTION REGULAR INTERVAL.</P>\r\n\r\n<P>TREATMENT MODIFIED AS PER REQUIED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18-10-2025 ON PATIENT HEMODYNAMICALLY STBALE THENN DISCHARGE WITH IV MEDICINES.</P>\r\n\r\n<P>GC EXAPLAINED TORELATIVES IN DETAIILING.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-17 00:40:58','mo','2025-10-18 13:10:22'),(1409,0,0,780,63,882,0,0,NULL,'','PROVDIAG','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-17 00:44:29','mo','2025-10-18 13:10:22'),(1410,0,0,780,63,882,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n<BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-17 00:44:29','mo','2025-10-18 13:10:22'),(1411,0,0,780,63,882,0,0,NULL,'','DISCDIAG','','','<P>CHRONIC TYPE - I RESPIRATORY FAILURE (WITH T`STOMY),</P>\r\n\r\n<P>RECOVERING STERNOCLAVICULAR # (POST CPR STATUS), COPD, BRONCHIECTASIS WITH PERSISTANT INFECTION AND COCAL CORD PALSY (? CAUSE)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>K/C/O : DCMP (H/O VT - VF ON SEPT 25)</P>\r\n\r\n<P><BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-17 00:45:13','mo','2025-10-18 13:10:22'),(1412,0,0,780,63,882,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. ELORES 3 GM&nbsp;</P>\r\n\r\n<P>INJ. COLISTIN 2 MIU&nbsp;</P>\r\n\r\n<P>INJ. PATNODAC 40 MG&nbsp;</P>\r\n\r\n<P>TBA. CORDERON 100MG&nbsp;</P>\r\n\r\n<P>TAB. BISOBIS 2.5 MG&nbsp;</P>\r\n\r\n<P>TAB. ECOSPIRIN 75 MG&nbsp;</P>\r\n\r\n<P>TAB. TIDE PLUS 25/10&nbsp;</P>\r\n\r\n<P>TAB. ADDKAY&nbsp;</P>\r\n\r\n<P>TAB. MONTAIR LC 5/10&nbsp;</P>\r\n\r\n<P>TAB. AFASMA 100MG&nbsp;</P>\r\n\r\n<P>TAB. MUCOMIX 600MG&nbsp;</P>\r\n\r\n<P>TAB. MPS 4MG&nbsp;</P>\r\n\r\n<P>TAB. QUTAN 25MG&nbsp;</P>\r\n\r\n<P>SYP. LOOZ 30 ML&nbsp;</P>\r\n\r\n<P>NEB. FORACORT&nbsp;</P>\r\n\r\n<P>NEB. DULOIN&nbsp;</P>\r\n\r\n<P>TAB. ULTRACET SEMI</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-17 00:55:58','mo','2025-10-18 13:10:22'),(1413,0,0,780,63,882,0,0,NULL,'','TREATDISC_TI','','','<P>INJ. ELORES 3 GM + NS 100ML IV BD FOR 5 DAYS</P>\r\n\r\n<P>INJ. COLISTIN 2 MIU + NS 100ML IV BD FOR 5 DAYS</P>\r\n\r\n<P>NEB. XYLISTIN 1 MIU&nbsp; 1-0-1 FOR 5 DAYS</P>\r\n\r\n<P>TAB NEXPRO FAST&nbsp; 1-0-1 R/T BEFORE FOOD&nbsp;</P>\r\n\r\n<P>TAB. CORDERONE 100MG R/T 0-1-0</P>\r\n\r\n<P>TAB. BISOBIS 2.5 MG R/T 0-0-1</P>\r\n\r\n<P>TAB. ECOSPIRIN 75 MG R/T 0-1-0</P>\r\n\r\n<P>TAB. TIDE PLUS 25/10 R/T 1/2-1/2-0</P>\r\n\r\n<P>TAB. PULMOCLEAR&nbsp; RT 1-0-1 AFTER FOOD</P>\r\n\r\n<P>TAB. MONTAIR LC 5/10 R/T 1-0-1</P>\r\n\r\n<P>TAB. AFASMA 100MG R/T 1-0-1</P>\r\n\r\n<P>TAB. MUCOMIX 600MG R/T 0-1-1</P>\r\n\r\n<P>TAB. MPS 4MG R/T 1-0-1</P>\r\n\r\n<P>TAB. QUTAN 25MG R/T 0-1/2-1</P>\r\n\r\n<P>SYP. LOOZ 30 ML R/T HS.</P>\r\n\r\n<P>NEB. FORACORT T/T BD</P>\r\n\r\n<P>NEB. DULOIN T/T QDS</P>\r\n\r\n<P>TAB. ETOLOK&nbsp; 90MG 1-0-0</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>ALL MEDICINE FOR 15 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-17 01:01:55','mo','2025-10-18 13:10:22'),(1414,0,0,940,909,1082,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 10:43:51','','0000-00-00 00:00:00'),(1415,0,0,220,207,1084,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 10:45:44','darshan','2025-10-17 10:47:28'),(1416,0,0,944,913,1088,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotry feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 10:58:52','darshan','2025-10-17 11:01:25'),(1417,0,0,944,913,1088,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---18 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 11:00:54','','0000-00-00 00:00:00'),(1418,0,0,944,913,1088,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nads</p>\n\n<p>hit--nad</p>\n\n<p>pta---bialtelr moderate sn deafness</p>\n\n<p>stabiloemetry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 11:01:35','darshan','2025-10-17 13:17:47'),(1419,0,0,944,913,1088,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT PSOT CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 11:01:42','','0000-00-00 00:00:00'),(1420,0,0,752,62,871,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-17 11:07:22','mo','2025-10-17 12:02:33'),(1421,0,0,952,921,1097,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--recurrence of vertigo&thinsp;</p>\n\n<p>right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 11:16:10','','0000-00-00 00:00:00'),(1422,0,0,952,921,1097,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 11:17:05','','0000-00-00 00:00:00'),(1424,0,0,952,921,1097,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 11:17:23','','0000-00-00 00:00:00'),(1425,0,0,953,922,1098,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 11:18:31','darshan','2025-10-17 11:19:45'),(1426,0,0,953,922,1098,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 11:20:18','','0000-00-00 00:00:00'),(1428,0,0,953,922,1098,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 11:21:01','','0000-00-00 00:00:00'),(1429,0,0,957,926,1102,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--beter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 11:27:41','','0000-00-00 00:00:00'),(1430,0,0,942,911,1085,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 11:41:47','','0000-00-00 00:00:00'),(1431,0,0,942,911,1085,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 11:42:28','','0000-00-00 00:00:00'),(1432,0,0,942,911,1085,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bialtelr moderate sn deafness</p>\n\n<p>stabilaoemtry--reduced vestibular score</p>\n\n<p>vng--rigiht post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 11:43:26','darshan','2025-10-17 13:40:34'),(1433,0,0,942,911,1085,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 11:43:34','','0000-00-00 00:00:00'),(1434,0,0,943,912,1086,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 11:46:08','','0000-00-00 00:00:00'),(1435,0,0,948,917,1093,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 11:52:12','','0000-00-00 00:00:00'),(1437,0,0,948,917,1093,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER---10 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 11:53:11','','0000-00-00 00:00:00'),(1438,0,0,958,927,1103,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 11:57:01','','0000-00-00 00:00:00'),(1439,0,0,949,918,1094,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 12:00:38','','0000-00-00 00:00:00'),(1440,0,0,970,939,1117,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 12:08:57','','0000-00-00 00:00:00'),(1441,0,0,975,944,1122,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-17 12:13:27','','0000-00-00 00:00:00'),(1442,0,0,971,940,1118,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 12:14:49','','0000-00-00 00:00:00'),(1443,0,0,965,934,1112,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up&thinsp; case--recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 12:19:28','','0000-00-00 00:00:00'),(1444,0,0,979,948,1130,0,0,NULL,'','CC','ZZZ','Remark','PRE OP FOR HERNIOPLASTY||','','',0,'0000-00-00 00:00:00','drjayant','2025-10-17 12:32:55','','0000-00-00 00:00:00'),(1445,0,0,979,948,1130,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-17 12:33:05','','0000-00-00 00:00:00'),(1446,0,0,950,919,1095,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 12:48:46','','0000-00-00 00:00:00'),(1447,0,0,950,919,1095,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaowtyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>&thinsp;heaviness of head +</p>\n\n<p>no associated other cns symtpsm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 12:49:27','','0000-00-00 00:00:00'),(1448,0,0,950,919,1095,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilomtry--reduced vestibulare scor</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 12:49:39','darshan','2025-10-17 13:44:33'),(1450,0,0,978,947,1129,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO------6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 12:59:40','','0000-00-00 00:00:00'),(1451,0,0,978,947,1129,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 12:59:42','darshan','2025-10-17 13:00:23'),(1452,0,0,978,947,1129,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 12:59:46','','0000-00-00 00:00:00'),(1453,0,0,978,947,1129,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>Ltm--small central perforation--dry</p>\n\n<p>stabilometry----wnl</p>\n\n<p>CCG---wnl</p>\n\n<p>Vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:00:34','darshan','2025-10-17 14:03:00'),(1456,0,0,955,924,1100,0,0,NULL,'','HIST','ZZZ','Remark','<p>k/c/o vm</p>\n\n<p>recurrence of veritgo and headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:04:04','','0000-00-00 00:00:00'),(1457,0,0,955,924,1100,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry---wnl</p>\n\n<p>vng--central&thinsp; variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:04:17','darshan','2025-10-17 14:17:39'),(1460,0,0,931,899,1068,0,0,NULL,'','MADVICE','ZZZ','Remark','NEUROLOGIST OPINON','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:07:35','','0000-00-00 00:00:00'),(1461,0,0,956,925,1101,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo&thinsp;</p>\n\n<p>left pst canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:11:00','','0000-00-00 00:00:00'),(1462,0,0,956,925,1101,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:11:44','','0000-00-00 00:00:00'),(1464,0,0,973,942,1120,0,0,NULL,'','DIAG','ZZZ','Remark','? APPENDICITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-17 13:12:31','','0000-00-00 00:00:00'),(1465,0,0,956,925,1101,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:13:27','','0000-00-00 00:00:00'),(1466,0,0,944,913,1088,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:18:08','','0000-00-00 00:00:00'),(1468,0,0,981,950,1132,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:21:43','','0000-00-00 00:00:00'),(1469,0,0,959,928,1104,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:25:09','','0000-00-00 00:00:00'),(1470,0,0,959,928,1104,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:25:54','','0000-00-00 00:00:00'),(1473,0,0,959,928,1104,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MA,ENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:26:13','','0000-00-00 00:00:00'),(1474,0,0,960,929,1105,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:28:28','','0000-00-00 00:00:00'),(1475,0,0,966,935,1113,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----partally better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:33:15','','0000-00-00 00:00:00'),(1476,0,0,966,935,1113,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:33:55','','0000-00-00 00:00:00'),(1478,0,0,966,935,1113,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:34:09','','0000-00-00 00:00:00'),(1480,0,0,944,913,1088,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:37:34','','0000-00-00 00:00:00'),(1481,0,0,942,911,1085,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:41:12','','0000-00-00 00:00:00'),(1483,0,0,950,919,1095,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:44:58','','0000-00-00 00:00:00'),(1485,0,0,968,937,1115,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:47:50','','0000-00-00 00:00:00'),(1486,0,0,974,943,1121,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 13:51:55','darshan','2025-10-17 13:52:20'),(1487,0,0,978,947,1129,0,0,NULL,'','DIAG','ZZZ','Remark','VESTIBULAR MIGRAINE','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 14:03:09','','0000-00-00 00:00:00'),(1489,0,0,942,911,1085,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 14:06:23','','0000-00-00 00:00:00'),(1490,0,0,976,945,1123,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 14:11:34','','0000-00-00 00:00:00'),(1491,0,0,976,945,1123,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying donw in bed</p>\n\n<p>heaviness of head +\\</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 14:14:48','','0000-00-00 00:00:00'),(1492,0,0,976,945,1123,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 14:14:58','darshan','2025-10-17 18:55:50'),(1493,0,0,976,945,1123,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 14:15:00','','0000-00-00 00:00:00'),(1494,0,0,976,945,1123,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV VS OTHER','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 14:15:04','','0000-00-00 00:00:00'),(1495,0,0,980,949,1131,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 14:21:03','','0000-00-00 00:00:00'),(1496,0,0,983,952,1136,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----9-10 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 14:27:06','','0000-00-00 00:00:00'),(1497,0,0,983,952,1136,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo---sudden onset of rotaotyr feeling&thinsp; any time and remaisn for few mins to hrs&thinsp;</p>\n\n<p>headache +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 14:27:55','','0000-00-00 00:00:00'),(1498,0,0,983,952,1136,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----</p>\n\n<p>stabilometry---</p>\n\n<p>vng---central vareity of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 14:28:04','darshan','2025-10-17 15:05:27'),(1499,0,0,983,952,1136,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 14:28:08','','0000-00-00 00:00:00'),(1501,0,0,950,919,1095,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVEUR ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 14:28:52','','0000-00-00 00:00:00'),(1502,0,0,984,953,1137,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 14:58:23','','0000-00-00 00:00:00'),(1503,0,0,988,956,1146,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow upcase--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 15:02:06','','0000-00-00 00:00:00'),(1504,0,0,988,956,1146,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 15:02:31','','0000-00-00 00:00:00'),(1506,0,0,988,956,1146,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 15:02:57','','0000-00-00 00:00:00'),(1507,0,0,293,277,1139,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>Rtm---small central perforation dry</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 15:10:20','','0000-00-00 00:00:00'),(1509,0,0,994,961,1152,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 17:13:29','darshan','2025-10-17 17:14:05'),(1510,0,0,994,961,1152,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 17:13:36','','0000-00-00 00:00:00'),(1511,0,0,994,961,1152,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnet</p>\n\n<p>dix hallpike---nasd</p>\n\n<p>hit---nad</p>\n\n<p>pta----wnl</p>\n\n<p>vng--reduced vestibular score</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 17:14:24','darshan','2025-10-17 18:21:29'),(1512,0,0,994,961,1152,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 17:14:25','','0000-00-00 00:00:00'),(1514,0,0,991,958,1149,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 17:16:52','','0000-00-00 00:00:00'),(1515,0,0,992,959,1150,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended--</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 17:20:25','','0000-00-00 00:00:00'),(1516,0,0,993,960,1151,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 17:22:49','','0000-00-00 00:00:00'),(1517,0,0,996,963,1154,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 17:25:35','','0000-00-00 00:00:00'),(1518,0,0,999,966,1157,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 17:26:43','','0000-00-00 00:00:00'),(1519,0,0,1000,967,1158,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 17:30:11','','0000-00-00 00:00:00'),(1520,0,0,1000,967,1158,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 17:30:36','','0000-00-00 00:00:00'),(1522,0,0,1000,967,1158,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 17:31:37','','0000-00-00 00:00:00'),(1523,0,0,1001,968,1160,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 17:34:22','darshan','2025-10-17 17:37:00'),(1525,0,0,1001,968,1160,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 17:36:20','','0000-00-00 00:00:00'),(1526,0,0,1001,968,1160,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilomty---wnl</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 17:37:14','darshan','2025-10-17 19:17:23'),(1528,0,0,997,964,1155,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow u pcase--recurrencxe of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 17:43:15','','0000-00-00 00:00:00'),(1529,0,0,1004,971,1165,0,0,NULL,'','HIST','ZZZ','Remark','<p>flollow up case---medicine skipped</p>\n\n<p>recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 17:50:26','','0000-00-00 00:00:00'),(1530,0,0,998,965,1156,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---recurence of vertigo&thinsp;</p>\n\n<p>headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 17:57:13','','0000-00-00 00:00:00'),(1531,0,0,1010,977,1172,0,0,NULL,'','DIAG','ZZZ','Remark','VIRAL FEVER','','',0,'0000-00-00 00:00:00','drjayant','2025-10-17 18:00:01','','0000-00-00 00:00:00'),(1532,0,0,1014,981,1177,0,0,NULL,'','CC','ZZZ','Remark','URTI | 7 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-17 18:03:08','','0000-00-00 00:00:00'),(1533,0,0,1014,981,1177,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-17 18:03:11','','0000-00-00 00:00:00'),(1534,0,0,1019,987,1183,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT MIDDLE FINGER PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-17 18:07:46','','0000-00-00 00:00:00'),(1535,0,0,1011,978,1173,0,0,NULL,'','HIST','ZZZ','Remark','<p>vertigo----two days&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 18:07:47','','0000-00-00 00:00:00'),(1536,0,0,1011,978,1173,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head _+</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n\n<p>pta--right moderate sn deafness</p>\n\n<p>vemp--right side reduced</p>\n\n<p>dix hallpike---left faint torsonal nystmgus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 18:08:19','darshan','2025-10-17 19:20:54'),(1537,0,0,1011,978,1173,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 18:08:23','','0000-00-00 00:00:00'),(1539,0,0,1005,972,1166,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 18:10:36','','0000-00-00 00:00:00'),(1540,0,0,1007,974,1169,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow upcase----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 18:25:14','','0000-00-00 00:00:00'),(1541,0,0,1012,979,1174,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---occassional giddiness&thinsp;</p>\n\n<p>heaviness of head&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 18:28:56','','0000-00-00 00:00:00'),(1542,0,0,1015,982,1178,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 18:35:36','','0000-00-00 00:00:00'),(1543,0,0,1015,982,1178,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration postiional giddiness without any cns symtpmos&thinsp;</p>\n\n<p>mild sense of imbalance while walking&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 18:35:57','darshan','2025-10-17 19:41:51'),(1544,0,0,1015,982,1178,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---bialtel high freq severe sn deafness</p>\n\n<p>vng--right acute partial vestibular deficit</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 18:36:08','darshan','2025-10-17 19:42:40'),(1546,0,0,214,201,1187,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 18:38:42','','0000-00-00 00:00:00'),(1548,0,0,214,201,1187,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MANVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 18:39:21','','0000-00-00 00:00:00'),(1549,0,0,1013,980,1175,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 18:46:45','darshan','2025-10-17 19:53:15'),(1550,0,0,1013,980,1175,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration postiional giddiness without any cns symptmos</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 18:49:06','','0000-00-00 00:00:00'),(1551,0,0,1013,980,1175,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absnt</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---bialtel high frq severe sn deafness</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 18:49:27','darshan','2025-10-17 19:53:46'),(1552,0,0,1013,980,1175,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 18:49:33','','0000-00-00 00:00:00'),(1553,0,0,976,945,1123,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 18:56:34','','0000-00-00 00:00:00'),(1554,0,0,976,945,1123,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 18:56:35','','0000-00-00 00:00:00'),(1555,0,0,1016,984,1180,0,0,NULL,'','HIST','ZZZ','Remark','<p>left ear fungus with discharge</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 18:58:45','','0000-00-00 00:00:00'),(1556,0,0,1027,995,1195,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---3 episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 19:03:19','','0000-00-00 00:00:00'),(1558,0,0,1027,995,1195,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 19:04:28','','0000-00-00 00:00:00'),(1559,0,0,1026,994,1194,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 19:13:23','','0000-00-00 00:00:00'),(1560,0,0,1026,994,1194,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying donw in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 19:13:55','','0000-00-00 00:00:00'),(1561,0,0,1026,994,1194,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>stabilometry--wnl</p>\n\n<p>vng---central variety of nystmgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 19:14:04','darshan','2025-10-17 20:04:41'),(1562,0,0,1026,994,1194,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV WITH VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 19:14:11','','0000-00-00 00:00:00'),(1563,0,0,1001,968,1160,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 19:18:09','','0000-00-00 00:00:00'),(1565,0,0,1011,978,1173,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 19:25:52','','0000-00-00 00:00:00'),(1567,0,0,1029,997,1198,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO --2 MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 19:27:10','','0000-00-00 00:00:00'),(1568,0,0,1029,997,1198,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike--nads</p>\n\n<p>hit--nad</p>\n\n<p>stabilomtry-nad</p>\n\n<p>vnbg--central variety of nytagmus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 19:27:16','darshan','2025-10-18 12:53:20'),(1569,0,0,1029,997,1198,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 19:27:23','','0000-00-00 00:00:00'),(1570,0,0,1029,997,1198,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 19:27:24','','0000-00-00 00:00:00'),(1572,0,0,1001,968,1160,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 19:27:50','','0000-00-00 00:00:00'),(1573,0,0,1032,1000,1204,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 19:36:44','','0000-00-00 00:00:00'),(1575,0,0,1011,978,1173,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER\n','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 19:38:05','','0000-00-00 00:00:00'),(1576,0,0,1008,975,1170,0,0,NULL,'','HIST','ZZZ','Remark','<p>vertigo-----fw months off and on</p>\n\n<p>headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 19:47:39','','0000-00-00 00:00:00'),(1577,0,0,1008,975,1170,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 19:48:02','','0000-00-00 00:00:00'),(1579,0,0,1008,975,1170,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 19:49:19','','0000-00-00 00:00:00'),(1581,0,0,1026,994,1194,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 20:06:44','','0000-00-00 00:00:00'),(1583,0,0,1017,985,1181,0,0,NULL,'','CC','ZZZ','Remark','NASAL BLOCKAGE WITH HEADACHE --FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 20:10:11','','0000-00-00 00:00:00'),(1584,0,0,1017,985,1181,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose---mild c ongested&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 20:10:17','','0000-00-00 00:00:00'),(1586,0,0,1017,985,1181,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS CT PNS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 20:10:52','','0000-00-00 00:00:00'),(1588,0,0,1013,980,1175,0,0,NULL,'','MADVICE','ZZZ','Remark','BILATAELR SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 20:11:23','','0000-00-00 00:00:00'),(1590,0,0,1026,994,1194,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 20:13:29','','0000-00-00 00:00:00'),(1591,0,0,1022,990,1186,0,0,NULL,'','HIST','ZZZ','Remark','<p>foflflow up case--partailly better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 20:17:47','','0000-00-00 00:00:00'),(1592,0,0,1022,990,1186,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 20:18:20','','0000-00-00 00:00:00'),(1594,0,0,1022,990,1186,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 20:18:33','','0000-00-00 00:00:00'),(1595,0,0,1028,996,1197,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 20:20:38','','0000-00-00 00:00:00'),(1596,0,0,1039,1007,1212,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR INJURY BY STICK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 20:25:13','','0000-00-00 00:00:00'),(1597,0,0,1039,1007,1212,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Rtm--severe;ly congested&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-17 20:25:24','','0000-00-00 00:00:00'),(1599,0,0,1039,1007,1212,0,0,NULL,'','MADVICE','ZZZ','Remark','KEEP EAR DRY','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-17 20:26:14','','0000-00-00 00:00:00'),(1600,0,0,1040,71,1213,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE PANCREATITIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-17 23:53:21','mo','2025-10-22 13:01:39'),(1601,0,0,1040,71,1213,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>NAD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-17 23:53:21','mo','2025-10-22 13:01:39'),(1602,0,0,1040,71,1213,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 39 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O: -SEVERE ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -BURNING IN CHEST</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -BACKACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -NO NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -NO VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -CONTIPATION</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 4-5 DAYS FOR THAT DR GUNJAN JOSHI(LANDMAR HOSPITAL,RAJKOT) AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG WHOLE ABDOMEN DONE ON 16/10/2025</P>\r\n\r\n<P>CT ABDOMEN&nbsp; WITH PELVIS DONE ON 17/10/2025 AND ATTACHED WITH FILE</P>\r\n\r\n<P>CT CHEST PLAIN DONE</P>\r\n\r\n<P>ESOPHAGO-GASTRO-DUODENOSCOPY REPORT DONE AND ATTACHED WITH FILE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-68/MIN, BP-146/90MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>REQUIRED REPEAT BLOOD INVESTIGATION DONE WHICH WAS IMPROVED.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-17 23:53:21','mo','2025-10-22 13:01:39'),(1603,0,0,1040,71,1213,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>TAKE LIGHT DIET</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-17 23:53:21','mo','2025-10-22 13:01:39'),(1604,0,0,989,70,1147,0,0,NULL,'','DISCDIAG','','','<P><STRONG>NATIVE VALVE ENDOCARDITIS (MITRAL)</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM-II, HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 00:04:47','mo','2025-10-25 12:04:57'),(1605,0,0,989,70,1147,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-18 00:04:47','mo','2025-10-25 12:04:57'),(1606,0,0,989,70,1147,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 65 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM-II, HTN<BR />\r\nH/O:RECURRENT UTI</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-PATIENT WAS ADMITTED AT B.T.SAVANI HOSPITAL FROM 05/10/25 TO 12/10/25 AND DIAGNOSED WITH SEPTICEMIA + SEPTIC SHOCK (E.COLI) COMPLICATED WITH THROMBOCYTOPENIA.<BR />\r\nC/O: FEVER WITH CHILL ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BACKACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTES SINCE 12-15 DAYS FOR THAT CONSULTED TO MULTIPLE HOSPITAL THAN OPD BASE TO DR KRUTARTH KANJIYA AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>BLOOD C/S DONE ON 07/10 WHICH S/O E.COLI GROWTH</P>\r\n\r\n<P>CT CHEST PLAIN DONE(7/10/25)</P>\r\n\r\n<P>CT ABDOMEN + PELVIS DONE (7/10/25)</P>\r\n\r\n<P>2D ECHO DONE ON 17/10/2025 WHICH S/O: RHD, ? INFECTIVE ENDOCARDITIS OF MITRAL VALVE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-99.4&#39;F, PR-89/MIN, BP-110/80MMHG, SPO2-97% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>PATIENT HAVING CONTINUOUS FEVER SO TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>TRANSESOPHAGHAL ECHO AND COLOUR DOPPLER DONE AT STERLING HOSPITAL BY DR TUSHAR BHATTI ON 21/10/2025 DONE WHICH S/O&nbsp;INFECTIVE ENDOCARDITIS OF MITRAL VALVE</P>\r\n\r\n<P>IN VIEW OF LOW HB 1 UNIT PCV GIVEN ON 22/10/2025</P>\r\n\r\n<P>WHOLE BODY PET SCAN DONE ON 24/10/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 00:04:47','mo','2025-10-25 12:04:57'),(1607,0,0,989,70,1147,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS WITH CBC,CRP,CREAT,K+</P>\r\n\r\n<P>CVTS OPINION</P>\r\n\r\n<P>CVP LINE INSERTION&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 00:04:47','mo','2025-10-25 12:04:57'),(1608,0,0,989,70,1147,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ VANCOMYCIN</P>\r\n\r\n<P>INJ MERO</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>TAB PANTOCID DSR</P>\r\n\r\n<P>TAB VITNEURIN CZS</P>\r\n\r\n<P>TAB LINABITE</P>\r\n\r\n<P>TAB GIMMY</P>\r\n\r\n<P>CAP DOXY</P>\r\n\r\n<P>INJ HYDROCORT</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ AVIL</P>\r\n\r\n<P>INJ DERIPHYLLIN</P>\r\n\r\n<P>NEB.DUOLINE/BUDECORT</P>\r\n\r\n<P>TAB LANOL ER</P>\r\n\r\n<P>INJ.H.ACTRAPID</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 00:04:47','mo','2025-10-25 12:04:57'),(1609,0,0,969,68,1140,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACCELERATED HTN WITH VOLUME OVERLOAD</STRONG></P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>K/C/O: HTN,IHD,CVA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 00:16:50','mo','2025-10-18 15:56:40'),(1610,0,0,969,68,1140,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 00:16:50','mo','2025-10-18 15:56:40'),(1611,0,0,969,68,1140,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 75 YEARS OLD FEMALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN,IHD,CVA<BR />\r\nH/O:MULTIPLE SPINE FRACTURE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BEDRRIDEN ,REQUIRE SUPPORT TO WALK AND STAND<BR />\r\nC/O:MASS LIKE SWELLING ON LEFT FLANK REGION-ACCIDENTALY DETECTED</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-CONTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-DROWSINESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-B/L PEDAL ODEMA SINCE 2 MONTH BUT INCREASED SINCE 5-6 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-INCREASED FREQUENCY OF URNATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-B/L LOWER LIMB PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 10-12 DAYS FOR THAT PRIMARY CONSULTED AT KRISHNA HOSPITAL RAJKOT AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>ECG DONE ON 17/10/2025</P>\r\n\r\n<P>2D ECHO DONE AND ATTACHED WITH FILE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-108/MIN, BP-124/80MMHG, SPO2-98% ON RA, RR-16/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT, MASS LIKE SWELLING ON LEFT FLANK REGION</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>USG ABDOMEN DONE AND REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>URINE R/M DONE WHICH S/O: EPITHEIAL CELLS :15-20 CELL, PUS CELLS: 8-10 CELL</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 00:16:50','mo','2025-10-18 15:56:40'),(1612,0,0,969,68,1140,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 20 DAYS</P>\r\n\r\n<P>HOLD OWN MEDICATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 00:16:50','mo','2025-10-18 15:56:40'),(1613,0,0,969,68,1140,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ DYTOR</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>TAB BISOBIS</P>\r\n\r\n<P>CAP ROSULESS GOLD</P>\r\n\r\n<P>TAB SYNDOPA PLUS</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 00:16:50','mo','2025-10-18 15:56:40'),(1614,0,0,987,69,1144,0,0,NULL,'','DISCDIAG','','','<P><STRONG>COMPLICATED UTI</STRONG></P>\r\n\r\n<P><STRONG>LEFT RENAL STONE</STRONG></P>\r\n\r\n<P><STRONG>AKI</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM, HTN, IHD</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 00:38:24','mo','2025-10-22 10:29:49'),(1615,0,0,987,69,1144,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 00:38:24','mo','2025-10-22 10:29:49'),(1616,0,0,987,69,1144,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 64 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM, HTN, IHD<BR />\r\nH/O: RIGHT PCNL + B/L DJ STENTING DONE ON 16/09, FOR RENAL STONE AND OBSTACLE UROPATHY AT JUNAGADH</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-ADMITTED AT B.T.SAVANI HOSPITAL ,RAJKOT FROM 01/10 TO 04/10, B/L DJ STENT REMOVAL AND LEFT DJ STENTING DONE ON 01/10 URNE CS SENT WHICH S/O NAD<BR />\r\nC/O: OCCATIONALLY BURNING MICTURATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -ANOREXIA</P>\r\n\r\n<P>SO FOR ALL ABOVE MENTIONED C/O PT PRIMARILY CONSULTED ON OPD BASE TO DR KRUTARTH KANJIYA AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-113/MIN, BP-126/80MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>BLOOD CS SENT WHICH S/O NO GROWTH</P>\r\n\r\n<P>URINE C/S S/O GROWTH OF PSEUDOMONAS, REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>REQUIRD REPEAT BLOOD INVESTIGATION DONE WHICH WAS IMPROVED.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 00:38:24','mo','2025-10-22 10:29:49'),(1617,0,0,987,69,1144,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS</P>\r\n\r\n<P>CONSULT UROSURGEON&nbsp;ON FRIDAY WITH REPORTS CBC,CRP, CREAT.</P>\r\n\r\n<P>HOLD OWN HTN AND DM MEDICATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 00:38:24','mo','2025-10-22 10:29:49'),(1618,0,0,987,69,1144,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MERO</P>\r\n\r\n<P>INJ H ACTRAPID&nbsp;</P>\r\n\r\n<P>TAB PANTOCID DSR</P>\r\n\r\n<P>TAB SOBISIS</P>\r\n\r\n<P>TAB TORVASON</P>\r\n\r\n<P>TAB ECOSPRIN</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 00:38:24','mo','2025-10-22 10:29:49'),(1619,0,0,274,21,284,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE (250 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>CAP SOMRAZ-D&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB URSOCOL(300)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB CARDIVAS(3.125)&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB LASILACTONE(20/50)&nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp;&nbsp;</P>\r\n\r\n<P>TAB RIFAGUT(550)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB COBADEX-CZS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB OTSKI&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP SUCRAL-O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; 5ML TDS&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>PROTINEX POWDER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; 2TSF/ WITH MILK&nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 00:45:08','mo','2025-10-18 12:50:56'),(1620,0,0,239,18,246,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX: INCISION AND DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 10/10/2025 UNDER REGIONAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 00:57:30','mo','2025-10-18 14:19:44'),(1621,0,0,239,18,246,0,0,NULL,'','OTNOTE','','','<p>-incision kept over dorsum of foot and leg area</p>\r\n\r\n<p>-toxic fluid in sub cutaneous&nbsp;tissue</p>\r\n\r\n<p>-fluid c/s sent</p>\r\n\r\n<p>-two incision kept on planter aspect of right foot</p>\r\n\r\n<p>-risk of toe&#39;s gangrene explained to relative</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-dressing kept</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 00:57:30','mo','2025-10-18 14:19:44'),(1622,0,0,239,18,246,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 08:42:48','mo','2025-10-18 14:19:44'),(1623,0,0,1044,1011,1217,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---self medication done</p>\n\n<p>recurernce of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 10:58:14','','0000-00-00 00:00:00'),(1624,0,0,1050,1016,1223,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of tinnitus --mild left ear&thinsp;</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 11:04:19','darshan','2025-10-18 11:05:29'),(1625,0,0,1050,1016,1223,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR TINNITUS ---2 WEEKS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 11:04:35','','0000-00-00 00:00:00'),(1626,0,0,1050,1016,1223,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bialtelr high frq mild sn deafness</p>\n\n<p>OAE---bilatelr&thinsp; poor corelation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 11:05:40','darshan','2025-10-18 12:29:07'),(1627,0,0,1045,1012,1218,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 11:09:21','','0000-00-00 00:00:00'),(1628,0,0,1053,1019,1229,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-18 11:10:35','','0000-00-00 00:00:00'),(1629,0,0,780,63,882,0,0,NULL,'','DISCCOND','','','<P>PATIENT ON T-STOMY IN SITU&nbsp;</P>\r\n\r\n<P>RT IN SITU&nbsp;</P>\r\n\r\n<P>FOLYE&#39;S CATHETER IN SITU&nbsp;</P>\r\n\r\n<P>PR: 110/MIN</P>\r\n\r\n<P>BP: 109/60 MMHG</P>\r\n\r\n<P>SPO2 : 96 % ON T-STOMY WITH T-PIECE O2 2L/MIN</P>\r\n\r\n<P>RR : 18 /MIN</P>\r\n\r\n<P>CVS : S1/S2 ++</P>\r\n\r\n<P>CNS : C/O +</P>\r\n\r\n<P>P/A : SOFT&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 11:16:14','mo','2025-10-18 13:10:22'),(1630,0,0,780,63,882,0,0,NULL,'','ADVICE','','','<P>ADVISE :&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>- T-STOMY CARE.</P>\r\n\r\n<P>- RELUGAR INTERVAL SUCTION.</P>\r\n\r\n<P>- FOLYES CARE.</P>\r\n\r\n<P>- RT FEEDING 200ML/2 HRLY AS PER CHART ALL LIQ DIET HIGH PROTEIN.</P>\r\n\r\n<P>- O2 SUPPORT.</P>\r\n\r\n<P>- AS PER EXAPLAINED TO RELATIVES.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 11:21:27','mo','2025-10-18 13:10:22'),(1631,0,0,1056,1022,1232,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better&thinsp;</p>\n\n<p>occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 11:23:54','','0000-00-00 00:00:00'),(1632,0,0,1043,1010,1216,0,0,NULL,'','CC','ZZZ','Remark','URTI | 3 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-18 11:25:51','','0000-00-00 00:00:00'),(1633,0,0,1043,1010,1216,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-18 11:25:55','','0000-00-00 00:00:00'),(1634,0,0,1055,1021,1231,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 11:26:23','','0000-00-00 00:00:00'),(1635,0,0,1046,1013,1219,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 11:30:28','','0000-00-00 00:00:00'),(1638,0,0,1046,1013,1219,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER FOR 1 WEEK','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-18 11:31:38','','0000-00-00 00:00:00'),(1639,0,0,1048,1014,1221,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 11:36:07','','0000-00-00 00:00:00'),(1641,0,0,1058,1024,1234,0,0,NULL,'','HIST','ZZZ','Remark','<p>&thinsp;episodic vertigo --sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 11:44:20','darshan','2025-10-18 11:45:40'),(1642,0,0,1058,1024,1234,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO WITH SENSE OF IMBALANCE ------2-3 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 11:44:51','','0000-00-00 00:00:00'),(1643,0,0,1058,1024,1234,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--Bialtelr vrey severe sn deafness</p>\n\n<p>stabiloemtry--reduced vestibulare score</p>\n\n<p>CCG---AP displacement out of range</p>\n\n<p>vng---bialtle vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 11:45:50','darshan','2025-10-18 13:12:11'),(1644,0,0,1058,1024,1234,0,0,NULL,'','DIAG','ZZZ','Remark','BILATERAL VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 11:45:54','','0000-00-00 00:00:00'),(1645,0,0,1061,1027,1239,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-FEW YRS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 11:51:30','','0000-00-00 00:00:00'),(1646,0,0,1061,1027,1239,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 11:52:39','','0000-00-00 00:00:00'),(1647,0,0,1061,1027,1239,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit---nad</p>\n\n<p>pta--wnl</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--right post cana lbppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 11:52:48','darshan','2025-10-18 13:52:03'),(1648,0,0,1061,1027,1239,0,0,NULL,'','DIAG','ZZZ','Remark','RECURRENT BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 11:52:59','','0000-00-00 00:00:00'),(1649,0,0,1051,1017,1225,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 11:59:36','','0000-00-00 00:00:00'),(1650,0,0,1051,1017,1225,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotyr feeling whe in any posture</p>\n\n<p>heaviness of heda +</p>\n\n<p>no associated other cns&thinsp; symtpmso&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:01:10','','0000-00-00 00:00:00'),(1651,0,0,1051,1017,1225,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>MRI brain-no cva or sol</p>\n\n<p>neurologist opinion taken</p>\n\n<p>pta---bialtelr moderate sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---Bilatelar vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:01:35','darshan','2025-10-18 14:06:34'),(1652,0,0,1068,1034,1249,0,0,NULL,'','CC','ZZZ','Remark','URTI | 3 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-18 12:01:57','','0000-00-00 00:00:00'),(1653,0,0,1068,1034,1249,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-18 12:02:00','','0000-00-00 00:00:00'),(1654,0,0,1051,1017,1225,0,0,NULL,'','DIAG','ZZZ','Remark','BILATELR VESTIBVULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:02:03','','0000-00-00 00:00:00'),(1655,0,0,274,21,284,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 12:04:25','mo','2025-10-18 12:50:56'),(1656,0,0,1065,1031,1244,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:05:23','','0000-00-00 00:00:00'),(1657,0,0,1057,1023,1233,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic sense of imbalance&thinsp;</p>\n\n<p>remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no asociated other cns symtpmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:15:01','darshan','2025-10-18 12:17:52'),(1658,0,0,1057,1023,1233,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----MANY MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:16:51','','0000-00-00 00:00:00'),(1659,0,0,1057,1023,1233,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>ht--nad</p>\n\n<p>MRI brain---nad</p>\n\n<p>vng--done (o)</p>\n\n<p>&thinsp;pta---bialteral modeate sn deafness</p>\n\n<p>stabilometry---reduced vestibular and ss score</p>\n\n<p>vhit --bilatler overt saccades&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:17:31','darshan','2025-10-18 14:51:37'),(1661,0,0,1057,1023,1233,0,0,NULL,'','DIAG','ZZZ','Remark','BILATERAL VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:17:43','','0000-00-00 00:00:00'),(1662,0,0,1060,1026,1238,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---paritally better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:24:25','','0000-00-00 00:00:00'),(1663,0,0,1066,1032,1247,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:27:28','','0000-00-00 00:00:00'),(1664,0,0,87,76,1236,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:31:10','','0000-00-00 00:00:00'),(1666,0,0,87,76,1236,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:32:42','','0000-00-00 00:00:00'),(1667,0,0,933,67,1072,0,0,NULL,'','FOOD_DRUG_ALLERGIES','','','<P>NO ANY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 12:33:59','mo','2025-10-18 13:02:42'),(1668,0,0,1059,1025,1237,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:35:59','','0000-00-00 00:00:00'),(1669,0,0,1059,1025,1237,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>n oassociated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:36:03','darshan','2025-10-18 12:38:40'),(1670,0,0,1059,1025,1237,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:38:53','','0000-00-00 00:00:00'),(1672,0,0,1059,1025,1237,0,0,NULL,'','MADVICE','ZZZ','Remark','VESTIBULAR IX---PT WILL COME LATER\n','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:41:26','','0000-00-00 00:00:00'),(1673,0,0,933,67,1072,0,0,NULL,'','DISCCOND','','','<P>ON DISCHARGE :</P>\r\n\r\n<P>C/O : HYPERTENSION ++</P>\r\n\r\n<P>&nbsp;NASAL CLOTS ++</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PR: 86/MIN</P>\r\n\r\n<P>BP: 176/90 MMHG</P>\r\n\r\n<P>SPO2 :97 % ON RA</P>\r\n\r\n<P>TEMP : 98.6 F</P>\r\n\r\n<P>CVS : S1,S2 ++</P>\r\n\r\n<P>CNS : C/O +</P>\r\n\r\n<P>P/A :SOFT</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 12:42:57','mo','2025-10-18 13:02:42'),(1674,0,0,933,67,1072,0,0,NULL,'','ADVICE','','','<P>ADVISE: CONTIUES HOSPITAL STAY</P>\r\n\r\n<P>TREATMENT AS PER HOSPITAL</P>\r\n\r\n<P>REGULAR BP MONITERING.</P>\r\n\r\n<P>NASAL PACKING.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 12:42:57','mo','2025-10-18 13:02:42'),(1675,0,0,1029,997,1198,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:51:28','darshan','2025-10-18 12:52:15'),(1676,0,0,1029,997,1198,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:54:20','','0000-00-00 00:00:00'),(1678,0,0,1029,997,1198,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:55:42','','0000-00-00 00:00:00'),(1679,0,0,933,67,1072,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.TELSTAR 40MG&nbsp; P/O 0-0-1&nbsp; AFTER FOOD&nbsp;</P>\r\n\r\n<P>TAB.TELMICON TRIO&nbsp; 25 P/O 1-0-0&nbsp; AFTER FOOD&nbsp;</P>\r\n\r\n<P>BOTROCLOT 4 DROPS EVERY 4 HRLY VIA NASAL</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>ALL MEDICINE FOR 7 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>OLD MEDICINES CONTINUES FOR DM-2.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 12:56:43','mo','2025-10-18 13:02:42'),(1680,0,0,1075,1041,1256,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:57:40','','0000-00-00 00:00:00'),(1682,0,0,1075,1041,1256,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:58:12','','0000-00-00 00:00:00'),(1683,0,0,1044,1011,1217,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 12:59:02','','0000-00-00 00:00:00'),(1684,0,0,1062,1028,1240,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 13:06:56','','0000-00-00 00:00:00'),(1685,0,0,239,18,246,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP ON THURSDAY AT EVENING (5 TO 7 PM)</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n\r\n<P>SPIROMETRY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 13:11:03','mo','2025-10-18 14:19:44'),(1686,0,0,239,18,246,0,0,NULL,'','TREATDISC_TI','','','<P>INJ MERO (1GM/ 100 NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; 7AM--2PM--10PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS (16&nbsp;INJ)</P>\r\n\r\n<P>INJ TARGOCID (400 MG/ 100 NS)&nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2 PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS ( 5 INJ)</P>\r\n\r\n<P>INJ H.MIXTARD (30/70)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; S/C&nbsp; &nbsp; &nbsp; &nbsp; 30 UNIT&nbsp; &nbsp; &nbsp; &nbsp; BEFORE BREAKFAST</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 16 UNIT&nbsp; &nbsp; &nbsp; &nbsp; BEFORE DINNER</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CAP SOMPRAZ D (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB RIFAGUT (550)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB VONAZ (200)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ALCOMAX&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB COBADEX-CZS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB OTSKI&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DAPAVEL-L (10/5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB STAGLIM M2&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>LIQ DUPHALAC (15 ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>SYP POTKLOR (5 ML WITH WATER)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; FOR 5 DAYS</P>\r\n\r\n<P>LAMINO HEPA POWDER (1 SACHET WITH WATER )&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; FOR 5DAYS</P>\r\n\r\n<P>DEBRIDACE OINTMENT FOR DRESSING.....................(3)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 13:11:03','mo','2025-10-18 14:19:44'),(1687,0,0,1084,1050,1265,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 13:16:03','','0000-00-00 00:00:00'),(1688,0,0,1080,1046,1261,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 13:18:49','','0000-00-00 00:00:00'),(1689,0,0,1085,1051,1268,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 13:21:06','','0000-00-00 00:00:00'),(1690,0,0,1085,1051,1268,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 13:21:52','','0000-00-00 00:00:00'),(1692,0,0,1085,1051,1268,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-18 13:22:05','','0000-00-00 00:00:00'),(1693,0,0,1086,1053,1270,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 13:28:01','','0000-00-00 00:00:00'),(1694,0,0,1086,1053,1270,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling any time and remains for few mins heaviness of head +</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 13:30:01','','0000-00-00 00:00:00'),(1695,0,0,1086,1053,1270,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--central vareaity of nystagmus&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 13:30:22','darshan','2025-10-18 14:49:49'),(1696,0,0,1086,1053,1270,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 13:30:34','','0000-00-00 00:00:00'),(1697,0,0,1070,1036,1251,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 13:33:52','','0000-00-00 00:00:00'),(1698,0,0,1071,1037,1252,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 13:40:02','','0000-00-00 00:00:00'),(1699,0,0,1072,1038,1253,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 13:47:33','','0000-00-00 00:00:00'),(1701,0,0,1072,1038,1253,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-18 13:48:25','','0000-00-00 00:00:00'),(1702,0,0,800,64,936,0,0,NULL,'','FOOD_DRUG_ALLERGIES','','','<P>NO ANY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 13:49:01','mo','2025-10-18 15:23:10'),(1703,0,0,1061,1027,1239,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 13:52:35','','0000-00-00 00:00:00'),(1705,0,0,800,64,936,0,0,NULL,'','DISCCOND','','','<P>ON DISCHARGE :&nbsp;</P>\r\n\r\n<P>PR: 68/MIN</P>\r\n\r\n<P>BP : 148/86 MMHG</P>\r\n\r\n<P>SPO2: 98 % ON RA</P>\r\n\r\n<P>TEMP : 101.6 F</P>\r\n\r\n<P>RS : BLAE ++</P>\r\n\r\n<P>CNS : C/O +</P>\r\n\r\n<P>CVS : S1/S2</P>\r\n\r\n<P>P/A :SOFT&nbsp;</P>\r\n\r\n<P>RT IN SITU +</P>\r\n\r\n<P>FOLYES IN SITU +</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 13:56:22','mo','2025-10-18 15:23:10'),(1706,0,0,800,64,936,0,0,NULL,'','ADVICE','','','<P>ADVISE :</P>\r\n\r\n<P>-&nbsp; CAG.</P>\r\n\r\n<P>- CONTINUES HOSPITALIZATION.</P>\r\n\r\n<P>-&nbsp; UNDER OBSERVATION CARDIOLOGIST</P>\r\n\r\n<P>-&nbsp; CONTINUES BP MONITOR.</P>\r\n\r\n<P>- RT FEEDING.</P>\r\n\r\n<P>- FOLEYS CARE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>NOTES : URINE C/S REPORT AWAITED @ MAHEK LAB.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 13:59:10','mo','2025-10-18 15:23:10'),(1707,0,0,1073,1039,1254,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 13:59:34','','0000-00-00 00:00:00'),(1708,0,0,1074,1040,1255,0,0,NULL,'','HIST','ZZZ','Remark','<p>fofllow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 14:02:44','','0000-00-00 00:00:00'),(1709,0,0,1076,1042,1257,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 14:12:27','','0000-00-00 00:00:00'),(1711,0,0,1061,1027,1239,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-18 14:14:38','','0000-00-00 00:00:00'),(1712,0,0,1078,1044,1259,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 14:18:23','','0000-00-00 00:00:00'),(1713,0,0,1079,1045,1260,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 14:34:09','','0000-00-00 00:00:00'),(1714,0,0,911,73,1266,0,0,NULL,'','DISCDIAG','','','<P><STRONG>INFECTED SEBACEOUS CYST ON RIGHT BACK</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 14:42:38','mo','2025-10-18 18:12:49'),(1715,0,0,911,73,1266,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 14:42:38','mo','2025-10-18 18:12:49'),(1716,0,0,911,73,1266,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 62 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O: PAIN AND SWELLING ON UPPER BACK REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-PUS DISCHARGE FROM SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-REDNESS PRESENT</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-NO FEVER</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 7-8 DAYS FOR THAT PRIMARY CONSULTED ON OPD BASE AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-76/MIN, BP-110/70MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nINCISION AND DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 18/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 14:42:38','mo','2025-10-18 18:12:49'),(1717,0,0,911,73,1266,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX: INCISION AND DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 18/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 14:42:38','mo','2025-10-18 18:12:49'),(1718,0,0,911,73,1266,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 14:42:38','mo','2025-10-18 18:12:49'),(1719,0,0,1082,1048,1263,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for giddiness</p>\n\n<p>left ear ttinniuts&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 14:55:38','','0000-00-00 00:00:00'),(1720,0,0,1087,1054,1271,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 14:59:45','','0000-00-00 00:00:00'),(1721,0,0,1088,1055,1272,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo</p>\n\n<p>medicine skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 15:07:33','','0000-00-00 00:00:00'),(1722,0,0,1091,1058,1277,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better&thinsp;</p>\n\n<p>both ear itching</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-18 15:16:25','','0000-00-00 00:00:00'),(1723,0,0,969,68,1140,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO NAY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 15:48:03','mo','2025-10-18 15:56:40'),(1724,0,0,969,68,1140,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE 250&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;&nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ETOLOK(90)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>CAP ROSULESS GOLD&nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 20&nbsp;DAYS</P>\r\n\r\n<P>TAB BISOBIS (5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 20&nbsp;DAYS</P>\r\n\r\n<P>TAB SYNDOPA PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 20 DAYS</P>\r\n\r\n<P>TAB TORESIS PLUS(20/50) P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 20 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB PEANXIT&nbsp; &nbsp; 1--0--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 15:48:03','mo','2025-10-18 15:56:40'),(1725,0,0,911,73,1266,0,0,NULL,'','OTNOTE','','','<p>-sebaceous cyst on right back</p>\r\n\r\n<p>-incision kept</p>\r\n\r\n<p>-whole pus drained &amp; sebaceous cyst wall excised</p>\r\n\r\n<p>-cavity clean with betadine &amp; saline</p>\r\n\r\n<p>-hemostasis acheved</p>\r\n\r\n<p>-dressing kept</p>\r\n\r\n<p>-pus sent for cs</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 16:31:32','mo','2025-10-18 18:12:49'),(1726,0,0,911,73,1266,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 16:31:32','mo','2025-10-18 18:12:49'),(1727,0,0,911,73,1266,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 16:31:32','mo','2025-10-18 18:12:49'),(1728,0,0,911,73,1266,0,0,NULL,'','TREATDISC_TI','','','<P>TAB AUGMENTIN 625&nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp;BEFORE FOOD FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL-SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS&nbsp;&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 16:31:32','mo','2025-10-18 18:12:49'),(1729,0,0,879,66,1004,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>CAD-POST PTCA TO LAD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 16:48:12','mo','2025-10-18 16:53:09'),(1730,0,0,879,66,1004,0,0,NULL,'','DISCCOND','','','<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 16:48:12','mo','2025-10-18 16:53:09'),(1731,0,0,879,66,1004,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION</P>\r\n\r\n<P>DAILY CBC</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 16:48:12','mo','2025-10-18 16:53:09'),(1732,0,0,1101,76,1291,0,0,NULL,'','DISCDIAG','','','<P><STRONG>DOE UNEDER INVESTIGATION</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 22:04:31','mo','2025-10-18 22:10:47'),(1733,0,0,1101,76,1291,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 58 YEARS OLD FEMALE&nbsp; PATIENT PRESENT WITH,<BR />\r\nH/O : LOW GRADE FEVER WITH GEN WEAKNESS.<BR />\r\nK/C/O: SLE, HYPOTHYRODISAM.<BR />\r\nC/O: DOE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GHABHRAMAN, UNEZZENESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; HYPERTENSION</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; TODAY EVENING<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 98.0`F<BR />\r\nPR- 110/MIN<BR />\r\nBP- 180/100 MMHG&nbsp;<BR />\r\nSPO2- 85% ON RA&nbsp;<BR />\r\nRR- 29 /MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>CNS-CONSCIOUS AND ORIENTED F/V/C,</P>\r\n\r\n<P>RS-BLAE+, CRAPS +NT.<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18-10-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF BREATHLESNESS NEBULIZATION GIVEN.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>SYMPTOMATIC AND SUPPORTIVE RX GIVEN.</P>\r\n\r\n<P>CHEST X RAY DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>SEEN BY DR. KRUTARTH KANJIYA (ID) ADVICE FOLLOWED.</P>\r\n\r\n<P>PATIENT RELETIVE WANT DISCHARGE AGAIN MEDICAL ADVICE.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 22:04:31','mo','2025-10-18 22:10:47'),(1734,0,0,1101,76,1291,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 22:10:47','','0000-00-00 00:00:00'),(1735,0,0,1101,76,1291,0,0,NULL,'','DISCCOND','','','<P>PATIENT IS CONSIOUS,&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:&nbsp;<BR />\r\nTEMP- 97.0`F<BR />\r\nPR- 80/MIN<BR />\r\nBP- 140/80&nbsp;MMHG&nbsp;<BR />\r\nSPO2- 95% ON RA&nbsp;<BR />\r\nRR- 24&nbsp;/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>CNS- CONSCIOUS AND ORIENTED F/V/C,</P>\r\n\r\n<P>RS-BLAE+,&nbsp;<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 22:10:47','','0000-00-00 00:00:00'),(1736,0,0,1101,76,1291,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZTION</P>\r\n\r\n<P>HR CT THOREX</P>\r\n\r\n<P>CPK TOTAL</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 22:10:47','','0000-00-00 00:00:00'),(1737,0,0,1101,76,1291,0,0,NULL,'','TREATDISC_TI','','','<P>TAB. XOXE CV 250 MG P/O 1-0-1</P>\r\n\r\n<P>TAB. AFSMA SR 1-0-0</P>\r\n\r\n<P>TAB. DOMPAN 1-0-1&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 22:10:47','','0000-00-00 00:00:00'),(1738,0,0,1095,75,1281,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LEFT SIDE CLOSED VOLAR DISPLACED DISTAL END RADIUS FRACTURE WITH DRUJ SUBLUXATION</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 23:20:36','mo','2025-10-19 12:19:08'),(1739,0,0,1095,75,1281,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 32 YEARS OLD &nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O:&nbsp; NAD<BR />\r\nC/O: LEFT WRIST PAIN&nbsp; SINCE 5-6 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; TENDERNESS AND SWELLING</P>\r\n\r\n<P>SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>X-RAY LEFT WRIST (12/10/25).</P>\r\n\r\n<P>HIV,HBSAG, HCV DONE ON 12/10/25 WHICH WAS NEGATIVE.</P>\r\n\r\n<P>NCCT SCAN OF BRAIN AND NECK DONE ON 12/10/25, REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-68/MIN, BP-90/60MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>POP X-RAY LEFT WRIST AP/LAT DONE ON 19/10/25.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\nSO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-18 23:20:36','mo','2025-10-19 12:19:08'),(1740,0,0,1095,75,1281,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>OPEN REDUCTION 4 HOLE VOLAR PLATE AND SCREW FIXATION FOR LEFT DISTAL END RADIUS FRACTURE DONE BY DR SAGAR KHANAPARA&nbsp;ON 18/10/2025 UNDER REGIONAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-19 01:35:34','mo','2025-10-19 12:19:08'),(1741,0,0,1095,75,1281,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACTAGARD</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.TRAMADOL</P>\r\n\r\n<P>TAB.CHYMORAL FORTE</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-19 01:35:34','mo','2025-10-19 12:19:08'),(1742,0,0,1040,71,1213,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.OFRAMAX</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.VOMISET</P>\r\n\r\n<P>INJ.DYNAPAR AQ</P>\r\n\r\n<P>INJ.TRAMADOL</P>\r\n\r\n<P>INJ.CAL.GLUCONATE</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>INJ PERINORM</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-19 01:39:05','mo','2025-10-22 13:01:39'),(1743,0,0,1093,74,1279,0,0,NULL,'','DISCDIAG','','','<P><STRONG>POSTERIOR ANAL FISSURE + SKIN TAG</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-19 01:57:12','mo','2025-10-19 10:59:40'),(1744,0,0,1093,74,1279,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O:MODERATE ILEITIS ? CHRONS DISEASE ON RX</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-19 01:57:12','mo','2025-10-19 10:59:40'),(1745,0,0,1093,74,1279,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 20 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O: PAIN DURING DEFECATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BURNING P/A</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO BLEEDING P/R</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO FEVER</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 6-8 MONTHS, FOR THAT PATIENT PRIMARILY CONSULTED OPD BASED AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-92/MIN, BP-128/80MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nLATERAL INTERNAL SPHINCTEROTOMY + SKIN TAG EXCISION&nbsp;DONE BY DR PRATAPSINH DODIYA ON 18/10/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\nSO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-19 01:57:12','mo','2025-10-19 10:59:40'),(1746,0,0,1093,74,1279,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>LATERAL INTERNAL SPHINCTEROTOMY + SKIN TAG EXCISION&nbsp;DONE BY DR PRATAPSINH DODIYA ON 18/10/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-19 01:57:12','mo','2025-10-19 10:59:40'),(1747,0,0,1093,74,1279,0,0,NULL,'','OTNOTE','','','<p>per-op findings:</p>\r\n\r\n<p>-post anal fissure</p>\r\n\r\n<p>-tight internal sphincter</p>\r\n\r\n<p>-skin tag at 6 o&#39;clock position</p>\r\n\r\n<p>-skin tag excision done</p>\r\n\r\n<p>-lateral internal sphincterotomy done at 3 o&#39;clock position</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-wound kept open</p>\r\n\r\n<p>-dressing kept</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-19 01:57:12','mo','2025-10-19 10:59:40'),(1748,0,0,1093,74,1279,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-19 01:57:12','mo','2025-10-19 10:59:40'),(1749,0,0,1093,74,1279,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACTAGARD</P>\r\n\r\n<P>INJ.METROGYL</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>INJ.DYNAPAR</P>\r\n\r\n<P>SYP.CREMAFFIN PLUS</P>\r\n\r\n<P>LOX 2 % JELLY</P>\r\n\r\n<P>SUCRAN ANO CREAM</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-19 01:57:12','mo','2025-10-19 10:59:40'),(1750,0,0,1093,74,1279,0,0,NULL,'','FOOD_DRUG_ALLERGIES','','','<P>NAD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-19 10:42:01','mo','2025-10-19 10:59:40'),(1751,0,0,1093,74,1279,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-19 10:42:01','mo','2025-10-19 10:59:40'),(1752,0,0,1093,74,1279,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.CEFTUM (500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS..................(10)</P>\r\n\r\n<P>TAB.ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS...................(10)</P>\r\n\r\n<P>TAB.ZERODOL P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS...................(10)</P>\r\n\r\n<P>SYP.CREAMAFFIN PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 15 ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AT BED TIME&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS..............(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>LOX JELLY 2%&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR LOCAL APLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE DEFECATION.............(1)</P>\r\n\r\n<P>SUCRAL ANO CREAM&nbsp; &nbsp; &nbsp; &nbsp;FOR LOCAL APLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER&nbsp;DEFECATION.............(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB.ULTACET SEMI&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS FOR SEVERE PAIN...................(5)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-19 10:50:38','mo','2025-10-19 10:59:40'),(1753,0,0,1095,75,1281,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O: FALL DOWN FROM BIKE BEFORE 6 DAYS,FOR THAT PRIMARY TREATMENT TAKEN AT GOKUL HOSPITAL WHERE LEFT BE SLAB GIVEN AND STICHES AT LOWER LIP INNER AND OUTER SIDE TAKEN.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-19 11:40:28','mo','2025-10-19 12:19:08'),(1754,0,0,1095,75,1281,0,0,NULL,'','OTNOTE','','','<p>PER-OP FINDINGS:</p>\r\n\r\n<p>-UNDER RA&nbsp; AND AAP PAINT AND DRAP DONE</p>\r\n\r\n<p>-FOR LEFT WRIST / THROUGH MODIFIED HENRY APPROCH LEFT DISTAL END RADIUS FRACTURE EXPOSED.</p>\r\n\r\n<p>-UNDER IITV LEFT DISTAL END RADIUS FRACTURE REDUCED AND FIXED WITH SS&nbsp;4 HOLE VOLAR PLATE AND SCREW</p>\r\n\r\n<p>-UNDER IITV AND CLINICALLY DRUJ INSTABILITY PRESENT SO UNDER IITV DRUJ FIXED BY 1 K WIRE</p>\r\n\r\n<p>-WASH GIVEN</p>\r\n\r\n<p>-CLOSURE DONE</p>\r\n\r\n<p>-AE SLAB GIVEN&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-19 11:40:28','mo','2025-10-19 12:19:08'),(1755,0,0,1095,75,1281,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-19 11:40:28','mo','2025-10-19 12:19:08'),(1756,0,0,1095,75,1281,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.FUROLIVE (500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS................(10)</P>\r\n\r\n<P>TAB.LINOGRAM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS................(10)</P>\r\n\r\n<P>TAB.TROFENAC SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS................(10)</P>\r\n\r\n<P>TAB. ROXIZOLE DSR&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS................(10)</P>\r\n\r\n<P>TAB.CHYMORAL FORTE&nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 1-1-1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS................(15)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-19 11:40:28','mo','2025-10-19 12:19:08'),(1757,0,0,740,65,939,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-20 09:12:17','mo','2025-10-20 11:57:40'),(1758,0,0,740,65,939,0,0,NULL,'','TREATDISC_TI','','','<P>TAB MAXGALIP-AT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS</P>\r\n\r\n<P>TAB MBTRON PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS</P>\r\n\r\n<P>TAB SYMBAL 20MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB NEXPRO RD&nbsp;40&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 10 DAYS</P>\r\n\r\n<P>TAB OMNACORTIL 20MG&nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 15&nbsp;DAYS</P>\r\n\r\n<P>TAB GEMCAL XT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 15&nbsp;DAYS</P>\r\n\r\n<P>TAB BACTRIM DS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; ALTERNATE DAYS&nbsp; &nbsp;FOR 15 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>TAB HETRAZAN 100&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--1--1</P>\r\n\r\n<P>TAB ATORMAC GOLD 40&nbsp; P/O&nbsp; &nbsp; 0--0--1</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-20 09:12:17','mo','2025-10-20 11:57:40'),(1759,0,0,1047,72,1220,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE CALCULUS CHOLECYSTITIS (EMPYEMA)</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM II,IHD (POST PTCA) (DRUG DEFAULTER)</STRONG></P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-20 09:40:02','mo','2025-10-20 11:42:28'),(1760,0,0,1047,72,1220,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-20 09:40:02','mo','2025-10-20 11:42:28'),(1761,0,0,1047,72,1220,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 63 YEARS OLD &nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II,IHD (POST PTCA)(DRUG DEFAULTER)<BR />\r\nH/O: ADMITTED AT SHIV HOSPITAL B/W 16/10/2025 TO 18/10/2025 FOR CALCULUS CHOLECYSTITIS<BR />\r\nC/O:PAIN IN ABDOMEN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; -NAUSEA, VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; -FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; -CONTIPATION</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 5-6 DAYS FOR THAT NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>PRE-OP PROFILE</P>\r\n\r\n<P>USG ABDOMEN 7 PELVIS</P>\r\n\r\n<P>CT ABDOMEN &AMP; PELVIS</P>\r\n\r\n<P>CHEST X RAY</P>\r\n\r\n<P>2D ECHO WHICH S/O EF 45%&nbsp; DONE ON 17/10/2025</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-74/MIN, BP-110/70MMHG, SPO2-97% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nLAPAROSCOPIC CHOLECYSTECTOMY DONE BY DR BANKIM THANKI(GENERAL SURGEON) ON 18/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-20 09:40:02','mo','2025-10-20 11:42:28'),(1762,0,0,1047,72,1220,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:&nbsp;LAPAROSCOPIC CHOLECYSTECTOMY DONE BY DR BANKIM THANKI(GENERAL SURGEON) ON 18/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-20 09:40:02','mo','2025-10-20 11:42:28'),(1763,0,0,1047,72,1220,0,0,NULL,'','OTNOTE','','','<p>-thick wall, distended gb (empyema perforated)</p>\r\n\r\n<p>-gb densly adherent to omentum</p>\r\n\r\n<p>-single cystic artery- clipped, coagulated &amp; cut</p>\r\n\r\n<p>-single cystic duct- double clipped</p>\r\n\r\n<p>-gb separted from liver</p>\r\n\r\n<p>-thorough saline wash given</p>\r\n\r\n<p>-gb removal done in endobag</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-romo adk no.28 kept in gb fossa</p>\r\n\r\n<p>-10 mm port sheath closed with vicryl-o (port)</p>\r\n\r\n<p>-skin closed with stappler</p>\r\n\r\n<p>-dressing kept</p>\r\n\r\n<p>-gb sent for hpe.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-20 09:40:02','mo','2025-10-20 11:42:28'),(1764,0,0,1047,72,1220,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 7 DAYS</P>\r\n\r\n<P>ROMO ADK NO.28 IN SITU DAY :03</P>\r\n\r\n<P>PHYSICIAN OPINION FOR DM AND IHD MEDICATION</P>\r\n\r\n<P>RBS MONITORING</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>HPE REPORT AWAITED</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-20 09:40:02','mo','2025-10-20 11:42:28'),(1765,0,0,1047,72,1220,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MEROMAC</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ H ACTRAPID</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-20 09:40:02','mo','2025-10-20 11:42:28'),(1766,0,0,1047,72,1220,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZOSEF 500&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR&nbsp; &nbsp;7 DAYS</P>\r\n\r\n<P>TAB REBEPRAZOLE-20&nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; FOR&nbsp; 7 DAYS</P>\r\n\r\n<P>TAB DAN-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR&nbsp; &nbsp;7 DAYS</P>\r\n\r\n<P>TAB SILOCAP 8MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp;&nbsp;&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR&nbsp; &nbsp;7 DAYS</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; P/O&nbsp; &nbsp; &nbsp; 0--0--20ML&nbsp;&nbsp;&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR&nbsp; &nbsp;7 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-20 11:15:23','mo','2025-10-20 11:42:28'),(1767,0,0,1105,80,1295,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE SEVERE GASTRITIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 10:34:00','mo','2025-10-21 15:11:35'),(1768,0,0,1105,80,1295,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O: RIGHT BREAST LUMP EXCISION DONE BEFORE 10 YEARS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 10:34:00','mo','2025-10-21 15:11:35'),(1769,0,0,1105,80,1295,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 27 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O: CONTINOUS NAUSEA&nbsp; AND VOMITING (15-20 EPISODE)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO DIARRHOEA</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRSENTED SINCE YESTERDAY FOR TAHT PRIMARY TRETMENT TAKEN FROM GP BUT INCREASED SINCE FEW HOURS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-88/MIN, BP-110/70MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 10:34:00','mo','2025-10-21 15:11:35'),(1770,0,0,1105,80,1295,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.RABICROSS</P>\r\n\r\n<P>INJ.QUICKSET</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 10:34:00','mo','2025-10-21 15:11:35'),(1771,0,0,1105,80,1295,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 14:58:26','mo','2025-10-21 15:11:35'),(1772,0,0,1105,80,1295,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 14:58:26','mo','2025-10-21 15:11:35'),(1773,0,0,1105,80,1295,0,0,NULL,'','TREATDISC_TI','','','<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1---0---1&nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; FOR 3 DAYS</P>\r\n\r\n<P>TAB ZOFER MD&nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IF VOMITING&nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 14:58:26','mo','2025-10-21 15:11:35'),(1774,0,0,982,81,1296,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE GASTRO ENTERITIS</STRONG></P>\r\n\r\n<P><STRONG>? TEMPORAL ARTERITIS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM, IHD (POST PTCA 4 YEAR BACK)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 19:00:05','mo','2025-10-25 13:40:54'),(1775,0,0,982,81,1296,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-21 19:00:05','mo','2025-10-25 13:40:54'),(1776,0,0,982,81,1296,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 68 YEARS OLD &nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM, IHD (POST PTCA 4 YEAR BACK)<BR />\r\nH/O: TLH BEFORE 20 YEAR BACK<BR />\r\nC/O: FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-BODYACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-LOOSE MOTION (2-3 TIMES)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 3-4 DAYS FOR THAT PRIMARY CONSULTED ER AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>HBA1C DONE ON 17/10/2025 WHICH WAS 8.9%</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-90/MIN, BP-100/60MMHG, SPO2-99% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>BRUCELLA IGM DONE WHICH WAS NEGATIVE</P>\r\n\r\n<P>TYPHI DOT DONE WHICH S/O IGM: WEAK POSITIVE, IGG: NEGATIVE</P>\r\n\r\n<P>CHEST X RAY DONE ON 21/10/2025&nbsp;&nbsp;AND REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>WIDAL TUBE TEST DONE ON 21/10/2025 WHICH WAS NEGATIVE</P>\r\n\r\n<P>STOOL OB DONE ON 23/10/2025 WHICH S/O STOOL OCCULT BLOOD : POSITIVE (++)</P>\r\n\r\n<P>BLOOD CS SENT ON 23/10/2025 WHICH S/O: NAD</P>\r\n\r\n<P>URINE CS SENT ON 23/10/2025 WHICH S/O: NAD</P>\r\n\r\n<P>REFERENCE OF DR.FALGUN DHORIYANI( RHEUMATOLOGIST) DONE ON 25/10/2025 AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT GENERAL CONDITION AND PROGNOSIS EXPLAIN TO PATIENT AND RELATIVE BUT THET WANT DISCHARGE AGAINST MEDICAL ADVICE SO NOW PATIENT BEING DAMA .</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 19:00:05','mo','2025-10-25 13:40:54'),(1777,0,0,982,81,1296,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION&nbsp;</P>\r\n\r\n<P>FOLLOW UP ON 11TH NOVEMBER TO DR FALGUN DHORIYANI&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 19:00:05','mo','2025-10-25 13:40:54'),(1778,0,0,982,81,1296,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX-S</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>TAB LANOL ER</P>\r\n\r\n<P>TAB GLIMEPERIDE</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>TAB AZEE</P>\r\n\r\n<P>INJ H MIXTARD</P>\r\n\r\n<P>TAB METFORMIN</P>\r\n\r\n<P>TAB GLIMIPRIDE</P>\r\n\r\n<P>TAB OMNACORTIL</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 19:00:05','mo','2025-10-25 13:40:54'),(1779,0,0,1102,77,1292,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n<BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 21:00:01','mo','2025-10-22 23:38:01'),(1780,0,0,1102,77,1292,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 55 YEARS OLD MALE&nbsp;PATIENT PRESENT WITH,<BR />\r\nK/C/O: CVA(RIGHT SIDE),CKD,HTN, DM -II.<BR />\r\nC/O: DOE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;BREATHLESSNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SEVERE BREATHING DIFFICULTY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PEDAL ODEMA +NT.</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENELIZED WEAKNESS&nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; URINE OUT PUT NILL.</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; 2 DAYS.<BR />\r\nPRIMARY TREATMENT TAKEN AT AMBUJA HOSPITAL KODINAR.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 98.0`F<BR />\r\nPR- 120/MIN<BR />\r\nBP- 190/110 MMHG&nbsp;<BR />\r\nSPO2- 89% ON O2 SUPPORT 5 LIT.<BR />\r\nRR- 32/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+, SPASAM<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19-10-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ABG DONE.ECG DONE.</P>\r\n\r\n<P>IN VIEW OF HYPERTENSION INJ.NTG START.</P>\r\n\r\n<P>IN VIEW OF S. CREATININE LEVEL - 13.66 MG/DL, S.UREA -194 MG/DL. INJ. LASIX START BY INFUSION PUMP.</P>\r\n\r\n<P>DLC CATH DONE BY DR. DENISH SAVALIYA.</P>\r\n\r\n<P>1ST HD DONE TIME - 3HRS, UF - 1 LIT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>S. CREATININE LEVEL - 9.9&nbsp;MG/DL, S.UREA -&nbsp; 166&nbsp;MG/DL.</P>\r\n\r\n<P>INJ. NTG AND INJ. LESIX CONTINUE.</P>\r\n\r\n<P>O2 SUPPORT 2 LIT VIA NASAL CANULA.</P>\r\n\r\n<P>2ND HD DONE TIME - 4HRS, UF - 1 LIT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>S. CREATININE LEVEL - 8.32&nbsp;MG/DL,S.UREA - 177&nbsp;MG/DL.</P>\r\n\r\n<P>INJ. NTG STOP.</P>\r\n\r\n<P>PATIENT SHIFT TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22-10-2025,</P>\r\n\r\n<P>3RD HD DONE TIME - 4HRS, UF - 1 LIT.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>PATIENT GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE BUT RELATIVE WANT DISCHARGE.</P>\r\n\r\n<P>SO PATIENT BEING DOR.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 21:00:01','mo','2025-10-22 23:38:01'),(1781,0,0,1104,79,1294,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 21:05:26','mo','2025-10-23 21:21:52'),(1782,0,0,1104,79,1294,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 74 YEARS OLD FEMALE&nbsp; PATIENT PRESENT WITH,<BR />\r\nH/O : COUG AND COLD.<BR />\r\nK/C/O: HTN, DM, IHD, CKD.<BR />\r\nC/O: DOE&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SEVERE BREATHLESSNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; HYPERTENSION</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE TODAY MORNING.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 98.0`F<BR />\r\nPR- 126/MIN<BR />\r\nBP- 180/110 MMHG&nbsp;<BR />\r\nSPO2-&nbsp; 44% ON RA&nbsp;<BR />\r\nRR- 38/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+, BILATERAL CARPAS +NT.<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20-10-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF BREATHLESNESS NIV SUPPROT GIVEN.</P>\r\n\r\n<P>IN VIEW OF HYPERKALAMIA INJ. CAL GLUCONATE AND GI DRIP GIVEN.</P>\r\n\r\n<P>NEBULIZATION DONE.</P>\r\n\r\n<P>CHEST X RAY DONE REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>IN VIEW OF HYPERGLYCEMIA INJ. H.ACTRAPID DRIP START BY INFUSION PUMP.</P>\r\n\r\n<P>STOP NIV SUPPORT AND O2 GIVEN VIA MASK.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21-10-2025,</P>\r\n\r\n<P>STOP O2 SUPPORT.</P>\r\n\r\n<P>INJ. H.ACTRAPID DRIP STOP.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN ICU.</P>\r\n\r\n<P>ICU STAY UNEVENFULL.</P>\r\n\r\n<P>SHIFT TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22-10-2025,</P>\r\n\r\n<P>CATHTER CLAMPING STARTED</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23-10-2025,</P>\r\n\r\n<P>FOLEY&#39;S CATHETER REMOVAL DONE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 21:05:26','mo','2025-10-23 21:21:52'),(1783,0,0,1103,78,1293,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 75 YEARS OLD MALE&nbsp; PATIENT PRESENT WITH,<BR />\r\nK/C/O: HTN, DM TYPE - II, PULMONARY KOCH`S ON AKT, IHD (POST PTCA),BPH</P>\r\n\r\n<P>H/O: OPERATED FOR INGUINAL HERNIA BEFORE 1 YEAR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-TURP DONE 3 MONTH BACK</P>\r\n\r\n<P>C/O: UNCONSIOUS</P>\r\n\r\n<P>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;LEFT SIDED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DISORIENTED</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GTCS 2-3 EPISODE AT HOME.</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER WITH RIGOR,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BREATHING DIFFICUL</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; LAST 2 HRS.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 102`F<BR />\r\nPR- 162/MIN<BR />\r\nBP- 90/40 MMHG&nbsp;<BR />\r\nSPO2- 82% ON RA&nbsp;<BR />\r\nRR- 44-48 /MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS- DISORIENTED, LEFT SIDE WEAKNESS, RIGHT SIDE MOVEMENT +NT, PUPIL - 2MM RL.<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19-10-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ANTI CONVULSION LODING DOSE GIVEN.</P>\r\n\r\n<P>O2 SUPPORT GIVEN VIA MASK.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>MRI BRAIN DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>SEEN BY DR. RIDHAM KHANDERIYA (NEUROSURGEON) ADVICE FOLLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED, SLUREED SPEECH.</P>\r\n\r\n<P>RTF START.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED, MOVING ALL FOR LIMBES.</P>\r\n\r\n<P>RT REMOVE. TAKING ORALLY WELL.</P>\r\n\r\n<P>ICU STAY UNEVENFULL.</P>\r\n\r\n<P>PATIENT SHIFT TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED, MOVING ALL FOR LIMBES.</P>\r\n\r\n<P>CT SAME TREATMENT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23-10-2025,</P>\r\n\r\n<P>REQUIRED INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY AND SPUTUM C/S SENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24-10-2025,</P>\r\n\r\n<P>SPUTUM C/S INTERIM REPORT S/O;HEAVY GROWTH OF GRAM NEGATIVE BACILLI KLEBSIELLA PNEUMONIAE SO TREATMENT MODIFIED ACCORDINGLY.&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>25/10/2025</P>\r\n\r\n<P>SPUTUM C/S S/O: KLEIBSIELLA PNEUMONIAE HEAVY GROWTH&nbsp; AND TREATMENT MODIFIED @ SENSITIVITY&nbsp;</P>\r\n\r\n<P>FOLEY&#39;S CLAMP AND REMOVE</P>\r\n\r\n<P>PHYSIOTHERAPY DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26/10/2025,</P>\r\n\r\n<P>PATIENT GENERAL CONDITION OBSERVED IN WARD AND SAME TREATMENT CINTINUED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27/10/2025,</P>\r\n\r\n<P>CT SCAN OF BRAIN(PLAIN)&nbsp; DONE WHICH WAS IMPROVED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28/10/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 21:09:09','mo','2025-10-28 11:57:57'),(1784,0,0,1102,77,1292,0,0,NULL,'','DISCDIAG','','','<P><STRONG>FLUID OVERLOAD HYPERTENSION&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>HAERT FAILURE</STRONG></P>\r\n\r\n<P><STRONG>CKD STAGE 5</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: CVA(RIGHT SIDE),HTN, DM -II.</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 21:19:36','mo','2025-10-22 23:38:01'),(1785,0,0,1102,77,1292,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. LACTAGARD</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ. LESIX</P>\r\n\r\n<P>INJ. H.ACTRAPID</P>\r\n\r\n<P>INJ. NTG</P>\r\n\r\n<P>INJ.RENOCRIT</P>\r\n\r\n<P>TAB. NICARDIA R</P>\r\n\r\n<P>TAB. ARKAMIN</P>\r\n\r\n<P>TAB. PRASOPRESS</P>\r\n\r\n<P>TAB.CUDP</P>\r\n\r\n<P>TAB. LIP[IOCURE</P>\r\n\r\n<P>TAB. CREMALEX</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 21:19:36','mo','2025-10-22 23:38:01'),(1786,0,0,1104,79,1294,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. UNITREX S&nbsp;</P>\r\n\r\n<P>TAB. CLARIBID</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. DERIPHYLIN</P>\r\n\r\n<P>INJ. DYTOR</P>\r\n\r\n<P>INJ. H.ACTRAPID</P>\r\n\r\n<P>INJ. FEBRINIL</P>\r\n\r\n<P>INJ. VOMISET</P>\r\n\r\n<P>TAB. BISOBIS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 21:27:24','mo','2025-10-23 21:21:52'),(1787,0,0,1103,78,1293,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-21 21:37:41','mo','2025-10-28 11:57:57'),(1788,0,0,1103,78,1293,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. UNITREX S</P>\r\n\r\n<P>INJ MERO</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. VOMISET</P>\r\n\r\n<P>INJ. PCM</P>\r\n\r\n<P>INJ. LEVIGRESS</P>\r\n\r\n<P>INJ. LACOSMA</P>\r\n\r\n<P>TAB. B LONG</P>\r\n\r\n<P>TAB. AKT 4</P>\r\n\r\n<P>TAB. LIPITAS</P>\r\n\r\n<P>TAB. PROLOMET XL</P>\r\n\r\n<P>INJ. DYTOR</P>\r\n\r\n<P>IVF NS&nbsp;</P>\r\n\r\n<P>INJ. ELDERVIT</P>\r\n\r\n<P>TAB ATORVA</P>\r\n\r\n<P>TAB ECOSPRIN</P>\r\n\r\n<P>TAB NICORDANIL</P>\r\n\r\n<P>NEB COLISTIN</P>\r\n\r\n<P>SYP CREMAFFIN PLUS</P>\r\n\r\n<P>TAB R-CINEX</P>\r\n\r\n<P>TAB COMBUTOL</P>\r\n\r\n<P>TAB MACROZIDE&nbsp;</P>\r\n\r\n<P>SYP MUCOLYTE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 21:37:41','mo','2025-10-28 11:57:57'),(1789,0,0,987,69,1144,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 23:12:11','mo','2025-10-22 10:29:49'),(1790,0,0,987,69,1144,0,0,NULL,'','TREATDISC_TI','','','<P>INJ MERO&nbsp; &nbsp; &nbsp;1GM/NS 100&nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; TDS&nbsp; 7AM....2PM.....10PM&nbsp; &nbsp; &nbsp; FOR 3 DAYS</P>\r\n\r\n<P>TAB PANTOCID DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; FOR 3 DAYS</P>\r\n\r\n<P>TAB SOBISIS&nbsp; 500&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>TAB TORVASON 10&nbsp; &nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>TAB ECOSPRIN 75&nbsp; &nbsp; &nbsp; 0--0--1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-21 23:12:11','mo','2025-10-22 10:29:49'),(1791,0,0,1040,71,1213,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-22 13:01:39','','0000-00-00 00:00:00'),(1792,0,0,1040,71,1213,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZIFI CV (200)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB NEXPROFAST(40)&nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp;BEFORE FOOD&nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB PERINORM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp;BEFORE FOOD&nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ULTRACET&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-22 13:01:39','','0000-00-00 00:00:00'),(1793,0,0,1102,77,1292,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO AY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-22 18:48:56','mo','2025-10-22 23:38:01'),(1794,0,0,1102,77,1292,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>HD THRICE A WEAK</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-22 18:48:56','mo','2025-10-22 23:38:01'),(1795,0,0,1102,77,1292,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEPODEM XP 325&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; 1--0--1&nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB PANTO 40&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; BEFORE FOOD&nbsp; 1--0--0 FOR 5 DAYS</P>\r\n\r\n<P>TAB NICARDIA-R 20&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; 1--1--1 FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB ARKAMIN 0.1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; 1--1--1 FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB PRAZOPRESS-XL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; 1--0--1 FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB C-UDP 20&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;0--1--0 FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB LIPICURE 20&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; 0--0--1&nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB CREMALAX 10&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB LASIX 40&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; FOR&nbsp; 5&nbsp;DAYS</P>\r\n\r\n<P>TAB ZYTANIX 5&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp;FOR 5&nbsp;DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>INJ RENOCRIT 4K IU&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;S/C&nbsp; &nbsp; THRICE A WEAK&nbsp; &nbsp; THURSDAY....SATURDAY......TUESDAY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-22 18:48:56','mo','2025-10-22 23:38:01'),(1796,0,0,1103,78,1293,0,0,NULL,'','DISCDIAG','','','<P><STRONG>- RIGHT SUBDURAL HAMORRHAGE&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>- WITH SECONDARY INFECTION&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>- K/C/O: HTN, DM TYPE - II, PULMONARY KOCH`S ON AKT, IHD (POST PTCA),BPH</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-22 23:50:19','mo','2025-10-28 11:57:57'),(1797,0,0,1104,79,1294,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE BRONCHITIS</STRONG></P>\r\n\r\n<P><STRONG>CONGESTIVE CARDIAC FAILURE</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, DM, IHD, CKD.</STRONG></P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-22 23:51:36','mo','2025-10-23 21:21:52'),(1798,0,0,1107,82,1298,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PULMONARY COCH&#39;S&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>LEFT PLEURAL&nbsp;EFFUSION&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN,IHD(POST PTCA), DYSLIPIDEMIA,HYPOTHYROIDISM,BPH</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-23 11:39:39','mo','2025-10-28 13:53:32'),(1799,0,0,1107,82,1298,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-23 11:39:39','mo','2025-10-28 13:53:32'),(1800,0,0,1107,82,1298,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 72 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN,IHD(POST PTCA), DYSLIPIDEMIA,HYPOTHYROIDISM,BPH<BR />\r\nH/O: COUGHING SINCE 10 DAYS<BR />\r\nC/O: COUGHING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -COLD</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -BACK PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -BREATHING DIFFICULTY DURING WALKING</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 10-12 DAYS INCREASE SINCE 3-4 DAYS FOR THAT PRIMARY CONSULTED AT GP AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-100/MIN, BP-160/90MMHG, SPO2-96% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BL CREPITATION ++,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>CHEST X RAY DONE ON 23/10/2025 WHICH S/O: LEFT SIDE PLEURAL EFFUSION</P>\r\n\r\n<P>USG CHEST DONE ON 24/10/2024 WHICH S/O: APPROX 100ML FLUID COLLECTION</P>\r\n\r\n<P>PLEURAL FLUID 1200ML TAPPING FROM LEFT SIDE&nbsp;BY DR JAYANT MEHTA ON 24/10/2025 IN ICU UNDER OBSERVATION WITH ALL ASEPTIC PRECAUTION APPROX VOLUME -1000ML FLUID TAPPING</P>\r\n\r\n<P>PLEURAL FLUID R/M DONE REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>PLEURAL FLUID ADA DONE WHICH S/O: 75.38 U/L</P>\r\n\r\n<P>GENE X PERT SENT WHICH S/O: MTB DETECTED TRACE SO START AKT</P>\r\n\r\n<P>REPEAT USG CHEST SCREENING DONE BY DR JAYANT MEHTA&nbsp;&nbsp;WHICH S/O; VERY MINIMAL EFFUSION ON LEFT SIDE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-23 11:39:39','mo','2025-10-28 13:53:32'),(1801,0,0,1107,82,1298,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS ON FRIDAY</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-23 11:39:39','mo','2025-10-28 13:53:32'),(1802,0,0,1107,82,1298,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ EPIME-TZ</P>\r\n\r\n<P>TAB LEVOFLOX</P>\r\n\r\n<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>INJ VINEURIN</P>\r\n\r\n<P>TAB URIDAX</P>\r\n\r\n<P>TAB ROSULESS A</P>\r\n\r\n<P>TAB EZITHRO</P>\r\n\r\n<P>CAP FLUVIR</P>\r\n\r\n<P>TAB THYROX</P>\r\n\r\n<P>NEB PHRAPHAGE</P>\r\n\r\n<P>NEB BUDAPHAGE</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>TAB AKT</P>\r\n\r\n<P>TAB CC BEST T</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-23 11:39:39','mo','2025-10-28 13:53:32'),(1803,0,0,1109,1069,1302,0,0,NULL,'','DIAG','ZZZ','Remark','POST LSCS HEMATOMA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-23 12:00:14','','0000-00-00 00:00:00'),(1804,0,0,1104,79,1294,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-23 15:05:21','mo','2025-10-23 21:21:52'),(1805,0,0,1106,83,1339,0,0,NULL,'','DISCDIAG','','','<P><STRONG>B/L AXILLARY TAIL WITH FAT DEPOSITION</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-23 17:42:31','mo','2025-10-24 11:27:27'),(1806,0,0,1106,83,1339,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-23 17:42:31','mo','2025-10-24 11:27:27'),(1807,0,0,1106,83,1339,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 30 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O: OPERATED FOR APPENDIX 4 YEAR BACK</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;B/L AXILLARY FAT SINCE 4-5 YR<BR />\r\nC/O: B/L AXILLARY FAT PRESENT</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -NO PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -NO PUS DISCHARGE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -NO FEVER</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 4-5 YEAR FOR THAT PRIMARY CONSULTED ON OPD BASE AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG LOCAL PART BOTH AXILLA DONE&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-82/MIN, BP-110/70MMHG, SPO2-99% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nB/L AXILLARY TAIL WITH FAT DEPOSITION DONE BY DR PRATAPSINH DODIYA ON 23/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-23 17:42:31','mo','2025-10-24 11:27:27'),(1808,0,0,1106,83,1339,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:&nbsp;B/L AXILLARY TAIL WITH FAT DEPOSITION DONE BY DR PRATAPSINH DODIYA ON 23/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-23 17:42:31','mo','2025-10-24 11:27:27'),(1809,0,0,1106,83,1339,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-23 17:42:31','mo','2025-10-24 11:27:27'),(1810,0,0,1106,83,1339,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-23 17:42:31','mo','2025-10-24 11:27:27'),(1811,0,0,1134,1096,1342,0,0,NULL,'','CC','ZZZ','Remark','HEAVINESS OF HEAD ---4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 17:43:14','','0000-00-00 00:00:00'),(1812,0,0,1134,1096,1342,0,0,NULL,'','CC','ZZZ','Remark','SENSE OF IMBALANCE ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 17:43:14','','0000-00-00 00:00:00'),(1813,0,0,1134,1096,1342,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE +||','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 17:43:14','','0000-00-00 00:00:00'),(1814,0,0,1134,1096,1342,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic heaviness of head with headache +</p>\n\n<p>when pt walks she feels sense of imbalance&thinsp;</p>\n\n<p>no associated other cns symptosm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 17:43:32','darshan','2025-10-23 17:44:24'),(1815,0,0,1134,1096,1342,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nysstamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>Mri brain--nad</p>\n\n<p>pta----bilatel high frq severe sn deafness</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>Vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 17:43:51','darshan','2025-10-23 18:30:37'),(1817,0,0,1135,1097,1343,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying donw in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 17:54:17','darshan','2025-10-23 17:55:33'),(1818,0,0,1135,1097,1343,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW  YRS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 17:54:53','','0000-00-00 00:00:00'),(1819,0,0,1135,1097,1343,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dx hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bialtelr high freq severe sn deafness</p>\n\n<p>vemp---wnl</p>\n\n<p>vng--<strong>left post canal bppv --geotropic&thinsp;</strong></p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 17:55:47','darshan','2025-10-23 18:55:07'),(1820,0,0,1135,1097,1343,0,0,NULL,'','DIAG','ZZZ','Remark','INTERMITTENT BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 17:56:02','','0000-00-00 00:00:00'),(1821,0,0,1136,1098,1344,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 18:01:41','','0000-00-00 00:00:00'),(1822,0,0,1136,1098,1344,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 18:02:08','darshan','2025-10-23 18:40:15'),(1823,0,0,1136,1098,1344,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vng--right hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 18:02:26','darshan','2025-10-23 18:40:38'),(1824,0,0,1136,1098,1344,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 18:02:31','','0000-00-00 00:00:00'),(1825,0,0,1137,1099,1345,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---mild sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 18:07:56','','0000-00-00 00:00:00'),(1827,0,0,1139,1101,1347,0,0,NULL,'','HIST','ZZZ','Remark','<p>graudal deafness since many yrs&thinsp;</p>\n\n<p>both ear tinnitus and heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 18:18:42','darshan','2025-10-23 18:19:36'),(1828,0,0,1139,1101,1347,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR DEAFNESS ---MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 18:19:05','','0000-00-00 00:00:00'),(1829,0,0,1139,1101,1347,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus--absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit---nad</p>\n\n<p>pta----bialtelr very severe sn deafness</p>\n\n<p>OAE---bilateral poor corelation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 18:19:53','darshan','2025-10-23 19:23:02'),(1830,0,0,1139,1101,1347,0,0,NULL,'','DIAG','ZZZ','Remark','BIALTERAL SN DEAFNESS','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 18:20:05','','0000-00-00 00:00:00'),(1831,0,0,1136,1098,1344,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-23 18:41:14','','0000-00-00 00:00:00'),(1834,0,0,1136,1098,1344,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-23 18:45:55','','0000-00-00 00:00:00'),(1837,0,0,1135,1097,1343,0,0,NULL,'','MADVICE','ZZZ','Remark','AS PT IS NOT TOLERATING MANEVUER PRECAUTION AND PHARMACOTHERAPY IS ADVISED','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-23 19:17:42','','0000-00-00 00:00:00'),(1838,0,0,1104,79,1294,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-23 21:21:52','','0000-00-00 00:00:00'),(1839,0,0,1104,79,1294,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZIFI CV 200&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB CLARIBID 500&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 1 DAYS</P>\r\n\r\n<P>TAB AFASMA-SR 200&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--0&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB DYTOR PLUS 10&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--0&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB BISOBIS 5MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;P/O&nbsp; &nbsp; &nbsp; 0--1--0&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ATIVAN 1MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 0--0--1&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>TAB QANROSE GOLD 20&nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>TAB REXACE-H</P>\r\n\r\n<P>TAB CARVEDIOL CR</P>\r\n\r\n<P>TAB 5 MONO SR 30</P>\r\n\r\n<P>TAB PANTOCID DSR</P>\r\n\r\n<P>TAB SITASON-50</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-23 21:21:52','','0000-00-00 00:00:00'),(1840,0,0,1106,83,1339,0,0,NULL,'','OTNOTE','','','<p>-b/l elliptical incision kept</p>\r\n\r\n<p>-excessive subcut&nbsp;tissue with fibro fatty tissue removed&nbsp;from both axilla</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-skin closed with ethilon 3-0</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 00:37:12','mo','2025-10-24 11:27:27'),(1841,0,0,1106,83,1339,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 00:37:12','mo','2025-10-24 11:27:27'),(1842,0,0,1106,83,1339,0,0,NULL,'','TREATDISC_TI','','','<P>CAP AUGMENTIN 625&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB CHYMORAL FORTE&nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 00:37:12','mo','2025-10-24 11:27:27'),(1843,0,0,1036,84,1341,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PERIANAL ABSCESS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 00:56:41','','0000-00-00 00:00:00'),(1844,0,0,1036,84,1341,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 00:56:41','','0000-00-00 00:00:00'),(1845,0,0,1036,84,1341,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 32 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O: PAIN IN ANUS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -NO BLEEDING PR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -NO FEVER/VOMITING</P>\r\n\r\n<P>O/E: ABSCESS AT 6 O&#39;CLOCK POSITION</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 8-9 DAYS FOR THAT PRIMARY CONSULTED AT OPD BASE AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-94/MIN, BP-100/62MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nINCISION &AMP; DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 23/10/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 00:56:41','','0000-00-00 00:00:00'),(1846,0,0,1036,84,1341,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX: INCISION &AMP; DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 23/10/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 00:56:41','','0000-00-00 00:00:00'),(1847,0,0,1036,84,1341,0,0,NULL,'','OTNOTE','','','<p>-abscess at 5-6 o&#39;clock position</p>\r\n\r\n<p>-internal opening at 6 o&#39;clock position near anal verge</p>\r\n\r\n<p>-tight internal sphincter</p>\r\n\r\n<p>-abscess cavity opened &amp; cleaned</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-wound kept open</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 00:56:41','','0000-00-00 00:00:00'),(1848,0,0,1036,84,1341,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 00:56:41','','0000-00-00 00:00:00'),(1849,0,0,1036,84,1341,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 00:56:41','','0000-00-00 00:00:00'),(1850,0,0,1036,84,1341,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METRO</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>TAB ZENFLOX-OZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>TAB ZERODOL-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp;</P>\r\n\r\n<P>LOX 2% JELLY&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>METROGYL-P OINTMENT&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 00:56:41','','0000-00-00 00:00:00'),(1851,0,0,1036,84,1341,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZENFLOX-OZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 0--0--10ML&nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>LOX 2% JELLY&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR LOCAL APPLICATION&nbsp; &nbsp;BEFORE DEFECATION&nbsp; &nbsp;(1)</P>\r\n\r\n<P>METROGYL-P OINTMENT FOR LOCAL APPLICATION&nbsp; &nbsp;AFTER DEFECATION&nbsp; (1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 00:56:41','','0000-00-00 00:00:00'),(1852,0,0,1151,85,1362,0,0,NULL,'','DISCDIAG','','','<P><STRONG>(?) SUBACUTE SMALL BOWEL OBSTRUCTION</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 01:04:34','mo','2025-10-25 10:37:29'),(1853,0,0,1151,85,1362,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-24 01:04:34','mo','2025-10-25 10:37:29'),(1854,0,0,1151,85,1362,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 39 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O: OPERATED FOR NASAL SEPTUM BEFORE 10 YR<BR />\r\nC/O: ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-VOMITING (6-7 EPISODE/DAY)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-NO FEVER</P>\r\n\r\n<P>&nbsp;ALL ABOVE MENTINED C/O PRESENTED SINCE 2-3 DAYS FOR THAT PRIMARY CONSULTED AT ER AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>NCCT SCAN OF WHOLE ABDOMEN DONE ON 23/10/2025 WHICH S/O: ACUTE SMALL BOWEL OBSTRUCTION ?&nbsp; DUE TO ADHESION,?DUE TO INFLAMMATORY STRICTURE AT MID ILEUM LEVEL</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-90/MIN, BP-120/78MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED BLOOD INVESTIGATION DONE AND TREATMENT STARTED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>REFERENCE OF&nbsp;DR.PRATAPSINH DODIYA(GENERAL SURGEON ) AND FOLLOW HIS ALL ADVICE.</P>\r\n\r\n<P>X-RAY STANDING ABDOMEN DONE ON 24/10/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 01:04:34','mo','2025-10-25 10:37:29'),(1855,0,0,1151,85,1362,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>LIQUID DIET FOR 2 DAYS AND THEN SOFT DIET.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 01:04:34','mo','2025-10-25 10:37:29'),(1856,0,0,1151,85,1362,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>TAB RIFAGUT</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 01:04:34','mo','2025-10-25 10:37:29'),(1857,0,0,452,38,489,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>DAILY FOLEY&#39;S CARE</P>\r\n\r\n<P>RT FEEDING 200ML/2ND HOURLY&nbsp;</P>\r\n\r\n<P>PHYSIOTHERAPY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 01:09:21','mo','2025-10-25 21:21:49'),(1858,0,0,1152,86,1363,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE GASTROENTERITIS</STRONG></P>\r\n\r\n<P><STRONG>SEPSIS</STRONG></P>\r\n\r\n<P><STRONG>ACUTE KIDNEY INJURY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 01:23:22','mo','2025-10-29 18:43:22'),(1859,0,0,1152,86,1363,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O:HEMORROIDECTOMY BFORE 20 YEARS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 01:23:22','mo','2025-10-29 18:43:22'),(1860,0,0,1152,86,1363,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 68 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II<BR />\r\nC/O: FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-DIARRHOEA (4-5 TIME/DAY)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-VOMITING (2-3 EPISODE/DAY)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-ABDOMINAL PAIN</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 3-4 DAYS FOR THAT PRIMARY CONSULTED AT ER AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-104.9 &#39;F, PR-142/MIN, BP-120/74MMHG, SPO2-96% ON RA, RR-26/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>STOOL R/M DONE ON 24/10/2025 WHICH S/O: BACTERIA - DETECTED</P>\r\n\r\n<P>TYPHI DOT DONE ON 25/10/2025 WHICH S/O; NEGATIVE</P>\r\n\r\n<P>USG ABDOMEN WITH PELVIS DONE ON 25/10/2025 REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>PATIENT DEVELOPED C/O BREATHLESSNESS SO CHEST X-RAY DONE ON 26/10/2025.</P>\r\n\r\n<P>2D ECHO DONE ON 28/10/25 ; LVEF:60%</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>INJ VIEW OF LOW HB (7.3GM/DL) 1 UNIT LR RCC TRANSFUSED ON 29/10/25.&nbsp;</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 01:23:22','mo','2025-10-29 18:43:22'),(1861,0,0,1152,86,1363,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS</P>\r\n\r\n<P>TAKE ANTI DIABETIC DIET</P>\r\n\r\n<P>RBS MONITORING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 01:23:22','mo','2025-10-29 18:43:22'),(1862,0,0,1152,86,1363,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ CEFCON</P>\r\n\r\n<P>INJ GUFIMER</P>\r\n\r\n<P>INJ METRO</P>\r\n\r\n<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>INJ VOSIMOL</P>\r\n\r\n<P>CAP ENUFF</P>\r\n\r\n<P>CAP ROTOGUT</P>\r\n\r\n<P>INJ VITNEURIN</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>ALLEX LGENGES</P>\r\n\r\n<P>TAB LANOL ER</P>\r\n\r\n<P>INJ H ACTRAPID</P>\r\n\r\n<P>INJ.LASIX</P>\r\n\r\n<P>INSULIN EGLUCONT MIX</P>\r\n\r\n<P>TAB SITAPRIDE D</P>\r\n\r\n<P>TAB GAMER XT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 01:23:22','mo','2025-10-29 18:43:22'),(1863,0,0,1163,1122,1375,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 10:38:07','','0000-00-00 00:00:00'),(1864,0,0,1157,1117,1368,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ---heaviness of head&thinsp;</p>\n\n<p>mild sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 10:48:53','','0000-00-00 00:00:00'),(1865,0,0,1159,1118,1371,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 10:59:13','','0000-00-00 00:00:00'),(1866,0,0,1160,1119,1372,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 11:04:24','','0000-00-00 00:00:00'),(1867,0,0,1161,1120,1373,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 11:13:22','','0000-00-00 00:00:00'),(1868,0,0,1162,1121,1374,0,0,NULL,'','CC','ZZZ','Remark','URTI | 4 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-24 11:17:54','','0000-00-00 00:00:00'),(1869,0,0,1162,1121,1374,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-24 11:18:00','','0000-00-00 00:00:00'),(1870,0,0,1164,1123,1376,0,0,NULL,'','CC','ZZZ','Remark','URTI | 4 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-24 11:18:47','','0000-00-00 00:00:00'),(1871,0,0,1167,1127,1381,0,0,NULL,'','CC','ZZZ','Remark','DOE | 4 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-24 11:24:01','','0000-00-00 00:00:00'),(1872,0,0,1167,1127,1381,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-24 11:24:05','','0000-00-00 00:00:00'),(1873,0,0,1156,1116,1367,0,0,NULL,'','CC','ZZZ','Remark','DOE | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-24 11:25:23','','0000-00-00 00:00:00'),(1874,0,0,1156,1116,1367,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-24 11:25:29','','0000-00-00 00:00:00'),(1875,0,0,1168,1128,1382,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--medicine taken irregualraly</p>\n\n<p>recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 11:54:22','','0000-00-00 00:00:00'),(1876,0,0,1172,1132,1387,0,0,NULL,'','DIAG','ZZZ','Remark','SEBASCIOUS CYST?','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 11:56:03','','0000-00-00 00:00:00'),(1877,0,0,1169,1129,1383,0,0,NULL,'','HIST','ZZZ','Remark','<p>left ear blockage feeling with tinnitus&thinsp;</p>\n\n<p>h/o---blast of fire cracker inside ear followed by complaint</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 11:59:52','','0000-00-00 00:00:00'),(1878,0,0,1169,1129,1383,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Ltm---traumatic perforation with ts patches</p>\n\n<p>RTM---i/n</p>\n\n<p>Pta---left moderate mix deafness(o)</p>\n\n<p>OAE --left poor corelation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 12:00:44','darshan','2025-10-24 12:45:31'),(1879,0,0,1165,1124,1377,0,0,NULL,'','CC','ZZZ','Remark','URTI | 15 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-24 12:07:58','','0000-00-00 00:00:00'),(1880,0,0,1165,1124,1377,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-24 12:08:03','','0000-00-00 00:00:00'),(1881,0,0,356,340,1384,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 12:08:07','','0000-00-00 00:00:00'),(1882,0,0,356,340,1384,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 12:08:49','','0000-00-00 00:00:00'),(1885,0,0,356,340,1384,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-24 12:09:03','','0000-00-00 00:00:00'),(1886,0,0,1170,1130,1385,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 12:17:16','','0000-00-00 00:00:00'),(1887,0,0,1170,1130,1385,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling with senes of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>frequent headache since last 1 yrs</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 12:17:58','','0000-00-00 00:00:00'),(1888,0,0,1170,1130,1385,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nasd</p>\n\n<p>hit-nad</p>\n\n<p>CT brain--nad</p>\n\n<p>pta---bialterl high freq severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>Vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 12:18:32','darshan','2025-10-24 13:03:53'),(1889,0,0,1170,1130,1385,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 12:18:37','','0000-00-00 00:00:00'),(1890,0,0,1175,1135,1394,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of giddiness with sense of imbalance&thinsp;</p>\n\n<p>nasuea&thinsp; +</p>\n\n<p>no associated other cns symtpmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 12:25:41','darshan','2025-10-24 12:28:23'),(1891,0,0,1153,1113,1364,0,0,NULL,'','CC','ZZZ','Remark','FEVER | 2 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-24 12:27:33','','0000-00-00 00:00:00'),(1892,0,0,1153,1113,1364,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-24 12:27:36','','0000-00-00 00:00:00'),(1893,0,0,1175,1135,1394,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 12:27:47','','0000-00-00 00:00:00'),(1894,0,0,1175,1135,1394,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>Neurologist opinion taken</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---nad</p>\n\n<p>vng---right acute partial vestibular deficit</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 12:28:43','darshan','2025-10-24 13:24:23'),(1895,0,0,1174,1134,1393,0,0,NULL,'','CC','ZZZ','Remark','LT FACIAL, EXTRIMITIES WEAKNESS | 15 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-24 12:35:10','','0000-00-00 00:00:00'),(1896,0,0,1174,1134,1393,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-24 12:35:21','','0000-00-00 00:00:00'),(1897,0,0,1176,1136,1395,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 12:35:55','','0000-00-00 00:00:00'),(1898,0,0,1176,1136,1395,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 12:36:34','darshan','2025-10-24 13:46:45'),(1899,0,0,1176,1136,1395,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nysstagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>iht--nad</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--left hz canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 12:36:53','darshan','2025-10-24 13:47:04'),(1901,0,0,1177,1137,1396,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---vertigo persist</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 12:42:19','','0000-00-00 00:00:00'),(1902,0,0,1169,1129,1383,0,0,NULL,'','PLAN','ZZZ','Remark','15','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 12:45:57','','0000-00-00 00:00:00'),(1904,0,0,446,424,1401,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of vertigo with sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 13:28:21','','0000-00-00 00:00:00'),(1905,0,0,446,424,1401,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nads</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain ---no SOL or CVA</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 13:28:40','','0000-00-00 00:00:00'),(1907,0,0,446,424,1401,0,0,NULL,'','MADVICE','ZZZ','Remark','NEUROLOGIST OPINION ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-24 13:30:44','','0000-00-00 00:00:00'),(1909,0,0,1175,1135,1394,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-24 13:45:40','','0000-00-00 00:00:00'),(1910,0,0,1176,1136,1395,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 13:47:37','','0000-00-00 00:00:00'),(1912,0,0,1181,1141,1406,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 17:19:59','','0000-00-00 00:00:00'),(1913,0,0,1181,1141,1406,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 17:20:04','','0000-00-00 00:00:00'),(1914,0,0,1181,1141,1406,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 17:20:32','','0000-00-00 00:00:00'),(1916,0,0,1181,1141,1406,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-24 17:21:47','','0000-00-00 00:00:00'),(1918,0,0,1176,1136,1395,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-24 17:24:48','','0000-00-00 00:00:00'),(1919,0,0,1183,1143,1408,0,0,NULL,'','HIST','ZZZ','Remark','<p>folloiw up case--deafness +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 17:27:29','darshan','2025-10-24 17:28:04'),(1920,0,0,1184,1144,1409,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---vibration in head</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 17:32:31','','0000-00-00 00:00:00'),(1921,0,0,1183,1143,1408,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>BTM---i/n<br />\npta---bilatearal moderate sn deafness</p>\n\n<p>OAE---Bialterla poor corelation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 17:57:42','','0000-00-00 00:00:00'),(1922,0,0,1186,1146,1415,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR DEAFNESS---6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 18:01:45','','0000-00-00 00:00:00'),(1923,0,0,1186,1146,1415,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 18:01:48','','0000-00-00 00:00:00'),(1924,0,0,1186,1146,1415,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---i/d</p>\n\n<p>pta---bilateral&thinsp;modearte to severe sn deafness</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 18:01:57','darshan','2025-10-24 18:48:09'),(1925,0,0,1187,1147,1416,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---heavienss of head&thinsp;</p>\n\n<p>sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 18:14:07','darshan','2025-10-24 19:13:18'),(1926,0,0,1154,1114,1365,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-24 18:18:08','','0000-00-00 00:00:00'),(1927,0,0,1173,1133,1392,0,0,NULL,'','DIAG','ZZZ','Remark','PHIMOSIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 18:32:24','','0000-00-00 00:00:00'),(1928,0,0,1173,1133,1392,0,0,NULL,'','DIAG','ZZZ','Remark','RT EPIDIDYMO ORCHITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 18:32:32','','0000-00-00 00:00:00'),(1929,0,0,378,362,1423,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 18:33:57','','0000-00-00 00:00:00'),(1930,0,0,1185,1145,1414,0,0,NULL,'','DIAG','ZZZ','Remark','CARBUNCLE ON NECK','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 18:35:17','','0000-00-00 00:00:00'),(1931,0,0,1185,1145,1414,0,0,NULL,'','DIAG','ZZZ','Remark','DM','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 18:35:19','','0000-00-00 00:00:00'),(1932,0,0,1185,1145,1414,0,0,NULL,'','DIAG','ZZZ','Remark','HTN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 18:35:22','','0000-00-00 00:00:00'),(1933,0,0,1188,1148,1417,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 18:40:41','','0000-00-00 00:00:00'),(1934,0,0,1188,1148,1417,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden nset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 18:40:46','darshan','2025-10-24 18:44:01'),(1935,0,0,1188,1148,1417,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix&thinsp; hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 18:44:16','','0000-00-00 00:00:00'),(1936,0,0,1188,1148,1417,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 18:44:23','','0000-00-00 00:00:00'),(1939,0,0,1186,1146,1415,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS HAT','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-24 18:55:59','','0000-00-00 00:00:00'),(1940,0,0,1196,1157,1430,0,0,NULL,'','CC','ZZZ','Remark','PRE OP||','','',0,'0000-00-00 00:00:00','drjayant','2025-10-24 19:01:43','','0000-00-00 00:00:00'),(1941,0,0,1128,1089,1420,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----YRS OFF AND ON ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 19:05:54','','0000-00-00 00:00:00'),(1942,0,0,1128,1089,1420,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling remains for few hrs&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 19:06:19','','0000-00-00 00:00:00'),(1943,0,0,1128,1089,1420,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilomtry--reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 19:06:31','darshan','2025-10-24 19:39:53'),(1944,0,0,1128,1089,1420,0,0,NULL,'','DIAG','ZZZ','Remark','HYDRPS VS OTHER','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 19:06:34','','0000-00-00 00:00:00'),(1946,0,0,1188,1148,1417,0,0,NULL,'','MADVICE','ZZZ','Remark','PT WILL CONME LATER ON','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-24 19:07:01','','0000-00-00 00:00:00'),(1947,0,0,1194,1154,1427,0,0,NULL,'','CC','ZZZ','Remark','DIFFICULTY IN SWALLOING ---FEW DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 19:07:36','','0000-00-00 00:00:00'),(1948,0,0,1194,1154,1427,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested</p>\n\n<p>neck--nad</p>\n\n<p>nose--blood clots + with congestion</p>\n\n<p>Flexible larying scopy--fungal patches on supraglottis larynx- post cricoid and soft palate</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 19:09:12','','0000-00-00 00:00:00'),(1949,0,0,1187,1147,1416,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 19:13:34','','0000-00-00 00:00:00'),(1951,0,0,1187,1147,1416,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-24 19:14:29','','0000-00-00 00:00:00'),(1952,0,0,1197,1158,1431,0,0,NULL,'','DIAG','ZZZ','Remark','RT SIDE CHEST PAIN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 19:18:34','','0000-00-00 00:00:00'),(1953,0,0,1197,1158,1431,0,0,NULL,'','DIAG','ZZZ','Remark','H/O BLUNT INJURY PN CHEST','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 19:18:45','','0000-00-00 00:00:00'),(1954,0,0,1193,1153,1426,0,0,NULL,'','HIST','ZZZ','Remark','<p>fofllow up case--medicine skipped&thinsp;</p>\n\n<p>recurence of vertiog</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-24 19:20:40','','0000-00-00 00:00:00'),(1955,0,0,1180,88,1405,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LEFT LOWER LIMB ACUTE THROMBOEMBOLISM WITH GANGRENOUS CHANGES</STRONG></P>\r\n\r\n<P><STRONG>WITH SEPSIS</STRONG></P>\r\n\r\n<P><STRONG>WITH ARF</STRONG></P>\r\n\r\n<P><STRONG>WITH HYPOTENSION</STRONG></P>\r\n\r\n<P><STRONG>H/O: LEFT ABOVE KNEE AMPUTATION</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, CA ANORECTUM</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 19:28:07','mo','2025-10-25 13:09:21'),(1956,0,0,1180,88,1405,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-24 19:28:07','mo','2025-10-25 13:09:21'),(1957,0,0,1180,88,1405,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 74 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, CA&nbsp; ANUS RECTUM<BR />\r\nH/O: LEFT TRANS FEMORAL EMBOLECTOMY WITH ABOVE KNEE AMPUTATION ON 30-05-2025<BR />\r\nC/O: LEFT LOWER LIMB PAIN &AMP; COLDNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SEVERE WATERY DIARRHOEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BURNING MICTURITION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 2-3 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>BLOOD IX:- 24-10-2025</P>\r\n\r\n<P>2D ECHO:-02-07-2025; LVEF: 55%</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-130/MIN, BP-90/60MMHG, SPO2-98% ON RA, RR-26/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>LEFT LOWER LIMB ARTERIAL DOPPLER DONE ON 24/10/2025 ; REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>REFERENCE OF DR DIVYESH RATHOD(CARDIO VASCULAR THORACIC SURGEON)&nbsp;DONE AND ADVICE FOR OPERATIVE MANAGEMENT, IF NOT EMERGENCY MANAGEMENT THEN START LMWX.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT GENERAL CONDITION &AMP; PROGNOSIS EXPLAINED TO RELATIVE, ADVICE FOR HOSPITALIZATION AND LEFT LOWER LIMB AMPUTATION BUT THEY REFUSED SO PATIENT BEING DISCHARGE AGAINST MEDICAL ADVICE (DAMA).</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 19:28:07','mo','2025-10-25 13:09:21'),(1958,0,0,1199,1160,1433,0,0,NULL,'','DIAG','ZZZ','Remark','PILONIDAL SINUS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 19:38:37','','0000-00-00 00:00:00'),(1959,0,0,1201,1162,1436,0,0,NULL,'','DIAG','ZZZ','Remark','SCALP CLW','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 20:44:50','','0000-00-00 00:00:00'),(1960,0,0,1192,1152,1424,0,0,NULL,'','DIAG','ZZZ','Remark','SWELLING OM BACK','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 20:45:20','','0000-00-00 00:00:00'),(1961,0,0,1189,1149,1418,0,0,NULL,'','DIAG','ZZZ','Remark','RT INGUINAL HERNIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 20:45:45','','0000-00-00 00:00:00'),(1962,0,0,1189,1149,1418,0,0,NULL,'','DIAG','ZZZ','Remark','SUPRAUMBILICAL HERNIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 20:45:53','','0000-00-00 00:00:00'),(1963,0,0,1166,1126,1380,0,0,NULL,'','DIAG','ZZZ','Remark','LT FOOT CELLULITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 20:46:22','','0000-00-00 00:00:00'),(1964,0,0,1166,1126,1380,0,0,NULL,'','DIAG','ZZZ','Remark','H/O CORN EXCISION','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 20:46:36','','0000-00-00 00:00:00'),(1965,0,0,1179,1139,1400,0,0,NULL,'','DIAG','ZZZ','Remark','UTI','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 20:47:44','','0000-00-00 00:00:00'),(1966,0,0,1179,1139,1400,0,0,NULL,'','DIAG','ZZZ','Remark','SEPSIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 20:47:48','','0000-00-00 00:00:00'),(1967,0,0,1180,1140,1402,0,0,NULL,'','DIAG','ZZZ','Remark','ARF','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 20:48:24','','0000-00-00 00:00:00'),(1968,0,0,1180,1140,1402,0,0,NULL,'','DIAG','ZZZ','Remark','FOOT GANGRENE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-24 20:48:38','','0000-00-00 00:00:00'),(1969,0,0,1180,88,1405,0,0,NULL,'','CONDONADDMISSION','','','<P>COLOSTOMY BAG IN SITU</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 23:17:36','mo','2025-10-25 13:09:21'),(1970,0,0,1180,88,1405,0,0,NULL,'','DISCCOND','','','<P>HYPOTENSION</P>\r\n\r\n<P>INADEQUATE URINE OUTPUT</P>\r\n\r\n<P>COLOSTOMY BAG IN SITU</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 23:17:36','mo','2025-10-25 13:09:21'),(1971,0,0,1180,88,1405,0,0,NULL,'','ADVICE','','','<P>HOSPITALISATION</P>\r\n\r\n<P>EMERGENCY LEFT LOWER LIMB AMPUTATION</P>\r\n\r\n<P>CONTINUE OBSERVATION</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 23:17:36','mo','2025-10-25 13:09:21'),(1972,0,0,1180,88,1405,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD 1.5 GM/DILUTED&nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp;BD</P>\r\n\r\n<P>INJ METROGYL&nbsp; 100ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; TDS</P>\r\n\r\n<P>INJ PANTO&nbsp; &nbsp; &nbsp; 40MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; BD</P>\r\n\r\n<P>INJ EMSET&nbsp; &nbsp; &nbsp; &nbsp;1A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; TDS</P>\r\n\r\n<P>INJ NAHCO3&nbsp; &nbsp; &nbsp; 25ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp;TDS</P>\r\n\r\n<P>CAP ENUFF&nbsp; &nbsp; &nbsp; &nbsp;100MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; 1--1--1</P>\r\n\r\n<P>TAB RIFAGUT&nbsp; &nbsp; 200MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; 1--0--1</P>\r\n\r\n<P>TAB ECOSPRIN&nbsp; 75 MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>INJ CLEXANE&nbsp; 0.6ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;S/C&nbsp; &nbsp; &nbsp; BD&nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp; DAY 2ND&nbsp;</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-24 23:17:36','mo','2025-10-25 13:09:21'),(1973,0,0,1034,89,1434,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE FEBRILE ILLNESS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 00:19:41','mo','2025-10-26 12:14:00'),(1974,0,0,1034,89,1434,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-25 00:19:41','mo','2025-10-26 12:14:00'),(1975,0,0,1034,89,1434,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 14 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nC/O: FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER WITH CHILL WITH RIGOR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; WATERY DIARRHOEA SINCE 2 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; EVENING RISE TEMPARATURE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ANOREXIA</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 7-8 DAYS FOR THAT PT PRIMARY CONSULTED OPD BASED AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>MP CARD, DENGUE CARD TEST (24-10-2025) WHICH WERE NEGATIVE</P>\r\n\r\n<P>MP CARD, TYPHI DOT, WIDAL TUBE TEST (17-10-2025) WHICH WERE NEGATIVE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-91/MIN, BP-94/60MMHG, SPO2-98% ON RA, RR-16/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>S.BRUCELLA IGM DONE ON 24/10/2025 WHICH WAS NEGATIVE</P>\r\n\r\n<P>BLOOD CS SENT ON 24/10/2025 WHICH S/O: NO GROWTH IN INTRIM REPORT</P>\r\n\r\n<P>S. BRUCELLA IGG,IGM BY ELIZA SENT ON 24/10/2025 WHICH S/O : NEGATIVE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 00:19:41','mo','2025-10-26 12:14:00'),(1976,0,0,1034,89,1434,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n\r\n<P>NOTE: FINAL REPORT OF BLOOD C/S AWAITED&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 00:19:41','mo','2025-10-26 12:14:00'),(1977,0,0,1034,89,1434,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>TAB AZEE</P>\r\n\r\n<P>TAB LANOL ER</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 00:19:41','mo','2025-10-26 12:14:00'),(1978,0,0,1174,90,1437,0,0,NULL,'','DISCDIAG','','','<P><STRONG>- ACUTE RIGHT ICA TERRITORY WATERSHED INFARCTS</STRONG></P>\r\n\r\n<P><STRONG>- CHRONIC ALCOHOLISM</STRONG></P>\r\n\r\n<P><STRONG>-&nbsp;K/C/O: HTN&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 00:28:50','mo','2025-10-27 18:51:48'),(1979,0,0,1174,90,1437,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 40 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN<BR />\r\nC/O: LEFT UPPER LIMP WEAKNESS &AMP; NUMBNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; LEFT SIDE FACIAL WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SLURRED SPEECH</P>\r\n\r\n<P>ALL ABOVE METNIONED C/O PRESENTED SINCE 10 DAYS FOR THAT PT PRIMARY CONSULTED AT AIIMS HOSPITAL RAJKOT AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>MRI BRAIN, MR ANGIOGRAPHY OF BRAIN (24-10-2025) WHICH S/O:ACUTE EXTERNAL WATERSHED TERRITORY INFARCTS IN RIGHT CEREBRAL HEMISPHERE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-74/MIN, BP-140/80MMHG, SPO2-96% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C , LEFT UPPER LIMB WEAKNESS + FACIAL WEAKNESS +, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.&nbsp;</P>\r\n\r\n<P>REFERENCE OF DR KAUMIL KOTHARI(NEUROPHYSICIAN DONE AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>B/L CAROTID AND VERTEBRAL DOPPLER STUDY DONE ON 25/10/2025 REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>ANA BY IF SENT ON 25/10/2025 WHICH S/O; -VE</P>\r\n\r\n<P>TSH DONE ON 25/10/2025 WHICH S/O: 1.70&nbsp; UIU/ML&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 00:28:50','mo','2025-10-27 18:51:48'),(1980,0,0,1174,90,1437,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ RABICROSS</P>\r\n\r\n<P>INJ CLEXANE</P>\r\n\r\n<P>INJ LEVIPIL</P>\r\n\r\n<P>TAB ECOSPRIN</P>\r\n\r\n<P>TAB CLAVIX</P>\r\n\r\n<P>TAB ECOTOR</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ VITNEURIN</P>\r\n\r\n<P>TAB LIBRIUM</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 00:28:50','mo','2025-10-27 18:51:48'),(1981,0,0,1179,91,1438,0,0,NULL,'','DISCDIAG','','','<P><STRONG>SEPTIC SHOCK</STRONG></P>\r\n\r\n<P><STRONG>ATN INDUCED AKI WITH ANURIA</STRONG></P>\r\n\r\n<P><STRONG>IN A K/C/O HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 02:11:39','mo','2025-10-29 12:36:47'),(1982,0,0,1179,91,1438,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>TURP BEFORE 5 YEARS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 02:11:39','mo','2025-10-29 12:36:47'),(1983,0,0,1179,91,1438,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 79 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN<BR />\r\nC/O:FEVER WITH CHILL</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;SEVERE ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;SEVERE BACKPAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;1 EPISODE OF VOMITING YESTERDAY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DECREASE URINE OUTPUT&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;BURNING MICTURITION</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 3-4 DAYS SO&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-100.4&#39;F, PR-120/MIN, BP-80/50MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24/10/2025</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>REFERENCE OF DR KRUTARTH KANJIYA (INFECTIOUS DISEASE SPECIALIST) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>URINE R/M DONE&nbsp; WHICH S/O: 80-100 PUS CELL.LEUKOCYTE COUNT</P>\r\n\r\n<P>IN VIEW OF PERSISTENT FEVER BLOOD C/S SENT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>25/10/2025</P>\r\n\r\n<P>IN VIEW OF NILL URINE OUTPUT AND HIGH CREATININE REFERENCE OF DR.MAYUR KAPURIYA (NEPHROLOGIST) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>FOLEY&#39;S CATHETER INSERTION DONE WITH ALL ASEPTIC PRECAUTIONS.</P>\r\n\r\n<P>FLUID THERAPY GIVEN FOR HYPOTENSION AND ENURIA BUT NO RESPONSE OBSERVED.</P>\r\n\r\n<P>SO,PATIENT&#39;S GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIES AND PATIENT SHIFTED TO ICU&nbsp;FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>MD MEDICINE AND INTENSIVIST DR ARCHIT RATHOD&#39;S REFERANCE DONE AND ALL HIS ADVICE FOLLOWED.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION AND ANURIA INOTROPIC, INJ.NORAD AND INJ.DYTOR DRIP STARTED.</P>\r\n\r\n<P>OXYGEN SUPPORT STARTED IN VIEW OF HYPOXIA.</P>\r\n\r\n<P>UROLOGIST DR.PRATIK SHAH REFERANCE DONE ADVISE CONSERVATIVE MX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26/10/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED&nbsp; IN ICU.</P>\r\n\r\n<P>CHEST X-RAY DONE</P>\r\n\r\n<P>TLC LINE INSERTED BY DR.MAYUR KAPURIYA WITH ALL ASEPTIC PRECAUTIONS.</P>\r\n\r\n<P>HEMODIALYSIS (SLED) DONE OVER 5 HOURS 2 LITER NEGATIVE.</P>\r\n\r\n<P>INJ.NORAD SUPPORT CONTINUES AND OXYGEN SUPPORT CONTINUES.</P>\r\n\r\n<P>BLOOD C/S S/O GROWTH OF E.COLI SO TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>2D ECHO DONE WHICH S/OFAIR LV SYSTOLIC FUNCTION,MILD PAH, LVEF-55%</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27/10/2025,</P>\r\n\r\n<P>PATIENT DEVELOPED DELIRIUM SO TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>PATIENT URINE OUTPUT NILL</P>\r\n\r\n<P>MD MEDICINE AND INTENSIVIST DR ARCHIT RATHOD&#39;S REVIEW&nbsp;DONE AND ALL HIS ADVICE FOLLOWED.</P>\r\n\r\n<P>FURTHER FEW HOURS WAS UNEVENTFULL IN ICU SO PATIENT SHIFTED TO WARD WITH 2 LIT O2 SUPPORT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28/10/2025</P>\r\n\r\n<P>USG ABDOMEN + KUB DONE WHICH S/O:</P>\r\n\r\n<P>-MILD ASCITES</P>\r\n\r\n<P>-MILD TO MODERATE BILATERAL PLEURAL EFFUSION</P>\r\n\r\n<P>-BOTH KIDNEYS SHOWS THICKENED AND HYPOECHOIC CORTEX</P>\r\n\r\n<P>-REVIEW&nbsp;OF DR MAYUR KAPURIYA DONE AND ADVICE FOLLOWED.</P>\r\n\r\n<P>-HD (SLED) DONE OVER 5 HOURS 3 LITER&nbsp;NEGATIVE</P>\r\n\r\n<P>-REFERENCE OF NEPHROLOGIST DR SANJAY PANDYA DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>29/10/2025</P>\r\n\r\n<P>-PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>-URINE OUTPULL 30-50 ML/ 24 HOURLY</P>\r\n\r\n<P>-PLANNED FOR HD</P>\r\n\r\n<P>-PATIENT&#39;S GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVES BUT THEY WANT DISCHARGE AGIANTS MEDICAL ADVICE.</P>\r\n\r\n<P>-SO NOW PATIENT BEING DAMA.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 02:11:39','mo','2025-10-29 12:36:47'),(1984,0,0,1179,91,1438,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MEROMAC (1GM)&nbsp; &nbsp; IV&nbsp; &nbsp; BD</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ TRAMAZAC</P>\r\n\r\n<P>INJ NAHCO3</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ.NORAD DRIP</P>\r\n\r\n<P>INJ. DYTOR DRIP</P>\r\n\r\n<P>INJ AVIL</P>\r\n\r\n<P>TAB SOBIOSIS FORTE</P>\r\n\r\n<P>TAB LASIX</P>\r\n\r\n<P>GLUCOSE POWDER</P>\r\n\r\n<P>INJ MGSO4</P>\r\n\r\n<P>TAB CLONOTRIL</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>TAB ZYTANIX (5)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 02:11:39','mo','2025-10-29 12:36:47'),(1985,0,0,1158,87,1369,0,0,NULL,'','DISCDIAG','','','<P><STRONG>UMBILICAL HERNIA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 02:21:06','mo','2025-10-25 22:21:45'),(1986,0,0,1158,87,1369,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-25 02:21:06','mo','2025-10-25 22:21:45'),(1987,0,0,1158,87,1369,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 40 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:UMBILICAL SWELLING (GRADUALLY INCREASE IN SIZE)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO PAIN / VOMITING AT PRESENT&nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;RECENT H/O OF STRANGULATION AT HERNIA SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO CONSTIPATION</P>\r\n\r\n<P>O/E: UMBILICAL HERNIA+</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; USG : UMBILICAL HERNIA&nbsp; +</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 6 MONTH SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-80/MIN, BP-120/80MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ECG DONE<BR />\r\nLAPAROSCOPIC UMBILICAL HERNIOPLASTY (E-TEP-RS) DONE BY DR PRATAPSINH DODIYA ON 24/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO ICU.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFULL SO PATIENT SHIFTED TO WARD</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 02:21:06','mo','2025-10-25 22:21:45'),(1988,0,0,1158,87,1369,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ DYNAPAR</P>\r\n\r\n<P>ALLEX LOGENGES</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 02:21:06','mo','2025-10-25 22:21:45'),(1989,0,0,1158,87,1369,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>LAPAROSCOPIC UMBILICAL HERNIOPLASTY (E-TEP-RS) DONE BY DR PRATAPSINH DODIYA ON 24/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 02:22:26','mo','2025-10-25 22:21:45'),(1990,0,0,1151,85,1362,0,0,NULL,'','DISCCOND','','','<P>VITALLY STABLE&nbsp;</P>\r\n\r\n<P>NO VOMITING</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 10:36:19','mo','2025-10-25 10:37:29'),(1991,0,0,1151,85,1362,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.METRO-ER (600)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; .............(10)</P>\r\n\r\n<P>TAB.RIFAGUT (200)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD.............(10)</P>\r\n\r\n<P>CAP.SOMPRAZ-D&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp;BEFORE FOOD ...........(10)</P>\r\n\r\n<P>TAB.HYOCIMAX-S&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; AFTER FOOD ............(10)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 10:36:19','mo','2025-10-25 10:37:29'),(1992,0,0,1206,1167,1445,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 10:38:01','','0000-00-00 00:00:00'),(1993,0,0,1207,1168,1446,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---MANY MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 10:43:40','','0000-00-00 00:00:00'),(1994,0,0,1207,1168,1446,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache&thinsp; ---remanis for few hrs&thinsp;</p>\n\n<p>associated with nausea and vomiting&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 10:44:16','darshan','2025-10-25 12:32:10'),(1995,0,0,1207,1168,1446,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike---nad</p>\n\n<p>hit---nad</p>\n\n<p>vemp--left side reduced&thinsp;</p>\n\n<p>vng--central vareity of nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 10:44:31','darshan','2025-10-25 12:32:42'),(1996,0,0,1207,1168,1446,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 10:44:49','','0000-00-00 00:00:00'),(1997,0,0,1208,1169,1447,0,0,NULL,'','HIST','ZZZ','Remark','<p>epsodic vertigo --sudden onset of rotaotyr feeling ---initially episodic but presently continuous sense of imbalance</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n\n<p>left ear deafness +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 10:48:25','darshan','2025-10-25 10:57:28'),(1998,0,0,1208,1169,1447,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----5 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 10:55:51','','0000-00-00 00:00:00'),(1999,0,0,1208,1169,1447,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>HRCT temporal bone---nad</p>\n\n<p>pta---bialtelr moderate to severe sn deafness</p>\n\n<p>stabilometry---wnl</p>\n\n<p>CCG---ap displacement abnormal</p>\n\n<p>vng--central vareity of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 10:57:00','darshan','2025-10-25 12:55:22'),(2001,0,0,1209,1170,1448,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----no improvment&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 11:05:34','','0000-00-00 00:00:00'),(2002,0,0,1210,1171,1449,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurence of vertigo&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 11:11:28','','0000-00-00 00:00:00'),(2003,0,0,1210,1171,1449,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus--absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 11:11:40','','0000-00-00 00:00:00'),(2004,0,0,1210,1171,1449,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 11:12:12','','0000-00-00 00:00:00'),(2007,0,0,1210,1171,1449,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEVUER\nSOS  VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-25 11:13:48','','0000-00-00 00:00:00'),(2008,0,0,1214,1175,1453,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 11:26:38','','0000-00-00 00:00:00'),(2009,0,0,1214,1175,1453,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of sense of imbalance&thinsp;</p>\n\n<p>heaviness of head --occassional positional giddiness +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 11:27:31','','0000-00-00 00:00:00'),(2010,0,0,1214,1175,1453,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----bialtel high frqe severe sn deafness</p>\n\n<p>stabilotmry--reduced vestibular score</p>\n\n<p>vng----left post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 11:27:46','darshan','2025-10-25 13:05:55'),(2012,0,0,1213,1174,1452,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 11:29:56','darshan','2025-10-25 11:31:06'),(2013,0,0,1212,1173,1451,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---occassional headache with sense of imbalance</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 11:32:41','darshan','2025-10-25 11:34:45'),(2014,0,0,1212,1173,1451,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 11:34:47','','0000-00-00 00:00:00'),(2015,0,0,1217,1178,1456,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT SHOULDER PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-25 11:35:13','','0000-00-00 00:00:00'),(2016,0,0,1205,1166,1444,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT 4TH AND 5TH TOE FRACTURE','','',0,'0000-00-00 00:00:00','drsagar','2025-10-25 11:35:48','','0000-00-00 00:00:00'),(2017,0,0,1180,88,1405,0,0,NULL,'','TREATDISC_TI','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-25 11:42:28','mo','2025-10-25 13:09:21'),(2018,0,0,1216,1177,1455,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for long duration giddiness</p>\n\n<p>positonal giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 11:43:38','','0000-00-00 00:00:00'),(2019,0,0,1216,1177,1455,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 11:44:25','','0000-00-00 00:00:00'),(2021,0,0,1216,1177,1455,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAEANVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-25 11:44:56','','0000-00-00 00:00:00'),(2022,0,0,1222,1183,1461,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 11:49:33','','0000-00-00 00:00:00'),(2023,0,0,989,70,1147,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 11:50:08','mo','2025-10-25 12:04:57'),(2024,0,0,989,70,1147,0,0,NULL,'','TREATDISC_TI','','','<P>INJ VANCOMYCIN&nbsp; &nbsp;1GM/100ML NS&nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; 6AM--10PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR&nbsp; 5 DAYS ( 9&nbsp;INJ)</P>\r\n\r\n<P>INJ MEROPENUM&nbsp; &nbsp; 1GM/100ML NS&nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; 6AM--2PM--10PM&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS( 13 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB PANTODAC 40MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(10)</P>\r\n\r\n<P>TAB VITNEURIN - CZS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; 1--0--0&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......(10)</P>\r\n\r\n<P>TAB LANOL ER&nbsp; &nbsp;650MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; SOS&nbsp; &nbsp;FOR FEVER&nbsp; &nbsp; &nbsp; ( 5 TAB)</P>\r\n\r\n<P>SYP LOOSE&nbsp; &nbsp; &nbsp; &nbsp;30ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp;IF CONSTIPATION&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE :&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB GIMMY&nbsp; 1 MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; BEFORE FOOD</P>\r\n\r\n<P>TAB LINABITE&nbsp; 5 MG&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp;BEFORE FOOD</P>\r\n\r\n<P>TAB SILOTIME&nbsp; &nbsp;8MG&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp;AFTER FOOD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 11:50:08','mo','2025-10-25 12:04:57'),(2025,0,0,1226,1187,1465,0,0,NULL,'','CC','ZZZ','Remark','URTI | 3 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-25 11:50:55','','0000-00-00 00:00:00'),(2026,0,0,1226,1187,1465,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-25 11:50:57','','0000-00-00 00:00:00'),(2027,0,0,1218,1179,1457,0,0,NULL,'','HIST','ZZZ','Remark','<p>thraot pain and coughing&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 11:55:59','','0000-00-00 00:00:00'),(2028,0,0,1224,1185,1463,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 11:59:37','','0000-00-00 00:00:00'),(2029,0,0,1232,1193,1471,0,0,NULL,'','CC','ZZZ','Remark','PRE OP FOR LAP HYSTERECTOMY||','','',0,'0000-00-00 00:00:00','drjayant','2025-10-25 12:04:39','','0000-00-00 00:00:00'),(2030,0,0,1225,1186,1464,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 12:09:21','','0000-00-00 00:00:00'),(2031,0,0,1225,1186,1464,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 12:09:21','','0000-00-00 00:00:00'),(2032,0,0,1225,1186,1464,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo with headache&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 12:09:49','','0000-00-00 00:00:00'),(2033,0,0,1225,1186,1464,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nads</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain with venogram--transvers sinus thrombosis--previosuly<br />\nleft MRI --no thrombosis</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 12:10:53','','0000-00-00 00:00:00'),(2034,0,0,1225,1186,1464,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 12:11:22','','0000-00-00 00:00:00'),(2035,0,0,1227,1188,1466,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for tinnitus&thinsp;</p>\n\n<p>left side ear pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 12:13:56','','0000-00-00 00:00:00'),(2036,0,0,1230,1191,1469,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 12:25:01','','0000-00-00 00:00:00'),(2037,0,0,1230,1191,1469,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 12:25:01','','0000-00-00 00:00:00'),(2038,0,0,1230,1191,1469,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling on change of posture</p>\n\n<p>heaviness of head +</p>\n\n<p>noa ssocited other cns symptms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 12:26:23','','0000-00-00 00:00:00'),(2039,0,0,1230,1191,1469,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnet</p>\n\n<p>dix hallpike-nad</p>\n\n<p>ht-nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 12:26:33','darshan','2025-10-25 13:37:11'),(2042,0,0,1234,1195,1473,0,0,NULL,'','CC','ZZZ','Remark','URTI | 3 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-25 12:29:37','','0000-00-00 00:00:00'),(2043,0,0,1211,1172,1450,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT THIGH PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-25 12:34:44','','0000-00-00 00:00:00'),(2044,0,0,1228,1189,1467,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache&thinsp;without any&thinsp; cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 12:38:43','darshan','2025-10-25 14:01:41'),(2046,0,0,1228,1189,1467,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE --MANY YRS||','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 12:39:11','darshan','2025-10-25 13:31:07'),(2047,0,0,1228,1189,1467,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS +||','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 12:39:11','darshan','2025-10-25 13:31:07'),(2048,0,0,1228,1189,1467,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vng---central vareity of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 12:39:35','darshan','2025-10-25 14:02:09'),(2050,0,0,1231,1192,1470,0,0,NULL,'','HIST','ZZZ','Remark','<p>pt came for Routine ENT examination&thinsp;</p>\n\n<p>throat pain with irritation---10-15 days</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 12:42:31','','0000-00-00 00:00:00'),(2051,0,0,1231,1192,1470,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---mild congested and granular&thinsp;</p>\n\n<p>nose--mild congetion&thinsp;</p>\n\n<p>BTM---i/n</p>\n\n<p>Pta---bialtel hearing WNL</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 12:43:09','','0000-00-00 00:00:00'),(2052,0,0,1215,1176,1454,0,0,NULL,'','DIAG','ZZZ','Remark','PILONIDAL SINUS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-25 12:45:10','','0000-00-00 00:00:00'),(2053,0,0,1233,1194,1472,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 12:47:18','','0000-00-00 00:00:00'),(2054,0,0,982,81,1296,0,0,NULL,'','DISCCOND','','','<P>INTERMITTENT FEVER&nbsp;</P>\r\n\r\n<P>WEAKNESS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 12:53:52','mo','2025-10-25 13:40:54'),(2056,0,0,1218,1179,1457,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---mild congested</p>\n\n<p>neck--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 12:57:41','','0000-00-00 00:00:00'),(2057,0,0,1214,1175,1453,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 13:01:17','','0000-00-00 00:00:00'),(2060,0,0,1237,1198,1480,0,0,NULL,'','CC','ZZZ','Remark','LT CHEST PAIN||','','',0,'0000-00-00 00:00:00','drjayant','2025-10-25 13:12:35','','0000-00-00 00:00:00'),(2063,0,0,1208,1169,1447,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI  BRAIN 8TH NERVE PROTOCOL ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-25 13:15:38','','0000-00-00 00:00:00'),(2064,0,0,1235,1196,1475,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase----beter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 13:17:28','','0000-00-00 00:00:00'),(2066,0,0,1225,1186,1464,0,0,NULL,'','MADVICE','ZZZ','Remark','REST AS PER NEUROLOGIST ADVICE','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-25 13:19:25','','0000-00-00 00:00:00'),(2067,0,0,1214,1175,1453,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-25 13:22:50','','0000-00-00 00:00:00'),(2068,0,0,1229,1190,1468,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----recurrence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 13:30:29','darshan','2025-10-25 13:46:27'),(2069,0,0,229,216,1479,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n\n<p>postional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 13:32:52','','0000-00-00 00:00:00'),(2070,0,0,982,81,1296,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEPODEM XP&nbsp; &nbsp;(325)&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......(10)</P>\r\n\r\n<P>TAB AZEE (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; .... ..(1)</P>\r\n\r\n<P>TAB PANTODAC (40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; ........(5)</P>\r\n\r\n<P>CAP VSL #3&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; .......(4)</P>\r\n\r\n<P>TAB OMNACORTIL&nbsp; &nbsp;60MG&nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.....(14)&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:</P>\r\n\r\n<P>TAB ATORVA&nbsp; &nbsp;20MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>TAB LASINOPRIN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp;AFTER FOOD&nbsp;</P>\r\n\r\n<P>TAB ASPIRIN 80MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp;AFTER FOOD&nbsp;</P>\r\n\r\n<P>TAB METFORMIN 1000MG&nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp;BEFORE FOOD</P>\r\n\r\n<P>TAB GLIMIPRIDE 4MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 13:32:56','mo','2025-10-25 13:40:54'),(2071,0,0,229,216,1479,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 13:33:30','','0000-00-00 00:00:00'),(2073,0,0,229,216,1479,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MA ENV UER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-25 13:33:53','','0000-00-00 00:00:00'),(2074,0,0,1230,1191,1469,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 13:37:48','','0000-00-00 00:00:00'),(2076,0,0,1229,1190,1468,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 13:46:37','','0000-00-00 00:00:00'),(2077,0,0,1229,1190,1468,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 13:48:00','','0000-00-00 00:00:00'),(2079,0,0,1229,1190,1468,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT BD MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-25 13:48:18','','0000-00-00 00:00:00'),(2080,0,0,1238,1199,1481,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 13:56:02','','0000-00-00 00:00:00'),(2081,0,0,1238,1199,1481,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatoyr feeling on change of posture</p>\n\n<p>heaviness of head +</p>\n\n<p>no associted other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 13:56:30','','0000-00-00 00:00:00'),(2082,0,0,1238,1199,1481,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 13:56:52','','0000-00-00 00:00:00'),(2086,0,0,1238,1199,1481,0,0,NULL,'','MADVICE','ZZZ','Remark','VESTIBULAR IX --PT WILL COME LATER ON','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-25 14:04:41','','0000-00-00 00:00:00'),(2088,0,0,1230,1191,1469,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAEVNUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-25 14:04:56','','0000-00-00 00:00:00'),(2089,0,0,1241,1202,1484,0,0,NULL,'','CC','ZZZ','Remark','DIFFICULTY IN SWALLOWING---FEW WEEKS||','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 14:20:18','','0000-00-00 00:00:00'),(2090,0,0,1241,1202,1484,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 14:20:20','','0000-00-00 00:00:00'),(2091,0,0,1241,1202,1484,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---clear</p>\n\n<p>Idl--Bvc mobile</p>\n\n<p>severyly dry tongue and soft palat</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-25 14:21:36','','0000-00-00 00:00:00'),(2092,0,0,1174,90,1437,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-25 18:45:01','mo','2025-10-27 18:51:48'),(2093,0,0,452,38,489,0,0,NULL,'','DISCCOND','','','<P>RYLES TUBE IN SITU (DAY-15,NO-16)</P>\r\n\r\n<P>FOLEY&#39;S IN SITU(DAY-15,NO-14)</P>\r\n\r\n<P>E4V5M6</P>\r\n\r\n<P>RIGHT SIDED WEAKNESS +</P>\r\n\r\n<P>BEDRIDDEN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 18:55:56','mo','2025-10-25 21:21:49'),(2094,0,0,452,38,489,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZIFI-CV&nbsp; (200 )&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;R/T&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........(10)</P>\r\n\r\n<P>TAB PANTODAC (40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; R/T&nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ....... (10)</P>\r\n\r\n<P>TAB LEVIGRESS (500)&nbsp; &nbsp; &nbsp; &nbsp; R/T&nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(10)</P>\r\n\r\n<P>TAB STATEL (40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; R/T&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; .......(10)</P>\r\n\r\n<P>TAB MODALERT (100)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;R/T&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;..........(10)</P>\r\n\r\n<P>TAB ACOCONTIN (75)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; R/T&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; ............(5)</P>\r\n\r\n<P>SYP POTKLOR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 5ML/WITH WATER&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .....(1)</P>\r\n\r\n<P>LIQ LOOSE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 30ML&nbsp; &nbsp; &nbsp; &nbsp;HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........(1)</P>\r\n\r\n<P>PROTEIN POWDER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2TSF WITH MILK&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp;.........(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>BETADIN SOLUTION 100ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR FOLEY&#39;S CARE&nbsp; &nbsp; &nbsp;....(1)</P>\r\n\r\n<P>GAUSE PIECE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2 PACKET&nbsp; &nbsp; &nbsp; FOR FOLEY&#39;S CARE&nbsp; &nbsp; .....(1)</P>\r\n\r\n<P>&nbsp; &nbsp;&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 18:55:56','mo','2025-10-25 21:21:49'),(2095,0,0,1189,92,1443,0,0,NULL,'','DISCDIAG','','','<P><STRONG>- RIGHT INGUINAL HERNIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>- SUPRAUMBILICAL HERNIA&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 19:00:43','mo','2025-11-04 20:03:41'),(2096,0,0,1189,92,1443,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O:LEFT INGUINAL HERNIOPLASTY DONE IN 2012</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 19:00:43','mo','2025-11-04 20:03:41'),(2097,0,0,1189,92,1443,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 38 YEARS OLD &nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:LEFT INGUINAL HERNIOPLASTY DONE IN 2012<BR />\r\nC/O:SWELLING AT SUPRAUMBILICAL REGION (GRADUALLY INCREASE IN SIZE)&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;PAIN AT UMBILICAL SITE</P>\r\n\r\n<P>O/E; SUPRAUMBILICAL HERNIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;RIGHT INGUINAL HERNIA&nbsp;</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-72/MIN, BP-132/80MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>USG ABDOMEN DONE ON 25/10/2025 REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>ECG DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.JAYANT MEHTA (MD,FCCS)<BR />\r\nLAPAROSCOPIC RIGHT INGUINAL HERNIOPLASTY (TAPP) + LAPAROSCOPIC SUPRAUMBILICAL HERNIOPLASTY (TAPP) DONE BY DR PRATAPSINH DODIYA ON 25/10/2025 UNDER&nbsp; GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO ICU FOR FURTHER OBSERVATION.</P>\r\n\r\n<P>PATIENT&#39;S ICU STAY WAS UNEVENTFULL SO SHIFTED TO WARD WITH STABLE STATUS.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 19:00:43','mo','2025-11-04 20:03:41'),(2098,0,0,1189,92,1443,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET&nbsp;</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ DYNAPAR</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>ALLEX LOGENGES</P>\r\n\r\n<P>DULCOLAX SUPPO.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 19:00:43','mo','2025-11-04 20:03:41'),(2099,0,0,1244,1205,1489,0,0,NULL,'','DIAG','ZZZ','Remark','PAIN AT COCCYX','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-25 19:21:56','','0000-00-00 00:00:00'),(2100,0,0,1249,1210,1495,0,0,NULL,'','DIAG','ZZZ','Remark','RT RING FINGER INFECTION','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-25 19:36:41','','0000-00-00 00:00:00'),(2101,0,0,1249,1210,1495,0,0,NULL,'','DIAG','ZZZ','Remark','DM','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-25 19:36:43','','0000-00-00 00:00:00'),(2102,0,0,1249,1210,1495,0,0,NULL,'','DIAG','ZZZ','Remark','HTN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-25 19:36:44','','0000-00-00 00:00:00'),(2103,0,0,1240,1201,1483,0,0,NULL,'','DIAG','ZZZ','Remark','INCISIONAL HERNIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-25 19:43:22','','0000-00-00 00:00:00'),(2104,0,0,1251,1212,1499,0,0,NULL,'','DIAG','ZZZ','Remark','LIPOMA  IN RHC','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-25 19:51:35','','0000-00-00 00:00:00'),(2105,0,0,1245,1206,1490,0,0,NULL,'','DIAG','ZZZ','Remark','SUPRAUMBILICAL HERNIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-25 20:25:44','','0000-00-00 00:00:00'),(2106,0,0,1245,1206,1490,0,0,NULL,'','DIAG','ZZZ','Remark','BILATERAL INGUINAL HERNIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-25 20:25:51','','0000-00-00 00:00:00'),(2107,0,0,1245,1206,1490,0,0,NULL,'','DIAG','ZZZ','Remark','CV STROKE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-25 20:25:59','','0000-00-00 00:00:00'),(2108,0,0,1242,1203,1486,0,0,NULL,'','DIAG','ZZZ','Remark','RT THIGH CYST','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-25 20:26:19','','0000-00-00 00:00:00'),(2109,0,0,1189,92,1443,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS IN EVENING&nbsp;5 TO 7 PM</P>\r\n\r\n<P>AVOID HEAVY WORK FOR 6 WEEKS</P>\r\n\r\n<P>WEAR ABDOMINAL BELT WHILE MOBILIZATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 22:09:48','mo','2025-11-04 20:03:41'),(2110,0,0,1158,87,1369,0,0,NULL,'','OTNOTE','','','<p>per-op findings:</p>\r\n\r\n<p>- lhc 10mm port insertion done by open method in retro rectus space</p>\r\n\r\n<p>- rest of port insertion done under vision</p>\r\n\r\n<p>- left retrorectus space dissection done</p>\r\n\r\n<p>- midline crossover&nbsp;done by cutting both prs</p>\r\n\r\n<p>- umbilical hernia sac reduced</p>\r\n\r\n<p>- omentum adherent to previous lscs scar</p>\r\n\r\n<p>- dissection continue till retropubic space</p>\r\n\r\n<p>- omentum adhesion reduced</p>\r\n\r\n<p>- linea alba&nbsp; plication + hernia defect closed with v-lock</p>\r\n\r\n<p>- peritonea; defect closed with vicryl 3-0</p>\r\n\r\n<p>- hemostasis checked</p>\r\n\r\n<p>- 20 x 15 cm proene mesh kept</p>\r\n\r\n<p>- romovac kept in space</p>\r\n\r\n<p>- lhc anterior rectus sheath closed with vicryl no-1</p>\r\n\r\n<p>- skin closed with skin stappler</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 22:21:40','mo','2025-10-25 22:21:45'),(2111,0,0,1158,87,1369,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 22:21:40','mo','2025-10-25 22:21:45'),(2112,0,0,1158,87,1369,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS IN EVENING 5 TO 7 PM</P>\r\n\r\n<P>AVOID HEAVY WORK FOR 6 WEEKS</P>\r\n\r\n<P>WEAR ABDOMINAL BELT WHILE MOBILIZATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 22:21:40','mo','2025-10-25 22:21:45'),(2113,0,0,1158,87,1369,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...(10)</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; ...(5)</P>\r\n\r\n<P>TAB ZERODOL-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...(10)</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;10ML&nbsp; &nbsp; HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ....(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-25 22:21:40','mo','2025-10-25 22:21:45'),(2114,0,0,1034,89,1434,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-26 12:11:58','mo','2025-10-26 12:14:00'),(2115,0,0,1034,89,1434,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZIFI CV (200)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..(10)</P>\r\n\r\n<P>TAB AZEE (500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ..(3)</P>\r\n\r\n<P>TAB PANTODAC(40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ....(5)</P>\r\n\r\n<P>TAB VITNEURIN CZS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......(5)&nbsp;</P>\r\n\r\n<P>TAB LANOL ER (650)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp;IF FEVER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...(5)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-26 12:11:58','mo','2025-10-26 12:14:00'),(2116,0,0,197,96,1506,0,0,NULL,'','DISCDIAG','','','<P><STRONG>URINARY TRACT INFECTION</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-26 23:49:09','mo','2025-10-27 21:29:09'),(2117,0,0,197,96,1506,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>NAD</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-26 23:49:09','mo','2025-10-27 21:29:09'),(2118,0,0,197,96,1506,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 35 YEARS OLD FEMALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: ? ARTHRITIS (NOT ON MEDICATION)<BR />\r\nC/O: REGURGITATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BACK&nbsp;ACHE AND SEVERE BODYACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BURNING MICTURATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DECREASED APPETITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SEVERE GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 2-3 DAYS SO&nbsp;PATIENT TOOK PRIMARY TREATMENT IN ER AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>URINE R/M DONE ON 25/10/25 WHICH S/O, PC:25-30 CELLS/HPF, RBCS:2-3 CELLS/HPF, BACTERIA DETECTED</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-78/MIN, BP-130/90MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\nSO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-26 23:49:09','mo','2025-10-27 21:29:09'),(2119,0,0,197,96,1506,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.UNITREX-S</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.VOMISET</P>\r\n\r\n<P>INJ.DYNAPAR</P>\r\n\r\n<P>TAB.ETOLOK</P>\r\n\r\n<P>SYP.DIGERAFT</P>\r\n\r\n<P>LIQ.LOOSE</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-26 23:49:09','mo','2025-10-27 21:29:09'),(2120,0,0,1254,95,1505,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LRTI</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-26 23:54:27','mo','2025-10-27 12:30:29'),(2121,0,0,1254,95,1505,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O: RIGHT MRM DONE IN 2013</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-26 23:54:27','mo','2025-10-27 12:30:29'),(2122,0,0,1254,95,1505,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 55 YEARS OLD FEMALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nC/O: THROAT PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DOE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SEVERE COUGHING WITH WHITISH EXPECTORATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NO FEVER</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 6-7 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>CHEST X-RAY DONE ON 26/10/2025&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-102/MIN, BP-106/70MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>CHEST X-RAY DONE</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-26 23:54:27','mo','2025-10-27 12:30:29'),(2123,0,0,1254,95,1505,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 4&nbsp;DAYS ON FRIDAY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-26 23:54:27','mo','2025-10-27 12:30:29'),(2124,0,0,1254,95,1505,0,0,NULL,'','TREATGIVEN_TI','','','<P>TAB.EZITHRO</P>\r\n\r\n<P>CAP.FLUVIR</P>\r\n\r\n<P>TAB.CEFICOOL CV</P>\r\n\r\n<P>INJ.RABICROSS</P>\r\n\r\n<P>TAB.L DIO 1 M</P>\r\n\r\n<P>NEB.IPRAPHAGE L</P>\r\n\r\n<P>NEB DUOLIN&nbsp;</P>\r\n\r\n<P>NEB BUDECORT</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-26 23:54:27','mo','2025-10-27 12:30:29'),(2125,0,0,1268,1227,1525,0,0,NULL,'','DIAG','ZZZ','Remark','PILONIDAL SINUS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-27 10:55:13','','0000-00-00 00:00:00'),(2126,0,0,1272,1231,1530,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR DEAFNESS AND TINNITUS -----8 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 10:59:07','','0000-00-00 00:00:00'),(2127,0,0,1272,1231,1530,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 10:59:55','','0000-00-00 00:00:00'),(2128,0,0,1272,1231,1530,0,0,NULL,'','HIST','ZZZ','Remark','<p>before 8 months sudden onset of rotaotyr feeling with sense of imbalnce for few 2-3 days&thinsp;</p>\n\n<p>associated with right ear deafness and tinnitus&thinsp;</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:00:44','','0000-00-00 00:00:00'),(2129,0,0,1272,1231,1530,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:00:59','','0000-00-00 00:00:00'),(2130,0,0,1277,1236,1537,0,0,NULL,'','CC','ZZZ','Remark','URTI | 4 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-27 11:01:10','','0000-00-00 00:00:00'),(2131,0,0,1272,1231,1530,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:01:18','','0000-00-00 00:00:00'),(2132,0,0,897,865,1531,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better partially&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:03:16','','0000-00-00 00:00:00'),(2133,0,0,1267,1226,1524,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:07:22','','0000-00-00 00:00:00'),(2134,0,0,1262,1221,1517,0,0,NULL,'','HIST','ZZZ','Remark','<p>emergacny room</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:08:51','','0000-00-00 00:00:00'),(2135,0,0,1275,1234,1534,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---jurky feeling&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:11:01','','0000-00-00 00:00:00'),(2136,0,0,1265,1224,1521,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT OLD SCAPHOID FRACTURE','','',0,'0000-00-00 00:00:00','drsagar','2025-10-27 11:11:10','','0000-00-00 00:00:00'),(2137,0,0,1275,1234,1534,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nyhstamgus---absent</p>\n\n<p>dix hallpike---nads</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:11:12','','0000-00-00 00:00:00'),(2139,0,0,1275,1234,1534,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:12:45','','0000-00-00 00:00:00'),(2140,0,0,1286,1245,1547,0,0,NULL,'','HIST','ZZZ','Remark','<p>left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:22:21','darshan','2025-11-06 11:11:46'),(2141,0,0,1269,1228,1527,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---5 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:35:57','','0000-00-00 00:00:00'),(2142,0,0,1287,1246,1548,0,0,NULL,'','CC','ZZZ','Remark','PRE OP FOR HYSTERECTOMY||','','',0,'0000-00-00 00:00:00','drjayant','2025-10-27 11:36:18','','0000-00-00 00:00:00'),(2143,0,0,1269,1228,1527,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotry feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:36:28','','0000-00-00 00:00:00'),(2144,0,0,1287,1246,1548,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-27 11:36:39','','0000-00-00 00:00:00'),(2145,0,0,1269,1228,1527,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---bilatler high freq moderate sn deafnss</p>\n\n<p>stabilomtry--reduced vestibular score</p>\n\n<p>vng--right post&thinsp; canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:36:40','darshan','2025-10-27 13:01:52'),(2146,0,0,1269,1228,1527,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:36:43','','0000-00-00 00:00:00'),(2147,0,0,1288,1247,1551,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:42:21','','0000-00-00 00:00:00'),(2148,0,0,1288,1247,1551,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>&thinsp;heaviness of head +</p>\n\n<p>no associated other cns symtpms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:42:55','','0000-00-00 00:00:00'),(2149,0,0,1288,1247,1551,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--Left&thinsp;&thinsp;post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:43:09','darshan','2025-10-27 13:14:35'),(2151,0,0,1291,1250,1556,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow u pcase---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:45:53','','0000-00-00 00:00:00'),(2152,0,0,1254,95,1505,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 11:48:37','mo','2025-10-27 12:30:29'),(2153,0,0,1254,95,1505,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFICOOL CV&nbsp; (325MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;........ (8)</P>\r\n\r\n<P>TAB EZITHRO (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; ..........(2)</P>\r\n\r\n<P>CAP FLUVIR (75MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; ........(7)</P>\r\n\r\n<P>TAB L-DIO 1 M&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; ......(4)</P>\r\n\r\n<P>TAB PULMOCLEAR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; .......(8)</P>\r\n\r\n<P>CAP PANTODAC DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;......(4)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 11:48:37','mo','2025-10-27 12:30:29'),(2154,0,0,1270,1229,1528,0,0,NULL,'','CC','ZZZ','Remark','HEAVINESS OF HEAD--FEW YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:55:12','','0000-00-00 00:00:00'),(2155,0,0,1270,1229,1528,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotatry feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>anxiety +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:55:20','darshan','2025-10-27 11:56:20'),(2156,0,0,1270,1229,1528,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ----2-3 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:55:43','','0000-00-00 00:00:00'),(2157,0,0,1270,1229,1528,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE---5 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:55:43','','0000-00-00 00:00:00'),(2158,0,0,1270,1229,1528,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nads</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:56:31','','0000-00-00 00:00:00'),(2159,0,0,455,1254,1564,0,0,NULL,'','DIAG','ZZZ','Remark','PLANTAR FASCITIS RIGHT SIDE','','',0,'0000-00-00 00:00:00','drsagar','2025-10-27 11:57:08','','0000-00-00 00:00:00'),(2161,0,0,1270,1229,1528,0,0,NULL,'','MADVICE','ZZZ','Remark','VESTIBULAR IX---PT WILL COME LATER ON\nFOLLOW WITH OLD MRI REPORTS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:57:49','','0000-00-00 00:00:00'),(2162,0,0,1298,1257,1568,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--beter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 11:59:43','','0000-00-00 00:00:00'),(2163,0,0,1280,1239,1540,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----TODAY MORNING ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:05:03','','0000-00-00 00:00:00'),(2164,0,0,1280,1239,1540,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:05:30','','0000-00-00 00:00:00'),(2165,0,0,1280,1239,1540,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absnet</p>\n\n<p>dix hallpike---nads</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry---reduced vestbular score</p>\n\n<p>vng---right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:05:44','darshan','2025-10-27 13:31:03'),(2166,0,0,1280,1239,1540,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:05:54','','0000-00-00 00:00:00'),(2167,0,0,1300,1259,1571,0,0,NULL,'','CC','ZZZ','Remark','POSTED FOR UMBILICAL HERNIA||','','',0,'0000-00-00 00:00:00','drarchit','2025-10-27 12:14:30','','0000-00-00 00:00:00'),(2168,0,0,1300,1259,1571,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO C/O DOE&thinsp;</p>\n\n<p>NO C/O CHEST PAIN</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-10-27 12:14:51','','0000-00-00 00:00:00'),(2169,0,0,1300,1259,1571,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALLY NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-10-27 12:14:57','','0000-00-00 00:00:00'),(2170,0,0,1300,1259,1571,0,0,NULL,'','PLAN','ZZZ','Remark','5','','',0,'0000-00-00 00:00:00','drarchit','2025-10-27 12:16:07','','0000-00-00 00:00:00'),(2171,0,0,1271,1230,1529,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:16:09','','0000-00-00 00:00:00'),(2172,0,0,1271,1230,1529,0,0,NULL,'','HIST','ZZZ','Remark','<p>previously k/c/o endolymphatic hydrops&thinsp;</p>\n\n<p>heaviness of head + left side&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:16:34','','0000-00-00 00:00:00'),(2173,0,0,1271,1230,1529,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---left moderate sn deafness&thinsp;</p>\n\n<p>stabilometry --reduced ss score and verstibular scoree</p>\n\n<p>vng---left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:16:47','darshan','2025-10-27 13:40:16'),(2175,0,0,1274,1233,1533,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----MANY MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:21:13','','0000-00-00 00:00:00'),(2176,0,0,1274,1233,1533,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR DEAFNESS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:21:13','','0000-00-00 00:00:00'),(2177,0,0,1274,1233,1533,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:21:29','darshan','2025-10-27 13:59:10'),(2179,0,0,1274,1233,1533,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:21:53','','0000-00-00 00:00:00'),(2180,0,0,1299,1258,1570,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:24:23','','0000-00-00 00:00:00'),(2181,0,0,1299,1258,1570,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus----absent</p>\n\n<p>dix hallpike--nads</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:24:33','','0000-00-00 00:00:00'),(2183,0,0,1299,1258,1570,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY\nBD MENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:25:43','','0000-00-00 00:00:00'),(2184,0,0,1278,1237,1538,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----recurrence of headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:28:27','','0000-00-00 00:00:00'),(2186,0,0,1278,1237,1538,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN VENOGRAM ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:32:33','','0000-00-00 00:00:00'),(2187,0,0,1253,94,1504,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACCELERATED HYPERTENSION</STRONG></P>\r\n\r\n<P><STRONG>K/C/O; HTN,DM II, BPH</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 12:32:44','mo','2025-10-27 13:52:03'),(2188,0,0,1253,94,1504,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY-&nbsp;</STRONG>H/O:RECENTLY OPERATED FOR HYDROCOELE (16/10/2025)<BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 12:32:44','mo','2025-10-27 13:52:03'),(2189,0,0,1253,94,1504,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 64 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II,HTN , BPH WITH VIT D DEFICIENCY<BR />\r\nH/O:RECENTLY OPERATED FOR HYDROCOELE (16/10/2025)<BR />\r\nC/O:VOMITING 2 TIMES</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;HEADACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO H/O PERSPIRATION ,CHEST PAIN</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE TODAY EVENING SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-110/MIN, BP-190/110MMHG, SPO2-98% ON RA, RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU&nbsp;AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>25/10/2025</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>TROP I DONE WHICH WAS NEGATIVE</P>\r\n\r\n<P>IN VIEW OF HIGH BLOOD PRESSURE INJ NTG DRIP START @ BP</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26/10/2025</P>\r\n\r\n<P>BLOOD PRESSURE MONITORING 2ND HOURLY AND NTG TAPPER DOWN @ BLOOD PRESSURE</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFULL SO PATIENT SHIFTED TO WARD</P>\r\n\r\n<P>IN VIEW OF CONTROLLED BLOOD PRESSURE LEVEL NTG DRIP TAPPER OFF</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27/10/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 12:32:44','mo','2025-10-27 13:52:03'),(2190,0,0,1281,1240,1541,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---medicine skipped&thinsp;</p>\n\n<p>recurrence of vertigo and headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:35:35','','0000-00-00 00:00:00'),(2191,0,0,1281,1240,1541,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>&thinsp;stabiloemtry---reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:35:50','darshan','2025-10-27 14:08:00'),(2192,0,0,1281,1240,1541,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:35:52','','0000-00-00 00:00:00'),(2193,0,0,1283,1242,1544,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:39:42','','0000-00-00 00:00:00'),(2194,0,0,1283,1242,1544,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN---10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:39:55','','0000-00-00 00:00:00'),(2195,0,0,1283,1242,1544,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left ear fungus --cleaned</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:40:06','','0000-00-00 00:00:00'),(2196,0,0,1308,1269,1586,0,0,NULL,'','HIST','ZZZ','Remark','<p>k/c/o---left acute partial vestibular deficit</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:45:07','darshan','2025-10-27 14:16:36'),(2197,0,0,1189,92,1443,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>LAPAROSCOPIC RIGHT INGUINAL HERNIOPLASTY (TAPP) + LAPAROSCOPIC SUPRAUMBILICAL HERNIOPLASTY (TAPP) DONE BY DR PRATAPSINH DODIYA ON 25/10/2025 UNDER&nbsp; GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 12:49:54','mo','2025-11-04 20:03:41'),(2198,0,0,1189,92,1443,0,0,NULL,'','OTNOTE','','','<p>per-op findings:&nbsp;&nbsp;</p>\r\n\r\n<p>-veresse needle insertion done in palmer&#39;s point</p>\r\n\r\n<p>-5 mm trocar insertion done in palmer&#39;s point (lhc)</p>\r\n\r\n<p>-omentum adherent with linea alba in supra umbilical region</p>\r\n\r\n<p>-another 5 mm trocar insertion done in left iliac fossa,adhesion released</p>\r\n\r\n<p>-omentum in supra umbilical hernia sac , omentum reduced</p>\r\n\r\n<p>-10 mm trocar insertion done in supra umbilical region through hernia defect</p>\r\n\r\n<p>-another 5 mm trocar insertion done on right side</p>\r\n\r\n<p>- rt side indirect inguinal hernia , no hernia on left side&nbsp;</p>\r\n\r\n<p>-right side peritoneal flap elevated , hernia sac separated from cord structure , dissection done till retro pubis space</p>\r\n\r\n<p>-hemostasis checked prolene 13x16 cm kept and fixed at cooper&#39;s ligament with prolene no.1</p>\r\n\r\n<p>-peritoneal flap closed with vicryl 3-0</p>\r\n\r\n<p>-left iliac fossa 5 mm port converted to 10 mm camera port another 5 mm port placed near left axis</p>\r\n\r\n<p>-horizontal; incision kept over peritoneal covering hernia defect &amp; umbilicus</p>\r\n\r\n<p>-peritoneal carefully dissected from prs &amp; linea alba</p>\r\n\r\n<p>-hernia sac reduced, dissection done till right prs</p>\r\n\r\n<p>- hernia defect closed with prolene no-1</p>\r\n\r\n<p>- prolene mesh 10 x 7 cm kept &amp; fixed with prs &amp; linea alba in midline cavity hernia defect &amp; umbilicus&nbsp;</p>\r\n\r\n<p>- peritoneum closed with vicryl 3-0</p>\r\n\r\n<p>- port closed with skin stappler&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 12:49:54','mo','2025-11-04 20:03:41'),(2199,0,0,1189,92,1443,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 12:49:54','mo','2025-11-04 20:03:41'),(2200,0,0,1189,92,1443,0,0,NULL,'','TREATDISC_TI','','','<P>CAP AUGMENTIN (625)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; ......(15)</P>\r\n\r\n<P>TAB ZERODOL - SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; .......(10)</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; ........(10)</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 10ML HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......(1)</P>\r\n\r\n<P>NEOSPORIN OINT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR LOCAL APPLICATION&nbsp; &nbsp; AS EXPLAINED ........(1)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 12:49:54','mo','2025-11-04 20:03:41'),(2201,0,0,1309,1270,1587,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----MANY MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:54:26','','0000-00-00 00:00:00'),(2202,0,0,1309,1270,1587,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset ---and repeated on change of posture</p>\n\n<p>average duration 2-3 mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:55:19','','0000-00-00 00:00:00'),(2203,0,0,1309,1270,1587,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absnet</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vng--left hz canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:55:36','darshan','2025-10-27 14:56:48'),(2204,0,0,1309,1270,1587,0,0,NULL,'','DIAG','ZZZ','Remark','INTERMITTENT BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 12:56:45','','0000-00-00 00:00:00'),(2205,0,0,1296,1255,1565,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE CHOLECYSTITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-27 13:00:36','','0000-00-00 00:00:00'),(2206,0,0,1269,1228,1527,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:02:17','','0000-00-00 00:00:00'),(2208,0,0,1289,1248,1553,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR TINNITUS ---SINCE FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:09:02','','0000-00-00 00:00:00'),(2209,0,0,1289,1248,1553,0,0,NULL,'','HIST','ZZZ','Remark','<p>pt is having tinnitus ince many months but aggravated since 1 week after fire of crackers</p>\n\n<p>periodic headache with nausea and vomiting&thinsp;</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:09:05','darshan','2025-10-27 13:10:30'),(2210,0,0,1289,1248,1553,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:09:14','','0000-00-00 00:00:00'),(2211,0,0,1289,1248,1553,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>BTM---i/n</p>\n\n<p>Pta--left high frq mild sn deafness&thinsp;</p>\n\n<p>OAE---left poor correlation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:10:49','darshan','2025-10-27 13:55:14'),(2212,0,0,1288,1247,1551,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:15:15','','0000-00-00 00:00:00'),(2214,0,0,1290,1249,1554,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---k/c/o---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:20:55','','0000-00-00 00:00:00'),(2215,0,0,1290,1249,1554,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:22:03','','0000-00-00 00:00:00'),(2217,0,0,1290,1249,1554,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT BD  MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:22:35','','0000-00-00 00:00:00'),(2218,0,0,1294,1253,1561,0,0,NULL,'','HIST','ZZZ','Remark','<p>followup case---better for giddiness</p>\n\n<p>headache&thinsp; +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:25:22','','0000-00-00 00:00:00'),(2219,0,0,1294,1253,1561,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dx hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:25:38','','0000-00-00 00:00:00'),(2221,0,0,1294,1253,1561,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY FOR HEADACHE ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:28:13','','0000-00-00 00:00:00'),(2222,0,0,1280,1239,1540,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:31:26','','0000-00-00 00:00:00'),(2224,0,0,1311,1272,1591,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----recurence of vertigo 1 week</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:33:17','darshan','2025-10-27 13:35:39'),(2225,0,0,1271,1230,1529,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:40:20','','0000-00-00 00:00:00'),(2226,0,0,1293,1252,1560,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:43:48','','0000-00-00 00:00:00'),(2227,0,0,1253,94,1504,0,0,NULL,'','DISCCOND','','','<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 13:45:07','mo','2025-10-27 13:52:03'),(2228,0,0,1253,94,1504,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n\r\n<P>TAKE ADD/SRD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 13:45:07','mo','2025-10-27 13:52:03'),(2229,0,0,1253,94,1504,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>INJ NTG DRIP</P>\r\n\r\n<P>INJ CLEXANE</P>\r\n\r\n<P>TAB ECOSPRIN</P>\r\n\r\n<P>TAB CLAVIX</P>\r\n\r\n<P>TAB ECOTOR</P>\r\n\r\n<P>TAB TELMICON</P>\r\n\r\n<P>TAB SITABITE-M</P>\r\n\r\n<P>TAB DIABITE M&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 13:45:07','mo','2025-10-27 13:52:03'),(2230,0,0,1253,94,1504,0,0,NULL,'','TREATDISC_TI','','','<P>TAB TELMICON-M&nbsp; (25MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;...........(5)</P>\r\n\r\n<P>TAB ECOTOR-AS&nbsp; (10/75)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; .........(5)</P>\r\n\r\n<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;........(5)&nbsp;</P>\r\n\r\n<P>TAB EMPACOOL-S (250&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;.........(5)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>OWN MEDICINE :</P>\r\n\r\n<P>TAB PROSTAGARD&nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 13:45:07','mo','2025-10-27 13:52:03'),(2232,0,0,1269,1228,1527,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGTH SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:45:21','','0000-00-00 00:00:00'),(2234,0,0,1288,1247,1551,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:48:28','','0000-00-00 00:00:00'),(2236,0,0,1280,1239,1540,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 13:52:32','','0000-00-00 00:00:00'),(2238,0,0,1272,1231,1530,0,0,NULL,'','MADVICE','ZZZ','Remark','PT ABSCONDED','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 14:05:22','','0000-00-00 00:00:00'),(2239,0,0,1314,1275,1597,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 14:11:41','','0000-00-00 00:00:00'),(2240,0,0,1308,1269,1586,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>pta----left severe sn deafness mid and high frq&thinsp;</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 14:17:26','','0000-00-00 00:00:00'),(2242,0,0,1173,97,1519,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PHIMOSIS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN(NOT ON RX),PANCYTOPENIA,OLD CVA,AKI</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 14:18:25','mo','2025-10-27 16:33:27'),(2243,0,0,1173,97,1519,0,0,NULL,'','FOOD_DRUG_ALLERGIES','','','<P>- SULPHA GROUP ALLERY</P>\r\n\r\n<P>- ALLERGY TO OFLOXCIN &AMP; ORNIDAZOLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 14:18:25','mo','2025-10-27 16:33:27'),(2244,0,0,1173,97,1519,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY-</STRONG>S/P B/L CATARACT IN 2014<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 14:18:25','mo','2025-10-27 16:33:27'),(2245,0,0,1173,97,1519,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 77 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN(NOT ON RX),PANCYTOPENIA,OLD CVA,AKI<BR />\r\nH/O:S/P B/L CATARACT IN 2014</P>\r\n\r\n<P>PATIENT ADMITTED AT SHIVAM NURSING HOME FOR UTI FROM 19/10/2025 TO 21/10/2025<BR />\r\nC/O:UNABLE TO RETRACT PRE-PENILE SKIN&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;BURNING ,MICTURITION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO FEVER</P>\r\n\r\n<P>ALLABOVE MENTIONED COMPLAIN PRESNTED SINCE 5-7 DAYS FOR THAT PATIENT PRIMARY ADMITTED AT SHIVAM NURSING HOME AND&nbsp;NOW,PATIENT REFER&nbsp;HERE FOR FURTHER SURGICAL TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-85/MIN, BP-130/80MMHG, SPO2-99% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nECG DONE&nbsp;<BR />\r\nCIRCUMSCISION WITH ZSR STAPPLER DONE BY DR PRATAPSINH DODIYA ON 27/10/2025 UNDER REGIONAL ANAESTHESIA (PENIELE BLOCK) WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 14:18:25','mo','2025-10-27 16:33:27'),(2246,0,0,1173,97,1519,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>CIRCUMSCISION WITH ZSR STAPPLER DONE BY DR PRATAPSINH DODIYA ON 27/10/2025 UNDER REGIONAL ANAESTHESIA (PENIELE BLOCK) WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 14:18:25','mo','2025-10-27 16:33:27'),(2247,0,0,1173,97,1519,0,0,NULL,'','OTNOTE','','','<p>per-op findings :</p>\r\n\r\n<p>- thickened pre penile skin</p>\r\n\r\n<p>- glans penis normal&nbsp;</p>\r\n\r\n<p>- meatus normal</p>\r\n\r\n<p>- circumscision done with cirxcum stappler no-30</p>\r\n\r\n<p>- hemostasis achieved</p>\r\n\r\n<p>- dressing kept</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 14:18:25','mo','2025-10-27 16:33:27'),(2248,0,0,1173,97,1519,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 14:18:25','mo','2025-10-27 16:33:27'),(2249,0,0,1173,97,1519,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3&nbsp;DAYS IN EVENING 5 TO 7 PM&nbsp;</P>\r\n\r\n<P>CONTNUE OWN MEDICINE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 14:18:25','mo','2025-10-27 16:33:27'),(2250,0,0,1173,97,1519,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 14:18:25','mo','2025-10-27 16:33:27'),(2251,0,0,1173,97,1519,0,0,NULL,'','TREATDISC_TI','','','<P>AFTER OVER PREVIOUS MEDICINE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>START :</P>\r\n\r\n<P>TAB ZOSTUM-O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .....(10)</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;....(10)</P>\r\n\r\n<P>TAB AKILOS -P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .....(10)</P>\r\n\r\n<P>TAB URICRANE SAFE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......(10)</P>\r\n\r\n<P>NEOSPORIN OINTMENT&nbsp; &nbsp;FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .....(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 14:18:25','mo','2025-10-27 16:33:27'),(2252,0,0,1317,1278,1602,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----5 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 14:34:34','','0000-00-00 00:00:00'),(2253,0,0,1317,1278,1602,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR DEAFNESS----5 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 14:34:34','','0000-00-00 00:00:00'),(2254,0,0,1317,1278,1602,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden deafness both ear with sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpmo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 14:35:06','','0000-00-00 00:00:00'),(2255,0,0,1317,1278,1602,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus----absent</p>\n\n<p>dix hallike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--righyt high frq severe sn deafness</p>\n\n<p>vng--left post cana lbppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 14:35:18','darshan','2025-10-27 18:52:57'),(2257,0,0,1310,1271,1590,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 14:43:43','','0000-00-00 00:00:00'),(2258,0,0,1310,1271,1590,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotoatyr feeling in morning followed by sense of imbalance&thinsp;</p>\n\n<p>nausea and vomiting +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 14:44:15','','0000-00-00 00:00:00'),(2259,0,0,1310,1271,1590,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dx hallpike--nasd</p>\n\n<p>hit--nad</p>\n\n<p>&thinsp;MRI brain---multiple small patchy acute infarct in left cerebellum</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 14:44:25','darshan','2025-10-27 18:03:58'),(2261,0,0,1316,1277,1600,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--paritaly better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 14:53:55','darshan','2025-10-27 14:56:10'),(2262,0,0,1309,1270,1587,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 14:57:28','','0000-00-00 00:00:00'),(2266,0,0,1308,1269,1586,0,0,NULL,'','MADVICE','ZZZ','Remark','GUARDED PROGNOSIS FOR HEARING LOSS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 15:00:24','','0000-00-00 00:00:00'),(2268,0,0,1309,1270,1587,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 15:11:42','','0000-00-00 00:00:00'),(2269,0,0,1179,91,1438,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION</P>\r\n\r\n<P>HEMODIALYSIS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 16:30:16','mo','2025-10-29 12:36:47'),(2270,0,0,1321,1282,1607,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 17:02:16','','0000-00-00 00:00:00'),(2271,0,0,1320,1281,1606,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 17:08:46','','0000-00-00 00:00:00'),(2272,0,0,1320,1281,1606,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo -sudden onset of rotaotyr feeling remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 17:09:31','','0000-00-00 00:00:00'),(2273,0,0,1320,1281,1606,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bialtler high frqe severe sn deafness&thinsp;</p>\n\n<p>vemp---wnl</p>\n\n<p>vng---left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 17:09:45','darshan','2025-10-27 18:25:10'),(2276,0,0,1322,1283,1608,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----FWE MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 17:17:14','','0000-00-00 00:00:00'),(2277,0,0,1322,1283,1608,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 17:17:56','','0000-00-00 00:00:00'),(2278,0,0,1322,1283,1608,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit---nad</p>\n\n<p>pta----bialtelr high freq severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 17:18:43','darshan','2025-10-27 19:07:26'),(2280,0,0,1323,1284,1610,0,0,NULL,'','HIST','ZZZ','Remark','<p>followu p case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 17:21:24','','0000-00-00 00:00:00'),(2281,0,0,1015,982,1609,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 17:32:49','','0000-00-00 00:00:00'),(2282,0,0,90,79,1612,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 17:36:25','','0000-00-00 00:00:00'),(2284,0,0,90,79,1612,0,0,NULL,'','MADVICE','ZZZ','Remark','NRI BRAIN LIMITED STUDY','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 17:39:14','','0000-00-00 00:00:00'),(2285,0,0,1324,1285,1613,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down&thinsp; in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 17:46:20','darshan','2025-10-27 17:48:38'),(2286,0,0,1324,1285,1613,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 17:48:03','','0000-00-00 00:00:00'),(2287,0,0,1324,1285,1613,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta--bilatel hiigh frq severe sn deafness&thinsp;</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--irhgt hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 17:48:50','darshan','2025-10-27 19:19:58'),(2289,0,0,1325,1286,1614,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 17:51:09','','0000-00-00 00:00:00'),(2290,0,0,1326,1287,1617,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 17:58:40','','0000-00-00 00:00:00'),(2291,0,0,1326,1287,1617,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rototyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>both ear deafness and tinnitus +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 17:59:21','','0000-00-00 00:00:00'),(2292,0,0,1326,1287,1617,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta---bialtelr high frq severe sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 17:59:39','darshan','2025-10-27 19:36:14'),(2295,0,0,1328,1289,1620,0,0,NULL,'','DIAG','ZZZ','Remark','SERO NEGATIVE RA','','',0,'0000-00-00 00:00:00','drsagar','2025-10-27 18:06:14','','0000-00-00 00:00:00'),(2296,0,0,1310,1271,1590,0,0,NULL,'','MADVICE','ZZZ','Remark','NEUROLOGIST OPINION','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:11:19','','0000-00-00 00:00:00'),(2297,0,0,1174,90,1437,0,0,NULL,'','DISCCOND','','','<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n\r\n<P>IMPROVE GENERALISED CONDITION</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n\r\n<P>MOBILIZATION+&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 18:13:41','mo','2025-10-27 18:51:48'),(2298,0,0,1174,90,1437,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 4 DAYS ON FRIDAY&nbsp;</P>\r\n\r\n<P>STOP ALCOHOL AND TOBACCO</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 18:13:41','mo','2025-10-27 18:51:48'),(2299,0,0,1174,90,1437,0,0,NULL,'','TREATDISC_TI','','','<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;.....(4)</P>\r\n\r\n<P>TAB ECOSPRIN(150MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .....(4)</P>\r\n\r\n<P>TAB ECOTOR (40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......(4)</P>\r\n\r\n<P>TAB CLAVIX(75 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......(4)</P>\r\n\r\n<P>TAB TRULEV(500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; .......(8)</P>\r\n\r\n<P>TAB LIBRIUM (10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; .......(4)</P>\r\n\r\n<P>TAB TELSAR(40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;.......(4)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 18:13:41','mo','2025-10-27 18:51:48'),(2300,0,0,1329,1290,1621,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:14:12','','0000-00-00 00:00:00'),(2301,0,0,1329,1290,1621,0,0,NULL,'','CC','ZZZ','Remark','THRAOT IRRITATION----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:14:33','','0000-00-00 00:00:00'),(2302,0,0,1329,1290,1621,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested</p>\n\n<p>granular&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:14:45','','0000-00-00 00:00:00'),(2303,0,0,1330,1291,1622,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR DEAFNESS ---1 YRS||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:21:06','','0000-00-00 00:00:00'),(2304,0,0,1330,1291,1622,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>BTM----i/n</p>\n\n<p>pta---left moderate sn deafness</p>\n\n<p>&thinsp; &thinsp; &thinsp; &thinsp;right mild sn deafness&thinsp;</p>\n\n<p>OAE--both side poor corelation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:21:12','darshan','2025-10-27 19:44:41'),(2305,0,0,1332,1293,1626,0,0,NULL,'','CC','ZZZ','Remark','URTI | 15 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-27 18:23:55','','0000-00-00 00:00:00'),(2306,0,0,1332,1293,1626,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-27 18:25:11','','0000-00-00 00:00:00'),(2307,0,0,1320,1281,1606,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:26:02','','0000-00-00 00:00:00'),(2309,0,0,1331,1292,1624,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---heaviness of head +</p>\n\n<p>tingling and nuymbness in head&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:33:33','','0000-00-00 00:00:00'),(2310,0,0,1331,1292,1624,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>iht--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:33:42','','0000-00-00 00:00:00'),(2312,0,0,1331,1292,1624,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:34:54','','0000-00-00 00:00:00'),(2314,0,0,1320,1281,1606,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:37:06','','0000-00-00 00:00:00'),(2315,0,0,1341,1302,1636,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT OA KNEE','','',0,'0000-00-00 00:00:00','drsagar','2025-10-27 18:42:09','','0000-00-00 00:00:00'),(2316,0,0,1334,1295,1629,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR DEAFNESS FEELING ----3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:42:15','','0000-00-00 00:00:00'),(2317,0,0,1334,1295,1629,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Ltm---small central perforation dry</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:42:29','','0000-00-00 00:00:00'),(2318,0,0,1334,1295,1629,0,0,NULL,'','PLAN','ZZZ','Remark','15','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:43:01','','0000-00-00 00:00:00'),(2319,0,0,1337,1298,1632,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:48:10','','0000-00-00 00:00:00'),(2320,0,0,1317,1278,1602,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:54:25','','0000-00-00 00:00:00'),(2321,0,0,1317,1278,1602,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:54:26','','0000-00-00 00:00:00'),(2322,0,0,1340,1301,1635,0,0,NULL,'','CC','ZZZ','Remark','ROTATORY FEELINGS | 3 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-27 18:57:49','','0000-00-00 00:00:00'),(2323,0,0,1340,1301,1635,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-27 18:57:53','','0000-00-00 00:00:00'),(2324,0,0,1338,1299,1633,0,0,NULL,'','CC','ZZZ','Remark','THROAT PAIN||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:59:10','','0000-00-00 00:00:00'),(2325,0,0,1338,1299,1633,0,0,NULL,'','CC','ZZZ','Remark','COUGHING||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:59:10','','0000-00-00 00:00:00'),(2326,0,0,1338,1299,1633,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR PAIN----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:59:10','','0000-00-00 00:00:00'),(2327,0,0,1338,1299,1633,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested&thinsp;</p>\n\n<p>nose--mild congested&thinsp;</p>\n\n<p>neck--nad</p>\n\n<p>BTM---i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 18:59:29','','0000-00-00 00:00:00'),(2328,0,0,1094,1060,1642,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT SIDE ATFL TEAR','','',0,'0000-00-00 00:00:00','drsagar','2025-10-27 19:05:44','','0000-00-00 00:00:00'),(2329,0,0,1322,1283,1608,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 19:08:07','','0000-00-00 00:00:00'),(2331,0,0,1345,1306,1641,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 19:15:32','','0000-00-00 00:00:00'),(2332,0,0,1345,1306,1641,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of roataotyr feeling when pt is getting out of bed and lying down inb ed&thinsp;</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 19:16:02','','0000-00-00 00:00:00'),(2333,0,0,1345,1306,1641,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta---bilatelr high freq severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 19:16:13','darshan','2025-10-27 20:11:08'),(2334,0,0,1345,1306,1641,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT PSOT CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 19:16:16','','0000-00-00 00:00:00'),(2335,0,0,1341,1302,1636,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT 4TH TOE PROXIMAL PHALYNX FRACTURE','','',0,'0000-00-00 00:00:00','drsagar','2025-10-27 19:16:57','','0000-00-00 00:00:00'),(2336,0,0,1324,1285,1613,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 19:20:26','','0000-00-00 00:00:00'),(2340,0,0,1322,1283,1608,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 19:24:44','','0000-00-00 00:00:00'),(2341,0,0,1351,1312,1649,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---paritally better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 19:30:01','','0000-00-00 00:00:00'),(2343,0,0,1324,1285,1613,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 19:45:52','','0000-00-00 00:00:00'),(2344,0,0,1347,1308,1644,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 19:47:14','','0000-00-00 00:00:00'),(2345,0,0,1346,1307,1643,0,0,NULL,'','DIAG','ZZZ','Remark','CHEST WALL SEBACEOUS CYST WITH CELLULITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-27 19:57:21','','0000-00-00 00:00:00'),(2346,0,0,1346,1307,1643,0,0,NULL,'','DIAG','ZZZ','Remark','DM','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-27 19:57:23','','0000-00-00 00:00:00'),(2347,0,0,1346,1307,1643,0,0,NULL,'','DIAG','ZZZ','Remark','IHD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-27 19:57:28','','0000-00-00 00:00:00'),(2348,0,0,1346,1307,1643,0,0,NULL,'','DIAG','ZZZ','Remark','CKD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-27 19:57:33','','0000-00-00 00:00:00'),(2349,0,0,1346,1307,1643,0,0,NULL,'','DIAG','ZZZ','Remark','PVD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-27 19:57:38','','0000-00-00 00:00:00'),(2350,0,0,1349,1310,1646,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR BLOCKAGEFEW WEEKS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 19:58:54','','0000-00-00 00:00:00'),(2351,0,0,1349,1310,1646,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>both ear wax</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 19:59:02','','0000-00-00 00:00:00'),(2353,0,0,1349,1310,1646,0,0,NULL,'','MADVICE','ZZZ','Remark','BOTH EAR WAX REMOVAL NEXT TIME','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 19:59:31','','0000-00-00 00:00:00'),(2355,0,0,1345,1306,1641,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 20:11:58','','0000-00-00 00:00:00'),(2358,0,0,1345,1306,1641,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-27 20:16:31','','0000-00-00 00:00:00'),(2359,0,0,1353,1314,1651,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---medicine skipped&thinsp;</p>\n\n<p>recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 20:24:24','','0000-00-00 00:00:00'),(2360,0,0,1354,1315,1654,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 20:35:44','darshan','2025-10-27 20:38:59'),(2361,0,0,1354,1315,1654,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO --FWE MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 20:38:52','','0000-00-00 00:00:00'),(2362,0,0,1354,1315,1654,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR TINNITUS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 20:38:52','','0000-00-00 00:00:00'),(2363,0,0,1354,1315,1654,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>BTM---i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-27 20:39:07','','0000-00-00 00:00:00'),(2364,0,0,197,96,1506,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 21:17:05','mo','2025-10-27 21:29:09'),(2365,0,0,197,96,1506,0,0,NULL,'','ADVICE','','','<P>TAKE PLENTY OF LIQUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 21:17:05','mo','2025-10-27 21:29:09'),(2366,0,0,197,96,1506,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.ZOFER MD (4MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; S/L&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-1-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS...............(15)</P>\r\n\r\n<P>TAB.VONO (20MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS...............(5)</P>\r\n\r\n<P>SYP.DIGIRAFT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;5ML-5ML-5ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS...............(1)</P>\r\n\r\n<P>LIQ.LOOSE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-0-30ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AT BED TIME&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS...............(1)</P>\r\n\r\n<P>TAB.ZEPTAS (0.5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS...............(5)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 21:24:39','mo','2025-10-27 21:29:09'),(2367,0,0,657,101,1601,0,0,NULL,'','DISCDIAG','','','<P><STRONG>HYPERTENSIVE URGENCY WITH ACUTE LVF</STRONG></P>\r\n\r\n<P><STRONG>IN CASE OF SLE.</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 23:08:27','mo','2025-10-31 20:53:38'),(2368,0,0,657,101,1601,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>K/C/O SLE.<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 23:08:27','mo','2025-10-31 20:53:38'),(2369,0,0,657,101,1601,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 45 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: SLE ON RX.</P>\r\n\r\n<P>PATIENT ADMIT FOR INJ. RITUXIMAB (3RD DOSE)</P>\r\n\r\n<P>PRE MEDICATION GIVEN.</P>\r\n\r\n<P>INJ. PRIMACORT 100MG IV STAT</P>\r\n\r\n<P>INJ. PANTODAC 40MG IV STAT</P>\r\n\r\n<P>INJ. EMSET IV STAT GIVEN</P>\r\n\r\n<P>THAN &nbsp;INJ. RITUXIMAB 1GM + NS 500ML....START 30ML/HR.</P>\r\n\r\n<P>AFTER 30MIN PATIENT DEVELOPED RESPIRATORY DISTRESS,DEVELOPED HYPERTENSION,O2 DESATURATED;SEVERE PERSPIRATION WITH HEAVINESS OF CHEST AND HEADACHE,&nbsp; &nbsp;SO,STOPPED INJ.&nbsp;RITUXIMAB.</P>\r\n\r\n<P>BP - 230/140 MM OF HG, PULSE - 130/MIN, SPO2 - 85 % AT ROOM AIR.</P>\r\n\r\n<P>RS - BILATERAL CRAPITATION, TACHYPNEA, TACHYCARDIA, CYANOSIS.</P>\r\n\r\n<P>IN VIEW OF HYPERTENSIVE FAILURE SO,IV NTG DRIP GIVEN AND PUT ON NIV SUPPORT.</P>\r\n\r\n<P>NEBULIZATION GIVEN.</P>\r\n\r\n<P>2D ECHO SCREENING DONE.</P>\r\n\r\n<P>IN VIEW OF FURTHER UNCONTROLLED HIGH BLOOD PRESSURE SO,IV LOBET GIVEN.ORALLY ANTI-HYPERTENSIVE MEDICINE STARTED.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>GCS OBSERVED IN ICU.</P>\r\n\r\n<P>GRADUALLY PATIENT&#39;S RESPIRATION WAS IMPROVING SO,NIV OFF TRIAL GIVEN.O2 SUPPORT CONTINUES.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28-10-2025,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE.</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>GRADUALLY BLOOD PRESSURE UNDER CONTROLLED SO,NTG DRIP TAPER AND OFF.</P>\r\n\r\n<P>O2 OFF TRIAL GIVEN.</P>\r\n\r\n<P>ORALLY DIET GIVEN.TAKEN WELL.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT DISCHARGED WITH HEMODYNAMICALLY STABLE CONDITION.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 23:08:27','mo','2025-10-31 20:53:38'),(2370,0,0,1195,93,1501,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE RIGHT INFERIOR CEREBELLAR LACUNAR INFARCT</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DYSLIPIDEMIA + HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 23:18:32','mo','2025-10-29 20:27:44'),(2371,0,0,1195,93,1501,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-27 23:18:32','mo','2025-10-29 20:27:44'),(2372,0,0,1195,93,1501,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 52 YEARS OLD MALE PATIENT PRESENTED WITH</P>\r\n\r\n<P>C/O: HEADACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GIDDINESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PERSPIRATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERAL WEAKNESS YESTERDAY EVENING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONTINUES VOMITING WITH GAIT IMBLANCE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; LETHARGY TODAY MORNING.</P>\r\n\r\n<P><BR />\r\nK/C/O: DYSLIPIDEMIA + HTN ON RX<BR />\r\nH/O:PRIMARY CONSULTING TO DR ARCHIT RATHOD THEN COME HERE&nbsp;</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nTEMP-AFEBRILE, PR-78 /MIN, BP-168/100MMHG, SPO2-96% ON RA, RR-22/MIN</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.DR.KAUMIL KOTHARI REFERANCE DONE ADVISE CONSERVATIVE MANAGMENT. MRI BARIN DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26/10/2026</P>\r\n\r\n<P>ON PATIENT GC IMPROVING SO ORALLY DIET STARTED AND GC EXAPLAIED TO RELATIVES.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27/10/2025</P>\r\n\r\n<P>ON PATIENT VITALLY STABLE AND ORALLY TOLERATED WELL SO PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28/10/2025</P>\r\n\r\n<P>MOBILIZATION DONE, GAIT BALANCE PROPER</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>29/10/2025</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 23:18:32','mo','2025-10-29 20:27:44'),(2373,0,0,1264,98,1536,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LIVER&nbsp;HYDATID CYCT</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 23:45:35','mo','2025-10-29 12:53:21'),(2374,0,0,1264,98,1536,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>NAD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 23:45:35','mo','2025-10-29 12:53:21'),(2375,0,0,1264,98,1536,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 42 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O: ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA, NO VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; REGURGITATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; OCCASIONALLY CONSTIPATION</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 2-3 MONTHS FOR THAT PRIMARILY CONSULTED AT ATKOT AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN AND PELVIS DONE ON 28/7/25 WHICH S/O:</P>\r\n\r\n<P>-HYDATIS CYST IN RIGHT LOBE OF LIVER</P>\r\n\r\n<P>-RIGHT OVARIAN SIMPLE CYST.</P>\r\n\r\n<P>CONTRAST CT SCAN OF ABDOMEN DONE ON 25/8/25 WHICH S/O HYDATID CYST.&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-84/MIN, BP-122/80MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nECG DONE<BR />\r\nLAPAROSCOPIC HYDATID CYST EXCISION DONE BY DR PRATAPSINH DODIYA ON 27/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO ICU.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFULL SO PATIENT SHIFTED TO WARD&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 23:45:35','mo','2025-10-29 12:53:21'),(2376,0,0,1264,98,1536,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACTAGARD</P>\r\n\r\n<P>INJ.METROGYL</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>INJ.DYNAPAR AQ</P>\r\n\r\n<P>INJ.TRAMADOL</P>\r\n\r\n<P>BUPREDESIC PATCH</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>TAB BANDY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-27 23:50:17','mo','2025-10-29 12:53:21'),(2377,0,0,1276,100,1572,0,0,NULL,'','DISCDIAG','','','<P><STRONG>SEVERE ANEMIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>UPPER GI BLEED UNDER INVESTIGATION</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM TYPE 2, HTN</STRONG></P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 08:08:50','mo','2025-10-29 12:45:02'),(2378,0,0,1276,100,1572,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O: B/L TKR, BEFORE 5 AND 10 YR</P>\r\n\r\n<P>RIGHT&nbsp;HIP ORIF BEFORE 7 YR,</P>\r\n\r\n<P>LEFT&nbsp;THR BEFORE12-13 YR</P>\r\n\r\n<P>SPINE SURGERY BEFORE 4 YEAR</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 08:08:50','mo','2025-10-29 12:45:02'),(2379,0,0,1276,100,1572,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 78 YEARS OLD 78 PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM TYPE 2, HTN<BR />\r\nC/O: DOE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FATIGUE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS AND EDEMA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DECREASED URINE OUTPUT</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DECREASED APPETITE</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 15-20 DAYS FOR THAT PATIENT PRIAMRILY CONSULTED TO DR KAMAL DOSHI AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-81/MIN, BP-122/70MMHG, SPO2-92% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE&nbsp;</P>\r\n\r\n<P>IN VIEW OF LOW HB (6.1 GM/DL) 2 UNIT RCC TRANSFUSED ON 27/10/25&nbsp;</P>\r\n\r\n<P>2D ECHO DONE ON 27/10/2025 LVEF - 55%&nbsp;</P>\r\n\r\n<P>STOOL R/M DONE ON 28/10/2025WHICH S/O OB (++++), BACTERIA DETECTED</P>\r\n\r\n<P>2 UNIT RCC TRANSFUSED ON 28/10/2025&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 08:08:50','mo','2025-10-29 12:45:02'),(2380,0,0,1276,100,1572,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ NEXPROFAST DRIP</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>RCC 4&nbsp;UNITS</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>TAB RIFAGUT</P>\r\n\r\n<P>INJ TRENEXA</P>\r\n\r\n<P>SYP DIGERAFT</P>\r\n\r\n<P>INJ VIT K</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 08:08:50','mo','2025-10-29 12:45:02'),(2381,0,0,1195,93,1501,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.CLEXANE</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.VOMISET</P>\r\n\r\n<P>TAB.ECOSPRIN</P>\r\n\r\n<P>TAB.LIPITAS</P>\r\n\r\n<P>TAB STUGERON PLUS</P>\r\n\r\n<P>TAB. EVION LC</P>\r\n\r\n<P>TAB. GABATIN</P>\r\n\r\n<P>TAB. AMLODAC</P>\r\n\r\n<P>TAB URIMAX</P>\r\n\r\n<P>DULCOLAX SUPPO.</P>\r\n\r\n<P>TAB BISOWIN T</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 10:09:33','mo','2025-10-29 20:27:44'),(2382,0,0,1367,1327,1667,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---MANY YEARS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 10:53:47','','0000-00-00 00:00:00'),(2383,0,0,1367,1327,1667,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 10:54:21','darshan','2025-10-28 12:48:53'),(2384,0,0,1367,1327,1667,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--wnl</p>\n\n<p>CCG---AP displacement out of range</p>\n\n<p>VNG--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 10:54:30','darshan','2025-10-28 12:49:39'),(2386,0,0,1366,1326,1666,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache left occipital headache</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 10:56:41','darshan','2025-10-28 11:05:04'),(2387,0,0,1366,1326,1666,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---MANY YRS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 11:01:58','','0000-00-00 00:00:00'),(2388,0,0,1366,1326,1666,0,0,NULL,'','CC','ZZZ','Remark','OCCASSIONAL GIDDINESS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 11:01:58','','0000-00-00 00:00:00'),(2389,0,0,1366,1326,1666,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain limited study---no sol</p>\n\n<p>vemp--left side&thinsp; reduced</p>\n\n<p>vng--central vareity of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 11:05:15','darshan','2025-10-28 13:27:43'),(2390,0,0,1366,1326,1666,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 11:05:22','','0000-00-00 00:00:00'),(2391,0,0,1364,1324,1664,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----two episodes of short duration of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 11:09:50','','0000-00-00 00:00:00'),(2392,0,0,1375,1335,1675,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 11:19:33','','0000-00-00 00:00:00'),(2393,0,0,1375,1335,1675,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 11:20:07','','0000-00-00 00:00:00'),(2394,0,0,1375,1335,1675,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vng--left post canal bpvpv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 11:20:18','darshan','2025-10-28 13:32:30'),(2395,0,0,1375,1335,1675,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 11:20:22','','0000-00-00 00:00:00'),(2396,0,0,1378,1338,1680,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 11:26:08','','0000-00-00 00:00:00'),(2397,0,0,1381,1341,1685,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ANKLE SPRAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-28 11:26:46','','0000-00-00 00:00:00'),(2398,0,0,547,521,1683,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 11:38:34','','0000-00-00 00:00:00'),(2400,0,0,547,521,1683,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT BD MAENVEUR ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-28 11:39:58','','0000-00-00 00:00:00'),(2401,0,0,1384,1344,1689,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS  | 30 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-28 11:40:24','','0000-00-00 00:00:00'),(2402,0,0,1384,1344,1689,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-28 11:40:29','','0000-00-00 00:00:00'),(2403,0,0,1380,1340,1684,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 11:43:11','','0000-00-00 00:00:00'),(2404,0,0,1388,1348,1693,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 11:50:49','','0000-00-00 00:00:00'),(2405,0,0,1388,1348,1693,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no asocitaed other cns symptom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 11:51:16','','0000-00-00 00:00:00'),(2406,0,0,1388,1348,1693,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix halllpike--nad</p>\n\n<p>ht--nad</p>\n\n<p>pta--bilatelr high freq severe sn deafness</p>\n\n<p>&thinsp;</p>\n\n<p>vng---left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 11:51:29','darshan','2025-10-28 14:04:19'),(2408,0,0,1382,1342,1686,0,0,NULL,'','HIST','ZZZ','Remark','<p>pt dont want consultation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 11:54:23','','0000-00-00 00:00:00'),(2409,0,0,1386,1346,1691,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 11:56:11','','0000-00-00 00:00:00'),(2410,0,0,1103,78,1293,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE&nbsp;</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>MOBILIZATION +&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 11:57:56','mo','2025-10-28 11:57:57'),(2411,0,0,1103,78,1293,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS</P>\r\n\r\n<P>PHYSIOTHERAPY&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 11:57:56','mo','2025-10-28 11:57:57'),(2412,0,0,1103,78,1293,0,0,NULL,'','TREATDISC_TI','','','<P>INJ MERO + EDTA&nbsp; &nbsp; &nbsp;1GM/100ML NS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 7AM--2PM--10PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........FOR 3 DAYS ( 8 INJ)</P>\r\n\r\n<P>NEB COLISTIN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1 MU&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/N&nbsp; &nbsp; &nbsp; &nbsp; 10AM--10PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ..............FOR&nbsp; 3 DAYS(7 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB PANTODAC&nbsp; &nbsp; &nbsp; &nbsp;40MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;....(4)</P>\r\n\r\n<P>TAB LEVIGRESS&nbsp; &nbsp; &nbsp; &nbsp;500MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;....(10)</P>\r\n\r\n<P>TAB B-LONG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ....(4)</P>\r\n\r\n<P>TAB LACOSAM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 50 MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.....(8)</P>\r\n\r\n<P>TAB&nbsp; R-CINAX&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 600/300&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.....(4)</P>\r\n\r\n<P>TAB COMBUTOL&nbsp; &nbsp; &nbsp; &nbsp;1GM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......(4)</P>\r\n\r\n<P>TAB MACROZIDE&nbsp; &nbsp; &nbsp; 1500MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(4)</P>\r\n\r\n<P>TAB NICORANDIL&nbsp; &nbsp; &nbsp; &nbsp;5 MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(4)</P>\r\n\r\n<P>TAB URIMAX&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0.4MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........(4)</P>\r\n\r\n<P>TAB ATORVA&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 40MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......(4)</P>\r\n\r\n<P>TAB ECOSPRIN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 75MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......(4)</P>\r\n\r\n<P>SYP MUCOLYTE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;5ML&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...(1)</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 20ML&nbsp; &nbsp; HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.(1)&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 11:57:56','mo','2025-10-28 11:57:57'),(2413,0,0,1389,1349,1695,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better for giddieness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 12:02:28','','0000-00-00 00:00:00'),(2414,0,0,1390,1350,1696,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----partialy better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 12:07:53','','0000-00-00 00:00:00'),(2415,0,0,1391,1351,1697,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 12:13:34','','0000-00-00 00:00:00'),(2416,0,0,1393,1353,1699,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 12:25:14','','0000-00-00 00:00:00'),(2417,0,0,1393,1353,1699,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and movement of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 12:25:47','','0000-00-00 00:00:00'),(2418,0,0,1393,1353,1699,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilometyr---reduced ss score</p>\n\n<p>CCG---axial spin out of range</p>\n\n<p>vng--central vareity of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 12:26:01','darshan','2025-10-28 14:13:05'),(2421,0,0,1396,1356,1703,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is in any posture which remanis for 10-15 mins</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 12:35:20','darshan','2025-10-28 12:36:23'),(2423,0,0,1396,1356,1703,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 12:35:32','darshan','2025-10-28 14:21:18'),(2424,0,0,1396,1356,1703,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilomety---wnl</p>\n\n<p>vng--central vareity of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 12:36:41','darshan','2025-10-28 14:20:58'),(2427,0,0,1397,1357,1706,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 12:40:25','','0000-00-00 00:00:00'),(2428,0,0,1401,1361,1710,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow&thinsp; up case--beter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 12:44:24','','0000-00-00 00:00:00'),(2429,0,0,1367,1327,1667,0,0,NULL,'','DIAG','ZZZ','Remark','RECURRENCT BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 12:50:15','','0000-00-00 00:00:00'),(2430,0,0,1367,1327,1667,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 12:50:52','','0000-00-00 00:00:00'),(2432,0,0,1399,1359,1708,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT FOOT PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-28 12:51:58','','0000-00-00 00:00:00'),(2433,0,0,1402,1362,1712,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of sense of imbalance and giddiness feeling&thinsp;</p>\n\n<p>remains few days episodically</p>\n\n<p>occassional headache +</p>\n\n<p>k/c/o---hypothyroidism and DM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 13:07:54','darshan','2025-10-28 13:09:14'),(2434,0,0,1402,1362,1712,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ---MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 13:08:02','','0000-00-00 00:00:00'),(2435,0,0,1402,1362,1712,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 13:08:11','','0000-00-00 00:00:00'),(2436,0,0,1402,1362,1712,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--absent</p>\n\n<p>dix hallike---nads</p>\n\n<p>hit-nad</p>\n\n<p>Pta--wnl</p>\n\n<p>stabilometry--reduced ss&thinsp;&thinsp;score</p>\n\n<p>CCG---left side axial spin&thinsp;</p>\n\n<p>Vng--central variety of nystamgus&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 13:09:23','darshan','2025-10-29 12:48:57'),(2438,0,0,1404,1364,1714,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--single episode of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 13:11:34','','0000-00-00 00:00:00'),(2440,0,0,1367,1327,1667,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-28 13:12:59','','0000-00-00 00:00:00'),(2441,0,0,1406,1366,1717,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-10-28 13:15:06','','0000-00-00 00:00:00'),(2442,0,0,1375,1335,1675,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 13:32:55','','0000-00-00 00:00:00'),(2444,0,0,1405,1365,1715,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset any time and remains for few mins&thinsp;</p>\n\n<p>left ear deafness +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 13:34:52','darshan','2025-10-28 13:40:04'),(2445,0,0,1107,82,1298,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO DIFFICULTY IN BREATHING</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 13:37:04','mo','2025-10-28 13:53:32'),(2446,0,0,1107,82,1298,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFICOOL&nbsp; &nbsp; &nbsp;200MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......(6)</P>\r\n\r\n<P>TAB LEVOFLOX&nbsp; &nbsp;750MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......(3)</P>\r\n\r\n<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .....(3)</P>\r\n\r\n<P>TAB FDSON-MP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(3)</P>\r\n\r\n<P>TAB AKT&nbsp; &nbsp;4&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 4--0--0&nbsp; &nbsp;BEFORE BREAKFAST&nbsp; &nbsp; &nbsp; &nbsp;....(12)</P>\r\n\r\n<P>PROTIHIR POWDER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2 TSF WITH MILK&nbsp; &nbsp; BD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;....(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>OWN MEDICINE:&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB THYROX&nbsp; &nbsp;125MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0</P>\r\n\r\n<P>TAB ROSULESS-A&nbsp; 75/10&nbsp; &nbsp; &nbsp; &nbsp;0--1--0</P>\r\n\r\n<P>TAB CC BEST T&nbsp; 10/40&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0</P>\r\n\r\n<P>TAB URIDEX 0.4&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 13:37:04','mo','2025-10-28 13:53:32'),(2447,0,0,1405,1365,1715,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---15 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 13:39:27','','0000-00-00 00:00:00'),(2448,0,0,1405,1365,1715,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR DEAFNESS AND TINNITUS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 13:39:36','','0000-00-00 00:00:00'),(2449,0,0,1405,1365,1715,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----bilatelr moderate sn deafness</p>\n\n<p>stabilometry---reduced&thinsp; vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 13:40:18','darshan','2025-10-28 14:29:31'),(2451,0,0,1346,103,1700,0,0,NULL,'','DISCDIAG','','','<P><STRONG>CARBUNCLE ON CHEST&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM II, HTN, IHD, LVD, CKD, DIABETIC NEUROPATHY, DIABETIC RETINOPATHY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 13:50:09','mo','2025-10-30 12:39:20'),(2452,0,0,1346,103,1700,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O: RIGHT SIDED BELOW KNEE&nbsp;AMPUTATION DONE BY DR PRATAPSINH DODIYA&nbsp;ON 23-02-2025</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 13:50:09','mo','2025-10-30 12:39:20'),(2453,0,0,1346,103,1700,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 55 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II, HTN, IHD, LVD, CKD, DIABETIC NEUROPATHY, DIABETIC RETINOPATHY<BR />\r\nH/O: RIGHT SIDED B/K AMPUTATION DONE BY DR PRATAPSINH DODIYA ON 23-02-2025<BR />\r\nC/O: PAIN &AMP; SWELLING IN UPPER CHEST REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; REDNESS AT SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DECREASED APPETITE</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 6-7 DAYS SO&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-77/MIN, BP-96/50MMHG, SPO2-96% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>IN VIEW OF UNCONTROLLED SUGAR&nbsp; LEVEL&nbsp;INJ H.ACTRAPID DRIP STARTED<BR />\r\nINCISION AND DRAINAGE DONE BY DR.PRATAPSINH DODIYA ON 28/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO ICU.</P>\r\n\r\n<P>FURTHER ICU STAY UNEVENTFUL SO PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>IN VIEW OF HIGH BLOOD SUGAR LEVEL REFERENCE OF DR.ARCHIT RATHOD( MD MEDICINE &AMP; INTENSIVIST) DONE ON 29/10/2025 AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>REFERENCE OF DR DENISH SAVALIYA (NEPHROLOGIST) DONE AND FOLLOW HIS ALL ADVICE.</P>\r\n\r\n<P>PUS C/S S/O: GROWTH OF GRAM +VE , STAPHYLOCOCCUS AUREUS AND TREATMENT MODIFIED ACCORDING TO SENSITIVITY&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 13:50:09','mo','2025-10-30 12:39:20'),(2454,0,0,1407,1367,1720,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----FEW YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 13:51:31','','0000-00-00 00:00:00'),(2455,0,0,1407,1367,1720,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR DEAFNESS AND TINNITUS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 13:51:31','','0000-00-00 00:00:00'),(2456,0,0,1407,1367,1720,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo--sudden onset of rotatoyr feeling when pt is in any posture</p>\n\n<p>heaviness of head +</p>\n\n<p>left ear continuous tinnitus and deafness</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 13:52:08','','0000-00-00 00:00:00'),(2457,0,0,1407,1367,1720,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---left moderate to severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---lefrt labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 13:52:20','darshan','2025-10-28 14:46:22'),(2458,0,0,1407,1367,1720,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 13:52:24','','0000-00-00 00:00:00'),(2460,0,0,1375,1335,1675,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-28 13:56:35','','0000-00-00 00:00:00'),(2461,0,0,1388,1348,1693,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 14:04:42','','0000-00-00 00:00:00'),(2463,0,0,1409,1369,1722,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 14:07:46','','0000-00-00 00:00:00'),(2464,0,0,1393,1353,1699,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 14:13:39','','0000-00-00 00:00:00'),(2467,0,0,1388,1348,1693,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-28 14:15:08','','0000-00-00 00:00:00'),(2469,0,0,1393,1353,1699,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-28 14:22:54','','0000-00-00 00:00:00'),(2470,0,0,657,101,1601,0,0,NULL,'','DISCCOND','','','<P>HEMODYNAMICALLY STABLE</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 15:45:20','mo','2025-10-31 20:53:38'),(2471,0,0,657,101,1601,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. PRIMACORT</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ. AVIL</P>\r\n\r\n<P>INJ. RITUXIMAB</P>\r\n\r\n<P>INJ. LOBET</P>\r\n\r\n<P>INJ. DYTOR</P>\r\n\r\n<P>INJ. NTG</P>\r\n\r\n<P>INJ. AVIL</P>\r\n\r\n<P>NEB. DUOLIN : BUDACORT</P>\r\n\r\n<P>TAB. CORTEL</P>\r\n\r\n<P>TAB. BISOBIS</P>\r\n\r\n<P>INJ. FIBRINYL</P>\r\n\r\n<P>INJ. PCM</P>\r\n\r\n<P>INJ. TRAMADOL</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 15:45:20','mo','2025-10-31 20:53:38'),(2472,0,0,657,101,1601,0,0,NULL,'','TREATDISC_TI','','','<P>TAB. XOXE 250 MG P/O 1-0-1</P>\r\n\r\n<P>TAB. BISOBIS 5MG P/O 1-0-1</P>\r\n\r\n<P>TAB. CORTEL H 80MG P/O 1-0-0</P>\r\n\r\n<P>TAB. ARKAMIN 0.1 MG P/0 1-1-1</P>\r\n\r\n<P>TAB. DOMPAN P/O 1-0-1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 15:45:20','mo','2025-10-31 20:53:38'),(2473,0,0,1360,102,1660,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O : DOMESTIC FALL DOWN, LONG SPIRAL #, LOWER 4TH RIGHT FEMURE (OPERATED) AT SHIV HOSPITAL ON 23-10-2025.</P>\r\n\r\n<P>ONE UNIT RCC GIVEN AT HOME.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 16:10:47','mo','2025-10-31 12:40:06'),(2474,0,0,1360,102,1660,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 87 YEARS OLD FEMAEL&nbsp; PATIENT PRESENT WITH,<BR />\r\nK/C/O: DM TYPE 2<BR />\r\nC/O: SUDEEN DOE,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BREATHLESSNESS,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; RESPIRATORY DISTRESS.</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; TODAY EVENING.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;</P>\r\n\r\n<P>CVP LINE IN SITU RIGHT IJV AND FOLEY`S CATH IN SITU.<BR />\r\nTEMP- 97.8`F<BR />\r\nPR- 87/MIN<BR />\r\nBP- 160/80 MMHG&nbsp;<BR />\r\nSPO2- 100% WITH 2 LIT O2 BY MASK.&nbsp;<BR />\r\nRR- 32/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27-10-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>O2 SUPPORT GIVEN VAI MASK.</P>\r\n\r\n<P>CHEST X RAY DONE - REPROT ATTACH WITH FILE.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>D.DIMOR - 5972 NG/ML.</P>\r\n\r\n<P>NT PRO BNP - 5549 PG/ML.</P>\r\n\r\n<P>TROP I - 125 NG/L.</P>\r\n\r\n<P>S. FERITIN LEVEL - 177.01 NG/ML.</P>\r\n\r\n<P>INJ. DYTRO GIVEN STAT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>2 D ECHO DONE REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>ONE UNIT RCC GIVEN.</P>\r\n\r\n<P>CHAGNE ANTIBIOTIC.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>29-10-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>CBC,CRP, S.CREAT, S.ELT DONE.</P>\r\n\r\n<P>PATIENT HEMODYNAMICALY AND VITALTY STABLE,&nbsp;</P>\r\n\r\n<P>ICU STAY UNEVENTFULL, PATIENT SHIFT TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>30-10-2025,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONITION OBSERVED IN WARD</P>\r\n\r\n<P>1 UNIT RCC TRANSFUSED&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>31-10-2025,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 16:10:47','mo','2025-10-31 12:40:06'),(2475,0,0,1412,1371,1728,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 17:19:34','','0000-00-00 00:00:00'),(2476,0,0,1412,1371,1728,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotry feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associted other cns symptms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 17:20:08','','0000-00-00 00:00:00'),(2477,0,0,1412,1371,1728,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--bilatelr high frq moderate sn deafness</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 17:20:21','darshan','2025-10-28 18:42:01'),(2479,0,0,1413,1372,1729,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 17:26:03','','0000-00-00 00:00:00'),(2480,0,0,1414,1373,1730,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case --better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 17:33:12','','0000-00-00 00:00:00'),(2481,0,0,1415,1374,1731,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n\n<p>tinnitus increased</p>\n\n<p>no giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 17:43:23','','0000-00-00 00:00:00'),(2482,0,0,1417,1376,1733,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--two&thinsp; episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 17:53:40','','0000-00-00 00:00:00'),(2483,0,0,1417,1376,1733,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 17:53:42','','0000-00-00 00:00:00'),(2484,0,0,1419,1378,1735,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---medicine skipped&thinsp;</p>\n\n<p>recurence of vertigo and headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:06:41','','0000-00-00 00:00:00'),(2485,0,0,1420,1379,1736,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:09:55','','0000-00-00 00:00:00'),(2487,0,0,1400,1360,1709,0,0,NULL,'','MADVICE','ZZZ','Remark','PHYSIOTHERAPY FOR LOWERBACK PAIN','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-10-28 18:12:32','','0000-00-00 00:00:00'),(2488,0,0,1377,1337,1677,0,0,NULL,'','CC','ZZZ','Remark','C/O CHEST PAIN ||','','',0,'0000-00-00 00:00:00','drarchit','2025-10-28 18:13:55','','0000-00-00 00:00:00'),(2489,0,0,1377,1337,1677,0,0,NULL,'','CC','ZZZ','Remark','C/O PALPITATION ||','','',0,'0000-00-00 00:00:00','drarchit','2025-10-28 18:13:55','','0000-00-00 00:00:00'),(2490,0,0,1424,1383,1740,0,0,NULL,'','CC','ZZZ','Remark','THROAT IRRITATION----FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:14:18','','0000-00-00 00:00:00'),(2491,0,0,1424,1383,1740,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---granular and congested&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:14:28','','0000-00-00 00:00:00'),(2492,0,0,1377,1337,1677,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>clinically nad</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-10-28 18:14:29','','0000-00-00 00:00:00'),(2493,0,0,1427,1386,1743,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:16:52','','0000-00-00 00:00:00'),(2494,0,0,1427,1386,1743,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR DISCHARGE ----FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:17:14','','0000-00-00 00:00:00'),(2495,0,0,1427,1386,1743,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>right ear scanty discharge&thinsp;</p>\n\n<p>nose---allergic mucosa</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:17:36','','0000-00-00 00:00:00'),(2496,0,0,1430,1390,1747,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER BACK PAIN WITH BOTH OA KNEE','','',0,'0000-00-00 00:00:00','drsagar','2025-10-28 18:19:05','','0000-00-00 00:00:00'),(2497,0,0,1429,1389,1746,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case------medicine skipped</p>\n\n<p>left ear pain</p>\n\n<p>left ear tinnitus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:22:32','','0000-00-00 00:00:00'),(2498,0,0,1423,1382,1739,0,0,NULL,'','CC','ZZZ','Remark','BACKACHE | 15 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-28 18:28:21','','0000-00-00 00:00:00'),(2499,0,0,1431,1391,1748,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:28:32','','0000-00-00 00:00:00'),(2500,0,0,1431,1391,1748,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:28:32','','0000-00-00 00:00:00'),(2501,0,0,1431,1391,1748,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:28:34','darshan','2025-10-28 18:29:00'),(2502,0,0,1431,1391,1748,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo with headache&thinsp;</p>\n\n<p>no associated other cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:28:50','','0000-00-00 00:00:00'),(2503,0,0,1431,1391,1748,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:29:01','','0000-00-00 00:00:00'),(2504,0,0,1428,1387,1744,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:33:18','','0000-00-00 00:00:00'),(2505,0,0,1428,1387,1744,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>dix halpike--right torsonal geotropic nystamgus&thinsp;</p>\n\n<p>hit--nad</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:33:44','','0000-00-00 00:00:00'),(2506,0,0,1428,1387,1744,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:34:10','','0000-00-00 00:00:00'),(2508,0,0,1428,1387,1744,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER\n','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:35:06','','0000-00-00 00:00:00'),(2509,0,0,1412,1371,1728,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:42:30','','0000-00-00 00:00:00'),(2511,0,0,627,597,1750,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:49:56','','0000-00-00 00:00:00'),(2513,0,0,627,597,1750,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:51:36','','0000-00-00 00:00:00'),(2515,0,0,1412,1371,1728,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-28 18:54:26','','0000-00-00 00:00:00'),(2516,0,0,1436,1396,1756,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positonal giddiness without any cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 19:03:27','darshan','2025-10-28 19:05:23'),(2517,0,0,1436,1396,1756,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ---FEW DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 19:04:54','','0000-00-00 00:00:00'),(2518,0,0,1436,1396,1756,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---faint torsonal geotrpic nystmgus</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 19:05:47','darshan','2025-10-28 19:06:07'),(2519,0,0,1436,1396,1756,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 19:06:37','','0000-00-00 00:00:00'),(2522,0,0,1436,1396,1756,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-28 19:08:56','','0000-00-00 00:00:00'),(2523,0,0,1445,1405,1768,0,0,NULL,'','CC','ZZZ','Remark','CONVULSION||','','',0,'0000-00-00 00:00:00','drjayant','2025-10-28 19:10:43','','0000-00-00 00:00:00'),(2524,0,0,1445,1405,1768,0,0,NULL,'','MADVICE','ZZZ','Remark','ADMISSION-REFUSED','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-10-28 19:11:11','','0000-00-00 00:00:00'),(2525,0,0,1437,1397,1757,0,0,NULL,'','CC','ZZZ','Remark','EAR IRRITATIONFEW MONTHS  OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 19:18:34','','0000-00-00 00:00:00'),(2526,0,0,1437,1397,1757,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Both ear wax</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 19:18:57','','0000-00-00 00:00:00'),(2528,0,0,1437,1397,1757,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT EAR WAX REMOVAL NEXT TIME','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-28 19:20:44','','0000-00-00 00:00:00'),(2529,0,0,1408,1368,1721,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE APPENDICITIS WITH ABSCESS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-28 19:23:54','','0000-00-00 00:00:00'),(2530,0,0,1365,1325,1665,0,0,NULL,'','DIAG','ZZZ','Remark','RT LOWER  URETERIC STONE (9 MM)','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-28 19:24:41','','0000-00-00 00:00:00'),(2531,0,0,1365,1325,1665,0,0,NULL,'','DIAG','ZZZ','Remark','BILATERAL RENAL CONCRETATION','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-28 19:24:54','','0000-00-00 00:00:00'),(2532,0,0,1369,1329,1669,0,0,NULL,'','DIAG','ZZZ','Remark','GALL BLADDER STONES','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-28 19:25:59','','0000-00-00 00:00:00'),(2533,0,0,1369,1329,1669,0,0,NULL,'','DIAG','ZZZ','Remark','GB POLYP','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-28 19:26:02','','0000-00-00 00:00:00'),(2534,0,0,1372,1332,1672,0,0,NULL,'','DIAG','ZZZ','Remark','CLW ON  LOWER  LIP','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-28 19:33:20','','0000-00-00 00:00:00'),(2535,0,0,1448,1408,1771,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---single episde of vertigo with fall down</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 19:36:06','darshan','2025-10-28 19:36:58'),(2536,0,0,1449,1409,1772,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--no improvment&thinsp;</p>\n\n<p>sense of imbalance +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-28 19:40:07','','0000-00-00 00:00:00'),(2538,0,0,1449,1409,1772,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-28 19:42:50','','0000-00-00 00:00:00'),(2539,0,0,1411,1370,1726,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-28 20:00:14','','0000-00-00 00:00:00'),(2540,0,0,1411,1370,1726,0,0,NULL,'','DIAG','ZZZ','Remark','SKIN TAG','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-28 20:00:21','','0000-00-00 00:00:00'),(2541,0,0,1410,106,1724,0,0,NULL,'','DISCDIAG','','','<P><STRONG>SUPRAVENTICULAR TACHYCARDIA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 21:28:22','mo','2025-10-29 14:46:40'),(2542,0,0,1410,106,1724,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-28 21:28:22','mo','2025-10-29 14:46:40'),(2543,0,0,1410,106,1724,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 54 YEARS OLD FEMALE PATIENT P/W</P>\r\n\r\n<P>C/O: CHEST PAIN;DOE;1-2 EPISODES OF VOMITING;GENERALISED WEAKNESS;CHEST HEAVINESS SINCE LAST 2 HOURS.</P>\r\n\r\n<P>NO ANY CO-MORBIDITY.</P>\r\n\r\n<P>SO,RELATIVE BROUGHT HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-98.2 F</P>\r\n\r\n<P>PR-198/MIN</P>\r\n\r\n<P>BP-134/80MMHG</P>\r\n\r\n<P>SPO2-96% ON RA</P>\r\n\r\n<P>RR-26/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+,TACHYCARDIA+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>RBS-160MG/DL</P>\r\n\r\n<P>-ECG DONE.S/O SVT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>-WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED ACCORDINGLY.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28/10/25,</P>\r\n\r\n<P>-ALL REQUIRED BLOOD INVESTIGATION SENT AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>-IV DILZEM GIVEN.LMWX STARTED.</P>\r\n\r\n<P>-TROP-I SENT.S/O NEGATIVE.</P>\r\n\r\n<P>-TSH DONE.S/O NORMAL.</P>\r\n\r\n<P>-GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>-2D ECHO DONE.</P>\r\n\r\n<P>-FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>29/10/2025,</P>\r\n\r\n<P>-ECG DONE</P>\r\n\r\n<P>-2D ECHO DONE ; LVEF: 55%</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 21:28:22','mo','2025-10-29 14:46:40'),(2544,0,0,1410,106,1724,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ DILZEM</P>\r\n\r\n<P>INJ CLEXANE</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>TAB ECOSPRIN</P>\r\n\r\n<P>TAB PROLOMET XL</P>\r\n\r\n<P>TAB OPVAST</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-28 21:29:45','mo','2025-10-29 14:46:40'),(2545,0,0,1276,100,1572,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 01:25:28','mo','2025-10-29 12:45:02'),(2546,0,0,1276,100,1572,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 15 DAYS WITH CBC,STOOL FOR OB&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 01:25:28','mo','2025-10-29 12:45:02'),(2547,0,0,1410,106,1724,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 15 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 01:29:57','mo','2025-10-29 14:46:40'),(2548,0,0,1295,99,1563,0,0,NULL,'','DISCDIAG','','','<P><STRONG>UMBILICAL HERNIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>HYPERTENSION (1ST TIME DETECTED)&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 01:32:55','mo','2025-10-29 19:29:45'),(2549,0,0,1295,99,1563,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-29 01:32:55','mo','2025-10-29 19:29:45'),(2550,0,0,1295,99,1563,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 41 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nC/O: PAIN &AMP; BULGING IN UMBILICAL REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO CONSTIPATION</P>\r\n\r\n<P>O/E: UMBILICAL HERNIA+</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 3-4 MONTH BUT GRADUALLY INCRESEAD SO PT PRIMARY CONSULTED KESHOD AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>CHEST X-RAY (27-10-2025)</P>\r\n\r\n<P>USG ABDOMEN WITHPELVIS (18-10-2025)</P>\r\n\r\n<P>ECG, PRE-OP PROFLE (26-10-2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-81/MIN, BP-154/100MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ECG DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nLAPAROSCOPIC UMBILICAL HERNIOPLASTY (E-TEP-RS) DONE BY DR PRATAPSINH DODIYA ON 27/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO ICU.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFULL SO PATIENT SHIFTED TO ICU</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 01:32:55','mo','2025-10-29 19:29:45'),(2551,0,0,1408,105,1723,0,0,NULL,'','DISCDIAG','','','<P><STRONG>APPENDICULAR PERFORATION</STRONG></P>\r\n\r\n<P><STRONG>PERITONITIS</STRONG></P>\r\n\r\n<P><STRONG>UMBILICAL HERNIA</STRONG></P>\r\n\r\n<P><STRONG>H/O GUN SHOT INJURY-OPERATED (HEAD)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 01:41:36','mo','2025-11-03 13:15:47'),(2552,0,0,1408,105,1723,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp;45 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nC/O: PAIN IN RIF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA, VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER ON &AMP; OFF</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 8-10 DAYS SO PT PRIMARY CONSULTED AT KRISHNA HOSPITAL MORBI AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN + PELVIS (21-10-2025)</P>\r\n\r\n<P>CT SCAN OF ABDOMEN + PELVIS (P+C) (28-10-2025</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-111/MIN, BP-130/80MMHG, SPO2-98% ON RA, RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>2D ECHO DONE ON 28/10/2025 WHICH S/O: LVEF:60%</P>\r\n\r\n<P>PHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nLAPAROSCOPIC APPENDICECTOMY + ADHESINOLYSIS + PERITONEAL LAVAGE DONE BY DR PRATAPSINH DODIYA AND DR B.M THANKI&nbsp;ON 29/10/2025 UNDER ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO ICU FOR FURTHER MANAGEMENT</P>\r\n\r\n<P>FURTHER HOURS WAS UNEVENTFULL IN ICU SO PATIENT SHIFTED TO WARD WITH STABLE STATUS.</P>\r\n\r\n<P>RIGHT SUBCLAVIAN CVP LINE INSERTION DONE BY DR CHAITANYA GOHEL IN ICU UNDER OBSERVATION&nbsp; WITH ALL ASEPTIC PRECAUTIONS ON 30/10/25.</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL SUPPLIMENT&nbsp;</P>\r\n\r\n<P>PUS C/S S/O: GRAM NEGATIVE BACILLI KLEIBSEILLA PNUEMONIA AND TREATMENT MODIFIED @ SENSITIVITY</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 01:41:36','mo','2025-11-03 13:15:47'),(2553,0,0,1408,105,1723,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS</P>\r\n\r\n<P>AVOID HEAVY STRAIN FOR FEW DAYS</P>\r\n\r\n<P>CENTRAL LINE CARE AS ADVICED</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 01:41:36','mo','2025-11-03 13:15:47'),(2554,0,0,1408,105,1723,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MERO</P>\r\n\r\n<P>INJ TIGEBAX</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ AMIKACIN</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ LEVIGRESS</P>\r\n\r\n<P>TAB LEVIGRESS</P>\r\n\r\n<P>INJ KCL DRIP&nbsp;</P>\r\n\r\n<P>INJ PERINORM&nbsp;</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 01:41:36','mo','2025-11-03 13:15:47'),(2555,0,0,1403,107,1727,0,0,NULL,'','DISCDIAG','','','<P><STRONG>UROSEPSIS</STRONG></P>\r\n\r\n<P><STRONG>HYPONATREMIA</STRONG></P>\r\n\r\n<P><STRONG>UNCONTROLLED DM TYPE II</STRONG></P>\r\n\r\n<P><STRONG>K/C/O:&nbsp; HTN, CAD,DM II</STRONG></P>\r\n\r\n<P><STRONG>HBSAG POSITIVE</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 01:59:39','mo','2025-11-01 12:49:56'),(2556,0,0,1403,107,1727,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-29 01:59:39','mo','2025-11-01 12:49:56'),(2557,0,0,1403,107,1727,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 76 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II SINCE 15 YEAR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;HTN SINCE 15 YEAR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CAD SINCE 3 YEAR<BR />\r\nH/O: OPERATED CASE OF CA BREAST (LEFT) 3 YR AGO</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; <STRONG>&nbsp;</STRONG> <STRONG>HBSAG POSITIVE</STRONG><BR />\r\nC/O: FEVER WITH CHILL&nbsp; &nbsp;SINCE 2-3 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DOE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA, VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BURNING MICTURITION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; B/L PEDAL EDEMA SINCE 1 MONTH</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 2-3 DAYS SO&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>BLOOD IX, ECG (28/10/2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-100.4&#39;F, PR-103/MIN, BP-120/70MMHG, SPO2-96% ON RA, RR-28/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P><STRONG>HBSAG DONE WHICH WAS POSITIVE</STRONG>, SO UNIVERSAL PRECAUTIONS FOLLOWED.</P>\r\n\r\n<P>URINE R/M DONE WHICH S/O PUS CELL: 40-50</P>\r\n\r\n<P>IN VIEW OF BREATHLESSNESS, 2D ECHO DONE ON 29-10-2025, LVEF: 55%</P>\r\n\r\n<P>USG KUB DONE ON 29/10/25 WHICH S/O;</P>\r\n\r\n<P>-URINARY BLADDER IS PARTIALLY FILLED AND SHOWS MILD WALL PROMINANCE (3-4 MM)</P>\r\n\r\n<P>REQUIRED BLOOD INVEATIGATION DONE WHICH S/O HYPONATREMIA SO TREATMENT MODIFIED ACCORDINGLY</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 01:59:39','mo','2025-11-01 12:49:56'),(2558,0,0,1403,107,1727,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX S</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ DYTOR&nbsp;</P>\r\n\r\n<P>TAB ECOSPRIN AV</P>\r\n\r\n<P>TAB SITASON D</P>\r\n\r\n<P>TAB METRIDE PLUS</P>\r\n\r\n<P>TAB CORTEL M</P>\r\n\r\n<P>TAB TOLVAPTAN</P>\r\n\r\n<P>INJ MIXTARD</P>\r\n\r\n<P>TAB LANOL ER</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 01:59:39','mo','2025-11-01 12:49:56'),(2559,0,0,1264,98,1536,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>LAPAROSCOPIC HYDATID CYST EXCISION DONE BY DR PRATAPSINH DODIYA ON 27/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 02:09:12','mo','2025-10-29 12:53:21'),(2560,0,0,1264,98,1536,0,0,NULL,'','OTNOTE','','','<p>per-op findings:</p>\r\n\r\n<p>-10 mm supraumbilical port insertion done</p>\r\n\r\n<p>-rest of port insertion done under vision</p>\r\n\r\n<p>-cyst in right lower lobe adherent with diaphragm</p>\r\n\r\n<p>-cyst isolated from surrounding with savlon gause&nbsp;to prevent spillage to surrounding</p>\r\n\r\n<p>-cyst opened and suck out</p>\r\n\r\n<p>-all&nbsp; daughter cysts with fluid aspiration done without spillage</p>\r\n\r\n<p>-cyst wall (partial) excision done</p>\r\n\r\n<p>-no visible billiary comminication seen</p>\r\n\r\n<p>-gause piece and cyct wall removal done in endobag</p>\r\n\r\n<p>-drain kept in cyst cavity</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-10 mm port sheath closed with vicryl no.1</p>\r\n\r\n<p>-skin closed with skin steppler&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 02:09:12','mo','2025-10-29 12:53:21'),(2561,0,0,1295,99,1563,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>LAPAROSCOPIC UMBILICAL HERNIOPLASTY (E-TEP-RS) DONE BY DR PRATAPSINH DODIYA ON 27/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 02:27:50','mo','2025-10-29 19:29:45'),(2562,0,0,1295,99,1563,0,0,NULL,'','OTNOTE','','','<p>-lhc port insertion done by open method in retro rectus space</p>\r\n\r\n<p>-blunt dissection done with 10mm telescope</p>\r\n\r\n<p>-rest of port insertion done under vision</p>\r\n\r\n<p>-retro rectus dissection done on left side till arcuate line.</p>\r\n\r\n<p>-cArolina cross over done by cutting left side prs &amp; continous in pre peritoneal space on right side</p>\r\n\r\n<p>-hernia sac opened, omentum reduced in peritoneal cavity</p>\r\n\r\n<p>-dissection done till arcuate line</p>\r\n\r\n<p>-peritoneal rent &amp; hernia site defect in peritoneum closed with vicryl 3-0</p>\r\n\r\n<p>-linea alba defect at umbilicus closed with prolene no 1</p>\r\n\r\n<p>-prolene mesh 22 x 18 cm kept &amp; fixed with left prs</p>\r\n\r\n<p>-romovac no 14 kept</p>\r\n\r\n<p>-10 mm port sheath closed with vicryl no 1</p>\r\n\r\n<p>-skin closed with skin stappler.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 02:27:50','mo','2025-10-29 19:29:45'),(2563,0,0,1295,99,1563,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IN J PERINORM</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>SYP CREMAFFIN PLUS</P>\r\n\r\n<P>TAB STATEL</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 02:27:50','mo','2025-10-29 19:29:45'),(2564,0,0,1464,1423,1792,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-29 10:33:22','','0000-00-00 00:00:00'),(2565,0,0,1457,1416,1784,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 10:58:30','','0000-00-00 00:00:00'),(2566,0,0,1459,1418,1786,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 11:03:58','','0000-00-00 00:00:00'),(2567,0,0,912,880,1783,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---headache with giddiness +</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 11:09:02','darshan','2025-10-29 14:09:31'),(2570,0,0,1466,1425,1796,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 11:13:33','darshan','2025-10-29 11:13:33'),(2571,0,0,637,607,1790,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 11:18:44','','0000-00-00 00:00:00'),(2573,0,0,637,607,1790,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER FOR 5 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-29 11:20:06','','0000-00-00 00:00:00'),(2574,0,0,1460,1419,1787,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR  PAIN---1 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 11:27:10','','0000-00-00 00:00:00'),(2575,0,0,1460,1419,1787,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right AOM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 11:27:15','','0000-00-00 00:00:00'),(2576,0,0,1462,1421,1789,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 11:36:28','','0000-00-00 00:00:00'),(2577,0,0,1477,1436,1810,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 11:42:46','','0000-00-00 00:00:00'),(2578,0,0,1478,1437,1812,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-29 11:47:35','drjayant','2025-10-29 12:06:36'),(2579,0,0,1264,98,1536,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>URINE OUTPUT ADEQUATE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>DRAIN IN SITU</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 11:51:44','mo','2025-10-29 12:53:21'),(2580,0,0,1264,98,1536,0,0,NULL,'','ADVICE','','','<P>DRAIN CARE</P>\r\n\r\n<P>TAKE SOFT DIET FOR FEW DAYS</P>\r\n\r\n<P>AVOID HEAVY STRAIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>REMOVE BUPRAGESIC PATCH&nbsp; &nbsp; AFTER&nbsp; 3 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 11:51:44','mo','2025-10-29 12:53:21'),(2581,0,0,1467,1426,1798,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 11:53:42','','0000-00-00 00:00:00'),(2582,0,0,1264,98,1536,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.CEFTUM (500)&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD FOR 5 DAYS............(10)</P>\r\n\r\n<P>TAB.ZERODOL SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD FOR 5 DAYS.............(10)</P>\r\n\r\n<P>TAB.RBSON&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE&nbsp;FOOD FOR 5 DAYS...........(10)&nbsp;</P>\r\n\r\n<P>TAB.BANDY (400)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD FOR 2&nbsp; MONTHS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 11:57:50','mo','2025-10-29 12:53:21'),(2583,0,0,1461,1420,1788,0,0,NULL,'','CC','ZZZ','Remark','C/O CHEST PAIN  | 4 DAYS | RETROSTENAL','','',0,'0000-00-00 00:00:00','drarchit','2025-10-29 11:57:53','','0000-00-00 00:00:00'),(2584,0,0,1461,1420,1788,0,0,NULL,'','CC','ZZZ','Remark','C/O GABHRAMAN | 3 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-29 11:57:53','','0000-00-00 00:00:00'),(2585,0,0,1461,1420,1788,0,0,NULL,'','CC','ZZZ','Remark','C/O LEG PAIN  | 15 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-29 11:57:53','','0000-00-00 00:00:00'),(2586,0,0,1461,1420,1788,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-10-29 11:58:05','','0000-00-00 00:00:00'),(2587,0,0,1469,1428,1800,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better fpr giddiness&thinsp;</p>\n\n<p>headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 12:02:48','','0000-00-00 00:00:00'),(2588,0,0,1470,1429,1801,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---partiall better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 12:08:50','','0000-00-00 00:00:00'),(2589,0,0,1488,1447,1822,0,0,NULL,'','DIAG','ZZZ','Remark','PILONIDAL SINUS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-29 12:11:21','','0000-00-00 00:00:00'),(2590,0,0,1479,1438,1813,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 12:21:35','','0000-00-00 00:00:00'),(2591,0,0,1480,1439,1814,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-10-29 12:24:01','','0000-00-00 00:00:00'),(2592,0,0,1493,1452,1828,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT SIDE PLANATAR FASCITIS','','',0,'0000-00-00 00:00:00','drsagar','2025-10-29 12:29:20','','0000-00-00 00:00:00'),(2593,0,0,1179,91,1438,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>TLC LINE INSETION DONE ON 26/10/25</P>\r\n\r\n<P>2 CYCLE OF HD DONE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 12:33:52','mo','2025-10-29 12:36:47'),(2594,0,0,1179,91,1438,0,0,NULL,'','CONDONADDMISSION','','','<P>FEBRILE</P>\r\n\r\n<P>HYPOTENSIVE</P>\r\n\r\n<P>ANURIA</P>\r\n\r\n<P>FATIGUE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 12:33:52','mo','2025-10-29 12:36:47'),(2595,0,0,1179,91,1438,0,0,NULL,'','DISCCOND','','','<P>SPO2: 88% WITH 2 LIT OXYGEN SUPPORT</P>\r\n\r\n<P>FEVER OCCASIONALLY</P>\r\n\r\n<P>ANURIA (URINE OUTPUT NILL)</P>\r\n\r\n<P>ANOREXIA</P>\r\n\r\n<P>CONCIOUS BUT CONFUSED, FOLLOW VERBAL COMMAND</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TLC LINE D:4 IN SITU</P>\r\n\r\n<P>FOLEY&#39;S CATHETER NO:14 D:5 IN SITU&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 12:33:52','mo','2025-10-29 12:36:47'),(2596,0,0,1276,100,1572,0,0,NULL,'','TREATDISC_TI','','','<P>TAB RIFAGUT&nbsp; &nbsp; (550)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...(10)</P>\r\n\r\n<P>TAB NEXPROFAST&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;....(15)</P>\r\n\r\n<P>TAB ZOFER MD&nbsp; (8MG)&nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ......(21)</P>\r\n\r\n<P>TAB VONO (20)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .....(15)</P>\r\n\r\n<P>TAB ZOLFRESH (10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;....(15)</P>\r\n\r\n<P>TAB SIDIA (100)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1/2--0&nbsp; &nbsp;BERFORE LUNCH&nbsp; &nbsp; &nbsp; &nbsp;.......(15)</P>\r\n\r\n<P>SYP DIGIRAFT&nbsp; 5ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TDS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ....(1)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 12:34:18','mo','2025-10-29 12:45:02'),(2597,0,0,1479,1438,1813,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling any time and remains for few mins to hrs</p>\n\n<p>&thinsp;heaviness of head +</p>\n\n<p>no associated other cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 12:35:07','','0000-00-00 00:00:00'),(2598,0,0,1479,1438,1813,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta--left very severe sn deafness</p>\n\n<p>&thinsp; &thinsp; &thinsp; &thinsp;right moderate sn deafness&thinsp;</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 12:35:16','darshan','2025-10-29 13:45:44'),(2600,0,0,1479,1438,1813,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 12:35:57','','0000-00-00 00:00:00'),(2601,0,0,1490,1449,1824,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow uup case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 12:40:17','','0000-00-00 00:00:00'),(2602,0,0,1360,102,1660,0,0,NULL,'','DISCDIAG','','','<P><STRONG>BILATERAL COMMUNITY ACQUIRED PNEUMONITIS</STRONG></P>\r\n\r\n<P><STRONG>WITH SEVERE ANAEMIA</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, DM II IN OPERATIVE CASE OF&nbsp;LONG SPIRAL #&nbsp;LOWER 4TH RIGHT FEMUR</STRONG></P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 12:53:05','mo','2025-10-31 12:40:06'),(2603,0,0,1360,102,1660,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. LACTAGARD</P>\r\n\r\n<P>INJ. CLARIBID</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ. PCM</P>\r\n\r\n<P>INJ. CLEXANE</P>\r\n\r\n<P>INJ. H. MIXTARD</P>\r\n\r\n<P>INJ.TAB. LINOX</P>\r\n\r\n<P>INJ. DYTOR</P>\r\n\r\n<P>2 UNIT RCC</P>\r\n\r\n<P>TAB APIXAGRESS</P>\r\n\r\n<P>TAB ULTRACET SEMI</P>\r\n\r\n<P>TAB CREAMALAX</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 12:53:05','mo','2025-10-31 12:40:06'),(2604,0,0,1463,1422,1791,0,0,NULL,'','CC','ZZZ','Remark','C/O COUGH  | 4 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-29 12:54:04','','0000-00-00 00:00:00'),(2606,0,0,1463,1422,1791,0,0,NULL,'','CC','ZZZ','Remark','C/O BODYACHE  | 2 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-29 12:54:13','','0000-00-00 00:00:00'),(2607,0,0,1492,1451,1827,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 12:54:42','','0000-00-00 00:00:00'),(2608,0,0,1497,1456,1833,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT SIDE LOWER LIMB RADICULOPATHY','','',0,'0000-00-00 00:00:00','drsagar','2025-10-29 12:55:06','','0000-00-00 00:00:00'),(2609,0,0,1465,1424,1793,0,0,NULL,'','CC','ZZZ','Remark','C/O DOE  | 1 MONTHS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-29 12:59:32','','0000-00-00 00:00:00'),(2610,0,0,1465,1424,1793,0,0,NULL,'','CC','ZZZ','Remark','C/O GBHRAMAN  | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-29 12:59:32','','0000-00-00 00:00:00'),(2611,0,0,1465,1424,1793,0,0,NULL,'','HIST','ZZZ','Remark','<p>PATIENT HAD ONE EPISODE OF V.TECH F/B LOSS OF CONCIUSNESS ,&thinsp; &thinsp;DC SHOCK WAS GIVEN,&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-10-29 13:00:13','','0000-00-00 00:00:00'),(2612,0,0,1465,1424,1793,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CVS - S1 S2 NORMAL, DIASTOLIC MURMUR ++,&thinsp;</p>\n\n<p>CAG DONE JUNE 25 - NORMAL CORONARY&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-10-29 13:01:00','','0000-00-00 00:00:00'),(2613,0,0,1498,1457,1834,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 13:01:29','','0000-00-00 00:00:00'),(2614,0,0,1295,99,1563,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 13:22:07','mo','2025-10-29 19:29:45'),(2615,0,0,1295,99,1563,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>AVOID HEAVY WORK FOR 6 WEEKS</P>\r\n\r\n<P>TAKE SRD/ADD DIET</P>\r\n\r\n<P>WEIGHT LOSS</P>\r\n\r\n<P>WEAR ABDOMINAL BELT WHILE MOBILIZATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 13:22:07','mo','2025-10-29 19:29:45'),(2616,0,0,1295,99,1563,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM (500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(10)</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(10)</P>\r\n\r\n<P>TAB ZERODOL - P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; ........(10)</P>\r\n\r\n<P>TAB STATEL (40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(5)</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp; &nbsp; &nbsp; 10ML&nbsp; HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 13:22:07','mo','2025-10-29 19:29:45'),(2617,0,0,1499,1458,1835,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 13:34:37','','0000-00-00 00:00:00'),(2618,0,0,1479,1438,1813,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 13:46:29','','0000-00-00 00:00:00'),(2620,0,0,1500,1459,1836,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 13:55:05','','0000-00-00 00:00:00'),(2622,0,0,1479,1438,1813,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-29 14:08:15','','0000-00-00 00:00:00'),(2623,0,0,912,880,1783,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain --nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 14:09:48','darshan','2025-10-29 14:10:38'),(2626,0,0,912,880,1783,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY--NAD','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-29 14:12:00','','0000-00-00 00:00:00'),(2627,0,0,1501,1460,1837,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 14:14:22','','0000-00-00 00:00:00'),(2628,0,0,1410,106,1724,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 14:35:11','mo','2025-10-29 14:46:40'),(2629,0,0,1410,106,1724,0,0,NULL,'','TREATDISC_TI','','','<P>TAB BISOBIS (2.5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 15 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 14:46:07','mo','2025-10-29 14:46:40'),(2630,0,0,1456,108,1782,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE ENTERO HAEMORRHAGIC GASTRITIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 16:12:51','mo','2025-11-01 12:20:49'),(2631,0,0,1456,108,1782,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 48 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nC/O: SEVERE WATERY DIARRHOEA 7-8 EPISODE/DAY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NAUSEA, VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; INTOLERANCE OF FOOD</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GEN. WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 3 DAYS FOR THAT PT PRIMARY CONSULTED GP AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-120/MIN, BP-90/60MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>TYPHI DOT DONE ON 29/10/2025 WHICH IS NEGATIVE</P>\r\n\r\n<P>WIDAL TUBE TEST SENT WHICH WAS NEGATIVE.</P>\r\n\r\n<P>STOOL R/M DONE WHICH S/O: OB:(++++), PUS CELL: 100-120, RBC:25-28, BACTERIA DETECTED</P>\r\n\r\n<P>USG ABDOMEN DONE ON 29/10/2025 ; REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 16:12:51','mo','2025-11-01 12:20:49'),(2632,0,0,1456,108,1782,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP ON 13/11/2025.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 16:12:51','mo','2025-11-01 12:20:49'),(2633,0,0,1456,108,1782,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>CAP ENUFF</P>\r\n\r\n<P>CAP VSL #3</P>\r\n\r\n<P>CAP DOXY</P>\r\n\r\n<P>TAB THYRONORM</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>TAB LOPAMIDE</P>\r\n\r\n<P>INJ AMIKACIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 16:12:51','mo','2025-11-01 12:20:49'),(2634,0,0,1403,107,1727,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP ON 13-11-2025</P>\r\n\r\n<P>HOLD OWN MEDICINE&nbsp; &nbsp; &nbsp; TILL FOLLOW UP</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 16:16:45','mo','2025-11-01 12:49:56'),(2635,0,0,1506,1465,1842,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better for giddiness&thinsp;</p>\n\n<p>tinnitus +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 17:26:30','','0000-00-00 00:00:00'),(2636,0,0,1504,1463,1840,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 17:28:47','','0000-00-00 00:00:00'),(2637,0,0,1507,1466,1843,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 17:34:34','','0000-00-00 00:00:00'),(2638,0,0,1508,1467,1844,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 17:34:56','','0000-00-00 00:00:00'),(2639,0,0,1505,1464,1841,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 17:39:33','','0000-00-00 00:00:00'),(2640,0,0,1509,1468,1845,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 17:48:14','','0000-00-00 00:00:00'),(2641,0,0,1509,1468,1845,0,0,NULL,'','HIST','ZZZ','Remark','<p>sense of imbalance when pt walks&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>both ear deafness +</p>\n\n<p>no associated other cns symptosm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 17:50:38','','0000-00-00 00:00:00'),(2642,0,0,1509,1468,1845,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----biaterla high freq severe sn deafness</p>\n\n<p>stabilometry--vestibular score reduced significatly</p>\n\n<p>vng---bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 17:50:47','darshan','2025-10-29 19:17:57'),(2643,0,0,1509,1468,1845,0,0,NULL,'','DIAG','ZZZ','Remark','BILATELR VESTIBVULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 17:51:30','','0000-00-00 00:00:00'),(2644,0,0,1512,1471,1848,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partily better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 17:53:53','','0000-00-00 00:00:00'),(2646,0,0,1512,1471,1848,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-29 17:54:51','','0000-00-00 00:00:00'),(2647,0,0,1511,1470,1847,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 17:57:02','','0000-00-00 00:00:00'),(2648,0,0,1513,1472,1849,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:09:32','','0000-00-00 00:00:00'),(2649,0,0,1513,1472,1849,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:12:04','','0000-00-00 00:00:00'),(2650,0,0,1513,1472,1849,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bialtelr high frq severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:12:15','darshan','2025-10-29 19:26:10'),(2651,0,0,1513,1472,1849,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:12:23','','0000-00-00 00:00:00'),(2652,0,0,1518,1477,1855,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:20:01','','0000-00-00 00:00:00'),(2653,0,0,1518,1477,1855,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head with sense of imbalance&thinsp;</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:21:23','','0000-00-00 00:00:00'),(2654,0,0,1518,1477,1855,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----right freq mild sn deafness</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--right acute partail vestibular defcit</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:21:32','darshan','2025-10-29 19:36:55'),(2656,0,0,623,593,1859,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:24:01','','0000-00-00 00:00:00'),(2658,0,0,623,593,1859,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAERNVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:25:24','','0000-00-00 00:00:00'),(2659,0,0,950,919,1854,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:28:14','','0000-00-00 00:00:00'),(2661,0,0,950,919,1854,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:29:19','','0000-00-00 00:00:00'),(2662,0,0,1525,1484,1864,0,0,NULL,'','CC','ZZZ','Remark','PRE OP FOR HYSTERECTOMY||','','',0,'0000-00-00 00:00:00','drjayant','2025-10-29 18:32:56','','0000-00-00 00:00:00'),(2663,0,0,1152,86,1363,0,0,NULL,'','DISCCOND','','','<P>AFBERILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 18:33:29','mo','2025-10-29 18:43:22'),(2664,0,0,1152,86,1363,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.ORNIFLOX&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3&nbsp;DAYS..............(6)</P>\r\n\r\n<P>CAP.PANTIDAC DSR&nbsp; &nbsp;&nbsp;&nbsp; 1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3&nbsp;DAYS..............(3)</P>\r\n\r\n<P>CAP.ROTOGUT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-1-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3&nbsp;DAYS..............(3)</P>\r\n\r\n<P>TAB.GIMMY M2&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1/2&nbsp; &nbsp; &nbsp; &nbsp; BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3&nbsp;DAYS..............(6)</P>\r\n\r\n<P>TAB.DAPACOOL-S&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0-1-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3&nbsp;DAYS..............(3)</P>\r\n\r\n<P>TAB.LANOL-ER (650MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS FOR FEVER</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN;</P>\r\n\r\n<P>INSULIN ENGLUCONT MIX 25&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; S/C&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;10 UNITS-BEFORE BREAKFAST</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;10 UNITS-BEFORE DINNER&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 18:33:29','mo','2025-10-29 18:43:22'),(2665,0,0,1514,1473,1850,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr&thinsp; feeling when pt is getting out of bed</p>\n\n<p>heaviness of head +</p>\n\n<p>frequent headache +</p>\n\n<p>no associted other cns symtoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:33:35','darshan','2025-10-29 18:37:06'),(2666,0,0,1514,1473,1850,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---5 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:35:19','','0000-00-00 00:00:00'),(2667,0,0,1514,1473,1850,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometyr--wnl</p>\n\n<p>vng---central vareity of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:36:10','darshan','2025-10-29 19:49:19'),(2668,0,0,1514,1473,1850,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:36:13','','0000-00-00 00:00:00'),(2669,0,0,1514,1473,1850,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---5 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:36:27','','0000-00-00 00:00:00'),(2670,0,0,1515,1474,1851,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----12 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:47:44','','0000-00-00 00:00:00'),(2671,0,0,1515,1474,1851,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotry feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptosm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:48:28','','0000-00-00 00:00:00'),(2672,0,0,1515,1474,1851,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>CCG---wnl</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:48:47','darshan','2025-10-29 20:00:54'),(2673,0,0,1515,1474,1851,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:48:59','','0000-00-00 00:00:00'),(2674,0,0,1520,1479,1857,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----partially better</p>\n\n<p>morning and evening&thinsp; sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 18:55:19','','0000-00-00 00:00:00'),(2675,0,0,1503,1462,1839,0,0,NULL,'','HIST','ZZZ','Remark','<p>headache ---today morning&thinsp;</p>\n\n<p>sense of imbalance&thinsp;</p>\n\n<p>heaviness of head&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 19:02:40','','0000-00-00 00:00:00'),(2676,0,0,1503,1462,1839,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absnt</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI b rain---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 19:02:58','','0000-00-00 00:00:00'),(2677,0,0,1516,1475,1852,0,0,NULL,'','CC','ZZZ','Remark','VERITGO---1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 19:09:37','','0000-00-00 00:00:00'),(2678,0,0,1516,1475,1852,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 19:09:42','','0000-00-00 00:00:00'),(2679,0,0,1522,1481,1860,0,0,NULL,'','CC','ZZZ','Remark','RECURRENT NASAL IRRITATION WITH BLOCKAG ---FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 19:12:11','','0000-00-00 00:00:00'),(2680,0,0,1522,1481,1860,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose---congested</p>\n\n<p>phx---granular and congested&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 19:12:25','','0000-00-00 00:00:00'),(2681,0,0,1513,1472,1849,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 19:26:42','','0000-00-00 00:00:00'),(2683,0,0,1532,1491,1873,0,0,NULL,'','CC','ZZZ','Remark','C/O EPIGASTRIC PAIN | 7 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-29 19:28:28','','0000-00-00 00:00:00'),(2684,0,0,1534,1493,1876,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 19:29:18','','0000-00-00 00:00:00'),(2686,0,0,1532,1491,1873,0,0,NULL,'','MADVICE','ZZZ','Remark','OGDSCOPY \nUSG ABDOMEN','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-10-29 19:31:47','','0000-00-00 00:00:00'),(2688,0,0,1536,1495,1878,0,0,NULL,'','CC','ZZZ','Remark','BILAT MILD PEDAL EDEMA | 60 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-29 19:36:18','','0000-00-00 00:00:00'),(2689,0,0,1536,1495,1878,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-29 19:36:21','','0000-00-00 00:00:00'),(2691,0,0,1518,1477,1855,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 19:38:34','','0000-00-00 00:00:00'),(2693,0,0,1513,1472,1849,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-29 19:42:27','','0000-00-00 00:00:00'),(2694,0,0,1346,103,1700,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 19:48:56','mo','2025-10-30 12:39:20'),(2695,0,0,1346,103,1700,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER&nbsp; 5 DAYS WITH S.UREA,S.CREAT,S.K+</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n\r\n<P>STRICT SUGAR CONTROL&nbsp;</P>\r\n\r\n<P>RBS MONITORING&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE&nbsp;</P>\r\n\r\n<P>HOLD TAB SACUMADA(100) TILL FOLLOW UP TO DR.DENISH SAVALIYA</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 19:48:56','mo','2025-10-30 12:39:20'),(2696,0,0,1346,103,1700,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MERO</P>\r\n\r\n<P>INJ CLINDATEC</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ NAHCO3</P>\r\n\r\n<P>INJ TRAMAZAC</P>\r\n\r\n<P>INJ H.ACTRAPID DRIP</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>BRIVEX EYE DROPS</P>\r\n\r\n<P>TOVAXO-T EYEDROPS</P>\r\n\r\n<P>INJ HUMINSULIN&nbsp;</P>\r\n\r\n<P>TAB ISOLAZINE</P>\r\n\r\n<P>TAB METOCARD XL</P>\r\n\r\n<P>TAB LASIX</P>\r\n\r\n<P>TAB KETOCHECK</P>\r\n\r\n<P>TAB ECOSPRIN A</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 19:48:56','mo','2025-10-30 12:39:20'),(2698,0,0,1518,1477,1855,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-29 19:51:24','','0000-00-00 00:00:00'),(2699,0,0,1515,1474,1851,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 20:01:43','','0000-00-00 00:00:00'),(2702,0,0,1515,1474,1851,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-29 20:05:59','','0000-00-00 00:00:00'),(2703,0,0,589,562,1880,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 20:12:44','','0000-00-00 00:00:00'),(2704,0,0,589,562,1880,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 20:13:19','','0000-00-00 00:00:00'),(2706,0,0,589,562,1880,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-29 20:13:35','','0000-00-00 00:00:00'),(2707,0,0,1538,1497,1883,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-29 20:18:01','','0000-00-00 00:00:00'),(2708,0,0,1195,93,1501,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 20:22:07','mo','2025-10-29 20:27:44'),(2709,0,0,1195,93,1501,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 20:22:07','mo','2025-10-29 20:27:44'),(2710,0,0,1195,93,1501,0,0,NULL,'','TREATDISC_TI','','','<P>TAB PANTODAC(40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ECOSPRIN (150 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB LIPITAS (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB EVION LC&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB GABAPIN (100)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB BISOWIN T&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB URIMAX (0.4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 20:27:30','mo','2025-10-29 20:27:44'),(2711,0,0,1383,104,1711,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PYLORIC STENOSIS</STRONG></P>\r\n\r\n<P><STRONG>(POST CORROSIVE INGESTION)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 23:29:06','mo','2025-11-04 17:56:00'),(2712,0,0,1383,104,1711,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-29 23:29:06','mo','2025-11-04 17:56:00'),(2713,0,0,1383,104,1711,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 32 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nH/O: CORROSIVE POISON(ACID) INGESTION BY OWN SELF ON 7/8/2025 F&#39;BY<BR />\r\nC/O: PERSISTANT VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ACID REGURGITATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; WEIGHT LOSS</P>\r\n\r\n<P>FOR ALL ABOVE MENTIONED COMPLAIN PT PRIMARY ADMITTED AT CIVIL HOSPITAL AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>X-RAY OF BARIUM OF BOLUS (02-10-2025)</P>\r\n\r\n<P>CHEST X-RAY (06-10-2025)</P>\r\n\r\n<P>GASTRO DUODENOSCOPY (27-10-2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-120/MIN, BP-80/50MMHG, SPO2-97% ON RA, RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28-10-2025,</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nLAPAROTOMY + GASTROJEJUNOSTOMY (ROUX EN Y) DONE BY DR PRATAPSINH DODIYA ON 28/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO ICU.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION INJ NORAD DRIP STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>29-10-2025,</P>\r\n\r\n<P>INJ NORAD DRIP TAPPER &AMP; OFF</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL.</P>\r\n\r\n<P>FURTHR ICU STAY UNEVENTFUL SO PT SHIFTED TO WARD</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>30-10-2025,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL SUPPLIMENT</P>\r\n\r\n<P>HYPOPROTIENMIA CORRECTED WITH INJ ALBUMEN SUPPLIMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>31-10-2025</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL SUPPLIMENT&nbsp;</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>01-11-2025</P>\r\n\r\n<P>IN VIEW OF ALTERED LFT REFERENCE OF DR RISHIKESH KALARIA(GASTROLOGIST) DONE AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>REVIEW OF DR ARCHIT RATHOD DONE AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>IN VIEW OF PERSISTENT HYPOKALEMIA&nbsp; DAILY INJ KCL DRIP TRANSFUSED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>02-11-2025</P>\r\n\r\n<P>S.ANTI HAV-IGM, S. ANTI HEV-IGM DONE WHICH ARE NEGATIVE.</P>\r\n\r\n<P>IN VIEW OF PERSISTENT HYPOKALEMIA&nbsp; DAILY INJ KCL DRIP TRANSFUSED</P>\r\n\r\n<P>ORALLY LIQUID DIET STARTED, TOLERATE WELL</P>\r\n\r\n<P>MOBILIZATION&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>03-11-2025</P>\r\n\r\n<P>IN VIEW OF PERSISTENT HYPOKALEMIA&nbsp; DAILY INJ KCL DRIP TRANSFUSED</P>\r\n\r\n<P>CATHETER CLAMP &AMP; REMOVE</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04-11-2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 23:29:06','mo','2025-11-04 17:56:00'),(2714,0,0,1383,104,1711,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3&nbsp;DAYS</P>\r\n\r\n<P>CENTRAL LINE CARE</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 23:29:06','mo','2025-11-04 17:56:00'),(2715,0,0,1383,104,1711,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ AVIL</P>\r\n\r\n<P>INJ KCL</P>\r\n\r\n<P>INJ NORAD</P>\r\n\r\n<P>BUPREGESIC PATCH</P>\r\n\r\n<P>INJ MGSO4</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>INJ ALBUREL</P>\r\n\r\n<P>INJ LASIX</P>\r\n\r\n<P>TAB ADDKAY</P>\r\n\r\n<P>INJ VIT K</P>\r\n\r\n<P>TAB UDILIV</P>\r\n\r\n<P>TAB STEMETIL MD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-29 23:29:06','mo','2025-11-04 17:56:00'),(2716,0,0,1456,108,1782,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O: FISSURECTOMY DONE BEFORE 3-4 YEAR</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 00:50:20','mo','2025-11-01 12:20:49'),(2717,0,0,1541,1500,1886,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for giddiness</p>\n\n<p>Headache off and on</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 10:44:44','','0000-00-00 00:00:00'),(2718,0,0,1541,1500,1886,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>previously Mri done ---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 10:45:07','','0000-00-00 00:00:00'),(2719,0,0,1544,1503,1891,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 10:59:59','','0000-00-00 00:00:00'),(2720,0,0,1544,1503,1891,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:00:40','','0000-00-00 00:00:00'),(2721,0,0,1544,1503,1891,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>CCG---AP displacement +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:00:54','darshan','2025-10-30 12:43:46'),(2722,0,0,1544,1503,1891,0,0,NULL,'','DIAG','ZZZ','Remark','RECURRENCT BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:01:12','','0000-00-00 00:00:00'),(2723,0,0,1546,1505,1895,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of vertigo&thinsp;</p>\n\n<p>4-5 episodes&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:06:01','','0000-00-00 00:00:00'),(2724,0,0,730,699,1893,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:12:57','','0000-00-00 00:00:00'),(2725,0,0,730,699,1893,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:13:26','','0000-00-00 00:00:00'),(2727,0,0,730,699,1893,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:14:14','','0000-00-00 00:00:00'),(2728,0,0,316,300,1894,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:18:13','','0000-00-00 00:00:00'),(2731,0,0,56,757,1900,0,0,NULL,'','CC','ZZZ','Remark','MILD WEAKNESS||','','',0,'0000-00-00 00:00:00','drjayant','2025-10-30 11:22:04','','0000-00-00 00:00:00'),(2733,0,0,56,757,1900,0,0,NULL,'','MADVICE','ZZZ','Remark','SUGAR RESTRICTED DIET','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-10-30 11:27:51','','0000-00-00 00:00:00'),(2734,0,0,1545,1504,1892,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---6 MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:31:01','','0000-00-00 00:00:00'),(2735,0,0,1545,1504,1892,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying donw in bed</p>\n\n<p>heaviness +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:32:12','darshan','2025-10-30 11:34:47'),(2736,0,0,1545,1504,1892,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---left side severe sn deafness(o)</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>CCG--AP displacement out of range</p>\n\n<p>VNG--left post canal bppv with hydrops</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:35:28','darshan','2025-10-30 13:20:09'),(2737,0,0,1545,1504,1892,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT BPPV WITH HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:36:37','','0000-00-00 00:00:00'),(2738,0,0,1547,1506,1896,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:38:28','','0000-00-00 00:00:00'),(2739,0,0,1549,1508,1899,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:42:06','','0000-00-00 00:00:00'),(2740,0,0,1556,1515,1911,0,0,NULL,'','CC','ZZZ','Remark','C/O GIDDINESS  | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-30 11:48:55','','0000-00-00 00:00:00'),(2742,0,0,1551,1510,1903,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling&thinsp; remians for few hrs&thinsp;</p>\n\n<p>heaviness of head continuous</p>\n\n<p>headache --episodic&thinsp;</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:50:06','darshan','2025-10-30 11:51:17'),(2743,0,0,1551,1510,1903,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:50:17','','0000-00-00 00:00:00'),(2744,0,0,1551,1510,1903,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:50:17','','0000-00-00 00:00:00'),(2745,0,0,1551,1510,1903,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>ct brain--nad</p>\n\n<p>Neurologist opinion taken</p>\n\n<p>pta---wnl</p>\n\n<p>stabilomtry---wnl</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:51:28','darshan','2025-10-30 13:29:53'),(2746,0,0,1551,1510,1903,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:51:33','','0000-00-00 00:00:00'),(2747,0,0,1557,1516,1913,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:55:06','','0000-00-00 00:00:00'),(2748,0,0,1542,1501,1889,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:59:34','','0000-00-00 00:00:00'),(2749,0,0,1542,1501,1889,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR TINNITUS --3-4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 11:59:54','','0000-00-00 00:00:00'),(2750,0,0,1542,1501,1889,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 12:00:09','','0000-00-00 00:00:00'),(2751,0,0,1346,103,1700,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>INCISION AND DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 28/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 12:00:46','mo','2025-10-30 12:39:20'),(2752,0,0,1346,103,1700,0,0,NULL,'','OTNOTE','','','<p>per-op findings:</p>\r\n\r\n<p>-carbuncle on chest wall</p>\r\n\r\n<p>-incision kept on chest wall</p>\r\n\r\n<p>-whole pus pockets, slough drained</p>\r\n\r\n<p>-cavity clean with saline, betadine &amp;h2o2</p>\r\n\r\n<p>-wound kept open</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-roller gauze pack dressing kept</p>\r\n\r\n<p>-pus sent for c/s</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 12:00:46','mo','2025-10-30 12:39:20'),(2753,0,0,1346,103,1700,0,0,NULL,'','TREATDISC_TI','','','<P>TAB LINOX (600)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(10)</P>\r\n\r\n<P>TAB DALACIN-C(300)&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......(10)</P>\r\n\r\n<P>TAB CALPOL(500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ..........(10)</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;........(10)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB GLYCINORM (40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0-1</P>\r\n\r\n<P>TAB ECOSPRIN A (150/20)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1</P>\r\n\r\n<P>TAB ISOLAZINE(20/37.5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1/2--0--1/2</P>\r\n\r\n<P>TAB METOCARD XL (25)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1</P>\r\n\r\n<P>TAB KETOCHECK&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1</P>\r\n\r\n<P>TAB LASIX(40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1/2--1/2--0&nbsp; &nbsp;</P>\r\n\r\n<P>TAB SOBISIS FORTE (1GM)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp;</P>\r\n\r\n<P>INJ HUMINSULIN&nbsp; &nbsp;R&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;S/C&nbsp; &nbsp; 10 UNIT BEFORE BREAKFAST</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 10 UNIT BEFORE LUNCH</P>\r\n\r\n<P>INJ HUMINSULIN 30/70&nbsp; &nbsp; &nbsp; &nbsp;S/C&nbsp; &nbsp; 16 UNIT BEFORE DINNER</P>\r\n\r\n<P>BRIVEX EYE DROP&nbsp; &nbsp;1 DROP&nbsp; BOTH EYE&nbsp; &nbsp; 1--0--1</P>\r\n\r\n<P>TOVAX-T EYE DROP&nbsp; &nbsp; 1 DROP&nbsp; BOTH EYE 0--0--1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 12:00:46','mo','2025-10-30 12:39:20'),(2755,0,0,1542,1501,1889,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS TINNITUS WORK UP','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-30 12:01:11','','0000-00-00 00:00:00'),(2756,0,0,1548,1507,1897,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----4 episodes of giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 12:04:08','','0000-00-00 00:00:00'),(2758,0,0,1564,1523,1920,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo and giddiness since many yrs&thinsp;</p>\n\n<p>when pt walks she feels sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associted other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 12:15:47','darshan','2025-10-30 12:18:37'),(2759,0,0,1564,1523,1920,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 12:18:01','','0000-00-00 00:00:00'),(2760,0,0,1564,1523,1920,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR DEAFNESS ---MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 12:18:01','','0000-00-00 00:00:00'),(2762,0,0,1565,1524,1921,0,0,NULL,'','CC','ZZZ','Remark','C/O NASAL BLOCKAGE  | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-30 12:18:49','','0000-00-00 00:00:00'),(2763,0,0,1564,1523,1920,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--right profound deafness (o)</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vemp--rigth side increased&thinsp;</p>\n\n<p>vng--right labyrinthine pathology</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 12:19:07','darshan','2025-10-30 13:48:23'),(2767,0,0,1558,1517,1914,0,0,NULL,'','DIAG','ZZZ','Remark','RT TESTICULAR TRAUMA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-30 12:24:22','','0000-00-00 00:00:00'),(2768,0,0,495,469,1887,0,0,NULL,'','HIST','ZZZ','Remark','<p>followup case---better&thinsp;</p>\n\n<p>occassional giddiness</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 12:28:05','','0000-00-00 00:00:00'),(2769,0,0,495,469,1887,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 12:28:44','','0000-00-00 00:00:00'),(2773,0,0,495,469,1887,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-30 12:29:12','','0000-00-00 00:00:00'),(2774,0,0,1559,1518,1915,0,0,NULL,'','HIST','ZZZ','Remark','<p>pt was treated at wockhart hospital for same&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 12:33:24','darshan','2025-10-30 12:35:25'),(2775,0,0,1559,1518,1915,0,0,NULL,'','CC','ZZZ','Remark','NASAL INJURY BEFORE 10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 12:33:48','','0000-00-00 00:00:00'),(2776,0,0,1559,1518,1915,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose---external oedema +</p>\n\n<p>CT pns---# nasal bone +</p>\n\n<p>&thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp;depressed # frontal bone</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 12:34:53','darshan','2025-10-30 12:37:17'),(2780,0,0,1559,1518,1915,0,0,NULL,'','MADVICE','ZZZ','Remark','REDUCTION OF # NASAL BONE---IF NASAL BLOCKAGE \nCT NEUROSURGICAL MANAGEMENT \nUSG LEFT PAROTID SOS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-30 12:39:49','','0000-00-00 00:00:00'),(2781,0,0,1573,1532,1931,0,0,NULL,'','CC','ZZZ','Remark','BODYACHE, NAUSEA, VOMITING | 10 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-30 12:40:38','','0000-00-00 00:00:00'),(2782,0,0,1573,1532,1931,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-30 12:40:41','','0000-00-00 00:00:00'),(2783,0,0,1544,1503,1891,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 12:44:26','','0000-00-00 00:00:00'),(2785,0,0,1550,1509,1901,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 12:47:56','','0000-00-00 00:00:00'),(2786,0,0,1555,1514,1908,0,0,NULL,'','CC','ZZZ','Remark','C/O DOE  | 2 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-30 12:47:57','','0000-00-00 00:00:00'),(2787,0,0,1555,1514,1908,0,0,NULL,'','CC','ZZZ','Remark','C/O CHEST PAIN  | 1 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-30 12:47:57','','0000-00-00 00:00:00'),(2788,0,0,1555,1514,1908,0,0,NULL,'','CC','ZZZ','Remark','C/O GABHRAMAN | 1 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-30 12:47:57','','0000-00-00 00:00:00'),(2789,0,0,1555,1514,1908,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-10-30 12:48:01','','0000-00-00 00:00:00'),(2790,0,0,1555,1514,1908,0,0,NULL,'','CC','ZZZ','Remark','SEVERE GENRALISED WEAKNESS | 1 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-30 12:48:14','','0000-00-00 00:00:00'),(2791,0,0,1555,1514,1908,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>COLD AND CALMY EXTERIMITIES&thinsp;</p>\n\n<p>CVS -S1, S2 SLUGGISH</p>\n\n<p>R/S BIALTERAL CREPTS ++</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-10-30 12:49:52','','0000-00-00 00:00:00'),(2792,0,0,308,292,1909,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 12:54:31','','0000-00-00 00:00:00'),(2793,0,0,1572,1531,1930,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 12:59:47','','0000-00-00 00:00:00'),(2794,0,0,1563,1522,1919,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 13:05:08','','0000-00-00 00:00:00'),(2795,0,0,1563,1522,1919,0,0,NULL,'','CC','ZZZ','Remark','BAD SMELL IN NOSE---MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 13:05:24','','0000-00-00 00:00:00'),(2796,0,0,1563,1522,1919,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose---clear</p>\n\n<p>phx--clear</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 13:05:36','','0000-00-00 00:00:00'),(2797,0,0,1563,1522,1919,0,0,NULL,'','MADVICE','ZZZ','Remark','CT PNS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-30 13:05:43','','0000-00-00 00:00:00'),(2798,0,0,1574,1534,1933,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of vertigo&thinsp; &thinsp;and&thinsp; increased tinnitus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 13:08:44','','0000-00-00 00:00:00'),(2800,0,0,1544,1503,1891,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-30 13:12:50','','0000-00-00 00:00:00'),(2801,0,0,1545,1504,1892,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 13:21:01','','0000-00-00 00:00:00'),(2803,0,0,1571,1530,1929,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--2 episodes&thinsp; of headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 13:24:16','','0000-00-00 00:00:00'),(2804,0,0,1552,1511,1905,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-10-30 13:26:28','','0000-00-00 00:00:00'),(2805,0,0,1578,1537,1938,0,0,NULL,'','CC','ZZZ','Remark','C/O COUGH + | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-30 13:27:32','','0000-00-00 00:00:00'),(2806,0,0,1578,1537,1938,0,0,NULL,'','CC','ZZZ','Remark','C/O DOE  | 2 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-30 13:27:32','','0000-00-00 00:00:00'),(2807,0,0,1578,1537,1938,0,0,NULL,'','CC','ZZZ','Remark','C/O FEVER | 2 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-30 13:27:32','','0000-00-00 00:00:00'),(2808,0,0,1578,1537,1938,0,0,NULL,'','CC','ZZZ','Remark','SEVERE GENERALSIED WEAKNESS  | 1 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-30 13:27:32','','0000-00-00 00:00:00'),(2809,0,0,1578,1537,1938,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO CHEST PAIN</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-10-30 13:27:39','','0000-00-00 00:00:00'),(2810,0,0,1578,1537,1938,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>R/S BILATERAL CREPTS +. RHONCHI ++</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-10-30 13:28:02','','0000-00-00 00:00:00'),(2811,0,0,1578,1537,1938,0,0,NULL,'','DIAG','ZZZ','Remark','? ACUTE BRONCHITIS','','',0,'0000-00-00 00:00:00','drarchit','2025-10-30 13:28:18','','0000-00-00 00:00:00'),(2812,0,0,452,1533,1932,0,0,NULL,'','CC','ZZZ','Remark','C.O HEMATURIA  | 2 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-30 13:30:21','','0000-00-00 00:00:00'),(2815,0,0,1545,1504,1892,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-30 13:37:08','','0000-00-00 00:00:00'),(2816,0,0,452,1533,1932,0,0,NULL,'','MADVICE','ZZZ','Remark','POSTURAL CHANGES \nCATHER CARE\nORAL CARE','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-10-30 13:40:54','','0000-00-00 00:00:00'),(2819,0,0,1578,1537,1938,0,0,NULL,'','MADVICE','ZZZ','Remark','PLEASE ADMIT IN SEMI WARD UNDER DR ARCHIT RATHOD','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-10-30 13:47:54','','0000-00-00 00:00:00'),(2820,0,0,1564,1523,1920,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT LABYRINTHINE PATHOLOGY','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 13:48:32','','0000-00-00 00:00:00'),(2821,0,0,1579,1538,1939,0,0,NULL,'','CC','ZZZ','Remark','C/O HEADACHE  | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-30 13:49:52','','0000-00-00 00:00:00'),(2824,0,0,310,294,1943,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 17:13:18','','0000-00-00 00:00:00'),(2825,0,0,1582,1539,1944,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 17:24:09','','0000-00-00 00:00:00'),(2826,0,0,1582,1539,1944,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset any time and remains for few hrs to one days&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 17:24:43','','0000-00-00 00:00:00'),(2827,0,0,1582,1539,1944,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilomety--reduced&thinsp; ss score</p>\n\n<p>CCG--axis spin left ward</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 17:25:03','darshan','2025-10-30 19:10:42'),(2831,0,0,1583,1540,1946,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 17:28:36','darshan','2025-10-30 18:15:02'),(2832,0,0,1584,1541,1947,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 17:38:22','','0000-00-00 00:00:00'),(2833,0,0,1591,1548,1956,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 17:48:34','','0000-00-00 00:00:00'),(2834,0,0,1591,1548,1956,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 17:49:00','','0000-00-00 00:00:00'),(2835,0,0,1591,1548,1956,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnet</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 17:49:08','darshan','2025-10-30 19:24:37'),(2837,0,0,1585,1542,1948,0,0,NULL,'','HIST','ZZZ','Remark','<p>right ear pain&thinsp;</p>\n\n<p>right ear blockage feeling&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:00:16','','0000-00-00 00:00:00'),(2839,0,0,1585,1542,1948,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT EAR WAX REMOVAL NEXT TIME ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:01:02','','0000-00-00 00:00:00'),(2840,0,0,1590,1547,1955,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:03:11','','0000-00-00 00:00:00'),(2841,0,0,1596,1553,1962,0,0,NULL,'','DIAG','ZZZ','Remark','RT NAIL AVULSION','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-30 18:05:28','','0000-00-00 00:00:00'),(2842,0,0,1592,1549,1957,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:08:40','','0000-00-00 00:00:00'),(2843,0,0,1583,1540,1946,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--absent&thinsp;</p>\n\n<p>dix hallpike---and</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:15:16','','0000-00-00 00:00:00'),(2844,0,0,1583,1540,1946,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:16:11','','0000-00-00 00:00:00'),(2846,0,0,1583,1540,1946,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:16:42','','0000-00-00 00:00:00'),(2847,0,0,1587,1544,1950,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:18:25','','0000-00-00 00:00:00'),(2848,0,0,1586,1543,1949,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----headache&thinsp;</p>\n\n<p>giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:21:07','','0000-00-00 00:00:00'),(2850,0,0,1555,1514,1908,0,0,NULL,'','MADVICE','ZZZ','Remark','PLEASE ADMIT IN ICU UNDER DR ARCHIT RAHTOD\nCXR , 2D ECHO, USG ABDOMEN','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-10-30 18:22:02','','0000-00-00 00:00:00'),(2851,0,0,1597,1554,1963,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:25:46','','0000-00-00 00:00:00'),(2852,0,0,1588,1545,1951,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:28:11','','0000-00-00 00:00:00'),(2853,0,0,1589,1546,1952,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN----TODAY AFTERNOON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:32:02','','0000-00-00 00:00:00'),(2854,0,0,1589,1546,1952,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left side neuralgic pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:32:17','','0000-00-00 00:00:00'),(2855,0,0,1575,110,1934,0,0,NULL,'','DISCDIAG','','','<P>ACCELERATED HYPERTENSION + AORTIC DISSECTION&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 18:35:54','mo','2025-10-30 19:00:49'),(2856,0,0,1575,110,1934,0,0,NULL,'','FOOD_DRUG_ALLERGIES','','','<P>NO ANY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 18:35:54','mo','2025-10-30 19:00:49'),(2857,0,0,1575,110,1934,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY&nbsp; NO ANY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 18:35:54','mo','2025-10-30 19:00:49'),(2858,0,0,1575,110,1934,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 45 YEARS OLD MALE COME WITH C/O:</P>\r\n\r\n<P>SEVERE CHEST PAIN,</P>\r\n\r\n<P>NAUSEA&nbsp;</P>\r\n\r\n<P>RIGHT SIDED LEG PAIN SEVERE&nbsp;</P>\r\n\r\n<P>GENERAL WEAKNESS&nbsp;</P>\r\n\r\n<P>DOE ++</P>\r\n\r\n<P>TINGLING SENSATION</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>SINCE TODAY MORNING.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>K/C/O: HTN SINCE 5-6 YEARS BUT DRUG DEFUALTER.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PRIMARY CONSULTING TO GENERAL GP THEN COME HERE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT ADMITTED IN ICU&nbsp; UNDER CARE OF DR JAYANT MAHETA&nbsp; ALL PHYSICAL EXAMINATION DONE AND REQUIED INVESTIGATIONS SENT AND IN VIEW BP 240/120 MMHG SO INJ.LOBET&nbsp;DRIP STARTED.TREATMENT STARTED AS PER ADVISE.</P>\r\n\r\n<P>DR.RAVI BHOJANI (CARDIOLOGIST)&nbsp;&nbsp;REFERANCE DONE ADVISE CT AORTOGRAPHY SO PATIENT SENT FOR CT SCAN AT MARUTI DIAGNOSIS WITH OWN RISK AND INJ.LOBET&nbsp;DRIP</P>\r\n\r\n<P>CT AORTOGRAPHY FOUND DESENDING AORTA&nbsp; AND ABDOMINAL AORTA&nbsp;DISSECTION SO ADVISE URGENT SURGERY.</P>\r\n\r\n<P>GC EXAPLAINED IN DETAILING TO RELATIVES BUT PATIENT RELATIVES FINANCIALLY NOT AFODABLE SO PATIENT&nbsp;REFER TO U N MEHTA HOSPITAL AHEMDABAD&nbsp;&nbsp;FOR SURGERY.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 18:35:54','mo','2025-10-30 19:00:49'),(2859,0,0,942,911,1953,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:39:30','','0000-00-00 00:00:00'),(2861,0,0,942,911,1953,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:40:02','','0000-00-00 00:00:00'),(2862,0,0,1575,110,1934,0,0,NULL,'','DISCCOND','','','<P>PR: 70/MIN</P>\r\n\r\n<P>BP : 130/64 MMHG WITH INJ.LOBAT</P>\r\n\r\n<P>SPO2 : 98 % ON RA</P>\r\n\r\n<P>TEMP : 98.6 F</P>\r\n\r\n<P>CNS : PATIENT CONSIOUS AND ORIENTED,</P>\r\n\r\n<P>CVS : S1/S2 +</P>\r\n\r\n<P>P/A&nbsp; &nbsp;:&nbsp;SOFT&nbsp;</P>\r\n\r\n<P>IV LINE IN SITU ++</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 18:41:27','mo','2025-10-30 19:00:49'),(2863,0,0,1575,110,1934,0,0,NULL,'','ADVICE','','','<P>ADVISE :</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>- CONTINUES HOSPITALIZATION.</P>\r\n\r\n<P>- ICU CARE.</P>\r\n\r\n<P>- URGENT SURGERY.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 18:41:27','mo','2025-10-30 19:00:49'),(2864,0,0,1575,110,1934,0,0,NULL,'','TREATGIVEN_TI','','','<P>&nbsp;</P>\r\n\r\n<P>INJ.LOBET DRIP</P>\r\n\r\n<P>INJ. RABICROSS</P>\r\n\r\n<P>INJ.QUICKSET&nbsp;</P>\r\n\r\n<P>INJ.TRAMADOL&nbsp;</P>\r\n\r\n<P>TAB. TELSTAR 40MG</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 18:41:27','mo','2025-10-30 19:00:49'),(2865,0,0,1602,1559,1969,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:45:51','','0000-00-00 00:00:00'),(2866,0,0,1602,1559,1969,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rotaotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:46:24','','0000-00-00 00:00:00'),(2867,0,0,1602,1559,1969,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----bialtral high frq modrate sn deafness</p>\n\n<p>stabilometry--reduced SS score</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:46:58','darshan','2025-10-30 19:45:48'),(2869,0,0,1605,1562,1972,0,0,NULL,'','DIAG','ZZZ','Remark','RT RING FINGER INFECTION','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-30 18:49:00','','0000-00-00 00:00:00'),(2870,0,0,1593,1550,1958,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---3-4 episodes of headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:49:59','','0000-00-00 00:00:00'),(2871,0,0,1595,1552,1961,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR BLOCKAGE FEELING -3-4 DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:53:33','','0000-00-00 00:00:00'),(2872,0,0,1595,1552,1961,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right ear wax</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:53:38','','0000-00-00 00:00:00'),(2874,0,0,1595,1552,1961,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT EAR WAX REMOVAL NEXT TIME','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:54:31','','0000-00-00 00:00:00'),(2875,0,0,1609,1566,1977,0,0,NULL,'','CC','ZZZ','Remark','RT TOE INFECTION | 10 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-30 18:56:12','','0000-00-00 00:00:00'),(2876,0,0,1609,1566,1977,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-30 18:56:17','','0000-00-00 00:00:00'),(2877,0,0,1516,1475,1852,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:57:08','','0000-00-00 00:00:00'),(2878,0,0,1516,1475,1852,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>vng--right post&thinsp; canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:57:31','','0000-00-00 00:00:00'),(2879,0,0,1516,1475,1852,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:58:12','','0000-00-00 00:00:00'),(2882,0,0,1516,1475,1852,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-30 18:59:08','','0000-00-00 00:00:00'),(2883,0,0,1607,1564,1975,0,0,NULL,'','DIAG','ZZZ','Remark','BOTH OA KNEE RIGHT > LEFT','','',0,'0000-00-00 00:00:00','drsagar','2025-10-30 18:59:52','','0000-00-00 00:00:00'),(2884,0,0,1607,1564,1975,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER BACK PAIN WITH BOTH OA K','','',0,'0000-00-00 00:00:00','drsagar','2025-10-30 19:00:07','','0000-00-00 00:00:00'),(2885,0,0,1598,1555,1964,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 19:00:54','','0000-00-00 00:00:00'),(2887,0,0,982,951,1923,0,0,NULL,'','MADVICE','ZZZ','Remark','RHEMATOLOGIST REFFERNCE DOR TEMPORAL ARTERITIS','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-10-30 19:12:00','','0000-00-00 00:00:00'),(2888,0,0,1218,1179,1965,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 19:14:19','','0000-00-00 00:00:00'),(2889,0,0,1613,1570,1982,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-30 19:22:43','','0000-00-00 00:00:00'),(2890,0,0,1591,1548,1956,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 19:24:41','','0000-00-00 00:00:00'),(2891,0,0,1591,1548,1956,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 19:25:25','','0000-00-00 00:00:00'),(2894,0,0,1591,1548,1956,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVEUR ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-30 19:34:00','','0000-00-00 00:00:00'),(2895,0,0,1612,1569,1981,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 19:54:48','darshan','2025-10-30 19:58:12'),(2896,0,0,1581,114,1942,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE BRONCHITIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 19:54:51','mo','2025-10-31 13:13:43'),(2897,0,0,1581,114,1942,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 24 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nC/O: COUGH WITH WHITISH, YELLOWISH EXPECTORATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DOE SINCE 2 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISWED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 4-5 DAYS FOR THAT PT PRIMARY CONSULTED DR BRIJESH MAKADIYA AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>HRCT THORAX (30-10-2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-130/MIN, BP-110/78MMHG, SPO2-92% ON RA, RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-CREPITATION+,RHONCHI++,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 19:54:51','mo','2025-10-31 13:13:43'),(2898,0,0,1581,114,1942,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>AVOID COLD FOOD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 19:54:51','mo','2025-10-31 13:13:43'),(2899,0,0,1581,114,1942,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MIKACIN</P>\r\n\r\n<P>TAB KRIMOX CV</P>\r\n\r\n<P>TAB NEXPROFAST</P>\r\n\r\n<P>TAB ZOFER MD</P>\r\n\r\n<P>TAB IVEPRED</P>\r\n\r\n<P>TAB ZEPTAS</P>\r\n\r\n<P>TAB DX</P>\r\n\r\n<P>SYP KOLTUS C</P>\r\n\r\n<P>NEB DUOLIN/BUDECORT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 19:54:51','mo','2025-10-31 13:13:43'),(2900,0,0,1612,1569,1981,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2 MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 19:57:43','','0000-00-00 00:00:00'),(2901,0,0,1612,1569,1981,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabiloemetry----reduced vestibular score</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-30 19:58:25','darshan','2025-10-31 17:59:44'),(2903,0,0,1573,112,1940,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE VIRAL HEPATITIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 20:04:45','mo','2025-11-03 13:33:07'),(2904,0,0,1573,112,1940,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 24 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nC/O: FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA, VOMITING (7-8EPISODE)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BODYACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SEVERE GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO DIARRHOEA</P>\r\n\r\n<P>O/E: YELLOWISH SCLERA</P>\r\n\r\n<P>ALL ABOVE MENTIONE C/O PRESENTED SINCE 10 DAYS, NOW C/O INCREASED SINCE 2-3 DAYS SO&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>BLOOD IX, URINE R/M (30-10-2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-74/MIN, BP-110/60MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>S.HAV IGM DONE ON 30/10/2025 WHICH S/O POSITIVE.</P>\r\n\r\n<P>USG ABDOMEN DONE ON 31/10/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>REQUIRED REPEAT BLOOD INVEATIGATION DONE WHICH WAS IMPROVED.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\nSO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 20:04:45','mo','2025-11-03 13:33:07'),(2905,0,0,1573,112,1940,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 4&nbsp;DAYS WITH BLOOD INVESTIGATION SGPT, S.BILLI, CBC</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 20:04:45','mo','2025-11-03 13:33:07'),(2906,0,0,1573,112,1940,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MUCOMIX</P>\r\n\r\n<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>TAB URSETOR</P>\r\n\r\n<P>TAB CALPOL</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 20:04:45','mo','2025-11-03 13:33:07'),(2907,0,0,1495,109,1888,0,0,NULL,'','DISCDIAG','','','<P><STRONG>SEVERE IRON DEFICIENCY ANEMIA WITH LRTI</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 21:09:01','mo','2025-10-31 21:12:55'),(2908,0,0,1495,109,1888,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O: BLOOD TRANSFUSION IN 2022 (ANEMIA)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 21:09:01','mo','2025-10-31 21:12:55'),(2909,0,0,1495,109,1888,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 75 YEARS OLD FEMALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O: DOE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FATIGUE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DRY COUGHING</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 15 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-75/MIN, BP-154/70MMHG, SPO2-97% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF LOW HB (5 GM/DL) 2 UNIT RCC TRANSFUSED ON 30/10/25 AND 2 UNIT GIVEN ON 31/10/25.(BGRH-:0+VE)</P>\r\n\r\n<P>S.FERRITIN DONE ON 30/10/2025 WHICH S/O: 7.47 NG/ML&nbsp;</P>\r\n\r\n<P>IN VIEW OF LOW FERRITIN&nbsp; IRON SUPPLIMENT GIVEN IN ICU UNDER OBSERVATION AFTER NORMAL SKIN TEST</P>\r\n\r\n<P>2 UNIT RCC TRANSFUSED ON 31/10/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 21:09:01','mo','2025-10-31 21:12:55'),(2910,0,0,1495,109,1888,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 21:09:01','mo','2025-10-31 21:12:55'),(2911,0,0,1495,109,1888,0,0,NULL,'','TREATGIVEN_TI','','','<P>4 UNIT RCC</P>\r\n\r\n<P>INJ NEC FCM</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>TAB DX 30</P>\r\n\r\n<P>SYP KOLTUS C</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 21:09:01','mo','2025-10-31 21:12:55'),(2912,0,0,1581,114,1942,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-30 21:11:08','mo','2025-10-31 13:13:43'),(2913,0,0,1573,112,1940,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>NAD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 21:32:31','mo','2025-11-03 13:33:07'),(2914,0,0,1580,113,1941,0,0,NULL,'','DISCDIAG','','','<P><STRONG>UROSEPSIS</STRONG></P>\r\n\r\n<P><STRONG>SEPTIC SHOCK</STRONG></P>\r\n\r\n<P><STRONG>ACUTE KIDNEY INJURY</STRONG></P>\r\n\r\n<P><STRONG>WITH K/C/O HTN, URETHRAL STRICTURE</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 22:01:52','mo','2025-11-03 13:46:07'),(2915,0,0,1580,113,1941,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O: URETHRAL STRICTURE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 22:01:52','mo','2025-11-03 13:46:07'),(2916,0,0,1580,113,1941,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 43 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN</P>\r\n\r\n<P>A/H/O: GIDDINESS F/BY FALL DOWN AT HOME<BR />\r\nC/O: FEVER WITH RIGOR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PERSPIRATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; HEADACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BURNING MICTURATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE YESTERDAY FOR THAT PATIENT CAME TO EMERGENCY DEPARTMENT AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>CBC, S.CREAT, S.EI-, SGPT, CRP DONE ON 30/10/25.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-140/MIN, BP-84/46MMHG, SPO2-96% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>FLUID THERAPY GIVEN IN VIEW OF HYPOTENSION</P>\r\n\r\n<P>URINE R/M DONE ON 30/10/25, WHICH S/O PROTIEN +, PC:12-15 CELLS/HPF, RBCS:3-4 CELLS/HPF, BACTERIA DETECED++.</P>\r\n\r\n<P>SO URINE C/S SENT WHICH S/O: GRAM NEGATIVE BACILLI PSEUDOMONAS AERUGINOSA SO TREATMENT MODIFIED ACCORDINLY.</P>\r\n\r\n<P>USG KUB DONE ON 31/10/2025 REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>REQUIRED REPEAT BLOOD INVESTIGATION DONE WHICH WAS IMPROVED.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 22:01:52','mo','2025-11-03 13:46:07'),(2917,0,0,1580,113,1941,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.ECOTAS</P>\r\n\r\n<P>TAB.NIFWELL SR</P>\r\n\r\n<P>INJ.RABICROSS</P>\r\n\r\n<P>INJ.QUICKSET</P>\r\n\r\n<P>TAB.TAMWELL</P>\r\n\r\n<P>TAB.NAPROSYN</P>\r\n\r\n<P>LIQ.CITAL</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>FOSIN SACHET</P>\r\n\r\n<P>TAB UDP AT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 22:01:52','mo','2025-11-03 13:46:07'),(2918,0,0,1408,105,1723,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O:</P>\r\n\r\n<P>-OPERATED CASE OF RIGHT FRONTAL BONE DEPRESSED FRACTURE DUE TO GUN SHOT INJURY</P>\r\n\r\n<P>-OPERATED CASE OF BIFRONTAL CRANIOTOMY WITH RIGHT ANTERIOR FRONTAL LOBECTOMY WITH REPAIR OF DEFECT IN THE PLANNUM SPHENOIDEALE AND DURAPLASTY ON 06-06-2025.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-30 22:08:47','mo','2025-11-03 13:15:47'),(2919,0,0,1630,1586,2006,0,0,NULL,'','DIAG','ZZZ','Remark','RT WRIST GANGLION','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-31 10:48:00','','0000-00-00 00:00:00'),(2920,0,0,1622,1578,1994,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo---sudden onset of rotatory feeling when pt is in any posture</p>\n\n<p>heaviness of head +</p>\n\n<p>left ear deafness and tinnitus&thinsp;</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 10:52:51','darshan','2025-10-31 11:08:23'),(2921,0,0,1017,985,2000,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--no impromvent in nasal blockage&thinsp;</p>\n\n<p>ct pns---s shap dns with synechia</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 10:55:28','darshan','2025-10-31 14:01:01'),(2922,0,0,1622,1578,1994,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----5 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:06:20','','0000-00-00 00:00:00'),(2923,0,0,1622,1578,1994,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR DEAFNESS AND TINNITUS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:06:20','','0000-00-00 00:00:00'),(2924,0,0,1622,1578,1994,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>Mri brain with 8th nerve---no sol</p>\n\n<p>&thinsp;pta--left moderate sn deafness</p>\n\n<p>vemp--left side redcued</p>\n\n<p>stabilometry----wnl</p>\n\n<p>vng---leftlabyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:08:37','darshan','2025-10-31 13:01:00'),(2925,0,0,1622,1578,1994,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:08:44','','0000-00-00 00:00:00'),(2926,0,0,1627,1583,2003,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:13:10','','0000-00-00 00:00:00'),(2927,0,0,1618,1574,1990,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT FOOT TENDON INJURY','','',0,'0000-00-00 00:00:00','drsagar','2025-10-31 11:19:44','','0000-00-00 00:00:00'),(2928,0,0,1617,1573,1989,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-31 11:23:20','','0000-00-00 00:00:00'),(2929,0,0,1623,1579,1996,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of episodic vertigo--remains for few mins&thinsp;</p>\n\n<p>associated with nausea and vomiting&thinsp;</p>\n\n<p>left ear progressive deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:25:09','darshan','2025-10-31 11:29:00'),(2930,0,0,1623,1579,1996,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----10 DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:25:38','','0000-00-00 00:00:00'),(2931,0,0,1623,1579,1996,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR DEAFNESS 6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:28:18','','0000-00-00 00:00:00'),(2932,0,0,1623,1579,1996,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---left moderate to severe sn deafness</p>\n\n<p>stabiloemtrty--reduced vestibular score</p>\n\n<p>vng---left labyrinthine pahtology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:29:10','darshan','2025-10-31 13:18:24'),(2933,0,0,1623,1579,1996,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:29:47','','0000-00-00 00:00:00'),(2934,0,0,1619,1575,1991,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----3-4 episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:39:02','','0000-00-00 00:00:00'),(2935,0,0,1277,1236,2025,0,0,NULL,'','CC','ZZZ','Remark','URTI||','','',0,'0000-00-00 00:00:00','drjayant','2025-10-31 11:41:12','drjayant','2025-10-31 11:41:25'),(2936,0,0,1277,1236,2025,0,0,NULL,'','CC','ZZZ','Remark','BETTER||','','',0,'0000-00-00 00:00:00','drjayant','2025-10-31 11:41:25','','0000-00-00 00:00:00'),(2937,0,0,1620,1576,1992,0,0,NULL,'','HIST','ZZZ','Remark','<p>right nasal FB yellow gram removed unevetfully</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:41:27','','0000-00-00 00:00:00'),(2938,0,0,1277,1236,2025,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-31 11:41:28','','0000-00-00 00:00:00'),(2939,0,0,1620,1576,1992,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>emergacny</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:41:46','','0000-00-00 00:00:00'),(2940,0,0,1645,1600,2022,0,0,NULL,'','CC','ZZZ','Remark','BILAT LL PAIN, BACKACHE | 30 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-31 11:42:08','','0000-00-00 00:00:00'),(2941,0,0,1645,1600,2022,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-31 11:42:12','','0000-00-00 00:00:00'),(2942,0,0,1283,1242,1997,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:42:51','','0000-00-00 00:00:00'),(2943,0,0,1283,1242,1997,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Ltm---mild congested&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:42:57','','0000-00-00 00:00:00'),(2944,0,0,1639,1595,2016,0,0,NULL,'','CC','ZZZ','Remark','SENSE OF IMBALANCE ----1 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:50:28','','0000-00-00 00:00:00'),(2945,0,0,1639,1595,2016,0,0,NULL,'','HIST','ZZZ','Remark','<p>when pt is walking he feels sense of imbalance&thinsp;</p>\n\n<p>similar feeling on standing also</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:51:49','','0000-00-00 00:00:00'),(2946,0,0,1639,1595,2016,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>Pta---bilatelr moderate sn deafness(o)</p>\n\n<p>stabilomety---reduced vestibular score</p>\n\n<p>CCG--AP displacement out of range</p>\n\n<p>VNG----bilaterla vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:51:58','darshan','2025-10-31 13:36:23'),(2948,0,0,1639,1595,2016,0,0,NULL,'','DIAG','ZZZ','Remark','BILATERAL VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:52:03','','0000-00-00 00:00:00'),(2949,0,0,1637,1593,2014,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 11:59:11','','0000-00-00 00:00:00'),(2950,0,0,1642,1597,2019,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----recurence of vertigo</p>\n\n<p>heaviness of head with headache</p>\n\n<p>previously k/c/o---vm</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:04:53','darshan','2025-10-31 13:46:19'),(2951,0,0,1642,1597,2019,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:05:16','','0000-00-00 00:00:00'),(2952,0,0,1624,1580,1998,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO ----6-7 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:11:50','','0000-00-00 00:00:00'),(2953,0,0,1624,1580,1998,0,0,NULL,'','CC','ZZZ','Remark','OCCASSIONAL HEADACHE ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:11:50','','0000-00-00 00:00:00'),(2954,0,0,1624,1580,1998,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---with posiitional gididness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:12:03','darshan','2025-10-31 14:03:37'),(2955,0,0,1624,1580,1998,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--central vareity of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:12:13','darshan','2025-10-31 14:04:12'),(2956,0,0,1625,1581,1999,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:22:40','','0000-00-00 00:00:00'),(2957,0,0,1625,1581,1999,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo -sudden onset of postional giddiness&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtomsp</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:23:07','','0000-00-00 00:00:00'),(2958,0,0,1625,1581,1999,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>iht--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng---right hz canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:23:17','darshan','2025-10-31 14:15:59'),(2960,0,0,1654,1609,2034,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling with sense of imbnalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:28:56','darshan','2025-10-31 12:30:31'),(2961,0,0,1654,1609,2034,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----10-12 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:29:59','','0000-00-00 00:00:00'),(2962,0,0,1654,1609,2034,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---left beat&thinsp;</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--right abnoram l</p>\n\n<p>pta---bialtelr high frq mild sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right acute partial vestibular deficit</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:30:52','darshan','2025-10-31 14:26:29'),(2963,0,0,1654,1609,2034,0,0,NULL,'','DIAG','ZZZ','Remark','RIGTH ACUTE PARTIAL VESTIBULAR DEFICIT','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:30:58','','0000-00-00 00:00:00'),(2964,0,0,1655,1610,2035,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upc case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:33:05','','0000-00-00 00:00:00'),(2965,0,0,1360,102,1660,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>FOLEY&#39;S IN SITU (NO:14, DAY-4)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 12:34:34','mo','2025-10-31 12:40:06'),(2966,0,0,1360,102,1660,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>DAILY FOLEY&#39;S CARE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 12:34:34','mo','2025-10-31 12:40:06'),(2967,0,0,1360,102,1660,0,0,NULL,'','TREATDISC_TI','','','<P>INJ ZOSTUM (3 GM/100 NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 9AM-----9PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 3 DAYS (5 INJ)</P>\r\n\r\n<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZOFER MD (4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB APIXAGRESS (5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ULTRACET SEMI&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB CREMALAX (10 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>INJ&nbsp; MIXTARD (30/70)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;S/C&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;18 UNIT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE LUNCH</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 06 UNIT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE DINNER</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 12:34:34','mo','2025-10-31 12:40:06'),(2968,0,0,1657,1612,2037,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:41:36','','0000-00-00 00:00:00'),(2969,0,0,1657,1612,2037,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotoatyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptosm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:42:06','','0000-00-00 00:00:00'),(2970,0,0,1657,1612,2037,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometery---reduced vestibular score</p>\n\n<p>vng--left&thinsp;&thinsp;hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:42:24','darshan','2025-10-31 17:46:18'),(2972,0,0,1658,1613,2039,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:44:25','','0000-00-00 00:00:00'),(2973,0,0,1670,1625,2052,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT TRIGGER THUMB','','',0,'0000-00-00 00:00:00','drsagar','2025-10-31 12:44:58','','0000-00-00 00:00:00'),(2974,0,0,1633,1589,2009,0,0,NULL,'','CC','ZZZ','Remark','EPISODIC VERTIGO----6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:53:50','','0000-00-00 00:00:00'),(2975,0,0,1633,1589,2009,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden sense of imbalance with continuous heaviness of head +</p>\n\n<p>no associated other cns symtpsm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:54:13','','0000-00-00 00:00:00'),(2976,0,0,1633,1589,2009,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabiloemtyr---wnl</p>\n\n<p>vng--central vreity of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 12:54:26','darshan','2025-10-31 18:22:21'),(2978,0,0,1581,114,1942,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 12:56:39','mo','2025-10-31 13:13:43'),(2979,0,0,1581,114,1942,0,0,NULL,'','TREATDISC_TI','','','<P>TAB KRIMOX CV (625 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 4 DAYS (7 TAB)</P>\r\n\r\n<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ZOFER MD (8 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR VOMITING</P>\r\n\r\n<P>TAB IVEPRED (4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DX (30)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ETOLOK (90 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ZEPTAS (0.5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>SYP KOLTUS-C (5 ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 12:56:39','mo','2025-10-31 13:13:43'),(2980,0,0,1659,1614,2040,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT FIBULA HEAD FRACTURE?','','',0,'0000-00-00 00:00:00','drsagar','2025-10-31 13:00:52','','0000-00-00 00:00:00'),(2981,0,0,662,632,2010,0,0,NULL,'','HIST','ZZZ','Remark','<p>not available</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 13:05:03','darshan','2025-11-06 20:00:59'),(2982,0,0,1635,1591,2012,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 13:05:54','','0000-00-00 00:00:00'),(2983,0,0,1640,1596,2017,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic giddiness&thinsp;</p>\n\n<p>left side heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 13:10:54','darshan','2025-10-31 13:14:43'),(2984,0,0,1616,115,1988,0,0,NULL,'','DISCDIAG','','','<P><STRONG>RIGHT SIDE OPEN CRUSH WOUND WITH 4 RIGHT EXTENSOR DIGITORUM LONGUS TENDON FULLY TEAR</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 13:12:34','mo','2025-10-31 18:04:31'),(2985,0,0,1616,115,1988,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 24 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nH/O: FALL DOWN FROM BIKE, BLUNT TRAUMA AROUND 6 PM F&#39;BY<BR />\r\nC/O: RIGHT FOOT CRUSH INJURY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BLEEDING FROM THAT SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PAIN IN THAT SITE</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED AFTER INCIDENCE SO&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>X-RAY RIGHT FOOT AP/LATERAL (30-10-2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-90/MIN, BP-124/80MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nWOUND DEBRIDEMENT/ 4 RIGHT EXTENSOR DIGITORUM LONGUS TENDON REPAIR/ WOUND CLOSURE DONE BY DR SAGAR KHANPARA&nbsp;ON 30/10/2025 UNDER REGIONAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 13:12:34','mo','2025-10-31 18:04:31'),(2986,0,0,1640,1596,2017,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR BLOCKAGE ----3 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 13:12:43','','0000-00-00 00:00:00'),(2987,0,0,1640,1596,2017,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 13:12:43','','0000-00-00 00:00:00'),(2988,0,0,1640,1596,2017,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>&thinsp;pta----left moderate to severe sn deafness</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vemp--wnl</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 13:15:09','darshan','2025-10-31 19:39:42'),(2990,0,0,1662,1617,2043,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 13:25:23','','0000-00-00 00:00:00'),(2991,0,0,1662,1617,2043,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 13:25:29','','0000-00-00 00:00:00'),(2992,0,0,1667,1622,2049,0,0,NULL,'','HIST','ZZZ','Remark','<p>foflow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 13:27:49','','0000-00-00 00:00:00'),(2993,0,0,1671,1626,2053,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 13:31:21','','0000-00-00 00:00:00'),(2994,0,0,1644,1599,2021,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--medicine skipped&thinsp;</p>\n\n<p>recurence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 13:39:20','darshan','2025-10-31 13:39:31'),(2995,0,0,1403,107,1727,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 13:43:43','mo','2025-11-01 12:49:56'),(2996,0,0,1642,1597,2019,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>vemp--left side reduced vemp</p>\n\n<p>vng---central variety of nystmgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 13:46:29','darshan','2025-10-31 13:46:53'),(2997,0,0,1673,1628,2055,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow u pcase---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 13:49:59','','0000-00-00 00:00:00'),(2998,0,0,1646,1601,2024,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO------YESTERDAY||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 13:58:23','','0000-00-00 00:00:00'),(2999,0,0,1646,1601,2024,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any c ns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 13:58:50','','0000-00-00 00:00:00'),(3000,0,0,1646,1601,2024,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 13:58:59','','0000-00-00 00:00:00'),(3002,0,0,1646,1601,2024,0,0,NULL,'','MADVICE','ZZZ','Remark','VESTIBULAR IX SOS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:00:15','','0000-00-00 00:00:00'),(3004,0,0,1017,985,2000,0,0,NULL,'','MADVICE','ZZZ','Remark','SEPTOPLASTY WITH SYNECHIA RELEASE','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:01:57','','0000-00-00 00:00:00'),(3007,0,0,1652,1607,2032,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO WITH BLACK OUT ---2 MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:12:41','darshan','2025-11-01 11:57:39'),(3008,0,0,1652,1607,2032,0,0,NULL,'','HIST','ZZZ','Remark','<p>2-3 episodes of few mins&thinsp;</p>\n\n<p>headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:13:29','darshan','2025-11-01 12:00:32'),(3009,0,0,1652,1607,2032,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilometry--wnl</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:13:37','darshan','2025-11-01 12:01:04'),(3011,0,0,1616,115,1988,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>WOUND DEBRIDEMENT/ 4 RIGHT EXTENSOR DIGITORUM LONGUS TENDON REPAIR/ WOUND CLOSURE DONE BY DR SAGAR KHANPARA&nbsp;ON 30/10/2025 UNDER REGIONAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 14:14:31','mo','2025-10-31 18:04:31'),(3012,0,0,1616,115,1988,0,0,NULL,'','OTNOTE','','','<p>-under ankle block</p>\r\n\r\n<p>-under aap paint &amp; drape done for right ankle and foot</p>\r\n\r\n<p>-wash given to wound with betadine + h2o2 + normal saline.</p>\r\n\r\n<p>-wound debridement done</p>\r\n\r\n<p>-tendon exploration done</p>\r\n\r\n<p>-4 right extensor digitorum longus tendon end to end repair done.</p>\r\n\r\n<p>-wash given</p>\r\n\r\n<p>-wound closure done.</p>\r\n\r\n<p>-b/k slab upto toe given.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 14:14:31','mo','2025-10-31 18:04:31'),(3014,0,0,1625,1581,1999,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:16:33','','0000-00-00 00:00:00'),(3015,0,0,1669,1624,2051,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----better for giddiness</p>\n\n<p>heaviness of head&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:21:02','','0000-00-00 00:00:00'),(3017,0,0,1625,1581,1999,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:30:53','','0000-00-00 00:00:00'),(3018,0,0,1679,1634,2062,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:34:39','','0000-00-00 00:00:00'),(3019,0,0,1679,1634,2062,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left bppv with vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:34:47','','0000-00-00 00:00:00'),(3020,0,0,1679,1634,2062,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:35:20','','0000-00-00 00:00:00'),(3022,0,0,1679,1634,2062,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:35:53','','0000-00-00 00:00:00'),(3023,0,0,1662,1617,2043,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any c ns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:39:38','','0000-00-00 00:00:00'),(3024,0,0,1662,1617,2043,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--reduced vestibualr score</p>\n\n<p>vng--right hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:40:02','','0000-00-00 00:00:00'),(3025,0,0,1662,1617,2043,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:40:19','','0000-00-00 00:00:00'),(3027,0,0,1665,1620,2046,0,0,NULL,'','HIST','ZZZ','Remark','<p>recurence of vertigo</p>\n\n<p>neck pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:42:41','','0000-00-00 00:00:00'),(3028,0,0,1062,1028,2048,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----recurrence of&thinsp; vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:47:27','','0000-00-00 00:00:00'),(3029,0,0,1062,1028,2048,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:47:34','','0000-00-00 00:00:00'),(3030,0,0,1062,1028,2048,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:48:05','','0000-00-00 00:00:00'),(3032,0,0,1062,1028,2048,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:48:37','','0000-00-00 00:00:00'),(3033,0,0,347,331,2056,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:53:26','darshan','2025-10-31 14:55:40'),(3035,0,0,1662,1617,2043,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MEANVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 14:57:34','','0000-00-00 00:00:00'),(3036,0,0,1676,1631,2059,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 15:09:39','','0000-00-00 00:00:00'),(3037,0,0,1676,1631,2059,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 15:10:37','','0000-00-00 00:00:00'),(3039,0,0,1676,1631,2059,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 15:10:50','','0000-00-00 00:00:00'),(3040,0,0,1681,1636,2064,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 15:13:10','','0000-00-00 00:00:00'),(3041,0,0,316,300,1894,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 15:24:10','','0000-00-00 00:00:00'),(3042,0,0,1616,115,1988,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 16:16:27','mo','2025-10-31 18:04:31'),(3043,0,0,1616,115,1988,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP ON 05/11/2025 AT 11 AM OR 6PM</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 16:16:27','mo','2025-10-31 18:04:31'),(3044,0,0,1616,115,1988,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ TT</P>\r\n\r\n<P>INJ AMIKACIN</P>\r\n\r\n<P>INJ DICLO</P>\r\n\r\n<P>TAB LINOGRAM</P>\r\n\r\n<P>TAB METRO ER</P>\r\n\r\n<P>TAB BRATOS PT</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ THIAMINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 16:16:27','mo','2025-10-31 18:04:31'),(3045,0,0,1616,115,1988,0,0,NULL,'','TREATDISC_TI','','','<P>TAB FUROLIV (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB LINOGRAM (600 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB METRO (600 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>CAP REBEC-L&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ACETLE SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB BRATOS PT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB TENDOFILL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB PENTRAL (400 MG)&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 16:16:27','mo','2025-10-31 18:04:31'),(3046,0,0,1684,1639,2069,0,0,NULL,'','HIST','ZZZ','Remark','<p>attened</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:07:09','','0000-00-00 00:00:00'),(3047,0,0,1685,1640,2070,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:07:41','','0000-00-00 00:00:00'),(3048,0,0,1687,1642,2072,0,0,NULL,'','HIST','ZZZ','Remark','<p>atended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:09:41','','0000-00-00 00:00:00'),(3049,0,0,1686,1641,2071,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:12:11','','0000-00-00 00:00:00'),(3051,0,0,1686,1641,2071,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:13:32','','0000-00-00 00:00:00'),(3052,0,0,616,585,2066,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:16:22','','0000-00-00 00:00:00'),(3053,0,0,1683,1638,2068,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:19:58','','0000-00-00 00:00:00'),(3054,0,0,1689,1644,2075,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow upcase----since last 10 days recurrent of giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:24:34','','0000-00-00 00:00:00'),(3055,0,0,1689,1644,2075,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absnet</p>\n\n<p>dix hallpike---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:24:50','','0000-00-00 00:00:00'),(3057,0,0,1689,1644,2075,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN 8TH NERVE PROTOCOL\n','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:27:33','','0000-00-00 00:00:00'),(3058,0,0,1690,1645,2077,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:29:39','','0000-00-00 00:00:00'),(3060,0,0,1617,1573,1989,0,0,NULL,'','DIAG','ZZZ','Remark','CAP','','',0,'0000-00-00 00:00:00','drjayant','2025-10-31 17:35:37','','0000-00-00 00:00:00'),(3061,0,0,1617,1573,1989,0,0,NULL,'','MADVICE','ZZZ','Remark','ADMISSION','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-10-31 17:35:47','','0000-00-00 00:00:00'),(3062,0,0,1692,1647,2081,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:36:41','','0000-00-00 00:00:00'),(3063,0,0,1692,1647,2081,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:41:04','','0000-00-00 00:00:00'),(3064,0,0,1692,1647,2081,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:41:16','','0000-00-00 00:00:00'),(3066,0,0,1692,1647,2081,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:42:37','','0000-00-00 00:00:00'),(3067,0,0,1657,1612,2037,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:46:21','','0000-00-00 00:00:00'),(3068,0,0,1657,1612,2037,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:47:00','','0000-00-00 00:00:00'),(3070,0,0,1657,1612,2037,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:48:56','','0000-00-00 00:00:00'),(3071,0,0,1699,1654,2090,0,0,NULL,'','CC','ZZZ','Remark','URTI | 3 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-10-31 17:49:04','','0000-00-00 00:00:00'),(3072,0,0,1695,1650,2084,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR DEAFNESS---MANY||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:56:47','','0000-00-00 00:00:00'),(3073,0,0,1695,1650,2084,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:56:51','','0000-00-00 00:00:00'),(3074,0,0,1695,1650,2084,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---i/n</p>\n\n<p>&thinsp;pta---right very severe sn deafness</p>\n\n<p>&thinsp; &thinsp; &thinsp; &thinsp; left moderate sn deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 17:57:05','darshan','2025-10-31 19:01:20'),(3075,0,0,1616,115,1988,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-31 18:04:02','mo','2025-10-31 18:04:31'),(3076,0,0,1698,1653,2088,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--2 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 18:07:17','','0000-00-00 00:00:00'),(3077,0,0,1698,1653,2088,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotatory for few mins</p>\n\n<p>heaviness of head&thinsp;</p>\n\n<p>sense of imbalance +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 18:08:38','darshan','2025-10-31 18:11:31'),(3078,0,0,1698,1653,2088,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absnt</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>&thinsp;pta--wnl</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng---Right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 18:11:47','darshan','2025-10-31 19:54:51'),(3079,0,0,1698,1653,2088,0,0,NULL,'','DIAG','ZZZ','Remark','VESTIBULOAPTHY','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 18:13:41','','0000-00-00 00:00:00'),(3080,0,0,1691,1646,2079,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-31 18:15:12','','0000-00-00 00:00:00'),(3081,0,0,1700,1655,2091,0,0,NULL,'','CC','ZZZ','Remark','NECK PAIN---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 18:19:00','','0000-00-00 00:00:00'),(3082,0,0,1700,1655,2091,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 18:19:03','','0000-00-00 00:00:00'),(3083,0,0,1700,1655,2091,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>neck---nad</p>\n\n<p>MRI cervical spine----disc bulge at c4-5&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 18:19:17','darshan','2025-11-03 11:34:30'),(3085,0,0,1332,1293,2110,0,0,NULL,'','CC','ZZZ','Remark','URTI||','','',0,'0000-00-00 00:00:00','drjayant','2025-10-31 18:28:12','','0000-00-00 00:00:00'),(3086,0,0,366,350,2103,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 18:29:19','','0000-00-00 00:00:00'),(3088,0,0,366,350,2103,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER 1 WEEK','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 18:30:19','','0000-00-00 00:00:00'),(3089,0,0,1693,1648,2082,0,0,NULL,'','HIST','ZZZ','Remark','<p>k/c/o---neonatal seizer</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 18:43:31','darshan','2025-10-31 18:45:32'),(3090,0,0,1693,1648,2082,0,0,NULL,'','CC','ZZZ','Remark','SUDDEN ONSET OF FALL DOWN ----MANY MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 18:44:30','','0000-00-00 00:00:00'),(3091,0,0,1693,1648,2082,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 18:45:10','darshan','2025-10-31 18:45:41'),(3093,0,0,1693,1648,2082,0,0,NULL,'','MADVICE','ZZZ','Remark','CONTINUE NEUROLOGIST OPINION ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 18:46:27','','0000-00-00 00:00:00'),(3094,0,0,1712,1667,2114,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-10-31 18:46:52','','0000-00-00 00:00:00'),(3095,0,0,1712,1667,2114,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-10-31 18:47:01','','0000-00-00 00:00:00'),(3097,0,0,1712,1667,2114,0,0,NULL,'','MADVICE','ZZZ','Remark','SUGAR RESTRICTED DIET','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-10-31 18:50:51','','0000-00-00 00:00:00'),(3098,0,0,1694,1649,2083,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of raotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 18:51:10','darshan','2025-10-31 18:52:06'),(3099,0,0,1694,1649,2083,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 18:51:24','','0000-00-00 00:00:00'),(3100,0,0,1694,1649,2083,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng---rigtht post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 18:52:16','darshan','2025-10-31 20:09:05'),(3102,0,0,1719,1674,2123,0,0,NULL,'','CC','ZZZ','Remark','C/O CHEST PAIN | 7 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-31 18:54:29','','0000-00-00 00:00:00'),(3104,0,0,1696,1651,2085,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 18:56:33','','0000-00-00 00:00:00'),(3105,0,0,1719,1674,2123,0,0,NULL,'','MADVICE','ZZZ','Remark','PSCHIATRIST REFFENCE SOS','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-10-31 18:57:11','','0000-00-00 00:00:00'),(3106,0,0,1682,1637,2067,0,0,NULL,'','MADVICE','ZZZ','Remark','ADMISSION ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-10-31 19:02:13','','0000-00-00 00:00:00'),(3109,0,0,1695,1650,2084,0,0,NULL,'','MADVICE','ZZZ','Remark','HEARING  AID TRIAL','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:06:21','','0000-00-00 00:00:00'),(3110,0,0,1710,1665,2111,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:08:00','darshan','2025-10-31 19:08:59'),(3111,0,0,1716,1671,2119,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:13:35','','0000-00-00 00:00:00'),(3112,0,0,657,101,1601,0,0,NULL,'','CONDONADDMISSION','','','<P>PATIENT TACHYPNEIC WITH O2 DESATURATED AND HIGH BLOOD PRESSURE.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 19:15:19','mo','2025-10-31 20:53:38'),(3113,0,0,657,101,1601,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 1 WEEK</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 19:15:19','mo','2025-10-31 20:53:38'),(3114,0,0,1720,1675,2124,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:18:00','','0000-00-00 00:00:00'),(3115,0,0,1720,1675,2124,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus--absent</p>\n\n<p>stabiloemetry--reduced vestibular score</p>\n\n<p>vng---right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:18:07','darshan','2025-10-31 20:20:51'),(3116,0,0,1720,1675,2124,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:18:08','','0000-00-00 00:00:00'),(3117,0,0,594,567,2131,0,0,NULL,'','DIAG','ZZZ','Remark','BOTH HEEL PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-31 19:19:28','','0000-00-00 00:00:00'),(3118,0,0,1709,1664,2109,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:20:35','darshan','2025-10-31 19:20:47'),(3119,0,0,1714,1669,2117,0,0,NULL,'','DIAG','ZZZ','Remark','BURN ON BACK','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-31 19:20:55','','0000-00-00 00:00:00'),(3120,0,0,1709,1664,2109,0,0,NULL,'','CC','ZZZ','Remark','DRY COUGHING----1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:20:58','','0000-00-00 00:00:00'),(3121,0,0,1709,1664,2109,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx----congested</p>\n\n<p>neck---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:21:11','','0000-00-00 00:00:00'),(3122,0,0,1680,1635,2063,0,0,NULL,'','DIAG','ZZZ','Remark','LT LOWER LIMB VARICOSE VEIN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-31 19:22:43','','0000-00-00 00:00:00'),(3123,0,0,1722,1677,2126,0,0,NULL,'','CC','ZZZ','Remark','C/O FEVER  | 3 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-31 19:23:42','','0000-00-00 00:00:00'),(3124,0,0,1722,1677,2126,0,0,NULL,'','CC','ZZZ','Remark','C/O COUGH DR  | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-31 19:23:42','','0000-00-00 00:00:00'),(3125,0,0,1722,1677,2126,0,0,NULL,'','CC','ZZZ','Remark','C/O GENERALISED WEAKNESS  | 3 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-10-31 19:23:42','','0000-00-00 00:00:00'),(3126,0,0,1621,1577,1993,0,0,NULL,'','DIAG','ZZZ','Remark','ABDOMINAL LUMP','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-31 19:24:30','','0000-00-00 00:00:00'),(3127,0,0,1722,1677,2126,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>R/S&thinsp; LT &gt; RT CREPTS ++</p>\n\n<p>CXR S/O LT MIDDLE ZONE CONSOILDATION</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-10-31 19:24:31','','0000-00-00 00:00:00'),(3128,0,0,1621,1577,1993,0,0,NULL,'','DIAG','ZZZ','Remark','? CARCINOMA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-31 19:24:40','','0000-00-00 00:00:00'),(3129,0,0,438,416,2087,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:25:12','','0000-00-00 00:00:00'),(3133,0,0,1628,1584,2004,0,0,NULL,'','DIAG','ZZZ','Remark','SEBACEOUS CYST WITH ABSCESS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-31 19:27:44','','0000-00-00 00:00:00'),(3134,0,0,1704,1659,2098,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:29:21','','0000-00-00 00:00:00'),(3135,0,0,1636,1592,2013,0,0,NULL,'','DIAG','ZZZ','Remark','LT FOOT CALLOCITY','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-31 19:29:35','','0000-00-00 00:00:00'),(3136,0,0,1668,1623,2050,0,0,NULL,'','DIAG','ZZZ','Remark','GALL BLADDER STONES','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-31 19:30:46','','0000-00-00 00:00:00'),(3137,0,0,1668,1623,2050,0,0,NULL,'','DIAG','ZZZ','Remark','HTN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-31 19:30:50','','0000-00-00 00:00:00'),(3138,0,0,1668,1623,2050,0,0,NULL,'','DIAG','ZZZ','Remark','PVD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-10-31 19:30:53','','0000-00-00 00:00:00'),(3139,0,0,1722,1677,2126,0,0,NULL,'','MADVICE','ZZZ','Remark','ADVICE ADMISSION \nIV ANTIBIOTICS & SUPPORTIVE TREATMENT','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-10-31 19:31:07','','0000-00-00 00:00:00'),(3141,0,0,1697,1652,2086,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling any time and remanis for few hrs&thinsp;</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:37:32','darshan','2025-10-31 19:37:59'),(3142,0,0,1697,1652,2086,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:37:38','','0000-00-00 00:00:00'),(3143,0,0,1697,1652,2086,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:38:08','darshan','2025-11-01 11:38:04'),(3145,0,0,1640,1596,2017,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:39:47','','0000-00-00 00:00:00'),(3146,0,0,226,213,2105,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---no imrovment&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:43:03','','0000-00-00 00:00:00'),(3148,0,0,226,213,2105,0,0,NULL,'','MADVICE','ZZZ','Remark','HAT','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:46:18','','0000-00-00 00:00:00'),(3149,0,0,1641,117,2018,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE PYOGENIC MENINGITIS WITH RIGHT PSEUDOMONAS OTITIS MEDIA WITH OSTEOMYELITIS</STRONG></P>\r\n\r\n<P><STRONG>K/C/O DM;IHD-POST CABG</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 19:47:02','mo','2025-11-05 11:21:30'),(3150,0,0,1641,117,2018,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-31 19:47:02','mo','2025-11-05 11:21:30'),(3151,0,0,1641,117,2018,0,0,NULL,'','HISTHOSPCOURSE','','','<P>HISTORY GIVEN BY PATIENT&#39;S RELATIVE.</P>\r\n\r\n<P>A 80 YEARS OLD MALE PATIENT P/W</P>\r\n\r\n<P>K/C/O DM;IHD-POST CABG</P>\r\n\r\n<P>H/OL HERNIOPLASTY,S/P CATARRACT</P>\r\n\r\n<P>C/O: RIGHT EAR PAIN+DISCHARGE;HEADACHE;GIDDINESS;INTERMITTENT FEVER SINCE LAST 15 DAYS.ANOREXIA;GENERALISED WEAKNESS SINCE 4-5 DAYS.DROWSINESS;VOMITING SINCE TODAY MORNING.</P>\r\n\r\n<P>SO,PRIMARY TREATMENT TAKEN AT DR.AKASH DOSHI TTHEN CAME HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>RIGHT EAR SWAB CULTURE SENT (OUT SIDE)</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-101 F</P>\r\n\r\n<P>PR-80/MIN</P>\r\n\r\n<P>BP-170/90MMHG</P>\r\n\r\n<P>SPO2-97% ON RA</P>\r\n\r\n<P>RR-30/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-DROWSY,OCC.F/V/C,MOVING ALL 4 LIMBS,E2V4M6,PUPIL-BERL</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-137MG/DL</P>\r\n\r\n<P>-WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.</P>\r\n\r\n<P>-TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>31/10/25,</P>\r\n\r\n<P>-ALL REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>-ENT SURGEON DR,UMANAG SHUKLA REFERENCE DONE AND ALL HIS ADVICE FOLLOWED</P>\r\n\r\n<P>-GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.PLANNED CSF EXAMINATION.</P>\r\n\r\n<P>-GRADUALLY PATIENT&#39;S SENSORIUM WAS IMPROVING AND FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>-EAR SWAB S/O; GRAM NEGATIVE BACILLI IN INTRIM REPORT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>1/11/2025,</P>\r\n\r\n<P>-CEREBROSPINAL FLUID EXTRACTION DONE BY DR ARCHIT RATHOD WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>-CSF R/M DONE WHICH S/O: PYOGENIC MENINGITIS</P>\r\n\r\n<P>-CSF KOH DONE WHICH S/O: NO FUNGAL LIKE ELEMENT</P>\r\n\r\n<P>-CSF ADA DONE WHICH S/O: 6.56 U/L</P>\r\n\r\n<P>-CSF FLUID CYTOLOGY DONE WHICH S/O: PYOGENIC MENINGITITS</P>\r\n\r\n<P>-CSF FLUID GENE X PERT S/O: MTB NOT DETECTED</P>\r\n\r\n<P>-CSF C/S SENT</P>\r\n\r\n<P>-EAR SWAB S/O;PSEUDOMONAS HEAVY GROWTH AND TREATMENT MODIFIED @ SENSITIVITY</P>\r\n\r\n<P>-REFERENCE OF DR AKASH DOSHI(INFECTIOUS DISEASE SPECIALIST) DONE AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>02/11/2025,</P>\r\n\r\n<P>-CATHETER CLAMP AND REMOVED, URINE OUTPUT ADEQUATE</P>\r\n\r\n<P>-PATIENT GENERAL CONDITION IMPROVED</P>\r\n\r\n<P>-REFERENC OF DR ROSHAN MISTRY (NEUROPHYSICIAN) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>03/112025,</P>\r\n\r\n<P>-REQUIRED BLOOD INVESTIGATION DONE WHICH WAS IMPROVED.</P>\r\n\r\n<P>-SAME TREATMENT CONTINUED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04/11/2025</P>\r\n\r\n<P>CSF C/S S/O: NO MICROORGANISM&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05/11/2024</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT GENERAL CONDITION AND PROGNOSIS EXPLAIN TO PATIENT&#39;S RELATIVE BUT THEY WANT DISCHARGE AGAINST MEDICAL ADVICE SO NOW PATIENT BEING DAMA.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 19:47:02','mo','2025-11-05 11:21:30'),(3152,0,0,1724,1679,2128,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:49:13','','0000-00-00 00:00:00'),(3153,0,0,1698,1653,2088,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 19:55:18','','0000-00-00 00:00:00'),(3155,0,0,1641,117,2018,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MEZOR&nbsp; 1GM/100ML NS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TDS&nbsp; &nbsp; &nbsp; &nbsp; DAY 6TH</P>\r\n\r\n<P>INJ CIPLOX 100ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; DAY 4TH</P>\r\n\r\n<P>INJ PANTODAC 40MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;OD</P>\r\n\r\n<P>INJ VOMISET&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TDS</P>\r\n\r\n<P>INJ INFUPAR 1GM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TDS</P>\r\n\r\n<P>TAB LIPITAS 20MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp;&nbsp; &nbsp; &nbsp; 0--0--1</P>\r\n\r\n<P>TAB NAPROSYN 500MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;SOS</P>\r\n\r\n<P>INJ DEXONA 2CC&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; BD</P>\r\n\r\n<P>INJ LEVERA 500MG/DILUTED&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;BD</P>\r\n\r\n<P>INJ H ACTARPID&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; S/C&nbsp; &nbsp;@&nbsp; &nbsp;RBS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>INJ NS/RL (500)&nbsp; &nbsp; &nbsp; @&nbsp; &nbsp; &nbsp; 60 ML/HR</P>\r\n\r\n<P>INJ ELDERVIT 1A IN OD</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>INJ TARGOCID</P>\r\n\r\n<P>INJ AMIKACIN</P>\r\n\r\n<P>INJ CLINDATEC</P>\r\n\r\n<P>INJ TRAMADOL</P>\r\n\r\n<P>INJ DYNAPAR</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 19:58:04','mo','2025-11-05 11:21:30'),(3156,0,0,917,885,2093,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----recurrence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:06:03','','0000-00-00 00:00:00'),(3157,0,0,1694,1649,2083,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:09:32','','0000-00-00 00:00:00'),(3159,0,0,1727,1682,2133,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HIP PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-10-31 20:10:10','','0000-00-00 00:00:00'),(3160,0,0,1008,975,2094,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:12:42','','0000-00-00 00:00:00'),(3161,0,0,1705,1660,2099,0,0,NULL,'','HIST','ZZZ','Remark','<p>occassional giddiness</p>\n\n<p>heaviness of head&thinsp;</p>\n\n<p>positional vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:16:12','','0000-00-00 00:00:00'),(3163,0,0,1705,1660,2099,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER---10 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:17:58','','0000-00-00 00:00:00'),(3165,0,0,1720,1675,2124,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:21:14','','0000-00-00 00:00:00'),(3166,0,0,1708,1663,2108,0,0,NULL,'','HIST','ZZZ','Remark','<p>FOLLOW UP CASE--recurence of vertigo&thinsp;</p>\n\n<p>right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:24:25','','0000-00-00 00:00:00'),(3167,0,0,1708,1663,2108,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:24:45','','0000-00-00 00:00:00'),(3169,0,0,1708,1663,2108,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:25:05','','0000-00-00 00:00:00'),(3171,0,0,1694,1649,2083,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:26:17','','0000-00-00 00:00:00'),(3172,0,0,907,875,2115,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:32:34','','0000-00-00 00:00:00'),(3173,0,0,907,875,2115,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:33:18','','0000-00-00 00:00:00'),(3175,0,0,907,875,2115,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:34:30','','0000-00-00 00:00:00'),(3177,0,0,1698,1653,2088,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:35:06','','0000-00-00 00:00:00'),(3178,0,0,1721,1676,2125,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:39:50','','0000-00-00 00:00:00'),(3180,0,0,1720,1675,2124,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:41:38','','0000-00-00 00:00:00'),(3181,0,0,1723,1678,2127,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:45:01','','0000-00-00 00:00:00'),(3182,0,0,1723,1678,2127,0,0,NULL,'','CC','ZZZ','Remark','THROAT PAIN WITH COUGHING ---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:45:13','','0000-00-00 00:00:00'),(3183,0,0,1723,1678,2127,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:45:20','','0000-00-00 00:00:00'),(3184,0,0,1725,1680,2129,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:47:50','','0000-00-00 00:00:00'),(3185,0,0,1728,1683,2134,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE-----MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:58:59','','0000-00-00 00:00:00'),(3186,0,0,1728,1683,2134,0,0,NULL,'','HIST','ZZZ','Remark','<p>episidic headache ---sudden onset any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 20:59:45','','0000-00-00 00:00:00'),(3187,0,0,1728,1683,2134,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>vemp---wnl</p>\n\n<p>vng---central vareity of nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 21:00:05','darshan','2025-10-31 21:18:06'),(3188,0,0,1728,1683,2134,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-10-31 21:00:07','','0000-00-00 00:00:00'),(3189,0,0,1495,109,1888,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO DOE</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 21:12:04','mo','2025-10-31 21:12:55'),(3190,0,0,1495,109,1888,0,0,NULL,'','TREATDISC_TI','','','<P>TAB NEXPROFAST (40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 15 DAYS ...........(30)</P>\r\n\r\n<P>TAB LUPIHEME&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 15 DAYS ...........(15)</P>\r\n\r\n<P>TAB DX (30)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS ...........(15)&nbsp; &nbsp;</P>\r\n\r\n<P>TAB CETZINE COLD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS ............(15)</P>\r\n\r\n<P>SYP KOLTUS - C&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;5ML TDS&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS&nbsp; ..........(1)&nbsp; &nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 21:12:04','mo','2025-10-31 21:12:55'),(3191,0,0,1403,107,1727,0,0,NULL,'','TREATDISC_TI','','','<P>INJ UNITREX-S&nbsp; 1.5GM/DILUTED&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; 8AM-----8PM&nbsp; &nbsp; &nbsp; &nbsp; FOR 3&nbsp;DAYS (5 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB NEXPROFAST (40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 15 DAYS</P>\r\n\r\n<P>TAB ZOFER MD (4MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 15 DAYS</P>\r\n\r\n<P>TAB TOLVAPTAN (15MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;FOR 3&nbsp;DAYS (5 TAB)</P>\r\n\r\n<P>TAB VIMGRAM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;FOR 15 DAYS</P>\r\n\r\n<P>TAB ULTRACET SEMI&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp;FOR 15 DAYS</P>\r\n\r\n<P>TAB LUPIHEME&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 15 DAYS</P>\r\n\r\n<P>TAB SOBIOSIS (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 15 DAYS</P>\r\n\r\n<P>TAB LANOL ER&nbsp; (650MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IF FEVER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........(5 TAB)</P>\r\n\r\n<P>INJ MIXTARD (30/70)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;S/C&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 24 UNIT&nbsp; BEFORE LUNCH</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 10 UNIT&nbsp; BEFORE DINNER</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>OWN MEDICINE:&nbsp;</STRONG></P>\r\n\r\n<P>TAB ECOSPRIN AV (75/10)&nbsp; &nbsp; &nbsp; &nbsp; 0--1--0</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>START ON 04-11-2025 AFTER IV INECTABLE STOP:</STRONG></P>\r\n\r\n<P>TAB MERTIFUR (100)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 22:56:35','mo','2025-11-01 12:49:56'),(3192,0,0,1641,117,2018,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 23:03:26','mo','2025-11-05 11:21:30'),(3193,0,0,1729,120,2135,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-31 23:13:34','mo','2025-11-07 12:51:32'),(3194,0,0,1729,120,2135,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 43 YEARS OLD MALE&nbsp;PATIENT PRESENT WITH,<BR />\r\nALLEGED H/O INJESTION OF LIQ. RADAR 20 EC(CHLORPYRIFOS 20%) ABOUT 500ML TAKEN AT RESCOURSE GROUND ON 31-10-2025 TIME 6.30 PM.<BR />\r\nK/C/O: BIPOLAR -II DISORDER, DEPRESSION.<BR />\r\nC/O: VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DIARRHEOA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CHEST PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; UNEZENESS, GHABHRAMAN, RIGOR.</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE TODAY EVENING.&nbsp;<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 98.0`F<BR />\r\nPR- 120/MIN<BR />\r\nBP- 200/120 MMHG&nbsp;<BR />\r\nSPO2-99% ON RA&nbsp;<BR />\r\nRR- 28/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>31-10-2025</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>RT DONE. RT LAVAGE DONE.</P>\r\n\r\n<P>FOLY`S CATH DONE.</P>\r\n\r\n<P>INJ. PAM LODING DOSE GIVEN.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>INJ. ATROPINE START BY INFUSION PUMP.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>01-11-2025 ON PATIENT HAVING DROWSY BUT AROUSABLE AND DISORIENTED STATUS. OXYGEN SUPPORT CONTINUES. INJ.ATROPINE CONTINES DRIP TREATMENT MODIFIED.ORALLY KEEP NBM.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>02-11-2025 ON PATIENT IRRELEVANT TALKING AND IRRITABLE SO TREATMENT MODIFIED AS PER DR.ARCHIT RATHOD SIR AND ORALLY NBM.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>03-11-2025 ON DROWSY AND ALTERED SENSORIUM DR.VISHAL MEVA&nbsp; ADVISED PSYCHIATIST REFERANCE THAN DR.RAJESH RAM (PSY.) REFERANCE DONE AND TREATMENT MODIFIED AS PER ADVISE RT FEEDING AND ORALLY SIPS ALLOWED.CONTINUES ICU STAY.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04-11-2025 ON PATIENT CONSIOUS LEVEL IMPROVING AND ORALLY SIPS OF WATER TOLERATED WELL SO ORALLY LIQUID DIET ALLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05/11/2025 ON PATIENT REPROTS ARE IMPROVNG AND DR.VISHAL MEVA REVIEW DONE ADVISE INJ.ATROPINE STOPPED&nbsp;AND ORALLY SOFT DIET TOLERATED WELL SO PATIENT SHIFTED WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>06/11/2025</P>\r\n\r\n<P>FOLEY&#39;S CLAMP &AMP; REMOVE</P>\r\n\r\n<P>PATIENT CONSCIOUS &AMP; ORIENTED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>07/11/2025</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>S.CHOLINESTERASE DONE WHICH S/O: 750 U/L</P>\r\n\r\n<P>ANTIBIOTIC TAPPER OFF</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 23:13:34','mo','2025-11-07 12:51:32'),(3195,0,0,1729,120,2135,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. ZOSTUM</P>\r\n\r\n<P>INJ. METROGYL</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ. ATROPIN</P>\r\n\r\n<P>INJ. PAM</P>\r\n\r\n<P>INJ.NTG</P>\r\n\r\n<P>INJ. NS/RL</P>\r\n\r\n<P>TAB BISOBIS</P>\r\n\r\n<P>TAB QUTAN</P>\r\n\r\n<P>TAB ZEPTAS MD</P>\r\n\r\n<P>TAB CORTEL</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 23:13:34','mo','2025-11-07 12:51:32'),(3196,0,0,1680,119,2065,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LEFT L/L C2,C4A,C6 CHRONIC VENOUS DISEASE&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O : HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 23:19:54','mo','2025-11-02 10:18:42'),(3197,0,0,1680,119,2065,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-10-31 23:19:54','mo','2025-11-02 10:18:42'),(3198,0,0,1680,119,2065,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 81 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN<BR />\r\nH/O:INJURY ON LEFT FOOT BEFORE 6 MONTH&nbsp;<BR />\r\nC/O:BLUISH &AMP; BLACKISH DISCOLOURATION OF LEFT LEG&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;PAIN WHILE WALKING&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;SWELLING OVER LEFT LEG</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO FEVER</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;WOUND ON LEFT LEG</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 2-3 YEARS FOR THAT PATIENT PRIMARY CONSULTED AT GUJRAT VASCULAR HOSPITAL RAJKOT AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>LEFT L/L VENOUS COLOR DOPPLER STUDY DONE ON 31/10/2025 REPORT ATACHED WITH FILE</P>\r\n\r\n<P>2D ECHO DONE ON 31/10/2025 WHICH S/O: EF 60-65%</P>\r\n\r\n<P>PRE-OP PROFILE DONE ON 31/10/2025</P>\r\n\r\n<P>CARDIAC FITNESS GIVEN BY DR ANKUR THUMMAR CARDIOLOGIST WITH DUE CARDIAC RISK</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-83/MIN, BP-142/90MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)</P>\r\n\r\n<P>REFERENCE OF DR TEJAS KARANGIA (VASCULAR SURGEON) DONE ON 31/10/2025 AND FOLLOW HIS ALL ADVICE&nbsp;<BR />\r\nLEFT GSV EVCT + STAB PHLEBECTOMY + FOAM SCLEROTHERAPY DONE BY DR TEJAS KARANGIA ON 1/11/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 23:19:54','mo','2025-11-02 10:18:42'),(3199,0,0,1680,119,2065,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n\r\n<P>HOLD TAB ROSEDAY A (20)&nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp;TILL FOLLOW UP&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;(START AFTER ADVICE FROM DR .TEJAS KARANGIA)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 23:19:54','mo','2025-11-02 10:18:42'),(3200,0,0,1680,119,2065,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>TAB DILNIP - T</P>\r\n\r\n<P>FREEGO POWDER&nbsp;</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 23:19:54','mo','2025-11-02 10:18:42'),(3201,0,0,1647,118,2027,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\nDM;HTN;DYSLIPIDEMIA</P>\r\n\r\n<P>POST HYSTERECTOMY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 23:33:13','mo','2025-11-02 10:53:24'),(3202,0,0,1647,118,2027,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 89 YEARS OLD FEMALE PATIENT PRESENT WITH,<BR />\r\nH/O : COUGH, POOR COUGH REFLEX, DECREASED URINE OUTPUT, NO FEVER, DECREASED ORAL&nbsp;INTAKE, DROWSINESS SINCE 4-5 DAYS.<BR />\r\nK/C/O: DM-II, HTN, DYSLIPIDEMIA,&nbsp;POST HYSTERECTOMY</P>\r\n\r\n<P>FOR THAT PATIENT PRIMARY TREATMENT TAKEN AT DR.SAMIR PRAJAPATI AND DIAGNOSED UROSEPSIS.MEROPENUM 2 DAYS TAKEN AT HOME.</P>\r\n\r\n<P>TODAY MORNING PATIENT BEING UNCONSCIOUS SO,RELATIVE BROUGHT HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- COLD EXTREMITIES.<BR />\r\nPR- 103/MIN<BR />\r\nBP- 150/70 MMHG&nbsp;<BR />\r\nSPO2-90% ON RA&nbsp;<BR />\r\nRR- 16/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS- DROWSY/DISORIENTED, NOT F/V/C<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>RBS-48 MG/DL-IV DEXTROSE GIVEN.</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>31-10-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>O2 SUPPORT STARTED.</P>\r\n\r\n<P>CHEST X RAY DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>ABG DONE S/O SEVERE ACIDOSIS.IV NAHCO3 DRIP STARTED.</P>\r\n\r\n<P>IN VIEW OF ANURIA MANAGED BY IV FLUID THERAPY AND IV DIURETIC DRIP STARTED.</P>\r\n\r\n<P>S. CREATININE LEVEL - 8.37 MG/DL.</P>\r\n\r\n<P>S. SODIUM - 132.7 MMOL/L.</P>\r\n\r\n<P>S. POTASSIUM - 7.75 MMOL/L. INJ. CAL GLUCONATE GIVEN, NEB&nbsp;ASTHALIN AND GI DRIP GIVEN.</P>\r\n\r\n<P>CRP - 88.52 MG/L.</P>\r\n\r\n<P>NEPHAROLOGIST DR.DENISH SAVALIYA REFERENCE DONE.FOLLOWED ALL HIS ADVICE.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.ADV:HD</P>\r\n\r\n<P>USG ABDOMEN DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>RIGTH SIDED&nbsp; FEMORAL DIALYSIS CATHETER INSERTED BY DR.ARCHIT RATHOD WITH ALL ASEPTIC PRECAUTIONS.</P>\r\n\r\n<P>PATIENT DEVELOPED ARRHYTHMIA MANAGED BY IV CORDERONE DRIP AND IV MGSO4 GIVEN.</P>\r\n\r\n<P>D-DIMER SENT.S/O VERY HIGH &GT;10,000 NG/ML.LMWX STARTED.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION IV NORAD DRIP STARTED.</P>\r\n\r\n<P>2 D ECHO DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>HD DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>01-11-2025,&nbsp;</P>\r\n\r\n<P>PATIENT ON O2 SUPPORT.</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>U/O NIL&nbsp;</P>\r\n\r\n<P>CT PULMONARY ANGIO WITH CT KUB DONE.S/O COMPLETE OCCLUSION OF THE PROXIMAL PART OF THE LEFT RENAL ARTERY.NO EVIDENCE OF ACUTE OR CHRONIC PULMONARY THROMBOEMBOLISM.</P>\r\n\r\n<P>GENERAL CONDITION AND POOR PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>02-11-2025,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>PATIENT ON O2 SUPPORT.</P>\r\n\r\n<P>U/O NIL</P>\r\n\r\n<P>PATIENT NEED FURTHER TREATMENT BUT RELATIVE WANTS PATIENT DISCHARGED AGAINST MEDICAL ADVICE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 23:33:13','mo','2025-11-02 10:53:24'),(3203,0,0,1647,118,2027,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. MEZOR</P>\r\n\r\n<P>INJ. LINOX</P>\r\n\r\n<P>INJ. CLINDATEC</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ. GLUCOSE INSULIN DRIP</P>\r\n\r\n<P>INJ. NAHCO3</P>\r\n\r\n<P>INJ. CAL GULUCONATE</P>\r\n\r\n<P>INJ. DYTOR</P>\r\n\r\n<P>INJ.CORDARONE</P>\r\n\r\n<P>INJ. NORAD</P>\r\n\r\n<P>INJ. CLEXANE</P>\r\n\r\n<P>INJ. NS</P>\r\n\r\n<P>INJ. ELDERVIT</P>\r\n\r\n<P>INJ. NAHCO3</P>\r\n\r\n<P>INJ. MAGSO4</P>\r\n\r\n<P>INJ. TRENEXA</P>\r\n\r\n<P>INJ. VIT K</P>\r\n\r\n<P>TAB. ECOSPRIN</P>\r\n\r\n<P>NEB. ASTHALIN</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-10-31 23:33:13','mo','2025-11-02 10:53:24'),(3204,0,0,944,913,2143,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 10:41:14','','0000-00-00 00:00:00'),(3206,0,0,944,913,2143,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-01 10:42:35','','0000-00-00 00:00:00'),(3207,0,0,1738,1692,2146,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----3-4 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 10:50:31','','0000-00-00 00:00:00'),(3208,0,0,1738,1692,2146,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of short duration positional giddiness without any cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 10:51:58','','0000-00-00 00:00:00'),(3209,0,0,1738,1692,2146,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--right post canal bpv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 10:52:12','darshan','2025-11-01 13:32:07'),(3210,0,0,1738,1692,2146,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 10:52:18','','0000-00-00 00:00:00'),(3211,0,0,1748,1702,2161,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-01 10:57:31','','0000-00-00 00:00:00'),(3212,0,0,1748,1702,2161,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-01 10:57:36','drjayant','2025-11-01 10:57:51'),(3213,0,0,1733,1687,2139,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:01:28','','0000-00-00 00:00:00'),(3214,0,0,1733,1687,2139,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:01:58','','0000-00-00 00:00:00'),(3215,0,0,1733,1687,2139,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus--absent</p>\n\n<p>dix hallpike--nasd</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:02:06','darshan','2025-11-01 13:47:32'),(3217,0,0,1735,1689,2141,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:05:43','','0000-00-00 00:00:00'),(3219,0,0,1748,1702,2161,0,0,NULL,'','MADVICE','ZZZ','Remark','SUGAR RESTRICTED DIET','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-11-01 11:10:11','','0000-00-00 00:00:00'),(3221,0,0,1736,1690,2142,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --with sense of imbalance initially severe imbalance&thinsp;</p>\n\n<p>presently when pt walks for 5-10 mins then he feels imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:14:59','darshan','2025-11-01 11:18:54'),(3222,0,0,1107,1705,2165,0,0,NULL,'','CC','ZZZ','Remark','CONSTIPATION +||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-01 11:15:11','','0000-00-00 00:00:00'),(3223,0,0,1107,1705,2165,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-01 11:15:33','drjayant','2025-11-01 13:14:21'),(3224,0,0,1736,1690,2142,0,0,NULL,'','CC','ZZZ','Remark','SENSE OF IMBALANCE ----5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:17:56','','0000-00-00 00:00:00'),(3225,0,0,1736,1690,2142,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain with angiography---nad</p>\n\n<p>cardiac evaluation--nad</p>\n\n<p>stabiloemtry--nad</p>\n\n<p>CCG--AP displacement out of normal range</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:19:19','darshan','2025-11-01 13:58:52'),(3227,0,0,1742,1696,2151,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:24:10','','0000-00-00 00:00:00'),(3228,0,0,831,800,2156,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:28:13','','0000-00-00 00:00:00'),(3230,0,0,1152,1710,2172,0,0,NULL,'','CC','ZZZ','Remark','MILD WEKNESS +||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-01 11:28:56','','0000-00-00 00:00:00'),(3231,0,0,1152,1710,2172,0,0,NULL,'','HIST','ZZZ','Remark','<p>F&#39;UP AGE, SEPSIS, AKI</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-11-01 11:29:14','','0000-00-00 00:00:00'),(3233,0,0,831,800,2156,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:30:01','','0000-00-00 00:00:00'),(3234,0,0,1756,1712,2174,0,0,NULL,'','CC','ZZZ','Remark','DYSPEPSIA +||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-01 11:32:22','','0000-00-00 00:00:00'),(3235,0,0,1756,1712,2174,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-01 11:32:33','','0000-00-00 00:00:00'),(3236,0,0,1732,1686,2138,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:33:00','','0000-00-00 00:00:00'),(3237,0,0,1732,1686,2138,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR DISCHARGE -----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:33:12','','0000-00-00 00:00:00'),(3238,0,0,1732,1686,2138,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right ear full of discharge&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:33:22','','0000-00-00 00:00:00'),(3239,0,0,1745,1699,2158,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-01 11:33:58','','0000-00-00 00:00:00'),(3240,0,0,1697,1652,2086,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:38:53','','0000-00-00 00:00:00'),(3242,0,0,1697,1652,2086,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:39:11','','0000-00-00 00:00:00'),(3243,0,0,1749,1703,2163,0,0,NULL,'','DIAG','ZZZ','Remark','POST ANAL FISS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-01 11:42:43','','0000-00-00 00:00:00'),(3244,0,0,1737,1691,2145,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out bed&thinsp;</p>\n\n<p>and change of posture</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:51:17','darshan','2025-11-01 11:54:51'),(3245,0,0,1753,1708,2170,0,0,NULL,'','DIAG','ZZZ','Remark','INTERNAL HEMORRHOIDS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-01 11:52:05','','0000-00-00 00:00:00'),(3246,0,0,1737,1691,2145,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:54:14','','0000-00-00 00:00:00'),(3247,0,0,1737,1691,2145,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:55:00','','0000-00-00 00:00:00'),(3249,0,0,1737,1691,2145,0,0,NULL,'','MADVICE','ZZZ','Remark','VESTIBULAR IX---PT WILL COME LATEAR ON','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-01 11:56:15','','0000-00-00 00:00:00'),(3250,0,0,1759,1715,2177,0,0,NULL,'','DIAG','ZZZ','Remark','FISTULA IN ANO','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-01 11:57:40','','0000-00-00 00:00:00'),(3251,0,0,1757,1713,2175,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-11-01 12:03:33','','0000-00-00 00:00:00'),(3252,0,0,1741,1695,2150,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:07:32','','0000-00-00 00:00:00'),(3253,0,0,1762,1718,2180,0,0,NULL,'','CC','ZZZ','Remark','BETTER ||','','',0,'0000-00-00 00:00:00','drarchit','2025-11-01 12:10:45','','0000-00-00 00:00:00'),(3254,0,0,1760,1716,2178,0,0,NULL,'','CC','ZZZ','Remark','VERITGO---FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:15:09','','0000-00-00 00:00:00'),(3255,0,0,1760,1716,2178,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset any time and remains for few mins&thinsp;</p>\n\n<p>positional giddiness</p>\n\n<p>frequent episodic headache since many yrs</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:15:10','darshan','2025-11-01 12:16:30'),(3256,0,0,1760,1716,2178,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:15:16','','0000-00-00 00:00:00'),(3257,0,0,1760,1716,2178,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>ht--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:16:42','','0000-00-00 00:00:00'),(3258,0,0,1760,1716,2178,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV WITH VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:17:46','','0000-00-00 00:00:00'),(3259,0,0,1456,108,1782,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 12:20:33','mo','2025-11-01 12:20:49'),(3260,0,0,1456,108,1782,0,0,NULL,'','TREATDISC_TI','','','<P>INJ OFRAMAX (1GM/DIL)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;9AM----9PM&nbsp; &nbsp; &nbsp; &nbsp; FOR 4 DAYS (7 INJ)</P>\r\n\r\n<P>INJ AMIKACIN (500MG/DIL)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8&nbsp;PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 3&nbsp;DAYS (3&nbsp;INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CAP DOXY (100 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 3 DAYS (5 TAB)</P>\r\n\r\n<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZOFER MD (4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ERVADOL SPAS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>CAP ENUFF (100 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 12:20:33','mo','2025-11-01 12:20:49'),(3263,0,0,1763,1719,2181,0,0,NULL,'','CC','ZZZ','Remark','C/O PAIN AND SWELLING RT SHOULDR PAIN | 45 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-01 12:23:30','drarchit','2025-11-01 12:31:55'),(3264,0,0,1739,1693,2147,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--FEW YRS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:25:48','','0000-00-00 00:00:00'),(3265,0,0,1739,1693,2147,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotry feeling any time and remains for few hrs&thinsp;</p>\n\n<p>right ear deafness with tinnitus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:25:50','darshan','2025-11-01 12:26:31'),(3266,0,0,1739,1693,2147,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR DEAFNESS AND TINNITUS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:25:58','','0000-00-00 00:00:00'),(3268,0,0,1739,1693,2147,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad<br />\npta--right severe to very severe sn deafness(o)</p>\n\n<p>MRI brain--nad</p>\n\n<p>stabilometry--nad</p>\n\n<p>CCG---wnl</p>\n\n<p>vng--right labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:26:40','darshan','2025-11-01 14:12:11'),(3269,0,0,1739,1693,2147,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:27:06','','0000-00-00 00:00:00'),(3272,0,0,1760,1716,2178,0,0,NULL,'','MADVICE','ZZZ','Remark','PT WILL COME LATER ON','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:28:55','','0000-00-00 00:00:00'),(3273,0,0,1751,1706,2166,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:30:14','','0000-00-00 00:00:00'),(3274,0,0,1768,1724,2189,0,0,NULL,'','CC','ZZZ','Remark','C/O HEADACHE | 10 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-01 12:30:55','','0000-00-00 00:00:00'),(3277,0,0,1763,1719,2181,0,0,NULL,'','MADVICE','ZZZ','Remark','NEED I&D DETOID ABSCESS \nIV ANTIBIOTICS (S0S)\nINSULIN (S0S)','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-01 12:33:12','','0000-00-00 00:00:00'),(3278,0,0,1758,1714,2176,0,0,NULL,'','CC','ZZZ','Remark','SHAKY FEELING IN HEAD---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:41:08','','0000-00-00 00:00:00'),(3279,0,0,1758,1714,2176,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic shaky feeling remains for few seconds&thinsp;</p>\n\n<p>heaviness of head&thinsp;</p>\n\n<p>headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:41:50','','0000-00-00 00:00:00'),(3280,0,0,1758,1714,2176,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>ppta---wnl</p>\n\n<p>stabilometry---nad</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:42:11','darshan','2025-11-01 14:20:13'),(3281,0,0,1758,1714,2176,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:42:19','','0000-00-00 00:00:00'),(3285,0,0,1152,1710,2172,0,0,NULL,'','MADVICE','ZZZ','Remark','CT OWN INSULIN','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-11-01 12:47:42','','0000-00-00 00:00:00'),(3286,0,0,1776,1732,2199,0,0,NULL,'','CC','ZZZ','Remark','URTI | 2 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-01 12:49:19','','0000-00-00 00:00:00'),(3287,0,0,1776,1732,2199,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-01 12:49:21','drjayant','2025-11-01 12:51:57'),(3288,0,0,1764,1720,2184,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:53:18','','0000-00-00 00:00:00'),(3289,0,0,1767,1723,2188,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 12:58:52','','0000-00-00 00:00:00'),(3290,0,0,1769,1725,2190,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--verrtigo pesist</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:04:13','','0000-00-00 00:00:00'),(3291,0,0,1781,1737,2204,0,0,NULL,'','CC','ZZZ','Remark','AGE SINCE LAST NIGHT | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-01 13:05:11','','0000-00-00 00:00:00'),(3292,0,0,1781,1737,2204,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-01 13:05:14','','0000-00-00 00:00:00'),(3293,0,0,1781,1737,2204,0,0,NULL,'','MADVICE','ZZZ','Remark','ADMISSION ADVISED','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-11-01 13:05:29','','0000-00-00 00:00:00'),(3294,0,0,1774,1730,2197,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:07:24','','0000-00-00 00:00:00'),(3295,0,0,1743,1697,2152,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:11:20','','0000-00-00 00:00:00'),(3298,0,0,1743,1697,2152,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:13:56','','0000-00-00 00:00:00'),(3299,0,0,1107,1705,2165,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>RS- MILD DECREASE AE ON LT</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-11-01 13:16:22','','0000-00-00 00:00:00'),(3300,0,0,1744,1698,2157,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:17:09','','0000-00-00 00:00:00'),(3301,0,0,1744,1698,2157,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:17:12','','0000-00-00 00:00:00'),(3303,0,0,1761,1717,2179,0,0,NULL,'','CC','ZZZ','Remark','C/O DOE  | 10 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-01 13:20:58','','0000-00-00 00:00:00'),(3304,0,0,1761,1717,2179,0,0,NULL,'','CC','ZZZ','Remark','C/O COUGH DRY | 7 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-01 13:20:58','','0000-00-00 00:00:00'),(3305,0,0,1107,1705,2165,0,0,NULL,'','MADVICE','ZZZ','Remark','CHEST PHYSICIAN OPINION','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-11-01 13:21:26','','0000-00-00 00:00:00'),(3306,0,0,1746,1700,2159,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---recurrence of vertigo&thinsp;</p>\n\n<p>positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:22:09','','0000-00-00 00:00:00'),(3307,0,0,1746,1700,2159,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:22:18','','0000-00-00 00:00:00'),(3308,0,0,1746,1700,2159,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:22:54','','0000-00-00 00:00:00'),(3310,0,0,1746,1700,2159,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAEWNVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:23:07','','0000-00-00 00:00:00'),(3311,0,0,1752,1707,2168,0,0,NULL,'','HIST','ZZZ','Remark','<p>followup case---better partially</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:28:20','','0000-00-00 00:00:00'),(3312,0,0,1738,1692,2146,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:32:25','','0000-00-00 00:00:00'),(3315,0,0,1777,1733,2200,0,0,NULL,'','CC','ZZZ','Remark','POSTED FOR ||','','',0,'0000-00-00 00:00:00','drarchit','2025-11-01 13:35:23','','0000-00-00 00:00:00'),(3316,0,0,1777,1733,2200,0,0,NULL,'','CC','ZZZ','Remark','POSTED FOR PREEMPLOYMENT  FITTNESS ||','','',0,'0000-00-00 00:00:00','drarchit','2025-11-01 13:36:03','','0000-00-00 00:00:00'),(3317,0,0,1777,1733,2200,0,0,NULL,'','HIST','ZZZ','Remark','<p>PATIENT&thinsp;&thinsp;IS DIAGNOSED TO HAVE HT BEFORE 3 DAYS ON TREATMENT</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-01 13:36:53','drarchit','2025-11-01 13:43:50'),(3318,0,0,1777,1733,2200,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALLY NAD</p>\n\n<p>ECG S/O T INV LATERAL LEADS&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-01 13:38:22','drarchit','2025-11-01 13:42:08'),(3319,0,0,1779,1735,2202,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---sense of imbalance occassional&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:38:41','','0000-00-00 00:00:00'),(3320,0,0,1779,1735,2202,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nasd</p>\n\n<p>hit--=nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:38:51','','0000-00-00 00:00:00'),(3321,0,0,1134,1096,2169,0,0,NULL,'','HIST','ZZZ','Remark','<p>pt came for dentral treatment opinion</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:40:39','','0000-00-00 00:00:00'),(3322,0,0,392,25,414,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>CONSCIOUS &AMP; ORIENTED</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO DOE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 13:42:57','mo','2025-11-01 14:13:29'),(3323,0,0,392,25,414,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP ON 13-11-2025</P>\r\n\r\n<P>SPIROMETRY</P>\r\n\r\n<P>PHYSIOTHERAPY</P>\r\n\r\n<P>SPO2 MONITORING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 13:42:57','mo','2025-11-01 14:13:29'),(3324,0,0,392,25,414,0,0,NULL,'','TREATDISC_TI','','','<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 15 DAYS</P>\r\n\r\n<P>TAB AFASMA SR (200 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 15 DAYS</P>\r\n\r\n<P>TAB OTSKI&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 15 DAYS</P>\r\n\r\n<P>CAP ECOSPRIN AV (150/10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 15 DAYS</P>\r\n\r\n<P>TAB PAH (20 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 15 DAYS</P>\r\n\r\n<P>TAB SIDIA (100 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 15 DAYS</P>\r\n\r\n<P>TAB GEMCAL XT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 15 DAYS</P>\r\n\r\n<P>TAB DYTOR PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 15 DAYS</P>\r\n\r\n<P>TAB ADDKAY&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 15 DAYS</P>\r\n\r\n<P>CAP VIT D3 60K&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ONCE A WEEK&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;EVERY TUESDAY</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>INJ LANTUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; S/C&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;10 UNIT&nbsp; &nbsp; &nbsp; BEFORE DINNER</P>\r\n\r\n<P>NEB DUOLIN/BUDECORT (1:1)&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; P/N&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 7AM--2PM--10PM</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>METROGYL P OINTMENT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ON FACE&nbsp; &nbsp; ........9 AM</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 13:42:57','mo','2025-11-01 14:13:29'),(3325,0,0,1765,1721,2186,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:43:23','darshan','2025-11-01 14:43:30'),(3326,0,0,1777,1733,2200,0,0,NULL,'','CC','ZZZ','Remark','NO C/O DOE||','','',0,'0000-00-00 00:00:00','drarchit','2025-11-01 13:43:48','','0000-00-00 00:00:00'),(3327,0,0,1777,1733,2200,0,0,NULL,'','CC','ZZZ','Remark','NO C/O CHEST PAIN||','','',0,'0000-00-00 00:00:00','drarchit','2025-11-01 13:44:16','','0000-00-00 00:00:00'),(3328,0,0,1754,1709,2171,0,0,NULL,'','CC','ZZZ','Remark','C/O ABD PAIN  | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-01 13:44:36','','0000-00-00 00:00:00'),(3329,0,0,1765,1721,2186,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:44:36','','0000-00-00 00:00:00'),(3330,0,0,1765,1721,2186,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:44:40','','0000-00-00 00:00:00'),(3332,0,0,1754,1709,2171,0,0,NULL,'','MADVICE','ZZZ','Remark','INJ DYNAPAR IM STAT','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-01 13:46:25','','0000-00-00 00:00:00'),(3334,0,0,1733,1687,2139,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:47:54','','0000-00-00 00:00:00'),(3337,0,0,1777,1733,2200,0,0,NULL,'','MADVICE','ZZZ','Remark','ADVICE 2D ECHO','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-01 13:52:23','','0000-00-00 00:00:00'),(3338,0,0,1780,1736,2203,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatoyr feeilng when pt is getting out of bed and lying down inb ed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptosm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:53:21','darshan','2025-11-01 13:54:19'),(3339,0,0,1780,1736,2203,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----TODAY MORNING||','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:53:32','','0000-00-00 00:00:00'),(3340,0,0,1780,1736,2203,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit-nad</p>\n\n<p>stabilometry--</p>\n\n<p>vng---left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:54:27','darshan','2025-11-01 14:55:15'),(3341,0,0,1780,1736,2203,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 13:54:31','','0000-00-00 00:00:00'),(3344,0,0,1738,1692,2146,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:01:01','','0000-00-00 00:00:00'),(3345,0,0,1770,1726,2191,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:08:02','','0000-00-00 00:00:00'),(3346,0,0,1770,1726,2191,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:08:18','','0000-00-00 00:00:00'),(3347,0,0,1770,1726,2191,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:08:45','','0000-00-00 00:00:00'),(3349,0,0,1770,1726,2191,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:08:58','','0000-00-00 00:00:00'),(3351,0,0,1733,1687,2139,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:14:08','','0000-00-00 00:00:00'),(3352,0,0,1758,1714,2176,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:20:44','','0000-00-00 00:00:00'),(3354,0,0,397,376,2192,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:23:28','','0000-00-00 00:00:00'),(3356,0,0,397,376,2192,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MEWNVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:24:06','','0000-00-00 00:00:00'),(3357,0,0,1775,1731,2198,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional vertigo without any cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:33:09','darshan','2025-11-01 15:03:01'),(3358,0,0,1775,1731,2198,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----5 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:33:16','','0000-00-00 00:00:00'),(3359,0,0,1775,1731,2198,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:34:38','','0000-00-00 00:00:00'),(3360,0,0,1778,1734,2201,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR SUDDEN DEAFNESS---YESTERDAY||','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:38:34','','0000-00-00 00:00:00'),(3361,0,0,1778,1734,2201,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>BTM--i/scarred</p>\n\n<p>PTA--rigth profound&thinsp;deafness (o)</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:39:06','','0000-00-00 00:00:00'),(3364,0,0,1778,1734,2201,0,0,NULL,'','MADVICE','ZZZ','Remark','OS ITDX\nPTA NEXT TIME ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:41:27','','0000-00-00 00:00:00'),(3365,0,0,1765,1721,2186,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---asent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta--right very severe sn deafness</p>\n\n<p>vng--reight post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:44:04','','0000-00-00 00:00:00'),(3366,0,0,1765,1721,2186,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:44:22','','0000-00-00 00:00:00'),(3369,0,0,1758,1714,2176,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:51:49','','0000-00-00 00:00:00'),(3371,0,0,1780,1736,2203,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:55:31','','0000-00-00 00:00:00'),(3373,0,0,769,738,2206,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 14:58:07','','0000-00-00 00:00:00'),(3374,0,0,1775,1731,2198,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nads</p>\n\n<p>hit--nad</p>\n\n<p>pta--wnl</p>\n\n<p>vng--rigiht post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 15:03:24','','0000-00-00 00:00:00'),(3375,0,0,1775,1731,2198,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-01 15:03:51','','0000-00-00 00:00:00'),(3378,0,0,1765,1721,2186,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-01 15:08:17','','0000-00-00 00:00:00'),(3380,0,0,1780,1736,2203,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-01 15:08:37','','0000-00-00 00:00:00'),(3382,0,0,1775,1731,2198,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-01 15:12:36','','0000-00-00 00:00:00'),(3383,0,0,1555,111,1936,0,0,NULL,'','DISCDIAG','','','<P>CARDIOGENIC SHOCK WITH ACUTE LVF WITH SECONDARY LUNG INFECTION</P>\r\n\r\n<P>K/C/O DM;HTN;IHD-POST CABG</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 15:19:38','mo','2025-11-01 15:50:46'),(3384,0,0,1555,111,1936,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>DM;HTN;IHD-POST CABG</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 15:19:38','mo','2025-11-01 15:50:46'),(3385,0,0,1555,111,1936,0,0,NULL,'','DISCCOND','','','<P>PATIENT ON O2 SUPPORT(2-3L/MIN) AND INOTROPIC(NORAD,ADR) SUPPORT.</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>U/O ADEQUATE</P>\r\n\r\n<P>FOLEY&#39;S CATHETER (NO 14;D-3),RYLE&#39;S TUBE (NO 16;D-1) AND RIGHT SIDED SUBCLAVIAN CVP LINE(D3) IN SITU.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 15:19:38','mo','2025-11-01 15:50:46'),(3386,0,0,1555,111,1936,0,0,NULL,'','ADVICE','','','<P>CAG AND INTERVENTION</P>\r\n\r\n<P>HOSPITALIZATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 15:22:20','mo','2025-11-01 15:50:46'),(3387,0,0,1555,111,1936,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MEZOR</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ LINOX</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>INJ CLEXANE</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>INJ NORAD</P>\r\n\r\n<P>INJ ADR</P>\r\n\r\n<P>INJ NAHCO3</P>\r\n\r\n<P>INJ PRIMACORT</P>\r\n\r\n<P>TAB ECOSPRIN</P>\r\n\r\n<P>TAB CLAVIX</P>\r\n\r\n<P>TAB NICORANDIL</P>\r\n\r\n<P>TAB LIPITAS</P>\r\n\r\n<P>TAB STUGERON PLUS</P>\r\n\r\n<P>NEB DUOLIN/BUDECORT</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 15:22:20','mo','2025-11-01 15:50:46'),(3388,0,0,1555,111,1936,0,0,NULL,'','HISTHOSPCOURSE','','','<P>HISTORY GIVEN BY PATIENT&#39;S RELATIVE.</P>\r\n\r\n<P>A 72 YEARS OLD FEMALE PATIENT P/W K/C/O DM;HTN;IHD-POST CABG</P>\r\n\r\n<P>WITH C/O INTERMITTENT CHEST PAIN;BACKPAIN;DOE;GABHARAMAN;GIDDINESS;NAUSEA-VOMITING;GENERALISED WEAKNESS;LOOSE MOTION SINCE LAST 3 DAYS.</P>\r\n\r\n<P>H/O DOMESTIC FALLDOWN 3 DAYS BACK.</P>\r\n\r\n<P>SO,RELATIVE BROUGHT HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-98.4 F</P>\r\n\r\n<P>PR-38/MIN</P>\r\n\r\n<P>BP-70MMHG SYSTOLIC</P>\r\n\r\n<P>SPO2-NR</P>\r\n\r\n<P>RR-36/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-B/L CREPS+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/IRRITABLE,OCC.&nbsp;F/V/C,MOVING ALL 4 LIMBS</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-217 MG/DL</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL HISTORY AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>30/10/25,</P>\r\n\r\n<P>ALL REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>IN VIEW OF SEVERE TACHYPNEA WITH HYPOXIA&nbsp;SO,PATIENT PUT ON NIV SUPPORT.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION MANAGED BY IV FLUID THERAPY F/BY INOTROPIC SUPPORT STARTED.</P>\r\n\r\n<P>CHEST X-RAY DONE.</P>\r\n\r\n<P>FOLEY&#39;S CATHETER INSERTED WITH ALL ASEPTIC PRECAUTIONS.</P>\r\n\r\n<P>IN VIEW OF OLIGURIA MANAGED BY IV DIURETIC DRIP.</P>\r\n\r\n<P>ABG DONE.S/O SEVERE ACIDOSIS.IV NAHCO3 DRIP STARTED.</P>\r\n\r\n<P>CARDIOLOGIST DR.RAVI BHOJANI REFERENCE DONE.2D ECHO SCREENING DONE.FOLLOWED ALL HIS ADVICE.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>GRADUALLY PATIENT&#39;S RESPIRATION WAS IMPROVING NIV OFF TRIAL GIVEN.O2 SUPPORT CONTINUE.</P>\r\n\r\n<P>INOTROPIC SUPPORT TAPER @BP.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>31/10/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS,F/V/C</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>PATIENT ON INOTROPIC AND O2 SUPPORT 1 L/MIN CONTINUE.</P>\r\n\r\n<P>U/O ADEQUATE.IV DIURETIC DRIP TAPER.</P>\r\n\r\n<P>ABD DONE.S/O IMPROVED.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>01/11/25,</P>\r\n\r\n<P>PATIENT DEVELOPED DROWSINESS WITH RESPIRATORY DISTRESS SO,PUT ON NIV SUPPORT.</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>ABG DONE.</P>\r\n\r\n<P>IN VIEW OF FURTHER HYPOTENSION WITH INCREASED INOTROPIC REQUIREMENT GENERAL CONDITION AND POROGNOSIS EXPLAINED TO RELATIVE.ADVICED REFERRED TO CARDIAC CENTER U.N.MEHTA FOR CAG AND INTERVENTION.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 15:30:10','mo','2025-11-01 15:50:46'),(3389,0,0,1787,1743,2212,0,0,NULL,'','DIAG','ZZZ','Remark','RT FOOT DOG BITE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-01 20:20:03','','0000-00-00 00:00:00'),(3390,0,0,1786,1742,2211,0,0,NULL,'','DIAG','ZZZ','Remark','RT FOOT CELLULITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-01 20:20:34','','0000-00-00 00:00:00'),(3391,0,0,1786,1742,2211,0,0,NULL,'','DIAG','ZZZ','Remark','AKI','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-01 20:20:37','','0000-00-00 00:00:00'),(3392,0,0,1785,1741,2210,0,0,NULL,'','DIAG','ZZZ','Remark','GLUTEAL ABSCES','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-01 20:23:13','','0000-00-00 00:00:00'),(3393,0,0,1785,1741,2210,0,0,NULL,'','DIAG','ZZZ','Remark','IRON DEFICIENCY ANAEMIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-01 20:23:27','','0000-00-00 00:00:00'),(3394,0,0,1755,1711,2173,0,0,NULL,'','DIAG','ZZZ','Remark','BED SORE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-01 20:23:51','','0000-00-00 00:00:00'),(3395,0,0,1755,1711,2173,0,0,NULL,'','DIAG','ZZZ','Remark','IHD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-01 20:23:53','','0000-00-00 00:00:00'),(3396,0,0,1755,1711,2173,0,0,NULL,'','DIAG','ZZZ','Remark','ICH','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-01 20:23:56','','0000-00-00 00:00:00'),(3397,0,0,1766,1722,2187,0,0,NULL,'','DIAG','ZZZ','Remark','RETROPERITONEAL LYMPHADENOPATHY','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-01 20:24:45','','0000-00-00 00:00:00'),(3398,0,0,1766,1722,2187,0,0,NULL,'','DIAG','ZZZ','Remark','H/O CA CAECUM','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-01 20:24:59','','0000-00-00 00:00:00'),(3399,0,0,1783,1739,2207,0,0,NULL,'','DIAG','ZZZ','Remark','PERIANAL ABSCESS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-01 20:25:33','','0000-00-00 00:00:00'),(3400,0,0,1783,1739,2207,0,0,NULL,'','DIAG','ZZZ','Remark','DM','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-01 20:25:36','','0000-00-00 00:00:00'),(3401,0,0,1783,1739,2207,0,0,NULL,'','DIAG','ZZZ','Remark','IHD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-01 20:25:38','','0000-00-00 00:00:00'),(3402,0,0,1245,116,1995,0,0,NULL,'','DISCDIAG','','','<P><STRONG>UMBILICAL HERNIA + B/L INGUINAL HERNIA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 22:10:55','mo','2025-11-06 19:39:50'),(3403,0,0,1245,116,1995,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O:CVA BEFORE 12 MONTH</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 22:10:55','mo','2025-11-06 19:39:50'),(3404,0,0,1245,116,1995,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 50 YEARS OLD MALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:UMBILICAL SWELLING SINCE 2 YEARS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GRADUALLY INCREASE IN SIZE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;OCCASSIONALLY PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO CONSTIPATION</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 2 YEARS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG BOTH INGUINAL &AMP; UMBILICAL REGION DONE ON 7/10/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>USG KUB DONE ON 7/10/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-92/MIN, BP-130/82MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ECG DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nLAPAROSCOPIC UMBILICAL + B/L INGUINAL HERNIOPLASTY DONE BY DR PRATAPSINH DODIYA ON 31/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO ICU.</P>\r\n\r\n<P>FURTHER 24 HOUR UNEVENTFULL IN ICU SO PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 22:10:55','mo','2025-11-06 19:39:50'),(3405,0,0,1245,116,1995,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 22:10:55','mo','2025-11-06 19:39:50'),(3406,0,0,1245,116,1995,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>AVOID HEAVY WORK FOR 6 WEEKS</P>\r\n\r\n<P>WEAR ABDOMINAL BELT WHILE MOBILIZATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 22:10:55','mo','2025-11-06 19:39:50'),(3407,0,0,1245,116,1995,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>INJ TRAMADOL</P>\r\n\r\n<P>TAB ECOSPRIN</P>\r\n\r\n<P>SYP CREMAFFIN PLUS</P>\r\n\r\n<P>TAB LIPITAS</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 22:10:55','mo','2025-11-06 19:39:50'),(3408,0,0,1245,116,1995,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(10)</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp;..........(10)</P>\r\n\r\n<P>TAB AKILOS-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;...........(10)</P>\r\n\r\n<P>TAB LIPPITAS (40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; ........(5)</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;10ML HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:&nbsp;</P>\r\n\r\n<P>TAB ECOSPRIN(150)&nbsp; &nbsp; 0--1-0</P>\r\n\r\n<P>TAB BRIVASURE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1/2--0--1/2</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 22:10:55','mo','2025-11-06 19:39:50'),(3409,0,0,1680,119,2065,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>LEFT GSV EVCT + STAB PHLEBECTOMY + FOAM SCLEROTHERAPY DONE BY DR TEJAS KARANGIA ON 1/11/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 22:22:03','mo','2025-11-02 10:18:42'),(3410,0,0,1680,119,2065,0,0,NULL,'','OTNOTE','','','<p>per-op findings:</p>\r\n\r\n<p>- left gsv puncture under usg</p>\r\n\r\n<p>- 6 fr sheath&nbsp;</p>\r\n\r\n<p>- laser fiber inserted &amp; kept 2.5cm from sfj</p>\r\n\r\n<p>- perivenous tumescent given</p>\r\n\r\n<p>- tip reconfirmed</p>\r\n\r\n<p>- left gsv evct done</p>\r\n\r\n<p>- for dilated vein stab phlebotomy done</p>\r\n\r\n<p>- for perforated foam scleropathy done</p>\r\n\r\n<p>- compression &amp; dressing applied</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 22:22:03','mo','2025-11-02 10:18:42'),(3411,0,0,1680,119,2065,0,0,NULL,'','TREATDISC_TI','','','<P>CAP AUGMENTIN(625)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(15)</P>\r\n\r\n<P>TAB ZERODOL-SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(10)</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;..........(10)</P>\r\n\r\n<P>TAB CHYMORAL FORTE&nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(15)</P>\r\n\r\n<P>FREEGO POWDER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2TSP WITH MILK&nbsp; &nbsp;HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:</P>\r\n\r\n<P>TAB DILNIP-T (40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 22:22:03','mo','2025-11-02 10:18:42'),(3412,0,0,1788,122,2214,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE APPENDICITIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 22:38:38','mo','2025-11-02 17:06:38'),(3413,0,0,1788,122,2214,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 27 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:POST PARTUM(2 MONTH) FTVD<BR />\r\nC/O:SEVERE EPIGASTRIC PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;VOMITING (2-3 EPISODE)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO FEVER</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE TODAY MORNING FOR THAT PATIENT PRIMARY CONSULTED TO AMBAR HOSPITAL DHROL,THEN STERLING HOSPITAL RAJKOT AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-82/MIN, BP-124/80MMHG, SPO2-98% ON RA, RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-TENDERNESS IN RIF<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nLAPAROSCOPIC APPENDICECTOMY DONE BY DR PRATAPSINH DODIYA ON 1/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 22:38:38','mo','2025-11-02 17:06:38'),(3414,0,0,1788,122,2214,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:&nbsp;</P>\r\n\r\n<P>LAPAROSCOPIC APPENDICECTOMY DONE BY DR PRATAPSINH DODIYA ON 1/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 22:38:38','mo','2025-11-02 17:06:38'),(3415,0,0,1788,122,2214,0,0,NULL,'','OTNOTE','','','<p>per-op findings:</p>\r\n\r\n<p>- thick wall, inflammed appendix</p>\r\n\r\n<p>- no meckel&#39;s diverticula</p>\r\n\r\n<p>- pelvic organ - normal</p>\r\n\r\n<p>- appendicectomy done</p>\r\n\r\n<p>- hemostasis achieved</p>\r\n\r\n<p>- 10mm port sheath closed with vicryl -0 (port)</p>\r\n\r\n<p>- skin closed with skin stappler</p>\r\n\r\n<p>- appendix sent for hpe</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 22:38:38','mo','2025-11-02 17:06:38'),(3416,0,0,1788,122,2214,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 22:38:38','mo','2025-11-02 17:06:38'),(3417,0,0,1788,122,2214,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS AT EVENING (5 TO 7 PM)</P>\r\n\r\n<P>NOTE-HPE AWAITED</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 22:38:38','mo','2025-11-02 17:06:38'),(3418,0,0,1788,122,2214,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR&nbsp;</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-01 22:38:38','mo','2025-11-02 17:06:38'),(3419,0,0,1680,119,2065,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-02 09:32:20','mo','2025-11-02 10:18:42'),(3420,0,0,1647,118,2027,0,0,NULL,'','DISCDIAG','','','<P>UREMIC ENCEPHALOPATHY WITH</P>\r\n\r\n<P>LEFT RENAL ARTERY THROMBOSIS WITH RENAL INFARCT WITH</P>\r\n\r\n<P>RIGHT KIDNEY NON FUNCTIONING WITH</P>\r\n\r\n<P>ATN WITH ASPIRATION PNEUMONITIS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-02 10:11:52','mo','2025-11-02 10:53:24'),(3421,0,0,1647,118,2027,0,0,NULL,'','TREATDISC_TI','','','<P>TAB DOMPAN ---- 10</P>\r\n\r\n<P>1-0-0</P>\r\n\r\n<P>TAB ZOFER MD ---- 5</P>\r\n\r\n<P>&nbsp;SOS FOR VOMITING</P>\r\n\r\n<P>TAB SOBISIS 500MG ---- 20</P>\r\n\r\n<P>1-0-1</P>\r\n\r\n<P>TAB ECOSPRIN 75MG ---- 10</P>\r\n\r\n<P>0-1-0</P>\r\n\r\n<P>TAB CORDERONE 100 ---- 20</P>\r\n\r\n<P>1-0-1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-02 10:11:52','mo','2025-11-02 10:53:24'),(3422,0,0,1647,118,2027,0,0,NULL,'','DISCCOND','','','<P>PATIENT ON O2 SUPPORT 1-2 L/MIN</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>U/O-NIL</P>\r\n\r\n<P>FOLEY&#39;S CATHETER(NO14;D-3),RYLE&#39;S TUBE(NO-16;D3) IN SITU.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-02 10:23:03','mo','2025-11-02 10:53:24'),(3423,0,0,1647,118,2027,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION</P>\r\n\r\n<P>RTF-200ML/3 HOURLY(K+ FREE)</P>\r\n\r\n<P>AIR BED</P>\r\n\r\n<P>DAILY FOLEY&#39;S CARE/BACK CARE/ORAL CARE.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-02 10:23:03','mo','2025-11-02 10:53:24'),(3424,0,0,1772,121,2195,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O : CHRONIC SMOKER</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-02 16:12:04','mo','2025-11-08 09:07:23'),(3425,0,0,1772,121,2195,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 62 YEARS OLD MALE&nbsp;PATIENT PRESENT WITH,<BR />\r\nK/C/O: COPD.<BR />\r\nC/O: COUGHING WITH EXPECTORATION&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DOE, ORTHOPNEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CHEST PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;GIDDINESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; 10-15 DAYS&nbsp;<BR />\r\nPRIMARY TREATMENT TAKEN AT DR.K.BODA FROM 24-10-2025 TO 30-10-2025.</P>\r\n\r\n<P>TODAY PATIENT DEVLOPED SEVERE BREATHLESSNESS WITH HEAVINESS OF CHEST AND BACK PAIN.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:&nbsp;<BR />\r\nTEMP- 97.9`F<BR />\r\nPR- 116/MIN<BR />\r\nBP- 168/80 MMHG&nbsp;<BR />\r\nSPO2- 93% ON RA&nbsp;<BR />\r\nRR- 36/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+, BILATERAL SPASAM +NT.<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>01-11-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF BREATHLESSNESS NIV SUPPORT GIVEN FOR 3-4 HRS,THAN STOP NIV SUPPORT.&nbsp;</P>\r\n\r\n<P>NEBULIZATION DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>02-11-2025,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN ICU.<BR />\r\nPATIENT RESPONDS WELL WITH ONGOING TREATMENT.</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO SHIFT TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>03-11-2025,</P>\r\n\r\n<P>IN VIEW OF BREATHLESSNESS &AMP; CHEST PAIN O2 SUPPORT GIVEN.</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>SPIROMETRY STARTED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04-11-2025</P>\r\n\r\n<P>OFF O2 TRIAL GIVEN PATIET MAINTAIN WELL SO O2 SUPPORT STOP</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05-11-2025</P>\r\n\r\n<P>IN VIEW OF BACK PAIN REFERENCE OF DR.RIDHAM KAHNDERIA(NEUROSURGEON) DONE AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>06-11-2025,</P>\r\n\r\n<P>PATIENT DEVELOPED PERSISTENT VOMITING WITH CHEST PAIN&nbsp; AND ABDOMINAL DISCONFORT WITH FULLNESS, SO MS GENERAL SURGEON DR PRATAPSING DODIYA&#39;S REFERANCE DONE AND MRS (MANUAL STOOL REMOVAL) DONE BY HIM F/BY ENEMA</P>\r\n\r\n<P>TROP I SENT WHICH WAS 101.9</P>\r\n\r\n<P>CARDIOLOGIST DR RAVI BHOJANI&#39;S REFERANCE DONE AND ALL HIS ADVICE FOLLOWED.&nbsp;</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>07-11-2025,</P>\r\n\r\n<P>REQUIRED REPEAT BLOOD INVESTIGATION DONE WHICH WAS IMPROVED.</P>\r\n\r\n<P>MRI OF WHOLE SOINE SCREENING DONE AND REVIEW OF NEUROPHYSICIAN DR RIDHAM KHANDHERIYA DONE.</P>\r\n\r\n<P>GRADUALLY PATIENT CONDITION IMPROVED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>08-11-2025,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\nSO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-02 16:12:04','mo','2025-11-08 09:07:23'),(3426,0,0,1772,121,2195,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE EXACERBATION OF COPD</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: COPD</STRONG></P>\r\n\r\n<P><STRONG>H/O: CHRONIC SMOKER</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-02 16:21:42','mo','2025-11-08 09:07:23'),(3427,0,0,1772,121,2195,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ&nbsp;UNITREX S</P>\r\n\r\n<P>INJ&nbsp;PANTODAC</P>\r\n\r\n<P>INJ&nbsp;VOMISET</P>\r\n\r\n<P>INJ&nbsp;DERIPHYLIN</P>\r\n\r\n<P>INJ&nbsp;INFUPAR</P>\r\n\r\n<P>INJ NS</P>\r\n\r\n<P>TAB&nbsp;CLARIBID</P>\r\n\r\n<P>NEB&nbsp;DUOLIN : BUDACORT</P>\r\n\r\n<P>TAB&nbsp;MYONIT SR</P>\r\n\r\n<P>INJ&nbsp;IVEPRED</P>\r\n\r\n<P>TAB&nbsp;BISOBIS</P>\r\n\r\n<P>TAB&nbsp;GABAPIN</P>\r\n\r\n<P>SYP MUCOLYTE</P>\r\n\r\n<P>TAB MUCOMIX</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>TAB DYTOR PLUS&nbsp;</P>\r\n\r\n<P>P/C ENEMA</P>\r\n\r\n<P>SYP.CREAMFFIN PLUS</P>\r\n\r\n<P>INJ.LESURIDE</P>\r\n\r\n<P>INJ.PERINORM</P>\r\n\r\n<P>TAB.ROSULESS GOLD</P>\r\n\r\n<P>SUCRAL ANO CREAM</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-02 16:21:42','mo','2025-11-08 09:07:23'),(3428,0,0,1729,120,2135,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-OP POISONING</STRONG></P>\r\n\r\n<P><STRONG>-RECENTLY DETECTED HTN</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: PSYCHIATRIC ILLNESS, DEPRESSION</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-02 16:23:26','mo','2025-11-07 12:51:32'),(3429,0,0,1788,122,2214,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZOSTUM-O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-02 17:06:14','mo','2025-11-02 17:06:38'),(3430,0,0,1795,124,2226,0,0,NULL,'','DISCDIAG','','','<P><STRONG>HEAD INJURY WITH HEMORRHAGIC CONTUSION AND SDH IN FALX REGION</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-02 21:24:22','mo','2025-11-03 19:07:56'),(3431,0,0,1795,124,2226,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 28 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nH/O: RTA BY BIKE SLEEP,</P>\r\n\r\n<P>PLACE OF INCIDANCE:&nbsp;MORBI-KANDLA ROAD</P>\r\n\r\n<P>DATE AND TIME OF INCIDANCE: 02/11/2025 AT AROUND 1 AM,</P>\r\n\r\n<P>F&#39;BY<BR />\r\nC/O: UNCONSCIOUS FOR HALF AN HOUR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GIDDINESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; HEAVINESS OF HEAD</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; VOMITING WITH MINOR BLEED (2-3 EPISODE TODAY)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BLEEDING FROM RT. FRONTAL OF HEAD</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAIN PATIENT ADMITTED AT MORBI CIVIL HOSPITAL WHERE PRIMARY TREATMENT TAKEN,&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>CT SCAN OF BRAIN (02/11/2025) ; REPORT ATTACH WITH FILE</P>\r\n\r\n<P>MLC INFORMED AT UNIVERSITY POLICE STATION RAJKOT, MLC NO.192</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-78/MIN, BP-100/60MMHG, SPO2-98% ON RA, RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>CHEST X-RAY DONE ; REPORT ATTACH WITH FILE</P>\r\n\r\n<P>MD PHYSICIAN AND INTENSIVIST DR JAYANT MEHTA&#39;S REFERANCE DONE AND ALL HIS ADVICE FOLLOWED.</P>\r\n\r\n<P>2D ECHO DONE ON 03/11/25, REPORT ATTACHED WITH FILE. (LVEF: 60%)</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>REPEAT CT SCAN OF BRAIN DONE ON 03/11/25, REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\nSO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-02 21:24:22','mo','2025-11-03 19:07:56'),(3432,0,0,1795,124,2226,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 10 DAYS</P>\r\n\r\n<P>DRESSING OF WOUND OVER HEAD EVERY 3 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-02 21:24:22','mo','2025-11-03 19:07:56'),(3433,0,0,1795,124,2226,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ LEVERA</P>\r\n\r\n<P>INJ MANNITOL</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-02 21:24:22','mo','2025-11-03 19:07:56'),(3434,0,0,1580,113,1941,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 4&nbsp;DAYS</P>\r\n\r\n<P>UROLOGIST OPENION FOR STRICTURE URETHRA&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-02 21:26:08','mo','2025-11-03 13:46:07'),(3435,0,0,1772,121,2195,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>SPIROMETRY 2 HRLY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-02 21:52:04','mo','2025-11-08 09:07:23'),(3436,0,0,1798,1752,2230,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow u pcase--mild imprmvent&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 10:56:16','','0000-00-00 00:00:00'),(3437,0,0,1797,1751,2229,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----better partially&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 11:07:19','','0000-00-00 00:00:00'),(3438,0,0,1804,1758,2241,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--10-12 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 11:19:02','','0000-00-00 00:00:00'),(3439,0,0,1804,1758,2241,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 11:19:41','','0000-00-00 00:00:00'),(3440,0,0,1804,1758,2241,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>&thinsp;pta----wnl</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng---left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 11:19:57','darshan','2025-11-03 13:27:48'),(3441,0,0,1804,1758,2241,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 11:20:02','','0000-00-00 00:00:00'),(3442,0,0,1803,1757,2239,0,0,NULL,'','HIST','ZZZ','Remark','<p>folowu p case----4-5 episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 11:22:34','','0000-00-00 00:00:00'),(3443,0,0,1803,1757,2239,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 11:23:49','','0000-00-00 00:00:00'),(3444,0,0,1253,1776,2266,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-03 11:23:56','drjayant','2025-11-03 11:27:16'),(3445,0,0,1253,1776,2266,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-03 11:24:00','','0000-00-00 00:00:00'),(3447,0,0,1803,1757,2239,0,0,NULL,'','MADVICE','ZZZ','Remark','INJ STEMETIL .....INTRAMUSCULAR SOS......\nDISPOVAN 5 CC......1\nSOS ITGM','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-03 11:26:59','','0000-00-00 00:00:00'),(3449,0,0,1816,1770,2259,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 11:28:29','','0000-00-00 00:00:00'),(3450,0,0,1253,1776,2266,0,0,NULL,'','MADVICE','ZZZ','Remark','CT GASTROENTEROLOGIST MEDICINES\nCT PROSTAGUARD','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-11-03 11:30:29','','0000-00-00 00:00:00'),(3452,0,0,1700,1655,2091,0,0,NULL,'','MADVICE','ZZZ','Remark','SPINE SURGEON OPINION \nPHYSIOTHERPIST OPINION ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-03 11:38:34','','0000-00-00 00:00:00'),(3453,0,0,1805,1759,2245,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS --10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 11:48:11','','0000-00-00 00:00:00'),(3454,0,0,1805,1759,2245,0,0,NULL,'','CC','ZZZ','Remark','FRONTAL HEADACHE  ---3-4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 11:48:11','','0000-00-00 00:00:00'),(3455,0,0,1805,1759,2245,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo--sudden onset any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>positional giddiness +</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 11:48:50','','0000-00-00 00:00:00'),(3456,0,0,1805,1759,2245,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>physician opinion taken</p>\n\n<p>pta----bilateral severe to very severe sn deafness</p>\n\n<p>stabilometry----wnl</p>\n\n<p>vng--Bilatearl vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 11:48:59','darshan','2025-11-03 13:48:23'),(3459,0,0,1815,1769,2258,0,0,NULL,'','HIST','ZZZ','Remark','<p>not available</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 11:51:09','','0000-00-00 00:00:00'),(3460,0,0,1813,1767,2254,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 11:56:28','','0000-00-00 00:00:00'),(3461,0,0,1813,1767,2254,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 11:57:13','','0000-00-00 00:00:00'),(3462,0,0,1813,1767,2254,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilatelr high frqe severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 11:57:27','darshan','2025-11-03 13:54:55'),(3464,0,0,1822,1777,2267,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:01:01','','0000-00-00 00:00:00'),(3465,0,0,1827,1782,2274,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-03 12:05:32','','0000-00-00 00:00:00'),(3466,0,0,1827,1782,2274,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-03 12:05:33','','0000-00-00 00:00:00'),(3467,0,0,1827,1782,2274,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-03 12:06:05','','0000-00-00 00:00:00'),(3468,0,0,1807,1761,2248,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow upcase---senes of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:06:50','','0000-00-00 00:00:00'),(3469,0,0,1810,1764,2251,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:10:24','','0000-00-00 00:00:00'),(3471,0,0,1827,1782,2274,0,0,NULL,'','MADVICE','ZZZ','Remark','CT OWN PSYCHIATRIC MEDICINES ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-11-03 12:13:57','','0000-00-00 00:00:00'),(3472,0,0,1811,1765,2252,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:14:14','','0000-00-00 00:00:00'),(3473,0,0,1323,1284,2257,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:17:44','','0000-00-00 00:00:00'),(3474,0,0,1809,1763,2250,0,0,NULL,'','CC','ZZZ','Remark','URTI | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-03 12:22:20','','0000-00-00 00:00:00'),(3475,0,0,1809,1763,2250,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-03 12:22:23','','0000-00-00 00:00:00'),(3476,0,0,1818,1772,2261,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:22:47','','0000-00-00 00:00:00'),(3477,0,0,1828,1783,2276,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:29:06','','0000-00-00 00:00:00'),(3478,0,0,1830,1785,2279,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS -----8-10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:36:35','','0000-00-00 00:00:00'),(3479,0,0,1830,1785,2279,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:36:56','','0000-00-00 00:00:00'),(3480,0,0,1408,105,1723,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>LAPAROSCOPIC APPENDICECTOMY + ADHESINOLYSIS + PERITONEAL LAVAGE DONE BY DR PRATAPSINH DODIYA AND DR B.M THANKI ON 29/10/25&nbsp;UNDER ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 12:37:03','mo','2025-11-03 13:15:47'),(3481,0,0,1408,105,1723,0,0,NULL,'','OTNOTE','','','<p>per-op findings:</p>\r\n\r\n<p>-small umbilical hernia+</p>\r\n\r\n<p>-dilated small bowel loop</p>\r\n\r\n<p>-pus cavity in rif and pelvis</p>\r\n\r\n<p>-omentum and samll bowel loops adherent with antertior abdominal wall in rif</p>\r\n\r\n<p>-pus in parahepatic, left paracolic gutter</p>\r\n\r\n<p>-inflammed with gangranous changes in appendix</p>\r\n\r\n<p>-perforation near BASE of appendix</p>\r\n\r\n<p>- retrocecal perforatED&nbsp;appendix</p>\r\n\r\n<p>-inflammed ceacum</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>operative steps:</p>\r\n\r\n<p>-pneumoperitoneum created with lhc verres needle insertion</p>\r\n\r\n<p>-5 mm trocar insertion done in lhc</p>\r\n\r\n<p>-rest of trocar insertion done under vision</p>\r\n\r\n<p>-small bowel loops and omentum separated carefuuly</p>\r\n\r\n<p>-pus cavity DRAINED</p>\r\n\r\n<p>-adhesinolysis done</p>\r\n\r\n<p>-pus cavity opEned and DRAINED in pelvic, perforated retrocecal appendix, mesoappendix coagulated</p>\r\n\r\n<p>-BASE of appendix closed with mersilk 3-0</p>\r\n\r\n<p>-small bowel adhesinolysis done&nbsp;</p>\r\n\r\n<p>-appendiX with pus flekEs removed</p>\r\n\r\n<p>-through peritoneal wash given with ns</p>\r\n\r\n<p>-hemostsis achieved</p>\r\n\r\n<p>-drain kept in pelvic/ right pARA COLIC&nbsp;gutter</p>\r\n\r\n<p>-umbilical hernia defect closed with prolene no 1</p>\r\n\r\n<p>-skin closed with skin steppler</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 12:37:03','mo','2025-11-03 13:15:47'),(3482,0,0,1408,105,1723,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CENTRAL LINE D:5 IN SITU</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 12:37:03','mo','2025-11-03 13:15:47'),(3483,0,0,1408,105,1723,0,0,NULL,'','TREATDISC_TI','','','<P>INJ.MEROPENEM&nbsp;(1 GM IN 100 ML NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;7AM-3PM-10PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 3 DAYS (10 INJ)</P>\r\n\r\n<P>INJ.TIGICYCLIN(100 GM IN 100 ML NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8AM-8PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 4 DAYS (9 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB.ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS.............(10)</P>\r\n\r\n<P>TAB.AKILOS-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS.............(10)</P>\r\n\r\n<P>TAB.LEVIGRESS (500)&nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS.............(10)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 12:37:03','mo','2025-11-03 13:15:47'),(3484,0,0,1830,1785,2279,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:37:08','','0000-00-00 00:00:00'),(3485,0,0,1830,1785,2279,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:37:40','','0000-00-00 00:00:00'),(3487,0,0,1830,1785,2279,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:39:15','','0000-00-00 00:00:00'),(3488,0,0,1833,1788,2284,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:41:34','','0000-00-00 00:00:00'),(3489,0,0,1573,112,1940,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING&nbsp;</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 12:43:27','mo','2025-11-03 13:33:07'),(3490,0,0,1839,1794,2291,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:45:11','','0000-00-00 00:00:00'),(3491,0,0,1573,112,1940,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.MUCOMIX&nbsp;ET (600MG)&nbsp; &nbsp; &nbsp; &nbsp; DILUTE WITH WATER&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 4&nbsp;DAYS..................(8)</P>\r\n\r\n<P>TAB.URSETOR (300)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER&nbsp; FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 4&nbsp;DAYS..................(8) &nbsp;</P>\r\n\r\n<P>CAP.PANTODAC DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 4&nbsp;DAYS..................(4)</P>\r\n\r\n<P>TAB.VITNEURIN CZS&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER&nbsp; FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-1-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 4 DAYS..................(4) &nbsp; &nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 12:49:21','mo','2025-11-03 13:33:07'),(3492,0,0,1819,1773,2262,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:50:24','','0000-00-00 00:00:00'),(3493,0,0,1819,1773,2262,0,0,NULL,'','CC','ZZZ','Remark','RIGHT NASAL BLOCKAGE---1 YRS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:50:38','','0000-00-00 00:00:00'),(3494,0,0,1819,1773,2262,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose---clear</p>\n\n<p>phx--clear</p>\n\n<p>ct pns---right sphenoidal mucosal thickening</p>\n\n<p>&thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp;dns to left&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:50:48','darshan','2025-11-03 14:32:31'),(3496,0,0,1823,1778,2268,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---previoulsy k/c/o bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:53:48','','0000-00-00 00:00:00'),(3497,0,0,1823,1778,2268,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:54:03','darshan','2025-11-03 14:05:51'),(3499,0,0,1338,1299,2269,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better partially</p>\n\n<p>coughing +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 12:56:50','','0000-00-00 00:00:00'),(3500,0,0,1840,1795,2292,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT LATERAL MALLEOLI FRACTURE','','',0,'0000-00-00 00:00:00','drsagar','2025-11-03 12:59:26','','0000-00-00 00:00:00'),(3501,0,0,1824,1779,2271,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case</p>\n\n<p>Rtm---moderate central perforation dry</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 13:01:53','','0000-00-00 00:00:00'),(3502,0,0,1580,113,1941,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>URINE OUTPU ADEQUATE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 13:02:24','mo','2025-11-03 13:46:07'),(3503,0,0,1580,113,1941,0,0,NULL,'','TREATDISC_TI','','','<P>TAB AUGMENTIN (625MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 4 DAYS..................(8)</P>\r\n\r\n<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1-0-0&nbsp; &nbsp; &nbsp; &nbsp;BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 4&nbsp;DAYS..................(4)</P>\r\n\r\n<P>TAB TAMWELL(0.4MG)&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 0-1-0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 4&nbsp;DAYS..................(4)</P>\r\n\r\n<P>FOSIN SACHET (3GM IN 1 GLASS OF WATER)&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;0-1-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 4&nbsp;DAYS..................(4)</P>\r\n\r\n<P>LIQ.CITAL&nbsp; &nbsp; &nbsp;&nbsp;5ML IN 1/5 GLASS OF WATER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-1-1 ......................(1)</P>\r\n\r\n<P>TAB.NAPROSYN (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS FOR PAIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:</P>\r\n\r\n<P>TAB.UDP AT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-0&nbsp;&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 13:02:24','mo','2025-11-03 13:46:07'),(3504,0,0,1841,1796,2293,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 13:07:09','','0000-00-00 00:00:00'),(3505,0,0,1844,1799,2296,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 13:11:07','','0000-00-00 00:00:00'),(3506,0,0,1835,1790,2286,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 13:14:18','','0000-00-00 00:00:00'),(3507,0,0,1825,1780,2272,0,0,NULL,'','HIST','ZZZ','Remark','<p>followu pcase---heaviness of head&thinsp;</p>\n\n<p>heaviness of head at crowded place&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 13:21:54','','0000-00-00 00:00:00'),(3508,0,0,1804,1758,2241,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 13:29:13','','0000-00-00 00:00:00'),(3510,0,0,1829,1784,2278,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 13:33:04','','0000-00-00 00:00:00'),(3511,0,0,1460,1419,2282,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>Rtm---small central perforation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 13:36:58','','0000-00-00 00:00:00'),(3512,0,0,1838,1793,2289,0,0,NULL,'','DIAG','ZZZ','Remark','THROMBOSED HEMOPRROIDS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-03 13:39:45','','0000-00-00 00:00:00'),(3513,0,0,1838,1793,2289,0,0,NULL,'','DIAG','ZZZ','Remark','HTN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-03 13:39:46','','0000-00-00 00:00:00'),(3514,0,0,1838,1793,2289,0,0,NULL,'','DIAG','ZZZ','Remark','LT NEPHRECTOMY','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-03 13:39:55','','0000-00-00 00:00:00'),(3517,0,0,1804,1758,2241,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-03 13:52:02','','0000-00-00 00:00:00'),(3518,0,0,1813,1767,2254,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 13:55:17','','0000-00-00 00:00:00'),(3521,0,0,1834,1789,2285,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 14:01:03','','0000-00-00 00:00:00'),(3522,0,0,1823,1778,2268,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 14:06:21','','0000-00-00 00:00:00'),(3524,0,0,1842,1797,2294,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---sense of imbalance + with postional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 14:12:26','darshan','2025-11-03 14:41:39'),(3525,0,0,1842,1797,2294,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta--right high frq severe sn deafness</p>\n\n<p>vng--hz canal bppv with bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 14:14:33','darshan','2025-11-03 14:42:13'),(3526,0,0,1842,1797,2294,0,0,NULL,'','DIAG','ZZZ','Remark','BILATERAL VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 14:14:45','','0000-00-00 00:00:00'),(3528,0,0,1805,1759,2245,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY \nBD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-03 14:21:51','','0000-00-00 00:00:00'),(3530,0,0,1813,1767,2254,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-03 14:22:14','','0000-00-00 00:00:00'),(3531,0,0,1845,1800,2297,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 14:26:57','','0000-00-00 00:00:00'),(3533,0,0,1823,1778,2268,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-03 14:28:46','','0000-00-00 00:00:00'),(3535,0,0,1819,1773,2262,0,0,NULL,'','MADVICE','ZZZ','Remark','CT PNS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-03 14:34:07','','0000-00-00 00:00:00'),(3536,0,0,1842,1797,2294,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 14:42:40','','0000-00-00 00:00:00'),(3539,0,0,1842,1797,2294,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-03 17:05:08','','0000-00-00 00:00:00'),(3540,0,0,1853,1807,2306,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better partially</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 17:06:47','','0000-00-00 00:00:00'),(3541,0,0,1011,978,2307,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 17:10:54','','0000-00-00 00:00:00'),(3542,0,0,1011,978,2307,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 17:11:19','','0000-00-00 00:00:00'),(3544,0,0,1011,978,2307,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-03 17:12:01','','0000-00-00 00:00:00'),(3545,0,0,1852,1806,2305,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 17:16:31','','0000-00-00 00:00:00'),(3546,0,0,1852,1806,2305,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness wihtout any cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 17:16:56','','0000-00-00 00:00:00'),(3547,0,0,1852,1806,2305,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 17:17:10','darshan','2025-11-03 18:28:00'),(3549,0,0,1854,1808,2308,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 17:21:08','','0000-00-00 00:00:00'),(3550,0,0,1854,1808,2308,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 17:24:21','','0000-00-00 00:00:00'),(3551,0,0,1854,1808,2308,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 17:24:33','darshan','2025-11-03 18:11:55'),(3553,0,0,1855,1809,2309,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 17:27:19','','0000-00-00 00:00:00'),(3554,0,0,1857,1811,2311,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 17:30:37','','0000-00-00 00:00:00'),(3555,0,0,1858,1812,2312,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 17:35:31','darshan','2025-11-03 17:40:35'),(3556,0,0,1858,1812,2312,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR BLOCKAGE FEELING --FEW DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 17:40:48','','0000-00-00 00:00:00'),(3557,0,0,1858,1812,2312,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left ear wax--removed&thinsp;</p>\n\n<p>Ltm---i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 17:40:56','darshan','2025-11-03 17:41:07'),(3558,0,0,1851,1805,2304,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 17:45:15','','0000-00-00 00:00:00'),(3559,0,0,1820,1774,2263,0,0,NULL,'','DIAG','ZZZ','Remark','RT LUNG MASS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-03 17:50:34','','0000-00-00 00:00:00'),(3560,0,0,1859,1813,2313,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---heaviness of head&thinsp;</p>\n\n<p>headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 17:51:26','','0000-00-00 00:00:00'),(3561,0,0,1849,1803,2301,0,0,NULL,'','DIAG','ZZZ','Remark','RT LL PVD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-03 17:54:13','','0000-00-00 00:00:00'),(3562,0,0,1849,1803,2301,0,0,NULL,'','DIAG','ZZZ','Remark','DM','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-03 17:54:18','','0000-00-00 00:00:00'),(3563,0,0,1817,1771,2260,0,0,NULL,'','DIAG','ZZZ','Remark','INTERNAL HEMORRHOIDS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-03 17:54:49','','0000-00-00 00:00:00'),(3564,0,0,1245,116,1995,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>LAPAROSCOPIC UMBILICAL + B/L INGUINAL HERNIOPLASTY DONE BY DR PRATAPSINH DODIYA ON 31/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 17:57:39','mo','2025-11-06 19:39:50'),(3565,0,0,1245,116,1995,0,0,NULL,'','OTNOTE','','','<p>per-op findings:</p>\r\n\r\n<p>-lhc 10 mm port insertion done by open method in retro rectus space, blunt dissection done with telescope</p>\r\n\r\n<p>-rest of left side port insertion done under vision&nbsp;</p>\r\n\r\n<p>-left retro rectus space dissection done till arcuate line</p>\r\n\r\n<p>-midline cross over done by cutting bilateral prs</p>\r\n\r\n<p>-right retro rectus dissection done</p>\r\n\r\n<p>-umbilical hernia sac opened, content reduced</p>\r\n\r\n<p>-dissection done till retro pubic space</p>\r\n\r\n<p>-b/l bogro&#39;s space opend and dissection done</p>\r\n\r\n<p>-peritoneum separated from cord structure</p>\r\n\r\n<p>-hemostasis checked</p>\r\n\r\n<p>-prolene mesh 13 x 15 cm kept in both side and fixed with cooper&#39;s ligament with prolene no-1</p>\r\n\r\n<p>-linea alba defect at umbilicus cosed with v-lock no-1(non absorbable)</p>\r\n\r\n<p>-linea alba plication done till epigastric region</p>\r\n\r\n<p>-peritoneal defect closed with vicryl 3-0</p>\r\n\r\n<p>- 22 x 15 cm mesh kept and fixed with b/l prs</p>\r\n\r\n<p>-romo vac no.14 kept&nbsp;</p>\r\n\r\n<p>-lhc port sheath closed with vicryl n0-1</p>\r\n\r\n<p>-skin closed with skin steppler</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 17:57:39','mo','2025-11-06 19:39:50'),(3566,0,0,1802,1756,2238,0,0,NULL,'','DIAG','ZZZ','Remark','LT CERVICAL LYMPHADENOPATHY','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-03 18:02:11','','0000-00-00 00:00:00'),(3567,0,0,1850,1804,2303,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE ABDOMEN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-03 18:02:31','','0000-00-00 00:00:00'),(3568,0,0,1861,1815,2316,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE----4 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:04:21','','0000-00-00 00:00:00'),(3569,0,0,1861,1815,2316,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS 4 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:04:21','','0000-00-00 00:00:00'),(3570,0,0,1861,1815,2316,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of&thinsp; headache remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>giddiness frequently</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:04:35','darshan','2025-11-03 18:06:51'),(3571,0,0,1861,1815,2316,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:07:01','darshan','2025-11-03 19:17:17'),(3572,0,0,1861,1815,2316,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:07:03','','0000-00-00 00:00:00'),(3573,0,0,1854,1808,2308,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:12:30','','0000-00-00 00:00:00'),(3575,0,0,1862,1816,2317,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----4-5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:21:53','','0000-00-00 00:00:00'),(3576,0,0,1862,1816,2317,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ----sudden onset of Rotaotry &thinsp;feeling with sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:22:51','','0000-00-00 00:00:00'),(3577,0,0,1862,1816,2317,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>&thinsp;pta---bilatelr high freq severe sn deafness</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:23:07','darshan','2025-11-05 19:30:45'),(3579,0,0,1852,1806,2305,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:28:29','','0000-00-00 00:00:00'),(3581,0,0,1864,1818,2321,0,0,NULL,'','CC','ZZZ','Remark','URTI | 4 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-03 18:30:46','','0000-00-00 00:00:00'),(3583,0,0,1854,1808,2308,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:32:26','','0000-00-00 00:00:00'),(3586,0,0,1867,1821,2325,0,0,NULL,'','HIST','ZZZ','Remark','<p>ffolow upcase--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:34:08','','0000-00-00 00:00:00'),(3587,0,0,553,527,2320,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:36:56','','0000-00-00 00:00:00'),(3588,0,0,1871,1825,2331,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----13 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:44:09','','0000-00-00 00:00:00'),(3589,0,0,1871,1825,2331,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rotaotyr feeling followed by&thinsp; sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:44:50','','0000-00-00 00:00:00'),(3590,0,0,1871,1825,2331,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilometry--wnl</p>\n\n<p>vng---right hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:45:08','darshan','2025-11-03 19:30:39'),(3593,0,0,1852,1806,2305,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:46:32','','0000-00-00 00:00:00'),(3594,0,0,1865,1819,2322,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>occassional giddiness +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:51:00','','0000-00-00 00:00:00'),(3595,0,0,1872,1826,2332,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-03 18:51:11','','0000-00-00 00:00:00'),(3596,0,0,1866,1820,2323,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:53:51','','0000-00-00 00:00:00'),(3597,0,0,1863,1817,2319,0,0,NULL,'','CC','ZZZ','Remark','URTI | 10 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-03 18:56:39','','0000-00-00 00:00:00'),(3598,0,0,1863,1817,2319,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-03 18:56:43','','0000-00-00 00:00:00'),(3599,0,0,1877,1831,2338,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 18:59:18','','0000-00-00 00:00:00'),(3600,0,0,1795,124,2226,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>CONCIOUS AND ORIENTED, F/V/C</P>\r\n\r\n<P>ALL FOUR LIMB MOVING</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 19:00:10','mo','2025-11-03 19:07:56'),(3601,0,0,1795,124,2226,0,0,NULL,'','TREATDISC_TI','','','<P>TAB LEVTARY (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS.....................(20)</P>\r\n\r\n<P>TAB ORFENAC SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS.....................(20)</P>\r\n\r\n<P>TAB RABEGRAM DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS.....................(10)</P>\r\n\r\n<P>TAB LYFOROX CV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS.....................(20)</P>\r\n\r\n<P>TAB CHYMORAL FORTE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;1-1-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS.....................(30)</P>\r\n\r\n<P>TAB VERTINE (16MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS.....................(20)</P>\r\n\r\n<P>SYP GLYCEROL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;30 ML WITH LIME WATER&nbsp; &nbsp; &nbsp; &nbsp; 1-1-1&nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS.....................(2)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>SOS FOR PAIN;</P>\r\n\r\n<P>INJ DYNAPAR AQ&nbsp; &nbsp; &nbsp; 1 AMPOULE DILUTE WITH 10 CC&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; ..................... (3)</P>\r\n\r\n<P>INJ TRAMADOL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1 AMPOULE IN 100 CC NS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV.........................(3)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 19:00:10','mo','2025-11-03 19:07:56'),(3602,0,0,1879,1833,2341,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----15 DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 19:10:08','','0000-00-00 00:00:00'),(3603,0,0,1879,1833,2341,0,0,NULL,'','HIST','ZZZ','Remark','<p>h/o---head injury followed by giddiness</p>\n\n<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head+</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 19:11:16','','0000-00-00 00:00:00'),(3604,0,0,1879,1833,2341,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----wnl</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 19:11:36','darshan','2025-11-03 19:48:19'),(3606,0,0,1703,126,2264,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACCELERATED HYPERTENSION (1ST TIME DETECTED HTN)</STRONG></P>\r\n\r\n<P><STRONG>? COPD EXACERBATION</STRONG></P>\r\n\r\n<P><STRONG>K/C/O DM;COPD;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 19:23:24','mo','2025-11-04 19:13:47'),(3607,0,0,1703,126,2264,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 19:23:24','mo','2025-11-04 19:13:47'),(3608,0,0,1703,126,2264,0,0,NULL,'','HISTHOSPCOURSE','','','<P>HISTORY GIVEN BY PT HIMSELF.</P>\r\n\r\n<P>A 75 YEARS OLD MALE PATIENT P/W K/C/O DM;COPD;</P>\r\n\r\n<P>WITH H/O CHRONIC SMOKER</P>\r\n\r\n<P>WITH C/O HEAVINESS OF HEAD;UNEASINESS;ABDOMINAL DISCOMFORT SINCE TODAY 2 PM.</P>\r\n\r\n<P>NO H/O CHEST PAIN/COUGH-COLD/VOMITING/GIDDINESS ETC.</P>\r\n\r\n<P>SO,RELATIVE BROUGHT HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-97.8 F</P>\r\n\r\n<P>PR-90/MIN</P>\r\n\r\n<P>BP-184/100MMHG</P>\r\n\r\n<P>SPO2-93% ON RA</P>\r\n\r\n<P>RR-30/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-B/L WHEEZING +</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-131MG/DL</P>\r\n\r\n<P>ECG DONE.S/O ISCHEMIC CHANGES.</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.</P>\r\n\r\n<P>TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>02/11/25,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION SENT.TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF HYPERTENSION MANAGED BY IV NTG DRIP.</P>\r\n\r\n<P>TROP-I DONE.S/O NEGATIVE.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>03/11/25,</P>\r\n\r\n<P>GRADUALLY PATIENT&#39;S BLOOD PRESSURE UNDER CONTROLLED SO,NTG DRIP TAPER AND OFF.</P>\r\n\r\n<P>2D ECHO DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04/11/25,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 19:23:24','mo','2025-11-04 19:13:47'),(3609,0,0,1870,1824,2328,0,0,NULL,'','CC','ZZZ','Remark','SUSPECTED DEAFNESS ---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 19:26:21','','0000-00-00 00:00:00'),(3610,0,0,1870,1824,2328,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm--i/congested&thinsp;</p>\n\n<p>phx---mild congested&thinsp;</p>\n\n<p>CT pns----all sinus opacification with adenoids</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 19:26:46','darshan','2025-11-04 19:29:00'),(3612,0,0,1703,126,2264,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>INJ NTG</P>\r\n\r\n<P>NEB IPRAPHAGE/BUDAPHAGE</P>\r\n\r\n<P>TAB ECOTOS AS</P>\r\n\r\n<P>TAB DOXOMAX OD</P>\r\n\r\n<P>TAB TELSAR</P>\r\n\r\n<P>TAB DAPACOOL S</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 19:30:47','mo','2025-11-04 19:13:47'),(3613,0,0,1871,1825,2331,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 19:31:42','','0000-00-00 00:00:00'),(3615,0,0,344,328,2330,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---heaviness of&thinsp; head&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 19:35:30','','0000-00-00 00:00:00'),(3616,0,0,1873,1827,2333,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---positional vertigo ----2-3 days&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 19:42:29','','0000-00-00 00:00:00'),(3617,0,0,1873,1827,2333,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 19:43:39','','0000-00-00 00:00:00'),(3619,0,0,1873,1827,2333,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-03 19:45:32','','0000-00-00 00:00:00'),(3620,0,0,1885,1839,2352,0,0,NULL,'','DIAG','ZZZ','Remark','NECK PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-03 19:46:25','','0000-00-00 00:00:00'),(3621,0,0,1879,1833,2341,0,0,NULL,'','DIAG','ZZZ','Remark','POST TRAUMATIC HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 19:48:27','','0000-00-00 00:00:00'),(3622,0,0,1879,1833,2341,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 19:48:59','','0000-00-00 00:00:00'),(3624,0,0,1881,1835,2345,0,0,NULL,'','DIAG','ZZZ','Remark','RECTAL POLYP','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-03 19:51:57','','0000-00-00 00:00:00'),(3626,0,0,1871,1825,2331,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-03 19:53:57','','0000-00-00 00:00:00'),(3627,0,0,1880,1834,2342,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 20:02:03','','0000-00-00 00:00:00'),(3629,0,0,1879,1833,2341,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-03 20:05:48','','0000-00-00 00:00:00'),(3630,0,0,1887,1841,2354,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN WITH DISCHARGE--1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 20:12:12','','0000-00-00 00:00:00'),(3631,0,0,1887,1841,2354,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left ear fungus with discharge&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-03 20:12:20','','0000-00-00 00:00:00'),(3632,0,0,1846,127,2298,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-ACUTE PROSTATITIS (? PROSTATIC ABSCESS)</STRONG></P>\r\n\r\n<P><STRONG>-SEPSIS</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, DM II, IHD (POST CABG)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 20:27:01','mo','2025-11-07 12:32:55'),(3633,0,0,1846,127,2298,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-03 20:27:01','mo','2025-11-07 12:32:55'),(3634,0,0,1846,127,2298,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 77 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II, HTN, IHD (POST CABG)<BR />\r\nC/O: STOMATITIS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DECREASED ORAL INTAKE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 4-5 DAYS FOR THAT PT PRIMARY CONSULTED TO FAMILY PHYSICIAN AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>BLOOD IX, URINE R/M (29-10-2025)</P>\r\n\r\n<P>CBC,CRP (03-11-2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-116/MIN, BP-1112/78MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>URINE R/M DONE ON 03/11/2025 WHICH S/O: PUS:6-8, URIC ACID(+), AMORPHOUS(++)</P>\r\n\r\n<P>CT ABDOMEN + PELVIS(CONTRAST) DONE ON 4/11/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>MDCT OF THORAX (PLAIN + CONTRAST) DONE ON 4/11/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>REFERENCE OF DR PRATIK SHAH(UROSURGEON) DONE ON 5/11/2025 AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>HBA1C DONE ON 07/11/2025 WHICH S/O: 6.7 %.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 20:27:01','mo','2025-11-07 12:32:55'),(3635,0,0,1846,127,2298,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS TO UROLOGIST (DR PRATIK SHAH) AT STERLING</P>\r\n\r\n<P>RBS MONITORING</P>\r\n\r\n<P>BP MONITORING</P>\r\n\r\n<P>HOLD OWN ANTIHYPERTENSIVE MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 21:04:20','mo','2025-11-07 12:32:55'),(3636,0,0,1846,127,2298,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ GUFIMER</P>\r\n\r\n<P>INJMETROGYL</P>\r\n\r\n<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>INJ VITNEURIN</P>\r\n\r\n<P>ZYTEE GEL</P>\r\n\r\n<P>METROGYL DG GEL</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>TAB TAMWELL</P>\r\n\r\n<P>TAB ECOSPRIN AV</P>\r\n\r\n<P>LIQ PEGCLEAR</P>\r\n\r\n<P>TABGLIMESTAR FM1</P>\r\n\r\n<P>TAB DOSIN D</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 21:04:20','mo','2025-11-07 12:32:55'),(3637,0,0,1703,126,2264,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 2 MONTH</P>\r\n\r\n<P>STOP SMOKING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 22:34:26','mo','2025-11-04 19:13:47'),(3638,0,0,1383,104,1711,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>LAPAROTOMY + GASTROJEJUNOSTOMY (ROUX EN Y)&nbsp;DONE BY DR PRATAPSINH DODIYA ON 28/10/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 22:50:41','mo','2025-11-04 17:56:00'),(3639,0,0,1383,104,1711,0,0,NULL,'','OTNOTE','','','<p>-upper midline incision kept</p>\r\n\r\n<p>-abdomen opened in layer</p>\r\n\r\n<p>-stomach distended reach upto umbilicus</p>\r\n\r\n<p>-jejunum CUT 30cm distal to dj.</p>\r\n\r\n<p>-gastrojejunostomy done with stappler on posterior wall of stomach (retrocolic)</p>\r\n\r\n<p>-biliaro&nbsp;pancreatic&nbsp;&nbsp;loop anastomosed with alimentary loop 50 cm distal to gastro jejunostomy site with stappler (side to side)</p>\r\n\r\n<p>-hemostasis checked.</p>\r\n\r\n<p>-colon mesentric&nbsp;defect closed</p>\r\n\r\n<p>-swab &amp; instrument count done</p>\r\n\r\n<p>-drain kept in lesser sac,pelvic</p>\r\n\r\n<p>-linea alba closed with prolene no-1.</p>\r\n\r\n<p>-skin closed with skin stappler.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 22:50:41','mo','2025-11-04 17:56:00');
INSERT INTO `pc_enc_dtl` VALUES (3640,0,0,1763,125,2240,0,0,NULL,'','DISCDIAG','','','<P><STRONG>RIGHT DELTOID ABSCESS</STRONG></P>\r\n\r\n<P><STRONG>WITH K/C/O DM II, HTN, DYSLIPIDEMIA, PSORIASIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 23:07:11','mo','2025-11-04 11:31:39'),(3641,0,0,1763,125,2240,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>NAD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 23:07:11','mo','2025-11-04 11:31:39'),(3642,0,0,1763,125,2240,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 59 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II, HTN, DYSLIPIDEMIA, PSORIASIS<BR />\r\nH/O: IM INJECTION TAKEN FOR PSORIASIS ON RIGHT DELTOID MUSCLE BEFORE 45 DAYS F&#39;BY<BR />\r\nC/O: SWELLING &AMP; HARDNESS OVER RIGHT DELTOID</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PAIN &AMP; REDNESS AT SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BURNING MICTURITION SINCE 4-5 DAYS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 45 DAYS FOR THAT PT PRIMARY RX TAKEN AT GP THEN DR ARCHIT RATHOD(MD MEDICINE) AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>HRUSG RIGHT SHOULDER + ARM (30-10-2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-102/MIN, BP-134/86MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nINCISION &AMP; DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 03/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 23:07:11','mo','2025-11-04 11:31:39'),(3643,0,0,1763,125,2240,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>INCISION &AMP; DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 03/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 23:07:11','mo','2025-11-04 11:31:39'),(3644,0,0,1763,125,2240,0,0,NULL,'','OTNOTE','','','<p>-abscess at right shoulder region present</p>\r\n\r\n<p>-incision kept</p>\r\n\r\n<p>-pus cavity in&nbsp;sub cutaneous plane of deltoid muscle reaching upto shoulder joint space</p>\r\n\r\n<p>-whole pus drained</p>\r\n\r\n<p>-cavity clean with betadine, h2o2 &amp; saline</p>\r\n\r\n<p>-wound kept open</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-roller gauze dressing kept</p>\r\n\r\n<p>-pus sent for cs.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 23:07:11','mo','2025-11-04 11:31:39'),(3645,0,0,1763,125,2240,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 23:07:11','mo','2025-11-04 11:31:39'),(3646,0,0,1763,125,2240,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS AT EVENING (5 TO 7 PM)</P>\r\n\r\n<P>COLLOCT PUS C/S REPORT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 23:07:11','mo','2025-11-04 11:31:39'),(3647,0,0,1763,125,2240,0,0,NULL,'','TREATGIVEN_TI','','','<P>IN AUGMENTIN</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 23:07:11','mo','2025-11-04 11:31:39'),(3648,0,0,1763,125,2240,0,0,NULL,'','TREATDISC_TI','','','<P>CAP AUGMENTIN (625 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DALACIN-C (300 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS P &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>SILVER STREAM SOLUTION............................(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB.TELMA&nbsp; AT (40/5/12.5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-0</P>\r\n\r\n<P>TAB.REZIDE M (80)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0-1-1</P>\r\n\r\n<P>TAB.SITADEX DM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-1-0</P>\r\n\r\n<P>TAB.CYPROPHASE P15&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-0-1</P>\r\n\r\n<P>TAB.ROSUSON (10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0-0-1&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-03 23:07:11','mo','2025-11-04 11:31:39'),(3649,0,0,1889,1843,2357,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 10:35:20','','0000-00-00 00:00:00'),(3650,0,0,1890,1844,2358,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 10:38:49','','0000-00-00 00:00:00'),(3651,0,0,1896,1850,2365,0,0,NULL,'','HIST','ZZZ','Remark','<p>when pt stands up ,walk or changing her posutre she feels sense of imbalance&thinsp; with&thinsp; giddiness</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n\n<p>pt is taking cinnarazine 15mg since many months daily</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 10:50:29','darshan','2025-11-04 10:54:23'),(3652,0,0,1896,1850,2365,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO------5-6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 10:52:37','','0000-00-00 00:00:00'),(3653,0,0,1896,1850,2365,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilateral high freq severe sn deafness</p>\n\n<p>vemp--left side reduced</p>\n\n<p>stabilomtry---reduced vestibular score</p>\n\n<p>vng--bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 10:53:56','darshan','2025-11-04 12:32:38'),(3655,0,0,1891,1845,2359,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:05:43','','0000-00-00 00:00:00'),(3656,0,0,1891,1845,2359,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head&thinsp;</p>\n\n<p>both ear deafness and tinnitus +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:06:29','','0000-00-00 00:00:00'),(3657,0,0,1891,1845,2359,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--right severe sn deafness&thinsp;</p>\n\n<p>&thinsp; &thinsp; &thinsp; left moderate sn deafness</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng---bilaterla vestibulopathy</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:06:48','darshan','2025-11-04 12:44:05'),(3659,0,0,659,629,2363,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:10:46','','0000-00-00 00:00:00'),(3660,0,0,1901,1855,2371,0,0,NULL,'','CC','ZZZ','Remark','FEVER | 4 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-04 11:11:01','','0000-00-00 00:00:00'),(3661,0,0,1901,1855,2371,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-04 11:11:04','','0000-00-00 00:00:00'),(3662,0,0,1895,1849,2364,0,0,NULL,'','CC','ZZZ','Remark','RIGHT SIDE PAIN AROUND EAR---2 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:14:27','','0000-00-00 00:00:00'),(3663,0,0,1895,1849,2364,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right acute parotitis&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:14:40','','0000-00-00 00:00:00'),(3664,0,0,1900,1854,2370,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:17:33','','0000-00-00 00:00:00'),(3665,0,0,1905,1860,2377,0,0,NULL,'','CC','ZZZ','Remark','FEVER, BODYACHE, MULTIPLE JTS PAIN WITH STIFFNESS | 3 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-04 11:26:15','','0000-00-00 00:00:00'),(3666,0,0,1905,1860,2377,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-04 11:26:19','','0000-00-00 00:00:00'),(3667,0,0,1903,1857,2373,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---5-6  DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:27:32','','0000-00-00 00:00:00'),(3668,0,0,1903,1857,2373,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is in any posture he feels giddiness&thinsp;</p>\n\n<p>remains for few mins to hrs&thinsp;</p>\n\n<p>associated with nausea and vomiting&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no asociated other cns symptom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:28:24','','0000-00-00 00:00:00'),(3669,0,0,1903,1857,2373,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--righ labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:28:38','darshan','2025-11-04 13:30:41'),(3671,0,0,1595,1552,2366,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---right ear wax --removed&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:36:03','','0000-00-00 00:00:00'),(3672,0,0,1595,1552,2366,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Rtm---i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:36:26','','0000-00-00 00:00:00'),(3673,0,0,1897,1851,2367,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:44:50','','0000-00-00 00:00:00'),(3674,0,0,1897,1851,2367,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rotatory feeling when pt is in any posture</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:45:38','','0000-00-00 00:00:00'),(3675,0,0,1897,1851,2367,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilomtry---reduced vestibular score</p>\n\n<p>vng---Central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:45:51','darshan','2025-11-04 13:36:21'),(3677,0,0,1910,1865,2383,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-04 11:48:19','','0000-00-00 00:00:00'),(3678,0,0,1907,1862,2379,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache --remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:50:33','darshan','2025-11-04 11:53:51'),(3679,0,0,1907,1862,2379,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE---MANY MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:50:46','','0000-00-00 00:00:00'),(3680,0,0,1907,1862,2379,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>vemp--wnl</p>\n\n<p>vng--central vareity of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:54:05','darshan','2025-11-04 13:55:20'),(3682,0,0,1909,1864,2381,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 11:58:27','','0000-00-00 00:00:00'),(3683,0,0,1898,1852,2368,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--medicine skipped</p>\n\n<p>&thinsp;recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 12:05:07','','0000-00-00 00:00:00'),(3684,0,0,1904,1859,2376,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN---FEW DAY OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 12:09:23','','0000-00-00 00:00:00'),(3685,0,0,1904,1859,2376,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left ear pain with discharge&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 12:09:33','','0000-00-00 00:00:00'),(3686,0,0,1913,1868,2387,0,0,NULL,'','CC','ZZZ','Remark','AGE | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-04 12:12:15','','0000-00-00 00:00:00'),(3687,0,0,1913,1868,2387,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-04 12:12:18','','0000-00-00 00:00:00'),(3688,0,0,1906,1861,2378,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurence of vertigo</p>\n\n<p>occassional headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 12:12:41','','0000-00-00 00:00:00'),(3689,0,0,1911,1866,2384,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 YESTERDAY ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 12:19:41','','0000-00-00 00:00:00'),(3690,0,0,1911,1866,2384,0,0,NULL,'','CC','ZZZ','Remark','HEAVINESS OF HEAD +||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 12:19:41','','0000-00-00 00:00:00'),(3691,0,0,1911,1866,2384,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associate other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 12:20:12','','0000-00-00 00:00:00'),(3692,0,0,1911,1866,2384,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 12:20:20','darshan','2025-11-04 14:04:16'),(3695,0,0,1911,1866,2384,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 12:20:29','','0000-00-00 00:00:00'),(3696,0,0,1230,1191,2388,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase--partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 12:26:42','','0000-00-00 00:00:00'),(3697,0,0,1230,1191,2388,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 12:27:16','','0000-00-00 00:00:00'),(3699,0,0,1230,1191,2388,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-04 12:28:28','','0000-00-00 00:00:00'),(3700,0,0,1896,1850,2365,0,0,NULL,'','DIAG','ZZZ','Remark','BILATERAL VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 12:33:47','','0000-00-00 00:00:00'),(3701,0,0,805,774,2374,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 12:38:52','','0000-00-00 00:00:00'),(3702,0,0,1916,1871,2391,0,0,NULL,'','CC','ZZZ','Remark','URTI | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-04 12:40:44','','0000-00-00 00:00:00'),(3703,0,0,1916,1871,2391,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-04 12:40:48','drjayant','2025-11-04 12:40:58'),(3704,0,0,1912,1867,2385,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigto---sudden onset of rotaotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 12:51:55','darshan','2025-11-04 12:55:33'),(3705,0,0,1912,1867,2385,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 12:54:33','','0000-00-00 00:00:00'),(3706,0,0,1912,1867,2385,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vng--central vareity of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 12:55:48','darshan','2025-11-04 18:27:20'),(3707,0,0,1912,1867,2385,0,0,NULL,'','DIAG','ZZZ','Remark','BPC','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 12:55:50','','0000-00-00 00:00:00'),(3708,0,0,1918,1872,2393,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2 MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 13:00:53','','0000-00-00 00:00:00'),(3709,0,0,1918,1872,2393,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is in any posture he feels giddiness</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 13:03:00','','0000-00-00 00:00:00'),(3710,0,0,1918,1872,2393,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hiit--nad</p>\n\n<p>pta----bilatelra very severe sn deafness</p>\n\n<p>stabilometery---reduced vestibular score</p>\n\n<p>vng---bilataeral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 13:03:13','darshan','2025-11-04 14:09:49'),(3712,0,0,1778,1734,2386,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---giddiness since yesterday</p>\n\n<p>Nystamgus---left beat&thinsp;</p>\n\n<p>Follow up pta---mild improvement in right ear deafness</p>\n\n<p>Right&thinsp; IT dexona given uneventfully&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 13:19:49','darshan','2025-11-04 14:28:30'),(3713,0,0,1914,1869,2389,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for positional giddiness</p>\n\n<p>sense imbalance on standing&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 13:28:06','','0000-00-00 00:00:00'),(3714,0,0,1914,1869,2389,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nads</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 13:28:18','','0000-00-00 00:00:00'),(3715,0,0,1919,1873,2394,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 13:32:54','','0000-00-00 00:00:00'),(3716,0,0,1911,1866,2384,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 14:04:39','','0000-00-00 00:00:00'),(3718,0,0,1918,1872,2393,0,0,NULL,'','DIAG','ZZZ','Remark','BILATEARL VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 14:09:56','','0000-00-00 00:00:00'),(3720,0,0,1911,1866,2384,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-04 14:23:19','','0000-00-00 00:00:00'),(3724,0,0,1778,1734,2386,0,0,NULL,'','MADVICE','ZZZ','Remark','PTA NEXT TIME','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-04 14:42:06','','0000-00-00 00:00:00'),(3725,0,0,1383,104,1711,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n\r\n<P>CENTRAL LINE IN SITU DAY :08</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-04 16:00:23','mo','2025-11-04 17:56:00'),(3726,0,0,1383,104,1711,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZIFI(200)&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; BEFORE FOOD FOR 5 DAYS</P>\r\n\r\n<P>TAB UDILIV (300)&nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB STEMETIL MD&nbsp; S/L&nbsp; &nbsp; &nbsp;1--0--1&nbsp;&nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ADDKAY&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp;&nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp;&nbsp;&nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-04 16:00:23','mo','2025-11-04 17:56:00'),(3727,0,0,1921,1874,2397,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 17:21:31','','0000-00-00 00:00:00'),(3728,0,0,1915,1870,2390,0,0,NULL,'','DIAG','ZZZ','Remark','ENTERIC FEVER','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-04 17:21:54','','0000-00-00 00:00:00'),(3729,0,0,1892,1846,2360,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE GASTRITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-04 17:22:43','','0000-00-00 00:00:00'),(3730,0,0,1922,1875,2398,0,0,NULL,'','CC','ZZZ','Remark','PAIN AROUND RIGHT EAR----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 17:24:32','','0000-00-00 00:00:00'),(3731,0,0,1922,1875,2398,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>right TM joint tenderness</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 17:24:46','','0000-00-00 00:00:00'),(3732,0,0,1585,1542,2399,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----right ear wax removed</p>\n\n<p>Rtm--small central perforation&thinsp;---old perforationj</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 17:30:52','darshan','2025-11-04 17:31:48'),(3733,0,0,1923,1876,2401,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n\n<p>mild sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 17:33:07','darshan','2025-11-04 17:35:36'),(3735,0,0,1923,1876,2401,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-04 17:36:32','','0000-00-00 00:00:00'),(3736,0,0,546,520,2402,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 17:39:52','','0000-00-00 00:00:00'),(3737,0,0,1924,1877,2404,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---medicine skipped</p>\n\n<p>recurrence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 17:48:18','','0000-00-00 00:00:00'),(3738,0,0,1925,1878,2405,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow upcase---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 17:50:36','darshan','2025-11-04 17:55:19'),(3739,0,0,1926,1879,2406,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---headache with giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 18:01:26','darshan','2025-11-04 18:03:31'),(3740,0,0,1926,1879,2406,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dxi halpike--nad</p>\n\n<p>hit-nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 18:01:56','','0000-00-00 00:00:00'),(3744,0,0,1926,1879,2406,0,0,NULL,'','MADVICE','ZZZ','Remark','T3 T4 TSH','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-04 18:04:42','','0000-00-00 00:00:00'),(3745,0,0,1931,1884,2413,0,0,NULL,'','CC','ZZZ','Remark','URTI | 3 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-04 18:11:11','','0000-00-00 00:00:00'),(3746,0,0,1931,1884,2413,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-04 18:11:14','','0000-00-00 00:00:00'),(3747,0,0,1929,1882,2409,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR TINNITUS ----YESTERDAY||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 18:12:38','','0000-00-00 00:00:00'),(3748,0,0,1929,1882,2409,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>both ear wax&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 18:12:49','','0000-00-00 00:00:00'),(3750,0,0,1929,1882,2409,0,0,NULL,'','MADVICE','ZZZ','Remark','BOTH EAR WAX REMOVAL  NEXT TIME \nTINNITUS WORKUP NEXT ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-04 18:14:01','','0000-00-00 00:00:00'),(3751,0,0,1928,1881,2408,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR BLOCKAGE FEELING OFF AND ON---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 18:15:52','','0000-00-00 00:00:00'),(3752,0,0,1928,1881,2408,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm--i/n</p>\n\n<p>Pta--wnl</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 18:15:59','darshan','2025-11-04 18:56:46'),(3753,0,0,1169,1129,2414,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partially better</p>\n\n<p>Left TM---small central perforation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 18:29:29','darshan','2025-11-04 18:30:09'),(3754,0,0,1932,1885,2416,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----3-4 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 18:39:13','','0000-00-00 00:00:00'),(3755,0,0,1932,1885,2416,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE --FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 18:39:13','','0000-00-00 00:00:00'),(3756,0,0,1932,1885,2416,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden jurky feeling for few seconds&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptosm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 18:39:44','','0000-00-00 00:00:00'),(3757,0,0,1932,1885,2416,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>Mri brain---no cva or SOL</p>\n\n<p>pta---bilateral mild to&thinsp; moderate sn deafness</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vng--central variety of nystagmus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 18:40:00','darshan','2025-11-04 19:42:47'),(3758,0,0,1932,1885,2416,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 18:40:08','','0000-00-00 00:00:00'),(3759,0,0,1703,126,2264,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-04 18:46:58','mo','2025-11-04 19:13:47'),(3760,0,0,1703,126,2264,0,0,NULL,'','TREATDISC_TI','','','<P>TAB BISOBIS 2.5MG&nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 2 MONTH</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; 1--0--0</P>\r\n\r\n<P>TAB ECOTOR AS 75/10&nbsp; &nbsp; P/O&nbsp; &nbsp; 0--1--0</P>\r\n\r\n<P>TAB DAPACOOL-S&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp;1--0--0</P>\r\n\r\n<P>TAB DOXOMAX-OD 600&nbsp; &nbsp;P/O&nbsp; &nbsp; 0--1--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-04 18:46:58','mo','2025-11-04 19:13:47'),(3761,0,0,1934,1887,2420,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-04 18:47:44','','0000-00-00 00:00:00'),(3762,0,0,1933,1886,2418,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 18:50:44','','0000-00-00 00:00:00'),(3763,0,0,721,690,2422,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 18:54:35','','0000-00-00 00:00:00'),(3764,0,0,1935,1888,2421,0,0,NULL,'','HIST','ZZZ','Remark','<p>fofllow up case--singal episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 19:01:33','','0000-00-00 00:00:00'),(3765,0,0,1937,1890,2424,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR  PAIN --OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 19:07:43','','0000-00-00 00:00:00'),(3766,0,0,1937,1890,2424,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Both ear&thinsp; AOM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 19:07:49','','0000-00-00 00:00:00'),(3767,0,0,894,862,2427,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--3-4 episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 19:14:29','','0000-00-00 00:00:00'),(3768,0,0,1938,1891,2425,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ----9 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 19:25:12','','0000-00-00 00:00:00'),(3769,0,0,1938,1891,2425,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>right ear deafness and tinnitus +</p>\n\n<p>no associated other cns symtpoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 19:25:48','darshan','2025-11-04 20:01:25'),(3770,0,0,1938,1891,2425,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain limited study-no sol or cva</p>\n\n<p>pta---right moderate sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 19:26:00','darshan','2025-11-04 20:11:06'),(3771,0,0,1938,1891,2425,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 19:26:03','','0000-00-00 00:00:00'),(3773,0,0,797,766,2430,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--2-3 short duration giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 19:38:16','','0000-00-00 00:00:00'),(3775,0,0,1941,1894,2433,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling remains for few mins to hrs&thinsp;</p>\n\n<p>associated with vomiting and nausea&thinsp;</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 19:54:18','darshan','2025-11-04 19:55:04'),(3776,0,0,1941,1894,2433,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 19:54:31','','0000-00-00 00:00:00'),(3777,0,0,1941,1894,2433,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus ---absent</p>\n\n<p>dx hallpike--nad</p>\n\n<p>iht--nad</p>\n\n<p>MRI brain---nad</p>\n\n<p>pta--left very severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>&thinsp;Vng--left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-04 19:55:18','darshan','2025-11-04 20:27:56'),(3780,0,0,1917,128,2392,0,0,NULL,'','DISCDIAG','','','<P><STRONG>HAEMORRHAGIC ENTEROCOLITIS</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN,IHD&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-04 21:47:19','mo','2025-11-05 19:41:08'),(3781,0,0,1917,128,2392,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-04 21:47:19','mo','2025-11-05 19:41:08'),(3782,0,0,1917,128,2392,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 75 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN,IHD</P>\r\n\r\n<P>H/O: FEVER BEFORE 3-4 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;UGISCOPY DONE ON 29/7/2025 WHICH S/O: FUNDIC ULCER AND HIATUS HERNIA&nbsp;<BR />\r\nC/O:WATERY ,BROWNISH DIARRHOEA 6-8 EPISODE SINCE TODAY MORNING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ONE EPISODE OF VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ABDOMINAL DISCOMFORT</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GIDDINESS ,DOE&nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE TODAY MORNING SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-128/MIN, BP-108/72MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>STOOL R/M DONE ON 4/11/2025 WHICH S/O: OCCULT BLOOD (+),50-60 PUS CELL,10-12 RBS,BACTERIA DETECTED</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-04 21:47:19','mo','2025-11-05 19:41:08'),(3783,0,0,1917,128,2392,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 2 DAYS</P>\r\n\r\n<P>HOLD ANTIHYPER TENSIVE MEDICINE TILL FOLLOW UP (TAB TELSAR 40 1--0--0)</P>\r\n\r\n<P>SOS GASTRO OPINION&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-04 21:47:19','mo','2025-11-05 19:41:08'),(3784,0,0,1917,128,2392,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ CEFCON</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>TAB CYCLOPAM</P>\r\n\r\n<P>CAP ENUFF</P>\r\n\r\n<P>INJ VITNEURIN</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-04 21:47:19','mo','2025-11-05 19:41:08'),(3785,0,0,1920,129,2395,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LEFT SIDE SHOULDER DISLOCATION WITH GREATER TUBEROSITY FRACTURE WITHOUT DNVD WITH 3 TO 6 RIB FRACTURE AND 11TH &AMP; 12TH RIB FRACTURE</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-04 21:58:55','mo','2025-11-06 08:05:37'),(3786,0,0,1920,129,2395,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-04 21:58:55','mo','2025-11-06 08:05:37'),(3787,0,0,1920,129,2395,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 40 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nH/O:FALL DOWN FROM STAIRCASE AT HOME (DOMESTIC FALL DOWN) AT 4/11/2025 APPROX 2PM F&#39;BY<BR />\r\nC/O:LEFT SIDE SHOULDER PAIN WITH&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;LEFT SIDE CHEST PAIN &AMP; BACK PAIN</P>\r\n\r\n<P>L/E; ABRASION PRESENT AT LEFT SIDE CHEST REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ABRASION PRESENT AT SCALP REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;TENDERNESS PRESENT AT LEFT SHOULDER</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;RANGE OF MOTION LEFT SHOULDER PAINFULL &AMP; RESTRICTED</P>\r\n\r\n<P>SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-82/MIN, BP-136/80MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>X-RAY LEFT SHOULDER DONE ON 4/11/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>HRCT CHEST DONE ON 4/11/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>CT BRAIN(PLAIN) DONE ON 4/11/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>X-RAY LS SPINE DONE ON 4/11/2025 REPORT ATATCHED WITH FILE</P>\r\n\r\n<P>IN VIEW OF RIB FRACTURE AND HEMOTHORAX REFERENCE OF DR.PRATAPSINH DODIYA(GENERAL SURGEON) DONE ON 4/11/2025 AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>CLOSE REDUCTION LEFT SHOULDER DISLOCATION DONE BY DR SAGAR KHANPARA ON 4/11/2025&nbsp; UNDER SHORT GENERAL ANEASTHESIA , (ANEASTHETIC DR CHAITANYASINH GOHIL) WITH ALL ASEPTIC PRECAUTION&nbsp;</P>\r\n\r\n<P>POST OP PATIENT SHIFTED TO WARD</P>\r\n\r\n<P>POST-OP&nbsp; X-RAY LEFT SHOULDER DONE ON 4/11/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-04 21:58:55','mo','2025-11-06 08:05:37'),(3788,0,0,1920,129,2395,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 7 DAYS</P>\r\n\r\n<P>- WEAR SHOULDER IMMOBILZER</P>\r\n\r\n<P>- CHEST BINDER&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-04 21:58:55','mo','2025-11-06 08:05:37'),(3789,0,0,1920,129,2395,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>INJ TRAMADOL</P>\r\n\r\n<P>INJ MYORIL</P>\r\n\r\n<P>INJ TT</P>\r\n\r\n<P>TAB CHYMORAL FORTE</P>\r\n\r\n<P>BUPRAGESIC PATCH</P>\r\n\r\n<P>NEOSPORIN OINT</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-04 21:58:55','mo','2025-11-06 08:05:37'),(3790,0,0,1641,117,2018,0,0,NULL,'','DISCCOND','','','<P>INTERMITTENT FEVER</P>\r\n\r\n<P>MILD DISCHARGE FROM RIGHT EAR</P>\r\n\r\n<P>CONSCIOUS &AMP; ORIENTED</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-04 22:10:17','mo','2025-11-05 11:21:30'),(3791,0,0,1945,1897,2439,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 10:40:14','','0000-00-00 00:00:00'),(3792,0,0,1948,1900,2443,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 10:43:07','','0000-00-00 00:00:00'),(3793,0,0,621,591,2440,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 10:49:49','','0000-00-00 00:00:00'),(3794,0,0,1950,1902,2445,0,0,NULL,'','CC','ZZZ','Remark','ORAL SORES WITH PAIN | 60 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 11:02:40','drjayant','2025-11-05 13:15:01'),(3796,0,0,1950,1902,2445,0,0,NULL,'','CC','ZZZ','Remark','BOTH SHOULDER PAIN AND BACK OF NECK PAIN | 365 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 11:05:44','drjayant','2025-11-05 13:15:01'),(3797,0,0,1950,1902,2445,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 11:06:17','drjayant','2025-11-05 13:20:00'),(3798,0,0,1947,1899,2442,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK AND BEFORE 2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 11:08:44','','0000-00-00 00:00:00'),(3799,0,0,1947,1899,2442,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>headache +</p>\n\n<p>no associated other cns symptosm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 11:09:21','','0000-00-00 00:00:00'),(3800,0,0,1947,1899,2442,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--wnl</p>\n\n<p>stabiloemtry--nad</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 11:09:54','darshan','2025-11-05 13:08:17'),(3802,0,0,1332,1293,2447,0,0,NULL,'','CC','ZZZ','Remark','RECENT URTI||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 11:13:12','','0000-00-00 00:00:00'),(3803,0,0,1332,1293,2447,0,0,NULL,'','CC','ZZZ','Remark','NAUSEA +||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 11:13:21','','0000-00-00 00:00:00'),(3804,0,0,1332,1293,2447,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 11:13:26','','0000-00-00 00:00:00'),(3805,0,0,496,470,2446,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 11:13:51','','0000-00-00 00:00:00'),(3807,0,0,1952,1904,2449,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO CO-MORBIDITIES, DRUG ALLERGIES OR OPERATIONS</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 11:19:21','','0000-00-00 00:00:00'),(3808,0,0,1949,1901,2444,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR BLOCKAGE FEELING ----2 WEEKS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 11:19:34','','0000-00-00 00:00:00'),(3809,0,0,1949,1901,2444,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---i/n</p>\n\n<p>pta---bilatelra high freq severe sn deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 11:19:59','darshan','2025-11-05 12:58:44'),(3810,0,0,1952,1904,2449,0,0,NULL,'','CC','ZZZ','Remark','PRE OP ASSESSEMENT FOR HYSTERECTOMY||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 11:19:59','','0000-00-00 00:00:00'),(3811,0,0,1952,1904,2449,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>RS/ CVS- CL NAD</p>\n\n<p>BLOOD IX- HIGH HbA1C AND TSH ( 1 ST TIME DETECTED ), REST WNL</p>\n\n<p>ECG- NSR/ WNL</p>\n\n<p>ECHO- WNL</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 11:22:34','drjayant','2025-11-05 19:04:46'),(3812,0,0,1951,1903,2448,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 11:23:06','','0000-00-00 00:00:00'),(3813,0,0,483,457,2450,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---mild impromvent&thinsp;</p>\n\n<p>Follow up PTA---mild impromvent as compare to previous pta</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 11:27:06','','0000-00-00 00:00:00'),(3814,0,0,1959,1911,2460,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 11:31:20','','0000-00-00 00:00:00'),(3816,0,0,1959,1911,2460,0,0,NULL,'','MADVICE','ZZZ','Remark','PTA NEXT TIME ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-05 11:32:40','','0000-00-00 00:00:00'),(3817,0,0,1961,1913,2462,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----4 YRS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 11:38:17','','0000-00-00 00:00:00'),(3818,0,0,1961,1913,2462,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 11:38:44','','0000-00-00 00:00:00'),(3819,0,0,1961,1913,2462,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--bilatelr high freq moderate sn deafness</p>\n\n<p>stabilometry---mild reduced vestibular s core</p>\n\n<p>vng--Right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 11:38:58','darshan','2025-11-05 13:27:48'),(3821,0,0,1965,1917,2467,0,0,NULL,'','DIAG','ZZZ','Remark','DM, 1 ST TIME DETECTED','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 11:39:33','','0000-00-00 00:00:00'),(3822,0,0,1965,1917,2467,0,0,NULL,'','CC','ZZZ','Remark','DIFICULTY IN RETRACTION OF GLANS | 3 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 11:41:08','','0000-00-00 00:00:00'),(3823,0,0,1963,1915,2464,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--occassional headache and giddiness</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 11:44:47','','0000-00-00 00:00:00'),(3824,0,0,1967,1919,2469,0,0,NULL,'','CC','ZZZ','Remark','PRE OP ASSESEMENT FOR HYSTERECTOMY||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 11:47:00','','0000-00-00 00:00:00'),(3825,0,0,1967,1919,2469,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO CO-MORBIDITIES, DRUG ALLERGIES OR OPERATIONS</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 11:56:48','drjayant','2025-11-05 18:42:29'),(3826,0,0,1954,1906,2452,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrencxe of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 11:58:18','','0000-00-00 00:00:00'),(3827,0,0,1954,1906,2452,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 11:58:20','','0000-00-00 00:00:00'),(3828,0,0,1969,1921,2471,0,0,NULL,'','CC','ZZZ','Remark','ITCHING||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 11:59:19','','0000-00-00 00:00:00'),(3829,0,0,1962,1914,2463,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR TINNITUS ----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 12:05:48','','0000-00-00 00:00:00'),(3830,0,0,1962,1914,2463,0,0,NULL,'','CC','ZZZ','Remark','OCCASSIONAL GIDDINESS ---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 12:05:48','','0000-00-00 00:00:00'),(3831,0,0,1962,1914,2463,0,0,NULL,'','CC','ZZZ','Remark','RECURRENT NASAL BLOCKAGE ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 12:05:48','','0000-00-00 00:00:00'),(3832,0,0,1962,1914,2463,0,0,NULL,'','HIST','ZZZ','Remark','<p>continuous both ear tinnitus feeling in head&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptosm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 12:06:28','','0000-00-00 00:00:00'),(3833,0,0,1962,1914,2463,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dx hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n\n<p>OAE---bialtelr poor corelation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 12:06:46','darshan','2025-11-05 13:48:53'),(3835,0,0,1955,1907,2454,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 12:10:17','','0000-00-00 00:00:00'),(3836,0,0,1964,1916,2466,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 12:14:05','','0000-00-00 00:00:00'),(3837,0,0,1978,1930,2481,0,0,NULL,'','CC','ZZZ','Remark','URTI | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 12:26:48','','0000-00-00 00:00:00'),(3838,0,0,1978,1930,2481,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 12:26:50','','0000-00-00 00:00:00'),(3840,0,0,487,461,2456,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--partailly better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 12:29:48','','0000-00-00 00:00:00'),(3841,0,0,487,461,2456,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 12:30:45','','0000-00-00 00:00:00'),(3844,0,0,487,461,2456,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENV UER\nPSYCHIATRIST OPINON ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-05 12:31:23','','0000-00-00 00:00:00'),(3845,0,0,1965,1917,2467,0,0,NULL,'','MADVICE','ZZZ','Remark','SUGAR RESTRICTED DIET','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-11-05 12:31:29','','0000-00-00 00:00:00'),(3846,0,0,1942,1895,2436,0,0,NULL,'','CC','ZZZ','Remark','ROTATORY FEELINGS | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 12:33:08','','0000-00-00 00:00:00'),(3847,0,0,1942,1895,2436,0,0,NULL,'','CC','ZZZ','Remark','FALL YESTERDAY||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 12:33:08','','0000-00-00 00:00:00'),(3848,0,0,1975,1927,2478,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 12:40:26','','0000-00-00 00:00:00'),(3849,0,0,1979,1931,2482,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 12:44:34','','0000-00-00 00:00:00'),(3850,0,0,1956,1908,2457,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 12:47:18','','0000-00-00 00:00:00'),(3851,0,0,1974,1926,2477,0,0,NULL,'','DIAG','ZZZ','Remark','INTERNAL HEMORRHOIDS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-05 12:50:19','','0000-00-00 00:00:00'),(3852,0,0,1957,1909,2458,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR DEAFNESS ----3-4 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 12:53:12','','0000-00-00 00:00:00'),(3853,0,0,1957,1909,2458,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---i/n</p>\n\n<p>Pta---bialtelr moderate conductive deafness(o)</p>\n\n<p>repeat PTA--both modreate sn deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 12:53:34','darshan','2025-11-05 14:57:26'),(3855,0,0,1958,1910,2459,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 12:55:56','','0000-00-00 00:00:00'),(3856,0,0,1949,1901,2444,0,0,NULL,'','PLAN','ZZZ','Remark','14','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 12:59:28','','0000-00-00 00:00:00'),(3857,0,0,1984,1936,2489,0,0,NULL,'','DIAG','ZZZ','Remark','PLANTAR FASCITIS RIGHT SIDE','','',0,'0000-00-00 00:00:00','drsagar','2025-11-05 13:04:52','','0000-00-00 00:00:00'),(3858,0,0,1947,1899,2442,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 13:08:44','','0000-00-00 00:00:00'),(3860,0,0,1980,1932,2484,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 13:16:52','','0000-00-00 00:00:00'),(3862,0,0,1982,1934,2486,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 13:21:52','','0000-00-00 00:00:00'),(3865,0,0,1961,1913,2462,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 13:27:51','','0000-00-00 00:00:00'),(3866,0,0,1950,1902,2445,0,0,NULL,'','MADVICE','ZZZ','Remark','DENTAL SURGEON OPINION, SOS BIOPSY','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-11-05 13:28:05','','0000-00-00 00:00:00'),(3868,0,0,1961,1913,2462,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 13:28:35','','0000-00-00 00:00:00'),(3870,0,0,1960,1912,2461,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 13:30:55','','0000-00-00 00:00:00'),(3871,0,0,1960,1912,2461,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR DISCHARGE OFF AND ON--1 YR||','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 13:31:09','','0000-00-00 00:00:00'),(3872,0,0,1960,1912,2461,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose---congested and purulent discharge +</p>\n\n<p>Both ear purulent discharge +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 13:31:32','','0000-00-00 00:00:00'),(3873,0,0,1973,1925,2476,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 13:35:02','','0000-00-00 00:00:00'),(3875,0,0,1977,1929,2480,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better for giddiness&thinsp;</p>\n\n<p>tinnitus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 13:54:53','','0000-00-00 00:00:00'),(3877,0,0,1947,1899,2442,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-05 14:09:37','','0000-00-00 00:00:00'),(3879,0,0,1961,1913,2462,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-05 14:10:10','','0000-00-00 00:00:00'),(3881,0,0,1962,1914,2463,0,0,NULL,'','MADVICE','ZZZ','Remark','CT PNS FOR NASAL BLOCKAGE ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-05 14:20:40','','0000-00-00 00:00:00'),(3882,0,0,1983,1935,2488,0,0,NULL,'','HIST','ZZZ','Remark','<p>follwo up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 14:21:49','','0000-00-00 00:00:00'),(3883,0,0,1987,1939,2493,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase-occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 14:25:01','','0000-00-00 00:00:00'),(3884,0,0,1943,130,2437,0,0,NULL,'','DISCDIAG','','','<P><STRONG>MULTIPLE FIBROEDENOMA (RIGHT BREAST)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-05 14:30:59','mo','2025-11-05 20:31:03'),(3885,0,0,1943,130,2437,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 41 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:SWELLING OVER RIGHT BREAST</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;PAIN AT A SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO FEVER</P>\r\n\r\n<P>L/E: TENDERNESS++</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 1.5&nbsp;YEARS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-84/MIN, BP-100/70MMHG, SPO2-99% ON RA, RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nFIBROEDENOMA EXCISION DONE BY DR PRATAPSINH DODIYA ON 5/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-05 14:30:59','mo','2025-11-05 20:31:03'),(3886,0,0,1943,130,2437,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>FIBROEDENOMA EXCISION DONE BY DR PRATAPSINH DODIYA ON 5/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-05 14:30:59','mo','2025-11-05 20:31:03'),(3887,0,0,1943,130,2437,0,0,NULL,'','OTNOTE','','','<p>PER-OP FINDINGS:</p>\r\n\r\n<p>- PERIAREOLAR INCISION KEPT</p>\r\n\r\n<p>- LARGE CYST AT 3 O&#39;CLOCK POSITION WITH CHEESY&nbsp;MATERIAL IN CYST</p>\r\n\r\n<p>- CYST EXCISION DONE CAREFULLY</p>\r\n\r\n<p>- ANOTHER TWO FIBROEDENOMA AT 1 O&#39;CLOCK &amp; 11 O&#39;CLOCK POSITION</p>\r\n\r\n<p>- FIBROEDENOMA EXCISION DONE</p>\r\n\r\n<p>- HEMOSTASIS ACHIEVED</p>\r\n\r\n<p>- THOROUGHLY SALINE WASH GIVEN</p>\r\n\r\n<p>- SKIN CLOSED WITH ETHILON (4-0)</p>\r\n\r\n<p>- DRESSING KEPT</p>\r\n\r\n<p>- (FIBROEDENOMA/GALACTOCELE) SENT FOR HPE</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-05 14:30:59','mo','2025-11-05 20:31:03'),(3888,0,0,1943,130,2437,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-05 14:30:59','mo','2025-11-05 20:31:03'),(3889,0,0,1943,130,2437,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS&nbsp;</P>\r\n\r\n<P>NOTE: HPE AWAITED</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-05 14:30:59','mo','2025-11-05 20:31:03'),(3890,0,0,1943,130,2437,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-05 14:30:59','mo','2025-11-05 20:31:03'),(3891,0,0,1943,130,2437,0,0,NULL,'','TREATDISC_TI','','','<P>CAP AUGMENTIN(625MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(15)</P>\r\n\r\n<P>TAB DALACIN-C(300MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(10)</P>\r\n\r\n<P>TAB DOPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ..........(10)</P>\r\n\r\n<P>TAB AKILOS -SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;............(10)</P>\r\n\r\n<P>TAB CHYMORAL FORTE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...........(15)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-05 14:30:59','mo','2025-11-05 20:31:03'),(3893,0,0,1957,1909,2458,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 14:40:09','darshan','2025-11-05 14:42:29'),(3896,0,0,1957,1909,2458,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS HEARING AID TRIAL','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-05 14:59:52','','0000-00-00 00:00:00'),(3897,0,0,83,72,2494,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 17:23:25','','0000-00-00 00:00:00'),(3898,0,0,1988,1940,2495,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 17:23:37','','0000-00-00 00:00:00'),(3899,0,0,1989,1941,2496,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 17:27:28','','0000-00-00 00:00:00'),(3900,0,0,338,322,2497,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 17:29:48','','0000-00-00 00:00:00'),(3901,0,0,685,655,2498,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----presently better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 17:32:49','','0000-00-00 00:00:00'),(3902,0,0,1991,1943,2500,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 17:37:14','','0000-00-00 00:00:00'),(3903,0,0,105,94,2501,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 17:40:27','','0000-00-00 00:00:00'),(3904,0,0,1993,1945,2503,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----left ear fungus with discharge&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 17:46:40','','0000-00-00 00:00:00'),(3905,0,0,1995,1947,2506,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 17:50:21','','0000-00-00 00:00:00'),(3906,0,0,1992,1944,2502,0,0,NULL,'','CC','ZZZ','Remark','PRE OP ASSESEMENT FOR HYSTERECTOMY||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 17:58:18','','0000-00-00 00:00:00'),(3907,0,0,1996,1948,2507,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 17:58:50','','0000-00-00 00:00:00'),(3908,0,0,1992,1944,2502,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO CO-MORBIDITIES, DRUG ALLERGIES</p>\n\n<p>H/O LSCS AND APPENICECTOMY, UNEVENTFUL</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 17:59:01','','0000-00-00 00:00:00'),(3909,0,0,1992,1944,2502,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>RS/ CVS- CL NAD</p>\n\n<p>BLOOD IX- WNL</p>\n\n<p>ECG- NSR/WNL</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 17:59:40','','0000-00-00 00:00:00'),(3911,0,0,1992,1944,2502,0,0,NULL,'','MADVICE','ZZZ','Remark','PT IS FIT FOR SURGERY/ ANAESTHESIA','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-11-05 18:02:05','','0000-00-00 00:00:00'),(3912,0,0,1997,1949,2509,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 18:06:19','darshan','2025-11-05 18:10:28'),(3913,0,0,1997,1949,2509,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 18:06:19','darshan','2025-11-05 18:11:06'),(3914,0,0,1997,1949,2509,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus----absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilatearl high freq severe sn deafness</p>\n\n<p>stabiloematry--wnl</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 18:11:15','darshan','2025-11-05 19:42:59'),(3915,0,0,1997,1949,2509,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 18:11:18','','0000-00-00 00:00:00'),(3916,0,0,2000,1952,2513,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 18:13:43','','0000-00-00 00:00:00'),(3918,0,0,2003,1955,2517,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ----6-7 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 18:34:40','','0000-00-00 00:00:00'),(3919,0,0,2003,1955,2517,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of senes of imbalance&thinsp;</p>\n\n<p>when pt stands or sits he feels imbalance sense&thinsp;</p>\n\n<p>heaviness of head+</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 18:35:28','','0000-00-00 00:00:00'),(3920,0,0,2003,1955,2517,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 18:35:40','','0000-00-00 00:00:00'),(3921,0,0,2003,1955,2517,0,0,NULL,'','DIAG','ZZZ','Remark','PSY VS OTHER','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 18:35:42','','0000-00-00 00:00:00'),(3922,0,0,1320,1281,2512,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--partialy better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 18:38:35','','0000-00-00 00:00:00'),(3924,0,0,1320,1281,2512,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-05 18:41:05','','0000-00-00 00:00:00'),(3925,0,0,1967,1919,2469,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>RS/ CVS- CL NAD</p>\n\n<p>BLOOD IX- WNL</p>\n\n<p>ECG- NSR/WNL</p>\n\n<p>ECHO- WNL</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 18:42:58','','0000-00-00 00:00:00'),(3927,0,0,1967,1919,2469,0,0,NULL,'','MADVICE','ZZZ','Remark','PT IS FIT FOR SURGERY/ ANAESTHESIA ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-11-05 18:44:21','','0000-00-00 00:00:00'),(3928,0,0,1920,129,2395,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:&nbsp;</P>\r\n\r\n<P>CLOSE REDUCTION LEFT SHOULDER DISLOCATION DONE BY DR SAGAR KHANPARA ON 4/11/2025&nbsp; UNDER SHORT GENERAL ANEASTHESIA (ANEASTHETIC DR CHAITANYASINH GOHIL) WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-05 18:45:54','mo','2025-11-06 08:05:37'),(3929,0,0,1920,129,2395,0,0,NULL,'','OTNOTE','','','<p>PER-OP FINDINGS:</p>\r\n\r\n<p>- UNDER SHORT GENERAL ANEASTHESIA &amp; UNDER IITV LEFT SIDE SHOULDER DISLOCATION REDUCED</p>\r\n\r\n<p>- CONFIRMED UNDER IITV</p>\r\n\r\n<p>- A SHOULDER IMMOBILIZER GIVEN</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-05 18:45:54','mo','2025-11-06 08:05:37'),(3930,0,0,1920,129,2395,0,0,NULL,'','DISCCOND','','','<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-05 18:45:54','mo','2025-11-06 08:05:37'),(3931,0,0,1920,129,2395,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZIFI (200)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;........(14)</P>\r\n\r\n<P>TAB SKUDOL PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; .........(14)</P>\r\n\r\n<P>TAB CHYMORAL FORTE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; ..........(21)</P>\r\n\r\n<P>CAP ULPAN-L&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp; ........(14)</P>\r\n\r\n<P>TAB BONVELL PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(7)</P>\r\n\r\n<P>TAB ACETLE-SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS&nbsp; &nbsp; &nbsp; &nbsp;IF PAIN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(5)</P>\r\n\r\n<P>NEOSPORIN OINTMENT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-05 18:45:54','mo','2025-11-06 08:05:37'),(3932,0,0,1994,1946,2504,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase----sense of imbalance&thinsp;</p>\n\n<p>positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 18:46:24','','0000-00-00 00:00:00'),(3933,0,0,2014,1966,2533,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-05 18:48:23','','0000-00-00 00:00:00'),(3935,0,0,1723,1678,2508,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 18:52:08','','0000-00-00 00:00:00'),(3936,0,0,2014,1966,2533,0,0,NULL,'','MADVICE','ZZZ','Remark','SUGAR RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-11-05 18:52:36','','0000-00-00 00:00:00'),(3937,0,0,2017,1969,2537,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 18:55:16','','0000-00-00 00:00:00'),(3938,0,0,1999,1951,2511,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 19:03:50','','0000-00-00 00:00:00'),(3939,0,0,2002,1954,2516,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 19:06:12','','0000-00-00 00:00:00'),(3941,0,0,1952,1904,2449,0,0,NULL,'','MADVICE','ZZZ','Remark','SUGAR RESTRICTED DIET \nPT IS FIT FOR SURGERY/ ANAESTHESIA WITH DUE RISK\n','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-11-05 19:08:08','','0000-00-00 00:00:00'),(3942,0,0,2011,1963,2527,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS--3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 19:14:06','','0000-00-00 00:00:00'),(3943,0,0,2011,1963,2527,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilalteral high freq mild to moderate sn deafness</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 19:14:09','darshan','2025-11-05 20:19:16'),(3944,0,0,2011,1963,2527,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of giddiness when pt is getting out of bed and lying down in bed&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptosm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 19:20:12','','0000-00-00 00:00:00'),(3945,0,0,2011,1963,2527,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 19:20:32','','0000-00-00 00:00:00'),(3946,0,0,1032,1000,2542,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of vertigo</p>\n\n<p>Nystmagus---left beat&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 19:23:32','darshan','2025-11-05 19:23:54'),(3947,0,0,1032,1000,2542,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 19:23:34','','0000-00-00 00:00:00'),(3949,0,0,1862,1816,2317,0,0,NULL,'','MADVICE','ZZZ','Remark','PT WILL COME LATER ON','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-05 19:33:51','','0000-00-00 00:00:00'),(3950,0,0,1917,128,2392,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-05 19:34:31','mo','2025-11-05 19:41:08'),(3951,0,0,1917,128,2392,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ORNIFLOX&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; ........(4)</P>\r\n\r\n<P>TAB ROTOGUT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; .......(2)</P>\r\n\r\n<P>CAP ENUFF(100MG)&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(4)</P>\r\n\r\n<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; .........(4)&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB CLAVIX(75MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>TAB ECOTOR(20)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0</P>\r\n\r\n<P>TAB ECOTRIL PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-05 19:34:31','mo','2025-11-05 19:41:08'),(3952,0,0,2013,1965,2529,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----recurence of headache&thinsp;</p>\n\n<p>self medication done</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 19:36:38','','0000-00-00 00:00:00'),(3953,0,0,1997,1949,2509,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 19:43:29','','0000-00-00 00:00:00'),(3955,0,0,2015,1967,2534,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 19:49:20','','0000-00-00 00:00:00'),(3956,0,0,2015,1967,2534,0,0,NULL,'','CC','ZZZ','Remark','BURNING SENSATION IN ORAL CAVITY----1 YRS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 19:49:39','','0000-00-00 00:00:00'),(3957,0,0,2015,1967,2534,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>congested tongue with white patches on tongue</p>\n\n<p>p/o----lichen planus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 19:50:09','','0000-00-00 00:00:00'),(3959,0,0,2015,1967,2534,0,0,NULL,'','MADVICE','ZZZ','Remark','DERMATOLOGIST OPINION','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-05 19:51:36','','0000-00-00 00:00:00'),(3962,0,0,2023,1975,2546,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 19:57:58','','0000-00-00 00:00:00'),(3963,0,0,2023,1975,2546,0,0,NULL,'','CC','ZZZ','Remark','THROAT IRRITATION--FEW WEEKS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 19:58:23','','0000-00-00 00:00:00'),(3964,0,0,2023,1975,2546,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---mild congested</p>\n\n<p>neck--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 19:58:34','','0000-00-00 00:00:00'),(3965,0,0,2018,1970,2540,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 20:02:48','','0000-00-00 00:00:00'),(3966,0,0,2018,1970,2540,0,0,NULL,'','CC','ZZZ','Remark','PAIN AROUND RIGHT EAR--FW WEEKS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 20:03:11','','0000-00-00 00:00:00'),(3967,0,0,2018,1970,2540,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right side Neuralgic pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 20:03:23','','0000-00-00 00:00:00'),(3968,0,0,2021,1973,2544,0,0,NULL,'','HIST','ZZZ','Remark','<p>when pt walks he feels imbalance sense&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>poor LV function on echo cardiography</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 20:09:59','darshan','2025-11-05 20:14:56'),(3969,0,0,2021,1973,2544,0,0,NULL,'','CC','ZZZ','Remark','HEAVINESS OF HEAD GIDDINESS FEELING ---FEW WEEKS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 20:14:03','','0000-00-00 00:00:00'),(3970,0,0,2021,1973,2544,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---bilaterl high freq moderate sn deafness</p>\n\n<p>stabilometry--wnl</p>\n\n<p>vng---bilateral vestibulopathy</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 20:15:04','darshan','2025-11-06 18:34:04'),(3972,0,0,2011,1963,2527,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-05 20:19:50','','0000-00-00 00:00:00'),(3975,0,0,1997,1949,2509,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-05 20:21:56','','0000-00-00 00:00:00'),(3977,0,0,2011,1963,2527,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-05 20:35:06','','0000-00-00 00:00:00'),(3978,0,0,1542,1501,2557,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for tinnitus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 10:48:08','','0000-00-00 00:00:00'),(3979,0,0,1542,1501,2557,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm--i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 10:48:15','','0000-00-00 00:00:00'),(3980,0,0,2033,1983,2559,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up cas---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 10:53:03','','0000-00-00 00:00:00'),(3981,0,0,2032,1982,2558,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow&thinsp; up case----heaviness of head&thinsp;</p>\n\n<p>giddiness +</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 10:56:59','','0000-00-00 00:00:00'),(3982,0,0,1286,1245,2568,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case</p>\n\n<p>left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 11:13:32','','0000-00-00 00:00:00'),(3985,0,0,1286,1245,2568,0,0,NULL,'','MADVICE','ZZZ','Remark','EPLEYS MAENVUER\nBD MAENVEUR ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-06 11:16:58','','0000-00-00 00:00:00'),(3986,0,0,2034,1984,2560,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 11:19:22','','0000-00-00 00:00:00'),(3987,0,0,2034,1984,2560,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 11:19:36','','0000-00-00 00:00:00'),(3988,0,0,2034,1984,2560,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 11:19:49','','0000-00-00 00:00:00'),(3989,0,0,2034,1984,2560,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 11:20:43','','0000-00-00 00:00:00'),(3992,0,0,2034,1984,2560,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-06 11:21:02','','0000-00-00 00:00:00'),(3993,0,0,2040,1989,2566,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 11:23:17','','0000-00-00 00:00:00'),(3994,0,0,1289,1248,2567,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow u pcase----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 11:29:33','','0000-00-00 00:00:00'),(3995,0,0,2042,1991,2571,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---15 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 11:36:11','','0000-00-00 00:00:00'),(3996,0,0,2042,1991,2571,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotawotyr feeling on change of posture</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 11:36:32','','0000-00-00 00:00:00'),(3997,0,0,2042,1991,2571,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 11:36:41','darshan','2025-11-06 11:38:44'),(3998,0,0,2048,1997,2579,0,0,NULL,'','CC','ZZZ','Remark','URTI | 8 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-06 11:38:25','','0000-00-00 00:00:00'),(3999,0,0,2042,1991,2571,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 11:38:47','','0000-00-00 00:00:00'),(4000,0,0,2041,1990,2570,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR TINNITUS ---1 YRS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 11:48:00','darshan','2025-11-06 13:44:19'),(4001,0,0,2041,1990,2570,0,0,NULL,'','HIST','ZZZ','Remark','<p>continuous tinnitus in both ear&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 11:48:28','darshan','2025-11-06 13:44:21'),(4002,0,0,2041,1990,2570,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>ht-nad</p>\n\n<p>pta---bilateral moderate sn deafness</p>\n\n<p>vemp--wnl</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 11:48:52','darshan','2025-11-06 13:44:42'),(4004,0,0,2045,1994,2575,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 11:52:02','','0000-00-00 00:00:00'),(4005,0,0,2038,1987,2564,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 12:01:52','','0000-00-00 00:00:00'),(4006,0,0,26,25,2578,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 12:05:34','','0000-00-00 00:00:00'),(4007,0,0,2050,1999,2582,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 12:13:14','','0000-00-00 00:00:00'),(4008,0,0,2039,1988,2565,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 12:17:15','','0000-00-00 00:00:00'),(4009,0,0,2039,1988,2565,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR DISCHARGE ---MANY YRS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 12:18:00','','0000-00-00 00:00:00'),(4010,0,0,2039,1988,2565,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left ear full of dishcarge&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 12:18:08','','0000-00-00 00:00:00'),(4011,0,0,2052,2001,2585,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow u pcase---recurrence of vertigo&thinsp;</p>\n\n<p>cough and cold</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 12:21:50','','0000-00-00 00:00:00'),(4012,0,0,2044,1993,2574,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling with sense of imbalance&thinsp;</p>\n\n<p>nasuea and vomiting&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 12:40:31','darshan','2025-11-06 12:41:15'),(4013,0,0,2044,1993,2574,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---YESTERDAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 12:40:45','','0000-00-00 00:00:00'),(4014,0,0,2044,1993,2574,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--left beat&thinsp;</p>\n\n<p>hit--right mild abnromal&thinsp;</p>\n\n<p>dix halpike---left beat&thinsp;</p>\n\n<p>pta---bilatelr very severe to profound deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right acute partial vestibular deficit</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 12:41:44','darshan','2025-11-06 14:07:04'),(4015,0,0,2044,1993,2574,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ACUTE PARTIAL VESTIBULAR DEFICIT','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 12:44:08','','0000-00-00 00:00:00'),(4017,0,0,2046,1995,2576,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 12:47:45','','0000-00-00 00:00:00'),(4018,0,0,2057,2006,2592,0,0,NULL,'','CC','ZZZ','Remark','FEVER||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-06 12:49:28','','0000-00-00 00:00:00'),(4019,0,0,2055,2004,2588,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 12:56:23','','0000-00-00 00:00:00'),(4020,0,0,2060,2009,2596,0,0,NULL,'','CC','ZZZ','Remark','FEVER, ABD PAIN | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-06 13:03:39','','0000-00-00 00:00:00'),(4021,0,0,2060,2009,2596,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-06 13:03:42','','0000-00-00 00:00:00'),(4022,0,0,2047,1996,2577,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----MANY MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:07:35','','0000-00-00 00:00:00'),(4023,0,0,2047,1996,2577,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset &thinsp;of rotoatyr feeling on change of posture&thinsp;</p>\n\n<p>giddiness remains for few mins to hrs</p>\n\n<p>heaviness of head +</p>\n\n<p>both ear deafness +</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:09:08','','0000-00-00 00:00:00'),(4024,0,0,2047,1996,2577,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>ht--nad</p>\n\n<p>pta---bilatler severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--bilateral vestibulopathy with bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:09:25','darshan','2025-11-06 14:17:35'),(4025,0,0,2047,1996,2577,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV WITH BILATERAL VESTIBULOP','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:09:30','','0000-00-00 00:00:00'),(4026,0,0,2049,1998,2580,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ---recurence of vertio 3 episodes&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:15:28','','0000-00-00 00:00:00'),(4029,0,0,2049,1998,2580,0,0,NULL,'','MADVICE','ZZZ','Remark','INJ STEMETIL ....INTRAMUSCULAR ......1\nDISPOVAN 5CC..............1','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:17:21','','0000-00-00 00:00:00'),(4030,0,0,2051,2000,2583,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:22:53','','0000-00-00 00:00:00'),(4031,0,0,2053,2002,2586,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2-3 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:28:25','','0000-00-00 00:00:00'),(4032,0,0,2053,2002,2586,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:29:08','','0000-00-00 00:00:00'),(4033,0,0,2053,2002,2586,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:29:19','','0000-00-00 00:00:00'),(4034,0,0,2053,2002,2586,0,0,NULL,'','DIAG','ZZZ','Remark','VESTIBULOPATHY  VS OTHER','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:29:22','','0000-00-00 00:00:00'),(4035,0,0,2042,1991,2571,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:34:49','','0000-00-00 00:00:00'),(4037,0,0,2059,2008,2595,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----3-4 episdes of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:36:49','','0000-00-00 00:00:00'),(4038,0,0,2059,2008,2595,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:37:00','','0000-00-00 00:00:00'),(4039,0,0,2061,2010,2597,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnt</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta==bilatler high freq moderate sn deafness</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:43:55','darshan','2025-11-06 14:27:58'),(4040,0,0,2041,1990,2570,0,0,NULL,'','CC','ZZZ','Remark','OCCASSIONAL GIDDINESS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:44:19','','0000-00-00 00:00:00'),(4041,0,0,2043,1992,2572,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 WEEKS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:52:22','','0000-00-00 00:00:00'),(4042,0,0,2043,1992,2572,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration posotional giddiness without any cns symptosm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:52:39','','0000-00-00 00:00:00'),(4043,0,0,2043,1992,2572,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>vng--right hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:52:53','','0000-00-00 00:00:00'),(4044,0,0,2043,1992,2572,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:53:15','','0000-00-00 00:00:00'),(4047,0,0,2042,1991,2571,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:54:38','','0000-00-00 00:00:00'),(4049,0,0,2043,1992,2572,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-06 13:58:28','','0000-00-00 00:00:00'),(4051,0,0,2053,2002,2586,0,0,NULL,'','MADVICE','ZZZ','Remark','PT WILL COME LATER ON','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-06 14:04:41','','0000-00-00 00:00:00'),(4055,0,0,869,838,2594,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for pain&thinsp;</p>\n\n<p>tinnitus +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 14:10:27','','0000-00-00 00:00:00'),(4056,0,0,2047,1996,2577,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 14:18:18','','0000-00-00 00:00:00'),(4059,0,0,2044,1993,2574,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY TO R/O---CVA','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-06 14:19:45','','0000-00-00 00:00:00'),(4061,0,0,2061,2010,2597,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 14:27:02','darshan','2025-11-06 14:27:29'),(4062,0,0,2061,2010,2597,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 14:27:09','','0000-00-00 00:00:00'),(4063,0,0,2061,2010,2597,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 14:28:39','','0000-00-00 00:00:00'),(4066,0,0,2047,1996,2577,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-06 14:29:59','','0000-00-00 00:00:00'),(4068,0,0,2061,2010,2597,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-06 14:34:13','','0000-00-00 00:00:00'),(4069,0,0,2065,2012,2603,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotoatyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>frequent headache +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 17:11:53','darshan','2025-11-06 17:16:54'),(4071,0,0,2065,2012,2603,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----5 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 17:15:36','','0000-00-00 00:00:00'),(4072,0,0,2065,2012,2603,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>CT brain ---nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 17:16:35','darshan','2025-11-06 18:41:23'),(4075,0,0,2067,2014,2607,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 17:20:53','','0000-00-00 00:00:00'),(4076,0,0,2066,2013,2605,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 17:26:08','','0000-00-00 00:00:00'),(4077,0,0,1324,1285,2608,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 17:33:45','','0000-00-00 00:00:00'),(4079,0,0,1324,1285,2608,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-06 17:35:06','','0000-00-00 00:00:00'),(4080,0,0,2068,2015,2611,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 17:45:53','darshan','2025-11-06 17:50:01'),(4081,0,0,2068,2015,2611,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW WEEKS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 17:49:12','','0000-00-00 00:00:00'),(4082,0,0,2068,2015,2611,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilaterl high freq severe sn deafness</p>\n\n<p>stabiloemtry--wnl</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 17:50:16','darshan','2025-11-06 18:53:06'),(4083,0,0,2068,2015,2611,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 17:50:20','','0000-00-00 00:00:00'),(4084,0,0,2071,2018,2616,0,0,NULL,'','CC','ZZZ','Remark','RT FACILA WEAKNESS | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-06 17:54:28','','0000-00-00 00:00:00'),(4085,0,0,2069,2016,2612,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN---1 MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 17:55:23','','0000-00-00 00:00:00'),(4086,0,0,2069,2016,2612,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left ear fungus with discharge&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 17:55:32','','0000-00-00 00:00:00'),(4088,0,0,2070,2017,2613,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ------1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 18:05:06','','0000-00-00 00:00:00'),(4089,0,0,2070,2017,2613,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache --remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>frequent weakness</p>\n\n<p>no associateed other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 18:05:06','darshan','2025-11-06 19:10:34'),(4090,0,0,2070,2017,2613,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---MANY MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 18:05:22','','0000-00-00 00:00:00'),(4091,0,0,2070,2017,2613,0,0,NULL,'','CC','ZZZ','Remark','WEAKNESS--FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 18:05:32','','0000-00-00 00:00:00'),(4092,0,0,2070,2017,2613,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>vemp---wnl</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 18:06:20','darshan','2025-11-06 19:11:17'),(4093,0,0,2070,2017,2613,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 18:06:21','','0000-00-00 00:00:00'),(4094,0,0,897,865,2614,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----headache +</p>\n\n<p>occassional nasal blockagea +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 18:09:44','','0000-00-00 00:00:00'),(4096,0,0,2075,2022,2621,0,0,NULL,'','CC','ZZZ','Remark','DOE | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-06 18:10:59','','0000-00-00 00:00:00'),(4097,0,0,2075,2022,2621,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-06 18:11:10','','0000-00-00 00:00:00'),(4098,0,0,2080,2026,2626,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-06 18:36:37','','0000-00-00 00:00:00'),(4100,0,0,2080,2026,2626,0,0,NULL,'','MADVICE','ZZZ','Remark','SALT/ OIL RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-11-06 18:38:52','','0000-00-00 00:00:00'),(4101,0,0,2065,2012,2603,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 18:44:40','','0000-00-00 00:00:00'),(4102,0,0,2068,2015,2611,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 18:53:36','','0000-00-00 00:00:00'),(4103,0,0,842,811,2631,0,0,NULL,'','CC','ZZZ','Remark','SLEEP DISTURBANCES | 10 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-06 18:54:08','','0000-00-00 00:00:00'),(4106,0,0,842,811,2631,0,0,NULL,'','MADVICE','ZZZ','Remark','SALT RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-11-06 18:58:00','','0000-00-00 00:00:00'),(4107,0,0,2082,2028,2628,0,0,NULL,'','HIST','ZZZ','Remark','<p>SOCIAL ANXIETY +</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-11-06 19:01:41','drjayant','2025-11-06 19:02:11'),(4109,0,0,2082,2028,2628,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS INTERMITTENTLY | 7 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-06 19:02:31','drjayant','2025-11-06 19:04:20'),(4110,0,0,2082,2028,2628,0,0,NULL,'','CC','ZZZ','Remark','WT GAIN OF 10 KGS||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-06 19:02:31','drjayant','2025-11-06 19:04:20'),(4111,0,0,2081,2027,2627,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow u pcase--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 19:03:48','','0000-00-00 00:00:00'),(4112,0,0,2086,2032,2636,0,0,NULL,'','HIST','ZZZ','Remark','<p>foflow upc ase---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 19:16:30','','0000-00-00 00:00:00'),(4113,0,0,2084,2030,2630,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER BACK PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-06 19:17:56','','0000-00-00 00:00:00'),(4114,0,0,2077,2024,2623,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER BACK PAIN WITH BOTH OA K','','',0,'0000-00-00 00:00:00','drsagar','2025-11-06 19:18:32','','0000-00-00 00:00:00'),(4116,0,0,2068,2015,2611,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-06 19:19:19','','0000-00-00 00:00:00'),(4117,0,0,2083,2029,2629,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 19:29:37','','0000-00-00 00:00:00'),(4118,0,0,2085,2031,2634,0,0,NULL,'','HIST','ZZZ','Remark','<p>h/o---injury by cricket ball</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 19:45:02','darshan','2025-11-07 19:42:38'),(4119,0,0,2085,2031,2634,0,0,NULL,'','CC','ZZZ','Remark','LEFT SIDE NECK PAIN---3 MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 19:45:12','','0000-00-00 00:00:00'),(4120,0,0,2085,2031,2634,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>neck ---nad</p>\n\n<p>ct neck ---no sol or heamatoma</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 19:45:29','darshan','2025-11-07 19:33:45'),(4122,0,0,2088,2034,2639,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 19:50:24','','0000-00-00 00:00:00'),(4123,0,0,2088,2034,2639,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR TINNITUS ----10-12 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 19:51:01','','0000-00-00 00:00:00'),(4124,0,0,2088,2034,2639,0,0,NULL,'','CC','ZZZ','Remark','THROAT PAIN||','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 19:51:01','','0000-00-00 00:00:00'),(4125,0,0,2088,2034,2639,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested</p>\n\n<p>Btm--i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-06 19:51:12','','0000-00-00 00:00:00'),(4127,0,0,2088,2034,2639,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS TINNITUS ASSESMENT ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-06 19:54:34','','0000-00-00 00:00:00'),(4128,0,0,2030,131,2555,0,0,NULL,'','DISCDIAG','','','<P><STRONG>APPENDICULAR PERFORATION</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-06 23:57:22','mo','2025-11-07 19:52:23'),(4129,0,0,2030,131,2555,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-06 23:57:22','mo','2025-11-07 19:52:23'),(4130,0,0,2030,131,2555,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 36 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O: ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO NAUSEA OR VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO FEVER</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION OCCASIONALLY</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 2 DAYS FOR THAT PATIENT PRIMARILY CONSULTED OPD BASED AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN DONE ON 5/11/2025 WHICH S/O CHANGES OF APPENDICITIS</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-84/MIN, BP-110/70MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nLAPAROSCOPIC APPENDICECTOMY DONE BY DR PRATAPSINH DODIYA ON 6/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-06 23:57:22','mo','2025-11-07 19:52:23'),(4131,0,0,2030,131,2555,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS IN EVENING 5 TO 7 PM</P>\r\n\r\n<P>NOTE: HPE AWAITED&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-06 23:57:22','mo','2025-11-07 19:52:23'),(4132,0,0,2030,131,2555,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACTAGARD</P>\r\n\r\n<P>INJ.METROGYL</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>INJ.INFUPAR</P>\r\n\r\n<P>ALLEX LOGENGES</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-06 23:57:22','mo','2025-11-07 19:52:23'),(4133,0,0,2031,132,2556,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ANTERIOR ANAL FISSURE&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>SKIN TAG</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:15:17','mo','2025-11-07 10:49:26'),(4134,0,0,2031,132,2556,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:15:17','mo','2025-11-07 10:49:26'),(4135,0,0,2031,132,2556,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 38 YEARS OLD FEMALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD</P>\r\n\r\n<P>H/O: FEELS LIKE SOMETHING COMING OUT PR BEFORE 6 MONTHS<BR />\r\nC/O: PAIN IN ANUS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BLEEDING PR</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 1 MONTH SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-82/MIN, BP-130/82MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nLORD&#39;S DILATATION + SKIN TAG EXCISION DONE BY DR PRATAPSINH DODIYA ON 6/11/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\nSO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:15:17','mo','2025-11-07 10:49:26'),(4136,0,0,2031,132,2556,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX;</P>\r\n\r\n<P>LORD&#39;S DILATATION + SKIN TAG EXCISION DONE BY DR PRATAPSINH DODIYA ON 6/11/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:15:17','mo','2025-11-07 10:49:26'),(4137,0,0,2031,132,2556,0,0,NULL,'','OTNOTE','','','<p>PER-OP FINDINGS:</p>\r\n\r\n<p>-ANTERIOR ANAL FISSURE AND SKIN TAG AT 12 O&#39;CLOCK POSITION</p>\r\n\r\n<p>-TIGHT INTERNAL SPHINCTER&nbsp;</p>\r\n\r\n<p>-LORD&#39;S DILATATION DONE</p>\r\n\r\n<p>-SKIN TAG EXCISION DONE</p>\r\n\r\n<p>-HEMOSTASIS ACHIEVED</p>\r\n\r\n<p>-DRESSING KEPT</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:15:17','mo','2025-11-07 10:49:26'),(4138,0,0,2031,132,2556,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACTAGARD</P>\r\n\r\n<P>INJ.METROGYL</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>INJ.DYNAPAR AQ</P>\r\n\r\n<P>BUPRAGESIC PATCH</P>\r\n\r\n<P>SYP.CREMAFFIN PLUS</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:15:17','mo','2025-11-07 10:49:26'),(4139,0,0,2031,132,2556,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.ZENFLOX OZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS................(10)</P>\r\n\r\n<P>TAB.DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS................(10)</P>\r\n\r\n<P>TAB.HYOCIMAX-S&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS................(10)</P>\r\n\r\n<P>SYP.CREMAFFIN PLUS (10 ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AT BED TIME ..................(1)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>LOX JELLY 2%&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE DEFECATION...................(1)</P>\r\n\r\n<P>SUCRAL ANO CREAM&nbsp; &nbsp; &nbsp; &nbsp;FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER&nbsp;DEFECATION...................(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:15:17','mo','2025-11-07 10:49:26'),(4140,0,0,2063,134,2599,0,0,NULL,'','DISCDIAG','','','<P><STRONG>DENGUE FEVER WITH SEVERE THROMBOCYTOPENIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: IHD POST PTCA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:20:59','mo','2025-11-09 10:31:35'),(4141,0,0,2063,134,2599,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:20:59','mo','2025-11-09 10:31:35'),(4142,0,0,2063,134,2599,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 60 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: IHD POST PTCA (1.5 YEARS BACK)<BR />\r\nC/O: FEVER WITH RIGOR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BODYACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ANOREXIA&nbsp;&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 7-8 DAYS FOR THAT PATIENT PRIMARILY CONSULTED AT OPD BASED AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>DENGUE CARD TEST DONE ON 6/11/25 WHICH S/O NS1 &AMP; IGG POSITIVE.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-56/MIN, BP-106/66MMHG, SPO2-97% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF SEVERE THROMBOCYTOPENIA TREATMENT MODIFIED ACCORDINGLY</P>\r\n\r\n<P>REPEAT BLOOD IX DONE WHICH WAS IMPROVING&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:20:59','mo','2025-11-09 10:31:35'),(4143,0,0,2063,134,2599,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.RABICROSS</P>\r\n\r\n<P>INJ.QUICKSET</P>\r\n\r\n<P>CAP.FLUVIR</P>\r\n\r\n<P>TAB.FDSON MP</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>TAB CALPOL</P>\r\n\r\n<P>TAB LIPITAS GOLD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:39:25','mo','2025-11-09 10:31:35'),(4144,0,0,2035,133,2561,0,0,NULL,'','DISCDIAG','','','<P><STRONG>FISTULA IN ANO</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:52:23','mo','2025-11-07 10:46:19'),(4145,0,0,2035,133,2561,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:52:23','mo','2025-11-07 10:46:19'),(4146,0,0,2035,133,2561,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 38 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O: PERIANAL ABSCESS AND BURST OPEN SPHINCTER<BR />\r\nC/O: PAIN IN ANUS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PUS DISCHARGE P/R</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BLEEDING PR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 1 MONTH SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>-FISSURE IN ANO</P>\r\n\r\n<P>-EXTERNAL OPENEING AT 5 O&#39;CLOCK POSITION</P>\r\n\r\n<P>-INTERNAL OPENING AT 6 O&#39;CLOCK POSITION<BR />\r\nTEMP-AFEBRILE, PR-59/MIN, BP-114/70MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nFISTULECTOMY DONE BY DR PRATAPSINH DODIYA ON 6/11/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:52:23','mo','2025-11-07 10:46:19'),(4147,0,0,2035,133,2561,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX;</P>\r\n\r\n<P>FISTULECTOMY DONE BY DR PRATAPSINH DODIYA ON 6/11/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:52:23','mo','2025-11-07 10:46:19'),(4148,0,0,2035,133,2561,0,0,NULL,'','OTNOTE','','','<p>PER-OP FINDINGS:<br />\r\n-FISTULA IN ANO</p>\r\n\r\n<p>-EXTERNAL OPENING AT 5 O&#39;CLOCK POSITION</p>\r\n\r\n<p>-INTERNAL OPENEING AT 6 O&#39;CLOCK POSITION</p>\r\n\r\n<p>-WHOLE FISTULA TRACK EXCISED</p>\r\n\r\n<p>-HEMOSTASIS CHECKED</p>\r\n\r\n<p>-DRESSING KEPT</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:52:23','mo','2025-11-07 10:46:19'),(4149,0,0,2035,133,2561,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:52:23','mo','2025-11-07 10:46:19'),(4150,0,0,2035,133,2561,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACTAGARD</P>\r\n\r\n<P>INJ.METROGYL</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>INJ.DYNAPAR AQ</P>\r\n\r\n<P>BUPREGESIC PATCH</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:52:23','mo','2025-11-07 10:46:19'),(4151,0,0,2035,133,2561,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.CEFTUM (500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR&nbsp; 5 DAYS....................(10)</P>\r\n\r\n<P>TAB.METROGYL-ER (600)&nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR&nbsp; 5 DAYS....................(10)</P>\r\n\r\n<P>TAB.ZERODOL P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR&nbsp; 5 DAYS....................(10)</P>\r\n\r\n<P>TAB.DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR&nbsp; 5 DAYS....................(10)</P>\r\n\r\n<P>SYP.CREMAFFIN PLUS&nbsp; (10ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;0-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AT BED TIME&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS.....................(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>LOX JELLY 2%&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE DEFECATION..............(1)</P>\r\n\r\n<P>SUCRAL ANO CREAM&nbsp; &nbsp;&nbsp; &nbsp; FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER&nbsp;DEFECATION.................(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 00:52:23','mo','2025-11-07 10:46:19'),(4152,0,0,2031,132,2556,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 08:37:43','mo','2025-11-07 10:49:26'),(4153,0,0,2031,132,2556,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 08:37:43','mo','2025-11-07 10:49:26'),(4154,0,0,2035,133,2561,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 08:42:51','mo','2025-11-07 10:46:19'),(4155,0,0,2093,2038,2644,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 10:49:09','','0000-00-00 00:00:00'),(4156,0,0,2095,2040,2646,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 YR||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 10:57:11','','0000-00-00 00:00:00'),(4157,0,0,2095,2040,2646,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>left ear deafness and tinnitus&thinsp;</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 10:57:57','','0000-00-00 00:00:00'),(4158,0,0,2095,2040,2646,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain--nad</p>\n\n<p>pta----bilatelr moderate sn deafness</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng---Bialteral vestibulopathy</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 10:58:10','darshan','2025-11-07 12:59:34'),(4160,0,0,2095,2040,2646,0,0,NULL,'','DIAG','ZZZ','Remark','BIALTERAL VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 10:59:11','','0000-00-00 00:00:00'),(4161,0,0,171,158,2652,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 11:05:18','','0000-00-00 00:00:00'),(4162,0,0,2100,2045,2653,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling with sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 11:07:18','darshan','2025-11-07 11:11:49'),(4163,0,0,2100,2045,2653,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 11:11:10','','0000-00-00 00:00:00'),(4164,0,0,2100,2045,2653,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>&thinsp;pta--bilateral high freq modearte sn deafness&thinsp;</p>\n\n<p>vng--bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 11:12:10','darshan','2025-11-07 13:11:57'),(4166,0,0,2096,2041,2647,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n\n<p>occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 11:22:04','','0000-00-00 00:00:00'),(4167,0,0,10,10,2649,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better for giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 11:27:21','','0000-00-00 00:00:00'),(4168,0,0,2107,2053,2661,0,0,NULL,'','CC','ZZZ','Remark','FEVER||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-07 11:28:27','','0000-00-00 00:00:00'),(4169,0,0,2101,2046,2654,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n\n<p>occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 11:33:14','','0000-00-00 00:00:00'),(4170,0,0,2113,2059,2670,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-07 11:35:16','','0000-00-00 00:00:00'),(4171,0,0,2113,2059,2670,0,0,NULL,'','DIAG','ZZZ','Remark','PREGNANNCY','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-07 11:35:22','','0000-00-00 00:00:00'),(4172,0,0,1388,1348,2664,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 11:37:59','','0000-00-00 00:00:00'),(4174,0,0,1388,1348,2664,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 11:40:48','','0000-00-00 00:00:00'),(4175,0,0,2105,2050,2658,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 11:47:31','darshan','2025-11-07 11:51:28'),(4177,0,0,2105,2050,2658,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---MANY MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 11:50:24','','0000-00-00 00:00:00'),(4178,0,0,2105,2050,2658,0,0,NULL,'','CC','ZZZ','Remark','BLACK OUTS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 11:50:45','','0000-00-00 00:00:00'),(4179,0,0,2105,2050,2658,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bialtelr high freq severe sn deafness</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng---right post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 11:51:40','darshan','2025-11-07 13:28:25'),(4181,0,0,2105,2050,2658,0,0,NULL,'','CC','ZZZ','Remark','TINNITUS IN HEAD---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 11:52:10','','0000-00-00 00:00:00'),(4182,0,0,2111,2057,2668,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:00:12','','0000-00-00 00:00:00'),(4183,0,0,2115,2061,2673,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache --remains for few mins to hrs&thinsp;</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:08:03','darshan','2025-11-07 12:08:46'),(4184,0,0,2115,2061,2673,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---MANY MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:08:18','','0000-00-00 00:00:00'),(4185,0,0,1846,127,2298,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 12:08:36','mo','2025-11-07 12:32:55'),(4186,0,0,2115,2061,2673,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>vemp---wnl</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:08:56','darshan','2025-11-07 13:38:54'),(4187,0,0,2115,2061,2673,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:08:58','','0000-00-00 00:00:00'),(4188,0,0,2119,2065,2679,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT BICIPITAL TENDINITIS','','',0,'0000-00-00 00:00:00','drsagar','2025-11-07 12:12:31','','0000-00-00 00:00:00'),(4189,0,0,2102,2047,2655,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:13:22','darshan','2025-11-07 12:15:39'),(4190,0,0,2102,2047,2655,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----4-5 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:15:11','','0000-00-00 00:00:00'),(4191,0,0,2102,2047,2655,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>&thinsp;pta---bilatelr high freq severe sn deafness</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:15:56','darshan','2025-11-07 13:56:52'),(4193,0,0,1846,127,2298,0,0,NULL,'','TREATDISC_TI','','','<P>TAB DUONEM ER (300 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>CAP DOSIN D (8&nbsp;MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB VITNEURIN CZS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP PEGCLEAR (25 ML/WATER)&nbsp; &nbsp; &nbsp; &nbsp; HS&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>METROGYL DG OINTMENT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>CONTINUE OWN MEDICINE:</STRONG></P>\r\n\r\n<P>TAB ECOSPRIN AV (150 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>TAB GLIMESTAR FM 1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1/2--0--0&nbsp; (BEFORE FOOD)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 12:16:12','mo','2025-11-07 12:32:55'),(4194,0,0,2103,2048,2656,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----5-6 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:24:11','','0000-00-00 00:00:00'),(4195,0,0,2103,2048,2656,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:25:13','darshan','2025-11-07 12:26:27'),(4196,0,0,2103,2048,2656,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus--absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:26:46','','0000-00-00 00:00:00'),(4197,0,0,2103,2048,2656,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:26:47','','0000-00-00 00:00:00'),(4199,0,0,2103,2048,2656,0,0,NULL,'','DIAG','ZZZ','Remark','OTHER','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:26:58','','0000-00-00 00:00:00'),(4200,0,0,2112,2058,2669,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of vertigo&thinsp;</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:29:27','','0000-00-00 00:00:00'),(4201,0,0,2112,2058,2669,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nasd</p>\n\n<p>hti--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:29:40','','0000-00-00 00:00:00'),(4202,0,0,356,340,2678,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--occassional giddiness</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:33:31','','0000-00-00 00:00:00'),(4204,0,0,356,340,2678,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:34:10','','0000-00-00 00:00:00'),(4205,0,0,1573,1532,2662,0,0,NULL,'','DIAG','ZZZ','Remark','VIRAL HEPATITIS','','',0,'0000-00-00 00:00:00','drjayant','2025-11-07 12:34:47','','0000-00-00 00:00:00'),(4206,0,0,2110,2056,2667,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:39:02','','0000-00-00 00:00:00'),(4207,0,0,1729,120,2135,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>CONSCIOUS &AMP; ORIENTED</P>\r\n\r\n<P>NO ANY FREH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 12:42:30','mo','2025-11-07 12:51:32'),(4208,0,0,1729,120,2135,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>FOLLOW UP AFTER 2 DAYS TO DR RAJESH RAM</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 12:42:30','mo','2025-11-07 12:51:32'),(4209,0,0,2125,2071,2687,0,0,NULL,'','CC','ZZZ','Remark','FEVER||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-07 12:45:22','','0000-00-00 00:00:00'),(4210,0,0,1729,120,2135,0,0,NULL,'','TREATDISC_TI','','','<P>TAB PANTODAC DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB CORTEL (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ADDKAY&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB QUTAN (25 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ZEPTAS MD (0,5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB LANOL ER (650 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR FEVER</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 12:47:51','mo','2025-11-07 12:51:32'),(4211,0,0,2120,2066,2680,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS-----4-5 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:52:22','','0000-00-00 00:00:00'),(4212,0,0,2120,2066,2680,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of sense of imbalance with giddiness feeling&thinsp;</p>\n\n<p>heaviness of head with headache&thinsp;</p>\n\n<p>tingling and numbness in head&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:53:03','','0000-00-00 00:00:00'),(4213,0,0,2120,2066,2680,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit--nad</p>\n\n<p>pt is on indecap</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:53:22','','0000-00-00 00:00:00'),(4215,0,0,2120,2066,2680,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 12:54:34','','0000-00-00 00:00:00'),(4217,0,0,2121,2067,2682,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 13:04:13','','0000-00-00 00:00:00'),(4218,0,0,2114,2060,2672,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR PAIN---3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 13:07:26','','0000-00-00 00:00:00'),(4219,0,0,2114,2060,2672,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>right post aural mild tenderness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 13:07:37','','0000-00-00 00:00:00'),(4220,0,0,2126,2072,2688,0,0,NULL,'','CC','ZZZ','Remark','RT FLANK AND LOWER ABD PAIN BEFORE 2 DAYS | 2 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-07 13:08:44','','0000-00-00 00:00:00'),(4221,0,0,2126,2072,2688,0,0,NULL,'','CC','ZZZ','Remark','LT FLANK PAIN TODAY | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-07 13:08:44','','0000-00-00 00:00:00'),(4222,0,0,2126,2072,2688,0,0,NULL,'','CC','ZZZ','Remark','NO FEVER OR DYSURIA||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-07 13:08:44','','0000-00-00 00:00:00'),(4223,0,0,2126,2072,2688,0,0,NULL,'','HIST','ZZZ','Remark','<p>RT RENAL CALCULI ON USG (5/11), ON HJ DOSHI HOSP Tx</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-11-07 13:09:20','drjayant','2025-11-07 13:10:30'),(4224,0,0,2126,2072,2688,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>P/A- SOFT</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-11-07 13:10:05','','0000-00-00 00:00:00'),(4225,0,0,2126,2072,2688,0,0,NULL,'','MADVICE','ZZZ','Remark','CT KUB','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-11-07 13:11:03','','0000-00-00 00:00:00'),(4227,0,0,2120,2066,2680,0,0,NULL,'','MADVICE','ZZZ','Remark','FOLLOW AFTER 5 DAYS IF SYMPTOMS PERSIST VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 13:15:38','','0000-00-00 00:00:00'),(4228,0,0,1026,994,2686,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 13:24:13','','0000-00-00 00:00:00'),(4230,0,0,1026,994,2686,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER FOR 1 WEEK','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 13:25:44','','0000-00-00 00:00:00'),(4231,0,0,2105,2050,2658,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 13:29:29','','0000-00-00 00:00:00'),(4233,0,0,2116,2062,2674,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of headache and giddiness&thinsp;</p>\n\n<p>Mri brain limited study--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 13:34:06','','0000-00-00 00:00:00'),(4234,0,0,2123,2069,2684,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---YESTERDAY MORNING||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 13:45:14','','0000-00-00 00:00:00'),(4235,0,0,2123,2069,2684,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling on change posture</p>\n\n<p>heaviness of head +</p>\n\n<p>noa ssociated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 13:45:40','darshan','2025-11-07 13:47:36'),(4236,0,0,2123,2069,2684,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>stabidlometry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 13:47:49','darshan','2025-11-07 14:20:56'),(4240,0,0,2105,2050,2658,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MENEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 13:51:58','','0000-00-00 00:00:00'),(4241,0,0,2102,2047,2655,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 13:57:19','','0000-00-00 00:00:00'),(4243,0,0,2124,2070,2685,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 14:02:58','','0000-00-00 00:00:00'),(4244,0,0,2124,2070,2685,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 14:03:31','','0000-00-00 00:00:00'),(4245,0,0,2124,2070,2685,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>stabilomtry--reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 14:04:11','darshan','2025-11-07 14:34:18'),(4248,0,0,2102,2047,2655,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 14:08:28','','0000-00-00 00:00:00'),(4249,0,0,2128,2074,2690,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 14:17:19','','0000-00-00 00:00:00'),(4250,0,0,2128,2074,2690,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rtoaotry feeling when pt is getting out of bed&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 14:17:42','','0000-00-00 00:00:00'),(4251,0,0,2128,2074,2690,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit-nad</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 14:18:20','darshan','2025-11-07 18:49:02'),(4253,0,0,2123,2069,2684,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 14:20:59','','0000-00-00 00:00:00'),(4254,0,0,2123,2069,2684,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 14:21:29','','0000-00-00 00:00:00'),(4256,0,0,2097,2042,2648,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---medicine skipedd</p>\n\n<p>recurence of headache</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 14:25:14','','0000-00-00 00:00:00'),(4257,0,0,2129,2075,2692,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 14:29:17','','0000-00-00 00:00:00'),(4258,0,0,2129,2075,2692,0,0,NULL,'','CC','ZZZ','Remark','PAIN ON TIP OF TONGUE----4 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 14:31:08','','0000-00-00 00:00:00'),(4259,0,0,2129,2075,2692,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>oral cavity---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 14:31:22','darshan','2025-11-07 17:16:12'),(4261,0,0,2124,2070,2685,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 14:35:02','','0000-00-00 00:00:00'),(4264,0,0,2123,2069,2684,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 14:36:33','','0000-00-00 00:00:00'),(4266,0,0,2124,2070,2685,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 14:42:06','','0000-00-00 00:00:00'),(4267,0,0,2030,131,2555,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX :&nbsp;</P>\r\n\r\n<P>LAPAROSCOPIC APPENDICECTOMY DONE BY DR PRATAPSINH DODIYA ON 6/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 14:54:02','mo','2025-11-07 19:52:23'),(4268,0,0,2030,131,2555,0,0,NULL,'','OTNOTE','','','<p>per-op findings:</p>\r\n\r\n<p>- thick wall inflammed appendix</p>\r\n\r\n<p>- appendix ruptured at the tip</p>\r\n\r\n<p>- pus collection at rif</p>\r\n\r\n<p>- appendicectomy done</p>\r\n\r\n<p>- saline wash given</p>\r\n\r\n<p>- hemostasis achieved</p>\r\n\r\n<p>- 10mm port sheath closed with vicryl - 0 (port)&nbsp;</p>\r\n\r\n<p>- skin closed with skin stappler&nbsp;</p>\r\n\r\n<p>- appendix sent for hpe&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 14:54:02','mo','2025-11-07 19:52:23'),(4269,0,0,2030,131,2555,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 14:54:02','mo','2025-11-07 19:52:23'),(4270,0,0,996,963,2696,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:05:32','','0000-00-00 00:00:00'),(4271,0,0,2134,2080,2698,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:05:48','','0000-00-00 00:00:00'),(4272,0,0,2135,2081,2699,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:06:59','','0000-00-00 00:00:00'),(4273,0,0,2136,2082,2700,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:08:40','','0000-00-00 00:00:00'),(4274,0,0,2138,2084,2702,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:09:19','','0000-00-00 00:00:00'),(4275,0,0,2131,2077,2694,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:11:34','','0000-00-00 00:00:00'),(4276,0,0,2137,2083,2701,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:14:38','','0000-00-00 00:00:00'),(4278,0,0,2129,2075,2692,0,0,NULL,'','MADVICE','ZZZ','Remark','BLOOD IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:19:40','','0000-00-00 00:00:00'),(4279,0,0,2133,2079,2697,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----4-5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:26:39','','0000-00-00 00:00:00'),(4280,0,0,2133,2079,2697,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of sense of imbalance and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n\n<p>left ear tinnitus and deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:27:11','darshan','2025-11-07 17:27:55'),(4281,0,0,2133,2079,2697,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>MRI brain limited study---no sol</p>\n\n<p>pta---left moderate sn deafness</p>\n\n<p>stabilomtyry--reduced vestibular score</p>\n\n<p>vng--left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:27:22','darshan','2025-11-20 14:22:39'),(4285,0,0,2130,2076,2693,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:33:05','','0000-00-00 00:00:00'),(4286,0,0,2130,2076,2693,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:33:13','darshan','2025-11-07 18:16:27'),(4291,0,0,220,207,2705,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:36:38','','0000-00-00 00:00:00'),(4292,0,0,2132,2078,2695,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--medicine irregular&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:43:17','','0000-00-00 00:00:00'),(4293,0,0,2139,2085,2703,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:46:46','','0000-00-00 00:00:00'),(4294,0,0,2139,2085,2703,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>right post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:46:54','','0000-00-00 00:00:00'),(4295,0,0,2139,2085,2703,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:47:27','','0000-00-00 00:00:00'),(4297,0,0,2139,2085,2703,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:48:11','','0000-00-00 00:00:00'),(4298,0,0,2143,2089,2710,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE --MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:56:19','','0000-00-00 00:00:00'),(4299,0,0,2143,2089,2710,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR TINNITUS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:56:19','','0000-00-00 00:00:00'),(4300,0,0,2143,2089,2710,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache --sudden onset any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>right ear tinnitus +</p>\n\n<p>no associated other cns symtpsm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:57:21','','0000-00-00 00:00:00'),(4301,0,0,2143,2089,2710,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit--nad</p>\n\n<p>vemp--left side reduced</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 17:57:32','darshan','2025-11-11 18:06:59'),(4303,0,0,1591,1548,2709,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:05:29','','0000-00-00 00:00:00'),(4305,0,0,1591,1548,2709,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:06:22','','0000-00-00 00:00:00'),(4306,0,0,2140,2086,2704,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:07:45','','0000-00-00 00:00:00'),(4307,0,0,2140,2086,2704,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR PAIN WITH DISCHARGE ---2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:08:08','','0000-00-00 00:00:00'),(4308,0,0,2140,2086,2704,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right AOM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:08:19','','0000-00-00 00:00:00'),(4310,0,0,2140,2086,2704,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS PTA  NEXT TIME','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:08:59','','0000-00-00 00:00:00'),(4311,0,0,2141,2087,2707,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---two to three episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:11:07','','0000-00-00 00:00:00'),(4312,0,0,2130,2076,2693,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:16:53','','0000-00-00 00:00:00'),(4315,0,0,2149,2096,2721,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----5 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:20:07','','0000-00-00 00:00:00'),(4316,0,0,2149,2096,2721,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:20:35','darshan','2025-11-07 18:22:15'),(4317,0,0,1140,1102,2724,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER BACK PAIN WITH LEFT LOWER LIMB RADICULOPATHY','','',0,'0000-00-00 00:00:00','drsagar','2025-11-07 18:22:21','','0000-00-00 00:00:00'),(4318,0,0,2149,2096,2721,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nasd</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:22:28','darshan','2025-11-07 19:15:54'),(4319,0,0,2149,2096,2721,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:22:30','','0000-00-00 00:00:00'),(4320,0,0,2142,2088,2708,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR TINNITUS AND BLOCAKGE FEELING ----3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:25:54','','0000-00-00 00:00:00'),(4321,0,0,2142,2088,2708,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Ltm--small central traumtic perforation</p>\n\n<p>pta---wnl</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:26:51','darshan','2025-11-07 19:26:57'),(4323,0,0,2130,2076,2693,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:27:49','','0000-00-00 00:00:00'),(4324,0,0,2145,2091,2712,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:31:50','','0000-00-00 00:00:00'),(4325,0,0,886,854,2726,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ---recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:35:26','','0000-00-00 00:00:00'),(4326,0,0,2092,2037,2643,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE GASTRITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-07 18:36:01','','0000-00-00 00:00:00'),(4327,0,0,2092,2037,2643,0,0,NULL,'','DIAG','ZZZ','Remark','ENTERIC FEVER','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-07 18:36:11','','0000-00-00 00:00:00'),(4329,0,0,886,854,2726,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI  BRAIN LIMITED STUDY \n','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:36:42','','0000-00-00 00:00:00'),(4330,0,0,2094,2039,2645,0,0,NULL,'','DIAG','ZZZ','Remark','INTERNO HEMORRHOIDS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-07 18:37:00','','0000-00-00 00:00:00'),(4331,0,0,1820,1774,2677,0,0,NULL,'','DIAG','ZZZ','Remark','RT LUNG MASS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-07 18:37:19','','0000-00-00 00:00:00'),(4332,0,0,2127,2073,2689,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE SMALL BOWEL OBSTRUCTION','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-07 18:38:12','','0000-00-00 00:00:00'),(4333,0,0,2127,2073,2689,0,0,NULL,'','DIAG','ZZZ','Remark','? TB','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-07 18:38:19','','0000-00-00 00:00:00'),(4334,0,0,1518,1477,2717,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:39:04','','0000-00-00 00:00:00'),(4335,0,0,2147,2093,2714,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo positional</p>\n\n<p>headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:43:29','','0000-00-00 00:00:00'),(4337,0,0,2147,2093,2714,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:45:13','','0000-00-00 00:00:00'),(4338,0,0,2128,2074,2690,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:49:27','','0000-00-00 00:00:00'),(4340,0,0,2128,2074,2690,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:49:44','','0000-00-00 00:00:00'),(4341,0,0,1428,1387,2715,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:54:25','','0000-00-00 00:00:00'),(4343,0,0,1428,1387,2715,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER \n','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:55:15','','0000-00-00 00:00:00'),(4344,0,0,2148,2094,2716,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up cas---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 18:59:34','','0000-00-00 00:00:00'),(4345,0,0,1345,1306,2733,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow&thinsp; up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 19:07:04','','0000-00-00 00:00:00'),(4347,0,0,1345,1306,2733,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT BD MENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 19:09:30','','0000-00-00 00:00:00'),(4348,0,0,858,827,2734,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for giddiness</p>\n\n<p>headach +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 19:11:43','darshan','2025-11-07 19:12:56'),(4351,0,0,858,827,2734,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVEUR\n','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 19:13:44','','0000-00-00 00:00:00'),(4352,0,0,2149,2096,2721,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 19:16:16','','0000-00-00 00:00:00'),(4354,0,0,2089,137,2640,0,0,NULL,'','DISCDIAG','','','<P><STRONG>- LRTI</STRONG></P>\r\n\r\n<P><STRONG>- SCROTAL WALL EDEMA (?CELLULITIS)</STRONG></P>\r\n\r\n<P><STRONG>- K/C/O: HTN,DM II, HYPOTHYROIDISM,BPE</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 19:16:18','mo','2025-11-07 19:16:19'),(4355,0,0,2089,137,2640,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 75 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN,DM II, HYPOTHYROIDISM,BPE<BR />\r\nH/O:CLT + TURP ON 23/09/2025&nbsp;<BR />\r\nC/O:SLURRED SPEECH</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DISTURBED SLEEP</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DIARRHOEA(8-10 TIMES/DAY FROM YESTERDAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ANOREXIA</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 4-5 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>MDCT KUB DONE ON 5/09/2025</P>\r\n\r\n<P>2D ECHO DONE WHICH S/O: LVEF- 60%</P>\r\n\r\n<P>TYPHI DOT DONE ON 28/09/2025 WHICH S/O: -VE</P>\r\n\r\n<P>STOOL R/M DONE ON 28/09/2025 WHICH S/O: OCCULT BLOOD - TRACE, E-HISTOLYTICA CYST PRESENT</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-76/MIN, BP-100/60MMHG, SPO2-96% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>IN A VIEW OF UNCONTROLLED HIGH BLOOD SUGAR LEVEL INJ H ACTRAPID DRIP START @ RBS</P>\r\n\r\n<P>URINE R/M DONE ON 28/09/2025 WHICH S/O: 8-10 PUS CELL,12-15 RBC,AMORPHOUS PRESENT+</P>\r\n\r\n<P>CHEST X-RAY DONE ON 29/09/2025</P>\r\n\r\n<P>USG ABDOMEN DONE ON 30/09/2025 REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>S.BRUCELLA - AB TEST DONE ON 1/10/2025 WHICH S/O: -VE</P>\r\n\r\n<P>IN VIEW OF PERSISTENT HIGH GRADE FEVER BLOOD C/S SENT ON 30/09/2025 WHICH S/O: NO GROWTH&nbsp;</P>\r\n\r\n<P>IN VIEW OF SCROTAL BLEEDING REFERENCE OF DR PRATAPSINH DODIYA(GENERAL SURGEON) DONE ON2/10/2025 AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>IN A VIEW OF CONTROLLED BLOOD SUGAR LEVEL INJ H ACTRAPID DRIP STOP AND S/C START</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 19:16:18','mo','2025-11-07 19:16:19'),(4356,0,0,2089,137,2640,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 19:16:18','mo','2025-11-07 19:16:19'),(4357,0,0,2089,137,2640,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS ON 8/10/2025</P>\r\n\r\n<P>HOLD OWN MEDICINE TILL FOLLOW UP</P>\r\n\r\n<P>GENTLE CARE OF SROTUM</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 19:16:18','mo','2025-11-07 19:16:19'),(4358,0,0,2089,137,2640,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX-S</P>\r\n\r\n<P>INJ MEZOR</P>\r\n\r\n<P>INJ LINOX</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ H ACTRAPID DRIP</P>\r\n\r\n<P>CAP ENUFF</P>\r\n\r\n<P>CAP DOXY</P>\r\n\r\n<P>TAB LOPAMIDE</P>\r\n\r\n<P>TAB SIBIOSIS</P>\r\n\r\n<P>TAB ATIVAN&nbsp;</P>\r\n\r\n<P>TAB SILORIO</P>\r\n\r\n<P>TAB THIROACE</P>\r\n\r\n<P>INJ DERIPHYLLIN</P>\r\n\r\n<P>TAB MONDESLOR</P>\r\n\r\n<P>NEB DUOLIN</P>\r\n\r\n<P>NEB BUDECORT</P>\r\n\r\n<P>TAB DUTAS</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>INJ H MIXTARD</P>\r\n\r\n<P>TAB DYTOR PLUS</P>\r\n\r\n<P>NEOSPORIN POWDER&nbsp;</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 19:16:18','mo','2025-11-07 19:16:19'),(4359,0,0,2089,137,2640,0,0,NULL,'','TREATDISC_TI','','','<P>INJ MEZOR 1GM/100 ML NS&nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;9AM--9PM&nbsp; &nbsp; &nbsp; &nbsp;FOR 2 DAYS(5 INJ)</P>\r\n\r\n<P>TAB LINOX(600MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 2 DAYS( 5 TAB)</P>\r\n\r\n<P>CAP DOXY(100MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 2 DAYS( 5 TAB)</P>\r\n\r\n<P>TAB NEXPROFAST(40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(5)</P>\r\n\r\n<P>TAB ZOFER MD(4MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1---1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........(15)</P>\r\n\r\n<P>TAB AFASHMA SR(200)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(5)</P>\r\n\r\n<P>TAB SOBIOSIS(500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...........(15)</P>\r\n\r\n<P>TAB DUTAS(0.5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ............(10)</P>\r\n\r\n<P>TAB DYTOR PLUS(20MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ..............(5)</P>\r\n\r\n<P>TAB SILDORIO(8MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ............(5)</P>\r\n\r\n<P>TAB THIROACE(75MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;............(5)</P>\r\n\r\n<P>NEOSPORIN POWDER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......(1)</P>\r\n\r\n<P>INJ H MIXTARD 30/70&nbsp; &nbsp; &nbsp; S/C&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 14 UNIT&nbsp; &nbsp; &nbsp; BEFORE BREAKFAST</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8 UNIT&nbsp; &nbsp; &nbsp; &nbsp; BEFORE DINNER&nbsp; &nbsp; &nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 19:16:18','mo','2025-11-07 19:16:19'),(4360,0,0,2150,2097,2722,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR BLOCKAGE FEELING ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 19:21:27','','0000-00-00 00:00:00'),(4361,0,0,2150,2097,2722,0,0,NULL,'','CC','ZZZ','Remark','LEFT SIDE NECK SWELLING ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 19:21:27','','0000-00-00 00:00:00'),(4362,0,0,2150,2097,2722,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left cervial lymphadenitis</p>\n\n<p>right ear fungus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 19:21:43','','0000-00-00 00:00:00'),(4364,0,0,2149,2096,2721,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVEUR ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-07 19:23:57','','0000-00-00 00:00:00'),(4365,0,0,974,943,2728,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--left side neck pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-07 19:30:30','','0000-00-00 00:00:00'),(4366,0,0,2030,131,2555,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZENFLOX-OZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ..(10)</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; ...(10)</P>\r\n\r\n<P>TAB AKILOS-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;....(10)</P>\r\n\r\n<P>ALLEX LOGENGES&nbsp; &nbsp; &nbsp; &nbsp;S/L&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ..............(2)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 19:52:19','mo','2025-11-07 19:52:23'),(4367,0,0,2064,135,2602,0,0,NULL,'','DISCDIAG','','','<P><STRONG>K/C/O: HTN , DM TYPE 2</STRONG></P>\r\n\r\n<P><STRONG>PRESENTED WITH ARF (? ARF) , ALTERED SENSORIUM</STRONG></P>\r\n\r\n<P><STRONG>METABOLIC V/S NCSE (IMPROVED)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 21:49:24','mo','2025-11-08 12:26:18'),(4368,0,0,2064,135,2602,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O: ADMITTED AT ADITYA BIRLA HOSPITAL VERAVAL FOR 4/11/25 TO 6/11/25 AND DIAGNOSED WITH AGE + ARF WITH UTI + HYPONATREMIA + ANXIETY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 21:49:24','mo','2025-11-08 12:26:18'),(4369,0,0,2064,135,2602,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 65 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, DM TYPE 2<BR />\r\nC/O: NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DIARRHOEA BEFORE 2 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ALTERED SENSORIUM</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER OCCASIONALLY</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 5-6 DAYS FOR THAT PATIENT PRIMARILY CONSULTED TO ADITYA BIRLA&nbsp; VERAVAL THEN CONSULTED TO DR ROSHAN MIATRY AND&nbsp;NOW,PATIENT ADMITTED&nbsp;HERE UNDER CARE OF DR ROSHAN MISTRY FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>URINE R/M DONE ON 5/11/25 WHICH S/O PLENTY OF PUS CELLS SO URINE C/S SENT.</P>\r\n\r\n<P>URINE C/S S/O NO ANY GROWTH.</P>\r\n\r\n<P>USG ABDOMEN DONE ON 31/10/25, REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>MRI OF BRAIN DONE ON 5/11/25, REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-74/MIN, BP-140/90MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF INCREASED S.CREAT LEVEL, NEPHROLOGIST DR MAYUR MAKASANA&#39;S REFERANCE DONE AND ALL HIS ADVICE FOLLOWED.</P>\r\n\r\n<P>REPEAT MRI BRAIN DONE ON 7/11/25 WHICH S/O, TINY ACUTE NON-HEMORRHAGIC LACUNAR INFARCT IN RIGHT OCCIPITAL LOBE SO TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF UNCNTROOLED BLOOD SUGAR LEVEL, PHYSICIAN DR JAYANT MEHTA&#39;S REFERANCE DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>REPEAT REQUIRED BLOOD INVESTIGATION DONE WHICH WAS IMPROVING.</P>\r\n\r\n<P>REVIEW OF DR JAYANT MEHTA DONE FOR ORAL ANTIDIABETIC DRUGS</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 21:49:24','mo','2025-11-08 12:26:18'),(4370,0,0,2064,135,2602,0,0,NULL,'','CONDONADDMISSION','','','<P>E4V5M6</P>\r\n\r\n<P>CONSCIOUS BUT ALTERED BEHAVIOUR</P>\r\n\r\n<P>IRRELEVANT TALKING</P>\r\n\r\n<P>ALL FOUR LIMB MOVING, ABLE TO WALK WITH SUPPORT&nbsp;</P>\r\n\r\n<P>? VISUAL IMPAIRMENT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 22:37:34','mo','2025-11-08 12:26:18'),(4371,0,0,2064,135,2602,0,0,NULL,'','DISCCOND','','','<P>AFBERILE</P>\r\n\r\n<P>CONCIOUS AND ORIENTED, F/V/C</P>\r\n\r\n<P>ALL FOUR LIMB MOVING</P>\r\n\r\n<P>IMPROVED BEHAVIOUR</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 22:37:34','mo','2025-11-08 12:26:18'),(4372,0,0,2064,135,2602,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP ON 22/11/2025 WITH CBC,CRP,S.CREAT,RBS,S.K+</P>\r\n\r\n<P>PHYSIOTHERAPY</P>\r\n\r\n<P>RBS MONITORING</P>\r\n\r\n<P>HOLD OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 22:37:34','mo','2025-11-08 12:26:18'),(4373,0,0,2064,135,2602,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.OFRAMAX</P>\r\n\r\n<P>INJ.LEVERA</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>TAB.B29</P>\r\n\r\n<P>TAB.SILOCAP</P>\r\n\r\n<P>TAB.ECOSPRIN (150MG)</P>\r\n\r\n<P>TAB.ATORVA (40)</P>\r\n\r\n<P>TAB.CLOBA (5)</P>\r\n\r\n<P>INJ.H.ACTRAPID</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>TAB AKT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 22:43:19','mo','2025-11-08 12:26:18'),(4374,0,0,2064,135,2602,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZIFI CV (200)&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR&nbsp; &nbsp; 5 DAYS</P>\r\n\r\n<P>TAB LEVERA (500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp; &nbsp; 20 DAYS</P>\r\n\r\n<P>TAB RPRESS D&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR&nbsp; &nbsp; 20 DAYS</P>\r\n\r\n<P>TAB B29&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp; &nbsp; &nbsp;5&nbsp;&nbsp;DAYS</P>\r\n\r\n<P>TAB SILOCAP(4)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp; &nbsp; &nbsp;5&nbsp;&nbsp;DAYS</P>\r\n\r\n<P>TAB SOBIOSIS (500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR&nbsp; &nbsp; 5&nbsp; &nbsp;DAYS</P>\r\n\r\n<P>TAB ECOSPRIN (150MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;&nbsp; FOR&nbsp; &nbsp; 20 DAYS</P>\r\n\r\n<P>TAB ATORVA (40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp; &nbsp; 20 DAYS</P>\r\n\r\n<P>TAB CLOBA (5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp;&nbsp; &nbsp;20 DAYS</P>\r\n\r\n<P>TAB NEBICARD (2.5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp;&nbsp; &nbsp;20 DAYS</P>\r\n\r\n<P>TAB GIMMY M1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR&nbsp; &nbsp; 20 DAYS</P>\r\n\r\n<P>TAB DAPACOOL-S&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR&nbsp; &nbsp; 20 DAYS</P>\r\n\r\n<P>TAB QUTAN (25)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR SLEEPLESSNESS...........(5)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 22:43:19','mo','2025-11-08 12:26:18'),(4375,0,0,2078,136,2624,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PULMONARY KOCH&#39;S&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>IRON DEFICIENCY ANEMIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, DM TYPE 2, COPD</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 23:11:35','mo','2025-11-09 12:14:00'),(4376,0,0,2078,136,2624,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-07 23:11:35','mo','2025-11-09 12:14:00'),(4377,0,0,2078,136,2624,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 71 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, DM TYPE 2, COPD</P>\r\n\r\n<P>&nbsp;C/O:&nbsp;DOE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;COUGHING WITH WHITISH EXPECTORATION&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NO FEVER</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;STIFFNESS OF BOTH LL, DIFFICULTY IN WALKING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SEVERE GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 10-12DAYS&nbsp;FOR THAT PATIENT PRIMARILY CONSULTED DR SAMIR NAYAK AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-87/MIN, BP-90/60MMHG, SPO2-92% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>6/11/2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>7/11/2025</P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:11PT\">IN VIEW OF LOW HB (6.6 GM DL) 1 UNIT RCC TRANSFUSED.</SPAN></P>\r\n\r\n<P>SPUTUM R/M DONE WHICH S/O; PC:120-150 CELLS/HPF, RBC:2-3/HPF, ACID FAST BACILLI SEEN (GRADE 4) SO SPUTUM C/S SENT&nbsp;</P>\r\n\r\n<P>CHEST X-RAY DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>8/11/2025,</P>\r\n\r\n<P>IN VIEW HYPOGLYCEMIA INJ D25% GIVEN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>9/11/2025,</P>\r\n\r\n<P>SPUTUM C/S S/O: NO GROWTH&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLESO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 23:11:35','mo','2025-11-09 12:14:00'),(4378,0,0,2078,136,2624,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 1&nbsp;MONTH&nbsp;</P>\r\n\r\n<P>RBS MONITORING&nbsp;</P>\r\n\r\n<P>STOP SMOKING&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 23:11:35','mo','2025-11-09 12:14:00'),(4379,0,0,2078,136,2624,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.ECOTAZ</P>\r\n\r\n<P>TAB.EZITHRO</P>\r\n\r\n<P>INJ.RABICROSS</P>\r\n\r\n<P>INJ.QUICKSET</P>\r\n\r\n<P>1 UNIT RCC</P>\r\n\r\n<P>NEB IPRAPHAGE/BUDAPHAGE</P>\r\n\r\n<P>TAB.ECOSPRIN AV</P>\r\n\r\n<P>TAB.TRIGLYCASAR SR</P>\r\n\r\n<P>TAB.GLYZID MV</P>\r\n\r\n<P>TAB.GLYCAZAR MV</P>\r\n\r\n<P>TAB.AKT</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 23:11:35','mo','2025-11-09 12:14:00'),(4380,0,0,2127,138,2691,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE SMALL BOWEL OBSTRUCTION ( ? ENTERITIS)&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: TB CERVICAL LYMPHADENITIS&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 23:17:08','mo','2025-11-11 12:18:23'),(4381,0,0,2127,138,2691,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-07 23:17:08','mo','2025-11-11 12:18:23'),(4382,0,0,2127,138,2691,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 23 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: CERVICAL LYMPHNODE TB<BR />\r\nC/O: PAIN IN ABDOMEN YESTERDAY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PERSISTENT VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; INTOLERANCE OF FOOD</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PREENTED SINCE YESTERDAY FOR THAT PATIENT PRIMARILY CONSULTED OPD BASED NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN DONE ON 7/11/25 WHICH S/O SMALL BOWEL OBSTRUCTION</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-120/MIN, BP-110/60MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>REFERENCE OF DR KRUTARTH KANJIYA DONE ON 8/11/2025 AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>IN VIEW OF VOMITING RYLE&#39;S TUBE&nbsp;INSERTION DONE WITH ALL ASEPTIC PRECAUTION ON 08/11/2025 WITH ASEPTIC PRECAUTION</P>\r\n\r\n<P>X RAY ABDOMEN STANDING DONE ON 8/11/2025 AND 9/11/2025</P>\r\n\r\n<P>CT ABDOMEN WITH PELVIS&nbsp;&nbsp;(COTRAST) DONE ON 10/11/2025 WHICH S/O: NO ACUTE SMALL BOWEL OBSTRUCTION</P>\r\n\r\n<P>ORALLY LIQUID DIET START PATIENT TOLERATE WELL SO RYLE&#39;S TUBE REMOVE&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 23:17:08','mo','2025-11-11 12:18:23'),(4383,0,0,2127,138,2691,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACTAGARD</P>\r\n\r\n<P>INJ.METROGYL</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>INJ.INFUPAR</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>TAB RIFAGUT</P>\r\n\r\n<P>TAB LANOL ER</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 23:17:08','mo','2025-11-11 12:18:23'),(4384,0,0,1772,121,2195,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.KRIRAB DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS...............(5)</P>\r\n\r\n<P>TAB.LANOL ER (650)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS FOR FEVER</P>\r\n\r\n<P>TAB.AFASMA SR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS................(10)</P>\r\n\r\n<P>TAB.OMNACORTIL (10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS................(10)&nbsp;</P>\r\n\r\n<P>TAB.MUCOMIX (600)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS................(10)</P>\r\n\r\n<P>TAB.MYONIT SR (2.6)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS................(10)</P>\r\n\r\n<P>TAB.LESURIDE (75)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS................(5)</P>\r\n\r\n<P>TAB.ROSULESS GOLD (75/75/10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp;FOR 5 DAYS................(10)</P>\r\n\r\n<P>SYP.MUCOLYTE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 10 ML&nbsp; &nbsp; &nbsp; &nbsp; 1-1-1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS................(1)</P>\r\n\r\n<P>SYP.CREMAFFIN PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;10 ML&nbsp; &nbsp; &nbsp; &nbsp; 0-0-1&nbsp; &nbsp; &nbsp; &nbsp; AT BED TIME&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS................(1)</P>\r\n\r\n<P>FORACORT ROTOCAP (200)&nbsp; &nbsp; &nbsp; TO INHALE&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS................(1)</P>\r\n\r\n<P>SUCRAL ANO CREAM&nbsp; &nbsp; &nbsp; FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AT ANAL REGION&nbsp; &nbsp; &nbsp; TWICE A DAY..............(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-07 23:44:18','mo','2025-11-08 09:07:23'),(4385,0,0,1772,121,2195,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO DYSPNEA</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-08 09:07:12','mo','2025-11-08 09:07:23'),(4386,0,0,2165,2113,2752,0,0,NULL,'','DIAG','ZZZ','Remark','LT BREAST PAIN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-08 10:36:16','','0000-00-00 00:00:00'),(4387,0,0,2160,2108,2746,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 10:43:43','','0000-00-00 00:00:00'),(4388,0,0,2167,2115,2754,0,0,NULL,'','DIAG','ZZZ','Remark','LT GREAT TOE INGROWING TOE NAIL','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-08 10:46:22','','0000-00-00 00:00:00'),(4389,0,0,2161,2109,2748,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better partialy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 10:47:36','','0000-00-00 00:00:00'),(4390,0,0,2158,2106,2744,0,0,NULL,'','CC','ZZZ','Remark','FEVER WITH CHILLS | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-08 10:52:32','','0000-00-00 00:00:00'),(4391,0,0,2158,2106,2744,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-08 10:52:38','','0000-00-00 00:00:00'),(4392,0,0,2163,2111,2750,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3-4 MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 10:58:04','','0000-00-00 00:00:00'),(4393,0,0,2163,2111,2750,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no asociated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:01:29','','0000-00-00 00:00:00'),(4394,0,0,2163,2111,2750,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--bilatelr severe to very severe sn deafness</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--bilateral vestibulopathy with bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:01:48','darshan','2025-11-08 13:17:22'),(4395,0,0,2163,2111,2750,0,0,NULL,'','DIAG','ZZZ','Remark','INTERMITTENDT BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:02:03','','0000-00-00 00:00:00'),(4396,0,0,2163,2111,2750,0,0,NULL,'','DIAG','ZZZ','Remark','BIALTERAL VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:04:13','','0000-00-00 00:00:00'),(4397,0,0,2168,2116,2755,0,0,NULL,'','CC','ZZZ','Remark','LT UPPER ARM PAIN | 365 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-08 11:05:25','','0000-00-00 00:00:00'),(4398,0,0,2168,2116,2755,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-08 11:05:39','','0000-00-00 00:00:00'),(4399,0,0,2169,2117,2758,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case ---self medication done</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:09:36','','0000-00-00 00:00:00'),(4401,0,0,2169,2117,2758,0,0,NULL,'','MADVICE','ZZZ','Remark','PTA NEXT TIME ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:11:33','','0000-00-00 00:00:00'),(4402,0,0,2170,2119,2761,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:14:31','','0000-00-00 00:00:00'),(4403,0,0,2159,2107,2745,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:18:20','darshan','2025-11-08 11:18:38'),(4404,0,0,1513,1472,2757,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:22:09','','0000-00-00 00:00:00'),(4405,0,0,2162,2110,2749,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1  YRS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:35:40','','0000-00-00 00:00:00'),(4406,0,0,2162,2110,2749,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset&thinsp; on change of posture</p>\n\n<p>sense of imbalance</p>\n\n<p>heaviness of head+</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:36:08','','0000-00-00 00:00:00'),(4407,0,0,2162,2110,2749,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta--bilateral moderate sn deafness(o)</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>CCG--axil spin to right side&thinsp;</p>\n\n<p>vng---Bilateral vestibulopathy with bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:36:25','darshan','2025-11-08 13:29:21'),(4408,0,0,2177,2126,2771,0,0,NULL,'','DIAG','ZZZ','Remark','INTERNAL HEMORRHOIDS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-08 11:37:02','','0000-00-00 00:00:00'),(4409,0,0,2162,2110,2749,0,0,NULL,'','DIAG','ZZZ','Remark','BIALTELR VESTIBULOPATHY WITH BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:37:09','','0000-00-00 00:00:00'),(4410,0,0,2172,2121,2763,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:40:03','','0000-00-00 00:00:00'),(4411,0,0,2157,2105,2743,0,0,NULL,'','DIAG','ZZZ','Remark','LT URETERIC STONE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-08 11:40:58','','0000-00-00 00:00:00'),(4412,0,0,2164,2112,2751,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--2 episdes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:43:36','','0000-00-00 00:00:00'),(4413,0,0,2175,2124,2767,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT PLANTAR FASCITIS','','',0,'0000-00-00 00:00:00','drsagar','2025-11-08 11:46:30','','0000-00-00 00:00:00'),(4414,0,0,2173,2122,2765,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--12 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:52:05','','0000-00-00 00:00:00'),(4415,0,0,2174,2123,2766,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT FOOT PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-08 11:52:16','','0000-00-00 00:00:00'),(4416,0,0,2173,2122,2765,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:53:53','','0000-00-00 00:00:00'),(4417,0,0,2173,2122,2765,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnt</p>\n\n<p>dix hallpike--nasd</p>\n\n<p>hit--nad</p>\n\n<p>pta----wnl</p>\n\n<p>vng--right post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:54:02','darshan','2025-11-08 13:41:03'),(4418,0,0,2173,2122,2765,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:54:07','','0000-00-00 00:00:00'),(4419,0,0,2166,2114,2753,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---no imrpvment&thinsp; in tinnitus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 11:56:48','','0000-00-00 00:00:00'),(4420,0,0,2171,2120,2762,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--two episodes of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 12:00:21','','0000-00-00 00:00:00'),(4421,0,0,2024,139,2747,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PERIANAL ABSCESS (RECURRENCE)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-08 12:07:15','mo','2025-11-09 12:09:47'),(4422,0,0,2024,139,2747,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O: OPERATED FOR PERIANAL ABCESS AT AIIMS HOSPITAL RAJKOT BEFORE 1.5 MONTH</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-08 12:07:15','mo','2025-11-09 12:09:47'),(4423,0,0,2024,139,2747,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 36 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nC/O: PAIN AT ANAL REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;PUS DISCHARGE FROM SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;OCASSIONALLY BLEEDING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NO FEVER</P>\r\n\r\n<P>ALL MENTIONED C/O PRESENTED SINCE 45 DAYS FOR THAT PRIMARY OPERATED AT AIIMS RAJKOT THEN COME TO OPD AND NOW ADMITTED HERE FOR FUERTHER RX AND MX</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>SWAB CS-05/11/25-NO GROWTH</P>\r\n\r\n<P>PUS CS-21/09/25-PROTEUS MICRABILIS GROWTH[-VE]&nbsp;,E.COLI GROWTH</P>\r\n\r\n<P>VIRAL MARKER-19/09/25</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-84/MIN, BP-132/80MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nINCISION AND DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 08/11/2025 UNDER SPINAL&nbsp; ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-08 12:07:15','mo','2025-11-09 12:09:47'),(4424,0,0,2024,139,2747,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-08 12:07:15','mo','2025-11-09 12:09:47'),(4425,0,0,2024,139,2747,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-08 12:07:15','mo','2025-11-09 12:09:47'),(4426,0,0,2024,139,2747,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>SYP CREMAFFIN PLUS</P>\r\n\r\n<P>LOX JELLY&nbsp;</P>\r\n\r\n<P>SUCRAL ANO CREAM</P>\r\n\r\n<P>BUPRAGESIC PATCH&nbsp;</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-08 12:07:15','mo','2025-11-09 12:09:47'),(4427,0,0,2176,2125,2770,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 12:15:10','','0000-00-00 00:00:00'),(4428,0,0,1349,1310,2772,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---</p>\n\n<p>pt is highly uncooperative for syringing \\</p>\n\n<p>left ear wax removed--Ltm--i/n</p>\n\n<p>Rtm--wax can not be removed as pt not coperatived</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 12:26:53','','0000-00-00 00:00:00'),(4429,0,0,1349,1310,2772,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 12:26:59','','0000-00-00 00:00:00'),(4430,0,0,1905,1860,2784,0,0,NULL,'','CC','ZZZ','Remark','FEVER, BODYACHE | 3 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-08 12:33:12','','0000-00-00 00:00:00'),(4431,0,0,1905,1860,2784,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-08 12:33:19','','0000-00-00 00:00:00'),(4432,0,0,2183,2132,2782,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1.5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 12:44:48','','0000-00-00 00:00:00'),(4433,0,0,1782,1738,2787,0,0,NULL,'','CC','ZZZ','Remark','BETTER||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-08 12:45:25','','0000-00-00 00:00:00'),(4434,0,0,1782,1738,2787,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-08 12:45:30','','0000-00-00 00:00:00'),(4435,0,0,2183,2132,2782,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo--sudden onset of rotatory feeling remains for few&thinsp; mins only</p>\n\n<p>associated with nausea and vomiting&thinsp;</p>\n\n<p>heaviness of head+</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 12:45:42','','0000-00-00 00:00:00'),(4436,0,0,2183,2132,2782,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 12:45:54','darshan','2025-11-08 13:53:50'),(4438,0,0,2182,2131,2781,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up cased---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 12:49:27','','0000-00-00 00:00:00'),(4439,0,0,2186,2135,2789,0,0,NULL,'','CC','ZZZ','Remark','WEAKNESS +||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-08 12:51:19','','0000-00-00 00:00:00'),(4440,0,0,2186,2135,2789,0,0,NULL,'','HIST','ZZZ','Remark','<p>RECENT URTI</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-11-08 12:51:32','','0000-00-00 00:00:00'),(4442,0,0,2186,2135,2789,0,0,NULL,'','DIAG','ZZZ','Remark','CH ANAEMIA','','',0,'0000-00-00 00:00:00','drjayant','2025-11-08 12:51:50','','0000-00-00 00:00:00'),(4443,0,0,2178,2127,2773,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 12:54:33','','0000-00-00 00:00:00'),(4445,0,0,2180,2129,2778,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:00:31','','0000-00-00 00:00:00'),(4446,0,0,2180,2129,2778,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE||','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:00:31','','0000-00-00 00:00:00'),(4447,0,0,2180,2129,2778,0,0,NULL,'','CC','ZZZ','Remark','BLACK OUT ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:00:31','','0000-00-00 00:00:00'),(4448,0,0,2180,2129,2778,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nsytagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>CCG--wnl</p>\n\n<p>stabilomtry-nad</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:01:03','darshan','2025-11-08 14:23:18'),(4450,0,0,2184,2133,2783,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n\n<p>occssional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:03:40','','0000-00-00 00:00:00'),(4451,0,0,2185,2134,2788,0,0,NULL,'','DIAG','ZZZ','Remark','RT BREAST PAIN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-08 13:04:46','','0000-00-00 00:00:00'),(4452,0,0,91,80,2774,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:06:51','','0000-00-00 00:00:00'),(4453,0,0,2179,2128,2776,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----sense of imbalance at time of meal</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:10:43','','0000-00-00 00:00:00'),(4455,0,0,2179,2128,2776,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMTED STUDY ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:12:58','','0000-00-00 00:00:00'),(4456,0,0,2188,2137,2791,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE CHOLECYSTITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-08 13:15:39','','0000-00-00 00:00:00'),(4457,0,0,2188,2137,2791,0,0,NULL,'','DIAG','ZZZ','Remark','HTN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-08 13:15:42','','0000-00-00 00:00:00'),(4458,0,0,2163,2111,2750,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:17:59','','0000-00-00 00:00:00'),(4460,0,0,2187,2136,2790,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:22:41','','0000-00-00 00:00:00'),(4461,0,0,2187,2136,2790,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:23:00','darshan','2025-11-08 14:42:27'),(4462,0,0,2187,2136,2790,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry---reduced vestibular scorev</p>\n\n<p>Vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:23:08','darshan','2025-11-08 14:42:57'),(4463,0,0,2187,2136,2790,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:23:12','','0000-00-00 00:00:00'),(4464,0,0,2162,2110,2749,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:29:53','','0000-00-00 00:00:00'),(4466,0,0,2181,2130,2780,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----FEW YRS OFF AND ON ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:36:43','','0000-00-00 00:00:00'),(4468,0,0,2181,2130,2780,0,0,NULL,'','HIST','ZZZ','Remark','<p>headache with giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:38:18','','0000-00-00 00:00:00'),(4469,0,0,2181,2130,2780,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--wnl</p>\n\n<p>Stabilomtry--reduced SS score</p>\n\n<p>vng--central variety of nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:38:30','darshan','2025-11-08 15:04:35'),(4470,0,0,2173,2122,2765,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:41:28','','0000-00-00 00:00:00'),(4472,0,0,2024,139,2747,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P><BR />\r\nINCISION AND DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 08/11/2025 UNDER SPINAL&nbsp; ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-08 13:42:30','mo','2025-11-09 12:09:47'),(4473,0,0,2024,139,2747,0,0,NULL,'','OTNOTE','','','<p>- PERIANAL ABSCESS AT, 1 O&#39;CLOCK POSITION</p>\r\n\r\n<p>- INCISION KEPT over abscess cavity</p>\r\n\r\n<p>- ABSCESS CAVITY CONNECTED WITH ANAL CANAL AT 12 O&#39;CLOCK POSITION</p>\r\n\r\n<p>- WHOLE PUS SLOUGH&nbsp;DRAINAGE</p>\r\n\r\n<p>- TRACK AND CAVITY CLEAN WITH SCOOPING</p>\r\n\r\n<p>- CAVITY CLEAN WITH BETADINE ,H2O2 AND SALINE</p>\r\n\r\n<p>- HEMOSTASIS ACHIEVED&nbsp;</p>\r\n\r\n<p>- SETON KEPT</p>\r\n\r\n<p>- DRESSING KEPT</p>\r\n\r\n<p>- risk of development of fistula in ano explained&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-08 13:42:30','mo','2025-11-09 12:09:47'),(4474,0,0,100,89,2785,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--4-5 episodes of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:44:41','','0000-00-00 00:00:00'),(4475,0,0,532,507,2786,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:47:42','','0000-00-00 00:00:00'),(4476,0,0,2183,2132,2782,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:54:19','','0000-00-00 00:00:00'),(4479,0,0,2163,2111,2750,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-08 13:55:43','','0000-00-00 00:00:00'),(4481,0,0,2162,2110,2749,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-08 14:00:21','','0000-00-00 00:00:00'),(4482,0,0,2178,2127,2773,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration postional giddiness without any cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 14:05:03','','0000-00-00 00:00:00'),(4483,0,0,2178,2127,2773,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>stabilomtyr--wnl</p>\n\n<p>vng--right psot canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 14:05:19','darshan','2025-11-08 14:41:40'),(4484,0,0,2178,2127,2773,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 14:05:22','','0000-00-00 00:00:00'),(4485,0,0,2178,2127,2773,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 14:05:48','','0000-00-00 00:00:00'),(4488,0,0,2173,2122,2765,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-08 14:08:58','','0000-00-00 00:00:00'),(4489,0,0,2189,2138,2792,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 14:11:16','','0000-00-00 00:00:00'),(4490,0,0,2180,2129,2778,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of giddiness and black out feeling for few seconds&thinsp;</p>\n\n<p>headache +</p>\n\n<p>occassional fall down</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 14:12:48','darshan','2025-11-08 14:22:48'),(4491,0,0,2190,2139,2794,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of short duration positional giddiness without any cns symproms</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 14:13:33','darshan','2025-11-10 19:02:38'),(4493,0,0,2190,2139,2794,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 YR||','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 14:19:49','','0000-00-00 00:00:00'),(4494,0,0,2190,2139,2794,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dx hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta--wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--Right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 14:20:32','darshan','2025-11-10 19:06:37'),(4495,0,0,2190,2139,2794,0,0,NULL,'','DIAG','ZZZ','Remark','INTERMITTENDT BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 14:20:38','','0000-00-00 00:00:00'),(4497,0,0,2183,2132,2782,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-08 14:24:33','','0000-00-00 00:00:00'),(4498,0,0,2187,2136,2790,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 14:43:17','','0000-00-00 00:00:00'),(4503,0,0,2178,2127,2773,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-08 14:46:40','','0000-00-00 00:00:00'),(4504,0,0,2192,2141,2796,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---YESTERDAY||','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 15:08:33','','0000-00-00 00:00:00'),(4505,0,0,2192,2141,2796,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset giddiness with nausea and vomiting&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 15:10:48','darshan','2025-11-08 15:18:57'),(4506,0,0,2192,2141,2796,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right acute partial vestibular deficit</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 15:11:03','darshan','2025-11-08 15:20:42'),(4507,0,0,2192,2141,2796,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ACUTE PARTIAL VESTIBULAR DEFICIT','','',0,'0000-00-00 00:00:00','darshan','2025-11-08 15:11:16','','0000-00-00 00:00:00'),(4509,0,0,2187,2136,2790,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-08 15:11:36','','0000-00-00 00:00:00'),(4510,0,0,2195,141,2801,0,0,NULL,'','DISCDIAG','','','<P><STRONG>RIGHT SIDE OPEN CRUSH WOUND WITH TIBIALIS ANTERIOR TENDON FULLY TEAR</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-08 22:26:32','mo','2025-11-09 12:28:06'),(4511,0,0,2195,141,2801,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-08 22:26:32','mo','2025-11-09 12:28:06'),(4512,0,0,2195,141,2801,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 20 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:GRINDER INJURY AT WORKING SITE AROUND 3 PM<BR />\r\nC/O: RIGHT LEG INJURY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BLEEDING FROM THAT SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;PAIN</P>\r\n\r\n<P>O/E: CLW PRESENT AT ANTERIOR ASPECT OF RIGHT LOWER LEG</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; TENDON TEAR PRESENT&nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DISTAL PULSATION PRESENT</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE LAST 1 HOUR FOR THAT&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>X-RAY RIGHT TIBIA AP/LATERAL DONE ON 8/11/2025</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-77/MIN, BP-100/70MMHG, SPO2-98% ON RA, RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>HYPOTENSION CORRECTED WITH FLUID SUPPLIMENT<BR />\r\nWOUND DEBRIDEMENT TENDON EXPLORATION TIBIALIS ANTERIOR END TO END REPAIR WOUND CLOSURE DONE BY DR SAGAR KHANPARA ON 08/11/2025 UNDER LOCAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-08 22:26:32','mo','2025-11-09 12:28:06'),(4513,0,0,2195,141,2801,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:&nbsp;</P>\r\n\r\n<P>WOUND DEBRIDEMENT TENDON EXPLORATION TIBIALIS ANTERIOR END TO END REPAIR WOUND CLOSURE DONE BY DR SAGAR KHANPARA ON 08/11/2025 UNDER LOCAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-08 22:26:32','mo','2025-11-09 12:28:06'),(4514,0,0,2195,141,2801,0,0,NULL,'','OTNOTE','','','<p>- under local aneasthesia and under aap paint and drape done for right leg&nbsp;</p>\r\n\r\n<p>- wound debridement done</p>\r\n\r\n<p>- tendon exploration done&nbsp;</p>\r\n\r\n<p>- right tibialis anterior tendon fully tear seen</p>\r\n\r\n<p>- tendon end to end repair done&nbsp;</p>\r\n\r\n<p>- wound closure done&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-08 22:26:32','mo','2025-11-09 12:28:06'),(4515,0,0,2195,141,2801,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS ON 14/11/2025</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-08 22:26:32','mo','2025-11-09 12:28:06'),(4516,0,0,2195,141,2801,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ MIKACIN</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DICLO</P>\r\n\r\n<P>INJ TT</P>\r\n\r\n<P>TAB BRATOS PT</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-08 22:26:32','mo','2025-11-09 12:28:06'),(4517,0,0,2198,142,2806,0,0,NULL,'','DISCDIAG','','','<P><STRONG>RIGHT SIDE CRUSH THUMB INJURY WITH AUTOAMPUTED OF 75% OF DISTAL PHALYNX</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 00:22:14','mo','2025-11-09 12:36:55'),(4518,0,0,2198,142,2806,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-09 00:22:14','mo','2025-11-09 12:36:55'),(4519,0,0,2198,142,2806,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 43 YEARS OLD MALE&nbsp; PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:BIKE CHAIN INJURY AROUND 6 PM F&#39;BY&nbsp;<BR />\r\nC/O:RIGHT THUMB CRUSH INJURY&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PAIN&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BLEEDING FROM THAT SITE</P>\r\n\r\n<P>O/E :&nbsp; AUTO AMPUTATION OF DISTAL PART OF RIGHT THUMB DISTAL SKIN &AMP; MUSCLES LOSS PRESENT</P>\r\n\r\n<P>SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>X-RAY RIGHT THUMB AP/LAT/OBLIQUE DONE ON 8/11/2025&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-69/MIN, BP-114/70MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nWOUND DEBRIDEMENT ,RIGHT DISTAL PHALYNX AMPUTATION , WOUND CLOSURE DONE BY DR SAGAR KHANPARA&nbsp;ON 08/11/2025 UNDER LOCAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>POST OP X-RAY RIGHT AP/LATERAL DONE ON 8/11/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 00:22:14','mo','2025-11-09 12:36:55'),(4520,0,0,2198,142,2806,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS ON 14/11/2025&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 00:22:14','mo','2025-11-09 12:36:55'),(4521,0,0,2198,142,2806,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ. PIPZO&nbsp;</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ.PANTO</P>\r\n\r\n<P>INJ.TT</P>\r\n\r\n<P>INJ. DICLO</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 00:22:14','mo','2025-11-09 12:36:55'),(4522,0,0,2188,140,2793,0,0,NULL,'','DISCDIAG','','','<P><STRONG>GB PERFORATION</STRONG></P>\r\n\r\n<P><STRONG>LOCALISED BILLIARY PERITONITIS</STRONG></P>\r\n\r\n<P><STRONG>OBSTRUCTIVE JAUNDICE</STRONG></P>\r\n\r\n<P><STRONG>K/C/O HTN,&nbsp;TRIGEMINAL NEURALGIA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 01:28:15','mo','2025-11-10 12:54:16'),(4523,0,0,2188,140,2793,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O: FOR OBSTRUCTIVE JAUNDICE DUE TO CHOLEDOCHOLITHIASIS&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; (ERCP + BILIARY SPHINCTEROCTOMY + BALLON SPHINCTEROPLASTY + CBD STONE REMOVAL + CBD STENTING&nbsp;&nbsp;DONE) WITH SEVERE ACUTE CALCULUS CHOLECYSTITISFOR ADMITTED AT DR GUNJAN JOSHI&#39;S HOSPITAL FROM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;07/11/2025 TO 08/11/2025</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 01:28:15','mo','2025-11-10 12:54:16'),(4524,0,0,2188,140,2793,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 64 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN SINCE 10-12 YR,TRIGEMINAL NEURALGIA SINCE 5-7 YEAR<BR />\r\nC/O:ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FEVER ON &AMP; OFF</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 5-6 DAYS FOR THAT PT PRIMARY CONSULTED AT LANDMARK HOSPITAL WHERE ERCP DONE AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>PRE OP PROFILE DONE 07/11/2025</P>\r\n\r\n<P>CT ABDOMEN+ PELVIS (P+C) S/O CHANGES OF ACUTE CALCULUS CHOLECYSTITIS</P>\r\n\r\n<P>ERCP DONE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-68/MIN, BP-130/82MMHG, SPO2-97% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.JAYANT MEHTA&nbsp;(MD MEDICINE &AMP; INTENSIVIST)</P>\r\n\r\n<P>EMERGENCY LAPAROSCOPIC CHOLECYSTECTOMY&nbsp;DONE BY DR PRATAPSINH DODIYA ON 8/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>REQUIRED REPEAT BLOOD INVESTIGATION DONE WHICH WAS IMPROVED.&nbsp;</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\nSO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 01:28:15','mo','2025-11-10 12:54:16'),(4525,0,0,2188,140,2793,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>AVOID SPICY&nbsp;AND OILY FOOD</P>\r\n\r\n<P>AVOID HEAVY STRAIN FOR FEW WEEKS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>STENT REMOVAL AFTER 1 MONTH</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 01:28:15','mo','2025-11-10 12:54:16'),(4526,0,0,2188,140,2793,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MEROMAC</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ TRAMADOL</P>\r\n\r\n<P>INJ VIT K</P>\r\n\r\n<P>TAB UDILIV</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 01:28:15','mo','2025-11-10 12:54:16'),(4527,0,0,2063,134,2599,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 10:15:04','mo','2025-11-09 10:31:35'),(4528,0,0,2063,134,2599,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n\r\n<P>TAKE PLENTY OF LIQUIDS</P>\r\n\r\n<P>CONTINUE OWN MEDICINE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 10:15:04','mo','2025-11-09 10:31:35'),(4529,0,0,2063,134,2599,0,0,NULL,'','TREATDISC_TI','','','<P>CAP PANTODAC DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......(5)</P>\r\n\r\n<P>TAB FDSON MP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(10)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:</P>\r\n\r\n<P>TAB LIPITAS GOLD (20MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 10:31:08','mo','2025-11-09 10:31:35'),(4530,0,0,2078,136,2624,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>MOBILIZATION +</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 10:37:49','mo','2025-11-09 12:14:00'),(4531,0,0,2078,136,2624,0,0,NULL,'','TREATDISC_TI','','','<P>TAB AKT-4&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;4 TAB&nbsp; &nbsp; &nbsp; &nbsp; BEFORE BREAKFAST&nbsp; &nbsp; &nbsp; &nbsp; ............(30 KITS)</P>\r\n\r\n<P>TAB CEFICOOL-CV (325MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...........(14)</P>\r\n\r\n<P>TAB LEVOFLOX(750MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........(7)</P>\r\n\r\n<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...........(30)</P>\r\n\r\n<P>TAB PULMOCLEAR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;............(60)</P>\r\n\r\n<P>TAB GIMMY M1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ............(60)</P>\r\n\r\n<P>TAB DAPACOOL-S&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .............(30)</P>\r\n\r\n<P>CAP ECOTOR-AS(10/75)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...........(30)</P>\r\n\r\n<P>TAB FEBIRED&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;............(30)</P>\r\n\r\n<P>PROTIHIR POWDER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp;2TSF/WITH MILK&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 10:47:27','mo','2025-11-09 12:14:00'),(4532,0,0,2024,139,2747,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......(10)</P>\r\n\r\n<P>TAB METROGYL-ER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ......(10)</P>\r\n\r\n<P>TAB ULPAN D&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;......(10)</P>\r\n\r\n<P>TAB ZERODOL-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(10)</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp; &nbsp; 10ML HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(1)</P>\r\n\r\n<P>LOX JELLY 2%&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE DEFEACATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......(1)</P>\r\n\r\n<P>SUCRAL ANO CREAM&nbsp; &nbsp; &nbsp; &nbsp; L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER DEFECATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 12:00:21','mo','2025-11-09 12:09:47'),(4533,0,0,2195,141,2801,0,0,NULL,'','CONDONADDMISSION','','','<P>NO FRESH BLEEDING</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 12:21:02','mo','2025-11-09 12:28:06'),(4534,0,0,2195,141,2801,0,0,NULL,'','TREATDISC_TI','','','<P>TAB FUROLIV (500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......(10)</P>\r\n\r\n<P>TAB LINOGRAM (600)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......(10)</P>\r\n\r\n<P>TAB METRO (600)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(10)</P>\r\n\r\n<P>CAP RABEC-L&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp;........(10)</P>\r\n\r\n<P>TAB TENDOFILL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; ........(10)</P>\r\n\r\n<P>TAB ACETLE-SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; .........(10)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 12:21:02','mo','2025-11-09 12:28:06'),(4535,0,0,2198,142,2806,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>WOUND DEBRIDEMENT ,RIGHT DISTAL PHALYNX AMPUTATION , WOUND CLOSURE DONE BY DR SAGAR KHANPARA&nbsp;ON 08/11/2025 UNDER LOCAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 12:36:52','mo','2025-11-09 12:36:55'),(4536,0,0,2198,142,2806,0,0,NULL,'','OTNOTE','','','<p>- under local aneasthesia and under aap paint &amp; drape done for right hand&nbsp;</p>\r\n\r\n<p>- wound debridement done</p>\r\n\r\n<p>- rest right thumb distal phalynx excised</p>\r\n\r\n<p>- wound closure done</p>\r\n\r\n<p>- dressing put</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 12:36:52','mo','2025-11-09 12:36:55'),(4537,0,0,2198,142,2806,0,0,NULL,'','TREATDISC_TI','','','<P>TAB FUROLIV (500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(10)</P>\r\n\r\n<P>TAB LINOGLAZE (600)&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(10)</P>\r\n\r\n<P>TAB TROFENAC SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........(10)</P>\r\n\r\n<P>CAP RABEC-L&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; .........(10)</P>\r\n\r\n<P>TAB NEUKIND NT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 7PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......(5)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-09 12:36:52','mo','2025-11-09 12:36:55'),(4538,0,0,2212,2157,2830,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:00:49','darshan','2025-11-10 11:02:58'),(4539,0,0,2212,2157,2830,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>HIT---bilateral mild abnormal&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:05:18','','0000-00-00 00:00:00'),(4540,0,0,1375,1335,2821,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:13:37','','0000-00-00 00:00:00'),(4542,0,0,1375,1335,2821,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:15:00','','0000-00-00 00:00:00'),(4543,0,0,1654,1609,2832,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:20:24','','0000-00-00 00:00:00'),(4545,0,0,2215,2160,2836,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----2 WEEKS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:30:40','','0000-00-00 00:00:00'),(4546,0,0,2215,2160,2836,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:31:17','','0000-00-00 00:00:00'),(4547,0,0,2215,2160,2836,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--wnl</p>\n\n<p>vng--right post&thinsp; canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:31:31','darshan','2025-11-10 13:19:01'),(4548,0,0,2215,2160,2836,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:31:36','','0000-00-00 00:00:00'),(4549,0,0,2188,140,2793,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 11:31:42','mo','2025-11-10 12:54:16'),(4550,0,0,2188,140,2793,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.CEFTUM (500)&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS..............(10)</P>\r\n\r\n<P>TAB.ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFIRE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS..............(10)</P>\r\n\r\n<P>TAB.SERODOL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS..............(10)</P>\r\n\r\n<P>TAB.UDILIV (300)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS..............(10)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB.OXCARB (300)&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1</P>\r\n\r\n<P>TAB.NEBUA-D&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 11:31:42','mo','2025-11-10 12:54:16'),(4551,0,0,2217,2162,2840,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up&thinsp; case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:33:28','','0000-00-00 00:00:00'),(4552,0,0,2210,2155,2826,0,0,NULL,'','HIST','ZZZ','Remark','<p>continuous tinnitus without any deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:37:06','darshan','2025-11-10 12:53:59'),(4553,0,0,2210,2155,2826,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR TINNITUS ----1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:37:16','','0000-00-00 00:00:00'),(4554,0,0,2210,2155,2826,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---i/n</p>\n\n<p>pta---wnl</p>\n\n<p>OAE---bilateral&thinsp;&thinsp;reffered</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:37:22','darshan','2025-11-10 12:54:15'),(4555,0,0,12,12,2827,0,0,NULL,'','HIST','ZZZ','Remark','<p>throat pain---2-3 days</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:39:53','','0000-00-00 00:00:00'),(4556,0,0,12,12,2827,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested and granular</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:40:01','','0000-00-00 00:00:00'),(4557,0,0,426,404,2828,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:43:59','','0000-00-00 00:00:00'),(4558,0,0,2211,2156,2829,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up&thinsp; case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:49:06','','0000-00-00 00:00:00'),(4559,0,0,2222,2167,2847,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotatory feeling when pt is getting out of bed and lying donw in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:53:27','darshan','2025-11-10 11:56:19'),(4560,0,0,2222,2167,2847,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2 WEEKS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:55:38','','0000-00-00 00:00:00'),(4561,0,0,2222,2167,2847,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:56:35','darshan','2025-11-10 12:00:18'),(4562,0,0,2222,2167,2847,0,0,NULL,'','DIAG','ZZZ','Remark','SUBSIDED BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 11:56:40','','0000-00-00 00:00:00'),(4566,0,0,2222,2167,2847,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:00:59','','0000-00-00 00:00:00'),(4567,0,0,1662,1617,2856,0,0,NULL,'','HIST','ZZZ','Remark','<p>fofflow up case--maenvuer not done&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:04:09','','0000-00-00 00:00:00'),(4568,0,0,1662,1617,2856,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:04:46','','0000-00-00 00:00:00'),(4570,0,0,1662,1617,2856,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MANVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:05:34','','0000-00-00 00:00:00'),(4571,0,0,2229,2174,2860,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:08:31','','0000-00-00 00:00:00'),(4572,0,0,2227,2172,2858,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:14:55','darshan','2025-11-10 12:18:24'),(4574,0,0,2227,2172,2858,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----3 .5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:17:48','','0000-00-00 00:00:00'),(4575,0,0,2227,2172,2858,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hti-nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:18:37','darshan','2025-11-10 13:30:50'),(4576,0,0,2227,2172,2858,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:18:41','','0000-00-00 00:00:00'),(4577,0,0,2227,2172,2858,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:19:20','','0000-00-00 00:00:00'),(4579,0,0,2203,2149,2815,0,0,NULL,'','HIST','ZZZ','Remark','<p>emergancy&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:19:55','','0000-00-00 00:00:00'),(4580,0,0,2214,2159,2834,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-6 MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:27:08','','0000-00-00 00:00:00'),(4581,0,0,2214,2159,2834,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling on change of posture</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:27:57','','0000-00-00 00:00:00'),(4582,0,0,2214,2159,2834,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabiloemtry---wnl</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:28:12','darshan','2025-11-10 13:39:37'),(4586,0,0,2219,2164,2842,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---insomania</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:30:53','','0000-00-00 00:00:00'),(4587,0,0,2188,140,2793,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX;</P>\r\n\r\n<P>EMERGENCY LAPAROSCOPIC CHOLECYSTECTOMY&nbsp;DONE BY DR PRATAPSINH DODIYA ON 8/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 12:38:38','mo','2025-11-10 12:54:16'),(4588,0,0,2188,140,2793,0,0,NULL,'','OTNOTE','','','<p>per-op findings:</p>\r\n\r\n<p>-thick wall distended gb</p>\r\n\r\n<p>-omentum adherent with gb</p>\r\n\r\n<p>-gangrenous changes in gb</p>\r\n\r\n<p>-perihepatic biliary peritonitis</p>\r\n\r\n<p>-liver surface normal</p>\r\n\r\n<p>-supraumbilical port insertion done after creating pneumoperitoneum with verres needle</p>\r\n\r\n<p>-rest of&nbsp; port insertion done under vision</p>\r\n\r\n<p>-omentum densly adherent with gb separated carefully</p>\r\n\r\n<p>-over distended thick wall gb depression done</p>\r\n\r\n<p>-marked inflammation at calot&#39;s tringle</p>\r\n\r\n<p>-cystic artery and cystic duct dissected carefully</p>\r\n\r\n<p>- cystic duct double clipped and cut</p>\r\n\r\n<p>-cystic artery clipped and cut</p>\r\n\r\n<p>-gb separated from liver carefully</p>\r\n\r\n<p>-gb removed in endobag in epigastric port</p>\r\n\r\n<p>-saline wash given</p>\r\n\r\n<p>-hemostasis checked</p>\r\n\r\n<p>-romo adk no-28 kept</p>\r\n\r\n<p>-10 mm port sheath closed with vicryl 3-0</p>\r\n\r\n<p>-skin closed with skin steppler</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 12:38:38','mo','2025-11-10 12:54:16'),(4589,0,0,2234,2179,2867,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:39:37','','0000-00-00 00:00:00'),(4591,0,0,2225,2170,2852,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling on change of posture</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:49:29','darshan','2025-11-10 12:50:24'),(4592,0,0,2225,2170,2852,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---MANY YRS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:49:48','','0000-00-00 00:00:00'),(4593,0,0,2225,2170,2852,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry---wnl</p>\n\n<p>vng-right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:50:43','darshan','2025-11-10 13:50:02'),(4595,0,0,2225,2170,2852,0,0,NULL,'','DIAG','ZZZ','Remark','INTERMITTENDT BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:50:53','','0000-00-00 00:00:00'),(4596,0,0,221,208,2855,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 12:52:50','','0000-00-00 00:00:00'),(4597,0,0,2237,2182,2870,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---5 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:00:56','','0000-00-00 00:00:00'),(4598,0,0,2237,2182,2870,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:01:22','','0000-00-00 00:00:00'),(4599,0,0,2237,2182,2870,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry-reduced vestibular score</p>\n\n<p>vng--right post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:01:44','darshan','2025-11-10 13:55:39'),(4600,0,0,2237,2182,2870,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:01:59','','0000-00-00 00:00:00'),(4601,0,0,1720,1675,2874,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:09:14','','0000-00-00 00:00:00'),(4603,0,0,1720,1675,2874,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:10:12','','0000-00-00 00:00:00'),(4604,0,0,2226,2171,2854,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow&thinsp; up case---recurrence of imbalance&thinsp;</p>\n\n<p>headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:13:42','','0000-00-00 00:00:00'),(4605,0,0,2215,2160,2836,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:19:27','','0000-00-00 00:00:00'),(4607,0,0,2231,2176,2862,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:25:38','','0000-00-00 00:00:00'),(4608,0,0,2231,2176,2862,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling&thinsp; with sense of imbalance continuous</p>\n\n<p>assocaited with nausea and vomiting&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:26:21','','0000-00-00 00:00:00'),(4609,0,0,2231,2176,2862,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dx hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----bialtel high freq severe sn deafness</p>\n\n<p>stabiloemtryr--reduced vestibular score</p>\n\n<p>vng--right acute partial vestibular deficit</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:26:31','darshan','2025-11-10 14:10:56'),(4610,0,0,2231,2176,2862,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ACUTE PARTIAL VESTIBULAR DEFICIT','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:26:43','','0000-00-00 00:00:00'),(4612,0,0,2233,2178,2864,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo 1 week</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:34:11','','0000-00-00 00:00:00'),(4614,0,0,2214,2159,2834,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:40:17','','0000-00-00 00:00:00'),(4616,0,0,2215,2160,2836,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:42:15','','0000-00-00 00:00:00'),(4618,0,0,2227,2172,2858,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:47:31','','0000-00-00 00:00:00'),(4619,0,0,2225,2170,2852,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:50:15','','0000-00-00 00:00:00'),(4621,0,0,2239,2184,2873,0,0,NULL,'','CC','ZZZ','Remark','THROAT PAIN----1 MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:53:21','','0000-00-00 00:00:00'),(4622,0,0,2239,2184,2873,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested and granular</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:53:31','','0000-00-00 00:00:00'),(4623,0,0,2237,2182,2870,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 13:56:08','','0000-00-00 00:00:00'),(4626,0,0,2214,2159,2834,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-10 14:01:20','','0000-00-00 00:00:00'),(4628,0,0,2225,2170,2852,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-10 14:12:18','','0000-00-00 00:00:00'),(4629,0,0,2240,2185,2875,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR ITCHING --1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 14:13:51','','0000-00-00 00:00:00'),(4631,0,0,2237,2182,2870,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-10 14:15:26','','0000-00-00 00:00:00'),(4632,0,0,2242,2186,2877,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurernce of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 14:20:38','','0000-00-00 00:00:00'),(4633,0,0,896,864,2878,0,0,NULL,'','HIST','ZZZ','Remark','<p>throat pain&thinsp;</p>\n\n<p>nasal pain---irritation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 14:26:59','','0000-00-00 00:00:00'),(4634,0,0,2201,143,2811,0,0,NULL,'','DISCDIAG','','','<P><STRONG>RUPTURED SPLENIC ABSCESS</STRONG></P>\r\n\r\n<P><STRONG>PERITONITIS WITH PELVIC COLLECTION</STRONG></P>\r\n\r\n<P><STRONG>LEFT SIDE PLEURAL EFFUSION</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 14:45:41','mo','2025-11-20 14:18:33'),(4635,0,0,2201,143,2811,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 22 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:VOMITING (4-5 EPISODE/DAY)BEFORE 3 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;LOOSE MOTION(3-4 TIMES/DAY0 BEFORE 3 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FEVER ON AND OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; LEFT SIDE CHEST PAIN</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 10 DAYS FOR THAT PATIENT PRIMARY ADMITTED AT KANERIA HOSPITAL JUNAGAH AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>BRUCELLA IGM DONE ON 4/11/2025 WHICH S/O: -VE</P>\r\n\r\n<P>WIDAL TUBE TEST DONE ON 4/11/2025 WHICH S/O: +VE</P>\r\n\r\n<P>BLOOD C/S DONE ON 1/11/2025 WHICH S/O: KLEIBSEILLA OXYTOCA</P>\r\n\r\n<P>MDCT ABDOMEN + PELVIS DONE ON 1/11/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>USG ABDOMEN DONE ON31/10/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>USG CHEST DONE ON 20/10/2025 WHICH S/O: LEFT SIDE PLEURAL EFFUSION&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-101.4&#39;F, PR-114/MIN, BP-120/72MMHG, SPO2-96% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>9/11/2025</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF HIGH GRADE FEVER BLOOD C/S SENT</P>\r\n\r\n<P>IN VIEW OF SPLEINIC CYST REFERENCE OF DR.PRATAPSINH DODIYA DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10/11/2025,</P>\r\n\r\n<P>USG ABDOMEN DONE WHICH S/O: SPLENIC ABSCESS ? RUPTURE,LEFT SIDE PLEURAL EFFUSION SEEN&nbsp;</P>\r\n\r\n<P>REVIEW OF DR PRATAPSINH DODIYA DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>IN VIEW OF LOW HB 1 UNIT RCC TRANSFUSED (BGRH- O +VE)</P>\r\n\r\n<P>BLOOD C/S S/O; NO GROWTH IN INTRIM REPORT</P>\r\n\r\n<P>ECG DONE FOR C/O CHEST PAIN WHICH WAS WNL</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11/11/2025,</P>\r\n\r\n<P>CHEST X-RAY DONE WHICH S/O LEFT SIDE PLEURAL EFFUSION&nbsp;</P>\r\n\r\n<P>PLANNED FOR CT GUIDED SPLENIC ABSCESS ASPIRATION BUT ATTEMPT FAILED DUE TO BLEEDING.</P>\r\n\r\n<P>1 UNIT RCC TRANSFUSED</P>\r\n\r\n<P>IN VIEW OF CONTINUOUS FEBRILE CONDITION AND RAISED CRP, ANTIBIOTIC STEPPED UP.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVES.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12/11/2025,</P>\r\n\r\n<P>USG GUIDED PIGTAIL CATHETER INSERTION DONE BY DR.PRATAPSINH DODIYA IN ICU UNDER OBSERVATION WITH ALL ASEPTIC PRECAUTION&nbsp;</P>\r\n\r\n<P>1 UNIT FFP TRANSFUSED WITHOUT ANY ALLERGIC REACTION.</P>\r\n\r\n<P>BUT DURING 2ND UNIT FFP TRANSFUSION PATIENT DEVELOP ALLERGIC REACTION SO DISCARD 2ND UNIT AND IMEDIALTELY ANTI HISTAMINIC TREAMENT GIVEN AND OBSERVATION TILL PATIENT BEING STABLE&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVES.</P>\r\n\r\n<P>IN VIEW OF LEFT PLEURAL EFFUSION AND BORDERLINE SATURATION, SPIROMETRY STARTED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13/11/2025,</P>\r\n\r\n<P>PUS GENE XPERT SENT WHICH IS NEGATIVE</P>\r\n\r\n<P>SPIROMETRY CONTINUE</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14/11/2025,</P>\r\n\r\n<P>USG ABDOMEN &AMP; THORAX&nbsp;DONE ; REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>PUS CS SENT WHICH S/O NO GROWTH</P>\r\n\r\n<P>SPIROMETRY CONTINUE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15/11/2025</P>\r\n\r\n<P>PATIENT SHOWS NO ANY SIGNIFICANT IMPROVEMENT AND HAVING COINTINUOUS HIGH GRADE FEVER, SO DECIDED FOR SURGICAL MANAGEMENT.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP PREPARATION DONE.</P>\r\n\r\n<P>2D ECHO DONE BY DR TUSHAR BHATTI S/O: LVEF-60%, OTHER FINDINGS ARE ACCORDING TO REPORT.</P>\r\n\r\n<P>LAPAROSCOPIC SPLEENECTOMY + PERITONEAL LAVAGE DONE BY DR PRATAPSINH DODIYA &AMP; DR AMIT ACHARYA UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n\r\n<P>PIG TAIL CATHETER REMOVED.</P>\r\n\r\n<P>2 UNIT RCC AND 2 UNIT FFP TRANSFUSED&nbsp;INTRA OT&nbsp;WITHOUT ANY REACTION.</P>\r\n\r\n<P>POST OP PATIENT SHIFTED TO ICU FOR FURTHER OBSERVATION.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16/11/2025</P>\r\n\r\n<P>REQUIRED REPEAT BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>CHEST X-RAY DONE</P>\r\n\r\n<P>FURTHER ICU STAY UNEVENTFUL SO PT SHIFTED TO WARD</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17/11/2025</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>USG ABDOMEN &AMP; USG CHEST DONE&nbsp;</P>\r\n\r\n<P>RYLE&#39;S TUBE REMOVED AND ORAL SIPS STARTED, PATIENT TOLERATED WELL.</P>\r\n\r\n<P>IN VIEW OF HYPOPROTEINEMIA&nbsp;&nbsp;INJ ALBUMIN GIVEN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18/11/2025</P>\r\n\r\n<P>CHEST X RAY DONE WHICH S/O; LEFT SIDE PLEURAL EFFUSION SO LEFT SIDE PLEURAL FLUID TAPPING (450ML) DONE BY DR PRATAPSINH DODIYA IN ICU UNDER OBSERVATION WITH ALL ASEPTIC PRECAUTION&nbsp;</P>\r\n\r\n<P>PLEURAL FLUID C/S SENT</P>\r\n\r\n<P>FOLEY&#39;S CATHETER REMOVED, URINE OUTPUT WAS ADEQUATE.</P>\r\n\r\n<P>BLOOD REPORTS WERE IMPROVED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19/11/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD, HAVING NO ANY FRESH COMPLAINTS.</P>\r\n\r\n<P>ORAL DIET TOLERATING.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20/11/2025,</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 14:45:41','mo','2025-11-20 14:18:33'),(4636,0,0,2201,143,2811,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS WITH BLOOD INVESTIGATION CBC, CRP.</P>\r\n\r\n<P>DRAIN CARE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 14:45:41','mo','2025-11-20 14:18:33'),(4637,0,0,2201,143,2811,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MERO</P>\r\n\r\n<P>INJ TIGECYCLIN</P>\r\n\r\n<P>TAB METRO</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>TAB BACTRIM DS</P>\r\n\r\n<P>INJ VIT K</P>\r\n\r\n<P>2 UNIT RCC</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>TAB SPORLAC&nbsp;</P>\r\n\r\n<P>1 UNIT FFP&nbsp;</P>\r\n\r\n<P>INJ AVIL</P>\r\n\r\n<P>INJ HYDROCORT</P>\r\n\r\n<P>INJ DYNAPAR</P>\r\n\r\n<P>TAB COLOSPA X</P>\r\n\r\n<P>CAP ENUFF</P>\r\n\r\n<P>TAB CLONOTRIL</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>INJ LASIX</P>\r\n\r\n<P>INJ ALBUMIN</P>\r\n\r\n<P>BUPRAGESIC PATCH</P>\r\n\r\n<P>INJ BUSCOPAN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 14:45:41','mo','2025-11-20 14:18:33'),(4638,0,0,2209,144,2825,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE APPENDICITIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 14:54:06','mo','2025-11-11 11:56:00'),(4639,0,0,2209,144,2825,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 14 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;VOMITING(ONCE)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;BODYACHE</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 1 WEEK FOR THAT PATIENT PRIMARY CONSULTED TO FAMILY PHYSICIAN AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN DONE ON 28/10/2025 WHICH S/O: INFLAMMED APPENDIX&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-73/MIN, BP-116/76MMHG, SPO2-98% ON RA, RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nLAPAROSCOPIC APPENDICECTOMY DONE BY DR PRATAPSINH DODIYA ON 10/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 14:54:06','mo','2025-11-11 11:56:00'),(4640,0,0,2209,144,2825,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>LAPAROSCOPIC APPENDICECTOMY DONE BY DR PRATAPSINH DODIYA ON 10/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 14:54:06','mo','2025-11-11 11:56:00'),(4641,0,0,2209,144,2825,0,0,NULL,'','OTNOTE','','','<p>- thick wall,inflammed appendix</p>\r\n\r\n<p>- no meckel&#39;s diverticula</p>\r\n\r\n<p>- appendicectomy done</p>\r\n\r\n<p>- hemostasis achieved</p>\r\n\r\n<p>- 5 mm port sheath closed with vicryl(3-0)</p>\r\n\r\n<p>- skin closed with ethilon(4-0)</p>\r\n\r\n<p>- dressing kept</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 14:54:06','mo','2025-11-11 11:56:00'),(4642,0,0,2209,144,2825,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING&nbsp;</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 14:54:06','mo','2025-11-11 11:56:00'),(4643,0,0,2209,144,2825,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n\r\n<P>NOTE: HPE AWAITED</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 14:54:06','mo','2025-11-11 11:56:00'),(4644,0,0,2209,144,2825,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 14:54:06','mo','2025-11-11 11:56:00'),(4645,0,0,1544,1503,2880,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partial improvement</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 17:17:17','','0000-00-00 00:00:00'),(4646,0,0,1544,1503,2880,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>MRI b=---vascular loop</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 17:18:10','','0000-00-00 00:00:00'),(4647,0,0,1904,1859,2881,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---left ear discharge +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 17:25:57','darshan','2025-11-10 17:27:36'),(4648,0,0,2244,2187,2882,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 17:31:21','','0000-00-00 00:00:00'),(4649,0,0,1657,1612,2883,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 17:34:40','','0000-00-00 00:00:00'),(4650,0,0,2245,2188,2884,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ----MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 17:46:27','','0000-00-00 00:00:00'),(4651,0,0,2245,2188,2884,0,0,NULL,'','CC','ZZZ','Remark','OCCASSIONAL GIDDINESS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 17:46:27','','0000-00-00 00:00:00'),(4652,0,0,2245,2188,2884,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI cervical spine---mild sac compression</p>\n\n<p>stabilometry--wnl</p>\n\n<p>vng--central variety of nystagmus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 17:48:27','darshan','2025-11-10 18:42:37'),(4653,0,0,2245,2188,2884,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache with giddiness&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 17:48:56','','0000-00-00 00:00:00'),(4655,0,0,550,524,2885,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 17:58:03','','0000-00-00 00:00:00'),(4656,0,0,550,524,2885,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>ct brain with angiography---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 17:58:16','darshan','2025-11-10 19:58:04'),(4658,0,0,2246,2189,2887,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of giddiness with fall down without any cns symptoms&thinsp;</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 18:07:07','darshan','2025-11-10 18:11:26'),(4659,0,0,2246,2189,2887,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3-4 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 18:09:44','','0000-00-00 00:00:00'),(4660,0,0,2246,2189,2887,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>Mri brain--nad</p>\n\n<p>cardialogical evaluation done</p>\n\n<p>pta----bilaterl high freq severe sn deafness</p>\n\n<p>stabilometry--reduced ss score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 18:11:37','darshan','2025-11-10 19:15:36'),(4662,0,0,2249,2192,2892,0,0,NULL,'','HIST','ZZZ','Remark','<p>heaviness of head with giddiness feeling&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 18:17:01','','0000-00-00 00:00:00'),(4663,0,0,2249,2192,2892,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>hit---nad</p>\n\n<p>dix hallpike--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 18:17:23','','0000-00-00 00:00:00'),(4665,0,0,2249,2192,2892,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-10 18:18:08','','0000-00-00 00:00:00'),(4667,0,0,2251,2194,2896,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ANKLE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-10 18:18:44','','0000-00-00 00:00:00'),(4668,0,0,2209,144,2825,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZIFI - CV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; ........(10)</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp;........(10)</P>\r\n\r\n<P>TAB AKILOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; ........(10)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 18:27:30','mo','2025-11-11 11:56:00'),(4669,0,0,2250,2193,2894,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---positioanl giddiness&thinsp;</p>\n\n<p>both ear deafness and tinnitus increased&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 18:32:49','','0000-00-00 00:00:00'),(4670,0,0,2250,2193,2894,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike--right torsonal geotropic nystamgus&thinsp;</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 18:33:11','','0000-00-00 00:00:00'),(4671,0,0,2250,2193,2894,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 18:34:21','','0000-00-00 00:00:00'),(4673,0,0,2250,2193,2894,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-10 18:34:34','','0000-00-00 00:00:00'),(4674,0,0,683,653,2902,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----2-3 episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 18:38:15','','0000-00-00 00:00:00'),(4675,0,0,2253,2196,2903,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 18:55:27','','0000-00-00 00:00:00'),(4676,0,0,2253,2196,2903,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotoatyr feeling&thinsp; when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 18:56:05','','0000-00-00 00:00:00'),(4677,0,0,2253,2196,2903,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 18:56:18','darshan','2025-11-10 19:45:35'),(4678,0,0,2253,2196,2903,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 18:56:43','','0000-00-00 00:00:00'),(4679,0,0,2252,2195,2899,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 18:58:43','','0000-00-00 00:00:00'),(4680,0,0,2190,2139,2794,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 19:04:22','','0000-00-00 00:00:00'),(4685,0,0,2190,2139,2794,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVEUR ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-10 19:07:25','','0000-00-00 00:00:00'),(4686,0,0,2255,2199,2907,0,0,NULL,'','CC','ZZZ','Remark','RECURRENCE NASAL BLOCKAGE---MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 19:11:20','','0000-00-00 00:00:00'),(4687,0,0,2255,2199,2907,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose---allergic change&thinsp;</p>\n\n<p>ct pns---sino nasal polypoisis</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 19:11:31','darshan','2025-11-11 13:48:21'),(4689,0,0,2246,2189,2887,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 19:16:41','','0000-00-00 00:00:00'),(4691,0,0,1960,1912,2912,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 19:33:18','','0000-00-00 00:00:00'),(4693,0,0,2246,2189,2887,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-10 19:35:19','','0000-00-00 00:00:00'),(4694,0,0,2253,2196,2903,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 19:46:00','','0000-00-00 00:00:00'),(4697,0,0,2253,2196,2903,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-10 19:54:25','','0000-00-00 00:00:00'),(4698,0,0,2260,2204,2917,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow pu case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 19:56:31','','0000-00-00 00:00:00'),(4700,0,0,2261,2205,2918,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left nose FB white chocolate --removed uneventfully</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 20:29:16','darshan','2025-11-10 20:30:08'),(4701,0,0,2261,2205,2918,0,0,NULL,'','CC','ZZZ','Remark','LEFT NASAL FB ---BEFORE 30-40 MINS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-10 20:29:33','','0000-00-00 00:00:00'),(4702,0,0,2127,138,2691,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 20:36:03','mo','2025-11-11 12:18:23'),(4703,0,0,2127,138,2691,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>TAKE LIGHT DIET</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 20:36:03','mo','2025-11-11 12:18:23'),(4704,0,0,2201,143,2811,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>LEFT SIDE PERITONEAL DRAIN IN SITU</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 20:40:37','mo','2025-11-20 14:18:33'),(4705,0,0,982,147,2919,0,0,NULL,'','DISCDIAG','','','<P><STRONG>BLEEDING ESOPHAGEAL ULCER (?) VIRAL</STRONG></P>\r\n\r\n<P><STRONG>IN A K/C/O&nbsp;DM II, HTN, IHD(POST PTCA), TEMPORAL ARTERITIS, ANAEMIA, BRONCHIAL ASTHMA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 23:26:15','mo','2025-11-13 20:57:27'),(4706,0,0,982,147,2919,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O: ADMITTED HERE FROM 21-10-2025 TO 25-10-2025, DIAGNOSED AGE, TEMPORAL ARTERITIS.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 23:26:15','mo','2025-11-13 20:57:27'),(4707,0,0,982,147,2919,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 68 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II, HTN, IHD(POST PTCA), TEMPORAL ARTERITIS, ANAEMIA, BRONCHIAL ASTHMA<BR />\r\nC/O: VOMITING (4-5 EPISODE/DAY)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; WATERY DIARRHOEA SINCE MORNING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; INTOLERANCE OF FOOD</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SEVERE GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO FEVER</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ANOREXIA</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 10 DAYS&nbsp;SO PRIMARY CONSULTED TO GP AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>PS EXAMINATION (30/10/2025)</P>\r\n\r\n<P>BLOOD IX (30/10/2025 &AMP; 03/11/2025)</P>\r\n\r\n<P>STOOL OB (30/10/2025) S/O: (++)</P>\r\n\r\n<P>ANA BY IF (30/10/2025) S/O: -VE</P>\r\n\r\n<P>HBA1C:-8.8%</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-99/MIN, BP-140/80MMHG, SPO2-97% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>STOOL R/M DONE ON 11/11/25 WHICH S/O PC: 6-8 CELLS/HPF, RBC: 3-4 CELLS/HPF, OB PRESENT ++++, GIARDIA CYST PRESENT</P>\r\n\r\n<P>GASTROENTEROLOGIST DR RISHIKESH KALARIA&#39;S REFERANCE DONE ON 12/11/2025 AND ALL HIS ADVICE FOLLOWED.</P>\r\n\r\n<P>UGISCOPY &AMP; COLONOSCOPY DONE BY DR RISHIKESH KALARIA AT STERLING HOSPITAL ON 13/11/2025.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\nSO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 23:26:15','mo','2025-11-13 20:57:27'),(4708,0,0,982,147,2919,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>AVOID SPICY FOOD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 23:26:15','mo','2025-11-13 20:57:27'),(4709,0,0,982,147,2919,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ ZOSTUM</P>\r\n\r\n<P>INJ FORCAN</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ.H.MIXTARD</P>\r\n\r\n<P>TAB MEDITREX</P>\r\n\r\n<P>TAB DAPARYL</P>\r\n\r\n<P>TAB VPADOZ</P>\r\n\r\n<P>TAB LUPIHEME</P>\r\n\r\n<P>TAB FOLVITE</P>\r\n\r\n<P>TAB OMNACORTIL</P>\r\n\r\n<P>CANDID MOUTH PAINT</P>\r\n\r\n<P>PEG LEG BOWEL PREP</P>\r\n\r\n<P>INJ NEXPROFAST DRIP</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-10 23:26:15','mo','2025-11-13 20:57:27'),(4710,0,0,534,509,2923,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---mild giddidness +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 10:55:03','','0000-00-00 00:00:00'),(4711,0,0,534,509,2923,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 10:55:06','','0000-00-00 00:00:00'),(4712,0,0,534,509,2923,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 10:55:48','','0000-00-00 00:00:00'),(4714,0,0,534,509,2923,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAEWNVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 10:56:05','','0000-00-00 00:00:00'),(4715,0,0,1738,1692,2922,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---partaily better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 10:58:02','','0000-00-00 00:00:00'),(4716,0,0,1738,1692,2922,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 10:58:40','','0000-00-00 00:00:00'),(4718,0,0,1738,1692,2922,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 10:59:17','','0000-00-00 00:00:00'),(4719,0,0,2262,2206,2920,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR TINNITUS ----2.5-3 MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:06:20','','0000-00-00 00:00:00'),(4720,0,0,2262,2206,2920,0,0,NULL,'','HIST','ZZZ','Remark','<p>continuous tinnitus left ear&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:07:04','','0000-00-00 00:00:00'),(4721,0,0,2262,2206,2920,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>BTM---i/n</p>\n\n<p>pta---left high frqe severe sn deafness(o)(</p>\n\n<p>OAE--bialtlre poor coralation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:07:31','darshan','2025-11-11 12:53:00'),(4723,0,0,1780,1736,2932,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:12:47','','0000-00-00 00:00:00'),(4725,0,0,1780,1736,2932,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER---1 WEEK','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:14:20','','0000-00-00 00:00:00'),(4726,0,0,2269,2213,2934,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:23:17','','0000-00-00 00:00:00'),(4727,0,0,2269,2213,2934,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:23:47','','0000-00-00 00:00:00'),(4728,0,0,2269,2213,2934,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----bilatelr moderate sn deafness</p>\n\n<p>vemp--wnl</p>\n\n<p>vng---Right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:23:58','darshan','2025-11-11 13:20:41'),(4729,0,0,2269,2213,2934,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:24:01','','0000-00-00 00:00:00'),(4731,0,0,2263,2207,2924,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rotatory feeling with sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:32:26','darshan','2025-11-11 11:35:25'),(4732,0,0,2263,2207,2924,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----6-7 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:32:33','','0000-00-00 00:00:00'),(4733,0,0,2263,2207,2924,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---YRS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:34:48','','0000-00-00 00:00:00'),(4734,0,0,2263,2207,2924,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bialtelr high freq severe sn deafness&thinsp;</p>\n\n<p>stabilomtry--reduced vestibular score</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:36:09','darshan','2025-11-11 13:45:47'),(4735,0,0,2263,2207,2924,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:36:12','','0000-00-00 00:00:00'),(4736,0,0,1288,1247,2951,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:42:50','','0000-00-00 00:00:00'),(4738,0,0,1288,1247,2951,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:44:11','','0000-00-00 00:00:00'),(4739,0,0,2266,2210,2930,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--two episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:49:01','','0000-00-00 00:00:00'),(4740,0,0,2268,2212,2933,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n\n<p>very occassional short duration giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:52:08','','0000-00-00 00:00:00'),(4741,0,0,1778,1734,2940,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case</p>\n\n<p>Follow up PTA---rigth severe sn deafness---better than previous</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 11:54:31','darshan','2025-11-11 11:56:33'),(4742,0,0,2209,144,2825,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-11 11:55:59','mo','2025-11-11 11:56:00'),(4743,0,0,668,638,2943,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----imbalance +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:03:19','','0000-00-00 00:00:00'),(4745,0,0,668,638,2943,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER----15 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:05:07','','0000-00-00 00:00:00'),(4746,0,0,2127,138,2691,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM (500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; .........(10)</P>\r\n\r\n<P>TAB METRO-ER(600)&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; .........(10)</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;.........(10)</P>\r\n\r\n<P>TAB RIFAGUT (200)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; .........(10)</P>\r\n\r\n<P>TAB LANOL-ER (650MG)&nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp; &nbsp; IF PAIN/FEVER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......(5)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB MOXIFLOX(400)&nbsp; &nbsp; &nbsp; 0--0--1&nbsp;</P>\r\n\r\n<P>TAB OMBUTOL(600)&nbsp; &nbsp; &nbsp; &nbsp;0--1--0</P>\r\n\r\n<P>TAB SOLONEX (300)&nbsp; &nbsp; &nbsp; &nbsp;1--0--0</P>\r\n\r\n<P>TAB BENADOM (40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1/2--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-11 12:08:46','mo','2025-11-11 12:18:23'),(4747,0,0,1269,1228,2965,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:12:18','','0000-00-00 00:00:00'),(4748,0,0,2274,2218,2941,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo ---maily at time of meal</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:16:21','','0000-00-00 00:00:00'),(4749,0,0,2274,2218,2941,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:16:44','','0000-00-00 00:00:00'),(4751,0,0,2274,2218,2941,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:16:59','','0000-00-00 00:00:00'),(4752,0,0,1591,1548,2948,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case --recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:25:07','','0000-00-00 00:00:00'),(4753,0,0,1591,1548,2948,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus----absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:25:22','','0000-00-00 00:00:00'),(4756,0,0,1591,1548,2948,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:27:05','','0000-00-00 00:00:00'),(4757,0,0,2290,2234,2968,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:29:50','','0000-00-00 00:00:00'),(4758,0,0,2291,2235,2969,0,0,NULL,'','HIST','ZZZ','Remark','<p>when pt walks he feels mild sense of imbalance</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:34:51','darshan','2025-11-11 12:36:56'),(4759,0,0,2291,2235,2969,0,0,NULL,'','CC','ZZZ','Remark','SENSE OF IMBALANCE -----2-3 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:36:32','','0000-00-00 00:00:00'),(4760,0,0,2291,2235,2969,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilateral high freq moderate sn deafness</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--Bilateral vestibulopathy with bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:37:07','darshan','2025-11-11 14:10:28'),(4762,0,0,2278,2222,2953,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partaily better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:41:27','','0000-00-00 00:00:00'),(4763,0,0,2284,2228,2960,0,0,NULL,'','HIST','ZZZ','Remark','<p>left tonsillar cyst&thinsp;</p>\n\n<p>phx--congested ang granular&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:44:05','darshan','2025-11-11 12:46:53'),(4764,0,0,2280,2224,2955,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:50:05','','0000-00-00 00:00:00'),(4768,0,0,2262,2206,2920,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN 8TH NERVE PROTOCOL ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:55:39','','0000-00-00 00:00:00'),(4769,0,0,325,309,2981,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:57:56','','0000-00-00 00:00:00'),(4770,0,0,325,309,2981,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 12:59:05','','0000-00-00 00:00:00'),(4772,0,0,325,309,2981,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 13:00:26','','0000-00-00 00:00:00'),(4773,0,0,1993,1945,2988,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 13:03:30','','0000-00-00 00:00:00'),(4774,0,0,2293,2237,2973,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 13:07:57','','0000-00-00 00:00:00'),(4776,0,0,2293,2237,2973,0,0,NULL,'','MADVICE','ZZZ','Remark','PSYCHIATRIC OPINION ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 13:08:38','','0000-00-00 00:00:00'),(4777,0,0,300,284,2993,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 13:13:43','darshan','2025-11-11 19:33:16'),(4779,0,0,2294,2238,2976,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-11-11 13:19:33','','0000-00-00 00:00:00'),(4780,0,0,2269,2213,2934,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 13:21:04','','0000-00-00 00:00:00'),(4782,0,0,564,538,2977,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-11-11 13:23:44','','0000-00-00 00:00:00'),(4783,0,0,2295,2239,2980,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 13:24:43','','0000-00-00 00:00:00'),(4784,0,0,2295,2239,2980,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 13:25:23','','0000-00-00 00:00:00'),(4786,0,0,2295,2239,2980,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 13:25:41','','0000-00-00 00:00:00'),(4787,0,0,2296,2240,2982,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---medicine skipped&thinsp;</p>\n\n<p>recurernce of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 13:31:36','','0000-00-00 00:00:00'),(4790,0,0,2255,2199,2907,0,0,NULL,'','MADVICE','ZZZ','Remark','BIALTERL FESS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 13:49:40','','0000-00-00 00:00:00'),(4792,0,0,2269,2213,2934,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 13:50:14','','0000-00-00 00:00:00'),(4793,0,0,2291,2235,2969,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 14:11:35','','0000-00-00 00:00:00'),(4796,0,0,2291,2235,2969,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY \nBD MANEUVER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 14:12:34','','0000-00-00 00:00:00'),(4797,0,0,2305,2248,2997,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 14:19:01','darshan','2025-11-11 14:23:11'),(4798,0,0,2305,2248,2997,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 14:22:01','','0000-00-00 00:00:00'),(4799,0,0,2305,2248,2997,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus--absent</p>\n\n<p>dcx halpike-nad</p>\n\n<p>hit-nad</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 14:23:21','darshan','2025-11-11 14:44:22'),(4801,0,0,2305,2248,2997,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE OCCASSIONALLY||','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 14:23:48','','0000-00-00 00:00:00'),(4802,0,0,2300,2244,2986,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 14:27:43','','0000-00-00 00:00:00'),(4803,0,0,2300,2244,2986,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rotaotyr feeling when pt is in any posture</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 14:28:24','','0000-00-00 00:00:00'),(4804,0,0,2300,2244,2986,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>Pta---wnl</p>\n\n<p>stabilomtry-wnl</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 14:28:33','darshan','2025-11-11 17:57:48'),(4809,0,0,2305,2248,2997,0,0,NULL,'','MADVICE','ZZZ','Remark','VESTIBULAR IX FOR RECURRENT POSITIONAL GIDDINESS--PRESENTLY PT REFUSES','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 14:46:31','','0000-00-00 00:00:00'),(4810,0,0,1029,997,3000,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----partailly&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 17:12:23','','0000-00-00 00:00:00'),(4812,0,0,1029,997,3000,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER---10 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 17:13:20','','0000-00-00 00:00:00'),(4813,0,0,2306,2249,2998,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 17:15:22','','0000-00-00 00:00:00'),(4814,0,0,2308,2251,3001,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3-4 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 17:27:50','','0000-00-00 00:00:00'),(4815,0,0,2308,2251,3001,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling any time and remains for few hrs&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated&thinsp; other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 17:29:05','','0000-00-00 00:00:00'),(4816,0,0,2308,2251,3001,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---left moderate sn deafness</p>\n\n<p>MRI brain--nad</p>\n\n<p>Stabilometry--reduced vestibular score</p>\n\n<p>vng--left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 17:29:22','darshan','2025-11-11 18:18:41'),(4817,0,0,2308,2251,3001,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 17:29:26','','0000-00-00 00:00:00'),(4818,0,0,2307,2250,2999,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotyr feeling when pt is in any posture&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 17:32:23','darshan','2025-11-11 17:37:26'),(4819,0,0,2307,2250,2999,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 17:36:46','','0000-00-00 00:00:00'),(4820,0,0,2307,2250,2999,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----bialtlra high freq moderate sn deafness</p>\n\n<p>vng--right hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 17:37:51','darshan','2025-11-11 18:31:44'),(4823,0,0,486,460,3003,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 17:41:28','','0000-00-00 00:00:00'),(4824,0,0,363,347,3009,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 17:47:44','','0000-00-00 00:00:00'),(4825,0,0,2314,2257,3015,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 YRS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 18:15:30','','0000-00-00 00:00:00'),(4826,0,0,2314,2257,3015,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 18:15:59','','0000-00-00 00:00:00'),(4827,0,0,2314,2257,3015,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl<br />\nvng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 18:16:13','darshan','2025-11-11 19:19:01'),(4829,0,0,2307,2250,2999,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 18:32:22','','0000-00-00 00:00:00'),(4831,0,0,1437,1397,3025,0,0,NULL,'','HIST','ZZZ','Remark','<p>left ear wax--removed&thinsp;</p>\n\n<p>Ltm---i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 18:37:57','','0000-00-00 00:00:00'),(4832,0,0,1437,1397,3025,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT EAR WAX REMOVAL NEXT TIME','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 18:38:12','','0000-00-00 00:00:00'),(4833,0,0,373,357,3028,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 18:39:28','','0000-00-00 00:00:00'),(4834,0,0,2324,2267,3030,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR DEAFNESS ----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 18:43:58','','0000-00-00 00:00:00'),(4835,0,0,2324,2267,3030,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---i/n</p>\n\n<p>pta---bilateral&thinsp;&thinsp;high freq severe sn deafness</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 18:44:05','darshan','2025-11-11 19:21:13'),(4836,0,0,2201,143,2811,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>NAD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-11 18:44:59','mo','2025-11-20 14:18:33'),(4839,0,0,2325,2268,3031,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden oinset of rotaotyr feeling when she is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head+</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 18:51:41','darshan','2025-11-11 18:52:26'),(4840,0,0,2325,2268,3031,0,0,NULL,'','CC','ZZZ','Remark','GIDDINSS SINCE FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 18:51:50','','0000-00-00 00:00:00'),(4841,0,0,2325,2268,3031,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--reduced ss score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 18:52:38','darshan','2025-11-11 19:37:26'),(4843,0,0,2333,2276,3042,0,0,NULL,'','DIAG','ZZZ','Remark','CONSTIPATION','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-11 18:54:39','','0000-00-00 00:00:00'),(4844,0,0,2304,2247,2996,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE PANCREATITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-11 18:55:21','','0000-00-00 00:00:00'),(4845,0,0,2318,2261,3019,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache with giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 18:58:38','darshan','2025-11-11 19:47:53'),(4846,0,0,2318,2261,3019,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE----FW MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 19:00:34','','0000-00-00 00:00:00'),(4847,0,0,2318,2261,3019,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 19:00:54','darshan','2025-11-11 19:48:13'),(4849,0,0,1708,1663,3040,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 19:03:22','','0000-00-00 00:00:00'),(4851,0,0,2307,2250,2999,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 19:04:41','','0000-00-00 00:00:00'),(4852,0,0,2321,2264,3023,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of fall down&thinsp;</p>\n\n<p>giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 19:07:07','darshan','2025-11-11 19:26:37'),(4853,0,0,2326,2269,3032,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT SIDE LOWER LIMB RADICULO','','',0,'0000-00-00 00:00:00','drsagar','2025-11-11 19:07:29','','0000-00-00 00:00:00'),(4854,0,0,2326,2269,3032,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-11 19:07:38','','0000-00-00 00:00:00'),(4855,0,0,2317,2260,3018,0,0,NULL,'','DIAG','ZZZ','Remark','LT SUBMENTAL NODE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-11 19:09:30','','0000-00-00 00:00:00'),(4856,0,0,2334,2277,3045,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS----1 MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 19:12:19','','0000-00-00 00:00:00'),(4857,0,0,2334,2277,3045,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of&thinsp; rotaotyr feeling with nasusea and vomiting before 1 months&thinsp;</p>\n\n<p>presently sense of imbalance on walking&thinsp;</p>\n\n<p>no associated other cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 19:15:45','','0000-00-00 00:00:00'),(4858,0,0,2334,2277,3045,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>CCG--right Axial spin</p>\n\n<p>vng--right acute partial vestibular deficit</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 19:16:01','darshan','2025-11-11 19:59:33'),(4859,0,0,2334,2277,3045,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ACUTE PARTIAL VESTIBULAR DEFICIT','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 19:16:15','','0000-00-00 00:00:00'),(4860,0,0,2314,2257,3015,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 19:19:28','','0000-00-00 00:00:00'),(4864,0,0,2324,2267,3030,0,0,NULL,'','MADVICE','ZZZ','Remark','FOLLOW UP SOS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 19:21:48','','0000-00-00 00:00:00'),(4865,0,0,2321,2264,3023,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike-nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 19:26:47','','0000-00-00 00:00:00'),(4867,0,0,2321,2264,3023,0,0,NULL,'','MADVICE','ZZZ','Remark','NEUROLOGIST OPINION TO R/O EPILEPSY','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 19:28:21','','0000-00-00 00:00:00'),(4869,0,0,2314,2257,3015,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 19:30:01','','0000-00-00 00:00:00'),(4870,0,0,300,284,2993,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>MRI brain limted study---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 19:33:44','','0000-00-00 00:00:00'),(4872,0,0,2325,2268,3031,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 19:37:28','','0000-00-00 00:00:00'),(4873,0,0,2325,2268,3031,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-11 19:38:12','','0000-00-00 00:00:00'),(4876,0,0,2325,2268,3031,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-11 19:45:39','','0000-00-00 00:00:00'),(4877,0,0,2340,2283,3052,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-11-11 20:17:48','','0000-00-00 00:00:00'),(4878,0,0,2304,149,3027,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PSEUDO PANCREATIC CYST</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, DM TYPE 2&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-11 21:32:34','mo','2025-11-17 10:11:04'),(4879,0,0,2304,149,3027,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O: OPERATED FOR ACUTE CHOLECYSTECTOMY BEFORE 10 MONTHS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp;ADMITTED HERE FORE RECURRENT ACUTE PANCREATITIS WITH PSEUDOCYST FORMATION FROM 28/5/25 TO 30/5/25</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-11 21:32:34','mo','2025-11-17 10:11:04'),(4880,0,0,2304,149,3027,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 61 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, DM TYPE 2&nbsp;<BR />\r\nC/O: ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA AND VOMITING (4-5 EPISODES)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO FEVER&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 3-4 DAYS FOR THAT PATIENT PRIMARILY CONSULTED TO GP AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>S.CREAT, CBC, RBS, S.LIPASE, URINE R/M DONE ON 10/11/25</P>\r\n\r\n<P>USG OF ABDOMEN AND PELVIS DONE ON 10/11/25 WHICH S/O PSEUDOPANCREATIC CYST, REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-109/MIN, BP-140/80MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>CONTRAST CT SCAN OF UPPER ABDOMEN DONE ON 11/11/25, REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>PHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)</P>\r\n\r\n<P>LAPAROTOMY + CYSTOGASTROSTOMY DONE BY DR PRATAPSINH DODIYA ON 12/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>FLUID CS SENT WHICH S/O: GROWTH OF E.COLI ; TREATMNT MODIFIED @ SENSITIVITY</P>\r\n\r\n<P>PHYSIOTHERAPY STARTED</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL.</P>\r\n\r\n<P>ORAL DIET TOLERATE WELL SO RYLE&#39;S TUBE REMOVED</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-11 21:32:34','mo','2025-11-17 10:11:04'),(4881,0,0,2304,149,3027,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACTAGARD</P>\r\n\r\n<P>INJ.METROGYL</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>INJ.INFUPAR</P>\r\n\r\n<P>BUPRAGESIC PATCH</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n\r\n<P>INJ H ACTRAPID</P>\r\n\r\n<P>INJ KCL</P>\r\n\r\n<P>LIQ SUCRAWALL-O</P>\r\n\r\n<P>TAN ISYRL M2</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-11 21:32:34','mo','2025-11-17 10:11:04'),(4882,0,0,2302,148,2994,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LEFT SIDE CLOSED DISPLACED DISTAL END RADIUS FRACTURE WITHOUT DNVD</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM TYPE 2</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-11 21:52:52','mo','2025-11-12 11:23:48'),(4883,0,0,2302,148,2994,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O:HERNIOPLASTY BEFORE MANY YEARS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-11 21:52:52','mo','2025-11-12 11:23:48'),(4884,0,0,2302,148,2994,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 75 YEARS OLD FEMALE&nbsp; PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM TYPE 2<BR />\r\nA/H/O: FALL DOWN WHILE WALKING TODAY AT AROUND 11 AM F/BY,<BR />\r\nC/O: LEFT WRIST JOINT PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SWELLING ON LEFT WRIST</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; RESTRUCTED MOVEMENT</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE TODAY MORNING SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>X-RAY LEFT WRIST DONE ON 11/11/25.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-63/MIN, BP-124/80MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nCLOSE REDUCTION 3 K-WIRE FIXATION FOR LEFT DISTAL END RADIUS FRACTURE DONE BY DR SAGAR KHANAPARA ON11/11/2025 UNDER REGIONAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>POP X-RAY LEFT WRIST DONE ON 11/11/25. (POST OP)</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-11 21:52:52','mo','2025-11-12 11:23:48'),(4885,0,0,2302,148,2994,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>PHYSIOTHERAPY AS ADVICED</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-11 21:52:52','mo','2025-11-12 11:23:48'),(4886,0,0,2302,148,2994,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACTAGARD</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>INJ.TT</P>\r\n\r\n<P>INJ.D25%</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>TAB FUROLIV</P>\r\n\r\n<P>TAB CHYMORAL FORTE</P>\r\n\r\n<P>TAB OTRA-P</P>\r\n\r\n<P>TAB ROXIZOL-DSR</P>\r\n\r\n<P>TAB SIDIA</P>\r\n\r\n<P>TAB QUTAN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-11 21:52:52','mo','2025-11-12 11:23:48'),(4887,0,0,2302,148,2994,0,0,NULL,'','TREATDISC_TI','','','<P>TAB FUROLIVE (500)&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ROXIZOL-DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB OTRA-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB CHMORAL FORTE&nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>TAB SIDIA&nbsp;</P>\r\n\r\n<P>TAB QUTAN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 10:40:23','mo','2025-11-12 11:23:48'),(4888,0,0,1870,1824,3064,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 10:53:02','','0000-00-00 00:00:00'),(4889,0,0,1870,1824,3064,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---i/congested&thinsp;</p>\n\n<p>pta---wnl</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 10:53:10','darshan','2025-11-12 12:13:44'),(4890,0,0,2351,2294,3066,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 11:01:36','','0000-00-00 00:00:00'),(4891,0,0,1135,1097,3068,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 11:13:24','','0000-00-00 00:00:00'),(4892,0,0,2302,148,2994,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:&nbsp;&nbsp;CLOSE REDUCTION 3 K-WIRE FIXATION FOR LEFT DISTAL END RADIUS FRACTURE DONE BY DR SAGAR KHANAPARA ON11/11/2025 UNDER REGIONAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 11:23:48','','0000-00-00 00:00:00'),(4893,0,0,2302,148,2994,0,0,NULL,'','OTNOTE','','','<p>-under regional&nbsp;ANAESTHESIA &amp; aap paint and draping done for left wrist</p>\r\n\r\n<p>-under iitv left distal end radius fracture reduced &amp; fixed with 3 k-wire</p>\r\n\r\n<p>-dressing put</p>\r\n\r\n<p>-ae slab given.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 11:23:48','','0000-00-00 00:00:00'),(4894,0,0,2302,148,2994,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 11:23:48','','0000-00-00 00:00:00'),(4895,0,0,2348,2291,3060,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of sense of imbalance and rotatory feeling for few mins&thinsp;</p>\n\n<p>occassional positional giddiness +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 11:28:00','darshan','2025-11-12 11:30:08'),(4896,0,0,2358,2301,3075,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER BACK PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-12 11:29:06','','0000-00-00 00:00:00'),(4898,0,0,2348,2291,3060,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 11:29:22','','0000-00-00 00:00:00'),(4899,0,0,2348,2291,3060,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilateral very severe to profound deafness&thinsp;</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--bilateral vestibulopathy with bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 11:30:20','darshan','2025-11-12 13:01:45'),(4900,0,0,2348,2291,3060,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV WITH BILATERAL VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 11:30:37','','0000-00-00 00:00:00'),(4901,0,0,2354,2297,3070,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n\n<p>occassional positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 11:33:43','','0000-00-00 00:00:00'),(4903,0,0,2354,2297,3070,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ---15 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-12 11:34:38','','0000-00-00 00:00:00'),(4904,0,0,2355,2298,3071,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 11:37:25','','0000-00-00 00:00:00'),(4905,0,0,2357,2300,3074,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR TINNITUS ---FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 11:45:11','','0000-00-00 00:00:00'),(4906,0,0,2357,2300,3074,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS MANY MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 11:45:11','','0000-00-00 00:00:00'),(4907,0,0,2357,2300,3074,0,0,NULL,'','HIST','ZZZ','Remark','<p>continuous tinnitus and episodic giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 11:45:25','','0000-00-00 00:00:00'),(4908,0,0,2357,2300,3074,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta=wnl(o)</p>\n\n<p>vemp---wnl</p>\n\n<p>vng--central variety of nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 11:45:35','darshan','2025-11-12 13:29:05'),(4909,0,0,2357,2300,3074,0,0,NULL,'','DIAG','ZZZ','Remark','VM VS OTHER','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 11:46:31','','0000-00-00 00:00:00'),(4910,0,0,2360,2303,3079,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR BLOCKAGE---10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 11:50:14','','0000-00-00 00:00:00'),(4911,0,0,2360,2303,3079,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR TINNITUS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 11:50:14','','0000-00-00 00:00:00'),(4912,0,0,2360,2303,3079,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm--i/dull&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 11:50:28','','0000-00-00 00:00:00'),(4914,0,0,2360,2303,3079,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS PTA NEXT TIME ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-12 11:52:07','','0000-00-00 00:00:00'),(4915,0,0,2367,2310,3086,0,0,NULL,'','DIAG','ZZZ','Remark','PERIANAL ABSCESS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-12 11:52:50','','0000-00-00 00:00:00'),(4916,0,0,2359,2302,3078,0,0,NULL,'','HIST','ZZZ','Remark','<p>k/c/o----bialteral vestibulopathy</p>\n\n<p>medicine skipped</p>\n\n<p>recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 12:00:37','','0000-00-00 00:00:00'),(4917,0,0,2369,2312,3091,0,0,NULL,'','DIAG','ZZZ','Remark','PLANTAR FASCITIS RIGHT SIDE','','',0,'0000-00-00 00:00:00','drsagar','2025-11-12 12:01:34','','0000-00-00 00:00:00'),(4918,0,0,498,472,3072,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up&thinsp; case---better partially</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 12:05:40','darshan','2025-11-12 12:09:07'),(4919,0,0,2356,2299,3073,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---occassional headache&thinsp;</p>\n\n<p>deafness +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 12:07:40','darshan','2025-11-12 12:07:54'),(4920,0,0,2372,2315,3095,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ELBOW PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-12 12:09:02','','0000-00-00 00:00:00'),(4921,0,0,2361,2304,3080,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 12:12:30','','0000-00-00 00:00:00'),(4922,0,0,2364,2307,3083,0,0,NULL,'','CC','ZZZ','Remark','LEFT SIDE ORAL CAVITY BURNING SENSATION----15 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 12:18:38','','0000-00-00 00:00:00'),(4923,0,0,2364,2307,3083,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left buccal mucosa --RMT---leukoplakia</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 12:18:58','','0000-00-00 00:00:00'),(4925,0,0,2364,2307,3083,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS BIOPSY ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-12 12:20:36','','0000-00-00 00:00:00'),(4926,0,0,2370,2313,3093,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----three episodes of sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 12:22:21','','0000-00-00 00:00:00'),(4927,0,0,2365,2308,3084,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 12:26:21','','0000-00-00 00:00:00'),(4928,0,0,2373,2316,3096,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 12:33:04','','0000-00-00 00:00:00'),(4929,0,0,795,764,3087,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of vertigo&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 12:36:35','','0000-00-00 00:00:00'),(4930,0,0,787,755,3089,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--vertigo persist</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 12:41:26','','0000-00-00 00:00:00'),(4932,0,0,787,755,3089,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN 8TH NERVE PROTOCOL ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-12 12:42:40','','0000-00-00 00:00:00'),(4933,0,0,2371,2314,3094,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 12:47:42','','0000-00-00 00:00:00'),(4936,0,0,2356,2299,3073,0,0,NULL,'','MADVICE','ZZZ','Remark','HEARING AID TRIAL ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-12 12:54:14','','0000-00-00 00:00:00'),(4937,0,0,535,510,3090,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 12:56:22','','0000-00-00 00:00:00'),(4939,0,0,2348,2291,3060,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 13:08:08','','0000-00-00 00:00:00'),(4941,0,0,2374,2317,3098,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR BLOCKAGE FEELING ----FEW DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 13:11:30','','0000-00-00 00:00:00'),(4942,0,0,2374,2317,3098,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right AOM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 13:11:37','','0000-00-00 00:00:00'),(4943,0,0,2383,2326,3110,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-11-12 13:15:41','','0000-00-00 00:00:00'),(4944,0,0,589,562,3103,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better for giddiness&thinsp;</p>\n\n<p>frontal headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 13:20:40','','0000-00-00 00:00:00'),(4946,0,0,589,562,3103,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER FOR 10  DAYS \nMRI BRAIN LIMITED STUDY','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-12 13:22:23','','0000-00-00 00:00:00'),(4948,0,0,2348,2291,3060,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-12 13:36:34','','0000-00-00 00:00:00'),(4949,0,0,1044,1011,3116,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 17:04:48','','0000-00-00 00:00:00'),(4950,0,0,2386,2330,3117,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 17:07:16','','0000-00-00 00:00:00'),(4951,0,0,1504,1463,3118,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 17:22:24','','0000-00-00 00:00:00'),(4952,0,0,776,745,3120,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 17:22:59','','0000-00-00 00:00:00'),(4953,0,0,2387,2331,3121,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 17:24:07','','0000-00-00 00:00:00'),(4954,0,0,782,750,3119,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>mild sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 17:27:02','','0000-00-00 00:00:00'),(4955,0,0,2390,2334,3125,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 17:30:03','','0000-00-00 00:00:00'),(4956,0,0,1128,1089,3123,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 17:33:06','','0000-00-00 00:00:00'),(4957,0,0,2391,2335,3126,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----single episode of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 17:38:49','','0000-00-00 00:00:00'),(4959,0,0,2391,2335,3126,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MENVUER---10 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-12 17:39:54','','0000-00-00 00:00:00'),(4960,0,0,2392,2336,3128,0,0,NULL,'','HIST','ZZZ','Remark','<p>sense of imblaance on walking&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsmo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 17:44:33','darshan','2025-11-12 17:48:11'),(4961,0,0,2392,2336,3128,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3-4 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 17:47:35','','0000-00-00 00:00:00'),(4962,0,0,2392,2336,3128,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--absent</p>\n\n<p>dix hallpike-=-nad</p>\n\n<p>hit---nad</p>\n\n<p>&thinsp;pta---bilatrl high freq severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--Bilatearl vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 17:48:28','darshan','2025-11-12 19:01:49'),(4964,0,0,2393,2337,3129,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 17:51:09','darshan','2025-11-12 17:51:56'),(4965,0,0,2393,2337,3129,0,0,NULL,'','CC','ZZZ','Remark','THROAT PAIN---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 17:51:47','','0000-00-00 00:00:00'),(4966,0,0,2393,2337,3129,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested&thinsp;</p>\n\n<p>neck---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 17:52:07','','0000-00-00 00:00:00'),(4967,0,0,2401,2345,3139,0,0,NULL,'','HIST','ZZZ','Remark','<p>recurrence of vertigo&thinsp;</p>\n\n<p>medicine skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 17:57:26','darshan','2025-11-12 17:58:09'),(4968,0,0,2399,2343,3135,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:03:43','','0000-00-00 00:00:00'),(4969,0,0,1508,1467,3127,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:08:13','','0000-00-00 00:00:00'),(4970,0,0,2395,2339,3131,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR  TINNITUS --1 5 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:11:29','','0000-00-00 00:00:00'),(4971,0,0,2395,2339,3131,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>BTM---i/n</p>\n\n<p>Pta---bialtelr high freq moderate sn deafness</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:11:38','darshan','2025-11-12 18:57:54'),(4972,0,0,2396,2340,3132,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:19:35','','0000-00-00 00:00:00'),(4973,0,0,2396,2340,3132,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>headache +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:20:23','','0000-00-00 00:00:00'),(4974,0,0,2396,2340,3132,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>PTA----bilateral high frq severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---right hz canal bppv&thinsp; with vm</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:20:33','darshan','2025-11-12 19:22:15'),(4975,0,0,2396,2340,3132,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV WITH VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:20:39','','0000-00-00 00:00:00'),(4976,0,0,2400,2344,3137,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better for giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:23:43','','0000-00-00 00:00:00'),(4977,0,0,2398,2342,3134,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:28:26','','0000-00-00 00:00:00'),(4978,0,0,2398,2342,3134,0,0,NULL,'','CC','ZZZ','Remark','DIPLOPIA---7-8 DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:29:21','','0000-00-00 00:00:00'),(4979,0,0,2398,2342,3134,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ---7-8 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:29:21','','0000-00-00 00:00:00'),(4980,0,0,2398,2342,3134,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right lateral rectus palsy</p>\n\n<p>nystmagus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:29:56','','0000-00-00 00:00:00'),(4983,0,0,2398,2342,3134,0,0,NULL,'','MADVICE','ZZZ','Remark','NEUROLOGIST OPINION FOR DIPLOPIA','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:30:52','','0000-00-00 00:00:00'),(4984,0,0,2404,2348,3144,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:37:47','','0000-00-00 00:00:00'),(4985,0,0,2406,2350,3147,0,0,NULL,'','HIST','ZZZ','Remark','<p>gradual progressive right ear deaness&thinsp;</p>\n\n<p>occasiional left ear deafness</p>\n\n<p>frequent giddiness with sense of imbalance&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:45:10','darshan','2025-11-12 19:53:05'),(4986,0,0,2406,2350,3147,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR DEAFNESS --SINCE MANY MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:49:27','','0000-00-00 00:00:00'),(4987,0,0,2406,2350,3147,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESSS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:49:27','','0000-00-00 00:00:00'),(4988,0,0,2406,2350,3147,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--right very severe sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--right labyrinthine pathology</p>\n\n<p>Mri brain-Right acoustic schwannoma --minimal reduction in size as compare to 2019</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:50:25','darshan','2025-11-13 18:26:42'),(4989,0,0,2389,2333,3124,0,0,NULL,'','DIAG','ZZZ','Remark','FISTULA IN ANO','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-12 18:51:20','','0000-00-00 00:00:00'),(4991,0,0,2389,2333,3124,0,0,NULL,'','DIAG','ZZZ','Remark','EXTERNAL HEMORRHOIDS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-12 18:51:28','','0000-00-00 00:00:00'),(4992,0,0,2397,2341,3133,0,0,NULL,'','DIAG','ZZZ','Remark','LIPOMA ON ABDOMINAL WALL','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-12 18:55:08','','0000-00-00 00:00:00'),(4993,0,0,2397,2341,3133,0,0,NULL,'','DIAG','ZZZ','Remark','HTN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-12 18:55:17','','0000-00-00 00:00:00'),(4994,0,0,974,943,3155,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--left sm region swelling&thinsp;</p>\n\n<p>headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 18:55:46','darshan','2025-11-13 12:46:25'),(4996,0,0,2347,2290,3059,0,0,NULL,'','DIAG','ZZZ','Remark','RT RETROAURICULAR CYST','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-12 19:02:16','','0000-00-00 00:00:00'),(4997,0,0,1805,1759,3153,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 19:06:27','','0000-00-00 00:00:00'),(5000,0,0,1805,1759,3153,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER FOR 10 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-12 19:08:40','','0000-00-00 00:00:00'),(5001,0,0,622,592,3148,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 19:11:41','','0000-00-00 00:00:00'),(5002,0,0,982,147,2919,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ACIVIR (800 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS............(10)</P>\r\n\r\n<P>TAB. ZIFI (200MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS............(10)</P>\r\n\r\n<P>TAB. NEXPRO FAST (40MG)&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;FOR 5 DAYS............(10)</P>\r\n\r\n<P>TAB. ZOFER MD (4MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS............(10)</P>\r\n\r\n<P>TAB.OMNACORTIL (10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS............(5)</P>\r\n\r\n<P>SYP.DIGERAFT&nbsp; (5 ML&nbsp;)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-1-1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;FOR 5 DAYS.............(1)</P>\r\n\r\n<P>MIXTARD CARTRIDGE 30/70&nbsp; &nbsp; &nbsp;S/C&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 26 UNIT&nbsp; &nbsp; &nbsp;BEFORE BREAKFAST</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;18 UNIT&nbsp; &nbsp; &nbsp;BEFORE DINNER</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>CONTINUE OWN MEDICINE:</STRONG></P>\r\n\r\n<P>TAB MEDITREX (7.5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;EVERY SATURDAY</P>\r\n\r\n<P>TAB DAPARYL(10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-1-0</P>\r\n\r\n<P>TAB VPADOZ (15MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-0</P>\r\n\r\n<P>TAB LUPIHEME&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-1-0</P>\r\n\r\n<P>TAB FOLVITE (5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;EVERY TUESDAY &AMP; WEDNESDAY</P>\r\n\r\n<P>CANDID MOUTH PAINT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;FOR&nbsp; LOCAL APPLICATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 19:20:28','mo','2025-11-13 20:57:27'),(5003,0,0,2396,2340,3132,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 19:23:58','','0000-00-00 00:00:00'),(5005,0,0,2408,2352,3150,0,0,NULL,'','CC','ZZZ','Remark','THRAOT PAIN---FEW DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 19:28:42','','0000-00-00 00:00:00'),(5006,0,0,2408,2352,3150,0,0,NULL,'','CC','ZZZ','Remark','NASAL PAIN WITH BURNING FEELING ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 19:28:42','','0000-00-00 00:00:00'),(5007,0,0,2408,2352,3150,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR PAIN ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 19:28:42','','0000-00-00 00:00:00'),(5008,0,0,2408,2352,3150,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx----severely congested&thinsp;</p>\n\n<p>nose---congested&thinsp;</p>\n\n<p>Btm--i/congested</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 19:29:11','','0000-00-00 00:00:00'),(5009,0,0,2416,2361,3166,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR DEAFNESS ----20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 19:34:40','','0000-00-00 00:00:00'),(5010,0,0,2416,2361,3166,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Both TM---i/n</p>\n\n<p>pta--right ear modete mixed&thinsp; deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 19:34:50','darshan','2025-11-12 20:05:48'),(5012,0,0,2396,2340,3132,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-12 19:35:24','','0000-00-00 00:00:00'),(5017,0,0,2422,2367,3174,0,0,NULL,'','DIAG','ZZZ','Remark','SEVERE BOTH OA KNEE','','',0,'0000-00-00 00:00:00','drsagar','2025-11-12 19:56:35','','0000-00-00 00:00:00'),(5018,0,0,2417,2362,3168,0,0,NULL,'','CC','ZZZ','Remark','THROAT PAIN ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 19:57:44','','0000-00-00 00:00:00'),(5019,0,0,2417,2362,3168,0,0,NULL,'','CC','ZZZ','Remark','NASAL BLOCKAGE ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 19:58:15','','0000-00-00 00:00:00'),(5020,0,0,2417,2362,3168,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR BLOCKAGE FEEING ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 19:58:15','','0000-00-00 00:00:00'),(5021,0,0,2417,2362,3168,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose---congested</p>\n\n<p>phx--congested&thinsp;</p>\n\n<p>Btm--congested</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 19:58:38','','0000-00-00 00:00:00'),(5022,0,0,2425,2369,3177,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-11-12 20:04:33','','0000-00-00 00:00:00'),(5025,0,0,2416,2361,3166,0,0,NULL,'','PLAN','ZZZ','Remark','14','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 20:06:38','','0000-00-00 00:00:00'),(5026,0,0,2429,2373,3181,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 20:09:57','','0000-00-00 00:00:00'),(5027,0,0,648,618,3146,0,0,NULL,'','DIAG','ZZZ','Remark','HT, DM WITH ? IHD','','',0,'0000-00-00 00:00:00','drarchit','2025-11-12 20:12:49','','0000-00-00 00:00:00'),(5028,0,0,2430,2374,3182,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 20:14:42','','0000-00-00 00:00:00'),(5029,0,0,2430,2374,3182,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo with both ear deafness feeling&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 20:15:04','','0000-00-00 00:00:00'),(5030,0,0,2430,2374,3182,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 20:15:17','darshan','2025-11-12 20:44:30'),(5032,0,0,2433,2377,3186,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR DEAFNESS FEELING ---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 20:24:00','','0000-00-00 00:00:00'),(5033,0,0,2433,2377,3186,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---i/n</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 20:24:12','','0000-00-00 00:00:00'),(5034,0,0,2433,2377,3186,0,0,NULL,'','DIAG','ZZZ','Remark','..? CONDUCTIVE DEAFNESS','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 20:24:22','','0000-00-00 00:00:00'),(5035,0,0,2385,2329,3115,0,0,NULL,'','DIAG','ZZZ','Remark','UTERINE FIBROID','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-12 20:30:06','','0000-00-00 00:00:00'),(5036,0,0,2434,2378,3187,0,0,NULL,'','DIAG','ZZZ','Remark','LT FOOT NAIL AVULSION','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-12 20:30:55','','0000-00-00 00:00:00'),(5037,0,0,2423,2368,3175,0,0,NULL,'','CC','ZZZ','Remark','POSTED FOR RT EYE CATARACT SURGERY||','','',0,'0000-00-00 00:00:00','drarchit','2025-11-12 20:34:16','','0000-00-00 00:00:00'),(5038,0,0,2423,2368,3175,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALLY NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-12 20:34:35','','0000-00-00 00:00:00'),(5039,0,0,2423,2368,3175,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO C/O DOE&thinsp;</p>\n\n<p>NO C/O CHEST PAIN&thinsp;</p>\n\n<p>NO C/O HEADACH</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-12 20:34:56','','0000-00-00 00:00:00'),(5040,0,0,2430,2374,3182,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-12 20:45:21','','0000-00-00 00:00:00'),(5043,0,0,2430,2374,3182,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-12 20:45:58','','0000-00-00 00:00:00'),(5044,0,0,2385,153,3190,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>PAST SURGICAL HISTORY-LAPAROSCOPIC APPENDICECTOMY(1/7/2025)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 22:24:01','mo','2025-11-15 12:56:45'),(5045,0,0,2385,153,3190,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 40 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:LOWER ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;MENORRHAGIA</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 3-4 MONTH AND INCREASE SICE 2-3 DAYS FOR THAT PATIENT CONSULTED MANY HOSPITAL AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN DONE ON 30/6/2025 AND 3/9/2025 WHICH S/O: BULKY UTERUS WITH LARGE INTRAMURAL UTERINE FIBROID&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-118/MIN, BP-136/80MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nECG DONE<BR />\r\nTOTAL LAPAROSCOPIC HYSTERECTOMY + B/L SALPINECTOMY DONE BY DR PRATAPSINH DODIYA ON 13/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 22:24:01','mo','2025-11-15 12:56:45'),(5046,0,0,2385,153,3190,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 22:24:01','mo','2025-11-15 12:56:45'),(5047,0,0,2385,153,3190,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>SYP CREMAFFIN PLUS</P>\r\n\r\n<P>METROGYL P OINTMENT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 22:24:01','mo','2025-11-15 12:56:45'),(5048,0,0,2367,151,3114,0,0,NULL,'','DISCDIAG','','','<P><STRONG>FISTULA IN ANO + ABSCESS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 22:33:59','mo','2025-11-13 11:50:12'),(5049,0,0,2367,151,3114,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 30 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O:NAD&nbsp;<BR />\r\nC/O:PAIN &AMP; SWELLING AT PERIANAL REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;BODYACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO FEVER&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO BLEEDING P/R</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 1 WEEK FOR THAT PATIENT PRIMARY CONSULTED AT HITAYA HOSPITAL AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>PERI ANAL USG DONE ON (11/11/2025) WHICH S/O: INTERSPHINCTERIC FISTULA</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-64/MIN, BP-112/70MMHG, SPO2-98% ON RA, RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nFISTULECTOMY + ABSCESS DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 12/11/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 22:33:59','mo','2025-11-13 11:50:12'),(5050,0,0,2367,151,3114,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>FISTULECTOMY + ABSCESS DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 12/11/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 22:33:59','mo','2025-11-13 11:50:12'),(5051,0,0,2367,151,3114,0,0,NULL,'','OTNOTE','','','<p>- ABSCESS AT 5 O&#39;CLOCK POSITION</p>\r\n\r\n<p>- INTERNAL OPENING AT 6 O&#39;CLOCK POSITION NEAR ANAL VERGE, AWAY FROM EXTERNAL ANAL SPHINCTER</p>\r\n\r\n<p>- WHOLE PUS &amp; FISTULA TRACT EXCISED</p>\r\n\r\n<p>- HEMOSTASIS ACHIEVED</p>\r\n\r\n<p>- DRESSING KEPT</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 22:33:59','mo','2025-11-13 11:50:12'),(5052,0,0,2367,151,3114,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 22:33:59','mo','2025-11-13 11:50:12'),(5053,0,0,2367,151,3114,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n\r\n<P>HOT SITZ BATH</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 22:33:59','mo','2025-11-13 11:50:12'),(5054,0,0,2367,151,3114,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>SYP CREMAFFIN PLUS</P>\r\n\r\n<P>BUPRAGESIC PATCH</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 22:33:59','mo','2025-11-13 11:50:12'),(5055,0,0,2367,151,3114,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZENFLOX OZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........(10)</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........(10)</P>\r\n\r\n<P>TAB ZERODOL-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........(10)</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp; &nbsp;10ML&nbsp; &nbsp;HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...........(1)</P>\r\n\r\n<P>LOX JELLY 2%&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp; &nbsp; &nbsp;L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...........(1)</P>\r\n\r\n<P>METROGYL P OINTMENT&nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp; &nbsp; &nbsp;L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...........(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 22:33:59','mo','2025-11-13 11:50:12'),(5056,0,0,2304,149,3027,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>HOLD OWN HTN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 22:38:58','mo','2025-11-17 10:11:04'),(5057,0,0,2241,145,2876,0,0,NULL,'','DISCDIAG','','','<P><STRONG>HEPATIC ENCEPHALOPATHY GRADE II</STRONG></P>\r\n\r\n<P><STRONG>HYPONATREMIA</STRONG></P>\r\n\r\n<P><STRONG>HEPATO CELLULAR CARCINOMA</STRONG></P>\r\n\r\n<P><STRONG>K/C/O DM;HTN;IHD</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 23:07:51','mo','2025-11-14 19:26:55'),(5058,0,0,2241,145,2876,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 23:07:51','mo','2025-11-14 19:26:55'),(5059,0,0,2241,145,2876,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 75 YEARS OLD FEMALE PATIENT P/W K/C/O DM;HTN;IHD</P>\r\n\r\n<P>S/P HCC OPERATED 5 YEARS BACK</P>\r\n\r\n<P>WITH C/O NAUSEA;HEADACHE;BACKACHE;B/L PEDAL EDEMA;IRRELEVANT TALKING;GENERALISED WEAKNESS SINCE 2-3 DAYS.</P>\r\n\r\n<P>SO,RELATIVE BROUGHT HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-96.8 F</P>\r\n\r\n<P>PR-110/MIN</P>\r\n\r\n<P>BP-100/60MMHG</P>\r\n\r\n<P>SPO2-96% ON RA</P>\r\n\r\n<P>RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-ALTERED SENSORIUM,NOT F/V/C,MOVING ALL 4 LIMBS.</P>\r\n\r\n<P>P/A-SPFT</P>\r\n\r\n<P>RBS-140MG/DL</P>\r\n\r\n<P>-WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10/11/25,</P>\r\n\r\n<P>-PRIMARY BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>-ECG DONE.</P>\r\n\r\n<P>-A.AMMONIA S/O 122.80 UMOL/L.TREATMENT MODIFIED.</P>\r\n\r\n<P>-URINE ROUTINE MICRO SENT.</P>\r\n\r\n<P>-IN VIEW OF HYPONATREMIA MANAGED BY IV&nbsp;NS 3%.</P>\r\n\r\n<P>-GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11/11/25,</P>\r\n\r\n<P>-PATIENT&#39;S SENSORIUM WAS IMPROVING.</P>\r\n\r\n<P>-USG ABDOMEN DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>-RTF STARTED.</P>\r\n\r\n<P>-REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12/11/25,</P>\r\n\r\n<P>-PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>-REQUIRED BLOOD INVESTIGATION SENT</P>\r\n\r\n<P>-FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13/11/25,</P>\r\n\r\n<P>-REQUIRED BLOOD INVESTIGATION DONE.</P>\r\n\r\n<P>-IN VIEW OF LOW HB(8.1 MG/DL) I UNIT RCC GIVEN</P>\r\n\r\n<P>-RYLE&#39;S TUBE REMOVED ; ORALLY TOLERATE</P>\r\n\r\n<P>-FOLEY&#39;S CLAMPING STARTED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14/11/25,</P>\r\n\r\n<P>-FOLEY&#39;S REMOVAL DONE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 23:07:51','mo','2025-11-14 19:26:55'),(5060,0,0,2241,145,2876,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ ZOSTUM</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>TAB RIFAGUT</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ NS 3%</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>LIQ LOOZ</P>\r\n\r\n<P>LOOZ ENEMA</P>\r\n\r\n<P>TAB COBADEX CZ</P>\r\n\r\n<P>TAB HEPAMERZ</P>\r\n\r\n<P>TAB TOLVAPTAN</P>\r\n\r\n<P>CAP VSL #3</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>TAB CARDIVAS&nbsp;</P>\r\n\r\n<P>INJ RCC</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-12 23:09:10','mo','2025-11-14 19:26:55'),(5061,0,0,1813,1767,3197,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--mild positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 10:49:39','','0000-00-00 00:00:00'),(5063,0,0,1813,1767,3197,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 10:50:44','','0000-00-00 00:00:00'),(5065,0,0,1813,1767,3197,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-13 10:51:17','','0000-00-00 00:00:00'),(5066,0,0,844,813,3199,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---3-4 episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 10:54:15','','0000-00-00 00:00:00'),(5067,0,0,2443,2386,3202,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 10:56:09','darshan','2025-11-13 10:58:46'),(5068,0,0,2443,2386,3202,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 11:00:25','','0000-00-00 00:00:00'),(5070,0,0,2443,2386,3202,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Dix hallpike--left faint torsonal geotropic nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 11:00:47','','0000-00-00 00:00:00'),(5071,0,0,2443,2386,3202,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAMENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-13 11:01:32','','0000-00-00 00:00:00'),(5072,0,0,1086,1053,3204,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 11:04:56','','0000-00-00 00:00:00'),(5073,0,0,2441,2384,3200,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 11:12:52','','0000-00-00 00:00:00'),(5074,0,0,2447,2390,3209,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---25 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 11:21:47','','0000-00-00 00:00:00'),(5075,0,0,2447,2390,3209,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associatd other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 11:22:16','','0000-00-00 00:00:00'),(5076,0,0,2447,2390,3209,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabiloemtry-reduced vestibular score</p>\n\n<p>vng--right hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 11:22:25','darshan','2025-11-13 13:12:14'),(5077,0,0,2447,2390,3209,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 11:22:33','','0000-00-00 00:00:00'),(5078,0,0,2450,2394,3214,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better&thinsp;</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 11:27:25','','0000-00-00 00:00:00'),(5079,0,0,2451,2395,3215,0,0,NULL,'','DIAG','ZZZ','Remark','? CCF','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-13 11:29:10','','0000-00-00 00:00:00'),(5080,0,0,2451,2395,3215,0,0,NULL,'','DIAG','ZZZ','Remark','DM','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-13 11:29:15','','0000-00-00 00:00:00'),(5081,0,0,1170,1130,3207,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----4 episodes of short duration giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 11:31:24','','0000-00-00 00:00:00'),(5083,0,0,1170,1130,3207,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-13 11:33:23','','0000-00-00 00:00:00'),(5084,0,0,2444,2387,3203,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 11:45:33','','0000-00-00 00:00:00'),(5085,0,0,2444,2387,3203,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>follow up case---better&thinsp;</p>\n\n<p>ild sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 11:45:50','','0000-00-00 00:00:00'),(5086,0,0,2367,151,3114,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-13 11:48:38','mo','2025-11-13 11:50:12'),(5087,0,0,1804,1758,3205,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 11:53:34','','0000-00-00 00:00:00'),(5088,0,0,1804,1758,3205,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 11:54:03','','0000-00-00 00:00:00'),(5090,0,0,1804,1758,3205,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-13 11:55:20','','0000-00-00 00:00:00'),(5091,0,0,2446,2389,3208,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better for tinnitus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 11:57:34','','0000-00-00 00:00:00'),(5092,0,0,2461,2405,3229,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--mild sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 12:02:36','','0000-00-00 00:00:00'),(5093,0,0,2449,2392,3211,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 12:06:27','darshan','2025-11-13 12:06:34'),(5094,0,0,2449,2392,3211,0,0,NULL,'','CC','ZZZ','Remark','COUGHING -----4-5 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 12:06:49','','0000-00-00 00:00:00'),(5095,0,0,2449,2392,3211,0,0,NULL,'','CC','ZZZ','Remark','THROAT IRRITATION||','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 12:06:49','','0000-00-00 00:00:00'),(5096,0,0,2449,2392,3211,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---mild congested</p>\n\n<p>nose---congested</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 12:07:04','','0000-00-00 00:00:00'),(5097,0,0,1733,1687,3218,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 12:17:14','','0000-00-00 00:00:00'),(5098,0,0,1733,1687,3218,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 12:17:40','','0000-00-00 00:00:00'),(5100,0,0,1733,1687,3218,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-13 12:20:36','','0000-00-00 00:00:00'),(5101,0,0,2454,2398,3220,0,0,NULL,'','HIST','ZZZ','Remark','<p>difficulty in swallowing&thinsp;</p>\n\n<p>throat&thinsp; pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 12:26:13','darshan','2025-11-13 13:19:07'),(5102,0,0,2454,2398,3220,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>oral cavity ---osmf</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 12:26:23','darshan','2025-11-13 13:19:11'),(5103,0,0,2455,2399,3221,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---YESTERDAY||','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 12:33:44','','0000-00-00 00:00:00'),(5104,0,0,2455,2399,3221,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling on change of posture</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 12:34:16','','0000-00-00 00:00:00'),(5105,0,0,2455,2399,3221,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--nad</p>\n\n<p>vng--right hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 12:34:29','darshan','2025-11-13 13:23:15'),(5107,0,0,1911,1866,3230,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 12:37:06','','0000-00-00 00:00:00'),(5109,0,0,1911,1866,3230,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-13 12:38:04','','0000-00-00 00:00:00'),(5110,0,0,2439,155,3196,0,0,NULL,'','DISCDIAG','','','<P><STRONG>INFERIOR WALL MI (THROMBOLYSED WITH STK)</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM-2 + HTN&nbsp;</STRONG></P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 12:39:28','mo','2025-11-13 13:13:57'),(5111,0,0,2439,155,3196,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY : DM-2 + HTN ON RX.</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 12:39:28','mo','2025-11-13 13:13:57'),(5112,0,0,2439,155,3196,0,0,NULL,'','HISTHOSPCOURSE','','','<P>42Y YEARS OLD MALE FEMALE C/O: INTERMITTENTENT CHEST PAIN WITH NAUSEA YESTERDAY&nbsp;</P>\r\n\r\n<P>INCREASING CHEST PAIN WITH GABHARAMANN,</P>\r\n\r\n<P>UNEASINESS, CHEST HEAVINESS,</P>\r\n\r\n<P>GENERAL WEAKNESS&nbsp;</P>\r\n\r\n<P>SINCE LAST 2-3 DAYS. SO ADMITTED IN HOSPITAL UNDER CARE OF DR ARCHIT RATHOD WITH ABOVE MENTION COMPLAIN. PATIENT EXAMINED EVALUATED ACCORDINGLY REQUIED BLOOD INVESTIGATIONS SENT ECG SHOW DONE CHANGES&nbsp;AFTER PATIENT WAS ADMITTED IN ICU EMERGENCY INJ.STK 15 LAC IU IN NS 100ML GIVEN&nbsp; AFTER REPEAT ECG DONE.IN VIEW OF RBS SO HIGH THAN INJ HAI DRIP STARTED ACCORDING TO RBS. AFTER TREATMENT MODIFIED.AFTER ADVISE 2D ECHO AND CONTINUES ICU CARE AFTER STABILIZATION CAG&nbsp;AND GC INFORMED IN DETAILING ABOUT PRESENT CONDITION AND RISK FACTERS.BUT PATIENT RELATIVES ARE NOT WILLING FURTHER TREATMENT AND HOSPITAL STAY SO PATIENT DAMA&nbsp; AFTER CONSENT AND OWN RISK.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 12:39:28','mo','2025-11-13 13:13:57'),(5113,0,0,2439,155,3196,0,0,NULL,'','FOOD_DRUG_ALLERGIES','','','<P>NO ANY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 12:39:57','mo','2025-11-13 13:13:57'),(5114,0,0,974,943,3155,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>neck ---nad</p>\n\n<p>oral cavity--nad</p>\n\n<p>&thinsp;</p>\n\n<p>CT neck with pns--mild mucosal thickening in sphenoid sinus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 12:40:25','','0000-00-00 00:00:00'),(5116,0,0,974,943,3155,0,0,NULL,'','MADVICE','ZZZ','Remark','PHYSICIAN OPINION FOR BREATHLESSNESS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-13 12:46:25','','0000-00-00 00:00:00'),(5117,0,0,365,349,3234,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----headache persist</p>\n\n<p>burning sensation in tongue</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 12:51:03','darshan','2025-11-13 12:53:13'),(5118,0,0,2439,155,3196,0,0,NULL,'','CONDONADDMISSION','','','<P>CNS : CONSCIOUS / ORIENTED.</P>\r\n\r\n<P>CVS : S1,S2+</P>\r\n\r\n<P>RS : BLAE +</P>\r\n\r\n<P>P/A : SOFT&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 12:51:50','mo','2025-11-13 13:13:57'),(5119,0,0,2453,2397,3219,0,0,NULL,'','CC','ZZZ','Remark','C/O CHEST PAIN LT SIDED | 1 DAYS | NOT ASSCOAITED WITH GABHRMAN ','','',0,'0000-00-00 00:00:00','drarchit','2025-11-13 12:56:53','','0000-00-00 00:00:00'),(5120,0,0,2453,2397,3219,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>R/S - NO CREPTS , NO MURMUR</p>\n\n<p>CVS -S1 S2 NORMAL</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-13 12:57:33','','0000-00-00 00:00:00'),(5121,0,0,2439,155,3196,0,0,NULL,'','DISCCOND','','','<P>PATIENT CONSIOUS / ORINETED +</P>\r\n\r\n<P>CVS : S1.S2 ++</P>\r\n\r\n<P>P/A : SOFT&nbsp;</P>\r\n\r\n<P>RS : BLAE ++</P>\r\n\r\n<P>INJ.HAI DRIP ON GOING...</P>\r\n\r\n<P>IV LINE IN SITU ++</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 12:57:36','mo','2025-11-13 13:13:57'),(5122,0,0,2453,2397,3219,0,0,NULL,'','DIAG','ZZZ','Remark','CHEST PAIN UNDER INVESTIGATION TO R/O CAD','','',0,'0000-00-00 00:00:00','drarchit','2025-11-13 12:57:46','','0000-00-00 00:00:00'),(5123,0,0,2462,2406,3233,0,0,NULL,'','HIST','ZZZ','Remark','<p>previously k/c/o---bppv</p>\n\n<p>presently headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 13:00:43','','0000-00-00 00:00:00'),(5124,0,0,2462,2406,3233,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike--nads</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 13:01:04','','0000-00-00 00:00:00'),(5125,0,0,2462,2406,3233,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 13:01:12','','0000-00-00 00:00:00'),(5126,0,0,2463,2407,3235,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 -2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 13:07:27','','0000-00-00 00:00:00'),(5127,0,0,2463,2407,3235,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rotatory feeling for few mins on change of posture</p>\n\n<p>heaviness of of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 13:08:12','','0000-00-00 00:00:00'),(5128,0,0,2463,2407,3235,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--absnet</p>\n\n<p>dix halpiek--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---left moderate to severe sn deafness</p>\n\n<p>stabilometry-reduced vestibular score</p>\n\n<p>vng--leftpost canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 13:08:19','darshan','2025-11-13 14:08:19'),(5129,0,0,2439,155,3196,0,0,NULL,'','ADVICE','','','<P>ADVISE:&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>- CORONARY ANGIOGRAPHY SOS INTERVENTION.</P>\r\n\r\n<P>- TREATMENT AS PER CURRENT TREATMENT.</P>\r\n\r\n<P>- 2D-ECHO&nbsp;</P>\r\n\r\n<P>- CONTINUES HOSPITALIZATION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 13:08:22','mo','2025-11-13 13:13:57'),(5130,0,0,2463,2407,3235,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 13:08:27','','0000-00-00 00:00:00'),(5131,0,0,2439,155,3196,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.STK 15 LAC IU /NS 100 ML OVER 1 HOURS STAT</P>\r\n\r\n<P>INJ.CLEXANE 0.6 S/C BD</P>\r\n\r\n<P>INJ. PANTOP 40MG IV OD</P>\r\n\r\n<P>INJ.VOMISET 4 MG STAT THAN SOS</P>\r\n\r\n<P>INJ. HAI DRIP AS PER RBS&nbsp;</P>\r\n\r\n<P>TAB ECOSPRIN 150 OD</P>\r\n\r\n<P>TAB CLAVIX 75 0-0-1&nbsp;</P>\r\n\r\n<P>TAB LIPITAS 40 MG 0-0-1&nbsp;</P>\r\n\r\n<P>TAB DAPAVEL 5 10/5 1-0-0 BBF</P>\r\n\r\n<P>IVF&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 13:11:22','mo','2025-11-13 13:13:57'),(5132,0,0,2447,2390,3209,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 13:12:35','','0000-00-00 00:00:00'),(5134,0,0,1134,1096,3243,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 13:16:53','','0000-00-00 00:00:00'),(5135,0,0,2455,2399,3221,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 13:23:52','','0000-00-00 00:00:00'),(5138,0,0,2447,2390,3209,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-13 13:27:29','','0000-00-00 00:00:00'),(5140,0,0,1929,1882,3244,0,0,NULL,'','HIST','ZZZ','Remark','<p>both ear wax removed</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 13:42:16','darshan','2025-11-13 13:42:38'),(5142,0,0,2455,2399,3221,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-13 13:43:46','','0000-00-00 00:00:00'),(5143,0,0,2442,2385,3201,0,0,NULL,'','CC','ZZZ','Remark','C/O ABD PAIN  | 10 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-13 13:47:00','','0000-00-00 00:00:00'),(5144,0,0,2442,2385,3201,0,0,NULL,'','CC','ZZZ','Remark','C/O COUGH | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-13 13:47:00','','0000-00-00 00:00:00'),(5145,0,0,2442,2385,3201,0,0,NULL,'','CC','ZZZ','Remark','C/O FEVER  | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-13 13:47:00','','0000-00-00 00:00:00'),(5146,0,0,2457,2401,3224,0,0,NULL,'','CC','ZZZ','Remark','C/O SLURRING OF SPEECH | 1 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-13 13:52:11','','0000-00-00 00:00:00'),(5147,0,0,2457,2401,3224,0,0,NULL,'','CC','ZZZ','Remark','C/O WEAKNESS LT UL AND LL | 2 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-13 13:52:11','','0000-00-00 00:00:00'),(5148,0,0,2457,2401,3224,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CNS - HF -CONCIOUS ORIENTED&thinsp;</p>\n\n<p>&thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp;CN- SLURRING OF SPEECH ++</p>\n\n<p>&thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp; POWER LT SIDED POWER GRADE 3/5 BOTH UL AND LL</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-13 13:53:22','','0000-00-00 00:00:00'),(5150,0,0,2457,2401,3224,0,0,NULL,'','MADVICE','ZZZ','Remark','ADVICE - ADMISSION REFUSED BY RELATIVES','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-13 13:58:04','','0000-00-00 00:00:00'),(5151,0,0,2440,2383,3198,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 14:04:26','','0000-00-00 00:00:00'),(5153,0,0,2462,2406,3233,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-13 14:05:27','','0000-00-00 00:00:00'),(5154,0,0,2463,2407,3235,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 14:08:39','','0000-00-00 00:00:00'),(5156,0,0,1228,1189,3246,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurece of vertigo and headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 14:13:22','','0000-00-00 00:00:00'),(5157,0,0,1929,1882,3244,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>BTM--i/n</p>\n\n<p>pta--right very severe sn deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 14:16:13','','0000-00-00 00:00:00'),(5159,0,0,2463,2407,3235,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVAUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-13 14:17:50','','0000-00-00 00:00:00'),(5160,0,0,2471,2415,3248,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 14:22:51','','0000-00-00 00:00:00'),(5161,0,0,2473,2417,3251,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-medicine skipped&thinsp;</p>\n\n<p>recurence of vertigo and&thinsp; headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 14:28:20','','0000-00-00 00:00:00'),(5162,0,0,2473,2417,3251,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 14:28:32','','0000-00-00 00:00:00'),(5163,0,0,1852,1806,3256,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:05:26','','0000-00-00 00:00:00'),(5165,0,0,1852,1806,3256,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:06:51','','0000-00-00 00:00:00'),(5166,0,0,2475,2419,3253,0,0,NULL,'','CC','ZZZ','Remark','SENSE OF IMBALANCE ---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:12:41','','0000-00-00 00:00:00'),(5167,0,0,2475,2419,3253,0,0,NULL,'','HIST','ZZZ','Remark','<p>pt continuously feels that she is moving</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:13:06','','0000-00-00 00:00:00'),(5168,0,0,2475,2419,3253,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vng--central variety of nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:13:25','darshan','2025-11-13 18:20:01'),(5170,0,0,2475,2419,3253,0,0,NULL,'','DIAG','ZZZ','Remark','PPPD','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:13:34','','0000-00-00 00:00:00'),(5171,0,0,2477,2421,3255,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for giddiness&thinsp;</p>\n\n<p>left ear tinnitus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:16:04','','0000-00-00 00:00:00'),(5172,0,0,2476,2420,3254,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:19:48','','0000-00-00 00:00:00'),(5173,0,0,2476,2420,3254,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:19:57','','0000-00-00 00:00:00'),(5174,0,0,1503,1462,3257,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:23:27','','0000-00-00 00:00:00'),(5176,0,0,1503,1462,3257,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:24:52','','0000-00-00 00:00:00'),(5177,0,0,2478,2422,3258,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:26:50','','0000-00-00 00:00:00'),(5178,0,0,2480,2424,3260,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3-4 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:37:46','','0000-00-00 00:00:00'),(5179,0,0,2480,2424,3260,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotawotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:38:11','','0000-00-00 00:00:00'),(5180,0,0,2480,2424,3260,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilatler high freq severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--Bilatelra vestibulopathy with hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:38:29','darshan','2025-11-13 18:31:07'),(5182,0,0,2479,2423,3259,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:49:10','','0000-00-00 00:00:00'),(5183,0,0,2479,2423,3259,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:49:51','','0000-00-00 00:00:00'),(5184,0,0,2479,2423,3259,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--central vareity of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:50:03','darshan','2025-11-13 18:59:44'),(5186,0,0,2481,2425,3261,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 17:59:34','','0000-00-00 00:00:00'),(5187,0,0,2482,2426,3262,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ---2 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 18:08:47','','0000-00-00 00:00:00'),(5188,0,0,2482,2426,3262,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rotaotyr feeling remains for few hrs&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 18:09:21','','0000-00-00 00:00:00'),(5189,0,0,2482,2426,3262,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced ss score</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 18:09:30','darshan','2025-11-13 19:24:32'),(5192,0,0,2484,2428,3265,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 18:12:32','','0000-00-00 00:00:00'),(5193,0,0,2487,2431,3269,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 18:15:20','','0000-00-00 00:00:00'),(5194,0,0,2406,2350,3147,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ACOUSTIC SCHWANNOMA','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 18:26:08','','0000-00-00 00:00:00'),(5196,0,0,2472,2416,3249,0,0,NULL,'','MADVICE','ZZZ','Remark','CAG TO R/O DCM VS  CAD','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-13 18:31:16','','0000-00-00 00:00:00'),(5197,0,0,2480,2424,3260,0,0,NULL,'','DIAG','ZZZ','Remark','BILATERAL VESTIBULOPATHY WITH BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 18:31:22','','0000-00-00 00:00:00'),(5198,0,0,2480,2424,3260,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 18:32:14','','0000-00-00 00:00:00'),(5200,0,0,2485,2429,3266,0,0,NULL,'','CC','ZZZ','Remark','THROAT PAIN-----4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 18:39:35','','0000-00-00 00:00:00'),(5201,0,0,2485,2429,3266,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>acute follicular tonsillitis&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 18:39:54','','0000-00-00 00:00:00'),(5203,0,0,2480,2424,3260,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-13 18:44:59','','0000-00-00 00:00:00'),(5204,0,0,2150,2097,3280,0,0,NULL,'','HIST','ZZZ','Remark','<p>right ear wax--removd&thinsp;</p>\n\n<p>Rtm---i/n</p>\n\n<p>left cervial lymphadentis</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 18:53:21','','0000-00-00 00:00:00'),(5206,0,0,2150,2097,3280,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS FNAC AND CT NECK ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-13 18:57:14','','0000-00-00 00:00:00'),(5207,0,0,692,662,3281,0,0,NULL,'','HIST','ZZZ','Remark','<p>right ear wax removed&thinsp;</p>\n\n<p>Left ear wax&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 19:25:58','','0000-00-00 00:00:00'),(5208,0,0,692,662,3281,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT EAR WAX REMOVAL NEXT TIME','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-13 19:26:12','','0000-00-00 00:00:00'),(5209,0,0,667,637,3273,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---two episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 19:28:41','','0000-00-00 00:00:00'),(5213,0,0,2493,2437,3278,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 19:31:52','','0000-00-00 00:00:00'),(5215,0,0,2414,2359,3162,0,0,NULL,'','MADVICE','ZZZ','Remark','STRICT BP MONITORING','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-13 19:32:27','','0000-00-00 00:00:00'),(5216,0,0,562,536,3288,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-13 19:38:35','','0000-00-00 00:00:00'),(5217,0,0,2445,2388,3206,0,0,NULL,'','CC','ZZZ','Remark','C/O WEIGHT LOSS ||','','',0,'0000-00-00 00:00:00','drarchit','2025-11-13 19:43:33','','0000-00-00 00:00:00'),(5218,0,0,982,147,2919,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 20:52:53','mo','2025-11-13 20:57:27'),(5219,0,0,2499,156,3294,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-13 21:52:51','mo','2025-11-15 19:25:30'),(5220,0,0,2499,156,3294,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 80&nbsp; YEARS OLD MALE&nbsp; PATIENT PRESENT WITH,<BR />\r\nH/O : POST CABG, PPI<BR />\r\nK/C/O: HTN, DM -II, BPH, IHD, ALZIMER DISEASE.<BR />\r\nC/O: DIZZINESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;GENERALZED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ALTERED SENSORIUM</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;INVOLUNTARY PASSING URINE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FORGETFULLNESS OF MEMORY SINE TODAY EVENING<BR />\r\nPRIMARY TREATMENT TAKEN AT DR.AGRAWAT.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 98.4`F<BR />\r\nPR- 76/MIN<BR />\r\nBP- 176/90 MMHG&nbsp;<BR />\r\nSPO2-96% ON RA&nbsp;<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-&nbsp; CONFUSED, OCC FOLLO VERBAL COMAND, MOVING ALL FOR LIMBES, GCS = E4V4M6.<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13-11-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>REFERENCE DONE DR. KAUMIL KOTHARI (NEUROPHYSIAN) ADVICE FOLLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14-11-2025,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>FOLEY&#39;S CATHETER DONE WITH ALL ASEPTIC PRECATION</P>\r\n\r\n<P>MRI BRAIN DONE WITH PACEMAKER PROTOCOL SO AT A TIME OF MRI PACEMAKER OFF.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>2D ECHO DONE.</P>\r\n\r\n<P>EEG DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>NEUROPHYSICIAN REVIEW DONE.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNSOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15-11-2025</P>\r\n\r\n<P>POST MRI PACEMAKER RESTART&nbsp;</P>\r\n\r\n<P>USG ABDOMEN DONE REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>URINE R/M DONE WHICH S/O: 25-30 PUS CELL,4-5 RBC,PROTEIN +,KETONES+</P>\r\n\r\n<P>FOLEY&#39;S CATHETER CLAMP AND REMOVE&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.<BR />\r\nPATIENT RESPONDS WELL WITH ONGOING TREATMENT.</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 21:52:51','mo','2025-11-15 19:25:30'),(5221,0,0,2499,156,3294,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. VOMISET</P>\r\n\r\n<P>INJ. LEVIGRESS</P>\r\n\r\n<P>INJ. UNITREX S</P>\r\n\r\n<P>INJ. THIAMIN</P>\r\n\r\n<P>INJ. NS/RL</P>\r\n\r\n<P>INJ. ELDERVIT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 21:52:51','mo','2025-11-15 19:25:30'),(5222,0,0,2424,152,3176,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>CARCINOMA OF TOUNGE WITH LUNG METS DOD - 2007.<BR />\r\n- LEFT HEMIGLOSSECTOMY DONE ON 11-04-2007</P>\r\n\r\n<P>-PORT - 60 GY/30 # FROM 11-05-2007 TO 22-06-2007.</P>\r\n\r\n<P>- DIF - 17 YEARS.</P>\r\n\r\n<P>RECURRENT IN JUNE - 2025,</P>\r\n\r\n<P>- HPE - RIGHT RMT - POOR DIFFERENTIATED SQUMAOUS CELL CARCINOMA WITH SACOMATOID DIFFRERENTIATION.</P>\r\n\r\n<P>- WIDE LOCAL EXCISION OF RITH RMT + BUCACAL MUCOSA LOWER ALVEOLUS WITH SEGMENTAL MANDIBULECTOMY ON 09-07-20525 AT FCRI HOSPITAL AHAMDABAD.</P>\r\n\r\n<P>- 12-06-2025 ICH - POSITIVE&nbsp;</P>\r\n\r\n<P>- RESUTURING DONE GCRI ON 30-07-2025</P>\r\n\r\n<P>- OMCT FROM 16-10-2025.<BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 22:04:10','mo','2025-11-15 08:50:28'),(5223,0,0,2424,152,3176,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 62 YEARS OLD FEMALE PATIENT PRESENT WITH,<BR />\r\nK/C/O: CA TOUNGE OEPRATED AT 2007, RT IN SITU.</P>\r\n\r\n<P>H/O PRESTENDE WITH SEVER RESPIRATORY DISTRESS TODAY EVENING, SEVER TACHYCARDIA, TACHYPNEA WITH SPO2 LEVEL DECRESED.<BR />\r\nC/O&nbsp; VOMINTING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DOE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BREATHLESSNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; TODAY EVENING.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 97.0`F<BR />\r\nPR- 130/MIN<BR />\r\nBP- 117/90 MM HG&nbsp;<BR />\r\nSPO2- 70% ON RA&nbsp;<BR />\r\nRR- 29/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+, BILATEARL SPASAM +NT, RIGHT &GT;LEFT.<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT, RT IN SITU.</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12-11-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF DOE AND SPO2 LEVEL DECRESED NIV SUPPORT START.</P>\r\n\r\n<P>CHEST&nbsp; X RAY DONE REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>ECG DOEN.</P>\r\n\r\n<P>FOLY`S CATH DONE.</P>\r\n\r\n<P>IN VIEW OF HYPOKALAMIA NEBULIZATION AND K BIND SUCHET GIVEN.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION INJ. NORAD START BY INFUSION PUMP.</P>\r\n\r\n<P>IVF BOLUS GIVEN.</P>\r\n\r\n<P>ABG DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>INJ.NORAD CONTINUE.</P>\r\n\r\n<P>HR CT THOREX DONE - REPROT ATTACH WITH FILE.</P>\r\n\r\n<P>NIV SUPPORT STOP START O2 VIA MASK.</P>\r\n\r\n<P>2D ECHO DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>INJ.NORAD TAPPER AND OFF.</P>\r\n\r\n<P>O2 SUPPORT GIVEN VIA MASK.</P>\r\n\r\n<P>GC POOR PROGNOSIS EXPLAIN TO PATIENT RELATIVES.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15/11/2025 ON</P>\r\n\r\n<P>PATIENT ON NIV + INJ.NORAD CONTINUES ADVISE CONTINUES HOSPITALIZATION, NIV SUPPORT AND IV TREATMENT GC INFORMED TO RELATIVES IN DETAILING BUT PATIENT RELATIVES NOT WILLING FURTHER TREATMENT AND HOSPITAL STAY AND WANTS TO DISCHARGE THAN DAMA&nbsp; AFTER CONSENT WITH OWN RISK.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 22:04:10','mo','2025-11-15 08:50:28'),(5224,0,0,2424,152,3176,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. UNITREX S</P>\r\n\r\n<P>INJ. AMIKACIN</P>\r\n\r\n<P>INJ. CLINDATEC</P>\r\n\r\n<P>INJ. MEZOR</P>\r\n\r\n<P>INJ. LINOX</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ. NAHCO3</P>\r\n\r\n<P>INJ. CAL GLUCONATE</P>\r\n\r\n<P>INJ. NORAD</P>\r\n\r\n<P>INJ. DYTOR</P>\r\n\r\n<P>TAB. ZEPTAS</P>\r\n\r\n<P>NEB. ASTHALIN</P>\r\n\r\n<P>NEB. BUDACORT</P>\r\n\r\n<P>K BIND SUCHET</P>\r\n\r\n<P>INJ. ELDERVIT</P>\r\n\r\n<P>INJ. NS</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 22:04:10','mo','2025-11-15 08:50:28'),(5225,0,0,2243,146,2879,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-13 22:14:19','mo','2025-12-01 21:30:57'),(5226,0,0,2243,146,2879,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp;70 YEARS OLD MALE&nbsp;PATIENT PRESENT WITH,<BR />\r\nH/O : PERSISTENT VOMITING WITH COUGHING.</P>\r\n\r\n<P>FOR THAT PT WAS ADMITTED AT PRATHAM HOSPITAL FORM 29-10-2025 TO 4-11-2025, DIAGNOSED LRTI, SEPSIS, AND NJ TUBE INSERTED.<BR />\r\nK/C/O: CA ESOPHAGUS , S/P SURGERY.<BR />\r\nC/O: POOR COUGH REFLEX,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DROWSINESS, LETHARGIC</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GEN. WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; RESPIRATORY DISTRESS&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SCROTUM SWELLING</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE 2-3&nbsp;DAYS&nbsp;<BR />\r\nPRIMARY TREATMENT TAKEN AT DR. YASH PANDYA (ENT SURGEON)<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 98.0`F<BR />\r\nPR- 114/MIN<BR />\r\nBP- 130/80 MMHG&nbsp;<BR />\r\nSPO2-93% ON RA&nbsp;<BR />\r\nRR-24/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+, BILATERAL CRAPS +NT.<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10-11-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF POOR COUG REFLEX AND ASPIRATION ENDOTRACHAL INTUBATION DONE BY DR. VISHAL MEVA (MD). AND PUT ON VENTILATOR SUPPROT AC/VC MODE.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>RIGHT IJV CVP DONE BY DR. CHITANYASINH GOHIL.</P>\r\n\r\n<P>REFERENCE DONE DR. KAUMIL KOTHARI(NERUROPHYSAIN), ADVCIE FOLLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>ON VENTILATOR SUPPORT AC/VC MODE.</P>\r\n\r\n<P>USG ABDOMEN AND USG SCROTUM DONE - REPROT ATTACH WITH FILE.</P>\r\n\r\n<P>CSF LUMBER PUNCTURE DONE BY DR. ARCHIT RATHOD.</P>\r\n\r\n<P>CSF EXAMINATION - PROTEIN - 208.9 MG/DL, TOTAL COUNT - 31, POLYMORPHS - 10 %, LYMPHOCYTES - 90 %, ADA FLUID - 7.42 U/L.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>ON VENTILATOR SUPPORT AC/VC MODE AND ALTERNATE CPAP MODE.</P>\r\n\r\n<P>T`STOMY DONE BY DR. ARCHIT RATHOD.</P>\r\n\r\n<P>CHEST X RAY DONE - REPROT ATTACH WITH FILE.</P>\r\n\r\n<P>ET CULTURE AND SENSITINVITY - GRAM NEGATIVE BACILLI SEEN, PSEUDOMONAS AERUGINOSA.</P>\r\n\r\n<P>ACC TO CULTURE REPORT STEP UP ANTIBIOTIC MEDICINE.</P>\r\n\r\n<P>CEREBROSPINAL FLUID - MTB NOT DETECTED, A.F.B NOT DETECTED.</P>\r\n\r\n<P>MRI BRAIN (PLAIN + CONTRAST ) DONE - REPROT ATTACH WITH FILE.</P>\r\n\r\n<P>SEEN BY DR.KAUMIL KOTHARI (NEUROPHYSIAN) ADVICE FOLLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>CPAP SUPPORT OFF AND O2 SUPPORT VIA T STOMY.</P>\r\n\r\n<P>BIOFIRE MENINGITIS REPORT DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>SEEN BY DR. ADITI THANKI (ONCO PHYSIAN) ADVICE FOLLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14-11-2025,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>PATIENT ON O2 T-PIECE SUPPORT.</P>\r\n\r\n<P>O2 OFF TRIAL GIVEN.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15-11-2025,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>PATIENT ON O2 T-PIECE SUPPORT.</P>\r\n\r\n<P>O2 OFF TRIAL GIVEN.</P>\r\n\r\n<P>CATHTER CLAMPING STARTED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16-11-2025</P>\r\n\r\n<P>CATHETER CLAMP &AMP; REMOVE</P>\r\n\r\n<P>IN VIEW OF BILIOUS SECRETION&nbsp;FROM T&#39;STOMY ,&nbsp;PERSISTENT VOMITING AND PATIENT BEING TACHYPNIC SO SHIFTED TO ICU FOR FURTHER INTENSIVE MANAGEMENT&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17-11-2025,</P>\r\n\r\n<P>PATIENT DROWSY,OCC.F/V/C</P>\r\n\r\n<P>PATIENT ON O2 T-PIECE SUPORT.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18-11-2025,</P>\r\n\r\n<P>PATIENT DROWSY,OCC.F/V/C</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE.</P>\r\n\r\n<P>LP DONE BY DR.CHAITANYA WITH ALL ASEPTIC PRECAUTIONS.CSF ROUTINE MICRO SENT.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>NEUROPHYSICIAN REVIEW TAKEN.FOLLOWED ALL HI ADVICE.TREATMENT MODIFIED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19-11-2025,</P>\r\n\r\n<P>PATIENT DROWSY/AROUSABLE,SIMPLE F/V/C</P>\r\n\r\n<P>PATIENT ON O2 T-PIECE SUPPORT.</P>\r\n\r\n<P>MRI BRAIN PLAIN+CONTAST DONE UNDER GA.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>LIMB AND CHEST PT STARTED.</P>\r\n\r\n<P>PATIENT WHEEL CHAIR MOBILIZED.</P>\r\n\r\n<P>SUDDENLY PATIENT DEVELOPED RESPIRATORY DISTRESS AND PATIENT WAS BECOMING HYPOXIC SO,IMMEDIATELY TRACHEOSTOMY CHANGED AND PUT ON VENTILATOR SUPPORT.</P>\r\n\r\n<P>GENERAL CONDITION EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20-11-2025,</P>\r\n\r\n<P>PATIENT DROWSY,AROUSABLE,F/V/C</P>\r\n\r\n<P>VENTI-OFF TRIAL GIVEN.PUT ON T-PIECE SUPPORT.O2 OFF TRIAL GIVEN.</P>\r\n\r\n<P>PATIENT WHEEL CHAIR MOBILIZED.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>NEUROPHYSICIAN DR KAUMIL KOTHARI&#39;S REFERANCE DONE AND ALL HIS ADVICE FOLLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21-11-2025,</P>\r\n\r\n<P>PATIENT DROWSY,AROUSABLE,F/V/C</P>\r\n\r\n<P>PATIENT WHEEL CHAIR MOBILIZED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22-11-2025,</P>\r\n\r\n<P>PATIENT DROWSY,AROUSABLE,F/V/C</P>\r\n\r\n<P>PATIENT WHEEL CHAIR MOBILIZED.</P>\r\n\r\n<P>ABG DONE</P>\r\n\r\n<P>IN VIEW OF TRACHEAL SECRETION INJ AMPICILLIN STARTED</P>\r\n\r\n<P>TRACHEAL CS SENT WHICH S/O PSEUDOMONAS AERUGINOSA HEAVY GROWTH</P>\r\n\r\n<P>REVIW OF DR KAUMIL KOTHARI(NEUROPHYSICIAN) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>REF OF DR ROSHAN MISTRY (NEURO PHYSICIAN ) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23-11-2025,</P>\r\n\r\n<P>PATIENT DROWSY, GCS POOR EXPLAINED TO RELATIVE</P>\r\n\r\n<P>EEG DONE</P>\r\n\r\n<P>RTF 100ML @ 4 HRLY</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24-11-2025,</P>\r\n\r\n<P>PATIENT DROWSY, GCS POOR</P>\r\n\r\n<P>IN VIEW OF TACHYPNEA AND HYPOXIA O2 SUPPORT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>25-11-2025,</P>\r\n\r\n<P>PATIENT DROWSY, GCS POOR</P>\r\n\r\n<P>ANTIBIOTICS STEP UP DONE</P>\r\n\r\n<P>NMO ANTIBODIES SENT WHICH S/O NEGATIVE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26-11-2025</P>\r\n\r\n<P>PATIENT DROWSY, GCS POOR</P>\r\n\r\n<P>FOLEY&#39;S CATHETR CHANGED WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27/11/2025</P>\r\n\r\n<P>PATIENT&nbsp; GCS POOR</P>\r\n\r\n<P>LUMBAR PUNCTURE DONE BY DR CHAITANYA GOHIL (ANAESTHETIC)WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>CSF R/M AND ADA DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28/11/2025</P>\r\n\r\n<P>INTRATHECAL CATHETER DONE BY DR CHAITANYASINH GOHIL (ANEASTHETIST) DONE IN ICU UNDER OBSERVATION WITH ALL ASEPTIC PRECAUTION&nbsp;</P>\r\n\r\n<P>INJ VANCOMYCIN AND GENTAMYCIN INTRATHECAL STARTED</P>\r\n\r\n<P>02 SUPPORT OFF,PATIENT MAINTAIN WELL ON ROOM AIR</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>29/11/2025</P>\r\n\r\n<P>PATIENT IN COMATOS CONDITION, GCS POOR</P>\r\n\r\n<P>PATIENT SHIFT TO WARD&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>30/11/2025</P>\r\n\r\n<P>GCS POOR</P>\r\n\r\n<P>PATIENT CONDITION AND PROGNOSIS EXPLAIN TO PATIENT RELATIVE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>1/12/2025</P>\r\n\r\n<P>CSF C/S INTERIM REPORT S/O: NO ORGANIS,FINAL REPORT AWAITED&nbsp;</P>\r\n\r\n<P>NJ FEEDING TOLERATING, CONTINUE 100ML/4HOURLY&nbsp;</P>\r\n\r\n<P>GCS POOR,PROGOSIS POOR</P>\r\n\r\n<P>PROGNOSIS EXPLAIN TO RELATIVE AND NOW PATIENT BEING DAMA&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 22:14:19','mo','2025-12-01 21:30:57'),(5227,0,0,2243,146,2879,0,0,NULL,'','DISCDIAG','','','<P><STRONG>- MENINGITIS ? CAUSE (? PARANEOPLASTIC , MALIGNANT VS BACTERIAL VS FUNGAL-WORKUP NEGATIVE)</STRONG></P>\r\n\r\n<P><STRONG>- B/L EXTENSIVE ASPIRATION PNEUMONITIS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>- WITH VOCAL CORD PALSY ,3RD NERVE PALSY&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>- K/CO: CA OESOPHAGUS&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 22:41:26','mo','2025-12-01 21:30:57'),(5228,0,0,2243,146,2879,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. ZOSTUM&nbsp;</P>\r\n\r\n<P>INJ. MERO</P>\r\n\r\n<P>INJ. AMIKACIN</P>\r\n\r\n<P>INJ. ZEVICEFTA</P>\r\n\r\n<P>INJ. AZENOM</P>\r\n\r\n<P>INJ. METROGYL</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. VOMISET</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>INJ. DERIPHYLIN</P>\r\n\r\n<P>TAB. LINOX</P>\r\n\r\n<P>INJ. LEVIGRESS</P>\r\n\r\n<P>INJ. OTSKI</P>\r\n\r\n<P>TAB. CORTEL</P>\r\n\r\n<P>TAB. MODALERT</P>\r\n\r\n<P>NEB. DUOLIN : BUDACORT</P>\r\n\r\n<P>INJ. DEXONA</P>\r\n\r\n<P>INJ. ACIVIR</P>\r\n\r\n<P>LIQ. LACTIHEP PLUS</P>\r\n\r\n<P>NEB. MESNA</P>\r\n\r\n<P>TAB QUTAN</P>\r\n\r\n<P>INJ H ACTRAPID</P>\r\n\r\n<P>INJ.PRIMACORT</P>\r\n\r\n<P>TAB.BISOBIS</P>\r\n\r\n<P>TAB.ARKAMINE</P>\r\n\r\n<P>INJ.CLEXANE</P>\r\n\r\n<P>PROTINEX PROTIEN POWDER</P>\r\n\r\n<P>TAB.GABAPANTINE</P>\r\n\r\n<P>TAB.PREMIPREX</P>\r\n\r\n<P>INJ.MUCOSYS</P>\r\n\r\n<P>INJ.TRENEXA</P>\r\n\r\n<P>TAB.MODALERT</P>\r\n\r\n<P>NEOSPORIN POWDER</P>\r\n\r\n<P>INJ LACOSAM</P>\r\n\r\n<P>TAB FOLE</P>\r\n\r\n<P>INJ AMPICILIN</P>\r\n\r\n<P>INJ EPSOLIN</P>\r\n\r\n<P>INJ SOLUMEDROL</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>INJ VANCOMYCIN</P>\r\n\r\n<P>INJ GENTAMYCIN</P>\r\n\r\n<P>INJ EPIME TZ</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 22:41:26','mo','2025-12-01 21:30:57'),(5229,0,0,2385,153,3190,0,0,NULL,'','DISCDIAG','','','<P><STRONG>UTERINE FIBRIOD</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 23:43:42','mo','2025-11-15 12:56:45'),(5230,0,0,2385,153,3190,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>TOTAL LAPAROSCOPIC HYSTERECTOMY + B/L SALPINECTOMY DONE BY DR PRATAPSINH DODIYA ON 13/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 23:43:42','mo','2025-11-15 12:56:45'),(5231,0,0,2384,150,3113,0,0,NULL,'','DISCDIAG','','','<P><STRONG>HEMOPERITONEUM</STRONG></P>\r\n\r\n<P><STRONG>URINARY BLADDER INJURY (BLUNT ABDOMEN)</STRONG></P>\r\n\r\n<P><STRONG>LEFT CALCANEAM FRACTURE</STRONG></P>\r\n\r\n<P><STRONG>L1 VEREBRAL BODY FRACTURE WITH MILD COMPRESSION</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 23:45:05','mo','2025-11-15 12:58:21'),(5232,0,0,2384,150,3113,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O: RIGHT ACETABULUM #</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;B/L TIBIAL PLATTING BEFORE 7 YEARS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 23:45:05','mo','2025-11-15 12:58:21'),(5233,0,0,2384,150,3113,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 32 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nA/H/O: FALL DOWN FROM BIKE YESTERDAY AT AROUND 11:00 AM NEAR KUMBHARA VILLAGE (CHOTILA)<BR />\r\nF/BY, C/O: RETENTION OF URINE WITH LOWER ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BACK PAIN, UNABLE TO WALK</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; LEFT ANCKE PAIN AND SWELLING WITH RESTRUCTED MOVEMENT</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NO HEAD INJURY, VOMITING, ENT BLEED OR GTCS&nbsp;</P>\r\n\r\n<P>FOR ALL ABOVE MENTIONED COMPLAINTS PATIENT TOOK PRIMARY TREATMENT AT PHC CHOTILA AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>CHEST X-RAY DONE ON 12/11/25</P>\r\n\r\n<P>X-RAY LEFT ANCKLE AP/LAT DONE ON 12/11/25 WHICH S/O :</P>\r\n\r\n<P>-FRACTURE OF LEFT CALCANEUM&nbsp;</P>\r\n\r\n<P>-ORTHOPEDIC IMPLANT SEEN IN LEFT TIBIA</P>\r\n\r\n<P>MDCT SCAN OF ABDOMEN WITH PELVIS (CONTRAST) WHICH S/O:</P>\r\n\r\n<P>-INTRAPERITONEAL BLADDER INJURY</P>\r\n\r\n<P>-COMPRESSION FRACTURE OF L1</P>\r\n\r\n<P>OTHER FINDINGS ARE ACCORDING TO REPORT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-124/MIN, BP-114/70MMHG, SPO2-97% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12/11/25,<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>UROSURGEON DR PRATIK SHAH&#39;S REFERANCE DONE AND SILICON CATHETER NO:14 INSERTED BY HIM WITH ALL ASEPTIC PRECAUTIONS.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nLAPAROSCOPIC URINARY BLADDER TEAR REPAIR WITH THOROUGH PERITONEAL LAVAGE DONE BY DR PRATAPSINH DODIYA ON 12/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO ICU FOR FURTHER OBSERVATION.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13/11/25,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVES.</P>\r\n\r\n<P>SPINE AND NEURO SURGEON DR RIDHAM KHANDHERIYA&#39;S REFERANCE DONE AND ALL HIS ADVICE FOLLOWED.</P>\r\n\r\n<P>MRI OF LUMBAR SPINE DONE, REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>PATIENT SHIFTED TO WARD WITH STABLE STATUS.</P>\r\n\r\n<P>REVIEW OF DR RIDHAM DONE AND ADVICED FOR LAMINECTOMY &AMP; FIXATION BUT PATIENT&#39;S RELATIVE REFUSED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14/11/25,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>IN VIEW OF LEFT CALCANEUM FRACTURE, ORTHOPED DR SAGAR KHANAPARA DONE.</P>\r\n\r\n<P>X-RAY LEFT CALCANEUM AXIAL DONE.</P>\r\n\r\n<P>PLASTER (BK SLAB) ON LEFT FOOT GIVEN BY DR SAGAR KHANAPARA.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15/11/25,</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>REQUIRED REPEAT BLOOD INVESTIGATION DONE WHICH WAS IMPROVED.</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE AND RELATIVE REQUESTS FOR DISCHARGE SO NOW PATIENT BEING DOR.<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-13 23:45:05','mo','2025-11-15 12:58:21'),(5234,0,0,2503,2446,3298,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 11:04:19','','0000-00-00 00:00:00'),(5235,0,0,2503,2446,3298,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 11:04:33','','0000-00-00 00:00:00'),(5236,0,0,2503,2446,3298,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 11:04:35','','0000-00-00 00:00:00'),(5237,0,0,2503,2446,3298,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 11:04:37','','0000-00-00 00:00:00'),(5238,0,0,2507,2448,3302,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR DEAFNESS AND TINNITUS ----20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 11:08:48','','0000-00-00 00:00:00'),(5239,0,0,2507,2448,3302,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---i/n</p>\n\n<p>Pta--left severe sn deafness(o)</p>\n\n<p>pta----left severe sn deafness</p>\n\n<p>OAE----poor corelation</p>\n\n<p>left intra tympanic DM given uneventfully</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 11:09:04','darshan','2025-11-14 13:21:20'),(5240,0,0,2510,2451,3307,0,0,NULL,'','CC','ZZZ','Remark','SENSE OF IMBALANCE ---2.5 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 11:16:44','','0000-00-00 00:00:00'),(5241,0,0,2510,2451,3307,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic imbalanace remains for few mins&thinsp;</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 11:17:08','','0000-00-00 00:00:00'),(5242,0,0,2510,2451,3307,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus--absent</p>\n\n<p>dx hallpike--nasd</p>\n\n<p>hit--nad</p>\n\n<p>pta---bialtelr high freq severe sn deafness</p>\n\n<p>stabilomtry-reduced vestibular score</p>\n\n<p>CCG---AP displacement +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 11:17:24','darshan','2025-11-14 12:42:25'),(5244,0,0,1903,1857,3305,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 11:21:23','','0000-00-00 00:00:00'),(5245,0,0,2511,2452,3308,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 11:25:02','','0000-00-00 00:00:00'),(5246,0,0,2512,2453,3309,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 11:28:49','','0000-00-00 00:00:00'),(5247,0,0,2508,2449,3304,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 11:33:58','','0000-00-00 00:00:00'),(5249,0,0,2514,2455,3311,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 11:41:03','','0000-00-00 00:00:00'),(5250,0,0,21,586,3312,0,0,NULL,'','MADVICE','ZZZ','Remark','PHYSIOTHERAPY ','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-14 11:41:45','','0000-00-00 00:00:00'),(5251,0,0,2515,2456,3313,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 11:42:53','','0000-00-00 00:00:00'),(5252,0,0,2514,2455,3311,0,0,NULL,'','CC','ZZZ','Remark','LEFT SIDE THROAT PAIN---2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 11:55:56','','0000-00-00 00:00:00'),(5253,0,0,2514,2455,3311,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx--congested&thinsp;</p>\n\n<p>neck--nad</p>\n\n<p>IDL---uncooperative</p>\n\n<p>Flexible laryngoscopy---left PF ulcer +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 11:56:07','darshan','2025-11-14 13:35:25'),(5254,0,0,619,589,3320,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--- better&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 11:58:41','','0000-00-00 00:00:00'),(5255,0,0,2523,2464,3326,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 12:04:42','','0000-00-00 00:00:00'),(5256,0,0,818,2467,3330,0,0,NULL,'','DIAG','ZZZ','Remark','MULTIPALE JOINT PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-14 12:08:43','','0000-00-00 00:00:00'),(5257,0,0,2516,2457,3314,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upc ase---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 12:16:17','','0000-00-00 00:00:00'),(5258,0,0,772,741,3319,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 12:19:52','','0000-00-00 00:00:00'),(5260,0,0,2503,2446,3298,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 12:28:19','','0000-00-00 00:00:00'),(5261,0,0,2531,2473,3338,0,0,NULL,'','CC','ZZZ','Remark','POSTED FOR TURP||','','',0,'0000-00-00 00:00:00','drarchit','2025-11-14 12:29:22','','0000-00-00 00:00:00'),(5262,0,0,2531,2473,3338,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO C/O DOE&thinsp;</p>\n\n<p>NO C/O CHEST PAIN&thinsp;</p>\n\n<p>NO C/O PALPITATION</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-14 12:29:44','','0000-00-00 00:00:00'),(5263,0,0,2531,2473,3338,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>R/S- NO CREPTS, NO RHONCHI</p>\n\n<p>CVS- S1 S2 NORMAL, NO MURMUR</p>\n\n<p>CNS -CLINICALLY NAD</p>\n\n<p>ECG -NAD</p>\n\n<p>2D ECHO NORMAL EF-55%</p>\n\n<p>CXR -NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-14 12:34:02','','0000-00-00 00:00:00'),(5264,0,0,2522,2463,3325,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR  DEAFNESS ---MANY MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 12:35:06','','0000-00-00 00:00:00'),(5268,0,0,2510,2451,3307,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 12:43:10','','0000-00-00 00:00:00'),(5271,0,0,2531,2473,3338,0,0,NULL,'','MADVICE','ZZZ','Remark','HOLD ECOSPRIN 5 DAYS BEFORE SURGERY AND START 2 DAYS POST OP.\nREPEAT S.K DAY BEFORE SURGERY\nPATIENT CAN BE TAKEN FOR SUREGERY WITH DUE ANESTHETIC DRUGS AND OPERATIVE RISK.\nK- BIND SACHET BD IN 1 GLASS OF WATER FOR 3 DAYS ','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-14 12:44:12','','0000-00-00 00:00:00'),(5272,0,0,2503,2446,3298,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 12:49:43','','0000-00-00 00:00:00'),(5274,0,0,2519,2460,3321,0,0,NULL,'','DIAG','ZZZ','Remark','RT COMMUNITY ACQUIRED PNEUMONIA','','',0,'0000-00-00 00:00:00','drarchit','2025-11-14 13:08:09','','0000-00-00 00:00:00'),(5277,0,0,2519,2460,3321,0,0,NULL,'','MADVICE','ZZZ','Remark','ADVICE -ADMISION SOS','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-14 13:08:46','','0000-00-00 00:00:00'),(5279,0,0,2503,2446,3298,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-14 13:12:00','','0000-00-00 00:00:00'),(5280,0,0,1396,1356,3331,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 13:13:21','','0000-00-00 00:00:00'),(5281,0,0,2522,2463,3325,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>BTM---i/n</p>\n\n<p>Pta---bialtelr very severe sn deafness</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 13:14:58','','0000-00-00 00:00:00'),(5283,0,0,2522,2463,3325,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 13:20:17','darshan','2025-11-14 13:20:19'),(5285,0,0,2522,2463,3325,0,0,NULL,'','MADVICE','ZZZ','Remark','HEARING AID TRIAL','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-14 13:20:20','','0000-00-00 00:00:00'),(5289,0,0,2510,2451,3307,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-14 13:32:30','','0000-00-00 00:00:00'),(5291,0,0,2534,2476,3342,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 13:38:19','','0000-00-00 00:00:00'),(5293,0,0,2507,2448,3302,0,0,NULL,'','MADVICE','ZZZ','Remark','PTA NEXT TIME ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-14 13:39:40','','0000-00-00 00:00:00'),(5295,0,0,2514,2455,3311,0,0,NULL,'','MADVICE','ZZZ','Remark','BIOPAY FROM LEFT PF FOSSA UNCER GA','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-14 13:43:48','','0000-00-00 00:00:00'),(5298,0,0,2527,2469,3333,0,0,NULL,'','MADVICE','ZZZ','Remark','NCV STUDY LT UL TO R/O CARPLE TUNNEL SYNDROME','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-14 13:54:50','','0000-00-00 00:00:00'),(5299,0,0,2536,2478,3344,0,0,NULL,'','CC','ZZZ','Remark','NOT TALKING INSULIN||','','',0,'0000-00-00 00:00:00','drarchit','2025-11-14 14:00:28','','0000-00-00 00:00:00'),(5300,0,0,2424,152,3176,0,0,NULL,'','DISCDIAG','','','<P><STRONG>? COMMUNITY ACQUIRED PNEUMONIA (CAP) WITH LUNG METS WITH LIVER METS WITH BONE METS IN CASE OF CA TOUNGE.</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 14:02:05','mo','2025-11-15 08:50:28'),(5301,0,0,2424,152,3176,0,0,NULL,'','DISCCOND','','','<P>PATIENT NIV SUPPORT WITH FIO2 :40 %&nbsp;</P>\r\n\r\n<P>ON DISCHARGE TIME PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>RTF - 200ML/2HRLY.</P>\r\n\r\n<P>FOLEY`S CATH IN SITU.</P>\r\n\r\n<P>CVP LINE IN SITU DAY-3</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 14:02:05','mo','2025-11-15 08:50:28'),(5302,0,0,2424,152,3176,0,0,NULL,'','ADVICE','','','<P>FOLY`S CARE</P>\r\n\r\n<P>O2 SUPPORT + NIV SUPPORT&nbsp;</P>\r\n\r\n<P>RTF CONTINUE.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 14:02:05','mo','2025-11-15 08:50:28'),(5303,0,0,2424,152,3176,0,0,NULL,'','TREATDISC_TI','','','<P>INJ. MEZOR 1 GM +NS 100ML IV TDS (3 DAYS GIVEN)</P>\r\n\r\n<P>INJ. LINOX 600MG IV BD (2 DAYS GIVEN)</P>\r\n\r\n<P>INJ. AMIKACIN 500MG IV OD (3 DAYS GIVEN)</P>\r\n\r\n<P>INJ.PANTODAC 40 MG IV BD</P>\r\n\r\n<P>INJ. EMSET 2ML IV TDS</P>\r\n\r\n<P>INJ. NAHCO3 25ML IV TDS</P>\r\n\r\n<P>INJ. CAL GLUCONATE 1AMP + NS 100ML IV TDS</P>\r\n\r\n<P>TAB. ZEPTAS 0.5 MG R/T 0-0-1</P>\r\n\r\n<P>NEB. BUDACORT TDS</P>\r\n\r\n<P>K BIND SUCHET R/T BD</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 14:02:05','mo','2025-11-15 08:50:28'),(5304,0,0,2542,2484,3355,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-recurence of vertig0</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 17:44:39','','0000-00-00 00:00:00'),(5305,0,0,2541,2483,3352,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 17:51:54','','0000-00-00 00:00:00'),(5306,0,0,2541,2483,3352,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 17:52:11','','0000-00-00 00:00:00'),(5307,0,0,2541,2483,3352,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nasd</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain--nad</p>\n\n<p>neurologist opinion taken-</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vng--right hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 17:52:35','darshan','2025-11-14 19:02:56'),(5309,0,0,2544,2486,3358,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 17:55:52','darshan','2025-11-14 19:14:10'),(5310,0,0,2544,2486,3358,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 17:56:34','','0000-00-00 00:00:00'),(5311,0,0,2548,2490,3363,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 17:58:03','','0000-00-00 00:00:00'),(5312,0,0,1687,1642,3351,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 17:59:45','','0000-00-00 00:00:00'),(5313,0,0,2547,2489,3361,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 18:07:19','','0000-00-00 00:00:00'),(5315,0,0,1187,1147,3353,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----sense of imbalance&thinsp;</p>\n\n<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>Mri brain limited study---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 18:11:45','darshan','2025-11-14 19:38:41'),(5317,0,0,86,75,3354,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 18:12:59','','0000-00-00 00:00:00'),(5318,0,0,2543,2485,3356,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 18:13:51','','0000-00-00 00:00:00'),(5319,0,0,2545,2487,3359,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 18:14:33','','0000-00-00 00:00:00'),(5320,0,0,341,325,3362,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 18:15:58','','0000-00-00 00:00:00'),(5321,0,0,223,210,3357,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for giddiness&thinsp;</p>\n\n<p>right eawr pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 18:19:20','','0000-00-00 00:00:00'),(5322,0,0,669,639,3365,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 18:22:53','','0000-00-00 00:00:00'),(5323,0,0,1949,1901,3371,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 18:26:27','','0000-00-00 00:00:00'),(5324,0,0,1949,1901,3371,0,0,NULL,'','PLAN','ZZZ','Remark','14','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 18:27:12','','0000-00-00 00:00:00'),(5325,0,0,2551,2493,3368,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---recurence of veritgo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 18:30:52','darshan','2025-11-14 18:31:22'),(5326,0,0,2551,2493,3368,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>bilatelr vestibulopathy with bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 18:31:36','','0000-00-00 00:00:00'),(5327,0,0,2551,2493,3368,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 18:31:59','','0000-00-00 00:00:00'),(5329,0,0,2551,2493,3368,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-14 18:32:37','','0000-00-00 00:00:00'),(5330,0,0,2241,145,2876,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 18:34:17','mo','2025-11-14 19:26:55'),(5331,0,0,2241,145,2876,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 7 DAYS</P>\r\n\r\n<P>HOLD OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 18:34:17','mo','2025-11-14 19:26:55'),(5332,0,0,2555,2497,3373,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----recurence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 18:37:25','','0000-00-00 00:00:00'),(5333,0,0,741,710,3377,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 18:40:47','','0000-00-00 00:00:00'),(5334,0,0,2557,2500,3379,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 18:43:34','','0000-00-00 00:00:00'),(5335,0,0,2561,2504,3385,0,0,NULL,'','CC','ZZZ','Remark','POSTED FOR RT EYE CATARACT SURGERY||','','',0,'0000-00-00 00:00:00','drarchit','2025-11-14 18:49:48','','0000-00-00 00:00:00'),(5336,0,0,2561,2504,3385,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO C/O DOE&thinsp;</p>\n\n<p>NO C/O PEDAL OEDEMMA</p>\n\n<p>NO C/O CHEST PAIN</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-14 18:50:06','','0000-00-00 00:00:00'),(5337,0,0,2561,2504,3385,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>R/S -CLEAR</p>\n\n<p>CVS- S1 S2 NAD</p>\n\n<p>REST NAD</p>\n\n<p>ECG -NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-14 18:52:20','','0000-00-00 00:00:00'),(5340,0,0,2561,2504,3385,0,0,NULL,'','MADVICE','ZZZ','Remark','PATIENT CAN BE TAKEN FOR SURGERY WITH DUE ANESTHETIC DRUGS AND OPERATIVE RISK.','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-14 18:54:58','','0000-00-00 00:00:00'),(5341,0,0,2558,2501,3380,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 18:55:21','','0000-00-00 00:00:00'),(5342,0,0,2541,2483,3352,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV WITH PHOBIA','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 19:03:03','','0000-00-00 00:00:00'),(5343,0,0,2541,2483,3352,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 19:03:32','','0000-00-00 00:00:00'),(5345,0,0,2544,2486,3358,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry=wnl</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 19:14:44','darshan','2025-11-14 19:15:12'),(5347,0,0,2541,2483,3352,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-14 19:16:39','','0000-00-00 00:00:00'),(5348,0,0,2547,2489,3361,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 19:25:06','','0000-00-00 00:00:00'),(5349,0,0,2547,2489,3361,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilomtry---reduced vestibular score</p>\n\n<p>vng---left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 19:25:41','','0000-00-00 00:00:00'),(5350,0,0,2547,2489,3361,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 19:25:44','','0000-00-00 00:00:00'),(5351,0,0,2241,145,2876,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE 250&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 7 DAYS</P>\r\n\r\n<P>TAB NEXPROFAST 40&nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; FOR 7 DAYS</P>\r\n\r\n<P>TAB RIFAGUT 550&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 7 DAYS</P>\r\n\r\n<P>TAB HEPAMERZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 7 DAYS</P>\r\n\r\n<P>TAB CARDIVAS 3.125&nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 7 DAYS</P>\r\n\r\n<P>TAB COBADEX CZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 7 DAYS</P>\r\n\r\n<P>TAB STAGLIM M1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp;BEFFORE FOOD FOR 7 DAYS</P>\r\n\r\n<P>LIQ&nbsp; LOOZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp;&nbsp; &nbsp;30ML 1--1--1&nbsp; AFTER FOOD&nbsp; &nbsp;FOR 7 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE&nbsp;</P>\r\n\r\n<P>CAP ROSULESS-A 75/10&nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp;0--1--0&nbsp; &nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 19:25:55','mo','2025-11-14 19:26:55'),(5352,0,0,2547,2489,3361,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-14 19:26:13','','0000-00-00 00:00:00'),(5355,0,0,2547,2489,3361,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-14 19:29:48','','0000-00-00 00:00:00'),(5360,0,0,1187,1147,3353,0,0,NULL,'','MADVICE','ZZZ','Remark','NEUROLOGIST OPINION','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-14 19:52:15','','0000-00-00 00:00:00'),(5361,0,0,2539,159,3348,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE HEMPRRHAGIC GASTROENTERITIS (? PEPTIC ULCER)</STRONG></P>\r\n\r\n<P><STRONG>HYPOKALEMIA</STRONG></P>\r\n\r\n<P><STRONG>ANXIETY DISORDER</STRONG></P>\r\n\r\n<P><STRONG>CERVICAL MULTIPLE LEVEL DISC PROLAPSE WITH CORD MYELOMALACIA</STRONG></P>\r\n\r\n<P><STRONG>IN A K/C/O HTN</STRONG></P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 20:53:46','mo','2025-11-22 13:14:59'),(5362,0,0,2539,159,3348,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-14 20:53:46','mo','2025-11-22 13:14:59'),(5363,0,0,2539,159,3348,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 55 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN<BR />\r\nH/O: RECENT B/L TKR (20/08/2025) AT EPIC M.H. HOSPITAL AHMEDABAD&nbsp;<BR />\r\nC/O: ABDOMINAL DISCOMFORT SINCE 15-20 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; RECURRENT VOMITING&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SEVERE WATERY DIARRHOEA SINCE 8-10 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER SINCE 4-5 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ALTERED SENSORIUM SINCE 2 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SEVERE ANXIETY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS (BED RIDDEN STATUS) SINCE 8-10 DAYS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 15-20 DAYS FOR THAT PRIMARY CONSULTED AT HARMONY HOSPITAL, RAJKOT AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN + PELVIS (28/10/2025)</P>\r\n\r\n<P>GASTRODUODENOSCOPY (28/10/2025)</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>BEDSORE+<BR />\r\nTEMP-99.5&#39;F, PR-138/MIN, BP-132/80MMHG, SPO2-90% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>URINE R/M DONE WHICH S/O: PUS CELL:10-12, RBC:2-3</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15/11/2025</P>\r\n\r\n<P>URINE C/S SENT</P>\r\n\r\n<P>USG ABDOMEN DONE</P>\r\n\r\n<P>THPHI DOT DONE WHICH S/O NEGATIVE</P>\r\n\r\n<P>S.BRUCELLA IGG/IGM DONE WHICH WAS NEGATIVE</P>\r\n\r\n<P>STOOL R/M DONE WHICH S/O OCCULT BLOOD: PRESENT (++++), RBC : 3-4 CELL/HPF, CYST: PRESENT-GIARDIA CYST</P>\r\n\r\n<P>S. CORTISOL : 16.93 UG/DL</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16/11/2025</P>\r\n\r\n<P>REQUIRED BLOOD IX DONE</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL.</P>\r\n\r\n<P>CT REST ALL TREATMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17/11/2025</P>\r\n\r\n<P>URINE C/S S/O: NO ANY BACTERIAL GROWTH&nbsp;</P>\r\n\r\n<P>CT SAME RX</P>\r\n\r\n<P>WHEELCHAIR MOBILISATION DONE, BUT PATIENT DEVELOPED C/O WEAKNESS IN B/L LL UNABLE TO MOVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18/11/2025</P>\r\n\r\n<P>IN VIEW OF L/L WEAKNESS REFERENCE OF DR KAUMIL KOTHARI (NEUROPHYSICIAN) DONE AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVES.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19/11/25</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>SAME RX CONTINUED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20/11/25</P>\r\n\r\n<P>MRI CERVICAL SPINE + WSS WITH BRAIN SCREENING DONE UNDER GENERAL ANEASTHESIA, REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>NEUROSURGEON DR RIDHAM KHANSHERIYA&#39;S REFERANCE DONE AND ALL HIS ADVICE FOLLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21/11/25</P>\r\n\r\n<P>X RAY BOTH KNEE DONE, REPORT ATTACHED WITH FILE</P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:11PT\">REFERANCE OF DR RAJESH RAM (PSYCHIATRIST) DONE AND FOLLOW HIS ALL ADVICE</SPAN></P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22/11/25</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 20:53:46','mo','2025-11-22 13:14:59'),(5364,0,0,2539,159,3348,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 7 DAYS</P>\r\n\r\n<P>AGRESIVE PHYSIOTHERAPY AND MOBILISATION</P>\r\n\r\n<P>BEDSORE DRESSING AND CARE AS EXPLAINED</P>\r\n\r\n<P>FOLEY&#39;S CATHETER CARE AND CLAMPING AS EXPLAINED</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 20:53:46','mo','2025-11-22 13:14:59'),(5365,0,0,2539,159,3348,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ ZOSTUM</P>\r\n\r\n<P>INJ MEROPENUM</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ MGSO4</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ ZOFER</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>TAB SHELCAL XT</P>\r\n\r\n<P>CAP UPRISE D3 60K</P>\r\n\r\n<P>CAP VSL #3</P>\r\n\r\n<P>CAP ENUFF</P>\r\n\r\n<P>TAB LINOX</P>\r\n\r\n<P>TAB QUTAN</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>RASHFREE OINTMENT</P>\r\n\r\n<P>INJ KCL</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>INJ HYDROCORT</P>\r\n\r\n<P>TAB CLINDATEC</P>\r\n\r\n<P>TAB OMNACORTIL</P>\r\n\r\n<P>TAB NEXITO</P>\r\n\r\n<P>SENSUR LOTION&nbsp;</P>\r\n\r\n<P>INJ MPS</P>\r\n\r\n<P>TAB LOPAMIDE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 20:53:46','mo','2025-11-22 13:14:59'),(5366,0,0,2385,153,3190,0,0,NULL,'','OTNOTE','','','<p>-large uterine fibroid on fundus of uterus</p>\r\n\r\n<p>-both ovary normal</p>\r\n\r\n<p>-b/l uterine artery clip first</p>\r\n\r\n<p>-round ligament cut on both side</p>\r\n\r\n<p>-broad ligament cOAGULATED&nbsp;&amp; cut</p>\r\n\r\n<p>-falopian tube &amp; ovarian ligament coAgulated/cut.</p>\r\n\r\n<p>-urinary bladder carefully dissected from uterus</p>\r\n\r\n<p>-b/l uterine vessels cogulated &amp; cut</p>\r\n\r\n<p>-vault opened circumferently</p>\r\n\r\n<p>-uterus removal done per vaginal</p>\r\n\r\n<p>-both fallopian tube removed</p>\r\n\r\n<p>-hemostasis checked</p>\r\n\r\n<p>-vaginal vault closed with vicryl no 1.</p>\r\n\r\n<p>-dressing kept in pelvic</p>\r\n\r\n<p>-10&nbsp;mm port sheath closed with vicryl no 1.</p>\r\n\r\n<p>-skin closed.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 22:26:43','mo','2025-11-15 12:56:45'),(5367,0,0,2504,157,3299,0,0,NULL,'','DISCDIAG','','','<P><STRONG>B/L INGUINAL HERNIA&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 22:35:32','mo','2025-11-16 07:46:53'),(5368,0,0,2504,157,3299,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-14 22:35:32','mo','2025-11-16 07:46:53'),(5369,0,0,2504,157,3299,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 54 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nC/O: RIGHT INGUINAL PAIN &AMP; SWELLING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BULGING INCREASED WHILE COUGHING OR LYING DOWN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BACK PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO FEVER</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 1 MONTH BUT INCREASED SINCE 15 DAYS SO PT PRIMARY CONSULTED AT STERLING HOSPITAL AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG LOCAL PART DONE ON (11/11/2025) REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>MRI OF LUMBER SPINE DONE ON (11/11/2025) REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-87/MIN, BP-100/70MMHG, SPO2-98% ON RA, RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nLAPAROSCOPIC B/L INGUINAL HERNIOPLASTY (TAPP) DONE BY DR PRATAPSINH DODIYA ON 14/11/2025 UNDER GENERAL&nbsp;ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 22:35:32','mo','2025-11-16 07:46:53'),(5370,0,0,2504,157,3299,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>LAPAROSCOPIC B/L INGUINAL HERNIOPLASTY (TAPP) DONE BY DR PRATAPSINH DODIYA ON 14/11/2025 UNDER GENERAL&nbsp;ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 22:58:22','mo','2025-11-16 07:46:53'),(5371,0,0,2504,157,3299,0,0,NULL,'','OTNOTE','','','<p>-b/l inguinal hernia present ; right&gt;left</p>\r\n\r\n<p>-b/l paritoneal flap elevated</p>\r\n\r\n<p>-b/l hernia sac reduced &amp; dissection done till RETRO PUBIC SPACE.</p>\r\n\r\n<p>-13 x 18 cm prolene mesh kept on both side</p>\r\n\r\n<p>-mesh fixed with cooper&#39;s ligament with prolene (2-0)</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-b/l peritoneal flap closed with vicryl 3-0.</p>\r\n\r\n<p>-10 mm port sheath closed with vicryl port.</p>\r\n\r\n<p>-skin closed with skin stappler</p>\r\n\r\n<p>-dressing kept</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 22:58:22','mo','2025-11-16 07:46:53'),(5372,0,0,2504,157,3299,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>AVOID HEAVY WEIGHT FOR 6 WEEKS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 22:58:22','mo','2025-11-16 07:46:53'),(5373,0,0,2504,157,3299,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 22:58:22','mo','2025-11-16 07:46:53'),(5374,0,0,2304,149,3027,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>LAPAROTOMY + CYSTOGASTROSTOMY DONE BY DR PRATAPSINH DODIYA ON 12/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 23:09:03','mo','2025-11-17 10:11:04'),(5375,0,0,2304,149,3027,0,0,NULL,'','OTNOTE','','','<p>-upper midline incision kept</p>\r\n\r\n<p>-abdomen opened in layer</p>\r\n\r\n<p>-large lesion posterior in stomach</p>\r\n\r\n<p>-anterior wall of stomach open</p>\r\n\r\n<p>-bulging over posterior wall of stomach</p>\r\n\r\n<p>-aspiration done &amp; check position of cyst</p>\r\n\r\n<p>-posterior wall of stomach &amp; cyst wall opened</p>\r\n\r\n<p>-fluid &amp; debris removed from cyst</p>\r\n\r\n<p>-cyst wall sutured with posterior wall of stomach with vicryl no-1 interrupted stitch</p>\r\n\r\n<p>-hemostasis checked. cyst cavity irrigated with salin</p>\r\n\r\n<p>-anterior wall of stomach closed with vicryl no-1.</p>\r\n\r\n<p>-dressing kept anterior to stomach</p>\r\n\r\n<p>-swab &amp; instrument count done</p>\r\n\r\n<p>-rt position check on table</p>\r\n\r\n<p>-linea&nbsp; alba closed with prolene no-1.</p>\r\n\r\n<p>-romovac kept in sub cutaneous tissue</p>\r\n\r\n<p>-skin closed with skin stapp&nbsp; ler</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-14 23:09:03','mo','2025-11-17 10:11:04'),(5376,0,0,2572,2515,3404,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---sense of imbalance</p>\n\n<p>rest better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:04:04','','0000-00-00 00:00:00'),(5377,0,0,2575,2517,3407,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:04:57','','0000-00-00 00:00:00'),(5378,0,0,2575,2517,3407,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feelling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symsptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:05:27','','0000-00-00 00:00:00'),(5379,0,0,2575,2517,3407,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabiloemtry--reduced ss score</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:05:35','darshan','2025-11-15 12:58:33'),(5381,0,0,2578,2520,3410,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--beter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:07:53','','0000-00-00 00:00:00'),(5383,0,0,2578,2520,3410,0,0,NULL,'','MADVICE','ZZZ','Remark','PHYSICIAN OPINION FOR BREATHLESSNESS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:09:02','','0000-00-00 00:00:00'),(5384,0,0,2039,1988,3413,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>Left ear dry--small centrla perforation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:10:38','','0000-00-00 00:00:00'),(5385,0,0,2581,2523,3414,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n\n<p>pt feels head is rotatory inside</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:14:06','','0000-00-00 00:00:00'),(5386,0,0,2582,2524,3415,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:25:22','','0000-00-00 00:00:00'),(5387,0,0,1694,1649,3416,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:28:16','','0000-00-00 00:00:00'),(5389,0,0,1694,1649,3416,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER FOR 5 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:28:54','','0000-00-00 00:00:00'),(5390,0,0,843,812,3417,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case------better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:36:49','','0000-00-00 00:00:00'),(5391,0,0,1997,1949,3419,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----partailly better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:39:15','darshan','2025-11-15 11:40:13'),(5392,0,0,1997,1949,3419,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:40:37','','0000-00-00 00:00:00'),(5394,0,0,1997,1949,3419,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:41:31','','0000-00-00 00:00:00'),(5395,0,0,2577,2519,3409,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT LITTLE FINGER PROXIMAL PHALYNX NECK FRACTURE','','',0,'0000-00-00 00:00:00','drsagar','2025-11-15 11:41:40','','0000-00-00 00:00:00'),(5396,0,0,2585,2527,3422,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsmo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:45:44','darshan','2025-11-15 11:48:12'),(5398,0,0,2585,2527,3422,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:47:38','','0000-00-00 00:00:00'),(5399,0,0,2585,2527,3422,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bialtle modearte to severe sn deafness</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng--right post&thinsp; canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:48:24','darshan','2025-11-15 13:10:31'),(5400,0,0,2585,2527,3422,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:48:27','','0000-00-00 00:00:00'),(5401,0,0,2385,153,3190,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-15 11:50:11','mo','2025-11-15 12:56:45'),(5402,0,0,2385,153,3190,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.CEFTUM (500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB.DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB.ZERODOL-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP.CREMAFFIN PLUS&nbsp; &nbsp; &nbsp; 10ML&nbsp; &nbsp; &nbsp; &nbsp;0-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AT BED TIME&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS..............(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>METROGYL-P OINTMENT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AT VAGINAL AREA&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;THREE TIMES A DAY...........(1)&nbsp; &nbsp; &nbsp; &nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-15 11:50:11','mo','2025-11-15 12:56:45'),(5403,0,0,1437,1397,3423,0,0,NULL,'','HIST','ZZZ','Remark','<p>right ear wax--removed</p>\n\n<p>RTM---i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:57:26','','0000-00-00 00:00:00'),(5404,0,0,1437,1397,3423,0,0,NULL,'','MADVICE','ZZZ','Remark','CT EAR DROPS FOR 3 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-15 11:57:34','','0000-00-00 00:00:00'),(5407,0,0,2586,2529,3429,0,0,NULL,'','DIAG','ZZZ','Remark','BOTH OA KNEE RIGHT < LEFT','','',0,'0000-00-00 00:00:00','drsagar','2025-11-15 12:02:59','','0000-00-00 00:00:00'),(5408,0,0,521,496,3430,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:03:52','','0000-00-00 00:00:00'),(5409,0,0,1051,1017,3432,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----partailly better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:06:47','','0000-00-00 00:00:00'),(5410,0,0,2580,2522,3412,0,0,NULL,'','HIST','ZZZ','Remark','<p>pt not available</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:09:14','','0000-00-00 00:00:00'),(5412,0,0,2589,2532,3434,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling and sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:15:38','darshan','2025-11-15 12:16:55'),(5413,0,0,2589,2532,3434,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:16:28','','0000-00-00 00:00:00'),(5414,0,0,2589,2532,3434,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:16:28','','0000-00-00 00:00:00'),(5415,0,0,2589,2532,3434,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus ---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilatelr mild sn deafness&thinsp;</p>\n\n<p>stabilometry---wnl</p>\n\n<p>CCG---AP displacment out of range</p>\n\n<p>vng--central variety of nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:17:13','darshan','2025-11-15 13:18:10'),(5417,0,0,1723,1678,3435,0,0,NULL,'','HIST','ZZZ','Remark','<p>fofllow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:20:47','','0000-00-00 00:00:00'),(5418,0,0,2583,2525,3420,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:23:46','','0000-00-00 00:00:00'),(5419,0,0,2384,150,3113,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>LAPAROSCOPIC URINARY BLADDER TEAR REPAIR WITH THOROUGH PERITONEAL LAVAGE DONE BY DR PRATAPSINH DODIYA ON 12/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-15 12:28:14','mo','2025-11-15 12:58:21'),(5420,0,0,2384,150,3113,0,0,NULL,'','ADVICE','','','<P>HOSPITALISATION&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>ORTHOPEDIC OPENION&nbsp;</P>\r\n\r\n<P>REPEAT X-RAY LEFT ANKLE AFTER 5 DAYS - IF DISPLACED, REQUIRE SURGERY</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>SPINE SURGERY, LAMINECTOMY &AMP; FIXATION&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>DRAIN CARE</P>\r\n\r\n<P>SILICON CATHETER CARE AS EXPLAINED</P>\r\n\r\n<P>KEEP CATHETER FOR 3 WEEKS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-15 12:28:14','mo','2025-11-15 12:58:21'),(5422,0,0,2584,2526,3421,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onst of rtoaotyr feelingany time and remains for few seconds only</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:29:25','darshan','2025-11-15 12:32:25'),(5423,0,0,2584,2526,3421,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:29:45','','0000-00-00 00:00:00'),(5424,0,0,2584,2526,3421,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:32:37','darshan','2025-11-15 13:29:14'),(5426,0,0,1515,1474,3437,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:35:37','','0000-00-00 00:00:00'),(5428,0,0,1515,1474,3437,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:36:41','','0000-00-00 00:00:00'),(5429,0,0,2384,150,3113,0,0,NULL,'','OTNOTE','','','<p>PER-OP FINDINGS:</p>\r\n\r\n<p>-HEMOPERITONEUM (1.5 LIT)</p>\r\n\r\n<p>-3 CM TEAR ON FUNDUS OF URINARY BLADDER</p>\r\n\r\n<p>-MESENTERIC TEAR IN TEMINAL&nbsp;ILEAL MESENTRY</p>\r\n\r\n<p>-NO ACTIVE BLADDER FROM MESENTERIC TEAR</p>\r\n\r\n<p>-SMALL AND LARGE BOWEL LOOP NORMAL</p>\r\n\r\n<p>-LIVER, SPLEEN, STOMACH NORMAL</p>\r\n\r\n<p>-URINARY BLADDER TEAR REPAIR IN TWO LAYER WITH VICRYL 3-0</p>\r\n\r\n<p>-THOROUGH PERITONEAL WASH GIVEN</p>\r\n\r\n<p>-SMALL AND LARGE BOWEL EXAMINED</p>\r\n\r\n<p>-DRAIN KEPT IN PELVIC</p>\r\n\r\n<p>-10 MM PORT SHEATH CLOSED WITH VICYL NO.1</p>\r\n\r\n<p>-SKIN CLOSED WITH SKIN STAPPER</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-15 12:43:06','mo','2025-11-15 12:58:21'),(5430,0,0,2384,150,3113,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>BACK PAIN OCCASIONALLY, UNABLE TO SIT OR WALK</P>\r\n\r\n<P>LEFT ANKLE POP IN SITU</P>\r\n\r\n<P>SILICON CATHETER NO:14 D:4 IN SITU</P>\r\n\r\n<P>DRAIN IN SITU</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-15 12:43:06','mo','2025-11-15 12:58:21'),(5431,0,0,2384,150,3113,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.TAZOMAC (4.5GM)&nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; TDS</P>\r\n\r\n<P>INJ.METROGYL&nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp;TDS</P>\r\n\r\n<P>INJ.PANTODAC (40)&nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp;BD</P>\r\n\r\n<P>INJ.PERINORM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; TDS</P>\r\n\r\n<P>INJ.INFUPAR (IGM)&nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; TDS</P>\r\n\r\n<P>SYP.LIV 52 DS&nbsp; &nbsp; &nbsp; 5 ML&nbsp; &nbsp; &nbsp;TDS</P>\r\n\r\n<P>TAB.CHYMORAL FORTE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-1-1</P>\r\n\r\n<P>TAB.ACETLE SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1</P>\r\n\r\n<P>TAB.ALTASET SEMI&nbsp; &nbsp; &nbsp; &nbsp; 1-0-1</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-15 12:43:06','mo','2025-11-15 12:58:21'),(5432,0,0,1993,1945,3439,0,0,NULL,'','HIST','ZZZ','Remark','<p>left ear fungus---+</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:45:43','','0000-00-00 00:00:00'),(5433,0,0,1993,1945,3439,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:45:51','','0000-00-00 00:00:00'),(5434,0,0,2591,2534,3440,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:53:54','','0000-00-00 00:00:00'),(5435,0,0,2591,2534,3440,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling ---when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:54:38','','0000-00-00 00:00:00'),(5436,0,0,2591,2534,3440,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>vemp--wnl</p>\n\n<p>vng--rigth pst canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:54:48','darshan','2025-11-15 13:44:38'),(5437,0,0,2591,2534,3440,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:54:52','','0000-00-00 00:00:00'),(5438,0,0,2575,2517,3407,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:58:37','','0000-00-00 00:00:00'),(5439,0,0,2575,2517,3407,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 12:59:04','','0000-00-00 00:00:00'),(5441,0,0,2592,2535,3441,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n\n<p>left side heaviness of head</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:02:50','','0000-00-00 00:00:00'),(5442,0,0,1505,1464,3442,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----</p>\n\n<p>Right post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:07:34','','0000-00-00 00:00:00'),(5443,0,0,2585,2527,3422,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:10:55','','0000-00-00 00:00:00'),(5446,0,0,2575,2517,3407,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:12:09','','0000-00-00 00:00:00'),(5447,0,0,2593,2536,3443,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:23:45','','0000-00-00 00:00:00'),(5448,0,0,2593,2536,3443,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:24:14','','0000-00-00 00:00:00'),(5449,0,0,2593,2536,3443,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:24:15','','0000-00-00 00:00:00'),(5450,0,0,2593,2536,3443,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:24:19','','0000-00-00 00:00:00'),(5451,0,0,2593,2536,3443,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:25:01','','0000-00-00 00:00:00'),(5453,0,0,2593,2536,3443,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:26:03','','0000-00-00 00:00:00'),(5454,0,0,2584,2526,3421,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:29:18','','0000-00-00 00:00:00'),(5455,0,0,2594,2537,3444,0,0,NULL,'','HIST','ZZZ','Remark','<p>thraot pain----4 days&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:31:41','','0000-00-00 00:00:00'),(5456,0,0,2594,2537,3444,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested and granular</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:31:50','','0000-00-00 00:00:00'),(5458,0,0,2585,2527,3422,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MANVUERT','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:34:24','','0000-00-00 00:00:00'),(5459,0,0,2595,2538,3445,0,0,NULL,'','HIST','ZZZ','Remark','<p>burning snsation in throat&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:41:11','','0000-00-00 00:00:00'),(5460,0,0,2595,2538,3445,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx--congested&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:41:19','','0000-00-00 00:00:00'),(5461,0,0,2597,2540,3447,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----4-5 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:46:50','','0000-00-00 00:00:00'),(5462,0,0,2597,2540,3447,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo and headache&thinsp;</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:46:51','darshan','2025-11-15 14:21:54'),(5463,0,0,2597,2540,3447,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE INTERMITTENTLY||','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:47:02','','0000-00-00 00:00:00'),(5464,0,0,2597,2540,3447,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus--absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>ht--nad</p>\n\n<p>pta---nad</p>\n\n<p>stasbiloetmry--nad</p>\n\n<p>vng--central variety of nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:47:10','darshan','2025-11-15 14:22:52'),(5465,0,0,2597,2540,3447,0,0,NULL,'','DIAG','ZZZ','Remark','BPC','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:47:15','','0000-00-00 00:00:00'),(5466,0,0,2591,2534,3440,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:50:05','','0000-00-00 00:00:00'),(5469,0,0,2591,2534,3440,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-15 13:55:40','','0000-00-00 00:00:00'),(5470,0,0,2597,2540,3447,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 14:25:57','','0000-00-00 00:00:00'),(5471,0,0,2597,2540,3447,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-15 14:26:34','','0000-00-00 00:00:00'),(5472,0,0,2597,2540,3447,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENV UER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-15 14:26:34','','0000-00-00 00:00:00'),(5473,0,0,2499,156,3294,0,0,NULL,'','DISCDIAG','','','<P><STRONG>? PARTIAL SEIZURE</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, DM -II, BPH, IHD(POST CABG,PPI), ALZIMER DISEASE.</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-15 16:30:24','mo','2025-11-15 19:25:30'),(5474,0,0,2504,157,3299,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-15 18:42:43','mo','2025-11-16 07:46:53'),(5475,0,0,2504,157,3299,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM (500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(10)</P>\r\n\r\n<P>TAB ZERODOL-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(10)</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........(10)</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;10ML HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>TAB PROTHIADEN 50&nbsp; &nbsp;P/O&nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>TAB BIO ANXIT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp;1--0--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-15 18:42:43','mo','2025-11-16 07:46:53'),(5476,0,0,2499,156,3294,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>CONSCIOUS &AMP;&nbsp;ORIENTED&nbsp;</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-15 19:18:16','mo','2025-11-15 19:25:30'),(5477,0,0,2499,156,3294,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-15 19:18:16','mo','2025-11-15 19:25:30'),(5478,0,0,2499,156,3294,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE CV (250MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(10)</P>\r\n\r\n<P>TAB LEVIGRESS(500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(10)</P>\r\n\r\n<P>TAB THAYA-B&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........(5)</P>\r\n\r\n<P>TAB NEXPROFAST (40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;........(5)</P>\r\n\r\n<P>TAB ZOFER MD(4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; ........(15)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB CORDERON(100MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0</P>\r\n\r\n<P>TAB GLYCOMET (250MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp;</P>\r\n\r\n<P>TAB VYMADA(50MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1</P>\r\n\r\n<P>TAB REJUNET CD3&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;1--0--0</P>\r\n\r\n<P>TAB ARICEP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--0</P>\r\n\r\n<P>TAB CARDIVAS CR (10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0</P>\r\n\r\n<P>TAB ADMENTA (5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0</P>\r\n\r\n<P>TAB NOVASTAT CV(10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>TAB URIMAX(0.4MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>TAB MELOSET (3 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-15 19:24:17','mo','2025-11-15 19:25:30'),(5479,0,0,2506,158,3301,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE LVF WITH LRTI&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN + IHD(POST CABG) + CKD</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-15 23:25:20','mo','2025-11-16 19:58:01'),(5480,0,0,2506,158,3301,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY S/P CABG&nbsp;</STRONG><BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY : HTN + IHD + CKD ON RX</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-15 23:25:20','mo','2025-11-16 19:58:01'),(5481,0,0,2506,158,3301,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 55Y YEARS OLD &nbsp;FEMALE</P>\r\n\r\n<P>K/CO: HTN + IHD (POST CABG)+ CKD<STRONG> </STRONG></P>\r\n\r\n<P>C/O :FEVER WITH RIGOR&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; VOMITING&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DOE +</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BREATHLESSNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; WEKANESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE LAST 2 -3 HOUR FOR THAT PATIENT CAME ERE FOR TREATMENT AND MANAGEMENT</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>PR: 111/MIN</P>\r\n\r\n<P>BP: 128/80 MMHG</P>\r\n\r\n<P>SPO2 : 75 % ON RA&nbsp;</P>\r\n\r\n<P>TEMP : 103 F</P>\r\n\r\n<P>RS : BLAE +RIGHT SIDE AIR ENTRY DECREASE</P>\r\n\r\n<P>CVS : S1,S2 +</P>\r\n\r\n<P>CNS : C/O +</P>\r\n\r\n<P>P/A : BLOATED</P>\r\n\r\n<P>FOR ALL ABOVE MENTIONED COMPLAIN PATIENT ADMITTED IN ICU &nbsp;AND TREATMENT STARTED&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14/11/2025</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TRETMENT MODIFIED ACCORDINGLY</P>\r\n\r\n<P>IN VIEW OF BREATHLESSNESS AND LOW SATURATION 02 START</P>\r\n\r\n<P>ECG DONE WHICH S/O: ISCHEMIC CHANGES&nbsp;&nbsp;TROP I SENT AND TREATMENT MODIFIED ACCORDINGLY&nbsp;</P>\r\n\r\n<P>TROP I S/O: 74.2 SMALL AMI</P>\r\n\r\n<P>CHEST X-RAY DONE REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>2D ECHO DONE WHICH S/O; LVEF- 45%</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15/11/2025</P>\r\n\r\n<P>REPEAT ECG DONE WHICH WAS IMPROVED</P>\r\n\r\n<P>OFF O2 TRIAL GIVEN PATIENT MAINTAIN ON ROOM AIR SO O2 SUPPORT STOP AND SHIFTED TO WARD&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16/11/2025<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-15 23:25:20','mo','2025-11-16 19:58:01'),(5482,0,0,2506,158,3301,0,0,NULL,'','CONDONADDMISSION','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-16 10:48:04','mo','2025-11-16 19:58:01'),(5483,0,0,2506,158,3301,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACTAGARD&nbsp;</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.EMSET&nbsp;</P>\r\n\r\n<P>INJ.INFUPAR&nbsp;</P>\r\n\r\n<P>TAB ECOSPRIN&nbsp;</P>\r\n\r\n<P>TAB CLAVIX&nbsp;</P>\r\n\r\n<P>TAB LIPITAS</P>\r\n\r\n<P>TAB FEBUSTAT&nbsp;</P>\r\n\r\n<P>TAB SOBISIS&nbsp;</P>\r\n\r\n<P>TAB C UDP</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-16 10:48:04','mo','2025-11-16 19:58:01'),(5484,0,0,2506,158,3301,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO DIFFICULTY IN BREATHING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-16 19:40:56','mo','2025-11-16 19:58:01'),(5485,0,0,2506,158,3301,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-16 19:40:56','mo','2025-11-16 19:58:01'),(5486,0,0,2506,158,3301,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE - CV (250MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(10)</P>\r\n\r\n<P>TAB NEXPROFAST (40MG)&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;........(10)</P>\r\n\r\n<P>TAB ZOFER MD(4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;........(15)</P>\r\n\r\n<P>TAB ECOSPRIN (150MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........(5)</P>\r\n\r\n<P>TAB CLAVIX(75MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(5)</P>\r\n\r\n<P>TAB LIPITAS(40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(5)</P>\r\n\r\n<P>TAB FEBUSTAT (40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(5)</P>\r\n\r\n<P>TAB SOBIOSIS(500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(15)</P>\r\n\r\n<P>TAB C-UDP (20MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(5)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-16 19:40:56','mo','2025-11-16 19:58:01'),(5487,0,0,2608,162,3470,0,0,NULL,'','DISCDIAG','','','<P><STRONG>SEVERE IRON DEFICIENCY ANEMIA</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, DM SINCE 20 YEARS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 00:40:58','mo','2025-11-17 12:43:09'),(5488,0,0,2608,162,3470,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>PAST SURGICAL HISTORY: LAP. CHOLECYSTECTOMY (2012)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 00:40:58','mo','2025-11-17 12:43:09'),(5489,0,0,2608,162,3470,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 88 YEARS OLD FEMALE&nbsp; PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, DM SINCE 20 YEARS<BR />\r\nC/O: DOE, SEVERE HEADACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -BOTH L/L PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -ABDOMINAL PAIN, DECREASE URINE OUTPUT</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -SEVERE GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -CHRONIC CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; -NO H/O MELENA,HEMATEMESIS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 1 MONTH FOR THAT CONSULTED SHREEJI HOSPITAL AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN DONE ON 14/11/2025</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-68/MIN, BP-124/80MMHG, SPO2-92% ON RA, RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF ANEMIA (6.3 GM/DL)2 UNIT RCC GIVEN ON 16/11/25</P>\r\n\r\n<P>IRON SUPPLIMENT GIVEN ON 17/11/25 IN ICU UNDER OBSERVATION</P>\r\n\r\n<P>STOOL O/B DONE WHICH WAS POSITIVE(++)</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\nSO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 00:40:58','mo','2025-11-17 12:43:09'),(5490,0,0,2608,162,3470,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 00:40:58','mo','2025-11-17 12:43:09'),(5491,0,0,2608,162,3470,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ NEC FCM</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>2 UNIT RCC</P>\r\n\r\n<P>TAB SOBIOSIS</P>\r\n\r\n<P>TAB ULTRACET</P>\r\n\r\n<P>TAB CREMALAX</P>\r\n\r\n<P>LIQ PEGCLEAR</P>\r\n\r\n<P>INJ NEC FCM (500MG)</P>\r\n\r\n<P>PC ENEMA</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 00:40:58','mo','2025-11-17 12:43:09'),(5492,0,0,2611,163,3473,0,0,NULL,'','DISCDIAG','','','<P><STRONG>POST LSCS SEPTICEMIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>WITH PREVIOUS SCAR DEHISCENCE&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 00:48:42','mo','2025-11-23 13:12:36'),(5493,0,0,2611,163,3473,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O:2 LSCS G2P2A0L2 (LAST ON 5/11/2025)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 00:48:42','mo','2025-11-23 13:12:36'),(5494,0,0,2611,163,3473,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 38 YEARS OLD FEMALE&nbsp; PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O: ABDOMINL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-FEVER ON &AMP; OFF&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-NO PUS DISCHARGE, BLEEDING FROM OPERATIVE SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-VOMITING (2-3 EPISODE)</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 7-8 DAYS FOR THAT PRIMARY CONSULTED AT VANKANER AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-100&#39;F, PR-100/MIN, BP-118/70MMHG, SPO2-97% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16/11/2025</P>\r\n\r\n<P>REFERENCE OF DR.SHILPAN GONDALIYA DONE&nbsp; AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>CECT ABDOMEN DONE REPORT&nbsp; ATTACHED WITH FILE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17/11/2025</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>IN VIEW OF PERITONITIS AND PERSISTENT FEVER ANTIBIOTIC STEPPED UP&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18/11/2025&nbsp;</P>\r\n\r\n<P>2D ECHO DONE WHICH S/O: LVEF - 60%&nbsp;</P>\r\n\r\n<P>REVIEW OF DR SHILPAN GONDALIYA DONE AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>CHEST X-RAY DONE REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19/11/25,<BR />\r\nLAPAROTOMY FOLLOWED BY HYSTERECTOMY WITH ADHESINOLYSIS DONE BY DR SHILPAN GONDALIYA AND DR PRATAPSINH DODIYA&nbsp;ON 19/11/2025 UNDER&nbsp; GENERAL&nbsp; ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>INTRA-OP 1 UNIT RCC GIVEN</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO ICU FOR FURTHER MONITORING</P>\r\n\r\n<P>HPE SENT WHICH S/O: E.COLI HEAVY GROWTH</P>\r\n\r\n<P>FURTHER HOURS WAS UNEVENTFULL IN ICU SO PATIENT SHIFED TO WARD WITH STABLE STATUS.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20/11/25,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>ORALLY SIPS OF WATER STARTED AND PATIENT TOLERATED WELL SO RYLE&#39;S TUBE REMOVED.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21/11/25,</P>\r\n\r\n<P>FOLEYS CATHETER REMOVED</P>\r\n\r\n<P>ANTIBIOTICS STEP UP AS HPE REPORT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22/11/25,</P>\r\n\r\n<P>REQUIRED BLOOD IX DONE</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23/11/2025</P>\r\n\r\n<P>PATIENT GENERAL CONDITION OBSERVED IN WARD</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 00:48:42','mo','2025-11-23 13:12:36'),(5495,0,0,2611,163,3473,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS AT VAKANER TO DR KIRAN GOSAI</P>\r\n\r\n<P>AVOID HEAVY STRAIN FOR FEW WEEKS</P>\r\n\r\n<P>TAKE SOFT DIET</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 00:48:42','mo','2025-11-23 13:12:36'),(5496,0,0,2611,163,3473,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AMIKACIN</P>\r\n\r\n<P>INJ METRO</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IN INFUPAR</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>INJ MERO</P>\r\n\r\n<P>INJ TIGECYCLIN</P>\r\n\r\n<P>SYP RESWAS</P>\r\n\r\n<P>1 UNIT RCC</P>\r\n\r\n<P>TAB SENALAX</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>JUSTIN SUPPOSITORY</P>\r\n\r\n<P>NEOMOL SUPPOSITORY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 00:48:42','mo','2025-11-23 13:12:36'),(5497,0,0,2304,149,3027,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM 500&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS...............(10)</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; FOR 5 DAYS...............(10)</P>\r\n\r\n<P>TAB AKILOS-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS...............(10)</P>\r\n\r\n<P>TAB TRIKA 0.25&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; 1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS...............(5)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>TAB ISYRL M2&nbsp; &nbsp;P/O&nbsp; &nbsp; 1/2--1/2--1/2</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 00:54:41','mo','2025-11-17 10:11:04'),(5498,0,0,2304,149,3027,0,0,NULL,'','FOOD_DRUG_ALLERGIES','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-17 09:51:23','mo','2025-11-17 10:11:04'),(5499,0,0,2304,149,3027,0,0,NULL,'','DISCCOND','','','<P>AFEBRIL</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>DRAIN IN SITU</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 09:51:23','mo','2025-11-17 10:11:04'),(5500,0,0,2607,161,3468,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE HEMORRHAGIC GASTROENTERITIS</STRONG></P>\r\n\r\n<P><STRONG>ANEMIA</STRONG></P>\r\n\r\n<P><STRONG>K/C/O DM;IHD;CA BUCCAL MUCOSA&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 10:49:06','mo','2025-11-20 13:21:01'),(5501,0,0,2607,161,3468,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-17 10:49:06','mo','2025-11-20 13:21:01'),(5502,0,0,2607,161,3468,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 68 YEARS OLD MALE PATIENT P/W K/C/O DM;IHD;CA BUCCAL MUCOSA&nbsp;</P>\r\n\r\n<P>WITH C/O DOE;HIGH GRADE FEVER;NAUSEA-VOMITING;DIARRHOEA(8-10 EPISODES/DAY);GENERALISED WEAKNESS SINCE 2 DAYS.</P>\r\n\r\n<P>SO,PRIMARY TREATMENT TAKEN AT WOCKHARDT HOSPITAL,RAJKOT THEN CAME HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-104.6 F</P>\r\n\r\n<P>PR-118/MIN</P>\r\n\r\n<P>BP-118/70MMHG</P>\r\n\r\n<P>SPO2-88% ON RA</P>\r\n\r\n<P>RR-28/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-170MG/DL</P>\r\n\r\n<P>-WITH ABOVE MENTIONED ALL COMPALINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16/11/25,</P>\r\n\r\n<P>-PRIMARY BLOOD INVESTIGATION SENT.TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>-PCT S/O 1.3NG/ML.HIGHER ANTI-BIOTIC STARTED.</P>\r\n\r\n<P>-TYPHI DOT DONE.S/O NEGATIVE.</P>\r\n\r\n<P>-STOOL R/M DONE.S/O OB-4+;RBC-2-3 CELL/HPF,E.HITOLYTICA CYST.</P>\r\n\r\n<P>-GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>-PATIENT DEVELOPED HYPOTENSION MANAGED BY IV FLUID THERAPY F/BY IV NORAD DRIP STARTED.</P>\r\n\r\n<P>-CHEST X-RAY DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17/11/25,</P>\r\n\r\n<P>-PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>-GRADUALLY PATIENT&#39;S GC WAS IMPROVING.</P>\r\n\r\n<P>-IV NORAD DRIP TAPER @BP.</P>\r\n\r\n<P>-FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18/11/25,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>REQUIRED REPEAT BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL SUPPLIMENT.</P>\r\n\r\n<P>STOOL C/S SENT IN VIEW OF GREENISH DIARRHOEA WHICH IS AWAITED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19/11/2025</P>\r\n\r\n<P>WIDAL TUBE TEST SENT WHICH WAS NEGATIVE</P>\r\n\r\n<P>2D ECHO DONE WHICH S/O LVEF: 60%, REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20/11/2025</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 10:49:06','mo','2025-11-20 13:21:01'),(5503,0,0,2607,161,3468,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MERO</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ UNITREX S</P>\r\n\r\n<P>CAP DOXY</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ NORAD</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ DILZEM</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>CAP ENUFF</P>\r\n\r\n<P>CAP VSL #3</P>\r\n\r\n<P>TAB STARPRESS XL</P>\r\n\r\n<P>TAB UNISTAR</P>\r\n\r\n<P>INJ H ACTRAPID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 10:50:31','mo','2025-11-20 13:21:01'),(5504,0,0,2612,164,3474,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE LVF WITH SEVERE ANEMIA WITH CAD WITH HTN, DM TYPE 2 WITH OLD CVA</STRONG></P>\r\n\r\n<P><STRONG>IN A OPERATED CASE&nbsp;L3-L4 L5-S1 (TLIR ON 8/11/25)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 10:58:39','mo','2025-11-20 22:38:32'),(5505,0,0,2612,164,3474,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-17 10:58:39','mo','2025-11-20 22:38:32'),(5506,0,0,2612,164,3474,0,0,NULL,'','HISTHOSPCOURSE','','','<P>HISTORY GIVEN BY PATIENT&#39;S RELATIVE.</P>\r\n\r\n<P>A 70 YEARS OLD MALE PATIENT P/W K/C/O DM;HTN;OLD CVA</P>\r\n\r\n<P>H/O :RECURRENT HYPONATREMIA,L3-L4 L5-S1 TLIR ON 8/11/25.</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;HERNIOPLASTY&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;S/P RIGHT HIP JOINT #</P>\r\n\r\n<P>C/O DOE;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ANOREXIA;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; BODYACHE;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; NAUSEA;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp;FORGETFULNESS;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp;BLACKISH STOOL;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp;INTERMITTENT FEVER SINCE 2-3 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp;.INCREASED BREATHLESSNESS;PERSPIRATION;ORTHOPNEA SINCE LAST 2 HOURS.</P>\r\n\r\n<P>SO,RELATIVE BROUGHT HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-97.6 F</P>\r\n\r\n<P>PR-90/MIN</P>\r\n\r\n<P>BP-168/100MMHG</P>\r\n\r\n<P>SPO2-72% ON RA</P>\r\n\r\n<P>RR-36/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-B/L SPASM+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>PALLOR +++</P>\r\n\r\n<P>RBS-146MG/DL</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL COPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.</P>\r\n\r\n<P>TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16/11/25,</P>\r\n\r\n<P>IN VIEW OF HYPOXIA WITH TACHYPNEIC SO,PATIENT PUT ON NIV SUPPORT.</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>CHEST X-RAY DONE.</P>\r\n\r\n<P>ABG DONE.</P>\r\n\r\n<P>IN VIEW OF LOW HB 6.8 GM/DL SO,2 UNITS RCC GIVEN.</P>\r\n\r\n<P>NIV OFF TRIAL GIVEN.O2 SUPPORT GIVEN BY MASK.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17/11/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>O2 TAPER AND OFF.</P>\r\n\r\n<P>USG ABDOMEN DONE REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>2D ECHO DONE WHICH S/O: IVU DILATED 20MM IN SIZE,NON COLLAPSING,LVEF-55%&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18/11/2025</P>\r\n\r\n<P>PATIENT VITALLY STABLE,NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>SO SHIFT TO WARD&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>TREATMENT MODIFIED IN VIEW OF ORAL CANDIASIS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19/11/2025,</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>GRADUALLY PATIENT&#39;S GENERAL CONDITION IMPROVED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20/11/2025,</P>\r\n\r\n<P>CATHETER CLAMP &AMP; REMOVE.</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 10:58:39','mo','2025-11-20 22:38:32'),(5507,0,0,1462,1421,3480,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 11:04:27','','0000-00-00 00:00:00'),(5508,0,0,1462,1421,3480,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 11:04:43','','0000-00-00 00:00:00'),(5509,0,0,2617,2557,3483,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case --better for giddiness</p>\n\n<p>left side occipital headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 11:08:22','','0000-00-00 00:00:00'),(5510,0,0,2102,2047,3485,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 11:11:07','','0000-00-00 00:00:00'),(5512,0,0,2102,2047,3485,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 11:12:55','','0000-00-00 00:00:00'),(5513,0,0,2116,2062,3488,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----giddiness</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 11:19:56','darshan','2025-11-17 11:21:55'),(5514,0,0,2573,160,3405,0,0,NULL,'','DISCDIAG','','','<P><STRONG>HEPATICENCEPHALOPATHY GRADE -III.</STRONG></P>\r\n\r\n<P><STRONG>ETHENOL INDUCED END STAGE LIVER DZ.</STRONG></P>\r\n\r\n<P><STRONG>DIC</STRONG></P>\r\n\r\n<P><STRONG>UPPER GI BLEED (EVL DONE)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 11:23:23','mo','2025-11-18 22:58:29'),(5515,0,0,2573,160,3405,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n<BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 11:23:23','mo','2025-11-18 22:58:29'),(5516,0,0,2573,160,3405,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 38 YEARS OLD MALE PATIENT P/W K/C/O HTN;PHT;ALD&nbsp;</P>\r\n\r\n<P>H/O CHRONIC ALCOHOLIC.</P>\r\n\r\n<P>WITH C/O 4-5 EPISODES OF HEMATEMESIS YESTERDAY WITH HEAVINESS OF ABDOMEN;MELENA;NAUSEA;LETHARGY SINCE 2-3 DAYS.</P>\r\n\r\n<P>SO,PRIMARY TREATMENT TAKEN AT APEX HOSPITAL,UNA THEN CAME HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-98.2 F</P>\r\n\r\n<P>PR-104/MIN</P>\r\n\r\n<P>BP-90/54MMHG</P>\r\n\r\n<P>SPO2-98% ON RA</P>\r\n\r\n<P>RR-22/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>PALLOR++</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>-WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15/11/25,</P>\r\n\r\n<P>ALL REQUIRED BLOOD INVESTIGATION SENT.TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION MANAGED BY IV FLUID THERAPY.</P>\r\n\r\n<P>IN VIEW OF LOW HB AND PLATELETWITH HIGH PT INR SO,1 UNIT RCC;3UNIT PC AND 3 UNITS FFP GIVEN.VIT-K STARTED.</P>\r\n\r\n<P>INJ. NEXPRO (160MG + NS 10ML) BY INFUSION START.&nbsp;</P>\r\n\r\n<P>PATIENT SHIFTED TO STERLING HOSPITAL FOR UGI SCOPY.</P>\r\n\r\n<P>UGI SCOPY DONE BY DR.RISHIKESH KALARIA.S/O ESOPHAGEAL VARICES;EVL DONE.FOLLOWED ALL HIS ADVICE.</P>\r\n\r\n<P>POST SCOPY PATIENT SHIFTED TO HERE FOR FURTHER MX.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16/11/25,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>INJ. NEXPRO DRIP CONTINUE.</P>\r\n\r\n<P>CBC DONE.</P>\r\n\r\n<P>FOLY`S CATH DONE.</P>\r\n\r\n<P>1 UNIT RCC GIVEN.</P>\r\n\r\n<P>IV ALBUREL 20% GIVEN.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17/11/25,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>INJ. NEXPRO DRIP CONTINUE.</P>\r\n\r\n<P>3 UNIT RCC GIVEN</P>\r\n\r\n<P>SEEN BY DR. RISHIKESH KALARIYA (GASTROENTROLOGIST).</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18/11/25,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>INJ. NEXPRO DRIP CONTINUE.</P>\r\n\r\n<P>PATIENT IS IRRITABLE++.</P>\r\n\r\n<P>GUM BLEEDING AND ORALL BLEEDING +NT.</P>\r\n\r\n<P>IN VIEW OF DROWSINESS ENDOTRACHEAL INTUBATION DONE ET TUEB -7.5 NO DONE BY DR. CHIRAG PATEL.</P>\r\n\r\n<P>PUT ON VENTILATOR SUPPORT AC/VC MODE.</P>\r\n\r\n<P>SEDATION START.</P>\r\n\r\n<P>4UNIT PC GIVEN.</P>\r\n\r\n<P>CONTINUE ORALL BLEDDING, GC POOR PROGNOSIS EXPLAIN TO PATIENT RELETIVE.</P>\r\n\r\n<P>PATIENT RELETIVE WATN DISCHARGE AGIAN MEDICAL ADVICE.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 11:23:23','mo','2025-11-18 22:58:29'),(5517,0,0,2123,2069,3487,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--partailly better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 11:23:44','darshan','2025-11-17 11:25:25'),(5519,0,0,2123,2069,3487,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 11:27:34','','0000-00-00 00:00:00'),(5520,0,0,2621,2561,3493,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT UPPER LIMB PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-17 11:29:48','','0000-00-00 00:00:00'),(5521,0,0,331,315,3481,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better for giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 11:40:00','','0000-00-00 00:00:00'),(5522,0,0,2616,2556,3482,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----15 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 11:44:16','','0000-00-00 00:00:00'),(5523,0,0,2616,2556,3482,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>no associataed other&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 11:45:02','','0000-00-00 00:00:00'),(5524,0,0,2616,2556,3482,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nsytmagus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit-nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 11:45:13','darshan','2025-11-17 11:48:04'),(5525,0,0,2616,2556,3482,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 11:48:07','','0000-00-00 00:00:00'),(5526,0,0,2618,2558,3484,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo&thinsp;</p>\n\n<p>k/c/o endolymphatic hydrops&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 11:51:25','','0000-00-00 00:00:00'),(5527,0,0,2618,2558,3484,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 11:51:36','','0000-00-00 00:00:00'),(5528,0,0,2623,2563,3498,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 11:59:40','','0000-00-00 00:00:00'),(5529,0,0,2623,2563,3498,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associted other cns symtpmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:00:07','','0000-00-00 00:00:00'),(5530,0,0,2623,2563,3498,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:00:16','darshan','2025-11-17 13:13:34'),(5532,0,0,2619,2559,3489,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR DEAFNESS AND TINNITUS ---1.5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:08:32','','0000-00-00 00:00:00'),(5533,0,0,2619,2559,3489,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden deafness after exposure to loud sound to right ear&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:08:54','','0000-00-00 00:00:00'),(5534,0,0,2619,2559,3489,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---i/n</p>\n\n<p>Pta---right high frqe severe sn deafness(o)</p>\n\n<p>OAE--poor corelation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:09:13','darshan','2025-11-17 12:37:16'),(5535,0,0,406,384,3503,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:11:45','','0000-00-00 00:00:00'),(5536,0,0,2043,1992,3492,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:13:25','darshan','2025-11-17 12:14:43'),(5538,0,0,2043,1992,3492,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAEWVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:15:53','','0000-00-00 00:00:00'),(5539,0,0,2608,162,3470,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 12:16:43','mo','2025-11-17 12:43:09'),(5540,0,0,994,961,3504,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:18:33','','0000-00-00 00:00:00'),(5542,0,0,994,961,3504,0,0,NULL,'','MADVICE','ZZZ','Remark','CONTINUE TREATMENT WITH DR KAMLESH PATEL','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:19:28','','0000-00-00 00:00:00'),(5543,0,0,2622,2562,3495,0,0,NULL,'','HIST','ZZZ','Remark','<p>foflow up case----two episodes of vertigo&thinsp;</p>\n\n<p>short duration</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:22:04','','0000-00-00 00:00:00'),(5545,0,0,2622,2562,3495,0,0,NULL,'','MADVICE','ZZZ','Remark','ORTHOPEADIC OPINION F+OR KNEE PAIN','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:23:22','','0000-00-00 00:00:00'),(5546,0,0,2627,2567,3507,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----2 DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:27:08','','0000-00-00 00:00:00'),(5547,0,0,2627,2567,3507,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling on change of postrue</p>\n\n<p>heaviness of head +</p>\n\n<p>no assocaited other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:27:24','darshan','2025-11-17 12:31:56'),(5548,0,0,2627,2567,3507,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nads</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--reduced vestibualr score</p>\n\n<p>vng---left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:32:14','darshan','2025-11-17 13:24:06'),(5551,0,0,1393,1353,3496,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:34:55','','0000-00-00 00:00:00'),(5552,0,0,1393,1353,3496,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:35:26','','0000-00-00 00:00:00'),(5554,0,0,1393,1353,3496,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:35:56','','0000-00-00 00:00:00'),(5555,0,0,2608,162,3470,0,0,NULL,'','TREATDISC_TI','','','<P>TAB NEXPRO FAST (40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS.............(10)</P>\r\n\r\n<P>TAB TRICIUM HD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0-1-0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS..............(5)</P>\r\n\r\n<P>TAB CREMALAX (10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0-0-1&nbsp; &nbsp; &nbsp; &nbsp; AFTER&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS..............(5)</P>\r\n\r\n<P>TAB ULTRACET SEMI&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS..............(10)</P>\r\n\r\n<P>TAB LUPIHEME&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0-1-0&nbsp; &nbsp; &nbsp; &nbsp; AFTER&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 30&nbsp;DAYS..............(30)</P>\r\n\r\n<P>SYP PEGCLEAR (10ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0-0-1&nbsp; &nbsp; &nbsp; &nbsp; AT BED TIME.............(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 12:40:59','mo','2025-11-17 12:43:09'),(5556,0,0,2624,2564,3500,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----3-4 YR S||','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:42:16','','0000-00-00 00:00:00'),(5557,0,0,2624,2564,3500,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR TINNITUS AND DEAFNESS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:42:16','','0000-00-00 00:00:00'),(5558,0,0,2624,2564,3500,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:43:04','','0000-00-00 00:00:00'),(5559,0,0,2624,2564,3500,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---right severe low freq sns deafness</p>\n\n<p>stabilomtry---wnl</p>\n\n<p>vng--right labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:43:18','darshan','2025-11-17 13:46:38'),(5560,0,0,2624,2564,3500,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:43:22','','0000-00-00 00:00:00'),(5561,0,0,2110,2056,3497,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:50:14','','0000-00-00 00:00:00'),(5562,0,0,2110,2056,3497,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:50:24','','0000-00-00 00:00:00'),(5564,0,0,2110,2056,3497,0,0,NULL,'','MADVICE','ZZZ','Remark','PSYCHIATRIC OPINION  FOR PANIC ATTACK','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:52:54','','0000-00-00 00:00:00'),(5565,0,0,2192,2141,3499,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 12:56:42','','0000-00-00 00:00:00'),(5566,0,0,2625,2565,3502,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 13:02:45','','0000-00-00 00:00:00'),(5567,0,0,2630,2570,3513,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 13:05:02','','0000-00-00 00:00:00'),(5568,0,0,2623,2563,3498,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 13:14:01','','0000-00-00 00:00:00'),(5570,0,0,2632,2572,3515,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--medicine skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 13:17:08','','0000-00-00 00:00:00'),(5571,0,0,2627,2567,3507,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 13:24:09','','0000-00-00 00:00:00'),(5572,0,0,2627,2567,3507,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 13:24:37','','0000-00-00 00:00:00'),(5574,0,0,2626,2566,3505,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 13:30:10','','0000-00-00 00:00:00'),(5575,0,0,2626,2566,3505,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo -sudden onset with nausea and vomiting&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 13:30:51','darshan','2025-11-17 14:01:20'),(5576,0,0,2626,2566,3505,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit-nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng-right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 13:31:04','darshan','2025-11-17 14:05:53'),(5578,0,0,880,848,3512,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 13:34:08','','0000-00-00 00:00:00'),(5580,0,0,2623,2563,3498,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 13:37:23','','0000-00-00 00:00:00'),(5581,0,0,2631,2571,3514,0,0,NULL,'','HIST','ZZZ','Remark','<p>vertigo----10 days&thinsp;</p>\n\n<p>positional vertigo without any cns symtpsmo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 13:43:22','','0000-00-00 00:00:00'),(5582,0,0,2631,2571,3514,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 13:43:39','','0000-00-00 00:00:00'),(5584,0,0,2631,2571,3514,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS V ESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 13:44:55','','0000-00-00 00:00:00'),(5586,0,0,2627,2567,3507,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 13:49:12','','0000-00-00 00:00:00'),(5587,0,0,29,27,3516,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 13:53:06','','0000-00-00 00:00:00'),(5588,0,0,2634,2573,3518,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 13:55:45','','0000-00-00 00:00:00'),(5589,0,0,2626,2566,3505,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 14:06:36','','0000-00-00 00:00:00'),(5591,0,0,827,796,3520,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 14:09:35','','0000-00-00 00:00:00'),(5593,0,0,2626,2566,3505,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 14:13:33','','0000-00-00 00:00:00'),(5594,0,0,983,952,3523,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 14:16:20','darshan','2025-11-17 14:17:39'),(5595,0,0,2149,2096,3525,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 17:16:13','darshan','2025-11-17 17:18:46'),(5597,0,0,2149,2096,3525,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 17:18:56','','0000-00-00 00:00:00'),(5598,0,0,232,219,3526,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n\n<p>two&thinsp; episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 17:21:40','','0000-00-00 00:00:00'),(5599,0,0,2636,2575,3527,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 17:31:54','','0000-00-00 00:00:00'),(5600,0,0,2636,2575,3527,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic imbalance remains for few mins to hrs&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 17:32:31','darshan','2025-11-17 17:33:03'),(5601,0,0,2636,2575,3527,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilomtry---wnl</p>\n\n<p>vng-central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 17:32:45','darshan','2025-11-17 18:46:10'),(5603,0,0,2636,2575,3527,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE --MANY MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 17:33:16','','0000-00-00 00:00:00'),(5604,0,0,1922,1875,3533,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---rigth tm joint pain +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 17:35:36','','0000-00-00 00:00:00'),(5605,0,0,2638,2577,3529,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 17:48:14','','0000-00-00 00:00:00'),(5606,0,0,2638,2577,3529,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotyr feeling when pt is in any posture she feels sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>left ear tinnitus +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 17:48:55','darshan','2025-11-19 18:16:57'),(5607,0,0,2638,2577,3529,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--right severe sn deafness</p>\n\n<p>stabilomety---wnl</p>\n\n<p>vng-right labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 17:49:06','darshan','2025-11-19 18:33:24'),(5609,0,0,2639,2578,3530,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 17:54:59','','0000-00-00 00:00:00'),(5610,0,0,2639,2578,3530,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotoatyr feeling with sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 17:55:29','','0000-00-00 00:00:00'),(5611,0,0,2639,2578,3530,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabiloemtyr---reduced vestbular score</p>\n\n<p>vng-right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 17:55:45','darshan','2025-11-17 18:57:24'),(5613,0,0,2644,2583,3537,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----- better for giddiness&thinsp;</p>\n\n<p>headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:02:11','','0000-00-00 00:00:00'),(5615,0,0,2640,2579,3531,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2 WEEKS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:13:23','','0000-00-00 00:00:00'),(5616,0,0,2640,2579,3531,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:13:53','','0000-00-00 00:00:00'),(5617,0,0,2640,2579,3531,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit-nad</p>\n\n<p>MRI brain with angiography---nad</p>\n\n<p>pta---bilatearal very severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:14:06','darshan','2025-11-17 19:24:40'),(5619,0,0,2646,2585,3541,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT 5TH METACARPAL NECK FRACTURE','','',0,'0000-00-00 00:00:00','drsagar','2025-11-17 18:14:31','','0000-00-00 00:00:00'),(5620,0,0,2641,2580,3532,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO ---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:20:50','','0000-00-00 00:00:00'),(5621,0,0,2641,2580,3532,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotyr feeling any time and remains for few&thinsp; mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:20:57','darshan','2025-11-17 18:21:30'),(5622,0,0,2641,2580,3532,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR TINNITUS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:21:01','','0000-00-00 00:00:00'),(5623,0,0,2641,2580,3532,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---right very severe sn deafness</p>\n\n<p>vng--right labyrinthi nepathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:21:45','darshan','2025-11-17 19:39:07'),(5625,0,0,1583,1540,3536,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---</p>\n\n<p>left mild post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:24:16','','0000-00-00 00:00:00'),(5626,0,0,1583,1540,3536,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:25:05','','0000-00-00 00:00:00'),(5628,0,0,1583,1540,3536,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:25:28','','0000-00-00 00:00:00'),(5629,0,0,1027,995,3539,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:27:48','','0000-00-00 00:00:00'),(5630,0,0,1427,1386,3538,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for ear discharge&thinsp;</p>\n\n<p>rtm---no discharge&thinsp;</p>\n\n<p>nose--congested&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:31:48','','0000-00-00 00:00:00'),(5632,0,0,1427,1386,3538,0,0,NULL,'','MADVICE','ZZZ','Remark','CT PNS SOS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:32:45','','0000-00-00 00:00:00'),(5633,0,0,2645,2584,3540,0,0,NULL,'','HIST','ZZZ','Remark','<p>senes of imbalance and giddienss since 3 months&thinsp;</p>\n\n<p>on change of head position he feels imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>occassional headache +</p>\n\n<p>no associated other cns symptms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:39:24','darshan','2025-11-17 18:43:27'),(5634,0,0,2645,2584,3540,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----3 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:40:59','','0000-00-00 00:00:00'),(5635,0,0,2645,2584,3540,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----right very severe sn deafness</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:43:43','darshan','2025-11-17 19:47:43'),(5637,0,0,2647,2587,3544,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---15 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:53:49','','0000-00-00 00:00:00'),(5638,0,0,2647,2587,3544,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:53:57','darshan','2025-11-17 18:54:29'),(5639,0,0,2647,2587,3544,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike-nad</p>\n\n<p>hit-nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:54:37','darshan','2025-11-17 20:02:59'),(5641,0,0,2639,2578,3530,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 18:57:55','','0000-00-00 00:00:00'),(5644,0,0,2639,2578,3530,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAEWNVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 19:16:06','','0000-00-00 00:00:00'),(5645,0,0,807,776,3545,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 19:20:46','','0000-00-00 00:00:00'),(5646,0,0,2640,2579,3531,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 19:24:49','','0000-00-00 00:00:00'),(5647,0,0,2640,2579,3531,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 19:25:20','','0000-00-00 00:00:00'),(5649,0,0,2128,2074,3542,0,0,NULL,'','HIST','ZZZ','Remark','<p>fofllow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 19:28:20','','0000-00-00 00:00:00'),(5651,0,0,2128,2074,3542,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 19:29:23','','0000-00-00 00:00:00'),(5652,0,0,2648,2588,3547,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW WEEKS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 19:34:45','','0000-00-00 00:00:00'),(5653,0,0,2648,2588,3547,0,0,NULL,'','DIAG','ZZZ','Remark','VM VS BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 19:35:10','','0000-00-00 00:00:00'),(5654,0,0,2648,2588,3547,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duraiton positional giddiness with headach episodic</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 19:35:38','','0000-00-00 00:00:00'),(5655,0,0,2648,2588,3547,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike---nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 19:35:56','','0000-00-00 00:00:00'),(5656,0,0,2648,2588,3547,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE --MANY MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 19:36:01','','0000-00-00 00:00:00'),(5657,0,0,2641,2580,3532,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 19:39:11','','0000-00-00 00:00:00'),(5659,0,0,2640,2579,3531,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 19:43:59','','0000-00-00 00:00:00'),(5661,0,0,2649,2589,3549,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase--recurence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 19:54:11','','0000-00-00 00:00:00'),(5662,0,0,2649,2589,3549,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 19:54:19','','0000-00-00 00:00:00'),(5664,0,0,2645,2584,3540,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 19:57:03','','0000-00-00 00:00:00'),(5665,0,0,2647,2587,3544,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 20:03:15','','0000-00-00 00:00:00'),(5667,0,0,1316,1277,3550,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-17 20:05:15','','0000-00-00 00:00:00'),(5669,0,0,2647,2587,3544,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-17 20:12:16','','0000-00-00 00:00:00'),(5670,0,0,2651,166,3553,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE PYOGENIC TONSILITIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 21:18:26','mo','2025-11-19 14:35:58'),(5671,0,0,2651,166,3553,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 23 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O: FEVER WITH CHILL WITH RIGOR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; THROAT PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; VOMITING (2 TIME)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BODYACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; HEADACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SEVERE GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 2-3 DAYS FOR THAT PT PRIMARY CONSULTED GP AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>CBC,CRP, DENGUE CARD TEST(-VE) 17-11-2025</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-102.5&#39;F, PR-90/MIN, BP-100/60MMHG, SPO2-97% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 21:18:26','mo','2025-11-19 14:35:58'),(5672,0,0,2651,166,3553,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3&nbsp;DAYS&nbsp;</P>\r\n\r\n<P>AVOID COLD FOOD&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 21:18:26','mo','2025-11-19 14:35:58'),(5673,0,0,2651,166,3553,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>TAB AKILOS-SP</P>\r\n\r\n<P>BETADIN GARGLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 21:18:26','mo','2025-11-19 14:35:58'),(5674,0,0,2633,165,3517,0,0,NULL,'','DISCDIAG','','','<P><STRONG>NECROTISING PANCREAS WITH INFECTION + SEPTICEMIA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 21:27:00','mo','2025-11-26 13:45:05'),(5675,0,0,2633,165,3517,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 52 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O: RECURRENT ACUTE NACROTISING PANCREATITIS<BR />\r\nC/O: ABDOMINAL PAIN &AMP; HEAVINESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; OCASSIONALLY VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BREATHLESSNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 4 MONTH FOR THAT PT PRIMARY CONSULTED GONDAL AND THEN GIRIRAJ HOSPITAL THEN PRATHAM HOSPITAL THEN THANKY HOSPITAL AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>2D ECHO DONE ON 14-11-2025 EF:60%</P>\r\n\r\n<P>CT SCAN ABDOMEN + PELVIS (29/10/2025 &AMP; 13/11/2025)</P>\r\n\r\n<P>PRE-OP FITNESS DONE AT KOTHARI HOSPITAL RAJKOT</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-100/MIN, BP-100/70MMHG, SPO2-97% ON RA, RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-TENDERNESS+<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17/11/2025</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18/11/2025</P>\r\n\r\n<P>CHEST X-RAY DONE ON 18/11/2025&nbsp;</P>\r\n\r\n<P>IN VIEW OF PATIENT BEING TACHYPNIC&nbsp; AND HYPOXIA PATIENT SHIFTED TO ICU&nbsp;FOR OBSERVATION AND O2 SUPPORT START FOR 1 HOUR</P>\r\n\r\n<P>FURTHER FEW HOUR IN ICU UNEVENTFULL SO SHIFT TO WARD</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19/11/2025</P>\r\n\r\n<P>RIGHT SUBCLAVIAN CENTRAL LINE INSERTION DONE BY DR RUSHIKESH KATHRECHA(ANEASTHETIST) IN ICU UNDER OBSERVATION WITH ALL ASEPTIC PRECAUTION&nbsp;</P>\r\n\r\n<P>LAPAROTOMY + PANCREATIC NECCROSECTOMY + DRAINAGE OF PERITONEAL COLLECTION + ADHENOLYSIS&nbsp; DONE BY DR B.M.THANKY &AMP; DR PRATAPSINH DODIYA&nbsp;UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST SURGERY PATIENT SHIFTED TO ICU.O2 SUPPORT GIVEN FOR FEW HOURS.</P>\r\n\r\n<P>PATIENT DEVELOPED HYPOTENSION MANAGED BY IV FLUID THERAPY F/BY IV NORAD DRIP STARTED.</P>\r\n\r\n<P>3 UNITS RCC GIVEN.</P>\r\n\r\n<P>MD PHYSICIAN AND INTENSIVIST DR.ARCHIT RATHOD REFERENCE DONE.FOLLOWED ALL HI ADVICE.</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20/11/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>ORALLY SIPS OF WATER STARTED.</P>\r\n\r\n<P>INTENSIVIST REVIEW TAKEN.FOLLOWED ALL HIS ADVICE.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21/11/25,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>1 UNIT RCC GIVEN.</P>\r\n\r\n<P>ORALLY LIQUID DIET STARTED.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22/11/25,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>1 UNIT RCC AND 4 UNITS FFP GIVEN.</P>\r\n\r\n<P>IN VIEW OF HYPOKALEMIA MANAGED BY IV KCL DRIP.</P>\r\n\r\n<P>IV ALBUMIN 20% GIVEN.</P>\r\n\r\n<P>IV ANTI-FUNGAL STARTED.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23/11/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>ORALLY LIQUID DIET CONTINUOUSLY.</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.<BR />\r\n&nbsp;</P>\r\n\r\n<P>24/11/2025,</P>\r\n\r\n<P>USG ABDOMEN &AMP; PELVIS DONE</P>\r\n\r\n<P>CATHETER CLAMP &AMP; REMOVE</P>\r\n\r\n<P>INJ ALBUMIN 20% GIVEN</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>25/11/25,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26/11/25,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION ON&nbsp;&nbsp;RELATIVE REQUEST</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 21:27:00','mo','2025-11-26 13:45:05'),(5676,0,0,2633,165,3517,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>AVOID OILY/SPICY FOOD</P>\r\n\r\n<P>STRICT U/O CHART&nbsp;</P>\r\n\r\n<P>DRAIN CARE&nbsp;</P>\r\n\r\n<P>DAILY CVP CARE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 21:27:00','mo','2025-11-26 13:45:05'),(5677,0,0,2633,165,3517,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ MERO</P>\r\n\r\n<P>INJ FORCAN</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ NORAD</P>\r\n\r\n<P>INJ VIT-K</P>\r\n\r\n<P>INJ TRENEXA</P>\r\n\r\n<P>INJ COSKLOT</P>\r\n\r\n<P>INJ NAHCO3</P>\r\n\r\n<P>INJ ALBUMIN</P>\r\n\r\n<P>INJ OTSKI</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>INJ KCL</P>\r\n\r\n<P>INJ CAL.GLUCONATE</P>\r\n\r\n<P>5UNITS RCC</P>\r\n\r\n<P>4 UNITS FFP</P>\r\n\r\n<P>PEGLEC BOWEL PREP.</P>\r\n\r\n<P>INJ MVI</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ DYTOR</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-17 21:27:00','mo','2025-11-26 13:45:05'),(5678,0,0,2633,165,3517,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-17 21:27:20','mo','2025-11-26 13:45:05'),(5679,0,0,2607,161,3468,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS WITH BLOOD INVESTIGATION CRP</P>\r\n\r\n<P>TAKE ANTIDIABETIC DIET</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-18 08:56:32','mo','2025-11-20 13:21:01'),(5680,0,0,2607,161,3468,0,0,NULL,'','TREATDISC_TI','','','<P>INJ.MERO (1GM/100 ML NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;7AM-2PM-10PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 2 DAYS...............(8&nbsp;INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB.METROGYL ER (600)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; FOR 2 DAYS...............(5 TAB)</P>\r\n\r\n<P>TAB.NEXPRO FAST (40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; FOR 5&nbsp;DAYS...............(5 TAB)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>TAB.ZOFER MD (4MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-1-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; FOR 5&nbsp;DAYS...............(15 TAB)</P>\r\n\r\n<P>CAP.ENUFF (100)&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-1-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;FOR 5&nbsp;DAYS...............(15 TAB)&nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>TAB.BISOBIS (5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;FOR 5&nbsp;DAYS...............(10&nbsp;TAB)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB.UNISTAR (20/150)&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;0-0-1</P>\r\n\r\n<P>TAB.GLUCONORM G2&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1-0-1</P>\r\n\r\n<P>TAB.SITASON DM (100)&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;0-1-0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-18 08:56:32','mo','2025-11-20 13:21:01'),(5681,0,0,2655,2594,3558,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 10:47:18','','0000-00-00 00:00:00'),(5682,0,0,2656,2595,3559,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR ITCHING---15-20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 10:50:05','','0000-00-00 00:00:00'),(5683,0,0,2656,2595,3559,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Both EAC dry</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 10:50:13','','0000-00-00 00:00:00'),(5684,0,0,2657,2596,3561,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1.5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 11:00:20','','0000-00-00 00:00:00'),(5685,0,0,2657,2596,3561,0,0,NULL,'','HIST','ZZZ','Remark','<p>epsodic vertigo---sudden onset of rotaotyr feeling any time and remains for few mins to hrs</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 11:01:04','','0000-00-00 00:00:00'),(5686,0,0,2657,2596,3561,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain limited study--nad</p>\n\n<p>pta---right severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 11:01:21','darshan','2025-11-18 12:34:16'),(5687,0,0,2657,2596,3561,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 11:01:28','','0000-00-00 00:00:00'),(5688,0,0,2658,2597,3562,0,0,NULL,'','HIST','ZZZ','Remark','<p>fofllow up case--left frontal pain---4-5 days&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 11:04:40','','0000-00-00 00:00:00'),(5689,0,0,2658,2597,3562,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 11:04:46','','0000-00-00 00:00:00'),(5690,0,0,181,168,3565,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 11:18:22','darshan','2025-11-18 11:19:41'),(5691,0,0,2178,2127,3569,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 11:30:34','','0000-00-00 00:00:00'),(5693,0,0,2178,2127,3569,0,0,NULL,'','MADVICE','ZZZ','Remark','CT AMENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-18 11:32:09','','0000-00-00 00:00:00'),(5694,0,0,948,917,3571,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 11:45:57','','0000-00-00 00:00:00'),(5695,0,0,897,865,3572,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 11:54:54','','0000-00-00 00:00:00'),(5696,0,0,2276,2220,3574,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT LATERAL TIBIAL PLATEAU DEPRESSED FRACTURE','','',0,'0000-00-00 00:00:00','drsagar','2025-11-18 11:55:11','','0000-00-00 00:00:00'),(5697,0,0,2661,2599,3573,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 12:01:19','','0000-00-00 00:00:00'),(5699,0,0,2661,2599,3573,0,0,NULL,'','MADVICE','ZZZ','Remark','REST AS PER GYNAECOLOGIST OPINION ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-18 12:03:33','','0000-00-00 00:00:00'),(5700,0,0,2664,2602,3577,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 12:12:30','','0000-00-00 00:00:00'),(5701,0,0,2665,2603,3579,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER BACK PAIN WITH BOTH OA K','','',0,'0000-00-00 00:00:00','drsagar','2025-11-18 12:17:12','','0000-00-00 00:00:00'),(5702,0,0,2662,2600,3575,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----recurrence of vertigo&thinsp;</p>\n\n<p>medicine skipped</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 12:23:01','','0000-00-00 00:00:00'),(5703,0,0,2666,2604,3583,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----2 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 12:50:53','','0000-00-00 00:00:00'),(5704,0,0,2666,2604,3583,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling on change of posture</p>\n\n<p>right ear tinnitus +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 12:51:18','','0000-00-00 00:00:00'),(5705,0,0,2666,2604,3583,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 12:51:35','darshan','2025-11-18 13:33:10'),(5707,0,0,2667,2605,3584,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--two episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 12:53:50','','0000-00-00 00:00:00'),(5708,0,0,2669,2607,3586,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 MNOTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 13:03:13','','0000-00-00 00:00:00'),(5709,0,0,2669,2607,3586,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 13:03:54','','0000-00-00 00:00:00'),(5710,0,0,2669,2607,3586,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---reduced SS score</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 13:04:10','darshan','2025-11-18 13:46:17'),(5712,0,0,1758,1714,3587,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 13:08:57','','0000-00-00 00:00:00'),(5714,0,0,1758,1714,3587,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER FOR 1 WEEK','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-18 13:10:11','','0000-00-00 00:00:00'),(5715,0,0,2671,2609,3589,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase--medicine irregualr&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 13:16:47','','0000-00-00 00:00:00'),(5716,0,0,2672,2610,3590,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ----6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 13:23:21','','0000-00-00 00:00:00'),(5717,0,0,2672,2610,3590,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of toatry feeling with sense of imbalance&thinsp;</p>\n\n<p>sometime posiitional giddiness +</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 13:23:55','darshan','2025-11-18 14:02:02'),(5718,0,0,2672,2610,3590,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilatealr high freq severe sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--Bialtera vestibulopathy with bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 13:24:11','darshan','2025-11-18 14:06:49'),(5720,0,0,2674,2611,3592,0,0,NULL,'','CC','ZZZ','Remark','SSENSE OF IMBALANCE ---FEW MOHTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 13:29:06','','0000-00-00 00:00:00'),(5722,0,0,2666,2604,3583,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 13:33:52','','0000-00-00 00:00:00'),(5724,0,0,265,250,3593,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for&thinsp; giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 13:37:21','','0000-00-00 00:00:00'),(5726,0,0,265,250,3593,0,0,NULL,'','MADVICE','ZZZ','Remark','CONTINUE TREATMENT WITH DR S. KAUL SIR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-18 13:38:39','','0000-00-00 00:00:00'),(5727,0,0,2669,2607,3586,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 13:46:35','','0000-00-00 00:00:00'),(5731,0,0,2666,2604,3583,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-18 13:47:41','','0000-00-00 00:00:00'),(5733,0,0,2669,2607,3586,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-18 13:52:19','','0000-00-00 00:00:00'),(5734,0,0,2672,2610,3590,0,0,NULL,'','DIAG','ZZZ','Remark','BILATERAL VESTIBULOPATHY WITH BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 14:07:03','','0000-00-00 00:00:00'),(5735,0,0,2672,2610,3590,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 14:07:14','','0000-00-00 00:00:00'),(5737,0,0,2677,2612,3596,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FWE MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 14:11:22','','0000-00-00 00:00:00'),(5738,0,0,2677,2612,3596,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo with headache&thinsp;</p>\n\n<p>no asociated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 14:13:38','darshan','2025-11-18 14:14:50'),(5739,0,0,2677,2612,3596,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE INTERMITTENTLY||','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 14:13:47','','0000-00-00 00:00:00'),(5740,0,0,2677,2612,3596,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>CT brain--nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 14:14:27','darshan','2025-11-18 19:14:36'),(5741,0,0,2677,2612,3596,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 14:14:27','','0000-00-00 00:00:00'),(5742,0,0,2674,2611,3592,0,0,NULL,'','HIST','ZZZ','Remark','<p>when pt walks he feels sense of imbalance --remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 14:15:38','','0000-00-00 00:00:00'),(5743,0,0,2674,2611,3592,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---WNL</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>VNG--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 14:15:49','darshan','2025-11-18 14:22:00'),(5745,0,0,2672,2610,3590,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-18 14:16:15','','0000-00-00 00:00:00'),(5746,0,0,2674,2611,3592,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 14:22:24','','0000-00-00 00:00:00'),(5749,0,0,2674,2611,3592,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-18 14:27:18','','0000-00-00 00:00:00'),(5750,0,0,2680,2615,3600,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 17:11:12','darshan','2025-11-18 17:15:33'),(5751,0,0,2680,2615,3600,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---7-8 MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 17:14:59','','0000-00-00 00:00:00'),(5752,0,0,2680,2615,3600,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 17:15:48','darshan','2025-11-18 18:06:03'),(5753,0,0,2680,2615,3600,0,0,NULL,'','DIAG','ZZZ','Remark','INTERMITTENT BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 17:15:52','','0000-00-00 00:00:00'),(5754,0,0,337,321,3601,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 17:22:40','','0000-00-00 00:00:00'),(5755,0,0,2681,2616,3602,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----recurence of positional giddiness</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 17:32:11','','0000-00-00 00:00:00'),(5756,0,0,2681,2616,3602,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>right post cnal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 17:32:26','','0000-00-00 00:00:00'),(5757,0,0,2681,2616,3602,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 17:32:50','','0000-00-00 00:00:00'),(5759,0,0,2681,2616,3602,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-18 17:33:28','','0000-00-00 00:00:00'),(5760,0,0,225,212,3603,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 17:40:28','','0000-00-00 00:00:00'),(5761,0,0,2682,2617,3604,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--medicine skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 17:48:11','','0000-00-00 00:00:00'),(5762,0,0,2067,2014,3607,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----recurence of vertigo&thinsp; and headache</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 17:58:17','','0000-00-00 00:00:00'),(5763,0,0,2067,2014,3607,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 17:58:19','','0000-00-00 00:00:00'),(5764,0,0,2680,2615,3600,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 18:06:42','','0000-00-00 00:00:00'),(5766,0,0,2679,2614,3598,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 18:10:12','','0000-00-00 00:00:00'),(5767,0,0,2679,2614,3598,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>right psot canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 18:10:21','','0000-00-00 00:00:00'),(5768,0,0,2679,2614,3598,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 18:11:02','','0000-00-00 00:00:00'),(5770,0,0,2679,2614,3598,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAEVNEUR ---15 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-18 18:12:03','','0000-00-00 00:00:00'),(5771,0,0,2684,2619,3609,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 18:24:12','','0000-00-00 00:00:00'),(5772,0,0,2684,2619,3609,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 18:24:49','','0000-00-00 00:00:00'),(5773,0,0,2684,2619,3609,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>neurologist opinion taken</p>\n\n<p>pta----bilateral mild sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 18:25:03','darshan','2025-11-18 19:02:02'),(5776,0,0,2680,2615,3600,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-18 18:27:27','','0000-00-00 00:00:00'),(5777,0,0,2688,2622,3615,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 18:33:56','','0000-00-00 00:00:00'),(5778,0,0,2689,2623,3617,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----2 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 18:50:33','','0000-00-00 00:00:00'),(5779,0,0,2689,2623,3617,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo---sudden onset any time and remains for few mins to hrs</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 18:50:34','darshan','2025-11-18 18:51:15'),(5780,0,0,2689,2623,3617,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR DEAFNESS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 18:50:43','','0000-00-00 00:00:00'),(5781,0,0,2689,2623,3617,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>Mri brain---nad</p>\n\n<p>&thinsp;pta--rigth moderate to severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>CCG-BOdy axis spin out of range</p>\n\n<p>vng--right labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 18:51:30','darshan','2025-11-18 19:41:39'),(5782,0,0,2689,2623,3617,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 18:51:45','','0000-00-00 00:00:00'),(5783,0,0,2690,2624,3619,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 18:57:01','','0000-00-00 00:00:00'),(5784,0,0,2684,2619,3609,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-18 19:02:39','','0000-00-00 00:00:00'),(5787,0,0,2684,2619,3609,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-18 19:15:43','','0000-00-00 00:00:00'),(5788,0,0,2573,160,3405,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>15-11-20205 , AT&nbsp;STERLING HOSPITAL &nbsp;UGI SCOPY DONE.</P>\r\n\r\n<P>UGI SCOPY DONE BY DR.RISHIKESH KALARIA.S/O ESOPHAGEAL VARICES;EVL DONE.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-18 22:58:29','','0000-00-00 00:00:00'),(5789,0,0,2573,160,3405,0,0,NULL,'','DISCCOND','','','<P>ON DISCHARGE TIME PATIENT IS UNDER SEDATION</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T- 99.0&nbsp;F</P>\r\n\r\n<P>PR- 73/MIN</P>\r\n\r\n<P>BP- 150/90 MMHG</P>\r\n\r\n<P>SPO2-98% ON VENTILATOR SUPPORT AC/VC MODE.</P>\r\n\r\n<P>RR-20/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS- UNDER SEDATION</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>ET TUBE - 02 DAYS&nbsp;</P>\r\n\r\n<P>FOLY`S CATH - 04 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-18 22:58:29','','0000-00-00 00:00:00'),(5790,0,0,2573,160,3405,0,0,NULL,'','ADVICE','','','<P>ICU CARE&nbsp;</P>\r\n\r\n<P>VENTIALTOR SUPPORT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-18 22:58:29','','0000-00-00 00:00:00'),(5791,0,0,2573,160,3405,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. MEZOR</P>\r\n\r\n<P>INJ. METROGYL</P>\r\n\r\n<P>INJ. NEXPRO&nbsp;</P>\r\n\r\n<P>INJ. VOMISET</P>\r\n\r\n<P>INJ. THIAMIN</P>\r\n\r\n<P>INJ. VIT K</P>\r\n\r\n<P>INJ. TERLIPRESSIN</P>\r\n\r\n<P>INJ. PERINORM</P>\r\n\r\n<P>INJ. FEBRINYL</P>\r\n\r\n<P>INJ. AVIL</P>\r\n\r\n<P>INJ. LEVIGRESS</P>\r\n\r\n<P>INJ. ALBUMIN</P>\r\n\r\n<P>INJ. DNS</P>\r\n\r\n<P>INJ. ELDERVIT</P>\r\n\r\n<P>INJ. KCL</P>\r\n\r\n<P>TAB. LIBRIUM</P>\r\n\r\n<P>TAB. COBADEX CZS</P>\r\n\r\n<P>TAB. USOCOL</P>\r\n\r\n<P>TAB. THYA B</P>\r\n\r\n<P>LIQ. LOOZ</P>\r\n\r\n<P>PC, FFP, RCC</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-18 22:58:29','','0000-00-00 00:00:00'),(5792,0,0,2573,160,3405,0,0,NULL,'','TREATDISC_TI','','','<P>INJ. MEZOR 1GM + NS 100ML IV TDS(4 DAYS GIVEN)</P>\r\n\r\n<P>INJ. METROGYL 100ML IV TDS (&nbsp;4 DAYS GIVEN)</P>\r\n\r\n<P>INJ. NEXPRO 160MG + NS 10CC BY S/P - 3ML/HR.</P>\r\n\r\n<P>INJ. VOMISET 2ML IV TDS</P>\r\n\r\n<P>INJ. THIAMIN 2ML + NS 100ML IV TDS</P>\r\n\r\n<P>INJ. VIT K 1AMP IV BD</P>\r\n\r\n<P>INJ. TERLIPRESSIN 1AMP + NS 100ML IV TDS</P>\r\n\r\n<P>INJ. PERINORM 2ML IV TDS</P>\r\n\r\n<P>INJ. FEBRINYL IV SOS</P>\r\n\r\n<P>INJ. LEVIGRESS 500MG IV TDS</P>\r\n\r\n<P>INJ. ALBUMIN 20% 100ML IV OD&nbsp;(&nbsp;4 DAYS GIVEN)&nbsp;</P>\r\n\r\n<P>INJ. DNS 500ML +INJ. ELEDRVIT IV 50 ML /HR.</P>\r\n\r\n<P>LOZZ ENEMA TDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-18 22:58:29','','0000-00-00 00:00:00'),(5793,0,0,2691,172,3621,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-18 23:09:05','mo','2025-11-23 13:01:15'),(5794,0,0,2691,172,3621,0,0,NULL,'','HISTHOSPCOURSE','','','<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">A 80 YEARS OLD MALE&nbsp; PATIENT PRESENT WITH,</SPAN></SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">K/C/O: NAD</SPAN></SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">H/O :SUDDENLY RIGHT SIDED UPPER EXTREMITY STIFFNESS (? SEZIURE), FEW SECONDS UNCONSCIOUS,&nbsp;NOT RESPONDING, WITH 2 EPISODE OF VOMITING (BROWNISH) TODAY @ 8:30PM.</SPAN></SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">ALL ABOVE MENTIONED COMPLAINTS SINCE TODAY AT 8.30PM.</SPAN></SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</SPAN></SPAN></P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">O/E:</SPAN></SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">TEMP- 98.0`F</SPAN></SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">PR-68 /MIN</SPAN></SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">BP- 160/;100MMHG</SPAN></SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">SPO2-99% ON RA</SPAN></SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">RR-20/MIN</SPAN></SPAN></P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">S/E:</SPAN></SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">CNS-CONSCIOUS AND ORIENTED F/V/C,</SPAN></SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">RS-BLAE+,</SPAN></SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">CVS-S1S2+,</SPAN></SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">P/A-SOFT</SPAN></SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">RBS-115MG/DL</SPAN></SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">ECG DONE.S/O STEMI</SPAN></SPAN></P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</SPAN></SPAN></P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">18-11-2025,</SPAN></SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\"><SPAN STYLE=\"FONT-FAMILY:CALIBRI,\">PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</SPAN></SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:12PT\">MRI BRIAN DONE - REPORT ATTACH WITH FILE.</SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:16PX\">RT DONE.</SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:16PX\">NEUROPHYSICIAN DR.KAUMIL KOTHARI REFERENCE DONE.FOLLOWED ALL HIS ADVICE.</SPAN></P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:16PX\">19-11-2025,</SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:16PX\">PATIENT CONSCIOUS/ORIENTED,F/V/C</SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:16PX\">ECG DONE.</SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:16PX\">TROP-I SENT.S/O 4196.3 NG/L.TREATMENT MODIFIED.</SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:16PX\">2D ECHO DONE.REPORT ATTACHED WITH FILE.</SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:16PX\">USG ABDOMEN DONE.REPORT ATTACHED WITH FILE.</SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:16PX\">REFERENCE OF DR AKASH PATL(OPHTHALMOLOGIST) DONE AND FOLLOW HIS ALL ADVICE&nbsp;</SPAN></P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:16PX\">GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</SPAN></P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20-11-2025,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>ORALLY LIQUID DIET&nbsp;STARTED PATIENT TOLERATE WELL SO RYLES TUBE REMOVE&nbsp;</P>\r\n\r\n<P>ECG DONE.S/O BETTER.</P>\r\n\r\n<P>STOOL OB S/O 2+.PPI DRIP CONTINUOUS.</P>\r\n\r\n<P>GRADUALLY PATIENT WAS IMPROVING AND FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21-11-2025,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22-11-2025,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23-11-2025,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-18 23:09:05','mo','2025-11-23 13:01:15'),(5795,0,0,2691,172,3621,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. LEVIGRESS</P>\r\n\r\n<P>INJ. ZOSTUM</P>\r\n\r\n<P>INJ. ONDEM</P>\r\n\r\n<P>INJ. METROGYL</P>\r\n\r\n<P>INJ. NEXPRO&nbsp;</P>\r\n\r\n<P>INJ.FEBRINIL</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>TAB.ECOSPRIN</P>\r\n\r\n<P>TAB.LIPITAS</P>\r\n\r\n<P>INJ.CLEXANE</P>\r\n\r\n<P>GFLOTAS D EYE DROPS</P>\r\n\r\n<P>REFRESH EYE DROPS</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>ERVADOL GEL</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-18 23:11:06','mo','2025-11-23 13:01:15'),(5796,0,0,2651,166,3553,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-19 00:23:57','mo','2025-11-19 14:35:58'),(5797,0,0,2612,164,3474,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 00:38:35','mo','2025-11-20 22:38:32'),(5798,0,0,2612,164,3474,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX-S</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ DERIPHYLLIN</P>\r\n\r\n<P>LIQ LECTIHEP</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>NEB DUOLIN /BUDECORT</P>\r\n\r\n<P>TAB BISOWIN T</P>\r\n\r\n<P>TAB BREVIPIL</P>\r\n\r\n<P>TAB TELMIRIDE</P>\r\n\r\n<P>PC ENEMA</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>TAB TOLVAPTAN</P>\r\n\r\n<P>TAB LINOGLAZE</P>\r\n\r\n<P>TAB ECOSPRIN AV</P>\r\n\r\n<P>CLOTRIMAZOLE LOGENGES</P>\r\n\r\n<P>ZYTEE GEL</P>\r\n\r\n<P>2 UNIT RCC</P>\r\n\r\n<P>TAB.ETOLOK TH</P>\r\n\r\n<P>TAB.ARKAMIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 00:38:35','mo','2025-11-20 22:38:32'),(5799,0,0,2676,170,3595,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LOWER RESPIRATORY TRACT INFECTION</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 00:46:30','mo','2025-11-24 10:30:55'),(5800,0,0,2676,170,3595,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-19 00:46:30','mo','2025-11-24 10:30:55'),(5801,0,0,2676,170,3595,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 31 YEARS OLD&nbsp; FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:LSCS (2020)<BR />\r\nC/O:FEVER ON AND OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;COUGHING WITH YELLOWISH&nbsp;EXPECTORATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DOE +</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 7-8 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-115/MIN, BP-110/70MMHG, SPO2-97% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-RHONCHI+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>CHEST X-RAY DONE ON 18/11/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 00:46:30','mo','2025-11-24 10:30:55'),(5802,0,0,2675,169,3594,0,0,NULL,'','DISCDIAG','','','<P><STRONG>B/L COMMUNITY ACQUIRED PNEUMONITIS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>(? ATYPICAL PNEUMONIA)</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HYPOTHROIDISM</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 00:46:51','mo','2025-11-20 12:48:45'),(5803,0,0,2675,169,3594,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>PAST SURGICAL HISTORY - TLH BEFORE 20 YEARS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 00:46:51','mo','2025-11-20 12:48:45'),(5804,0,0,2675,169,3594,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 57 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HYPOTHROIDISM<BR />\r\nC/O:FEVER ON AND OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; 1 EPISODE OF VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;COUGHING WITHOUT EXPECTORATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 7-8 DAYS FOR THAT PATIENT PRIMARY CONSULTED ON OPD BASE AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>CHEST X RAY DONE ON 18/11/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-100.4&#39;F, PR-88/MIN, BP-156/90MMHG, SPO2-94% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>REQUIRED REPEAT BLOOD INVESTIGATION DONE WHICH WAS IMPROVED.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 00:46:51','mo','2025-11-20 12:48:45'),(5805,0,0,2675,169,3594,0,0,NULL,'','FOOD_DRUG_ALLERGIES','','','<P>PENICILLIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 00:53:08','mo','2025-11-20 12:48:45'),(5806,0,0,2675,169,3594,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>AVOID COLD THINGS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 00:53:08','mo','2025-11-20 12:48:45'),(5807,0,0,2675,169,3594,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n\r\n<P>CAP FLUVIR</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ DERIPHYLLIN</P>\r\n\r\n<P>TAB LANOL ER</P>\r\n\r\n<P>SYP KOLTUS-C</P>\r\n\r\n<P>TAB MPS</P>\r\n\r\n<P>NEB DUOLIN/BUDECORT</P>\r\n\r\n<P>TAB THYRONORM&nbsp;</P>\r\n\r\n<P>TAB OMNACORTIL</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 00:53:08','mo','2025-11-20 12:48:45'),(5808,0,0,2676,170,3595,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 00:58:12','mo','2025-11-24 10:30:55'),(5809,0,0,2676,170,3595,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n\r\n<P>CAP FLUVIR</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ DRIPHYLLIN</P>\r\n\r\n<P>TAB LANOL ER</P>\r\n\r\n<P>SYP KOLTUS C</P>\r\n\r\n<P>NEB DUOLIN</P>\r\n\r\n<P>NEB BUDECORT</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n\r\n<P>INJ PRIMACORT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 00:58:12','mo','2025-11-24 10:30:55'),(5810,0,0,2698,2630,3629,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----occassional giddiness&thinsp;</p>\n\n<p>occassional headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 10:42:08','','0000-00-00 00:00:00'),(5811,0,0,2701,2632,3634,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 10:49:56','','0000-00-00 00:00:00'),(5812,0,0,2696,2628,3626,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>frequent headache +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 10:54:10','darshan','2025-11-19 11:00:13'),(5813,0,0,2696,2628,3626,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----18 DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 10:57:47','','0000-00-00 00:00:00'),(5814,0,0,2696,2628,3626,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE SINCE MANY MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 10:59:37','','0000-00-00 00:00:00'),(5815,0,0,2696,2628,3626,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>stabilometry--reduced vestibualr score</p>\n\n<p>CCG---wnl</p>\n\n<p>vng--Left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:00:23','darshan','2025-11-19 12:55:38'),(5816,0,0,2696,2628,3626,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV WITH VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:00:26','','0000-00-00 00:00:00'),(5817,0,0,2694,2626,3624,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----mild sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:03:36','','0000-00-00 00:00:00'),(5818,0,0,2695,2627,3625,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----12 DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:10:52','','0000-00-00 00:00:00'),(5819,0,0,2695,2627,3625,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotry feeling any time with sense of imbalance while walking&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n\n<p>both ear deafness +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:13:31','darshan','2025-11-19 11:14:26'),(5820,0,0,2695,2627,3625,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent&thinsp;</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta----left severe sn deafness&thinsp;</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:14:04','darshan','2025-11-19 13:20:00'),(5822,0,0,19,19,3628,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:16:52','','0000-00-00 00:00:00'),(5823,0,0,2227,2172,3631,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case --partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:21:27','darshan','2025-11-19 11:24:09'),(5825,0,0,2227,2172,3631,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:25:13','','0000-00-00 00:00:00'),(5826,0,0,294,278,3646,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:27:38','','0000-00-00 00:00:00'),(5827,0,0,955,924,3633,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:31:41','','0000-00-00 00:00:00'),(5828,0,0,2360,2303,3635,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--no improvment</p>\n\n<p>BTM---i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:34:42','darshan','2025-11-19 12:19:43'),(5829,0,0,2173,2122,3647,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--partailly&thinsp; better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:36:20','darshan','2025-11-19 11:37:35'),(5831,0,0,2173,2122,3647,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:38:57','','0000-00-00 00:00:00'),(5832,0,0,2709,2639,3648,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----5-6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:46:24','','0000-00-00 00:00:00'),(5833,0,0,2709,2639,3648,0,0,NULL,'','HIST','ZZZ','Remark','<p>pt feels continuous sense of imbalance since last 5-6 months&thinsp;</p>\n\n<p>h/o--operated for left MVD for trigeminal neuralgia</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:47:09','','0000-00-00 00:00:00'),(5834,0,0,2709,2639,3648,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta--left very severe to profound deafness</p>\n\n<p>vhit--left&thinsp;all canal low&thinsp; gain</p>\n\n<p>vng--left labyrinthine pathology</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:47:42','darshan','2025-11-19 13:55:43'),(5835,0,0,2709,2639,3648,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT VESTIBULO COCHLEAR DEFICIT','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:47:56','','0000-00-00 00:00:00'),(5836,0,0,2702,2633,3636,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better&thinsp;</p>\n\n<p>occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:51:02','','0000-00-00 00:00:00'),(5837,0,0,417,395,3650,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:53:22','','0000-00-00 00:00:00'),(5838,0,0,2715,2645,3658,0,0,NULL,'','DIAG','ZZZ','Remark','BOTH OA KNEE RIGHT < LEFT','','',0,'0000-00-00 00:00:00','drsagar','2025-11-19 11:53:45','','0000-00-00 00:00:00'),(5839,0,0,2704,2635,3640,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 11:56:00','','0000-00-00 00:00:00'),(5840,0,0,2707,2637,3644,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR BLOCKAGE FEELING-----FEW DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:00:24','','0000-00-00 00:00:00'),(5841,0,0,2707,2637,3644,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR DISCHARGE WITH BLOOD||','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:00:24','','0000-00-00 00:00:00'),(5842,0,0,2707,2637,3644,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Rigth ear AOM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:00:31','','0000-00-00 00:00:00'),(5843,0,0,2723,2653,3667,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT SHOULDER PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-19 12:09:20','','0000-00-00 00:00:00'),(5844,0,0,2712,2642,3652,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:11:38','','0000-00-00 00:00:00'),(5845,0,0,2712,2642,3652,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR DEAFNESS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:11:38','','0000-00-00 00:00:00'),(5846,0,0,2712,2642,3652,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>noa ssocitaed other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:12:14','','0000-00-00 00:00:00'),(5847,0,0,2712,2642,3652,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit--nad</p>\n\n<p>Mri brain---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:12:30','darshan','2025-11-19 12:12:56'),(5849,0,0,2719,2649,3663,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---headache +</p>\n\n<p>giddienss +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:17:24','','0000-00-00 00:00:00'),(5850,0,0,2360,2303,3635,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>pta---left moderate&thinsp; sn deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:20:03','','0000-00-00 00:00:00'),(5851,0,0,2708,2638,3645,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:25:15','','0000-00-00 00:00:00'),(5852,0,0,2706,2636,3642,0,0,NULL,'','CC','ZZZ','Remark','C/O DOE  | 2 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-19 12:30:06','','0000-00-00 00:00:00'),(5853,0,0,2706,2636,3642,0,0,NULL,'','CC','ZZZ','Remark','C/O GENERALISED WEAKNESS||','','',0,'0000-00-00 00:00:00','drarchit','2025-11-19 12:30:06','','0000-00-00 00:00:00'),(5854,0,0,2721,2651,3665,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for giddiness&thinsp;</p>\n\n<p>left ear tinnitus and deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:31:47','','0000-00-00 00:00:00'),(5855,0,0,2721,2651,3665,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm--i/retracted&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:31:57','','0000-00-00 00:00:00'),(5856,0,0,2720,2650,3664,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--FEW YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:38:54','','0000-00-00 00:00:00'),(5857,0,0,2676,170,3595,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 12:40:06','mo','2025-11-24 10:30:55'),(5858,0,0,2676,170,3595,0,0,NULL,'','TREATDISC_TI','','','<P>INJ OFRAMAX (1GM/DIL)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 9AM-----9PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 4 DAYS (7 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB CLARIBID (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 4 DAYS (5 TAB)</P>\r\n\r\n<P>CAP FLUVIR (75 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 4 DAYS (5 TAB)</P>\r\n\r\n<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZOFER MD (4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB AFASMA SR (100 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB MEDROL (4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB LANOL ER (650 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR FEVER</P>\r\n\r\n<P>SYP&nbsp;KOLTUS-C (5 ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 12:40:06','mo','2025-11-24 10:30:55'),(5859,0,0,2720,2650,3664,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset rotoatyr feeling any time and remains for few mins to hrs&thinsp;</p>\n\n<p>left ear tinnitus mild&thinsp;</p>\n\n<p>frequent severe episodic headache +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:41:03','','0000-00-00 00:00:00'),(5860,0,0,2720,2650,3664,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--bilateral&thinsp;high freq mild sn deafness(o)</p>\n\n<p>Stabilometry--reduced vestibular score</p>\n\n<p>vng---central vareity of nystagmus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:41:16','darshan','2025-11-19 14:05:46'),(5864,0,0,2712,2642,3652,0,0,NULL,'','MADVICE','ZZZ','Remark','VESTIBULAR IX --PT WILL COME LATER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:44:53','','0000-00-00 00:00:00'),(5865,0,0,2724,2654,3668,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow u pcase --left side facial pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:48:20','','0000-00-00 00:00:00'),(5866,0,0,2696,2628,3626,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:55:51','','0000-00-00 00:00:00'),(5868,0,0,2726,2656,3671,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 12:59:01','','0000-00-00 00:00:00'),(5869,0,0,15,15,3655,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of headache&thinsp;</p>\n\n<p>medicine skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 13:02:04','','0000-00-00 00:00:00'),(5871,0,0,2727,2657,3672,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 13:06:58','darshan','2025-11-19 13:10:15'),(5872,0,0,1313,1274,3662,0,0,NULL,'','CC','ZZZ','Remark','C/O SEVERE GENERALSIED WEAKNESS  | 15 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-19 13:07:26','','0000-00-00 00:00:00'),(5873,0,0,1313,1274,3662,0,0,NULL,'','CC','ZZZ','Remark','C/O PALPITATION | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-19 13:07:26','','0000-00-00 00:00:00'),(5874,0,0,2727,2657,3672,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---10 YRS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 13:07:44','','0000-00-00 00:00:00'),(5875,0,0,2727,2657,3672,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>ht--nad</p>\n\n<p>stabiloemetry--reduced vestibular score</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 13:10:30','darshan','2025-11-19 14:14:44'),(5877,0,0,632,602,3682,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 13:13:24','','0000-00-00 00:00:00'),(5880,0,0,2696,2628,3626,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUR ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-19 13:23:33','','0000-00-00 00:00:00'),(5882,0,0,1229,1190,3673,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 13:28:02','darshan','2025-11-19 13:46:19'),(5883,0,0,2710,2640,3649,0,0,NULL,'','MADVICE','ZZZ','Remark','PHYSIOTHERAPY  FOR BIALTERL FROZEN SHOULDER','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-19 13:28:20','','0000-00-00 00:00:00'),(5885,0,0,2695,2627,3625,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEVUER---1 WEEK','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-19 13:41:54','','0000-00-00 00:00:00'),(5886,0,0,1229,1190,3673,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 13:46:40','','0000-00-00 00:00:00'),(5888,0,0,1229,1190,3673,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-19 13:47:23','','0000-00-00 00:00:00'),(5889,0,0,2730,2660,3679,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of positional giddiness without cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 13:52:04','darshan','2025-11-19 13:52:47'),(5890,0,0,2730,2660,3679,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3-4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 13:52:22','','0000-00-00 00:00:00'),(5891,0,0,2730,2660,3679,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnet</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 13:52:59','','0000-00-00 00:00:00'),(5893,0,0,2730,2660,3679,0,0,NULL,'','MADVICE','ZZZ','Remark','VESTIBULAR IX--SOS LATER ON','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-19 13:53:53','','0000-00-00 00:00:00'),(5894,0,0,2727,2657,3672,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 14:14:47','','0000-00-00 00:00:00'),(5895,0,0,2727,2657,3672,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 14:14:56','','0000-00-00 00:00:00'),(5898,0,0,2727,2657,3672,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-19 14:15:22','','0000-00-00 00:00:00'),(5899,0,0,2651,166,3553,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 14:35:56','mo','2025-11-19 14:35:58'),(5900,0,0,2651,166,3553,0,0,NULL,'','TREATDISC_TI','','','<P>INJ AUGMENTIN&nbsp; (1.2GM/DILUTED)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8AM--8PM&nbsp; &nbsp; &nbsp; &nbsp; FOR 2 DAYS(5 INJ)&nbsp;</P>\r\n\r\n<P>TAB NEXPROFAST(40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......(5)</P>\r\n\r\n<P>TAB ZOFER MD(4MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; ........(15)</P>\r\n\r\n<P>TAB AKILOS-SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......(10)</P>\r\n\r\n<P>TAB BIFOLATE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(5)</P>\r\n\r\n<P>BETADIN GARGLE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;FOR GARGLE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(1)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 14:35:56','mo','2025-11-19 14:35:58'),(5901,0,0,1366,1326,3686,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 17:06:03','','0000-00-00 00:00:00'),(5902,0,0,2732,2663,3688,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 17:07:50','','0000-00-00 00:00:00'),(5903,0,0,2733,2664,3689,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 17:08:06','','0000-00-00 00:00:00'),(5904,0,0,2734,2665,3690,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 17:08:41','','0000-00-00 00:00:00'),(5905,0,0,94,83,3691,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 17:09:31','','0000-00-00 00:00:00'),(5906,0,0,2735,2666,3692,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 17:10:50','','0000-00-00 00:00:00'),(5907,0,0,2736,2667,3693,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--medicine skipped</p>\n\n<p>recurence of headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 17:14:01','','0000-00-00 00:00:00'),(5908,0,0,1598,1555,3694,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 17:18:37','','0000-00-00 00:00:00'),(5909,0,0,2737,2668,3697,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 17:30:01','','0000-00-00 00:00:00'),(5910,0,0,2737,2668,3697,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 17:30:38','','0000-00-00 00:00:00'),(5912,0,0,2737,2668,3697,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-19 17:30:56','','0000-00-00 00:00:00'),(5913,0,0,2738,2669,3699,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN WITH BLOCKAGE FEELING 1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 17:33:11','','0000-00-00 00:00:00'),(5914,0,0,2738,2669,3699,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left otitis externa</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 17:33:19','','0000-00-00 00:00:00'),(5915,0,0,1697,1652,3700,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---vertigo persist&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 17:41:40','','0000-00-00 00:00:00'),(5917,0,0,1697,1652,3700,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-19 17:44:16','','0000-00-00 00:00:00'),(5918,0,0,2739,2670,3701,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----self medication done since last 7-8 months&thinsp;</p>\n\n<p>heaviness of head&thinsp; with headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 17:52:43','','0000-00-00 00:00:00'),(5919,0,0,1778,1734,3695,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---</p>\n\n<p>follow up PTA--better than previous</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 17:55:25','','0000-00-00 00:00:00'),(5922,0,0,1778,1734,3695,0,0,NULL,'','MADVICE','ZZZ','Remark','PTA NEXT TIME \nSOS ITDM ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-19 17:58:20','','0000-00-00 00:00:00'),(5923,0,0,2747,2678,3713,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 18:01:10','darshan','2025-11-19 18:02:40'),(5924,0,0,2747,2678,3713,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 18:02:43','','0000-00-00 00:00:00'),(5925,0,0,2068,2015,3709,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 18:05:45','','0000-00-00 00:00:00'),(5926,0,0,2068,2015,3709,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 18:06:31','','0000-00-00 00:00:00'),(5929,0,0,2068,2015,3709,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-19 18:07:49','','0000-00-00 00:00:00'),(5930,0,0,378,362,3715,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 18:09:59','','0000-00-00 00:00:00'),(5931,0,0,2740,2671,3702,0,0,NULL,'','CC','ZZZ','Remark','C/O VOMITTING  | 3 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-19 18:20:10','','0000-00-00 00:00:00'),(5932,0,0,2740,2671,3702,0,0,NULL,'','CC','ZZZ','Remark','C/O GENERALSIED WEAKNESS  | 2 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-19 18:20:10','','0000-00-00 00:00:00'),(5933,0,0,2742,2673,3706,0,0,NULL,'','CC','ZZZ','Remark','C/O HEADACHE  | 10 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-19 18:36:14','','0000-00-00 00:00:00'),(5934,0,0,2747,2678,3713,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 18:42:14','','0000-00-00 00:00:00'),(5937,0,0,2747,2678,3713,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-19 18:51:05','','0000-00-00 00:00:00'),(5938,0,0,1015,982,3739,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 18:54:31','','0000-00-00 00:00:00'),(5939,0,0,2755,2686,3726,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--</p>\n\n<p>follow up pta---modearte&thinsp; to severe sn deafness</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 18:59:18','','0000-00-00 00:00:00'),(5940,0,0,2253,2196,3733,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better partailly&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 19:11:27','','0000-00-00 00:00:00'),(5942,0,0,2253,2196,3733,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-19 19:13:29','','0000-00-00 00:00:00'),(5943,0,0,2762,2693,3740,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR PAIN----2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 19:16:24','','0000-00-00 00:00:00'),(5944,0,0,2762,2693,3740,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>right otitis externa</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-19 19:16:29','','0000-00-00 00:00:00'),(5945,0,0,2705,175,3641,0,0,NULL,'','DISCDIAG','','','<P><STRONG>POSTERIOR ANAL FISSURE</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 21:51:10','mo','2025-11-20 10:45:04'),(5946,0,0,2705,175,3641,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>NAD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 21:51:10','mo','2025-11-20 10:45:04'),(5947,0,0,2705,175,3641,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 48 YEARS OLD MALE&nbsp; PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NO ANY COMORBIDITY<BR />\r\nC/O: PAIN IN ANUS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BLEEDING P/R</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER ON AND OFF</P>\r\n\r\n<P>ALL ABOVE MENTIOBED COMPLAINTS PRESENTED SINCE 2-3 DAYS FOR THAT PATIENT PRIMARILY CONSULTED ON OPD BASED NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>-SEVERE ANAL SPASM<BR />\r\nTEMP-AFEBRILE, PR-87/MIN, BP-138/90MMHG, SPO2-97% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nFISSURECTOMY + LORD&#39;S DILATATION DONE BY DR PRATAPSINH DODIYA ON 19/11/2025 UNDER&nbsp; SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\nSO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 21:51:10','mo','2025-11-20 10:45:04'),(5948,0,0,2705,175,3641,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX;</P>\r\n\r\n<P>FISSURECTOMY + LORD&#39;S DILATATION DONE BY DR PRATAPSINH DODIYA ON 19/11/2025 UNDER&nbsp; SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 21:51:10','mo','2025-11-20 10:45:04'),(5949,0,0,2705,175,3641,0,0,NULL,'','OTNOTE','','','<p>per-op findings:</p>\r\n\r\n<p>-post anal fissure +</p>\r\n\r\n<p>-tight internal sphincter +</p>\r\n\r\n<p>-fissurectomy done</p>\r\n\r\n<p>-lord&#39;s dilatation done</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-dressing kept.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 21:51:10','mo','2025-11-20 10:45:04'),(5950,0,0,2705,175,3641,0,0,NULL,'','ADVICE','','','<P>AVOID SPICY FOOD</P>\r\n\r\n<P>HOT SIT BATH</P>\r\n\r\n<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 21:51:10','mo','2025-11-20 10:45:04'),(5951,0,0,2705,175,3641,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACTAGARD</P>\r\n\r\n<P>INJ.METROGYL</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>BUPREGESIC PATCH</P>\r\n\r\n<P>SYP.CREMAFFIN PLUS</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 21:51:10','mo','2025-11-20 10:45:04'),(5952,0,0,2705,175,3641,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.ZENFLOX OZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS...............(10)</P>\r\n\r\n<P>TAB.AKILOS P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS...............(10)</P>\r\n\r\n<P>TAB.ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS...............(10)</P>\r\n\r\n<P>SYP.CREMAFFIN PLUS&nbsp; (10 ML)&nbsp; &nbsp; 0-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AT BED TIME...................(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>LOX JELLY 2 %&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp;ON ANAL REGION&nbsp; &nbsp; &nbsp; &nbsp;BEFORE&nbsp;DEFECATION.............(1)</P>\r\n\r\n<P>ANO METRO CREAM&nbsp; &nbsp;&nbsp;FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp;ON ANAL REGION&nbsp; &nbsp; &nbsp; &nbsp;AFTER&nbsp;DEFECATION.............(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 21:51:10','mo','2025-11-20 10:45:04'),(5953,0,0,2693,173,3623,0,0,NULL,'','DISCDIAG','','','<P><STRONG>FISTULA IN ANO</STRONG></P>\r\n\r\n<P><STRONG>2ND DEGREE INTERNAL HEMORRHOIDS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 23:47:07','mo','2025-11-20 12:15:35'),(5954,0,0,2693,173,3623,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O: APPENDICECTOMY BEFORE 15 YEARS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; HEMORRHOIDECTOMY BEFORE 15 YEARS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 23:47:07','mo','2025-11-20 12:15:35'),(5955,0,0,2693,173,3623,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 32 YEARS MALE OLD &nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O: PAIN AT ANAL REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;PUS DISCHARGE FROM ANUS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO BLEEDING</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 2-3 MONTHS FOR THAT PATIENT PRIMARILY CONSULTED DATUR HOSPITAL&nbsp; AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>MR FISTOGRAM (7/11/2025), REPORT ATTACHED WITH FILE.&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-87/MIN, BP-122/80MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nFISTULECTOMY + LASER ABLATION OF 2ND DEGREE INTERNAL HEMORRHOIDECTOMY (6 O&#39;CLOCK)&nbsp;DONE BY DR PRATAPSINH DODIYA ON 19/11/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\nSO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 23:47:07','mo','2025-11-20 12:15:35'),(5956,0,0,2693,173,3623,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX;</P>\r\n\r\n<P>FISTULECTOMY + LASER ABLATION OF 2ND DEGREE INTERNAL HEMORRHOIDECTOMY (6 O&#39;CLOCK)&nbsp;DONE BY DR PRATAPSINH DODIYA ON 19/11/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 23:47:07','mo','2025-11-20 12:15:35'),(5957,0,0,2693,173,3623,0,0,NULL,'','OTNOTE','','','<p>per-op findings:</p>\r\n\r\n<p>-fistula in ano</p>\r\n\r\n<p>-2nd degree internal hemorrhoids at 6 o&#39;clock position</p>\r\n\r\n<p>-internal and external opening at 12 o&#39;clock position</p>\r\n\r\n<p>-fistulectomy done</p>\r\n\r\n<p>-2nd degree internal hemorrhoids, laser ablation done with lasotronix&nbsp;</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-dressing kept</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 23:47:07','mo','2025-11-20 12:15:35'),(5958,0,0,2693,173,3623,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACTAGARD</P>\r\n\r\n<P>INJ.METROGYL</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>INJ.INFUPAR</P>\r\n\r\n<P>SYP.CREMAFFIN PLUS</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 23:47:07','mo','2025-11-20 12:15:35'),(5959,0,0,2693,173,3623,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.ZENFLOX OZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB.ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB.AKILOS SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP.CREMAFFIN PLUS (10ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AT BED TIME...........(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>LOX JELLY 2%&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp;&nbsp;AT ANAL REGION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE DEFECATION ..................(1)</P>\r\n\r\n<P>ANO METRO CREAM&nbsp; &nbsp; &nbsp;FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp;&nbsp;AT ANAL REGION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER&nbsp;DEFECATION .....................(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-19 23:47:07','mo','2025-11-20 12:15:35'),(5960,0,0,2611,163,3473,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>LAPAROTOMY FOLLOWED BY HYSTERECTOMY WITH ADHESINOLYSIS DONE BY DR SHILPAN GONDALIYA AND DR PRATAPSINH DODIYA&nbsp;ON 19/11/2025 UNDER&nbsp; GENERAL&nbsp; ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 00:03:31','mo','2025-11-23 13:12:36'),(5961,0,0,2611,163,3473,0,0,NULL,'','OTNOTE','','','<p>per-op findings:</p>\r\n\r\n<p>-primary trochar insertion through palmer&#39;s point</p>\r\n\r\n<p>-there was dense bowel adhesions, so decided to do laparotomy</p>\r\n\r\n<p>-abdomen opened by right para median incision&nbsp;</p>\r\n\r\n<p>-there was pus in paritoneal cavity</p>\r\n\r\n<p>-bowel adhesions present-adhesinolysis done</p>\r\n\r\n<p>-previous scar site over uterus was opened</p>\r\n\r\n<p>-bladder was adherent, adhesinolysis done</p>\r\n\r\n<p>-total hysterectomy done</p>\r\n\r\n<p>-hemostasis secured</p>\r\n\r\n<p>-bowel and bladder integrity checked, dr pratapsinh dodiya was called per-op for bowel pthology</p>\r\n\r\n<p>-pus + uterus sent for hpe</p>\r\n\r\n<p>-abdomen closed in layers after mop and instrument count</p>\r\n\r\n<p>-interperitoneal drain kept</p>\r\n\r\n<p>-rectus sheath closed with pds loop</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 00:03:31','mo','2025-11-23 13:12:36'),(5962,0,0,2660,167,3566,0,0,NULL,'','DISCDIAG','','','<P><STRONG>INCISIONAL&nbsp;HERNIA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 00:43:01','mo','2025-11-20 15:06:56'),(5963,0,0,2660,167,3566,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>H/O: HYSTERECTOMY IN 2020</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 00:43:01','mo','2025-11-20 15:06:56'),(5964,0,0,2660,167,3566,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 43 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DYSLIPIDEMIA, HYPOTHYROIDISM-RECENTLY DETECTED<BR />\r\nC/O: ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA AND VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO FEVER</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; OCCASIONALLY CONSTIPATION</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 3-4 YEARS AND INCRESED SINCE LAST 6 MONTHS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN DONE ON 15/11/25, REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-92/MIN, BP-108/62MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\nLAPAROSCOPIC INCISIONAL HERNIOPLASTY (E-TEP) DONE BY&nbsp;DR PRATAPSINH DODIYA ON 18/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 00:43:01','mo','2025-11-20 15:06:56'),(5965,0,0,2660,167,3566,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACTAGARD</P>\r\n\r\n<P>INJ.METROGYL</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>INJ.INFUPAR</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 00:43:01','mo','2025-11-20 15:06:56'),(5966,0,0,2660,167,3566,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.CEFTUM (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS.................(10)</P>\r\n\r\n<P>TAB.DALACIN C (300MG)&nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS.................(10)</P>\r\n\r\n<P>TAB.ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS.................(10)</P>\r\n\r\n<P>TAB.AKILOS-SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS.................(10)</P>\r\n\r\n<P>SYP.CREMAFFIN PLUS (10ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AT BED TIME.................(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>FOR FOLEY&#39;S CARE:</STRONG></P>\r\n\r\n<P>LIQ BETADINE (100 ML)....................(1)</P>\r\n\r\n<P>GAUZE OIECE PACKET.....................(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>CONTINUE OWN MEDICINE:</STRONG></P>\r\n\r\n<P>TAB TORVASON (20)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 00:43:01','mo','2025-11-20 15:06:56'),(5967,0,0,2705,175,3641,0,0,NULL,'','DISCCOND','','','<P>AFBERILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 10:42:11','mo','2025-11-20 10:45:04'),(5968,0,0,2778,2709,3762,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 10:55:05','','0000-00-00 00:00:00'),(5969,0,0,2778,2709,3762,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo--sudden sense of imbalance heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 10:55:24','darshan','2025-11-20 10:56:17'),(5970,0,0,2778,2709,3762,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bialteral modearte sn deafness</p>\n\n<p>vng--right psot canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 10:56:31','darshan','2025-11-20 12:33:16'),(5974,0,0,2784,2713,3768,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----3 DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:07:31','','0000-00-00 00:00:00'),(5975,0,0,2784,2713,3768,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:08:02','','0000-00-00 00:00:00'),(5976,0,0,2784,2713,3768,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--ad</p>\n\n<p>hit-nad</p>\n\n<p>pta--wnl</p>\n\n<p>stabilomtry---reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:08:12','darshan','2025-11-20 12:41:00'),(5977,0,0,2784,2713,3768,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:08:14','','0000-00-00 00:00:00'),(5978,0,0,2201,143,2811,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>LAPAROSCOPIC SPLEENECTOMY + PERITONEAL LAVAGE DONE BY DR PRATAPSINH DODIYA &AMP; DR AMIT ACHARYA UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 11:22:30','mo','2025-11-20 14:18:33'),(5979,0,0,2201,143,2811,0,0,NULL,'','CONDONADDMISSION','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-20 11:22:30','mo','2025-11-20 14:18:33'),(5980,0,0,2201,143,2811,0,0,NULL,'','TREATDISC_TI','','','<P>INJ.TIGECYCLIN (50GM/100 ML NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 9AM-9PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS.................(11)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB.ZIFI CV (200)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS...............(10)</P>\r\n\r\n<P>TAB.FOLISPORE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0-1-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 10&nbsp;DAYS...............(10)</P>\r\n\r\n<P>TAB.ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;FOR 5 DAYS...............(5)</P>\r\n\r\n<P>TAB.LANOL ER (650MG)&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;SOS FOR FEVER...............(5)&nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>TAB.CLONOTRIL (0.5MG)&nbsp; &nbsp; &nbsp;&nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; SOS FOR SLEEPLEESNESS............(5)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>BUPREGESIC PATCH IN SITU...............KEEP FOR 4 DAYS THEN REMOVE.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 11:22:30','mo','2025-11-20 14:18:33'),(5981,0,0,2783,2712,3767,0,0,NULL,'','CC','ZZZ','Remark','VRETIGO-----2.5 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:27:03','','0000-00-00 00:00:00'),(5982,0,0,2783,2712,3767,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotatory feeling when pt is getting out fo bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:27:46','','0000-00-00 00:00:00'),(5983,0,0,2783,2712,3767,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain---nad</p>\n\n<p>pta--bialtel mild sn deafness</p>\n\n<p>stabilomtry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:27:57','darshan','2025-11-20 12:51:34'),(5985,0,0,2781,2710,3765,0,0,NULL,'','DIAG','ZZZ','Remark','COOCCYX PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-20 11:32:00','','0000-00-00 00:00:00'),(5986,0,0,2785,2714,3769,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:35:39','','0000-00-00 00:00:00'),(5987,0,0,2785,2714,3769,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:36:34','','0000-00-00 00:00:00'),(5988,0,0,2785,2714,3769,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus--absent</p>\n\n<p>dix hallpke--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:36:43','darshan','2025-11-20 13:36:22'),(5989,0,0,2785,2714,3769,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:36:48','','0000-00-00 00:00:00'),(5990,0,0,1591,1548,3770,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better partially&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:39:44','','0000-00-00 00:00:00'),(5992,0,0,1591,1548,3770,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:42:26','','0000-00-00 00:00:00'),(5993,0,0,1947,1899,3772,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:45:54','','0000-00-00 00:00:00'),(5994,0,0,1947,1899,3772,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:46:19','','0000-00-00 00:00:00'),(5996,0,0,1947,1899,3772,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:47:11','','0000-00-00 00:00:00'),(5998,0,0,2798,2727,3789,0,0,NULL,'','MADVICE','ZZZ','Remark','TO START INSUKIN (S0S)','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-20 11:49:50','','0000-00-00 00:00:00'),(5999,0,0,1961,1913,3782,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:50:11','','0000-00-00 00:00:00'),(6000,0,0,1961,1913,3782,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:51:46','','0000-00-00 00:00:00'),(6002,0,0,1961,1913,3782,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:53:32','','0000-00-00 00:00:00'),(6003,0,0,2231,2176,3775,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:54:40','darshan','2025-11-20 11:56:40'),(6004,0,0,2231,2176,3775,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 11:56:57','','0000-00-00 00:00:00'),(6005,0,0,2789,2718,3776,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---6-7 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:05:52','','0000-00-00 00:00:00'),(6006,0,0,2789,2718,3776,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo-sudden onset of rotaotyr feeling with sense of imbalance--remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:06:06','darshan','2025-11-20 12:06:51'),(6007,0,0,2789,2718,3776,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR DEAFNESS AND TINNITUS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:06:12','','0000-00-00 00:00:00'),(6008,0,0,2789,2718,3776,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n\n<p>CCG--wnl</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:07:04','darshan','2025-11-20 13:50:56'),(6010,0,0,2693,173,3623,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLETRATING&nbsp;</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTA</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 12:11:55','mo','2025-11-20 12:15:35'),(6011,0,0,2693,173,3623,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>AVOID SPICY FOOD</P>\r\n\r\n<P>TAKE PLENTY OF LIQUIDS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>HOT SIT BATH</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 12:11:55','mo','2025-11-20 12:15:35'),(6012,0,0,2801,2731,3795,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:13:46','','0000-00-00 00:00:00'),(6013,0,0,2799,2729,3793,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----6 MONTHS 3-4 EPISODES ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:24:07','','0000-00-00 00:00:00'),(6014,0,0,2799,2729,3793,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotatory feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no asssociated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:24:49','','0000-00-00 00:00:00'),(6015,0,0,2799,2729,3793,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit-nad<br />\nmri brain--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:24:59','darshan','2025-11-20 13:53:55'),(6017,0,0,2786,2715,3771,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:29:47','','0000-00-00 00:00:00'),(6018,0,0,2675,169,3594,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 12:29:50','mo','2025-11-20 12:48:45'),(6019,0,0,2675,169,3594,0,0,NULL,'','TREATDISC_TI','','','<P>INJ.OFRAMAX (1GM DIL WITH 10 CC DW)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 8AM-8PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 2 DAYS ................(5 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB.CLARIBID (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 2 DAYS...............(5)</P>\r\n\r\n<P>TAB.NEXPROFAST&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5&nbsp;DAYS...............(5)</P>\r\n\r\n<P>TAB.DERIPHYLLIN R (300)&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS...............(5)</P>\r\n\r\n<P>TAB.OMNACORTIL(10MG)&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5&nbsp;DAYS...............(10)</P>\r\n\r\n<P>TAB.LANOL ER (650MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS FOR FEVER..............(5)</P>\r\n\r\n<P>SYP.KOLTUS C&nbsp; &nbsp; &nbsp; &nbsp;5 ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-1-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS............(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:</P>\r\n\r\n<P>TAB.THRONORM (25)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 12:29:50','mo','2025-11-20 12:48:45'),(6020,0,0,2786,2715,3771,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:30:01','darshan','2025-11-20 14:11:32'),(6021,0,0,2786,2715,3771,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:30:15','darshan','2025-11-20 14:01:23'),(6022,0,0,2786,2715,3771,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:30:16','','0000-00-00 00:00:00'),(6023,0,0,2778,2709,3762,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:33:51','','0000-00-00 00:00:00'),(6025,0,0,2805,2735,3802,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR DISCHARGE ----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:36:55','','0000-00-00 00:00:00'),(6026,0,0,2805,2735,3802,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right ear full of discharge&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:37:07','','0000-00-00 00:00:00'),(6027,0,0,2784,2713,3768,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:41:25','','0000-00-00 00:00:00'),(6029,0,0,2673,168,3591,0,0,NULL,'','DISCDIAG','','','<P>UROSEPSIS WITH SEVERE ANEMIA</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 12:45:37','mo','2025-11-20 13:06:53'),(6030,0,0,2673,168,3591,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 12:45:37','mo','2025-11-20 13:06:53'),(6031,0,0,2673,168,3591,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 70 YEARS OLD FEMALE PATIENT P/W C/O GENERALISED WEAKNESS;ANOREXIA;B/L LOWER LIMB PAIN;BACK PAIN SINCE LAST 4-5 DAYS.</P>\r\n\r\n<P>SO,PRIMARY TREATMENT TAKEN AT GENERAL PHYSICIAN THEN CAME HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-98.2 PR-102/MIN</P>\r\n\r\n<P>BP-110/70MMHG</P>\r\n\r\n<P>SPO2-86% ON RA</P>\r\n\r\n<P>RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-128MG/DL</P>\r\n\r\n<P>FOLEY&#39;S CATHETER IN SITU(NO 16)</P>\r\n\r\n<P>-WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED ACCORDINGLY.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18/11/25,</P>\r\n\r\n<P>ALL REQUIRED BLOOD INVESTIGATION SENT.TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF LOW HB 6.6 GM/DL 2UNITS LR-RCC GIVEN.</P>\r\n\r\n<P>URINE ROUTINE MICRO SENT.S/O PUS -50-60CELL/HPF,BACTERIA FEW DETECTED,PROTEIN +,RBC 5-8 CELL/HPF.</P>\r\n\r\n<P>URINE CULTURE SENT.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19/11/25,</P>\r\n\r\n<P>STOOL ROUTINE MICRO SENT.S/O OB +,RBC-1-2.</P>\r\n\r\n<P>SERUM FERRITIN AND VIT B12 DONE.</P>\r\n\r\n<P>USG ABDOMEN DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>REST CT SAME TREATMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20/11/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>U/O ADEQUATE.</P>\r\n\r\n<P>GRADUALLY PATIENT WAS IMPROVING SO,PATIENT DISCHARGED ON RELATIVE&#39;S REQUEST.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 12:45:37','mo','2025-11-20 13:06:53'),(6032,0,0,2787,2716,3773,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:47:19','','0000-00-00 00:00:00'),(6033,0,0,2787,2716,3773,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling remain for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns sytmpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:47:48','','0000-00-00 00:00:00'),(6034,0,0,2787,2716,3773,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus--absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilatelr high frqe severe sn deafness</p>\n\n<p>stabilomtry---wnl</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:47:59','darshan','2025-11-20 18:06:44'),(6038,0,0,2783,2712,3767,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:51:39','','0000-00-00 00:00:00'),(6039,0,0,2783,2712,3767,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:52:16','','0000-00-00 00:00:00'),(6042,0,0,2784,2713,3768,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 12:55:09','','0000-00-00 00:00:00'),(6043,0,0,2810,2740,3807,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 YR||','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 13:00:37','','0000-00-00 00:00:00'),(6044,0,0,2673,168,3591,0,0,NULL,'','DISCCOND','','','<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>U/O ADEQUATE</P>\r\n\r\n<P>FOLEY&#39;S CATHETER IN SITU(NO-16)</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 13:01:47','mo','2025-11-20 13:06:53'),(6045,0,0,2673,168,3591,0,0,NULL,'','ADVICE','','','<P>LIGHT DIET</P>\r\n\r\n<P>DAILY FOLEY&#39;S CARE&nbsp;</P>\r\n\r\n<P>FOLLOW UP AFTER 7 DAYS.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 13:02:19','mo','2025-11-20 13:06:53'),(6046,0,0,2810,2740,3807,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo---sudden onset of rotatory feeling for&thinsp; few mins and repeated many time</p>\n\n<p>frequent headache +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 13:02:29','','0000-00-00 00:00:00'),(6047,0,0,2810,2740,3807,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--central variety of nystagmus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 13:02:42','darshan','2025-11-20 14:09:35'),(6049,0,0,2673,168,3591,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ CEFCON</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>2 UNITS LR-RCC</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ VITNEURIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 13:03:24','mo','2025-11-20 13:06:53'),(6050,0,0,2673,168,3591,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE CV 250 ----- 14</P>\r\n\r\n<P>1-0-1</P>\r\n\r\n<P>TAB NEXPRO 40MG ----- 7</P>\r\n\r\n<P>1-0-0</P>\r\n\r\n<P>CAP UPRISE D3 ----- 8</P>\r\n\r\n<P>1/WEEK ONFRIDAY</P>\r\n\r\n<P>TAB LUPIHEME ----- 30</P>\r\n\r\n<P>0-1-0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 13:06:13','mo','2025-11-20 13:06:53'),(6051,0,0,2804,2734,3801,0,0,NULL,'','CC','ZZZ','Remark','C/O LT LATERAL CHEST PAIN  | 1 DAYS | INCRESE WHILE ROTATIONAL MOVEMENT','','',0,'0000-00-00 00:00:00','drarchit','2025-11-20 13:06:52','','0000-00-00 00:00:00'),(6053,0,0,2778,2709,3762,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 13:09:42','','0000-00-00 00:00:00'),(6054,0,0,2607,161,3468,0,0,NULL,'','DISCCOND','','','<P>AFBERILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 13:09:54','mo','2025-11-20 13:21:01'),(6055,0,0,1326,1287,3812,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 13:13:33','','0000-00-00 00:00:00'),(6056,0,0,2237,2182,3816,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---vertigo persist</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 13:18:58','','0000-00-00 00:00:00'),(6057,0,0,2237,2182,3816,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 13:19:32','','0000-00-00 00:00:00'),(6059,0,0,2237,2182,3816,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 13:20:25','','0000-00-00 00:00:00'),(6060,0,0,2201,143,2811,0,0,NULL,'','OTNOTE','','','<p>per-op findings:</p>\r\n\r\n<p>-ruptured upper pole splenic abscess</p>\r\n\r\n<p>-generalised peritonitins with large collection in pelvic and parahepatic space</p>\r\n\r\n<p>-pus flacks all over bowel&#39;s surface</p>\r\n\r\n<p>-spleen densly adherent with stomach and left lobe of liver</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>opertive steps:</p>\r\n\r\n<p>-supra umbilical port insertion done</p>\r\n\r\n<p>-rest of port insertion done under vision</p>\r\n\r\n<p>-abscess cavity separated from left lobe of liver and stomack and left dome of diaphragm</p>\r\n\r\n<p>-pigtail catheter insrtion in abscess cavity seen</p>\r\n\r\n<p>-omentum densly adherent with spleen</p>\r\n\r\n<p>-lesser sac opened, splenic hilum dissection done</p>\r\n\r\n<p>-splenic artery double clipped and cut</p>\r\n\r\n<p>-splenic vein branches double clipped and cut</p>\r\n\r\n<p>-short gastric vesseles coagulated with harmonic scalpel</p>\r\n\r\n<p>-spleeno colic ligament coagulated and cut</p>\r\n\r\n<p>-speno renal&nbsp;and speeno phrenic&nbsp;ligament coagulated and cut, spleen separated all around</p>\r\n\r\n<p>-spleen kept in endoobag, spleen removal done through 10 mm port in piece meal</p>\r\n\r\n<p>-hemostasis checked, thorough peritoneal lavage given with ns</p>\r\n\r\n<p>-drain kept in splenic fossa and pelvic</p>\r\n\r\n<p>-10 mm port sheath closed with vicryl 3-0</p>\r\n\r\n<p>-skin closed with skin steppler</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 13:23:19','mo','2025-11-20 14:18:33'),(6061,0,0,2807,2737,3804,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 13:32:20','','0000-00-00 00:00:00'),(6062,0,0,2807,2737,3804,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling any time with fall down and ? LOC</p>\n\n<p>frequent headache +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 13:33:05','','0000-00-00 00:00:00'),(6063,0,0,2807,2737,3804,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>MRI brain--nad</p>\n\n<p>Ped neurologist opinion taken</p>\n\n<p>EEG--nad</p>\n\n<p>&thinsp;vemp---reduced vemp</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 13:33:16','darshan','2025-11-20 14:28:13'),(6064,0,0,2807,2737,3804,0,0,NULL,'','DIAG','ZZZ','Remark','VM VS OTHER','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 13:33:20','','0000-00-00 00:00:00'),(6065,0,0,645,615,3800,0,0,NULL,'','CC','ZZZ','Remark','C/O CHST PAIN  | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-20 13:35:58','','0000-00-00 00:00:00'),(6066,0,0,645,615,3800,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-11-20 13:35:59','','0000-00-00 00:00:00'),(6067,0,0,2785,2714,3769,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 13:36:51','','0000-00-00 00:00:00'),(6070,0,0,2783,2712,3767,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 13:40:37','','0000-00-00 00:00:00'),(6072,0,0,2660,167,3566,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:</P>\r\n\r\n<P>LAPAROSCOPIC INCISIONAL HERNIOPLASTY (E-TEP) DONE BY&nbsp;DR PRATAPSINH DODIYA ON 18/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 13:44:49','mo','2025-11-20 15:06:56'),(6073,0,0,2660,167,3566,0,0,NULL,'','OTNOTE','','','<p>per-op findings;</p>\r\n\r\n<p>-left tlh port insertion done by open method in retro muscular area</p>\r\n\r\n<p>-left retro rectus space dissection done with 10 mm telescope</p>\r\n\r\n<p>-rest of port insertion done under vision</p>\r\n\r\n<p>-left retro rectus space dissecion done carefully preserving neurovascular bundle</p>\r\n\r\n<p>-midline crossover done by cutting b/l prs in epigastric region</p>\r\n\r\n<p>-right retro rectus dissection done till hernia sac</p>\r\n\r\n<p>-hernia sac opened and content (omentum) reduced</p>\r\n\r\n<p>-hernia sac separated from cubcutaneous tissue</p>\r\n\r\n<p>-dissection done till retropubic space&nbsp;</p>\r\n\r\n<p>-urinary bladder carefully separated from previous scar tissue</p>\r\n\r\n<p>-multiple defect in linea&nbsp; abla in infraumblical region</p>\r\n\r\n<p>-defect closure and plication at linea alba done with v&#39;lock no-1 (non absorbable)</p>\r\n\r\n<p>-peritoneaum closed with vicryl 3-0</p>\r\n\r\n<p>-hemostasis checked</p>\r\n\r\n<p>-prolene mesh 20 x 14 cm kept over prs</p>\r\n\r\n<p>-mesh fixed with prs with vicyl 3-0</p>\r\n\r\n<p>-romo vac no-16 kept</p>\r\n\r\n<p>-left hc anterior rectus sheath closed with vicryl 3-0</p>\r\n\r\n<p>-skin closed with skin steppler</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 13:44:49','mo','2025-11-20 15:06:56'),(6074,0,0,2691,172,3621,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE CORONARY SYNDROME (NSTEMI)</STRONG></P>\r\n\r\n<P><STRONG>WITH SEVERE ANEMIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>(?) UPPER GI BLEED</STRONG></P>\r\n\r\n<P><STRONG>WITH B/L SCLERA HAEMORRHAGE&nbsp; (? HTN)&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 13:52:28','mo','2025-11-23 13:01:15'),(6075,0,0,2799,2729,3793,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 13:54:39','','0000-00-00 00:00:00'),(6078,0,0,2785,2714,3769,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 13:55:34','','0000-00-00 00:00:00'),(6079,0,0,2786,2715,3771,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 14:01:46','','0000-00-00 00:00:00'),(6082,0,0,2799,2729,3793,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 14:04:46','','0000-00-00 00:00:00'),(6084,0,0,2786,2715,3771,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 14:11:32','','0000-00-00 00:00:00'),(6085,0,0,2660,167,3566,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>FOLEY&#39;S CATHETER NO:14 D:3 IN SITU</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 14:11:47','mo','2025-11-20 15:06:56'),(6086,0,0,2660,167,3566,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>FOLEY&#39;S CATHETER CARE AS EXPLAINED</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 14:11:47','mo','2025-11-20 15:06:56'),(6087,0,0,1633,1589,3819,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 14:15:50','','0000-00-00 00:00:00'),(6088,0,0,2813,2743,3811,0,0,NULL,'','CC','ZZZ','Remark','C/O BACKPAIN  | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-20 14:15:56','','0000-00-00 00:00:00'),(6089,0,0,2813,2743,3811,0,0,NULL,'','CC','ZZZ','Remark','C/O T/N BOTH LOWER LIMG | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-20 14:15:56','','0000-00-00 00:00:00'),(6094,0,0,2813,2743,3811,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI L-S SPINE WITH WHOLE SPINE SCREENING','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-20 14:19:33','','0000-00-00 00:00:00'),(6095,0,0,2133,2079,2697,0,0,NULL,'','MADVICE','ZZZ','Remark','VESTIBULAR IX--PT WILL COME LATER ON','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 14:23:18','','0000-00-00 00:00:00'),(6098,0,0,2807,2737,3804,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS PSYCHIATRIST OPINION ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 14:33:11','','0000-00-00 00:00:00'),(6099,0,0,2776,176,3759,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-LEFT BREAST PHYLLOID TUMOR</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 16:47:53','mo','2025-11-20 20:26:45'),(6100,0,0,2776,176,3759,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-20 16:47:53','mo','2025-11-20 20:26:45'),(6101,0,0,2776,176,3759,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 50 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nC/O: LEFT BREAST PAIN, SWELLING AND REDNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER WITH CHILL ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO ANY DISCHARGE FROM NIPPLE</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 4-5 MONTHS BUT INCREASED SINCE FEW DAYS FOR THAT PT PRIMARY CONSULTED TO BARAD HOSPITAL VERAVAL AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>SOFT TISSUE UDG FOR LT BREAST (8/11/2025)</P>\r\n\r\n<P>USG ABDOMEN, X-RAY CHEST (19/11/2025)</P>\r\n\r\n<P>MAMMIOGRAPHY OF BOTH BREAST, FNAC (19/11/2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-76/MIN, BP-180/100MMHG, SPO2-98% ON RA, RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nIN VIEW OF ACCELERATED HYPERTENSION PHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nPHYLLOID TUMOR EXCISION DONE BY DR PRATAPSINH DODIYA ON 20/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 16:47:53','mo','2025-11-20 20:26:45'),(6102,0,0,2776,176,3759,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>PHYLLOID TUMOR EXCISION DONE BY DR PRATAPSINH DODIYA ON 20/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 16:47:53','mo','2025-11-20 20:26:45'),(6103,0,0,2776,176,3759,0,0,NULL,'','OTNOTE','','','<p>-large lump in upper outer quadrant of left uterus</p>\r\n\r\n<p>-lump with normal breast tissue excised</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-breast tissue closed&nbsp;with vicryl no 1.</p>\r\n\r\n<p>-sub cutaneous tissue closed with vicryl no 1</p>\r\n\r\n<p>-skin closed with ethilon 3-0.</p>\r\n\r\n<p>-tissue sent for hpe</p>\r\n\r\n<p>-dressing kept</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 16:47:53','mo','2025-11-20 20:26:45'),(6104,0,0,2776,176,3759,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 16:47:53','mo','2025-11-20 20:26:45'),(6105,0,0,2776,176,3759,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>FOLLOW UP TO MD MEDICINE FOR BLOOD PRESSURE</P>\r\n\r\n<P>HPE AWAITED</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 16:47:53','mo','2025-11-20 20:26:45'),(6106,0,0,2776,176,3759,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>TAB STATEL</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 16:47:53','mo','2025-11-20 20:26:45'),(6107,0,0,2776,176,3759,0,0,NULL,'','TREATDISC_TI','','','<P>CAP AUGMENTIN (625 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TA DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS-SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB PHLOGAM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 16:50:35','mo','2025-11-20 20:26:45'),(6108,0,0,2685,171,3611,0,0,NULL,'','DISCDIAG','','','<P>AKI ON CKD&nbsp;</P>\r\n\r\n<P>CARDIO RENAL SYNDROME&nbsp;</P>\r\n\r\n<P>SEPSIS</P>\r\n\r\n<P>SEVERE LV DYSFUNCTIO</P>\r\n\r\n<P>DCMP ,</P>\r\n\r\n<P>CONGESTITIVE HEPATITIS&nbsp;</P>\r\n\r\n<P>KC/O DM;HTN;SEVERE LVD;SEVERE MR/TR/PAH;AF;CKD;BPH</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 17:04:23','mo','2025-12-02 16:46:24'),(6109,0,0,2685,171,3611,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 17:04:23','mo','2025-12-02 16:46:24'),(6110,0,0,2685,171,3611,0,0,NULL,'','HISTHOSPCOURSE','','','<P>HISTORY GIVEN BY PATIENT&#39;S RELATIVE.</P>\r\n\r\n<P>A 83 YEARS OLD MALE PATIENT P/W KC/O DM;HTN;SEVERE LVD;SEVERE MR/TR/PAH;AF;CKD;BPH</P>\r\n\r\n<P>WITH C/O DOE;DECREASED URINE OUTPUT;ANOREXIA;NAUSEA;B/L PEDAL EDEMA;DRY COUGHING;ABDOMINAL DISTENDED SINCE LAST 1 WEEK.</P>\r\n\r\n<P>SO,PATIENT ADMITTED AT JCCC HOSPITAL,JAMNAGAR FROM 14/11 TO 18/11/25.AT THERE DIAGNOSED CKD G5A3;SEVERE LVD;CONGESTIVE HEPATITIS;TCP.AT THERE 2 CYCLE OF HD DONE.</P>\r\n\r\n<P>NOW PATIENT SHIFTED TO HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-97.4 F</P>\r\n\r\n<P>PR-102/MIN</P>\r\n\r\n<P>BP-128/90MMHG</P>\r\n\r\n<P>SPO2-98% ON RA</P>\r\n\r\n<P>RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-185 MG/DL</P>\r\n\r\n<P>RIGHT SIDED IJV TLC IN SITU(D5);FOLEY&#39;S CATHETER IN SITU NO-16(D4)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18/11/25,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION SENT.TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>CARDIOLOGIST DR.TUSHAR BHATTI REFERENCE DONE.2D ECHO DONE.FOLOOWED ALL HIS ADVICE.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>IV DIURETIC DRIP STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19/11/24,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>CHEST X-RAY AND USG ABDOMEN PELVIS DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>SLED DONE 6 HOURS. UF 2 LIT HEPARIN FREE</P>\r\n\r\n<P>IV ALBUREL 20% GIVEN DURING HD.</P>\r\n\r\n<P>IN VIEW OF HYPOKALEMIA MANAGED BY IV KCL DRIP.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20/11/25,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>IV DIURETIC DRIP CONTINUED</P>\r\n\r\n<P>PATENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21/11/2025,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>SLED DONE 8&nbsp;HOURS. UF 3 LIT HEPARIN REGULAR&nbsp;</P>\r\n\r\n<P>IV ALBUCEL 20% GIVEN DURING HD.</P>\r\n\r\n<P>IV DIURETIC DRIP CONTINUED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22/11/2025,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT</P>\r\n\r\n<P>SELF REMOVAL OF DLC SO IJV INSERTED</P>\r\n\r\n<P>IV DIURETIC DRIP CONTINUED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23/11/2025,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT</P>\r\n\r\n<P>IV DIURETIC DRIP CONTINUED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24/11/2025,</P>\r\n\r\n<P>FOR HD AND FURTHER CARDIAC MANAGEMENT PATIENT SHIFT TO ICU</P>\r\n\r\n<P>CHEST X RAY DONE&nbsp;</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT</P>\r\n\r\n<P>DLC RIGHT IJV INSERTION DONE BY DR DENISH SAVALIYA WITH ALL ASEPTIC PRECAUTION&nbsp;</P>\r\n\r\n<P>IV DIURETIC DRIP CONTINUED</P>\r\n\r\n<P>SLED&nbsp;DONE 6 HRS&nbsp; UF 2 LIT HEPARIN FREE</P>\r\n\r\n<P>INJ DOBUTAMINE DRIP START&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>25/11/2025</P>\r\n\r\n<P>INJ ALBUMIN GIVEN&nbsp;</P>\r\n\r\n<P>INJ DOBUTAMINE DRIP CONTINUE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26/11/2025</P>\r\n\r\n<P>INJ ALBUMIN GIVEN&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27/11/2025</P>\r\n\r\n<P>NO ANY FRESH COMPLAINU/O 25-30ML/HR&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28/11/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>DOBUTAMIN DRIP CONTINUE.</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>CARDIOLOGIST REVIEW DONE.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>29/11/2025</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT</P>\r\n\r\n<P>IV DOBUTAMINE&nbsp;DRIP &nbsp;CONTINUED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>30/11/2025</P>\r\n\r\n<P>INJ DOBUTAMINE DRIP TAPPER DOWN&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>01/12/2025</P>\r\n\r\n<P>REVIEW OF DR. TUSHAR BHATTI (CARDIOLOGIST) DONE AND FOLLOW HIS ADVISE</P>\r\n\r\n<P>4TH CYCLE OF HD DONE IN 6 HOURES , UF 2 LIT. HEPARINE REGULER</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>2/12/2025</P>\r\n\r\n<P>REVIEW OF DR TUSHAR BHATTI DONE AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>INJ DOBUTAMIN TAPPER OFF&nbsp;</P>\r\n\r\n<P>FOLEY&#39;S CATHETER CHANGE SILICON DONE WITH ALL ASEPTIC PRECAUTION&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 17:04:23','mo','2025-12-02 16:46:24'),(6111,0,0,2816,2746,3823,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 17:19:25','','0000-00-00 00:00:00'),(6112,0,0,2816,2746,3823,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsmo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 17:20:02','','0000-00-00 00:00:00'),(6113,0,0,2816,2746,3823,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--wnl</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 17:20:16','darshan','2025-11-20 18:19:21'),(6114,0,0,2816,2746,3823,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 17:20:26','','0000-00-00 00:00:00'),(6115,0,0,2815,2745,3822,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---two episodes of headahe&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 17:23:00','','0000-00-00 00:00:00'),(6116,0,0,2685,171,3611,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MEZOR</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>INJ KCL</P>\r\n\r\n<P>INJ ALBUREL</P>\r\n\r\n<P>TAB FDSON MP</P>\r\n\r\n<P>TAB ZYTANIX</P>\r\n\r\n<P>TAB QUTAN</P>\r\n\r\n<P>TAB UDILIV</P>\r\n\r\n<P>TAB ISOLAZIN</P>\r\n\r\n<P>TAB FOLE</P>\r\n\r\n<P>TAB CARDIVAS</P>\r\n\r\n<P>TAB ALDECTONE</P>\r\n\r\n<P>TAB DYTOR</P>\r\n\r\n<P>PC ENEMA</P>\r\n\r\n<P>RASHFREE OINTMENT</P>\r\n\r\n<P>INJ DOBUTAMINE DRIP</P>\r\n\r\n<P>SYP CREMAFFIN PLUS</P>\r\n\r\n<P>LAMINO HP PROTIEN</P>\r\n\r\n<P>INJ H. ACTRAPID</P>\r\n\r\n<P>RASH FREE OINT.</P>\r\n\r\n<P>FOLE OINT.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 17:24:16','mo','2025-12-02 16:46:24'),(6117,0,0,2817,2747,3824,0,0,NULL,'','CC','ZZZ','Remark','NASAL BLOCAKGE OFF AND ON-----20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 17:26:13','','0000-00-00 00:00:00'),(6118,0,0,2817,2747,3824,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Nose--dns to left&thinsp;</p>\n\n<p>bith</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 17:26:20','darshan','2025-11-20 17:26:36'),(6120,0,0,2817,2747,3824,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS CT PNS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 17:27:25','','0000-00-00 00:00:00'),(6121,0,0,2814,2744,3820,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----3-4 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 17:36:55','','0000-00-00 00:00:00'),(6122,0,0,2814,2744,3820,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rotaotyr feeling any time and sometime fall down&thinsp;</p>\n\n<p>left ear deafness and tinnitus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 17:37:29','','0000-00-00 00:00:00'),(6123,0,0,2814,2744,3820,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain 8th nerve protocol--no SOL</p>\n\n<p>pta---left moderate to severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 17:37:44','darshan','2025-11-20 18:30:53'),(6126,0,0,2818,2748,3826,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 17:47:41','','0000-00-00 00:00:00'),(6127,0,0,2818,2748,3826,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaoty feeling when pt is getting out of bed and lying down&thinsp; in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpmso&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 17:48:18','','0000-00-00 00:00:00'),(6128,0,0,2818,2748,3826,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---wnl</p>\n\n<p>vng--central vareity of nystmgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 17:48:31','darshan','2025-11-20 19:13:31'),(6130,0,0,2187,2136,3828,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 17:49:35','darshan','2025-11-20 17:53:59'),(6134,0,0,2187,2136,3828,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 17:55:41','','0000-00-00 00:00:00'),(6135,0,0,2819,2749,3827,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 17:57:36','','0000-00-00 00:00:00'),(6136,0,0,2787,2716,3773,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 18:07:12','','0000-00-00 00:00:00'),(6138,0,0,2787,2716,3773,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 18:07:26','','0000-00-00 00:00:00'),(6139,0,0,2822,2752,3832,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS---2 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 18:12:22','','0000-00-00 00:00:00'),(6140,0,0,2822,2752,3832,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 18:14:53','','0000-00-00 00:00:00'),(6141,0,0,2822,2752,3832,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike--nasd</p>\n\n<p>hit-nad</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 18:15:05','darshan','2025-11-20 19:26:49'),(6143,0,0,2822,2752,3832,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 18:15:51','','0000-00-00 00:00:00'),(6144,0,0,2816,2746,3823,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 18:20:01','','0000-00-00 00:00:00'),(6146,0,0,2825,2755,3837,0,0,NULL,'','CC','ZZZ','Remark','H/O DIZZINESS  | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-20 18:26:51','','0000-00-00 00:00:00'),(6147,0,0,2825,2755,3837,0,0,NULL,'','CC','ZZZ','Remark','C/O DOE  | 2 MONTHS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-20 18:26:51','','0000-00-00 00:00:00'),(6148,0,0,2825,2755,3837,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO C/O CHEST PAIN&thinsp;</p>\n\n<p>NO OTHER COMPLAINT</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-20 18:27:03','','0000-00-00 00:00:00'),(6149,0,0,2825,2755,3837,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALLY NAD&thinsp;&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-20 18:27:44','','0000-00-00 00:00:00'),(6150,0,0,1386,1346,3829,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence&thinsp; vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 18:28:07','','0000-00-00 00:00:00'),(6151,0,0,2821,2751,3831,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 18:40:04','','0000-00-00 00:00:00'),(6152,0,0,1402,1362,3843,0,0,NULL,'','HIST','ZZZ','Remark','<p>fofllow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 18:41:35','darshan','2025-11-20 18:44:30'),(6154,0,0,2816,2746,3823,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 18:51:25','','0000-00-00 00:00:00'),(6155,0,0,2823,2753,3833,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 18:58:38','','0000-00-00 00:00:00'),(6156,0,0,2823,2753,3833,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 18:58:54','','0000-00-00 00:00:00'),(6157,0,0,2823,2753,3833,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 18:59:33','','0000-00-00 00:00:00'),(6159,0,0,2823,2753,3833,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 19:00:23','','0000-00-00 00:00:00'),(6160,0,0,1642,1597,3834,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 19:01:52','','0000-00-00 00:00:00'),(6161,0,0,412,390,3841,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case=better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 19:05:04','','0000-00-00 00:00:00'),(6162,0,0,2818,2748,3826,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 19:13:56','','0000-00-00 00:00:00'),(6165,0,0,1016,984,3842,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 19:17:19','','0000-00-00 00:00:00'),(6166,0,0,863,832,3844,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 19:20:48','','0000-00-00 00:00:00'),(6167,0,0,2822,2752,3832,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 19:27:20','','0000-00-00 00:00:00'),(6170,0,0,2818,2748,3826,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 19:29:14','','0000-00-00 00:00:00'),(6171,0,0,2829,2759,3846,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n\n<p>occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 19:38:00','','0000-00-00 00:00:00'),(6173,0,0,2822,2752,3832,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-20 19:39:45','','0000-00-00 00:00:00'),(6174,0,0,2779,177,3763,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-SEIZURE, GTCS CONVULSION</STRONG></P>\r\n\r\n<P><STRONG>-OLD CV STROKE&nbsp;X 6 YEAR</STRONG></P>\r\n\r\n<P><STRONG>-HTN SINCE 15 YEARS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 19:45:24','mo','2025-11-21 21:50:58'),(6175,0,0,2779,177,3763,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-20 19:45:24','mo','2025-11-21 21:50:58'),(6176,0,0,1353,1314,3855,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 19:46:54','','0000-00-00 00:00:00'),(6177,0,0,2779,177,3763,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 68 YEARS OLD FEMALE PATIENT P/W</P>\r\n\r\n<P>K/C/O: HTN SINCE 15 YEARS ,OLD CV STROKE SINCE 5 YEARS</P>\r\n\r\n<P>WITH H/O SUDDENLY WHILE SLEEPING EYE TURN UPWARD;STIFFNESS IN ALL LIMBS F/BY FEW MINUTES UNCONSCIOUS TODAY @ 2 AM</P>\r\n\r\n<P>SO,RELATIVE BROUGHT HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-97 F</P>\r\n\r\n<P>PR-86/MIN</P>\r\n\r\n<P>BP-116/80MMHG</P>\r\n\r\n<P>SPO2-94% ON RA</P>\r\n\r\n<P>RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C,MOVING ALL 4 LIMBS,E4V5M6</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-105 MG/DL</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL HISTORY AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20/11/25,</P>\r\n\r\n<P>ALL REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>MRI BRAIN EPILEPSY PROTOCOLS DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>REFERENCE OF DR KAUMIL KOTHARI (NEUROPHYSICIAN) DONE AND FOLLOW HIS ALL ADVICE.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21/11/25,</P>\r\n\r\n<P>ELECTRO ENCEPHALOGRAPHY(EEG)&nbsp;DONE</P>\r\n\r\n<P>CONTINUE SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 19:55:54','mo','2025-11-21 21:50:58'),(6178,0,0,2779,177,3763,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ LEVIGRESS</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>TAB ECOSPRIN</P>\r\n\r\n<P>TAB LIPITAS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 19:58:18','mo','2025-11-21 21:50:58'),(6179,0,0,2833,2763,3860,0,0,NULL,'','HIST','ZZZ','Remark','<p>teleconsultation done</p>\n\n<p>single episode of vertigo&thinsp;</p>\n\n<p>nystagmus---absent</p>\n\n<p>d</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-20 20:34:15','','0000-00-00 00:00:00'),(6180,0,0,2612,164,3474,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 20:49:13','mo','2025-11-20 22:38:32'),(6181,0,0,2612,164,3474,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.XOXE CV&nbsp; (250MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS..............(10)</P>\r\n\r\n<P>TAB.METROGYL ER (600)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 2 DAYS..............(5)</P>\r\n\r\n<P>TAB.FOLE (200MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-1-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 2&nbsp;DAYS..............(2)</P>\r\n\r\n<P>TAB.NEXPROFAST (40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS..............(5)</P>\r\n\r\n<P>TAB.ZOFER MD (4MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-1-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS..............(15)</P>\r\n\r\n<P>TAB.DERIPHYLLIN R (300)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-0&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS..............(5)</P>\r\n\r\n<P>TAB.CORTEL (80MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS..............(5)</P>\r\n\r\n<P>TAB.BISOWIN-T (5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS..............(5)</P>\r\n\r\n<P>TAB.ARKAMINE (0.1MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS..............(10)</P>\r\n\r\n<P>TAB.BREVIPIL (50MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS..............(10)</P>\r\n\r\n<P>TAB.ECOSPRIN AV (75/10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-1-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS..............(5)</P>\r\n\r\n<P>TAB.LUPIHEME&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-1-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS..............(5)</P>\r\n\r\n<P>TAB.CREMALAX (10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS..............(5)</P>\r\n\r\n<P>TAB.ETOLOK TH&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS FOR PAIN.........................(5)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CLOTRINAZOLE LOGENGES&nbsp; &nbsp; &nbsp; &nbsp;FOR ORAL ULCERS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; THRICE A DAY&nbsp;</P>\r\n\r\n<P>ZYTEE GEL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR ORAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;THRICE A DAY&nbsp; &nbsp; &nbsp; 1/2 HOUR&nbsp;BEFORE FOOD</P>\r\n\r\n<P>&nbsp; &nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 20:49:13','mo','2025-11-20 22:38:32'),(6182,0,0,2611,163,3473,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.CEFTUM (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS&nbsp; .............(10)</P>\r\n\r\n<P>TAB METRO ER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS&nbsp; .............(10)</P>\r\n\r\n<P>CAP VSL # 3&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS&nbsp; .............(3)&nbsp;</P>\r\n\r\n<P>TAB.AKILOS P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS .............(10)</P>\r\n\r\n<P>TAB.RBSON D&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS .............(10)</P>\r\n\r\n<P>TAB. HEALTH OK&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS .............(5)</P>\r\n\r\n<P>SYP.DUPHALAC&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2 TSF&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .....................(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-20 23:31:18','mo','2025-11-23 13:12:36'),(6183,0,0,1045,1012,3866,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n\n<p>heaviness of head&thinsp; with burning sensation in head</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 10:52:35','','0000-00-00 00:00:00'),(6184,0,0,2840,2771,3873,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---no imprmvent&thinsp;</p>\n\n<p>sense of imbalance</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 11:03:58','','0000-00-00 00:00:00'),(6185,0,0,2840,2771,3873,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--right abnormal</p>\n\n<p>Mri brain---no SOL or cva</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 11:04:37','darshan','2025-11-21 13:26:41'),(6187,0,0,2841,2772,3874,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3 MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 11:14:41','','0000-00-00 00:00:00'),(6188,0,0,2841,2772,3874,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no asociated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 11:15:33','','0000-00-00 00:00:00'),(6189,0,0,2841,2772,3874,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilomety---reduced vestibular score</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 11:15:46','darshan','2025-11-21 12:34:23'),(6191,0,0,2842,2773,3875,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 11:18:41','','0000-00-00 00:00:00'),(6192,0,0,2850,2781,3887,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT TENNIS ELBOW','','',0,'0000-00-00 00:00:00','drsagar','2025-11-21 11:34:41','','0000-00-00 00:00:00'),(6193,0,0,2844,2775,3878,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 11:34:56','','0000-00-00 00:00:00'),(6194,0,0,2844,2775,3878,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling with black out feeling for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 11:35:34','','0000-00-00 00:00:00'),(6195,0,0,2844,2775,3878,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 11:35:46','darshan','2025-11-21 12:48:41'),(6198,0,0,2845,2776,3879,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---maenvuer not done porperly</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 11:37:49','darshan','2025-11-21 13:18:35'),(6199,0,0,2849,2780,3886,0,0,NULL,'','HIST','ZZZ','Remark','<p>heaviness of head --few months&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 11:50:13','','0000-00-00 00:00:00'),(6200,0,0,2849,2780,3886,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 11:50:28','','0000-00-00 00:00:00'),(6202,0,0,2849,2780,3886,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-21 11:51:32','','0000-00-00 00:00:00'),(6203,0,0,2851,2782,3888,0,0,NULL,'','CC','ZZZ','Remark','SENSE OF IMBALANCE ---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 11:59:12','','0000-00-00 00:00:00'),(6204,0,0,2851,2782,3888,0,0,NULL,'','CC','ZZZ','Remark','HEAVINESS OF HEAD +||','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 11:59:12','','0000-00-00 00:00:00'),(6205,0,0,2851,2782,3888,0,0,NULL,'','HIST','ZZZ','Remark','<p>when pt walks he feels imbalance sense with heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 11:59:37','','0000-00-00 00:00:00'),(6206,0,0,2851,2782,3888,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta----bilaterl high freq mild sn deafness(o)</p>\n\n<p>vng--non conclusive(o)</p>\n\n<p>&thinsp;vemp---wnl</p>\n\n<p>stabiomtry--nad</p>\n\n<p>CCG--boderaline sway</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 11:59:52','darshan','2025-11-21 13:05:49'),(6207,0,0,2846,2777,3880,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--btter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 12:01:50','','0000-00-00 00:00:00'),(6210,0,0,2846,2777,3880,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 12:02:44','','0000-00-00 00:00:00'),(6211,0,0,2846,2777,3880,0,0,NULL,'','MADVICE','ZZZ','Remark','FOLLOW UP SOS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-21 12:13:20','','0000-00-00 00:00:00'),(6212,0,0,777,746,3881,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 12:14:43','','0000-00-00 00:00:00'),(6213,0,0,1275,1234,3895,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 12:17:52','','0000-00-00 00:00:00'),(6215,0,0,1275,1234,3895,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-21 12:18:51','','0000-00-00 00:00:00'),(6216,0,0,2854,2785,3892,0,0,NULL,'','CC','ZZZ','Remark','RIGTH EAR PAIN--3-4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 12:21:15','','0000-00-00 00:00:00'),(6217,0,0,2854,2785,3892,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Rigth AOM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 12:21:21','','0000-00-00 00:00:00'),(6218,0,0,1775,1731,3897,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 12:23:48','','0000-00-00 00:00:00'),(6220,0,0,1775,1731,3897,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-21 12:25:20','','0000-00-00 00:00:00'),(6221,0,0,2857,2789,3898,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 12:27:38','','0000-00-00 00:00:00'),(6222,0,0,2841,2772,3874,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 12:35:07','','0000-00-00 00:00:00'),(6224,0,0,2858,2790,3899,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 12:37:32','','0000-00-00 00:00:00'),(6226,0,0,2841,2772,3874,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-21 12:40:09','','0000-00-00 00:00:00'),(6227,0,0,2852,2783,3889,0,0,NULL,'','CC','ZZZ','Remark','C/O DOE  | 2 MONTHS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-21 12:44:47','','0000-00-00 00:00:00'),(6228,0,0,2852,2783,3889,0,0,NULL,'','CC','ZZZ','Remark','C/O SEVERE WEAKNESS  | 2 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-21 12:44:47','','0000-00-00 00:00:00'),(6229,0,0,2861,2792,3903,0,0,NULL,'','CC','ZZZ','Remark','VRETIGO--1 YR||','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 12:55:25','','0000-00-00 00:00:00'),(6230,0,0,2861,2792,3903,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo--sudden onset of rotaotyr feeling on change of posture</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 12:56:11','','0000-00-00 00:00:00'),(6231,0,0,2861,2792,3903,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---bilatler moderate sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 12:56:24','darshan','2025-11-21 13:51:12'),(6232,0,0,2861,2792,3903,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV VS VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 12:56:29','','0000-00-00 00:00:00'),(6233,0,0,2859,2791,3900,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of vertigo and headache</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 13:00:06','','0000-00-00 00:00:00'),(6234,0,0,2845,2776,3879,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---wnl</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 13:19:02','','0000-00-00 00:00:00'),(6235,0,0,2845,2776,3879,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 13:19:16','','0000-00-00 00:00:00'),(6237,0,0,2862,2793,3904,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ----medicine skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 13:21:59','','0000-00-00 00:00:00'),(6239,0,0,2845,2776,3879,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-21 13:24:14','','0000-00-00 00:00:00'),(6240,0,0,2840,2771,3873,0,0,NULL,'','DIAG','ZZZ','Remark','RIGTH CHRONIC PARTIAL VESTIBULAR DEFICIT','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 13:28:35','','0000-00-00 00:00:00'),(6241,0,0,1062,1028,3901,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--partialy better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 13:31:20','','0000-00-00 00:00:00'),(6242,0,0,1062,1028,3901,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left post canal bppv with phobia</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 13:31:29','','0000-00-00 00:00:00'),(6244,0,0,1062,1028,3901,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER \nCONTINU TREATMENT WITH PSYCHIATRIST ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-21 13:32:24','','0000-00-00 00:00:00'),(6245,0,0,2861,2792,3903,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 13:51:51','','0000-00-00 00:00:00'),(6248,0,0,2861,2792,3903,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-21 13:58:32','','0000-00-00 00:00:00'),(6249,0,0,2871,2801,3915,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 17:17:45','','0000-00-00 00:00:00'),(6250,0,0,2872,2803,3917,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 17:25:58','','0000-00-00 00:00:00'),(6251,0,0,2872,2803,3917,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling mainly on change of posture</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 17:28:11','darshan','2025-11-21 17:28:46'),(6252,0,0,2872,2803,3917,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---bialtelr high freq mild sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng----bialteral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 17:28:21','darshan','2025-11-21 18:57:21'),(6254,0,0,2867,2797,3910,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 17:33:28','','0000-00-00 00:00:00'),(6255,0,0,2868,2798,3911,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 17:34:58','','0000-00-00 00:00:00'),(6256,0,0,332,316,3913,0,0,NULL,'','HIST','ZZZ','Remark','<p>attendedd</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 17:41:40','','0000-00-00 00:00:00'),(6257,0,0,2870,2800,3914,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 17:42:24','','0000-00-00 00:00:00'),(6258,0,0,2869,2799,3912,0,0,NULL,'','HIST','ZZZ','Remark','<p>attened</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 17:44:20','','0000-00-00 00:00:00'),(6259,0,0,999,966,3919,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 17:46:07','','0000-00-00 00:00:00'),(6260,0,0,2875,2806,3921,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---single episode of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 17:48:39','','0000-00-00 00:00:00'),(6261,0,0,2249,2192,3924,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 18:01:36','','0000-00-00 00:00:00'),(6262,0,0,2314,2257,3927,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 18:16:51','','0000-00-00 00:00:00'),(6263,0,0,2878,2809,3928,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 18:21:49','','0000-00-00 00:00:00'),(6264,0,0,2879,2810,3929,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 18:28:29','','0000-00-00 00:00:00'),(6265,0,0,2879,2810,3929,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo when pt walks he feels sense of imbalance&thinsp;</p>\n\n<p>heavinss of head +</p>\n\n<p>no associated other cns symtpsmo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 18:28:53','','0000-00-00 00:00:00'),(6266,0,0,2879,2810,3929,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---wnl</p>\n\n<p>vng--left post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 18:29:07','darshan','2025-11-21 19:21:23'),(6269,0,0,2880,2811,3933,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---single episode of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 18:31:51','','0000-00-00 00:00:00'),(6270,0,0,2779,177,3763,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>CONSCIOUS &AMP; ORIENTED</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-21 18:37:23','mo','2025-11-21 21:50:58'),(6271,0,0,2779,177,3763,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 7&nbsp;DAYS</P>\r\n\r\n<P>HOLD OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-21 18:37:23','mo','2025-11-21 21:50:58'),(6272,0,0,2779,177,3763,0,0,NULL,'','TREATDISC_TI','','','<P>TAB LEVIGRESS (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 7&nbsp;DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; FOR 7&nbsp;DAYS</P>\r\n\r\n<P>TAB OPVAST ASP (150/20)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 7&nbsp;DAYS</P>\r\n\r\n<P>TAB BISOBIS (5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 7&nbsp;DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-21 18:37:23','mo','2025-11-21 21:50:58'),(6273,0,0,2881,2812,3936,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 18:44:15','','0000-00-00 00:00:00'),(6274,0,0,2881,2812,3936,0,0,NULL,'','HIST','ZZZ','Remark','<p>when pt moves her head she feels imbalance sense&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 18:44:41','','0000-00-00 00:00:00'),(6275,0,0,2881,2812,3936,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 18:44:54','darshan','2025-11-21 19:25:54'),(6278,0,0,903,871,3931,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 18:50:51','','0000-00-00 00:00:00'),(6279,0,0,695,665,3935,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 18:53:13','','0000-00-00 00:00:00'),(6280,0,0,2882,2813,3937,0,0,NULL,'','HIST','ZZZ','Remark','<p>not available</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 19:03:18','','0000-00-00 00:00:00'),(6281,0,0,2255,2199,3940,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 19:04:17','','0000-00-00 00:00:00'),(6284,0,0,2886,2817,3945,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT WRIST PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-21 19:06:56','','0000-00-00 00:00:00'),(6286,0,0,2852,2783,3889,0,0,NULL,'','MADVICE','ZZZ','Remark','ADVICE -CAG AND INTERVENTION','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-21 19:07:51','','0000-00-00 00:00:00'),(6287,0,0,2325,2268,3947,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 19:08:03','','0000-00-00 00:00:00'),(6288,0,0,2325,2268,3947,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 19:08:50','','0000-00-00 00:00:00'),(6290,0,0,2325,2268,3947,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-21 19:17:56','','0000-00-00 00:00:00'),(6291,0,0,2879,2810,3929,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 19:21:43','','0000-00-00 00:00:00'),(6294,0,0,2879,2810,3929,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-21 19:41:42','','0000-00-00 00:00:00'),(6295,0,0,714,1085,3944,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-11-21 19:44:50','','0000-00-00 00:00:00'),(6296,0,0,2889,2820,3949,0,0,NULL,'','HIST','ZZZ','Remark','<p>h/o-- injury&thinsp; in school bus due to accident</p>\n\n<p>no/h/o---LOC or deafness or vomiting&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 19:46:23','darshan','2025-11-21 19:47:52'),(6297,0,0,2889,2820,3949,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Left ear wax</p>\n\n<p>oral cavity --nad</p>\n\n<p>mouth opening --normal&thinsp;</p>\n\n<p>tenderness on left pinna</p>\n\n<p>CT brain with temporal region---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-21 19:48:45','','0000-00-00 00:00:00'),(6298,0,0,1463,1422,3922,0,0,NULL,'','CC','ZZZ','Remark','C/O FEVER | 2 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-21 19:49:54','','0000-00-00 00:00:00'),(6299,0,0,1463,1422,3922,0,0,NULL,'','CC','ZZZ','Remark','C/O COUGH  | 2 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-21 19:49:54','','0000-00-00 00:00:00'),(6300,0,0,2685,171,3611,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP ON TUESDAY TO DR DENISH SAVALIYA AND DR TUSHAR BHATTI WITH CBC,S.UREA,S.CREAT.S.ELECTROLYTES,SGPT,SGOT,RBS,S.BILLIRUBIN,URINE R/M&nbsp;</P>\r\n\r\n<P>DAILY FOLEY&#39;S CARE&nbsp;</P>\r\n\r\n<P>DLC CARE&nbsp;</P>\r\n\r\n<P>FLUID RESTRICTION &LT; 1.5LIT/DAY</P>\r\n\r\n<P>CONTINUE MHD 3 TIMES/WEEK&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 00:36:50','mo','2025-12-02 16:46:24'),(6301,0,0,2780,178,3764,0,0,NULL,'','DISCDIAG','','','<P><STRONG>- RECURRENT CVA + LARGE VESSEL OCCLUSION&nbsp;? ATHEROSCLEROSIS</STRONG></P>\r\n\r\n<P><STRONG>- NOW RESIDUAL LEFT SIDED HEMIPARESIS (SEP-2025)&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>- RIGHT PERIPHRIC ABSCESS WITH UROSEPSIS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>- K/C/O DM;HTN;BPH&nbsp;</STRONG></P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 00:40:24','mo','2025-12-01 12:39:10'),(6302,0,0,2780,178,3764,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY- SURGERY FOR LEFT KNEE JOINT #</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY- HTN,DM,OLD CV STROKE</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 00:40:24','mo','2025-12-01 12:39:10'),(6303,0,0,2780,178,3764,0,0,NULL,'','HISTHOSPCOURSE','','','<P>HISTORY GIVEN BY PATIENT&#39;S RELATIVE.</P>\r\n\r\n<P>A 75 YEARS OLD MALE PATIENT P/W K/C/O DM;HTN;BPH;OLD CVA(RECURRENT STROKE)</P>\r\n\r\n<P>WITH C/O INTERMITTENT FEVER;ABDOMINAL PAIN;NAUSEA;ANOREXIA;GENERALISED WEAKNESS;DROWSINESS SINCE 1 WEEK.</P>\r\n\r\n<P>SO,PRIMARY TREATMENT TAKEN AT DR.ROSHAN MISTRY.AT THERE MRI BRAIN AND EEG DONE.NOW,PATIENT CAME HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-99.6 F</P>\r\n\r\n<P>PR-120/MIN</P>\r\n\r\n<P>BP-160/80MMHG</P>\r\n\r\n<P>SPO2-92% ON RA</P>\r\n\r\n<P>RR-30/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-DROWSY/AROUSABLE,F/V/C,MOVING ALL 4 LIMBS.</P>\r\n\r\n<P>P/A-SOF</P>\r\n\r\n<P>RBS-189 MG/DL</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20/11/25,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>URINE ROUTINE MICRO SENT.S/O PUS 25-30 CELL/HPF,BACTERIA +.CULTURE SENT.</P>\r\n\r\n<P>USG ABDOMEN AND CHEST X-RAY DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>DAILY INTENSIVIST AND MD PHYSICIAN DR.ARCHIT RATHOD REFERENCE DONE.FOLLOWED ALL HIS ADVICE.</P>\r\n\r\n<P>IN VIEW OF HYPONATREMIA MANAGED BY IV 3% NS.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21/11/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22/11/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>URINE CS S/O KLEBSIELLA PNEUMONIAE GROWTH, TREATMENT MODIFIED ACCORDINGLY</P>\r\n\r\n<P>IN VIEW OF UNCONTROLLED DM INJ H.ACTRAPID GIVEN @ RBS</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>IN VIEW OF SUDDEN SUPRAVENTICULAR TACHYCARDIA PATIENT SHIFTED TO ICU.</P>\r\n\r\n<P>INJ DILZEM GIVEN</P>\r\n\r\n<P>INJ CORDERONE IV DRIP STARTED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23/11/25,</P>\r\n\r\n<P>REFERENCE OF DR VARSHIT HATHI (CARDIOLOGIST) DONE AND FOLLOW HIS ALL ADVICE.</P>\r\n\r\n<P>PATIENT GENERAL CNDITION IMPROVED SO SHIFTED TO WARD</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24/11/25,</P>\r\n\r\n<P>REF OF DR KRUTARTH KANJIYA (INFECTION SPECIALIST) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>PHYSIOTHERAPY STARTED</P>\r\n\r\n<P>BLOOD CS SENT :NO GROWTH</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>25/11/25,</P>\r\n\r\n<P>CT KUB DONE WHICH S/O;LOCULATED PERIPHERALLY ENAHNCING FLUID DENSITY IN RIGHT KIDNEY&nbsp;</P>\r\n\r\n<P>REF OF DR PRATIK SHAH (UROLOGIST) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>REVIEW OF DR&nbsp;KRUTARTH KANJIYA (INFECTION SPECIALIST) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26/11/25</P>\r\n\r\n<P>REQUIRED BLOOD IX DONE</P>\r\n\r\n<P>PHYSIOTHERAPY</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27/11/25,</P>\r\n\r\n<P>REQUIRED BLOOD IX DONE&nbsp;</P>\r\n\r\n<P>WHEELCHAIRE MOBILIZATION DONE</P>\r\n\r\n<P>1 UNIT RCC GIVEN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28/11/2025</P>\r\n\r\n<P>CONTINUE SAME TREATMENT</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>29/11/2025</P>\r\n\r\n<P>REQUIRED BLOOD IX DONE</P>\r\n\r\n<P>CT GUIDED RIGHT PERIPHERIC&nbsp; ASPIRATION DONE UNDER LOCAL ANEASTHESIA&nbsp;BY DR PRATIK SHAH (UROSURGEON) AT STERLING HOSPITAL WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>PUS C/S SENT&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>30/11/2025</P>\r\n\r\n<P>WHEELCHAIR MOBILIZATION DONE&nbsp;</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL INFUSION</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>1/12/2025</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>PUS C/S S/O: KLEIBSIELLA PNEUMONIE AND TREATMENT MODIFIED @ SENSITIVITY&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 00:40:24','mo','2025-12-01 12:39:10'),(6304,0,0,2691,172,3621,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 7 DAYS&nbsp; WITH STOOL OB,CBC&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 00:42:40','mo','2025-11-23 13:01:15'),(6305,0,0,2243,146,2879,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION,INTENSIVE CARE</P>\r\n\r\n<P>DAILY FOLEY&#39;S CARE WITH BETADIN SOLUTION</P>\r\n\r\n<P>DAILY CVP AND INTRATHECAL LINE CARE</P>\r\n\r\n<P>BEDSORE CARE,ORAL CARE</P>\r\n\r\n<P>AIR BED</P>\r\n\r\n<P>NJ TUBE CARE</P>\r\n\r\n<P>FEEDING 100ML/4TH HOURLY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 00:45:10','mo','2025-12-01 21:30:57'),(6306,0,0,2892,2823,3953,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 10:43:58','','0000-00-00 00:00:00'),(6307,0,0,737,706,3955,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 10:46:42','','0000-00-00 00:00:00'),(6308,0,0,2896,2826,3958,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----single episode of giddiness</p>\n\n<p>sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 10:47:49','darshan','2025-11-22 10:49:44'),(6309,0,0,2900,2828,3963,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--medicine skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 11:00:28','','0000-00-00 00:00:00'),(6310,0,0,2902,2830,3965,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of vomiting and sense of imbalance&thinsp;</p>\n\n<p>rotaotyr feeling&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpso&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 11:12:06','darshan','2025-11-22 11:12:45'),(6311,0,0,2902,2830,3965,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 11:12:16','','0000-00-00 00:00:00'),(6312,0,0,2902,2830,3965,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hti--nad</p>\n\n<p>CT brain---nad</p>\n\n<p>stabiloemtry--reduded vestibular scoree</p>\n\n<p>CCG---body axis spin Out of range</p>\n\n<p>vng--right acute partial v estibular deficit</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 11:12:56','darshan','2025-11-22 12:07:50'),(6313,0,0,2902,2830,3965,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ACUTE PARTIAL VESTIBULAR DEFICIT','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 11:13:27','','0000-00-00 00:00:00'),(6314,0,0,2887,2818,3946,0,0,NULL,'','CC','ZZZ','Remark','FEVER WITH RIGOR | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-22 11:15:17','','0000-00-00 00:00:00'),(6315,0,0,2904,2832,3967,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 11:16:51','','0000-00-00 00:00:00'),(6316,0,0,2906,2834,3969,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo&thinsp;</p>\n\n<p>deafness increased&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 11:27:37','darshan','2025-11-22 12:21:30'),(6317,0,0,2907,2835,3970,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo</p>\n\n<p>heaviness of head +</p>\n\n<p>MRI done last month---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 11:35:44','','0000-00-00 00:00:00'),(6318,0,0,641,611,3976,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 11:42:39','','0000-00-00 00:00:00'),(6320,0,0,641,611,3976,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 11:43:23','','0000-00-00 00:00:00'),(6322,0,0,641,611,3976,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEUVER----15 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-22 11:44:26','','0000-00-00 00:00:00'),(6323,0,0,2910,2838,3975,0,0,NULL,'','CC','ZZZ','Remark','C/O SORE THROAT | 3 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-22 11:55:01','','0000-00-00 00:00:00'),(6324,0,0,2910,2838,3975,0,0,NULL,'','CC','ZZZ','Remark','COUGHING DRY | 2 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-22 11:55:01','','0000-00-00 00:00:00'),(6325,0,0,2914,2842,3983,0,0,NULL,'','HIST','ZZZ','Remark','<p>oral burning with ulceration</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:00:39','','0000-00-00 00:00:00'),(6326,0,0,2909,2837,3974,0,0,NULL,'','CC','ZZZ','Remark','C/O DOE | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-22 12:01:36','','0000-00-00 00:00:00'),(6327,0,0,2909,2837,3974,0,0,NULL,'','CC','ZZZ','Remark','PEDAL EDEMA | 15 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-22 12:01:36','','0000-00-00 00:00:00'),(6328,0,0,2909,2837,3974,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CVS -S1 LOUD , SYSTOLIC MURMUR ++ AORTIC AREA</p>\n\n<p>&thinsp; &thinsp; &thinsp; &thinsp; &thinsp; HR -IRREGULARY IRREGULAR</p>\n\n<p>REST CLINICALLY NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-22 12:06:07','drarchit','2025-11-22 12:29:26'),(6329,0,0,2909,2837,3974,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO C/O CHEST PAIN</p>\n\n<p>NO OTHER COMPLAINT</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-22 12:06:43','','0000-00-00 00:00:00'),(6330,0,0,2909,2837,3974,0,0,NULL,'','DIAG','ZZZ','Remark','CCF WITH SEVERE AS WITH ? LV DYSFUNCTION WITH','','',0,'0000-00-00 00:00:00','drarchit','2025-11-22 12:08:43','','0000-00-00 00:00:00'),(6331,0,0,2915,2843,3984,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:14:21','','0000-00-00 00:00:00'),(6332,0,0,2915,2843,3984,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE --MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:14:21','','0000-00-00 00:00:00'),(6333,0,0,2915,2843,3984,0,0,NULL,'','HIST','ZZZ','Remark','<p>episidic vertigo with headache --remains for few mins&thinsp;</p>\n\n<p>heavienss of head +</p>\n\n<p>no asociated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:14:46','','0000-00-00 00:00:00'),(6334,0,0,2915,2843,3984,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nyhstamgus---absnt</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>CCG-----AP displacement out of normal range</p>\n\n<p>VNG--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:14:54','darshan','2025-11-22 12:48:03'),(6336,0,0,2916,2844,3987,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --positional&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:18:41','darshan','2025-11-22 12:20:19'),(6337,0,0,2916,2844,3987,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:19:56','','0000-00-00 00:00:00'),(6338,0,0,2916,2844,3987,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR  DEAFNESS ----3-4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:19:56','','0000-00-00 00:00:00'),(6339,0,0,2916,2844,3987,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--rigth right freq severe sn deafness</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng-left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:20:27','darshan','2025-11-22 13:04:47'),(6341,0,0,2906,2834,3969,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>pta-right very severe sn deanfess</p>\n\n<p>nystagmus---absent</p>\n\n<p>dix halloike--and</p>\n\n<p>hit-nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:22:34','','0000-00-00 00:00:00'),(6342,0,0,2918,2846,3989,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----2 episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:28:03','','0000-00-00 00:00:00'),(6343,0,0,2919,2847,3990,0,0,NULL,'','HIST','ZZZ','Remark','<p>left ear blockage ----few month</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:32:14','','0000-00-00 00:00:00'),(6345,0,0,2919,2847,3990,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT  EAR WAX REMOVAL NEXT TIME ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:32:58','','0000-00-00 00:00:00'),(6348,0,0,2909,2837,3974,0,0,NULL,'','MADVICE','ZZZ','Remark','REPEAT 2D ECHO \nCARDIOTHORASIC REFFERNCE FOR \nADIVCE -ADMISION ','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-22 12:35:41','','0000-00-00 00:00:00'),(6349,0,0,2920,2848,3991,0,0,NULL,'','CC','ZZZ','Remark','LEFT NASAL BLOCKAGE ---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:37:35','','0000-00-00 00:00:00'),(6350,0,0,2920,2848,3991,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose --left nasal polypoisis</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:37:50','','0000-00-00 00:00:00'),(6352,0,0,2920,2848,3991,0,0,NULL,'','MADVICE','ZZZ','Remark','CT PNS LIMITED STUDY','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:40:38','','0000-00-00 00:00:00'),(6353,0,0,2921,2849,3992,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up&thinsp; case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:42:47','','0000-00-00 00:00:00'),(6354,0,0,2915,2843,3984,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:48:47','','0000-00-00 00:00:00'),(6356,0,0,2925,2853,3996,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---15 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 12:59:41','','0000-00-00 00:00:00'),(6357,0,0,2925,2853,3996,0,0,NULL,'','HIST','ZZZ','Remark','<p>when pt walks he feels sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 13:00:28','','0000-00-00 00:00:00'),(6358,0,0,2925,2853,3996,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilatelr high f req modeate sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---Bilaterl vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 13:00:40','darshan','2025-11-22 13:27:44'),(6359,0,0,2925,2853,3996,0,0,NULL,'','DIAG','ZZZ','Remark','BILATELR VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 13:00:53','','0000-00-00 00:00:00'),(6360,0,0,2916,2844,3987,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 13:05:23','','0000-00-00 00:00:00'),(6363,0,0,2915,2843,3984,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-22 13:08:57','','0000-00-00 00:00:00'),(6364,0,0,2539,159,3348,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO DIARRHOEA</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>FOLEY&#39;S CATHETER N0:14 D:8 IN SITU</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 13:14:14','mo','2025-11-22 13:14:59'),(6365,0,0,2539,159,3348,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.XOXE (250)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 2&nbsp;DAYS...................(4)</P>\r\n\r\n<P>TAB.NEXPRO FAST (40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 7 DAYS...................(7)</P>\r\n\r\n<P>TAB.SHELCAL XT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-1-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 7 DAYS...................(7)</P>\r\n\r\n<P>TAB.NEXITO(5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 7 DAYS...................(7)</P>\r\n\r\n<P>TAB.QUTAN (25MG)&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0-0-1&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 7 DAYS...................(7)</P>\r\n\r\n<P>TAB.PLACIDA&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 7 DAYS...................(7)</P>\r\n\r\n<P>TAB.VIMGRAM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0-1-0&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 7 DAYS...................(7)</P>\r\n\r\n<P>CAP.UPRISE D360K&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ONCE A WEEK-EVERY FRIDAY&nbsp;...................(6)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>SENSOR LOTION&nbsp; &nbsp;FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp;B/L LOWER LIMB.................(1)</P>\r\n\r\n<P>RASHFREE OINTMENT FOR BED SORE DRESSING........................(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>LIQ.BETADINE&nbsp; &nbsp; 100 ML...................(1)</P>\r\n\r\n<P>STERILE GAUSE PIECE....................5 PACKETS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>SOFT CRVICAL COLOR BELT................(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 13:14:14','mo','2025-11-22 13:14:59'),(6367,0,0,2916,2844,3987,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-22 13:15:05','','0000-00-00 00:00:00'),(6368,0,0,2928,2856,4000,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 13:20:07','darshan','2025-11-22 13:22:53'),(6369,0,0,2928,2856,4000,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3-4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 13:22:16','','0000-00-00 00:00:00'),(6370,0,0,2928,2856,4000,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>vng--right post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 13:23:15','darshan','2025-11-22 13:35:07'),(6371,0,0,1386,1346,4001,0,0,NULL,'','HIST','ZZZ','Remark','<p>recurrence of vrtigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 13:25:10','','0000-00-00 00:00:00'),(6372,0,0,1386,1346,4001,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--rigth beat&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 13:25:21','','0000-00-00 00:00:00'),(6373,0,0,1386,1346,4001,0,0,NULL,'','MADVICE','ZZZ','Remark','INJ STEMETIL STAT IM','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-22 13:25:50','','0000-00-00 00:00:00'),(6374,0,0,2925,2853,3996,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 13:31:59','','0000-00-00 00:00:00'),(6375,0,0,2925,2853,3996,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 13:32:06','','0000-00-00 00:00:00'),(6376,0,0,2925,2853,3996,0,0,NULL,'','MADVICE','ZZZ','Remark','GF AMENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-22 13:32:07','','0000-00-00 00:00:00'),(6377,0,0,2928,2856,4000,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-22 13:35:30','','0000-00-00 00:00:00'),(6380,0,0,2928,2856,4000,0,0,NULL,'','MADVICE','ZZZ','Remark','BD  MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-22 13:45:05','','0000-00-00 00:00:00'),(6381,0,0,2860,180,3902,0,0,NULL,'','DISCDIAG','','','<P><STRONG>SETLING ANTROSEPTAL MI WITH ACCELRATED HTN.</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 15:08:54','mo','2025-11-22 15:24:06'),(6382,0,0,2860,180,3902,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\nNO<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 15:08:54','mo','2025-11-22 15:24:06'),(6383,0,0,2860,180,3902,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 60 YEARS OLD MALE&nbsp;PATIENT PRESENT WITH,</P>\r\n\r\n<P>NO H/O NAUSEA, VOMITING, GIDDINESS.</P>\r\n\r\n<P>C/O: LEFT SIDE CHEST PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;LEFT ARM PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;GEN. WEAKNESS,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;PRESPIRATION Y`DAY.</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; TODAY MORNING.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 98.2`F<BR />\r\nPR- 112/MIN<BR />\r\nBP- 210/124 MMHG&nbsp;<BR />\r\nSPO2-98% ON RA&nbsp;<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21-11-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE.&nbsp;</P>\r\n\r\n<P>S. TROP I LEVEL - 115.5 NG/L.</P>\r\n\r\n<P>IN VIEW OF HYPERTENSION INJ. NTG START.</P>\r\n\r\n<P>2 D ECHO DONE - REPROT ATTACH WITH FILE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED, NO CHEST PAIN.</P>\r\n\r\n<P>ECG DOEN.</P>\r\n\r\n<P>S. TROP I LEVEL - 470.5 NG/L.</P>\r\n\r\n<P>INJ.NTG STOP.</P>\r\n\r\n<P>PATIENT SHIT TO FURTHER MX FOR CAG AND INTERVENSION.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 15:08:54','mo','2025-11-22 15:24:06'),(6384,0,0,2860,180,3902,0,0,NULL,'','DISCCOND','','','<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>O/E:&nbsp;<BR />\r\nTEMP- 97.2`F<BR />\r\nPR- 55/MIN<BR />\r\nBP-&nbsp; 140/80&nbsp;MMHG&nbsp;<BR />\r\nSPO2-98% ON RA&nbsp;<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 15:21:14','mo','2025-11-22 15:24:06'),(6385,0,0,2860,180,3902,0,0,NULL,'','ADVICE','','','<P>CAG AND INTERVENSION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 15:21:14','mo','2025-11-22 15:24:06'),(6386,0,0,2860,180,3902,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. VOMISET</P>\r\n\r\n<P>INJ. NTG</P>\r\n\r\n<P>INJ. CLEXANE</P>\r\n\r\n<P>TAB. BISOBIS</P>\r\n\r\n<P>TAB. STATEL</P>\r\n\r\n<P>TAB. CLAVIX</P>\r\n\r\n<P>TAB. ECOSPRIN</P>\r\n\r\n<P>TAB. LIPITAS</P>\r\n\r\n<P>INJ. NS&nbsp;</P>\r\n\r\n<P>INJ. ELDERVIT</P>\r\n\r\n<P>INJ. LOBAT</P>\r\n\r\n<P>TAB. STATEL</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 15:21:14','mo','2025-11-22 15:24:06'),(6387,0,0,2860,180,3902,0,0,NULL,'','TREATDISC_TI','','','<P>INJ. PANTODAC 40 MG IV OD</P>\r\n\r\n<P>INJ. VOMISET 2ML IV TDS</P>\r\n\r\n<P>INJ. CLEXANE 0.6 ML S/C BD (2ND DAYS)</P>\r\n\r\n<P>TAB. BISOBIS 5MG P/O 1-0-0</P>\r\n\r\n<P>TAB. STATEL 40 MG P/O 0-0-1</P>\r\n\r\n<P>TAB. CLAVIX 75 MG P/O 0-0-1</P>\r\n\r\n<P>TAB. ECOSPRIN 150 MG P/O 0-1-0</P>\r\n\r\n<P>TAB. LIPITAS 40 MG P/O 0-0-1</P>\r\n\r\n<P>INJ. NS 500ML + INJ. ELEDRVIT... 40ML/HR.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 15:21:14','mo','2025-11-22 15:24:06'),(6388,0,0,2860,180,3902,0,0,NULL,'','FOOD_DRUG_ALLERGIES','','','<P>NO</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 15:23:33','mo','2025-11-22 15:24:06'),(6389,0,0,2893,182,3954,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 15:35:07','mo','2025-11-24 12:41:11'),(6390,0,0,2893,182,3954,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 66 YEARS OLD MALE&nbsp; PATIENT PRESENT WITH,<BR />\r\nH/O :&nbsp; ONE EPISODE OF HYPOGLYCEMIA.<BR />\r\nK/C/O: DM, CAD -&nbsp;POST CABG<BR />\r\nC/O: FORGETFULNESS,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONFUSED,&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; IRRELEVEN T TALKING,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; LETHARGY.</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; TODAY EVENING.<BR />\r\nPRIMARY TREATMENT TAKEN AT GENERAL PHYSIAN.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:&nbsp;<BR />\r\nTEMP- 102`F<BR />\r\nPR- 106/MIN<BR />\r\nBP- 160/90 MMHG&nbsp;<BR />\r\nSPO2-96% ON RA&nbsp;</P>\r\n\r\n<P>RR-26/MIN</P>\r\n\r\n<P>RBS - 443 MG/DL.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS, CONFUSED, DISORIENTED, FOLLO VERBAL COMAND, MOVING ALL FOR LIMBES, GCS = E4V4M6, PUPIL - PIN POINT.<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21-11-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>SYMPTOMATIC SUPPORTIVE RX GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22-11-2025,</P>\r\n\r\n<P>MRI BRAIN DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>ICU STAY UNEVENTFULL.</P>\r\n\r\n<P>PATIENT SHIFT TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23-11-2025,</P>\r\n\r\n<P>CATHETER CLAMP AND REMOVED</P>\r\n\r\n<P>RBS MONITORING 4 HRLY ; INJ H.ACTRAPID GIVEN @ RBS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24-11-2025,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 15:35:07','mo','2025-11-24 12:41:11'),(6391,0,0,2893,182,3954,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. OFRAMAX</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. VOMISET</P>\r\n\r\n<P>INJ. FEBRINYL</P>\r\n\r\n<P>INJ. NOOTROPIL</P>\r\n\r\n<P>INJ. NS&nbsp;</P>\r\n\r\n<P>INJ. OPTINEURON</P>\r\n\r\n<P>TAB DEPLAT CV</P>\r\n\r\n<P>TAB REVELOL XL</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>TAB SIDIA</P>\r\n\r\n<P>INJ H.ACTRAPID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 15:35:07','mo','2025-11-24 12:41:11'),(6392,0,0,2899,184,3962,0,0,NULL,'','DISCDIAG','','','<P><STRONG>- LRTI WITH ACUTE CORONARY SYNDROME&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>- SVT&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>- SEVERE IRON DEFICIENCY ANEMIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>- K/C/O: HTN,HYPOTHYROIDISM&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 18:50:18','mo','2025-11-25 12:18:44'),(6393,0,0,2899,184,3962,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY-NO</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY-&nbsp;</STRONG>K/C/O: HTN,HYPOTHYROIDISM&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 18:50:18','mo','2025-11-25 12:18:44'),(6394,0,0,2899,184,3962,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 93 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN,HYPOTHYROPIDISM<BR />\r\nC/O: DIFFICULTY IN BREATHING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FATIGUE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 10 DAYS FOR THAT PT PRIMARY CONSULTED OPD BASED AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>CBC,S.ELECTROLYTE,THYROID FUNCTION TEST,S.FERRITIN (19/11/2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-150/MIN, BP-130/80MMHG, SPO2-89% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22/11/2025&nbsp;</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF LOW HB (7.7) 2 UNIT RCC GIVEN.</P>\r\n\r\n<P>IN VIEW OF BREATHLESSNESS AND TACHYPNEA PATIENT SHIFTED TO ICU.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23/11/2025</P>\r\n\r\n<P>IN VIEW OF LOW S.FERRITIN(5.99) INJ NEC FCM(500 MG) GIVEN UNDER OBSERVATION</P>\r\n\r\n<P>CHEST X RAY DONE</P>\r\n\r\n<P>2D ECHO DONE REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>TROP I SENT WHICH WAS NEGATIVE&nbsp;&nbsp;</P>\r\n\r\n<P>FURTHER ICU STAY UNEVENTFUL SO PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>OFF O2 TRIAL GIVEN PATIENT MAINTAIN WELL ON ROOM AIR SO SHIFT TO WARD IN VITALLY STABLE CONDITION&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24/11/2025</P>\r\n\r\n<P>CHEST X-RAY DONE&nbsp;</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>25/11/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 18:50:18','mo','2025-11-25 12:18:44'),(6395,0,0,2899,184,3962,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3&nbsp;DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 18:50:18','mo','2025-11-25 12:18:44'),(6396,0,0,2899,184,3962,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ PANTODAC</P>\r\n\r\n<P>INJ B29 AQ PFS</P>\r\n\r\n<P>INJ RCC</P>\r\n\r\n<P>TAB TRICIUM HD</P>\r\n\r\n<P>TAB BISOBIS</P>\r\n\r\n<P>TAB UPRISE D3 60K</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ NEC FCM</P>\r\n\r\n<P>INJ NORAD</P>\r\n\r\n<P>SYP RESWAS</P>\r\n\r\n<P>TAB CALAPTIN</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>TAB THYRONORM</P>\r\n\r\n<P>TAB CORDERONE</P>\r\n\r\n<P>TAB ROSULESS A</P>\r\n\r\n<P>TAB DILZEM</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 18:50:18','mo','2025-11-25 12:18:44'),(6397,0,0,2780,178,3764,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ ZOSTUM</P>\r\n\r\n<P>INJ MERO</P>\r\n\r\n<P>TAB LINOX</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>INJ H.ACTRAPID</P>\r\n\r\n<P>INJ LEVERA</P>\r\n\r\n<P>TAB BISOBIS</P>\r\n\r\n<P>TAB AMLODAC</P>\r\n\r\n<P>TAB ECOSPRIN</P>\r\n\r\n<P>TAB CLAVIX</P>\r\n\r\n<P>TAB ALL STAT</P>\r\n\r\n<P>TAB MODALERT</P>\r\n\r\n<P>INJ MVI</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ NS 3%</P>\r\n\r\n<P>CAP FLUDAC</P>\r\n\r\n<P>TAB LINOX</P>\r\n\r\n<P>1 UNIT RCC</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>DULCOLAX SUPP</P>\r\n\r\n<P>PC ENEMA&nbsp;</P>\r\n\r\n<P>INJ KCL&nbsp;</P>\r\n\r\n<P>PROTEIN POWDER</P>\r\n\r\n<P>TAB CLONOTRIL</P>\r\n\r\n<P>TAB TOLVAPTAN</P>\r\n\r\n<P>TAB CORDERON</P>\r\n\r\n<P>TAB STAGLIM M1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 18:56:36','mo','2025-12-01 12:39:10'),(6398,0,0,2780,178,3764,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3&nbsp;DAYS&nbsp;</P>\r\n\r\n<P>FOLLOW UP AFTER 10 DAYS TO DR ROSHAN MISTRY&nbsp;</P>\r\n\r\n<P>PHYSIOTHERAPY&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 18:56:43','mo','2025-12-01 12:39:10'),(6399,0,0,2930,2858,4007,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT SIDE LOWER CHEST PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-22 19:29:13','','0000-00-00 00:00:00'),(6400,0,0,2699,174,3630,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE PYOGENIC MENINGITIS&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 23:52:01','mo','2025-11-24 22:10:02'),(6401,0,0,2699,174,3630,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-22 23:52:01','mo','2025-11-24 22:10:02'),(6402,0,0,2699,174,3630,0,0,NULL,'','HISTHOSPCOURSE','','','<P>HISTORY GIVEN BY PATIENT&#39;S RELATIVE.</P>\r\n\r\n<P>A 28 YEARS OLD FEMALE PATIENT P/W K/C/O SNHL SINCE LAST 6 MONTHS.</P>\r\n\r\n<P>WITH C/O SEVERE HEADACHE;INTERMITTENT FEVER;VOMITING SINCE LAST 3-4 DAYS.GIDDINESS;APHASIA;DISORIENTED SINCE TODAY MORNING.</P>\r\n\r\n<P>SO,PRIMARY TREATMENT TAKEN AT GENERAL PHYSICIAN THEN CAME HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-99.5 F</P>\r\n\r\n<P>PR-64/MIN</P>\r\n\r\n<P>BP-110/70MMHG</P>\r\n\r\n<P>SPO2-99% ON RA</P>\r\n\r\n<P>RR-26/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/DISORIENTED,NOT F/V/C,MOVING ALL 4LIMBS;PUPIL-BERL;E4V1M5</P>\r\n\r\n<P>P/A-SOFT RBS-131 MG/DL</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL HISTORY AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19/11/25,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>MRI BRAIN CONTRAST DONE.S/O CHANGES OF MENINGOENCEPHALITIS.TREATMENT MODIFIED.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20/11/25,</P>\r\n\r\n<P>NEUROPHYSICIAN DR.ROSHAN MISTRI REFERENCE DONE.FOLOOWED ALL HIS ADVICE.</P>\r\n\r\n<P>ANA BY IF SENT.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>LP DONE BY DR.CHAINTANYA WITH ALL ASEPTIC PRECAUTIONS.</P>\r\n\r\n<P>CSF ROUTINE MICRO SENT.CSF ADA S/O 18.11 U/L .MTB S/O NEGATIVE.</P>\r\n\r\n<P>IGRA SENT WHICH IS NEGATIVE.</P>\r\n\r\n<P>GENERAL CONDITION EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21/11/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,FV/C.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22/11/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,FV/C.</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>REVIEW OF DR ROSHAN MISTRY(NEUROPHYSICIAN) DONE AND FOLOWED HIS ALL ADVICE</P>\r\n\r\n<P>CATHETER CLAMP AND REMOVED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23/11/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,FV/C.</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24/11/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,FV/C.</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-22 23:52:01','mo','2025-11-24 22:10:02'),(6403,0,0,2691,172,3621,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-23 12:56:46','mo','2025-11-23 13:01:15'),(6404,0,0,2691,172,3621,0,0,NULL,'','TREATDISC_TI','','','<P>TAB RIFAFIX (550MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB LEVIGRESS (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 7 DAYS</P>\r\n\r\n<P>TAB NEXPROFAST(40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 7 DAYS</P>\r\n\r\n<P>TAB PERINORM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp; 7 DAYS</P>\r\n\r\n<P>TAB ECOSPRIN(150MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 7 DAYS</P>\r\n\r\n<P>TAB LIPITAS(40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 7 DAYS</P>\r\n\r\n<P>TAB CLAVIX(75MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 7 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>REFRESH TEAR&nbsp; EYE DROP&nbsp;&nbsp; &nbsp; 2 DROPS&nbsp; &nbsp; &nbsp; &nbsp; BOTH EYE&nbsp; &nbsp; &nbsp; &nbsp; QDS&nbsp;</P>\r\n\r\n<P>GEFLOTAS - D&nbsp; &nbsp; EYE DROP&nbsp; &nbsp; &nbsp; &nbsp;2 DROPS&nbsp; &nbsp; &nbsp; &nbsp; BOTH EYE&nbsp; &nbsp; &nbsp; &nbsp; QDS&nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>NOTE:</STRONG> USE EYEDROP ALTERNATELY&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-23 12:56:46','mo','2025-11-23 13:01:15'),(6405,0,0,2611,163,3473,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING&nbsp;</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-23 13:12:08','mo','2025-11-23 13:12:36'),(6406,0,0,2933,186,4011,0,0,NULL,'','DISCDIAG','','','<P><STRONG>HAEMORRHAGIC ENTEROCOLITIS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN,DYSLIPIDEMIA&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-23 14:32:16','mo','2025-11-24 12:30:12'),(6407,0,0,2933,186,4011,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY-HYSTERECTOMY (2018)</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY- HTN,DYSLIPIDEMIA&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-23 14:32:16','mo','2025-11-24 12:30:12'),(6408,0,0,2933,186,4011,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 55 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN,DYSLIPIDEMIA&nbsp;<BR />\r\nH/O:HYSTERECTOMY (2018)<BR />\r\nC/O:WATERY DIARRHOEA(8-10 TIME/DAY)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE YESTERDAY SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-75/MIN, BP-122/70MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>TYPHI DOT DONE ON 23/11/2025 WHICH S/O: - VE</P>\r\n\r\n<P>STOOL R/M DONE ON 23/11/2025 WHICH S/O: OCCULT BLOOD ++++,10-12 PUS CELL,5-7 RBC,BACTERIA DETECTED&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-23 14:32:16','mo','2025-11-24 12:30:12'),(6409,0,0,2933,186,4011,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-23 14:32:16','mo','2025-11-24 12:30:12'),(6410,0,0,2933,186,4011,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS</P>\r\n\r\n<P>HOLD OWN MEDICINE TILL FOLLOW UP&nbsp;</P>\r\n\r\n<P>TAKE LIGHT DIET&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-23 14:32:16','mo','2025-11-24 12:30:12'),(6411,0,0,2933,186,4011,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ CEFCON</P>\r\n\r\n<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>INJ BUSCOPAN</P>\r\n\r\n<P>CAP ENUFF</P>\r\n\r\n<P>CAP ECONORM</P>\r\n\r\n<P>INJ VITNEURIN</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-23 14:32:16','mo','2025-11-24 12:30:12'),(6412,0,0,2933,186,4011,0,0,NULL,'','TREATDISC_TI','','','<P>INJ CEFCON 1GM/ 10CC DILUTED&nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp;BD&nbsp; &nbsp; 8AM&nbsp; &nbsp; &nbsp;8PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS 6 INJ</P>\r\n\r\n<P>INJ METROGYL 100ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; TDS&nbsp; 6AM&nbsp; &nbsp;2 PM&nbsp; &nbsp;9PM&nbsp; FOR 3 DAYS 7&nbsp;INJ&nbsp;&nbsp;</P>\r\n\r\n<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; ....... FOR 3 DAYS</P>\r\n\r\n<P>CAP ENUFF (100MG)&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; .........FOR 3 DAYS</P>\r\n\r\n<P>CAP ECONORM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0-1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; ........&nbsp; FOR 3 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-23 14:32:16','mo','2025-11-24 12:30:12'),(6413,0,0,2939,189,4019,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE&nbsp; VIRAL HEPATITIS A&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 00:58:07','mo','2025-11-26 11:54:40'),(6414,0,0,2939,189,4019,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-24 00:58:07','mo','2025-11-26 11:54:40'),(6415,0,0,2939,189,4019,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 20 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD&nbsp;<BR />\r\nC/O: EPIGASTRIC PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA+</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO VOMITTING</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 3-4 DAYS FOR THAT PRIMARY CONSULTED GOKUL HOSPITAL AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>CBC,CRP,SGPT,URINE R/M (20/11/2025)</P>\r\n\r\n<P>USG ABDOMEN + PELVIS (20/11/2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-94/MIN, BP-110/70MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IGM ANTI HAV SENT WHICH IS POSITIVE, IGM ANTI HEV SENT WHICH IS NEGATIVE.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 00:58:07','mo','2025-11-26 11:54:40'),(6416,0,0,2939,189,4019,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 00:58:07','mo','2025-11-26 11:54:40'),(6417,0,0,2939,189,4019,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ NEXPROFAST DRIP</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>TAB URSOCOL</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 00:58:07','mo','2025-11-26 11:54:40'),(6418,0,0,2893,182,3954,0,0,NULL,'','DISCDIAG','','','<P><STRONG>HYPOGLYCEMIC COMA</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM, CAD -&nbsp;POST CABG</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 01:10:14','mo','2025-11-24 12:41:11'),(6419,0,0,2893,182,3954,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>RBS MONITORING</P>\r\n\r\n<P>HOLD OWN DM MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 01:10:14','mo','2025-11-24 12:41:11'),(6420,0,0,2699,174,3630,0,0,NULL,'','CONDONADDMISSION','','','<P>CNS: CONSIOUS BUT DISORINTED&nbsp;</P>\r\n\r\n<P>ALL 4 LIMBS MOVEMENT +VE</P>\r\n\r\n<P>PUPILS : B/L RL</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 10:41:33','mo','2025-11-24 22:10:02'),(6421,0,0,2699,174,3630,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. OFRAMAX&nbsp;</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. VOMISET</P>\r\n\r\n<P>INJ.FEBRINIL</P>\r\n\r\n<P>INJ.LEVIGRESS</P>\r\n\r\n<P>INJ.DEXONA</P>\r\n\r\n<P>INJ.AVIL&nbsp;</P>\r\n\r\n<P>INJ.MANNITOL</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 10:43:07','mo','2025-11-24 22:10:02'),(6422,0,0,2463,2407,4030,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 10:43:07','','0000-00-00 00:00:00'),(6423,0,0,2463,2407,4030,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 10:44:11','','0000-00-00 00:00:00'),(6425,0,0,2463,2407,4030,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-24 10:44:42','','0000-00-00 00:00:00'),(6426,0,0,2949,2871,4032,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 10:46:40','','0000-00-00 00:00:00'),(6427,0,0,2951,2876,4041,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--2 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 10:57:15','','0000-00-00 00:00:00'),(6428,0,0,2951,2876,4041,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotoatyr feeling when pt is getting out of bed and lying donw in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 10:58:00','','0000-00-00 00:00:00'),(6429,0,0,2951,2876,4041,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>&thinsp;pta---wnl</p>\n\n<p>stabilometry----reduced vestibular score</p>\n\n<p>vng--left hz canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 10:58:27','darshan','2025-11-24 11:59:21'),(6431,0,0,2447,2390,4040,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 11:01:09','','0000-00-00 00:00:00'),(6432,0,0,2447,2390,4040,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 11:01:44','','0000-00-00 00:00:00'),(6435,0,0,2447,2390,4040,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-24 11:02:46','','0000-00-00 00:00:00'),(6436,0,0,1541,1500,4031,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----occassional giddiness&thinsp;</p>\n\n<p>tingling and numbness in headach</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 11:05:53','','0000-00-00 00:00:00'),(6437,0,0,2955,2880,4046,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--mild positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 11:11:06','','0000-00-00 00:00:00'),(6438,0,0,2955,2880,4046,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 11:11:08','','0000-00-00 00:00:00'),(6440,0,0,2955,2880,4046,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-24 11:12:28','','0000-00-00 00:00:00'),(6441,0,0,1896,1850,4033,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 11:16:22','','0000-00-00 00:00:00'),(6442,0,0,2455,2399,4051,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--paritally better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 11:22:45','','0000-00-00 00:00:00'),(6443,0,0,2958,2882,4052,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 11:32:37','darshan','2025-11-24 11:40:04'),(6444,0,0,2958,2882,4052,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 11:39:21','','0000-00-00 00:00:00'),(6445,0,0,2958,2882,4052,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--bilateral high freq severe sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 11:40:15','darshan','2025-11-24 13:05:23'),(6447,0,0,2547,2489,4053,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 11:44:16','','0000-00-00 00:00:00'),(6448,0,0,2547,2489,4053,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 11:44:51','','0000-00-00 00:00:00'),(6450,0,0,2547,2489,4053,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-24 11:45:27','','0000-00-00 00:00:00'),(6451,0,0,2952,2877,4042,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 11:52:58','','0000-00-00 00:00:00'),(6452,0,0,2952,2877,4042,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt was in any posture he feels sesne of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no assocaited other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 11:53:46','','0000-00-00 00:00:00'),(6453,0,0,2952,2877,4042,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hti--nad</p>\n\n<p>MRI brain with angio-nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilomoetyry--reduced vestibular score</p>\n\n<p>vng---right acute partial vestibular deficit</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 11:54:03','darshan','2025-11-24 13:19:33'),(6455,0,0,2951,2876,4041,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 12:02:53','','0000-00-00 00:00:00'),(6457,0,0,2976,2899,4077,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ROTATOR CUFF INJURY?','','',0,'0000-00-00 00:00:00','drsagar','2025-11-24 12:04:53','','0000-00-00 00:00:00'),(6458,0,0,163,151,4038,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 12:18:02','','0000-00-00 00:00:00'),(6459,0,0,2969,2892,4068,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 12:21:20','','0000-00-00 00:00:00'),(6460,0,0,1227,1188,4081,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 12:25:17','','0000-00-00 00:00:00'),(6462,0,0,2951,2876,4041,0,0,NULL,'','MADVICE','ZZZ','Remark','BBQ ROLL ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-24 12:28:07','','0000-00-00 00:00:00'),(6463,0,0,2953,2878,4043,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo--sudden onset of roatoyr feeling any tiem and remains for few mins&thinsp;</p>\n\n<p>nauase +</p>\n\n<p>no associated other cns symtpsmo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 12:37:41','darshan','2025-11-24 12:40:33'),(6464,0,0,2953,2878,4043,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 12:39:41','','0000-00-00 00:00:00'),(6465,0,0,2953,2878,4043,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE INTERMITTENTLY||','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 12:39:55','','0000-00-00 00:00:00'),(6466,0,0,2953,2878,4043,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dx hallpke---nad</p>\n\n<p>hit---nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--wnl</p>\n\n<p>vng---central variety of nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 12:40:46','darshan','2025-11-24 13:52:02'),(6468,0,0,2893,182,3954,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 12:41:11','','0000-00-00 00:00:00'),(6469,0,0,2893,182,3954,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE 250&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; AFTERN FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB NEXPROFAST&nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp;FOR&nbsp; 5 DAYS</P>\r\n\r\n<P>TAB SIDIA 100&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp;BEFORE LUNCH&nbsp; FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>TAB DEPLAT-CV 20</P>\r\n\r\n<P>TAB REVELOL XL 25</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 12:41:11','','0000-00-00 00:00:00'),(6470,0,0,2762,2693,4045,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 12:43:08','','0000-00-00 00:00:00'),(6471,0,0,2738,2669,4048,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 12:46:09','','0000-00-00 00:00:00'),(6472,0,0,2982,2905,4086,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence vertigo and headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 12:50:54','darshan','2025-11-24 17:30:08'),(6474,0,0,2978,2901,4082,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--3-4 MONTHS 3 EPISODES ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 12:57:02','','0000-00-00 00:00:00'),(6475,0,0,2978,2901,4082,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and change position</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 12:57:37','','0000-00-00 00:00:00'),(6476,0,0,2978,2901,4082,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilomtry----wnl</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 12:57:47','darshan','2025-11-24 14:01:47'),(6478,0,0,2958,2882,4052,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 13:05:35','','0000-00-00 00:00:00'),(6480,0,0,2983,2906,4088,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 13:07:28','','0000-00-00 00:00:00'),(6481,0,0,2977,2900,4080,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 13:10:47','','0000-00-00 00:00:00'),(6482,0,0,2964,2887,4060,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 13:16:09','','0000-00-00 00:00:00'),(6483,0,0,2964,2887,4060,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset any time and remains for few mins to hrs&thinsp;</p>\n\n<p>associated with nausea and vomiting&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 13:16:13','darshan','2025-11-24 14:08:42'),(6484,0,0,2964,2887,4060,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 13:16:16','','0000-00-00 00:00:00'),(6486,0,0,2958,2882,4052,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-24 13:22:06','','0000-00-00 00:00:00'),(6487,0,0,2986,2908,4093,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 13:37:08','','0000-00-00 00:00:00'),(6488,0,0,2986,2908,4093,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 13:38:08','','0000-00-00 00:00:00'),(6489,0,0,2986,2908,4093,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>MRI brain---nad</p>\n\n<p>pta--right moderate sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 13:38:20','darshan','2025-11-24 14:26:11'),(6490,0,0,2986,2908,4093,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 13:38:29','','0000-00-00 00:00:00'),(6491,0,0,2950,2873,4035,0,0,NULL,'','DIAG','ZZZ','Remark','CHARCOIT FOOT WITH DM  WITH HT','','',0,'0000-00-00 00:00:00','drarchit','2025-11-24 13:39:35','','0000-00-00 00:00:00'),(6492,0,0,1233,1194,4071,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 13:42:02','','0000-00-00 00:00:00'),(6493,0,0,2979,2902,4083,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-11-24 13:44:15','','0000-00-00 00:00:00'),(6494,0,0,2972,2895,4072,0,0,NULL,'','HIST','ZZZ','Remark','<p>k/c/o--rigth endolymphatic hydrops</p>\n\n<p>drug defaulter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 13:48:34','','0000-00-00 00:00:00'),(6495,0,0,2972,2895,4072,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---right severe to very severe sn deafness</p>\n\n<p>vemp---reduced amplitude</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 13:48:46','darshan','2025-11-24 14:38:01'),(6496,0,0,2972,2895,4072,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 13:48:49','','0000-00-00 00:00:00'),(6497,0,0,2953,2878,4043,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 13:52:36','','0000-00-00 00:00:00'),(6499,0,0,2981,2904,4085,0,0,NULL,'','HIST','ZZZ','Remark','<p>vertigo---1 week</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 14:05:41','','0000-00-00 00:00:00'),(6500,0,0,2981,2904,4085,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 14:05:58','','0000-00-00 00:00:00'),(6501,0,0,2981,2904,4085,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 14:06:29','','0000-00-00 00:00:00'),(6503,0,0,2981,2904,4085,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAVNEUR\nSOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-24 14:06:52','','0000-00-00 00:00:00'),(6504,0,0,2964,2887,4060,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta--right moderate to severe sn deafness</p>\n\n<p>stabilomtry---wnl</p>\n\n<p>vng--right labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 14:09:29','','0000-00-00 00:00:00'),(6506,0,0,2953,2878,4043,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-24 14:14:48','','0000-00-00 00:00:00'),(6507,0,0,2986,2908,4093,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 14:26:34','','0000-00-00 00:00:00'),(6509,0,0,968,937,4099,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----recurence of vertigo</p>\n\n<p>neck pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 14:33:26','','0000-00-00 00:00:00'),(6513,0,0,968,937,4099,0,0,NULL,'','MADVICE','ZZZ','Remark','PSYCHIATRIST OPINION ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-24 14:36:57','','0000-00-00 00:00:00'),(6515,0,0,2986,2908,4093,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-24 14:39:26','','0000-00-00 00:00:00'),(6516,0,0,873,842,4091,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--no imrpmventment&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 14:44:27','','0000-00-00 00:00:00'),(6518,0,0,873,842,4091,0,0,NULL,'','MADVICE','ZZZ','Remark','PSYCHIATRIST OPINON ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-24 14:46:27','','0000-00-00 00:00:00'),(6519,0,0,2991,2914,4101,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 14:51:36','','0000-00-00 00:00:00'),(6520,0,0,2991,2914,4101,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE --MANY YRS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 14:51:36','','0000-00-00 00:00:00'),(6522,0,0,2985,193,4092,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE BRONCHITIS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HYPOTHYROIDISM</STRONG></P>\r\n\r\n<P><STRONG>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;HTN, CKD(B/L SMALL KIDNEY),(NOT ON RX)&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 16:25:49','mo','2025-11-25 14:14:55'),(6523,0,0,2985,193,4092,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY:&nbsp;</STRONG>LIPOMA EXCISION BEFORE 15 YEARS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 16:25:49','mo','2025-11-25 14:14:55'),(6524,0,0,2985,193,4092,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 72 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, CKD(B/L SMALL KIDNEY), HYPOTHYROIDISM<BR />\r\nC/O: FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; COUGHING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DOE WHILE WALKING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; B/L FLANK PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 3-4 DAYS FOR THAT PT PRIMARY CONSULTED TO GP AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>CHEST X-RAY (22-11-2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-74/MIN, BP-140/84MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IGE SENT ON 25/11/2025 WHICH S/O; NEGATIVE&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 16:25:49','mo','2025-11-25 14:14:55'),(6525,0,0,2985,193,4092,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 16:25:49','mo','2025-11-25 14:14:55'),(6526,0,0,2985,193,4092,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ ZOSTUM</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n\r\n<P>CAP FLUVIR</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ IVEPRED</P>\r\n\r\n<P>TAB DX</P>\r\n\r\n<P>TAB THYRONORM</P>\r\n\r\n<P>SYP KOLTUS C</P>\r\n\r\n<P>NEB DUOLIN / BUDECORT</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>TAB NAPROXEN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 16:25:49','mo','2025-11-25 14:14:55'),(6527,0,0,2956,191,4047,0,0,NULL,'','DISCDIAG','','','<P><STRONG>GASTRIC VALVULUS + ILEOSTOMY</STRONG></P>\r\n\r\n<P><STRONG>O/C/O: CA COLON</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 16:39:28','mo','2025-12-01 10:28:59'),(6528,0,0,2956,191,4047,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-24 16:39:28','mo','2025-12-01 10:28:59'),(6529,0,0,2956,191,4047,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 70 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: CA COLON<BR />\r\nH/O: LAPAROTOMY + SUTURING OF PERFORATION + LEFT HEMICOLONECTOMY + COLOCOLIC ANASTOMOSIS + ILEOSTOMY + DRAINAGE BY DR KAUSHIK KOTAK &AMP; DR CHIRAG AGARWAL ON 29/09/2025 AT STERLING HOSPITAL&nbsp;</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR COLOSTOMY CLOSURE &AMP; FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>PRE-OP PROFILE (29/09/2025)</P>\r\n\r\n<P>CT ABDOMEN + PELVIS (19/11/2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-118/MIN, BP-100/70MMHG, SPO2-91% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24/11/2025</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ECG DONE&nbsp;</P>\r\n\r\n<P>CT DISTAL LOOPOGRAM (RECTAL COTRAST) DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>25/11/2025</P>\r\n\r\n<P>PHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26/11/2025</P>\r\n\r\n<P>IN VIEW OF HYPONATREMIA INJ NS 3% GIVEN</P>\r\n\r\n<P>FOLEY&#39;S DONE WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>LAPAROSCOPIC GASTROPEXY + ILEOSTOMY CLOSURE DONE BY DR PRATAPSINH DODIYA UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27/11/2025</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>SIPS ORALLY STARTED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28/11/2025</P>\r\n\r\n<P>FOLEY&#39;S CLAMP AND REMOVED</P>\r\n\r\n<P>ORALLY LIQUID STARTED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>29/11/2025</P>\r\n\r\n<P>CT SAME TREATMENT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>30/11/2025</P>\r\n\r\n<P>SOFT DIET ALLOWED</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>01/12/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 16:39:28','mo','2025-12-01 10:28:59'),(6530,0,0,2956,191,4047,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 16:39:28','mo','2025-12-01 10:28:59'),(6531,0,0,2956,191,4047,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 16:39:28','mo','2025-12-01 10:28:59'),(6532,0,0,2956,191,4047,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METRO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>TAB SPOROLAC</P>\r\n\r\n<P>TAB RIFAGUT</P>\r\n\r\n<P>DULCOLAX SUP</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>TAB METRO ER</P>\r\n\r\n<P>TAB ZERODOL P</P>\r\n\r\n<P>TAB ULPAN DSR</P>\r\n\r\n<P>TAB CEFTUM</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 16:39:28','mo','2025-12-01 10:28:59'),(6533,0,0,2940,190,4020,0,0,NULL,'','DISCDIAG','','','<P><STRONG>POSTERIOR ANAL FISSURE</STRONG></P>\r\n\r\n<P><STRONG>SKIN TAG</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 16:58:41','mo','2025-11-25 11:46:38'),(6534,0,0,2940,190,4020,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-24 16:58:41','mo','2025-11-25 11:46:38'),(6535,0,0,2940,190,4020,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 37 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O: PAIN IN ANUS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO BLEEDING PR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION</P>\r\n\r\n<P>O/E: POSTERIOR ANAL FISSURE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SKIN TAG</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 3 YR FOR THAT PT PRIMARY CONSULTED OPD BASED AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>MRI FISTULOGRAM (30/10/2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-84/MIN, BP-140/84MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nB/L LATERAL INTERNAL SPHINCTERECTOMY + SKIN TAG EXCISION DONE BY DR PRATAPSINH DODIYA ON 24/11/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 16:58:41','mo','2025-11-25 11:46:38'),(6536,0,0,2940,190,4020,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>B/L LATERAL INTERNAL SPHINCTERECTOMY + SKIN TAG EXCISION DONE BY DR PRATAPSINH DODIYA ON 24/11/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 16:58:41','mo','2025-11-25 11:46:38'),(6537,0,0,2940,190,4020,0,0,NULL,'','OTNOTE','','','<p>-POSTERIOR ANAL FISSURE PRESENT</p>\r\n\r\n<p>-TIGHTINTERNAL SPHINCTER PRESENT</p>\r\n\r\n<p>-SKIN TAG AT 6 O&#39;CLOCK POSITION</p>\r\n\r\n<p>-B/L LATERAL INTERNAL SPHINCTERECTOMY DONE AT 3 &amp; 9 O&#39;CLOCK POSITION</p>\r\n\r\n<p>-SKIN TAG EXCISION DONE</p>\r\n\r\n<p>-HEMOSTASIS ACHIEVED</p>\r\n\r\n<p>-DRESSING KEPT</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 16:58:41','mo','2025-11-25 11:46:38'),(6538,0,0,2940,190,4020,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>HOT SITZ BATH</P>\r\n\r\n<P>DAILY DRESSING&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 16:58:41','mo','2025-11-25 11:46:38'),(6539,0,0,2940,190,4020,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>SYP CREMAFFIN PLUS</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 16:58:41','mo','2025-11-25 11:46:38'),(6540,0,0,1208,1169,4104,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better than previous</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 17:02:34','','0000-00-00 00:00:00'),(6542,0,0,1208,1169,4104,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN 8TH NERVE PROTOCOL ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-24 17:05:24','','0000-00-00 00:00:00'),(6543,0,0,1320,1281,4105,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---mild sense&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 17:20:14','','0000-00-00 00:00:00'),(6545,0,0,1320,1281,4105,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-24 17:21:32','','0000-00-00 00:00:00'),(6546,0,0,2374,2317,4108,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n\n<p>Right ear SOM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 17:23:33','','0000-00-00 00:00:00'),(6547,0,0,2982,2905,4086,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent&thinsp;</p>\n\n<p>dix halpike-nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brian --nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 17:30:22','darshan','2025-11-24 17:31:01'),(6548,0,0,2994,2917,4107,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 17:38:05','','0000-00-00 00:00:00'),(6549,0,0,2994,2917,4107,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 17:40:46','','0000-00-00 00:00:00'),(6551,0,0,2994,2917,4107,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain with angiography---nad</p>\n\n<p>Neurologist opinion taken</p>\n\n<p>pta---bilaterl high freq severe sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>CCG----ap displacemnt out of range</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 17:41:02','darshan','2025-11-24 18:31:03'),(6553,0,0,2995,2918,4109,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3 DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 17:52:47','','0000-00-00 00:00:00'),(6554,0,0,2995,2918,4109,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling on change of posture</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 17:55:32','','0000-00-00 00:00:00'),(6555,0,0,2995,2918,4109,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilateral high freq severe sn deafness</p>\n\n<p>stabilometry--reduced ss score</p>\n\n<p>vng--bilateral&thinsp;&thinsp;vestibulopathy with bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 17:55:53','darshan','2025-11-24 18:55:34'),(6556,0,0,2995,2918,4109,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 17:56:15','','0000-00-00 00:00:00'),(6557,0,0,2995,2918,4109,0,0,NULL,'','DIAG','ZZZ','Remark','VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 17:56:32','','0000-00-00 00:00:00'),(6558,0,0,829,798,4115,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 17:59:21','','0000-00-00 00:00:00'),(6559,0,0,1060,1026,4116,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 18:07:59','','0000-00-00 00:00:00'),(6560,0,0,2999,2922,4122,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----thraot pain with burning sensation</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 18:25:10','','0000-00-00 00:00:00'),(6561,0,0,2959,192,4054,0,0,NULL,'','DISCDIAG','','','<P><STRONG>B/L INGUINAL HERNIA&nbsp; (LT &GT; RT)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 18:30:16','mo','2025-11-26 12:56:22'),(6562,0,0,2959,192,4054,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 18:30:16','mo','2025-11-26 12:56:22'),(6563,0,0,2959,192,4054,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 54 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: BPH (?)<BR />\r\nC/O: ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO NAUSEA/ VOMITTING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO FEVER</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; OCASSIONALLY CONSTIPATION</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 3 MONTHS FOR THAT PT PRIMARY CONSULTED WOCKHARDT HOSPITAL AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN+PELVIS (24/09/2025)</P>\r\n\r\n<P>PRE-OP PROFILE (24/09/2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-80/MIN, BP-110/70MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nLAPAROSCOPIC B/L INGUINAL HERNIOPLASTY(TAPP) DONE BY DR PRATAPSINH DODIYA ON 24/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 18:30:16','mo','2025-11-26 12:56:22'),(6564,0,0,3001,2924,4126,0,0,NULL,'','DIAG','ZZZ','Remark','BOTH HEEL PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-24 18:41:54','','0000-00-00 00:00:00'),(6565,0,0,3001,2924,4126,0,0,NULL,'','DIAG','ZZZ','Remark','NECK PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-24 18:41:58','','0000-00-00 00:00:00'),(6566,0,0,3001,2924,4126,0,0,NULL,'','DIAG','ZZZ','Remark','BOTH SHOULDER PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-24 18:42:05','','0000-00-00 00:00:00'),(6567,0,0,3002,2925,4127,0,0,NULL,'','CC','ZZZ','Remark','RECURRENT NASAL IRRITATION WITH BLOCKAGE ---5 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 18:43:07','','0000-00-00 00:00:00'),(6568,0,0,3002,2925,4127,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ---MANY YRS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 18:43:07','','0000-00-00 00:00:00'),(6569,0,0,3002,2925,4127,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of giddiness and remains for few hrs&thinsp;</p>\n\n<p>frequent headache with nasal congestion</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 18:43:36','','0000-00-00 00:00:00'),(6570,0,0,3002,2925,4127,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 18:43:52','darshan','2025-11-24 19:24:11'),(6573,0,0,2938,188,4018,0,0,NULL,'','DISCDIAG','','','<P><STRONG>SYNCOPE VS SEIZURE.</STRONG></P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 18:48:50','mo','2025-11-24 19:10:59'),(6574,0,0,2938,188,4018,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>K/C/O: CHRONIC CONSTIPATION, RECTAL FECALOMA WITH MEGCOLON.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 18:48:50','mo','2025-11-24 19:10:59'),(6575,0,0,2938,188,4018,0,0,NULL,'','HISTHOSPCOURSE','','','<P>&nbsp;</P>\r\n\r\n<P>A 22 YEARS OLD MALE&nbsp; PATIENT PRESENT WITH,<BR />\r\nH/O :&nbsp; SUDDENLY UNCONSIOUS, NOT RESPONSIVNESS (DURATION 10-20 SEC), NAUSEA TODAY EVENING AT 6.00 PM.<BR />\r\nK/C/O: CHRONIC CONSTIPATION, RECTAL FECALOMA WITH MEGCOLON.<BR />\r\nNO H/O TOUNGE BITE, VOMINTING.</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; TODAY EVENING 6.00 PM.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 98.0`F<BR />\r\nPR- 90/MIN<BR />\r\nBP- 110/70 MMHG&nbsp;<BR />\r\nSPO2-98% ON RA&nbsp;<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>RBS - 90MG/DL.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23-11-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ANTICONVULSION GIVEN.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>SYMPTOMATIC AND SUPPORTIVE RX GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>MRI BRAIN DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>REFERENCE DONE DR. DR.ROSHAN MISTRY (NEUROPHYSIAN) ADVICE FOLLOWED.</P>\r\n\r\n<P>EEG DONE.</P>\r\n\r\n<P>REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN ICU.<BR />\r\nPATIENT RESPONDS WELL WITH ONGOING TREATMENT.</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 18:48:50','mo','2025-11-24 19:10:59'),(6576,0,0,3003,2926,4128,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ELBOW PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-24 18:50:21','','0000-00-00 00:00:00'),(6578,0,0,2995,2918,4109,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 18:56:11','','0000-00-00 00:00:00'),(6580,0,0,2995,2918,4109,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-24 19:02:56','','0000-00-00 00:00:00'),(6581,0,0,2938,188,4018,0,0,NULL,'','CONDONADDMISSION','','','<P>ON DISCHARGE TIME PATIENT IS CONSIOUS, ORIENTED.&nbsp;</P>\r\n\r\n<P>TAKING ORALLY WELL.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 19:04:18','mo','2025-11-24 19:10:59'),(6582,0,0,2938,188,4018,0,0,NULL,'','DISCCOND','','','<P>SATBLE.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 19:04:18','mo','2025-11-24 19:10:59'),(6583,0,0,2938,188,4018,0,0,NULL,'','ADVICE','','','<P>2 D ECHO</P>\r\n\r\n<P>HOLTER 48 HRS.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 19:04:18','mo','2025-11-24 19:10:59'),(6584,0,0,2938,188,4018,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. LEVIPIL</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ. NS</P>\r\n\r\n<P>INJ. ELDERVIT</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 19:04:18','mo','2025-11-24 19:10:59'),(6585,0,0,2396,2340,4139,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 19:07:14','','0000-00-00 00:00:00'),(6586,0,0,2938,188,4018,0,0,NULL,'','TREATDISC_TI','','','<P>TAB. CLOBA 5 MG 0-0-1 15 DAYS.</P>\r\n\r\n<P>TAB. KALRO XT 1-0-0 15 DAYS.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 19:07:52','mo','2025-11-24 19:10:59'),(6588,0,0,2396,2340,4139,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-24 19:08:12','','0000-00-00 00:00:00'),(6589,0,0,3008,2931,4141,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 19:16:51','','0000-00-00 00:00:00'),(6590,0,0,3008,2931,4141,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of&thinsp; short duration positional giddiness&thinsp; without any c ns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 19:17:46','','0000-00-00 00:00:00'),(6591,0,0,3008,2931,4141,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--right faint torsonal geotrpic nystmgus&thinsp;</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 19:18:22','','0000-00-00 00:00:00'),(6592,0,0,3008,2931,4141,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 19:18:35','','0000-00-00 00:00:00'),(6594,0,0,3008,2931,4141,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-24 19:21:03','','0000-00-00 00:00:00'),(6595,0,0,3009,2932,4142,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN---2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 19:35:34','','0000-00-00 00:00:00'),(6596,0,0,3009,2932,4142,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Left AOM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-24 19:35:40','','0000-00-00 00:00:00'),(6597,0,0,2932,185,4010,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LRTI WITH ACUTE LVF&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM,HTN,IHD,(?)OLD CVA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 21:18:16','mo','2025-11-24 21:20:47'),(6598,0,0,2932,185,4010,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY- HYSTERECTOMY ,CATARACT&nbsp;</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY-</STRONG> <STRONG>DM,HTN,IHD,(?)OLD CVA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 21:18:16','mo','2025-11-24 21:20:47'),(6599,0,0,2932,185,4010,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 79 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM,HTN,IHD,(?)OLD CVA<BR />\r\nC/O:DOE,DRY COUGHING,GENERALISED WEAKNESS SINCE 3-4 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;INCREASED BREATHLESNESS , ORTHOPNOEA,PERSPIRATION SINCE LAST 2 DAYS&nbsp;</P>\r\n\r\n<P>SO PRIMARY TREATMENT TAKEN AT JALARAM HOSPITAL RAJKOT AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-62/MIN, BP-150/100MMHG, SPO2-99 % WITH NRBM&nbsp;RR-32/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU&nbsp;&nbsp;AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>2311/2025</P>\r\n\r\n<P>PARIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF TACHYPNOEA AND HYPOXIA 02 SUPPORT START &nbsp;</P>\r\n\r\n<P>URINE R/M DONE WHICH S/IO: NAD</P>\r\n\r\n<P>NT PRO BNP DONE WHICH S/O: 1374 PG/ML</P>\r\n\r\n<P>TROP I SENT WHICH WAS NEGATIVE</P>\r\n\r\n<P>USG ABDOMEN WITH PELVIS DONE REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>2D ECHO SCREENING DONE BY DR VARSHIT HATHI(CARDIOLOGIST)&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24/11/2025</P>\r\n\r\n<P>OFF O2 TRIAL GIVEN PATIENT MAINTAIN WELL SO PATIENT SHIFT TO WARD&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 21:18:16','mo','2025-11-24 21:20:47'),(6600,0,0,2932,185,4010,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>CONTINUE OWN MEDICINE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 21:18:16','mo','2025-11-24 21:20:47'),(6601,0,0,2932,185,4010,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ ZOSTUM</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ DERIPHYLLIN</P>\r\n\r\n<P>INJ H ACTRAPID</P>\r\n\r\n<P>TAB BISOWIN T</P>\r\n\r\n<P>CAP ROSULESS A</P>\r\n\r\n<P>TAB CREMALAX</P>\r\n\r\n<P>NEB DUOLIN BUDECORT</P>\r\n\r\n<P>DULCOLAX SUPP</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 21:18:16','mo','2025-11-24 21:20:47'),(6602,0,0,2932,185,4010,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE (250MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........FOR 5 DAYS</P>\r\n\r\n<P>TAB CLARIBID(500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........FOR 5 DAYS</P>\r\n\r\n<P>TAB NEXPROFAST(40MG)&nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;........FOR 5 DAYS</P>\r\n\r\n<P>TAB ZOFER MD(4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; ........FOR 5 DAYS</P>\r\n\r\n<P>TAB DERIPHYLLIN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........FOR 5 DAYS</P>\r\n\r\n<P>TAB TROKID PLUS(10/50)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; ........FOR 5 DAYS</P>\r\n\r\n<P>TAB CREMALAX(10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:</P>\r\n\r\n<P>TAB BISOWIN T&nbsp; (40/5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp;</P>\r\n\r\n<P>CAP ROSULESS A (75/10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0</P>\r\n\r\n<P>TAB METRIDE 2&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 21:18:16','mo','2025-11-24 21:20:47'),(6603,0,0,2699,174,3630,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>CONSCIOUS, ORIENTED</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 22:07:25','mo','2025-11-24 22:10:02'),(6604,0,0,2699,174,3630,0,0,NULL,'','ADVICE','','','<P>FOLLOW UOP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 22:07:25','mo','2025-11-24 22:10:02'),(6605,0,0,2699,174,3630,0,0,NULL,'','TREATDISC_TI','','','<P>INJ OFRAMAX(2 GM/NS 100)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 9AM----9PM&nbsp; &nbsp; &nbsp; &nbsp; FOR 4 DAYS (8 INJ)</P>\r\n\r\n<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ZOFER MD (4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB APTIPRED (8 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB LEVIGRESS (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ATIVAN (1 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB CREMALAX (10 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS&nbsp; &nbsp; &nbsp; FOR CONSTIPATION</P>\r\n\r\n<P>SYP GLYCEROL (30 ML WITH WATER)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-24 22:07:25','mo','2025-11-24 22:10:02'),(6606,0,0,2959,192,4054,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FREH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 01:15:25','mo','2025-11-26 12:56:22'),(6607,0,0,2959,192,4054,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>AVOID HEAVY WORK FOR 6&nbsp; WEEKS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 01:15:25','mo','2025-11-26 12:56:22'),(6608,0,0,2959,192,4054,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR A</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 01:15:25','mo','2025-11-26 12:56:22'),(6609,0,0,2940,190,4020,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 01:24:51','mo','2025-11-25 11:46:38'),(6610,0,0,2940,190,4020,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZENFLOX OZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........ FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;....... FOR 5 DAYS</P>\r\n\r\n<P>SYP CREMAFFIN PLUS (10 ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........ FOR 5 DAYS</P>\r\n\r\n<P>LOX JELLY 2%&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE DEFECATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......(1)</P>\r\n\r\n<P>ANO METRO CREAM&nbsp; &nbsp; &nbsp; &nbsp;L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER DEFECATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........(1)</P>\r\n\r\n<P>SAVLON LIQUID&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR HOT SITZ BATH&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 01:24:51','mo','2025-11-25 11:46:38'),(6611,0,0,2612,194,4125,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE HYPERTENSIVE HEART FAILURE</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM, HTN, OLD CVA, ACUTE LVF.</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 09:13:32','mo','2025-11-27 13:06:01'),(6612,0,0,2612,194,4125,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-25 09:13:32','mo','2025-11-27 13:06:01'),(6613,0,0,2612,194,4125,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 70 YEARS OLD MALE&nbsp; PATIENT PRESENT WITH,<BR />\r\nH/O : BREATHLESSNESS (MILD) WITH UNEZENESS SINCE TODAY&nbsp;MORNING .</P>\r\n\r\n<P>PATIENT WAS ADMITED GENESIS HOSPITAL FORM 16-11-2025 TO 20-11-2025,&nbsp;&nbsp;FOR ACUTE LVF WITH SEVERE ANEMIA WITH ACD WITH HTN , DM TYPE -II, WITH OLD CVA IN OPERATED CASE OF L3-4, L5S1 (TLIR ON 8/11/2025)</P>\r\n\r\n<P>K/C/O: DM, HTN, OLD CVA, ACUTE LVF.<BR />\r\nC/O: SEVERE BREATHLESNESS&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;RESTLESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SEVERE PRESPIRATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;COLD EXTRMINTY, HYPERTENSION B.P - 220/120 MM OF HG</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SPO2 LEVEL 80- 85 % AT ROOM AIR.</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; TODAY AT 6.00 PM.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP -&nbsp; COLD EXTRIMITY.<BR />\r\nPR- 80/MIN<BR />\r\nBP- 220/120 MMHG&nbsp;<BR />\r\nSPO2- 80% ON RA&nbsp;<BR />\r\nRR- 30/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+, SPASAM<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24-11-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>FOLEYS CATHETER DONE WITH ALL ASEPTIC PRECAUTION&nbsp;</P>\r\n\r\n<P>IN VIEW DISETURATION O2 SUPPORT GIVEN 2 LIT VIA MASK.</P>\r\n\r\n<P>IN VIEW OF HTN INJ.NTG START BY INFUSION.</P>\r\n\r\n<P>NEBULIZATION DONE.</P>\r\n\r\n<P>INJ. DYTRO START BY INFUSION PUMP.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>25-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>INJ DYTOR INFUSION CONTINUE&nbsp;</P>\r\n\r\n<P>ICU STAY UNEVENTFULL. SO SHIFT TO WARD&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26-11-2025</P>\r\n\r\n<P>CORONARY ANGIOGRAPHY DONE BY DR RAVI BHOJANI(CARDIOLOGIST) AT STERLING HOSPITAL&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27-11-2025</P>\r\n\r\n<P>INJ DYTOR INFUSION STOP</P>\r\n\r\n<P>FOLEY&#39;S CLAMP AND REMOVE&nbsp;</P>\r\n\r\n<P>PATIENT GENERAL CONDITION OBSERVED IN WARD</P>\r\n\r\n<P>PATIENT RESPOND WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT HAVING NO ANY FRESH COMPLAIN SO NOW PATIENT BEING DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 09:13:32','mo','2025-11-27 13:06:01'),(6614,0,0,2612,194,4125,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO DIFFICULTY IN BREATHING</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 09:13:32','mo','2025-11-27 13:06:01'),(6615,0,0,2612,194,4125,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 09:13:32','mo','2025-11-27 13:06:01'),(6616,0,0,2612,194,4125,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. ONEDM</P>\r\n\r\n<P>INJ. DYTOR DRIP</P>\r\n\r\n<P>INJ. NTG INFUSION</P>\r\n\r\n<P>NEB. DUOLIN : BUDACORT.</P>\r\n\r\n<P>TAB ARKAMIN</P>\r\n\r\n<P>TAB CORTEL</P>\r\n\r\n<P>TAB BISWIN T</P>\r\n\r\n<P>TAB ECOSPRIN AV</P>\r\n\r\n<P>TAB BREVIPILL</P>\r\n\r\n<P>TAB DERIPHYLLIN R</P>\r\n\r\n<P>TAB NICORAN</P>\r\n\r\n<P>TAB METRIDE</P>\r\n\r\n<P>TAB TENERITE H</P>\r\n\r\n<P>TAB ETOLOK</P>\r\n\r\n<P>TAB ZEPTAS</P>\r\n\r\n<P>INJ H ACTRAPID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 09:13:32','mo','2025-11-27 13:06:01'),(6617,0,0,2897,183,3959,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P>K/C/O:HTN +&nbsp;DM TYPE - II SINCE 1 YEARS</P>\r\n\r\n<P>MYOCARDIAL INFRACTION 7 YEARS AGO (ONLY MEDICINE STARTED, NOT DONE CAG).<BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 09:19:39','mo','2025-11-27 14:21:32'),(6618,0,0,2897,183,3959,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>22-11-2025<BR />\r\nRIGHT IJV DLC DONE BY DR. DENISH SAVALIYA&nbsp;(NEPHROLOGSIT).</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 09:19:39','mo','2025-11-27 14:21:32'),(6619,0,0,2897,183,3959,0,0,NULL,'','DISCDIAG','','','<P>ACUTE LVF WITH CARDIOGENIC SHOCK +</P>\r\n\r\n<P>ACUTE TUBULAR NECROSIS&nbsp;&nbsp;+</P>\r\n\r\n<P>SEVERE LV DYSFUNCTION ( ? TVD)</P>\r\n\r\n<P>K/C/O: DM + HTN + OLD MI (2018)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 09:26:00','mo','2025-11-27 14:21:32'),(6620,0,0,2897,183,3959,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 75 YEARS OLD MALE&nbsp; PATIENT PRESENT WITH,<BR />\r\nK/C/O: DM TYPE - II SINCE 1 YEARS, MYOCARDIAL INFRACTION 7 YEARS AGO (ONLY MEDICINE STARTED, NOT DONE CAG).<BR />\r\nH/O: SEVERE BREATHLESSNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER WITH RIGOR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; EPIGASTRIC BURNING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DOE +NT,&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; HEMATURIA, GENERALIZED WEAKNESS SINCE 1 MONTH.</P>\r\n\r\n<P>NOW SICNE 4-5 DAYS INCRESED BREATHLESSNESS, SLEEP DISTRUB, URINE OUT PUT DECRESED, DOE, AND GENERLIZED WEEKNESS.</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP-&nbsp; 98.0`F<BR />\r\nPR- 132 /MIN<BR />\r\nBP-164/100 MMHG&nbsp;<BR />\r\nSPO2-96% ON 8LIT O2&nbsp;<BR />\r\nRR- 40/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+, BILATERAL CRAPITATION +NT.<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A- DISTENDED.</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22-11-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ABG DONE.</P>\r\n\r\n<P>NT PRO BNP - 13237 PG/ML.</P>\r\n\r\n<P>S. TROP I - 96.1 NG/L.</P>\r\n\r\n<P>FOLY`S CATH DONE.</P>\r\n\r\n<P>CHEST X RAY DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>SEEN BY DR.ABHISEKH RAVAL (CARDIOLOGIST) ADVICE FOLLOWED,&nbsp;2D ECHO LVEF - 25 %, ADVICE CAG.</P>\r\n\r\n<P>S.ACETONE LEVEL - 2.3 MG/DL.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION INJ. NORAD AND INJ. ADR START BY INFUSION PUMP.&nbsp;</P>\r\n\r\n<P>SEEN BY DR. DENISH SAVALIYA (NEPHROLOGSIT) ADVICE&nbsp;- SLED - 6HRS.&nbsp;</P>\r\n\r\n<P>RIGHT IJV DLC DONE BY DR. DENISH SAVALIYA&nbsp;(NEPHROLOGSIT).</P>\r\n\r\n<P>(1ST CYCLE) SLED HD DONE 3 L NEGATIVE 6HRS.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION INJ. NORAD AND INJ. ADR START BY INFUSION PUMP CONTINUE.</P>\r\n\r\n<P>INJ. VASOPRESSIN START BY INFUSION PUMP.</P>\r\n\r\n<P>ON NIV&nbsp; SUPPORT.</P>\r\n\r\n<P>USG KUB DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>SEEN BY DR. DENISH SAVALIYA (NEPHROLOGSIT) &nbsp;ADVICE - SLED - 6HRS, UF - 2LIT, HEPARIN FREE.&nbsp;</P>\r\n\r\n<P>(2ND&nbsp;CYCLE) SLED HD DONE FOR 6HRS.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24-11-2025,</P>\r\n\r\n<P>PATIENT IS IRRITABLE.</P>\r\n\r\n<P>ON NIV SUPORT, O2 SUPPORT GIVEN VIA MASK BUT NOT MAINTAIN SPO2 LEVEL.</P>\r\n\r\n<P>INJ.NORAD, INJ. ADR AND INJ. VASOPRESSIN START BY INFUSION CONTINUE.</P>\r\n\r\n<P>ABG DONE REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>D. DIMOR - 5614.28 NG/ML.</P>\r\n\r\n<P>S.SODIUM - 133.5 MMOL/L, S. POTASSIUM - 5.05 MMOL/L.</P>\r\n\r\n<P>SEEN BY DR. DENSIH SAVALIYA (NEPHROLOGIST), ADVICE - SLED - 6HRS, UF - 2LIT, HEPARIN FREE.&nbsp;</P>\r\n\r\n<P>(3RD&nbsp;CYCLE) SLED HD DONE FOR 6HRS.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>25-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>ON NIV&nbsp; SUPPORT.</P>\r\n\r\n<P>INJ.NORAD, INJ. ADR AND INJ. VASOPRESSIN START BY INFUSION CONTINUE.</P>\r\n\r\n<P>DR.ANKUR THUMMER CARDIOLOGIST REEFREANCE DONE ADVISE CAG AFTER RENAL STABILISATION.</P>\r\n\r\n<P>SEEN BY DR. DENSIH SAVALIYA (NEPHROLOGIST), ADVICE - SLED - 6HRS, UF - 2LIT, HEPARIN FREE.4TH CYCLE DONE WITHOUT ANY EVENT DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26/11/2025 ON PATIENT OXYGEN SUPPORT VIA NRBM MASK PATIENT CONSIOUS/ORIENTED ORALLY TOLERATED WELL. DR.DENISH SAVALIYA REVIEW DONE ADVISE HD 6 HOURS UF:3 L SO (5TH CYCLE) DONE WITH INJECTION ADR,NORAD AND VASOPRESSIN CONTINUES GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27/11/2025 ON NIV SUPPORT CONTINUES AND IV NORAD IV ADR CONTINUES. REPORTS REVIEW DONE AND DR.DENISH SAVALIYA REVIEW DONE ADVISE HD 6 HOURS SLED AND UF 3L.AND ADVISE DAILY HD AND IV ALBUMIN.</P>\r\n\r\n<P>PATIENT GC EXAPLAINED TO RELATIVE IN DETAILING AND ADVISE CONTINUES HOSPITAL STAY, DAILY HD AND CAG BUT PATIENT RELATIVES ARE NOT WILLING FURTHER TREATMENT AND HOSPITAL STAY AND WANTS TO DAMA SO PATIENT DAMA AFTER CONSENT AND OWN RISK.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 09:26:00','mo','2025-11-27 14:21:32'),(6621,0,0,2897,183,3959,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. MEROBE</P>\r\n\r\n<P>TAB. CLARIBID</P>\r\n\r\n<P>TAB. LINOX</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. VOMIEST</P>\r\n\r\n<P>INJ. DERIPHYLIN</P>\r\n\r\n<P>INJ. DYTOR</P>\r\n\r\n<P>INJ. NORAD</P>\r\n\r\n<P>INJ. ADR</P>\r\n\r\n<P>INJ. VASOPRESSIN</P>\r\n\r\n<P>INJ. NAHCO3</P>\r\n\r\n<P>TAB. ECOSPIRIN</P>\r\n\r\n<P>INJ. TRENEXA</P>\r\n\r\n<P>TAB. QUTAN</P>\r\n\r\n<P>NEB. DUOLIN : BUDACORT</P>\r\n\r\n<P>INJ. NS</P>\r\n\r\n<P>INJ. CLEXANE</P>\r\n\r\n<P>INJ. CORDERON</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 10:12:45','mo','2025-11-27 14:21:32'),(6622,0,0,2897,183,3959,0,0,NULL,'','TREATDISC_TI','','','<P>CONTINUES NIV SUPPORT</P>\r\n\r\n<P>INJ. MEROBE 1GM + NS 100ML IV BD (4 DAYS GIVEN)</P>\r\n\r\n<P>TAB. CLARIBID 500 MG P/O 1-0-1&nbsp;(4 DAYS GIVEN)</P>\r\n\r\n<P>TAB. LINOX 600 MG P/O 1-0-1&nbsp;(2&nbsp;DAYS GIVEN)</P>\r\n\r\n<P>INJ. PANTODAC 40 MG IV OD</P>\r\n\r\n<P>INJ. VOMIEST 2ML IV TDS</P>\r\n\r\n<P>INJ. DERIPHYLIN 2ML IV TDS</P>\r\n\r\n<P>INJ. NORAD (2/50ML NS ) BY S/P....7ML/HR.</P>\r\n\r\n<P>INJ. ADR (5/50 ML NS ) BY S/P...7ML/HR.</P>\r\n\r\n<P>INJ. VASOPRESSIN (2/ 50 ML NS ) S/P .....2ML/HR.</P>\r\n\r\n<P>INJ. NAHCO3 25 ML IV TDS.</P>\r\n\r\n<P>TAB. ECOSPIRIN 150 MG P/O 0-1-0</P>\r\n\r\n<P>INJ. TRENEXA 500 MG IV BD</P>\r\n\r\n<P>TAB. QUTAN 25 MG P/O 0-0-1</P>\r\n\r\n<P>NEB. DUOLIN : BUDACORT ....TDS</P>\r\n\r\n<P>INJ. NS 500 ML .....30ML/HR.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 10:12:45','mo','2025-11-27 14:21:32'),(6623,0,0,2897,183,3959,0,0,NULL,'','DISCCOND','','','<P>ON DAMA TIME PATIENT IS CONSIOUS AND ON NIV SUPPORT&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:&nbsp;<BR />\r\nTEMP-&nbsp; 98.5`F<BR />\r\nPR-&nbsp; 91/MIN<BR />\r\nBP- 100/54&nbsp;MMHG ON INOTRPIC SUPPORT.<BR />\r\nSPO2-96% ON NIV SUPPORT FIO2 80%<BR />\r\nRR- 30/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED +<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-&nbsp; SOFT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 10:33:32','mo','2025-11-27 14:21:32'),(6624,0,0,2214,2159,4160,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 10:43:59','','0000-00-00 00:00:00'),(6626,0,0,2214,2159,4160,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER FOR 10 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 10:46:24','','0000-00-00 00:00:00'),(6627,0,0,3020,2942,4157,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo&thinsp;</p>\n\n<p>positional&thinsp; giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 10:49:54','','0000-00-00 00:00:00'),(6631,0,0,1280,1239,4162,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 11:01:47','','0000-00-00 00:00:00'),(6633,0,0,1280,1239,4162,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MENVUER FOR 1 WEEK ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 11:02:44','','0000-00-00 00:00:00'),(6634,0,0,2834,179,3861,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 11:07:11','mo','2025-11-30 13:34:48'),(6635,0,0,2834,179,3861,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 30 YEARS OLD MALE&nbsp; PATIENT PRESENT WITH,<BR />\r\nH/O :&nbsp; MILD ABDOMINAL PAIN BEFOR 3 DAYS ON 17-11-2025.<BR />\r\nK/C/O: NAD<BR />\r\nC/O: ABDOMINAL PAIN INCRESED</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA&nbsp; AND VOMITING ON 18-11-2025&nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; TODAY MORNING.&nbsp;</P>\r\n\r\n<P>PRIMARY TREATMENT TAKEN AT SHUBHAM HOSPITAL DWARKA FROM 18-11-2025 TO 20-11-2025.</P>\r\n\r\n<P>ON 20-11-2025, SEVERE BRATHLESNESS, DOE AND SECTURATION DOWN, AND O2 SUPORT GIVEN VIA NRBM 5LIT.</P>\r\n\r\n<P>DIAGNOSED ACUTE PACRITIS WITH SEPSIS.</P>\r\n\r\n<P>X RAY ABDOMEN STANDING - OUT SIDE.</P>\r\n\r\n<P>USG ABDOMEN - OUT SIDE.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 98.0`F<BR />\r\nPR- 120 /MIN<BR />\r\nBP- 160/110MMHG&nbsp;<BR />\r\nSPO2- 98% ON O2 SUPPORT 5 LIT.&nbsp;<BR />\r\nRR-&nbsp; 32/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20-11-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>SYMTOAMTIC AND SUPPORTIVE RX GIVEN.</P>\r\n\r\n<P>O2 SUPPORT GIVEN VIA MASK 5-6 LIT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>O2&nbsp;SUPPORT CONTINUE.</P>\r\n\r\n<P>CT SCAN OF ABDOMEN WITH PELVIS DONE - REPROT ATTACH WITH FILE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>O2&nbsp;SUPPORT CONTINUE.</P>\r\n\r\n<P>NJ TUBE PLACEMENT WITH IITV DONE AT STERLING HOSPITAL RAJKOT, DONE BY DR. RISHIKESH KALARIA (GASTROENTROLOGIST).</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>O2&nbsp;SUPPORT CONTINUE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>O2 SUPPORT OFF.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>25-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>NFT - 50 ML/ 2HRLY.</P>\r\n\r\n<P>ICU STAY UNEVNETFULL. SO SHIFTED TO WARD</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26-11-2025,</P>\r\n\r\n<P>FOLEY&#39;S CLAM AND REMOVAL DONE</P>\r\n\r\n<P>NJF: 100ML/2 HOURLY</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27-11-2025,</P>\r\n\r\n<P>ORAL TRIAL GIVEN AND PATIENT TOLERATE.</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28-11-2025,</P>\r\n\r\n<P>REQUIRED BLOOD IX DONE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NJ TUBE REMOVAL DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>29/11/2025</P>\r\n\r\n<P>CT SAME TREATMENT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>30/11/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE</P>\r\n\r\n<P>&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT.</P>\r\n\r\n<P>PATIENT SHIFT TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 11:07:11','mo','2025-11-30 13:34:48'),(6636,0,0,2507,2448,4165,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>&thinsp;</p>\n\n<p>follow up pta----left ear significant impromvent&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 11:10:36','','0000-00-00 00:00:00'),(6638,0,0,3027,2948,4173,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-25 11:11:47','','0000-00-00 00:00:00'),(6639,0,0,3027,2948,4173,0,0,NULL,'','DIAG','ZZZ','Remark','FISTULA IN ANO','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-25 11:11:52','','0000-00-00 00:00:00'),(6640,0,0,3027,2948,4173,0,0,NULL,'','DIAG','ZZZ','Remark','IHD(POST PTCA )','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-25 11:12:12','','0000-00-00 00:00:00'),(6641,0,0,3027,2948,4173,0,0,NULL,'','DIAG','ZZZ','Remark','HTN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-25 11:12:13','','0000-00-00 00:00:00'),(6642,0,0,2507,2448,4165,0,0,NULL,'','MADVICE','ZZZ','Remark','PTA NEXT TIME ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 11:12:18','','0000-00-00 00:00:00'),(6644,0,0,3027,2948,4173,0,0,NULL,'','MADVICE','ZZZ','Remark','SURGERY ','','9999.9',0,'0000-00-00 00:00:00','drpratapsi','2025-11-25 11:12:30','','0000-00-00 00:00:00'),(6645,0,0,2834,179,3861,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE NACROTIZING PANCREATITIS WITH EARLY ARDS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 11:18:24','mo','2025-11-30 13:34:48'),(6648,0,0,3024,2945,4170,0,0,NULL,'','HIST','ZZZ','Remark','<p>h/o head injury followed by giddiness</p>\n\n<p>sudden onset of rotaotry feeling mainly on change of posture</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 11:18:46','darshan','2025-11-25 11:19:52'),(6649,0,0,3024,2945,4170,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----20 DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 11:18:52','darshan','2025-11-25 12:58:40'),(6650,0,0,3024,2945,4170,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>CCG--AP&thinsp;displacment and axis spin out of range</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 11:20:02','darshan','2025-11-25 13:03:18'),(6651,0,0,3024,2945,4170,0,0,NULL,'','DIAG','ZZZ','Remark','P/O---POST TRAUMATIC BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 11:20:11','','0000-00-00 00:00:00'),(6652,0,0,3024,2945,4170,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 11:20:12','','0000-00-00 00:00:00'),(6653,0,0,3024,2945,4170,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE SINCE MANY YRS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 11:20:23','darshan','2025-11-25 12:58:40'),(6654,0,0,3036,2957,4182,0,0,NULL,'','DIAG','ZZZ','Remark','MVT - REVASCULARISATION','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-25 11:21:03','','0000-00-00 00:00:00'),(6656,0,0,1662,1617,4168,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---mild positional giddiness +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 11:29:10','','0000-00-00 00:00:00'),(6657,0,0,1662,1617,4168,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 11:29:48','','0000-00-00 00:00:00'),(6659,0,0,1662,1617,4168,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 11:30:20','','0000-00-00 00:00:00'),(6660,0,0,3038,2959,4184,0,0,NULL,'','DIAG','ZZZ','Remark','H/0 LAPAROTOMY  +STRICTUROPLASTY','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-25 11:35:46','','0000-00-00 00:00:00'),(6661,0,0,3028,2949,4174,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---sense of imbalance episodic</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 11:39:44','','0000-00-00 00:00:00'),(6662,0,0,1193,1153,4169,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 11:47:26','','0000-00-00 00:00:00'),(6663,0,0,1842,1797,4190,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-=--maenvuer not done preperly</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 11:52:08','','0000-00-00 00:00:00'),(6664,0,0,1842,1797,4190,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 11:53:19','','0000-00-00 00:00:00'),(6666,0,0,1842,1797,4190,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 11:55:03','','0000-00-00 00:00:00'),(6667,0,0,2899,184,3962,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO DIFFICULTY IN BREATHING</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 11:56:47','mo','2025-11-25 12:18:44'),(6668,0,0,2899,184,3962,0,0,NULL,'','TREATDISC_TI','','','<P>INJ ZOSTUM&nbsp; 3GM/100 ML NS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp;8AM--8PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 3&nbsp;DAYS ( 7 INJ)&nbsp;</P>\r\n\r\n<P>TAB CLARIBID (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3&nbsp;DAYS&nbsp;</P>\r\n\r\n<P>CAP FLUVIR(75MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5&nbsp;DAYS&nbsp;</P>\r\n\r\n<P>TAB NEXPROFAST(40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZOFER MD(4MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IF VOMITING&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......(4)</P>\r\n\r\n<P>TAB DERIPHYLLIN - R (300MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB CORDERON(100MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>CAP ROSULESS A (75/10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DILZEM(60MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB THYRONORM (100UG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB UPRISE D3&nbsp; 60K&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ONCE A WEEK&nbsp; &nbsp; &nbsp; SATURDAY&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......(4)</P>\r\n\r\n<P>SYP RESWAS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;5ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TDS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 11:56:47','mo','2025-11-25 12:18:44'),(6669,0,0,3034,2955,4180,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 12:01:27','','0000-00-00 00:00:00'),(6670,0,0,3034,2955,4180,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 12:02:31','','0000-00-00 00:00:00'),(6672,0,0,3034,2955,4180,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 12:06:26','','0000-00-00 00:00:00'),(6673,0,0,2612,194,4125,0,0,NULL,'','TREATDISC_TI','','','<P>&nbsp;</P>\r\n\r\n<P>TAB NEXPROFAST(40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; .......FOR 5 DAYS</P>\r\n\r\n<P>TAB. ARKAMIN 0.1 MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......FOR 5 DAYS</P>\r\n\r\n<P>TAB. CORTEL 40MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; ....... FOR 5 DAYS</P>\r\n\r\n<P>TAB. BISOWIN &nbsp;5MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......FOR 5 DAYS</P>\r\n\r\n<P>TAB. ECOSPRIN - AV 75/10&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........FOR 5 DAYS</P>\r\n\r\n<P>TA. BREVIPIL 50MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; ........ FOR 5 DAYS</P>\r\n\r\n<P>TAB. DERIPHYLIN - R 300MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......FOR 5 DAYS</P>\r\n\r\n<P>TAB. TORKID PLUS 20MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1/2--0&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......FOR 5 DAYS</P>\r\n\r\n<P>TAB KRINAP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;..... ..FOR 5 DAYS</P>\r\n\r\n<P>TAB NICORAN(5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; ....... FOR 5 DAYS</P>\r\n\r\n<P>TAB METRIDE(2MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;........FOR 5 DAYS</P>\r\n\r\n<P>TAB DAPARYL-L(10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; .........FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB ETOLOK (90MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB LUPIHEME&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 12:09:12','mo','2025-11-27 13:06:01'),(6674,0,0,3046,2968,4195,0,0,NULL,'','DIAG','ZZZ','Remark','BILATERAL INGUINAL HERNIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-25 12:09:25','','0000-00-00 00:00:00'),(6675,0,0,3046,2968,4195,0,0,NULL,'','DIAG','ZZZ','Remark','COPD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-25 12:09:29','','0000-00-00 00:00:00'),(6676,0,0,3039,2960,4186,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 12:15:49','','0000-00-00 00:00:00'),(6677,0,0,3039,2960,4186,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpso m</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 12:16:27','','0000-00-00 00:00:00'),(6678,0,0,3039,2960,4186,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--bilatelr moderate sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 12:16:35','darshan','2025-11-25 13:21:41'),(6681,0,0,3037,2958,4183,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 12:23:22','','0000-00-00 00:00:00'),(6682,0,0,3043,2964,4191,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 12:32:06','','0000-00-00 00:00:00'),(6683,0,0,3043,2964,4191,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 12:32:47','','0000-00-00 00:00:00'),(6685,0,0,3043,2964,4191,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER----15 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 12:33:48','','0000-00-00 00:00:00'),(6686,0,0,393,197,4159,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 12:36:32','mo','2025-11-28 12:21:20'),(6687,0,0,393,197,4159,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 79 YEARS OLD MALE&nbsp; PATIENT PRESENT WITH,<BR />\r\nK/C/O: HTN, IHD, SEVERE LVD, DCMP, OLD CVA, BPH.<BR />\r\nH/O: BILATERAL PEDAL PITTNG EDEMA SICNE 2-3 DAYS.</P>\r\n\r\n<P>C/O - DOE, ORTHOPNEA, INCRESED BREATHLESSNESS, GHABHRAMAN TODAY EVENING.</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE TODAY EVENING.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 97.6`F<BR />\r\nPR- 96/MIN<BR />\r\nBP- 120/70 MMHG&nbsp;<BR />\r\nSPO2-94% ON RA&nbsp;<BR />\r\nRR- 34/MIN</P>\r\n\r\n<P>RBS - 186 MG/DL.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+, BILATERAL CRAPS +NT.<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24-11-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>SYMPTOMATIC AND SUPPORTIVE RX GIVEN.</P>\r\n\r\n<P>INJ. LESIX DRIP START BY INFUSION PUMP.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>25-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>TROP - I = 28.0 NG/L.</P>\r\n\r\n<P>2 D ECHO DONE - REPORT ATTACH WIHT FILE.</P>\r\n\r\n<P>CHEST X RAY DONE - REPROT ATTACH WITH FILE.</P>\r\n\r\n<P>STOP LESIX INFUSION PUMP.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26-11-2025,</P>\r\n\r\n<P>DIURETICS TAPPER DOWN</P>\r\n\r\n<P>PATIENT GENERAL CONDITION IMPROVED SO SHIFTED TO WARD</P>\r\n\r\n<P>INJ ALBUMIN 20% GIVEN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27-11-2025,</P>\r\n\r\n<P>FOLEY&#39;S CLAMP AND REMOVAL DONE</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28-11-2025,</P>\r\n\r\n<P>REQUIRED BLOOD IX DONE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 12:36:32','mo','2025-11-28 12:21:20'),(6688,0,0,393,197,4159,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. RABICROSS</P>\r\n\r\n<P>INJ. QUICKSET</P>\r\n\r\n<P>INJ. LESIX</P>\r\n\r\n<P>INJ. DYTOR</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 12:36:32','mo','2025-11-28 12:21:20'),(6689,0,0,2937,187,4017,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n<BR />\r\nK/C/O BILATERAL LOWER LIMB POLIOMLITIS.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 12:37:36','mo','2025-12-15 22:47:12'),(6690,0,0,2937,187,4017,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 44 YEARS OLD FEMALE&nbsp; PATIENT PRESENT WITH,<BR />\r\nK/C/O: BILATERAL LOWER LIMB POLIOMYLITIS.</P>\r\n\r\n<P>H/O MIDLD TO MODRARTE ABDOMINAL PAIN, NAUSEA WITH VOMINTNG, HEAVINESS OF ABDOMEN, DECRESED URINE OUT PUT, SHORTNESS OF BREATH, GENERALIZED WEEAKNESS, BODYACHE, COSNTIPATION SINCE 2DAYS.</P>\r\n\r\n<P>PRIMARY RX TAKEN AT H.J. DOSHI HOSPITAL, RAJKOT.</P>\r\n\r\n<P>THAN PATIENT WAS ADMITED LANDMARK HOSPITAL FROM 19-11-2025 TO 23-11-2025.</P>\r\n\r\n<P>DIGNOSED ACUTE PANCRITIS WITH ACUTE LUNG INJURY WITH SIRS.</P>\r\n\r\n<P>ET TUBE, RT, FOLY`S CATH, LEFT CVP IN SITU.</P>\r\n\r\n<P>ON VENTILATOR SUPPORT AC/VC MODE.</P>\r\n\r\n<P>ON EXAMINATION PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 97.0`F<BR />\r\nPR- 102/MIN<BR />\r\nBP- 115/83 MMHG&nbsp;<BR />\r\nSPO2-96% ON AC/VC MODE VENTILATOR SUPPORT.&nbsp;<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,RIGTH SIDE LOWER LIMB WEAKNESS (DUE TO POLIO MYLITIS)<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23-11-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>ON AC/VC MODE VENTILATRO SUPPORT.</P>\r\n\r\n<P>PCT - 0.49 NG/ML.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>PATIENT ON CPAP MODE SUPPORT. ET TUEB IN SITU.</P>\r\n\r\n<P>CHEST X RAY DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>S. POTASSIUM - 2.75 MMOL/L, INJ. KCL GIVEN 2 AMPUL.</P>\r\n\r\n<P>INJ. ALBUMIN GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>25-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>PATIENT ON CPAP MODE SUPPORT. ET TUBE IN SITU.</P>\r\n\r\n<P>SBT TIRAL GIVEN.</P>\r\n\r\n<P>TNP STRT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>PATIENT ON CPAP MODE SUPPORT. ET TUBE IN SITU.</P>\r\n\r\n<P>USG ABDOMEN DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>2 D ECHO DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>CHEST X RAY DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>CHANGE ANTIBIOTIC.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>PATIENT ON CPAP MODE SUPPORT. ET TUBE IN SITU.</P>\r\n\r\n<P>INJ. KCL GIVEN VIA INFUSION PUMP.</P>\r\n\r\n<P>PHYSIOTHERAPY DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>PATIENT ON CPAP MODE SUPPORT. ET TUBE IN SITU.</P>\r\n\r\n<P>ENDOTRACHEAL SECRETION CULTURE AND SENSITIVITY - GRAM NEGATIVE COCCO-BACILLI SEEN, ACINETOBACTER BAUMANII, HEAVY GROWTH.</P>\r\n\r\n<P>PLAIN MDCT SCAN OF ABDOMEN DONE -REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>PLAIN MDCT SCAN OF THORAX DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>PHYSIOTHERAPY DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>29-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>PATIENT ON CPAP MODE SUPPORT. ET TUBE IN SITU.</P>\r\n\r\n<P>PHYSIOTHERAPY DONE.</P>\r\n\r\n<P>STEP UP ANTIBIOTIC.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>30-11-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>PATIENT ON O2 SUPPORT&nbsp;SUPPORT. ET TUBE IN SITU.</P>\r\n\r\n<P>PHYSIOTHERAPY DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>01-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>T`STOMY DONE BY DR. UMANG SHUKA (ENT SURGEON).</P>\r\n\r\n<P>AC/VC MODE, VENTILATOR SUPPORT.</P>\r\n\r\n<P>PHYSIOTHERAPY DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>02-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>AC/VC AND AC/PRVC SUPPROT ALTERNATE.</P>\r\n\r\n<P>INJ. KCL GIVEN VIA INFUSION PUMP.</P>\r\n\r\n<P>TPN GIVEN.</P>\r\n\r\n<P>PHYSIOTHERAPY DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>03-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>AC/VC AND AC/PRVC SUPPROT ALTERNATE.</P>\r\n\r\n<P>PHYSIOTHERAPY DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>AC/VC AND AC/PRVC SUPPROT ALTERNATE.</P>\r\n\r\n<P>ONE UNIT RCC GIVEN.</P>\r\n\r\n<P>PHYSIOTHERAPY DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>AC/VC AND AC/PRVC SUPPROT ALTERNATE.</P>\r\n\r\n<P>INJ. KCL GIVEN VIA INFUSION PUMP.</P>\r\n\r\n<P>PHYSIOTHERAPY DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>06-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>T`STOMY - 1 LIT O2&nbsp;&nbsp;SUPPORT VIA T`PIECE, ALTERNATE CAPA SUPORT.</P>\r\n\r\n<P>USG CHEST DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>BLOOD CVP FEMORAL&nbsp; - CULTURE AND SENSITIVITY SUGGESTED - KLEBSIELLA PNEUMONIAE.</P>\r\n\r\n<P>CVP REMOVE.</P>\r\n\r\n<P>PHYSIOTHERAPY DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>07-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>T`STOMY - 1 LIT O2&nbsp;&nbsp;SUPPORT VIA T`PIECE, ALTERNATE CAPA SUPORT.</P>\r\n\r\n<P>CHEST X RAY DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>PHYSIOTHERAPY DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>08-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>T`STOMY - 1 LIT O2&nbsp;&nbsp;SUPPORT VIA T`PIECE, ALTERNATE CAPA SUPORT.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION INJ.NORAD START.</P>\r\n\r\n<P>USG ABDOMEN DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>RIGHT SUBCLAVIAN CVP DONE BY DR. ARCHIT RATHOD.</P>\r\n\r\n<P>REFERENCE DONE DR. RISHIKESH KALARIYA (GASTROPHYSAIN) ADVICE FOLLOWED.RT ASPIRATION CONTINUE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>9-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>T`STOMY - 1 LIT O2&nbsp;&nbsp;SUPPORT VIA T`PIECE,&nbsp; ALTERNATE CAPA SUPORT.</P>\r\n\r\n<P>ASPERGILLUS ANTIGEN (GALACTOMANNAN) - 1.03.</P>\r\n\r\n<P>ANTI BIOTIC STEP UP START INJ. CEFTAZIDIM + AVIBACTUM WITH INJ. AZENORM.</P>\r\n\r\n<P>PHYSIOTHERAPY DONE.</P>\r\n\r\n<P>RT ASPIRATION CONTINUE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>T`STOMY - 1 LIT O2&nbsp;&nbsp;SUPPORT VIA T`PIECE ALTERNATE CAPA SUPORT.</P>\r\n\r\n<P>MDCT SCAN OF ABDOMEN WITH PELVIS - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>PHYSIOTHERAPY DONE.</P>\r\n\r\n<P>SEEN BY DR. KRUTARTH KANJIYA (ID), ADVICE FOLLOWED, START INJ. CASPOFUNGIN.</P>\r\n\r\n<P>RT ASPIRATION CONTINUE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>T`STOMY - 1 LIT O2&nbsp;&nbsp;SUPPORT VIA&nbsp;T`PIECE ALTERNATE CAPA SUPORT.</P>\r\n\r\n<P>INJ NORAD SUPORT CONTINUE.</P>\r\n\r\n<P>PHYSIOTHERAPY DONE.</P>\r\n\r\n<P>UNDER CT GUDIDE 16`F PICTAIL CATH PLACED IN RIGHT SIDED RETRO PERITONEAL COLLECTION DONE BY DR. VIKASH JAIN (ENDOVASCULAR SURGEON) DONE AT WOCKHARDT HOSPITAL RAJKOT.&nbsp;</P>\r\n\r\n<P>FLUID SEND FOR&nbsp;CS AND ROUTINE MICOR EXAMINATION.</P>\r\n\r\n<P>RTF START.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>T`STOMY - 1 LIT O2&nbsp;&nbsp;SUPPORT VIA&nbsp;T`PIECE ALTERNATE CAPA SUPORT.</P>\r\n\r\n<P>HB - 5.4, INR - 9.70, 3 UNIT RCC GIVEN, AND 5 UNIT FFP GIVEN.</P>\r\n\r\n<P>INJ. VIT K AND INJ. TRENEXA GIVEN.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION INJ NORD START.</P>\r\n\r\n<P>FLUID CULTURE AND SENSITIVITY - GRAM POSITIVE COCCI ARE SEEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>PATIENT ON CPAP MODE.</P>\r\n\r\n<P>INJ. NORAD CONTINUE.</P>\r\n\r\n<P>HB - 10.7, INR - 1.54.</P>\r\n\r\n<P>USG ABDOMEN DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>FLUID CULTURE AND SENSITIVITY - ENTEROCOCCUS FAECIUM.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>PATIENT ON CPAP MODE.</P>\r\n\r\n<P>INJ. NORAD CONTINUE.</P>\r\n\r\n<P>IN VIEW OF HYPOKALAMI INJ. KCL REPLACE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>PATIENT ON CPAP MODE.</P>\r\n\r\n<P>INJ. NORAD CONTINUE.</P>\r\n\r\n<P>REFERENCE DONE DR. RISHIKEHS KALARIYA (GASTROPHYSIAN) ADVICE FOLLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16-12-2025,</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 12:37:36','mo','2025-12-15 22:47:12'),(6691,0,0,3044,2965,4192,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----3-4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 12:47:00','','0000-00-00 00:00:00'),(6692,0,0,3044,2965,4192,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 12:47:39','','0000-00-00 00:00:00'),(6693,0,0,3044,2965,4192,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 12:47:53','darshan','2025-11-25 13:41:08'),(6694,0,0,3044,2965,4192,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 12:48:01','','0000-00-00 00:00:00'),(6695,0,0,3047,2969,4198,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n\n<p>single episode of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 12:50:27','','0000-00-00 00:00:00'),(6697,0,0,3048,2970,4199,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 12:55:12','','0000-00-00 00:00:00'),(6699,0,0,2607,2967,4194,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-11-25 13:01:34','','0000-00-00 00:00:00'),(6700,0,0,2607,2967,4194,0,0,NULL,'','MADVICE','ZZZ','Remark','FBS/PP2BS ','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-25 13:01:40','','0000-00-00 00:00:00'),(6702,0,0,2937,187,4017,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ICD CODE:</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 13:02:47','mo','2025-12-15 22:47:12'),(6703,0,0,2937,187,4017,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. TAZOWAR</P>\r\n\r\n<P>INJ. MAVIBAC</P>\r\n\r\n<P>INJ. IMINEM</P>\r\n\r\n<P>INJ. TIGEBAX</P>\r\n\r\n<P>INJ.AZENEM</P>\r\n\r\n<P>NEB. COLISTIN</P>\r\n\r\n<P>INJ.MEZOR</P>\r\n\r\n<P>INJ.CASPOGUNGIN</P>\r\n\r\n<P>TAB. VONAZ</P>\r\n\r\n<P>INJ.METROGYL</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ.TRAMADOL</P>\r\n\r\n<P>INJ. BUSCOPAN</P>\r\n\r\n<P>INJ. ALBUMIN</P>\r\n\r\n<P>INJ. MAGOS4</P>\r\n\r\n<P>CAP.VSL #3</P>\r\n\r\n<P>INJ. DNS /RL</P>\r\n\r\n<P>INJ. ELDERVIT</P>\r\n\r\n<P>INJ. TPN</P>\r\n\r\n<P>INJ. ALBUMIN</P>\r\n\r\n<P>INJ. KCL</P>\r\n\r\n<P>INJ. ELDERVIT</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 13:02:47','mo','2025-12-15 22:47:12'),(6704,0,0,3022,2943,4163,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO C/O CHEST PAIN&thinsp;</p>\n\n<p>NO C/O DOE&thinsp;</p>\n\n<p>NO OTHER COMPLAINT</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-25 13:03:00','','0000-00-00 00:00:00'),(6706,0,0,3024,2945,4170,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 13:04:02','','0000-00-00 00:00:00'),(6708,0,0,3022,2943,4163,0,0,NULL,'','CC','ZZZ','Remark','POSTED FOR ENDOMETERIOSIS SURGERY||','','',0,'0000-00-00 00:00:00','drarchit','2025-11-25 13:05:52','','0000-00-00 00:00:00'),(6709,0,0,3022,2943,4163,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALLY NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-25 13:06:01','','0000-00-00 00:00:00'),(6711,0,0,3022,2943,4163,0,0,NULL,'','MADVICE','ZZZ','Remark','PATIENT CAN BE TAKEN FOR SURGERY WITH DUE ANESTHETIC DRUGS AND OPERATIVE RISK','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-25 13:07:35','','0000-00-00 00:00:00'),(6712,0,0,887,855,4200,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 13:08:00','','0000-00-00 00:00:00'),(6713,0,0,2215,2160,4201,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow u pcase---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 13:13:18','','0000-00-00 00:00:00'),(6714,0,0,2215,2160,4201,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 13:13:46','','0000-00-00 00:00:00'),(6716,0,0,2215,2160,4201,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 13:14:00','','0000-00-00 00:00:00'),(6719,0,0,3024,2945,4170,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 13:25:27','','0000-00-00 00:00:00'),(6721,0,0,3039,2960,4186,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY \nBD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 13:35:07','','0000-00-00 00:00:00'),(6722,0,0,3044,2965,4192,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 13:41:39','','0000-00-00 00:00:00'),(6724,0,0,2985,193,4092,0,0,NULL,'','TREATDISC_TI','','','<P>INJ ZOSTUM (1.5GM/DILUTED)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; 8AM--8PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS(7 INJ)</P>\r\n\r\n<P>TAB CLARIBID(500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 3 DAYS(7 TAB)</P>\r\n\r\n<P>CAP FLUVIR(75MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 3 DAYS(7 TAB)</P>\r\n\r\n<P>TAB NEXPROFAST(40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB DX (30)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB MONTICOP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB APTIPRED(8MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB NAPROXEN(250MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS</P>\r\n\r\n<P>NEB DUOLIN /BUDECORT&nbsp; &nbsp; &nbsp; &nbsp;1:1&nbsp; &nbsp; &nbsp; P/N&nbsp; &nbsp; &nbsp; &nbsp; (QDS) - 6 HOURLY&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP KOLTUS - C&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 5ML TDS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:&nbsp;</P>\r\n\r\n<P>TAB THYRONORM(75MG)&nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; BEFORE BREAKFAST&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 14:13:29','mo','2025-11-25 14:14:55'),(6725,0,0,2866,181,3909,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-NEUTROPENIC SEPSIS</STRONG></P>\r\n\r\n<P><STRONG>-ENTEROCOLITIS</STRONG></P>\r\n\r\n<P><STRONG>-BILATERAL PNEUMONITIS</STRONG></P>\r\n\r\n<P><STRONG>-AKI</STRONG></P>\r\n\r\n<P><STRONG>-IN CASE OF CA LEFT BREAST WITH MULTIPLE SITES METS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 16:26:21','mo','2025-12-03 17:51:12'),(6726,0,0,2866,181,3909,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-25 16:26:21','mo','2025-12-03 17:51:12'),(6727,0,0,2866,181,3909,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 77 YEARS OLD FEMALE PATIENT P/W K/C/O CA LEFT BREAST(MRM DONE) WITH LIVER/LUNG/BONE AND BRAIN METS.</P>\r\n\r\n<P>WITH C/O WATERY DIARRHOEA;NAUSEA;GENERALISED WEAKNESS;INTERMITTENT FEVER;ANOREXIA WITH DROWSINESS SINCE 4-5DAYS.</P>\r\n\r\n<P>SO,PATIENT ADMITTED AT SHASHWAT HOSPITAL FROM 17/11/25 TO 21/11/25.</P>\r\n\r\n<P>NOW PATIENT REFERRED TO HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-97 F</P>\r\n\r\n<P>PR-110/MIN</P>\r\n\r\n<P>BP-132/80MMHG</P>\r\n\r\n<P>SPO2-97% ON RA</P>\r\n\r\n<P>RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-145 MG/DL</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21/11/25,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION SENT AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22/11/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>INFECTIOUS DISEASE PHYSICIAN DR.KRUTHARTH KANJIYA REFERENCE DONE.FOLLOWED ALL HIS ADVICE.</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23/11/25,</P>\r\n\r\n<P>STOOL ROUTINE MICRO SENT.</P>\r\n\r\n<P>DAILY CBC DONE</P>\r\n\r\n<P>GRADUALLY PATIENT&#39;S GENERAL CONDITION WAS IMPROVING AND FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>24/11/25,</P>\r\n\r\n<P>REQUIRED BLOOD IX DONE AND TREATMENT MODIFIED ACCORDINGLY</P>\r\n\r\n<P>STOOL R/M DONE WHICH S/O OB(+++), RBC:8-10</P>\r\n\r\n<P>REVIEW&nbsp;OF DR VIJAY (ONCO) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>25/11/25,</P>\r\n\r\n<P>REQUIRED BLOOD IX DONE</P>\r\n\r\n<P>PS EXAMINATION DONE<BR />\r\nIN VIEW OF HYPOKALEMIA INJ KCL GIVEN</P>\r\n\r\n<P>IN VIEW OF HYPOALBUMENIA INJ ALBUMIN 20% GIVEN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26/11/25,</P>\r\n\r\n<P>DAILY CBC DONE</P>\r\n\r\n<P>IN VIEW HYPOXIA&nbsp; AND TACHPNEA O2 SUPPORT GIVEN</P>\r\n\r\n<P>CHEST X RAY DONE</P>\r\n\r\n<P>ABG WITH LACTATE DONE</P>\r\n\r\n<P>BLOOD CS SENT WHICH S/O NO GROWTH</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27/11/25</P>\r\n\r\n<P>DAILY CBC DONE</P>\r\n\r\n<P>1 UNIT RCC GIVEN</P>\r\n\r\n<P>SPIROMETRY STARTED</P>\r\n\r\n<P>O2 SUPPORT CONTINUE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28/11/2025</P>\r\n\r\n<P>DAILY CBC DONE</P>\r\n\r\n<P>REQUIRED BLOOD IX DONE</P>\r\n\r\n<P>REF OF DR DARSHAN BHATT (ENT) DONE AND FOLLOW IS ALL ADVICE</P>\r\n\r\n<P>O2 SUPPORT CONTINUE</P>\r\n\r\n<P>IN VIEW OF HYPOXIA AFTER RECOVERING FROM NEUTROPENIA IMMUNE MEDIATED PULMONARY MANIFESTATION SUSPECTS SO INJ IVEPRED(40 MG) STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>29/11/2025</P>\r\n\r\n<P>DAILY CBC DONE</P>\r\n\r\n<P>O2 SUPPORT CONTINUE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>30/11/2025</P>\r\n\r\n<P>DAILY CBC DONE</P>\r\n\r\n<P>OFF O2 TRIAL GIVEN PATIENT MAINTAIN ON ROOM AIR SO O2 STO</P>\r\n\r\n<P>SPIROMETRY START</P>\r\n\r\n<P>WHEELCHAIR MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>01/12/2025</P>\r\n\r\n<P>DAILY CBC DONE</P>\r\n\r\n<P>NO ANY FREAH COMPLAIN COUNTINU SAME TREATMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>02/12/2025</P>\r\n\r\n<P>DAILY CBC DONE</P>\r\n\r\n<P>NO ANY FREAH COMPLAIN COUNTINU SAME TREATMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>03/12/2025</P>\r\n\r\n<P>DAILY CBC DONE</P>\r\n\r\n<P>NO ANY FREAH COMPLAIN COUNTINU SAME TREATMENT.</P>\r\n\r\n<P>DISCHARGE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 16:26:21','mo','2025-12-03 17:51:12'),(6728,0,0,2866,181,3909,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MEZOR</P>\r\n\r\n<P>INJ CLINDATEC</P>\r\n\r\n<P>TAB AZEE</P>\r\n\r\n<P>TAB RIFAGUT</P>\r\n\r\n<P>INJ FORCAN</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ DERIPHYLLIN</P>\r\n\r\n<P>INJ LEVERA</P>\r\n\r\n<P>INJ H.ACTRAPID</P>\r\n\r\n<P>INJ G CSF</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>TAB MODALERT</P>\r\n\r\n<P>TAB URSOCOL</P>\r\n\r\n<P>TAB ADDKAY</P>\r\n\r\n<P>TAB SODAMINT</P>\r\n\r\n<P>SYP ASCORIL C</P>\r\n\r\n<P>CANDID MOUTH PAINT</P>\r\n\r\n<P>BETADIN GARGLE</P>\r\n\r\n<P>NEB DUOLIN BUDECORT</P>\r\n\r\n<P>INJ MGSO4</P>\r\n\r\n<P>INJ KCL</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ LINOX</P>\r\n\r\n<P>INJ MIKACIN</P>\r\n\r\n<P>TAB LINOX</P>\r\n\r\n<P>TAB VONAZ</P>\r\n\r\n<P>CAP GENCYCLOVIR</P>\r\n\r\n<P>XYLOCAINE VISCUS</P>\r\n\r\n<P>INJ IVEPRED</P>\r\n\r\n<P>TAB BACTRIM DS</P>\r\n\r\n<P>SOLUTION WTE MOUTH</P>\r\n\r\n<P>SOL. MUCOSON OIN.</P>\r\n\r\n<P>INJ ROMIPLASTIN</P>\r\n\r\n<P>TAB. QUTAN</P>\r\n\r\n<P>TAB. MEDROL</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 16:34:47','mo','2025-12-03 17:51:12'),(6729,0,0,3021,196,4158,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LRTI WITH ACUTE GASTROENTERITIS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN,DM,IHD,LUMBAR DISC DX</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 16:40:41','mo','2025-11-26 11:48:12'),(6730,0,0,3021,196,4158,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-25 16:40:41','mo','2025-11-26 11:48:12'),(6731,0,0,3021,196,4158,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 83 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN,DM,IHD,LUMBAR DISC DX<BR />\r\nH/O: HYSERECTOMY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BEDRIDDEN SINCE 1.5 TO 2 YR<BR />\r\nC/O: LOOSE MOTION (4-5 EPISODE/DAY)&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DECREASED URINE OUTPUT</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DIFFICULTY IN BREATHING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; B/L PEDAL EDEMA</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 2 DAYS&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>HBA1C (26/04/2025)--7.4%</P>\r\n\r\n<P>FOLEY&#39;S IN SITU(DAY-15)(NO-14)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-71/MIN, BP-154/90MMHG, SPO2-80% ON RA, RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>25/11/2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>URINE R/M DONE WHICH S/O PUS CELL:15-20, RBC:6-8,&nbsp;BACTERIA (++)</P>\r\n\r\n<P>STOOL R/M DONE WHICH S/O BACTERIA DETECTED</P>\r\n\r\n<P>ABG DONE&nbsp;</P>\r\n\r\n<P>CHEST X-RAY DONE; REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26/11/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 16:40:41','mo','2025-11-26 11:48:12'),(6732,0,0,3021,196,4158,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER&nbsp; 5 DAYS&nbsp;</P>\r\n\r\n<P>DAILY FOLEY&#39;S CARE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 16:40:41','mo','2025-11-26 11:48:12'),(6733,0,0,3021,196,4158,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ CEFCON</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>CAP ENUFF</P>\r\n\r\n<P>CAP ECONORM</P>\r\n\r\n<P>CAP FLUVIR</P>\r\n\r\n<P>NEB DUOLIN/BUDECORT</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ VITNEURIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 16:40:41','mo','2025-11-26 11:48:12'),(6734,0,0,2380,199,4166,0,0,NULL,'','DISCDIAG','','','<P><STRONG>B/L VERICOSE VEIN WITH LEFT LEG ULCERATION</STRONG></P>\r\n\r\n<P><STRONG>LEFT LL C2,C3,C4B,C6 CHRONIC VENOUS DISEASE</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, DM, DVT(?)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 16:51:26','mo','2025-11-26 19:21:44'),(6735,0,0,2380,199,4166,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-25 16:51:26','mo','2025-11-26 19:21:44'),(6736,0,0,2380,199,4166,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 45 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, DM, DVT(?)<BR />\r\nH/O:VARICOSE VEIN SINCE 3-3.5 MONTH<BR />\r\nC/O: B/L LL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SWELLING +</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DIFFICULTY IN WALKING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; OCCASIONALLY CONSTIPATION</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 3-3.5 MONTH FOR THAT PT PRIMARY CONSULTED OPD BASED AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>BOTH LL VENOUS DOPPLER STUDY (12/11/2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-82/MIN, BP-140/84MMHG, SPO2-97% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ECG DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nLEFT GSV EVCT + STAB PHLEBECTOMY + FOAM ACLEROTHERAPY DONE BY DR TEJAS KARANGIYA ON 25/11/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 16:51:26','mo','2025-11-26 19:21:44'),(6737,0,0,2380,199,4166,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 16:51:26','mo','2025-11-26 19:21:44'),(6738,0,0,2380,199,4166,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP ON FRIDAY EVENING</P>\r\n\r\n<P>DRESSING WITH 4LB/VELFOUR</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 16:51:26','mo','2025-11-26 19:21:44'),(6739,0,0,2380,199,4166,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 16:51:26','mo','2025-11-26 19:21:44'),(6740,0,0,2939,189,4019,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3&nbsp;DAYS WITH SGPT,S.BILLIRUBIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 16:55:20','mo','2025-11-26 11:54:40'),(6743,0,0,3044,2965,4192,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 17:20:14','','0000-00-00 00:00:00'),(6744,0,0,1861,1815,4206,0,0,NULL,'','HIST','ZZZ','Remark','<p>folllow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 17:22:57','','0000-00-00 00:00:00'),(6745,0,0,3052,2974,4208,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 17:28:11','','0000-00-00 00:00:00'),(6746,0,0,3053,2975,4209,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 17:38:20','','0000-00-00 00:00:00'),(6747,0,0,3053,2975,4209,0,0,NULL,'','CC','ZZZ','Remark','WATERY NASAL DISCHARGE----FEW DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 17:45:14','','0000-00-00 00:00:00'),(6748,0,0,3053,2975,4209,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>clear watery nasal discharge +</p>\n\n<p>p/o---CSF rhinorhhea</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 17:45:46','','0000-00-00 00:00:00'),(6749,0,0,3054,2976,4214,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo---sudden sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 17:55:10','darshan','2025-11-25 17:57:43'),(6750,0,0,3054,2976,4214,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---4-5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 17:57:12','','0000-00-00 00:00:00'),(6751,0,0,3054,2976,4214,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit-nad</p>\n\n<p>pta----bilatelr high freq severe sn deafness</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng---Bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 17:58:06','darshan','2025-12-10 20:39:47'),(6754,0,0,3058,2980,4218,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:06:42','','0000-00-00 00:00:00'),(6755,0,0,3058,2980,4218,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:07:28','','0000-00-00 00:00:00'),(6756,0,0,3058,2980,4218,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit-nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:07:40','darshan','2025-11-25 19:13:12'),(6757,0,0,3058,2980,4218,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:07:52','','0000-00-00 00:00:00'),(6758,0,0,3020,2942,4157,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER----20 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:11:09','','0000-00-00 00:00:00'),(6759,0,0,3066,2988,4228,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-25 18:15:17','','0000-00-00 00:00:00'),(6760,0,0,3059,2981,4219,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:15:25','','0000-00-00 00:00:00'),(6761,0,0,3066,2988,4228,0,0,NULL,'','HIST','ZZZ','Remark','<p>no history fall down trauma</p>\n','','',0,'0000-00-00 00:00:00','drsagar','2025-11-25 18:15:40','','0000-00-00 00:00:00'),(6762,0,0,3066,2988,4228,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>rom full</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','drsagar','2025-11-25 18:15:50','','0000-00-00 00:00:00'),(6763,0,0,3060,2982,4220,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:18:22','','0000-00-00 00:00:00'),(6764,0,0,916,884,4223,0,0,NULL,'','HIST','ZZZ','Remark','<p>Right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:21:27','','0000-00-00 00:00:00'),(6765,0,0,916,884,4223,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:22:09','','0000-00-00 00:00:00'),(6769,0,0,916,884,4223,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGTH SM MAENVEUR ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:24:39','','0000-00-00 00:00:00'),(6770,0,0,3064,2986,4226,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----3-4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:32:41','','0000-00-00 00:00:00'),(6771,0,0,3064,2986,4226,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:33:13','','0000-00-00 00:00:00'),(6772,0,0,3064,2986,4226,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>vng--Right hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:33:26','darshan','2025-11-25 19:27:53'),(6774,0,0,3067,2989,4229,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:39:54','','0000-00-00 00:00:00'),(6775,0,0,3067,2989,4229,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no ssociated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:40:22','','0000-00-00 00:00:00'),(6776,0,0,3067,2989,4229,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:40:39','darshan','2025-11-25 19:36:29'),(6777,0,0,3067,2989,4229,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:40:48','','0000-00-00 00:00:00'),(6778,0,0,2150,2097,4232,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----both ear pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:44:22','','0000-00-00 00:00:00'),(6779,0,0,2150,2097,4232,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>bilatelr neuralgic pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:44:34','','0000-00-00 00:00:00'),(6780,0,0,3065,2987,4227,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2-3 DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:52:39','','0000-00-00 00:00:00'),(6781,0,0,3065,2987,4227,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsmo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:53:15','','0000-00-00 00:00:00'),(6782,0,0,3065,2987,4227,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry----reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:53:29','darshan','2025-11-25 19:46:41'),(6784,0,0,2991,2914,4101,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic giddiness with headache remains for few hrs&thinsp;</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:56:12','','0000-00-00 00:00:00'),(6785,0,0,2991,2914,4101,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloametry---wnl</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 18:56:29','darshan','2025-11-25 18:56:46'),(6786,0,0,2593,2536,4230,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 19:02:35','','0000-00-00 00:00:00'),(6787,0,0,2593,2536,4230,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 19:02:44','','0000-00-00 00:00:00'),(6788,0,0,3058,2980,4218,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 19:14:11','','0000-00-00 00:00:00'),(6790,0,0,3074,2996,4241,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---reucrence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 19:19:58','','0000-00-00 00:00:00'),(6791,0,0,3074,2996,4241,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 19:20:02','','0000-00-00 00:00:00'),(6792,0,0,3074,2996,4241,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 19:20:30','','0000-00-00 00:00:00'),(6794,0,0,3064,2986,4226,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 19:28:26','','0000-00-00 00:00:00'),(6795,0,0,692,662,4243,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----left earwax removed&thinsp;</p>\n\n<p>Ltm---i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 19:34:02','darshan','2025-11-25 19:34:19'),(6796,0,0,692,662,4243,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Ltm</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 19:34:12','','0000-00-00 00:00:00'),(6797,0,0,3067,2989,4229,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 19:36:50','','0000-00-00 00:00:00'),(6800,0,0,3058,2980,4218,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 19:38:20','','0000-00-00 00:00:00'),(6801,0,0,3076,2998,4244,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR DEAFNESS -----2  YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 19:43:38','','0000-00-00 00:00:00'),(6802,0,0,3076,2998,4244,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---i/n</p>\n\n<p>pta--rigth very severe and left moderate sn deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 19:43:42','darshan','2025-11-25 20:12:08'),(6803,0,0,3065,2987,4227,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 19:46:43','','0000-00-00 00:00:00'),(6804,0,0,3065,2987,4227,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-25 19:47:25','','0000-00-00 00:00:00'),(6807,0,0,3064,2986,4226,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 19:48:58','','0000-00-00 00:00:00'),(6809,0,0,3067,2989,4229,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 19:51:29','','0000-00-00 00:00:00'),(6811,0,0,3065,2987,4227,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGTH SM MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-25 19:56:26','','0000-00-00 00:00:00'),(6812,0,0,3077,200,4245,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE CALCULUS CHOLECYSTITIS</STRONG></P>\r\n\r\n<P><STRONG>WITH 3 MONTH 10DAYS&nbsp; PREGNANACY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 22:56:31','mo','2025-11-28 11:03:40'),(6813,0,0,3077,200,4245,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 32 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O: LSCS BEFORE 7 YEAR, RT BREAST LUMP EXCISION BEFORE 10-12 YEAR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; G3P2A1L1<BR />\r\nC/O: ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA, NO VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION OCCASSIONALLY</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 2-3 DAYS FOR THAT PT PRIMARY CONSULTED OPD BASED AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN &AMP; PELVIS (13/03/2025 &AMP; 25/11/2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-99&#39;F, PR-115/MIN, BP-90/60MMHG, SPO2-97% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>USG ANDOMEN DONE AND REPORT ATTACHED WITH FILE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)</P>\r\n\r\n<P>REF OF DR SHILPAN GONDALIYA (GYNECOLOGIST) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>REF OF DR RAJAN JAGAD (GENERAL SURGEON) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>LAPAROSCOPIC CHOLECYSTECTOMY DONE BY DR PRATAPSINH DODIYA ON 26/11/2025 UNDER GENERAL&nbsp;&nbsp;ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>REF DR DHAVAL RAIYANI (GYNECOLOGIST) DONE ON 27/11/25 AND FOLLOW HIS ALL ADVICE.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 22:56:31','mo','2025-11-28 11:03:40'),(6814,0,0,3077,200,4245,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>TAKE LIGHT DIET</P>\r\n\r\n<P>AVOID SPICY/OILY FOOD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 22:56:31','mo','2025-11-28 11:03:40'),(6815,0,0,3077,200,4245,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ TAZOWAR</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>TAB DUDROCIAN</P>\r\n\r\n<P>TAB DOXIMINE PLUS</P>\r\n\r\n<P>TAB GLAVISURE</P>\r\n\r\n<P>SUSTEN GEL</P>\r\n\r\n<P>INJ PROLUTON DEPOT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-25 22:56:31','mo','2025-11-28 11:03:40'),(6816,0,0,2633,165,3517,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:LAPAROTOMY + PANCREATIC NECCROSECTOMY + DRAINAGE OF PERITONEAL COLLECTION + ADHENOLYSIS&nbsp; DONE BY DR B.M.THANKY &AMP; DR PRATAPSINH DODIYA ON 19/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 00:50:19','mo','2025-11-26 13:45:05'),(6817,0,0,3080,3001,4257,0,0,NULL,'','DIAG','ZZZ','Remark','ANTERIOR ANANL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-26 10:32:08','','0000-00-00 00:00:00'),(6818,0,0,3081,3002,4258,0,0,NULL,'','DIAG','ZZZ','Remark','HEMATURIYA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-26 10:37:46','','0000-00-00 00:00:00'),(6819,0,0,2854,2785,4263,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow case ---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 10:49:20','darshan','2025-11-26 10:51:11'),(6820,0,0,3082,3003,4259,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 10:55:55','darshan','2025-11-26 10:56:34'),(6821,0,0,3082,3003,4259,0,0,NULL,'','CC','ZZZ','Remark','COUGHING----2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 10:56:33','','0000-00-00 00:00:00'),(6822,0,0,3082,3003,4259,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 10:56:33','','0000-00-00 00:00:00'),(6823,0,0,3082,3003,4259,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested&thinsp;</p>\n\n<p>nose---congested&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 10:56:46','','0000-00-00 00:00:00'),(6825,0,0,3082,3003,4259,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY SOS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-26 10:58:38','','0000-00-00 00:00:00'),(6826,0,0,2584,2526,4264,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 11:04:32','','0000-00-00 00:00:00'),(6827,0,0,2584,2526,4264,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 11:05:35','','0000-00-00 00:00:00'),(6829,0,0,2584,2526,4264,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MANEUVER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-26 11:06:45','','0000-00-00 00:00:00'),(6830,0,0,2124,2070,4269,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 11:12:47','','0000-00-00 00:00:00'),(6832,0,0,2124,2070,4269,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-26 11:14:24','','0000-00-00 00:00:00'),(6833,0,0,3083,3004,4260,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---occassional giddiness and headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 11:19:19','','0000-00-00 00:00:00'),(6834,0,0,1210,1171,4267,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---maenvuer not done properely</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 11:24:27','','0000-00-00 00:00:00'),(6836,0,0,1210,1171,4267,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-26 11:26:42','','0000-00-00 00:00:00'),(6837,0,0,3087,3007,4272,0,0,NULL,'','DIAG','ZZZ','Remark','LHC PAIN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-26 11:28:32','','0000-00-00 00:00:00'),(6838,0,0,3087,3007,4272,0,0,NULL,'','DIAG','ZZZ','Remark','H/O LAP SPLEENECTOMY IN 2017','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-26 11:28:46','','0000-00-00 00:00:00'),(6839,0,0,3089,3009,4274,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 11:28:52','','0000-00-00 00:00:00'),(6840,0,0,3093,3013,4278,0,0,NULL,'','DIAG','ZZZ','Remark','H/O LAP APPENDICECTOMY','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-26 11:37:02','','0000-00-00 00:00:00'),(6841,0,0,3095,3015,4280,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----ocassional headach&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 11:46:19','','0000-00-00 00:00:00'),(6842,0,0,3021,196,4158,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING&nbsp;</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n\r\n<P>FOLEY&#39;S CATHETER IN SITU (DAY-17,NO-14)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 11:46:32','mo','2025-11-26 11:48:12'),(6843,0,0,3021,196,4158,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZIFI-CV (200)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........FOR 5 DAYS</P>\r\n\r\n<P>TAB METROGYL-ER(600MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........FOR 5 DAYS</P>\r\n\r\n<P>CAP FLUVIR(75MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........FOR 3 DAYS&nbsp;</P>\r\n\r\n<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;......... FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>CAP ENUFF(100MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; .........FOR 3 DAYS&nbsp;</P>\r\n\r\n<P>CAP ECONORM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; ..........FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB DERIPHYLLIN-R (300MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:&nbsp;</P>\r\n\r\n<P>TAB ECOSPRIN(75MG)&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0</P>\r\n\r\n<P>TAB ECOTOR(10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0</P>\r\n\r\n<P>TAB METFINE XL(25MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0</P>\r\n\r\n<P>TAB GIMMY MI&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>HOLD TAB TORKID (10) TILL FOLLOW UP&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 11:46:32','mo','2025-11-26 11:48:12'),(6844,0,0,2939,189,4019,0,0,NULL,'','TREATDISC_TI','','','<P>TAB NEXPROFAST(40MG)&nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; .......FOR 3 DAYS</P>\r\n\r\n<P>TAB ZOFER MD(4MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;.......FOR 3 DAYS</P>\r\n\r\n<P>TAB URSOCOL(150MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......FOR 3 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 11:54:31','mo','2025-11-26 11:54:40'),(6845,0,0,3091,3011,4276,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ---BEFORE 1 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 12:00:23','','0000-00-00 00:00:00'),(6846,0,0,3091,3011,4276,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 12:00:58','','0000-00-00 00:00:00'),(6847,0,0,3091,3011,4276,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>CCG---AP displacement out of normal range</p>\n\n<p>vng--rigth hz canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 12:01:15','darshan','2025-11-26 13:13:20'),(6849,0,0,1281,1240,4281,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 12:03:56','','0000-00-00 00:00:00'),(6851,0,0,3098,3018,4285,0,0,NULL,'','MADVICE','ZZZ','Remark','DAILY DRESSING \n','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-26 12:18:28','','0000-00-00 00:00:00'),(6852,0,0,3102,3022,4290,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR TINNITUS ----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 12:24:44','','0000-00-00 00:00:00'),(6853,0,0,3102,3022,4290,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS --MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 12:25:02','','0000-00-00 00:00:00'),(6854,0,0,3102,3022,4290,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic imbalance and continuous tinnitus&thinsp;</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 12:25:23','','0000-00-00 00:00:00'),(6855,0,0,3102,3022,4290,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----bilateral high freq moderate sn deafness (o)</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>CCG---AP displacment&thinsp; out of normal range</p>\n\n<p>cng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 12:25:41','darshan','2025-11-26 13:29:41'),(6858,0,0,2959,192,4054,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM 500&nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; 1--0--1&nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL SP&nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>FREEGO POWDER&nbsp; P/O&nbsp; &nbsp; 2TSF/ MILK&nbsp; HS&nbsp; AFTER FOOD&nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 12:28:37','mo','2025-11-26 12:56:22'),(6859,0,0,3103,3023,4291,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 12:35:37','','0000-00-00 00:00:00'),(6860,0,0,853,822,4294,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-- better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 12:39:18','darshan','2025-11-26 12:41:08'),(6861,0,0,2959,192,4054,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:&nbsp;LAPAROSCOPIC B/L INGUINAL HERNIOPLASTY(TAPP) DONE BY DR PRATAPSINH DODIYA ON 24/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 12:40:11','mo','2025-11-26 12:56:22'),(6862,0,0,2959,192,4054,0,0,NULL,'','OTNOTE','','','<p>per-op findings:</p>\r\n\r\n<p>-pneumoperitoneam created&nbsp;with veres needle through supraumbilical incision</p>\r\n\r\n<p>-10mm port insertion done</p>\r\n\r\n<p>-rest of port insertion&nbsp; done under vision</p>\r\n\r\n<p>-lt side indirect inguinal hernia</p>\r\n\r\n<p>rt side direct inguinal hernia</p>\r\n\r\n<p>-b/l peritoneal flap elevated</p>\r\n\r\n<p>-hernia sac seprated from cord structure carefully</p>\r\n\r\n<p>-hemostasis checked</p>\r\n\r\n<p>-prolene mesh 13 x 17 kept on both side &amp; fixed with cooper&#39;s ligated with prolene no-1</p>\r\n\r\n<p>-peritonel flap closed with vicryl 3-0</p>\r\n\r\n<p>-port site close with skin stappler.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 12:40:11','mo','2025-11-26 12:56:22'),(6863,0,0,980,949,4300,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n\n<p>single episode of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 12:45:15','','0000-00-00 00:00:00'),(6864,0,0,1177,1137,4301,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 12:57:24','','0000-00-00 00:00:00'),(6865,0,0,3109,3029,4302,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR TINNITUS---FEW ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 13:04:51','','0000-00-00 00:00:00'),(6866,0,0,3109,3029,4302,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>right ear tinnitus +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 13:06:49','darshan','2025-11-26 13:07:47'),(6867,0,0,3109,3029,4302,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 13:06:55','','0000-00-00 00:00:00'),(6868,0,0,3109,3029,4302,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta----bilateral&thinsp;high freq severe sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--left&thinsp; post canal bppv with bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 13:07:56','darshan','2025-11-26 13:53:52'),(6869,0,0,3109,3029,4302,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV WITH VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 13:08:13','','0000-00-00 00:00:00'),(6870,0,0,3091,3011,4276,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 13:13:56','','0000-00-00 00:00:00'),(6872,0,0,2633,165,3517,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>RIGHT SUBCLAVIAN CVP IN SITU(DAY-8)&nbsp;</P>\r\n\r\n<P>PANCREATIC DRAIN IN SITU (DAY- 8)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 13:19:04','mo','2025-11-26 13:45:05'),(6873,0,0,2633,165,3517,0,0,NULL,'','TREATDISC_TI','','','<P>INJ MERO (1GM/100 ML NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; 7AM--3PM--10PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 2&nbsp;DAYS(7 INJ)&nbsp;</P>\r\n\r\n<P>INJ FORCAN (200MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; 10PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 1 DAY (1 INJ)</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB COSKLOT PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB MULTILERA&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB B FOLCIN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>SYP DIPEP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;2TSF&nbsp; &nbsp;TDS&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>ALAMOS PROTEIN PODER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2 TSF WITH MILK&nbsp; BD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>HEXIDINE GARGLE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BD&nbsp; &nbsp; &nbsp; &nbsp; FOR GARGLE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 13:19:04','mo','2025-11-26 13:45:05'),(6875,0,0,3091,3011,4276,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANEUVER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-26 13:20:31','','0000-00-00 00:00:00'),(6876,0,0,2633,165,3517,0,0,NULL,'','OTNOTE','','','<p>- abdomen open in layer</p>\r\n\r\n<p>- large collection anterior to stomach ,right base of liver</p>\r\n\r\n<p>- abscess cavity open , thorough irrigation with saline ,pus flakes remove</p>\r\n\r\n<p>- multiple interbowel adhesion released</p>\r\n\r\n<p>- another large collection around spleen</p>\r\n\r\n<p>- cavity&nbsp;clean with saline</p>\r\n\r\n<p>- another collection at the root of the mesentry near d-j</p>\r\n\r\n<p>- abscess cavity opened , pancreatic necrosectomy done</p>\r\n\r\n<p>- thorough irrigation&nbsp;done with saline , hemostasis checked</p>\r\n\r\n<p>- saline wash give in pelvic , both paracolic gutter</p>\r\n\r\n<p>- drain kept in parasplenic ,parahepatic,pancreatic bed&nbsp;</p>\r\n\r\n<p>- swab &amp; instrument count done</p>\r\n\r\n<p>- linea alba closure with pds no-1</p>\r\n\r\n<p>- skin closed with skin stappler</p>\r\n\r\n<p>- risk of development of pancreatic fistula&nbsp; explained&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 13:41:20','mo','2025-11-26 13:45:05'),(6877,0,0,2695,2627,3625,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 13:52:09','','0000-00-00 00:00:00'),(6878,0,0,3109,3029,4302,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 13:54:33','','0000-00-00 00:00:00'),(6881,0,0,452,1533,4303,0,0,NULL,'','MADVICE','ZZZ','Remark','CATHETER CLAMPING\nSILICON CATHETAR \n','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-26 13:57:30','','0000-00-00 00:00:00'),(6883,0,0,3109,3029,4302,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-26 14:00:47','','0000-00-00 00:00:00'),(6884,0,0,1337,1298,4307,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--- better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 17:00:46','','0000-00-00 00:00:00'),(6885,0,0,361,345,4309,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 17:06:03','','0000-00-00 00:00:00'),(6886,0,0,1508,1467,4308,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 17:09:22','','0000-00-00 00:00:00'),(6887,0,0,3113,3032,4310,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 17:12:17','','0000-00-00 00:00:00'),(6888,0,0,2021,1973,4311,0,0,NULL,'','HIST','ZZZ','Remark','<p>follwo up case----better&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 17:15:17','','0000-00-00 00:00:00'),(6889,0,0,342,326,4312,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 17:21:41','','0000-00-00 00:00:00'),(6890,0,0,3114,3033,4313,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 17:27:50','','0000-00-00 00:00:00'),(6891,0,0,3114,3033,4313,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling and on movement of head&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 17:28:22','','0000-00-00 00:00:00'),(6892,0,0,3114,3033,4313,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>vng---rigth hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 17:28:40','darshan','2025-11-26 18:08:48'),(6894,0,0,2805,2735,4315,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>Right ear fungus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 17:46:06','','0000-00-00 00:00:00'),(6895,0,0,3114,3033,4313,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 18:10:57','','0000-00-00 00:00:00'),(6897,0,0,3120,3039,4320,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 18:15:02','','0000-00-00 00:00:00'),(6898,0,0,3122,3041,4323,0,0,NULL,'','CC','ZZZ','Remark','C/O DIARRHEA  | 2 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-26 18:17:53','','0000-00-00 00:00:00'),(6899,0,0,3122,3041,4323,0,0,NULL,'','CC','ZZZ','Remark','C/O VOMITING | 2 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-26 18:17:53','','0000-00-00 00:00:00'),(6900,0,0,2380,199,4166,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>LEFT GSV EVCT + STAB PHLEBECTOMY + FOAM SCLEROTHERAPY DONE BY DR TEJAS KARANGIYA ON 25/11/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 18:18:06','mo','2025-11-26 19:21:44'),(6901,0,0,2380,199,4166,0,0,NULL,'','OTNOTE','','','<p>-under spinal anaesthesia</p>\r\n\r\n<p>-left gsv puncture under usg</p>\r\n\r\n<p>-6 fr sheath</p>\r\n\r\n<p>-laser fibre inserted and kept 2.5 cm from sfj</p>\r\n\r\n<p>-perivenous tamuscent given</p>\r\n\r\n<p>-tip reconfirmed</p>\r\n\r\n<p>-left gsv evct done with 10 watt power</p>\r\n\r\n<p>-for dilated vein stab phlebectomy done</p>\r\n\r\n<p>-for perforator foam sclerotherapy done</p>\r\n\r\n<p>-compression dresing applied</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 18:18:06','mo','2025-11-26 19:21:44'),(6903,0,0,3114,3033,4313,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-26 18:23:01','','0000-00-00 00:00:00'),(6904,0,0,3121,3040,4322,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----recurrence of vertigo&thinsp;</p>\n\n<p>dix hallpike--rigth post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 18:31:09','','0000-00-00 00:00:00'),(6905,0,0,3121,3040,4322,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 18:31:10','','0000-00-00 00:00:00'),(6906,0,0,3121,3040,4322,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-26 18:31:22','','0000-00-00 00:00:00'),(6907,0,0,3119,3038,4319,0,0,NULL,'','CC','ZZZ','Remark','C/O CHEST PAIN  | 1 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-26 18:33:18','','0000-00-00 00:00:00'),(6910,0,0,3119,3038,4319,0,0,NULL,'','MADVICE','ZZZ','Remark','INJ LABETEOL IV STAT ','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-26 18:39:14','','0000-00-00 00:00:00'),(6911,0,0,3123,3042,4324,0,0,NULL,'','HIST','ZZZ','Remark','<p>giddiness ---2 days&thinsp;</p>\n\n<p>positional giddines</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 18:40:28','','0000-00-00 00:00:00'),(6912,0,0,3123,3042,4324,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 18:41:04','','0000-00-00 00:00:00'),(6915,0,0,2380,199,4166,0,0,NULL,'','TREATDISC_TI','','','<P>TAB PHEXIN (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB PHLOGAM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB VENOFLEX&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>FREEGO POWDER (2TSF)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>CONTINUE OWN MEDICINE:</STRONG></P>\r\n\r\n<P>TAB METFORMIN + GLIM (500/2)&nbsp; &nbsp; &nbsp; &nbsp; 0--0--1/2</P>\r\n\r\n<P>TAB HOLYTEL TRIO(40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0</P>\r\n\r\n<P>TAB ATORVA (10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1</P>\r\n\r\n<P>TAB DAXIGA M (500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0</P>\r\n\r\n<P>TAB ASPIRIN (150) &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 18:42:35','mo','2025-11-26 19:21:44'),(6916,0,0,3123,3042,4324,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER\nSOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-26 18:42:39','','0000-00-00 00:00:00'),(6917,0,0,3084,3005,4262,0,0,NULL,'','DIAG','ZZZ','Remark','ENTERITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-26 18:45:37','','0000-00-00 00:00:00'),(6918,0,0,3086,3006,4270,0,0,NULL,'','DIAG','ZZZ','Remark','MENORRHAGIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-26 18:46:29','','0000-00-00 00:00:00'),(6919,0,0,2597,2540,4326,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---vertigo persist</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 18:47:33','','0000-00-00 00:00:00'),(6921,0,0,3125,3044,4327,0,0,NULL,'','DIAG','ZZZ','Remark','CLW ON FACE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-26 18:51:26','','0000-00-00 00:00:00'),(6922,0,0,3112,3031,4306,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE GASTRITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-26 18:52:19','','0000-00-00 00:00:00'),(6923,0,0,3111,204,4305,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-RIGHT ORBITAL DISPLACED FRACTURE</STRONG></P>\r\n\r\n<P><STRONG>-RIGHT SIDE CLOSED PROXIMAL HUMERUS # DISLOCATION WITHOUT DNVD</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 19:08:36','mo','2025-11-26 19:17:25'),(6924,0,0,3111,204,4305,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 32 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O: RTA AROUND 9 AM AT HOSPITRAL CHOWK OVERBRIDGE HIT BY CAR F&#39;BY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO H/O VOMITING, NO H/O LOC</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PAIN IN RIGHT SHOULDER JOINT</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SWELLING &AMP; BLACKISH DISCOLORATION OVER RIGHT EYE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ABRASION OVER FACE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO FEVER</P>\r\n\r\n<P>FOR ABOVE C/O PT CONSULTED TO CIVIL HOSPITAL&nbsp;AND THEN CAME TO ER DEPARTMENT AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>RIGHT SHOULDER X-RAY (26/11/2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-86/MIN, BP-122/76MMHG, SPO2-989% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>SHOULDER IMMOBILIZER GIVEN</P>\r\n\r\n<P>CT BRAIN WITH&nbsp;FACE DONE ON 26/11/2025 ; REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT GENERAL CONDITION &AMP; PROGNOSIS EXPLAINED TO RELATIVE, ADVISED FOR OPTHAMOLOGIST REFERENCE AND SURGERY BUT THEY REFUSED AND WANT DISCHARGE AGAINST&nbsp;MEDICAL ADVICE SO PATIENT IS BEING DAMA.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 19:08:36','mo','2025-11-26 19:17:25'),(6925,0,0,3111,204,4305,0,0,NULL,'','DISCCOND','','','<P>RIGHT SHOULDER PAIN</P>\r\n\r\n<P>RIGHT EYE SWELLING &AMP; PAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 19:08:36','mo','2025-11-26 19:17:25'),(6926,0,0,3111,204,4305,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION</P>\r\n\r\n<P>OPTHALMOLOGIST OPINION</P>\r\n\r\n<P>MAXILLOFASCIAL SURGEON OPINION</P>\r\n\r\n<P>SURGERY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 19:08:36','mo','2025-11-26 19:17:25'),(6927,0,0,3111,204,4305,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DICLO</P>\r\n\r\n<P>INJ TRAMADOL</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>TAB CHYMORAL FORTE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 19:08:36','mo','2025-11-26 19:17:25'),(6928,0,0,3111,204,4305,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-26 19:12:29','mo','2025-11-26 19:17:25'),(6929,0,0,3130,3049,4335,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---recurence of veritgo&thinsp;</p>\n\n<p>positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 19:14:48','','0000-00-00 00:00:00'),(6930,0,0,3130,3049,4335,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---nad</p>\n\n<p>dix hallpike--right torsonal geotropic nystagmus&thinsp;</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 19:15:16','','0000-00-00 00:00:00'),(6931,0,0,3130,3049,4335,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-26 19:16:00','','0000-00-00 00:00:00'),(6935,0,0,3130,3049,4335,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVEUR ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-26 19:17:53','','0000-00-00 00:00:00'),(6937,0,0,3129,3048,4334,0,0,NULL,'','MADVICE','ZZZ','Remark','INJ INFUPAR IV STAT','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-26 19:30:58','','0000-00-00 00:00:00'),(6940,0,0,3134,3053,4340,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE APPENDICITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-26 19:46:14','','0000-00-00 00:00:00'),(6941,0,0,3131,3050,4337,0,0,NULL,'','DIAG','ZZZ','Remark','OBSTRUCTIVE JAUNDICE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-26 19:51:26','','0000-00-00 00:00:00'),(6942,0,0,3131,3050,4337,0,0,NULL,'','DIAG','ZZZ','Remark','GB STONE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-26 19:51:45','','0000-00-00 00:00:00'),(6943,0,0,3131,3050,4337,0,0,NULL,'','DIAG','ZZZ','Remark','HTN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-26 19:51:54','','0000-00-00 00:00:00'),(6944,0,0,3142,206,4350,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 53&nbsp; YEARS OLD FEMALE&nbsp; PATIENT PRESENT WITH,<BR />\r\nH/O : CHEST PAIN LEFT SIDE, UPPER EXTRIMTIY PAIN SICNE 1 DAYS.&nbsp;<BR />\r\nK/C/O: HTN ON RX.<BR />\r\nON EXAMINATION B.P- 210/110 MMHG.</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; 1 DAYS.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 97.0`F<BR />\r\nPR- 90/MIN<BR />\r\nBP-210/110 MMHG&nbsp;<BR />\r\nSPO2-99% ON RA&nbsp;<BR />\r\nRR-24/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26-11-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF HYPERTENSION INJ. LOBET GIVEN AND INJ. NTG START BY INFUSION PUMP.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27/11/2025 ON LOWER ABDOMINAL PAIN PRESENT SO USG ABDOMEN DONE AND NTG DRIP STOPPED AND ORALLY ANTIHYPERTENSIVE MEDICINE DOSE MODIFIED AND ORALLY TOLERTAED WELL THAN DISCHARGED.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 22:10:47','mo','2025-11-27 13:47:06'),(6945,0,0,3142,206,4350,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. VOMISET</P>\r\n\r\n<P>INJ. NTG</P>\r\n\r\n<P>INJ. LOBET</P>\r\n\r\n<P>INJ.TRAMADOL.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 22:10:47','mo','2025-11-27 13:47:06'),(6946,0,0,3085,203,4266,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n<BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 22:22:53','mo','2025-12-03 19:25:05'),(6947,0,0,3085,203,4266,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 68 YEARS OLD MALE&nbsp;PATIENT PRESENT WITH,<BR />\r\nH/O :&nbsp;<BR />\r\nK/C/O: HTN, DM, OLD CVA (2020) DRUG DEFALTER.<BR />\r\nC/O:DROWSY, DISORIENTED</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; RESPONDING ON DPS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BREATHLESNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; INVOLENTORY UNINATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; LETHARGIC</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE TODAY MORNING.&nbsp;<BR />\r\nPRIMARY TREATMENT TAKEN AT DR. SAMIR NAYAK (KRISHNA HOSPITAL).<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:&nbsp;<BR />\r\nTEMP- 98.2`F<BR />\r\nPR- 114/MIN<BR />\r\nBP- MMHG&nbsp;<BR />\r\nSPO2-99% ON RA&nbsp;<BR />\r\nRR- 54/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS- DROWSY, DISORIENTED, IRRITABLE, ALL LIMB INVOLANTEORY MOVEMENT.<BR />\r\nRS-BLAE+, CRAPS +NT.<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26-11-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ABG DONE.S/O CO2 NARCOSIS.</P>\r\n\r\n<P>IN VIEW OF RESPIRATORY FAILAR ENDOTRACHEAL INTUBATION DONE ET TUBE - 7.5 NO, AND PUT ON VENTILATOR SUPPORT AC/VC MODE.</P>\r\n\r\n<P>RT DONE.</P>\r\n\r\n<P>FOLY`S DONE.</P>\r\n\r\n<P>D-DIMER = 1539NG/ML.</P>\r\n\r\n<P>NT- PRO - BNP - 1060 PG/ML.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION INJ. NORAD START BY INFUSION PUMP.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27-11-2025,</P>\r\n\r\n<P>PATIENT ON VENTI SUPPORT A/C VC MODE.</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>ABG DONE.</P>\r\n\r\n<P>RT FEEDING STARTED.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28/11/25,</P>\r\n\r\n<P>PATIENT ON VENTI SUPPORT A/C VC MODE.</P>\r\n\r\n<P>ABG DONE.</P>\r\n\r\n<P>GRADUALLY PATIENT&#39;S BLOOD PRESSURE WAS IMPROVING SO,IV NORAD DRIP TAPER AND OFF.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>29/11/25,</P>\r\n\r\n<P>PATIENT ON VENTI SUPPORT A/C CV&nbsp;MODE.C-PAP TRIAL GIVEN.</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>30/11/25,</P>\r\n\r\n<P>PATIENT ON VENTI SUPPORT C-PAP MODE.</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>O2 T-PIECE TRIAL GIVEN.F/BY EXTUBATED.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>01/12/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>RYLE&#39;S TUBE REMOVED.ORALLY DIET GIVEN.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>02/12/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>03/12/2025</P>\r\n\r\n<P>PATIENT IS HAVING NO FRESH COMPLAIN.</P>\r\n\r\n<P>DISCHARGE FROM HOSPITAL</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>NOW&nbsp;PATIENT IS HAVING NO FRESH COMPLAIN AND VITALLY STABLE</P>\r\n\r\n<P>SO CONSIDER FOR DISCHARGE IN HEMODYNAMICLLY STABLE CONDITION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 22:22:53','mo','2025-12-03 19:25:05'),(6948,0,0,3085,203,4266,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. MEZOR</P>\r\n\r\n<P>INJ. CLARIBID</P>\r\n\r\n<P>CAP. FLUVIR</P>\r\n\r\n<P>INJ. DERIPHYLIN</P>\r\n\r\n<P>INJ. DYTOR</P>\r\n\r\n<P>INJ. CLEXANE</P>\r\n\r\n<P>TAB. BISOBIS</P>\r\n\r\n<P>NEB. DUOLIN : BUDACORT</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ. IVEPRED</P>\r\n\r\n<P>INJ. FENTANYL</P>\r\n\r\n<P>INJ. MIDAZOLAM</P>\r\n\r\n<P>INJ. NORAD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-26 22:22:53','mo','2025-12-03 19:25:05'),(6949,0,0,2980,202,4265,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE CALCULUS CHOLECYSTITIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 00:05:09','mo','2025-11-27 20:34:18'),(6950,0,0,2980,202,4265,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 00:05:09','mo','2025-11-27 20:34:18'),(6951,0,0,2980,202,4265,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 68&nbsp;YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O: RECENTLY ADMITTED AT MANIPAL HOSPITAL FOR ACUTE CALCULUS CHOLECYSTITIS B/W 21/11/25 TO 23/11/25.<BR />\r\nC/O: ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER ON &AMP; OFF BEFORE 1 WEEK</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 15 DAYS FOR THAT PRIMARY CONSULTED AT MANIPAL HOSPITAL &AMP;&nbsp;</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-95/MIN, BP-122/70MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nLAPAROSCOPIC CHOLECYSTECTOMY DONE BY DR PRATAPSINH DODIYA ON 26/11/2025 UNDER GENERAL&nbsp; ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 00:05:09','mo','2025-11-27 20:34:18'),(6952,0,0,2980,202,4265,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:LAPAROSCOPIC CHOLECYSTECTOMY DONE BY DR PRATAPSINH DODIYA ON 26/11/2025 UNDER GENERAL&nbsp; ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 00:05:09','mo','2025-11-27 20:34:18'),(6953,0,0,2980,202,4265,0,0,NULL,'','OTNOTE','','','<p>-distended gb</p>\r\n\r\n<p>-single cystic artery- couagulated &amp; cut</p>\r\n\r\n<p>-single cystic duct - double clipped</p>\r\n\r\n<p>-gb separated from gb fossa</p>\r\n\r\n<p>-gb removal done in endobag</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-rt drain kept in gb fossa</p>\r\n\r\n<p>-10 mm port sheath closed with vicryl-o (port)</p>\r\n\r\n<p>-skin closed with skin stappler</p>\r\n\r\n<p>-dressing kept</p>\r\n\r\n<p>-gb sent for hpe.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 00:05:09','mo','2025-11-27 20:34:18'),(6954,0,0,2980,202,4265,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER SATURDAY&nbsp;EVENING</P>\r\n\r\n<P>AVOID HEAVY WEIGHT LIFTING TILL 6 WEEKS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 00:05:09','mo','2025-11-27 20:34:18'),(6955,0,0,2980,202,4265,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 00:05:09','mo','2025-11-27 20:34:18'),(6956,0,0,3077,200,4245,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 00:12:52','mo','2025-11-28 11:03:40'),(6957,0,0,3077,200,4245,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>LAPAROSCOPIC CHOLECYSTECTOMY DONE BY DR PRATAPSINH DODIYA ON 26/11/2025 UNDER GENERAL&nbsp;&nbsp;ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 00:12:52','mo','2025-11-28 11:03:40'),(6958,0,0,3077,200,4245,0,0,NULL,'','OTNOTE','','','<p>PER-OP FINDINGS</p>\r\n\r\n<p>-thick wall , distended gb</p>\r\n\r\n<p>-SINGLE CYSTIC ARTERY- clipped &amp; CUT</p>\r\n\r\n<p>-SINGLE CYSTIC DUCT&nbsp;- DOUBLE CLIPPED</p>\r\n\r\n<p>-GB SEPARATED FROM GB FOSSA</p>\r\n\r\n<p>-GB REMOVAL DONE IN ENDOBAG</p>\r\n\r\n<p>-HEMOSTASIS ACHIEVED</p>\r\n\r\n<p>-RT DRAIN KEPT IN GB FOSSA</p>\r\n\r\n<p>-uterus enlarge</p>\r\n\r\n<p>-10 MM PORT SHEATH CLOSED WITH VICRYL-O (PORT)</p>\r\n\r\n<p>-SKIN CLOSED WITH SKIN STAPPLER<br />\r\n-DRESSING KEPT</p>\r\n\r\n<p>-GB SENT FOR HPE.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 00:12:52','mo','2025-11-28 11:03:40'),(6959,0,0,3005,201,4261,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-SEVERE IRON DEFICIENCY ANEMIA</STRONG></P>\r\n\r\n<P><STRONG>-LEFT NON- FUNCTIONING KIDNEY (OBSTRUCTIVE UROPATHY)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 00:27:22','mo','2025-11-27 20:43:48'),(6960,0,0,3005,201,4261,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-27 00:27:22','mo','2025-11-27 20:43:48'),(6961,0,0,3005,201,4261,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 39 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:COVID-19 TX TAKEN (2020)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; RENAL CALCULI (SINCE 7-8 YEAR)<BR />\r\nC/O:BREATHLESSNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GABHRAMAN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 2 DAYS FOR THAT NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-100/MIN, BP-100/80MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF LOW HB (5.5 GM/DL) 3 UNIT RCC GIVEN</P>\r\n\r\n<P>2D ECHO DONE ;LVEF:60%</P>\r\n\r\n<P>IN VIEW OF RENAL CALCULI &AMP; HYDRONEPHROSIS REF OF DR PRATIK SHAH (UROLOGIST) DONE AND FOLLOW HIS ALL ADVICE.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 00:27:22','mo','2025-11-27 20:43:48'),(6962,0,0,3005,201,4261,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP ON MONDAY WITH STOOL OB REPORTS</P>\r\n\r\n<P>PLAN: DTPA SCAN AND THAN UROLOGIST OPINION</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 00:27:22','mo','2025-11-27 20:43:48'),(6963,0,0,3005,201,4261,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ PANTO</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ THAYA-B</P>\r\n\r\n<P>INJ B29 AQ FPS</P>\r\n\r\n<P>INJ&nbsp; RCC</P>\r\n\r\n<P>INJ DYTOR</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 00:27:22','mo','2025-11-27 20:43:48'),(6964,0,0,3141,205,4349,0,0,NULL,'','DISCDIAG','','','<P><STRONG>OBSTRUCTIVE JAUNDICE (&nbsp;CBD STONE )+ GB STONE</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN,COPD&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 09:16:42','mo','2025-11-27 09:46:02'),(6965,0,0,3141,205,4349,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-27 09:16:42','mo','2025-11-27 09:46:02'),(6966,0,0,3141,205,4349,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 63 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN,COPD&nbsp;<BR />\r\nC/O:ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;CONSTIPTION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FEVER ON AND OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO VOMITING&nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 5-6 DAYS&nbsp; SO&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>MRCP DONE ON 26/11/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>USG ABDOMEN + PELVIS DONE ON 24/11/2025 REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-105/MIN, BP-220/130MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS UNDER OBSERVATION IN ICU&nbsp;</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF HIGH BLOOD PRESSURE INJ NTG DRIP START</P>\r\n\r\n<P>FURTHER FEW HOUR UNEVENTFULL AND BLOOD PRESSURE IN CONTROLLED SO SHIFT TO WARD&nbsp;</P>\r\n\r\n<P>REFERENCE OF DR RISHIKESH KALARIA(DNB GASTRO) DONE AND ADVICE FOR ERCP&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>INJ NTG DRIP CONTINUE @ BLOOD PRESSURE&nbsp;</P>\r\n\r\n<P>PATIENT GENERAL CONDITION AND PROGNOSIS EXPLAIN TO PATIENT RELATIVE BUT THEY WANT DISCHARGE AGAINST MEDICAL ADVICE SO NOW PATIENT BEING DAMA&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 09:16:42','mo','2025-11-27 09:46:02'),(6967,0,0,3141,205,4349,0,0,NULL,'','DISCCOND','','','<P>HIGH BLOOD PRESSURE WITH INOTRIPIC SUPPORT&nbsp;</P>\r\n\r\n<P>FEVER ON AND OFF&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 09:38:46','mo','2025-11-27 09:46:02'),(6968,0,0,3141,205,4349,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION</P>\r\n\r\n<P>ERCP&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 09:38:46','mo','2025-11-27 09:46:02'),(6969,0,0,3141,205,4349,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD&nbsp; &nbsp; 1.5GM/DILUTED&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; BD</P>\r\n\r\n<P>INJ METROGYL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; TDS</P>\r\n\r\n<P>INJ PANTODAC 40MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp;BD&nbsp;</P>\r\n\r\n<P>INJ EMSET&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp;TDS</P>\r\n\r\n<P>INJ LOBET&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; STAT</P>\r\n\r\n<P>TAB CORTEL 40MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; STAT</P>\r\n\r\n<P>INJ NTG DRIP&nbsp;</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 09:38:46','mo','2025-11-27 09:46:02'),(6970,0,0,2623,2563,4362,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow u pcase---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 10:48:05','','0000-00-00 00:00:00'),(6971,0,0,2623,2563,4362,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 10:48:36','','0000-00-00 00:00:00'),(6973,0,0,2623,2563,4362,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-27 10:49:17','','0000-00-00 00:00:00'),(6974,0,0,1900,1854,4360,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 10:51:28','','0000-00-00 00:00:00'),(6975,0,0,1512,1471,4365,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 10:56:27','','0000-00-00 00:00:00'),(6976,0,0,1512,1471,4365,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 10:56:34','','0000-00-00 00:00:00'),(6977,0,0,3152,3066,4361,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 11:00:44','darshan','2025-11-27 11:45:59'),(6978,0,0,3148,3064,4356,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 11:01:25','','0000-00-00 00:00:00'),(6979,0,0,3165,3079,4378,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 11:19:32','','0000-00-00 00:00:00'),(6980,0,0,3165,3079,4378,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed</p>\n\n<p>sometime non positional also</p>\n\n<p>heaviness of head +</p>\n\n<p>frequent headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 11:20:27','darshan','2025-11-27 12:29:05'),(6981,0,0,3165,3079,4378,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta----bilateral high freq severe sn deafness&thinsp;</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 11:20:36','darshan','2025-11-27 12:29:49'),(6983,0,0,3166,3080,4379,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling with nausea and vomiting initially</p>\n\n<p>presently sense of imbalance +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 11:22:01','darshan','2025-11-27 11:29:21'),(6984,0,0,3166,3080,4379,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----8-10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 11:28:37','','0000-00-00 00:00:00'),(6985,0,0,3166,3080,4379,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---left beat&thinsp;</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---Right abnormal</p>\n\n<p>pta----bialtelr high frq severe sn&thinsp; deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>CCG--AP displacement out of range</p>\n\n<p>vng--right acute partial vestibular deficit</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 11:29:51','darshan','2025-11-27 12:58:05'),(6986,0,0,3166,3080,4379,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ACUTE PARTIAL VESTIBULAR DEFICIT','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 11:30:06','','0000-00-00 00:00:00'),(6987,0,0,3161,3075,4374,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 11:37:13','','0000-00-00 00:00:00'),(6988,0,0,3161,3075,4374,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo---sudden onset any time and remains for few hrs&thinsp;</p>\n\n<p>headache +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 11:38:06','darshan','2025-11-27 11:38:41'),(6989,0,0,3161,3075,4374,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE--MANY MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 11:38:13','','0000-00-00 00:00:00'),(6990,0,0,3161,3075,4374,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 11:38:51','darshan','2025-11-27 13:23:47'),(6992,0,0,1419,1378,4388,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 11:41:46','','0000-00-00 00:00:00'),(6993,0,0,3171,3085,4389,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--medicine skipped</p>\n\n<p>recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 11:50:00','','0000-00-00 00:00:00'),(6994,0,0,2626,2566,4386,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 11:53:08','','0000-00-00 00:00:00'),(6996,0,0,2626,2566,4386,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-27 11:54:44','','0000-00-00 00:00:00'),(6997,0,0,3169,3083,4385,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 11:56:39','','0000-00-00 00:00:00'),(6998,0,0,3135,3054,4364,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 .5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 12:08:28','','0000-00-00 00:00:00'),(6999,0,0,3135,3054,4364,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is in any posture she feels sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associted other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 12:09:15','','0000-00-00 00:00:00'),(7000,0,0,3135,3054,4364,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>Mri brain--nad</p>\n\n<p>&thinsp;pta--right moderate sn deafness</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 12:09:36','darshan','2025-11-27 13:39:42'),(7001,0,0,3156,3070,4368,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 12:12:27','','0000-00-00 00:00:00'),(7002,0,0,3157,3071,4370,0,0,NULL,'','CC','ZZZ','Remark','THROAT PAIN--1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 12:17:30','','0000-00-00 00:00:00'),(7003,0,0,3157,3071,4370,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx--congested</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 12:17:34','','0000-00-00 00:00:00'),(7004,0,0,3149,208,4357,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ALCOHOL WITHDRAWAL INDUCED PERIPHERAL NEUROPATHY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 12:18:09','mo','2025-11-27 12:37:06'),(7005,0,0,3149,208,4357,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 51 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: ALCOHOLIC<BR />\r\nH/O: GTCS BEFORE 4 MONTHS<BR />\r\nC/O: TINGLING &AMP; NUMBNESS IN EXTREMITIES</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SLURRED SPEECH</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;HEADACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;GABHARAMAN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NO H/O LOC, VOMITING, CONVULSION</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/PO PRESENTED SINCE EVENING SO PT CAME TO ER DEPARTMENT AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-90/MIN, BP-140/80MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 12:18:09','mo','2025-11-27 12:37:06'),(7006,0,0,3149,208,4357,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>CONSCIOUS, ORIENTED</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 12:18:09','mo','2025-11-27 12:37:06'),(7007,0,0,3149,208,4357,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 12:18:09','mo','2025-11-27 12:37:06'),(7008,0,0,3149,208,4357,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>TAB CREMALAX</P>\r\n\r\n<P>SYP CREMAFFIN PLUS</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 12:18:09','mo','2025-11-27 12:37:06'),(7009,0,0,3159,3073,4372,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 12:22:39','','0000-00-00 00:00:00'),(7010,0,0,3149,208,4357,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-27 12:24:11','mo','2025-11-27 12:37:06'),(7011,0,0,3149,208,4357,0,0,NULL,'','TREATDISC_TI','','','<P>CAP KRIRAB DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB THAYA-B&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB LEVIPIL(500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 1--1--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB TRICIUM HD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ATIVAN (1MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB VIMGRAM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB PRESTA M&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;15ML HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 12:24:11','mo','2025-11-27 12:37:06'),(7012,0,0,3160,3074,4373,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 12:40:18','','0000-00-00 00:00:00'),(7013,0,0,3160,3074,4373,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo----sudden onset&thinsp; of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 12:41:46','','0000-00-00 00:00:00'),(7014,0,0,3160,3074,4373,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 12:41:56','darshan','2025-11-27 14:01:06'),(7015,0,0,3160,3074,4373,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 12:42:02','','0000-00-00 00:00:00'),(7016,0,0,3170,3084,4387,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---medicien skipped&thinsp;</p>\n\n<p>recurrence of headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 12:44:41','','0000-00-00 00:00:00'),(7017,0,0,3176,3090,4398,0,0,NULL,'','CC','ZZZ','Remark','CHEST PAIN INTERMITTENTLY | 10 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-27 12:45:12','','0000-00-00 00:00:00'),(7018,0,0,3176,3090,4398,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-27 12:46:57','','0000-00-00 00:00:00'),(7019,0,0,3177,3091,4399,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----15-20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 12:51:37','','0000-00-00 00:00:00'),(7020,0,0,3177,3091,4399,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and sit down he feels imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 12:52:30','','0000-00-00 00:00:00'),(7021,0,0,3177,3091,4399,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>&thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp; reduced SS score</p>\n\n<p>vng----right acute partial vestibular deficit</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 12:52:46','darshan','2025-11-27 14:12:51'),(7023,0,0,3142,206,4350,0,0,NULL,'','DISCDIAG','','','<P>HTN&nbsp;EMERGENCY&nbsp; K/C/O: HTN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 12:58:46','mo','2025-11-27 13:47:06'),(7024,0,0,3142,206,4350,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY : HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 12:58:46','mo','2025-11-27 13:47:06'),(7025,0,0,55,49,4392,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 13:05:06','','0000-00-00 00:00:00'),(7026,0,0,662,632,4402,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---single episode of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 13:09:46','','0000-00-00 00:00:00'),(7027,0,0,1698,1653,4393,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---maenvuer not done properly</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 13:18:21','','0000-00-00 00:00:00'),(7028,0,0,1698,1653,4393,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus-=---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 13:18:33','','0000-00-00 00:00:00'),(7029,0,0,1698,1653,4393,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 13:19:25','','0000-00-00 00:00:00'),(7031,0,0,1698,1653,4393,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MENAVUER---','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-27 13:20:42','','0000-00-00 00:00:00'),(7032,0,0,3142,206,4350,0,0,NULL,'','FOOD_DRUG_ALLERGIES','','','<P>NO ANY.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 13:28:31','mo','2025-11-27 13:47:06'),(7033,0,0,3142,206,4350,0,0,NULL,'','ADVICE','','','<P>ADVISE :</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>- RELUGAR BP MONITER AT HOME.</P>\r\n\r\n<P>- SRD DIET.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 13:30:02','mo','2025-11-27 13:47:06'),(7034,0,0,3174,3088,4396,0,0,NULL,'','HIST','ZZZ','Remark','<p>follwo up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 13:31:53','','0000-00-00 00:00:00'),(7035,0,0,3175,3089,4397,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n\n<p>occassional giddiness</p>\n\n<p>follow up pta---same as previous</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 13:36:04','','0000-00-00 00:00:00'),(7036,0,0,3180,3095,4405,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---TODAY MORNING||','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 13:49:39','','0000-00-00 00:00:00'),(7037,0,0,3180,3095,4405,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of sense of imbalance and heaviness of head +</p>\n\n<p>nausea feeling</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 13:50:18','darshan','2025-11-27 13:50:53'),(7038,0,0,3180,3095,4405,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix halpike--nas</p>\n\n<p>hit-nad</p>\n\n<p>Neurologist opinion taken(dr kalpesh sanariya)</p>\n\n<p>pta---bilatelr high freq&thinsp; moderate sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---right labyrinthine pathology(with cinnarizine and stemetil)</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 13:50:50','darshan','2025-11-27 14:24:56'),(7041,0,0,3160,3074,4373,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 14:01:26','','0000-00-00 00:00:00'),(7042,0,0,2782,198,4161,0,0,NULL,'','DISCDIAG','','','<P><STRONG>INCISIONAL HERNIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM II,HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 14:02:25','mo','2025-11-28 16:29:57'),(7043,0,0,2782,198,4161,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 14:02:25','mo','2025-11-28 16:29:57'),(7044,0,0,2782,198,4161,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 69 YEARS OLD FEMALE&nbsp; PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II , HTN ON MEDICATION FROM 12 YEARS<BR />\r\nH/O: UMBILICAL HERNIOPLASTY DONE ON 2019 AT HCG HOSPITAL<BR />\r\nC/O: PAIN IN ABDOMEN&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VOMITING&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ABDOMINAL SWELLING&nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 6-7 MONTHS PATIENT PRIMARILY CONSULTED AT OPD BASE NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-70/MIN, BP-130/80MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nLAPAROSCOPIC INCISIONAL HERNIOPLASTY (E-TEP-RS + RT SIDE TAR) DONE BY DR PRATAPSINH DODIYA ON 25/11/2025 UNDER ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO ICU.</P>\r\n\r\n<P>IN VIEW OF HYPERTENSION INJ.LABET GIVEN.</P>\r\n\r\n<P>FURTHER 24 HOUR STAY UNEVENTFUL PATIENT SHIFTED TO WARD.&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 14:02:25','mo','2025-11-28 16:29:57'),(7045,0,0,2782,198,4161,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>LAPAROSCOPIC INCISIONAL HERNIOPLASTY (E-TEP-RS + RT SIDE TAR) DONE BY DR PRATAPSINH DODIYA ON/2025 UNDER ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 14:02:25','mo','2025-11-28 16:29:57'),(7046,0,0,2782,198,4161,0,0,NULL,'','OTNOTE','','','<p>-5 mm palmer point trocar insertion done after inflamating abdomen with verress needle.</p>\r\n\r\n<p>-another 5 mm trocar insertion done in left iliac fossa under vision</p>\r\n\r\n<p>-small bowel , colon, omentum, adherent with previous scar</p>\r\n\r\n<p>-adhesinolysis done carefully</p>\r\n\r\n<p>-multiple large defects in midline scar</p>\r\n\r\n<p>-lhc retro-muscular trocar insertion done by open method</p>\r\n\r\n<p>-left retro-muscular space dissection done</p>\r\n\r\n<p>-two 5 mm trocar insertion done&nbsp;</p>\r\n\r\n<p>-midline crossover done by cutting b/l prs in epigastric region . right retro muscular space dissection done.</p>\r\n\r\n<p>-it was not possible to preserve&nbsp;hernia&nbsp; sac in midline</p>\r\n\r\n<p>-another hernia at drain site in rt iliac fossa</p>\r\n\r\n<p>-dissection done till retro pubic space</p>\r\n\r\n<p>-rt side tar (transverse abdominalis) done</p>\r\n\r\n<p>-linea alba with defect closed with pbt ( non absorbable) no.1</p>\r\n\r\n<p>-prs closed with pds (2-0)&nbsp;</p>\r\n\r\n<p>-hemostasis checked</p>\r\n\r\n<p>-prolene mesh 22x27 cm kept in retro muscular space&nbsp;</p>\r\n\r\n<p>-10 mm prt lhc sheath closed with vicryl no.1</p>\r\n\r\n<p>-skin closed with skin stappler.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 14:02:25','mo','2025-11-28 16:29:57'),(7047,0,0,3179,3094,4404,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 14:04:58','','0000-00-00 00:00:00'),(7048,0,0,3177,3091,4399,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 14:13:42','','0000-00-00 00:00:00'),(7050,0,0,2897,183,3959,0,0,NULL,'','ADVICE','','','<P>ADVISE :</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>- CONTINUES HOSPITALISATION.</P>\r\n\r\n<P>- DAILY HD.</P>\r\n\r\n<P>- EARLY CAG&nbsp;</P>\r\n\r\n<P>- INTROPIC SUPPORT.</P>\r\n\r\n<P>- IV ALBUMIN.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 14:16:25','mo','2025-11-27 14:21:32'),(7052,0,0,3160,3074,4373,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGTH  SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-27 14:18:33','','0000-00-00 00:00:00'),(7055,0,0,3177,3091,4399,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-27 14:26:59','','0000-00-00 00:00:00'),(7057,0,0,3180,3095,4405,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-27 14:35:22','','0000-00-00 00:00:00'),(7058,0,0,3181,3096,4406,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden giddiness with nausae +</p>\n\n<p>no headache or other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 14:47:40','darshan','2025-11-27 14:48:20'),(7059,0,0,3181,3096,4406,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---TODAY 1.00 PM||','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 14:47:59','','0000-00-00 00:00:00'),(7060,0,0,3181,3096,4406,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---down beat nystmgus&thinsp;</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain---nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 14:48:36','darshan','2025-11-28 13:12:27'),(7062,0,0,2782,198,4161,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>ABDOMINAL BELT</P>\r\n\r\n<P>RBS MONITORING</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 15:19:09','mo','2025-11-28 16:29:57'),(7063,0,0,2782,198,4161,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD&nbsp;</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTO&nbsp;</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ TAZOMAC</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>INJ LOBET</P>\r\n\r\n<P>INJ H. ATRAPIT</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>TAB C-DUP</P>\r\n\r\n<P>TAB VOGLINET GM</P>\r\n\r\n<P>ALLEX LOGENGES</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 15:19:09','mo','2025-11-28 16:29:57'),(7064,0,0,3005,201,4261,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 16:48:51','mo','2025-11-27 20:43:48'),(7065,0,0,2680,2615,4411,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 17:10:59','','0000-00-00 00:00:00'),(7066,0,0,1689,1644,4412,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---two episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 17:17:24','','0000-00-00 00:00:00'),(7069,0,0,1689,1644,4412,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN 8TH NERVE PROTOCOL','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-27 17:20:04','','0000-00-00 00:00:00'),(7070,0,0,1066,1032,4414,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better partially</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 17:22:23','','0000-00-00 00:00:00'),(7071,0,0,2666,2604,4419,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 17:25:33','','0000-00-00 00:00:00'),(7074,0,0,2666,2604,4419,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-27 17:30:02','','0000-00-00 00:00:00'),(7075,0,0,3188,3101,4420,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---headache off and on</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 17:40:26','','0000-00-00 00:00:00'),(7076,0,0,3189,3102,4421,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 17:43:12','darshan','2025-11-27 17:51:40'),(7077,0,0,783,751,4428,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 18:07:23','','0000-00-00 00:00:00'),(7078,0,0,1583,1540,4429,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo</p>\n\n<p>headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 18:20:04','','0000-00-00 00:00:00'),(7079,0,0,3194,3107,4433,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT SIDE LOWER CHEST PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-27 18:23:04','','0000-00-00 00:00:00'),(7080,0,0,3196,3109,4436,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ------3 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 18:37:55','','0000-00-00 00:00:00'),(7081,0,0,3196,3109,4436,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>right ear deafness and tinnitus&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 18:38:13','darshan','2025-11-27 18:39:47'),(7082,0,0,3196,3109,4436,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>Pta---rigth moderate sn deafness</p>\n\n<p>Mri brain--no sol</p>\n\n<p>vemp----right side reduced significantly</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 18:38:55','darshan','2025-11-27 19:29:25'),(7083,0,0,3196,3109,4436,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR DEAFNESS--3 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 18:39:10','','0000-00-00 00:00:00'),(7084,0,0,3196,3109,4436,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 18:41:16','','0000-00-00 00:00:00'),(7085,0,0,3198,3111,4438,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER BACK PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-27 18:46:36','','0000-00-00 00:00:00'),(7086,0,0,3143,207,4351,0,0,NULL,'','DISCDIAG','','10','<P>&nbsp;</P>\r\n\r\n<P><STRONG><SPAN STYLE=\"FONT-SIZE:12PT\">ACUTE ENTERO HAEMORRHAGIC GASTRITIS</SPAN></STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN,DM (SINCE 15 YEAR)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 18:51:20','mo','2025-11-29 10:23:42'),(7087,0,0,3143,207,4351,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-27 18:51:20','mo','2025-11-29 10:23:42'),(7088,0,0,3143,207,4351,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 70 YEARS OLD &nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN,DM (SINCE 15 YEAR)<BR />\r\nC/O: WATERY DIARRHOEA (10-12 TIME/DAY)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-NO VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-GENERAL WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;-BODYACHE</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 2-3 DAYS FOR THAT PRIMARY CONSULTED OPD BASE AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-74/MIN, BP-116/74MMHG, SPO2-97% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>26/11/2025</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>TYPHI DOT DONE WHICH S/O NEGATIVE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27/11/2025</P>\r\n\r\n<P>URINE R/M DONE WHICH S/O GLUCOSE (+) ,PUS CELLS : 1-2 CELLS/HPF</P>\r\n\r\n<P>STOOL R/M DONE WHICH S/O OCCULT BLOOD : PRESENT (+++), PUS CELLS: 80-90 CELLS/HPF, RBCS: 10-12 CELLS/ HPF.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28/11/2025</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>USG ABDOMEN DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>29/11/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 18:51:20','mo','2025-11-29 10:23:42'),(7089,0,0,3143,207,4351,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX&nbsp;</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>TAB ENUFF</P>\r\n\r\n<P>TAB VSL #3</P>\r\n\r\n<P>TAB LOPAMIDE</P>\r\n\r\n<P>TAB STAGLIM M1</P>\r\n\r\n<P>TAB RIFAGUT</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 18:55:48','mo','2025-11-29 10:23:42'),(7090,0,0,3205,3119,4452,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE | 2 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-27 19:00:29','','0000-00-00 00:00:00'),(7091,0,0,3205,3119,4452,0,0,NULL,'','HIST','ZZZ','Remark','<p>MIGRAINE TO MOTHER</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-11-27 19:00:53','','0000-00-00 00:00:00'),(7092,0,0,3210,3124,4460,0,0,NULL,'','CC','ZZZ','Remark','URTI | 8 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-27 19:05:28','','0000-00-00 00:00:00'),(7093,0,0,3210,3124,4460,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-27 19:05:31','','0000-00-00 00:00:00'),(7094,0,0,3202,3116,4447,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----3 MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 19:06:27','darshan','2025-11-28 19:48:43'),(7096,0,0,3202,3116,4447,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic giddiness with headache&thinsp;</p>\n\n<p>remains for few mns&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 19:06:32','darshan','2025-11-27 19:07:15'),(7097,0,0,3202,3116,4447,0,0,NULL,'','CC','ZZZ','Remark','HEADAHE ---FEW MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 19:06:38','darshan','2025-11-28 19:48:43'),(7099,0,0,3202,3116,4447,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 19:07:28','darshan','2025-11-28 19:49:04'),(7101,0,0,3202,3116,4447,0,0,NULL,'','DIAG','ZZZ','Remark','BPC','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 19:07:58','','0000-00-00 00:00:00'),(7102,0,0,2980,202,4265,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 19:10:37','mo','2025-11-27 20:34:18'),(7103,0,0,2980,202,4265,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM 500&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp; 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS&nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>FREEGO POWDER&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;0--0--2TSF/MILK&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 19:10:37','mo','2025-11-27 20:34:18'),(7104,0,0,3207,3121,4457,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR BLOCAKGE ---FEW DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 19:11:25','','0000-00-00 00:00:00'),(7105,0,0,3207,3121,4457,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>both ear wax&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 19:11:37','','0000-00-00 00:00:00'),(7107,0,0,3207,3121,4457,0,0,NULL,'','MADVICE','ZZZ','Remark','BOTH  EAR WAX REMOVAL NEXT TIME','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-27 19:12:22','','0000-00-00 00:00:00'),(7108,0,0,3133,3052,4339,0,0,NULL,'','CC','ZZZ','Remark','C/O BODYACHE  | 3 MONTHS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-27 19:16:13','','0000-00-00 00:00:00'),(7109,0,0,3133,3052,4339,0,0,NULL,'','CC','ZZZ','Remark','C/O DIFFICULTY IN WALKING | 1 MONTHS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-27 19:16:13','','0000-00-00 00:00:00'),(7110,0,0,3133,3052,4339,0,0,NULL,'','CC','ZZZ','Remark','C/O GENERALEID WEAKNESS ||','','',0,'0000-00-00 00:00:00','drarchit','2025-11-27 19:16:13','','0000-00-00 00:00:00'),(7111,0,0,592,565,4461,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-27 19:20:04','','0000-00-00 00:00:00'),(7112,0,0,2782,198,4161,0,0,NULL,'','DISCCOND','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-27 19:42:28','mo','2025-11-28 16:29:57'),(7113,0,0,2782,198,4161,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM 500&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB ZERODOL SP&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB C-UDP 10&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>SYP CREMAFFIN PLUS 0-0-10ML AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>NEOSPORIN OINTMENT FOR LOCAL APPLICATION&nbsp; (1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>TAB VOGLINET GM&nbsp; &nbsp; &nbsp;0--1--1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 19:42:28','mo','2025-11-28 16:29:57'),(7114,0,0,3205,3119,4464,0,0,NULL,'','HIST','ZZZ','Remark','<p>MIGRAINE TO MOTHER</p>','','',0,'0000-00-00 00:00:00','drjayant','2025-11-27 19:47:32','','0000-00-00 00:00:00'),(7115,0,0,3205,3119,4464,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-27 19:47:32','','0000-00-00 00:00:00'),(7116,0,0,3005,201,4261,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE 250&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB METRO ER 600&nbsp; &nbsp; 1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB NEXPROFAST&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp;BEFORE FOOD&nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB THAYA-B&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 15 DAYS</P>\r\n\r\n<P>TAB MBSON-SL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp;FOR 15 DAYS</P>\r\n\r\n<P>TAB CREMALAX&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-27 20:43:48','','0000-00-00 00:00:00'),(7117,0,0,3018,195,4154,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ABDOMINAL WALL ABSCESS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 00:18:13','','0000-00-00 00:00:00'),(7118,0,0,3018,195,4154,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 00:18:13','','0000-00-00 00:00:00'),(7119,0,0,3018,195,4154,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 29 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:LSCS BEFORE 6 MONTHS, LACTATING MOTHER<BR />\r\nC/O: SWELLLING ON LOWER ABDOMEN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;PAIN AT SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NO FEVER</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 10 DAYS FOR THAT PRIMARY CONSULTED ON OPD BASE AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-82/MIN, BP-100/60MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nINCISION &AMP; DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 30/09/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 00:18:13','','0000-00-00 00:00:00'),(7120,0,0,3018,195,4154,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:INCISION &AMP; DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 30/09/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 00:18:13','','0000-00-00 00:00:00'),(7121,0,0,3018,195,4154,0,0,NULL,'','OTNOTE','','','<p>-incision kept on below umbilical region (lower abdomen)</p>\r\n\r\n<p>-abscess cavity in deep subcutaneous place</p>\r\n\r\n<p>-whole pus &amp; tissue excised</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-cavity clean with betadine &amp; h2o2</p>\r\n\r\n<p>-tissue sent for furthur investigation</p>\r\n\r\n<p>-wound kept open</p>\r\n\r\n<p>-dressing kept</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 00:18:13','','0000-00-00 00:00:00'),(7122,0,0,3018,195,4154,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 00:18:13','','0000-00-00 00:00:00'),(7123,0,0,3018,195,4154,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>AWAITED REPORT HPE, BACTERIAL CULTURE, TB CULTURE, TB GENE EXPERT, AFB</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 00:18:13','','0000-00-00 00:00:00'),(7124,0,0,3018,195,4154,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUIODS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 00:18:13','','0000-00-00 00:00:00'),(7125,0,0,3018,195,4154,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFDINIR 300&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB PANTODAC&nbsp; DSR&nbsp; &nbsp;1--0--1&nbsp; &nbsp;BEFORE FOOD FOR 5 DAYS.</P>\r\n\r\n<P>TAB AKILOS P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 00:18:13','','0000-00-00 00:00:00'),(7126,0,0,3186,211,4417,0,0,NULL,'','DISCDIAG','','','<P><STRONG>(?) ENTERIC FEVER</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 00:26:40','mo','2025-11-29 12:26:39'),(7127,0,0,3186,211,4417,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-28 00:26:40','mo','2025-11-29 12:26:39'),(7128,0,0,3186,211,4417,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 20 YEARS OLD FEMALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O: VIT B12 DEFICIENCY (TX TAKEN)<BR />\r\nC/O:BREATHLESSNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER ON &AMP; OFF BEFORE 2 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; VERTIGO</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; HEADACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ANORXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIOEND C/O PRESENTED SINCE 2 DAYS AND INCREASE SINCE TODAY FOR THAT&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-92/MIN, BP-110/70MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>27/11/2025</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>THPHI DOT DONE WHICH S/O IGM: WEAK POSITIVE</P>\r\n\r\n<P>CHEST X RAY DONE&nbsp;</P>\r\n\r\n<P>WIDAL TEST TUBE SENT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28/11/2025</P>\r\n\r\n<P>WIDAL TEST TUBE DONE WHICH S/O POSITIVE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 00:26:40','mo','2025-11-29 12:26:39'),(7129,0,0,3186,211,4417,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>TAKE HEALTHY DIET</P>\r\n\r\n<P>TAKE REST</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 00:26:40','mo','2025-11-29 12:26:39'),(7130,0,0,3186,211,4417,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>TAB METRO-ER</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ ELDERIT</P>\r\n\r\n<P>TAB STEMETIL-MD</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 00:26:40','mo','2025-11-29 12:26:39'),(7131,0,0,2956,191,4047,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX: LAPAROSCOPIC GASTROPEXY + ILEOSTOMY CLOSURE DONE BY DR PRATAPSINH DODIYA ON 26/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 00:59:00','mo','2025-12-01 10:28:59'),(7132,0,0,2956,191,4047,0,0,NULL,'','OTNOTE','','','<p>-ileostomy seprated from skin, muscle,rectus sheath</p>\r\n\r\n<p>-end to end anostomosis done at ileostomy site with&nbsp;mersilk&nbsp;3-0</p>\r\n\r\n<p>-bowel seprated from midline scar</p>\r\n\r\n<p>-drain kept in pelvic</p>\r\n\r\n<p>-10 mm port insertion done in supra umbilical region under vision</p>\r\n\r\n<p>-muscle closed with pds no.1</p>\r\n\r\n<p>-anterior rectus sheath closed with pds no-1</p>\r\n\r\n<p>-subcutaneous tissue closed with vicryl no-1</p>\r\n\r\n<p>-skin closed with ethilon 3-0</p>\r\n\r\n<p>-pneumoperitoneum craeted</p>\r\n\r\n<p>-telescope insertion done through supraumbilical port</p>\r\n\r\n<p>-two 5 mm whole port insertion done under vision</p>\r\n\r\n<p>-distended stomach , no volvulus at present</p>\r\n\r\n<p>-fundus of stomach fixed with anterior abdominal wall near diaphragm</p>\r\n\r\n<p>-greater curvature of stomach sutured with lateral wall to prevent volvulus</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-10 mm port sheath closed with pds no.1</p>\r\n\r\n<p>-skin closed with ethilon 3-0&nbsp;</p>\r\n\r\n<p>-dressing kept</p>\r\n\r\n<p>&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 00:59:00','mo','2025-12-01 10:28:59'),(7133,0,0,429,212,4469,0,0,NULL,'','DISCDIAG','','','<P><STRONG>FEBRILE NEUTROPENIA, SEVERE SEPSIS WITH BILATERAL PNEUMONIA WITH HYPONATREMIA WITH HYPOKALAMIA IN CASE OF LEFT CA BREAST WITH DM (RIGHT L/L AMPUTATION ) WITH HTN.</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 02:29:04','mo','2025-12-10 23:40:23'),(7134,0,0,429,212,4469,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 02:29:04','mo','2025-12-10 23:40:23'),(7135,0,0,429,212,4469,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 64 YEARS OLD FEMAEL PATIENT PRESENT WITH,<BR />\r\nH/O :&nbsp;LEFT CA BREAST , (ON CHEMOTHARAPY) 10 CYCLE DONE, LAST CYCLE TAKEN ON 20-11-2025&nbsp;AT RAJKOT CANCER HOSPITAL RAKOT.</P>\r\n\r\n<P>K/C/O: CA LEFT BREAST (ON CHEMOTHARAPY), DM (AMPUTATION RIGHT LOWER LIMB), HTN.<BR />\r\nC/O: DOE<BR />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BREATHLESSNESS&nbsp;<BR />\r\n&nbsp; &nbsp; &nbsp; &nbsp; GENERLIZED WEEAKNESS, URINE OUT PUT DCRESED.<BR />\r\nALL ABOVE MENTIONED COMPLAINTS SINCE &nbsp;TODAY EVENING.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:&nbsp;<BR />\r\nTEMP- 98.0`F<BR />\r\nPR- 90/MIN<BR />\r\nBP- 120/70 MMHG&nbsp;<BR />\r\nSPO2- 70 % ON RA&nbsp;<BR />\r\nRR- 30/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS- CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+,SPASAM +NT.<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27-11-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\nIN VIEW OF SECTRATION DECRESED O2 SUPPORT GIVEN VIA MASK.<BR />\r\nIN VIEW OF INCRESED BREATHLESSNESS, NIV SUPPORT GIVEN.</P>\r\n\r\n<P>BLOOD INVESTIGATIN SUGGENSTED - HB - 7.3 GM/DL, WBC - 120, PLATLATE - 21000.</P>\r\n\r\n<P>S.CREATININE LEVEL - 2.16 MG/DL.CRP - 264.88 MG/L.</P>\r\n\r\n<P>S.SODIUM - 125.5 MMOL/L</P>\r\n\r\n<P>S.POTASSIUM - 5.90 MMOL/L.</P>\r\n\r\n<P>FOLY`S CATH DONE.<BR />\r\nIN VIEW OF HYPERKALAMIA INJ. CAL GLUCONATE GIVEN.NEBULIZATION DONE.</P>\r\n\r\n<P>IN VIEW OF UNNCONSIOUSNESS EMERGENCY ENDOTRACHAL INTUBATION DONE WITH ET TUBE 7.5 NO AND PUT ON VENTILATOR SUPPORT AC/VC MODE.</P>\r\n\r\n<P>IN VIEW OF BRADYCARDIA INJ. ATROPIN AND INJ. ADR GIVEN, CPR GIVEN AS PAR ACLS POROTOCOL, PATIENT REVIVED.<BR />\r\nIN VIEW OF HYPOTENSION INJ. NORAD ADN INJ.ADR DRIP START BY INFUSION PUMP.<BR />\r\nINJ.MGSO4 GIVEN.</P>\r\n\r\n<P>BRADYCARDIA AFTER 10 MIN, CRP GIVEN AS PAR ACLS POROTOCOL, PT NOT REVIVED, SO DECLERED DEATH ON 28-11-2025, 2.10 AM.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 02:29:04','mo','2025-12-10 23:40:23'),(7136,0,0,429,212,4469,0,0,NULL,'','DISCCOND','','','<P>..DEATH...</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 02:36:33','mo','2025-12-10 23:40:23'),(7137,0,0,429,212,4469,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. MERO</P>\r\n\r\n<P>INJ. FORCAN</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. ONDEM</P>\r\n\r\n<P>INJ. DERIPHYLIN</P>\r\n\r\n<P>INJ. PRIMACORT</P>\r\n\r\n<P>INJ. FILGRASTIN</P>\r\n\r\n<P>INJ. ROMY</P>\r\n\r\n<P>INJ. NS</P>\r\n\r\n<P>INJ. ADR</P>\r\n\r\n<P>INJ. ATROPIN</P>\r\n\r\n<P>INJ. MASO4</P>\r\n\r\n<P>INJ. CAL GLUCONATE</P>\r\n\r\n<P>INJ. NORAD</P>\r\n\r\n<P>INJ. CORDERON</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 02:36:33','mo','2025-12-10 23:40:23'),(7138,0,0,2834,179,3861,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 7 DAYS</P>\r\n\r\n<P>AVOID SPICY/OILY/HEAVY DIET</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 08:38:02','mo','2025-11-30 13:34:48'),(7139,0,0,2834,179,3861,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MERO</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ OTIDE</P>\r\n\r\n<P>INJ CAL. GLUCONATE</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ TRAMADOL</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ CLINDATEC</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>INJ UNISTATIN</P>\r\n\r\n<P>TAB CREMALAX</P>\r\n\r\n<P>TAB ADDKAY</P>\r\n\r\n<P>CAP VSL #3</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 08:38:02','mo','2025-11-30 13:34:48'),(7140,0,0,3077,200,4245,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE&nbsp;</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 10:48:28','mo','2025-11-28 11:03:40'),(7141,0,0,3077,200,4245,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM 500&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB DUDROCIAN 10&nbsp; 1--0--1&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB GLAVISURE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; AFTER LUNCH&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SUSTEN GEL 0.8&nbsp; &nbsp; &nbsp; &nbsp;PER/VAGINAL&nbsp; 1--0--1&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 10:48:28','mo','2025-11-28 11:03:40'),(7142,0,0,3215,3129,4472,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>right ear itching</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 10:50:53','','0000-00-00 00:00:00'),(7143,0,0,2065,2012,4477,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 10:54:57','','0000-00-00 00:00:00'),(7144,0,0,3218,3132,4476,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---occassional giddiness +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 11:08:39','','0000-00-00 00:00:00'),(7145,0,0,3216,3130,4473,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-28 11:31:27','','0000-00-00 00:00:00'),(7147,0,0,3221,3135,4480,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----3-4 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 11:36:13','','0000-00-00 00:00:00'),(7148,0,0,3221,3135,4480,0,0,NULL,'','HIST','ZZZ','Remark','<p>when pt stands for longer duration he feels sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associted other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 11:36:21','darshan','2025-11-28 11:37:10'),(7149,0,0,3221,3135,4480,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain--nad</p>\n\n<p>vng done at morbi</p>\n\n<p>pta---wnl</p>\n\n<p>stabiloemtry--wnl</p>\n\n<p>CCGnad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 11:37:22','darshan','2025-11-28 13:51:13'),(7150,0,0,3219,3133,4478,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT FOOT PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-28 11:37:49','','0000-00-00 00:00:00'),(7151,0,0,10,10,4474,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 11:40:57','','0000-00-00 00:00:00'),(7152,0,0,2619,2559,4491,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---occassional imprmovent</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 11:48:08','','0000-00-00 00:00:00'),(7153,0,0,1299,1258,4498,0,0,NULL,'','HIST','ZZZ','Remark','<p>followu pcase---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 11:51:16','','0000-00-00 00:00:00'),(7154,0,0,3230,3144,4502,0,0,NULL,'','CC','ZZZ','Remark','C/O HEADACHE | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-11-28 11:55:32','','0000-00-00 00:00:00'),(7155,0,0,3222,3136,4481,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----3-4 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 11:57:16','','0000-00-00 00:00:00'),(7156,0,0,3222,3136,4481,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo -sudden onset of rotaotyr feeling when pt is walking and standing he feels imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 11:58:04','','0000-00-00 00:00:00'),(7157,0,0,3222,3136,4481,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>vng--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>CCG---AP displacment out of range</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 11:58:19','darshan','2025-11-28 13:59:37'),(7160,0,0,2162,2110,4507,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up&thinsp; case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 12:03:19','','0000-00-00 00:00:00'),(7161,0,0,3217,3131,4475,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 12:10:41','','0000-00-00 00:00:00'),(7162,0,0,3217,3131,4475,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR TINNITUS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 12:10:41','','0000-00-00 00:00:00'),(7163,0,0,3217,3131,4475,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rotaotry feeling any time which remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 12:11:22','','0000-00-00 00:00:00'),(7164,0,0,3217,3131,4475,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---rigtth moderate sn deafness&thinsp;</p>\n\n<p>stabiloemtry--reduced vestibuialre score</p>\n\n<p>vng--right labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 12:11:44','darshan','2025-11-28 13:48:39'),(7166,0,0,1509,1468,4488,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 12:15:57','','0000-00-00 00:00:00'),(7167,0,0,393,197,4159,0,0,NULL,'','DISCDIAG','','','<P><STRONG>FLUID OVERLOAD</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, IHD, SEVERE LVD, DCMP, OLD CVA, BPH.</STRONG></P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 12:18:49','mo','2025-11-28 12:21:20'),(7168,0,0,393,197,4159,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 12:18:49','mo','2025-11-28 12:21:20'),(7169,0,0,393,197,4159,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER&nbsp; 10&nbsp;DAYS WITH S.K+, HCO3-</P>\r\n\r\n<P>RESTRICTION FLUID UPTO 1 LITRE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 12:18:49','mo','2025-11-28 12:21:20'),(7170,0,0,393,197,4159,0,0,NULL,'','TREATDISC_TI','','','<P>&nbsp;</P>\r\n\r\n<P>SYP RESWAS 5ML&nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR&nbsp; 5 DAYS</P>\r\n\r\n<P>&nbsp;SYP PEGCLEAR 10ML&nbsp; &nbsp;SOS&nbsp; &nbsp; IF CONSTIPATION&nbsp; &nbsp; (1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;FOR 10&nbsp;DAYS</P>\r\n\r\n<P>CAP ECOTOR GOLD 10MG&nbsp; &nbsp;0-0-1&nbsp; &nbsp; &nbsp;FOR 10&nbsp;DAYS</P>\r\n\r\n<P>TAB BISOBIS 2.5&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-0&nbsp; &nbsp; &nbsp; FOR 10&nbsp;DAYS</P>\r\n\r\n<P>TAB SODACON 500&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0-1-0&nbsp; &nbsp; &nbsp;FOR 10&nbsp;DAYS</P>\r\n\r\n<P>TAB TAMWEL&nbsp; 0.4&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-0-1&nbsp; &nbsp; &nbsp;FOR 10&nbsp;DAYS</P>\r\n\r\n<P>TAB TORKID 20&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-1-0&nbsp; &nbsp; &nbsp; FOR 10&nbsp;DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 12:18:49','mo','2025-11-28 12:21:20'),(7171,0,0,1407,1367,4509,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 12:22:26','','0000-00-00 00:00:00'),(7172,0,0,3245,3159,4522,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 12:37:43','','0000-00-00 00:00:00'),(7173,0,0,3245,3159,4522,0,0,NULL,'','CC','ZZZ','Remark','SENSE OF IMBALANCE ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 12:37:43','','0000-00-00 00:00:00'),(7174,0,0,3245,3159,4522,0,0,NULL,'','HIST','ZZZ','Remark','<p>sense of imbalance on walking with positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 12:37:57','','0000-00-00 00:00:00'),(7175,0,0,3245,3159,4522,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 12:38:07','darshan','2025-11-28 13:02:16'),(7176,0,0,3245,3159,4522,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV WITH VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 12:38:16','','0000-00-00 00:00:00'),(7179,0,0,3245,3159,4522,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:03:04','','0000-00-00 00:00:00'),(7180,0,0,3241,3155,4518,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR DAEFNESS ----2 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:03:33','','0000-00-00 00:00:00'),(7181,0,0,3241,3155,4518,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO ---2 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:03:33','','0000-00-00 00:00:00'),(7182,0,0,3241,3155,4518,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo with fluctuating hearing loss&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:03:47','','0000-00-00 00:00:00'),(7183,0,0,3241,3155,4518,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---left modearte sn deafness(o)</p>\n\n<p>stabilomety---wnl</p>\n\n<p>vng--left labyrinthine patholgy</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:03:57','darshan','2025-11-28 18:42:26'),(7184,0,0,3241,3155,4518,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:04:00','','0000-00-00 00:00:00'),(7185,0,0,3242,3156,4519,0,0,NULL,'','HIST','ZZZ','Remark','<p>change of voice</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:06:09','','0000-00-00 00:00:00'),(7186,0,0,3242,3156,4519,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>vc papioma</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:06:18','','0000-00-00 00:00:00'),(7187,0,0,789,758,4501,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:07:06','','0000-00-00 00:00:00'),(7189,0,0,3233,3147,4506,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotoatytr feeling any time and ramains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no asociated other cns symtpso m</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:17:32','darshan','2025-11-28 13:19:03'),(7190,0,0,3233,3147,4506,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:17:37','','0000-00-00 00:00:00'),(7191,0,0,3233,3147,4506,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nsytmgus---absnt</p>\n\n<p>dixc hallpike--and</p>\n\n<p>hit-nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabiloemtry---wnl</p>\n\n<p>vng---central variety of nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:18:57','darshan','2025-11-28 14:01:59'),(7192,0,0,3233,3147,4506,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE OCCASSIONALLLY||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:19:08','','0000-00-00 00:00:00'),(7193,0,0,3252,3166,4531,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:38:49','','0000-00-00 00:00:00'),(7194,0,0,3252,3166,4531,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onst of short duration positional giddinesds without any cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:39:02','','0000-00-00 00:00:00'),(7195,0,0,3252,3166,4531,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nasd</p>\n\n<p>hit-nad</p>\n\n<p>pta---wnl</p>\n\n<p>staiblometry--reduced ss score</p>\n\n<p>vng--left post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:39:15','darshan','2025-11-28 14:35:26'),(7197,0,0,3227,3141,4494,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better for giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:40:37','','0000-00-00 00:00:00'),(7198,0,0,3228,3142,4495,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:43:07','','0000-00-00 00:00:00'),(7199,0,0,1548,1507,4532,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 13:53:15','','0000-00-00 00:00:00'),(7200,0,0,3240,3154,4517,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---7-8 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 14:07:18','','0000-00-00 00:00:00'),(7201,0,0,3240,3154,4517,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden of giddiness with both ear deafness and tinnitus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 14:07:20','darshan','2025-11-28 14:07:48'),(7202,0,0,3240,3154,4517,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 14:07:25','','0000-00-00 00:00:00'),(7203,0,0,3240,3154,4517,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---bialtelr high freq severe sn deafness</p>\n\n<p>stabiloeamtry--reduced&thinsp; vestibular score</p>\n\n<p>vng--right post canal bppv with vp</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 14:08:00','darshan','2025-11-28 14:46:10'),(7205,0,0,3243,3157,4520,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 14:10:49','','0000-00-00 00:00:00'),(7206,0,0,3243,3157,4520,0,0,NULL,'','CC','ZZZ','Remark','BURNING SENSATION IN THROAT ----||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 14:11:04','','0000-00-00 00:00:00'),(7207,0,0,3243,3157,4520,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested</p>\n\n<p>supraglottic congestion with ulceration&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 14:11:41','','0000-00-00 00:00:00'),(7210,0,0,3243,3157,4520,0,0,NULL,'','MADVICE','ZZZ','Remark','REST CT SAME RX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-28 14:12:56','','0000-00-00 00:00:00'),(7211,0,0,3247,3161,4524,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 14:22:55','','0000-00-00 00:00:00'),(7212,0,0,3247,3161,4524,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of&thinsp; rotaotyr feeling when pt is chaning her&thinsp; posture</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 14:23:00','darshan','2025-11-28 14:25:42'),(7213,0,0,3247,3161,4524,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score(complimentary)</p>\n\n<p>vng---right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 14:25:52','darshan','2025-11-28 19:57:24'),(7215,0,0,3248,3162,4525,0,0,NULL,'','CC','ZZZ','Remark','CHANGE OF VOICE---1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 14:32:29','','0000-00-00 00:00:00'),(7216,0,0,3248,3162,4525,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---OSMF</p>\n\n<p>Idl--epiglotis can not lift</p>\n\n<p>Flexible laryngoscopy--left vocal cord palsy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 14:32:38','darshan','2025-11-28 17:48:12'),(7217,0,0,3252,3166,4531,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 14:35:26','','0000-00-00 00:00:00'),(7220,0,0,3252,3166,4531,0,0,NULL,'','MADVICE','ZZZ','Remark','MAENVUER AFTER CLEARANCE FROM SPINE SURGEON ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-28 14:43:35','','0000-00-00 00:00:00'),(7221,0,0,3182,210,4409,0,0,NULL,'','DISCDIAG','','','<P><STRONG>VIRAL FEVER WITH HYPONATREMIA</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN;DM;CKD ON MHD;HYPOTHYROIDISM;HCV +VE</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 16:52:25','mo','2025-11-29 11:57:26'),(7222,0,0,3182,210,4409,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-28 16:52:25','mo','2025-11-29 11:57:26'),(7223,0,0,3182,210,4409,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 42 YEARS OLD FEMALE PATIENT P/W</P>\r\n\r\n<P>K/C/O: HTN;DM;CKD ON MHD;HYPOTHYROIDISM;HCV +VE WITH&nbsp;</P>\r\n\r\n<P>C/O DECREASED ORAL INTAKE;GENERALISED WEAKNESS;COUGHING;BODYACHE;BURNING SENSATION IN B/L LOWER LIMB SINCE 3-4 DAYS.</P>\r\n\r\n<P>SO,PRIMARY TREATMENT TAKEN AT DR.DENISH SAVALIYA THEN CAME HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-98.7 F</P>\r\n\r\n<P>PR-126/MIN</P>\r\n\r\n<P>BP-110/70MMHG</P>\r\n\r\n<P>SPO2-99% ON RA</P>\r\n\r\n<P>RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-337 MG/DL</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.</P>\r\n\r\n<P>TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27/11/25,</P>\r\n\r\n<P>ALL REQUIRED BLOOD INVESTIGATION DONE.</P>\r\n\r\n<P>CHEST X-RAY DONE.</P>\r\n\r\n<P>PATIENT DEVELOPED HYPOTENSION MANAGED BY IV FLUID THERAPY F/BY IV NORAD DRIP STARTED.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28/11/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>IV NORAD DRIP TAPER AND OFF@BP.</P>\r\n\r\n<P>USG ABDOMEN +PELVIS DONE.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>REFERENCE OF DR ARCHIT RATHOD DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>29/11/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 16:52:25','mo','2025-11-29 11:57:26'),(7224,0,0,3182,210,4409,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MERO</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ NAHCO3</P>\r\n\r\n<P>INJ NORAD</P>\r\n\r\n<P>INJ H.ACTRAPID</P>\r\n\r\n<P>INJ LANTUS</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ ELDRVIT</P>\r\n\r\n<P>TAB ECOSPRIN AV</P>\r\n\r\n<P>TAB ZINCOVIT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 16:57:32','mo','2025-11-29 11:57:26'),(7225,0,0,3256,3170,4536,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head with headache +</p>\n\n<p>no associated other c ns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 17:04:40','darshan','2025-11-28 19:01:11'),(7226,0,0,1225,1186,4539,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----no imrpvoment</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 17:06:30','','0000-00-00 00:00:00'),(7227,0,0,3151,209,4359,0,0,NULL,'','DISCDIAG','','','<P><STRONG>? ECLAMPSIA WITH&nbsp; GTC CONVULSION</STRONG></P>\r\n\r\n<P><STRONG>PRIMIGRAVIDA + 29-30 WKS TWINS + ANTEPARTUM + HYPOTHYROIDISM</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 17:07:20','mo','2025-11-30 15:14:06'),(7228,0,0,3151,209,4359,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 17:07:20','mo','2025-11-30 15:14:06'),(7229,0,0,3151,209,4359,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 24 YEARS OLD FEMALE PATIENT P/W H/O 30 WEEKS AM WITH PIH WITH HYPOTHYROIDISM.LMP 06/03/25</P>\r\n\r\n<P>WITH A/H/O 1 EPISODE OF GTCS TODAY @ 12:30AM AT OWN HOME.</P>\r\n\r\n<P>SO,PRIMARY TREATMENT TAKEN AT CHANDRANI HOSPITAL THEN REFERRED TO HERE&nbsp;FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-97 F</P>\r\n\r\n<P>PR-112/MIN</P>\r\n\r\n<P>BP-210/120MMHG</P>\r\n\r\n<P>SPO2-98% ON RA</P>\r\n\r\n<P>RR-28/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C,MOVING ALL 4 LIMBS,E4V5M6</P>\r\n\r\n<P>P/A- UT30 WKS AM,BOTH FSH + REGULAR</P>\r\n\r\n<P>P/S NAD</P>\r\n\r\n<P>P/V OS CLOSED</P>\r\n\r\n<P>TONGUE BITE +</P>\r\n\r\n<P>ABDOMINAL/PEDAL EDEMA++</P>\r\n\r\n<P>RBS-75 MG/DL-IV DEXTROSE GIVEN.</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL HISTORY AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>27/11/25</P>\r\n\r\n<P>PRIMARY&nbsp;BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>IV ANTI-EPILEPTIC MEDICINE STARTED.IV MGSO4 DRIP GIVEN.</P>\r\n\r\n<P>IN VIEW OF HYPERTENSION MANAGED BY IV LABETALOL DRIP F/BY IV NTG DRIP STARTED.</P>\r\n\r\n<P>MATERNAL AND FETAL RISK EXPLAINED TO RELATIVES.ADV:PTEMLSCS</P>\r\n\r\n<P>PTEMLSCS(1ST MALE 2:36AM 1.060KG,2ND MALE 2:38AM 1.035 KG) DONE BY DR.AARTI CHANDRANI UNDER GA.</P>\r\n\r\n<P>POST LSCS PATIENT SHIFTED TO ICU WITH ET TUBE AND PUT ON VENTILATOR SUPPORT.&nbsp;</P>\r\n\r\n<P>P/V NO ACTIVE BLEEDING.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>GRADUALLY PATIENT SENSORIUM/RESPIRATION WAS IMPROVING SO,VENTI OFF TRIAL GIVEN AND PUT ON T-PIECE SUPPORT F/BY EXTUBATED.O2 SUPPORT GIVEN FOR FEW HOURS.</P>\r\n\r\n<P>ORALLY SIPS F/BY LIQUID DIET STARTED.TAKEN WELL.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>28/11/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>P/V NO ACTIVE BLEEDING.</P>\r\n\r\n<P>ORALLY SOFT DIET STARTED.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>29/11/2025</P>\r\n\r\n<P>REQUIRED BLOOD IX DONE</P>\r\n\r\n<P>CT SAME TREATMENT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>30/11/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 17:07:20','mo','2025-11-30 15:14:06'),(7230,0,0,3257,3171,4538,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 17:09:55','','0000-00-00 00:00:00'),(7231,0,0,3151,209,4359,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>INJ ZOSTUM</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ LEVIGRESS</P>\r\n\r\n<P>INJ NTG DRIP</P>\r\n\r\n<P>INJ LOBET</P>\r\n\r\n<P>INJ MGSO4</P>\r\n\r\n<P>INJ FENTA</P>\r\n\r\n<P>INJ MIDAZ</P>\r\n\r\n<P>INJ MANNITOL</P>\r\n\r\n<P>INJ TRENEXA</P>\r\n\r\n<P>INJ TRAMADOL</P>\r\n\r\n<P>INJ LASIX</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ ELDRVIT</P>\r\n\r\n<P>TAB ISOLAZINE</P>\r\n\r\n<P>TAB NICARDIA R</P>\r\n\r\n<P>TAB LOBET</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 17:11:12','mo','2025-11-30 15:14:06'),(7232,0,0,3258,3172,4541,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 17:13:57','','0000-00-00 00:00:00'),(7233,0,0,3255,3169,4535,0,0,NULL,'','HIST','ZZZ','Remark','<p>throat pain with burning sensation in mouth</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 17:14:40','','0000-00-00 00:00:00'),(7234,0,0,3255,3169,4535,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx--congested with ulcer +</p>\n\n<p>severely dryness of mouth</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 17:14:52','darshan','2025-11-28 17:15:18'),(7235,0,0,3256,3170,4536,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nasd</p>\n\n<p>ht--nad</p>\n\n<p>MRI brain with 8th never protocol--nad</p>\n\n<p>vng--nad(o)</p>\n\n<p>stabilomtry---reducd ss score</p>\n\n<p>ccg---wnl</p>\n\n<p>vng---central varieaty of nystmgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 17:44:24','darshan','2025-11-28 19:01:39'),(7236,0,0,3256,3170,4536,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 17:44:25','','0000-00-00 00:00:00'),(7237,0,0,3256,3170,4536,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 17:45:08','','0000-00-00 00:00:00'),(7238,0,0,3248,3162,4525,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of change of voice</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 17:47:05','darshan','2025-11-28 17:47:18'),(7239,0,0,3248,3162,4525,0,0,NULL,'','MADVICE','ZZZ','Remark','CT SCAN CHEST ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-28 17:49:56','','0000-00-00 00:00:00'),(7240,0,0,3260,3174,4543,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 17:58:36','','0000-00-00 00:00:00'),(7241,0,0,3260,3174,4543,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting ouit of bed and lying down in bed&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 17:58:36','darshan','2025-11-28 18:03:54'),(7242,0,0,3260,3174,4543,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR DEAFNESS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 17:58:43','','0000-00-00 00:00:00'),(7243,0,0,3260,3174,4543,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nasd</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry---reduced vestibular scor</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:04:08','darshan','2025-11-28 19:31:34'),(7244,0,0,3260,3174,4543,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:04:16','','0000-00-00 00:00:00'),(7245,0,0,1769,1725,4552,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:12:29','','0000-00-00 00:00:00'),(7246,0,0,3272,3186,4562,0,0,NULL,'','DIAG','ZZZ','Remark','FISTULA IN ANO','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-28 18:16:37','','0000-00-00 00:00:00'),(7247,0,0,3266,3180,4551,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:16:41','darshan','2025-11-28 18:17:54'),(7248,0,0,3266,3180,4551,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:17:38','','0000-00-00 00:00:00'),(7249,0,0,3266,3180,4551,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR DEAFNESS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:17:52','','0000-00-00 00:00:00'),(7250,0,0,3266,3180,4551,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:17:59','','0000-00-00 00:00:00'),(7251,0,0,3266,3180,4551,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:18:24','','0000-00-00 00:00:00'),(7254,0,0,3266,3180,4551,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:20:12','','0000-00-00 00:00:00'),(7255,0,0,3265,3179,4550,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:21:44','','0000-00-00 00:00:00'),(7256,0,0,3268,3182,4554,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo and headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:28:07','','0000-00-00 00:00:00'),(7257,0,0,3268,3182,4554,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:28:21','','0000-00-00 00:00:00'),(7258,0,0,3267,3181,4553,0,0,NULL,'','CC','ZZZ','Remark','THROAT PAIN---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:33:07','','0000-00-00 00:00:00'),(7259,0,0,3267,3181,4553,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx and TS&thinsp;--congested&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:33:20','','0000-00-00 00:00:00'),(7260,0,0,3264,3178,4547,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-28 18:41:54','','0000-00-00 00:00:00'),(7261,0,0,3275,3189,4569,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-28 18:42:30','','0000-00-00 00:00:00'),(7262,0,0,121,110,4573,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-28 18:47:11','','0000-00-00 00:00:00'),(7263,0,0,120,109,4575,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-28 18:48:05','drjayant','2025-11-28 18:53:06'),(7264,0,0,120,109,4575,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-28 18:48:24','','0000-00-00 00:00:00'),(7265,0,0,3274,3188,4564,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2 WEEKS||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:52:30','','0000-00-00 00:00:00'),(7266,0,0,3274,3188,4564,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling for few seconds only</p>\n\n<p>heaviness of head with headache +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:52:34','darshan','2025-11-28 18:53:10'),(7267,0,0,3274,3188,4564,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:52:36','','0000-00-00 00:00:00'),(7268,0,0,3274,3188,4564,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--wnl</p>\n\n<p>vng---central variety of nystagmus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:53:23','darshan','2025-11-28 20:16:41'),(7270,0,0,3274,3188,4564,0,0,NULL,'','DIAG','ZZZ','Remark','BPC','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:53:28','','0000-00-00 00:00:00'),(7271,0,0,593,566,4561,0,0,NULL,'','CC','ZZZ','Remark','URTI | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-28 18:53:54','','0000-00-00 00:00:00'),(7272,0,0,593,566,4561,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-28 18:54:02','','0000-00-00 00:00:00'),(7273,0,0,3269,3183,4555,0,0,NULL,'','CC','ZZZ','Remark','URTI | 7 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-28 18:54:28','','0000-00-00 00:00:00'),(7274,0,0,3269,3183,4555,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-28 18:54:31','','0000-00-00 00:00:00'),(7275,0,0,3261,3175,4544,0,0,NULL,'','CC','ZZZ','Remark','RECENT TIA | 30 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-28 18:55:18','','0000-00-00 00:00:00'),(7276,0,0,3261,3175,4544,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-28 18:55:23','','0000-00-00 00:00:00'),(7277,0,0,3256,3170,4536,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 18:59:38','','0000-00-00 00:00:00'),(7279,0,0,3256,3170,4536,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 19:00:31','','0000-00-00 00:00:00'),(7280,0,0,3256,3170,4536,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 19:00:31','','0000-00-00 00:00:00'),(7282,0,0,1586,1543,4571,0,0,NULL,'','HIST','ZZZ','Remark','<p>foflflow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 19:10:05','','0000-00-00 00:00:00'),(7283,0,0,2307,2250,4580,0,0,NULL,'','HIST','ZZZ','Remark','<p>folowup case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 19:12:42','','0000-00-00 00:00:00'),(7285,0,0,2307,2250,4580,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVEUR ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-28 19:13:45','','0000-00-00 00:00:00'),(7288,0,0,3283,3197,4585,0,0,NULL,'','MADVICE','ZZZ','Remark','ABPM','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-28 19:18:35','','0000-00-00 00:00:00'),(7289,0,0,3273,3187,4563,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rotaotyr feeling&thinsp; with movment of body&thinsp;</p>\n\n<p>heaviness of head with headache&thinsp;</p>\n\n<p>whole day pt feels imbalance sense&thinsp;</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 19:18:51','darshan','2025-11-28 19:25:42'),(7290,0,0,3273,3187,4563,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---8-9 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 19:19:06','','0000-00-00 00:00:00'),(7291,0,0,3239,3153,4516,0,0,NULL,'','CC','ZZZ','Remark','C/O JOINT PAIN  | 2 MONTHS | BOTH FINGERS AND ANKLE JOINT','','',0,'0000-00-00 00:00:00','drarchit','2025-11-28 19:23:25','','0000-00-00 00:00:00'),(7292,0,0,3239,3153,4516,0,0,NULL,'','CC','ZZZ','Remark','C/O BLOWER BACK ACHE | 1 MONTHS | RADIATE TO RT THIGH AND LEG','','',0,'0000-00-00 00:00:00','drarchit','2025-11-28 19:23:25','','0000-00-00 00:00:00'),(7293,0,0,3239,3153,4516,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>TENDERNESS PRESENT BOTH HAND</p>\n\n<p>REST CLINICALLY NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-28 19:23:50','','0000-00-00 00:00:00'),(7294,0,0,3239,3153,4516,0,0,NULL,'','DIAG','ZZZ','Remark','? INFLAMATORY ARTHRITIS WITH ? PROLAPSE INTEVER VERTEBRAL DISC','','',0,'0000-00-00 00:00:00','drarchit','2025-11-28 19:24:21','','0000-00-00 00:00:00'),(7297,0,0,3239,3153,4516,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI D-L SPINE WITH SPINE SCREENING','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-28 19:25:29','','0000-00-00 00:00:00'),(7298,0,0,3273,3187,4563,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nysttagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 19:25:31','darshan','2025-12-05 18:42:35'),(7302,0,0,3281,3195,4583,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT FOOT PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-28 19:28:16','','0000-00-00 00:00:00'),(7303,0,0,3280,3194,4582,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT OA KNEE','','',0,'0000-00-00 00:00:00','drsagar','2025-11-28 19:29:04','','0000-00-00 00:00:00'),(7304,0,0,3260,3174,4543,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 19:32:00','','0000-00-00 00:00:00'),(7307,0,0,3256,3170,4536,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-28 19:34:29','','0000-00-00 00:00:00'),(7308,0,0,3285,3199,4587,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 MOTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 19:43:37','','0000-00-00 00:00:00'),(7309,0,0,3285,3199,4587,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 19:43:43','','0000-00-00 00:00:00'),(7310,0,0,3247,3161,4524,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 19:57:52','','0000-00-00 00:00:00'),(7311,0,0,3247,3161,4524,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-28 19:57:53','','0000-00-00 00:00:00'),(7313,0,0,3260,3174,4543,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVEUR ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-28 20:00:04','','0000-00-00 00:00:00'),(7314,0,0,3278,3192,4579,0,0,NULL,'','HIST','ZZZ','Remark','<p>follwo up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 20:20:19','','0000-00-00 00:00:00'),(7315,0,0,3284,3198,4586,0,0,NULL,'','HIST','ZZZ','Remark','<p>thraot pain</p>\n\n<p>coughing&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 20:23:33','','0000-00-00 00:00:00'),(7316,0,0,3284,3198,4586,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested ts</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-28 20:23:39','','0000-00-00 00:00:00'),(7317,0,0,3143,207,4351,0,0,NULL,'','TREATDISC_TI','','','<P>INJ OFRAMAX (1GM/DIL)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 9AM----9PM&nbsp;&nbsp;&nbsp;FOR 4 DAYS (7 INJ)</P>\r\n\r\n<P>TAB. METROGYL ER (400MG)&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB. PANTODAC&nbsp; (40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB. ZOFFER MD (4MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>CAP ENUFF (100MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>CAP. VSL#3&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ETOLOK (90MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>CONTINUE OWN MEDICINE:</STRONG></P>\r\n\r\n<P>TAB. STAGLIM M1 0-1-0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-28 21:13:29','mo','2025-11-29 10:23:42'),(7318,0,0,3143,207,4351,0,0,NULL,'','PROVDIAG','','','','','',0,'0000-00-00 00:00:00','mo','2025-11-28 21:23:29','mo','2025-11-29 10:23:42'),(7319,0,0,3143,207,4351,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-29 00:07:22','mo','2025-11-29 10:23:42'),(7320,0,0,3143,207,4351,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>HOLD OWN HTN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-29 00:07:22','mo','2025-11-29 10:23:42'),(7321,0,0,3182,210,4409,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>WEAKNESS IMPROVED</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-29 09:06:50','mo','2025-11-29 11:57:26'),(7322,0,0,3182,210,4409,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS WITH CBC, CRP</P>\r\n\r\n<P>RBS MONITORING</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-29 09:06:50','mo','2025-11-29 11:57:26'),(7323,0,0,3182,210,4409,0,0,NULL,'','TREATDISC_TI','','','<P>TAB FERONEM-CV (200MG)&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB NEXPROFAST RD (40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB LARETOL (0.25MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ZINCOVIT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>CAP ECOSPRIN AV (10/75)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>INJ LANTUS SOLUSTAR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;S/C&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 10 UNIT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 10PM</P>\r\n\r\n<P>INJ H.ACTRAPID&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;S/C&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;08 UNIT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE BREAKFAST&nbsp; &nbsp; &nbsp; @ RBS CHART</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 08 UNIT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE LUNCH</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 08 UNIT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE DINNER</P>\r\n\r\n<P>INJ EIDO (1 A)&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; ONCE&nbsp;IN A&nbsp;WEEK...........(3)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-29 09:06:50','mo','2025-11-29 11:57:26'),(7324,0,0,1593,1550,4601,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---2 episodes of headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 10:53:12','','0000-00-00 00:00:00'),(7325,0,0,3292,3205,4600,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 11:00:51','','0000-00-00 00:00:00'),(7326,0,0,3292,3205,4600,0,0,NULL,'','HIST','ZZZ','Remark','<p>when pt walks he feels sense of imbalance with heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n\n<p>pt is on psychiatrist treatment since 8 yrs</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 11:01:16','darshan','2025-11-29 11:02:05'),(7327,0,0,3292,3205,4600,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilomety---reduced ss score</p>\n\n<p>ccg--rigth ward rotation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 11:01:43','darshan','2025-11-29 13:21:58'),(7329,0,0,3295,3208,4605,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE APPENDICITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-29 11:04:00','','0000-00-00 00:00:00'),(7330,0,0,1736,1690,4599,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 11:17:01','','0000-00-00 00:00:00'),(7331,0,0,3296,3209,4606,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 11:27:40','','0000-00-00 00:00:00'),(7332,0,0,3296,3209,4606,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ----MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 11:27:40','','0000-00-00 00:00:00'),(7333,0,0,3296,3209,4606,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache with giddiness which remains for few hrs&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 11:28:37','','0000-00-00 00:00:00'),(7334,0,0,3296,3209,4606,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>right high frq severe sn deafness</p>\n\n<p>stabilomtry---reduced vestibular score</p>\n\n<p>vng---central variety of nystamguis&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 11:28:48','darshan','2025-11-29 13:32:45'),(7336,0,0,3296,3209,4606,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 11:28:51','','0000-00-00 00:00:00'),(7337,0,0,472,446,4604,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---sense of imbalance mild</p>\n\n<p>no other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 11:35:23','','0000-00-00 00:00:00'),(7338,0,0,3186,211,4417,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-29 11:36:58','mo','2025-11-29 12:26:39'),(7339,0,0,3186,211,4417,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZIFI (200 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 3&nbsp;DAYS</P>\r\n\r\n<P>TAB AZEE (250 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 3&nbsp;DAYS</P>\r\n\r\n<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp;&nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZOFER MD (4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB STEMETIL MD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-29 11:36:58','mo','2025-11-29 12:26:39'),(7340,0,0,3297,3210,4608,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----7-8 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 11:51:41','','0000-00-00 00:00:00'),(7341,0,0,3297,3210,4608,0,0,NULL,'','DIAG','ZZZ','Remark','INTERMITTENT BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 11:51:47','','0000-00-00 00:00:00'),(7342,0,0,3297,3210,4608,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional gidiness without any cns symtpmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 11:52:04','','0000-00-00 00:00:00'),(7343,0,0,3297,3210,4608,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nads</p>\n\n<p>hit--nad</p>\n\n<p>pta----bilatler high freq moderate sn deafness</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng--right pst canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 11:52:14','darshan','2025-11-29 13:44:19'),(7344,0,0,1623,1579,4619,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 11:53:43','','0000-00-00 00:00:00'),(7345,0,0,3302,3216,4618,0,0,NULL,'','CC','ZZZ','Remark','LOW BACKACHE | 15 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-29 11:57:52','','0000-00-00 00:00:00'),(7346,0,0,3302,3216,4618,0,0,NULL,'','CC','ZZZ','Remark','DYSPEPSIA +||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-29 11:57:52','','0000-00-00 00:00:00'),(7347,0,0,3316,3230,4639,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT GREAT TOE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-29 12:00:23','','0000-00-00 00:00:00'),(7348,0,0,3305,3219,4624,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----MANY MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:01:41','','0000-00-00 00:00:00'),(7349,0,0,3305,3219,4624,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head&thinsp;</p>\n\n<p>once fall down&thinsp; without LOC</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:02:10','','0000-00-00 00:00:00'),(7350,0,0,3315,3229,4638,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-29 12:02:25','','0000-00-00 00:00:00'),(7351,0,0,3305,3219,4624,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit---nad</p>\n\n<p>pta----bilateral high freq severe sn deafness</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--bilateral vestibulopathy with bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:02:25','darshan','2025-11-29 14:01:10'),(7352,0,0,3315,3229,4638,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-29 12:02:27','drjayant','2025-11-29 12:02:49'),(7355,0,0,3312,3226,4634,0,0,NULL,'','CC','ZZZ','Remark','C/O CHEST PAIN | | STERNAL REGION','','',0,'0000-00-00 00:00:00','drarchit','2025-11-29 12:03:25','','0000-00-00 00:00:00'),(7356,0,0,3312,3226,4634,0,0,NULL,'','CC','ZZZ','Remark','C/O SORE THROAT||','','',0,'0000-00-00 00:00:00','drarchit','2025-11-29 12:03:25','','0000-00-00 00:00:00'),(7358,0,0,3318,3235,4646,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER BACK PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-11-29 12:07:27','','0000-00-00 00:00:00'),(7359,0,0,1671,1626,4623,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for giddiness</p>\n\n<p>hearing reduced&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:08:48','','0000-00-00 00:00:00'),(7360,0,0,3315,3229,4638,0,0,NULL,'','MADVICE','ZZZ','Remark','SUGAR/ SALT RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-11-29 12:10:57','','0000-00-00 00:00:00'),(7361,0,0,2183,2132,4615,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:12:33','','0000-00-00 00:00:00'),(7362,0,0,3313,3227,4635,0,0,NULL,'','CC','ZZZ','Remark','LT FACIAL WEAKNESS | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-29 12:20:11','','0000-00-00 00:00:00'),(7363,0,0,2919,2847,4621,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----lefr ear wax removed</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:21:29','','0000-00-00 00:00:00'),(7364,0,0,2919,2847,4621,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Ltm---i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:21:39','','0000-00-00 00:00:00'),(7365,0,0,2919,2847,4621,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS PTA','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:21:52','','0000-00-00 00:00:00'),(7366,0,0,3314,3228,4636,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---since 4-5 days recurence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:23:53','','0000-00-00 00:00:00'),(7367,0,0,3311,3225,4633,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----4 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:28:22','','0000-00-00 00:00:00'),(7368,0,0,3311,3225,4633,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden&thinsp; onset of sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmso&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:29:42','','0000-00-00 00:00:00'),(7369,0,0,3311,3225,4633,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnet</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad&thinsp;</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---reduced ss score</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:29:54','darshan','2025-11-29 14:15:57'),(7371,0,0,3298,3211,4609,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:35:29','','0000-00-00 00:00:00'),(7372,0,0,3298,3211,4609,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling in any posture</p>\n\n<p>occassional headache +</p>\n\n<p>no associated othewr cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:39:16','','0000-00-00 00:00:00'),(7373,0,0,3298,3211,4609,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>&thinsp;pta---wnl</p>\n\n<p>stabiloemtry---wnl</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:39:27','darshan','2025-11-29 14:25:27'),(7377,0,0,3321,3239,4653,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:41:49','','0000-00-00 00:00:00'),(7378,0,0,3299,3213,4611,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:45:20','','0000-00-00 00:00:00'),(7379,0,0,3304,3218,4622,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---vertigo with headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:48:26','','0000-00-00 00:00:00'),(7381,0,0,3304,3218,4622,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:49:25','','0000-00-00 00:00:00'),(7382,0,0,3213,3127,4655,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:51:07','darshan','2025-11-29 12:51:55'),(7383,0,0,1545,1504,4656,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:54:43','','0000-00-00 00:00:00'),(7384,0,0,3333,3251,4670,0,0,NULL,'','CC','ZZZ','Remark','POSTED FOR CSF RHINOORHEA REPAIR SX||','','',0,'0000-00-00 00:00:00','drarchit','2025-11-29 12:54:53','','0000-00-00 00:00:00'),(7385,0,0,3333,3251,4670,0,0,NULL,'','CC','ZZZ','Remark','C/O NASAL DISCHARGE LT NOSE||','','',0,'0000-00-00 00:00:00','drarchit','2025-11-29 12:55:04','','0000-00-00 00:00:00'),(7386,0,0,3333,3251,4670,0,0,NULL,'','HIST','ZZZ','Remark','<p>no c/o chest pain&thinsp;</p>\n\n<p>no c/o doe</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-29 12:55:17','','0000-00-00 00:00:00'),(7387,0,0,1545,1504,4656,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:55:22','','0000-00-00 00:00:00'),(7389,0,0,3333,3251,4670,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALLY NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-11-29 12:55:34','','0000-00-00 00:00:00'),(7391,0,0,1545,1504,4656,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:56:14','','0000-00-00 00:00:00'),(7393,0,0,3333,3251,4670,0,0,NULL,'','MADVICE','ZZZ','Remark','PATIETN CAN BE TAKEN FOR SUREGERY WITH DUE ANESTHETIC DRUGS AND OPERATIVE RISK','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-11-29 12:57:24','','0000-00-00 00:00:00'),(7394,0,0,2541,2483,4637,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:57:58','','0000-00-00 00:00:00'),(7397,0,0,2541,2483,4637,0,0,NULL,'','MADVICE','ZZZ','Remark','MAENVUER FOR 1 WEEK','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-29 12:59:23','','0000-00-00 00:00:00'),(7398,0,0,1671,1626,4623,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>pta----left severe sn deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:00:02','','0000-00-00 00:00:00'),(7399,0,0,3285,3199,4587,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onst of short duration positional giddiness wihtout any cns symtpmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:04:47','','0000-00-00 00:00:00'),(7400,0,0,3285,3199,4587,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilomety---wnl</p>\n\n<p>vng--right post canalb ppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:05:07','','0000-00-00 00:00:00'),(7401,0,0,3285,3199,4587,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:05:32','','0000-00-00 00:00:00'),(7403,0,0,3285,3199,4587,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:05:54','','0000-00-00 00:00:00'),(7404,0,0,3309,3223,4631,0,0,NULL,'','CC','ZZZ','Remark','LOWER BACKACHE, DYSPEPSIA | 10 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-11-29 13:09:20','','0000-00-00 00:00:00'),(7405,0,0,3309,3223,4631,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-29 13:09:37','drjayant','2025-11-29 13:29:23'),(7406,0,0,3330,3248,4666,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----7-8 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:10:18','','0000-00-00 00:00:00'),(7407,0,0,3330,3248,4666,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotyr feeling remains for few hrs&thinsp;</p>\n\n<p>associated with nausea&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:13:18','darshan','2025-11-29 13:16:04'),(7408,0,0,3303,3217,4620,0,0,NULL,'','DIAG','ZZZ','Remark','AGE','','',0,'0000-00-00 00:00:00','drjayant','2025-11-29 13:13:41','','0000-00-00 00:00:00'),(7409,0,0,3322,3240,4654,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-11-29 13:15:35','','0000-00-00 00:00:00'),(7410,0,0,3322,3240,4654,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-11-29 13:15:52','','0000-00-00 00:00:00'),(7412,0,0,3330,3248,4666,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnt</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>vng done twice----bppv(o)</p>\n\n<p>MRI brain--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>CCG--AP displacment out of&thinsp; normative range</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:16:33','darshan','2025-12-03 12:56:13'),(7414,0,0,3322,3240,4654,0,0,NULL,'','MADVICE','ZZZ','Remark','SUGAR RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-11-29 13:18:32','','0000-00-00 00:00:00'),(7415,0,0,3292,3205,4600,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:22:30','','0000-00-00 00:00:00'),(7417,0,0,3328,3246,4664,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----10-12 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:29:19','','0000-00-00 00:00:00'),(7418,0,0,3328,3246,4664,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:29:39','','0000-00-00 00:00:00'),(7419,0,0,3328,3246,4664,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng--right post&thinsp; canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:29:52','darshan','2025-11-29 14:36:57'),(7420,0,0,3328,3246,4664,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:29:53','','0000-00-00 00:00:00'),(7421,0,0,3332,3250,4669,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:34:50','','0000-00-00 00:00:00'),(7422,0,0,3320,3238,4651,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow case---left postional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:40:28','','0000-00-00 00:00:00'),(7424,0,0,3320,3238,4651,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:41:03','','0000-00-00 00:00:00'),(7426,0,0,3320,3238,4651,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:41:28','','0000-00-00 00:00:00'),(7427,0,0,3297,3210,4608,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:44:37','','0000-00-00 00:00:00'),(7430,0,0,3292,3205,4600,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:46:08','','0000-00-00 00:00:00'),(7431,0,0,3325,3243,4661,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--TODAY MORNING||','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:52:57','','0000-00-00 00:00:00'),(7432,0,0,3325,3243,4661,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:53:18','','0000-00-00 00:00:00'),(7433,0,0,3325,3243,4661,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:54:29','','0000-00-00 00:00:00'),(7436,0,0,3325,3243,4661,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGTH SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-29 13:58:31','','0000-00-00 00:00:00'),(7437,0,0,3305,3219,4624,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 14:01:38','','0000-00-00 00:00:00'),(7439,0,0,3326,3244,4662,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 14:05:40','darshan','2025-11-29 14:07:28'),(7441,0,0,3297,3210,4608,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGTH SM AMENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-29 14:13:41','','0000-00-00 00:00:00'),(7442,0,0,3327,3245,4663,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up&thinsp; case---recurernce of vertigo&thinsp;</p>\n\n<p>headache</p>\n\n<p>medicien skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 14:19:28','','0000-00-00 00:00:00'),(7444,0,0,3298,3211,4609,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 14:26:07','','0000-00-00 00:00:00'),(7446,0,0,3305,3219,4624,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-29 14:28:01','','0000-00-00 00:00:00'),(7447,0,0,3328,3246,4664,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 14:42:04','','0000-00-00 00:00:00'),(7449,0,0,3334,3252,4672,0,0,NULL,'','CC','ZZZ','Remark','RIGTH EAR TINNITUS----3 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 14:47:11','','0000-00-00 00:00:00'),(7450,0,0,3334,3252,4672,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS -----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 14:47:11','','0000-00-00 00:00:00'),(7451,0,0,3334,3252,4672,0,0,NULL,'','HIST','ZZZ','Remark','<p>right ear continuous pulsatile tinnitus and subside with compression on neck</p>\n\n<p>positional giddiness for few seconds only</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 14:48:02','','0000-00-00 00:00:00'),(7452,0,0,3334,3252,4672,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>&thinsp;pta--WNL</p>\n\n<p>OAE--poor cordination</p>\n\n<p>vng---left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-11-29 14:48:21','darshan','2025-11-29 15:02:16'),(7454,0,0,3298,3211,4609,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-29 14:49:42','','0000-00-00 00:00:00'),(7456,0,0,3328,3246,4664,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAEWNVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-29 14:51:51','','0000-00-00 00:00:00'),(7460,0,0,3334,3252,4672,0,0,NULL,'','MADVICE','ZZZ','Remark','GAURDED PROGNOSIS FOR TINNITUS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-11-29 15:03:34','','0000-00-00 00:00:00'),(7461,0,0,3337,3254,4677,0,0,NULL,'','DIAG','ZZZ','Remark','RT INGROWING TOE NAIL','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-29 18:18:45','','0000-00-00 00:00:00'),(7462,0,0,3329,3247,4665,0,0,NULL,'','DIAG','ZZZ','Remark','GLUTEAL ABSCESS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-29 18:26:48','','0000-00-00 00:00:00'),(7463,0,0,3329,3247,4665,0,0,NULL,'','DIAG','ZZZ','Remark','CH ANAEMIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-29 18:26:51','','0000-00-00 00:00:00'),(7464,0,0,3339,3256,4680,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-29 18:48:52','','0000-00-00 00:00:00'),(7465,0,0,3341,3258,4684,0,0,NULL,'','DIAG','ZZZ','Remark','COMPLEX FISTULA IN ANO','','',0,'0000-00-00 00:00:00','drpratapsi','2025-11-29 19:15:24','','0000-00-00 00:00:00'),(7466,0,0,3303,214,4630,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE GASTRO ENTERITIS</STRONG></P>\r\n\r\n<P><STRONG>ACUTE KIDNEY INJURY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-29 20:50:53','mo','2025-11-29 21:01:28'),(7467,0,0,3303,214,4630,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-29 20:50:53','mo','2025-11-29 21:01:28'),(7468,0,0,3303,214,4630,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 68 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O: HAEMORRHOIDECTOMY (AYURVEDIC RX TAKEN)<BR />\r\nC/O: SEVERE WATERY DIARRHOEA (10-12 TIME/ DAY)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VOMITING (5-6 EPISODE/DAY)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SEVERE GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NO FEVER</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESETED SINCE YESTERDAY FOR THAT CONSULTED AT DR MRUNAL AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-117/MIN, BP-100/60MMHG, SPO2-98% ON RA, RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>PATIENT GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE BUT THEY WANT DISCHARGE AGAINST MEDICAL ADVICE</P>\r\n\r\n<P>SO PATIENT BEING DAMA</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-29 20:50:53','mo','2025-11-29 21:01:28'),(7469,0,0,3303,214,4630,0,0,NULL,'','DISCCOND','','','<P>NEED HOSPITALIZATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-29 20:50:53','mo','2025-11-29 21:01:28'),(7470,0,0,3303,214,4630,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-29 20:50:53','mo','2025-11-29 21:01:28'),(7471,0,0,3303,214,4630,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ CEFCON 1GM/ DIL&nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; 12 HOOURLY FIRST DOSE GIVEN 12 MD</P>\r\n\r\n<P>INJ METROGYL 100ML&nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; 8 HOURLY&nbsp; &nbsp; FIRST DOSE GIVEN 12 MD</P>\r\n\r\n<P>INJ RABICROSS 20&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; 12 HOURLY</P>\r\n\r\n<P>INJ QUICKSET&nbsp;1 A&#39;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8 HOURLY</P>\r\n\r\n<P>CAP ENUFF&nbsp; 100&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp;1--1--1</P>\r\n\r\n<P>CAP ROTOGUT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 0--1--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-29 20:50:53','mo','2025-11-29 21:01:28'),(7472,0,0,2866,181,3909,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS WITH CBC REPORT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 01:01:56','mo','2025-12-03 17:51:12'),(7473,0,0,3336,215,4674,0,0,NULL,'','DISCDIAG','','','<P><STRONG>- SEVERE IRON DFCIENCY ANEMIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>- K/C/O: CKD ON MHD, DM,HTN, CAD (POST PTCA 1 YR BACK)</STRONG></P>\r\n\r\n<P><STRONG>-&nbsp;H/O:HCV POSITIVE, HBSAG POSITIVE</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 01:14:57','mo','2025-12-02 14:52:28'),(7474,0,0,3336,215,4674,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG>: CKD ON MHD, DM,HTN, CAD (POST PTCA 1 YR BACK)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 01:14:57','mo','2025-12-02 14:52:28'),(7475,0,0,3336,215,4674,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 62 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: CKD ON MHD, DM,HTN, CAD (POST PTCA 1 YR BACK)<BR />\r\nH/O:HCV POSITIVE, HBSAG POSITIVE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BLOOD TRANFUSION DONE ON 28/11/2025</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; LAST HD ON 28/11/2025<BR />\r\nC/O: HEMATOCHEZIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GIDDINESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DIARRHOEA (7-8 TIMES)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE YESTERDAY FOR THAT&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-98/MIN, BP-130/90MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>29/11/2025</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>30/11/2025</P>\r\n\r\n<P>REFERENCE OD DR RISHIKESH KALARIA(DNB GASTRO) DONE AND ADVICE FOR UGISCOPY,COLONOSCOPY</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>01/12/2025</P>\r\n\r\n<P>HD DONE IN B.T. SAVANI HOSPITAL 4 HOURS UF 2 LIT. HEPARINE FREE&nbsp;</P>\r\n\r\n<P>2 UNIT RCC TRANSFUSE DURING HD</P>\r\n\r\n<P>USG ABDOMEN DONE REPORT ATTECH WITH FILE</P>\r\n\r\n<P>STOOL R/M DONE WHICH S/O OCCULT BLOOD +++, GIARDIA CYST PRESENT</P>\r\n\r\n<P>UGI SCOPY AND COLONOSCOPY DONE BY DR. RISHIKESH KALARIYA AT STARLING HOSPITAL REPORT ATTCH WITH FILE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>2/12/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 01:14:57','mo','2025-12-02 14:52:28'),(7476,0,0,3336,215,4674,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 01:14:57','mo','2025-12-02 14:52:28'),(7477,0,0,3336,215,4674,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ NEXPROFAST DRIP</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ TRENEXA</P>\r\n\r\n<P>TAB SPOROLAC DS</P>\r\n\r\n<P>TAB ARKAMIN</P>\r\n\r\n<P>TAB AZTOR</P>\r\n\r\n<P>TAB NICARDIA</P>\r\n\r\n<P>CAP PREGASON-M</P>\r\n\r\n<P>PAG LEG POWDER</P>\r\n\r\n<P>CAP. ECOSPRIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 01:14:57','mo','2025-12-02 14:52:28'),(7478,0,0,3151,209,4359,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS TO GYNECOLOGIST</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 01:30:10','mo','2025-11-30 15:14:06'),(7479,0,0,3295,216,4675,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE APPENDICITIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 01:44:30','mo','2025-11-30 11:49:50'),(7480,0,0,3295,216,4675,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 01:44:30','mo','2025-11-30 11:49:50'),(7481,0,0,3295,216,4675,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 32 YEARS OLD &nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O: ABDOMINL PAIN&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO NAUSEA/VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO FEVER</P>\r\n\r\n<P>ALLA BOVE MENTIONED C/O PRESENTED SINCE 5-6 DAYS FOR THAT PRIMARY CONSULTED ON OPD BASE AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN DONE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-98/MIN, BP-110/0MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nEMERGENCY LAPAROSCOPIC APPENDECTOMYBDONE BY DR PRATAPSINH DODIYA ON 29/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 01:44:30','mo','2025-11-30 11:49:50'),(7482,0,0,3295,216,4675,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>AVOID OILY/SPICY FOOD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 01:44:30','mo','2025-11-30 11:49:50'),(7483,0,0,3295,216,4675,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 01:44:30','mo','2025-11-30 11:49:50'),(7484,0,0,2956,191,4047,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM 500&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........FOR 5 DAYS</P>\r\n\r\n<P>TAB METRO ER 600&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ..........FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ..........FOR 5 DAYS</P>\r\n\r\n<P>TAB RIFAGUT&nbsp;200&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........FOR 5 DAYS</P>\r\n\r\n<P>TAB SPORLAC&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...........FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 10:38:45','mo','2025-12-01 10:28:59'),(7485,0,0,3295,216,4675,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:&nbsp;EMERGENCY LAPAROSCOPIC APPENDECTOMYBDONE BY DR PRATAPSINH DODIYA ON 29/11/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 11:49:50','','0000-00-00 00:00:00'),(7486,0,0,3295,216,4675,0,0,NULL,'','OTNOTE','','','<p>-thick wall, inflammed&nbsp;appendix</p>\r\n\r\n<p>-omentum adherent with uterus &amp; sigmoid colon</p>\r\n\r\n<p>-uterus adherent with rectum</p>\r\n\r\n<p>-no meckel&#39;s diverticula</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 11:49:50','','0000-00-00 00:00:00'),(7487,0,0,3295,216,4675,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 11:49:50','','0000-00-00 00:00:00'),(7488,0,0,3295,216,4675,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZENFLOX-OZ&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; BEFORE FOOD FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 11:49:50','','0000-00-00 00:00:00'),(7489,0,0,2834,179,3861,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 13:34:48','','0000-00-00 00:00:00'),(7490,0,0,2834,179,3861,0,0,NULL,'','TREATDISC_TI','','','<P>TAB NEXPROFATS&nbsp; 40&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; FOR&nbsp; 7 DAYS</P>\r\n\r\n<P>TAB ZOFER MD 8MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp; &nbsp; IF VOMITING</P>\r\n\r\n<P>TAB ULTRACET&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS&nbsp; &nbsp; &nbsp; &nbsp; IF PAIN</P>\r\n\r\n<P>TAB CREMALAX 10&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 7 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 13:34:48','','0000-00-00 00:00:00'),(7491,0,0,3151,209,4359,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX:&nbsp;PTEMLSCS(1ST MALE 2:36AM 1.060KG<BR />\r\n2ND MALE 2:38AM 1.035 KG) DONE BY DR.AARTI CHANDRANI UNDER GA.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 13:49:12','mo','2025-11-30 15:14:06'),(7492,0,0,3151,209,4359,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 13:49:12','mo','2025-11-30 15:14:06'),(7493,0,0,3151,209,4359,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE 250&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 3 DAYS</P>\r\n\r\n<P>TAB METRO-ER 600&nbsp;&nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 3 DAYS</P>\r\n\r\n<P>TAB NEXPROFAST&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZOFER MD 8&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS&nbsp; &nbsp; &nbsp; IF VOMITING</P>\r\n\r\n<P>TAB ULTRACET&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB LEVIGRESS 500&nbsp; &nbsp; 1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB NICARDIA R&nbsp; 20&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB LABETOL 100&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB IVABRED 5&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DYTOR 10&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP CREMAFFIN PLUS 0-0-15ML&nbsp; AFTER FOOD&nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 13:49:12','mo','2025-11-30 15:14:06'),(7494,0,0,3151,209,4359,0,0,NULL,'','OTNOTE','','','<p>on 27/11/2025</p>\r\n\r\n<p>incision -</p>\r\n\r\n<p>prfannenstiel incision&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>steps&nbsp;</p>\r\n\r\n<p>- pt emlscs&nbsp; 1st mch 2:36am 1.06kg&nbsp;</p>\r\n\r\n<p>2nd mch 2:38 am 1.035kg&nbsp;</p>\r\n\r\n<p>- uterus normal /b/ladnex nad&nbsp;</p>\r\n\r\n<p>- mild ascites&nbsp;</p>\r\n\r\n<p>- 1st baby delivered by breech , 2nd baby delivered by vertex.&nbsp;</p>\r\n\r\n<p>27/11/2025&nbsp;</p>\r\n\r\n<p>- indication&nbsp; antepartum eclampsia&nbsp;</p>\r\n\r\n<p>- one baby intubated another baby taken on room.&nbsp;</p>\r\n\r\n<p>- baby did not cry after birth&nbsp;</p>\r\n\r\n<p>-no gross congenital anomaly seen</p>\r\n\r\n<p>- placenta and mambranes delivered completely (monochromatic diamniotic twins)</p>\r\n\r\n<p>- no pph / no extension of incision&nbsp;</p>\r\n\r\n<p>- neonatilogist called , call attended (dr satish sanja )</p>\r\n\r\n<p>- both baby take to nicu.&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-11-30 15:14:06','','0000-00-00 00:00:00'),(7495,0,0,3287,213,4594,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE CALCULUS CHOLEYCYSTITIS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM II,IHD(POST CABG)&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 00:25:18','mo','2025-12-01 13:49:42'),(7496,0,0,3287,213,4594,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY-</STRONG></P>\r\n\r\n<P>HEMORRHOIDECTOMY BEFORE MANY YR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;LAPAROTOMY BEFORE 30 YR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;B/L GREAT TOE AMPUTATION</P>\r\n\r\n<P><BR />\r\n<STRONG>PAST MEDICAL HISTORY-</STRONG> DM II,IHD(POST CABG)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 00:25:18','mo','2025-12-01 13:49:42'),(7497,0,0,3287,213,4594,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 72 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II,IHD(POST CABG)&nbsp;</P>\r\n\r\n<P>H/O: HEMORRHOIDECTOMY BEFORE MANY YR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;LAPAROTOMY BEFORE 30 YR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;B/L GREAT TOE AMPUTATION<BR />\r\nC/O:ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;BURNING MICTURITION</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 5-6 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>2D ECHO DONE ON 27/8/2025 WHICH S/O: LVEF-45%</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-84/MIN, BP-100/60MMHG, SPO2-98% ON RA, RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ECG DONE&nbsp;<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nEMERGENCY LAPROSCOPIC CHOLEYCYSTECTOMY DONE BY DR PRATAPSINH DODIYA ON 29/11/2025 UNDER GEENRAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO ICU.</P>\r\n\r\n<P>FURTHER 24 HOUR ICU STAY WAS UNEVENTFULL SO PATIENT SHIFTED TO WARD</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 00:25:18','mo','2025-12-01 13:49:42'),(7498,0,0,3287,213,4594,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>NOTE: HPE AWAITED&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 00:25:18','mo','2025-12-01 13:49:42'),(7499,0,0,3287,213,4594,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ CLEXANE</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>DULCOLAX SUPP</P>\r\n\r\n<P>CAP CVROZ ASP</P>\r\n\r\n<P>TAB NICORAN</P>\r\n\r\n<P>TAB CARDIVAS</P>\r\n\r\n<P>TAB ELIQUIS</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 00:25:18','mo','2025-12-01 13:49:42'),(7500,0,0,3347,220,4691,0,0,NULL,'','DISCDIAG','','','<P><STRONG>INTERNO-EXTERNAL HAEMORRHOIDS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN,IHD(DRUG DEFAULTER)&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 00:35:28','mo','2025-12-02 20:20:50'),(7501,0,0,3347,220,4691,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-01 00:35:28','mo','2025-12-02 20:20:50'),(7502,0,0,3347,220,4691,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 69 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN,IHD(DRUG DEFAULTER)&nbsp;<BR />\r\nH/O:HAEMORRHOIDECTOMY DONE BEFORE 5-6 YR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;TURP BEFORE 4-5 YR&nbsp;&nbsp;<BR />\r\nC/O:BLEEDING P/R</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;PAIN IN ANUS&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;VOMITING(1-2 EPISODE)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FEVER ON AND OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;BREATHLESSNESS(SINCE TODAY MORNING)</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 4-5 DAYS FOR THAT PATIENT PRIMARY CONSULTED AT SADBHAVNA HOSPITAL AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-116/MIN, BP-122/74MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ECG DONE&nbsp;</P>\r\n\r\n<P>IN VIEW OF LOW HB INJ RCC 2 UNIT GIVEN&nbsp;<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nOPEN HEMORRHOIDECTOMY DONE BY DR PRATAPSINH DODIYA ON 1/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION&nbsp;</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 00:35:28','mo','2025-12-02 20:20:50'),(7503,0,0,3347,220,4691,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>HOT SITZ BATH&nbsp;</P>\r\n\r\n<P>TAKE LIGHT DIET</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 00:35:28','mo','2025-12-02 20:20:50'),(7504,0,0,3347,220,4691,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>TAB METRO ER</P>\r\n\r\n<P>INJ HAPPY</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>2 UNIT RCC</P>\r\n\r\n<P>INJ TRANEXA</P>\r\n\r\n<P>INJ DYNPAR</P>\r\n\r\n<P>TAB COSKLOT PLUS</P>\r\n\r\n<P>SYP LECTIHEP</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n\r\n<P>TAB TELMIGEN</P>\r\n\r\n<P>LOX JELLY 2%</P>\r\n\r\n<P>ANO METRO CREAM</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 00:35:28','mo','2025-12-02 20:20:50'),(7505,0,0,3343,217,4686,0,0,NULL,'','DISCDIAG','','','<P>HYPOTENSION (?) ACUTE ADRENAL CRISIS&nbsp;</P>\r\n\r\n<P>K/C/O: CA BUCCAL MUCOSA(POST OP COMMANDO SX TWICE) ON CHEMO RX</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 00:55:15','mo','2025-12-01 13:43:31'),(7506,0,0,3343,217,4686,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-01 00:55:15','mo','2025-12-01 13:43:31'),(7507,0,0,3343,217,4686,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 46 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: CA BUCCAL MUCOSA(POST OP COMMANDO SX TWICE) ON CHEMO RX<BR />\r\nH/O:SUDDEN ONSET OF LOC FOR FEW MINUTED&nbsp; WHILE DRIVING CAR TODAY AROUND 8PM F&#39;BY<BR />\r\n:REGAINING CONSCIOUSNESS WITHIN FEW MINUTED WITHOUT ANY JERKY MOVEMENT,URINARY OR FEVAL INCONTINENCE</P>\r\n\r\n<P>FOR THAT PATIENT PRIMARY RX TAKEN AT SYNERGY HOSPITAL AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-46/MIN, BP-60 SYSTOLIC, SPO2-96% ON RA, RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU&nbsp;AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>TROP I SENT WHICH WAS NEGATIVE</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL SUPPLIMENT&nbsp;</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION INJ NORAD DRIP START F&#39;BY IV FLUID SUPPLIMENT</P>\r\n\r\n<P>URINE R/M DONE ON 29/11/2025 WHICH S/O: 12-15 PUS CELL</P>\r\n\r\n<P>FURTHER 24 HOUR WAS UNEVENTFULL SO PATIENT SHIFTED TO WARD</P>\r\n\r\n<P>BLOOD PRESSURE MONITORING 2ND HOURLY AND INOTROPIC SUPPORT&nbsp;TAPPER OFF&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 00:55:15','mo','2025-12-01 13:43:31'),(7508,0,0,3343,217,4686,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 01:12:32','mo','2025-12-01 13:43:31'),(7509,0,0,3343,217,4686,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MERO</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ NORAD</P>\r\n\r\n<P>INJ PRIMACORT</P>\r\n\r\n<P>TAB ECOSPRIN</P>\r\n\r\n<P>TAB LIPITAS</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n\r\n<P>INJ ELDERVIT&nbsp;</P>\r\n\r\n<P>TAB NAPROSYN</P>\r\n\r\n<P>INJ MGSO4</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 01:12:32','mo','2025-12-01 13:43:31'),(7510,0,0,3346,219,4690,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE GASTROENTERITIS&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 01:18:48','mo','2025-12-01 18:50:33'),(7511,0,0,3346,219,4690,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-01 01:18:48','mo','2025-12-01 18:50:33'),(7512,0,0,3346,219,4690,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 41 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:PERSISTENT&nbsp;WATERY DIARRHOEA (25-28 TIME/DAY)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;INTOLERANCE OF LIQUID OR SOLID FOOD&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA,VOMITING(2 EPISODE)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FEVERE ON AND OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;BURNING MICTURITION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ABDOMINAL PAIN</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE YESTERDAY NIGHT SO&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-88/MIN, BP-120/72MMHG, SPO2-97% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>TYPHI DOT DONE ON 29/11/2025 WHICH S/O: IGM WEAK POSITIVE</P>\r\n\r\n<P>URINE R/M DONE ON 29/11/2025 WHICH S/O; 1-2 PUS CELL,20-22 RBC</P>\r\n\r\n<P>WIDAL TUBE TEST ON 30/11/2025 WHICH WAS -VE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 01:18:48','mo','2025-12-01 18:50:33'),(7513,0,0,3346,219,4690,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 01:18:48','mo','2025-12-01 18:50:33'),(7514,0,0,3346,219,4690,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>CAP ENUFF</P>\r\n\r\n<P>CAP VSL #3</P>\r\n\r\n<P>ORS POWDER</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 01:18:48','mo','2025-12-01 18:50:33'),(7515,0,0,3350,222,4694,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE SMALL BOWEL OBSTRUCTION + DM TYPE 2</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 01:24:40','mo','2025-12-13 14:53:35'),(7516,0,0,3350,222,4694,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY-HYSTERECTOMY,HERNIOPLASTY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY-DM,HTN (SINCE 10 YR)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 01:24:40','mo','2025-12-13 14:53:35'),(7517,0,0,3350,222,4694,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 58 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM,HTN&nbsp;<BR />\r\nH/O:URETHRAL STRICTURE(2022)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;HYSTERECTOMY (DUE TO PERFORATION )</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;HERNIOPLASTY(BEFORE 6-7 YR)<BR />\r\nC/O:SEVERE ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA &AMP; VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO H/O FEVER&nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 2 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN AND PELVIS DONE ON 29/11/2025 REPORT ATACHED WITH FILE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-88/MIN, BP-110/70MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>30/11/2025</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFED ACCORDINGLY&nbsp;</P>\r\n\r\n<P>ECG DONE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>1/12/2025</P>\r\n\r\n<P>MIDCT SCAN OF ABDOMEN WITH PELVIS DONE WHICH SEEN OF CHANGES OF SMALL BOWEL MECHANICAL OBSTRUCTION</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>2/12/2025</P>\r\n\r\n<P>X-RAY STANDING ABDOMEN DONE REPORT ATTACHED WITH FILE<BR />\r\nLAPAROTOMY + ADHENOLYSIS DONE BY DR PRATAPSINH DODIYA&nbsp;UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO ICU.</P>\r\n\r\n<P>POST-OP 1 UNIT RCC GIVEN&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>03/12/2025</P>\r\n\r\n<P>FURTHER 24 HOUR ICU STAY WAS UNEVENTFULL SO PATIENT SHIFTED TO WARD</P>\r\n\r\n<P>HYPOPROTEINEMIA CORRECTED WITH INJ ALBUMIN SUPPLIMENT&nbsp;</P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:11PT\">PATIENT MOBILIZATION DONE&nbsp;</SPAN></P>\r\n\r\n<P>PATIENT BLLOD REPORTS CBC, TOTAL BILIRUBIN, S. ELECTROLITE ARE DONE</P>\r\n\r\n<P>TREATMENT CHANGE ACCORDINGLY</P>\r\n\r\n<P>PATIENT CONDITION IMPROVE WITH ON GOING TREATMENT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04/12/2025</P>\r\n\r\n<P>2ND INJ ALBUMIN SUPPLIMENT GIVEN&nbsp;</P>\r\n\r\n<P>PATIENT CONDITION IMPROVE WITH ONGOING TREATMENT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05/12/2025</P>\r\n\r\n<P>PATIENT CONDITION IMPROVE</P>\r\n\r\n<P>ORALLY SIPS STARTED&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>06/12/2025</P>\r\n\r\n<P>PATIENT REMOVE CVP LINE FORCEFLLY SO IV LINE SECURE ON RIGHT LEG</P>\r\n\r\n<P>2ND TIME CVP LINE DONE BY DR. PRATAPSINH DODIYA WITH ALL ASEPTIC PRECAUTION&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>7/12/2025</P>\r\n\r\n<P>IN VIEW OF UNCONTROLLED SUGAR LEVEL REVIEW OF DR ARCHIT RATHOD DONE AND FOLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>8/12/2025&nbsp;</P>\r\n\r\n<P>IN VIEW OF ABDOMINAL DISTENSION AND BOWEL SOUND POOR&nbsp;ADVICE FOR REOPERATE&nbsp;&nbsp;</P>\r\n\r\n<P>RE-EXPLORATION LAPROTOMY + ILEOSTOMY + THOROUGH PERITONIAL LAVAGE&nbsp;DONE BY DR PRATAPSINH DODIYA&nbsp;&nbsp;UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST OP SHIFT TO ICU&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>9/12/2025</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL DRIP</P>\r\n\r\n<P>3RD INJ ALBUMIN GIVEN&nbsp;</P>\r\n\r\n<P>FURTHER 24 HOUR UNEVENTFULL SO SHIFT TO WARD</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10/12/2025</P>\r\n\r\n<P>4TH INJ ALBUMIN GIVEN</P>\r\n\r\n<P>SWAB C/S SENT&nbsp;</P>\r\n\r\n<P>MOBILIZATION START&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11/12/2025&nbsp;</P>\r\n\r\n<P>SWAB C/S S/O: KLEBSIELLA PNEUMONIEA AND TREATMENT MODIFIED @ SENSTIVITY</P>\r\n\r\n<P>REVIEW OF DR ARCHIT RATHOD DONE AND FOLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL SUPPLIMENT&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12/12/2025</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>MOBILIZATION +&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13/12/202</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT GENERAL CONDITON AND PROGNOSIS EXPLAIN TO PATIENT RELATIVE BUT THAY WANT DISCHARGE AGAINST MEDICAL ADVICE&nbsp;</P>\r\n\r\n<P>SO NOW PATIENT BEING DAMA&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 01:24:40','mo','2025-12-13 14:53:35'),(7518,0,0,3350,222,4694,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION</P>\r\n\r\n<P>ILEOSTOMY CARE</P>\r\n\r\n<P>CVP CARE</P>\r\n\r\n<P>DRAIN CARE</P>\r\n\r\n<P>MOBILIZATION</P>\r\n\r\n<P>TAKE&nbsp;A LIGHT DIET</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 01:26:31','mo','2025-12-13 14:53:35'),(7519,0,0,3350,222,4694,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ MEROPENUM</P>\r\n\r\n<P>INJ AMIKACIN</P>\r\n\r\n<P>INJ TIGECYCLIN&nbsp;</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ HAPPY</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>INJ LESURIDE</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ DYNAPAR Q</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n\r\n<P>METROGYL P OINT</P>\r\n\r\n<P>INJ H. ACTRAPID</P>\r\n\r\n<P>1 UNIT RCC</P>\r\n\r\n<P>INJ ALBUMIN</P>\r\n\r\n<P>DULCOLAX SUPP</P>\r\n\r\n<P>INJ DYTOR&nbsp;</P>\r\n\r\n<P>PC ENEMA&nbsp;</P>\r\n\r\n<P>INJ H MIXTARD</P>\r\n\r\n<P>BUPRAGESIC PATCH&nbsp;</P>\r\n\r\n<P>CANDID POWDER</P>\r\n\r\n<P>INJ KCL&nbsp;</P>\r\n\r\n<P>TAB RIFAGUT&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 01:26:31','mo','2025-12-13 14:53:35'),(7520,0,0,3349,221,4693,0,0,NULL,'','DISCDIAG','','','<P><STRONG>FAECAL PERITONITIS + SEPTICEMIA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 01:34:47','mo','2025-12-04 20:36:32'),(7521,0,0,3349,221,4693,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY- HYSTERECTOMY BEFORE 5 DAYS</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY-NAD</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 01:34:47','mo','2025-12-04 20:36:32'),(7522,0,0,3349,221,4693,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 31 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nH/O: HYSTERECTOMY BEFORE 5 DAYS<BR />\r\nC/O: NAUSEA,VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER ON AND OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ABDOMINAL PAIN</P>\r\n\r\n<P>O/E:&nbsp;DRAIN IN SITU</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FOLEY&#39;S IN SITU</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE YESTERDAY FOR THAT PATIENT ADMITTED AT JANANI HOSPITAL AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN DONE ON 14/11/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-80/MIN, BP-120/60MMHG, SPO2-97% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nLAPAROSCOPIC RECTAL PERFORATION&nbsp;CLOSURE + SIGMOID COLON LOOP COLOSTOMY DONE BY DR PRATAPSINH DODIYA ON 04/12/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>REFERANCE OF DR. ARCHIT RATHOD (MD MEDICINE AND INTENSIVIST) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>HYPOPROTINEMIA CORRECTED WITH INJ. ALBUMIN SUPLIMENT</P>\r\n\r\n<P>IN VIEW OF LOW HB 1 UNIT RCC GIVEN.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 01:34:47','mo','2025-12-04 20:36:32'),(7523,0,0,3349,221,4693,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MERO</P>\r\n\r\n<P>NJ METROGYL</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>ALLEX LOGENGES</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>METROGUL P OINT.</P>\r\n\r\n<P>IMJ. ALBUREL 20%</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>SYP. RESWAS</P>\r\n\r\n<P>INJ TRAMADOL</P>\r\n\r\n<P>SYP ZINCOVIT</P>\r\n\r\n<P>PROTEINEX PODER</P>\r\n\r\n<P>SYP LECTIHEP</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 01:34:47','mo','2025-12-04 20:36:32'),(7524,0,0,2243,146,2879,0,0,NULL,'','DISCCOND','','','<P>E1VTM1</P>\r\n\r\n<P>SILICON CATHETER IN SITU( DAY-5,NO-14)</P>\r\n\r\n<P>NJ TUBE IN SITU</P>\r\n\r\n<P>T&#39;STOMY IN SITU(DAY-11,NO-7.5)</P>\r\n\r\n<P>RIGHT&nbsp;INTRAJUGULAR CENTRAL LINE IN SITU(DAY-18)</P>\r\n\r\n<P>INTRATHICAL CATHETER IN SITU(DAY-3)&nbsp;</P>\r\n\r\n<P><STRONG>NOTE :</STRONG> CSF CS, FUNGAL CS AWAITED&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 01:52:36','mo','2025-12-01 21:30:57'),(7525,0,0,2243,146,2879,0,0,NULL,'','TREATDISC_TI','','','<P>INJ EPIME TZ (1.125GM/100ML NS)&nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;6AM--2PM--10PM&nbsp; &nbsp; &nbsp; &nbsp; FOR&nbsp; &nbsp;3&nbsp;DAYS(10&nbsp;INJ)&nbsp;</P>\r\n\r\n<P>INJ GENTAMYCIN (10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; INTRATHICAL&nbsp; &nbsp; &nbsp; &nbsp;8AM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 3 DAYS</P>\r\n\r\n<P>INJ VANCOMYCIN (10MG0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; INTRATHICAL&nbsp; &nbsp; &nbsp; &nbsp;8AM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 3 DAYS&nbsp;</P>\r\n\r\n<P>TAB NEXPROFAST(40MG0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; N/J&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>TAB PERINORM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; N/J&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp;</P>\r\n\r\n<P>TAB LACOSAM(100MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;N/J&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1</P>\r\n\r\n<P>TAB LEVIGRESS(500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; N/J&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1</P>\r\n\r\n<P>TAB BISOBIS(5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; N/J&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>TAB FORCOX(3 TAB)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;N/J&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; 3--0--0&nbsp; &nbsp; &nbsp;BEFORE&nbsp; FEEDING IN MORNING</P>\r\n\r\n<P>TAB B LONG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;N/J&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0</P>\r\n\r\n<P>TAB ECOSPRIN(150MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; N/J&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0</P>\r\n\r\n<P>TAB CORTREL(40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;N/J&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0</P>\r\n\r\n<P>TAB ARKAMINE(0.1MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; N/J&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1</P>\r\n\r\n<P>LIQ LECTIHEP PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;N/J&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;30ML HS</P>\r\n\r\n<P>PROTEIN POWDER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;N/J&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2TSF WITH FEED&nbsp; &nbsp; &nbsp; TDS</P>\r\n\r\n<P>MOVIZOL EYE DROPS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BOTH EYE&nbsp; &nbsp; &nbsp; &nbsp; 2 DROPS&nbsp; &nbsp; &nbsp; &nbsp;7AM--7PM</P>\r\n\r\n<P>NEB DUOLIN/BUDECORT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/T&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1:1&nbsp; &nbsp; TDS&nbsp;</P>\r\n\r\n<P>TAB LANOL ER (650MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;N/J&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS FOR FEVER&nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>BETAINE SOLUTION(500ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp; TRACHEAL,FOLEY&#39;S,CVP CARE .......(1)</P>\r\n\r\n<P>GAUSE PIECE 5 PACKET&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp; &nbsp;&nbsp;TRACHEAL,FOLEY&#39;S,CVP CARE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>NOTE: </STRONG>FOR INJ GENTAMYCIN AND INJ VANCOMYCIN INTRATHECAL CATHETER FORMULA&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; STERILE GLOVES F&#39;BY 10 CC DISPO&nbsp;</P>\r\n\r\n<P>&nbsp;1)&nbsp;INJ GENTAMYCIN&nbsp; (1 ML)&nbsp; &nbsp; &nbsp; &nbsp;+ NS 3ML&nbsp; &nbsp; (4 ML TOTAL)&nbsp;</P>\r\n\r\n<P>- TOTAL DILUTION - 4ML---THAN TAKE ONLY&nbsp; 1ML (10MG)&nbsp;</P>\r\n\r\n<P>- GIVEN INTRATHICAL CATHETER&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>2) INJ VENCOMYCIN- 500MG+ DILUTION IN 10ML NS&nbsp;</P>\r\n\r\n<P>- TOTAL 50MG/ML</P>\r\n\r\n<P>- THAN TAKE 1ML(50MG) + 4ML NS - TOTAL 5ML= 10MG/ML</P>\r\n\r\n<P>- GIVE 1ML INTRATHICAL CATHETER</P>\r\n\r\n<P>-THAN NORMAL SALINE 2CC FOR FLUSH&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 01:52:36','mo','2025-12-01 21:30:57'),(7526,0,0,3358,3270,4706,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase---single episode of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 10:41:02','','0000-00-00 00:00:00'),(7527,0,0,2263,2207,4704,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow&thinsp; up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 10:45:08','','0000-00-00 00:00:00'),(7528,0,0,3360,3272,4709,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1.5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 10:52:52','','0000-00-00 00:00:00'),(7529,0,0,3360,3272,4709,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo---sudden onset of rotoatry feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associted other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 10:53:38','','0000-00-00 00:00:00'),(7530,0,0,3360,3272,4709,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----bilateral high freq severe sn deafness&thinsp;</p>\n\n<p>stabiloemtry---reduced ss scorea and vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 10:53:56','darshan','2025-12-01 13:21:47'),(7531,0,0,3360,3272,4709,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 10:54:18','','0000-00-00 00:00:00'),(7532,0,0,3360,3272,4709,0,0,NULL,'','DIAG','ZZZ','Remark','BILATERAL VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 10:54:40','','0000-00-00 00:00:00'),(7533,0,0,2778,2709,4708,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 10:57:43','','0000-00-00 00:00:00'),(7534,0,0,2778,2709,4708,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 10:58:05','','0000-00-00 00:00:00'),(7536,0,0,2778,2709,4708,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 10:58:26','','0000-00-00 00:00:00'),(7537,0,0,2503,2446,4702,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for giddiness</p>\n\n<p>headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:00:48','','0000-00-00 00:00:00'),(7539,0,0,2503,2446,4702,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVEUR FOR 1 WEEK ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:02:16','','0000-00-00 00:00:00'),(7540,0,0,2787,2716,4717,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:05:10','','0000-00-00 00:00:00'),(7541,0,0,2787,2716,4717,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:05:12','','0000-00-00 00:00:00'),(7543,0,0,2787,2716,4717,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:06:53','','0000-00-00 00:00:00'),(7544,0,0,2210,2155,4703,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--mild improvment</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:09:15','','0000-00-00 00:00:00'),(7545,0,0,961,930,4713,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-01 11:17:13','','0000-00-00 00:00:00'),(7546,0,0,961,930,4713,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-01 11:17:29','','0000-00-00 00:00:00'),(7547,0,0,3362,3273,4712,0,0,NULL,'','CC','ZZZ','Remark','SENSE OF IMBALANCE ----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:18:01','','0000-00-00 00:00:00'),(7548,0,0,3362,3273,4712,0,0,NULL,'','HIST','ZZZ','Remark','<p>when pt walks he feels sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsmo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:18:26','','0000-00-00 00:00:00'),(7549,0,0,3362,3273,4712,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilateral high f req severe sn deafness</p>\n\n<p>stabilomtry--reducd vestibular score\\</p>\n\n<p>vng--bilateral vestibulopathy with bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:18:41','darshan','2025-12-01 13:35:43'),(7551,0,0,961,930,4713,0,0,NULL,'','MADVICE','ZZZ','Remark','SALT RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-01 11:20:26','','0000-00-00 00:00:00'),(7552,0,0,3357,3269,4705,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:22:29','','0000-00-00 00:00:00'),(7553,0,0,3368,3279,4728,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-01 11:23:43','','0000-00-00 00:00:00'),(7554,0,0,3368,3279,4728,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-01 11:24:02','drjayant','2025-12-01 14:05:56'),(7555,0,0,3368,3279,4728,0,0,NULL,'','CC','ZZZ','Remark','POSTED FOR CYSTO WITH VIU||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-01 11:29:43','','0000-00-00 00:00:00'),(7557,0,0,3363,3274,4714,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----2 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:32:40','','0000-00-00 00:00:00'),(7558,0,0,3363,3274,4714,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head+</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:33:24','','0000-00-00 00:00:00'),(7559,0,0,3363,3274,4714,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----bilateral high frqe severe sn deafness</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:33:39','darshan','2025-12-01 13:46:21'),(7560,0,0,3363,3274,4714,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:33:50','','0000-00-00 00:00:00'),(7561,0,0,2785,2714,4715,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:38:12','','0000-00-00 00:00:00'),(7562,0,0,2785,2714,4715,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:38:41','','0000-00-00 00:00:00'),(7564,0,0,2785,2714,4715,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:39:55','','0000-00-00 00:00:00'),(7565,0,0,2780,178,3764,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>MOBILIZATION+&nbsp;</P>\r\n\r\n<P>E4M6V5</P>\r\n\r\n<P>LEFT SIDED WEAKNESS+&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 11:46:14','mo','2025-12-01 12:39:10'),(7566,0,0,2780,178,3764,0,0,NULL,'','TREATDISC_TI','','','<P>INJ MERO(1GM/100ML NS )&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp;7AM--3PM--10PM&nbsp; &nbsp; &nbsp;FOR 2 DAYS(7 INJ)&nbsp;</P>\r\n\r\n<P>TAB NEXPROFAST(40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;......FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB LEVERA (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..... FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB AMLODAC(5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...... FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB ECOSPRIN(75MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...... FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB ALLSTAT(40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...... FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB BISOBIS(5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......&nbsp; FOR 5&nbsp;DAYS</P>\r\n\r\n<P>CAP FLUDAC(20MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......&nbsp;FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB CLAVIX(75MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB STAGLIM M1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;....... FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB CORDERON(200MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB ZOLFRESH(10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......&nbsp; FOR 5&nbsp;DAYS</P>\r\n\r\n<P>PROEIN POWDER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;2TSF/WITH MILK&nbsp; BD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 11:46:14','mo','2025-12-01 12:39:10'),(7567,0,0,3364,3275,4716,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:46:49','','0000-00-00 00:00:00'),(7568,0,0,3364,3275,4716,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN WITH BLOCKAGE----YESTERDAY||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:47:16','','0000-00-00 00:00:00'),(7569,0,0,3364,3275,4716,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left AOM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:47:27','','0000-00-00 00:00:00'),(7570,0,0,1271,1230,4720,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:50:59','','0000-00-00 00:00:00'),(7571,0,0,3378,3289,4743,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-01 11:51:35','','0000-00-00 00:00:00'),(7572,0,0,3367,3278,4722,0,0,NULL,'','CC','ZZZ','Remark','RECURRENCT ORAL ULCERATION----6 MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:57:42','','0000-00-00 00:00:00'),(7573,0,0,3367,3278,4722,0,0,NULL,'','CC','ZZZ','Remark','REDUCED MOUTH OPENING----FEW YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:57:42','','0000-00-00 00:00:00'),(7574,0,0,3367,3278,4722,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:57:45','','0000-00-00 00:00:00'),(7575,0,0,3367,3278,4722,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>oral cavity---OSMF---half finger mouth opening</p>\n\n<p>exophytic growth at lower lip&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 11:59:07','','0000-00-00 00:00:00'),(7576,0,0,3287,213,4594,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>EMERGENCY LAPROSCOPIC CHOLEYCYSTECTOMY DONE BY DR PRATAPSINH DODIYA ON 29/11/2025 UNDER GEENRAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 11:59:19','mo','2025-12-01 13:49:42'),(7577,0,0,3287,213,4594,0,0,NULL,'','OTNOTE','','','<p>- omentum and transverse colon adherent with midline scar&nbsp;</p>\r\n\r\n<p>- omentum adherent with gb near fundus</p>\r\n\r\n<p>- thick wall distended gb</p>\r\n\r\n<p>- duodenem densly adherent with gb near neck region</p>\r\n\r\n<p>- single wide cystic duct double clipped</p>\r\n\r\n<p>- cystic artery coagulated and cut</p>\r\n\r\n<p>- gb separated from liver bed</p>\r\n\r\n<p>- hemostasis checked in gb fossa</p>\r\n\r\n<p>- gb removal done in endobag</p>\r\n\r\n<p>- saline wash given ,drain kept in gb fossa</p>\r\n\r\n<p>- 10mm port sheath closed with prolene no-1</p>\r\n\r\n<p>- skin closed with skin stappler&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 11:59:19','mo','2025-12-01 13:49:42'),(7578,0,0,3287,213,4594,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 11:59:19','mo','2025-12-01 13:49:42'),(7579,0,0,3287,213,4594,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM(500 MG)&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; .......FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp;......FOR 5 DAYS</P>\r\n\r\n<P>TAB UDILIV(300MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; ......FOR 5 DAYS</P>\r\n\r\n<P>TAB CALPOL(500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; ......FOR 5 DAYS</P>\r\n\r\n<P>SYP CREMAFFIN PLUS&nbsp; &nbsp; &nbsp; 10ML HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .....FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB SILOTME-M&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1</P>\r\n\r\n<P>CAP CVROZ - SP (75/20)&nbsp; &nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>TAB ELIQUIS (5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp;</P>\r\n\r\n<P>TAB CARDIVAS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1</P>\r\n\r\n<P>TAB NICORAN(10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>TAB TIDE PLUS(10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1/2--0--0&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 11:59:19','mo','2025-12-01 13:49:42'),(7580,0,0,2916,2844,4723,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 12:02:16','','0000-00-00 00:00:00'),(7582,0,0,2916,2844,4723,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 12:03:47','','0000-00-00 00:00:00'),(7583,0,0,1547,1506,4724,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 12:06:38','','0000-00-00 00:00:00'),(7584,0,0,1547,1506,4724,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 12:07:12','','0000-00-00 00:00:00'),(7586,0,0,1547,1506,4724,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER \nCONTINUE PREVIOUS MEDICINE FOR VM','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 12:09:47','','0000-00-00 00:00:00'),(7587,0,0,2334,2277,4746,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 12:14:14','','0000-00-00 00:00:00'),(7588,0,0,3369,3280,4729,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 12:23:22','darshan','2025-12-01 12:27:57'),(7589,0,0,191,178,4756,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT UNDISPLACED M.M. FRACTURE','','',0,'0000-00-00 00:00:00','drsagar','2025-12-01 12:26:26','','0000-00-00 00:00:00'),(7592,0,0,3369,3280,4729,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----TODAY MORNING||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 12:27:23','darshan','2025-12-01 13:59:29'),(7593,0,0,3369,3280,4729,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 12:28:02','darshan','2025-12-01 14:00:06'),(7594,0,0,3369,3280,4729,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 12:28:08','','0000-00-00 00:00:00'),(7595,0,0,2237,2182,4752,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---partially better</p>\n\n<p>sense&thinsp; of imbalance +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 12:31:21','darshan','2025-12-01 17:37:22'),(7596,0,0,2237,2182,4752,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain ---no sol or cva</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 12:35:33','darshan','2025-12-01 17:37:31'),(7597,0,0,3381,3292,4747,0,0,NULL,'','DIAG','ZZZ','Remark','RT EPIDIDYMO ORCHITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-01 12:35:38','','0000-00-00 00:00:00'),(7599,0,0,3381,3292,4747,0,0,NULL,'','DIAG','ZZZ','Remark','H/O RT INGUINAL HERNIOPLASTY','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-01 12:35:55','','0000-00-00 00:00:00'),(7600,0,0,3371,3282,4731,0,0,NULL,'','HIST','ZZZ','Remark','<p>right side neck pain---2 days&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 12:38:09','','0000-00-00 00:00:00'),(7601,0,0,3376,3287,4737,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 12:42:29','','0000-00-00 00:00:00'),(7602,0,0,3389,3300,4761,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT FOOT AND ANKLE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-01 12:48:21','','0000-00-00 00:00:00'),(7603,0,0,1161,1120,4748,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 12:53:39','','0000-00-00 00:00:00'),(7604,0,0,3387,3297,4757,0,0,NULL,'','HIST','ZZZ','Remark','<p>vertigo--recurrence of short duration positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 12:58:48','','0000-00-00 00:00:00'),(7605,0,0,3388,3298,4758,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 13:04:47','','0000-00-00 00:00:00'),(7606,0,0,3388,3298,4758,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 13:04:53','darshan','2025-12-01 13:08:22'),(7607,0,0,3388,3298,4758,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE --||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 13:04:58','','0000-00-00 00:00:00'),(7608,0,0,3388,3298,4758,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta----bialtelr high freq mild sn deafnwss</p>\n\n<p>stabilomtry---reduced vestibular ss scre</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 13:08:35','darshan','2025-12-01 14:19:49'),(7609,0,0,3388,3298,4758,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 13:08:42','','0000-00-00 00:00:00'),(7612,0,0,2971,2894,4727,0,0,NULL,'','MADVICE','ZZZ','Remark','INJ LABETOLOL 1 AMP IV STAT ','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-01 13:11:37','','0000-00-00 00:00:00'),(7613,0,0,3395,3306,4768,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----8-10 YRS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 13:15:31','','0000-00-00 00:00:00'),(7614,0,0,1826,1781,4769,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-01 13:16:32','','0000-00-00 00:00:00'),(7615,0,0,1826,1781,4769,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-01 13:16:37','drjayant','2025-12-01 13:17:01'),(7616,0,0,3395,3306,4768,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtpmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 13:17:50','','0000-00-00 00:00:00'),(7617,0,0,3395,3306,4768,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----bialtelr high freq severe sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 13:18:02','darshan','2025-12-01 14:40:59'),(7618,0,0,3395,3306,4768,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 13:18:13','','0000-00-00 00:00:00'),(7619,0,0,3393,3304,4765,0,0,NULL,'','CC','ZZZ','Remark','AGE | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-01 13:18:28','','0000-00-00 00:00:00'),(7620,0,0,3393,3304,4765,0,0,NULL,'','MADVICE','ZZZ','Remark','ADMISSION ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-01 13:18:42','','0000-00-00 00:00:00'),(7621,0,0,3360,3272,4709,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 13:22:23','','0000-00-00 00:00:00'),(7623,0,0,3391,3302,4763,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1.5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 13:30:51','','0000-00-00 00:00:00'),(7624,0,0,3391,3302,4763,0,0,NULL,'','HIST','ZZZ','Remark','<p>episdic vertigo ---sudden onset of giddiness feeling when walking&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsmo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 13:31:35','','0000-00-00 00:00:00'),(7625,0,0,3391,3302,4763,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nads</p>\n\n<p>hit--nad</p>\n\n<p>pta---bialteral moderate sn deafness</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng---bialteral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 13:31:50','darshan','2025-12-01 18:37:01'),(7628,0,0,3385,3295,4754,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-12-01 13:40:46','','0000-00-00 00:00:00');
INSERT INTO `pc_enc_dtl` VALUES (7629,0,0,3343,217,4686,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 13:41:17','mo','2025-12-01 13:43:31'),(7630,0,0,3343,217,4686,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE (250MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........FOR&nbsp; 5 DAYS</P>\r\n\r\n<P>TAB NEXPROFAST(40MG)&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;.......FOR 5 DAYS</P>\r\n\r\n<P>TAB ETOLOK (90MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ......FOR 5 DAYS</P>\r\n\r\n<P>TAB OMNACORTIL(10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 13:41:17','mo','2025-12-01 13:43:31'),(7633,0,0,3360,3272,4709,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 13:48:45','','0000-00-00 00:00:00'),(7634,0,0,3392,3303,4764,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 13:54:21','','0000-00-00 00:00:00'),(7635,0,0,3392,3303,4764,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nasd</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 13:54:31','','0000-00-00 00:00:00'),(7637,0,0,3392,3303,4764,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 13:55:07','','0000-00-00 00:00:00'),(7638,0,0,3392,3303,4764,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 13:55:22','','0000-00-00 00:00:00'),(7640,0,0,3369,3280,4729,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 14:00:37','','0000-00-00 00:00:00'),(7641,0,0,3396,3307,4770,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 14:03:04','','0000-00-00 00:00:00'),(7643,0,0,3362,3273,4712,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 14:04:28','','0000-00-00 00:00:00'),(7644,0,0,3368,3279,4728,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>2D ECHO- SEVERE LVD +</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-01 14:06:44','','0000-00-00 00:00:00'),(7646,0,0,3368,3279,4728,0,0,NULL,'','MADVICE','ZZZ','Remark','PT IS FIT FOR SURGERY WITH HIGH RISK \nW/H ECOTOR GOLD 3 DAYS BEFORE SX','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-01 14:08:38','','0000-00-00 00:00:00'),(7647,0,0,3397,3308,4771,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ACUTE PARTIAL VESTIBULAR DEFICIT','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 14:16:46','','0000-00-00 00:00:00'),(7648,0,0,3397,3308,4771,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 14:16:52','','0000-00-00 00:00:00'),(7653,0,0,3363,3274,4714,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 14:23:29','','0000-00-00 00:00:00'),(7655,0,0,3367,3278,4722,0,0,NULL,'','MADVICE','ZZZ','Remark','FOLLOW UP WITH HPE REPORTS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 14:29:31','','0000-00-00 00:00:00'),(7657,0,0,3369,3280,4729,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 14:30:13','','0000-00-00 00:00:00'),(7658,0,0,2591,2534,4772,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 14:34:51','','0000-00-00 00:00:00'),(7661,0,0,2591,2534,4772,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 14:35:43','','0000-00-00 00:00:00'),(7663,0,0,3388,3298,4758,0,0,NULL,'','MADVICE','ZZZ','Remark','PHYSICIAN OPENION FOR EXCERSIONAL DYSPNEA\nMRI BRAIN LIMITED STUDY\n','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 14:37:21','','0000-00-00 00:00:00'),(7664,0,0,3395,3306,4768,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 14:40:21','','0000-00-00 00:00:00'),(7666,0,0,1209,1170,4773,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>follow up case---better partailly&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 14:45:54','','0000-00-00 00:00:00'),(7670,0,0,3395,3306,4768,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 14:52:24','','0000-00-00 00:00:00'),(7671,0,0,2818,2748,4782,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 17:06:02','','0000-00-00 00:00:00'),(7672,0,0,2818,2748,4782,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 17:06:21','','0000-00-00 00:00:00'),(7674,0,0,2818,2748,4782,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 17:07:01','','0000-00-00 00:00:00'),(7675,0,0,3207,3121,4784,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--left ear wax removed&thinsp;</p>\n\n<p>Rtight ear hard wax</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 17:16:15','','0000-00-00 00:00:00'),(7677,0,0,3207,3121,4784,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT EAR WAX REMOVAL NEXT TIME ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 17:17:38','','0000-00-00 00:00:00'),(7678,0,0,1880,1834,4785,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---jurky feeling in head at sleeping time&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 17:24:46','','0000-00-00 00:00:00'),(7679,0,0,2816,2746,4786,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 17:30:27','','0000-00-00 00:00:00'),(7680,0,0,2816,2746,4786,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 17:30:53','','0000-00-00 00:00:00'),(7682,0,0,2816,2746,4786,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 17:31:57','','0000-00-00 00:00:00'),(7683,0,0,3406,3313,4789,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN---2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 17:33:55','','0000-00-00 00:00:00'),(7684,0,0,3406,3313,4789,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left Otitis externa</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 17:34:06','','0000-00-00 00:00:00'),(7686,0,0,2237,2182,4752,0,0,NULL,'','MADVICE','ZZZ','Remark','CT  MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 17:40:48','','0000-00-00 00:00:00'),(7687,0,0,1477,1436,4792,0,0,NULL,'','HIST','ZZZ','Remark','<p>followu pcase----recurrence of vertigo&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 17:44:23','','0000-00-00 00:00:00'),(7688,0,0,3408,3316,4796,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 17:50:42','','0000-00-00 00:00:00'),(7689,0,0,3408,3316,4796,0,0,NULL,'','CC','ZZZ','Remark','RECURRENT NASAL BLOCKAGE--7-8 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 17:50:58','','0000-00-00 00:00:00'),(7690,0,0,3408,3316,4796,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose---mild congestion +</p>\n\n<p>&thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp;Dns to left&thinsp;</p>\n\n<p>CT pns---right side all sinus mucosl thickening&thinsp;&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 17:51:23','darshan','2025-12-02 11:10:14'),(7692,0,0,2245,2188,4799,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 17:57:06','','0000-00-00 00:00:00'),(7693,0,0,3409,3317,4797,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatyory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:02:41','darshan','2025-12-01 18:05:50'),(7694,0,0,3409,3317,4797,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:05:10','','0000-00-00 00:00:00'),(7695,0,0,3409,3317,4797,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--wnl</p>\n\n<p>vng-l;eft hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:06:03','darshan','2025-12-01 18:58:12'),(7697,0,0,3412,3320,4803,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO------FWE MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:14:02','','0000-00-00 00:00:00'),(7698,0,0,3412,3320,4803,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE---MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:14:02','','0000-00-00 00:00:00'),(7699,0,0,3412,3320,4803,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset any time and remains for few mins&thinsp;</p>\n\n<p>nausea +</p>\n\n<p>freqeutn headache&thinsp;</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:14:36','','0000-00-00 00:00:00'),(7700,0,0,3412,3320,4803,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vng---right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:14:51','darshan','2025-12-01 19:38:00'),(7702,0,0,1412,1371,4805,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:17:14','','0000-00-00 00:00:00'),(7704,0,0,1412,1371,4805,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:18:19','','0000-00-00 00:00:00'),(7706,0,0,3329,3247,4791,0,0,NULL,'','DIAG','ZZZ','Remark','ANAEMIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-01 18:18:38','','0000-00-00 00:00:00'),(7707,0,0,3329,3247,4791,0,0,NULL,'','DIAG','ZZZ','Remark','ANTERIOR ANANL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-01 18:18:45','','0000-00-00 00:00:00'),(7708,0,0,3394,3305,4767,0,0,NULL,'','DIAG','ZZZ','Remark','PERIANAL ABSCESS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-01 18:19:07','','0000-00-00 00:00:00'),(7709,0,0,3399,3310,4776,0,0,NULL,'','DIAG','ZZZ','Remark','RT FOOT RAW AREA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-01 18:20:29','','0000-00-00 00:00:00'),(7710,0,0,3397,3308,4771,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of giddiness in sitting postre followed by continuous sense of imbalance</p>\n\n<p>initially vomiting +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:21:57','darshan','2025-12-01 18:23:58'),(7711,0,0,3397,3308,4771,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus=---left beat</p>\n\n<p>hit--right abnoraml&thinsp;</p>\n\n<p>dix halpike--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right acute partial vestibular deficit</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:24:49','','0000-00-00 00:00:00'),(7712,0,0,1542,1501,4811,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--right ear tinnitus&thinsp;</p>\n\n<p>BTM---i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:27:43','darshan','2025-12-01 18:28:36'),(7713,0,0,3418,3326,4818,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-01 18:27:52','','0000-00-00 00:00:00'),(7714,0,0,3418,3326,4818,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-01 18:27:54','drjayant','2025-12-01 18:28:24'),(7715,0,0,3407,3315,4793,0,0,NULL,'','HIST','ZZZ','Remark','<p>H/O INGESTION OF WHEY PROTEIN&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-01 18:31:40','','0000-00-00 00:00:00'),(7717,0,0,1564,1523,4817,0,0,NULL,'','HIST','ZZZ','Remark','<p>foflfow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:33:12','','0000-00-00 00:00:00'),(7718,0,0,3418,3326,4818,0,0,NULL,'','MADVICE','ZZZ','Remark','SALT/ SUGAR RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-01 18:34:37','','0000-00-00 00:00:00'),(7719,0,0,3413,3321,4807,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-12-01 18:41:19','','0000-00-00 00:00:00'),(7720,0,0,3420,3328,4821,0,0,NULL,'','CC','ZZZ','Remark','VRTIGO----8-10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:46:16','','0000-00-00 00:00:00'),(7721,0,0,3428,3335,4835,0,0,NULL,'','CC','ZZZ','Remark','FEVER, BODYACHE, WEAKNESS, BILAT LL NUMBNESS | 2 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-01 18:46:40','','0000-00-00 00:00:00'),(7722,0,0,3420,3328,4821,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is geting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associted other cns symtpso m</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:46:43','','0000-00-00 00:00:00'),(7723,0,0,3420,3328,4821,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilatlrea high freq severe sn deafness</p>\n\n<p>vng---left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:46:55','darshan','2025-12-03 18:39:18'),(7724,0,0,3420,3328,4821,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV VS OTHER','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:47:01','','0000-00-00 00:00:00'),(7725,0,0,3428,3335,4835,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-01 18:47:02','drjayant','2025-12-01 18:52:24'),(7726,0,0,791,760,4822,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of short duration giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:50:17','','0000-00-00 00:00:00'),(7727,0,0,3346,219,4690,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 18:50:27','mo','2025-12-01 18:50:33'),(7728,0,0,3346,219,4690,0,0,NULL,'','TREATDISC_TI','','','<P>INJ OFRAMAX (1GM/DILUTED)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; 8AM--8PM&nbsp; &nbsp; FOR 2 DAYS(4 INJ)&nbsp;</P>\r\n\r\n<P>TAB METRO ER(600MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB NEXPROFAST(40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB PERINORM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>CAP ENUFF(100MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>ORS POWDER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1 PACK/WITH WATER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-01 18:50:27','mo','2025-12-01 18:50:33'),(7729,0,0,3422,3330,4824,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR PAIN----1 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:54:04','','0000-00-00 00:00:00'),(7730,0,0,3422,3330,4824,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>both ear Neuralgic pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:54:16','','0000-00-00 00:00:00'),(7731,0,0,3424,3332,4828,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT TENNIS ELBOW','','',0,'0000-00-00 00:00:00','drsagar','2025-12-01 18:54:23','','0000-00-00 00:00:00'),(7732,0,0,3424,3332,4828,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT DQ','','',0,'0000-00-00 00:00:00','drsagar','2025-12-01 18:54:48','','0000-00-00 00:00:00'),(7733,0,0,3409,3317,4797,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:57:54','','0000-00-00 00:00:00'),(7734,0,0,3409,3317,4797,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 18:58:38','','0000-00-00 00:00:00'),(7736,0,0,3431,3338,4841,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-01 19:08:55','','0000-00-00 00:00:00'),(7737,0,0,3431,3338,4841,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-01 19:09:14','','0000-00-00 00:00:00'),(7738,0,0,3419,3327,4819,0,0,NULL,'','HIST','ZZZ','Remark','<p>fofllow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 19:10:08','','0000-00-00 00:00:00'),(7739,0,0,438,416,4833,0,0,NULL,'','HIST','ZZZ','Remark','<p>fofllow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 19:12:53','','0000-00-00 00:00:00'),(7740,0,0,3405,3312,4788,0,0,NULL,'','CC','ZZZ','Remark','COUGHING ----3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 19:23:53','','0000-00-00 00:00:00'),(7741,0,0,3405,3312,4788,0,0,NULL,'','CC','ZZZ','Remark','BURNING SENSATION IN THRAOT||','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 19:23:53','','0000-00-00 00:00:00'),(7742,0,0,3405,3312,4788,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 19:23:59','','0000-00-00 00:00:00'),(7744,0,0,3409,3317,4797,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 19:29:53','','0000-00-00 00:00:00'),(7745,0,0,2841,2772,4814,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 19:31:38','','0000-00-00 00:00:00'),(7747,0,0,2841,2772,4814,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 19:33:04','','0000-00-00 00:00:00'),(7748,0,0,3412,3320,4803,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 19:38:36','','0000-00-00 00:00:00'),(7750,0,0,3210,3124,4850,0,0,NULL,'','CC','ZZZ','Remark','URTI||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-01 19:40:35','','0000-00-00 00:00:00'),(7751,0,0,3210,3124,4850,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-01 19:40:37','','0000-00-00 00:00:00'),(7752,0,0,601,574,4826,0,0,NULL,'','CC','ZZZ','Remark','POSTED FOR TOOTH EXTRACTION||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-01 19:41:55','','0000-00-00 00:00:00'),(7753,0,0,601,574,4826,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO C/O DOE&thinsp;</p>\n\n<p>NO C/O CHEST PAIN</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-01 19:42:01','drarchit','2025-12-01 19:42:21'),(7754,0,0,601,574,4826,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALLY NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-01 19:42:28','','0000-00-00 00:00:00'),(7755,0,0,2325,2268,4836,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 19:42:33','','0000-00-00 00:00:00'),(7756,0,0,2325,2268,4836,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 19:43:52','','0000-00-00 00:00:00'),(7760,0,0,2325,2268,4836,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 19:45:20','','0000-00-00 00:00:00'),(7761,0,0,601,574,4826,0,0,NULL,'','MADVICE','ZZZ','Remark','HOLD OPTOR ASP  3 DAYS BEFORE TOOTH EXTRACTION CONTINUE 2 ND DAY AFTER PROCEDURE.\nPATIENT CAN BE TAKEN FOR SURGERY WITH DUE ANESTHETIC DRUGS OPERATIVE RISK .','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-01 19:45:30','','0000-00-00 00:00:00'),(7763,0,0,3412,3320,4803,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 19:45:43','','0000-00-00 00:00:00'),(7764,0,0,2822,2752,4842,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 19:52:45','','0000-00-00 00:00:00'),(7767,0,0,2822,2752,4842,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 19:56:10','','0000-00-00 00:00:00'),(7768,0,0,3432,3339,4845,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--medicince skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 19:59:28','','0000-00-00 00:00:00'),(7769,0,0,3432,3339,4845,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 19:59:41','','0000-00-00 00:00:00'),(7770,0,0,2627,2567,4851,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---- better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-01 20:06:35','','0000-00-00 00:00:00'),(7772,0,0,2627,2567,4851,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-01 20:07:52','','0000-00-00 00:00:00'),(7773,0,0,3421,3329,4823,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-12-01 20:10:10','','0000-00-00 00:00:00'),(7776,0,0,3413,3321,4807,0,0,NULL,'','MADVICE','ZZZ','Remark','NEUROPHYSICIAN REFFERENCE TO R/O DIABETEIC NEUROPAHTY','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-01 20:26:26','','0000-00-00 00:00:00'),(7777,0,0,3403,227,4780,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE GASTROENTERITIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 00:37:44','mo','2025-12-02 14:19:42'),(7778,0,0,3403,227,4780,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 00:37:44','mo','2025-12-02 14:19:42'),(7779,0,0,3403,227,4780,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 32 YEARS OLD MALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O: LEFT META TARSALES AMPUTATION<BR />\r\nC/O: SEVER WATERY DIARRHOEA ( 15-18 DAYS)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; INTOLERANCE OF FOOD</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA, VOMITING 5-6 / DAY&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ABDOMINAL PAIN&nbsp; &nbsp;SINCE 2 DAYS&nbsp; &nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 4 DAYS, SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-85/MIN, BP-100/70MMHG, SPO2-99% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>TYPHI DOT DONE ON 01/12/2025 WHICH&nbsp;SEEN OF NEGETIVE.</P>\r\n\r\n<P>WIDAL TUBE TEST SEND ON 01/12/2025.</P>\r\n\r\n<P>HIS STOOL R/M DONE ON 2/12/2025 WHICH S/O:&nbsp; OCCULT BLOOD +++ STOOL C/S SENT ...&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 00:37:44','mo','2025-12-02 14:19:42'),(7780,0,0,3403,227,4780,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 00:39:19','mo','2025-12-02 14:19:42'),(7781,0,0,3403,227,4780,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>TAB URSOCOL</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 00:40:52','mo','2025-12-02 14:19:42'),(7782,0,0,3347,220,4691,0,0,NULL,'','TREATDISC_TI','','','<P>CAP. AUGMENTIN 625MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB. METRO ER&nbsp; &nbsp;600MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB. ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB. AKILOS - P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB. COSKLOT&nbsp;PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>SYP. LECTIHEP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 10ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;-----(1)</P>\r\n\r\n<P>LOX JELLY 2%&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE DEFICATION ----(1)</P>\r\n\r\n<P>ANO METRO CREAM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER DEFICATION ---(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 00:50:20','mo','2025-12-02 20:20:50'),(7783,0,0,3394,229,4802,0,0,NULL,'','DISCDIAG','','','<P>PERIANAL ABSCESS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 00:58:36','mo','2025-12-03 21:05:55'),(7784,0,0,3394,229,4802,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 00:58:36','mo','2025-12-03 21:05:55'),(7785,0,0,3394,229,4802,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 32 YEARS OLD MALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: ALCOHOLIC WITHDRAWAL ( SINCE 15 DAYS STOP ALCOHOL)<BR />\r\nH/O: NAD<BR />\r\nC/O: PAIN IN ANAL REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER ON AND OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO BLEEDING P/R</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO NAUSEA VOMITING&nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTION C/O PRESENTED SINCE 10-12 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-99.1F, PR-112/MIN, BP-126/80MMHG, SPO2-99% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>INCISION &AMP; DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 02/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 00:58:36','mo','2025-12-03 21:05:55'),(7786,0,0,3394,229,4802,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. MERO&nbsp;</P>\r\n\r\n<P>INJ. AMIKACIN</P>\r\n\r\n<P>INJ. METROGYL</P>\r\n\r\n<P>INJ. PANTO</P>\r\n\r\n<P>INJ. EMCET</P>\r\n\r\n<P>INJ. INFUPAR</P>\r\n\r\n<P>INJ. VIT K</P>\r\n\r\n<P>SYP. LECTIHEP</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 01:00:36','mo','2025-12-03 21:05:55'),(7787,0,0,3427,230,4834,0,0,NULL,'','DISCDIAG','','','<P>ADVANCED PARKINSON&#39;S DISEASE WITH MOTOR FLUCTUATION&nbsp;</P>\r\n\r\n<P>ADMITTED FOR OPTIMISATION RX</P>\r\n\r\n<P>K/C/O: HTN, DM, IHD , PARKINS DIASEAS&nbsp;AND HYPOTHYROIDISM&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 01:11:37','mo','2025-12-03 20:56:55'),(7788,0,0,3427,230,4834,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-02 01:11:37','mo','2025-12-03 20:56:55'),(7789,0,0,3427,230,4834,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 76 YEARS OLD FEMALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, DM, IHD , PARKINS DIASEAS&nbsp;AND HYPOTHYROIDISM&nbsp;<BR />\r\nH/O: HYSTERECTOMY<BR />\r\nC/O: HEADACHE, DIZZINESS, DRYNESS OF MOUTH&nbsp;SINCE 3 TO 4 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; LEFT LOWER LIMB PAIN, IRRELAVENT TACKING, SLURRING OF SPEECH SINCE 3 DAYS,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; HALLUCINATION SICE 3 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SEVERE WEAKNESS&nbsp;</P>\r\n\r\n<P>&nbsp;SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>MRI OF BRAIN AND WHOLE SPINE DONE ON 01/12/2025</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-60/MIN, BP-164/80MMHG, SPO2-96% ON RA, RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>PHYSIOTHERAPY START&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 01:11:37','mo','2025-12-03 20:56:55'),(7790,0,0,3427,230,4834,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. PANTO</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>TAB. SYNDOPA PLUS</P>\r\n\r\n<P>TAB. QUTAN</P>\r\n\r\n<P>TAB. PIMAVERSE</P>\r\n\r\n<P>TAB. ZAPMAX</P>\r\n\r\n<P>TAB. OLMESAR-H</P>\r\n\r\n<P>TAB. THYRONORM</P>\r\n\r\n<P>TAB. OBIMET GX 2</P>\r\n\r\n<P>TAB. ECOSPRIN AV</P>\r\n\r\n<P>TAB. AMLODAC</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ MVI</P>\r\n\r\n<P>TAB MIRABEGRON</P>\r\n\r\n<P>TAB AMANTRAL&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 01:21:42','mo','2025-12-03 20:56:55'),(7791,0,0,3401,226,4778,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PELVIC ENDOMETRIOSIS + B/L CHOCOLATE CYST</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 01:46:42','mo','2025-12-05 11:34:28'),(7792,0,0,3401,226,4778,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-02 01:46:42','mo','2025-12-05 11:34:28'),(7793,0,0,3401,226,4778,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 27 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O: MENORRHAGIA SINCE 8 TO 9 MONTH&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ABDOMINAL PAIN DURING MENSTRUATION</P>\r\n\r\n<P>ALL ABOVE MENTION COMPAIN ARE SICE 8 TO 9 MONTH SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>HBA1C (5.8%) DONE ON 25/11/2025</P>\r\n\r\n<P>ECG DONE ON 25/11/2025</P>\r\n\r\n<P>PHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST) IN OPD BASE.</P>\r\n\r\n<P>MRI OF ABDOMEN AND PELVIC DONE ON 11/10/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-84/MIN, BP-130/80MMHG, SPO2-98% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nBILATERAL OVARIAN CYSTECTOMY + PELVIC PERINECTOMY + UTETEROLYSIS + BOWEL SHAVING DONE BY&nbsp; DR SHILPAN GONDALYA ON 2/12/2025 UNDER GENERAL&nbsp;ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL SUPPLIMENT&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 01:46:42','mo','2025-12-05 11:34:28'),(7794,0,0,3401,226,4778,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. LACTAGARD</P>\r\n\r\n<P>INJ. PANTO</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ. METRO</P>\r\n\r\n<P>TAB. RIFAGUT</P>\r\n\r\n<P>TAB. SENALAX</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>INJ KCL&nbsp;</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>DULCOLAX SUPP</P>\r\n\r\n<P>FREEGO POWDER&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 01:49:27','mo','2025-12-05 11:34:28'),(7795,0,0,3361,223,4711,0,0,NULL,'','DISCDIAG','','','<P><STRONG>COMPLEX PERIANAL FISTULA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 02:03:45','mo','2025-12-03 11:43:34'),(7796,0,0,3361,223,4711,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST MEDICAL HISTORY-HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 02:03:45','mo','2025-12-03 11:43:34'),(7797,0,0,3361,223,4711,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 67 YEARS OLD MALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN<BR />\r\nH/O: NAD<BR />\r\nC/O: PAIN IN ANAL REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NO BLEEDING&nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTION C/O PRESENTED SINCE 10-15 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>MRI FISTULOGRAM / PERIANAL REGION (PLAIN) (29/11/2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-85/MIN, BP-130/80MMHG, SPO2-99% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nPARTIAL FISTULECTOMY + LIGATION OF INTERNAL OPENING DONE BY DR PRATAPSINH DODIYA ON 1/12/2025&nbsp;UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 02:03:45','mo','2025-12-03 11:43:34'),(7798,0,0,3361,223,4711,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. LACTA</P>\r\n\r\n<P>INJ. METRO</P>\r\n\r\n<P>INJ. PANTO</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ. INFUPAR</P>\r\n\r\n<P>SYP. LECTIHAP</P>\r\n\r\n<P>METROGYL P</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 02:07:28','mo','2025-12-03 11:43:34'),(7799,0,0,3441,3346,4858,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 10:42:47','','0000-00-00 00:00:00'),(7800,0,0,3443,3348,4862,0,0,NULL,'','DIAG','ZZZ','Remark','PHIMOSIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-02 10:45:22','','0000-00-00 00:00:00'),(7801,0,0,3443,3348,4862,0,0,NULL,'','DIAG','ZZZ','Remark','DM','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-02 10:45:26','','0000-00-00 00:00:00'),(7802,0,0,3443,3348,4862,0,0,NULL,'','MADVICE','ZZZ','Remark','SURGERY ','','9999.9',0,'0000-00-00 00:00:00','drpratapsi','2025-12-02 10:45:40','','0000-00-00 00:00:00'),(7803,0,0,1546,1505,4860,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>both ear tinnitus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 10:46:15','','0000-00-00 00:00:00'),(7804,0,0,3436,3343,4853,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2.5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 10:55:18','','0000-00-00 00:00:00'),(7805,0,0,3436,3343,4853,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 10:56:52','','0000-00-00 00:00:00'),(7806,0,0,3436,3343,4853,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----bilatelr high freq severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 10:57:04','darshan','2025-12-02 12:36:17'),(7807,0,0,3436,3343,4853,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 10:57:08','','0000-00-00 00:00:00'),(7808,0,0,3446,3350,4867,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--2 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 11:05:53','','0000-00-00 00:00:00'),(7809,0,0,3446,3350,4867,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo---sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 11:06:39','','0000-00-00 00:00:00'),(7810,0,0,3446,3350,4867,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>CT brain--nad</p>\n\n<p>pta----bilatelr high frq moderate sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---central variety of nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 11:06:50','darshan','2025-12-02 12:49:42'),(7812,0,0,787,755,4869,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 11:15:02','','0000-00-00 00:00:00'),(7813,0,0,3448,3351,4871,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 11:19:28','','0000-00-00 00:00:00'),(7814,0,0,3439,3345,4856,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 11:25:57','','0000-00-00 00:00:00'),(7815,0,0,3442,3347,4859,0,0,NULL,'','CC','ZZZ','Remark','NASAL BLOCKAGE-----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 11:29:45','','0000-00-00 00:00:00'),(7816,0,0,3442,3347,4859,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose---severly congested&thinsp;</p>\n\n<p>&thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp;DNS to right with inferior spur</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 11:30:16','','0000-00-00 00:00:00'),(7817,0,0,3437,3344,4854,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 11:34:54','darshan','2025-12-02 17:23:47'),(7818,0,0,655,625,4879,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----paritally better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 11:36:38','','0000-00-00 00:00:00'),(7819,0,0,1375,1335,4861,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---mild giddiness persist</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 11:40:15','','0000-00-00 00:00:00'),(7820,0,0,1375,1335,4861,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 11:40:27','','0000-00-00 00:00:00'),(7822,0,0,1375,1335,4861,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-02 11:43:30','','0000-00-00 00:00:00'),(7823,0,0,1473,1432,4889,0,0,NULL,'','CC','ZZZ','Remark','LEFT FROZEN SHOULDER||','','',0,'0000-00-00 00:00:00','drridham','2025-12-02 11:47:44','','0000-00-00 00:00:00'),(7824,0,0,3455,3358,4884,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2 WEEKS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 11:49:42','','0000-00-00 00:00:00'),(7825,0,0,3455,3358,4884,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rototayr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 11:50:16','','0000-00-00 00:00:00'),(7826,0,0,3455,3358,4884,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 11:50:26','darshan','2025-12-02 13:05:17'),(7828,0,0,3454,3357,4883,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---medicine irregualr&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 11:54:01','','0000-00-00 00:00:00'),(7829,0,0,3157,3071,4885,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 11:57:30','','0000-00-00 00:00:00'),(7832,0,0,3457,3360,4887,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 12:04:36','','0000-00-00 00:00:00'),(7833,0,0,3428,3335,4835,0,0,NULL,'','MADVICE','ZZZ','Remark','PROTEIN/ OIL RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-02 12:05:08','','0000-00-00 00:00:00'),(7834,0,0,3457,3360,4887,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head+\\</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 12:05:15','','0000-00-00 00:00:00'),(7835,0,0,3457,3360,4887,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>stabilometry--reduced vestibualr score</p>\n\n<p>vng--right bppv with vm</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 12:05:17','darshan','2025-12-02 13:33:12'),(7837,0,0,3457,3360,4887,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE WITH BURNING FEELING IN HEAD||','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 12:05:28','','0000-00-00 00:00:00'),(7839,0,0,3465,3368,4896,0,0,NULL,'','MADVICE','ZZZ','Remark','LULICONAZOLE CREAM','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-02 12:07:16','','0000-00-00 00:00:00'),(7840,0,0,3462,3365,4893,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 12:09:21','','0000-00-00 00:00:00'),(7841,0,0,2914,2842,4865,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 12:12:02','','0000-00-00 00:00:00'),(7842,0,0,193,180,4616,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-02 12:13:04','','0000-00-00 00:00:00'),(7843,0,0,193,180,4616,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-02 12:13:23','','0000-00-00 00:00:00'),(7844,0,0,3446,3371,4899,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT WRIST PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-02 12:14:49','','0000-00-00 00:00:00'),(7845,0,0,3458,3361,4888,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----FEW WEEKS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 12:21:09','','0000-00-00 00:00:00'),(7846,0,0,3458,3361,4888,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cnd symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 12:21:42','','0000-00-00 00:00:00'),(7847,0,0,3458,3361,4888,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>stabilometry---reduced vestibualr score</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 12:21:55','darshan','2025-12-02 13:48:59'),(7849,0,0,3468,3373,4901,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 12:24:53','','0000-00-00 00:00:00'),(7850,0,0,1386,1346,4874,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----2-3 short episodes of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 12:29:44','','0000-00-00 00:00:00'),(7851,0,0,3436,3343,4853,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 12:36:47','','0000-00-00 00:00:00'),(7853,0,0,3456,3359,4886,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---frequent sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 12:39:55','','0000-00-00 00:00:00'),(7854,0,0,3461,3364,4892,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 12:44:38','','0000-00-00 00:00:00'),(7856,0,0,3446,3350,4867,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 12:50:20','','0000-00-00 00:00:00'),(7857,0,0,3463,3366,4894,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 12:57:47','','0000-00-00 00:00:00'),(7858,0,0,3463,3366,4894,0,0,NULL,'','CC','ZZZ','Remark','FB SENSATION IN NECK AND THROAT----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 12:58:06','','0000-00-00 00:00:00'),(7859,0,0,3463,3366,4894,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---clear</p>\n\n<p>neck--nad</p>\n\n<p>CT neck--no FB</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 12:58:16','darshan','2025-12-02 14:15:31'),(7862,0,0,3436,3343,4853,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:00:25','','0000-00-00 00:00:00'),(7863,0,0,3455,3358,4884,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:05:56','','0000-00-00 00:00:00'),(7865,0,0,3353,3265,4908,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT TIBIA FIBULA SHAFT FRACTURE','','',0,'0000-00-00 00:00:00','drsagar','2025-12-02 13:06:09','','0000-00-00 00:00:00'),(7866,0,0,2920,2848,4909,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:08:45','','0000-00-00 00:00:00'),(7867,0,0,3476,3381,4911,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:17:30','darshan','2025-12-02 13:20:33'),(7868,0,0,3476,3381,4911,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO------4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:17:41','','0000-00-00 00:00:00'),(7869,0,0,3476,3381,4911,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:20:46','darshan','2025-12-02 14:10:50'),(7870,0,0,3476,3381,4911,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:20:49','','0000-00-00 00:00:00'),(7872,0,0,3446,3350,4867,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:21:59','','0000-00-00 00:00:00'),(7873,0,0,3470,3375,4903,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR HEAVINESS---FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:27:07','','0000-00-00 00:00:00'),(7874,0,0,3470,3375,4903,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---i/cull</p>\n\n<p>phx--cleawr&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:27:24','','0000-00-00 00:00:00'),(7876,0,0,3470,3375,4903,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS TINNITUS WORK UP','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:29:06','','0000-00-00 00:00:00'),(7877,0,0,3457,3360,4887,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:33:51','','0000-00-00 00:00:00'),(7880,0,0,3472,3377,4905,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:42:22','','0000-00-00 00:00:00'),(7881,0,0,3472,3377,4905,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:42:32','darshan','2025-12-02 13:43:17'),(7882,0,0,3472,3377,4905,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---abent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>vng--rigth psot canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:43:33','darshan','2025-12-02 13:59:24'),(7884,0,0,3472,3377,4905,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:43:44','','0000-00-00 00:00:00'),(7885,0,0,1542,1501,4811,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>pta---wnl</p>\n\n<p>OAE---poor corelation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:44:47','','0000-00-00 00:00:00'),(7886,0,0,3458,3361,4888,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:49:27','','0000-00-00 00:00:00'),(7889,0,0,3455,3358,4884,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:51:08','','0000-00-00 00:00:00'),(7890,0,0,3403,227,4780,0,0,NULL,'','TREATDISC_TI','','','<P>TAB. ZIFI 200&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; .........FOR 4 DAYS</P>\r\n\r\n<P>TAB. METROGYL 600&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........FOR 4 DAYS&nbsp;</P>\r\n\r\n<P>TAB. DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp; ........ FOR 5&nbsp;DAYS&nbsp;</P>\r\n\r\n<P>CAP. ENUFF 100&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........FOR&nbsp; 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB. ZOFER MD (4MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;S.O.S&nbsp; &nbsp; &nbsp;IF VOMITING&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ......(5)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 13:53:01','mo','2025-12-02 14:19:42'),(7891,0,0,3472,3377,4905,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 13:59:49','','0000-00-00 00:00:00'),(7894,0,0,3457,3360,4887,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-02 14:04:28','','0000-00-00 00:00:00'),(7896,0,0,3458,3361,4888,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-02 14:04:46','','0000-00-00 00:00:00'),(7897,0,0,3476,3381,4911,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 14:11:29','','0000-00-00 00:00:00'),(7900,0,0,3472,3377,4905,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-02 14:12:42','','0000-00-00 00:00:00'),(7901,0,0,1087,1054,4919,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up CASE---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 14:14:11','','0000-00-00 00:00:00'),(7902,0,0,3403,227,4780,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 14:19:38','mo','2025-12-02 14:19:42'),(7904,0,0,3476,3381,4911,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGTH SM  MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-02 14:20:00','','0000-00-00 00:00:00'),(7905,0,0,3336,215,4674,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESHCOMPLAIN&nbsp;</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 14:51:14','mo','2025-12-02 14:52:28'),(7906,0,0,3336,215,4674,0,0,NULL,'','TREATDISC_TI','','','<P>TAB&nbsp; XOXE(250MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB&nbsp; &nbsp;METROGYL ER(600MG)&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB NEXPROFAST (40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:</P>\r\n\r\n<P>TAB SPORLAC DS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp;</P>\r\n\r\n<P>TAB ARKAMINN(0.1MG)&nbsp; &nbsp; &nbsp; &nbsp; 1--1--1</P>\r\n\r\n<P>TAB AZTOR (40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>CAP PREGASON M&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>CAP ECOSPRIN (75MG)&nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 14:51:14','mo','2025-12-02 14:52:28'),(7907,0,0,2685,171,3611,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>U/O 20-25ML/HR&nbsp;</P>\r\n\r\n<P>SILICON CATHETER IN SITU (DAY-1,NO-14)&nbsp;</P>\r\n\r\n<P>RIGHT IJV IN SITU(DAY- 9)</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 15:24:28','mo','2025-12-02 16:46:24'),(7908,0,0,2685,171,3611,0,0,NULL,'','TREATDISC_TI','','','<P>TAB FARONEM-CV(200)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; ........FOR 7 DAYS</P>\r\n\r\n<P>TAB LIZOFORCE(600MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;........FOR 7 DAYS&nbsp;</P>\r\n\r\n<P>TAB FOLE(200MG0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; ........FOR 4 DAYS&nbsp;</P>\r\n\r\n<P>TAB PANTODAC(40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;.......FOR 7 DAYS&nbsp;</P>\r\n\r\n<P>TAB DYTOR (100MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;.......FOR 7 DAYS&nbsp;</P>\r\n\r\n<P>TAB FDSON MP (5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;.......FOR 7 DAYS&nbsp;</P>\r\n\r\n<P>TAB ZYTANIX(5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;......FOR 7 DAYS</P>\r\n\r\n<P>TAB UDILIV(300MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;......FOR 7 DAYS</P>\r\n\r\n<P>TAB ISOLAZINE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1/2--0--1/2&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;.....FOR 7 DAYS</P>\r\n\r\n<P>TAB ECOSPRIN-AV(75/20)&nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;......FOR 7 DAYS&nbsp;</P>\r\n\r\n<P>TAB ALDECTONE(50MG0&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; .......FOR 7 DAYS</P>\r\n\r\n<P>TAB CARDIVAS-CR (20MG)&nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;......FOR 7 DAYS&nbsp;</P>\r\n\r\n<P>TAB QUTAN(25MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; .........FOR 7 DAYS</P>\r\n\r\n<P>SYP CREMAFIN PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 30ML&nbsp; &nbsp;HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ......(1)</P>\r\n\r\n<P>LAMINO HP PROTEIN POWDER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1TSF/WITH MILK&nbsp; &nbsp; &nbsp;IN MORNING&nbsp; &nbsp; &nbsp; &nbsp; .....(7)</P>\r\n\r\n<P>RASH FREE OINT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; L/A&nbsp; &nbsp; &nbsp; FOR BED SORE CARE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(1)</P>\r\n\r\n<P>FOLE OINT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(1)</P>\r\n\r\n<P>BETADIN SOLUTION&nbsp; 500ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(1)</P>\r\n\r\n<P>GAUSE PIECE&nbsp; &nbsp; &nbsp;1 PACKET&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......(1)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 15:57:59','mo','2025-12-02 16:46:24'),(7909,0,0,3345,218,4688,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-APLASTIC ANAEMIA</STRONG></P>\r\n\r\n<P><STRONG>-VIRAL FEVER</STRONG></P>\r\n\r\n<P><STRONG>-K/C/O:- DM-2 SINCE 12 YEARS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; DYSLIPIDEAMIA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 16:26:54','mo','2025-12-11 14:45:28'),(7910,0,0,3345,218,4688,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-02 16:26:54','mo','2025-12-11 14:45:28'),(7911,0,0,3345,218,4688,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 43 YEARS OLD MALE PATIENT P/W K/C/O DM, DYSLIPIDEMIA</P>\r\n\r\n<P>WITH C/O DOE;SEVERE WEAKNESS;INTERMITTENT FEVER;ANOREXIA;NOSE BLEED SINCE 4 DAYS.</P>\r\n\r\n<P>SO,PARIMARY PATIENT ADMITTED AT NEPAL.AT THER 1 UNIT PCV GIVEN.</P>\r\n\r\n<P>NO ANY NSAIDS HISTORY</P>\r\n\r\n<P>NOW PATIENT CAME HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-101.2 F</P>\r\n\r\n<P>PR-128/MIN</P>\r\n\r\n<P>BP-130/80MMHG</P>\r\n\r\n<P>SPO2-98% ON RA</P>\r\n\r\n<P>RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-539 MG/DL</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>30/11/25,</P>\r\n\r\n<P>ALL REQUIRED BLOOD INVESTIGATION SENT.TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF LOW HB WITH LOW PLATELET(HB-4.2 GM/DL,PLT-4000 CELLS/MICROLITRE) SO,1 UNIT SDP AND 3 UNITS LR-RCC GIVEN.</P>\r\n\r\n<P>IN VIEW OF UNCONTROLLED BLOOD SUGAR MANAGED BY IV INSULIN DRIP.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>01/12/25,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE.HB-9.1 GM/DL,PLT-16,000CELLS/MICROLITRE</P>\r\n\r\n<P>USG ABDOMEN DONE.REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>ORALLY SOFT DIET GIVEN.TAKEN WELL.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>02/12/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE.HB-8.8 GM/DLPLT-9000 CELLS/MICROLITRE</P>\r\n\r\n<P>DENGUE CARD AND MP CARD DONE.S/O NEGATIVE.</P>\r\n\r\n<P>URINE R/M DONE WHICH S/O NAD</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>03/12/2025</P>\r\n\r\n<P>IN VIEW OF SEVERE BICYTOPENIA REFERENCE OF DR SARANG(HEMATO ONCO) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>BONEMARROW ASPIRATION + BIOPSY DONE BY DR SARANG AT SHASHVAT HOSPITAL WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>BONEMARROW ASPIRATION &AMP; BIPOSY REPORT SENT</P>\r\n\r\n<P>IMMUNOPHEOTYPING SENT&nbsp;&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04/12/2025</P>\r\n\r\n<P>DAILY CBC DONE</P>\r\n\r\n<P>REVIEW OF&nbsp;DR SARANG WAGHMARE (HEMATO ONCO) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>INJ ROMIPLASTIM GIVEN</P>\r\n\r\n<P>INJ FILGRASTIM GIVEN</P>\r\n\r\n<P>IN VIEW OF UNCONROLLED DM INJ H.ACTRAPID DRIP STARTED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05/12/2025</P>\r\n\r\n<P>DAILY CBC DONE</P>\r\n\r\n<P>RBS MONITORING @2 HRLY</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>06/12/2025</P>\r\n\r\n<P>DAILY CBC DONE</P>\r\n\r\n<P>RBS MONITORING @2 HRLY</P>\r\n\r\n<P>URINE KETONE DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>07/12/2025</P>\r\n\r\n<P>DAILY CBC DONE</P>\r\n\r\n<P>RBS MONITORING @2 HRLY</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>08/12/2025</P>\r\n\r\n<P>DAILY CBC DONE</P>\r\n\r\n<P>RBS MONITORING @2 HRLY</P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:11PT\">REVIEW OF&nbsp;DR SARANG WAGHMARE (HEMATO ONCO) DONE AND FOLLOW HIS ALL ADVICE</SPAN></P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:11PT\">09/12/2025</SPAN></P>\r\n\r\n<P>DAILY CBC DONE</P>\r\n\r\n<P>RBS MONITORING @2 HRLY</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10/12/2025</P>\r\n\r\n<P>DAILY CBC DONE</P>\r\n\r\n<P>ANTIBIOTIC TAPPER OFF</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11/12/2025</P>\r\n\r\n<P>DAILY CBC DONE</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 16:26:54','mo','2025-12-11 14:45:28'),(7912,0,0,3345,218,4688,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ ECOTAZ</P>\r\n\r\n<P>CAP DOXY</P>\r\n\r\n<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>INJ VOSIMOL</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ VITNEURIN</P>\r\n\r\n<P>BOTROCLOT NASAL DROPS</P>\r\n\r\n<P>3UNIT&nbsp;LR RCC</P>\r\n\r\n<P>1 UNIT SDP</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>IN NOVOMIX 30</P>\r\n\r\n<P>INJ TRENEXA</P>\r\n\r\n<P>INJ H ACTRAPID&nbsp;</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>TAB CALPOL</P>\r\n\r\n<P>INJ FILGRASTIM</P>\r\n\r\n<P>INJ ROMIPLASTIN</P>\r\n\r\n<P>TAB THROMBOPAG</P>\r\n\r\n<P>TAB SITAGLIPTIN, METFORMIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 16:39:03','mo','2025-12-11 14:45:28'),(7913,0,0,3085,203,4266,0,0,NULL,'','DISCDIAG','','','<P>TYPE 2 RESPIRATORY FAILUR</P>\r\n\r\n<P>BILATERAL PNEUMONITIS</P>\r\n\r\n<P>DM WITH HT WITH OLD CVA</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 16:46:16','mo','2025-12-03 19:25:05'),(7914,0,0,3447,234,4868,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PHIMOSIS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O; DM II&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 17:05:01','mo','2025-12-02 17:09:10'),(7915,0,0,3447,234,4868,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 47&nbsp;YEARS OLD&nbsp; MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II SINCE 2-3 YEAR<BR />\r\nC/O:INABILITY TO RETRACT PREPENILE SKIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;PAINFUL INTERCOURSE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;THICKENED PREPENILE SKIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GLANS PENIS ,MEATUS- NORMAL</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; RECURRENT BALENOPOSHTHITIS&nbsp;</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-90/MIN, BP-130/90MMHG, SPO2-99% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ECG DONE&nbsp;<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nCIRCUMSCISION WITH STAPPER (ZSR) DONE BY DR PRATAPSINH DODIYA ON 2/12/2025 UNDER REGIONAL&nbsp; ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 17:05:01','mo','2025-12-02 17:09:10'),(7916,0,0,3447,234,4868,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>CIRCUMSCISION WITH STAPPER (ZSR) DONE BY DR PRATAPSINH DODIYA ON 2/12/2025 UNDER REGIONAL&nbsp; ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 17:05:01','mo','2025-12-02 17:09:10'),(7917,0,0,3447,234,4868,0,0,NULL,'','OTNOTE','','','<p>- thickened prepenile skin</p>\r\n\r\n<p>- multiple warts in prepenile skin</p>\r\n\r\n<p>- circum-no-28 used for circumscision&nbsp;</p>\r\n\r\n<p>- meatus normal</p>\r\n\r\n<p>- short franulum released&nbsp;</p>\r\n\r\n<p>- hemostasis checked</p>\r\n\r\n<p>- dressing kept&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 17:05:01','mo','2025-12-02 17:09:10'),(7918,0,0,3447,234,4868,0,0,NULL,'','DISCCOND','','','<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 17:05:01','mo','2025-12-02 17:09:10'),(7919,0,0,3447,234,4868,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS (&nbsp;EVENING OPD )</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 17:05:01','mo','2025-12-02 17:09:10'),(7920,0,0,3447,234,4868,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN&nbsp;</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 17:05:01','mo','2025-12-02 17:09:10'),(7921,0,0,3447,234,4868,0,0,NULL,'','TREATDISC_TI','','','<P>CAP AUGMENTIN (625MG )&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB DALACIN-C(300MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB ZERODOL-SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>NEOSPORIN OINT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......(1)&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE ON MEDICINE :&nbsp;</P>\r\n\r\n<P>TAB TENGLIPTIN M 500&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 17:05:01','mo','2025-12-02 17:09:10'),(7922,0,0,3447,234,4868,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 17:06:28','mo','2025-12-02 17:09:10'),(7923,0,0,1544,1503,4923,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 17:16:19','','0000-00-00 00:00:00'),(7924,0,0,3437,3344,4854,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN---2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 17:24:06','','0000-00-00 00:00:00'),(7925,0,0,3437,3344,4854,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left ear fungus with otitis externa</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 17:24:18','','0000-00-00 00:00:00'),(7926,0,0,2479,2423,4928,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 17:42:02','','0000-00-00 00:00:00'),(7927,0,0,1012,979,4929,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 17:49:19','','0000-00-00 00:00:00'),(7928,0,0,3484,3388,4930,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--medicine skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 17:56:03','','0000-00-00 00:00:00'),(7929,0,0,1938,1891,4934,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---5 episodes of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 18:04:54','','0000-00-00 00:00:00'),(7930,0,0,3009,2932,4938,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for pain</p>\n\n<p>left ear blockage feeling&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 18:11:12','','0000-00-00 00:00:00'),(7931,0,0,3009,2932,4938,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left ear SOM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 18:11:20','','0000-00-00 00:00:00'),(7932,0,0,3009,2932,4938,0,0,NULL,'','PLAN','ZZZ','Remark','14','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 18:12:15','','0000-00-00 00:00:00'),(7933,0,0,3492,3397,4945,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-02 18:20:18','','0000-00-00 00:00:00'),(7934,0,0,3492,3397,4945,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-02 18:20:19','drjayant','2025-12-02 18:34:16'),(7935,0,0,3488,3393,4937,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 18:22:01','','0000-00-00 00:00:00'),(7936,0,0,2314,2257,4941,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---mild positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 18:25:34','','0000-00-00 00:00:00'),(7937,0,0,3494,3399,4947,0,0,NULL,'','CC','ZZZ','Remark','DYSURIA | 30 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-02 18:25:46','','0000-00-00 00:00:00'),(7938,0,0,3494,3399,4947,0,0,NULL,'','HIST','ZZZ','Remark','<p>ON APIXABAN</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-02 18:26:02','drjayant','2025-12-02 18:26:25'),(7939,0,0,2314,2257,4941,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 18:26:03','','0000-00-00 00:00:00'),(7941,0,0,3494,3399,4947,0,0,NULL,'','CC','ZZZ','Remark','CLEAR URINE ||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-02 18:26:17','','0000-00-00 00:00:00'),(7943,0,0,2314,2257,4941,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-02 18:27:18','','0000-00-00 00:00:00'),(7945,0,0,3492,3397,4945,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-02 18:33:01','','0000-00-00 00:00:00'),(7946,0,0,3487,3391,4935,0,0,NULL,'','CC','ZZZ','Remark','URTI | 4 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-02 18:36:27','','0000-00-00 00:00:00'),(7947,0,0,3487,3391,4935,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-02 18:36:39','','0000-00-00 00:00:00'),(7948,0,0,3347,220,4691,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 18:37:03','mo','2025-12-02 20:20:50'),(7949,0,0,3483,3387,4924,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE GASTRITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-02 18:39:25','','0000-00-00 00:00:00'),(7950,0,0,3493,3398,4946,0,0,NULL,'','CC','ZZZ','Remark','C/O ABDOMINAL PAIN | 1 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-02 18:44:58','','0000-00-00 00:00:00'),(7951,0,0,3493,3398,4946,0,0,NULL,'','CC','ZZZ','Remark','C/O VOMITTING 3-4 EPISODES | 1 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-02 18:44:58','','0000-00-00 00:00:00'),(7952,0,0,3493,3398,4946,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>clinicaly nad</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-02 18:45:10','','0000-00-00 00:00:00'),(7953,0,0,3490,3395,4942,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW MNTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 18:47:45','','0000-00-00 00:00:00'),(7954,0,0,3490,3395,4942,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotyr feeling for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 18:48:17','','0000-00-00 00:00:00'),(7955,0,0,3490,3395,4942,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilateral high freq moderate sn deafness</p>\n\n<p>vng--Bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 18:48:35','darshan','2025-12-02 19:46:10'),(7957,0,0,3361,223,4711,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>PARTIAL FISTULECTOMY + LIGATION OF INTERNAL OPENING DONE BY DR PRATAPSINH DODIYA ON 1/12/2025&nbsp;UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 18:52:01','mo','2025-12-03 11:43:34'),(7958,0,0,3361,223,4711,0,0,NULL,'','OTNOTE','','','<p>- external opening at 7 o&#39;clock in right gluteal region</p>\r\n\r\n<p>- internal opening near anal verge at 6 o&#39;clock position</p>\r\n\r\n<p>- internal opening with anal gland excision done</p>\r\n\r\n<p>- remaining opening closed with pds no-1&nbsp;</p>\r\n\r\n<p>- curratage of distal tract done</p>\r\n\r\n<p>-risk of recurrance of fistula explained</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 18:52:01','mo','2025-12-03 11:43:34'),(7959,0,0,3361,223,4711,0,0,NULL,'','DISCCOND','','','<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 18:52:01','mo','2025-12-03 11:43:34'),(7960,0,0,3361,223,4711,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 18:52:01','mo','2025-12-03 11:43:34'),(7961,0,0,3361,223,4711,0,0,NULL,'','TREATDISC_TI','','','<P>TAB METRO-ER(600MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;.........FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL-SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........FOR 5 DAYS</P>\r\n\r\n<P>TAB RIFAGUT(200MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........FOR 5 DAYS</P>\r\n\r\n<P>SYP LECTIHEP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;10ML&nbsp; &nbsp; &nbsp; &nbsp; HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(1)</P>\r\n\r\n<P>METROGYL P OINT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp; LOCAL APPLICATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(1)</P>\r\n\r\n<P>SAVLON SOLUTION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR HOT SITZ BATH</P>\r\n\r\n<P>BETADINE SOLUTION(100 ML)&nbsp; &nbsp; &nbsp;FOR DRESSING&nbsp; &nbsp; &nbsp; &nbsp; ..................(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE :</P>\r\n\r\n<P>CAP ATOSKY A (20/150)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0</P>\r\n\r\n<P>TAB TELESKY H (80)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 18:52:01','mo','2025-12-03 11:43:34'),(7962,0,0,3473,3378,4906,0,0,NULL,'','DIAG','ZZZ','Remark','PILONIDAL SINUS WITH ABSCESS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-02 18:52:04','','0000-00-00 00:00:00'),(7963,0,0,3445,3349,4864,0,0,NULL,'','DIAG','ZZZ','Remark','INTERNAL HEMORRHOIDS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-02 18:54:10','','0000-00-00 00:00:00'),(7964,0,0,3445,3349,4864,0,0,NULL,'','MADVICE','ZZZ','Remark','SURGERY ','','9999.9',0,'0000-00-00 00:00:00','drpratapsi','2025-12-02 18:55:19','','0000-00-00 00:00:00'),(7965,0,0,2645,2584,4944,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 18:55:32','','0000-00-00 00:00:00'),(7968,0,0,2645,2584,4944,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER 10- DAYS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-02 18:57:24','','0000-00-00 00:00:00'),(7969,0,0,888,856,4949,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case --- sense of imbalance</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 19:00:46','','0000-00-00 00:00:00'),(7970,0,0,2784,2713,4956,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-02 19:08:32','','0000-00-00 00:00:00'),(7972,0,0,2784,2713,4956,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-02 19:10:09','','0000-00-00 00:00:00'),(7973,0,0,3499,3404,4957,0,0,NULL,'','CC','ZZZ','Remark','NO FRESH COMPLAINT||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-02 19:15:59','','0000-00-00 00:00:00'),(7974,0,0,3499,3404,4957,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALLY NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-02 19:17:57','','0000-00-00 00:00:00'),(7976,0,0,3499,3404,4957,0,0,NULL,'','MADVICE','ZZZ','Remark','SRD ','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-02 19:20:57','','0000-00-00 00:00:00'),(7977,0,0,3451,3354,4876,0,0,NULL,'','DIAG','ZZZ','Remark','RT WRIST GANGLION','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-02 19:24:34','','0000-00-00 00:00:00'),(7978,0,0,3482,3386,4922,0,0,NULL,'','DIAG','ZZZ','Remark','CLW ON FACE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-02 19:25:06','','0000-00-00 00:00:00'),(7980,0,0,3498,3403,4954,0,0,NULL,'','MADVICE','ZZZ','Remark','USF KUB WITH PVRU','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-02 19:28:04','','0000-00-00 00:00:00'),(7981,0,0,3502,3407,4962,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-02 19:29:42','','0000-00-00 00:00:00'),(7983,0,0,3502,3407,4962,0,0,NULL,'','MADVICE','ZZZ','Remark','SUGAR RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-02 19:31:44','','0000-00-00 00:00:00'),(7984,0,0,3459,3362,4890,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HIP PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-02 19:49:54','','0000-00-00 00:00:00'),(7985,0,0,3347,220,4691,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>OPEN HEMORRHOIDECTOMY DONE BY DR PRATAPSINH DODIYA ON 1/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 19:50:53','mo','2025-12-02 20:20:50'),(7986,0,0,3347,220,4691,0,0,NULL,'','OTNOTE','','','<p>- 3&#39;,7&#39;,11&#39;o&#39;clock 2nd degree internal hemorrhoids&nbsp;</p>\r\n\r\n<p>- multiple secondary internal hemorrhoids(+)</p>\r\n\r\n<p>- multiple external hemorrhoids&nbsp;</p>\r\n\r\n<p>- 3&#39;,7&#39; o&#39;clock externo-internal hemorrhoidectomy done</p>\r\n\r\n<p>- piles mass pedicle ligated with vicryl 3-0&nbsp;</p>\r\n\r\n<p>- hemostasis checked</p>\r\n\r\n<p>- multi cutaneous - bridge presented internal between hemorrhoidectomy area</p>\r\n\r\n<p>- dressing kept&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 19:50:53','mo','2025-12-02 20:20:50'),(7987,0,0,3438,231,4855,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LEFT BREAST ABSCESS (POST PARTUM)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 20:00:02','mo','2025-12-03 10:29:04'),(7988,0,0,3438,231,4855,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-02 20:00:02','mo','2025-12-03 10:29:04'),(7989,0,0,3438,231,4855,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 29 YEARS OLD&nbsp; FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O: LSCS(2 MONTH AGO)<BR />\r\nC/O: PAIN IN LEFT BREAST</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SWELLING IN LEFT BREAST</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER SINCE 2-3 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BODYACHE</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 1 WEEK FOR THAT PT PRIMARY CONSULTED OPD BASED AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG OF LEFT BREAST (01/12/2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-90/MIN, BP-110/80MMHG, SPO2-98% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nINCISION &AMP; DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 02/12/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 20:00:02','mo','2025-12-03 10:29:04'),(7990,0,0,3440,232,4857,0,0,NULL,'','DISCDIAG','','','<P><STRONG>SEVERE IRO DEFFICIENCY ANAEMIA</STRONG></P>\r\n\r\n<P><STRONG>IN CASE OF CAD, HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 23:54:39','mo','2025-12-04 12:12:22'),(7991,0,0,3440,232,4857,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-02 23:54:39','mo','2025-12-04 12:12:22'),(7992,0,0,3440,232,4857,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 64 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN SINCE 5-6 YEAR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IHD (JANUARY 2025)<BR />\r\nH/O: ANGIOPLASTY, HYSTERECTOMY<BR />\r\nC/O: GABHARAMAN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DIZZINESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SEVERE GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 3-4 DAYS FOR THAT&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>S.FERRITIN: 8.9 (01/12/2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-80/MIN, BP-120/60MMHG, SPO2-97% ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>2/12/2025</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF LOW HB (5.1) 2&nbsp;UNIT RCC GIVEN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>3/12/2025</P>\r\n\r\n<P>1 UNIT RCC GIVEN&nbsp;</P>\r\n\r\n<P>IN VIEW OF LOW S.FERRITIN INJ NECFCM IRON GIVEN IN ICU UNDER OBSERVATION AFTER NORMAL SKIN TEST&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>4/12/2025</P>\r\n\r\n<P>REPEAT CBC DONE; HB:13.0 GM/DL</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 23:54:39','mo','2025-12-04 12:12:22'),(7993,0,0,3440,232,4857,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>TAKE HEALTHY DIET</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 23:54:39','mo','2025-12-04 12:12:22'),(7994,0,0,3440,232,4857,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ NEXPROFAST</P>\r\n\r\n<P>TAB BENDY</P>\r\n\r\n<P>INJ RCC 3 UNIT</P>\r\n\r\n<P>INJ NEC FCM</P>\r\n\r\n<P>TAB CREMALAX</P>\r\n\r\n<P>TAB AMLODAC AT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-02 23:54:39','mo','2025-12-04 12:12:22'),(7995,0,0,3394,229,4802,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>INCISION &AMP; DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 02/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 01:02:32','mo','2025-12-03 21:05:55'),(7996,0,0,3394,229,4802,0,0,NULL,'','OTNOTE','','','<p>-abscess cavity extend from 12 o&#39;clock position to 6 o&#39;clock position on left ishiorectal space</p>\r\n\r\n<p>-internal opening near anal verge in interosphecteric groove.</p>\r\n\r\n<p>-200cc pus drained</p>\r\n\r\n<p>-two incision kept in left ishiorectal space</p>\r\n\r\n<p>-whole pus &amp; slough removed</p>\r\n\r\n<p>-abscess cavity irrigated with betadine + h2o2.</p>\r\n\r\n<p>-saline wash given</p>\r\n\r\n<p>-two seton kept</p>\r\n\r\n<p>-pus cs sent</p>\r\n\r\n<p>-dressing kept</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 01:02:32','mo','2025-12-03 21:05:55'),(7997,0,0,3394,229,4802,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 01:02:32','mo','2025-12-03 21:05:55'),(7998,0,0,3394,229,4802,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 01:02:32','mo','2025-12-03 21:05:55'),(7999,0,0,3438,231,4855,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>INCISION &AMP; DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 02/12/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 01:22:02','mo','2025-12-03 10:29:04'),(8000,0,0,3438,231,4855,0,0,NULL,'','OTNOTE','','','<p>-abscess at 12 to 1 o&#39;clock position near nipple areolar complex.</p>\r\n\r\n<p>-abscess cavity extending&nbsp;deep into retro areolar region</p>\r\n\r\n<p>-pus cs sent</p>\r\n\r\n<p>-abscess cavity thoroughly clean with ns</p>\r\n\r\n<p>-dressing done</p>\r\n\r\n<p>-risk of milk fistula explained.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 01:22:02','mo','2025-12-03 10:29:04'),(8001,0,0,3438,231,4855,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 01:22:02','mo','2025-12-03 10:29:04'),(8002,0,0,3438,231,4855,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 01:22:02','mo','2025-12-03 10:29:04'),(8003,0,0,3438,231,4855,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 01:22:02','mo','2025-12-03 10:29:04'),(8004,0,0,3438,231,4855,0,0,NULL,'','TREATDISC_TI','','','<P>CAP AUGMENTIN (625 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>NIP CARE CREAM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;L/A&nbsp; &nbsp; &nbsp; &nbsp;FOR LEFT BREAST.......(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 01:23:46','mo','2025-12-03 10:29:04'),(8005,0,0,3044,2965,4971,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up csae---better for giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 10:41:49','','0000-00-00 00:00:00'),(8006,0,0,3044,2965,4971,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix halpike-nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 10:42:02','','0000-00-00 00:00:00'),(8007,0,0,3508,3412,4974,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>medicine skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 10:47:55','','0000-00-00 00:00:00'),(8008,0,0,1822,1777,4988,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 10:53:12','','0000-00-00 00:00:00'),(8009,0,0,3509,3413,4975,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR DEAFNESS---8-10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 11:01:08','','0000-00-00 00:00:00'),(8010,0,0,3509,3413,4975,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of deafness in right ear with tinnitus&thinsp;</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 11:01:40','','0000-00-00 00:00:00'),(8011,0,0,3509,3413,4975,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---right severe to very severe mixed daefness(o)</p>\n\n<p>tympanometry---normal curve(o)</p>\n\n<p>OAE--poor relation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 11:02:01','darshan','2025-12-03 12:05:30'),(8012,0,0,2475,2419,4989,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 11:06:31','','0000-00-00 00:00:00'),(8014,0,0,2475,2419,4989,0,0,NULL,'','MADVICE','ZZZ','Remark','PSYCHIATRIST OPENION SOS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-03 11:08:23','','0000-00-00 00:00:00'),(8015,0,0,3513,3416,4980,0,0,NULL,'','HIST','ZZZ','Remark','<p>ffollow up case---</p>\n\n<p>k/c/o--right endolymphatic hydrops</p>\n\n<p>medicine skipped&thinsp;</p>\n\n<p>recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 11:19:50','darshan','2025-12-03 17:07:33'),(8017,0,0,3522,3425,4997,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-03 11:21:47','','0000-00-00 00:00:00'),(8018,0,0,3522,3425,4997,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-03 11:21:50','drjayant','2025-12-03 11:24:16'),(8019,0,0,1184,1144,4981,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----single episode of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 11:23:06','','0000-00-00 00:00:00'),(8020,0,0,3524,3427,5000,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-03 11:27:44','drjayant','2025-12-03 11:27:49'),(8021,0,0,3524,3427,5000,0,0,NULL,'','CC','ZZZ','Remark','URTI | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-03 11:27:45','','0000-00-00 00:00:00'),(8022,0,0,3518,3421,4990,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 11:34:34','','0000-00-00 00:00:00'),(8023,0,0,3519,3422,4991,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---follow up missed</p>\n\n<p>recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 11:37:45','','0000-00-00 00:00:00'),(8024,0,0,36,33,5007,0,0,NULL,'','CC','ZZZ','Remark','POSTED FOR LAP GASTROJEJUNOSTOMY  , EXCISION PYORUS AND DUDENUM 1 ST PART||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-03 11:39:47','','0000-00-00 00:00:00'),(8025,0,0,36,33,5007,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO C/O DOE&thinsp;</p>\n\n<p>NO CHEST PAIN&thinsp;</p>\n\n<p>NO OTHER COMAPLAINT</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-03 11:40:08','','0000-00-00 00:00:00'),(8026,0,0,36,33,5007,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>R/S -CLEAR</p>\n\n<p>CVS- S1 , S2 NORMAL, NO MURMUR</p>\n\n<p>REST CLINICALLY NAD</p>\n\n<p>ECG- NAD</p>\n\n<p>IX NOTED</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-03 11:41:25','','0000-00-00 00:00:00'),(8028,0,0,3525,3428,5002,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 11:42:10','','0000-00-00 00:00:00'),(8029,0,0,3529,3432,5011,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-03 11:42:33','','0000-00-00 00:00:00'),(8030,0,0,3529,3432,5011,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-03 11:42:34','drjayant','2025-12-03 11:42:54'),(8031,0,0,36,33,5007,0,0,NULL,'','MADVICE','ZZZ','Remark','PATIETN CAN BE TAKEN FOR SURGERY WITH DUE ANESTHETIC DRUGS AND OPERATIVE  RISK.','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-03 11:43:35','','0000-00-00 00:00:00'),(8033,0,0,3529,3432,5011,0,0,NULL,'','MADVICE','ZZZ','Remark','SALT/ SUGAR RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-03 11:48:30','','0000-00-00 00:00:00'),(8034,0,0,3515,3418,4984,0,0,NULL,'','CC','ZZZ','Remark','SENSE OF IMBALANCE ----FEW MOTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 11:52:59','','0000-00-00 00:00:00'),(8035,0,0,3515,3418,4984,0,0,NULL,'','HIST','ZZZ','Remark','<p>when she walks she feels sense of imbalance&thinsp;</p>\n\n<p>heaviess of head +</p>\n\n<p>frequent headache +</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 11:53:39','','0000-00-00 00:00:00'),(8036,0,0,3515,3418,4984,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>CCG---ap displacement out of normal range</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 11:53:54','darshan','2025-12-03 13:09:32'),(8037,0,0,3515,3418,4984,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 11:53:57','','0000-00-00 00:00:00'),(8038,0,0,1639,1595,5005,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 11:59:27','','0000-00-00 00:00:00'),(8039,0,0,3520,3423,4992,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 12:02:31','','0000-00-00 00:00:00'),(8040,0,0,3520,3423,4992,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN----2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 12:02:40','','0000-00-00 00:00:00'),(8041,0,0,3520,3423,4992,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left dry wax&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 12:02:51','','0000-00-00 00:00:00'),(8043,0,0,3520,3423,4992,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT EAR WAX REMOVAL NEXT TIME','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-03 12:04:35','','0000-00-00 00:00:00'),(8046,0,0,3509,3413,4975,0,0,NULL,'','MADVICE','ZZZ','Remark','PTA NEXT TIME ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-03 12:08:02','','0000-00-00 00:00:00'),(8047,0,0,3535,3438,5022,0,0,NULL,'','DIAG','ZZZ','Remark','LT CHEST WALL INJURY','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-03 12:11:46','','0000-00-00 00:00:00'),(8048,0,0,3535,3438,5022,0,0,NULL,'','DIAG','ZZZ','Remark','DM','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-03 12:11:53','','0000-00-00 00:00:00'),(8049,0,0,2462,2406,5004,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---3-4 episodes of headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 12:17:02','','0000-00-00 00:00:00'),(8050,0,0,3528,3431,5010,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----recurence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 12:21:23','','0000-00-00 00:00:00'),(8051,0,0,3530,3433,5012,0,0,NULL,'','HIST','ZZZ','Remark','<p>k/co--left endolymphatic hydrops</p>\n\n<p>recurrence of giddiness and heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 12:36:26','darshan','2025-12-03 13:20:19'),(8052,0,0,3530,3433,5012,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>ht--nad</p>\n\n<p>pta--left very severe sn deafness</p>\n\n<p>vemp--reduced vestibular score</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 12:36:29','darshan','2025-12-03 13:20:59'),(8054,0,0,1498,1457,5025,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 12:39:16','','0000-00-00 00:00:00'),(8055,0,0,3531,3434,5014,0,0,NULL,'','HIST','ZZZ','Remark','<p>some where tried to removed wax</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 12:48:32','darshan','2025-12-03 12:50:14'),(8056,0,0,3531,3434,5014,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR PAIN----2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 12:48:40','','0000-00-00 00:00:00'),(8057,0,0,3531,3434,5014,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>right ear wax with mild discharge&thinsp;</p>\n\n<p>blood stain&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 12:49:19','','0000-00-00 00:00:00'),(8059,0,0,3531,3434,5014,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT EAR WAX REMOVAL NEXT TIME','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-03 12:51:09','','0000-00-00 00:00:00'),(8060,0,0,1853,1807,5016,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----occassional nasal blocakge&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 12:53:16','','0000-00-00 00:00:00'),(8061,0,0,3330,3248,5020,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 12:55:11','darshan','2025-12-03 12:55:15'),(8064,0,0,3534,3437,5018,0,0,NULL,'','CC','ZZZ','Remark','THRAOT IRRITATION---FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 13:00:43','','0000-00-00 00:00:00'),(8065,0,0,3534,3437,5018,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---mild congested&thinsp;</p>\n\n<p>IDL---mild congested supraglotis</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 13:01:15','','0000-00-00 00:00:00'),(8066,0,0,3494,3399,4947,0,0,NULL,'','MADVICE','ZZZ','Remark','ONCHO SURGEON OPINON TO STOP APIXABAN\nUROLOGIST OPINION ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-03 13:01:49','','0000-00-00 00:00:00'),(8068,0,0,3534,3437,5018,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS LARYNGOSCOPY','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-03 13:02:52','','0000-00-00 00:00:00'),(8069,0,0,3516,3419,4986,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-12-03 13:08:26','','0000-00-00 00:00:00'),(8070,0,0,3516,3419,4986,0,0,NULL,'','DIAG','ZZZ','Remark','??POLYMYALGIA RHEUMATICA','','',0,'0000-00-00 00:00:00','drarchit','2025-12-03 13:10:22','','0000-00-00 00:00:00'),(8073,0,0,3530,3433,5012,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS LEFT  ITGM\n','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-03 13:42:57','','0000-00-00 00:00:00'),(8074,0,0,1728,1683,5034,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upcase---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 13:45:16','','0000-00-00 00:00:00'),(8075,0,0,3542,3445,5033,0,0,NULL,'','HIST','ZZZ','Remark','<p>recurrence of vertigo</p>\n\n<p>medicine skipped</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 13:49:37','darshan','2025-12-03 13:50:00'),(8076,0,0,2866,181,3909,0,0,NULL,'','TREATDISC_TI','','','<P>TAB NEXPROFAST&nbsp; 40MG&nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; ...........FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB ZOFFER MD(4)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; ...........FOR 5 DAYS</P>\r\n\r\n<P>TAB DERIPHYLLIN - R 300&nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER&nbsp;FOOD&nbsp; &nbsp; ...........FOR 5 DAYS</P>\r\n\r\n<P>TAB BACTRIM DS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;AFTER&nbsp;FOOD&nbsp; &nbsp; ...........FOR 5 DAYS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>INJ ROMIPLASTIN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ONCE WEEK&nbsp; &nbsp;&nbsp;AFTER&nbsp;FOOD&nbsp; &nbsp; ...........FOR 5 DAYS</P>\r\n\r\n<P>TAB LEVERA&nbsp; &nbsp; 500MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;AFTER&nbsp;FOOD&nbsp; &nbsp; ...........FOR 5 DAYS</P>\r\n\r\n<P>TAB MEDROL&nbsp; 16MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER&nbsp;FOOD&nbsp; &nbsp; ...........FOR 5 DAYS</P>\r\n\r\n<P>TAB QUTAN&nbsp; &nbsp; &nbsp; 25MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1/2&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER&nbsp;FOOD&nbsp; &nbsp; ...........FOR 5 DAYS</P>\r\n\r\n<P>SYP BAYER&#39;S TONIC&nbsp; 5ML&nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER&nbsp;FOOD&nbsp; &nbsp; ...........FOR 5 DAYS</P>\r\n\r\n<P>SPOROLAC SACHET&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;AFTER&nbsp;FOOD&nbsp; &nbsp; ...........FOR 5 DAYS</P>\r\n\r\n<P>XYLOCAINE VISCUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;AFTER&nbsp;FOOD&nbsp; &nbsp; ...........FOR 5 DAYS</P>\r\n\r\n<P>BETADINE GURGLES&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;AFTER&nbsp;FOOD&nbsp; &nbsp; ...........FOR 5 DAYS</P>\r\n\r\n<P>SOL. WET MOUTH&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;AFTER&nbsp;FOOD&nbsp; &nbsp; ...........FOR 5 DAYS</P>\r\n\r\n<P>SOL MUCOSON OIN.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;AFTER&nbsp;FOOD&nbsp; &nbsp; ...........FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 15:52:49','mo','2025-12-03 17:51:12'),(8077,0,0,2480,2424,5042,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---sense of imbalance +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 17:00:42','','0000-00-00 00:00:00'),(8078,0,0,3547,3448,5044,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----sense of imbalance with giddiness&thinsp;</p>\n\n<p>k/c/o--multi system atrophy--on treatment with neurologist</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 17:06:25','darshan','2025-12-03 17:32:07'),(8079,0,0,3547,3448,5044,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---rigth beat nystmgus</p>\n\n<p>HIt---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 17:06:30','darshan','2025-12-03 17:32:12'),(8080,0,0,3513,3416,4980,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absnt</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain ---tiny olf infarct in basal gangila</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 17:07:39','darshan','2025-12-03 17:09:05'),(8081,0,0,83,72,5037,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 17:11:23','','0000-00-00 00:00:00'),(8082,0,0,3545,3446,5039,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 17:20:22','','0000-00-00 00:00:00'),(8083,0,0,996,963,5040,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 17:22:47','','0000-00-00 00:00:00'),(8084,0,0,1999,1951,5043,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 17:26:48','','0000-00-00 00:00:00'),(8086,0,0,3480,235,4920,0,0,NULL,'','DISCDIAG','','','<P><STRONG>- DECOMPENSEATED CIRROSIS OF LIVER.</STRONG></P>\r\n\r\n<P><STRONG>- AKI - HRS (HEPATO RENAL SYNDROME )</STRONG></P>\r\n\r\n<P><STRONG>- SEPSIS</STRONG></P>\r\n\r\n<P><STRONG>- GRADE II-III HE (HEATIC ENCEPHALOPATHY)</STRONG></P>\r\n\r\n<P><STRONG>- HYPERKALAMIA.</STRONG></P>\r\n\r\n<P><STRONG>IN CASE OF CA LUNG WITH LIVER METASTASIS.</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 17:34:24','mo','2025-12-04 16:34:20'),(8087,0,0,3480,235,4920,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n<BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 17:34:24','mo','2025-12-04 16:34:20'),(8088,0,0,3480,235,4920,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 54 YEARS MALE OLD &nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: CA OF LIVER WITH LONG METASTASIS<BR />\r\nH/O: OPERATED C/O LAP CHOLEY + LEFT HEPATECTOMY + RESECTION OF EHBR + ROUX-Y HJ<BR />\r\nC/O: WIGHT LOSS 2 MONTH , INTERMITTENT FEVER&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DOE, ABDOMINAL PAIN , DISTENSION, TENDERNESS (+)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SEVERE GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DECRES APPETITE, CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;PITTING EDEMA , POST MEAL FULLNESS, BLOTING OF ABD.</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NAUSEA, NO VOMITING&nbsp;</P>\r\n\r\n<P>WITH ALL ABOVE MENTION WITH CT ABD., CHEST X-RAY, CT ABD. SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE,</P>\r\n\r\n<P>PR-85/MIN,</P>\r\n\r\n<P>P-130/80MMHG,</P>\r\n\r\n<P>SPO2-99% ON RA,</P>\r\n\r\n<P>RR-22/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,</P>\r\n\r\n<P>CVS-S1S2+,</P>\r\n\r\n<P>CNS-CONSCIOUS AND ORIENTED F/V/C,</P>\r\n\r\n<P>P/A-&nbsp; DISTENSISON, TENDERNESS +NT.</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>02-12-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>THERAPUTIC ASCITIC TEPING DONE WITH USG GUIDED TAPPING DONE 4700ML</P>\r\n\r\n<P>SEEN BY DR.KRUTARTH KANJIYA (ID) ADVICE FOLLOWED.</P>\r\n\r\n<P>IN VIEW OF HYPERKALAMIA INJ. D25%100ML + INJ. H.ACTRAPID 10UNIT .. GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>03-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED, FOLLOW VERBAL COMAND.</P>\r\n\r\n<P>ONE UNIT RCC GIVEN.</P>\r\n\r\n<P>FOLY`S CATH DONE.</P>\r\n\r\n<P>RT DONE.</P>\r\n\r\n<P>ABG DONE.</P>\r\n\r\n<P>A. AMONIA - 139.23.</P>\r\n\r\n<P>PT INR - 1.64.</P>\r\n\r\n<P>HB- 7.0, WBC - 4570, PLATELETS - 24000.</P>\r\n\r\n<P>S. SODIUM - 127.8, S. POTASSIUM - 5.78.</P>\r\n\r\n<P>ASCITIC FLUID EXAMINATION DONE, FLUID CYTOLOGY DONE.</P>\r\n\r\n<P>SEEN BY DR.KRUTARTH KANJIYA (ID) ADVICE FOLLOWED. POOR PROGNOSIS EXPLAIN TO PATIENT RELETEIVE.</P>\r\n\r\n<P>SEEN BY DR. RONAK BHALODIYA&nbsp; (NEPHROLOGIST),&nbsp;ADVICE FOLLOWED.&nbsp;GC POOR AND POGNOSIS EXPLIANT TO RELETIVE. SOS SLED.</P>\r\n\r\n<P>SEEN BY DR. ANIKT MAKADIYA (ONCOPHYSIAN), ADVICE FOLLOWED.</P>\r\n\r\n<P>SEEN BY DR. VIJAY (MEDICAL ONCOLOGY),&nbsp;ADVICE FOLLOWED.RX MODIFIED.</P>\r\n\r\n<P>INJ. ALBUMIN GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED, FOLLOW VERBAL COMAND.</P>\r\n\r\n<P>RTF= 50ML/2HRLY.</P>\r\n\r\n<P>INJ. ALUMIN GIVEN.</P>\r\n\r\n<P>BLOOD CULTURE - NO ORGANISM SEEN.</P>\r\n\r\n<P>ASCITIC FLUID CULTURE -&nbsp;NO ORGANISM SEEN.</P>\r\n\r\n<P>HB - 8.9, WBC - 7770, PLATLETS COUNT - 21000.</P>\r\n\r\n<P>URINE OUT PUT ADEQUTE.</P>\r\n\r\n<P>PATIENT RELETIVE WANT DISCHARGE AGAIN MEDICAL ADVICE.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 17:34:24','mo','2025-12-04 16:34:20'),(8089,0,0,3547,3448,5044,0,0,NULL,'','MADVICE','ZZZ','Remark','REST AS PER NEUROLOGIST ADVICE ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-03 17:35:06','','0000-00-00 00:00:00'),(8090,0,0,1989,1941,5046,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 17:36:30','','0000-00-00 00:00:00'),(8091,0,0,2551,2493,5050,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----3-4 episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 17:40:54','','0000-00-00 00:00:00'),(8092,0,0,3552,3453,5052,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1-2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 17:49:39','','0000-00-00 00:00:00'),(8093,0,0,3552,3453,5052,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo--sudden onset of rotaotyr feeling when pt is in any posture she feels imbalance sense&thinsp;</p>\n\n<p>heaviness of&thinsp; head +</p>\n\n<p>left ear deafness +</p>\n\n<p>no associated other cns symptom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 17:50:23','darshan','2025-12-03 17:51:22'),(8094,0,0,3552,3453,5052,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---left severe sn deafness</p>\n\n<p>stabiloemtry---wnl</p>\n\n<p>vng--left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 17:50:34','darshan','2025-12-03 18:47:51'),(8096,0,0,1051,1017,5053,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----sense of imbalance with giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 17:53:59','','0000-00-00 00:00:00'),(8097,0,0,1051,1017,5053,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---left beat&thinsp;</p>\n\n<p>Hit--bilateral abnoraml&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 17:54:11','','0000-00-00 00:00:00'),(8100,0,0,1051,1017,5053,0,0,NULL,'','MADVICE','ZZZ','Remark','PSYCHIATRIST OPINION','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:05:24','','0000-00-00 00:00:00'),(8101,0,0,3553,3454,5055,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:05:58','','0000-00-00 00:00:00'),(8102,0,0,3553,3454,5055,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>when pt drive vehicle she needs to be extra careful</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:06:50','','0000-00-00 00:00:00'),(8103,0,0,3553,3454,5055,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vng--left psot canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:07:01','darshan','2025-12-03 19:00:10'),(8105,0,0,2482,2426,5058,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:09:22','','0000-00-00 00:00:00'),(8106,0,0,3556,3457,5059,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:16:08','','0000-00-00 00:00:00'),(8107,0,0,3556,3457,5059,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying donw in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:16:33','','0000-00-00 00:00:00'),(8108,0,0,3556,3457,5059,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>VNG--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:16:44','darshan','2025-12-03 19:14:15'),(8110,0,0,3555,3456,5057,0,0,NULL,'','DIAG','ZZZ','Remark','KELOID','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-03 18:20:00','','0000-00-00 00:00:00'),(8111,0,0,3563,3464,5067,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1.2 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:23:51','','0000-00-00 00:00:00'),(8112,0,0,3563,3464,5067,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head =</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:23:54','darshan','2025-12-03 18:24:41'),(8113,0,0,3563,3464,5067,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR DEAFNESS AND TINNITUS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:24:01','','0000-00-00 00:00:00'),(8114,0,0,3563,3464,5067,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta---left moderate sn deafness</p>\n\n<p>stabilomtry--reduced vestibular score</p>\n\n<p>vng--left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:24:58','darshan','2025-12-03 19:25:19'),(8116,0,0,3523,3426,4999,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE GASTRITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-03 18:28:18','','0000-00-00 00:00:00'),(8117,0,0,3561,3462,5064,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR BLOCKAGE FEELING ----FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:29:26','','0000-00-00 00:00:00'),(8118,0,0,3561,3462,5064,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>BTM--i/n</p>\n\n<p>PTA---WNL</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:29:33','darshan','2025-12-03 19:42:37'),(8119,0,0,3574,3475,5079,0,0,NULL,'','CC','ZZZ','Remark','LEFT SIDE NECK SWELLING ---20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:33:09','','0000-00-00 00:00:00'),(8120,0,0,3574,3475,5079,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left post triangle tender LN with size 2x2 cm</p>\n\n<p>USG ---LN swelling non specific</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:33:56','darshan','2025-12-03 20:01:26'),(8122,0,0,3557,3458,5060,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:35:54','','0000-00-00 00:00:00'),(8123,0,0,3580,3481,5086,0,0,NULL,'','DIAG','ZZZ','Remark','OPERATED FOR OBESITY','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-03 18:36:46','','0000-00-00 00:00:00'),(8124,0,0,3420,3328,4821,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:39:46','','0000-00-00 00:00:00'),(8126,0,0,3572,3473,5077,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-03 18:40:32','','0000-00-00 00:00:00'),(8127,0,0,3420,3328,4821,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:40:45','','0000-00-00 00:00:00'),(8128,0,0,3394,229,4802,0,0,NULL,'','TREATDISC_TI','','','<P>INJ MERO (1GM/100ML NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; 10AM--4PM--12PM&nbsp; &nbsp; &nbsp; FOR 3 DAYS&nbsp;</P>\r\n\r\n<P>INJ AMIKACIN(500MG/DILUTED)&nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp;10AM--10PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS&nbsp;</P>\r\n\r\n<P>TAB. METRO ER 600MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB. ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB. ZERODOL-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB. RIFAGUT&nbsp; &nbsp; 200MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 18:41:00','mo','2025-12-03 21:05:55'),(8129,0,0,3559,3460,5062,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:42:33','','0000-00-00 00:00:00'),(8130,0,0,3552,3453,5052,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:47:56','','0000-00-00 00:00:00'),(8131,0,0,3572,3473,5077,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-03 18:51:36','','0000-00-00 00:00:00'),(8132,0,0,3569,3470,5074,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---TODAY AFTERNOON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:55:25','','0000-00-00 00:00:00'),(8133,0,0,3569,3470,5074,0,0,NULL,'','HIST','ZZZ','Remark','<p>previously k/c/o---left endolymphatic hydrops</p>\n\n<p>today recurrence of vertigo--remains for few hrs&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:55:58','','0000-00-00 00:00:00'),(8134,0,0,3582,3483,5088,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-03 18:56:06','','0000-00-00 00:00:00'),(8135,0,0,3569,3470,5074,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>diix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilateral moderate sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 18:56:11','darshan','2025-12-03 19:55:51'),(8136,0,0,3582,3483,5088,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-03 18:56:19','','0000-00-00 00:00:00'),(8139,0,0,3553,3454,5055,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:00:39','','0000-00-00 00:00:00'),(8141,0,0,3582,3483,5088,0,0,NULL,'','MADVICE','ZZZ','Remark','SALT/ OIL RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-03 19:01:36','','0000-00-00 00:00:00'),(8142,0,0,3584,3484,5091,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----12 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:05:28','','0000-00-00 00:00:00'),(8143,0,0,3584,3484,5091,0,0,NULL,'','HIST','ZZZ','Remark','<p>h/o---head injury followed by giddiness</p>\n\n<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptosm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:07:48','','0000-00-00 00:00:00'),(8144,0,0,3584,3484,5091,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng--right psot canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:08:05','darshan','2025-12-03 20:04:42'),(8145,0,0,3584,3484,5091,0,0,NULL,'','DIAG','ZZZ','Remark','P/O---POST TRAUMATIC BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:08:06','','0000-00-00 00:00:00'),(8146,0,0,3584,3484,5091,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:08:32','','0000-00-00 00:00:00'),(8148,0,0,3556,3457,5059,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:12:33','','0000-00-00 00:00:00'),(8149,0,0,3587,3487,5095,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-03 19:13:42','','0000-00-00 00:00:00'),(8150,0,0,3587,3487,5095,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-03 19:13:48','','0000-00-00 00:00:00'),(8151,0,0,3556,3457,5059,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:14:18','','0000-00-00 00:00:00'),(8154,0,0,3085,203,4266,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE 250MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>TAB NEXPROFAST&nbsp; 40MG&nbsp; &nbsp;1--0--1&nbsp; &nbsp;BEFORE FOOD&nbsp;</P>\r\n\r\n<P>TAB DERICIP RETARD 300&nbsp; 1--0--1&nbsp; &nbsp;AFTER FOOD&nbsp;</P>\r\n\r\n<P>TAB APTIPRED&nbsp; 8MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp;AFTER FOOD</P>\r\n\r\n<P>TAB ZOFER-MD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; S.O.S&nbsp; &nbsp; IF VOMITING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 19:15:53','mo','2025-12-03 19:25:05'),(8155,0,0,3591,3491,5100,0,0,NULL,'','HIST','ZZZ','Remark','<p>periodical heaviness of head with mild giddiness feeling&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:16:02','darshan','2025-12-04 18:21:56'),(8156,0,0,3546,3447,5041,0,0,NULL,'','CC','ZZZ','Remark','CHEST PAIN||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-03 19:19:37','','0000-00-00 00:00:00'),(8157,0,0,3591,3491,5100,0,0,NULL,'','CC','ZZZ','Remark','HEAVINESS OF HEAD ----FWW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:21:11','','0000-00-00 00:00:00'),(8158,0,0,3591,3491,5100,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>Neurologist opinion taken---mild cognitive impairment</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng----bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:21:55','darshan','2025-12-04 18:22:59'),(8160,0,0,3563,3464,5067,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:25:22','','0000-00-00 00:00:00'),(8161,0,0,3589,3489,5097,0,0,NULL,'','HIST','ZZZ','Remark','<p>coughing --2-3 days&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:30:33','darshan','2025-12-03 19:30:51'),(8162,0,0,3589,3489,5097,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx--congested and granular</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:31:03','','0000-00-00 00:00:00'),(8163,0,0,3586,3486,5094,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE APPENDICITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-03 19:34:22','','0000-00-00 00:00:00'),(8165,0,0,3553,3454,5055,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:35:22','','0000-00-00 00:00:00'),(8166,0,0,1187,1147,5065,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:38:10','','0000-00-00 00:00:00'),(8168,0,0,3556,3457,5059,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:44:26','','0000-00-00 00:00:00'),(8169,0,0,3593,3493,5103,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:48:43','','0000-00-00 00:00:00'),(8170,0,0,3576,3477,5081,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for giddiness</p>\n\n<p>common cold</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-03 19:59:43','','0000-00-00 00:00:00'),(8172,0,0,3574,3475,5079,0,0,NULL,'','MADVICE','ZZZ','Remark','PHYSICIAN OPINION FOR DM\nSOS FNAC ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-03 20:02:38','','0000-00-00 00:00:00'),(8175,0,0,3584,3484,5091,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGTH SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-03 20:14:17','','0000-00-00 00:00:00'),(8177,0,0,3427,230,4834,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>E4V5M6&nbsp;</P>\r\n\r\n<P>MOBILIZATION WITH SUPPORT&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 20:56:41','mo','2025-12-03 20:56:55'),(8178,0,0,3427,230,4834,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>CONTINUE OWN MEDICINE&nbsp;</P>\r\n\r\n<P>PHYSIOTHERAPY&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 20:56:41','mo','2025-12-03 20:56:55'),(8179,0,0,3427,230,4834,0,0,NULL,'','TREATDISC_TI','','','<P>TAB R-PRESS D&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB SYNDOPA PLUS (125MG)&nbsp; &nbsp; &nbsp; &nbsp;1--1/2--1--1/2&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>TAB QUTAN(25MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB ZAPMAX(0.25MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB PIMAVERSE(34MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB OLMESAR-H&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB THYRONORM(75MCG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB OBIMET GX-2&nbsp; (2/500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ECOSPRIN AV(150/20)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB MIRABEGRON(25MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB AMANTRAL(100MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1/2--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 20:56:41','mo','2025-12-03 20:56:55'),(8180,0,0,3544,240,5038,0,0,NULL,'','DISCDIAG','','','<P><STRONG>DEAD BODY SEND FOR PM EXAMINATION.</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 22:04:03','mo','2025-12-04 06:34:47'),(8181,0,0,3544,240,5038,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 22:04:03','mo','2025-12-04 06:34:47'),(8182,0,0,3544,240,5038,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 55 YEARS OLD MALE&nbsp; PATIENT PRESENT WITH,<BR />\r\nALLLEGED H/O RTA&nbsp; RIKSHOW DASHED WITH CAR AT MORBI - LATIPAR ROAD, NEAR RADHE PARTY PLOT, ON 3-12-2025 AT 11.20 AM.&nbsp;</P>\r\n\r\n<P>PRIMART RX TAKEN AT KRISHNA HOSPITAL MORBI.</P>\r\n\r\n<P>TAHN COME HERE FOR FURTHER MX.</P>\r\n\r\n<P>K/C/O : DM.</P>\r\n\r\n<P>H/O LOC, VOMITING.</P>\r\n\r\n<P>ON EXAMIANTION PATIETN IS UNCONSIOUS,PULSE IS NOT RECORDABLE, BP NOT RECORDEBAL.</P>\r\n\r\n<P>CT BRAIN DONE AT OUT SIDE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:&nbsp;<BR />\r\nTEMP- COLD EXTRIMITY<BR />\r\nPR-&nbsp; NR<BR />\r\nBP- NR<BR />\r\nSPO2- NR<BR />\r\nRR- NR</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS- UN CONSCIOUS, GCS- E1M1V1, PUPIL - BILATERAL FIXED DIALTED.<BR />\r\nCHEST - AE -NT.<BR />\r\nCVS- S1S2-,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>03-12-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF UNCONSIOUS&nbsp; AND NO CARDIAC ACTIVITY , CPR GIVEN AS PAR ACLS PROTOCOL, PATIENT REVIVED, ENDOTRACHEAL INTUBATION DONE ET TUBE - 7.5 NO PUT ON VENTIALTOR SUPPORT AC/VC MODE.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION INJ. NORAD, INJ. ADR, INJ. VASOPRESSIN START BY INFUSION PUMP.</P>\r\n\r\n<P>FOLY`S CATH DONE.</P>\r\n\r\n<P>SEEN BY DR. JAYANT MEHTA (INTESIVIST), ADVICE FOLLOWED.</P>\r\n\r\n<P>PATIENT GC POOR&nbsp;PROGNOSIS EXPLIAN TO PATIENT RELETIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04-12-2025,</P>\r\n\r\n<P>PATIENT ON VENTILATOR SUPPORT AC/VC MDOE.</P>\r\n\r\n<P>PATIENT IS UNCONSIOUS, GCS = E1VETM1 = 3, PUPIL - FIX DILATED.</P>\r\n\r\n<P>INOTROPIC SUPPORT CONTINUE.</P>\r\n\r\n<P>IN VIEW OF BRADYCARDIA&nbsp; CPR GIVEN AS APR ACLS PROTOCOL, PT NOT REVIEVED, DECLERED DEATH 04-12-2025 TIME - 6.10&nbsp;AM.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 22:04:03','mo','2025-12-04 06:34:47'),(8183,0,0,3544,240,5038,0,0,NULL,'','DISCCOND','','','<P>DEATH</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 22:18:06','mo','2025-12-04 06:34:47'),(8184,0,0,3544,240,5038,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. OFRAMAX</P>\r\n\r\n<P>INJ. METROGYL</P>\r\n\r\n<P>INJ. PANTODA</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ. LEVERA</P>\r\n\r\n<P>INJ. NAHCO3</P>\r\n\r\n<P>INJ. H.ACTRAPID</P>\r\n\r\n<P>INJ.NOTROPIL</P>\r\n\r\n<P>INJ. ADR</P>\r\n\r\n<P>INJ.NORAD</P>\r\n\r\n<P>INJ. VASOPRESSIN</P>\r\n\r\n<P>IVF</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 22:18:06','mo','2025-12-04 06:34:47'),(8185,0,0,3583,241,5089,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-03 22:23:49','mo','2025-12-08 12:12:17'),(8186,0,0,3583,241,5089,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 62 YEARS OLD&nbsp; FEMAEL PATIENT PRESENT WITH,<BR />\r\nK/C/O: HTN, HYPOTHYRODISIM, S/P BARIATRIC SX.(DRUG DEFAULTER)<BR />\r\nC/O: SEVERE WATERY DIARRHOEA (20-25 TIMES)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; 3-4 EPISODE OF VOMITING.</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DIFFUSE ABDOMINAL PAIN,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DECRESED URINE OUT PUT,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SEVERE GEN. WEAKNESS, LETHARGY, GIDDINNESS, TETANY, BRETHING DIFFICULTY TODAY EVENING.</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; TODAY EVENING.<BR />\r\nPRIMARY TREATMENT TAKEN AT GENERAL PHYSIAN.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:&nbsp;</P>\r\n\r\n<P>TEMP- COLD EXTRIMITY<BR />\r\nPR- NR,&nbsp;<BR />\r\nBP- NR.&nbsp;<BR />\r\nSPO2- NR&nbsp;<BR />\r\nRR- 32/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>03-12-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION FLUID CHALANGE GIVEN, THAN START INJ.NORAD BY INFUSION.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04-12-2025,</P>\r\n\r\n<P>INJ.NORAD TAPPER AND STOP.</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>FOLY`S CATH DONE.</P>\r\n\r\n<P>USG ABDOMEN DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>STOOL R/M DONE WHICH S/O: OCCULT BLOOD +4,40-50 PUS CELL,10-12 RBC,BACTERIA DETECTED&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05-12-2025,</P>\r\n\r\n<P>URINE R/M DONE WHICH S/O: NAD&nbsp;</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>PATIENT IS STABLE.</P>\r\n\r\n<P>ICU STAT UNEVENTFULL, SHIFT TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>06-12-2025,</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>ORAL DIET TOLERATING&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>7/12/2025</P>\r\n\r\n<P>CATHETER CLAMP AND REMOVE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>8/12/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 22:23:49','mo','2025-12-08 12:12:17'),(8187,0,0,3510,238,4977,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-03 22:28:31','mo','2025-12-08 12:55:01'),(8188,0,0,3510,238,4977,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 80 YEARS OLD FEMALE&nbsp; PATIENT PRESENT WITH,<BR />\r\nK/C/O: HTN, DYSLIPIDEMAI, IHD, LVD + PAH, CKD, MYOSITIS, SLIPPED DISC ON RX.</P>\r\n\r\n<P>H/O LEFT NEPHARECTOMY.<BR />\r\nC/O: LOC AT HOME 2-3 MIN.</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DROWSY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DISORIENTED</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;URINE OUT PURT DECRESED.</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;BREATHLESSNESS, GEN. WEAKNESS, ANOREXIA.&nbsp; &nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE &nbsp;DAYS&nbsp;<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 98.2`F<BR />\r\nPR- 69/MIN<BR />\r\nBP- 60 SYSTOLIC&nbsp;<BR />\r\nSPO2- 85% ON RA&nbsp;<BR />\r\nRR-26/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS- DROWSY, DISORIENTED.<BR />\r\nRS- BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>03-12-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF SO2 - 85% O2 SUPPORT GIVEN VIA MASK 2 LIT.</P>\r\n\r\n<P>IN VIEW OF HYOPTENSION INJ.NORAD START BY INFUSION PUMP.</P>\r\n\r\n<P>REFERENCE DONE DR. MAYUR KAPURIYA (NEHROLOGIST) ADVICE FOLLOWED.</P>\r\n\r\n<P>TWO UNIT LRRCC GIVEN.</P>\r\n\r\n<P>REFERENCE DONE DR. PRATAPSINH&nbsp; DODIYA (GEN. SURGEON) ADVICE FOLLOWED.AND MANUALLY STOOL REMOVED</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>URINE R/M DONE WHICH S/O: PLENTY OF PUS CELL 8-10 RBC,BACTERIA(++)&nbsp; URINE C/S SEND</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04-12-2025,</P>\r\n\r\n<P>USG ABDOMEN DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>RIGHT SIDED SUBCLAVIAN CVP LINE DONE BY DR.J.MEHTA. WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05-12-2025,</P>\r\n\r\n<P>PATIENT GENERAL CONDITION IMPROVE SO PATIENT SHIFT TO WARD IN VITALLY STABLE CONDITION&nbsp;</P>\r\n\r\n<P>URINE C/S S/O: GRAM NEGATIVE BACILLI E CHOLI AND TREATMENT MODIFIED @ SENSITIVITY&nbsp;<BR />\r\n&nbsp;</P>\r\n\r\n<P>06-12-2025,</P>\r\n\r\n<P>REQUIRED BLOOD IX DONE AND TREATMENT MODIFIED&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>7-12-2025</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>08-12-2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.<BR />\r\nPATIENT RESPONDS WELL WITH ONGOING TREATMENT.</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 22:28:31','mo','2025-12-08 12:55:01'),(8189,0,0,3501,236,4968,0,0,NULL,'','DISCDIAG','','','<P><STRONG>RIGHT SIDED COMMUNITY ACQUIRED PNEUMONIA&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 23:47:41','mo','2025-12-05 11:56:14'),(8190,0,0,3501,236,4968,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-03 23:47:41','mo','2025-12-05 11:56:14'),(8191,0,0,3501,236,4968,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 68&nbsp;YEARS OLD&nbsp; MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:OPERATED FOR HERNIA (BEFORE 7 YR)<BR />\r\nC/O:COUGH WITH EXPECTORATION&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; HEMOPTYSIS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER ON AND OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DOE</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 2-3 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>PLAIN CT DONE ON 2/12/2025 REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>URINE R/M DONE ON 2/12/2025 WHICH S/O; 16-18 PUS CELL,8-10 RBC, 10-12 EPITHELIA CELL&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-102&#39;F, PR-103/MIN, BP-100/60MMHG, SPO2-95% ON RA, RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>SPUTUM R/M&nbsp; DONE ON 3/12/2025 WHICH S/O: 100-120 PUS CELL,50-60 RBC,GRAM NEGATIVE BACILLI SEEN SO SPUTUM C/S SENT WHICH S/O : NO BACTERIAL GROWTH&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 23:47:41','mo','2025-12-05 11:56:14'),(8192,0,0,3501,236,4968,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX-S</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n\r\n<P>INJ RANTAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ DERIPHYLLIN</P>\r\n\r\n<P>TAB APTIPRED</P>\r\n\r\n<P>TAB LANOL ER</P>\r\n\r\n<P>NEB DUOLIN</P>\r\n\r\n<P>NEB BUDECORT</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-03 23:47:41','mo','2025-12-05 11:56:14'),(8193,0,0,3543,239,5036,0,0,NULL,'','DISCDIAG','','','<P><STRONG>UTI IN CASE OF PENILE URETHRAL STRICTURE</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, BRONCHIAL ASTHMA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 00:01:00','mo','2025-12-04 12:00:46'),(8194,0,0,3543,239,5036,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-04 00:01:00','mo','2025-12-04 12:00:46'),(8195,0,0,3543,239,5036,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 86 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: ASHTHMA (SINCE 15-20 YR) ,?BPH<BR />\r\nH/O:TURP BEFORE MANY YR<BR />\r\nC/O:DOE SINCE LAST 2-3 HOUR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;INCONTINANCE OF URINE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FEVER WITH CHILL</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE TODAY AND INCREASED SINCE LAST 2-3 HOUR SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-101&#39;F, PR-80/MIN, BP-110/70MMHG, SPO2-96% ON RA, RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>URINE R/M DONE WHICH S/O:50-60 PUS CELL,BACTERIA DETECTED</P>\r\n\r\n<P>URINE CS SENT</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 00:01:00','mo','2025-12-04 12:00:46'),(8196,0,0,3543,239,5036,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX-S</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>NEB DUOLIN</P>\r\n\r\n<P>NEB BUDECORT</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>TAB URITIN</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 00:01:00','mo','2025-12-04 12:00:46'),(8197,0,0,3444,233,4863,0,0,NULL,'','DISCDIAG','','','<P><STRONG>SEVERE HYPOTENSION UNDER INVESTIGATION (?) TO RULE OUT AUTONOMIC DYSFUNCTION&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O:&nbsp;CA BUCCAL MUCOSA(POST OP COMMANDO SX TWICE ON CHEMO RX)&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 00:13:04','mo','2025-12-05 13:02:43'),(8198,0,0,3444,233,4863,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-04 00:13:04','mo','2025-12-05 13:02:43'),(8199,0,0,3444,233,4863,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 46 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O:&nbsp;CA BUCCAL MUCOSA(POST OP COMMANDO SX TWICE ON CHEMO RX)&nbsp;<BR />\r\nC/O:GIDDINESS.PERSPIRATION,LETHARGY,SINCE TODAY AROUND 5 AM</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-94/MIN, BP-60 SYSTOLIC , SPO2-94% ON RA, RR-16/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU&nbsp;&nbsp;AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>2/12/2025</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION INJ NORAD DRIP START</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>2D ECHO DONE REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>REFERENCE OF DR.KAUSHAL SHETH (ENDOCRINOLOGIST) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>3/12/2025</P>\r\n\r\n<P>VITALLY PATIENT STABLE WITH INOTROPIC SUPPORT SO PATIENT SHIFT TO WARD&nbsp;</P>\r\n\r\n<P>INJ NORAD CONTINUE</P>\r\n\r\n<P>TO RULE OUT CARDIAC CAUSE FOR HYPOTENSION REFERENCE OF DR RAVI BHOJANI(CARDIOLOGIST) DONE AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>DIRECT RENIN CONCENTRATION REPORT SENT..</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>4/12/2025</P>\r\n\r\n<P>BLOOD PRESSURE MONITORING 2ND HOURLY AND INJ NORAD TAPPER OFF&nbsp;</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>5/12/2025</P>\r\n\r\n<P>RENIN DIRECT S/O: 2.74 UIU/ML&nbsp;</P>\r\n\r\n<P>PATIENT BLOOD PRESSURE MEASURE IN STANDING POSITION WHICH IS LOWER THAN&nbsp;SUPINE POSITION IT&#39;S SUGGEST POSTURAL HYPOTENSION (SUPINE POSITION BP- 116/70MMHG ,&nbsp; STANDING POSITION BP- 94/70MMG)</P>\r\n\r\n<P>CONSIDERATION SEVERE HYPOTENSION WITHOUT RACIPROCAL TACHYCARDIA AND POSTURAL HYPOTENSION AND AFTER RULE OUT OTHER CARDIAC AND ENDOCRINOLOGIST CAUSEA OF HYPOTENSION POSSIBILITY OF AUTONOMIC DYSFUNCTION CONSIDERED&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 00:13:04','mo','2025-12-05 13:02:43'),(8200,0,0,3444,233,4863,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX-S</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ NORAD DRIP</P>\r\n\r\n<P>INJ PRIMACORT</P>\r\n\r\n<P>INJ DEXONA</P>\r\n\r\n<P>TAB ETOLOK</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 00:13:04','mo','2025-12-05 13:02:43'),(8201,0,0,3401,226,4778,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>BILATERAL OVARIAN CYSTECTOMY + PELVIC PERINECTOMY + UTETEROLYSIS + BOWEL SHAVING DONE BY&nbsp; DR SHILPAN GONDALYA ON 2/12/2025 UNDER GENERAL&nbsp;ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 00:19:48','mo','2025-12-05 11:34:28'),(8202,0,0,3401,226,4778,0,0,NULL,'','OTNOTE','','','<p>- 5 abdominal ports kept</p>\r\n\r\n<p>- adhenolysis done</p>\r\n\r\n<p>- bilateral ovarian cystectomy done and ovaries and uterus sespended</p>\r\n\r\n<p>- b/l ureterolysis done</p>\r\n\r\n<p>- pelvic perinectomy done</p>\r\n\r\n<p>- bowel(rectal) shaving done</p>\r\n\r\n<p>- all endometriosis tssue excised</p>\r\n\r\n<p>- hemostasis secured</p>\r\n\r\n<p>- specimen removed in endobag</p>\r\n\r\n<p>- intraperitoneal drain kept&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 00:19:48','mo','2025-12-05 11:34:28'),(8203,0,0,3350,222,4694,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>OT&nbsp; - 1</P>\r\n\r\n<P>LAPAROTOMY + ADHENOLYSIS DONE BY DR PRATAPSINH DODIYA ON 2/12/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>OT - 2</P>\r\n\r\n<P>RE-EXPLORATION LAPROTOMY + ILEOSTOMY + THOROUGH PERITONIAL LAVAGE&nbsp;DONE BY DR PRATAPSINH DODIYA ON 8/12/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 00:24:06','mo','2025-12-13 14:53:35'),(8204,0,0,3506,237,4970,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n<BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 00:25:45','mo','2025-12-04 22:32:57'),(8205,0,0,3506,237,4970,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 46 YEARS OLD MALE&nbsp; PATIENT PRESENT WITH,<BR />\r\nH/O : COUGH AND COLD SICNE 3-4 DAYS.<BR />\r\nK/C/O: EPILEPSY(LAST EPISODE 1 YEAR BACK)<BR />\r\nC/O: SEVERE GEN. WEAKNESS, LETHARGY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ALT. SENSORIUM</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;VOMITING 2-3 TIMES</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;HIGH GRADE FEVER&nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE TODAY MORNING.<BR />\r\nPRIMARY TREATMENT TAKEN AT GENERAL PHYSIAN.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP-&nbsp; 105.0`F<BR />\r\nPR- 134/MIN<BR />\r\nBP- 114/70 MMHG&nbsp;<BR />\r\nSPO2-97% ON RA&nbsp;<BR />\r\nRR-26/MIN</P>\r\n\r\n<P>RBS - 117 MG/DL.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS- CONSCIOUS/CONFUSED, SIMPLE F/V/C, GCS = E4V4M6,MOVING ALL 4 LIMBS.<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>RBS-117MG/DL</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>02-12-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF LOW HB 5.3 GM/DL SO,2 UNITS LR-RCC GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>03-12-2025,</P>\r\n\r\n<P>PATIENT CONFUSED/IRRITABLE.</P>\r\n\r\n<P>FEBRILE STATUS.</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>IN VIEW OF LOW HB 5.2 GM/DL SO,2 UNITS LR-RCC GIVEN.</P>\r\n\r\n<P>PS EXAMINATION DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>MRI BRAIN DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04-12-2025,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.PLT S/O 18,000 CELLS/MICROLITRE.</P>\r\n\r\n<P>NEUROPHYSICIAN DR.ROSHAN MISTRY REFERENCE DONE.FOLOOWED ALL HI ADVICE.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>PLAN CSF EXAMINATION AFTER PLATELETS IMPROVEMENT.</P>\r\n\r\n<P>HEMATOLOGIST DR.ADITI THANKI REFERENCE DONE.FOLLOWED ALL HER&nbsp;ADVICE.ADV:BMBX.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05-12-2025,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C.</P>\r\n\r\n<P>FEBRILE STATUS.</P>\r\n\r\n<P>BLOOD CULTURE SENT.</P>\r\n\r\n<P>CHEST X-RAY DONE.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELAIVE.</P>\r\n\r\n<P>PATIENT NEED FURTHER TREATMENT BUT RELATIVE WANT TO PATIENT DISCHARGED AGAINST MEDICAL ADVICE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 00:25:45','mo','2025-12-04 22:32:57'),(8206,0,0,3404,228,4781,0,0,NULL,'','DISCDIAG','','','<P><STRONG>UROSEPSIS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>ACUTE LVF&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>SEVERE ANEMIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>CAD (MODERATE LV DYSFUNCTION) ,SEVERE PAH</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, BICYTOPENIA, RA, HYPOTHYROIDISM, ANA3+, HYPERURICEMIA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 00:26:12','mo','2025-12-05 13:35:11'),(8207,0,0,3404,228,4781,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST MEDICAL HISTORY : HTN + BICYTOPENIA + RA + HYPOTHYROIDISM + ANA 3+</STRONG></P>\r\n\r\n<P><STRONG>HYPERURICEMIA ON RX..</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 00:26:12','mo','2025-12-05 13:35:11'),(8208,0,0,3404,228,4781,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 68 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, BICYTOPENIA, RA, HYPOTHYROIDISM, ANA3+, HYPERURICEMIA<BR />\r\nH/O: DOE, COUGHING, ANOREXIA, GENERALISED WEAKNESS SINCE 1 MONTH</P>\r\n\r\n<P>C/O: ABDOMINAL PAIN, NAUSEA, VOMITING, LOOSE MOTION SINCE FEW DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; INCREASED BREATHLESSNESS WITH SEVERE WEAKNESS/LETHARGY SINCE 2 DAYS</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAIN PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>BLOOD IX, URINE R/M, ECG (01/12/2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-164/MIN, BP-180/110MMHG, SPO2-60% ON RA, RR-&GT;40/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BL CREPS+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU&nbsp;AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>01/12/2025&nbsp;</P>\r\n\r\n<P>IN VIEW OF HYPOXIA AND TACHYPNOEA&nbsp; NIV SUPPORT GIVEN&nbsp;&nbsp;AND TREATMENT MODIFIED AFTER REPORTS.</P>\r\n\r\n<P>ECG DONE&nbsp;</P>\r\n\r\n<P>CHEST X RAY DONE REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>FOLEY&#39;S CATHETER (NO-14) DONE WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>NT PRO BNP DONE WHICH S/O: &GT; 25000&nbsp;</P>\r\n\r\n<P>S.URIC ACID DONE WHICH S/O: 9.50MG/DL&nbsp;</P>\r\n\r\n<P>URINE R/M DONE WHICH S/O: 80-100 PUS CELL,3-4 RBC,BACTERIA (+++) SO URINE C/S SENT&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>02/12/2025</P>\r\n\r\n<P>OFF O2 TRIAL GIVEN PATIENT MAINTAIN WELL SO O2 SUPPORT OFF</P>\r\n\r\n<P>URINE C/S S/O: E CHOLI AND TREATMENT MODIFIED ACCORDING TO SENSITIVITY&nbsp;</P>\r\n\r\n<P>2D ECHO AND USG ABDOMEN DONE BEDSIDE IN ICU.</P>\r\n\r\n<P>ORALLY DIET STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>03/12/2025</P>\r\n\r\n<P>ON PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED AND ORALLY TOLERTAED WELL</P>\r\n\r\n<P>SO PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04/12/2025,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>CATHETER CLAMP &AMP; REMOVED</P>\r\n\r\n<P>IN VIEW OF LOW HB (8.1) 1 UNIT RCC GIVEN(BGRH : O +VE)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>5/12/2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 00:26:12','mo','2025-12-05 13:35:11'),(8209,0,0,3506,237,4970,0,0,NULL,'','DISCDIAG','','','<P><STRONG>FEBRILE PANCYTOPENIA UNDER INVESTIGATION WITH</STRONG></P>\r\n\r\n<P><STRONG>&nbsp;? MEGALOBLASTIC ANEMIA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 00:37:11','mo','2025-12-04 22:32:57'),(8210,0,0,2463,2407,5111,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 10:50:11','','0000-00-00 00:00:00'),(8213,0,0,2463,2407,5111,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-04 10:52:26','','0000-00-00 00:00:00'),(8214,0,0,2544,2486,5114,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 11:00:21','','0000-00-00 00:00:00'),(8215,0,0,2986,2908,5116,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 11:05:17','','0000-00-00 00:00:00'),(8216,0,0,2986,2908,5116,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 11:05:55','','0000-00-00 00:00:00'),(8218,0,0,2986,2908,5116,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-04 11:07:13','','0000-00-00 00:00:00'),(8219,0,0,3602,3500,5121,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 11:20:34','','0000-00-00 00:00:00'),(8220,0,0,3602,3500,5121,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN WITH DISCHARGE ---FEW DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 11:20:44','','0000-00-00 00:00:00'),(8221,0,0,3602,3500,5121,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left ear small central perforation in scanty discharge&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 11:21:07','','0000-00-00 00:00:00'),(8223,0,0,3597,3497,5112,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-04 11:22:49','drjayant','2025-12-04 11:28:47'),(8224,0,0,3597,3497,5112,0,0,NULL,'','CC','ZZZ','Remark','BLOAKAGE OF NOSTRILS + | 30 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-04 11:28:39','drjayant','2025-12-04 11:31:19'),(8226,0,0,3597,3497,5112,0,0,NULL,'','MADVICE','ZZZ','Remark','SUGAR RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-04 11:31:24','','0000-00-00 00:00:00'),(8227,0,0,3596,3496,5110,0,0,NULL,'','CC','ZZZ','Remark','PALPITATIONS||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-04 11:31:45','','0000-00-00 00:00:00'),(8228,0,0,3596,3496,5110,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>ECG- NAD</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-04 11:31:53','','0000-00-00 00:00:00'),(8229,0,0,3603,3501,5122,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS---4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 11:34:18','','0000-00-00 00:00:00'),(8230,0,0,3603,3501,5122,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling&thinsp; on change of posture without any cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 11:34:37','','0000-00-00 00:00:00'),(8231,0,0,3603,3501,5122,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--left faint nystagmus&thinsp;</p>\n\n<p>hit---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 11:34:54','','0000-00-00 00:00:00'),(8233,0,0,3603,3501,5122,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-04 11:37:15','','0000-00-00 00:00:00'),(8234,0,0,1903,1857,5126,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 11:38:51','','0000-00-00 00:00:00'),(8235,0,0,3604,3502,5123,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 11:41:13','','0000-00-00 00:00:00'),(8236,0,0,3440,232,4857,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 11:43:18','mo','2025-12-04 12:12:22'),(8237,0,0,3440,232,4857,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CREMALAX (10 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; HS&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>CONTINUE OWN MEDICINE:</STRONG></P>\r\n\r\n<P>TAB AMLODAC AT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0</P>\r\n\r\n<P>TAB CORTEL H&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>START AFTER 5 DAYS:</STRONG></P>\r\n\r\n<P>CAP ROSULESS GOLD (10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 11:43:18','mo','2025-12-04 12:12:22'),(8238,0,0,2783,2712,5124,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 11:49:32','','0000-00-00 00:00:00'),(8239,0,0,2783,2712,5124,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 11:49:54','','0000-00-00 00:00:00'),(8241,0,0,2783,2712,5124,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-04 11:51:28','','0000-00-00 00:00:00'),(8242,0,0,2357,2300,5127,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for giddiness</p>\n\n<p>tinnitus as it is&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 11:58:40','','0000-00-00 00:00:00'),(8243,0,0,3543,239,5036,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 11:58:52','mo','2025-12-04 12:00:46'),(8244,0,0,3543,239,5036,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>CONTINUE OWN INHALER</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>URINE CS AWAITED</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 11:58:52','mo','2025-12-04 12:00:46'),(8245,0,0,3543,239,5036,0,0,NULL,'','TREATDISC_TI','','','<P>INJ UNITREX-S (1.5 GM/DIL)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;9AM----9PM&nbsp; &nbsp; &nbsp; &nbsp; FOR 6 DAYS (11 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB LOXOF (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 7 DAYS</P>\r\n\r\n<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZOFER MD (4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR VOMITING........(5)</P>\r\n\r\n<P>TAB DERIPHYLLIN RETARD (300)&nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB LANOL ER (650 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 3 DAYS</P>\r\n\r\n<P>TAB URITIN (0.4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN INHALER:</P>\r\n\r\n<P>INHALER ASTHALIN (SALBUTAMOL 100MG)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 11:58:52','mo','2025-12-04 12:00:46'),(8246,0,0,3608,3506,5130,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:04:33','','0000-00-00 00:00:00'),(8247,0,0,3612,3511,5137,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----sense of imbalance and positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:12:25','','0000-00-00 00:00:00'),(8248,0,0,3612,3511,5137,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:12:40','','0000-00-00 00:00:00'),(8249,0,0,3612,3511,5137,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:13:14','','0000-00-00 00:00:00'),(8251,0,0,3612,3511,5137,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:13:41','','0000-00-00 00:00:00'),(8252,0,0,3616,3515,5142,0,0,NULL,'','CC','ZZZ','Remark','WEAKNESS, PALPITATIONS | 60 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-04 12:17:59','','0000-00-00 00:00:00'),(8253,0,0,3610,3508,5133,0,0,NULL,'','HIST','ZZZ','Remark','<p>treated with IT steroid</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:26:53','darshan','2025-12-04 12:27:26'),(8254,0,0,3610,3508,5133,0,0,NULL,'','CC','ZZZ','Remark','REDUCED HEARING ---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:27:04','','0000-00-00 00:00:00'),(8255,0,0,3610,3508,5133,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>BTM--i/n</p>\n\n<p>pta---bialteral&thinsp; mild to moderate sn deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:27:14','darshan','2025-12-04 12:27:44'),(8257,0,0,3620,3519,5147,0,0,NULL,'','MADVICE','ZZZ','Remark','INJ DYNAPAR IM STAT ','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-04 12:29:45','','0000-00-00 00:00:00'),(8258,0,0,3613,3512,5138,0,0,NULL,'','CC','ZZZ','Remark','IMBALANCE AND GIDDINESS-----1-2 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:39:09','','0000-00-00 00:00:00'),(8259,0,0,3622,3520,5150,0,0,NULL,'','CC','ZZZ','Remark','DYSURIA, CHILLS | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-04 12:39:27','','0000-00-00 00:00:00'),(8260,0,0,3622,3520,5150,0,0,NULL,'','HIST','ZZZ','Remark','<p>ON UROLOGIST TX</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-04 12:39:44','drjayant','2025-12-04 12:48:04'),(8261,0,0,3613,3512,5138,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic sense of imbalance and giddiness</p>\n\n<p>heaviness of head +</p>\n\n<p>k/c/o----psychiatric disorder</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:39:51','','0000-00-00 00:00:00'),(8262,0,0,3613,3512,5138,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:40:06','','0000-00-00 00:00:00'),(8264,0,0,3613,3512,5138,0,0,NULL,'','DIAG','ZZZ','Remark','PSY','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:40:33','','0000-00-00 00:00:00'),(8268,0,0,3622,3520,5150,0,0,NULL,'','MADVICE','ZZZ','Remark','RBS MONITORING ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-04 12:48:04','','0000-00-00 00:00:00'),(8269,0,0,3615,3514,5141,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:48:36','','0000-00-00 00:00:00'),(8270,0,0,3615,3514,5141,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:49:24','','0000-00-00 00:00:00'),(8271,0,0,3615,3514,5141,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>&thinsp;pta----bilatral high freq&thinsp; severe sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--right hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:49:41','darshan','2025-12-04 13:38:42'),(8272,0,0,3615,3514,5141,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:49:45','','0000-00-00 00:00:00'),(8274,0,0,3613,3512,5138,0,0,NULL,'','MADVICE','ZZZ','Remark','PT WILL COME LATER ON ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:51:54','','0000-00-00 00:00:00'),(8275,0,0,3619,3518,5146,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:54:03','','0000-00-00 00:00:00'),(8277,0,0,3619,3518,5146,0,0,NULL,'','MADVICE','ZZZ','Remark','ORTHO OPENION FOR BACKACHE','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-04 12:57:05','','0000-00-00 00:00:00'),(8278,0,0,1567,1526,5153,0,0,NULL,'','CC','ZZZ','Remark','BILAT SOLES NEUROPATHIC PAIN | 10 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-04 12:58:48','','0000-00-00 00:00:00'),(8279,0,0,3623,3521,5151,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 13:01:11','','0000-00-00 00:00:00'),(8280,0,0,3624,3522,5152,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow u case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 13:04:26','','0000-00-00 00:00:00'),(8281,0,0,1907,1862,5158,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 13:07:55','','0000-00-00 00:00:00'),(8282,0,0,3629,3527,5160,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 13:20:04','','0000-00-00 00:00:00'),(8283,0,0,3629,3527,5160,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotyr feeling for few mins&thinsp;</p>\n\n<p>repeated any time and remans for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtposm</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 13:20:11','darshan','2025-12-04 13:21:57'),(8284,0,0,3629,3527,5160,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgu---absent</p>\n\n<p>dix halllpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>Right ear discharge&thinsp;with granulation--p/o--cholesteatoma</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 13:23:06','darshan','2025-12-04 13:28:17'),(8286,0,0,1676,1631,5161,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 13:26:11','','0000-00-00 00:00:00'),(8289,0,0,3629,3527,5160,0,0,NULL,'','MADVICE','ZZZ','Remark','VESTIBULAR IX---PT WILL COME LATER ON','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-04 13:29:54','','0000-00-00 00:00:00'),(8290,0,0,3615,3514,5141,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 13:39:07','','0000-00-00 00:00:00'),(8292,0,0,538,513,5143,0,0,NULL,'','HIST','ZZZ','Remark','<p>throat pain---2-3 days&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 13:43:43','','0000-00-00 00:00:00'),(8293,0,0,538,513,5143,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx--congested&thinsp;</p>\n\n<p>neck--nad</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 13:43:58','','0000-00-00 00:00:00'),(8294,0,0,3599,3498,5115,0,0,NULL,'','DIAG','ZZZ','Remark','SEBACEOUS  CYST ON BACK','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-04 13:53:35','','0000-00-00 00:00:00'),(8295,0,0,3599,3498,5115,0,0,NULL,'','DIAG','ZZZ','Remark','DEPRESSION','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-04 13:53:39','','0000-00-00 00:00:00'),(8297,0,0,3615,3514,5141,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-04 13:54:00','','0000-00-00 00:00:00'),(8298,0,0,3480,235,4920,0,0,NULL,'','DISCCOND','','','<P>ON DISCHARGE TIME PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>RT AND FOLY`S CATH IN SITU.</P>\r\n\r\n<P>URINE OUT PUT ADEQUTE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-97.8`F</P>\r\n\r\n<P>PR- 102/MIN,</P>\r\n\r\n<P>P- 112/80MMHG,</P>\r\n\r\n<P>SPO2- 99% ON RA,</P>\r\n\r\n<P>RR- 22/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,</P>\r\n\r\n<P>CVS-S1S2+,</P>\r\n\r\n<P>CNS-CONSCIOUS AND ORIENTED F/V/C,</P>\r\n\r\n<P>P/A- DISTANDED, TENDERNESS.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 16:14:40','mo','2025-12-04 16:34:20'),(8299,0,0,3480,235,4920,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. MERO</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ. LASIX</P>\r\n\r\n<P>INJ. ALBUMIN</P>\r\n\r\n<P>INJ. TERLIPRESSIN</P>\r\n\r\n<P>INJ. NEUROBION FORTE</P>\r\n\r\n<P>INJ. D 25 %&nbsp;</P>\r\n\r\n<P>INJ. H.ACTRAPID</P>\r\n\r\n<P>SYP. LOOZ</P>\r\n\r\n<P>LOOZ ENEMA</P>\r\n\r\n<P>UDISTRONG SUCHET</P>\r\n\r\n<P>TAB. SOBISIS</P>\r\n\r\n<P>NEB. ASTHALIN</P>\r\n\r\n<P>TAB. CYPROHEPTADINE</P>\r\n\r\n<P>CAP. PANKROFIAT</P>\r\n\r\n<P>TAB. UDILIVE</P>\r\n\r\n<P>INJ. NS</P>\r\n\r\n<P>INJ. ELDERVIT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 16:14:40','mo','2025-12-04 16:34:20'),(8300,0,0,3480,235,4920,0,0,NULL,'','TREATDISC_TI','','','<P>INJ. MERO 1GM + NS 100ML IV BD (3 DAYS GIVEN)</P>\r\n\r\n<P>INJ. PANTODAC 40 MG IV OD</P>\r\n\r\n<P>INJ. EMSET 2ML IV TDS.</P>\r\n\r\n<P>INJ. LASIX 20 MG IV BD</P>\r\n\r\n<P>INJ. ALBUMIN 20 % 100MLIV OD (2 DAYS GIVEN)</P>\r\n\r\n<P>INJ. TERLIPRESSIN 1 AMP +NS 100ML IV TDS</P>\r\n\r\n<P>INJ. NEUROBION FORTE 1AMP + NS 100ML IV OD</P>\r\n\r\n<P>SYP. LOOZ 30 ML TDS</P>\r\n\r\n<P>LOOZ ENEMA ....TDS</P>\r\n\r\n<P>UDISTRONG SUCHET....TDS</P>\r\n\r\n<P>TAB. SOBISIS 500MG R/T 1-1-1</P>\r\n\r\n<P>TAB. CYPROHEPTADINE R/T 1-1-1</P>\r\n\r\n<P>CAP. PANKROFIAT R/T 1-1-1</P>\r\n\r\n<P>TAB. UDILIVE P/O 1-1-1</P>\r\n\r\n<P>INJ. NS 500ML +&nbsp;INJ. ELDERVIT... 50ML/HR.&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 16:18:51','mo','2025-12-04 16:34:20'),(8301,0,0,3480,235,4920,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION</P>\r\n\r\n<P>ICU CARE</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 16:31:01','mo','2025-12-04 16:34:20'),(8302,0,0,2747,2678,5166,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 17:08:00','','0000-00-00 00:00:00'),(8305,0,0,2747,2678,5166,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-04 17:09:14','','0000-00-00 00:00:00'),(8306,0,0,2902,2830,5167,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 17:13:26','','0000-00-00 00:00:00'),(8307,0,0,3633,3529,5168,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 17:31:49','','0000-00-00 00:00:00'),(8308,0,0,3633,3529,5168,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset&thinsp; of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 17:32:27','','0000-00-00 00:00:00'),(8309,0,0,3633,3529,5168,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta---bilaterl moderate to severe sn deafness (o)</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--left post canal bppv with bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 17:32:39','darshan','2025-12-04 19:01:40'),(8310,0,0,3633,3529,5168,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 17:32:42','','0000-00-00 00:00:00'),(8311,0,0,3633,3529,5168,0,0,NULL,'','DIAG','ZZZ','Remark','BIALTERAL VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 17:32:48','','0000-00-00 00:00:00'),(8312,0,0,3634,3532,5171,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR TINNITUS ---FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 17:46:12','','0000-00-00 00:00:00'),(8313,0,0,3634,3532,5171,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of right ear tinnitus which is continuous&thinsp;</p>\n\n<p>occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 17:46:39','','0000-00-00 00:00:00'),(8314,0,0,3634,3532,5171,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---right very severe to profound deafness</p>\n\n<p>OAE--poor corelation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 17:46:58','darshan','2025-12-04 19:04:53'),(8317,0,0,3637,3535,5177,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case ----headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 17:55:57','','0000-00-00 00:00:00'),(8318,0,0,3638,3536,5179,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--5-6 very short episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 18:00:23','','0000-00-00 00:00:00'),(8319,0,0,3640,3538,5183,0,0,NULL,'','DIAG','ZZZ','Remark','LT SHOULDER CYST','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-04 18:01:40','','0000-00-00 00:00:00'),(8320,0,0,834,803,5176,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 18:04:45','darshan','2025-12-04 18:08:29'),(8321,0,0,1932,1885,5180,0,0,NULL,'','HIST','ZZZ','Remark','<p>folowu&thinsp; pcase---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 18:05:32','','0000-00-00 00:00:00'),(8322,0,0,3627,3525,5157,0,0,NULL,'','DIAG','ZZZ','Remark','UMBILICAL SEPSIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-04 18:09:05','','0000-00-00 00:00:00'),(8323,0,0,3213,3127,5178,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n\n<p>stiches removal</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 18:11:40','','0000-00-00 00:00:00'),(8324,0,0,3635,3533,5173,0,0,NULL,'','DIAG','ZZZ','Remark','AGE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-04 18:17:31','','0000-00-00 00:00:00'),(8325,0,0,3632,3528,5165,0,0,NULL,'','DIAG','ZZZ','Remark','CBD STONE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-04 18:20:50','','0000-00-00 00:00:00'),(8326,0,0,3632,3528,5165,0,0,NULL,'','DIAG','ZZZ','Remark','CROHN DISEASE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-04 18:21:02','','0000-00-00 00:00:00'),(8328,0,0,3591,3491,5100,0,0,NULL,'','MADVICE','ZZZ','Remark','CONTINUE NEUROLOGIST RX\nBD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-04 18:25:13','','0000-00-00 00:00:00'),(8329,0,0,805,774,5187,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 18:27:36','','0000-00-00 00:00:00'),(8330,0,0,3641,3539,5185,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 18:35:07','','0000-00-00 00:00:00'),(8333,0,0,2780,3542,5189,0,0,NULL,'','MADVICE','ZZZ','Remark','DR ROSHAN MISTRY SIR CONSULTATION','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-04 18:38:06','','0000-00-00 00:00:00'),(8334,0,0,3404,228,4781,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER&nbsp; 7&nbsp;DAYS&nbsp;</P>\r\n\r\n<P>HEMATOLOGIST OPINION&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 18:39:57','mo','2025-12-05 13:35:11'),(8335,0,0,3404,228,4781,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX S</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>INJ MGSO4</P>\r\n\r\n<P>INJ NAHCO3</P>\r\n\r\n<P>INJ CAL.GLUCONATE</P>\r\n\r\n<P>INJ MEZOR</P>\r\n\r\n<P>INJ DERIPHYLLIN</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n\r\n<P>TAB FEBUSTAT</P>\r\n\r\n<P>GI DRIP</P>\r\n\r\n<P>NEB DUOLIN</P>\r\n\r\n<P>NEB BUDECORT</P>\r\n\r\n<P>SYP BAYER&#39;S TONIC</P>\r\n\r\n<P>LIQ LOOZ</P>\r\n\r\n<P>INJ RCC</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 18:39:57','mo','2025-12-05 13:35:11'),(8337,0,0,3098,3018,5192,0,0,NULL,'','CC','ZZZ','Remark','C/O ULCER LT ANKLE  | 3 MONTHS | NON HEALING','','',0,'0000-00-00 00:00:00','drarchit','2025-12-04 18:43:27','','0000-00-00 00:00:00'),(8338,0,0,3098,3018,5192,0,0,NULL,'','HIST','ZZZ','Remark','<p>ON MYELOSTAT&thinsp;</p>\n\n<p>MULTIPLE ANTIBIOTICS AND DRESSING DONE SINCE 3 MONTHS</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-04 18:43:52','','0000-00-00 00:00:00'),(8339,0,0,3098,3018,5192,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALLY NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-04 18:44:02','','0000-00-00 00:00:00'),(8340,0,0,3098,3018,5192,0,0,NULL,'','DIAG','ZZZ','Remark','NON HEALING ANKE ULCERS ? HYDRXYUREA INDCUED','','',0,'0000-00-00 00:00:00','drarchit','2025-12-04 18:46:26','','0000-00-00 00:00:00'),(8342,0,0,3267,3181,5191,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--throat irritation</p>\n\n<p>left ear som</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 18:46:27','','0000-00-00 00:00:00'),(8343,0,0,3098,3018,5192,0,0,NULL,'','MADVICE','ZZZ','Remark','HEMATOLIGIST ADVICE TO STOP HYDROXYUREA AND START ULTERNATE MEDICATION FOR SAME \nDAILY DRESSING','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-04 18:47:20','','0000-00-00 00:00:00'),(8344,0,0,3267,3181,5191,0,0,NULL,'','PLAN','ZZZ','Remark','14','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 18:47:24','','0000-00-00 00:00:00'),(8345,0,0,3648,3547,5204,0,0,NULL,'','CC','ZZZ','Remark','URTI | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-04 18:53:53','','0000-00-00 00:00:00'),(8346,0,0,3648,3547,5204,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-04 18:53:58','','0000-00-00 00:00:00'),(8347,0,0,3645,3544,5195,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 18:56:41','','0000-00-00 00:00:00'),(8348,0,0,3645,3544,5195,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS--FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 18:56:41','','0000-00-00 00:00:00'),(8349,0,0,3645,3544,5195,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 18:56:44','','0000-00-00 00:00:00'),(8350,0,0,3645,3544,5195,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 18:57:00','','0000-00-00 00:00:00'),(8352,0,0,3633,3529,5168,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 19:02:04','','0000-00-00 00:00:00'),(8358,0,0,3645,3544,5195,0,0,NULL,'','MADVICE','ZZZ','Remark','PT WILL COME LATER ON FOR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-04 19:07:28','','0000-00-00 00:00:00'),(8359,0,0,797,766,5198,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 19:09:22','','0000-00-00 00:00:00'),(8360,0,0,2952,2877,5203,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 19:13:09','','0000-00-00 00:00:00'),(8362,0,0,3633,3529,5168,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-04 19:15:25','','0000-00-00 00:00:00'),(8363,0,0,3349,221,4693,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>COLOSTOMY BAG IN SITU (DAY-5)</P>\r\n\r\n<P>DRAIN IN SITU (DAY-5)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 19:20:42','mo','2025-12-04 20:36:32'),(8364,0,0,3349,221,4693,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>TAKE SOFT DIET</P>\r\n\r\n<P>DAILY DRAIN CARE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>SWAB CS AWAITED</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 19:20:42','mo','2025-12-04 20:36:32'),(8365,0,0,3650,3549,5209,0,0,NULL,'','CC','ZZZ','Remark','THROAT PAIN----3-4 DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 19:26:01','','0000-00-00 00:00:00'),(8366,0,0,3650,3549,5209,0,0,NULL,'','CC','ZZZ','Remark','PAIN FUL SWALLOWING||','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 19:26:01','','0000-00-00 00:00:00'),(8367,0,0,3650,3549,5209,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---severely congested ts with follicles</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 19:26:23','','0000-00-00 00:00:00'),(8370,0,0,3349,221,4693,0,0,NULL,'','TREATDISC_TI','','','<P>INJ MERO (1 GM/100 NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 8AM--3PM--10PM&nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS (7 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB METRO ER (600 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL&nbsp;SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB RIFAGUT (200 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP RESWAS (5 ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP LECTIHEP (5 ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP ZINCOVIT (2 TSF)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR&nbsp;5 DAYS</P>\r\n\r\n<P>PROTIHIR POWDER (2 TSF WITH MILK)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>METROGYL P OINTMENT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/V&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 10AM----10PM</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 19:28:12','mo','2025-12-04 20:36:32'),(8371,0,0,3650,3549,5209,0,0,NULL,'','MADVICE','ZZZ','Remark','ADMISSION  SOS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-04 19:29:09','','0000-00-00 00:00:00'),(8372,0,0,3643,3541,5188,0,0,NULL,'','DIAG','ZZZ','Remark','? PERIANAL ABSCES','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-04 19:29:50','','0000-00-00 00:00:00'),(8373,0,0,3651,3550,5210,0,0,NULL,'','CC','ZZZ','Remark','THROAT PAIN---2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 19:30:12','','0000-00-00 00:00:00'),(8374,0,0,3651,3550,5210,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>ts ---congested with follicles</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 19:30:25','','0000-00-00 00:00:00'),(8376,0,0,3651,3550,5210,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS ADMISSION ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-04 19:32:53','','0000-00-00 00:00:00'),(8377,0,0,3631,246,5164,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PHIMOSIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 19:35:07','mo','2025-12-04 21:47:56'),(8378,0,0,3631,246,5164,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-04 19:35:07','mo','2025-12-04 21:47:56'),(8379,0,0,3631,246,5164,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 24 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nH/O: BRUCELLOSIS BEFORE 4 YEAR<BR />\r\nC/O: UNABLE TO RETRCT PRE PENILE SKIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PAIN WHILE URINATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO FEVER</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINS PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-103/MIN, BP-130/80MMHG, SPO2-96%&nbsp;ON RA, RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nCIRCUMSCISION DONE BY DR PRATAPSINH DODIYA ON 04/12/2025 UNDER ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 19:35:07','mo','2025-12-04 21:47:56'),(8380,0,0,3631,246,5164,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 19:35:07','mo','2025-12-04 21:47:56'),(8381,0,0,3631,246,5164,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 19:35:07','mo','2025-12-04 21:47:56'),(8382,0,0,3631,246,5164,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>NEOSPORIN OINTMENT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 19:35:07','mo','2025-12-04 21:47:56'),(8383,0,0,3631,246,5164,0,0,NULL,'','TREATDISC_TI','','','<P>CAP AUGMENTIN (625 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>NEOSPORINE OINTMENT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; LOCAL APPLICATION..............(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 19:35:07','mo','2025-12-04 21:47:56'),(8384,0,0,3652,3551,5211,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better for giddiness&thinsp;</p>\n\n<p>headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 19:35:12','','0000-00-00 00:00:00'),(8385,0,0,3631,246,5164,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>CIRCUMSCISION DONE BY DR PRATAPSINH DODIYA ON 04/12/2025 UNDER ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 19:38:03','mo','2025-12-04 21:47:56'),(8386,0,0,3631,246,5164,0,0,NULL,'','OTNOTE','','','<p>-THICKENED PRE-PENILE SKIN</p>\r\n\r\n<p>-MEATUS NORMAL</p>\r\n\r\n<p>-GLANS PENIS NORMAL</p>\r\n\r\n<p>-CIRCUMSCISION DONE WITH CHROMIC CATGUT 3 0.</p>\r\n\r\n<p>-HEMOSTASIS ACHIEVED</p>\r\n\r\n<p>-DRESSING KEPT</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 19:38:03','mo','2025-12-04 21:47:56'),(8387,0,0,1765,1721,5212,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-04 19:39:06','','0000-00-00 00:00:00'),(8389,0,0,1765,1721,5212,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-04 19:40:52','','0000-00-00 00:00:00'),(8390,0,0,3031,2952,5215,0,0,NULL,'','CC','ZZZ','Remark','POSTED FOR RT PCNL WITH DJ STENTING||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-04 20:12:30','','0000-00-00 00:00:00'),(8391,0,0,3031,2952,5215,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO C/O DOE&thinsp;</p>\n\n<p>NO C/O CHEST PAIN</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-04 20:12:45','','0000-00-00 00:00:00'),(8392,0,0,3031,2952,5215,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>R/S CLEAR&thinsp;</p>\n\n<p>CVS S1-S2 NORMAL&thinsp;</p>\n\n<p>REST CLINICALY NAD</p>\n\n<p>ECG- S/O GOBAL T INVERSTION&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-04 20:15:05','','0000-00-00 00:00:00'),(8395,0,0,3031,2952,5215,0,0,NULL,'','MADVICE','ZZZ','Remark','ADVICE - 2D ECHO\nPATIETN CAN BE TAKEN FOR SURGERY WITH DUE ANESTHETIC DRUGS AND OPERATIVE RISK \n','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-04 20:17:45','','0000-00-00 00:00:00'),(8396,0,0,3349,221,4693,0,0,NULL,'','OTNOTE','','','<p>-10 MM CAMERA&nbsp;PORT INSERTION DONE THROUGH SUPRAUMBILICAL STITCH LINE.</p>\r\n\r\n<p>-THIN 5 MM PORT INSERTION DONE THROUGH PREVIOUS STITCH LINE</p>\r\n\r\n<p>-FAECAL MATTER IN POD. OMENTUM &amp; SIGMOID COLON ADHERENT WITH PELVIC PERITONEUM</p>\r\n\r\n<p>-SMALL BOWEL LOOPS NORMAL</p>\r\n\r\n<p>-PERFORATION ON ANTERIOR WALL OF RECTUM</p>\r\n\r\n<p>-PERFORATION CLOSED IN TWO LAYER WITH MERSILK 3 0.</p>\r\n\r\n<p>-SALINE WASH GIVEN</p>\r\n\r\n<p>-DRAIN KEPT IN POD</p>\r\n\r\n<p>-SIGMOID LOOP MOBILISED &amp; EXTENREVISED AS A LOOP COLOSTOMY</p>\r\n\r\n<p>-SIGMOID LOOP FIXED WITH ANTERIOR RECTUS SHEATH</p>\r\n\r\n<p>-MUCOCUTANEOUS STITCHES TAKEN WITH MERSILK 3 0</p>\r\n\r\n<p>-PORT SITE CLOSED WITH SKIN STAPPLER</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 20:20:44','mo','2025-12-04 20:36:32'),(8397,0,0,3349,221,4693,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>LAPAROSCOPIC RECTAL PERFORATION&nbsp;CLOSURE + SIGMOID COLON LOOP COLOSTOMY DONE BY DR PRATAPSINH DODIYA ON 04/12/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 20:22:29','mo','2025-12-04 20:36:32'),(8398,0,0,3383,224,4751,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-RIGHT LOWER ZONE COMMUNITY ACQUIRED PNEUMONIA</STRONG></P>\r\n\r\n<P><STRONG>-ACUTE KIDNEY INJURY</STRONG></P>\r\n\r\n<P><STRONG>-K/C/O: DM-2 SINCE 12 YEAR</STRONG></P>\r\n\r\n<P><STRONG>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DYSLIPIDEMIA&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 22:11:43','mo','2025-12-06 13:21:05'),(8399,0,0,3383,224,4751,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY :- </STRONG>RECENTLY TOTAL KNEE REPLACEMENT {27/11/2025}</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 22:11:43','mo','2025-12-06 13:21:05'),(8400,0,0,3383,224,4751,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 69 YEARS OLD FEMALE PATIENT P/W</P>\r\n\r\n<P>K/C/O DM-2 AND DYSLIPIDEMIA&nbsp;</P>\r\n\r\n<P>C/O INVOLUNTARY LIMBS MOVEMENTS&nbsp;AND DISORIENTED DOE:-ANOREXIA;GEN.WEAKNESS SINCE 2-3 DAYS.INCREASED DROWSINESS;SLURRED SPEECH;INVOLUNTARY URINE PASSED AND INVOLUNTARY LIMB MOVEMENT SINCE LAST 3-4 HOURS.</P>\r\n\r\n<P>H/O TKR ON 27/11/25.</P>\r\n\r\n<P>SO,RELATIVE BROUGHT HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-98.4F&nbsp;</P>\r\n\r\n<P>PR-130/MIN</P>\r\n\r\n<P>BP-160/100MMHG</P>\r\n\r\n<P>SPO2-82% ON RA</P>\r\n\r\n<P>RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-B/L CREPS+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-DROWSY/AROUSABLE,SIMPLE F/V/C</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-404 MG/DL</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>01-12-25,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF HYPOXIA SO,O2 SUPPORT GIVEN.</P>\r\n\r\n<P>CHEST X-RAY DONE.</P>\r\n\r\n<P>D-DIMER DONE.S/O 1061 NG/ML</P>\r\n\r\n<P>ABG DONE.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>PATIENT DEVELOPED RESPIRATORY DISTRESS WITH INCREASED O2 REQUIREMENT AND UNRESPONSIVE SO,EMERGENCY ENDOTRACHEAL INTUBATION AND PUT ON VENTILATOR SUPPORT.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>HYPERKALEMIA MANAGED BY IV NAHCO3;CAL.GLUCONATE AND GI DRIP.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>02-12-25,</P>\r\n\r\n<P>PATIENT ON VENTI SUPPORT C-PAP MODE.O2 T-PIECE TRIAL GIVEN.</P>\r\n\r\n<P>USG ABDOMEN+PELVIS DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>RYLE&#39;S TUBE FEEDING STARTED.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>03-12-25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>PATIENT ON O2 T-PIECE SUPPORT.O2 SUPPORT TAPER @ SPO2.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04-12-25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>PATIENT ON O2 SUPPORT 1 L/MIN</P>\r\n\r\n<P>U/O ADEQUATE.</P>\r\n\r\n<P>ORALLY DIET GIVEN.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05-12-2025</P>\r\n\r\n<P>PATIENT MAINTAIN WELL SPO2 ON RA</P>\r\n\r\n<P>PATIENT FOLEY&#39;S CATHETER CLAMP AND REMOVE</P>\r\n\r\n<P>PATIENT TOLERATE&nbsp;ORAL DIET SO RT REMOVE</P>\r\n\r\n<P>PATIENT CONDITION IMPROVE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>06-12-2025</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>PATIENT MOBILIZATION DONE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 22:11:43','mo','2025-12-06 13:21:05'),(8401,0,0,3506,237,4970,0,0,NULL,'','DISCCOND','','','<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>FOLEY&#39;S CATHETER IN SITU(NO-14,D4)</P>\r\n\r\n<P>FEBRILE STATUS.</P>\r\n\r\n<P>U/O ADEQUATE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 22:15:53','mo','2025-12-04 22:32:57'),(8402,0,0,3506,237,4970,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION</P>\r\n\r\n<P>BONE MARROW BIOPSY</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 22:15:53','mo','2025-12-04 22:32:57'),(8403,0,0,3506,237,4970,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MERO</P>\r\n\r\n<P>IN OFRAMAX</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ LEVIGRESS</P>\r\n\r\n<P>INJ B29 AQ</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>4 UNITS LR-RCC</P>\r\n\r\n<P>INJ DEXONA</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ ELDRVIT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-04 22:18:52','mo','2025-12-04 22:32:57'),(8404,0,0,3383,224,4751,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITRAX</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ DERIPHYLIN</P>\r\n\r\n<P>INJ. CAL. GLUCONET</P>\r\n\r\n<P>INJ. NAHCO3</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ HAI</P>\r\n\r\n<P>INJ D25</P>\r\n\r\n<P>INJ MGSO4</P>\r\n\r\n<P>TAB BISOBIS</P>\r\n\r\n<P>TAB APIXAGRES</P>\r\n\r\n<P>TAB. LOXOF</P>\r\n\r\n<P>INJ. DYTOR</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 01:04:45','mo','2025-12-06 13:21:05'),(8405,0,0,3401,226,4778,0,0,NULL,'','TREATDISC_TI','','','<P>TAB. CEFTUM 500MG&nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......FOR&nbsp; &nbsp; 5&nbsp; &nbsp; DAYS</P>\r\n\r\n<P>TAB. DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ......FOR&nbsp; &nbsp; 5&nbsp; &nbsp;DAYS</P>\r\n\r\n<P>TAB. ZERODOL SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......FOR&nbsp; &nbsp;5&nbsp; &nbsp; DAYS</P>\r\n\r\n<P>FREEGO POWDER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--2TSP&nbsp; &nbsp;HS&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......FOR&nbsp; &nbsp;5&nbsp; &nbsp; DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 08:10:48','mo','2025-12-05 11:34:28'),(8406,0,0,1624,1580,5220,0,0,NULL,'','HIST','ZZZ','Remark','<p>vertigo- persist</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 10:51:47','darshan','2025-12-05 10:53:42'),(8407,0,0,1624,1580,5220,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>&thinsp;</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 10:52:03','','0000-00-00 00:00:00'),(8408,0,0,3058,2980,5219,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 10:57:46','','0000-00-00 00:00:00'),(8409,0,0,3058,2980,5219,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 10:58:04','','0000-00-00 00:00:00'),(8411,0,0,3058,2980,5219,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-05 10:59:30','','0000-00-00 00:00:00'),(8412,0,0,2116,2062,5228,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:03:15','','0000-00-00 00:00:00'),(8413,0,0,3655,3555,5221,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR TINNITUS -----12-13 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:13:44','','0000-00-00 00:00:00'),(8414,0,0,3655,3555,5221,0,0,NULL,'','HIST','ZZZ','Remark','<p>left ear continuous tinnitus with&thinsp; deafness</p>\n\n<p>heaviness of head +</p>\n\n<p>Occassional giddiness +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:13:46','darshan','2025-12-05 11:15:09'),(8415,0,0,3655,3555,5221,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS---FWE MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:13:57','','0000-00-00 00:00:00'),(8416,0,0,3655,3555,5221,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dx hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta----wnl</p>\n\n<p>Oae---poor corelation</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:15:29','darshan','2025-12-05 12:47:35'),(8417,0,0,3656,3556,5222,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:22:09','','0000-00-00 00:00:00'),(8418,0,0,3657,3557,5225,0,0,NULL,'','CC','ZZZ','Remark','C/O GIDDIENSS  | 15 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-05 11:26:55','','0000-00-00 00:00:00'),(8419,0,0,3668,3568,5238,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-05 11:26:57','','0000-00-00 00:00:00'),(8420,0,0,3401,226,4778,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>INTRAPERITONEAL DRAIN IN SITU( DAY-4)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 11:27:16','mo','2025-12-05 11:34:28'),(8421,0,0,3401,226,4778,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP ON MONDAY&nbsp;</P>\r\n\r\n<P>DRAIN CARE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 11:27:16','mo','2025-12-05 11:34:28'),(8422,0,0,3657,3557,5225,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALLY NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-05 11:28:04','','0000-00-00 00:00:00'),(8423,0,0,3658,3558,5226,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:31:00','','0000-00-00 00:00:00'),(8424,0,0,3658,3558,5226,0,0,NULL,'','CC','ZZZ','Remark','MILD SENES OF IMBALANCE ---FEW DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:31:17','','0000-00-00 00:00:00'),(8425,0,0,3658,3558,5226,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE +||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:31:17','','0000-00-00 00:00:00'),(8426,0,0,3658,3558,5226,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo with&thinsp; giddiness with sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsmo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:31:50','','0000-00-00 00:00:00'),(8427,0,0,3658,3558,5226,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absnt</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---central variety of nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:31:59','darshan','2025-12-05 13:03:37'),(8430,0,0,3501,236,4968,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 11:33:14','mo','2025-12-05 11:56:14'),(8431,0,0,3501,236,4968,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 11:33:14','mo','2025-12-05 11:56:14'),(8432,0,0,3501,236,4968,0,0,NULL,'','TREATDISC_TI','','','<P>INJ TAZOWAR(4.5GM/100ML NS)&nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp;7AM--3PM--10PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........FOR 3 DAYS&nbsp;</P>\r\n\r\n<P>TAB LOXOF(500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........FOR 3&nbsp;DAYS&nbsp;</P>\r\n\r\n<P>TAB NEXPROFAST(40MG)&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......FOR 3&nbsp;DAYS</P>\r\n\r\n<P>TAB DERIPHYLLIN R (300MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......FOR 3&nbsp;DAYS</P>\r\n\r\n<P>TAB LANOL ER (650MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IF FEVER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(5)</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 11:33:14','mo','2025-12-05 11:56:14'),(8433,0,0,3660,3560,5229,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rtaotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:35:02','darshan','2025-12-05 11:37:09'),(8434,0,0,3660,3560,5229,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----1-2 WEEKS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:36:20','','0000-00-00 00:00:00'),(8435,0,0,3660,3560,5229,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilateral high freq severe sn deafness</p>\n\n<p>stabilomtyr---wnl</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:37:25','darshan','2025-12-05 13:13:49'),(8437,0,0,3659,3559,5227,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--medicine skipped recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:39:34','','0000-00-00 00:00:00'),(8438,0,0,3666,3566,5236,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:45:08','','0000-00-00 00:00:00'),(8439,0,0,3662,3562,5232,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:51:53','','0000-00-00 00:00:00'),(8440,0,0,3662,3562,5232,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling with sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:52:32','','0000-00-00 00:00:00'),(8441,0,0,3662,3562,5232,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---right acute parital vestibular deficit</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:52:49','darshan','2025-12-05 13:29:45'),(8442,0,0,3662,3562,5232,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE PARTIAL VESTIBULAR DEFICIT','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:53:00','','0000-00-00 00:00:00'),(8443,0,0,1619,1575,5240,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 11:55:38','','0000-00-00 00:00:00'),(8444,0,0,3673,3574,5246,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT WRIST PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-05 12:01:04','','0000-00-00 00:00:00'),(8445,0,0,3674,3575,5247,0,0,NULL,'','DIAG','ZZZ','Remark','PAIN AT COCCYX','','',0,'0000-00-00 00:00:00','drsagar','2025-12-05 12:01:27','','0000-00-00 00:00:00'),(8446,0,0,3665,3565,5235,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo---sudden onset of rotatory feeling any time and remains for few mins&thinsp;</p>\n\n<p>]heaviness of head +</p>\n\n<p>right ear deafness and tinnitus +-</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:02:52','darshan','2025-12-05 12:07:42'),(8447,0,0,3665,3565,5235,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:05:00','','0000-00-00 00:00:00'),(8448,0,0,3665,3565,5235,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----right low freq moderate sn deafness</p>\n\n<p>stabilometry---reduced vestibualr scrore</p>\n\n<p>vng---right labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:06:16','darshan','2025-12-05 13:41:39'),(8450,0,0,3665,3565,5235,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR DEAFNESS AND TINNITUS ---6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:07:53','','0000-00-00 00:00:00'),(8452,0,0,177,164,5249,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:11:09','','0000-00-00 00:00:00'),(8453,0,0,177,164,5249,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus----absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>HIt--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:11:29','','0000-00-00 00:00:00'),(8455,0,0,177,164,5249,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:14:32','','0000-00-00 00:00:00'),(8456,0,0,3669,3569,5239,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:20:49','','0000-00-00 00:00:00'),(8457,0,0,3669,3569,5239,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:22:07','','0000-00-00 00:00:00'),(8458,0,0,3669,3569,5239,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtyr--reduced vestibular score</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:22:20','darshan','2025-12-05 13:52:39'),(8460,0,0,3065,2987,5251,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:32:24','','0000-00-00 00:00:00'),(8461,0,0,3065,2987,5251,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:32:49','','0000-00-00 00:00:00'),(8463,0,0,3065,2987,5251,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:33:46','','0000-00-00 00:00:00'),(8464,0,0,1551,1510,5250,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:35:36','','0000-00-00 00:00:00'),(8465,0,0,3671,3572,5244,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ---recurence of vertigo&thinsp;</p>\n\n<p>left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:39:13','','0000-00-00 00:00:00'),(8466,0,0,3671,3572,5244,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:40:37','','0000-00-00 00:00:00'),(8469,0,0,3671,3572,5244,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:40:58','','0000-00-00 00:00:00'),(8470,0,0,3677,3578,5253,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:42:49','darshan','2025-12-05 12:43:00'),(8471,0,0,3677,3578,5253,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN-----2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:42:56','','0000-00-00 00:00:00'),(8472,0,0,3677,3578,5253,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Left ear AOM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:43:07','','0000-00-00 00:00:00'),(8473,0,0,3444,233,4863,0,0,NULL,'','ADVICE','','','<P>- FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>- TAKE PLENTY OF LIQUID ORALLY</P>\r\n\r\n<P>- TILT TABLE TEST</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 12:47:49','mo','2025-12-05 13:02:43'),(8474,0,0,3444,233,4863,0,0,NULL,'','TREATDISC_TI','','','<P>TAB MIDODRIN (2.5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......FOR 5 DAYS</P>\r\n\r\n<P>TAB OMNACORTIL(20MG)&nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......FOR 5 DAYS</P>\r\n\r\n<P>TAB NEXPROFAST&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; ......FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 12:57:37','mo','2025-12-05 13:02:43'),(8475,0,0,3679,3580,5256,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR TINNITUS ---6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:58:48','','0000-00-00 00:00:00'),(8476,0,0,3679,3580,5256,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo-for short duration</p>\n\n<p>heavinessof head&thinsp;</p>\n\n<p>continuous tinnitus in right ear&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:58:49','darshan','2025-12-05 12:59:27'),(8477,0,0,3679,3580,5256,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS OCCASSIONALLY||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:58:58','','0000-00-00 00:00:00'),(8478,0,0,3679,3580,5256,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--right moderate sn deafness</p>\n\n<p>vng---bialteral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 12:59:48','darshan','2025-12-05 14:03:40'),(8480,0,0,3444,233,4863,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 13:01:04','mo','2025-12-05 13:02:43'),(8481,0,0,3682,3583,5259,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 13:08:31','','0000-00-00 00:00:00'),(8482,0,0,3660,3560,5229,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 13:15:09','','0000-00-00 00:00:00'),(8484,0,0,3683,3584,5260,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 13:24:15','','0000-00-00 00:00:00'),(8485,0,0,3683,3584,5260,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling any time and remains for few min</p>\n\n<p>&thinsp;heavines of head +</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 13:24:52','','0000-00-00 00:00:00'),(8486,0,0,3683,3584,5260,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain 8th nerve protocol---wnl</p>\n\n<p>VNG---right labyrinthine pathology(o)</p>\n\n<p>pta---wnl</p>\n\n<p>stabilemtry--reduced vestibular score</p>\n\n<p>CCG---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 13:25:05','darshan','2025-12-05 14:13:22'),(8488,0,0,3404,228,4781,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 13:26:56','mo','2025-12-05 13:35:11'),(8489,0,0,3404,228,4781,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE(500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........FOR 5 DAYS(10)</P>\r\n\r\n<P>TAB MERTIFUR(100MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........FOR 10 DAYS(30)</P>\r\n\r\n<P>CAP ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; .......FOR 7 DAYS (14)</P>\r\n\r\n<P>CAP ROSULESS A(75/10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........FOR 10 DAYS(10)</P>\r\n\r\n<P>TAB TORESIS (20MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......FOR 10 DAYS (10)</P>\r\n\r\n<P>TAB SOBIOSIS (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........FOR 10 DAYS (30)&nbsp;&nbsp;</P>\r\n\r\n<P>TAB FEBUSTAT (40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......FOR 10 DAYS(10)</P>\r\n\r\n<P>TAB BISOBIS(2.5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......FOR 10 DAYS (10)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 13:26:56','mo','2025-12-05 13:35:11'),(8492,0,0,3669,3569,5239,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 13:52:42','','0000-00-00 00:00:00'),(8493,0,0,3669,3569,5239,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 13:53:26','','0000-00-00 00:00:00'),(8496,0,0,3660,3560,5229,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-05 13:55:07','','0000-00-00 00:00:00'),(8497,0,0,3679,3580,5256,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 14:04:04','','0000-00-00 00:00:00'),(8500,0,0,3665,3565,5235,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN 8TH NERVE PROTOCO \nGF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-05 14:05:56','','0000-00-00 00:00:00'),(8502,0,0,3669,3569,5239,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-05 14:09:14','','0000-00-00 00:00:00'),(8503,0,0,3687,3588,5266,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 14:11:13','','0000-00-00 00:00:00'),(8504,0,0,3687,3588,5266,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR  BLEEDING AFTER TRAUMA---BEFORE 1 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 14:11:43','','0000-00-00 00:00:00'),(8505,0,0,3687,3588,5266,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left EAC---abrasion</p>\n\n<p>Lt TM---i/n</p>\n\n<p>CT brain ---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 14:12:00','darshan','2025-12-05 17:58:03'),(8507,0,0,3683,3584,5260,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 14:14:09','','0000-00-00 00:00:00'),(8510,0,0,3679,3580,5256,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-05 14:15:06','','0000-00-00 00:00:00'),(8512,0,0,3683,3584,5260,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-05 14:25:58','','0000-00-00 00:00:00'),(8513,0,0,3627,248,5223,0,0,NULL,'','DISCDIAG','','','<P><STRONG>UMBILICAL SEPSIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 15:18:40','mo','2025-12-05 20:00:17'),(8514,0,0,3627,248,5223,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-05 15:18:40','mo','2025-12-05 20:00:17'),(8515,0,0,3627,248,5223,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 27 YEARS OLD FEMALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nC/O: SWELLING IN UMBILICAL REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PAIN AT THAT SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO PUS DISCHARGE FROM SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO FEVER</P>\r\n\r\n<P>ALL ABOVE MENTIONED C/O PRESENTED SINCE 15 DAYS SO&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN &AMP; PELVIS (14/11/2025)</P>\r\n\r\n<P>CT ABDOMEN &AMP; PELVIS (21/11/2025)</P>\r\n\r\n<P>USG UMBILICAL REGION (04/12/2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE, PR-120/MIN, BP-118/70MMHG, SPO2-97% ON RA, RR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+,CVS-S1S2+,CNS-CONSCIOUS AND ORIENTED F/V/C, P/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>INCISION &AMP; DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 05/12/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 15:18:40','mo','2025-12-05 20:00:17'),(8516,0,0,3627,248,5223,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>INCISION &AMP; DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 05/12/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 15:52:45','mo','2025-12-05 20:00:17'),(8517,0,0,3627,248,5223,0,0,NULL,'','OTNOTE','','','<p>-incision kept on just below of the umbilicus</p>\r\n\r\n<p>-sepsis in sub cutaneous tissue</p>\r\n\r\n<p>-infected area excision done</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-sub cutaneous tissue closed with prolene (2-0)</p>\r\n\r\n<p>-skin closed with ethilon (3-0)</p>\r\n\r\n<p>-dressing kept</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 15:52:45','mo','2025-12-05 20:00:17'),(8518,0,0,3627,248,5223,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 15:57:28','mo','2025-12-05 20:00:17'),(8519,0,0,3627,248,5223,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3&nbsp;DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 15:57:28','mo','2025-12-05 20:00:17'),(8520,0,0,3627,248,5223,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 15:57:28','mo','2025-12-05 20:00:17'),(8521,0,0,3627,248,5223,0,0,NULL,'','TREATDISC_TI','','','<P>CAP AUGMENTIN (625 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 15:57:28','mo','2025-12-05 20:00:17'),(8522,0,0,3598,242,5113,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE ENTERO HAEMORRHAGIC GASTRITIS</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN SINCE 2 YEAR</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 16:06:35','mo','2025-12-09 10:09:08'),(8523,0,0,3598,242,5113,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 47 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN SINCE 2 YEAR<BR />\r\nH/O:&nbsp;&nbsp;OUTSIDE FOOD TAKEN BEFORE 2 DAYS<BR />\r\nC/O: SEVERE WATERY DIARRHOEA (10-12 EPISODE/DAY) SINCE YESTERDAY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA, VOMITING (1 TIME)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER WITH CHILL BEFORE 2 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ANOREXIA</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS PATIENT PRIMARY CONSULTED TO ER DEPARTMENT AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-87/MIN<BR />\r\nBP-120/70MMHG<BR />\r\nSPO2-96% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\nTYPHI DOT TEST DONE ON 04/12/2025 WHICH S/O IGM: WEAK POSITIVE</P>\r\n\r\n<P>STOOL R/M DONE ON 04/12/2025 WHICH S/O; OCCULT BLOOD (++++), RBC: 4-6</P>\r\n\r\n<P>WIDAL TEST TUBE SENT WHICH S/O NORMAL<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 16:06:35','mo','2025-12-09 10:09:08'),(8524,0,0,2135,2081,5267,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 17:06:18','','0000-00-00 00:00:00'),(8525,0,0,2387,2331,5270,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 17:06:54','','0000-00-00 00:00:00'),(8526,0,0,2543,2485,5271,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 17:08:10','','0000-00-00 00:00:00'),(8527,0,0,2138,2084,5272,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 17:09:01','','0000-00-00 00:00:00'),(8528,0,0,3688,3589,5268,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotoatyra feeling on change of posture&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 17:12:39','darshan','2025-12-05 17:14:47'),(8529,0,0,3688,3589,5268,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-3-4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 17:14:21','','0000-00-00 00:00:00'),(8530,0,0,3688,3589,5268,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit-nad</p>\n\n<p>stabilometry---reduced vestibular score and ss score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 17:15:03','darshan','2025-12-05 19:05:06'),(8532,0,0,1169,1129,5273,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---Ltm---small posterior perforation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 17:22:11','','0000-00-00 00:00:00'),(8533,0,0,365,349,5269,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better for headahce</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 17:33:42','','0000-00-00 00:00:00'),(8534,0,0,365,349,5269,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgsu---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit-nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 17:33:54','','0000-00-00 00:00:00'),(8535,0,0,3689,3591,5275,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 17:38:55','','0000-00-00 00:00:00'),(8536,0,0,3689,3591,5275,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR PAIN---15 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 17:39:02','','0000-00-00 00:00:00'),(8537,0,0,3689,3591,5275,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Both side Neuralgic pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 17:39:25','','0000-00-00 00:00:00'),(8538,0,0,3364,3275,5279,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n\n<p>Ltm---mild congested</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 17:47:03','','0000-00-00 00:00:00'),(8539,0,0,3520,3423,5281,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--left ear wax removed&thinsp;</p>\n\n<p>Ltm---i/m</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 17:52:41','','0000-00-00 00:00:00'),(8540,0,0,1598,1555,5283,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 17:54:54','','0000-00-00 00:00:00'),(8541,0,0,552,526,5288,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:00:45','','0000-00-00 00:00:00'),(8542,0,0,3207,3121,5276,0,0,NULL,'','HIST','ZZZ','Remark','<p>FOLLOW UP CASE----right ear wax removed&thinsp;</p>\n\n<p>cogested EAC</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:09:22','','0000-00-00 00:00:00'),(8543,0,0,3207,3121,5276,0,0,NULL,'','MADVICE','ZZZ','Remark','CONTROL OF DM','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:10:36','','0000-00-00 00:00:00'),(8544,0,0,3690,3592,5284,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:14:18','','0000-00-00 00:00:00'),(8545,0,0,3690,3592,5284,0,0,NULL,'','CC','ZZZ','Remark','RIGHT NASAL BLOCKAGE----3-4  DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:14:36','','0000-00-00 00:00:00'),(8546,0,0,3690,3592,5284,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>right nasal congestion</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:14:46','','0000-00-00 00:00:00'),(8548,0,0,3690,3592,5284,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS CT PNS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:15:30','','0000-00-00 00:00:00'),(8549,0,0,2958,2882,5294,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:17:41','','0000-00-00 00:00:00'),(8551,0,0,2958,2882,5294,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:20:32','','0000-00-00 00:00:00'),(8552,0,0,3699,3600,5305,0,0,NULL,'','CC','ZZZ','Remark','RIGHT NASAL FB --BEFORE 30-40 MINS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:26:27','','0000-00-00 00:00:00'),(8553,0,0,3699,3600,5305,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>irhgt nose thermocol ball removed --uneventfully&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:26:46','','0000-00-00 00:00:00'),(8554,0,0,2592,2535,5285,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----left ear heaviness of ear&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:31:46','','0000-00-00 00:00:00'),(8555,0,0,3692,3594,5287,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:36:16','','0000-00-00 00:00:00'),(8556,0,0,3692,3594,5287,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nsytmgsu---absent</p>\n\n<p>dx hallpike---nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:36:31','','0000-00-00 00:00:00'),(8558,0,0,3692,3594,5287,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:37:15','','0000-00-00 00:00:00'),(8559,0,0,3691,3593,5286,0,0,NULL,'','DIAG','ZZZ','Remark','OPERATED CASE OF RT BREAST  ABSCESS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-05 18:41:11','','0000-00-00 00:00:00'),(8560,0,0,188,175,5313,0,0,NULL,'','CC','ZZZ','Remark','URTI||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-05 18:41:43','','0000-00-00 00:00:00'),(8561,0,0,3273,3187,4563,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:43:21','','0000-00-00 00:00:00'),(8564,0,0,3273,3187,4563,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:43:52','','0000-00-00 00:00:00'),(8565,0,0,3067,2989,5304,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:48:16','','0000-00-00 00:00:00'),(8566,0,0,3067,2989,5304,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:48:42','','0000-00-00 00:00:00'),(8568,0,0,3067,2989,5304,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGTH SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:50:15','','0000-00-00 00:00:00'),(8569,0,0,3667,3567,5237,0,0,NULL,'','DIAG','ZZZ','Remark','ABDOMINAL PAIN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-05 18:52:19','','0000-00-00 00:00:00'),(8571,0,0,3667,3567,5237,0,0,NULL,'','DIAG','ZZZ','Remark','OBESITY','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-05 18:52:36','','0000-00-00 00:00:00'),(8572,0,0,3694,3596,5295,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--sense of imbalance withj occassional fall down&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:54:56','darshan','2025-12-05 19:34:57'),(8573,0,0,3694,3596,5295,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit---nad</p>\n\n<p>stabilometry---reduced vestibualr score</p>\n\n<p>vng--bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:55:11','darshan','2025-12-05 19:35:27'),(8574,0,0,3694,3596,5295,0,0,NULL,'','DIAG','ZZZ','Remark','BILATERAL VESTIBULAR FAILURE','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 18:55:24','','0000-00-00 00:00:00'),(8576,0,0,3701,3601,5308,0,0,NULL,'','DIAG','ZZZ','Remark','DM','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-05 19:03:37','','0000-00-00 00:00:00'),(8577,0,0,3701,3601,5308,0,0,NULL,'','DIAG','ZZZ','Remark','HTN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-05 19:03:39','','0000-00-00 00:00:00'),(8578,0,0,3701,3601,5308,0,0,NULL,'','DIAG','ZZZ','Remark','UMBILICAL HERNIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-05 19:04:03','','0000-00-00 00:00:00'),(8579,0,0,3688,3589,5268,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 19:05:50','','0000-00-00 00:00:00'),(8581,0,0,3704,3604,5311,0,0,NULL,'','DIAG','ZZZ','Remark','THYROID SWELLING','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-05 19:08:29','','0000-00-00 00:00:00'),(8582,0,0,3704,3604,5311,0,0,NULL,'','DIAG','ZZZ','Remark','RT PAROTID CYST','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-05 19:08:39','','0000-00-00 00:00:00'),(8583,0,0,1582,1539,5306,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 19:09:06','','0000-00-00 00:00:00'),(8585,0,0,3688,3589,5268,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-05 19:11:29','','0000-00-00 00:00:00'),(8586,0,0,3712,3611,5325,0,0,NULL,'','CC','ZZZ','Remark','DOE INTERMITTENTLY | 115 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-05 19:16:08','','0000-00-00 00:00:00'),(8587,0,0,3697,3599,5300,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1  WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 19:21:27','','0000-00-00 00:00:00'),(8588,0,0,3697,3599,5300,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset oshort duration positional giddiness with heaviness of head and headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 19:21:50','','0000-00-00 00:00:00'),(8589,0,0,3697,3599,5300,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 19:22:18','','0000-00-00 00:00:00'),(8592,0,0,3712,3611,5325,0,0,NULL,'','HIST','ZZZ','Remark','<p>COPD ON INTERMITTENT MDI</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-05 19:23:36','drjayant','2025-12-05 19:36:38'),(8593,0,0,3697,3599,5300,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-05 19:23:43','','0000-00-00 00:00:00'),(8594,0,0,3708,3607,5318,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----recurence of vertigo and headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 19:27:00','','0000-00-00 00:00:00'),(8595,0,0,3598,242,5113,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 19:39:54','mo','2025-12-09 10:09:08'),(8596,0,0,3598,242,5113,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>TAKE HEALTHY DIET</P>\r\n\r\n<P>HOLD OWN ANTIHYPER TENSIVE MEDICINE TILL FOLLOW UP</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 19:39:54','mo','2025-12-09 10:09:08'),(8597,0,0,3598,242,5113,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>CAP ENUFF</P>\r\n\r\n<P>CAP VSL #3</P>\r\n\r\n<P>TAB LOPAMIDE</P>\r\n\r\n<P>CAP DOXY</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 19:39:54','mo','2025-12-09 10:09:08'),(8598,0,0,3714,3614,5329,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 19:41:55','','0000-00-00 00:00:00'),(8599,0,0,3714,3614,5329,0,0,NULL,'','CC','ZZZ','Remark','RIGHT SIDE NECK SWELLING --3-4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 19:42:17','','0000-00-00 00:00:00'),(8600,0,0,3714,3614,5329,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>right cervical lymphdenitis</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 19:42:28','','0000-00-00 00:00:00'),(8601,0,0,3621,244,5148,0,0,NULL,'','DISCDIAG','','','<P><STRONG>CSF RHINORRHEA</STRONG></P>\r\n\r\n<P><STRONG>H/O: ENDOSCOPIC LEFT MAXILLO SPHENOETHMOIDECTOMY DONE ON 03/12/2025</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 19:43:57','mo','2025-12-06 12:28:19'),(8602,0,0,3621,244,5148,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-05 19:43:57','mo','2025-12-06 12:28:19'),(8603,0,0,3621,244,5148,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 43 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nH/O: ENDOSCOPIC LEFT MAXILLO SPHENOETHMOIDECTOMY DONE ON 03/12/2025 IN SINUS HOSPITAL<BR />\r\nC/O: NO FEVER</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NO NASAL DISCHARGE&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERAL WEAKNESS SINCE 2 DAYS SO FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-70/MIN<BR />\r\nBP-124/86MMHG<BR />\r\nSPO2-95% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>REVIEW OF DR DARSHAN BHATT(ENT SURGEON) DONE AND FOLLOW HIS ALL ADVICE.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 19:43:57','mo','2025-12-06 12:28:19'),(8604,0,0,3621,244,5148,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX S&nbsp;</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>TAB DIAMOX</P>\r\n\r\n<P>TAB SINAREST</P>\r\n\r\n<P>SYP RESWAS</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 19:43:57','mo','2025-12-06 12:28:19'),(8605,0,0,3621,244,5148,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO NASAL DISCHARGE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 19:44:44','mo','2025-12-06 12:28:19'),(8606,0,0,3621,244,5148,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 19:44:44','mo','2025-12-06 12:28:19'),(8607,0,0,3716,3616,5331,0,0,NULL,'','HIST','ZZZ','Remark','<p>right ear injury</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 19:53:12','','0000-00-00 00:00:00'),(8608,0,0,3716,3616,5331,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>BTM---i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 19:53:18','','0000-00-00 00:00:00'),(8610,0,0,3716,3616,5331,0,0,NULL,'','MADVICE','ZZZ','Remark','REST AS PER PEADIATRICIAN TREATMENT ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-05 19:54:26','','0000-00-00 00:00:00'),(8611,0,0,3717,3617,5332,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR PAIN---2 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 19:56:37','','0000-00-00 00:00:00'),(8612,0,0,3717,3617,5332,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right otitis externa</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-05 19:56:51','','0000-00-00 00:00:00'),(8613,0,0,3636,247,5175,0,0,NULL,'','DISCDIAG','','','<P><STRONG>CVA&nbsp; + LEFT ICA CHRONIC OCCLUSION&nbsp; + LEFT SIDE MCA STROKE&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>RIGHT SIDE HEMIPARESIS + APHASIA - IMPROVING&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>HYPERHOMOCYSTENEMIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O DM;HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 22:02:54','mo','2025-12-09 10:43:35'),(8614,0,0,3636,247,5175,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-05 22:02:54','mo','2025-12-09 10:43:35'),(8615,0,0,3636,247,5175,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 71 YEARS OLD MALE PATIENT P/W K/C/O DM;HTN</P>\r\n\r\n<P>WITH C/O SUDDEN ONSET OF RIGHT SIDED WEAKNESS;APHASIA SINCE TODAY 7 AM.</P>\r\n\r\n<P>SO,PRIMARY TREATMENT TAKEN AT DR.ROSHAN MISTRY.AT THERE MRI BRAIN WITH ANGIO DONE.S/O MEDIUM SIZED AREA OF ACUTE INFARCT IN LEFT GANGLIO CAPSULAR REGION AS WELL AS A IN LEFT HIGH FRONTO PARIETAL CORETX SUBCORTICAL WHITE MATTER NO EVIDENCE OF ANY BLOOMING HAEMORRHAGIC TRANSFORMATION AND MASS EFFECT.ANGIO-COMPLETE OCCLUSION SEEN IN LEFT ICA THROUGH ITS LENGTH IN ITRACRANIAL REGION INVOLVING PETROCAVERNOUS AND SUPRACLENOID AND TERMINAL ICA,LEFT MCA SHOWS COMPLETE ABSCENCE OF FLOW VOID/COMPLETE OCCLUSION.</P>\r\n\r\n<P>THEN PATIENT SHIFTED TO STERLING HOSPITAL,RAJKOT FOR DSA.</P>\r\n\r\n<P>DSA DONE BY DR.GAURANG VAGHANI/DR.MAYANK VEKARIYA UNDER LA TODAY.</P>\r\n\r\n<P>NOW PATIENT CAME HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>FOLEY&#39;S CATHETER (NO14;D1) AND RYLE&#39;S TUBE (NO16;D1) IN SITU.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-98 F</P>\r\n\r\n<P>PR-70/MIN</P>\r\n\r\n<P>BP-156/88MMHG</P>\r\n\r\n<P>SPO2-96% ON RA</P>\r\n\r\n<P>RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS,SIMPLE F/V/C,RIGHT SIDED WEAKNESS +,SLURRED SPEECH +</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-94 MG/DL</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL HISTORY AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04-12-25,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>GCS OBSERVED.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05-12-25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>SLURRED SPEECH-IMPROVED.</P>\r\n\r\n<P>RT FEEDING STARTED.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>06/12/25</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>PATIENT GENERAL CONDITION IMPROVE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>7/12/2025</P>\r\n\r\n<P>CATHETER CLAMP AND REMOVE</P>\r\n\r\n<P>ORALLY LIQUID DIET START PATIENT TOLERATE WELL&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>08/12/2025</P>\r\n\r\n<P>IN VIEW OF INCONTINENCE OF URINE FOLEY&#39;S CATHETER REINSERTION DONE</P>\r\n\r\n<P>ANTIBIOTIC TAPPER DOWN</P>\r\n\r\n<P>ORALLY LIQUID DIET START PATIENT TOLERATE WELL&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>9/12/2025</P>\r\n\r\n<P>ORAL DIET START SO RYLES TUBE REMOVE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 22:02:54','mo','2025-12-09 10:43:35'),(8616,0,0,3636,247,5175,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ MANNITOL</P>\r\n\r\n<P>TAB ECOSPRIN</P>\r\n\r\n<P>TAB ALLSTAT</P>\r\n\r\n<P>TAB CLAVIX</P>\r\n\r\n<P>TAB BRIQ</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ MVI</P>\r\n\r\n<P>NEB DUOLIN/BUDECORT</P>\r\n\r\n<P>TAB RPRESS D</P>\r\n\r\n<P>TAB ZIFI CV</P>\r\n\r\n<P>TAB VITALIZER</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-05 22:02:54','mo','2025-12-09 10:43:35'),(8617,0,0,3698,249,5301,0,0,NULL,'','DISCDIAG','','','<P><STRONG>FLUID OVERLOAD</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, IHD, SEVER LVD, DCMP, OLD CVA, BPH SINCE LONG TIME&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 01:15:58','mo','2025-12-06 13:53:33'),(8618,0,0,3698,249,5301,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-06 01:15:58','mo','2025-12-06 13:53:33'),(8619,0,0,3698,249,5301,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 79 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, IHD, SEVER LVD, DCMP, OLD CVA, BPH SINCE LONG TIME&nbsp;<BR />\r\nC/O:UNEASINESS&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GABHARAMAN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ORTHOPNEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ABDOMINAL BREATHING SINCE EVENING</P>\r\n\r\n<P>SO FOR ABOVE MENTIONED COMPLAINTS NOW, PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-100/MIN<BR />\r\nBP-122/76MMHG<BR />\r\nSPO2-97% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 01:15:58','mo','2025-12-06 13:53:33'),(8620,0,0,3698,249,5301,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. RABICROSS</P>\r\n\r\n<P>INJ. QUICKSET</P>\r\n\r\n<P>INJ. DYTOR</P>\r\n\r\n<P>CAP ECOTOR GOLD</P>\r\n\r\n<P>TAB BISOBIS</P>\r\n\r\n<P>TAB SODACON</P>\r\n\r\n<P>TAB TAMWELL</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 01:17:10','mo','2025-12-06 13:53:33'),(8621,0,0,3598,242,5113,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-06 01:20:52','mo','2025-12-09 10:09:08'),(8622,0,0,3583,241,5089,0,0,NULL,'','DISCDIAG','','','<P><STRONG>HAEMORRHAGIC ENTEROCOLITIS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, HYPOTHYRADISIM, S/P BARIATRIC SX.(DRUG DEFAULTER)&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 01:39:42','mo','2025-12-08 12:12:17'),(8623,0,0,854,823,5340,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 10:58:19','','0000-00-00 00:00:00'),(8625,0,0,854,823,5340,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS PSYCHIATRIST OPINION ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:01:29','','0000-00-00 00:00:00'),(8626,0,0,2044,1993,5350,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:05:43','','0000-00-00 00:00:00'),(8627,0,0,3177,3091,5348,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case=--medicine irregular&thinsp;</p>\n\n<p>anxiety +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:11:38','darshan','2025-12-06 11:13:40'),(8628,0,0,3177,3091,5348,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:12:22','','0000-00-00 00:00:00'),(8632,0,0,3177,3091,5348,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:13:54','','0000-00-00 00:00:00'),(8633,0,0,2041,1990,5356,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---no improvment</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:16:30','','0000-00-00 00:00:00'),(8634,0,0,3727,3624,5354,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:24:12','','0000-00-00 00:00:00'),(8635,0,0,3727,3624,5354,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo--sudden onset of rotoatyr feeling remains for few mins to hrs</p>\n\n<p>&thinsp;heaviness of head +</p>\n\n<p>no asociated other cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:24:15','darshan','2025-12-06 11:24:50'),(8636,0,0,3727,3624,5354,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:24:28','','0000-00-00 00:00:00'),(8637,0,0,3727,3624,5354,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dx hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:25:02','darshan','2025-12-06 13:07:54'),(8638,0,0,3727,3624,5354,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:25:03','','0000-00-00 00:00:00'),(8639,0,0,3722,3619,5342,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:32:18','','0000-00-00 00:00:00'),(8640,0,0,3722,3619,5342,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:32:42','darshan','2025-12-06 13:28:07'),(8641,0,0,3722,3619,5342,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit-nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:32:57','darshan','2025-12-06 13:28:49'),(8644,0,0,1834,1789,5344,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:35:40','','0000-00-00 00:00:00'),(8645,0,0,476,450,5346,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:40:05','','0000-00-00 00:00:00'),(8647,0,0,3735,3632,5374,0,0,NULL,'','DIAG','ZZZ','Remark','LT MIDDLE FINGER WART','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-06 11:50:28','','0000-00-00 00:00:00'),(8648,0,0,574,548,5362,0,0,NULL,'','MADVICE','ZZZ','Remark','PSYCHIATRIST REFFENCE FOR ANXIETY DISORDER','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-06 11:51:38','','0000-00-00 00:00:00'),(8649,0,0,3733,3630,5363,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO------10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:53:37','','0000-00-00 00:00:00'),(8650,0,0,3733,3630,5363,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaowtyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associatd other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:54:06','','0000-00-00 00:00:00'),(8651,0,0,3733,3630,5363,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>MRI brain--nad</p>\n\n<p>pta-----wnl</p>\n\n<p>vng--right hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:54:26','darshan','2025-12-06 13:59:55'),(8653,0,0,3728,3625,5355,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 11:56:39','','0000-00-00 00:00:00'),(8654,0,0,1222,1183,5365,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:00:24','darshan','2025-12-06 12:00:36'),(8655,0,0,3524,3427,5370,0,0,NULL,'','CC','ZZZ','Remark','URTI||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-06 12:00:33','','0000-00-00 00:00:00'),(8656,0,0,3725,3622,5349,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:06:05','','0000-00-00 00:00:00'),(8657,0,0,3726,3623,5352,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:08:32','darshan','2025-12-06 12:18:42'),(8658,0,0,3252,3166,5353,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:19:44','','0000-00-00 00:00:00'),(8659,0,0,3252,3166,5353,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:19:49','','0000-00-00 00:00:00'),(8660,0,0,3252,3166,5353,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:20:39','','0000-00-00 00:00:00'),(8662,0,0,3252,3166,5353,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT BD MAENVEUR --(ALREADY DISCUSSED WITH SPINE SURGEON )','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:21:30','','0000-00-00 00:00:00'),(8663,0,0,3730,3627,5358,0,0,NULL,'','HIST','ZZZ','Remark','<p>do not want to consult</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:22:30','','0000-00-00 00:00:00'),(8664,0,0,2047,1996,5360,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better&thinsp;</p>\n\n<p>occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:24:20','','0000-00-00 00:00:00'),(8665,0,0,3621,244,5148,0,0,NULL,'','TREATDISC_TI','','','<P>INJ UNITREX-S (1.5 GM/DIL)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 8AM--2PM--10PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 3 DAYS (8 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DIAMOX (250 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB SINAREST&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1/2--0--1/2&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP RESWAS (5 ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 12:26:34','mo','2025-12-06 12:28:19'),(8666,0,0,3734,3631,5371,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:29:37','','0000-00-00 00:00:00'),(8667,0,0,3734,3631,5371,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:30:04','','0000-00-00 00:00:00'),(8668,0,0,3247,3161,5366,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:35:11','','0000-00-00 00:00:00'),(8669,0,0,3247,3161,5366,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:35:49','','0000-00-00 00:00:00'),(8671,0,0,3247,3161,5366,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVEUR ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:36:37','','0000-00-00 00:00:00'),(8672,0,0,3744,3641,5392,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-06 12:37:36','','0000-00-00 00:00:00'),(8673,0,0,3744,3641,5392,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-06 12:37:42','','0000-00-00 00:00:00'),(8674,0,0,3744,3641,5392,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-06 12:37:49','','0000-00-00 00:00:00'),(8675,0,0,3670,3570,5241,0,0,NULL,'','CC','ZZZ','Remark','C/O DIFFICULTY IN WALKING | 1 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-06 12:39:42','','0000-00-00 00:00:00'),(8676,0,0,3670,3570,5241,0,0,NULL,'','CC','ZZZ','Remark','C/O SLURRED SPECCH  | 1 YEARS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-06 12:39:42','','0000-00-00 00:00:00'),(8677,0,0,3670,3570,5241,0,0,NULL,'','CC','ZZZ','Remark','C/O UNSTEADINESS OF GAIT | 6 MONTHS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-06 12:39:42','','0000-00-00 00:00:00'),(8678,0,0,3670,3570,5241,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO OTHER COMPLAINT</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-06 12:39:51','','0000-00-00 00:00:00'),(8679,0,0,3670,3570,5241,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CNS -HF -N</p>\n\n<p>&thinsp; &thinsp; &thinsp; &thinsp; &thinsp; CN -SLURRING OF SPEECH</p>\n\n<p>&thinsp; &thinsp; &thinsp; &thinsp; &thinsp; POWER 5 ALL FOR LIMBS</p>\n\n<p>&thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp;CEREBELLAR SINGS + , CORDIANATION IMPAIRED</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-06 12:41:03','','0000-00-00 00:00:00'),(8680,0,0,2173,2122,5385,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:42:00','','0000-00-00 00:00:00'),(8682,0,0,2173,2122,5385,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:43:00','','0000-00-00 00:00:00'),(8683,0,0,3743,3640,5390,0,0,NULL,'','HIST','ZZZ','Remark','<p>fofllow up case----better</p>\n\n<p>single episode of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:44:06','darshan','2025-12-06 12:57:13'),(8684,0,0,3698,249,5301,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>CONSCIOUS, ORIENTED</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 12:45:47','mo','2025-12-06 13:53:33'),(8685,0,0,3698,249,5301,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>FLUID RESTRICTION &LT; 1 LITRE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 12:45:47','mo','2025-12-06 13:53:33'),(8686,0,0,3698,249,5301,0,0,NULL,'','TREATDISC_TI','','','<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 10 DAYS</P>\r\n\r\n<P>CAP ECOTOR GOLD (10 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS</P>\r\n\r\n<P>TAB BISOBIS (2.5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS</P>\r\n\r\n<P>TAB SODACON (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS</P>\r\n\r\n<P>TAB TAMWELL (0.4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS</P>\r\n\r\n<P>TAB TORKID (20 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS</P>\r\n\r\n<P>SYP PEGCLEAR (10 ML WITH WATER)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp; FOR CONSTIPATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 12:45:47','mo','2025-12-06 13:53:33'),(8688,0,0,3739,3636,5381,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:53:23','','0000-00-00 00:00:00'),(8689,0,0,3739,3636,5381,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:53:55','','0000-00-00 00:00:00'),(8690,0,0,3739,3636,5381,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:54:33','darshan','2025-12-06 14:13:35'),(8691,0,0,3739,3636,5381,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV WITH VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 12:54:36','','0000-00-00 00:00:00'),(8692,0,0,2964,2887,5377,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 13:02:39','','0000-00-00 00:00:00'),(8693,0,0,3727,3624,5354,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 13:08:36','','0000-00-00 00:00:00'),(8695,0,0,3749,3646,5398,0,0,NULL,'','CC','ZZZ','Remark','DIFFUSE CHEST PAIN INTERMITTENTLY | 15 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-06 13:10:08','','0000-00-00 00:00:00'),(8696,0,0,3749,3646,5398,0,0,NULL,'','HIST','ZZZ','Remark','<p>ON VERTIGO&thinsp;Tx</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-06 13:10:27','','0000-00-00 00:00:00'),(8697,0,0,3749,3646,5398,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>ECG- NSR/WNL</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-06 13:10:38','drjayant','2025-12-06 13:11:51'),(8698,0,0,1574,1534,5369,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 13:15:30','','0000-00-00 00:00:00'),(8699,0,0,3383,224,4751,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>CONSCIOUS AND ORIENTED</P>\r\n\r\n<P>NO ANY FRESH COMPLAINT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 13:15:50','mo','2025-12-06 13:21:05'),(8700,0,0,3383,224,4751,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 2 DAYS.</P>\r\n\r\n<P>RBS MONITORING.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 13:15:50','mo','2025-12-06 13:21:05'),(8701,0,0,3383,224,4751,0,0,NULL,'','TREATDISC_TI','','','<P>INJ. UNITREX-S (1.5 GM / DIL)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 9AM-----9PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 2 DAYS (3 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB LOXOF (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 3 DAYS&nbsp; (2 TAB)</P>\r\n\r\n<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DERIPHYLLIN RETARD (300)&nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB BISOBIS (5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB SOBIOSIS (500 )&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB TRICIUM HD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB ZOFER MD (4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR VOMITING</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>CONTINUE OWN MEDICINE:</STRONG></P>\r\n\r\n<P>TAB METRIDE PLUS (2 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0</P>\r\n\r\n<P>TAB ROSUSON (10 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 13:15:50','mo','2025-12-06 13:21:05'),(8702,0,0,2964,2887,5377,0,0,NULL,'','MADVICE','ZZZ','Remark','REFFER TO PHYSICIAN FOR CHEST PAIN','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-06 13:19:54','','0000-00-00 00:00:00'),(8703,0,0,2597,2540,5373,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---partialy beter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 13:21:27','','0000-00-00 00:00:00'),(8705,0,0,3744,3641,5392,0,0,NULL,'','MADVICE','ZZZ','Remark','SUGAR/ SALT RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-06 13:24:36','','0000-00-00 00:00:00'),(8707,0,0,3722,3619,5342,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 13:29:03','','0000-00-00 00:00:00'),(8708,0,0,3722,3619,5342,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 13:29:42','','0000-00-00 00:00:00'),(8710,0,0,3745,3642,5393,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ----MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 13:38:55','','0000-00-00 00:00:00'),(8711,0,0,3745,3642,5393,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 13:38:55','','0000-00-00 00:00:00'),(8712,0,0,3745,3642,5393,0,0,NULL,'','HIST','ZZZ','Remark','<p>frequent headache since many yrs off and on</p>\n\n<p>heaviness of head +&thinsp;</p>\n\n<p>giddiness off and on</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 13:40:05','darshan','2025-12-06 14:22:35'),(8713,0,0,3745,3642,5393,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpik--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl(o)</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vng---central variety of nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 13:40:16','darshan','2025-12-06 14:23:07'),(8715,0,0,3727,3624,5354,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-06 13:41:45','','0000-00-00 00:00:00'),(8717,0,0,3722,3619,5342,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-06 13:45:17','','0000-00-00 00:00:00'),(8718,0,0,3742,3639,5389,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---sense of imbalance&thinsp;</p>\n\n<p>with giddiness feeling</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 13:51:13','','0000-00-00 00:00:00'),(8719,0,0,3742,3639,5389,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgsu---absent</p>\n\n<p>dx halpike----nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 13:51:26','','0000-00-00 00:00:00'),(8720,0,0,3733,3630,5363,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 13:59:58','','0000-00-00 00:00:00'),(8721,0,0,3733,3630,5363,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 14:00:18','','0000-00-00 00:00:00'),(8723,0,0,1289,1248,5400,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for tinnitus&thinsp;</p>\n\n<p>itching both ear&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 14:03:25','darshan','2025-12-06 14:05:14'),(8724,0,0,3739,3636,5381,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 14:14:13','','0000-00-00 00:00:00'),(8728,0,0,3733,3630,5363,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-06 14:15:32','','0000-00-00 00:00:00'),(8729,0,0,2928,2856,5401,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---maenvuer not done properly</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 14:25:36','','0000-00-00 00:00:00'),(8733,0,0,2928,2856,5401,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-06 14:27:43','','0000-00-00 00:00:00'),(8735,0,0,3739,3636,5381,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MMAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-06 14:28:02','','0000-00-00 00:00:00'),(8736,0,0,3752,3649,5403,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 14:37:09','','0000-00-00 00:00:00'),(8737,0,0,3752,3649,5403,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halllpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 14:37:28','','0000-00-00 00:00:00'),(8739,0,0,3752,3649,5403,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-06 14:38:51','','0000-00-00 00:00:00'),(8740,0,0,3751,3648,5402,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo&thinsp;</p>\n\n<p>positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 14:41:01','','0000-00-00 00:00:00'),(8741,0,0,3751,3648,5402,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 14:41:15','','0000-00-00 00:00:00'),(8742,0,0,3751,3648,5402,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 14:41:37','','0000-00-00 00:00:00'),(8744,0,0,3751,3648,5402,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER \nSOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-06 14:42:27','','0000-00-00 00:00:00'),(8745,0,0,3753,3650,5404,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE---2 YTRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 15:11:56','','0000-00-00 00:00:00'),(8746,0,0,3753,3650,5404,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>vemp--left side reduced</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-06 15:12:38','darshan','2025-12-09 18:51:05'),(8748,0,0,3721,254,5341,0,0,NULL,'','DISCDIAG','','','<P><STRONG>FISTULA IN ANO</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 16:36:18','mo','2025-12-07 19:34:13'),(8749,0,0,3721,254,5341,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>FISTULECTOMY DONE BY DR PRATAPSINH DODIYA ON&nbsp;06/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 16:36:18','mo','2025-12-07 19:34:13'),(8750,0,0,3721,254,5341,0,0,NULL,'','OTNOTE','','','<p>-FISTULA IN ANO&nbsp;</p>\r\n\r\n<p>-EXTERNAL OPENING AT 3 0&#39;CLOCK POSITION,</p>\r\n\r\n<p>-INTERNAL OPENING AT 10 O&#39;CLOCK P0SITION,</p>\r\n\r\n<p>-FISTULECTOMY DONE,</p>\r\n\r\n<p>-2nd degree external hemorrhoid&#39;s&nbsp;</p>\r\n\r\n<p>-hemostasis achived</p>\r\n\r\n<p>-dressing kept.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 16:41:26','mo','2025-12-07 19:34:13'),(8751,0,0,3721,254,5341,0,0,NULL,'','PROVDIAG','','','<P>FISTULA IN ANO</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 16:44:21','mo','2025-12-07 19:34:13'),(8752,0,0,3721,254,5341,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 24&nbsp; YEARS OLD MALE&nbsp; PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:CRIF IN RIGHT INDEX FINGER<BR />\r\nC/O:PAIN AND BURNING IN ANAL REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BLEEDIND P/R SOME TIME</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO FEVER</P>\r\n\r\n<P>FOR ABOVE COMPLAINTS PRESENTED SINCE 1 WEEK FOR THAT PATIENT CONSULTED OPD BASED &AMP; NOW CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-92/MIN<BR />\r\nBP-128/76MMHG<BR />\r\nSPO2-98% ON RA<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C</P>\r\n\r\n<P>P/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>MRI FISTULOGRAM/PERIANAL REGION DONE ON DATE 29/11/25.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION &nbsp;DONE<BR />\r\nFISTULECTOMY DONE BY DR PRATAPSINH DODIYA ON&nbsp;06/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 16:54:30','mo','2025-12-07 19:34:13'),(8753,0,0,3721,254,5341,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD&nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>INJ METROGYL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>INJ PANTODAC&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>INJ EMSET&nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>INJ INFUPAR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>BUPHRAGESIC PATCH&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>SYP.CREMAFFIN PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 16:58:19','mo','2025-12-07 19:34:13'),(8754,0,0,3721,254,5341,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>TOLARATE DIET</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 17:09:03','mo','2025-12-07 19:34:13'),(8755,0,0,3721,254,5341,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>NAD</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 17:11:08','mo','2025-12-07 19:34:13'),(8756,0,0,3721,254,5341,0,0,NULL,'','ADVICE','','','<P>DAILY DRESSING</P>\r\n\r\n<P>HOT WATER BATH</P>\r\n\r\n<P>FOLLW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 17:16:26','mo','2025-12-07 19:34:13'),(8757,0,0,3757,3654,5412,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER BACK PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-06 18:31:47','','0000-00-00 00:00:00'),(8758,0,0,3598,242,5113,0,0,NULL,'','TREATDISC_TI','','','<P>INJ OFRAMAX (1 GM/DIL)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;9AM----9PM&nbsp; &nbsp; &nbsp; &nbsp; FOR 1 DAY (2 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB METRO ER (600 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp;&nbsp; &nbsp;FOR 3 DAYS&nbsp;</P>\r\n\r\n<P>CAP DOXY (100 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 3 DAYS (5 TAB)</P>\r\n\r\n<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZOFER MD (4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB LOPAMIDE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5&nbsp;DAYS</P>\r\n\r\n<P>CAP ENUFF (100 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5&nbsp;DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>START ON 07/12/2025:</STRONG></P>\r\n\r\n<P>TAB ZIFI (200 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-06 19:27:54','mo','2025-12-09 10:09:08'),(8759,0,0,3720,253,5338,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE BRONCHITIS</STRONG></P>\r\n\r\n<P><STRONG>IN CASE OF UNCONTROLLED DM</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 00:35:48','mo','2025-12-08 21:14:57'),(8760,0,0,3720,253,5338,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-07 00:35:48','mo','2025-12-08 21:14:57'),(8761,0,0,3720,253,5338,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 69 YEARS OLD MALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II SINCE 8-10 YEARS<BR />\r\nH/O: NAD</P>\r\n\r\n<P>C/O:BREATHLESSNESS&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GABHRAMAN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERAL WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;DIZZINESS SINCE EVENING</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-85/MIN<BR />\r\nBP-130/80MMHG<BR />\r\nSPO2-99% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\n&nbsp;</P>\r\n\r\n<P>06/12/2025</P>\r\n\r\n<P>PATIENTS SATURATION DOWN SO START O2 SUPPORT START&nbsp;</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>07/12/2025</P>\r\n\r\n<P>PATIENT CONDITION IMPROVE</P>\r\n\r\n<P>OFF O2 TRIAL GIVEN PATIENT MAINTAIN WELL SO&nbsp;O2 SUPPORT AND REMOVE&nbsp;</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT<BR />\r\n&nbsp;</P>\r\n\r\n<P>8/12/2025</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 00:35:48','mo','2025-12-08 21:14:57'),(8762,0,0,3719,252,5337,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PERIANAL ABSCESS</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM - 2 SINCE 8 YEARS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 00:40:39','mo','2025-12-08 14:14:27'),(8763,0,0,3719,252,5337,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-07 00:40:39','mo','2025-12-08 14:14:27'),(8764,0,0,3719,252,5337,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 40 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM - 2 SINCE 8 YEARS<BR />\r\nH/O: NAD<BR />\r\nC/O: PAIN AROUND ANAL REGION ( SINCE 5-6 DAYS)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FEVER ( SINCE 5 DAYS)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ANOREXIA , CONSTIPATION ( SINCE 2-3 DAYS) SO, FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-103F<BR />\r\nPR-82/MIN<BR />\r\nBP-130/100MMHG<BR />\r\nSPO2-98% ON RA<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.<BR />\r\nALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ECG DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nINCISION AND DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 06/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION<BR />\r\nPOST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>SWAB C/S S/O: KLEIBSIELLA&nbsp; PNEUMONIAE HEAVY GROWTH AND TREATMENT MODIFIED ACCORDINGLY&nbsp;&nbsp;<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 00:40:39','mo','2025-12-08 14:14:27'),(8765,0,0,3400,225,4777,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-ACUTE GASTROENTERITIS</STRONG></P>\r\n\r\n<P><STRONG>-LOWER RESPIRATORY TRACT INFECTION</STRONG></P>\r\n\r\n<P><STRONG>-ACUTE RESPIRATORY FAILURE</STRONG></P>\r\n\r\n<P><STRONG>-SEPSIS WITH SEPTIC SHOCK</STRONG></P>\r\n\r\n<P><STRONG>-ACUTE KIDNEY INJURY</STRONG></P>\r\n\r\n<P><STRONG>-K/C/O: DM; HTN; OLD CVA; ?BPH</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 14:47:07','mo','2025-12-11 13:16:59'),(8766,0,0,3400,225,4777,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-07 14:47:07','mo','2025-12-11 13:16:59'),(8767,0,0,3400,225,4777,0,0,NULL,'','HISTHOSPCOURSE','','','<P>HISTORY GIVEN BY PATIENT&#39;S RELATIVE.</P>\r\n\r\n<P>A 72 YEARS OLD MALE PATIENT P/W K/C/O DM;HTN;OLD CVA;?BPH WITH&nbsp;</P>\r\n\r\n<P>C/O INTERMITTENT FEVER SINCE 2 DAYS,LOOSE MOTION 8-10 TIMES SINCE YESTERDAY EVENING,GENERALISED WEAKNESS/LETHARGY;ALTERED SENSORIUM;RESPIRATORY DISTRESS SINCE TODAY MORNING.</P>\r\n\r\n<P>SO,PRIMARY TREATMENT TAKEN AT DR.VIPUL BODA THEN CAME HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-97.6 F</P>\r\n\r\n<P>PR-112/MIN</P>\r\n\r\n<P>BP-80/50MMHG</P>\r\n\r\n<P>SPO2-82% ON RA</P>\r\n\r\n<P>RR-32/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-B/L CREPS+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/RESTLESSNESS,SIMPLE F/V/C,MOVING ALL 4 LIMBS</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-74 MG/DL-IV DEXTROSE GIVEN.</P>\r\n\r\n<P>FOLEY&#39;S CATHETER IN SITU (NO-16,D0)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL HISTORY AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>01-12-25,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF LOW SPO2 SO,O2 SUPPORT GIVEN.</P>\r\n\r\n<P>HYPOTENSION MANAGED BY IV FLUID THERAPY.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>CHEST X-RAY DONE.</P>\r\n\r\n<P>USG ABDOMEN DONE.</P>\r\n\r\n<P>ABG DONE.</P>\r\n\r\n<P>PATIENT DEVELOPED DROWSINESS WITH UNDERGONE BRADYCARDIA SO,EMERGENCY ENDOTRACHEAL INTUBATED AND PUT ON VENTILATOR SUPPORT.SELF REVERTED.</P>\r\n\r\n<P>URINE ROUTINE MICRO SENT.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>02-12-25,</P>\r\n\r\n<P>PATIENT ON VENTI SUPPORT AND UNDER SEDATION.</P>\r\n\r\n<P>TROP-I SENT.S/O NEGATIVE.</P>\r\n\r\n<P>2D ECHO DONE.</P>\r\n\r\n<P>RT FEEDING STARTED.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>03-12-25,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE.</P>\r\n\r\n<P>IN VIEW OF FEBRILE STATUS WITH RISED WBC AND CRP SO,INFECTIOUS DISEASE PHYSICIAN DR.KRUTARTH KANJIYA REFERENCE DONE.FOLLOWED ALL HIS ADVICE.</P>\r\n\r\n<P>IN VIEW OF AKI NEPHAROLOGIST DR.MAYUR KAPURIYA REFERENCE DONE.FOLLOWED ALL HIS ADVICE.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04-12-25,</P>\r\n\r\n<P>PATIENT ON VENTILATOR SUPPORT.</P>\r\n\r\n<P>VENTILATOR WEANING STARTED.C-PAP TRIAL GIVEN.</P>\r\n\r\n<P>PCT DONE.S/O 1.6G NG/ML</P>\r\n\r\n<P>ET CULTURE SENT.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05-12-25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>PATIENT ON VENTILATOR C-PAP MODE.O2 T-PIECE TRIAL GIVEN.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>06-12-25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>ET CULTURE S/O HEAVY GROWTH OF KLEBSIELLA PNEUMONIAE (? CONTAMINATED)</P>\r\n\r\n<P>PATIENT ON O2 T-PIECE SUPPORT F/BY EXTUBATED.O2 SUPPORT TAPER AND OFF.</P>\r\n\r\n<P>GENERAL CONDITION EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>07-12-25,</P>\r\n\r\n<P>PATIENT ON OFF O2.</P>\r\n\r\n<P>ET CULTURE S/O KLEBSIELLA PNEUMONIAE.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>08-12-25,</P>\r\n\r\n<P>PATIENT CONSCIOUS, ORIENTED</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>FOLEY&#39;S CATHETER IN SITU.</P>\r\n\r\n<P>ORAL DIET STARTED AND PATIENT TOLERATED WELL</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>09-12-25,</P>\r\n\r\n<P>PATIENT CONSCIOUS, ORIENTED</P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:11PT\">ORAL DIET TOLERATE SO RYLE&#39;S TUBE REMOVE</SPAN></P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10-12-25,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>PATIENT CONSCIOUS, ORIENTED</P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:11PT\">FOLEY&#39;S CATHETER CLAMP &AMP; REMOVE</SPAN></P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11-12-25,</P>\r\n\r\n<P>PATIENT CONSCIOUS, ORIENTED</P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:11PT\">MOBILIZATION DONE</SPAN></P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 14:47:07','mo','2025-12-11 13:16:59'),(8768,0,0,3719,252,5337,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. TAZOMAC</P>\r\n\r\n<P>INJ. METRO</P>\r\n\r\n<P>INJ. MEROMAC</P>\r\n\r\n<P>INJ. AMIKACIN</P>\r\n\r\n<P>INJ. PANTO</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ. INFUPAR</P>\r\n\r\n<P>INJ. H. ACTRAPID</P>\r\n\r\n<P>BUPROGESIC PATCH</P>\r\n\r\n<P>TAB. RIFAGUT</P>\r\n\r\n<P>SYP. LECTIHEP</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ DYNAPAR</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 14:50:41','mo','2025-12-08 14:14:27'),(8769,0,0,3719,252,5337,0,0,NULL,'','OTNOTE','','','<p>- LARGE PERIANAL ABSESS +</p>\r\n\r\n<p>- abscess extending upto 6 to 1 o&#39;clock position</p>\r\n\r\n<p>- INCISION KEPT</p>\r\n\r\n<p>- WHOLE PUS, SLOUGH AND DEAD TISSUE EXCISED</p>\r\n\r\n<p>- INTERnal&nbsp;OPENING near anal verge at 6 o&#39;clock&nbsp;</p>\r\n\r\n<p>- SETON KEPT</p>\r\n\r\n<p>- HEMOSTASIS ACHIEVED</p>\r\n\r\n<p>- WHOLE ABSCESS CAVITY CLEAN WITH SALINE AND BETADINE</p>\r\n\r\n<p>- ROLLER GAUSE KEPT&nbsp;</p>\r\n\r\n<p>- risk of fistula developmet explain to relative&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 14:55:18','mo','2025-12-08 14:14:27'),(8770,0,0,3719,252,5337,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>INCISION AND DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 06/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 15:02:44','mo','2025-12-08 14:14:27'),(8771,0,0,3400,225,4777,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ GUFIMER</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>TAB EZITHRO</P>\r\n\r\n<P>CAP FLUVIR</P>\r\n\r\n<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>INJ NAHCO3</P>\r\n\r\n<P>INJ FENTANYL+MIDAZ DRIP</P>\r\n\r\n<P>INJ DILZEM</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ VITNEURIN</P>\r\n\r\n<P>TAB ECOSPRIN AV</P>\r\n\r\n<P>TAB MPROL AM</P>\r\n\r\n<P>TAB PROSTAGARD</P>\r\n\r\n<P>TAB DYTOR</P>\r\n\r\n<P>TAB LOPEZ MD</P>\r\n\r\n<P>NEB IPRAPHAGE/BUDAPHAGE</P>\r\n\r\n<P>TAB SERANASE AP</P>\r\n\r\n<P>CAP MAC RD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 15:05:36','mo','2025-12-11 13:16:59'),(8772,0,0,3706,251,5316,0,0,NULL,'','DISCDIAG','','','<P>RECURRENT CVA&nbsp;</P>\r\n\r\n<P>CARDIOEMBOLIC STROKE</P>\r\n\r\n<P>(IRREGULAR RT) RESIDUAL RIGHT SIDED WEAKNESS +&nbsp;SEPSIS + HYPOTENSION + GENERALISED WEAKNESS&nbsp;</P>\r\n\r\n<P>POST OP SMA THROMBOSIS&nbsp;</P>\r\n\r\n<P>COLOSTOMY IN SITU&nbsp;</P>\r\n\r\n<P>(P/O ANTICOAGULANT INDUCED P/R BLEED)&nbsp;</P>\r\n\r\n<P>K/C/O RECURRENT STROKE,CAD,SEVERE LVD,HTN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 15:07:40','mo','2025-12-10 12:42:58'),(8773,0,0,3706,251,5316,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY-</STRONG>LAPAROTOMY (BOWEL NECROSIS) 1 MONTH BACK<BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY-</STRONG>KC/O RECURRENT STROKE,CAD,SEVERE LVD,HTN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 15:07:40','mo','2025-12-10 12:42:58'),(8774,0,0,3719,252,5337,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAINT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 15:08:54','mo','2025-12-08 14:14:27'),(8775,0,0,3706,251,5316,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX S</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ NORAD</P>\r\n\r\n<P>INJ NAHCO3</P>\r\n\r\n<P>INJ HEPARIN</P>\r\n\r\n<P>TAB APIXABAN</P>\r\n\r\n<P>TAB ECOSPRIN</P>\r\n\r\n<P>TAB ALLSTAT</P>\r\n\r\n<P>TAB CREMALAX</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ MVI</P>\r\n\r\n<P>INJ NS 3%</P>\r\n\r\n<P>INJ RCC 2 UNIT</P>\r\n\r\n<P>TAB ULTRACET</P>\r\n\r\n<P>TAB NICOGLOW</P>\r\n\r\n<P>TAB TIDE PLUS</P>\r\n\r\n<P>TAB CONCOR</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 15:09:54','mo','2025-12-10 12:42:58'),(8776,0,0,3706,251,5316,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 58 YEARS OLD MALE PATIENT P/W KC/O RECURRENT STROKE,CAD,SEVERE LVD,HTN</P>\r\n\r\n<P>WITH S/P LAPAROTOMY (BOWEL NECROSIS) 1 MONTH BACK</P>\r\n\r\n<P>WITH C/O DECREASED ORAL INTAKE,DOE SINCE 2 DAYS.RIGHT SIDED WEAKNESS FOR FEW MINUTES(?TIA) TODAY MORNING.&nbsp;</P>\r\n\r\n<P>SO,PRIMARY TREATMENT TAKEN AT DR.ROSHAN MISTRY THEN REFERRED TO HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-97.6 F</P>\r\n\r\n<P>PR-110/MIN</P>\r\n\r\n<P>BP-80/60MMHG</P>\r\n\r\n<P>SPO2-100% ON RA</P>\r\n\r\n<P>RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C,E4V5M6,MOVING ALL 4 LIMBS.</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-109 MG/DL</P>\r\n\r\n<P>OSTOMY BAG IN SITU.</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05-12-25,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION SENT AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION MANAGED BY IV FLUID THERAPY F/BY IV NORAD DRIP.</P>\r\n\r\n<P>IN VIEW OF HYPONATREMIA MANAGED BY IV 3% NS.</P>\r\n\r\n<P>INTENSIVIST AND MD PHYSICIAN DR.ARCHIT RATHOD REFERENCE DONE.FOLLOWED ALL HIS ADVICE.</P>\r\n\r\n<P>URINE ROUTINE MICRO SENT.S/O PUS 5-60 CELL/HPF,BACTERIA-FEW, SO URINE CULTURE SENT.</P>\r\n\r\n<P>APLA PROFILE SENT.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>06-12-25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>MRI BRAIN WITH ANGIO DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>INTENSIVIST REVIEW TAKEN.</P>\r\n\r\n<P>USG ABDOMEN DONE, NO ANY SIGNIFICANT FINDINGS.</P>\r\n\r\n<P>CARDIOLOGIST DR.RAVI BHOJANI REFERENCE DONE.2D ECHO SCREENING DONE.S/O EF 35-40%,APICAL LV CLOT.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>IV HEPARIN STARTED.</P>\r\n\r\n<P>APLA PROFILE NEGATIVE.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>07-12-25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>GRADUALLY PATIENT&#39;S BLOOD PRESSURE IMPROVED S,NORAD DRIP TAPER AND OFF.</P>\r\n\r\n<P>SERUM CORTISOLE SENT.</P>\r\n\r\n<P>URINE C/S S/O NO ANY ORGANSIM GROWTH</P>\r\n\r\n<P>IV HEPARIN DOSE ADJUSTED @APTT</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>08/12/2025,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>IV HEPARIN DOSE ADJUSTED @APTT</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>URINE R/M DONE WHICH S/O NAD</P>\r\n\r\n<P>REFERENCE OF DR RISHIKESH KALARIA (GASTROLOGIST) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>IN VIEW OF LOW HB 1 UNIT RCC GIVEN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>09/12/2025,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>1 UNIT RCC TRANSFUSED.</P>\r\n\r\n<P>REFERENCE OF DR RAVI BHOJANI DONE AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10/12/2025</P>\r\n\r\n<P>MOBILIZATION WITH SUPPORT +&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 15:13:00','mo','2025-12-10 12:42:58'),(8777,0,0,3721,254,5341,0,0,NULL,'','TREATDISC_TI','','','<P>TAB. ZENFLOX -OZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp;</P>\r\n\r\n<P>TAB. UPANO DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD</P>\r\n\r\n<P>TAB. ZERODOL - P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD</P>\r\n\r\n<P>SYP. CREMAFIN PLUS&nbsp; &nbsp; &nbsp; 0--0--10ML&nbsp; &nbsp; BED TIME</P>\r\n\r\n<P>LOX GELLY 2%&nbsp; ------------------------------ BEFORE DEFFICATION&nbsp;</P>\r\n\r\n<P>METROGYL - P&nbsp; ------------------------------ AFTER&nbsp;DEFFICATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 19:30:01','mo','2025-12-07 19:34:13'),(8778,0,0,3583,241,5089,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. ECOTAZ</P>\r\n\r\n<P>INJ. METROGYL</P>\r\n\r\n<P>INJ. RABICROSS</P>\r\n\r\n<P>INJ. QUICKSET</P>\r\n\r\n<P>INJ. NORAD</P>\r\n\r\n<P>INJ. TRAMADOL</P>\r\n\r\n<P>INJ. BUSCOPAN</P>\r\n\r\n<P>TAB. CYCLPAM</P>\r\n\r\n<P>DAN GEL</P>\r\n\r\n<P>IVF NS/RL</P>\r\n\r\n<P>INJ. VITNEURIN</P>\r\n\r\n<P>CAP. ENUFF</P>\r\n\r\n<P>INJ. FEBRINIL</P>\r\n\r\n<P>RASH FREE OINT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 21:58:56','mo','2025-12-08 12:12:17'),(8779,0,0,3630,245,5163,0,0,NULL,'','DISCDIAG','','','<P><STRONG>BILATERAL CAP&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>(?) PULMONARY EMBOLISM&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>AKI</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 22:07:48','mo','2025-12-12 18:59:24'),(8780,0,0,3630,245,5163,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-07 22:07:48','mo','2025-12-12 18:59:24'),(8781,0,0,3630,245,5163,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 80 YEARS OLD MALE PATIENT PRESENT WITH,<BR />\r\nH/O : COUGH AND COLD BEFORE 4-5 DAYS.<BR />\r\nK/C/O: DM ON REGULAR RX.<BR />\r\nC/O: BURNING ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GASTRITIS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DOE WHILE WALKING SINCE&nbsp;&nbsp;2 DAYS.&nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE 2-3 DAYS&nbsp;<BR />\r\nPRIMARY TREATMENT TAKEN AT GENERAL PHYSIAN.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:&nbsp;</P>\r\n\r\n<P>TEMP- 102.0`F<BR />\r\nPR- 108/MIN<BR />\r\nBP- 140/80 MMHG&nbsp;<BR />\r\nSPO2-85% ON RA&nbsp;<BR />\r\nRR- 32/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04-12-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF SPO2 LEVEL - 85 % AT ROOM AIR START O2 SUPPORT VIA MASK 2 LIT.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>CHEST X RAY DONE - REPROT ATTACH WITH FILE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>O2 SUPPORT CONTINUE 2IT.</P>\r\n\r\n<P>ICU STAY UNEVENTFULL</P>\r\n\r\n<P>PATIENT SHIFT TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>06-12-2025,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>CHEST X-RAY DONE&nbsp;</P>\r\n\r\n<P>SAME TREATMENT CONTINUED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>07-12-2025,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>SAME TREATMENT CONTINUED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>8-12-2025,</P>\r\n\r\n<P>PLAN USG GUIDED PLEURAL FLUID TAPPING BUT IN USG CHEST REPORT THERE IS NO FLUID COLLECTION&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVES.</P>\r\n\r\n<P>USG CHEST DONE</P>\r\n\r\n<P>OXYGEN SUPPORT WITH 2 LIT/HR BY NC CONTINUED.</P>\r\n\r\n<P>CONDOM CATHETER DONE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>9-12-2025,</P>\r\n\r\n<P>2D ECHO DONE WHICH S/O LVEF:55 %, DILATED RA/RV, OTHER FINDINGS ARE ACCORDING TO REPORT.</P>\r\n\r\n<P>IN VIEW OF ELIVATED D-DIMER LEVEL LMWH STARTED.</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITON OBSEVED IN WARD.</P>\r\n\r\n<P>OFF O2 TRAIL GIVEN, BUT PATIENT DEVELOPED HYPOXIA. SO O2 CONTINUE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10-12-2025,</P>\r\n\r\n<P>CBC DONE</P>\r\n\r\n<P>OFF O2 TRAIL GIVEN, PATIENT MAINTAIN WELL SO O2 OFF</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11-12-2025,</P>\r\n\r\n<P>GRADUALLY PATIENT&#39;S CONDITION IMPROVED.</P>\r\n\r\n<P>OXYGEN SATURATION MAINTAINING 85%-87% ON ROOM AIR WITHOUT O2 SUPPORT.</P>\r\n\r\n<P>ORAL DIET IMPROVED.</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12-12-2025</P>\r\n\r\n<P>CONDOM CATHETER REMOVE&nbsp;</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 22:07:48','mo','2025-12-12 18:59:24'),(8782,0,0,3630,245,5163,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. MEZOR</P>\r\n\r\n<P>INJ. AMIKACIN</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. VOMIEST</P>\r\n\r\n<P>INJ. DERIPHYLIN</P>\r\n\r\n<P>INJ. FEBRINYL</P>\r\n\r\n<P>INJ. H.ACTRAPID</P>\r\n\r\n<P>INJ. NS</P>\r\n\r\n<P>INJ. ELDERVIT</P>\r\n\r\n<P>INJ. AUGMENTIN</P>\r\n\r\n<P>INJ. DYTPOR</P>\r\n\r\n<P>TAB. DX</P>\r\n\r\n<P>TAB. CREMALEX</P>\r\n\r\n<P>TAB.&nbsp;ATIVAN</P>\r\n\r\n<P>SYP. RESVAS</P>\r\n\r\n<P>NEB. DUOLIN : BUDACORT</P>\r\n\r\n<P>INJ CLEXANE</P>\r\n\r\n<P>TAB PAH</P>\r\n\r\n<P>SYP.PEGCLEAR</P>\r\n\r\n<P>DULCOLAX SUPPOSITORY</P>\r\n\r\n<P>PC ENEMA&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 22:07:48','mo','2025-12-12 18:59:24'),(8783,0,0,3510,238,4977,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE GASTROENTERITIS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>UTI&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, DYSLIPIDEMAI, IHD, LVD + PAH, CKD, MYOSITIS, SLIPPED DISC ON RX.</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-07 22:29:23','mo','2025-12-08 12:55:01'),(8784,0,0,1779,1735,5450,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---sense of imbalance +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 10:43:33','','0000-00-00 00:00:00'),(8785,0,0,1779,1735,5450,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 10:43:56','','0000-00-00 00:00:00'),(8786,0,0,823,792,5449,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow u pcase---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 10:50:54','','0000-00-00 00:00:00'),(8787,0,0,3786,3681,5457,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:00:18','','0000-00-00 00:00:00'),(8788,0,0,3782,3676,5447,0,0,NULL,'','DIAG','ZZZ','Remark','INTERNAL HEMORRHOIDS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 11:01:08','','0000-00-00 00:00:00'),(8790,0,0,3786,3681,5457,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo sudden onset any time and remains for few mins only</p>\n\n<p>heaviness of head +</p>\n\n<p>both ear tinnitus +</p>\n\n<p>on anti psy medicine since many yrs&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:01:42','darshan','2025-12-08 11:04:54'),(8791,0,0,3782,3676,5447,0,0,NULL,'','DIAG','ZZZ','Remark','ULCERATIVE COLITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 11:01:45','','0000-00-00 00:00:00'),(8792,0,0,3786,3681,5457,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit---nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:05:09','darshan','2025-12-08 12:56:18'),(8795,0,0,3775,3671,5440,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---15 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:18:20','','0000-00-00 00:00:00'),(8796,0,0,3775,3671,5440,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ----sudden onset of rotaotry feeling when pt is changing his poture he feels imbalance and giddiness</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:19:03','','0000-00-00 00:00:00'),(8797,0,0,3775,3671,5440,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix halllpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bialtelr high freq moderate sn deafness</p>\n\n<p>stabiloemtry---reduced vestibualr score</p>\n\n<p>vng--right hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:19:16','darshan','2025-12-08 13:08:23'),(8799,0,0,3347,3695,5476,0,0,NULL,'','DIAG','ZZZ','Remark','INTERNAL HEMORRHOIDS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 11:21:41','','0000-00-00 00:00:00'),(8800,0,0,3794,3689,5467,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better for giddiness&thinsp;</p>\n\n<p>tinnitus increased&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:21:53','','0000-00-00 00:00:00'),(8801,0,0,89,78,5464,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---positional giddiness +</p>\n\n<p>episode of meneir&#39;s&thinsp; ----3 episodes&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:27:56','','0000-00-00 00:00:00'),(8803,0,0,3776,3672,5441,0,0,NULL,'','MADVICE','ZZZ','Remark','INJ LABETOLOL 1 AMP IV STAT ','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-08 11:33:48','','0000-00-00 00:00:00'),(8804,0,0,3800,3696,5479,0,0,NULL,'','DIAG','ZZZ','Remark','LT INGROWING TOE NAIL','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 11:34:07','','0000-00-00 00:00:00'),(8805,0,0,3779,3674,5444,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----recurence of vertigo&thinsp;</p>\n\n<p>heaviness of head with ear heaviness +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:42:07','','0000-00-00 00:00:00'),(8807,0,0,3807,3704,5488,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 11:42:52','','0000-00-00 00:00:00'),(8808,0,0,3779,3674,5444,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:43:12','','0000-00-00 00:00:00'),(8809,0,0,3796,3691,5472,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:49:31','darshan','2025-12-08 11:50:13'),(8810,0,0,3796,3691,5472,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:49:40','','0000-00-00 00:00:00'),(8811,0,0,3796,3691,5472,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>CCG--left war rotation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:50:30','darshan','2025-12-08 14:03:05'),(8812,0,0,3796,3691,5472,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:50:36','','0000-00-00 00:00:00'),(8814,0,0,3783,3678,5453,0,0,NULL,'','CC','ZZZ','Remark','HEAVINESS OF HEAD --FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:56:17','','0000-00-00 00:00:00'),(8815,0,0,3783,3678,5453,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:56:17','','0000-00-00 00:00:00'),(8816,0,0,3783,3678,5453,0,0,NULL,'','CC','ZZZ','Remark','DEAFNESS--FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:56:17','','0000-00-00 00:00:00'),(8817,0,0,3583,241,5089,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 11:56:33','mo','2025-12-08 12:12:17'),(8818,0,0,3583,241,5089,0,0,NULL,'','TREATDISC_TI','','','<P>TAB OSON-O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......FOR 3 DAYS</P>\r\n\r\n<P>CAP ROTOGUT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ......FOR 3 DAYS&nbsp;</P>\r\n\r\n<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......FOR 3 DAYS&nbsp;</P>\r\n\r\n<P>CAP ENUFF(100MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp; &nbsp; IF LOOSE MOTION&nbsp; &nbsp; &nbsp; &nbsp;.......(5)&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 11:56:33','mo','2025-12-08 12:12:17'),(8819,0,0,3783,3678,5453,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic heaviness of head with tinnitus&thinsp;</p>\n\n<p>daefness +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:56:48','','0000-00-00 00:00:00'),(8820,0,0,3783,3678,5453,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---bialtelr high freq severe sn deafness</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:56:59','darshan','2025-12-08 13:22:30'),(8821,0,0,3783,3678,5453,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 11:57:01','','0000-00-00 00:00:00'),(8822,0,0,3665,3565,5478,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----vertigo persist</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:01:37','darshan','2025-12-08 12:03:04'),(8824,0,0,3814,3712,5501,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 12:04:21','','0000-00-00 00:00:00'),(8826,0,0,3665,3565,5478,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN 8TH NERVE PROTOCOL ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:05:21','','0000-00-00 00:00:00'),(8827,0,0,2095,2040,5454,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case --better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:06:48','','0000-00-00 00:00:00'),(8828,0,0,3817,3715,5504,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-08 12:07:55','','0000-00-00 00:00:00'),(8829,0,0,3816,3714,5503,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 12:08:47','','0000-00-00 00:00:00'),(8830,0,0,3583,241,5089,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 12:12:15','mo','2025-12-08 12:12:17'),(8831,0,0,3785,3680,5456,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:12:25','','0000-00-00 00:00:00'),(8832,0,0,3785,3680,5456,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:12:30','','0000-00-00 00:00:00'),(8833,0,0,3785,3680,5456,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:13:18','','0000-00-00 00:00:00'),(8835,0,0,3785,3680,5456,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MEANVEUR ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:13:51','','0000-00-00 00:00:00'),(8836,0,0,3801,3698,5481,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1.5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:19:16','','0000-00-00 00:00:00'),(8837,0,0,3801,3698,5481,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotoatyr feeling any time&thinsp; and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:19:46','','0000-00-00 00:00:00'),(8838,0,0,3801,3698,5481,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng---central vareity of nystmgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:20:07','darshan','2025-12-08 14:13:36'),(8840,0,0,2672,2610,5469,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:23:18','darshan','2025-12-08 12:23:42'),(8841,0,0,2672,2610,5469,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:24:16','','0000-00-00 00:00:00'),(8843,0,0,2672,2610,5469,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MENVUER \nPHYSICIAN OPINION FOR FEVER AND HEADACHE ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:25:37','','0000-00-00 00:00:00'),(8844,0,0,2100,2045,5493,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--partialy better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:28:30','','0000-00-00 00:00:00'),(8846,0,0,2100,2045,5493,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:29:54','','0000-00-00 00:00:00'),(8847,0,0,2399,2343,5484,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----paritally better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:32:18','','0000-00-00 00:00:00'),(8849,0,0,3805,3702,5486,0,0,NULL,'','CC','ZZZ','Remark','RIGTH EAR TINNITUS --10 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:39:52','','0000-00-00 00:00:00'),(8850,0,0,3805,3702,5486,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS +||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:39:52','','0000-00-00 00:00:00'),(8851,0,0,3805,3702,5486,0,0,NULL,'','HIST','ZZZ','Remark','<p>continuous right ear tinnitus with insomnia</p>\n\n<p>giddiness occassional&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:41:33','','0000-00-00 00:00:00'),(8852,0,0,3805,3702,5486,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystambus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----bilatler high freq severe sn deafness</p>\n\n<p>OAe---poor corelation</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:41:49','darshan','2025-12-08 14:05:01'),(8853,0,0,3805,3702,5486,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:41:49','','0000-00-00 00:00:00'),(8854,0,0,3805,3702,5486,0,0,NULL,'','DIAG','ZZZ','Remark','PSY','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:41:53','','0000-00-00 00:00:00'),(8855,0,0,3787,3682,5458,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR PAIN WITH TINNITUS----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:45:12','','0000-00-00 00:00:00'),(8856,0,0,3787,3682,5458,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>right otitis externa</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:45:19','','0000-00-00 00:00:00'),(8857,0,0,3802,3699,5482,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling on change of posture</p>\n\n<p>heaviness of head&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:51:40','darshan','2025-12-08 12:52:18'),(8858,0,0,3802,3699,5482,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:51:58','','0000-00-00 00:00:00'),(8859,0,0,3510,238,4977,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>FOLEY&#39;S IN SITU ( NO-14)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 12:52:04','mo','2025-12-08 12:55:01'),(8860,0,0,3510,238,4977,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n\r\n<P>DAILY FOLEY&#39;S CARE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 12:52:04','mo','2025-12-08 12:55:01'),(8861,0,0,3510,238,4977,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ GUFIMER</P>\r\n\r\n<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>INJ NORAD DRIP</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ NAHCO3</P>\r\n\r\n<P>2 UNIT RCC</P>\r\n\r\n<P>INJ TRENEXA</P>\r\n\r\n<P>SYP LECTIHEP</P>\r\n\r\n<P>CAP ROTOGUT</P>\r\n\r\n<P>CAP ENUFF</P>\r\n\r\n<P>SUCRAL ANO CREAM&nbsp;</P>\r\n\r\n<P>TAB TRENEXA</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 12:52:04','mo','2025-12-08 12:55:01'),(8862,0,0,3510,238,4977,0,0,NULL,'','TREATDISC_TI','','','<P>TAB DUONEM - ER (300MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......FOR 5 DAYS</P>\r\n\r\n<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; .....FOR 5 DAYS</P>\r\n\r\n<P>TAB TRENEXA(500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ....FOR 5 DAYS</P>\r\n\r\n<P>CAP ROTOGUT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..... FOR 5 DAYS&nbsp;&nbsp;</P>\r\n\r\n<P>TAB HYPONAT A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ......FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB ECOTOR-AS(10/75)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......FOR 5 DAYS</P>\r\n\r\n<P>TAB TORKID PLUS(10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.....FOR 5 DAYS</P>\r\n\r\n<P>SYP LECTIHEP(20ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IF CONSTIPATION&nbsp; &nbsp; &nbsp; &nbsp;........ (1)</P>\r\n\r\n<P>SUCRAL ANO CREAM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER DEFECATION&nbsp; &nbsp; &nbsp; &nbsp;......(1)&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>BETADIN SOLUTION (100ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR FOLEY&#39;S CARE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........(1)</P>\r\n\r\n<P>GAUSE PIECE (1 PACKET)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR FOLEY&#39;S CARE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........(1)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 12:52:04','mo','2025-12-08 12:55:01'),(8863,0,0,3802,3699,5482,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix halllpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:52:36','darshan','2025-12-08 14:35:28'),(8864,0,0,3802,3699,5482,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 12:53:07','','0000-00-00 00:00:00'),(8865,0,0,2179,2128,5471,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 13:00:46','','0000-00-00 00:00:00'),(8866,0,0,1022,990,5509,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 13:04:27','','0000-00-00 00:00:00'),(8867,0,0,3775,3671,5440,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 13:09:01','','0000-00-00 00:00:00'),(8869,0,0,2510,2451,5512,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 13:11:52','','0000-00-00 00:00:00'),(8870,0,0,3803,3700,5483,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----12 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 13:18:22','','0000-00-00 00:00:00'),(8871,0,0,3803,3700,5483,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotoatyr feeling when pt is in any posture&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 13:18:24','darshan','2025-12-08 13:19:32'),(8872,0,0,3803,3700,5483,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR HEAVINESS OF HEAD||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 13:18:40','','0000-00-00 00:00:00'),(8873,0,0,3803,3700,5483,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta----left modearte sn dafness</p>\n\n<p>stabilomtry---reduced vestibular score</p>\n\n<p>vng--left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 13:19:47','darshan','2025-12-08 14:49:02'),(8875,0,0,3719,252,5337,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n\r\n<P>TAKE ADD/SRD</P>\r\n\r\n<P>CONTINUE OWN MEDICINE&nbsp;</P>\r\n\r\n<P>BUPRAGESIC PATCH REMOVE AFTER 5 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 13:29:25','mo','2025-12-08 14:14:27'),(8876,0,0,3719,252,5337,0,0,NULL,'','TREATDISC_TI','','','<P>INJ MEROMAC(1GM/100ML NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp;7AM--3PM--10PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS&nbsp; (10 INJ)</P>\r\n\r\n<P>INJ AMIKACIN(500MG/DILUTED)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; 7AM--10PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 1&nbsp;DAYS (3&nbsp;INJ)&nbsp;</P>\r\n\r\n<P>TAB METROGYL-ER (600MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1---0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB&nbsp; CALPOL (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB RIFAGUT(200MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>SYP LECTIHEP (10ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........(1)</P>\r\n\r\n<P>LOX JELLY 2%&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE DEFEACATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(1)&nbsp;</P>\r\n\r\n<P>METROGYL P OINT&nbsp; &nbsp; &nbsp; &nbsp;L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER DEFECATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........(1)&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>CONTINUE OWN MEDICINE:&nbsp;</STRONG></P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB GLIMIST M1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; BEFORE FOOD</P>\r\n\r\n<P>TAB NERVAL M&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp;</P>\r\n\r\n<P>TAB LEVOCETRIZINE(EVERY 2 DAYS )&nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 13:29:25','mo','2025-12-08 14:14:27'),(8877,0,0,3542,3445,5491,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----recurence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 13:34:30','','0000-00-00 00:00:00'),(8878,0,0,3542,3445,5491,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---<strong>down beat nsytmgus&thinsp;</strong></p>\n\n<p>hit--nbad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 13:35:12','darshan','2025-12-08 13:35:59'),(8880,0,0,3542,3445,5491,0,0,NULL,'','MADVICE','ZZZ','Remark','NEUROLOGIST  OPINION ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-08 13:36:17','','0000-00-00 00:00:00'),(8881,0,0,3826,3724,5524,0,0,NULL,'','CC','ZZZ','Remark','C/O DOE  | 6 MONTHS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-08 13:40:39','','0000-00-00 00:00:00'),(8882,0,0,3826,3724,5524,0,0,NULL,'','CC','ZZZ','Remark','C/O PEDAL OEDEMA | 6 MONTHS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-08 13:40:39','','0000-00-00 00:00:00'),(8883,0,0,3826,3724,5524,0,0,NULL,'','CC','ZZZ','Remark','D/O DIZZINESS | 10 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-08 13:40:39','','0000-00-00 00:00:00'),(8885,0,0,3775,3671,5440,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-08 13:43:06','','0000-00-00 00:00:00'),(8886,0,0,3809,3706,5492,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 13:50:54','darshan','2025-12-08 13:51:37'),(8887,0,0,3811,3708,5495,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up cse---bettrer</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 13:55:53','','0000-00-00 00:00:00'),(8888,0,0,3813,3710,5497,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up csae---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 13:58:53','','0000-00-00 00:00:00'),(8889,0,0,3796,3691,5472,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:03:26','','0000-00-00 00:00:00'),(8891,0,0,314,298,5500,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:07:02','','0000-00-00 00:00:00'),(8892,0,0,3818,3716,5507,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---medicine&thinsp; skipped</p>\n\n<p>recurence of headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:09:34','','0000-00-00 00:00:00'),(8893,0,0,3820,3718,5511,0,0,NULL,'','HIST','ZZZ','Remark','<p>continuous sense of imbalance with giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:18:35','darshan','2025-12-08 14:21:24'),(8894,0,0,3820,3718,5511,0,0,NULL,'','CC','ZZZ','Remark','VRETIGO----6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:21:10','','0000-00-00 00:00:00'),(8895,0,0,3820,3718,5511,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nsytgsu---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---Bilateral high freq severe sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>Vng---left bppv with bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:21:32','darshan','2025-12-09 12:07:01'),(8898,0,0,3796,3691,5472,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:22:46','','0000-00-00 00:00:00'),(8899,0,0,3531,3434,5516,0,0,NULL,'','HIST','ZZZ','Remark','<p>right ear wax --removed&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:31:13','','0000-00-00 00:00:00'),(8900,0,0,3822,3721,5519,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:32:23','','0000-00-00 00:00:00'),(8901,0,0,3822,3721,5519,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR PAIN---2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:32:34','','0000-00-00 00:00:00'),(8902,0,0,3822,3721,5519,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right AOM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:32:44','','0000-00-00 00:00:00'),(8903,0,0,3802,3699,5482,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:35:58','','0000-00-00 00:00:00'),(8905,0,0,3830,3727,5530,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:44:59','','0000-00-00 00:00:00'),(8906,0,0,3830,3727,5530,0,0,NULL,'','HIST','ZZZ','Remark','<p>sense of imbalance&thinsp; with episodic giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:45:26','darshan','2025-12-08 19:47:21'),(8907,0,0,3830,3727,5530,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dx hallpike---nad</p>\n\n<p>hit---nads</p>\n\n<p>pta---bilateral high freq severe to very severe sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--Bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:45:27','darshan','2025-12-08 19:48:52'),(8910,0,0,3802,3699,5482,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGTH SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:52:10','','0000-00-00 00:00:00'),(8911,0,0,3831,3728,5531,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----3 YR 3 EPISODES ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:56:52','','0000-00-00 00:00:00'),(8912,0,0,3831,3728,5531,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of giddiness with black out feeling&thinsp;</p>\n\n<p>occassional headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:57:07','','0000-00-00 00:00:00'),(8913,0,0,3831,3728,5531,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--nad</p>\n\n<p>stabilomtry--reduced vestibular score</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 14:57:19','darshan','2025-12-08 18:18:22'),(8915,0,0,3832,3729,5532,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n\n<p>occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 15:03:39','','0000-00-00 00:00:00'),(8916,0,0,2636,2575,5535,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n\n<p>single episode of vertigo with headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:03:43','','0000-00-00 00:00:00'),(8917,0,0,3720,253,5338,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. UNITREX-S</P>\r\n\r\n<P>TAB.CLARIBID</P>\r\n\r\n<P>INJ.DERIPHYLIN</P>\r\n\r\n<P>INJ.PANTODEC</P>\r\n\r\n<P>INJ.VOMISET</P>\r\n\r\n<P>NEB.DUOLIN:BUDECORT</P>\r\n\r\n<P>INJ.H.MIXTARD</P>\r\n\r\n<P>TAB.ZERODOL-P</P>\r\n\r\n<P>TAB.SITAGLIN-M1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 17:04:08','mo','2025-12-08 21:14:57'),(8918,0,0,3720,253,5338,0,0,NULL,'','ADVICE','','','<P>FOLLW UP AFTER 5 DAYS</P>\r\n\r\n<P>HOLD OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 17:04:55','mo','2025-12-08 21:14:57'),(8919,0,0,2246,2189,5537,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:07:38','','0000-00-00 00:00:00'),(8920,0,0,3837,3734,5540,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--5-6 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:17:33','','0000-00-00 00:00:00'),(8921,0,0,3837,3734,5540,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotoatyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:18:03','','0000-00-00 00:00:00'),(8922,0,0,3837,3734,5540,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---right moderate sn deafness</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:18:21','darshan','2025-12-08 18:31:41'),(8924,0,0,3835,3732,5538,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:24:50','','0000-00-00 00:00:00'),(8925,0,0,3835,3732,5538,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:25:25','','0000-00-00 00:00:00'),(8926,0,0,3835,3732,5538,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----bialteral moderate sn deafness</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:25:45','darshan','2025-12-08 18:46:36'),(8928,0,0,3842,3739,5545,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:39:38','','0000-00-00 00:00:00'),(8929,0,0,3842,3739,5545,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:40:12','','0000-00-00 00:00:00'),(8930,0,0,3842,3739,5545,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:40:27','darshan','2025-12-08 19:25:10'),(8932,0,0,3824,259,5521,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-ISCHIO RECTAL PERIANAL ABSCESS</STRONG></P>\r\n\r\n<P><STRONG>-SEPSIS</STRONG></P>\r\n\r\n<P><STRONG>-ACUTE KIDNEY INJURY</STRONG></P>\r\n\r\n<P><STRONG>-HYPONATREMIA</STRONG></P>\r\n\r\n<P><STRONG>-K/C/O: HTN, DM, LVH, LVD, HYPOTHYROIDISM</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 17:44:03','mo','2025-12-17 14:03:03'),(8933,0,0,3824,259,5521,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-08 17:44:03','mo','2025-12-17 14:03:03'),(8934,0,0,3824,259,5521,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp;76 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: LVH,HTN,DM 2,HYPOTHYRODISM,LVD,ANEMIA<BR />\r\nH/O:BOTH LEG # IN 2019<BR />\r\nC/O: PAIN IN PERIANAL REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PUS DISCHARGE FROM SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER ON &AMP;OFF SINCE 3 TO 4 DAY</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-100/MIN<BR />\r\nBP-120/70MMHG<BR />\r\nSPO2-97% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>8/12/2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>USG ABDOMEN DONE. REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>FOLEY&#39;S CATHETER DONE WITH ALL ASEPTIC PRECAUTION&nbsp;</P>\r\n\r\n<P>URINE R/M DONE WHICH S/O NAD</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>9/12/2025,</P>\r\n\r\n<P>IN VIEW OF ? PERIANAL ABSCESS MS GENERAL SURGEON DR PRATAPSINH DODIYA&#39;S REFERANCE DONE AND FOLLOW HIS ALL ADVICE .</P>\r\n\r\n<P>CHEST X RAY DONE REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10/12/2025,</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>2D ECHO DONE; LVEF: 55%</P>\r\n\r\n<P>MRI FISTULOGRAM/PERIANAL REGION(PLAIN SCAN) DONE WHICH S/O: PERIANAL SINUS TRACT WITH LARGE COLLECTION/ABSCESS</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11/122025</P>\r\n\r\n<P>INCISION AND DRAINGE DONE BY DR BANKIM THANKY(GENERAL SURGEON) UNDER GENERAL ANEASTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>PUS CS SENT</P>\r\n\r\n<P>POST OP PATIENT SHIFTED TO ICU&nbsp;</P>\r\n\r\n<P>RIGHT SIDE CVP LINE INSERTION DONE BY DR CHAITANYA SINH GOHIL WITH ALL ASEPTIC PRECAUTION&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12/12/2025</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFULL SO PATIENT SHIFTED&nbsp;WARD IN VITALLY STABLE CONDITION&nbsp;</P>\r\n\r\n<P>SEEN BY DR BANKIM THANKI AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>PUS CS : S/O KLEBSIELLA PNEUMONIAE TREATMENT MODIFIED @ SENSITIVITY</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13/12/2025</P>\r\n\r\n<P>DRESSING DONE BY DR. PRATAP SINH DODIYA WITH ALL ASEPTIC PRECAUTION</P>\r\n\r\n<P>RBS MONITORING</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14/12/2025</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>MOBILIZATION STARTED</P>\r\n\r\n<P>CONTINUE SAME RX</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15/12/2025</P>\r\n\r\n<P>CATHETER CLAMPING START&nbsp;</P>\r\n\r\n<P>ANTIDIABETIC TABLET STARTED</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16/12/2025</P>\r\n\r\n<P>CATHETER CLAMPING START</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17/12/2025</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>S.FERRITIN DONE : 260 NG/ML</P>\r\n\r\n<P>CATHETER CLAMP &AMP; REMOVE</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT GENERAL CONDITION OBSERVED IN WARD&nbsp;</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 17:44:03','mo','2025-12-17 14:03:03'),(8935,0,0,3824,259,5521,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.GUFIMER</P>\r\n\r\n<P>INJ.METROGYL</P>\r\n\r\n<P>INJ.RABICROSS</P>\r\n\r\n<P>INJ.QUICKSET</P>\r\n\r\n<P>TAB CALPOL</P>\r\n\r\n<P>TAB THYROX</P>\r\n\r\n<P>SYP PEGCLEAR</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>INJ VOSIMOL</P>\r\n\r\n<P>TAB THYROX</P>\r\n\r\n<P>SYP PEGCLEAR</P>\r\n\r\n<P>SYP CREMAFFIN&nbsp;</P>\r\n\r\n<P>INJ VITNEURIN&nbsp;</P>\r\n\r\n<P>INJ ACTRAPID</P>\r\n\r\n<P>TAB GIMMY M1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 17:45:22','mo','2025-12-17 14:03:03'),(8936,0,0,3839,3736,5542,0,0,NULL,'','CC','ZZZ','Remark','NASAL IRRITATION ---MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:48:52','','0000-00-00 00:00:00'),(8937,0,0,3839,3736,5542,0,0,NULL,'','CC','ZZZ','Remark','THRAOT IRRITATION||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:48:52','','0000-00-00 00:00:00'),(8938,0,0,3839,3736,5542,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose--allergic changes&thinsp;</p>\n\n<p>phx--allergic and granular&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:49:21','','0000-00-00 00:00:00'),(8939,0,0,3824,259,5521,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n\r\n<P>RBS MONITORING</P>\r\n\r\n<P>CVP CARE</P>\r\n\r\n<P>HOLD OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 17:49:59','mo','2025-12-17 14:03:03'),(8941,0,0,3839,3736,5542,0,0,NULL,'','MADVICE','ZZZ','Remark','FOLLOW UP SOS\nSOS PTA','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:50:36','','0000-00-00 00:00:00'),(8942,0,0,3841,3738,5544,0,0,NULL,'','CC','ZZZ','Remark','OCCASSIONAL NASAL BLOCKAGE-----FEW MOTNHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:53:05','','0000-00-00 00:00:00'),(8943,0,0,3841,3738,5544,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Nose---allergic changes</p>\n\n<p>phx--granular&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:53:20','','0000-00-00 00:00:00'),(8944,0,0,3160,3074,5549,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:57:28','','0000-00-00 00:00:00'),(8945,0,0,3160,3074,5549,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:57:57','','0000-00-00 00:00:00'),(8947,0,0,3160,3074,5549,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-08 17:59:18','','0000-00-00 00:00:00'),(8948,0,0,3840,3737,5543,0,0,NULL,'','HIST','ZZZ','Remark','<p>vertigo---2 days&thinsp;</p>\n\n<p>sudden onset of short duration positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 18:03:00','darshan','2025-12-08 18:03:28'),(8949,0,0,3840,3737,5543,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---nad</p>\n\n<p>hit---nad</p>\n\n<p>dix hallpike--faint left torsonal geotropic nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 18:03:01','darshan','2025-12-08 18:04:17'),(8951,0,0,3840,3737,5543,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-08 18:06:02','','0000-00-00 00:00:00'),(8952,0,0,3778,257,5443,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PERIANAL ABSCESS + PHIMOSIS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O:HTN (SINCE 1.5 TO 2 YR)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 18:07:31','mo','2025-12-09 14:05:08'),(8953,0,0,3778,257,5443,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-08 18:07:31','mo','2025-12-09 14:05:08'),(8954,0,0,3778,257,5443,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 48 YEARS OLD &nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O:HTN&nbsp; (SINCE 1.5 TO 2 YR)&nbsp;<BR />\r\nC/O:PAIN IN ANUS SINCE 1 M0NTH</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;CONSTIPATION&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FEVER ON &AMP; OFF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;INTURRUPTED FLOW OF URINE SINCE 2 TO 3 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;UNABLE TO RETRACT PREPENILE SKIN</P>\r\n\r\n<P>&nbsp; FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>MRI FISTULOGRAM DONE ON &nbsp;06/12/2025. REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-78/MIN<BR />\r\nBP-140/90MMHG<BR />\r\nSPO2-98% ON RA<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.<BR />\r\nALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nINCISION AND DRAINAGE OF ABSCESS + STAPPLED CIRCUMSCISION (ZSR) DONE BY DR PRATAPSINH DODIYA ON 08/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.<BR />\r\nPOST-OP PATIENT SHIFTED TO WARD.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 18:07:31','mo','2025-12-09 14:05:08'),(8955,0,0,3778,257,5443,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n\r\n<P>REMOVE BUPRAGESIC PATCH AFTER 5 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 18:08:38','mo','2025-12-09 14:05:08'),(8956,0,0,3778,257,5443,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>TAB.TELMIRIDE MT</P>\r\n\r\n<P>IV FLUIDS</P>\r\n\r\n<P>BUPHRAGESIC PATCH</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>LOX JELLY&nbsp;</P>\r\n\r\n<P>ETROGYL P OINTMENT</P>\r\n\r\n<P>SYP LECTIHEP</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 18:11:42','mo','2025-12-09 14:05:08'),(8957,0,0,3845,3742,5548,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN----2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 18:27:21','','0000-00-00 00:00:00'),(8958,0,0,3845,3742,5548,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Left otitis externa</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 18:27:37','','0000-00-00 00:00:00'),(8959,0,0,3837,3734,5540,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 18:31:44','','0000-00-00 00:00:00'),(8960,0,0,3837,3734,5540,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 18:32:21','','0000-00-00 00:00:00'),(8962,0,0,3853,3750,5564,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--- single episode of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 18:37:31','','0000-00-00 00:00:00'),(8964,0,0,3837,3734,5540,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-08 18:39:44','','0000-00-00 00:00:00'),(8966,0,0,3851,3748,5561,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI RT SHOULDER \nORHTOPEDIC REFFENCE ','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-08 18:43:22','','0000-00-00 00:00:00'),(8967,0,0,3835,3732,5538,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 18:47:17','','0000-00-00 00:00:00'),(8969,0,0,1027,995,5568,0,0,NULL,'','HIST','ZZZ','Remark','<p>recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 18:53:07','','0000-00-00 00:00:00'),(8970,0,0,1027,995,5568,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAEWNVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-08 18:53:27','','0000-00-00 00:00:00'),(8971,0,0,974,943,5572,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---left ear tinnitus +</p>\n\n<p>rest better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 18:56:51','','0000-00-00 00:00:00'),(8972,0,0,3857,3754,5570,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-08 19:04:10','','0000-00-00 00:00:00'),(8974,0,0,3835,3732,5538,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MANVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-08 19:04:38','','0000-00-00 00:00:00'),(8975,0,0,3844,3741,5547,0,0,NULL,'','DIAG','ZZZ','Remark','FISTULA IN ANO','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 19:04:51','','0000-00-00 00:00:00'),(8976,0,0,3208,3122,5550,0,0,NULL,'','DIAG','ZZZ','Remark','INTERNAL HEMORRHOIDS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 19:05:44','','0000-00-00 00:00:00'),(8977,0,0,3256,3170,5573,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 19:06:24','','0000-00-00 00:00:00'),(8978,0,0,3838,3735,5541,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT LATERAL MALLEOLI FRACTURE','','',0,'0000-00-00 00:00:00','drsagar','2025-12-08 19:11:41','','0000-00-00 00:00:00'),(8979,0,0,3846,3743,5551,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 19:15:46','','0000-00-00 00:00:00'),(8980,0,0,3846,3743,5551,0,0,NULL,'','DIAG','ZZZ','Remark','IHD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 19:15:49','','0000-00-00 00:00:00'),(8981,0,0,3846,3743,5551,0,0,NULL,'','DIAG','ZZZ','Remark','HYPOTHYROIDISM','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 19:16:07','','0000-00-00 00:00:00'),(8982,0,0,3846,3743,5551,0,0,NULL,'','MADVICE','ZZZ','Remark','SURGERY ','','9999.9',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 19:16:30','','0000-00-00 00:00:00'),(8985,0,0,3860,3757,5577,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS -----1 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 19:21:21','','0000-00-00 00:00:00'),(8986,0,0,3860,3757,5577,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of giddiness mild rotaotry feeling for few secnds&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 19:21:24','darshan','2025-12-08 19:22:12'),(8987,0,0,3821,3719,5517,0,0,NULL,'','MADVICE','ZZZ','Remark','ADVICE - ADMISSION ','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-08 19:21:46','','0000-00-00 00:00:00'),(8988,0,0,3860,3757,5577,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 19:22:27','','0000-00-00 00:00:00'),(8989,0,0,3860,3757,5577,0,0,NULL,'','DIAG','ZZZ','Remark','PSY VS OTEHR','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 19:22:31','','0000-00-00 00:00:00'),(8990,0,0,3849,3746,5555,0,0,NULL,'','DIAG','ZZZ','Remark','FISTULA IN ANO','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 19:22:43','','0000-00-00 00:00:00'),(8991,0,0,3421,3329,5586,0,0,NULL,'','CC','ZZZ','Remark','C/O YELLOWISH DICOURATION OF SCLERA||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-08 19:24:54','','0000-00-00 00:00:00'),(8992,0,0,3421,3329,5586,0,0,NULL,'','DIAG','ZZZ','Remark','CHLESTATIC PHASSE OF ACUTE HEPATITIS A','','',0,'0000-00-00 00:00:00','drarchit','2025-12-08 19:25:40','','0000-00-00 00:00:00'),(8993,0,0,3842,3739,5545,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 19:26:15','','0000-00-00 00:00:00'),(8995,0,0,3859,3756,5576,0,0,NULL,'','HIST','ZZZ','Remark','<p>not available</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 19:28:20','','0000-00-00 00:00:00'),(8996,0,0,3834,3731,5534,0,0,NULL,'','DIAG','ZZZ','Remark','METASTATIC CA BREAST ( RT )','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 19:28:43','','0000-00-00 00:00:00'),(8997,0,0,3834,3731,5534,0,0,NULL,'','DIAG','ZZZ','Remark','HTN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 19:28:44','','0000-00-00 00:00:00'),(8998,0,0,3861,3758,5578,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 19:30:33','','0000-00-00 00:00:00'),(9000,0,0,3842,3739,5545,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-08 19:32:48','','0000-00-00 00:00:00'),(9001,0,0,3852,3749,5562,0,0,NULL,'','DIAG','ZZZ','Remark','RT FOOT CORN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 19:34:25','','0000-00-00 00:00:00'),(9002,0,0,1505,1464,5579,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case --b etter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 19:40:27','','0000-00-00 00:00:00'),(9003,0,0,3856,3753,5569,0,0,NULL,'','DIAG','ZZZ','Remark','ANAL FIBROSIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 19:40:39','','0000-00-00 00:00:00'),(9004,0,0,1505,1464,5579,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 19:41:35','','0000-00-00 00:00:00'),(9006,0,0,1505,1464,5579,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-08 19:43:02','','0000-00-00 00:00:00'),(9007,0,0,3866,3762,5593,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ANKLE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-08 19:44:42','','0000-00-00 00:00:00'),(9008,0,0,3854,3751,5565,0,0,NULL,'','DIAG','ZZZ','Remark','? RT INGUINAL HERNIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 19:50:26','','0000-00-00 00:00:00'),(9009,0,0,100,89,5581,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow u pcase -----4-5 episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 19:53:43','','0000-00-00 00:00:00'),(9010,0,0,100,89,5581,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dx hallpike--nad</p>\n\n<p>hit---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 19:53:57','','0000-00-00 00:00:00'),(9011,0,0,3833,3730,5533,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE ABDOMEN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 19:54:50','','0000-00-00 00:00:00'),(9012,0,0,2669,2607,5587,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partailly better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 20:01:11','darshan','2025-12-08 20:01:36'),(9013,0,0,2669,2607,5587,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 20:02:19','','0000-00-00 00:00:00'),(9015,0,0,3797,3692,5473,0,0,NULL,'','DIAG','ZZZ','Remark','CLW ON RT LOIN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 20:12:07','','0000-00-00 00:00:00'),(9016,0,0,3836,3733,5539,0,0,NULL,'','DIAG','ZZZ','Remark','RT AXILLARY SWELLING','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-08 20:20:36','','0000-00-00 00:00:00'),(9017,0,0,2669,2607,5587,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-08 20:22:04','','0000-00-00 00:00:00'),(9018,0,0,2318,2261,5594,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better paritally&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 20:30:41','','0000-00-00 00:00:00'),(9019,0,0,3868,3764,5600,0,0,NULL,'','CC','ZZZ','Remark','RECURENCT NASAL DISCHARGE ---FEW MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 20:39:25','darshan','2025-12-09 18:03:27'),(9020,0,0,3868,3764,5600,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose----mild cngested</p>\n\n<p>neck--rigth 2x2 cm thyroid swelling</p>\n\n<p>CT psn--mild mucosal thickening both maxillary sinus</p>\n\n<p>Usg--right thyroid cystic lesion</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-08 20:40:58','darshan','2025-12-09 18:04:21'),(9021,0,0,3720,253,5338,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO DYSPNOEA</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 21:13:32','mo','2025-12-08 21:14:57'),(9022,0,0,3720,253,5338,0,0,NULL,'','TREATDISC_TI','','','<P>INJ UNITREX-S (1.5 GM/DIL)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;9AM-----9PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 1 DAY (2 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR&nbsp; 5 DAYS</P>\r\n\r\n<P>TAB DERIPHYLLIN RETARD (300 MG)&nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS</P>\r\n\r\n<P>TAB STAGLIM M1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZOFER MD (4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR VOMITING..........(5)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>START ON 10/10/2025:</STRONG></P>\r\n\r\n<P>TAB XOXE (250 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-08 21:13:32','mo','2025-12-08 21:14:57'),(9023,0,0,3863,261,5583,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-COMMUNITY ACQUIRED PNEUMONIA</STRONG></P>\r\n\r\n<P><STRONG>-SEPTIC SHOCK</STRONG></P>\r\n\r\n<P><STRONG>-CHRONIC ANAEMIA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 01:54:00','mo','2025-12-14 12:28:38'),(9024,0,0,3863,261,5583,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST MEDICAL HISTORY:&nbsp;</STRONG>PULMONARY KOCH&#39;S</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 01:54:00','mo','2025-12-14 12:28:38'),(9025,0,0,3863,261,5583,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 52 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O: PULMONARY KOCH&#39;S -TREATMENT TAKEN IN PAST<BR />\r\nC/O: BREATHLESSNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; COUGHING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; WEIGHT LOSS SINCE 4-5 DAYS</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>HRCT SCAN OF CHEST (26/11/2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-80/MIN<BR />\r\nBP-90/50MMHG<BR />\r\nSPO2-90% ON RA<BR />\r\nRR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\nMONTOUX TEST DONE ON 9/12/2025 WHICH S/O: NEGATIVE&nbsp;</P>\r\n\r\n<P>SPUTUM RM DONE ON 9/12/2025 WHICH S/O PUS CELL: 120-130, RBC:15-20, GRAM -VE BACILLI, FEW FUNGAL LIKE ELEMENTS</P>\r\n\r\n<P>SPUTUM AFB SENT ON 9/12/2025 WHICH S/O: NO ACID FAST BACILLI SEEN</P>\r\n\r\n<P>SPUTUM CS SENT ON 10/12/2025 WHICH S/O: NO ANY BACTERIAL GROWTH&nbsp;</P>\r\n\r\n<P>SERUM FERRITIN DONE ON 13/12/2025 WHICH S/O:&nbsp;339.76 NG/ML<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 01:54:00','mo','2025-12-14 12:28:38'),(9026,0,0,3863,261,5583,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 01:54:00','mo','2025-12-14 12:28:38'),(9027,0,0,3863,261,5583,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>INJ GUFIMER</P>\r\n\r\n<P>CAP FLUVIR</P>\r\n\r\n<P>TAB LEVOFLOX</P>\r\n\r\n<P>TAB CALPOL</P>\r\n\r\n<P>NEB DUOLINE</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ VITNEURIN</P>\r\n\r\n<P>TAB PULMOCLEAR</P>\r\n\r\n<P>LIQ HIRDIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 01:54:00','mo','2025-12-14 12:28:38'),(9028,0,0,3778,257,5443,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>INCISION AND DRAINAGE OF ABSCESS + STAPPLED CIRCUMSCISION (ZSR) DONE BY DR PRATAPSINH DODIYA ON 08/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 02:43:58','mo','2025-12-09 14:05:08'),(9029,0,0,3700,250,5307,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-PRES SYNDROME</STRONG></P>\r\n\r\n<P><STRONG>-ACUTE SYMPTOMATIC SEIZURE</STRONG></P>\r\n\r\n<P><STRONG>-ACCELERATED HT</STRONG></P>\r\n\r\n<P><STRONG>-ACUTE KIDNEY INJURY&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>-POST LSCS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 02:45:29','mo','2025-12-11 15:16:55'),(9030,0,0,3700,250,5307,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-09 02:45:29','mo','2025-12-11 15:16:55'),(9031,0,0,3700,250,5307,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 31 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nH/O: RECENTLY LSCS + PRIMI + 37 WEEK WITH GDM (CONTROL ON DIET)<BR />\r\nC/O: BLUREED VESION Y`DAY ON 04-12-2025</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TODAY 2 EPISODE OF CONVULSION AT 5.30 PM.</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TOUNGE BITE&nbsp;</P>\r\n\r\n<P>PRIMARY RX TAKEN AT 108 AMBULANCE.</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP- AFEBRILE&nbsp;<BR />\r\nPR- 93/MIN<BR />\r\nBP- 160/117MMHG<BR />\r\nSPO2- 95% ON RA<BR />\r\nRR- 26/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C GCS =15/15.<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05-12-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ANTICONVULSION LODING DOSE GIVEN STAT.</P>\r\n\r\n<P>IN VIEW OF HYPERTENSION INJ. LOBAT DRIP START BY INFUSION PUMP.</P>\r\n\r\n<P>FOLY`S CATH DONE.</P>\r\n\r\n<P>USG ABDOMEN DONE REPORT ATTACH WITH FILE.<BR />\r\nSEEN BY DR. ROSHAN MISTRY (NURO PHYSAIN) ADVICE FOLLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>06-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED, FOLLO VERBAL COMAND.</P>\r\n\r\n<P>MRI OF BRAIN WITH VENOGRAPHY DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>PATIENT HAD C/O LEFT SHOULER JOINT PAIN, X RAY DONE - REPORT ATTACH WITH FILE, REFERENCE DONE DR. SAGAR KHANPARA (ORTHOPEDIC) ADVICD FOLLOWED.</P>\r\n\r\n<P>SEEN BY DR. ROSHAN MISTRY ( NEUROPHYSAIN0&nbsp;ADVICE FOLLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>07-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED, FOLLO VERBAL COMAND.</P>\r\n\r\n<P>S. CREATININE LEVEL - 2.15.</P>\r\n\r\n<P>SEEN BY DR. DENISH SAVALIY (NEPHROLOGIST) ADVICE FOLLOWED.</P>\r\n\r\n<P>SEEN BY DR. ROSHAN MISTRY ( NEUROPHYSAIN0&nbsp;ADVICE FOLLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>08-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED, FOLLO VERBAL COMAND.</P>\r\n\r\n<P>SEEN BY DR. DENISH SAVALIY (NEPHROLOGIST) ADVICE FOLLOWED.</P>\r\n\r\n<P>SEEN BY DR. ROSHAN MISTRY ( NEUROPHYSAIN0&nbsp;ADVICE FOLLOWED.</P>\r\n\r\n<P>ANTI NUCLEAR ANTIBODY (ANA - IF) - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>URINARY PROTEIN - CREATININE RATION - 0.40 , RPEOPRT ATTACH WIHT FILE.</P>\r\n\r\n<P>PATIENT SHIFT TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>09-12-2025,</P>\r\n\r\n<P>SEEN BY DR. ROSHAN MISTRY ( NEUROPHYSAIN)&nbsp;ADVICE FOLLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10-12-2025,</P>\r\n\r\n<P>SEEN BY DR. DENISH SAVALIYA (NEPHROLOGIST) ADVICE FOLLOWED.</P>\r\n\r\n<P>FOLEY&#39;S CLAMP AND REMOVE&nbsp;</P>\r\n\r\n<P>MOBILIZATION DONE&nbsp;</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11-12-2025,</P>\r\n\r\n<P>SEEN BY DR. DENISH SAVALIYA (NEPHROLOGIST) ADVICE FOLLOWED.</P>\r\n\r\n<P>URINE R/M DONE WHICH S/O; 8-10 PUS CELL</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 02:45:29','mo','2025-12-11 15:16:55'),(9032,0,0,3636,247,5175,0,0,NULL,'','DISCCOND','','','<P>E4V5M6</P>\r\n\r\n<P>APHASIA IMPROVING</P>\r\n\r\n<P>REFLEX 1 +</P>\r\n\r\n<P>PLANTAR FLEX (MILD) RIGHT SIDE ATALATIC HEMIPARESIS</P>\r\n\r\n<P>FOLEY&#39;C CATHETER IN SITU (DAY-2,NO-14)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 10:42:05','mo','2025-12-09 10:43:35'),(9033,0,0,3636,247,5175,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 10 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 10:42:05','mo','2025-12-09 10:43:35'),(9034,0,0,3636,247,5175,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZIFI CV (200MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .....FOR 5 DAYS</P>\r\n\r\n<P>TAB R PRESS D&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; ....FOR 10 DAYS&nbsp;</P>\r\n\r\n<P>TAB ECOSPRIN (150MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.....FOR 10&nbsp;DAYS</P>\r\n\r\n<P>TAB ALLSTAT (40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.....FOR 10&nbsp;DAYS&nbsp;</P>\r\n\r\n<P>TAB CLAVIX(75MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.....FOR 10 DAYS&nbsp;</P>\r\n\r\n<P>TAB BRIQ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.....FOR 10 DAYS</P>\r\n\r\n<P>TAB VITALIZER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......FOR 10 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>BETADIN SOLUTION (100ML)&nbsp; &nbsp; FOR FOLEY&#39;S CARE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ..........(1)</P>\r\n\r\n<P>GAUSE PIECE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1 PACKET&nbsp; FOR FOLEY&#39;S CARE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ..........(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 10:42:05','mo','2025-12-09 10:43:35'),(9035,0,0,3325,3243,5613,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 10:49:01','','0000-00-00 00:00:00'),(9037,0,0,3325,3243,5613,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 10:54:14','','0000-00-00 00:00:00'),(9038,0,0,367,351,5605,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--5-6 episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 10:58:11','','0000-00-00 00:00:00'),(9041,0,0,2696,2628,5612,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:04:17','','0000-00-00 00:00:00'),(9043,0,0,2696,2628,5612,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:06:41','','0000-00-00 00:00:00'),(9044,0,0,897,865,5618,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---recurence headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:09:22','','0000-00-00 00:00:00'),(9045,0,0,897,865,5618,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose---congested&thinsp;</p>\n\n<p>phx---mild&thinsp; congested&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:10:13','','0000-00-00 00:00:00'),(9046,0,0,624,264,5604,0,0,NULL,'','DISCDIAG','','','<P>HYPERTENSIVE HEART FAILURE&nbsp;</P>\r\n\r\n<P>IN C/O CKD;HTN;DM</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 11:13:52','mo','2025-12-09 12:48:34'),(9047,0,0,624,264,5604,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 11:13:52','mo','2025-12-09 12:48:34'),(9048,0,0,624,264,5604,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 55 YEARS OLD MALE PATIENT P/W K/C/O DM;HTN;CKD</P>\r\n\r\n<P>WITH C/O COUGH-COLD;DRY COUGHING;BREATHING DIFFICULTY;HEAVINESS OF CHEST SINCE 3-4 DAYS.INCREASED BREATHLESSNESS SINCE TODAY EVENING.</P>\r\n\r\n<P>SO,PRIMARY TREATMENT TAKEN AT DR.VIPUL BODA THEN CAME HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-97 F</P>\r\n\r\n<P>PR-130/MIN</P>\r\n\r\n<P>BP-200/106MMHG</P>\r\n\r\n<P>SPO2-95% ON RA</P>\r\n\r\n<P>RR-28/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-B/L CREPS+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>08/1/2/25,</P>\r\n\r\n<P>ALL REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>O2 SUPPORT GIVEN.</P>\r\n\r\n<P>IN VIEW OF HYPERTENSIVE FAILURE WITH PULMONARY EDEMA&nbsp;&nbsp;MANAGED BY IV NTG AND DYTOR DRIP.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>09/12/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>O2 SUPPORT TAPER AND OFF.</P>\r\n\r\n<P>IV NTG DRIP AND DYTOR DRIP TAPER AND OFF.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT DISCHARGED WITH HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 11:13:52','mo','2025-12-09 12:48:34'),(9049,0,0,624,264,5604,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYTOR DRIP</P>\r\n\r\n<P>INJ NTG DRIP</P>\r\n\r\n<P>INJ PRIMACORT</P>\r\n\r\n<P>TAB C UDP</P>\r\n\r\n<P>TAB FEBUSTAT</P>\r\n\r\n<P>SYP RESWAS</P>\r\n\r\n<P>NEB DUOLIN/BUDECORT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 11:13:52','mo','2025-12-09 12:48:34'),(9050,0,0,624,264,5604,0,0,NULL,'','DISCCOND','','','<P>HEMODYNAMICALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 11:15:29','mo','2025-12-09 12:48:34'),(9051,0,0,624,264,5604,0,0,NULL,'','ADVICE','','','<P>SOFT DIET(ADD,K+FREE)</P>\r\n\r\n<P>FOLLOW UP AFTER 1 MONTH</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 11:15:29','mo','2025-12-09 12:48:34'),(9052,0,0,3880,3776,5622,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:18:08','darshan','2025-12-09 11:18:35'),(9053,0,0,3880,3776,5622,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----20-22 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:18:19','','0000-00-00 00:00:00'),(9054,0,0,3880,3776,5622,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:18:50','darshan','2025-12-09 13:22:17'),(9056,0,0,3880,3776,5622,0,0,NULL,'','DIAG','ZZZ','Remark','INTERNMITTENT BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:19:21','','0000-00-00 00:00:00'),(9057,0,0,3884,3780,5629,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:21:38','','0000-00-00 00:00:00'),(9058,0,0,3878,3774,5619,0,0,NULL,'','HIST','ZZZ','Remark','<p>foflow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:24:57','','0000-00-00 00:00:00'),(9059,0,0,624,264,5604,0,0,NULL,'','TREATDISC_TI','','','<P>TAB TORKID 20 ----- 45</P>\r\n\r\n<P>1-1/2-0</P>\r\n\r\n<P>TAB FEBUSTAT 40MG ----- 30</P>\r\n\r\n<P>0-0-1</P>\r\n\r\n<P>TAB C-UDP 20 ----- 30</P>\r\n\r\n<P>1-0-0</P>\r\n\r\n<P>TAB GLCOBAY ----- 90</P>\r\n\r\n<P>1-1-1</P>\r\n\r\n<P>INJ H.MIXTARD 30/70 ----2</P>\r\n\r\n<P>26 U BBF</P>\r\n\r\n<P>16 U BL</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 11:30:18','mo','2025-12-09 12:48:34'),(9061,0,0,3872,3768,5609,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of vertigo -remains for few mins to hrs&thinsp;</p>\n\n<p>heaviness of head with rigth ear deafness +</p>\n\n<p>no asociated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:34:32','darshan','2025-12-09 11:35:30'),(9062,0,0,3872,3768,5609,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----2-3 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:34:53','','0000-00-00 00:00:00'),(9063,0,0,3872,3768,5609,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR DEAFNESS AND TINNITUS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:34:53','','0000-00-00 00:00:00'),(9064,0,0,3872,3768,5609,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nads</p>\n\n<p>hit-nad</p>\n\n<p>MRI brain with cervical spine---no cva or sol</p>\n\n<p>pta---right moderate to severe and left high freq moderate sn deafness</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>CCG--right ward rotation</p>\n\n<p>vng--right labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:35:39','darshan','2025-12-09 13:34:47'),(9065,0,0,3892,3788,5640,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-09 11:35:41','','0000-00-00 00:00:00'),(9067,0,0,3780,258,5445,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-COMMUNITY ACQUIRED PNEUMONIA</STRONG></P>\r\n\r\n<P><STRONG>-AKI</STRONG></P>\r\n\r\n<P><STRONG>-CAD</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 11:38:33','mo','2025-12-11 12:38:08'),(9068,0,0,3780,258,5445,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-09 11:38:33','mo','2025-12-11 12:38:08'),(9069,0,0,3780,258,5445,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 78 YEARS OLD MALE PATIENT P/W H/O COUGH-COLD SINCE LAST 1 WEEK WITH</P>\r\n\r\n<P>C/O DOE SINCE 2-3 DAYS.SUDDENLEY PERSPIRATION WITH SEVERE BREATHLESSNESS;ORTHOPNEA SINCE TODAY @ 3AM.</P>\r\n\r\n<P>SO,RELATIVE BROUGHT HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-97 F</P>\r\n\r\n<P>PR-170/MIN</P>\r\n\r\n<P>BP-240/130MMHG</P>\r\n\r\n<P>SPO2-80% ON RA</P>\r\n\r\n<P>RR-38/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-B/L CREPS+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-404 MG/DL</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL COPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU AND PRIMARY TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>08/12/25,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>IN VIEW OF TACHYPNEA WITH LOW SPO2 SO,PUT ON NIV SUPPORT.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>IN VIEW OF HYPERTENSIVE HEART FAILURE MANAGED BY IV NTG DRIP STARTED.IV DIURETIC GIVEN.</P>\r\n\r\n<P>NT PRO BNP DONE.S/O 3220 PG/ML</P>\r\n\r\n<P>CHEST X-RAY DONE.</P>\r\n\r\n<P>2D ECHO DONE.REPORT ATTACHED WITH FILE.TREATMENT MODIFIED.</P>\r\n\r\n<P>SPUTUM ROUTINE MICRO SENT.S/O PUS 40-45/HPF.OCCASIONAL GRAM NEGATIVE BACILLI SEEN.FEW FUNGLE LIKE ELEMENTS SEEN.CULTURE SENT.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>GRADUALLY PATIENT&#39;S RESPIRATION WAS IMPROVED SO,NIV OFF TRIAL GIVEN.O2 SUPPORT TAPER AND OFF.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>09/12/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>PATIENT ON OFF O2.</P>\r\n\r\n<P>NTG DRIP&nbsp;TAPER AND OFF.</P>\r\n\r\n<P>PATIENT VITALLY STABLE.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10/12/25,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>SPUTUM CS GROWTH OF GRAM -VE BACILLI ACINEBACTER BAUMANI SEEN</P>\r\n\r\n<P>FOLEY&#39;S CLAMP &AMP; REMOVE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11/12/25,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 11:38:33','mo','2025-12-11 12:38:08'),(9070,0,0,3780,258,5445,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX S</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ DERIPHYLLIN</P>\r\n\r\n<P>INJ NTG</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>TAB BISOBIS</P>\r\n\r\n<P>TAB DAPARYL L</P>\r\n\r\n<P>TAB STAGLIM M2</P>\r\n\r\n<P>NEB DUOLIN/BUDECORT</P>\r\n\r\n<P>TAB TORESIS PLUS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 11:38:33','mo','2025-12-11 12:38:08'),(9071,0,0,3882,3778,5627,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:41:06','','0000-00-00 00:00:00'),(9072,0,0,3882,3778,5627,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR DEAFNESS---2 MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:41:06','','0000-00-00 00:00:00'),(9073,0,0,3882,3778,5627,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of left ear deafness and tinnitus with blockage feeling&thinsp;</p>\n\n<p>episodic vertigo --sudden onset of rotaotyr feeling any time and remains for few hrs&thinsp;</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:44:51','','0000-00-00 00:00:00'),(9074,0,0,3827,260,5527,0,0,NULL,'','DISCDIAG','','','<P><STRONG>POSTERIOR CIRCULATION&nbsp;INFARCT</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 11:45:00','mo','2025-12-13 13:34:46'),(9075,0,0,3827,260,5527,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-09 11:45:00','mo','2025-12-13 13:34:46'),(9076,0,0,3827,260,5527,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 75 YEARS OLD MALE PATIENT P/W C/O GIDDINESS WITH GAIT IMBALANCE;HEADACHE;SLURRED SPEECH SINCE TODAY MORNING.</P>\r\n\r\n<P>NO H/O GTCS/LOC/VOMITING</P>\r\n\r\n<P>SO,PRIMARY TREATMENT TAKEN AT CIVIL HOSPITAL THEN CAME HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-98.4 F</P>\r\n\r\n<P>PR-40/MIN</P>\r\n\r\n<P>BP-102/68MMHG</P>\r\n\r\n<P>SPO2-96% ON RA</P>\r\n\r\n<P>RR-16/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C,MOVING ALL 4 LIMBS;MILD SLURRED SPEECH +;E4V5M6</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-109 MG/DL</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>08/12/25,</P>\r\n\r\n<P>ALL REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>MRI BRAIN DONE.REPORT ATTACHED WITH FILE.TREATMENT MODIFIED.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>09/12/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C.E4V5M6</P>\r\n\r\n<P>SLURRED SPEECH IMPROVED.</P>\r\n\r\n<P>NEUROPHYSICIAN DR.ROSHAN MISTRY REFERENCE DONE.FOLLOWED ALL HIS ADVICE.</P>\r\n\r\n<P>2D ECHO DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10/12/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C.E4V5M6</P>\r\n\r\n<P>SPEECH IMPROVED.</P>\r\n\r\n<P>NO ANY FRESH COMPLAINTS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11/12/25,</P>\r\n\r\n<P>GRADUALLY PATIENT&#39;S CONDITION IMPROVED.</P>\r\n\r\n<P>MOBILISATION STARTED, NO C/O GIDDINESS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12/12/2025</P>\r\n\r\n<P>PHYSIOTHERAPY START&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13/12/205</P>\r\n\r\n<P>PATIENT CONDITION IMPROVE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 11:45:00','mo','2025-12-13 13:34:46'),(9077,0,0,3882,3778,5627,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----left moderate sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>CCG---AP displacement abnormal&thinsp;</p>\n\n<p>vng---left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:45:11','darshan','2025-12-09 13:52:15'),(9079,0,0,3827,260,5527,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LEVIGRESS</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ CLEXANE</P>\r\n\r\n<P>TAB ECOSPRIN</P>\r\n\r\n<P>TAB LIPITAS</P>\r\n\r\n<P>TAB CLAVIX</P>\r\n\r\n<P>TAB STUGERON PLUS</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>TAB LEVIGRESS</P>\r\n\r\n<P>INJ CLEXANE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 11:50:55','mo','2025-12-13 13:34:46'),(9080,0,0,3873,3769,5610,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better for giddiness&thinsp;</p>\n\n<p>Right ear tinnitus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:51:19','darshan','2025-12-09 11:51:30'),(9081,0,0,3873,3769,5610,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:51:22','','0000-00-00 00:00:00'),(9083,0,0,3873,3769,5610,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 11:54:11','','0000-00-00 00:00:00'),(9084,0,0,3874,3770,5614,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----15-20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:01:34','','0000-00-00 00:00:00'),(9085,0,0,3874,3770,5614,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:02:08','','0000-00-00 00:00:00'),(9086,0,0,3874,3770,5614,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>PTA----Bilateral high freq&thinsp; mild to moderate sn deafness</p>\n\n<p>vng--left hz canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:02:24','darshan','2025-12-09 14:02:25'),(9088,0,0,3820,3718,5511,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:08:30','','0000-00-00 00:00:00'),(9090,0,0,3820,3718,5511,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:10:24','','0000-00-00 00:00:00'),(9091,0,0,3876,3772,5616,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----3 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:18:56','','0000-00-00 00:00:00'),(9092,0,0,3876,3772,5616,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo--sometime positional giddiness with severe spinning sensation also</p>\n\n<p>no asociated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:19:36','darshan','2025-12-09 12:20:16'),(9093,0,0,3876,3772,5616,0,0,NULL,'','CC','ZZZ','Remark','SENSE OF IMBALANCE ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:19:44','','0000-00-00 00:00:00'),(9094,0,0,3876,3772,5616,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>vng---nad(O)</p>\n\n<p>pta---bilateral high freq moderate to severe sn deafness&thinsp;</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:20:34','darshan','2025-12-09 17:41:50'),(9096,0,0,367,351,5605,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS ITGM ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:23:23','','0000-00-00 00:00:00'),(9097,0,0,169,156,5642,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:27:09','','0000-00-00 00:00:00'),(9098,0,0,3895,3791,5645,0,0,NULL,'','DIAG','ZZZ','Remark','LT BREAST LUMP','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-09 12:28:59','','0000-00-00 00:00:00'),(9099,0,0,3877,3773,5617,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:32:29','','0000-00-00 00:00:00'),(9101,0,0,2449,2392,5623,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---</p>\n\n<p>nose----mild congested</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:34:32','','0000-00-00 00:00:00'),(9102,0,0,289,273,5625,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up caes-recurrence of vertigo&thinsp;</p>\n\n<p>mild headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:37:38','','0000-00-00 00:00:00'),(9103,0,0,3881,3777,5626,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:39:48','','0000-00-00 00:00:00'),(9104,0,0,3891,3787,5639,0,0,NULL,'','CC','ZZZ','Remark','HEMOPTYSIS 1 EPISODE||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-09 12:44:45','','0000-00-00 00:00:00'),(9105,0,0,3891,3787,5639,0,0,NULL,'','HIST','ZZZ','Remark','<p>no c/o chest pain</p>\n\n<p>no c/o breathlessness</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-09 12:45:16','','0000-00-00 00:00:00'),(9106,0,0,3891,3787,5639,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>RS - CLEAR</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-09 12:46:25','','0000-00-00 00:00:00'),(9107,0,0,3902,3798,5655,0,0,NULL,'','DIAG','ZZZ','Remark','LT INDIRECT INGUINAL HERNIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-09 12:46:50','','0000-00-00 00:00:00'),(9108,0,0,3898,3794,5648,0,0,NULL,'','CC','ZZZ','Remark','VRTIGO=20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:48:09','','0000-00-00 00:00:00'),(9109,0,0,3898,3794,5648,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotawtyr feeling on change of posture</p>\n\n<p>heaviness of right ear +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:48:43','','0000-00-00 00:00:00'),(9110,0,0,3898,3794,5648,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dx hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain--nad</p>\n\n<p>pta--wnl</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---left post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:49:08','darshan','2025-12-09 14:23:48'),(9112,0,0,3885,3781,5630,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----3-4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:54:15','','0000-00-00 00:00:00'),(9113,0,0,3885,3781,5630,0,0,NULL,'','HIST','ZZZ','Remark','<p>positioanl giddiness</p>\n\n<p>heaviness of head+</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:54:26','','0000-00-00 00:00:00'),(9114,0,0,3885,3781,5630,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry---reduced ss score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:54:37','darshan','2025-12-09 17:31:41'),(9116,0,0,3260,3174,5651,0,0,NULL,'','HIST','ZZZ','Remark','<p>follwo up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:58:29','','0000-00-00 00:00:00'),(9118,0,0,3260,3174,5651,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER 5 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 12:59:22','','0000-00-00 00:00:00'),(9124,0,0,3903,3799,5658,0,0,NULL,'','MADVICE','ZZZ','Remark','HOLD TAB ROSULESS A 3 DAYS BEFORE SURGERY \nPATIENT CAN BE TAKEN FOR SURGERY WITH DUE ANESTHETIC DRUGS AND SURGICAL RISK','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-09 13:03:51','','0000-00-00 00:00:00'),(9125,0,0,3894,3790,5644,0,0,NULL,'','CC','ZZZ','Remark','C/O CHEST PAIN  | 1 DAYS | TODAY MORNING','','',0,'0000-00-00 00:00:00','drarchit','2025-12-09 13:04:27','','0000-00-00 00:00:00'),(9126,0,0,3894,3790,5644,0,0,NULL,'','CC','ZZZ','Remark','C/O GABHRAMAN | | SINCE MORNING','','',0,'0000-00-00 00:00:00','drarchit','2025-12-09 13:04:27','','0000-00-00 00:00:00'),(9127,0,0,3897,3793,5647,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:04:45','','0000-00-00 00:00:00'),(9128,0,0,3894,3790,5644,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO C/O DOE</p>\n\n<p>NO C/O PALPITATION</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-09 13:04:47','','0000-00-00 00:00:00'),(9129,0,0,3897,3793,5647,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>dix halpike--right faint hz nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:05:01','darshan','2025-12-09 13:05:47'),(9130,0,0,3894,3790,5644,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CVS -S1 S2 -NORMAL</p>\n\n<p>REST CLINICALLY NAD</p>\n\n<p>ECG -NAD</p>\n\n<p>S. TROP 121</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-09 13:05:17','drarchit','2025-12-09 13:06:15'),(9131,0,0,3897,3793,5647,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:05:25','','0000-00-00 00:00:00'),(9132,0,0,3894,3790,5644,0,0,NULL,'','DIAG','ZZZ','Remark','CHEST PAIN UNDER IX TO R/O CAD','','',0,'0000-00-00 00:00:00','drarchit','2025-12-09 13:05:26','','0000-00-00 00:00:00'),(9134,0,0,3897,3793,5647,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:05:56','','0000-00-00 00:00:00'),(9135,0,0,3896,3792,5646,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3.5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:09:45','','0000-00-00 00:00:00'),(9136,0,0,3896,3792,5646,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo---sudden onset of rotaotyr feeling with sense of imbalance&thinsp;</p>\n\n<p>left ear deafness and tinnitus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:10:17','darshan','2025-12-09 13:13:11'),(9137,0,0,3896,3792,5646,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit---nad</p>\n\n<p>MRI brain limited study--nad</p>\n\n<p>pta--left moderate to severe sn deafness</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng--left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:13:28','darshan','2025-12-09 18:20:20'),(9139,0,0,1207,1168,5649,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---medicine skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:16:34','','0000-00-00 00:00:00'),(9140,0,0,3887,3783,5632,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:19:21','','0000-00-00 00:00:00'),(9141,0,0,3880,3776,5622,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:22:47','','0000-00-00 00:00:00'),(9143,0,0,3889,3785,5634,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo</p>\n\n<p>dix hallpike--rigth torsonal goetrpic nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:26:07','','0000-00-00 00:00:00'),(9144,0,0,3889,3785,5634,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:26:35','','0000-00-00 00:00:00'),(9146,0,0,3889,3785,5634,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:26:51','','0000-00-00 00:00:00'),(9147,0,0,310,294,5637,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:28:54','','0000-00-00 00:00:00'),(9149,0,0,310,294,5637,0,0,NULL,'','MADVICE','ZZZ','Remark','PSYCHIATRIST OPINION ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:30:16','','0000-00-00 00:00:00'),(9150,0,0,3872,3768,5609,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:34:49','','0000-00-00 00:00:00'),(9152,0,0,3880,3776,5622,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:36:45','','0000-00-00 00:00:00'),(9153,0,0,3893,3789,5641,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associted other cns symtpso&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:39:49','darshan','2025-12-09 13:46:00'),(9154,0,0,3778,257,5443,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; .........(10)</P>\r\n\r\n<P>TAB METRO-ER(600MG)&nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; .........(10)</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; .........(10)</P>\r\n\r\n<P>TAB ZERODOL-SP&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; .........(10)</P>\r\n\r\n<P>SYP LECTIHEP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 10ML&nbsp; &nbsp; &nbsp; &nbsp; HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(1)</P>\r\n\r\n<P>LOX JELLY 2%&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE DEFECATION&nbsp; &nbsp; &nbsp; ........(1)</P>\r\n\r\n<P>METROGYL P OINT&nbsp; &nbsp; &nbsp;FOR L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER DEFECATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(1)</P>\r\n\r\n<P>NEOSPORIN OINT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR L/A&nbsp; &nbsp; &nbsp; AS EXPLAINED&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:</P>\r\n\r\n<P>TAB TELMIRIDE MT (50)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 13:40:26','mo','2025-12-09 14:05:08'),(9155,0,0,3893,3789,5641,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:43:18','','0000-00-00 00:00:00'),(9156,0,0,3893,3789,5641,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--wnl</p>\n\n<p>stabilomtry--reduced vestibular and ss score</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:46:16','darshan','2025-12-09 14:32:39'),(9158,0,0,3778,257,5443,0,0,NULL,'','OTNOTE','','','<p>circumscision :&nbsp;</p>\r\n\r\n<p>- thick wall prepenile skin</p>\r\n\r\n<p>- incision kept in thick skin to retract it</p>\r\n\r\n<p>- glans penis normal</p>\r\n\r\n<p>- meatus normal</p>\r\n\r\n<p>- circumscision stappler no-32 mm done</p>\r\n\r\n<p>- hemostasis checked</p>\r\n\r\n<p>- dressing done</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>perianal abscess :</p>\r\n\r\n<p>- intersphencteric &amp; submucosal abscess at 12 o&#39;clock position</p>\r\n\r\n<p>- hypertrophied papilla&nbsp; cauterised&nbsp;</p>\r\n\r\n<p>- hemostasis checked</p>\r\n\r\n<p>- dressing kept</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 13:52:03','mo','2025-12-09 14:05:08'),(9159,0,0,3778,257,5443,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 13:52:03','mo','2025-12-09 14:05:08'),(9160,0,0,3882,3778,5627,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:52:18','','0000-00-00 00:00:00'),(9161,0,0,3899,3795,5650,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:56:31','','0000-00-00 00:00:00'),(9162,0,0,3899,3795,5650,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN WITH IRRITATION-----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:57:14','','0000-00-00 00:00:00'),(9163,0,0,3899,3795,5650,0,0,NULL,'','CC','ZZZ','Remark','NASAL BLOCAKGE ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:57:14','','0000-00-00 00:00:00'),(9164,0,0,3899,3795,5650,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose----severely congested&thinsp;</p>\n\n<p>phx---congested&thinsp;</p>\n\n<p>bTM---I/R</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 13:57:54','','0000-00-00 00:00:00'),(9167,0,0,3874,3770,5614,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 14:02:48','','0000-00-00 00:00:00'),(9169,0,0,3900,3796,5652,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 14:10:04','','0000-00-00 00:00:00'),(9171,0,0,3874,3770,5614,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAWENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 14:11:15','','0000-00-00 00:00:00'),(9172,0,0,3877,3773,5617,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 14:13:26','darshan','2025-12-09 14:15:32'),(9173,0,0,3877,3773,5617,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmsu-absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit---nad</p>\n\n<p>stabilomet---reduced vestibular score</p>\n\n<p>vng---left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 14:15:29','darshan','2025-12-09 14:16:09'),(9174,0,0,3877,3773,5617,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 14:16:33','','0000-00-00 00:00:00'),(9177,0,0,3877,3773,5617,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 14:19:03','','0000-00-00 00:00:00'),(9178,0,0,3898,3794,5648,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 14:24:26','','0000-00-00 00:00:00'),(9181,0,0,3898,3794,5648,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 14:25:21','','0000-00-00 00:00:00'),(9182,0,0,3893,3789,5641,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 14:33:16','','0000-00-00 00:00:00'),(9185,0,0,3893,3789,5641,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MANEUVER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 14:33:43','','0000-00-00 00:00:00'),(9186,0,0,2597,2540,5373,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 14:51:08','','0000-00-00 00:00:00'),(9187,0,0,2597,2540,4326,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 14:51:39','','0000-00-00 00:00:00'),(9188,0,0,1587,1544,5664,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better for headache and gidiness&thinsp;</p>\n\n<p>neck pain +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 17:02:50','','0000-00-00 00:00:00'),(9190,0,0,1587,1544,5664,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS MRI CERVICAL SPINE ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 17:04:36','','0000-00-00 00:00:00'),(9191,0,0,3207,3121,5666,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n\n<p>Right ear wax removed&thinsp;</p>\n\n<p>RTM---i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 17:08:23','','0000-00-00 00:00:00'),(9192,0,0,3765,256,5426,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACCELERATED HYPERTENSION</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 17:12:41','mo','2025-12-10 21:53:55'),(9193,0,0,3765,256,5426,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-09 17:12:41','mo','2025-12-10 21:53:55'),(9194,0,0,3765,256,5426,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 63 YEARS OLD FEMALE PATIENT P/W K/C/O HTN</P>\r\n\r\n<P>WITH C/O PALPITATION;HEAVINESS OF CHEST AND HEAD;UNEASINESS SINCE LAST 1 HOUR.</P>\r\n\r\n<P>NO H/O PERSPIRATION/VOMITING/GABHARAMAN ETC.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-98 F</P>\r\n\r\n<P>PR-110/MIN</P>\r\n\r\n<P>BP-190/110MMHG</P>\r\n\r\n<P>SPO2-98% ON RA</P>\r\n\r\n<P>RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-141 MG/DL</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>07/12/25,</P>\r\n\r\n<P>ALL REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>IN VIEW OF ACCELERATED HYPERTENSION MANAGED BY IV NTG DRIP.</P>\r\n\r\n<P>TROP-I SENT.S/O &LT;1.5 NG/L</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>08/12/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>NTG DRIP TAPER.</P>\r\n\r\n<P>URINE ROUTINE MICRO SENT.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>09/12/25,</P>\r\n\r\n<P>PATIENT VITALLY STABLE.</P>\r\n\r\n<P>NTG DRIP TAPER AND OFF.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10/12/25,</P>\r\n\r\n<P>PATIENT VITALLY STABLE</P>\r\n\r\n<P>MOBILIZATION DONE</P>\r\n\r\n<P>HER 2D ECHO REPORT ARE DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 17:12:41','mo','2025-12-10 21:53:55'),(9195,0,0,3765,256,5426,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>INJ NTG DRIP</P>\r\n\r\n<P>TAB TELMICON M</P>\r\n\r\n<P>TAB TRIKA</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 17:12:41','mo','2025-12-10 21:53:55'),(9196,0,0,3907,3802,5668,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----8 MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 17:15:56','','0000-00-00 00:00:00'),(9197,0,0,3907,3802,5668,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting ouit of bed and lying down in bed&thinsp;</p>\n\n<p>sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 17:19:00','','0000-00-00 00:00:00'),(9198,0,0,3907,3802,5668,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---left moderate to severe sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 17:19:11','darshan','2025-12-09 19:14:59'),(9200,0,0,3909,3804,5672,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 17:21:26','','0000-00-00 00:00:00'),(9201,0,0,3908,3803,5671,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 17:26:19','','0000-00-00 00:00:00'),(9202,0,0,3908,3803,5671,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 17:26:50','','0000-00-00 00:00:00'),(9205,0,0,3908,3803,5671,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER \nSOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 17:27:28','','0000-00-00 00:00:00'),(9206,0,0,2872,2803,5673,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 17:35:45','','0000-00-00 00:00:00'),(9208,0,0,3876,3772,5616,0,0,NULL,'','MADVICE','ZZZ','Remark','CONTINUE TREATMENT FOR PARKINSON\'S DISEASE','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 17:43:09','','0000-00-00 00:00:00'),(9209,0,0,3002,2925,5674,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better for giddiness&thinsp;</p>\n\n<p>nasal irritation mild&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 17:48:48','','0000-00-00 00:00:00'),(9211,0,0,3002,2925,5674,0,0,NULL,'','MADVICE','ZZZ','Remark','CT PNS LIMITED STUDY SOS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 17:50:28','','0000-00-00 00:00:00'),(9212,0,0,3911,3806,5677,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up&thinsp; case-----better for facial pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 17:54:54','','0000-00-00 00:00:00'),(9213,0,0,3911,3806,5677,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 17:55:05','','0000-00-00 00:00:00'),(9214,0,0,3915,3809,5681,0,0,NULL,'','DIAG','ZZZ','Remark','LT FOOT CORN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-09 18:02:42','','0000-00-00 00:00:00'),(9215,0,0,3868,3764,5600,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 18:03:30','','0000-00-00 00:00:00'),(9217,0,0,3868,3764,5600,0,0,NULL,'','MADVICE','ZZZ','Remark','FNAC THYROID  SWELLING ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 18:09:48','','0000-00-00 00:00:00'),(9218,0,0,3913,3807,5679,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---medicine skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 18:12:10','','0000-00-00 00:00:00'),(9219,0,0,1873,1827,5683,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 18:15:05','','0000-00-00 00:00:00'),(9220,0,0,3917,3811,5686,0,0,NULL,'','CC','ZZZ','Remark','URTI | 15 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-09 18:23:01','','0000-00-00 00:00:00'),(9221,0,0,3921,3815,5690,0,0,NULL,'','CC','ZZZ','Remark','LOWER BACK PAIN, CALF PAIN | 30 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-09 18:26:35','','0000-00-00 00:00:00'),(9222,0,0,3922,3816,5692,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-09 18:26:54','','0000-00-00 00:00:00'),(9223,0,0,3921,3815,5690,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-09 18:28:48','','0000-00-00 00:00:00'),(9224,0,0,3918,3812,5687,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 18:31:17','','0000-00-00 00:00:00'),(9225,0,0,3926,3821,5698,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-09 18:33:39','','0000-00-00 00:00:00'),(9226,0,0,3926,3821,5698,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-09 18:34:08','','0000-00-00 00:00:00'),(9227,0,0,3918,3812,5687,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head&thinsp; +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 18:34:27','','0000-00-00 00:00:00'),(9228,0,0,3918,3812,5687,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng---right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 18:34:44','darshan','2025-12-09 19:43:27'),(9229,0,0,3918,3812,5687,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 18:34:54','','0000-00-00 00:00:00'),(9231,0,0,3926,3821,5698,0,0,NULL,'','MADVICE','ZZZ','Remark','SALT/ OIL RESTRICTE DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-09 18:36:55','','0000-00-00 00:00:00'),(9232,0,0,3919,3813,5688,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----5-6 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 18:41:21','','0000-00-00 00:00:00'),(9233,0,0,3919,3813,5688,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotry feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 18:41:52','','0000-00-00 00:00:00'),(9234,0,0,3919,3813,5688,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 18:42:11','darshan','2025-12-09 19:51:56'),(9236,0,0,3753,3650,5404,0,0,NULL,'','HIST','ZZZ','Remark','<p>occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 18:51:11','','0000-00-00 00:00:00'),(9238,0,0,3753,3650,5404,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS MRI BRAIN LIMITED STUDY ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 18:54:03','','0000-00-00 00:00:00'),(9239,0,0,3916,3810,5685,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:00:58','','0000-00-00 00:00:00'),(9240,0,0,3916,3810,5685,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling with sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:01:26','','0000-00-00 00:00:00'),(9241,0,0,3916,3810,5685,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--bilateral severe to very severe sn deafness</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng--Bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:01:42','darshan','2025-12-09 20:14:28'),(9242,0,0,3916,3810,5685,0,0,NULL,'','DIAG','ZZZ','Remark','BILATERAL VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:01:51','','0000-00-00 00:00:00'),(9243,0,0,3920,3814,5689,0,0,NULL,'','CC','ZZZ','Remark','C/O DOE  | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-09 19:01:54','','0000-00-00 00:00:00'),(9244,0,0,3920,3814,5689,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-12-09 19:02:05','','0000-00-00 00:00:00'),(9245,0,0,1298,1257,5700,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:03:26','','0000-00-00 00:00:00'),(9246,0,0,1721,1676,5694,0,0,NULL,'','HIST','ZZZ','Remark','<p>foflflfow up case----recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:10:05','','0000-00-00 00:00:00'),(9247,0,0,922,890,5702,0,0,NULL,'','CC','ZZZ','Remark','WEAKNESS, DOE | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-09 19:11:24','','0000-00-00 00:00:00'),(9248,0,0,922,890,5702,0,0,NULL,'','HIST','ZZZ','Remark','<p>&thinsp; &thinsp; &thinsp; &thinsp;&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-09 19:12:43','','0000-00-00 00:00:00'),(9249,0,0,3712,3611,5715,0,0,NULL,'','CC','ZZZ','Remark','BREATHLESS INTERMITTENTLY||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-09 19:20:15','','0000-00-00 00:00:00'),(9250,0,0,1351,1312,5705,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---manevuer not done propertly</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:20:17','','0000-00-00 00:00:00'),(9251,0,0,1351,1312,5705,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--=nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:20:29','','0000-00-00 00:00:00'),(9253,0,0,1351,1312,5705,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:21:38','','0000-00-00 00:00:00'),(9255,0,0,1351,1312,5705,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER \nPSYCHIATRIST OPENION ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:22:42','','0000-00-00 00:00:00'),(9256,0,0,3925,3820,5697,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:25:37','','0000-00-00 00:00:00'),(9257,0,0,3871,263,5603,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACCELERATED HYPERTENSION</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 19:26:04','mo','2025-12-10 21:20:52'),(9258,0,0,3871,263,5603,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-09 19:26:04','mo','2025-12-10 21:20:52'),(9259,0,0,3871,263,5603,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 57 YEARS OLD MALE PATIENT P/W K/C/O HTN</P>\r\n\r\n<P>WITH C/O GIDDINESS;UNEASINESS;HEAVINESS OF CHEST SINCE TODAY MORNING.</P>\r\n\r\n<P>SO,RELATIVE BROUGHT HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-98 F</P>\r\n\r\n<P>PR-80/MIN</P>\r\n\r\n<P>BP-200/110MMHG</P>\r\n\r\n<P>SPO2-98 % ON RA</P>\r\n\r\n<P>RR- 22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-108 MG/DL</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>09/12/25,</P>\r\n\r\n<P>ALL REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>IN VIEW OF ACCELERATED HYPERTENSION MANAGED BY IV NTG DRIP.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>GRADUALLY PATIENT&#39;S BLOOD PRESSURE UNDER CONTROLLED SO,NTG DRIP TAPER ABD OFF.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10/12/25,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>S.TROP I SENT WHICH S/O NAD</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 19:26:04','mo','2025-12-10 21:20:52'),(9260,0,0,3929,3824,5703,0,0,NULL,'','HIST','ZZZ','Remark','<p>for routine ENT examination</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:29:54','','0000-00-00 00:00:00'),(9261,0,0,3929,3824,5703,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose---clear</p>\n\n<p>phx--clear</p>\n\n<p>BTM---i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:30:14','','0000-00-00 00:00:00'),(9262,0,0,3934,3829,5716,0,0,NULL,'','DIAG','ZZZ','Remark','ANTERIOR ANANL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-09 19:34:31','','0000-00-00 00:00:00'),(9263,0,0,3871,263,5603,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>INJ NTG DRIP</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ VITNEURIN</P>\r\n\r\n<P>TAB STUGERON PLUS</P>\r\n\r\n<P>TAB TELSAR</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 19:38:02','mo','2025-12-10 21:20:52'),(9264,0,0,3918,3812,5687,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:43:53','','0000-00-00 00:00:00'),(9266,0,0,3912,267,5678,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LEFT MCA INFARCT IN KNOWN CASE OF MITRAL STENOSIS (ON INJ CLEXANE &AMP; ASPIRIN 75)&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 19:45:30','mo','2025-12-13 11:28:03'),(9267,0,0,3912,267,5678,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-09 19:45:30','mo','2025-12-13 11:28:03'),(9268,0,0,3912,267,5678,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 40 YEARS OLD FEMALE&nbsp; PATIENT PRESENTED WITH,<BR />\r\nK/C/O: RECENTLY DETECTED CVA(ACUTE ISCHEMIC INFARCT,SEVERE MS,RHD,MILD MR.<BR />\r\nH/O:VERTIGO F/BY FALL DOWN AT HOME F/BY UNRESPONSIVE FOR FEW MINS, CONFUSED, APHASIC, NO H/O HEAD INJURY/ENT BLEED OR GTCS.</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; SO PATIENT ADMITTED IN CIVIL HOSPITAL FROM 04/12/2025&nbsp;TO 063/12/2025.</P>\r\n\r\n<P>AFTER THAT PATIENT PRESENT WITH<BR />\r\nC/O:WEAKNESS IN RIGHT UPPER AND LOWER LIMB,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ALTERED SENSORIUM,</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; IRRITABILITY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; APHASIA</P>\r\n\r\n<P>L/E:FOLEY&#39;S IN SITU (NO-14)&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;RYLES TUBE IN SITU</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS PATIENT ADMITTED AT CIVIL HOSPITAL RAJKOT AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION AND NCCT BRAIN ,USG ABDOMEN,2D ECHO,B/L CAROTID DOPPLER DONE AT CIVIL(P.D.U.)HOSPITAL ,RAJKOT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>MRI BRAIN WITH ANGIOGRAPHY DONE ON 9/12/25, WHICH S/O: LARGE ACUTE NON HAEMORRHAGIC INFARCT IN LEFT FRONTO PARIETAL LOBE ,LEFT GANGLIO CAPSULAR CORONA RADIATA REGION,LEFT MCA TERRITORY INFARCT OTHER FINDINGS AS PER REPORT&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-85/MIN<BR />\r\nBP-100/60MMHG<BR />\r\nSPO2-99% ON RA<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS ,WEAKNESS IN RIGHT UPPER AND LOWER LIMB,DECREASE MUSCLE POWER IN RIGHT UPPER AND LOWER LIMB ,&nbsp; POWER- LEFT SIDE - 4 RIGHT SIDE - 0&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>REFERENCE OF DR RAVI BHOJANI (CARDIOLOGIST) REFERENCE DONE AND FOLLOW HIS ALL ADVICE AND LMWX START&nbsp;<BR />\r\nFOLEY&#39;S CATHETER CHANGE ON 12/12/2025 WITH ALL ASEPTIC PRECAUTION&nbsp;</P>\r\n\r\n<P>RYLE&#39;S TUBE REMOVE BY PATIENT HERSELF SO RE INSERTION OF RT DONE AND RT FEEDING START&nbsp;</P>\r\n\r\n<P>RT FEEDING TOLERATE WELL&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>CONSCIOUSNESS LEVEL IMPROVE&nbsp;</P>\r\n\r\n<P>PATIENT GENERAL CONDITION AND PROGNOSIS EXPLAIN TO RELATIVE AND NOW PATIENT BEING DISCHARGE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 19:45:30','mo','2025-12-13 11:28:03'),(9269,0,0,1032,1000,5706,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---mild giddiness persistent</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:47:52','','0000-00-00 00:00:00'),(9271,0,0,1032,1000,5706,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:48:54','','0000-00-00 00:00:00'),(9272,0,0,3912,267,5678,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LEVIPILL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ MANNITOL</P>\r\n\r\n<P>INJ PCM</P>\r\n\r\n<P>INJ CLEXANE</P>\r\n\r\n<P>TAB.ECOSPRIN</P>\r\n\r\n<P>TAB PANTODAC DSR</P>\r\n\r\n<P>TAB MEMENTIN</P>\r\n\r\n<P>TAB PCM&nbsp;&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 19:49:33','mo','2025-12-13 11:28:03'),(9273,0,0,3919,3813,5688,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:52:00','','0000-00-00 00:00:00'),(9274,0,0,3919,3813,5688,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:52:26','','0000-00-00 00:00:00'),(9276,0,0,3932,3827,5711,0,0,NULL,'','CC','ZZZ','Remark','THROAT PAIN----3-4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:54:39','','0000-00-00 00:00:00'),(9277,0,0,3932,3827,5711,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested&thinsp;</p>\n\n<p>nose---mild congested&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 19:54:53','','0000-00-00 00:00:00'),(9278,0,0,3827,260,5527,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-09 19:58:03','mo','2025-12-13 13:34:46'),(9279,0,0,3933,3828,5713,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 20:01:48','darshan','2025-12-09 20:03:09'),(9280,0,0,3933,3828,5713,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 20:03:25','','0000-00-00 00:00:00'),(9281,0,0,3933,3828,5713,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 20:03:25','','0000-00-00 00:00:00'),(9283,0,0,3918,3812,5687,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 20:04:17','','0000-00-00 00:00:00'),(9285,0,0,3919,3813,5688,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 20:07:51','','0000-00-00 00:00:00'),(9286,0,0,3367,3278,5712,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---</p>\n\n<p>HPE---highly suspicious of squamous cel carcinoma</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 20:18:51','','0000-00-00 00:00:00'),(9288,0,0,3367,3278,5712,0,0,NULL,'','MADVICE','ZZZ','Remark','ONCOSURGICAL OPENION ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 20:24:32','','0000-00-00 00:00:00'),(9289,0,0,3933,3828,5713,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus--absnt</p>\n\n<p>dix hallpike--ansd</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 20:27:01','','0000-00-00 00:00:00'),(9290,0,0,3933,3828,5713,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-09 20:27:20','','0000-00-00 00:00:00'),(9293,0,0,3933,3828,5713,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-09 20:32:14','','0000-00-00 00:00:00'),(9294,0,0,3833,262,5588,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PEPTIC PERFORATION + GENERALISED PERITONITIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 01:52:47','mo','2025-12-11 13:07:50'),(9295,0,0,3833,262,5588,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-10 01:52:47','mo','2025-12-11 13:07:50'),(9296,0,0,3833,262,5588,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 32 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NO ANY COMORBIDITY<BR />\r\nC/O: ABDOMINAL PAIN SINCE 2-3 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NO FEVER,NO VOMITING</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-85/MIN<BR />\r\nBP-130/80MMHG<BR />\r\nSPO2-99% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>CT ABDOMEN DONE ON 8/12/25, WHICH S/O POSSIBILITY OF HOLLOW VISCUS PERFORATION, OTHER FINDINGS ARE ACCORDING TO REPORT.<BR />\r\nALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nLAPAROTOMY + PEPTIC PERFORATION REPAIR + PERITONEAL LAVAGE DONE BY DR PRATAPSINH DODIYA ON 08/12/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION<BR />\r\nPOST-OP PATIENT SHIFTED TO ICU.</P>\r\n\r\n<P>FURTHER ICU STAY UNEVENTFUL SO PATIENT SHIFTED TO WARD</P>\r\n\r\n<P>RT ASPIRATION DONE 4 HRLY<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT GENERAL CONDITION &AMP; PROGNOSIS EXPLAINED TO RELATIVE BUT THEY REFUSED AND WANT DISCHARGE AGAINST MEDICAL ADVICE SO PATIENT IS BEING DAMA.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 01:52:47','mo','2025-12-11 13:07:50'),(9297,0,0,3833,262,5588,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION</P>\r\n\r\n<P>RYLE&#39;S TUBE ASPIRATION 4 HRLY</P>\r\n\r\n<P>CONTINUOUS MONITORING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 01:52:47','mo','2025-12-11 13:07:50'),(9298,0,0,3833,262,5588,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.TAZOMAC (4.5 GM/ 100 NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TDS (DAY-4)</P>\r\n\r\n<P>INJ.METROGYL (1GM)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TDS (DAY-4)</P>\r\n\r\n<P>INJ.PANTODAC (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BD</P>\r\n\r\n<P>INJ.EMSET (2 ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TDS</P>\r\n\r\n<P>INJ.INFUPAR (1 GM)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TDS</P>\r\n\r\n<P>SYP.SUCEWALL-0 (2 TSF)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TDS</P>\r\n\r\n<P>BUPRAGESIC PATCH (DAY 3)</P>\r\n\r\n<P>INJ AMIKACIN (500 MG/DIL)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BD (DAY 2)</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 01:52:47','mo','2025-12-11 13:07:50'),(9299,0,0,3938,268,5722,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-ACUTE LVF WITH CAD WITH POOR LV FUNCTION</STRONG></P>\r\n\r\n<P><STRONG>-AKI</STRONG></P>\r\n\r\n<P><STRONG>-K/C/O: CKD (DRUG DEFALUTER) SINCE 1 T0 1.5 YEAR</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 02:17:14','mo','2025-12-11 12:45:23'),(9300,0,0,3938,268,5722,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-10 02:17:14','mo','2025-12-11 12:45:23'),(9301,0,0,3938,268,5722,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 70 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: CKD (DRUG DEFALUTER) SINCE 1 T0 1.5 YEARS</P>\r\n\r\n<P>H/O: CHRONIC SMOKER<BR />\r\nC/O: B/L PEDAL EDEMA SINCE 1 MONTH</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BREATHLESSNESS SINCE 8-10 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DECREASED URINE OUTPUT SINCE 8-10 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; COUGHING WITH WHITISH EXPECTORATION SINCE 7-8 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GIDDINESS OCCASIONALLY SINCE 1 MONTH</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS PATIENT PRIMARILY CONSULTED TO DR KALPESH MOR AND NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>CBC, S.CREAT,LFT, LIPID PROFILE,CRP, URINE R/M, ECG, CHEST X-RAY, USG ABSOMEN DONE ON 9/12/25, REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>2D ECHO DONE ON 9/12/25, LVF:37%, REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-102/MIN<BR />\r\nBP-96/60MMHG<BR />\r\nSPO2-96% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\n9/12/25,</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION AND OLIGOURIA INOTROPIC SUPPORT INJ.DOBUTAMINE STARTED<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>STILL PATIENT CONDITION DOES NOT IMPROVED SO INJ.DOBUTAMINE STOPPED AND INJ.NORAD SRATED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10/12/25,</P>\r\n\r\n<P>INJ NORAD DRIP CONTINUES</P>\r\n\r\n<P>IN VIEW OF LOW ALBUMIN INJ ALBUMIN 20% GIVEN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11/12/25,</P>\r\n\r\n<P>INJ NORAD TAPPER OFF</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 02:17:14','mo','2025-12-11 12:45:23'),(9302,0,0,3938,268,5722,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.DUBUTAMINE</P>\r\n\r\n<P>INJ.DYTOR</P>\r\n\r\n<P>INJ.VOMISET</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>TAB.URITINE</P>\r\n\r\n<P>TAB.ECOSPRIN</P>\r\n\r\n<P>TAB.CLAVIX</P>\r\n\r\n<P>TAB.LIPITAS</P>\r\n\r\n<P>INJ.NORAD</P>\r\n\r\n<P>INJ ALBUMIN</P>\r\n\r\n<P>TAB ULTRACET</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 02:17:14','mo','2025-12-11 12:45:23'),(9303,0,0,3764,255,5425,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE PANCREATITIS WITH ARDS</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM-2 + HTN + BPH +OSA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 02:20:12','mo','2025-12-11 13:48:20'),(9304,0,0,3764,255,5425,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-10 02:20:12','mo','2025-12-11 13:48:20'),(9305,0,0,3764,255,5425,0,0,NULL,'','HISTHOSPCOURSE','','','<P>68Y YEARS OLD MALE&nbsp;ADMITTED IN HOSPITAL UNDER CARE OF DR ARCHIT RATHOD WITH</P>\r\n\r\n<P>C/O : ABDOMINAL PAIN,</P>\r\n\r\n<P>VOMITING</P>\r\n\r\n<P>CHEST PAIN WITH UNEASINESS</P>\r\n\r\n<P>BREATHING DIFFICULTY SINCE 3-4 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>K/C/O: DM-2 + HTN + BPH +OSA ON RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PRIMARY RX TAKEN AT JAMNAGAR SADBHAV HOSPITAL AFTER PATIENT ADMITTED AT WOCKHEART HOSPITAL FORM</P>\r\n\r\n<P>4/12/2025 TO 7/12/2025 THEN COME&nbsp; HERE.</P>\r\n\r\n<P>O/E:&nbsp;</P>\r\n\r\n<P>PR- 70/MIN</P>\r\n\r\n<P>RR- 28/MIN</P>\r\n\r\n<P>BP-180/100 MMHG</P>\r\n\r\n<P>SPO2 - 94% WITH 5L O2</P>\r\n\r\n<P>RS : BLAE +</P>\r\n\r\n<P>CNS : IRRITABLE BUT CONSIOUS +,ORIENTED +</P>\r\n\r\n<P>CVS : S1,S2 +</P>\r\n\r\n<P>P/A : TENDER + FOLYE IN SITU+,IV LINE IN SITU +</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>07/12/2025</P>\r\n\r\n<P>HERE ALL PHYSICAL EXAMINATION DONE AND REQUIED INVESTIGATION SENT OXYGEN SUPPORT GIVEN VIA MASK ABG REPORT NOTED TREATMENT STARTED AND ORALLY LIQUID ALLOWED IN VIEW OF BP HYPER SIDE SO INJ.NTG DRIP STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>08/12/2025</P>\r\n\r\n<P>ON REPORTS SHOW I.CA :1.14&nbsp; AMYLASE/LIPASE 73/83 ,</P>\r\n\r\n<P>X-RAY CHEST DONE</P>\r\n\r\n<P>IMPROVING SO TREATMENT MODIFIED.</P>\r\n\r\n<P>O2 OFF TAPPRING OFF AND ORALLY DIET TOLERTARED WELL THAN PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>09/12/2025</P>\r\n\r\n<P>PATIENT CONSCIOUS, ORIENTED</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>NTG DRIP TAPPER OFF @ BLOOD PRESSURE</P>\r\n\r\n<P>ANTIHYPERTENSIVE TAB STARTED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10/12/2025</P>\r\n\r\n<P>PATIENT CONSCIOUS, ORIENTED</P>\r\n\r\n<P>CATHETER CLAMP &AMP; REMOVE</P>\r\n\r\n<P>ORAL&nbsp;DIET TOLERATING</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11/12/2025</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>PATIENT CONSCIOUS, ORIENTED</P>\r\n\r\n<P>ORAL&nbsp;DIET TOLERATING</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 02:20:12','mo','2025-12-11 13:48:20'),(9306,0,0,3946,3837,5738,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ---better for sense of imbalance&thinsp;</p>\n\n<p>crowd phobia</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 10:53:40','','0000-00-00 00:00:00'),(9307,0,0,2231,2176,5740,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 10:58:28','','0000-00-00 00:00:00'),(9308,0,0,3947,3838,5741,0,0,NULL,'','DIAG','ZZZ','Remark','UMBILICAL HERNIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-10 11:01:07','','0000-00-00 00:00:00'),(9309,0,0,892,860,5745,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 11:03:17','','0000-00-00 00:00:00'),(9310,0,0,3949,3840,5743,0,0,NULL,'','DIAG','ZZZ','Remark','LT BREAST PAIN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-10 11:03:26','','0000-00-00 00:00:00'),(9311,0,0,3949,3840,5743,0,0,NULL,'','DIAG','ZZZ','Remark','IHD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-10 11:03:31','','0000-00-00 00:00:00'),(9312,0,0,894,862,5747,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurence of headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 11:06:57','','0000-00-00 00:00:00'),(9313,0,0,1667,1622,5731,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 11:15:05','','0000-00-00 00:00:00'),(9314,0,0,3894,265,5660,0,0,NULL,'','DISCDIAG','','','<P>NON STEMI</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 11:15:42','mo','2025-12-10 12:41:08'),(9315,0,0,3894,265,5660,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 11:15:42','mo','2025-12-10 12:41:08'),(9316,0,0,3894,265,5660,0,0,NULL,'','HISTHOSPCOURSE','','','<P>HISTORY GIVEN BY PATIENT&#39;S RELATIVE.</P>\r\n\r\n<P>A 62 YEARS OLD MALE PATIENT P/W C/O CHEST PAIN WITH HEAVINESS;B/L SHOULDER PAIN;GIDDINESS;GENERALISED WEAKNESS;B/L UL NUMBNESS SINCE TODAY MORNING.</P>\r\n\r\n<P>SO,RELATIVE BROUGHT HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-97.6 F</P>\r\n\r\n<P>PR-76 /MIN</P>\r\n\r\n<P>BP-154/90MMHG</P>\r\n\r\n<P>SPO2-98% ON RA</P>\r\n\r\n<P>RR-18/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-165 MG/DL</P>\r\n\r\n<P>ECG S/O RBBB</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>09/12/25,</P>\r\n\r\n<P>ALL REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>TROP I SENT.S/O 121.4 NG/L.</P>\r\n\r\n<P>ASPIRIN;STATIN;ANTI PLATELET AND LMWX STARTED.</P>\r\n\r\n<P>CARDIOLOGIST DR.RENISH BERA REFERENCE DONE.2D ECHO DONE.FOLLOWED ALL HIS ADVICE.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10/12/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>PATIENT VITALLY STABLE.</P>\r\n\r\n<P>ECG DONE.IMPROVED.</P>\r\n\r\n<P>REPEAT TROP-I SENT.S/O 1256 NG/L.</P>\r\n\r\n<P>GENERAL CONDITION EXPLAINED TO RELATIVE.ADV:CAG</P>\r\n\r\n<P>PATIENT REFERRED TO CARDIOLOGIST FOR CAG AND INTERVENTION.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 11:15:42','mo','2025-12-10 12:41:08'),(9317,0,0,3284,3198,5736,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 11:17:23','','0000-00-00 00:00:00'),(9318,0,0,3894,265,5660,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ DYNAPAR</P>\r\n\r\n<P>INJ CLEXANE</P>\r\n\r\n<P>TAB ECOSPRIN</P>\r\n\r\n<P>TAB CLAVIX</P>\r\n\r\n<P>TAB LIPITAS</P>\r\n\r\n<P>TAB BISOBIS</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 11:22:05','mo','2025-12-10 12:41:08'),(9319,0,0,3894,265,5660,0,0,NULL,'','DISCCOND','','','<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 11:23:29','mo','2025-12-10 12:41:08'),(9320,0,0,3894,265,5660,0,0,NULL,'','ADVICE','','','<P>CAG</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 11:23:29','mo','2025-12-10 12:41:08'),(9321,0,0,3951,3842,5749,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----MANY YRS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 11:24:19','','0000-00-00 00:00:00'),(9322,0,0,3951,3842,5749,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rotaotry feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 11:25:01','','0000-00-00 00:00:00'),(9323,0,0,3951,3842,5749,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 11:25:14','darshan','2025-12-10 12:30:53'),(9325,0,0,3951,3842,5749,0,0,NULL,'','DIAG','ZZZ','Remark','INTERMITTENT BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 11:25:25','','0000-00-00 00:00:00'),(9326,0,0,3397,3308,5758,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 11:28:55','','0000-00-00 00:00:00'),(9327,0,0,3955,3846,5756,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT UNDISPLACED DISTAL END RADIUS FRACTURE','','',0,'0000-00-00 00:00:00','drsagar','2025-12-10 11:34:28','','0000-00-00 00:00:00'),(9328,0,0,2075,2022,5729,0,0,NULL,'','CC','ZZZ','Remark','MILD COUGHING +||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-10 11:34:38','','0000-00-00 00:00:00'),(9329,0,0,3706,251,5316,0,0,NULL,'','DISCCOND','','','<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>WEAKNESS + - IMPROVE CONDITION</P>\r\n\r\n<P>COLOSTOMY BAG IN SITU&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 11:34:48','mo','2025-12-10 12:42:58'),(9330,0,0,3706,251,5316,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n\r\n<P>TAKE DIET AS PER DIETICIAN ADVICE&nbsp;</P>\r\n\r\n<P>COLOSTOMY CARE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 11:34:48','mo','2025-12-10 12:42:58'),(9331,0,0,3706,251,5316,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE (250MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ..........FOR 5 DAYS</P>\r\n\r\n<P>TAB R PRESS D&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........FOR 5 DAYS</P>\r\n\r\n<P>TAB SOBIOSIS(500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp;&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........FOR 5 DAYS</P>\r\n\r\n<P>TAB APIXABAN (2.5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;1--0--1&nbsp;&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........FOR 1&nbsp;DAY(3 TAB)&nbsp;</P>\r\n\r\n<P>TAB ALLSTAT(20MG)&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;0--0--1&nbsp;&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........FOR 5 DAYS</P>\r\n\r\n<P>TAB NICOGLOW&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp;&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........FOR 5 DAYS</P>\r\n\r\n<P>TAB ECOSPRIN (75MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...........FOR 5 DAYS</P>\r\n\r\n<P>TAB TIDE PLUS(10/25MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...........FOR 5 DAYS</P>\r\n\r\n<P>TAB CONCOR&nbsp; (1.25MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB VITALIZER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........FOR 5 DAYS</P>\r\n\r\n<P>TAB ULTRACET&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; IF PAIN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(5)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 11:34:48','mo','2025-12-10 12:42:58'),(9332,0,0,2075,2022,5729,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-10 11:34:58','','0000-00-00 00:00:00'),(9333,0,0,1302,1261,5767,0,0,NULL,'','CC','ZZZ','Remark','INSOMNIA +||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-10 11:37:24','','0000-00-00 00:00:00'),(9334,0,0,3953,3844,5752,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 11:40:28','darshan','2025-12-10 11:46:24'),(9335,0,0,3958,3849,5761,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 11:48:16','','0000-00-00 00:00:00'),(9336,0,0,3959,3850,5764,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-10 11:52:19','','0000-00-00 00:00:00'),(9338,0,0,3957,3848,5760,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rototyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>sense of imbalance continuously</p>\n\n<p>no associated cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 11:57:14','darshan','2025-12-10 11:58:24'),(9340,0,0,3957,3848,5760,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 11:57:37','darshan','2025-12-10 12:51:03'),(9341,0,0,3957,3848,5760,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit----nad</p>\n\n<p>stabiloemtry--reduced vestibular score with ss score</p>\n\n<p>CCG---nad</p>\n\n<p>vng--left acute partial vestibular deficit</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 11:58:43','darshan','2025-12-10 12:52:05'),(9342,0,0,3957,3848,5760,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ACUTE PARTIAL VESTIBULAR DEFICIT','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 11:59:43','','0000-00-00 00:00:00'),(9343,0,0,3954,3845,5754,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:02:15','','0000-00-00 00:00:00'),(9344,0,0,2115,2061,5755,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---headache persist</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:05:57','','0000-00-00 00:00:00'),(9346,0,0,2115,2061,5755,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:07:35','','0000-00-00 00:00:00'),(9347,0,0,3969,3860,5778,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-10 12:14:23','','0000-00-00 00:00:00'),(9348,0,0,3961,3852,5768,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:14:35','','0000-00-00 00:00:00'),(9349,0,0,3961,3852,5768,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotry feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:15:09','','0000-00-00 00:00:00'),(9350,0,0,3961,3852,5768,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit---nad</p>\n\n<p>&thinsp;pta---left moderate to severe sn deafness</p>\n\n<p>&thinsp; &thinsp; &thinsp; &thinsp;right moderate sn deafness</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng---left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:15:27','darshan','2025-12-10 13:35:37'),(9352,0,0,3968,3859,5776,0,0,NULL,'','DIAG','ZZZ','Remark','PENILE ULCERATION','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-10 12:17:06','','0000-00-00 00:00:00'),(9353,0,0,546,520,5759,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:18:57','','0000-00-00 00:00:00'),(9354,0,0,3956,3847,5757,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden&thinsp; onset of rotaotry feeling when pt is in any posture</p>\n\n<p>both ear deafness&thinsp;</p>\n\n<p>rigth ear pulsatile tinnitus&thinsp;</p>\n\n<p>no associated other cns symtpmso&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:26:11','darshan','2025-12-10 12:27:00'),(9355,0,0,3956,3847,5757,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2.5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:26:25','','0000-00-00 00:00:00'),(9356,0,0,3956,3847,5757,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--left moderate to severe sn deafness</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng---left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:27:15','darshan','2025-12-10 13:45:13'),(9358,0,0,3965,3856,5773,0,0,NULL,'','CC','ZZZ','Remark','LRTI | 30 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-10 12:29:47','','0000-00-00 00:00:00'),(9359,0,0,3951,3842,5749,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:31:19','','0000-00-00 00:00:00'),(9361,0,0,2351,2294,5766,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---occassional giddiness&thinsp;</p>\n\n<p>headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:35:11','','0000-00-00 00:00:00'),(9362,0,0,3952,3843,5751,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN----FEW DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:40:03','','0000-00-00 00:00:00'),(9363,0,0,3952,3843,5751,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left ear full of dishcarge&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:40:22','','0000-00-00 00:00:00'),(9364,0,0,206,193,5783,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:44:00','','0000-00-00 00:00:00'),(9365,0,0,3975,3867,5788,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling for few hrs&thinsp;</p>\n\n<p>associated with right ear deafness and tinnitus&thinsp;</p>\n\n<p>nausea and vomiting&thinsp;</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:56:56','darshan','2025-12-10 12:58:44'),(9366,0,0,3975,3867,5788,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---7-8 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:58:00','','0000-00-00 00:00:00'),(9367,0,0,3975,3867,5788,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR DEAFNESS + WITH TINNITUS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:58:20','','0000-00-00 00:00:00'),(9368,0,0,3975,3867,5788,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta----right severe sn deafness</p>\n\n<p>stabiloemtyr---reduced vestibular score</p>\n\n<p>vng--right labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:58:56','darshan','2025-12-10 13:54:22'),(9369,0,0,3975,3867,5788,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 12:58:59','','0000-00-00 00:00:00'),(9370,0,0,1267,1226,5780,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----bettre for giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 13:01:48','','0000-00-00 00:00:00'),(9371,0,0,1427,1386,5770,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----common cold +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 13:07:15','darshan','2025-12-10 17:13:03'),(9374,0,0,3951,3842,5749,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-10 13:07:53','','0000-00-00 00:00:00'),(9375,0,0,3964,3855,5772,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--2 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 13:19:19','','0000-00-00 00:00:00'),(9376,0,0,3964,3855,5772,0,0,NULL,'','HIST','ZZZ','Remark','<p>pt feels giddiness and imbalance feeling when he is in crowd or in anxiety</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 13:19:57','','0000-00-00 00:00:00'),(9377,0,0,3964,3855,5772,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilomtey--reduced vestibular score</p>\n\n<p>CCG--AP displacement abnormal</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 13:20:17','darshan','2025-12-10 14:24:38'),(9379,0,0,3964,3855,5772,0,0,NULL,'','DIAG','ZZZ','Remark','PPPD','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 13:20:33','','0000-00-00 00:00:00'),(9380,0,0,2296,2240,5789,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--occassional short duration giddiness +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 13:26:36','','0000-00-00 00:00:00'),(9381,0,0,2810,2740,5792,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 13:40:19','','0000-00-00 00:00:00'),(9382,0,0,3971,3863,5784,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 13:50:00','','0000-00-00 00:00:00'),(9383,0,0,3971,3863,5784,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left post&thinsp; canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 13:50:06','','0000-00-00 00:00:00'),(9384,0,0,3971,3863,5784,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 13:50:57','','0000-00-00 00:00:00'),(9386,0,0,3971,3863,5784,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-10 13:51:56','','0000-00-00 00:00:00'),(9387,0,0,3899,3795,5650,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS CT PNS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-10 14:22:45','','0000-00-00 00:00:00'),(9388,0,0,970,939,5795,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 14:33:11','','0000-00-00 00:00:00'),(9389,0,0,3980,3871,5796,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 14:37:33','','0000-00-00 00:00:00'),(9390,0,0,1658,1613,5802,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:10:20','','0000-00-00 00:00:00'),(9391,0,0,3939,269,5723,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE SEVERE RESPIRATORY FAILURE WITH HYPOXIA</STRONG></P>\r\n\r\n<P><STRONG>SVC OBSTRUCTION</STRONG></P>\r\n\r\n<P><STRONG>SEPSIS</STRONG></P>\r\n\r\n<P><STRONG>K/C/O CLASSICAL HODGKING`S LYMPHOMA (DRUG DEFAULTER).</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 17:13:07','mo','2025-12-10 18:01:54'),(9392,0,0,3939,269,5723,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\nCLASSICAL HODGKING`S LYMPHOMA (DOD : 7/7/25) NOT ANY RX SICNE 2 MONTHS.</P>\r\n\r\n<P>TOTAL 3 CYCLE CHEMOTHERAPY TAKEN LAST CHEMO : 11/10/25.<BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 17:13:07','mo','2025-12-10 18:01:54'),(9393,0,0,3939,269,5723,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 27 YEARS OLD&nbsp; MALE PATIENT PRESENT WITH,<BR />\r\nK/C/O: CLASSICAL HODGKING`S LYMPHOMA (DOD 7-7-2025)&nbsp; NOT ANY RX SINCE 2 MONTHS, TOTAL 3 CYCLE OF CHEMOTHARAPY TAKNE LAST CHEMO 11-10-2025.</P>\r\n\r\n<P>H/O COUGHING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FEVER</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ORTHOPNEA SINCE 7 DAYS.</P>\r\n\r\n<P>PRIMARY RX TAKNE AT SHIV HOSPITAL RAJKOT FROM 04-12-2025 TO 2-12-2025.</P>\r\n\r\n<P>THAN SHIFT TO MEDICARE HOSPITAL RAJKOT FROM 08-12-2025 TO 09-12-2025.</P>\r\n\r\n<P>DIAGNOSED - ACUTE RESPIRATORY FAILURE WIHT HYPOXIA, SVC OBSTRUCTION, SEPSIS.</P>\r\n\r\n<P>HR CT THORAX WITH PULMONARY ANGIOGRAPHY DONE OUT SIDE 09-12-2025.</P>\r\n\r\n<P>ENDOTRACHEAL INTUBATION AT OUT SIDE 08-12-2025.</P>\r\n\r\n<P>RIGHT SIDE IJV CVP OUT SIDE 08-12-2025.<BR />\r\nET TUBE, RT TUBE, FOLY`S CATH AND RIGHT IJV IN SITU.</P>\r\n\r\n<P>PATIENT ON VENTILATOR SUPPORT AC/VC MODE.</P>\r\n\r\n<P>WITH INOTRPIC SUPPORT INJ.NORAD 5ML/HR.</P>\r\n\r\n<P>INJ. FENTANYL + INJ. MEDAZOLAM ...5ML/HR.</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 100.0`F<BR />\r\nPR- 130 /MIN<BR />\r\nBP- 130/100 MMHG (INJ. NORAD SUPPORT)&nbsp;<BR />\r\nSPO2- 99% ON RA (ON VENTILATOR SUPPORT)<BR />\r\nRR- 20/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-&nbsp; UNCONSIOUS, UNDER SEDATION.<BR />\r\nRS-BLAE+, HAZINESS BILATERAL.<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>09-12-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ON VENTILATOR SUPORT AC.VC MODE.</P>\r\n\r\n<P>INOTROPIC SUPPORT INJ.NORAD, SADATION CONTINUE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10-12-2025,</P>\r\n\r\n<P>PATIENT ON VENTIALTOR SUPPORT AC/VC MODE.</P>\r\n\r\n<P>INJ.NORAD SUPPORT CONTINUE.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION INJ. ADR START BY INFUSION PUMP.</P>\r\n\r\n<P>IN VIEW OF BRADYCARIDA CPR GIVEN AS PAR ACLS PROTOCOL, INJ. ATROPIN , INJ. NAHCO3, INJ. CAL GLUCONATE GIVEN STAT, PATIENT NOT REVIVED DECLERED DEATH&nbsp; 10-12-2025 TIME - 5.46&nbsp;PM.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 17:13:07','mo','2025-12-10 18:01:54'),(9394,0,0,1427,1386,5770,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>follow up case----ct pns---mild mucosal thickening in maxillary sinus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:13:42','','0000-00-00 00:00:00'),(9395,0,0,3939,269,5723,0,0,NULL,'','DISCCOND','','','<P>..DEATH...</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 17:14:25','mo','2025-12-10 18:01:54'),(9396,0,0,3939,269,5723,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. MEZOR</P>\r\n\r\n<P>INJ. LINOX</P>\r\n\r\n<P>INJ. CLINDATECH</P>\r\n\r\n<P>INJ. PATO</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ. PRIMACORT</P>\r\n\r\n<P>INJ. CLEXANE</P>\r\n\r\n<P>INJ. NORAD</P>\r\n\r\n<P>INJ. ADR</P>\r\n\r\n<P>INJ. ATROPIN</P>\r\n\r\n<P>NEB. DUOLIN : BUDACORT</P>\r\n\r\n<P>IVF DNS /RL</P>\r\n\r\n<P>INJ. FENTANYL</P>\r\n\r\n<P>INJ. MEDAZOLAM</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 17:14:25','mo','2025-12-10 18:01:54'),(9398,0,0,3983,3874,5799,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic giddiness with sudden fall down with occassional ...? LOC&thinsp;</p>\n\n<p>no convulsion&thinsp;</p>\n\n<p>frequent headahce +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:23:07','darshan','2025-12-10 17:26:47'),(9399,0,0,3983,3874,5799,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS---2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:25:13','','0000-00-00 00:00:00'),(9400,0,0,3983,3874,5799,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:25:28','','0000-00-00 00:00:00'),(9401,0,0,3983,3874,5799,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain limited study--nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:26:56','darshan','2025-12-10 18:36:43'),(9402,0,0,3983,3874,5799,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:26:59','','0000-00-00 00:00:00'),(9403,0,0,550,524,5800,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow u pcase---better for headache and giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:29:02','','0000-00-00 00:00:00'),(9404,0,0,3984,3875,5801,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset any time and r emains for few mins</p>\n\n<p>sometimes positional giddiness +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:31:05','darshan','2025-12-10 17:38:32'),(9406,0,0,3984,3875,5801,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----1.5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:38:03','','0000-00-00 00:00:00'),(9407,0,0,3984,3875,5801,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>&thinsp;pta---right very severe sn deafness</p>\n\n<p>&thinsp; &thinsp; &thinsp; &thinsp; &thinsp;left moderate sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---Bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:38:59','darshan','2025-12-10 18:26:12'),(9408,0,0,3984,3875,5801,0,0,NULL,'','CC','ZZZ','Remark','DEAFNESS --MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:39:05','','0000-00-00 00:00:00'),(9410,0,0,94,83,5803,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:40:24','','0000-00-00 00:00:00'),(9411,0,0,1504,1463,5804,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:43:36','','0000-00-00 00:00:00'),(9412,0,0,85,74,5805,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:45:20','','0000-00-00 00:00:00'),(9413,0,0,3992,3883,5816,0,0,NULL,'','HIST','ZZZ','Remark','<p>follwo up case--recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:49:01','','0000-00-00 00:00:00'),(9414,0,0,3992,3883,5816,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus ---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nasd</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:49:17','','0000-00-00 00:00:00'),(9415,0,0,3992,3883,5816,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:50:31','','0000-00-00 00:00:00'),(9417,0,0,3992,3883,5816,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:50:45','','0000-00-00 00:00:00'),(9418,0,0,3989,3880,5812,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---kc/o--left labyrinthine pathology</p>\n\n<p>self medicationdone since last 6 months&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:55:45','darshan','2025-12-10 17:57:06'),(9419,0,0,3989,3880,5812,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>ht--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 17:57:24','','0000-00-00 00:00:00'),(9420,0,0,3297,3210,5814,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 18:01:39','','0000-00-00 00:00:00'),(9422,0,0,3297,3210,5814,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-10 18:03:24','','0000-00-00 00:00:00'),(9423,0,0,3985,3876,5806,0,0,NULL,'','DIAG','ZZZ','Remark','ANTERIOR ANANL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-10 18:07:12','','0000-00-00 00:00:00'),(9424,0,0,3967,3858,5775,0,0,NULL,'','DIAG','ZZZ','Remark','INCISIONAL HERNIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-10 18:10:00','','0000-00-00 00:00:00'),(9425,0,0,3993,3884,5817,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 18:10:21','','0000-00-00 00:00:00'),(9426,0,0,3966,3857,5774,0,0,NULL,'','DIAG','ZZZ','Remark','GERD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-10 18:11:03','','0000-00-00 00:00:00'),(9427,0,0,3966,3857,5774,0,0,NULL,'','DIAG','ZZZ','Remark','DM','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-10 18:11:05','','0000-00-00 00:00:00'),(9428,0,0,3993,3884,5817,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo--sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 18:11:05','','0000-00-00 00:00:00'),(9429,0,0,3966,3857,5774,0,0,NULL,'','DIAG','ZZZ','Remark','IHD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-10 18:11:07','','0000-00-00 00:00:00'),(9430,0,0,3993,3884,5817,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 18:11:19','darshan','2025-12-10 18:46:14'),(9432,0,0,3993,3884,5817,0,0,NULL,'','DIAG','ZZZ','Remark','INTERMITTENDT BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 18:11:24','','0000-00-00 00:00:00'),(9433,0,0,3963,3854,5771,0,0,NULL,'','DIAG','ZZZ','Remark','RT AXILLARY PAIN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-10 18:14:09','','0000-00-00 00:00:00'),(9434,0,0,3134,3053,5810,0,0,NULL,'','DIAG','ZZZ','Remark','? APPENDICITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-10 18:15:46','','0000-00-00 00:00:00'),(9435,0,0,3987,3878,5809,0,0,NULL,'','DIAG','ZZZ','Remark','RT AXILLARY PAIN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-10 18:16:26','','0000-00-00 00:00:00'),(9436,0,0,3995,3886,5820,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotyr feeling when pt is in any posture he feels sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 18:20:47','darshan','2025-12-10 18:21:49'),(9437,0,0,3995,3886,5820,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS==FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 18:21:09','','0000-00-00 00:00:00'),(9438,0,0,3995,3886,5820,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit---nad</p>\n\n<p>&thinsp;pta--right severe sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--right labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 18:22:08','darshan','2025-12-10 19:24:30'),(9440,0,0,3996,3887,5821,0,0,NULL,'','DIAG','ZZZ','Remark','LT MIDDLE FINGER STITCH','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-10 18:24:10','','0000-00-00 00:00:00'),(9441,0,0,1026,994,5822,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 18:31:57','','0000-00-00 00:00:00'),(9443,0,0,3941,270,5728,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LEFT AXILLARY LYMPHEDENITIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 18:35:38','mo','2025-12-10 20:38:06'),(9444,0,0,3941,270,5728,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-10 18:35:38','mo','2025-12-10 20:38:06'),(9445,0,0,3941,270,5728,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 24 YEARS OLD MALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD&nbsp;<BR />\r\nH/O: RIGHT INGUINAL HERNIOPLASTY (TAPP) + RIGHT ORCHIDECTOMY ON 16/06/2025 BY DR. P. DODIYA<BR />\r\nC/O: AXILLARY REGION SWELLING&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PAIN IN AXILLARY REGION&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp;NO PUS DISCHARGE ALL COMPLAINT SINCE 15 DAYS SO NOW&nbsp;FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-79/MIN<BR />\r\nBP-124/80MMHG<BR />\r\nSPO2-99% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\nALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nLEFT AXILLARY LYMPHNODE EXCISIONAL BIOPSY DONE BY DR PRATAPSINH DODIYA ON10/12/2025 UNDER GENERAL&nbsp;ANAESTHESIA WITH ALL ASEPTIC PRECAUTION<BR />\r\nPOST-OP PATIENT SHIFTED TO WARD.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 18:35:38','mo','2025-12-10 20:38:06'),(9446,0,0,3941,270,5728,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>LEFT AXILLARY LYMPHNODE EXCISIONAL BIOPSY DONE BY DR PRATAPSINH DODIYA ON10/12/2025 UNDER GENERAL&nbsp;ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 18:35:38','mo','2025-12-10 20:38:06'),(9447,0,0,3941,270,5728,0,0,NULL,'','DISCCOND','','','<P>STABLE HEMODYNAMIC CONDITION</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 18:35:38','mo','2025-12-10 20:38:06'),(9448,0,0,3941,270,5728,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. AUGMENTIN</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ. DYNAPAR AQ</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 18:35:38','mo','2025-12-10 20:38:06'),(9452,0,0,1909,1864,5824,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 18:41:12','','0000-00-00 00:00:00'),(9453,0,0,1909,1864,5824,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nasd</p>\n\n<p>hit--nasd</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 18:41:23','','0000-00-00 00:00:00'),(9454,0,0,2075,2022,5729,0,0,NULL,'','MADVICE','ZZZ','Remark','WEAR MASK\nSTOP SMOKING','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-10 18:42:26','','0000-00-00 00:00:00'),(9455,0,0,3993,3884,5817,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 18:47:02','','0000-00-00 00:00:00'),(9457,0,0,4002,3892,5832,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-10 18:53:11','','0000-00-00 00:00:00'),(9458,0,0,4002,3892,5832,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-10 18:53:12','drjayant','2025-12-10 18:55:11'),(9459,0,0,2542,2484,5827,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better partially&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 19:00:17','','0000-00-00 00:00:00'),(9460,0,0,4004,3894,5836,0,0,NULL,'','DIAG','ZZZ','Remark','ANAL SPASM','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-10 19:06:04','','0000-00-00 00:00:00'),(9461,0,0,4000,3891,5830,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no ssociated other c ns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 19:09:28','darshan','2025-12-10 19:10:35'),(9462,0,0,4000,3891,5830,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 19:09:44','','0000-00-00 00:00:00'),(9463,0,0,4000,3891,5830,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 19:10:55','darshan','2025-12-11 18:10:09'),(9465,0,0,4000,3891,5830,0,0,NULL,'','DIAG','ZZZ','Remark','INTERMITTENDT BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 19:11:03','','0000-00-00 00:00:00'),(9467,0,0,3993,3884,5817,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-10 19:15:30','','0000-00-00 00:00:00'),(9468,0,0,1572,1531,5835,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 19:19:56','','0000-00-00 00:00:00'),(9469,0,0,3995,3886,5820,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 19:24:38','','0000-00-00 00:00:00'),(9471,0,0,4006,3896,5839,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling any time and remains for few mins&thinsp;</p>\n\n<p>black out and visual auras +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 19:41:44','darshan','2025-12-10 19:55:04'),(9473,0,0,4006,3896,5839,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----8-9 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 19:43:34','','0000-00-00 00:00:00'),(9474,0,0,4006,3896,5839,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>vng done---p/o---central pathology</p>\n\n<p>pta---right high freq mild sn deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 19:44:40','darshan','2025-12-10 19:55:25'),(9475,0,0,4006,3896,5839,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 19:44:42','','0000-00-00 00:00:00'),(9476,0,0,1841,1796,5833,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----2-3 episodes of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-10 19:47:11','','0000-00-00 00:00:00'),(9477,0,0,922,890,5702,0,0,NULL,'','MADVICE','ZZZ','Remark','OIL/ SUGAR RESTRICTED DIET','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-10 20:01:46','','0000-00-00 00:00:00'),(9478,0,0,3941,270,5728,0,0,NULL,'','TREATDISC_TI','','','<P>CAP. AUGMENTIN&nbsp; &nbsp;625MG&nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;5 DAYS&nbsp;</P>\r\n\r\n<P>TAB. DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; BEFORE FOOD&nbsp; 5 DAYS</P>\r\n\r\n<P>TAB. ZERODOL SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 20:18:14','mo','2025-12-10 20:38:06'),(9479,0,0,3941,270,5728,0,0,NULL,'','OTNOTE','','','<p>- ENLARGE LYMPHNODE IN LEFT AXILLARY AREA</p>\r\n\r\n<p>- INCISION KEPT ON LEFT AXILLARY</p>\r\n\r\n<p>- LARGE LYMPHNODE (6*6 CM ) IN SUB AT TISSUE</p>\r\n\r\n<p>- LYMPHNODE EXCISION BIOPSY DONE</p>\r\n\r\n<p>- HEMOSTASIS ACHIEVED&nbsp;</p>\r\n\r\n<p>- CAVITY CLEAN WITH BETADINE AND SALINE</p>\r\n\r\n<p>- SUBCUT TISSUE CLOSED WITH VICRYL NO. 1&nbsp;</p>\r\n\r\n<p>- SKIN CLOSED WITH ETHILON (3-0)</p>\r\n\r\n<p>- LYMPHNODE SENT FOR HPE.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 20:25:39','mo','2025-12-10 20:38:06'),(9480,0,0,3941,270,5728,0,0,NULL,'','CONDONADDMISSION','','','<P>- HEMODYNAMICLLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 20:25:39','mo','2025-12-10 20:38:06'),(9481,0,0,3941,270,5728,0,0,NULL,'','ADVICE','','','<P>- DAILY DRESSING</P>\r\n\r\n<P>- FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 20:25:39','mo','2025-12-10 20:38:06'),(9482,0,0,3943,271,5732,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PILONIDAL ABSCESS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 20:29:49','mo','2025-12-10 20:48:25'),(9483,0,0,3943,271,5732,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-10 20:29:49','mo','2025-12-10 20:48:25'),(9484,0,0,3943,271,5732,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 17 YEARS OLD MALE&nbsp; PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O: NAD<BR />\r\nC/O: PAIN IN CALF REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;SWELLING &AMP; REDNESS IN THAT REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PUS DISCHARGE FROM THAT SITE</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS PREENTED SINCE 1 MONTH SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG INTERGLUTEAL REGION (02/12/2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-82/MIN<BR />\r\nBP-122/80MMHG<BR />\r\nSPO2-99% ON RA<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.<BR />\r\nALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nINCISION &AMP; DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 10/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION<BR />\r\nPOST-OP PATIENT SHIFTED TO WARD.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 20:29:49','mo','2025-12-10 20:48:25'),(9485,0,0,3943,271,5732,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>INCISION &AMP; DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 10/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 20:48:23','mo','2025-12-10 20:48:25'),(9486,0,0,3943,271,5732,0,0,NULL,'','OTNOTE','','','<p>-PILONIDAL ABSCESS AT INTERGLUTEAL CLEFT</p>\r\n\r\n<p>-ABSCESS CAVITY CLEAN WITH SCOOPING</p>\r\n\r\n<p>-UNHEALTHY TISSUE, HAIR, PUS DRAINED</p>\r\n\r\n<p>-CAVITY CLEAN WITH BETADINE</p>\r\n\r\n<p>-HEMOSTASIS ACHIEVED</p>\r\n\r\n<p>-WOUND KEPT OPEN</p>\r\n\r\n<p>-DRESSING KEPT</p>\r\n\r\n<p>-RECCURENCE OF PILONIDAL SINUS EXPLAINED TO RELATIVE</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 20:48:23','mo','2025-12-10 20:48:25'),(9487,0,0,3943,271,5732,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 20:48:23','mo','2025-12-10 20:48:25'),(9488,0,0,3943,271,5732,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 20:48:23','mo','2025-12-10 20:48:25'),(9489,0,0,3943,271,5732,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR AQ</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 20:48:23','mo','2025-12-10 20:48:25'),(9490,0,0,3943,271,5732,0,0,NULL,'','TREATDISC_TI','','','<P>CAP AUGMENTIN (625 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE&nbsp;FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 20:48:23','mo','2025-12-10 20:48:25'),(9491,0,0,3765,256,5426,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 21:01:25','mo','2025-12-10 21:53:55'),(9492,0,0,3765,256,5426,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 10&nbsp;DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 21:01:25','mo','2025-12-10 21:53:55'),(9493,0,0,3765,256,5426,0,0,NULL,'','TREATDISC_TI','','','<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp;FOR&nbsp;10&nbsp;DAYS</P>\r\n\r\n<P>TAB DILZEM (30 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR&nbsp;10 DAYS</P>\r\n\r\n<P>CAP ECOTOR ASP (10/75)&nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR&nbsp;10 DAYS</P>\r\n\r\n<P>TAB TELMICON-M&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR&nbsp;10 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 21:01:25','mo','2025-12-10 21:53:55'),(9494,0,0,3871,263,5603,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 21:18:17','mo','2025-12-10 21:20:52'),(9495,0,0,3871,263,5603,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>BP MONITORING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 21:20:22','mo','2025-12-10 21:20:52'),(9496,0,0,3871,263,5603,0,0,NULL,'','TREATDISC_TI','','','<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>CAP ECOTOR AS (10/75)&nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB TELSAR (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB STUGERON PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 21:20:22','mo','2025-12-10 21:20:52'),(9497,0,0,3400,225,4777,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>CONSCIOUS, ORIENTED</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 23:53:20','mo','2025-12-11 13:16:59'),(9498,0,0,3400,225,4777,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>RBS MONITORING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-10 23:53:20','mo','2025-12-11 13:16:59'),(9499,0,0,4001,273,5831,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LEFT SIDED COMMUNITY ACQUIRED PNEUMONIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, DM TYPE 2</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 00:27:11','mo','2025-12-16 13:30:18'),(9500,0,0,4001,273,5831,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-11 00:27:11','mo','2025-12-16 13:30:18'),(9501,0,0,4001,273,5831,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 73 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, DM TYPE 2<BR />\r\nC/O: FEVER ON &AMP; OFF WITH RIGOR&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DOE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;COUGHING WITHOUT EXPECTORATION</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>CT SCAN OF THORAX DONE ON 8/12/25, REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-99.4&#39;F<BR />\r\nPR-78/MIN<BR />\r\nBP-124/60MMHG<BR />\r\nSPO2-98% ON RA<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 00:27:11','mo','2025-12-16 13:30:18'),(9502,0,0,4001,273,5831,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 7 DAYS</P>\r\n\r\n<P>CONTINUE OWN MEDICINE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 00:31:58','mo','2025-12-16 13:30:18'),(9503,0,0,4001,273,5831,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MERO</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ DERIPHYLLIN</P>\r\n\r\n<P>INJ AMIKACIN</P>\r\n\r\n<P>TAB LANOL ER</P>\r\n\r\n<P>TAB SOBIOSIS</P>\r\n\r\n<P>TAB CREMALAX</P>\r\n\r\n<P>NEB DUOLIN, BUDECORT</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 00:31:58','mo','2025-12-16 13:30:18'),(9504,0,0,3345,218,4688,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 00:51:50','mo','2025-12-11 14:45:28'),(9505,0,0,3345,218,4688,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS WITH CBC</P>\r\n\r\n<P>RBS MONITORING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 00:51:50','mo','2025-12-11 14:45:28'),(9506,0,0,1159,1118,5852,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 10:48:13','','0000-00-00 00:00:00'),(9507,0,0,4015,3906,5854,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 10:59:30','','0000-00-00 00:00:00'),(9508,0,0,4015,3906,5854,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rotatory feeling on change of posture</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 11:00:16','','0000-00-00 00:00:00'),(9509,0,0,4015,3906,5854,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 11:00:31','darshan','2025-12-11 12:05:34'),(9512,0,0,4014,3905,5853,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 11:04:30','','0000-00-00 00:00:00'),(9513,0,0,4016,3907,5856,0,0,NULL,'','HIST','ZZZ','Remark','<p>sense of giddiness when pt stand up from sitting or stops after long walking she feels imbalance and side to side movement</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpmos&thinsp;</p>\n\n<p>h/o----spinal injury before 6 months operated for same</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 11:09:47','darshan','2025-12-11 11:19:12'),(9514,0,0,4016,3907,5856,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----4 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 11:17:30','','0000-00-00 00:00:00'),(9515,0,0,4016,3907,5856,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nads</p>\n\n<p>hit--nas</p>\n\n<p>pta---right high freq severe sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng-right hz canal bppv with central vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 11:18:53','darshan','2025-12-11 13:05:58'),(9517,0,0,2851,2782,5863,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 11:24:07','','0000-00-00 00:00:00'),(9518,0,0,4017,3908,5857,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR BLOCKAGE FEELING ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 11:30:59','','0000-00-00 00:00:00'),(9519,0,0,4017,3908,5857,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>both ear wax</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 11:31:10','','0000-00-00 00:00:00'),(9521,0,0,4017,3908,5857,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT EAR WAX REMOVAL NEXT TIME ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-11 11:33:31','','0000-00-00 00:00:00'),(9522,0,0,4020,3911,5867,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER BACK PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-11 11:35:14','','0000-00-00 00:00:00'),(9523,0,0,3583,3913,5871,0,0,NULL,'','HIST','ZZZ','Remark','<p>F&#39;UP AGE</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-11 11:37:28','drjayant','2025-12-11 11:38:09'),(9524,0,0,3583,3913,5871,0,0,NULL,'','CC','ZZZ','Remark','BILAT LL WEAKNESS||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-11 11:37:53','','0000-00-00 00:00:00'),(9525,0,0,3583,3913,5871,0,0,NULL,'','MADVICE','ZZZ','Remark','OIL/ FAT RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-11 11:39:05','','0000-00-00 00:00:00'),(9526,0,0,1829,1784,5858,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partailly better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 11:39:27','','0000-00-00 00:00:00'),(9527,0,0,2274,2218,5865,0,0,NULL,'','HIST','ZZZ','Remark','<p>folllow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 11:45:47','','0000-00-00 00:00:00'),(9528,0,0,3780,258,5445,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 11:48:49','mo','2025-12-11 12:38:08'),(9529,0,0,3780,258,5445,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>WITH CBC, CRP. S.CREAT, RBS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 11:48:49','mo','2025-12-11 12:38:08'),(9530,0,0,3780,258,5445,0,0,NULL,'','TREATDISC_TI','','','<P>INJ UNITREX-S (1.5 GM/DIL)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 9AM-----9PM&nbsp; &nbsp; &nbsp;FOR 2 DAYS (3 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB CLARIBID (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 2 DAYS (3 TAB)</P>\r\n\r\n<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DERIPHYLLIN RETARD(300 MG)&nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB BISOBIS (5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB SOBIOSIS (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB URITIN (0.4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DAPARYL-L (10/5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB STAGLIM M1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZOFER MD (4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR VOMITING</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>START ON 13/12/2025:</STRONG></P>\r\n\r\n<P>TAB XOXE (250 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp;FOR 3 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 11:48:49','mo','2025-12-11 12:38:08'),(9531,0,0,4019,3910,5861,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--right ear pain with heaviness of head and headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 11:49:32','','0000-00-00 00:00:00'),(9532,0,0,4019,3910,5861,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 11:49:51','','0000-00-00 00:00:00'),(9533,0,0,3395,3306,5875,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 11:55:19','','0000-00-00 00:00:00'),(9535,0,0,3395,3306,5875,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-11 11:56:33','','0000-00-00 00:00:00'),(9536,0,0,2709,2639,5862,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----no improvment&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 11:59:23','','0000-00-00 00:00:00'),(9537,0,0,4015,3906,5854,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 12:06:04','','0000-00-00 00:00:00'),(9539,0,0,4026,3918,5879,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----rerecurence of vertigo&thinsp;</p>\n\n<p>k/c/o---right post canal bppv with bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 12:11:30','','0000-00-00 00:00:00'),(9540,0,0,4026,3918,5879,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 12:12:23','','0000-00-00 00:00:00'),(9542,0,0,4026,3918,5879,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-11 12:12:50','','0000-00-00 00:00:00'),(9543,0,0,198,185,5877,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--giddiness 5 days&thinsp;</p>\n\n<p>positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 12:18:33','','0000-00-00 00:00:00'),(9544,0,0,4028,3920,5882,0,0,NULL,'','CC','ZZZ','Remark','LOOSE MOTIONS, ABD PAIN | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-11 12:18:33','','0000-00-00 00:00:00'),(9545,0,0,198,185,5877,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dx hallpike---nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 12:18:50','','0000-00-00 00:00:00'),(9546,0,0,198,185,5877,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 12:19:27','','0000-00-00 00:00:00'),(9548,0,0,198,185,5877,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ----15 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-11 12:20:12','','0000-00-00 00:00:00'),(9549,0,0,3602,3500,5866,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 12:22:38','','0000-00-00 00:00:00'),(9550,0,0,3602,3500,5866,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Ltm---small central perforation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 12:22:51','','0000-00-00 00:00:00'),(9552,0,0,3602,3500,5866,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT T PLASTY','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-11 12:24:18','','0000-00-00 00:00:00'),(9553,0,0,3833,262,5588,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>LAPAROTOMY + PEPTIC PERFORATION REPAIR + PERITONEAL LAVAGE DONE BY DR PRATAPSINH DODIYA ON 08/12/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 12:26:20','mo','2025-12-11 13:07:50'),(9554,0,0,3833,262,5588,0,0,NULL,'','OTNOTE','','','<p><strong>per op findings:</strong></p>\r\n\r\n<p>- 1x1 cm perforation at pre pyloric region of anterior stomach wall.</p>\r\n\r\n<p>- generalised peritonitis +</p>\r\n\r\n<p>- pus collection at parahepatic , parasplenic , paragutter colic and pelvic area</p>\r\n\r\n<p>- pus flakes&nbsp;over all over small bowel</p>\r\n\r\n<p>- edematous small bowel loop +</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>operative steps:-</strong></p>\r\n\r\n<p>- mid line incision kept.</p>\r\n\r\n<p>- abdomen open in layer.</p>\r\n\r\n<p>-all over abdominal cavity filled with pus</p>\r\n\r\n<p>-whole pus drained</p>\r\n\r\n<p>-pus flakes all over small bowel loop</p>\r\n\r\n<p>-pus flakes removal done&nbsp;</p>\r\n\r\n<p>-1:1 cm peptic perforation at anterior stomach wall&nbsp;</p>\r\n\r\n<p>-ligamentum teres put over perforation site and perforation closed with mersilk 3 0</p>\r\n\r\n<p>-thoroughly saline&nbsp;wash given</p>\r\n\r\n<p>-hemostasis achived.</p>\r\n\r\n<p>-romo adk n0.28 kept on parahepatic area&nbsp; and pelvic area</p>\r\n\r\n<p>-swab and instrument count done - ok</p>\r\n\r\n<p>-linea alba closed with prolene no.1</p>\r\n\r\n<p>-skin closed with skin steppler</p>\r\n\r\n<p>-dressing kept&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 12:26:20','mo','2025-12-11 13:07:50'),(9556,0,0,4015,3906,5854,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-11 12:27:03','','0000-00-00 00:00:00'),(9557,0,0,3764,255,5425,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.MEZOR 1 GM</P>\r\n\r\n<P>INJ.METROGYL 500MG</P>\r\n\r\n<P>INJ.PANTODAC 40MG</P>\r\n\r\n<P>INJ.VOMISET</P>\r\n\r\n<P>INJ.TRAMADOL&nbsp;</P>\r\n\r\n<P>INJ.NTG&nbsp; 1/50 ML/HR</P>\r\n\r\n<P>TAB ARKAMIN</P>\r\n\r\n<P>TAB ARKAMIN</P>\r\n\r\n<P>INJ.PERINORM</P>\r\n\r\n<P>TAB. OLAGRESS</P>\r\n\r\n<P>INJ.DERIPHYLLIN</P>\r\n\r\n<P>NEB DUOLIN/BUDECORT&nbsp;</P>\r\n\r\n<P>TAB QUTAN&nbsp;</P>\r\n\r\n<P>TAB BISOBIS</P>\r\n\r\n<P>TAB C UDP</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 12:31:31','mo','2025-12-11 13:48:20'),(9558,0,0,3833,262,5588,0,0,NULL,'','DISCCOND','','','<P>FOLEY&#39;S IN SITU (DAY-3, NO 14)</P>\r\n\r\n<P>RYLE&#39;S TUBE IN SITU (DAY-3, NO-16)</P>\r\n\r\n<P>ROMO ADK NO 28 IN SITU</P>\r\n\r\n<P>DRAIN IN SITU</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 12:32:53','mo','2025-12-11 13:07:50'),(9559,0,0,4028,3920,5882,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-11 12:33:04','','0000-00-00 00:00:00'),(9560,0,0,4025,3917,5878,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--medicine skipped</p>\n\n<p>recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 12:37:18','','0000-00-00 00:00:00'),(9561,0,0,4025,3917,5878,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 12:37:40','','0000-00-00 00:00:00'),(9562,0,0,3938,268,5722,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 12:42:00','mo','2025-12-11 12:45:23'),(9563,0,0,3938,268,5722,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>BP MONITORING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 12:42:00','mo','2025-12-11 12:45:23'),(9564,0,0,3938,268,5722,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE (250 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB NEXPROFAST(40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ECOSPRIN (150 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB CLAVIX (75 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB LIPITAS (20 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB DYTOR (5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 7 DAYS</P>\r\n\r\n<P>TAB ULTRACET&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR PAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 12:45:08','mo','2025-12-11 12:45:23'),(9565,0,0,4031,3923,5887,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----YESTERDAY||','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 12:47:45','','0000-00-00 00:00:00'),(9566,0,0,4031,3923,5887,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>positional giddiness +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 12:48:57','','0000-00-00 00:00:00'),(9567,0,0,4031,3923,5887,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>&thinsp;pta--right high freq moderate sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---rigth hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 12:49:15','darshan','2025-12-11 18:19:22'),(9569,0,0,1571,1530,5870,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of headache</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 12:53:19','','0000-00-00 00:00:00'),(9570,0,0,4032,3924,5888,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-11 12:55:30','','0000-00-00 00:00:00'),(9571,0,0,4032,3924,5888,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-11 12:55:33','drjayant','2025-12-11 12:55:53'),(9579,0,0,3400,225,4777,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFICOOL (200 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ROTOGUT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ECOSPRIN AV (75/10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB SERANASE AP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>SYP PEGCLEAR (25 ML WITH WATER)&nbsp; &nbsp; &nbsp; HS&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>CONTINUE OWN MEDICINE:</STRONG></P>\r\n\r\n<P>TAB MPROL-AM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0</P>\r\n\r\n<P>TAB PROSTAGARD (8 MG)&nbsp; &nbsp; &nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>TAB LOPEZ MD (2 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0-1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 13:03:41','mo','2025-12-11 13:16:59'),(9580,0,0,4016,3907,5856,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 13:06:29','','0000-00-00 00:00:00'),(9582,0,0,4036,3928,5895,0,0,NULL,'','HIST','ZZZ','Remark','<p>both ear deafness ----1-2 months&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 13:09:26','','0000-00-00 00:00:00'),(9583,0,0,4036,3928,5895,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---small central perforation</p>\n\n<p>pta----bilateral severe conductive deafness</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 13:09:51','darshan','2025-12-11 13:46:15'),(9585,0,0,4023,3915,5874,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----3 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 13:17:15','','0000-00-00 00:00:00'),(9586,0,0,4023,3915,5874,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR DEAFNESS AND TINNITUS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 13:17:15','','0000-00-00 00:00:00'),(9587,0,0,4023,3915,5874,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo---sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 13:17:19','darshan','2025-12-11 13:18:06'),(9588,0,0,4023,3915,5874,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE PERIODICALLY||','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 13:17:28','','0000-00-00 00:00:00'),(9589,0,0,4023,3915,5874,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absnet</p>\n\n<p>dix hallpike---ands</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 13:18:16','darshan','2025-12-11 14:00:01'),(9590,0,0,4023,3915,5874,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 13:18:19','','0000-00-00 00:00:00'),(9591,0,0,4002,3892,5832,0,0,NULL,'','MADVICE','ZZZ','Remark','OIL/ SUGAR RESTRICTED DIET','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-11 13:18:30','','0000-00-00 00:00:00'),(9593,0,0,659,629,5880,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 13:20:29','','0000-00-00 00:00:00'),(9594,0,0,4040,3932,5902,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 13:23:08','','0000-00-00 00:00:00'),(9596,0,0,4016,3907,5856,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-11 13:25:15','','0000-00-00 00:00:00'),(9597,0,0,1409,1369,5899,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 13:35:29','','0000-00-00 00:00:00'),(9598,0,0,4039,3931,5901,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 13:41:16','darshan','2025-12-11 13:44:22'),(9599,0,0,4039,3931,5901,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--2 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 13:43:26','','0000-00-00 00:00:00'),(9600,0,0,4039,3931,5901,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 13:44:45','darshan','2025-12-11 14:10:18'),(9602,0,0,3764,255,5425,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>CONSCIOUS, ORIENTED</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 13:47:56','mo','2025-12-11 13:48:20'),(9603,0,0,3764,255,5425,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>BP MONITORING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 13:47:56','mo','2025-12-11 13:48:20'),(9604,0,0,3764,255,5425,0,0,NULL,'','TREATDISC_TI','','','<P>INJ MEZOR (1 GM/ 100 NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8AM--3PM--10PM&nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS (7 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB METRO ER (600 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 3 DAYS (5 TAB)</P>\r\n\r\n<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB PERINORM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ARKAMINE(0.1 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB DERIPHYLLIN RETARD (300 MG)&nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB BISOBIS (2.5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB CREMALAX (10 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB STAGLIM M1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 13:47:56','mo','2025-12-11 13:48:20'),(9605,0,0,3345,218,4688,0,0,NULL,'','TREATDISC_TI','','','<P>CAP. MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB. PREDNISOLONE (20MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; FOR 4&nbsp;DAYS (7 TAB)</P>\r\n\r\n<P>TAB. SITAGLIPTIN &AMP; METFORMIN (50/1000)&nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB. THROMBOPAG(50MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;2 HOURS BEFORE &AMP; AFTER FOOD&nbsp; &nbsp; AT 10 AM</P>\r\n\r\n<P>TAB.TRENEXA (500 MG)&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS&nbsp; &nbsp; &nbsp;FOR BLEEDING&nbsp;&nbsp;</P>\r\n\r\n<P>TAB.CALPOL (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp;FOR FEVER</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>INJ. ACTRAPID&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;@&nbsp; TO&nbsp; RBS&nbsp; &nbsp; &nbsp; BEFORE BREAKFAST, LUNCH &AMP; DINNER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>&LT; 150...............NIL</P>\r\n\r\n<P>150-180............4 UNIT</P>\r\n\r\n<P>181-220............8 UNIT</P>\r\n\r\n<P>220-250............12 UNIT</P>\r\n\r\n<P>251-300.............16 UNIT</P>\r\n\r\n<P>301-350.............20 UNIT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>INJ. NOVOMIX (30)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; S/C&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;40 UNIT&nbsp; &nbsp;BEFORE BREAKFAST</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;30 UNIT&nbsp; &nbsp;BEFORE DINNER</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 13:59:35','mo','2025-12-11 14:45:28'),(9606,0,0,4039,3931,5901,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 14:10:42','','0000-00-00 00:00:00'),(9609,0,0,4039,3931,5901,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-11 14:11:50','','0000-00-00 00:00:00'),(9610,0,0,3700,250,5307,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>URINE OUTPUT ADEQUET</P>\r\n\r\n<P>VISION IMPROVED&nbsp;</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 15:09:01','mo','2025-12-11 15:16:55'),(9611,0,0,3700,250,5307,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n\r\n<P>TAKE SRD/ADD DIET</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 15:09:01','mo','2025-12-11 15:16:55'),(9612,0,0,3700,250,5307,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>INJ TRULEV</P>\r\n\r\n<P>INJ LOBET</P>\r\n\r\n<P>TAB C UDP</P>\r\n\r\n<P>TAB CLOBA</P>\r\n\r\n<P>INJ VOSIMOL</P>\r\n\r\n<P>TAB AMTAS</P>\r\n\r\n<P>INJ TRAMADOL</P>\r\n\r\n<P>TAB NIDITAB</P>\r\n\r\n<P>TAB NAPROSYN D</P>\r\n\r\n<P>TAB CEFTUM</P>\r\n\r\n<P>TAB SODACON</P>\r\n\r\n<P>INJ VITNEURIN</P>\r\n\r\n<P>CAP MAC RD</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 15:09:01','mo','2025-12-11 15:16:55'),(9613,0,0,3700,250,5307,0,0,NULL,'','TREATDISC_TI','','','<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......FOR 10&nbsp;DAYS</P>\r\n\r\n<P>TAB TRULEV(500MG)&nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......FOR 10 DAYS</P>\r\n\r\n<P>TAB C UDP (10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......FOR 10&nbsp;DAYS</P>\r\n\r\n<P>TAB NIDITAB(0.3MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......FOR 10 DAYS&nbsp;</P>\r\n\r\n<P>TAB CLOBA (5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......FOR 10 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 15:09:01','mo','2025-12-11 15:16:55'),(9614,0,0,3977,272,5791,0,0,NULL,'','DISCDIAG','','','<P><STRONG>1ST TIME DECTED HYPERTENSION</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 16:04:38','','0000-00-00 00:00:00'),(9615,0,0,3977,272,5791,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>NAD</STRONG><BR />\r\n<BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 16:04:38','','0000-00-00 00:00:00'),(9616,0,0,3977,272,5791,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 35&nbsp; YEARS OLD MALE&nbsp;PATIENT PRESENT WITH,<BR />\r\nC/O: SUDDENLY SEVER HEADACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GIDDINESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; VOMITING</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; TODAY MORNING 5.00 AM.<BR />\r\nPRIMARY TREATMENT TAKEN AT GENERAL PHYSAIN.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 97.4`F<BR />\r\nPR- 94/MIN<BR />\r\nBP- 240/140MMHG&nbsp;<BR />\r\nSPO2- 97% ON RA&nbsp;<BR />\r\nRR- 30/MIN</P>\r\n\r\n<P>RBS - 136&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10-12-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF HYPERTENSION INJ. NTG START BY INFUSION PUMP.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>TROP I - 15.5 NG/ L.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>INJ. NORAD TAPPER.</P>\r\n\r\n<P>ICU STAY UNEVENTFULL, PATIENT RELETIVE WANT DISCHARGE AGAIN MEDICAL ADVICE.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 16:04:38','','0000-00-00 00:00:00'),(9617,0,0,3977,272,5791,0,0,NULL,'','DISCCOND','','','<P>ON DISCHARGE TIME PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>INJ. NTG (1 AMP + NS 40 CC) BY S/P</P>\r\n\r\n<P>ORALLY ALLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 16:04:38','','0000-00-00 00:00:00'),(9618,0,0,3977,272,5791,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 16:04:38','','0000-00-00 00:00:00'),(9619,0,0,3977,272,5791,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. RABICROSS</P>\r\n\r\n<P>INJ. QUICKSET</P>\r\n\r\n<P>INJ. NTG</P>\r\n\r\n<P>TAB. ECOSPRIN</P>\r\n\r\n<P>TAB. LIPITAS</P>\r\n\r\n<P>TAB. TELMICON TRIO</P>\r\n\r\n<P>TAB. ECOTRIL</P>\r\n\r\n<P>TAB. TELMICON LN</P>\r\n\r\n<P>INJ. FEBRINYL</P>\r\n\r\n<P>INJ. TRAMADOL</P>\r\n\r\n<P>INJ. RL</P>\r\n\r\n<P>INJ. VITNEURIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 16:04:38','','0000-00-00 00:00:00'),(9620,0,0,3977,272,5791,0,0,NULL,'','TREATDISC_TI','','','<P>INJ. RABICROSS 20 MG IV BD</P>\r\n\r\n<P>INJ. QUICKSET 2ML IV SOS&nbsp;</P>\r\n\r\n<P>INJ. NTG ( 1 AMPUL + NS 40 ML ) BY S/P ..10ML/HR.</P>\r\n\r\n<P>TAB. ECOSPRIN 150 MG P/O 0-1-0</P>\r\n\r\n<P>TAB. LIPITAS 40 MG P/O 0-0-1</P>\r\n\r\n<P>TAB. TELMICON TRIO P/O 0-0-1</P>\r\n\r\n<P>TAB. ECOTRIL 005MG P/O 0-0-1</P>\r\n\r\n<P>TAB. TELMICON LN 10MG P/O 1-0-0</P>\r\n\r\n<P>INJ. TRAMADOL + NS 100ML IV SOS</P>\r\n\r\n<P>INJ. RL 500ML +&nbsp;INJ. VITNEURIN...50ML/HR.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 16:04:38','','0000-00-00 00:00:00'),(9621,0,0,3601,243,5120,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-11 16:09:06','mo','2025-12-22 22:27:40'),(9622,0,0,3601,243,5120,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 49&nbsp; YEARS OLD FEMALE&nbsp; PATIENT PRESENT WITH,</P>\r\n\r\n<P>K/C/O: HTN UNDER&nbsp;RX.</P>\r\n\r\n<P>H/O : BACKACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FEVER ON AND OFF.</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DOE WITH MILD BREATHLESSNESS 2-3 DAYS.</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;COUGH, FEVER, NAUSEA, GEN. WEKNESS, ABDOMINAL HEAVINESS SICNE 2-3 DAYS.&nbsp;&nbsp;<BR />\r\nPRIMARY RX TAKEN AT VIRAL HOSPITAL (OPD BASE) RAJKOT.</P>\r\n\r\n<P>THAN H.J. DOSHI HOSPITAL RAJKOT, 03-12-2025 TO 03-12-2025.</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>ON EXAMINATION PATIENT IS CONSIOUS, ORIENTED, FOLLO VERBAL COMAND.</P>\r\n\r\n<P>O2 SUPPORT WITH&nbsp; NASAL CANULA 2 LIT O2.</P>\r\n\r\n<P>HRTC THOREX OUT SIDE.</P>\r\n\r\n<P>DIAGNOSED - LRTI WITH SEPSIS WITH SEVERE THROMBOCYTOPENIA WITH AKI WITH VIRAL PNEUMONIA.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:&nbsp;<BR />\r\nTEMP- 98.0`F<BR />\r\nPR- 103/MIN<BR />\r\nBP- 120/91 MMHG&nbsp;<BR />\r\nSPO2- 96% ON O2 SUPPORT 2 LIT.&nbsp;<BR />\r\nRR- 22/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS-BLAE+, HAZINESS +NT.<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>04-12-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ABG DONE - LACTATE - 3.11</P>\r\n\r\n<P>INJ. NAHCO3 START&nbsp; BY INFUSION.</P>\r\n\r\n<P>IN VIEW OF ANUREA INJ. DYTOR DRIP START BY INFUSION PUMP.</P>\r\n\r\n<P>1ST, HB - 13.0, WBC - 4890, PLATLETES - 8000.</P>\r\n\r\n<P>ONE UNIT&nbsp;SDP GIVEN.</P>\r\n\r\n<P>FOLY`S CATH DONE.</P>\r\n\r\n<P>SEEN BY DR. ADITI THANKI (ONCOPHYSIAN), ADVICE FOLLOWED.</P>\r\n\r\n<P>2ND HB - 12.4, WBC - 16920, PLATLETES - 14,000.</P>\r\n\r\n<P>PERIPHERAL SMEAR EXAMINATION - ? MICROANGIOPATHIC HAEMOLYTIC ANEMAI (MAHA ) (? HUS/TTP/DIC).</P>\r\n\r\n<P>OTHER ONE UNIT SDP GIVEN TOTAL 2UNIT GIVEN SAME DAY.</P>\r\n\r\n<P>USG ABDOMEN DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>SEEN BY DR. PRATIK SHAH (UROLOGIST) ADVICE CYSTOSCOPY AND DJ STANTING.</P>\r\n\r\n<P>2 D ECHO DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>3RD HB- 11.4, WBC - 19300, PLATLETES - 16000.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>O2 SUPPORT CONTINUE.</P>\r\n\r\n<P>INJ. DYTOR DRIP CONTINUE.</P>\r\n\r\n<P>LEFT HAND BLOOD CULTURE SUGGESTED - ESCHERICHIA COLI.</P>\r\n\r\n<P>SCRUB TYPHUS ANTIBODY IGM - 11.0 RATIO.</P>\r\n\r\n<P>MORNING HB - 12.1, WBC - 26,770, PLATELETS - 16,000.</P>\r\n\r\n<P>S.CREATININE - 3.94.</P>\r\n\r\n<P>SEEN BY DR. DENISH SAVALIYA (NEPHROLOGSIT). ADVICE HD.</P>\r\n\r\n<P>TLC - RIGHT IJV DONE.</P>\r\n\r\n<P>1ST HD DONE - DURATION - 4HRS, UF - 3.0 LIT.</P>\r\n\r\n<P>EVENING&nbsp; HB - 12.6, WBC - 35,700, PLATELETS - 9,000.</P>\r\n\r\n<P>S.CREATININE - 2.63.</P>\r\n\r\n<P>1ST CYCLE START IVIG TOTAL 25 GM GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>06-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>INJ. DYTOR CONTINUE.</P>\r\n\r\n<P>URINE CULTURE SUGGESTED - NO ORGANISM SEEN.</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED, FOLLO VERBAL COMAND.</P>\r\n\r\n<P>MORNING HB - 11.9, WBC - 47,950, PLATELETS - 3,000.</P>\r\n\r\n<P>1UNIT SDP GIVEN.</P>\r\n\r\n<P>EVENING&nbsp; HB - 11.0, WBC - 52,240, PLATELETS - 13,000.</P>\r\n\r\n<P>PERIPHERAL SMEAR EXAMINTATION - MILD DEGREE MICROCYTIC HYPOCHROMIC ANEMIA WITH&nbsp; POLYMORPHOUS LEUKOCYTOSIS AND SEVERE THROMBOCYTOPENIA</P>\r\n\r\n<P>SEEN BY DR. DENISH SAVALIYA (NEHPROLOGSIT) ADVICE FOLLOWED.</P>\r\n\r\n<P>2ND HD DONE - DURATION - 4HRS UF - 2.5 LIT.</P>\r\n\r\n<P>2ND&nbsp;CYCLE START IVIG TOTAL 25 GM GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>07-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED, FOLLO VERBAL COMAND.</P>\r\n\r\n<P>INJ. DYTOR STOP.</P>\r\n\r\n<P>HB - 10.6, WBC - 38,110, PLATELETS - 52,000.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION INJ. NORAD START BY INFUSION PUMP.</P>\r\n\r\n<P>SEEN BY DR. DENISH SAVALIYA (NEPHROLOGIST) ADVICE HD.</P>\r\n\r\n<P>3RD HD DONE - DURATION - 4HRS, UF - 750 ML.</P>\r\n\r\n<P>3RD&nbsp;CYCLE START IVIG TOTAL 25 GM GIVEN.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>08-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED, FOLLO VERBAL COMAND.</P>\r\n\r\n<P>HB - 10.2, WBC - 27,630, PLATELETS - 24,000.</P>\r\n\r\n<P>S.CREATININE - 3.06 MG/L.</P>\r\n\r\n<P>SEEN BY DR. TEJAS&nbsp; KARGANGIYA (ENDOVASCULAR) ADVICE FOLLOWED.</P>\r\n\r\n<P>BOTH LOWER LIMB ARTERIAL&nbsp; DOPPLER DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>4TH CYCLE START IVIG TOTAL 25 GM GIVEN.</P>\r\n\r\n<P>IN VIEW OF GTCS, INJ. LEVEPIL LODING DOSE GIVEN AND START ACC. TO DOSE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>09-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED, FOLLO VERBAL COMAND.</P>\r\n\r\n<P>SEEN&nbsp;BY DR. DENISH SAVALIYA (NEPHROLOGIST) ADVICE FOLLOWED.</P>\r\n\r\n<P>STOP NORAD SUPPORT.</P>\r\n\r\n<P>MORNING HB - 9.6, WBC - 20,180, PLATELETS - 6000.</P>\r\n\r\n<P>S.CREATININE - 3.90&nbsp;MG/L.</P>\r\n\r\n<P>EVENING&nbsp; HB - 10.01, WBC - 16,670, PLATELETS - 7000.</P>\r\n\r\n<P>5TH CYCLE 5GM IVIG GIVEN AND STOP.</P>\r\n\r\n<P>1ST&nbsp;PLASMA EXCHANGE DONE. - 15 UNIT FFP EXCHANGE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED, FOLLO VERBAL COMAND.</P>\r\n\r\n<P>HB - 8.9, WBC - 13710, PLATELETS - 5000.</P>\r\n\r\n<P>S.CREATININE - 4.77&nbsp;MG/L.</P>\r\n\r\n<P>PERIPHARAL SMEAR EXAMINATION - ? MICROANGIOPATHIC HAEMOLYTIC ANEMAI WITH SEVERE INFECTION&nbsp; (? TTP - HUS /DIC)</P>\r\n\r\n<P>SEEN&nbsp;BY DR. DENISH SAVALIYA (NEPHROLOGIST) ADVICE FOLLOWED.</P>\r\n\r\n<P>SEEN BY DR. ADITI THANKI (ONCOPHYSIAN), ADVICE FOLLOWED.</P>\r\n\r\n<P>2ND PLASMA&nbsp;EXCHANGE DONE. - 15 UNINT FFP EXCHANGE</P>\r\n\r\n<P>URINE OUT PUT DECRESED SO, INJ. DYTOR DRIP START AND 4TH&nbsp; HD DONE DURATION - 4HRS, UF - 2LIT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED, FOLLO VERBAL COMAND.</P>\r\n\r\n<P>3RD PLASMA EXCHANGE DONE. - 15 UNIT FFP EXCHANGE - DURATION 3 HRS.</P>\r\n\r\n<P>S.BILIRUBIN&nbsp; TOTAL : 4.25 MG/DL, DIRECT : 1.35 MG/DL, INDIRECT : 2.9 MG/DL.</P>\r\n\r\n<P>HB - 9.3, WBC - 13710, PLATELETS - 7000.</P>\r\n\r\n<P>S.CREATININE - 4.70&nbsp;MG/L.</P>\r\n\r\n<P>SEEN&nbsp;BY DR. DENISH SAVALIYA (NEPHROLOGIST) ADVICE FOLLOWED.</P>\r\n\r\n<P>PATIENT GENERAL CONDITION IMPROVED SO SHIFT TO WARD IN STABLE CONDITION&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED, FOLLO VERBAL COMAND.</P>\r\n\r\n<P>HB - 8.2, WBC - 13800, PLATELETS - 26000.</P>\r\n\r\n<P>SEEN&nbsp;BY DR. DENISH SAVALIYA (NEPHROLOGIST) ADVICE FOLLOWED.</P>\r\n\r\n<P>4TH CYCLE PLASMA EXCHANGE DONE. - 15 UNIT FFP EXCHANGE - DURATION 3 HRS.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13-12-2025</P>\r\n\r\n<P>HB - 8.3, WBC - 20580, PLATELETS - 36000.</P>\r\n\r\n<P>SEEN&nbsp;BY DR. DENISH SAVALIYA (NEPHROLOGIST) ADVICE FOLLOWED.</P>\r\n\r\n<P>5TH CYCLE PLASMA EXCHANGE DONE. - 15 UNIT FFP EXCHANGE - DURATION 3 HRS.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14-12-2025,</P>\r\n\r\n<P>HB - 8.0, WBC - 31170, PLATELETS - 43000.</P>\r\n\r\n<P>SEEN&nbsp;BY DR. DENISH SAVALIYA (NEPHROLOGIST) ADVICE FOLLOWED.</P>\r\n\r\n<P>6TH CYCLE PLASMA EXCHANGE DONE. - 15 UNIT FFP EXCHANGE - DURATION 3 HRS.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15-12-2025,</P>\r\n\r\n<P>HB - 7.6, WBC - 33470, PLATELETS - 48000.</P>\r\n\r\n<P>IN VIEW OF LOW HB 1 UNIT LR RCC GIVEN</P>\r\n\r\n<P>IN VIEW OF LOW NA+ INJ NS 3% GIVEN</P>\r\n\r\n<P>SEEN&nbsp;BY DR. DENISH SAVALIYA (NEPHROLOGIST) ADVICE FOLLOWED.</P>\r\n\r\n<P>4TH HD DONE - DURATION - 4HRS, UF - NIL, HEPARIN FREE</P>\r\n\r\n<P>REVIEW OF&nbsp;DR. ADITI THANKI (ONCOPHYSICIAN) DONE, ADVICE FOLLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16-12-2025</P>\r\n\r\n<P>SEEN BY DR ADITI THANKY AND ADVICE FOR RITUXIMAB&nbsp;</P>\r\n\r\n<P>7TH CYCLE PLASMA EXCHANGE DONE. - 15 UNIT FFP EXCHANGE - DURATION 3 HRS.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17-12-2025</P>\r\n\r\n<P>IN VIEW OF INVOLUNTARY STOOL PASS REFERENCE OF DR PRATAPSINH DODIYA (GENERAL SURGEON) DONE AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>FOLEY&#39;S CATHETER CHANGE WITH ALL ASEPTIC PRECAUTION&nbsp;</P>\r\n\r\n<P>1ST INJ&nbsp;RITUXIMAB GIVEN IN ICU UNDER OBSERVATION&nbsp;</P>\r\n\r\n<P>IN VIEW OF LOW HB 1 UNIT RCC GIVEN&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18-12-2025</P>\r\n\r\n<P>8TH CYCLE PLASMA EXCHANGE DONE. - 15 UNIT FFP EXCHANGE - DURATION 3 HRS.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVS.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19-12-2025</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PS EXAMINATION DONE WHICH S/O ;</P>\r\n\r\n<P>-NORMOCYTIC NORMOCHROMIC ANEMIA WITH MILD POLYMORPHUS LEUCOCYTOSIS</P>\r\n\r\n<P>-MODERATE TCP</P>\r\n\r\n<P>-ANEMIA OF CHRONIC RENAL DISEASE WITH INFECTIVE FOCUS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20-12-2025,</P>\r\n\r\n<P>IRON SUPPLIMENT (INJ.NEC FCM ) DONE IN ICU UNDER OBSERVATION.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21-12-2025</P>\r\n\r\n<P>SUDDENLY PATIENT DROWSINESS, SO REQUIRED BLOOD INVEATIGATION DONE.</P>\r\n\r\n<P>RT INSERTION AND RT FEEDING STARTED.</P>\r\n\r\n<P>OXYGEN SUPPORT STARTED IN VEW OF DROWSINESS AND HYPOXIA</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL SUPPLIMENT.</P>\r\n\r\n<P>MRI BRAIN DONE, REPORT ATTACHED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22-12-2025,</P>\r\n\r\n<P>NEUROPHYSICIAN DR KAUMIL KOTHARI&#39;S REFERANCE DONE AND ALL HID ADVICE FOLLOWED.</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 16:09:06','mo','2025-12-22 22:27:40'),(9623,0,0,3601,243,5120,0,0,NULL,'','DISCDIAG','','','<P><STRONG>SPETIC SHOCK WITH LEFT PYELONEPHRITIS ( DJ STENTING DONE)</STRONG></P>\r\n\r\n<P><STRONG>WITH SEVERE THROMBOCYTOPENIA ? HUS / DIC</STRONG></P>\r\n\r\n<P><STRONG>ATN</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN UNDER&nbsp;RX.</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 16:15:08','mo','2025-12-22 22:27:40'),(9624,0,0,4044,3936,5907,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 YRS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:01:25','','0000-00-00 00:00:00'),(9625,0,0,4044,3936,5907,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>nausea and vomiting +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:02:07','','0000-00-00 00:00:00'),(9626,0,0,4044,3936,5907,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix halllpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilateral high freq severe sn deafness</p>\n\n<p>stabilometry----reduced vestibular score</p>\n\n<p>vng---bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:02:21','darshan','2025-12-11 18:53:33'),(9629,0,0,4045,3937,5908,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:06:26','','0000-00-00 00:00:00'),(9630,0,0,4048,3940,5913,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:19:24','','0000-00-00 00:00:00'),(9631,0,0,4048,3940,5913,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotyr feeling any time and remains for few mins to hrs&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:19:59','darshan','2025-12-11 19:07:15'),(9632,0,0,4048,3940,5913,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit---nad</p>\n\n<p>pta----bilaterl modrate sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---central vareity of nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:20:13','darshan','2025-12-11 19:07:53'),(9635,0,0,4046,3938,5909,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of giddiness with fall down without LOC&thinsp;</p>\n\n<p>remains for few mins&thinsp;</p>\n\n<p>headache is associated with giddiness remains for few mins&thinsp;</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:33:43','darshan','2025-12-11 17:35:06'),(9636,0,0,4046,3938,5909,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----1-2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:33:56','','0000-00-00 00:00:00'),(9637,0,0,4046,3938,5909,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ----1-2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:34:06','','0000-00-00 00:00:00'),(9638,0,0,4046,3938,5909,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike----nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilateral high freq severe sn deafness</p>\n\n<p>CCG---body axis spin--right side&thinsp;</p>\n\n<p>vng---central variety of nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:35:17','darshan','2025-12-11 19:22:06'),(9639,0,0,4046,3938,5909,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:35:19','','0000-00-00 00:00:00'),(9640,0,0,3601,243,5120,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>04-12-2025</P>\r\n\r\n<P>CYSTOSCOPY + LEFT DJ STANTING DONE UDNER LA BY DR. NARESH SAPARIYA.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>05-12-2025</P>\r\n\r\n<P>RIGHT IJV TLC DONE BY DR. ARCHT RATHOD.WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 17:42:31','mo','2025-12-22 22:27:40'),(9641,0,0,3601,243,5120,0,0,NULL,'','OTNOTE','','','<p>per-op findings:</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>-patient given lithotomy position</p>\r\n\r\n<p>-ppd done</p>\r\n\r\n<p>-lignocain gel inserted</p>\r\n\r\n<p>-cystoscopy done-uretrhra normal</p>\r\n\r\n<p>-bladder turbid urine present</p>\r\n\r\n<p>-left dj stenting done</p>\r\n\r\n<p>-turbid efflux present</p>\r\n\r\n<p>&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 17:42:31','mo','2025-12-22 22:27:40'),(9642,0,0,1325,1286,5910,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:44:08','','0000-00-00 00:00:00'),(9643,0,0,3601,243,5120,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. MERO</P>\r\n\r\n<P>INJ. CLINDATECH</P>\r\n\r\n<P>INJ. TIGEBAX</P>\r\n\r\n<P>INJ. PANTODAC</P>\r\n\r\n<P>INJ. DERIPHYLIN</P>\r\n\r\n<P>INJ. DEXONA</P>\r\n\r\n<P>INJ. DYTOR</P>\r\n\r\n<P>INJ. LEVIGRESS</P>\r\n\r\n<P>INJ. PERINORM</P>\r\n\r\n<P>INJ. PRIMACORT</P>\r\n\r\n<P>INJ. AVIL</P>\r\n\r\n<P>INJ. FEBRINYL</P>\r\n\r\n<P>INJ. NORAD</P>\r\n\r\n<P>INJ. MUCOMIX</P>\r\n\r\n<P>INJ. VIT K</P>\r\n\r\n<P>INJ. ROMY</P>\r\n\r\n<P>IVF NS/ RL</P>\r\n\r\n<P>TAB. ELROMO</P>\r\n\r\n<P>NEB. DUOLIN : BUDACORT</P>\r\n\r\n<P>TAB. CREMALEX</P>\r\n\r\n<P>TAB. PLATIFY</P>\r\n\r\n<P>CAP. DOXY</P>\r\n\r\n<P>IVIG</P>\r\n\r\n<P>FFP/ SDP</P>\r\n\r\n<P>TAB ULTRACET</P>\r\n\r\n<P>&nbsp;RCC 2 UNIT&nbsp;</P>\r\n\r\n<P>INJ EPIME TZ</P>\r\n\r\n<P>INJ TRENEXA</P>\r\n\r\n<P>TAB FOLE</P>\r\n\r\n<P>TAB BIFOLATE</P>\r\n\r\n<P>CANDID MOUTH PAINT</P>\r\n\r\n<P>INJ NS 3%</P>\r\n\r\n<P>TAB METRO ER</P>\r\n\r\n<P>TAB RIFAGUT</P>\r\n\r\n<P>TAB SPORLAC&nbsp;</P>\r\n\r\n<P>RASH FREE OINT</P>\r\n\r\n<P>NEOSPORIN OINT&nbsp;</P>\r\n\r\n<P>INJ RITUXIMAB&nbsp;</P>\r\n\r\n<P>INJ KCL&nbsp;</P>\r\n\r\n<P>INJ NEC FCM</P>\r\n\r\n<P>TAB MONTEK LC</P>\r\n\r\n<P>TAB FAMCYCLOVIR&nbsp; (250)</P>\r\n\r\n<P>INJ.LACOSAM</P>\r\n\r\n<P>INJ.VIT K</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 17:46:56','mo','2025-12-22 22:27:40'),(9644,0,0,4047,3939,5911,0,0,NULL,'','CC','ZZZ','Remark','RECURRENT THROAT ----FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:48:27','','0000-00-00 00:00:00'),(9645,0,0,4047,3939,5911,0,0,NULL,'','CC','ZZZ','Remark','RECURRENT NASAL DISCHARGE||','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:48:27','','0000-00-00 00:00:00'),(9646,0,0,4047,3939,5911,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose--DNS to right&thinsp;</p>\n\n<p>allergic mucosa</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:48:44','','0000-00-00 00:00:00'),(9648,0,0,4047,3939,5911,0,0,NULL,'','MADVICE','ZZZ','Remark','CT PNS LIMITED STUDY NEXT TIME','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:50:34','','0000-00-00 00:00:00'),(9649,0,0,3442,3347,5917,0,0,NULL,'','HIST','ZZZ','Remark','<p>recurrent nasal blockage</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:53:56','','0000-00-00 00:00:00'),(9651,0,0,2739,2670,5915,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 17:59:10','','0000-00-00 00:00:00'),(9652,0,0,3409,3317,5919,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow upc ase----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 18:02:28','','0000-00-00 00:00:00'),(9654,0,0,3409,3317,5919,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-11 18:03:32','','0000-00-00 00:00:00'),(9655,0,0,4000,3891,5830,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 18:10:38','','0000-00-00 00:00:00'),(9657,0,0,4000,3891,5830,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-11 18:11:42','','0000-00-00 00:00:00'),(9658,0,0,2937,187,4017,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>1-12-2025</P>\r\n\r\n<P>T`STOMY DONE BY DR. UMANG SHUKA (ENT SURGEON).</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>08-12-2025</P>\r\n\r\n<P>RIGHT SUBCLAVIN CVP DONE BY DR. ARCHIT RATHOD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11-12-2025</P>\r\n\r\n<P>UNDER CT GUDIDE 16`F PICTAIL CATH PLACED IN RIGHT SIDED RETRO PERITONEAL COLLECTION DONE BY DR. VIKASH JAIN (ENDOVASCULAR SURGEON) DONE AT WOCKHARDT HOSPITAL RAJKOT.&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-11 18:16:31','mo','2025-12-15 22:47:12'),(9659,0,0,3155,3069,5894,0,0,NULL,'','DIAG','ZZZ','Remark','SERO NEGATIVE RA','','',0,'0000-00-00 00:00:00','drarchit','2025-12-11 18:17:25','','0000-00-00 00:00:00'),(9660,0,0,4050,3942,5918,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-11 18:17:29','','0000-00-00 00:00:00'),(9661,0,0,4050,3942,5918,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER BACK PAIN WITH LEFT LOWE','','',0,'0000-00-00 00:00:00','drsagar','2025-12-11 18:17:38','','0000-00-00 00:00:00'),(9662,0,0,4050,3942,5918,0,0,NULL,'','DIAG','ZZZ','Remark','NECK PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-11 18:17:47','','0000-00-00 00:00:00'),(9663,0,0,4031,3923,5887,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 18:19:26','','0000-00-00 00:00:00'),(9664,0,0,4031,3923,5887,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 18:20:06','','0000-00-00 00:00:00'),(9666,0,0,4031,3923,5887,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANEUVER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-11 18:21:15','','0000-00-00 00:00:00'),(9667,0,0,1592,1549,5923,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better for giddiness&thinsp;</p>\n\n<p>headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 18:24:03','','0000-00-00 00:00:00'),(9669,0,0,1592,1549,5923,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY FOR HEADACHE ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-11 18:26:11','','0000-00-00 00:00:00'),(9670,0,0,4051,3943,5920,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ELBOW PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-11 18:26:21','','0000-00-00 00:00:00'),(9671,0,0,4049,3941,5916,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-11 18:31:22','','0000-00-00 00:00:00'),(9672,0,0,4052,3944,5922,0,0,NULL,'','HIST','ZZZ','Remark','<p>Headahce with vomiting</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 18:31:23','','0000-00-00 00:00:00'),(9673,0,0,4052,3944,5922,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 18:31:46','','0000-00-00 00:00:00'),(9674,0,0,79,68,5924,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 18:35:02','','0000-00-00 00:00:00'),(9675,0,0,2881,2812,5933,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----since last 3-4 days giddiness and headache</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 18:42:54','','0000-00-00 00:00:00'),(9676,0,0,3997,3888,5823,0,0,NULL,'','CC','ZZZ','Remark','WT LOSS||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-11 18:44:48','','0000-00-00 00:00:00'),(9677,0,0,3997,3888,5823,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-11 18:44:50','drjayant','2025-12-11 18:45:58'),(9678,0,0,4060,3952,5936,0,0,NULL,'','CC','ZZZ','Remark','URTI | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-11 18:53:07','','0000-00-00 00:00:00'),(9679,0,0,4060,3952,5936,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-11 18:53:20','','0000-00-00 00:00:00'),(9680,0,0,1930,1883,5928,0,0,NULL,'','CC','ZZZ','Remark','RT FACE SOMETHING BITE? WITH PAIN | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-11 19:02:35','','0000-00-00 00:00:00'),(9681,0,0,1930,1883,5928,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-11 19:02:46','','0000-00-00 00:00:00'),(9682,0,0,4048,3940,5913,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 19:08:37','','0000-00-00 00:00:00'),(9684,0,0,4065,3957,5944,0,0,NULL,'','CC','ZZZ','Remark','BODYACHE, LEGS PAIN | 2 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-11 19:12:24','','0000-00-00 00:00:00'),(9685,0,0,4065,3957,5944,0,0,NULL,'','CC','ZZZ','Remark','FEVER | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-11 19:12:24','','0000-00-00 00:00:00'),(9686,0,0,4062,3954,5939,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 19:17:02','','0000-00-00 00:00:00'),(9687,0,0,4062,3954,5939,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness&thinsp; without any cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 19:17:30','','0000-00-00 00:00:00'),(9688,0,0,4062,3954,5939,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absetnd</p>\n\n<p>dix hallpike---nasd</p>\n\n<p>hit---nad</p>\n\n<p>stasbilometry---reduced vestibular socre</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 19:17:45','darshan','2025-12-11 19:52:08'),(9689,0,0,4062,3954,5939,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 19:17:51','','0000-00-00 00:00:00'),(9690,0,0,4061,3953,5937,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 19:33:24','','0000-00-00 00:00:00'),(9691,0,0,4061,3953,5937,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 19:33:58','','0000-00-00 00:00:00'),(9692,0,0,4061,3953,5937,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike----nad</p>\n\n<p>hit-nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 19:34:14','','0000-00-00 00:00:00'),(9693,0,0,4061,3953,5937,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 19:34:15','','0000-00-00 00:00:00'),(9695,0,0,4048,3940,5913,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-11 19:35:59','','0000-00-00 00:00:00'),(9696,0,0,4022,3914,5873,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-12-11 19:43:32','','0000-00-00 00:00:00'),(9697,0,0,2023,1975,5941,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case=coughing +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 19:46:37','','0000-00-00 00:00:00'),(9699,0,0,4062,3954,5939,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 19:54:54','','0000-00-00 00:00:00'),(9703,0,0,4062,3954,5939,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-11 19:55:24','','0000-00-00 00:00:00'),(9704,0,0,4064,3956,5943,0,0,NULL,'','CC','ZZZ','Remark','BOTH  EAR PAIN--2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-11 19:57:03','','0000-00-00 00:00:00'),(9705,0,0,3388,3298,5954,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n\n<p>two episodes of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 10:46:54','','0000-00-00 00:00:00'),(9706,0,0,3534,3437,5956,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>occasional irritation in throat&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 10:53:06','','0000-00-00 00:00:00'),(9707,0,0,3436,3343,5955,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better partially&thinsp; better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 10:56:48','','0000-00-00 00:00:00'),(9709,0,0,3436,3343,5955,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-12 10:58:12','','0000-00-00 00:00:00'),(9710,0,0,4071,3964,5960,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ---FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:08:15','','0000-00-00 00:00:00'),(9711,0,0,4071,3964,5960,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of giddiness any time without LOC</p>\n\n<p>heaviness of head with headache +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:08:59','','0000-00-00 00:00:00'),(9712,0,0,4071,3964,5960,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>MRI brain---no sol</p>\n\n<p>EEG done--non conclusive</p>\n\n<p>pta----wnl</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>CCG--wnl</p>\n\n<p>vng---centra variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:09:13','darshan','2025-12-12 12:34:01'),(9714,0,0,3509,3413,5951,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----</p>\n\n<p>on pta---mild imprmovment in hearing</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:15:27','','0000-00-00 00:00:00'),(9715,0,0,1878,1832,5970,0,0,NULL,'','CC','ZZZ','Remark','PRE OP ASSESSMENT FOR TLH||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-12 11:23:32','','0000-00-00 00:00:00'),(9716,0,0,1878,1832,5970,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO CO-MORBIDITIES, DRUG&thinsp;ALLERGIES OR OPERATIONS</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-12 11:24:46','drjayant','2025-12-12 11:40:52'),(9717,0,0,1878,1832,5970,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>BLOOD IX- WNL</p>\n\n<p>ECG- NSR/WNL</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-12 11:25:20','drjayant','2025-12-12 11:39:04'),(9718,0,0,4072,3965,5964,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----5-6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:27:29','','0000-00-00 00:00:00'),(9719,0,0,4072,3965,5964,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>\\no associted other cns symtpms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:28:11','','0000-00-00 00:00:00'),(9720,0,0,4072,3965,5964,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta---nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:28:24','darshan','2025-12-12 12:46:14'),(9721,0,0,4072,3965,5964,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:28:31','','0000-00-00 00:00:00'),(9722,0,0,3369,3280,5963,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:31:06','','0000-00-00 00:00:00'),(9724,0,0,3369,3280,5963,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:32:30','','0000-00-00 00:00:00'),(9725,0,0,56,757,5972,0,0,NULL,'','CC','ZZZ','Remark','BILAT PALM NUMBNESS | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-12 11:32:49','','0000-00-00 00:00:00'),(9726,0,0,56,757,5972,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-12 11:33:01','','0000-00-00 00:00:00'),(9727,0,0,3457,3360,5968,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case------better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:34:43','','0000-00-00 00:00:00'),(9728,0,0,4075,3968,5969,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER BACK PAIN WITH BOTH L.L. PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-12 11:40:39','','0000-00-00 00:00:00'),(9730,0,0,4069,3962,5957,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed&thinsp;</p>\n\n<p>heaviness of head&thinsp; +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:41:46','darshan','2025-12-12 11:44:49'),(9731,0,0,4069,3962,5957,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--5 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:43:57','','0000-00-00 00:00:00'),(9732,0,0,1878,1832,5970,0,0,NULL,'','MADVICE','ZZZ','Remark','SALT RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-12 11:44:05','','0000-00-00 00:00:00'),(9733,0,0,4069,3962,5957,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilmetry---reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:45:19','darshan','2025-12-12 13:07:44'),(9734,0,0,4069,3962,5957,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:46:28','','0000-00-00 00:00:00'),(9735,0,0,4078,3971,5975,0,0,NULL,'','CC','ZZZ','Remark','EPIGASTRIC PAIN, DYSPEPSIA | 10 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-12 11:48:56','','0000-00-00 00:00:00'),(9736,0,0,4070,3963,5959,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:51:23','darshan','2025-12-12 11:51:33'),(9737,0,0,4076,3969,5973,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT SHOULDER PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-12 11:53:27','','0000-00-00 00:00:00'),(9738,0,0,4076,3969,5973,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER BACK PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-12 11:53:35','','0000-00-00 00:00:00'),(9739,0,0,4001,273,5831,0,0,NULL,'','TREATDISC_TI','','','<P>INJ. MERO&nbsp; &nbsp; &nbsp; &nbsp; 1GM/100ML NS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 7AM--3PM--10PM&nbsp; &nbsp; &nbsp; &nbsp; FOR 2 DAYS&nbsp; &nbsp; 8 INJ.</P>\r\n\r\n<P>INJ. AMIKACIN&nbsp; 500MG/DILUTED&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;7AM--10PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp; 3 DAYS&nbsp; &nbsp;3 INJ.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB. SOBISIS&nbsp; &nbsp;500MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB. DERIPHYLLIN &nbsp;R&nbsp; 300MG&nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB. NEXPROFAST&nbsp; 40MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5&nbsp;DAYS</P>\r\n\r\n<P>SYP. RESWAS&nbsp; &nbsp;5 ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp;FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB. DX (30)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE :&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB OBIMET SR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0</P>\r\n\r\n<P>TAB ATORVASTATIN 10MG&nbsp; &nbsp; &nbsp;1/2--0--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-12 11:53:46','mo','2025-12-16 13:30:18'),(9740,0,0,4078,3971,5975,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-12 11:54:06','','0000-00-00 00:00:00'),(9741,0,0,513,488,5977,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:54:15','','0000-00-00 00:00:00'),(9742,0,0,4001,273,5831,0,0,NULL,'','DISCCOND','','','<P>VITALLY AND HEMODYNAMICLLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-12 11:54:32','mo','2025-12-16 13:30:18'),(9743,0,0,3442,3347,5917,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>ct pns ---DNS to right with right inferior spur</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:55:50','','0000-00-00 00:00:00'),(9744,0,0,1425,1384,5985,0,0,NULL,'','CC','ZZZ','Remark','URTI | 2 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-12 11:56:47','','0000-00-00 00:00:00'),(9745,0,0,1425,1384,5985,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-12 11:56:51','','0000-00-00 00:00:00'),(9747,0,0,3442,3347,5917,0,0,NULL,'','MADVICE','ZZZ','Remark','SEPTOPLASTY ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-12 11:57:26','','0000-00-00 00:00:00'),(9748,0,0,1547,1506,5961,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----vertigo persisit</p>\n\n<p>left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 12:01:10','','0000-00-00 00:00:00'),(9750,0,0,1547,1506,5961,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-12 12:03:19','','0000-00-00 00:00:00'),(9751,0,0,1887,1841,5967,0,0,NULL,'','HIST','ZZZ','Remark','<p>FOLLOW&thinsp; up case----left ear pain&thinsp;</p>\n\n<p>throat pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 12:10:38','darshan','2025-12-12 12:11:16'),(9752,0,0,1887,1841,5967,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx--congested and granular&thinsp;</p>\n\n<p>left ear fungus with discharge&thinsp;</p>\n\n<p>highly un coperative for cleaning of ear</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 12:11:38','darshan','2025-12-12 12:12:41'),(9753,0,0,2915,2843,5982,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 12:15:56','','0000-00-00 00:00:00'),(9754,0,0,4077,3970,5974,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 12:23:04','','0000-00-00 00:00:00'),(9755,0,0,1134,1096,5979,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 12:27:05','','0000-00-00 00:00:00'),(9756,0,0,3472,3377,5981,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better paritally&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 12:30:00','','0000-00-00 00:00:00'),(9758,0,0,3472,3377,5981,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-12 12:30:52','','0000-00-00 00:00:00'),(9759,0,0,2308,2251,5988,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 12:38:04','','0000-00-00 00:00:00'),(9760,0,0,3135,3054,5990,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 12:40:56','','0000-00-00 00:00:00'),(9761,0,0,4072,3965,5964,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 12:46:51','','0000-00-00 00:00:00'),(9764,0,0,4073,3966,5965,0,0,NULL,'','MADVICE','ZZZ','Remark','ADVICE INSULIN - REFUSED','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-12 12:50:23','','0000-00-00 00:00:00'),(9765,0,0,4085,3978,5989,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---giddiness +</p>\n\n<p>sense of imbalance&thinsp;</p>\n\n<p>previously CVA&thinsp;</p>\n\n<p>medicine skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 13:03:32','','0000-00-00 00:00:00'),(9766,0,0,4085,3978,5989,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnt</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 13:03:45','','0000-00-00 00:00:00'),(9768,0,0,4085,3978,5989,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN TO R/O CVA','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-12 13:04:52','','0000-00-00 00:00:00'),(9769,0,0,4069,3962,5957,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 13:08:15','','0000-00-00 00:00:00'),(9773,0,0,3509,3413,5951,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right ITDM given uneventfully</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 13:21:23','darshan','2025-12-12 13:34:29'),(9774,0,0,4090,3983,5996,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 13:25:31','','0000-00-00 00:00:00'),(9775,0,0,4090,3983,5996,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling any time and remains for few seconds only</p>\n\n<p>heaviess of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 13:26:12','','0000-00-00 00:00:00'),(9776,0,0,4090,3983,5996,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dxi hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilateral high freq severe sn deafness</p>\n\n<p>stabilomtry---reduced vestibular score</p>\n\n<p>vng--right hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 13:26:27','darshan','2025-12-12 13:54:23'),(9779,0,0,4072,3965,5964,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-12 13:27:09','','0000-00-00 00:00:00'),(9780,0,0,4069,3962,5957,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MANEUVER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-12 13:30:02','','0000-00-00 00:00:00'),(9783,0,0,3509,3413,5951,0,0,NULL,'','PLAN','ZZZ','Remark','15','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 13:35:46','','0000-00-00 00:00:00'),(9784,0,0,3906,266,5663,0,0,NULL,'','DISCDIAG','','','<P>BILATERAL SEVERE CAP + PULMONARY OEDEMA +</P>\r\n\r\n<P>CAD WITH RECURRENT VT + AKI&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>K/C/O : IHD, SCAR VT ,INFERIOR WALL ANEURYSM ,CCF ,HYPOTHYROIDISM ,BA ON RX.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-12 13:41:09','mo','2025-12-12 15:09:27'),(9785,0,0,3906,266,5663,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY : NO ANY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY :&nbsp;</STRONG></P>\r\n\r\n<P>IHD, SCAR VT ,INFERIOR WALL ANEURYSM ,CCF ,HYPOTHYROIDISM ,BA ON RX</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-12 13:41:09','mo','2025-12-12 15:09:27'),(9786,0,0,3906,266,5663,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 90Y YEARS OLD &nbsp;FEMALE ADMITTED IN ICU UNDER CARE OF DR ARCHIT RATHOD WITH</P>\r\n\r\n<P>C/O:</P>\r\n\r\n<P>LOWER ABDOMINAL PAIN,</P>\r\n\r\n<P>GENERAL WEAKNESS</P>\r\n\r\n<P>NAUSEA - VOMITING&nbsp;</P>\r\n\r\n<P>URINE RETENTION WITH DYSURIA,</P>\r\n\r\n<P>DOE&nbsp;</P>\r\n\r\n<P>B/L PEDAL EDEMA SINCE LAST 1 WEEK.</P>\r\n\r\n<P>SEVERE BREATHLESSNESS ,</P>\r\n\r\n<P>ORTHOPNEA,</P>\r\n\r\n<P>SEVERE LETHARGY YESTERDAY.</P>\r\n\r\n<P>SILICON FOLEYS IN SITU ++</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>K/C/O : IHD, SCAR VT ,INFERIOR WALL ANEURYSM ,CCF ,HYPOTHYROIDISM ,BA ON RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PRIMARY RX TAKEN AT GENERAL PHYSICIAN THAN COME HERE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PR: 130/MIN</P>\r\n\r\n<P>BP: 126/100 MMHG</P>\r\n\r\n<P>SPO2 : 90 % ON RA</P>\r\n\r\n<P>RR : 36 /MIN</P>\r\n\r\n<P>TEMP : 98.5F&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CNS -&nbsp;</P>\r\n\r\n<P>RS :B/L SPASM +</P>\r\n\r\n<P>CVS : S1/S2 +</P>\r\n\r\n<P>CNS : CONSIOUS / ORIENTED, F/V/C +</P>\r\n\r\n<P>P/A : SOFT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>ABOVE MENTION COMPLAIN. PATIENT EXAMINED EVALUATED ACCORDINGLY REQUIED INVESTIGATIONS SENT AND PATIENT KEEP ON NIV SUPPORT AND TREATMENT STARTED ABG REPORT NOTED AND X RAY CHEST DONE.ORALLY LIQ DIET GIVEN. GC EXPLAINED TO RELATIVES IN DETAILING. CVP LINE DONE BY DR.ARCHIT RATHOD IN 1-2 EPISODES OF GTCS SO TREATMENT MODIFIED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10/12/2025 ON DR.ABHISEKH RAWAL REFERANCE DONE ADVISED FOLLOWED.IN VIEW ECG SHOW VT THAN INJ.CORDERONE DRIP STARTED AS PER ADVISE AND NIV OFF TRAIL GIVEN AND OXYGEN SUPPORT CONTINUES AND TREATMENT MODIFIED ORALLY DIET TOLERTAED WELL. USG ABDOMEN DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11/12/2025 ON PATIENT HAVING BREATHING DIFFICULTY AND OLIGOURIA SO NIV SUPPORT STARTED AND INJ.LASIX DRIP STARTED AS PER ADVISE.HRCT CHEST DONE AND REPORT NOTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12/12/2025 ON&nbsp; SUDDEN BRADYCARDIA ,HYPOTENSION,&nbsp;UNCOUSIOSNESS, DROWSY THEN EMERGENCY ACLS PROTOCOL CPR GIVEN 10-12 CYCLE AND INJ.ADR/ATROPINE GIVEN AND&nbsp;INCUBATION DONE AND VENTI SUPPORT STARTED WITH 100% FIO2. AND INJ.ADR,INJ.VASOPRESSIN,INJ.NORAD STARTED. REPORTS SENT NT PRO BNP SHOW 20631 PATIENT UNCONSIOUS, NOT F/V/C&nbsp; AND LOSS OF URINE OUTPUT SO GC EXPLAINED TO RELATIVES IN DETAILING. 2ND TIME BRADY CARDIA CPR GIVEN AS PAR ACLS PROTOCOL PATIENT NOT REVIVED, DECLEDRED DEATH, 12-12-2025 TIME - 2.41 PM.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-12 13:41:09','mo','2025-12-12 15:09:27'),(9788,0,0,3509,3413,5951,0,0,NULL,'','MADVICE','ZZZ','Remark','PTA NEXT TIME ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-12 13:48:07','','0000-00-00 00:00:00'),(9790,0,0,3906,266,5663,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.MEZOR 1GM</P>\r\n\r\n<P>INJ.LINOX&nbsp;</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.VOMISET</P>\r\n\r\n<P>INJ.DERIPHYLLIN</P>\r\n\r\n<P>INJ.FEBRINIL</P>\r\n\r\n<P>INJ.BICARB</P>\r\n\r\n<P>INJ.NOARD</P>\r\n\r\n<P>INJ.CORDERONE&nbsp;</P>\r\n\r\n<P>INJ.LASIX</P>\r\n\r\n<P>INJ.VASOPRESSIN</P>\r\n\r\n<P>INJ.ADR&nbsp;</P>\r\n\r\n<P>CAP. FLUVIR</P>\r\n\r\n<P>INJ. LEVIGRESS</P>\r\n\r\n<P>INJ.ALBUREL 20%&nbsp;</P>\r\n\r\n<P>TAN ECOSPRIN AV&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-12 13:56:43','mo','2025-12-12 15:09:27'),(9792,0,0,4090,3983,5996,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-12 13:58:00','','0000-00-00 00:00:00'),(9793,0,0,3630,245,5163,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER&nbsp; 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-12 14:39:33','mo','2025-12-12 18:59:24'),(9794,0,0,3630,245,5163,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-12 14:53:31','mo','2025-12-12 18:59:24'),(9795,0,0,3630,245,5163,0,0,NULL,'','TREATDISC_TI','','','<P>TAB LOXOF(500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;....FOR 5 DAYS</P>\r\n\r\n<P>TAB NEXPROFAST(40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;....FOR 5 DAYS</P>\r\n\r\n<P>CAP ROSULESS-A(75/10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;....FOR 10&nbsp;DAYS</P>\r\n\r\n<P>TAB DERIPHYLLIN R(300MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;....FOR 10&nbsp;DAYS</P>\r\n\r\n<P>TAB APIXAGRESS(5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; ....FOR 20&nbsp;DAYS</P>\r\n\r\n<P>TAB BISOBIS (2.5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;....FOR 10&nbsp;DAYS</P>\r\n\r\n<P>TAB PAH (20MG)&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; ....FOR 10&nbsp;DAYS</P>\r\n\r\n<P>TAB STAGLIM M1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;.....FOR 10 DAYS&nbsp;</P>\r\n\r\n<P>TAB ATIVAN(1MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1/2&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .....FOR 10 DAYS&nbsp;</P>\r\n\r\n<P>TAB CREMALAX(10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......FOR 10 DAYS</P>\r\n\r\n<P>SYP RESWAS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;5ML TDS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>SYP PEGCLEAR (25ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 25ML HS&nbsp; &nbsp; &nbsp; &nbsp; SOS IF CONSTIPATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......(1)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-12 14:53:31','mo','2025-12-12 18:59:24'),(9796,0,0,3906,266,5663,0,0,NULL,'','DISCCOND','','','<P>...DEATH...</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-12 15:09:27','','0000-00-00 00:00:00'),(9797,0,0,3912,267,5678,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER&nbsp;</P>\r\n\r\n<P>DAILY FOLEY&#39;S CARE</P>\r\n\r\n<P>RT FEEDING 150ML / 2ND HOURLY&nbsp;</P>\r\n\r\n<P>FLUID RESTRICITION &LT; 1 LIT/DAY&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-12 15:11:17','mo','2025-12-13 11:28:03'),(9798,0,0,1697,1652,6006,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 17:08:42','','0000-00-00 00:00:00'),(9799,0,0,1744,1698,6005,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 17:12:34','','0000-00-00 00:00:00'),(9800,0,0,4093,3986,6002,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----3-4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 17:17:22','','0000-00-00 00:00:00'),(9801,0,0,4093,3986,6002,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symptoms&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 17:22:35','','0000-00-00 00:00:00'),(9802,0,0,4093,3986,6002,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 17:22:48','darshan','2025-12-12 18:52:41'),(9804,0,0,2869,2799,6004,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 17:24:39','','0000-00-00 00:00:00'),(9805,0,0,991,958,6007,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 17:25:19','','0000-00-00 00:00:00'),(9806,0,0,2868,2798,6008,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 17:27:07','','0000-00-00 00:00:00'),(9807,0,0,4095,3988,6011,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 17:30:37','','0000-00-00 00:00:00'),(9808,0,0,4098,3991,6015,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 17:33:03','','0000-00-00 00:00:00'),(9809,0,0,4096,3989,6013,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up&thinsp; &thinsp;case---better</p>\n\n<p>medicine skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 17:37:10','','0000-00-00 00:00:00'),(9810,0,0,3350,222,4694,0,0,NULL,'','OTNOTE','','','<p>ot - 1 :&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>- 5 mm port insertion done thorough lhc(palmer&#39;s point)&nbsp;</p>\r\n\r\n<p>- small bowel loops &amp; omentum adherent with parietal peritoneum - not possible to do adhenolysis laparoscopically - decision to do open laparotomy TAKEN</p>\r\n\r\n<p>- lower midline incision kept scared linea alba opened</p>\r\n\r\n<p>- small bowel loops densly adherent with infraumbilical scar</p>\r\n\r\n<p>- small bowel loops released from scar</p>\r\n\r\n<p>- multiple interbowel adhesion present</p>\r\n\r\n<p>- small bowel loops adherent with omentum pelvic peritoneum &amp; sigmoid colon</p>\r\n\r\n<p>- adhenolysis done</p>\r\n\r\n<p>- whole dilated small bowel loops loaded with feacal material</p>\r\n\r\n<p>- serosal tear repair with mersilk 3-0</p>\r\n\r\n<p>- saline wash given&nbsp;</p>\r\n\r\n<p>- drain kept in pelvis&nbsp;</p>\r\n\r\n<p>- swab &amp; instrument count done</p>\r\n\r\n<p>- linea alba closed with pds no-1</p>\r\n\r\n<p>- romovac kept in subcut tissue</p>\r\n\r\n<p>- skin closed with ethilon 3-0&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>OT - 2&nbsp;</p>\r\n\r\n<p>- PRE- OP FINDING&nbsp;</p>\r\n\r\n<p>- FECAL PERITONITIS PRESENT</p>\r\n\r\n<p>- FECAL METRIAL AT LEFT PARACOLIC GUTTER AND PELVIC AREA</p>\r\n\r\n<p>- SMALL ILEAL PERFORATION PRESENT</p>\r\n\r\n<p>- EDEMATOUS, FRIABLE SMALL BOWEL LOOPS THROUGH OUT LEANTH</p>\r\n\r\n<p>- COLON COLLAPSE</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;OPRATIVE STEP :-</p>\r\n\r\n<p>- INCISION KEPT ON PREVIOUS SCAR</p>\r\n\r\n<p>- ABDOMEN OPENED IN LAYER</p>\r\n\r\n<p>- FECAL PERITONITIS PRESENT</p>\r\n\r\n<p>- WHOLE FECAL MATERIAL DRAINED AND SMALL BOWEL FILLED WITH FECAL MATARIAL , WHOLE FECAL MATERIAL REMOVED MANUALLY</p>\r\n\r\n<p>- THROUGHY SALIN WASH GIVEN&nbsp;</p>\r\n\r\n<p>- PERFORATION SITE EXTERISED AS A ILEOSTOMY</p>\r\n\r\n<p>- ILEOSTOMY FIXED WITH SINGLE LAYER MASILK ( 3-0)</p>\r\n\r\n<p>- ROMO ADK NO. 28 KEPT IN PELVIC</p>\r\n\r\n<p>- LINEA ALBA CLOSED WITH PDS NO.1</p>\r\n\r\n<p>- SKIN CLOSED WITH ETHILON (2-0)</p>\r\n\r\n<p>- DRESSING KEPT</p>\r\n\r\n<p>&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-12 17:46:17','mo','2025-12-13 14:53:35'),(9811,0,0,4092,3985,6001,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 17:48:44','','0000-00-00 00:00:00'),(9812,0,0,4092,3985,6001,0,0,NULL,'','HIST','ZZZ','Remark','<p>when pt look towards fast moving object or look upward or down ward she feels giddiness feeling&thinsp;</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 17:49:42','','0000-00-00 00:00:00'),(9813,0,0,4092,3985,6001,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 17:50:06','','0000-00-00 00:00:00'),(9815,0,0,4099,3992,6016,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 17:57:23','','0000-00-00 00:00:00'),(9816,0,0,4099,3992,6016,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotry feeling when pt&thinsp; is getting out of bed and lying down in bed&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 17:58:38','','0000-00-00 00:00:00'),(9817,0,0,4099,3992,6016,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>mir brain ---nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 17:58:53','darshan','2025-12-12 19:11:39'),(9818,0,0,4099,3992,6016,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 17:59:05','','0000-00-00 00:00:00'),(9822,0,0,4092,3985,6001,0,0,NULL,'','MADVICE','ZZZ','Remark','VESTIBULAR IX--PT WILL COME LATER ON','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:01:16','','0000-00-00 00:00:00'),(9823,0,0,1062,1028,6003,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----tele consultation done&thinsp;</p>\n\n<p>better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:03:22','','0000-00-00 00:00:00'),(9825,0,0,1062,1028,6003,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:04:01','','0000-00-00 00:00:00'),(9826,0,0,2401,2345,6022,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better for giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:06:31','','0000-00-00 00:00:00'),(9827,0,0,3665,3565,6010,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:12:56','','0000-00-00 00:00:00'),(9828,0,0,4102,3995,6020,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling with sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:19:21','darshan','2025-12-12 18:24:33'),(9829,0,0,4102,3995,6020,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----20  DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:23:56','','0000-00-00 00:00:00'),(9830,0,0,4102,3995,6020,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>Hhead shake--nad</p>\n\n<p>MRI brain--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabiomtry---reduced vestibular score</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:24:46','darshan','2025-12-12 19:23:13'),(9833,0,0,4105,3998,6024,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---sense of imbalance&thinsp;</p>\n\n<p>down beat nystagmus +</p>\n\n<p>neurologist openion taken</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:32:43','','0000-00-00 00:00:00'),(9834,0,0,4105,3998,6024,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:32:54','','0000-00-00 00:00:00'),(9835,0,0,4097,3990,6014,0,0,NULL,'','HIST','ZZZ','Remark','<p>ON LTK- H ON</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-12 18:33:19','drjayant','2025-12-12 18:36:25'),(9836,0,0,4097,3990,6014,0,0,NULL,'','CC','ZZZ','Remark','GENERALISED WEAKNESS | 60 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-12 18:33:34','','0000-00-00 00:00:00'),(9839,0,0,4105,3998,6024,0,0,NULL,'','MADVICE','ZZZ','Remark','REST AS PER NEUROLOGIST OPINION ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:35:21','','0000-00-00 00:00:00'),(9840,0,0,4104,3997,6023,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:37:27','','0000-00-00 00:00:00'),(9841,0,0,4107,4000,6027,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT LATERAL MALLEOLI FRACTURE','','',0,'0000-00-00 00:00:00','drsagar','2025-12-12 18:38:20','','0000-00-00 00:00:00'),(9842,0,0,4100,3993,6017,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling on change of posture</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:41:47','darshan','2025-12-12 18:44:31'),(9843,0,0,322,306,6030,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-12 18:41:50','','0000-00-00 00:00:00'),(9844,0,0,322,306,6030,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-12 18:42:12','','0000-00-00 00:00:00'),(9845,0,0,4100,3993,6017,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:43:50','','0000-00-00 00:00:00'),(9846,0,0,4100,3993,6017,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>vng-left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:44:41','darshan','2025-12-12 19:39:02'),(9847,0,0,4100,3993,6017,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:44:43','','0000-00-00 00:00:00'),(9849,0,0,4101,3994,6019,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo&thinsp;</p>\n\n<p>occassional headache +</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:48:27','','0000-00-00 00:00:00'),(9850,0,0,322,306,6030,0,0,NULL,'','MADVICE','ZZZ','Remark','OIL/ SUGAR RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-12 18:48:29','','0000-00-00 00:00:00'),(9851,0,0,4101,3994,6019,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:48:47','','0000-00-00 00:00:00'),(9852,0,0,4101,3994,6019,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:49:31','','0000-00-00 00:00:00'),(9854,0,0,4110,4003,6031,0,0,NULL,'','CC','ZZZ','Remark','URTI | 2 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-12 18:50:04','','0000-00-00 00:00:00'),(9855,0,0,4110,4003,6031,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-12 18:50:09','','0000-00-00 00:00:00'),(9856,0,0,4101,3994,6019,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:50:12','','0000-00-00 00:00:00'),(9857,0,0,4093,3986,6002,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:52:46','','0000-00-00 00:00:00'),(9858,0,0,4093,3986,6002,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:53:25','','0000-00-00 00:00:00'),(9860,0,0,1128,1089,6025,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up senes of imbalance on movment of head&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:57:31','','0000-00-00 00:00:00'),(9861,0,0,1128,1089,6025,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus----absent</p>\n\n<p>dix halpiek---nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 18:58:15','','0000-00-00 00:00:00'),(9863,0,0,4032,3924,5888,0,0,NULL,'','MADVICE','ZZZ','Remark','SALT/ OIL RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-12 19:00:34','','0000-00-00 00:00:00'),(9865,0,0,4093,3986,6002,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-12 19:01:37','','0000-00-00 00:00:00'),(9866,0,0,4115,4008,6038,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-12-12 19:03:58','','0000-00-00 00:00:00'),(9867,0,0,4112,4005,6034,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-12 19:04:49','','0000-00-00 00:00:00'),(9868,0,0,4120,4013,6043,0,0,NULL,'','HIST','ZZZ','Remark','<p>bot hear heaviness&thinsp;</p>\n\n<p>neck pain</p>\n\n<p>heaviness of head&thinsp;</p>\n\n<p>photo phobia</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 19:06:30','darshan','2025-12-12 19:06:56'),(9870,0,0,4063,3955,5997,0,0,NULL,'','CC','ZZZ','Remark','C/O DOE  | 15 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-12 19:07:15','','0000-00-00 00:00:00'),(9871,0,0,4112,4005,6034,0,0,NULL,'','MADVICE','ZZZ','Remark','SALT/ OIL RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-12 19:07:55','','0000-00-00 00:00:00'),(9874,0,0,4063,3955,5997,0,0,NULL,'','MADVICE','ZZZ','Remark','CAG - SOS','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-12 19:11:18','','0000-00-00 00:00:00'),(9875,0,0,4121,4014,6052,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-12 19:11:29','drjayant','2025-12-12 19:11:52'),(9876,0,0,4099,3992,6016,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 19:12:15','','0000-00-00 00:00:00'),(9878,0,0,3912,267,5678,0,0,NULL,'','DISCCOND','','','<P>FOLEY&#39;S IN SITU (DAY-3,NO-14)</P>\r\n\r\n<P>RT IN SITU 9DAY- 2,NO-16)&nbsp;</P>\r\n\r\n<P>POWER- RIGHT SIDE HEMIPARESIS 0/5</P>\r\n\r\n<P>LEFT SIDE 5/5</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-12 19:14:49','mo','2025-12-13 11:28:03'),(9879,0,0,4108,4001,6028,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up&thinsp; case---occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 19:15:50','','0000-00-00 00:00:00'),(9880,0,0,4108,4001,6028,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 19:16:05','','0000-00-00 00:00:00'),(9881,0,0,3912,267,5678,0,0,NULL,'','TREATDISC_TI','','','<P>TAB LEVIPILL (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;R/T&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........FOR 15 DAYS</P>\r\n\r\n<P>TAB PANTODAC DSR (40MG)&nbsp; &nbsp; &nbsp; &nbsp; R/T&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........FOR 15 DAYS</P>\r\n\r\n<P>TAB PCM (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; R/T&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........FOR 15 DAYS</P>\r\n\r\n<P>TAB ECOSPRIN (75MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;R/T&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........FOR 15 DAYS</P>\r\n\r\n<P>TAB MEMENTIN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; R/T&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........FOR 15 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>INJ CLEXANE (O.4ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;S/C&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 8AM--8PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......FOR 15 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-12 19:22:33','mo','2025-12-13 11:28:03'),(9882,0,0,4102,3995,6020,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 19:23:19','','0000-00-00 00:00:00'),(9883,0,0,4102,3995,6020,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 19:23:54','','0000-00-00 00:00:00'),(9885,0,0,2023,1975,5941,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CT pns--RITH</p>\n\n<p>&thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp; &thinsp; MITH</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 19:26:38','','0000-00-00 00:00:00'),(9887,0,0,4099,3992,6016,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MANEUVER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-12 19:29:19','','0000-00-00 00:00:00'),(9889,0,0,4102,3995,6020,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-12 19:32:57','','0000-00-00 00:00:00'),(9890,0,0,2742,2673,6050,0,0,NULL,'','DIAG','ZZZ','Remark','?? IBS WITH CLASSICAL MIGRAIN','','',0,'0000-00-00 00:00:00','drarchit','2025-12-12 19:37:14','','0000-00-00 00:00:00'),(9892,0,0,2742,2673,6050,0,0,NULL,'','MADVICE','ZZZ','Remark','DR. RISHIKESH KALARIA \nGASTOENTROLOGIST\nSTERLING HOSPITAL','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-12 19:37:45','','0000-00-00 00:00:00'),(9893,0,0,4100,3993,6017,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 19:39:44','','0000-00-00 00:00:00'),(9895,0,0,562,536,6046,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 19:42:34','','0000-00-00 00:00:00'),(9897,0,0,4100,3993,6017,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-12 19:45:19','','0000-00-00 00:00:00'),(9898,0,0,2229,2174,6049,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 19:49:46','','0000-00-00 00:00:00'),(9899,0,0,4127,4019,6063,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-12 20:07:36','','0000-00-00 00:00:00'),(9900,0,0,4010,274,5848,0,0,NULL,'','DISCDIAG','','','<P><STRONG>FLUID OVERLOAD,HYPERTENSIVE FAILURE,</STRONG></P>\r\n\r\n<P><STRONG>AKI ON CKD IN K/C/O DM 2,HTN&nbsp; ,PSYCHIATRIC ILLNESS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-12 20:48:28','mo','2025-12-15 17:14:51'),(9901,0,0,4010,274,5848,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-12 20:48:28','mo','2025-12-15 17:14:51'),(9902,0,0,4010,274,5848,0,0,NULL,'','HISTHOSPCOURSE','','','<P>HISTORY GIVEN BY PATIENT&#39;S RELATIVE.</P>\r\n\r\n<P>A 71 YEARS OLD MALE PATIENT P/W K/C/O HTN;DM;CKD;PSYCHIATRIC ILLNESS</P>\r\n\r\n<P>WITH C/O DOE;GENERALISED WEAKNESS SINCE LAST 10-15 DAYS.,B/L PEDAL EDEMA SINCE 1 WEEK.INCREASED BREATHLESSNESS;UNEASINESS;ORTHOPNEA SINCE LAST 2-3 HOURS.</P>\r\n\r\n<P>SO,RELATIVE BROUGHT HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-98 F</P>\r\n\r\n<P>PR-76/MIN</P>\r\n\r\n<P>BP-260/140MMHG</P>\r\n\r\n<P>SPO2-80% ON RA</P>\r\n\r\n<P>RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-162MG/DL</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>10/12/25,</P>\r\n\r\n<P>ALL REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>IN VIEW OF HYPERTENSIVE FAILURE WITH FLUID OVERLOAA MANAGED BY LASIX DRIP AND NTG DRIP STARTED.</P>\r\n\r\n<P>FOLEY&#39;S CATHETER DONE WITH ALL ASEPTIC PRECAUTIONS.</P>\r\n\r\n<P>IN VIEW OF O2 DESATURATED SO,O2 SUPPORT GIVEN.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>11/12/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>O2 SUPPORT TAPER AND OFF.</P>\r\n\r\n<P>NTG DRIP TAPER AND OFF.</P>\r\n\r\n<P>U/O ADEQUATE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12/12/25,</P>\r\n\r\n<P>PATIENT VITALLY STABLE.</P>\r\n\r\n<P>LASIX DRIP TAPER @U/O</P>\r\n\r\n<P>PATIENT DEVELOPED SUDDENLY HYPOTENSION MANAGED BY IV FLUID THERAPY F/BY IV NORAD DRIP GIVEN.</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>HYPOKALEMIA MANAGED BY IV KCL DRIP.</P>\r\n\r\n<P>NORAD DRIP TAPER AND OFF.</P>\r\n\r\n<P>U/O ADEQUATE.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13/12/2025</P>\r\n\r\n<P>CATHETER CLAMP AND REMOVE</P>\r\n\r\n<P>MOBILIZATION START</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14/12/2025</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15/12/2025</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-12 20:48:28','mo','2025-12-15 17:14:51'),(9903,0,0,4010,274,5848,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ LASIX DRIP</P>\r\n\r\n<P>INJ NTG DRIP</P>\r\n\r\n<P>INJ NORAD DRIP</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>TAB ZYTANIX</P>\r\n\r\n<P>TAB SOBISIS FORTE</P>\r\n\r\n<P>TAB ARKAMINE</P>\r\n\r\n<P>TAB PRAZOPRESS XL</P>\r\n\r\n<P>TAB NEBIZAR</P>\r\n\r\n<P>TAB NICARDIA R</P>\r\n\r\n<P>TAB NITROHART</P>\r\n\r\n<P>TAB ETIWELL</P>\r\n\r\n<P>TAB NEXITO</P>\r\n\r\n<P>TAB PRAMIPREX</P>\r\n\r\n<P>TAB ALTONIL SR</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-12 21:00:07','mo','2025-12-15 17:14:51'),(9904,0,0,4123,276,6056,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE GASTROENTERITIS&nbsp;&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 00:39:12','mo','2025-12-13 18:18:21'),(9905,0,0,4123,276,6056,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-13 00:39:12','mo','2025-12-13 18:18:21'),(9906,0,0,4123,276,6056,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 31 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:OUTSIDE FOOD INTAKE IN MORNING&nbsp;<BR />\r\nC/O:SEVERE WATERY DIARRHOEA ( 17-18 TIME/DAY)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FOUL SMELL OF STOOL</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;INTOLERANCE OF SOLID/LIQUID FOOD&nbsp;&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;1 EPISODE OF VOMITING&nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE TODAY MORNING SO&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-81/MIN<BR />\r\nBP-102/70MMHG<BR />\r\nSPO2-98% ON RA<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\nSTOOL R/M DONE ON 12/12/2025 WHICH S/O; OCCULT BLOOD (+) ,E HISTOLYTICA,BACTERIA DETECTED&nbsp;</P>\r\n\r\n<P>USG ABDOMEN DONE ON 13/12/2025 REPORT ATTACHED WITH FILE&nbsp;&nbsp;<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 00:39:12','mo','2025-12-13 18:18:21'),(9907,0,0,4123,276,6056,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 00:39:12','mo','2025-12-13 18:18:21'),(9908,0,0,4123,276,6056,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>INJ MIKACIN</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMIST</P>\r\n\r\n<P>CAP ENUFF</P>\r\n\r\n<P>TAB ERVADOL SPAS</P>\r\n\r\n<P>TAB LOPAMIDE</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 00:39:12','mo','2025-12-13 18:18:21'),(9909,0,0,4109,275,6047,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-NON KETOTIC HYPER OSMOLAR HYPERGLYCEMIA</STRONG></P>\r\n\r\n<P><STRONG>-CHOREA/HEMIBALLISMUS (LEFT &GT; RIGHT SIDE)</STRONG></P>\r\n\r\n<P><STRONG>--HYPERTENSIVE EMERGENCY WITH UNCONTROLLED DM</STRONG></P>\r\n\r\n<P><STRONG>-K/C/O: DM, HTN&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 00:40:38','mo','2025-12-14 12:24:49'),(9910,0,0,4109,275,6047,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-13 00:40:38','mo','2025-12-14 12:24:49'),(9911,0,0,4109,275,6047,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 70 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM, HTN&nbsp;<BR />\r\nH/O:FEVER BEFORE 5 DAYS ,&nbsp;VERY HIGH BLOOD SUGAR (APPROX - 850MG/DL)&nbsp;,IRRITABLE&nbsp; &nbsp;FOR THAT PATIENT ADMITTED AT JAMNAGAR UNIQUE HOSPITAL DIAGNOSED WITH HYPONATREMIA WITH UNCONTROLLED DM II,AKI IN NEWLY DETECTED CKD&nbsp;<BR />\r\nC/O:INVOLUNATRY MOVEMENT OF WHOLE BODY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;IRRITABLE&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO H/O LOC,FALL DOWN OR URINARY COMPLAIN</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>MRI BRAIN DONE ON 8/12/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>MRI BRAIN DONE ON 12/12/2025 REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-136/MIN<BR />\r\nBP-208/100MMHG<BR />\r\nSPO2-91% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS INVOLUNTARY MOVEMENT OF WHOLE BODY&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS UNDER OBSERVATION&nbsp;IN ICU FOR INJ LABET TO CONTROLL HIGH BLOOD PRESSURE&nbsp; AND AFTER BLOOD PRESSURE CONTROLLED&nbsp;&nbsp;ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>12/12/2025</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE&nbsp;</P>\r\n\r\n<P>URINE R/M DONE WHICH S/O: NAD</P>\r\n\r\n<P>DAILY REFERENCE OF DR ARCHIT RATHOD(MD MEDICINE &AMP; INTENSIVIST) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13/12/2025</P>\r\n\r\n<P>DAILY CBC DONE</P>\r\n\r\n<P>DAILY REFERENCE OF DR ARCHIT RATHOD(MD MEDICINE &AMP; INTENSIVIST) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:11PT\">ECHO DONE- OVERALL LVEF : 55%</SPAN></P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14/12/2025</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>REVIEW OF DR ARCHIT RATHOD(MD MEDICINE &AMP; INTENSIVIST) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P><BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 00:40:38','mo','2025-12-14 12:24:49'),(9912,0,0,4109,275,6047,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ UNITREX-S</P>\r\n\r\n<P>INJ LABET</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ H MIXTARD</P>\r\n\r\n<P>TAB CORTEL</P>\r\n\r\n<P>TAB SOBIOSIS</P>\r\n\r\n<P>TAB SERANASE</P>\r\n\r\n<P>TAB ZAPNAX</P>\r\n\r\n<P>TAB PACITAN</P>\r\n\r\n<P>TAB TACFREE</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n\r\n<P>TAB CREMALAX</P>\r\n\r\n<P>TAB DEN MR</P>\r\n\r\n<P>LIQ PEGCLEAR</P>\r\n\r\n<P>TAB ROSULESS A</P>\r\n\r\n<P>P/C ENEMA</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 01:29:12','mo','2025-12-14 12:24:49'),(9913,0,0,4124,277,6061,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-ACUTE HEPATITIS</STRONG></P>\r\n\r\n<P><STRONG>-SEPSIS</STRONG></P>\r\n\r\n<P><STRONG>-K/C/O: HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 01:32:45','mo','2025-12-17 13:27:25'),(9914,0,0,4124,277,6061,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-13 01:32:45','mo','2025-12-17 13:27:25'),(9915,0,0,4124,277,6061,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 69 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN<BR />\r\nH/O:TURP BEFORE 1.5 YR<BR />\r\nC/O:FEVER WITH CHILL</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; B/L FLANK PAIN</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAIN PRESENTED SINCE 5 DAYS FOR THAT PATIENT PRIMARY CONSULTED TO GENERAL PHYSICIAN AND&nbsp;FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-120/MIN<BR />\r\nBP-150/80MMHG<BR />\r\nSPO2-98% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>USG ABDOMEN DONE ON 13/12/2025 , REPORT ATTECHED WITH FILE.</P>\r\n\r\n<P>S.HAV IGM DONE ON 16/12/2025 WHICH WAS NEGATIVE.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 01:32:45','mo','2025-12-17 13:27:25'),(9916,0,0,4124,277,6061,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ ECOTAZ</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n\r\n<P>INJ VITNEURIN&nbsp;</P>\r\n\r\n<P>TAB CALPOL</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>TAB NEPROSYN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 01:32:45','mo','2025-12-17 13:27:25'),(9917,0,0,4132,4025,6073,0,0,NULL,'','DIAG','ZZZ','Remark','GERD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-13 10:44:57','','0000-00-00 00:00:00'),(9918,0,0,1170,1130,6076,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for giddiness</p>\n\n<p>headache + ocassional</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 10:54:05','','0000-00-00 00:00:00'),(9919,0,0,4137,4030,6088,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ANKLE SPRAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-13 10:57:40','','0000-00-00 00:00:00'),(9920,0,0,3556,3457,6077,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 10:59:49','','0000-00-00 00:00:00'),(9922,0,0,3556,3457,6077,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:00:55','','0000-00-00 00:00:00'),(9923,0,0,4131,4024,6072,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:08:04','','0000-00-00 00:00:00'),(9924,0,0,4131,4024,6072,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR DEAFNESS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:08:04','','0000-00-00 00:00:00'),(9925,0,0,4131,4024,6072,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotyr feeling with sometime fall down&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:08:39','','0000-00-00 00:00:00'),(9926,0,0,4131,4024,6072,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---left moderate sn deafness(O)</p>\n\n<p>MRI brain ---nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:09:13','darshan','2025-12-13 13:02:27'),(9927,0,0,4131,4024,6072,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:09:18','','0000-00-00 00:00:00'),(9928,0,0,4131,4024,6072,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE---1 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:09:31','','0000-00-00 00:00:00'),(9929,0,0,3561,3462,6083,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case --right ear blockage feeling</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:15:35','','0000-00-00 00:00:00'),(9930,0,0,3561,3462,6083,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>RTM--som</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:15:41','','0000-00-00 00:00:00'),(9931,0,0,624,594,6079,0,0,NULL,'','CC','ZZZ','Remark','C/O DOE | 7 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-13 11:16:03','','0000-00-00 00:00:00'),(9932,0,0,624,594,6079,0,0,NULL,'','CC','ZZZ','Remark','C/O PEDAL OEDEMA||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-13 11:16:03','','0000-00-00 00:00:00'),(9933,0,0,624,594,6079,0,0,NULL,'','CC','ZZZ','Remark','C/O PEDAL OEDEMA | 7 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-13 11:16:27','','0000-00-00 00:00:00'),(9934,0,0,3561,3462,6083,0,0,NULL,'','PLAN','ZZZ','Remark','14','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:16:41','','0000-00-00 00:00:00'),(9935,0,0,2291,2235,6092,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----no imprmvent&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:20:33','','0000-00-00 00:00:00'),(9936,0,0,2532,2474,6102,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-13 11:24:27','','0000-00-00 00:00:00'),(9937,0,0,3681,3582,6103,0,0,NULL,'','CC','ZZZ','Remark','POSTED FOR SEBACEOU CYST EXCISION||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-13 11:25:35','','0000-00-00 00:00:00'),(9938,0,0,3681,3582,6103,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO C/O CHEST PAIN</p>\n\n<p>NO C/OPALPITATION</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-13 11:25:58','','0000-00-00 00:00:00'),(9939,0,0,3681,3582,6103,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALLY NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-13 11:26:20','','0000-00-00 00:00:00'),(9941,0,0,4142,4035,6099,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---k/c/o--endolymphatic hydrops&thinsp;</p>\n\n<p>recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:27:18','darshan','2025-12-13 12:39:10'),(9942,0,0,4142,4035,6099,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike-nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----right moderate to severe sn deafness</p>\n\n<p>stabilomtry--reduced vestibular score</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:27:21','darshan','2025-12-13 12:39:49'),(9943,0,0,3681,3582,6103,0,0,NULL,'','PLAN','ZZZ','Remark','5','','',0,'0000-00-00 00:00:00','drarchit','2025-12-13 11:27:28','','0000-00-00 00:00:00'),(9944,0,0,168,155,6069,0,0,NULL,'','CC','ZZZ','Remark','DOE INTERMITTENTLY | 15 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-13 11:28:19','','0000-00-00 00:00:00'),(9945,0,0,168,155,6069,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-13 11:28:33','','0000-00-00 00:00:00'),(9946,0,0,1669,1624,6100,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:30:27','','0000-00-00 00:00:00'),(9947,0,0,4133,4026,6074,0,0,NULL,'','CC','ZZZ','Remark','URTI, DOE | 2 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-13 11:32:20','','0000-00-00 00:00:00'),(9948,0,0,4133,4026,6074,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-13 11:32:29','','0000-00-00 00:00:00'),(9950,0,0,4143,4036,6101,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-13 11:36:01','drjayant','2025-12-13 11:36:13'),(9951,0,0,4147,4040,6109,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:36:43','darshan','2025-12-13 11:41:22'),(9952,0,0,4143,4036,6101,0,0,NULL,'','CC','ZZZ','Remark','RT INDEX FINGER SINGER CORN | 60 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-13 11:39:50','','0000-00-00 00:00:00'),(9954,0,0,4147,4040,6109,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilometry---reduced vestibular socre , reduced ss score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:41:36','darshan','2025-12-13 13:16:08'),(9955,0,0,4147,4040,6109,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV WITH VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:41:49','','0000-00-00 00:00:00'),(9956,0,0,4147,4040,6109,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FWE MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:42:09','','0000-00-00 00:00:00'),(9957,0,0,4147,4040,6109,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE +||','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:42:09','','0000-00-00 00:00:00'),(9959,0,0,4134,4027,6080,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR BLOCKAGE ----15 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:46:59','','0000-00-00 00:00:00'),(9960,0,0,4134,4027,6080,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Both ear&thinsp; SOM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:47:32','','0000-00-00 00:00:00'),(9961,0,0,492,466,6105,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better partailly</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 11:52:28','','0000-00-00 00:00:00'),(9962,0,0,4150,4043,6117,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is in any posture&thinsp;</p>\n\n<p>remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:02:52','darshan','2025-12-13 12:03:48'),(9963,0,0,4150,4043,6117,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--6 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:03:00','','0000-00-00 00:00:00'),(9964,0,0,4150,4043,6117,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix halpike---nad</p>\n\n<p>hit---nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:04:04','darshan','2025-12-13 13:27:06'),(9966,0,0,4097,3990,6014,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-13 12:06:34','','0000-00-00 00:00:00'),(9967,0,0,4139,4032,6090,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:07:03','','0000-00-00 00:00:00'),(9968,0,0,4139,4032,6090,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR BLOCAKGE FEELING ----2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:07:17','','0000-00-00 00:00:00'),(9969,0,0,4139,4032,6090,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Both arw fungus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:07:22','','0000-00-00 00:00:00'),(9971,0,0,4139,4032,6090,0,0,NULL,'','MADVICE','ZZZ','Remark','BOTH EAR CLEANING NEXT TIME','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:08:30','','0000-00-00 00:00:00'),(9972,0,0,324,308,6095,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--two episodes of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:10:28','','0000-00-00 00:00:00'),(9974,0,0,4097,3990,6014,0,0,NULL,'','MADVICE','ZZZ','Remark','SALT/ OIL RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-13 12:12:15','','0000-00-00 00:00:00'),(9975,0,0,4144,4037,6106,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2-3 MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:15:51','','0000-00-00 00:00:00'),(9976,0,0,4144,4037,6106,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaory feeling with sense of imbalance&thinsp;</p>\n\n<p>heaviness of head&thinsp;</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:16:33','','0000-00-00 00:00:00'),(9977,0,0,4144,4037,6106,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dx hallpike-nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>vng---left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:16:51','darshan','2025-12-13 13:40:13'),(9979,0,0,3039,2960,6112,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:23:05','','0000-00-00 00:00:00'),(9980,0,0,4145,4038,6107,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:26:51','','0000-00-00 00:00:00'),(9981,0,0,4145,4038,6107,0,0,NULL,'','CC','ZZZ','Remark','RIGTH EAR PAIN---TODAY||','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:27:10','','0000-00-00 00:00:00'),(9982,0,0,4145,4038,6107,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Rigth AOM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:27:18','','0000-00-00 00:00:00'),(9984,0,0,252,237,6122,0,0,NULL,'','CC','ZZZ','Remark','C/O CHEST PAIN | 2 DAYS | LEFT SIDE','','',0,'0000-00-00 00:00:00','drarchit','2025-12-13 12:28:23','','0000-00-00 00:00:00'),(9985,0,0,252,237,6122,0,0,NULL,'','CC','ZZZ','Remark','C/O PAIN RT SHOULDER | 2 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-13 12:28:23','','0000-00-00 00:00:00'),(9986,0,0,4146,4039,6108,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-FEW WEEKS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:37:39','','0000-00-00 00:00:00'),(9987,0,0,4146,4039,6108,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:38:10','','0000-00-00 00:00:00'),(9988,0,0,4146,4039,6108,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----bilateral high freq severe sn deafness</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:38:22','darshan','2025-12-13 13:53:13'),(9990,0,0,4142,4035,6099,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:40:52','','0000-00-00 00:00:00'),(9991,0,0,4028,3920,6127,0,0,NULL,'','CC','ZZZ','Remark','AGE | 2 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-13 12:48:00','','0000-00-00 00:00:00'),(9992,0,0,4148,4041,6111,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----2.5 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:48:06','','0000-00-00 00:00:00'),(9993,0,0,4148,4041,6111,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotoatyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:48:40','','0000-00-00 00:00:00'),(9994,0,0,4148,4041,6111,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score&thinsp;</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:48:55','darshan','2025-12-13 14:06:03'),(9996,0,0,3610,3508,6113,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----no improvment</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:53:41','','0000-00-00 00:00:00'),(9998,0,0,3610,3508,6113,0,0,NULL,'','MADVICE','ZZZ','Remark','PTA NEXT TIME ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:54:49','','0000-00-00 00:00:00'),(9999,0,0,4028,3920,6127,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-13 12:55:45','','0000-00-00 00:00:00'),(10000,0,0,4086,3979,5991,0,0,NULL,'','CC','ZZZ','Remark','C/O DOE | 10 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-13 12:55:52','','0000-00-00 00:00:00'),(10001,0,0,4086,3979,5991,0,0,NULL,'','CC','ZZZ','Remark','C/O COUGH | 10 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-13 12:55:52','','0000-00-00 00:00:00'),(10002,0,0,4086,3979,5991,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO OTHER COMPLAINT</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-13 12:55:57','','0000-00-00 00:00:00'),(10003,0,0,4086,3979,5991,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALLY NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-13 12:56:02','','0000-00-00 00:00:00'),(10004,0,0,4152,4045,6120,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR BLOCKAGE ----2-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:57:21','','0000-00-00 00:00:00'),(10005,0,0,4152,4045,6120,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm----SOM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:57:30','','0000-00-00 00:00:00'),(10007,0,0,4152,4045,6120,0,0,NULL,'','PLAN','ZZZ','Remark','14','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:58:39','','0000-00-00 00:00:00'),(10009,0,0,4152,4045,6120,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS PTA ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-13 12:59:07','','0000-00-00 00:00:00'),(10010,0,0,4153,4046,6123,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----15-20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 13:11:03','','0000-00-00 00:00:00'),(10011,0,0,4153,4046,6123,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associate other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 13:11:49','','0000-00-00 00:00:00'),(10012,0,0,4153,4046,6123,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nads</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--left post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 13:12:01','darshan','2025-12-13 14:14:55'),(10013,0,0,4153,4046,6123,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 13:12:04','','0000-00-00 00:00:00'),(10014,0,0,4147,4040,6109,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 13:16:23','','0000-00-00 00:00:00'),(10016,0,0,2835,2765,6139,0,0,NULL,'','CC','ZZZ','Remark','C/O COUGH | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-13 13:18:54','drarchit','2025-12-13 13:20:54'),(10018,0,0,4155,4048,6125,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 13:20:46','','0000-00-00 00:00:00'),(10019,0,0,2835,2765,6139,0,0,NULL,'','CC','ZZZ','Remark','C/O SORE THORAT | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-13 13:20:54','','0000-00-00 00:00:00'),(10020,0,0,4155,4048,6125,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR BLOCKAGE---FEW DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 13:21:39','','0000-00-00 00:00:00'),(10021,0,0,4155,4048,6125,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Both ear wax&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 13:21:51','','0000-00-00 00:00:00'),(10023,0,0,4155,4048,6125,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT EAR WAX REMOVAL NEXT TIME ,\nLEFT EAR WAX REMOVAL LATER ON','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-13 13:23:46','','0000-00-00 00:00:00'),(10024,0,0,3510,4050,6129,0,0,NULL,'','HIST','ZZZ','Remark','<p>F&#39;UP AGE WITH UTI WITH HYPONATRIMIA</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-13 13:28:29','drjayant','2025-12-13 13:30:40'),(10025,0,0,3510,4050,6129,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-13 13:28:36','','0000-00-00 00:00:00'),(10027,0,0,4147,4040,6109,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MANEUVER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-13 13:33:05','','0000-00-00 00:00:00'),(10028,0,0,3827,260,5527,0,0,NULL,'','TREATDISC_TI','','','<P>TAB LEVIGRESS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 500MG&nbsp; &nbsp;1--1--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB NEXTPROFAST&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp;BEFORE FOOD&nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ECOSPRIN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;150MG&nbsp; &nbsp; 0--1--0&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB LIPITAS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 40MG&nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB CLAVIX&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;75 MG&nbsp; &nbsp; 0--1--0&nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB STUGERON PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 13:34:31','mo','2025-12-13 13:34:46'),(10029,0,0,4144,4037,6106,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 13:41:01','','0000-00-00 00:00:00'),(10031,0,0,4138,4031,6089,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling on change of posture</p>\n\n<p>heaviness of head+</p>\n\n<p>no associated other cns symtpmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 13:46:15','darshan','2025-12-13 13:49:12'),(10032,0,0,4138,4031,6089,0,0,NULL,'','CC','ZZZ','Remark','VRETIGO-----15 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 13:48:34','','0000-00-00 00:00:00'),(10033,0,0,4138,4031,6089,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 13:49:43','darshan','2025-12-13 14:42:58'),(10035,0,0,4146,4039,6108,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 13:54:06','','0000-00-00 00:00:00'),(10038,0,0,4144,4037,6106,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-13 13:58:11','','0000-00-00 00:00:00'),(10040,0,0,4146,4039,6108,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-13 14:00:16','','0000-00-00 00:00:00'),(10041,0,0,1294,1253,6128,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better for gidiness&thinsp;</p>\n\n<p>headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 14:10:09','','0000-00-00 00:00:00'),(10042,0,0,4153,4046,6123,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 14:15:22','','0000-00-00 00:00:00'),(10044,0,0,1086,1053,6135,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 14:18:33','','0000-00-00 00:00:00'),(10045,0,0,3350,222,4694,0,0,NULL,'','DISCCOND','','','<P>- WOUND INFECTION PRESENT</P>\r\n\r\n<P>- ILEOSTOMY FUNCTIONING WELL</P>\r\n\r\n<P>- PUS DISCHARGE FROM DRAIN SITE</P>\r\n\r\n<P>- CVP IN SITU ( DAY - 3)</P>\r\n\r\n<P>- ILEOSTOMY IN SITU</P>\r\n\r\n<P>- ROMO ADK NO. 28 IN SITU</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 14:26:12','mo','2025-12-13 14:53:35'),(10046,0,0,3350,222,4694,0,0,NULL,'','TREATDISC_TI','','','<P>INJ. MEROMAC&nbsp; &nbsp; &nbsp; 1GM/100ML NS&nbsp; &nbsp; &nbsp; I/V&nbsp; &nbsp; &nbsp;7AM - 3PM - 10 PM&nbsp; &nbsp; &nbsp;FOR 3 DAYS ( 5 INJ.)</P>\r\n\r\n<P>INJ. TIGICYCLINE&nbsp; 50MG/100ML NS&nbsp; &nbsp; I/V&nbsp; &nbsp;7AM - 0 - 10PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS (&nbsp;4 INJ.)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB. RIFAGUT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;200MG&nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 3 DAYS</P>\r\n\r\n<P>TAB. CALPOL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 500MG&nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 3 DAYS</P>\r\n\r\n<P>TAB. DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;FOR 3 DAYS</P>\r\n\r\n<P>TAB. DAPARYL&nbsp; &nbsp; &nbsp; &nbsp;(10/5)&nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 3 DAYS</P>\r\n\r\n<P>TAB. STAGLIM M2&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 0--0--1&nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 3 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 14:26:12','mo','2025-12-13 14:53:35'),(10047,0,0,2250,2193,6137,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----partiall better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 14:27:37','','0000-00-00 00:00:00'),(10048,0,0,2250,2193,6137,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 14:28:40','','0000-00-00 00:00:00'),(10050,0,0,2250,2193,6137,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MANEUVER ---','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-13 14:29:09','','0000-00-00 00:00:00'),(10052,0,0,4153,4046,6123,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-13 14:30:22','','0000-00-00 00:00:00'),(10053,0,0,4138,4031,6089,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 14:32:57','','0000-00-00 00:00:00'),(10054,0,0,4138,4031,6089,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-13 14:33:31','','0000-00-00 00:00:00'),(10055,0,0,4157,281,6131,0,0,NULL,'','DISCDIAG','','','<P><STRONG>BILATERAL CAP ( UNRESOLVING) </STRONG></P>\r\n\r\n<P><STRONG>HIV POSITIVE ON RETROVIRAL THERAPY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 14:38:47','mo','2025-12-13 15:50:44'),(10056,0,0,4157,281,6131,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-13 14:38:47','mo','2025-12-13 15:50:44'),(10057,0,0,4157,281,6131,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 26 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HIV POSITVE (ON RETROVIRAL THERAPY)<BR />\r\nC/O: FEVER WITH CHILL SINCE 5 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;PERSISTENT VOMITING&nbsp; 3 TO 4 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;INTOLERANCE OF SOLID OR LIQ.FOOD</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;WHITISH YELLOWISH EXPECTORATION SINCE 15-20 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;COUGH AND COLD SINCE 15-20 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; WEIGHT LOSS IN LAST 2-3 MONTH (APP.3-4 KG)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SEVERE GENERALISED WEAKNSESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DOE&nbsp;</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>SPUTUM AFB DONE ON 12/12/2025 WHICH S/O: -VE,SUTUM R/M S/O: GRAM +VE BACILLI SEEN&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-99.9&#39;F&nbsp;<BR />\r\nPR-122/MIN<BR />\r\nBP-80/50MMHG<BR />\r\nSPO2-94% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>HYPOTENSION MANAGED BY IV FLUID THERAPY&nbsp;</P>\r\n\r\n<P>CHEST X RAY DONE ON 13/12/2025&nbsp;<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT GENERAL CONDITION AND PROGNOSIS EXPLAIN TO PATIENT AND RELATIVE AND NOW PATIENT BEING DISCHARGE AGAINST MEDICAL ADVICE AND REFER TO INFECTIOUD DISEASE SPECIALIST&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 14:38:47','mo','2025-12-13 15:50:44'),(10060,0,0,4138,4031,6089,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MANEUVER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-13 14:45:00','','0000-00-00 00:00:00'),(10061,0,0,4157,281,6131,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION</P>\r\n\r\n<P>PLAN- SPUTUM R/M,C/S,GENE EXPERT&nbsp;</P>\r\n\r\n<P>HRCT THORAX</P>\r\n\r\n<P>CD4/CD8</P>\r\n\r\n<P>REF.TO INFECTIOUS DISEASE SPECIALIST</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 15:38:04','mo','2025-12-13 15:50:44'),(10062,0,0,4157,281,6131,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MERO</P>\r\n\r\n<P>TAB LINOX</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ DERIPHYLLIN</P>\r\n\r\n<P>NEB DUOLIN</P>\r\n\r\n<P>NEB BUDECORT</P>\r\n\r\n<P>INJ PRIMACORT</P>\r\n\r\n<P>SYP RESWAS&nbsp;</P>\r\n\r\n<P>TAB DX&nbsp;</P>\r\n\r\n<P>TAB ATIVAN</P>\r\n\r\n<P>INJ DYNAPAR</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>TAB ATIVAN&nbsp;</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 15:38:04','mo','2025-12-13 15:50:44'),(10063,0,0,4123,276,6056,0,0,NULL,'','DISCCOND','','','<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>DIARRHOEA DECREASE&nbsp;</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 18:16:59','mo','2025-12-13 18:18:21'),(10064,0,0,4123,276,6056,0,0,NULL,'','TREATDISC_TI','','','<P>INJ OFRAMAX&nbsp; &nbsp;(1GM/DILUTED)&nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; 9AM--9PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR&nbsp;&nbsp;3 DAYS&nbsp;&nbsp;</P>\r\n\r\n<P>TAB METRO - ER (600MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>CAP ENUFF (100MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB LOPAMIDE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 18:16:59','mo','2025-12-13 18:18:21'),(10065,0,0,4087,278,6070,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-SEVERE IRON DEFICIENCY ANAEMIA</STRONG></P>\r\n\r\n<P><STRONG>-AKI</STRONG></P>\r\n\r\n<P><STRONG>-SEVERE LV DYSFUNCTION WITH CAD</STRONG></P>\r\n\r\n<P><STRONG>-HYPOPROTENINAEMIA</STRONG></P>\r\n\r\n<P><STRONG>-DM WITH HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 18:50:50','mo','2025-12-14 12:49:32'),(10066,0,0,4087,278,6070,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-13 18:50:50','mo','2025-12-14 12:49:32'),(10067,0,0,4087,278,6070,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 75 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN,DM II,SEVERE LVD<BR />\r\nH/O:NAD<BR />\r\nC/O:GIDDINESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DECREASE URINE OUTPUT SINCE 2-3 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GABHRAMAN FROM TODAY MORNING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;SEVERE GENERALISED WEAKNESS SINCE 10-15 DAYS</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAIN PRESENTED SINCE ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>S.FERRITIN DONE ON 12/12/2025 WHICH S/: 11.41 NG/ML&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-82/MIN<BR />\r\nBP-130/90MMHG<BR />\r\nSPO2-96% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13/12/2025</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF LOW HB 2 UNIT RCC TRANSFUSED&nbsp;</P>\r\n\r\n<P>USG ABDOMEN DONE REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>2D ECHO DONE WHICH S/OSEVERE LV DYSFUNCTION (EF-30%)&nbsp;</P>\r\n\r\n<P>SUDDENLY PATIENT DEVELOP HYPOTENSION AND VIEW OF DECREASE URINE OUTPUT INJ NORAD DRIP START</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14/12/2025</P>\r\n\r\n<P>INJ NORAD TAPPERED AND OFF @ BLOOD PRESSURE</P>\r\n\r\n<P>IN VIEW OF LOW S.FERRITIN INJ NEC FCM GIVEN AFTER SKIN TEST</P>\r\n\r\n<P><BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 18:50:50','mo','2025-12-14 12:49:32'),(10068,0,0,4087,278,6070,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ RCC 2 UNIT</P>\r\n\r\n<P>INJJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>TAB SOBIOSIS</P>\r\n\r\n<P>INJ DYTOR</P>\r\n\r\n<P>INJ NORAD DRIP</P>\r\n\r\n<P>INJ NEC FCM</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 19:01:09','mo','2025-12-14 12:49:32'),(10069,0,0,4106,280,6084,0,0,NULL,'','DISCDIAG','','','<P><STRONG>- SEVERE IRON DEFICIENCY ANEMIA + SEVERE MENORRHAGIA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 19:17:29','mo','2025-12-14 17:13:31'),(10070,0,0,4106,280,6084,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-13 19:17:29','mo','2025-12-14 17:13:31'),(10071,0,0,4106,280,6084,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 57 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:NAD<BR />\r\nC/O:DIZZINESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;BLEEDING FROM PER VAGINAL SINCE 2 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS SINCE 5-10 DAYS</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-82/MIN<BR />\r\nBP-120/70MMHG<BR />\r\nSPO2-97% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>13/12/2025</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF LOW HB 2 UNIT TRANSFUSED&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14/12/2025</P>\r\n\r\n<P>PATIENTS ECG REPORT DONE</P>\r\n\r\n<P>IN VIEW OF LOW HB 1&nbsp;UNIT TRANSFUSED&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 19:17:29','mo','2025-12-14 17:13:31'),(10072,0,0,4106,280,6084,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ RCC 3 UNIT</P>\r\n\r\n<P>TAB NEXPROFAST&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 19:17:29','mo','2025-12-14 17:13:31'),(10073,0,0,3134,279,6082,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE APPENDICITIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 20:20:09','mo','2025-12-14 11:04:55'),(10074,0,0,3134,279,6082,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-13 20:20:09','mo','2025-12-14 11:04:55'),(10075,0,0,3134,279,6082,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 39 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:NAD<BR />\r\nC/O:PAIN IN RIF</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA AND VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER SINCE 2 DAYS&nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 5 TO 7 DAYS. PATIENT PRIMARILY CONSULTED AT OPD BASE&nbsp; NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN DONE 10/12/2025 WHICH S/O: SUBACUTE INFLAMMATION OF APPENDIX&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-80/MIN<BR />\r\nBP-130/80MMHG<BR />\r\nSPO2-98% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.<BR />\r\nALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ECG DONE&nbsp;<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nLAPAROSCOPIC APPENDICECTOMY DONE BY DR PRATAPSINH DODIYA ON 13/12/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION<BR />\r\nPOST-OP PATIENT SHIFTED TO WARD.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 20:20:09','mo','2025-12-14 11:04:55'),(10076,0,0,3134,279,6082,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>LAPAROSCOPIC APPENDICECTOMY DONE BY DR PRATAPSINH DODIYA ON 13/12/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 20:20:09','mo','2025-12-14 11:04:55'),(10077,0,0,3134,279,6082,0,0,NULL,'','OTNOTE','','','<p>- inflammed , thick wall &nbsp;appendix</p>\r\n\r\n<p>- no meckel&#39;s diverticula</p>\r\n\r\n<p>- endometriosis patch present in pod</p>\r\n\r\n<p>- left hemosalphinx&nbsp;present in left fallopian tube</p>\r\n\r\n<p>- appendicectomy done</p>\r\n\r\n<p>- left salpingectomy done&nbsp;</p>\r\n\r\n<p>- hemostasis achieved</p>\r\n\r\n<p>- 10mm port sheath closed with vicryl-1 (port)&nbsp;</p>\r\n\r\n<p>- skin closed with skin stappler</p>\r\n\r\n<p>- dressing kept&nbsp;</p>\r\n\r\n<p>- appendix sent for hpe</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 20:20:09','mo','2025-12-14 11:04:55'),(10078,0,0,3134,279,6082,0,0,NULL,'','DISCCOND','','','<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 20:20:09','mo','2025-12-14 11:04:55'),(10079,0,0,3134,279,6082,0,0,NULL,'','ADVICE','','','<P>TAKE LIGHT DIET</P>\r\n\r\n<P>FOLLOW UP AFTER 5 DAYS IN EVENING</P>\r\n\r\n<P>HPE AWAITED.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 20:20:09','mo','2025-12-14 11:04:55'),(10080,0,0,3134,279,6082,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACTAGARD</P>\r\n\r\n<P>INJ.METROGYL</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>INJ.DYNAPAR AQ</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 20:20:09','mo','2025-12-14 11:04:55'),(10081,0,0,3134,279,6082,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.CEFTUM (500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD .............(10)</P>\r\n\r\n<P>TAB.ULPAN-DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD...........(10)</P>\r\n\r\n<P>TAB.AKILOS-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD .............(10)</P>\r\n\r\n<P>TAB DIAMINIC DCA&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD..............(5)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 20:20:09','mo','2025-12-14 11:04:55'),(10082,0,0,4140,282,6155,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE CALCULUS CHOLEYCYSTITIS</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HYPOTHYROIDISM&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 23:48:54','mo','2025-12-16 12:08:00'),(10083,0,0,4140,282,6155,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-13 23:48:54','mo','2025-12-16 12:08:00'),(10084,0,0,4140,282,6155,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 39 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HYPOTHYROIDISM<BR />\r\nH/O:NAD<BR />\r\nC/O:SEVERE ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; VOMITING BEFORE 2 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;NO FEVER</P>\r\n\r\n<P>ALL &nbsp;ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 15-20 DAYS AND INCREASE SINCE YESTERDAY SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN DONE ON 5/11/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>USG ABDOMEN DONE ON 13/12/2025 WHICH S/O: ACUTE CALCULUS CHOLEYCYSTITIS&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-59/MIN<BR />\r\nBP-150/90MMHG<BR />\r\nSPO2-99% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.<BR />\r\nALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nEMERGENCY LAPAROSCOPIC CHOLECYSTECTOMY DONE BY DR PRATAPSINH DODIYA ON 14/12/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION<BR />\r\nPOST-OP PATIENT SHIFTED TO WARD.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 23:48:54','mo','2025-12-16 12:08:00'),(10085,0,0,4140,282,6155,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n\r\n<P>INJ PERINORM</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ TRAMADOL</P>\r\n\r\n<P>SYP LECTIHEP</P>\r\n\r\n<P>DULCOLAX SUPP&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-13 23:48:54','mo','2025-12-16 12:08:00'),(10086,0,0,3863,261,5583,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-14 11:31:11','mo','2025-12-14 12:28:38'),(10087,0,0,3863,261,5583,0,0,NULL,'','TREATDISC_TI','','','<P>CAP AUGMENTIN (625 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB LEVOFLOX (750 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>CAP PANTODAC DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB PULMOCLEAR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB VITNEURIN CZS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>LIQ HIRDINE 2%&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR GURGLES</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-14 11:31:11','mo','2025-12-14 12:28:38'),(10088,0,0,4109,275,6047,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-14 12:24:35','mo','2025-12-14 12:24:49'),(10089,0,0,4109,275,6047,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-14 12:24:35','mo','2025-12-14 12:24:49'),(10090,0,0,4109,275,6047,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE (250 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB AFASMA SR (200 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ROSULESS A (75/10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB CORTEL (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB SOBIOSIS (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZAPNAX (0.25 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1/2--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB STAGLIM M2&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE&nbsp;FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB PACITANE (2 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB TICFREE (25 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1/2--0--1/2&nbsp; &nbsp; &nbsp; &nbsp; FOR 2 DAYS&nbsp; &nbsp; &nbsp; F&#39;BY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1/2--1/2--1/2&nbsp; &nbsp; &nbsp; FOR 2 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB SERANASE (0.5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1/2--1/2&nbsp; &nbsp; &nbsp; &nbsp; FOR 2 DAYS&nbsp; &nbsp; &nbsp; F&#39;BY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1/2&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 2 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>INJ H.MIXTARD (30/70)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; S/C&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 18 UNIT&nbsp; &nbsp; &nbsp; &nbsp; BEFORE LUNCH</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;08 UNIT&nbsp; &nbsp; &nbsp; &nbsp;BEFORE&nbsp;DINNER</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-14 12:24:35','mo','2025-12-14 12:24:49'),(10091,0,0,4087,278,6070,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-14 12:46:18','mo','2025-12-14 12:49:32'),(10092,0,0,4087,278,6070,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 10 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-14 12:46:18','mo','2025-12-14 12:49:32'),(10093,0,0,4087,278,6070,0,0,NULL,'','TREATDISC_TI','','','<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 10 DAYS</P>\r\n\r\n<P>TAB DYTOR PLUS (10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 10 DAYS</P>\r\n\r\n<P>TAB SOBIOSIS (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 10 DAYS</P>\r\n\r\n<P>TAB ROSULESS-A (75/10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 10 DAYS</P>\r\n\r\n<P>TAB LUPIHEME&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 10 DAYS</P>\r\n\r\n<P>TAB MBSON SL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 10 DAYS</P>\r\n\r\n<P>TAB CTP (1 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 10 DAYS</P>\r\n\r\n<P>PROTENEX&nbsp;POWDER (2 TSF WITH MILK)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-14 12:46:18','mo','2025-12-14 12:49:32'),(10094,0,0,4171,283,6161,0,0,NULL,'','DISCDIAG','','','<P><STRONG>- ? DRUG-INDUSE OCULOGYRIC CRISIS + JAW DISLOCATION&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-14 15:59:16','mo','2025-12-14 17:04:22'),(10095,0,0,4171,283,6161,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 26 YEARS OLD FEMALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O:&nbsp; NAD<BR />\r\nH/O: WHILE YAWNING AT HOME AROUND 6 PM DISLOCATING JAW AND OPEN MOUTH CANT BACK NORMAL</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CANSULED TO DENTIST AT DHROL AND REPOSITION OF MANDIBULAR JAW DONE AND RETURN TO HOME DURING RETURNING TO HOME PATIENT DEVLOP SUDDEN ONSET OF UPWARD EYES TURN,&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;NO H/O LOC, FEVER SO PATIENT REFER TO HERE TO DR. ROSHAN MISTRY SO NOW, PATIENT ADMIT HERE&nbsp;FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-82/MIN<BR />\r\nBP-80/50MMHG<BR />\r\nSPO2-99% ON RA<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14/12/2025</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\nSO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-14 15:59:16','mo','2025-12-14 17:04:22'),(10096,0,0,4171,283,6161,0,0,NULL,'','DISCCOND','','','<P>- VITALLY AND HEMODYNAMICLLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-14 15:59:16','mo','2025-12-14 17:04:22'),(10097,0,0,4171,283,6161,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. PANTO</P>\r\n\r\n<P>INJ. EMSET</P>\r\n\r\n<P>INJ. PHENARGUN</P>\r\n\r\n<P>TAB. PACITAN</P>\r\n\r\n<P>TAB. ZEOTAS</P>\r\n\r\n<P>TAB. DAN MR</P>\r\n\r\n<P>DEM GEL</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-14 15:59:16','mo','2025-12-14 17:04:22'),(10098,0,0,4171,283,6161,0,0,NULL,'','TREATDISC_TI','','','<P>TAB. PACITANE&nbsp; &nbsp; &nbsp;2MG&nbsp; &nbsp; &nbsp; &nbsp;1--1--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp; 5 DAYS</P>\r\n\r\n<P>TAB. ZEPTAS&nbsp; &nbsp; &nbsp; &nbsp;0.25MG&nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR&nbsp; 5 DAYS</P>\r\n\r\n<P>TAB. DAN MR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB. RABLET&nbsp; D&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; FOR 5 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-14 15:59:16','mo','2025-12-14 17:04:22'),(10099,0,0,4171,283,6161,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-14 16:01:03','mo','2025-12-14 17:04:22'),(10100,0,0,4106,280,6084,0,0,NULL,'','DISCCOND','','','<P>- VITALLY AND HEMODYNAMICLLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','vishal','2025-12-14 17:01:48','mo','2025-12-14 17:13:31'),(10101,0,0,4106,280,6084,0,0,NULL,'','ADVICE','','','<P>- PATIENT CAN BE TAKEN FOR SURGERY WITH DUE&nbsp;ANESTHETIC DRUGS AND OPRATIVE RISK</P>\r\n','','',0,'0000-00-00 00:00:00','vishal','2025-12-14 17:01:48','mo','2025-12-14 17:13:31'),(10102,0,0,4106,280,6084,0,0,NULL,'','TREATDISC_TI','','','<P>TAB NEXPRO FAST&nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 10 DAYS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;10 TAB</P>\r\n\r\n<P>TAB LUPIHEME&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 30 DAYS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;30 TAB</P>\r\n\r\n<P>TAB MBSON - SL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 30 DASY&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;30&nbsp;TAB</P>\r\n','','',0,'0000-00-00 00:00:00','vishal','2025-12-14 17:01:48','mo','2025-12-14 17:13:31'),(10103,0,0,4010,274,5848,0,0,NULL,'','TREATDISC_TI','','','<P>TAB NEXPROFAST (40MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...........FOR 7 DAYS&nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>TAB. SOBIOSIS&nbsp; FORTE&nbsp; (1 GM)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...........FOR 7 DAYS</P>\r\n\r\n<P>TAB.ETIWELL(0.25MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...........FOR 7 DAYS</P>\r\n\r\n<P>TAB.NEXITO(15MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...........FOR 7 DAYS</P>\r\n\r\n<P>TAB.PRAMIPREX(0.125)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ...........FOR 7 DAYS</P>\r\n\r\n<P>TAB.ALTONIL-SR(20)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...........FOR 7 DAYS</P>\r\n\r\n<P>TAB ARKAMINE (0.1MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...........FOR 7 DAYS</P>\r\n\r\n<P>TAB NICARDIA&nbsp; R (20MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...........FOR 7 DAYS</P>\r\n\r\n<P>TAB PRAZOPRESS XL (5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...........FOR 7 DAYS</P>\r\n\r\n<P>TAB NEBIZAR&nbsp; (5MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...........FOR 7 DAYS</P>\r\n\r\n<P>TAB DYTOR (10MG0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...........FOR 7 DAYS</P>\r\n\r\n<P>TAB LIPICURE GOLD (10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...........FOR 7 DAYS</P>\r\n\r\n<P>TAB GLIZIDE(80MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...........FOR 7 DAYS</P>\r\n\r\n<P>INJ H INSULIN 30/70&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;S/C&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;18 UNIT BEFORE BREAKFAST&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...........FOR 7 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 07:08:43','mo','2025-12-15 17:14:51'),(10104,0,0,4178,4068,6173,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 10:57:36','','0000-00-00 00:00:00'),(10105,0,0,4178,4068,6173,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotry feeling when pt is getting out of bed and lying down in bed ,</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 10:58:34','','0000-00-00 00:00:00'),(10106,0,0,4178,4068,6173,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>vng--left post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 10:58:50','darshan','2025-12-15 13:00:54'),(10107,0,0,4178,4068,6173,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 10:58:53','','0000-00-00 00:00:00'),(10108,0,0,4176,4066,6170,0,0,NULL,'','DIAG','ZZZ','Remark','RT BREAST PAIN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 11:00:11','','0000-00-00 00:00:00'),(10109,0,0,4176,4066,6170,0,0,NULL,'','DIAG','ZZZ','Remark','H/O RT BREAST INFECTED CYST OPERATED','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 11:00:26','','0000-00-00 00:00:00'),(10110,0,0,4176,4066,6170,0,0,NULL,'','DIAG','ZZZ','Remark','HYPOTHYROIDISM','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 11:00:33','','0000-00-00 00:00:00'),(10111,0,0,3463,3366,6174,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ---thraot pain with FB feeling&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 11:02:31','','0000-00-00 00:00:00'),(10113,0,0,3463,3366,6174,0,0,NULL,'','MADVICE','ZZZ','Remark','PSYCHIATRIST OPINION ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 11:04:50','','0000-00-00 00:00:00'),(10114,0,0,2334,2277,6184,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partailly better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 11:08:51','','0000-00-00 00:00:00'),(10115,0,0,4140,282,6155,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>EMERGENCY LAPAROSCOPIC CHOLECYSTECTOMY DONE BY DR PRATAPSINH DODIYA ON 14/12/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 11:13:11','mo','2025-12-16 12:08:00'),(10116,0,0,4140,282,6155,0,0,NULL,'','OTNOTE','','','<p>- DISTENDED, INFLAMMED,THICK WALL GALL BLaDDER,impending bvladder perforation</p>\r\n\r\n<p>- marked inflammation at calot&#39;s triangle&nbsp;</p>\r\n\r\n<p>- GALL BLaDDER&nbsp;DECOMPRESSION DONE FIRST.</p>\r\n\r\n<p>- SINGLE CYSTIC ARTERY-CLIPPED &amp; CUT.</p>\r\n\r\n<p>- SINGLE CYSTIC DUCT- DOUBLE CLIPPED &amp; CUT</p>\r\n\r\n<p>- CHOLEYCYSTECTOMY DONE</p>\r\n\r\n<p>- GB REMOVED DONE IN ENDOBAG</p>\r\n\r\n<p>- THOROUGHLY SALINE WASH GIVEN IN GB FOSSA</p>\r\n\r\n<p>- HEMOSTASIS ACHIEVED</p>\r\n\r\n<p>- RT DRAIN KEPT IN GB FOSSA</p>\r\n\r\n<p>- 10MM PORT SHEATH CLOSED WITH VICRYL PORT</p>\r\n\r\n<p>- SKIN CLOSED WITH SKIN STAPPLER</p>\r\n\r\n<p>- DRESSING KEPT</p>\r\n\r\n<p>- GB SENT FOR HPE&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 11:13:11','mo','2025-12-16 12:08:00'),(10117,0,0,4181,4071,6179,0,0,NULL,'','DIAG','ZZZ','Remark','INCISIONAL HERNIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 11:14:32','','0000-00-00 00:00:00'),(10118,0,0,4181,4071,6179,0,0,NULL,'','DIAG','ZZZ','Remark','BILATERAL INGUINAL HERNIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 11:15:32','','0000-00-00 00:00:00'),(10120,0,0,3858,3755,6195,0,0,NULL,'','MADVICE','ZZZ','Remark','HOLD ESCITALOPRAM','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-15 11:18:00','','0000-00-00 00:00:00'),(10121,0,0,3615,3514,6177,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 11:19:18','','0000-00-00 00:00:00'),(10122,0,0,3778,4074,6186,0,0,NULL,'','DIAG','ZZZ','Remark','INTERSPHINCTERIC ABSCESS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 11:23:26','','0000-00-00 00:00:00'),(10123,0,0,3688,3589,6199,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 11:24:20','','0000-00-00 00:00:00'),(10125,0,0,3688,3589,6199,0,0,NULL,'','MADVICE','ZZZ','Remark','CT AMEVNEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 11:25:10','','0000-00-00 00:00:00'),(10126,0,0,3778,4074,6186,0,0,NULL,'','DIAG','ZZZ','Remark','PHIMOSIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 11:27:26','','0000-00-00 00:00:00'),(10127,0,0,3778,4074,6186,0,0,NULL,'','DIAG','ZZZ','Remark','HTN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 11:27:40','','0000-00-00 00:00:00'),(10129,0,0,4180,4070,6178,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden of rotaotry feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 11:32:27','darshan','2025-12-15 11:33:19'),(10130,0,0,4180,4070,6178,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2 WEEKS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 11:32:35','','0000-00-00 00:00:00'),(10131,0,0,4180,4070,6178,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry---reduced vestular score</p>\n\n<p>vng--left&thinsp;psot canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 11:33:33','darshan','2025-12-15 13:17:19'),(10133,0,0,4179,4069,6175,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-15 11:33:38','','0000-00-00 00:00:00'),(10134,0,0,4179,4069,6175,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-15 11:33:47','drjayant','2025-12-15 11:34:04'),(10135,0,0,4175,4065,6169,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT AND LEFT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-15 11:33:53','','0000-00-00 00:00:00'),(10136,0,0,4175,4065,6169,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT SHOULDER PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-15 11:34:00','','0000-00-00 00:00:00'),(10137,0,0,4184,4075,6189,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling any time and remain for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 11:36:59','darshan','2025-12-15 11:39:18'),(10138,0,0,4184,4075,6189,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 11:37:08','','0000-00-00 00:00:00'),(10139,0,0,4184,4075,6189,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---right high frqe severe sn deafness</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng---right hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 11:39:30','darshan','2025-12-15 13:22:21'),(10142,0,0,4184,4075,6189,0,0,NULL,'','CC','ZZZ','Remark','FREQUENT HEADACHE +||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 11:39:50','','0000-00-00 00:00:00'),(10143,0,0,2295,2239,6183,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 11:42:58','','0000-00-00 00:00:00'),(10144,0,0,2295,2239,6183,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 11:43:52','','0000-00-00 00:00:00'),(10147,0,0,2295,2239,6183,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 11:44:22','','0000-00-00 00:00:00'),(10148,0,0,4186,4077,6192,0,0,NULL,'','DIAG','ZZZ','Remark','ULCERATIVE COLITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 11:52:29','','0000-00-00 00:00:00'),(10149,0,0,2013,1965,6187,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 11:56:34','','0000-00-00 00:00:00'),(10150,0,0,4205,4095,6223,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT SHOULDER PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-15 11:58:17','','0000-00-00 00:00:00'),(10151,0,0,4213,4103,6237,0,0,NULL,'','CC','ZZZ','Remark','URTI | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-15 12:01:38','','0000-00-00 00:00:00'),(10152,0,0,4213,4103,6237,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-15 12:01:41','','0000-00-00 00:00:00'),(10153,0,0,4206,4096,6224,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----1 week</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:02:50','darshan','2025-12-15 12:07:14'),(10154,0,0,4185,4076,6190,0,0,NULL,'','DIAG','ZZZ','Remark','LT PSOAS ABSCESS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 12:04:24','','0000-00-00 00:00:00'),(10155,0,0,4185,4076,6190,0,0,NULL,'','DIAG','ZZZ','Remark','LT UPPER URETERIC STONE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 12:04:33','','0000-00-00 00:00:00'),(10156,0,0,4206,4096,6224,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:07:35','darshan','2025-12-15 14:08:52'),(10157,0,0,3622,3520,6239,0,0,NULL,'','CC','ZZZ','Remark','BILAT LL NEUROPATHIC PAIN | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-15 12:10:14','','0000-00-00 00:00:00'),(10158,0,0,3622,3520,6239,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-15 12:10:18','','0000-00-00 00:00:00'),(10159,0,0,4188,4079,6196,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---FEW DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:11:46','','0000-00-00 00:00:00'),(10160,0,0,4188,4079,6196,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache with giddiness&thinsp;</p>\n\n<p>no associated other cns symtpsmo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:12:06','','0000-00-00 00:00:00'),(10161,0,0,4188,4079,6196,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>ystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>vng---central vareity of nystagmus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:12:21','darshan','2025-12-15 13:44:50'),(10162,0,0,4188,4079,6196,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:12:21','','0000-00-00 00:00:00'),(10163,0,0,1549,1508,6205,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:17:09','','0000-00-00 00:00:00'),(10164,0,0,4196,4086,6210,0,0,NULL,'','DIAG','ZZZ','Remark','OVARIAN MASS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 12:19:06','','0000-00-00 00:00:00'),(10165,0,0,4196,4086,6210,0,0,NULL,'','DIAG','ZZZ','Remark','CVA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 12:19:10','','0000-00-00 00:00:00'),(10166,0,0,4209,4099,6228,0,0,NULL,'','DIAG','ZZZ','Remark','BOTH KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-15 12:19:35','','0000-00-00 00:00:00'),(10167,0,0,4191,4081,6204,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness&thinsp;</p>\n\n<p>remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associted other cns symtpmso&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:22:29','darshan','2025-12-15 12:23:17'),(10168,0,0,4191,4081,6204,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3 DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:22:42','','0000-00-00 00:00:00'),(10169,0,0,4218,4109,6247,0,0,NULL,'','DIAG','ZZZ','Remark','FOLLICULITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 12:23:00','','0000-00-00 00:00:00'),(10170,0,0,4191,4081,6204,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta--bilateral high freq mild sn deafness</p>\n\n<p>stabilometry---wnl</p>\n\n<p>vng--right post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:23:30','darshan','2025-12-15 13:58:57'),(10171,0,0,4191,4081,6204,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:26:28','','0000-00-00 00:00:00'),(10172,0,0,4219,4110,6248,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT SIDE LOWER CHEST PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-15 12:27:23','','0000-00-00 00:00:00'),(10173,0,0,2589,2532,6244,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partaily better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:28:59','','0000-00-00 00:00:00'),(10174,0,0,4200,4090,6214,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:33:44','','0000-00-00 00:00:00'),(10175,0,0,4200,4090,6214,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR  DEAFNESS ----FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:34:10','','0000-00-00 00:00:00'),(10176,0,0,4200,4090,6214,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>BTM---i/n</p>\n\n<p>Pta---bilatelr high freq severe sn deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:34:18','darshan','2025-12-15 14:00:39'),(10177,0,0,2994,2917,6242,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----vertigo persist</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:37:59','','0000-00-00 00:00:00'),(10178,0,0,4215,4106,6243,0,0,NULL,'','DIAG','ZZZ','Remark','LT BREAST LUMP','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 12:41:19','','0000-00-00 00:00:00'),(10179,0,0,4215,4106,6243,0,0,NULL,'','DIAG','ZZZ','Remark','HTN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 12:41:22','','0000-00-00 00:00:00'),(10181,0,0,4179,4069,6175,0,0,NULL,'','MADVICE','ZZZ','Remark','SUGAR RESTRICTED DIET','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-15 12:44:16','','0000-00-00 00:00:00'),(10182,0,0,4216,4107,6245,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----1 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:45:39','','0000-00-00 00:00:00'),(10183,0,0,4216,4107,6245,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of orotatyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:46:21','','0000-00-00 00:00:00'),(10184,0,0,4214,4104,6240,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER BACK PAIN WITH RIGHT L. L. RADICULOPATHY','','',0,'0000-00-00 00:00:00','drsagar','2025-12-15 12:46:22','','0000-00-00 00:00:00'),(10185,0,0,4216,4107,6245,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>CCG---body axis spin---out of normative range</p>\n\n<p>vng---right post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:46:43','darshan','2025-12-15 14:05:45'),(10187,0,0,4220,4111,6249,0,0,NULL,'','DIAG','ZZZ','Remark','RT INGUINAL HERNIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 12:46:54','','0000-00-00 00:00:00'),(10188,0,0,4220,4111,6249,0,0,NULL,'','DIAG','ZZZ','Remark','LIVER DISEASE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 12:47:00','','0000-00-00 00:00:00'),(10189,0,0,4217,4108,6246,0,0,NULL,'','CC','ZZZ','Remark','ABD PAIN | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-15 12:51:54','','0000-00-00 00:00:00'),(10190,0,0,3455,3358,6216,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:52:21','','0000-00-00 00:00:00'),(10191,0,0,4217,4108,6246,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-15 12:52:43','drjayant','2025-12-15 14:07:28'),(10192,0,0,3455,3358,6216,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:52:50','','0000-00-00 00:00:00'),(10194,0,0,3455,3358,6216,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:54:15','','0000-00-00 00:00:00'),(10195,0,0,3392,3303,6229,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better&thinsp;</p>\n\n<p>heaviness of head&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:56:33','','0000-00-00 00:00:00'),(10196,0,0,3392,3303,6229,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:57:10','','0000-00-00 00:00:00'),(10198,0,0,3392,3303,6229,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 12:58:17','','0000-00-00 00:00:00'),(10199,0,0,4178,4068,6173,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 13:01:48','','0000-00-00 00:00:00'),(10201,0,0,2129,2075,6231,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better partially</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 13:07:04','','0000-00-00 00:00:00'),(10202,0,0,4210,4100,6230,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 13:09:40','','0000-00-00 00:00:00'),(10203,0,0,4210,4100,6230,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR PAIN-----FWE MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 13:09:49','','0000-00-00 00:00:00'),(10204,0,0,4210,4100,6230,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right enruralgic pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 13:09:56','','0000-00-00 00:00:00'),(10205,0,0,4180,4070,6178,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 13:17:27','','0000-00-00 00:00:00'),(10206,0,0,4180,4070,6178,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 13:18:09','','0000-00-00 00:00:00'),(10208,0,0,4184,4075,6189,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 13:23:00','','0000-00-00 00:00:00'),(10210,0,0,4223,4113,6255,0,0,NULL,'','HIST','ZZZ','Remark','<p>LT LL DVT BEFORE 1 YR--RECANALISED ON DOPPLER</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-15 13:24:18','drjayant','2025-12-15 13:37:41'),(10212,0,0,4178,4068,6173,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 13:25:11','','0000-00-00 00:00:00'),(10213,0,0,4221,4112,6250,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 13:31:14','','0000-00-00 00:00:00'),(10214,0,0,4221,4112,6250,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo---sudden onset of rotaotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 13:31:47','','0000-00-00 00:00:00'),(10215,0,0,4223,4113,6255,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-15 13:32:03','','0000-00-00 00:00:00'),(10216,0,0,4221,4112,6250,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus-----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---reduced vetibular score</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 13:32:05','darshan','2025-12-15 14:13:21'),(10218,0,0,4206,4096,6224,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 13:36:44','','0000-00-00 00:00:00'),(10222,0,0,4223,4113,6255,0,0,NULL,'','MADVICE','ZZZ','Remark','SUGAR RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-15 13:39:38','','0000-00-00 00:00:00'),(10223,0,0,3871,4105,6241,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-15 13:40:06','','0000-00-00 00:00:00'),(10224,0,0,1085,1051,6257,0,0,NULL,'','HIST','ZZZ','Remark','<p>folflfow up case----mild sense of imbalnce&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 13:40:44','','0000-00-00 00:00:00'),(10227,0,0,1085,1051,6257,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 13:41:40','','0000-00-00 00:00:00'),(10229,0,0,4180,4070,6178,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 13:49:00','','0000-00-00 00:00:00'),(10231,0,0,4184,4075,6189,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 13:54:43','','0000-00-00 00:00:00'),(10232,0,0,4191,4081,6204,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 13:59:24','','0000-00-00 00:00:00'),(10234,0,0,4216,4107,6245,0,0,NULL,'','DIAG','ZZZ','Remark','RIGTH POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 14:05:50','','0000-00-00 00:00:00'),(10235,0,0,4216,4107,6245,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 14:06:36','','0000-00-00 00:00:00'),(10238,0,0,4206,4096,6224,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 14:08:53','','0000-00-00 00:00:00'),(10239,0,0,4221,4112,6250,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 14:14:04','','0000-00-00 00:00:00'),(10242,0,0,4216,4107,6245,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MANEUVER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 14:15:53','','0000-00-00 00:00:00'),(10244,0,0,4221,4112,6250,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 14:19:36','','0000-00-00 00:00:00'),(10246,0,0,4191,4081,6204,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 14:29:01','','0000-00-00 00:00:00'),(10247,0,0,4225,4115,6258,0,0,NULL,'','DIAG','ZZZ','Remark','LT STRANGULATED INGUINAL HERNIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 16:57:46','','0000-00-00 00:00:00'),(10248,0,0,4010,274,5848,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ADEQUET URINE OUTPUT&nbsp;</P>\r\n\r\n<P>VITALLY STABLE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 17:02:20','mo','2025-12-15 17:14:51'),(10249,0,0,4010,274,5848,0,0,NULL,'','ADVICE','','','<P>FOLLOW&nbsp; UP AFTER 7 DAYS WITH CBC,S.UREA,S.CREAT,S.ELECTROLYTES.RBS,URINE R/M&nbsp;</P>\r\n\r\n<P>FLUID RESTRICITION &LT; 1 LIT&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 17:02:20','mo','2025-12-15 17:14:51'),(10250,0,0,4230,4117,6265,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----4-5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 17:16:34','','0000-00-00 00:00:00'),(10251,0,0,4230,4117,6265,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR DEAFNESS AND TINNITUS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 17:16:34','','0000-00-00 00:00:00'),(10252,0,0,4230,4117,6265,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo--sudden onset of rotaotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 17:17:10','','0000-00-00 00:00:00'),(10253,0,0,4230,4117,6265,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain limited study--nad</p>\n\n<p>pta---left moderate mixed deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>CCg--AP displacement out of normative range</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 17:17:25','darshan','2025-12-15 18:38:31'),(10256,0,0,3268,3182,6266,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case ---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 17:23:13','','0000-00-00 00:00:00'),(10258,0,0,3268,3182,6266,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN LIMITED STUDY ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 17:29:38','','0000-00-00 00:00:00'),(10259,0,0,2953,2878,6270,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 17:32:45','','0000-00-00 00:00:00'),(10260,0,0,4232,4120,6272,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 17:37:28','','0000-00-00 00:00:00'),(10261,0,0,4232,4120,6272,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR BLOCAKGE  FEELING ---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 17:38:17','','0000-00-00 00:00:00'),(10262,0,0,4232,4120,6272,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Left ear SOM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 17:38:22','','0000-00-00 00:00:00'),(10263,0,0,3745,3642,6268,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 17:45:14','','0000-00-00 00:00:00'),(10264,0,0,619,589,6269,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 17:49:46','','0000-00-00 00:00:00'),(10265,0,0,4237,4124,6282,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 17:58:23','','0000-00-00 00:00:00'),(10266,0,0,4237,4124,6282,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying own in bed&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 17:58:59','','0000-00-00 00:00:00'),(10267,0,0,4237,4124,6282,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>stabilometry--wnl</p>\n\n<p>vng--right post canal bpv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 17:59:15','darshan','2025-12-15 18:53:45'),(10269,0,0,4189,288,6201,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LEFT BREAST LUMP&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:00:59','mo','2025-12-16 12:03:21'),(10270,0,0,4189,288,6201,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 46 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:LEFT SIDED CHEST PAIN SINCE 1 MONTH</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;LEFT SIDED BREAST SWELLING INCREASING SINCE 4-5 MONTH , GRADUALLY INCREASING IN SIZE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO DISCHARGE FROM THAT SITE&nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 4-5 MONTH AND INCREASING SINCE 1 MONTH&nbsp;&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>FNAC DONE ON 8/12/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>3/6/2025 MAMMOGRAPHY DONE&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-78/MIN<BR />\r\nBP-132/90MMHG<BR />\r\nSPO2-98% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.<BR />\r\nALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nECG DONE&nbsp;<BR />\r\nLEFT BREAST LUMP EXCISIONAL&nbsp;BIOPSY DONE BY DR PRATAPSINH DODIYA ON 15/12/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION<BR />\r\nPOST-OP PATIENT SHIFTED TO WARD.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:00:59','mo','2025-12-16 12:03:21'),(10271,0,0,4189,288,6201,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>HPE AWAITED&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:00:59','mo','2025-12-16 12:03:21'),(10272,0,0,4189,288,6201,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DYNAPAR AQ&nbsp;</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:00:59','mo','2025-12-16 12:03:21'),(10273,0,0,4234,4121,6275,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:06:03','','0000-00-00 00:00:00'),(10274,0,0,4234,4121,6275,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling with sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>frequent headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:06:42','','0000-00-00 00:00:00'),(10275,0,0,4234,4121,6275,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng---central vareity of nystagmus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:06:58','darshan','2025-12-15 19:06:00'),(10277,0,0,2463,2407,6280,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:11:15','','0000-00-00 00:00:00'),(10278,0,0,2463,2407,6280,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:11:26','','0000-00-00 00:00:00'),(10279,0,0,4241,4128,6288,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-15 18:11:51','','0000-00-00 00:00:00'),(10281,0,0,2463,2407,6280,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:12:32','','0000-00-00 00:00:00'),(10282,0,0,4222,289,6254,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-RIGHT FOOT NON HEALING ULCER&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>-SEPTICEMIA</STRONG></P>\r\n\r\n<P><STRONG>-K/C/O: HTN,DM,IHD(POST PTCA) ,CKD,HYPOTHYROIDISM ,THALASEMIA MINOR&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:12:41','mo','2025-12-17 14:40:00'),(10283,0,0,4222,289,6254,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:12:41','mo','2025-12-17 14:40:00'),(10284,0,0,4222,289,6254,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 70 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN,DM,IHD(POST PTCA) ,CKD,HYPOTHYROIDISM ,THALASEMIA MINOR&nbsp;<BR />\r\nH/O:RIGHT FOOT 2ND FINGER AMPUTED IN 2023&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;LEFT GREAT TOE AMPUTED ON 4/2/2025</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;B/L CATARACT IN 2005&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; OPERATED FOR RIGHT WRIST JOIN BEFORE 1.5 MONTH&nbsp;<BR />\r\nC/O:PAIN IN RIGHT LEG SINCE 2-3 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO H/O TRAUMA OR PUS DISCHARGE&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FEVER ON AND OFF</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE&nbsp;&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-78/MIN<BR />\r\nBP-180/86MMHG<BR />\r\nSPO2-97% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>REFENRENCE OF DR SANJAY PANDYA (NEPHROLOGIST) REFERENCE DONE ON 15/12/2025 AND FOLLOW ALL HIS ADVICE</P>\r\n\r\n<P>SWAB CS SENT<BR />\r\nDEBRIDEMENT DONE BY DR PRATAPSINH DODIYA ON 16/12/2025 UNDER REGIONAL ANKLE BLOCK WITH ALL ASEPTIC PRECAUTION<BR />\r\nPOST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>IN VIEW OF LOW HB 1 UNIT RCC GIVEN</P>\r\n\r\n<P>SWAB CS S/O PSEUDOMONAS AERUGINOSA HEAVY GROWTH</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:12:41','mo','2025-12-17 14:40:00'),(10285,0,0,4238,4125,6283,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----15 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:18:11','','0000-00-00 00:00:00'),(10286,0,0,4238,4125,6283,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling&thinsp; when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:18:39','darshan','2025-12-15 18:20:43'),(10287,0,0,4222,289,6254,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ PCM</P>\r\n\r\n<P>INJ TAZOMAC</P>\r\n\r\n<P>INJ CLINDATEC</P>\r\n\r\n<P>INJ NAHCO3</P>\r\n\r\n<P>TAB NICARDIA R</P>\r\n\r\n<P>TAB ARKAMIN</P>\r\n\r\n<P>TAB NICORAN</P>\r\n\r\n<P>TAB ECOSPRIN GOLD</P>\r\n\r\n<P>TAB ISOLAZINE</P>\r\n\r\n<P>TAB SOBIOSIS FORTE</P>\r\n\r\n<P>TAB RAPTROL C</P>\r\n\r\n<P>TAB NEXITO LP</P>\r\n\r\n<P>TAB THYRONORM&nbsp;</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:19:51','mo','2025-12-17 14:40:00'),(10288,0,0,4238,4125,6283,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bilatearal high frq severe sn deafness</p>\n\n<p>stabiloemtry---reduced vestibuilar score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:20:57','darshan','2025-12-15 19:22:32'),(10289,0,0,4238,4125,6283,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:21:03','','0000-00-00 00:00:00'),(10290,0,0,4202,4092,6218,0,0,NULL,'','CC','ZZZ','Remark','C/O DOE  | 15 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-15 18:24:20','','0000-00-00 00:00:00'),(10291,0,0,4202,4092,6218,0,0,NULL,'','CC','ZZZ','Remark','C/O PEDAL OEDEDMA||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-15 18:24:20','','0000-00-00 00:00:00'),(10292,0,0,2555,2497,6293,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--beter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:27:09','','0000-00-00 00:00:00'),(10293,0,0,4229,292,6264,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE BRONCHITIS WITH ? LEFT PLEURISY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:28:08','mo','2025-12-16 15:07:10'),(10294,0,0,4229,292,6264,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n<BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:28:08','mo','2025-12-16 15:07:10'),(10295,0,0,4229,292,6264,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 45 YEARS OLD FEMALE&nbsp; PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:LEFT SIDE CHEST AND HAND PAIN SINCE TODAY MORNING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;VOMITING 10-12 BEFORE 5 DAYS AGO&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FEVER ON AND OFF</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE TODAY MORNING SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>ECG DONE ON 14/12/2025</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-90/MIN<BR />\r\nBP-130/90MMHG<BR />\r\nSPO2-98% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>ECG DONE&nbsp;</P>\r\n\r\n<P>USG ABDOMEN DONE ON 15/12/2025 REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>CHEST X RAY DONE ON 15/12/2025 REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P><BR />\r\n<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:28:08','mo','2025-12-16 15:07:10'),(10296,0,0,4229,292,6264,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:28:08','mo','2025-12-16 15:07:10'),(10297,0,0,4229,292,6264,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ ZOSTUM&nbsp;</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ FEBRINIL</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:28:08','mo','2025-12-16 15:07:10'),(10298,0,0,4239,4126,6285,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-- MANY YRS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:32:31','','0000-00-00 00:00:00'),(10299,0,0,4239,4126,6285,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsmo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:32:52','darshan','2025-12-15 18:35:09'),(10300,0,0,4227,290,6262,0,0,NULL,'','DISCDIAG','','','<P><STRONG>RIGHT SIDE OPEN GRADE 3B DISPLACED TIBIA AND FIBULA SHAFT FRACTURE&nbsp;WITHOUT DNVD</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:34:38','mo','2025-12-17 14:24:38'),(10301,0,0,4227,290,6262,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:34:38','mo','2025-12-17 14:24:38'),(10302,0,0,4227,290,6262,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 18 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:RTA ON 30/11/2025 BY BIKE F&#39;BY&nbsp;</P>\r\n\r\n<P>C/O:&nbsp;RIGHT L/L INJURY - ABRATION TYPE&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PAIN IN RIGHT L/L</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO H/O LOC ,NO VOMITNG&nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED AFTER INCIDENCE SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>X-RAY RIGHT TIBIA AP/LAT DONE ON 2/12/2025,15/12/2025&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-88/MIN<BR />\r\nBP-110/70MMHG<BR />\r\nSPO2-98% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.<BR />\r\nALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ECG DONE&nbsp;<BR />\r\nPOST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>POST OP X RAY RIGHT TIBIA AP/LATERAL DONE ON 16/12/2025<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:34:38','mo','2025-12-17 14:24:38'),(10303,0,0,4227,290,6262,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>WALK WITH WALKER SUPPORT&nbsp;</P>\r\n\r\n<P>DON&#39;T GIVE PRESSURE ON OPERATED LEG</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:34:38','mo','2025-12-17 14:24:38'),(10304,0,0,4227,290,6262,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ DICLO</P>\r\n\r\n<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ AMIKACIN</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ T&#39;DOL</P>\r\n\r\n<P>TAB BRATOS PT</P>\r\n\r\n<P>INJ CALCIROL BLU</P>\r\n\r\n<P>BUPRAGESIC PATCH</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:34:38','mo','2025-12-17 14:24:38'),(10305,0,0,4239,4126,6285,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--left post cananal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:35:21','darshan','2025-12-15 19:34:46'),(10307,0,0,4140,282,6155,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:40:52','mo','2025-12-16 12:08:00'),(10308,0,0,4140,282,6155,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS IN EVENING</P>\r\n\r\n<P>CONTINUE OWN MEDIICNE&nbsp;</P>\r\n\r\n<P>TAKE SRD/OIL FREE DIET&nbsp;</P>\r\n\r\n<P>HPE REPORT AWAITED&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:40:52','mo','2025-12-16 12:08:00'),(10309,0,0,4140,282,6155,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB AKILOS-SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......FOR 5 DAYS</P>\r\n\r\n<P>TAB UDILIV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>SYP LECTIHEP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 10ML&nbsp; HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:&nbsp;</P>\r\n\r\n<P>TAB THYRONORM (135MCG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:40:52','mo','2025-12-16 12:08:00'),(10310,0,0,4174,287,6167,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LRTI WITH HYPOTENSION (?) DEHYDRATION</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:43:32','mo','2025-12-15 21:42:20'),(10311,0,0,4174,287,6167,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:43:32','mo','2025-12-15 21:42:20'),(10312,0,0,4174,287,6167,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 54 YEARS OLD&nbsp; FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:FEVER WITH RIGOR&nbsp; SINCE 1&nbsp;DAY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;COUGHING SINCE 2 DAYS&nbsp; &nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;HEADACHE&nbsp; SINCE 2 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS&nbsp; SINCE 3&nbsp;DAY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;BACKPAIN&nbsp; SINCE 1 DAY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DIZZINESS&nbsp; SINCE 1 DAY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;BLACK OUT 1 EPISODE</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 2 TO 3&nbsp;DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-94/MIN<BR />\r\nBP-80/40MMHG<BR />\r\nSPO2-98% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>HYPOTENSION MANAGED BY IV FLUID THERAPY F&#39;BY INJ NORAD DRIP&nbsp;</P>\r\n\r\n<P>MP CARD TEST DONE ON 14/12/2025 WHICH S/O: NEGATIVE&nbsp;</P>\r\n\r\n<P>INJ NORAD TAPER AND OFF @ BLOOD PRESSURE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:43:32','mo','2025-12-15 21:42:20'),(10314,0,0,4244,4131,6291,0,0,NULL,'','MADVICE','ZZZ','Remark','ADVICE CAG & INTERVENTION ','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-15 18:45:03','','0000-00-00 00:00:00'),(10315,0,0,4247,4134,6295,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaowtyr feeling when pt is getting out of bed and lying donw in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:47:26','darshan','2025-12-15 18:50:07'),(10316,0,0,4247,4134,6295,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK AND BEFORE FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:49:33','','0000-00-00 00:00:00'),(10317,0,0,4247,4134,6295,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--right post canal bpv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:50:28','darshan','2025-12-15 19:42:37'),(10318,0,0,4247,4134,6295,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:50:31','','0000-00-00 00:00:00'),(10319,0,0,4174,287,6167,0,0,NULL,'','DISCCOND','','','<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>VITALLY STABLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:50:49','mo','2025-12-15 21:42:20'),(10320,0,0,4174,287,6167,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 18:50:49','mo','2025-12-15 21:42:20'),(10321,0,0,4246,4133,6294,0,0,NULL,'','DIAG','ZZZ','Remark','RT BREAST LUMP','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 18:52:58','','0000-00-00 00:00:00'),(10322,0,0,4237,4124,6282,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 18:54:19','','0000-00-00 00:00:00'),(10324,0,0,4236,4123,6279,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE APPENDICITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 19:01:25','','0000-00-00 00:00:00'),(10325,0,0,1008,975,6303,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 19:01:42','','0000-00-00 00:00:00'),(10326,0,0,4174,287,6167,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ ZOSTUM</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ DERIPHYLLIN</P>\r\n\r\n<P>INJ NORAD DRIP&nbsp;</P>\r\n\r\n<P>NEB DUOLIN</P>\r\n\r\n<P>NEB BUDECORT</P>\r\n\r\n<P>SYP RESWAS</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 19:06:44','mo','2025-12-15 21:42:20'),(10328,0,0,4237,4124,6282,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 19:09:16','','0000-00-00 00:00:00'),(10329,0,0,4248,4135,6300,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----1 MONTHS 3 EPISODES ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 19:17:53','','0000-00-00 00:00:00'),(10330,0,0,4248,4135,6300,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is&thinsp; in any posture he feels rotaotyr feeling&thinsp;</p>\n\n<p>heavinesf of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 19:18:34','','0000-00-00 00:00:00'),(10331,0,0,4248,4135,6300,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---bialtelr high freq severe sn deafness</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 19:18:47','darshan','2025-12-15 20:03:20'),(10333,0,0,4238,4125,6283,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 19:23:35','','0000-00-00 00:00:00'),(10336,0,0,4107,286,6166,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LEFT SIDE CLOSED DISPLACED LATERAL MALLEOLI FRACTURE WITH LEFT SIDE DISPLACED ANTERIOR INFERIOR TIBIO FIBULAR LIGAMENT (AITFL) AVULSION FRACTURE WITHOUT DNVD</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HYPOTHYROIDISM</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 19:25:29','mo','2025-12-17 14:27:19'),(10337,0,0,4107,286,6166,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-15 19:25:29','mo','2025-12-17 14:27:19'),(10338,0,0,4107,286,6166,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 43 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HYPOTHYROIDISM<BR />\r\nH/O:FALL DOWN FROM BIKE AT NANA MAUVA CIRCLE RAJKOT APPROX&nbsp; 12 PM&nbsp; ON 12/12/2025 F&#39;BY<BR />\r\nC/O:LEFT ANKLE PAIN&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO H/O BLEEDING FROM THAT SITE&nbsp;</P>\r\n\r\n<P>FOR&nbsp; ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>X-RAY LEFT SIDE LATERAL MALLEOLI DONE ON 12/12/2025</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-76/MIN<BR />\r\nBP-110/70MMHG<BR />\r\nSPO2-99% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.<BR />\r\nALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>POST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>IN VIEW OF DIFFICULTY IN URINATION THROUGH K-19 CATHETER URINE PASS THEN NO ANY FRESH COMPLAIN&nbsp;</P>\r\n\r\n<P>POST OP X RAY LEFT ANKLE AP/LATERAL DONE ON 16/12/2025</P>\r\n\r\n<P>IN VIEW OF FLANK PAIN AND BACK PAIN REFERENCE OF DR PRATAPSINH DODIYA DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>USG ABDOMEN &AMP; PELVIS DONE ON 17/12/2025.REPORT ATTACHED WITH FILE&nbsp;<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 19:25:29','mo','2025-12-17 14:27:19'),(10339,0,0,4107,286,6166,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>1)&nbsp;OPEN REDUCTION FIBULA PLATE FIXATION FOR LEFT LATERAL MALLEOLI FRACTURE</P>\r\n\r\n<P>2) OPEN REDUCTION 4:MM CC SCRE WITH WASHER FIXATION FOR LEFT AITFL AVULSION FRACTURE (TITANIUM ) DONE BY DR SAGAR KHANPARA&nbsp;ON 15/12/2025 UNDER&nbsp; SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 19:25:29','mo','2025-12-17 14:27:19'),(10340,0,0,4107,286,6166,0,0,NULL,'','OTNOTE','','','<p>- under spinal aneasthesia and under aap pain and drape done for left ankle</p>\r\n\r\n<p>- through lateral approach distal leg</p>\r\n\r\n<p>- left lateral malleoli fracture and left atifl&nbsp; avulsion fracture seen&nbsp;</p>\r\n\r\n<p>- 1st through iitv left lateral malleoli fracture reduced and fixed with (4) hole titanium fibula anatomical plate &amp; screw</p>\r\n\r\n<p>- then 2nd under iitv left aitfl avulsion fracture reduced then 2nd under iitv left aitfl avulsion fracture reduced under iitv &amp; fixed with 4.00mmcc screw with washer (titanium) wash given&nbsp;</p>\r\n\r\n<p>- wound closure done</p>\r\n\r\n<p>- b/k slab given&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 19:25:29','mo','2025-12-17 14:27:19'),(10341,0,0,4107,286,6166,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE&nbsp;</P>\r\n\r\n<P>PILLOW ELEVATION&nbsp;</P>\r\n\r\n<P>TOE MOBILIZATION&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 19:25:29','mo','2025-12-17 14:27:19'),(10342,0,0,4107,286,6166,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ AMIKACIN</P>\r\n\r\n<P>INJ DICLO</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>TAB CHYMORAL FORTE&nbsp;</P>\r\n\r\n<P>INJ CALCIROL BLU</P>\r\n\r\n<P>INJ TRAMADOL&nbsp;</P>\r\n\r\n<P>INJ TT</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 19:25:29','mo','2025-12-17 14:27:19'),(10343,0,0,2081,2027,6311,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence&thinsp; of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 19:27:35','','0000-00-00 00:00:00'),(10344,0,0,4239,4126,6285,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 19:35:14','','0000-00-00 00:00:00'),(10346,0,0,4247,4134,6295,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 19:42:55','','0000-00-00 00:00:00'),(10348,0,0,1941,1894,6314,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--medicine skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 19:45:53','','0000-00-00 00:00:00'),(10350,0,0,4238,4125,6283,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 19:47:40','','0000-00-00 00:00:00'),(10352,0,0,4239,4126,6285,0,0,NULL,'','MADVICE','ZZZ','Remark','BD  MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 19:50:36','','0000-00-00 00:00:00'),(10354,0,0,4247,4134,6295,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 19:52:54','','0000-00-00 00:00:00'),(10355,0,0,4248,4135,6300,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:03:50','','0000-00-00 00:00:00'),(10357,0,0,3979,3870,6320,0,0,NULL,'','HIST','ZZZ','Remark','<p>left eawr wax removed</p>\n\n<p>Ltm--i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:05:38','','0000-00-00 00:00:00'),(10358,0,0,4257,4145,6324,0,0,NULL,'','MADVICE','ZZZ','Remark','ADVICE -ECG','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-15 20:05:50','','0000-00-00 00:00:00'),(10360,0,0,4248,4135,6300,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:15:16','','0000-00-00 00:00:00'),(10361,0,0,3325,3243,6307,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurence of veritog&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:15:36','','0000-00-00 00:00:00'),(10362,0,0,3325,3243,6307,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAEWNV UER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:15:42','','0000-00-00 00:00:00'),(10363,0,0,4252,4140,6309,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:23:42','','0000-00-00 00:00:00'),(10364,0,0,4252,4140,6309,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---MANY MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:23:42','','0000-00-00 00:00:00'),(10365,0,0,4252,4140,6309,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotoatyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:24:18','','0000-00-00 00:00:00'),(10366,0,0,4252,4140,6309,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:24:34','darshan','2025-12-16 18:36:44'),(10368,0,0,4255,4143,6318,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---mild coughing&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:26:28','','0000-00-00 00:00:00'),(10369,0,0,4255,4143,6318,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:26:32','','0000-00-00 00:00:00'),(10370,0,0,2595,2538,6315,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:27:37','','0000-00-00 00:00:00'),(10371,0,0,4254,4142,6316,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:31:52','darshan','2025-12-15 20:32:42'),(10372,0,0,4254,4142,6316,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2  DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:33:12','','0000-00-00 00:00:00'),(10373,0,0,4254,4142,6316,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix halpike--nads</p>\n\n<p>hit--nads</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:33:26','','0000-00-00 00:00:00'),(10375,0,0,4254,4142,6316,0,0,NULL,'','MADVICE','ZZZ','Remark','VESTIBULAR IX ---LATAER ON','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:34:31','','0000-00-00 00:00:00'),(10376,0,0,4259,4147,6327,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN---3-4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:36:32','','0000-00-00 00:00:00'),(10377,0,0,4259,4147,6327,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left neuralgic pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:36:45','','0000-00-00 00:00:00'),(10378,0,0,4235,4122,6276,0,0,NULL,'','DIAG','ZZZ','Remark','UMBILICAL HERNIA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-15 20:41:50','','0000-00-00 00:00:00'),(10379,0,0,3932,3827,6328,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:42:04','','0000-00-00 00:00:00'),(10380,0,0,3932,3827,6328,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>follow up case-----partailly better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-15 20:42:19','','0000-00-00 00:00:00'),(10381,0,0,4174,287,6167,0,0,NULL,'','TREATDISC_TI','','','<P>TAB. XOXE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 250MG&nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB. CLARIBID&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 500MG&nbsp;&nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS&nbsp; &nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>TAB. NEXPROFAST&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 40MG&nbsp;&nbsp; &nbsp; 1--0--0&nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB. DERIPHYLINE RETARD&nbsp; 300MG&nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>SYP. RESWAS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;5ML-5ML-5ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 21:07:10','mo','2025-12-15 21:42:20'),(10382,0,0,4233,293,6274,0,0,NULL,'','DISCDIAG','','','<P>LARGE ACUTE INTRA CEREBRAL HEMORRHAGE SPONTANEOUS IN LEFT PARIETAL,TEMPORAL AND OCCIPITAL LOBE WITH INTRAVENTRICULAR BLEED WITH MASS EFFECT IN K/C/O UNCONTROLLED DIABETES AND HYPERTENSION.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 22:27:40','mo','2025-12-16 12:44:17'),(10383,0,0,4233,293,6274,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n<BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 22:27:40','mo','2025-12-16 12:44:17'),(10384,0,0,4233,293,6274,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 55 YEARS OLD MALE&nbsp; PATIENT PRESENT WITH,</P>\r\n\r\n<P>K/C/O: DM, HTN.</P>\r\n\r\n<P>H/O SUDDEN ONSET OF HEADACHE, UNEASINESS TODAY AT 2.00 PM.</P>\r\n\r\n<P>TWO EPISODES OF VOMITING,</P>\r\n\r\n<P>F/BY DROWSINESS, UNRESPONSIVENESS, RESPIRATORY DISTRESS.<BR />\r\nALL ABOVE MENTIONED COMPLAINTS SINCE&nbsp; TODAY AT 2.00PM.<BR />\r\nPRIMARY TREATMENT TAKEN AT GENERAL PHYSIAN,GONDAL.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:&nbsp;<BR />\r\nTEMP- 97.4`F<BR />\r\nPR- 42/MIN<BR />\r\nBP- 200/120 MMHG&nbsp;<BR />\r\nSPO2- 80% ON RA&nbsp;<BR />\r\nRR- GASPING RESPIRATION</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS- UNCONSIOUS, DECEREBRATION MOVEMENT +NT UPPER EXTREMITY, GCS = E1V1M2, PUPIL-B/L&nbsp;FIXED 4-5 MM.<BR />\r\nRS-BLAE+, CREPS+<BR />\r\nCVS-S1S2+, BRADYCARDIA<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15-12-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF GASPING RESPIRATION ENDOTACHEAL&nbsp;INTUBATION DONE ET TUBE NO 7.0, PUT ON VENTILATOR SUPPORT AV/VC MODE.</P>\r\n\r\n<P>FOLEY&#39;S&nbsp;CATH DONE.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>ANTIEPILEPTIC&nbsp;AND MANNITOL GIVEN.</P>\r\n\r\n<P>CT BRAIN DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>IN VIEW OF HYPOTENSION INJ.NORAD AND INJ. ADR STARTED BY INFUSION PUMP.</P>\r\n\r\n<P>GENERAL CONDITION AND POOR PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16-12-2025,</P>\r\n\r\n<P>PATIENT IS UNCONSIOUS, GCS - E1VETM1, PUPIL - B/L FIXED DILATED.</P>\r\n\r\n<P>ON VENTILATOR SUPPORT AC/VC MODE.</P>\r\n\r\n<P>INJ. NORAD AND INJ. ADR DRIP CONTINUE.</P>\r\n\r\n<P>GENERAL CONDITION AND POOR PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>PATIENT UNDERGONE BRADYCARDIA F/BY CARDIAC ARREST SO,CPR STARTED AS PER ACLS PROTOCOLS BUT PATIENT COULD NOT REVIVED.<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 22:27:40','mo','2025-12-16 12:44:17'),(10385,0,0,4233,293,6274,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ. LACTAGARD</P>\r\n\r\n<P>INJ. PATODAC</P>\r\n\r\n<P>INJ. VOMIEST</P>\r\n\r\n<P>INJ. NORAD</P>\r\n\r\n<P>INJ. ADR</P>\r\n\r\n<P>INJ. LEVEPIL</P>\r\n\r\n<P>INJ. MANNITOL</P>\r\n\r\n<P>IVF NS/RL</P>\r\n\r\n<P>INJ. ELDERVIT</P>\r\n\r\n<P>INJ. PROPOFOL</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 22:39:30','mo','2025-12-16 12:44:17'),(10386,0,0,4172,284,6163,0,0,NULL,'','DISCDIAG','','','<P><STRONG>H/O&nbsp; CVA HAMORRHAGIC(2022) OFF RX</STRONG></P>\r\n\r\n<P><STRONG>AGAIN LEFT BASAL GANGLIA BLEED&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>(? HTN INDUCED)&nbsp; SEVERE DYSARTHRIA &AMP;MILD ATAXIC</STRONG></P>\r\n\r\n<P><STRONG>K/C/O:HTN</STRONG></P>\r\n\r\n<P><STRONG>&nbsp; &nbsp; &nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 22:48:57','mo','2025-12-19 14:58:33'),(10387,0,0,4172,284,6163,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-15 22:48:57','mo','2025-12-19 14:58:33'),(10388,0,0,4172,284,6163,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 70 YEARS OLD &nbsp;PATIENT PRESENT WITH,<BR />\r\nH/O : F/C/O RT THALAMI AND BG ICH 3 YEARS BACK<BR />\r\nK/C/O:HTN<BR />\r\nC/O:DIFFICULTY IN SWALLOWING;APHASIA;BED WETTING;RIGHT SIDED WEAKNESS SINCE TODAY MORNING @7AM.</P>\r\n\r\n<P>NO H/O GTCS/VOMITING/LOC/HEADACHE ETC.</P>\r\n\r\n<P>SO,RELATIVE BROUGHT HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:&nbsp;<BR />\r\nTEMP-98 F<BR />\r\nPR-68/MIN<BR />\r\nBP-154/90MMHG&nbsp;<BR />\r\nSPO2-94% ON RA&nbsp;<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-E4V1M6,MOVING ALL 4 LIMBS,APHASIA+,RIGHT SIDED WEAKNESS+<BR />\r\nRS-BLAE+,<BR />\r\nCVS-S1S2+,&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>RBS-104MG/DL</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14-12-2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE.</P>\r\n\r\n<P>RT DONE.</P>\r\n\r\n<P>FOLEY&#39;S CATH DONE.</P>\r\n\r\n<P>MRI BRAIN DONE.S/O HYPERACUTE INTRAPARENCHYMAL HEMORRHAGE IN LEFT GANGLIOCAPSULAR REGION.</P>\r\n\r\n<P>TREATMENT MODIFIED.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15-12-2025,</P>\r\n\r\n<P>PATIENT DROWSY,F/V/C.E4V1M6</P>\r\n\r\n<P>IN VIEW OF LOW SPO2 SO,O2 SUPPORT GIVEN.1L/MIN BY NC.</P>\r\n\r\n<P>CT BRAIN DONE - REPROT ATTACH WITH FILE.</P>\r\n\r\n<P>RT FEEDING STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16-12-2025,</P>\r\n\r\n<P>PATIENT CONSCIOUS,F/V/C.E4V2M6</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17-12-2025</P>\r\n\r\n<P>RT REMOVE BY PATIENT HIMSELF SO REINSERTION OF RT DONE WITH ALL ASEPTIC PRECAUTION&nbsp;</P>\r\n\r\n<P>2D ECHO DONE REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>MOBILIZATION START&nbsp;</P>\r\n\r\n<P>COMPLAIN COUGHING REFERENCE OF DR ARCHIT RATHOD(MD INTENSIVIST) DONE AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18-12-25</P>\r\n\r\n<P>PATIENT CONSCIOUS AND ORIENTED,F/V/C E4V5M6</P>\r\n\r\n<P>MOBILIZATION DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19-12-25</P>\r\n\r\n<P>CT SCAN BRAIN PLAIN DONE.REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>FOLEY&#39;S CATHATER CLAMP AND REMOVE.</P>\r\n\r\n<P>PATIENT VITALLY&nbsp;STABLE AND NO ANY FRESH COMPLAINTS.&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.<BR />\r\nPATIENT RESPONDS WELL WITH ONGOING TREATMENT.</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 22:48:57','mo','2025-12-19 14:58:33'),(10389,0,0,4189,288,6201,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>LEFT BREAST LUMP EXCISIONAL BIOPSY DONE BY DR PRATAPSINH DODIYA ON 15/12/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 23:08:20','mo','2025-12-16 12:03:21'),(10390,0,0,4189,288,6201,0,0,NULL,'','OTNOTE','','','<p>-LEFT BREAST LUMP PRESENT.</p>\r\n\r\n<p>-INCISION KEPT ON LEFT BREAST lump</p>\r\n\r\n<p>-BREAST LUMP EXCISION DONE with 1cm margin all around</p>\r\n\r\n<p>-tissue sent for hpe&nbsp;&nbsp;</p>\r\n\r\n<p>-HEMOSTASIS ACHIEVED</p>\r\n\r\n<p>-SUB CUTANEOUS TISSUE CLOSED WITH VICRYL 3-0.</p>\r\n\r\n<p>-SKIN CLOSED WITH ETHILON 3-0.</p>\r\n\r\n<p>-DRESSING KEPT.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 23:08:20','mo','2025-12-16 12:03:21'),(10391,0,0,4189,288,6201,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 23:08:20','mo','2025-12-16 12:03:21'),(10392,0,0,4189,288,6201,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZOSTUM-O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......... FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ..........&nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL-SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......... FOR 5 DAYS</P>\r\n\r\n<P>TAB CHYMORAL FORTE&nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........&nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-15 23:08:20','mo','2025-12-16 12:03:21'),(10393,0,0,4189,288,6201,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-15 23:11:19','mo','2025-12-16 12:03:21'),(10394,0,0,4173,285,6165,0,0,NULL,'','DISCDIAG','','','<P><STRONG>-UROSE</STRONG><STRONG>PSIS</STRONG></P>\r\n\r\n<P><STRONG>-CKD-T (S/P RENAL TRANSPLANT)</STRONG></P>\r\n\r\n<P><STRONG>-K/C/O: HTN, DM, ESRD, CAD, TVD (POST PTCA)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 01:30:57','mo','2025-12-22 14:09:28'),(10395,0,0,4173,285,6165,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-16 01:30:57','mo','2025-12-22 14:09:28'),(10396,0,0,4173,285,6165,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 57 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, DM, CKD, ESRD, CAD, TVD (POST PTCA)&nbsp;<BR />\r\nH/O: RIGHT KIDNEY TRANSPLANT ON 07/12/2025</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; RIGHT HAND PLASTIC SURGERY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;K WIRE IN RIGHT WRIST<BR />\r\nC/O: GIDDINESS, VERTIGO SINCE 2 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; VOMITING SINCE YESTERDAY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>FOLEY&#39;S IN SITU (DAY-7)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-87/MIN<BR />\r\nBP-130/80MMHG<BR />\r\nSPO2-97% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>14/12/2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF UNCONTROLLED DM REFERENCE OF DR ARCHIT RATHOD DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>INJ H.ACTRAPID DRIP STARTED @ RBS</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>URINE RM DONE WHICH S/O: PUS CELL:40-50, RBC:3-4</P>\r\n\r\n<P>URINE CS SENT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>15/12/2025,</P>\r\n\r\n<P>2D ECHO DONE ; LVEF:55%</P>\r\n\r\n<P>USG ABDOMEN DONE</P>\r\n\r\n<P>DOPPLER OF GRAFT RENAL TRANSPLANT DONE</P>\r\n\r\n<P>DAILY REVIEW OF&nbsp;DR ARCHIT RATHOD DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>IN VIEW OF PERSISTANT PAIN IN RIGHT HAND &AMP; SHOULDER REFERENCE OF DR SAGAR KHANPARA DONE &AMP; FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>X-RAY RIGHT WRIST AP/LATERAL DONE</P>\r\n\r\n<P>SPIROMETRY STARTED</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16/12/2025,</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>IN VIEW OF CHEST PAIN AND GABHRAMAN ECG DONE WHICH S/O ISCHEMIC CHANGES SO TROP I SENT WHICH WAS 119.5 NG/L AND LMWX START&nbsp;</P>\r\n\r\n<P>REFERENCE OF DR TUSHAR BHATTI (CARDIOLOGIST) DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>FOLEY&#39;S CLAMP &AMP; REMOVED</P>\r\n\r\n<P>IN VIEW OF HABITUAL CONSTIPATION REFERENCE OF DR PRATAPSINH DODIYA DONE AND FOLLOW HIS ALL ADVICE</P>\r\n\r\n<P>SPIROMETRY START&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17/12/2025,&nbsp;</P>\r\n\r\n<P>REFERENCE OF DR RISHIKESH KALARIA (GASTROLOGIST) DONE AND FOLLOW HIS ALL ADVICE&nbsp;</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n\r\n<P>URINE C/S S/O: GRAM -VE BACILLI PSEUDOMONAS AERUGINOSA AND TREATMENT MODIFIED @ SENSITIVITY&nbsp;</P>\r\n\r\n<P>GASTROENTEROLOGIST DR RISHIKESH KALARIA&#39;S REFERANCE DONE AND ALL HIS ADVICE FOLLOWE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18/12/2025,<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>SPIROMETRY STARTED.</P>\r\n\r\n<P>SAME TREATMENT CONTINUED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19/12/2025,</P>\r\n\r\n<P>IN VIEW OF UNCONTROLLED BLOOD SUGAR, OHA STARTED.</P>\r\n\r\n<P>SUDDENLY PATIENT DEVELOPED GIDDINESS F/BY ? SYNCOPAL ATTACK AND ACCELERATED HTN SO SHIFTED TO ICU FOR FURTHER OBSERVATION.</P>\r\n\r\n<P>FOLEY&#39;S CATHTER INSERTION DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20/12/2025,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSRVED IN WARD.</P>\r\n\r\n<P>CARDIOGIST DR TUSHAR BHATTI&#39; REFERANCE DONE 2D ECHO SCREENING DONE AND FOLLOWED HIS ADVICE.</P>\r\n\r\n<P>ATIENT&#39;S CONDITION AND PROGNOSIS EXPLAINED TO RELATIVES.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21/12/2025,</P>\r\n\r\n<P>IN VIEW OF ACCELERTAED HTN, INJ NTG DRIP STARTED AND PATIENT&#39;S CONDITION MONITORED.</P>\r\n\r\n<P>AFTED CONTROLLED READINGS NTG DRIP TAPPERD-OFF AND ORAL ANTI HYPERTIVE STARTED.</P>\r\n\r\n<P>FURTHER HOURS WAS UNEVENTFULL IN ICU SO PATIENT SHIFTED TO WARD WITH STABLE STATUS.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22/12/2025,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSRVED IN WARD.</P>\r\n\r\n<P>BLOOD PRESSURE MONITORING</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION &AMP; PROGNOSIS EXPLAINED TO RELATIVE &AMP; ADVICE HOSPITALIZATION BUT THEY REFUSED AND WANT DISCHARGE AGAINST MEDICAL ADVICE SO PATIENT BEING DAMA.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 01:30:57','mo','2025-12-22 14:09:28'),(10397,0,0,4173,285,6165,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION</P>\r\n\r\n<P>BLOOD PRESSURE MONITORING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 01:50:08','mo','2025-12-22 14:09:28'),(10398,0,0,4173,285,6165,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ H ACTRAPID</P>\r\n\r\n<P>INJ H MIXTARD</P>\r\n\r\n<P>TAB WYSOLENE</P>\r\n\r\n<P>TAB PANGRAF</P>\r\n\r\n<P>TAB CELLCEPT</P>\r\n\r\n<P>TAB VALGAN</P>\r\n\r\n<P>TAB SEPTRAN DS</P>\r\n\r\n<P>TAB CREMALAX</P>\r\n\r\n<P>PC ENEMA</P>\r\n\r\n<P>CANDID MOUTH PAINT</P>\r\n\r\n<P>TAB ECOSPRIN&nbsp;</P>\r\n\r\n<P>TAB LIPITAS</P>\r\n\r\n<P>TAB BISOBIS</P>\r\n\r\n<P>TAB ULTRACET</P>\r\n\r\n<P>TAB STAGLIM M2</P>\r\n\r\n<P>INJ CLEXANE</P>\r\n\r\n<P>INJ PPI DRIP</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>PEGRED POWDER</P>\r\n\r\n<P>TAB STUGERON PLUS&nbsp;</P>\r\n\r\n<P>TAB ZEPTAS&nbsp;</P>\r\n\r\n<P>TAB PIAGLITAZONE</P>\r\n\r\n<P>INJ LOBET</P>\r\n\r\n<P>INJ NTG</P>\r\n\r\n<P>TAB ARKAMINE</P>\r\n\r\n<P>TAB AMLODAC</P>\r\n\r\n<P>TAB NICARDIA R</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 01:50:08','mo','2025-12-22 14:09:28'),(10399,0,0,4172,284,6163,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ MANNITOL</P>\r\n\r\n<P>INJ LEVIPIL</P>\r\n\r\n<P>INJ PCM</P>\r\n\r\n<P>TAB ALLSTAT</P>\r\n\r\n<P>TAB AMLODAC</P>\r\n\r\n<P>TAB COLIHENZ P</P>\r\n\r\n<P>TAB BRIQ</P>\r\n\r\n<P>TAB MODALERT</P>\r\n\r\n<P>TAB SYNDOPA PLUS</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ MVI</P>\r\n\r\n<P>NEB DUOLIN/BUDECORT</P>\r\n\r\n<P>TAB LEVIPIL</P>\r\n\r\n<P>SYP BROZEDEX</P>\r\n\r\n<P>TAB DX</P>\r\n\r\n<P>SYP RESWAS&nbsp;</P>\r\n\r\n<P>TAB ABPHYLLIN -N</P>\r\n\r\n<P>TAB MONTAIR LC&nbsp;</P>\r\n\r\n<P>TAB ZIFI</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 09:30:02','mo','2025-12-19 14:58:33'),(10400,0,0,3722,3619,6337,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 10:51:33','','0000-00-00 00:00:00'),(10401,0,0,3722,3619,6337,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 10:52:45','','0000-00-00 00:00:00'),(10404,0,0,3722,3619,6337,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-16 10:53:17','','0000-00-00 00:00:00'),(10405,0,0,844,813,6332,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 10:55:33','','0000-00-00 00:00:00'),(10406,0,0,3522,3571,6345,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT TENNIS ELBOW','','',0,'0000-00-00 00:00:00','drsagar','2025-12-16 11:03:19','','0000-00-00 00:00:00'),(10407,0,0,4264,4150,6336,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:11:03','','0000-00-00 00:00:00'),(10408,0,0,4264,4150,6336,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---FEW YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:11:03','','0000-00-00 00:00:00'),(10409,0,0,4264,4150,6336,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache with giddiness ---remains for few mins&thinsp;</p>\n\n<p>haviness of head +</p>\n\n<p>nausea and vomiting +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:11:45','','0000-00-00 00:00:00'),(10410,0,0,4264,4150,6336,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus----absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain---nad</p>\n\n<p>pta---bilateral high freq moderate sn deafness</p>\n\n<p>stabilomaetry---reduced vestibular score</p>\n\n<p>CCG---AP displacement out of normal range</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:11:58','darshan','2025-12-16 13:02:12'),(10411,0,0,4264,4150,6336,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:12:05','','0000-00-00 00:00:00'),(10412,0,0,4262,296,6334,0,0,NULL,'','DISCDIAG','','','<P><STRONG>HYPERTENSIVE URGENCY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 11:13:03','mo','2025-12-16 20:06:41'),(10413,0,0,4262,296,6334,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-16 11:13:03','mo','2025-12-16 20:06:41'),(10414,0,0,4262,296,6334,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 69 YEARS OLD MALE PATIENT P/W</P>\r\n\r\n<P>K/C/O: NAD</P>\r\n\r\n<P>C/O: SEVERE HEADACHE SINCE 2-3 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GABHRAMAN, PERSPIRATION SINCE 2 HR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DOE SINCE 2-3 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BACK PAIN SINCE 2-3&nbsp;DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO H/O LOC, VOMITING</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS&nbsp;RELATIVE BROUGHT PATIENT HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-97 F</P>\r\n\r\n<P>PR-72/MIN</P>\r\n\r\n<P>BP-200/120 MMHG</P>\r\n\r\n<P>SPO2-97% ON RA</P>\r\n\r\n<P>RR-24/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-107 MG/DL</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16/12/25,</P>\r\n\r\n<P>ALL REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>IN VIEW OF ACCELERATED HYPERTENSION MANAGED BY IV NTG DRIP.</P>\r\n\r\n<P>TROP-I SENT.S/O NEGATIVE.</P>\r\n\r\n<P>2D ECHO DONE ; LVEF: 60%</P>\r\n\r\n<P>NTG DRIP TAPER AND OFF&nbsp;@BP</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 11:13:03','mo','2025-12-16 20:06:41'),(10415,0,0,4262,296,6334,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ NTG DRIP</P>\r\n\r\n<P>INJ DYNAPAR</P>\r\n\r\n<P>TAB CORTEL</P>\r\n\r\n<P>TAB BISOBIS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 11:13:03','mo','2025-12-16 20:06:41'),(10416,0,0,2859,2791,6331,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---no improvment&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:16:32','','0000-00-00 00:00:00'),(10417,0,0,2640,2579,6339,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----medicine skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:20:33','','0000-00-00 00:00:00'),(10418,0,0,2640,2579,6339,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:21:23','','0000-00-00 00:00:00'),(10420,0,0,2640,2579,6339,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:21:44','','0000-00-00 00:00:00'),(10421,0,0,4233,293,6274,0,0,NULL,'','DISCCOND','','','<P>DEATH</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 11:24:45','mo','2025-12-16 12:44:17'),(10422,0,0,4233,293,6274,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 11:25:29','mo','2025-12-16 12:44:17'),(10423,0,0,4268,4154,6348,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:29:43','','0000-00-00 00:00:00'),(10424,0,0,4268,4154,6348,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:30:16','','0000-00-00 00:00:00'),(10425,0,0,4268,4154,6348,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--left post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:30:38','darshan','2025-12-16 13:06:14'),(10427,0,0,4263,4149,6335,0,0,NULL,'','CC','ZZZ','Remark','C/O PEDAL OEDEMA  | 15 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 11:33:55','','0000-00-00 00:00:00'),(10428,0,0,4263,4149,6335,0,0,NULL,'','CC','ZZZ','Remark','C/O PAIN BOTH LEG||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 11:33:55','','0000-00-00 00:00:00'),(10429,0,0,4263,4149,6335,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO C/O DOE</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 11:34:02','','0000-00-00 00:00:00'),(10430,0,0,4263,4149,6335,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>REST CLINICALLY NAD</p>\n\n<p>ALL BLODD IX INCLUDING 2D ECHO NOTED -NORMAL</p>\n\n<p>ECG -S/O INCOMPLETE LBBB</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 11:34:35','drarchit','2025-12-16 12:24:06'),(10431,0,0,2986,2908,6350,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:34:42','','0000-00-00 00:00:00'),(10432,0,0,2986,2908,6350,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:35:09','','0000-00-00 00:00:00'),(10434,0,0,2986,2908,6350,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:35:45','','0000-00-00 00:00:00'),(10435,0,0,283,267,6342,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---sense of imbalance&thinsp;</p>\n\n<p>occassional&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:38:54','','0000-00-00 00:00:00'),(10436,0,0,283,267,6342,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike---nasd</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:39:03','','0000-00-00 00:00:00'),(10437,0,0,3669,3569,6338,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----partailly better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:43:46','','0000-00-00 00:00:00'),(10438,0,0,3669,3569,6338,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:44:50','','0000-00-00 00:00:00'),(10440,0,0,3669,3569,6338,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEUVER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:45:24','','0000-00-00 00:00:00'),(10441,0,0,4269,4155,6351,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:51:20','','0000-00-00 00:00:00'),(10442,0,0,4269,4155,6351,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ----sudden onset of rotaotyr feeling when pt is in any posture she feels sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:51:57','','0000-00-00 00:00:00'),(10443,0,0,4269,4155,6351,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>&thinsp;pta-----bilateral high frq moderate sn deafness</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 11:52:19','darshan','2025-12-16 13:26:34'),(10445,0,0,4279,4165,6364,0,0,NULL,'','CC','ZZZ','Remark','RT UL NEUROPATHIC PAIN | 10 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-16 11:58:19','','0000-00-00 00:00:00'),(10446,0,0,4279,4165,6364,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-16 11:58:35','drjayant','2025-12-16 13:30:37'),(10448,0,0,4266,4152,6341,0,0,NULL,'','HIST','ZZZ','Remark','<p>when pt walks he feels mild sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsmo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 12:01:55','darshan','2025-12-16 12:02:34'),(10449,0,0,4266,4152,6341,0,0,NULL,'','CC','ZZZ','Remark','SENSE OF IMBALANCE ----3 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 12:02:07','','0000-00-00 00:00:00'),(10450,0,0,4266,4152,6341,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta--wnl</p>\n\n<p>stabiloemtry---reduced vesitbular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 12:02:52','darshan','2025-12-16 13:58:13'),(10453,0,0,4286,4173,6375,0,0,NULL,'','CC','ZZZ','Remark','LOSS OF SLEEPING TIME | 10 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-16 12:04:06','','0000-00-00 00:00:00'),(10454,0,0,4286,4173,6375,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-16 12:05:12','','0000-00-00 00:00:00'),(10455,0,0,747,716,6357,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 12:05:12','','0000-00-00 00:00:00'),(10456,0,0,949,918,6343,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 12:07:43','','0000-00-00 00:00:00'),(10457,0,0,4278,4164,6363,0,0,NULL,'','CC','ZZZ','Remark','C/O JOINT PAIN | 15 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 12:08:38','','0000-00-00 00:00:00'),(10458,0,0,4278,4164,6363,0,0,NULL,'','CC','ZZZ','Remark','C/O GENERATLISED WEAKENSS  | 15 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 12:08:38','','0000-00-00 00:00:00'),(10460,0,0,4278,4164,6363,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALLY NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 12:08:57','','0000-00-00 00:00:00'),(10461,0,0,4286,4173,6375,0,0,NULL,'','MADVICE','ZZZ','Remark','SALT RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-16 12:11:47','','0000-00-00 00:00:00'),(10462,0,0,1592,1549,6347,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo and headahe&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 12:13:34','darshan','2025-12-16 12:17:49'),(10463,0,0,4283,4169,6371,0,0,NULL,'','CC','ZZZ','Remark','MIDLINE CHEST PAIN LAST NIGHT, OW BETTER | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-16 12:15:42','','0000-00-00 00:00:00'),(10464,0,0,1592,1549,6347,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>dix hallpike--right torsonal geotropic nystagmus&thinsp;</p>\n\n<p>hit---nad</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 12:18:12','','0000-00-00 00:00:00'),(10465,0,0,4270,4156,6352,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-16 12:18:14','','0000-00-00 00:00:00'),(10466,0,0,1592,1549,6347,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN FOR HEADACHE ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-16 12:18:21','','0000-00-00 00:00:00'),(10467,0,0,4287,4174,6376,0,0,NULL,'','CC','ZZZ','Remark','BILAT LL FINGERS NEUROPATHIC PAIN ||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-16 12:22:24','','0000-00-00 00:00:00'),(10468,0,0,4287,4174,6376,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-16 12:25:19','','0000-00-00 00:00:00'),(10469,0,0,4284,4171,6373,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1.5 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 12:27:48','','0000-00-00 00:00:00'),(10470,0,0,4284,4171,6373,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration postional giddinss without any cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 12:27:52','darshan','2025-12-16 12:31:07'),(10471,0,0,4284,4171,6373,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit----nad</p>\n\n<p>stabilometry--reduced vestibualr score</p>\n\n<p>CCG---axis spin---rigth ward</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 12:31:40','darshan','2025-12-16 14:02:50'),(10473,0,0,4271,4157,6353,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN---FEW MONTH OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 12:39:41','','0000-00-00 00:00:00'),(10474,0,0,4271,4157,6353,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Ltm---small central perforation</p>\n\n<p>Right ear --debris</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 12:40:09','','0000-00-00 00:00:00'),(10475,0,0,943,912,6366,0,0,NULL,'','HIST','ZZZ','Remark','<p>follw up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 12:47:06','darshan','2025-12-16 12:50:30'),(10476,0,0,4226,4116,6382,0,0,NULL,'','CC','ZZZ','Remark','C/O ABD PAIN  | 15 DAYS | EPIGASTRIC REGION','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 12:49:42','','0000-00-00 00:00:00'),(10477,0,0,4226,4116,6382,0,0,NULL,'','CC','ZZZ','Remark','C/O HEADACHE | 15 DAYS | ON AND OFF','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 12:49:42','','0000-00-00 00:00:00'),(10478,0,0,4226,4116,6382,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO C/O FEVER</p>\n\n<p>NO C/O YELLOWISH DISCORATION OF URINE</p>\n\n<p>NO C/O VOMITING</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 12:50:14','','0000-00-00 00:00:00'),(10479,0,0,4226,4116,6382,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALLY NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 12:50:29','','0000-00-00 00:00:00'),(10480,0,0,2859,2791,6331,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>pta----wnl</p>\n\n<p>vng---central variety of nystagmus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 12:53:49','','0000-00-00 00:00:00'),(10481,0,0,4292,4179,6383,0,0,NULL,'','CC','ZZZ','Remark','C/O HEADACHE | 10 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 12:54:40','drarchit','2025-12-16 13:11:43'),(10483,0,0,4292,4179,6383,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 12:54:41','','0000-00-00 00:00:00'),(10484,0,0,4292,4179,6383,0,0,NULL,'','CC','ZZZ','Remark','C/O COUGH| | DRY','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 12:54:46','drarchit','2025-12-16 13:11:43'),(10485,0,0,4292,4179,6383,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALY NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 12:55:02','','0000-00-00 00:00:00'),(10486,0,0,4268,4154,6348,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 13:07:11','','0000-00-00 00:00:00'),(10488,0,0,3328,3246,6385,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 13:10:58','','0000-00-00 00:00:00'),(10489,0,0,3328,3246,6385,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 13:11:29','','0000-00-00 00:00:00'),(10491,0,0,3328,3246,6385,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-16 13:12:25','','0000-00-00 00:00:00'),(10492,0,0,4295,4182,6388,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-16 13:18:09','','0000-00-00 00:00:00'),(10493,0,0,4295,4182,6388,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-16 13:18:21','drjayant','2025-12-16 13:20:31'),(10496,0,0,4268,4154,6348,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-16 13:19:40','','0000-00-00 00:00:00'),(10497,0,0,4295,4182,6388,0,0,NULL,'','MADVICE','ZZZ','Remark','SALT/ OIL RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-16 13:20:31','','0000-00-00 00:00:00'),(10498,0,0,4294,4181,6387,0,0,NULL,'','CC','ZZZ','Remark','C/O HEDACHE  | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 13:20:43','','0000-00-00 00:00:00'),(10499,0,0,2179,2128,6377,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 13:36:03','','0000-00-00 00:00:00'),(10500,0,0,3719,294,6329,0,0,NULL,'','DISCDIAG','','','<P>OPERATED CASE OF PERIANAL ABSCESS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 13:38:42','mo','2025-12-16 16:56:09'),(10501,0,0,3719,294,6329,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY-&nbsp; I&AMP;D OF PERIANAL ABSCESS DONE BY DR. PRATAPSINH DODIYA ON 6/12/2025 UNDER SPINAL ANAESTHESIA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 13:38:42','mo','2025-12-16 16:56:09'),(10502,0,0,3719,294,6329,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 40&nbsp; YEARS OLD MALE&nbsp; PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM-II ( 8 YEARS )&nbsp;<BR />\r\nH/O:&nbsp;I&AMP;D OF PERIANAL ABSCESS DONE BY DR. PRATAPSINH DODIYA ON 6/12/2025 UNDER SPINAL ANESTHESIA.&nbsp; &nbsp; &nbsp; &nbsp; C/O: PATIENT CAME HERE FOR DRESSING UNDER SHORT GA. PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-84/MIN<BR />\r\nBP-122/80MMHG<BR />\r\nSPO2-98% ON RA<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nDRESSING DONE BY DR PRATAPSINH DODIYA ON 16/12/2025 UNDER SEDATION WITH ALL ASEPTIC PRECAUTION<BR />\r\nPOST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 13:38:42','mo','2025-12-16 16:56:09'),(10503,0,0,3719,294,6329,0,0,NULL,'','FOOD_DRUG_ALLERGIES','','','<P>SKIN ALLERGY - TAB.LEVOCET - EVERY 2 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 13:39:41','mo','2025-12-16 16:56:09'),(10504,0,0,4288,4175,6378,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----YESTERDAY||','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 13:42:08','','0000-00-00 00:00:00'),(10505,0,0,4288,4175,6378,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtpoms&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 13:42:23','darshan','2025-12-16 14:13:38'),(10506,0,0,4288,4175,6378,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta---wnl</p>\n\n<p>vng--right hz canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 13:42:40','darshan','2025-12-16 14:13:49'),(10508,0,0,3719,294,6329,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>DRESSING DONE BY DR PRATAPSINH DODIYA ON 16/12/2025 UNDER SEDATION WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 13:49:17','mo','2025-12-16 16:56:09'),(10509,0,0,4297,4184,6390,0,0,NULL,'','CC','ZZZ','Remark','RIGTH EAR PROGRESSIVE DEAFNESS ----3-4 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 13:49:17','','0000-00-00 00:00:00'),(10510,0,0,4297,4184,6390,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS----3-4 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 13:49:17','','0000-00-00 00:00:00'),(10511,0,0,3719,294,6329,0,0,NULL,'','OTNOTE','','','<p>-operated case of perianal abscess.</p>\r\n\r\n<p>-abscess cavity clean with scooping.&nbsp;</p>\r\n\r\n<p>-unhealthy granulation tissue , slough excised.</p>\r\n\r\n<p>-seton change.</p>\r\n\r\n<p>-hemostatis achieved.</p>\r\n\r\n<p>-dressing kept.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 13:51:18','mo','2025-12-16 16:56:09'),(10512,0,0,4297,4184,6390,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 13:52:05','','0000-00-00 00:00:00'),(10513,0,0,4297,4184,6390,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---righit profoudn low freq deafness(o)</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 13:53:11','','0000-00-00 00:00:00'),(10514,0,0,4297,4184,6390,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 13:53:15','','0000-00-00 00:00:00'),(10516,0,0,4297,4184,6390,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 13:53:21','','0000-00-00 00:00:00'),(10517,0,0,3719,294,6329,0,0,NULL,'','DISCCOND','','','<P>-PATIENT VITALLY STABLE</P>\r\n\r\n<P>-ORAL DIET TOLERATING</P>\r\n\r\n<P>-NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 13:53:43','mo','2025-12-16 16:56:09'),(10518,0,0,3719,294,6329,0,0,NULL,'','ADVICE','','','<P>-FOLLOW UP AFTER 5 DAYS.</P>\r\n\r\n<P>-DAILY DRESSING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 13:55:03','mo','2025-12-16 16:56:09'),(10519,0,0,3719,294,6329,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACTAGARD</P>\r\n\r\n<P>INJ.METROGYL</P>\r\n\r\n<P>INJ.PANTO</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>INJ.DICLO</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 13:55:03','mo','2025-12-16 16:56:09'),(10520,0,0,3719,294,6329,0,0,NULL,'','TREATDISC_TI','','','<P>TAB. ZENFLOX-OZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........ FOR 5 DAYS</P>\r\n\r\n<P>TAB.AKILOS-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......FOR 5 DAYS</P>\r\n\r\n<P>TAB.ULPAN-DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........ FOR 5 DAYS</P>\r\n\r\n<P>SYP.CREMAFFIN PLUS&nbsp; &nbsp; &nbsp; &nbsp;0--0--10ML&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......&nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 13:58:13','mo','2025-12-16 16:56:09'),(10523,0,0,4284,4171,6373,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 14:03:49','','0000-00-00 00:00:00'),(10526,0,0,4266,4152,6341,0,0,NULL,'','MADVICE','ZZZ','Remark','MRI BRAIN PARKINSON PROTOCOL ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-16 14:11:37','','0000-00-00 00:00:00'),(10527,0,0,4229,292,6264,0,0,NULL,'','DISCCOND','','','<P>-PATIENT VITALLY STABLE</P>\r\n\r\n<P>-NO ANY FRESH COMPLAIN.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 14:12:26','mo','2025-12-16 15:07:10'),(10528,0,0,4288,4175,6378,0,0,NULL,'','DIAG','ZZZ','Remark','RIGTH HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 14:13:54','','0000-00-00 00:00:00'),(10529,0,0,4288,4175,6378,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 14:14:28','','0000-00-00 00:00:00'),(10532,0,0,4284,4171,6373,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-16 14:16:11','','0000-00-00 00:00:00'),(10533,0,0,4229,292,6264,0,0,NULL,'','TREATDISC_TI','','','<P>INJ. ZOSTUM (1.5 GM/DIL)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp;10AM..............10PM&nbsp; FOR 3 DAYS (7 INJ.)</P>\r\n\r\n<P>TAB.ZOFER-MD (4MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--1--1............&nbsp;AFTER FOOD</P>\r\n\r\n<P>TAB. METROGYL ER (600MG)&nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1............&nbsp;AFTER FOOD</P>\r\n\r\n<P>TAB.ULTRACET&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/O&nbsp; &nbsp; &nbsp; 1--0--1............&nbsp;AFTER FOOD</P>\r\n\r\n<P>TAB. NEXPROFAST&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/O&nbsp; &nbsp; &nbsp; &nbsp;1--0--0...........&nbsp;BEFORE FOOD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 14:20:22','mo','2025-12-16 15:07:10'),(10535,0,0,4288,4175,6378,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANEUVER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-16 14:21:52','','0000-00-00 00:00:00'),(10536,0,0,4300,4187,6396,0,0,NULL,'','CC','ZZZ','Remark','RIGHT NASAL FB----||','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 14:30:58','','0000-00-00 00:00:00'),(10537,0,0,4300,4187,6396,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right nose FB peice of bead ---removed&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 14:31:29','','0000-00-00 00:00:00'),(10538,0,0,4260,295,6330,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE BRONCHITIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 16:27:24','mo','2025-12-16 19:29:39'),(10539,0,0,4260,295,6330,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 28 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O: FEVER BEFORE 5 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; HEMOPTYSIS BEFORE 5 DAYS<BR />\r\nC/O: GABHRAMAN SINCE TODAY EVENING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; COUGH WITH EXPECTORATION (NO BLOOD IN SPUTUM) SINCE 8 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS PATIENT PRIMARY CONSULTED TO GENERAL PHYSICIAN AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>ECG DONE (16/12/2025)</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-81/MIN<BR />\r\nBP-130/80MMHG<BR />\r\nSPO2-97% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\nCHEST X-RAY DONE ON 16/12/2025<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 16:27:24','mo','2025-12-16 19:29:39'),(10540,0,0,4260,295,6330,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 16:27:24','mo','2025-12-16 19:29:39'),(10541,0,0,4260,295,6330,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 16:27:24','mo','2025-12-16 19:29:39'),(10542,0,0,4260,295,6330,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>NEB DUOLIN/BUDECORT</P>\r\n\r\n<P>SYP RESWAS</P>\r\n\r\n<P>TAB CETZINE COLD</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 16:27:24','mo','2025-12-16 19:29:39'),(10543,0,0,4260,295,6330,0,0,NULL,'','TREATDISC_TI','','','<P>TAB XOXE (250 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp;FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB CLARIBID (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 3&nbsp;DAYS</P>\r\n\r\n<P>TAB CETZINE COLD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5&nbsp;DAYS</P>\r\n\r\n<P>SYP RESWAS (5 ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB CORTISTA (6 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5&nbsp;DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 16:27:24','mo','2025-12-16 19:29:39'),(10544,0,0,4303,4189,6399,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 17:18:31','','0000-00-00 00:00:00'),(10545,0,0,4304,4190,6401,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---30 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 17:34:17','','0000-00-00 00:00:00'),(10546,0,0,4304,4190,6401,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of sense of imbalance ---difficulty in walking&thinsp;</p>\n\n<p>and getting out of bed&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 17:34:54','','0000-00-00 00:00:00'),(10547,0,0,4304,4190,6401,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus--rigtht beat</p>\n\n<p>hit--nad</p>\n\n<p>dix hallpike--nad</p>\n\n<p>MRI brain---no sol or cva</p>\n\n<p>Neurologist opinion taken--dr pratik pabani</p>\n\n<p>pta--wnl</p>\n\n<p>stabilomtry---reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 17:35:21','darshan','2025-12-16 18:52:25'),(10549,0,0,300,284,6400,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 17:43:38','darshan','2025-12-16 17:46:37'),(10551,0,0,300,284,6400,0,0,NULL,'','MADVICE','ZZZ','Remark','NEUROLOGIST OPINION TO R/O PARKINSONS DISEASE','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-16 17:46:37','','0000-00-00 00:00:00'),(10552,0,0,4302,4188,6398,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 17:50:23','darshan','2025-12-16 17:50:52'),(10553,0,0,4302,4188,6398,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 17:50:28','','0000-00-00 00:00:00'),(10554,0,0,4302,4188,6398,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit---nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 17:51:11','darshan','2025-12-16 19:04:30'),(10555,0,0,4302,4188,6398,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 17:51:21','','0000-00-00 00:00:00'),(10556,0,0,1500,1459,6403,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 17:58:17','','0000-00-00 00:00:00'),(10557,0,0,997,964,6409,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 18:01:13','','0000-00-00 00:00:00'),(10558,0,0,4306,4192,6405,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 YRS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 18:09:31','','0000-00-00 00:00:00'),(10559,0,0,4306,4192,6405,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 18:10:04','','0000-00-00 00:00:00'),(10560,0,0,4306,4192,6405,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain limited --nad</p>\n\n<p>pta--wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---central variety of nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 18:10:22','darshan','2025-12-16 20:00:27'),(10562,0,0,4306,4192,6405,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 18:10:27','','0000-00-00 00:00:00'),(10563,0,0,4312,4198,6416,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ELBOW PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-16 18:14:09','','0000-00-00 00:00:00'),(10564,0,0,4309,4195,6410,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurence of positional giddiness</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 18:14:18','','0000-00-00 00:00:00'),(10565,0,0,4307,4193,6407,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 18:17:54','','0000-00-00 00:00:00'),(10566,0,0,4307,4193,6407,0,0,NULL,'','CC','ZZZ','Remark','NECK PAIN----15 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 18:18:12','','0000-00-00 00:00:00'),(10567,0,0,4307,4193,6407,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---clear&thinsp;</p>\n\n<p>neck --nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 18:18:25','','0000-00-00 00:00:00'),(10568,0,0,4313,4199,6417,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-16 18:20:35','','0000-00-00 00:00:00'),(10569,0,0,4305,4191,6404,0,0,NULL,'','CC','ZZZ','Remark','C/O NUMBNESS BOTH LL||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 18:20:39','','0000-00-00 00:00:00'),(10570,0,0,4262,296,6334,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 10 DAYS</P>\r\n\r\n<P>BP MONITORING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 18:20:44','mo','2025-12-16 20:06:41'),(10571,0,0,884,852,6412,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 18:21:11','','0000-00-00 00:00:00'),(10572,0,0,4227,290,6262,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 18:23:25','mo','2025-12-17 14:24:38'),(10573,0,0,4261,4148,6333,0,0,NULL,'','DIAG','ZZZ','Remark','UTI','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-16 18:28:17','','0000-00-00 00:00:00'),(10574,0,0,4281,4167,6368,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE GASTRITIS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-16 18:28:39','','0000-00-00 00:00:00'),(10575,0,0,4291,4178,6381,0,0,NULL,'','DIAG','ZZZ','Remark','RT LOIN PAIN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-16 18:32:42','','0000-00-00 00:00:00'),(10576,0,0,4277,4163,6361,0,0,NULL,'','CC','ZZZ','Remark','C/O NUMBNESS BOTH UL AND LL | 3 MONTHS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 18:37:31','','0000-00-00 00:00:00'),(10577,0,0,4277,4163,6361,0,0,NULL,'','CC','ZZZ','Remark','C/O PAIN BOTH LOWER LIMB | 3 MONTHS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 18:37:31','','0000-00-00 00:00:00'),(10578,0,0,4277,4163,6361,0,0,NULL,'','CC','ZZZ','Remark','C/O UNSTADINESS OF GAIT | 2 MONTHS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 18:37:31','','0000-00-00 00:00:00'),(10579,0,0,4277,4163,6361,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 18:37:39','','0000-00-00 00:00:00'),(10580,0,0,4163,297,6346,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ICD CODE:</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 18:41:30','mo','2025-12-23 01:56:02'),(10581,0,0,4163,297,6346,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 18:41:30','mo','2025-12-23 01:56:02'),(10582,0,0,4163,297,6346,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 50 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: CA STOMACH<BR />\r\nH/O: OGDSCOPY WITH BIOPSY (08/12/2025)<BR />\r\nC/O: SEVERE VOMITING AFTER MEALS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DYSPEPSIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS SINCE 2 MONTHS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>MSCT SCAN OF ABDOMEN WITH PELVIS (28/11/2025)</P>\r\n\r\n<P>HPE CA STOMACH- ADENOCARCINOMA (08/12/2025)</P>\r\n\r\n<P>PLAIN HRCT THORAX (13/12/2025)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-78/MIN<BR />\r\nBP-110/60MMHG<BR />\r\nSPO2-99% ON RA<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.<BR />\r\nALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL SUPPLIMENT&nbsp;<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)</P>\r\n\r\n<P>2D ECHO DONE BY DR TUSHAR BHATTI REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>RYLES TUBE INSERTION&nbsp;WITH ALL ASEPTIC PRECAUTION AND RT ASPIRATION 4 HRLY START&nbsp;</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL SUPPLIMENT&nbsp;</P>\r\n\r\n<P>&nbsp; .........DONE BY DR PRATAPSINH DODIYA&nbsp; UNDER ANAESTHESIA WITH ALL ASEPTIC PRECAUTION<BR />\r\nPOST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>IN VIEW OF PERSISTENT VOMITING MD PHYSICIAN AND INTENSIVIST DR ARCHIT RATHOD&#39;S REFERACE DONE AND ALL HIS ADVICE FOLLOWED.</P>\r\n\r\n<P>HYPOKALEMIA CORRECTED WITH INJ KCL SUPPLIMENT.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>CT ABDOMEN ORAL CONTARST DONE ON 22/12/12, REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>RT REMOVED.</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 18:41:30','mo','2025-12-23 01:56:02'),(10583,0,0,4163,297,6346,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 18:41:30','mo','2025-12-23 01:56:02'),(10584,0,0,4163,297,6346,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 18:41:30','mo','2025-12-23 01:56:02'),(10585,0,0,4163,297,6346,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ TAZOMAC</P>\r\n\r\n<P>INJ METRO</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ KCL</P>\r\n\r\n<P>INJ DYNAPAR</P>\r\n\r\n<P>BUPRAGESIC PATCH&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 18:41:30','mo','2025-12-23 01:56:02'),(10586,0,0,4316,4202,6426,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 18:46:22','','0000-00-00 00:00:00'),(10587,0,0,4316,4202,6426,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right post canal bpv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 18:46:27','','0000-00-00 00:00:00'),(10588,0,0,4107,286,6166,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 18:46:40','mo','2025-12-17 14:27:19'),(10589,0,0,4316,4202,6426,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 18:46:50','','0000-00-00 00:00:00'),(10591,0,0,4316,4202,6426,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-16 18:47:29','','0000-00-00 00:00:00'),(10593,0,0,4314,4200,6420,0,0,NULL,'','CC','ZZZ','Remark','C/O EPIGASTRIC TENDERNESS  | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 18:58:48','','0000-00-00 00:00:00'),(10594,0,0,4314,4200,6420,0,0,NULL,'','CC','ZZZ','Remark','C/O NAUSEA | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 18:58:48','','0000-00-00 00:00:00'),(10596,0,0,4314,4200,6420,0,0,NULL,'','MADVICE','ZZZ','Remark','PLAN USG ABDOMEN','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-16 19:01:38','','0000-00-00 00:00:00'),(10597,0,0,4320,4206,6438,0,0,NULL,'','CC','ZZZ','Remark','URTI | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-16 19:04:53','','0000-00-00 00:00:00'),(10598,0,0,4320,4206,6438,0,0,NULL,'','CC','ZZZ','Remark','DOE | 2 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-16 19:04:53','','0000-00-00 00:00:00'),(10599,0,0,4302,4188,6398,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 19:05:09','','0000-00-00 00:00:00'),(10601,0,0,4320,4206,6438,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-16 19:06:19','','0000-00-00 00:00:00'),(10602,0,0,4320,4206,6438,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>RS- BILAT RHONCHI +</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-16 19:06:37','','0000-00-00 00:00:00'),(10603,0,0,2991,2914,6432,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--no imrpvment&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 19:09:20','','0000-00-00 00:00:00'),(10605,0,0,4304,4190,6401,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS SECOND NEUROLOGIST OPINION ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-16 19:11:51','','0000-00-00 00:00:00'),(10606,0,0,4323,4209,6442,0,0,NULL,'','CC','ZZZ','Remark','URTI | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-16 19:16:04','','0000-00-00 00:00:00'),(10607,0,0,4323,4209,6442,0,0,NULL,'','CC','ZZZ','Remark','DOE | 2 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-16 19:16:04','','0000-00-00 00:00:00'),(10609,0,0,4302,4188,6398,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-16 19:16:50','','0000-00-00 00:00:00'),(10610,0,0,4323,4209,6442,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>RS- BASAL CREPTS +</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-16 19:17:14','','0000-00-00 00:00:00'),(10611,0,0,4323,4209,6442,0,0,NULL,'','MADVICE','ZZZ','Remark','ADMISSION ADVISED ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-16 19:17:46','','0000-00-00 00:00:00'),(10612,0,0,3697,3599,6439,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 19:22:06','','0000-00-00 00:00:00'),(10613,0,0,4321,4207,6440,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 19:29:39','','0000-00-00 00:00:00'),(10614,0,0,4321,4207,6440,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of roatory feeling when pt is getting out of bed and lying down in bed&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 19:30:18','','0000-00-00 00:00:00'),(10615,0,0,4321,4207,6440,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--left hz canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 19:30:34','darshan','2025-12-16 20:13:58'),(10616,0,0,4321,4207,6440,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 19:30:40','','0000-00-00 00:00:00'),(10617,0,0,4322,4208,6441,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---medicine skipped</p>\n\n<p>&thinsp;recurence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 19:34:23','darshan','2025-12-16 19:36:42'),(10621,0,0,3920,3814,6435,0,0,NULL,'','MADVICE','ZZZ','Remark','PLAN - BILATERAL LOWER LIMB ARTERIAL DOPPLER','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-16 19:43:41','','0000-00-00 00:00:00'),(10622,0,0,4289,4176,6379,0,0,NULL,'','CC','ZZZ','Remark','C/O PAIN BILATERAL INGUINAL SWEELING||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-16 19:56:39','','0000-00-00 00:00:00'),(10625,0,0,4289,4176,6379,0,0,NULL,'','MADVICE','ZZZ','Remark','BILATERL INGUINAL HERNIOPLASTY','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-16 19:57:54','','0000-00-00 00:00:00'),(10626,0,0,4065,3957,6446,0,0,NULL,'','CC','ZZZ','Remark','URTI | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-16 20:01:33','','0000-00-00 00:00:00'),(10627,0,0,4324,4210,6444,0,0,NULL,'','CC','ZZZ','Remark','THROAT PAIN----4-5 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 20:03:04','','0000-00-00 00:00:00'),(10628,0,0,4324,4210,6444,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested and granular</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 20:03:16','','0000-00-00 00:00:00'),(10629,0,0,4262,296,6334,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO HEADACHE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 20:04:18','mo','2025-12-16 20:06:41'),(10630,0,0,4262,296,6334,0,0,NULL,'','TREATDISC_TI','','','<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp;FOR 10 DAYS</P>\r\n\r\n<P>TAB BISOBIS (5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 10 DAYS</P>\r\n\r\n<P>TAB CORTEL (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 10 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-16 20:06:39','mo','2025-12-16 20:06:41'),(10631,0,0,4321,4207,6440,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-16 20:14:16','','0000-00-00 00:00:00'),(10634,0,0,4321,4207,6440,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-16 20:22:52','','0000-00-00 00:00:00'),(10635,0,0,4332,4217,6464,0,0,NULL,'','CC','ZZZ','Remark','LT BREAST PAIN  | 1 DAYS|','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-17 10:56:58','','0000-00-00 00:00:00'),(10636,0,0,4332,4217,6464,0,0,NULL,'','CC','ZZZ','Remark','LT BREAST LUMP | 1 DAYS|','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-17 10:56:58','','0000-00-00 00:00:00'),(10637,0,0,4332,4217,6464,0,0,NULL,'','CC','ZZZ','Remark','DELAYED MENSTRUATION||','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-17 10:56:58','','0000-00-00 00:00:00'),(10638,0,0,4332,4217,6464,0,0,NULL,'','HIST','ZZZ','Remark','<p>h/o rt breast lump excision in past</p>\n','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-17 10:57:17','','0000-00-00 00:00:00'),(10639,0,0,4332,4217,6464,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>tender swelling in upper outer quadrant of lt breast</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-17 10:58:01','','0000-00-00 00:00:00'),(10640,0,0,3446,3350,6457,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 10:59:21','','0000-00-00 00:00:00'),(10642,0,0,3446,3350,6457,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVEUR','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:00:37','','0000-00-00 00:00:00'),(10643,0,0,1890,1844,6456,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:00:58','','0000-00-00 00:00:00'),(10644,0,0,4328,4213,6452,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:05:31','darshan','2025-12-17 11:07:51'),(10645,0,0,4328,4213,6452,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:07:10','','0000-00-00 00:00:00'),(10646,0,0,4328,4213,6452,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---reduced SS score</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:08:03','darshan','2025-12-17 12:32:34'),(10647,0,0,4328,4213,6452,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:08:08','','0000-00-00 00:00:00'),(10648,0,0,4330,4215,6459,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:11:53','','0000-00-00 00:00:00'),(10649,0,0,4330,4215,6459,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:12:13','','0000-00-00 00:00:00'),(10650,0,0,3161,3075,6460,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:14:55','','0000-00-00 00:00:00'),(10651,0,0,4331,4216,6463,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1.5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:25:11','','0000-00-00 00:00:00'),(10652,0,0,4331,4216,6463,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo--sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:25:11','darshan','2025-12-17 11:26:10'),(10653,0,0,4331,4216,6463,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR DEAFNESS AND TINNITUS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:25:31','','0000-00-00 00:00:00'),(10654,0,0,4331,4216,6463,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nasd</p>\n\n<p>hit--nad</p>\n\n<p>CT brain--nad</p>\n\n<p>pta--right severe sn deafness</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>CCG---AP displacement out of normal range</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:26:28','darshan','2025-12-17 12:45:25'),(10655,0,0,4331,4216,6463,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:26:39','','0000-00-00 00:00:00'),(10656,0,0,3292,3205,6458,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:29:47','','0000-00-00 00:00:00'),(10657,0,0,4329,4214,6453,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO--1 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:34:27','','0000-00-00 00:00:00'),(10658,0,0,4329,4214,6453,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:35:28','darshan','2025-12-17 11:36:42'),(10659,0,0,4329,4214,6453,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit---nad</p>\n\n<p>stabilometry----reduced vestibular score</p>\n\n<p>vng---right post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:37:00','darshan','2025-12-17 12:55:35'),(10660,0,0,4341,4226,6484,0,0,NULL,'','CC','ZZZ','Remark','PAIN IN ANUS  | 7 DAYS|','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-17 11:37:04','','0000-00-00 00:00:00'),(10661,0,0,4341,4226,6484,0,0,NULL,'','CC','ZZZ','Remark','CONSTIPATION | 1 YEARS|','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-17 11:37:04','','0000-00-00 00:00:00'),(10662,0,0,4341,4226,6484,0,0,NULL,'','CC','ZZZ','Remark','SOMETHING  COMING OUT PER RECT | 1 YEARS|','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-17 11:37:04','','0000-00-00 00:00:00'),(10663,0,0,4329,4214,6453,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:37:06','','0000-00-00 00:00:00'),(10664,0,0,4337,4222,6474,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT WRIST PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-17 11:37:09','','0000-00-00 00:00:00'),(10665,0,0,4341,4226,6484,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-17 11:37:09','','0000-00-00 00:00:00'),(10666,0,0,4337,4222,6474,0,0,NULL,'','DIAG','ZZZ','Remark','BOTH ANKLE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-17 11:37:15','','0000-00-00 00:00:00'),(10667,0,0,4334,4219,6468,0,0,NULL,'','CC','ZZZ','Remark','ITCHING ALL OVER BODY        | 20 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-17 11:37:57','','0000-00-00 00:00:00'),(10668,0,0,4334,4219,6468,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-17 11:38:22','','0000-00-00 00:00:00'),(10669,0,0,4341,4226,6484,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-17 11:40:34','','0000-00-00 00:00:00'),(10670,0,0,746,715,6473,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow u pase---medicine skipped&thinsp;</p>\n\n<p>recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:40:49','','0000-00-00 00:00:00'),(10671,0,0,2348,2291,6455,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better partially&thinsp;</p>\n\n<p>maenvuer not done properly</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:44:05','darshan','2025-12-17 11:45:13'),(10672,0,0,4285,4172,6421,0,0,NULL,'','CC','ZZZ','Remark','POSTED FOR VH -I REPAIR WITH SECROPEXY SOS||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-17 11:47:14','','0000-00-00 00:00:00'),(10673,0,0,4285,4172,6421,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO C/O CHEST PAIN&thinsp;</p>\n\n<p>NO OTHER COMPLAINT</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-17 11:47:30','','0000-00-00 00:00:00'),(10674,0,0,4285,4172,6421,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALY NAD</p>\n\n<p>ECG-NAD&thinsp;</p>\n\n<p>2D ECHO -EF - 64 %</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-17 11:48:25','','0000-00-00 00:00:00'),(10675,0,0,3177,3091,6462,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:48:40','','0000-00-00 00:00:00'),(10676,0,0,4285,4172,6421,0,0,NULL,'','PLAN','ZZZ','Remark','16','','',0,'0000-00-00 00:00:00','drarchit','2025-12-17 11:49:08','','0000-00-00 00:00:00'),(10679,0,0,4285,4172,6421,0,0,NULL,'','MADVICE','ZZZ','Remark','CONTINUE ALL DM AND CAD MEDICATION AS PER OLD PRESCRIPTION','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-17 11:50:17','','0000-00-00 00:00:00'),(10680,0,0,2925,2853,6465,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better for positional giddiness</p>\n\n<p>sense of imbalace</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:51:43','darshan','2025-12-17 11:52:26'),(10681,0,0,2588,2531,6479,0,0,NULL,'','CC','ZZZ','Remark','C/O GYNECOMASTIA||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-17 11:55:43','','0000-00-00 00:00:00'),(10683,0,0,2052,2001,6485,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 11:56:58','','0000-00-00 00:00:00'),(10684,0,0,2588,2531,6479,0,0,NULL,'','MADVICE','ZZZ','Remark','HOLD TORESIS PLUS DUE TO GYNECOMASTIA','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-17 11:57:13','','0000-00-00 00:00:00'),(10686,0,0,4333,4218,6466,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>rigth buccal mucosa apthous ulcer</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 12:01:19','darshan','2025-12-17 12:01:54'),(10687,0,0,4333,4218,6466,0,0,NULL,'','CC','ZZZ','Remark','RIGHT BUCCAL PAIN---10 D AYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 12:01:32','','0000-00-00 00:00:00'),(10688,0,0,4335,4220,6469,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----1.5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 12:06:40','','0000-00-00 00:00:00'),(10689,0,0,4335,4220,6469,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 12:07:29','darshan','2025-12-17 12:09:12'),(10690,0,0,4335,4220,6469,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---nad</p>\n\n<p>stabilemtery--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 12:09:32','darshan','2025-12-17 13:27:50'),(10691,0,0,4335,4220,6469,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 12:10:27','','0000-00-00 00:00:00'),(10692,0,0,4343,4228,6487,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 12:13:35','','0000-00-00 00:00:00'),(10693,0,0,4345,4230,6489,0,0,NULL,'','CC','ZZZ','Remark','MIDLINE CHEST PAIN SINCE LAST NIGHT||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-17 12:17:18','','0000-00-00 00:00:00'),(10694,0,0,4345,4230,6489,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-17 12:17:34','','0000-00-00 00:00:00'),(10695,0,0,4336,4221,6472,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 12:25:42','','0000-00-00 00:00:00'),(10696,0,0,4336,4221,6472,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset oif rotaotyr feeling when pt is getting out of bed and lying donw in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no&thinsp; associated other cns ymtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 12:26:14','','0000-00-00 00:00:00'),(10697,0,0,4336,4221,6472,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 12:26:23','darshan','2025-12-17 13:37:20'),(10699,0,0,4344,4229,6488,0,0,NULL,'','CC','ZZZ','Remark','URTI | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-17 12:27:35','','0000-00-00 00:00:00'),(10700,0,0,4344,4229,6488,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-17 12:27:48','','0000-00-00 00:00:00'),(10701,0,0,4328,4213,6452,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 12:33:10','','0000-00-00 00:00:00'),(10705,0,0,4227,290,6262,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>CLOSE REDUCTION TIBIA INTERLOCHING DONE BY DR SAGAR KHANPARA ON 16/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 12:35:16','mo','2025-12-17 14:24:38'),(10706,0,0,4334,4219,6468,0,0,NULL,'','MADVICE','ZZZ','Remark','SUGAR RESTRICTED DIET','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-17 12:36:46','','0000-00-00 00:00:00'),(10707,0,0,26,25,6475,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 12:36:57','','0000-00-00 00:00:00'),(10709,0,0,4328,4213,6452,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-17 12:49:28','','0000-00-00 00:00:00'),(10711,0,0,4347,4232,6495,0,0,NULL,'','MADVICE','ZZZ','Remark','ADVICE : ELECTROPHYSIOLOGICAL STUDY FOR RECURRENT SVT','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-17 12:52:45','','0000-00-00 00:00:00'),(10712,0,0,4124,277,6061,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 12:53:01','mo','2025-12-17 13:27:25'),(10713,0,0,4124,277,6061,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>WITH CBC, CRP, SGPT, SGOT</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 12:55:44','mo','2025-12-17 13:27:25'),(10714,0,0,4124,277,6061,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFICOOL CV (325 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>CAP PANTODAC DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB VITNEURIN CZS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB CALPOL (650 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp; &nbsp; FOR FEVER, HEADACHE...........(3 TAB)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 12:55:44','mo','2025-12-17 13:27:25'),(10715,0,0,4329,4214,6453,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 12:56:14','','0000-00-00 00:00:00'),(10717,0,0,3166,3080,6491,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 12:59:38','','0000-00-00 00:00:00'),(10718,0,0,4227,290,6262,0,0,NULL,'','OTNOTE','','','<p>-UNDER SPINAL ANAESTHESIA &amp; UNDER AAP PAINT &amp; DRAPE DONE FOR RIGHT LEG.</p>\r\n\r\n<p>-UNDER IITV RIGHT TIBIA SHAFT FRACTURE REDUCED &amp; FIXED WITH 9.00 X 320 MM SS TIBIA INTERLOCKING NAIL AND PROXIMAL (1) AND DISTAL (2) SCREW WASH GIVEN.</p>\r\n\r\n<p>-WOUND CLOSURE DONE.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 13:08:59','mo','2025-12-17 14:24:38'),(10719,0,0,4348,4233,6496,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 13:21:23','','0000-00-00 00:00:00'),(10720,0,0,4348,4233,6496,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 13:21:23','','0000-00-00 00:00:00'),(10722,0,0,4329,4214,6453,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-17 13:24:50','','0000-00-00 00:00:00'),(10723,0,0,4335,4220,6469,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 13:28:23','','0000-00-00 00:00:00'),(10727,0,0,3252,3166,6499,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 13:32:05','','0000-00-00 00:00:00'),(10728,0,0,3252,3166,6499,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 13:32:10','','0000-00-00 00:00:00'),(10730,0,0,3252,3166,6499,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT  BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-17 13:33:30','','0000-00-00 00:00:00'),(10731,0,0,4336,4221,6472,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 13:37:23','','0000-00-00 00:00:00'),(10732,0,0,4336,4221,6472,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 13:37:55','','0000-00-00 00:00:00'),(10734,0,0,3824,259,5521,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>INCISION AND DRAINGE DONE BY DR BANKIM THANKY(GENERAL SURGEON) UNDER GENERAL ANEASTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 13:40:58','mo','2025-12-17 14:03:03'),(10735,0,0,3824,259,5521,0,0,NULL,'','OTNOTE','','','<p>-RIGHT ISCHIO RECTAL PERIANAL ABSCES +</p>\r\n\r\n<p>-INCISION KEPT</p>\r\n\r\n<p>-WHOLE PUS (APPROX 400 ML) , SLOUGH AND UNHEALTHY GRANULATION TISSUE REMOVED</p>\r\n\r\n<p>-WHOLE CAVITY CLEANED WITH BETADINE, H2O2 AND SALINE</p>\r\n\r\n<p>-HEMOSTASIS ACHIEVED</p>\r\n\r\n<p>-WOUND KEPT OPENED</p>\r\n\r\n<p>-ROLLER GAUZE DRESSING KEPT</p>\r\n\r\n<p>-PUS CS SENT</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 13:40:58','mo','2025-12-17 14:03:03'),(10736,0,0,3824,259,5521,0,0,NULL,'','DISCCOND','','','<P>AFEBILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>CVP IN SITU (DAY 6)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 13:40:58','mo','2025-12-17 14:03:03'),(10738,0,0,4335,4220,6469,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-17 13:45:46','','0000-00-00 00:00:00'),(10739,0,0,3824,259,5521,0,0,NULL,'','TREATDISC_TI','','','<P>INJ LACTAGARD (1.5 GM/DIL)&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 9 AM-----9PM&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS (10 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CAP PANTODAC DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB SERADASE AP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB HYPONAT O (15 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB VITNEURIN CZS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB GIMMY M1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB DAPACOOL-S&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ECOTOR AS 10/75&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP PEGCLEAR&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--15 ML WITH WATER</P>\r\n\r\n<P>PROTIHIR POWDER(1TSF&nbsp;WITH MILK)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TDS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>THROMBOPHOB OINTMENT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; L/A</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>CONTINUE OWN MEDICINE:</STRONG></P>\r\n\r\n<P>TAB THYROX (75 MCG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BBF--0--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 13:48:48','mo','2025-12-17 14:03:03'),(10740,0,0,4350,4235,6502,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE --MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 13:53:14','','0000-00-00 00:00:00'),(10741,0,0,4350,4235,6502,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache --sudden onset any time and remains for few mins</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 13:54:09','darshan','2025-12-17 13:54:42'),(10742,0,0,4350,4235,6502,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>vemp--reduced amplitude</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 13:54:53','darshan','2025-12-17 14:26:27'),(10744,0,0,4350,4235,6502,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 13:55:00','','0000-00-00 00:00:00'),(10746,0,0,4336,4221,6472,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-17 13:58:09','','0000-00-00 00:00:00'),(10747,0,0,4227,290,6262,0,0,NULL,'','TREATDISC_TI','','','<P>TAB FUROLIV( 500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.....FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB TYROS(200MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.....FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>CAP ROXIZOL DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp;.......FOR 5 DAYS</P>\r\n\r\n<P>TAB CHYSON - T&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .....FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB BONEMEND&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB ACETLE SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......FOR 5 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 14:09:50','mo','2025-12-17 14:24:38'),(10748,0,0,4107,286,6166,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ROUNDCEFF(500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB TORNAC SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........FOR 5 DAYS</P>\r\n\r\n<P>TAB TAPAL ER&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........FOR 5 DAYS</P>\r\n\r\n<P>CAP TORAB D&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB BRATOS PT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:&nbsp;</P>\r\n\r\n<P>TAB THYRONORM 25MCG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 14:16:37','mo','2025-12-17 14:27:19'),(10749,0,0,4222,289,6254,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>DEBRIDEMENT DONE BY DR PRATAPSINH DODIYA ON 16/12/2025 UNDER REGIONAL ANKLE BLOCK WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 14:22:34','mo','2025-12-17 14:40:00'),(10750,0,0,4222,289,6254,0,0,NULL,'','OTNOTE','','','<p>-RIGHT FOOT NON HEALING ULCER (+) ON PLANTER ASPECT NEAR BASE OF GREAT TOE</p>\r\n\r\n<p>-PUS COLLECTION ALONG PLANTER TENDONS OF GREAT TOE</p>\r\n\r\n<p>-UNHEALTHY TISSUE EXCISED. PUS CS SENT</p>\r\n\r\n<p>-WOUND CLEAN WITH BETADINE &amp; H2O2.</p>\r\n\r\n<p>-HEMOSTASIS ACHIEVED</p>\r\n\r\n<p>-DRESSING KEPT</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 14:22:34','mo','2025-12-17 14:40:00'),(10751,0,0,4222,289,6254,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 14:22:34','mo','2025-12-17 14:40:00'),(10752,0,0,4222,289,6254,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 14:23:03','mo','2025-12-17 14:40:00'),(10755,0,0,4350,4235,6502,0,0,NULL,'','MADVICE','ZZZ','Remark','PSYCHIATRIST OPINION ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-17 14:31:38','','0000-00-00 00:00:00'),(10756,0,0,4222,289,6254,0,0,NULL,'','TREATDISC_TI','','','<P>INJ TAZOMAC (2.25 GM/100 NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;9AM-----9PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS (9 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB DALACIN-C (300 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp;FOR 5 DAYS (10 TAB)</P>\r\n\r\n<P>TAB RABERVA DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB CALPOL (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>CONTINUE OWN MEDICINE:</STRONG></P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB NICARDIA R (20 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1</P>\r\n\r\n<P>TAB NICORAN (5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1</P>\r\n\r\n<P>TAB ECOSPRIN GOLD (20 MG)&nbsp; &nbsp; &nbsp; &nbsp; 0--0--1</P>\r\n\r\n<P>TAB ISOLAZINE (20 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1</P>\r\n\r\n<P>TAB SOBIOSIS FORTE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1</P>\r\n\r\n<P>TAB RAPTROL-C(500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0</P>\r\n\r\n<P>TAB NEXIRON LP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0</P>\r\n\r\n<P>TAB THYRONORM (50 + 12.5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 14:39:54','mo','2025-12-17 14:40:00'),(10757,0,0,4325,300,6448,0,0,NULL,'','DISCDIAG','','','<P><STRONG>SEVERE HYPO NATREMIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>(?)( DRUG INDUCE &nbsp;ETIZOLAM &AMP; CHLORTHALIDONE,</STRONG></P>\r\n\r\n<P><STRONG>&nbsp;HYPOTENSION )</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 15:48:07','mo','2025-12-17 19:26:22'),(10758,0,0,4325,300,6448,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-17 15:48:07','mo','2025-12-17 19:26:22'),(10759,0,0,4325,300,6448,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 78 YEARS OLD &nbsp;PATIENT PRESENTED IN EMERGENCY DEPARTMENT AT 9:00 PM&nbsp;&nbsp;WITH,<BR />\r\nK/C/O: HYPERTENSION&nbsp;<BR />\r\nH/O:B/L CATARACT<BR />\r\nC/O: ALTERED SENSORIUM</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; IRRITABLE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; HEADACHE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA SINCE 24 HOURS</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-85/MIN<BR />\r\nBP-120/78MMHG<BR />\r\nSPO2-97% ON RA<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS- ALTERED SENSORIUM&nbsp;<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 15:51:45','mo','2025-12-17 19:26:22'),(10760,0,0,4325,300,6448,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER&nbsp; 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 15:52:58','mo','2025-12-17 19:26:22'),(10761,0,0,4325,300,6448,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ PANTODAC</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ NS 3%</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 15:54:12','mo','2025-12-17 19:26:22'),(10762,0,0,1520,1479,6511,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 17:17:40','','0000-00-00 00:00:00'),(10763,0,0,4351,4236,6506,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 17:21:40','','0000-00-00 00:00:00'),(10764,0,0,996,963,6507,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 17:29:52','','0000-00-00 00:00:00'),(10765,0,0,1685,1640,6509,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 17:30:06','','0000-00-00 00:00:00'),(10766,0,0,342,326,6512,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 17:30:28','','0000-00-00 00:00:00'),(10767,0,0,776,745,6513,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 17:34:11','','0000-00-00 00:00:00'),(10768,0,0,3419,3327,6508,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up caes--heaviness of head</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 17:41:55','darshan','2025-12-17 17:47:19'),(10769,0,0,4352,4237,6510,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 17:42:10','darshan','2025-12-17 18:11:47'),(10770,0,0,920,888,6514,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 17:43:36','','0000-00-00 00:00:00'),(10771,0,0,4358,4243,6521,0,0,NULL,'','HIST','ZZZ','Remark','<p>`episodic vertigo -sudden onset any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>frequent headache previously</p>\n\n<p>no associated other cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 18:05:41','darshan','2025-12-17 18:08:31'),(10772,0,0,4358,4243,6521,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---7-8 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 18:07:38','','0000-00-00 00:00:00'),(10773,0,0,4358,4243,6521,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilomtry---wnl</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 18:08:44','darshan','2025-12-17 19:09:23'),(10775,0,0,4352,4237,6510,0,0,NULL,'','CC','ZZZ','Remark','LEFT SIDE BURNING SENSATION ---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 18:12:18','','0000-00-00 00:00:00'),(10776,0,0,4352,4237,6510,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left lateral border of tongue----leukoplakia</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 18:13:12','','0000-00-00 00:00:00'),(10777,0,0,4355,4240,6517,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--heaviness of head with headache +</p>\n\n<p>no associated other cns symtpso m</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 18:17:41','darshan','2025-12-17 18:18:13'),(10778,0,0,4355,4240,6517,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>CCG--wnl</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 18:18:29','darshan','2025-12-17 19:20:34'),(10779,0,0,4355,4240,6517,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 18:18:30','','0000-00-00 00:00:00'),(10780,0,0,2844,2775,6524,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ---medicine irregular</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 18:20:58','','0000-00-00 00:00:00'),(10781,0,0,4354,4239,6516,0,0,NULL,'','CC','ZZZ','Remark','LT UL PAIN | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-17 18:21:05','','0000-00-00 00:00:00'),(10782,0,0,4354,4239,6516,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-17 18:21:22','','0000-00-00 00:00:00'),(10783,0,0,4365,4250,6532,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-17 18:28:50','','0000-00-00 00:00:00'),(10784,0,0,4365,4250,6532,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-17 18:29:06','drjayant','2025-12-17 18:29:27'),(10785,0,0,4360,4245,6526,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 18:33:21','','0000-00-00 00:00:00'),(10786,0,0,4360,4245,6526,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed&thinsp; or walk he feels imbalance sense&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 18:33:52','darshan','2025-12-17 19:35:34'),(10787,0,0,4360,4245,6526,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>ct brain---nad</p>\n\n<p>pta--left moderate sn deafness&thinsp;</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 18:34:01','darshan','2025-12-17 19:36:40'),(10792,0,0,4368,4253,6536,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 18:39:01','','0000-00-00 00:00:00'),(10793,0,0,4368,4253,6536,0,0,NULL,'','CC','ZZZ','Remark','THRAOT PAIN WITH IRRITATION----3-4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 18:39:13','','0000-00-00 00:00:00'),(10794,0,0,4368,4253,6536,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 18:39:22','','0000-00-00 00:00:00'),(10795,0,0,4341,4226,6484,0,0,NULL,'','DIAG','ZZZ','Remark','EXTERNAL HEMORRHOIDS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-17 18:44:26','','0000-00-00 00:00:00'),(10796,0,0,4361,4246,6527,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo and headache&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 18:45:42','','0000-00-00 00:00:00'),(10797,0,0,1857,1811,6523,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurence of vertigo&thinsp;</p>\n\n<p>sudden fall down with LOC</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 18:50:31','','0000-00-00 00:00:00'),(10798,0,0,2641,2580,6537,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better partaily</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 18:53:52','','0000-00-00 00:00:00'),(10799,0,0,4110,4003,6550,0,0,NULL,'','CC','ZZZ','Remark','URTI | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-17 18:54:52','drjayant','2025-12-17 18:55:27'),(10800,0,0,4362,4247,6528,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudne onset of short duration positioanl giddiness</p>\n\n<p>heaviness with headache +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 19:02:26','darshan','2025-12-17 19:05:07'),(10801,0,0,4362,4247,6528,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 19:04:37','','0000-00-00 00:00:00'),(10802,0,0,4362,4247,6528,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 19:05:24','','0000-00-00 00:00:00'),(10803,0,0,4362,4247,6528,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE -MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 19:06:06','','0000-00-00 00:00:00'),(10805,0,0,4362,4247,6528,0,0,NULL,'','MADVICE','ZZZ','Remark','VESTIBULAR IX ---PT WILL COME  LATER ON','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-17 19:06:47','','0000-00-00 00:00:00'),(10806,0,0,4366,4251,6533,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 19:14:43','','0000-00-00 00:00:00'),(10807,0,0,4366,4251,6533,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 19:14:46','','0000-00-00 00:00:00'),(10808,0,0,4325,300,6448,0,0,NULL,'','TREATDISC_TI','','','<P>TAB.TOLVAPTAN(15)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;5 DAYS&nbsp; &nbsp; &nbsp; AFTER FOOD</P>\r\n\r\n<P>TAB.NEXPRO FAST&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;5 DAYS&nbsp; &nbsp; &nbsp;AFTER FOOD</P>\r\n\r\n<P>TAB.BISOWIN-T (40/5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;5 DAYS&nbsp; &nbsp; &nbsp;AFTER&nbsp; FOOD</P>\r\n\r\n<P>&nbsp; &nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICATION</P>\r\n\r\n<P>CAP. ECOSPRIN (75)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0-0-1</P>\r\n\r\n<P>TAB.CLONOTRIL(0.5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-0-1&nbsp;&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 19:15:45','mo','2025-12-17 19:26:22'),(10810,0,0,4354,4239,6516,0,0,NULL,'','MADVICE','ZZZ','Remark','INJ LANTUS TO CONTINUE ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-17 19:22:54','','0000-00-00 00:00:00'),(10811,0,0,4372,4257,6545,0,0,NULL,'','CC','ZZZ','Remark','H/O BURNING ALL OVER BODY | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-17 19:26:26','','0000-00-00 00:00:00'),(10812,0,0,4380,4265,6569,0,0,NULL,'','CC','ZZZ','Remark','ROTATORY FEELINGS, NAUSEA SINCE FEW HRS||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-17 19:33:26','','0000-00-00 00:00:00'),(10813,0,0,4380,4265,6569,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-17 19:33:30','drjayant','2025-12-17 19:33:47'),(10814,0,0,4373,4258,6546,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----throat pain with burning sensation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 19:42:33','','0000-00-00 00:00:00'),(10815,0,0,4373,4258,6546,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested&thinsp;</p>\n\n<p>nose---clear</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 19:42:47','','0000-00-00 00:00:00'),(10817,0,0,4377,4262,6560,0,0,NULL,'','MADVICE','ZZZ','Remark','HBA1C, S TSH','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-17 19:53:53','','0000-00-00 00:00:00'),(10818,0,0,1538,1497,6549,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 19:55:08','darshan','2025-12-17 19:55:17'),(10819,0,0,4381,4266,6571,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-17 19:55:15','','0000-00-00 00:00:00'),(10820,0,0,971,940,6566,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-17 19:57:50','','0000-00-00 00:00:00'),(10821,0,0,4382,4267,6572,0,0,NULL,'','CC','ZZZ','Remark','URTI | 10 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-17 20:02:30','','0000-00-00 00:00:00'),(10822,0,0,4382,4267,6572,0,0,NULL,'','HIST','ZZZ','Remark','<p>CXR-WNL</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-17 20:02:45','','0000-00-00 00:00:00'),(10823,0,0,4320,301,6461,0,0,NULL,'','DISCDIAG','','','<P><STRONG>LOWER RESPIRATORY TRACT INFECTION&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 22:30:14','mo','2025-12-20 13:08:55'),(10824,0,0,4320,301,6461,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-17 22:30:14','mo','2025-12-20 13:08:55'),(10825,0,0,4320,301,6461,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 42 YEARS OLD&nbsp; MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:COUGH AND COLD WITHOUT EXPECTORATION SINCE 6-7 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DOE SINCE 5 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;FEVERISHNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;CHEST PAIN SINCE YESTERDAY</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>CHEST X-RAY DONE ON 16/12/2025 REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-78/MIN<BR />\r\nBP-136/90MMHG<BR />\r\nSPO2-98% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+ B/L RHONCHII ++<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF CHEST PAIN ECG DONE WHICH S/O: ? ISCHEMIC CHANGES SO TROP I SENT WHICH WAS NEGATIVE&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18/12/25,</P>\r\n\r\n<P>INFLUENZA PENAL SENT, WHICH WAS NEGATIVE.</P>\r\n\r\n<P>2D ECHO DONE WHICH S/O LVEF:60%, OTHER FINDINGS ARE ACCORDING TO REPORT.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDTION OBSERVED IN WARD AND SAME TREATMENT CONTINUED.<BR />\r\n&nbsp;</P>\r\n\r\n<P>19/12/25,</P>\r\n\r\n<P>PLAIN CT SCAN OF CHEST DONE WHICH S/O;</P>\r\n\r\n<P>-SUBTLE DIFFUSE GROUNDGLASS HAZINESS IN BILATERAL LUNG FIELD</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVES.</P>\r\n\r\n<P>PULMONOLOGIST DR YAGNESH PUROHIT&#39;S REFERANCE DONE AND ALL HIS ADVICE FOLLOWED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20/12/25,</P>\r\n\r\n<P>WALK TEST DONE NO ANY FRESH COMPLAIN&nbsp;<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 22:30:14','mo','2025-12-20 13:08:55'),(10826,0,0,4320,301,6461,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ CEFCON</P>\r\n\r\n<P>CAP FLUVIR</P>\r\n\r\n<P>TAB EZITHRO</P>\r\n\r\n<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>NEB IPRAPHAGE L</P>\r\n\r\n<P>NEB BUDAPHAGE&nbsp;</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 22:30:14','mo','2025-12-20 13:08:55'),(10827,0,0,4323,299,6447,0,0,NULL,'','DISCDIAG','','','<P><STRONG>COMMUNITY ACQUIRED PNEUMONIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN,? BRONCHIAL ASTHMA</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 22:37:41','mo','2025-12-19 19:26:31'),(10828,0,0,4323,299,6447,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-17 22:37:41','mo','2025-12-19 19:26:31'),(10829,0,0,4323,299,6447,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 85YEARS OLD&nbsp; FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN,? BRONCHIAL ASTHMA<BR />\r\nC/O:BREATHLESSNESS&nbsp; SINCE 3-4 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; COUGH AND COLD SINCE 5 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; NO FEVER,VOMITING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>CHEST X-RAY DONE ON 16/12/2025 REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-102/MIN<BR />\r\nBP-130/80MMHG<BR />\r\nSPO2-97% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 22:37:41','mo','2025-12-19 19:26:31'),(10830,0,0,4323,299,6447,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ ECOTAZ</P>\r\n\r\n<P>TAB EZITHRO</P>\r\n\r\n<P>INJ RABICROSS</P>\r\n\r\n<P>INJ QUICKSET</P>\r\n\r\n<P>NEB IPRAPHAGE L</P>\r\n\r\n<P>NEB BUDAPHAGE</P>\r\n\r\n<P>TAB ZEPTAS</P>\r\n\r\n<P>INJ VITNEURIN</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 22:37:41','mo','2025-12-19 19:26:31'),(10831,0,0,4384,302,6576,0,0,NULL,'','DISCDIAG','','','<P><STRONG>COMMUNITY ACQUIRED PNEUMONIA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>SEPSIS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>ACUTE RESPIRATORY FAILURE&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM II,HYPOTHYROIDISM (DRUG DEFAULTER),MORBID OBESITY&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 22:42:53','mo','2025-12-20 13:03:52'),(10832,0,0,4384,302,6576,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST MEDICAL HISTORY-&nbsp;DM II,HYPOTHYROIDISM (DRUG DEFAULTER),MORBID OBESITY&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 22:42:53','mo','2025-12-20 13:03:52'),(10833,0,0,4384,302,6576,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 48 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM II,HYPOTHYROIDISM (DRUG DEFAULTER),MORBID OBESITY&nbsp;<BR />\r\nC/O:FEVER WITH RIGOR BEFORE 3-4 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;COUGH AND COLD SINCE 5-7 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;DOE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;BLURRED&nbsp;OF VISION SINCE 2-3 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ANOREXIA</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTSPATIENTR PRIMARY CONSULTED TO GENERAL PHYSICIAN AND&nbsp;&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>CHEST X-RAY DONE ON 17/12/2025 REPORT ATTACHED WITH FILE</P>\r\n\r\n<P>URINE R/M DONE ON 17/12/2025 WHICH S.O: 15-20 PUS CELL&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-103/MIN<BR />\r\nBP-128/80MMHG<BR />\r\nSPO2-97% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17/1/2025</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18/12/2025</P>\r\n\r\n<P>PATIENT DEVELOP DESATURATED AND BEING TACHYPNOIC&nbsp;SO OXYGEN SUPPORT STARTED WITH NASAL CANULA AND PATIENT&#39;S CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19/12/2025</P>\r\n\r\n<P>WITH NASAL CANNULA&nbsp; PATIENT NOT MAINTAN&nbsp;OXYGEN LEVEL AND BEING TACHYPNOIC SO NRBM SUPPORT GIVEN</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVES.</P>\r\n\r\n<P>TREATMENT MODIFIED&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20/12/2025</P>\r\n\r\n<P>PATIENT ON NRBM MASK 4 LIT O2 SUPPORT CONTINUE<BR />\r\nPATIENT GENERAL CONDITION AND PROGNOSIS EXPLAIN TO PATIENT RELATIVE BUT THEY WANT DISCHARGE AGAINST MEDICLE ADVICE SO NOW PATIENT BEING DAMA&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 22:42:53','mo','2025-12-20 13:03:52'),(10834,0,0,4384,302,6576,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ ECOTAZ 4.5GM / 100ML NS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; FOR 3 DAYS&nbsp;</P>\r\n\r\n<P>INJ GUFIMER(MEROPENEM) 1GM/100ML NS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; TDS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; DAY-2</P>\r\n\r\n<P>TAB EZITHRO&nbsp; &nbsp;500MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; DAY&nbsp; 4/5</P>\r\n\r\n<P>CAP FLUVIR&nbsp; 75MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DAY 4/5</P>\r\n\r\n<P>INJ RABICROSS 20 MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BD&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>INJ QUICKSET&nbsp; &nbsp;1A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TDS</P>\r\n\r\n<P>NEB IPRAPHAGE L&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P/N&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TDS</P>\r\n\r\n<P>NEB BUDAPHAGE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;P/N&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BD</P>\r\n\r\n<P>TAB.CALPOL&nbsp; &nbsp; &nbsp;650MG&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS&nbsp; &nbsp; &nbsp;FOR FEVER</P>\r\n\r\n<P>INJ VITNEURIN</P>\r\n\r\n<P>INJ VOSIMOL&nbsp;</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-17 22:42:53','mo','2025-12-20 13:03:52'),(10835,0,0,3363,3274,6583,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-- partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 10:43:32','','0000-00-00 00:00:00'),(10838,0,0,3363,3274,6583,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MANEUVER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-18 10:45:06','','0000-00-00 00:00:00'),(10839,0,0,3796,3691,6584,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better partialy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 10:50:16','','0000-00-00 00:00:00'),(10840,0,0,3796,3691,6584,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 10:50:43','','0000-00-00 00:00:00'),(10842,0,0,3796,3691,6584,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-18 10:51:00','','0000-00-00 00:00:00'),(10843,0,0,3296,3209,6586,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 10:56:47','','0000-00-00 00:00:00'),(10845,0,0,4397,4282,6598,0,0,NULL,'','MADVICE','ZZZ','Remark','ENT REFFERNCE FOR RECUREENT ORAL ULCER','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-18 10:57:43','','0000-00-00 00:00:00'),(10846,0,0,4388,4273,6580,0,0,NULL,'','CC','ZZZ','Remark','SENSE OF IMBALANCE --2-3 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:03:17','','0000-00-00 00:00:00'),(10847,0,0,4388,4273,6580,0,0,NULL,'','HIST','ZZZ','Remark','<p>when pt seats without supports he feels imbalance sense&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:04:06','','0000-00-00 00:00:00'),(10848,0,0,4388,4273,6580,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:04:19','darshan','2025-12-18 12:23:27'),(10852,0,0,3311,3225,6582,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better partially&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:07:59','','0000-00-00 00:00:00'),(10853,0,0,331,315,6585,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:11:27','','0000-00-00 00:00:00'),(10854,0,0,4391,4276,6589,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO ------FEW WEEKS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:16:25','','0000-00-00 00:00:00'),(10855,0,0,4391,4276,6589,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:16:25','','0000-00-00 00:00:00'),(10856,0,0,4391,4276,6589,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo with headache remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:16:55','','0000-00-00 00:00:00'),(10857,0,0,4391,4276,6589,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--central variety of nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:17:10','darshan','2025-12-18 12:32:13'),(10859,0,0,4391,4276,6589,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:17:17','','0000-00-00 00:00:00'),(10860,0,0,3840,3737,6587,0,0,NULL,'','HIST','ZZZ','Remark','<p>fofllow up case---mild positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:19:55','','0000-00-00 00:00:00'),(10861,0,0,3840,3737,6587,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:20:01','','0000-00-00 00:00:00'),(10863,0,0,3840,3737,6587,0,0,NULL,'','MADVICE','ZZZ','Remark','VESTIBULAR IX ---SOS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:20:58','','0000-00-00 00:00:00'),(10864,0,0,4393,4278,6591,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:23:12','','0000-00-00 00:00:00'),(10865,0,0,4403,4288,6609,0,0,NULL,'','CC','ZZZ','Remark','MILD WEAKNESS +||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-18 11:25:33','','0000-00-00 00:00:00'),(10866,0,0,1414,1373,6593,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:26:29','','0000-00-00 00:00:00'),(10867,0,0,1835,1790,6602,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better partially&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:30:27','','0000-00-00 00:00:00'),(10868,0,0,1835,1790,6602,0,0,NULL,'','DIAG','ZZZ','Remark','VESTIBULOTOXICITY','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:30:50','','0000-00-00 00:00:00'),(10869,0,0,4400,4285,6601,0,0,NULL,'','CC','ZZZ','Remark','RECURRENCE ORAL ULCER ---FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:37:36','','0000-00-00 00:00:00'),(10870,0,0,4400,4285,6601,0,0,NULL,'','CC','ZZZ','Remark','REDUCED MOUTH OPENING||','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:37:36','','0000-00-00 00:00:00'),(10871,0,0,4400,4285,6601,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset&thinsp; of rotaotyr feeling on change of posture</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:37:38','darshan','2025-12-18 12:09:47'),(10872,0,0,4400,4285,6601,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--leftposty canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:38:02','darshan','2025-12-18 13:17:32'),(10873,0,0,4401,4286,6606,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:44:09','','0000-00-00 00:00:00'),(10874,0,0,4401,4286,6606,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:46:11','darshan','2025-12-18 13:03:48'),(10875,0,0,4401,4286,6606,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:46:26','darshan','2025-12-18 13:04:23'),(10876,0,0,4401,4286,6606,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:46:39','','0000-00-00 00:00:00'),(10877,0,0,4399,4284,6600,0,0,NULL,'','CC','ZZZ','Remark','RECURRENT ORAL ULCERATION---FEW MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:47:56','','0000-00-00 00:00:00'),(10878,0,0,4399,4284,6600,0,0,NULL,'','CC','ZZZ','Remark','REDUCED MOUTH OPENING||','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:47:56','','0000-00-00 00:00:00'),(10879,0,0,4399,4284,6600,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:48:04','','0000-00-00 00:00:00'),(10880,0,0,4399,4284,6600,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>severe OSMF</p>\n\n<p>extensive leukoplakia</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:48:18','','0000-00-00 00:00:00'),(10881,0,0,3165,3079,6608,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 11:52:41','darshan','2025-12-18 11:54:12'),(10882,0,0,4400,4285,6601,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 12:10:07','','0000-00-00 00:00:00'),(10883,0,0,3240,3154,6611,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>occassional giddiness +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 12:12:12','','0000-00-00 00:00:00'),(10885,0,0,3240,3154,6611,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVEUR---10 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-18 12:13:14','','0000-00-00 00:00:00'),(10886,0,0,4396,4281,6595,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---both ear deafness and tinnitus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 12:16:23','','0000-00-00 00:00:00'),(10887,0,0,3420,3328,6618,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 12:18:49','','0000-00-00 00:00:00'),(10888,0,0,3420,3328,6618,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 12:19:22','','0000-00-00 00:00:00'),(10890,0,0,3420,3328,6618,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-18 12:19:35','','0000-00-00 00:00:00'),(10891,0,0,4409,4293,6619,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT FOOT PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-18 12:26:24','','0000-00-00 00:00:00'),(10892,0,0,3221,3135,6622,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 12:28:12','','0000-00-00 00:00:00'),(10893,0,0,4139,4032,6624,0,0,NULL,'','HIST','ZZZ','Remark','<p>both ear wax removed</p>\n\n<p>BTM----i/n</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 12:40:37','','0000-00-00 00:00:00'),(10894,0,0,4416,4301,6633,0,0,NULL,'','MADVICE','ZZZ','Remark','PHLEBOTOMY','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-18 12:43:03','','0000-00-00 00:00:00'),(10895,0,0,3863,4302,6634,0,0,NULL,'','HIST','ZZZ','Remark','<p>F&#39;UP CAP</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-18 12:49:01','','0000-00-00 00:00:00'),(10896,0,0,3863,4302,6634,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-18 12:49:14','','0000-00-00 00:00:00'),(10897,0,0,4410,4294,6620,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo ----2-3 days&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 12:59:45','','0000-00-00 00:00:00'),(10898,0,0,4410,4294,6620,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>rigth psot canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 12:59:52','','0000-00-00 00:00:00'),(10899,0,0,4410,4294,6620,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 13:00:19','','0000-00-00 00:00:00'),(10901,0,0,4410,4294,6620,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-18 13:00:55','','0000-00-00 00:00:00'),(10902,0,0,4401,4286,6606,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 13:04:44','','0000-00-00 00:00:00'),(10904,0,0,4396,4281,6595,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Pta---rigth very severe sn deafness</p>\n\n<p>&thinsp; &thinsp; &thinsp; &thinsp; &thinsp;left high freq severe sn deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 13:10:50','','0000-00-00 00:00:00'),(10908,0,0,4396,4281,6595,0,0,NULL,'','MADVICE','ZZZ','Remark','HAT','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-18 13:11:26','','0000-00-00 00:00:00'),(10909,0,0,1835,1790,6602,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>vhit---better than previous</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 13:12:46','','0000-00-00 00:00:00'),(10910,0,0,4400,4285,6601,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 13:17:53','','0000-00-00 00:00:00'),(10912,0,0,4417,4303,6635,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 13:19:46','','0000-00-00 00:00:00'),(10914,0,0,4401,4286,6606,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUR ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-18 13:20:35','','0000-00-00 00:00:00'),(10915,0,0,1698,1653,6636,0,0,NULL,'','HIST','ZZZ','Remark','<p>foflfow up case---sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 13:25:02','','0000-00-00 00:00:00'),(10917,0,0,4400,4285,6601,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-18 13:27:23','','0000-00-00 00:00:00'),(10918,0,0,4420,4306,6639,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR DEAFNESS FEELING ---FEW YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 17:06:15','','0000-00-00 00:00:00'),(10919,0,0,4420,4306,6639,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR ITCHING ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 17:06:15','','0000-00-00 00:00:00'),(10920,0,0,4420,4306,6639,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm----moderate central perforation wet</p>\n\n<p>PTA----bilatler modeate conductive deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 17:06:30','darshan','2025-12-18 17:58:47'),(10921,0,0,4422,4308,6641,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS-----1 YRS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 17:17:29','','0000-00-00 00:00:00'),(10922,0,0,4422,4308,6641,0,0,NULL,'','HIST','ZZZ','Remark','<p>sense of imbalance with mild rotaotyr feeling with&thinsp; mild deafness feeling&thinsp;</p>\n\n<p>heavines of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 17:18:18','darshan','2025-12-18 18:20:32'),(10923,0,0,4422,4308,6641,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain---nad</p>\n\n<p>pta---bilateral high freqe moderate sn deafness</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>CCG--AP displacement out of N range</p>\n\n<p>VNg--right post canal bppv with bilateral vestibulopathy</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 17:18:44','darshan','2025-12-18 18:22:09'),(10924,0,0,4421,4307,6640,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurernce of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 17:25:55','','0000-00-00 00:00:00'),(10925,0,0,4421,4307,6640,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 17:26:29','','0000-00-00 00:00:00'),(10927,0,0,4421,4307,6640,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-18 17:26:43','','0000-00-00 00:00:00'),(10928,0,0,3842,3739,6644,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---beter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 17:32:29','','0000-00-00 00:00:00'),(10930,0,0,3842,3739,6644,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-18 17:33:25','','0000-00-00 00:00:00'),(10931,0,0,2689,2623,6642,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 17:35:54','','0000-00-00 00:00:00'),(10932,0,0,3787,3682,6643,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---rigth ear pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 17:42:00','','0000-00-00 00:00:00'),(10934,0,0,4408,4292,6617,0,0,NULL,'','DIAG','ZZZ','Remark','RT FOOT RAW AREA','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-18 17:49:24','','0000-00-00 00:00:00'),(10935,0,0,4423,4309,6646,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotoatyr feeling when pt is getting out of bed and lyign down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 17:51:43','darshan','2025-12-18 17:54:08'),(10936,0,0,4423,4309,6646,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----4 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 17:51:53','','0000-00-00 00:00:00'),(10937,0,0,4423,4309,6646,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng--right psot canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 17:54:19','darshan','2025-12-18 19:01:06'),(10938,0,0,4423,4309,6646,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 17:54:28','','0000-00-00 00:00:00'),(10939,0,0,2649,2589,6648,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 17:56:22','','0000-00-00 00:00:00'),(10940,0,0,4425,4311,6653,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 18:02:57','','0000-00-00 00:00:00'),(10941,0,0,915,883,6650,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 18:05:57','','0000-00-00 00:00:00'),(10942,0,0,4419,4305,6638,0,0,NULL,'','DIAG','ZZZ','Remark','ACUTE GASTRITIS','','',0,'0000-00-00 00:00:00','drjayant','2025-12-18 18:09:45','','0000-00-00 00:00:00'),(10943,0,0,4427,4313,6656,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----1.5 MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 18:14:17','','0000-00-00 00:00:00'),(10944,0,0,4427,4313,6656,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden of rotoatyr feeling remains for few mins&thinsp;</p>\n\n<p>Right ear deafness and tinnitus +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 18:14:59','','0000-00-00 00:00:00'),(10945,0,0,4427,4313,6656,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix halllpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---right high frq severe sn deafness</p>\n\n<p>stabilometyr---reduced vestibular score</p>\n\n<p>vng--right hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 18:15:12','darshan','2025-12-18 19:17:54'),(10947,0,0,4431,4317,6662,0,0,NULL,'','DIAG','ZZZ','Remark','SEBACEOUS CYST ON SCALP','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-18 18:16:32','','0000-00-00 00:00:00'),(10948,0,0,4415,4300,6632,0,0,NULL,'','DIAG','ZZZ','Remark','INGROWING TOE NAIL','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-18 18:17:20','','0000-00-00 00:00:00'),(10949,0,0,3345,4319,6665,0,0,NULL,'','HIST','ZZZ','Remark','<p>UNDER TX OF HEMATOLOGIST FOR BICYTOPENIA</p>\n\n<p>ON STEROID</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-18 18:17:30','drjayant','2025-12-18 18:19:10'),(10950,0,0,3345,4319,6665,0,0,NULL,'','CC','ZZZ','Remark','BETTER||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-18 18:17:33','','0000-00-00 00:00:00'),(10953,0,0,4422,4308,6641,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV WITH BILATERAL VESTIBULOPATHY','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 18:22:21','','0000-00-00 00:00:00'),(10954,0,0,4422,4308,6641,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 18:23:11','','0000-00-00 00:00:00'),(10956,0,0,3345,4319,6665,0,0,NULL,'','MADVICE','ZZZ','Remark','CT OWN NOVOMAX 40-0-30 U\nRBS MONITORING ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-18 18:25:19','','0000-00-00 00:00:00'),(10957,0,0,4429,4315,6659,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----2 WEEKS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 18:29:48','','0000-00-00 00:00:00'),(10958,0,0,4429,4315,6659,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotoatyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>freqeunt headache with trigeminal neuralgia</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 18:30:30','','0000-00-00 00:00:00'),(10959,0,0,4429,4315,6659,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 18:30:45','darshan','2025-12-18 19:34:58'),(10961,0,0,4428,4314,6658,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 18:35:02','','0000-00-00 00:00:00'),(10963,0,0,4422,4308,6641,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER \nVESTIBULAR ADAPTATION EXCERCISE','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-18 18:38:04','','0000-00-00 00:00:00'),(10965,0,0,4411,4296,6626,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT HAND PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-18 18:46:22','','0000-00-00 00:00:00'),(10966,0,0,4426,4312,6655,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT SHOULDER PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-18 18:47:16','','0000-00-00 00:00:00'),(10967,0,0,4440,4327,6676,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR PAIN---20 DAYS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 18:49:08','','0000-00-00 00:00:00'),(10968,0,0,4441,4328,6678,0,0,NULL,'','CC','ZZZ','Remark','C/O DIZZINESS  | 15 DAYS | ON AND OFF','','',0,'0000-00-00 00:00:00','drarchit','2025-12-18 18:49:12','','0000-00-00 00:00:00'),(10969,0,0,4441,4328,6678,0,0,NULL,'','CC','ZZZ','Remark','H/O UNSTEADINESS OF GAIT | 10 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-18 18:49:12','','0000-00-00 00:00:00'),(10970,0,0,4441,4328,6678,0,0,NULL,'','CC','ZZZ','Remark','NO C/O BURNING SOLE||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-18 18:49:12','','0000-00-00 00:00:00'),(10971,0,0,4441,4328,6678,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-12-18 18:49:14','','0000-00-00 00:00:00'),(10972,0,0,4440,4327,6676,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Both AOM</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 18:49:15','','0000-00-00 00:00:00'),(10973,0,0,4441,4328,6678,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALLY&thinsp;NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-18 18:49:33','','0000-00-00 00:00:00'),(10974,0,0,4437,4324,6670,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-18 18:51:06','','0000-00-00 00:00:00'),(10975,0,0,4437,4324,6670,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-18 18:51:19','','0000-00-00 00:00:00'),(10976,0,0,1842,1797,6682,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 18:54:30','','0000-00-00 00:00:00'),(10979,0,0,1340,1301,6691,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-18 18:58:03','drjayant','2025-12-18 18:58:43'),(10980,0,0,1842,1797,6682,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER---10 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-18 18:58:14','','0000-00-00 00:00:00'),(10981,0,0,1340,1301,6691,0,0,NULL,'','CC','ZZZ','Remark','RT LL, BOTH UL NEUROPATHIC PAIN | 15 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-18 18:58:38','','0000-00-00 00:00:00'),(10982,0,0,4424,4310,6647,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT FOOT PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-18 19:00:39','','0000-00-00 00:00:00'),(10983,0,0,4423,4309,6646,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 19:01:51','','0000-00-00 00:00:00'),(10985,0,0,2666,2604,6688,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better for giddiness</p>\n\n<p>right eawr tinntius&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 19:04:30','','0000-00-00 00:00:00'),(10986,0,0,3683,3584,6690,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up&thinsp; case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 19:09:17','','0000-00-00 00:00:00'),(10988,0,0,4423,4309,6646,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-18 19:12:38','','0000-00-00 00:00:00'),(10989,0,0,4427,4313,6656,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 19:18:41','','0000-00-00 00:00:00'),(10991,0,0,4446,4333,6696,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS---2 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 19:29:30','','0000-00-00 00:00:00'),(10992,0,0,4446,4333,6696,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotry feeling mainly positional</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 19:29:50','','0000-00-00 00:00:00'),(10993,0,0,4446,4333,6696,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>hallpike---nbad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 19:30:04','','0000-00-00 00:00:00'),(10995,0,0,4446,4333,6696,0,0,NULL,'','MADVICE','ZZZ','Remark','VESTIBULAR IX---LATER ON','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-18 19:31:35','','0000-00-00 00:00:00'),(10996,0,0,4429,4315,6659,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 19:35:52','','0000-00-00 00:00:00'),(10999,0,0,4427,4313,6656,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-18 19:38:03','','0000-00-00 00:00:00'),(11000,0,0,4450,4337,6701,0,0,NULL,'','DIAG','ZZZ','Remark','INFECTED SEBACEOUS CYST ON BACK','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-18 19:39:49','','0000-00-00 00:00:00'),(11001,0,0,3202,3116,6681,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 19:47:26','','0000-00-00 00:00:00'),(11003,0,0,4429,4315,6659,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-18 19:56:20','','0000-00-00 00:00:00'),(11004,0,0,2595,2538,6703,0,0,NULL,'','HIST','ZZZ','Remark','<p>throat pain----2-3 days&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 19:57:42','','0000-00-00 00:00:00'),(11005,0,0,2595,2538,6703,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx---congested and granular</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 19:57:49','','0000-00-00 00:00:00'),(11006,0,0,1705,1660,6704,0,0,NULL,'','HIST','ZZZ','Remark','<p>fofllow up case--medicine skipped&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 20:01:04','','0000-00-00 00:00:00'),(11007,0,0,1705,1660,6704,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 20:01:11','','0000-00-00 00:00:00'),(11008,0,0,1705,1660,6704,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-18 20:01:42','','0000-00-00 00:00:00'),(11010,0,0,1705,1660,6704,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-18 20:02:11','','0000-00-00 00:00:00'),(11011,0,0,4383,303,6610,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PELVIC INFLAMMATORY DISEASE (PID)&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-18 20:03:11','mo','2025-12-18 20:06:58'),(11012,0,0,4383,303,6610,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 32 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:LSCS ON 22/9/2025 (LACTATING MOTHER)<BR />\r\nC/O:SEVERE ABDOMINAL AND PELVIC PAIN SINCE TODAY MORNING&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NO H/O VOMITING&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT PRIMARY CONSULTED TO DR NEEPA JOSHI(GYNEC) AND NOW&nbsp;HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN AND PELVIS DONE ON 17/12/2025&nbsp;</P>\r\n\r\n<P>CT ABDOMEN DONE ON 17/12/2025 REPORT ATTACHED WITH FILE&nbsp;</P>\r\n\r\n<P>URINE R/M DONE ON 17/12/2025 WHICH S/O : NAD&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-91/MIN<BR />\r\nBP-100/70MMHG<BR />\r\nSPO2-98% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-18 20:03:11','mo','2025-12-18 20:06:58'),(11013,0,0,4383,303,6610,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n\r\n<P>TAKE LIGHT DIET</P>\r\n\r\n<P>AVOID OILY/FATTY FOOD&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-18 20:03:11','mo','2025-12-18 20:06:58'),(11014,0,0,4383,303,6610,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ METROGYL</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-18 20:03:11','mo','2025-12-18 20:06:58'),(11015,0,0,4383,303,6610,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM&nbsp; (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......(10)</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......(10)</P>\r\n\r\n<P>TAB DAN-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(10)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-18 20:03:11','mo','2025-12-18 20:06:58'),(11016,0,0,4383,303,6610,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-18 20:03:28','mo','2025-12-18 20:06:58'),(11017,0,0,1798,1752,6710,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----occassional impromvnet&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 10:44:15','','0000-00-00 00:00:00'),(11018,0,0,1797,1751,2229,0,0,NULL,'','MADVICE','ZZZ','Remark','WHITE NOISE THEREAPY','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 10:53:05','','0000-00-00 00:00:00'),(11019,0,0,1797,1751,6711,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--partialy better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 10:53:31','','0000-00-00 00:00:00'),(11021,0,0,1797,1751,6711,0,0,NULL,'','MADVICE','ZZZ','Remark','WHITE NOISE THERAPY','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 10:57:52','','0000-00-00 00:00:00'),(11022,0,0,3877,3773,6715,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----beter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 10:59:37','','0000-00-00 00:00:00'),(11023,0,0,3877,3773,6715,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:00:03','','0000-00-00 00:00:00'),(11025,0,0,3877,3773,6715,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAEWNVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:00:40','','0000-00-00 00:00:00'),(11026,0,0,2789,2718,6720,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:02:30','','0000-00-00 00:00:00'),(11027,0,0,3989,3880,6728,0,0,NULL,'','HIST','ZZZ','Remark','<p>k/c/o---hydrops with bppv&thinsp;</p>\n\n<p>recurrence of vertigo and vomiting without&thinsp; cns symptoms&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:08:17','darshan','2025-12-19 12:14:11'),(11028,0,0,3989,3880,6728,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:08:21','','0000-00-00 00:00:00'),(11030,0,0,4460,4345,6721,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotoatyr feeling when pt is getting out of bed and lying own in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsmo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:11:49','darshan','2025-12-19 11:13:58'),(11031,0,0,4460,4345,6721,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW YRS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:13:28','','0000-00-00 00:00:00'),(11032,0,0,4460,4345,6721,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---bialtelr high freq moderate sn deafness</p>\n\n<p>stabilomtry--reduced vestibular score</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:14:08','darshan','2025-12-19 12:44:29'),(11035,0,0,4465,4350,6734,0,0,NULL,'','DIAG','ZZZ','Remark','LT LOIN PAIN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-19 11:14:20','','0000-00-00 00:00:00'),(11036,0,0,4460,4345,6721,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE --MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:14:30','','0000-00-00 00:00:00'),(11037,0,0,2720,2650,6709,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:17:10','','0000-00-00 00:00:00'),(11038,0,0,4467,308,6737,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PHIMOSIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 11:20:43','mo','2025-12-19 15:18:46'),(11039,0,0,4467,308,6737,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-19 11:20:43','mo','2025-12-19 15:18:46'),(11040,0,0,4467,308,6737,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 39 YEARS OLD MALE&nbsp; PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nC/O:PAIN IN PENIS ON ERECTION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ENABILITY TO RETRACTED PENILE SKIN&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;PAINFUL INTERCOURSE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;ALL ABOVE COMPLAINT SINCE 3-4 MONTHS</P>\r\n\r\n<P>&nbsp;O/E:PHIMOSIS +</P>\r\n\r\n<P>&nbsp;GLANS: NORMAL</P>\r\n\r\n<P>&nbsp;H/O:BALENITIS</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-80/MIN<BR />\r\nBP-122/80MMHG<BR />\r\nSPO2-99% ON RA<BR />\r\nRR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\nALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nCIRCUMSCISION WITH ZSR STAPPLER DONE BY DR PRATAPSINH DODIYA ON 19/12/2025 UNDER PENILE BLOCK&nbsp;WITH ALL ASEPTIC PRECAUTION<BR />\r\nPOST-OP PATIENT SHIFTED TO WARD.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 11:20:43','mo','2025-12-19 15:18:46'),(11041,0,0,1898,1852,6732,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up&thinsp; case----better for giddiness&thinsp;</p>\n\n<p>left ear deafness increased&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:20:46','darshan','2025-12-19 11:21:15'),(11042,0,0,4456,4341,6714,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----1 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:26:59','','0000-00-00 00:00:00'),(11043,0,0,4456,4341,6714,0,0,NULL,'','CC','ZZZ','Remark','SENSE OF IMBALANCE||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:26:59','','0000-00-00 00:00:00'),(11044,0,0,4434,4321,6667,0,0,NULL,'','CC','ZZZ','Remark','DYSURIA  | 20 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-19 11:27:36','','0000-00-00 00:00:00'),(11045,0,0,4456,4341,6714,0,0,NULL,'','HIST','ZZZ','Remark','<p>recurrent gidiness with sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:27:36','darshan','2025-12-19 12:55:48'),(11046,0,0,4456,4341,6714,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Nystamgus----absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain----no cva or sol</p>\n\n<p>pta---bialtelr high freq severe sn deafness</p>\n\n<p>stabilomtry---wnl</p>\n\n<p>vng---left labyrinthine patholoyg</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:28:00','darshan','2025-12-19 12:56:39'),(11050,0,0,4434,4321,6667,0,0,NULL,'','MADVICE','ZZZ','Remark','SALT/ SUGAR/ OIL RESTRICTED DIET \nUROLOGIST OPINION ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-19 11:30:38','','0000-00-00 00:00:00'),(11051,0,0,3222,3136,6716,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:30:53','','0000-00-00 00:00:00'),(11052,0,0,4436,4323,6669,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-19 11:32:12','','0000-00-00 00:00:00'),(11053,0,0,4467,308,6737,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n\r\n<P>DAILY DRESSING&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 11:32:24','mo','2025-12-19 15:18:46'),(11056,0,0,4436,4323,6669,0,0,NULL,'','MADVICE','ZZZ','Remark','CT TELMIRIDE-H\nSUGAR/ OIL RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-19 11:34:38','','0000-00-00 00:00:00'),(11057,0,0,4467,308,6737,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ AUGMENTIN</P>\r\n\r\n<P>INJ PANTODEC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 11:35:05','mo','2025-12-19 15:18:46'),(11058,0,0,4435,4322,6668,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-19 11:37:00','','0000-00-00 00:00:00'),(11060,0,0,4464,4349,6730,0,0,NULL,'','CC','ZZZ','Remark','GIDDIENSS ----7-8 MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:37:48','','0000-00-00 00:00:00'),(11061,0,0,4435,4322,6668,0,0,NULL,'','MADVICE','ZZZ','Remark','SALT/ SUGAR/ OIL RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-19 11:38:03','','0000-00-00 00:00:00'),(11062,0,0,4464,4349,6730,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo with fall down ...?LOC</p>\n\n<p>headache +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:39:05','darshan','2025-12-19 11:40:28'),(11063,0,0,4464,4349,6730,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE---7-8 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:39:44','','0000-00-00 00:00:00'),(11064,0,0,4464,4349,6730,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRi brain--nad</p>\n\n<p>Neurologist opinion taken</p>\n\n<p>Psychiatrist opinion taken</p>\n\n<p>PTA----wnl(O)</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>CCG---AP displacement out of N range</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:40:41','darshan','2025-12-19 13:11:51'),(11065,0,0,4464,4349,6730,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:40:44','','0000-00-00 00:00:00'),(11066,0,0,4464,4349,6730,0,0,NULL,'','DIAG','ZZZ','Remark','PSY','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:41:58','','0000-00-00 00:00:00'),(11067,0,0,4463,4348,6727,0,0,NULL,'','HIST','ZZZ','Remark','<p>FAMILY H/O DM, ANAEMIA</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-19 11:46:14','drjayant','2025-12-19 11:46:21'),(11068,0,0,4463,4348,6727,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-19 11:46:30','','0000-00-00 00:00:00'),(11069,0,0,4458,4343,6718,0,0,NULL,'','CC','ZZZ','Remark','VERITGO----YESTERDAY NIGHT ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:48:20','','0000-00-00 00:00:00'),(11070,0,0,4458,4343,6718,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling on change of posture remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsm o</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:48:50','','0000-00-00 00:00:00'),(11071,0,0,4458,4343,6718,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absnt</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:49:04','darshan','2025-12-19 13:38:12'),(11072,0,0,4458,4343,6718,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:49:06','','0000-00-00 00:00:00'),(11073,0,0,4470,4354,6742,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-19 11:52:16','','0000-00-00 00:00:00'),(11074,0,0,9,9,6744,0,0,NULL,'','CC','ZZZ','Remark','URTI | 8 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-19 11:55:34','','0000-00-00 00:00:00'),(11075,0,0,9,9,6744,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-19 11:55:53','','0000-00-00 00:00:00'),(11076,0,0,3260,3174,6741,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:58:22','','0000-00-00 00:00:00'),(11079,0,0,4475,4359,6754,0,0,NULL,'','DIAG','ZZZ','Remark','POSTERIOR ANAL FISSURE','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-19 11:59:36','','0000-00-00 00:00:00'),(11080,0,0,3260,3174,6741,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MANEUVER FOR 1 WEEK','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 11:59:40','','0000-00-00 00:00:00'),(11081,0,0,1056,1022,6723,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better&thinsp;</p>\n\n<p>occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:02:06','','0000-00-00 00:00:00'),(11082,0,0,1055,1021,6724,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better&thinsp;</p>\n\n<p>occassional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:04:52','','0000-00-00 00:00:00'),(11083,0,0,2045,1994,6729,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:08:34','','0000-00-00 00:00:00'),(11084,0,0,2045,1994,6729,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absnet</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:08:48','','0000-00-00 00:00:00'),(11085,0,0,3731,4360,6756,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT BICIPITAL TENDINITIS','','',0,'0000-00-00 00:00:00','drsagar','2025-12-19 12:10:32','','0000-00-00 00:00:00'),(11086,0,0,3731,4360,6756,0,0,NULL,'','DIAG','ZZZ','Remark','LT. TENNIS ELBOW','','',0,'0000-00-00 00:00:00','drsagar','2025-12-19 12:10:39','','0000-00-00 00:00:00'),(11087,0,0,3731,4360,6756,0,0,NULL,'','DIAG','ZZZ','Remark','LT. DQ','','',0,'0000-00-00 00:00:00','drsagar','2025-12-19 12:10:50','','0000-00-00 00:00:00'),(11089,0,0,3989,3880,6728,0,0,NULL,'','MADVICE','ZZZ','Remark','INJ STEMETIL ---IM GIVEN','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:14:51','','0000-00-00 00:00:00'),(11090,0,0,2226,2171,6733,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----reucrence of vertigo and headache&thinsp; with imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:18:21','darshan','2025-12-19 17:30:50'),(11092,0,0,1071,1037,6751,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--beter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:20:36','','0000-00-00 00:00:00'),(11093,0,0,1898,1852,6732,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Pta---left mild progress in deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:22:42','','0000-00-00 00:00:00'),(11094,0,0,4472,4356,6745,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----MANY YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:29:32','','0000-00-00 00:00:00'),(11095,0,0,4472,4356,6745,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onst of rotoatyr feeling any time nad remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>left deafness and tinnitus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:29:47','darshan','2025-12-19 12:30:24'),(11096,0,0,4472,4356,6745,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR DEFENESS AND TINNITUS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:29:53','','0000-00-00 00:00:00'),(11097,0,0,4472,4356,6745,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>ht-nad<br />\npta---left moderate sn deafness</p>\n\n<p>stabilomtry---reduced vestibular scoree</p>\n\n<p>vng--left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:30:38','darshan','2025-12-19 13:53:35'),(11099,0,0,4469,4353,6740,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----</p>\n\n<p>pta---left moderate sn deafness (better than previous)</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:33:53','','0000-00-00 00:00:00'),(11100,0,0,4481,4366,6765,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:37:21','','0000-00-00 00:00:00'),(11101,0,0,4481,4366,6765,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---5 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:38:36','','0000-00-00 00:00:00'),(11102,0,0,4481,4366,6765,0,0,NULL,'','CC','ZZZ','Remark','GIDDIESS --5 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:38:36','','0000-00-00 00:00:00'),(11103,0,0,4481,4366,6765,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:38:50','','0000-00-00 00:00:00'),(11105,0,0,4481,4366,6765,0,0,NULL,'','MADVICE','ZZZ','Remark','VESTIBULAR IX SOS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:40:02','','0000-00-00 00:00:00'),(11106,0,0,4460,4345,6721,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:45:08','','0000-00-00 00:00:00'),(11108,0,0,1983,1935,6735,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---2-3 episodes of giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:49:10','','0000-00-00 00:00:00'),(11109,0,0,4471,4355,6743,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:52:01','','0000-00-00 00:00:00'),(11110,0,0,4471,4355,6743,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 12:52:13','','0000-00-00 00:00:00'),(11112,0,0,4489,4373,6775,0,0,NULL,'','CC','ZZZ','Remark','COUGHING INTERMITTENTLY | 365 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-19 12:58:27','','0000-00-00 00:00:00'),(11113,0,0,4489,4373,6775,0,0,NULL,'','CC','ZZZ','Remark','INCREASED COUGHING, RUNNING NOSE  | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-19 12:58:27','','0000-00-00 00:00:00'),(11114,0,0,4489,4373,6775,0,0,NULL,'','CC','ZZZ','Remark','NO FEVER||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-19 12:58:27','','0000-00-00 00:00:00'),(11115,0,0,4489,4373,6775,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-19 12:59:00','','0000-00-00 00:00:00'),(11117,0,0,4489,4373,6775,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>RS- CLEAR</p>\n\n<p>THROAT- CLEAR</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-19 13:00:03','','0000-00-00 00:00:00'),(11118,0,0,3751,3648,6746,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----recurrence of vertigo with right ear deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:00:37','','0000-00-00 00:00:00'),(11119,0,0,3751,3648,6746,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---i/n</p>\n\n<p>pta----wnl</p>\n\n<p>vng--right pst canal bpv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:00:41','darshan','2025-12-19 14:10:27'),(11120,0,0,3751,3648,6746,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:00:45','','0000-00-00 00:00:00'),(11122,0,0,2624,2564,6748,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:02:53','','0000-00-00 00:00:00'),(11123,0,0,4488,4372,6774,0,0,NULL,'','CC','ZZZ','Remark','C/O CHEST PAIN RT LOWER COSTAL MARGIN| | 3','','',0,'0000-00-00 00:00:00','drarchit','2025-12-19 13:09:32','','0000-00-00 00:00:00'),(11124,0,0,4488,4372,6774,0,0,NULL,'','CC','ZZZ','Remark','C/O NASAL DISCHARGE +||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-19 13:09:32','','0000-00-00 00:00:00'),(11125,0,0,4468,4352,6739,0,0,NULL,'','CC','ZZZ','Remark','C/O CHEST PAIN | | LT SIDE','','',0,'0000-00-00 00:00:00','drarchit','2025-12-19 13:10:48','','0000-00-00 00:00:00'),(11126,0,0,4468,4352,6739,0,0,NULL,'','CC','ZZZ','Remark','C/O GABHRAMAN||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-19 13:10:48','','0000-00-00 00:00:00'),(11128,0,0,4460,4345,6721,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:13:49','','0000-00-00 00:00:00'),(11129,0,0,4483,4368,6767,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:21:11','','0000-00-00 00:00:00'),(11130,0,0,4483,4368,6767,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE---FEW WEEKS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:21:18','','0000-00-00 00:00:00'),(11131,0,0,4483,4368,6767,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain limited study---wnl</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:21:34','darshan','2025-12-19 19:01:29'),(11133,0,0,4172,284,6163,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZIFI(200)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(1)&nbsp;</P>\r\n\r\n<P>TAB.RABTAB-D&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(10)&nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>SYP GLYCEROL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;20 ML WITH WATER&nbsp; &nbsp; TDS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(1)</P>\r\n\r\n<P>TAB LEVIPILL(500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(20)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>TAB COLIHENZ P(400)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(20)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>TAB MODALERT(100)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ..........(20)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>TAB SYNDOPA PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;1/2--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........(10)</P>\r\n\r\n<P>TAB MONTAIR LC&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</P>\r\n\r\n<P>TAB ABPHYLLIN- N&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.............(10)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>TAB DX(30)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.............(15)</P>\r\n\r\n<P>TAB AMLODAC(5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.............(10)&nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>SYP RESWAS&nbsp; &nbsp; (5 ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........(1)&nbsp;</P>\r\n\r\n<P>TAB BRIQ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; LAST STRIP&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 13:23:56','mo','2025-12-19 14:58:33'),(11134,0,0,2814,2744,6753,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:24:05','','0000-00-00 00:00:00'),(11135,0,0,2902,2830,6755,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better for giddiness&thinsp;</p>\n\n<p>right ear discharge +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:27:40','','0000-00-00 00:00:00'),(11136,0,0,4476,4361,6757,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---vertigo----2 days&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:31:10','','0000-00-00 00:00:00'),(11137,0,0,4476,4361,6757,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>rigth post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:31:17','','0000-00-00 00:00:00'),(11138,0,0,4476,4361,6757,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:31:53','','0000-00-00 00:00:00'),(11140,0,0,4488,4372,6774,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>R/S - RT LOWER ZONE CREPTS ++</p>\n\n<p>REST CLINIALLY NAD</p>\n\n<p>CXR - P/A RT LOWER ZONE CONSOLIDATION&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-19 13:32:09','','0000-00-00 00:00:00'),(11141,0,0,4476,4361,6757,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:32:10','','0000-00-00 00:00:00'),(11143,0,0,4456,4341,6714,0,0,NULL,'','MADVICE','ZZZ','Remark','NEUROLOGIST OPINON ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:32:42','','0000-00-00 00:00:00'),(11145,0,0,4458,4343,6718,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:38:32','','0000-00-00 00:00:00'),(11147,0,0,2233,2178,6758,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----single episode of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:41:50','','0000-00-00 00:00:00'),(11148,0,0,4172,284,6163,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>RT FEEDING 250ML/2ND HOURLY&nbsp;</P>\r\n\r\n<P>RYLES TUBE CARE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 13:47:32','mo','2025-12-19 14:58:33'),(11149,0,0,4485,4369,6770,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR TINNITUS -----6-7 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:49:56','','0000-00-00 00:00:00'),(11150,0,0,4485,4369,6770,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ---5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:49:56','','0000-00-00 00:00:00'),(11151,0,0,4485,4369,6770,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ------FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:49:56','','0000-00-00 00:00:00'),(11152,0,0,4485,4369,6770,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo---with tinnitus&thinsp;</p>\n\n<p>headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:50:48','','0000-00-00 00:00:00'),(11153,0,0,4485,4369,6770,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---wnl(o)</p>\n\n<p>stabiflometry---reduced vestibular scoree</p>\n\n<p>vng--central varaeity of nystamgus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:50:57','darshan','2025-12-19 18:46:00'),(11154,0,0,4485,4369,6770,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:50:58','','0000-00-00 00:00:00'),(11155,0,0,4487,4371,6773,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness recurent&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>occassional headache +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 13:59:25','darshan','2025-12-19 14:16:26'),(11156,0,0,4487,4371,6773,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO -----2 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 14:03:55','','0000-00-00 00:00:00'),(11157,0,0,4487,4371,6773,0,0,NULL,'','DIAG','ZZZ','Remark','RECURRENCT BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 14:03:59','','0000-00-00 00:00:00'),(11160,0,0,4458,4343,6718,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAEWNVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 14:04:49','','0000-00-00 00:00:00'),(11161,0,0,3751,3648,6746,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 14:10:39','','0000-00-00 00:00:00'),(11163,0,0,2638,2577,6776,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---two episodes of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 14:12:38','','0000-00-00 00:00:00'),(11165,0,0,3751,3648,6746,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MANEUVER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 14:14:25','','0000-00-00 00:00:00'),(11167,0,0,4487,4371,6773,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike-nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtyr---reduced vestibular score</p>\n\n<p>CCG-AP displacement out of range</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 14:16:49','darshan','2025-12-19 14:24:39'),(11169,0,0,4487,4371,6773,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 14:24:40','','0000-00-00 00:00:00'),(11172,0,0,4487,4371,6773,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 14:24:54','','0000-00-00 00:00:00'),(11173,0,0,1316,1277,6778,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n\n<p>mild sense of imbalance&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 14:31:28','','0000-00-00 00:00:00'),(11174,0,0,4172,284,6163,0,0,NULL,'','DISCCOND','','','<P>E4V5M6</P>\r\n\r\n<P>MOBILIZATION +</P>\r\n\r\n<P>REFLEX +</P>\r\n\r\n<P>RT IN SITU( DAY-2.NO-16)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 14:50:00','mo','2025-12-19 14:58:33'),(11175,0,0,4467,308,6737,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>CIRCUMSCISION WITH ZSR STAPPLER DONE BY DR PRATAPSINH DODIYA ON 19/12/2025 UNDER PENILE BLOCK&nbsp;WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 15:17:58','mo','2025-12-19 15:18:46'),(11176,0,0,4467,308,6737,0,0,NULL,'','OTNOTE','','','<p>- thickened pre-penile skin&nbsp;</p>\r\n\r\n<p>- meatus normal</p>\r\n\r\n<p>- glans penis normal</p>\r\n\r\n<p>- circumscision done with cirxcum stappler (30mm)</p>\r\n\r\n<p>- hemostasis achieved</p>\r\n\r\n<p>- dressing kept</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 15:17:58','mo','2025-12-19 15:18:46'),(11177,0,0,4467,308,6737,0,0,NULL,'','DISCCOND','','','<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 15:17:58','mo','2025-12-19 15:18:46'),(11178,0,0,4467,308,6737,0,0,NULL,'','TREATDISC_TI','','','<P>CAP AUGMENTIN (625MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(15)</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........(10)</P>\r\n\r\n<P>TAB AKILOS-SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ..........(10)</P>\r\n\r\n<P>NEOSPORIN OINTMENT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR L/A&nbsp; &nbsp; &nbsp;AS EXPLAINED&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(1)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 15:17:58','mo','2025-12-19 15:18:46'),(11179,0,0,2808,307,6712,0,0,NULL,'','DISCDIAG','','','<P><STRONG>OPERATED CASE OF COMPLEX PERIANAL FISTULA&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN,DYSLIPIDEMIA&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 15:26:55','mo','2025-12-19 19:43:48'),(11180,0,0,2808,307,6712,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-19 15:26:55','mo','2025-12-19 19:43:48'),(11181,0,0,2808,307,6712,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A67 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN,DYSLIPIDEMIA&nbsp;<BR />\r\nH/O:OPERATED CASE OF COMPLEX PERIANAL FISTULA ON 1/12/2025</P>\r\n\r\n<P>SO NOW,PATIENT CAME HERE FOR DRESSING UNDER SPINAL ANEASTHESIA&nbsp;AND FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-85/MIN<BR />\r\nBP-140/80MMHG<BR />\r\nSPO2-99% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.<BR />\r\nALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nDRESSING DONE BY DR PRATAPSINH DODIYA ON 19/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION<BR />\r\nPOST-OP PATIENT SHIFTED TO WARD.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 15:26:55','mo','2025-12-19 19:43:48'),(11182,0,0,2808,307,6712,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>DRESSING DONE BY DR PRATAPSINH DODIYA ON 19/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 15:26:55','mo','2025-12-19 19:43:48'),(11183,0,0,2808,307,6712,0,0,NULL,'','OTNOTE','','','<p>- operated case of perianal fistula</p>\r\n\r\n<p>- external opening at 7 o&#39;clock position&nbsp;</p>\r\n\r\n<p>- unhealthy granulation tissue , pus excised</p>\r\n\r\n<p>- hemostasis achieved&nbsp;</p>\r\n\r\n<p>- dressing done&nbsp;</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 15:26:55','mo','2025-12-19 19:43:48'),(11184,0,0,2808,307,6712,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>HOT SITZ BATH</P>\r\n\r\n<P>CONTINUE OWN MEDICINE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 15:26:55','mo','2025-12-19 19:43:48'),(11185,0,0,2808,307,6712,0,0,NULL,'','TREATGIVEN_TI','','','<P>TAB ZENFLOX-OZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......FOR 5 DAYS</P>\r\n\r\n<P>TAB METRO-ER (600MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB RIFAGUT (200MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; .......FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB HYOCIMAX-S&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ......FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB SPORLAC -DS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ......FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;......FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>SYP LECTIHEP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;10ML HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(1)</P>\r\n\r\n<P>METROGYL-P OINT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR LOCAL APPLICATION&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ..........(1)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDIICNE :&nbsp;</P>\r\n\r\n<P>TAB TELESKY-H (80)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0</P>\r\n\r\n<P>CAP ATOSKY-1 (20/150)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 15:26:55','mo','2025-12-19 19:43:48'),(11186,0,0,4492,4375,6782,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:16:15','','0000-00-00 00:00:00'),(11187,0,0,897,865,6786,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----headach +</p>\n\n<p>nasal blockage</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:20:02','','0000-00-00 00:00:00'),(11188,0,0,2618,2558,6779,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:24:08','','0000-00-00 00:00:00'),(11189,0,0,999,966,6784,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:25:32','','0000-00-00 00:00:00'),(11190,0,0,4494,4377,6787,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----15 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:28:38','','0000-00-00 00:00:00'),(11191,0,0,4494,4377,6787,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling with jurks in his head</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:29:07','','0000-00-00 00:00:00'),(11192,0,0,4494,4377,6787,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng--central variety of nystagmsu&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:29:26','darshan','2025-12-19 18:56:48'),(11194,0,0,4301,298,6397,0,0,NULL,'','DISCDIAG','','','<P><STRONG>RECURRENT CVA LEFT THALAMIC BLEED,</STRONG></P>\r\n\r\n<P><STRONG>RIGHT SIDED ATAXIC HEMIPARESIS &AMP;DYSARTHRIA IMPROOVING</STRONG></P>\r\n\r\n<P>(?HTN INDUCED)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 17:29:29','mo','2025-12-20 17:43:26'),(11195,0,0,4301,298,6397,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-19 17:29:29','mo','2025-12-20 17:43:26'),(11196,0,0,4301,298,6397,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 53 YEARS OLD MALE PATIENT P/W</P>\r\n\r\n<P>K/C/O DM;HTN;OLD CVA</P>\r\n\r\n<P>WITH C/O RIGHT SIDED WEAKNESS;GAIT IMBALANCE;SLURRED SPEECH SINCE YESTERDAY MORNING.</P>\r\n\r\n<P>SO,PRIMARY CONSULTED AT DR.ROSHAN MISTRY ON OPD BASED.AT THERE MRI BRAIN DONE.S/O SMALL HYPER-ACUTE PARENCHYMAL HAEMORRHAGE INVOLVING LEFT THALAMO CAPSULAR REGION WITH SURROUNDING MINIMAL CEREBRAL EDEMA.&nbsp;THEN REFERRED TO HERE FOR FURTHER MANAGEMENT.</P>\r\n\r\n<P>O/E:</P>\r\n\r\n<P>T-98.2 F</P>\r\n\r\n<P>PR-92/MIN</P>\r\n\r\n<P>BP-140/90MMHG</P>\r\n\r\n<P>SPO2-98% ON RA</P>\r\n\r\n<P>RR-20/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+</P>\r\n\r\n<P>CVS-S1S2+</P>\r\n\r\n<P>CNS-CONSCIOUS/ORIENTED,F/V/C,E4V5M6,RIGHT SIDED WEAKNESS +,MILD SLURRED SPEECH +</P>\r\n\r\n<P>P/A-SOFT</P>\r\n\r\n<P>RBS-233MG/DL</P>\r\n\r\n<P>WITH ABOVE MENTIONED ALL COMPLAINTS AND GENERAL PHYSICAL EXAMINATION PATIENT ADMITTED IN ICU.TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>16/12/25,</P>\r\n\r\n<P>ALL REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>IN VIEW OF HIGH BLOOD PRESSURE MANAGED BY IV LOBET DRIP.ORALLY ANTI-HYPERTENSIVE MEDICINE STARTED.</P>\r\n\r\n<P>ORALLY DIET GIVEN.TAKEN WELL.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>GENERAL CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>17/12/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>PATIENT VITALLY STABLE.</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION SENT.</P>\r\n\r\n<P>REST CT SAME RX.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>18/12/25,</P>\r\n\r\n<P>PATIENT CONSCIOUS/ORIENTED,F/V/C</P>\r\n\r\n<P>E4V5M6.</P>\r\n\r\n<P>CT BRAIN DONE.REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>GENERAL CONDITION EXPLAINED TO RELATIVE.</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFUL SO,PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19/12/25,</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>SAME TREATMENT CONTINUED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20/12/25</P>\r\n\r\n<P>PATIENT CONSCIOUS &AMP; ORIENTED,F/V/C&nbsp;</P>\r\n\r\n<P>E4V5M6</P>\r\n\r\n<P>PATIENT GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 17:29:29','mo','2025-12-20 17:43:26'),(11197,0,0,2226,2171,6733,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Mri brain---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:31:01','','0000-00-00 00:00:00'),(11199,0,0,2136,2082,6789,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:34:06','','0000-00-00 00:00:00'),(11200,0,0,2695,2627,6792,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---two episodes of giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:36:34','','0000-00-00 00:00:00'),(11201,0,0,2695,2627,6792,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:37:38','','0000-00-00 00:00:00'),(11204,0,0,2695,2627,6792,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ---10 DAYS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:38:05','','0000-00-00 00:00:00'),(11205,0,0,4301,298,6397,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ LEVIPIL</P>\r\n\r\n<P>INJ MANNITOL</P>\r\n\r\n<P>INJ LOBET</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>INJ MVI</P>\r\n\r\n<P>TAB ARKAMIN</P>\r\n\r\n<P>TAB OLMESAR AMH</P>\r\n\r\n<P>TAB AMLODAC</P>\r\n\r\n<P>TAB ALLSTAT</P>\r\n\r\n<P>SYP CREMAFFIN</P>\r\n\r\n<P>TAB ECOSPRIN</P>\r\n\r\n<P>TAB RBSON D</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 17:39:50','mo','2025-12-20 17:43:26'),(11206,0,0,3874,3770,6796,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:42:40','','0000-00-00 00:00:00'),(11208,0,0,3874,3770,6796,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:43:36','','0000-00-00 00:00:00'),(11209,0,0,4499,4382,6802,0,0,NULL,'','HIST','ZZZ','Remark','<p>recurrent nasal blockage --few months off and on</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:51:15','','0000-00-00 00:00:00'),(11210,0,0,4499,4382,6802,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose---Rith</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:51:27','','0000-00-00 00:00:00'),(11211,0,0,4493,4376,6783,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:57:28','','0000-00-00 00:00:00'),(11212,0,0,4493,4376,6783,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotawotyr feeling when pt is in any posture he feels sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no asssociated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:58:29','','0000-00-00 00:00:00'),(11213,0,0,4493,4376,6783,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus-absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta----left severe sn deafness</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng--left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 17:58:48','darshan','2025-12-19 19:09:02'),(11215,0,0,4491,4374,6781,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE----MANY MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:02:38','','0000-00-00 00:00:00'),(11216,0,0,4491,4374,6781,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR TINNITUS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:02:38','','0000-00-00 00:00:00'),(11217,0,0,4491,4374,6781,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:02:38','','0000-00-00 00:00:00'),(11218,0,0,4491,4374,6781,0,0,NULL,'','HIST','ZZZ','Remark','<p>headache since many yrs off and on</p>\n\n<p>giddines with sense of imbalance since 3 days&thinsp;</p>\n\n<p>left ear continuus tinnitus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:04:35','','0000-00-00 00:00:00'),(11219,0,0,4491,4374,6781,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpik--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:04:48','darshan','2025-12-19 19:17:56'),(11221,0,0,2733,2664,6791,0,0,NULL,'','HIST','ZZZ','Remark','<p>attended&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:07:38','','0000-00-00 00:00:00'),(11222,0,0,3919,3813,6799,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better partially</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:09:45','','0000-00-00 00:00:00'),(11223,0,0,3919,3813,6799,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:10:13','','0000-00-00 00:00:00'),(11225,0,0,3919,3813,6799,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:11:29','','0000-00-00 00:00:00'),(11226,0,0,3918,3812,6788,0,0,NULL,'','HIST','ZZZ','Remark','<p>folloiw up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:13:03','','0000-00-00 00:00:00'),(11228,0,0,3918,3812,6788,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER FOR 1 WEEK ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:14:03','','0000-00-00 00:00:00'),(11229,0,0,475,449,6800,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---medicine skipped</p>\n\n<p>recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:16:10','','0000-00-00 00:00:00'),(11230,0,0,3893,3789,6790,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:19:05','','0000-00-00 00:00:00'),(11232,0,0,3893,3789,6790,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:20:16','','0000-00-00 00:00:00'),(11233,0,0,4502,4385,6807,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:21:02','darshan','2025-12-19 18:26:00'),(11235,0,0,4488,4372,6774,0,0,NULL,'','MADVICE','ZZZ','Remark','ADVICE -ADMISION -REFUSED ED\n               IV ANTIBIOTICS \n               SPUTUM EXAMINATION \n                CBC , CRP','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-19 18:24:35','','0000-00-00 00:00:00'),(11236,0,0,4502,4385,6807,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----5-6 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:25:45','','0000-00-00 00:00:00'),(11237,0,0,4502,4385,6807,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>stabilomtry----reduced both score</p>\n\n<p>Vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:26:22','darshan','2025-12-19 19:45:05'),(11238,0,0,4502,4385,6807,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHIT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:26:25','','0000-00-00 00:00:00'),(11239,0,0,4502,4385,6807,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:27:00','','0000-00-00 00:00:00'),(11241,0,0,4495,4378,6793,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:29:56','','0000-00-00 00:00:00'),(11242,0,0,4495,4378,6793,0,0,NULL,'','CC','ZZZ','Remark','LEFT BUCCAL PAIN-----5-6 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:30:26','','0000-00-00 00:00:00'),(11243,0,0,4495,4378,6793,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>OSMF&thinsp;</p>\n\n<p>left buccal mucosa congested&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:30:44','','0000-00-00 00:00:00'),(11244,0,0,3880,3776,6812,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:36:29','','0000-00-00 00:00:00'),(11246,0,0,3880,3776,6812,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:37:54','','0000-00-00 00:00:00'),(11248,0,0,2726,2656,6805,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:40:18','','0000-00-00 00:00:00'),(11249,0,0,2726,2656,6805,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:40:27','','0000-00-00 00:00:00'),(11250,0,0,2726,2656,6805,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:40:56','','0000-00-00 00:00:00'),(11252,0,0,4505,4388,6814,0,0,NULL,'','CC','ZZZ','Remark','FEVER, ABD PAIN | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-19 18:41:01','drjayant','2025-12-19 19:26:26'),(11253,0,0,2726,2656,6805,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:41:10','','0000-00-00 00:00:00'),(11254,0,0,4500,4383,6804,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---YESTERDAY||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:51:41','','0000-00-00 00:00:00'),(11255,0,0,4500,4383,6804,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short durtion positional giddienss without any cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:52:00','darshan','2025-12-19 18:53:29'),(11256,0,0,4500,4383,6804,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloemetry----reduced vestibular and ss score</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:53:41','darshan','2025-12-19 19:57:57'),(11257,0,0,4500,4383,6804,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:53:47','','0000-00-00 00:00:00'),(11258,0,0,1811,1765,6797,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 18:59:44','','0000-00-00 00:00:00'),(11259,0,0,4506,4389,6823,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-12-19 19:02:46','','0000-00-00 00:00:00'),(11260,0,0,4507,4390,6824,0,0,NULL,'','DIAG','ZZZ','Remark','BOTH KNEE PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-19 19:03:07','','0000-00-00 00:00:00'),(11263,0,0,4323,299,6447,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 19:08:13','mo','2025-12-19 19:26:31'),(11264,0,0,4323,299,6447,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS WITH CBC,CRP</P>\r\n\r\n<P>CONTINUE OWN&nbsp; MEDICINE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 19:08:13','mo','2025-12-19 19:26:31'),(11265,0,0,4323,299,6447,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFICOOL-CV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........FOR 5 DAYS</P>\r\n\r\n<P>CAP MAC RD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........FOR 5 DAYS</P>\r\n\r\n<P>TAB PULMOCLEAR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........FOR 5 DAYS</P>\r\n\r\n<P>TAB L DIO 1-M&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>SYP BROZEDEX&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 5ML TDS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .......FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB CALPOL&nbsp; (650MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS IF PAIN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(5)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CONTINUE OWN MEDICINE:</P>\r\n\r\n<P>TAB TAZLOC H&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0</P>\r\n\r\n<P>TAB&nbsp; ZEPTAS (0.5)&nbsp; &nbsp; &nbsp;0--0--1&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 19:08:13','mo','2025-12-19 19:26:31'),(11266,0,0,4493,4376,6783,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 19:09:08','','0000-00-00 00:00:00'),(11267,0,0,3957,3848,6828,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 19:21:24','','0000-00-00 00:00:00'),(11269,0,0,4511,4394,6836,0,0,NULL,'','CC','ZZZ','Remark','C/O EPIGASTRIC TENDERNESS  | 2 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-19 19:26:05','','0000-00-00 00:00:00'),(11270,0,0,4511,4394,6836,0,0,NULL,'','CC','ZZZ','Remark','C/O VOMTIING | 2 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-19 19:26:05','','0000-00-00 00:00:00'),(11271,0,0,4504,4387,6809,0,0,NULL,'','CC','ZZZ','Remark','BOTH EAR TINNITUS ----2 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 19:26:56','','0000-00-00 00:00:00'),(11272,0,0,4504,4387,6809,0,0,NULL,'','HIST','ZZZ','Remark','<p>continuous tinnitus with ear pain</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 19:27:15','','0000-00-00 00:00:00'),(11273,0,0,4504,4387,6809,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---i/n</p>\n\n<p>pta=wnl</p>\n\n<p>&thinsp;OAE---bialtel poor corelation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 19:27:41','darshan','2025-12-19 20:04:41'),(11274,0,0,4505,4388,6814,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>P/A- SOFT</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-19 19:28:25','drjayant','2025-12-19 19:28:37'),(11276,0,0,4505,4388,6814,0,0,NULL,'','MADVICE','ZZZ','Remark','AVOID OIL/ FAT DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-19 19:32:12','','0000-00-00 00:00:00'),(11278,0,0,2808,307,6712,0,0,NULL,'','DISCCOND','','','<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 19:36:39','mo','2025-12-19 19:43:48'),(11279,0,0,4489,4373,6775,0,0,NULL,'','MADVICE','ZZZ','Remark','STOP SMOKING \nWEAR MASK ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-19 19:37:14','','0000-00-00 00:00:00'),(11280,0,0,4444,4331,6683,0,0,NULL,'','CC','ZZZ','Remark','C/O INSTABILITY OF GAIT||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-19 19:38:11','','0000-00-00 00:00:00'),(11281,0,0,4444,4331,6683,0,0,NULL,'','CC','ZZZ','Remark','C/O DOE||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-19 19:38:18','','0000-00-00 00:00:00'),(11282,0,0,4444,4331,6683,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-12-19 19:38:19','','0000-00-00 00:00:00'),(11283,0,0,4444,4331,6683,0,0,NULL,'','CC','ZZZ','Remark','C/O BURNING SOLE||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-19 19:38:33','','0000-00-00 00:00:00'),(11284,0,0,4444,4331,6683,0,0,NULL,'','CC','ZZZ','Remark','C/O INSTABILITY OF GAIT | 30 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-19 19:38:43','','0000-00-00 00:00:00'),(11285,0,0,4444,4331,6683,0,0,NULL,'','CC','ZZZ','Remark','C/O DOE | 30 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-19 19:38:43','','0000-00-00 00:00:00'),(11286,0,0,4444,4331,6683,0,0,NULL,'','CC','ZZZ','Remark','C/O BURNING SOLE | 30 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-19 19:38:43','','0000-00-00 00:00:00'),(11287,0,0,4017,3908,6813,0,0,NULL,'','HIST','ZZZ','Remark','<p>left ear wax removed&thinsp;</p>\n\n<p>Rtm---wax</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 19:41:18','darshan','2025-12-19 19:41:35'),(11289,0,0,4017,3908,6813,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT EAR WAX REMOVAL NEXT TIEM','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 19:42:35','','0000-00-00 00:00:00'),(11291,0,0,3267,3181,6816,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better for SOM</p>\n\n<p>root of nose tenderness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 19:47:56','darshan','2025-12-19 19:48:24'),(11293,0,0,3267,3181,6816,0,0,NULL,'','MADVICE','ZZZ','Remark','X-RAY BOTH NASAL BONE SOS','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 19:49:06','','0000-00-00 00:00:00'),(11294,0,0,4513,4396,6838,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN----2 -3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 19:52:02','','0000-00-00 00:00:00'),(11295,0,0,4513,4396,6838,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 19:52:19','','0000-00-00 00:00:00'),(11296,0,0,4513,4396,6838,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Ltm---traumatic perforation for left TM with h&quot;age</p>\n\n<p>PTa---moderate mixed deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 19:53:23','darshan','2025-12-19 20:39:33'),(11298,0,0,4502,4385,6807,0,0,NULL,'','MADVICE','ZZZ','Remark',' RIGHT BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 19:54:03','','0000-00-00 00:00:00'),(11299,0,0,4453,306,6707,0,0,NULL,'','DISCDIAG','','','<P><STRONG>? ENTERIC FEVER&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 19:55:15','mo','2025-12-19 20:09:21'),(11300,0,0,4453,306,6707,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-19 19:55:15','mo','2025-12-19 20:09:21'),(11301,0,0,4453,306,6707,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 24 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O:LSCS BEFORE 1.5 YR<BR />\r\nC/O:ABDOMINAL PAIN SINCE 2 DAYS&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;NAUSEA&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;PERSISTENT VOMITING (6- 7 EPISODE/DAY)&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; INTOLERANCE OF LIQUID/SOLID FOOD</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp;CONSTIPATION</P>\r\n\r\n<P>FOR ABOVE MENTIONED COMPLAINTS PATIENT PRIMARY CONSULTED AT OPD BASE&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>USG ABDOMEN DONE ON 17/12/2025&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-100/MIN<BR />\r\nBP-118/70MMHG<BR />\r\nSPO2-97% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>TYPHI DOT DONE ON 18/12/2025 WHICH S/O;IG G WEAK +VE, IGM +VE&nbsp;</P>\r\n\r\n<P>WIDAL SENT ON 18/12/2025 WHICH S/O: -VE&nbsp;</P>\r\n\r\n<P>URINE R/M DONE ON 18/12/2025 WHICH S/O: 2-3 PUS CELL,25-30 RBC&nbsp;&nbsp;<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 19:55:15','mo','2025-12-19 20:09:21'),(11302,0,0,4453,306,6707,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 3 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 19:55:15','mo','2025-12-19 20:09:21'),(11303,0,0,4453,306,6707,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX</P>\r\n\r\n<P>TAB AZ-1</P>\r\n\r\n<P>INJ PANTO</P>\r\n\r\n<P>INJ VOMISET</P>\r\n\r\n<P>INJ TRAMADOL</P>\r\n\r\n<P>INJ ELDERVIT</P>\r\n\r\n<P>IV FLUID&nbsp;</P>\r\n\r\n<P>TAB ERVADOL SPAS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 19:55:15','mo','2025-12-19 20:09:21'),(11304,0,0,4453,306,6707,0,0,NULL,'','TREATDISC_TI','','','<P>INJ OFRAMAX&nbsp; &nbsp; &nbsp;2GM/100ML&nbsp; NS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;9AM--9PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 3 DAYS ( 6 INJ)</P>\r\n\r\n<P>INJ MIKACIN&nbsp; &nbsp; &nbsp; &nbsp;500MG/DILUTED&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;9PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 4 DAYS (4 INJ )&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB METRO-ER&nbsp; &nbsp; &nbsp;(600MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.......FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB NEXPROFAST&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp;.......FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB ZERODOL-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; ........FOR 5 DAYS</P>\r\n\r\n<P>TAB ZEPTAS&nbsp; &nbsp; &nbsp;(0.5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ......FOR 5 DAYS&nbsp;</P>\r\n\r\n<P>TAB CREMALAX(10MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS&nbsp; &nbsp; &nbsp; IF CONSTIPATION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(1)&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-19 19:55:15','mo','2025-12-19 20:09:21'),(11305,0,0,4500,4383,6804,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 19:58:26','','0000-00-00 00:00:00'),(11308,0,0,3274,3188,6832,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---beter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-19 20:00:14','','0000-00-00 00:00:00'),(11311,0,0,4500,4383,6804,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MANEVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 20:12:56','','0000-00-00 00:00:00'),(11314,0,0,4513,4396,6838,0,0,NULL,'','MADVICE','ZZZ','Remark','PTA NEXT TIME ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-19 20:42:30','','0000-00-00 00:00:00'),(11315,0,0,4490,310,6780,0,0,NULL,'','DISCDIAG','','','<P><STRONG>RIGHT FOOT CELLULITIS WITH SKIN NECROSIS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 01:22:01','mo','2025-12-23 13:10:49'),(11316,0,0,4490,310,6780,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-20 01:22:01','mo','2025-12-23 13:10:49'),(11317,0,0,4490,310,6780,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 47 YEARS OLD MALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NO ANY COMORBIDITY<BR />\r\nC/O: RIGHT FOOT SWELLING SINCE WEDNESDAY MORNING</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PUS DISCHARGING FROM AFFECTED SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PAIN IN RIGHT FOOT</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO H/O INJURY</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 2 DAYS FOR THAT PATIENT PRIMARILY CONSULTED TO DR SUHAS SHETH AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-134/MIN<BR />\r\nBP-118/80MMHG<BR />\r\nSPO2-98% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.<BR />\r\nALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nDEBRIDEMENT DONE BY DR PRATAPSINH DODIYA ON 20/12/2025 UNDER REGIONAL (BLOCK) ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.<BR />\r\nPOST-OP PATIENT SHIFTED TO WARD.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>ALL REQUIRED REPEAT BLOOD INVESTIGATION DONE , HBA1C : 4.47%</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 01:22:01','mo','2025-12-23 13:10:49'),(11318,0,0,4490,310,6780,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.TAZOMAC</P>\r\n\r\n<P>INJ.CLINDATEC</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>INJ.INFUPAR</P>\r\n\r\n<P>TAB.CHYMORAL FORTE</P>\r\n\r\n<P>TAB ULPAN DSR</P>\r\n\r\n<P>TAB ZERODOL P</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 01:22:01','mo','2025-12-23 13:10:49'),(11319,0,0,4320,301,6461,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>AVOID FROM DUST PARTICLE&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 01:30:09','mo','2025-12-20 13:08:55'),(11320,0,0,4405,304,6613,0,0,NULL,'','DISCDIAG','','','<P><STRONG>INCISIONAL HERNIA&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 01:51:11','mo','2025-12-20 12:57:47'),(11321,0,0,4405,304,6613,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY-&nbsp;</STRONG>PERFORATION + RESECTION ANASTOMOSIS + ILIOSTOMY DONE BEFORE 3 YEARS-ILEOSTOMY CLOSURE DONE AFTER 3 MONTH&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 01:51:11','mo','2025-12-20 12:57:47'),(11322,0,0,4405,304,6613,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 63 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NO ANY COMORBIDITY<BR />\r\nH/O: PERFORATION + RESECTION ANASTOMOSIS + ILIOSTOMY DONE BEFORE 3 YEARS- ILEOSTOY CLOSURE DONE AFTER 3 MONTH&nbsp;<BR />\r\nC/O: BULGING IN EPIGASTRIC REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PAIN IN EPIGASTRIC AND INGUINAL REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO VOMITING, NO FEVER</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 7-8 MONTHS BUT INCREASED SINCE 1 WEEEK SO PRIMARILY CONSULTED OPD BASED NOW,PATIENT ADMITTED&nbsp;HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE ON 15/12/25.</P>\r\n\r\n<P>USG ABDOMEN WITH BOTH INGUINAL REGION DONE ON 15/12/25, REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-71/MIN<BR />\r\nBP-134/80MMHG<BR />\r\nSPO2-98% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT, BULGING OVER EPIGASTRIC REGION<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE</P>\r\n\r\n<P>ECG DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nLAPAROSCOPIC INCISIONAL HERNIAOPLASTY (E-TEP-RS)DONE BY DR PRATAPSINH DODIYA ON 18/12/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION<BR />\r\nPOST-OP PATIENT SHIFTED TO ICU</P>\r\n\r\n<P>FURTHER ICU STAY WAS UNEVENTFULL SO PATIENT SHIFT TO WARD&nbsp;<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE C<STRONG>O</STRONG>NDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 01:51:11','mo','2025-12-20 12:57:47'),(11323,0,0,4405,304,6613,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACTAGARD</P>\r\n\r\n<P>INJ.METROGYL</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>INJ.INFUPAR</P>\r\n\r\n<P>INJ.LESURIDE</P>\r\n\r\n<P>SYP.LECTIHEP</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 01:51:11','mo','2025-12-20 12:57:47'),(11324,0,0,4452,305,6706,0,0,NULL,'','DISCDIAG','','','<P>UROSEPSIS</P>\r\n\r\n<P>ACUTE KIDNEY INJURY</P>\r\n\r\n<P>SEPTIC/METABOLIC ENCEPHALOPATHY&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>K/C/O : DM-2 + HTN (DRUG DEFAULTER)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 11:10:17','mo','2025-12-20 12:32:10'),(11325,0,0,4452,305,6706,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-20 11:10:17','mo','2025-12-20 12:32:10'),(11326,0,0,4452,305,6706,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 75 YEARS OLD FEMALE PATIENT COME WITH&nbsp;</P>\r\n\r\n<P>C/O : MILD DROWSY,</P>\r\n\r\n<P>BACK PAIN , LOW GRADE FEVER,</P>\r\n\r\n<P>LOWER ABDOMINAL PAIN,&nbsp;</P>\r\n\r\n<P>LOSS OF URINE OUTPUT,</P>\r\n\r\n<P>SEVERE GENERAL WEAKNESS,</P>\r\n\r\n<P>SINCE 5-7 DAYS.</P>\r\n\r\n<P>K/C/O: HTN + DM-2 (DRUG DEFAULTER)</P>\r\n\r\n<P>ADMITTED VITALS:</P>\r\n\r\n<P>PR: 66/MIN</P>\r\n\r\n<P>BP: 180/100 MMHG</P>\r\n\r\n<P>SPO2 : 95 % ON RA</P>\r\n\r\n<P>TEMP : 98.6F&nbsp;</P>\r\n\r\n<P>RBS : 536 MG/DL</P>\r\n\r\n<P>CNS : MILD DRAWSY+,F/V/C +</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>ADMITTED IN WARD UNDER CARE OF DR.JAYENT MAHETA ALL PHYSICAL EXAMINATIONS DONE AND REQUIRED&nbsp;INVESTIGATIONS SENT AND TREATMENT STARTED AS PER ADVISE IN VIEW DRAWSY&nbsp;AND MILD DISORIENTED SO PATIENT SHIFTE TO ICU AND FOLYES CATHETER INSERTED AND ORALLY LIQUID DIET GIVEN. RBS SHOW 536 SO INJ.HAI DRIP STARTED. URINE R/M SHOW PUS CELLS SO C/S SENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19/12/2025 ON PATIENT CONSIOUS LEVEL IMPROVING AND ORIENTED F/V/C SO BUT OLIGOURIA PRESENT&nbsp;&nbsp;TREATMENT MODIFIED AND ORALLY SOFT DIET STARTED.&nbsp;DR.MAYUR KAPURIYA (NEPHROLOGIST) REFERANCE ADVISE CT KUB, 2D ECHO INJ.LASIX 20 BD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20/12/2025 ON PATIENT REPORTS ARE IMPROVING AND CONSIOUS/ORIENTED FULL SO TREATMENT CONTINUES GC EXPLAINED TO RELATIVES IN DETAILING AND ADVISE CONTINUES HOSPITALISATION AND ICU CARE BUT PATIENT RELATIVES ARE NOT WILLING FURTHER TREATMENT AND HOSPITAL STAY AND WANT TO DAMA SO PATIENT AFTER CONSENT DAMA WITH OWN RISK.</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 11:10:17','mo','2025-12-20 12:32:10'),(11327,0,0,4452,305,6706,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.MEROPENAM&nbsp;1GM IV BD</P>\r\n\r\n<P>INJ.RABICROSS 20MG BD</P>\r\n\r\n<P>INJ.QUICKSET 4MG TDS</P>\r\n\r\n<P>INJ.SODABICARB 1AMP TDS</P>\r\n\r\n<P>INJ.LASIX 20MG BD</P>\r\n\r\n<P>INJ.HAI DRIP 50X50 ACC TO RBS</P>\r\n\r\n<P>IVF</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 11:16:54','mo','2025-12-20 12:32:10'),(11328,0,0,4520,4402,6853,0,0,NULL,'','CC','ZZZ','Remark','URTI | 10 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-20 11:28:07','','0000-00-00 00:00:00'),(11329,0,0,4520,4402,6853,0,0,NULL,'','HIST','ZZZ','Remark','<p>AZITHRO, CEFIXIME TAKEN FOR 5 DAYS</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-20 11:28:58','drjayant','2025-12-20 11:29:10'),(11330,0,0,4520,4402,6853,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>RS - CLEAR</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-20 11:29:23','','0000-00-00 00:00:00'),(11331,0,0,4523,4405,6856,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-20 11:32:21','','0000-00-00 00:00:00'),(11332,0,0,4523,4405,6856,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-20 11:32:34','','0000-00-00 00:00:00'),(11333,0,0,4519,4401,6852,0,0,NULL,'','DIAG','ZZZ','Remark','BOTH OA KNEE RIGHT > LEFT','','',0,'0000-00-00 00:00:00','drsagar','2025-12-20 11:43:11','','0000-00-00 00:00:00'),(11334,0,0,4405,304,6613,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>LAPAROSCOPIC INCISIONAL HERNIAOPLASTY (E-TEP-RS)DONE BY DR PRATAPSINH DODIYA ON 18/12/2025 UNDER GENERAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 11:46:37','mo','2025-12-20 12:57:47'),(11335,0,0,4405,304,6613,0,0,NULL,'','OTNOTE','','','<p>- 10MM PORT INSERTION DONE IN LHC BY OPEN METHOD IN RETRO-MUSCULAR SPACE , BLUNT&nbsp;DISSECTION DONE WITH 10 MM TELESCOPE</p>\r\n\r\n<p>- TWO 5 MM TROCAR INSERTION DONE IN LEFT RETRORECTUS SPACE UNDER VISION</p>\r\n\r\n<p>- LEFT RETRORECTUS SPACE DISSECTION COMPLETED</p>\r\n\r\n<p>- MIDLINE CROSS OVER DONE IN EPIGASTRIC REGION ABOVE HERNIA DEFECT BY CUTTING BOTH PRS</p>\r\n\r\n<p>- MULTIPLE DEFECT IN LINEA ALBA IN SUPRAUMBILICAL REGION&nbsp;</p>\r\n\r\n<p>- OMENTUM ADHERENT WITH MIDLINE SCAR</p>\r\n\r\n<p>- DISSECTION COMPLETED TILL RETROPUBIC SPACE</p>\r\n\r\n<p>- HEMOSTASIS CHECKED</p>\r\n\r\n<p>- LINEA ALBA DEFECT CLOSED WITH PBT NO-1 CONT.STITCHES</p>\r\n\r\n<p>- PERITONEAL DEFECT CLOSED WITH VICRYL 3-0</p>\r\n\r\n<p>- PROLENE MESH 22 X 18 CM KEPT IN RETRORECTUS SPACE</p>\r\n\r\n<p>- ROMOVAC KEPT</p>\r\n\r\n<p>- LHC 10 MM PORT SHEATH CLOSED WITH VICRYL NO-1</p>\r\n\r\n<p>- SKIN CLOSED WITH ETHILON 3-0</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 11:46:37','mo','2025-12-20 12:57:47'),(11336,0,0,4517,4399,6847,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT THUMB DPX BASE FRACTURE','','',0,'0000-00-00 00:00:00','drsagar','2025-12-20 11:52:35','','0000-00-00 00:00:00'),(11337,0,0,4452,305,6706,0,0,NULL,'','CONDONADDMISSION','','','<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 11:54:59','mo','2025-12-20 12:32:10'),(11338,0,0,4452,305,6706,0,0,NULL,'','DISCCOND','','','<P>PR: 80/MIN</P>\r\n\r\n<P>BP : 150/90 MMHG</P>\r\n\r\n<P>SPO2 : 96 % ON RA</P>\r\n\r\n<P>TEMP : 98.6 F</P>\r\n\r\n<P>RS :BLAE +</P>\r\n\r\n<P>CVS : S1/S2 +</P>\r\n\r\n<P>CNS : C/O +,F/V/C +</P>\r\n\r\n<P>P/A : SOFT&nbsp;</P>\r\n\r\n<P>RBS: 247 MG/DL&nbsp;</P>\r\n\r\n<P>C/O: OLIGOURIA,</P>\r\n\r\n<P>UL LIMB EDEMA +</P>\r\n\r\n<P>FOLYES IN SITU DAY-3</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 11:54:59','mo','2025-12-20 12:32:10'),(11339,0,0,4452,305,6706,0,0,NULL,'','ADVICE','','','<P>ADVISE :</P>\r\n\r\n<P>TREATMENT AS PER HOSPITAL.</P>\r\n\r\n<P>CONTINUES HOSPITALISATION.</P>\r\n\r\n<P>CT KUB + 2D ECHO,</P>\r\n\r\n<P>NEPHROLOGIST FOLLO UP,</P>\r\n\r\n<P>SUGAR (DIABETIC) CONTROL&nbsp;</P>\r\n\r\n<P>FOLYES CARE.</P>\r\n\r\n<P>URINE C/S AWAITED @ MAHEK LAB.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 11:58:04','mo','2025-12-20 12:32:10'),(11340,0,0,4405,304,6613,0,0,NULL,'','FOOD_DRUG_ALLERGIES','','','<P>? PERINORM&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 12:08:58','mo','2025-12-20 12:57:47'),(11341,0,0,4405,304,6613,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 12:08:58','mo','2025-12-20 12:57:47'),(11342,0,0,4405,304,6613,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS&nbsp;</P>\r\n\r\n<P>AVOID HEAVY WEIGHT FOR 6 WEEK</P>\r\n\r\n<P>WEAR ABDOMINAL BINDER WHILE MOBILIZATION&nbsp; FOR 3 MONTH&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 12:08:58','mo','2025-12-20 12:57:47'),(11343,0,0,4405,304,6613,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM (500MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(10)</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(10)</P>\r\n\r\n<P>TAB AKILOS-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(10)</P>\r\n\r\n<P>TAB LESURIDE&nbsp; (25)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(10)</P>\r\n\r\n<P>SYP LECTIHEP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 100ML HS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ........(1)&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 12:08:58','mo','2025-12-20 12:57:47'),(11344,0,0,4518,4400,6850,0,0,NULL,'','CC','ZZZ','Remark','URTI | 10 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-20 12:13:58','','0000-00-00 00:00:00'),(11345,0,0,4518,4400,6850,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-20 12:14:02','','0000-00-00 00:00:00'),(11346,0,0,4521,4403,6854,0,0,NULL,'','DIAG','ZZZ','Remark','BOTH OA KNEE RIGHT > LEFT','','',0,'0000-00-00 00:00:00','drsagar','2025-12-20 12:17:17','','0000-00-00 00:00:00'),(11347,0,0,4530,4413,6870,0,0,NULL,'','CC','ZZZ','Remark','POSTED FOR D & C FOR ENDOMETRIOSIS ||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-20 12:18:27','','0000-00-00 00:00:00'),(11348,0,0,4530,4413,6870,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO C/O DOE&thinsp;</p>\n\n<p>NO C/O CHEST PAIN</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-20 12:27:47','','0000-00-00 00:00:00'),(11349,0,0,4530,4413,6870,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALY NAD</p>\n\n<p>ECG- NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-20 12:28:11','','0000-00-00 00:00:00'),(11350,0,0,4530,4413,6870,0,0,NULL,'','PLAN','ZZZ','Remark','16','','',0,'0000-00-00 00:00:00','drarchit','2025-12-20 12:28:13','','0000-00-00 00:00:00'),(11351,0,0,4320,301,6461,0,0,NULL,'','TREATDISC_TI','','','<P>CAP FLUVIR (75MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........3 TAB</P>\r\n\r\n<P>TAB PANTODAC-DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .........(10)</P>\r\n\r\n<P>TAB PULMOCLEAR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;.........(10)</P>\r\n\r\n<P>TAB VITNEURIN-CZS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;..........(5)</P>\r\n\r\n<P>TAB L DIO 1-M&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...........(5)&nbsp;</P>\r\n\r\n<P>ROTACAP FORACORT INHALER (400MG)&nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;........(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 12:32:21','mo','2025-12-20 13:08:55'),(11352,0,0,4526,4408,6863,0,0,NULL,'','CC','ZZZ','Remark','C/O GIDDINESS  | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-20 12:43:16','','0000-00-00 00:00:00'),(11353,0,0,4527,4409,6864,0,0,NULL,'','DIAG','ZZZ','Remark','BOTH SIDE UPPER BACK PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-20 12:43:39','','0000-00-00 00:00:00'),(11354,0,0,4532,4415,6872,0,0,NULL,'','CC','ZZZ','Remark','C/O COUGH | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-20 12:47:08','','0000-00-00 00:00:00'),(11355,0,0,4534,4417,6874,0,0,NULL,'','CC','ZZZ','Remark','BILAT LL NEUROPATHIC PAIN INTERMITTENTLY | 30 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-20 12:47:29','','0000-00-00 00:00:00'),(11356,0,0,4384,302,6576,0,0,NULL,'','DISCCOND','','','<P>4 LIT O2 SUPPORT&nbsp; WITH&nbsp;NRBM MASK SPO2-96%&nbsp;</P>\r\n\r\n<P>INTERMITTENT FEVER&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 12:47:35','mo','2025-12-20 13:03:52'),(11357,0,0,4384,302,6576,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION</P>\r\n\r\n<P>INTENSICE CARE</P>\r\n\r\n<P>O2 REQUIREMENT WITH NRBM&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 12:47:35','mo','2025-12-20 13:03:52'),(11358,0,0,4534,4417,6874,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-20 12:47:43','','0000-00-00 00:00:00'),(11360,0,0,4536,4419,6876,0,0,NULL,'','CC','ZZZ','Remark','C/O PEDAL OEDEMA||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-20 12:55:42','','0000-00-00 00:00:00'),(11361,0,0,4534,4417,6874,0,0,NULL,'','MADVICE','ZZZ','Remark','SPINE/ ORTHO OPINION','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-20 12:56:53','','0000-00-00 00:00:00'),(11362,0,0,4533,4416,6873,0,0,NULL,'','DIAG','ZZZ','Remark','LOWER BACK PAIN WITH BOTH LOWER LIMB RADICULOPATHY','','',0,'0000-00-00 00:00:00','drsagar','2025-12-20 13:30:46','','0000-00-00 00:00:00'),(11363,0,0,4301,298,6397,0,0,NULL,'','TREATDISC_TI','','','<P>TAB RBSON D&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD</P>\r\n\r\n<P>TAB LEVIPILL(500)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER&nbsp; FOOD</P>\r\n\r\n<P>TAB ALLSTAT(40)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD</P>\r\n\r\n<P>TAB ARKAMIN(0.1)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-1-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD</P>\r\n\r\n<P>TAB OLMESAR-AMH&nbsp; &nbsp; &nbsp; &nbsp;1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD</P>\r\n\r\n<P>TAB AMLODAC (5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER&nbsp; FOOD</P>\r\n\r\n<P>TAB ECOSPRIN(75)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-1-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD</P>\r\n\r\n<P>TAB B29&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0-1-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD</P>\r\n\r\n<P>SYP CREMAFFIN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;15 ML&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; HS&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 17:40:40','mo','2025-12-20 17:43:26'),(11364,0,0,4301,298,6397,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 10 DAYS&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-20 17:41:10','mo','2025-12-20 17:43:26'),(11365,0,0,2749,313,6884,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ICD CODE:</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-21 10:56:39','mo','2025-12-23 14:50:17'),(11366,0,0,2749,313,6884,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-21 10:56:39','mo','2025-12-23 14:50:17'),(11367,0,0,2749,313,6884,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 50 YEARS FEMALE OLD &nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NO ANY COMORBIDITY<BR />\r\nC/O: COUGH AND COLD SINCE 8-10 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ABDOMINAL PAIN SINCE 4-5 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER SICE 2 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BURNING MICTURATION</P>\r\n\r\n<P>FOR ALL ABOVE MENTIONED COMPLAINTS PATIENT CONSUTED AT OPD BASED AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>MP CARD TEST DONE ON 20/12/25 WHICH WAS NEGATIVE.</P>\r\n\r\n<P>DENGUE CARD TEST DONE ON 20/12/25 WHICH WAS NEGATIVE.</P>\r\n\r\n<P>PS EXAMINATION S/O;</P>\r\n\r\n<P>-NORMOCYTIC NORMOCHROMIN ANEMIA WITH MILD LEUCOPENIA WITH NEUTROPENIA</P>\r\n\r\n<P>-ANEMIA OF CHRONIC DISEASE WITH ? VIRAL INFECTION</P>\r\n\r\n<P>URINE R/M DONE ON 20/12/25 WHICH S/O PC: 25-30 CELLS/HPF, BACTERIA++.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP- 100 F&nbsp;<BR />\r\nPR- 112/MIN<BR />\r\nBP-90/60MMHG<BR />\r\nSPO2- 97% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20/12/25,<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>USG ABDOMEN DONE WHICH S/O;</P>\r\n\r\n<P>-RIGHT MID CALYCEAL TINY CONCRETION WITHOUT HN NOTED.</P>\r\n\r\n<P>-LEFT UPPER&nbsp;CALYCEAL TINY CONCRETION NOTED WITHOUT HN.</P>\r\n\r\n<P>CHEST X-RAY DONE.</P>\r\n\r\n<P>ANA BY IF SENT.</P>\r\n\r\n<P>WIDAL TUBE TEST SENT........</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21/12/25,<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>ANTI CCP ANTOBODY DONE WHICH WAS NEGATIVE.</P>\r\n\r\n<P>OTHER REQUIRED BLOOD INVESTIGATION DONE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22/12/25,</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>HEMATO-ONCOLOGIST DR ADITY THANKY&#39;S REFERANCE DONE IN VIEW OF LEUCOCYTOSIS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23/12/25</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE.</P>\r\n\r\n<P>ANA TEST INTERPRETATION IS NEGATIVE.</P>\r\n\r\n<P>PATIENT GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-21 10:56:39','mo','2025-12-23 14:50:17'),(11368,0,0,2749,313,6884,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.ZOSTUM</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.VOMISET</P>\r\n\r\n<P>TAB.FOLVITE</P>\r\n\r\n<P>TAB.SOBISIS</P>\r\n\r\n<P>TAB.AIR</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-21 10:56:39','mo','2025-12-23 14:50:17'),(11369,0,0,4490,310,6780,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX;</P>\r\n\r\n<P>DEBRIDEMENT DONE BY DR PRATAPSINH DODIYA ON 20/12/2025 UNDER REGIONAL (BLOCK) ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-21 11:16:17','mo','2025-12-23 13:10:49'),(11370,0,0,4490,310,6780,0,0,NULL,'','OTNOTE','','','<p>per-op findings:</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>-right foot cellulitis</p>\r\n\r\n<p>-incision kept on dorsal surface</p>\r\n\r\n<p>-dead skin. slough, toxic fluid drained</p>\r\n\r\n<p>-pus collection in subcutaneous tissue</p>\r\n\r\n<p>-cavity clean&nbsp;with betadinE</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-dressing kept</p>\r\n\r\n<p>-tissue sent for bectarial culture</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-21 11:16:17','mo','2025-12-23 13:10:49'),(11371,0,0,4515,311,6843,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE UNDIFFERENTIATED FEVER</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, DYSLIPIDEMIA (SINCE 8-10 YEARS)</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-21 11:43:54','mo','2025-12-22 21:19:39'),(11372,0,0,4515,311,6843,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-21 11:43:54','mo','2025-12-22 21:19:39'),(11373,0,0,4515,311,6843,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 67 YEARS OLD&nbsp; MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, DYSLIPIDEMIA (SINCE 8-10 YEARS)<BR />\r\nH/O: CONGENITIAL DEFECT OF RIGHT LEG - AMPUTATED IN 2008</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;? CHRONIC&nbsp;EPIDIDYMO-ORCHITIS&nbsp;<BR />\r\nC/O: ANOREXIA SINCE 1 MONTH</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; INCONTINANCE OF URINE SINCE 15-20 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; LETHARGY SINCE 15-20 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; IMBALANCE WHILE WALKING SINCE 8-10 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ONE EPISODE OF FEVER TODAY</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BACKPAIN</P>\r\n\r\n<P>FOR ALL ABOVE MENTIONED COMPLAINTS PATIENT PRIMARILY CONSULTED TO DR SAMIR NAYAK THEN DR ROSHAM NISTRY AND NOW ADMITTED HERE UNDER CARE OF DR ROSHAN MISTRY&nbsp; FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>REQUIRED PRIMARY BLOOD INVESTIGATION DONE.</P>\r\n\r\n<P>MP CARD TEST AND TYPHOID IGN ANTIBBODY TEST DONE WHICH WAS NEGATIVE.</P>\r\n\r\n<P>URINE R/M WHICH S/O PROTIEN +</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-101.6 F<BR />\r\nPR-115/MIN<BR />\r\nBP-144/82MMHG<BR />\r\nSPO2-99% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19/12/25,<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>ECG DONE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20/12/25,</P>\r\n\r\n<P>MD PHYSICIAN AND INTENSIVIST DR ARCHIT RATHOD&#39;S REFEANCE DONE.</P>\r\n\r\n<P>USG ABDOMEN DONE WHICH S/O PROSTATE APPERS ENLARGED AND MEASURES 31 CC IN VOL.</P>\r\n\r\n<P>CHEST X-RAY DONE&nbsp;</P>\r\n\r\n<P>UROLOGIST DR MEET JAGANI&#39;S REFERANCE DONE AND FOLLOWED HIS ADVICE.</P>\r\n\r\n<P>URINE C/S SENT S/O NO GROWTH</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21/12/25,<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22/12/25,</P>\r\n\r\n<P>REFERENCE OF DR KRUTARTH KANJIYA DONE AND FOLLOW HIS ALL ADVICE.</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>MRI WHOLE SPINE AND BOTH SI JOINTS SCREENING DONE, REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-21 11:43:54','mo','2025-12-22 21:19:39'),(11374,0,0,4515,311,6843,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.ZOSTUM</P>\r\n\r\n<P>INJ.LEVOFLOX</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.VOMISET</P>\r\n\r\n<P>INJ.PCM</P>\r\n\r\n<P>TAB.MIRBEG</P>\r\n\r\n<P>TAB.SILDOSIN</P>\r\n\r\n<P>TAB.ETOLOK TH</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-21 11:43:54','mo','2025-12-22 21:19:39'),(11375,0,0,4550,315,6898,0,0,NULL,'','DISCDIAG','','','<P><STRONG>BPH WITH UROSEPSIS, ? (CA PROSTATE)</STRONG></P>\r\n\r\n<P><STRONG>ARF</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: ? DCMP&nbsp;</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 01:10:18','mo','2025-12-23 12:22:07'),(11376,0,0,4550,315,6898,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-22 01:10:18','mo','2025-12-23 12:22:07'),(11377,0,0,4550,315,6898,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 90 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: ? DCMP (NO DOCUMENT AVAILABLE)<BR />\r\nC/O: BURNING MICTURATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;LOWER ABDOMINAL PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FEVER WITH CHILL&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;GENERALISED WEAKNESS</P>\r\n\r\n<P>H/O: HEMATURIA YESTERDAY&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 6-7 DAYS&nbsp;SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-101&#39;F<BR />\r\nPR-105/MIN<BR />\r\nBP-140/90MMHG<BR />\r\nSPO2-97% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\nURINE R/M DONE WHICH S/O FUNGLE LIKE ELEMENTS.</P>\r\n\r\n<P>FOLEY&#39;S CATHETER INSERTION DONE BY DR PRATAPSINH DODIA WITH ALL ASEPTIC PRECAUTIONS ON 21/12/25.</P>\r\n\r\n<P>USG ABDOMEN DONE ON 22/12/25 WHICH S/O, ENLARGED PROSTATE APP.108 CC</P>\r\n\r\n<P>PSA DONE WHICH WAS &GT;100<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT GENERAL CONDITION &AMP; PROGNOSIS EXPLAIND TO RELATIVE BUT THEY REFUSED AND WANT DICHARGE AGAINST MEDICAL ADVICE SO PT IS BEING DAMA.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 01:10:18','mo','2025-12-23 12:22:07'),(11378,0,0,4550,315,6898,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.MEROMAC (1 GM/100 NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BD&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 3 DAYS GIVEN</P>\r\n\r\n<P>TAB AZITHRO (250 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1</P>\r\n\r\n<P>TAB CALPOL (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1</P>\r\n\r\n<P>TAB SOBIOSIS (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1</P>\r\n\r\n<P>TAB UT SAFE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1</P>\r\n\r\n<P>TAB VELTUM (0.4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>FREEGO POWDER (2 TSF/ WATER)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; HS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 01:10:18','mo','2025-12-23 12:22:07'),(11379,0,0,4285,316,6899,0,0,NULL,'','DISCDIAG','','','<P><STRONG>UTERINE PROLAPSE + CYSTOCELE + RECOCELE</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN, DM TYPE 2, CAD</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 01:23:36','mo','2025-12-23 16:11:38'),(11380,0,0,4285,316,6899,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-22 01:23:36','mo','2025-12-23 16:11:38'),(11381,0,0,4285,316,6899,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 70 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, DM TYPE 2, CAD<BR />\r\nC/O: FEELS LIKE SOMETHING COIMING OUT P/V</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; LOWER ABDOMINAL PAIN&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO FEVER, NO VOMITING</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 2 MONTHS&nbsp;SO PATIENT PRIMARILY CONSULTED TO DR SHILPEN GONDALIYA NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-90/MIN<BR />\r\nBP-130/80MMHG<BR />\r\nSPO2-96% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\n2D ECHO DONE ON 16/12/25 WHICH S/O; -LVEF:64%, OTHER FINDINGS ARE ACCORDING TO REPORT.</P>\r\n\r\n<P>PHYSICIAN FITNESS GIVEN BY MD MEDICINE AND INTENSIVIST DR ARCHIT RATHOD.</P>\r\n\r\n<P>VAGINAL HYSTERECTOMY + ANTERIOR AND POSTERIOR REPAIR + VAULT SUSPENSION DONE BY DR SHIPLEN GONDALIYA&nbsp; ON 21/12/25 UNDER GENERAL ANAESTHESIA&nbsp;WITH ALL ASEPTIC PRECAUTIONS.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 01:23:36','mo','2025-12-23 16:11:38'),(11382,0,0,4285,316,6899,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACTAGRD</P>\r\n\r\n<P>INJ.METROGYL</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 01:23:36','mo','2025-12-23 16:11:38'),(11383,0,0,4339,314,6892,0,0,NULL,'','DISCDIAG','','','<P><STRONG>D12-L1 WEDGE COMPRESSION WITHOUT DNVD</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 01:50:32','mo','2025-12-22 13:42:06'),(11384,0,0,4339,314,6892,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-22 01:50:32','mo','2025-12-22 13:42:06'),(11385,0,0,4339,314,6892,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 55 YEARS OLD FEMALE PATIENT PRESENTED WITH,</P>\r\n\r\n<P>S/H/O : HYSTERECTOMY DONE BEFORE 15 YEARS<BR />\r\nK/C/O: NO ANY COMORBIDITY<BR />\r\nH/O: BLUNT TRAUMA DURING TRAVELLING BY BUS BEFORE 5 DAYS<BR />\r\nF/BY C/O: MIDDLE AND LOWER BACK PAIN</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;UNABLE TO WALK OR SIT</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NO ANY OTHER COMPLAINTS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 5 DAYS FOR TAHT PATIENT PRIMARILY CONSULTED AT PDU HOSPITAL RAJKOT THEN TO OPD HERE&nbsp;SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>X RAY LS SPINE DONE ON 17/12/25, WHICH S/O D12-L1 OLD COMMINUTED FRACTURE (ONLY PLATE AVAILABLE)</P>\r\n\r\n<P>MRI DORSOLUMBAR SPINE WITH WSS DONE ON 19/12/25, REPORT ATTACHED WITH FILE.&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-77/MIN<BR />\r\nBP-122/74MMHG<BR />\r\nSPO2-98% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>INJ CALCIROL BLU(60K) &AMP; INJ NANDROMAX GIVEN</P>\r\n\r\n<P>GIVEN TYLOR&#39;S BRACE<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 01:50:32','mo','2025-12-22 13:42:06'),(11386,0,0,4541,312,6882,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE LEFT PYLONEPHRITIS WITH UROSEPSIS&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>IN K/C/O: HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 01:50:56','mo','2025-12-22 13:30:13'),(11387,0,0,4541,312,6882,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-22 01:50:56','mo','2025-12-22 13:30:13'),(11388,0,0,4541,312,6882,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 60 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, HYOPTHYROIDISM<BR />\r\nC/O: FEVER WITH CHILL</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; VERTIGO</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; GENERALISED WEAKNESS</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 2-3 DAYS&nbsp;SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>WIDAL TUBE TEST DONE ON 20/12/25 WHICH WAS NEGATIVE.</P>\r\n\r\n<P>URINE R/M DONE ON 20/12/25 WHICH S/O; PC:15-20 CELLS/HPF, EC: OCCASIONALLY, ALBUMIN TRACE.</P>\r\n\r\n<P>USG ABDOMEN WITH PELVIS DONE ON 20/12/25, REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-88/MIN<BR />\r\nBP-80/50MMHG<BR />\r\nSPO2-97% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\nFOLEY&#39;S CATHETER INSERTION DONE ON 20/12/25 WITH ALL ASEPTIC PRECAUTIONS.</P>\r\n\r\n<P>BLOOD C/S SENT ON 20/12/25 WHICH S/O NO GROWTH.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>CT KUB DONE ON 21/12/25, REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>PATIENT GENERAL CONDITION &AMP; PROGNOSIS EXPLAINED TO RELATIVE BUT THEY REFUSED AND WANT&nbsp;DISCHARGE AGAINST MEDICAL ADVISE SO PT IS BEING DAMA.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 01:50:56','mo','2025-12-22 13:30:13'),(11389,0,0,4339,314,6892,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.TRAMADOL</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>INJ.CALCIROL</P>\r\n\r\n<P>INJ.NANDROMAX</P>\r\n\r\n<P>TAB.TORIB RELAX</P>\r\n\r\n<P>SYP.CREMAFFIN PLUS</P>\r\n\r\n<P>IV FLUID</P>\r\n\r\n<P>BUPREGESIC PATCH</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 02:31:59','mo','2025-12-22 13:42:06'),(11390,0,0,4541,312,6882,0,0,NULL,'','TREATDISC_TI','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-22 02:46:18','mo','2025-12-22 13:30:13'),(11391,0,0,4559,4439,6914,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----medicine skipped&thinsp;</p>\n\n<p>recurrence of vertigo and heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 10:43:58','','0000-00-00 00:00:00'),(11392,0,0,4559,4439,6914,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 10:44:26','','0000-00-00 00:00:00'),(11393,0,0,3391,3302,6915,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 10:57:49','','0000-00-00 00:00:00'),(11394,0,0,4557,4438,6912,0,0,NULL,'','CC','ZZZ','Remark','RIGHT SIDE THROAT PAIN------10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:02:25','','0000-00-00 00:00:00'),(11395,0,0,4557,4438,6912,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Right anterior pillar congested&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:02:41','','0000-00-00 00:00:00'),(11396,0,0,4561,4440,6918,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS-----FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:12:20','','0000-00-00 00:00:00'),(11397,0,0,4561,4440,6918,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:12:20','','0000-00-00 00:00:00'),(11398,0,0,4561,4440,6918,0,0,NULL,'','CC','ZZZ','Remark','NAUSEA AND VOMITING ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:12:20','','0000-00-00 00:00:00'),(11399,0,0,4561,4440,6918,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:12:58','','0000-00-00 00:00:00'),(11400,0,0,4561,4440,6918,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--rigth moderate sn deafness</p>\n\n<p>stabilomtry---reduced vestibular score</p>\n\n<p>vng--right labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:13:11','darshan','2025-12-22 13:21:46'),(11402,0,0,4561,4440,6918,0,0,NULL,'','DIAG','ZZZ','Remark','VM WITH BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:13:23','','0000-00-00 00:00:00'),(11403,0,0,2170,2119,6932,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case-----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:15:35','','0000-00-00 00:00:00'),(11404,0,0,4571,4449,6930,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-22 11:18:57','','0000-00-00 00:00:00'),(11405,0,0,4571,4449,6930,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-22 11:19:01','drjayant','2025-12-22 11:19:10'),(11406,0,0,4563,4442,6920,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ------1 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:21:42','','0000-00-00 00:00:00'),(11407,0,0,4563,4442,6920,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS --1 YRS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:21:42','','0000-00-00 00:00:00'),(11408,0,0,4563,4442,6920,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache with giddiness ---sudden onset any time and remains for few hrs&thinsp;</p>\n\n<p>associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:22:22','','0000-00-00 00:00:00'),(11409,0,0,4563,4442,6920,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng--central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:22:50','darshan','2025-12-22 13:31:58'),(11411,0,0,2184,2133,6938,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:25:41','','0000-00-00 00:00:00'),(11412,0,0,2096,2041,6921,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:29:38','','0000-00-00 00:00:00'),(11413,0,0,2096,2041,6921,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:30:06','','0000-00-00 00:00:00'),(11414,0,0,2096,2041,6921,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:30:11','','0000-00-00 00:00:00'),(11415,0,0,2096,2041,6921,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:30:12','','0000-00-00 00:00:00'),(11416,0,0,2096,2041,6921,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:31:12','','0000-00-00 00:00:00'),(11418,0,0,2096,2041,6921,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:31:35','','0000-00-00 00:00:00'),(11419,0,0,4573,4451,6934,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:43:01','','0000-00-00 00:00:00'),(11420,0,0,4573,4451,6934,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling with sense of imbalance&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>both ear heaviness of head +</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:43:37','','0000-00-00 00:00:00'),(11421,0,0,4573,4451,6934,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng---left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:43:52','darshan','2025-12-22 13:44:19'),(11425,0,0,221,208,6957,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case ---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:46:14','','0000-00-00 00:00:00'),(11426,0,0,4000,3891,6948,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----bettter partially</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:49:16','','0000-00-00 00:00:00'),(11427,0,0,4000,3891,6948,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:49:52','','0000-00-00 00:00:00'),(11429,0,0,4000,3891,6948,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:50:05','','0000-00-00 00:00:00'),(11430,0,0,4586,4464,6959,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodiuc vertigo----sudden onset of rotaotyr feeling with sense of imbalance while walking&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:56:20','darshan','2025-12-22 11:58:52'),(11431,0,0,4552,4433,6902,0,0,NULL,'','CC','ZZZ','Remark','ROTATORY FEELINGS, POSITIONAL IN NATURE | 1 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-22 11:57:25','','0000-00-00 00:00:00'),(11432,0,0,4586,4464,6959,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 YR||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:58:07','','0000-00-00 00:00:00'),(11433,0,0,4586,4464,6959,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>CCG--AP displacment out of N range</p>\n\n<p>VNG---central vareity of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 11:59:02','darshan','2025-12-22 13:55:33'),(11436,0,0,4232,4120,6940,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----no imrpvmoent&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:03:42','','0000-00-00 00:00:00'),(11437,0,0,4232,4120,6940,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>LTM---som</p>\n\n<p>pta---right very severe sn deafness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:03:46','darshan','2025-12-22 13:01:59'),(11438,0,0,3824,4467,6963,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>MOBILISING WITH SUPPORT +</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-22 12:07:31','drjayant','2025-12-22 12:09:36'),(11439,0,0,3824,4467,6963,0,0,NULL,'','CC','ZZZ','Remark','BETTER||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-22 12:07:36','','0000-00-00 00:00:00'),(11440,0,0,3824,4467,6963,0,0,NULL,'','HIST','ZZZ','Remark','<p>F&#39;UP ISCHIO RECTAL ABSCESS, SEPSIS, AKI, ENCEPHALOPATHY</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-22 12:09:09','','0000-00-00 00:00:00'),(11441,0,0,4036,3928,6942,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---both ear no discharge</p>\n\n<p>Btm---small to moderated perforation</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:10:49','','0000-00-00 00:00:00'),(11443,0,0,4036,3928,6942,0,0,NULL,'','MADVICE','ZZZ','Remark','TPLASTY','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:11:40','','0000-00-00 00:00:00'),(11444,0,0,4577,4455,6943,0,0,NULL,'','CC','ZZZ','Remark','URTI | 8 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-22 12:12:31','','0000-00-00 00:00:00'),(11445,0,0,4577,4455,6943,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-22 12:12:38','','0000-00-00 00:00:00'),(11446,0,0,3908,3803,6916,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:14:33','','0000-00-00 00:00:00'),(11447,0,0,3908,3803,6916,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:15:04','','0000-00-00 00:00:00'),(11449,0,0,3908,3803,6916,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:15:39','','0000-00-00 00:00:00'),(11450,0,0,4566,4444,6925,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden sense of imbalance when pt walks and stopped suddely</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:21:01','darshan','2025-12-22 12:23:53'),(11451,0,0,4566,4444,6925,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----4-5 YRS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:22:57','','0000-00-00 00:00:00'),(11452,0,0,4566,4444,6925,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hti--nad</p>\n\n<p>pta----wnl</p>\n\n<p>stabilometry---reduced vestibular scoree</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:24:11','darshan','2025-12-22 14:07:10'),(11453,0,0,4566,4444,6925,0,0,NULL,'','DIAG','ZZZ','Remark','PPPD','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:24:20','','0000-00-00 00:00:00'),(11454,0,0,4578,4456,6946,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:27:56','darshan','2025-12-22 12:29:19'),(11455,0,0,4578,4456,6946,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----10 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:28:04','','0000-00-00 00:00:00'),(11456,0,0,4578,4456,6946,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmagus----abent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:29:34','darshan','2025-12-22 18:43:24'),(11458,0,0,3314,3228,6947,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:34:18','','0000-00-00 00:00:00'),(11459,0,0,2955,2880,6965,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---mild positional giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:39:00','','0000-00-00 00:00:00'),(11461,0,0,2955,2880,6965,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:40:23','','0000-00-00 00:00:00'),(11463,0,0,4579,4457,6949,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:45:25','','0000-00-00 00:00:00'),(11464,0,0,4579,4457,6949,0,0,NULL,'','CC','ZZZ','Remark','RIGHT EAR HEAVINESS ---OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:45:48','','0000-00-00 00:00:00'),(11465,0,0,4579,4457,6949,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>RTM---small central perforation dry</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:46:04','','0000-00-00 00:00:00'),(11467,0,0,4552,4433,6902,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VERTIGO WORK UP','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-22 12:47:38','','0000-00-00 00:00:00'),(11468,0,0,4579,4457,6949,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS HRCT TEMPORAL BONE ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:48:09','','0000-00-00 00:00:00'),(11469,0,0,4580,4458,6950,0,0,NULL,'','CC','ZZZ','Remark','THROAT IRRITATION-----1 MONTH||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:50:15','','0000-00-00 00:00:00'),(11470,0,0,4580,4458,6950,0,0,NULL,'','CC','ZZZ','Remark','BURNING SENSATION IN THROAT ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:50:15','','0000-00-00 00:00:00'),(11471,0,0,4580,4458,6950,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>phx--congested&thinsp;</p>\n\n<p>neck---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:50:25','','0000-00-00 00:00:00'),(11472,0,0,4591,4469,6967,0,0,NULL,'','DIAG','ZZZ','Remark','L4 L5 DISC SPACE REDUCED','','',0,'0000-00-00 00:00:00','drsagar','2025-12-22 12:51:28','','0000-00-00 00:00:00'),(11473,0,0,4581,4459,6952,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:55:11','darshan','2025-12-22 12:57:15'),(11474,0,0,4581,4459,6952,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---10-12 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:55:42','','0000-00-00 00:00:00'),(11475,0,0,4581,4459,6952,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---bialtelr high freq severe sn deafness</p>\n\n<p>stabiloemtyr--reduced vestibular score</p>\n\n<p>vng--Right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:57:27','darshan','2025-12-22 14:18:25'),(11476,0,0,4581,4459,6952,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:57:31','','0000-00-00 00:00:00'),(11477,0,0,4582,4460,6953,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurrence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 12:59:57','','0000-00-00 00:00:00'),(11478,0,0,4582,4460,6953,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:00:03','','0000-00-00 00:00:00'),(11479,0,0,4582,4460,6953,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:00:24','','0000-00-00 00:00:00'),(11481,0,0,4582,4460,6953,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:00:42','','0000-00-00 00:00:00'),(11482,0,0,4232,4120,6940,0,0,NULL,'','PLAN','ZZZ','Remark','14','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:02:53','','0000-00-00 00:00:00'),(11483,0,0,4583,4461,6954,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n\n<p>occassional positional giddiness</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:06:13','','0000-00-00 00:00:00'),(11484,0,0,4583,4461,6954,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:06:53','','0000-00-00 00:00:00'),(11486,0,0,4583,4461,6954,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:07:09','','0000-00-00 00:00:00'),(11487,0,0,4585,4463,6958,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ----15-20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:12:13','','0000-00-00 00:00:00'),(11488,0,0,4585,4463,6958,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS OCCASSIONAL ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:12:13','','0000-00-00 00:00:00'),(11489,0,0,4585,4463,6958,0,0,NULL,'','HIST','ZZZ','Remark','<p>heaviness of head with headache&thinsp;</p>\n\n<p>sense of rotation +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:12:33','','0000-00-00 00:00:00'),(11490,0,0,4585,4463,6958,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:12:48','','0000-00-00 00:00:00'),(11491,0,0,4541,312,6882,0,0,NULL,'','ADVICE','','','<P>ADVISE HOSPITALIZATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 13:16:25','mo','2025-12-22 13:30:13'),(11492,0,0,4602,4478,6980,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----5 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:17:47','','0000-00-00 00:00:00'),(11493,0,0,4602,4478,6980,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaowtyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:18:23','','0000-00-00 00:00:00'),(11494,0,0,4602,4478,6980,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---abssent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta-----bilateral moderate to severe sn deafness</p>\n\n<p>vng----biateral vestibulopathy with bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:18:34','darshan','2025-12-22 14:26:40'),(11496,0,0,4541,312,6882,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MERO</P>\r\n\r\n<P>TAB LINOX</P>\r\n\r\n<P>INJ PANTODEC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>TAB THYRONORM</P>\r\n\r\n<P>INJ NAHCO3</P>\r\n\r\n<P>TAB CREMALAX&nbsp;</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 13:18:54','mo','2025-12-22 13:30:13'),(11498,0,0,4571,4449,6930,0,0,NULL,'','MADVICE','ZZZ','Remark','SALT/ SUGAR/ OIL RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-22 13:20:45','','0000-00-00 00:00:00'),(11499,0,0,4561,4440,6918,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:22:38','','0000-00-00 00:00:00'),(11501,0,0,4604,4480,6982,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of&thinsp; rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head {+</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:27:20','darshan','2025-12-22 18:31:42'),(11502,0,0,4604,4480,6982,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO -----2 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:27:27','','0000-00-00 00:00:00'),(11503,0,0,4604,4480,6982,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:29:20','','0000-00-00 00:00:00'),(11504,0,0,4572,4450,6933,0,0,NULL,'','CC','ZZZ','Remark','URTI | 5 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-22 13:30:07','','0000-00-00 00:00:00'),(11505,0,0,4572,4450,6933,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-22 13:30:11','','0000-00-00 00:00:00'),(11506,0,0,4563,4442,6920,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:33:06','','0000-00-00 00:00:00'),(11508,0,0,4589,4466,6962,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---</p>\n\n<p>self medication since last 3 yrs&thinsp;</p>\n\n<p>positional giddiness +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:38:34','','0000-00-00 00:00:00'),(11509,0,0,4589,4466,6962,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabiloametry---reduced vestibular score</p>\n\n<p>vng----left hz canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:38:49','darshan','2025-12-22 14:48:08'),(11510,0,0,4589,4466,6962,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV WITH PHOBIA','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:39:47','','0000-00-00 00:00:00'),(11511,0,0,4339,314,6892,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>BUPREGESIC PATCH IN SITU (DAY-2)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 13:41:52','mo','2025-12-22 13:42:06'),(11512,0,0,4339,314,6892,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 15 DAYS</P>\r\n\r\n<P>COMPLETE BED REST</P>\r\n\r\n<P>WEAR TYLOR&#39;S BRACE</P>\r\n\r\n<P>ADVICE LOG ROLL</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 13:41:52','mo','2025-12-22 13:42:06'),(11513,0,0,4339,314,6892,0,0,NULL,'','TREATDISC_TI','','','<P>TAB OTRA-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 15 DAYS</P>\r\n\r\n<P>TAB ROXIZOLE DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; FOR 15 DAYS</P>\r\n\r\n<P>TAB MYORIL MAX&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 15 DAYS</P>\r\n\r\n<P>TAB NEVRIX LC&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 15 DAYS</P>\r\n\r\n<P>VEEMED D3 SACHET................EVERY SUNDAY.............(2)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 13:41:52','mo','2025-12-22 13:42:06'),(11514,0,0,4573,4451,6934,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:45:20','','0000-00-00 00:00:00'),(11517,0,0,4561,4440,6918,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:47:03','','0000-00-00 00:00:00'),(11519,0,0,4563,4442,6920,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEUVER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 13:50:28','','0000-00-00 00:00:00'),(11520,0,0,4590,4468,6966,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW WEEKS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:03:42','','0000-00-00 00:00:00'),(11521,0,0,4590,4468,6966,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling mainly on&thinsp; change of posture</p>\n\n<p>heaviness of head _+</p>\n\n<p>no associated other cns symtpsm o</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:04:17','','0000-00-00 00:00:00'),(11522,0,0,4590,4468,6966,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>stabiloemtry--reduced vestibular score</p>\n\n<p>vng---left hz canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:04:30','darshan','2025-12-22 15:01:12'),(11525,0,0,4599,4475,6976,0,0,NULL,'','DIAG','ZZZ','Remark','RT  BREAST ABSCESS','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-22 14:06:13','','0000-00-00 00:00:00'),(11526,0,0,4173,285,6165,0,0,NULL,'','DISCCOND','','','<P>VERTIGO</P>\r\n\r\n<P>HOSPITALIZATION</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 14:09:25','mo','2025-12-22 14:09:28'),(11527,0,0,4173,285,6165,0,0,NULL,'','TREATDISC_TI','','','<P>INJ EPIME TZ (1.125 GM)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BD</P>\r\n\r\n<P>INJPANTODAC (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BD</P>\r\n\r\n<P>INJ EMSET (2 ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TDS</P>\r\n\r\n<P>TAB ECOSPRIN (150 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0</P>\r\n\r\n<P>TAB LIPITAS (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0</P>\r\n\r\n<P>TAB STAGLIM M2&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1</P>\r\n\r\n<P>TAB STUGERON PLUS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1</P>\r\n\r\n<P>TAB PIAGLITAZONE (15 MG)&nbsp; &nbsp; &nbsp; &nbsp;1--0--1</P>\r\n\r\n<P>TAB WYSOLONE (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0</P>\r\n\r\n<P>TAB PANGRAF (3.5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1</P>\r\n\r\n<P>TAB VALGAN (450 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0</P>\r\n\r\n<P>TAB SEDTRANOS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1/2--0</P>\r\n\r\n<P>TAB CELLCEPT (1000 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1</P>\r\n\r\n<P>TAB AMLODAC (5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0 @ BP</P>\r\n\r\n<P>TAB NICARDIA-R&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS</P>\r\n\r\n<P>PEGRED POWDER (2 TSF)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TDS</P>\r\n\r\n<P>FDSON OINTMENT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 14:09:25','mo','2025-12-22 14:09:28'),(11528,0,0,4607,4483,6985,0,0,NULL,'','DIAG','ZZZ','Remark','RT LOIN PAIN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-22 14:12:54','','0000-00-00 00:00:00'),(11529,0,0,4584,4462,6955,0,0,NULL,'','DIAG','ZZZ','Remark','GERD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-22 14:13:26','','0000-00-00 00:00:00'),(11530,0,0,4594,4471,6970,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----20 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:13:30','','0000-00-00 00:00:00'),(11531,0,0,4594,4471,6970,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of sense of imbalance and giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:13:38','','0000-00-00 00:00:00'),(11532,0,0,4594,4471,6970,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus----absent</p>\n\n<p>hit--nad</p>\n\n<p>dix halpike---nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:14:07','','0000-00-00 00:00:00'),(11534,0,0,4594,4471,6970,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:14:54','','0000-00-00 00:00:00'),(11535,0,0,4581,4459,6952,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:18:52','','0000-00-00 00:00:00'),(11537,0,0,4602,4478,6980,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:27:15','','0000-00-00 00:00:00'),(11540,0,0,4573,4451,6934,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:28:54','','0000-00-00 00:00:00'),(11541,0,0,4596,4473,6972,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case----giddiness since 15 days&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:37:56','','0000-00-00 00:00:00'),(11542,0,0,4596,4473,6972,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---nystagmus---absent</p>\n\n<p>dix halpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:38:22','','0000-00-00 00:00:00'),(11544,0,0,4596,4473,6972,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:39:31','','0000-00-00 00:00:00'),(11545,0,0,4601,4477,6979,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:43:51','darshan','2025-12-22 15:18:21'),(11546,0,0,4601,4477,6979,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---5 YRS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:44:06','','0000-00-00 00:00:00'),(11547,0,0,4601,4477,6979,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:44:09','','0000-00-00 00:00:00'),(11548,0,0,4589,4466,6962,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:48:29','','0000-00-00 00:00:00'),(11550,0,0,4597,4474,6973,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:52:31','','0000-00-00 00:00:00'),(11551,0,0,4597,4474,6973,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:52:49','','0000-00-00 00:00:00'),(11552,0,0,4597,4474,6973,0,0,NULL,'','CC','ZZZ','Remark','HEAVINESS OF HEAD +||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:52:49','','0000-00-00 00:00:00'),(11553,0,0,4597,4474,6973,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:53:16','','0000-00-00 00:00:00'),(11555,0,0,4581,4459,6952,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 14:55:03','','0000-00-00 00:00:00'),(11556,0,0,4590,4468,6966,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 15:01:20','','0000-00-00 00:00:00'),(11557,0,0,4590,4468,6966,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 15:01:55','','0000-00-00 00:00:00'),(11559,0,0,4606,4482,6984,0,0,NULL,'','CC','ZZZ','Remark','RIGHT FACIAL PAIN----OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 15:08:12','','0000-00-00 00:00:00'),(11560,0,0,4606,4482,6984,0,0,NULL,'','CC','ZZZ','Remark','NASAL BLOCAKGE ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 15:08:12','','0000-00-00 00:00:00'),(11561,0,0,4606,4482,6984,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nose--clear&thinsp;</p>\n\n<p>phx---clear</p>\n\n<p>ct pns---right maxillary , ethamoidal and sphenoid mucosal thickening&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 15:08:41','darshan','2025-12-23 11:37:08'),(11564,0,0,4589,4466,6962,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 15:13:01','','0000-00-00 00:00:00'),(11565,0,0,4601,4477,6979,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nads</p>\n\n<p>hit--nad</p>\n\n<p>pta---bialteral moderate sn deafness</p>\n\n<p>stabilotmry---reduced vestibular score</p>\n\n<p>vng---left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 15:19:08','','0000-00-00 00:00:00'),(11566,0,0,4601,4477,6979,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 15:19:30','','0000-00-00 00:00:00'),(11569,0,0,4602,4478,6980,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 15:20:27','','0000-00-00 00:00:00'),(11571,0,0,4590,4468,6966,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 15:22:13','','0000-00-00 00:00:00'),(11573,0,0,4601,4477,6979,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 15:27:05','','0000-00-00 00:00:00'),(11574,0,0,4515,311,6843,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO URINARY COMPLAIN</P>\r\n\r\n<P>ABLE TO WALK WITH CRUTCH</P>\r\n\r\n<P>FOLEY&#39;S IN SITU (DAY-4, NO-14)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 16:17:24','mo','2025-12-22 21:19:39'),(11575,0,0,4515,311,6843,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 10 DAYS TO DR ROSHAN MISTRY</P>\r\n\r\n<P>FOLLOW UP AFTER 2&nbsp;DAYS TO DR MEET JAGANI (UROLOGIST)</P>\r\n\r\n<P>CONTINUW OWN MEDICINE</P>\r\n\r\n<P>DAILY FOLEY&#39;S CARE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 16:17:24','mo','2025-12-22 21:19:39'),(11576,0,0,4515,311,6843,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZIFI CV (200 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB LEVOFLOX (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB PANTOCID DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp;FOR 10 DAYS</P>\r\n\r\n<P>TAB MIRBEG (50 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 10&nbsp;DAYS</P>\r\n\r\n<P>TAB SILDOSIN (8 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 10&nbsp;DAYS</P>\r\n\r\n<P>TAB ETOLOK TH (60 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 10&nbsp;DAYS</P>\r\n\r\n<P>TAB LIMEVITA K&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 10&nbsp;DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>CONTINUE OWN MEDICINE:</STRONG></P>\r\n\r\n<P>TAB ROSUTOR A (75 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>TAB TELMIRIDE MT (50 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 16:22:36','mo','2025-12-22 21:19:39'),(11577,0,0,4564,320,6922,0,0,NULL,'','DISCDIAG','','','<P><STRONG>OPERATED CASE OF PERIANAL ABSCESS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 16:28:39','mo','2025-12-22 20:04:48'),(11578,0,0,4564,320,6922,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 32 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NAD<BR />\r\nH/O: OPERATED CASE OF PERIANAL ABSCESS (02/12/2025)&nbsp;</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR DRESSING UNDER GA AND FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-84/MIN<BR />\r\nBP-110/80MMHG<BR />\r\nSPO2-97% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.<BR />\r\nALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nDRESSING DONE BY DR PRATAPSINH DODIYA ON 22/12/2025 UNDER SEDATION&nbsp;WITH ALL ASEPTIC PRECAUTION<BR />\r\nPOST-OP PATIENT SHIFTED TO WARD.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 16:28:39','mo','2025-12-22 20:04:48'),(11579,0,0,4564,320,6922,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>DRESSING DONE BY DR PRATAPSINH DODIYA ON 22/12/2025 UNDER SEDATION&nbsp;WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 16:39:03','mo','2025-12-22 20:04:48'),(11580,0,0,4564,320,6922,0,0,NULL,'','OTNOTE','','','<p>-perianal abscess +</p>\r\n\r\n<p>-unhealthy granulation tissue, slough excised.</p>\r\n\r\n<p>-scrotal wall abscess collection drained</p>\r\n\r\n<p>-seton changed</p>\r\n\r\n<p>-hemostasis achieved</p>\r\n\r\n<p>-dressing kept</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 16:39:03','mo','2025-12-22 20:04:48'),(11581,0,0,2017,1969,6992,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 17:10:39','','0000-00-00 00:00:00'),(11582,0,0,91,80,6993,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---beter</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 17:13:27','','0000-00-00 00:00:00'),(11583,0,0,4099,3992,6994,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 17:16:03','','0000-00-00 00:00:00'),(11585,0,0,4099,3992,6994,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 17:16:45','','0000-00-00 00:00:00'),(11586,0,0,4069,3962,6990,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 17:19:04','','0000-00-00 00:00:00'),(11588,0,0,4069,3962,6990,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 17:19:35','','0000-00-00 00:00:00'),(11589,0,0,4612,4487,7002,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---3 DAYS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 17:26:35','','0000-00-00 00:00:00'),(11590,0,0,4612,4487,7002,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 17:27:03','darshan','2025-12-22 17:30:08'),(11591,0,0,4612,4487,7002,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--wnl</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 17:30:20','darshan','2025-12-22 18:54:48'),(11593,0,0,1977,1929,6997,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 17:33:45','','0000-00-00 00:00:00'),(11594,0,0,4102,3995,7000,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 17:42:37','','0000-00-00 00:00:00'),(11596,0,0,4102,3995,7000,0,0,NULL,'','MADVICE','ZZZ','Remark','CT MANVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 17:44:02','','0000-00-00 00:00:00'),(11597,0,0,4614,4489,7006,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of short duration positional giddiness without any cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 17:47:33','darshan','2025-12-22 17:50:06'),(11598,0,0,4614,4489,7006,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---15 DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 17:47:53','','0000-00-00 00:00:00'),(11599,0,0,4614,4489,7006,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 17:50:24','darshan','2025-12-22 19:06:32'),(11600,0,0,4614,4489,7006,0,0,NULL,'','DIAG','ZZZ','Remark','BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 17:50:25','','0000-00-00 00:00:00'),(11601,0,0,2359,2302,7008,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 17:53:10','','0000-00-00 00:00:00'),(11602,0,0,4615,4490,7007,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---vertigo +</p>\n\n<p>positional giddiness +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 17:54:48','darshan','2025-12-22 18:03:54'),(11603,0,0,4615,4490,7007,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:04:11','','0000-00-00 00:00:00'),(11604,0,0,4344,4229,6998,0,0,NULL,'','CC','ZZZ','Remark','URTI--BETTER||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-22 18:04:36','drjayant','2025-12-22 18:09:36'),(11605,0,0,4615,4490,7007,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:04:42','','0000-00-00 00:00:00'),(11608,0,0,4615,4490,7007,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:05:19','','0000-00-00 00:00:00'),(11609,0,0,4344,4229,6998,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-22 18:09:27','drjayant','2025-12-22 18:09:41'),(11610,0,0,4124,4016,7012,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drjayant','2025-12-22 18:12:29','','0000-00-00 00:00:00'),(11611,0,0,4124,4016,7012,0,0,NULL,'','CC','ZZZ','Remark','BETTER||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-22 18:12:34','','0000-00-00 00:00:00'),(11612,0,0,1887,1841,6999,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:12:51','','0000-00-00 00:00:00'),(11613,0,0,1887,1841,6999,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left ear discharge&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:13:19','','0000-00-00 00:00:00'),(11614,0,0,4124,4016,7012,0,0,NULL,'','HIST','ZZZ','Remark','<p>F&#39;UP AC HEPATITIS</p>\n\n<p>ON T METOPROLOL 25</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-22 18:14:34','drjayant','2025-12-22 18:15:18'),(11615,0,0,4616,4491,7009,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:17:23','','0000-00-00 00:00:00'),(11616,0,0,1964,1916,7016,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:19:55','','0000-00-00 00:00:00'),(11618,0,0,4555,4436,6909,0,0,NULL,'','MADVICE','ZZZ','Remark','2D ECHO ','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-22 18:23:47','','0000-00-00 00:00:00'),(11619,0,0,4621,4495,7020,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---15 DAYS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:26:06','','0000-00-00 00:00:00'),(11620,0,0,4621,4495,7020,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of giddiness any time and remains for few seconds to mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:28:36','','0000-00-00 00:00:00'),(11621,0,0,4621,4495,7020,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced ss score</p>\n\n<p>vng--right post canal bppv with vm</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:28:49','darshan','2025-12-22 19:28:00'),(11625,0,0,4604,4480,6982,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:32:23','','0000-00-00 00:00:00'),(11626,0,0,4604,4480,6982,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:32:51','','0000-00-00 00:00:00'),(11628,0,0,4604,4480,6982,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:33:07','','0000-00-00 00:00:00'),(11629,0,0,4603,4479,6981,0,0,NULL,'','CC','ZZZ','Remark','C/O ABD PAIN | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-22 18:33:40','','0000-00-00 00:00:00'),(11630,0,0,4623,4497,7024,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ARM PAIN','','',0,'0000-00-00 00:00:00','drsagar','2025-12-22 18:36:14','','0000-00-00 00:00:00'),(11632,0,0,3824,4467,6963,0,0,NULL,'','MADVICE','ZZZ','Remark','SURGEONS\'S FOLLOW UP FOR DRESSING ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-22 18:38:59','','0000-00-00 00:00:00'),(11633,0,0,4564,320,6922,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 18:40:10','mo','2025-12-22 20:04:48'),(11634,0,0,4564,320,6922,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAY</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 18:40:10','mo','2025-12-22 20:04:48'),(11635,0,0,4564,320,6922,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ LACTAGARD</P>\r\n\r\n<P>INJ PANTODAC</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 18:40:10','mo','2025-12-22 20:04:48'),(11636,0,0,4564,320,6922,0,0,NULL,'','TREATDISC_TI','','','<P>TAB CEFTUM (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE&nbsp;FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB AKILOS P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>SYP CREMAFFIN PLUS (15 ML) &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 18:40:10','mo','2025-12-22 20:04:48'),(11637,0,0,4578,4456,6946,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:43:55','','0000-00-00 00:00:00'),(11639,0,0,4578,4456,6946,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:45:06','','0000-00-00 00:00:00'),(11640,0,0,4624,4498,7027,0,0,NULL,'','MADVICE','ZZZ','Remark','WEAR MASK ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-22 18:46:43','','0000-00-00 00:00:00'),(11641,0,0,3835,3732,7030,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:47:04','','0000-00-00 00:00:00'),(11642,0,0,3835,3732,7030,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:47:25','','0000-00-00 00:00:00'),(11644,0,0,3835,3732,7030,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:48:25','','0000-00-00 00:00:00'),(11645,0,0,4628,4502,7037,0,0,NULL,'','CC','ZZZ','Remark','URTI | 15 DAYS|','','',0,'0000-00-00 00:00:00','drjayant','2025-12-22 18:48:26','drjayant','2025-12-22 19:44:53'),(11646,0,0,4628,4502,7037,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>RS- CLEAR</p>\n','','',0,'0000-00-00 00:00:00','drjayant','2025-12-22 18:48:44','','0000-00-00 00:00:00'),(11647,0,0,4100,3993,7033,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:50:21','','0000-00-00 00:00:00'),(11648,0,0,4100,3993,7033,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:50:43','','0000-00-00 00:00:00'),(11650,0,0,4100,3993,7033,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:51:07','','0000-00-00 00:00:00'),(11651,0,0,4612,4487,7002,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 18:55:22','','0000-00-00 00:00:00'),(11653,0,0,4588,321,6961,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PYREXIA UNDER INVETIGATION, (?) LRTI</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 18:59:13','mo','2025-12-22 19:00:15'),(11654,0,0,4588,321,6961,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 30 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN SINCE 2.5 YEARS<BR />\r\nO/H/O: 8 MONTH AMENORRHEA, G2P0L0A1<BR />\r\nC/O: THROAT IRRITATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; FEVER WITH CHILL</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NASAL BLOCKAGE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; HEAVINESS OF HEAD</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 2-3 DAYS FOR THAT PT PRIMARY CONSULTED DR VIPUL BODA&nbsp;SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-130/MIN<BR />\r\nBP-128/84MMHG<BR />\r\nSPO2-98% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT, FOETUS PALPABLE</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\nURINE R/M DONE 21/12/2025 WHICH S/O PUS CELL: 8-10, KETONE (++)</P>\r\n\r\n<P>PATIENT SENT TO GYNECOLOGIST FOR REGULAR CHECK UP<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT&#39;S CONDITION AND PROGNOSIS EXPLAINED TO RELATIVE BUT THEY REFUSED AND WANT DISCHARGE AGAINST MEDICALADVICE, SO PT IS BEING DAMA.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 18:59:13','mo','2025-12-22 19:00:15'),(11655,0,0,4588,321,6961,0,0,NULL,'','DISCCOND','','','<P>THROAT PAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 18:59:13','mo','2025-12-22 19:00:15'),(11656,0,0,4588,321,6961,0,0,NULL,'','ADVICE','','','<P>HOSPITALLISATION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 18:59:13','mo','2025-12-22 19:00:15'),(11657,0,0,4588,321,6961,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ OFRAMAX&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BD</P>\r\n\r\n<P>TAB CLARIBID&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1</P>\r\n\r\n<P>INJ PANTODAC&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; OD</P>\r\n\r\n<P>INJ VOMISET&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SOS</P>\r\n\r\n<P>INJ INFUPAR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SOS</P>\r\n\r\n<P>TAB CETRIZINE COLD&nbsp; &nbsp; &nbsp;1--1--1</P>\r\n\r\n<P>SYP RESWAS (5 ML)&nbsp; &nbsp; &nbsp; &nbsp; 1--1--1</P>\r\n\r\n<P>INJ ELDERVIT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; OD</P>\r\n\r\n<P>IV FLUID</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 18:59:13','mo','2025-12-22 19:00:15'),(11658,0,0,4626,4500,7034,0,0,NULL,'','CC','ZZZ','Remark','C/O HEADACHE | 10 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-22 18:59:37','','0000-00-00 00:00:00'),(11659,0,0,4588,321,6961,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 19:00:13','mo','2025-12-22 19:00:15'),(11660,0,0,4062,3954,7042,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:01:48','','0000-00-00 00:00:00'),(11661,0,0,4062,3954,7042,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:02:17','','0000-00-00 00:00:00'),(11663,0,0,4062,3954,7042,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:03:17','','0000-00-00 00:00:00'),(11664,0,0,4614,4489,7006,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:07:04','','0000-00-00 00:00:00'),(11667,0,0,4612,4487,7002,0,0,NULL,'','MADVICE','ZZZ','Remark','SM MANEUVER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:11:22','','0000-00-00 00:00:00'),(11668,0,0,4630,4504,7040,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--medicine skipped&thinsp;</p>\n\n<p>k/c/o---endolymphatic hydrps&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:14:11','','0000-00-00 00:00:00'),(11670,0,0,4630,4504,7040,0,0,NULL,'','MADVICE','ZZZ','Remark','INJ STEMETIL IM STAT','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:16:13','','0000-00-00 00:00:00'),(11671,0,0,4635,4509,7049,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:22:55','','0000-00-00 00:00:00'),(11672,0,0,4600,324,6978,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ICD CODE:</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 19:23:00','mo','2025-12-22 20:24:47'),(11673,0,0,4600,324,6978,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 58 YEARS OLD FEMALE&nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM, HTN<BR />\r\nH/O: HERNIOPLASTY BEFORE 7-8 YR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; HYSTERECTOMY (DUE TO PERFORATION)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; URETHRAL STRICTURE (2022)</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; RE EXPLORATION OF LAPAROTOMY &AMP; ILEOSTOMY DONE</P>\r\n\r\n<P>NOW,PATIENT CAME HERE FOR ILEOSTOMY REPAIR UNDER SEADATION FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-87/MIN<BR />\r\nBP-132/84MMHG<BR />\r\nSPO2-95% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\nALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nDRESSING OF LAPAROTOMY WOUND + ILEOSTOMY SITE DRESSING DONE BY DR PRATAPSINH DODIYA ON 22/12/2025 UNDER SEDATION&nbsp;WITH ALL ASEPTIC PRECAUTION<BR />\r\nPOST-OP PATIENT SHIFTED TO WARD.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 19:23:00','mo','2025-12-22 20:24:47'),(11674,0,0,4635,4509,7049,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associted other cns symtposm&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:23:23','','0000-00-00 00:00:00'),(11675,0,0,4635,4509,7049,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hti---nad</p>\n\n<p>pta---wnl</p>\n\n<p>vng---left post canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:23:42','darshan','2025-12-22 19:57:20'),(11678,0,0,4614,4489,7006,0,0,NULL,'','MADVICE','ZZZ','Remark','BD MANEUVER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:29:57','','0000-00-00 00:00:00'),(11679,0,0,3530,3433,7052,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---no impromvent&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:35:27','','0000-00-00 00:00:00'),(11680,0,0,3530,3433,7052,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:35:40','','0000-00-00 00:00:00'),(11682,0,0,4628,4502,7037,0,0,NULL,'','CC','ZZZ','Remark','FEVER BEFORE 15 DAYS||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-22 19:44:53','','0000-00-00 00:00:00'),(11684,0,0,4628,4502,7037,0,0,NULL,'','MADVICE','ZZZ','Remark','WEAR MASK ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-22 19:46:42','','0000-00-00 00:00:00'),(11685,0,0,4633,4507,7046,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden giddiness feeling remains for few mins to hrs&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated othercns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:50:10','darshan','2025-12-22 19:54:08'),(11686,0,0,4633,4507,7046,0,0,NULL,'','DIAG','ZZZ','Remark','VM WITH PSY','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:53:20','','0000-00-00 00:00:00'),(11687,0,0,4633,4507,7046,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---6-7 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:53:45','','0000-00-00 00:00:00'),(11688,0,0,4633,4507,7046,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus--absent</p>\n\n<p>dix hallpike--nads</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:54:28','','0000-00-00 00:00:00'),(11689,0,0,4635,4509,7049,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT POST CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:57:22','','0000-00-00 00:00:00'),(11690,0,0,4635,4509,7049,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-22 19:57:56','','0000-00-00 00:00:00'),(11693,0,0,4635,4509,7049,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-22 20:01:24','','0000-00-00 00:00:00'),(11694,0,0,4600,324,6978,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 20:02:44','mo','2025-12-22 20:24:47'),(11695,0,0,4600,324,6978,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 20:02:44','mo','2025-12-22 20:24:47'),(11696,0,0,4600,324,6978,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ EPIME TZ</P>\r\n\r\n<P>INJ PANTO&nbsp;</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ INFUPAR</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 20:02:44','mo','2025-12-22 20:24:47'),(11697,0,0,4600,324,6978,0,0,NULL,'','TREATDISC_TI','','','<P>INJ EPIME TZ (1.125 GM/100 NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;9AM-----9PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS (10 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB RIFAGUT (200 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; BEFORE&nbsp;FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB CALPOL (500 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>ALOMOS PROTEIN POWDER (2 TSF)&nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP ZINCOVIT (2 TSF)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; AFTER FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>CONTINUE OWN MEDICINE:</STRONG></P>\r\n\r\n<P>TAB DAPARYL (10/5)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1</P>\r\n\r\n<P>TAB STAGLIM M2&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 20:02:44','mo','2025-12-22 20:24:47'),(11698,0,0,4564,320,6922,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 20:04:48','','0000-00-00 00:00:00'),(11699,0,0,4600,324,6978,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 20:13:42','mo','2025-12-22 20:24:47'),(11700,0,0,4600,324,6978,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>DRESSING OF LAPAROTOMY WOUND + ILEOSTOMY SITE DRESSING DONE BY DR PRATAPSINH DODIYA ON 22/12/2025 UNDER SEDATION&nbsp;WITH ALL ASEPTIC PRECAUTION</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 20:13:42','mo','2025-12-22 20:24:47'),(11701,0,0,4600,324,6978,0,0,NULL,'','OTNOTE','','','<p>-slough &amp; dead skin excision done</p>\r\n\r\n<p>-linea alba slough out excised</p>\r\n\r\n<p>-loose skin stitches taken</p>\r\n\r\n<p>-ileostomy site retraction present</p>\r\n\r\n<p>-macocutaneous stitches taken under local anaesthesia</p>\r\n\r\n<p>-ileostomy bag fit</p>\r\n\r\n<p>-risk &amp; development of hernia explained</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 20:13:42','mo','2025-12-22 20:24:47'),(11702,0,0,3601,243,5120,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>RT NO:16 D:2 IN SITU</P>\r\n\r\n<P>FOLEY&#39;S CATHTER NO:14 D:6 IN SITU</P>\r\n\r\n<P>TLC CATHETER D:17 IN SITU</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>OCCASIONALLY DROWSINESS BUT AROUSABLE</P>\r\n\r\n<P>INTERMITTENT BACKPAIN (H/O:OLD SPINE INJURY)</P>\r\n\r\n<P>URINE OUTPUT ADEQUATE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 22:05:36','mo','2025-12-22 22:27:40'),(11703,0,0,3601,243,5120,0,0,NULL,'','TREATDISC_TI','','','<P>INJ.EPIME-TZ (1.125 IN 100 ML NS)&nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 2 DAYS&nbsp; &nbsp; &nbsp; &nbsp; 9AM-9PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (4 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB.FAMCYCLOVIR (250MG)&nbsp; &nbsp; &nbsp; RT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 2 DAYS............. (5)</P>\r\n\r\n<P>TAB.LACOSAM (50MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; RT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS..............(10)</P>\r\n\r\n<P>TAB.SPORLAC&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; RT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-1-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS..............(15)</P>\r\n\r\n<P>TAB.TORESCI PLUS (20MG)&nbsp; &nbsp; &nbsp; &nbsp;RT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS..............(5)</P>\r\n\r\n<P>TAB.NEMODEP (30)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;RT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2-2-2-2&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS.............(40)</P>\r\n\r\n<P>TAB.MODALERT (100)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;RT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-1/2-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS.............(10)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>CANDID MOUTH PAINT..................FOR LOCAL APPLICATION-ORAL ULCER&nbsp; &nbsp; &nbsp; &nbsp;TWICE A DAY&nbsp;</P>\r\n\r\n<P>NEOSPORIN OINTMENT................FOR LOCAL APPLICATION-BED SORE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TWICE A DAY</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>INJ.RITUXIMAB (500MG IN 100ML NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ON THURSDAY................(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 22:15:47','mo','2025-12-22 22:27:40'),(11704,0,0,3601,243,5120,0,0,NULL,'','ADVICE','','','<P>RTF: 200ML/2 HOURLY AS EXPLAINED</P>\r\n\r\n<P>FOLEY&#39;S CATHETER CARE AS EXPLAINED</P>\r\n\r\n<P>TLC CARE</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PLAN: CT ANGIO AFTER STABILIZATION</P>\r\n\r\n<P>REPEAT MRI AFTER 10-14 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-22 22:27:16','mo','2025-12-22 22:27:40'),(11705,0,0,4285,316,6899,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX;</P>\r\n\r\n<P>VAGINAL HYSTERECTOMY + ANTERIOR AND POSTERIOR REPAIR + VAULT SUSPENSION DONE BY DR SHIPLEN GONDALIYA&nbsp; ON 21/12/25 UNDER GENERAL ANAESTHESIA&nbsp;WITH ALL ASEPTIC PRECAUTIONS.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 01:44:10','mo','2025-12-23 16:11:38'),(11706,0,0,4285,316,6899,0,0,NULL,'','OTNOTE','','','<p>per-op findings:</p>\r\n\r\n<p>-vaginal hysterectomy done</p>\r\n\r\n<p>-cystocele repair + rectocele repair done</p>\r\n\r\n<p>-vault suspension done under uterosacrals</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 01:44:10','mo','2025-12-23 16:11:38'),(11707,0,0,4617,326,7010,0,0,NULL,'','DISCDIAG','','','<P><STRONG>PERIANAL ABSCESS</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 01:52:46','mo','2025-12-23 14:41:50'),(11708,0,0,4617,326,7010,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-23 01:52:46','mo','2025-12-23 14:41:50'),(11709,0,0,4617,326,7010,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 39 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: NO ANY COMORBIDITY<BR />\r\nC/O: PAIN AND SWELLING AT ANAL REGION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;PUS DISCHARGE P/R</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NO BLEEDING P/R</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NO CONSTIPATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FEVER ON AND OFF SINCE 4-5 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;COUGH &AMP; COLD</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 3-4 DAYS SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-102/MIN<BR />\r\nBP-124/74MMHG<BR />\r\nSPO2-97% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.<BR />\r\nALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nINCISION AND DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 22/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION<BR />\r\nPOST-OP PATIENT SHIFTED TO WARD.</P>\r\n\r\n<P>PUS CS SENT<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 01:52:46','mo','2025-12-23 14:41:50'),(11710,0,0,4617,326,7010,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX;</P>\r\n\r\n<P>INCISION AND DRAINAGE DONE BY DR PRATAPSINH DODIYA ON 22/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 01:52:46','mo','2025-12-23 14:41:50'),(11711,0,0,4617,326,7010,0,0,NULL,'','OTNOTE','','','<p>per-op findinds;</p>\r\n\r\n<p>-perianal abscess at 1 to 2 o&#39;clock position</p>\r\n\r\n<p>-incision kept</p>\r\n\r\n<p>-all pus and slough drained</p>\r\n\r\n<p>-internal opening at 12 o&#39;clock position</p>\r\n\r\n<p>-seton kept</p>\r\n\r\n<p>-cavity clean with betadin and h2o2</p>\r\n\r\n<p>-hemostsis achieved</p>\r\n\r\n<p>-dressing kept.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 01:52:46','mo','2025-12-23 14:41:50'),(11712,0,0,4617,326,7010,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACATAGRD</P>\r\n\r\n<P>INJ.METROGYL</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>INJ.DYNAPAR AQ</P>\r\n\r\n<P>BUPREGESIC PATCH</P>\r\n\r\n<P>SYP.CREMAFFIN PLUS</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 01:52:46','mo','2025-12-23 14:41:50'),(11713,0,0,4484,309,6769,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ACUTE BRONCHITIS WITH SECONDARY INFECTION&nbsp;</STRONG></P>\r\n\r\n<P><STRONG>IN CASE OF DM,HTN</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 01:56:39','mo','2025-12-23 16:43:45'),(11714,0,0,4484,309,6769,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><BR />\r\n<BR />\r\n&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 01:56:39','mo','2025-12-23 16:43:45'),(11715,0,0,4484,309,6769,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A&nbsp; 66 YEARS OLD MALE PATIENT PRESENT WITH,<BR />\r\nH/O : HEMATURIA BEFORE 5 DAYS AGO.<BR />\r\nK/C/O: DM -II, HTN ON RX SICNE 7 YEARS.<BR />\r\nC/O: SEVERE BREATHLESNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;HIGH GRADE FEVER WITH RIGOR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;GENERALIZED WEAKNESS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ANOREXIA</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS SINCE 10-12&nbsp; DAYS .<BR />\r\nPRIMARY TREATMENT TAKEN AT AIMS HOSPITAL RAJKOT.<BR />\r\nNOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P><BR />\r\nO/E:&nbsp;<BR />\r\nTEMP- 101.2`F<BR />\r\nPR- 123/MIN<BR />\r\nBP- 120/70MMHG&nbsp;<BR />\r\nSPO2-&nbsp; 75% ON RA&nbsp;<BR />\r\nRR- 35/MIN</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>S/E:<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C,<BR />\r\nRS - RIGHT LOWER AIR ENTERY ABSENT, TACHYPNEA<BR />\r\nCVS-S1S2+, TACHYCARDIA<BR />\r\nP/A-SOFT</P>\r\n\r\n<P>WITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN ICU AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>19-12-2025,<BR />\r\nPRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.</P>\r\n\r\n<P>IN VIEW OF HYPOXIA O2 SUPORT GIVEN VIA MASK.</P>\r\n\r\n<P>ECG DONE.</P>\r\n\r\n<P>CHEST X RAY DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>20-12-2025,&nbsp;</P>\r\n\r\n<P>2D ECHO DONE - REPORT ATTACH WITH FILE.</P>\r\n\r\n<P>SPUTUM R/M DONE WHICH S/O: PUS CELL: 8-10, GRAM POSITIVE COCCI SEEN</P>\r\n\r\n<P>SPUTUM CS SENT WHICH S/O NO GROWTH</P>\r\n\r\n<P>O2 SUPPORT TAPPER.</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21-12-2025,</P>\r\n\r\n<P>PATIENT IS CONSIOUS, ORIENTED.</P>\r\n\r\n<P>O2 SUPPORT STOP.</P>\r\n\r\n<P>ICU STAY UNENVTFULL, PATIENT SHIFT TO WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22-12-25</P>\r\n\r\n<P>REQUIRED BLOOD INVESTIGATION DONE AND TREATMENT MODIFY ACCORDINGLY.</P>\r\n\r\n<P>PATIENT GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23/12/25</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 01:56:39','mo','2025-12-23 16:43:45'),(11716,0,0,4611,325,6991,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ICD CODE:</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 02:07:46','mo','2025-12-23 02:07:46'),(11717,0,0,4611,325,6991,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 02:07:46','mo','2025-12-23 02:07:46'),(11718,0,0,4611,325,6991,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 63 YEARS OLD MALE&nbsp; &nbsp;PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM TYPE 2 SINCE 10 YEARS<BR />\r\nC/O: FEVER WITH CHILL AND RIGOR</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NAUSEA AND VOMITING BEFORE 3 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; ANOREXIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BURNING MICTURATION</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 3-4 DAYS&nbsp;SO NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-78/MIN<BR />\r\nBP-120/78MMHG<BR />\r\nSPO2-97% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\n<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 02:07:46','mo','2025-12-23 02:07:46'),(11719,0,0,4611,325,6991,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.ZOSTUM</P>\r\n\r\n<P>TAB.LINOX</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.VOMISET</P>\r\n\r\n<P>INJ.INFUPAR</P>\r\n\r\n<P>TAB.GLIMEFINE MV2 FORTE</P>\r\n\r\n<P>TAB.ALSITA MP</P>\r\n\r\n<P>TAB.ROSUNEL&nbsp;</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 02:07:46','mo','2025-12-23 02:07:46'),(11720,0,0,3698,317,6900,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ICD CODE:</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 02:14:00','mo','2025-12-23 17:01:30'),(11721,0,0,3698,317,6900,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-23 02:14:00','mo','2025-12-23 17:01:30'),(11722,0,0,3698,317,6900,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 79 YEARS OLD MALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, IHD, SEVERE LVD (15-20 % LVEF), DCMP, OLD CVA, BPH<BR />\r\nH/O: RECENT ADMISSION FOR FLUID OVERLOAD<BR />\r\nC/O: HEMATURIA</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; BURNING MICTURATION</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DECREASED URINE OUTPUT</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO FEVER</P>\r\n\r\n<P>FOR ALL ABOVE MENTIONED COMPLAINTS PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-82/MIN<BR />\r\nBP-110/70MMHG<BR />\r\nSPO2-94% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>21/12/2025,</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\nURINE R/M DONE,WHICH S/O; PC:10-12 CELLS/HPF, RBCS: PLENTY OF</P>\r\n\r\n<P>URINE C/S SENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>22/12/2025,</P>\r\n\r\n<P>USG KUB DONE, REPORT ATTACHED WITH FILE.</P>\r\n\r\n<P>S.PSA DONE WHICH IS O.46 NG/ML</P>\r\n\r\n<P>REFERENCE OF DR PRATIK SHAH DONE AND FOLLOW HIS ALL ADVICE.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>23/12/2025,</P>\r\n\r\n<P>IN VIEW OF LOW PROTEIN INJ ALBUMIN GIVEN.</P>\r\n\r\n<P><SPAN STYLE=\"FONT-SIZE:11PT\">URINE R/M DONE </SPAN><SPAN STYLE=\"FONT-SIZE:11PT\">WHICH S/O:&nbsp;</SPAN></P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>PATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 02:14:00','mo','2025-12-23 17:01:30'),(11723,0,0,3698,317,6900,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.CEFCON</P>\r\n\r\n<P>CAP.MAC RD</P>\r\n\r\n<P>TAB.SODACON</P>\r\n\r\n<P>TAB.TAMWELL</P>\r\n\r\n<P>TAB.TORKID</P>\r\n\r\n<P>TAB.DVTAS</P>\r\n\r\n<P>TAB.BISPAC</P>\r\n\r\n<P>TAB.PEGCLEAR</P>\r\n\r\n<P>TAB.ECOTOR GOLD</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 02:14:00','mo','2025-12-23 17:01:30'),(11724,0,0,4560,319,6917,0,0,NULL,'','DISCDIAG','','','<P><STRONG>FISTULA IN ANO</STRONG></P>\r\n\r\n<P><STRONG>K/C/O: DM TYPE 2, DYDLIPIDEMIA, HYPOTHYROIDISM</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 02:20:37','mo','2025-12-23 12:43:40'),(11725,0,0,4560,319,6917,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','','','',0,'0000-00-00 00:00:00','mo','2025-12-23 02:20:37','mo','2025-12-23 12:43:40');
INSERT INTO `pc_enc_dtl` VALUES (11726,0,0,4560,319,6917,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 57 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: DM TYPE 2, DYDLIPIDEMIA, HYPOTHYROIDISM<BR />\r\nC/O: PAIN IN ANUS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; PUS DISCHARGE FROM SITE</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; CONSTIPATION&nbsp;</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; NO BLEEDING P/R</P>\r\n\r\n<P>ALL ABOVE MENTIONED COMPLAINTS PRESENTED SINCE 1 MONTH FOR THAT PATIENT PRIMARILY CONSULTED AT OPD BASED AND&nbsp;NOW,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-82/MIN<BR />\r\nBP-120/80MMHG<BR />\r\nSPO2-97% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT<BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.<BR />\r\nALL REQUIRED PRE-OP BLOOD INVESTIGATION DONE<BR />\r\nPHYSICIAN FITNESS GIVEN BY DR.ARCHIT RATHOD (MD MEDICINE &AMP; INTENSIVIST)<BR />\r\nFISTULECTOMY DONE BY DR PRATAPSINH DODIYA ON 22/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION<BR />\r\nPOST-OP PATIENT SHIFTED TO WARD.<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 02:20:37','mo','2025-12-23 12:43:40'),(11727,0,0,4560,319,6917,0,0,NULL,'','SURGERY_PROCEDURE_PERFORMED','','','<P>MX;</P>\r\n\r\n<P>FISTULECTOMY DONE BY DR PRATAPSINH DODIYA ON 22/12/2025 UNDER SPINAL ANAESTHESIA WITH ALL ASEPTIC PRECAUTION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 02:20:37','mo','2025-12-23 12:43:40'),(11728,0,0,4560,319,6917,0,0,NULL,'','OTNOTE','','','<p>per-op findings;</p>\r\n\r\n<p>-fistula in ano</p>\r\n\r\n<p>-external opening at 6 o&#39;clock position</p>\r\n\r\n<p>-internal opening at 6 o&#39;clock position near anal verge</p>\r\n\r\n<p>-fistulectomy done</p>\r\n\r\n<p>-hemostsis achieved</p>\r\n\r\n<p>-dressing kept.</p>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 02:20:37','mo','2025-12-23 12:43:40'),(11729,0,0,4560,319,6917,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ.LACTAGARD</P>\r\n\r\n<P>INJ.METROGYL</P>\r\n\r\n<P>INJ.PANTODAC</P>\r\n\r\n<P>INJ.EMSET</P>\r\n\r\n<P>INJ.DYNAPAR AQ</P>\r\n\r\n<P>SYP.CREMAFFIN PLUS</P>\r\n\r\n<P>IV FLUIDS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 02:20:37','mo','2025-12-23 12:43:40'),(11730,0,0,4593,322,6969,0,0,NULL,'','DISCDIAG','','','<P><STRONG>ICD CODE:</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 02:25:01','mo','2025-12-23 02:25:01'),(11731,0,0,4593,322,6969,0,0,NULL,'','MEDICAL_SURGICAL_HISTORY','','','<P><STRONG>PAST SURGICAL HISTORY</STRONG><BR />\r\n<BR />\r\n<BR />\r\n<STRONG>PAST MEDICAL HISTORY</STRONG></P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 02:25:01','mo','2025-12-23 02:25:01'),(11732,0,0,4593,322,6969,0,0,NULL,'','HISTHOSPCOURSE','','','<P>A 80 YEARS OLD FEMALE PATIENT PRESENTED WITH,<BR />\r\nK/C/O: HTN, DYSLIPIDEMIA<BR />\r\nC/O: COUGH &AMP; COLD SINCE 4-5 DAYS</P>\r\n\r\n<P>&nbsp; &nbsp; &nbsp; &nbsp; DOE SINCE 2 DAYS.</P>\r\n\r\n<P>FOR ALL ABOVE MENTIONED COMPLAINTS ,PATIENT CAME HERE FOR FURTHER TREATMENT AND MANAGEMENT.</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>O/E:<BR />\r\nTEMP-AFEBRILE&nbsp;<BR />\r\nPR-120/MIN<BR />\r\nBP-118/78MMHG<BR />\r\nSPO2-92% ON RA<BR />\r\nRR-22/MIN</P>\r\n\r\n<P>S/E:</P>\r\n\r\n<P>RS-BLAE+<BR />\r\nCVS-S1S2+<BR />\r\nCNS-CONSCIOUS AND ORIENTED F/V/C<BR />\r\nP/A-SOFT</P>\r\n\r\n<P><BR />\r\nWITH ABOVE MENTIONED CHIEF COMPLAINTS AND GENERAL PHYSICAL EXAMINATIONS PATIENT WAS ADMITTED IN WARD AND TREATMENT STARTED.</P>\r\n\r\n<P>PRIMARY BLOOD INVESTIGATION DONE AND TREATMENT MODIFIED ACCORDINGLY.<BR />\r\n<BR />\r\nPATIENT&#39;S GENERAL CONDITION OBSERVED IN WARD.</P>\r\n\r\n<P>PATIENT RESPONDS WELL WITH ONGOING TREATMENT</P>\r\n\r\n<P>NOW PATIENT IS HAVING NO ANY FRESH COMPLAINTS AND VITALLY STABLE<BR />\r\n&nbsp;SO CONSIDER FOR DISCHARGE IN HEMODYNAMICALLY STABLE CONDITION.</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 02:25:01','mo','2025-12-23 02:25:01'),(11733,0,0,4490,310,6780,0,0,NULL,'','DISCCOND','','','<P>ADVICE HOSPITALIZATION</P>\r\n\r\n<P>TAKE REST</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 09:21:48','mo','2025-12-23 13:10:49'),(11734,0,0,4490,310,6780,0,0,NULL,'','ADVICE','','','<P>DAILY DRESSING</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 09:21:48','mo','2025-12-23 13:10:49'),(11735,0,0,4490,310,6780,0,0,NULL,'','TREATDISC_TI','','','<P>INJ TAZOMAC (4.5 GM/ 100 NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 7AM--3PM--10PM&nbsp; &nbsp; &nbsp; &nbsp; FOR 2 DAYS (7 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB DALACIN C (300 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB CHYMORAL FORTE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--1--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 09:25:19','mo','2025-12-23 13:10:49'),(11736,0,0,4650,4523,7076,0,0,NULL,'','DIAG','ZZZ','Remark','BACK PAIN WITH RIGHT LOWER LIMB RADICULAR PAIN','','',0,'0000-00-00 00:00:00','drridham','2025-12-23 10:48:54','','0000-00-00 00:00:00'),(11737,0,0,4649,4522,7075,0,0,NULL,'','DIAG','ZZZ','Remark','BACK PAI WITH LEFT LOWER LIMB RADICULAR PAIN','','',0,'0000-00-00 00:00:00','drridham','2025-12-23 10:49:26','','0000-00-00 00:00:00'),(11738,0,0,4644,4518,7068,0,0,NULL,'','DIAG','ZZZ','Remark','HEAD INJURY WITH CLW CLOSURE','','',0,'0000-00-00 00:00:00','drridham','2025-12-23 10:49:54','','0000-00-00 00:00:00'),(11739,0,0,4648,4521,7073,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---2 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 10:52:42','','0000-00-00 00:00:00'),(11740,0,0,4648,4521,7073,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset any time and repeated&thinsp;</p>\n\n<p>it remains for few mins to hrs&thinsp;</p>\n\n<p>left ear deafness and tinnitus +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 10:53:46','darshan','2025-12-23 10:56:20'),(11741,0,0,4648,4521,7073,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus--absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>Mri brain limited study--no SOL or CVA</p>\n\n<p>pta---left severe sn deafness</p>\n\n<p>stabilomtry---reduced vestibular score</p>\n\n<p>vng--left labyrinthine pathology</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 10:56:40','darshan','2025-12-23 12:55:14'),(11743,0,0,683,653,7074,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 10:59:41','','0000-00-00 00:00:00'),(11744,0,0,1499,1458,7077,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:02:02','darshan','2025-12-23 11:03:27'),(11745,0,0,170,157,7078,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----medicine skipped&thinsp;</p>\n\n<p>recurrence of headache and vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:08:55','','0000-00-00 00:00:00'),(11746,0,0,4550,315,6898,0,0,NULL,'','DISCCOND','','','<P>HYPOTENSION</P>\r\n\r\n<P>FOLEY&#39;S IN SITU (DAY-3, NO-14)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 11:11:14','mo','2025-12-23 12:22:07'),(11747,0,0,4550,315,6898,0,0,NULL,'','ADVICE','','','<P>HOSPITALIZATION</P>\r\n\r\n<P>BP MONITORING</P>\r\n\r\n<P>DAILY FOLEY&#39;S CARE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 11:11:14','mo','2025-12-23 12:22:07'),(11748,0,0,4654,4527,7085,0,0,NULL,'','CC','ZZZ','Remark','NO C/O ||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-23 11:12:13','','0000-00-00 00:00:00'),(11750,0,0,4654,4527,7085,0,0,NULL,'','MADVICE','ZZZ','Remark','SALT/ OIL RESTRICTED DIET ','','9999.9',0,'0000-00-00 00:00:00','drjayant','2025-12-23 11:16:38','','0000-00-00 00:00:00'),(11751,0,0,4138,4031,7080,0,0,NULL,'','HIST','ZZZ','Remark','<p>folow up case--partially better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:18:59','','0000-00-00 00:00:00'),(11752,0,0,4138,4031,7080,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:19:22','','0000-00-00 00:00:00'),(11754,0,0,4138,4031,7080,0,0,NULL,'','MADVICE','ZZZ','Remark','RIGHT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:20:22','','0000-00-00 00:00:00'),(11755,0,0,4652,4525,7081,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo--sudden onset of rotaotyr feeling any time and remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>frequent headache for few hrs&thinsp;</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:22:37','darshan','2025-12-23 11:31:20'),(11756,0,0,4662,4535,7095,0,0,NULL,'','CC','ZZZ','Remark','NO C/O||','','',0,'0000-00-00 00:00:00','drjayant','2025-12-23 11:28:09','','0000-00-00 00:00:00'),(11757,0,0,4652,4525,7081,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW MONTHS OFF  AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:30:20','','0000-00-00 00:00:00'),(11758,0,0,4652,4525,7081,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE---MANY MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:30:20','','0000-00-00 00:00:00'),(11759,0,0,4652,4525,7081,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>VNG--bppv (o)</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>CCG----AP displacment out of N</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:31:32','darshan','2025-12-23 13:52:45'),(11762,0,0,4666,4539,7099,0,0,NULL,'','CC','ZZZ','Remark','C/O COUGH | 10 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-23 11:36:47','','0000-00-00 00:00:00'),(11763,0,0,4660,4533,7091,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---4-5 YRS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:50:40','','0000-00-00 00:00:00'),(11764,0,0,4660,4533,7091,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE --FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:50:40','','0000-00-00 00:00:00'),(11766,0,0,4657,4530,7088,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-12-23 11:51:03','drarchit','2025-12-23 12:38:04'),(11767,0,0,4657,4530,7088,0,0,NULL,'','EXAMIN','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-12-23 11:51:12','drarchit','2025-12-23 12:43:03'),(11769,0,0,4660,4533,7091,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo---sudden onset of rotaotyr feeling when pt is in any posture he feels imbalance sesne&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:51:22','','0000-00-00 00:00:00'),(11770,0,0,4660,4533,7091,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta----bilateral high freq severe sn deafness</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng---central variety of nystagmus&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:51:39','darshan','2025-12-23 13:09:33'),(11774,0,0,4659,4532,7090,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ---MANY MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:53:06','','0000-00-00 00:00:00'),(11775,0,0,4659,4532,7090,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache --remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptoms</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:53:37','','0000-00-00 00:00:00'),(11776,0,0,4659,4532,7090,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n\n<p>vng---central vareity of nystamgus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:53:48','darshan','2025-12-23 13:23:12'),(11777,0,0,4659,4532,7090,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:53:52','','0000-00-00 00:00:00'),(11778,0,0,4668,4541,7102,0,0,NULL,'','CC','ZZZ','Remark','POSTED FOR TOOTH EXTRACTION||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-23 11:54:55','','0000-00-00 00:00:00'),(11779,0,0,4668,4541,7102,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO C/O DOE&thinsp;</p>\n\n<p>NO C/O CHEST PAIN</p>\n\n<p>NO OTHER COMPLAINT</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-23 11:55:07','','0000-00-00 00:00:00'),(11780,0,0,4668,4541,7102,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALLY NAD</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-23 11:55:29','','0000-00-00 00:00:00'),(11781,0,0,4653,4526,7082,0,0,NULL,'','CC','ZZZ','Remark','LEFT EAR PAIN WITH DISCHARGE ----1 WEEK||','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:56:13','','0000-00-00 00:00:00'),(11782,0,0,4668,4541,7102,0,0,NULL,'','PLAN','ZZZ','Remark','16','','',0,'0000-00-00 00:00:00','drarchit','2025-12-23 11:56:18','','0000-00-00 00:00:00'),(11784,0,0,4653,4526,7082,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>left ear full of dischare&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:56:26','','0000-00-00 00:00:00'),(11785,0,0,4668,4541,7102,0,0,NULL,'','MADVICE','ZZZ','Remark','HOLD ROSULESS A 2 DAYS BEFORE PROCEDURE AND START 1 ST POST OP DAY','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-23 11:56:50','','0000-00-00 00:00:00'),(11786,0,0,4669,4542,7105,0,0,NULL,'','CC','ZZZ','Remark','C/O COUGH  | 5 DAYS|','','',0,'0000-00-00 00:00:00','drarchit','2025-12-23 11:57:07','','0000-00-00 00:00:00'),(11787,0,0,958,927,7083,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 11:58:55','','0000-00-00 00:00:00'),(11788,0,0,4646,4519,7070,0,0,NULL,'','CC','ZZZ','Remark','C/O COUGH ||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-23 11:59:33','','0000-00-00 00:00:00'),(11789,0,0,4646,4519,7070,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-12-23 11:59:33','','0000-00-00 00:00:00'),(11790,0,0,4646,4519,7070,0,0,NULL,'','CC','ZZZ','Remark','C/O BODYACHE||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-23 11:59:41','','0000-00-00 00:00:00'),(11791,0,0,4672,4545,7109,0,0,NULL,'','CC','ZZZ','Remark','C/O ABD PAIN ||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-23 12:02:27','','0000-00-00 00:00:00'),(11792,0,0,4672,4545,7109,0,0,NULL,'','HIST','ZZZ','Remark','','','',0,'0000-00-00 00:00:00','drarchit','2025-12-23 12:02:29','drarchit','2025-12-23 12:02:35'),(11793,0,0,4672,4545,7109,0,0,NULL,'','CC','ZZZ','Remark','C/O BACKACHE||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-23 12:02:34','','0000-00-00 00:00:00'),(11794,0,0,4667,4540,7100,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---recurence of vertigo&thinsp;</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:09:15','','0000-00-00 00:00:00'),(11795,0,0,4667,4540,7100,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit---nad</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng--right acute partial vest ibular deficit</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:09:29','darshan','2025-12-23 13:31:00'),(11797,0,0,3561,3462,7104,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:11:48','','0000-00-00 00:00:00'),(11798,0,0,3561,3462,7104,0,0,NULL,'','PLAN','ZZZ','Remark','14','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:12:37','','0000-00-00 00:00:00'),(11799,0,0,4655,4528,7086,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---headache with giddiness&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:16:24','','0000-00-00 00:00:00'),(11800,0,0,4655,4528,7086,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystmgus---absent</p>\n\n<p>dix hallpike--nasd</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:16:35','','0000-00-00 00:00:00'),(11802,0,0,4655,4528,7086,0,0,NULL,'','MADVICE','ZZZ','Remark','SOS VESTIBULAR IX','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:17:23','','0000-00-00 00:00:00'),(11803,0,0,4661,4534,7094,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO---FEW MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:24:11','','0000-00-00 00:00:00'),(11804,0,0,4661,4534,7094,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo ---sudden onset of rotatory feeling with headach remains for few mins&thinsp;</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:24:13','darshan','2025-12-23 12:24:52'),(11805,0,0,4661,4534,7094,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:24:21','','0000-00-00 00:00:00'),(11806,0,0,4661,4534,7094,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit-nad</p>\n\n<p>pta---wnl</p>\n\n<p>stabilometry--reduced vestibular score</p>\n\n<p>vng---central varitey of nystagmus</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:25:04','darshan','2025-12-23 13:47:19'),(11809,0,0,4661,4534,7094,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:25:11','','0000-00-00 00:00:00'),(11810,0,0,3188,3101,7103,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better partialy&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:36:22','','0000-00-00 00:00:00'),(11811,0,0,4657,4530,7088,0,0,NULL,'','CC','ZZZ','Remark','C/O BURNING IN MICTURATION||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-23 12:38:26','drarchit','2025-12-23 12:42:54'),(11812,0,0,4560,319,6917,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>HOT SITZ BATH</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 12:40:43','mo','2025-12-23 12:43:40'),(11813,0,0,4560,319,6917,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZIFI-O&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ULPAN DSR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>SYP CREMAFFIN PLUS (10 ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>LOX JELLY 2%&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR&nbsp; &nbsp; &nbsp; &nbsp;L/A&nbsp; &nbsp; &nbsp; &nbsp;BEFORE DEFECATION</P>\r\n\r\n<P>METROGYL P OINTMENT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp; &nbsp; &nbsp; &nbsp;L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER DEFECATION</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>CONTINUE OWN MEDICINE:</STRONG></P>\r\n\r\n<P>TAB NIRGLIM M (2/0.3)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1</P>\r\n\r\n<P>TAB SITEOS TRIO FORTE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--1--0</P>\r\n\r\n<P>TAB ROSENIR&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>TAB THYRONORM (125)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 12:40:43','mo','2025-12-23 12:43:40'),(11814,0,0,4665,4538,7098,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----2.5 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:45:08','','0000-00-00 00:00:00'),(11815,0,0,4670,4543,7106,0,0,NULL,'','DIAG','ZZZ','Remark','GERD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-23 12:45:33','','0000-00-00 00:00:00'),(11816,0,0,4665,4538,7098,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo --sudden onset of rotaotyr feeling any time on change of posture</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symptmos&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:45:38','','0000-00-00 00:00:00'),(11817,0,0,4665,4538,7098,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus----absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta---left moderate mixed deafness</p>\n\n<p>stabiloemtry---reduced vestibular score</p>\n\n<p>vng--left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:45:56','darshan','2025-12-23 13:55:56'),(11819,0,0,622,592,7113,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--- recurence of vertigo</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:49:02','','0000-00-00 00:00:00'),(11820,0,0,4674,4547,7111,0,0,NULL,'','DIAG','ZZZ','Remark','CONSTIPATION','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-23 12:50:07','','0000-00-00 00:00:00'),(11821,0,0,4675,4548,7114,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:51:48','','0000-00-00 00:00:00'),(11822,0,0,4648,4521,7073,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 12:55:17','','0000-00-00 00:00:00'),(11823,0,0,4671,4544,7108,0,0,NULL,'','HIST','ZZZ','Remark','<p>NO C/O DOE&thinsp;</p>\n\n<p>NO C/O FEVER</p>\n\n<p>NO C/O CHEST PAIN</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-23 12:56:55','drarchit','2025-12-23 12:57:27'),(11824,0,0,4671,4544,7108,0,0,NULL,'','CC','ZZZ','Remark','POSTED FOR LEFT KNEE TKR||','','',0,'0000-00-00 00:00:00','drarchit','2025-12-23 12:57:11','','0000-00-00 00:00:00'),(11825,0,0,4656,4529,7087,0,0,NULL,'','DIAG','ZZZ','Remark','GERD','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-23 12:57:13','','0000-00-00 00:00:00'),(11826,0,0,4656,4529,7087,0,0,NULL,'','DIAG','ZZZ','Remark','DM','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-23 12:57:19','','0000-00-00 00:00:00'),(11827,0,0,4656,4529,7087,0,0,NULL,'','DIAG','ZZZ','Remark','HTN','','',0,'0000-00-00 00:00:00','drpratapsi','2025-12-23 12:57:23','','0000-00-00 00:00:00'),(11828,0,0,4671,4544,7108,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>CLINICALLY NAD</p>\n\n<p>ECG- S. TACHYCARDIA</p>\n\n<p>IX NOTED NORMAL</p>\n','','',0,'0000-00-00 00:00:00','drarchit','2025-12-23 12:58:28','','0000-00-00 00:00:00'),(11831,0,0,4671,4544,7108,0,0,NULL,'','MADVICE','ZZZ','Remark','PATIENT CAN BE TAKEN FOR SURGERY WITH DUE ANESTHETIC DRUGS AND SURGICAL RISK\nCONTINUE OLD MEDICATION AS PER PRESCRIPTION','','9999.9',0,'0000-00-00 00:00:00','drarchit','2025-12-23 12:59:57','','0000-00-00 00:00:00'),(11832,0,0,4676,4549,7115,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----8 MONTHS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 13:04:43','','0000-00-00 00:00:00'),(11833,0,0,4676,4549,7115,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic vertigo--sudden onset of rotaotyr feeling when pt change her position</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpsom&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 13:05:27','','0000-00-00 00:00:00'),(11834,0,0,4676,4549,7115,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>pta--wnl</p>\n\n<p>stabiloemtry--reduced vestibular score&#39;</p>\n\n<p>vng---left hz canal bppv&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 13:05:47','darshan','2025-12-23 14:02:36'),(11836,0,0,4678,4551,7119,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO----FEW MONTHS OFF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 13:19:40','','0000-00-00 00:00:00'),(11837,0,0,4678,4551,7119,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotaotyr feeling on change of posture</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 13:19:59','','0000-00-00 00:00:00'),(11838,0,0,4678,4551,7119,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystamgus---absent</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>stabilometry---reduced vestibular score</p>\n\n<p>vng-left post canal bppv</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 13:20:09','darshan','2025-12-23 14:37:51'),(11839,0,0,4678,4551,7119,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT PSOT CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 13:20:17','','0000-00-00 00:00:00'),(11840,0,0,4617,326,7010,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n\r\n<P>BUPREGESIC PATCH IN SITU (DAY-1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 13:28:53','mo','2025-12-23 14:41:50'),(11841,0,0,4617,326,7010,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>HOT SITZ BATH</P>\r\n\r\n<P>DAILY DRESSING</P>\r\n\r\n<P>PUS CS AWAITED</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 13:28:53','mo','2025-12-23 14:41:50'),(11842,0,0,4667,4540,7100,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ACUTE PARTIAL VESTIBULAR DEFICIT','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 13:31:15','','0000-00-00 00:00:00'),(11843,0,0,4617,326,7010,0,0,NULL,'','TREATDISC_TI','','','<P>TAB ZENFLOX OZ&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB DOMPAN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL SP&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>SYP CREMAFFIN PLUS (10 ML)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0--0--1&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>METROGYL P OINTMENT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; FOR&nbsp; &nbsp; &nbsp;L/A&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER DEFECATION.......(1)</P>\r\n\r\n<P>SAVLON SOLUTION...................(1)</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 13:31:55','mo','2025-12-23 14:41:50'),(11844,0,0,4682,4555,7124,0,0,NULL,'','CC','ZZZ','Remark','RIGTH EAR DEAFNESS-----1 YR||','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 13:37:15','','0000-00-00 00:00:00'),(11845,0,0,4682,4555,7124,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>Btm---i/n</p>\n\n<p>pta---right ear high freq severe sn deafness (O)</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 13:37:40','darshan','2025-12-23 14:43:53'),(11846,0,0,4285,316,6899,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>ORAL DIET TOLERATING</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 13:50:30','mo','2025-12-23 16:11:38'),(11847,0,0,4285,316,6899,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n\r\n<P>CONTINUE OWN MEDICINE</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 13:50:30','mo','2025-12-23 16:11:38'),(11848,0,0,4665,4538,7098,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 13:56:29','','0000-00-00 00:00:00'),(11850,0,0,4676,4549,7115,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT HZ CANAL BPPV','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 14:02:41','','0000-00-00 00:00:00'),(11851,0,0,4676,4549,7115,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 14:03:08','','0000-00-00 00:00:00'),(11853,0,0,4285,316,6899,0,0,NULL,'','TREATDISC_TI','','','<P>INJ LACTAGARD (1.5 GM/DIL)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;9AM-----9PM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR 2 DAYS (5 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB METRO ER (600 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp;FOR 2 DAYS (5 TAB)</P>\r\n\r\n<P>TAB NEXPROFAST (40 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0&nbsp; &nbsp; &nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ZERODOL-P&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5&nbsp;DAYS</P>\r\n\r\n<P>SYP DUPHALAC (2TSF)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; FOR 5&nbsp;DAYS</P>\r\n\r\n<P>TAB ZOFER MD (4 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;SOS&nbsp; FOR VOMITING.............(5 TAB)</P>\r\n\r\n<P>DETTOL SOLUTION&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FOR&nbsp; &nbsp; &nbsp; &nbsp;L/A&nbsp; &nbsp; &nbsp; &nbsp;3-4 TIMES A DAY</P>\r\n\r\n<P>BETADINE ONTMENT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FOR&nbsp; &nbsp; &nbsp; &nbsp;L/A&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 3&nbsp;&nbsp;TIMES A DAY</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P><STRONG>CONTINUE OWN MEDICINE:</STRONG></P>\r\n\r\n<P>TAB TELMIRIDE AMH&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1--0--0</P>\r\n\r\n<P>TAB TELMIRIDE MT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--0--1</P>\r\n\r\n<P>TAB GLYCOMET GP2 (500/2)&nbsp; &nbsp; &nbsp; &nbsp;0--0--1/2</P>\r\n\r\n<P>TAB LINAXA&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0</P>\r\n\r\n<P>TAB OXRA (50 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1--0--0</P>\r\n\r\n<P>TAB PERIBITE (50 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0--1--0</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 14:06:47','mo','2025-12-23 16:11:38'),(11855,0,0,4665,4538,7098,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANEUVER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-23 14:08:30','','0000-00-00 00:00:00'),(11856,0,0,58,51,7128,0,0,NULL,'','HIST','ZZZ','Remark','<p>follwo up up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 14:12:23','','0000-00-00 00:00:00'),(11857,0,0,4683,4556,7129,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---medicine skipped&thinsp;</p>\n\n<p>recurence of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 14:15:56','','0000-00-00 00:00:00'),(11858,0,0,4684,4557,7130,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----6 MONTHS 3 EPISODES ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 14:34:17','','0000-00-00 00:00:00'),(11859,0,0,4684,4557,7130,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden giddiness with nausea and vomiting&thinsp;</p>\n\n<p>heaviness of head +</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 14:34:38','','0000-00-00 00:00:00'),(11860,0,0,4684,4557,7130,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---left beat</p>\n\n<p>dix hallpike--nad</p>\n\n<p>hit--nad</p>\n\n<p>MRI brain--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 14:34:59','darshan','2025-12-23 14:35:32'),(11861,0,0,4684,4557,7130,0,0,NULL,'','DIAG','ZZZ','Remark','RIGHT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 14:35:10','','0000-00-00 00:00:00'),(11862,0,0,4678,4551,7119,0,0,NULL,'','PLAN','ZZZ','Remark','13','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 14:38:29','','0000-00-00 00:00:00'),(11865,0,0,4676,4549,7115,0,0,NULL,'','MADVICE','ZZZ','Remark','GF MANEVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-23 14:39:43','','0000-00-00 00:00:00'),(11868,0,0,4682,4555,7124,0,0,NULL,'','MADVICE','ZZZ','Remark','GUARDED PROGNOSIS ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-23 14:45:52','','0000-00-00 00:00:00'),(11869,0,0,4685,4558,7131,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 14:50:56','','0000-00-00 00:00:00'),(11871,0,0,4678,4551,7119,0,0,NULL,'','MADVICE','ZZZ','Remark','LEFT SM MAENVUER ','','9999.9',0,'0000-00-00 00:00:00','darshan','2025-12-23 14:56:26','','0000-00-00 00:00:00'),(11872,0,0,4484,309,6769,0,0,NULL,'','ADVICE','','','<P>FOLLW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 15:25:11','mo','2025-12-23 16:43:45'),(11873,0,0,4484,309,6769,0,0,NULL,'','TREATGIVEN_TI','','','<P>INJ MERO</P>\r\n\r\n<P>TAB CLARIBID</P>\r\n\r\n<P>INJ PANTO&nbsp;</P>\r\n\r\n<P>INJ EMSET</P>\r\n\r\n<P>INJ PCM</P>\r\n\r\n<P>NEB DUOLIN BUDECORT</P>\r\n\r\n<P>INJ DERIPHYLLIN</P>\r\n\r\n<P>TAB MUCOSYS</P>\r\n\r\n<P>SYP RESWAS</P>\r\n\r\n<P>TAB BFOLVITE</P>\r\n\r\n<P>TAB BISOBIS</P>\r\n\r\n<P>TAB STAGLIM M2</P>\r\n\r\n<P>TAB ETOLOK-TH</P>\r\n\r\n<P>FORACORT ROTACORT</P>\r\n\r\n<P>&nbsp;</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 15:28:44','mo','2025-12-23 16:43:45'),(11874,0,0,4484,309,6769,0,0,NULL,'','TREATDISC_TI','','','<P>INJ.MEZOR(1GM/100 ML NS)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IV&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8AM--2PM--10PM&nbsp; &nbsp; &nbsp;FOR 2 DAYS (7 INJ)</P>\r\n\r\n<P>&nbsp;</P>\r\n\r\n<P>TAB DERIPHYLIN RETARD(300)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB NEXPRO FAST (40 MG)&nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BEFORE FOOD&nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB ZOFFER-MD(4)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1-1-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB MUCOSYS(600)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-1-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB BISOBIS (5 MG)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; 1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB BIFOLATE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0-1-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>TAB STAGLIM M2&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0-1-1&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; BEFORE FOOD&nbsp; &nbsp;&nbsp; &nbsp;FOR 5 DAYS</P>\r\n\r\n<P>TAB ETOLOK-TH&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>SYP RESWAS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 5ML-5ML-5ML&nbsp; &nbsp; &nbsp;AFTER FOOD&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n\r\n<P>FORACORT ROTACORT(200)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1-0-1&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; FOR 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 15:40:09','mo','2025-12-23 16:43:45'),(11875,0,0,4484,309,6769,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 16:43:42','mo','2025-12-23 16:43:45'),(11876,0,0,3698,317,6900,0,0,NULL,'','DISCCOND','','','<P>AFEBRILE</P>\r\n\r\n<P>NO ANY FRESH COMPLAIN</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 16:55:00','mo','2025-12-23 17:01:30'),(11877,0,0,3698,317,6900,0,0,NULL,'','ADVICE','','','<P>FOLLOW UP AFTER 5 DAYS</P>\r\n','','',0,'0000-00-00 00:00:00','mo','2025-12-23 16:55:00','mo','2025-12-23 17:01:30'),(11878,0,0,4687,4560,7135,0,0,NULL,'','CC','ZZZ','Remark','HEADACHE----FEW MONTHS||','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 17:20:17','','0000-00-00 00:00:00'),(11879,0,0,4687,4560,7135,0,0,NULL,'','CC','ZZZ','Remark','GIDDINESS ||','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 17:20:17','','0000-00-00 00:00:00'),(11880,0,0,4687,4560,7135,0,0,NULL,'','HIST','ZZZ','Remark','<p>episodic headache with giddiness ,headache remains for few mins to hrs&thinsp;</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 17:20:54','','0000-00-00 00:00:00'),(11881,0,0,4687,4560,7135,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike---nad</p>\n\n<p>hit--nad</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 17:21:07','','0000-00-00 00:00:00'),(11882,0,0,4687,4560,7135,0,0,NULL,'','DIAG','ZZZ','Remark','VM','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 17:21:10','','0000-00-00 00:00:00'),(11883,0,0,2055,2004,7136,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case---better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 17:23:37','','0000-00-00 00:00:00'),(11884,0,0,667,637,7138,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--single episode of vertigo&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 17:26:57','darshan','2025-12-23 17:28:00'),(11885,0,0,782,750,7133,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case--better</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 17:31:06','','0000-00-00 00:00:00'),(11886,0,0,4686,4559,7134,0,0,NULL,'','HIST','ZZZ','Remark','<p>sudden onset of rotatory feeling when pt is getting out of bed and lying down in bed</p>\n\n<p>heaviness of head +</p>\n\n<p>no associated other cns symtpoms&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 17:37:45','darshan','2025-12-23 17:40:58'),(11887,0,0,4686,4559,7134,0,0,NULL,'','CC','ZZZ','Remark','VERTIGO-----2-3 YRS OOF AND ON||','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 17:38:32','','0000-00-00 00:00:00'),(11888,0,0,4686,4559,7134,0,0,NULL,'','EXAMIN','ZZZ','Remark','<p>nystagmus---absent</p>\n\n<p>dix hallpike--nads</p>\n\n<p>hit-nad</p>\n\n<p>pta--left mild to moderate sn deafness(o)</p>\n\n<p>&thinsp;</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 17:41:12','darshan','2025-12-23 17:41:54'),(11889,0,0,4686,4559,7134,0,0,NULL,'','DIAG','ZZZ','Remark','LEFT ENDOLYMPHATIC HYDROPS','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 17:42:15','','0000-00-00 00:00:00'),(11890,0,0,2507,2448,7132,0,0,NULL,'','HIST','ZZZ','Remark','<p>follow up case----better</p>\n\n<p>follow up PTA---bialterl hearing withing normal limit</p>\n','','',0,'0000-00-00 00:00:00','darshan','2025-12-23 17:43:06','darshan','2025-12-23 17:45:56');
/*!40000 ALTER TABLE `pc_enc_dtl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pc_enc_grp_dtl`
--

DROP TABLE IF EXISTS `pc_enc_grp_dtl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pc_enc_grp_dtl` (
  `EGD_ID` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `EGD_Patient_ID` int(11) NOT NULL,
  `EGD_Case_ID` bigint(20) NOT NULL,
  `EGD_Encounter_ID` int(11) NOT NULL,
  `EGD_Grp` varchar(30) NOT NULL,
  `EGD_Code` int(11) NOT NULL,
  PRIMARY KEY (`EGD_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='patient encounter group details';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pc_enc_grp_dtl`
--

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

--
-- Table structure for table `pc_enc_grp_dtl_master`
--

DROP TABLE IF EXISTS `pc_enc_grp_dtl_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pc_enc_grp_dtl_master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `group_code` varchar(10) NOT NULL,
  `group_desc` varchar(30) NOT NULL,
  `dept_id` varchar(5) NOT NULL,
  `doctor_id` int(11) NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`group_code`,`group_desc`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pc_enc_grp_dtl_master`
--

LOCK TABLES `pc_enc_grp_dtl_master` WRITE;
/*!40000 ALTER TABLE `pc_enc_grp_dtl_master` DISABLE KEYS */;
INSERT INTO `pc_enc_grp_dtl_master` VALUES (0,0,'CC','BETTER','D27',0,'drjayant','2025-12-18 18:17:33'),(0,0,'CC','BILAT LL NEUROPATHIC PAIN INTE','D27',0,'drjayant','2025-12-20 12:47:29'),(0,0,'CC','BLEEDING P/R','D02',0,'anandt','2022-04-09 10:01:31'),(0,0,'CC','BOTH EAR DEAFNESS FEELING ---F','D06',0,'darshan','2025-12-18 17:06:15'),(0,0,'CC','BOTH EAR ITCHING ','D06',0,'darshan','2025-12-18 17:06:15'),(0,0,'CC','BOTH EAR PAIN---20 DAYS OFF AN','D06',0,'darshan','2025-12-18 18:49:08'),(0,0,'CC','BOTH EAR TINNITUS ----2 YRS ','D06',0,'darshan','2025-12-19 19:26:56'),(0,0,'CC','BURNING SENSATION IN THROAT ','D06',0,'darshan','2025-12-22 12:50:15'),(0,0,'CC','C/O ABD PAIN','D27',0,'drarchit','2025-12-22 18:33:40'),(0,0,'CC','C/O ABDOMINAL PAIN','D27',0,'drarchit','2025-12-19 19:25:31'),(0,0,'CC','C/O BACKACHE','D27',0,'drarchit','2025-12-23 12:02:34'),(0,0,'CC','C/O BODYACHE','D27',0,'drarchit','2025-12-23 11:59:41'),(0,0,'CC','C/O BURNING IN MICTURATION','D27',0,'drarchit','2025-12-23 12:38:26'),(0,0,'CC','C/O BURNING SOLE','D27',0,'drarchit','2025-12-19 19:38:33'),(0,0,'CC','C/O CHEST PAIN ','D27',0,'drarchit','2025-12-19 13:10:48'),(0,0,'CC','C/O CHEST PAIN RT LOWER COSTAL','D27',0,'drarchit','2025-12-19 13:09:32'),(0,0,'CC','C/O COUGH','D27',0,'drarchit','2025-12-20 12:47:08'),(0,0,'CC','C/O DIZZINESS ','D27',0,'drarchit','2025-12-18 18:49:12'),(0,0,'CC','C/O DOE','D27',0,'drarchit','2025-12-19 19:38:18'),(0,0,'CC','C/O EPIGASTRIC TENDERNESS ','D27',0,'drarchit','2025-12-16 18:58:48'),(0,0,'CC','C/O GABHRAMAN','D27',0,'drarchit','2025-12-19 13:10:48'),(0,0,'CC','C/O GIDDINESS ','D27',0,'drarchit','2025-12-20 12:43:16'),(0,0,'CC','C/O GYNECOMASTIA','D27',0,'drarchit','2025-12-17 11:55:43'),(0,0,'CC','C/O HEADACHE','D27',0,'drarchit','2025-12-22 18:59:37'),(0,0,'CC','C/O INSTABILITY OF GAIT','D27',0,'drarchit','2025-12-19 19:38:11'),(0,0,'CC','C/O NASAL DISCHARGE +','D27',0,'drarchit','2025-12-19 13:09:32'),(0,0,'CC','C/O NAUSEA','D27',0,'drarchit','2025-12-16 18:58:48'),(0,0,'CC','C/O NUMBNESS BOTH LL','D27',0,'drarchit','2025-12-16 18:20:39'),(0,0,'CC','C/O NUMBNESS BOTH UL AND LL','D27',0,'drarchit','2025-12-16 18:37:31'),(0,0,'CC','C/O PAIN BILATERAL INGUINAL SW','D27',0,'drarchit','2025-12-16 19:56:39'),(0,0,'CC','C/O PAIN BOTH LOWER LIMB','D27',0,'drarchit','2025-12-16 18:37:31'),(0,0,'CC','C/O PEDAL OEDEMA','D27',0,'drarchit','2025-12-20 12:55:42'),(0,0,'CC','C/O UNSTADINESS OF GAIT','D27',0,'drarchit','2025-12-16 18:37:31'),(0,0,'CC','C/O VOMTIING','D27',0,'drarchit','2025-12-19 19:26:05'),(0,0,'CC','COLD','D03',0,'sandip','2022-03-15 14:31:20'),(0,0,'CC','CONSTIPATION','D02',0,'drpratapsinh','2025-12-17 11:37:04'),(0,0,'CC','COUGHING INTERMITTENTLY','D27',0,'drjayant','2025-12-19 12:58:27'),(0,0,'CC','DELAYED MENSTRUATION','D02',0,'drpratapsinh','2025-12-17 10:56:58'),(0,0,'CC','DOE','D27',0,'drjayant','2025-12-16 19:04:53'),(0,0,'CC','DYSURIA ','D27',0,'drjayant','2025-12-19 11:27:36'),(0,0,'CC','EYE PAIN','D07',0,'sweety','2022-03-15 16:17:01'),(0,0,'CC','FEVER','D05',0,'madhav','2022-02-10 11:05:37'),(0,0,'CC','FEVER BEFORE 15 DAYS','D27',0,'drjayant','2025-12-22 19:44:53'),(0,0,'CC','FEVER, ABD PAIN','D27',0,'drjayant','2025-12-19 18:39:38'),(0,0,'CC','GIDDIENSS ----7-8 MONTHS','D06',0,'darshan','2025-12-19 11:37:48'),(0,0,'CC','GIDDIESS --5 DAYS ','D06',0,'darshan','2025-12-19 12:38:36'),(0,0,'CC','GIDDINESS','D06',0,'darshan','2025-12-19 18:02:38'),(0,0,'CC','GIDDINESS ---5 MONTHS ','D06',0,'darshan','2025-12-19 13:49:56'),(0,0,'CC','GIDDINESS --1 YRS','D06',0,'darshan','2025-12-22 11:21:42'),(0,0,'CC','GIDDINESS OCCASSIONAL ','D06',0,'darshan','2025-12-22 13:12:13'),(0,0,'CC','GIDDINESS-----1 YRS','D06',0,'darshan','2025-12-18 17:17:29'),(0,0,'CC','GIDDINESS-----FEW MONTHS OFF A','D06',0,'darshan','2025-12-22 11:12:20'),(0,0,'CC','GIDDINESS---1 WEEK','D06',0,'darshan','2025-12-17 18:33:21'),(0,0,'CC','GIDDINESS---2 DAYS ','D06',0,'darshan','2025-12-18 19:29:30'),(0,0,'CC','H/O BURNING ALL OVER BODY','D27',0,'drarchit','2025-12-17 19:26:26'),(0,0,'CC','H/O UNSTEADINESS OF GAIT','D27',0,'drarchit','2025-12-18 18:49:12'),(0,0,'CC','HEADACHE','D05',0,'madhav','2022-02-10 11:05:37'),(0,0,'CC','HEADACHE ------1 YRS ','D06',0,'darshan','2025-12-22 11:21:42'),(0,0,'CC','HEADACHE ------FEW MONTHS ','D06',0,'darshan','2025-12-19 13:49:56'),(0,0,'CC','HEADACHE ----15-20 DAYS ','D06',0,'darshan','2025-12-22 13:12:13'),(0,0,'CC','HEADACHE ---5 DAYS ','D06',0,'darshan','2025-12-19 12:38:36'),(0,0,'CC','HEADACHE ---FEW MONTHS ','D06',0,'darshan','2025-12-22 11:12:20'),(0,0,'CC','HEADACHE ---MANY MONTHS ','D06',0,'darshan','2025-12-23 11:53:06'),(0,0,'CC','HEADACHE --FEW MONTHS ','D06',0,'darshan','2025-12-23 11:50:40'),(0,0,'CC','HEADACHE --MANY YRS ','D06',0,'darshan','2025-12-17 13:53:14'),(0,0,'CC','HEADACHE -MANY YRS ','D06',0,'darshan','2025-12-17 19:06:06'),(0,0,'CC','HEADACHE----FEW MONTHS','D06',0,'darshan','2025-12-23 17:20:17'),(0,0,'CC','HEADACHE----MANY MONTHS','D06',0,'darshan','2025-12-19 18:02:38'),(0,0,'CC','HEADACHE---7-8 MONTHS ','D06',0,'darshan','2025-12-19 11:39:44'),(0,0,'CC','HEADACHE---FEW WEEKS ','D06',0,'darshan','2025-12-19 13:21:18'),(0,0,'CC','HEADACHE---MANY MONTHS ','D06',0,'darshan','2025-12-23 11:30:20'),(0,0,'CC','HEAVINESS OF HEAD +','D06',0,'darshan','2025-12-22 14:52:49'),(0,0,'CC','INCREASED COUGHING, RUNNING NO','D27',0,'drjayant','2025-12-19 12:58:27'),(0,0,'CC','ITCHING ALL OVER BODY       ','D27',0,'drjayant','2025-12-17 11:37:57'),(0,0,'CC','LEFT BUCCAL PAIN-----5-6 DAYS ','D06',0,'darshan','2025-12-19 18:30:26'),(0,0,'CC','LEFT BUCCAL PAIN---10 DAYS ','D06',0,'darshan','2025-12-17 12:01:16'),(0,0,'CC','LEFT EAR DEFENESS AND TINNITUS','D06',0,'darshan','2025-12-19 12:29:53'),(0,0,'CC','LEFT EAR PAIN WITH DISCHARGE -','D06',0,'darshan','2025-12-23 11:56:13'),(0,0,'CC','LEFT EAR PAIN----2 -3 DAYS ','D06',0,'darshan','2025-12-19 19:52:02'),(0,0,'CC','LEFT EAR TINNITUS ','D06',0,'darshan','2025-12-19 18:02:38'),(0,0,'CC','LEFT EAR TINNITUS -----6-7 MON','D06',0,'darshan','2025-12-19 13:49:56'),(0,0,'CC','LEFT SIDE BURNING SENSATION --','D06',0,'darshan','2025-12-17 18:12:18'),(0,0,'CC','LT BREAST LUMP','D02',0,'drpratapsinh','2025-12-17 10:56:58'),(0,0,'CC','LT BREAST PAIN ','D02',0,'drpratapsinh','2025-12-17 10:56:58'),(0,0,'CC','LT UL PAIN','D27',0,'drjayant','2025-12-17 18:21:05'),(0,0,'CC','MIDLINE CHEST PAIN SINCE LAST ','D27',0,'drjayant','2025-12-17 12:17:18'),(0,0,'CC','MILD WEAKNESS +','D27',0,'drjayant','2025-12-18 11:25:33'),(0,0,'CC','NASAL BLOCAKGE ','D06',0,'darshan','2025-12-22 15:08:12'),(0,0,'CC','NAUSEA AND VOMITING ','D06',0,'darshan','2025-12-22 11:12:20'),(0,0,'CC','NECK PAIN----15 DAYS ','D06',0,'darshan','2025-12-16 18:18:12'),(0,0,'CC','NO C/O','D27',0,'drjayant','2025-12-17 18:28:50'),(0,0,'CC','NO C/O BURNING SOLE','D27',0,'drarchit','2025-12-18 18:49:12'),(0,0,'CC','NO FEVER','D27',0,'drjayant','2025-12-19 12:58:27'),(0,0,'CC','PAIN','D03',0,'sandip','2021-11-23 17:41:01'),(0,0,'CC','PAIN IN ANUS ','D02',0,'drpratapsinh','2025-12-17 11:37:04'),(0,0,'CC','PAIN WHILE DEFECATION','D02',0,'anandt','2022-04-09 10:01:30'),(0,0,'CC','POSTED FOR D & C FOR ENDOMETRI','D27',0,'drarchit','2025-12-20 12:18:27'),(0,0,'CC','POSTED FOR LEFT KNEE TKR','D27',0,'drarchit','2025-12-23 12:57:11'),(0,0,'CC','POSTED FOR TOOTH EXTRACTION','D27',0,'drarchit','2025-12-23 11:50:45'),(0,0,'CC','POSTED FOR VH -I REPAIR WITH S','D27',0,'drarchit','2025-12-17 11:47:14'),(0,0,'CC','RECURRENCE ORAL ULCER ---FEW M','D06',0,'darshan','2025-12-18 11:37:36'),(0,0,'CC','RECURRENT ORAL ULCERATION---FE','D06',0,'darshan','2025-12-18 11:47:56'),(0,0,'CC','REDUCED MOUTH OPENING','D06',0,'darshan','2025-12-18 11:37:36'),(0,0,'CC','RIGHT BUCCAL PAIN---10 D AYS ','D06',0,'darshan','2025-12-17 12:01:32'),(0,0,'CC','RIGHT EAR DEAFNESS AND TINNITU','D06',0,'darshan','2025-12-17 11:25:31'),(0,0,'CC','RIGHT EAR HEAVINESS ---OFF AND','D06',0,'darshan','2025-12-22 12:45:48'),(0,0,'CC','RIGHT FACIAL PAIN----OFF AND O','D06',0,'darshan','2025-12-22 15:08:12'),(0,0,'CC','RIGHT SIDE THROAT PAIN------10','D06',0,'darshan','2025-12-22 11:02:25'),(0,0,'CC','RIGTH EAR DEAFNESS-----1 YR','D06',0,'darshan','2025-12-23 13:37:15'),(0,0,'CC','ROTATORY FEELINGS','D27',0,'drjayant','2025-12-18 18:54:47'),(0,0,'CC','ROTATORY FEELINGS, NAUSEA SINC','D27',0,'drjayant','2025-12-17 19:33:26'),(0,0,'CC','ROTATORY FEELINGS, POSITIONAL ','D27',0,'drjayant','2025-12-22 11:57:25'),(0,0,'CC','RT LL, BOTH UL NEUROPATHIC PAI','D27',0,'drjayant','2025-12-18 18:58:38'),(0,0,'CC','SENSE OF IMBALANCE','D06',0,'darshan','2025-12-19 11:26:59'),(0,0,'CC','SENSE OF IMBALANCE --2-3 YRS ','D06',0,'darshan','2025-12-18 11:03:17'),(0,0,'CC','SOMETHING  COMING OUT PER RECT','D02',0,'anandt','2022-05-03 11:01:33'),(0,0,'CC','SWELLING','D07',0,'sweety','2022-03-15 16:17:01'),(0,0,'CC','THRAOT PAIN WITH IRRITATION---','D06',0,'darshan','2025-12-17 18:39:13'),(0,0,'CC','THROAT IRRITATION-----1 MONTH','D06',0,'darshan','2025-12-22 12:50:15'),(0,0,'CC','THROAT PAIN----4-5 DAYS ','D06',0,'darshan','2025-12-16 20:03:04'),(0,0,'CC','URTI','D27',0,'drjayant','2025-10-15 19:13:32'),(0,0,'CC','URTI--BETTER','D27',0,'drjayant','2025-12-22 18:09:36'),(0,0,'CC','VERITGO----YESTERDAY NIGHT ','D06',0,'darshan','2025-12-19 11:48:20'),(0,0,'CC','VERTIGO ------FEW WEEKS ','D06',0,'darshan','2025-12-18 11:16:25'),(0,0,'CC','VERTIGO -----2 DAYS ','D06',0,'darshan','2025-12-19 14:03:55'),(0,0,'CC','VERTIGO-----1 WEEK','D06',0,'darshan','2025-12-17 19:04:37'),(0,0,'CC','VERTIGO-----1 YRS ','D06',0,'darshan','2025-12-19 11:26:59'),(0,0,'CC','VERTIGO-----1.5 MONTHS','D06',0,'darshan','2025-12-18 18:14:17'),(0,0,'CC','VERTIGO-----2-3 YRS OOF AND ON','D06',0,'darshan','2025-12-23 17:38:32'),(0,0,'CC','VERTIGO-----2.5 MONTHS ','D06',0,'darshan','2025-12-23 12:45:08'),(0,0,'CC','VERTIGO-----6 MONTHS 3 EPISODE','D06',0,'darshan','2025-12-23 14:34:17'),(0,0,'CC','VERTIGO-----MANY YRS ','D06',0,'darshan','2025-12-19 12:29:32'),(0,0,'CC','VERTIGO----1.5 MONTHS ','D06',0,'darshan','2025-12-17 11:25:11'),(0,0,'CC','VERTIGO----10 DAYS ','D06',0,'darshan','2025-12-22 12:28:04'),(0,0,'CC','VERTIGO----15 DAYS ','D06',0,'darshan','2025-12-19 17:28:38'),(0,0,'CC','VERTIGO----2 WEEKS ','D06',0,'darshan','2025-12-18 18:29:48'),(0,0,'CC','VERTIGO----20 DAYS ','D06',0,'darshan','2025-12-22 14:13:30'),(0,0,'CC','VERTIGO----3 DAYS ','D06',0,'darshan','2025-12-17 11:07:10'),(0,0,'CC','VERTIGO----4 DAYS ','D06',0,'darshan','2025-12-16 17:50:28'),(0,0,'CC','VERTIGO----4-5 YRS ','D06',0,'darshan','2025-12-22 12:22:57'),(0,0,'CC','VERTIGO----5 DAYS ','D06',0,'darshan','2025-12-22 13:17:47'),(0,0,'CC','VERTIGO----5-6 DAYS ','D06',0,'darshan','2025-12-19 18:25:45'),(0,0,'CC','VERTIGO----8 MONTHS ','D06',0,'darshan','2025-12-23 13:04:43'),(0,0,'CC','VERTIGO----FEW MONTHS OFF AND ','D06',0,'darshan','2025-12-23 13:19:40'),(0,0,'CC','VERTIGO---1 WEEK','D06',0,'darshan','2025-12-16 19:29:39'),(0,0,'CC','VERTIGO---1 YR','D06',0,'darshan','2025-12-22 11:58:07'),(0,0,'CC','VERTIGO---1 YRS','D06',0,'darshan','2025-12-16 18:09:31'),(0,0,'CC','VERTIGO---10-12 DAYS ','D06',0,'darshan','2025-12-22 12:55:42'),(0,0,'CC','VERTIGO---15 DAYS','D06',0,'darshan','2025-12-22 17:47:53'),(0,0,'CC','VERTIGO---2 MONTHS ','D06',0,'darshan','2025-12-23 10:52:42'),(0,0,'CC','VERTIGO---3 DAYS ','D06',0,'darshan','2025-12-22 17:26:35'),(0,0,'CC','VERTIGO---30 DAYS ','D06',0,'darshan','2025-12-16 17:34:17'),(0,0,'CC','VERTIGO---4-5 YRS','D06',0,'darshan','2025-12-23 11:50:40'),(0,0,'CC','VERTIGO---5 YRS OFF AND ON','D06',0,'darshan','2025-12-22 14:44:06'),(0,0,'CC','VERTIGO---6-7 MONTHS ','D06',0,'darshan','2025-12-22 19:53:45'),(0,0,'CC','VERTIGO---7-8 MONTHS ','D06',0,'darshan','2025-12-17 18:07:38'),(0,0,'CC','VERTIGO---FEW MONTHS ','D06',0,'darshan','2025-12-19 17:57:28'),(0,0,'CC','VERTIGO---FEW MONTHS OFF  AND ','D06',0,'darshan','2025-12-23 11:30:20'),(0,0,'CC','VERTIGO---FEW WEEKS ','D06',0,'darshan','2025-12-22 14:03:42'),(0,0,'CC','VERTIGO---FEW YRS OFF AND ON','D06',0,'darshan','2025-12-19 11:13:28'),(0,0,'CC','VERTIGO---YESTERDAY','D06',0,'darshan','2025-12-19 18:51:41'),(0,0,'CC','VERTIGO--1 MONTH','D06',0,'darshan','2025-12-17 11:34:27'),(0,0,'CC','VERTIGO-3 DAYS ','D06',0,'darshan','2025-12-22 11:43:01'),(0,0,'CC','VOMITING','D03',0,'sandip','2022-02-12 14:25:00'),(0,0,'CO-MOR','1 ST TIME DETACTED','D27',0,'drjayant','2025-12-18 18:44:24'),(0,0,'CO-MOR','5MA','D06',0,'darshan','2025-10-29 11:28:53'),(0,0,'CO-MOR','? LEFT MCA INFARCT','D27',0,'drarchit','2025-12-10 18:39:00'),(0,0,'CO-MOR','ACID PEPTIC DX','D27',0,'drjayant','2025-10-09 18:46:01'),(0,0,'CO-MOR','ALLERGIC RHINITIS','D27',0,'drjayant','2025-11-06 18:34:28'),(0,0,'CO-MOR','ANXIETY','D27',0,'drjayant','2025-10-08 19:20:12'),(0,0,'CO-MOR','ANXIETY DISORDER','D27',0,'drarchit','2025-12-05 11:26:28'),(0,0,'CO-MOR','BED RIDDEN STATUS','D27',0,'drjayant','2025-10-28 11:31:34'),(0,0,'CO-MOR','BILAT OA KNEE','D27',0,'drjayant','2025-12-20 12:44:06'),(0,0,'CO-MOR','BOTH KNEE PAIN','D03',0,'sandip','2022-03-08 09:25:09'),(0,0,'CO-MOR','BPH','D27',0,'drjayant','2025-12-01 11:23:29'),(0,0,'CO-MOR','BPH ( 1ST TIME DETECTED )','D27',0,'drjayant','2025-12-19 11:29:36'),(0,0,'CO-MOR','BR ASTHMA','D27',0,'drjayant','2025-10-08 11:19:03'),(0,0,'CO-MOR','CA LARYNX','D27',0,'drjayant','2025-10-09 11:35:21'),(0,0,'CO-MOR','CA PROSTATE','D06',0,'darshan','2025-10-27 20:11:46'),(0,0,'CO-MOR','CAD','D27',0,'drarchit','2025-11-15 12:32:40'),(0,0,'CO-MOR','CAD (CABG), TYPE II DM, HT','D27',0,'drarchit','2025-10-13 18:54:23'),(0,0,'CO-MOR','CAD (PTCA TO RCA JAN 2025), HT','D27',0,'drarchit','2025-10-28 12:18:57'),(0,0,'CO-MOR','CAD (PTCA), HT, MESENTERIC VES','D27',0,'drarchit','2025-12-03 18:30:00'),(0,0,'CO-MOR','CAD , HT WITH PSCHYATRIC ILLNE','D27',0,'drarchit','2025-12-08 18:58:41'),(0,0,'CO-MOR','CAD WITH BPH','D27',0,'drarchit','2025-12-23 11:50:39'),(0,0,'CO-MOR','CAD, CKD','D27',0,'drarchit','2025-12-16 19:38:42'),(0,0,'CO-MOR','CAG DONE ON MARCH 2022','D27',0,'drarchit','2025-12-05 11:27:32'),(0,0,'CO-MOR','CERVICAL SPINE DX','D27',0,'drjayant','2025-10-25 11:39:22'),(0,0,'CO-MOR','CH ALCOHOLIC','D27',0,'drjayant','2025-10-31 18:34:34'),(0,0,'CO-MOR','CH BRONCHITIS','D27',0,'drjayant','2025-12-15 12:51:26'),(0,0,'CO-MOR','CH CONSTIPATION','D27',0,'drjayant','2025-12-05 19:22:41'),(0,0,'CO-MOR','CH HYPONATREMIA','D27',0,'drjayant','2025-11-03 12:05:41'),(0,0,'CO-MOR','CH SMOKER','D27',0,'drjayant','2025-10-18 12:06:58'),(0,0,'CO-MOR','CH TCP','D27',0,'drjayant','2025-12-23 11:14:37'),(0,0,'CO-MOR','CHRONIC ALCOHOLIC HEPATITS','D27',0,'drarchit','2025-12-22 11:49:32'),(0,0,'CO-MOR','CKD','D27',0,'drjayant','2025-10-08 11:43:58'),(0,0,'CO-MOR','CKD?','D27',0,'drjayant','2025-11-01 11:32:07'),(0,0,'CO-MOR','CLASSSICAL MIGRAIN','D27',0,'drarchit','2025-11-01 12:10:56'),(0,0,'CO-MOR','CLD, DM','D27',0,'drjayant','2025-11-29 13:01:40'),(0,0,'CO-MOR','CML WITH CAD ON REGULAR TREATM','D27',0,'drarchit','2025-12-04 18:42:23'),(0,0,'CO-MOR','COPD','D27',0,'drjayant','2025-10-18 12:07:03'),(0,0,'CO-MOR','CV STROKE WITH HT WITH AKI','D27',0,'drarchit','2025-12-01 19:41:42'),(0,0,'CO-MOR','CVST','D27',0,'drjayant','2025-10-27 18:30:19'),(0,0,'CO-MOR','DCMP','D27',0,'drjayant','2025-12-13 12:33:20'),(0,0,'CO-MOR','DCMP WITH SEVERE LVD','D27',0,'drjayant','2025-10-10 11:33:21'),(0,0,'CO-MOR','DDDDD','D27',0,'drjayant','2025-12-17 12:25:05'),(0,0,'CO-MOR','DEPRESSION','D27',0,'drjayant','2025-10-17 12:01:18'),(0,0,'CO-MOR','DILATED CARDIOMYOPAHTY','D27',0,'drarchit','2025-10-29 11:32:10'),(0,0,'CO-MOR','DM','D27',0,'drjayant','2025-10-10 12:54:31'),(0,0,'CO-MOR','DM ( DEFAULTER )','D27',0,'drjayant','2025-11-05 18:40:03'),(0,0,'CO-MOR','DM (15 YEARS), CAD ( PTCA TO L','D27',0,'drarchit','2025-10-29 11:36:20'),(0,0,'CO-MOR','DM (18 YEARS),  EARLY CKD','D27',0,'drarchit','2025-10-29 11:47:11'),(0,0,'CO-MOR','DM , HT .','D27',0,'drarchit','2025-10-28 12:47:45'),(0,0,'CO-MOR','DM , HT WITH HYPOTHYRODISM','D27',0,'drarchit','2025-12-03 19:13:59'),(0,0,'CO-MOR','DM ,CAD (PTCA TO LAD 2017, CRI','D27',0,'drarchit','2025-10-29 13:10:28'),(0,0,'CO-MOR','DM ,HT , HYPOTHYROID, DISLIPID','D27',0,'drarchit','2025-10-29 11:57:21'),(0,0,'CO-MOR','DM ,HT , PSCHYATIRC ILNESS','D27',0,'drarchit','2025-12-16 12:44:12'),(0,0,'CO-MOR','DM 13 YEARS, CV STROKE (POSTER','D27',0,'drarchit','2025-12-16 11:37:17'),(0,0,'CO-MOR','DM 13 YER','D27',0,'drarchit','2025-12-16 11:35:46'),(0,0,'CO-MOR','DM CAD , LAPCHOLYCYSTECTOMY','D27',0,'drarchit','2025-12-23 12:16:37'),(0,0,'CO-MOR','DM ON AYURVEDIC TX','D27',0,'drjayant','2025-12-18 18:51:01'),(0,0,'CO-MOR','DM WITH HT','D27',0,'drarchit','2025-11-24 13:38:11'),(0,0,'CO-MOR','DM WITH HT WITH AKI WITH HYPER','D27',0,'drarchit','2025-12-16 13:18:13'),(0,0,'CO-MOR','DM, CAD , LVEF -25%, CA BUCCAL','D27',0,'drarchit','2025-12-23 11:25:55'),(0,0,'CO-MOR','DM, COPD','D27',0,'drjayant','2025-11-06 18:10:35'),(0,0,'CO-MOR','DM, CVA','D27',0,'drjayant','2025-12-18 12:34:16'),(0,0,'CO-MOR','DM, DCM, EARLY CKD, HYPERICEMI','D27',0,'drarchit','2025-12-17 18:32:38'),(0,0,'CO-MOR','DM, DYSLIPIDEMIA','D27',0,'drjayant','2025-10-09 11:19:45'),(0,0,'CO-MOR','DM, DYSLIPIDEMIA ( 1ST TIME DE','D27',0,'drjayant','2025-12-11 12:55:25'),(0,0,'CO-MOR','DM, HT','D27',0,'drarchit','2025-10-29 18:53:36'),(0,0,'CO-MOR','DM, HT , DYSLIPDEMIA, PSCHYATR','D27',0,'drarchit','2025-12-16 13:20:28'),(0,0,'CO-MOR','DM, HT ,CAD','D27',0,'drarchit','2025-12-17 11:46:44'),(0,0,'CO-MOR','DM, HYPOTHYROIDISM','D27',0,'drjayant','2025-12-11 19:30:42'),(0,0,'CO-MOR','DM, ON INSULIN','D27',0,'drjayant','2025-12-18 18:17:17'),(0,0,'CO-MOR','DM, TYPE 1','D27',0,'drjayant','2025-12-15 18:39:29'),(0,0,'CO-MOR','DYSLIPIDEMIA','D27',0,'drjayant','2025-10-08 11:43:54'),(0,0,'CO-MOR','EPILEPSY','D27',0,'drjayant','2025-10-28 19:11:03'),(0,0,'CO-MOR','FATTY LIVER','D27',0,'drjayant','2025-11-29 13:07:40'),(0,0,'CO-MOR','GERD ?','D27',0,'drjayant','2025-10-17 11:39:03'),(0,0,'CO-MOR','H,','D27',0,'drjayant','2025-11-03 18:42:43'),(0,0,'CO-MOR','H/O CORROSION POISOSNING','D06',0,'darshan','2025-11-28 14:11:20'),(0,0,'CO-MOR','HIGH BP','D03',0,'sandip','2022-03-15 14:30:00'),(0,0,'CO-MOR','HT','D27',0,'drarchit','2025-10-28 13:15:04'),(0,0,'CO-MOR','HT ( 1 ST TIME DETECTED )','D27',0,'drjayant','2025-12-03 11:21:38'),(0,0,'CO-MOR','HT (DEFAULTER)','D27',0,'drjayant','2025-11-05 12:24:39'),(0,0,'CO-MOR','HT ,','D27',0,'drarchit','2025-12-23 12:56:55'),(0,0,'CO-MOR','HT , CAG DONE 22 OCT (NORMAL C','D27',0,'drarchit','2025-10-28 13:09:47'),(0,0,'CO-MOR','HT ON TAB AMLODEPINE','D27',0,'drarchit','2025-12-16 11:33:32'),(0,0,'CO-MOR','HT ON TAB AMLODEPINE 5 MG OD','D27',0,'drarchit','2025-11-20 18:26:37'),(0,0,'CO-MOR','HT WITH ? CAD','D27',0,'drarchit','2025-12-08 13:40:12'),(0,0,'CO-MOR','HT, ACID PEPTIC DX','D27',0,'drjayant','2025-12-12 11:48:16'),(0,0,'CO-MOR','HT, BPH','D27',0,'drjayant','2025-10-24 18:22:09'),(0,0,'CO-MOR','HT, CAD','D27',0,'drarchit','2025-10-29 12:53:45'),(0,0,'CO-MOR','HT, CKD','D27',0,'drjayant','2025-11-28 19:06:08'),(0,0,'CO-MOR','HT, CLD','D27',0,'drjayant','2025-11-06 19:41:28'),(0,0,'CO-MOR','HT, CVA','D27',0,'drjayant','2025-10-31 12:12:09'),(0,0,'CO-MOR','HT, DM','D27',0,'drjayant','2025-10-16 18:58:47'),(0,0,'CO-MOR','HT, DM, BPH','D27',0,'drjayant','2025-10-08 19:06:08'),(0,0,'CO-MOR','HT, DM, BR ASTHMA, DYSLIPIDEMI','D27',0,'drjayant','2025-11-04 18:07:13'),(0,0,'CO-MOR','HT, DM, CA BREAST','D27',0,'drjayant','2025-12-03 19:13:37'),(0,0,'CO-MOR','HT, DM, CKD','D27',0,'drjayant','2025-10-09 11:35:11'),(0,0,'CO-MOR','HT, DM, CKD, CVA, BPH, PKD','D27',0,'drjayant','2025-12-04 11:22:11'),(0,0,'CO-MOR','HT, DM, CKD, HYPERURICEMIA','D27',0,'drjayant','2025-10-29 11:13:12'),(0,0,'CO-MOR','HT, DM, CVA','D27',0,'drjayant','2025-10-10 13:12:44'),(0,0,'CO-MOR','HT, DM, DYSLIPIDEMIA','D27',0,'drjayant','2025-10-08 18:23:54'),(0,0,'CO-MOR','HT, DM, HYPOTHYROIDISM','D27',0,'drjayant','2025-10-31 19:02:39'),(0,0,'CO-MOR','HT, DM, IHD','D27',0,'drjayant','2025-11-04 18:48:08'),(0,0,'CO-MOR','HT, DM, IHD WITH SEVERE LVD','D27',0,'drjayant','2025-11-27 12:44:36'),(0,0,'CO-MOR','HT, DM, IHD, PVD, OLD CVA, DYS','D27',0,'drjayant','2025-11-06 17:59:46'),(0,0,'CO-MOR','HT, DYSLIPIDEMIA','D27',0,'drjayant','2025-10-09 11:29:40'),(0,0,'CO-MOR','HT, HYPERTHYROIDISM, CVA','D27',0,'drjayant','2025-12-16 11:57:48'),(0,0,'CO-MOR','HT, HYPERURICEMIA','D27',0,'drjayant','2025-12-03 11:52:35'),(0,0,'CO-MOR','HT, HYPOTHYROIDISM','D27',0,'drjayant','2025-11-05 18:15:38'),(0,0,'CO-MOR','HT, HYPOTHYROIDISM, DYSLIPIDEM','D27',0,'drjayant','2025-12-16 12:04:28'),(0,0,'CO-MOR','HT, IHD','D27',0,'drjayant','2025-10-11 13:10:11'),(0,0,'CO-MOR','HT, IHD (POST PTCA )','D27',0,'drjayant','2025-12-11 11:29:27'),(0,0,'CO-MOR','HT, IHD(POST CABG)','D27',0,'drjayant','2025-11-07 11:21:09'),(0,0,'CO-MOR','HT, IHD(POST PTCA), DM, DCMP','D27',0,'drjayant','2025-11-01 10:57:13'),(0,0,'CO-MOR','HT, IHD(POST PTCA), DYSLIPIDEM','D27',0,'drjayant','2025-11-01 11:14:55'),(0,0,'CO-MOR','HT, ILD','D27',0,'drjayant','2025-10-09 12:27:46'),(0,0,'CO-MOR','HT, PHT, AHF','D27',0,'drjayant','2025-12-09 19:40:45'),(0,0,'CO-MOR','HT, PSYCHIATRIC ILLNESS','D27',0,'drjayant','2025-11-06 17:54:02'),(0,0,'CO-MOR','HTN','D01',0,'maulita','2022-03-05 11:12:29'),(0,0,'CO-MOR','HYPERSENSITIVITY PNEUMONITIS','D27',0,'drjayant','2025-12-22 18:42:41'),(0,0,'CO-MOR','HYPERTENTION','D03',0,'sandip','2022-03-08 12:00:25'),(0,0,'CO-MOR','HYPERTHYRODISM','D27',0,'drarchit','2025-12-22 18:46:59'),(0,0,'CO-MOR','HYPERTHYROIDISM','D27',0,'drjayant','2025-12-03 18:55:48'),(0,0,'CO-MOR','HYPERURICEMIA','D27',0,'drjayant','2025-12-02 12:00:13'),(0,0,'CO-MOR','HYPOTHYRODISM, DM','D27',0,'drarchit','2025-12-22 19:28:20'),(0,0,'CO-MOR','HYPOTHYROIDISM','D27',0,'drjayant','2025-10-08 18:44:09'),(0,0,'CO-MOR','IHD','D27',0,'drjayant','2025-10-15 19:33:08'),(0,0,'CO-MOR','IHD WITH LVD','D27',0,'drjayant','2025-12-01 11:22:54'),(0,0,'CO-MOR','IHD(POST PTCA )','D27',0,'drjayant','2025-11-03 18:39:00'),(0,0,'CO-MOR','IHD, POST CABG','D27',0,'drjayant','2025-12-17 18:26:36'),(0,0,'CO-MOR','ILD ON STEROID','D06',0,'darshan','2025-10-24 19:07:54'),(0,0,'CO-MOR','IRON DEF ANAEMIA','D27',0,'drjayant','2025-10-10 11:37:42'),(0,0,'CO-MOR','K/C/O CAD (CABG , PTCA ), DM ,','D27',0,'drarchit','2025-10-30 12:47:35'),(0,0,'CO-MOR','K/C/O CAD , HT , DM','D27',0,'drarchit','2025-11-21 12:44:29'),(0,0,'CO-MOR','K/C/O HT ON CORTEL H, MOXOVAS ','D27',0,'drarchit','2025-11-14 12:28:58'),(0,0,'CO-MOR','K/C/O HT ON TAB LTK-H','D27',0,'drarchit','2025-11-14 18:49:37'),(0,0,'CO-MOR','K/C/O SCIZOPHRENIA','D27',0,'drarchit','2025-12-20 12:14:41'),(0,0,'CO-MOR','KIDNEY DONER TO HER HUSBAND','D06',0,'darshan','2025-12-08 19:21:39'),(0,0,'CO-MOR','LEFT MCA INFARCT (2024)','D27',0,'drarchit','2025-12-05 11:53:32'),(0,0,'CO-MOR','LIMITED MOBILITY','D27',0,'drjayant','2025-10-29 19:35:53'),(0,0,'CO-MOR','LT DVT','D27',0,'drjayant','2025-12-02 18:25:27'),(0,0,'CO-MOR','LUMBUR DISC DX','D27',0,'drjayant','2025-10-08 18:24:33'),(0,0,'CO-MOR','LUMBUR SPONDYLOSIS','D27',0,'drjayant','2025-12-05 19:18:04'),(0,0,'CO-MOR','LYMPHADENITIS','D27',0,'drjayant','2025-12-01 19:54:44'),(0,0,'CO-MOR','MILD PAH','D27',0,'drjayant','2025-12-15 14:07:09'),(0,0,'CO-MOR','MODERATE LVD','D27',0,'drjayant','2025-12-13 12:33:34'),(0,0,'CO-MOR','MODERATE MR','D27',0,'drjayant','2025-12-01 11:23:10'),(0,0,'CO-MOR','MORBID OBESITY','D27',0,'drjayant','2025-10-13 12:17:37'),(0,0,'CO-MOR','MVR DONE (ON ORAL ANTICOAGULNA','D27',0,'drarchit','2025-11-12 11:18:39'),(0,0,'CO-MOR','MYETHENIA GRAVIS','D27',0,'drjayant','2025-12-11 19:27:14'),(0,0,'CO-MOR','NAD','D27',0,'drjayant','2025-11-03 11:13:30'),(0,0,'CO-MOR','NO','D12',0,'THIMS','2023-06-05 10:17:42'),(0,0,'CO-MOR','O/C/O CA LARYNX','D27',0,'drarchit','2025-11-13 13:46:34'),(0,0,'CO-MOR','OBE','D27',0,'drjayant','2025-12-18 18:36:54'),(0,0,'CO-MOR','OBESITY','D27',0,'drjayant','2025-11-05 19:05:33'),(0,0,'CO-MOR','OBESITY, DM','D27',0,'drjayant','2025-12-22 18:24:32'),(0,0,'CO-MOR','OBESITY, HT, DM','D27',0,'drjayant','2025-12-12 19:04:30'),(0,0,'CO-MOR','OBESITY, HT, DM, CVA','D27',0,'drjayant','2025-10-13 18:48:11'),(0,0,'CO-MOR','OBESITY, HT, DM, DYSLIPIDEMIA','D27',0,'drjayant','2025-10-13 13:12:54'),(0,0,'CO-MOR','OBESITY, HT, DYSLIPIDEMIA','D27',0,'drjayant','2025-10-08 18:58:03'),(0,0,'CO-MOR','OBESITY, HT, HYPOTHYROIDISM','D27',0,'drjayant','2025-12-19 11:50:46'),(0,0,'CO-MOR','ON PSY TREATMENT','D06',0,'darshan','2025-11-04 11:47:04'),(0,0,'CO-MOR','OPERATED BREAST CA','D27',0,'drjayant','2025-12-18 18:50:45'),(0,0,'CO-MOR','OPERATED CASE OF LT CP ANGLE T','D27',0,'drarchit','2025-12-16 12:08:20'),(0,0,'CO-MOR','OPERATED FOR LT BREAST','D27',0,'drjayant','2025-11-05 13:21:42'),(0,0,'CO-MOR','OPERATED RT LYMH NODE DETECTED','D27',0,'drjayant','2025-12-02 18:25:19'),(0,0,'CO-MOR','ORAL DYSKINESIA','D06',0,'darshan','2025-11-07 11:50:29'),(0,0,'CO-MOR','P','D27',0,'drjayant','2025-12-22 19:32:07'),(0,0,'CO-MOR','PAH','D27',0,'drjayant','2025-12-13 13:31:37'),(0,0,'CO-MOR','PAST ICH','D27',0,'drjayant','2025-12-12 18:48:21'),(0,0,'CO-MOR','POLIOMYELITIS','D27',0,'drjayant','2025-10-08 18:24:04'),(0,0,'CO-MOR','POLYCYTHEMIA VERA','D27',0,'drjayant','2025-12-18 12:42:43'),(0,0,'CO-MOR','POST BARIATRIC SX','D27',0,'drjayant','2025-12-11 11:37:14'),(0,0,'CO-MOR','POST THYROIDECTOMY','D27',0,'drjayant','2025-12-12 18:32:07'),(0,0,'CO-MOR','POST TURP','D27',0,'drjayant','2025-11-03 11:23:13'),(0,0,'CO-MOR','POSTERIOUR CIRCULATORY STROKE','D27',0,'drarchit','2025-11-14 11:38:00'),(0,0,'CO-MOR','PPI IN SITU','D27',0,'drjayant','2025-11-03 12:05:16'),(0,0,'CO-MOR','PRE DM','D27',0,'drjayant','2025-10-08 18:44:16'),(0,0,'CO-MOR','PSYCHIATRIC ILLNESS','D27',0,'drjayant','2025-10-29 11:20:17'),(0,0,'CO-MOR','PULMO','D27',0,'drjayant','2025-12-22 19:32:15'),(0,0,'CO-MOR','PVD','D27',0,'drjayant','2025-11-06 11:12:19'),(0,0,'CO-MOR','RA','D27',0,'drjayant','2025-11-28 18:54:55'),(0,0,'CO-MOR','RA, HT','D27',0,'drjayant','2025-12-01 18:55:05'),(0,0,'CO-MOR','RECENT CAP , CAD WITH DM WITH ','D27',0,'drarchit','2025-12-16 18:26:42'),(0,0,'CO-MOR','RECUREENT SVT','D27',0,'drarchit','2025-11-13 11:04:55'),(0,0,'CO-MOR','RECURRENT SVT','D27',0,'drjayant','2025-12-03 18:55:59'),(0,0,'CO-MOR','RHD, CVA','D27',0,'drjayant','2025-12-11 11:24:23'),(0,0,'CO-MOR','RT HYPERTENSIVE ICH  (THALAMO ','D27',0,'drarchit','2025-12-16 11:42:17'),(0,0,'CO-MOR','RT OA KNEE','D27',0,'drjayant','2025-12-16 13:28:11'),(0,0,'CO-MOR','SEVERE AS (AVR DONE)','D27',0,'drarchit','2025-10-29 13:17:33'),(0,0,'CO-MOR','SEVERE LVD','D27',0,'drjayant','2025-10-11 13:10:20'),(0,0,'CO-MOR','SEVERE MR (PML PROLAPSE ), V.T','D27',0,'drarchit','2025-10-29 12:59:11'),(0,0,'CO-MOR','SEVERE RT LUNG VOLUME LOS WITH','D27',0,'drarchit','2025-11-15 11:24:45'),(0,0,'CO-MOR','SJOGRENS SYNDROME','D27',0,'drjayant','2025-12-02 18:36:14'),(0,0,'CO-MOR','SOLITARY KIDNEY','D27',0,'drjayant','2025-11-06 11:12:14'),(0,0,'CO-MOR','THALAMOCAPSULAR HEMORRHAE , HT','D27',0,'drarchit','2025-10-30 13:30:43'),(0,0,'CO-MOR','THALASAMIA MINOR','D27',0,'drjayant','2025-12-11 18:44:40'),(0,0,'CO-MOR','TOBACCO CHEWER','D27',0,'drjayant','2025-12-17 18:15:43'),(0,0,'CO-MOR','TRIGEMINAL NERALGIA','D27',0,'drjayant','2025-11-06 19:41:40'),(0,0,'CO-MOR','TYPE-1 DM','D06',0,'darshan','2025-11-03 19:26:32'),(0,0,'CO-MOR','VERTIGO','D27',0,'drjayant','2025-12-06 13:09:07'),(0,0,'CO-MOR','VP SHUNT','D06',0,'darshan','2025-11-11 14:23:54'),(0,0,'DIAG','+','D06',0,'darshan','2025-12-04 19:06:11'),(0,0,'DIAG','...? VESTIBULOAPTHYH','D06',0,'darshan','2025-11-05 20:15:31'),(0,0,'DIAG','..? CONDUCTIVE DEAFNESS','D06',0,'darshan','2025-11-12 20:24:22'),(0,0,'DIAG','? ACUTE BRONCHITIS','D27',0,'drarchit','2025-10-30 13:28:18'),(0,0,'DIAG','? APPENDICITIS','D02',0,'drpratapsinh','2025-10-17 13:12:31'),(0,0,'DIAG','? CARCINOMA','D02',0,'drpratapsinh','2025-10-31 19:24:40'),(0,0,'DIAG','? CCF','D02',0,'drpratapsinh','2025-11-13 11:29:10'),(0,0,'DIAG','? INFLAMATORY ARTHRITIS WITH ?','D27',0,'drarchit','2025-11-28 19:24:21'),(0,0,'DIAG','? PERIANAL ABSCES','D02',0,'drpratapsinh','2025-12-04 19:29:50'),(0,0,'DIAG','? RT INGUINAL HERNIA','D02',0,'drpratapsinh','2025-12-08 19:50:26'),(0,0,'DIAG','? TB','D02',0,'drpratapsinh','2025-11-07 18:38:19'),(0,0,'DIAG','?? IBS WITH CLASSICAL MIGRAIN','D27',0,'drarchit','2025-12-12 19:37:14'),(0,0,'DIAG','??POLYMYALGIA RHEUMATICA','D27',0,'drarchit','2025-12-03 13:10:22'),(0,0,'DIAG','ABDOMINAL LUMP','D02',0,'drpratapsinh','2025-10-31 19:24:30'),(0,0,'DIAG','ABDOMINAL PAIN','D02',0,'drpratapsinh','2025-12-05 18:52:19'),(0,0,'DIAG','ACUTE ABDOMEN','D02',0,'drpratapsinh','2025-11-03 18:02:31'),(0,0,'DIAG','ACUTE APPENDICITIS','D02',0,'drpratapsinh','2025-11-26 19:46:14'),(0,0,'DIAG','ACUTE APPENDICITIS WITH ABSCES','D02',0,'drpratapsinh','2025-10-28 19:23:54'),(0,0,'DIAG','ACUTE CHOLECYSTITIS','D02',0,'drpratapsinh','2025-10-27 13:00:36'),(0,0,'DIAG','ACUTE GASTRITIS','D02',0,'drpratapsihn','2025-10-10 11:07:31'),(0,0,'DIAG','ACUTE PANCREATITIS','D02',0,'drpratapsinh','2025-11-11 18:55:21'),(0,0,'DIAG','ACUTE PARTIAL VESTIBULAR DEFIC','D06',0,'darshan','2025-12-05 11:53:00'),(0,0,'DIAG','ACUTE SMALL BOWEL OBSTRUCTION','D02',0,'drpratapsinh','2025-11-07 18:38:12'),(0,0,'DIAG','AGE','D27',0,'drjayant','2025-11-29 13:13:41'),(0,0,'DIAG','AKI','D02',0,'drpratapsinh','2025-11-01 20:20:37'),(0,0,'DIAG','ANAEMIA','D02',0,'drpratapsinh','2025-12-01 18:18:38'),(0,0,'DIAG','ANAL FIBROSIS','D02',0,'drpratapsinh','2025-12-08 19:40:39'),(0,0,'DIAG','ANAL SPASM','D02',0,'drpratapsinh','2025-12-10 19:06:04'),(0,0,'DIAG','ANTERIOR ANANL FISSURE','D02',0,'anandt','2022-05-16 16:32:23'),(0,0,'DIAG','ARF','D02',0,'drpratapsinh','2025-10-24 20:48:24'),(0,0,'DIAG','B','D06',0,'darshan','2025-12-06 11:32:58'),(0,0,'DIAG','BACK PAI WITH LEFT LOWER LIMB ','D14',0,'drridham','2025-12-23 10:49:26'),(0,0,'DIAG','BACK PAIN WITH RIGHT LOWER LIM','D14',0,'drridham','2025-12-23 10:48:54'),(0,0,'DIAG','BED SORE','D02',0,'drpratapsinh','2025-11-01 20:23:51'),(0,0,'DIAG','BIALTELR VESTIBULOPATHY WITH B','D06',0,'darshan','2025-11-08 11:37:09'),(0,0,'DIAG','BIALTERAL SN DEAFNESS','D06',0,'darshan','2025-10-23 18:20:05'),(0,0,'DIAG','BIALTERAL VESTIBULOPATHY','D06',0,'darshan','2025-11-07 10:59:11'),(0,0,'DIAG','BILATEARL VESTIBULOPATHY','D06',0,'darshan','2025-11-04 14:09:56'),(0,0,'DIAG','BILATELR VESTIBULOPATHY','D06',0,'darshan','2025-11-22 13:00:53'),(0,0,'DIAG','BILATELR VESTIBVULOPATHY','D06',0,'darshan','2025-10-18 12:02:03'),(0,0,'DIAG','BILATERAL INGUINAL HERNIA','D02',0,'drpratapsinh','2025-10-25 20:25:51'),(0,0,'DIAG','BILATERAL RENAL CONCRETATION','D02',0,'drpratapsinh','2025-10-28 19:24:54'),(0,0,'DIAG','BILATERAL VESTIBULAR FAILURE','D06',0,'darshan','2025-12-05 18:55:24'),(0,0,'DIAG','BILATERAL VESTIBULOPATHY','D06',0,'darshan','2025-10-13 18:26:10'),(0,0,'DIAG','BILATERAL VESTIBULOPATHY WITH ','D06',0,'darshan','2025-11-13 18:31:22'),(0,0,'DIAG','BOO','D02',0,'drpratapsinh','2025-10-11 20:00:58'),(0,0,'DIAG','BOTH ANKLE PAIN','D03',0,'drsagar','2025-12-17 11:37:15'),(0,0,'DIAG','BOTH HEEL PAIN','D03',0,'drsagar','2025-10-31 19:19:28'),(0,0,'DIAG','BOTH KNEE PAIN','D03',0,'drsagar','2025-12-15 12:19:35'),(0,0,'DIAG','BOTH OA KNEE RIGHT < LEFT','D03',0,'drsagar','2025-11-15 12:02:59'),(0,0,'DIAG','BOTH OA KNEE RIGHT > LEFT','D03',0,'drsagar','2025-10-30 18:59:52'),(0,0,'DIAG','BOTH SHOULDER PAIN','D03',0,'drsagar','2025-11-24 18:42:05'),(0,0,'DIAG','BOTH SIDE UPPER BACK PAIN','D03',0,'drsagar','2025-12-20 12:43:39'),(0,0,'DIAG','BOTH SOM VS OTHER','D06',0,'darshan','2025-10-27 14:35:23'),(0,0,'DIAG','BPC','D06',0,'darshan','2025-11-04 12:55:50'),(0,0,'DIAG','BPPPV','D06',0,'darshan','2025-11-15 11:05:43'),(0,0,'DIAG','BPPV','D27',0,'drjayant','2025-10-08 18:11:28'),(0,0,'DIAG','BPPV VS HYDROPS','D06',0,'darshan','2025-12-10 12:15:37'),(0,0,'DIAG','BPPV VS OTHER','D06',0,'darshan','2025-10-13 10:38:45'),(0,0,'DIAG','BPPV VS VESTBIULOPATHY','D06',0,'darshan','2025-11-10 18:11:44'),(0,0,'DIAG','BPPV VS VESTIBULOPATHY','D06',0,'darshan','2025-10-13 17:15:43'),(0,0,'DIAG','BPPV VS VM','D06',0,'darshan','2025-10-10 18:48:03'),(0,0,'DIAG','BPPV VS VM VS OTHER','D06',0,'darshan','2025-12-02 11:06:54'),(0,0,'DIAG','BPPV VS VM VS VESTIBULOPATHY','D06',0,'darshan','2025-10-31 19:38:13'),(0,0,'DIAG','BPPV VS VN','D06',0,'darshan','2025-10-29 18:21:37'),(0,0,'DIAG','BPPV VS VN VS OTHER','D06',0,'darshan','2025-11-03 18:45:19'),(0,0,'DIAG','BPPV WITH BILATERAL VESTIBULOP','D06',0,'darshan','2025-10-13 20:13:13'),(0,0,'DIAG','BPPV WITH DEAFNESS','D06',0,'darshan','2025-11-22 12:20:32'),(0,0,'DIAG','BPPV WITH PHOBIA','D06',0,'darshan','2025-11-14 19:03:03'),(0,0,'DIAG','BPPV WITH VESTIBULOPATHY','D06',0,'darshan','2025-11-26 13:08:13'),(0,0,'DIAG','BPPV WITH VM','D06',0,'darshan','2025-10-17 19:14:11'),(0,0,'DIAG','BPV','D06',0,'darshan','2025-11-21 18:29:08'),(0,0,'DIAG','BRACHIAL CYST','D02',0,'drpratapsinh','2025-10-11 19:56:16'),(0,0,'DIAG','BURN ON BACK','D02',0,'drpratapsinh','2025-10-31 19:20:55'),(0,0,'DIAG','BVM','D06',0,'darshan','2025-10-17 13:00:38'),(0,0,'DIAG','CAP','D27',0,'drjayant','2025-10-31 17:35:37'),(0,0,'DIAG','CARBUNCLE ON NECK','D02',0,'drpratapsinh','2025-10-24 18:35:17'),(0,0,'DIAG','CBD STONE','D02',0,'drpratapsinh','2025-12-04 18:20:50'),(0,0,'DIAG','CCF WITH SEVERE AS WITH ? LV D','D27',0,'drarchit','2025-11-22 12:08:43'),(0,0,'DIAG','CENTRA VERTIGO','D06',0,'darshan','2025-10-16 11:56:32'),(0,0,'DIAG','CENTRAL CAUSES..?','D06',0,'darshan','2025-12-16 17:35:52'),(0,0,'DIAG','CENTRAL VAREIYT OF NYSTAGMUS','D06',0,'darshan','2025-10-14 19:57:17'),(0,0,'DIAG','CH ANAEMIA','D27',0,'drjayant','2025-11-08 12:51:50'),(0,0,'DIAG','CHARCOIT FOOT WITH DM  WITH HT','D27',0,'drarchit','2025-11-24 13:39:35'),(0,0,'DIAG','CHEST PAIN UNDER INVESTIGATION','D27',0,'drarchit','2025-11-13 12:57:46'),(0,0,'DIAG','CHEST PAIN UNDER IX TO R/O CAD','D27',0,'drarchit','2025-12-09 13:05:26'),(0,0,'DIAG','CHEST WALL SEBACEOUS CYST WITH','D02',0,'drpratapsinh','2025-10-27 19:57:21'),(0,0,'DIAG','CHLESTATIC PHASSE OF ACUTE HEP','D27',0,'drarchit','2025-12-08 19:25:40'),(0,0,'DIAG','CKD','D02',0,'drpratapsinh','2025-10-27 19:57:33'),(0,0,'DIAG','CLW ON  LOWER  LIP','D02',0,'drpratapsinh','2025-10-28 19:33:20'),(0,0,'DIAG','CLW ON FACE','D02',0,'drpratapsinh','2025-11-26 18:51:26'),(0,0,'DIAG','CLW ON RT LOIN','D02',0,'drpratapsinh','2025-10-13 20:21:52'),(0,0,'DIAG','COMPLEX FISTULA IN ANO','D02',0,'drpratapsinh','2025-11-29 19:15:24'),(0,0,'DIAG','CONSTIPATION','D02',0,'drpratapsinh','2025-11-11 18:54:39'),(0,0,'DIAG','COOCCYX PAIN','D03',0,'drsagar','2025-11-20 11:32:00'),(0,0,'DIAG','COPD','D02',0,'drpratapsinh','2025-11-25 12:09:29'),(0,0,'DIAG','CROHN DISEASE','D02',0,'drpratapsinh','2025-12-04 18:21:02'),(0,0,'DIAG','CV STROKE','D02',0,'drpratapsinh','2025-10-25 20:25:59'),(0,0,'DIAG','CVA','D02',0,'drpratapsinh','2025-12-15 12:19:10'),(0,0,'DIAG','DENGUE FEVER','D27',0,'drjayant','2025-10-10 18:32:19'),(0,0,'DIAG','DEPRESSION','D02',0,'drpratapsinh','2025-12-04 13:53:39'),(0,0,'DIAG','DIABETIC FOOT','D02',0,'anandt','2022-03-26 12:12:16'),(0,0,'DIAG','DIAG','D03',0,'sandip','2022-02-12 11:13:50'),(0,0,'DIAG','DIAGNOSIS','D05',0,'madhav','2022-02-12 11:05:23'),(0,0,'DIAG','DIFFICULTY IN CROSS LEG SITTIN','D03',0,'drsagar','2025-10-14 18:19:44'),(0,0,'DIAG','DM','D02',0,'drpratapsihn','2025-10-08 19:36:20'),(0,0,'DIAG','DM, 1 ST TIME DETECTED','D27',0,'drjayant','2025-11-05 11:39:33'),(0,0,'DIAG','DROP ATTACK','D06',0,'darshan','2025-10-17 17:14:49'),(0,0,'DIAG','E TEP RS','D02',0,'drpratapsinh','2025-11-25 11:28:33'),(0,0,'DIAG','ENDO HYDROPS V S BPPV','D06',0,'darshan','2025-12-10 18:22:18'),(0,0,'DIAG','ENTERIC FEVER','D02',0,'drpratapsinh','2025-11-04 17:21:54'),(0,0,'DIAG','ENTERITIS','D02',0,'drpratapsinh','2025-11-26 18:45:37'),(0,0,'DIAG','EXTERNAL HEMORRHOIDS','D02',0,'drpratapsinh','2025-11-12 18:51:28'),(0,0,'DIAG','FEVER','D02',0,'anandt','2022-02-12 11:42:57'),(0,0,'DIAG','FISSURE','D02',0,'drpratapsihn','2025-10-08 17:19:02'),(0,0,'DIAG','FISSURE IN ANO','D02',0,'drpratapsihn','2025-10-10 11:12:58'),(0,0,'DIAG','FISTULA IN ANO','D02',0,'drpratapsihn','2025-10-09 18:51:33'),(0,0,'DIAG','FOLLICULITIS','D02',0,'drpratapsinh','2025-12-15 12:23:00'),(0,0,'DIAG','FOOT GANGRENE','D02',0,'drpratapsinh','2025-10-24 20:48:38'),(0,0,'DIAG','GALL BLADDER STONES','D02',0,'drpratapsinh','2025-10-28 19:25:59'),(0,0,'DIAG','GB POLYP','D02',0,'drpratapsinh','2025-10-28 19:26:02'),(0,0,'DIAG','GB STONE','D02',0,'drpratapsinh','2025-11-26 19:51:45'),(0,0,'DIAG','GERD','D02',0,'drpratapsihn','2025-10-08 17:23:28'),(0,0,'DIAG','GLUTEAL ABSCES','D02',0,'drpratapsinh','2025-11-01 20:23:13'),(0,0,'DIAG','GLUTEAL ABSCESS','D02',0,'drpratapsinh','2025-11-29 18:26:48'),(0,0,'DIAG','H/0 LAPAROTOMY  +STRICTUROPLAS','D02',0,'drpratapsinh','2025-11-25 11:35:46'),(0,0,'DIAG','H/O BLUNT INJURY PN CHEST','D02',0,'drpratapsinh','2025-10-24 19:18:45'),(0,0,'DIAG','H/O CA CAECUM','D02',0,'drpratapsinh','2025-11-01 20:24:59'),(0,0,'DIAG','H/O CORN EXCISION','D02',0,'drpratapsinh','2025-10-24 20:46:36'),(0,0,'DIAG','H/O LAP APPENDICECTOMY','D02',0,'drpratapsinh','2025-11-26 11:37:02'),(0,0,'DIAG','H/O LAP SPLEENECTOMY IN 2017','D02',0,'drpratapsinh','2025-11-26 11:28:46'),(0,0,'DIAG','H/O RT BREAST INFECTED CYST OP','D02',0,'drpratapsinh','2025-12-15 11:00:26'),(0,0,'DIAG','H/O RT INGUINAL HERNIOPLASTY','D02',0,'drpratapsinh','2025-12-01 12:35:55'),(0,0,'DIAG','HEAD INJURY WITH CLW CLOSURE','D14',0,'drridham','2025-12-23 10:49:54'),(0,0,'DIAG','HEMATURIYA','D02',0,'drpratapsinh','2025-11-26 10:37:46'),(0,0,'DIAG','HT, DM WITH ? IHD','D27',0,'drarchit','2025-11-12 20:12:49'),(0,0,'DIAG','HTN','D02',0,'drpratapsihn','2025-10-10 11:07:33'),(0,0,'DIAG','HYDROPS','D06',0,'darshan','2025-10-16 13:57:00'),(0,0,'DIAG','HYDROPS VS BPPV','D06',0,'darshan','2025-11-20 12:48:13'),(0,0,'DIAG','HYDROPS VS OTHER','D06',0,'darshan','2025-11-04 19:55:28'),(0,0,'DIAG','HYDROPS VS VM','D06',0,'darshan','2025-10-30 17:25:25'),(0,0,'DIAG','HYDROPS VS VM VS OTHER','D06',0,'darshan','2025-12-15 19:18:57'),(0,0,'DIAG','HYDRPS VS OTHER','D06',0,'darshan','2025-10-24 19:06:34'),(0,0,'DIAG','HYPOTHYROIDISM','D02',0,'drpratapsinh','2025-12-08 19:16:07'),(0,0,'DIAG','HZ GEOTROPIC NYSTAMGUS','D06',0,'darshan','2025-11-17 12:32:28'),(0,0,'DIAG','ICH','D02',0,'drpratapsinh','2025-11-01 20:23:56'),(0,0,'DIAG','IHD','D02',0,'drpratapsihn','2025-10-08 17:19:14'),(0,0,'DIAG','IHD(POST PTCA )','D02',0,'drpratapsinh','2025-11-25 11:12:12'),(0,0,'DIAG','IMBALANCE UI','D06',0,'darshan','2025-10-14 17:33:20'),(0,0,'DIAG','INCISIONAL HERNIA','D02',0,'drpratapsinh','2025-10-25 19:43:22'),(0,0,'DIAG','INFECTED SEBACEOUS CYST ON BAC','D02',0,'drpratapsinh','2025-12-18 19:39:49'),(0,0,'DIAG','INGROWING TOE NAIL','D02',0,'drpratapsinh','2025-12-18 18:17:20'),(0,0,'DIAG','INTERMITTEN','D06',0,'darshan','2025-12-11 11:00:51'),(0,0,'DIAG','INTERMITTENDT BPPV','D06',0,'darshan','2025-11-08 11:02:03'),(0,0,'DIAG','INTERMITTENT BPPV','D06',0,'darshan','2025-10-23 17:56:02'),(0,0,'DIAG','INTERNAL HEMORRHOIDS','D02',0,'drpratapsihn','2025-10-09 19:56:47'),(0,0,'DIAG','INTERNMITTENT BPPV','D06',0,'darshan','2025-12-09 11:19:21'),(0,0,'DIAG','INTERNO HEMORRHOIDS','D02',0,'drpratapsinh','2025-11-07 18:37:00'),(0,0,'DIAG','INTERSPHINCTERIC ABSCESS','D02',0,'drpratapsinh','2025-12-15 11:23:26'),(0,0,'DIAG','IRON DEFICIENCY ANAEMIA','D02',0,'drpratapsinh','2025-11-01 20:23:27'),(0,0,'DIAG','KELOID','D02',0,'drpratapsinh','2025-12-03 18:20:00'),(0,0,'DIAG','L4 L5 DISC SPACE REDUCED','D03',0,'drsagar','2025-12-22 12:51:28'),(0,0,'DIAG','LEFT 4TH AND 5TH TOE FRACTURE','D03',0,'drsagar','2025-10-25 11:35:48'),(0,0,'DIAG','LEFT 5TH METACARPAL NECK FRACT','D03',0,'drsagar','2025-11-17 18:14:31'),(0,0,'DIAG','LEFT 5TH METATARSAL FRACTURE','D03',0,'drsagar','2025-10-10 12:19:34'),(0,0,'DIAG','LEFT ACL TEAR ?','D03',0,'drsagar','2025-10-08 18:45:27'),(0,0,'DIAG','LEFT ACUTE PARTIAL VESTIBULAR ','D06',0,'darshan','2025-12-10 11:59:43'),(0,0,'DIAG','LEFT ANKLE SPRAIN','D03',0,'drsagar','2025-10-28 11:26:46'),(0,0,'DIAG','LEFT ARM PAIN','D03',0,'drsagar','2025-12-22 18:36:14'),(0,0,'DIAG','LEFT BICIPITAL TENDINITIS','D03',0,'drsagar','2025-12-19 12:10:32'),(0,0,'DIAG','LEFT BPPV','D06',0,'darshan','2025-11-07 13:47:57'),(0,0,'DIAG','LEFT BPPV WITH HYDROPS','D06',0,'darshan','2025-10-30 11:36:37'),(0,0,'DIAG','LEFT CARPAL TUNNEL SYNDROME WI','D03',0,'drsagar','2025-10-13 12:07:55'),(0,0,'DIAG','LEFT ELBOW PAIN','D03',0,'drsagar','2025-11-24 18:50:21'),(0,0,'DIAG','LEFT ENDOLYMPHATIC HYDROPS','D06',0,'darshan','2025-10-14 17:50:04'),(0,0,'DIAG','LEFT FIBULA HEAD FRACTURE?','D03',0,'drsagar','2025-10-31 13:00:52'),(0,0,'DIAG','LEFT FOOT PAIN','D03',0,'drsagar','2025-11-08 11:52:16'),(0,0,'DIAG','LEFT GREAT TOE PAIN','D03',0,'drsagar','2025-11-29 12:00:23'),(0,0,'DIAG','LEFT HIP PAIN','D03',0,'drsagar','2025-10-31 20:10:10'),(0,0,'DIAG','LEFT HYDROPS','D06',0,'darshan','2025-11-20 17:37:55'),(0,0,'DIAG','LEFT HYDROPS V S VESTIBULOPATH','D06',0,'darshan','2025-12-09 13:13:35'),(0,0,'DIAG','LEFT HYDROPS VS OTHER','D06',0,'darshan','2025-12-03 17:50:42'),(0,0,'DIAG','LEFT HZ CANAL BPPV','D06',0,'darshan','2025-10-14 11:09:43'),(0,0,'DIAG','LEFT KNEE PAIN','D03',0,'drsagar','2025-10-10 18:15:20'),(0,0,'DIAG','LEFT LATERAL MALLEOLI FRACTURE','D03',0,'drsagar','2025-11-03 12:59:26'),(0,0,'DIAG','LEFT LITTLE FINGER PAIN','D03',0,'drsagar','2025-10-14 11:31:15'),(0,0,'DIAG','LEFT LITTLE FINGER PROXIMAL PH','D03',0,'drsagar','2025-11-15 11:41:40'),(0,0,'DIAG','LEFT MIDDLE FINGER PAIN','D03',0,'drsagar','2025-10-17 18:07:46'),(0,0,'DIAG','LEFT OA KNEE','D03',0,'drsagar','2025-11-28 19:29:04'),(0,0,'DIAG','LEFT PLANTAR FASCITIS','D03',0,'drsagar','2025-11-08 11:46:30'),(0,0,'DIAG','LEFT POST CANAL BPPV','D06',0,'darshan','2025-10-11 12:36:14'),(0,0,'DIAG','LEFT PSOT CANAL BPPV','D06',0,'darshan','2025-12-23 13:20:17'),(0,0,'DIAG','LEFT SHOULDER PAIN','D03',0,'drsagar','2025-10-25 11:35:13'),(0,0,'DIAG','LEFT SIDE DQ','D03',0,'drsagar','2025-10-16 13:21:18'),(0,0,'DIAG','LEFT SIDE LOWER CHEST PAIN','D03',0,'drsagar','2025-10-11 18:26:36'),(0,0,'DIAG','LEFT SIDE PLANATAR FASCITIS','D03',0,'drsagar','2025-10-29 12:29:20'),(0,0,'DIAG','LEFT SN DEAFNESS','D06',0,'darshan','2025-10-15 12:25:06'),(0,0,'DIAG','LEFT TENNIS ELBOW','D03',0,'drsagar','2025-10-13 11:42:33'),(0,0,'DIAG','LEFT THUMB DPX BASE FRACTURE','D03',0,'drsagar','2025-12-20 11:52:35'),(0,0,'DIAG','LEFT TRIGGER THUMB','D03',0,'drsagar','2025-10-31 12:44:58'),(0,0,'DIAG','LEFT UPPER LIMB PAIN','D03',0,'drsagar','2025-11-17 11:29:48'),(0,0,'DIAG','LEFT VESTIBULO COCHLEAR DEFICI','D06',0,'darshan','2025-11-19 11:47:56'),(0,0,'DIAG','LEFT VESTIBULOPATHY','D06',0,'darshan','2025-11-07 17:27:36'),(0,0,'DIAG','LEFT VP VS HYDROPS','D06',0,'darshan','2025-10-31 13:15:16'),(0,0,'DIAG','LEFT WRIST PAIN','D03',0,'drsagar','2025-12-02 12:14:49'),(0,0,'DIAG','LEFTHYDROPS VS PSY','D06',0,'darshan','2025-12-19 12:30:43'),(0,0,'DIAG','LHC PAIN','D02',0,'drpratapsinh','2025-11-26 11:28:32'),(0,0,'DIAG','LIPOMA','D02',0,'drpratapsihn','2025-10-08 19:04:40'),(0,0,'DIAG','LIPOMA  IN RHC','D02',0,'drpratapsinh','2025-10-25 19:51:35'),(0,0,'DIAG','LIPOMA ON ABDOMINAL WALL','D02',0,'drpratapsinh','2025-11-12 18:55:08'),(0,0,'DIAG','LIVER DISEASE','D02',0,'drpratapsinh','2025-12-15 12:47:00'),(0,0,'DIAG','LOWER AND MIDDLE BACK PAIN','D03',0,'drsagar','2025-10-10 11:30:10'),(0,0,'DIAG','LOWER BACK PAIN','D03',0,'drsagar','2025-10-10 18:32:00'),(0,0,'DIAG','LOWER BACK PAIN WITH BOTH L.L.','D03',0,'drsagar','2025-12-12 11:40:39'),(0,0,'DIAG','LOWER BACK PAIN WITH BOTH LOWE','D03',0,'drsagar','2025-12-20 13:30:46'),(0,0,'DIAG','LOWER BACK PAIN WITH BOTH OA K','D03',0,'drsagar','2025-10-28 18:19:05'),(0,0,'DIAG','LOWER BACK PAIN WITH LEFT LOWE','D03',0,'drsagar','2025-11-07 18:22:21'),(0,0,'DIAG','LOWER BACK PAIN WITH RIGHT L. ','D03',0,'drsagar','2025-12-15 12:46:22'),(0,0,'DIAG','LT BREAST LUMP','D02',0,'drpratapsinh','2025-12-09 12:28:59'),(0,0,'DIAG','LT BREAST PAIN','D02',0,'drpratapsinh','2025-11-08 10:36:16'),(0,0,'DIAG','LT CERVICAL LYMPHADENOPATHY','D02',0,'drpratapsinh','2025-11-03 18:02:11'),(0,0,'DIAG','LT CHEST WALL INJURY','D02',0,'drpratapsinh','2025-12-03 12:11:46'),(0,0,'DIAG','LT DM FOOT','D02',0,'drpratapsihn','2025-10-08 19:36:18'),(0,0,'DIAG','LT FOOT CALLOCITY','D02',0,'drpratapsinh','2025-10-31 19:29:35'),(0,0,'DIAG','LT FOOT CELLULITIS','D02',0,'drpratapsinh','2025-10-24 20:46:22'),(0,0,'DIAG','LT FOOT CORN','D02',0,'drpratapsinh','2025-12-09 18:02:42'),(0,0,'DIAG','LT FOOT NAIL AVULSION','D02',0,'drpratapsinh','2025-11-12 20:30:55'),(0,0,'DIAG','LT GREAT TOE INGROWING TOE NAI','D02',0,'drpratapsinh','2025-11-08 10:46:22'),(0,0,'DIAG','LT GROIN LIPOMA','D02',0,'drpratapsinh','2025-10-13 18:57:36'),(0,0,'DIAG','LT GYNECOMASTIA','D02',0,'drpratapsihn','2025-10-09 19:51:44'),(0,0,'DIAG','LT INDIRECT INGUINAL HERNIA','D02',0,'drpratapsinh','2025-12-09 12:46:50'),(0,0,'DIAG','LT INGROWING TOE NAIL','D02',0,'drpratapsinh','2025-12-08 11:34:07'),(0,0,'DIAG','LT LOIN PAIN','D02',0,'drpratapsinh','2025-12-19 11:14:20'),(0,0,'DIAG','LT LOWER LIMB VARICOSE VEIN','D02',0,'drpratapsinh','2025-10-31 19:22:43'),(0,0,'DIAG','LT MIDDLE FINGER STITCH','D02',0,'drpratapsinh','2025-12-10 18:24:10'),(0,0,'DIAG','LT MIDDLE FINGER WART','D02',0,'drpratapsinh','2025-12-06 11:50:28'),(0,0,'DIAG','LT NEPHRECTOMY','D02',0,'drpratapsinh','2025-11-03 13:39:55'),(0,0,'DIAG','LT PSOAS ABSCESS','D02',0,'drpratapsinh','2025-12-15 12:04:24'),(0,0,'DIAG','LT SHOULDER CYST','D02',0,'drpratapsinh','2025-12-04 18:01:40'),(0,0,'DIAG','LT STRANGULATED INGUINAL HERNI','D02',0,'drpratapsinh','2025-12-15 16:57:46'),(0,0,'DIAG','LT SUBMENTAL NODE','D02',0,'drpratapsinh','2025-11-11 19:09:30'),(0,0,'DIAG','LT UPPER URETERIC STONE','D02',0,'drpratapsinh','2025-12-15 12:04:33'),(0,0,'DIAG','LT URETERIC STONE','D02',0,'drpratapsinh','2025-11-08 11:40:58'),(0,0,'DIAG','LT. DQ','D03',0,'drsagar','2025-12-19 12:10:50'),(0,0,'DIAG','LT. TENNIS ELBOW','D03',0,'drsagar','2025-12-19 12:10:39'),(0,0,'DIAG','LUMBUR DISC DX','D27',0,'drjayant','2025-10-10 18:59:05'),(0,0,'DIAG','MENORRHAGIA','D02',0,'drpratapsinh','2025-11-26 18:46:29'),(0,0,'DIAG','METASTATIC CA BREAST ( RT )','D02',0,'drpratapsinh','2025-12-08 19:28:43'),(0,0,'DIAG','MULTIPALE JOINT PAIN','D03',0,'drsagar','2025-11-14 12:08:43'),(0,0,'DIAG','MVT - REVASCULARISATION','D02',0,'drpratapsinh','2025-11-25 11:21:03'),(0,0,'DIAG','NECK PAIN','D03',0,'drsagar','2025-11-03 19:46:25'),(0,0,'DIAG','NON HEALING ANKE ULCERS ? HYDR','D27',0,'drarchit','2025-12-04 18:46:26'),(0,0,'DIAG','NYSTAGMUS---ABSENT','D06',0,'darshan','2025-12-10 13:20:21'),(0,0,'DIAG','OBESITY','D02',0,'drpratapsinh','2025-12-05 18:52:36'),(0,0,'DIAG','OBSTRUCTIVE JAUNDICE','D02',0,'drpratapsinh','2025-11-26 19:51:26'),(0,0,'DIAG','OLIGOSPERMIA','D02',0,'drpratapsinh','2025-10-13 18:56:36'),(0,0,'DIAG','OPERATED CASE OF RIGHT TKR','D03',0,'drsagar','2025-10-10 18:25:27'),(0,0,'DIAG','OPERATED CASE OF RT BREAST  AB','D02',0,'drpratapsinh','2025-12-05 18:41:11'),(0,0,'DIAG','OPERATED FOR OBESITY','D02',0,'drpratapsinh','2025-12-03 18:36:46'),(0,0,'DIAG','OTHER','D06',0,'darshan','2025-11-07 12:26:58'),(0,0,'DIAG','OVARIAN MASS','D02',0,'drpratapsinh','2025-12-15 12:19:06'),(0,0,'DIAG','P/O BPPV','D06',0,'darshan','2025-10-11 10:00:05'),(0,0,'DIAG','P/O---POST TRAUMATIC BPPV','D06',0,'darshan','2025-10-16 17:57:49'),(0,0,'DIAG','P/O--LEFT LABYRINTHINE PATHOLO','D06',0,'darshan','2025-10-25 10:57:57'),(0,0,'DIAG','PAIN AT COCCYX','D02',0,'drpratapsinh','2025-10-25 19:21:56'),(0,0,'DIAG','PAIN OVER COCCYX','D02',0,'drpratapsihn','2025-10-09 18:48:40'),(0,0,'DIAG','PENILE ULCERATION','D02',0,'drpratapsinh','2025-12-10 12:17:06'),(0,0,'DIAG','PERIANAL ABSCESS','D02',0,'drpratapsinh','2025-11-01 20:25:33'),(0,0,'DIAG','PHIMOSIS','D02',0,'drpratapsinh','2025-10-13 18:56:54'),(0,0,'DIAG','PILONIDAL SINUS','D02',0,'drpratapsinh','2025-10-24 19:38:37'),(0,0,'DIAG','PILONIDAL SINUS WITH ABSCESS','D02',0,'drpratapsinh','2025-12-02 18:52:04'),(0,0,'DIAG','PLANTAR FASCITIS RIGHT SIDE','D03',0,'drsagar','2025-10-11 18:23:30'),(0,0,'DIAG','POS','D02',0,'anandt','2022-06-15 12:05:50'),(0,0,'DIAG','POST ANAL FISS','D02',0,'drpratapsinh','2025-11-01 11:42:43'),(0,0,'DIAG','POST LSCS HEMATOMA','D02',0,'drpratapsinh','2025-10-23 12:00:14'),(0,0,'DIAG','POST TRAUMATIC HZ CANAL BPPV','D06',0,'darshan','2025-11-03 19:48:27'),(0,0,'DIAG','POSTERIOR ANAL FISSURE','D02',0,'anandt','2022-03-26 12:42:49'),(0,0,'DIAG','PPPD','D06',0,'darshan','2025-10-13 11:14:31'),(0,0,'DIAG','PPPD VS OTHER','D06',0,'darshan','2025-12-22 11:59:10'),(0,0,'DIAG','PPPF','D06',0,'darshan','2025-11-13 17:13:30'),(0,0,'DIAG','PREGNANNCY','D02',0,'drpratapsinh','2025-11-07 11:35:22'),(0,0,'DIAG','PROLAPSE HAEMMRHOIDES','D02',0,'anandt','2022-03-26 15:03:33'),(0,0,'DIAG','PSY','D06',0,'darshan','2025-12-04 12:40:33'),(0,0,'DIAG','PSY VS BPPV','D06',0,'darshan','2025-11-20 10:57:05'),(0,0,'DIAG','PSY VS OTEHR','D06',0,'darshan','2025-12-08 19:22:31'),(0,0,'DIAG','PSY VS OTHER','D06',0,'darshan','2025-11-04 11:45:59'),(0,0,'DIAG','PSY VS VESTIBULOPATHY','D06',0,'darshan','2025-11-29 11:02:15'),(0,0,'DIAG','PSY VS VM','D06',0,'darshan','2025-11-28 11:59:52'),(0,0,'DIAG','PVD','D02',0,'drpratapsinh','2025-10-27 19:57:38'),(0,0,'DIAG','RATINA PROBEM','D07',0,'sweety','2022-03-15 16:13:59'),(0,0,'DIAG','RECTAL POLYP','D02',0,'drpratapsinh','2025-11-03 19:51:57'),(0,0,'DIAG','RECURRENCT BPPV','D06',0,'darshan','2025-10-28 12:50:15'),(0,0,'DIAG','RECURRENT BPPV','D06',0,'darshan','2025-10-18 11:52:59'),(0,0,'DIAG','RETROPERITONEAL LYMPHADENOPATH','D02',0,'drpratapsinh','2025-11-01 20:24:45'),(0,0,'DIAG','RGITH POST CANAL BPPV','D06',0,'darshan','2025-10-13 12:01:25'),(0,0,'DIAG','RI9GHT POST CANAL BPPV','D06',0,'darshan','2025-11-11 18:52:44'),(0,0,'DIAG','RIGHIT POST CANAL BPPV','D06',0,'darshan','2025-12-19 18:26:25'),(0,0,'DIAG','RIGHT 1ST CMC JOINT ARTHRITIS','D03',0,'drsagar','2025-10-15 18:34:22'),(0,0,'DIAG','RIGHT 4TH TOE PROXIMAL PHALYNX','D03',0,'drsagar','2025-10-27 19:16:57'),(0,0,'DIAG','RIGHT ACOUSTIC SCHWANNOMA','D06',0,'darshan','2025-11-13 18:26:08'),(0,0,'DIAG','RIGHT ACUTE PARTIAL VESTIBULAR','D06',0,'darshan','2025-11-06 12:44:08'),(0,0,'DIAG','RIGHT AND LEFT KNEE PAIN','D03',0,'drsagar','2025-12-15 11:33:53'),(0,0,'DIAG','RIGHT ANKLE PAIN','D03',0,'drsagar','2025-11-10 18:18:44'),(0,0,'DIAG','RIGHT ANKLE PAIN?','D03',0,'drsagar','2025-11-10 18:18:33'),(0,0,'DIAG','RIGHT ANKLE SPRAIN','D03',0,'drsagar','2025-12-13 10:57:40'),(0,0,'DIAG','RIGHT BICIPITAL TENDINITIS','D03',0,'drsagar','2025-10-15 11:03:13'),(0,0,'DIAG','RIGHT CHOLESTEATOME WITH DISCH','D06',0,'darshan','2025-12-04 13:23:48'),(0,0,'DIAG','RIGHT CP ANGLE TUMOUR','D06',0,'darshan','2025-11-12 18:51:23'),(0,0,'DIAG','RIGHT DQ','D03',0,'drsagar','2025-12-01 18:54:48'),(0,0,'DIAG','RIGHT ELBOW PAIN','D03',0,'drsagar','2025-11-12 12:09:02'),(0,0,'DIAG','RIGHT ENDOLYMPHATIC HYDROPS','D06',0,'darshan','2025-10-13 11:57:20'),(0,0,'DIAG','RIGHT FOOT AND ANKLE PAIN','D03',0,'drsagar','2025-12-01 12:48:21'),(0,0,'DIAG','RIGHT FOOT PAIN','D03',0,'drsagar','2025-10-28 12:51:58'),(0,0,'DIAG','RIGHT FOOT TENDON INJURY','D03',0,'drsagar','2025-10-31 11:19:44'),(0,0,'DIAG','RIGHT HAND PAIN','D03',0,'drsagar','2025-12-18 18:46:22'),(0,0,'DIAG','RIGHT HYDROPS VS OTHER','D06',0,'darshan','2025-10-16 13:29:09'),(0,0,'DIAG','RIGHT HYDRPS','D06',0,'darshan','2025-11-17 18:21:48'),(0,0,'DIAG','RIGHT HZ CANAL BPPV','D06',0,'darshan','2025-10-31 13:25:29'),(0,0,'DIAG','RIGHT KNEE PAIN','D03',0,'drsagar','2025-11-03 18:51:11'),(0,0,'DIAG','RIGHT LABYRINTHINE PATHOLOGY','D06',0,'darshan','2025-10-30 13:48:32'),(0,0,'DIAG','RIGHT LATERAL MALLEOLI FRACTUR','D03',0,'drsagar','2025-12-08 19:11:41'),(0,0,'DIAG','RIGHT LATERAL TIBIAL PLATEAU D','D03',0,'drsagar','2025-11-18 11:55:11'),(0,0,'DIAG','RIGHT OA KNEE','D03',0,'drsagar','2025-10-27 18:42:09'),(0,0,'DIAG','RIGHT OLD SCAPHOID FRACTURE','D03',0,'drsagar','2025-10-27 11:11:10'),(0,0,'DIAG','RIGHT POST CANAL BPPV','D06',0,'darshan','2025-10-13 11:31:41'),(0,0,'DIAG','RIGHT POST CANAL BPPV WITH BIL','D06',0,'darshan','2025-12-18 18:22:21'),(0,0,'DIAG','RIGHT POST CANAL BPPV WITH VM','D06',0,'darshan','2025-12-13 11:41:49'),(0,0,'DIAG','RIGHT PSOT CANAL BPPV','D06',0,'darshan','2025-10-17 11:01:42'),(0,0,'DIAG','RIGHT ROTATOR CUFF INJURY?','D03',0,'drsagar','2025-11-24 12:04:53'),(0,0,'DIAG','RIGHT SCAPULA FRACTURE','D03',0,'drsagar','2025-10-10 12:16:11'),(0,0,'DIAG','RIGHT SHOULDER DISLOCATION','D03',0,'drsagar','2025-10-13 12:00:18'),(0,0,'DIAG','RIGHT SHOULDER PAIN','D03',0,'drsagar','2025-10-10 18:15:27'),(0,0,'DIAG','RIGHT SIDE ATFL TEAR','D03',0,'drsagar','2025-10-27 19:05:44'),(0,0,'DIAG','RIGHT SIDE LOWER CHEST PAIN','D03',0,'drsagar','2025-10-10 11:36:52'),(0,0,'DIAG','RIGHT SIDE LOWER LIMB RADICULO','D03',0,'drsagar','2025-10-29 12:55:06'),(0,0,'DIAG','RIGHT SUDDEN SNHL','D06',0,'darshan','2025-10-11 11:37:18'),(0,0,'DIAG','RIGHT TENNIS ELBOW','D03',0,'drsagar','2025-10-15 11:03:02'),(0,0,'DIAG','RIGHT THIGH PAIN','D03',0,'drsagar','2025-10-25 12:34:44'),(0,0,'DIAG','RIGHT TIBIA FIBULA SHAFT FRACT','D03',0,'drsagar','2025-12-02 13:06:09'),(0,0,'DIAG','RIGHT UNDISPLACED DISTAL END R','D03',0,'drsagar','2025-12-10 11:34:28'),(0,0,'DIAG','RIGHT UNDISPLACED M.M. FRACTUR','D03',0,'drsagar','2025-12-01 12:26:26'),(0,0,'DIAG','RIGHT VESTIBULOPATHY','D06',0,'darshan','2025-12-05 13:00:38'),(0,0,'DIAG','RIGHT WRIST PAIN','D03',0,'drsagar','2025-11-21 19:06:56'),(0,0,'DIAG','RIGTH ACUTE PARTIAL VESTIBULAR','D06',0,'darshan','2025-10-31 12:30:58'),(0,0,'DIAG','RIGTH CHRONIC PARTIAL VESTIBUL','D06',0,'darshan','2025-11-21 13:28:35'),(0,0,'DIAG','RIGTH HZ CANAL BPPV','D06',0,'darshan','2025-12-16 14:13:54'),(0,0,'DIAG','RIGTH POST CANAL BPPV','D06',0,'darshan','2025-12-13 13:49:51'),(0,0,'DIAG','RT  BREAST ABSCESS','D02',0,'drpratapsinh','2025-12-22 14:06:13'),(0,0,'DIAG','RT AXILLARY PAIN','D02',0,'drpratapsinh','2025-12-10 18:14:09'),(0,0,'DIAG','RT AXILLARY SWELLING','D02',0,'drpratapsinh','2025-12-08 20:20:36'),(0,0,'DIAG','RT BREAST LUMP','D02',0,'drpratapsinh','2025-12-15 18:52:58'),(0,0,'DIAG','RT BREAST PAIN','D02',0,'drpratapsinh','2025-11-08 13:04:46'),(0,0,'DIAG','RT COMMUNITY ACQUIRED PNEUMONI','D27',0,'drarchit','2025-11-14 13:08:09'),(0,0,'DIAG','RT EPIDIDYMO ORCHITIS','D02',0,'drpratapsinh','2025-10-24 18:32:32'),(0,0,'DIAG','RT FOOT CELLULITIS','D02',0,'drpratapsinh','2025-11-01 20:20:34'),(0,0,'DIAG','RT FOOT CORN','D02',0,'drpratapsinh','2025-12-08 19:34:25'),(0,0,'DIAG','RT FOOT DOG BITE','D02',0,'drpratapsinh','2025-11-01 20:20:03'),(0,0,'DIAG','RT FOOT RAW','D02',0,'drpratapsinh','2025-12-18 17:46:50'),(0,0,'DIAG','RT FOOT RAW AREA','D02',0,'drpratapsinh','2025-12-01 18:20:29'),(0,0,'DIAG','RT INGROWING NAIL','D02',0,'drpratapsihn','2025-10-10 11:43:42'),(0,0,'DIAG','RT INGROWING ROE NAIKL','D02',0,'drpratapsihn','2025-10-10 11:43:10'),(0,0,'DIAG','RT INGROWING TOE NAIL','D02',0,'drpratapsinh','2025-11-29 18:18:45'),(0,0,'DIAG','RT INGUINAL HERNIA','D02',0,'drpratapsinh','2025-10-24 20:45:45'),(0,0,'DIAG','RT LL PVD','D02',0,'drpratapsinh','2025-11-03 17:54:13'),(0,0,'DIAG','RT LOIN PAIN','D02',0,'drpratapsinh','2025-12-16 18:32:42'),(0,0,'DIAG','RT LOWER  URETERIC STONE (9 MM','D02',0,'drpratapsinh','2025-10-28 19:24:41'),(0,0,'DIAG','RT LUNG MASS','D02',0,'drpratapsinh','2025-11-03 17:50:34'),(0,0,'DIAG','RT NAIL AVULSION','D02',0,'drpratapsinh','2025-10-30 18:05:28'),(0,0,'DIAG','RT PAROTID CYST','D02',0,'drpratapsinh','2025-12-05 19:08:39'),(0,0,'DIAG','RT RETROAURICULAR CYST','D02',0,'drpratapsinh','2025-11-12 19:02:16'),(0,0,'DIAG','RT RING FINGER INFECTION','D02',0,'drpratapsinh','2025-10-25 19:36:41'),(0,0,'DIAG','RT SIDE CHEST PAIN','D02',0,'drpratapsinh','2025-10-24 19:18:34'),(0,0,'DIAG','RT SIDE DUCT ECTASIA','D02',0,'drpratapsihn','2025-10-08 11:48:29'),(0,0,'DIAG','RT TESTICULAR TRAUMA','D02',0,'drpratapsinh','2025-10-30 12:24:22'),(0,0,'DIAG','RT THIGH CYST','D02',0,'drpratapsinh','2025-10-25 20:26:19'),(0,0,'DIAG','RT WRIST GANGLION','D02',0,'drpratapsinh','2025-10-31 10:48:00'),(0,0,'DIAG','SCALP CLW','D02',0,'drpratapsinh','2025-10-24 20:44:50'),(0,0,'DIAG','SEBACEOUS  CYST ON BACK','D02',0,'drpratapsinh','2025-12-04 13:53:35'),(0,0,'DIAG','SEBACEOUS CYST ON SCALP','D02',0,'drpratapsinh','2025-12-18 18:16:32'),(0,0,'DIAG','SEBACEOUS CYST WITH ABSCESS','D02',0,'drpratapsinh','2025-10-31 19:27:44'),(0,0,'DIAG','SEBASCIOUS CYST?','D02',0,'anandt','2022-03-26 12:30:56'),(0,0,'DIAG','SEPSIS','D02',0,'drpratapsinh','2025-10-24 20:47:48'),(0,0,'DIAG','SERO NEGATIVE RA','D03',0,'drsagar','2025-10-27 18:06:14'),(0,0,'DIAG','SEVERE BOTH OA KNEE','D03',0,'drsagar','2025-11-12 19:56:35'),(0,0,'DIAG','SKIN TAG','D02',0,'drpratapsinh','2025-10-28 20:00:21'),(0,0,'DIAG','SUBSIDED BPPV','D06',0,'darshan','2025-11-10 11:56:40'),(0,0,'DIAG','SUPRAUMBILICAL HERNIA','D02',0,'drpratapsinh','2025-10-24 20:45:53'),(0,0,'DIAG','SWELLING OM BACK','D02',0,'drpratapsinh','2025-10-24 20:45:20'),(0,0,'DIAG','THROMBOSED HEMOPRROIDS','D02',0,'drpratapsinh','2025-11-03 13:39:45'),(0,0,'DIAG','THYROID SWELLING','D02',0,'drpratapsinh','2025-12-05 19:08:29'),(0,0,'DIAG','TINNITUS UI','D06',0,'darshan','2025-11-06 11:49:02'),(0,0,'DIAG','ULCERATIVE COLITIS','D02',0,'drpratapsinh','2025-12-08 11:01:16'),(0,0,'DIAG','UMBILICAL HERNIA','D02',0,'drpratapsinh','2025-12-05 19:04:03'),(0,0,'DIAG','UMBILICAL SEPSIS','D02',0,'drpratapsinh','2025-12-04 18:09:05'),(0,0,'DIAG','URTI','D02',0,'drpratapsihn','2025-10-09 12:11:43'),(0,0,'DIAG','UTERINE FIBROID','D02',0,'drpratapsinh','2025-11-12 20:30:06'),(0,0,'DIAG','UTI','D02',0,'drpratapsinh','2025-10-24 20:47:44'),(0,0,'DIAG','VEM','D06',0,'darshan','2025-11-28 18:53:24'),(0,0,'DIAG','VESTIBULAR MIGRAINE','D06',0,'darshan','2025-10-17 14:03:09'),(0,0,'DIAG','VESTIBULOAP;TY VS VM VS PSY','D06',0,'darshan','2025-12-08 14:21:38'),(0,0,'DIAG','VESTIBULOAPTHY','D06',0,'darshan','2025-10-31 18:13:41'),(0,0,'DIAG','VESTIBULOATHPY','D06',0,'darshan','2025-12-08 14:45:52'),(0,0,'DIAG','VESTIBULOATPHY','D06',0,'darshan','2025-10-29 12:35:28'),(0,0,'DIAG','VESTIBULOPATHY','D06',0,'darshan','2025-11-11 17:38:15'),(0,0,'DIAG','VESTIBULOPATHY  VS OTHER','D06',0,'darshan','2025-10-11 12:09:49'),(0,0,'DIAG','VESTIBULOPATHY VS B PPV','D06',0,'darshan','2025-10-27 17:10:24'),(0,0,'DIAG','VESTIBULOPATHY VS BPPV','D06',0,'darshan','2025-10-16 20:41:55'),(0,0,'DIAG','VESTIBULOPATHY VS HYDROPS VS O','D06',0,'darshan','2025-11-04 11:06:58'),(0,0,'DIAG','VESTIBULOPATHY VS OTHER','D06',0,'darshan','2025-11-20 11:28:13'),(0,0,'DIAG','VESTIBULOPATHY VS SCA','D06',0,'darshan','2025-12-16 12:03:04'),(0,0,'DIAG','VESTIBULOPATHY VS VM','D06',0,'darshan','2025-11-25 17:59:01'),(0,0,'DIAG','VESTIBULOPATY VS BPPV','D06',0,'darshan','2025-11-21 18:29:24'),(0,0,'DIAG','VESTIBULOPATY VS HYDROPS','D06',0,'darshan','2025-12-16 11:52:28'),(0,0,'DIAG','VESTIBULOTOXICITY','D06',0,'darshan','2025-12-18 11:30:50'),(0,0,'DIAG','VIRAL FEVER','D27',0,'drjayant','2025-10-17 18:00:01'),(0,0,'DIAG','VIRAL HEPATITIS','D27',0,'drjayant','2025-11-07 12:34:47'),(0,0,'DIAG','VM','D06',0,'darshan','2025-10-09 20:23:20'),(0,0,'DIAG','VM VS BPPV','D06',0,'darshan','2025-10-13 17:06:52'),(0,0,'DIAG','VM VS BPPV VS OTHR','D06',0,'darshan','2025-12-05 13:26:53'),(0,0,'DIAG','VM VS BPPV VS PSY','D06',0,'darshan','2025-11-21 18:45:15'),(0,0,'DIAG','VM VS HYDROP','D06',0,'darshan','2025-10-14 17:56:56'),(0,0,'DIAG','VM VS HYDROPS','D06',0,'darshan','2025-11-06 17:17:13'),(0,0,'DIAG','VM VS HYDROPS VS BPPV','D06',0,'darshan','2025-10-14 14:43:52'),(0,0,'DIAG','VM VS OTHER','D06',0,'darshan','2025-10-15 19:11:27'),(0,0,'DIAG','VM VS PSY','D06',0,'darshan','2025-11-26 12:26:50'),(0,0,'DIAG','VM VS PSY VS OTHER','D06',0,'darshan','2025-12-15 18:07:54'),(0,0,'DIAG','VM VS VESTIBULOAPTHY','D06',0,'darshan','2025-11-24 17:41:11'),(0,0,'DIAG','VM VS VESTIBULOPATHY VS OTHER','D06',0,'darshan','2025-11-25 12:16:44'),(0,0,'DIAG','VM WITH BPPV','D06',0,'darshan','2025-12-22 11:13:23'),(0,0,'DIAG','VM WITH PSY','D06',0,'darshan','2025-11-13 18:09:38'),(0,0,'DIAG','VN','D06',0,'darshan','2025-12-17 18:34:13'),(0,0,'DIAG','VN VS BPPV','D06',0,'darshan','2025-12-22 11:44:06'),(0,0,'DIAG','VN VS BPV','D06',0,'darshan','2025-11-24 11:54:07'),(0,0,'DIAG','VN VS OTHER','D06',0,'darshan','2025-12-12 18:24:54'),(0,0,'DIAG','VN VS VM VS OTHER','D06',0,'darshan','2025-11-01 11:20:02'),(0,0,'SENSIT','DUST','D03',0,'sandip','2022-03-15 14:29:41'),(0,0,'SENSIT','INDERAL AND FLUNNARAZINE','D06',0,'darshan','2025-12-05 11:03:54'),(0,0,'SENSIT','NSAID','D06',0,'darshan','2025-11-01 13:04:26'),(0,0,'SENSIT','PERINORM,STEMETIL','D06',0,'darshan','2025-11-05 12:55:40'),(0,0,'SENSIT','PT NOT TOLERATING MANEVUERS','D06',0,'darshan','2025-10-23 17:56:39');
/*!40000 ALTER TABLE `pc_enc_grp_dtl_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pc_enc_hdr`
--

DROP TABLE IF EXISTS `pc_enc_hdr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pc_enc_hdr` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `EH_Pat_ID` int(11) NOT NULL,
  `EH_Encounter_ID` int(11) NOT NULL,
  `EH_Encounter_Date` date NOT NULL,
  `EH_Phy_Exam_Fig` varchar(255) NOT NULL,
  `EH_Ref_By` varchar(20) NOT NULL,
  `EH_Att_By` varchar(20) NOT NULL COMMENT 'User ID from User Master',
  `EH_AD_CC` varchar(100) NOT NULL COMMENT 'Chief Complaints',
  `EH_AD_BP_S` varchar(6) NOT NULL,
  `EH_AD_BP_D` varchar(6) NOT NULL,
  `EH_AD_Temp` varchar(6) NOT NULL,
  `EH_AD_PR` varchar(6) NOT NULL COMMENT '|Pulse Rate',
  `EH_AD_RR` varchar(6) NOT NULL COMMENT 'Respiratry Rate',
  `EH_AD_Ht` varchar(6) NOT NULL COMMENT 'Height in Cms',
  `EH_AD_Wt` varchar(6) NOT NULL,
  `EH_AD_Waist` varchar(6) NOT NULL,
  `EH_AD_RBS` varchar(6) NOT NULL,
  `EH_AD_SPO2` varchar(6) NOT NULL COMMENT '% Oxigen in Blood',
  `EH_AD_BMI` varchar(6) NOT NULL,
  `EH_AD_HC` varchar(6) NOT NULL,
  `EH_AD_WH` varchar(6) NOT NULL,
  `EH_AD_TOTAL_FAT` varchar(6) NOT NULL,
  `EH_AD_VISCERAL_FAT` varchar(6) NOT NULL,
  `EH_AD_SBP_SUP` varchar(6) NOT NULL,
  `EH_AD_DBP_SUP` varchar(6) NOT NULL,
  `EH_CC` varchar(100) NOT NULL COMMENT 'Chief Complaints',
  `EH_BP_S` varchar(6) NOT NULL,
  `EH_BP_D` varchar(6) NOT NULL,
  `EH_Temp` varchar(6) NOT NULL,
  `EH_PR` varchar(6) NOT NULL COMMENT '|Pulse Rate',
  `EH_RR` varchar(6) NOT NULL COMMENT 'Respiratry Rate',
  `EH_Ht` varchar(6) NOT NULL COMMENT 'Height in Cms',
  `EH_Wt` varchar(6) NOT NULL,
  `EH_Waist` varchar(6) NOT NULL,
  `EH_RBS` varchar(6) NOT NULL,
  `EH_SPO2` varchar(6) NOT NULL COMMENT '% Oxigen in Blood',
  `EH_BMI` varchar(6) NOT NULL,
  `EH_HC` varchar(6) NOT NULL,
  `EH_WH` varchar(6) NOT NULL,
  `EH_TOTAL_FAT` varchar(6) NOT NULL,
  `EH_VISCERAL_FAT` varchar(6) NOT NULL,
  `EH_SBP_SUP` varchar(6) NOT NULL,
  `EH_DBP_SUP` varchar(6) NOT NULL,
  `EH_Diagnosis` varchar(100) NOT NULL,
  `EH_Pln_Nt` varchar(200) NOT NULL COMMENT 'Planned Notes',
  `EH_Followup` varchar(20) NOT NULL,
  `EH_Followup_Time` time DEFAULT NULL,
  `EH_Remark` varchar(100) NOT NULL,
  PRIMARY KEY (`EH_Pat_ID`,`EH_Encounter_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='patient care encounter header';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pc_enc_hdr`
--

LOCK TABLES `pc_enc_hdr` WRITE;
/*!40000 ALTER TABLE `pc_enc_hdr` DISABLE KEYS */;
INSERT INTO `pc_enc_hdr` VALUES (0,0,1,1,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2,2,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3,3,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4,4,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,5,5,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,6,6,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,7,7,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,8,8,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,9,9,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,9,899,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,9,6744,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,10,10,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,10,2649,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-06',NULL,''),(0,0,10,4474,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,11,11,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,12,12,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,12,2827,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,13,13,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,14,14,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,15,15,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,15,3655,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,16,16,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,16,822,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,17,17,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,18,18,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,19,19,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,19,3628,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,20,20,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,20,3065,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,21,21,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-14',NULL,''),(0,0,21,689,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,21,3312,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-12',NULL,''),(0,0,22,22,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,22,462,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,22,477,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-18',NULL,''),(0,0,22,1569,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,22,2992,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,22,4079,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-23',NULL,''),(0,0,24,24,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,25,25,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,26,26,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,26,2578,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,26,6475,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,27,827,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,28,28,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-13',NULL,''),(0,0,29,29,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,29,3516,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,30,30,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,31,31,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,32,32,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,33,33,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,34,34,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-14',NULL,''),(0,0,35,35,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,36,36,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,36,5007,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,37,37,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-13',NULL,''),(0,0,37,287,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,38,38,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,39,39,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,40,40,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,41,41,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,42,42,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,43,43,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,43,1412,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,44,44,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,44,510,'2025-10-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-15',NULL,''),(0,0,45,45,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,45,1051,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,46,46,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,47,47,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,47,475,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,47,1109,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,47,1678,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,49,49,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,50,50,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,52,52,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,53,53,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,53,159,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,53,289,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,53,317,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,53,845,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,53,1566,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,54,54,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,55,55,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,55,4392,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,56,56,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-16',NULL,''),(0,0,56,893,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,56,1900,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,56,5972,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-12',NULL,''),(0,0,57,57,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,58,58,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,58,7128,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,59,59,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,61,61,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,61,1863,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,62,62,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-14',NULL,''),(0,0,62,785,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,63,63,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-16',NULL,''),(0,0,63,1079,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,64,64,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,64,496,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,65,65,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,66,66,'2025-10-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-17',NULL,''),(0,0,66,690,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-20',NULL,''),(0,0,66,1428,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,67,67,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,68,68,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,69,69,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,70,70,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,71,71,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,71,487,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-18',NULL,''),(0,0,72,72,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,73,73,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,74,74,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,74,2038,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,75,75,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,75,4249,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,75,5938,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,75,6429,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-14',NULL,''),(0,0,76,76,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,77,77,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,78,564,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,79,79,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,79,5924,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-20',NULL,''),(0,0,80,80,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,80,641,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,81,81,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,81,401,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,81,638,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,81,1246,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,82,82,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,83,83,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,83,2494,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,83,5037,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,84,84,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,85,85,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,85,5805,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,86,86,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,86,3354,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,87,87,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,87,1236,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,88,88,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,89,89,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,89,5464,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-22',NULL,''),(0,0,90,90,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,90,819,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-25',NULL,''),(0,0,90,1612,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-11',NULL,''),(0,0,91,91,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,91,2774,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,91,6993,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,92,92,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,93,93,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,94,94,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,94,3691,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,94,5803,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,95,95,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,96,96,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,97,97,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,98,98,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,99,99,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,100,100,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,100,243,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,100,2785,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,100,5581,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,101,101,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,102,102,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,103,103,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,104,104,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,105,105,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,105,2501,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,106,106,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,107,107,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,108,108,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,109,109,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,110,110,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,111,111,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,111,613,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,112,112,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,112,4993,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-03',NULL,''),(0,0,113,113,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,114,114,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,115,115,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,116,116,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,116,1283,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,117,117,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,118,118,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,119,119,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,120,120,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,120,2548,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,120,4575,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,121,121,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,121,2549,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,121,4573,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,122,122,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,122,255,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,122,1488,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,123,123,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,124,124,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,125,125,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,125,642,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,125,974,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,126,126,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,127,127,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,127,224,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-18',NULL,''),(0,0,127,1242,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,127,1388,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,127,1912,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,128,128,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,128,1494,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,129,129,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,129,271,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,129,494,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,129,519,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,129,649,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,129,1397,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,129,1398,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,129,1509,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,129,1719,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,129,1926,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,129,2346,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,129,3036,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,129,4590,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,130,130,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,131,131,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,132,132,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,133,133,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,135,135,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,136,136,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,137,137,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,138,138,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,138,6553,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,139,139,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,140,140,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,141,141,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,142,142,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,142,447,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,142,470,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-23',NULL,''),(0,0,142,1389,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,143,143,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,144,144,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,145,145,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,145,640,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-23',NULL,''),(0,0,146,146,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,146,1440,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,147,147,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,148,148,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,148,643,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,149,149,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,150,151,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,151,152,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,151,268,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,151,501,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,151,516,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,151,647,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,151,2833,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,154,155,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,155,156,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,157,158,'2025-10-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,158,160,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,158,292,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,158,293,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,158,419,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,158,541,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,159,161,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,160,162,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,161,163,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,161,193,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-18',NULL,''),(0,0,161,1596,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,162,165,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-14',NULL,''),(0,0,163,166,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,163,4038,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-23',NULL,''),(0,0,164,167,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,165,168,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-13',NULL,''),(0,0,166,169,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,167,170,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,168,171,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,168,6069,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-13',NULL,''),(0,0,169,172,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,169,5642,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-07',NULL,''),(0,0,170,173,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,170,7078,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-22',NULL,''),(0,0,171,174,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,171,2652,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-06',NULL,''),(0,0,172,175,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,173,176,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,174,177,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,175,178,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,177,180,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,177,5249,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,178,181,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,178,702,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,178,1604,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,179,182,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,179,216,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-18',NULL,''),(0,0,179,1001,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,179,1074,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,179,1581,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,179,2928,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,180,183,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,181,184,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,181,3565,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,182,185,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,183,186,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,184,187,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,184,706,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-20',NULL,''),(0,0,185,188,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,186,189,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,187,190,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,188,191,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,188,5313,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,189,192,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,190,194,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,191,195,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,191,1549,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,191,4756,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,192,196,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,193,197,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,193,4616,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-31',NULL,''),(0,0,194,198,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,194,812,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,195,199,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,195,1598,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,196,200,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,197,201,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,197,1506,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-01',NULL,''),(0,0,198,202,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,198,5877,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,199,203,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,200,204,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,200,4566,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,201,205,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,202,206,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,203,207,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,204,208,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,204,1716,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,204,3817,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,205,209,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,206,210,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,206,5783,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-10',NULL,''),(0,0,207,211,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,209,213,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,210,214,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,211,215,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,212,217,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,212,3105,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,212,4766,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,213,218,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,214,219,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,214,1187,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,215,220,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,216,221,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,217,222,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,218,223,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,219,225,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,220,226,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,220,1084,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-06',NULL,''),(0,0,220,2705,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,221,227,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,221,2855,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,221,6957,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,222,228,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,223,229,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,223,3357,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-14',NULL,''),(0,0,224,230,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,224,428,'2025-10-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-15',NULL,''),(0,0,225,231,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,225,3603,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,226,232,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,226,2105,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,227,233,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,228,234,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,229,235,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,229,1479,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,230,236,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,230,964,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,231,237,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,232,238,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,232,3526,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,233,239,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,234,240,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,234,426,'2025-10-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-17',NULL,''),(0,0,234,655,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,234,670,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,234,1718,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,234,2760,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,234,3158,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,235,241,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,237,244,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,238,245,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,239,246,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-23',NULL,''),(0,0,240,247,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,241,248,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,242,249,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,243,250,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,244,251,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,245,252,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,246,253,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,247,254,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,248,256,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,249,257,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-13',NULL,''),(0,0,250,258,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,251,259,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,252,260,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,252,6122,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,253,261,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,254,262,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,255,263,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,255,1773,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,255,2130,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,255,3097,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,255,3112,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,255,4292,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,256,264,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,256,290,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,257,265,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,257,457,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,257,919,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,257,6821,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-30',NULL,''),(0,0,258,266,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,259,267,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,259,1062,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,260,269,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,260,891,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,260,6437,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,261,270,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,262,272,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,262,626,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,263,273,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,264,274,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,265,275,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,265,742,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,265,3593,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,266,276,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,266,3980,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,266,6862,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-20',NULL,''),(0,0,267,277,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,267,1765,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,269,279,'2025-10-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,269,5515,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,274,284,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-23',NULL,''),(0,0,274,1579,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,275,285,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,276,286,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,276,1134,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,277,288,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,278,291,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,279,294,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,280,295,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,281,296,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,282,297,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,283,298,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,283,6342,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,284,299,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,285,300,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,286,301,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,286,434,'2025-10-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-17',NULL,''),(0,0,286,1421,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,286,2738,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,287,302,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,287,2946,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,288,303,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,289,304,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,289,5625,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-07',NULL,''),(0,0,290,305,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,291,306,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,292,416,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-20',NULL,''),(0,0,292,810,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,292,941,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,293,308,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,293,1139,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,294,309,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,294,3646,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,295,310,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,296,6312,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,296,6504,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,296,6857,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,298,313,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,299,314,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,299,5971,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,300,315,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,300,2993,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,300,6400,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,301,316,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,302,318,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,303,319,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,303,2167,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-08',NULL,''),(0,0,304,320,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,305,321,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,306,322,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,307,323,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,307,1637,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,308,324,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,308,1909,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,309,325,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,309,898,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,310,326,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,310,1943,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,310,5637,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,311,327,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,313,329,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,314,330,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,314,5500,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-18',NULL,''),(0,0,315,331,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,316,332,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,316,1894,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,317,333,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,318,334,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,319,335,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,319,503,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,319,518,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,319,617,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,319,2769,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,319,4840,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,319,4918,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,320,336,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,321,422,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-14',NULL,''),(0,0,321,1413,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,322,338,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,322,6030,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,324,340,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,324,6095,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,325,341,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,325,2981,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,327,343,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,328,344,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,329,6726,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-19',NULL,''),(0,0,330,347,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,331,348,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,331,3481,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,331,6585,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-16',NULL,''),(0,0,332,349,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,332,3913,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,333,350,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,335,352,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,336,353,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,337,354,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,337,3601,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,338,355,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,338,2497,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,339,356,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,341,358,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,341,3362,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,342,359,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,342,4312,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,342,6512,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,343,360,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,344,361,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,344,2330,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,345,362,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,346,363,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-17',NULL,''),(0,0,347,364,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,347,2056,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,348,4330,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,349,366,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,351,831,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,353,370,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,354,371,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,355,372,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,356,373,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,356,1384,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,356,2678,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,358,375,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,359,376,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,360,377,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,361,378,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,361,4309,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,363,381,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-28',NULL,''),(0,0,363,601,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,363,3009,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,364,6059,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,365,383,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,365,3234,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,365,5269,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,366,384,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,366,2103,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,367,385,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,367,5605,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,368,386,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,369,387,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,370,388,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,370,1087,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,371,389,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,372,390,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,373,391,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,373,3028,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,374,392,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,375,394,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,376,395,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,376,1040,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,378,398,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,378,1423,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,378,3715,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,379,399,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,380,2215,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,382,403,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,383,5563,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,384,405,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,385,406,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-18',NULL,''),(0,0,386,407,'2025-10-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,387,527,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-18',NULL,''),(0,0,387,1135,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,390,6057,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,391,476,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,391,3814,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-05-19',NULL,''),(0,0,392,414,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,392,3212,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,392,3849,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,392,4321,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,392,5505,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,392,6801,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,393,415,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-28',NULL,''),(0,0,393,1745,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,393,4159,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,394,417,'2025-10-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-22',NULL,''),(0,0,395,418,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,396,420,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,397,421,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,397,2192,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,398,423,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,399,424,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-31',NULL,''),(0,0,400,425,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,401,427,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,402,429,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-21',NULL,''),(0,0,403,430,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-18',NULL,''),(0,0,403,1425,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,403,2340,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,403,3044,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,404,431,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,405,432,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,406,433,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,406,3503,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,407,435,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,408,436,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,409,437,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,410,438,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-21',NULL,''),(0,0,411,439,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,412,440,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,412,3841,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,413,441,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-16',NULL,''),(0,0,413,952,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,414,442,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,415,443,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,416,444,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,417,445,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,417,3650,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,418,446,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,419,448,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,420,449,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,421,450,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,421,5893,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-11',NULL,''),(0,0,422,451,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,422,1807,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,423,452,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-21',NULL,''),(0,0,424,453,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,425,454,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,426,455,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,426,2828,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,427,456,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,428,458,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,428,562,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,429,459,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,429,488,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-16',NULL,''),(0,0,429,857,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,429,4212,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,430,460,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,431,461,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,432,463,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,433,464,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,434,465,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,435,466,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,436,467,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,436,1829,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,437,468,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,438,469,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-31',NULL,''),(0,0,438,2087,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,438,4833,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,439,471,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-18',NULL,''),(0,0,440,472,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,441,473,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,442,474,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,443,478,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,444,479,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,444,1585,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,445,480,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,445,835,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,446,481,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,446,1401,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-08',NULL,''),(0,0,447,482,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,448,483,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,449,1983,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,450,485,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,451,486,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,452,489,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-30',NULL,''),(0,0,452,1932,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,452,4303,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,453,490,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,453,969,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,453,1588,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,454,491,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,454,683,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-20',NULL,''),(0,0,454,1300,'2025-10-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,454,1755,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,454,2213,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,455,492,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,455,1552,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,455,1564,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,456,493,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,457,495,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,458,497,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,458,1648,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,458,4462,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,459,498,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,460,499,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,461,500,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,462,502,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,463,504,'2025-10-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,463,548,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,464,505,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-18',NULL,''),(0,0,465,506,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-17',NULL,''),(0,0,466,1188,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,466,7092,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,467,509,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-17',NULL,''),(0,0,468,511,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,469,512,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,470,513,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,471,514,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,472,515,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-28',NULL,''),(0,0,472,4604,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,473,517,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,474,520,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,475,521,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,475,6800,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,476,522,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-22',NULL,''),(0,0,476,5346,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-04',NULL,''),(0,0,477,523,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,477,841,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,477,1623,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,477,2344,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,478,524,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,479,525,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-28',NULL,''),(0,0,480,526,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,481,528,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,482,529,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-18',NULL,''),(0,0,483,530,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,483,2450,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,484,531,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,485,532,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-18',NULL,''),(0,0,486,533,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,486,3003,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,487,534,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-28',NULL,''),(0,0,487,2456,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,488,535,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,489,536,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,489,1106,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,490,537,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,490,1751,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,491,538,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,492,539,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,492,6105,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,493,540,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,494,542,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,495,543,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-28',NULL,''),(0,0,495,1887,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,496,544,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,496,2446,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,497,545,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,498,546,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,498,3072,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,499,547,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-28',NULL,''),(0,0,500,549,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-20',NULL,''),(0,0,501,550,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,502,551,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,503,552,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-18',NULL,''),(0,0,504,553,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,505,554,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,505,1679,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,505,6478,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,506,555,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,506,1091,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,506,5327,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,507,556,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,507,574,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-20',NULL,''),(0,0,507,1127,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,508,557,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,508,687,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-20',NULL,''),(0,0,509,558,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,510,559,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,510,561,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,510,1562,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,511,560,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,512,563,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,513,565,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,513,5977,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,514,566,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,514,1575,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,514,5635,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,515,567,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,516,568,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,517,569,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,518,570,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,518,2929,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,519,571,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,519,3170,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,519,4454,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-02',NULL,''),(0,0,520,572,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,520,3303,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,521,573,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,521,3430,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,522,575,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,522,1869,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,523,576,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,524,577,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,525,578,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,526,579,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,527,580,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,528,581,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,529,582,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,529,605,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,530,583,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,531,584,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,532,585,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,532,2786,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,533,586,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,533,2989,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,533,3674,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,533,4296,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,534,587,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,534,2923,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,535,588,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,535,3090,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,536,589,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-28',NULL,''),(0,0,537,590,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,538,591,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-23',NULL,''),(0,0,538,5143,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,539,592,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,539,1235,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,539,2270,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,539,3216,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,540,593,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,541,594,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-11',NULL,''),(0,0,542,595,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,543,596,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-23',NULL,''),(0,0,544,597,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,546,599,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,546,2402,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,546,5759,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,547,600,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-28',NULL,''),(0,0,547,1683,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,548,602,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,549,603,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,550,604,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,550,2885,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,550,5800,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,551,606,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,551,2838,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,551,4570,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,552,607,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-22',NULL,''),(0,0,552,5288,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-03',NULL,''),(0,0,553,608,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,553,2320,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,554,609,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,554,895,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,555,610,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,556,611,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,557,612,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-28',NULL,''),(0,0,558,614,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,559,615,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,560,616,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,561,618,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,562,619,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,562,3288,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,562,6046,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,563,620,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,564,621,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,564,2977,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,565,622,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-18',NULL,''),(0,0,566,623,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,567,624,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,567,6471,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-16',NULL,''),(0,0,568,625,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-18',NULL,''),(0,0,569,627,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,570,628,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,571,629,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,571,1811,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,571,3268,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,571,4560,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,572,630,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,573,631,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,574,632,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,574,5362,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,575,633,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,576,634,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,577,635,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,578,636,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,579,637,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,580,639,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,580,5214,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,581,644,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,582,645,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-23',NULL,''),(0,0,583,646,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,584,648,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,585,650,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-23',NULL,''),(0,0,586,651,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,587,652,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,587,1141,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,587,1478,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,588,653,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,589,654,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-28',NULL,''),(0,0,589,1880,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-08',NULL,''),(0,0,589,3103,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,590,656,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,591,657,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-22',NULL,''),(0,0,592,658,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,592,4461,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,593,659,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,593,4561,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,594,660,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,594,2131,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,594,2737,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,595,661,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,596,662,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,597,663,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,598,664,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,599,665,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,600,666,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,601,667,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,601,4826,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,603,669,'2025-10-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,603,676,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,603,1411,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,603,1774,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,606,674,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-18',NULL,''),(0,0,606,1269,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,607,675,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-20',NULL,''),(0,0,608,677,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,610,679,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,610,1124,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,611,680,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,611,1125,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,611,1589,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,611,3286,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,613,682,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,614,685,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,615,686,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-24',NULL,''),(0,0,616,688,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-29',NULL,''),(0,0,616,2066,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,617,691,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,618,692,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-24',NULL,''),(0,0,619,693,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,619,3320,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,619,6269,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-13',NULL,''),(0,0,620,694,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,621,695,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,621,2440,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,622,696,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,622,3148,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,622,7113,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,623,697,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-29',NULL,''),(0,0,623,1859,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,624,698,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,624,1704,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,624,4496,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,624,6079,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,625,699,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,625,701,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-18',NULL,''),(0,0,626,700,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,627,703,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-29',NULL,''),(0,0,627,1750,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,628,704,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,629,705,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,630,707,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,630,2001,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,631,708,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,631,3213,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,632,709,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,632,3682,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,633,710,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,634,711,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-24',NULL,''),(0,0,635,712,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-21',NULL,''),(0,0,636,713,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-29',NULL,''),(0,0,637,714,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-29',NULL,''),(0,0,637,1790,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,638,715,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,639,716,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,640,717,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,641,718,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,641,3976,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,642,719,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,643,720,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-29',NULL,''),(0,0,644,721,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-24',NULL,''),(0,0,645,722,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,645,3800,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,646,723,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,647,724,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,648,725,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-21',NULL,''),(0,0,648,3146,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,649,743,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-25',NULL,''),(0,0,649,1370,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,650,727,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-29',NULL,''),(0,0,651,728,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,652,729,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,652,6000,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,654,731,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,655,732,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,655,4879,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-31',NULL,''),(0,0,656,733,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,657,734,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,657,1601,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-05',NULL,''),(0,0,657,2102,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,657,3426,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,657,4076,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,658,735,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,659,736,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,659,746,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,659,2363,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,659,5880,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,660,738,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,661,739,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-22',NULL,''),(0,0,662,740,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,662,2010,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,662,4402,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-06',NULL,''),(0,0,663,741,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,663,6359,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,664,744,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,664,3723,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,665,745,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,666,747,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,667,748,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,667,3273,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,667,7138,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-21',NULL,''),(0,0,668,749,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,668,2943,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,669,750,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,669,3365,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,670,751,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-29',NULL,''),(0,0,671,752,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,672,753,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-24',NULL,''),(0,0,673,754,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,674,755,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,674,1516,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,675,756,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,675,1526,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,675,3383,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,676,757,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,677,758,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,678,759,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,679,761,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-20',NULL,''),(0,0,680,762,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,681,2097,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,682,764,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,683,765,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,683,2902,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,683,7074,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-21',NULL,''),(0,0,684,766,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,685,767,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,685,2498,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,687,769,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,688,770,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,688,6281,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-13',NULL,''),(0,0,689,1875,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,690,773,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,691,774,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-22',NULL,''),(0,0,692,776,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-21',NULL,''),(0,0,692,3281,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,692,4243,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,693,777,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,695,779,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,695,3935,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-20',NULL,''),(0,0,696,780,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,698,782,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,699,783,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,702,788,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,703,789,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,704,790,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,705,791,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,705,5522,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,705,6430,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,706,792,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,708,795,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-24',NULL,''),(0,0,709,796,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,709,1984,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,710,797,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,711,798,'2025-10-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,714,803,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-21',NULL,''),(0,0,714,1804,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,714,2972,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,714,3944,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-20',NULL,''),(0,0,714,5099,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,715,804,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,716,805,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-12',NULL,''),(0,0,717,806,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-13',NULL,''),(0,0,718,807,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,719,808,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-20',NULL,''),(0,0,720,809,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,721,811,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,721,2422,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,722,813,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,723,814,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,724,815,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,724,2455,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,724,4983,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,725,816,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,726,817,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,727,818,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,727,1904,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,727,2777,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,727,6554,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,728,820,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,729,821,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,730,823,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-30',NULL,''),(0,0,730,1893,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,731,824,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,732,825,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,733,826,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,733,5748,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,734,828,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,735,829,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,735,2536,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,736,830,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,737,832,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,737,3955,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,738,833,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,739,834,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,739,3231,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,739,5013,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,740,836,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,740,939,'2025-10-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-28',NULL,''),(0,0,740,1550,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,741,837,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,741,3377,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,742,838,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,743,839,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,744,840,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,744,1145,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,745,842,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,745,1705,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,746,843,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,746,6473,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,747,844,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,747,6357,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,748,846,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,749,847,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,750,848,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,751,849,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,752,850,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,752,871,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,752,1558,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,752,3223,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,752,5182,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,753,851,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,754,852,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,755,854,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,756,855,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,757,856,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,758,858,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,759,859,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-23',NULL,''),(0,0,760,860,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,761,861,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,763,863,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,764,864,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,765,865,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,766,866,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,767,867,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,767,6298,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,768,869,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,769,870,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-25',NULL,''),(0,0,769,2206,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-11',NULL,''),(0,0,770,872,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,770,2120,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,771,873,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,772,874,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,772,3319,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-13',NULL,''),(0,0,773,875,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,774,876,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-23',NULL,''),(0,0,775,877,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,776,878,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,776,3120,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,776,6513,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,777,879,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,777,3881,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-20',NULL,''),(0,0,778,880,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-30',NULL,''),(0,0,779,881,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,781,883,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-20',NULL,''),(0,0,782,885,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,782,3119,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,782,7133,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-21',NULL,''),(0,0,783,886,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,783,4428,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,784,887,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,785,888,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,785,901,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,785,1959,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,786,889,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,787,890,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,787,3089,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,787,4869,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-31',NULL,''),(0,0,788,6675,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-18',NULL,''),(0,0,789,894,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,789,4501,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,790,896,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,790,3494,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,791,897,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,791,4822,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,792,937,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,792,5333,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,793,902,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,795,904,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-13',NULL,''),(0,0,795,3087,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,796,906,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,797,907,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,797,2430,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,797,5198,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,798,908,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,800,910,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,801,911,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,803,913,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,804,1910,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,804,2970,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,804,6764,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,805,916,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,805,2374,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,805,5187,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-13',NULL,''),(0,0,806,917,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,807,918,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,807,3545,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,808,920,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-31',NULL,''),(0,0,808,1020,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,810,923,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,815,928,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,817,930,'2025-10-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,817,4568,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,818,3323,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,818,3330,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,818,3399,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,818,5107,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,820,5090,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,821,938,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,822,940,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,823,942,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,823,5449,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-06',NULL,''),(0,0,824,943,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,825,944,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,826,945,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,827,946,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,827,3520,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,828,947,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,829,948,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,829,4115,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-23',NULL,''),(0,0,830,949,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,831,950,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-31',NULL,''),(0,0,831,2156,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,832,951,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,833,953,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,834,954,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,834,5176,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,835,955,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-24',NULL,''),(0,0,836,956,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,837,957,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,838,958,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,839,959,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,840,960,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,840,6141,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,841,961,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,842,962,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,842,2631,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,842,6193,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-13',NULL,''),(0,0,843,963,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,843,3417,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,844,965,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,844,3199,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,844,6332,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,845,966,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,845,1042,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,846,967,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,847,968,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,847,2975,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,848,970,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-31',NULL,''),(0,0,849,971,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,849,3418,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,850,972,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,851,973,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,852,975,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,853,976,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,853,4294,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,854,977,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,854,5340,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-04',NULL,''),(0,0,855,978,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,856,979,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,856,6686,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-18',NULL,''),(0,0,857,980,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,858,981,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,858,2734,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,859,982,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-31',NULL,''),(0,0,860,983,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-05',NULL,''),(0,0,861,984,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,862,985,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,863,986,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,863,3844,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,864,987,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,864,5196,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,865,988,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,865,4976,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,866,989,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,867,990,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,867,4528,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,868,991,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,869,992,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-05',NULL,''),(0,0,869,2594,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,870,993,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,870,1391,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,870,2375,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,870,3797,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,871,994,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,872,995,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,873,996,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,873,4091,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,874,997,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,875,998,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,876,999,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,877,1000,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,880,1005,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,880,3512,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,882,1007,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,884,1009,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,884,6412,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-14',NULL,''),(0,0,886,1011,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-05',NULL,''),(0,0,886,2726,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,887,1012,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,887,4200,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-24',NULL,''),(0,0,888,1013,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,888,4949,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,889,1014,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-31',NULL,''),(0,0,890,1015,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-05',NULL,''),(0,0,891,1016,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,891,1379,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,892,1017,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,892,5745,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,893,1018,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,893,2569,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,894,1019,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,894,1176,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,894,2427,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,894,5747,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,895,1021,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-31',NULL,''),(0,0,896,1022,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,896,2878,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,897,1023,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,897,1531,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-06',NULL,''),(0,0,897,2614,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,897,3572,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,897,5618,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,897,6786,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,899,1026,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,900,1027,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,901,1028,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,902,1029,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,903,1030,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,903,3931,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-19',NULL,''),(0,0,904,1031,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-05',NULL,''),(0,0,905,1032,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,907,1034,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-31',NULL,''),(0,0,907,2115,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,908,1035,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,909,1036,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,910,1192,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,911,1266,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-23',NULL,''),(0,0,911,1485,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,912,1039,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,912,1783,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,913,1043,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,913,1573,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,914,1044,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,915,1045,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,915,6650,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-18',NULL,''),(0,0,916,1046,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,916,4223,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,917,1047,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,917,2093,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,919,1050,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,919,1128,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,920,1052,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,920,6514,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-16',NULL,''),(0,0,921,1053,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-24',NULL,''),(0,0,922,1055,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,922,5702,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,923,1056,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,924,1057,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,924,1507,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,924,3034,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,925,1059,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,925,6761,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-19',NULL,''),(0,0,926,1060,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,926,3856,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,927,1061,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,931,1068,'2025-10-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,932,1073,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,932,1210,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,932,1627,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,934,1075,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,935,1076,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,936,1077,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,937,1078,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,937,5953,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,938,1080,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,939,1081,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,940,1082,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-14',NULL,''),(0,0,941,1083,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,942,1085,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-01',NULL,''),(0,0,942,1953,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,943,1086,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,943,6366,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-14',NULL,''),(0,0,944,1088,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-01',NULL,''),(0,0,944,2143,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,946,1797,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,947,1092,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,947,1682,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,948,1093,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,948,3571,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,949,1094,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,949,6343,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-14',NULL,''),(0,0,950,1095,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-01',NULL,''),(0,0,950,1854,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,951,1096,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,952,1097,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,953,1098,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,954,1099,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,954,1542,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,954,2739,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,954,3339,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,955,1100,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,955,3633,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,956,1101,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-06',NULL,''),(0,0,957,1102,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,958,1103,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,958,7083,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-21',NULL,''),(0,0,959,1104,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,960,1105,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,961,1107,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,961,4713,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,962,1108,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,962,3685,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,962,5030,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-03',NULL,''),(0,0,963,1110,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,964,1111,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,965,1112,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,966,1113,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-01',NULL,''),(0,0,967,1114,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,968,1115,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,968,4099,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,969,1116,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,969,1140,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,970,1117,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,970,5795,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,971,1118,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,971,6566,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-16',NULL,''),(0,0,972,1119,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,972,1758,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,972,2913,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,973,1120,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,974,1121,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,974,2728,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,974,3155,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,974,5572,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,975,1122,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,976,1123,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-01',NULL,''),(0,0,976,1163,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,977,1126,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,978,1129,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,979,1130,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,980,1131,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,980,4300,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,981,1132,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,982,1133,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,982,1296,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-30',NULL,''),(0,0,982,1593,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,982,1923,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,982,2919,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,982,4880,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,983,1136,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,983,3523,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,984,1137,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,985,1138,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,985,1653,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,986,1142,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,988,1146,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,989,1147,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-30',NULL,''),(0,0,990,1148,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,990,3714,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,991,1149,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,991,6007,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,992,1150,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,993,1151,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,994,1152,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,994,3504,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,996,1154,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,996,2696,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,996,5040,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,996,6507,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,997,1155,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,997,6409,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,998,1156,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,999,1157,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,999,3919,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,999,6784,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1000,1158,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-01',NULL,''),(0,0,1001,1160,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-01',NULL,''),(0,0,1002,1162,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1004,1165,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,1005,1166,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,1007,1169,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-14',NULL,''),(0,0,1008,1170,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1008,2094,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,1008,6303,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-13',NULL,''),(0,0,1009,1171,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1009,1870,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1010,1172,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1011,1173,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-01',NULL,''),(0,0,1011,2307,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,1012,1174,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1012,4929,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-31',NULL,''),(0,0,1013,1175,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-01',NULL,''),(0,0,1014,1177,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1015,1178,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,1015,1609,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1015,3739,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,1016,1180,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-24',NULL,''),(0,0,1016,3842,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,1017,1181,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,1017,2000,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1018,1182,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,1019,1183,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1020,1184,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,1020,2023,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,1022,1186,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1022,5509,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-22',NULL,''),(0,0,1023,1190,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1024,1191,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1025,1193,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1026,1194,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-06',NULL,''),(0,0,1026,2686,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,1026,5822,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-24',NULL,''),(0,0,1027,1195,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1027,3539,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,1027,5568,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1028,1197,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-06',NULL,''),(0,0,1029,1198,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-08',NULL,''),(0,0,1029,1227,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1029,3000,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,1030,1200,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1031,1201,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1032,1204,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,1032,2542,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,1032,5706,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,1033,1205,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1034,1434,'2025-10-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-31',NULL,''),(0,0,1035,1207,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1036,1299,'2025-10-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1036,1341,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-29',NULL,''),(0,0,1036,1403,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1036,1404,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1036,1618,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1036,2209,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1037,5190,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1037,5312,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1038,1211,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1039,1212,'2025-10-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,1040,1213,'2025-10-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,1041,1214,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1042,1215,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1042,2235,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1043,1216,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1044,1217,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1044,3116,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,1045,1218,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,1045,3866,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-20',NULL,''),(0,0,1046,1219,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-28',NULL,''),(0,0,1047,1220,'2025-10-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,1048,1221,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1050,1223,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1051,1225,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1051,3432,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,1051,5053,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,1052,4234,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-24',NULL,''),(0,0,1053,1229,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1053,1498,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1053,2756,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1053,6140,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1054,1230,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1054,2768,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1055,1231,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,1055,6724,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,1056,1232,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,1056,6723,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,1057,1233,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1058,1234,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1059,1237,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-28',NULL,''),(0,0,1060,1238,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1060,4116,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,1061,1239,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1062,1240,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1062,2048,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,1062,3901,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,1062,6003,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,1063,1241,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1065,1244,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1066,1247,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1066,4414,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-06',NULL,''),(0,0,1067,1248,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1067,1474,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1067,2154,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1067,2959,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1067,4739,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1068,1249,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1068,2539,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-03',NULL,''),(0,0,1070,1251,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,1071,1252,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,1071,6751,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,1072,1253,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-28',NULL,''),(0,0,1073,1254,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,1074,1255,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,1075,1256,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,1076,1257,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,1077,1258,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1078,1259,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1079,1260,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,1080,1261,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,1081,1262,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1082,1263,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,1083,1500,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1083,1555,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1084,1265,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1085,1268,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,1085,6257,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,1086,1270,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1086,3204,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,1086,6135,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,1087,1271,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,1087,4919,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-31',NULL,''),(0,0,1088,1272,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-02',NULL,''),(0,0,1090,1276,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1091,1277,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-28',NULL,''),(0,0,1092,1390,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1093,1279,'2025-10-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-24',NULL,''),(0,0,1094,1280,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1094,1642,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1094,3152,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1095,1281,'2025-10-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-24',NULL,''),(0,0,1095,1378,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1095,1795,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1095,2281,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1095,2846,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1095,3680,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1095,6614,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1099,1289,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1101,1291,'2025-10-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-23',NULL,''),(0,0,1102,1292,'2025-10-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-27',NULL,''),(0,0,1103,1293,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-31',NULL,''),(0,0,1104,1294,'2025-10-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-28',NULL,''),(0,0,1104,1580,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1106,1297,'2025-10-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1106,1339,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-29',NULL,''),(0,0,1106,1826,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1106,2255,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1107,1298,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-31',NULL,''),(0,0,1107,2165,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,1109,1302,'2025-10-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1110,1902,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1110,5282,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1110,5744,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1111,4451,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1119,1767,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,1127,1557,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1127,2799,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1128,1420,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1128,3123,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,1128,6025,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,1134,1342,'2025-10-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-22',NULL,''),(0,0,1134,2169,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1134,3243,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,1134,5979,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1135,1343,'2025-10-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,1135,3068,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,1136,1344,'2025-10-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,1137,1345,'2025-10-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,1138,3237,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1139,1347,'2025-10-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-22',NULL,''),(0,0,1140,1502,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1140,2724,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1140,4112,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1140,4806,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1140,5406,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1141,1625,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1143,1410,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1143,1973,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1151,1362,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-30',NULL,''),(0,0,1152,2172,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,1153,1364,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1154,1365,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1156,1367,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1157,1368,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,1158,1369,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-30',NULL,''),(0,0,1158,2026,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1158,5590,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1159,1371,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,1159,5852,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1160,1372,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,1161,1373,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,1161,4748,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,1162,1374,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1163,1375,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1164,1376,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1165,1377,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1166,1380,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1166,1879,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1167,1381,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1168,1382,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,1169,1383,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,1169,2414,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,1169,5273,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,1170,1385,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1170,3207,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,1170,6076,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,1171,1386,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1172,1387,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1172,1477,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1172,1616,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1172,2182,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1172,2723,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1173,1392,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1173,1519,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-30',NULL,''),(0,0,1173,1945,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1173,2396,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1173,2492,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1173,3008,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1173,5807,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1174,1393,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1174,1437,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-31',NULL,''),(0,0,1174,2113,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1175,1394,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,1176,1395,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,1177,1396,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1177,4301,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1179,1400,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1180,1402,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1180,1405,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-30',NULL,''),(0,0,1181,1406,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,1182,1407,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1183,1408,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1184,1409,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,1184,4981,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,1185,1414,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1186,1415,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1187,1416,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1187,3353,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,1187,5065,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,1188,1417,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1189,1418,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1189,1443,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-01',NULL,''),(0,0,1189,2155,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1189,5439,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1190,1419,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1192,1424,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1192,1523,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1193,1426,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1193,4169,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-24',NULL,''),(0,0,1194,1427,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,1195,1501,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,1195,3284,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,1195,6051,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,1196,1430,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1197,1431,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1199,1433,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1200,1435,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1201,1436,'2025-10-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1201,1694,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1201,2290,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1205,1444,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1206,1445,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,1207,1446,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1207,5649,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,1208,1447,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1208,4104,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,1209,1448,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1209,4773,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-14',NULL,''),(0,0,1210,1449,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,1210,4267,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,1211,1450,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1211,2153,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1212,1451,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,1213,1452,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,1214,1453,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,1215,1454,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1215,1594,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1216,1455,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,1217,1456,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1218,1457,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-30',NULL,''),(0,0,1218,1965,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1219,1458,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1220,1459,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1221,1460,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1222,1461,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,1222,5365,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-04',NULL,''),(0,0,1223,1462,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1224,1463,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,1225,1464,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,1225,4539,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1226,1465,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1227,1466,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1227,4081,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,1228,1467,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,1228,3246,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,1229,1468,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,1229,3673,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,1230,1469,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,1230,2388,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,1231,1470,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-30',NULL,''),(0,0,1232,1471,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1233,1472,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1233,4071,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-23',NULL,''),(0,0,1234,1473,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1235,1475,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,1236,1476,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1237,1480,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1238,1481,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,1239,1482,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1240,1483,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1241,1484,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1242,1486,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1242,1687,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1242,2080,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1242,2243,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1243,1487,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1244,1489,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1245,1490,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1245,1995,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-06',NULL,''),(0,0,1245,2315,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1245,2719,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1245,3142,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1246,1491,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1246,2487,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1246,3616,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1247,1492,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1248,1493,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1249,1495,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1251,1499,'2025-10-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1253,1504,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-01',NULL,''),(0,0,1253,2266,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,1254,1505,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-10-31',NULL,''),(0,0,1255,1508,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,1256,1510,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1257,1511,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1259,1513,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1260,1514,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1261,1515,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1262,1517,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1263,1518,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1264,1536,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,1264,2244,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1264,2936,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1265,1521,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1265,2242,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1265,4497,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1266,1522,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1267,1524,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,1267,5780,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-10',NULL,''),(0,0,1268,1525,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1268,4873,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1268,6172,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1269,1527,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-06',NULL,''),(0,0,1269,2965,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,1270,1528,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1271,1529,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,1271,4720,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,1272,1530,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1273,1532,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1274,1533,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1275,1534,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1275,3895,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,1276,1535,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1276,1572,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1276,3076,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,1276,5903,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1277,1537,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1277,2025,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1278,1538,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,1279,1539,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1279,4827,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,1280,1540,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-06',NULL,''),(0,0,1280,4162,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,1281,1541,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,1281,4281,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,1282,1543,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1282,6349,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,1283,1544,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-01',NULL,''),(0,0,1283,1997,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1284,1545,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1284,3758,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,1285,1546,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1286,1547,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1286,2568,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,1287,1548,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1288,1551,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-11',NULL,''),(0,0,1288,2951,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,1289,1553,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-06',NULL,''),(0,0,1289,2567,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,1289,5400,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-20',NULL,''),(0,0,1290,1554,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1291,1556,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1292,1559,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1292,4332,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1293,1560,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,1294,1561,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,1294,6128,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-22',NULL,''),(0,0,1295,1563,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,1296,1565,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1296,2183,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1297,1567,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1297,5384,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,1298,1568,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,1298,5700,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,1299,1570,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,1299,4498,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,1300,1571,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1301,1574,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1302,1576,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1302,2162,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,1302,5767,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,1303,1577,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1304,1578,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1305,1582,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1306,1583,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1307,1584,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1308,1586,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,1309,1587,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-11',NULL,''),(0,0,1310,1590,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1311,1591,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,1312,1592,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1312,2967,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,1313,1595,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1313,2432,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1313,3662,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,1313,4643,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1313,4837,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,1314,1597,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-24',NULL,''),(0,0,1315,2483,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1316,1600,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,1316,3550,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,1316,6778,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,1317,1602,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-06',NULL,''),(0,0,1317,1611,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1319,1605,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1319,6114,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,1320,1606,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-06',NULL,''),(0,0,1320,2512,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,1320,4105,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,1321,1607,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,1322,1608,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-11',NULL,''),(0,0,1323,1610,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,1323,2257,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,1324,1613,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-06',NULL,''),(0,0,1324,2608,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,1325,1614,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,1325,5910,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,1326,1617,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1326,3812,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,1327,1619,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,1725,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,2246,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,2302,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,2403,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,2732,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,2816,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,3077,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,4271,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,4336,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,4565,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,4696,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,4816,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,4959,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,5101,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,5207,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,5303,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,5584,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,5691,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,6151,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,6323,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1327,6906,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1328,1620,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1329,1621,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,1330,1622,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,1331,1624,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1332,1626,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1332,2110,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1332,2447,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1334,1629,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-06',NULL,''),(0,0,1335,1630,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1336,1631,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1337,1632,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,1337,4307,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1338,1633,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,1338,2269,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1339,1634,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1340,1635,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1340,6691,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,1341,1636,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1341,2417,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1342,1638,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1343,1639,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1343,2106,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1344,1640,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1344,6296,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,1345,1641,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-06',NULL,''),(0,0,1345,2733,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1346,1643,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1346,1700,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,1346,2107,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1346,2217,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1346,2232,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1346,2349,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1347,1644,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,1348,1645,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1349,1646,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-01',NULL,''),(0,0,1349,2772,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,1350,1647,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1351,1649,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,1351,5705,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,1352,1650,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1353,1651,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,1353,3855,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,1354,1654,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1355,1655,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1356,1656,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1356,3858,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,1357,1657,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1358,1658,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1360,1660,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-05',NULL,''),(0,0,1361,1661,'2025-10-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1361,3029,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1363,1663,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1363,4589,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-26',NULL,''),(0,0,1364,1664,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,1365,1665,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1366,1666,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1366,3686,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1367,1667,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,1368,1668,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1369,1669,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1369,5054,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1370,1670,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1371,1671,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1372,1672,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1372,2185,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1373,1673,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1374,1674,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1374,4059,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1375,1675,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1375,2821,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,1375,4861,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,1376,1676,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1377,1677,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,1378,1680,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,1379,1681,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1380,1684,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,1381,1685,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1381,2426,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1382,1686,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1383,1688,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1383,1711,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1383,2665,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1383,4343,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1383,4515,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1384,1689,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1385,1690,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1386,1691,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1386,3829,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,1386,4001,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-02',NULL,''),(0,0,1386,4874,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,1387,1692,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1388,1693,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1388,2664,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,1389,1695,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-25',NULL,''),(0,0,1390,1696,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,1391,1697,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,1392,1698,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1393,1699,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1393,3496,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,1394,1701,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,1395,1702,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1396,1703,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1396,3331,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,1397,1706,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1398,2348,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1399,1708,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1400,1709,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,1401,1710,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,1402,1712,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-19',NULL,''),(0,0,1402,1794,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1402,3843,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,1403,1713,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1403,1727,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1403,3236,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1403,4087,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,1404,1714,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1405,1715,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1406,1717,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1407,1720,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,1407,4509,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,1408,1721,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1408,1723,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-06',NULL,''),(0,0,1409,1722,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,1409,5899,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,1410,1724,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1410,3195,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,1411,1726,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1412,1728,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1412,4805,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,1413,1729,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,1414,1730,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,1414,6593,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-16',NULL,''),(0,0,1415,1731,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-05',NULL,''),(0,0,1416,1732,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1416,4471,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1417,1733,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,1418,1734,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1419,1735,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,1419,4388,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-06',NULL,''),(0,0,1420,1736,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,1421,1737,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1422,1738,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,1423,1739,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,1424,1740,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1425,1741,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1425,5985,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1426,1742,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1427,1743,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1427,3538,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-02',NULL,''),(0,0,1427,5770,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,1428,1744,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1428,2715,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1429,1746,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,1430,1747,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1430,3382,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1431,1748,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1432,1749,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1433,1752,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1434,1753,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1435,1754,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1436,1756,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1437,1757,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,1437,3025,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1437,3423,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1439,1760,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1439,7058,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1440,1761,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,1441,1762,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1442,1763,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1443,1764,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1444,1766,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,1445,1768,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1446,1769,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,1447,1770,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1448,1771,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,1449,1772,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,1450,1775,'2025-10-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1451,1777,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1453,1779,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1454,1780,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1454,1980,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1455,1781,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1456,1782,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1456,3228,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1457,1784,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-06',NULL,''),(0,0,1458,1785,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1459,1786,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1460,1787,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,1460,2282,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-08',NULL,''),(0,0,1461,1788,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-08',NULL,''),(0,0,1461,2944,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,1461,2987,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1462,1789,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1462,3480,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,1463,1791,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,1463,3922,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1463,4251,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,1463,5319,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-05',NULL,''),(0,0,1464,1792,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1465,1793,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,1465,4607,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,1466,1796,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1467,1798,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-26',NULL,''),(0,0,1469,1800,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-26',NULL,''),(0,0,1470,1801,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1471,1802,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,1472,1803,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1473,1805,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1473,2275,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1473,4889,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1473,7107,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1475,1808,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1476,1809,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,1477,1810,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1477,4792,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,1478,1812,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1479,1813,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,1480,1814,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,1481,1815,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1481,4870,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1481,4881,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1482,1816,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1483,1817,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-05',NULL,''),(0,0,1484,1818,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,1485,1819,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,1486,1820,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,1487,1821,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1487,2101,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1488,1822,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1489,1823,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1490,1824,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1491,1825,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-05',NULL,''),(0,0,1492,1827,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-26',NULL,''),(0,0,1493,1828,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1493,2764,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1494,1830,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1495,1831,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1495,1888,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-05',NULL,''),(0,0,1495,3678,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,1496,1832,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1496,4830,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,1496,5657,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1497,1833,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1498,1834,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,1498,5025,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,1499,1835,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1499,7077,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-21',NULL,''),(0,0,1500,1836,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,1500,6403,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,1501,1837,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1502,1838,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,1503,1839,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1503,3257,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,1504,1840,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1504,3118,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1504,5804,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1505,1841,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,1505,3442,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1505,5579,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,1506,1842,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1507,1843,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1508,1844,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1508,3127,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1508,4308,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1509,1845,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,1509,4488,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,1510,1846,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-08',NULL,''),(0,0,1511,1847,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-06',NULL,''),(0,0,1512,1848,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,1512,4365,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1513,1849,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-08',NULL,''),(0,0,1513,2757,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,1514,1850,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,1515,1851,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1515,3437,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,1516,1852,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1516,1954,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1517,1898,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1517,2318,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1517,6093,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1517,6663,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1518,1855,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-08',NULL,''),(0,0,1518,2717,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,1519,1856,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1520,1857,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,1520,6511,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1521,1858,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,1521,4846,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,1522,1860,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-08',NULL,''),(0,0,1523,1861,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1524,1862,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1524,2324,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1525,1864,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1526,1865,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1527,1866,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1529,1868,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,1530,1871,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,1531,1872,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,1532,1873,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-08',NULL,''),(0,0,1532,3188,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,1532,3942,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1533,1874,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-03',NULL,''),(0,0,1534,1876,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,1535,1877,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-27',NULL,''),(0,0,1536,1878,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1538,1883,'2025-10-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-06',NULL,''),(0,0,1538,6549,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,1540,1885,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1541,1886,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,1541,4031,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-23',NULL,''),(0,0,1542,1889,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-06',NULL,''),(0,0,1542,2557,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1542,4811,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,1542,4916,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1543,1890,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1544,1891,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1544,2880,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1544,4923,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,1545,1892,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,1545,4656,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,1546,1895,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,1546,4860,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,1547,1896,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1547,4724,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,1547,5961,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,1548,1897,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,1548,4532,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,1549,1899,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,1549,6205,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-13',NULL,''),(0,0,1550,1901,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-27',NULL,''),(0,0,1551,1903,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,1551,5250,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,1552,1905,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1552,2990,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,1552,5962,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,1553,1906,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-06',NULL,''),(0,0,1555,1908,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,1556,1911,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,1557,1913,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,1558,1914,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1559,1915,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1560,1916,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1561,1917,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,1561,5368,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,1562,1918,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1562,2329,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1562,3043,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1563,1919,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1564,1920,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,1564,4817,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,1565,1921,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,1566,1922,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,1567,1924,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1567,5153,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1568,1925,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1570,1928,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1571,1929,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,1571,5870,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,1572,1930,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,1572,5835,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,1573,1931,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1573,1940,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1573,2662,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1574,1933,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,1574,5369,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-04',NULL,''),(0,0,1576,1935,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1576,4750,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1576,5465,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1578,1938,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,1579,1939,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,1580,1941,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1580,2660,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1581,1942,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-05',NULL,''),(0,0,1582,1944,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,1582,5306,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,1583,1946,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-19',NULL,''),(0,0,1583,3536,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,1583,4429,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,1584,1947,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,1585,1948,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,1585,2399,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1586,1949,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-19',NULL,''),(0,0,1586,4571,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1587,1950,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,1587,5664,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,1588,1951,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1589,1952,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1590,1955,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,1591,1956,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1591,2709,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,1591,2948,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-21',NULL,''),(0,0,1591,3770,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,1592,1957,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,1592,5923,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,1592,6347,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1593,1958,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,1593,4601,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,1594,1960,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,1595,1961,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-04',NULL,''),(0,0,1595,2366,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1596,1962,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1597,1963,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1598,1964,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,1598,3694,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,1598,5283,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,1599,1966,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-06',NULL,''),(0,0,1599,3092,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-19',NULL,''),(0,0,1599,4985,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1601,1968,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,1602,1969,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-19',NULL,''),(0,0,1603,1970,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,1604,1971,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1605,1972,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1607,1975,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1607,5299,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1608,1976,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1609,1977,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1610,1978,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1611,1979,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1612,1981,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1612,2076,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1613,1982,'2025-10-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1614,3791,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1616,1988,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-05',NULL,''),(0,0,1616,3427,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1616,3796,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1616,4004,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1616,4144,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1616,4423,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1616,4588,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1616,4964,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1617,1989,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1618,1990,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1618,2465,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1618,2865,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1619,1991,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,1619,5240,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,1620,1992,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1621,1993,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1622,1994,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,1623,1996,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1623,4619,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-13',NULL,''),(0,0,1624,1998,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1624,5220,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,1625,1999,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,1626,2002,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1627,2003,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,1628,2004,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1629,2005,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1629,3167,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1629,3908,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1630,2006,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1631,2007,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-29',NULL,''),(0,0,1631,5818,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,1632,2008,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-29',NULL,''),(0,0,1633,2009,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,1633,2078,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1633,3819,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,1634,2011,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1635,2012,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,1636,2013,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1637,2014,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,1639,2016,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,1639,5005,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,1640,2017,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1640,2089,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1642,2019,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,1642,3834,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,1644,2021,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,1645,2022,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1646,2024,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1649,2029,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1650,2030,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,1651,2031,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,1651,2532,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1651,3283,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1652,2032,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,1652,2149,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1653,2033,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-29',NULL,''),(0,0,1654,2034,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1654,2832,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,1655,2035,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,1656,2036,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1657,2037,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1657,2074,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1657,2883,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,1658,2039,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,1658,5802,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,1659,2040,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1659,2872,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1660,2041,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-29',NULL,''),(0,0,1661,2042,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-29',NULL,''),(0,0,1662,2043,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1662,2856,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,1662,4168,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,1663,2044,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-29',NULL,''),(0,0,1665,2046,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1667,2049,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,1667,5731,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,1668,2050,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1669,2051,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,1669,6100,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,1670,2052,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1671,2053,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1671,4623,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1672,2054,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1673,2055,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,1674,2057,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-29',NULL,''),(0,0,1674,3810,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1674,4667,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1675,2058,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-29',NULL,''),(0,0,1676,2059,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1676,5161,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,1677,2060,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1678,2061,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1679,2062,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,1680,2063,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1680,2065,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1681,2064,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,1682,2067,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1683,2068,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,1684,2069,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1685,2070,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1685,6509,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1686,2071,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1687,2072,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1687,3351,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1689,2075,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1689,4412,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-06',NULL,''),(0,0,1690,2077,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,1691,2079,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1692,2081,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1693,2082,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,1694,2083,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,1694,3416,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,1695,2084,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1696,2085,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,1697,2086,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,1697,2144,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1697,3700,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,1697,6006,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,1698,2088,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,1698,4393,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,1698,6636,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,1699,2090,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1700,2091,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1701,2092,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1701,3986,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1702,2095,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-29',NULL,''),(0,0,1703,2096,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1703,2264,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,1703,5935,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-11',NULL,''),(0,0,1704,2098,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-28',NULL,''),(0,0,1705,2099,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,1705,6704,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,1706,2100,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1707,2104,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1708,2108,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1708,3040,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-21',NULL,''),(0,0,1709,2109,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1710,2111,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,1711,2112,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-29',NULL,''),(0,0,1712,2114,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1713,2116,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1714,2117,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1714,2277,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1714,2382,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1714,2474,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1714,2681,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1714,2775,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1715,2118,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1716,2119,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1717,2121,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1717,4812,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,1718,2122,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1719,2123,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1719,3012,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,1720,2124,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1720,2874,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,1721,2125,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,1721,5694,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,1722,2126,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1723,2127,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-05',NULL,''),(0,0,1723,2508,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,1723,3435,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1724,2128,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,1725,2129,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,1726,2132,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1727,2133,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1728,2134,'2025-10-31','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1728,5034,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,1729,2135,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,1729,3151,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,1730,2136,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1732,2138,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-08',NULL,''),(0,0,1733,2139,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-11',NULL,''),(0,0,1733,3218,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,1734,2140,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1735,2141,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,1736,2142,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1736,4599,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,1737,2145,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1738,2146,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-11',NULL,''),(0,0,1738,2922,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,1739,2147,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1740,2148,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1740,5554,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1741,2150,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1742,2151,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,1743,2152,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,1744,2157,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,1744,6005,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,1745,2158,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1746,2159,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1747,2160,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1747,4710,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1748,2161,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,1749,2163,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1750,2164,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,1750,4652,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1751,2166,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,1752,2168,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,1753,2170,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1754,2171,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-11',NULL,''),(0,0,1755,2173,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1756,2174,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,1757,2175,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-08',NULL,''),(0,0,1757,2925,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1758,2176,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-21',NULL,''),(0,0,1758,3587,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,1759,2177,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1759,3062,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1759,4505,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1759,6233,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1760,2178,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1761,2179,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-11',NULL,''),(0,0,1762,2180,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,1763,2181,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-11',NULL,''),(0,0,1763,2240,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-08',NULL,''),(0,0,1763,2720,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1763,2759,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1763,3021,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1763,3163,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1763,4926,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1763,6297,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1764,2184,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,1765,2186,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-11',NULL,''),(0,0,1765,5212,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,1766,2187,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1767,2188,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-30',NULL,''),(0,0,1768,2189,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,1769,2190,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1769,4552,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,1770,2191,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-11',NULL,''),(0,0,1771,2194,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1772,2195,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1773,2196,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1774,2197,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,1775,2198,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-11',NULL,''),(0,0,1775,3897,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1776,2199,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1777,2200,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-11',NULL,''),(0,0,1778,2201,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-11',NULL,''),(0,0,1778,2386,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1778,2940,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-21',NULL,''),(0,0,1778,3695,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,1779,2202,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1779,5450,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,1780,2203,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-11',NULL,''),(0,0,1780,2932,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,1781,2204,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1782,2205,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1782,2787,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1783,2207,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1784,2208,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1785,2210,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1786,2211,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1787,2212,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1788,2214,'2025-11-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1788,2730,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1788,5684,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1789,2218,'2025-11-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1789,2735,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1795,2226,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,1797,2229,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,1797,6711,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,1798,2230,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,1798,6710,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,1799,2231,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1801,2237,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1802,2238,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1803,2239,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,1804,2241,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1804,3205,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,1805,2245,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1805,3153,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,1806,2247,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1807,2248,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,1809,2250,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1809,2453,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1810,2251,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,1811,2252,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,1811,6797,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,1812,2253,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1813,2254,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1813,3197,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,1814,2256,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1815,2258,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1816,2259,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-03',NULL,''),(0,0,1817,2260,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1818,2261,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,1819,2262,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1820,2263,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1820,2677,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1821,2265,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1821,3185,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1821,4955,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1822,2267,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,1822,4988,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,1823,2268,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,1824,2271,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1825,2272,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,1826,2273,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1826,4769,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,1827,2274,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-03',NULL,''),(0,0,1828,2276,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,1829,2278,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,1829,5858,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,1830,2279,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1831,2280,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1832,2283,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1833,2284,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,1834,2285,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,1834,5344,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-04',NULL,''),(0,0,1835,2286,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,1835,6602,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,1836,2287,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1837,2288,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1838,2289,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1839,2291,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-03',NULL,''),(0,0,1840,2292,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1840,3872,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1841,2293,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,1841,5833,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-24',NULL,''),(0,0,1842,2294,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1842,4190,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,1842,6682,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,1843,2295,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1844,2296,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,1845,2297,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,1846,2298,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,1847,2299,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1848,2300,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1849,2301,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1850,2303,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1851,2304,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,1852,2305,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1852,3256,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1853,2306,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,1853,5016,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,1854,2308,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1855,2309,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,1856,2310,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1857,2311,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,1857,6523,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,1858,2312,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-08',NULL,''),(0,0,1859,2313,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,1860,2314,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1861,2316,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1861,4206,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,1862,2317,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1862,2518,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1863,2319,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1864,2321,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1865,2322,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,1866,2323,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,1867,2325,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,1868,2326,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1869,2327,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1870,2328,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1870,3064,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-22',NULL,''),(0,0,1871,2331,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1872,2332,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1872,2901,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1872,4114,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1873,2333,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,1873,5683,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-07',NULL,''),(0,0,1874,2335,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1875,2336,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1876,2337,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1877,2338,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,1878,2339,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1878,5970,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,1879,2341,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1880,2342,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,1880,4785,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,1881,2345,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1882,2347,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1883,2350,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1883,2779,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1884,2351,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1885,2352,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1886,2353,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1887,2354,'2025-11-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1887,5967,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,1887,6999,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,1889,2357,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,1890,2358,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,1890,6456,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-16',NULL,''),(0,0,1891,2359,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,1892,2360,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1893,2361,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1894,2362,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1895,2364,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1896,2365,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1896,4033,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-04',NULL,''),(0,0,1897,2367,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,1898,2368,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,1898,6732,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,1899,2369,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1900,2370,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,1900,4360,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,1901,2371,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1902,2372,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1902,5009,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1903,2373,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,1903,3305,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,1903,5126,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,1904,2376,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1904,2881,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1905,2377,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1905,2784,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1905,3752,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,1906,2378,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,1907,2379,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1907,5158,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-13',NULL,''),(0,0,1908,2380,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1909,2381,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,1909,5824,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,1910,2383,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1910,2952,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1910,4649,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1911,2384,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,1911,3230,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1912,2385,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1912,2400,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1913,2387,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1914,2389,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1915,2390,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1916,2391,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,1917,2392,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-07',NULL,''),(0,0,1918,2393,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,1919,2394,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,1920,2395,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,1921,2397,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,1922,2398,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,1922,3533,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,1923,2401,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,1924,2404,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,1925,2405,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-12',NULL,''),(0,0,1926,2406,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,1928,2408,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,1929,2409,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1929,3244,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,1930,2410,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1930,5928,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,1931,2413,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1932,2416,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,1932,5180,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-13',NULL,''),(0,0,1933,2418,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,1934,2420,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1935,2421,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,1936,2423,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1937,2424,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-11',NULL,''),(0,0,1938,2425,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,1938,4934,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,1939,2428,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1941,2433,'2025-11-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,1941,6314,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-24',NULL,''),(0,0,1942,2436,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1943,2437,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-08',NULL,''),(0,0,1944,2438,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1945,2439,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,1946,2441,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1947,2442,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,1947,3772,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1948,2443,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-13',NULL,''),(0,0,1949,2444,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,1949,3371,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,1950,2445,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,1951,2448,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,1952,2449,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,1954,2452,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,1955,2454,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,1956,2457,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,1957,2458,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,1958,2459,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,1959,2460,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,1960,2461,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1960,2912,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,1961,2462,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,1961,3782,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,1962,2463,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,1963,2464,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-13',NULL,''),(0,0,1964,2466,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,1964,7016,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-31',NULL,''),(0,0,1965,2467,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,1966,2468,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1967,2469,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1969,2471,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1969,3882,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-19',NULL,''),(0,0,1971,2473,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1972,2475,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1972,5139,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1973,2476,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,1974,2477,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1975,2478,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,1976,2479,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1976,2671,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1976,2974,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1976,3334,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1976,3508,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1976,3891,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1976,4197,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1976,4642,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1976,5021,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1976,5513,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1977,2480,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,1977,6997,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,1978,2481,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1979,2482,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-03',NULL,''),(0,0,1980,2484,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,1981,2485,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1982,2486,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,1983,2488,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,1983,6735,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,1984,2489,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1985,2490,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1986,2491,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1986,2857,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1987,2493,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,1988,2495,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1989,2496,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1989,5046,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1990,2499,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1991,2500,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-13',NULL,''),(0,0,1992,2502,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1993,2503,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-10',NULL,''),(0,0,1993,2988,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,1993,3439,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,1994,2504,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,1995,2506,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,1996,2507,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-03',NULL,''),(0,0,1997,2509,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,1997,3419,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,1998,2510,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1999,2511,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,1999,5043,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2000,2513,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,2001,3136,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2001,4958,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2002,2516,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,2003,2517,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2004,2519,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2006,2521,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2007,2522,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2007,3722,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2008,2523,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2010,2525,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-03',NULL,''),(0,0,2011,2527,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,2012,2528,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2013,2529,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,2013,6187,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-13',NULL,''),(0,0,2014,2533,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,2015,2534,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,2016,5315,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2017,2537,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,2017,6992,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,2018,2540,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,2019,2541,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2020,2543,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2021,2544,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,2021,2610,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2021,4311,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,2023,2546,'2025-11-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,2023,5941,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2024,2740,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2024,2747,'2025-11-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,2024,3004,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2024,3160,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2024,5709,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2024,6555,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2026,3189,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2028,2553,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2028,3458,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2029,2554,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2030,2555,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,2030,5170,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2031,2556,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,2032,2558,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,2033,2559,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,2034,2560,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2035,2561,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,2036,2562,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2036,2978,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2036,3656,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2037,2563,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2038,2564,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,2039,2565,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2039,3413,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2040,2566,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,2041,2570,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,2041,5356,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,2042,2571,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2043,2572,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2043,3492,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2044,2574,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2044,3486,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2044,5350,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,2045,2575,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-04',NULL,''),(0,0,2045,6729,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2046,2576,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-06',NULL,''),(0,0,2047,2577,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,2047,5360,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,2048,2579,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2049,2580,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,2050,2582,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,2051,2583,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-06',NULL,''),(0,0,2052,2585,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,2052,6485,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,2053,2586,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2055,2588,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,2055,7136,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-21',NULL,''),(0,0,2056,2706,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2056,2835,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2056,3014,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2056,3141,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2056,4844,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2057,2592,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2059,2595,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,2060,2596,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2061,2597,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2062,2598,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2063,2599,'2025-11-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,2064,2602,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-22',NULL,''),(0,0,2065,2603,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,2065,4477,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,2066,2605,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,2067,2607,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,2067,3607,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,2068,2611,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2068,3709,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,2069,2612,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-11',NULL,''),(0,0,2070,2613,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,2071,2616,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2072,2617,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2073,2618,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2075,2621,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2075,5729,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2076,2622,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2077,2623,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2078,2624,'2025-11-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,2079,2625,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2080,2626,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-04',NULL,''),(0,0,2081,2627,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,2081,6311,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,2082,2628,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-06',NULL,''),(0,0,2083,2629,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,2084,2630,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2084,3393,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2084,5592,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2085,2634,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,2086,2636,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-14',NULL,''),(0,0,2087,5106,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2088,2639,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-13',NULL,''),(0,0,2090,2641,'2025-11-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2091,2642,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2092,2643,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2093,2644,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-06',NULL,''),(0,0,2094,2645,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2095,2646,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2095,5454,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,2096,2647,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-06',NULL,''),(0,0,2096,6921,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-05',NULL,''),(0,0,2097,2648,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,2098,2650,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2099,2651,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2100,2653,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2100,5493,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,2101,2654,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-06',NULL,''),(0,0,2102,2655,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2102,3485,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2103,2656,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2104,2657,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2105,2658,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2106,2659,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2106,3138,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2107,2661,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2108,2663,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2109,2666,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2110,2667,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,2110,3497,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,2111,2668,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-06',NULL,''),(0,0,2112,2669,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2113,2670,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2114,2672,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,2115,2673,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2115,5755,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-09',NULL,''),(0,0,2116,2674,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2116,3488,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2116,5228,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,2117,2675,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-05',NULL,''),(0,0,2118,2676,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2119,2679,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2119,3510,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2120,2680,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,2121,2682,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,2122,2683,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2123,2684,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2123,3487,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2124,2685,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2124,4269,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,2125,2687,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2126,2688,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2126,3101,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-19',NULL,''),(0,0,2127,2689,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2127,2691,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2128,2690,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2128,2718,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2128,3542,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,2129,2692,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2129,6231,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,2130,2693,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2131,2694,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-16',NULL,''),(0,0,2132,2695,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-06',NULL,''),(0,0,2133,2697,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2133,3818,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2134,2698,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2135,2699,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2135,5267,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2136,2700,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2136,6789,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2137,2701,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-16',NULL,''),(0,0,2138,2702,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2138,5272,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2139,2703,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2140,2704,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-12',NULL,''),(0,0,2141,2707,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2142,2708,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-22',NULL,''),(0,0,2143,2710,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2143,3006,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2144,2711,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2144,4453,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2145,2712,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-07',NULL,''),(0,0,2146,2713,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2146,4485,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2146,6605,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2147,2714,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2148,2716,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,2149,2721,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2149,3525,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2150,2722,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,2150,3280,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,2150,4232,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,2151,2725,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2152,2727,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2154,2731,'2025-11-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2156,2742,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2157,2743,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2157,2818,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2158,2744,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2159,2745,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,2160,2746,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,2161,2748,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,2162,2749,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,2162,4507,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,2163,2750,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,2164,2751,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,2165,2752,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2166,2753,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2167,2754,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2167,4843,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2167,5324,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2168,2755,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2169,2758,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,2170,2761,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,2170,6932,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,2171,2762,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,2172,2763,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,2173,2765,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,2173,3647,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,2173,5385,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,2174,2766,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2174,3425,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2175,2767,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2176,2770,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,2177,2771,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2178,2773,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,2178,3569,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,2179,2776,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2179,5471,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,2179,6377,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2180,2778,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,2181,2780,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2182,2781,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,2183,2782,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,2183,4615,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,2184,2783,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,2184,6938,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,2185,2788,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2186,2789,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2187,2790,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,2187,3828,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,2188,2791,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2188,2793,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,2189,2792,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-16',NULL,''),(0,0,2190,2794,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2190,2893,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2192,2796,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,2192,3499,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2193,2798,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2193,3398,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2193,3813,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2194,2800,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2195,2801,'2025-11-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,2196,2802,'2025-11-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2196,3374,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2196,3728,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2196,4133,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2197,2823,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2198,2806,'2025-11-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-14',NULL,''),(0,0,2201,2811,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2201,4482,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2201,4878,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2201,5638,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2203,2815,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2204,2817,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2207,2822,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2209,2825,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2210,2826,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2210,4703,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,2211,2829,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-09',NULL,''),(0,0,2212,2830,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2214,2834,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2214,4160,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,2215,2836,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2215,4201,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,2217,2840,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-10',NULL,''),(0,0,2219,2842,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,2220,3670,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2221,2845,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2221,3560,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2221,4556,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2222,2847,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,2224,2851,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2225,2852,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,2226,2854,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,2226,6733,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2227,2858,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,2227,3631,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,2229,2860,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,2229,6049,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,2230,7019,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2231,2862,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,2231,3775,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,2231,5740,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,2233,2864,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,2233,6758,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2234,2867,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,2237,2870,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,2237,3816,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2237,4752,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,2239,2873,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2240,2875,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2241,2876,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-21',NULL,''),(0,0,2241,3862,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,2241,7044,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,2242,2877,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-09',NULL,''),(0,0,2244,2882,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-09',NULL,''),(0,0,2245,2884,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2245,4799,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,2246,2887,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2246,5537,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,2248,2949,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2249,2892,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,2249,3924,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,2250,2894,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,2250,6137,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,2251,2896,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2251,3461,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2252,2899,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-09',NULL,''),(0,0,2253,2903,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,2253,3733,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,2254,2950,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2255,2907,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-21',NULL,''),(0,0,2255,3940,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,2256,2909,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2256,3548,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2260,2917,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2261,2918,'2025-11-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-15',NULL,''),(0,0,2262,2920,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,2263,2924,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2263,4704,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,2264,2926,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,2266,2930,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,2267,2931,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2268,2933,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,2269,2934,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2270,2935,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2270,6483,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-16',NULL,''),(0,0,2271,2937,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2272,2938,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2273,2939,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2273,5567,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2274,2941,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2274,5865,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-20',NULL,''),(0,0,2275,2942,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2276,2945,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2276,3574,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2276,4578,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2276,5859,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2277,2947,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2278,2953,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,2279,2954,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2280,2955,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,2281,2956,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2282,2957,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2283,2958,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2284,2960,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2285,2961,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2286,2962,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,2287,2963,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2288,2964,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,2289,2966,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-21',NULL,''),(0,0,2290,2968,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,2291,2969,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,2291,6092,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2292,2971,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2293,2973,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,2294,2976,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2295,2980,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,2295,6183,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-29',NULL,''),(0,0,2296,2982,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,2296,5789,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2297,2983,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2297,4129,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2297,6423,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2298,2984,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2299,2985,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2300,2986,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,2300,3002,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2301,2991,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2301,3506,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2301,4439,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2301,5508,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2301,6956,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2302,2994,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2303,2995,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-19',NULL,''),(0,0,2304,2996,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2304,3027,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-22',NULL,''),(0,0,2305,2997,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-21',NULL,''),(0,0,2306,2998,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2307,2999,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-21',NULL,''),(0,0,2307,4580,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,2308,3001,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,2308,5988,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,2309,3005,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,2310,3007,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2311,3010,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2311,4760,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,2313,3013,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,2313,5119,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2313,5277,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2314,3015,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-21',NULL,''),(0,0,2314,3927,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,2314,4941,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,2315,3016,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2316,3017,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,2317,3018,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2317,4681,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2318,3019,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2318,5594,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,2319,3020,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2320,3022,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-19',NULL,''),(0,0,2321,3023,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2322,3024,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2323,3026,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2324,3030,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2325,3031,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-21',NULL,''),(0,0,2325,3947,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,2325,4836,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,2326,3032,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2326,4567,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2326,6048,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2327,3033,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,2328,3035,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2329,3037,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,2330,3038,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2331,3039,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2332,3041,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2333,3042,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2334,3045,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2334,4746,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,2334,6184,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,2335,3046,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2336,3047,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2336,4912,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,2336,5828,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2337,3048,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2338,3050,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,2338,3388,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2338,5351,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,2339,3051,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,2339,3387,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-21',NULL,''),(0,0,2340,3052,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2341,3053,'2025-11-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2343,3792,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2344,3056,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2346,3058,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,2347,3059,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2347,4487,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2347,5008,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2348,3060,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,2348,6455,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,2349,3061,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,2350,3063,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2351,3066,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2351,5766,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2352,3067,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,2352,5230,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-05',NULL,''),(0,0,2353,3069,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,2354,3070,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2355,3071,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,2356,3073,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,2357,3074,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-02',NULL,''),(0,0,2357,5127,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,2358,3075,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2358,4203,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2359,3078,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,2359,7008,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,2360,3079,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-19',NULL,''),(0,0,2360,3635,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,2361,3080,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,2362,3081,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,2362,4089,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2364,3083,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2365,3084,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,2366,3085,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2367,3086,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2367,3114,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,2368,3088,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,2369,3091,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2370,3093,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2371,3094,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2372,3095,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2373,3096,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,2374,3098,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-19',NULL,''),(0,0,2374,4108,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2375,3099,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,2376,3100,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,2377,3102,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,2378,3104,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2379,3106,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2380,4166,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,2380,4540,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2381,3108,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,2382,3109,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2383,3110,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-19',NULL,''),(0,0,2384,5162,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2385,3115,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2386,3117,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2387,3121,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2387,5270,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2388,3122,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,2389,3124,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2389,4328,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2389,5200,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2389,6522,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2390,3125,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2391,3126,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,2392,3128,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,2393,3129,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2394,3130,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,2395,3131,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-02',NULL,''),(0,0,2396,3132,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-22',NULL,''),(0,0,2396,4139,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,2397,3133,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2398,3134,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-22',NULL,''),(0,0,2399,3135,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2399,4002,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2399,5484,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,2400,3137,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2401,3139,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,2401,6022,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,2402,3140,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,2402,4738,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2403,3143,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,2404,3144,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2405,3145,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-22',NULL,''),(0,0,2406,3147,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,2408,3150,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-17',NULL,''),(0,0,2410,3156,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2411,3157,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,2411,3250,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2411,5035,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2412,3159,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2413,3161,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,2414,3162,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,2415,3165,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2416,3166,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-19',NULL,''),(0,0,2417,3168,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-19',NULL,''),(0,0,2418,3169,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-19',NULL,''),(0,0,2419,3171,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2420,3172,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2421,3173,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2421,3838,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-18',NULL,''),(0,0,2422,3174,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2422,3876,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2422,7021,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2423,3175,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,2423,6044,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2425,3177,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,2426,3178,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-22',NULL,''),(0,0,2426,4119,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2427,3179,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,2429,3181,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2430,3182,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-02',NULL,''),(0,0,2431,3183,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2432,3184,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2433,3186,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2434,3187,'2025-11-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2435,3191,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2436,3192,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,2437,3193,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,2440,3198,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-13',NULL,''),(0,0,2441,3200,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2442,3201,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,2443,3202,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,2444,3203,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2445,3206,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,2446,3208,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,2447,3209,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,2447,4040,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,2448,3210,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2449,3211,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,2449,5623,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,2450,3214,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2451,3215,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2452,3217,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,2453,3219,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,2454,3220,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,2455,3221,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,2455,4051,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,2456,3222,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,2457,3224,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2458,3225,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,2459,3226,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,2460,3227,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,2461,3229,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,2462,3233,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,2462,5004,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,2463,3235,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,2463,4030,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,2463,5111,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,2463,6280,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,2464,3238,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,2464,5952,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,2465,3239,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,2466,3240,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,2467,3241,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,2468,3242,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2469,3245,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2471,3248,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-21',NULL,''),(0,0,2472,3249,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,2473,3251,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,2475,3253,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,2475,4989,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2476,3254,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,2477,3255,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,2478,3258,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2479,3259,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,2479,4928,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,2480,3260,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,2480,5042,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,2481,3261,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2482,3262,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,2482,5058,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,2484,3265,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2485,3266,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-18',NULL,''),(0,0,2486,3267,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,2487,3269,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,2488,3270,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,2489,3271,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,2491,3276,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2492,3277,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2493,3278,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2494,3282,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,2496,3289,'2025-11-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,2499,3294,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,2499,3790,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2501,3296,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,2501,4121,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,2501,5375,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2501,5826,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,2503,3298,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,2503,4702,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,2504,3299,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-21',NULL,''),(0,0,2504,3868,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2505,3300,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2506,3301,'2025-11-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-21',NULL,''),(0,0,2506,3894,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-19',NULL,''),(0,0,2507,3302,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,2507,4165,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,2507,7132,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2508,3304,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-14',NULL,''),(0,0,2509,3306,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,2510,3307,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,2510,5512,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,2511,3308,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-13',NULL,''),(0,0,2512,3309,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-23',NULL,''),(0,0,2513,3310,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2513,6445,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2514,3311,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-19',NULL,''),(0,0,2515,3313,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-13',NULL,''),(0,0,2516,3314,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-12',NULL,''),(0,0,2518,3318,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2519,3321,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,2521,3324,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-05-13',NULL,''),(0,0,2522,3325,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2523,3326,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-13',NULL,''),(0,0,2525,3329,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,2527,3333,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-12',NULL,''),(0,0,2528,3335,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-12',NULL,''),(0,0,2529,4395,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2529,6367,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2530,4657,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2530,4658,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2531,3338,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,2532,3340,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2532,6102,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2533,3341,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2533,3345,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2534,3342,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-13',NULL,''),(0,0,2535,3343,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2535,3375,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2536,3344,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-12',NULL,''),(0,0,2537,3346,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2538,3347,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-21',NULL,''),(0,0,2539,3348,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2539,4650,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,2540,3350,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2541,3352,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2541,4637,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,2542,3355,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,2542,5827,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2543,3356,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2543,5271,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2544,3358,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,2544,5114,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-13',NULL,''),(0,0,2545,3359,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2546,3360,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-12',NULL,''),(0,0,2547,3361,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,2547,4053,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,2548,3363,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-13',NULL,''),(0,0,2549,3364,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-12',NULL,''),(0,0,2550,3367,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-09',NULL,''),(0,0,2551,3368,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,2551,5050,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2553,3370,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2553,6053,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,2554,3372,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-12',NULL,''),(0,0,2555,3373,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,2555,6293,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-29',NULL,''),(0,0,2556,3378,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2557,3379,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-14',NULL,''),(0,0,2558,3380,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-12',NULL,''),(0,0,2559,3381,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2560,4626,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2560,5292,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2560,6078,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2561,3385,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,2562,3386,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-12',NULL,''),(0,0,2563,3390,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2563,4591,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-26',NULL,''),(0,0,2564,3391,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-12',NULL,''),(0,0,2564,4963,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,2565,3392,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-12',NULL,''),(0,0,2566,3394,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-12',NULL,''),(0,0,2567,3395,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-13',NULL,''),(0,0,2567,5199,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,2568,3396,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-21',NULL,''),(0,0,2569,3397,'2025-11-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-12',NULL,''),(0,0,2570,3938,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-19',NULL,''),(0,0,2571,3403,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2572,3404,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,2574,3406,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2027-08-07',NULL,''),(0,0,2575,3407,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2576,3408,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-13',NULL,''),(0,0,2577,3409,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2577,3930,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2577,5297,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2578,3410,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,2580,3412,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2581,3414,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,2582,3415,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,2583,3420,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,2584,3421,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2584,4264,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,2585,3422,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2586,3429,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2586,4794,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2586,6621,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2586,7093,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2588,3433,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-13',NULL,''),(0,0,2588,6479,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-17',NULL,''),(0,0,2589,3434,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,2589,6244,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-24',NULL,''),(0,0,2591,3440,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2591,4772,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2592,3441,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,2592,5285,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,2593,3443,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2593,4230,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2594,3444,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,2595,3445,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-20',NULL,''),(0,0,2595,6315,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,2595,6703,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,2596,4185,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2596,6689,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2597,3447,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,2597,4326,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,2597,5373,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,2599,5468,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2599,6144,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2599,6415,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2601,6687,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2603,3460,'2025-11-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2607,3468,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2607,4194,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,2608,3470,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-22',NULL,''),(0,0,2611,3473,'2025-11-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,2612,3474,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2612,4125,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-02',NULL,''),(0,0,2613,3638,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2616,3482,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2617,3483,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,2618,3484,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,2618,6779,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2619,3489,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2619,4491,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,2620,3491,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2620,4627,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2621,3493,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2621,4067,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2622,3495,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-25',NULL,''),(0,0,2623,3498,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2623,4362,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,2624,3500,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,2624,6748,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,2625,3502,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-31',NULL,''),(0,0,2626,3505,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2626,4386,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,2627,3507,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2627,4851,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2628,3509,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2630,3513,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-25',NULL,''),(0,0,2631,3514,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2632,3515,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,2633,3517,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2634,3518,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,2635,3848,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2635,4120,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2636,3527,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2636,5535,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,2638,3529,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,2638,3703,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2638,6776,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,2639,3530,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2640,3531,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2640,6339,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,2641,3532,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,2641,6537,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,2643,3535,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2644,3537,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,2645,3540,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-02',NULL,''),(0,0,2645,4944,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,2646,3541,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2646,4135,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2646,5411,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2647,3544,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2648,3547,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2649,3549,'2025-11-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,2649,6648,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,2651,3553,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-22',NULL,''),(0,0,2651,3761,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2651,3864,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2651,3971,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,2653,3932,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2653,5149,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,2655,3558,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-18',NULL,''),(0,0,2656,3559,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,2657,3561,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,2658,3562,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,2660,3566,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2660,4759,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2661,3573,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,2662,3575,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,2664,3577,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,2665,3579,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2665,5653,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2665,6657,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2666,3583,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,2666,4419,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2666,6688,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,2667,3584,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-18',NULL,''),(0,0,2668,5656,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2669,3586,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,2669,5587,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,2671,3589,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-26',NULL,''),(0,0,2672,3590,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2672,5469,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,2674,3592,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,2675,3594,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2675,4037,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2676,3595,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,2676,4034,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2677,3596,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2677,3618,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2679,3598,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,2680,3600,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,2680,4411,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,2681,3602,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,2682,3604,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,2684,3609,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,2685,3611,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,2688,3615,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,2689,3617,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,2689,6642,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,2690,3619,'2025-11-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-26',NULL,''),(0,0,2691,3621,'2025-11-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2691,4790,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,2692,3622,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2693,3623,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2693,5174,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2694,3624,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2695,3625,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,2695,6792,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2696,3626,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,2696,5612,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2698,3629,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2699,3630,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2699,4610,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2701,3634,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2702,3636,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2703,3639,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2704,3640,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-27',NULL,''),(0,0,2705,3641,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2706,3642,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,2706,4508,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,2706,5838,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2707,3644,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,2708,3645,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2709,3648,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,2709,5862,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-20',NULL,''),(0,0,2710,3649,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2711,3651,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2712,3652,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,2713,4741,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2715,3658,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2715,5643,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2716,3659,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2717,3660,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2718,3661,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2719,3663,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2720,3664,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,2720,6709,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,2721,3665,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2723,3667,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2724,3668,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2726,3671,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-27',NULL,''),(0,0,2726,6805,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,2727,3672,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2728,3676,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,2729,3677,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2729,5661,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,2729,6877,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2730,3679,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2731,3681,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2732,3688,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2733,3689,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2733,6791,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2734,3690,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2735,3692,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2736,3693,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2737,3697,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2738,3699,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,2738,4048,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2739,3701,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,2739,5915,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-20',NULL,''),(0,0,2740,3702,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2740,4137,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2742,3706,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,2742,6050,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2744,3708,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2745,3710,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2746,4268,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2747,3713,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2747,5166,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,2748,3716,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2749,3717,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,2749,6846,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2750,4286,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2750,4832,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2750,5322,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2751,3720,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2753,3724,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,2753,6811,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2754,3725,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,2754,4225,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2754,5083,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2754,6319,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2755,3726,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-27',NULL,''),(0,0,2756,3727,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,2757,3729,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,2757,4210,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2758,5023,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2759,3732,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2760,3735,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2761,3738,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,2761,5202,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2762,3740,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-24',NULL,''),(0,0,2762,4045,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2763,3743,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2765,3745,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2766,3746,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2767,3747,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2768,3748,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2769,3749,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2771,3751,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2773,3754,'2025-11-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2774,3756,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2775,3757,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2776,3759,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2777,3760,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-18',NULL,''),(0,0,2777,4106,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2778,3762,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2778,4708,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,2779,3763,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,2779,4641,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,2780,3764,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,2780,5189,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,2781,3765,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2781,4427,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2781,5193,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2781,6660,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2782,3766,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2782,4161,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-02',NULL,''),(0,0,2782,4927,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2782,5582,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2782,6081,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2783,3767,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2783,5124,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,2784,3768,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2784,4956,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-13',NULL,''),(0,0,2785,3769,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2785,4715,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2786,3771,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2787,3773,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2787,3821,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2787,4717,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2789,3776,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,2789,6720,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,2792,3779,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-18',NULL,''),(0,0,2792,6768,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,2793,3780,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2793,5019,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2794,3781,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-18',NULL,''),(0,0,2795,3786,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-18',NULL,''),(0,0,2796,3787,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,2798,3789,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-18',NULL,''),(0,0,2798,5072,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-03',NULL,''),(0,0,2799,3793,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,2800,3794,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-18',NULL,''),(0,0,2801,3795,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2802,3798,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,2802,6529,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,2803,3799,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,2804,3801,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,2805,3802,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2805,4315,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,2806,3803,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2807,3804,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,2808,4679,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2808,5184,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2808,5302,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2808,5477,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2808,5763,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2808,6261,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2808,6395,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2808,6542,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2808,6692,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2808,6712,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,2809,3806,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-18',NULL,''),(0,0,2810,3807,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,2810,5792,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-24',NULL,''),(0,0,2812,3809,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2812,4557,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,2813,3811,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,2814,3820,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,2814,6753,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-07',NULL,''),(0,0,2815,3822,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,2816,3823,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2816,4786,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,2817,3824,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-25',NULL,''),(0,0,2818,3826,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2818,4782,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2819,3827,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2820,3830,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2821,3831,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-18',NULL,''),(0,0,2822,3832,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2822,4842,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2823,3833,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2824,3835,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-18',NULL,''),(0,0,2825,3837,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-18',NULL,''),(0,0,2825,6304,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,2827,3840,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2828,3845,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2829,3846,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2830,3850,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2831,3852,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-18',NULL,''),(0,0,2832,3853,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2833,3860,'2025-11-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2834,3861,'2025-11-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2834,5480,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,2834,6964,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,2835,3863,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2835,6139,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,2836,3867,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-19',NULL,''),(0,0,2837,4483,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2838,3870,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,2838,4612,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,2839,3871,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-19',NULL,''),(0,0,2840,3873,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,2841,3874,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2841,4814,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,2842,3875,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-20',NULL,''),(0,0,2844,3878,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,2844,6524,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,2845,3879,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,2846,3880,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2848,3884,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,2849,3886,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2850,3887,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2851,3888,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,2851,5863,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-20',NULL,''),(0,0,2852,3889,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,2853,3890,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-19',NULL,''),(0,0,2854,3892,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,2854,4263,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2855,3893,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,2856,3896,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-19',NULL,''),(0,0,2857,3898,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-19',NULL,''),(0,0,2858,3899,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,2859,3900,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,2859,6331,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,2861,3903,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,2862,3904,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,2863,3905,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-19',NULL,''),(0,0,2863,6563,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2864,3906,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2866,3909,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2866,5498,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,2867,3910,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2868,3911,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2868,6008,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2869,3912,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2869,6004,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2870,3914,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2871,3915,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-21',NULL,''),(0,0,2871,3916,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-21',NULL,''),(0,0,2872,3917,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,2872,5673,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,2873,4820,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2874,3920,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-19',NULL,''),(0,0,2874,4435,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2875,3921,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,2877,3926,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-05-20',NULL,''),(0,0,2878,3928,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,2879,3929,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2880,3933,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-20',NULL,''),(0,0,2881,3936,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,2881,5933,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-20',NULL,''),(0,0,2882,3937,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2883,3939,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-19',NULL,''),(0,0,2884,3941,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2885,3943,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-19',NULL,''),(0,0,2886,3945,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2886,4448,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2887,3946,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2887,3973,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2887,4282,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2889,3949,'2025-11-21','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-26',NULL,''),(0,0,2892,3953,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-05',NULL,''),(0,0,2893,3954,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2893,4640,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2893,5864,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-11',NULL,''),(0,0,2894,4164,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2895,3957,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2896,3958,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,2898,3960,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,2898,7013,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2899,3962,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,2900,3963,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,2901,3964,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2902,3965,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-02',NULL,''),(0,0,2902,5167,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,2902,6755,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,2903,3966,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2904,3967,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,2905,3968,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2906,3969,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,2907,3970,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,2909,3974,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,2910,3975,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2911,3977,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2912,3978,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,2914,3983,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-02',NULL,''),(0,0,2914,4865,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,2915,3984,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,2915,5982,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,2916,3987,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-02',NULL,''),(0,0,2916,4723,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,2917,3988,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,2918,3989,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,2919,3990,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2919,4400,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,2919,4621,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,2920,3991,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-02',NULL,''),(0,0,2920,4909,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,2921,3992,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,2922,6180,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2923,3994,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2924,3995,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,2925,3996,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,2925,6465,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,2926,3998,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2927,3999,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,2928,4000,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,2928,5401,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,2930,4007,'2025-11-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2932,4010,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2933,4011,'2025-11-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-27',NULL,''),(0,0,2933,4445,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2938,4018,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,2939,4019,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2939,4644,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,2940,4020,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2941,4021,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,2942,4022,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2944,4025,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2945,4026,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-23',NULL,''),(0,0,2947,4028,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2949,4032,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-23',NULL,''),(0,0,2950,4035,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,2950,4100,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2950,5611,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2951,4041,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,2952,4042,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,2952,5203,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,2953,4043,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,2953,6270,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,2955,4046,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,2955,6965,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,2956,4047,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,2957,4049,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-23',NULL,''),(0,0,2958,4052,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,2958,5294,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,2959,4054,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2960,4500,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2961,4056,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2962,4057,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2962,4734,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2963,4058,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-23',NULL,''),(0,0,2964,4060,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,2964,5377,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2966,4063,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2966,4369,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2968,4066,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-23',NULL,''),(0,0,2969,4068,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-23',NULL,''),(0,0,2970,4069,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,2971,4070,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2971,4727,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,2972,4072,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,2973,4073,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-23',NULL,''),(0,0,2974,4074,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2975,4075,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-23',NULL,''),(0,0,2976,4077,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2977,4080,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-24',NULL,''),(0,0,2978,4082,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,2979,4083,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-23',NULL,''),(0,0,2980,4084,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2980,4265,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2980,4682,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2981,4085,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,2982,4086,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,2983,4088,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-23',NULL,''),(0,0,2984,4090,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2984,6503,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2985,4092,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,2986,4093,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,2986,5116,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,2986,6350,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,2987,4094,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2988,4572,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2989,4097,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2991,4101,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,2991,4211,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2991,6432,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,2993,4103,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2994,4107,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,2994,6242,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,2995,4109,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,2996,5280,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2996,5675,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2996,6685,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,2997,4117,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,2999,4122,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,3001,4126,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3002,4127,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3002,5674,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,3003,4128,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3004,4132,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-23',NULL,''),(0,0,3005,4134,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3005,4261,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,3006,4136,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,3006,6866,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,3007,4950,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3007,6422,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3008,4141,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3009,4142,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-29',NULL,''),(0,0,3009,4938,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3010,4145,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3012,4147,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,3013,6649,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3013,6752,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3014,4150,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3015,4151,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,3016,4152,'2025-11-24','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3018,4154,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-11-28',NULL,''),(0,0,3019,4156,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3019,4725,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3020,4157,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-09',NULL,''),(0,0,3021,4158,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,3021,4936,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3022,4163,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3024,4170,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3025,4171,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,3025,5514,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3026,4172,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3027,4173,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3028,4174,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-24',NULL,''),(0,0,3030,4176,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-23',NULL,''),(0,0,3031,4177,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,3031,4917,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3031,5215,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3032,4178,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3033,4179,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3034,4180,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-24',NULL,''),(0,0,3035,4181,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-23',NULL,''),(0,0,3036,4182,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3037,4183,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-25',NULL,''),(0,0,3038,4184,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3039,4186,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3039,6112,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-22',NULL,''),(0,0,3040,4187,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3041,4188,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,3042,4189,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-23',NULL,''),(0,0,3043,4191,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-25',NULL,''),(0,0,3044,4192,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,3044,4971,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,3045,4193,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-23',NULL,''),(0,0,3046,4195,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3047,4198,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-24',NULL,''),(0,0,3048,4199,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,3049,4202,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,3050,4204,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3051,4207,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,3052,4208,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-24',NULL,''),(0,0,3053,4209,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3054,4214,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3056,4216,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-23',NULL,''),(0,0,3057,4217,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3058,4218,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,3058,5219,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,3059,4219,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3060,4220,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-24',NULL,''),(0,0,3061,4221,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-05',NULL,''),(0,0,3062,4222,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-02',NULL,''),(0,0,3063,4224,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-23',NULL,''),(0,0,3064,4226,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,3065,4227,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,3065,5251,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,3066,4228,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3067,4229,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,3067,5304,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3068,4231,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-23',NULL,''),(0,0,3070,4236,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,3070,6436,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,3071,4238,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3072,6951,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3073,5093,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3073,5571,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3074,4241,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,3076,4244,'2025-11-25','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,3077,4245,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,3080,4257,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3080,5724,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3081,4258,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3082,4259,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,3083,4260,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,3084,4262,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3084,4925,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3085,4266,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3085,5135,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3085,5448,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,3086,4270,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3087,4272,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3088,4273,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,3089,4274,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,3090,4275,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,3090,4795,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3091,4276,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3092,4277,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,3093,4278,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3093,4726,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3094,4279,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-24',NULL,''),(0,0,3095,4280,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,3097,4284,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,3098,4285,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3098,5192,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3098,5397,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3098,5525,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3098,5993,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3099,4287,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-24',NULL,''),(0,0,3100,4288,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,3101,4490,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3101,4647,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3101,4740,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3101,5105,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3102,4290,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,3103,4291,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-06',NULL,''),(0,0,3104,4293,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,3105,4295,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3105,4671,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3107,4298,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3108,4299,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,3108,4407,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3108,4408,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3109,4302,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3110,4304,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-24',NULL,''),(0,0,3112,4306,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3112,6149,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3113,4310,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3114,4313,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3115,4804,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3116,4316,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,3118,4318,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,3118,5884,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,3119,4319,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,3119,5027,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3120,4320,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,3121,4322,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3122,4323,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-01',NULL,''),(0,0,3123,4324,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3124,4325,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,3125,4327,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3126,4329,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-24',NULL,''),(0,0,3127,4331,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-24',NULL,''),(0,0,3128,4333,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3129,4334,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,3130,4335,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3131,4337,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3132,4338,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-24',NULL,''),(0,0,3133,4339,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3133,6539,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-17',NULL,''),(0,0,3134,4340,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3134,4783,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3134,5810,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3134,6082,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3134,6654,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3135,4364,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,3135,5990,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,3137,4345,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-24',NULL,''),(0,0,3138,4346,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3139,4347,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3140,4348,'2025-11-26','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-06',NULL,''),(0,0,3142,4350,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,3143,4351,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,3146,4354,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3147,4355,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3148,4356,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,3149,4357,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-02',NULL,''),(0,0,3150,4358,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-25',NULL,''),(0,0,3151,4359,'2025-11-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,3151,5328,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,3152,4361,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-25',NULL,''),(0,0,3155,4367,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-22',NULL,''),(0,0,3155,5894,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,3156,4368,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-27',NULL,''),(0,0,3157,4370,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-02',NULL,''),(0,0,3157,4885,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,3158,4866,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3159,4372,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,3160,4373,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3160,5549,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,3161,4374,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,3161,6460,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,3162,4375,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-25',NULL,''),(0,0,3162,4593,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3162,4718,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3162,5254,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3163,4376,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,3164,4377,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-19',NULL,''),(0,0,3165,4378,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,3165,6608,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,3166,4379,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3166,6491,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-06',NULL,''),(0,0,3167,4380,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3169,4385,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-07',NULL,''),(0,0,3170,4387,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,3171,4389,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-25',NULL,''),(0,0,3172,4390,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3174,4396,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,3175,4397,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-27',NULL,''),(0,0,3176,4398,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3177,4399,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3177,5348,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,3177,6462,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,3179,4404,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,3180,4405,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3181,4406,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,3181,4489,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3182,4409,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,3183,4413,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3185,6434,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3186,4417,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,3187,4418,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3188,4420,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,3188,7103,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,3189,4421,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-25',NULL,''),(0,0,3190,4422,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,3190,4965,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3191,4425,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-25',NULL,''),(0,0,3192,4426,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-25',NULL,''),(0,0,3193,4431,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-25',NULL,''),(0,0,3194,4433,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3195,4434,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-25',NULL,''),(0,0,3196,4436,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,3197,4437,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3198,4438,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3200,4442,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3201,4446,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3202,4447,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3202,4577,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3202,6681,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,3203,4449,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,3204,4450,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3205,4452,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3205,4464,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3206,4455,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-22',NULL,''),(0,0,3207,4457,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-02',NULL,''),(0,0,3207,4784,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3207,5276,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,3207,5666,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3208,5550,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3209,4459,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-25',NULL,''),(0,0,3209,5208,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3210,4460,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3210,4850,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3211,4463,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-04',NULL,''),(0,0,3212,4466,'2025-11-27','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-25',NULL,''),(0,0,3213,4655,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3213,5178,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3214,4470,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,3215,4472,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-28',NULL,''),(0,0,3216,4473,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3217,4475,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3218,4476,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-26',NULL,''),(0,0,3219,4478,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3220,4479,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-26',NULL,''),(0,0,3221,4480,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3221,6622,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,3222,4481,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3222,6716,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,3223,4484,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-26',NULL,''),(0,0,3226,4493,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3226,6944,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3227,4494,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,3228,4495,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,3229,4499,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3229,6570,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3230,4502,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-26',NULL,''),(0,0,3231,4503,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3232,4504,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3233,4506,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3234,4510,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3234,6197,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-13',NULL,''),(0,0,3235,4511,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3236,4512,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-26',NULL,''),(0,0,3237,4513,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3238,4514,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3239,4516,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-23',NULL,''),(0,0,3240,4517,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3240,6611,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,3241,4518,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3241,4548,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3242,4519,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3243,4520,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3244,4521,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-26',NULL,''),(0,0,3245,4522,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3246,4523,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3247,4524,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3247,4549,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3247,5366,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,3248,4525,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3248,4537,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3249,4526,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-26',NULL,''),(0,0,3250,4527,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3251,4529,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3252,4531,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3252,5353,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,3252,6499,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,3253,4533,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3254,4534,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3255,4535,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3256,4536,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3256,5573,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,3257,4538,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,3258,4541,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3259,4542,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3260,4543,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3260,5651,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3260,6741,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,3261,4544,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3264,4547,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3264,5929,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3265,4550,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3266,4551,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3267,4553,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,3267,5191,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3267,6816,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,3268,4554,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3268,6266,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,3269,4555,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3271,4559,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3272,4562,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3273,4563,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,3273,5278,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3274,4564,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3274,6832,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,3275,4569,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3276,4574,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-26',NULL,''),(0,0,3277,4576,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-26',NULL,''),(0,0,3278,4579,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-26',NULL,''),(0,0,3280,4582,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3280,5575,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3281,4583,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3282,4584,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,3283,4585,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,3284,4586,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-03',NULL,''),(0,0,3284,5736,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,3285,4587,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3285,4613,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3286,4592,'2025-11-28','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-26',NULL,''),(0,0,3287,4594,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3288,4595,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3290,4597,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3291,4598,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3292,4600,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3292,6458,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,3293,4602,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3294,4603,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3295,4605,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3295,4675,'2025-11-30','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,3295,5224,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3295,5734,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3296,4606,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3296,6586,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,3297,4608,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3297,5814,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,3298,4609,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3299,4611,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,3300,4614,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3301,4617,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3302,4618,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,3303,4620,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3304,4622,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3305,4624,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3306,4625,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3307,4628,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-27',NULL,''),(0,0,3308,4629,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-27',NULL,''),(0,0,3309,4631,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,3310,4632,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3311,4633,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3311,6582,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,3312,4634,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3313,4635,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3314,4636,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,3314,6947,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,3315,4638,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,3316,4639,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3316,5262,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3317,4645,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3318,4646,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3319,4648,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3320,4651,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,3321,4653,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,3322,4654,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3323,4659,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-27',NULL,''),(0,0,3324,4660,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3324,5599,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3325,4661,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3325,5613,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3325,6307,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3326,4662,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,3327,4663,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3328,4664,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3328,6385,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-27',NULL,''),(0,0,3329,4665,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3329,4791,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3330,4666,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,3330,5020,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3331,5750,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,3332,4669,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-28',NULL,''),(0,0,3333,4670,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3334,4672,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3336,4674,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3337,4677,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3337,5293,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3337,5335,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3337,6652,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3338,4678,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3339,4680,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3340,4683,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3341,4684,'2025-11-29','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3341,5290,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3341,5753,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3342,4775,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3342,5001,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3342,6673,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3343,4686,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3343,5779,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3345,4688,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,3345,6665,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,3346,4690,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3346,5213,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3347,4691,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3347,5476,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3347,6188,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3347,6924,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3349,4693,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3349,5696,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3349,6284,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3349,6975,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3350,4694,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3350,6271,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3350,6935,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3351,4695,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3351,6867,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,3352,4697,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3352,4931,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3353,4698,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3353,4908,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3353,5372,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3353,5777,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3353,6251,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3353,7116,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3354,4699,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3355,4700,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3355,4808,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,3356,4701,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3357,4705,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3358,4706,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,3359,4707,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,3360,4709,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,3361,4711,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3362,4712,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,3363,4714,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,3363,6583,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,3364,4716,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3364,5279,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,3365,4719,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3366,4721,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-11',NULL,''),(0,0,3367,4722,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3367,5712,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3368,4728,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,3369,4729,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3369,5963,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,3370,4730,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3371,4731,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3372,4732,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,3373,4733,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3374,4735,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3375,4736,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3376,4737,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,3377,4742,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3378,4743,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3379,4744,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-23',NULL,''),(0,0,3380,4745,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3381,4747,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3382,4749,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3383,4751,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3384,4753,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2028-05-19',NULL,''),(0,0,3385,4754,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3386,4755,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3387,4757,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3388,4758,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3388,5954,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,3389,4761,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3390,4762,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3390,5379,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3391,4763,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,3391,4800,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3391,6915,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,3392,4764,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3392,6229,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,3393,4765,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3394,4767,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3394,4802,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3394,5136,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3394,5217,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3394,5291,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3394,5433,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3394,5451,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3394,5707,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3394,5762,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3394,6116,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3394,6203,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3394,6369,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3394,6548,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3394,6625,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3394,6911,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3394,7122,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3395,4768,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3395,5875,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-22',NULL,''),(0,0,3396,4770,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-11',NULL,''),(0,0,3397,4771,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3397,4787,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3397,5758,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,3398,4774,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3399,4776,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3399,4953,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3399,5104,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3399,5206,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3399,5334,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3399,5429,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3399,5597,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3399,5714,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3399,6317,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3399,6419,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3399,6630,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3400,4777,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,3401,4778,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3401,5452,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3402,4779,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3403,4780,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3404,4781,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,3405,4788,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3406,4789,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3407,4793,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3407,7031,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,3408,4796,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,3409,4797,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3409,5919,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-22',NULL,''),(0,0,3410,4798,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3411,5117,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3411,5242,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3411,5364,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3411,5708,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3411,6308,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3411,6561,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3411,7043,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3412,4803,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3413,4807,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3414,4809,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3415,4810,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3416,4813,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3416,5682,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,3417,4815,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3418,4818,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,3419,4819,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,3419,6508,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-06',NULL,''),(0,0,3420,4821,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3420,5051,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3420,6618,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-29',NULL,''),(0,0,3421,4823,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3421,5586,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3422,4824,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3423,4825,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3424,4828,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3424,5559,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3424,6418,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3425,4829,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3427,4834,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3428,4835,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-31',NULL,''),(0,0,3429,4838,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,3430,4839,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3431,4841,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,3432,4845,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,3433,4847,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-06',NULL,''),(0,0,3434,4848,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3435,4849,'2025-12-01','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3436,4853,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,3436,5955,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-23',NULL,''),(0,0,3437,4854,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3438,4855,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3439,4856,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-31',NULL,''),(0,0,3440,4857,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3440,5843,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-09',NULL,''),(0,0,3441,4858,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,3442,4859,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3442,5917,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,3443,4862,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3444,4863,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,3445,4864,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3446,4867,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,3446,4899,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3446,6457,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,3447,4868,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-05',NULL,''),(0,0,3447,5274,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3447,5526,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3448,4871,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-31',NULL,''),(0,0,3449,4872,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3449,4939,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3450,4875,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3451,4876,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3452,4877,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3453,4882,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3454,4883,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-31',NULL,''),(0,0,3455,4884,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,3455,6216,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,3456,4886,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,3457,4887,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,3457,5968,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,3458,4888,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,3459,4890,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3460,4891,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3461,4892,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3462,4893,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3463,4894,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,3463,6174,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,3464,4895,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3465,4896,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3466,4898,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3467,4900,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-31',NULL,''),(0,0,3468,4901,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3469,4902,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3470,4903,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,3471,4904,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3472,4905,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,3472,5981,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-23',NULL,''),(0,0,3473,4906,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3473,5560,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3473,6168,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3473,6326,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3473,6501,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3474,4907,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3475,4910,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3476,4911,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,3477,4913,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,3477,5868,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-21',NULL,''),(0,0,3477,6200,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,3482,4922,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3482,5131,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3482,6091,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3483,4924,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3484,4930,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-01',NULL,''),(0,0,3485,4932,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3486,4933,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3487,4935,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3488,4937,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,3489,4940,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-06-01',NULL,''),(0,0,3490,4942,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,3491,4943,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3492,4945,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3493,4946,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3494,4947,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,3495,4948,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3496,4951,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3497,4952,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3498,4954,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3499,4957,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3500,4960,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-02',NULL,''),(0,0,3501,4961,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3501,4968,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3501,5506,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3502,4962,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-31',NULL,''),(0,0,3503,4966,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,3504,4967,'2025-12-02','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,3505,4973,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3507,4972,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3508,4974,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,3509,4975,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3509,5951,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,3510,4977,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3510,6129,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3511,4978,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3512,4979,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3513,4980,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,3515,4984,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,3516,4986,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3517,4987,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-13',NULL,''),(0,0,3518,4990,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,3519,4991,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,3520,4992,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3520,5281,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3521,4994,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-03',NULL,''),(0,0,3522,4996,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3522,4997,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3522,4998,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3522,5243,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3522,6345,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3523,4999,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3524,5000,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3524,5370,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3525,5002,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,3526,5003,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3526,6547,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3527,5006,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-03',NULL,''),(0,0,3528,5010,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-03',NULL,''),(0,0,3529,5011,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,3530,5012,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,3530,7052,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,3531,5014,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3531,5516,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3532,5015,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3533,5017,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-03',NULL,''),(0,0,3534,5018,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3534,5956,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,3535,5022,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3536,5024,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3537,5026,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-03',NULL,''),(0,0,3538,5028,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3539,5029,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3540,5031,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,3541,5032,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,3541,5585,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3542,5033,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,3542,5491,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,3543,5036,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3543,5842,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3545,5039,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3546,5041,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3547,5044,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,3548,5045,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,3549,5047,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3550,5048,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3551,5049,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3552,5052,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,3553,5055,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3554,5056,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3555,5057,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3556,5059,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3556,6077,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,3557,5060,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,3558,5061,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3559,5062,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,3560,5063,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3561,5064,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3561,6083,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,3561,7104,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,3562,5066,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3563,5067,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,3564,5068,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,3565,5069,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-03',NULL,''),(0,0,3566,5070,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3567,5071,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3568,5073,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3569,5074,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,3570,5075,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3571,5076,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3572,5077,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,3573,5078,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3574,5079,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3575,5080,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,3575,6822,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3576,5081,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-13',NULL,''),(0,0,3577,5082,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3578,5084,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3579,5085,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-03',NULL,''),(0,0,3580,5086,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3581,5087,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-03',NULL,''),(0,0,3582,5088,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,3583,5089,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3583,5871,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,3584,5091,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3586,5094,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3586,5154,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3586,6558,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3586,6562,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3586,7056,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3587,5095,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,3589,5097,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3591,5100,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,3591,5172,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3593,5103,'2025-12-03','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-13',NULL,''),(0,0,3594,5108,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3595,5109,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3596,5110,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3597,5112,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,3598,5113,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3598,5431,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3598,5718,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3599,5115,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3599,6104,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3599,6198,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3599,6672,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3600,5118,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-04',NULL,''),(0,0,3601,5120,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,3602,5121,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3602,5866,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,3603,5122,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3604,5123,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-14',NULL,''),(0,0,3605,5125,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3606,5128,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-04',NULL,''),(0,0,3607,5129,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3608,5130,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,3609,5132,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3610,5133,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3610,6113,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,3611,5134,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3612,5137,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,3613,5138,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3614,5140,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3615,5141,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3615,6177,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,3616,5142,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,3617,5144,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3617,5782,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3618,5145,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3618,5499,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3618,6121,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3619,5146,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-03',NULL,''),(0,0,3620,5147,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3621,5148,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3622,5150,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3622,6239,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3623,5151,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-03',NULL,''),(0,0,3624,5152,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-04',NULL,''),(0,0,3625,5155,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3625,6119,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,3627,5157,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3627,5223,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3627,5596,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3627,6470,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3628,5159,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3629,5160,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3630,5163,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,3630,6623,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,3631,5164,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3632,5165,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3633,5168,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,3634,5171,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,3635,5173,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3636,5175,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3637,5177,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,3638,5179,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,3639,5181,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3640,5183,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3640,5264,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3640,6362,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3641,5185,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-14',NULL,''),(0,0,3642,5186,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3643,5188,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3644,5194,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3645,5195,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3646,5197,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3647,5201,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-04',NULL,''),(0,0,3648,5204,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3649,5205,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-14',NULL,''),(0,0,3650,5209,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3651,5210,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-09',NULL,''),(0,0,3652,5211,'2025-12-04','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-13',NULL,''),(0,0,3653,5216,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3654,5218,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3655,5221,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,3656,5222,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,3657,5225,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-05',NULL,''),(0,0,3658,5226,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,3659,5227,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,3660,5229,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,3661,5231,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-05',NULL,''),(0,0,3662,5232,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3663,5233,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3664,5234,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,3665,5235,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,3665,5478,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3665,6010,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,3666,5236,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-05',NULL,''),(0,0,3667,5237,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3668,5238,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3668,6096,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3669,5239,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3669,6338,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,3670,5241,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3671,5244,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3672,5245,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3673,5246,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3674,5247,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3675,5248,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-05',NULL,''),(0,0,3676,5252,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,3677,5253,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,3678,5255,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,3679,5256,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,3680,5257,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,3681,5258,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,3681,6103,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,3682,5259,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-03',NULL,''),(0,0,3683,5260,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3683,6690,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,3684,5261,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,3685,5263,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3686,5265,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3687,5266,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,3688,5268,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3688,6199,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-26',NULL,''),(0,0,3689,5275,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3690,5284,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,3691,5286,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3691,5624,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3691,6427,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3692,5287,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3693,5289,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3694,5295,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,3695,5296,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-05',NULL,''),(0,0,3696,5298,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,3696,6045,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3697,5300,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3697,6439,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,3698,5301,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,3698,6900,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3699,5305,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,3700,5307,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,3701,5308,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3702,5309,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-05',NULL,''),(0,0,3703,5310,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-05',NULL,''),(0,0,3704,5311,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3705,5621,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3705,5737,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3705,6148,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3705,6259,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3705,6544,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3705,7054,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3706,5316,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3707,5317,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-05',NULL,''),(0,0,3708,5318,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,3709,5320,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-05',NULL,''),(0,0,3710,5321,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3711,5323,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,3712,5325,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3712,5715,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,3713,5326,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-05',NULL,''),(0,0,3713,6565,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3714,5329,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,3715,5330,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-05',NULL,''),(0,0,3716,5331,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-08',NULL,''),(0,0,3717,5332,'2025-12-05','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-10',NULL,''),(0,0,3719,5337,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3719,6329,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,3720,5338,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3720,5607,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3721,5341,'2025-12-07','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-12',NULL,''),(0,0,3721,5518,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3721,5608,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3721,5739,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3721,6191,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3721,6538,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3721,7026,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3722,5342,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,3722,6337,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,3723,5343,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-11',NULL,''),(0,0,3725,5349,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-04',NULL,''),(0,0,3726,5352,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-04',NULL,''),(0,0,3727,5354,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,3728,5355,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-06',NULL,''),(0,0,3729,5357,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-31',NULL,''),(0,0,3730,5358,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3731,6747,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,3731,6756,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3732,5361,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3733,5363,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,3734,5371,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-04',NULL,''),(0,0,3735,5374,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3736,5376,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3737,5378,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-06',NULL,''),(0,0,3738,5380,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3739,5381,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,3740,5383,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,3740,5940,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3742,5389,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,3743,5390,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-06',NULL,''),(0,0,3744,5392,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-04',NULL,''),(0,0,3745,5393,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,3745,6268,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,3746,5394,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-04',NULL,''),(0,0,3747,5395,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3749,5398,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,3750,5399,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-06',NULL,''),(0,0,3751,5402,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,3751,6746,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3752,5403,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,3753,5404,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3753,5670,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3754,5405,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3755,5408,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3756,5409,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3757,5412,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3758,5413,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3759,5414,'2025-12-06','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3764,5425,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,3764,6302,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3765,5426,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,3766,5427,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3767,5428,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3768,5430,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3771,5435,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3773,5437,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3775,5440,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3776,5441,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,3777,5442,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3777,5898,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3777,6236,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3777,6771,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3778,5443,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3778,6186,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3779,5444,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,3780,5445,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,3780,6067,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3780,6411,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,3781,5446,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,3782,5447,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3783,5453,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3784,5455,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3784,6596,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3785,5456,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3786,5457,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3787,5458,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3787,6643,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,3788,5459,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3789,5460,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3791,5462,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3792,5463,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,3793,5466,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3794,5467,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,3796,5472,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3796,6584,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,3797,5473,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3798,5474,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3798,5855,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,3799,5475,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3799,6425,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,3800,5479,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3801,5481,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,3802,5482,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3803,5483,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,3804,5485,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3805,5486,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,3806,5487,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,3807,5488,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3807,6535,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3808,5489,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,3809,5492,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-06',NULL,''),(0,0,3810,5494,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3811,5495,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3812,5496,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,3813,5497,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-06',NULL,''),(0,0,3814,5501,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3814,6181,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3815,5502,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,3816,5503,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3817,5504,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3817,6557,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3818,5507,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,3820,5511,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3820,5606,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3821,5517,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3822,5519,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3823,5520,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3823,6694,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,3824,5521,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,3824,6963,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,3825,5523,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3826,5524,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,3827,5527,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3828,5528,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3829,5529,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3830,5530,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3830,5556,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3831,5531,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,3831,5536,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3832,5532,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-06',NULL,''),(0,0,3833,5533,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3833,6273,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3833,7023,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3834,5534,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3835,5538,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3835,7030,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,3836,5539,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3837,5540,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3838,5541,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3838,6032,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3839,5542,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3840,5543,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3840,6587,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3841,5544,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3842,5545,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,3842,6644,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-29',NULL,''),(0,0,3843,5546,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3844,5547,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3844,6552,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3845,5548,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3846,5551,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3846,6277,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3847,5552,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3848,5553,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3849,5555,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3850,5557,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,3851,5561,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3852,5562,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3853,5564,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-18',NULL,''),(0,0,3854,5565,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3855,5566,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,3856,5569,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3856,6518,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3857,5570,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3858,5574,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3858,6195,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,3858,6905,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3859,5576,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3860,5577,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3861,5578,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-06',NULL,''),(0,0,3862,5580,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3863,5583,'2025-12-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3863,6634,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3864,5589,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3865,5591,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-13',NULL,''),(0,0,3866,5593,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3867,5595,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3868,5600,'2025-12-08','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3870,5602,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3871,5603,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3871,6241,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3872,5609,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,3873,5610,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,3874,5614,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3874,6796,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,3875,5615,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,3876,5616,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3876,5667,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3876,6493,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3877,5617,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3877,6715,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,3878,5619,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-07',NULL,''),(0,0,3879,5620,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-19',NULL,''),(0,0,3880,5622,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3880,6812,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3881,5626,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-07',NULL,''),(0,0,3882,5627,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,3883,5628,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3884,5629,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-19',NULL,''),(0,0,3885,5630,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3885,5665,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3886,5631,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3887,5632,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-08',NULL,''),(0,0,3888,5633,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3889,5634,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3890,5636,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,3891,5639,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,3892,5640,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3893,5641,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3893,6790,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3894,5644,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,3895,5645,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3896,5646,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,3896,5669,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3897,5647,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3898,5648,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3899,5650,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3900,5652,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-08',NULL,''),(0,0,3901,5654,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3902,5655,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3903,5658,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,3904,5659,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3905,5662,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3907,5668,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,3908,5671,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3908,6916,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,3909,5672,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-07',NULL,''),(0,0,3910,5676,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3911,5677,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-07',NULL,''),(0,0,3912,5678,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3913,5679,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-07',NULL,''),(0,0,3914,5680,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3915,5681,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3916,5685,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,3917,5686,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3918,5687,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3918,6788,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-30',NULL,''),(0,0,3919,5688,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,3919,6799,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,3920,5689,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3920,6435,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,3921,5690,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3922,5692,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3923,5693,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,3924,5695,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,3925,5697,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,3926,5698,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-07',NULL,''),(0,0,3927,5699,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,3928,5701,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3929,5703,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,3930,5704,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,3931,5710,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3932,5711,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3932,6328,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3933,5713,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,3934,5716,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3934,6443,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3935,5717,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,3936,5719,'2025-12-09','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3937,5727,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3938,5722,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,3940,5726,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3941,5728,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3942,5730,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3943,5732,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3944,5733,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3945,5735,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3946,5738,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,3947,5741,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3948,5742,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-10',NULL,''),(0,0,3949,5743,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3950,5746,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,3950,6393,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3951,5749,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,3952,5751,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,3953,5752,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-20',NULL,''),(0,0,3954,5754,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,3955,5756,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3956,5757,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-09',NULL,''),(0,0,3957,5760,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,3957,6828,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,3958,5761,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-09',NULL,''),(0,0,3959,5764,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3960,5765,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,3961,5768,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-09',NULL,''),(0,0,3962,5769,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3963,5771,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3963,6238,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3963,6322,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3963,6684,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3964,5772,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-09',NULL,''),(0,0,3965,5773,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3966,5774,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3967,5775,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3968,5776,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3968,6253,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3968,6677,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3969,5778,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3971,5784,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,3972,5785,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-10',NULL,''),(0,0,3974,5787,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3975,5788,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-09',NULL,''),(0,0,3976,5790,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,3978,5793,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3978,6086,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3979,5794,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3979,6320,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3979,6842,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3980,5796,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,3983,5799,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,3984,5801,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-09',NULL,''),(0,0,3985,5806,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3987,5809,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3988,5811,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3988,6299,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,3989,5812,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,3989,6728,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,3990,5813,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3991,5815,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-10',NULL,''),(0,0,3992,5816,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,3993,5817,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,3994,5819,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-10',NULL,''),(0,0,3995,5820,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-09',NULL,''),(0,0,3996,5821,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3996,6227,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3997,5823,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,3998,5825,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,3999,5829,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4000,5830,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4000,5912,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4000,6948,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,4001,5831,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,4002,5832,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4003,5834,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-10',NULL,''),(0,0,4004,5836,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4006,5839,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-09',NULL,''),(0,0,4007,5844,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4008,6645,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4009,5846,'2025-12-10','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4010,5848,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4011,6075,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4011,6176,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4012,5850,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4014,5853,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,4015,5854,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4016,5856,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,4017,5857,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,4017,6813,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,4018,5860,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4019,5861,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,4020,5867,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4021,5869,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-11',NULL,''),(0,0,4022,5873,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,4023,5874,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,4024,5876,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,4025,5878,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-20',NULL,''),(0,0,4026,5879,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,4027,5881,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4028,5882,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4028,6127,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4029,5885,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4030,5886,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-11',NULL,''),(0,0,4031,5887,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4031,5914,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4032,5888,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,4033,5890,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,4034,5891,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4035,5892,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-11',NULL,''),(0,0,4036,5895,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4036,6942,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,4037,5897,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,4038,5900,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-11',NULL,''),(0,0,4039,5901,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4040,5902,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-10',NULL,''),(0,0,4041,5904,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4042,5905,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4043,5906,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4044,5907,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,4045,5908,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-10',NULL,''),(0,0,4046,5909,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,4047,5911,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,4048,5913,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-31',NULL,''),(0,0,4049,5916,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4050,5918,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4051,5920,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4052,5922,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,4053,5925,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4054,5926,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4055,5927,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,4056,5930,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-11',NULL,''),(0,0,4057,5931,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-11',NULL,''),(0,0,4058,5932,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4059,5934,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4060,5936,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,4061,5937,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4062,5939,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4062,7042,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,4063,5997,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,4064,5943,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,4065,5944,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,4065,6446,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4066,5945,'2025-12-11','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-10',NULL,''),(0,0,4067,5949,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4068,5950,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4069,5957,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4069,6990,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,4070,5959,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,4071,5960,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4072,5964,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4073,5965,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,4074,5966,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,4075,5969,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4076,5973,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4076,6738,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4077,5974,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-11',NULL,''),(0,0,4078,5975,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4079,5976,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,4080,6071,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4080,6286,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4080,6467,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4081,5980,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,4082,5983,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,4082,6931,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4083,5984,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,4084,5986,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-17',NULL,''),(0,0,4085,5989,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4086,5991,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4087,5992,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4087,6070,'2025-12-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,4087,6702,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4087,6831,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4088,5994,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,4089,5995,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,4090,5996,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,4092,6001,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4093,6002,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4094,6009,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4095,6011,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4096,6013,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,4097,6014,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4098,6015,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4099,6016,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4099,6994,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,4100,6017,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4100,7033,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4101,6019,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4102,6020,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4102,7000,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4103,6021,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,4104,6023,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,4105,6024,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,4106,6026,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4106,6084,'2025-12-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,4107,6027,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4107,6166,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4107,7057,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4108,6028,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4109,6029,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4109,6047,'2025-12-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,4110,6031,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-15',NULL,''),(0,0,4110,6550,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4111,6033,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,4112,6034,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,4113,6035,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,4114,6037,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,4114,6604,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4115,6038,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,4115,6603,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4116,6039,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4117,6040,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4118,6041,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,4119,6042,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4120,6043,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4121,6052,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,4122,6054,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4123,6056,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-16',NULL,''),(0,0,4123,6372,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4124,6058,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4124,6061,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4124,7012,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,4125,6060,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-12',NULL,''),(0,0,4126,6068,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4127,6063,'2025-12-12','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,4129,7127,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-21',NULL,''),(0,0,4131,6072,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,4132,6073,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4132,6936,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4133,6074,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4134,6080,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,4135,6085,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4136,6087,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,4137,6088,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4138,6089,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,4138,7080,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-03',NULL,''),(0,0,4139,6090,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,4139,6624,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,4140,6155,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4141,6098,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,4142,6099,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,4143,6101,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,4144,6106,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,4145,6107,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,4146,6108,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4147,6109,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,4148,6111,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,4149,6115,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4150,6117,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,4151,6118,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,4151,6252,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4152,6120,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,4153,6123,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,4154,6124,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-07',NULL,''),(0,0,4154,6851,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4155,6125,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-18',NULL,''),(0,0,4156,6126,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,4158,6132,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-13',NULL,''),(0,0,4159,6133,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4160,6134,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4161,6138,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4164,6278,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4164,6406,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4164,6454,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4165,6146,'2025-12-13','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4170,6651,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4171,6161,'2025-12-14','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-19',NULL,''),(0,0,4172,6163,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4174,6167,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,4175,6169,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4175,6384,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4175,6826,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4175,7028,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4176,6170,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4178,6173,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4179,6175,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-13',NULL,''),(0,0,4180,6178,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4181,6179,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4184,6189,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4185,6190,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4186,6192,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4187,6194,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4187,7014,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4188,6196,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,4189,6201,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4189,6977,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4191,6204,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4192,6206,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4193,6207,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4195,6209,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4196,6210,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4197,6211,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-09',NULL,''),(0,0,4198,6212,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4198,6945,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,4199,6213,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4200,6214,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,4202,6218,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,4205,6223,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4206,6224,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4207,6225,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4208,6226,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,4209,6228,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4210,6230,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,4211,6234,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4213,6237,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4214,6240,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4215,6243,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4215,6391,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4215,6492,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4215,7050,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4216,6245,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4217,6246,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,4218,6247,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4219,6248,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4220,6249,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4221,6250,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,4222,6254,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4223,6255,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-13',NULL,''),(0,0,4224,6256,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4225,6258,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4226,6260,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4226,6382,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4227,6262,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,4229,6264,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4230,6265,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,4232,6272,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4232,6940,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4234,6275,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4235,6276,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4236,6279,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4237,6282,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4238,6283,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4239,6285,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4240,6287,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4241,6288,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4242,6289,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,4242,6597,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4244,6291,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-14',NULL,''),(0,0,4245,6292,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4246,6294,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4247,6295,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4248,6300,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,4249,6301,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4250,6305,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4251,6306,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4252,6309,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-06',NULL,''),(0,0,4252,6402,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4253,6310,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4254,6316,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4255,6318,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-20',NULL,''),(0,0,4256,6321,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4257,6324,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4259,6327,'2025-12-15','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4260,6330,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4261,6333,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4262,6334,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,4263,6335,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4264,6336,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,4265,6340,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4266,6341,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4267,6344,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4268,6348,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,4269,6351,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,4270,6352,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4271,6353,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,4272,6354,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4273,6355,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4274,6356,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4274,6777,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4275,6358,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-26',NULL,''),(0,0,4276,6360,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4277,6361,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,4278,6363,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4279,6364,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,4280,6365,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,4281,6368,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4282,6370,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4283,6371,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4284,6373,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,4285,6374,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4285,6421,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4285,6899,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4286,6375,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,4287,6376,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,4288,6378,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,4289,6379,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4290,6380,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4291,6381,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4292,6383,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4293,6386,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,4294,6387,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4295,6388,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-14',NULL,''),(0,0,4296,6389,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4297,6390,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4298,6392,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-10',NULL,''),(0,0,4298,6451,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4298,7125,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4299,6394,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4300,6396,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4302,6398,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,4303,6399,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-26',NULL,''),(0,0,4304,6401,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,4305,6404,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,4306,6405,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-05',NULL,''),(0,0,4307,6407,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,4308,6408,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4309,6410,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,4310,6413,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4311,6414,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,4312,6416,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4313,6417,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4314,6420,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4314,6731,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4315,6424,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4316,6426,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,4317,6428,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4318,6431,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-16',NULL,''),(0,0,4320,6438,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4320,6461,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4321,6440,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,4322,6441,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-15',NULL,''),(0,0,4323,6442,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4323,6447,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,4324,6444,'2025-12-16','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4325,6865,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,4326,6449,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4327,6450,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4328,6452,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,4329,6453,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,4330,6459,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,4331,6463,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,4332,6464,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4333,6466,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,4334,6468,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,4335,6469,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,4336,6472,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,4337,6474,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4338,6477,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4339,6480,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4339,6892,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-06',NULL,''),(0,0,4340,6482,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4341,6484,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4343,6487,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-27',NULL,''),(0,0,4344,6488,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,4344,6998,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4345,6489,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4346,6494,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-11',NULL,''),(0,0,4347,6495,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-16',NULL,''),(0,0,4348,6496,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-16',NULL,''),(0,0,4350,6502,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,4351,6506,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4352,6510,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,4353,6515,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-17',NULL,''),(0,0,4354,6516,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4355,6517,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,4356,6519,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-17',NULL,''),(0,0,4358,6521,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,4359,6525,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4360,6526,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,4361,6527,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,4362,6528,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,4363,6530,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4364,6531,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4365,6532,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-17',NULL,''),(0,0,4366,6533,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-16',NULL,''),(0,0,4367,6534,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,4367,6859,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4368,6536,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4369,7038,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4370,6541,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4371,6543,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4372,6545,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-16',NULL,''),(0,0,4373,6546,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4374,6551,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4374,7118,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,4375,6556,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4376,6559,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,4377,6560,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4378,6564,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,4379,6567,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-17',NULL,''),(0,0,4380,6569,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4381,6571,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4382,6572,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4383,6573,'2025-12-17','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4383,6610,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,4385,6577,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4386,6578,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4387,6579,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4388,6580,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,4389,6581,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,4391,6589,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,4392,6627,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4392,7071,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4393,6591,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-28',NULL,''),(0,0,4394,6592,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-18',NULL,''),(0,0,4395,6594,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-18',NULL,''),(0,0,4396,6595,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,4397,6598,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4399,6600,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4400,6601,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4401,6606,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4402,6607,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4403,6609,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-16',NULL,''),(0,0,4404,6612,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4405,6613,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4406,6615,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-18',NULL,''),(0,0,4407,6616,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-18',NULL,''),(0,0,4408,6617,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4409,6619,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4410,6620,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4411,6626,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4412,6628,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4413,6629,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4414,6631,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-18',NULL,''),(0,0,4415,6632,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4415,7048,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4416,6633,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4417,6635,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-17',NULL,''),(0,0,4419,6638,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4419,7069,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4420,6639,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4421,6640,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-16',NULL,''),(0,0,4422,6641,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,4423,6646,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4424,6647,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4425,6653,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-16',NULL,''),(0,0,4426,6655,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4427,6656,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,4428,6658,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-09',NULL,''),(0,0,4429,6659,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4430,6661,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,4431,6662,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4431,7112,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4434,6667,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-16',NULL,''),(0,0,4435,6668,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-17',NULL,''),(0,0,4436,6669,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4437,6670,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-16',NULL,''),(0,0,4438,6671,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-28',NULL,''),(0,0,4439,6674,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-18',NULL,''),(0,0,4440,6676,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-23',NULL,''),(0,0,4441,6678,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4442,6679,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4443,6680,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,4444,6683,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4445,6693,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-18',NULL,''),(0,0,4446,6696,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4447,6907,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4448,6698,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-18',NULL,''),(0,0,4449,6699,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-18',NULL,''),(0,0,4450,6701,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4451,6705,'2025-12-18','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-18',NULL,''),(0,0,4453,6707,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,4454,6708,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4455,7101,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4456,6714,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,4457,6717,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-19',NULL,''),(0,0,4458,6718,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4459,6719,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,4460,6721,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-03',NULL,''),(0,0,4461,6722,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4463,6727,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4464,6730,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,4465,6734,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4466,6736,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-06-17',NULL,''),(0,0,4467,6737,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,4468,6739,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-26',NULL,''),(0,0,4469,6740,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-18',NULL,''),(0,0,4470,6742,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,4471,6743,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,4472,6745,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,4473,6749,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-19',NULL,''),(0,0,4474,6750,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,4475,6754,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4476,6757,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4477,6759,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-06-17',NULL,''),(0,0,4478,6760,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-19',NULL,''),(0,0,4479,6762,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-06-17',NULL,''),(0,0,4480,6763,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-19',NULL,''),(0,0,4481,6765,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4483,6767,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,4484,6769,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4485,6770,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,4485,6785,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4487,6773,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,4488,6774,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,4489,6775,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,4491,6781,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,4492,6782,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4493,6783,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,4494,6787,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,4495,6793,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4497,6795,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-19',NULL,''),(0,0,4499,6802,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4500,6804,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4501,6806,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-19',NULL,''),(0,0,4502,6807,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4504,6809,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-08',NULL,''),(0,0,4505,6814,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-22',NULL,''),(0,0,4506,6823,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-19',NULL,''),(0,0,4507,6824,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4508,6825,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-30',NULL,''),(0,0,4509,6833,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-19',NULL,''),(0,0,4510,6834,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-30',NULL,''),(0,0,4511,6836,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-24',NULL,''),(0,0,4513,6838,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4514,6840,'2025-12-19','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,4515,6843,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4516,6845,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4517,6847,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4518,6850,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4519,6852,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4520,6853,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4521,6854,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4522,6855,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-19',NULL,''),(0,0,4523,6856,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-20',NULL,''),(0,0,4524,6858,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-20',NULL,''),(0,0,4525,6861,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4526,6863,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-20',NULL,''),(0,0,4527,6864,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4529,6869,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-30',NULL,''),(0,0,4530,6870,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4531,6871,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4532,6872,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-25',NULL,''),(0,0,4533,6873,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4534,6874,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-18',NULL,''),(0,0,4536,6876,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-30',NULL,''),(0,0,4536,6903,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4537,6878,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4538,6879,'2025-12-20','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-20',NULL,''),(0,0,4552,6902,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,4553,6904,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4554,6908,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4555,6909,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,4556,6910,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,4557,6912,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4559,6914,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4560,6917,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4561,6918,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,4562,6919,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4563,6920,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,4564,6922,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,4565,6923,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4566,6925,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,4567,6926,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4568,6927,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-01',NULL,''),(0,0,4569,6928,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4570,6929,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4571,6930,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,4572,6933,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4573,6934,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4574,6937,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,4575,6939,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,4576,6941,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4577,6943,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4578,6946,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4578,6996,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4579,6949,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4580,6950,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4581,6952,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4582,6953,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4583,6954,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-06-20',NULL,''),(0,0,4584,6955,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4585,6958,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4586,6959,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,4587,6960,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,4589,6962,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4590,6966,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4591,6967,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4592,6968,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4594,6970,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4595,6971,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,4596,6972,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4597,6973,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4599,6976,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4600,6978,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,4601,6979,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4602,6980,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4603,6981,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4604,6982,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4604,6995,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4606,6984,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4607,6985,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4609,6987,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4612,7002,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4613,7005,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,4614,7006,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4615,7007,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-02',NULL,''),(0,0,4616,7009,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,4617,7010,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4618,7011,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4619,7015,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,4621,7020,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,4623,7024,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4624,7027,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4626,7034,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,4628,7037,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-27',NULL,''),(0,0,4629,7039,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4630,7040,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,4631,7041,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4633,7046,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,4634,7047,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-20',NULL,''),(0,0,4635,7049,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-01',NULL,''),(0,0,4636,7051,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-01',NULL,''),(0,0,4637,7053,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,4638,7055,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,4642,7062,'2025-12-22','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-21',NULL,''),(0,0,4644,7068,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4646,7070,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4648,7073,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-22',NULL,''),(0,0,4649,7075,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4650,7076,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4651,7079,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,4652,7081,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,4653,7082,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2025-12-29',NULL,''),(0,0,4654,7085,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,4655,7086,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,4656,7087,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4657,7088,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,4658,7089,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,4659,7090,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-22',NULL,''),(0,0,4660,7091,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-22',NULL,''),(0,0,4661,7094,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-22',NULL,''),(0,0,4662,7095,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4663,7096,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4664,7097,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,4665,7098,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,4666,7099,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,4667,7100,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,4668,7102,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,4669,7105,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,4670,7106,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4671,7108,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4672,7109,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-17',NULL,''),(0,0,4673,7110,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4674,7111,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4675,7114,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-02-21',NULL,''),(0,0,4676,7115,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-02',NULL,''),(0,0,4677,7117,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4678,7119,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-07',NULL,''),(0,0,4679,7120,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-03-23',NULL,''),(0,0,4682,7124,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-12',NULL,''),(0,0,4683,7129,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-01-22',NULL,''),(0,0,4684,7130,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4685,7131,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','2026-04-22',NULL,''),(0,0,4686,7134,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,''),(0,0,4687,7135,'2025-12-23','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',NULL,'');
/*!40000 ALTER TABLE `pc_enc_hdr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pc_enc_mast`
--

DROP TABLE IF EXISTS `pc_enc_mast`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pc_enc_mast` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `department` varchar(5) NOT NULL,
  `profile` varchar(6) NOT NULL,
  `Enc_Grp` varchar(10) NOT NULL,
  `Enc_Sub_grp` varchar(50) NOT NULL,
  `Enc_Sub_SeqNo` int(11) NOT NULL,
  `Enc_sub_sub_grp` varchar(50) NOT NULL,
  `Enc_Desc_Total` int(11) NOT NULL,
  `Enc_Subsub_SeqNo` int(11) NOT NULL,
  `Enc_Grp_Description` varchar(200) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `Enc_Desc_SeqNo` int(11) NOT NULL,
  `Enc_Cke_data` text NOT NULL,
  `formula` varchar(20) NOT NULL COMMENT 'Enc_sub_sub_grp Will be used.',
  `options` varchar(100) NOT NULL,
  `input_flag` char(3) NOT NULL,
  `default_value` varchar(50) NOT NULL,
  `input_length` tinyint(3) unsigned NOT NULL,
  `input_type` varchar(15) NOT NULL,
  `label` varchar(600) NOT NULL,
  `valid_value` varchar(10) NOT NULL,
  `display_in_care` char(1) NOT NULL COMMENT 'Allready dispaly if value is null in detail table',
  `Enc_Grp_Favourite` char(1) NOT NULL COMMENT 'Yes if in Favourite List',
  `Level` varchar(1) NOT NULL COMMENT 'e - enc lavel, c - case lavel',
  `Enc_Grp_ID` int(11) NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`Enc_Grp_ID`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`department`,`profile`,`Enc_Grp`,`Enc_Sub_grp`,`Enc_sub_sub_grp`,`Enc_Grp_Description`)
) ENGINE=InnoDB AUTO_INCREMENT=894 DEFAULT CHARSET=latin1 COMMENT='Master list of History groups and subgroups';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pc_enc_mast`
--

LOCK TABLES `pc_enc_mast` WRITE;
/*!40000 ALTER TABLE `pc_enc_mast` DISABLE KEYS */;
INSERT INTO `pc_enc_mast` VALUES (0,0,'Medi','CVA','CC','WEAKNESS',10,'',0,20,'Both LL',30,'','','','C','',0,'','','','','Y','e',1),(0,0,'Medi','CVA','CC','WEAKNESS',10,'',0,20,'On Lf. UL',15,'','','','C','',0,'','','','','Y','e',2),(0,0,'Medi','CVA','CC','WEAKNESS',10,'',0,20,'Both UL',25,'','','','C','',0,'','','','','Y','e',3),(0,0,'Medi','CVA','CC','WEAKNESS',10,'',0,20,'On Rt. UL',5,'','','','C','',0,'','','','','Y','e',4),(0,0,'Medi','CVA','CC','WEAKNESS',10,'',0,20,'On Rt. LL',10,'','','','C','',0,'','','','','Y','e',5),(0,0,'Medi','CVA','CC','WEAKNESS',10,'',0,20,'On Lf. LL',20,'','','','C','',0,'','','','','Y','e',6),(0,0,'Medi','CVA','CC','DIFFICULTY',20,'',0,20,'IN WALKING',35,'','','','C','',0,'','','','','Y','e',8),(0,0,'Medi','CVA','CC','DIFFICULTY',20,'',0,20,'IN SPEAKING',40,'','','','C','',0,'','','','','Y','e',9),(0,0,'Medi','CVA','CC','DIFFICULTY',20,'',0,20,'IN SWALLOWING',45,'','','','C','',0,'','','','','Y','e',10),(0,0,'Medi','CVA','CC','DIFFICULTY',20,'',0,20,'IN VISION',50,'','','','C','',0,'','','','','Y','e',11),(0,0,'Medi','CVA','CC','DIFFICULTY',20,'',0,20,'IN HEARING',55,'','','','C','',0,'','','','','Y','e',12),(0,0,'Medi','CVA','CC','UNABLE',30,'',0,20,'TO WALK',60,'','','','C','',0,'','','','','Y','e',13),(0,0,'Medi','CVA','CC','UNABLE',30,'',0,20,'TO SPEAK',65,'','','','C','',0,'','','','','Y','e',14),(0,0,'Medi','CVA','CC','UNABLE',30,'',0,20,'TO SWALLOW',70,'','','','C','',0,'','','','','Y','e',15),(0,0,'Medi','CVA','CC','UNABLE',30,'',0,20,'TO LOOK',75,'','','','C','',0,'','','','','Y','e',16),(0,0,'Medi','CVA','CC','UNABLE',30,'',0,20,'TO HEAR',80,'','','','C','',0,'','','','','Y','e',17),(0,0,'Medi','CVA','CC','FACIAL PALSY',40,'',0,20,'Lf U.M.N.',95,'','','','C','',0,'','','','','Y','',18),(0,0,'Medi','CVA','CC','FACIAL PALSY',40,'',0,20,'Rt U.M.N.',85,'','','','C','',0,'','','','','Y','',19),(0,0,'Medi','CVA','CC','CONVULSION',50,'',0,20,'GENERALISED',105,'','','','C','',0,'','','','','Y','e',20),(0,0,'Medi','CVA','CC','CONVULSION',50,'',0,20,'LOCALISED',110,'','','','C','',0,'','','','','Y','e',21),(0,0,'Medi','CVA','CC','',0,'',0,20,'TINGLING & NUMBNESS',0,'','','','C','',0,'','','','','N','e',22),(0,0,'Medi','CVA','CC','HEAVYNESS',0,'',0,20,'ON RIGHT SIDE',0,'','','','C','',0,'','','','','N','e',23),(0,0,'Medi','CVA','CC','HEAVYNESS',0,'',0,20,'ON LEFT SIDE',0,'','','','C','',0,'','','','','N','e',24),(0,0,'Medi','CVA','CC','',0,'',0,20,'CHEST-PAIN',0,'','','','C','',0,'','','','','N','e',25),(0,0,'Medi','CVA','CC','',0,'',0,20,'DIZZINESS',0,'','','','C','',0,'','','','','N','e',26),(0,0,'Medi','CVA','CC','',0,'',0,20,'BREATHLESSNESS',0,'','','','C','',0,'','','','','N','e',27),(0,0,'Medi','CVA','CC','',0,'',0,20,'DYSPNEOA',0,'','','','C','',0,'','','','','N','e',28),(0,0,'Medi','CVA','CC','',0,'',0,20,'HEADACHE',0,'','','','C','',0,'','','','','N','e',29),(0,0,'Medi','CVA','CC','',0,'',0,20,'VOMITING',0,'','','','C','',0,'','','','','N','e',30),(0,0,'Medi','CVA','CC','',0,'',0,20,'VERTIGO',0,'','','','C','',0,'','','','','N','e',31),(0,0,'Medi','CVA','CC','',0,'',0,20,'FEVER',0,'','','','C','',0,'','','','','N','e',32),(0,0,'Medi','CVA','CC','COUGH',0,'',0,20,'WITH EXPECTORATION',0,'','','','C','',0,'','','','','N','e',33),(0,0,'Medi','CVA','CC','COUGH',0,'',0,20,'WITHOUT EXPECTORATION',0,'','','','C','',0,'','','','','N','e',34),(0,0,'Medi','CVA','CC','',0,'',0,20,'ANY OTHER',0,'','','','C','',0,'','','','','N','e',35),(0,0,'Medi','CVA','HIST','',10,'',0,40,'I.H.D',10,'','','','C','',0,'','','','','Y','e',38),(0,0,'Medi','CVA','HIST','',10,'',0,40,'M.I.',15,'','','','C','',0,'','','','','Y','e',39),(0,0,'Medi','CVA','HIST','',10,'',0,40,'R.D.H.',20,'','','','C','',0,'','','','','Y','e',40),(0,0,'Medi','CVA','HIST','',10,'',0,40,'L.V.E.F.',25,'','','','I','',0,'','','','','Y','e',41),(0,0,'Medi','CVA','HIST','',10,'',0,40,'VALVULAR DISEASE',30,'','','','C','',0,'','','','','Y','e',42),(0,0,'Medi','CVA','HIST','',10,'',0,40,'JAUNDICE',35,'','','','C','',0,'','','','','Y','e',43),(0,0,'Medi','CVA','HIST','',10,'',0,40,'ASTHMA',40,'','','','C','',0,'','','','','Y','e',44),(0,0,'Medi','CVA','HIST','',10,'',0,40,'T.B.',45,'','','','C','',0,'','','','','Y','e',45),(0,0,'Medi','CVA','HIST','',10,'',0,40,'BLOOD TRANSFUSION',50,'','','','C','',0,'','','','','Y','e',46),(0,0,'Medi','CVA','HIST','',10,'',0,40,'BLEEDING DISORDER',55,'','','','C','',0,'','','','','Y','e',47),(0,0,'Medi','CVA','HIST','',10,'',0,40,'ANY OTHER',60,'','','','C','',0,'','','','','Y','e',48),(0,0,'Medi','CVA','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'PALLOR',5,'','','','C','',0,'','','','','Y','e',49),(0,0,'Medi','CVA','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'ICTERUS',10,'','','','C','',0,'','','','','Y','e',50),(0,0,'Medi','CVA','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'CLUBBING',15,'','','','C','',0,'','','','','Y','e',51),(0,0,'Medi','CVA','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'CYNOSIS',20,'','','','C','',0,'','','','','Y','e',52),(0,0,'Medi','CVA','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'LYMPHADENOPATHY',25,'','','','C','',0,'','','','','Y','e',53),(0,0,'Medi','CVA','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'OEDEMA',30,'','','','I','',0,'','','','','Y','e',54),(0,0,'Medi','CVA','EXAMIN','SYSTEMIC EXAMINATION',20,'C.V.S',0,40,'S1&S2',40,'','','','I','',0,'','','','','Y','e',55),(0,0,'Medi','CVA','EXAMIN','SYSTEMIC EXAMINATION',20,'C.V.S',0,40,'PERIPHERAL PULSE PRESENT',45,'','','','C','',0,'','','','','Y','e',56),(0,0,'Medi','CVA','EXAMIN','SYSTEMIC EXAMINATION',20,'C.V.S',0,40,'MURMUR PRESENT',55,'','','','C','',0,'','','','','Y','e',57),(0,0,'Medi','CVA','EXAMIN','SYSTEMIC EXAMINATION',20,'C.V.S',0,40,'2D-ECHOI LVEF(%)',65,'','','','I','',0,'','','','','Y','e',58),(0,0,'Medi','CVA','EXAMIN','SYSTEMIC EXAMINATION',20,'R.S',0,60,'AEBE',70,'','','YES/NO','O','',0,'','','','','Y','e',60),(0,0,'Medi','CVA','EXAMIN','SYSTEMIC EXAMINATION',20,'R.S',0,60,'RHONCHI',75,'','','','CI','',0,'','','','','Y','e',61),(0,0,'Medi','CVA','EXAMIN','SYSTEMIC EXAMINATION',20,'R.S',0,60,'WHEEZE',80,'','','','C','',0,'','','','','Y','e',62),(0,0,'Medi','CVA','EXAMIN','SYSTEMIC EXAMINATION',20,'R.S',0,60,'STRIDOR',85,'','','','C','',0,'','','','','Y','e',63),(0,0,'Medi','CVA','EXAMIN','SYSTEMIC EXAMINATION',20,'R.S',0,60,'CRACKELS',90,'','','','C','',0,'','','','','Y','e',64),(0,0,'Medi','CVA','EXAMIN','G.I.(P/A)',30,'DYSPHAGIA',0,100,'DYSPHAGIA',120,'','','YES/NO','OI','',0,'','','','','Y','e',66),(0,0,'Medi','CVA','EXAMIN','G.I.(P/A)',30,'INSPECTION',0,80,'SCAR',95,'','','','C','',0,'','','','','Y','e',67),(0,0,'Medi','CVA','EXAMIN','G.I.(P/A)',30,'INSPECTION',0,80,'Abd. DISTENSION',100,'','','','C','',0,'','','','','Y','e',68),(0,0,'Medi','CVA','EXAMIN','G.I.(P/A)',30,'INSPECTION',0,80,'FOCAL SWELLING',105,'','','','C','',0,'','','','','Y','e',69),(0,0,'Medi','CVA','EXAMIN','G.I.(P/A)',30,'INSPECTION',0,80,'PROMINENT VAINS',110,'','','','C','',0,'','','','','Y','e',70),(0,0,'Medi','CVA','EXAMIN','G.I.(P/A)',30,'INSPECTION',0,80,'PULSATION',115,'','','','C','',0,'','','','','Y','e',71),(0,0,'Medi','CVA','EXAMIN','G.I.(P/A)',30,'PALPATION',0,120,'SPLEEN',125,'','','','I','',0,'','','','','Y','e',72),(0,0,'Medi','CVA','EXAMIN','G.I.(P/A)',30,'PALPATION',0,120,'BLADDER',130,'','','','I','',0,'','','','','Y','e',73),(0,0,'Medi','CVA','EXAMIN','G.I.(P/A)',30,'PALPATION',0,120,'LIVER',135,'','','','I','',0,'','','','','Y','e',74),(0,0,'Medi','CVA','EXAMIN','G.I.(P/A)',30,'PALPATION',0,120,'TENDERNESS',140,'','','','I','',0,'','','','','Y','e',75),(0,0,'Medi','CVA','EXAMIN','C.N.S',40,'CONSCIOUSNESS',0,140,'NORMAL',145,'','','','C','',0,'','','','','Y','e',76),(0,0,'Medi','CVA','EXAMIN','C.N.S',40,'CONSCIOUSNESS',0,140,'CONFUSION',150,'','','','C','',0,'','','','','Y','e',77),(0,0,'Medi','CVA','EXAMIN','C.N.S',40,'CONSCIOUSNESS',0,140,'DROWSY',155,'','','','C','',0,'','','','','Y','e',78),(0,0,'Medi','CVA','EXAMIN','C.N.S',40,'CONSCIOUSNESS',0,140,'STUPOR',160,'','','','C','',0,'','','','','Y','e',79),(0,0,'Medi','CVA','EXAMIN','C.N.S',40,'CONSCIOUSNESS',0,140,'COMA',165,'','','','C','',0,'','','','','Y','e',80),(0,0,'Medi','CVA','EXAMIN','GLASGOW COMA SCALE',50,'',0,180,'MEMORY-PAST & PRESENT',185,'','','','I','',0,'','','','','Y','e',81),(0,0,'Medi','CVA','EXAMIN','GLASGOW COMA SCALE',50,'',0,180,'BEHAVIOR',190,'','','','I','',0,'','','','','Y','e',82),(0,0,'Medi','CVA','EXAMIN','GLASGOW COMA SCALE',50,'SPEECH',0,220,'APHASIA',220,'','','SENSORY/MOTOR/CENTRAL','OI','',0,'','','','','Y','e',83),(0,0,'Medi','CVA','EXAMIN','MOTOR SYSTEM',60,'NUTRITION',0,240,'',230,'','','NORMAL/WASTING/HYPERTROPHY','O','',0,'','','','','Y','e',86),(0,0,'Gyna','ANC','HIST','GAPL',10,'',0,20,'G',5,'','','','I','',0,'','','','','Y','c',89),(0,0,'Gyna','ANC','HIST','GAPL',10,'',0,20,'A',10,'','','','I','',0,'','','','','Y','c',90),(0,0,'Gyna','ANC','HIST','GAPL',10,'',0,20,'P',15,'','','','I','',0,'','','','','Y','c',91),(0,0,'Gyna','ANC','HIST','GAPL',10,'',0,20,'L',20,'','','','I','',0,'','','','','Y','c',92),(0,0,'Gyna','ANC','HIST','Past Obstetric',20,'History',0,40,'ND',35,'','','','C','',0,'','','','','Y','c',93),(0,0,'Gyna','ANC','HIST','Past Obstetric',20,'History',0,40,'LSCS',40,'','','','C','',0,'','','','','Y','c',94),(0,0,'Gyna','ANC','HIST','Present Obstetric',30,'Condition',0,60,'Normal',45,'','','','C','',0,'','','','','Y','c',95),(0,0,'Gyna','ANC','HIST','Present Obstetric',30,'Condition',0,60,'High-risk',50,'','','','C','',0,'','','','','Y','c',96),(0,0,'Gyna','ANC','HIST','Positive Medical History',40,'',0,80,'History',55,'','','','I','',0,'','','','','Y','c',97),(0,0,'Medi','CVA','EXAMIN','MOTOR SYSTEM',60,'TONE',0,260,'',235,'','','NORMAL/HYPOTONIA(FLACCIDITY)/HYPERTONIA(SPASTICITY)','O','',0,'','','','','Y','',98),(0,0,'Medi','CVA','EXAMIN','MOTOR SYSTEM',60,'ATAXIA',0,260,'',240,'','','CEREBELLAR/SENSORY/LABYRINTHINE/CENTRAL','O','',0,'','','','','Y','',99),(0,0,'Medi','CVA','EXAMIN','MOTOR SYSTEM',60,'INVOLUNTARY MOVEMENT',0,280,'',245,'','','YES/NO','O','',0,'','','','','Y','',100),(0,0,'Medi','CVA','EXAMIN','SENSORY SYSTEM',80,'',0,330,'TOUCH',250,'','','','C','',0,'','','','','Y','',101),(0,0,'Medi','CVA','EXAMIN','SENSORY SYSTEM',80,'',0,330,'PAIN',255,'','','','C','',0,'','','','','Y','',102),(0,0,'Medi','CVA','EXAMIN','SENSORY SYSTEM',80,'',0,330,'TEMPRATURE',260,'','','','C','',0,'','','','','Y','',103),(0,0,'Medi','CVA','EXAMIN','SENSORY SYSTEM',80,'',0,330,'POSITION',265,'','','','C','',0,'','','','','Y','',104),(0,0,'Medi','CVA','EXAMIN','SENSORY SYSTEM',80,'',0,330,'VIBRATION',270,'','','','C','',0,'','','','','Y','',105),(0,0,'Medi','CVA','EXAMIN','SENSORY SYSTEM',80,'',0,330,'CORTICAL SENSE-TRACTILE LOCALISATION',275,'','','','C','',0,'','','','','Y','',106),(0,0,'Medi','CVA','EXAMIN','SENSORY SYSTEM',80,'',0,330,'DISCRIMINATION',280,'','','','C','',0,'','','','','Y','',107),(0,0,'Medi','CVA','EXAMIN','REFLEXES',90,'PLANTER',0,340,'RIGHT',285,'','','','I','',0,'','','','','Y','',108),(0,0,'Medi','CVA','EXAMIN','REFLEXES',90,'ANKLE',0,360,'RIGHT',295,'','','','I','',0,'','','','','Y','',109),(0,0,'Medi','CVA','EXAMIN','REFLEXES',90,'KNEE',0,380,'RIGHT',305,'','','','I','',0,'','','','','Y','',110),(0,0,'Medi','CVA','EXAMIN','REFLEXES',90,'TRICEP',0,400,'RIGHT',315,'','','','I','',0,'','','','','Y','',111),(0,0,'Medi','CVA','EXAMIN','REFLEXES',90,'BICEP',0,420,'RIGHT',325,'','','','I','',0,'','','','','Y','',112),(0,0,'Medi','CVA','EXAMIN','REFLEXES',90,'SUPINATOR',0,440,'RIGHT',335,'','','','I','',0,'','','','','Y','',113),(0,0,'Medi','CVA','EXAMIN','REFLEXES',90,'PLANTER',0,340,'LEFT',290,'','','','I','',0,'','','','','Y','',114),(0,0,'Medi','CVA','EXAMIN','REFLEXES',90,'ANKLE',0,360,'LEFT',300,'','','','I','',0,'','','','','Y','',115),(0,0,'Medi','CVA','EXAMIN','REFLEXES',90,'KNEE',0,380,'LEFT',310,'','','','I','',0,'','','','','Y','',116),(0,0,'Medi','CVA','EXAMIN','REFLEXES',90,'TRICEP',0,400,'LEFT',320,'','','','I','',0,'','','','','Y','',117),(0,0,'Medi','CVA','EXAMIN','REFLEXES',90,'BICEP',0,420,'LEFT',330,'','','','I','',0,'','','','','Y','',118),(0,0,'Medi','CVA','EXAMIN','REFLEXES',90,'SUPINATOR',0,440,'LEFT',340,'','','','I','',0,'','','','','Y','',119),(0,0,'Medi','CVA','EXAMIN','MISCELLANEOUS',100,'',0,460,'NECK STIFFNESS',445,'','','','C','',0,'','','','','Y','',120),(0,0,'Medi','CVA','EXAMIN','MISCELLANEOUS',100,'',0,460,'KERNIGS SIGN',450,'','','','C','',0,'','','','','Y','',121),(0,0,'Medi','CVA','EXAMIN','MISCELLANEOUS',100,'',0,460,'BRUDZINSKI SIGN',455,'','','','C','',0,'','','','','Y','',122),(0,0,'Medi','CVA','EXAMIN','MISCELLANEOUS',100,'',0,460,'S.L.R',460,'','','','C','',0,'','','','','Y','',123),(0,0,'Medi','CVA','HIST','HYPERTENSION',5,'',0,20,'DIABETES',6,'','','MELLITUS/INSIPIDUS','I','',0,'','','','','Y','',141),(0,0,'Medi','CVA','HIST','PERSONAL HISTORY',20,'',0,60,'APPETITE',65,'','','','I','',0,'','','','','Y','',142),(0,0,'Medi','CVA','HIST','PERSONAL HISTORY',20,'',0,60,'BOWEL/BLADDER',70,'','','','I','',0,'','','','','Y','',143),(0,0,'Medi','CVA','HIST','PERSONAL HISTORY',20,'',0,60,'MENSTRUAL',80,'','','','I','',0,'','','','','Y','',144),(0,0,'Medi','CVA','HIST','PERSONAL HISTORY',20,'HABITS',0,80,'SMOKING',85,'','','','C','',0,'','','','','Y','',145),(0,0,'Medi','CVA','HIST','PERSONAL HISTORY',20,'HABITS',0,80,'TOBACCO',90,'','','','C','',0,'','','','','Y','',146),(0,0,'Medi','CVA','HIST','PERSONAL HISTORY',20,'HABITS',0,80,'SNUFFING',95,'','','','C','',0,'','','','','Y','',147),(0,0,'Medi','CVA','HIST','PERSONAL HISTORY',20,'HABITS',0,80,'ALCOHOL',100,'','','','C','',0,'','','','','Y','',148),(0,0,'Medi','CVA','HIST','FAMILY HISTORY',30,'',0,100,'DRUG',105,'','','','I','',0,'','','','','Y','',149),(0,0,'Medi','CVA','HIST','FAMILY HISTORY',30,'',0,100,'OTHER',110,'','','','I','',0,'','','','','Y','',150),(0,0,'Medi','CVA','EXAMIN','POWER GRADE',70,'ON UL',0,300,'LEFT SIDE',0,'','','','I','',0,'','','','','Y','',151),(0,0,'Medi','CVA','EXAMIN','POWER GRADE',70,'ON UL',0,300,'RIGHT SIDE',0,'','','','I','',0,'','','','','Y','',152),(0,0,'Medi','CVA','EXAMIN','POWER GRADE',70,'ON LL',0,320,'LEFT SIDE',0,'','','','I','',0,'','','','','Y','',153),(0,0,'Medi','CVA','EXAMIN','POWER GRADE',70,'ON LL',0,320,'RIGHT SIDE',0,'','','','I','',0,'','','','','Y','',154),(0,0,'Medi','CVA','CC','FACIAL PALSY',40,'',0,20,'Lf. L.M.N.',100,'','','','C','',0,'','','','','Y','',161),(0,0,'Medi','CVA','CC','FACIAL PALSY',40,'',0,20,'Rt. L.M.N.',90,'','','','C','',0,'','','','','Y','',162),(0,0,'Medi','CVA','CC','ZZZ91',60,'',0,20,'Tingling & Numbness',115,'','','','C','',0,'','','','','Y','',163),(0,0,'Medi','CVA','CC','ZZZ92',70,'',0,20,'Chest-Pain',130,'','','','C','',0,'','','','','Y','',164),(0,0,'Medi','CVA','CC','ZZZ93',80,'',0,20,'Headache',150,'','','','C','',0,'','','','','Y','',165),(0,0,'Medi','CVA','CC','ZZZ94',90,'',0,20,'Fever',165,'','','','C','',0,'','','','','Y','',166),(0,0,'Medi','CVA','CC','ZZZ95',100,'',0,20,'Cough Wt. Expectoration',170,'','','','C','',0,'','','','','Y','',167),(0,0,'Medi','CVA','CC','ZZZ91',60,'',0,20,'Hevyness On Rt. Side',120,'','','','C','',0,'','','','','Y','',168),(0,0,'Medi','CVA','CC','ZZZ91',60,'',0,20,'Hevyness On Lf. Side',125,'','','','C','',0,'','','','','Y','',169),(0,0,'Medi','CVA','CC','ZZZ92',70,'',0,20,'Dizziness',135,'','','','C','',0,'','','','','Y','',170),(0,0,'Medi','CVA','CC','ZZZ92',70,'',0,20,'Breathlessness',140,'','','','C','',0,'','','','','Y','',171),(0,0,'Medi','CVA','CC','ZZZ92',70,'',0,20,'Dyspneoa',145,'','','','C','',0,'','','','','Y','',172),(0,0,'Medi','CVA','CC','ZZZ93',80,'',0,20,'Vomiting',155,'','','','C','',0,'','','','','Y','',173),(0,0,'Medi','CVA','CC','ZZZ93',80,'',0,20,'Vertigo',160,'','','','C','',0,'','','','','Y','',174),(0,0,'Medi','CVA','CC','ZZZ95',100,'',0,20,'Cough W/o Expectoration',175,'','','','C','',0,'','','','','Y','',175),(0,0,'Medi','CVA','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'PUPIL',35,'','','','I','',0,'','','','','Y','',176),(0,0,'Medi','CVA','EXAMIN','SYSTEMIC EXAMINATION',20,'C.V.S',0,40,'MURMUR ABSENT',60,'','','','C','',0,'','','','','Y','',177),(0,0,'Medi','CVA','EXAMIN','SYSTEMIC EXAMINATION',20,'C.V.S',0,40,'PERIPHERAL PULSE ABSENT',50,'','','','C','',0,'','','','','Y','',178),(0,0,'Medi','CVA','EXAMIN','GLASGOW COMA SCALE',50,'EVM',0,160,'E',170,'','','','I','',0,'','','','','Y','',179),(0,0,'Medi','CVA','EXAMIN','GLASGOW COMA SCALE',50,'EVM',0,160,'V',175,'','','','I','',0,'','','','','Y','',180),(0,0,'Medi','CVA','EXAMIN','GLASGOW COMA SCALE',50,'EVM',0,160,'M',180,'','','','I','',0,'','','','','Y','',181),(0,0,'Medi','CVA','EXAMIN','GLASGOW COMA SCALE',50,'ORIENTATION TO',0,200,'TIME',205,'','','','C','',0,'','','','','Y','',182),(0,0,'Medi','CVA','EXAMIN','GLASGOW COMA SCALE',50,'ORIENTATION TO',0,200,'PLACE',210,'','','','C','',0,'','','','','Y','',183),(0,0,'Medi','CVA','EXAMIN','GLASGOW COMA SCALE',50,'ORIENTATION TO',0,200,'PERSON',215,'','','','C','',0,'','','','','Y','',184),(0,0,'Medi','CVA','EXAMIN','GLASGOW COMA SCALE',50,'SPEECH',0,220,'DYSARTHRIA',225,'','','','C','',0,'','','','','Y','',187),(0,0,'Medi','CVA','EXAMIN','GLASGOW COMA SCALE',50,'',0,180,'HALUINATION',195,'','','','C','',0,'','','','','Y','',188),(0,0,'Medi','CVA','EXAMIN','GLASGOW COMA SCALE',50,'',0,180,'DELUSION',200,'','','','C','',0,'','','','','Y','',189),(0,0,'Medi','CVA','HIST','HYPERTENSION',5,'',0,20,'HYPERTENSION',5,'','','','I','',0,'','','','','Y','',191),(0,0,'Medi','CVA','HIST','PERSONAL HISTORY',20,'',0,60,'SLEEP',75,'','','','I','',0,'','','','','Y','',192),(0,0,'Gyna','ANC','HIST','GAPL',10,'',0,20,'E',25,'','','','I','',0,'','','','','Y','',196),(0,0,'Gyna','ANC','HIST','GAPL',10,'',0,20,'T',30,'','','','I','',0,'','','','','Y','',197),(0,0,'Gyna','All','EXAMIN','P/A',10,'',0,5,'PA',5,'','','','I','',0,'','','','','Y','',264),(0,0,'Gyna','All','EXAMIN','P/V',20,'Uterine Size',0,10,'',5,'','','Normal/Bulky','O','',0,'','','','','Y','',265),(0,0,'Gyna','All','EXAMIN','P/S',30,'Cervix',0,10,'',5,'','','Normal/Crosion/Polyp','O','',0,'','','','','Y','',266),(0,0,'Gyna','All','EXAMIN','P/R',40,'',0,5,'PR',0,'','','','I','',0,'','','','','Y','',267),(0,0,'Gyna','All','EXAMIN','RS',50,'',0,5,'RS',5,'','','','I','',0,'','','','','Y','',268),(0,0,'Gyna','All','EXAMIN','CVS',60,'',0,5,'CVS',20,'','','','I','',0,'','','','','Y','',269),(0,0,'Gyna','All','EXAMIN','CNS',70,'',0,5,'CNS',25,'','','','I','',0,'','','','','Y','',270),(0,0,'Gyna','All','EXAMIN','P/V',20,'Uterine Position',0,15,'',10,'','','RVRA/AVAF','O','',0,'','','','','Y','',271),(0,0,'Gyna','All','EXAMIN','P/V',20,'Rt',0,20,'Adnexa',20,'','','','I','',0,'','','','','Y','',272),(0,0,'Gyna','All','EXAMIN','P/V',20,'Lf',0,25,'Adnexa',15,'','','','I','',0,'','','','','Y','',273),(0,0,'Gyna','All','EXAMIN','P/S',30,'Vaginal Discharge',0,15,'',15,'','','White/Mix/Purulent/Foul Smelling','O','',0,'','','','','Y','',274),(0,0,'Gyna','All','EXAMIN','P/V',20,'',0,5,'PV',0,'','','','I','',0,'','','','','Y','',275),(0,0,'Gyna','All','EXAMIN','P/S',30,'',0,5,'PS',0,'','','','I','',0,'','','','','Y','',276),(0,0,'Gyna','PNC','CC','',0,'',0,0,'',0,'','','','','',0,'','','','','N','',277),(0,0,'Gyna','GYNAC','CC','',0,'',0,0,'',0,'','','','I','',0,'','','','','N','',278),(0,0,'Medi','Generl','DIAG','',0,'',0,0,'',0,'','','','I','',5,'','','','','N','',346),(0,0,'Medi','SBITE','CC','Insident Detail',10,'',0,0,'Site Of BIte',5,'','','','I','',5,'','','','','Y','',347),(0,0,'Medi','SBITE','CC','Insident Detail',10,'',0,0,'Time',10,'','','','I','',5,'','','','','Y','',348),(0,0,'Medi','SBITE','CC','Insident Detail',10,'',0,0,'Fang Mark',15,'','','Visible/Notvisible','O','',0,'','','','','Y','',349),(0,0,'Medi','SBITE','CC','Insident Detail',10,'',0,0,'Distance (CM)',20,'','','','I','',5,'','','','','Y','',350),(0,0,'Medi','SBITE','CC','Insident Detail',10,'',0,0,'Type',25,'','','Multiple/Semicircular','O','',0,'','','','','Y','',351),(0,0,'Medi','SBITE','CC','Snake/Insect',20,'',0,0,'Type',0,'','','COBRA/KRAIT/RUSSEL VIPER/SAWSCAL VIPER/ECHIS CRANIATA/NONE POISON/SCORPION/INSECT/NOT KNOWN','O','',0,'','','','','Y','',352),(0,0,'Medi','SBITE','CC','Local Sign',30,'',0,0,'PAIN',0,'','','','C','',0,'','','','','Y','',353),(0,0,'Medi','SBITE','CC','Local Sign',30,'',0,0,'SWELLING',0,'','','','C','',0,'','','','','Y','',354),(0,0,'Medi','SBITE','CC','Local Sign',30,'',0,0,'NACROSIS',0,'','','','C','',0,'','','','','Y','',355),(0,0,'Medi','SBITE','CC','Local Sign',30,'',0,0,'BLEEDING AT SITE OF BITE',0,'','','','C','',0,'','','','','Y','',356),(0,0,'Medi','SBITE','CC','Local Sign',30,'',0,0,'VASICULATION',0,'','','','C','',0,'','','','','Y','',357),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC SIGN',5,'BLEEDING FROM MOUTH GUMYES',0,10,'',5,'','','YES/NO','O','',0,'','','','','Y','',358),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC SIGN',5,'HAEMATEMESIS',0,15,'',0,'','','YES/NO','O','',0,'','','','','Y','',359),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC SIGN',5,'MELENA',0,20,'',0,'','','YES/NO','O','',0,'','','','','Y','',360),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC SIGN',5,'HAEMATURIA',0,25,'',0,'','','YES/NO','O','',0,'','','','','Y','',361),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC SIGN',5,'ECCHYMOSIS',0,30,'',0,'','','YES/NO','O','',0,'','','','','Y','',362),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC SIGN',5,'PTOSIS',0,35,'',0,'','','YES/NO','O','',0,'','','','','Y','',363),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC SIGN',5,'DIFFICULTY IN SPEECH',0,40,'',0,'','','YES/NO','O','',0,'','','','','Y','',364),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC SIGN',5,'DIFFICULTY IN SWALLOWING',0,45,'',0,'','','YES/NO','O','',0,'','','','','Y','',365),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC SIGN',5,'MUSCLE PARALYSIS',0,50,'',0,'','','YES/NO','O','',0,'','','','','Y','',366),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC SIGN',5,'RESPIRATORY PARALYSIS',0,55,'',0,'','','YES/NO','O','',0,'','','','','Y','',367),(0,0,'Medi','SBITE','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'CLUBBING',15,'','','','C','',0,'','','','','Y','e',368),(0,0,'Medi','SBITE','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'CYNOSIS',20,'','','','C','',0,'','','','','Y','e',369),(0,0,'Medi','SBITE','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'ICTERUS',10,'','','','C','',0,'','','','','Y','e',370),(0,0,'Medi','SBITE','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'LYMPHADENOPATHY',25,'','','','C','',0,'','','','','Y','e',371),(0,0,'Medi','SBITE','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'OEDEMA',30,'','','','I','',5,'','','','','Y','e',372),(0,0,'Medi','SBITE','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'PALLOR',5,'','','','C','',0,'','','','','Y','e',373),(0,0,'Medi','SBITE','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'PUPIL',35,'','','','I','',5,'','','','','Y','',374),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC EXAMINATION',20,'C.V.S',0,40,'2D-ECHOI LVEF(%)',65,'','','','I','',5,'','','','','Y','e',375),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC EXAMINATION',20,'C.V.S',0,40,'MURMUR ABSENT',60,'','','','C','',0,'','','','','Y','',376),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC EXAMINATION',20,'C.V.S',0,40,'MURMUR PRESENT',55,'','','','C','',0,'','','','','Y','e',377),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC EXAMINATION',20,'C.V.S',0,40,'PERIPHERAL PULSE ABSENT',50,'','','','C','',0,'','','','','Y','',378),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC EXAMINATION',20,'C.V.S',0,40,'PERIPHERAL PULSE PRESENT',45,'','','','C','',0,'','','','','Y','e',379),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC EXAMINATION',20,'C.V.S',0,40,'S1&S2',40,'','','','I','',5,'','','','','Y','e',380),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC EXAMINATION',20,'R.S',0,60,'AEBE',70,'','','YES/NO','O','',0,'','','','','Y','e',381),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC EXAMINATION',20,'R.S',0,60,'CRACKELS',90,'','','','C','',0,'','','','','Y','e',382),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC EXAMINATION',20,'R.S',0,60,'RHONCHI',75,'','','','C','',5,'','','','','Y','e',383),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC EXAMINATION',20,'R.S',0,60,'STRIDOR',85,'','','','C','',0,'','','','','Y','e',384),(0,0,'Medi','SBITE','EXAMIN','SYSTEMIC EXAMINATION',20,'R.S',0,60,'WHEEZE',80,'','','','C','',0,'','','','','Y','e',385),(0,0,'Medi','SBITE','EXAMIN','G.I.(P/A)',30,'DYSPHAGIA',0,100,'DYSPHAGIA',120,'','','YES/NO','O','',0,'','','','','Y','e',386),(0,0,'Medi','SBITE','EXAMIN','G.I.(P/A)',30,'INSPECTION',0,80,'Abd. DISTENSION',100,'','','','C','',0,'','','','','Y','e',387),(0,0,'Medi','SBITE','EXAMIN','G.I.(P/A)',30,'INSPECTION',0,80,'FOCAL SWELLING',105,'','','','C','',0,'','','','','Y','e',388),(0,0,'Medi','SBITE','EXAMIN','G.I.(P/A)',30,'INSPECTION',0,80,'PROMINENT VAINS',110,'','','','C','',0,'','','','','Y','e',389),(0,0,'Medi','SBITE','EXAMIN','G.I.(P/A)',30,'INSPECTION',0,80,'PULSATION',115,'','','','C','',0,'','','','','Y','e',390),(0,0,'Medi','SBITE','EXAMIN','G.I.(P/A)',30,'INSPECTION',0,80,'SCAR',95,'','','','C','',0,'','','','','Y','e',391),(0,0,'Medi','SBITE','EXAMIN','G.I.(P/A)',30,'PALPATION',0,120,'BLADDER',130,'','','','I','',5,'','','','','Y','e',392),(0,0,'Medi','SBITE','EXAMIN','G.I.(P/A)',30,'PALPATION',0,120,'LIVER',135,'','','','I','',5,'','','','','Y','e',393),(0,0,'Medi','SBITE','EXAMIN','G.I.(P/A)',30,'PALPATION',0,120,'SPLEEN',125,'','','','I','',5,'','','','','Y','e',394),(0,0,'Medi','SBITE','EXAMIN','G.I.(P/A)',30,'PALPATION',0,120,'TENDERNESS',140,'','','','I','',5,'','','','','Y','e',395),(0,0,'Medi','SBITE','EXAMIN','C.N.S',40,'CONSCIOUSNESS',0,140,'COMA',165,'','','','C','',0,'','','','','Y','e',396),(0,0,'Medi','SBITE','EXAMIN','C.N.S',40,'CONSCIOUSNESS',0,140,'CONFUSION',150,'','','','C','',0,'','','','','Y','e',397),(0,0,'Medi','SBITE','EXAMIN','C.N.S',40,'CONSCIOUSNESS',0,140,'DROWSY',155,'','','','C','',0,'','','','','Y','e',398),(0,0,'Medi','SBITE','EXAMIN','C.N.S',40,'CONSCIOUSNESS',0,140,'NORMAL',145,'','','','C','',0,'','','','','Y','e',399),(0,0,'Medi','SBITE','EXAMIN','C.N.S',40,'CONSCIOUSNESS',0,140,'STUPOR',160,'','','','C','',0,'','','','','Y','e',400),(0,0,'Medi','Poison','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'CLUBBING',15,'','','','C','',0,'','','','','Y','e',401),(0,0,'Medi','Poison','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'CYNOSIS',20,'','','','C','',0,'','','','','Y','e',402),(0,0,'Medi','Poison','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'ICTERUS',10,'','','','C','',0,'','','','','Y','e',403),(0,0,'Medi','Poison','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'LYMPHADENOPATHY',25,'','','','C','',0,'','','','','Y','e',404),(0,0,'Medi','Poison','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'OEDEMA',30,'','','','I','',5,'','','','','Y','e',405),(0,0,'Medi','Poison','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'PALLOR',5,'','','','C','',0,'','','','','Y','e',406),(0,0,'Medi','Poison','EXAMIN','GENERAL EXAMINATION',10,'',0,20,'PUPIL',35,'','','','I','',5,'','','','','Y','',407),(0,0,'Medi','Poison','EXAMIN','SYSTEMIC EXAMINATION',20,'C.V.S',0,40,'2D-ECHOI LVEF(%)',65,'','','','I','',5,'','','','','Y','e',408),(0,0,'Medi','Poison','EXAMIN','SYSTEMIC EXAMINATION',20,'C.V.S',0,40,'MURMUR ABSENT',60,'','','','C','',0,'','','','','Y','',409),(0,0,'Medi','Poison','EXAMIN','SYSTEMIC EXAMINATION',20,'C.V.S',0,40,'MURMUR PRESENT',55,'','','','C','',0,'','','','','Y','e',410),(0,0,'Medi','Poison','EXAMIN','SYSTEMIC EXAMINATION',20,'C.V.S',0,40,'PERIPHERAL PULSE ABSENT',50,'','','','C','',0,'','','','','Y','',411),(0,0,'Medi','Poison','EXAMIN','SYSTEMIC EXAMINATION',20,'C.V.S',0,40,'PERIPHERAL PULSE PRESENT',45,'','','','C','',0,'','','','','Y','e',412),(0,0,'Medi','Poison','EXAMIN','SYSTEMIC EXAMINATION',20,'C.V.S',0,40,'S1&S2',40,'','','','I','',5,'','','','','Y','e',413),(0,0,'Medi','Poison','EXAMIN','SYSTEMIC EXAMINATION',20,'R.S',0,60,'AEBE',70,'','','YES/NO','O','',0,'','','','','Y','e',414),(0,0,'Medi','Poison','EXAMIN','SYSTEMIC EXAMINATION',20,'R.S',0,60,'CRACKELS',90,'','','','C','',0,'','','','','Y','e',415),(0,0,'Medi','Poison','EXAMIN','SYSTEMIC EXAMINATION',20,'R.S',0,60,'RHONCHI',75,'','','','C','',5,'','','','','Y','e',416),(0,0,'Medi','Poison','EXAMIN','SYSTEMIC EXAMINATION',20,'R.S',0,60,'STRIDOR',85,'','','','C','',0,'','','','','Y','e',417),(0,0,'Medi','Poison','EXAMIN','SYSTEMIC EXAMINATION',20,'R.S',0,60,'WHEEZE',80,'','','','C','',0,'','','','','Y','e',418),(0,0,'Medi','Poison','EXAMIN','G.I.(P/A)',30,'DYSPHAGIA',0,100,'DYSPHAGIA',120,'','','YES/NO','O','',0,'','','','','Y','e',419),(0,0,'Medi','Poison','EXAMIN','G.I.(P/A)',30,'INSPECTION',0,80,'Abd. DISTENSION',100,'','','','C','',0,'','','','','Y','e',420),(0,0,'Medi','Poison','EXAMIN','G.I.(P/A)',30,'INSPECTION',0,80,'FOCAL SWELLING',105,'','','','C','',0,'','','','','Y','e',421),(0,0,'Medi','Poison','EXAMIN','G.I.(P/A)',30,'INSPECTION',0,80,'PROMINENT VAINS',110,'','','','C','',0,'','','','','Y','e',422),(0,0,'Medi','Poison','EXAMIN','G.I.(P/A)',30,'INSPECTION',0,80,'PULSATION',115,'','','','C','',0,'','','','','Y','e',423),(0,0,'Medi','Poison','EXAMIN','G.I.(P/A)',30,'INSPECTION',0,80,'SCAR',95,'','','','C','',0,'','','','','Y','e',424),(0,0,'Medi','Poison','EXAMIN','G.I.(P/A)',30,'PALPATION',0,120,'BLADDER',130,'','','','I','',5,'','','','','Y','e',425),(0,0,'Medi','Poison','EXAMIN','G.I.(P/A)',30,'PALPATION',0,120,'LIVER',135,'','','','I','',5,'','','','','Y','e',426),(0,0,'Medi','Poison','EXAMIN','G.I.(P/A)',30,'PALPATION',0,120,'SPLEEN',125,'','','','I','',5,'','','','','Y','e',427),(0,0,'Medi','Poison','EXAMIN','G.I.(P/A)',30,'PALPATION',0,120,'TENDERNESS',140,'','','','I','',5,'','','','','Y','e',428),(0,0,'Medi','Poison','EXAMIN','C.N.S',40,'CONSCIOUSNESS',0,140,'COMA',165,'','','','C','',0,'','','','','Y','e',429),(0,0,'Medi','Poison','EXAMIN','C.N.S',40,'CONSCIOUSNESS',0,140,'CONFUSION',150,'','','','C','',0,'','','','','Y','e',430),(0,0,'Medi','Poison','EXAMIN','C.N.S',40,'CONSCIOUSNESS',0,140,'DROWSY',155,'','','','C','',0,'','','','','Y','e',431),(0,0,'Medi','Poison','EXAMIN','C.N.S',40,'CONSCIOUSNESS',0,140,'NORMAL',145,'','','','C','',0,'','','','','Y','e',432),(0,0,'Medi','Poison','EXAMIN','C.N.S',40,'CONSCIOUSNESS',0,140,'STUPOR',160,'','','','C','',0,'','','','','Y','e',433),(0,0,'Medi','Poison','EXAMIN','GLASGOW COMA SCALE',50,'',0,180,'BEHAVIOR',190,'','','','I','',5,'','','','','Y','e',434),(0,0,'Medi','Poison','EXAMIN','GLASGOW COMA SCALE',50,'',0,180,'DELUSION',200,'','','','C','',0,'','','','','Y','',435),(0,0,'Medi','Poison','EXAMIN','GLASGOW COMA SCALE',50,'',0,180,'HALUINATION',195,'','','','C','',0,'','','','','Y','',436),(0,0,'Medi','Poison','EXAMIN','GLASGOW COMA SCALE',50,'',0,180,'MEMORY-PAST & PRESENT',185,'','','','I','',5,'','','','','Y','e',437),(0,0,'Medi','Poison','EXAMIN','GLASGOW COMA SCALE',50,'EVM',0,160,'E',170,'','','','I','',5,'','','','','Y','',438),(0,0,'Medi','Poison','EXAMIN','GLASGOW COMA SCALE',50,'EVM',0,160,'M',180,'','','','I','',5,'','','','','Y','',439),(0,0,'Medi','Poison','EXAMIN','GLASGOW COMA SCALE',50,'EVM',0,160,'V',175,'','','','I','',5,'','','','','Y','',440),(0,0,'Medi','Poison','EXAMIN','GLASGOW COMA SCALE',50,'ORIENTATION TO',0,200,'PERSON',215,'','','','C','',0,'','','','','Y','',441),(0,0,'Medi','Poison','EXAMIN','GLASGOW COMA SCALE',50,'ORIENTATION TO',0,200,'PLACE',210,'','','','C','',0,'','','','','Y','',442),(0,0,'Medi','Poison','EXAMIN','GLASGOW COMA SCALE',50,'ORIENTATION TO',0,200,'TIME',205,'','','','C','',0,'','','','','Y','',443),(0,0,'Medi','Poison','EXAMIN','GLASGOW COMA SCALE',50,'SPEECH',0,220,'APHASIA',220,'','','SENSORY/MOTOR/CENTRAL','O','',0,'','','','','Y','e',444),(0,0,'Medi','Poison','EXAMIN','GLASGOW COMA SCALE',50,'SPEECH',0,220,'DYSARTHRIA',225,'','','','C','',0,'','','','','Y','',445),(0,0,'Medi','Poison','EXAMIN','MANGEMENT',60,'STOMACH WASH',0,0,'DONE BY',5,'','','RYLES TUBE/BOVAS TUBE','O','',0,'','','','','Y','',446),(0,0,'Medi','Poison','EXAMIN','MANGEMENT',60,'STOMACH WASH',0,0,'DONE WITH PLAIN WATER',10,'','','','C','',0,'','','','','Y','',447),(0,0,'Medi','Poison','EXAMIN','MANGEMENT',60,'STOMACH WASH',0,0,'IT CONTAINS',15,'','','','C','',0,'','','','','Y','',448),(0,0,'Medi','Poison','EXAMIN','MANGEMENT',60,'STOMACH WASH',0,0,'ODOUR OF',20,'','','','I','',5,'','','','','Y','',449),(0,0,'Medi','Poison','HIST','ZZ1',5,'',0,0,'HISTORY OF POISON',5,'','','','I','',30,'','','','','Y','',450),(0,0,'Medi','Poison','HIST','ZZ2',10,'',0,0,'NAME OF COMPOUND',10,'','','','I','',30,'','','','','Y','',451),(0,0,'Medi','Poison','HIST','ZZ3',15,'',0,0,'AMOUNT OF COUMPOUND',15,'','','','I','',30,'','','','','Y','',452),(0,0,'Medi','Poison','HIST','ZZ4',20,'',0,0,'TIME OF TAKEN POISON',25,'','','','I','',30,'','','','','Y','',453),(0,0,'Medi','Poison','EXAMIN','SIGN & SYMPTOMS',5,'MUSCARINIC EFFECT',0,5,'SALIVATION',5,'','','','C','',0,'','','','','Y','',454),(0,0,'Medi','Poison','EXAMIN','SIGN & SYMPTOMS',0,'MUSCARINIC EFFECT',0,0,'LACRIMATION',10,'','','','C','',0,'','','','','Y','',455),(0,0,'Medi','Poison','EXAMIN','SIGN & SYMPTOMS',0,'MUSCARINIC EFFECT',0,0,'SWEATING',15,'','','','C','',0,'','','','','Y','',456),(0,0,'Medi','Poison','EXAMIN','SIGN & SYMPTOMS',0,'MUSCARINIC EFFECT',0,0,'MIOSIS',20,'','','','C','',0,'','','','','Y','',457),(0,0,'Medi','Poison','EXAMIN','SIGN & SYMPTOMS',0,'MUSCARINIC EFFECT',0,0,'NAUSEA',25,'','','','C','',0,'','','','','Y','',458),(0,0,'Medi','Poison','EXAMIN','SIGN & SYMPTOMS',0,'MUSCARINIC EFFECT',0,0,'VOMITING',30,'','','','C','',0,'','','','','Y','',459),(0,0,'Medi','Poison','EXAMIN','SIGN & SYMPTOMS',0,'MUSCARINIC EFFECT',0,0,'ABDOMINAL PAIN & CRAMP',35,'','','','C','',0,'','','','','Y','',460),(0,0,'Medi','Poison','EXAMIN','SIGN & SYMPTOMS',0,'MUSCARINIC EFFECT',0,0,'DYSPNOEA',40,'','','','C','',0,'','','','','Y','',461),(0,0,'Medi','Poison','EXAMIN','SIGN & SYMPTOMS',0,'MUSCARINIC EFFECT',0,0,'INVOLUNTARY DEFECATION',45,'','','','C','',0,'','','','','Y','',462),(0,0,'Medi','Poison','EXAMIN','SIGN & SYMPTOMS',0,'MUSCARINIC EFFECT',0,0,'INCONTINANCE',50,'','','','C','',0,'','','','','Y','',463),(0,0,'Medi','Poison','EXAMIN','SIGN & SYMPTOMS',0,'NICOTINIC EFFECT',0,10,'FASCICI LATION',5,'','','','C','',0,'','','','','Y','',464),(0,0,'Medi','Poison','EXAMIN','SIGN & SYMPTOMS',0,'NICOTINIC EFFECT',0,0,'TWITCHING',10,'','','','C','',0,'','','','','Y','',465),(0,0,'Medi','Poison','EXAMIN','SIGN & SYMPTOMS',0,'NICOTINIC EFFECT',0,0,'MUSCLE WEAKNESS',15,'','','','C','',0,'','','','','Y','',466),(0,0,'Medi','ALL','Vitals','ZZ1',1,'BP',0,1,'BP_S',1,'','','','I','',6,'A','','','','Y','',469),(0,0,'Medi','ALL','Vitals','ZZ1',1,'EH_Ht',0,5,'Ht',4,'','','','I','',6,'A','Cms','','','Y','',470),(0,0,'Medi','ALL','Vitals','ZZ1',1,'EH_RBS',0,3,'RBS',1,'','','','I','',6,'N','mg/dl','','','Y','',471),(0,0,'Medi','ALL','Vitals','ZZ1',1,'EH_PR',0,4,'PR',3,'','','','I','',6,'A','bpm','','','Y','',472),(0,0,'Medi','ALL','Vitals','ZZ1',1,'EH_Waist',0,6,'Waist',5,'','','','I','',6,'A','Cms','','','Y','',473),(0,0,'Medi','ALL','Vitals','ZZ1',1,'EH_Temp',0,7,'TP',6,'','','','I','',6,'A','<sup>o</sup>F','','','Y','',474),(0,0,'Medi','ALL','Vitals','ZZ1',1,'EH_RR',0,8,'RR',7,'','','','I','',6,'A','Cpm','','','Y','',475),(0,0,'Medi','ALL','Vitals','ZZ1',1,'EH_SPO2',0,9,'SpO2',8,'','','','I','',6,'A','%','','','Y','',476),(0,0,'Medi','ALL','Vitals','ZZ1',1,'EH_Wt',0,10,'Wt',9,'','','','I','',6,'A','Kgs','','','Y','',477),(0,0,'Medi','ALL','Vitals','ZZ1',1,'EH_HC',0,11,'HC',10,'','','','I','',6,'A','Cms','','','Y','',478),(0,0,'Medi','ALL','Vitals','ZZ1',1,'BP',0,2,'BP_D',2,'','','','I','',6,'N','','','','Y','',479),(0,0,'ENT','Generl','CC','',0,'',0,0,'',1,'','','','','',0,'','','','','N','',480),(0,0,'MED','Generl','CC','',1,'',0,0,'',0,'','','','','',0,'','','','','','',481),(0,0,'SURG','Generl','CC','',1,'',0,0,'',0,'','','','','',0,'','','','','','',482),(0,0,'3','Generl','CC','',1,'',0,0,'',0,'','','','','',0,'','','','','','',483),(0,0,'CRTC1','Generl','CC','',1,'',0,0,'',0,'','','','','',0,'','','','','','',484),(0,0,'VER','Generl','CC','',1,'',0,0,'',0,'','','','','',0,'','','','','','',485),(0,0,'GSURG','Generl','CC','',1,'',0,0,'',0,'','','','','',0,'','','','','','',486),(0,0,'CRTCR','Generl','CC','',0,'',0,0,'',1,'','','','','',0,'','','','','Y','',487),(0,0,'D03','Generl','CC','',0,'',0,0,'',1,'','','','','',0,'','','','','Y','',488),(0,0,'D03','SHLDR','EXAMIN','Inspection',3,'',0,0,'',1,'','','','I','',100,'','','','','Y','',489),(0,0,'D03','SHLDR','EXAMIN','Palpation',4,'Sternoclavicular',0,1,'Dislocated',1,'','','','CI','',0,'','','','','Y','',491),(0,0,'D03','SHLDR','EXAMIN','Palpation',4,'Acromioclavicular',0,2,'Dislocated',1,'','','','CI','',0,'','','','','Y','',493),(0,0,'D03','SHLDR','EXAMIN','Palpation',4,'',0,4,'General ',1,'','','','I','',0,'','','','','Y','',494),(0,0,'D03','SHLDR','EXAMIN','Palpation',4,'Soft Tissue Palpation',0,5,'Rotator Cuff',1,'','','','I','',0,'','','','','Y','',495),(0,0,'D03','SHLDR','EXAMIN','Palpation',4,'Soft Tissue Palpation',0,5,'Subacrominal bursa',1,'','','','I','',0,'','','','','Y','',496),(0,0,'D03','SHLDR','EXAMIN','Palpation',4,'Soft Tissue Palpation',0,5,'Axilla',1,'','','','I','',0,'','','','','Y','',497),(0,0,'D03','SHLDR','EXAMIN','Palpation',4,'Soft Tissue Palpation',0,5,'Muscles',1,'','','','I','',0,'','','','','Y','',498),(0,0,'D03','SHLDR','EXAMIN','Range of Movements',5,'Abduction/Adduction',0,1,'',1,'','','','I','',0,'','','','','Y','',499),(0,0,'D03','SHLDR','EXAMIN','Range of Movements',5,'Flexion/extension',0,2,'',1,'','','','I','',0,'','','','','Y','',500),(0,0,'D03','SHLDR','EXAMIN','Range of Movements',5,'Internal / External Rotation',0,3,'',1,'','','','I','',0,'','','','','Y','',501),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Flexor - Primary',0,2,'Axillary Nerve',1,'','','','I','',40,'','','','','Y','',502),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Flexor - Primary',0,2,'Coracobrachialsis-Musculocutaneous nerve',1,'','','','I','',60,'','','','','Y','',503),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Flexor - Primary',0,2,'Flexion Muscle gradation                                                                   ',4,'','','','OI','',50,'','','','','Y','',504),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Extensors',0,7,'a) Primary',1,'','','','O','',1,'','','','','Y','',507),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Extensors',0,7,'Teres major-lower scapular nerve',1,'','','','I','',60,'','','','','Y','',508),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Extensors',0,7,'Posterior fibers of the deltoid - axillary nerve',1,'','','','I','',60,'','','','','Y','',509),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Extensors',0,7,'b) Secondary',4,'','','','O','',0,'','','','','Y','',510),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Extensors',0,7,'teres minor - Triceps (Long head)',5,'','','','I','',0,'','','','','Y','',511),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Extensors',0,7,'Muscle Gradation',1,'','','','OI','',0,'','','','','Y','',512),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Abduction',0,8,'Primary',1,'','','','I','',0,'','','','','Y','',513),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Abduction',0,8,'Secondary',1,'','','','I','',0,'','','','','Y','',514),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Adduction',0,9,'Primary',1,'','','','I','',0,'','','','','Y','',515),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Adduction',0,9,'Secondary',1,'','','','I','',0,'','','','','Y','',516),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'External Rotation',0,10,'Primary',1,'','','','I','',0,'','','','','Y','',517),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'External Rotation',0,10,'Secondary',1,'','','','I','',0,'','','','','Y','',518),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Internal rotations',0,11,'Primary',1,'','','','I','',0,'','','','','Y','',519),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Internal rotations',0,11,'Secondary',2,'','','','I','',0,'','','','','Y','',520),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Scapular elevation',0,12,'Primary',1,'','','','I','',0,'','','','','Y','',521),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Scapular elevation',0,12,'Secondary',1,'','','','I','',0,'','','','','Y','',522),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Scapular retraction',0,13,'Primary',1,'','','','I','',0,'','','','','Y','',523),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Scapular retraction',0,13,'Secondary',2,'','','','I','',0,'','','','','Y','',524),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Scapular Protracion',0,14,'Primary',1,'','','','I','',0,'','','','','Y','',525),(0,0,'D03','SHLDR','EXAMIN','Neurologic',6,'Scapular Protracion',0,14,'Secondary',1,'','','','I','',0,'','','','','Y','',526),(0,0,'D03','SHLDR','EXAMIN','Reflex Testing',7,'',0,0,'Both muscles, biceps and triceps',1,'','','','I','',70,'','','','','Y','',527),(0,0,'D03','SHLDR','EXAMIN','Sensation Testing',8,'Lateral arm',0,1,'',1,'','','','I','',0,'','','','','Y','',528),(0,0,'D03','SHLDR','EXAMIN','Sensation Testing',8,'Medical arm',0,2,'',1,'','','','I','',0,'','','','','Y','',529),(0,0,'D03','SHLDR','EXAMIN','Sensation Testing',8,'Axilla',0,3,'',1,'','','','I','',0,'','','','','Y','',530),(0,0,'D03','SHLDR','EXAMIN','Sensation Testing',8,'Area from axilla to the nipple',0,4,'',1,'','','','I','',0,'','','','','Y','',531),(0,0,'D03','SHLDR','EXAMIN','Sensation Testing',8,'Nipple',0,5,'',1,'','','','I','',0,'','','','','Y','',532),(0,0,'D03','SHLDR','EXAMIN','Special Tests',9,'Yergasan Test',0,1,'',1,'','','','I','',0,'','','','','Y','',533),(0,0,'D03','SHLDR','EXAMIN','Special Tests',9,'Drop arm test',0,2,'',1,'','','','I','',0,'','','','','Y','',534),(0,0,'D03','SHLDR','EXAMIN','Special Tests',9,'Apprehension test',0,1,'',1,'','','','I','',0,'','','','','Y','',535),(0,0,'D03','SHLDR','EXAMIN','Related Areas',10,'Scapular disorder',0,1,'Sprangel shoulder',1,'','','','I','',70,'','','','','Y','',536),(0,0,'D03','SHLDR','EXAMIN','Related Areas',10,'Scapular disorder',0,1,'Winged scapula',1,'','','','I','',70,'','','','','Y','',537),(0,0,'D03','SHLDR','EXAMIN','Related Areas',10,'Scapular disorder',0,1,'Grating Scapula',1,'','','','I','',70,'','','','','Y','',538),(0,0,'D03','SHLDR','EXAMIN','Related Areas',10,'Tuberculosis of the shoulder',0,2,'',1,'','','','I','',80,'','','','','Y','',539),(0,0,'D03','SHLDR','EXAMIN','Related Areas',10,'Musculotendinous cuff lesions',0,3,'',1,'','','','I','',80,'','','','','Y','',540),(0,0,'D03','SHLDR','EXAMIN','Related Areas',10,'Frozen shoulder',0,4,'',1,'','','','I','',80,'','','','','Y','',541),(0,0,'D03','SHLDR','EXAMIN','Related Areas',10,'Supraspinatus tears',0,5,'',1,'','','','I','',0,'','','','','Y','',542),(0,0,'D03','SHLDR','EXAMIN','Related Areas',10,'Lesions of the biceps tendon',0,6,'Tendintis',1,'','','','I','',70,'','','','','Y','',543),(0,0,'D03','SHLDR','EXAMIN','Related Areas',10,'Lesions of the biceps tendon',0,6,'Reptured biceps tendon',1,'','','','I','',70,'','','','','Y','',544),(0,0,'D03','SHLDR','EXAMIN','Related Areas',10,'Brachial neuralgia',0,7,'Disorder around the shoulder',1,'','','','I','',70,'','','','','Y','',545),(0,0,'D03','SHLDR','EXAMIN','Related Areas',10,'Brachial neuralgia',0,7,'Disorder proximal to the shoulder',1,'','','','I','',70,'','','','','Y','',546),(0,0,'D03','SHLDR','EXAMIN','Related Areas',10,'Brachial neuralgia',0,7,'Disorders distal to the shoulder',1,'','','','I','',70,'','','','','Y','',547),(0,0,'D03','SHLDR','EXAMIN','Neurologic',0,'Flexor - Secondary',0,3,'Biceps',1,'','','','I','',0,'','','','','Y','',548),(0,0,'D03','SHLDR','EXAMIN','Neurologic',0,'Flexor - Secondary',0,3,'Anterior fibres of deltoid',1,'','','','I','',0,'','','','','Y','',549),(0,0,'Selec','Select','EXAMIN','Inspection',1,'Carrying Angle',0,1,'in Degree',1,'','','','I','',0,'','','','','Y','',550),(0,0,'Selec','Select','EXAMIN','Inspection',0,'Cubitus valgus / Gunstock Defo',0,2,'',1,'','','','OI','',0,'','','','','Y','',551),(0,0,'Selec','Select','EXAMIN','Inspection',0,'Swelling around Elbow',0,3,'',1,'','','','OI','',0,'','','','','Y','',552),(0,0,'Selec','Select','EXAMIN','Inspection',0,'Scars',0,4,'Seen',1,'','','','CI','',0,'','','','','Y','',553),(0,0,'D03','Elbow','EXAMIN','Inspection',0,'Elbow Joint',0,1,'Carrying Angle',1,'','','','I','',3,'','','','','Y','',555),(0,0,'D03','Elbow','EXAMIN','Inspection',0,'Elbow Joint',0,1,'Cubitus valgus',1,'','','','CI','',0,'','','','','Y','',556),(0,0,'D03','Elbow','EXAMIN','Inspection',0,'Elbow Joint',0,1,'Swelling',1,'','','','OI','',0,'','','','','Y','',557),(0,0,'D03','Elbow','EXAMIN','Inspection',0,'Elbow Joint',0,1,'Scars',1,'','','','CI','',0,'','','','','Y','',558),(0,0,'D03','Elbow','EXAMIN','Palpation',1,'',0,0,'Crepitus',1,'','','','CI','',0,'','','','','Y','',559),(0,0,'D03','Elbow','EXAMIN','Palpation',1,'',0,0,'Median Nerve Compression',1,'','','','CI','',0,'','','','','Y','',560),(0,0,'D03','Elbow','EXAMIN','Palpation',0,'General',0,1,'',1,'','','','I','',0,'','','','','Y','',561),(0,0,'D03','Elbow','EXAMIN','Range of Motion',2,'',0,0,'Infection in hand?',1,'','','','CI','',0,'','','','','Y','',562),(0,0,'D03','Elbow','EXAMIN','Range of Motion',2,'',0,0,'Infection in arm',2,'','','','CI','',0,'','','','','Y','',563),(0,0,'D03','Elbow','EXAMIN','Range of Motion',0,'Range of movement',0,1,'Active',1,'','','','CI','',0,'','','','','Y','',564),(0,0,'D03','Elbow','EXAMIN','Range of Motion',0,'Range of movement',0,1,'Passive',1,'','','','CI','',0,'','','','','Y','',565),(0,0,'D03','Elbow','EXAMIN','Range of Motion',0,'General',0,3,'',1,'','','','I','',0,'','','','','Y','',566),(0,0,'D03','Elbow','EXAMIN','Neurologic',3,'Muscle Testing',0,1,'Flexors - Primary ',1,'','','','I','',0,'','','','','Y','',567),(0,0,'D03','Elbow','EXAMIN','Neurologic',3,'Muscle Testing',0,1,'Flexors - Secondary ',1,'','','','I','',0,'','','','','Y','',568),(0,0,'D03','Elbow','EXAMIN','Neurologic',3,'Muscle Testing',0,1,'Extensor - Primary ',1,'','','','I','',0,'','','','','Y','',569),(0,0,'D03','Elbow','EXAMIN','Neurologic',3,'Muscle Testing',0,1,'Extensor - Secondary ',1,'','','','I','',0,'','','','','Y','',570),(0,0,'D03','Elbow','EXAMIN','Neurologic',3,'Muscle Testing',0,1,'Supinators - Primary',5,'','','','I','',0,'','','','','Y','',571),(0,0,'D03','Elbow','EXAMIN','Neurologic',3,'Muscle Testing',0,1,'Supinators - Secondary',6,'','','','I','',0,'','','','','Y','',572),(0,0,'D03','Elbow','EXAMIN','Neurologic',3,'Muscle Testing',0,1,'Pronators - Primary',7,'','','','I','',0,'','','','','Y','',573),(0,0,'D03','Elbow','EXAMIN','Neurologic',0,'Reflex Testing',0,2,'Biceps',1,'','','','I','',0,'','','','','Y','',574),(0,0,'D03','Elbow','EXAMIN','Neurologic',0,'Reflex Testing',0,2,'Brachioradialis',1,'','','','I','',0,'','','','','Y','',575),(0,0,'D03','Elbow','EXAMIN','Neurologic',0,'Reflex Testing',0,2,'Triceps',2,'','','','I','',0,'','','','','Y','',576),(0,0,'D03','Elbow','EXAMIN','Neurologic',0,'Sensation Testing',0,3,'',1,'','','','I','',0,'','','','','Y','',577),(0,0,'D03','Elbow','EXAMIN','Neurologic',0,'Special Test',0,4,'',1,'','','','I','',0,'','','','','Y','',578),(0,0,'D03','Elbow','EXAMIN','Neurologic',0,'Related Areas',0,5,'Elbow Dformities',1,'','','','OI','',0,'','','','','Y','',579),(0,0,'D03','Elbow','EXAMIN','Neurologic',0,'Related Areas',0,5,'Stiffness of Elbows (Posttraumatic , Tuberculosis, Osteoarthritis )',4,'','','','I','',0,'','','','','Y','',580),(0,0,'D03','Elbow','EXAMIN','Neurologic',0,'Related Areas',0,5,'Flailness of Elbow ',1,'','','','I','',0,'','','','','Y','',581),(0,0,'D03','Elbow','EXAMIN','Neurologic',0,'Related Areas',0,5,'Other Disorders (Tennis, Sports)',1,'','','','I','',0,'','','','','Y','',582),(0,0,'D03','Elbow','EXAMIN','Neurologic',0,'Related Areas',0,5,'Loose Bodies',2,'','','','I','',0,'','','','','Y','',583),(0,0,'D03','Elbow','EXAMIN','Neurologic',0,'Related Areas',0,5,'Nerve Lessons',1,'','','','I','',0,'','','','','Y','',584),(0,0,'D03','Knee','EXAMIN','Inspection',1,'Swelling',0,1,'Generalized',1,'','','','CI','',0,'','','','','Y','',585),(0,0,'D03','Knee','EXAMIN','Inspection',1,'Swelling',0,1,'Prepatellar bursitis',1,'','','','CI','',0,'','','','','Y','',586),(0,0,'D03','Knee','EXAMIN','Inspection',1,'Swelling',0,1,'Infrapatellar bursitis',2,'','','','CI','',0,'','','','','Y','',587),(0,0,'D03','Knee','EXAMIN','Inspection',1,'Swelling',0,1,'Pes anserinus',3,'','','','CI','',0,'','','','','Y','',588),(0,0,'D03','Knee','EXAMIN','Palpation',2,'General',0,1,'',1,'','','','I','',0,'','','','','Y','',589),(0,0,'D03','Knee','EXAMIN','Medial Test',3,'Medial tibial plateau',0,1,'',1,'','','','I','',0,'','','','','Y','',590),(0,0,'D03','Knee','EXAMIN','Medial Test',3,'Tibial Tubercle',0,2,'',1,'','','','I','',0,'','','','','Y','',591),(0,0,'D03','Knee','EXAMIN','Medial Test',3,'Medial femoral condyle',0,3,'',1,'','','','I','',0,'','','','','Y','',592),(0,0,'D03','Knee','EXAMIN','Medial Test',3,'Adductor tubercle',0,4,'',1,'','','','I','',0,'','','','','Y','',593),(0,0,'D03','Knee','EXAMIN','Lateral Aspect',4,'Tibial plateau',0,1,'',1,'','','','I','',0,'','','','','Y','',594),(0,0,'D03','Knee','EXAMIN','Lateral Aspect',4,'Tubercle',0,2,'',1,'','','','I','',0,'','','','','Y','',595),(0,0,'D03','Knee','EXAMIN','Lateral Aspect',4,'Femoral condyle',0,3,'',1,'','','','I','',0,'','','','','Y','',596),(0,0,'D03','Knee','EXAMIN','Lateral Aspect',4,'Femoral epicondyle',0,4,'',1,'','','','I','',0,'','','','','Y','',597),(0,0,'D03','Knee','EXAMIN','Lateral Aspect',4,'Head of the Fiula',0,5,'',1,'','','','I','',0,'','','','','Y','',598),(0,0,'D03','Knee','EXAMIN','Trochlear Groove and Pattela',5,'',0,0,'',1,'','','','I','',0,'','','','','Y','',599),(0,0,'D03','Knee','EXAMIN','Soft Tissue Palpation',6,'Zone I: Anterior aspect',0,2,'',1,'','','','I','',0,'','','','','Y','',600),(0,0,'D03','Knee','EXAMIN','Soft Tissue Palpation',6,'Zone II: Medial aspect',0,2,'',1,'','','','I','',0,'','','','','Y','',601),(0,0,'D03','Knee','EXAMIN','Soft Tissue Palpation',6,'Zone III: Lateral aspect',0,3,'',1,'','','','I','',0,'','','','','Y','',602),(0,0,'D03','Knee','EXAMIN','Soft Tissue Palpation',6,'Zone IV: Posterior aspect',0,4,'',1,'','','','I','',0,'','','','','Y','',603),(0,0,'D03','Knee','EXAMIN','Joint Stability Test',7,'Collateral ligaments',0,1,'',1,'','','','I','',0,'','','','','Y','',604),(0,0,'D03','Knee','EXAMIN','Joint Stability Test',7,'Cruciate ligaments',0,2,'',1,'','','','I','',0,'','','','','Y','',605),(0,0,'D03','Knee','EXAMIN','Range of Motion',8,'Active Range Movement',0,1,'Flexion',1,'','','','I','',0,'','','','','Y','',606),(0,0,'D03','Knee','EXAMIN','Range of Motion',8,'Active Range Movement',0,1,'Extension',1,'','','','I','',0,'','','','','Y','',607),(0,0,'D03','Knee','EXAMIN','Range of Motion',8,'Active Range Movement',0,1,'Internal and External rotations',1,'','','','I','',0,'','','','','Y','',608),(0,0,'D03','Knee','EXAMIN','Range of Motion',8,'Passive range movement',0,2,'Flexion',1,'','','','I','',0,'','','','','Y','',609),(0,0,'D03','Knee','EXAMIN','Range of Motion',8,'Passive range movement',0,2,'Extension',2,'','','','I','',0,'','','','','Y','',610),(0,0,'D03','Knee','EXAMIN','Range of Motion',8,'Passive range movement',0,2,'Internal and External rotation',3,'','','','I','',0,'','','','','Y','',611),(0,0,'D03','Knee','EXAMIN','Neurologic',9,'Muscle Testing',0,1,'Extension',1,'','','','I','',0,'','','','','Y','',612),(0,0,'D03','Knee','EXAMIN','Neurologic',9,'Muscle Testing',0,1,'Flexion',1,'','','','I','',0,'','','','','Y','',613),(0,0,'D03','Knee','EXAMIN','Sensation Testing',10,'L4',0,1,'',1,'','','','I','',0,'','','','','Y','',614),(0,0,'D03','Knee','EXAMIN','Sensation Testing',10,'L3',0,2,'',1,'','','','I','',0,'','','','','Y','',615),(0,0,'D03','Knee','EXAMIN','Sensation Testing',10,'L2',0,3,'',1,'','','','I','',0,'','','','','Y','',616),(0,0,'D03','Knee','EXAMIN','Sensation Testing',10,'S2',0,4,'',1,'','','','I','',0,'','','','','Y','',617),(0,0,'D03','Knee','EXAMIN','Reflex Testing',11,'',0,0,'',1,'','','','I','',0,'','','','','Y','',618),(0,0,'D03','Knee','EXAMIN','Special Tests',12,'McMurray Test',0,1,'',1,'','','','CI','',0,'','','','','Y','',619),(0,0,'D03','Knee','EXAMIN','Special Tests',12,'Apley compression or grinding ',0,2,'',1,'','','','CI','',0,'','','','','Y','',620),(0,0,'D03','Knee','EXAMIN','Special Tests',12,'Distraction Test',0,3,'',1,'','','','CI','',0,'','','','','Y','',621),(0,0,'D03','Knee','EXAMIN','Special Tests',12,'Reduction Click',0,4,'',1,'','','','CI','',0,'','','','','Y','',622),(0,0,'D03','Knee','EXAMIN','Special Tests',12,'Bounce Home Test',0,5,'',1,'','','','CI','',0,'','','','','Y','',623),(0,0,'D03','Knee','EXAMIN','Special Tests',12,'Patella femoral grinding test',0,6,'',1,'','','','CI','',0,'','','','','Y','',624),(0,0,'D03','Knee','EXAMIN','Special Tests',12,'Apprehension Test',0,7,'',1,'','','','CI','',0,'','','','','Y','',625),(0,0,'D03','Knee','EXAMIN','Special Tests',12,'Tinnel Sign',0,8,'',1,'','','','CI','',0,'','','','','Y','',626),(0,0,'D03','Knee','EXAMIN','Special Tests',12,'Knee joint effusion ',0,9,'',1,'','','','CI','',0,'','','','','Y','',627),(0,0,'D03','Knee','EXAMIN','Special Tests',12,'Minor effusion test',0,10,'',1,'','','','CI','',0,'','','','','Y','',628),(0,0,'D03','Knee','EXAMIN','Related Areas',13,'Deformities of Knee',0,1,'Knock Knee or genu valgum',1,'','','','CI','',0,'','','','','Y','',630),(0,0,'D03','Knee','EXAMIN','Related Areas',13,'Deformities of Knee',0,1,'Bow legs (genu varum)',1,'','','','CI','',0,'','','','','Y','',631),(0,0,'D03','Knee','EXAMIN','Related Areas',13,'Deformities of Knee',0,1,'Hyperextension of the knee (genu recurvatum)',1,'','','','CI','',0,'','','','','Y','',632),(0,0,'D03','Knee','EXAMIN','Related Areas',0,'Swelling of the Knee',0,2,'Traumatic synovitis',1,'','','','CI','',0,'','','','','Y','',633),(0,0,'D03','Knee','EXAMIN','Related Areas',0,'Swelling of the Knee',0,2,'Nontraumatic synovitis',2,'','','','CI','',0,'','','','','Y','',634),(0,0,'D03','Knee','EXAMIN','Related Areas',0,'Swelling of the Knee',0,2,'Hemarthrosis',3,'','','','CI','',0,'','','','','Y','',635),(0,0,'D03','Knee','EXAMIN','Related Areas',0,'Swelling of the Knee',0,2,'Tuberculosis of the knee joint',4,'','','','CI','',0,'','','','','Y','',636),(0,0,'D03','Knee','EXAMIN','Related Areas',0,'Ligament injuries',0,3,'',1,'','','','CI','',0,'','','','','Y','',637),(0,0,'D03','Knee','EXAMIN','Related Areas',0,'Meniscal injuries',0,4,'Torn Medial meniscus',1,'','','','CI','',0,'','','','','Y','',638),(0,0,'D03','Knee','EXAMIN','Related Areas',0,'Meniscal injuries',0,4,'Other meniscal lesions',2,'','','','CI','',0,'','','','','Y','',639),(0,0,'D03','Knee','EXAMIN','Related Areas',0,'Extensor mechanism lesions',0,5,'Strains, Avulsions, Ruptures',1,'','','','CI','',0,'','','','','Y','',640),(0,0,'D03','Knee','EXAMIN','Related Areas',0,'Extensor mechanism lesions',0,5,'Recurrent dislocation of patella',2,'','','','CI','',0,'','','','','Y','',641),(0,0,'D03','Knee','EXAMIN','Related Areas',0,'Extensor mechanism lesions',0,5,'Chondromalacia patellae',3,'','','','CI','',0,'','','','','Y','',642),(0,0,'D03','Knee','EXAMIN','Related Areas',0,'Extensor mechanism lesions',0,5,'Quadriceps contracture ',4,'','','','CI','',0,'','','','','Y','',643),(0,0,'D03','Knee','EXAMIN','Related Areas',0,'Other disorders',0,6,'Bursae',1,'','','','CI','',0,'','','','','Y','',644),(0,0,'D03','Knee','EXAMIN','Related Areas',0,'Other disorders',0,6,'Loose bodies',1,'','','','CI','',0,'','','','','Y','',645),(0,0,'D03','Knee','EXAMIN','Related Areas',0,'Other disorders',0,6,'Osteochondritis dissecans',2,'','','','CI','',0,'','','','','Y','',646),(0,0,'D03','Knee','EXAMIN','Related Areas',0,'Other disorders',0,6,'Charcot',4,'','','','CI','',0,'','','','','Y','',647),(0,0,'D03','Knee','EXAMIN','Related Areas',0,'Other disorders',0,6,'Osteoarthritis of the knee',3,'','','','CI','',0,'','','','','Y','',648),(0,0,'D03','Knee','EXAMIN','Related Areas',0,'Other disorders',0,6,'Synovial Osteochondromatosis',5,'','','','CI','',0,'','','','','Y','',649),(0,0,'D03','Knee','CC','Pain',1,'',0,0,'Lateral - rotator cuff',1,'','','','CI','',0,'','','','','Y','',650),(0,0,'D03','Knee','CC','Pain',1,'',0,0,'Anterior â€“biceps ',1,'','','','CI','',0,'','','','','Y','',651),(0,0,'D04','PNC','EXAMIN','P/A',2,'',0,2,'ZZ1',2,'','','','I','',30,'','','','','Y','',653),(0,0,'D04','PNC','EXAMIN','P/V',4,'',0,0,'ZZ1',2,'','','','I','',30,'','','','','Y','',654),(0,0,'D04','PNC','EXAMIN','P/V',4,'ZZ4',0,6,'Rt Adnexa',2,'','','','I','',0,'','','','','Y','',655),(0,0,'D04','PNC','EXAMIN','P/V',4,'ZZ5',0,8,'Lf Adnexa',2,'','','','I','',0,'','','','','Y','',656),(0,0,'D04','PNC','EXAMIN','P/S',6,'',0,0,'ZZ1',2,'','','','I','',30,'','','','','Y','',657),(0,0,'D04','PNC','EXAMIN','P/R',8,'',0,0,'ZZ1',2,'','','','I','',30,'','','','','Y','',658),(0,0,'D04','PNC','EXAMIN','RS',10,'',0,0,'ZZ1',2,'','','','I','',30,'','','','','Y','',659),(0,0,'D04','PNC','EXAMIN','CVS',12,'',0,0,'ZZ1',2,'','','','I','',30,'','','','','Y','',660),(0,0,'D04','PNC','EXAMIN','CNS',14,'',0,0,'ZZ1',2,'','','','I','',30,'','','','','Y','',661),(0,0,'D04','PNC','EXAMIN','P/V',4,'ZZ2',0,2,'Uterine Size',1,'','','','O','',0,'','','','','Y','',662),(0,0,'D04','PNC','EXAMIN','P/V',4,'ZZ3',0,4,'Uterine Position',1,'','','','O','',0,'','','','','Y','',663),(0,0,'D04','PNC','EXAMIN','P/S',6,'ZZ2',0,2,'Cervix',1,'','','','O','',0,'','','','','Y','',664),(0,0,'D04','PNC','EXAMIN','P/S',6,'ZZ3',0,4,'Vaginal Discharge',1,'','','','O','',0,'','','','','Y','',665),(0,0,'D04','PNC','CC','',10,'',0,0,'',0,'','','','','',0,'','','','','N','',666),(0,0,'D04','GYNAC','EXAMIN','P/A',2,'',0,2,'ZZ1',2,'','','','I','',30,'','','','','Y','',667),(0,0,'D04','GYNAC','EXAMIN','P/V',4,'',0,0,'ZZ1',2,'','','','I','',30,'','','','','Y','',668),(0,0,'D04','GYNAC','EXAMIN','P/V',4,'ZZ4',0,6,'Rt Adnexa',2,'','','','I','',0,'','','','','Y','',669),(0,0,'D04','GYNAC','EXAMIN','P/V',4,'ZZ5',0,8,'Lf Adnexa',2,'','','','I','',0,'','','','','Y','',670),(0,0,'D04','GYNAC','EXAMIN','P/S',6,'',0,0,'ZZ1',2,'','','','I','',30,'','','','','Y','',671),(0,0,'D04','GYNAC','EXAMIN','P/R',8,'',0,0,'ZZ1',2,'','','','I','',30,'','','','','Y','',672),(0,0,'D04','GYNAC','EXAMIN','RS',10,'',0,0,'ZZ1',2,'','','','I','',30,'','','','','Y','',673),(0,0,'D04','GYNAC','EXAMIN','CVS',12,'',0,0,'ZZ1',2,'','','','I','',30,'','','','','Y','',674),(0,0,'D04','GYNAC','EXAMIN','CNS',14,'',0,0,'ZZ1',2,'','','','I','',30,'','','','','Y','',675),(0,0,'D04','GYNAC','EXAMIN','Abdomen',16,'',0,0,'./../../img/enc_sketch/abdomen.PNG',1,'','','','IM','',0,'','','','','N','',676),(0,0,'D04','GYNAC','EXAMIN','P/A',2,'ZZ2',0,6,'Rt Adnexa',2,'','','','I','',15,'A','','','','Y','',677),(0,0,'D04','GYNAC','EXAMIN','P/A',2,'ZZ3',0,7,'Lf Adnexa',2,'','','','I','',15,'A','','','','Y','',678),(0,0,'D04','GYNAC','EXAMIN','P/V',4,'ZZ2',0,2,'Uterine Size',1,'','','','O','',0,'','','','','Y','',679),(0,0,'D04','GYNAC','EXAMIN','P/V',4,'ZZ3',0,4,'Uterine Position',1,'','','','O','',0,'','','','','Y','',680),(0,0,'D04','GYNAC','EXAMIN','P/S',6,'ZZ2',0,2,'Cervix',1,'','','','O','',0,'','','','','Y','',681),(0,0,'D04','GYNAC','EXAMIN','P/S',6,'ZZ3',0,4,'Vaginal Discharge',1,'','','','O','',0,'','','','','Y','',682),(0,0,'D04','GYNAC','EXAMIN','P/A',2,'ZZ1',0,4,'Uterine Position',1,'','','','O','',0,'','','','','Y','',683),(0,0,'D04','GYNAC','EXAMIN','P/A',2,'ZZ4',0,11,'Uterine Size',1,'','','','O','',0,'','','','','Y','',684),(0,0,'D04','GYNAC','EXAMIN','TAS',116,'',0,0,'ZZ1',2,'','','','I','',0,'','','','','Y','',685),(0,0,'D04','GYNAC','EXAMIN','TVS',118,'',0,0,'ZZ1',2,'','','','I','',0,'','','','','Y','',686),(0,0,'D04','GYNAC','CC','',10,'',0,0,'',0,'','','','I','',5,'','','','','N','',687),(0,0,'D04','Generl','CC','',0,'',0,0,'',1,'','','','','',0,'','','','','N','',688),(0,0,'D04','ANC','EXAMIN','P/A',0,'ZZ5',0,13,'Foetal Heart Sound(Per Minute)',4,'','','','I','',5,'N','','120-160','','Y','',689),(0,0,'D04','ANC','EXAMIN','TAS',116,'',0,0,'ZZ1',2,'','','','I','',30,'','','','','Y','',690),(0,0,'D04','ANC','EXAMIN','TVS',118,'',0,0,'ZZ1',2,'','','','I','',30,'','','','','Y','',691),(0,0,'D04','ANC','EXAMIN','Breast Examination',114,'',0,0,'./../../img/enc_sketch/breast_exam.PNG',1,'','','','IM','',0,'','','','','N','',692),(0,0,'D04','ANC','EXAMIN','P/V',2,'ZZ1',0,10,'Cervix',1,'','','Normal/Erosion/Polyp','O','',0,'','','','','Y','',693),(0,0,'D04','ANC','EXAMIN','P/V',2,'ZZ2',0,17,'Vaginal Discharge',1,'','','White/Mix/Purulent/Foul Smelling','O','',0,'','','','','Y','',694),(0,0,'D04','ANC','EXAMIN','P/A',0,'ZZ2',0,11,'Presentation',1,'','','','O','',0,'','','','','Y','',695),(0,0,'D04','ANC','EXAMIN','P/A',0,'ZZ5',0,13,'Foetal Movement',4,'','','','O','',0,'','','','','Y','',696),(0,0,'D04','ANC','EXAMIN','P/V',2,'Cervical',0,12,'Ext OS',3,'','','','O','',0,'','','','','Y','',697),(0,0,'D04','ANC','EXAMIN','P/V',2,'Cervical',0,12,'Int OS',5,'','','','O','',0,'','','','','Y','',698),(0,0,'D04','ANC','EXAMIN','P/V',2,'Cervical',0,12,'Length',6,'','','','O','',0,'','','','','Y','',699),(0,0,'D04','ANC','EXAMIN','P/V',2,'Cervical',0,12,'Leaking',7,'','','','O','',0,'','','','','Y','',700),(0,0,'D04','ANC','EXAMIN','P/V',2,'Cervical',0,12,'Show',8,'','','','O','',0,'','','','','Y','',701),(0,0,'D04','ANC','EXAMIN','P/V',2,'Cervical',0,12,'Bleeding',9,'','','','O','',0,'','','','','Y','',702),(0,0,'D04','ANC','EXAMIN','P/A',0,'',0,7,'ZZ1',7,'','','','I','',30,'','','','','Y','',703),(0,0,'D04','ANC','EXAMIN','P/R',6,'',0,5,'ZZ1',4,'','','','I','',30,'','','','','Y','',704),(0,0,'D04','ANC','EXAMIN','RS',8,'',0,5,'ZZ1',9,'','','','I','',30,'','','','','Y','',705),(0,0,'D04','ANC','EXAMIN','CNS',112,'',0,5,'ZZ1',27,'','','','I','',30,'','','','','Y','',706),(0,0,'D04','ANC','EXAMIN','P/V',2,'',0,5,'ZZ1',2,'','','','I','',30,'','','','','Y','',707),(0,0,'D04','ANC','EXAMIN','P/S',4,'',0,5,'ZZ1',2,'','','','I','',30,'','','','','Y','',708),(0,0,'D04','ANC','EXAMIN','CVS',110,'',0,0,'ZZ1',17,'','','','I','',30,'','','','','Y','',709),(0,0,'D04','ALL','HIST','Past History',86,'',0,0,'ZZ1',2,'','','','I','',30,'','','','','Y','',710),(0,0,'D04','ALL','HIST','Family History',84,'',0,0,'ZZ1',2,'','','','I','',30,'','','','','Y','',711),(0,0,'D04','All','DIAG','Confirm',2,'',0,0,'ZZ2',2,'','','','I','',75,'','','','','Y','',712),(0,0,'D04','All','EXAMIN','Abdomen',16,'',0,0,'./../../img/enc_sketch/abdomen.PNG',1,'','','','IMG','',0,'','','','','Y','',713),(0,0,'D04','All','EXAMIN','Breast Examination',114,'',0,0,'./../../img/enc_sketch/breast_exam.PNG',1,'','','','IMG','',0,'','','','','Y','',714),(0,0,'D04','ALL','HIST','GAPL',40,'',0,20,'A',4,'','','','I','',5,'N','','','','Y','c',715),(0,0,'D04','ALL','HIST','GAPL',40,'',0,20,'P',6,'','','','I','',5,'N','','','','Y','c',716),(0,0,'D04','ALL','HIST','GAPL',40,'',0,20,'L',8,'','','','I','',5,'N','','','','Y','c',717),(0,0,'D04','ALL','HIST','Past Obstetric',70,'History',0,40,'ND',1,'','','','CI','',30,'C','','','','Y','c',718),(0,0,'D04','ALL','HIST','Past Obstetric',70,'History',0,40,'LSCS',1,'','','','CI','',30,'C','','','','Y','c',719),(0,0,'D04','ALL','HIST','Present Obstetric',80,'Condition',0,60,'Normal',45,'','','','C','',0,'','','','','Y','c',720),(0,0,'D04','ALL','HIST','Present Obstetric',80,'Condition',0,60,'High-risk',50,'','','','C','',0,'','','','','Y','c',721),(0,0,'D04','ALL','HIST','Medical History',82,'',0,80,'ZZ1',4,'','','','I','',30,'','','','','Y','c',722),(0,0,'D04','ALL','HIST','GAPL',40,'',0,20,'E',10,'','','','I','',5,'N','','','','Y','',723),(0,0,'D04','ALL','HIST','GAPL',40,'',0,20,'T',12,'','','','I','',5,'N','','','','Y','',724),(0,0,'D04','All','DIAG','Provisional',0,'',0,0,'ZZ1',2,'','','','I','',75,'','','','','Y','',725),(0,0,'D04','ALL','HIST','GAPL',0,'',0,0,'G',2,'','','','I','',5,'N','','','','Y','',726),(0,0,'D05','PED1','HIST','Maternal',1,'Pregnancy',0,1,'DOB',1,'','','','I','',0,'A','','','','Y','',727),(0,0,'D05','PED1','HIST','Maternal',1,'Pregnancy',0,1,'Time of Birth',2,'','','','I','',0,'A','','','','Y','',728),(0,0,'D05','PED1','HIST','Maternal',1,'Pregnancy',0,1,'Delivery Type',1,'','','','O','',0,'','','','','Y','',729),(0,0,'D05','PED1','HIST','Maternal',1,'Pregnancy',0,1,'Complications?',1,'','','','CI','',0,'','','','','Y','',730),(0,0,'D05','PED1','HIST','Maternal',1,'Pregnancy',0,1,'Breech',1,'','','','I','',0,'A','','','','Y','',731),(0,0,'D05','PED1','HIST','Maternal',1,'Pregnancy',0,1,'neonatal infection - Risk factor',1,'','','','I','',0,'A','','','','Y','',732),(0,0,'D05','PED1','HIST','Maternal',1,'Pregnancy',0,1,'ï‚§	Abnormalities noted on antenatal scans',1,'','','','CI','',0,'A','','','','Y','',733),(0,0,'D05','PED1','HIST','Maternal',1,'Family',0,2,'Hearing problems',1,'','','','CI','',0,'A','','','','Y','',734),(0,0,'D05','PED1','HIST','Maternal',1,'Family',0,2,'Hip dislocation',1,'','','','CI','',0,'A','','','','Y','',735),(0,0,'D05','PED1','HIST','Maternal',1,'Family',0,2,'Childhood heart problems',3,'','','','CI','',0,'A','','','','Y','',736),(0,0,'D05','PED1','HIST','Maternal',1,'Family',0,2,'Congenital cataracts',1,'','','','CI','',0,'A','','','','Y','',737),(0,0,'D05','PED1','HIST','Maternal',1,'Family',0,2,'Renal problems',1,'','','','CI','',0,'A','','','','Y','',738),(0,0,'D05','PED1','HIST','Maternal',1,'New Born',0,3,'Feeding pattern',1,'','','','I','',0,'A','','','','Y','',739),(0,0,'D05','PED1','HIST','Maternal',1,'New Born',0,3,'Urination',2,'','','','I','',0,'A','','','','Y','',740),(0,0,'D05','PED1','HIST','Maternal',1,'New Born',0,3,'passing of meconium',3,'','','','I','',0,'A','','','','Y','',741),(0,0,'D05','PED1','HIST','Maternal',1,'New Born',0,3,'Parental concerns',1,'','','','CI','',0,'A','','','','Y','',742),(0,0,'D05','PED1','EXAMIN','General',2,'Posture',0,4,'',1,'','','','I','',0,'A','','','','Y','',743),(0,0,'D05','PED1','EXAMIN','General',0,'Cry Volume',0,2,'',1,'','','','O','',0,'','','','','Y','',744),(0,0,'D05','PED1','EXAMIN','General',0,'Tone',0,3,'',1,'','','','I','',50,'A','','','','Y','',745),(0,0,'D05','PED1','EXAMIN','General',0,'Head',0,5,'Size',1,'','','','I','',0,'A','','','','Y','',746),(0,0,'D05','PED1','EXAMIN','General',0,'Head',0,5,'Shape',1,'','','','I','',30,'A','','','','Y','',747),(0,0,'D05','PED1','EXAMIN','General',0,'Head',0,5,'Cranial sutures ',3,'','','','O','',0,'','','','','Y','',748),(0,0,'D05','PED1','EXAMIN','General',0,'Head',0,5,'Inspect',4,'','','','O','',0,'','','','','Y','',749),(0,0,'D05','PED1','EXAMIN','General',0,'Fontanelle',0,6,'',1,'','','','O','',0,'','','','','Y','',750),(0,0,'D05','PED1','EXAMIN','General',0,'Skin',0,7,'Colour',1,'','','','O','',0,'','','','','Y','',751),(0,0,'D05','PED1','EXAMIN','General',0,'Skin',0,7,'Bruising / lacerations ',2,'','','','I','',0,'A','','','','Y','',752),(0,0,'D05','PED1','EXAMIN','General',0,'Skin',0,7,'Facial birthmarks',3,'','','','O','',0,'','','','','Y','',753),(0,0,'D05','PED1','EXAMIN','General',0,'Skin',0,7,'Vernix ',4,'','','','I','',0,'A','','','','Y','',754),(0,0,'D05','PED1','EXAMIN','General',0,'Skin',0,7,'Other',1,'','','','O','',0,'','','','','Y','',755),(0,0,'D05','PED1','EXAMIN','General',0,'Other Potential Findinga',0,8,'Mongolian spot ',1,'','','','C','',0,'','','','','Y','',756),(0,0,'D05','PED1','EXAMIN','General',0,'Other Potential Findinga',0,8,'Nevus simplex ',1,'','','','C','',0,'','','','','Y','',757),(0,0,'D05','PED1','EXAMIN','General',0,'Other Potential Findinga',0,8,'Naevus flammeus ',1,'','','','C','',0,'','','','','Y','',758),(0,0,'D05','PED1','EXAMIN','General',0,'Other Potential Findinga',0,8,'Milia ',2,'','','','C','',0,'','','','','Y','',759),(0,0,'D05','PED1','EXAMIN','General',0,'Other Potential Findinga',0,8,'Erythema toxicum ',1,'','','','C','',0,'','','','','Y','',760),(0,0,'D05','PED1','EXAMIN','General',0,'Other Potential Findinga',0,8,'Neonatal jaundice ',1,'','','','C','',0,'','','','','Y','',761),(0,0,'D05','PED1','EXAMIN','General',0,'Face',0,9,'Appearance',1,'','','','I','',0,'A','','','','Y','',762),(0,0,'D05','PED1','EXAMIN','General',0,'Face',0,9,'Asymmetry',2,'','','','I','',0,'A','','','','Y','',763),(0,0,'D05','PED1','EXAMIN','General',0,'Face',0,9,'Trauma ',1,'','','','I','',0,'','','','','Y','',764),(0,0,'D05','PED1','EXAMIN','General',0,'Face',0,9,'Nose ',1,'','','','C','',0,'','','','','Y','',765),(0,0,'D05','PED1','EXAMIN','General',0,'Eyes',0,10,'Erythema',1,'','','','C','',0,'','','','','Y','',766),(0,0,'D05','PED1','EXAMIN','General',0,'Eyes',0,10,'Discharge',1,'','','','CI','',0,'A','','','','Y','',767),(0,0,'D05','PED1','EXAMIN','General',0,'Eyes',0,10,'Discolouration',2,'','','','CI','',0,'A','','','','Y','',768),(0,0,'D05','PED1','EXAMIN','General',0,'Eyes',0,10,'Position and shape ',3,'','','','I','',0,'A','','','','Y','',769),(0,0,'D05','PED1','EXAMIN','General',0,'Eyes',0,10,'Red reflex',4,'','','','CI','',0,'A','','','','Y','',770),(0,0,'D05','PED1','EXAMIN','General',0,'Ears',0,11,'Pinna',1,'','','','I','',0,'A','','','','Y','',771),(0,0,'D05','PED1','EXAMIN','General',0,'Ears',0,11,'Position',1,'','','','I','',0,'A','','','','Y','',772),(0,0,'D05','PED1','EXAMIN','General',0,'Mouth',0,12,'Clefts of the hard or soft palate ',1,'','','','I','',0,'A','','','','Y','',773),(0,0,'D05','PED1','EXAMIN','General',0,'Mouth',0,12,'Tongue and gums ',1,'','','','I','',0,'A','','','','Y','',774),(0,0,'D05','PED1','EXAMIN','General',0,'Neck and clavicles',0,13,'Length of neck ',1,'','','','I','',0,'','','','','Y','',775),(0,0,'D05','PED1','EXAMIN','General',0,'Neck and clavicles',0,13,'Webbing of the neck ',1,'','','','CI','',0,'A','','','','Y','',776),(0,0,'D05','PED1','EXAMIN','General',0,'Neck and clavicles',0,13,'Neck swellings ',1,'','','','CI','',0,'A','','','','Y','',777),(0,0,'D05','PED1','EXAMIN','General',0,'Neck and clavicles',0,13,'Clavicular fracture ',1,'','','','CI','',0,'A','','','','Y','',778),(0,0,'D05','PED1','EXAMIN','General',0,'Upper Limbs',0,14,'Symmetry/Fingers/ Palms/ Palpate brachial pulses',1,'','','','I','',0,'A','','','','Y','',779),(0,0,'D05','PED1','EXAMIN','General',0,'Chest',0,15,'Wall deformities ',1,'','','','CI','',0,'A','','','','Y','',780),(0,0,'D05','PED1','EXAMIN','General',0,'Chest',0,15,'Wall Expansion?',1,'','','','CI','',0,'','','','','Y','',781),(0,0,'D05','PED1','EXAMIN','General',0,'Lungs',0,16,'Respiratory distress ',1,'','','','CI','',0,'A','','','','Y','',782),(0,0,'D05','PED1','EXAMIN','General',0,'Heart',0,17,'',1,'','','','I','',0,'A','','','','Y','',783),(0,0,'D05','PED1','EXAMIN','General',0,'Abdomen',0,18,'Abdominal distension',1,'','','','CI','',0,'A','','','','Y','',784),(0,0,'D05','PED1','EXAMIN','General',0,'Abdomen',0,18,'inguinal hernias ',2,'','','','CI','',0,'A','','','','Y','',785),(0,0,'D05','PED1','EXAMIN','General',0,'Abdomen',0,18,'Palpate the abdomen',3,'','','','I','',0,'A','','','','Y','',786),(0,0,'D05','PED1','EXAMIN','General',0,'Umbilicus',0,19,'',1,'','','','I','',0,'A','','','','Y','',787),(0,0,'D05','PED1','EXAMIN','General',0,'Genitalia',0,20,'',1,'','','','I','',0,'A','','','','Y','',788),(0,0,'D05','PED1','EXAMIN','General',0,'Lower limbs',0,21,'Tone',1,'','','','I','',0,'A','','','','Y','',789),(0,0,'D05','PED1','EXAMIN','General',0,'Lower limbs',0,21,'Movement',2,'','','','I','',0,'','','','','Y','',790),(0,0,'D05','PED1','EXAMIN','General',0,'Lower limbs',0,21,'Palpate femoral pulses ',3,'','','','I','',0,'A','','','','Y','',791),(0,0,'D05','PED1','EXAMIN','General',0,'Lower limbs',0,21,'Oedema',4,'','','','CI','',0,'A','','','','Y','',792),(0,0,'D05','PED1','EXAMIN','General',0,'Lower limbs',0,21,'knees ',1,'','','','I','',0,'A','','','','Y','',793),(0,0,'D05','PED1','EXAMIN','General',0,'Lower limbs',0,21,'Ankle deformities ',5,'','','','CI','',0,'A','','','','Y','',794),(0,0,'D05','PED1','EXAMIN','General',0,'Hips',0,22,'',1,'','','','I','',0,'A','','','','Y','',795),(0,0,'D05','PED1','EXAMIN','Tests',3,'Barlowâ€™s test',0,1,'',1,'','','','I','',50,'A','','','','Y','',796),(0,0,'D05','PED1','EXAMIN','Tests',3,'Ortolaniâ€™s test',0,2,'',1,'','','','I','',50,'A','','','','Y','',797),(0,0,'D05','PED1','EXAMIN','General',0,'Back and Spine',0,23,'Scoliosis',1,'','','','CI','',0,'A','','','','Y','',798),(0,0,'D05','PED1','EXAMIN','General',0,'Back and Spine',0,23,'Hair tufts',2,'','','','CI','',0,'A','','','','Y','',799),(0,0,'D05','PED1','EXAMIN','General',0,'Back and Spine',0,23,'Naevus',3,'','','','CI','',0,'A','','','','Y','',800),(0,0,'D05','PED1','EXAMIN','General',0,'Back and Spine',0,23,'Abnormal skin patches',4,'','','','CI','',0,'A','','','','Y','',801),(0,0,'D05','PED1','EXAMIN','General',0,'Back and Spine',0,23,'Birthmarks',5,'','','','CI','',0,'A','','','','Y','',802),(0,0,'D05','PED1','EXAMIN','General',0,'Back and Spine',0,23,'Sacral pits',6,'','','','CI','',0,'A','','','','Y','',803),(0,0,'D05','PED1','EXAMIN','General',0,'Anus',0,24,'',1,'','','','I','',0,'A','','','','Y','',804),(0,0,'D05','PED1','EXAMIN','Reflexes',4,'Palmar grasp reflex ',0,1,'',1,'','','','I','',50,'A','','','','Y','',805),(0,0,'D05','PED1','EXAMIN','Reflexes',4,'Sucking reflex ',0,2,'',1,'','','','I','',50,'A','','','','Y','',806),(0,0,'D05','PED1','EXAMIN','Reflexes',4,'Rooting reflex ',0,3,'',1,'','','','I','',50,'A','','','','Y','',807),(0,0,'D05','PED1','EXAMIN','Reflexes',4,'Stepping reflex ',0,4,'',1,'','','','I','',50,'A','','','','Y','',808),(0,0,'D05','PED1','EXAMIN','Reflexes',4,'Moro reflex ',0,5,'',1,'','','','I','',50,'A','','','','Y','',809),(0,0,'D03','GENO','HIST','',0,'Onset',0,3,'When did the chief complaint occur',1,'','','','I','',0,'','','','','Y','',810),(0,0,'D03','GENO','HIST','',0,'Prior occurrences of this prob',0,4,'',1,'','','','I','',0,'','','','','Y','',811),(0,0,'D03','GENO','HIST','',0,'Progression',0,5,'Action By Patient',1,'','','','I','',0,'','','','','Y','',812),(0,0,'D03','GENO','HIST','',0,'Scale',0,7,'From 1 to 10',1,'','','','I','',0,'','','','','Y','',813),(0,0,'D03','GENO','HIST','',0,'Timing',0,8,'At night, all the time, in the mornings...',1,'','','','I','',0,'','','','','Y','',814),(0,0,'D03','GENO','CC','Neck/Cervical',1,'',0,0,'Pain',1,'','','','CI','',0,'','','','','Y','',815),(0,0,'D03','GENO','CC','Shoulder',2,'',0,0,'Pain',1,'','','','CI','',0,'','','','','Y','',816),(0,0,'D03','GENO','CC','Arm / Fore Arm',4,'',0,0,'Pain',1,'','','','CI','',0,'','','','','Y','',817),(0,0,'D03','GENO','CC','Elbow',3,'',0,0,'Pain',1,'','','','CI','',0,'','','','','Y','',818),(0,0,'D03','GENO','CC','Wrist',6,'',0,0,'Pain',1,'','','','CI','',0,'','','','','Y','',819),(0,0,'D03','GENO','CC','Hand',7,'',0,0,'Pain',1,'','','','CI','',0,'','','','','Y','',820),(0,0,'D03','GENO','CC','Hip',9,'',0,0,'Pain',1,'','','','CI','',0,'','','','','Y','',821),(0,0,'D03','GENO','CC','Thigh',10,'',0,0,'Pain',1,'','','','CI','',0,'','','','','Y','',822),(0,0,'D03','GENO','CC','Knee',11,'',0,0,'Pain',1,'','','','CI','',0,'','','','','Y','',823),(0,0,'D03','GENO','CC','Foot',13,'',0,0,'Pain',1,'','','','CI','',0,'','','','','Y','',824),(0,0,'D03','GENO','CC','Neck/Cervical',1,'',0,0,'Stiffness',1,'','','','CI','',0,'','','','','Y','',825),(0,0,'D03','GENO','CC','Shoulder',2,'',0,0,'Stiffness',1,'','','','CI','',0,'','','','','Y','',826),(0,0,'D03','GENO','CC','Shoulder',2,'',0,0,'Swelling',1,'','','','CI','',0,'','','','','Y','',827),(0,0,'D03','GENO','CC','Elbow',3,'',0,0,'Stiffness',1,'','','','CI','',0,'','','','','Y','',828),(0,0,'D03','GENO','CC','Elbow',3,'',0,0,'Swelling',1,'','','','CI','',0,'A','','','','Y','',829),(0,0,'D03','GENO','CC','Arm / Fore Arm',4,'',0,0,'Stiffness',1,'','','','CI','',0,'','','','','Y','',830),(0,0,'D03','GENO','CC','Arm / Fore Arm',4,'',0,0,'Swelling',1,'','','','CI','',0,'','','','','Y','',831),(0,0,'D03','GENO','CC','Wrist',6,'',0,0,'Stiffness',1,'','','','CI','',0,'','','','','Y','',832),(0,0,'D03','GENO','CC','Wrist',6,'',0,0,'Swelling',1,'','','','CI','',0,'','','','','Y','',833),(0,0,'D03','GENO','CC','Hand',7,'',0,0,'Stiffness',1,'','','','CI','',0,'','','','','Y','',834),(0,0,'D03','GENO','CC','Hand',7,'',0,0,'Swelling',1,'','','','CI','',0,'','','','','Y','',835),(0,0,'D03','GENO','CC','Back/Low Back',8,'',0,0,'Pain',1,'','','','CI','',0,'','','','','Y','',836),(0,0,'D03','GENO','CC','Back/Low Back',8,'',0,0,'Stiffness',1,'','','','CI','',0,'','','','','Y','',837),(0,0,'D03','GENO','CC','Back/Low Back',8,'',0,0,'Swelling',1,'','','','CI','',0,'','','','','Y','',838),(0,0,'D03','GENO','CC','Hip',9,'',0,0,'Stiffness',1,'','','','CI','',0,'','','','','Y','',839),(0,0,'D03','GENO','CC','Hip',9,'',0,0,'Swelling',1,'','','','CI','',0,'','','','','Y','',840),(0,0,'D03','GENO','CC','Thigh',10,'',0,0,'Stiffness',1,'','','','CI','',0,'','','','','Y','',841),(0,0,'D03','GENO','CC','Knee',11,'',0,0,'Stiffness',1,'','','','CI','',0,'','','','','Y','',842),(0,0,'D03','GENO','CC','Knee',11,'',0,0,'Swelling',1,'','','','CI','',0,'','','','','Y','',843),(0,0,'D03','GENO','CC','Ankle',12,'',0,0,'Pain',1,'','','','CI','',0,'','','','','Y','',844),(0,0,'D03','GENO','CC','Ankle',12,'',0,0,'Stiffness',1,'','','','CI','',0,'','','','','Y','',845),(0,0,'D03','GENO','CC','Ankle',12,'',0,0,'Swelling',1,'','','','CI','',0,'','','','','Y','',846),(0,0,'D03','GENO','CC','Foot',13,'',0,0,'Stiffness',1,'','','','CI','',0,'','','','','Y','',847),(0,0,'D03','GENO','CC','Foot',13,'',0,0,'Swelling',1,'','','','CI','',0,'','','','','Y','',848),(0,0,'D03','GENO','CC','Neck/Cervical',1,'',0,0,'Swelling',1,'','','','CI','',0,'','','','','Y','',849),(0,0,'D03','GENO','CC','Thigh',10,'',0,0,'Swelling',1,'','','','CI','',0,'','','','','Y','',850),(0,0,'D03','GENO','HIST','',0,'Progression',0,5,'Getting Worse',1,'','','','CI','',0,'','','','','Y','',851),(0,0,'D03','GENO','HIST','',0,'Progression',0,5,'Getting Better',1,'','','','CI','',0,'','','','','Y','',852),(0,0,'D03','GENO','HIST','',0,'Radiation',0,6,'Do the symptoms radiate? Where?',1,'','','','CI','',0,'','','','','Y','',853),(0,0,'MEDI','ALL','Vitals','ZZ1',1,'EH_BMI',0,12,'BMI',12,'','','','I','',3,'A','','','','Y','',865),(0,0,'Medi','ALL','Vitals_M','ZZ1',1,'Ht',0,6,'Ht',4,'','','','I','',6,'A','Cms','','','Y','',868),(0,0,'Medi','ALL','Vitals_M','ZZ1',1,'RBS',0,9,'RBS',2,'','','','I','',6,'N','mg/dl','','','Y','',869),(0,0,'Medi','ALL','Vitals_M','ZZ1',1,'PR',0,2,'PR',3,'','','','I','',6,'A','bpm','','','Y','',870),(0,0,'Medi','ALL','Vitals_M','ZZ1',1,'Waist',0,10,'Waist',5,'','','','I','',6,'A','Cms','','','Y','',871),(0,0,'Medi','ALL','Vitals_M','ZZ1',1,'TP',0,1,'TP',6,'','','','I','',6,'A','<sup>o</sup>F','','','Y','',872),(0,0,'Medi','ALL','Vitals_M','ZZ1',1,'RR',0,5,'RR',7,'','','','I','',6,'A','Cpm','','','Y','',873),(0,0,'Medi','ALL','Vitals_M','ZZ1',1,'SpO2',0,3,'SpO2',8,'','','','I','',6,'A','%','','','Y','',874),(0,0,'Medi','ALL','Vitals_M','ZZ1',1,'Wt',0,7,'Wt',9,'','','','I','',6,'A','Kgs','','','Y','',875),(0,0,'Medi','ALL','Vitals_M','ZZ1',1,'HC',0,11,'HC',10,'','','','I','',6,'A','Cms','','','Y','',876),(0,0,'MEDI','ALL','Vitals_M','ZZ1',1,'BMI',0,8,'BMI',12,'','Wt/(Ht/100*Ht/100)','','I','',3,'A','','','','Y','',878),(0,0,'MEDI','ALL','VITALS_M','ZZ1',1,'BP',0,4,'BP',30,'','','','','',8,'A','','','','Y','',879),(0,0,'STD','ALL','ADD_VITALS','ZZ1',5,'Cholesterol',0,5,'Cholesterol',5,'','','','','',6,'A','','','','Y','H',880),(0,0,'STD','ALL','ADD_VITALS','ZZ1',10,'Creatinine',0,10,'Creatinine',10,'','','','','',6,'A','','','','Y','H',881),(0,0,'STD','ALL','ADD_VITALS','ZZ1',8,'FBS',0,8,'FBS',8,'','','','','',6,'A','','','','Y','H',882),(0,0,'STD','ALL','ADD_VITALS','ZZ1',1,'Hb',0,1,'Hb',1,'','','','','',6,'A','','','','Y','H',883),(0,0,'STD','ALL','ADD_VITALS','ZZ1',7,'HbA1c',0,7,'HbA1c',7,'','','','','',6,'A','','','','Y','H',884),(0,0,'STD','ALL','ADD_VITALS','ZZ1',4,'HDL',0,4,'HDL',4,'','','','','',6,'A','','','','Y','H',885),(0,0,'STD','ALL','ADD_VITALS','ZZ1',3,'LDL',0,3,'LDL',3,'','','','','',6,'A','','','','Y','H',886),(0,0,'STD','ALL','ADD_VITALS','ZZ1',9,'PP2BS',0,9,'PP2BS',9,'','','','','',6,'A','','','','Y','H',887),(0,0,'STD','ALL','ADD_VITALS','ZZ1',11,'SGPT',0,11,'SGPT',11,'','','','','',6,'A','','','','Y','H',888),(0,0,'STD','ALL','ADD_VITALS','ZZ1',6,'Triglyceride',0,6,'Triglyceride',6,'','','','','',6,'A','','','','Y','H',889),(0,0,'STD','ALL','ADD_VITALS','ZZ1',2,'TSH',0,2,'TSH',2,'','','','','',6,'A','','','','Y','H',890),(0,0,'Medi','ALL','Vitals_M','ZZ1',1,'eGFR',0,12,'eGFR',15,'','','','I','',6,'N','','','','Y','',891),(0,0,'MEDI','ALL','VITALS_M','ZZ1',1,'BP(LT)',0,4,'BP(LT)',30,'','','','','',8,'A','','','','N','',892),(0,0,'MEDI','ALL','VITALS_M','ZZ1',1,'BP(RT)',0,4,'BP(RT)',30,'','','','','',8,'A','','','','N','',893);
/*!40000 ALTER TABLE `pc_enc_mast` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pc_encounter_master`
--

DROP TABLE IF EXISTS `pc_encounter_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pc_encounter_master` (
  `enc_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `enc_group` varchar(6) NOT NULL,
  `department_id` varchar(6) NOT NULL,
  `doctor_id` int(11) NOT NULL,
  `enc_description` text NOT NULL,
  `enc_description_hindi` text CHARACTER SET utf8 NOT NULL,
  `enc_description_guj` text CHARACTER SET utf8 NOT NULL,
  `treatment_days` int(11) NOT NULL,
  `is_active` enum('N','Y') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(15) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(15) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`enc_id`)
) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pc_encounter_master`
--

LOCK TABLES `pc_encounter_master` WRITE;
/*!40000 ALTER TABLE `pc_encounter_master` DISABLE KEYS */;
INSERT INTO `pc_encounter_master` VALUES (1,0,0,'PLAN','GEN',0,'Do not allow water to enter your  ear','','કાન માં પાણી ન જવા જોઈએ ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(2,0,0,'PLAN','GEN',0,'Avoid exposure to cold atmostphere','','ઠંડા વાતાવરણ થી બચવું ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(3,0,0,'PLAN','GEN',0,'Avoid mental stress ','','માનસિક તાણ અને ચીંતા થી બચવું ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(4,0,0,'PLAN','GEN',0,'use gargle after every food','','કોઈ પણ ખોરાક પછી કોગળા કરવા ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(5,0,0,'PLAN','GEN',0,'voice rest-avoid shouting ','','અવાજ ને આરામ આપવો ,ચીસો ના પાડવી',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(6,0,0,'PLAN','GEN',0,'valsalva excercise 50-100 time a day','','સમજાવ્યા પ્રમાણે નાક બંધ કરી કરી ફુગ્ગો ફુલાવવો ,દિવસ માં 50 થી 100 વખત ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(7,0,0,'PLAN','GEN',0,'Steam inhalation through nose','','ગરમ પાણી ની વરાળ નાક થી દિવસ મી બે વખત લેવી',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(8,0,0,'PLAN','GEN',0,'during excersice if vertigo feels dont worry','','કસરત કરતી વખતે ચક્કર આવે તો ચિંતા કરવી નહિ ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(9,0,0,'PLAN','GEN',0,'treat your dental problem','','દાંત ના ડૉક્ટર ની સલાહ લેવી ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(10,0,0,'PLAN','GEN',0,'warm saline gargle','','ગરમ પાણી ના કોગળા કરવા, કશુ  ઉમેરવું નહિ ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(11,0,0,'PLAN','GEN',0,'Avoid tobecco in any form','','તંબાકુ નો કોઈ પણ પ્રકારે ઉપયોગ ના કરો ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(12,0,0,'PLAN','GEN',0,'there is no carcinoma','','કેન્સર ના કોઈ ચિન્હો હાલ માં નથી ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(13,0,0,'PLAN','GEN',0,'avoid breast feeding in sleeping position','','બાળક ને સુતા સુતા બોટલ થી કે સ્તન પાન કરાવવું નહિ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(14,0,0,'PLAN','GEN',0,'Avoid dusty and polluted atmostphere','','ધૂળ કે ધુમાડા વાળા વાતાવરણ થી બચવું  ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(15,0,0,'PLAN','GEN',0,'ADMISSION IS REQUIRED','admision is reqiured','દાખલ થવાની જરૂરિયાત છે ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(16,0,0,'PLAN','GEN',0,'Avoid cold drink\nAvoid close contects with others ','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(17,0,0,'PLAN','GEN',0,'Avoid oily & Spicy food ','','તળેલી અને તીખી ચીજો ન ખાસો ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(18,0,0,'PLAN','GEN',0,'Avoid cold drink\nAvoid oily & Spicy food for a wee','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(19,0,0,'PLAN','GEN',0,'Avoid cold drink\nAvoid oily & Spicy food for a wee','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(20,0,0,'PLAN','GEN',0,'Avoid cold drink\nAvoid oily & Spicy food for a wee','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(21,0,0,'PLAN','GEN',0,'Avoid tobacco, nuts,chuno, & katha','','તમ્બાકુ ,સોપારી ,ચૂનો કે પાન મસાલા નો ઉપયોગ ન કરશો   ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(22,0,0,'PLAN','GEN',0,'Avoid cold drink\nAvoid tobacco, nuts,chuno, & kath','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(23,0,0,'PLAN','GEN',0,'avoid exposure to noisy atmostphere','','ખુબજ અવાજ વાળા અને ઘોંઘાટિયા સ્થળે ન જવું',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(24,0,0,'PLAN','GEN',0,'Avoid cold drink\nAvoid tobecco in any form\nAvoid a','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(25,0,0,'PLAN','GEN',0,'Avoid cold drink\nAvoid tobecco in any form\nAvoid a','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(26,0,0,'PLAN','GEN',0,'Avoid cold drink\nDo not allow water to enter your ','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(27,0,0,'PLAN','GEN',0,'Avoid cold drink\nDo not allow water to enter your ','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(28,0,0,'PLAN','GEN',0,'Dont put anything in the ears, specially oil','','કાન માં કોઈ પણ ટીપા કે તેલ નાખવું નહિ ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(29,0,0,'PLAN','GEN',0,'Hot foamentation on jaw joint (front of ear)','','જડબાં ના સાંધા પર  ગરમ કપડાં થી શેક કરવો ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(30,0,0,'PLAN','GEN',0,'Avoid cold drink\nSteam inhalation twice a day by m','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(31,0,0,'PLAN','GEN',0,'Avoid cold drink\nSteam inhalation twice a day by m','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(32,0,0,'PLAN','GEN',0,'Avoid cold drink\nSteam inhalation twice a day by m','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(33,0,0,'PLAN','GEN',0,'Avoid cold drink\nSteam inhalation twice a day by m','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(34,0,0,'PLAN','GEN',0,'Dont sleep towards affected ear','','તકલીફ વાળા કાન તરફ સૂવું નહિ  ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(35,0,0,'PLAN','GEN',0,'Avoid cold drink, Steam inhalation twice a day ','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(36,0,0,'PLAN','GEN',0,'Avoid cold drink\nSteam inhelation twice a day by n','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(37,0,0,'PLAN','GEN',0,'Avoid cold drink\nSteam inhelation twice a day by n','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(38,0,0,'PLAN','GEN',0,'Avoid cold drink\nSteam inhelation twice a day by n','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(39,0,0,'PLAN','GEN',0,'Avoid cold drink\nSteam inhelation twice a day by n','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(40,0,0,'PLAN','GEN',0,'Avoid cold drink\nSteam inhelation twice a day by n','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(41,0,0,'PLAN','GEN',0,'Avoid cold drink\nSteam inhelation twice a day by n','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(42,0,0,'PLAN','GEN',0,'Avoid cold drink\nSteam inhelation twice a day by n','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(43,0,0,'PLAN','GEN',0,'Avoid cold drink\nSteam inhelation twice a day by n','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(44,0,0,'PLAN','GEN',0,'Avoid cold drink\nTry to avoid exposure to child at','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(45,0,0,'PLAN','GEN',0,'dont worry for tingling and numbness in feet and h','','હાથ અને પગ માં ખાલી ચડે તો ગભરાવું નહિ ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(46,0,0,'PLAN','GEN',0,'Avoid cold drinks','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(47,0,0,'PLAN','GEN',0,'Avoid Cold drinks\nAvoid Tobecco in any form\nAvoid ','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(48,0,0,'PLAN','GEN',0,'Steam inhelation twice a day by mouth','','ગરમ પાણી ની વરાળ નાક થી બે વખત લેવી ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(49,0,0,'PLAN','GEN',0,'Avoid cold drinks\ntreat your dental infection at e','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(50,0,0,'PLAN','GEN',0,'Avoid cold drinks\nTreat your nasal infection immed','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(51,0,0,'PLAN','GEN',0,'Avoid Driving & Working in a Kitchen\nAvoid cold dr','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(52,0,0,'PLAN','GEN',0,'Avoid Hot, Oily  & Spicy food.\nAvoid tobecco & Alc','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(53,0,0,'PLAN','GEN',0,'Avoid pressing or squissing nasal tip\nDont pock in','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(54,0,0,'PLAN','GEN',0,'avoid the work with affected hand','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(55,0,0,'PLAN','GEN',0,'Avoid tobacco, nuts,chuno, & katho. under any circ','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(56,0,0,'PLAN','GEN',0,'operation in required','','ઓપેરશન જરૂરી છે ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(57,0,0,'PLAN','GEN',0,'Clean your nose as explained.- once daliy','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(58,0,0,'PLAN','GEN',0,'cold spong around nose  can  reduce bleeding.\nObse','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(59,0,0,'PLAN','GEN',0,'Come for Follow up only if required','','જરૂર હોય તો જ ફરી બતાવવા આવવું ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(60,0,0,'PLAN','GEN',0,'Do not check your throat on your own by hand ','','વારે વારે ગાળું કે મોઢું અરીસા માં જોવું નહિ ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(61,0,0,'PLAN','GEN',0,'Dont use any ear drops\nKeep ear dry\nDont poke in t','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(62,0,0,'PLAN','GEN',0,'Follow all printed instructions given & explained','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(63,0,0,'PLAN','GEN',0,'Keep a cotton in the ear\nDont alow water to enter ','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(64,0,0,'PLAN','GEN',0,'Keep a cotton in the ear\nDont put anything in the ','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(65,0,0,'PLAN','GEN',0,'Keep a cotton in the ear\nDont put anything in the ','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(66,0,0,'PLAN','GEN',0,'Keep ear dry\nDont alow water to enter in ears\nAvoi','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(67,0,0,'PLAN','GEN',0,'Avoid cold (child) food & drinks','','ઠંડા પીણાં ,ઠંડી ચીજો ન ખાસો',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(68,0,0,'PLAN','GEN',0,'Keep Ear dry\nDont alow water to enter in to the ea','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(69,0,0,'PLAN','GEN',0,'More Milk,bananas,Spinach,Brinjals,Dates,Molasses ','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(70,0,0,'PLAN','GEN',0,'More Milk,bananas,Spinach,Brinjals,Dates,Molasses ','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(71,0,0,'PLAN','GEN',0,'Steam inhalation daily once a day for  seven days.','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(72,0,0,'PLAN','GEN',0,'To press on facial swelling is dangerous.','','નાક કે ચેહરા ના સોજા ને દબાવવું નહિ ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(73,0,0,'PLAN','GEN',0,'Treat your Diabetes as per guidance of your physic','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(74,0,0,'PLAN','GEN',0,'Try to  learn lip reading\nAvoid cold drinks\nTreat ','','',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(75,0,0,'PLAN','GEN',0,'medicine for diabetes and hypertension should be c','','ડાયાબિટીસ તેમજ બ્લડ પ્રેશર ની દવા ચાલુ રાખવી ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00'),(76,0,0,'PLAN','GEN',0,'regular timing in diet is advisable','','ખોરાક સમયસર  લેવો હિતાવહ છે ',0,'Y','thims','2020-04-08 13:14:29','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `pc_encounter_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pc_invest_pat`
--

DROP TABLE IF EXISTS `pc_invest_pat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pc_invest_pat` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `op_id` bigint(20) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `inv_code` int(11) NOT NULL,
  `result` varchar(10) NOT NULL,
  `date` date NOT NULL,
  PRIMARY KEY (`id`),
  KEY `inv_code` (`inv_code`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pc_invest_pat`
--

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

--
-- Table structure for table `pc_option_mast`
--

DROP TABLE IF EXISTS `pc_option_mast`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pc_option_mast` (
  `Enc_Grp_ID` int(11) NOT NULL,
  `Option_ID` int(11) NOT NULL,
  `Sub_Option` int(11) NOT NULL,
  `Option_Description` varchar(200) NOT NULL,
  `Option_Score` varchar(5) NOT NULL,
  `Sub_Level` char(1) NOT NULL,
  PRIMARY KEY (`Enc_Grp_ID`,`Option_ID`,`Sub_Option`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pc_option_mast`
--

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

--
-- Table structure for table `pc_ot_mst`
--

DROP TABLE IF EXISTS `pc_ot_mst`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pc_ot_mst` (
  `op_code` int(11) NOT NULL AUTO_INCREMENT,
  `op_name` varchar(40) NOT NULL,
  `op_catg` varchar(6) NOT NULL,
  `active` set('Y','N') NOT NULL DEFAULT 'Y',
  PRIMARY KEY (`op_code`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pc_ot_mst`
--

LOCK TABLES `pc_ot_mst` WRITE;
/*!40000 ALTER TABLE `pc_ot_mst` DISABLE KEYS */;
INSERT INTO `pc_ot_mst` VALUES (2,'BIPOLAR TURP','','Y'),(3,'Fistullectomy','1','Y'),(4,'laproscopic b/L hernioplasty','','Y'),(5,'decompressive','','Y'),(7,'decompressive cramiectomy','','Y'),(8,'cystoscopy','4','Y');
/*!40000 ALTER TABLE `pc_ot_mst` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ph_customer_master`
--

DROP TABLE IF EXISTS `ph_customer_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ph_customer_master` (
  `company_id` tinyint(4) NOT NULL,
  `ph_cust_id` int(11) NOT NULL AUTO_INCREMENT,
  `ph_cust_name` varchar(50) NOT NULL,
  `ph_cust_contact_no` varchar(15) NOT NULL,
  `hospital_internal` enum('Y','N') NOT NULL DEFAULT 'N',
  `gst_number` varchar(15) NOT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`ph_cust_id`,`company_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ph_customer_master`
--

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

--
-- Table structure for table `ph_exp_voucher_header`
--

DROP TABLE IF EXISTS `ph_exp_voucher_header`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ph_exp_voucher_header` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `fyear` varchar(4) NOT NULL,
  `voucher_type` char(3) NOT NULL,
  `voucher_number` int(11) NOT NULL,
  `voucher_datetime` datetime NOT NULL,
  `payment_to` varchar(50) NOT NULL,
  `total_amount` float(9,2) NOT NULL,
  `cr_db_flag` enum('C','D') NOT NULL,
  `payment_mode` varchar(3) NOT NULL,
  `payment_agency` varchar(25) NOT NULL,
  `payment_number` varchar(30) NOT NULL,
  `remark` varchar(100) NOT NULL,
  `CreatedBy` varchar(50) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(50) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  UNIQUE KEY `fyear` (`fyear`,`voucher_number`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`fyear`,`voucher_number`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ph_exp_voucher_header`
--

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

--
-- Table structure for table `ph_exp_voucher_transaction`
--

DROP TABLE IF EXISTS `ph_exp_voucher_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ph_exp_voucher_transaction` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `fyear` varchar(4) NOT NULL,
  `voucher_type` char(3) NOT NULL,
  `voucher_number` int(11) NOT NULL,
  `voucher_sr_no` int(11) NOT NULL,
  `perticulars` varchar(100) NOT NULL,
  `amount` float(9,2) NOT NULL,
  `CreatedBy` varchar(50) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(50) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  UNIQUE KEY `fyear` (`fyear`,`voucher_number`,`voucher_sr_no`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`fyear`,`voucher_number`,`voucher_sr_no`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ph_exp_voucher_transaction`
--

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

--
-- Table structure for table `ph_sell_price_rule`
--

DROP TABLE IF EXISTS `ph_sell_price_rule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ph_sell_price_rule` (
  `rule_id` int(11) NOT NULL AUTO_INCREMENT,
  `start_range` float(9,2) DEFAULT '0.00',
  `end_range` float(9,2) DEFAULT '0.00',
  `margin_percentage` float(6,2) DEFAULT '0.00',
  `rule_description` text,
  PRIMARY KEY (`rule_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ph_sell_price_rule`
--

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

--
-- Table structure for table `ph_temp_cash_collection`
--

DROP TABLE IF EXISTS `ph_temp_cash_collection`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ph_temp_cash_collection` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `user_id` varchar(15) NOT NULL,
  `user_name` varchar(35) NOT NULL,
  `payment_mode` varchar(6) NOT NULL,
  `no_of_issue` int(11) NOT NULL,
  `issue_bill_amount` float(10,2) NOT NULL,
  `no_of_issue_return` int(11) NOT NULL,
  `issue_return_bill_amount` float(10,2) NOT NULL,
  `received_amount` float(10,2) NOT NULL,
  `refund_amount` float(10,2) NOT NULL,
  `no_of_exp_voucher` int(11) NOT NULL,
  `expense_amount` float(10,2) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ph_temp_cash_collection`
--

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

--
-- Table structure for table `ph_temp_payment_collection`
--

DROP TABLE IF EXISTS `ph_temp_payment_collection`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ph_temp_payment_collection` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `patient_name` varchar(200) CHARACTER SET utf8 NOT NULL,
  `mediclaim` varchar(5) NOT NULL,
  `cashless` varchar(10) NOT NULL,
  `patient_type` varchar(50) NOT NULL,
  `ph_cust_id` int(11) NOT NULL,
  `ph_cust_name` varchar(200) CHARACTER SET utf8 NOT NULL,
  `bill_amount` int(11) NOT NULL,
  `amount_received` int(11) NOT NULL,
  `admit_date` datetime DEFAULT NULL,
  `discharge_date` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ph_temp_payment_collection`
--

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

--
-- Table structure for table `pharmacy_bill_amt_writeoff_detail`
--

DROP TABLE IF EXISTS `pharmacy_bill_amt_writeoff_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pharmacy_bill_amt_writeoff_detail` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `bill_writeoff_id` int(11) NOT NULL AUTO_INCREMENT,
  `patient_id` int(11) DEFAULT NULL COMMENT 'Medicine Issue & Issue Return Transaction has patient information if Pharmacy module is integrated',
  `ipd_reg_id` bigint(20) DEFAULT NULL,
  `ph_cust_id` int(11) DEFAULT NULL,
  `amount_received` float NOT NULL DEFAULT '0',
  `balance_type` enum('C','D') NOT NULL,
  `remarks` varchar(50) DEFAULT NULL,
  `created_by` varchar(15) NOT NULL,
  `created_date` datetime NOT NULL,
  PRIMARY KEY (`bill_writeoff_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pharmacy_bill_amt_writeoff_detail`
--

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

--
-- Table structure for table `pharmacy_store_users_link`
--

DROP TABLE IF EXISTS `pharmacy_store_users_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pharmacy_store_users_link` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `user_id` varchar(10) NOT NULL,
  `store_code` varchar(6) NOT NULL,
  `trn_type` char(6) NOT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`user_id`,`store_code`,`trn_type`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pharmacy_store_users_link`
--

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

--
-- Table structure for table `pincode`
--

DROP TABLE IF EXISTS `pincode`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pincode` (
  `pincode` mediumint(9) NOT NULL,
  `subdistrict_name` varchar(50) NOT NULL,
  `district_name` varchar(30) NOT NULL,
  `state` varchar(30) NOT NULL,
  PRIMARY KEY (`pincode`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pincode`
--

LOCK TABLES `pincode` WRITE;
/*!40000 ALTER TABLE `pincode` DISABLE KEYS */;
INSERT INTO `pincode` VALUES (110003,'Defence Colony','SOUTH EAST DELHI','DELHI'),(110014,'Defence Colony','SOUTH EAST DELHI','DELHI'),(110020,'Defence Colony','SOUTH EAST DELHI','DELHI'),(110025,'Defence Colony','SOUTH EAST DELHI','DELHI'),(110036,'Alipur','NORTH DELHI','DELHI'),(110039,'Alipur','NORTH DELHI','DELHI'),(110040,'Rohini','NORTH WEST DELHI','DELHI'),(110042,'Alipur','NORTH DELHI','DELHI'),(110044,'Kalkaji','SOUTH EAST DELHI','DELHI'),(110046,'Rajouri Garden','WEST DELHI','DELHI'),(110049,'Defence Colony','SOUTH EAST DELHI','DELHI'),(110054,'Alipur','NORTH DELHI','DELHI'),(110056,'Saraswati Vihar','NORTH WEST DELHI','DELHI'),(110062,'Hauz Khas','SOUTH DELHI','DELHI'),(110071,'Najafgarh','SOUTH WEST DELHI','DELHI'),(110076,'Kalkaji','SOUTH EAST DELHI','DELHI'),(110085,'Rohini','NORTH WEST DELHI','DELHI'),(110086,'Rohini','NORTH WEST DELHI','DELHI'),(110090,'Karawal Nagar','NORTH EAST DELHI','DELHI'),(121001,'Faridabad','FARIDABAD','HARYANA'),(121002,'Faridabad','FARIDABAD','HARYANA'),(121003,'Faridabad','FARIDABAD','HARYANA'),(121004,'Ballabgarh','FARIDABAD','HARYANA'),(121005,'Faridabad','FARIDABAD','HARYANA'),(121006,'Faridabad','FARIDABAD','HARYANA'),(121007,'Faridabad','FARIDABAD','HARYANA'),(121008,'Faridabad','FARIDABAD','HARYANA'),(121009,'Faridabad','FARIDABAD','HARYANA'),(121010,'Faridabad','FARIDABAD','HARYANA'),(121012,'Faridabad','FARIDABAD','HARYANA'),(121013,'Faridabad','FARIDABAD','HARYANA'),(121101,'Ballabgarh','FARIDABAD','HARYANA'),(121102,'Faridabad','FARIDABAD','HARYANA'),(121103,'Hathin','FARIDABAD','HARYANA'),(121105,'Hodal','FARIDABAD','HARYANA'),(121106,'Hodal','FARIDABAD','HARYANA'),(121107,'Hodal','FARIDABAD','HARYANA'),(122001,'Narnaul','MAHENDRAGARH','HARYANA'),(122002,'Gurgaon','GURGAON','HARYANA'),(122003,'Gurgaon','GURGAON','HARYANA'),(122004,'Gurgaon','GURGAON','HARYANA'),(122005,'Gurgaon','GURGAON','HARYANA'),(122006,'Gurgaon','GURGAON','HARYANA'),(122007,'Gurgaon','GURGAON','HARYANA'),(122008,'Gurgaon','GURGAON','HARYANA'),(122009,'Gurgaon','GURGAON','HARYANA'),(122010,'Gurgaon','GURGAON','HARYANA'),(122011,'Gurgaon','GURGAON','HARYANA'),(122015,'Gurgaon','GURGAON','HARYANA'),(122016,'Gurgaon','GURGAON','HARYANA'),(122017,'Gurgaon','GURGAON','HARYANA'),(122018,'Gurgaon','GURGAON','HARYANA'),(122051,'Gurgaon','GURGAON','HARYANA'),(122052,'Gurgaon','GURGAON','HARYANA'),(122101,'Gurgaon','GURGAON','HARYANA'),(122102,'Sohna','GURGAON','HARYANA'),(122103,'Sohna','GURGAON','HARYANA'),(122104,'Ferozepur Jhirka','GURGAON','HARYANA'),(122105,'Taoru','GURGAON','HARYANA'),(122107,'Nuh','GURGAON','HARYANA'),(122108,'Ferozepur Jhirka','GURGAON','HARYANA'),(122413,'Gurgaon','GURGAON','HARYANA'),(122414,'Rewari','REWARI','HARYANA'),(122502,'Pataudi','GURGAON','HARYANA'),(122503,'Pataudi','GURGAON','HARYANA'),(122504,'Gurgaon','GURGAON','HARYANA'),(122505,'Gurgaon','GURGAON','HARYANA'),(122506,'Gurgaon','GURGAON','HARYANA'),(122508,'Punahana','GURGAON','HARYANA'),(123001,'Narnaul','MAHENDRAGARH','HARYANA'),(123021,'Narnaul','MAHENDRAGARH','HARYANA'),(123023,'Narnaul','MAHENDRAGARH','HARYANA'),(123024,'Mahendragarh','MAHENDRAGARH','HARYANA'),(123027,'Mahendragarh','MAHENDRAGARH','HARYANA'),(123028,'Mahendragarh','MAHENDRAGARH','HARYANA'),(123029,'Mahendragarh','MAHENDRAGARH','HARYANA'),(123034,'Mahendragarh','MAHENDRAGARH','HARYANA'),(123035,'Rewari','REWARI','HARYANA'),(123101,'Rewari','REWARI','HARYANA'),(123102,'Rewari','REWARI','HARYANA'),(123103,'Rewari','REWARI','HARYANA'),(123106,'Rewari','REWARI','HARYANA'),(123110,'Rewari','REWARI','HARYANA'),(123301,'Kosli','REWARI','HARYANA'),(123302,'Kosli','REWARI','HARYANA'),(123303,'Kosli','REWARI','HARYANA'),(123401,'Kosli','REWARI','HARYANA'),(123411,'Kosli','REWARI','HARYANA'),(123412,'Bawal','REWARI','HARYANA'),(123501,'Bawal','REWARI','HARYANA'),(124001,'Rohtak','ROHTAK','HARYANA'),(124010,'Rohtak','ROHTAK','HARYANA'),(124021,'Rohtak','ROHTAK','HARYANA'),(124022,'Rohtak','ROHTAK','HARYANA'),(124102,'Beri','JHAJJAR','HARYANA'),(124103,'Jhajjar','JHAJJAR','HARYANA'),(124104,'Jhajjar','JHAJJAR','HARYANA'),(124105,'Jhajjar','JHAJJAR','HARYANA'),(124106,'Jhajjar','JHAJJAR','HARYANA'),(124107,'Beri','JHAJJAR','HARYANA'),(124108,'Jhajjar','JHAJJAR','HARYANA'),(124109,'Jhajjar','JHAJJAR','HARYANA'),(124111,'Maham','ROHTAK','HARYANA'),(124112,'Maham','ROHTAK','HARYANA'),(124113,'Rohtak','ROHTAK','HARYANA'),(124141,'Jhajjar','JHAJJAR','HARYANA'),(124142,'Jhajjar','JHAJJAR','HARYANA'),(124146,'Jhajjar','JHAJJAR','HARYANA'),(124201,'Beri','JHAJJAR','HARYANA'),(124202,'Beri','JHAJJAR','HARYANA'),(124303,'Rohtak','ROHTAK','HARYANA'),(124401,'Rohtak','ROHTAK','HARYANA'),(124404,'Rohtak','ROHTAK','HARYANA'),(124406,'Rohtak','ROHTAK','HARYANA'),(124411,'Rohtak','ROHTAK','HARYANA'),(124412,'Rohtak','ROHTAK','HARYANA'),(124501,'Bahadurgarh','JHAJJAR','HARYANA'),(124504,'Bahadurgarh','JHAJJAR','HARYANA'),(124505,'Bahadurgarh','JHAJJAR','HARYANA'),(124506,'Bahadurgarh','JHAJJAR','HARYANA'),(124507,'Bahadurgarh','JHAJJAR','HARYANA'),(124508,'Bahadurgarh','JHAJJAR','HARYANA'),(124513,'Maham','ROHTAK','HARYANA'),(124514,'Maham','ROHTAK','HARYANA'),(125001,'Hisar','HISAR','HARYANA'),(125004,'Hisar','HISAR','HARYANA'),(125005,'Hisar','HISAR','HARYANA'),(125006,'Hisar','HISAR','HARYANA'),(125007,'Hisar','HISAR','HARYANA'),(125011,'Hisar','HISAR','HARYANA'),(125033,'Hansi','HISAR','HARYANA'),(125037,'Hansi','HISAR','HARYANA'),(125038,'Hansi','HISAR','HARYANA'),(125039,'Narnaund','HISAR','HARYANA'),(125042,'Hansi','HISAR','HARYANA'),(125044,'Hisar','HISAR','HARYANA'),(125047,'Hisar','HISAR','HARYANA'),(125048,'Fatehabad','FATEHABAD','HARYANA'),(125049,'Hansi','HISAR','HARYANA'),(125050,'Fatehabad','FATEHABAD','HARYANA'),(125051,'Ratia','FATEHABAD','HARYANA'),(125052,'Adampur','HISAR','HARYANA'),(125053,'Fatehabad','FATEHABAD','HARYANA'),(125054,'Sirsa','SIRSA','HARYANA'),(125055,'Dabwali','SIRSA','HARYANA'),(125058,'Sirsa','SIRSA','HARYANA'),(125060,'Sirsa','SIRSA','HARYANA'),(125075,'Sirsa','SIRSA','HARYANA'),(125076,'Rania','SIRSA','HARYANA'),(125077,'Dabwali','SIRSA','HARYANA'),(125078,'Sirsa','SIRSA','HARYANA'),(125101,'Dabwali','SIRSA','HARYANA'),(125102,'Ellenabad','SIRSA','HARYANA'),(125103,'Rania','SIRSA','HARYANA'),(125104,'Dabwali','SIRSA','HARYANA'),(125106,'Tohana','FATEHABAD','HARYANA'),(125110,'Sirsa','SIRSA','HARYANA'),(125111,'Hisar','HISAR','HARYANA'),(125112,'Fatehabad','FATEHABAD','HARYANA'),(125113,'Hisar','HISAR','HARYANA'),(125120,'Tohana','FATEHABAD','HARYANA'),(125121,'Hisar','HISAR','HARYANA'),(125133,'Tohana','FATEHABAD','HARYANA'),(125201,'Sirsa','SIRSA','HARYANA'),(126101,'Julana','JIND','HARYANA'),(126102,'Jind','JIND','HARYANA'),(126110,'Jind','JIND','HARYANA'),(126111,'Jind','JIND','HARYANA'),(126112,'Safidon','JIND','HARYANA'),(126113,'Safidon','JIND','HARYANA'),(126114,'Jind','JIND','HARYANA'),(126115,'Narwana','JIND','HARYANA'),(126116,'Narwana','JIND','HARYANA'),(126125,'Jind','JIND','HARYANA'),(126152,'Narwana','JIND','HARYANA'),(127021,'Bhiwani','BHIWANI','HARYANA'),(127022,'Dadri','BHIWANI','HARYANA'),(127025,'Dadri','BHIWANI','HARYANA'),(127026,'Dadri','BHIWANI','HARYANA'),(127027,'Bhiwani','BHIWANI','HARYANA'),(127028,'Loharu','BHIWANI','HARYANA'),(127029,'Bhiwani','BHIWANI','HARYANA'),(127030,'Bhiwani','BHIWANI','HARYANA'),(127031,'Bhiwani','BHIWANI','HARYANA'),(127032,'Bawani Khera','BHIWANI','HARYANA'),(127035,'Bawani Khera','BHIWANI','HARYANA'),(127040,'Tosham','BHIWANI','HARYANA'),(127041,'Bhiwani','BHIWANI','HARYANA'),(127042,'Dadri','BHIWANI','HARYANA'),(127043,'Tosham','BHIWANI','HARYANA'),(127045,'Siwani','BHIWANI','HARYANA'),(127046,'Siwani','BHIWANI','HARYANA'),(127111,'Tosham','BHIWANI','HARYANA'),(127114,'Bhiwani','BHIWANI','HARYANA'),(127201,'Loharu','BHIWANI','HARYANA'),(127306,'Dadri','BHIWANI','HARYANA'),(127307,'Dadri','BHIWANI','HARYANA'),(127308,'Dadri','BHIWANI','HARYANA'),(127309,'Bhiwani','BHIWANI','HARYANA'),(127310,'Dadri','BHIWANI','HARYANA'),(127311,'Bhiwani','BHIWANI','HARYANA'),(127312,'Dadri','BHIWANI','HARYANA'),(131001,'Sonipat','SONIPAT','HARYANA'),(131021,'Sonipat','SONIPAT','HARYANA'),(131022,'Sonipat','SONIPAT','HARYANA'),(131023,'Sonipat','SONIPAT','HARYANA'),(131024,'Sonipat','SONIPAT','HARYANA'),(131027,'Sonipat','SONIPAT','HARYANA'),(131028,'Sonipat','SONIPAT','HARYANA'),(131029,'Sonipat','SONIPAT','HARYANA'),(131039,'Sonipat','SONIPAT','HARYANA'),(131101,'Ganaur','SONIPAT','HARYANA'),(131102,'Ganaur','SONIPAT','HARYANA'),(131103,'Sonipat','SONIPAT','HARYANA'),(131301,'Gohana','SONIPAT','HARYANA'),(131302,'Gohana','SONIPAT','HARYANA'),(131304,'Gohana','SONIPAT','HARYANA'),(131305,'Gohana','SONIPAT','HARYANA'),(131306,'Gohana','SONIPAT','HARYANA'),(131402,'Kharkhoda','SONIPAT','HARYANA'),(131403,'Kharkhoda','SONIPAT','HARYANA'),(131408,'Kharkhoda','SONIPAT','HARYANA'),(131409,'Gohana','SONIPAT','HARYANA'),(132001,'Karnal','KARNAL','HARYANA'),(132022,'Karnal','KARNAL','HARYANA'),(132023,'Karnal','KARNAL','HARYANA'),(132024,'Karnal','KARNAL','HARYANA'),(132036,'Assandh','KARNAL','HARYANA'),(132037,'Karnal','KARNAL','HARYANA'),(132039,'Assandh','KARNAL','HARYANA'),(132040,'Gharaunda','KARNAL','HARYANA'),(132041,'Indri','KARNAL','HARYANA'),(132046,'Assandh','KARNAL','HARYANA'),(132054,'Indri','KARNAL','HARYANA'),(132101,'Samalkha','PANIPAT','HARYANA'),(132102,'Samalkha','PANIPAT','HARYANA'),(132103,'Panipat','PANIPAT','HARYANA'),(132104,'Samalkha','PANIPAT','HARYANA'),(132105,'Panipat','PANIPAT','HARYANA'),(132106,'Panipat','PANIPAT','HARYANA'),(132107,'Israna','PANIPAT','HARYANA'),(132108,'Panipat','PANIPAT','HARYANA'),(132113,'Israna','PANIPAT','HARYANA'),(132114,'Gharaunda','KARNAL','HARYANA'),(132115,'Samalkha','PANIPAT','HARYANA'),(132116,'Karnal','KARNAL','HARYANA'),(132117,'Nilokheri','KARNAL','HARYANA'),(132122,'Samalkha','PANIPAT','HARYANA'),(132140,'Panipat','PANIPAT','HARYANA'),(132145,'Israna','PANIPAT','HARYANA'),(132157,'Nilokheri','KARNAL','HARYANA'),(133001,'Ambala','AMBALA','HARYANA'),(133004,'Ambala','AMBALA','HARYANA'),(133005,'Ambala','AMBALA','HARYANA'),(133006,'Ambala','AMBALA','HARYANA'),(133101,'Ambala','AMBALA','HARYANA'),(133102,'Barara','AMBALA','HARYANA'),(133103,'Jagadhri','YAMUNA NAGAR','HARYANA'),(133104,'Jagadhri','YAMUNA NAGAR','HARYANA'),(133201,'Barara','AMBALA','HARYANA'),(133202,'Barara','AMBALA','HARYANA'),(133203,'Barara','AMBALA','HARYANA'),(133204,'Chhachhrauli','YAMUNA NAGAR','HARYANA'),(133205,'Naraingarh','AMBALA','HARYANA'),(133206,'Chhachhrauli','YAMUNA NAGAR','HARYANA'),(133207,'Ambala','AMBALA','HARYANA'),(133301,'Ambala','AMBALA','HARYANA'),(133302,'Kalka','PANCHKULA','HARYANA'),(134003,'Ambala','AMBALA','HARYANA'),(134007,'Ambala','AMBALA','HARYANA'),(134008,'Ambala','AMBALA','HARYANA'),(134101,'Kalka','PANCHKULA','HARYANA'),(134102,'Kalka','PANCHKULA','HARYANA'),(134103,'Panchkula','PANCHKULA','HARYANA'),(134104,'Kalka','PANCHKULA','HARYANA'),(134107,'Panchkula','PANCHKULA','HARYANA'),(134108,'Panchkula','PANCHKULA','HARYANA'),(134109,'Panchkula','PANCHKULA','HARYANA'),(134112,'Panchkula','PANCHKULA','HARYANA'),(134113,'Panchkula','PANCHKULA','HARYANA'),(134114,'Panchkula','PANCHKULA','HARYANA'),(134116,'Ambala','AMBALA','HARYANA'),(134117,'Panchkula','PANCHKULA','HARYANA'),(134118,'Panchkula','PANCHKULA','HARYANA'),(134201,'Naraingarh','AMBALA','HARYANA'),(134202,'Chhachhrauli','YAMUNA NAGAR','HARYANA'),(134203,'Naraingarh','AMBALA','HARYANA'),(134204,'Panchkula','PANCHKULA','HARYANA'),(134205,'Panchkula','PANCHKULA','HARYANA'),(135001,'Jagadhri','YAMUNA NAGAR','HARYANA'),(135002,'Jagadhri','YAMUNA NAGAR','HARYANA'),(135003,'Jagadhri','YAMUNA NAGAR','HARYANA'),(135004,'Jagadhri','YAMUNA NAGAR','HARYANA'),(135021,'Chhachhrauli','YAMUNA NAGAR','HARYANA'),(135101,'Jagadhri','YAMUNA NAGAR','HARYANA'),(135102,'Jagadhri','YAMUNA NAGAR','HARYANA'),(135103,'Chhachhrauli','YAMUNA NAGAR','HARYANA'),(135106,'Chhachhrauli','YAMUNA NAGAR','HARYANA'),(135133,'Jagadhri','YAMUNA NAGAR','HARYANA'),(136020,'Kaithal','KAITHAL','HARYANA'),(136021,'Kaithal','KAITHAL','HARYANA'),(136026,'Kaithal','KAITHAL','HARYANA'),(136027,'Kaithal','KAITHAL','HARYANA'),(136030,'Pehowa','KURUKSHETRA','HARYANA'),(136033,'Guhla','KAITHAL','HARYANA'),(136034,'Guhla','KAITHAL','HARYANA'),(136035,'Guhla','KAITHAL','HARYANA'),(136038,'Thanesar','KURUKSHETRA','HARYANA'),(136042,'Kaithal','KAITHAL','HARYANA'),(136043,'Kaithal','KAITHAL','HARYANA'),(136044,'Kaithal','KAITHAL','HARYANA'),(136117,'Kaithal','KAITHAL','HARYANA'),(136118,'Thanesar','KURUKSHETRA','HARYANA'),(136119,'Thanesar','KURUKSHETRA','HARYANA'),(136128,'Pehowa','KURUKSHETRA','HARYANA'),(136129,'Shahbad','KURUKSHETRA','HARYANA'),(136130,'Thanesar','KURUKSHETRA','HARYANA'),(136131,'Thanesar','KURUKSHETRA','HARYANA'),(136132,'Thanesar','KURUKSHETRA','HARYANA'),(136135,'Thanesar','KURUKSHETRA','HARYANA'),(136136,'Shahbad','KURUKSHETRA','HARYANA'),(136156,'Thanesar','KURUKSHETRA','HARYANA'),(140001,'Rupnagar','RUPNAGAR','PUNJAB'),(140101,'Rupnagar','RUPNAGAR','PUNJAB'),(140102,'Rupnagar','RUPNAGAR','PUNJAB'),(140103,'Rupnagar','RUPNAGAR','PUNJAB'),(140108,'Rupnagar','RUPNAGAR','PUNJAB'),(140109,'Kharar','RUPNAGAR','PUNJAB'),(140110,'Kharar','RUPNAGAR','PUNJAB'),(140111,'Rupnagar','RUPNAGAR','PUNJAB'),(140112,'Rupnagar','RUPNAGAR','PUNJAB'),(140113,'Rupnagar','RUPNAGAR','PUNJAB'),(140114,'Rupnagar','RUPNAGAR','PUNJAB'),(140115,'Rupnagar','RUPNAGAR','PUNJAB'),(140116,'Anandpur Sahib','RUPNAGAR','PUNJAB'),(140117,'Anandpur Sahib','RUPNAGAR','PUNJAB'),(140118,'Rupnagar','RUPNAGAR','PUNJAB'),(140119,'Anandpur Sahib','RUPNAGAR','PUNJAB'),(140123,'Anandpur Sahib','RUPNAGAR','PUNJAB'),(140124,'Anandpur Sahib','RUPNAGAR','PUNJAB'),(140125,'Anandpur Sahib','RUPNAGAR','PUNJAB'),(140126,'Anandpur Sahib','RUPNAGAR','PUNJAB'),(140133,'Anandpur Sahib','RUPNAGAR','PUNJAB'),(140201,'Dera Bassi','PATIALA','PUNJAB'),(140301,'Kharar','RUPNAGAR','PUNJAB'),(140306,'S.A.S.Nagar (Mohali)','RUPNAGAR','PUNJAB'),(140307,'Kharar','RUPNAGAR','PUNJAB'),(140308,'S.A.S.Nagar (Mohali)','RUPNAGAR','PUNJAB'),(140401,'Rajpura','PATIALA','PUNJAB'),(140402,'Rajpura','PATIALA','PUNJAB'),(140405,'Fatehgarh Sahib','FATEHGARH SAHIB','PUNJAB'),(140406,'Fatehgarh Sahib','FATEHGARH SAHIB','PUNJAB'),(140407,'Fatehgarh Sahib','FATEHGARH SAHIB','PUNJAB'),(140408,'Fatehgarh Sahib','FATEHGARH SAHIB','PUNJAB'),(140412,'Bassi Pathana','FATEHGARH SAHIB','PUNJAB'),(140413,'S.A.S.Nagar (Mohali)','RUPNAGAR','PUNJAB'),(140417,'Rajpura','PATIALA','PUNJAB'),(140501,'Dera Bassi','PATIALA','PUNJAB'),(140506,'Dera Bassi','PATIALA','PUNJAB'),(140507,'Dera Bassi','PATIALA','PUNJAB'),(140601,'Rajpura','PATIALA','PUNJAB'),(140602,'Fatehgarh Sahib','FATEHGARH SAHIB','PUNJAB'),(140603,'Rajpura','PATIALA','PUNJAB'),(140604,'Dera Bassi','PATIALA','PUNJAB'),(140701,'Patiala','PATIALA','PUNJAB'),(140702,'Rajpura','PATIALA','PUNJAB'),(140802,'Payal','LUDHIANA','PUNJAB'),(140901,'Chandigarh','CHANDIGARH','CHANDIGARH'),(141001,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141002,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141003,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141004,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141006,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141007,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141008,'Ludhiana (West)','LUDHIANA','PUNJAB'),(141010,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141012,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141013,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141014,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141015,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141016,'Ludhiana (West)','LUDHIANA','PUNJAB'),(141017,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141101,'Ludhiana (West)','LUDHIANA','PUNJAB'),(141102,'Raikot','LUDHIANA','PUNJAB'),(141103,'Ludhiana (West)','LUDHIANA','PUNJAB'),(141104,'Raikot','LUDHIANA','PUNJAB'),(141105,'Raikot','LUDHIANA','PUNJAB'),(141106,'Raikot','LUDHIANA','PUNJAB'),(141107,'Raikot','LUDHIANA','PUNJAB'),(141108,'Raikot','LUDHIANA','PUNJAB'),(141109,'Raikot','LUDHIANA','PUNJAB'),(141110,'Ludhiana (West)','LUDHIANA','PUNJAB'),(141112,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141113,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141114,'Samrala','LUDHIANA','PUNJAB'),(141115,'Samrala','LUDHIANA','PUNJAB'),(141116,'Ludhiana (West)','LUDHIANA','PUNJAB'),(141117,'Payal','LUDHIANA','PUNJAB'),(141118,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141119,'Payal','LUDHIANA','PUNJAB'),(141120,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141121,'Samrala','LUDHIANA','PUNJAB'),(141122,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141123,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141125,'Samrala','LUDHIANA','PUNJAB'),(141126,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141127,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141201,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141202,'Ludhiana (West)','LUDHIANA','PUNJAB'),(141203,'Ludhiana (West)','LUDHIANA','PUNJAB'),(141204,'Ludhiana (West)','LUDHIANA','PUNJAB'),(141205,'Raikot','LUDHIANA','PUNJAB'),(141206,'Ludhiana (East)','LUDHIANA','PUNJAB'),(141401,'Khanna','LUDHIANA','PUNJAB'),(141411,'Khamanon','FATEHGARH SAHIB','PUNJAB'),(141412,'Khanna','LUDHIANA','PUNJAB'),(141413,'Payal','LUDHIANA','PUNJAB'),(141414,'Khanna','LUDHIANA','PUNJAB'),(141415,'Payal','LUDHIANA','PUNJAB'),(141416,'Payal','LUDHIANA','PUNJAB'),(141417,'Samrala','LUDHIANA','PUNJAB'),(141418,'Samrala','LUDHIANA','PUNJAB'),(141419,'Payal','LUDHIANA','PUNJAB'),(141421,'Payal','LUDHIANA','PUNJAB'),(141422,'Raikot','LUDHIANA','PUNJAB'),(141801,'Khamanon','FATEHGARH SAHIB','PUNJAB'),(142001,'Moga','MOGA','PUNJAB'),(142002,'Moga','MOGA','PUNJAB'),(142003,'Moga','MOGA','PUNJAB'),(142011,'Moga','MOGA','PUNJAB'),(142021,'Ludhiana (West)','LUDHIANA','PUNJAB'),(142022,'Ludhiana (West)','LUDHIANA','PUNJAB'),(142023,'Jagraon','LUDHIANA','PUNJAB'),(142024,'Jagraon','LUDHIANA','PUNJAB'),(142025,'Ludhiana (West)','LUDHIANA','PUNJAB'),(142026,'Jagraon','LUDHIANA','PUNJAB'),(142027,'Ludhiana (West)','LUDHIANA','PUNJAB'),(142028,'Ludhiana (West)','LUDHIANA','PUNJAB'),(142029,'Ludhiana (West)','LUDHIANA','PUNJAB'),(142030,'Jagraon','LUDHIANA','PUNJAB'),(142031,'Jagraon','LUDHIANA','PUNJAB'),(142032,'Raikot','LUDHIANA','PUNJAB'),(142033,'Jagraon','LUDHIANA','PUNJAB'),(142034,'Jagraon','LUDHIANA','PUNJAB'),(142035,'Jagraon','LUDHIANA','PUNJAB'),(142036,'Jagraon','LUDHIANA','PUNJAB'),(142037,'Nihal Singhwala','MOGA','PUNJAB'),(142038,'Bhagha Purana','MOGA','PUNJAB'),(142039,'Nihal Singhwala','MOGA','PUNJAB'),(142040,'Moga','MOGA','PUNJAB'),(142041,'Moga','MOGA','PUNJAB'),(142042,'Moga','MOGA','PUNJAB'),(142043,'Zira','FIROZPUR','PUNJAB'),(142044,'Zira','FIROZPUR','PUNJAB'),(142045,'Nihal Singhwala','MOGA','PUNJAB'),(142046,'Nihal Singhwala','MOGA','PUNJAB'),(142047,'Zira','FIROZPUR','PUNJAB'),(142048,'Moga','MOGA','PUNJAB'),(142049,'Bhagha Purana','MOGA','PUNJAB'),(142050,'Zira','FIROZPUR','PUNJAB'),(142052,'Firozepur','FIROZPUR','PUNJAB'),(142053,'Moga','MOGA','PUNJAB'),(142054,'Moga','MOGA','PUNJAB'),(142055,'Nihal Singhwala','MOGA','PUNJAB'),(142056,'Nihal Singhwala','MOGA','PUNJAB'),(142057,'Bhagha Purana','MOGA','PUNJAB'),(142058,'Moga','MOGA','PUNJAB'),(142060,'Firozepur','FIROZPUR','PUNJAB'),(143001,'Amritsar -I','AMRITSAR','PUNJAB'),(143002,'Amritsar -I','AMRITSAR','PUNJAB'),(143005,'Amritsar -I','AMRITSAR','PUNJAB'),(143006,'Amritsar -I','AMRITSAR','PUNJAB'),(143008,'Amritsar- II','AMRITSAR','PUNJAB'),(143009,'Amritsar -I','AMRITSAR','PUNJAB'),(143022,'Amritsar- II','AMRITSAR','PUNJAB'),(143101,'Ajnala','AMRITSAR','PUNJAB'),(143102,'Ajnala','AMRITSAR','PUNJAB'),(143103,'Ajnala','AMRITSAR','PUNJAB'),(143105,'Amritsar -I','AMRITSAR','PUNJAB'),(143107,'TARN-TARAN','TARN TARAN','PUNJAB'),(143108,'Amritsar- II','AMRITSAR','PUNJAB'),(143109,'Ajnala','AMRITSAR','PUNJAB'),(143111,'Khadoor Sahib','TARN TARAN','PUNJAB'),(143112,'Khadoor Sahib','TARN TARAN','PUNJAB'),(143113,'Amritsar -I','AMRITSAR','PUNJAB'),(143114,'Baba Bakala','AMRITSAR','PUNJAB'),(143115,'Amritsar -I','AMRITSAR','PUNJAB'),(143116,'Baba Bakala','AMRITSAR','PUNJAB'),(143117,'Khadoor Sahib','TARN TARAN','PUNJAB'),(143118,'Khadoor Sahib','TARN TARAN','PUNJAB'),(143119,'Baba Bakala','AMRITSAR','PUNJAB'),(143149,'Ajnala','AMRITSAR','PUNJAB'),(143201,'Baba Bakala','AMRITSAR','PUNJAB'),(143202,'Baba Bakala','AMRITSAR','PUNJAB'),(143203,'Baba Bakala','AMRITSAR','PUNJAB'),(143204,'Baba Bakala','AMRITSAR','PUNJAB'),(143205,'Baba Bakala','AMRITSAR','PUNJAB'),(143301,'TARN-TARAN','TARN TARAN','PUNJAB'),(143302,'TARN-TARAN','TARN TARAN','PUNJAB'),(143303,'Patti','TARN TARAN','PUNJAB'),(143304,'Patti','TARN TARAN','PUNJAB'),(143305,'Patti','TARN TARAN','PUNJAB'),(143401,'TARN-TARAN','TARN TARAN','PUNJAB'),(143402,'TARN-TARAN','TARN TARAN','PUNJAB'),(143406,'TARN-TARAN','TARN TARAN','PUNJAB'),(143407,'Khadoor Sahib','TARN TARAN','PUNJAB'),(143408,'TARN-TARAN','TARN TARAN','PUNJAB'),(143409,'TARN-TARAN','TARN TARAN','PUNJAB'),(143410,'TARN-TARAN','TARN TARAN','PUNJAB'),(143411,'TARN-TARAN','TARN TARAN','PUNJAB'),(143412,'Patti','TARN TARAN','PUNJAB'),(143413,'Amritsar- II','AMRITSAR','PUNJAB'),(143414,'TARN-TARAN','TARN TARAN','PUNJAB'),(143415,'Patti','TARN TARAN','PUNJAB'),(143416,'Patti','TARN TARAN','PUNJAB'),(143419,'Patti','TARN TARAN','PUNJAB'),(143422,'Khadoor Sahib','TARN TARAN','PUNJAB'),(143501,'Amritsar- II','AMRITSAR','PUNJAB'),(143502,'Amritsar -I','AMRITSAR','PUNJAB'),(143504,'Amritsar -I','AMRITSAR','PUNJAB'),(143505,'Batala','GURDASPUR','PUNJAB'),(143506,'Batala','GURDASPUR','PUNJAB'),(143507,'Batala','GURDASPUR','PUNJAB'),(143511,'Batala','GURDASPUR','PUNJAB'),(143512,'Gurdaspur','GURDASPUR','PUNJAB'),(143513,'Batala','GURDASPUR','PUNJAB'),(143514,'Batala','GURDASPUR','PUNJAB'),(143515,'Batala','GURDASPUR','PUNJAB'),(143516,'Gurdaspur','GURDASPUR','PUNJAB'),(143517,'Gurdaspur','GURDASPUR','PUNJAB'),(143518,'Pathankot','Pathankot','PUNJAB'),(143519,'Gurdaspur','GURDASPUR','PUNJAB'),(143520,'Gurdaspur','GURDASPUR','PUNJAB'),(143521,'Gurdaspur','GURDASPUR','PUNJAB'),(143525,'Pathankot','Pathankot','PUNJAB'),(143526,'Gurdaspur','GURDASPUR','PUNJAB'),(143527,'Batala','GURDASPUR','PUNJAB'),(143528,'Gurdaspur','GURDASPUR','PUNJAB'),(143529,'Gurdaspur','GURDASPUR','PUNJAB'),(143530,'Gurdaspur','GURDASPUR','PUNJAB'),(143531,'Gurdaspur','GURDASPUR','PUNJAB'),(143532,'Gurdaspur','GURDASPUR','PUNJAB'),(143533,'Pathankot','Pathankot','PUNJAB'),(143534,'Pathankot','Pathankot','PUNJAB'),(143601,'Amritsar -I','AMRITSAR','PUNJAB'),(143602,'Batala','GURDASPUR','PUNJAB'),(143603,'Ajnala','AMRITSAR','PUNJAB'),(143604,'Dera Baba Nanak','GURDASPUR','PUNJAB'),(143605,'Dera Baba Nanak','GURDASPUR','PUNJAB'),(143606,'Ajnala','AMRITSAR','PUNJAB'),(144001,'Jalandhar - I','JALANDHAR','PUNJAB'),(144002,'Jalandhar -II','JALANDHAR','PUNJAB'),(144003,'Jalandhar - I','JALANDHAR','PUNJAB'),(144004,'Jalandhar - I','JALANDHAR','PUNJAB'),(144005,'Jalandhar -II','JALANDHAR','PUNJAB'),(144006,'Jalandhar -II','JALANDHAR','PUNJAB'),(144007,'Jalandhar -II','JALANDHAR','PUNJAB'),(144008,'Jalandhar - I','JALANDHAR','PUNJAB'),(144009,'Jalandhar - I','JALANDHAR','PUNJAB'),(144010,'Jalandhar -II','JALANDHAR','PUNJAB'),(144011,'Jalandhar -II','JALANDHAR','PUNJAB'),(144012,'Jalandhar - I','JALANDHAR','PUNJAB'),(144015,'Jalandhar - I','JALANDHAR','PUNJAB'),(144020,'Jalandhar - I','JALANDHAR','PUNJAB'),(144021,'Jalandhar -II','JALANDHAR','PUNJAB'),(144022,'Jalandhar -II','JALANDHAR','PUNJAB'),(144023,'Jalandhar -II','JALANDHAR','PUNJAB'),(144024,'Jalandhar - I','JALANDHAR','PUNJAB'),(144025,'Jalandhar -II','JALANDHAR','PUNJAB'),(144026,'Jalandhar -II','JALANDHAR','PUNJAB'),(144027,'Jalandhar - I','JALANDHAR','PUNJAB'),(144028,'Jalandhar -II','JALANDHAR','PUNJAB'),(144029,'Phillaur','JALANDHAR','PUNJAB'),(144030,'Jalandhar - I','JALANDHAR','PUNJAB'),(144031,'Phillaur','JALANDHAR','PUNJAB'),(144032,'Phillaur','JALANDHAR','PUNJAB'),(144033,'Phillaur','JALANDHAR','PUNJAB'),(144034,'Phillaur','JALANDHAR','PUNJAB'),(144035,'Phillaur','JALANDHAR','PUNJAB'),(144036,'Phillaur','JALANDHAR','PUNJAB'),(144037,'Phillaur','JALANDHAR','PUNJAB'),(144039,'Phillaur','JALANDHAR','PUNJAB'),(144040,'Shahkot','JALANDHAR','PUNJAB'),(144041,'Nakodar','JALANDHAR','PUNJAB'),(144042,'Nakodar','JALANDHAR','PUNJAB'),(144043,'Nakodar','JALANDHAR','PUNJAB'),(144044,'Nakodar','JALANDHAR','PUNJAB'),(144101,'Jalandhar - I','JALANDHAR','PUNJAB'),(144102,'Jalandhar - I','JALANDHAR','PUNJAB'),(144103,'Jalandhar - I','JALANDHAR','PUNJAB'),(144104,'Jalandhar - I','JALANDHAR','PUNJAB'),(144105,'Hoshiarpur','HOSHIARPUR','PUNJAB'),(144106,'Jalandhar - I','JALANDHAR','PUNJAB'),(144201,'Jalandhar -II','JALANDHAR','PUNJAB'),(144202,'Dasua','HOSHIARPUR','PUNJAB'),(144204,'Dasua','HOSHIARPUR','PUNJAB'),(144205,'Dasua','HOSHIARPUR','PUNJAB'),(144206,'Hoshiarpur','HOSHIARPUR','PUNJAB'),(144207,'Dasua','HOSHIARPUR','PUNJAB'),(144208,'Hoshiarpur','HOSHIARPUR','PUNJAB'),(144209,'Hoshiarpur','HOSHIARPUR','PUNJAB'),(144210,'Hoshiarpur','HOSHIARPUR','PUNJAB'),(144211,'Mukerian','HOSHIARPUR','PUNJAB'),(144212,'Dasua','HOSHIARPUR','PUNJAB'),(144213,'Dasua','HOSHIARPUR','PUNJAB'),(144214,'Dasua','HOSHIARPUR','PUNJAB'),(144216,'Dasua','HOSHIARPUR','PUNJAB'),(144221,'Mukerian','HOSHIARPUR','PUNJAB'),(144222,'Mukerian','HOSHIARPUR','PUNJAB'),(144223,'Mukerian','HOSHIARPUR','PUNJAB'),(144224,'Mukerian','HOSHIARPUR','PUNJAB'),(144301,'Jalandhar - I','JALANDHAR','PUNJAB'),(144302,'Jalandhar - I','JALANDHAR','PUNJAB'),(144303,'Jalandhar - I','JALANDHAR','PUNJAB'),(144305,'Dasua','HOSHIARPUR','PUNJAB'),(144306,'Dasua','HOSHIARPUR','PUNJAB'),(144311,'Phillaur','JALANDHAR','PUNJAB'),(144401,'Phagwara','KAPURTHALA','PUNJAB'),(144402,'Phagwara','KAPURTHALA','PUNJAB'),(144403,'Phagwara','KAPURTHALA','PUNJAB'),(144404,'Garhshankar','HOSHIARPUR','PUNJAB'),(144405,'Phagwara','KAPURTHALA','PUNJAB'),(144406,'Garhshankar','HOSHIARPUR','PUNJAB'),(144407,'Phagwara','KAPURTHALA','PUNJAB'),(144408,'Phagwara','KAPURTHALA','PUNJAB'),(144409,'Phillaur','JALANDHAR','PUNJAB'),(144410,'Ludhiana (West)','LUDHIANA','PUNJAB'),(144411,'Phagwara','KAPURTHALA','PUNJAB'),(144415,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144416,'Phillaur','JALANDHAR','PUNJAB'),(144417,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144418,'Phillaur','JALANDHAR','PUNJAB'),(144419,'Phillaur','JALANDHAR','PUNJAB'),(144421,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144422,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144501,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144502,'Phillaur','JALANDHAR','PUNJAB'),(144503,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144504,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144505,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144506,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144507,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144508,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144509,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144510,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144511,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144512,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144513,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144514,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144515,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144516,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144517,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144518,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144519,'Garhshankar','HOSHIARPUR','PUNJAB'),(144520,'Garhshankar','HOSHIARPUR','PUNJAB'),(144521,'Balachaur','NAWANSHAHR','PUNJAB'),(144522,'Balachaur','NAWANSHAHR','PUNJAB'),(144523,'Garhshankar','HOSHIARPUR','PUNJAB'),(144524,'Balachaur','NAWANSHAHR','PUNJAB'),(144525,'Balachaur','NAWANSHAHR','PUNJAB'),(144526,'Balachaur','NAWANSHAHR','PUNJAB'),(144527,'Garhshankar','HOSHIARPUR','PUNJAB'),(144528,'Garhshankar','HOSHIARPUR','PUNJAB'),(144529,'Garhshankar','HOSHIARPUR','PUNJAB'),(144530,'Garhshankar','HOSHIARPUR','PUNJAB'),(144531,'Garhshankar','HOSHIARPUR','PUNJAB'),(144532,'Garhshankar','HOSHIARPUR','PUNJAB'),(144533,'Balachaur','NAWANSHAHR','PUNJAB'),(144601,'Kapurthala','KAPURTHALA','PUNJAB'),(144602,'Kapurthala','KAPURTHALA','PUNJAB'),(144603,'Kapurthala','KAPURTHALA','PUNJAB'),(144606,'Sultanpur Lodhi','KAPURTHALA','PUNJAB'),(144620,'Sultanpur Lodhi','KAPURTHALA','PUNJAB'),(144621,'Kapurthala','KAPURTHALA','PUNJAB'),(144622,'Bhulath','KAPURTHALA','PUNJAB'),(144623,'Kapurthala','KAPURTHALA','PUNJAB'),(144624,'Bhulath','KAPURTHALA','PUNJAB'),(144625,'Kapurthala','KAPURTHALA','PUNJAB'),(144626,'Sultanpur Lodhi','KAPURTHALA','PUNJAB'),(144628,'Sultanpur Lodhi','KAPURTHALA','PUNJAB'),(144629,'Shahkot','JALANDHAR','PUNJAB'),(144630,'Nakodar','JALANDHAR','PUNJAB'),(144631,'Bhulath','KAPURTHALA','PUNJAB'),(144632,'Nawanshahr','NAWANSHAHR','PUNJAB'),(144633,'Phillaur','JALANDHAR','PUNJAB'),(144701,'Shahkot','JALANDHAR','PUNJAB'),(144702,'Shahkot','JALANDHAR','PUNJAB'),(144703,'Shahkot','JALANDHAR','PUNJAB'),(144801,'Jalandhar -II','JALANDHAR','PUNJAB'),(144802,'Kapurthala','KAPURTHALA','PUNJAB'),(144803,'Kapurthala','KAPURTHALA','PUNJAB'),(144804,'Kapurthala','KAPURTHALA','PUNJAB'),(144805,'Jalandhar -II','JALANDHAR','PUNJAB'),(144806,'Kapurthala','KAPURTHALA','PUNJAB'),(144819,'Sultanpur Lodhi','KAPURTHALA','PUNJAB'),(145001,'Pathankot','Pathankot','PUNJAB'),(145022,'Dhar Kalan','GURDASPUR','PUNJAB'),(145023,'Pathankot','Pathankot','PUNJAB'),(145024,'Pathankot','Pathankot','PUNJAB'),(145025,'Pathankot','Pathankot','PUNJAB'),(145026,'Pathankot','Pathankot','PUNJAB'),(145027,'Pathankot','Pathankot','PUNJAB'),(145029,'Pathankot','Pathankot','PUNJAB'),(145101,'Pathankot','Pathankot','PUNJAB'),(146001,'Hoshiarpur','HOSHIARPUR','PUNJAB'),(146021,'Hoshiarpur','HOSHIARPUR','PUNJAB'),(146022,'Hoshiarpur','HOSHIARPUR','PUNJAB'),(146023,'Hoshiarpur','HOSHIARPUR','PUNJAB'),(146024,'Hoshiarpur','HOSHIARPUR','PUNJAB'),(146101,'Garhshankar','HOSHIARPUR','PUNJAB'),(146102,'Hoshiarpur','HOSHIARPUR','PUNJAB'),(146103,'Garhshankar','HOSHIARPUR','PUNJAB'),(146104,'Hoshiarpur','HOSHIARPUR','PUNJAB'),(146105,'Garhshankar','HOSHIARPUR','PUNJAB'),(146106,'Garhshankar','HOSHIARPUR','PUNJAB'),(146107,'Garhshankar','HOSHIARPUR','PUNJAB'),(146108,'Garhshankar','HOSHIARPUR','PUNJAB'),(146109,'Garhshankar','HOSHIARPUR','PUNJAB'),(146110,'Hoshiarpur','HOSHIARPUR','PUNJAB'),(146111,'Hoshiarpur','HOSHIARPUR','PUNJAB'),(146112,'Hoshiarpur','HOSHIARPUR','PUNJAB'),(146113,'Hoshiarpur','HOSHIARPUR','PUNJAB'),(146114,'Hoshiarpur','HOSHIARPUR','PUNJAB'),(146115,'Hoshiarpur','HOSHIARPUR','PUNJAB'),(146116,'Dasua','HOSHIARPUR','PUNJAB'),(147001,'Patiala','PATIALA','PUNJAB'),(147002,'Patiala','PATIALA','PUNJAB'),(147003,'Patiala','PATIALA','PUNJAB'),(147004,'Fatehgarh Sahib','FATEHGARH SAHIB','PUNJAB'),(147005,'Patiala','PATIALA','PUNJAB'),(147006,'Fatehgarh Sahib','FATEHGARH SAHIB','PUNJAB'),(147007,'Patiala','PATIALA','PUNJAB'),(147021,'Rajpura','PATIALA','PUNJAB'),(147101,'Patiala','PATIALA','PUNJAB'),(147102,'Samana','PATIALA','PUNJAB'),(147103,'Patiala','PATIALA','PUNJAB'),(147104,'Nabha','PATIALA','PUNJAB'),(147105,'Samana','PATIALA','PUNJAB'),(147111,'Patiala','PATIALA','PUNJAB'),(147201,'Nabha','PATIALA','PUNJAB'),(147202,'Khamanon','FATEHGARH SAHIB','PUNJAB'),(147203,'Amloh (P)','FATEHGARH SAHIB','PUNJAB'),(147301,'Amloh (P)','FATEHGARH SAHIB','PUNJAB'),(148001,'Sangrur','SANGRUR','PUNJAB'),(148002,'Sangrur','SANGRUR','PUNJAB'),(148017,'Dhuri','SANGRUR','PUNJAB'),(148018,'Malerkotla','SANGRUR','PUNJAB'),(148019,'Malerkotla','SANGRUR','PUNJAB'),(148020,'Malerkotla','SANGRUR','PUNJAB'),(148021,'Malerkotla','SANGRUR','PUNJAB'),(148022,'Malerkotla','SANGRUR','PUNJAB'),(148023,'Malerkotla','SANGRUR','PUNJAB'),(148024,'Dhuri','SANGRUR','PUNJAB'),(148025,'Dhuri','SANGRUR','PUNJAB'),(148026,'Sangrur','SANGRUR','PUNJAB'),(148027,'Moonak','SANGRUR','PUNJAB'),(148028,'Sunam','SANGRUR','PUNJAB'),(148029,'Sunam','SANGRUR','PUNJAB'),(148030,'Sunam','SANGRUR','PUNJAB'),(148031,'Sunam','SANGRUR','PUNJAB'),(148033,'Moonak','SANGRUR','PUNJAB'),(148034,'Dhuri','SANGRUR','PUNJAB'),(148035,'Sunam','SANGRUR','PUNJAB'),(148100,'Barnala','BARNALA','PUNJAB'),(148101,'Barnala','BARNALA','PUNJAB'),(148102,'Barnala','BARNALA','PUNJAB'),(148103,'Barnala','BARNALA','PUNJAB'),(148104,'Barnala','BARNALA','PUNJAB'),(148105,'Barnala','BARNALA','PUNJAB'),(148106,'Sangrur','SANGRUR','PUNJAB'),(148107,'Barnala','BARNALA','PUNJAB'),(148108,'Barnala','BARNALA','PUNJAB'),(148109,'Barnala','BARNALA','PUNJAB'),(151001,'Bathinda','BATHINDA','PUNJAB'),(151002,'Bathinda','BATHINDA','PUNJAB'),(151003,'Bathinda','BATHINDA','PUNJAB'),(151004,'Bathinda','BATHINDA','PUNJAB'),(151005,'Bathinda','BATHINDA','PUNJAB'),(151101,'Bathinda','BATHINDA','PUNJAB'),(151102,'Rampura Phul','BATHINDA','PUNJAB'),(151103,'Rampura Phul','BATHINDA','PUNJAB'),(151104,'Rampura Phul','BATHINDA','PUNJAB'),(151105,'Rampura Phul','BATHINDA','PUNJAB'),(151106,'Rampura Phul','BATHINDA','PUNJAB'),(151108,'Rampura Phul','BATHINDA','PUNJAB'),(151111,'Bathinda','BATHINDA','PUNJAB'),(151201,'Bathinda','BATHINDA','PUNJAB'),(151202,'Giddarbaha','MUKTSAR','PUNJAB'),(151203,'Faridkot','FARIDKOT','PUNJAB'),(151204,'Faridkot','FARIDKOT','PUNJAB'),(151205,'Jaitu','FARIDKOT','PUNJAB'),(151206,'Rampura Phul','BATHINDA','PUNJAB'),(151207,'Bhagha Purana','MOGA','PUNJAB'),(151208,'Jaitu','FARIDKOT','PUNJAB'),(151209,'Faridkot','FARIDKOT','PUNJAB'),(151210,'Malout','MUKTSAR','PUNJAB'),(151211,'Malout','MUKTSAR','PUNJAB'),(151212,'Faridkot','FARIDKOT','PUNJAB'),(151213,'Faridkot','FARIDKOT','PUNJAB'),(151301,'Talwandi Sabo','BATHINDA','PUNJAB'),(151302,'Talwandi Sabo','BATHINDA','PUNJAB'),(151401,'Bathinda','BATHINDA','PUNJAB'),(151501,'Budhlada','MANSA','PUNJAB'),(151502,'Budhlada','MANSA','PUNJAB'),(151503,'Budhlada','MANSA','PUNJAB'),(151504,'Mansa','MANSA','PUNJAB'),(151505,'Sardulgarh','MANSA','PUNJAB'),(151506,'Sardulgarh','MANSA','PUNJAB'),(151507,'Sardulgarh','MANSA','PUNJAB'),(151508,'Mansa','MANSA','PUNJAB'),(151509,'Talwandi Sabo','BATHINDA','PUNJAB'),(151510,'Mansa','MANSA','PUNJAB'),(152001,'Firozepur','FIROZPUR','PUNJAB'),(152002,'Firozepur','FIROZPUR','PUNJAB'),(152003,'Firozepur','FIROZPUR','PUNJAB'),(152004,'Firozepur','FIROZPUR','PUNJAB'),(152005,'Zira','FIROZPUR','PUNJAB'),(152021,'Firozepur','FIROZPUR','PUNJAB'),(152022,'Jalalabad','Fazilka','PUNJAB'),(152023,'Firozepur','FIROZPUR','PUNJAB'),(152024,'Jalalabad','Fazilka','PUNJAB'),(152025,'Muktsar','MUKTSAR','PUNJAB'),(152026,'Muktsar','MUKTSAR','PUNJAB'),(152028,'Zira','FIROZPUR','PUNJAB'),(152031,'Giddarbaha','MUKTSAR','PUNJAB'),(152032,'Muktsar','MUKTSAR','PUNJAB'),(152033,'Jalalabad','Fazilka','PUNJAB'),(152101,'Giddarbaha','MUKTSAR','PUNJAB'),(152107,'Malout','MUKTSAR','PUNJAB'),(152112,'Malout','MUKTSAR','PUNJAB'),(152113,'Malout','MUKTSAR','PUNJAB'),(152114,'Malout','MUKTSAR','PUNJAB'),(152115,'Malout','MUKTSAR','PUNJAB'),(152116,'Abohar','Fazilka','PUNJAB'),(152117,'Abohar','Fazilka','PUNJAB'),(152118,'Abohar','Fazilka','PUNJAB'),(152121,'Fazilka','Fazilka','PUNJAB'),(152122,'Fazilka','Fazilka','PUNJAB'),(152123,'Fazilka','Fazilka','PUNJAB'),(152124,'Fazilka','Fazilka','PUNJAB'),(152128,'Abohar','Fazilka','PUNJAB'),(152132,'Abohar','Fazilka','PUNJAB'),(160001,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160002,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160003,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160004,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160009,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160011,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160012,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160014,'Kharar','RUPNAGAR','PUNJAB'),(160015,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160017,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160018,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160019,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160020,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160022,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160023,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160025,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160030,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160036,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160043,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160047,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160055,'S.A.S.Nagar (Mohali)','RUPNAGAR','PUNJAB'),(160059,'S.A.S.Nagar (Mohali)','RUPNAGAR','PUNJAB'),(160062,'S.A.S.Nagar (Mohali)','RUPNAGAR','PUNJAB'),(160071,'S.A.S.Nagar (Mohali)','RUPNAGAR','PUNJAB'),(160101,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160102,'Chandigarh','CHANDIGARH','CHANDIGARH'),(160103,'Kharar','RUPNAGAR','PUNJAB'),(160104,'Dera Bassi','PATIALA','PUNJAB'),(171001,'Shimla Urban(T)','SHIMLA','HIMACHAL PRADESH'),(171002,'Shimla Urban(T)','SHIMLA','HIMACHAL PRADESH'),(171003,'Shimla Rural(T)','SHIMLA','HIMACHAL PRADESH'),(171004,'Shimla Rural(T)','SHIMLA','HIMACHAL PRADESH'),(171005,'Shimla Rural(T)','SHIMLA','HIMACHAL PRADESH'),(171006,'Shimla Rural(T)','SHIMLA','HIMACHAL PRADESH'),(171007,'Shimla Urban(T)','SHIMLA','HIMACHAL PRADESH'),(171008,'Shimla Urban(T)','SHIMLA','HIMACHAL PRADESH'),(171009,'Shimla Rural(T)','SHIMLA','HIMACHAL PRADESH'),(171010,'Shimla Urban(T)','SHIMLA','HIMACHAL PRADESH'),(171011,'Shimla Rural(T)','SHIMLA','HIMACHAL PRADESH'),(171012,'Shimla Urban(T)','SHIMLA','HIMACHAL PRADESH'),(171013,'Shimla Rural(T)','SHIMLA','HIMACHAL PRADESH'),(171014,'Shimla Rural(T)','SHIMLA','HIMACHAL PRADESH'),(171018,'Seoni(T)','SHIMLA','HIMACHAL PRADESH'),(171019,'Seoni(T)','SHIMLA','HIMACHAL PRADESH'),(171102,'Arki(T)','SOLAN','HIMACHAL PRADESH'),(171103,'Seoni(T)','SHIMLA','HIMACHAL PRADESH'),(171201,'Theog(T)','SHIMLA','HIMACHAL PRADESH'),(171202,'Kotkhai(T)','SHIMLA','HIMACHAL PRADESH'),(171203,'Tikar(S.T)','SHIMLA','HIMACHAL PRADESH'),(171204,'Kotkhai(T)','SHIMLA','HIMACHAL PRADESH'),(171205,'Rohru(T)','SHIMLA','HIMACHAL PRADESH'),(171206,'Jubbal(T)','SHIMLA','HIMACHAL PRADESH'),(171207,'Rohru(T)','SHIMLA','HIMACHAL PRADESH'),(171208,'Chirgaon(T)','SHIMLA','HIMACHAL PRADESH'),(171209,'Theog(T)','SHIMLA','HIMACHAL PRADESH'),(171210,'Nerua(S.T)','SHIMLA','HIMACHAL PRADESH'),(171211,'Chaupal(T)','SHIMLA','HIMACHAL PRADESH'),(171212,'Theog(T)','SHIMLA','HIMACHAL PRADESH'),(171213,'Kumharsain(T)','SHIMLA','HIMACHAL PRADESH'),(171214,'Chirgaon(T)','SHIMLA','HIMACHAL PRADESH'),(171215,'Jubbal(T)','SHIMLA','HIMACHAL PRADESH'),(171216,'Jubbal(T)','SHIMLA','HIMACHAL PRADESH'),(171217,'Cheta(S.T)','SHIMLA','HIMACHAL PRADESH'),(171218,'Junga(S.T)','SHIMLA','HIMACHAL PRADESH'),(171219,'Shimla Rural(T)','SHIMLA','HIMACHAL PRADESH'),(171220,'Theog(T)','SHIMLA','HIMACHAL PRADESH'),(171221,'Dodra Kwar(T)','SHIMLA','HIMACHAL PRADESH'),(171222,'Theog(T)','SHIMLA','HIMACHAL PRADESH'),(171223,'Rohru(T)','SHIMLA','HIMACHAL PRADESH'),(171224,'Rohru(T)','SHIMLA','HIMACHAL PRADESH'),(171225,'Kotkhai(T)','SHIMLA','HIMACHAL PRADESH'),(171226,'Theog(T)','SHIMLA','HIMACHAL PRADESH'),(171301,'Seoni(T)','SHIMLA','HIMACHAL PRADESH'),(172001,'Rampur(T)','SHIMLA','HIMACHAL PRADESH'),(172002,'Nermand(T)','KULLU','HIMACHAL PRADESH'),(172021,'Nankhari(S.T)','SHIMLA','HIMACHAL PRADESH'),(172022,'Rampur(T)','SHIMLA','HIMACHAL PRADESH'),(172023,'Nermand(T)','KULLU','HIMACHAL PRADESH'),(172024,'Kumharsain(T)','SHIMLA','HIMACHAL PRADESH'),(172025,'Ani(S.T)','KULLU','HIMACHAL PRADESH'),(172026,'Ani(S.T)','KULLU','HIMACHAL PRADESH'),(172027,'Kumharsain(T)','SHIMLA','HIMACHAL PRADESH'),(172028,'Nankhari(S.T)','SHIMLA','HIMACHAL PRADESH'),(172029,'Kumharsain(T)','SHIMLA','HIMACHAL PRADESH'),(172030,'Kumharsain(T)','SHIMLA','HIMACHAL PRADESH'),(172031,'Kumharsain(T)','SHIMLA','HIMACHAL PRADESH'),(172032,'Nermand(T)','KULLU','HIMACHAL PRADESH'),(172033,'Nermand(T)','KULLU','HIMACHAL PRADESH'),(172034,'Rampur(T)','SHIMLA','HIMACHAL PRADESH'),(172101,'Nichar(T)','KINNAUR','HIMACHAL PRADESH'),(172102,'Rampur(T)','SHIMLA','HIMACHAL PRADESH'),(172103,'Nichar(T)','KINNAUR','HIMACHAL PRADESH'),(172104,'Nichar(T)','KINNAUR','HIMACHAL PRADESH'),(172105,'Sangla(T)','KINNAUR','HIMACHAL PRADESH'),(172106,'Sangla(T)','KINNAUR','HIMACHAL PRADESH'),(172107,'Kalpa(T)','KINNAUR','HIMACHAL PRADESH'),(172108,'Kalpa(T)','KINNAUR','HIMACHAL PRADESH'),(172109,'Morang(T)','KINNAUR','HIMACHAL PRADESH'),(172110,'Poo(T)','KINNAUR','HIMACHAL PRADESH'),(172111,'Hangrang(S.T)','KINNAUR','HIMACHAL PRADESH'),(172112,'Hangrang(S.T)','KINNAUR','HIMACHAL PRADESH'),(172113,'Spiti (T)','LAHUL & SPITI','HIMACHAL PRADESH'),(172114,'Spiti (T)','LAHUL & SPITI','HIMACHAL PRADESH'),(172115,'Nichar(T)','KINNAUR','HIMACHAL PRADESH'),(172116,'Morang(T)','KINNAUR','HIMACHAL PRADESH'),(172117,'Spiti (T)','LAHUL & SPITI','HIMACHAL PRADESH'),(172118,'Nichar(T)','KINNAUR','HIMACHAL PRADESH'),(172201,'Rampur(T)','SHIMLA','HIMACHAL PRADESH'),(173001,'Paonta Sahib(T)','SIRMAUR','HIMACHAL PRADESH'),(173021,'Paonta Sahib(T)','SIRMAUR','HIMACHAL PRADESH'),(173022,'Paonta Sahib(T)','SIRMAUR','HIMACHAL PRADESH'),(173023,'Renuka(T)','SIRMAUR','HIMACHAL PRADESH'),(173024,'Pachhad(T)','SIRMAUR','HIMACHAL PRADESH'),(173025,'Paonta Sahib(T)','SIRMAUR','HIMACHAL PRADESH'),(173026,'Nahan(T)','SIRMAUR','HIMACHAL PRADESH'),(173027,'Ronhat(S.T)','SIRMAUR','HIMACHAL PRADESH'),(173029,'Kamrau(S.T)','SIRMAUR','HIMACHAL PRADESH'),(173030,'Nahan(T)','SIRMAUR','HIMACHAL PRADESH'),(173031,'Paonta Sahib(T)','SIRMAUR','HIMACHAL PRADESH'),(173032,'Renuka(T)','SIRMAUR','HIMACHAL PRADESH'),(173101,'Rajgarh(T)','SIRMAUR','HIMACHAL PRADESH'),(173104,'Nohra(S.T)','SIRMAUR','HIMACHAL PRADESH'),(173201,'Kasauli(T)','SOLAN','HIMACHAL PRADESH'),(173202,'Kasauli(T)','SOLAN','HIMACHAL PRADESH'),(173204,'Kasauli(T)','SOLAN','HIMACHAL PRADESH'),(173205,'Nalagarh(T)','SOLAN','HIMACHAL PRADESH'),(173206,'Solan(T)','SOLAN','HIMACHAL PRADESH'),(173207,'Kandaghat(T)','SOLAN','HIMACHAL PRADESH'),(173208,'Arki(T)','SOLAN','HIMACHAL PRADESH'),(173209,'Kasauli(T)','SOLAN','HIMACHAL PRADESH'),(173210,'Solan(T)','SOLAN','HIMACHAL PRADESH'),(173211,'Solan(T)','SOLAN','HIMACHAL PRADESH'),(173212,'Solan(T)','SOLAN','HIMACHAL PRADESH'),(173213,'Solan(T)','SOLAN','HIMACHAL PRADESH'),(173214,'Solan(T)','SOLAN','HIMACHAL PRADESH'),(173215,'Kandaghat(T)','SOLAN','HIMACHAL PRADESH'),(173217,'Kandaghat(T)','SOLAN','HIMACHAL PRADESH'),(173218,'Arki(T)','SOLAN','HIMACHAL PRADESH'),(173220,'Kasauli(T)','SOLAN','HIMACHAL PRADESH'),(173221,'Arki(T)','SOLAN','HIMACHAL PRADESH'),(173222,'Kandaghat(T)','SOLAN','HIMACHAL PRADESH'),(173223,'Solan(T)','SOLAN','HIMACHAL PRADESH'),(173225,'Krishangarh(S.T)','SOLAN','HIMACHAL PRADESH'),(173229,'Solan(T)','SOLAN','HIMACHAL PRADESH'),(173230,'Solan(T)','SOLAN','HIMACHAL PRADESH'),(173233,'Kasauli(T)','SOLAN','HIMACHAL PRADESH'),(173234,'Kandaghat(T)','SOLAN','HIMACHAL PRADESH'),(173235,'Arki(T)','SOLAN','HIMACHAL PRADESH'),(173236,'Krishangarh(S.T)','SOLAN','HIMACHAL PRADESH'),(174001,'Bilaspur Sadar(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174002,'Naina Devi(S.T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174003,'Ghumarwin(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174004,'Bilaspur Sadar(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174005,'Bilaspur Sadar(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174011,'Naina Devi(S.T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174012,'Bilaspur Sadar(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174013,'Bilaspur Sadar(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174015,'Naina Devi(S.T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174017,'Jhanduta(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174021,'Ghumarwin(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174023,'Ghumarwin(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174024,'Jhanduta(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174026,'Ghumarwin(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174027,'Ghumarwin(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174028,'Ghumarwin(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174029,'Jhanduta(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174030,'Jhanduta(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174031,'Jhanduta(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174032,'Bilaspur Sadar(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174033,'Bilaspur Sadar(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174034,'Jhanduta(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174035,'Jhanduta(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174036,'Bilaspur Sadar(T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174101,'Nalagarh(T)','SOLAN','HIMACHAL PRADESH'),(174102,'Ramshahr(S.T)','SOLAN','HIMACHAL PRADESH'),(174103,'Kasauli(T)','SOLAN','HIMACHAL PRADESH'),(174201,'Naina Devi(S.T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174301,'Una(T)','UNA','HIMACHAL PRADESH'),(174302,'Amb(T)','UNA','HIMACHAL PRADESH'),(174303,'Una(T)','UNA','HIMACHAL PRADESH'),(174304,'Barsar(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(174305,'Barsar(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(174306,'Una(T)','UNA','HIMACHAL PRADESH'),(174307,'Bangana(T)','UNA','HIMACHAL PRADESH'),(174308,'Bangana(T)','UNA','HIMACHAL PRADESH'),(174309,'Barsar(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(174310,'Naina Devi(S.T)','BILASPUR (HP)','HIMACHAL PRADESH'),(174311,'Barsar(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(174312,'Barsar(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(174314,'Bangana(T)','UNA','HIMACHAL PRADESH'),(174315,'Una(T)','UNA','HIMACHAL PRADESH'),(174316,'Amb(T)','UNA','HIMACHAL PRADESH'),(174317,'Una(T)','UNA','HIMACHAL PRADESH'),(174319,'Amb(T)','UNA','HIMACHAL PRADESH'),(174320,'Bangana(T)','UNA','HIMACHAL PRADESH'),(174321,'Bangana(T)','UNA','HIMACHAL PRADESH'),(174405,'Nadaun(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(174503,'Haroli(S.T)','UNA','HIMACHAL PRADESH'),(174505,'Hamirpur(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(174507,'Haroli(S.T)','UNA','HIMACHAL PRADESH'),(175001,'Mandi(T)','MANDI','HIMACHAL PRADESH'),(175002,'Sundarnagar(T)','MANDI','HIMACHAL PRADESH'),(175003,'Kotli(S.T)','MANDI','HIMACHAL PRADESH'),(175004,'Baldwara(S.T)','MANDI','HIMACHAL PRADESH'),(175005,'Padhar(T)','MANDI','HIMACHAL PRADESH'),(175006,'Mandi(T)','MANDI','HIMACHAL PRADESH'),(175007,'Sarkaghat(T)','MANDI','HIMACHAL PRADESH'),(175008,'Mandi(T)','MANDI','HIMACHAL PRADESH'),(175009,'Nihri(S.T)','MANDI','HIMACHAL PRADESH'),(175010,'Karsog(T)','MANDI','HIMACHAL PRADESH'),(175011,'Karsog(T)','MANDI','HIMACHAL PRADESH'),(175012,'Padhar(T)','MANDI','HIMACHAL PRADESH'),(175013,'Multhan(S.T)','KANGRA','HIMACHAL PRADESH'),(175014,'Jogindarnagar(T)','MANDI','HIMACHAL PRADESH'),(175015,'Jogindarnagar(T)','MANDI','HIMACHAL PRADESH'),(175016,'Lad Bharol(T)','MANDI','HIMACHAL PRADESH'),(175017,'Sundarnagar(T)','MANDI','HIMACHAL PRADESH'),(175018,'Sundarnagar(T)','MANDI','HIMACHAL PRADESH'),(175019,'Sundarnagar(T)','MANDI','HIMACHAL PRADESH'),(175021,'Mandi(T)','MANDI','HIMACHAL PRADESH'),(175023,'Mandi(T)','MANDI','HIMACHAL PRADESH'),(175024,'Sarkaghat(T)','MANDI','HIMACHAL PRADESH'),(175025,'Sarkaghat(T)','MANDI','HIMACHAL PRADESH'),(175026,'Sarkaghat(T)','MANDI','HIMACHAL PRADESH'),(175027,'Mandi(T)','MANDI','HIMACHAL PRADESH'),(175028,'Chachyot(T)','MANDI','HIMACHAL PRADESH'),(175029,'Chachyot(T)','MANDI','HIMACHAL PRADESH'),(175030,'Sundarnagar(T)','MANDI','HIMACHAL PRADESH'),(175031,'Nihri(S.T)','MANDI','HIMACHAL PRADESH'),(175032,'Jogindarnagar(T)','MANDI','HIMACHAL PRADESH'),(175033,'Baldwara(S.T)','MANDI','HIMACHAL PRADESH'),(175034,'Baldwara(S.T)','MANDI','HIMACHAL PRADESH'),(175035,'Thunag(T)','MANDI','HIMACHAL PRADESH'),(175036,'Mandi(T)','MANDI','HIMACHAL PRADESH'),(175037,'Sarkaghat(T)','MANDI','HIMACHAL PRADESH'),(175038,'Nihri(S.T)','MANDI','HIMACHAL PRADESH'),(175039,'Chachyot(T)','MANDI','HIMACHAL PRADESH'),(175040,'Dharmpur(S.T)','MANDI','HIMACHAL PRADESH'),(175042,'Sarkaghat(T)','MANDI','HIMACHAL PRADESH'),(175045,'Chachyot(T)','MANDI','HIMACHAL PRADESH'),(175046,'Karsog(T)','MANDI','HIMACHAL PRADESH'),(175047,'Thunag(T)','MANDI','HIMACHAL PRADESH'),(175048,'Thunag(T)','MANDI','HIMACHAL PRADESH'),(175049,'Sarkaghat(T)','MANDI','HIMACHAL PRADESH'),(175050,'Dharmpur(S.T)','MANDI','HIMACHAL PRADESH'),(175051,'Sandhol(S.T)','MANDI','HIMACHAL PRADESH'),(175052,'Kotli(S.T)','MANDI','HIMACHAL PRADESH'),(175101,'Baldwara(S.T)','MANDI','HIMACHAL PRADESH'),(175102,'Kullu(T)','KULLU','HIMACHAL PRADESH'),(175103,'Manali(T)','KULLU','HIMACHAL PRADESH'),(175104,'Kullu(T)','KULLU','HIMACHAL PRADESH'),(175105,'Kullu(T)','KULLU','HIMACHAL PRADESH'),(175106,'Bali Chowki(S.T)','MANDI','HIMACHAL PRADESH'),(175121,'Aut(S.T)','MANDI','HIMACHAL PRADESH'),(175122,'Sainj(S.T)','KULLU','HIMACHAL PRADESH'),(175123,'Banjar(T)','KULLU','HIMACHAL PRADESH'),(175124,'Chachyot(T)','MANDI','HIMACHAL PRADESH'),(175125,'Aut(S.T)','MANDI','HIMACHAL PRADESH'),(175126,'Kullu(T)','KULLU','HIMACHAL PRADESH'),(175128,'Kullu(T)','KULLU','HIMACHAL PRADESH'),(175129,'Kullu(T)','KULLU','HIMACHAL PRADESH'),(175130,'Kullu(T)','KULLU','HIMACHAL PRADESH'),(175131,'Manali(T)','KULLU','HIMACHAL PRADESH'),(175132,'Lahul (T)','LAHUL & SPITI','HIMACHAL PRADESH'),(175133,'Lahul (T)','LAHUL & SPITI','HIMACHAL PRADESH'),(175134,'Sainj(S.T)','KULLU','HIMACHAL PRADESH'),(175136,'Kullu(T)','KULLU','HIMACHAL PRADESH'),(175138,'Kullu(T)','KULLU','HIMACHAL PRADESH'),(175139,'Udaipur (S.T)','LAHUL & SPITI','HIMACHAL PRADESH'),(175140,'Lahul (T)','LAHUL & SPITI','HIMACHAL PRADESH'),(175141,'Kullu(T)','KULLU','HIMACHAL PRADESH'),(175142,'Udaipur (S.T)','LAHUL & SPITI','HIMACHAL PRADESH'),(175143,'Manali(T)','KULLU','HIMACHAL PRADESH'),(176001,'Kangra(T)','KANGRA','HIMACHAL PRADESH'),(176021,'Jawali(T)','KANGRA','HIMACHAL PRADESH'),(176022,'Nurpur(T)','KANGRA','HIMACHAL PRADESH'),(176023,'Jawali(T)','KANGRA','HIMACHAL PRADESH'),(176025,'Fatehpur(T)','KANGRA','HIMACHAL PRADESH'),(176026,'Harchakian(S.T)','KANGRA','HIMACHAL PRADESH'),(176027,'Jawali(T)','KANGRA','HIMACHAL PRADESH'),(176028,'Dera Gopipur(T)','KANGRA','HIMACHAL PRADESH'),(176029,'Dera Gopipur(T)','KANGRA','HIMACHAL PRADESH'),(176030,'Khundian(T)','KANGRA','HIMACHAL PRADESH'),(176031,'Dera Gopipur(T)','KANGRA','HIMACHAL PRADESH'),(176032,'Khundian(T)','KANGRA','HIMACHAL PRADESH'),(176033,'Dera Gopipur(T)','KANGRA','HIMACHAL PRADESH'),(176036,'Dera Gopipur(T)','KANGRA','HIMACHAL PRADESH'),(176037,'Baroh(T)','KANGRA','HIMACHAL PRADESH'),(176038,'Kangra(T)','KANGRA','HIMACHAL PRADESH'),(176039,'Dhatwal(St)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(176040,'Dhatwal(St)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(176041,'Barsar(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(176042,'Hamirpur(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(176043,'Bhoranj(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(176044,'Bhoranj(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(176045,'Bhoranj(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(176047,'Kangra(T)','KANGRA','HIMACHAL PRADESH'),(176048,'Bhoranj(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(176049,'Dhatwal(St)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(176051,'Fatehpur(T)','KANGRA','HIMACHAL PRADESH'),(176052,'Dharmsala(T)','KANGRA','HIMACHAL PRADESH'),(176053,'Fatehpur(T)','KANGRA','HIMACHAL PRADESH'),(176054,'Baroh(T)','KANGRA','HIMACHAL PRADESH'),(176055,'Khundian(T)','KANGRA','HIMACHAL PRADESH'),(176056,'Baroh(T)','KANGRA','HIMACHAL PRADESH'),(176057,'Dharmsala(T)','KANGRA','HIMACHAL PRADESH'),(176058,'Indora(T)','KANGRA','HIMACHAL PRADESH'),(176059,'Palampur(T)','KANGRA','HIMACHAL PRADESH'),(176060,'Palampur(T)','KANGRA','HIMACHAL PRADESH'),(176061,'Palampur(T)','KANGRA','HIMACHAL PRADESH'),(176062,'Palampur(T)','KANGRA','HIMACHAL PRADESH'),(176063,'Baijnath(T)','KANGRA','HIMACHAL PRADESH'),(176064,'Palampur(T)','KANGRA','HIMACHAL PRADESH'),(176065,'Dhira(S.T)','KANGRA','HIMACHAL PRADESH'),(176066,'Dera Gopipur(T)','KANGRA','HIMACHAL PRADESH'),(176071,'Baijnath(T)','KANGRA','HIMACHAL PRADESH'),(176073,'Thural(S.T)','KANGRA','HIMACHAL PRADESH'),(176075,'Thural(S.T)','KANGRA','HIMACHAL PRADESH'),(176076,'Palampur(T)','KANGRA','HIMACHAL PRADESH'),(176077,'Baijnath(T)','KANGRA','HIMACHAL PRADESH'),(176081,'Baijnath(T)','KANGRA','HIMACHAL PRADESH'),(176082,'Jai Singhpur(T)','KANGRA','HIMACHAL PRADESH'),(176083,'Palampur(T)','KANGRA','HIMACHAL PRADESH'),(176084,'Dhira(S.T)','KANGRA','HIMACHAL PRADESH'),(176085,'Palampur(T)','KANGRA','HIMACHAL PRADESH'),(176086,'Palampur(T)','KANGRA','HIMACHAL PRADESH'),(176087,'Palampur(T)','KANGRA','HIMACHAL PRADESH'),(176088,'Baijnath(T)','KANGRA','HIMACHAL PRADESH'),(176089,'Jai Singhpur(T)','KANGRA','HIMACHAL PRADESH'),(176090,'Sandhol(S.T)','MANDI','HIMACHAL PRADESH'),(176091,'Jai Singhpur(T)','KANGRA','HIMACHAL PRADESH'),(176092,'Palampur(T)','KANGRA','HIMACHAL PRADESH'),(176093,'Palampur(T)','KANGRA','HIMACHAL PRADESH'),(176094,'Jai Singhpur(T)','KANGRA','HIMACHAL PRADESH'),(176095,'Jai Singhpur(T)','KANGRA','HIMACHAL PRADESH'),(176096,'Jai Singhpur(T)','KANGRA','HIMACHAL PRADESH'),(176097,'Jai Singhpur(T)','KANGRA','HIMACHAL PRADESH'),(176098,'Khundian(T)','KANGRA','HIMACHAL PRADESH'),(176101,'Dhira(S.T)','KANGRA','HIMACHAL PRADESH'),(176102,'Palampur(T)','KANGRA','HIMACHAL PRADESH'),(176103,'Palampur(T)','KANGRA','HIMACHAL PRADESH'),(176107,'Thural(S.T)','KANGRA','HIMACHAL PRADESH'),(176108,'Tira Sujanpur(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(176109,'Tira Sujanpur(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(176110,'Tira Sujanpur(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(176111,'Tira Sujanpur(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(176115,'Baijnath(T)','KANGRA','HIMACHAL PRADESH'),(176125,'Baijnath(T)','KANGRA','HIMACHAL PRADESH'),(176128,'Baijnath(T)','KANGRA','HIMACHAL PRADESH'),(176200,'Nurpur(T)','KANGRA','HIMACHAL PRADESH'),(176201,'Nurpur(T)','KANGRA','HIMACHAL PRADESH'),(176202,'Nurpur(T)','KANGRA','HIMACHAL PRADESH'),(176203,'Nurpur(T)','KANGRA','HIMACHAL PRADESH'),(176204,'Nurpur(T)','KANGRA','HIMACHAL PRADESH'),(176205,'Nurpur(T)','KANGRA','HIMACHAL PRADESH'),(176206,'Shahpur(T)','KANGRA','HIMACHAL PRADESH'),(176207,'Sihunta(S.T)','CHAMBA','HIMACHAL PRADESH'),(176208,'Shahpur(T)','KANGRA','HIMACHAL PRADESH'),(176209,'Kangra(T)','KANGRA','HIMACHAL PRADESH'),(176210,'Harchakian(S.T)','KANGRA','HIMACHAL PRADESH'),(176211,'Nurpur(T)','KANGRA','HIMACHAL PRADESH'),(176213,'Dharmsala(T)','KANGRA','HIMACHAL PRADESH'),(176214,'Jawali(T)','KANGRA','HIMACHAL PRADESH'),(176215,'Dharmsala(T)','KANGRA','HIMACHAL PRADESH'),(176216,'Dharmsala(T)','KANGRA','HIMACHAL PRADESH'),(176217,'Shahpur(T)','KANGRA','HIMACHAL PRADESH'),(176218,'Dharmsala(T)','KANGRA','HIMACHAL PRADESH'),(176219,'Dharmsala(T)','KANGRA','HIMACHAL PRADESH'),(176225,'Jawali(T)','KANGRA','HIMACHAL PRADESH'),(176301,'Sihunta(S.T)','CHAMBA','HIMACHAL PRADESH'),(176302,'Bhattiyat(T)','CHAMBA','HIMACHAL PRADESH'),(176303,'Dalhousie(T)','CHAMBA','HIMACHAL PRADESH'),(176304,'Dalhousie(T)','CHAMBA','HIMACHAL PRADESH'),(176305,'Dalhousie(T)','CHAMBA','HIMACHAL PRADESH'),(176306,'Dalhousie(T)','CHAMBA','HIMACHAL PRADESH'),(176308,'Bhalai(S.T)','CHAMBA','HIMACHAL PRADESH'),(176309,'Holi(S.T)','CHAMBA','HIMACHAL PRADESH'),(176310,'Chamba(T)','CHAMBA','HIMACHAL PRADESH'),(176311,'Chamba(T)','CHAMBA','HIMACHAL PRADESH'),(176312,'Chamba(T)','CHAMBA','HIMACHAL PRADESH'),(176313,'Bhattiyat(T)','CHAMBA','HIMACHAL PRADESH'),(176314,'Chamba(T)','CHAMBA','HIMACHAL PRADESH'),(176315,'Brahmaur(T)','CHAMBA','HIMACHAL PRADESH'),(176316,'Chaurah(T)','CHAMBA','HIMACHAL PRADESH'),(176317,'Saluni(T)','CHAMBA','HIMACHAL PRADESH'),(176318,'Chamba(T)','CHAMBA','HIMACHAL PRADESH'),(176319,'Chamba(T)','CHAMBA','HIMACHAL PRADESH'),(176320,'Saluni(T)','CHAMBA','HIMACHAL PRADESH'),(176321,'Chaurah(T)','CHAMBA','HIMACHAL PRADESH'),(176323,'Pangi(T)','CHAMBA','HIMACHAL PRADESH'),(176324,'Chamba(T)','CHAMBA','HIMACHAL PRADESH'),(176325,'Dalhousie(T)','CHAMBA','HIMACHAL PRADESH'),(176326,'Holi(S.T)','CHAMBA','HIMACHAL PRADESH'),(176401,'Indora(T)','KANGRA','HIMACHAL PRADESH'),(176402,'Nurpur(T)','KANGRA','HIMACHAL PRADESH'),(176403,'Indora(T)','KANGRA','HIMACHAL PRADESH'),(176501,'Jaswan(T)','KANGRA','HIMACHAL PRADESH'),(176502,'Jaswan(T)','KANGRA','HIMACHAL PRADESH'),(176601,'Haroli(S.T)','UNA','HIMACHAL PRADESH'),(177001,'Hamirpur(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177005,'Hamirpur(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177006,'Nadaun(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177007,'Tira Sujanpur(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177020,'Hamirpur(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177021,'Bhoranj(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177022,'Hamirpur(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177023,'Hamirpur(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177024,'Bhoranj(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177025,'Bhoranj(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177026,'Nadaun(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177027,'Hamirpur(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177028,'Tira Sujanpur(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177029,'Hamirpur(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177031,'Bangana(T)','UNA','HIMACHAL PRADESH'),(177033,'Nadaun(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177034,'Rakkar(S.T)','KANGRA','HIMACHAL PRADESH'),(177038,'Nadaun(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177039,'Bangana(T)','UNA','HIMACHAL PRADESH'),(177040,'Nadaun(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177041,'Nadaun(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177042,'Nadaun(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177043,'Rakkar(S.T)','KANGRA','HIMACHAL PRADESH'),(177044,'Nadaun(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177045,'Nadaun(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177048,'Nadaun(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177101,'Dera Gopipur(T)','KANGRA','HIMACHAL PRADESH'),(177103,'Dera Gopipur(T)','KANGRA','HIMACHAL PRADESH'),(177104,'Dera Gopipur(T)','KANGRA','HIMACHAL PRADESH'),(177105,'Jaswan(T)','KANGRA','HIMACHAL PRADESH'),(177106,'Jaswan(T)','KANGRA','HIMACHAL PRADESH'),(177107,'Dera Gopipur(T)','KANGRA','HIMACHAL PRADESH'),(177108,'Rakkar(S.T)','KANGRA','HIMACHAL PRADESH'),(177109,'Bharwain(S.T)','UNA','HIMACHAL PRADESH'),(177110,'Bharwain(S.T)','UNA','HIMACHAL PRADESH'),(177111,'Jaswan(T)','KANGRA','HIMACHAL PRADESH'),(177112,'Jaswan(T)','KANGRA','HIMACHAL PRADESH'),(177113,'Dera Gopipur(T)','KANGRA','HIMACHAL PRADESH'),(177114,'Dera Gopipur(T)','KANGRA','HIMACHAL PRADESH'),(177117,'Dera Gopipur(T)','KANGRA','HIMACHAL PRADESH'),(177118,'Bhoranj(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177119,'Barsar(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177201,'Amb(T)','UNA','HIMACHAL PRADESH'),(177202,'Amb(T)','UNA','HIMACHAL PRADESH'),(177203,'Amb(T)','UNA','HIMACHAL PRADESH'),(177204,'Amb(T)','UNA','HIMACHAL PRADESH'),(177205,'Amb(T)','UNA','HIMACHAL PRADESH'),(177206,'Amb(T)','UNA','HIMACHAL PRADESH'),(177207,'Una(T)','UNA','HIMACHAL PRADESH'),(177208,'Amb(T)','UNA','HIMACHAL PRADESH'),(177209,'Una(T)','UNA','HIMACHAL PRADESH'),(177210,'Amb(T)','UNA','HIMACHAL PRADESH'),(177211,'Amb(T)','UNA','HIMACHAL PRADESH'),(177212,'Amb(T)','UNA','HIMACHAL PRADESH'),(177213,'Amb(T)','UNA','HIMACHAL PRADESH'),(177219,'Amb(T)','UNA','HIMACHAL PRADESH'),(177220,'Haroli(S.T)','UNA','HIMACHAL PRADESH'),(177301,'Nadaun(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177401,'Hamirpur(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177501,'Bhoranj(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(177601,'Bhoranj(T)','HAMIRPUR(HP)','HIMACHAL PRADESH'),(180001,'Jammu','JAMMU','JAMMU & KASHMIR'),(180002,'Jammu','JAMMU','JAMMU & KASHMIR'),(180003,'Jammu','JAMMU','JAMMU & KASHMIR'),(180004,'Jammu','JAMMU','JAMMU & KASHMIR'),(180005,'Jammu','JAMMU','JAMMU & KASHMIR'),(180006,'Samba','JAMMU','JAMMU & KASHMIR'),(180007,'Jammu','JAMMU','JAMMU & KASHMIR'),(180009,'Ranbirsinghpora','JAMMU','JAMMU & KASHMIR'),(180010,'Jammu','JAMMU','JAMMU & KASHMIR'),(180011,'Jammu','JAMMU','JAMMU & KASHMIR'),(180012,'Hiranagar','KATHUA','JAMMU & KASHMIR'),(180013,'Akhnoor','JAMMU','JAMMU & KASHMIR'),(180015,'Jammu','JAMMU','JAMMU & KASHMIR'),(180016,'Jammu','JAMMU','JAMMU & KASHMIR'),(180017,'Samba','JAMMU','JAMMU & KASHMIR'),(180018,'Jammu','JAMMU','JAMMU & KASHMIR'),(180019,'Samba','JAMMU','JAMMU & KASHMIR'),(180020,'Jammu','JAMMU','JAMMU & KASHMIR'),(181101,'Jammu','JAMMU','JAMMU & KASHMIR'),(181102,'Ranbirsinghpora','JAMMU','JAMMU & KASHMIR'),(181111,'Ranbirsinghpora','JAMMU','JAMMU & KASHMIR'),(181121,'Jammu','JAMMU','JAMMU & KASHMIR'),(181122,'Jammu','JAMMU','JAMMU & KASHMIR'),(181123,'Jammu','JAMMU','JAMMU & KASHMIR'),(181124,'Akhnoor','JAMMU','JAMMU & KASHMIR'),(181131,'Ranbirsinghpora','JAMMU','JAMMU & KASHMIR'),(181132,'Jammu','JAMMU','JAMMU & KASHMIR'),(181133,'Samba','JAMMU','JAMMU & KASHMIR'),(181141,'Samba','JAMMU','JAMMU & KASHMIR'),(181143,'Samba','JAMMU','JAMMU & KASHMIR'),(181145,'Samba','JAMMU','JAMMU & KASHMIR'),(181152,'Jammu','JAMMU','JAMMU & KASHMIR'),(181201,'Akhnoor','JAMMU','JAMMU & KASHMIR'),(181202,'Akhnoor','JAMMU','JAMMU & KASHMIR'),(181203,'Akhnoor','JAMMU','JAMMU & KASHMIR'),(181204,'Akhnoor','JAMMU','JAMMU & KASHMIR'),(181205,'Akhnoor','JAMMU','JAMMU & KASHMIR'),(181206,'Akhnoor','JAMMU','JAMMU & KASHMIR'),(181207,'Akhnoor','JAMMU','JAMMU & KASHMIR'),(181221,'Jammu','JAMMU','JAMMU & KASHMIR'),(181224,'Jammu','JAMMU','JAMMU & KASHMIR'),(182101,'Reasi','UDHAMPUR','JAMMU & KASHMIR'),(182104,'Udhampur','UDHAMPUR','JAMMU & KASHMIR'),(182121,'Udhampur','UDHAMPUR','JAMMU & KASHMIR'),(182122,'Ramnagar','UDHAMPUR','JAMMU & KASHMIR'),(182124,'Udhampur','UDHAMPUR','JAMMU & KASHMIR'),(182125,'Udhampur','UDHAMPUR','JAMMU & KASHMIR'),(182126,'Udhampur','UDHAMPUR','JAMMU & KASHMIR'),(182127,'Ramnagar','UDHAMPUR','JAMMU & KASHMIR'),(182128,'Ramnagar','UDHAMPUR','JAMMU & KASHMIR'),(182141,'Chenani','UDHAMPUR','JAMMU & KASHMIR'),(182142,'Chenani','UDHAMPUR','JAMMU & KASHMIR'),(182143,'Doda','DODA','JAMMU & KASHMIR'),(182144,'Gool Gulab Garh','UDHAMPUR','JAMMU & KASHMIR'),(182145,'Ramban','DODA','JAMMU & KASHMIR'),(182146,'Banihal','DODA','JAMMU & KASHMIR'),(182147,'Doda','DODA','JAMMU & KASHMIR'),(182148,'Ramban','DODA','JAMMU & KASHMIR'),(182161,'Chenani','UDHAMPUR','JAMMU & KASHMIR'),(182201,'Doda','DODA','JAMMU & KASHMIR'),(182202,'Doda','DODA','JAMMU & KASHMIR'),(182203,'Thathri','DODA','JAMMU & KASHMIR'),(182204,'Kishtwar','DODA','JAMMU & KASHMIR'),(182205,'Kishtwar','DODA','JAMMU & KASHMIR'),(182206,'Kishtwar','DODA','JAMMU & KASHMIR'),(182221,'Bhaderwah','DODA','JAMMU & KASHMIR'),(182222,'Bhaderwah','DODA','JAMMU & KASHMIR'),(182301,'Reasi','UDHAMPUR','JAMMU & KASHMIR'),(182311,'Udhampur','UDHAMPUR','JAMMU & KASHMIR'),(182312,'Reasi','UDHAMPUR','JAMMU & KASHMIR'),(182313,'Reasi','UDHAMPUR','JAMMU & KASHMIR'),(182315,'Gool Gulab Garh','UDHAMPUR','JAMMU & KASHMIR'),(182320,'Udhampur','UDHAMPUR','JAMMU & KASHMIR'),(184101,'Kathua','KATHUA','JAMMU & KASHMIR'),(184102,'Kathua','KATHUA','JAMMU & KASHMIR'),(184104,'Kathua','KATHUA','JAMMU & KASHMIR'),(184120,'Bishna','JAMMU','JAMMU & KASHMIR'),(184121,'Samba','JAMMU','JAMMU & KASHMIR'),(184141,'Hiranagar','KATHUA','JAMMU & KASHMIR'),(184142,'Hiranagar','KATHUA','JAMMU & KASHMIR'),(184143,'Kathua','KATHUA','JAMMU & KASHMIR'),(184144,'Hiranagar','KATHUA','JAMMU & KASHMIR'),(184145,'Hiranagar','KATHUA','JAMMU & KASHMIR'),(184148,'Hiranagar','KATHUA','JAMMU & KASHMIR'),(184151,'Hiranagar','KATHUA','JAMMU & KASHMIR'),(184152,'Kathua','KATHUA','JAMMU & KASHMIR'),(184201,'Bashohli','KATHUA','JAMMU & KASHMIR'),(184202,'Bashohli','KATHUA','JAMMU & KASHMIR'),(184203,'Billawar','KATHUA','JAMMU & KASHMIR'),(184204,'Billawar','KATHUA','JAMMU & KASHMIR'),(184205,'Ramnagar','UDHAMPUR','JAMMU & KASHMIR'),(184206,'Bashohli','KATHUA','JAMMU & KASHMIR'),(184210,'Billawar','KATHUA','JAMMU & KASHMIR'),(185101,'Haveli','POONCH','JAMMU & KASHMIR'),(185102,'Haveli','POONCH','JAMMU & KASHMIR'),(185121,'Surankote','POONCH','JAMMU & KASHMIR'),(185131,'Rajauri','RAJAURI','JAMMU & KASHMIR'),(185132,'Rajauri','RAJAURI','JAMMU & KASHMIR'),(185133,'Rajauri','RAJAURI','JAMMU & KASHMIR'),(185135,'Thanamandi','RAJAURI','JAMMU & KASHMIR'),(185151,'Rajauri','RAJAURI','JAMMU & KASHMIR'),(185152,'Nowshehra','RAJAURI','JAMMU & KASHMIR'),(185153,'Sunderbani','RAJAURI','JAMMU & KASHMIR'),(185154,'Akhnoor','JAMMU','JAMMU & KASHMIR'),(185155,'Nowshehra','RAJAURI','JAMMU & KASHMIR'),(185156,'Sunderbani','RAJAURI','JAMMU & KASHMIR'),(185201,'Kalakote','RAJAURI','JAMMU & KASHMIR'),(185202,'Kalakote','RAJAURI','JAMMU & KASHMIR'),(185203,'Reasi','UDHAMPUR','JAMMU & KASHMIR'),(185211,'Mendhar','POONCH','JAMMU & KASHMIR'),(185212,'Thanamandi','RAJAURI','JAMMU & KASHMIR'),(185233,'Budhal','RAJAURI','JAMMU & KASHMIR'),(185234,'Rajauri','RAJAURI','JAMMU & KASHMIR'),(190001,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(190002,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(190003,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(190004,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(190005,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(190006,'Ganderbal','SRINAGAR','JAMMU & KASHMIR'),(190007,'Badgam','BUDGAM','JAMMU & KASHMIR'),(190008,'Chadura','BUDGAM','JAMMU & KASHMIR'),(190009,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(190010,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(190011,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(190012,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(190014,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(190015,'Chadura','BUDGAM','JAMMU & KASHMIR'),(190017,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(190018,'Badgam','BUDGAM','JAMMU & KASHMIR'),(190019,'Badgam','BUDGAM','JAMMU & KASHMIR'),(190020,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(190021,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(190023,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(190024,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(190025,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(191101,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(191102,'Pulwama','PULWAMA','JAMMU & KASHMIR'),(191103,'Pulwama','PULWAMA','JAMMU & KASHMIR'),(191111,'Badgam','BUDGAM','JAMMU & KASHMIR'),(191112,'Chadura','BUDGAM','JAMMU & KASHMIR'),(191113,'Chadura','BUDGAM','JAMMU & KASHMIR'),(191121,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(191131,'Ganderbal','SRINAGAR','JAMMU & KASHMIR'),(191132,'Srinagar','SRINAGAR','JAMMU & KASHMIR'),(191201,'Ganderbal','SRINAGAR','JAMMU & KASHMIR'),(191202,'Ganderbal','SRINAGAR','JAMMU & KASHMIR'),(191203,'Ganderbal','SRINAGAR','JAMMU & KASHMIR'),(192101,'Anantnag','ANANTHNAG','JAMMU & KASHMIR'),(192121,'Pampore','PULWAMA','JAMMU & KASHMIR'),(192122,'Pulwama','PULWAMA','JAMMU & KASHMIR'),(192123,'Pulwama','PULWAMA','JAMMU & KASHMIR'),(192124,'Anantnag','ANANTHNAG','JAMMU & KASHMIR'),(192125,'Anantnag','ANANTHNAG','JAMMU & KASHMIR'),(192126,'Pahalgam','ANANTHNAG','JAMMU & KASHMIR'),(192129,'Anantnag','ANANTHNAG','JAMMU & KASHMIR'),(192201,'Anantnag','ANANTHNAG','JAMMU & KASHMIR'),(192202,'Anantnag','ANANTHNAG','JAMMU & KASHMIR'),(192210,'Anantnag','ANANTHNAG','JAMMU & KASHMIR'),(192211,'Duru','ANANTHNAG','JAMMU & KASHMIR'),(192212,'Duru','ANANTHNAG','JAMMU & KASHMIR'),(192221,'Anantnag','ANANTHNAG','JAMMU & KASHMIR'),(192230,'Anantnag','ANANTHNAG','JAMMU & KASHMIR'),(192231,'Kulgam','ANANTHNAG','JAMMU & KASHMIR'),(192232,'Kulgam','ANANTHNAG','JAMMU & KASHMIR'),(192233,'Kulgam','ANANTHNAG','JAMMU & KASHMIR'),(192301,'Pulwama','PULWAMA','JAMMU & KASHMIR'),(192302,'Shupiyan','PULWAMA','JAMMU & KASHMIR'),(192303,'Shupiyan','PULWAMA','JAMMU & KASHMIR'),(192304,'Pulwama','PULWAMA','JAMMU & KASHMIR'),(192305,'Shupiyan','PULWAMA','JAMMU & KASHMIR'),(192306,'Pulwama','PULWAMA','JAMMU & KASHMIR'),(192401,'Anantnag','ANANTHNAG','JAMMU & KASHMIR'),(193101,'Baramula','BARAMULLA','JAMMU & KASHMIR'),(193103,'Baramula','BARAMULLA','JAMMU & KASHMIR'),(193108,'Pattan','BARAMULLA','JAMMU & KASHMIR'),(193121,'Pattan','BARAMULLA','JAMMU & KASHMIR'),(193122,'Uri','BARAMULLA','JAMMU & KASHMIR'),(193123,'Uri','BARAMULLA','JAMMU & KASHMIR'),(193201,'Sopore','BARAMULLA','JAMMU & KASHMIR'),(193221,'Handwara','KUPWARA','JAMMU & KASHMIR'),(193222,'Kupwara','KUPWARA','JAMMU & KASHMIR'),(193223,'Kupwara','KUPWARA','JAMMU & KASHMIR'),(193224,'Handwara','KUPWARA','JAMMU & KASHMIR'),(193225,'Karnah','KUPWARA','JAMMU & KASHMIR'),(193301,'Sopore','BARAMULLA','JAMMU & KASHMIR'),(193302,'Handwara','KUPWARA','JAMMU & KASHMIR'),(193303,'Kulgam','ANANTHNAG','JAMMU & KASHMIR'),(193401,'Pattan','BARAMULLA','JAMMU & KASHMIR'),(193402,'Gulmarg','BARAMULLA','JAMMU & KASHMIR'),(193403,'Gulmarg','BARAMULLA','JAMMU & KASHMIR'),(193411,'Beerwah','BUDGAM','JAMMU & KASHMIR'),(193501,'SONAWARI','BANDIPUR','JAMMU & KASHMIR'),(193502,'SONAWARI','BANDIPUR','JAMMU & KASHMIR'),(193503,'GUREZ','BANDIPUR','JAMMU & KASHMIR'),(193504,'SONAWARI','BANDIPUR','JAMMU & KASHMIR'),(194101,'Leh','LEH','JAMMU & KASHMIR'),(194102,'Kargil','KARGIL','JAMMU & KASHMIR'),(194103,'Kargil','KARGIL','JAMMU & KASHMIR'),(194104,'Leh','LEH','JAMMU & KASHMIR'),(194105,'Kargil','KARGIL','JAMMU & KASHMIR'),(194106,'Leh','LEH','JAMMU & KASHMIR'),(194109,'Kargil','KARGIL','JAMMU & KASHMIR'),(194201,'Leh','LEH','JAMMU & KASHMIR'),(194301,'Kargil','KARGIL','JAMMU & KASHMIR'),(194302,'Zanskar','KARGIL','JAMMU & KASHMIR'),(194401,'Leh','LEH','JAMMU & KASHMIR'),(194402,'Leh','LEH','JAMMU & KASHMIR'),(194403,'Kargil','KARGIL','JAMMU & KASHMIR'),(194404,'Leh','LEH','JAMMU & KASHMIR'),(201001,'Ghaziabad','GHAZIABAD','UTTAR PRADESH'),(201002,'Ghaziabad','GHAZIABAD','UTTAR PRADESH'),(201003,'Ghaziabad','GHAZIABAD','UTTAR PRADESH'),(201004,'Ghaziabad','GHAZIABAD','UTTAR PRADESH'),(201005,'Ghaziabad','GHAZIABAD','UTTAR PRADESH'),(201006,'Ghaziabad','GHAZIABAD','UTTAR PRADESH'),(201007,'Ghaziabad','GHAZIABAD','UTTAR PRADESH'),(201008,'Dadri','GAUTAM BUDDHA NAGAR','UTTAR PRADESH'),(201009,'Ghaziabad','GHAZIABAD','UTTAR PRADESH'),(201010,'Ghaziabad','GHAZIABAD','UTTAR PRADESH'),(201011,'Ghaziabad','GHAZIABAD','UTTAR PRADESH'),(201012,'Ghaziabad','GHAZIABAD','UTTAR PRADESH'),(201013,'Ghaziabad','GHAZIABAD','UTTAR PRADESH'),(201014,'Hapur','GHAZIABAD','UTTAR PRADESH'),(201015,'Ghaziabad','GHAZIABAD','UTTAR PRADESH'),(201016,'Ghaziabad','GHAZIABAD','UTTAR PRADESH'),(201017,'Ghaziabad','GHAZIABAD','UTTAR PRADESH'),(201102,'Ghaziabad','GHAZIABAD','UTTAR PRADESH'),(201201,'Garhmukteshwar','GHAZIABAD','UTTAR PRADESH'),(201204,'Modinagar','GHAZIABAD','UTTAR PRADESH'),(201206,'Modinagar','GHAZIABAD','UTTAR PRADESH'),(201301,'Gautam Buddha Nagar **','GAUTAM BUDDHA NAGAR','UTTAR PRADESH'),(201303,'Gautam Buddha Nagar **','GAUTAM BUDDHA NAGAR','UTTAR PRADESH'),(201304,'Gautam Buddha Nagar **','GAUTAM BUDDHA NAGAR','UTTAR PRADESH'),(201305,'Ghaziabad','GHAZIABAD','UTTAR PRADESH'),(201306,'Dadri','GAUTAM BUDDHA NAGAR','UTTAR PRADESH'),(201307,'Dadri','GAUTAM BUDDHA NAGAR','UTTAR PRADESH'),(201309,'Gautam Buddha Nagar **','GAUTAM BUDDHA NAGAR','UTTAR PRADESH'),(201310,'Gautam Buddha Nagar **','GAUTAM BUDDHA NAGAR','UTTAR PRADESH'),(201311,'Dadri','GAUTAM BUDDHA NAGAR','UTTAR PRADESH'),(201312,'Dadri','GAUTAM BUDDHA NAGAR','UTTAR PRADESH'),(201313,'Gautam Buddha Nagar **','GAUTAM BUDDHA NAGAR','UTTAR PRADESH'),(201314,'Dadri','GAUTAM BUDDHA NAGAR','UTTAR PRADESH'),(202001,'Koil','ALIGARH','UTTAR PRADESH'),(202002,'Koil','ALIGARH','UTTAR PRADESH'),(202121,'Sasni **','HATHRAS','UTTAR PRADESH'),(202122,'Koil','ALIGARH','UTTAR PRADESH'),(202123,'Iglas','ALIGARH','UTTAR PRADESH'),(202124,'Iglas','ALIGARH','UTTAR PRADESH'),(202125,'Koil','ALIGARH','UTTAR PRADESH'),(202126,'Gabhana **','ALIGARH','UTTAR PRADESH'),(202127,'Koil','ALIGARH','UTTAR PRADESH'),(202128,'Koil','ALIGARH','UTTAR PRADESH'),(202129,'Atrauli','ALIGARH','UTTAR PRADESH'),(202130,'Atrauli','ALIGARH','UTTAR PRADESH'),(202131,'Atrauli','ALIGARH','UTTAR PRADESH'),(202132,'Gabhana **','ALIGARH','UTTAR PRADESH'),(202133,'Atrauli','ALIGARH','UTTAR PRADESH'),(202134,'Atrauli','ALIGARH','UTTAR PRADESH'),(202135,'Khair','ALIGARH','UTTAR PRADESH'),(202136,'Gabhana **','ALIGARH','UTTAR PRADESH'),(202137,'Gabhana **','ALIGARH','UTTAR PRADESH'),(202138,'Khair','ALIGARH','UTTAR PRADESH'),(202139,'Sasni **','HATHRAS','UTTAR PRADESH'),(202140,'Koil','ALIGARH','UTTAR PRADESH'),(202141,'Khair','ALIGARH','UTTAR PRADESH'),(202142,'Gabhana **','ALIGARH','UTTAR PRADESH'),(202143,'Gabhana **','ALIGARH','UTTAR PRADESH'),(202145,'Iglas','ALIGARH','UTTAR PRADESH'),(202146,'Iglas','ALIGARH','UTTAR PRADESH'),(202150,'Koil','ALIGARH','UTTAR PRADESH'),(202155,'Gabhana **','ALIGARH','UTTAR PRADESH'),(202165,'Khair','ALIGARH','UTTAR PRADESH'),(202170,'Koil','ALIGARH','UTTAR PRADESH'),(202280,'Atrauli','ALIGARH','UTTAR PRADESH'),(202281,'Atrauli','ALIGARH','UTTAR PRADESH'),(202282,'Atrauli','ALIGARH','UTTAR PRADESH'),(203001,'Bulandshahr','BULANDSHAHR','UTTAR PRADESH'),(203002,'Bulandshahr','BULANDSHAHR','UTTAR PRADESH'),(203129,'Khurja','BULANDSHAHR','UTTAR PRADESH'),(203131,'Khurja','BULANDSHAHR','UTTAR PRADESH'),(203132,'Khurja','BULANDSHAHR','UTTAR PRADESH'),(203135,'Jewar **','GAUTAM BUDDHA NAGAR','UTTAR PRADESH'),(203141,'Khurja','BULANDSHAHR','UTTAR PRADESH'),(203150,'Bulandshahr','BULANDSHAHR','UTTAR PRADESH'),(203155,'Jewar **','GAUTAM BUDDHA NAGAR','UTTAR PRADESH'),(203201,'Gautam Buddha Nagar **','GAUTAM BUDDHA NAGAR','UTTAR PRADESH'),(203202,'Sikandrabad','BULANDSHAHR','UTTAR PRADESH'),(203203,'Sikandrabad','BULANDSHAHR','UTTAR PRADESH'),(203205,'Sikandrabad','BULANDSHAHR','UTTAR PRADESH'),(203206,'Sikandrabad','BULANDSHAHR','UTTAR PRADESH'),(203207,'Dadri','GAUTAM BUDDHA NAGAR','UTTAR PRADESH'),(203209,'Jewar **','GAUTAM BUDDHA NAGAR','UTTAR PRADESH'),(203389,'Debai **','BULANDSHAHR','UTTAR PRADESH'),(203390,'Anupshahr','BULANDSHAHR','UTTAR PRADESH'),(203391,'Anupshahr','BULANDSHAHR','UTTAR PRADESH'),(203392,'Shikarpur **','BULANDSHAHR','UTTAR PRADESH'),(203393,'Debai **','BULANDSHAHR','UTTAR PRADESH'),(203394,'Siana','BULANDSHAHR','UTTAR PRADESH'),(203395,'Shikarpur **','BULANDSHAHR','UTTAR PRADESH'),(203396,'Shikarpur **','BULANDSHAHR','UTTAR PRADESH'),(203397,'Debai **','BULANDSHAHR','UTTAR PRADESH'),(203398,'Siana','BULANDSHAHR','UTTAR PRADESH'),(203399,'Debai **','BULANDSHAHR','UTTAR PRADESH'),(203401,'Bulandshahr','BULANDSHAHR','UTTAR PRADESH'),(203402,'Siana','BULANDSHAHR','UTTAR PRADESH'),(203403,'Siana','BULANDSHAHR','UTTAR PRADESH'),(203405,'Siana','BULANDSHAHR','UTTAR PRADESH'),(203407,'Bulandshahr','BULANDSHAHR','UTTAR PRADESH'),(203408,'Bulandshahr','BULANDSHAHR','UTTAR PRADESH'),(203409,'Bulandshahr','BULANDSHAHR','UTTAR PRADESH'),(203411,'Bulandshahr','BULANDSHAHR','UTTAR PRADESH'),(203412,'Siana','BULANDSHAHR','UTTAR PRADESH'),(204101,'Hathras','HATHRAS','UTTAR PRADESH'),(204102,'Hathras','HATHRAS','UTTAR PRADESH'),(204211,'Sikandra Rao','HATHRAS','UTTAR PRADESH'),(204212,'Sikandra Rao','HATHRAS','UTTAR PRADESH'),(204213,'Hathras','HATHRAS','UTTAR PRADESH'),(204214,'Sikandra Rao','HATHRAS','UTTAR PRADESH'),(204215,'Sikandra Rao','HATHRAS','UTTAR PRADESH'),(204216,'Iglas','ALIGARH','UTTAR PRADESH'),(205001,'Bhogaon','MAINPURI','UTTAR PRADESH'),(205119,'Mainpuri','MAINPURI','UTTAR PRADESH'),(205121,'Jasrana','FIROZABAD','UTTAR PRADESH'),(205247,'Bhogaon','MAINPURI','UTTAR PRADESH'),(205261,'Karhal','MAINPURI','UTTAR PRADESH'),(205262,'Bhogaon','MAINPURI','UTTAR PRADESH'),(205263,'Bhogaon','MAINPURI','UTTAR PRADESH'),(205264,'Karhal','MAINPURI','UTTAR PRADESH'),(205265,'Mainpuri','MAINPURI','UTTAR PRADESH'),(205267,'Mainpuri','MAINPURI','UTTAR PRADESH'),(205268,'Karhal','MAINPURI','UTTAR PRADESH'),(205301,'Mainpuri','MAINPURI','UTTAR PRADESH'),(205303,'Bhogaon','MAINPURI','UTTAR PRADESH'),(205304,'Bhogaon','MAINPURI','UTTAR PRADESH'),(206001,'Bharthana','ETAWAH','UTTAR PRADESH'),(206002,'Etawah','ETAWAH','UTTAR PRADESH'),(206003,'Etawah','ETAWAH','UTTAR PRADESH'),(206120,'Bharthana','ETAWAH','UTTAR PRADESH'),(206121,'Auraiya','AURAIYA','UTTAR PRADESH'),(206122,'Auraiya','AURAIYA','UTTAR PRADESH'),(206123,'Bharthana','ETAWAH','UTTAR PRADESH'),(206124,'Bharthana','ETAWAH','UTTAR PRADESH'),(206125,'Chakarnagar **','ETAWAH','UTTAR PRADESH'),(206126,'Etawah','ETAWAH','UTTAR PRADESH'),(206127,'Chakarnagar **','ETAWAH','UTTAR PRADESH'),(206128,'Auraiya','AURAIYA','UTTAR PRADESH'),(206129,'Auraiya','AURAIYA','UTTAR PRADESH'),(206130,'Saifai **','ETAWAH','UTTAR PRADESH'),(206131,'Etawah','ETAWAH','UTTAR PRADESH'),(206241,'Bidhuna','AURAIYA','UTTAR PRADESH'),(206242,'Bharthana','ETAWAH','UTTAR PRADESH'),(206243,'Bidhuna','AURAIYA','UTTAR PRADESH'),(206244,'Auraiya','AURAIYA','UTTAR PRADESH'),(206245,'Jaswantnagar **','ETAWAH','UTTAR PRADESH'),(206246,'Bidhuna','AURAIYA','UTTAR PRADESH'),(206247,'Auraiya','AURAIYA','UTTAR PRADESH'),(206248,'Bidhuna','AURAIYA','UTTAR PRADESH'),(206249,'Bidhuna','AURAIYA','UTTAR PRADESH'),(206250,'Bidhuna','AURAIYA','UTTAR PRADESH'),(206251,'Bidhuna','AURAIYA','UTTAR PRADESH'),(206252,'Bidhuna','AURAIYA','UTTAR PRADESH'),(206253,'Etawah','ETAWAH','UTTAR PRADESH'),(206255,'Bidhuna','AURAIYA','UTTAR PRADESH'),(207001,'Etah','ETAH','UTTAR PRADESH'),(207002,'Etah','ETAH','UTTAR PRADESH'),(207003,'Etah','ETAH','UTTAR PRADESH'),(207120,'Jalesar','ETAH','UTTAR PRADESH'),(207121,'Etah','ETAH','UTTAR PRADESH'),(207122,'Etah','ETAH','UTTAR PRADESH'),(207123,'Kasganj','ETAH','UTTAR PRADESH'),(207124,'Etah','ETAH','UTTAR PRADESH'),(207125,'Kasganj','ETAH','UTTAR PRADESH'),(207241,'Kasganj','ETAH','UTTAR PRADESH'),(207242,'Patiyali','ETAH','UTTAR PRADESH'),(207243,'Patiyali','ETAH','UTTAR PRADESH'),(207244,'Kasganj','ETAH','UTTAR PRADESH'),(207245,'Kasganj','ETAH','UTTAR PRADESH'),(207246,'Patiyali','ETAH','UTTAR PRADESH'),(207247,'Aliganj','ETAH','UTTAR PRADESH'),(207248,'Aliganj','ETAH','UTTAR PRADESH'),(207249,'Aliganj','ETAH','UTTAR PRADESH'),(207250,'Aliganj','ETAH','UTTAR PRADESH'),(207301,'Jalesar','ETAH','UTTAR PRADESH'),(207302,'Jalesar','ETAH','UTTAR PRADESH'),(207401,'Kasganj','ETAH','UTTAR PRADESH'),(207402,'Kasganj','ETAH','UTTAR PRADESH'),(207403,'Kasganj','ETAH','UTTAR PRADESH'),(208001,'Ghatampur','KANPUR NAGAR','UTTAR PRADESH'),(208002,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208003,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208004,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208005,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208006,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208007,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208008,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208009,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208010,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208011,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208012,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208013,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208014,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208015,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208016,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208017,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208019,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208020,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208021,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208022,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208023,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208024,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208025,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208026,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(208027,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(209101,'Akbarpur','KANPUR DEHAT','UTTAR PRADESH'),(209111,'Bhognipur','KANPUR DEHAT','UTTAR PRADESH'),(209112,'Bhognipur','KANPUR DEHAT','UTTAR PRADESH'),(209115,'Sikandra **','KANPUR DEHAT','UTTAR PRADESH'),(209121,'Ghatampur','KANPUR NAGAR','UTTAR PRADESH'),(209125,'Sikandra **','KANPUR DEHAT','UTTAR PRADESH'),(209202,'Bilhaur','KANPUR NAGAR','UTTAR PRADESH'),(209203,'Bilhaur','KANPUR NAGAR','UTTAR PRADESH'),(209204,'Rasulabad','KANPUR DEHAT','UTTAR PRADESH'),(209205,'Bilhaur','KANPUR NAGAR','UTTAR PRADESH'),(209206,'Ghatampur','KANPUR NAGAR','UTTAR PRADESH'),(209208,'Bhognipur','KANPUR DEHAT','UTTAR PRADESH'),(209209,'Ghatampur','KANPUR NAGAR','UTTAR PRADESH'),(209210,'Bilhaur','KANPUR NAGAR','UTTAR PRADESH'),(209214,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(209217,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(209301,'Derapur','KANPUR DEHAT','UTTAR PRADESH'),(209302,'Rasulabad','KANPUR DEHAT','UTTAR PRADESH'),(209303,'Derapur','KANPUR DEHAT','UTTAR PRADESH'),(209304,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(209305,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(209306,'Ghatampur','KANPUR NAGAR','UTTAR PRADESH'),(209307,'Akbarpur','KANPUR DEHAT','UTTAR PRADESH'),(209308,'Ghatampur','KANPUR NAGAR','UTTAR PRADESH'),(209310,'Sikandra **','KANPUR DEHAT','UTTAR PRADESH'),(209311,'Akbarpur','KANPUR DEHAT','UTTAR PRADESH'),(209312,'Bhognipur','KANPUR DEHAT','UTTAR PRADESH'),(209401,'Ghatampur','KANPUR NAGAR','UTTAR PRADESH'),(209402,'Kanpur','KANPUR NAGAR','UTTAR PRADESH'),(209501,'Kaimganj','FARRUKHABAD','UTTAR PRADESH'),(209502,'Kaimganj','FARRUKHABAD','UTTAR PRADESH'),(209503,'Kaimganj','FARRUKHABAD','UTTAR PRADESH'),(209504,'Kaimganj','FARRUKHABAD','UTTAR PRADESH'),(209505,'Kaimganj','FARRUKHABAD','UTTAR PRADESH'),(209601,'Amritpur **','FARRUKHABAD','UTTAR PRADESH'),(209602,'Farrukhabad','FARRUKHABAD','UTTAR PRADESH'),(209621,'Amritpur **','FARRUKHABAD','UTTAR PRADESH'),(209622,'Amritpur **','FARRUKHABAD','UTTAR PRADESH'),(209625,'Farrukhabad','FARRUKHABAD','UTTAR PRADESH'),(209651,'Farrukhabad','FARRUKHABAD','UTTAR PRADESH'),(209652,'Farrukhabad','FARRUKHABAD','UTTAR PRADESH'),(209720,'Chhibramau','KANNAUJ','UTTAR PRADESH'),(209721,'Chhibramau','KANNAUJ','UTTAR PRADESH'),(209722,'Chhibramau','KANNAUJ','UTTAR PRADESH'),(209723,'Tirwa **','KANNAUJ','UTTAR PRADESH'),(209724,'Farrukhabad','FARRUKHABAD','UTTAR PRADESH'),(209725,'Kannauj','KANNAUJ','UTTAR PRADESH'),(209726,'Kannauj','KANNAUJ','UTTAR PRADESH'),(209727,'Kannauj','KANNAUJ','UTTAR PRADESH'),(209728,'Tirwa **','KANNAUJ','UTTAR PRADESH'),(209729,'Chhibramau','KANNAUJ','UTTAR PRADESH'),(209731,'Chhibramau','KANNAUJ','UTTAR PRADESH'),(209732,'Tirwa **','KANNAUJ','UTTAR PRADESH'),(209733,'Kannauj','KANNAUJ','UTTAR PRADESH'),(209734,'Kannauj','KANNAUJ','UTTAR PRADESH'),(209735,'Chhibramau','KANNAUJ','UTTAR PRADESH'),(209736,'Tirwa **','KANNAUJ','UTTAR PRADESH'),(209738,'Tirwa **','KANNAUJ','UTTAR PRADESH'),(209739,'Farrukhabad','FARRUKHABAD','UTTAR PRADESH'),(209743,'Farrukhabad','FARRUKHABAD','UTTAR PRADESH'),(209745,'Kaimganj','FARRUKHABAD','UTTAR PRADESH'),(209747,'Chhibramau','KANNAUJ','UTTAR PRADESH'),(209749,'Farrukhabad','FARRUKHABAD','UTTAR PRADESH'),(209801,'Unnao','UNNAO','UTTAR PRADESH'),(209821,'Purwa','UNNAO','UTTAR PRADESH'),(209825,'Purwa','UNNAO','UTTAR PRADESH'),(209827,'Bighapur **','UNNAO','UTTAR PRADESH'),(209831,'Unnao','UNNAO','UTTAR PRADESH'),(209841,'Hasanganj','UNNAO','UTTAR PRADESH'),(209859,'Purwa','UNNAO','UTTAR PRADESH'),(209861,'Unnao','UNNAO','UTTAR PRADESH'),(209862,'Unnao','UNNAO','UTTAR PRADESH'),(209863,'Bighapur **','UNNAO','UTTAR PRADESH'),(209864,'Bighapur **','UNNAO','UTTAR PRADESH'),(209865,'Unnao','UNNAO','UTTAR PRADESH'),(209866,'Bighapur **','UNNAO','UTTAR PRADESH'),(209867,'Bighapur **','UNNAO','UTTAR PRADESH'),(209868,'Safipur','UNNAO','UTTAR PRADESH'),(209869,'Safipur','UNNAO','UTTAR PRADESH'),(209870,'Hasanganj','UNNAO','UTTAR PRADESH'),(209871,'Safipur','UNNAO','UTTAR PRADESH'),(209881,'Hasanganj','UNNAO','UTTAR PRADESH'),(210001,'Banda','BANDA','UTTAR PRADESH'),(210120,'Atarra','BANDA','UTTAR PRADESH'),(210121,'Baberu','BANDA','UTTAR PRADESH'),(210123,'Mau','CHITRAKOOT','UTTAR PRADESH'),(210125,'Baberu','BANDA','UTTAR PRADESH'),(210126,'Banda','BANDA','UTTAR PRADESH'),(210128,'Banda','BANDA','UTTAR PRADESH'),(210129,'Naraini','BANDA','UTTAR PRADESH'),(210201,'Atarra','BANDA','UTTAR PRADESH'),(210202,'Atarra','BANDA','UTTAR PRADESH'),(210203,'Atarra','BANDA','UTTAR PRADESH'),(210204,'Karwi','CHITRAKOOT','UTTAR PRADESH'),(210205,'Karwi','CHITRAKOOT','UTTAR PRADESH'),(210206,'Karwi','CHITRAKOOT','UTTAR PRADESH'),(210207,'Karwi','CHITRAKOOT','UTTAR PRADESH'),(210208,'Karwi','CHITRAKOOT','UTTAR PRADESH'),(210209,'Mau','CHITRAKOOT','UTTAR PRADESH'),(210301,'Hamirpur','HAMIRPUR','UTTAR PRADESH'),(210341,'Hamirpur','HAMIRPUR','UTTAR PRADESH'),(210421,'Charkhari','MAHOBA','UTTAR PRADESH'),(210422,'Rath','HAMIRPUR','UTTAR PRADESH'),(210423,'Kulpahar','MAHOBA','UTTAR PRADESH'),(210424,'Mahoba','MAHOBA','UTTAR PRADESH'),(210425,'Charkhari','MAHOBA','UTTAR PRADESH'),(210426,'Kulpahar','MAHOBA','UTTAR PRADESH'),(210427,'Mahoba','MAHOBA','UTTAR PRADESH'),(210428,'Rath','HAMIRPUR','UTTAR PRADESH'),(210429,'Kulpahar','MAHOBA','UTTAR PRADESH'),(210430,'Rath','HAMIRPUR','UTTAR PRADESH'),(210431,'Rath','HAMIRPUR','UTTAR PRADESH'),(210432,'Atarra','BANDA','UTTAR PRADESH'),(210433,'Mahoba','MAHOBA','UTTAR PRADESH'),(210501,'Mau','CHITRAKOOT','UTTAR PRADESH'),(210502,'Naraini','BANDA','UTTAR PRADESH'),(210504,'Mahoba','MAHOBA','UTTAR PRADESH'),(210505,'Hamirpur','HAMIRPUR','UTTAR PRADESH'),(210506,'Maudaha','HAMIRPUR','UTTAR PRADESH'),(210507,'Maudaha','HAMIRPUR','UTTAR PRADESH'),(211001,'Allahabad **','ALLAHABAD','UTTAR PRADESH'),(211002,'Chail','KAUSHAMBI','UTTAR PRADESH'),(211003,'Allahabad **','ALLAHABAD','UTTAR PRADESH'),(211004,'Allahabad **','ALLAHABAD','UTTAR PRADESH'),(211005,'Allahabad **','ALLAHABAD','UTTAR PRADESH'),(211006,'Allahabad **','ALLAHABAD','UTTAR PRADESH'),(211007,'Allahabad **','ALLAHABAD','UTTAR PRADESH'),(211008,'Allahabad **','ALLAHABAD','UTTAR PRADESH'),(211010,'Allahabad **','ALLAHABAD','UTTAR PRADESH'),(211011,'Allahabad **','ALLAHABAD','UTTAR PRADESH'),(211012,'Allahabad **','ALLAHABAD','UTTAR PRADESH'),(211013,'Soraon','ALLAHABAD','UTTAR PRADESH'),(211014,'Allahabad **','ALLAHABAD','UTTAR PRADESH'),(211015,'Allahabad **','ALLAHABAD','UTTAR PRADESH'),(211016,'Allahabad **','ALLAHABAD','UTTAR PRADESH'),(211017,'Allahabad **','ALLAHABAD','UTTAR PRADESH'),(211018,'Allahabad **','ALLAHABAD','UTTAR PRADESH'),(211019,'Phulpur','ALLAHABAD','UTTAR PRADESH'),(212104,'Meja','ALLAHABAD','UTTAR PRADESH'),(212105,'Karchhana','ALLAHABAD','UTTAR PRADESH'),(212106,'Karchhana','ALLAHABAD','UTTAR PRADESH'),(212107,'Bara','ALLAHABAD','UTTAR PRADESH'),(212108,'Bara','ALLAHABAD','UTTAR PRADESH'),(212109,'Soraon','ALLAHABAD','UTTAR PRADESH'),(212111,'Bara','ALLAHABAD','UTTAR PRADESH'),(212201,'Manjhanpur','KAUSHAMBI','UTTAR PRADESH'),(212202,'Chail','KAUSHAMBI','UTTAR PRADESH'),(212203,'Chail','KAUSHAMBI','UTTAR PRADESH'),(212204,'Allahabad **','ALLAHABAD','UTTAR PRADESH'),(212205,'Sirathu','KAUSHAMBI','UTTAR PRADESH'),(212206,'Manjhanpur','KAUSHAMBI','UTTAR PRADESH'),(212207,'Manjhanpur','KAUSHAMBI','UTTAR PRADESH'),(212208,'Allahabad **','ALLAHABAD','UTTAR PRADESH'),(212212,'Allahabad **','ALLAHABAD','UTTAR PRADESH'),(212213,'Chail','KAUSHAMBI','UTTAR PRADESH'),(212214,'Manjhanpur','KAUSHAMBI','UTTAR PRADESH'),(212216,'Chail','KAUSHAMBI','UTTAR PRADESH'),(212217,'Sirathu','KAUSHAMBI','UTTAR PRADESH'),(212218,'Chail','KAUSHAMBI','UTTAR PRADESH'),(212301,'Karchhana','ALLAHABAD','UTTAR PRADESH'),(212302,'Meja','ALLAHABAD','UTTAR PRADESH'),(212303,'Meja','ALLAHABAD','UTTAR PRADESH'),(212305,'Meja','ALLAHABAD','UTTAR PRADESH'),(212306,'Koraon **','ALLAHABAD','UTTAR PRADESH'),(212307,'Meja','ALLAHABAD','UTTAR PRADESH'),(212401,'Handia','ALLAHABAD','UTTAR PRADESH'),(212402,'Handia','ALLAHABAD','UTTAR PRADESH'),(212404,'Handia','ALLAHABAD','UTTAR PRADESH'),(212405,'Handia','ALLAHABAD','UTTAR PRADESH'),(212502,'Soraon','ALLAHABAD','UTTAR PRADESH'),(212503,'Soraon','ALLAHABAD','UTTAR PRADESH'),(212507,'Soraon','ALLAHABAD','UTTAR PRADESH'),(212601,'Fatehpur','FATEHPUR','UTTAR PRADESH'),(212620,'Fatehpur','FATEHPUR','UTTAR PRADESH'),(212621,'Fatehpur','FATEHPUR','UTTAR PRADESH'),(212622,'Fatehpur','FATEHPUR','UTTAR PRADESH'),(212631,'Bindki','FATEHPUR','UTTAR PRADESH'),(212635,'Bindki','FATEHPUR','UTTAR PRADESH'),(212641,'Khaga','FATEHPUR','UTTAR PRADESH'),(212645,'Fatehpur','FATEHPUR','UTTAR PRADESH'),(212650,'Khaga','FATEHPUR','UTTAR PRADESH'),(212651,'Fatehpur','FATEHPUR','UTTAR PRADESH'),(212652,'Khaga','FATEHPUR','UTTAR PRADESH'),(212653,'Khaga','FATEHPUR','UTTAR PRADESH'),(212654,'Fatehpur','FATEHPUR','UTTAR PRADESH'),(212655,'Khaga','FATEHPUR','UTTAR PRADESH'),(212656,'Khaga','FATEHPUR','UTTAR PRADESH'),(212657,'Bindki','FATEHPUR','UTTAR PRADESH'),(212658,'Khaga','FATEHPUR','UTTAR PRADESH'),(212659,'Bindki','FATEHPUR','UTTAR PRADESH'),(212661,'Bindki','FATEHPUR','UTTAR PRADESH'),(212663,'Fatehpur','FATEHPUR','UTTAR PRADESH'),(212664,'Fatehpur','FATEHPUR','UTTAR PRADESH'),(212665,'Bindki','FATEHPUR','UTTAR PRADESH'),(221001,'Varanasi','VARANASI','UTTAR PRADESH'),(221002,'Pindra **','VARANASI','UTTAR PRADESH'),(221003,'Pindra **','VARANASI','UTTAR PRADESH'),(221004,'Varanasi','VARANASI','UTTAR PRADESH'),(221005,'Varanasi','VARANASI','UTTAR PRADESH'),(221006,'Pindra **','VARANASI','UTTAR PRADESH'),(221007,'Varanasi','VARANASI','UTTAR PRADESH'),(221008,'Varanasi','VARANASI','UTTAR PRADESH'),(221009,'Chandauli','CHANDAULI','UTTAR PRADESH'),(221010,'Varanasi','VARANASI','UTTAR PRADESH'),(221011,'Varanasi','VARANASI','UTTAR PRADESH'),(221101,'Varanasi','VARANASI','UTTAR PRADESH'),(221103,'Varanasi','VARANASI','UTTAR PRADESH'),(221104,'Pindra **','VARANASI','UTTAR PRADESH'),(221105,'Pindra **','VARANASI','UTTAR PRADESH'),(221106,'Varanasi','VARANASI','UTTAR PRADESH'),(221107,'Varanasi','VARANASI','UTTAR PRADESH'),(221108,'Varanasi','VARANASI','UTTAR PRADESH'),(221110,'Chandauli','CHANDAULI','UTTAR PRADESH'),(221112,'Varanasi','VARANASI','UTTAR PRADESH'),(221115,'Sakaldiha','CHANDAULI','UTTAR PRADESH'),(221116,'Pindra **','VARANASI','UTTAR PRADESH'),(221201,'Pindra **','VARANASI','UTTAR PRADESH'),(221202,'Pindra **','VARANASI','UTTAR PRADESH'),(221204,'Varanasi','VARANASI','UTTAR PRADESH'),(221206,'Pindra **','VARANASI','UTTAR PRADESH'),(221207,'Varanasi','VARANASI','UTTAR PRADESH'),(221208,'Pindra **','VARANASI','UTTAR PRADESH'),(221301,'Pindra **','VARANASI','UTTAR PRADESH'),(221302,'Varanasi','VARANASI','UTTAR PRADESH'),(221303,'Gyanpur','SANT RAVIDAS NAGAR','UTTAR PRADESH'),(221304,'Gyanpur','SANT RAVIDAS NAGAR','UTTAR PRADESH'),(221305,'Varanasi','VARANASI','UTTAR PRADESH'),(221306,'Gyanpur','SANT RAVIDAS NAGAR','UTTAR PRADESH'),(221307,'Varanasi','VARANASI','UTTAR PRADESH'),(221308,'Gyanpur','SANT RAVIDAS NAGAR','UTTAR PRADESH'),(221309,'Gyanpur','SANT RAVIDAS NAGAR','UTTAR PRADESH'),(221310,'Gyanpur','SANT RAVIDAS NAGAR','UTTAR PRADESH'),(221311,'Varanasi','VARANASI','UTTAR PRADESH'),(221313,'Varanasi','VARANASI','UTTAR PRADESH'),(221314,'Gyanpur','SANT RAVIDAS NAGAR','UTTAR PRADESH'),(221401,'Gyanpur','SANT RAVIDAS NAGAR','UTTAR PRADESH'),(221402,'Bhadohi','SANT RAVIDAS NAGAR','UTTAR PRADESH'),(221403,'Varanasi','VARANASI','UTTAR PRADESH'),(221404,'Varanasi','VARANASI','UTTAR PRADESH'),(221405,'Varanasi','VARANASI','UTTAR PRADESH'),(221406,'Bhadohi','SANT RAVIDAS NAGAR','UTTAR PRADESH'),(221409,'Bhadohi','SANT RAVIDAS NAGAR','UTTAR PRADESH'),(221502,'Handia','ALLAHABAD','UTTAR PRADESH'),(221503,'Handia','ALLAHABAD','UTTAR PRADESH'),(221505,'Phulpur','ALLAHABAD','UTTAR PRADESH'),(221507,'Phulpur','ALLAHABAD','UTTAR PRADESH'),(221508,'Handia','ALLAHABAD','UTTAR PRADESH'),(221601,'Madhuban **','MAU','UTTAR PRADESH'),(221602,'Madhuban **','MAU','UTTAR PRADESH'),(221603,'Madhuban **','MAU','UTTAR PRADESH'),(221701,'Rasra','BALLIA','UTTAR PRADESH'),(221705,'Maunath Bhanjan','MAU','UTTAR PRADESH'),(221706,'Maunath Bhanjan','MAU','UTTAR PRADESH'),(221709,'Sikanderpur **','BALLIA','UTTAR PRADESH'),(221711,'Belthara Road **','BALLIA','UTTAR PRADESH'),(221712,'Rasra','BALLIA','UTTAR PRADESH'),(221713,'Ballia','BALLIA','UTTAR PRADESH'),(221715,'Belthara Road **','BALLIA','UTTAR PRADESH'),(221716,'Belthara Road **','BALLIA','UTTAR PRADESH'),(221717,'Sikanderpur **','BALLIA','UTTAR PRADESH'),(221718,'Belthara Road **','BALLIA','UTTAR PRADESH'),(222001,'Jaunpur','JAUNPUR','UTTAR PRADESH'),(222002,'Jaunpur','JAUNPUR','UTTAR PRADESH'),(222003,'Jaunpur','JAUNPUR','UTTAR PRADESH'),(222101,'Shahganj','JAUNPUR','UTTAR PRADESH'),(222105,'Mariahu','JAUNPUR','UTTAR PRADESH'),(222109,'Machhlishahr','JAUNPUR','UTTAR PRADESH'),(222125,'Badlapur','JAUNPUR','UTTAR PRADESH'),(222127,'Mariahu','JAUNPUR','UTTAR PRADESH'),(222128,'Mariahu','JAUNPUR','UTTAR PRADESH'),(222129,'Kerakat','JAUNPUR','UTTAR PRADESH'),(222131,'Jaunpur','JAUNPUR','UTTAR PRADESH'),(222132,'Jaunpur','JAUNPUR','UTTAR PRADESH'),(222133,'Jaunpur','JAUNPUR','UTTAR PRADESH'),(222135,'Jaunpur','JAUNPUR','UTTAR PRADESH'),(222136,'Jaunpur','JAUNPUR','UTTAR PRADESH'),(222137,'Mariahu','JAUNPUR','UTTAR PRADESH'),(222138,'Jaunpur','JAUNPUR','UTTAR PRADESH'),(222139,'Shahganj','JAUNPUR','UTTAR PRADESH'),(222141,'Badlapur','JAUNPUR','UTTAR PRADESH'),(222142,'Kerakat','JAUNPUR','UTTAR PRADESH'),(222143,'Machhlishahr','JAUNPUR','UTTAR PRADESH'),(222144,'Machhlishahr','JAUNPUR','UTTAR PRADESH'),(222145,'Machhlishahr','JAUNPUR','UTTAR PRADESH'),(222146,'Kerakat','JAUNPUR','UTTAR PRADESH'),(222148,'Kerakat','JAUNPUR','UTTAR PRADESH'),(222149,'Kerakat','JAUNPUR','UTTAR PRADESH'),(222161,'Badlapur','JAUNPUR','UTTAR PRADESH'),(222162,'Mariahu','JAUNPUR','UTTAR PRADESH'),(222165,'Machhlishahr','JAUNPUR','UTTAR PRADESH'),(222170,'Kerakat','JAUNPUR','UTTAR PRADESH'),(222175,'Badlapur','JAUNPUR','UTTAR PRADESH'),(222180,'Jaunpur','JAUNPUR','UTTAR PRADESH'),(222181,'Kerakat','JAUNPUR','UTTAR PRADESH'),(222201,'Machhlishahr','JAUNPUR','UTTAR PRADESH'),(222202,'Machhlishahr','JAUNPUR','UTTAR PRADESH'),(222203,'Mariahu','JAUNPUR','UTTAR PRADESH'),(222204,'Machhlishahr','JAUNPUR','UTTAR PRADESH'),(222301,'Lambhua **','SULTANPUR','UTTAR PRADESH'),(222302,'Lambhua **','SULTANPUR','UTTAR PRADESH'),(222303,'Lambhua **','SULTANPUR','UTTAR PRADESH'),(223101,'Shahganj','JAUNPUR','UTTAR PRADESH'),(223102,'Shahganj','JAUNPUR','UTTAR PRADESH'),(223103,'Shahganj','JAUNPUR','UTTAR PRADESH'),(223104,'Shahganj','JAUNPUR','UTTAR PRADESH'),(223105,'Shahganj','JAUNPUR','UTTAR PRADESH'),(223221,'Burhanpur','AZAMGARH','UTTAR PRADESH'),(223222,'Phulpur','AZAMGARH','UTTAR PRADESH'),(223223,'Burhanpur','AZAMGARH','UTTAR PRADESH'),(223224,'Phulpur','AZAMGARH','UTTAR PRADESH'),(223225,'Phulpur','AZAMGARH','UTTAR PRADESH'),(223226,'Phulpur','AZAMGARH','UTTAR PRADESH'),(223227,'Nizamabad **','AZAMGARH','UTTAR PRADESH'),(224001,'Faizabad','FAIZABAD','UTTAR PRADESH'),(224116,'Rudauli','FAIZABAD','UTTAR PRADESH'),(224117,'Rudauli','FAIZABAD','UTTAR PRADESH'),(224118,'Rudauli','FAIZABAD','UTTAR PRADESH'),(224119,'Rudauli','FAIZABAD','UTTAR PRADESH'),(224120,'Rudauli','FAIZABAD','UTTAR PRADESH'),(224121,'Milkipur **','FAIZABAD','UTTAR PRADESH'),(224122,'Akbarpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224123,'Faizabad','FAIZABAD','UTTAR PRADESH'),(224125,'Jalalpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224126,'Sohawal **','FAIZABAD','UTTAR PRADESH'),(224127,'Milkipur **','FAIZABAD','UTTAR PRADESH'),(224129,'Tanda','AMBEDKAR NAGAR','UTTAR PRADESH'),(224132,'Akbarpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224133,'Faizabad','FAIZABAD','UTTAR PRADESH'),(224135,'Faizabad','FAIZABAD','UTTAR PRADESH'),(224137,'Allapur **','AMBEDKAR NAGAR','UTTAR PRADESH'),(224139,'Jalalpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224141,'Faizabad','FAIZABAD','UTTAR PRADESH'),(224143,'Allapur **','AMBEDKAR NAGAR','UTTAR PRADESH'),(224145,'Tanda','AMBEDKAR NAGAR','UTTAR PRADESH'),(224146,'Akbarpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224147,'Allapur **','AMBEDKAR NAGAR','UTTAR PRADESH'),(224149,'Jalalpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224151,'Akbarpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224152,'Akbarpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224153,'Milkipur **','FAIZABAD','UTTAR PRADESH'),(224155,'Jalalpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224157,'Akbarpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224158,'Milkipur **','FAIZABAD','UTTAR PRADESH'),(224159,'Jalalpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224161,'Faizabad','FAIZABAD','UTTAR PRADESH'),(224164,'Milkipur **','FAIZABAD','UTTAR PRADESH'),(224168,'Akbarpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224171,'Faizabad','FAIZABAD','UTTAR PRADESH'),(224172,'Faizabad','FAIZABAD','UTTAR PRADESH'),(224176,'Allapur **','AMBEDKAR NAGAR','UTTAR PRADESH'),(224181,'Allapur **','AMBEDKAR NAGAR','UTTAR PRADESH'),(224182,'Sohawal **','FAIZABAD','UTTAR PRADESH'),(224183,'Jalalpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224186,'Jalalpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224188,'Sohawal **','FAIZABAD','UTTAR PRADESH'),(224189,'Sohawal **','FAIZABAD','UTTAR PRADESH'),(224190,'Tanda','AMBEDKAR NAGAR','UTTAR PRADESH'),(224195,'Bikapur','FAIZABAD','UTTAR PRADESH'),(224201,'Faizabad','FAIZABAD','UTTAR PRADESH'),(224202,'Sohawal **','FAIZABAD','UTTAR PRADESH'),(224203,'Bikapur','FAIZABAD','UTTAR PRADESH'),(224204,'Bikapur','FAIZABAD','UTTAR PRADESH'),(224205,'Bikapur','FAIZABAD','UTTAR PRADESH'),(224206,'Bikapur','FAIZABAD','UTTAR PRADESH'),(224207,'Bikapur','FAIZABAD','UTTAR PRADESH'),(224208,'Milkipur **','FAIZABAD','UTTAR PRADESH'),(224209,'Bikapur','FAIZABAD','UTTAR PRADESH'),(224210,'Allapur **','AMBEDKAR NAGAR','UTTAR PRADESH'),(224225,'Milkipur **','FAIZABAD','UTTAR PRADESH'),(224227,'Akbarpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224228,'Milkipur **','FAIZABAD','UTTAR PRADESH'),(224229,'Milkipur **','FAIZABAD','UTTAR PRADESH'),(224230,'Akbarpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224231,'Akbarpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224232,'Kadipur','SULTANPUR','UTTAR PRADESH'),(224234,'Tanda','AMBEDKAR NAGAR','UTTAR PRADESH'),(224235,'Akbarpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224238,'Jalalpur','AMBEDKAR NAGAR','UTTAR PRADESH'),(224284,'Bikapur','FAIZABAD','UTTAR PRADESH'),(225001,'Nawabganj','BARABANKI','UTTAR PRADESH'),(225002,'Nawabganj','BARABANKI','UTTAR PRADESH'),(225003,'Nawabganj','BARABANKI','UTTAR PRADESH'),(225119,'Haidergarh','BARABANKI','UTTAR PRADESH'),(225120,'Haidergarh','BARABANKI','UTTAR PRADESH'),(225121,'Nawabganj','BARABANKI','UTTAR PRADESH'),(225122,'Nawabganj','BARABANKI','UTTAR PRADESH'),(225123,'Nawabganj','BARABANKI','UTTAR PRADESH'),(225124,'Haidergarh','BARABANKI','UTTAR PRADESH'),(225125,'Haidergarh','BARABANKI','UTTAR PRADESH'),(225126,'Haidergarh','BARABANKI','UTTAR PRADESH'),(225201,'Ramnagar','BARABANKI','UTTAR PRADESH'),(225202,'Ramnagar','BARABANKI','UTTAR PRADESH'),(225203,'Nawabganj','BARABANKI','UTTAR PRADESH'),(225204,'Nawabganj','BARABANKI','UTTAR PRADESH'),(225205,'Ramnagar','BARABANKI','UTTAR PRADESH'),(225206,'Ramnagar','BARABANKI','UTTAR PRADESH'),(225207,'Sirauli Gauspur**','BARABANKI','UTTAR PRADESH'),(225208,'Ramnagar','BARABANKI','UTTAR PRADESH'),(225301,'Nawabganj','BARABANKI','UTTAR PRADESH'),(225302,'Fatehpur','BARABANKI','UTTAR PRADESH'),(225303,'Fatehpur','BARABANKI','UTTAR PRADESH'),(225304,'Ramnagar','BARABANKI','UTTAR PRADESH'),(225305,'Fatehpur','BARABANKI','UTTAR PRADESH'),(225306,'Fatehpur','BARABANKI','UTTAR PRADESH'),(225401,'Ramsanehighat','BARABANKI','UTTAR PRADESH'),(225403,'Ramsanehighat','BARABANKI','UTTAR PRADESH'),(225404,'Ramsanehighat','BARABANKI','UTTAR PRADESH'),(225405,'Sirauli Gauspur**','BARABANKI','UTTAR PRADESH'),(225409,'Ramsanehighat','BARABANKI','UTTAR PRADESH'),(225412,'Ramsanehighat','BARABANKI','UTTAR PRADESH'),(225413,'Haidergarh','BARABANKI','UTTAR PRADESH'),(225414,'Nawabganj','BARABANKI','UTTAR PRADESH'),(225415,'Sirauli Gauspur**','BARABANKI','UTTAR PRADESH'),(225416,'Ramsanehighat','BARABANKI','UTTAR PRADESH'),(226001,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226002,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226003,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226004,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226005,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226006,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226007,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226008,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226009,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226010,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226011,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226012,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226013,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226014,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226015,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226016,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226017,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226018,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226019,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226020,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226021,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226022,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226023,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226024,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226025,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226026,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226027,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226028,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226029,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226031,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226101,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226102,'Malihabad','LUCKNOW','UTTAR PRADESH'),(226103,'Malihabad','LUCKNOW','UTTAR PRADESH'),(226104,'Malihabad','LUCKNOW','UTTAR PRADESH'),(226201,'Bakshi Ka Talab**','LUCKNOW','UTTAR PRADESH'),(226202,'Bakshi Ka Talab**','LUCKNOW','UTTAR PRADESH'),(226203,'Bakshi Ka Talab**','LUCKNOW','UTTAR PRADESH'),(226301,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226302,'Mohanlalganj','LUCKNOW','UTTAR PRADESH'),(226303,'Mohanlalganj','LUCKNOW','UTTAR PRADESH'),(226401,'Lucknow','LUCKNOW','UTTAR PRADESH'),(226501,'Mohanlalganj','LUCKNOW','UTTAR PRADESH'),(227304,'Lambhua **','SULTANPUR','UTTAR PRADESH'),(227405,'Amethi','SULTANPUR','UTTAR PRADESH'),(227406,'Amethi','SULTANPUR','UTTAR PRADESH'),(227407,'Amethi','SULTANPUR','UTTAR PRADESH'),(227408,'Amethi','SULTANPUR','UTTAR PRADESH'),(227409,'Gauriganj','SULTANPUR','UTTAR PRADESH'),(227411,'Amethi','SULTANPUR','UTTAR PRADESH'),(227412,'Gauriganj','SULTANPUR','UTTAR PRADESH'),(227413,'Amethi','SULTANPUR','UTTAR PRADESH'),(227801,'Gauriganj','SULTANPUR','UTTAR PRADESH'),(227805,'Sultanpur','SULTANPUR','UTTAR PRADESH'),(227806,'Gauriganj','SULTANPUR','UTTAR PRADESH'),(227807,'Gauriganj','SULTANPUR','UTTAR PRADESH'),(227808,'Sultanpur','SULTANPUR','UTTAR PRADESH'),(227809,'Gauriganj','SULTANPUR','UTTAR PRADESH'),(227811,'Musafirkhana','SULTANPUR','UTTAR PRADESH'),(227812,'Sultanpur','SULTANPUR','UTTAR PRADESH'),(227813,'Musafirkhana','SULTANPUR','UTTAR PRADESH'),(227814,'Sultanpur','SULTANPUR','UTTAR PRADESH'),(227815,'Musafirkhana','SULTANPUR','UTTAR PRADESH'),(227816,'Lambhua **','SULTANPUR','UTTAR PRADESH'),(227817,'Musafirkhana','SULTANPUR','UTTAR PRADESH'),(228001,'Sultanpur','SULTANPUR','UTTAR PRADESH'),(228118,'Sultanpur','SULTANPUR','UTTAR PRADESH'),(228119,'Sultanpur','SULTANPUR','UTTAR PRADESH'),(228120,'Sultanpur','SULTANPUR','UTTAR PRADESH'),(228121,'Sultanpur','SULTANPUR','UTTAR PRADESH'),(228125,'Sultanpur','SULTANPUR','UTTAR PRADESH'),(228131,'Kadipur','SULTANPUR','UTTAR PRADESH'),(228132,'Kadipur','SULTANPUR','UTTAR PRADESH'),(228133,'Gauriganj','SULTANPUR','UTTAR PRADESH'),(228141,'Sultanpur','SULTANPUR','UTTAR PRADESH'),(228142,'Sultanpur','SULTANPUR','UTTAR PRADESH'),(228145,'Kadipur','SULTANPUR','UTTAR PRADESH'),(228151,'Sultanpur','SULTANPUR','UTTAR PRADESH'),(228155,'Sultanpur','SULTANPUR','UTTAR PRADESH'),(228159,'Sultanpur','SULTANPUR','UTTAR PRADESH'),(228161,'Kadipur','SULTANPUR','UTTAR PRADESH'),(228171,'Kadipur','SULTANPUR','UTTAR PRADESH'),(229001,'Rae Bareli','RAEBARELI','UTTAR PRADESH'),(229010,'Rae Bareli','RAEBARELI','UTTAR PRADESH'),(229103,'Maharajganj','RAEBARELI','UTTAR PRADESH'),(229120,'Lalganj','RAEBARELI','UTTAR PRADESH'),(229121,'Dalmau','RAEBARELI','UTTAR PRADESH'),(229122,'Rae Bareli','RAEBARELI','UTTAR PRADESH'),(229123,'Maharajganj','RAEBARELI','UTTAR PRADESH'),(229124,'Salon','RAEBARELI','UTTAR PRADESH'),(229125,'Dalmau','RAEBARELI','UTTAR PRADESH'),(229126,'Tiloi','RAEBARELI','UTTAR PRADESH'),(229127,'Salon','RAEBARELI','UTTAR PRADESH'),(229128,'Rae Bareli','RAEBARELI','UTTAR PRADESH'),(229129,'Salon','RAEBARELI','UTTAR PRADESH'),(229130,'Lalganj','RAEBARELI','UTTAR PRADESH'),(229135,'Tiloi','RAEBARELI','UTTAR PRADESH'),(229201,'Lalganj','RAEBARELI','UTTAR PRADESH'),(229202,'Lalganj','RAEBARELI','UTTAR PRADESH'),(229203,'Lalganj','RAEBARELI','UTTAR PRADESH'),(229204,'Dalmau','RAEBARELI','UTTAR PRADESH'),(229205,'Lalganj','RAEBARELI','UTTAR PRADESH'),(229206,'Lalganj','RAEBARELI','UTTAR PRADESH'),(229207,'Lalganj','RAEBARELI','UTTAR PRADESH'),(229208,'Lalganj','RAEBARELI','UTTAR PRADESH'),(229209,'Lalganj','RAEBARELI','UTTAR PRADESH'),(229210,'Lalganj','RAEBARELI','UTTAR PRADESH'),(229211,'Lalganj','RAEBARELI','UTTAR PRADESH'),(229212,'Lalganj','RAEBARELI','UTTAR PRADESH'),(229215,'Lalganj','RAEBARELI','UTTAR PRADESH'),(229216,'Lalganj','RAEBARELI','UTTAR PRADESH'),(229301,'Maharajganj','RAEBARELI','UTTAR PRADESH'),(229302,'Tiloi','RAEBARELI','UTTAR PRADESH'),(229303,'Rae Bareli','RAEBARELI','UTTAR PRADESH'),(229304,'Tiloi','RAEBARELI','UTTAR PRADESH'),(229305,'Salon','RAEBARELI','UTTAR PRADESH'),(229306,'Maharajganj','RAEBARELI','UTTAR PRADESH'),(229307,'Salon','RAEBARELI','UTTAR PRADESH'),(229308,'Maharajganj','RAEBARELI','UTTAR PRADESH'),(229309,'Tiloi','RAEBARELI','UTTAR PRADESH'),(229310,'Rae Bareli','RAEBARELI','UTTAR PRADESH'),(229311,'Maharajganj','RAEBARELI','UTTAR PRADESH'),(229316,'Rae Bareli','RAEBARELI','UTTAR PRADESH'),(229401,'Unchahar **','RAEBARELI','UTTAR PRADESH'),(229402,'Unchahar **','RAEBARELI','UTTAR PRADESH'),(229404,'Rae Bareli','RAEBARELI','UTTAR PRADESH'),(229405,'Rae Bareli','RAEBARELI','UTTAR PRADESH'),(229406,'Unchahar **','RAEBARELI','UTTAR PRADESH'),(229408,'Kunda','PRATAPGARH','UTTAR PRADESH'),(229410,'Patti','PRATAPGARH','UTTAR PRADESH'),(229411,'Soraon','ALLAHABAD','UTTAR PRADESH'),(229412,'Soraon','ALLAHABAD','UTTAR PRADESH'),(229413,'Soraon','ALLAHABAD','UTTAR PRADESH'),(229801,'Tiloi','RAEBARELI','UTTAR PRADESH'),(229802,'Maharajganj','RAEBARELI','UTTAR PRADESH'),(230001,'Pratapgarh','PRATAPGARH','UTTAR PRADESH'),(230002,'Pratapgarh','PRATAPGARH','UTTAR PRADESH'),(230121,'Patti','PRATAPGARH','UTTAR PRADESH'),(230124,'Kunda','PRATAPGARH','UTTAR PRADESH'),(230125,'Lalganj','PRATAPGARH','UTTAR PRADESH'),(230126,'Lalganj','PRATAPGARH','UTTAR PRADESH'),(230127,'Pratapgarh','PRATAPGARH','UTTAR PRADESH'),(230128,'Kunda','PRATAPGARH','UTTAR PRADESH'),(230129,'Kunda','PRATAPGARH','UTTAR PRADESH'),(230130,'Lalganj','PRATAPGARH','UTTAR PRADESH'),(230131,'Pratapgarh','PRATAPGARH','UTTAR PRADESH'),(230132,'Lalganj','PRATAPGARH','UTTAR PRADESH'),(230134,'Patti','PRATAPGARH','UTTAR PRADESH'),(230135,'Patti','PRATAPGARH','UTTAR PRADESH'),(230136,'Lalganj','PRATAPGARH','UTTAR PRADESH'),(230137,'Lalganj','PRATAPGARH','UTTAR PRADESH'),(230138,'Patti','PRATAPGARH','UTTAR PRADESH'),(230139,'Patti','PRATAPGARH','UTTAR PRADESH'),(230141,'Kunda','PRATAPGARH','UTTAR PRADESH'),(230142,'Patti','PRATAPGARH','UTTAR PRADESH'),(230143,'Patti','PRATAPGARH','UTTAR PRADESH'),(230144,'Lalganj','PRATAPGARH','UTTAR PRADESH'),(230201,'Kunda','PRATAPGARH','UTTAR PRADESH'),(230202,'Kunda','PRATAPGARH','UTTAR PRADESH'),(230204,'Kunda','PRATAPGARH','UTTAR PRADESH'),(230301,'Patti','PRATAPGARH','UTTAR PRADESH'),(230302,'Patti','PRATAPGARH','UTTAR PRADESH'),(230304,'Pratapgarh','PRATAPGARH','UTTAR PRADESH'),(230306,'Patti','PRATAPGARH','UTTAR PRADESH'),(230401,'Patti','PRATAPGARH','UTTAR PRADESH'),(230402,'Patti','PRATAPGARH','UTTAR PRADESH'),(230403,'Patti','PRATAPGARH','UTTAR PRADESH'),(230404,'Pratapgarh','PRATAPGARH','UTTAR PRADESH'),(230405,'Patti','PRATAPGARH','UTTAR PRADESH'),(230501,'Lalganj','PRATAPGARH','UTTAR PRADESH'),(230502,'Pratapgarh','PRATAPGARH','UTTAR PRADESH'),(230503,'Lalganj','PRATAPGARH','UTTAR PRADESH'),(231001,'Mirzapur','MIRZAPUR','UTTAR PRADESH'),(231205,'Robertsganj','SONBHADRA','UTTAR PRADESH'),(231206,'Robertsganj','SONBHADRA','UTTAR PRADESH'),(231207,'Dudhi','SONBHADRA','UTTAR PRADESH'),(231208,'Dudhi','SONBHADRA','UTTAR PRADESH'),(231209,'Ghorawal **','SONBHADRA','UTTAR PRADESH'),(231210,'Marihan','MIRZAPUR','UTTAR PRADESH'),(231211,'Lalganj','MIRZAPUR','UTTAR PRADESH'),(231212,'Dudhi','SONBHADRA','UTTAR PRADESH'),(231213,'Ghorawal **','SONBHADRA','UTTAR PRADESH'),(231215,'Robertsganj','SONBHADRA','UTTAR PRADESH'),(231216,'Robertsganj','SONBHADRA','UTTAR PRADESH'),(231217,'Dudhi','SONBHADRA','UTTAR PRADESH'),(231218,'Dudhi','SONBHADRA','UTTAR PRADESH'),(231219,'Dudhi','SONBHADRA','UTTAR PRADESH'),(231220,'Dudhi','SONBHADRA','UTTAR PRADESH'),(231221,'Ghorawal **','SONBHADRA','UTTAR PRADESH'),(231222,'Dudhi','SONBHADRA','UTTAR PRADESH'),(231223,'Dudhi','SONBHADRA','UTTAR PRADESH'),(231224,'Dudhi','SONBHADRA','UTTAR PRADESH'),(231225,'Dudhi','SONBHADRA','UTTAR PRADESH'),(231226,'Dudhi','SONBHADRA','UTTAR PRADESH'),(231301,'Chunar','MIRZAPUR','UTTAR PRADESH'),(231302,'Chunar','MIRZAPUR','UTTAR PRADESH'),(231303,'Mirzapur','MIRZAPUR','UTTAR PRADESH'),(231304,'Chunar','MIRZAPUR','UTTAR PRADESH'),(231305,'Chunar','MIRZAPUR','UTTAR PRADESH'),(231306,'Chunar','MIRZAPUR','UTTAR PRADESH'),(231307,'Mirzapur','MIRZAPUR','UTTAR PRADESH'),(231309,'Mirzapur','MIRZAPUR','UTTAR PRADESH'),(231311,'Mirzapur','MIRZAPUR','UTTAR PRADESH'),(231312,'Mirzapur','MIRZAPUR','UTTAR PRADESH'),(231313,'Mirzapur','MIRZAPUR','UTTAR PRADESH'),(231314,'Mirzapur','MIRZAPUR','UTTAR PRADESH'),(231501,'Mirzapur','MIRZAPUR','UTTAR PRADESH'),(232101,'Chandauli','CHANDAULI','UTTAR PRADESH'),(232102,'Chandauli','CHANDAULI','UTTAR PRADESH'),(232103,'Chakia','CHANDAULI','UTTAR PRADESH'),(232104,'Sakaldiha','CHANDAULI','UTTAR PRADESH'),(232105,'Chandauli','CHANDAULI','UTTAR PRADESH'),(232106,'Chakia','CHANDAULI','UTTAR PRADESH'),(232107,'Chandauli','CHANDAULI','UTTAR PRADESH'),(232108,'Sakaldiha','CHANDAULI','UTTAR PRADESH'),(232109,'Sakaldiha','CHANDAULI','UTTAR PRADESH'),(232110,'Chandauli','CHANDAULI','UTTAR PRADESH'),(232111,'Chakia','CHANDAULI','UTTAR PRADESH'),(232118,'Varanasi','VARANASI','UTTAR PRADESH'),(232120,'Sakaldiha','CHANDAULI','UTTAR PRADESH'),(232325,'Zamania','GHAZIPUR','UTTAR PRADESH'),(232326,'Zamania','GHAZIPUR','UTTAR PRADESH'),(232327,'Zamania','GHAZIPUR','UTTAR PRADESH'),(232328,'Zamania','GHAZIPUR','UTTAR PRADESH'),(232329,'Zamania','GHAZIPUR','UTTAR PRADESH'),(232330,'Zamania','GHAZIPUR','UTTAR PRADESH'),(232331,'Zamania','GHAZIPUR','UTTAR PRADESH'),(232332,'Zamania','GHAZIPUR','UTTAR PRADESH'),(232333,'Zamania','GHAZIPUR','UTTAR PRADESH'),(232336,'Zamania','GHAZIPUR','UTTAR PRADESH'),(232339,'Zamania','GHAZIPUR','UTTAR PRADESH'),(232340,'Zamania','GHAZIPUR','UTTAR PRADESH'),(233001,'Ghazipur','GHAZIPUR','UTTAR PRADESH'),(233002,'Ghazipur','GHAZIPUR','UTTAR PRADESH'),(233221,'Saidpur','GHAZIPUR','UTTAR PRADESH'),(233222,'Mohammadabad','GHAZIPUR','UTTAR PRADESH'),(233223,'Saidpur','GHAZIPUR','UTTAR PRADESH'),(233224,'Ghazipur','GHAZIPUR','UTTAR PRADESH'),(233225,'Mohammadabad','GHAZIPUR','UTTAR PRADESH'),(233226,'Ghazipur','GHAZIPUR','UTTAR PRADESH'),(233227,'Mohammadabad','GHAZIPUR','UTTAR PRADESH'),(233228,'Mohammadabad','GHAZIPUR','UTTAR PRADESH'),(233229,'Mohammadabad','GHAZIPUR','UTTAR PRADESH'),(233230,'Mohammadabad','GHAZIPUR','UTTAR PRADESH'),(233231,'Mohammadabad','GHAZIPUR','UTTAR PRADESH'),(233232,'Ghazipur','GHAZIPUR','UTTAR PRADESH'),(233233,'Mohammadabad','GHAZIPUR','UTTAR PRADESH'),(233300,'Ghazipur','GHAZIPUR','UTTAR PRADESH'),(233301,'Mohammadabad','GHAZIPUR','UTTAR PRADESH'),(233302,'Ghazipur','GHAZIPUR','UTTAR PRADESH'),(233303,'Ghazipur','GHAZIPUR','UTTAR PRADESH'),(233304,'Saidpur','GHAZIPUR','UTTAR PRADESH'),(233305,'Ghazipur','GHAZIPUR','UTTAR PRADESH'),(233306,'Saidpur','GHAZIPUR','UTTAR PRADESH'),(233307,'Saidpur','GHAZIPUR','UTTAR PRADESH'),(233310,'Jakhanian **','GHAZIPUR','UTTAR PRADESH'),(233311,'Saidpur','GHAZIPUR','UTTAR PRADESH'),(241001,'Hardoi','HARDOI','UTTAR PRADESH'),(241121,'Hardoi','HARDOI','UTTAR PRADESH'),(241122,'Hardoi','HARDOI','UTTAR PRADESH'),(241123,'Sawayajpur **','HARDOI','UTTAR PRADESH'),(241124,'Shahabad','HARDOI','UTTAR PRADESH'),(241125,'Hardoi','HARDOI','UTTAR PRADESH'),(241126,'Sandila','HARDOI','UTTAR PRADESH'),(241127,'Sandila','HARDOI','UTTAR PRADESH'),(241201,'Sandila','HARDOI','UTTAR PRADESH'),(241202,'Sandila','HARDOI','UTTAR PRADESH'),(241203,'Sandila','HARDOI','UTTAR PRADESH'),(241204,'Sandila','HARDOI','UTTAR PRADESH'),(241301,'Hardoi','HARDOI','UTTAR PRADESH'),(241302,'Bilgram','HARDOI','UTTAR PRADESH'),(241303,'Bilgram','HARDOI','UTTAR PRADESH'),(241304,'Hardoi','HARDOI','UTTAR PRADESH'),(241305,'Sandila','HARDOI','UTTAR PRADESH'),(241401,'Sawayajpur **','HARDOI','UTTAR PRADESH'),(241402,'Sawayajpur **','HARDOI','UTTAR PRADESH'),(241403,'Bilgram','HARDOI','UTTAR PRADESH'),(241404,'Hardoi','HARDOI','UTTAR PRADESH'),(241405,'Hardoi','HARDOI','UTTAR PRADESH'),(241406,'Shahabad','HARDOI','UTTAR PRADESH'),(241407,'Shahabad','HARDOI','UTTAR PRADESH'),(242001,'Shahjahanpur','SHAHJAHANPUR','UTTAR PRADESH'),(242021,'Gunnaur','BUDAUN','UTTAR PRADESH'),(242042,'Powayan','SHAHJAHANPUR','UTTAR PRADESH'),(242123,'Powayan','SHAHJAHANPUR','UTTAR PRADESH'),(242127,'Jalalabad','SHAHJAHANPUR','UTTAR PRADESH'),(242220,'Jalalabad','SHAHJAHANPUR','UTTAR PRADESH'),(242221,'Shahjahanpur','SHAHJAHANPUR','UTTAR PRADESH'),(242223,'Shahjahanpur','SHAHJAHANPUR','UTTAR PRADESH'),(242226,'Shahjahanpur','SHAHJAHANPUR','UTTAR PRADESH'),(242301,'Tilhar','SHAHJAHANPUR','UTTAR PRADESH'),(242303,'Jalalabad','SHAHJAHANPUR','UTTAR PRADESH'),(242305,'Tilhar','SHAHJAHANPUR','UTTAR PRADESH'),(242306,'Powayan','SHAHJAHANPUR','UTTAR PRADESH'),(242307,'Tilhar','SHAHJAHANPUR','UTTAR PRADESH'),(242401,'Powayan','SHAHJAHANPUR','UTTAR PRADESH'),(242405,'Powayan','SHAHJAHANPUR','UTTAR PRADESH'),(242406,'Shahjahanpur','SHAHJAHANPUR','UTTAR PRADESH'),(242407,'Tilhar','SHAHJAHANPUR','UTTAR PRADESH'),(243001,'Bareilly','BAREILLY','UTTAR PRADESH'),(243002,'Bareilly','BAREILLY','UTTAR PRADESH'),(243003,'Bareilly','BAREILLY','UTTAR PRADESH'),(243004,'Faridpur','BAREILLY','UTTAR PRADESH'),(243005,'Bareilly','BAREILLY','UTTAR PRADESH'),(243006,'Bareilly','BAREILLY','UTTAR PRADESH'),(243122,'Bareilly','BAREILLY','UTTAR PRADESH'),(243123,'Bareilly','BAREILLY','UTTAR PRADESH'),(243126,'Bareilly','BAREILLY','UTTAR PRADESH'),(243201,'Baheri','BAREILLY','UTTAR PRADESH'),(243202,'Bareilly','BAREILLY','UTTAR PRADESH'),(243203,'Baheri','BAREILLY','UTTAR PRADESH'),(243301,'Aonla','BAREILLY','UTTAR PRADESH'),(243302,'Aonla','BAREILLY','UTTAR PRADESH'),(243303,'Faridpur','BAREILLY','UTTAR PRADESH'),(243401,'Aonla','BAREILLY','UTTAR PRADESH'),(243402,'Aonla','BAREILLY','UTTAR PRADESH'),(243403,'Aonla','BAREILLY','UTTAR PRADESH'),(243407,'Nawabganj','BAREILLY','UTTAR PRADESH'),(243501,'Bareilly','BAREILLY','UTTAR PRADESH'),(243502,'Bareilly','BAREILLY','UTTAR PRADESH'),(243503,'Faridpur','BAREILLY','UTTAR PRADESH'),(243504,'Meerganj','BAREILLY','UTTAR PRADESH'),(243505,'Meerganj','BAREILLY','UTTAR PRADESH'),(243506,'Aonla','BAREILLY','UTTAR PRADESH'),(243601,'Budaun','BUDAUN','UTTAR PRADESH'),(243630,'Dataganj','BUDAUN','UTTAR PRADESH'),(243631,'Dataganj','BUDAUN','UTTAR PRADESH'),(243632,'Bisauli','BUDAUN','UTTAR PRADESH'),(243633,'Bilsi **','BUDAUN','UTTAR PRADESH'),(243634,'Budaun','BUDAUN','UTTAR PRADESH'),(243635,'Dataganj','BUDAUN','UTTAR PRADESH'),(243636,'Budaun','BUDAUN','UTTAR PRADESH'),(243637,'Dataganj','BUDAUN','UTTAR PRADESH'),(243638,'Sahaswan','BUDAUN','UTTAR PRADESH'),(243639,'Budaun','BUDAUN','UTTAR PRADESH'),(243641,'Dataganj','BUDAUN','UTTAR PRADESH'),(243720,'Sahaswan','BUDAUN','UTTAR PRADESH'),(243722,'Gunnaur','BUDAUN','UTTAR PRADESH'),(243723,'Bisauli','BUDAUN','UTTAR PRADESH'),(243724,'Bilsi **','BUDAUN','UTTAR PRADESH'),(243725,'Bisauli','BUDAUN','UTTAR PRADESH'),(243726,'Budaun','BUDAUN','UTTAR PRADESH'),(243727,'Gunnaur','BUDAUN','UTTAR PRADESH'),(243751,'Gunnaur','BUDAUN','UTTAR PRADESH'),(244001,'Thakurdwara','MORADABAD','UTTAR PRADESH'),(244102,'Amroha','JYOTIBA PHULE NAGAR','UTTAR PRADESH'),(244103,'Moradabad','MORADABAD','UTTAR PRADESH'),(244104,'Moradabad','MORADABAD','UTTAR PRADESH'),(244221,'Amroha','JYOTIBA PHULE NAGAR','UTTAR PRADESH'),(244222,'Amroha','JYOTIBA PHULE NAGAR','UTTAR PRADESH'),(244223,'Dhanaura','JYOTIBA PHULE NAGAR','UTTAR PRADESH'),(244225,'Dhanaura','JYOTIBA PHULE NAGAR','UTTAR PRADESH'),(244231,'Dhanaura','JYOTIBA PHULE NAGAR','UTTAR PRADESH'),(244235,'Moradabad','MORADABAD','UTTAR PRADESH'),(244236,'Amroha','JYOTIBA PHULE NAGAR','UTTAR PRADESH'),(244241,'Hasanpur','JYOTIBA PHULE NAGAR','UTTAR PRADESH'),(244242,'Dhanaura','JYOTIBA PHULE NAGAR','UTTAR PRADESH'),(244245,'Amroha','JYOTIBA PHULE NAGAR','UTTAR PRADESH'),(244251,'Amroha','JYOTIBA PHULE NAGAR','UTTAR PRADESH'),(244255,'Hasanpur','JYOTIBA PHULE NAGAR','UTTAR PRADESH'),(244301,'Moradabad','MORADABAD','UTTAR PRADESH'),(244302,'Chandausi','MORADABAD','UTTAR PRADESH'),(244303,'Sambhal','MORADABAD','UTTAR PRADESH'),(244304,'Sambhal','MORADABAD','UTTAR PRADESH'),(244401,'Moradabad','MORADABAD','UTTAR PRADESH'),(244402,'Thakurdwara','MORADABAD','UTTAR PRADESH'),(244410,'Chandausi','MORADABAD','UTTAR PRADESH'),(244411,'Moradabad','MORADABAD','UTTAR PRADESH'),(244412,'Chandausi','MORADABAD','UTTAR PRADESH'),(244413,'Bilari','MORADABAD','UTTAR PRADESH'),(244414,'Chandausi','MORADABAD','UTTAR PRADESH'),(244415,'Bilari','MORADABAD','UTTAR PRADESH'),(244501,'Amroha','JYOTIBA PHULE NAGAR','UTTAR PRADESH'),(244504,'Moradabad','MORADABAD','UTTAR PRADESH'),(244601,'Thakurdwara','MORADABAD','UTTAR PRADESH'),(244602,'Thakurdwara','MORADABAD','UTTAR PRADESH'),(244701,'Shahabad','RAMPUR','UTTAR PRADESH'),(244712,'Kashipur','UDHAM SINGH NAGAR','UTTARAKHAND'),(244713,'Kashipur','UDHAM SINGH NAGAR','UTTARAKHAND'),(244715,'Bhikia Sain','ALMORA','UTTARAKHAND'),(244716,'Kashipur','UDHAM SINGH NAGAR','UTTARAKHAND'),(244717,'Kashipur','UDHAM SINGH NAGAR','UTTARAKHAND'),(244901,'Shahabad','RAMPUR','UTTAR PRADESH'),(244921,'Rampur','RAMPUR','UTTAR PRADESH'),(244922,'Shahabad','RAMPUR','UTTAR PRADESH'),(244923,'Moradabad','MORADABAD','UTTAR PRADESH'),(244924,'Suar','RAMPUR','UTTAR PRADESH'),(244925,'Dhanaura','JYOTIBA PHULE NAGAR','UTTAR PRADESH'),(244926,'Rampur','RAMPUR','UTTAR PRADESH'),(244927,'Rampur','RAMPUR','UTTAR PRADESH'),(244928,'Bilaspur','RAMPUR','UTTAR PRADESH'),(245101,'Dadri','GAUTAM BUDDHA NAGAR','UTTAR PRADESH'),(245201,'Hapur','GHAZIABAD','UTTAR PRADESH'),(245205,'Garhmukteshwar','GHAZIABAD','UTTAR PRADESH'),(245206,'Meerut','MEERUT','UTTAR PRADESH'),(245207,'Garhmukteshwar','GHAZIABAD','UTTAR PRADESH'),(245208,'Garhmukteshwar','GHAZIABAD','UTTAR PRADESH'),(245301,'Hapur','GHAZIABAD','UTTAR PRADESH'),(245304,'Ghaziabad','GHAZIABAD','UTTAR PRADESH'),(246001,'Pauri','PAURI GARHWAL','UTTARAKHAND'),(246113,'Pauri','PAURI GARHWAL','UTTARAKHAND'),(246121,'Kotdwara','PAURI GARHWAL','UTTARAKHAND'),(246123,'Pauri','PAURI GARHWAL','UTTARAKHAND'),(246124,'Kotdwara','PAURI GARHWAL','UTTARAKHAND'),(246125,'Srinagar **','PAURI GARHWAL','UTTARAKHAND'),(246127,'Kotdwara','PAURI GARHWAL','UTTARAKHAND'),(246128,'Lansdowne','PAURI GARHWAL','UTTARAKHAND'),(246129,'Lansdowne','PAURI GARHWAL','UTTARAKHAND'),(246130,'Thali Sain','PAURI GARHWAL','UTTARAKHAND'),(246131,'Lansdowne','PAURI GARHWAL','UTTARAKHAND'),(246141,'Rudraprayag','RUDRAPRAYAG','UTTARAKHAND'),(246142,'Kotdwara','PAURI GARHWAL','UTTARAKHAND'),(246144,'Kotdwara','PAURI GARHWAL','UTTARAKHAND'),(246146,'Kotdwara','PAURI GARHWAL','UTTARAKHAND'),(246147,'Srinagar **','PAURI GARHWAL','UTTARAKHAND'),(246148,'Pauri','PAURI GARHWAL','UTTARAKHAND'),(246149,'Kotdwara','PAURI GARHWAL','UTTARAKHAND'),(246155,'Lansdowne','PAURI GARHWAL','UTTARAKHAND'),(246159,'Pauri','PAURI GARHWAL','UTTARAKHAND'),(246161,'Dhoomakot','PAURI GARHWAL','UTTARAKHAND'),(246162,'Pauri','PAURI GARHWAL','UTTARAKHAND'),(246163,'Pauri','PAURI GARHWAL','UTTARAKHAND'),(246164,'Pauri','PAURI GARHWAL','UTTARAKHAND'),(246165,'Pauri','PAURI GARHWAL','UTTARAKHAND'),(246166,'Pauri','PAURI GARHWAL','UTTARAKHAND'),(246167,'Lansdowne','PAURI GARHWAL','UTTARAKHAND'),(246169,'Lansdowne','PAURI GARHWAL','UTTARAKHAND'),(246171,'Rudraprayag','RUDRAPRAYAG','UTTARAKHAND'),(246172,'Lansdowne','PAURI GARHWAL','UTTARAKHAND'),(246173,'Lansdowne','PAURI GARHWAL','UTTARAKHAND'),(246174,'Srinagar **','PAURI GARHWAL','UTTARAKHAND'),(246175,'Pauri','PAURI GARHWAL','UTTARAKHAND'),(246176,'Pauri','PAURI GARHWAL','UTTARAKHAND'),(246177,'Thali Sain','PAURI GARHWAL','UTTARAKHAND'),(246179,'Lansdowne','PAURI GARHWAL','UTTARAKHAND'),(246193,'Lansdowne','PAURI GARHWAL','UTTARAKHAND'),(246194,'Pauri','PAURI GARHWAL','UTTARAKHAND'),(246275,'Thali Sain','PAURI GARHWAL','UTTARAKHAND'),(246276,'Thali Sain','PAURI GARHWAL','UTTARAKHAND'),(246277,'Dhoomakot','PAURI GARHWAL','UTTARAKHAND'),(246278,'Thali Sain','PAURI GARHWAL','UTTARAKHAND'),(246279,'Dhoomakot','PAURI GARHWAL','UTTARAKHAND'),(246285,'Thali Sain','PAURI GARHWAL','UTTARAKHAND'),(246401,'Chamoli','CHAMOLI','UTTARAKHAND'),(246419,'Ukhimath','RUDRAPRAYAG','UTTARAKHAND'),(246421,'Rudraprayag','RUDRAPRAYAG','UTTARAKHAND'),(246422,'Joshimath','CHAMOLI','UTTARAKHAND'),(246424,'Chamoli','CHAMOLI','UTTARAKHAND'),(246425,'Ukhimath','RUDRAPRAYAG','UTTARAKHAND'),(246426,'Chamoli','CHAMOLI','UTTARAKHAND'),(246427,'Tharali','CHAMOLI','UTTARAKHAND'),(246428,'Gair Sain **','CHAMOLI','UTTARAKHAND'),(246429,'Rudraprayag','RUDRAPRAYAG','UTTARAKHAND'),(246431,'Gair Sain **','CHAMOLI','UTTARAKHAND'),(246435,'Chamoli','CHAMOLI','UTTARAKHAND'),(246439,'Ukhimath','RUDRAPRAYAG','UTTARAKHAND'),(246440,'Gair Sain **','CHAMOLI','UTTARAKHAND'),(246441,'Tharali','CHAMOLI','UTTARAKHAND'),(246442,'Rudraprayag','RUDRAPRAYAG','UTTARAKHAND'),(246443,'Joshimath','CHAMOLI','UTTARAKHAND'),(246444,'Karnaprayag','CHAMOLI','UTTARAKHAND'),(246445,'Rudraprayag','RUDRAPRAYAG','UTTARAKHAND'),(246446,'Pokhari **','CHAMOLI','UTTARAKHAND'),(246448,'Rudraprayag','RUDRAPRAYAG','UTTARAKHAND'),(246449,'Pokhari **','CHAMOLI','UTTARAKHAND'),(246453,'Tharali','CHAMOLI','UTTARAKHAND'),(246455,'Tharali','CHAMOLI','UTTARAKHAND'),(246469,'Ukhimath','RUDRAPRAYAG','UTTARAKHAND'),(246471,'Ukhimath','RUDRAPRAYAG','UTTARAKHAND'),(246472,'Chamoli','CHAMOLI','UTTARAKHAND'),(246473,'Pokhari **','CHAMOLI','UTTARAKHAND'),(246474,'Karnaprayag','CHAMOLI','UTTARAKHAND'),(246475,'Rudraprayag','RUDRAPRAYAG','UTTARAKHAND'),(246481,'Tharali','CHAMOLI','UTTARAKHAND'),(246482,'Tharali','CHAMOLI','UTTARAKHAND'),(246483,'Joshimath','CHAMOLI','UTTARAKHAND'),(246486,'Gair Sain **','CHAMOLI','UTTARAKHAND'),(246487,'Gair Sain **','CHAMOLI','UTTARAKHAND'),(246488,'Karnaprayag','CHAMOLI','UTTARAKHAND'),(246495,'Rudraprayag','RUDRAPRAYAG','UTTARAKHAND'),(246701,'Bijnor','BIJNOR','UTTAR PRADESH'),(246721,'Bijnor','BIJNOR','UTTAR PRADESH'),(246722,'Dhampur','BIJNOR','UTTAR PRADESH'),(246723,'Najibabad','BIJNOR','UTTAR PRADESH'),(246724,'Nagina','BIJNOR','UTTAR PRADESH'),(246725,'Chandpur','BIJNOR','UTTAR PRADESH'),(246726,'Bijnor','BIJNOR','UTTAR PRADESH'),(246727,'Chandpur','BIJNOR','UTTAR PRADESH'),(246728,'Bijnor','BIJNOR','UTTAR PRADESH'),(246729,'Chandpur','BIJNOR','UTTAR PRADESH'),(246731,'Najibabad','BIJNOR','UTTAR PRADESH'),(246732,'Najibabad','BIJNOR','UTTAR PRADESH'),(246733,'Dhampur','BIJNOR','UTTAR PRADESH'),(246734,'Chandpur','BIJNOR','UTTAR PRADESH'),(246735,'Dhampur','BIJNOR','UTTAR PRADESH'),(246736,'Chandpur','BIJNOR','UTTAR PRADESH'),(246737,'Chandpur','BIJNOR','UTTAR PRADESH'),(246745,'Dhampur','BIJNOR','UTTAR PRADESH'),(246746,'Dhampur','BIJNOR','UTTAR PRADESH'),(246747,'Nagina','BIJNOR','UTTAR PRADESH'),(246749,'Najibabad','BIJNOR','UTTAR PRADESH'),(246761,'Dhampur','BIJNOR','UTTAR PRADESH'),(246762,'Nagina','BIJNOR','UTTAR PRADESH'),(246763,'Nagina','BIJNOR','UTTAR PRADESH'),(246764,'Nagina','BIJNOR','UTTAR PRADESH'),(247001,'Saharanpur','SAHARANPUR','UTTAR PRADESH'),(247002,'Saharanpur','SAHARANPUR','UTTAR PRADESH'),(247120,'Behat','SAHARANPUR','UTTAR PRADESH'),(247121,'Behat','SAHARANPUR','UTTAR PRADESH'),(247122,'Nakur','SAHARANPUR','UTTAR PRADESH'),(247129,'Behat','SAHARANPUR','UTTAR PRADESH'),(247231,'Nakur','SAHARANPUR','UTTAR PRADESH'),(247232,'Nakur','SAHARANPUR','UTTAR PRADESH'),(247340,'Nakur','SAHARANPUR','UTTAR PRADESH'),(247341,'Nakur','SAHARANPUR','UTTAR PRADESH'),(247342,'Nakur','SAHARANPUR','UTTAR PRADESH'),(247343,'Nakur','SAHARANPUR','UTTAR PRADESH'),(247451,'Deoband','SAHARANPUR','UTTAR PRADESH'),(247452,'Deoband','SAHARANPUR','UTTAR PRADESH'),(247453,'Deoband','SAHARANPUR','UTTAR PRADESH'),(247551,'Saharanpur','SAHARANPUR','UTTAR PRADESH'),(247554,'Deoband','SAHARANPUR','UTTAR PRADESH'),(247656,'Roorkee','HARIDWAR','UTTARAKHAND'),(247661,'Roorkee','HARIDWAR','UTTARAKHAND'),(247662,'Behat','SAHARANPUR','UTTAR PRADESH'),(247663,'Hardwar','HARIDWAR','UTTARAKHAND'),(247664,'Roorkee','HARIDWAR','UTTARAKHAND'),(247665,'Roorkee','HARIDWAR','UTTARAKHAND'),(247666,'Roorkee','HARIDWAR','UTTARAKHAND'),(247667,'Roorkee','HARIDWAR','UTTARAKHAND'),(247668,'Roorkee','HARIDWAR','UTTARAKHAND'),(247669,'Saharanpur','SAHARANPUR','UTTAR PRADESH'),(247670,'Roorkee','HARIDWAR','UTTARAKHAND'),(247671,'Roorkee','HARIDWAR','UTTARAKHAND'),(247771,'Shamli **','MUZAFFARNAGAR','UTTAR PRADESH'),(247772,'Muzaffarnagar','MUZAFFARNAGAR','UTTAR PRADESH'),(247773,'Kairana','MUZAFFARNAGAR','UTTAR PRADESH'),(247774,'Kairana','MUZAFFARNAGAR','UTTAR PRADESH'),(247775,'Budhana','MUZAFFARNAGAR','UTTAR PRADESH'),(247776,'Shamli **','MUZAFFARNAGAR','UTTAR PRADESH'),(247777,'Shamli **','MUZAFFARNAGAR','UTTAR PRADESH'),(247778,'Kairana','MUZAFFARNAGAR','UTTAR PRADESH'),(248001,'Dehradun','DEHRADUN','UTTARAKHAND'),(248002,'Dehradun','DEHRADUN','UTTARAKHAND'),(248003,'Dehradun','DEHRADUN','UTTARAKHAND'),(248005,'Dehradun','DEHRADUN','UTTARAKHAND'),(248006,'Dehradun','DEHRADUN','UTTARAKHAND'),(248007,'Vikasnagar **','DEHRADUN','UTTARAKHAND'),(248008,'Dehradun','DEHRADUN','UTTARAKHAND'),(248009,'Dehradun','DEHRADUN','UTTARAKHAND'),(248011,'Dehradun','DEHRADUN','UTTARAKHAND'),(248012,'Dehradun','DEHRADUN','UTTARAKHAND'),(248013,'Dehradun','DEHRADUN','UTTARAKHAND'),(248014,'Dehradun','DEHRADUN','UTTARAKHAND'),(248015,'Dehradun','DEHRADUN','UTTARAKHAND'),(248016,'Dehradun','DEHRADUN','UTTARAKHAND'),(248121,'Dehradun','DEHRADUN','UTTARAKHAND'),(248122,'Dehradun','DEHRADUN','UTTARAKHAND'),(248123,'Chakrata','DEHRADUN','UTTARAKHAND'),(248124,'Chakrata','DEHRADUN','UTTARAKHAND'),(248125,'Vikasnagar **','DEHRADUN','UTTARAKHAND'),(248140,'Rishikesh **','DEHRADUN','UTTARAKHAND'),(248142,'Vikasnagar **','DEHRADUN','UTTARAKHAND'),(248143,'Rishikesh **','DEHRADUN','UTTARAKHAND'),(248145,'Dehradun','DEHRADUN','UTTARAKHAND'),(248146,'Dehradun','DEHRADUN','UTTARAKHAND'),(248158,'Chakrata','DEHRADUN','UTTARAKHAND'),(248159,'Dehradun','DEHRADUN','UTTARAKHAND'),(248165,'Chakrata','DEHRADUN','UTTARAKHAND'),(248171,'Dehradun','DEHRADUN','UTTARAKHAND'),(248179,'Dehradun','DEHRADUN','UTTARAKHAND'),(248195,'Dehradun','DEHRADUN','UTTARAKHAND'),(248196,'Chakrata','DEHRADUN','UTTARAKHAND'),(248197,'Vikasnagar **','DEHRADUN','UTTARAKHAND'),(248198,'Vikasnagar **','DEHRADUN','UTTARAKHAND'),(248199,'Chakrata','DEHRADUN','UTTARAKHAND'),(249001,'Tehri','TEHRI GARHWAL','UTTARAKHAND'),(249121,'Pratapnagar','TEHRI GARHWAL','UTTARAKHAND'),(249122,'Devprayag','TEHRI GARHWAL','UTTARAKHAND'),(249123,'Tehri','TEHRI GARHWAL','UTTARAKHAND'),(249124,'Tehri','TEHRI GARHWAL','UTTARAKHAND'),(249125,'Ghansali **','TEHRI GARHWAL','UTTARAKHAND'),(249126,'Devprayag','TEHRI GARHWAL','UTTARAKHAND'),(249127,'Pratapnagar','TEHRI GARHWAL','UTTARAKHAND'),(249128,'Puraula','UTTARKASHI','UTTARAKHAND'),(249130,'Tehri','TEHRI GARHWAL','UTTARAKHAND'),(249131,'Tehri','TEHRI GARHWAL','UTTARAKHAND'),(249132,'Tehri','TEHRI GARHWAL','UTTARAKHAND'),(249135,'Bhatwari','UTTARKASHI','UTTARAKHAND'),(249137,'Narendranagar','TEHRI GARHWAL','UTTARAKHAND'),(249141,'Rajgarhi','UTTARKASHI','UTTARAKHAND'),(249145,'Tehri','TEHRI GARHWAL','UTTARAKHAND'),(249146,'Narendranagar','TEHRI GARHWAL','UTTARAKHAND'),(249151,'Dunda','UTTARKASHI','UTTARAKHAND'),(249152,'Dunda','UTTARKASHI','UTTARAKHAND'),(249155,'Ghansali **','TEHRI GARHWAL','UTTARAKHAND'),(249161,'Devprayag','TEHRI GARHWAL','UTTARAKHAND'),(249165,'Pratapnagar','TEHRI GARHWAL','UTTARAKHAND'),(249171,'Pratapnagar','TEHRI GARHWAL','UTTARAKHAND'),(249175,'Narendranagar','TEHRI GARHWAL','UTTARAKHAND'),(249180,'Tehri','TEHRI GARHWAL','UTTARAKHAND'),(249181,'Ghansali **','TEHRI GARHWAL','UTTARAKHAND'),(249185,'Puraula','UTTARKASHI','UTTARAKHAND'),(249186,'Tehri','TEHRI GARHWAL','UTTARAKHAND'),(249192,'Narendranagar','TEHRI GARHWAL','UTTARAKHAND'),(249193,'Dunda','UTTARKASHI','UTTARAKHAND'),(249194,'Bhatwari','UTTARKASHI','UTTARAKHAND'),(249195,'Bhatwari','UTTARKASHI','UTTARAKHAND'),(249196,'Dunda','UTTARKASHI','UTTARAKHAND'),(249199,'Tehri','TEHRI GARHWAL','UTTARAKHAND'),(249201,'Rishikesh **','DEHRADUN','UTTARAKHAND'),(249202,'Rishikesh **','DEHRADUN','UTTARAKHAND'),(249203,'Rishikesh **','DEHRADUN','UTTARAKHAND'),(249204,'Rishikesh **','DEHRADUN','UTTARAKHAND'),(249205,'Rishikesh **','DEHRADUN','UTTARAKHAND'),(249301,'Srinagar **','PAURI GARHWAL','UTTARAKHAND'),(249302,'Kotdwara','PAURI GARHWAL','UTTARAKHAND'),(249304,'Kotdwara','PAURI GARHWAL','UTTARAKHAND'),(249306,'Kotdwara','PAURI GARHWAL','UTTARAKHAND'),(249401,'Hardwar','HARIDWAR','UTTARAKHAND'),(249402,'Hardwar','HARIDWAR','UTTARAKHAND'),(249403,'Hardwar','HARIDWAR','UTTARAKHAND'),(249404,'Hardwar','HARIDWAR','UTTARAKHAND'),(249405,'Hardwar','HARIDWAR','UTTARAKHAND'),(249407,'Hardwar','HARIDWAR','UTTARAKHAND'),(249408,'Hardwar','HARIDWAR','UTTARAKHAND'),(249410,'Hardwar','HARIDWAR','UTTARAKHAND'),(249411,'Hardwar','HARIDWAR','UTTARAKHAND'),(250001,'Mawana','MEERUT','UTTAR PRADESH'),(250002,'Meerut','MEERUT','UTTAR PRADESH'),(250003,'Meerut','MEERUT','UTTAR PRADESH'),(250004,'Meerut','MEERUT','UTTAR PRADESH'),(250005,'Meerut','MEERUT','UTTAR PRADESH'),(250101,'Khekada **','BAGPAT','UTTAR PRADESH'),(250103,'Meerut','MEERUT','UTTAR PRADESH'),(250104,'Mawana','MEERUT','UTTAR PRADESH'),(250106,'Mawana','MEERUT','UTTAR PRADESH'),(250110,'Sardhana','MEERUT','UTTAR PRADESH'),(250205,'Meerut','MEERUT','UTTAR PRADESH'),(250221,'Sardhana','MEERUT','UTTAR PRADESH'),(250222,'Meerut','MEERUT','UTTAR PRADESH'),(250223,'Mawana','MEERUT','UTTAR PRADESH'),(250341,'Sardhana','MEERUT','UTTAR PRADESH'),(250342,'Sardhana','MEERUT','UTTAR PRADESH'),(250344,'Sardhana','MEERUT','UTTAR PRADESH'),(250345,'Khekada **','BAGPAT','UTTAR PRADESH'),(250401,'Mawana','MEERUT','UTTAR PRADESH'),(250402,'Mawana','MEERUT','UTTAR PRADESH'),(250404,'Mawana','MEERUT','UTTAR PRADESH'),(250406,'Mawana','MEERUT','UTTAR PRADESH'),(250501,'Meerut','MEERUT','UTTAR PRADESH'),(250502,'Meerut','MEERUT','UTTAR PRADESH'),(250601,'Baghpat','BAGPAT','UTTAR PRADESH'),(250606,'Khekada **','BAGPAT','UTTAR PRADESH'),(250609,'Baghpat','BAGPAT','UTTAR PRADESH'),(250611,'Baraut **','BAGPAT','UTTAR PRADESH'),(250615,'Khekada **','BAGPAT','UTTAR PRADESH'),(250617,'Baraut **','BAGPAT','UTTAR PRADESH'),(250619,'Baghpat','BAGPAT','UTTAR PRADESH'),(250620,'Baraut **','BAGPAT','UTTAR PRADESH'),(250621,'Baraut **','BAGPAT','UTTAR PRADESH'),(250622,'Baraut **','BAGPAT','UTTAR PRADESH'),(250623,'Baraut **','BAGPAT','UTTAR PRADESH'),(250625,'Baraut **','BAGPAT','UTTAR PRADESH'),(250626,'Khekada **','BAGPAT','UTTAR PRADESH'),(251001,'Muzaffarnagar','MUZAFFARNAGAR','UTTAR PRADESH'),(251002,'Muzaffarnagar','MUZAFFARNAGAR','UTTAR PRADESH'),(251003,'Muzaffarnagar','MUZAFFARNAGAR','UTTAR PRADESH'),(251201,'Jansath','MUZAFFARNAGAR','UTTAR PRADESH'),(251202,'Muzaffarnagar','MUZAFFARNAGAR','UTTAR PRADESH'),(251203,'Muzaffarnagar','MUZAFFARNAGAR','UTTAR PRADESH'),(251301,'Shamli **','MUZAFFARNAGAR','UTTAR PRADESH'),(251305,'Shamli **','MUZAFFARNAGAR','UTTAR PRADESH'),(251306,'Muzaffarnagar','MUZAFFARNAGAR','UTTAR PRADESH'),(251307,'Muzaffarnagar','MUZAFFARNAGAR','UTTAR PRADESH'),(251308,'Jansath','MUZAFFARNAGAR','UTTAR PRADESH'),(251309,'Muzaffarnagar','MUZAFFARNAGAR','UTTAR PRADESH'),(251310,'Muzaffarnagar','MUZAFFARNAGAR','UTTAR PRADESH'),(251311,'Muzaffarnagar','MUZAFFARNAGAR','UTTAR PRADESH'),(251314,'Jansath','MUZAFFARNAGAR','UTTAR PRADESH'),(251315,'Jansath','MUZAFFARNAGAR','UTTAR PRADESH'),(251316,'Muzaffarnagar','MUZAFFARNAGAR','UTTAR PRADESH'),(251318,'Budhana','MUZAFFARNAGAR','UTTAR PRADESH'),(251319,'Shamli **','MUZAFFARNAGAR','UTTAR PRADESH'),(251320,'Jansath','MUZAFFARNAGAR','UTTAR PRADESH'),(251327,'Muzaffarnagar','MUZAFFARNAGAR','UTTAR PRADESH'),(261001,'Sitapur','SITAPUR','UTTAR PRADESH'),(261121,'Sitapur','SITAPUR','UTTAR PRADESH'),(261125,'Sitapur','SITAPUR','UTTAR PRADESH'),(261131,'Sitapur','SITAPUR','UTTAR PRADESH'),(261135,'Laharpur','SITAPUR','UTTAR PRADESH'),(261136,'Laharpur','SITAPUR','UTTAR PRADESH'),(261141,'Misrikh','SITAPUR','UTTAR PRADESH'),(261145,'Biswan','SITAPUR','UTTAR PRADESH'),(261151,'Misrikh','SITAPUR','UTTAR PRADESH'),(261201,'Biswan','SITAPUR','UTTAR PRADESH'),(261202,'Biswan','SITAPUR','UTTAR PRADESH'),(261203,'Mahmudabad','SITAPUR','UTTAR PRADESH'),(261204,'Mahmudabad','SITAPUR','UTTAR PRADESH'),(261205,'Mahmudabad','SITAPUR','UTTAR PRADESH'),(261206,'Mahmudabad','SITAPUR','UTTAR PRADESH'),(261207,'Laharpur','SITAPUR','UTTAR PRADESH'),(261208,'Laharpur','SITAPUR','UTTAR PRADESH'),(261301,'Sidhauli','SITAPUR','UTTAR PRADESH'),(261302,'Sidhauli','SITAPUR','UTTAR PRADESH'),(261303,'Sidhauli','SITAPUR','UTTAR PRADESH'),(261401,'Misrikh','SITAPUR','UTTAR PRADESH'),(261402,'Misrikh','SITAPUR','UTTAR PRADESH'),(261403,'Misrikh','SITAPUR','UTTAR PRADESH'),(261404,'Misrikh','SITAPUR','UTTAR PRADESH'),(261405,'Misrikh','SITAPUR','UTTAR PRADESH'),(261501,'Lakhimpur','KHERI','UTTAR PRADESH'),(261502,'Dhaurahara','KHERI','UTTAR PRADESH'),(261505,'Mohammdi','KHERI','UTTAR PRADESH'),(261506,'Lakhimpur','KHERI','UTTAR PRADESH'),(262001,'Pilibhit','PILIBHIT','UTTAR PRADESH'),(262121,'Pilibhit','PILIBHIT','UTTAR PRADESH'),(262122,'Puranpur','PILIBHIT','UTTAR PRADESH'),(262124,'Puranpur','PILIBHIT','UTTAR PRADESH'),(262201,'Bisalpur','PILIBHIT','UTTAR PRADESH'),(262202,'Bisalpur','PILIBHIT','UTTAR PRADESH'),(262203,'Pilibhit','PILIBHIT','UTTAR PRADESH'),(262302,'Pilibhit','PILIBHIT','UTTAR PRADESH'),(262305,'Pilibhit','PILIBHIT','UTTAR PRADESH'),(262308,'Khatima','UDHAM SINGH NAGAR','UTTARAKHAND'),(262309,'Champawat','CHAMPAWAT','UTTARAKHAND'),(262310,'Champawat','CHAMPAWAT','UTTARAKHAND'),(262311,'Sitarganj','UDHAM SINGH NAGAR','UTTARAKHAND'),(262401,'Kashipur','UDHAM SINGH NAGAR','UTTARAKHAND'),(262402,'Nainital','NAINITAL','UTTARAKHAND'),(262405,'Sitarganj','UDHAM SINGH NAGAR','UTTARAKHAND'),(262406,'Nawabganj','BAREILLY','UTTAR PRADESH'),(262501,'Pithoragarh','PITHORAGARH','UTTARAKHAND'),(262502,'Pithoragarh','PITHORAGARH','UTTARAKHAND'),(262520,'Pithoragarh','PITHORAGARH','UTTARAKHAND'),(262521,'Pithoragarh','PITHORAGARH','UTTARAKHAND'),(262522,'Gangolihat','PITHORAGARH','UTTARAKHAND'),(262523,'Champawat','CHAMPAWAT','UTTARAKHAND'),(262524,'Champawat','CHAMPAWAT','UTTARAKHAND'),(262525,'Champawat','CHAMPAWAT','UTTARAKHAND'),(262526,'Pithoragarh','PITHORAGARH','UTTARAKHAND'),(262527,'Champawat','CHAMPAWAT','UTTARAKHAND'),(262528,'Champawat','CHAMPAWAT','UTTARAKHAND'),(262529,'Pithoragarh','PITHORAGARH','UTTARAKHAND'),(262530,'Pithoragarh','PITHORAGARH','UTTARAKHAND'),(262531,'Didihat','PITHORAGARH','UTTARAKHAND'),(262532,'Gangolihat','PITHORAGARH','UTTARAKHAND'),(262533,'Didihat','PITHORAGARH','UTTARAKHAND'),(262534,'Gangolihat','PITHORAGARH','UTTARAKHAND'),(262540,'Pithoragarh','PITHORAGARH','UTTARAKHAND'),(262541,'Didihat','PITHORAGARH','UTTARAKHAND'),(262542,'Didihat','PITHORAGARH','UTTARAKHAND'),(262543,'Didihat','PITHORAGARH','UTTARAKHAND'),(262544,'Didihat','PITHORAGARH','UTTARAKHAND'),(262545,'Dharchula','PITHORAGARH','UTTARAKHAND'),(262546,'Dharchula','PITHORAGARH','UTTARAKHAND'),(262547,'Dharchula','PITHORAGARH','UTTARAKHAND'),(262550,'Didihat','PITHORAGARH','UTTARAKHAND'),(262551,'Didihat','PITHORAGARH','UTTARAKHAND'),(262552,'Didihat','PITHORAGARH','UTTARAKHAND'),(262553,'Munsiari','PITHORAGARH','UTTARAKHAND'),(262554,'Munsiari','PITHORAGARH','UTTARAKHAND'),(262555,'Munsiari','PITHORAGARH','UTTARAKHAND'),(262561,'Champawat','CHAMPAWAT','UTTARAKHAND'),(262572,'Didihat','PITHORAGARH','UTTARAKHAND'),(262576,'Dharchula','PITHORAGARH','UTTARAKHAND'),(262580,'Champawat','CHAMPAWAT','UTTARAKHAND'),(262701,'Lakhimpur','KHERI','UTTAR PRADESH'),(262702,'Lakhimpur','KHERI','UTTAR PRADESH'),(262721,'Lakhimpur','KHERI','UTTAR PRADESH'),(262722,'Dhaurahara','KHERI','UTTAR PRADESH'),(262723,'Dhaurahara','KHERI','UTTAR PRADESH'),(262724,'Dhaurahara','KHERI','UTTAR PRADESH'),(262725,'Lakhimpur','KHERI','UTTAR PRADESH'),(262726,'Lakhimpur','KHERI','UTTAR PRADESH'),(262727,'Mohammdi','KHERI','UTTAR PRADESH'),(262728,'Lakhimpur','KHERI','UTTAR PRADESH'),(262801,'Gola Gokaran Nath','KHERI','UTTAR PRADESH'),(262802,'Gola Gokaran Nath','KHERI','UTTAR PRADESH'),(262803,'Gola Gokaran Nath','KHERI','UTTAR PRADESH'),(262804,'Mohammdi','KHERI','UTTAR PRADESH'),(262805,'Gola Gokaran Nath','KHERI','UTTAR PRADESH'),(262901,'Gola Gokaran Nath','KHERI','UTTAR PRADESH'),(262902,'Nighasan','KHERI','UTTAR PRADESH'),(262903,'Nighasan','KHERI','UTTAR PRADESH'),(262904,'Nighasan','KHERI','UTTAR PRADESH'),(262905,'Nighasan','KHERI','UTTAR PRADESH'),(262906,'Nighasan','KHERI','UTTAR PRADESH'),(262907,'Nighasan','KHERI','UTTAR PRADESH'),(262908,'Nighasan','KHERI','UTTAR PRADESH'),(263001,'Nainital','NAINITAL','UTTARAKHAND'),(263126,'Dhari','NAINITAL','UTTARAKHAND'),(263127,'Nainital','NAINITAL','UTTARAKHAND'),(263128,'Nainital','NAINITAL','UTTARAKHAND'),(263132,'Nainital','NAINITAL','UTTARAKHAND'),(263134,'Kosya Kutauli','NAINITAL','UTTARAKHAND'),(263135,'Kosya Kutauli','NAINITAL','UTTARAKHAND'),(263136,'Nainital','NAINITAL','UTTARAKHAND'),(263137,'Nainital','NAINITAL','UTTARAKHAND'),(263138,'Nainital','NAINITAL','UTTARAKHAND'),(263139,'Haldwani','NAINITAL','UTTARAKHAND'),(263140,'Haldwani','NAINITAL','UTTARAKHAND'),(263145,'Kichha','UDHAM SINGH NAGAR','UTTARAKHAND'),(263148,'Kichha','UDHAM SINGH NAGAR','UTTARAKHAND'),(263149,'Kichha','UDHAM SINGH NAGAR','UTTARAKHAND'),(263150,'Kashipur','UDHAM SINGH NAGAR','UTTARAKHAND'),(263151,'Sitarganj','UDHAM SINGH NAGAR','UTTARAKHAND'),(263152,'Kichha','UDHAM SINGH NAGAR','UTTARAKHAND'),(263153,'Kichha','UDHAM SINGH NAGAR','UTTARAKHAND'),(263156,'Nainital','NAINITAL','UTTARAKHAND'),(263157,'Dhari','NAINITAL','UTTARAKHAND'),(263158,'Nainital','NAINITAL','UTTARAKHAND'),(263159,'Nainital','NAINITAL','UTTARAKHAND'),(263160,'Kichha','UDHAM SINGH NAGAR','UTTARAKHAND'),(263601,'Almora','ALMORA','UTTARAKHAND'),(263619,'Bageshwar','BAGESHWAR','UTTARAKHAND'),(263620,'Bageshwar','BAGESHWAR','UTTARAKHAND'),(263621,'Ranikhet','ALMORA','UTTARAKHAND'),(263622,'Almora','ALMORA','UTTARAKHAND'),(263623,'Almora','ALMORA','UTTARAKHAND'),(263624,'Almora','ALMORA','UTTARAKHAND'),(263625,'Almora','ALMORA','UTTARAKHAND'),(263626,'Almora','ALMORA','UTTARAKHAND'),(263628,'Bageshwar','BAGESHWAR','UTTARAKHAND'),(263629,'Almora','ALMORA','UTTARAKHAND'),(263630,'Bageshwar','BAGESHWAR','UTTARAKHAND'),(263631,'Bageshwar','BAGESHWAR','UTTARAKHAND'),(263632,'Kapkot **','BAGESHWAR','UTTARAKHAND'),(263633,'Kapkot **','BAGESHWAR','UTTARAKHAND'),(263634,'Bageshwar','BAGESHWAR','UTTARAKHAND'),(263635,'Bageshwar','BAGESHWAR','UTTARAKHAND'),(263636,'Almora','ALMORA','UTTARAKHAND'),(263637,'Almora','ALMORA','UTTARAKHAND'),(263638,'Almora','ALMORA','UTTARAKHAND'),(263639,'Bageshwar','BAGESHWAR','UTTARAKHAND'),(263640,'Bageshwar','BAGESHWAR','UTTARAKHAND'),(263641,'Bageshwar','BAGESHWAR','UTTARAKHAND'),(263642,'Bageshwar','BAGESHWAR','UTTARAKHAND'),(263643,'Almora','ALMORA','UTTARAKHAND'),(263645,'Ranikhet','ALMORA','UTTARAKHAND'),(263646,'Bhikia Sain','ALMORA','UTTARAKHAND'),(263651,'Ranikhet','ALMORA','UTTARAKHAND'),(263652,'Ranikhet','ALMORA','UTTARAKHAND'),(263653,'Ranikhet','ALMORA','UTTARAKHAND'),(263655,'Almora','ALMORA','UTTARAKHAND'),(263656,'Ranikhet','ALMORA','UTTARAKHAND'),(263658,'Bhikia Sain','ALMORA','UTTARAKHAND'),(263659,'Bhikia Sain','ALMORA','UTTARAKHAND'),(263660,'Ranikhet','ALMORA','UTTARAKHAND'),(263661,'Bhikia Sain','ALMORA','UTTARAKHAND'),(263663,'Ranikhet','ALMORA','UTTARAKHAND'),(263664,'Ranikhet','ALMORA','UTTARAKHAND'),(263665,'Ranikhet','ALMORA','UTTARAKHAND'),(263667,'Bhikia Sain','ALMORA','UTTARAKHAND'),(263676,'Bhikia Sain','ALMORA','UTTARAKHAND'),(263678,'Almora','ALMORA','UTTARAKHAND'),(263679,'Kapkot **','BAGESHWAR','UTTARAKHAND'),(263680,'Bhikia Sain','ALMORA','UTTARAKHAND'),(271001,'Gonda','GONDA','UTTAR PRADESH'),(271002,'Gonda','GONDA','UTTAR PRADESH'),(271003,'Colonelganj','GONDA','UTTAR PRADESH'),(271122,'Colonelganj','GONDA','UTTAR PRADESH'),(271123,'Tarabganj','GONDA','UTTAR PRADESH'),(271124,'Tarabganj','GONDA','UTTAR PRADESH'),(271125,'Colonelganj','GONDA','UTTAR PRADESH'),(271126,'Colonelganj','GONDA','UTTAR PRADESH'),(271129,'Tarabganj','GONDA','UTTAR PRADESH'),(271201,'Balrampur','BALRAMPUR','UTTAR PRADESH'),(271202,'Gonda','GONDA','UTTAR PRADESH'),(271203,'Tulsipur','BALRAMPUR','UTTAR PRADESH'),(271204,'Gonda','GONDA','UTTAR PRADESH'),(271205,'Tulsipur','BALRAMPUR','UTTAR PRADESH'),(271206,'Tulsipur','BALRAMPUR','UTTAR PRADESH'),(271207,'Balrampur','BALRAMPUR','UTTAR PRADESH'),(271208,'Tulsipur','BALRAMPUR','UTTAR PRADESH'),(271209,'Gonda','GONDA','UTTAR PRADESH'),(271210,'Tulsipur','BALRAMPUR','UTTAR PRADESH'),(271215,'Tulsipur','BALRAMPUR','UTTAR PRADESH'),(271301,'Gonda','GONDA','UTTAR PRADESH'),(271302,'Mankapur','GONDA','UTTAR PRADESH'),(271303,'Colonelganj','GONDA','UTTAR PRADESH'),(271304,'Tarabganj','GONDA','UTTAR PRADESH'),(271305,'Mankapur','GONDA','UTTAR PRADESH'),(271306,'Utraula','BALRAMPUR','UTTAR PRADESH'),(271307,'Mankapur','GONDA','UTTAR PRADESH'),(271308,'Mankapur','GONDA','UTTAR PRADESH'),(271309,'Tarabganj','GONDA','UTTAR PRADESH'),(271310,'Gonda','GONDA','UTTAR PRADESH'),(271311,'Colonelganj','GONDA','UTTAR PRADESH'),(271312,'Mankapur','GONDA','UTTAR PRADESH'),(271313,'Mankapur','GONDA','UTTAR PRADESH'),(271319,'Tarabganj','GONDA','UTTAR PRADESH'),(271401,'Colonelganj','GONDA','UTTAR PRADESH'),(271402,'Tarabganj','GONDA','UTTAR PRADESH'),(271403,'Tarabganj','GONDA','UTTAR PRADESH'),(271502,'Colonelganj','GONDA','UTTAR PRADESH'),(271503,'Colonelganj','GONDA','UTTAR PRADESH'),(271504,'Colonelganj','GONDA','UTTAR PRADESH'),(271601,'Gonda','GONDA','UTTAR PRADESH'),(271602,'Gonda','GONDA','UTTAR PRADESH'),(271603,'Gonda','GONDA','UTTAR PRADESH'),(271604,'Utraula','BALRAMPUR','UTTAR PRADESH'),(271607,'Utraula','BALRAMPUR','UTTAR PRADESH'),(271609,'Utraula','BALRAMPUR','UTTAR PRADESH'),(271801,'Bahraich','BAHRAICH','UTTAR PRADESH'),(271802,'Bahraich','BAHRAICH','UTTAR PRADESH'),(271803,'Bhinga','SHRAWASTI','UTTAR PRADESH'),(271804,'Ikauna **','SHRAWASTI','UTTAR PRADESH'),(271805,'Ikauna **','SHRAWASTI','UTTAR PRADESH'),(271806,'Payagpur **','SHRAWASTI','UTTAR PRADESH'),(271821,'Bahraich','BAHRAICH','UTTAR PRADESH'),(271824,'Mahasi **','BAHRAICH','UTTAR PRADESH'),(271825,'Mahasi **','BAHRAICH','UTTAR PRADESH'),(271830,'Nanpara','BAHRAICH','UTTAR PRADESH'),(271831,'Bhinga','SHRAWASTI','UTTAR PRADESH'),(271835,'Ikauna **','SHRAWASTI','UTTAR PRADESH'),(271840,'Bhinga','SHRAWASTI','UTTAR PRADESH'),(271841,'Nanpara','BAHRAICH','UTTAR PRADESH'),(271845,'Ikauna **','SHRAWASTI','UTTAR PRADESH'),(271851,'Mahasi **','BAHRAICH','UTTAR PRADESH'),(271855,'Nanpara','BAHRAICH','UTTAR PRADESH'),(271861,'Balrampur','BALRAMPUR','UTTAR PRADESH'),(271865,'Nanpara','BAHRAICH','UTTAR PRADESH'),(271870,'Kaiserganj','BAHRAICH','UTTAR PRADESH'),(271871,'Bahraich','BAHRAICH','UTTAR PRADESH'),(271872,'Kaiserganj','BAHRAICH','UTTAR PRADESH'),(271875,'Nanpara','BAHRAICH','UTTAR PRADESH'),(271881,'Nanpara','BAHRAICH','UTTAR PRADESH'),(271882,'Nanpara','BAHRAICH','UTTAR PRADESH'),(271901,'Kaiserganj','BAHRAICH','UTTAR PRADESH'),(271902,'Kaiserganj','BAHRAICH','UTTAR PRADESH'),(271903,'Kaiserganj','BAHRAICH','UTTAR PRADESH'),(271904,'Kaiserganj','BAHRAICH','UTTAR PRADESH'),(272001,'Basti','BASTI','UTTAR PRADESH'),(272002,'Basti','BASTI','UTTAR PRADESH'),(272123,'Basti','BASTI','UTTAR PRADESH'),(272124,'Basti','BASTI','UTTAR PRADESH'),(272125,'Khalilabad','SANT KABIR NAGAR','UTTAR PRADESH'),(272126,'Khalilabad','SANT KABIR NAGAR','UTTAR PRADESH'),(272127,'Harraiya','BASTI','UTTAR PRADESH'),(272128,'Harraiya','BASTI','UTTAR PRADESH'),(272129,'Harraiya','BASTI','UTTAR PRADESH'),(272130,'Harraiya','BASTI','UTTAR PRADESH'),(272131,'Harraiya','BASTI','UTTAR PRADESH'),(272148,'Basti','BASTI','UTTAR PRADESH'),(272150,'Bhanpur','BASTI','UTTAR PRADESH'),(272151,'Bansi','SIDDHARTHNAGAR','UTTAR PRADESH'),(272152,'Bansi','SIDDHARTHNAGAR','UTTAR PRADESH'),(272153,'Bansi','SIDDHARTHNAGAR','UTTAR PRADESH'),(272154,'Bansi','SIDDHARTHNAGAR','UTTAR PRADESH'),(272155,'Harraiya','BASTI','UTTAR PRADESH'),(272161,'Harraiya','BASTI','UTTAR PRADESH'),(272162,'Ghanghata **','SANT KABIR NAGAR','UTTAR PRADESH'),(272163,'Bhanpur','BASTI','UTTAR PRADESH'),(272164,'Basti','BASTI','UTTAR PRADESH'),(272165,'Ghanghata **','SANT KABIR NAGAR','UTTAR PRADESH'),(272171,'Basti','BASTI','UTTAR PRADESH'),(272172,'Ghanghata **','SANT KABIR NAGAR','UTTAR PRADESH'),(272173,'Khalilabad','SANT KABIR NAGAR','UTTAR PRADESH'),(272175,'Basti','BASTI','UTTAR PRADESH'),(272176,'Ghanghata **','SANT KABIR NAGAR','UTTAR PRADESH'),(272177,'Basti','BASTI','UTTAR PRADESH'),(272178,'Basti','BASTI','UTTAR PRADESH'),(272181,'Basti','BASTI','UTTAR PRADESH'),(272182,'Bhanpur','BASTI','UTTAR PRADESH'),(272189,'Domariyaganj','SIDDHARTHNAGAR','UTTAR PRADESH'),(272190,'Bhanpur','BASTI','UTTAR PRADESH'),(272191,'Domariyaganj','SIDDHARTHNAGAR','UTTAR PRADESH'),(272192,'Itwa','SIDDHARTHNAGAR','UTTAR PRADESH'),(272193,'Itwa','SIDDHARTHNAGAR','UTTAR PRADESH'),(272194,'Basti','BASTI','UTTAR PRADESH'),(272195,'Domariyaganj','SIDDHARTHNAGAR','UTTAR PRADESH'),(272199,'Khalilabad','SANT KABIR NAGAR','UTTAR PRADESH'),(272201,'Shohratgarh **','SIDDHARTHNAGAR','UTTAR PRADESH'),(272202,'Shohratgarh **','SIDDHARTHNAGAR','UTTAR PRADESH'),(272203,'Naugarh','SIDDHARTHNAGAR','UTTAR PRADESH'),(272204,'Naugarh','SIDDHARTHNAGAR','UTTAR PRADESH'),(272205,'Shohratgarh **','SIDDHARTHNAGAR','UTTAR PRADESH'),(272206,'Naugarh','SIDDHARTHNAGAR','UTTAR PRADESH'),(272207,'Naugarh','SIDDHARTHNAGAR','UTTAR PRADESH'),(272208,'Naugarh','SIDDHARTHNAGAR','UTTAR PRADESH'),(272270,'Mehdawal **','SANT KABIR NAGAR','UTTAR PRADESH'),(272271,'Mehdawal **','SANT KABIR NAGAR','UTTAR PRADESH'),(272301,'Basti','BASTI','UTTAR PRADESH'),(272302,'Basti','BASTI','UTTAR PRADESH'),(273001,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273002,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273003,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273004,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273005,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273006,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273007,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273008,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273009,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273010,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273012,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273013,'Chauri Chaura','GORAKHPUR','UTTAR PRADESH'),(273014,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273015,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273016,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273017,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273151,'Maharajganj','MAHARAJGANJ','UTTAR PRADESH'),(273152,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273155,'Pharenda','MAHARAJGANJ','UTTAR PRADESH'),(273157,'Pharenda','MAHARAJGANJ','UTTAR PRADESH'),(273158,'Campierganj **','GORAKHPUR','UTTAR PRADESH'),(273161,'Pharenda','MAHARAJGANJ','UTTAR PRADESH'),(273162,'Nautanwa','MAHARAJGANJ','UTTAR PRADESH'),(273163,'Nichlaul','MAHARAJGANJ','UTTAR PRADESH'),(273164,'Khajni','GORAKHPUR','UTTAR PRADESH'),(273165,'Campierganj **','GORAKHPUR','UTTAR PRADESH'),(273201,'Chauri Chaura','GORAKHPUR','UTTAR PRADESH'),(273202,'Bansgaon','GORAKHPUR','UTTAR PRADESH'),(273203,'Chauri Chaura','GORAKHPUR','UTTAR PRADESH'),(273207,'Nichlaul','MAHARAJGANJ','UTTAR PRADESH'),(273209,'Sahjanwa','GORAKHPUR','UTTAR PRADESH'),(273211,'Khajni','GORAKHPUR','UTTAR PRADESH'),(273212,'Khajni','GORAKHPUR','UTTAR PRADESH'),(273213,'Khajni','GORAKHPUR','UTTAR PRADESH'),(273301,'Maharajganj','MAHARAJGANJ','UTTAR PRADESH'),(273302,'Maharajganj','MAHARAJGANJ','UTTAR PRADESH'),(273303,'Maharajganj','MAHARAJGANJ','UTTAR PRADESH'),(273304,'Nichlaul','MAHARAJGANJ','UTTAR PRADESH'),(273305,'Nautanwa','MAHARAJGANJ','UTTAR PRADESH'),(273306,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273308,'Nautanwa','MAHARAJGANJ','UTTAR PRADESH'),(273309,'Pharenda','MAHARAJGANJ','UTTAR PRADESH'),(273310,'Maharajganj','MAHARAJGANJ','UTTAR PRADESH'),(273311,'Maharajganj','MAHARAJGANJ','UTTAR PRADESH'),(273401,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273402,'Gola','GORAKHPUR','UTTAR PRADESH'),(273403,'Bansgaon','GORAKHPUR','UTTAR PRADESH'),(273404,'Khajni','GORAKHPUR','UTTAR PRADESH'),(273405,'Khajni','GORAKHPUR','UTTAR PRADESH'),(273406,'Bansgaon','GORAKHPUR','UTTAR PRADESH'),(273407,'Gola','GORAKHPUR','UTTAR PRADESH'),(273408,'Gola','GORAKHPUR','UTTAR PRADESH'),(273409,'Gola','GORAKHPUR','UTTAR PRADESH'),(273411,'Bansgaon','GORAKHPUR','UTTAR PRADESH'),(273412,'Gorakhpur','GORAKHPUR','UTTAR PRADESH'),(273413,'Bansgaon','GORAKHPUR','UTTAR PRADESH'),(274001,'Deoria','DEORIA','UTTAR PRADESH'),(274149,'Hata','KUSHINAGAR','UTTAR PRADESH'),(274182,'Barhaj **','DEORIA','UTTAR PRADESH'),(274201,'Deoria','DEORIA','UTTAR PRADESH'),(274202,'Rudrapur','DEORIA','UTTAR PRADESH'),(274203,'Hata','KUSHINAGAR','UTTAR PRADESH'),(274204,'Rudrapur','DEORIA','UTTAR PRADESH'),(274205,'Barhaj **','DEORIA','UTTAR PRADESH'),(274206,'Deoria','DEORIA','UTTAR PRADESH'),(274207,'Hata','KUSHINAGAR','UTTAR PRADESH'),(274208,'Rudrapur','DEORIA','UTTAR PRADESH'),(274301,'Hata','KUSHINAGAR','UTTAR PRADESH'),(274302,'Tamkuhi Raj','KUSHINAGAR','UTTAR PRADESH'),(274303,'Padrauna','KUSHINAGAR','UTTAR PRADESH'),(274304,'Padrauna','KUSHINAGAR','UTTAR PRADESH'),(274305,'Padrauna','KUSHINAGAR','UTTAR PRADESH'),(274306,'Hata','KUSHINAGAR','UTTAR PRADESH'),(274401,'Kasya **','KUSHINAGAR','UTTAR PRADESH'),(274402,'Kasya **','KUSHINAGAR','UTTAR PRADESH'),(274403,'Kasya **','KUSHINAGAR','UTTAR PRADESH'),(274404,'Deoria','DEORIA','UTTAR PRADESH'),(274405,'Deoria','DEORIA','UTTAR PRADESH'),(274406,'Tamkuhi Raj','KUSHINAGAR','UTTAR PRADESH'),(274407,'Tamkuhi Raj','KUSHINAGAR','UTTAR PRADESH'),(274408,'Kasya **','KUSHINAGAR','UTTAR PRADESH'),(274409,'Tamkuhi Raj','KUSHINAGAR','UTTAR PRADESH'),(274501,'Salempur','DEORIA','UTTAR PRADESH'),(274502,'Salempur','DEORIA','UTTAR PRADESH'),(274505,'Salempur','DEORIA','UTTAR PRADESH'),(274506,'Salempur','DEORIA','UTTAR PRADESH'),(274508,'Salempur','DEORIA','UTTAR PRADESH'),(274509,'Salempur','DEORIA','UTTAR PRADESH'),(274601,'Barhaj **','DEORIA','UTTAR PRADESH'),(274602,'Salempur','DEORIA','UTTAR PRADESH'),(274603,'Barhaj **','DEORIA','UTTAR PRADESH'),(274604,'Barhaj **','DEORIA','UTTAR PRADESH'),(274701,'Deoria','DEORIA','UTTAR PRADESH'),(274702,'Bhatpar Rani **','DEORIA','UTTAR PRADESH'),(274703,'Bhatpar Rani **','DEORIA','UTTAR PRADESH'),(274704,'Deoria','DEORIA','UTTAR PRADESH'),(274705,'Bhatpar Rani **','DEORIA','UTTAR PRADESH'),(274801,'Padrauna','KUSHINAGAR','UTTAR PRADESH'),(274802,'Padrauna','KUSHINAGAR','UTTAR PRADESH'),(274806,'Deoria','DEORIA','UTTAR PRADESH'),(274807,'Deoria','DEORIA','UTTAR PRADESH'),(274808,'Salempur','DEORIA','UTTAR PRADESH'),(275101,'Maunath Bhanjan','MAU','UTTAR PRADESH'),(275102,'Maunath Bhanjan','MAU','UTTAR PRADESH'),(275103,'Maunath Bhanjan','MAU','UTTAR PRADESH'),(275105,'Ghosi','MAU','UTTAR PRADESH'),(275201,'Mohammadabad','GHAZIPUR','UTTAR PRADESH'),(275202,'Jakhanian **','GHAZIPUR','UTTAR PRADESH'),(275203,'Jakhanian **','GHAZIPUR','UTTAR PRADESH'),(275204,'Zamania','GHAZIPUR','UTTAR PRADESH'),(275205,'Jakhanian **','GHAZIPUR','UTTAR PRADESH'),(275301,'Ghosi','MAU','UTTAR PRADESH'),(275302,'Muhammadabad Gohna','MAU','UTTAR PRADESH'),(275303,'Ghosi','MAU','UTTAR PRADESH'),(275304,'Ghosi','MAU','UTTAR PRADESH'),(275305,'Maunath Bhanjan','MAU','UTTAR PRADESH'),(275306,'Maunath Bhanjan','MAU','UTTAR PRADESH'),(275307,'Madhuban **','MAU','UTTAR PRADESH'),(276001,'Azamgarh','AZAMGARH','UTTAR PRADESH'),(276121,'Sagri','AZAMGARH','UTTAR PRADESH'),(276122,'Sagri','AZAMGARH','UTTAR PRADESH'),(276123,'Mehnagar **','AZAMGARH','UTTAR PRADESH'),(276124,'Azamgarh','AZAMGARH','UTTAR PRADESH'),(276125,'Sagri','AZAMGARH','UTTAR PRADESH'),(276126,'Mehnagar **','AZAMGARH','UTTAR PRADESH'),(276127,'Sagri','AZAMGARH','UTTAR PRADESH'),(276128,'Azamgarh','AZAMGARH','UTTAR PRADESH'),(276129,'Muhammadabad Gohna','MAU','UTTAR PRADESH'),(276131,'Azamgarh','AZAMGARH','UTTAR PRADESH'),(276135,'Sagri','AZAMGARH','UTTAR PRADESH'),(276136,'Sagri','AZAMGARH','UTTAR PRADESH'),(276137,'Sagri','AZAMGARH','UTTAR PRADESH'),(276138,'Sagri','AZAMGARH','UTTAR PRADESH'),(276139,'Sagri','AZAMGARH','UTTAR PRADESH'),(276140,'Sagri','AZAMGARH','UTTAR PRADESH'),(276141,'Nizamabad **','AZAMGARH','UTTAR PRADESH'),(276142,'Azamgarh','AZAMGARH','UTTAR PRADESH'),(276143,'Phulpur','AZAMGARH','UTTAR PRADESH'),(276201,'Lalganj','AZAMGARH','UTTAR PRADESH'),(276202,'Lalganj','AZAMGARH','UTTAR PRADESH'),(276203,'Lalganj','AZAMGARH','UTTAR PRADESH'),(276204,'Mehnagar **','AZAMGARH','UTTAR PRADESH'),(276205,'Nizamabad **','AZAMGARH','UTTAR PRADESH'),(276206,'Nizamabad **','AZAMGARH','UTTAR PRADESH'),(276207,'Nizamabad **','AZAMGARH','UTTAR PRADESH'),(276208,'Nizamabad **','AZAMGARH','UTTAR PRADESH'),(276288,'Phulpur','AZAMGARH','UTTAR PRADESH'),(276301,'Lalganj','AZAMGARH','UTTAR PRADESH'),(276302,'Lalganj','AZAMGARH','UTTAR PRADESH'),(276303,'Lalganj','AZAMGARH','UTTAR PRADESH'),(276304,'Phulpur','AZAMGARH','UTTAR PRADESH'),(276305,'Nizamabad **','AZAMGARH','UTTAR PRADESH'),(276306,'Ghosi','MAU','UTTAR PRADESH'),(276402,'Muhammadabad Gohna','MAU','UTTAR PRADESH'),(276403,'Muhammadabad Gohna','MAU','UTTAR PRADESH'),(276404,'Azamgarh','AZAMGARH','UTTAR PRADESH'),(276405,'Sagri','AZAMGARH','UTTAR PRADESH'),(276406,'Azamgarh','AZAMGARH','UTTAR PRADESH'),(277001,'Ballia','BALLIA','UTTAR PRADESH'),(277121,'Rasra','BALLIA','UTTAR PRADESH'),(277123,'Ballia','BALLIA','UTTAR PRADESH'),(277124,'Sikanderpur **','BALLIA','UTTAR PRADESH'),(277201,'Bairia','BALLIA','UTTAR PRADESH'),(277202,'Bansdih','BALLIA','UTTAR PRADESH'),(277203,'Ballia','BALLIA','UTTAR PRADESH'),(277204,'Bairia','BALLIA','UTTAR PRADESH'),(277205,'Ballia','BALLIA','UTTAR PRADESH'),(277207,'Sikanderpur **','BALLIA','UTTAR PRADESH'),(277208,'Bairia','BALLIA','UTTAR PRADESH'),(277209,'Bairia','BALLIA','UTTAR PRADESH'),(277210,'Bansdih','BALLIA','UTTAR PRADESH'),(277211,'Bansdih','BALLIA','UTTAR PRADESH'),(277213,'Bansdih','BALLIA','UTTAR PRADESH'),(277214,'Bairia','BALLIA','UTTAR PRADESH'),(277216,'Bairia','BALLIA','UTTAR PRADESH'),(277219,'Bansdih','BALLIA','UTTAR PRADESH'),(277301,'Ballia','BALLIA','UTTAR PRADESH'),(277302,'Sikanderpur **','BALLIA','UTTAR PRADESH'),(277303,'Sikanderpur **','BALLIA','UTTAR PRADESH'),(277304,'Ballia','BALLIA','UTTAR PRADESH'),(277401,'Ballia','BALLIA','UTTAR PRADESH'),(277402,'Ballia','BALLIA','UTTAR PRADESH'),(277403,'Ballia','BALLIA','UTTAR PRADESH'),(277501,'Ballia','BALLIA','UTTAR PRADESH'),(277502,'Ballia','BALLIA','UTTAR PRADESH'),(277503,'Ballia','BALLIA','UTTAR PRADESH'),(277504,'Ballia','BALLIA','UTTAR PRADESH'),(277506,'Ballia','BALLIA','UTTAR PRADESH'),(281001,'Mathura','MATHURA','UTTAR PRADESH'),(281003,'Mathura','MATHURA','UTTAR PRADESH'),(281004,'Mathura','MATHURA','UTTAR PRADESH'),(281005,'Mathura','MATHURA','UTTAR PRADESH'),(281006,'Mathura','MATHURA','UTTAR PRADESH'),(281104,'Sadabad','HATHRAS','UTTAR PRADESH'),(281121,'Mathura','MATHURA','UTTAR PRADESH'),(281122,'Mathura','MATHURA','UTTAR PRADESH'),(281123,'Mathura','MATHURA','UTTAR PRADESH'),(281201,'Sadabad','HATHRAS','UTTAR PRADESH'),(281202,'Mat','MATHURA','UTTAR PRADESH'),(281203,'Mat','MATHURA','UTTAR PRADESH'),(281204,'Mat','MATHURA','UTTAR PRADESH'),(281205,'Mat','MATHURA','UTTAR PRADESH'),(281206,'Mat','MATHURA','UTTAR PRADESH'),(281301,'Mathura','MATHURA','UTTAR PRADESH'),(281302,'Sadabad','HATHRAS','UTTAR PRADESH'),(281303,'Mathura','MATHURA','UTTAR PRADESH'),(281305,'Mathura','MATHURA','UTTAR PRADESH'),(281306,'Chhata','MATHURA','UTTAR PRADESH'),(281307,'Sadabad','HATHRAS','UTTAR PRADESH'),(281308,'Mat','MATHURA','UTTAR PRADESH'),(281401,'Chhata','MATHURA','UTTAR PRADESH'),(281403,'Chhata','MATHURA','UTTAR PRADESH'),(281404,'Chhata','MATHURA','UTTAR PRADESH'),(281405,'Chhata','MATHURA','UTTAR PRADESH'),(281406,'Chhata','MATHURA','UTTAR PRADESH'),(281501,'Mathura','MATHURA','UTTAR PRADESH'),(281502,'Mathura','MATHURA','UTTAR PRADESH'),(281504,'Mat','MATHURA','UTTAR PRADESH'),(282001,'Agra','AGRA','UTTAR PRADESH'),(282002,'Agra','AGRA','UTTAR PRADESH'),(282003,'Agra','AGRA','UTTAR PRADESH'),(282004,'Agra','AGRA','UTTAR PRADESH'),(282005,'Agra','AGRA','UTTAR PRADESH'),(282006,'Agra','AGRA','UTTAR PRADESH'),(282007,'Kiraoli','AGRA','UTTAR PRADESH'),(282008,'Agra','AGRA','UTTAR PRADESH'),(282009,'Agra','AGRA','UTTAR PRADESH'),(282010,'Agra','AGRA','UTTAR PRADESH'),(283101,'Kiraoli','AGRA','UTTAR PRADESH'),(283102,'Agra','AGRA','UTTAR PRADESH'),(283103,'Tundla **','FIROZABAD','UTTAR PRADESH'),(283104,'Bah','AGRA','UTTAR PRADESH'),(283105,'Kiraoli','AGRA','UTTAR PRADESH'),(283110,'Kiraoli','AGRA','UTTAR PRADESH'),(283111,'Agra','AGRA','UTTAR PRADESH'),(283112,'Kheragarh','AGRA','UTTAR PRADESH'),(283113,'Bah','AGRA','UTTAR PRADESH'),(283114,'Etmadpur','AGRA','UTTAR PRADESH'),(283115,'Kheragarh','AGRA','UTTAR PRADESH'),(283119,'Kiraoli','AGRA','UTTAR PRADESH'),(283121,'Kheragarh','AGRA','UTTAR PRADESH'),(283122,'Etmadpur','AGRA','UTTAR PRADESH'),(283123,'Bah','AGRA','UTTAR PRADESH'),(283124,'Kheragarh','AGRA','UTTAR PRADESH'),(283125,'Fatehabad','AGRA','UTTAR PRADESH'),(283126,'Etmadpur','AGRA','UTTAR PRADESH'),(283130,'Shikohabad','FIROZABAD','UTTAR PRADESH'),(283135,'Shikohabad','FIROZABAD','UTTAR PRADESH'),(283136,'Jasrana','FIROZABAD','UTTAR PRADESH'),(283141,'Shikohabad','FIROZABAD','UTTAR PRADESH'),(283142,'Jasrana','FIROZABAD','UTTAR PRADESH'),(283145,'Shikohabad','FIROZABAD','UTTAR PRADESH'),(283151,'Shikohabad','FIROZABAD','UTTAR PRADESH'),(283152,'Jasrana','FIROZABAD','UTTAR PRADESH'),(283201,'Etmadpur','AGRA','UTTAR PRADESH'),(283202,'Etmadpur','AGRA','UTTAR PRADESH'),(283203,'Firozabad','FIROZABAD','UTTAR PRADESH'),(283204,'Tundla **','FIROZABAD','UTTAR PRADESH'),(283205,'Firozabad','FIROZABAD','UTTAR PRADESH'),(283206,'Firozabad','FIROZABAD','UTTAR PRADESH'),(283207,'Jasrana','FIROZABAD','UTTAR PRADESH'),(284001,'Jhansi','JHANSI','UTTAR PRADESH'),(284002,'Jhansi','JHANSI','UTTAR PRADESH'),(284003,'Jhansi','JHANSI','UTTAR PRADESH'),(284120,'Jhansi','JHANSI','UTTAR PRADESH'),(284121,'Jhansi','JHANSI','UTTAR PRADESH'),(284122,'Talbehat','LALITPUR','UTTAR PRADESH'),(284123,'Talbehat','LALITPUR','UTTAR PRADESH'),(284124,'Talbehat','LALITPUR','UTTAR PRADESH'),(284125,'Talbehat','LALITPUR','UTTAR PRADESH'),(284126,'Talbehat','LALITPUR','UTTAR PRADESH'),(284127,'Jhansi','JHANSI','UTTAR PRADESH'),(284128,'Jhansi','JHANSI','UTTAR PRADESH'),(284135,'Jhansi','JHANSI','UTTAR PRADESH'),(284136,'Talbehat','LALITPUR','UTTAR PRADESH'),(284201,'Jhansi','JHANSI','UTTAR PRADESH'),(284202,'Tahrauli **','JHANSI','UTTAR PRADESH'),(284203,'Garautha','JHANSI','UTTAR PRADESH'),(284204,'Mauranipur','JHANSI','UTTAR PRADESH'),(284205,'Mauranipur','JHANSI','UTTAR PRADESH'),(284206,'Tahrauli **','JHANSI','UTTAR PRADESH'),(284301,'Moth','JHANSI','UTTAR PRADESH'),(284302,'Garautha','JHANSI','UTTAR PRADESH'),(284303,'Moth','JHANSI','UTTAR PRADESH'),(284304,'Moth','JHANSI','UTTAR PRADESH'),(284305,'Jhansi','JHANSI','UTTAR PRADESH'),(284306,'Moth','JHANSI','UTTAR PRADESH'),(284401,'Jhansi','JHANSI','UTTAR PRADESH'),(284402,'Mahroni','LALITPUR','UTTAR PRADESH'),(284403,'Mahroni','LALITPUR','UTTAR PRADESH'),(284404,'Mahroni','LALITPUR','UTTAR PRADESH'),(284405,'Mahroni','LALITPUR','UTTAR PRADESH'),(284406,'Mahroni','LALITPUR','UTTAR PRADESH'),(284419,'Jhansi','JHANSI','UTTAR PRADESH'),(284501,'Talbehat','LALITPUR','UTTAR PRADESH'),(285001,'Orai','JALAUN','UTTAR PRADESH'),(285121,'Madhogarh **','JALAUN','UTTAR PRADESH'),(285122,'Orai','JALAUN','UTTAR PRADESH'),(285123,'Kalpi','JALAUN','UTTAR PRADESH'),(285124,'Madhogarh **','JALAUN','UTTAR PRADESH'),(285125,'Jalaun','JALAUN','UTTAR PRADESH'),(285126,'Madhogarh **','JALAUN','UTTAR PRADESH'),(285127,'Madhogarh **','JALAUN','UTTAR PRADESH'),(285128,'Jalaun','JALAUN','UTTAR PRADESH'),(285129,'Madhogarh **','JALAUN','UTTAR PRADESH'),(285130,'Jalaun','JALAUN','UTTAR PRADESH'),(285201,'Orai','JALAUN','UTTAR PRADESH'),(285202,'Kalpi','JALAUN','UTTAR PRADESH'),(285203,'Kalpi','JALAUN','UTTAR PRADESH'),(285204,'Kalpi','JALAUN','UTTAR PRADESH'),(285205,'Konch','JALAUN','UTTAR PRADESH'),(285206,'Konch','JALAUN','UTTAR PRADESH'),(285223,'Orai','JALAUN','UTTAR PRADESH'),(301001,'Ramgarh','ALWAR','RAJASTHAN'),(301002,'Alwar','ALWAR','RAJASTHAN'),(301018,'Tijara','ALWAR','RAJASTHAN'),(301019,'Tijara','ALWAR','RAJASTHAN'),(301020,'Behror','ALWAR','RAJASTHAN'),(301021,'Lachhmangarh','ALWAR','RAJASTHAN'),(301022,'Thanagazi','ALWAR','RAJASTHAN'),(301023,'Alwar','ALWAR','RAJASTHAN'),(301024,'Thanagazi','ALWAR','RAJASTHAN'),(301025,'Ramgarh','ALWAR','RAJASTHAN'),(301026,'Ramgarh','ALWAR','RAJASTHAN'),(301027,'Thanagazi','ALWAR','RAJASTHAN'),(301028,'Alwar','ALWAR','RAJASTHAN'),(301030,'Alwar','ALWAR','RAJASTHAN'),(301035,'Kathumar','ALWAR','RAJASTHAN'),(301401,'Mandawar','ALWAR','RAJASTHAN'),(301402,'Bansur','ALWAR','RAJASTHAN'),(301403,'Kotkasim','ALWAR','RAJASTHAN'),(301404,'Mandawar','ALWAR','RAJASTHAN'),(301405,'Tijara','ALWAR','RAJASTHAN'),(301406,'Alwar','ALWAR','RAJASTHAN'),(301407,'Mandawar','ALWAR','RAJASTHAN'),(301408,'Rajgarh','ALWAR','RAJASTHAN'),(301409,'Rajgarh','ALWAR','RAJASTHAN'),(301410,'Rajgarh','ALWAR','RAJASTHAN'),(301411,'Tijara','ALWAR','RAJASTHAN'),(301412,'Bansur','ALWAR','RAJASTHAN'),(301413,'Rajgarh','ALWAR','RAJASTHAN'),(301414,'Rajgarh','ALWAR','RAJASTHAN'),(301415,'Rajgarh','ALWAR','RAJASTHAN'),(301416,'Bansur','ALWAR','RAJASTHAN'),(301427,'Mandawar','ALWAR','RAJASTHAN'),(301604,'Lachhmangarh','ALWAR','RAJASTHAN'),(301701,'Behror','ALWAR','RAJASTHAN'),(301702,'Kotkasim','ALWAR','RAJASTHAN'),(301703,'Behror','ALWAR','RAJASTHAN'),(301704,'Behror','ALWAR','RAJASTHAN'),(301705,'Behror','ALWAR','RAJASTHAN'),(301706,'Behror','ALWAR','RAJASTHAN'),(301707,'Tijara','ALWAR','RAJASTHAN'),(301708,'Behror','ALWAR','RAJASTHAN'),(301709,'Behror','ALWAR','RAJASTHAN'),(301713,'Behror','ALWAR','RAJASTHAN'),(301714,'Mandawar','ALWAR','RAJASTHAN'),(302001,'Jaipur','JAIPUR','RAJASTHAN'),(302002,'Jaipur','JAIPUR','RAJASTHAN'),(302003,'Jaipur','JAIPUR','RAJASTHAN'),(302004,'Jaipur','JAIPUR','RAJASTHAN'),(302005,'Jaipur','JAIPUR','RAJASTHAN'),(302006,'Jaipur','JAIPUR','RAJASTHAN'),(302012,'Jaipur','JAIPUR','RAJASTHAN'),(302013,'Jaipur','JAIPUR','RAJASTHAN'),(302015,'Jaipur','JAIPUR','RAJASTHAN'),(302016,'Jaipur','JAIPUR','RAJASTHAN'),(302017,'Jaipur','JAIPUR','RAJASTHAN'),(302018,'Jaipur','JAIPUR','RAJASTHAN'),(302019,'Jaipur','JAIPUR','RAJASTHAN'),(302020,'Jaipur','JAIPUR','RAJASTHAN'),(302021,'Jaipur','JAIPUR','RAJASTHAN'),(302022,'Jaipur','JAIPUR','RAJASTHAN'),(302026,'Jaipur','JAIPUR','RAJASTHAN'),(302027,'Jamwa Ramgarh','JAIPUR','RAJASTHAN'),(302028,'Amber','JAIPUR','RAJASTHAN'),(302029,'Sanganer','JAIPUR','RAJASTHAN'),(302031,'Jaipur','JAIPUR','RAJASTHAN'),(302033,'Jaipur','JAIPUR','RAJASTHAN'),(302034,'Jaipur','JAIPUR','RAJASTHAN'),(302036,'Jaipur','JAIPUR','RAJASTHAN'),(302037,'Sanganer','JAIPUR','RAJASTHAN'),(302039,'Jaipur','JAIPUR','RAJASTHAN'),(302041,'Jaipur','JAIPUR','RAJASTHAN'),(303001,'Jamwa Ramgarh','JAIPUR','RAJASTHAN'),(303002,'Amber','JAIPUR','RAJASTHAN'),(303003,'Viratnagar','JAIPUR','RAJASTHAN'),(303004,'Dausa','DAUSA','RAJASTHAN'),(303005,'Phagi','JAIPUR','RAJASTHAN'),(303006,'Phagi','JAIPUR','RAJASTHAN'),(303007,'Chaksu','JAIPUR','RAJASTHAN'),(303008,'Dudu (Hq. Mauzamabad)','JAIPUR','RAJASTHAN'),(303009,'Dudu (Hq. Mauzamabad)','JAIPUR','RAJASTHAN'),(303012,'Jaipur','JAIPUR','RAJASTHAN'),(303102,'Viratnagar','JAIPUR','RAJASTHAN'),(303103,'Shahpura','JAIPUR','RAJASTHAN'),(303104,'Amber','JAIPUR','RAJASTHAN'),(303105,'Kotputli','JAIPUR','RAJASTHAN'),(303106,'Baswa','DAUSA','RAJASTHAN'),(303107,'Kotputli','JAIPUR','RAJASTHAN'),(303108,'Kotputli','JAIPUR','RAJASTHAN'),(303109,'Jamwa Ramgarh','JAIPUR','RAJASTHAN'),(303110,'Kotputli','JAIPUR','RAJASTHAN'),(303119,'Viratnagar','JAIPUR','RAJASTHAN'),(303120,'Viratnagar','JAIPUR','RAJASTHAN'),(303121,'Amber','JAIPUR','RAJASTHAN'),(303301,'Bassi','JAIPUR','RAJASTHAN'),(303302,'Bassi','JAIPUR','RAJASTHAN'),(303303,'Dausa','DAUSA','RAJASTHAN'),(303304,'Sikrai','DAUSA','RAJASTHAN'),(303305,'Bassi','JAIPUR','RAJASTHAN'),(303313,'Baswa','DAUSA','RAJASTHAN'),(303315,'Baswa','DAUSA','RAJASTHAN'),(303323,'Baswa','DAUSA','RAJASTHAN'),(303325,'Baswa','DAUSA','RAJASTHAN'),(303326,'Baswa','DAUSA','RAJASTHAN'),(303327,'Baswa','DAUSA','RAJASTHAN'),(303328,'Phulera (Hq.Sambhar)','JAIPUR','RAJASTHAN'),(303338,'Phulera (Hq.Sambhar)','JAIPUR','RAJASTHAN'),(303348,'Dudu (Hq. Mauzamabad)','JAIPUR','RAJASTHAN'),(303501,'Sikrai','DAUSA','RAJASTHAN'),(303502,'Sikrai','DAUSA','RAJASTHAN'),(303503,'Lalsot','DAUSA','RAJASTHAN'),(303504,'Lalsot','DAUSA','RAJASTHAN'),(303505,'Dausa','DAUSA','RAJASTHAN'),(303506,'Dausa','DAUSA','RAJASTHAN'),(303507,'Jamwa Ramgarh','JAIPUR','RAJASTHAN'),(303508,'Sikrai','DAUSA','RAJASTHAN'),(303509,'Baswa','DAUSA','RAJASTHAN'),(303510,'Lalsot','DAUSA','RAJASTHAN'),(303511,'Lalsot','DAUSA','RAJASTHAN'),(303601,'Shahpura','JAIPUR','RAJASTHAN'),(303602,'Chomu','JAIPUR','RAJASTHAN'),(303603,'Phulera (Hq.Sambhar)','JAIPUR','RAJASTHAN'),(303604,'Phulera (Hq.Sambhar)','JAIPUR','RAJASTHAN'),(303701,'Amber','JAIPUR','RAJASTHAN'),(303702,'Amber','JAIPUR','RAJASTHAN'),(303704,'Bassi','JAIPUR','RAJASTHAN'),(303706,'Jaipur','JAIPUR','RAJASTHAN'),(303712,'Chomu','JAIPUR','RAJASTHAN'),(303801,'Chomu','JAIPUR','RAJASTHAN'),(303803,'Chomu','JAIPUR','RAJASTHAN'),(303804,'Chomu','JAIPUR','RAJASTHAN'),(303805,'Chomu','JAIPUR','RAJASTHAN'),(303806,'Lalsot','DAUSA','RAJASTHAN'),(303807,'Chomu','JAIPUR','RAJASTHAN'),(303901,'Chaksu','JAIPUR','RAJASTHAN'),(303903,'Chaksu','JAIPUR','RAJASTHAN'),(303904,'Phagi','JAIPUR','RAJASTHAN'),(303905,'Sanganer','JAIPUR','RAJASTHAN'),(303908,'Bassi','JAIPUR','RAJASTHAN'),(304001,'Tonk','TONK','RAJASTHAN'),(304021,'Tonk','TONK','RAJASTHAN'),(304022,'Niwai','TONK','RAJASTHAN'),(304023,'Uniara','TONK','RAJASTHAN'),(304024,'Uniara','TONK','RAJASTHAN'),(304025,'Niwai','TONK','RAJASTHAN'),(304026,'Uniara','TONK','RAJASTHAN'),(304501,'Malpura','TONK','RAJASTHAN'),(304502,'Todaraisingh','TONK','RAJASTHAN'),(304503,'Malpura','TONK','RAJASTHAN'),(304504,'Malpura','TONK','RAJASTHAN'),(304505,'Todaraisingh','TONK','RAJASTHAN'),(304507,'Deoli','TONK','RAJASTHAN'),(304801,'Peeplu','TONK','RAJASTHAN'),(304802,'Deoli','TONK','RAJASTHAN'),(304803,'Deoli','TONK','RAJASTHAN'),(304804,'Deoli','TONK','RAJASTHAN'),(305001,'Ajmer','AJMER','RAJASTHAN'),(305002,'Ajmer','AJMER','RAJASTHAN'),(305003,'Ajmer','AJMER','RAJASTHAN'),(305004,'Ajmer','AJMER','RAJASTHAN'),(305005,'Ajmer','AJMER','RAJASTHAN'),(305007,'Ajmer','AJMER','RAJASTHAN'),(305009,'Ajmer','AJMER','RAJASTHAN'),(305012,'Ajmer','AJMER','RAJASTHAN'),(305021,'Ajmer','AJMER','RAJASTHAN'),(305022,'Ajmer','AJMER','RAJASTHAN'),(305023,'Ajmer','AJMER','RAJASTHAN'),(305024,'Ajmer','AJMER','RAJASTHAN'),(305025,'Kishangarh','AJMER','RAJASTHAN'),(305026,'Degana','NAGAUR','RAJASTHAN'),(305201,'Ajmer','AJMER','RAJASTHAN'),(305202,'Bhim','RAJSAMAND','RAJASTHAN'),(305203,'Beawar','AJMER','RAJASTHAN'),(305204,'Peesangan','AJMER','RAJASTHAN'),(305205,'Ajmer','AJMER','RAJASTHAN'),(305206,'Ajmer','AJMER','RAJASTHAN'),(305207,'Beawar','AJMER','RAJASTHAN'),(305401,'Masuda','AJMER','RAJASTHAN'),(305402,'Kishangarh','AJMER','RAJASTHAN'),(305403,'Sarwar','AJMER','RAJASTHAN'),(305404,'Kekri','AJMER','RAJASTHAN'),(305405,'Beawar','AJMER','RAJASTHAN'),(305406,'Beawar','AJMER','RAJASTHAN'),(305407,'Nasirabad','AJMER','RAJASTHAN'),(305408,'Beawar','AJMER','RAJASTHAN'),(305412,'Sarwar','AJMER','RAJASTHAN'),(305415,'Kekri','AJMER','RAJASTHAN'),(305601,'Nasirabad','AJMER','RAJASTHAN'),(305621,'Nasirabad','AJMER','RAJASTHAN'),(305622,'Bhinay','AJMER','RAJASTHAN'),(305623,'Masuda','AJMER','RAJASTHAN'),(305624,'Masuda','AJMER','RAJASTHAN'),(305625,'Masuda','AJMER','RAJASTHAN'),(305627,'Bhinay','AJMER','RAJASTHAN'),(305628,'Bhinay','AJMER','RAJASTHAN'),(305629,'Bhinay','AJMER','RAJASTHAN'),(305630,'Masuda','AJMER','RAJASTHAN'),(305801,'Kishangarh','AJMER','RAJASTHAN'),(305802,'Kishangarh','AJMER','RAJASTHAN'),(305811,'Ajmer','AJMER','RAJASTHAN'),(305812,'Kishangarh','AJMER','RAJASTHAN'),(305813,'Kishangarh','AJMER','RAJASTHAN'),(305814,'Kishangarh','AJMER','RAJASTHAN'),(305815,'Kishangarh','AJMER','RAJASTHAN'),(305816,'Kishangarh','AJMER','RAJASTHAN'),(305819,'Kishangarh','AJMER','RAJASTHAN'),(305901,'Beawar','AJMER','RAJASTHAN'),(305921,'Bhim','RAJSAMAND','RAJASTHAN'),(305922,'Beawar','AJMER','RAJASTHAN'),(305923,'Beawar','AJMER','RAJASTHAN'),(305924,'Beawar','AJMER','RAJASTHAN'),(305925,'Beawar','AJMER','RAJASTHAN'),(305926,'Beawar','AJMER','RAJASTHAN'),(305927,'Beawar','AJMER','RAJASTHAN'),(306001,'Raipur','PALI','RAJASTHAN'),(306021,'Marwar Junction','PALI','RAJASTHAN'),(306022,'Desuri','PALI','RAJASTHAN'),(306023,'Marwar Junction','PALI','RAJASTHAN'),(306101,'Jaitaran','PALI','RAJASTHAN'),(306102,'Raipur','PALI','RAJASTHAN'),(306103,'Sojat','PALI','RAJASTHAN'),(306104,'Sojat','PALI','RAJASTHAN'),(306105,'Raipur','PALI','RAJASTHAN'),(306114,'Sojat','PALI','RAJASTHAN'),(306115,'Desuri','PALI','RAJASTHAN'),(306116,'Bali','PALI','RAJASTHAN'),(306119,'Desuri','PALI','RAJASTHAN'),(306126,'Bali','PALI','RAJASTHAN'),(306301,'Jaitaran','PALI','RAJASTHAN'),(306302,'Jaitaran','PALI','RAJASTHAN'),(306303,'Jaitaran','PALI','RAJASTHAN'),(306304,'Raipur','PALI','RAJASTHAN'),(306305,'Raipur','PALI','RAJASTHAN'),(306306,'Sojat','PALI','RAJASTHAN'),(306307,'Sojat','PALI','RAJASTHAN'),(306308,'Jaitaran','PALI','RAJASTHAN'),(306401,'Pali','PALI','RAJASTHAN'),(306421,'Rohat','PALI','RAJASTHAN'),(306422,'Pali','PALI','RAJASTHAN'),(306501,'Pali','PALI','RAJASTHAN'),(306502,'Desuri','PALI','RAJASTHAN'),(306503,'Desuri','PALI','RAJASTHAN'),(306504,'Bali','PALI','RAJASTHAN'),(306601,'Desuri','PALI','RAJASTHAN'),(306602,'Raipur','PALI','RAJASTHAN'),(306603,'Desuri','PALI','RAJASTHAN'),(306701,'Bali','PALI','RAJASTHAN'),(306702,'Marwar Junction','PALI','RAJASTHAN'),(306703,'Desuri','PALI','RAJASTHAN'),(306704,'Desuri','PALI','RAJASTHAN'),(306705,'Bali','PALI','RAJASTHAN'),(306706,'Bali','PALI','RAJASTHAN'),(306707,'Bali','PALI','RAJASTHAN'),(306708,'Sumerpur','PALI','RAJASTHAN'),(306709,'Jaitaran','PALI','RAJASTHAN'),(306901,'Sumerpur','PALI','RAJASTHAN'),(306902,'Sumerpur','PALI','RAJASTHAN'),(306912,'Sumerpur','PALI','RAJASTHAN'),(307001,'Sirohi','SIROHI','RAJASTHAN'),(307019,'Pindwara','SIROHI','RAJASTHAN'),(307022,'Pindwara','SIROHI','RAJASTHAN'),(307023,'Pindwara','SIROHI','RAJASTHAN'),(307024,'Pindwara','SIROHI','RAJASTHAN'),(307025,'Kotra','UDAIPUR','RAJASTHAN'),(307026,'Abu Road','SIROHI','RAJASTHAN'),(307027,'Sheoganj','SIROHI','RAJASTHAN'),(307028,'Sheoganj','SIROHI','RAJASTHAN'),(307029,'Ahore','JALOR','RAJASTHAN'),(307030,'Ahore','JALOR','RAJASTHAN'),(307031,'Pindwara','SIROHI','RAJASTHAN'),(307032,'Abu Road','SIROHI','RAJASTHAN'),(307043,'Sheoganj','SIROHI','RAJASTHAN'),(307501,'Abu Road','SIROHI','RAJASTHAN'),(307510,'Abu Road','SIROHI','RAJASTHAN'),(307511,'Reodar','SIROHI','RAJASTHAN'),(307512,'Sirohi','SIROHI','RAJASTHAN'),(307513,'Reodar','SIROHI','RAJASTHAN'),(307514,'Reodar','SIROHI','RAJASTHAN'),(307515,'Bhinmal','JALOR','RAJASTHAN'),(307801,'Sirohi','SIROHI','RAJASTHAN'),(307802,'Sirohi','SIROHI','RAJASTHAN'),(307803,'Bhinmal','JALOR','RAJASTHAN'),(311001,'Bhilwara','BHILWARA','RAJASTHAN'),(311011,'Bhilwara','BHILWARA','RAJASTHAN'),(311021,'Hurda','BHILWARA','RAJASTHAN'),(311022,'Hurda','BHILWARA','RAJASTHAN'),(311023,'Shahpura','BHILWARA','RAJASTHAN'),(311024,'Hurda','BHILWARA','RAJASTHAN'),(311025,'Kotri','BHILWARA','RAJASTHAN'),(311026,'Mandal','BHILWARA','RAJASTHAN'),(311030,'Hurda','BHILWARA','RAJASTHAN'),(311201,'Jahazpur','BHILWARA','RAJASTHAN'),(311202,'Jahazpur','BHILWARA','RAJASTHAN'),(311203,'Jahazpur','BHILWARA','RAJASTHAN'),(311204,'Asind','BHILWARA','RAJASTHAN'),(311301,'Asind','BHILWARA','RAJASTHAN'),(311302,'Asind','BHILWARA','RAJASTHAN'),(311401,'Banera','BHILWARA','RAJASTHAN'),(311402,'Sahara','BHILWARA','RAJASTHAN'),(311403,'Mandal','BHILWARA','RAJASTHAN'),(311404,'Shahpura','BHILWARA','RAJASTHAN'),(311407,'Shahpura','BHILWARA','RAJASTHAN'),(311408,'Banera','BHILWARA','RAJASTHAN'),(311601,'Mandalgarh','BHILWARA','RAJASTHAN'),(311602,'Beejoliya','BHILWARA','RAJASTHAN'),(311603,'Kotri','BHILWARA','RAJASTHAN'),(311604,'Mandalgarh','BHILWARA','RAJASTHAN'),(311605,'Jahazpur','BHILWARA','RAJASTHAN'),(311801,'Sahara','BHILWARA','RAJASTHAN'),(311802,'Bhilwara','BHILWARA','RAJASTHAN'),(311803,'Raipur','BHILWARA','RAJASTHAN'),(311804,'Mandal','BHILWARA','RAJASTHAN'),(311805,'Sahara','BHILWARA','RAJASTHAN'),(311806,'Sahara','BHILWARA','RAJASTHAN'),(312001,'Chittaurgarh','CHITTORGARH','RAJASTHAN'),(312021,'Chittaurgarh','CHITTORGARH','RAJASTHAN'),(312022,'Begun','CHITTORGARH','RAJASTHAN'),(312023,'Begun','CHITTORGARH','RAJASTHAN'),(312024,'Bhadesar','CHITTORGARH','RAJASTHAN'),(312025,'Chittaurgarh','CHITTORGARH','RAJASTHAN'),(312027,'Bhadesar','CHITTORGARH','RAJASTHAN'),(312201,'Chittaurgarh','CHITTORGARH','RAJASTHAN'),(312202,'Kapasan','CHITTORGARH','RAJASTHAN'),(312203,'Rashmi','CHITTORGARH','RAJASTHAN'),(312204,'Kapasan','CHITTORGARH','RAJASTHAN'),(312205,'Kapasan','CHITTORGARH','RAJASTHAN'),(312206,'Rashmi','CHITTORGARH','RAJASTHAN'),(312207,'Chittaurgarh','CHITTORGARH','RAJASTHAN'),(312401,'Bari Sadri','CHITTORGARH','RAJASTHAN'),(312402,'Dungla','CHITTORGARH','RAJASTHAN'),(312403,'Bari Sadri','CHITTORGARH','RAJASTHAN'),(312404,'Dungla','CHITTORGARH','RAJASTHAN'),(312601,'Nimbahera','CHITTORGARH','RAJASTHAN'),(312602,'Bhadesar','CHITTORGARH','RAJASTHAN'),(312603,'Bari Sadri','CHITTORGARH','RAJASTHAN'),(312604,'Chhoti Sadri','CHITTORGARH','RAJASTHAN'),(312605,'Pratapgarh','CHITTORGARH','RAJASTHAN'),(312606,'Nimbahera','CHITTORGARH','RAJASTHAN'),(312612,'Bhadesar','CHITTORGARH','RAJASTHAN'),(312613,'Chittaurgarh','CHITTORGARH','RAJASTHAN'),(312614,'Bhadesar','CHITTORGARH','RAJASTHAN'),(312615,'Arnod','CHITTORGARH','RAJASTHAN'),(312616,'Pratapgarh','CHITTORGARH','RAJASTHAN'),(312617,'Nimbahera','CHITTORGARH','RAJASTHAN'),(312619,'Arnod','CHITTORGARH','RAJASTHAN'),(312620,'Nimbahera','CHITTORGARH','RAJASTHAN'),(312622,'Chittaurgarh','CHITTORGARH','RAJASTHAN'),(312623,'Pratapgarh','CHITTORGARH','RAJASTHAN'),(312626,'Dhariawad','UDAIPUR','RAJASTHAN'),(312901,'Begun','CHITTORGARH','RAJASTHAN'),(313001,'Gogunda','UDAIPUR','RAJASTHAN'),(313002,'Girwa','UDAIPUR','RAJASTHAN'),(313003,'Girwa','UDAIPUR','RAJASTHAN'),(313004,'Girwa','UDAIPUR','RAJASTHAN'),(313011,'Nathdwara','RAJSAMAND','RAJASTHAN'),(313015,'Girwa','UDAIPUR','RAJASTHAN'),(313022,'Vallabhnagar','UDAIPUR','RAJASTHAN'),(313024,'Girwa','UDAIPUR','RAJASTHAN'),(313026,'Sarada','UDAIPUR','RAJASTHAN'),(313027,'Jhadol','UDAIPUR','RAJASTHAN'),(313031,'Girwa','UDAIPUR','RAJASTHAN'),(313038,'Salumbar','UDAIPUR','RAJASTHAN'),(313201,'Mavli','UDAIPUR','RAJASTHAN'),(313202,'Girwa','UDAIPUR','RAJASTHAN'),(313203,'Mavli','UDAIPUR','RAJASTHAN'),(313204,'Mavli','UDAIPUR','RAJASTHAN'),(313205,'Mavli','UDAIPUR','RAJASTHAN'),(313206,'Mavli','UDAIPUR','RAJASTHAN'),(313207,'Railmagra','RAJSAMAND','RAJASTHAN'),(313211,'Railmagra','RAJSAMAND','RAJASTHAN'),(313301,'Nathdwara','RAJSAMAND','RAJASTHAN'),(313321,'Nathdwara','RAJSAMAND','RAJASTHAN'),(313322,'Girwa','UDAIPUR','RAJASTHAN'),(313323,'Nathdwara','RAJSAMAND','RAJASTHAN'),(313324,'Rajsamand','RAJSAMAND','RAJASTHAN'),(313325,'Kumbhalgarh','RAJSAMAND','RAJASTHAN'),(313327,'Rajsamand','RAJSAMAND','RAJASTHAN'),(313328,'Railmagra','RAJSAMAND','RAJASTHAN'),(313329,'Railmagra','RAJSAMAND','RAJASTHAN'),(313330,'Amet','RAJSAMAND','RAJASTHAN'),(313331,'Bhim','RAJSAMAND','RAJASTHAN'),(313332,'Amet','RAJSAMAND','RAJASTHAN'),(313333,'Amet','RAJSAMAND','RAJASTHAN'),(313334,'Rajsamand','RAJSAMAND','RAJASTHAN'),(313341,'Bhim','RAJSAMAND','RAJASTHAN'),(313342,'Rajsamand','RAJSAMAND','RAJASTHAN'),(313601,'Vallabhnagar','UDAIPUR','RAJASTHAN'),(313602,'Vallabhnagar','UDAIPUR','RAJASTHAN'),(313603,'Vallabhnagar','UDAIPUR','RAJASTHAN'),(313604,'Dhariawad','UDAIPUR','RAJASTHAN'),(313701,'Jhadol','UDAIPUR','RAJASTHAN'),(313702,'Jhadol','UDAIPUR','RAJASTHAN'),(313703,'Sarada','UDAIPUR','RAJASTHAN'),(313704,'Gogunda','UDAIPUR','RAJASTHAN'),(313705,'Gogunda','UDAIPUR','RAJASTHAN'),(313706,'Girwa','UDAIPUR','RAJASTHAN'),(313708,'Gogunda','UDAIPUR','RAJASTHAN'),(313801,'Girwa','UDAIPUR','RAJASTHAN'),(313802,'Kherwara','UDAIPUR','RAJASTHAN'),(313803,'Kherwara','UDAIPUR','RAJASTHAN'),(313804,'Kherwara','UDAIPUR','RAJASTHAN'),(313901,'Sarada','UDAIPUR','RAJASTHAN'),(313902,'Sarada','UDAIPUR','RAJASTHAN'),(313903,'Kherwara','UDAIPUR','RAJASTHAN'),(313904,'Sarada','UDAIPUR','RAJASTHAN'),(313905,'Jhadol','UDAIPUR','RAJASTHAN'),(313906,'Jhadol','UDAIPUR','RAJASTHAN'),(314001,'Dungarpur','DUNGARPUR','RAJASTHAN'),(314011,'Dungarpur','DUNGARPUR','RAJASTHAN'),(314021,'Aspur','DUNGARPUR','RAJASTHAN'),(314022,'Aspur','DUNGARPUR','RAJASTHAN'),(314023,'Aspur','DUNGARPUR','RAJASTHAN'),(314024,'Sagwara','DUNGARPUR','RAJASTHAN'),(314025,'Sagwara','DUNGARPUR','RAJASTHAN'),(314026,'Sagwara','DUNGARPUR','RAJASTHAN'),(314027,'Simalwara','DUNGARPUR','RAJASTHAN'),(314028,'Dungarpur','DUNGARPUR','RAJASTHAN'),(314029,'Sagwara','DUNGARPUR','RAJASTHAN'),(314030,'Simalwara','DUNGARPUR','RAJASTHAN'),(314031,'Sagwara','DUNGARPUR','RAJASTHAN'),(314032,'Dungarpur','DUNGARPUR','RAJASTHAN'),(314034,'Dungarpur','DUNGARPUR','RAJASTHAN'),(314035,'Sagwara','DUNGARPUR','RAJASTHAN'),(314036,'Dungarpur','DUNGARPUR','RAJASTHAN'),(314037,'Sagwara','DUNGARPUR','RAJASTHAN'),(314038,'Aspur','DUNGARPUR','RAJASTHAN'),(314401,'Sagwara','DUNGARPUR','RAJASTHAN'),(314402,'Simalwara','DUNGARPUR','RAJASTHAN'),(314403,'Simalwara','DUNGARPUR','RAJASTHAN'),(314404,'Simalwara','DUNGARPUR','RAJASTHAN'),(314406,'Aspur','DUNGARPUR','RAJASTHAN'),(314801,'Dungarpur','DUNGARPUR','RAJASTHAN'),(314804,'Dungarpur','DUNGARPUR','RAJASTHAN'),(321001,'Bharatpur','BHARATPUR','RAJASTHAN'),(321021,'Bharatpur','BHARATPUR','RAJASTHAN'),(321022,'Kaman','BHARATPUR','RAJASTHAN'),(321023,'Pahari','BHARATPUR','RAJASTHAN'),(321024,'Pahari','BHARATPUR','RAJASTHAN'),(321025,'Bharatpur','BHARATPUR','RAJASTHAN'),(321026,'Kumher','BHARATPUR','RAJASTHAN'),(321028,'Nadbai','BHARATPUR','RAJASTHAN'),(321201,'Kumher','BHARATPUR','RAJASTHAN'),(321202,'Kumher','BHARATPUR','RAJASTHAN'),(321203,'Deeg','BHARATPUR','RAJASTHAN'),(321204,'Pahari','BHARATPUR','RAJASTHAN'),(321205,'Nagar','BHARATPUR','RAJASTHAN'),(321206,'Kumher','BHARATPUR','RAJASTHAN'),(321301,'Rupbas','BHARATPUR','RAJASTHAN'),(321302,'Bayana','BHARATPUR','RAJASTHAN'),(321303,'Bharatpur','BHARATPUR','RAJASTHAN'),(321401,'Bayana','BHARATPUR','RAJASTHAN'),(321402,'Rupbas','BHARATPUR','RAJASTHAN'),(321403,'Rupbas','BHARATPUR','RAJASTHAN'),(321404,'Rupbas','BHARATPUR','RAJASTHAN'),(321405,'Bayana','BHARATPUR','RAJASTHAN'),(321406,'Weir','BHARATPUR','RAJASTHAN'),(321407,'Weir','BHARATPUR','RAJASTHAN'),(321408,'Weir','BHARATPUR','RAJASTHAN'),(321409,'Weir','BHARATPUR','RAJASTHAN'),(321410,'Bayana','BHARATPUR','RAJASTHAN'),(321411,'Bayana','BHARATPUR','RAJASTHAN'),(321601,'Weir','BHARATPUR','RAJASTHAN'),(321602,'Nadbai','BHARATPUR','RAJASTHAN'),(321605,'Kathumar','ALWAR','RAJASTHAN'),(321606,'Kathumar','ALWAR','RAJASTHAN'),(321607,'Kathumar','ALWAR','RAJASTHAN'),(321608,'Mahwa','DAUSA','RAJASTHAN'),(321609,'Mahwa','DAUSA','RAJASTHAN'),(321610,'Todabhim','KARAULI','RAJASTHAN'),(321611,'Todabhim','KARAULI','RAJASTHAN'),(321612,'Mahwa','DAUSA','RAJASTHAN'),(321613,'Mahwa','DAUSA','RAJASTHAN'),(321614,'Nadbai','BHARATPUR','RAJASTHAN'),(321615,'Weir','BHARATPUR','RAJASTHAN'),(321633,'Lachhmangarh','ALWAR','RAJASTHAN'),(321642,'Nadbai','BHARATPUR','RAJASTHAN'),(322001,'Sawai Madhopur','SAWAI MADHOPUR','RAJASTHAN'),(322021,'Sawai Madhopur','SAWAI MADHOPUR','RAJASTHAN'),(322023,'Bonli','SAWAI MADHOPUR','RAJASTHAN'),(322024,'Bonli','SAWAI MADHOPUR','RAJASTHAN'),(322025,'Khandar','SAWAI MADHOPUR','RAJASTHAN'),(322026,'Sawai Madhopur','SAWAI MADHOPUR','RAJASTHAN'),(322027,'Sawai Madhopur','SAWAI MADHOPUR','RAJASTHAN'),(322028,'Malarna Doongar','SAWAI MADHOPUR','RAJASTHAN'),(322029,'Sawai Madhopur','SAWAI MADHOPUR','RAJASTHAN'),(322030,'Malarna Doongar','SAWAI MADHOPUR','RAJASTHAN'),(322033,'Khandar','SAWAI MADHOPUR','RAJASTHAN'),(322034,'Sawai Madhopur','SAWAI MADHOPUR','RAJASTHAN'),(322201,'Gangapur','SAWAI MADHOPUR','RAJASTHAN'),(322202,'Gangapur','SAWAI MADHOPUR','RAJASTHAN'),(322203,'Sapotra','KARAULI','RAJASTHAN'),(322204,'Nadoti','KARAULI','RAJASTHAN'),(322205,'Gangapur','SAWAI MADHOPUR','RAJASTHAN'),(322211,'Bamanwas','SAWAI MADHOPUR','RAJASTHAN'),(322212,'Bamanwas','SAWAI MADHOPUR','RAJASTHAN'),(322213,'Nadoti','KARAULI','RAJASTHAN'),(322214,'Gangapur','SAWAI MADHOPUR','RAJASTHAN'),(322215,'Nadoti','KARAULI','RAJASTHAN'),(322216,'Nadoti','KARAULI','RAJASTHAN'),(322218,'Sapotra','KARAULI','RAJASTHAN'),(322219,'Gangapur','SAWAI MADHOPUR','RAJASTHAN'),(322220,'Hindaun','KARAULI','RAJASTHAN'),(322230,'Hindaun','KARAULI','RAJASTHAN'),(322234,'Hindaun','KARAULI','RAJASTHAN'),(322236,'Hindaun','KARAULI','RAJASTHAN'),(322238,'Todabhim','KARAULI','RAJASTHAN'),(322240,'Mahwa','DAUSA','RAJASTHAN'),(322241,'Karauli','KARAULI','RAJASTHAN'),(322242,'Karauli','KARAULI','RAJASTHAN'),(322243,'Sapotra','KARAULI','RAJASTHAN'),(322249,'Mandrail','KARAULI','RAJASTHAN'),(322251,'Mandrail','KARAULI','RAJASTHAN'),(322252,'Karauli','KARAULI','RAJASTHAN'),(322254,'Todabhim','KARAULI','RAJASTHAN'),(322255,'Karauli','KARAULI','RAJASTHAN'),(322701,'Sawai Madhopur','SAWAI MADHOPUR','RAJASTHAN'),(322702,'Chauth Ka Barwara','SAWAI MADHOPUR','RAJASTHAN'),(322703,'Chauth Ka Barwara','SAWAI MADHOPUR','RAJASTHAN'),(322704,'Chauth Ka Barwara','SAWAI MADHOPUR','RAJASTHAN'),(323001,'Bundi','BUNDI','RAJASTHAN'),(323021,'Bundi','BUNDI','RAJASTHAN'),(323022,'Bundi','BUNDI','RAJASTHAN'),(323023,'Hindoli','BUNDI','RAJASTHAN'),(323024,'Hindoli','BUNDI','RAJASTHAN'),(323025,'Hindoli','BUNDI','RAJASTHAN'),(323026,'Hindoli','BUNDI','RAJASTHAN'),(323301,'Keshoraipatan','BUNDI','RAJASTHAN'),(323303,'Rawatbhata','CHITTORGARH','RAJASTHAN'),(323304,'Begun','CHITTORGARH','RAJASTHAN'),(323305,'Rawatbhata','CHITTORGARH','RAJASTHAN'),(323306,'Rawatbhata','CHITTORGARH','RAJASTHAN'),(323307,'Rawatbhata','CHITTORGARH','RAJASTHAN'),(323601,'Keshoraipatan','BUNDI','RAJASTHAN'),(323602,'Bundi','BUNDI','RAJASTHAN'),(323603,'Indragarh','BUNDI','RAJASTHAN'),(323613,'Indragarh','BUNDI','RAJASTHAN'),(323614,'Indragarh','BUNDI','RAJASTHAN'),(323615,'Indragarh','BUNDI','RAJASTHAN'),(323616,'Nainwa','BUNDI','RAJASTHAN'),(323801,'Nainwa','BUNDI','RAJASTHAN'),(323802,'Nainwa','BUNDI','RAJASTHAN'),(323803,'Bundi','BUNDI','RAJASTHAN'),(324001,'Ladpura','KOTA','RAJASTHAN'),(324002,'Ladpura','KOTA','RAJASTHAN'),(324003,'Ladpura','KOTA','RAJASTHAN'),(324004,'Ladpura','KOTA','RAJASTHAN'),(324005,'Ladpura','KOTA','RAJASTHAN'),(324006,'Ladpura','KOTA','RAJASTHAN'),(324007,'Ladpura','KOTA','RAJASTHAN'),(324008,'Ladpura','KOTA','RAJASTHAN'),(324009,'Ladpura','KOTA','RAJASTHAN'),(324010,'Ladpura','KOTA','RAJASTHAN'),(325001,'Ladpura','KOTA','RAJASTHAN'),(325003,'Ladpura','KOTA','RAJASTHAN'),(325004,'Pipalda','KOTA','RAJASTHAN'),(325009,'Pipalda','KOTA','RAJASTHAN'),(325201,'Digod','KOTA','RAJASTHAN'),(325202,'Antah','BARAN','RAJASTHAN'),(325203,'Digod','KOTA','RAJASTHAN'),(325204,'Digod','KOTA','RAJASTHAN'),(325205,'Baran','BARAN','RAJASTHAN'),(325206,'Mangrol','BARAN','RAJASTHAN'),(325207,'Atru','BARAN','RAJASTHAN'),(325208,'Digod','KOTA','RAJASTHAN'),(325209,'Antah','BARAN','RAJASTHAN'),(325214,'Pipalda','KOTA','RAJASTHAN'),(325215,'Kishanganj','BARAN','RAJASTHAN'),(325216,'Shahbad','BARAN','RAJASTHAN'),(325217,'Shahbad','BARAN','RAJASTHAN'),(325218,'Atru','BARAN','RAJASTHAN'),(325219,'Chhipabarod','BARAN','RAJASTHAN'),(325220,'Chhabra','BARAN','RAJASTHAN'),(325221,'Chhipabarod','BARAN','RAJASTHAN'),(325222,'Mangrol','BARAN','RAJASTHAN'),(325223,'Atru','BARAN','RAJASTHAN'),(325224,'Kishanganj','BARAN','RAJASTHAN'),(325601,'Sangod','KOTA','RAJASTHAN'),(325602,'Sangod','KOTA','RAJASTHAN'),(326001,'Khanpur','JHALAWAR','RAJASTHAN'),(326021,'Jhalrapatan','JHALAWAR','RAJASTHAN'),(326022,'Jhalrapatan','JHALAWAR','RAJASTHAN'),(326023,'Jhalrapatan','JHALAWAR','RAJASTHAN'),(326033,'Aklera','JHALAWAR','RAJASTHAN'),(326034,'Pirawa','JHALAWAR','RAJASTHAN'),(326035,'Khanpur','JHALAWAR','RAJASTHAN'),(326036,'Pirawa','JHALAWAR','RAJASTHAN'),(326037,'Manohar Thana','JHALAWAR','RAJASTHAN'),(326038,'Khanpur','JHALAWAR','RAJASTHAN'),(326039,'Aklera','JHALAWAR','RAJASTHAN'),(326501,'Pachpahar','JHALAWAR','RAJASTHAN'),(326502,'Pachpahar','JHALAWAR','RAJASTHAN'),(326512,'Pachpahar','JHALAWAR','RAJASTHAN'),(326513,'Pirawa','JHALAWAR','RAJASTHAN'),(326514,'Gangdhar','JHALAWAR','RAJASTHAN'),(326515,'Gangdhar','JHALAWAR','RAJASTHAN'),(326516,'Gangdhar','JHALAWAR','RAJASTHAN'),(326517,'Ramganj Mandi','KOTA','RAJASTHAN'),(326518,'Ramganj Mandi','KOTA','RAJASTHAN'),(326519,'Ramganj Mandi','KOTA','RAJASTHAN'),(326520,'Ramganj Mandi','KOTA','RAJASTHAN'),(326529,'Ramganj Mandi','KOTA','RAJASTHAN'),(326530,'Ramganj Mandi','KOTA','RAJASTHAN'),(327001,'Garhi','BANSWARA','RAJASTHAN'),(327021,'Ghatol','BANSWARA','RAJASTHAN'),(327022,'Garhi','BANSWARA','RAJASTHAN'),(327023,'Ghatol','BANSWARA','RAJASTHAN'),(327024,'Garhi','BANSWARA','RAJASTHAN'),(327025,'Banswara','BANSWARA','RAJASTHAN'),(327026,'Banswara','BANSWARA','RAJASTHAN'),(327027,'Ghatol','BANSWARA','RAJASTHAN'),(327031,'Bagidora','BANSWARA','RAJASTHAN'),(327032,'Garhi','BANSWARA','RAJASTHAN'),(327034,'Garhi','BANSWARA','RAJASTHAN'),(327601,'Bagidora','BANSWARA','RAJASTHAN'),(327602,'Kushalgarh','BANSWARA','RAJASTHAN'),(327603,'Bagidora','BANSWARA','RAJASTHAN'),(327604,'Bagidora','BANSWARA','RAJASTHAN'),(327605,'Garhi','BANSWARA','RAJASTHAN'),(327606,'Bagidora','BANSWARA','RAJASTHAN'),(327801,'Kushalgarh','BANSWARA','RAJASTHAN'),(328001,'Dhaulpur','DHOLPUR','RAJASTHAN'),(328021,'Bari','DHOLPUR','RAJASTHAN'),(328022,'Baseri','DHOLPUR','RAJASTHAN'),(328023,'Sepau','DHOLPUR','RAJASTHAN'),(328024,'Dhaulpur','DHOLPUR','RAJASTHAN'),(328025,'Rajakhera','DHOLPUR','RAJASTHAN'),(328026,'Baseri','DHOLPUR','RAJASTHAN'),(328027,'Sepau','DHOLPUR','RAJASTHAN'),(328028,'Bari','DHOLPUR','RAJASTHAN'),(328029,'Rajakhera','DHOLPUR','RAJASTHAN'),(328030,'Dhaulpur','DHOLPUR','RAJASTHAN'),(328031,'Baseri','DHOLPUR','RAJASTHAN'),(328041,'Bari','DHOLPUR','RAJASTHAN'),(331001,'Churu','CHURU','RAJASTHAN'),(331021,'Churu','CHURU','RAJASTHAN'),(331022,'Sardarshahar','CHURU','RAJASTHAN'),(331023,'Rajgarh','CHURU','RAJASTHAN'),(331024,'Fatehpur','SIKAR','RAJASTHAN'),(331025,'Jhunjhunun','JHUJHUNU','RAJASTHAN'),(331026,'Jhunjhunun','JHUJHUNU','RAJASTHAN'),(331027,'Jhunjhunun','JHUJHUNU','RAJASTHAN'),(331028,'Jhunjhunun','JHUJHUNU','RAJASTHAN'),(331029,'Churu','CHURU','RAJASTHAN'),(331030,'Jhunjhunun','JHUJHUNU','RAJASTHAN'),(331031,'Ratangarh','CHURU','RAJASTHAN'),(331301,'Rajgarh','CHURU','RAJASTHAN'),(331302,'Taranagar','CHURU','RAJASTHAN'),(331303,'Rajgarh','CHURU','RAJASTHAN'),(331304,'Taranagar','CHURU','RAJASTHAN'),(331305,'Rajgarh','CHURU','RAJASTHAN'),(331402,'Sardarshahar','CHURU','RAJASTHAN'),(331403,'Sardarshahar','CHURU','RAJASTHAN'),(331411,'Sardarshahar','CHURU','RAJASTHAN'),(331501,'Sujangarh','CHURU','RAJASTHAN'),(331502,'Sujangarh','CHURU','RAJASTHAN'),(331503,'Sujangarh','CHURU','RAJASTHAN'),(331504,'Ratangarh','CHURU','RAJASTHAN'),(331505,'Sujangarh','CHURU','RAJASTHAN'),(331506,'Ratangarh','CHURU','RAJASTHAN'),(331507,'Sujangarh','CHURU','RAJASTHAN'),(331517,'Sujangarh','CHURU','RAJASTHAN'),(331518,'Sujangarh','CHURU','RAJASTHAN'),(331701,'Rajgarh','CHURU','RAJASTHAN'),(331801,'Dungargarh','CHURU','RAJASTHAN'),(331802,'Ratangarh','CHURU','RAJASTHAN'),(331803,'Dungargarh','CHURU','RAJASTHAN'),(331811,'Dungargarh','CHURU','RAJASTHAN'),(332001,'Sikar','SIKAR','RAJASTHAN'),(332002,'Sikar','SIKAR','RAJASTHAN'),(332021,'Sikar','SIKAR','RAJASTHAN'),(332023,'Fatehpur','SIKAR','RAJASTHAN'),(332024,'Sikar','SIKAR','RAJASTHAN'),(332025,'Sikar','SIKAR','RAJASTHAN'),(332026,'Lachhmangarh','SIKAR','RAJASTHAN'),(332027,'Sikar','SIKAR','RAJASTHAN'),(332028,'Sikar','SIKAR','RAJASTHAN'),(332029,'Lachhmangarh','SIKAR','RAJASTHAN'),(332030,'Sikar','SIKAR','RAJASTHAN'),(332031,'Lachhmangarh','SIKAR','RAJASTHAN'),(332041,'Sikar','SIKAR','RAJASTHAN'),(332042,'Sikar','SIKAR','RAJASTHAN'),(332301,'Fatehpur','SIKAR','RAJASTHAN'),(332302,'Fatehpur','SIKAR','RAJASTHAN'),(332303,'Fatehpur','SIKAR','RAJASTHAN'),(332304,'Fatehpur','SIKAR','RAJASTHAN'),(332305,'Fatehpur','SIKAR','RAJASTHAN'),(332307,'Fatehpur','SIKAR','RAJASTHAN'),(332311,'Lachhmangarh','SIKAR','RAJASTHAN'),(332312,'Lachhmangarh','SIKAR','RAJASTHAN'),(332315,'Lachhmangarh','SIKAR','RAJASTHAN'),(332316,'Lachhmangarh','SIKAR','RAJASTHAN'),(332317,'Fatehpur','SIKAR','RAJASTHAN'),(332318,'Lachhmangarh','SIKAR','RAJASTHAN'),(332401,'Fatehpur','SIKAR','RAJASTHAN'),(332402,'Danta Ramgarh','SIKAR','RAJASTHAN'),(332403,'Danta Ramgarh','SIKAR','RAJASTHAN'),(332404,'Sri Madhopur','SIKAR','RAJASTHAN'),(332405,'Danta Ramgarh','SIKAR','RAJASTHAN'),(332406,'Danta Ramgarh','SIKAR','RAJASTHAN'),(332411,'Sri Madhopur','SIKAR','RAJASTHAN'),(332601,'Danta Ramgarh','SIKAR','RAJASTHAN'),(332602,'Danta Ramgarh','SIKAR','RAJASTHAN'),(332603,'Sri Madhopur','SIKAR','RAJASTHAN'),(332701,'Sri Madhopur','SIKAR','RAJASTHAN'),(332702,'Danta Ramgarh','SIKAR','RAJASTHAN'),(332703,'Danta Ramgarh','SIKAR','RAJASTHAN'),(332705,'Neem-Ka-Thana','SIKAR','RAJASTHAN'),(332706,'Neem-Ka-Thana','SIKAR','RAJASTHAN'),(332707,'Neem-Ka-Thana','SIKAR','RAJASTHAN'),(332708,'Neem-Ka-Thana','SIKAR','RAJASTHAN'),(332709,'Sri Madhopur','SIKAR','RAJASTHAN'),(332710,'Danta Ramgarh','SIKAR','RAJASTHAN'),(332711,'Neem-Ka-Thana','SIKAR','RAJASTHAN'),(332712,'Sri Madhopur','SIKAR','RAJASTHAN'),(332713,'Neem-Ka-Thana','SIKAR','RAJASTHAN'),(332714,'Neem-Ka-Thana','SIKAR','RAJASTHAN'),(332715,'Sri Madhopur','SIKAR','RAJASTHAN'),(332716,'Khetri','JHUJHUNU','RAJASTHAN'),(332718,'Neem-Ka-Thana','SIKAR','RAJASTHAN'),(332719,'Neem-Ka-Thana','SIKAR','RAJASTHAN'),(332721,'Sikar','SIKAR','RAJASTHAN'),(332722,'Sri Madhopur','SIKAR','RAJASTHAN'),(332742,'Danta Ramgarh','SIKAR','RAJASTHAN'),(332746,'Khetri','JHUJHUNU','RAJASTHAN'),(333001,'Jhunjhunun','JHUJHUNU','RAJASTHAN'),(333011,'Jhunjhunun','JHUJHUNU','RAJASTHAN'),(333012,'Udaipurwati','JHUJHUNU','RAJASTHAN'),(333021,'Jhunjhunun','JHUJHUNU','RAJASTHAN'),(333022,'Udaipurwati','JHUJHUNU','RAJASTHAN'),(333023,'Chirawa','JHUJHUNU','RAJASTHAN'),(333024,'Jhunjhunun','JHUJHUNU','RAJASTHAN'),(333025,'Chirawa','JHUJHUNU','RAJASTHAN'),(333026,'Khetri','JHUJHUNU','RAJASTHAN'),(333027,'Chirawa','JHUJHUNU','RAJASTHAN'),(333028,'Udaipurwati','JHUJHUNU','RAJASTHAN'),(333029,'Chirawa','JHUJHUNU','RAJASTHAN'),(333030,'Chirawa','JHUJHUNU','RAJASTHAN'),(333031,'Chirawa','JHUJHUNU','RAJASTHAN'),(333032,'Udaipurwati','JHUJHUNU','RAJASTHAN'),(333033,'Chirawa','JHUJHUNU','RAJASTHAN'),(333034,'Buhana','JHUJHUNU','RAJASTHAN'),(333035,'Chirawa','JHUJHUNU','RAJASTHAN'),(333036,'Khetri','JHUJHUNU','RAJASTHAN'),(333041,'Jhunjhunun','JHUJHUNU','RAJASTHAN'),(333042,'Nawalgarh','JHUJHUNU','RAJASTHAN'),(333053,'Udaipurwati','JHUJHUNU','RAJASTHAN'),(333302,'Udaipurwati','JHUJHUNU','RAJASTHAN'),(333303,'Nawalgarh','JHUJHUNU','RAJASTHAN'),(333304,'Nawalgarh','JHUJHUNU','RAJASTHAN'),(333305,'Udaipurwati','JHUJHUNU','RAJASTHAN'),(333307,'Udaipurwati','JHUJHUNU','RAJASTHAN'),(333308,'Nawalgarh','JHUJHUNU','RAJASTHAN'),(333501,'Khetri','JHUJHUNU','RAJASTHAN'),(333502,'Buhana','JHUJHUNU','RAJASTHAN'),(333503,'Khetri','JHUJHUNU','RAJASTHAN'),(333504,'Buhana','JHUJHUNU','RAJASTHAN'),(333514,'Khetri','JHUJHUNU','RAJASTHAN'),(333515,'Buhana','JHUJHUNU','RAJASTHAN'),(333516,'Buhana','JHUJHUNU','RAJASTHAN'),(333701,'Jhunjhunun','JHUJHUNU','RAJASTHAN'),(333702,'Nawalgarh','JHUJHUNU','RAJASTHAN'),(333704,'Jhunjhunun','JHUJHUNU','RAJASTHAN'),(333705,'Nawalgarh','JHUJHUNU','RAJASTHAN'),(333707,'Nawalgarh','JHUJHUNU','RAJASTHAN'),(333801,'Udaipurwati','JHUJHUNU','RAJASTHAN'),(334001,'Kolayat','BIKANER','RAJASTHAN'),(334003,'Bikaner','BIKANER','RAJASTHAN'),(334004,'Bikaner','BIKANER','RAJASTHAN'),(334006,'Bikaner','BIKANER','RAJASTHAN'),(334021,'Chhatargarh','BIKANER','RAJASTHAN'),(334022,'Bikaner','BIKANER','RAJASTHAN'),(334023,'Khajuwala','BIKANER','RAJASTHAN'),(334201,'Bikaner','BIKANER','RAJASTHAN'),(334202,'Nokha','BIKANER','RAJASTHAN'),(334302,'Kolayat','BIKANER','RAJASTHAN'),(334303,'Kolayat','BIKANER','RAJASTHAN'),(334305,'Kolayat','BIKANER','RAJASTHAN'),(334401,'Bikaner','BIKANER','RAJASTHAN'),(334402,'Bikaner','BIKANER','RAJASTHAN'),(334403,'Bikaner','BIKANER','RAJASTHAN'),(334601,'Bikaner','BIKANER','RAJASTHAN'),(334602,'Lunkaransar','BIKANER','RAJASTHAN'),(334603,'Lunkaransar','BIKANER','RAJASTHAN'),(334604,'Lunkaransar','BIKANER','RAJASTHAN'),(334801,'Nokha','BIKANER','RAJASTHAN'),(334802,'Nokha','BIKANER','RAJASTHAN'),(334803,'Nokha','BIKANER','RAJASTHAN'),(334804,'Nokha','BIKANER','RAJASTHAN'),(334808,'Poogal','BIKANER','RAJASTHAN'),(335001,'Sadulshahar','GANGANAGAR','RAJASTHAN'),(380061,'Ghatlodia','Ahmedabad','Gujarat'),(380062,'Sharda','Mumbai','Maharastra'),(396375,'Valsad','VALSAD','GUJARAT'),(396380,'Gandevi','NAVSARI','GUJARAT'),(396385,'Valsad','VALSAD','GUJARAT'),(396403,'Jalalpore','NAVSARI','GUJARAT'),(396406,'Jalalpore','NAVSARI','GUJARAT'),(396409,'Gandevi','NAVSARI','GUJARAT'),(396412,'Jalalpore','NAVSARI','GUJARAT'),(396415,'Navsari','NAVSARI','GUJARAT'),(396418,'Navsari','NAVSARI','GUJARAT'),(396421,'Jalalpore','NAVSARI','GUJARAT'),(396424,'Navsari','NAVSARI','GUJARAT'),(396427,'Navsari','NAVSARI','GUJARAT'),(396430,'Gandevi','NAVSARI','GUJARAT'),(396433,'Navsari','NAVSARI','GUJARAT'),(396436,'Jalalpore','NAVSARI','GUJARAT'),(396439,'Jalalpore','NAVSARI','GUJARAT'),(396440,'Jalalpore','NAVSARI','GUJARAT'),(396445,'Navsari','NAVSARI','GUJARAT'),(396450,'Navsari','NAVSARI','GUJARAT'),(396460,'Jalalpore','NAVSARI','GUJARAT'),(396463,'Navsari','NAVSARI','GUJARAT'),(396466,'Navsari','NAVSARI','GUJARAT'),(396469,'Navsari','NAVSARI','GUJARAT'),(396472,'Jalalpore','NAVSARI','GUJARAT'),(396475,'Navsari','NAVSARI','GUJARAT'),(396510,'Mahuva','SURAT','GUJARAT'),(396521,'Chikhli','NAVSARI','GUJARAT'),(396530,'Chikhli','NAVSARI','GUJARAT'),(396540,'Chikhli','NAVSARI','GUJARAT'),(396560,'Chikhli','NAVSARI','GUJARAT'),(396570,'Bansda','NAVSARI','GUJARAT'),(396580,'Bansda','NAVSARI','GUJARAT'),(396590,'Bansda','NAVSARI','GUJARAT'),(400001,'Mumbai','MUMBAI','MAHARASHTRA'),(400002,'Mumbai','MUMBAI','MAHARASHTRA'),(400003,'Akola','AHMED NAGAR','MAHARASHTRA'),(400004,'Mumbai','MUMBAI','MAHARASHTRA'),(400005,'Mumbai','MUMBAI','MAHARASHTRA'),(400006,'Mumbai','MUMBAI','MAHARASHTRA'),(400007,'Mumbai','MUMBAI','MAHARASHTRA'),(400008,'Mumbai','MUMBAI','MAHARASHTRA'),(400009,'Mumbai','MUMBAI','MAHARASHTRA'),(400010,'Mumbai','MUMBAI','MAHARASHTRA'),(400011,'Mumbai','MUMBAI','MAHARASHTRA'),(400012,'Akola','AHMED NAGAR','MAHARASHTRA'),(400013,'Mumbai','MUMBAI','MAHARASHTRA'),(400014,'Mumbai','MUMBAI','MAHARASHTRA'),(400015,'Mumbai','MUMBAI','MAHARASHTRA'),(400016,'Mumbai','MUMBAI','MAHARASHTRA'),(400017,'Mumbai','MUMBAI','MAHARASHTRA'),(400018,'Mumbai','MUMBAI','MAHARASHTRA'),(400019,'Mumbai','MUMBAI','MAHARASHTRA'),(400020,'Mumbai','MUMBAI','MAHARASHTRA'),(400021,'Mumbai','MUMBAI','MAHARASHTRA'),(400022,'Mumbai','MUMBAI','MAHARASHTRA'),(400024,'Mumbai','MUMBAI','MAHARASHTRA'),(400025,'Mumbai','MUMBAI','MAHARASHTRA'),(400026,'Mumbai','MUMBAI','MAHARASHTRA'),(400027,'Mumbai','MUMBAI','MAHARASHTRA'),(400028,'Mumbai','MUMBAI','MAHARASHTRA'),(400029,'Mumbai','MUMBAI','MAHARASHTRA'),(400030,'Mumbai','MUMBAI','MAHARASHTRA'),(400031,'Mumbai','MUMBAI','MAHARASHTRA'),(400032,'Mumbai','MUMBAI','MAHARASHTRA'),(400033,'Aurangabad','AURANGABAD','MAHARASHTRA'),(400034,'Mumbai','MUMBAI','MAHARASHTRA'),(400035,'Mumbai','MUMBAI','MAHARASHTRA'),(400037,'Akola','AHMED NAGAR','MAHARASHTRA'),(400042,'Mumbai','MUMBAI','MAHARASHTRA'),(400043,'Mumbai','MUMBAI','MAHARASHTRA'),(400049,'Mumbai','MUMBAI','MAHARASHTRA'),(400050,'Mumbai','MUMBAI','MAHARASHTRA'),(400051,'Mumbai','MUMBAI','MAHARASHTRA'),(400052,'Mumbai','MUMBAI','MAHARASHTRA'),(400053,'Mumbai','MUMBAI','MAHARASHTRA'),(400054,'Mumbai','MUMBAI','MAHARASHTRA'),(400055,'Mumbai','MUMBAI','MAHARASHTRA'),(400056,'Mumbai','MUMBAI','MAHARASHTRA'),(400057,'Mumbai','MUMBAI','MAHARASHTRA'),(400058,'Mumbai','MUMBAI','MAHARASHTRA'),(400059,'Mumbai','MUMBAI','MAHARASHTRA'),(400060,'Mumbai','MUMBAI','MAHARASHTRA'),(400061,'Mumbai','MUMBAI','MAHARASHTRA'),(400063,'Mumbai','MUMBAI','MAHARASHTRA'),(400064,'Mumbai','MUMBAI','MAHARASHTRA'),(400065,'Mumbai','MUMBAI','MAHARASHTRA'),(400066,'Mumbai','MUMBAI','MAHARASHTRA'),(400067,'Mumbai','MUMBAI','MAHARASHTRA'),(400068,'Mumbai','MUMBAI','MAHARASHTRA'),(400069,'Mumbai','MUMBAI','MAHARASHTRA'),(400070,'Mumbai','MUMBAI','MAHARASHTRA'),(400071,'Mumbai','MUMBAI','MAHARASHTRA'),(400072,'Mumbai','MUMBAI','MAHARASHTRA'),(400074,'Mumbai','MUMBAI','MAHARASHTRA'),(400075,'Mumbai','MUMBAI','MAHARASHTRA'),(400076,'Mumbai','MUMBAI','MAHARASHTRA'),(400077,'Mumbai','MUMBAI','MAHARASHTRA'),(400078,'Mumbai','MUMBAI','MAHARASHTRA'),(400079,'Mumbai','MUMBAI','MAHARASHTRA'),(400080,'Mumbai','MUMBAI','MAHARASHTRA'),(400081,'Mumbai','MUMBAI','MAHARASHTRA'),(400082,'Mumbai','MUMBAI','MAHARASHTRA'),(400083,'Mumbai','MUMBAI','MAHARASHTRA'),(400084,'Mumbai','MUMBAI','MAHARASHTRA'),(400086,'Mumbai','MUMBAI','MAHARASHTRA'),(400087,'Mumbai','MUMBAI','MAHARASHTRA'),(400088,'Mumbai','MUMBAI','MAHARASHTRA'),(400089,'Mumbai','MUMBAI','MAHARASHTRA'),(400091,'Mumbai','MUMBAI','MAHARASHTRA'),(400092,'Mumbai','MUMBAI','MAHARASHTRA'),(400093,'Mumbai','MUMBAI','MAHARASHTRA'),(400094,'Mumbai','MUMBAI','MAHARASHTRA'),(400095,'Mumbai','MUMBAI','MAHARASHTRA'),(400096,'Mumbai','MUMBAI','MAHARASHTRA'),(400097,'Mumbai','MUMBAI','MAHARASHTRA'),(400098,'Mumbai','MUMBAI','MAHARASHTRA'),(400099,'Mumbai','MUMBAI','MAHARASHTRA'),(400101,'Mumbai','MUMBAI','MAHARASHTRA'),(400102,'Mumbai','MUMBAI','MAHARASHTRA'),(400103,'Mumbai','MUMBAI','MAHARASHTRA'),(400104,'Mumbai','MUMBAI','MAHARASHTRA'),(400601,'Thane','THANE','MAHARASHTRA'),(400602,'Thane','THANE','MAHARASHTRA'),(400603,'Thane','THANE','MAHARASHTRA'),(400604,'Thane','THANE','MAHARASHTRA'),(400605,'Thane','THANE','MAHARASHTRA'),(400606,'Thane','THANE','MAHARASHTRA'),(400607,'Thane','THANE','MAHARASHTRA'),(400608,'Thane','THANE','MAHARASHTRA'),(400610,'Thane','THANE','MAHARASHTRA'),(400612,'Thane','THANE','MAHARASHTRA'),(400614,'Thane','THANE','MAHARASHTRA'),(400615,'Thane','THANE','MAHARASHTRA'),(400701,'Thane','THANE','MAHARASHTRA'),(400702,'Uran','RAIGARH(MH)','MAHARASHTRA'),(400703,'Thane','THANE','MAHARASHTRA'),(400704,'Uran','RAIGARH(MH)','MAHARASHTRA'),(400706,'Thane','THANE','MAHARASHTRA'),(400707,'Uran','RAIGARH(MH)','MAHARASHTRA'),(400708,'Thane','THANE','MAHARASHTRA'),(400709,'Thane','THANE','MAHARASHTRA'),(400710,'Thane','THANE','MAHARASHTRA'),(401101,'Vasai','THANE','MAHARASHTRA'),(401102,'Palghar','THANE','MAHARASHTRA'),(401103,'Dahanu','THANE','MAHARASHTRA'),(401105,'Thane','THANE','MAHARASHTRA'),(401106,'Thane','THANE','MAHARASHTRA'),(401107,'Vasai','THANE','MAHARASHTRA'),(401201,'Vasai','THANE','MAHARASHTRA'),(401202,'Vasai','THANE','MAHARASHTRA'),(401203,'Vasai','THANE','MAHARASHTRA'),(401204,'Bhiwandi','THANE','MAHARASHTRA'),(401206,'Bhiwandi','THANE','MAHARASHTRA'),(401207,'Vasai','THANE','MAHARASHTRA'),(401208,'Vasai','THANE','MAHARASHTRA'),(401209,'Vasai','THANE','MAHARASHTRA'),(401301,'Vasai','THANE','MAHARASHTRA'),(401302,'Vasai','THANE','MAHARASHTRA'),(401303,'Vasai','THANE','MAHARASHTRA'),(401304,'Vasai','THANE','MAHARASHTRA'),(401305,'Vasai','THANE','MAHARASHTRA'),(401401,'Palghar','THANE','MAHARASHTRA'),(401402,'Palghar','THANE','MAHARASHTRA'),(401403,'Vikramgad','THANE','MAHARASHTRA'),(401404,'Palghar','THANE','MAHARASHTRA'),(401405,'Palghar','THANE','MAHARASHTRA'),(401501,'Dahanu','THANE','MAHARASHTRA'),(401502,'Palghar','THANE','MAHARASHTRA'),(401503,'Dahanu','THANE','MAHARASHTRA'),(401504,'Palghar','THANE','MAHARASHTRA'),(401506,'Palghar','THANE','MAHARASHTRA'),(401601,'Dahanu','THANE','MAHARASHTRA'),(401602,'Mokhada','THANE','MAHARASHTRA'),(401603,'Jawhar','THANE','MAHARASHTRA'),(401604,'Mokhada','THANE','MAHARASHTRA'),(401605,'Vikramgad','THANE','MAHARASHTRA'),(401606,'Talasari','THANE','MAHARASHTRA'),(401607,'Dahanu','THANE','MAHARASHTRA'),(401608,'Dahanu','THANE','MAHARASHTRA'),(401609,'Vikramgad','THANE','MAHARASHTRA'),(401610,'Dahanu','THANE','MAHARASHTRA'),(401701,'Talasari','THANE','MAHARASHTRA'),(401702,'Dahanu','THANE','MAHARASHTRA'),(401703,'Dahanu','THANE','MAHARASHTRA'),(402101,'Mhasla','RAIGARH(MH)','MAHARASHTRA'),(402102,'Mahad','RAIGARH(MH)','MAHARASHTRA'),(402103,'Mangaon','RAIGARH(MH)','MAHARASHTRA'),(402104,'Mangaon','RAIGARH(MH)','MAHARASHTRA'),(402105,'Mhasla','RAIGARH(MH)','MAHARASHTRA'),(402106,'Pen','RAIGARH(MH)','MAHARASHTRA'),(402107,'Pen','RAIGARH(MH)','MAHARASHTRA'),(402108,'Alibag','RAIGARH(MH)','MAHARASHTRA'),(402109,'Roha','RAIGARH(MH)','MAHARASHTRA'),(402110,'Shrivardhan','RAIGARH(MH)','MAHARASHTRA'),(402111,'Tala','RAIGARH(MH)','MAHARASHTRA'),(402112,'Mangaon','RAIGARH(MH)','MAHARASHTRA'),(402113,'Shrivardhan','RAIGARH(MH)','MAHARASHTRA'),(402114,'Shrivardhan','RAIGARH(MH)','MAHARASHTRA'),(402115,'Mahad','RAIGARH(MH)','MAHARASHTRA'),(402116,'Roha','RAIGARH(MH)','MAHARASHTRA'),(402117,'Mangaon','RAIGARH(MH)','MAHARASHTRA'),(402120,'Mangaon','RAIGARH(MH)','MAHARASHTRA'),(402122,'Mangaon','RAIGARH(MH)','MAHARASHTRA'),(402125,'Roha','RAIGARH(MH)','MAHARASHTRA'),(402126,'Roha','RAIGARH(MH)','MAHARASHTRA'),(402201,'Alibag','RAIGARH(MH)','MAHARASHTRA'),(402202,'Murud','RAIGARH(MH)','MAHARASHTRA'),(402203,'Alibag','RAIGARH(MH)','MAHARASHTRA'),(402204,'Alibag','RAIGARH(MH)','MAHARASHTRA'),(402207,'Alibag','RAIGARH(MH)','MAHARASHTRA'),(402208,'Alibag','RAIGARH(MH)','MAHARASHTRA'),(402209,'Alibag','RAIGARH(MH)','MAHARASHTRA'),(402301,'Mahad','RAIGARH(MH)','MAHARASHTRA'),(402302,'Mahad','RAIGARH(MH)','MAHARASHTRA'),(402303,'Poladpur','RAIGARH(MH)','MAHARASHTRA'),(402304,'Roha','RAIGARH(MH)','MAHARASHTRA'),(402305,'Mahad','RAIGARH(MH)','MAHARASHTRA'),(402306,'Mahad','RAIGARH(MH)','MAHARASHTRA'),(402307,'Mahad','RAIGARH(MH)','MAHARASHTRA'),(402308,'Roha','RAIGARH(MH)','MAHARASHTRA'),(402309,'Mahad','RAIGARH(MH)','MAHARASHTRA'),(402401,'Murud','RAIGARH(MH)','MAHARASHTRA'),(402402,'Shrivardhan','RAIGARH(MH)','MAHARASHTRA'),(402403,'Shrivardhan','RAIGARH(MH)','MAHARASHTRA'),(402404,'Shrivardhan','RAIGARH(MH)','MAHARASHTRA'),(403001,'Tiswadi','NORTH GOA','GOA'),(403002,'Tiswadi','NORTH GOA','GOA'),(403004,'Tiswadi','NORTH GOA','GOA'),(403005,'Tiswadi','NORTH GOA','GOA'),(403006,'Tiswadi','NORTH GOA','GOA'),(403101,'Bardez','NORTH GOA','GOA'),(403102,'Tiswadi','NORTH GOA','GOA'),(403103,'Ponda','NORTH GOA','GOA'),(403104,'Tiswadi','NORTH GOA','GOA'),(403105,'Satari','NORTH GOA','GOA'),(403106,'Tiswadi','NORTH GOA','GOA'),(403107,'Tiswadi','NORTH GOA','GOA'),(403108,'Tiswadi','NORTH GOA','GOA'),(403109,'Bardez','NORTH GOA','GOA'),(403110,'Tiswadi','NORTH GOA','GOA'),(403114,'Bardez','NORTH GOA','GOA'),(403115,'Sanguem','SOUTH GOA','GOA'),(403201,'Tiswadi','NORTH GOA','GOA'),(403202,'Tiswadi','NORTH GOA','GOA'),(403203,'Tiswadi','NORTH GOA','GOA'),(403204,'Ponda','NORTH GOA','GOA'),(403206,'Tiswadi','NORTH GOA','GOA'),(403401,'Ponda','NORTH GOA','GOA'),(403402,'Tiswadi','NORTH GOA','GOA'),(403403,'Tiswadi','NORTH GOA','GOA'),(403404,'Ponda','NORTH GOA','GOA'),(403406,'Ponda','NORTH GOA','GOA'),(403409,'Tiswadi','NORTH GOA','GOA'),(403410,'Sanguem','SOUTH GOA','GOA'),(403501,'Bardez','NORTH GOA','GOA'),(403502,'Bardez','NORTH GOA','GOA'),(403503,'Pernem','NORTH GOA','GOA'),(403504,'Bicholim','NORTH GOA','GOA'),(403505,'Bicholim','NORTH GOA','GOA'),(403506,'Satari','NORTH GOA','GOA'),(403507,'Bardez','NORTH GOA','GOA'),(403508,'Bardez','NORTH GOA','GOA'),(403509,'Bardez','NORTH GOA','GOA'),(403510,'Bardez','NORTH GOA','GOA'),(403511,'Bardez','NORTH GOA','GOA'),(403512,'Pernem','NORTH GOA','GOA'),(403513,'Bicholim','NORTH GOA','GOA'),(403515,'Bardez','NORTH GOA','GOA'),(403516,'Bardez','NORTH GOA','GOA'),(403517,'Pernem','NORTH GOA','GOA'),(403521,'Bardez','NORTH GOA','GOA'),(403523,'Bardez','NORTH GOA','GOA'),(403524,'Pernem','NORTH GOA','GOA'),(403526,'Bardez','NORTH GOA','GOA'),(403527,'Pernem','NORTH GOA','GOA'),(403529,'Bicholim','NORTH GOA','GOA'),(403530,'Satari','NORTH GOA','GOA'),(403601,'Salcete','SOUTH GOA','GOA'),(403602,'Salcete','SOUTH GOA','GOA'),(403701,'Salcete','SOUTH GOA','GOA'),(403702,'Canacona','SOUTH GOA','GOA'),(403703,'Quepem','SOUTH GOA','GOA'),(403704,'Sanguem','SOUTH GOA','GOA'),(403705,'Quepem','SOUTH GOA','GOA'),(403706,'Quepem','SOUTH GOA','GOA'),(403707,'Sanguem','SOUTH GOA','GOA'),(403708,'Salcete','SOUTH GOA','GOA'),(403709,'Salcete','SOUTH GOA','GOA'),(403710,'Mormugao','SOUTH GOA','GOA'),(403711,'Mormugao','SOUTH GOA','GOA'),(403712,'Mormugao','SOUTH GOA','GOA'),(403713,'Salcete','SOUTH GOA','GOA'),(403714,'Salcete','SOUTH GOA','GOA'),(403715,'Salcete','SOUTH GOA','GOA'),(403716,'Salcete','SOUTH GOA','GOA'),(403717,'Salcete','SOUTH GOA','GOA'),(403718,'Salcete','SOUTH GOA','GOA'),(403719,'Salcete','SOUTH GOA','GOA'),(403720,'Salcete','SOUTH GOA','GOA'),(403721,'Salcete','SOUTH GOA','GOA'),(403722,'Salcete','SOUTH GOA','GOA'),(403723,'Salcete','SOUTH GOA','GOA'),(403724,'Salcete','SOUTH GOA','GOA'),(403725,'Salcete','SOUTH GOA','GOA'),(403726,'Mormugao','SOUTH GOA','GOA'),(403728,'Salcete','SOUTH GOA','GOA'),(403729,'Salcete','SOUTH GOA','GOA'),(403731,'Salcete','SOUTH GOA','GOA'),(403801,'Mormugao','SOUTH GOA','GOA'),(403802,'Mormugao','SOUTH GOA','GOA'),(403803,'Mormugao','SOUTH GOA','GOA'),(403804,'Mormugao','SOUTH GOA','GOA'),(403806,'Mormugao','SOUTH GOA','GOA'),(410101,'Karjat','RAIGARH(MH)','MAHARASHTRA'),(410102,'Karjat','RAIGARH(MH)','MAHARASHTRA'),(410201,'Karjat','RAIGARH(MH)','MAHARASHTRA'),(410202,'Khalapur','RAIGARH(MH)','MAHARASHTRA'),(410203,'Khalapur','RAIGARH(MH)','MAHARASHTRA'),(410204,'Khalapur','RAIGARH(MH)','MAHARASHTRA'),(410205,'Sudhagad','RAIGARH(MH)','MAHARASHTRA'),(410206,'Khalapur','RAIGARH(MH)','MAHARASHTRA'),(410207,'Panvel','RAIGARH(MH)','MAHARASHTRA'),(410208,'Panvel','RAIGARH(MH)','MAHARASHTRA'),(410210,'Panvel','RAIGARH(MH)','MAHARASHTRA'),(410216,'Karjat','RAIGARH(MH)','MAHARASHTRA'),(410218,'Panvel','RAIGARH(MH)','MAHARASHTRA'),(410220,'Khalapur','RAIGARH(MH)','MAHARASHTRA'),(410221,'Panvel','RAIGARH(MH)','MAHARASHTRA'),(410222,'Khalapur','RAIGARH(MH)','MAHARASHTRA'),(410301,'Mawal','PUNE','MAHARASHTRA'),(410302,'Mawal','PUNE','MAHARASHTRA'),(410401,'Mulshi','PUNE','MAHARASHTRA'),(410402,'Mawal','PUNE','MAHARASHTRA'),(410403,'Mawal','PUNE','MAHARASHTRA'),(410405,'Mawal','PUNE','MAHARASHTRA'),(410406,'Mawal','PUNE','MAHARASHTRA'),(410501,'Khed','PUNE','MAHARASHTRA'),(410502,'Junnar','PUNE','MAHARASHTRA'),(410503,'Ambegaon','PUNE','MAHARASHTRA'),(410504,'Junnar','PUNE','MAHARASHTRA'),(410505,'Khed','PUNE','MAHARASHTRA'),(410506,'Mawal','PUNE','MAHARASHTRA'),(410507,'Mawal','PUNE','MAHARASHTRA'),(410508,'Ambegaon','PUNE','MAHARASHTRA'),(410509,'Ambegaon','PUNE','MAHARASHTRA'),(410510,'Ambegaon','PUNE','MAHARASHTRA'),(410511,'Junnar','PUNE','MAHARASHTRA'),(410512,'Ambegaon','PUNE','MAHARASHTRA'),(410513,'Khed','PUNE','MAHARASHTRA'),(410515,'Ambegaon','PUNE','MAHARASHTRA'),(410516,'Ambegaon','PUNE','MAHARASHTRA'),(411001,'Pune City','PUNE','MAHARASHTRA'),(411002,'Pune City','PUNE','MAHARASHTRA'),(411003,'Pune City','PUNE','MAHARASHTRA'),(411004,'Pune City','PUNE','MAHARASHTRA'),(411005,'Pune City','PUNE','MAHARASHTRA'),(411006,'Pune City','PUNE','MAHARASHTRA'),(411007,'Pune City','PUNE','MAHARASHTRA'),(411008,'Pune City','PUNE','MAHARASHTRA'),(411009,'Pune City','PUNE','MAHARASHTRA'),(411011,'Pune City','PUNE','MAHARASHTRA'),(411012,'Pune City','PUNE','MAHARASHTRA'),(411013,'Pune City','PUNE','MAHARASHTRA'),(411014,'Pune City','PUNE','MAHARASHTRA'),(411015,'Pune City','PUNE','MAHARASHTRA'),(411016,'Pune City','PUNE','MAHARASHTRA'),(411017,'Pune City','PUNE','MAHARASHTRA'),(411018,'Pune City','PUNE','MAHARASHTRA'),(411019,'Pune City','PUNE','MAHARASHTRA'),(411020,'Pune City','PUNE','MAHARASHTRA'),(411021,'Pune City','PUNE','MAHARASHTRA'),(411022,'Pune City','PUNE','MAHARASHTRA'),(411023,'Haveli','PUNE','MAHARASHTRA'),(411024,'Haveli','PUNE','MAHARASHTRA'),(411025,'Haveli','PUNE','MAHARASHTRA'),(411026,'Pune City','PUNE','MAHARASHTRA'),(411027,'Pune City','PUNE','MAHARASHTRA'),(411028,'Pune City','PUNE','MAHARASHTRA'),(411030,'Pune City','PUNE','MAHARASHTRA'),(411031,'Pune City','PUNE','MAHARASHTRA'),(411032,'Pune City','PUNE','MAHARASHTRA'),(411033,'Mulshi','PUNE','MAHARASHTRA'),(411034,'Pune City','PUNE','MAHARASHTRA'),(411035,'Pune City','PUNE','MAHARASHTRA'),(411037,'Pune City','PUNE','MAHARASHTRA'),(411038,'Pune City','PUNE','MAHARASHTRA'),(411039,'Pune City','PUNE','MAHARASHTRA'),(411040,'Pune City','PUNE','MAHARASHTRA'),(411041,'Pune City','PUNE','MAHARASHTRA'),(411042,'Pune City','PUNE','MAHARASHTRA'),(411043,'Pune City','PUNE','MAHARASHTRA'),(411044,'Pune City','PUNE','MAHARASHTRA'),(411045,'Haveli','PUNE','MAHARASHTRA'),(411046,'Pune City','PUNE','MAHARASHTRA'),(411047,'Pune City','PUNE','MAHARASHTRA'),(411048,'Pune City','PUNE','MAHARASHTRA'),(411051,'Pune City','PUNE','MAHARASHTRA'),(411052,'Pune City','PUNE','MAHARASHTRA'),(411057,'Mulshi','PUNE','MAHARASHTRA'),(411058,'Pune City','PUNE','MAHARASHTRA'),(411060,'Pune City','PUNE','MAHARASHTRA'),(411061,'Haveli','PUNE','MAHARASHTRA'),(412101,'Mawal','PUNE','MAHARASHTRA'),(412102,'Purandhar','PUNE','MAHARASHTRA'),(412103,'Baramati','PUNE','MAHARASHTRA'),(412104,'Purandhar','PUNE','MAHARASHTRA'),(412105,'Khed','PUNE','MAHARASHTRA'),(412106,'Mawal','PUNE','MAHARASHTRA'),(412107,'Velhe','PUNE','MAHARASHTRA'),(412108,'Mulshi','PUNE','MAHARASHTRA'),(412109,'Haveli','PUNE','MAHARASHTRA'),(412110,'Haveli','PUNE','MAHARASHTRA'),(412112,'Mulshi','PUNE','MAHARASHTRA'),(412115,'Mulshi','PUNE','MAHARASHTRA'),(412201,'Haveli','PUNE','MAHARASHTRA'),(412202,'Daund','PUNE','MAHARASHTRA'),(412203,'Daund','PUNE','MAHARASHTRA'),(412204,'Baramati','PUNE','MAHARASHTRA'),(412205,'Haveli','PUNE','MAHARASHTRA'),(412206,'Bhor','PUNE','MAHARASHTRA'),(412207,'Haveli','PUNE','MAHARASHTRA'),(412208,'Shirur','PUNE','MAHARASHTRA'),(412209,'Shirur','PUNE','MAHARASHTRA'),(412210,'Shirur','PUNE','MAHARASHTRA'),(412211,'Shirur','PUNE','MAHARASHTRA'),(412212,'Velhe','PUNE','MAHARASHTRA'),(412213,'Velhe','PUNE','MAHARASHTRA'),(412214,'Daund','PUNE','MAHARASHTRA'),(412215,'Daund','PUNE','MAHARASHTRA'),(412216,'Shirur','PUNE','MAHARASHTRA'),(412218,'Shirur','PUNE','MAHARASHTRA'),(412219,'Daund','PUNE','MAHARASHTRA'),(412220,'Shirur','PUNE','MAHARASHTRA'),(412301,'Purandhar','PUNE','MAHARASHTRA'),(412303,'Purandhar','PUNE','MAHARASHTRA'),(412304,'Baramati','PUNE','MAHARASHTRA'),(412305,'Purandhar','PUNE','MAHARASHTRA'),(412306,'Baramati','PUNE','MAHARASHTRA'),(412307,'Haveli','PUNE','MAHARASHTRA'),(412308,'Haveli','PUNE','MAHARASHTRA'),(412311,'Purandhar','PUNE','MAHARASHTRA'),(412312,'Purandhar','PUNE','MAHARASHTRA'),(412401,'Junnar','PUNE','MAHARASHTRA'),(412402,'Khed','PUNE','MAHARASHTRA'),(412403,'Shirur','PUNE','MAHARASHTRA'),(412404,'Khed','PUNE','MAHARASHTRA'),(412405,'Ambegaon','PUNE','MAHARASHTRA'),(412406,'Ambegaon','PUNE','MAHARASHTRA'),(412408,'Ambegaon','PUNE','MAHARASHTRA'),(412409,'Junnar','PUNE','MAHARASHTRA'),(412410,'Junnar','PUNE','MAHARASHTRA'),(412411,'Junnar','PUNE','MAHARASHTRA'),(412412,'Junnar','PUNE','MAHARASHTRA'),(412801,'Khandala','SATARA','MAHARASHTRA'),(412802,'Khandala','SATARA','MAHARASHTRA'),(412803,'Wai','SATARA','MAHARASHTRA'),(412804,'Wai','SATARA','MAHARASHTRA'),(412805,'Mahabaleshwar','SATARA','MAHARASHTRA'),(412806,'Jaoli','SATARA','MAHARASHTRA'),(413001,'Solapur South','SOLAPUR','MAHARASHTRA'),(413002,'Akkalkot','SOLAPUR','MAHARASHTRA'),(413003,'Solapur North','SOLAPUR','MAHARASHTRA'),(413004,'Solapur South','SOLAPUR','MAHARASHTRA'),(413005,'Solapur North','SOLAPUR','MAHARASHTRA'),(413006,'Akkalkot','SOLAPUR','MAHARASHTRA'),(413007,'Solapur North','SOLAPUR','MAHARASHTRA'),(413008,'Solapur South','SOLAPUR','MAHARASHTRA'),(413101,'Malshiras','SOLAPUR','MAHARASHTRA'),(413102,'Baramati','PUNE','MAHARASHTRA'),(413103,'Indapur','PUNE','MAHARASHTRA'),(413104,'Indapur','PUNE','MAHARASHTRA'),(413105,'Daund','PUNE','MAHARASHTRA'),(413106,'Indapur','PUNE','MAHARASHTRA'),(413107,'Malshiras','SOLAPUR','MAHARASHTRA'),(413108,'Malshiras','SOLAPUR','MAHARASHTRA'),(413109,'Malshiras','SOLAPUR','MAHARASHTRA'),(413110,'Baramati','PUNE','MAHARASHTRA'),(413111,'Malshiras','SOLAPUR','MAHARASHTRA'),(413112,'Malshiras','SOLAPUR','MAHARASHTRA'),(413113,'Malshiras','SOLAPUR','MAHARASHTRA'),(413114,'Indapur','PUNE','MAHARASHTRA'),(413115,'Baramati','PUNE','MAHARASHTRA'),(413116,'Baramati','PUNE','MAHARASHTRA'),(413118,'Malshiras','SOLAPUR','MAHARASHTRA'),(413120,'Indapur','PUNE','MAHARASHTRA'),(413130,'Daund','PUNE','MAHARASHTRA'),(413132,'Indapur','PUNE','MAHARASHTRA'),(413133,'Baramati','PUNE','MAHARASHTRA'),(413201,'Jamkhed','AHMED NAGAR','MAHARASHTRA'),(413202,'Karmala','SOLAPUR','MAHARASHTRA'),(413203,'Karmala','SOLAPUR','MAHARASHTRA'),(413204,'Jamkhed','AHMED NAGAR','MAHARASHTRA'),(413205,'Jamkhed','AHMED NAGAR','MAHARASHTRA'),(413206,'Karmala','SOLAPUR','MAHARASHTRA'),(413207,'Ashti','BEED','MAHARASHTRA'),(413208,'Madha','SOLAPUR','MAHARASHTRA'),(413209,'Madha','SOLAPUR','MAHARASHTRA'),(413210,'Madha','SOLAPUR','MAHARASHTRA'),(413211,'Madha','SOLAPUR','MAHARASHTRA'),(413212,'Madha','SOLAPUR','MAHARASHTRA'),(413213,'Mohol','SOLAPUR','MAHARASHTRA'),(413214,'Mohol','SOLAPUR','MAHARASHTRA'),(413215,'Solapur South','SOLAPUR','MAHARASHTRA'),(413216,'Akkalkot','SOLAPUR','MAHARASHTRA'),(413217,'Akkalkot','SOLAPUR','MAHARASHTRA'),(413218,'Akkalkot','SOLAPUR','MAHARASHTRA'),(413219,'Akkalkot','SOLAPUR','MAHARASHTRA'),(413220,'Akkalkot','SOLAPUR','MAHARASHTRA'),(413221,'Solapur South','SOLAPUR','MAHARASHTRA'),(413222,'Solapur North','SOLAPUR','MAHARASHTRA'),(413223,'Karmala','SOLAPUR','MAHARASHTRA'),(413224,'Solapur South','SOLAPUR','MAHARASHTRA'),(413226,'Akkalkot','SOLAPUR','MAHARASHTRA'),(413227,'Akkalkot','SOLAPUR','MAHARASHTRA'),(413228,'Solapur South','SOLAPUR','MAHARASHTRA'),(413229,'Patoda','BEED','MAHARASHTRA'),(413248,'Mohol','SOLAPUR','MAHARASHTRA'),(413249,'Shirur (Kasar)','BEED','MAHARASHTRA'),(413250,'Madha','SOLAPUR','MAHARASHTRA'),(413251,'Karmala','SOLAPUR','MAHARASHTRA'),(413252,'Madha','SOLAPUR','MAHARASHTRA'),(413253,'Mohol','SOLAPUR','MAHARASHTRA'),(413255,'Solapur North','SOLAPUR','MAHARASHTRA'),(413301,'Madha','SOLAPUR','MAHARASHTRA'),(413302,'Pandharpur','SOLAPUR','MAHARASHTRA'),(413303,'Mohol','SOLAPUR','MAHARASHTRA'),(413304,'Pandharpur','SOLAPUR','MAHARASHTRA'),(413305,'Mangalvedhe','SOLAPUR','MAHARASHTRA'),(413306,'Sangole','SOLAPUR','MAHARASHTRA'),(413307,'Sangole','SOLAPUR','MAHARASHTRA'),(413308,'Sangole','SOLAPUR','MAHARASHTRA'),(413309,'Sangole','SOLAPUR','MAHARASHTRA'),(413310,'Malshiras','SOLAPUR','MAHARASHTRA'),(413314,'Sangole','SOLAPUR','MAHARASHTRA'),(413315,'Pandharpur','SOLAPUR','MAHARASHTRA'),(413317,'Sangole','SOLAPUR','MAHARASHTRA'),(413319,'Mangalvedhe','SOLAPUR','MAHARASHTRA'),(413322,'Mangalvedhe','SOLAPUR','MAHARASHTRA'),(413324,'Mohol','SOLAPUR','MAHARASHTRA'),(413401,'Barshi','SOLAPUR','MAHARASHTRA'),(413402,'Barshi','SOLAPUR','MAHARASHTRA'),(413403,'Barshi','SOLAPUR','MAHARASHTRA'),(413404,'Barshi','SOLAPUR','MAHARASHTRA'),(413405,'Osmanabad','OSMANABAD','MAHARASHTRA'),(413406,'Barshi','SOLAPUR','MAHARASHTRA'),(413409,'Barshi','SOLAPUR','MAHARASHTRA'),(413410,'Madha','SOLAPUR','MAHARASHTRA'),(413411,'Barshi','SOLAPUR','MAHARASHTRA'),(413412,'Barshi','SOLAPUR','MAHARASHTRA'),(413501,'Osmanabad','OSMANABAD','MAHARASHTRA'),(413502,'Paranda','OSMANABAD','MAHARASHTRA'),(413503,'Washi','OSMANABAD','MAHARASHTRA'),(413504,'Paranda','OSMANABAD','MAHARASHTRA'),(413505,'Paranda','OSMANABAD','MAHARASHTRA'),(413506,'Osmanabad','OSMANABAD','MAHARASHTRA'),(413507,'Kalamb','OSMANABAD','MAHARASHTRA'),(413508,'Osmanabad','OSMANABAD','MAHARASHTRA'),(413509,'Osmanabad','OSMANABAD','MAHARASHTRA'),(413510,'Latur','LATUR','MAHARASHTRA'),(413511,'Ausa','LATUR','MAHARASHTRA'),(413512,'Latur','LATUR','MAHARASHTRA'),(413513,'Chakur','LATUR','MAHARASHTRA'),(413514,'Ahmadpur','LATUR','MAHARASHTRA'),(413515,'Ahmadpur','LATUR','MAHARASHTRA'),(413516,'Renapur','LATUR','MAHARASHTRA'),(413517,'Udgir','LATUR','MAHARASHTRA'),(413518,'Udgir','LATUR','MAHARASHTRA'),(413519,'Deoni','LATUR','MAHARASHTRA'),(413520,'Ausa','LATUR','MAHARASHTRA'),(413521,'Nilanga','LATUR','MAHARASHTRA'),(413522,'Nilanga','LATUR','MAHARASHTRA'),(413523,'Jalkot','LATUR','MAHARASHTRA'),(413524,'Chakur','LATUR','MAHARASHTRA'),(413525,'Kalamb','OSMANABAD','MAHARASHTRA'),(413526,'Washi','OSMANABAD','MAHARASHTRA'),(413527,'Renapur','LATUR','MAHARASHTRA'),(413528,'Kalamb','OSMANABAD','MAHARASHTRA'),(413529,'Chakur','LATUR','MAHARASHTRA'),(413530,'Nilanga','LATUR','MAHARASHTRA'),(413531,'Latur','LATUR','MAHARASHTRA'),(413532,'Jalkot','LATUR','MAHARASHTRA'),(413534,'Bhum','OSMANABAD','MAHARASHTRA'),(413544,'Ahmadpur','LATUR','MAHARASHTRA'),(413581,'Chakur','LATUR','MAHARASHTRA'),(413582,'Osmanabad','OSMANABAD','MAHARASHTRA'),(413601,'Tuljapur','OSMANABAD','MAHARASHTRA'),(413602,'Lohara','OSMANABAD','MAHARASHTRA'),(413603,'Tuljapur','OSMANABAD','MAHARASHTRA'),(413604,'Umarga','OSMANABAD','MAHARASHTRA'),(413605,'Umarga','OSMANABAD','MAHARASHTRA'),(413606,'Umarga','OSMANABAD','MAHARASHTRA'),(413607,'Nilanga','LATUR','MAHARASHTRA'),(413608,'Lohara','OSMANABAD','MAHARASHTRA'),(413623,'Tuljapur','OSMANABAD','MAHARASHTRA'),(413624,'Tuljapur','OSMANABAD','MAHARASHTRA'),(413701,'Shrigonda','AHMED NAGAR','MAHARASHTRA'),(413702,'Shrigonda','AHMED NAGAR','MAHARASHTRA'),(413703,'Shrigonda','AHMED NAGAR','MAHARASHTRA'),(413704,'Rahuri','AHMED NAGAR','MAHARASHTRA'),(413705,'Rahuri','AHMED NAGAR','MAHARASHTRA'),(413706,'Rahuri','AHMED NAGAR','MAHARASHTRA'),(413707,'Shrirampur','AHMED NAGAR','MAHARASHTRA'),(413708,'Rahta','AHMED NAGAR','MAHARASHTRA'),(413709,'Shrirampur','AHMED NAGAR','MAHARASHTRA'),(413710,'Rahta','AHMED NAGAR','MAHARASHTRA'),(413711,'Rahuri','AHMED NAGAR','MAHARASHTRA'),(413712,'Rahta','AHMED NAGAR','MAHARASHTRA'),(413713,'Rahta','AHMED NAGAR','MAHARASHTRA'),(413714,'Sangamner','AHMED NAGAR','MAHARASHTRA'),(413715,'Shrirampur','AHMED NAGAR','MAHARASHTRA'),(413716,'Rahuri','AHMED NAGAR','MAHARASHTRA'),(413717,'Shrirampur','AHMED NAGAR','MAHARASHTRA'),(413718,'Shrirampur','AHMED NAGAR','MAHARASHTRA'),(413719,'Rahta','AHMED NAGAR','MAHARASHTRA'),(413720,'Shrirampur','AHMED NAGAR','MAHARASHTRA'),(413721,'Rahuri','AHMED NAGAR','MAHARASHTRA'),(413722,'Rahuri','AHMED NAGAR','MAHARASHTRA'),(413723,'Rahta','AHMED NAGAR','MAHARASHTRA'),(413725,'Shrirampur','AHMED NAGAR','MAHARASHTRA'),(413726,'Shrigonda','AHMED NAGAR','MAHARASHTRA'),(413728,'Shrigonda','AHMED NAGAR','MAHARASHTRA'),(413736,'Rahta','AHMED NAGAR','MAHARASHTRA'),(413737,'Rahta','AHMED NAGAR','MAHARASHTRA'),(413738,'Sangamner','AHMED NAGAR','MAHARASHTRA'),(413739,'Shrirampur','AHMED NAGAR','MAHARASHTRA'),(413801,'Daund','PUNE','MAHARASHTRA'),(413802,'Daund','PUNE','MAHARASHTRA'),(414001,'Nagar','AHMED NAGAR','MAHARASHTRA'),(414002,'Nagar','AHMED NAGAR','MAHARASHTRA'),(414003,'Nagar','AHMED NAGAR','MAHARASHTRA'),(414005,'Nagar','AHMED NAGAR','MAHARASHTRA'),(414006,'Nagar','AHMED NAGAR','MAHARASHTRA'),(414101,'Shrigonda','AHMED NAGAR','MAHARASHTRA'),(414102,'Pathardi','AHMED NAGAR','MAHARASHTRA'),(414103,'Parner','AHMED NAGAR','MAHARASHTRA'),(414105,'Nevasa','AHMED NAGAR','MAHARASHTRA'),(414106,'Pathardi','AHMED NAGAR','MAHARASHTRA'),(414110,'Nagar','AHMED NAGAR','MAHARASHTRA'),(414111,'Nagar','AHMED NAGAR','MAHARASHTRA'),(414113,'Pathardi','AHMED NAGAR','MAHARASHTRA'),(414201,'Nagar','AHMED NAGAR','MAHARASHTRA'),(414202,'Ashti','BEED','MAHARASHTRA'),(414203,'Patoda','BEED','MAHARASHTRA'),(414204,'Patoda','BEED','MAHARASHTRA'),(414205,'Georai','BEED','MAHARASHTRA'),(414208,'Ashti','BEED','MAHARASHTRA'),(414301,'Parner','AHMED NAGAR','MAHARASHTRA'),(414302,'Parner','AHMED NAGAR','MAHARASHTRA'),(414303,'Parner','AHMED NAGAR','MAHARASHTRA'),(414304,'Parner','AHMED NAGAR','MAHARASHTRA'),(414305,'Parner','AHMED NAGAR','MAHARASHTRA'),(414306,'Parner','AHMED NAGAR','MAHARASHTRA'),(414401,'Karjat','AHMED NAGAR','MAHARASHTRA'),(414402,'Karjat','AHMED NAGAR','MAHARASHTRA'),(414403,'Karjat','AHMED NAGAR','MAHARASHTRA'),(414501,'Shevgaon','AHMED NAGAR','MAHARASHTRA'),(414502,'Shevgaon','AHMED NAGAR','MAHARASHTRA'),(414503,'Shevgaon','AHMED NAGAR','MAHARASHTRA'),(414504,'Shevgaon','AHMED NAGAR','MAHARASHTRA'),(414505,'Pathardi','AHMED NAGAR','MAHARASHTRA'),(414601,'Nagar','AHMED NAGAR','MAHARASHTRA'),(414602,'Nevasa','AHMED NAGAR','MAHARASHTRA'),(414603,'Nevasa','AHMED NAGAR','MAHARASHTRA'),(414604,'Nevasa','AHMED NAGAR','MAHARASHTRA'),(414605,'Nevasa','AHMED NAGAR','MAHARASHTRA'),(414606,'Nevasa','AHMED NAGAR','MAHARASHTRA'),(414607,'Nevasa','AHMED NAGAR','MAHARASHTRA'),(414609,'Nevasa','AHMED NAGAR','MAHARASHTRA'),(414701,'Shrigonda','AHMED NAGAR','MAHARASHTRA'),(415001,'Satara','SATARA','MAHARASHTRA'),(415002,'Jaoli','SATARA','MAHARASHTRA'),(415003,'Satara','SATARA','MAHARASHTRA'),(415004,'Satara','SATARA','MAHARASHTRA'),(415010,'Koregaon','SATARA','MAHARASHTRA'),(415011,'Satara','SATARA','MAHARASHTRA'),(415012,'Jaoli','SATARA','MAHARASHTRA'),(415013,'Satara','SATARA','MAHARASHTRA'),(415014,'Patan','SATARA','MAHARASHTRA'),(415015,'Satara','SATARA','MAHARASHTRA'),(415019,'Satara','SATARA','MAHARASHTRA'),(415020,'Jaoli','SATARA','MAHARASHTRA'),(415021,'Koregaon','SATARA','MAHARASHTRA'),(415022,'Satara','SATARA','MAHARASHTRA'),(415023,'Man','SATARA','MAHARASHTRA'),(415101,'Shahuwadi','KOLHAPUR','MAHARASHTRA'),(415102,'Khatav','SATARA','MAHARASHTRA'),(415103,'Patan','SATARA','MAHARASHTRA'),(415104,'Karad','SATARA','MAHARASHTRA'),(415105,'Karad','SATARA','MAHARASHTRA'),(415106,'Karad','SATARA','MAHARASHTRA'),(415107,'Satara','SATARA','MAHARASHTRA'),(415108,'Karad','SATARA','MAHARASHTRA'),(415109,'Karad','SATARA','MAHARASHTRA'),(415110,'Karad','SATARA','MAHARASHTRA'),(415111,'Karad','SATARA','MAHARASHTRA'),(415112,'Patan','SATARA','MAHARASHTRA'),(415114,'Karad','SATARA','MAHARASHTRA'),(415115,'Karad','SATARA','MAHARASHTRA'),(415116,'Koregaon','SATARA','MAHARASHTRA'),(415122,'Karad','SATARA','MAHARASHTRA'),(415124,'Karad','SATARA','MAHARASHTRA'),(415202,'Mandangad','RATNAGIRI','MAHARASHTRA'),(415203,'Mandangad','RATNAGIRI','MAHARASHTRA'),(415205,'Patan','SATARA','MAHARASHTRA'),(415206,'Patan','SATARA','MAHARASHTRA'),(415207,'Patan','SATARA','MAHARASHTRA'),(415208,'Mandangad','RATNAGIRI','MAHARASHTRA'),(415209,'Patan','SATARA','MAHARASHTRA'),(415211,'Patan','SATARA','MAHARASHTRA'),(415212,'Patan','SATARA','MAHARASHTRA'),(415213,'Mahad','RAIGARH(MH)','MAHARASHTRA'),(415214,'Mandangad','RATNAGIRI','MAHARASHTRA'),(415301,'Atpadi','SANGLI','MAHARASHTRA'),(415302,'Walwa','SANGLI','MAHARASHTRA'),(415303,'Khanapur','SANGLI','MAHARASHTRA'),(415304,'Khanapur','SANGLI','MAHARASHTRA'),(415305,'Khanapur','SANGLI','MAHARASHTRA'),(415306,'Atpadi','SANGLI','MAHARASHTRA'),(415307,'Khanapur','SANGLI','MAHARASHTRA'),(415308,'Atpadi','SANGLI','MAHARASHTRA'),(415309,'Khanapur','SANGLI','MAHARASHTRA'),(415310,'Khanapur','SANGLI','MAHARASHTRA'),(415311,'Khanapur','SANGLI','MAHARASHTRA'),(415312,'Khatav','SATARA','MAHARASHTRA'),(415313,'Walwa','SANGLI','MAHARASHTRA'),(415315,'Atpadi','SANGLI','MAHARASHTRA'),(415401,'Walwa','SANGLI','MAHARASHTRA'),(415402,'Shirala','SANGLI','MAHARASHTRA'),(415403,'Walwa','SANGLI','MAHARASHTRA'),(415404,'Walwa','SANGLI','MAHARASHTRA'),(415405,'Shirala','SANGLI','MAHARASHTRA'),(415406,'Walwa','SANGLI','MAHARASHTRA'),(415407,'Shirala','SANGLI','MAHARASHTRA'),(415408,'Shirala','SANGLI','MAHARASHTRA'),(415409,'Walwa','SANGLI','MAHARASHTRA'),(415410,'Palus','SANGLI','MAHARASHTRA'),(415411,'Walwa','SANGLI','MAHARASHTRA'),(415412,'Walwa','SANGLI','MAHARASHTRA'),(415413,'Walwa','SANGLI','MAHARASHTRA'),(415414,'Shirala','SANGLI','MAHARASHTRA'),(415415,'Shirala','SANGLI','MAHARASHTRA'),(415501,'Koregaon','SATARA','MAHARASHTRA'),(415502,'Khatav','SATARA','MAHARASHTRA'),(415503,'Man','SATARA','MAHARASHTRA'),(415504,'Khatav','SATARA','MAHARASHTRA'),(415505,'Khatav','SATARA','MAHARASHTRA'),(415506,'Khatav','SATARA','MAHARASHTRA'),(415507,'Khatav','SATARA','MAHARASHTRA'),(415508,'Man','SATARA','MAHARASHTRA'),(415509,'Man','SATARA','MAHARASHTRA'),(415510,'Khatav','SATARA','MAHARASHTRA'),(415511,'Koregaon','SATARA','MAHARASHTRA'),(415512,'Khatav','SATARA','MAHARASHTRA'),(415513,'Wai','SATARA','MAHARASHTRA'),(415514,'Jaoli','SATARA','MAHARASHTRA'),(415515,'Wai','SATARA','MAHARASHTRA'),(415516,'Wai','SATARA','MAHARASHTRA'),(415517,'Wai','SATARA','MAHARASHTRA'),(415518,'Satara','SATARA','MAHARASHTRA'),(415519,'Satara','SATARA','MAHARASHTRA'),(415520,'Patan','SATARA','MAHARASHTRA'),(415521,'Phaltan','SATARA','MAHARASHTRA'),(415522,'Phaltan','SATARA','MAHARASHTRA'),(415523,'Phaltan','SATARA','MAHARASHTRA'),(415524,'Koregaon','SATARA','MAHARASHTRA'),(415525,'Koregaon','SATARA','MAHARASHTRA'),(415526,'Khandala','SATARA','MAHARASHTRA'),(415527,'Khatav','SATARA','MAHARASHTRA'),(415528,'Phaltan','SATARA','MAHARASHTRA'),(415530,'Wai','SATARA','MAHARASHTRA'),(415536,'Wai','SATARA','MAHARASHTRA'),(415537,'Phaltan','SATARA','MAHARASHTRA'),(415538,'Khatav','SATARA','MAHARASHTRA'),(415539,'Karad','SATARA','MAHARASHTRA'),(415540,'Man','SATARA','MAHARASHTRA'),(415601,'Chiplun','RATNAGIRI','MAHARASHTRA'),(415602,'Chiplun','RATNAGIRI','MAHARASHTRA'),(415603,'Chiplun','RATNAGIRI','MAHARASHTRA'),(415604,'Chiplun','RATNAGIRI','MAHARASHTRA'),(415605,'Chiplun','RATNAGIRI','MAHARASHTRA'),(415606,'Chiplun','RATNAGIRI','MAHARASHTRA'),(415607,'Chiplun','RATNAGIRI','MAHARASHTRA'),(415608,'Chiplun','RATNAGIRI','MAHARASHTRA'),(415609,'Sangameshwar','RATNAGIRI','MAHARASHTRA'),(415610,'Sangameshwar','RATNAGIRI','MAHARASHTRA'),(415611,'Sangameshwar','RATNAGIRI','MAHARASHTRA'),(415612,'Ratnagiri','RATNAGIRI','MAHARASHTRA'),(415613,'Guhagar','RATNAGIRI','MAHARASHTRA'),(415614,'Ratnagiri','RATNAGIRI','MAHARASHTRA'),(415615,'Ratnagiri','RATNAGIRI','MAHARASHTRA'),(415616,'Ratnagiri','RATNAGIRI','MAHARASHTRA'),(415617,'Ratnagiri','RATNAGIRI','MAHARASHTRA'),(415619,'Ratnagiri','RATNAGIRI','MAHARASHTRA'),(415620,'Ratnagiri','RATNAGIRI','MAHARASHTRA'),(415621,'Khed','RATNAGIRI','MAHARASHTRA'),(415626,'Ratnagiri','RATNAGIRI','MAHARASHTRA'),(415628,'Chiplun','RATNAGIRI','MAHARASHTRA'),(415629,'Ratnagiri','RATNAGIRI','MAHARASHTRA'),(415634,'Guhagar','RATNAGIRI','MAHARASHTRA'),(415637,'Sangameshwar','RATNAGIRI','MAHARASHTRA'),(415639,'Ratnagiri','RATNAGIRI','MAHARASHTRA'),(415640,'Khed','RATNAGIRI','MAHARASHTRA'),(415641,'Chiplun','RATNAGIRI','MAHARASHTRA'),(415643,'Lanja','RATNAGIRI','MAHARASHTRA'),(415701,'Chiplun','RATNAGIRI','MAHARASHTRA'),(415702,'Guhagar','RATNAGIRI','MAHARASHTRA'),(415703,'Guhagar','RATNAGIRI','MAHARASHTRA'),(415705,'Guhagar','RATNAGIRI','MAHARASHTRA'),(415706,'Dapoli','RATNAGIRI','MAHARASHTRA'),(415708,'Khed','RATNAGIRI','MAHARASHTRA'),(415709,'Khed','RATNAGIRI','MAHARASHTRA'),(415710,'Khed','RATNAGIRI','MAHARASHTRA'),(415711,'Dapoli','RATNAGIRI','MAHARASHTRA'),(415712,'Dapoli','RATNAGIRI','MAHARASHTRA'),(415713,'Guhagar','RATNAGIRI','MAHARASHTRA'),(415714,'Dapoli','RATNAGIRI','MAHARASHTRA'),(415715,'Jaoli','SATARA','MAHARASHTRA'),(415716,'Dapoli','RATNAGIRI','MAHARASHTRA'),(415717,'Dapoli','RATNAGIRI','MAHARASHTRA'),(415718,'Khed','RATNAGIRI','MAHARASHTRA'),(415719,'Guhagar','RATNAGIRI','MAHARASHTRA'),(415720,'Dapoli','RATNAGIRI','MAHARASHTRA'),(415722,'Khed','RATNAGIRI','MAHARASHTRA'),(415724,'Guhagar','RATNAGIRI','MAHARASHTRA'),(415726,'Guhagar','RATNAGIRI','MAHARASHTRA'),(415727,'Khed','RATNAGIRI','MAHARASHTRA'),(415728,'Guhagar','RATNAGIRI','MAHARASHTRA'),(415729,'Guhagar','RATNAGIRI','MAHARASHTRA'),(415730,'Khed','RATNAGIRI','MAHARASHTRA'),(415801,'Sangameshwar','RATNAGIRI','MAHARASHTRA'),(415802,'Lanja','RATNAGIRI','MAHARASHTRA'),(415803,'Lanja','RATNAGIRI','MAHARASHTRA'),(415804,'Chiplun','RATNAGIRI','MAHARASHTRA'),(415805,'Rajapur','RATNAGIRI','MAHARASHTRA'),(415806,'Rajapur','RATNAGIRI','MAHARASHTRA'),(415807,'Chiplun','RATNAGIRI','MAHARASHTRA'),(416001,'Karvir','KOLHAPUR','MAHARASHTRA'),(416002,'Karvir','KOLHAPUR','MAHARASHTRA'),(416003,'Karvir','KOLHAPUR','MAHARASHTRA'),(416004,'Karvir','KOLHAPUR','MAHARASHTRA'),(416005,'Karvir','KOLHAPUR','MAHARASHTRA'),(416006,'Karvir','KOLHAPUR','MAHARASHTRA'),(416007,'Shahuwadi','KOLHAPUR','MAHARASHTRA'),(416008,'Karvir','KOLHAPUR','MAHARASHTRA'),(416010,'Karvir','KOLHAPUR','MAHARASHTRA'),(416011,'Karvir','KOLHAPUR','MAHARASHTRA'),(416012,'Karvir','KOLHAPUR','MAHARASHTRA'),(416013,'Karvir','KOLHAPUR','MAHARASHTRA'),(416101,'Shirol','KOLHAPUR','MAHARASHTRA'),(416102,'Shirol','KOLHAPUR','MAHARASHTRA'),(416103,'Shirol','KOLHAPUR','MAHARASHTRA'),(416104,'Shirol','KOLHAPUR','MAHARASHTRA'),(416105,'Shirol','KOLHAPUR','MAHARASHTRA'),(416106,'Shirol','KOLHAPUR','MAHARASHTRA'),(416107,'Shirol','KOLHAPUR','MAHARASHTRA'),(416108,'Shirol','KOLHAPUR','MAHARASHTRA'),(416109,'Radhanagari','KOLHAPUR','MAHARASHTRA'),(416110,'Hatkanangle','KOLHAPUR','MAHARASHTRA'),(416111,'Hatkanangle','KOLHAPUR','MAHARASHTRA'),(416112,'Hatkanangle','KOLHAPUR','MAHARASHTRA'),(416113,'Panhala','KOLHAPUR','MAHARASHTRA'),(416114,'Chandgad','KOLHAPUR','MAHARASHTRA'),(416115,'Hatkanangle','KOLHAPUR','MAHARASHTRA'),(416116,'Hatkanangle','KOLHAPUR','MAHARASHTRA'),(416118,'Hatkanangle','KOLHAPUR','MAHARASHTRA'),(416119,'Karvir','KOLHAPUR','MAHARASHTRA'),(416120,'Shirol','KOLHAPUR','MAHARASHTRA'),(416121,'Shirol','KOLHAPUR','MAHARASHTRA'),(416122,'Hatkanangle','KOLHAPUR','MAHARASHTRA'),(416138,'Hatkanangle','KOLHAPUR','MAHARASHTRA'),(416143,'Shirol','KOLHAPUR','MAHARASHTRA'),(416144,'Shirol','KOLHAPUR','MAHARASHTRA'),(416146,'Hatkanangle','KOLHAPUR','MAHARASHTRA'),(416201,'Panhala','KOLHAPUR','MAHARASHTRA'),(416202,'Karvir','KOLHAPUR','MAHARASHTRA'),(416203,'Hatkanangle','KOLHAPUR','MAHARASHTRA'),(416204,'Karvir','KOLHAPUR','MAHARASHTRA'),(416205,'Panhala','KOLHAPUR','MAHARASHTRA'),(416206,'Bavda','KOLHAPUR','MAHARASHTRA'),(416207,'Karvir','KOLHAPUR','MAHARASHTRA'),(416208,'Kagal','KOLHAPUR','MAHARASHTRA'),(416209,'Bhudargad','KOLHAPUR','MAHARASHTRA'),(416210,'Bhudargad','KOLHAPUR','MAHARASHTRA'),(416211,'Radhanagari','KOLHAPUR','MAHARASHTRA'),(416212,'Radhanagari','KOLHAPUR','MAHARASHTRA'),(416213,'Panhala','KOLHAPUR','MAHARASHTRA'),(416214,'Kagal','KOLHAPUR','MAHARASHTRA'),(416215,'Shahuwadi','KOLHAPUR','MAHARASHTRA'),(416216,'Kagal','KOLHAPUR','MAHARASHTRA'),(416218,'Kagal','KOLHAPUR','MAHARASHTRA'),(416219,'Bhudargad','KOLHAPUR','MAHARASHTRA'),(416220,'Ajra','KOLHAPUR','MAHARASHTRA'),(416221,'Kagal','KOLHAPUR','MAHARASHTRA'),(416223,'Bhudargad','KOLHAPUR','MAHARASHTRA'),(416229,'Panhala','KOLHAPUR','MAHARASHTRA'),(416230,'Panhala','KOLHAPUR','MAHARASHTRA'),(416231,'Radhanagari','KOLHAPUR','MAHARASHTRA'),(416232,'Kagal','KOLHAPUR','MAHARASHTRA'),(416234,'Karvir','KOLHAPUR','MAHARASHTRA'),(416235,'Kagal','KOLHAPUR','MAHARASHTRA'),(416236,'Kagal','KOLHAPUR','MAHARASHTRA'),(416301,'Miraj','SANGLI','MAHARASHTRA'),(416302,'Walwa','SANGLI','MAHARASHTRA'),(416303,'Palus','SANGLI','MAHARASHTRA'),(416304,'Miraj','SANGLI','MAHARASHTRA'),(416305,'Miraj','SANGLI','MAHARASHTRA'),(416306,'Miraj','SANGLI','MAHARASHTRA'),(416307,'Tasgaon','SANGLI','MAHARASHTRA'),(416308,'Palus','SANGLI','MAHARASHTRA'),(416309,'Khanapur','SANGLI','MAHARASHTRA'),(416310,'Palus','SANGLI','MAHARASHTRA'),(416311,'Tasgaon','SANGLI','MAHARASHTRA'),(416312,'Tasgaon','SANGLI','MAHARASHTRA'),(416313,'Walwa','SANGLI','MAHARASHTRA'),(416314,'Tasgaon','SANGLI','MAHARASHTRA'),(416315,'Miraj','SANGLI','MAHARASHTRA'),(416316,'Palus','SANGLI','MAHARASHTRA'),(416401,'Miraj','SANGLI','MAHARASHTRA'),(416402,'Jat','SANGLI','MAHARASHTRA'),(416403,'Sangole','SOLAPUR','MAHARASHTRA'),(416404,'Jat','SANGLI','MAHARASHTRA'),(416405,'Kavathemahankal','SANGLI','MAHARASHTRA'),(416406,'Miraj','SANGLI','MAHARASHTRA'),(416407,'Miraj','SANGLI','MAHARASHTRA'),(416408,'Tasgaon','SANGLI','MAHARASHTRA'),(416409,'Miraj','SANGLI','MAHARASHTRA'),(416410,'Miraj','SANGLI','MAHARASHTRA'),(416411,'Kavathemahankal','SANGLI','MAHARASHTRA'),(416412,'Jat','SANGLI','MAHARASHTRA'),(416413,'Jat','SANGLI','MAHARASHTRA'),(416414,'Miraj','SANGLI','MAHARASHTRA'),(416415,'Miraj','SANGLI','MAHARASHTRA'),(416416,'Miraj','SANGLI','MAHARASHTRA'),(416417,'Miraj','SANGLI','MAHARASHTRA'),(416418,'Kavathemahankal','SANGLI','MAHARASHTRA'),(416419,'Kavathemahankal','SANGLI','MAHARASHTRA'),(416420,'Miraj','SANGLI','MAHARASHTRA'),(416436,'Miraj','SANGLI','MAHARASHTRA'),(416437,'Miraj','SANGLI','MAHARASHTRA'),(416501,'Gadhinglaj','KOLHAPUR','MAHARASHTRA'),(416502,'Gadhinglaj','KOLHAPUR','MAHARASHTRA'),(416503,'Gadhinglaj','KOLHAPUR','MAHARASHTRA'),(416504,'Gadhinglaj','KOLHAPUR','MAHARASHTRA'),(416505,'Ajra','KOLHAPUR','MAHARASHTRA'),(416506,'Gadhinglaj','KOLHAPUR','MAHARASHTRA'),(416507,'Chandgad','KOLHAPUR','MAHARASHTRA'),(416508,'Chandgad','KOLHAPUR','MAHARASHTRA'),(416509,'Chandgad','KOLHAPUR','MAHARASHTRA'),(416510,'Kudal','SINDHUDURG','MAHARASHTRA'),(416511,'Dodamarg','SINDHUDURG','MAHARASHTRA'),(416512,'Dodamarg','SINDHUDURG','MAHARASHTRA'),(416513,'Sawantwadi','SINDHUDURG','MAHARASHTRA'),(416514,'Sawantwadi','SINDHUDURG','MAHARASHTRA'),(416515,'Vengurla','SINDHUDURG','MAHARASHTRA'),(416516,'Vengurla','SINDHUDURG','MAHARASHTRA'),(416517,'Vengurla','SINDHUDURG','MAHARASHTRA'),(416518,'Vengurla','SINDHUDURG','MAHARASHTRA'),(416519,'Kudal','SINDHUDURG','MAHARASHTRA'),(416520,'Kudal','SINDHUDURG','MAHARASHTRA'),(416521,'Kudal','SINDHUDURG','MAHARASHTRA'),(416522,'Kudal','SINDHUDURG','MAHARASHTRA'),(416523,'Vengurla','SINDHUDURG','MAHARASHTRA'),(416524,'Kudal','SINDHUDURG','MAHARASHTRA'),(416525,'Kudal','SINDHUDURG','MAHARASHTRA'),(416526,'Gadhinglaj','KOLHAPUR','MAHARASHTRA'),(416527,'Chandgad','KOLHAPUR','MAHARASHTRA'),(416528,'Kudal','SINDHUDURG','MAHARASHTRA'),(416529,'Vengurla','SINDHUDURG','MAHARASHTRA'),(416531,'Sawantwadi','SINDHUDURG','MAHARASHTRA'),(416534,'Kudal','SINDHUDURG','MAHARASHTRA'),(416549,'Dodamarg','SINDHUDURG','MAHARASHTRA'),(416550,'Kudal','SINDHUDURG','MAHARASHTRA'),(416551,'Gadhinglaj','KOLHAPUR','MAHARASHTRA'),(416552,'Chandgad','KOLHAPUR','MAHARASHTRA'),(416601,'Kankavli','SINDHUDURG','MAHARASHTRA'),(416602,'Kankavli','SINDHUDURG','MAHARASHTRA'),(416603,'Kankavli','SINDHUDURG','MAHARASHTRA'),(416604,'Malwan','SINDHUDURG','MAHARASHTRA'),(416605,'Malwan','SINDHUDURG','MAHARASHTRA'),(416606,'Malwan','SINDHUDURG','MAHARASHTRA'),(416608,'Malwan','SINDHUDURG','MAHARASHTRA'),(416609,'Kankavli','SINDHUDURG','MAHARASHTRA'),(416610,'Devgad','SINDHUDURG','MAHARASHTRA'),(416611,'Devgad','SINDHUDURG','MAHARASHTRA'),(416612,'Devgad','SINDHUDURG','MAHARASHTRA'),(416613,'Devgad','SINDHUDURG','MAHARASHTRA'),(416614,'Malwan','SINDHUDURG','MAHARASHTRA'),(416615,'Devgad','SINDHUDURG','MAHARASHTRA'),(416616,'Malwan','SINDHUDURG','MAHARASHTRA'),(416620,'Kankavli','SINDHUDURG','MAHARASHTRA'),(416623,'Devgad','SINDHUDURG','MAHARASHTRA'),(416626,'Malwan','SINDHUDURG','MAHARASHTRA'),(416628,'Kudal','SINDHUDURG','MAHARASHTRA'),(416630,'Devgad','SINDHUDURG','MAHARASHTRA'),(416632,'Kudal','SINDHUDURG','MAHARASHTRA'),(416701,'Lanja','RATNAGIRI','MAHARASHTRA'),(416702,'Chiplun','RATNAGIRI','MAHARASHTRA'),(416703,'Devgad','SINDHUDURG','MAHARASHTRA'),(416704,'Rajapur','RATNAGIRI','MAHARASHTRA'),(416705,'Rajapur','RATNAGIRI','MAHARASHTRA'),(416707,'Rajapur','RATNAGIRI','MAHARASHTRA'),(416709,'Rajapur','RATNAGIRI','MAHARASHTRA'),(416712,'Lanja','RATNAGIRI','MAHARASHTRA'),(416713,'Rajapur','RATNAGIRI','MAHARASHTRA'),(416801,'Kankavli','SINDHUDURG','MAHARASHTRA'),(416803,'Devgad','SINDHUDURG','MAHARASHTRA'),(416804,'Devgad','SINDHUDURG','MAHARASHTRA'),(416805,'Devgad','SINDHUDURG','MAHARASHTRA'),(416806,'Devgad','SINDHUDURG','MAHARASHTRA'),(416807,'Devgad','SINDHUDURG','MAHARASHTRA'),(416810,'Vaibhavvadi','SINDHUDURG','MAHARASHTRA'),(416811,'Devgad','SINDHUDURG','MAHARASHTRA'),(416812,'Kudal','SINDHUDURG','MAHARASHTRA'),(416813,'Vaibhavvadi','SINDHUDURG','MAHARASHTRA'),(421002,'Kalyan','THANE','MAHARASHTRA'),(421004,'Kalyan','THANE','MAHARASHTRA'),(421005,'Kalyan','THANE','MAHARASHTRA'),(421101,'Bhiwandi','THANE','MAHARASHTRA'),(421102,'Kalyan','THANE','MAHARASHTRA'),(421103,'Kalyan','THANE','MAHARASHTRA'),(421201,'Kalyan','THANE','MAHARASHTRA'),(421202,'Kalyan','THANE','MAHARASHTRA'),(421203,'Kalyan','THANE','MAHARASHTRA'),(421204,'Ambarnath','THANE','MAHARASHTRA'),(421301,'Kalyan','THANE','MAHARASHTRA'),(421302,'Bhiwandi','THANE','MAHARASHTRA'),(421303,'Vada','THANE','MAHARASHTRA'),(421305,'Bhiwandi','THANE','MAHARASHTRA'),(421306,'Ambarnath','THANE','MAHARASHTRA'),(421308,'Bhiwandi','THANE','MAHARASHTRA'),(421311,'Bhiwandi','THANE','MAHARASHTRA'),(421312,'Vada','THANE','MAHARASHTRA'),(421401,'Murbad','THANE','MAHARASHTRA'),(421402,'Murbad','THANE','MAHARASHTRA'),(421403,'Shahapur','THANE','MAHARASHTRA'),(421501,'Ambarnath','THANE','MAHARASHTRA'),(421502,'Ambarnath','THANE','MAHARASHTRA'),(421503,'Ambarnath','THANE','MAHARASHTRA'),(421505,'Ambarnath','THANE','MAHARASHTRA'),(421506,'Ambarnath','THANE','MAHARASHTRA'),(421601,'Shahapur','THANE','MAHARASHTRA'),(421602,'Shahapur','THANE','MAHARASHTRA'),(421603,'Shahapur','THANE','MAHARASHTRA'),(421605,'Shahapur','THANE','MAHARASHTRA'),(422001,'Nashik','NASHIK','MAHARASHTRA'),(422002,'Nashik','NASHIK','MAHARASHTRA'),(422003,'Nashik','NASHIK','MAHARASHTRA'),(422004,'Nashik','NASHIK','MAHARASHTRA'),(422005,'Nashik','NASHIK','MAHARASHTRA'),(422006,'Nashik','NASHIK','MAHARASHTRA'),(422007,'Surgana','NASHIK','MAHARASHTRA'),(422008,'Nashik','NASHIK','MAHARASHTRA'),(422009,'Nashik','NASHIK','MAHARASHTRA'),(422010,'Nashik','NASHIK','MAHARASHTRA'),(422011,'Nashik','NASHIK','MAHARASHTRA'),(422012,'Nashik','NASHIK','MAHARASHTRA'),(422013,'Nashik','NASHIK','MAHARASHTRA'),(422101,'Nashik','NASHIK','MAHARASHTRA'),(422102,'Sinnar','NASHIK','MAHARASHTRA'),(422103,'Sinnar','NASHIK','MAHARASHTRA'),(422104,'Sinnar','NASHIK','MAHARASHTRA'),(422105,'Nashik','NASHIK','MAHARASHTRA'),(422112,'Sinnar','NASHIK','MAHARASHTRA'),(422113,'Sinnar','NASHIK','MAHARASHTRA'),(422201,'Niphad','NASHIK','MAHARASHTRA'),(422202,'Dindori','NASHIK','MAHARASHTRA'),(422203,'Nashik','NASHIK','MAHARASHTRA'),(422204,'Trimbakeshwar','NASHIK','MAHARASHTRA'),(422205,'Dindori','NASHIK','MAHARASHTRA'),(422206,'Niphad','NASHIK','MAHARASHTRA'),(422207,'Nashik','NASHIK','MAHARASHTRA'),(422208,'Peint','NASHIK','MAHARASHTRA'),(422209,'Niphad','NASHIK','MAHARASHTRA'),(422210,'Niphad','NASHIK','MAHARASHTRA'),(422211,'Surgana','NASHIK','MAHARASHTRA'),(422212,'Trimbakeshwar','NASHIK','MAHARASHTRA'),(422213,'Trimbakeshwar','NASHIK','MAHARASHTRA'),(422214,'Trimbakeshwar','NASHIK','MAHARASHTRA'),(422215,'Dindori','NASHIK','MAHARASHTRA'),(422221,'Niphad','NASHIK','MAHARASHTRA'),(422222,'Nashik','NASHIK','MAHARASHTRA'),(422301,'Nashik','NASHIK','MAHARASHTRA'),(422302,'Niphad','NASHIK','MAHARASHTRA'),(422303,'Niphad','NASHIK','MAHARASHTRA'),(422304,'Niphad','NASHIK','MAHARASHTRA'),(422305,'Niphad','NASHIK','MAHARASHTRA'),(422306,'Niphad','NASHIK','MAHARASHTRA'),(422308,'Niphad','NASHIK','MAHARASHTRA'),(422401,'Nashik','NASHIK','MAHARASHTRA'),(422402,'Igatpuri','NASHIK','MAHARASHTRA'),(422403,'Igatpuri','NASHIK','MAHARASHTRA'),(422501,'Nashik','NASHIK','MAHARASHTRA'),(422502,'Sinnar','NASHIK','MAHARASHTRA'),(422601,'Akola','AHMED NAGAR','MAHARASHTRA'),(422602,'Sangamner','AHMED NAGAR','MAHARASHTRA'),(422603,'Sangamner','AHMED NAGAR','MAHARASHTRA'),(422604,'Akola','AHMED NAGAR','MAHARASHTRA'),(422605,'Sangamner','AHMED NAGAR','MAHARASHTRA'),(422606,'Sinnar','NASHIK','MAHARASHTRA'),(422608,'Sangamner','AHMED NAGAR','MAHARASHTRA'),(422610,'Akola','AHMED NAGAR','MAHARASHTRA'),(422611,'Rahta','AHMED NAGAR','MAHARASHTRA'),(422620,'Sangamner','AHMED NAGAR','MAHARASHTRA'),(422622,'Sangamner','AHMED NAGAR','MAHARASHTRA'),(423101,'Chandvad','NASHIK','MAHARASHTRA'),(423102,'Deola','NASHIK','MAHARASHTRA'),(423104,'Nandgaon','NASHIK','MAHARASHTRA'),(423105,'Malegaon','NASHIK','MAHARASHTRA'),(423106,'Nandgaon','NASHIK','MAHARASHTRA'),(423107,'Rahta','AHMED NAGAR','MAHARASHTRA'),(423108,'Malegaon','NASHIK','MAHARASHTRA'),(423109,'Rahta','AHMED NAGAR','MAHARASHTRA'),(423110,'Deola','NASHIK','MAHARASHTRA'),(423111,'Chandvad','NASHIK','MAHARASHTRA'),(423117,'Chandvad','NASHIK','MAHARASHTRA'),(423201,'Malegaon','NASHIK','MAHARASHTRA'),(423202,'Malegaon','NASHIK','MAHARASHTRA'),(423203,'Malegaon','NASHIK','MAHARASHTRA'),(423204,'Baglan','NASHIK','MAHARASHTRA'),(423205,'Malegaon','NASHIK','MAHARASHTRA'),(423206,'Malegaon','NASHIK','MAHARASHTRA'),(423208,'Malegaon','NASHIK','MAHARASHTRA'),(423212,'Malegaon','NASHIK','MAHARASHTRA'),(423213,'Baglan','NASHIK','MAHARASHTRA'),(423301,'Baglan','NASHIK','MAHARASHTRA'),(423302,'Baglan','NASHIK','MAHARASHTRA'),(423303,'Baglan','NASHIK','MAHARASHTRA'),(423401,'Yevla','NASHIK','MAHARASHTRA'),(423402,'Yevla','NASHIK','MAHARASHTRA'),(423403,'Yevla','NASHIK','MAHARASHTRA'),(423501,'Kalwan','NASHIK','MAHARASHTRA'),(423502,'Kalwan','NASHIK','MAHARASHTRA'),(423601,'Kopargaon','AHMED NAGAR','MAHARASHTRA'),(423602,'Kopargaon','AHMED NAGAR','MAHARASHTRA'),(423603,'Kopargaon','AHMED NAGAR','MAHARASHTRA'),(423604,'Kopargaon','AHMED NAGAR','MAHARASHTRA'),(423605,'Kopargaon','AHMED NAGAR','MAHARASHTRA'),(423607,'Kopargaon','AHMED NAGAR','MAHARASHTRA'),(423701,'Vaijapur','AURANGABAD','MAHARASHTRA'),(423702,'Gangapur','AURANGABAD','MAHARASHTRA'),(423703,'Vaijapur','AURANGABAD','MAHARASHTRA'),(424001,'Dhule','DHULE','MAHARASHTRA'),(424002,'Sakri','DHULE','MAHARASHTRA'),(424004,'Dhule','DHULE','MAHARASHTRA'),(424005,'Dhule','DHULE','MAHARASHTRA'),(424006,'Dhule','DHULE','MAHARASHTRA'),(424101,'Chalisgaon','JALGAON','MAHARASHTRA'),(424102,'Bhadgaon','JALGAON','MAHARASHTRA'),(424103,'Bhadgaon','JALGAON','MAHARASHTRA'),(424104,'Pachora','JALGAON','MAHARASHTRA'),(424105,'Bhadgaon','JALGAON','MAHARASHTRA'),(424106,'Chalisgaon','JALGAON','MAHARASHTRA'),(424107,'Bhadgaon','JALGAON','MAHARASHTRA'),(424108,'Chalisgaon','JALGAON','MAHARASHTRA'),(424109,'Nandgaon','NASHIK','MAHARASHTRA'),(424119,'Chalisgaon','JALGAON','MAHARASHTRA'),(424201,'Pachora','JALGAON','MAHARASHTRA'),(424202,'Pachora','JALGAON','MAHARASHTRA'),(424203,'Pachora','JALGAON','MAHARASHTRA'),(424204,'Jamner','JALGAON','MAHARASHTRA'),(424205,'Jamner','JALGAON','MAHARASHTRA'),(424206,'Jamner','JALGAON','MAHARASHTRA'),(424207,'Jamner','JALGAON','MAHARASHTRA'),(424208,'Jamner','JALGAON','MAHARASHTRA'),(424301,'Dhule','DHULE','MAHARASHTRA'),(424302,'Dhule','DHULE','MAHARASHTRA'),(424303,'Dhule','DHULE','MAHARASHTRA'),(424304,'Sakri','DHULE','MAHARASHTRA'),(424305,'Sakri','DHULE','MAHARASHTRA'),(424306,'Sakri','DHULE','MAHARASHTRA'),(424307,'Dhule','DHULE','MAHARASHTRA'),(424308,'Dhule','DHULE','MAHARASHTRA'),(424309,'Dhule','DHULE','MAHARASHTRA'),(424310,'Sakri','DHULE','MAHARASHTRA'),(424311,'Dhule','DHULE','MAHARASHTRA'),(424318,'Dhule','DHULE','MAHARASHTRA'),(425001,'Jalgaon','JALGAON','MAHARASHTRA'),(425002,'Jalgaon','JALGAON','MAHARASHTRA'),(425003,'Jalgaon','JALGAON','MAHARASHTRA'),(425004,'Jalgaon','JALGAON','MAHARASHTRA'),(425101,'Jalgaon','JALGAON','MAHARASHTRA'),(425102,'Jalgaon','JALGAON','MAHARASHTRA'),(425103,'Erandol','JALGAON','MAHARASHTRA'),(425104,'Dharangaon','JALGAON','MAHARASHTRA'),(425105,'Amalner','JALGAON','MAHARASHTRA'),(425107,'Chopda','JALGAON','MAHARASHTRA'),(425108,'Chopda','JALGAON','MAHARASHTRA'),(425109,'Erandol','JALGAON','MAHARASHTRA'),(425110,'Erandol','JALGAON','MAHARASHTRA'),(425111,'Parola','JALGAON','MAHARASHTRA'),(425112,'Parola','JALGAON','MAHARASHTRA'),(425113,'Parola','JALGAON','MAHARASHTRA'),(425114,'Jamner','JALGAON','MAHARASHTRA'),(425115,'Pachora','JALGAON','MAHARASHTRA'),(425116,'Jalgaon','JALGAON','MAHARASHTRA'),(425201,'Bhusawal','JALGAON','MAHARASHTRA'),(425203,'Raver','JALGAON','MAHARASHTRA'),(425301,'Yawal','JALGAON','MAHARASHTRA'),(425302,'Yawal','JALGAON','MAHARASHTRA'),(425303,'Chopda','JALGAON','MAHARASHTRA'),(425304,'Yawal','JALGAON','MAHARASHTRA'),(425305,'Bhusawal','JALGAON','MAHARASHTRA'),(425306,'Muktainagar (Edlabad)','JALGAON','MAHARASHTRA'),(425307,'Bhusawal','JALGAON','MAHARASHTRA'),(425308,'Bhusawal','JALGAON','MAHARASHTRA'),(425309,'Bhusawal','JALGAON','MAHARASHTRA'),(425310,'Bodvad','JALGAON','MAHARASHTRA'),(425311,'Bhusawal','JALGAON','MAHARASHTRA'),(425327,'Muktainagar (Edlabad)','JALGAON','MAHARASHTRA'),(425401,'Amalner','JALGAON','MAHARASHTRA'),(425402,'Amalner','JALGAON','MAHARASHTRA'),(425403,'Sindkhede','DHULE','MAHARASHTRA'),(425404,'Sindkhede','DHULE','MAHARASHTRA'),(425405,'Shirpur','DHULE','MAHARASHTRA'),(425406,'Sindkhede','DHULE','MAHARASHTRA'),(425407,'Sindkhede','DHULE','MAHARASHTRA'),(425408,'Sindkhede','DHULE','MAHARASHTRA'),(425409,'Shahade','NANDURBAR','MAHARASHTRA'),(425410,'Shahade','NANDURBAR','MAHARASHTRA'),(425411,'Nandurbar','NANDURBAR','MAHARASHTRA'),(425412,'Nandurbar','NANDURBAR','MAHARASHTRA'),(425413,'Talode','NANDURBAR','MAHARASHTRA'),(425414,'Akrani','NANDURBAR','MAHARASHTRA'),(425415,'Akkalkuwa','NANDURBAR','MAHARASHTRA'),(425416,'Nawapur','NANDURBAR','MAHARASHTRA'),(425417,'Nawapur','NANDURBAR','MAHARASHTRA'),(425418,'Nawapur','NANDURBAR','MAHARASHTRA'),(425419,'Akkalkuwa','NANDURBAR','MAHARASHTRA'),(425420,'Amalner','JALGAON','MAHARASHTRA'),(425421,'Shirpur','DHULE','MAHARASHTRA'),(425422,'Shahade','NANDURBAR','MAHARASHTRA'),(425423,'Shahade','NANDURBAR','MAHARASHTRA'),(425424,'Shahade','NANDURBAR','MAHARASHTRA'),(425426,'Nawapur','NANDURBAR','MAHARASHTRA'),(425427,'Shirpur','DHULE','MAHARASHTRA'),(425428,'Shirpur','DHULE','MAHARASHTRA'),(425432,'Akrani','NANDURBAR','MAHARASHTRA'),(425442,'Talode','NANDURBAR','MAHARASHTRA'),(425444,'Shahade','NANDURBAR','MAHARASHTRA'),(425452,'Akkalkuwa','NANDURBAR','MAHARASHTRA'),(425501,'Raver','JALGAON','MAHARASHTRA'),(425502,'Raver','JALGAON','MAHARASHTRA'),(425503,'Yawal','JALGAON','MAHARASHTRA'),(425504,'Yawal','JALGAON','MAHARASHTRA'),(425505,'Raver','JALGAON','MAHARASHTRA'),(425506,'Raver','JALGAON','MAHARASHTRA'),(425507,'Raver','JALGAON','MAHARASHTRA'),(425508,'Raver','JALGAON','MAHARASHTRA'),(425524,'Yawal','JALGAON','MAHARASHTRA'),(431001,'Aurangabad','AURANGABAD','MAHARASHTRA'),(431002,'Gangapur','AURANGABAD','MAHARASHTRA'),(431003,'Aurangabad','AURANGABAD','MAHARASHTRA'),(431004,'Aurangabad','AURANGABAD','MAHARASHTRA'),(431005,'Aurangabad','AURANGABAD','MAHARASHTRA'),(431006,'Aurangabad','AURANGABAD','MAHARASHTRA'),(431007,'Aurangabad','AURANGABAD','MAHARASHTRA'),(431008,'Aurangabad','AURANGABAD','MAHARASHTRA'),(431009,'Aurangabad','AURANGABAD','MAHARASHTRA'),(431010,'Aurangabad','AURANGABAD','MAHARASHTRA'),(431101,'Khuldabad','AURANGABAD','MAHARASHTRA'),(431102,'Kannad','AURANGABAD','MAHARASHTRA'),(431103,'Kannad','AURANGABAD','MAHARASHTRA'),(431104,'Kannad','AURANGABAD','MAHARASHTRA'),(431105,'Paithan','AURANGABAD','MAHARASHTRA'),(431107,'Paithan','AURANGABAD','MAHARASHTRA'),(431109,'Vaijapur','AURANGABAD','MAHARASHTRA'),(431110,'Gangapur','AURANGABAD','MAHARASHTRA'),(431111,'Phulambri','AURANGABAD','MAHARASHTRA'),(431112,'Sillod','AURANGABAD','MAHARASHTRA'),(431113,'Sillod','AURANGABAD','MAHARASHTRA'),(431114,'Bhokardan','JALNA','MAHARASHTRA'),(431115,'Vaijapur','AURANGABAD','MAHARASHTRA'),(431116,'Vaijapur','AURANGABAD','MAHARASHTRA'),(431117,'Sillod','AURANGABAD','MAHARASHTRA'),(431118,'Soegaon','AURANGABAD','MAHARASHTRA'),(431120,'Soegaon','AURANGABAD','MAHARASHTRA'),(431121,'Paithan','AURANGABAD','MAHARASHTRA'),(431122,'Bid','BEED','MAHARASHTRA'),(431123,'Kaij','BEED','MAHARASHTRA'),(431124,'Dharur','BEED','MAHARASHTRA'),(431125,'Bid','BEED','MAHARASHTRA'),(431126,'Bid','BEED','MAHARASHTRA'),(431127,'Georai','BEED','MAHARASHTRA'),(431128,'Parli','BEED','MAHARASHTRA'),(431129,'Georai','BEED','MAHARASHTRA'),(431130,'Georai','BEED','MAHARASHTRA'),(431131,'Manjlegaon','BEED','MAHARASHTRA'),(431132,'Sillod','AURANGABAD','MAHARASHTRA'),(431133,'Gangapur','AURANGABAD','MAHARASHTRA'),(431134,'Phulambri','AURANGABAD','MAHARASHTRA'),(431135,'Sillod','AURANGABAD','MAHARASHTRA'),(431136,'Gangapur','AURANGABAD','MAHARASHTRA'),(431137,'Paithan','AURANGABAD','MAHARASHTRA'),(431142,'Manjlegaon','BEED','MAHARASHTRA'),(431143,'Georai','BEED','MAHARASHTRA'),(431144,'Wadwani','BEED','MAHARASHTRA'),(431147,'Kannad','AURANGABAD','MAHARASHTRA'),(431148,'Paithan','AURANGABAD','MAHARASHTRA'),(431150,'Soegaon','AURANGABAD','MAHARASHTRA'),(431151,'Phulambri','AURANGABAD','MAHARASHTRA'),(431152,'Phulambri','AURANGABAD','MAHARASHTRA'),(431153,'Bid','BEED','MAHARASHTRA'),(431154,'Aurangabad','AURANGABAD','MAHARASHTRA'),(431202,'Badnapur','JALNA','MAHARASHTRA'),(431203,'Jalna','JALNA','MAHARASHTRA'),(431204,'Badnapur','JALNA','MAHARASHTRA'),(431205,'Ambad','JALNA','MAHARASHTRA'),(431206,'Jafferabad','JALNA','MAHARASHTRA'),(431207,'Jalna','JALNA','MAHARASHTRA'),(431208,'Jafferabad','JALNA','MAHARASHTRA'),(431209,'Ghansawangi','JALNA','MAHARASHTRA'),(431211,'Ghansawangi','JALNA','MAHARASHTRA'),(431212,'Ambad','JALNA','MAHARASHTRA'),(431213,'Badnapur','JALNA','MAHARASHTRA'),(431214,'Partur','JALNA','MAHARASHTRA'),(431215,'Badnapur','JALNA','MAHARASHTRA'),(431401,'Parbhani','PARBHANI','MAHARASHTRA'),(431402,'Parbhani','PARBHANI','MAHARASHTRA'),(431501,'Partur','JALNA','MAHARASHTRA'),(431502,'Partur','JALNA','MAHARASHTRA'),(431503,'Sailu','PARBHANI','MAHARASHTRA'),(431504,'Mantha','JALNA','MAHARASHTRA'),(431505,'Sailu','PARBHANI','MAHARASHTRA'),(431506,'Pathri','PARBHANI','MAHARASHTRA'),(431507,'Partur','JALNA','MAHARASHTRA'),(431508,'Jintur','PARBHANI','MAHARASHTRA'),(431509,'Jintur','PARBHANI','MAHARASHTRA'),(431510,'Jintur','PARBHANI','MAHARASHTRA'),(431511,'Purna','PARBHANI','MAHARASHTRA'),(431512,'Basmath','HINGOLI','MAHARASHTRA'),(431513,'Hingoli','HINGOLI','MAHARASHTRA'),(431514,'Sonpeth','PARBHANI','MAHARASHTRA'),(431515,'Parli','BEED','MAHARASHTRA'),(431516,'Sonpeth','PARBHANI','MAHARASHTRA'),(431517,'Kaij','BEED','MAHARASHTRA'),(431518,'Kaij','BEED','MAHARASHTRA'),(431519,'Ambejogai','BEED','MAHARASHTRA'),(431520,'Parli','BEED','MAHARASHTRA'),(431521,'Parbhani','PARBHANI','MAHARASHTRA'),(431522,'Renapur','LATUR','MAHARASHTRA'),(431523,'Ambejogai','BEED','MAHARASHTRA'),(431530,'Parli','BEED','MAHARASHTRA'),(431536,'Gangakhed','PARBHANI','MAHARASHTRA'),(431537,'Parbhani','PARBHANI','MAHARASHTRA'),(431540,'Parbhani','PARBHANI','MAHARASHTRA'),(431541,'Manwath','PARBHANI','MAHARASHTRA'),(431542,'Sengaon','HINGOLI','MAHARASHTRA'),(431601,'Nanded','NANDED','MAHARASHTRA'),(431602,'Naigaon (Khairgaon)','NANDED','MAHARASHTRA'),(431603,'Bhokar','NANDED','MAHARASHTRA'),(431604,'Bhokar','NANDED','MAHARASHTRA'),(431605,'Bhokar','NANDED','MAHARASHTRA'),(431606,'Loha','NANDED','MAHARASHTRA'),(431701,'Kalamnuri','HINGOLI','MAHARASHTRA'),(431702,'Hingoli','HINGOLI','MAHARASHTRA'),(431703,'Sengaon','HINGOLI','MAHARASHTRA'),(431704,'Ardhapur','NANDED','MAHARASHTRA'),(431705,'Aundha (Nagnath)','HINGOLI','MAHARASHTRA'),(431707,'Nanded','NANDED','MAHARASHTRA'),(431708,'Loha','NANDED','MAHARASHTRA'),(431709,'Naigaon (Khairgaon)','NANDED','MAHARASHTRA'),(431710,'Biloli','NANDED','MAHARASHTRA'),(431711,'Biloli','NANDED','MAHARASHTRA'),(431712,'Hadgaon','NANDED','MAHARASHTRA'),(431713,'Hadgaon','NANDED','MAHARASHTRA'),(431714,'Kandhar','NANDED','MAHARASHTRA'),(431715,'Mukhed','NANDED','MAHARASHTRA'),(431716,'Mukhed','NANDED','MAHARASHTRA'),(431717,'Deglur','NANDED','MAHARASHTRA'),(431718,'Deglur','NANDED','MAHARASHTRA'),(431719,'Mukhed','NANDED','MAHARASHTRA'),(431720,'Palam','PARBHANI','MAHARASHTRA'),(431721,'Mahoor','NANDED','MAHARASHTRA'),(431722,'Naigaon (Khairgaon)','NANDED','MAHARASHTRA'),(431723,'Deglur','NANDED','MAHARASHTRA'),(431731,'Biloli','NANDED','MAHARASHTRA'),(431736,'Biloli','NANDED','MAHARASHTRA'),(431741,'Ardhapur','NANDED','MAHARASHTRA'),(431742,'Kandhar','NANDED','MAHARASHTRA'),(431743,'Hadgaon','NANDED','MAHARASHTRA'),(431745,'Ardhapur','NANDED','MAHARASHTRA'),(431746,'Kandhar','NANDED','MAHARASHTRA'),(431750,'Ardhapur','NANDED','MAHARASHTRA'),(431801,'Bhokar','NANDED','MAHARASHTRA'),(431802,'Himayatnagar','NANDED','MAHARASHTRA'),(431803,'Kinwat','NANDED','MAHARASHTRA'),(431804,'Kinwat','NANDED','MAHARASHTRA'),(431805,'Bhokar','NANDED','MAHARASHTRA'),(431806,'Mudkhed','NANDED','MAHARASHTRA'),(431807,'Umri','NANDED','MAHARASHTRA'),(431808,'Bhokar','NANDED','MAHARASHTRA'),(431809,'Dharmabad','NANDED','MAHARASHTRA'),(431810,'Kinwat','NANDED','MAHARASHTRA'),(431811,'Kinwat','NANDED','MAHARASHTRA'),(440001,'Nagpur (Rural)','NAGPUR','MAHARASHTRA'),(440002,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440003,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440005,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440006,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440007,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440008,'Nagpur (Rural)','NAGPUR','MAHARASHTRA'),(440010,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440012,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440013,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440014,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440015,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440016,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440017,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440018,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440019,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440020,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440021,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440022,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440023,'Hingna','NAGPUR','MAHARASHTRA'),(440024,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440025,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440026,'Kamptee','NAGPUR','MAHARASHTRA'),(440027,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440030,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440032,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440033,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440034,'Nagpur (Rural)','NAGPUR','MAHARASHTRA'),(440035,'Kamptee','NAGPUR','MAHARASHTRA'),(440036,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(440037,'Nagpur (Urban)','NAGPUR','MAHARASHTRA'),(441001,'Kamptee','NAGPUR','MAHARASHTRA'),(441101,'Savner','NAGPUR','MAHARASHTRA'),(441102,'Kamptee','NAGPUR','MAHARASHTRA'),(441103,'Katol','NAGPUR','MAHARASHTRA'),(441104,'Mauda','NAGPUR','MAHARASHTRA'),(441105,'Parseoni','NAGPUR','MAHARASHTRA'),(441106,'Ramtek','NAGPUR','MAHARASHTRA'),(441107,'Savner','NAGPUR','MAHARASHTRA'),(441108,'Umred','NAGPUR','MAHARASHTRA'),(441109,'Savner','NAGPUR','MAHARASHTRA'),(441110,'Hingna','NAGPUR','MAHARASHTRA'),(441111,'Kamptee','NAGPUR','MAHARASHTRA'),(441112,'Savner','NAGPUR','MAHARASHTRA'),(441113,'Savner','NAGPUR','MAHARASHTRA'),(441122,'Nagpur (Rural)','NAGPUR','MAHARASHTRA'),(441123,'Kamptee','NAGPUR','MAHARASHTRA'),(441201,'Bhiwapur','NAGPUR','MAHARASHTRA'),(441202,'Kuhi','NAGPUR','MAHARASHTRA'),(441203,'Bhiwapur','NAGPUR','MAHARASHTRA'),(441204,'Umred','NAGPUR','MAHARASHTRA'),(441205,'Nagbhir','CHANDRAPUR','MAHARASHTRA'),(441206,'Brahmapuri','CHANDRAPUR','MAHARASHTRA'),(441207,'Kurkheda','GADCHIROLI','MAHARASHTRA'),(441208,'Armori','GADCHIROLI','MAHARASHTRA'),(441209,'Kurkheda','GADCHIROLI','MAHARASHTRA'),(441210,'Kuhi','NAGPUR','MAHARASHTRA'),(441212,'Mul','CHANDRAPUR','MAHARASHTRA'),(441214,'Umred','NAGPUR','MAHARASHTRA'),(441215,'Sawali','CHANDRAPUR','MAHARASHTRA'),(441217,'Dhanora','GADCHIROLI','MAHARASHTRA'),(441221,'Nagbhir','CHANDRAPUR','MAHARASHTRA'),(441222,'Sindewahi','CHANDRAPUR','MAHARASHTRA'),(441223,'Sindewahi','CHANDRAPUR','MAHARASHTRA'),(441224,'Mul','CHANDRAPUR','MAHARASHTRA'),(441225,'Sawali','CHANDRAPUR','MAHARASHTRA'),(441226,'Mul','CHANDRAPUR','MAHARASHTRA'),(441301,'Narkhed','NAGPUR','MAHARASHTRA'),(441302,'Katol','NAGPUR','MAHARASHTRA'),(441303,'Narkhed','NAGPUR','MAHARASHTRA'),(441304,'Narkhed','NAGPUR','MAHARASHTRA'),(441305,'Narkhed','NAGPUR','MAHARASHTRA'),(441306,'Narkhed','NAGPUR','MAHARASHTRA'),(441401,'Parseoni','NAGPUR','MAHARASHTRA'),(441404,'Parseoni','NAGPUR','MAHARASHTRA'),(441501,'Kalameshwar','NAGPUR','MAHARASHTRA'),(441502,'Kalameshwar','NAGPUR','MAHARASHTRA'),(441601,'Gondiya','GONDIA','MAHARASHTRA'),(441614,'Tirora','GONDIA','MAHARASHTRA'),(441701,'Arjuni Morgaon','GONDIA','MAHARASHTRA'),(441702,'Arjuni Morgaon','GONDIA','MAHARASHTRA'),(441801,'Goregaon','GONDIA','MAHARASHTRA'),(441802,'Sakoli','BHANDARA','MAHARASHTRA'),(441803,'Lakhandur','BHANDARA','MAHARASHTRA'),(441804,'Bhandara','BHANDARA','MAHARASHTRA'),(441805,'Lakhandur','BHANDARA','MAHARASHTRA'),(441806,'Goregaon','GONDIA','MAHARASHTRA'),(441807,'Goregaon','GONDIA','MAHARASHTRA'),(441809,'Lakhani','BHANDARA','MAHARASHTRA'),(441901,'Deori','GONDIA','MAHARASHTRA'),(441902,'Amgaon','GONDIA','MAHARASHTRA'),(441903,'Pauni','BHANDARA','MAHARASHTRA'),(441904,'Bhandara','BHANDARA','MAHARASHTRA'),(441905,'Bhandara','BHANDARA','MAHARASHTRA'),(441906,'Bhandara','BHANDARA','MAHARASHTRA'),(441907,'Tumsar','BHANDARA','MAHARASHTRA'),(441908,'Lakhandur','BHANDARA','MAHARASHTRA'),(441909,'Mohadi','BHANDARA','MAHARASHTRA'),(441910,'Pauni','BHANDARA','MAHARASHTRA'),(441911,'Tirora','GONDIA','MAHARASHTRA'),(441912,'Tumsar','BHANDARA','MAHARASHTRA'),(441913,'Tumsar','BHANDARA','MAHARASHTRA'),(441914,'Tumsar','BHANDARA','MAHARASHTRA'),(441915,'Tumsar','BHANDARA','MAHARASHTRA'),(441916,'Salekasa','GONDIA','MAHARASHTRA'),(441924,'Bhandara','BHANDARA','MAHARASHTRA'),(442001,'Wardha','WARDHA','MAHARASHTRA'),(442003,'Wardha','WARDHA','MAHARASHTRA'),(442101,'Deoli','WARDHA','MAHARASHTRA'),(442102,'Seloo','WARDHA','MAHARASHTRA'),(442104,'Seloo','WARDHA','MAHARASHTRA'),(442105,'Seloo','WARDHA','MAHARASHTRA'),(442106,'Arvi','WARDHA','MAHARASHTRA'),(442111,'Wardha','WARDHA','MAHARASHTRA'),(442201,'Arvi','WARDHA','MAHARASHTRA'),(442202,'Ashti','WARDHA','MAHARASHTRA'),(442203,'Karanja','WARDHA','MAHARASHTRA'),(442301,'Hinganghat','WARDHA','MAHARASHTRA'),(442302,'Dhamangaon Railway','AMRAVATI','MAHARASHTRA'),(442303,'Deoli','WARDHA','MAHARASHTRA'),(442304,'Wardha','WARDHA','MAHARASHTRA'),(442305,'Samudrapur','WARDHA','MAHARASHTRA'),(442306,'Deoli','WARDHA','MAHARASHTRA'),(442307,'Hinganghat','WARDHA','MAHARASHTRA'),(442401,'Chandrapur','CHANDRAPUR','MAHARASHTRA'),(442402,'Chandrapur','CHANDRAPUR','MAHARASHTRA'),(442403,'Chandrapur','CHANDRAPUR','MAHARASHTRA'),(442404,'Bhadravati','CHANDRAPUR','MAHARASHTRA'),(442406,'Chandrapur','CHANDRAPUR','MAHARASHTRA'),(442501,'Bhadravati','CHANDRAPUR','MAHARASHTRA'),(442502,'Chandrapur','CHANDRAPUR','MAHARASHTRA'),(442503,'Bhadravati','CHANDRAPUR','MAHARASHTRA'),(442504,'Sironcha','GADCHIROLI','MAHARASHTRA'),(442505,'Chandrapur','CHANDRAPUR','MAHARASHTRA'),(442507,'Chandrapur','CHANDRAPUR','MAHARASHTRA'),(442603,'Chamorshi','GADCHIROLI','MAHARASHTRA'),(442604,'Chamorshi','GADCHIROLI','MAHARASHTRA'),(442605,'Gadchiroli','GADCHIROLI','MAHARASHTRA'),(442606,'Dhanora','GADCHIROLI','MAHARASHTRA'),(442701,'Ballarpur','CHANDRAPUR','MAHARASHTRA'),(442702,'Pombhurna','CHANDRAPUR','MAHARASHTRA'),(442703,'Aheri','GADCHIROLI','MAHARASHTRA'),(442704,'Etapalli','GADCHIROLI','MAHARASHTRA'),(442705,'Mulchera','GADCHIROLI','MAHARASHTRA'),(442707,'Chamorshi','GADCHIROLI','MAHARASHTRA'),(442709,'Aheri','GADCHIROLI','MAHARASHTRA'),(442710,'Bhamragad','GADCHIROLI','MAHARASHTRA'),(442901,'Ballarpur','CHANDRAPUR','MAHARASHTRA'),(442902,'Bhadravati','CHANDRAPUR','MAHARASHTRA'),(442903,'Chimur','CHANDRAPUR','MAHARASHTRA'),(442904,'Chimur','CHANDRAPUR','MAHARASHTRA'),(442905,'Rajura','CHANDRAPUR','MAHARASHTRA'),(442906,'Bhadravati','CHANDRAPUR','MAHARASHTRA'),(442907,'Warora','CHANDRAPUR','MAHARASHTRA'),(442908,'Korpana','CHANDRAPUR','MAHARASHTRA'),(442914,'Warora','CHANDRAPUR','MAHARASHTRA'),(442916,'Korpana','CHANDRAPUR','MAHARASHTRA'),(442917,'Korpana','CHANDRAPUR','MAHARASHTRA'),(442918,'Pombhurna','CHANDRAPUR','MAHARASHTRA'),(442919,'Mulchera','GADCHIROLI','MAHARASHTRA'),(443001,'Buldana','BULDHANA','MAHARASHTRA'),(443002,'Chikhli','BULDHANA','MAHARASHTRA'),(443101,'Motala','BULDHANA','MAHARASHTRA'),(443102,'Motala','BULDHANA','MAHARASHTRA'),(443103,'Motala','BULDHANA','MAHARASHTRA'),(443104,'Motala','BULDHANA','MAHARASHTRA'),(443106,'Buldana','BULDHANA','MAHARASHTRA'),(443112,'Malkapur','BULDHANA','MAHARASHTRA'),(443201,'Chikhli','BULDHANA','MAHARASHTRA'),(443202,'Lonar','BULDHANA','MAHARASHTRA'),(443203,'Sindkhed Raja','BULDHANA','MAHARASHTRA'),(443204,'Deolgaon Raja','BULDHANA','MAHARASHTRA'),(443206,'Deolgaon Raja','BULDHANA','MAHARASHTRA'),(443301,'Mehkar','BULDHANA','MAHARASHTRA'),(443302,'Lonar','BULDHANA','MAHARASHTRA'),(443303,'Mehkar','BULDHANA','MAHARASHTRA'),(443304,'Mehkar','BULDHANA','MAHARASHTRA'),(443308,'Sindkhed Raja','BULDHANA','MAHARASHTRA'),(443401,'Nandura','BULDHANA','MAHARASHTRA'),(443402,'Jalgaon (Jamod)','BULDHANA','MAHARASHTRA'),(443403,'Jalgaon (Jamod)','BULDHANA','MAHARASHTRA'),(443404,'Nandura','BULDHANA','MAHARASHTRA'),(444001,'Akot','AKOLA','MAHARASHTRA'),(444002,'Akola','AKOLA','MAHARASHTRA'),(444003,'Akola','AKOLA','MAHARASHTRA'),(444004,'Akola','AKOLA','MAHARASHTRA'),(444005,'Barshitakli','AKOLA','MAHARASHTRA'),(444006,'Akola','AKOLA','MAHARASHTRA'),(444101,'Akot','AKOLA','MAHARASHTRA'),(444102,'Akola','AKOLA','MAHARASHTRA'),(444103,'Telhara','AKOLA','MAHARASHTRA'),(444104,'Akola','AKOLA','MAHARASHTRA'),(444105,'Karanja','WASHIM','MAHARASHTRA'),(444106,'Murtijapur','AKOLA','MAHARASHTRA'),(444107,'Murtijapur','AKOLA','MAHARASHTRA'),(444108,'Telhara','AKOLA','MAHARASHTRA'),(444109,'Balapur','AKOLA','MAHARASHTRA'),(444110,'Karanja','WASHIM','MAHARASHTRA'),(444111,'Akot','AKOLA','MAHARASHTRA'),(444117,'Akot','AKOLA','MAHARASHTRA'),(444126,'Akot','AKOLA','MAHARASHTRA'),(444201,'Sangrampur','BULDHANA','MAHARASHTRA'),(444202,'Sangrampur','BULDHANA','MAHARASHTRA'),(444203,'Shegaon','BULDHANA','MAHARASHTRA'),(444204,'Sangrampur','BULDHANA','MAHARASHTRA'),(444301,'Chikhli','BULDHANA','MAHARASHTRA'),(444302,'Balapur','AKOLA','MAHARASHTRA'),(444303,'Khamgaon','BULDHANA','MAHARASHTRA'),(444304,'Shegaon','BULDHANA','MAHARASHTRA'),(444306,'Khamgaon','BULDHANA','MAHARASHTRA'),(444311,'Balapur','AKOLA','MAHARASHTRA'),(444312,'Khamgaon','BULDHANA','MAHARASHTRA'),(444401,'Barshitakli','AKOLA','MAHARASHTRA'),(444402,'Mangrulpir','WASHIM','MAHARASHTRA'),(444403,'Manora','WASHIM','MAHARASHTRA'),(444404,'Manora','WASHIM','MAHARASHTRA'),(444405,'Barshitakli','AKOLA','MAHARASHTRA'),(444407,'Barshitakli','AKOLA','MAHARASHTRA'),(444409,'Mangrulpir','WASHIM','MAHARASHTRA'),(444501,'Patur','AKOLA','MAHARASHTRA'),(444502,'Balapur','AKOLA','MAHARASHTRA'),(444503,'Malegaon','WASHIM','MAHARASHTRA'),(444504,'Risod','WASHIM','MAHARASHTRA'),(444505,'Washim','WASHIM','MAHARASHTRA'),(444506,'Risod','WASHIM','MAHARASHTRA'),(444507,'Washim','WASHIM','MAHARASHTRA'),(444510,'Risod','WASHIM','MAHARASHTRA'),(444511,'Patur','AKOLA','MAHARASHTRA'),(444601,'Amravati','AMRAVATI','MAHARASHTRA'),(444602,'Bhatkuli','AMRAVATI','MAHARASHTRA'),(444603,'Amravati','AMRAVATI','MAHARASHTRA'),(444604,'Amravati','AMRAVATI','MAHARASHTRA'),(444605,'Amravati','AMRAVATI','MAHARASHTRA'),(444606,'Amravati','AMRAVATI','MAHARASHTRA'),(444607,'Amravati','AMRAVATI','MAHARASHTRA'),(444701,'Nandgaon-Khandeshwar','AMRAVATI','MAHARASHTRA'),(444702,'Dharni','AMRAVATI','MAHARASHTRA'),(444704,'Chandurbazar','AMRAVATI','MAHARASHTRA'),(444705,'Daryapur','AMRAVATI','MAHARASHTRA'),(444706,'Daryapur','AMRAVATI','MAHARASHTRA'),(444707,'Morshi','AMRAVATI','MAHARASHTRA'),(444708,'Nandgaon-Khandeshwar','AMRAVATI','MAHARASHTRA'),(444709,'Dhamangaon Railway','AMRAVATI','MAHARASHTRA'),(444710,'Teosa','AMRAVATI','MAHARASHTRA'),(444711,'Dhamangaon Railway','AMRAVATI','MAHARASHTRA'),(444717,'Chikhaldara','AMRAVATI','MAHARASHTRA'),(444719,'Dharni','AMRAVATI','MAHARASHTRA'),(444720,'Chandurbazar','AMRAVATI','MAHARASHTRA'),(444723,'Chandurbazar','AMRAVATI','MAHARASHTRA'),(444801,'Bhatkuli','AMRAVATI','MAHARASHTRA'),(444802,'Bhatkuli','AMRAVATI','MAHARASHTRA'),(444803,'Daryapur','AMRAVATI','MAHARASHTRA'),(444804,'Bhatkuli','AMRAVATI','MAHARASHTRA'),(444805,'Achalpur','AMRAVATI','MAHARASHTRA'),(444806,'Achalpur','AMRAVATI','MAHARASHTRA'),(444807,'Chikhaldara','AMRAVATI','MAHARASHTRA'),(444808,'Chikhaldara','AMRAVATI','MAHARASHTRA'),(444809,'Chandurbazar','AMRAVATI','MAHARASHTRA'),(444810,'Chandurbazar','AMRAVATI','MAHARASHTRA'),(444813,'Chikhaldara','AMRAVATI','MAHARASHTRA'),(444901,'Morshi','AMRAVATI','MAHARASHTRA'),(444902,'Teosa','AMRAVATI','MAHARASHTRA'),(444903,'Teosa','AMRAVATI','MAHARASHTRA'),(444904,'Amravati','AMRAVATI','MAHARASHTRA'),(444905,'Morshi','AMRAVATI','MAHARASHTRA'),(444906,'Warud','AMRAVATI','MAHARASHTRA'),(444907,'Warud','AMRAVATI','MAHARASHTRA'),(444908,'Warud','AMRAVATI','MAHARASHTRA'),(445001,'Babulgaon','YAVATMAL','MAHARASHTRA'),(445002,'Kalamb','YAVATMAL','MAHARASHTRA'),(445101,'Kalamb','YAVATMAL','MAHARASHTRA'),(445102,'Ner','YAVATMAL','MAHARASHTRA'),(445103,'Arni','YAVATMAL','MAHARASHTRA'),(445105,'Yavatmal','YAVATMAL','MAHARASHTRA'),(445106,'Arni','YAVATMAL','MAHARASHTRA'),(445109,'Yavatmal','YAVATMAL','MAHARASHTRA'),(445110,'Darwha','YAVATMAL','MAHARASHTRA'),(445201,'Darwha','YAVATMAL','MAHARASHTRA'),(445202,'Darwha','YAVATMAL','MAHARASHTRA'),(445203,'Digras','YAVATMAL','MAHARASHTRA'),(445204,'Mahagaon','YAVATMAL','MAHARASHTRA'),(445205,'Mahagaon','YAVATMAL','MAHARASHTRA'),(445206,'Umarkhed','YAVATMAL','MAHARASHTRA'),(445207,'Umarkhed','YAVATMAL','MAHARASHTRA'),(445209,'Pusad','YAVATMAL','MAHARASHTRA'),(445210,'Darwha','YAVATMAL','MAHARASHTRA'),(445211,'Umarkhed','YAVATMAL','MAHARASHTRA'),(445215,'Pusad','YAVATMAL','MAHARASHTRA'),(445216,'Pusad','YAVATMAL','MAHARASHTRA'),(445230,'Umarkhed','YAVATMAL','MAHARASHTRA'),(445301,'Ghatanji','YAVATMAL','MAHARASHTRA'),(445302,'Kelapur','YAVATMAL','MAHARASHTRA'),(445303,'Maregaon','YAVATMAL','MAHARASHTRA'),(445304,'Wani','YAVATMAL','MAHARASHTRA'),(445305,'Zari-Jamani','YAVATMAL','MAHARASHTRA'),(445306,'Ghatanji','YAVATMAL','MAHARASHTRA'),(445307,'Wani','YAVATMAL','MAHARASHTRA'),(445308,'Ralegaon','YAVATMAL','MAHARASHTRA'),(445323,'Kalamb','YAVATMAL','MAHARASHTRA'),(445401,'Kalamb','YAVATMAL','MAHARASHTRA'),(445402,'Ralegaon','YAVATMAL','MAHARASHTRA'),(450001,'Khandwa','EAST NIMAR','MADHYA PRADESH'),(450051,'Khandwa','EAST NIMAR','MADHYA PRADESH'),(450110,'Harsud','EAST NIMAR','MADHYA PRADESH'),(450112,'Khandwa','EAST NIMAR','MADHYA PRADESH'),(450114,'Khandwa','EAST NIMAR','MADHYA PRADESH'),(450116,'Harsud','EAST NIMAR','MADHYA PRADESH'),(450117,'Harsud','EAST NIMAR','MADHYA PRADESH'),(450119,'Khandwa','EAST NIMAR','MADHYA PRADESH'),(450221,'Nepanagar','EAST NIMAR','MADHYA PRADESH'),(450331,'Burhanpur','EAST NIMAR','MADHYA PRADESH'),(450332,'Burhanpur','EAST NIMAR','MADHYA PRADESH'),(450337,'Pandhana','EAST NIMAR','MADHYA PRADESH'),(450445,'Burhanpur','EAST NIMAR','MADHYA PRADESH'),(450551,'Khandwa','EAST NIMAR','MADHYA PRADESH'),(450554,'Khandwa','EAST NIMAR','MADHYA PRADESH'),(450661,'Pandhana','EAST NIMAR','MADHYA PRADESH'),(450771,'Pandhana','EAST NIMAR','MADHYA PRADESH'),(450881,'Khandwa','EAST NIMAR','MADHYA PRADESH'),(450991,'Khandwa','EAST NIMAR','MADHYA PRADESH'),(451001,'Khargone','WEST NIMAR','MADHYA PRADESH'),(451111,'Barwaha','WEST NIMAR','MADHYA PRADESH'),(451113,'Barwaha','WEST NIMAR','MADHYA PRADESH'),(451115,'Barwaha','WEST NIMAR','MADHYA PRADESH'),(451220,'Maheshwar','WEST NIMAR','MADHYA PRADESH'),(451221,'Maheshwar','WEST NIMAR','MADHYA PRADESH'),(451224,'Maheshwar','WEST NIMAR','MADHYA PRADESH'),(451225,'Maheshwar','WEST NIMAR','MADHYA PRADESH'),(451228,'Kasrawad','WEST NIMAR','MADHYA PRADESH'),(451331,'Bhikangaon','WEST NIMAR','MADHYA PRADESH'),(451332,'Jhiranya','WEST NIMAR','MADHYA PRADESH'),(451335,'Kasrawad','WEST NIMAR','MADHYA PRADESH'),(451440,'Segaon','WEST NIMAR','MADHYA PRADESH'),(451441,'Bhagwanpura','WEST NIMAR','MADHYA PRADESH'),(451442,'Segaon','WEST NIMAR','MADHYA PRADESH'),(451447,'Thikri','BARWANI','MADHYA PRADESH'),(451449,'Rajpur','BARWANI','MADHYA PRADESH'),(451551,'Barwani','BARWANI','MADHYA PRADESH'),(451556,'Thikri','BARWANI','MADHYA PRADESH'),(451660,'Thikri','BARWANI','MADHYA PRADESH'),(451666,'Sendhwa','BARWANI','MADHYA PRADESH'),(451770,'Pansemal','BARWANI','MADHYA PRADESH'),(451881,'Pansemal','BARWANI','MADHYA PRADESH'),(452001,'Indore','INDORE','MADHYA PRADESH'),(452002,'Indore','INDORE','MADHYA PRADESH'),(452003,'Indore','INDORE','MADHYA PRADESH'),(452005,'Indore','INDORE','MADHYA PRADESH'),(452006,'Indore','INDORE','MADHYA PRADESH'),(452007,'Indore','INDORE','MADHYA PRADESH'),(452009,'Indore','INDORE','MADHYA PRADESH'),(452010,'Indore','INDORE','MADHYA PRADESH'),(452011,'Indore','INDORE','MADHYA PRADESH'),(452012,'Indore','INDORE','MADHYA PRADESH'),(452013,'Indore','INDORE','MADHYA PRADESH'),(452014,'Indore','INDORE','MADHYA PRADESH'),(452015,'Indore','INDORE','MADHYA PRADESH'),(452016,'Indore','INDORE','MADHYA PRADESH'),(452018,'Indore','INDORE','MADHYA PRADESH'),(452020,'Mhow','INDORE','MADHYA PRADESH'),(453001,'Depalpur','INDORE','MADHYA PRADESH'),(453111,'Sawer','INDORE','MADHYA PRADESH'),(453112,'Indore','INDORE','MADHYA PRADESH'),(453115,'Depalpur','INDORE','MADHYA PRADESH'),(453220,'Depalpur','INDORE','MADHYA PRADESH'),(453331,'Mhow','INDORE','MADHYA PRADESH'),(453441,'Mhow','INDORE','MADHYA PRADESH'),(453446,'Mhow','INDORE','MADHYA PRADESH'),(453551,'Sawer','INDORE','MADHYA PRADESH'),(453552,'Mhow','INDORE','MADHYA PRADESH'),(453555,'Sawer','INDORE','MADHYA PRADESH'),(453556,'Indore','INDORE','MADHYA PRADESH'),(453661,'Mhow','INDORE','MADHYA PRADESH'),(453771,'Sawer','INDORE','MADHYA PRADESH'),(454001,'Badnawar','DHAR','MADHYA PRADESH'),(454010,'Dhar','DHAR','MADHYA PRADESH'),(454111,'Sardarpur','DHAR','MADHYA PRADESH'),(454116,'Sardarpur','DHAR','MADHYA PRADESH'),(454221,'Kukshi','DHAR','MADHYA PRADESH'),(454331,'Kukshi','DHAR','MADHYA PRADESH'),(454335,'Manawar','DHAR','MADHYA PRADESH'),(454441,'Dhar','DHAR','MADHYA PRADESH'),(454446,'Manawar','DHAR','MADHYA PRADESH'),(454449,'Manawar','DHAR','MADHYA PRADESH'),(454552,'Gandhwani','DHAR','MADHYA PRADESH'),(454660,'Badnawar','DHAR','MADHYA PRADESH'),(454665,'Badnawar','DHAR','MADHYA PRADESH'),(454773,'Dhar','DHAR','MADHYA PRADESH'),(454774,'Dhar','DHAR','MADHYA PRADESH'),(454775,'Dhar','DHAR','MADHYA PRADESH'),(455001,'Dewas','DEWAS','MADHYA PRADESH'),(455111,'Dewas','DEWAS','MADHYA PRADESH'),(455115,'Sonkatch','DEWAS','MADHYA PRADESH'),(455116,'Tonk Khurd','DEWAS','MADHYA PRADESH'),(455118,'Sonkatch','DEWAS','MADHYA PRADESH'),(455221,'Dewas','DEWAS','MADHYA PRADESH'),(455223,'Bagli','DEWAS','MADHYA PRADESH'),(455227,'Bagli','DEWAS','MADHYA PRADESH'),(455332,'Kannod','DEWAS','MADHYA PRADESH'),(455336,'Khategaon','DEWAS','MADHYA PRADESH'),(455339,'Khategaon','DEWAS','MADHYA PRADESH'),(455440,'Kannod','DEWAS','MADHYA PRADESH'),(455459,'Kannod','DEWAS','MADHYA PRADESH'),(456001,'Tarana','UJJAIN','MADHYA PRADESH'),(456003,'Ghatiya','UJJAIN','MADHYA PRADESH'),(456006,'Ghatiya','UJJAIN','MADHYA PRADESH'),(456010,'Ujjain','UJJAIN','MADHYA PRADESH'),(456221,'Nagda','UJJAIN','MADHYA PRADESH'),(456222,'Badnagar','UJJAIN','MADHYA PRADESH'),(456224,'Khacharod','UJJAIN','MADHYA PRADESH'),(456313,'Badnagar','UJJAIN','MADHYA PRADESH'),(456331,'Badnagar','UJJAIN','MADHYA PRADESH'),(456335,'Nagda','UJJAIN','MADHYA PRADESH'),(456337,'Nagda','UJJAIN','MADHYA PRADESH'),(456440,'Mahidpur','UJJAIN','MADHYA PRADESH'),(456441,'Mahidpur','UJJAIN','MADHYA PRADESH'),(456443,'Kalapipal','SHAJAPUR','MADHYA PRADESH'),(456550,'Ghatiya','UJJAIN','MADHYA PRADESH'),(456661,'Ujjain','UJJAIN','MADHYA PRADESH'),(456664,'Ujjain','UJJAIN','MADHYA PRADESH'),(456665,'Ghatiya','UJJAIN','MADHYA PRADESH'),(456668,'Tarana','UJJAIN','MADHYA PRADESH'),(456770,'Tarana','UJJAIN','MADHYA PRADESH'),(456771,'Badnagar','UJJAIN','MADHYA PRADESH'),(456776,'Badnagar','UJJAIN','MADHYA PRADESH'),(457001,'Bajna','RATLAM','MADHYA PRADESH'),(457114,'Alot','RATLAM','MADHYA PRADESH'),(457118,'Jaora','RATLAM','MADHYA PRADESH'),(457119,'Alot','RATLAM','MADHYA PRADESH'),(457222,'Piploda','RATLAM','MADHYA PRADESH'),(457226,'Jaora','RATLAM','MADHYA PRADESH'),(457331,'Piploda','RATLAM','MADHYA PRADESH'),(457333,'Piploda','RATLAM','MADHYA PRADESH'),(457336,'Jaora','RATLAM','MADHYA PRADESH'),(457339,'Jaora','RATLAM','MADHYA PRADESH'),(457340,'Jaora','RATLAM','MADHYA PRADESH'),(457441,'Ratlam','RATLAM','MADHYA PRADESH'),(457550,'Sailana','RATLAM','MADHYA PRADESH'),(457555,'Bajna','RATLAM','MADHYA PRADESH'),(457661,'Jhabua','JHABUA','MADHYA PRADESH'),(457770,'Jhabua','JHABUA','MADHYA PRADESH'),(457772,'Thandla','JHABUA','MADHYA PRADESH'),(457773,'Petlawad','JHABUA','MADHYA PRADESH'),(457775,'Petlawad','JHABUA','MADHYA PRADESH'),(457777,'Thandla','JHABUA','MADHYA PRADESH'),(457779,'Jhabua','JHABUA','MADHYA PRADESH'),(457882,'Bhavra','JHABUA','MADHYA PRADESH'),(457885,'Alirajpur','JHABUA','MADHYA PRADESH'),(457887,'Alirajpur','JHABUA','MADHYA PRADESH'),(457888,'Alirajpur','JHABUA','MADHYA PRADESH'),(457990,'Jobat','JHABUA','MADHYA PRADESH'),(457993,'Ranapur','JHABUA','MADHYA PRADESH'),(458001,'Mandsaur','MANDSAUR','MADHYA PRADESH'),(458002,'Mandsaur','MANDSAUR','MADHYA PRADESH'),(458110,'Manasa','NEEMUCH','MADHYA PRADESH'),(458113,'Manasa','NEEMUCH','MADHYA PRADESH'),(458116,'Manasa','NEEMUCH','MADHYA PRADESH'),(458118,'Manasa','NEEMUCH','MADHYA PRADESH'),(458220,'Jawad','NEEMUCH','MADHYA PRADESH'),(458226,'Jawad','NEEMUCH','MADHYA PRADESH'),(458228,'Jawad','NEEMUCH','MADHYA PRADESH'),(458330,'Jawad','NEEMUCH','MADHYA PRADESH'),(458336,'Neemuch','NEEMUCH','MADHYA PRADESH'),(458339,'Malhargarh','MANDSAUR','MADHYA PRADESH'),(458389,'Sitamau','MANDSAUR','MADHYA PRADESH'),(458441,'Neemuch','NEEMUCH','MADHYA PRADESH'),(458468,'Neemuch','NEEMUCH','MADHYA PRADESH'),(458470,'Jawad','NEEMUCH','MADHYA PRADESH'),(458553,'Malhargarh','MANDSAUR','MADHYA PRADESH'),(458556,'Malhargarh','MANDSAUR','MADHYA PRADESH'),(458558,'Sitamau','MANDSAUR','MADHYA PRADESH'),(458664,'Malhargarh','MANDSAUR','MADHYA PRADESH'),(458667,'Mandsaur','MANDSAUR','MADHYA PRADESH'),(458669,'Mandsaur','MANDSAUR','MADHYA PRADESH'),(458771,'Bhanpura','MANDSAUR','MADHYA PRADESH'),(458775,'Bhanpura','MANDSAUR','MADHYA PRADESH'),(458778,'Bhanpura','MANDSAUR','MADHYA PRADESH'),(458880,'Garoth','MANDSAUR','MADHYA PRADESH'),(458883,'Garoth','MANDSAUR','MADHYA PRADESH'),(458888,'Sitamau','MANDSAUR','MADHYA PRADESH'),(458895,'Mandsaur','MANDSAUR','MADHYA PRADESH'),(458990,'Sitamau','MANDSAUR','MADHYA PRADESH'),(460001,'Betul','BETUL','MADHYA PRADESH'),(460004,'Betul','BETUL','MADHYA PRADESH'),(460110,'Bhainsdehi','BETUL','MADHYA PRADESH'),(460220,'Betul','BETUL','MADHYA PRADESH'),(460225,'Bhainsdehi','BETUL','MADHYA PRADESH'),(460330,'Betul','BETUL','MADHYA PRADESH'),(460440,'Bhainsdehi','BETUL','MADHYA PRADESH'),(460443,'Betul','BETUL','MADHYA PRADESH'),(460447,'Betul','BETUL','MADHYA PRADESH'),(460449,'Bhainsdehi','BETUL','MADHYA PRADESH'),(460551,'Amla','BETUL','MADHYA PRADESH'),(460553,'Betul','BETUL','MADHYA PRADESH'),(460554,'Amla','BETUL','MADHYA PRADESH'),(460557,'Multai','BETUL','MADHYA PRADESH'),(460661,'Multai','BETUL','MADHYA PRADESH'),(460663,'Chhindwara','CHHINDWARA','MADHYA PRADESH'),(460665,'Multai','BETUL','MADHYA PRADESH'),(460666,'Multai','BETUL','MADHYA PRADESH'),(460668,'Multai','BETUL','MADHYA PRADESH'),(461001,'Hoshangabad','HOSHANGABAD','MADHYA PRADESH'),(461005,'Hoshangabad','HOSHANGABAD','MADHYA PRADESH'),(461110,'Hoshangabad','HOSHANGABAD','MADHYA PRADESH'),(461111,'Itarsi','HOSHANGABAD','MADHYA PRADESH'),(461114,'Itarsi','HOSHANGABAD','MADHYA PRADESH'),(461115,'Itarsi','HOSHANGABAD','MADHYA PRADESH'),(461116,'Itarsi','HOSHANGABAD','MADHYA PRADESH'),(461122,'Itarsi','HOSHANGABAD','MADHYA PRADESH'),(461221,'Seoni-Malwa','HOSHANGABAD','MADHYA PRADESH'),(461223,'Seoni-Malwa','HOSHANGABAD','MADHYA PRADESH'),(461228,'Timarni','HARDA','MADHYA PRADESH'),(461331,'Harda','HARDA','MADHYA PRADESH'),(461441,'Khirkiya','HARDA','MADHYA PRADESH'),(461446,'Itarsi','HOSHANGABAD','MADHYA PRADESH'),(461551,'Itarsi','HOSHANGABAD','MADHYA PRADESH'),(461661,'Babai','HOSHANGABAD','MADHYA PRADESH'),(461668,'Babai','HOSHANGABAD','MADHYA PRADESH'),(461771,'Sohagpur','HOSHANGABAD','MADHYA PRADESH'),(461775,'Pipariya','HOSHANGABAD','MADHYA PRADESH'),(461881,'Pipariya','HOSHANGABAD','MADHYA PRADESH'),(461990,'Bankhedi','HOSHANGABAD','MADHYA PRADESH'),(462001,'Huzur','BHOPAL','MADHYA PRADESH'),(462002,'Huzur','BHOPAL','MADHYA PRADESH'),(462003,'Huzur','BHOPAL','MADHYA PRADESH'),(462004,'Huzur','BHOPAL','MADHYA PRADESH'),(462008,'Huzur','BHOPAL','MADHYA PRADESH'),(462010,'Huzur','BHOPAL','MADHYA PRADESH'),(462011,'Huzur','BHOPAL','MADHYA PRADESH'),(462016,'Huzur','BHOPAL','MADHYA PRADESH'),(462020,'Huzur','BHOPAL','MADHYA PRADESH'),(462022,'Huzur','BHOPAL','MADHYA PRADESH'),(462023,'Huzur','BHOPAL','MADHYA PRADESH'),(462024,'Huzur','BHOPAL','MADHYA PRADESH'),(462026,'Huzur','BHOPAL','MADHYA PRADESH'),(462027,'Huzur','BHOPAL','MADHYA PRADESH'),(462030,'Huzur','BHOPAL','MADHYA PRADESH'),(462031,'Huzur','BHOPAL','MADHYA PRADESH'),(462033,'Huzur','BHOPAL','MADHYA PRADESH'),(462036,'Huzur','BHOPAL','MADHYA PRADESH'),(462037,'Huzur','BHOPAL','MADHYA PRADESH'),(462038,'Huzur','BHOPAL','MADHYA PRADESH'),(462039,'Huzur','BHOPAL','MADHYA PRADESH'),(462040,'Huzur','BHOPAL','MADHYA PRADESH'),(462041,'Huzur','BHOPAL','MADHYA PRADESH'),(462042,'Huzur','BHOPAL','MADHYA PRADESH'),(462043,'Huzur','BHOPAL','MADHYA PRADESH'),(462044,'Huzur','BHOPAL','MADHYA PRADESH'),(462045,'Huzur','BHOPAL','MADHYA PRADESH'),(462046,'Huzur','BHOPAL','MADHYA PRADESH'),(462047,'Huzur','BHOPAL','MADHYA PRADESH'),(462066,'Huzur','BHOPAL','MADHYA PRADESH'),(462100,'Huzur','BHOPAL','MADHYA PRADESH'),(462101,'Huzur','BHOPAL','MADHYA PRADESH'),(462120,'Berasia','BHOPAL','MADHYA PRADESH'),(463106,'Berasia','BHOPAL','MADHYA PRADESH'),(463111,'Berasia','BHOPAL','MADHYA PRADESH'),(464001,'Vidisha','VIDISHA','MADHYA PRADESH'),(464111,'Nateran','VIDISHA','MADHYA PRADESH'),(464113,'Vidisha','VIDISHA','MADHYA PRADESH'),(464114,'Lateri','VIDISHA','MADHYA PRADESH'),(464220,'Gyaraspur','VIDISHA','MADHYA PRADESH'),(464221,'Basoda','VIDISHA','MADHYA PRADESH'),(464224,'Kurwai','VIDISHA','MADHYA PRADESH'),(464226,'Vidisha','VIDISHA','MADHYA PRADESH'),(464228,'Sironj','VIDISHA','MADHYA PRADESH'),(464240,'Kurwai','VIDISHA','MADHYA PRADESH'),(464258,'Nateran','VIDISHA','MADHYA PRADESH'),(464331,'Gyaraspur','VIDISHA','MADHYA PRADESH'),(464334,'Vidisha','VIDISHA','MADHYA PRADESH'),(464337,'Kurwai','VIDISHA','MADHYA PRADESH'),(464551,'Raisen','RAISEN','MADHYA PRADESH'),(464570,'Begamganj','RAISEN','MADHYA PRADESH'),(464573,'Gairatganj','RAISEN','MADHYA PRADESH'),(464651,'Raisen','RAISEN','MADHYA PRADESH'),(464661,'Raisen','RAISEN','MADHYA PRADESH'),(464665,'Baraily','RAISEN','MADHYA PRADESH'),(464668,'Baraily','RAISEN','MADHYA PRADESH'),(464671,'Baraily','RAISEN','MADHYA PRADESH'),(464672,'Silwani','RAISEN','MADHYA PRADESH'),(464770,'Udaipura','RAISEN','MADHYA PRADESH'),(464774,'Udaipura','RAISEN','MADHYA PRADESH'),(464776,'Udaipura','RAISEN','MADHYA PRADESH'),(464881,'Begamganj','RAISEN','MADHYA PRADESH'),(464884,'Gairatganj','RAISEN','MADHYA PRADESH'),(464886,'Silwani','RAISEN','MADHYA PRADESH'),(464986,'Goharganj','RAISEN','MADHYA PRADESH'),(464990,'Goharganj','RAISEN','MADHYA PRADESH'),(464993,'Goharganj','RAISEN','MADHYA PRADESH'),(465001,'Shajapur','SHAJAPUR','MADHYA PRADESH'),(465106,'Shajapur','SHAJAPUR','MADHYA PRADESH'),(465110,'Shajapur','SHAJAPUR','MADHYA PRADESH'),(465113,'Shajapur','SHAJAPUR','MADHYA PRADESH'),(465116,'Shujalpur','SHAJAPUR','MADHYA PRADESH'),(465118,'Shajapur','SHAJAPUR','MADHYA PRADESH'),(465220,'Moman Badodiya','SHAJAPUR','MADHYA PRADESH'),(465223,'Shujalpur','SHAJAPUR','MADHYA PRADESH'),(465226,'Moman Badodiya','SHAJAPUR','MADHYA PRADESH'),(465227,'Moman Badodiya','SHAJAPUR','MADHYA PRADESH'),(465230,'Agar','SHAJAPUR','MADHYA PRADESH'),(465333,'Shujalpur','SHAJAPUR','MADHYA PRADESH'),(465335,'Kalapipal','SHAJAPUR','MADHYA PRADESH'),(465337,'Kalapipal','SHAJAPUR','MADHYA PRADESH'),(465339,'Kalapipal','SHAJAPUR','MADHYA PRADESH'),(465441,'Agar','SHAJAPUR','MADHYA PRADESH'),(465445,'Nalkheda','SHAJAPUR','MADHYA PRADESH'),(465447,'Badod','SHAJAPUR','MADHYA PRADESH'),(465449,'Susner','SHAJAPUR','MADHYA PRADESH'),(465550,'Badod','SHAJAPUR','MADHYA PRADESH'),(465661,'Rajgarh','RAJGARH','MADHYA PRADESH'),(465667,'Narsinghgarh','RAJGARH','MADHYA PRADESH'),(465669,'Narsinghgarh','RAJGARH','MADHYA PRADESH'),(465674,'Biaora','RAJGARH','MADHYA PRADESH'),(465677,'Narsinghgarh','RAJGARH','MADHYA PRADESH'),(465679,'Khilchipur','RAJGARH','MADHYA PRADESH'),(465680,'Narsinghgarh','RAJGARH','MADHYA PRADESH'),(465683,'Narsinghgarh','RAJGARH','MADHYA PRADESH'),(465685,'Narsinghgarh','RAJGARH','MADHYA PRADESH'),(465687,'Narsinghgarh','RAJGARH','MADHYA PRADESH'),(465689,'Rajgarh','RAJGARH','MADHYA PRADESH'),(465691,'Jirapur','RAJGARH','MADHYA PRADESH'),(465693,'Jirapur','RAJGARH','MADHYA PRADESH'),(465697,'Sarangpur','RAJGARH','MADHYA PRADESH'),(466001,'Sehore','SEHORE','MADHYA PRADESH'),(466111,'Sehore','SEHORE','MADHYA PRADESH'),(466113,'Sehore','SEHORE','MADHYA PRADESH'),(466114,'Ashta','SEHORE','MADHYA PRADESH'),(466115,'Ichhawar','SEHORE','MADHYA PRADESH'),(466116,'Ashta','SEHORE','MADHYA PRADESH'),(466118,'Ashta','SEHORE','MADHYA PRADESH'),(466120,'Ashta','SEHORE','MADHYA PRADESH'),(466125,'Ashta','SEHORE','MADHYA PRADESH'),(466221,'Ashta','SEHORE','MADHYA PRADESH'),(466331,'Nasrullaganj','SEHORE','MADHYA PRADESH'),(466445,'Budni','SEHORE','MADHYA PRADESH'),(466446,'Budni','SEHORE','MADHYA PRADESH'),(466448,'Budni','SEHORE','MADHYA PRADESH'),(466554,'Budni','SEHORE','MADHYA PRADESH'),(466651,'Sehore','SEHORE','MADHYA PRADESH'),(466661,'Sehore','SEHORE','MADHYA PRADESH'),(466665,'Sehore','SEHORE','MADHYA PRADESH'),(470001,'Sagar','SAGAR','MADHYA PRADESH'),(470002,'Sagar','SAGAR','MADHYA PRADESH'),(470003,'Sagar','SAGAR','MADHYA PRADESH'),(470004,'Sagar','SAGAR','MADHYA PRADESH'),(470021,'Sagar','SAGAR','MADHYA PRADESH'),(470051,'Sagar','SAGAR','MADHYA PRADESH'),(470113,'Bina','SAGAR','MADHYA PRADESH'),(470115,'Sagar','SAGAR','MADHYA PRADESH'),(470117,'Khurai','SAGAR','MADHYA PRADESH'),(470118,'Khurai','SAGAR','MADHYA PRADESH'),(470119,'Rahatgarh','SAGAR','MADHYA PRADESH'),(470120,'Sagar','SAGAR','MADHYA PRADESH'),(470124,'Bina','SAGAR','MADHYA PRADESH'),(470125,'Sagar','SAGAR','MADHYA PRADESH'),(470221,'Garhakota','SAGAR','MADHYA PRADESH'),(470223,'Rehli','SAGAR','MADHYA PRADESH'),(470226,'Deori','SAGAR','MADHYA PRADESH'),(470227,'Rehli','SAGAR','MADHYA PRADESH'),(470228,'Rehli','SAGAR','MADHYA PRADESH'),(470229,'Garhakota','SAGAR','MADHYA PRADESH'),(470232,'Garhakota','SAGAR','MADHYA PRADESH'),(470235,'Kesli','SAGAR','MADHYA PRADESH'),(470335,'Banda','SAGAR','MADHYA PRADESH'),(470337,'Banda','SAGAR','MADHYA PRADESH'),(470339,'Banda','SAGAR','MADHYA PRADESH'),(470441,'Rahatgarh','SAGAR','MADHYA PRADESH'),(470442,'Khurai','SAGAR','MADHYA PRADESH'),(470661,'Damoh','DAMOH','MADHYA PRADESH'),(470663,'Jabera','DAMOH','MADHYA PRADESH'),(470664,'Damoh','DAMOH','MADHYA PRADESH'),(470666,'Patharia','DAMOH','MADHYA PRADESH'),(470669,'Sagar','SAGAR','MADHYA PRADESH'),(470672,'Damoh','DAMOH','MADHYA PRADESH'),(470673,'Batiyagarh','DAMOH','MADHYA PRADESH'),(470675,'Patharia','DAMOH','MADHYA PRADESH'),(470771,'Patera','DAMOH','MADHYA PRADESH'),(470772,'Patera','DAMOH','MADHYA PRADESH'),(470775,'Batiyagarh','DAMOH','MADHYA PRADESH'),(470880,'Tendukheda','DAMOH','MADHYA PRADESH'),(470881,'Jabera','DAMOH','MADHYA PRADESH'),(471001,'Chhatarpur','CHHATARPUR','MADHYA PRADESH'),(471101,'Rajnagar','CHHATARPUR','MADHYA PRADESH'),(471105,'Rajnagar','CHHATARPUR','MADHYA PRADESH'),(471111,'Nowgong','CHHATARPUR','MADHYA PRADESH'),(471201,'Nowgong','CHHATARPUR','MADHYA PRADESH'),(471301,'Bijawar','CHHATARPUR','MADHYA PRADESH'),(471311,'Bada-Malhera','CHHATARPUR','MADHYA PRADESH'),(471313,'Bada-Malhera','CHHATARPUR','MADHYA PRADESH'),(471315,'Chhatarpur','CHHATARPUR','MADHYA PRADESH'),(471318,'Bijawar','CHHATARPUR','MADHYA PRADESH'),(471405,'Bijawar','CHHATARPUR','MADHYA PRADESH'),(471408,'Chhatarpur','CHHATARPUR','MADHYA PRADESH'),(471411,'Nowgong','CHHATARPUR','MADHYA PRADESH'),(471501,'Laundi','CHHATARPUR','MADHYA PRADESH'),(471510,'Laundi','CHHATARPUR','MADHYA PRADESH'),(471515,'Gaurihar','CHHATARPUR','MADHYA PRADESH'),(471516,'Gaurihar','CHHATARPUR','MADHYA PRADESH'),(471525,'Laundi','CHHATARPUR','MADHYA PRADESH'),(471606,'Laundi','CHHATARPUR','MADHYA PRADESH'),(471625,'Rajnagar','CHHATARPUR','MADHYA PRADESH'),(472001,'Tikamgarh','TIKAMGARH','MADHYA PRADESH'),(472005,'Tikamgarh','TIKAMGARH','MADHYA PRADESH'),(472010,'Tikamgarh','TIKAMGARH','MADHYA PRADESH'),(472101,'Jatara','TIKAMGARH','MADHYA PRADESH'),(472111,'Baldeogarh','TIKAMGARH','MADHYA PRADESH'),(472115,'Baldeogarh','TIKAMGARH','MADHYA PRADESH'),(472118,'Jatara','TIKAMGARH','MADHYA PRADESH'),(472221,'Palera','TIKAMGARH','MADHYA PRADESH'),(472246,'Niwari','TIKAMGARH','MADHYA PRADESH'),(472331,'Palera','TIKAMGARH','MADHYA PRADESH'),(472336,'Prithvipur','TIKAMGARH','MADHYA PRADESH'),(472337,'Prithvipur','TIKAMGARH','MADHYA PRADESH'),(472339,'Prithvipur','TIKAMGARH','MADHYA PRADESH'),(472442,'Niwari','TIKAMGARH','MADHYA PRADESH'),(472445,'Niwari','TIKAMGARH','MADHYA PRADESH'),(472446,'Niwari','TIKAMGARH','MADHYA PRADESH'),(472447,'Niwari','TIKAMGARH','MADHYA PRADESH'),(473001,'Guna','GUNA','MADHYA PRADESH'),(473101,'Aron','GUNA','MADHYA PRADESH'),(473105,'Guna','GUNA','MADHYA PRADESH'),(473110,'Raghogarh','GUNA','MADHYA PRADESH'),(473111,'Raghogarh','GUNA','MADHYA PRADESH'),(473112,'Raghogarh','GUNA','MADHYA PRADESH'),(473113,'Guna','GUNA','MADHYA PRADESH'),(473115,'Chachaura','GUNA','MADHYA PRADESH'),(473118,'Chachaura','GUNA','MADHYA PRADESH'),(473222,'Kumbhraj','GUNA','MADHYA PRADESH'),(473226,'Raghogarh','GUNA','MADHYA PRADESH'),(473249,'Guna','GUNA','MADHYA PRADESH'),(473287,'Raghogarh','GUNA','MADHYA PRADESH'),(473330,'Ashoknagar','GUNA','MADHYA PRADESH'),(473331,'Mungaoli','GUNA','MADHYA PRADESH'),(473332,'Isagarh','GUNA','MADHYA PRADESH'),(473335,'Isagarh','GUNA','MADHYA PRADESH'),(473440,'Mungaoli','GUNA','MADHYA PRADESH'),(473443,'Mungaoli','GUNA','MADHYA PRADESH'),(473444,'Mungaoli','GUNA','MADHYA PRADESH'),(473446,'Chanderi','GUNA','MADHYA PRADESH'),(473551,'Shivpuri','SHIVPURI','MADHYA PRADESH'),(473585,'Khaniyadhana','SHIVPURI','MADHYA PRADESH'),(473638,'Shivpuri','SHIVPURI','MADHYA PRADESH'),(473660,'Karera','SHIVPURI','MADHYA PRADESH'),(473662,'Narwar','SHIVPURI','MADHYA PRADESH'),(473665,'Karera','SHIVPURI','MADHYA PRADESH'),(473670,'Karera','SHIVPURI','MADHYA PRADESH'),(473770,'Kolaras','SHIVPURI','MADHYA PRADESH'),(473774,'Narwar','SHIVPURI','MADHYA PRADESH'),(473775,'Pohari','SHIVPURI','MADHYA PRADESH'),(473781,'Kolaras','SHIVPURI','MADHYA PRADESH'),(473793,'Pohari','SHIVPURI','MADHYA PRADESH'),(473865,'Narwar','SHIVPURI','MADHYA PRADESH'),(473880,'Narwar','SHIVPURI','MADHYA PRADESH'),(473885,'Kolaras','SHIVPURI','MADHYA PRADESH'),(473990,'Khaniyadhana','SHIVPURI','MADHYA PRADESH'),(473995,'Pichhore','SHIVPURI','MADHYA PRADESH'),(474001,'Gird','GWALIOR','MADHYA PRADESH'),(474002,'Gird','GWALIOR','MADHYA PRADESH'),(474003,'Gird','GWALIOR','MADHYA PRADESH'),(474004,'Gird','GWALIOR','MADHYA PRADESH'),(474005,'Pichhore','GWALIOR','MADHYA PRADESH'),(474006,'Gird','GWALIOR','MADHYA PRADESH'),(474007,'Gird','GWALIOR','MADHYA PRADESH'),(474008,'Gird','GWALIOR','MADHYA PRADESH'),(474009,'Gird','GWALIOR','MADHYA PRADESH'),(474010,'Gird','GWALIOR','MADHYA PRADESH'),(474011,'Gird','GWALIOR','MADHYA PRADESH'),(474012,'Gird','GWALIOR','MADHYA PRADESH'),(474015,'Gird','GWALIOR','MADHYA PRADESH'),(474020,'Gird','GWALIOR','MADHYA PRADESH'),(475001,'Gird','GWALIOR','MADHYA PRADESH'),(475002,'Gird','GWALIOR','MADHYA PRADESH'),(475005,'Gird','GWALIOR','MADHYA PRADESH'),(475110,'Bhitarwar','GWALIOR','MADHYA PRADESH'),(475115,'Pichhore','GWALIOR','MADHYA PRADESH'),(475220,'Bhitarwar','GWALIOR','MADHYA PRADESH'),(475330,'Gird','GWALIOR','MADHYA PRADESH'),(475335,'Bhander','DATIA','MADHYA PRADESH'),(475336,'Bhander','DATIA','MADHYA PRADESH'),(475661,'Bhander','DATIA','MADHYA PRADESH'),(475671,'Datia','DATIA','MADHYA PRADESH'),(475673,'Seondha','DATIA','MADHYA PRADESH'),(475675,'Seondha','DATIA','MADHYA PRADESH'),(475682,'Seondha','DATIA','MADHYA PRADESH'),(475685,'Seondha','DATIA','MADHYA PRADESH'),(475686,'Datia','DATIA','MADHYA PRADESH'),(476001,'Morena','MORENA','MADHYA PRADESH'),(476111,'Porsa','MORENA','MADHYA PRADESH'),(476115,'Ambah','MORENA','MADHYA PRADESH'),(476134,'Ambah','MORENA','MADHYA PRADESH'),(476219,'Joura','MORENA','MADHYA PRADESH'),(476221,'Joura','MORENA','MADHYA PRADESH'),(476224,'Kailaras','MORENA','MADHYA PRADESH'),(476228,'Kailaras','MORENA','MADHYA PRADESH'),(476229,'Sabalgarh','MORENA','MADHYA PRADESH'),(476332,'Vijaypur','SHEOPUR','MADHYA PRADESH'),(476335,'Vijaypur','SHEOPUR','MADHYA PRADESH'),(476337,'Sheopur','SHEOPUR','MADHYA PRADESH'),(476339,'Sheopur','SHEOPUR','MADHYA PRADESH'),(476355,'Karahal','SHEOPUR','MADHYA PRADESH'),(476444,'Morena','MORENA','MADHYA PRADESH'),(476554,'Ambah','MORENA','MADHYA PRADESH'),(477001,'Bhind','BHIND','MADHYA PRADESH'),(477105,'Bhind','BHIND','MADHYA PRADESH'),(477111,'Ater','BHIND','MADHYA PRADESH'),(477116,'Gohad','BHIND','MADHYA PRADESH'),(477117,'Gohad','BHIND','MADHYA PRADESH'),(477222,'Gohad','BHIND','MADHYA PRADESH'),(477227,'Mehgaon','BHIND','MADHYA PRADESH'),(477331,'Bhind','BHIND','MADHYA PRADESH'),(477332,'Bhind','BHIND','MADHYA PRADESH'),(477333,'Bhind','BHIND','MADHYA PRADESH'),(477335,'Morena','MORENA','MADHYA PRADESH'),(477441,'Mihona','BHIND','MADHYA PRADESH'),(477445,'Mihona','BHIND','MADHYA PRADESH'),(477446,'Lahar','BHIND','MADHYA PRADESH'),(477447,'Gohad','BHIND','MADHYA PRADESH'),(477449,'Lahar','BHIND','MADHYA PRADESH'),(477555,'Ater','BHIND','MADHYA PRADESH'),(477557,'Mehgaon','BHIND','MADHYA PRADESH'),(477566,'Bhind','BHIND','MADHYA PRADESH'),(477660,'Mehgaon','BHIND','MADHYA PRADESH'),(480001,'Chhindwara','CHHINDWARA','MADHYA PRADESH'),(480003,'Chhindwara','CHHINDWARA','MADHYA PRADESH'),(480105,'Sausar','CHHINDWARA','MADHYA PRADESH'),(480106,'Bichhua','CHHINDWARA','MADHYA PRADESH'),(480107,'Chhindwara','CHHINDWARA','MADHYA PRADESH'),(480108,'Sausar','CHHINDWARA','MADHYA PRADESH'),(480109,'Sausar','CHHINDWARA','MADHYA PRADESH'),(480110,'Chaurai','CHHINDWARA','MADHYA PRADESH'),(480111,'Bichhua','CHHINDWARA','MADHYA PRADESH'),(480112,'Chhindwara','CHHINDWARA','MADHYA PRADESH'),(480115,'Amarwara','CHHINDWARA','MADHYA PRADESH'),(480221,'Amarwara','CHHINDWARA','MADHYA PRADESH'),(480223,'Chhindwara','CHHINDWARA','MADHYA PRADESH'),(480224,'Amarwara','CHHINDWARA','MADHYA PRADESH'),(480331,'Parasia','CHHINDWARA','MADHYA PRADESH'),(480334,'Pandhurna','CHHINDWARA','MADHYA PRADESH'),(480337,'Pandhurna','CHHINDWARA','MADHYA PRADESH'),(480338,'Pandhurna','CHHINDWARA','MADHYA PRADESH'),(480441,'Chhindwara','CHHINDWARA','MADHYA PRADESH'),(480447,'Parasia','CHHINDWARA','MADHYA PRADESH'),(480449,'Chhindwara','CHHINDWARA','MADHYA PRADESH'),(480551,'Jamai','CHHINDWARA','MADHYA PRADESH'),(480555,'Jamai','CHHINDWARA','MADHYA PRADESH'),(480557,'Parasia','CHHINDWARA','MADHYA PRADESH'),(480559,'Tamia','CHHINDWARA','MADHYA PRADESH'),(480661,'Seoni','SEONI','MADHYA PRADESH'),(480667,'Barghat','SEONI','MADHYA PRADESH'),(480771,'Barghat','SEONI','MADHYA PRADESH'),(480880,'Kurai','SEONI','MADHYA PRADESH'),(480881,'Kurai','SEONI','MADHYA PRADESH'),(480882,'Seoni','SEONI','MADHYA PRADESH'),(480884,'Ghansaur','SEONI','MADHYA PRADESH'),(480886,'Lakhnadon','SEONI','MADHYA PRADESH'),(480887,'Lakhnadon','SEONI','MADHYA PRADESH'),(480888,'Ghansaur','SEONI','MADHYA PRADESH'),(480990,'Seoni','SEONI','MADHYA PRADESH'),(480991,'Keolari','SEONI','MADHYA PRADESH'),(480994,'Keolari','SEONI','MADHYA PRADESH'),(480996,'Keolari','SEONI','MADHYA PRADESH'),(480997,'Ghansaur','SEONI','MADHYA PRADESH'),(480999,'Lakhnadon','SEONI','MADHYA PRADESH'),(481001,'Waraseoni','BALAGHAT','MADHYA PRADESH'),(481051,'Baihar','BALAGHAT','MADHYA PRADESH'),(481102,'Balaghat','BALAGHAT','MADHYA PRADESH'),(481105,'Baihar','BALAGHAT','MADHYA PRADESH'),(481111,'Baihar','BALAGHAT','MADHYA PRADESH'),(481115,'Kirnapur','BALAGHAT','MADHYA PRADESH'),(481116,'Baihar','BALAGHAT','MADHYA PRADESH'),(481117,'Baihar','BALAGHAT','MADHYA PRADESH'),(481222,'Lanji','BALAGHAT','MADHYA PRADESH'),(481224,'Lanji','BALAGHAT','MADHYA PRADESH'),(481226,'Kirnapur','BALAGHAT','MADHYA PRADESH'),(481331,'Waraseoni','BALAGHAT','MADHYA PRADESH'),(481332,'Balaghat','BALAGHAT','MADHYA PRADESH'),(481335,'Waraseoni','BALAGHAT','MADHYA PRADESH'),(481337,'Waraseoni','BALAGHAT','MADHYA PRADESH'),(481441,'Katangi','BALAGHAT','MADHYA PRADESH'),(481445,'Katangi','BALAGHAT','MADHYA PRADESH'),(481449,'Mandla','MANDLA','MADHYA PRADESH'),(481551,'Balaghat','BALAGHAT','MADHYA PRADESH'),(481556,'Baihar','BALAGHAT','MADHYA PRADESH'),(481661,'Bichhiya','MANDLA','MADHYA PRADESH'),(481662,'Niwas','MANDLA','MADHYA PRADESH'),(481663,'Dindori','DINDORI','MADHYA PRADESH'),(481664,'Niwas','MANDLA','MADHYA PRADESH'),(481665,'Mandla','MANDLA','MADHYA PRADESH'),(481666,'Mandla','MANDLA','MADHYA PRADESH'),(481668,'Shahpura','DINDORI','MADHYA PRADESH'),(481672,'Nainpur','MANDLA','MADHYA PRADESH'),(481768,'Nainpur','MANDLA','MADHYA PRADESH'),(481771,'Niwas','MANDLA','MADHYA PRADESH'),(481776,'Nainpur','MANDLA','MADHYA PRADESH'),(481778,'Dindori','DINDORI','MADHYA PRADESH'),(481879,'Dindori','DINDORI','MADHYA PRADESH'),(481880,'Dindori','DINDORI','MADHYA PRADESH'),(481882,'Dindori','DINDORI','MADHYA PRADESH'),(481883,'Dindori','DINDORI','MADHYA PRADESH'),(481884,'Dindori','DINDORI','MADHYA PRADESH'),(481885,'Niwas','MANDLA','MADHYA PRADESH'),(481990,'Shahpura','DINDORI','MADHYA PRADESH'),(481995,'Bichhiya','MANDLA','MADHYA PRADESH'),(481996,'Bichhiya','MANDLA','MADHYA PRADESH'),(481998,'Mandla','MANDLA','MADHYA PRADESH'),(482001,'Kundam','JABALPUR','MADHYA PRADESH'),(482002,'Patan','JABALPUR','MADHYA PRADESH'),(482003,'Jabalpur','JABALPUR','MADHYA PRADESH'),(482004,'Jabalpur','JABALPUR','MADHYA PRADESH'),(482005,'Jabalpur','JABALPUR','MADHYA PRADESH'),(482008,'Jabalpur','JABALPUR','MADHYA PRADESH'),(482009,'Jabalpur','JABALPUR','MADHYA PRADESH'),(482010,'Jabalpur','JABALPUR','MADHYA PRADESH'),(482011,'Jabalpur','JABALPUR','MADHYA PRADESH'),(482020,'Jabalpur','JABALPUR','MADHYA PRADESH'),(482021,'Jabalpur','JABALPUR','MADHYA PRADESH'),(482051,'Jabalpur','JABALPUR','MADHYA PRADESH'),(482056,'Jabalpur','JABALPUR','MADHYA PRADESH'),(483001,'Jabalpur','JABALPUR','MADHYA PRADESH'),(483053,'Patan','JABALPUR','MADHYA PRADESH'),(483105,'Patan','JABALPUR','MADHYA PRADESH'),(483110,'Kundam','JABALPUR','MADHYA PRADESH'),(483113,'Patan','JABALPUR','MADHYA PRADESH'),(483119,'Jabalpur','JABALPUR','MADHYA PRADESH'),(483220,'Jabalpur','JABALPUR','MADHYA PRADESH'),(483222,'Sihora','JABALPUR','MADHYA PRADESH'),(483225,'Sihora','JABALPUR','MADHYA PRADESH'),(483330,'Bahoriband','KATNI','MADHYA PRADESH'),(483331,'Bahoriband','KATNI','MADHYA PRADESH'),(483332,'Dhimar Kheda','KATNI','MADHYA PRADESH'),(483334,'Sihora','JABALPUR','MADHYA PRADESH'),(483336,'Sihora','JABALPUR','MADHYA PRADESH'),(483440,'Bahoriband','KATNI','MADHYA PRADESH'),(483442,'Murwara','KATNI','MADHYA PRADESH'),(483501,'Murwara','KATNI','MADHYA PRADESH'),(483504,'Murwara','KATNI','MADHYA PRADESH'),(483770,'Vijayraghavgarh','KATNI','MADHYA PRADESH'),(483773,'Dhimar Kheda','KATNI','MADHYA PRADESH'),(483775,'Vijayraghavgarh','KATNI','MADHYA PRADESH'),(483880,'Vijayraghavgarh','KATNI','MADHYA PRADESH'),(483990,'Murwara','KATNI','MADHYA PRADESH'),(484001,'Sohagpur','SHAHDOL','MADHYA PRADESH'),(484110,'Sohagpur','SHAHDOL','MADHYA PRADESH'),(484113,'Anuppur','ANUPPUR','MADHYA PRADESH'),(484114,'Sohagpur','SHAHDOL','MADHYA PRADESH'),(484116,'Anuppur','ANUPPUR','MADHYA PRADESH'),(484117,'Sohagpur','SHAHDOL','MADHYA PRADESH'),(484120,'Sohagpur','SHAHDOL','MADHYA PRADESH'),(484220,'Anuppur','ANUPPUR','MADHYA PRADESH'),(484224,'Anuppur','ANUPPUR','MADHYA PRADESH'),(484330,'Anuppur','ANUPPUR','MADHYA PRADESH'),(484334,'Anuppur','ANUPPUR','MADHYA PRADESH'),(484336,'Anuppur','ANUPPUR','MADHYA PRADESH'),(484440,'Kotma','ANUPPUR','MADHYA PRADESH'),(484444,'Anuppur','ANUPPUR','MADHYA PRADESH'),(484446,'Kotma','ANUPPUR','MADHYA PRADESH'),(484447,'Anuppur','ANUPPUR','MADHYA PRADESH'),(484551,'Bandhogarh','UMARIA','MADHYA PRADESH'),(484555,'Bandhogarh','UMARIA','MADHYA PRADESH'),(484660,'Bandhogarh','UMARIA','MADHYA PRADESH'),(484661,'Bandhogarh','UMARIA','MADHYA PRADESH'),(484664,'Bandhogarh','UMARIA','MADHYA PRADESH'),(484665,'Bandhogarh','UMARIA','MADHYA PRADESH'),(484669,'Jaitpur','SHAHDOL','MADHYA PRADESH'),(484770,'Sohagpur','SHAHDOL','MADHYA PRADESH'),(484771,'Jaisinghnagar','SHAHDOL','MADHYA PRADESH'),(484774,'Beohari','SHAHDOL','MADHYA PRADESH'),(484776,'Beohari','SHAHDOL','MADHYA PRADESH'),(484881,'Pushparajgarh','ANUPPUR','MADHYA PRADESH'),(484886,'Pushparajgarh','ANUPPUR','MADHYA PRADESH'),(484887,'Pushparajgarh','ANUPPUR','MADHYA PRADESH'),(485001,'Raghurajnagar','SATNA','MADHYA PRADESH'),(485005,'Raghurajnagar','SATNA','MADHYA PRADESH'),(485111,'Rampur-Baghelan','SATNA','MADHYA PRADESH'),(485112,'Raghurajnagar','SATNA','MADHYA PRADESH'),(485113,'Raghurajnagar','SATNA','MADHYA PRADESH'),(485114,'Raghurajnagar','SATNA','MADHYA PRADESH'),(485115,'Rampur-Baghelan','SATNA','MADHYA PRADESH'),(485221,'Raghurajnagar','SATNA','MADHYA PRADESH'),(485226,'Nagod','SATNA','MADHYA PRADESH'),(485331,'Nagod','SATNA','MADHYA PRADESH'),(485334,'Raghurajnagar','SATNA','MADHYA PRADESH'),(485441,'Nagod','SATNA','MADHYA PRADESH'),(485446,'Nagod','SATNA','MADHYA PRADESH'),(485447,'Nagod','SATNA','MADHYA PRADESH'),(485551,'Nagod','SATNA','MADHYA PRADESH'),(485661,'Unchehara','SATNA','MADHYA PRADESH'),(485666,'Raghurajnagar','SATNA','MADHYA PRADESH'),(485771,'Maihar','SATNA','MADHYA PRADESH'),(485772,'Maihar','SATNA','MADHYA PRADESH'),(485773,'Maihar','SATNA','MADHYA PRADESH'),(485774,'Amarpatan','SATNA','MADHYA PRADESH'),(485775,'Amarpatan','SATNA','MADHYA PRADESH'),(485778,'Amarpatan','SATNA','MADHYA PRADESH'),(485881,'Ramnagar','SATNA','MADHYA PRADESH'),(486001,'Huzur','REWA','MADHYA PRADESH'),(486002,'Huzur','REWA','MADHYA PRADESH'),(486003,'Huzur','REWA','MADHYA PRADESH'),(486004,'Huzur','REWA','MADHYA PRADESH'),(486005,'Huzur','REWA','MADHYA PRADESH'),(486006,'Huzur','REWA','MADHYA PRADESH'),(486111,'Raipur - Karchuliyan','REWA','MADHYA PRADESH'),(486114,'Raipur - Karchuliyan','REWA','MADHYA PRADESH'),(486115,'Mauganj','REWA','MADHYA PRADESH'),(486117,'Teonthar','REWA','MADHYA PRADESH'),(486123,'Raipur - Karchuliyan','REWA','MADHYA PRADESH'),(486220,'Teonthar','REWA','MADHYA PRADESH'),(486223,'Teonthar','REWA','MADHYA PRADESH'),(486226,'Teonthar','REWA','MADHYA PRADESH'),(486331,'Mauganj','REWA','MADHYA PRADESH'),(486333,'Mauganj','REWA','MADHYA PRADESH'),(486335,'Hanumana','REWA','MADHYA PRADESH'),(486338,'Mauganj','REWA','MADHYA PRADESH'),(486340,'Mauganj','REWA','MADHYA PRADESH'),(486341,'Mauganj','REWA','MADHYA PRADESH'),(486440,'Sirmour','REWA','MADHYA PRADESH'),(486441,'Sirmour','REWA','MADHYA PRADESH'),(486445,'Sirmour','REWA','MADHYA PRADESH'),(486446,'Huzur','REWA','MADHYA PRADESH'),(486447,'Teonthar','REWA','MADHYA PRADESH'),(486448,'Sirmour','REWA','MADHYA PRADESH'),(486450,'Huzur','REWA','MADHYA PRADESH'),(486550,'Huzur','REWA','MADHYA PRADESH'),(486553,'Gurh','REWA','MADHYA PRADESH'),(486556,'Teonthar','REWA','MADHYA PRADESH'),(486661,'Gopadbanas','SIDHI','MADHYA PRADESH'),(486666,'Majholi','SIDHI','MADHYA PRADESH'),(486669,'Kusmi','SIDHI','MADHYA PRADESH'),(486670,'Rampur Naikin','SIDHI','MADHYA PRADESH'),(486675,'Sihawal','SIDHI','MADHYA PRADESH'),(486771,'Churhat','SIDHI','MADHYA PRADESH'),(486775,'Rampur Naikin','SIDHI','MADHYA PRADESH'),(486776,'Rampur Naikin','SIDHI','MADHYA PRADESH'),(486881,'Singrauli','SIDHI','MADHYA PRADESH'),(486882,'Chitrangi','SIDHI','MADHYA PRADESH'),(486884,'Gopadbanas','SIDHI','MADHYA PRADESH'),(486885,'Singrauli','SIDHI','MADHYA PRADESH'),(486886,'Singrauli','SIDHI','MADHYA PRADESH'),(486887,'Singrauli','SIDHI','MADHYA PRADESH'),(486888,'Singrauli','SIDHI','MADHYA PRADESH'),(486889,'Singrauli','SIDHI','MADHYA PRADESH'),(486890,'Singrauli','SIDHI','MADHYA PRADESH'),(486892,'Singrauli','SIDHI','MADHYA PRADESH'),(487001,'Kareli','NARSINGHPUR','MADHYA PRADESH'),(487110,'Narsimhapur','NARSINGHPUR','MADHYA PRADESH'),(487114,'Gotegaon','NARSINGHPUR','MADHYA PRADESH'),(487118,'Gotegaon','NARSINGHPUR','MADHYA PRADESH'),(487221,'Kareli','NARSINGHPUR','MADHYA PRADESH'),(487225,'Gadarwara','NARSINGHPUR','MADHYA PRADESH'),(487330,'Tendukheda','NARSINGHPUR','MADHYA PRADESH'),(487334,'Tendukheda','NARSINGHPUR','MADHYA PRADESH'),(487337,'Tendukheda','NARSINGHPUR','MADHYA PRADESH'),(487441,'Gadarwara','NARSINGHPUR','MADHYA PRADESH'),(487551,'Gadarwara','NARSINGHPUR','MADHYA PRADESH'),(487555,'Gadarwara','NARSINGHPUR','MADHYA PRADESH'),(487661,'Gadarwara','NARSINGHPUR','MADHYA PRADESH'),(487770,'Gadarwara','NARSINGHPUR','MADHYA PRADESH'),(487881,'Gadarwara','NARSINGHPUR','MADHYA PRADESH'),(488001,'Panna','PANNA','MADHYA PRADESH'),(488050,'Pawai','PANNA','MADHYA PRADESH'),(488051,'Gunnor','PANNA','MADHYA PRADESH'),(488059,'Gunnor','PANNA','MADHYA PRADESH'),(488220,'Ajaigarh','PANNA','MADHYA PRADESH'),(488222,'Ajaigarh','PANNA','MADHYA PRADESH'),(488333,'Panna','PANNA','MADHYA PRADESH'),(488441,'Gunnor','PANNA','MADHYA PRADESH'),(488442,'Shahnagar','PANNA','MADHYA PRADESH'),(488443,'Panna','PANNA','MADHYA PRADESH'),(488446,'Pawai','PANNA','MADHYA PRADESH'),(488448,'Shahnagar','PANNA','MADHYA PRADESH'),(490001,'Durg','DURG','CHATTISGARH'),(490006,'Durg','DURG','CHATTISGARH'),(490009,'Durg','DURG','CHATTISGARH'),(490011,'Durg','DURG','CHATTISGARH'),(490020,'Durg','DURG','CHATTISGARH'),(490021,'Durg','DURG','CHATTISGARH'),(490022,'Durg','DURG','CHATTISGARH'),(490023,'Durg','DURG','CHATTISGARH'),(490024,'Durg','DURG','CHATTISGARH'),(490025,'Durg','DURG','CHATTISGARH'),(490026,'Durg','DURG','CHATTISGARH'),(490036,'Dhamdha','DURG','CHATTISGARH'),(490042,'Dhamdha','DURG','CHATTISGARH'),(491001,'Durg','DURG','CHATTISGARH'),(491107,'Durg','DURG','CHATTISGARH'),(491111,'Patan','DURG','CHATTISGARH'),(491221,'Durg','DURG','CHATTISGARH'),(491222,'Durg','DURG','CHATTISGARH'),(491223,'Gunderdehi','DURG','CHATTISGARH'),(491225,'Gunderdehi','DURG','CHATTISGARH'),(491226,'Sanjaribalod','DURG','CHATTISGARH'),(491227,'Durg','DURG','CHATTISGARH'),(491228,'Sanjaribalod','DURG','CHATTISGARH'),(491229,'Manpur','RAJNANDGAON','CHATTISGARH'),(491331,'Dhamdha','DURG','CHATTISGARH'),(491332,'Berla','DURG','CHATTISGARH'),(491335,'Bemetra','DURG','CHATTISGARH'),(491336,'Kawardha','KAWARDHA','CHATTISGARH'),(491337,'Nawagarh','DURG','CHATTISGARH'),(491338,'Saja','DURG','CHATTISGARH'),(491340,'Nawagarh','DURG','CHATTISGARH'),(491441,'Rajnandgaon','RAJNANDGAON','CHATTISGARH'),(491444,'Rajnandgaon','RAJNANDGAON','CHATTISGARH'),(491445,'Dongargarh','RAJNANDGAON','CHATTISGARH'),(491557,'Rajnandgaon','RAJNANDGAON','CHATTISGARH'),(491558,'Rajnandgaon','RAJNANDGAON','CHATTISGARH'),(491559,'Pandariya','KAWARDHA','CHATTISGARH'),(491661,'Dongargaon','RAJNANDGAON','CHATTISGARH'),(491665,'Ambagarh','RAJNANDGAON','CHATTISGARH'),(491666,'Mohla','RAJNANDGAON','CHATTISGARH'),(491668,'Rajnandgaon','RAJNANDGAON','CHATTISGARH'),(491771,'Dondiluhara','DURG','CHATTISGARH'),(491881,'Khairagarh','RAJNANDGAON','CHATTISGARH'),(491885,'Chhuikhadan','RAJNANDGAON','CHATTISGARH'),(491888,'Kawardha','KAWARDHA','CHATTISGARH'),(491993,'Saja','DURG','CHATTISGARH'),(491995,'Kawardha','KAWARDHA','CHATTISGARH'),(492001,'Raipur','RAIPUR','CHATTISGARH'),(492002,'Raipur','RAIPUR','CHATTISGARH'),(492003,'Raipur','RAIPUR','CHATTISGARH'),(492004,'Raipur','RAIPUR','CHATTISGARH'),(492005,'Raipur','RAIPUR','CHATTISGARH'),(492008,'Raipur','RAIPUR','CHATTISGARH'),(492009,'Raipur','RAIPUR','CHATTISGARH'),(492010,'Raipur','RAIPUR','CHATTISGARH'),(492012,'Raipur','RAIPUR','CHATTISGARH'),(492013,'Raipur','RAIPUR','CHATTISGARH'),(492014,'Raipur','RAIPUR','CHATTISGARH'),(492015,'Raipur','RAIPUR','CHATTISGARH'),(492099,'Raipur','RAIPUR','CHATTISGARH'),(492101,'Arang','RAIPUR','CHATTISGARH'),(492109,'Bindranawagarh','RAIPUR','CHATTISGARH'),(492112,'Kasdol','RAIPUR','CHATTISGARH'),(493101,'Bhatapara','RAIPUR','CHATTISGARH'),(493111,'Raipur','RAIPUR','CHATTISGARH'),(493113,'Simga','RAIPUR','CHATTISGARH'),(493114,'Tilda','RAIPUR','CHATTISGARH'),(493116,'Tilda','RAIPUR','CHATTISGARH'),(493118,'Bhatapara','RAIPUR','CHATTISGARH'),(493195,'Simga','RAIPUR','CHATTISGARH'),(493196,'Palari','RAIPUR','CHATTISGARH'),(493221,'Tilda','RAIPUR','CHATTISGARH'),(493222,'Bilaigarh','RAIPUR','CHATTISGARH'),(493225,'Arang','RAIPUR','CHATTISGARH'),(493228,'Palari','RAIPUR','CHATTISGARH'),(493229,'Palari','RAIPUR','CHATTISGARH'),(493331,'Baloda Bazar','RAIPUR','CHATTISGARH'),(493332,'Baloda Bazar','RAIPUR','CHATTISGARH'),(493335,'Kasdol','RAIPUR','CHATTISGARH'),(493338,'Bilaigarh','RAIPUR','CHATTISGARH'),(493344,'Kasdol','RAIPUR','CHATTISGARH'),(493441,'Arang','RAIPUR','CHATTISGARH'),(493445,'Kasdol','RAIPUR','CHATTISGARH'),(493448,'Mahasamund','MAHASAMUND','CHATTISGARH'),(493449,'Mahasamund','MAHASAMUND','CHATTISGARH'),(493526,'Baloda Bazar','RAIPUR','CHATTISGARH'),(493551,'Mahasamund','MAHASAMUND','CHATTISGARH'),(493554,'Basna','MAHASAMUND','CHATTISGARH'),(493555,'Basna','MAHASAMUND','CHATTISGARH'),(493558,'Saraipali','MAHASAMUND','CHATTISGARH'),(493559,'Bilaigarh','RAIPUR','CHATTISGARH'),(493661,'Abhanpur','RAIPUR','CHATTISGARH'),(493662,'Kurud','DHAMTARI','CHATTISGARH'),(493663,'Kurud','DHAMTARI','CHATTISGARH'),(493770,'Kurud','DHAMTARI','CHATTISGARH'),(493773,'Dhamtari','DHAMTARI','CHATTISGARH'),(493776,'Dhamtari','DHAMTARI','CHATTISGARH'),(493778,'Nagri','DHAMTARI','CHATTISGARH'),(493881,'Rajim','RAIPUR','CHATTISGARH'),(493885,'Rajim','RAIPUR','CHATTISGARH'),(493887,'Rajim','RAIPUR','CHATTISGARH'),(493888,'Bindranawagarh','RAIPUR','CHATTISGARH'),(493889,'Bindranawagarh','RAIPUR','CHATTISGARH'),(493890,'Bindranawagarh','RAIPUR','CHATTISGARH'),(493891,'Bindranawagarh','RAIPUR','CHATTISGARH'),(493992,'Rajim','RAIPUR','CHATTISGARH'),(493996,'Bindranawagarh','RAIPUR','CHATTISGARH'),(494001,'Jagdalpur','BASTAR','CHATTISGARH'),(494010,'Jagdalpur','BASTAR','CHATTISGARH'),(494111,'Konta','DANTEWADA','CHATTISGARH'),(494114,'Konta','DANTEWADA','CHATTISGARH'),(494115,'Jagdalpur','BASTAR','CHATTISGARH'),(494122,'Konta','DANTEWADA','CHATTISGARH'),(494221,'Jagdalpur','BASTAR','CHATTISGARH'),(494222,'Jagdalpur','BASTAR','CHATTISGARH'),(494223,'Jagdalpur','BASTAR','CHATTISGARH'),(494224,'Jagdalpur','BASTAR','CHATTISGARH'),(494226,'Kondagaon','BASTAR','CHATTISGARH'),(494228,'Keshkal','BASTAR','CHATTISGARH'),(494229,'Kondagaon','BASTAR','CHATTISGARH'),(494230,'Keshkal','BASTAR','CHATTISGARH'),(494237,'Kondagaon','BASTAR','CHATTISGARH'),(494331,'Keshkal','BASTAR','CHATTISGARH'),(494333,'Bijapur','BIJAPUR','CHATTISGARH'),(494334,'Kanker','KANKER','CHATTISGARH'),(494335,'Narharpur','KANKER','CHATTISGARH'),(494336,'Dhamtari','DHAMTARI','CHATTISGARH'),(494337,'Kanker','KANKER','CHATTISGARH'),(494347,'Nagri','DHAMTARI','CHATTISGARH'),(494441,'Jagdalpur','BASTAR','CHATTISGARH'),(494442,'Jagdalpur','BASTAR','CHATTISGARH'),(494444,'Bijapur','BIJAPUR','CHATTISGARH'),(494446,'Bhopalpattanam','DANTEWADA','CHATTISGARH'),(494447,'Bhopalpattanam','DANTEWADA','CHATTISGARH'),(494448,'Bhopalpattanam','DANTEWADA','CHATTISGARH'),(494449,'Dantewada','DANTEWADA','CHATTISGARH'),(494450,'Bhopalpattanam','DANTEWADA','CHATTISGARH'),(494552,'Dantewada','DANTEWADA','CHATTISGARH'),(494553,'Bijapur','BIJAPUR','CHATTISGARH'),(494556,'Dantewada','DANTEWADA','CHATTISGARH'),(494635,'Bhanupratappur','KANKER','CHATTISGARH'),(494661,'Narayanpur','NARAYANPUR','CHATTISGARH'),(494665,'Antagarh','KANKER','CHATTISGARH'),(494669,'Bhanupratappur','KANKER','CHATTISGARH'),(494670,'Bhanupratappur','KANKER','CHATTISGARH'),(494771,'Pakhanjur','KANKER','CHATTISGARH'),(494776,'Pakhanjur','KANKER','CHATTISGARH'),(494777,'Pakhanjur','KANKER','CHATTISGARH'),(495001,'Bilaspur','BILASPUR','CHATTISGARH'),(495003,'Bilaspur','BILASPUR','CHATTISGARH'),(495004,'Bilaspur','BILASPUR','CHATTISGARH'),(495006,'Masturi','BILASPUR','CHATTISGARH'),(495009,'Bilaspur','BILASPUR','CHATTISGARH'),(495112,'Takhatpur','BILASPUR','CHATTISGARH'),(495113,'Lormi','BILASPUR','CHATTISGARH'),(495115,'Lormi','BILASPUR','CHATTISGARH'),(495116,'Kota','BILASPUR','CHATTISGARH'),(495117,'Pendraroad','BILASPUR','CHATTISGARH'),(495118,'Pendraroad','BILASPUR','CHATTISGARH'),(495119,'Pendraroad','BILASPUR','CHATTISGARH'),(495220,'Takhatpur','BILASPUR','CHATTISGARH'),(495222,'Takhatpur','BILASPUR','CHATTISGARH'),(495224,'Bilha','BILASPUR','CHATTISGARH'),(495330,'Mungeli','BILASPUR','CHATTISGARH'),(495334,'Mungeli','BILASPUR','CHATTISGARH'),(495335,'Mungeli','BILASPUR','CHATTISGARH'),(495442,'Bilaspur','BILASPUR','CHATTISGARH'),(495445,'Katghora','KORBA','CHATTISGARH'),(495446,'Pali','KORBA','CHATTISGARH'),(495447,'Korba','KORBA','CHATTISGARH'),(495448,'Katghora','KORBA','CHATTISGARH'),(495449,'Bilaspur','BILASPUR','CHATTISGARH'),(495450,'Katghora','KORBA','CHATTISGARH'),(495452,'Korba','KORBA','CHATTISGARH'),(495454,'Katghora','KORBA','CHATTISGARH'),(495455,'Korba','KORBA','CHATTISGARH'),(495550,'Masturi','BILASPUR','CHATTISGARH'),(495551,'Masturi','BILASPUR','CHATTISGARH'),(495552,'Janjgir','JANJGIR-CHAMPA','CHATTISGARH'),(495553,'Janjgir','JANJGIR-CHAMPA','CHATTISGARH'),(495554,'Pamgarh','JANJGIR-CHAMPA','CHATTISGARH'),(495555,'Masturi','BILASPUR','CHATTISGARH'),(495556,'Pamgarh','JANJGIR-CHAMPA','CHATTISGARH'),(495557,'Janjgir','JANJGIR-CHAMPA','CHATTISGARH'),(495559,'Masturi','BILASPUR','CHATTISGARH'),(495660,'Champa','JANJGIR-CHAMPA','CHATTISGARH'),(495661,'Champa','JANJGIR-CHAMPA','CHATTISGARH'),(495663,'Janjgir','JANJGIR-CHAMPA','CHATTISGARH'),(495668,'Janjgir','JANJGIR-CHAMPA','CHATTISGARH'),(495671,'Kartala','KORBA','CHATTISGARH'),(495674,'Korba','KORBA','CHATTISGARH'),(495677,'Korba','KORBA','CHATTISGARH'),(495682,'Korba','KORBA','CHATTISGARH'),(495683,'Korba','KORBA','CHATTISGARH'),(495684,'Korba','KORBA','CHATTISGARH'),(495686,'Janjgir','JANJGIR-CHAMPA','CHATTISGARH'),(495687,'Champa','JANJGIR-CHAMPA','CHATTISGARH'),(495688,'Dabhara','JANJGIR-CHAMPA','CHATTISGARH'),(495689,'Sakti','JANJGIR-CHAMPA','CHATTISGARH'),(495690,'Jaijaipur','JANJGIR-CHAMPA','CHATTISGARH'),(495691,'Malkharoda','JANJGIR-CHAMPA','CHATTISGARH'),(495692,'Dabhara','JANJGIR-CHAMPA','CHATTISGARH'),(495695,'Malkharoda','JANJGIR-CHAMPA','CHATTISGARH'),(496001,'Raigarh','RAIGARH','CHATTISGARH'),(496005,'Raigarh','RAIGARH','CHATTISGARH'),(496100,'Raigarh','RAIGARH','CHATTISGARH'),(496107,'Gharghoda','RAIGARH','CHATTISGARH'),(496108,'Raigarh','RAIGARH','CHATTISGARH'),(496109,'Gharghoda','RAIGARH','CHATTISGARH'),(496111,'Gharghoda','RAIGARH','CHATTISGARH'),(496113,'Lailunga','RAIGARH','CHATTISGARH'),(496115,'Lailunga','RAIGARH','CHATTISGARH'),(496116,'Udaipur (Dharamjaigarh)','RAIGARH','CHATTISGARH'),(496118,'Udaipur (Dharamjaigarh)','RAIGARH','CHATTISGARH'),(496220,'Kunkuri','JASHPUR','CHATTISGARH'),(496223,'Bagicha','JASHPUR','CHATTISGARH'),(496224,'Bagicha','JASHPUR','CHATTISGARH'),(496225,'Kunkuri','JASHPUR','CHATTISGARH'),(496227,'Kunkuri','JASHPUR','CHATTISGARH'),(496242,'Kunkuri','JASHPUR','CHATTISGARH'),(496245,'Kunkuri','JASHPUR','CHATTISGARH'),(496330,'Jashpur','JASHPUR','CHATTISGARH'),(496331,'Jashpur','JASHPUR','CHATTISGARH'),(496334,'Kunkuri','JASHPUR','CHATTISGARH'),(496336,'Jashpur','JASHPUR','CHATTISGARH'),(496338,'Jashpur','JASHPUR','CHATTISGARH'),(496440,'Raigarh','RAIGARH','CHATTISGARH'),(496445,'Sarangarh','RAIGARH','CHATTISGARH'),(496450,'Sarangarh','RAIGARH','CHATTISGARH'),(496551,'Sarangarh','RAIGARH','CHATTISGARH'),(496554,'Sarangarh','RAIGARH','CHATTISGARH'),(496661,'Kharsia','RAIGARH','CHATTISGARH'),(496665,'Udaipur (Dharamjaigarh)','RAIGARH','CHATTISGARH'),(497001,'Ambikapur','SURGUJA','CHATTISGARH'),(497101,'Lundra','SURGUJA','CHATTISGARH'),(497111,'Sitapur','SURGUJA','CHATTISGARH'),(497114,'Sitapur','SURGUJA','CHATTISGARH'),(497116,'Ambikapur','SURGUJA','CHATTISGARH'),(497117,'Ambikapur','SURGUJA','CHATTISGARH'),(497118,'Rajpur','SURGUJA','CHATTISGARH'),(497119,'Pal','SURGUJA','CHATTISGARH'),(497220,'Pal','SURGUJA','CHATTISGARH'),(497223,'Pratappur','SURGUJA','CHATTISGARH'),(497224,'Samari','SURGUJA','CHATTISGARH'),(497225,'Wadrafnagar','SURGUJA','CHATTISGARH'),(497226,'Surajpur','SURGUJA','CHATTISGARH'),(497229,'Pal','SURGUJA','CHATTISGARH'),(497231,'Surajpur','SURGUJA','CHATTISGARH'),(497235,'Surajpur','SURGUJA','CHATTISGARH'),(497331,'Sitapur','SURGUJA','CHATTISGARH'),(497333,'Surajpur','SURGUJA','CHATTISGARH'),(497335,'Baikunthpur','KORIYA','CHATTISGARH'),(497339,'Surajpur','SURGUJA','CHATTISGARH'),(497442,'Manendragarh','KORIYA','CHATTISGARH'),(497446,'Manendragarh','KORIYA','CHATTISGARH'),(497447,'Manendragarh','KORIYA','CHATTISGARH'),(497448,'Manendragarh','KORIYA','CHATTISGARH'),(497449,'Manendragarh','KORIYA','CHATTISGARH'),(497451,'Manendragarh','KORIYA','CHATTISGARH'),(497553,'Baikunthpur','KORIYA','CHATTISGARH'),(497555,'Manendragarh','KORIYA','CHATTISGARH'),(497557,'Manendragarh','KORIYA','CHATTISGARH'),(497559,'Baikunthpur','KORIYA','CHATTISGARH'),(497773,'Baikunthpur','KORIYA','CHATTISGARH'),(497778,'Bharatpur','KORIYA','CHATTISGARH'),(500001,'Nampally','HYDERABAD','TELANGANA'),(500002,'Charminar','HYDERABAD','TELANGANA'),(500003,'Secunderabad','HYDERABAD','TELANGANA'),(500004,'Khairatabad','HYDERABAD','TELANGANA'),(500005,'Bandlaguda','HYDERABAD','TELANGANA'),(500006,'Asifnagar','HYDERABAD','TELANGANA'),(500007,'Secunderabad','HYDERABAD','TELANGANA'),(500008,'Golconda','HYDERABAD','TELANGANA'),(500009,'Tirumalagiri','HYDERABAD','TELANGANA'),(500010,'Malkajgiri','K.V.RANGAREDDY','TELANGANA'),(500011,'Tirumalagiri','HYDERABAD','TELANGANA'),(500012,'Nampally','HYDERABAD','TELANGANA'),(500013,'Amberpet','HYDERABAD','TELANGANA'),(500014,'Tirumalagiri','HYDERABAD','TELANGANA'),(500015,'Tirumalagiri','HYDERABAD','TELANGANA'),(500016,'Secunderabad','HYDERABAD','TELANGANA'),(500017,'Secunderabad','HYDERABAD','TELANGANA'),(500018,'Balanagar','K.V.RANGAREDDY','TELANGANA'),(500019,'Serilingampally','K.V.RANGAREDDY','TELANGANA'),(500020,'Musheerabad','HYDERABAD','TELANGANA'),(500022,'Khairatabad','HYDERABAD','TELANGANA'),(500023,'Charminar','HYDERABAD','TELANGANA'),(500024,'Saidabad','HYDERABAD','TELANGANA'),(500025,'Secunderabad','HYDERABAD','TELANGANA'),(500026,'Secunderabad','HYDERABAD','TELANGANA'),(500027,'Himayathnagar','HYDERABAD','TELANGANA'),(500028,'Asifnagar','HYDERABAD','TELANGANA'),(500029,'Himayathnagar','HYDERABAD','TELANGANA'),(500030,'Rajendranagar','K.V.RANGAREDDY','TELANGANA'),(500031,'Golconda','HYDERABAD','TELANGANA'),(500032,'Serilingampally','K.V.RANGAREDDY','TELANGANA'),(500033,'Shaikpet','HYDERABAD','TELANGANA'),(500034,'Khairatabad','HYDERABAD','TELANGANA'),(500035,'Saroornagar','K.V.RANGAREDDY','TELANGANA'),(500036,'Saidabad','HYDERABAD','TELANGANA'),(500037,'Tirumalagiri','HYDERABAD','TELANGANA'),(500038,'Ameerpet','HYDERABAD','TELANGANA'),(500039,'Ghatkesar','K.V.RANGAREDDY','TELANGANA'),(500040,'Secunderabad','HYDERABAD','TELANGANA'),(500041,'Khairatabad','HYDERABAD','TELANGANA'),(500042,'Tirumalagiri','HYDERABAD','TELANGANA'),(500043,'Qutubullapur','K.V.RANGAREDDY','TELANGANA'),(500044,'Musheerabad','HYDERABAD','TELANGANA'),(500045,'Khairatabad','HYDERABAD','TELANGANA'),(500046,'Serilingampally','K.V.RANGAREDDY','TELANGANA'),(500047,'Tirumalagiri','HYDERABAD','TELANGANA'),(500048,'Rajendranagar','K.V.RANGAREDDY','TELANGANA'),(500049,'Tirumalagiri','HYDERABAD','TELANGANA'),(500050,'Tirumalagiri','HYDERABAD','TELANGANA'),(500051,'Uppal','K.V.RANGAREDDY','TELANGANA'),(500052,'Shamshabad','K.V.RANGAREDDY','TELANGANA'),(500053,'Charminar','HYDERABAD','TELANGANA'),(500054,'Tirumalagiri','HYDERABAD','TELANGANA'),(500055,'Qutubullapur','K.V.RANGAREDDY','TELANGANA'),(500056,'Tirumalagiri','HYDERABAD','TELANGANA'),(500057,'Asifnagar','HYDERABAD','TELANGANA'),(500058,'Bandlaguda','HYDERABAD','TELANGANA'),(500059,'Saidabad','HYDERABAD','TELANGANA'),(500060,'Saroornagar','K.V.RANGAREDDY','TELANGANA'),(500061,'Secunderabad','HYDERABAD','TELANGANA'),(500062,'Secunderabad','HYDERABAD','TELANGANA'),(500063,'Himayathnagar','HYDERABAD','TELANGANA'),(500064,'Bahadurpura','HYDERABAD','TELANGANA'),(500065,'Charminar','HYDERABAD','TELANGANA'),(500066,'Charminar','HYDERABAD','TELANGANA'),(500067,'Qutubullapur','K.V.RANGAREDDY','TELANGANA'),(500068,'Hayathnagar','K.V.RANGAREDDY','TELANGANA'),(500069,'Bandlaguda','HYDERABAD','TELANGANA'),(500070,'Hayathnagar','K.V.RANGAREDDY','TELANGANA'),(500072,'Tirumalagiri','HYDERABAD','TELANGANA'),(500073,'Khairatabad','HYDERABAD','TELANGANA'),(500074,'Saroornagar','K.V.RANGAREDDY','TELANGANA'),(500075,'Moinabad','K.V.RANGAREDDY','TELANGANA'),(500076,'Uppal','K.V.RANGAREDDY','TELANGANA'),(500077,'Rajendranagar','K.V.RANGAREDDY','TELANGANA'),(500078,'Shamirpet','K.V.RANGAREDDY','TELANGANA'),(500079,'Saroornagar','K.V.RANGAREDDY','TELANGANA'),(500080,'Secunderabad','HYDERABAD','TELANGANA'),(500081,'Shaikpet','HYDERABAD','TELANGANA'),(500082,'Nampally','HYDERABAD','TELANGANA'),(500083,'Keesara','K.V.RANGAREDDY','TELANGANA'),(500084,'Serilingampally','K.V.RANGAREDDY','TELANGANA'),(500085,'Tirumalagiri','HYDERABAD','TELANGANA'),(500086,'Rajendranagar','K.V.RANGAREDDY','TELANGANA'),(500087,'Tirumalagiri','HYDERABAD','TELANGANA'),(500088,'Ghatkesar','K.V.RANGAREDDY','TELANGANA'),(500089,'Rajendranagar','K.V.RANGAREDDY','TELANGANA'),(500090,'Qutubullapur','K.V.RANGAREDDY','TELANGANA'),(500091,'Golconda','HYDERABAD','TELANGANA'),(500092,'Ghatkesar','K.V.RANGAREDDY','TELANGANA'),(500093,'Tirumalagiri','HYDERABAD','TELANGANA'),(500094,'Tirumalagiri','HYDERABAD','TELANGANA'),(500095,'Nampally','HYDERABAD','TELANGANA'),(500096,'Shaikpet','HYDERABAD','TELANGANA'),(500097,'Saroornagar','K.V.RANGAREDDY','TELANGANA'),(500098,'Ghatkesar','K.V.RANGAREDDY','TELANGANA'),(500100,'Medchal','K.V.RANGAREDDY','TELANGANA'),(500101,'Shamirpet','K.V.RANGAREDDY','TELANGANA'),(500103,'Secunderabad','HYDERABAD','TELANGANA'),(500105,'Khairatabad','HYDERABAD','TELANGANA'),(500107,'Ameerpet','HYDERABAD','TELANGANA'),(501101,'Vicarabad','K.V.RANGAREDDY','TELANGANA'),(501102,'Vicarabad','K.V.RANGAREDDY','TELANGANA'),(501106,'Bantwaram','K.V.RANGAREDDY','TELANGANA'),(501111,'Nawabpet','K.V.RANGAREDDY','TELANGANA'),(501121,'Dharur','K.V.RANGAREDDY','TELANGANA'),(501141,'Tandur','K.V.RANGAREDDY','TELANGANA'),(501142,'Peddemul','K.V.RANGAREDDY','TELANGANA'),(501143,'Basheerabad','K.V.RANGAREDDY','TELANGANA'),(501144,'Yelal','K.V.RANGAREDDY','TELANGANA'),(501158,'Tandur','K.V.RANGAREDDY','TELANGANA'),(501202,'Marpalle','K.V.RANGAREDDY','TELANGANA'),(501203,'Shankarpalle','K.V.RANGAREDDY','TELANGANA'),(501218,'Shamshabad','K.V.RANGAREDDY','TELANGANA'),(501301,'Keesara','K.V.RANGAREDDY','TELANGANA'),(501359,'Kandukur','K.V.RANGAREDDY','TELANGANA'),(501401,'Medchal','K.V.RANGAREDDY','TELANGANA'),(501501,'Pudur','K.V.RANGAREDDY','TELANGANA'),(501502,'Doma','K.V.RANGAREDDY','TELANGANA'),(501503,'Chevella','K.V.RANGAREDDY','TELANGANA'),(501504,'Shamshabad','K.V.RANGAREDDY','TELANGANA'),(501505,'Hayathnagar','K.V.RANGAREDDY','TELANGANA'),(501506,'Ibrahimpatnam','K.V.RANGAREDDY','TELANGANA'),(501508,'Manchal','K.V.RANGAREDDY','TELANGANA'),(501509,'Ibrahimpatnam','K.V.RANGAREDDY','TELANGANA'),(501510,'Hayathnagar','K.V.RANGAREDDY','TELANGANA'),(501511,'Hayathnagar','K.V.RANGAREDDY','TELANGANA'),(501512,'Hayathnagar','K.V.RANGAREDDY','TELANGANA'),(502001,'Sangareddy','MEDAK','TELANGANA'),(502032,'Ramachandrapuram','MEDAK','TELANGANA'),(502101,'Ramayampet','MEDAK','TELANGANA'),(502102,'Mirdoddi','MEDAK','TELANGANA'),(502103,'Siddipet','MEDAK','TELANGANA'),(502107,'Siddipet','MEDAK','TELANGANA'),(502108,'Mirdoddi','MEDAK','TELANGANA'),(502109,'Kulcharam','MEDAK','TELANGANA'),(502110,'Medak','MEDAK','TELANGANA'),(502113,'Medak','MEDAK','TELANGANA'),(502114,'Dubbak','MEDAK','TELANGANA'),(502115,'Ramayampet','MEDAK','TELANGANA'),(502117,'Shankarampet (R)','MEDAK','TELANGANA'),(502125,'Papannapet','MEDAK','TELANGANA'),(502130,'Medak','MEDAK','TELANGANA'),(502205,'Sangareddy','MEDAK','TELANGANA'),(502210,'Kohir','MEDAK','TELANGANA'),(502220,'Zahirabad','MEDAK','TELANGANA'),(502221,'Zahirabad','MEDAK','TELANGANA'),(502228,'Zahirabad','MEDAK','TELANGANA'),(502246,'Jharasangam','MEDAK','TELANGANA'),(502247,'Doultabad','MEDAK','TELANGANA'),(502248,'Shankarampet (R)','MEDAK','TELANGANA'),(502249,'Nyalkal','MEDAK','TELANGANA'),(502251,'Nyalkal','MEDAK','TELANGANA'),(502255,'Yeldurthy','MEDAK','TELANGANA'),(502256,'Nyalkal','MEDAK','TELANGANA'),(502257,'Raikode','MEDAK','TELANGANA'),(502267,'Chinnakodur','MEDAK','TELANGANA'),(502269,'Alladurg','MEDAK','TELANGANA'),(502270,'Andole','MEDAK','TELANGANA'),(502271,'Shankarampet (A)','MEDAK','TELANGANA'),(502273,'Pulkal','MEDAK','TELANGANA'),(502276,'Chinnakodur','MEDAK','TELANGANA'),(502277,'Siddipet','MEDAK','TELANGANA'),(502278,'Doultabad','MEDAK','TELANGANA'),(502279,'Wargal','MEDAK','TELANGANA'),(502280,'Nangnoor','MEDAK','TELANGANA'),(502281,'Jagdevpur','MEDAK','TELANGANA'),(502285,'Sangareddy','MEDAK','TELANGANA'),(502286,'Narayankhed','MEDAK','TELANGANA'),(502287,'Kangti','MEDAK','TELANGANA'),(502290,'Regode','MEDAK','TELANGANA'),(502291,'Sadasivpet','MEDAK','TELANGANA'),(502293,'Pulkal','MEDAK','TELANGANA'),(502294,'Sangareddy','MEDAK','TELANGANA'),(502295,'Kondapur','MEDAK','TELANGANA'),(502296,'Sangareddy','MEDAK','TELANGANA'),(502300,'Patancheru','MEDAK','TELANGANA'),(502301,'Gajwel','MEDAK','TELANGANA'),(502302,'Papannapet','MEDAK','TELANGANA'),(502303,'Papannapet','MEDAK','TELANGANA'),(502305,'Patancheru','MEDAK','TELANGANA'),(502306,'Kondapur','MEDAK','TELANGANA'),(502307,'Patancheru','MEDAK','TELANGANA'),(502310,'Chinnakodur','MEDAK','TELANGANA'),(502311,'Gajwel','MEDAK','TELANGANA'),(502312,'Gajwel','MEDAK','TELANGANA'),(502313,'Hathnoora','MEDAK','TELANGANA'),(502314,'Kowdipalle','MEDAK','TELANGANA'),(502316,'Narsapur','MEDAK','TELANGANA'),(502318,'Zahirabad','MEDAK','TELANGANA'),(502319,'Patancheru','MEDAK','TELANGANA'),(502321,'Jharasangam','MEDAK','TELANGANA'),(502324,'Patancheru','MEDAK','TELANGANA'),(502325,'Sangareddy','MEDAK','TELANGANA'),(502329,'Patancheru','MEDAK','TELANGANA'),(502331,'Papannapet','MEDAK','TELANGANA'),(502334,'Doultabad','MEDAK','TELANGANA'),(502335,'Tupran','MEDAK','TELANGANA'),(502336,'Tupran','MEDAK','TELANGANA'),(502345,'Munpalle','MEDAK','TELANGANA'),(502371,'Narayankhed','MEDAK','TELANGANA'),(502372,'Kondapak','MEDAK','TELANGANA'),(502375,'Nangnoor','MEDAK','TELANGANA'),(502381,'Kulcharam','MEDAK','TELANGANA'),(503001,'Nizamabad','NIZAMABAD','TELANGANA'),(503002,'Nizamabad','NIZAMABAD','TELANGANA'),(503003,'Makloor','NIZAMABAD','TELANGANA'),(503101,'Bhiknoor','NIZAMABAD','TELANGANA'),(503102,'Bhiknoor','NIZAMABAD','TELANGANA'),(503108,'Nagareddipet','NIZAMABAD','TELANGANA'),(503110,'Bhiknoor','NIZAMABAD','TELANGANA'),(503111,'Kamareddy','NIZAMABAD','TELANGANA'),(503112,'Tadwai','NIZAMABAD','TELANGANA'),(503114,'Gandhari','NIZAMABAD','TELANGANA'),(503120,'Tadwai','NIZAMABAD','TELANGANA'),(503122,'Gandhari','NIZAMABAD','TELANGANA'),(503123,'Machareddy','NIZAMABAD','TELANGANA'),(503124,'Lingampet','NIZAMABAD','TELANGANA'),(503125,'Domakonda','NIZAMABAD','TELANGANA'),(503144,'Kamareddy','NIZAMABAD','TELANGANA'),(503145,'Sadasivanagar','NIZAMABAD','TELANGANA'),(503164,'Dharpalle','NIZAMABAD','TELANGANA'),(503165,'Sirkonda','NIZAMABAD','TELANGANA'),(503174,'Dichpalle','NIZAMABAD','TELANGANA'),(503175,'Dichpalle','NIZAMABAD','TELANGANA'),(503180,'Bodhan','NIZAMABAD','TELANGANA'),(503185,'Bodhan','NIZAMABAD','TELANGANA'),(503186,'Navipet','NIZAMABAD','TELANGANA'),(503187,'Banswada','NIZAMABAD','TELANGANA'),(503188,'Varni','NIZAMABAD','TELANGANA'),(503201,'Varni','NIZAMABAD','TELANGANA'),(503202,'Yedpalle','NIZAMABAD','TELANGANA'),(503206,'Varni','NIZAMABAD','TELANGANA'),(503207,'Kotgiri','NIZAMABAD','TELANGANA'),(503212,'Nandipet','NIZAMABAD','TELANGANA'),(503213,'Makloor','NIZAMABAD','TELANGANA'),(503217,'Balkonda','NIZAMABAD','TELANGANA'),(503218,'Balkonda','NIZAMABAD','TELANGANA'),(503219,'Balkonda','NIZAMABAD','TELANGANA'),(503223,'Armur','NIZAMABAD','TELANGANA'),(503224,'Armur','NIZAMABAD','TELANGANA'),(503225,'Mortad','NIZAMABAD','TELANGANA'),(503230,'Nizamabad','NIZAMABAD','TELANGANA'),(503235,'Yedpalle','NIZAMABAD','TELANGANA'),(503245,'Navipet','NIZAMABAD','TELANGANA'),(503246,'Makloor','NIZAMABAD','TELANGANA'),(503301,'Birkoor','NIZAMABAD','TELANGANA'),(503302,'Nizamsagar','NIZAMABAD','TELANGANA'),(503305,'Jukkal','NIZAMABAD','TELANGANA'),(503306,'Bichkunda','NIZAMABAD','TELANGANA'),(503307,'Bheemgal','NIZAMABAD','TELANGANA'),(503308,'Kammarpalle','NIZAMABAD','TELANGANA'),(503309,'Madnoor','NIZAMABAD','TELANGANA'),(503310,'Pitlam','NIZAMABAD','TELANGANA'),(503311,'Velpur','NIZAMABAD','TELANGANA'),(503321,'Birkoor','NIZAMABAD','TELANGANA'),(503322,'Nizamabad','NIZAMABAD','TELANGANA'),(504001,'Adilabad','ADILABAD','TELANGANA'),(504002,'Adilabad','ADILABAD','TELANGANA'),(504101,'Mudhole','ADILABAD','TELANGANA'),(504102,'Tanoor','ADILABAD','TELANGANA'),(504103,'Kubeer','ADILABAD','TELANGANA'),(504104,'Dilawarpur','ADILABAD','TELANGANA'),(504105,'Nirmal','ADILABAD','TELANGANA'),(504106,'Laxmanchanda','ADILABAD','TELANGANA'),(504107,'Mudhole','ADILABAD','TELANGANA'),(504109,'Kuntala','ADILABAD','TELANGANA'),(504110,'Sarangapur','ADILABAD','TELANGANA'),(504201,'Chennur','ADILABAD','TELANGANA'),(504202,'Kaddam (Peddur)','ADILABAD','TELANGANA'),(504203,'Khanapur','ADILABAD','TELANGANA'),(504204,'Jaipur','ADILABAD','TELANGANA'),(504205,'Jannaram','ADILABAD','TELANGANA'),(504206,'Dandepalle','ADILABAD','TELANGANA'),(504207,'Luxettipet','ADILABAD','TELANGANA'),(504208,'Mancherial','ADILABAD','TELANGANA'),(504209,'Mancherial','ADILABAD','TELANGANA'),(504214,'Kotapalle','ADILABAD','TELANGANA'),(504215,'Luxettipet','ADILABAD','TELANGANA'),(504216,'Mandamarri','ADILABAD','TELANGANA'),(504218,'Kasipet','ADILABAD','TELANGANA'),(504219,'Jannaram','ADILABAD','TELANGANA'),(504220,'Rebbana','ADILABAD','TELANGANA'),(504231,'Mandamarri','ADILABAD','TELANGANA'),(504251,'Bhimini','ADILABAD','TELANGANA'),(504272,'Tandur','ADILABAD','TELANGANA'),(504273,'Dahegaon','ADILABAD','TELANGANA'),(504292,'Rebbana','ADILABAD','TELANGANA'),(504293,'Asifabad','ADILABAD','TELANGANA'),(504294,'Asifabad','ADILABAD','TELANGANA'),(504295,'Wankdi','ADILABAD','TELANGANA'),(504296,'Kagaznagar','ADILABAD','TELANGANA'),(504297,'Tiryani','ADILABAD','TELANGANA'),(504299,'Kagaznagar','ADILABAD','TELANGANA'),(504301,'Mandamarri','ADILABAD','TELANGANA'),(504302,'Nennal','ADILABAD','TELANGANA'),(504303,'Mancherial','ADILABAD','TELANGANA'),(504304,'Bazarhathnoor','ADILABAD','TELANGANA'),(504306,'Dilawarpur','ADILABAD','TELANGANA'),(504307,'Ichoda','ADILABAD','TELANGANA'),(504308,'Adilabad','ADILABAD','TELANGANA'),(504309,'Jainad','ADILABAD','TELANGANA'),(504310,'Mamda','ADILABAD','TELANGANA'),(504311,'Utnoor','ADILABAD','TELANGANA'),(504312,'Talamadugu','ADILABAD','TELANGANA'),(504313,'Sirpur','ADILABAD','TELANGANA'),(504323,'Neradigonda','ADILABAD','TELANGANA'),(504346,'Inderavelly','ADILABAD','TELANGANA'),(505001,'Karimnagar','KARIM NAGAR','TELANGANA'),(505002,'Karimnagar','KARIM NAGAR','TELANGANA'),(505101,'Elkathurthi','KARIM NAGAR','TELANGANA'),(505102,'Kamalapur','KARIM NAGAR','TELANGANA'),(505122,'Jammikunta','KARIM NAGAR','TELANGANA'),(505129,'Veenavanka','KARIM NAGAR','TELANGANA'),(505152,'Odela','KARIM NAGAR','TELANGANA'),(505153,'Mutharam (Manthani)','KARIM NAGAR','TELANGANA'),(505162,'Peddapalle','KARIM NAGAR','TELANGANA'),(505172,'Peddapalle','KARIM NAGAR','TELANGANA'),(505174,'Peddapalle','KARIM NAGAR','TELANGANA'),(505184,'Mutharam (Manthani)','KARIM NAGAR','TELANGANA'),(505185,'Sultanabad','KARIM NAGAR','TELANGANA'),(505186,'Chigurumamidi','KARIM NAGAR','TELANGANA'),(505187,'Peddapalle','KARIM NAGAR','TELANGANA'),(505188,'Ramagundam','KARIM NAGAR','TELANGANA'),(505208,'Ramagundam','KARIM NAGAR','TELANGANA'),(505209,'Ramagundam','KARIM NAGAR','TELANGANA'),(505210,'Ramagundam','KARIM NAGAR','TELANGANA'),(505211,'Ramagundam','KARIM NAGAR','TELANGANA'),(505212,'Kamanpur','KARIM NAGAR','TELANGANA'),(505214,'Ramagundam','KARIM NAGAR','TELANGANA'),(505215,'Ramagundam','KARIM NAGAR','TELANGANA'),(505301,'Sircilla','KARIM NAGAR','TELANGANA'),(505302,'Vemulawada','KARIM NAGAR','TELANGANA'),(505303,'Yellareddipet','KARIM NAGAR','TELANGANA'),(505304,'Gambhiraopet','KARIM NAGAR','TELANGANA'),(505305,'Yellareddipet','KARIM NAGAR','TELANGANA'),(505306,'Kathlapur','KARIM NAGAR','TELANGANA'),(505307,'Chandurthi','KARIM NAGAR','TELANGANA'),(505325,'Metpalle','KARIM NAGAR','TELANGANA'),(505326,'Koratla','KARIM NAGAR','TELANGANA'),(505327,'Jagtial','KARIM NAGAR','TELANGANA'),(505330,'Koratla','KARIM NAGAR','TELANGANA'),(505331,'Mallapur','KARIM NAGAR','TELANGANA'),(505401,'Karimnagar','KARIM NAGAR','TELANGANA'),(505402,'Ellanthakunta','KARIM NAGAR','TELANGANA'),(505403,'Vemulawada','KARIM NAGAR','TELANGANA'),(505404,'Mustabad','KARIM NAGAR','TELANGANA'),(505405,'Sircilla','KARIM NAGAR','TELANGANA'),(505415,'Choppadandi','KARIM NAGAR','TELANGANA'),(505416,'Dharmaram','KARIM NAGAR','TELANGANA'),(505425,'Dharmapuri','KARIM NAGAR','TELANGANA'),(505445,'Gangadhara','KARIM NAGAR','TELANGANA'),(505450,'Ibrahimpatnam','KARIM NAGAR','TELANGANA'),(505451,'Ramadugu','KARIM NAGAR','TELANGANA'),(505452,'Mallial','KARIM NAGAR','TELANGANA'),(505453,'Medipalle','KARIM NAGAR','TELANGANA'),(505454,'Mallapur','KARIM NAGAR','TELANGANA'),(505455,'Jagtial','KARIM NAGAR','TELANGANA'),(505460,'Raikal','KARIM NAGAR','TELANGANA'),(505462,'Kathlapur','KARIM NAGAR','TELANGANA'),(505466,'Husnabad','KARIM NAGAR','TELANGANA'),(505467,'Chigurumamidi','KARIM NAGAR','TELANGANA'),(505468,'Huzurabad','KARIM NAGAR','TELANGANA'),(505469,'Timmapur (LMD Colony)','KARIM NAGAR','TELANGANA'),(505470,'Shankarapatnam','KARIM NAGAR','TELANGANA'),(505471,'Bheemadevarpalle','KARIM NAGAR','TELANGANA'),(505472,'Saidapur','KARIM NAGAR','TELANGANA'),(505473,'Koheda','KARIM NAGAR','TELANGANA'),(505474,'Shankarapatnam','KARIM NAGAR','TELANGANA'),(505475,'Jammikunta','KARIM NAGAR','TELANGANA'),(505476,'Elkathurthi','KARIM NAGAR','TELANGANA'),(505480,'Saidapur','KARIM NAGAR','TELANGANA'),(505481,'Koheda','KARIM NAGAR','TELANGANA'),(505490,'Shankarapatnam','KARIM NAGAR','TELANGANA'),(505497,'Bheemadevarpalle','KARIM NAGAR','TELANGANA'),(505498,'Huzurabad','KARIM NAGAR','TELANGANA'),(505501,'Kodimial','KARIM NAGAR','TELANGANA'),(505502,'Veenavanka','KARIM NAGAR','TELANGANA'),(505503,'Malharrao','KARIM NAGAR','TELANGANA'),(505504,'Mahadevpur','KARIM NAGAR','TELANGANA'),(505505,'Veenavanka','KARIM NAGAR','TELANGANA'),(505514,'Ramagundam','KARIM NAGAR','TELANGANA'),(505524,'Boinpalle','KARIM NAGAR','TELANGANA'),(505525,'Julapalle','KARIM NAGAR','TELANGANA'),(505526,'Velgatoor','KARIM NAGAR','TELANGANA'),(505527,'Timmapur (LMD Colony)','KARIM NAGAR','TELANGANA'),(505528,'Ellanthakunta','KARIM NAGAR','TELANGANA'),(505529,'Jagtial','KARIM NAGAR','TELANGANA'),(505530,'Timmapur (LMD Colony)','KARIM NAGAR','TELANGANA'),(505531,'Ramadugu','KARIM NAGAR','TELANGANA'),(505532,'Gollapalle','KARIM NAGAR','TELANGANA'),(506001,'Hanamkonda','WARANGAL','TELANGANA'),(506002,'Warangal','WARANGAL','TELANGANA'),(506003,'Hanamkonda','WARANGAL','TELANGANA'),(506004,'Hanamkonda','WARANGAL','TELANGANA'),(506005,'Hanamkonda','WARANGAL','TELANGANA'),(506006,'Hasanparthy','WARANGAL','TELANGANA'),(506007,'Warangal','WARANGAL','TELANGANA'),(506009,'Hanamkonda','WARANGAL','TELANGANA'),(506011,'Hanamkonda','WARANGAL','TELANGANA'),(506013,'Warangal','WARANGAL','TELANGANA'),(506015,'Hasanparthy','WARANGAL','TELANGANA'),(506101,'Mahabubabad','WARANGAL','TELANGANA'),(506102,'Kuravi','WARANGAL','TELANGANA'),(506103,'Gudur','WARANGAL','TELANGANA'),(506104,'Mahabubabad','WARANGAL','TELANGANA'),(506105,'Kuravi','WARANGAL','TELANGANA'),(506112,'Kesamudram','WARANGAL','TELANGANA'),(506122,'Nekkonda','WARANGAL','TELANGANA'),(506132,'Narsampet','WARANGAL','TELANGANA'),(506134,'Gudur','WARANGAL','TELANGANA'),(506135,'Kothagudem','WARANGAL','TELANGANA'),(506142,'Dharmasagar','WARANGAL','TELANGANA'),(506143,'Raghunathpalle','WARANGAL','TELANGANA'),(506144,'Dharmasagar','WARANGAL','TELANGANA'),(506145,'Ghanpur (Station)','WARANGAL','TELANGANA'),(506151,'Dharmasagar','WARANGAL','TELANGANA'),(506163,'Thorrur','WARANGAL','TELANGANA'),(506164,'Parkal','WARANGAL','TELANGANA'),(506165,'Eturnagaram','WARANGAL','TELANGANA'),(506166,'Hanamkonda','WARANGAL','TELANGANA'),(506167,'Jangaon','WARANGAL','TELANGANA'),(506168,'Ghanpur (Mulug)','WARANGAL','TELANGANA'),(506169,'Bhupalpalle','WARANGAL','TELANGANA'),(506170,'Chityal','WARANGAL','TELANGANA'),(506172,'Mangapet','WARANGAL','TELANGANA'),(506175,'Jangaon','WARANGAL','TELANGANA'),(506201,'Lingalaghanpur','WARANGAL','TELANGANA'),(506221,'Bachannapet','WARANGAL','TELANGANA'),(506222,'Palakurthi','WARANGAL','TELANGANA'),(506223,'Maddur','WARANGAL','TELANGANA'),(506224,'Maddur','WARANGAL','TELANGANA'),(506244,'Raghunathpalle','WARANGAL','TELANGANA'),(506252,'Palakurthi','WARANGAL','TELANGANA'),(506301,'Ghanpur (Station)','WARANGAL','TELANGANA'),(506302,'Devaruppula','WARANGAL','TELANGANA'),(506303,'Lingalaghanpur','WARANGAL','TELANGANA'),(506310,'Wardhanna Pet','WARANGAL','TELANGANA'),(506313,'Wardhanna Pet','WARANGAL','TELANGANA'),(506314,'Raiparthy','WARANGAL','TELANGANA'),(506315,'Maripeda','WARANGAL','TELANGANA'),(506316,'Palakurthi','WARANGAL','TELANGANA'),(506317,'Kodakandla','WARANGAL','TELANGANA'),(506318,'Kodakandla','WARANGAL','TELANGANA'),(506319,'Shayampet','WARANGAL','TELANGANA'),(506324,'Narsimhulapet','WARANGAL','TELANGANA'),(506329,'Sangam','WARANGAL','TELANGANA'),(506330,'Geesugonda','WARANGAL','TELANGANA'),(506331,'Narsampet','WARANGAL','TELANGANA'),(506332,'Chennaraopet','WARANGAL','TELANGANA'),(506342,'Atmakur','WARANGAL','TELANGANA'),(506343,'Mulug','WARANGAL','TELANGANA'),(506344,'Govindaraopet','WARANGAL','TELANGANA'),(506345,'Regonda','WARANGAL','TELANGANA'),(506347,'Tadvai','WARANGAL','TELANGANA'),(506348,'Regonda','WARANGAL','TELANGANA'),(506349,'Nallabelly','WARANGAL','TELANGANA'),(506352,'Nallabelly','WARANGAL','TELANGANA'),(506355,'Cherial','WARANGAL','TELANGANA'),(506356,'Chityal','WARANGAL','TELANGANA'),(506365,'Parvathagiri','WARANGAL','TELANGANA'),(506366,'Mogullapalle','WARANGAL','TELANGANA'),(506367,'Maddur','WARANGAL','TELANGANA'),(506368,'Nellikudur','WARANGAL','TELANGANA'),(506369,'Parvathagiri','WARANGAL','TELANGANA'),(506370,'Hasanparthy','WARANGAL','TELANGANA'),(506371,'Hasanparthy','WARANGAL','TELANGANA'),(506381,'Dornakal','WARANGAL','TELANGANA'),(506391,'Parkal','WARANGAL','TELANGANA'),(507001,'Khammam (Urban)','KHAMMAM','TELANGANA'),(507002,'Khammam (Urban)','KHAMMAM','TELANGANA'),(507003,'Khammam (Rural)','KHAMMAM','TELANGANA'),(507101,'Kothagudem','KHAMMAM','TELANGANA'),(507103,'Kothagudem','KHAMMAM','TELANGANA'),(507111,'Bhadrachalam','KHAMMAM','TELANGANA'),(507114,'Kukunoor','KHAMMAM','TELANGANA'),(507115,'Mulkalapalle','KHAMMAM','TELANGANA'),(507116,'Aswapuram','KHAMMAM','TELANGANA'),(507117,'Pinapaka','KHAMMAM','TELANGANA'),(507118,'Kothagudem','KHAMMAM','TELANGANA'),(507119,'Kothagudem','KHAMMAM','TELANGANA'),(507120,'Julurpad','KHAMMAM','TELANGANA'),(507121,'Kunavaram','KHAMMAM','TELANGANA'),(507122,'Yellandu','KHAMMAM','TELANGANA'),(507123,'Yellandu','KHAMMAM','TELANGANA'),(507124,'Gundala','KHAMMAM','TELANGANA'),(507125,'Manuguru','KHAMMAM','TELANGANA'),(507128,'Burgampahad','KHAMMAM','TELANGANA'),(507133,'Cherla','KHAMMAM','TELANGANA'),(507135,'Vararamachandrapuram','KHAMMAM','TELANGANA'),(507136,'Wazeed','KHAMMAM','TELANGANA'),(507137,'Dummugudem','KHAMMAM','TELANGANA'),(507140,'Cherla','KHAMMAM','TELANGANA'),(507154,'Palwancha','KHAMMAM','TELANGANA'),(507157,'Kusumanchi','KHAMMAM','TELANGANA'),(507158,'Mudigonda','KHAMMAM','TELANGANA'),(507159,'Kusumanchi','KHAMMAM','TELANGANA'),(507160,'Nelakondapalle','KHAMMAM','TELANGANA'),(507161,'Kusumanchi','KHAMMAM','TELANGANA'),(507163,'Khammam (Rural)','KHAMMAM','TELANGANA'),(507164,'Vemsoor','KHAMMAM','TELANGANA'),(507165,'Wyra','KHAMMAM','TELANGANA'),(507166,'Chandrugonda','KHAMMAM','TELANGANA'),(507167,'Tallada','KHAMMAM','TELANGANA'),(507168,'Enkuru','KHAMMAM','TELANGANA'),(507169,'Nelakondapalle','KHAMMAM','TELANGANA'),(507170,'Khammam (Rural)','KHAMMAM','TELANGANA'),(507182,'Kamepalle','KHAMMAM','TELANGANA'),(507183,'Thirumalayapalem','KHAMMAM','TELANGANA'),(507201,'Yerrupalem','KHAMMAM','TELANGANA'),(507202,'Yerrupalem','KHAMMAM','TELANGANA'),(507203,'Aswapuram','KHAMMAM','TELANGANA'),(507204,'Bonakal','KHAMMAM','TELANGANA'),(507208,'Chinthakani','KHAMMAM','TELANGANA'),(507209,'Kallur','KHAMMAM','TELANGANA'),(507210,'Garla','KHAMMAM','TELANGANA'),(507211,'Bayyaram','KHAMMAM','TELANGANA'),(507301,'Aswaraopeta','KHAMMAM','TELANGANA'),(507302,'Penuballi','KHAMMAM','TELANGANA'),(507303,'Sathupalle','KHAMMAM','TELANGANA'),(507304,'Bonakal','KHAMMAM','TELANGANA'),(507305,'Konijerla','KHAMMAM','TELANGANA'),(507306,'Dammapeta','KHAMMAM','TELANGANA'),(507316,'Chandrugonda','KHAMMAM','TELANGANA'),(507318,'Khammam (Urban)','KHAMMAM','TELANGANA'),(508001,'Nalgonda','NALGONDA','TELANGANA'),(508002,'Nalgonda','NALGONDA','TELANGANA'),(508004,'Kangal','NALGONDA','TELANGANA'),(508101,'Alair','NALGONDA','TELANGANA'),(508105,'Rajapet','NALGONDA','TELANGANA'),(508111,'Atmakur (M)','NALGONDA','TELANGANA'),(508112,'Valigonda','NALGONDA','TELANGANA'),(508113,'Ramannapeta','NALGONDA','TELANGANA'),(508114,'Narketpalle','NALGONDA','TELANGANA'),(508115,'M.Turkapalle','NALGONDA','TELANGANA'),(508116,'Bhongir','NALGONDA','TELANGANA'),(508117,'Bhongir','NALGONDA','TELANGANA'),(508126,'Bibinagar','NALGONDA','TELANGANA'),(508201,'Neredcherla','NALGONDA','TELANGANA'),(508202,'Peddavoora','NALGONDA','TELANGANA'),(508204,'Huzurnagar','NALGONDA','TELANGANA'),(508205,'Kattangoor','NALGONDA','TELANGANA'),(508206,'Kodad','NALGONDA','TELANGANA'),(508207,'Miryalaguda','NALGONDA','TELANGANA'),(508208,'Thripuraram','NALGONDA','TELANGANA'),(508210,'Sali Gouraram','NALGONDA','TELANGANA'),(508211,'Kethe Palle','NALGONDA','TELANGANA'),(508212,'Mothey','NALGONDA','TELANGANA'),(508213,'Suryapet','NALGONDA','TELANGANA'),(508214,'Penpahad','NALGONDA','TELANGANA'),(508217,'Vemulapalle','NALGONDA','TELANGANA'),(508218,'Neredcherla','NALGONDA','TELANGANA'),(508221,'Nuthankal','NALGONDA','TELANGANA'),(508223,'Thirumalgiri','NALGONDA','TELANGANA'),(508224,'Jaji Reddi Gudem','NALGONDA','TELANGANA'),(508233,'Munagala','NALGONDA','TELANGANA'),(508234,'Nadigudem','NALGONDA','TELANGANA'),(508238,'Kodad','NALGONDA','TELANGANA'),(508243,'Devarakonda','NALGONDA','TELANGANA'),(508244,'Munugode','NALGONDA','TELANGANA'),(508245,'Marriguda','NALGONDA','TELANGANA'),(508246,'Mella Cheruvu','NALGONDA','TELANGANA'),(508247,'Thipparthi','NALGONDA','TELANGANA'),(508248,'Devarakonda','NALGONDA','TELANGANA'),(508250,'Chintha Palle','NALGONDA','TELANGANA'),(508252,'Choutuppal','NALGONDA','TELANGANA'),(508253,'Narayanapur','NALGONDA','TELANGANA'),(508254,'Narketpalle','NALGONDA','TELANGANA'),(508255,'Chandur','NALGONDA','TELANGANA'),(508256,'Nampalle','NALGONDA','TELANGANA'),(508257,'Gurrampode','NALGONDA','TELANGANA'),(508258,'Chandam Pet','NALGONDA','TELANGANA'),(508266,'Peddavoora','NALGONDA','TELANGANA'),(508277,'Mothkur','NALGONDA','TELANGANA'),(508278,'Nidamanur','NALGONDA','TELANGANA'),(508279,'Thungathurthi','NALGONDA','TELANGANA'),(508280,'Thungathurthi','NALGONDA','TELANGANA'),(508284,'Pochampalle','NALGONDA','TELANGANA'),(508285,'Bibinagar','NALGONDA','TELANGANA'),(508286,'Bhongir','NALGONDA','TELANGANA'),(508355,'Thripuraram','NALGONDA','TELANGANA'),(508373,'Chintha Palle','NALGONDA','TELANGANA'),(508374,'Vemulapalle','NALGONDA','TELANGANA'),(508376,'Suryapet','NALGONDA','TELANGANA'),(508377,'Anumula','NALGONDA','TELANGANA'),(509001,'Mahbubnagar','MAHABUB NAGAR','TELANGANA'),(509002,'Mahbubnagar','MAHABUB NAGAR','TELANGANA'),(509102,'Kodair','MAHABUB NAGAR','TELANGANA'),(509103,'Wanaparthy','MAHABUB NAGAR','TELANGANA'),(509104,'Pebbair','MAHABUB NAGAR','TELANGANA'),(509105,'Veepangandla','MAHABUB NAGAR','TELANGANA'),(509110,'Chinnachintakunta','MAHABUB NAGAR','TELANGANA'),(509120,'Wanaparthy','MAHABUB NAGAR','TELANGANA'),(509125,'Gadwal','MAHABUB NAGAR','TELANGANA'),(509126,'Waddepalle','MAHABUB NAGAR','TELANGANA'),(509127,'Ieej','MAHABUB NAGAR','TELANGANA'),(509128,'Manopad','MAHABUB NAGAR','TELANGANA'),(509129,'Ghattu','MAHABUB NAGAR','TELANGANA'),(509130,'Narva','MAHABUB NAGAR','TELANGANA'),(509131,'Atmakur','MAHABUB NAGAR','TELANGANA'),(509132,'Maldakal','MAHABUB NAGAR','TELANGANA'),(509133,'Gadwal','MAHABUB NAGAR','TELANGANA'),(509135,'Waddepalle','MAHABUB NAGAR','TELANGANA'),(509152,'Alampur','MAHABUB NAGAR','TELANGANA'),(509153,'Manopad','MAHABUB NAGAR','TELANGANA'),(509201,'Amrabad','MAHABUB NAGAR','TELANGANA'),(509202,'Balanagar','MAHABUB NAGAR','TELANGANA'),(509203,'Bijinapalle','MAHABUB NAGAR','TELANGANA'),(509204,'Devarkadra','MAHABUB NAGAR','TELANGANA'),(509205,'Utkoor','MAHABUB NAGAR','TELANGANA'),(509206,'Wanaparthy','MAHABUB NAGAR','TELANGANA'),(509207,'Kondurg','MAHABUB NAGAR','TELANGANA'),(509208,'Makthal','MAHABUB NAGAR','TELANGANA'),(509209,'Tadoor','MAHABUB NAGAR','TELANGANA'),(509210,'Narayanpet','MAHABUB NAGAR','TELANGANA'),(509215,'Bijinapalle','MAHABUB NAGAR','TELANGANA'),(509216,'Farooqnagar','MAHABUB NAGAR','TELANGANA'),(509217,'Maheswaram','K.V.RANGAREDDY','TELANGANA'),(509219,'Devarkadra','MAHABUB NAGAR','TELANGANA'),(509228,'Kothur','MAHABUB NAGAR','TELANGANA'),(509235,'Nagarkurnool','MAHABUB NAGAR','TELANGANA'),(509301,'Jadcherla','MAHABUB NAGAR','TELANGANA'),(509302,'Thimmajipet','MAHABUB NAGAR','TELANGANA'),(509311,'Utkoor','MAHABUB NAGAR','TELANGANA'),(509320,'Midjil','MAHABUB NAGAR','TELANGANA'),(509321,'Talakondapalle','MAHABUB NAGAR','TELANGANA'),(509324,'Veldanda','MAHABUB NAGAR','TELANGANA'),(509325,'Maheswaram','K.V.RANGAREDDY','TELANGANA'),(509326,'Amrabad','MAHABUB NAGAR','TELANGANA'),(509327,'Madgul','MAHABUB NAGAR','TELANGANA'),(509334,'Mahbubnagar','MAHABUB NAGAR','TELANGANA'),(509335,'Gandeed','K.V.RANGAREDDY','TELANGANA'),(509336,'Kodangal','MAHABUB NAGAR','TELANGANA'),(509337,'Gandeed','K.V.RANGAREDDY','TELANGANA'),(509338,'Kodangal','MAHABUB NAGAR','TELANGANA'),(509339,'Gandeed','K.V.RANGAREDDY','TELANGANA'),(509340,'Nawabpet','MAHABUB NAGAR','TELANGANA'),(509349,'Vangoor','MAHABUB NAGAR','TELANGANA'),(509350,'Bomraspet','MAHABUB NAGAR','TELANGANA'),(509351,'Dhanwada','MAHABUB NAGAR','TELANGANA'),(509352,'Maganoor','MAHABUB NAGAR','TELANGANA'),(509353,'Makthal','MAHABUB NAGAR','TELANGANA'),(509357,'Midjil','MAHABUB NAGAR','TELANGANA'),(509358,'Amangal','MAHABUB NAGAR','TELANGANA'),(509360,'Veldanda','MAHABUB NAGAR','TELANGANA'),(509371,'Koilkonda','MAHABUB NAGAR','TELANGANA'),(509375,'Achampet','MAHABUB NAGAR','TELANGANA'),(509376,'Uppununthala','MAHABUB NAGAR','TELANGANA'),(509380,'Peddamandadi','MAHABUB NAGAR','TELANGANA'),(509381,'Peddamandadi','MAHABUB NAGAR','TELANGANA'),(509382,'Addakal','MAHABUB NAGAR','TELANGANA'),(509385,'Nagarkurnool','MAHABUB NAGAR','TELANGANA'),(509401,'Balmoor','MAHABUB NAGAR','TELANGANA'),(509406,'Thimmajipet','MAHABUB NAGAR','TELANGANA'),(509407,'Damaragidda','MAHABUB NAGAR','TELANGANA'),(509408,'Jadcherla','MAHABUB NAGAR','TELANGANA'),(509409,'Devarkadra','MAHABUB NAGAR','TELANGANA'),(509410,'Farooqnagar','MAHABUB NAGAR','TELANGANA'),(509411,'Damaragidda','MAHABUB NAGAR','TELANGANA'),(509412,'Peddakothapalle','MAHABUB NAGAR','TELANGANA'),(515001,'Anantapur','ANANTHAPUR','ANDHRA PRADESH'),(515002,'Anantapur','ANANTHAPUR','ANDHRA PRADESH'),(515003,'Anantapur','ANANTHAPUR','ANDHRA PRADESH'),(515004,'Anantapur','ANANTHAPUR','ANDHRA PRADESH'),(515005,'Anantapur','ANANTHAPUR','ANDHRA PRADESH'),(515101,'Ramagiri','ANANTHAPUR','ANDHRA PRADESH'),(515110,'Penukonda','ANANTHAPUR','ANDHRA PRADESH'),(515122,'Somandepalle','ANANTHAPUR','ANDHRA PRADESH'),(515123,'Roddam','ANANTHAPUR','ANDHRA PRADESH'),(515124,'Roddam','ANANTHAPUR','ANDHRA PRADESH'),(515133,'Kothacheruvu','ANANTHAPUR','ANDHRA PRADESH'),(515134,'Puttaparthi','ANANTHAPUR','ANDHRA PRADESH'),(515144,'Chennekothapalle','ANANTHAPUR','ANDHRA PRADESH'),(515154,'Bukkapatnam','ANANTHAPUR','ANDHRA PRADESH'),(515159,'Mudigubba','ANANTHAPUR','ANDHRA PRADESH'),(515164,'Penukonda','ANANTHAPUR','ANDHRA PRADESH'),(515201,'Hindupur','ANANTHAPUR','ANDHRA PRADESH'),(515202,'Bathalapalle','ANANTHAPUR','ANDHRA PRADESH'),(515211,'Hindupur','ANANTHAPUR','ANDHRA PRADESH'),(515212,'Hindupur','ANANTHAPUR','ANDHRA PRADESH'),(515231,'Gorantla','ANANTHAPUR','ANDHRA PRADESH'),(515241,'Gorantla','ANANTHAPUR','ANDHRA PRADESH'),(515261,'Parigi','ANANTHAPUR','ANDHRA PRADESH'),(515271,'Madakasira','ANANTHAPUR','ANDHRA PRADESH'),(515281,'Amarapuram','ANANTHAPUR','ANDHRA PRADESH'),(515286,'Gudibanda','ANANTHAPUR','ANDHRA PRADESH'),(515291,'Madakasira','ANANTHAPUR','ANDHRA PRADESH'),(515301,'Madakasira','ANANTHAPUR','ANDHRA PRADESH'),(515303,'Madakasira','ANANTHAPUR','ANDHRA PRADESH'),(515305,'Gudibanda','ANANTHAPUR','ANDHRA PRADESH'),(515311,'Agali','ANANTHAPUR','ANDHRA PRADESH'),(515321,'Rolla','ANANTHAPUR','ANDHRA PRADESH'),(515331,'Hindupur','ANANTHAPUR','ANDHRA PRADESH'),(515341,'Chilamathur','ANANTHAPUR','ANDHRA PRADESH'),(515401,'Gooty','ANANTHAPUR','ANDHRA PRADESH'),(515402,'Gooty','ANANTHAPUR','ANDHRA PRADESH'),(515405,'Pamidi','ANANTHAPUR','ANDHRA PRADESH'),(515408,'Peddapappur','ANANTHAPUR','ANDHRA PRADESH'),(515411,'Tadpatri','ANANTHAPUR','ANDHRA PRADESH'),(515413,'Tadpatri','ANANTHAPUR','ANDHRA PRADESH'),(515414,'Putlur','ANANTHAPUR','ANDHRA PRADESH'),(515415,'Tadpatri','ANANTHAPUR','ANDHRA PRADESH'),(515425,'Bukkaraya Samudram','ANANTHAPUR','ANDHRA PRADESH'),(515435,'Singanamala','ANANTHAPUR','ANDHRA PRADESH'),(515445,'Putlur','ANANTHAPUR','ANDHRA PRADESH'),(515455,'Yadiki','ANANTHAPUR','ANDHRA PRADESH'),(515465,'Yellanur','ANANTHAPUR','ANDHRA PRADESH'),(515501,'Nallamada','ANANTHAPUR','ANDHRA PRADESH'),(515511,'Mudigubba','ANANTHAPUR','ANDHRA PRADESH'),(515521,'Nambulipulikunta','ANANTHAPUR','ANDHRA PRADESH'),(515531,'Obuladevaracheruvu','ANANTHAPUR','ANDHRA PRADESH'),(515541,'Kadiri','ANANTHAPUR','ANDHRA PRADESH'),(515551,'Nallacheruvu','ANANTHAPUR','ANDHRA PRADESH'),(515556,'Amadagur','ANANTHAPUR','ANDHRA PRADESH'),(515561,'Obuladevaracheruvu','ANANTHAPUR','ANDHRA PRADESH'),(515571,'Tanakal','ANANTHAPUR','ANDHRA PRADESH'),(515581,'Talupula','ANANTHAPUR','ANDHRA PRADESH'),(515591,'Kadiri','ANANTHAPUR','ANDHRA PRADESH'),(515601,'Chilamathur','ANANTHAPUR','ANDHRA PRADESH'),(515611,'Peddavadugur','ANANTHAPUR','ANDHRA PRADESH'),(515621,'Ramagiri','ANANTHAPUR','ANDHRA PRADESH'),(515631,'Bathalapalle','ANANTHAPUR','ANDHRA PRADESH'),(515641,'Kanaganapalle','ANANTHAPUR','ANDHRA PRADESH'),(515651,'Chennekothapalle','ANANTHAPUR','ANDHRA PRADESH'),(515661,'Bathalapalle','ANANTHAPUR','ANDHRA PRADESH'),(515671,'Dharmavaram','ANANTHAPUR','ANDHRA PRADESH'),(515672,'Dharmavaram','ANANTHAPUR','ANDHRA PRADESH'),(515701,'Bukkaraya Samudram','ANANTHAPUR','ANDHRA PRADESH'),(515711,'Kudair','ANANTHAPUR','ANDHRA PRADESH'),(515721,'Anantapur','ANANTHAPUR','ANDHRA PRADESH'),(515722,'Raptadu','ANANTHAPUR','ANDHRA PRADESH'),(515731,'Garladinne','ANANTHAPUR','ANDHRA PRADESH'),(515741,'Beluguppa','ANANTHAPUR','ANDHRA PRADESH'),(515751,'Atmakur','ANANTHAPUR','ANDHRA PRADESH'),(515761,'Kambadur','ANANTHAPUR','ANDHRA PRADESH'),(515763,'Kalyandurg','ANANTHAPUR','ANDHRA PRADESH'),(515765,'Kambadur','ANANTHAPUR','ANDHRA PRADESH'),(515766,'Settur','ANANTHAPUR','ANDHRA PRADESH'),(515767,'Brahmasamudram','ANANTHAPUR','ANDHRA PRADESH'),(515774,'Garladinne','ANANTHAPUR','ANDHRA PRADESH'),(515775,'Guntakal','ANANTHAPUR','ANDHRA PRADESH'),(515787,'Kambadur','ANANTHAPUR','ANDHRA PRADESH'),(515801,'Anantapur','ANANTHAPUR','ANDHRA PRADESH'),(515803,'Guntakal','ANANTHAPUR','ANDHRA PRADESH'),(515812,'Uravakonda','ANANTHAPUR','ANDHRA PRADESH'),(515822,'Uravakonda','ANANTHAPUR','ANDHRA PRADESH'),(515832,'Vajrakarur','ANANTHAPUR','ANDHRA PRADESH'),(515842,'Vidapanakal','ANANTHAPUR','ANDHRA PRADESH'),(515863,'Brahmasamudram','ANANTHAPUR','ANDHRA PRADESH'),(515865,'D.Hirehal','ANANTHAPUR','ANDHRA PRADESH'),(515867,'Kanekal','ANANTHAPUR','ANDHRA PRADESH'),(515870,'Vidapanakal','ANANTHAPUR','ANDHRA PRADESH'),(515871,'Bommanahal','ANANTHAPUR','ANDHRA PRADESH'),(515872,'D.Hirehal','ANANTHAPUR','ANDHRA PRADESH'),(516001,'Cuddapah','CUDDAPAH','ANDHRA PRADESH'),(516002,'Sidhout','CUDDAPAH','ANDHRA PRADESH'),(516003,'Cuddapah','CUDDAPAH','ANDHRA PRADESH'),(516004,'Chinthakommadinne','CUDDAPAH','ANDHRA PRADESH'),(516101,'Kodur','CUDDAPAH','ANDHRA PRADESH'),(516104,'Chitvel','CUDDAPAH','ANDHRA PRADESH'),(516105,'Obulavaripalle','CUDDAPAH','ANDHRA PRADESH'),(516107,'Pullampeta','CUDDAPAH','ANDHRA PRADESH'),(516108,'Obulavaripalle','CUDDAPAH','ANDHRA PRADESH'),(516110,'Chitvel','CUDDAPAH','ANDHRA PRADESH'),(516115,'Rajampet','CUDDAPAH','ANDHRA PRADESH'),(516126,'Rajampet','CUDDAPAH','ANDHRA PRADESH'),(516127,'Penagalur','CUDDAPAH','ANDHRA PRADESH'),(516128,'Chitvel','CUDDAPAH','ANDHRA PRADESH'),(516129,'T Sundupalle','CUDDAPAH','ANDHRA PRADESH'),(516130,'T Sundupalle','CUDDAPAH','ANDHRA PRADESH'),(516150,'Rajampet','CUDDAPAH','ANDHRA PRADESH'),(516151,'Nandalur','CUDDAPAH','ANDHRA PRADESH'),(516152,'Vontimitta','CUDDAPAH','ANDHRA PRADESH'),(516162,'Chennur','CUDDAPAH','ANDHRA PRADESH'),(516163,'Chennur','CUDDAPAH','ANDHRA PRADESH'),(516172,'Chapad','CUDDAPAH','ANDHRA PRADESH'),(516173,'S.Mydukur','CUDDAPAH','ANDHRA PRADESH'),(516175,'Duvvur','CUDDAPAH','ANDHRA PRADESH'),(516193,'B.Kodur','CUDDAPAH','ANDHRA PRADESH'),(516203,'Khajipet','CUDDAPAH','ANDHRA PRADESH'),(516213,'Vontimitta','CUDDAPAH','ANDHRA PRADESH'),(516214,'Chinnamandem','CUDDAPAH','ANDHRA PRADESH'),(516215,'Sambepalle','CUDDAPAH','ANDHRA PRADESH'),(516216,'Pendlimarri','CUDDAPAH','ANDHRA PRADESH'),(516217,'Kalasapadu','CUDDAPAH','ANDHRA PRADESH'),(516218,'Pendlimarri','CUDDAPAH','ANDHRA PRADESH'),(516227,'Badvel','CUDDAPAH','ANDHRA PRADESH'),(516228,'Badvel','CUDDAPAH','ANDHRA PRADESH'),(516233,'Gopavaram','CUDDAPAH','ANDHRA PRADESH'),(516237,'Sidhout','CUDDAPAH','ANDHRA PRADESH'),(516247,'Sidhout','CUDDAPAH','ANDHRA PRADESH'),(516257,'Lakkireddipalle','CUDDAPAH','ANDHRA PRADESH'),(516259,'Chakrayapet','CUDDAPAH','ANDHRA PRADESH'),(516267,'Galiveedu','CUDDAPAH','ANDHRA PRADESH'),(516268,'Veeraballe','CUDDAPAH','ANDHRA PRADESH'),(516269,'Rayachoti','CUDDAPAH','ANDHRA PRADESH'),(516270,'Ramapuram','CUDDAPAH','ANDHRA PRADESH'),(516289,'Kamalapuram','CUDDAPAH','ANDHRA PRADESH'),(516293,'Vallur','CUDDAPAH','ANDHRA PRADESH'),(516309,'Yerraguntla','CUDDAPAH','ANDHRA PRADESH'),(516310,'Yerraguntla','CUDDAPAH','ANDHRA PRADESH'),(516311,'Yerraguntla','CUDDAPAH','ANDHRA PRADESH'),(516312,'Yerraguntla','CUDDAPAH','ANDHRA PRADESH'),(516321,'Veerapunayunipalle','CUDDAPAH','ANDHRA PRADESH'),(516329,'Vempalle','CUDDAPAH','ANDHRA PRADESH'),(516339,'Veerapunayunipalle','CUDDAPAH','ANDHRA PRADESH'),(516349,'Vemula','CUDDAPAH','ANDHRA PRADESH'),(516350,'Vempalle','CUDDAPAH','ANDHRA PRADESH'),(516355,'Chapad','CUDDAPAH','ANDHRA PRADESH'),(516356,'Chapad','CUDDAPAH','ANDHRA PRADESH'),(516359,'Rajupalem','CUDDAPAH','ANDHRA PRADESH'),(516360,'Proddatur','CUDDAPAH','ANDHRA PRADESH'),(516361,'Proddatur','CUDDAPAH','ANDHRA PRADESH'),(516362,'Proddatur','CUDDAPAH','ANDHRA PRADESH'),(516380,'Muddanur','CUDDAPAH','ANDHRA PRADESH'),(516390,'Pulivendla','CUDDAPAH','ANDHRA PRADESH'),(516391,'Pulivendla','CUDDAPAH','ANDHRA PRADESH'),(516396,'Lingala','CUDDAPAH','ANDHRA PRADESH'),(516401,'Simhadripuram','CUDDAPAH','ANDHRA PRADESH'),(516411,'Peddamudium','CUDDAPAH','ANDHRA PRADESH'),(516421,'Pulivendla','CUDDAPAH','ANDHRA PRADESH'),(516431,'Jammalamadugu','CUDDAPAH','ANDHRA PRADESH'),(516432,'Mylavaram','CUDDAPAH','ANDHRA PRADESH'),(516433,'Mylavaram','CUDDAPAH','ANDHRA PRADESH'),(516434,'Jammalamadugu','CUDDAPAH','ANDHRA PRADESH'),(516439,'Mylavaram','CUDDAPAH','ANDHRA PRADESH'),(516444,'Kondapuram','CUDDAPAH','ANDHRA PRADESH'),(516454,'Simhadripuram','CUDDAPAH','ANDHRA PRADESH'),(516464,'Kondapuram','CUDDAPAH','ANDHRA PRADESH'),(516474,'Kondapuram','CUDDAPAH','ANDHRA PRADESH'),(516484,'Lingala','CUDDAPAH','ANDHRA PRADESH'),(516501,'Badvel','CUDDAPAH','ANDHRA PRADESH'),(516502,'Brahmamgarimattam','CUDDAPAH','ANDHRA PRADESH'),(516503,'Brahmamgarimattam','CUDDAPAH','ANDHRA PRADESH'),(516504,'Ramapuram','CUDDAPAH','ANDHRA PRADESH'),(516505,'Porumamilla','CUDDAPAH','ANDHRA PRADESH'),(517001,'Chittoor','CHITTOOR','ANDHRA PRADESH'),(517002,'Chittoor','CHITTOOR','ANDHRA PRADESH'),(517004,'Chittoor','CHITTOOR','ANDHRA PRADESH'),(517101,'Chandragiri','CHITTOOR','ANDHRA PRADESH'),(517102,'Chandragiri','CHITTOOR','ANDHRA PRADESH'),(517112,'Pakala','CHITTOOR','ANDHRA PRADESH'),(517113,'Pulicherla','CHITTOOR','ANDHRA PRADESH'),(517123,'Sodam','CHITTOOR','ANDHRA PRADESH'),(517124,'Puthalapattu','CHITTOOR','ANDHRA PRADESH'),(517125,'Gangadhara Nellore','CHITTOOR','ANDHRA PRADESH'),(517126,'Penumuru','CHITTOOR','ANDHRA PRADESH'),(517127,'Chittoor','CHITTOOR','ANDHRA PRADESH'),(517128,'Bangarupalem','CHITTOOR','ANDHRA PRADESH'),(517129,'Thavanampalle','CHITTOOR','ANDHRA PRADESH'),(517130,'Irala','CHITTOOR','ANDHRA PRADESH'),(517131,'Thavanampalle','CHITTOOR','ANDHRA PRADESH'),(517132,'Gudipala','CHITTOOR','ANDHRA PRADESH'),(517152,'Pakala','CHITTOOR','ANDHRA PRADESH'),(517167,'Gangadhara Nellore','CHITTOOR','ANDHRA PRADESH'),(517172,'Pulicherla','CHITTOOR','ANDHRA PRADESH'),(517192,'Rompicherla','CHITTOOR','ANDHRA PRADESH'),(517193,'Chinnagottigallu','CHITTOOR','ANDHRA PRADESH'),(517194,'Yerravaripalem','CHITTOOR','ANDHRA PRADESH'),(517213,'Kambhamvaripalle','CHITTOOR','ANDHRA PRADESH'),(517214,'Pileru','CHITTOOR','ANDHRA PRADESH'),(517234,'Kalikiri','CHITTOOR','ANDHRA PRADESH'),(517235,'Kambhamvaripalle','CHITTOOR','ANDHRA PRADESH'),(517236,'Kalakada','CHITTOOR','ANDHRA PRADESH'),(517237,'Vayalpad','CHITTOOR','ANDHRA PRADESH'),(517247,'Punganur','CHITTOOR','ANDHRA PRADESH'),(517257,'Chowdepalle','CHITTOOR','ANDHRA PRADESH'),(517277,'Vayalpad','CHITTOOR','ANDHRA PRADESH'),(517280,'Kurabalakota','CHITTOOR','ANDHRA PRADESH'),(517291,'Gurramkonda','CHITTOOR','ANDHRA PRADESH'),(517297,'Thamballapalle','CHITTOOR','ANDHRA PRADESH'),(517299,'Vayalpad','CHITTOOR','ANDHRA PRADESH'),(517305,'Gurramkonda','CHITTOOR','ANDHRA PRADESH'),(517319,'Madanapalle','CHITTOOR','ANDHRA PRADESH'),(517325,'Kurabalakota','CHITTOOR','ANDHRA PRADESH'),(517326,'Madanapalle','CHITTOOR','ANDHRA PRADESH'),(517350,'Kurabalakota','CHITTOOR','ANDHRA PRADESH'),(517351,'Mulakalacheruvu','CHITTOOR','ANDHRA PRADESH'),(517352,'Kurabalakota','CHITTOOR','ANDHRA PRADESH'),(517370,'B.Kothakota','CHITTOOR','ANDHRA PRADESH'),(517390,'Mulakalacheruvu','CHITTOOR','ANDHRA PRADESH'),(517391,'Pedda Thippasamudram','CHITTOOR','ANDHRA PRADESH'),(517401,'Ramakuppam','CHITTOOR','ANDHRA PRADESH'),(517403,'Gudipala','CHITTOOR','ANDHRA PRADESH'),(517408,'Palamaner','CHITTOOR','ANDHRA PRADESH'),(517414,'Peddapanjani','CHITTOOR','ANDHRA PRADESH'),(517415,'Baireddipalle','CHITTOOR','ANDHRA PRADESH'),(517416,'Thavanampalle','CHITTOOR','ANDHRA PRADESH'),(517417,'Ramasamudram','CHITTOOR','ANDHRA PRADESH'),(517418,'Thamballapalle','CHITTOOR','ANDHRA PRADESH'),(517419,'Gudipala','CHITTOOR','ANDHRA PRADESH'),(517421,'Gangadhara Nellore','CHITTOOR','ANDHRA PRADESH'),(517422,'Yadamarri','CHITTOOR','ANDHRA PRADESH'),(517423,'Santhipuram','CHITTOOR','ANDHRA PRADESH'),(517424,'Venkatagirikota','CHITTOOR','ANDHRA PRADESH'),(517425,'Ramakuppam','CHITTOOR','ANDHRA PRADESH'),(517426,'Gudupalle','CHITTOOR','ANDHRA PRADESH'),(517429,'Bangarupalem','CHITTOOR','ANDHRA PRADESH'),(517432,'Baireddipalle','CHITTOOR','ANDHRA PRADESH'),(517501,'Tirupati (Urban)','CHITTOOR','ANDHRA PRADESH'),(517502,'Tirupati (Urban)','CHITTOOR','ANDHRA PRADESH'),(517503,'Tirupati (Rural)','CHITTOOR','ANDHRA PRADESH'),(517504,'Pakala','CHITTOOR','ANDHRA PRADESH'),(517505,'Tirupati (Rural)','CHITTOOR','ANDHRA PRADESH'),(517506,'Tirupati (Urban)','CHITTOOR','ANDHRA PRADESH'),(517507,'Tirupati (Rural)','CHITTOOR','ANDHRA PRADESH'),(517520,'Renigunta','CHITTOOR','ANDHRA PRADESH'),(517526,'Yerpedu','CHITTOOR','ANDHRA PRADESH'),(517536,'Srikalahasti','CHITTOOR','ANDHRA PRADESH'),(517541,'Varadaiahpalem','CHITTOOR','ANDHRA PRADESH'),(517551,'Vadamalapeta','CHITTOOR','ANDHRA PRADESH'),(517561,'Tirupati (Rural)','CHITTOOR','ANDHRA PRADESH'),(517569,'Vedurukuppam','CHITTOOR','ANDHRA PRADESH'),(517571,'Puttur','CHITTOOR','ANDHRA PRADESH'),(517581,'Narayanavanam','CHITTOOR','ANDHRA PRADESH'),(517582,'Karvetinagar','CHITTOOR','ANDHRA PRADESH'),(517583,'Puttur','CHITTOOR','ANDHRA PRADESH'),(517584,'Puttur','CHITTOOR','ANDHRA PRADESH'),(517586,'Vijayapuram','CHITTOOR','ANDHRA PRADESH'),(517587,'Nagari','CHITTOOR','ANDHRA PRADESH'),(517588,'Satyavedu','CHITTOOR','ANDHRA PRADESH'),(517589,'Pichatur','CHITTOOR','ANDHRA PRADESH'),(517590,'Nagari','CHITTOOR','ANDHRA PRADESH'),(517591,'Nindra','CHITTOOR','ANDHRA PRADESH'),(517592,'Nagari','CHITTOOR','ANDHRA PRADESH'),(517599,'Palasamudram','CHITTOOR','ANDHRA PRADESH'),(517619,'Renigunta','CHITTOOR','ANDHRA PRADESH'),(517620,'Srikalahasti','CHITTOOR','ANDHRA PRADESH'),(517640,'Srikalahasti','CHITTOOR','ANDHRA PRADESH'),(517641,'Srikalahasti','CHITTOOR','ANDHRA PRADESH'),(517642,'Buchinaidu Kandriga','CHITTOOR','ANDHRA PRADESH'),(517643,'K.V.B.Puram','CHITTOOR','ANDHRA PRADESH'),(517644,'Srikalahasti','CHITTOOR','ANDHRA PRADESH'),(517645,'Buchinaidu Kandriga','CHITTOOR','ANDHRA PRADESH'),(518001,'Kurnool','KURNOOL','ANDHRA PRADESH'),(518002,'Kurnool','KURNOOL','ANDHRA PRADESH'),(518003,'Kallur','KURNOOL','ANDHRA PRADESH'),(518004,'Kurnool','KURNOOL','ANDHRA PRADESH'),(518005,'Kurnool','KURNOOL','ANDHRA PRADESH'),(518006,'Kurnool','KURNOOL','ANDHRA PRADESH'),(518007,'Kurnool','KURNOOL','ANDHRA PRADESH'),(518010,'Orvakal','KURNOOL','ANDHRA PRADESH'),(518101,'Srisailam','KURNOOL','ANDHRA PRADESH'),(518102,'Srisailam','KURNOOL','ANDHRA PRADESH'),(518112,'Panyam','KURNOOL','ANDHRA PRADESH'),(518122,'Owk','KURNOOL','ANDHRA PRADESH'),(518123,'Kolimigundla','KURNOOL','ANDHRA PRADESH'),(518124,'Banaganapalle','KURNOOL','ANDHRA PRADESH'),(518134,'Koilkuntla','KURNOOL','ANDHRA PRADESH'),(518135,'Dornipadu','KURNOOL','ANDHRA PRADESH'),(518145,'Uyyalawada','KURNOOL','ANDHRA PRADESH'),(518155,'Uyyalawada','KURNOOL','ANDHRA PRADESH'),(518165,'Sanjamala','KURNOOL','ANDHRA PRADESH'),(518166,'Kolimigundla','KURNOOL','ANDHRA PRADESH'),(518176,'Banaganapalle','KURNOOL','ANDHRA PRADESH'),(518186,'Banaganapalle','KURNOOL','ANDHRA PRADESH'),(518196,'Sanjamala','KURNOOL','ANDHRA PRADESH'),(518206,'Bethamcherla','KURNOOL','ANDHRA PRADESH'),(518216,'Veldurthi','KURNOOL','ANDHRA PRADESH'),(518217,'Veldurthi','KURNOOL','ANDHRA PRADESH'),(518218,'Kallur','KURNOOL','ANDHRA PRADESH'),(518220,'Kurnool','KURNOOL','ANDHRA PRADESH'),(518221,'Dhone','KURNOOL','ANDHRA PRADESH'),(518222,'Krishnagiri','KURNOOL','ANDHRA PRADESH'),(518225,'Krishnagiri','KURNOOL','ANDHRA PRADESH'),(518301,'Adoni','KURNOOL','ANDHRA PRADESH'),(518302,'Alur','KURNOOL','ANDHRA PRADESH'),(518308,'Holagunda','KURNOOL','ANDHRA PRADESH'),(518313,'Mantralayam','KURNOOL','ANDHRA PRADESH'),(518323,'Yemmiganur','KURNOOL','ANDHRA PRADESH'),(518333,'Kowthalam','KURNOOL','ANDHRA PRADESH'),(518343,'Nandavaram','KURNOOL','ANDHRA PRADESH'),(518344,'Kowthalam','KURNOOL','ANDHRA PRADESH'),(518345,'Mantralayam','KURNOOL','ANDHRA PRADESH'),(518346,'Holagunda','KURNOOL','ANDHRA PRADESH'),(518347,'Aspari','KURNOOL','ANDHRA PRADESH'),(518348,'Halaharvi','KURNOOL','ANDHRA PRADESH'),(518349,'Mantralayam','KURNOOL','ANDHRA PRADESH'),(518350,'Gonegandla','KURNOOL','ANDHRA PRADESH'),(518360,'Yemmiganur','KURNOOL','ANDHRA PRADESH'),(518380,'Pattikonda','KURNOOL','ANDHRA PRADESH'),(518385,'Maddikera (East)','KURNOOL','ANDHRA PRADESH'),(518390,'Tuggali','KURNOOL','ANDHRA PRADESH'),(518395,'Alur','KURNOOL','ANDHRA PRADESH'),(518396,'Chippagiri','KURNOOL','ANDHRA PRADESH'),(518401,'Pamulapadu','KURNOOL','ANDHRA PRADESH'),(518405,'Midthur','KURNOOL','ANDHRA PRADESH'),(518411,'Pagidyala','KURNOOL','ANDHRA PRADESH'),(518412,'Pagidyala','KURNOOL','ANDHRA PRADESH'),(518422,'Atmakur','KURNOOL','ANDHRA PRADESH'),(518432,'Nandikotkur','KURNOOL','ANDHRA PRADESH'),(518442,'Pamulapadu','KURNOOL','ANDHRA PRADESH'),(518452,'Kurnool','KURNOOL','ANDHRA PRADESH'),(518462,'C.Belagal','KURNOOL','ANDHRA PRADESH'),(518463,'Gonegandla','KURNOOL','ANDHRA PRADESH'),(518464,'Kodumur','KURNOOL','ANDHRA PRADESH'),(518465,'Devanakonda','KURNOOL','ANDHRA PRADESH'),(518466,'Gudur','KURNOOL','ANDHRA PRADESH'),(518467,'Kodumur','KURNOOL','ANDHRA PRADESH'),(518468,'Dhone','KURNOOL','ANDHRA PRADESH'),(518501,'Nandyal','KURNOOL','ANDHRA PRADESH'),(518502,'Gospadu','KURNOOL','ANDHRA PRADESH'),(518508,'Jupadu Bungalow','KURNOOL','ANDHRA PRADESH'),(518510,'Allagadda','KURNOOL','ANDHRA PRADESH'),(518511,'Gadivemula','KURNOOL','ANDHRA PRADESH'),(518512,'Mahanandi','KURNOOL','ANDHRA PRADESH'),(518513,'Bandi Atmakur','KURNOOL','ANDHRA PRADESH'),(518523,'Bandi Atmakur','KURNOOL','ANDHRA PRADESH'),(518533,'Pamulapadu','KURNOOL','ANDHRA PRADESH'),(518543,'Rudravaram','KURNOOL','ANDHRA PRADESH'),(518553,'Chagalamarri','KURNOOL','ANDHRA PRADESH'),(518563,'Sirvel','KURNOOL','ANDHRA PRADESH'),(518573,'Gospadu','KURNOOL','ANDHRA PRADESH'),(518583,'Mahanandi','KURNOOL','ANDHRA PRADESH'),(518593,'Gospadu','KURNOOL','ANDHRA PRADESH'),(518594,'Rudravaram','KURNOOL','ANDHRA PRADESH'),(518598,'Bethamcherla','KURNOOL','ANDHRA PRADESH'),(518599,'Bethamcherla','KURNOOL','ANDHRA PRADESH'),(518674,'Gospadu','KURNOOL','ANDHRA PRADESH'),(520001,'Vijayawada (Urban)','KRISHNA','ANDHRA PRADESH'),(520002,'Vijayawada (Urban)','KRISHNA','ANDHRA PRADESH'),(520003,'Vijayawada (Urban)','KRISHNA','ANDHRA PRADESH'),(520004,'Vijayawada (Urban)','KRISHNA','ANDHRA PRADESH'),(520007,'Vijayawada (Urban)','KRISHNA','ANDHRA PRADESH'),(520008,'Vijayawada (Urban)','KRISHNA','ANDHRA PRADESH'),(520010,'Vijayawada (Urban)','KRISHNA','ANDHRA PRADESH'),(520011,'Vijayawada (Urban)','KRISHNA','ANDHRA PRADESH'),(520012,'Vijayawada (Urban)','KRISHNA','ANDHRA PRADESH'),(520013,'Vijayawada (Urban)','KRISHNA','ANDHRA PRADESH'),(520015,'Vijayawada (Urban)','KRISHNA','ANDHRA PRADESH'),(521001,'Machilipatnam','KRISHNA','ANDHRA PRADESH'),(521002,'Machilipatnam','KRISHNA','ANDHRA PRADESH'),(521003,'Machilipatnam','KRISHNA','ANDHRA PRADESH'),(521101,'Gannavaram','KRISHNA','ANDHRA PRADESH'),(521102,'Gannavaram','KRISHNA','ANDHRA PRADESH'),(521104,'Vijayawada (Rural)','KRISHNA','ANDHRA PRADESH'),(521105,'Bapulapadu','KRISHNA','ANDHRA PRADESH'),(521106,'Bapulapadu','KRISHNA','ANDHRA PRADESH'),(521107,'Gannavaram','KRISHNA','ANDHRA PRADESH'),(521108,'Vijayawada (Rural)','KRISHNA','ANDHRA PRADESH'),(521109,'Unguturu','KRISHNA','ANDHRA PRADESH'),(521110,'Bapulapadu','KRISHNA','ANDHRA PRADESH'),(521111,'Bapulapadu','KRISHNA','ANDHRA PRADESH'),(521120,'Nagayalanka','KRISHNA','ANDHRA PRADESH'),(521121,'Avanigadda','KRISHNA','ANDHRA PRADESH'),(521122,'Avanigadda','KRISHNA','ANDHRA PRADESH'),(521125,'Mopidevi','KRISHNA','ANDHRA PRADESH'),(521126,'Challapalle','KRISHNA','ANDHRA PRADESH'),(521130,'Mopidevi','KRISHNA','ANDHRA PRADESH'),(521131,'Ghantasala','KRISHNA','ANDHRA PRADESH'),(521132,'Pamidimukkala','KRISHNA','ANDHRA PRADESH'),(521133,'Ghantasala','KRISHNA','ANDHRA PRADESH'),(521134,'Penamaluru','KRISHNA','ANDHRA PRADESH'),(521135,'Movva','KRISHNA','ANDHRA PRADESH'),(521136,'Movva','KRISHNA','ANDHRA PRADESH'),(521137,'Penamaluru','KRISHNA','ANDHRA PRADESH'),(521138,'Movva','KRISHNA','ANDHRA PRADESH'),(521139,'Penamaluru','KRISHNA','ANDHRA PRADESH'),(521148,'Pedaparupudi','KRISHNA','ANDHRA PRADESH'),(521149,'Guduru','KRISHNA','ANDHRA PRADESH'),(521150,'Guduru','KRISHNA','ANDHRA PRADESH'),(521151,'Thotlavalluru','KRISHNA','ANDHRA PRADESH'),(521153,'Kankipadu','KRISHNA','ANDHRA PRADESH'),(521156,'Guduru','KRISHNA','ANDHRA PRADESH'),(521157,'Pamarru','KRISHNA','ANDHRA PRADESH'),(521158,'Pamarru','KRISHNA','ANDHRA PRADESH'),(521162,'Guduru','KRISHNA','ANDHRA PRADESH'),(521163,'Thotlavalluru','KRISHNA','ANDHRA PRADESH'),(521164,'Vuyyuru','KRISHNA','ANDHRA PRADESH'),(521165,'Vuyyuru','KRISHNA','ANDHRA PRADESH'),(521170,'Veerullapadu','KRISHNA','ANDHRA PRADESH'),(521175,'Jaggayyapeta','KRISHNA','ANDHRA PRADESH'),(521178,'Jaggayyapeta','KRISHNA','ANDHRA PRADESH'),(521180,'Kanchikacherla','KRISHNA','ANDHRA PRADESH'),(521181,'Veerullapadu','KRISHNA','ANDHRA PRADESH'),(521182,'Chandarlapadu','KRISHNA','ANDHRA PRADESH'),(521183,'Chandarlapadu','KRISHNA','ANDHRA PRADESH'),(521185,'Kanchikacherla','KRISHNA','ANDHRA PRADESH'),(521190,'Penuganchiprolu','KRISHNA','ANDHRA PRADESH'),(521201,'Nuzvid','KRISHNA','ANDHRA PRADESH'),(521202,'Nuzvid','KRISHNA','ANDHRA PRADESH'),(521207,'Musunuru','KRISHNA','ANDHRA PRADESH'),(521211,'Agiripalle','KRISHNA','ANDHRA PRADESH'),(521212,'Vijayawada (Rural)','KRISHNA','ANDHRA PRADESH'),(521213,'Musunuru','KRISHNA','ANDHRA PRADESH'),(521214,'Chatrai','KRISHNA','ANDHRA PRADESH'),(521215,'Reddigudem','KRISHNA','ANDHRA PRADESH'),(521225,'Vijayawada (Rural)','KRISHNA','ANDHRA PRADESH'),(521226,'A.Konduru','KRISHNA','ANDHRA PRADESH'),(521227,'Veerullapadu','KRISHNA','ANDHRA PRADESH'),(521228,'Ibrahimpatnam','KRISHNA','ANDHRA PRADESH'),(521229,'G.Konduru','KRISHNA','ANDHRA PRADESH'),(521230,'Mylavaram','KRISHNA','ANDHRA PRADESH'),(521235,'Tiruvuru','KRISHNA','ANDHRA PRADESH'),(521241,'Ibrahimpatnam','KRISHNA','ANDHRA PRADESH'),(521245,'Kankipadu','KRISHNA','ANDHRA PRADESH'),(521246,'Pamidimukkala','KRISHNA','ANDHRA PRADESH'),(521247,'Pamidimukkala','KRISHNA','ANDHRA PRADESH'),(521250,'Pamidimukkala','KRISHNA','ANDHRA PRADESH'),(521256,'Pamidimukkala','KRISHNA','ANDHRA PRADESH'),(521260,'Unguturu','KRISHNA','ANDHRA PRADESH'),(521261,'Vuyyuru','KRISHNA','ANDHRA PRADESH'),(521263,'Pedaparupudi','KRISHNA','ANDHRA PRADESH'),(521286,'Unguturu','KRISHNA','ANDHRA PRADESH'),(521301,'Gudivada','KRISHNA','ANDHRA PRADESH'),(521311,'Unguturu','KRISHNA','ANDHRA PRADESH'),(521312,'Nandivada','KRISHNA','ANDHRA PRADESH'),(521321,'Nandivada','KRISHNA','ANDHRA PRADESH'),(521322,'Pamarru','KRISHNA','ANDHRA PRADESH'),(521323,'Mudinepalle','KRISHNA','ANDHRA PRADESH'),(521324,'Bantumilli','KRISHNA','ANDHRA PRADESH'),(521325,'Mudinepalle','KRISHNA','ANDHRA PRADESH'),(521326,'Mandavalli','KRISHNA','ANDHRA PRADESH'),(521327,'Gudivada','KRISHNA','ANDHRA PRADESH'),(521328,'Koduru','KRISHNA','ANDHRA PRADESH'),(521329,'Mudinepalle','KRISHNA','ANDHRA PRADESH'),(521330,'Gudlavalleru','KRISHNA','ANDHRA PRADESH'),(521331,'Guduru','KRISHNA','ANDHRA PRADESH'),(521332,'Gudlavalleru','KRISHNA','ANDHRA PRADESH'),(521333,'Kaikalur','KRISHNA','ANDHRA PRADESH'),(521340,'Kaikalur','KRISHNA','ANDHRA PRADESH'),(521343,'Mudinepalle','KRISHNA','ANDHRA PRADESH'),(521344,'Kalidindi','KRISHNA','ANDHRA PRADESH'),(521345,'Mandavalli','KRISHNA','ANDHRA PRADESH'),(521356,'Gudlavalleru','KRISHNA','ANDHRA PRADESH'),(521366,'Guduru','KRISHNA','ANDHRA PRADESH'),(521369,'Bantumilli','KRISHNA','ANDHRA PRADESH'),(521390,'Pamarru','KRISHNA','ANDHRA PRADESH'),(521401,'Tiruvuru','KRISHNA','ANDHRA PRADESH'),(521402,'Vatsavai','KRISHNA','ANDHRA PRADESH'),(521403,'Gampalagudem','KRISHNA','ANDHRA PRADESH'),(521456,'Ibrahimpatnam','KRISHNA','ANDHRA PRADESH'),(521457,'Jaggayyapeta','KRISHNA','ANDHRA PRADESH'),(522001,'Guntur','GUNTUR','ANDHRA PRADESH'),(522002,'Guntur','GUNTUR','ANDHRA PRADESH'),(522003,'Guntur','GUNTUR','ANDHRA PRADESH'),(522004,'Guntur','GUNTUR','ANDHRA PRADESH'),(522005,'Guntur','GUNTUR','ANDHRA PRADESH'),(522006,'Guntur','GUNTUR','ANDHRA PRADESH'),(522007,'Guntur','GUNTUR','ANDHRA PRADESH'),(522009,'Guntur','GUNTUR','ANDHRA PRADESH'),(522015,'Pedanandipadu','GUNTUR','ANDHRA PRADESH'),(522016,'Amaravathi','GUNTUR','ANDHRA PRADESH'),(522017,'Vatticherukuru','GUNTUR','ANDHRA PRADESH'),(522018,'Tadikonda','GUNTUR','ANDHRA PRADESH'),(522019,'Prathipadu','GUNTUR','ANDHRA PRADESH'),(522020,'Amaravathi','GUNTUR','ANDHRA PRADESH'),(522034,'Guntur','GUNTUR','ANDHRA PRADESH'),(522101,'Bapatla','GUNTUR','ANDHRA PRADESH'),(522102,'Bapatla','GUNTUR','ANDHRA PRADESH'),(522111,'Karlapalem','GUNTUR','ANDHRA PRADESH'),(522112,'Kakumanu','GUNTUR','ANDHRA PRADESH'),(522113,'Bapatla','GUNTUR','ANDHRA PRADESH'),(522124,'Ponnur','GUNTUR','ANDHRA PRADESH'),(522201,'Tenali','GUNTUR','ANDHRA PRADESH'),(522202,'Tenali','GUNTUR','ANDHRA PRADESH'),(522211,'Tsundur','GUNTUR','ANDHRA PRADESH'),(522212,'Ponnur','GUNTUR','ANDHRA PRADESH'),(522213,'Tenali','GUNTUR','ANDHRA PRADESH'),(522233,'Edlapadu','GUNTUR','ANDHRA PRADESH'),(522234,'Nadendla','GUNTUR','ANDHRA PRADESH'),(522235,'Pedanandipadu','GUNTUR','ANDHRA PRADESH'),(522236,'Thullur','GUNTUR','ANDHRA PRADESH'),(522237,'Thullur','GUNTUR','ANDHRA PRADESH'),(522256,'Bhattiprolu','GUNTUR','ANDHRA PRADESH'),(522257,'Bhattiprolu','GUNTUR','ANDHRA PRADESH'),(522258,'Nagaram','GUNTUR','ANDHRA PRADESH'),(522259,'Bhattiprolu','GUNTUR','ANDHRA PRADESH'),(522261,'Vemuru','GUNTUR','ANDHRA PRADESH'),(522262,'Nizampatnam','GUNTUR','ANDHRA PRADESH'),(522264,'Kollur','GUNTUR','ANDHRA PRADESH'),(522265,'Repalle','GUNTUR','ANDHRA PRADESH'),(522268,'Nagaram','GUNTUR','ANDHRA PRADESH'),(522301,'Tenali','GUNTUR','ANDHRA PRADESH'),(522302,'Mangalagiri','GUNTUR','ANDHRA PRADESH'),(522303,'Tadepalle','GUNTUR','ANDHRA PRADESH'),(522304,'Kollipara','GUNTUR','ANDHRA PRADESH'),(522305,'Duggirala','GUNTUR','ANDHRA PRADESH'),(522306,'Tenali','GUNTUR','ANDHRA PRADESH'),(522307,'Tenali','GUNTUR','ANDHRA PRADESH'),(522308,'Duggirala','GUNTUR','ANDHRA PRADESH'),(522309,'Cherukupalle H/O Arumbaka','GUNTUR','ANDHRA PRADESH'),(522310,'Bapatla','GUNTUR','ANDHRA PRADESH'),(522311,'Pittalavanipalem','GUNTUR','ANDHRA PRADESH'),(522312,'Amruthalur','GUNTUR','ANDHRA PRADESH'),(522313,'Amruthalur','GUNTUR','ANDHRA PRADESH'),(522314,'Pittalavanipalem','GUNTUR','ANDHRA PRADESH'),(522315,'Machavaram','GUNTUR','ANDHRA PRADESH'),(522316,'Ponnur','GUNTUR','ANDHRA PRADESH'),(522317,'Bapatla','GUNTUR','ANDHRA PRADESH'),(522318,'Ponnur','GUNTUR','ANDHRA PRADESH'),(522324,'Kollur','GUNTUR','ANDHRA PRADESH'),(522325,'Amruthalur','GUNTUR','ANDHRA PRADESH'),(522329,'Pittalavanipalem','GUNTUR','ANDHRA PRADESH'),(522330,'Duggirala','GUNTUR','ANDHRA PRADESH'),(522341,'Amruthalur','GUNTUR','ANDHRA PRADESH'),(522401,'Medikonduru','GUNTUR','ANDHRA PRADESH'),(522402,'Sattenapalle','GUNTUR','ANDHRA PRADESH'),(522403,'Sattenapalle','GUNTUR','ANDHRA PRADESH'),(522408,'Muppalla','GUNTUR','ANDHRA PRADESH'),(522409,'Atchampet','GUNTUR','ANDHRA PRADESH'),(522410,'Atchampet','GUNTUR','ANDHRA PRADESH'),(522411,'Bellamkonda','GUNTUR','ANDHRA PRADESH'),(522412,'Bollapalle','GUNTUR','ANDHRA PRADESH'),(522413,'Machavaram','GUNTUR','ANDHRA PRADESH'),(522414,'Dachepalle','GUNTUR','ANDHRA PRADESH'),(522415,'Gurazala','GUNTUR','ANDHRA PRADESH'),(522421,'Rentachintala','GUNTUR','ANDHRA PRADESH'),(522426,'Macherla','GUNTUR','ANDHRA PRADESH'),(522435,'Machavaram','GUNTUR','ANDHRA PRADESH'),(522436,'Pedakurapadu','GUNTUR','ANDHRA PRADESH'),(522437,'Piduguralla','GUNTUR','ANDHRA PRADESH'),(522438,'Medikonduru','GUNTUR','ANDHRA PRADESH'),(522439,'Macherla','GUNTUR','ANDHRA PRADESH'),(522501,'Tadepalle','GUNTUR','ANDHRA PRADESH'),(522502,'Mangalagiri','GUNTUR','ANDHRA PRADESH'),(522503,'Mangalagiri','GUNTUR','ANDHRA PRADESH'),(522508,'Pedakakani','GUNTUR','ANDHRA PRADESH'),(522509,'Pedakakani','GUNTUR','ANDHRA PRADESH'),(522510,'Pedakakani','GUNTUR','ANDHRA PRADESH'),(522529,'Phirangipuram','GUNTUR','ANDHRA PRADESH'),(522549,'Nuzendla','GUNTUR','ANDHRA PRADESH'),(522601,'Narasaraopet','GUNTUR','ANDHRA PRADESH'),(522603,'Narasaraopet','GUNTUR','ANDHRA PRADESH'),(522611,'Nadendla','GUNTUR','ANDHRA PRADESH'),(522612,'Durgi','GUNTUR','ANDHRA PRADESH'),(522613,'Veldurthi','GUNTUR','ANDHRA PRADESH'),(522614,'Karempudi','GUNTUR','ANDHRA PRADESH'),(522615,'Nekarikallu','GUNTUR','ANDHRA PRADESH'),(522616,'Chilakaluripet H/O.Purushotha Patnam','GUNTUR','ANDHRA PRADESH'),(522617,'Rompicherla','GUNTUR','ANDHRA PRADESH'),(522619,'Edlapadu','GUNTUR','ANDHRA PRADESH'),(522626,'Chilakaluripet H/O.Purushotha Patnam','GUNTUR','ANDHRA PRADESH'),(522646,'Savalyapuram H/O Kanamarlapudi','GUNTUR','ANDHRA PRADESH'),(522647,'Vinukonda','GUNTUR','ANDHRA PRADESH'),(522649,'Nuzendla','GUNTUR','ANDHRA PRADESH'),(522657,'Vinukonda','GUNTUR','ANDHRA PRADESH'),(522658,'Ipur','GUNTUR','ANDHRA PRADESH'),(522659,'Nuzendla','GUNTUR','ANDHRA PRADESH'),(522660,'Nuzendla','GUNTUR','ANDHRA PRADESH'),(522661,'Ipur','GUNTUR','ANDHRA PRADESH'),(522663,'Vinukonda','GUNTUR','ANDHRA PRADESH'),(523001,'Ongole','PRAKASAM','ANDHRA PRADESH'),(523002,'Ongole','PRAKASAM','ANDHRA PRADESH'),(523101,'Singarayakonda','PRAKASAM','ANDHRA PRADESH'),(523104,'Singarayakonda','PRAKASAM','ANDHRA PRADESH'),(523105,'Kandukur','PRAKASAM','ANDHRA PRADESH'),(523108,'Pamur','PRAKASAM','ANDHRA PRADESH'),(523109,'Kandukur','PRAKASAM','ANDHRA PRADESH'),(523110,'Pamur','PRAKASAM','ANDHRA PRADESH'),(523111,'Ponnaluru','PRAKASAM','ANDHRA PRADESH'),(523112,'Chandra Sekhara Puram','PRAKASAM','ANDHRA PRADESH'),(523113,'Voletivaripalem','PRAKASAM','ANDHRA PRADESH'),(523114,'Pamur','PRAKASAM','ANDHRA PRADESH'),(523115,'Lingasamudram','PRAKASAM','ANDHRA PRADESH'),(523116,'Voletivaripalem','PRAKASAM','ANDHRA PRADESH'),(523117,'Pedacherlo Palle','PRAKASAM','ANDHRA PRADESH'),(523135,'Chinaganjam','PRAKASAM','ANDHRA PRADESH'),(523155,'Chirala','PRAKASAM','ANDHRA PRADESH'),(523156,'Chirala','PRAKASAM','ANDHRA PRADESH'),(523157,'Chirala','PRAKASAM','ANDHRA PRADESH'),(523165,'Chirala','PRAKASAM','ANDHRA PRADESH'),(523166,'Chirala','PRAKASAM','ANDHRA PRADESH'),(523167,'Inkollu','PRAKASAM','ANDHRA PRADESH'),(523168,'Karamchedu','PRAKASAM','ANDHRA PRADESH'),(523169,'Parchur','PRAKASAM','ANDHRA PRADESH'),(523170,'Karamchedu','PRAKASAM','ANDHRA PRADESH'),(523171,'Parchur','PRAKASAM','ANDHRA PRADESH'),(523180,'Naguluppala Padu','PRAKASAM','ANDHRA PRADESH'),(523181,'Chinaganjam','PRAKASAM','ANDHRA PRADESH'),(523182,'Ongole','PRAKASAM','ANDHRA PRADESH'),(523183,'Naguluppala Padu','PRAKASAM','ANDHRA PRADESH'),(523184,'Vetapalem','PRAKASAM','ANDHRA PRADESH'),(523185,'Chinaganjam','PRAKASAM','ANDHRA PRADESH'),(523186,'Naguluppala Padu','PRAKASAM','ANDHRA PRADESH'),(523187,'Vetapalem','PRAKASAM','ANDHRA PRADESH'),(523190,'Inkollu','PRAKASAM','ANDHRA PRADESH'),(523201,'Mundlamuru','PRAKASAM','ANDHRA PRADESH'),(523211,'Maddipadu','PRAKASAM','ANDHRA PRADESH'),(523212,'Korisapadu','PRAKASAM','ANDHRA PRADESH'),(523213,'Janakavarampanguluru','PRAKASAM','ANDHRA PRADESH'),(523214,'Janakavarampanguluru','PRAKASAM','ANDHRA PRADESH'),(523223,'Chandra Sekhara Puram','PRAKASAM','ANDHRA PRADESH'),(523224,'Veligandla','PRAKASAM','ANDHRA PRADESH'),(523225,'Santhanuthala Padu','PRAKASAM','ANDHRA PRADESH'),(523226,'Chimakurthi','PRAKASAM','ANDHRA PRADESH'),(523227,'Hanumanthuni Padu','PRAKASAM','ANDHRA PRADESH'),(523228,'Hanumanthuni Padu','PRAKASAM','ANDHRA PRADESH'),(523230,'Kanigiri','PRAKASAM','ANDHRA PRADESH'),(523241,'Konakanamitla','PRAKASAM','ANDHRA PRADESH'),(523245,'Podili','PRAKASAM','ANDHRA PRADESH'),(523246,'Konakanamitla','PRAKASAM','ANDHRA PRADESH'),(523247,'Darsi','PRAKASAM','ANDHRA PRADESH'),(523252,'Darsi','PRAKASAM','ANDHRA PRADESH'),(523253,'Podili','PRAKASAM','ANDHRA PRADESH'),(523254,'Kanigiri','PRAKASAM','ANDHRA PRADESH'),(523260,'Martur','PRAKASAM','ANDHRA PRADESH'),(523261,'Martur','PRAKASAM','ANDHRA PRADESH'),(523262,'Naguluppala Padu','PRAKASAM','ANDHRA PRADESH'),(523263,'Maddipadu','PRAKASAM','ANDHRA PRADESH'),(523264,'Thallur','PRAKASAM','ANDHRA PRADESH'),(523265,'Mundlamuru','PRAKASAM','ANDHRA PRADESH'),(523270,'Kondapi','PRAKASAM','ANDHRA PRADESH'),(523271,'Zarugumilli','PRAKASAM','ANDHRA PRADESH'),(523272,'Tangutur','PRAKASAM','ANDHRA PRADESH'),(523273,'Santhanuthala Padu','PRAKASAM','ANDHRA PRADESH'),(523274,'Tangutur','PRAKASAM','ANDHRA PRADESH'),(523279,'Kondapi','PRAKASAM','ANDHRA PRADESH'),(523280,'Kotha Patnam','PRAKASAM','ANDHRA PRADESH'),(523281,'Ulavapadu','PRAKASAM','ANDHRA PRADESH'),(523286,'Kotha Patnam','PRAKASAM','ANDHRA PRADESH'),(523291,'Ulavapadu','PRAKASAM','ANDHRA PRADESH'),(523292,'Ulavapadu','PRAKASAM','ANDHRA PRADESH'),(523301,'Martur','PRAKASAM','ANDHRA PRADESH'),(523302,'Santhamaguluru','PRAKASAM','ANDHRA PRADESH'),(523303,'Santhamaguluru','PRAKASAM','ANDHRA PRADESH'),(523304,'Kurichedu','PRAKASAM','ANDHRA PRADESH'),(523305,'Donakonda','PRAKASAM','ANDHRA PRADESH'),(523315,'Donakonda','PRAKASAM','ANDHRA PRADESH'),(523316,'Markapur','PRAKASAM','ANDHRA PRADESH'),(523320,'Peda Araveedu','PRAKASAM','ANDHRA PRADESH'),(523326,'Pullalacheruvu','PRAKASAM','ANDHRA PRADESH'),(523327,'Yerragondapalem','PRAKASAM','ANDHRA PRADESH'),(523328,'Pullalacheruvu','PRAKASAM','ANDHRA PRADESH'),(523329,'Markapur','PRAKASAM','ANDHRA PRADESH'),(523330,'Tripuranthakam','PRAKASAM','ANDHRA PRADESH'),(523331,'Dornala','PRAKASAM','ANDHRA PRADESH'),(523332,'Tarlupadu','PRAKASAM','ANDHRA PRADESH'),(523333,'Cumbum','PRAKASAM','ANDHRA PRADESH'),(523334,'Bestawaripeta','PRAKASAM','ANDHRA PRADESH'),(523335,'Ardhaveedu','PRAKASAM','ANDHRA PRADESH'),(523336,'Ardhaveedu','PRAKASAM','ANDHRA PRADESH'),(523346,'Bestawaripeta','PRAKASAM','ANDHRA PRADESH'),(523356,'Komarolu','PRAKASAM','ANDHRA PRADESH'),(523357,'Giddalur','PRAKASAM','ANDHRA PRADESH'),(523367,'Giddalur','PRAKASAM','ANDHRA PRADESH'),(523368,'Racherla','PRAKASAM','ANDHRA PRADESH'),(523369,'Komarolu','PRAKASAM','ANDHRA PRADESH'),(523370,'Cumbum','PRAKASAM','ANDHRA PRADESH'),(523371,'Tarlupadu','PRAKASAM','ANDHRA PRADESH'),(523372,'Cumbum','PRAKASAM','ANDHRA PRADESH'),(523373,'Komarolu','PRAKASAM','ANDHRA PRADESH'),(524001,'Nellore','NELLORE','ANDHRA PRADESH'),(524002,'Nellore','NELLORE','ANDHRA PRADESH'),(524003,'Nellore','NELLORE','ANDHRA PRADESH'),(524004,'Nellore','NELLORE','ANDHRA PRADESH'),(524005,'Nellore','NELLORE','ANDHRA PRADESH'),(524101,'Gudur','NELLORE','ANDHRA PRADESH'),(524121,'Tada','NELLORE','ANDHRA PRADESH'),(524123,'Sullurpeta','NELLORE','ANDHRA PRADESH'),(524124,'Sullurpeta','NELLORE','ANDHRA PRADESH'),(524126,'Naidupet','NELLORE','ANDHRA PRADESH'),(524127,'Chittamur','NELLORE','ANDHRA PRADESH'),(524129,'Pellakur','NELLORE','ANDHRA PRADESH'),(524131,'Gudur','NELLORE','ANDHRA PRADESH'),(524132,'Venkatagiri','NELLORE','ANDHRA PRADESH'),(524134,'Dakkili','NELLORE','ANDHRA PRADESH'),(524137,'Kovur','NELLORE','ANDHRA PRADESH'),(524142,'Bogole','NELLORE','ANDHRA PRADESH'),(524152,'Bogole','NELLORE','ANDHRA PRADESH'),(524201,'Kavali','NELLORE','ANDHRA PRADESH'),(524203,'Kavali','NELLORE','ANDHRA PRADESH'),(524221,'Vinjamur','NELLORE','ANDHRA PRADESH'),(524222,'Duttalur','NELLORE','ANDHRA PRADESH'),(524223,'Jaladanki','NELLORE','ANDHRA PRADESH'),(524224,'Kaligiri','NELLORE','ANDHRA PRADESH'),(524225,'Kaligiri','NELLORE','ANDHRA PRADESH'),(524226,'Udayagiri','NELLORE','ANDHRA PRADESH'),(524227,'Varikuntapadu','NELLORE','ANDHRA PRADESH'),(524228,'Vinjamur','NELLORE','ANDHRA PRADESH'),(524230,'Marripadu','NELLORE','ANDHRA PRADESH'),(524234,'Anumasamudrampeta','NELLORE','ANDHRA PRADESH'),(524236,'Udayagiri','NELLORE','ANDHRA PRADESH'),(524239,'Kondapuram','NELLORE','ANDHRA PRADESH'),(524240,'Dagadarthi','NELLORE','ANDHRA PRADESH'),(524301,'Ananthasagaram','NELLORE','ANDHRA PRADESH'),(524302,'Ananthasagaram','NELLORE','ANDHRA PRADESH'),(524303,'Atmakur','NELLORE','ANDHRA PRADESH'),(524304,'Anumasamudrampeta','NELLORE','ANDHRA PRADESH'),(524305,'Buchireddipalem','NELLORE','ANDHRA PRADESH'),(524306,'Sangam','NELLORE','ANDHRA PRADESH'),(524307,'Atmakur','NELLORE','ANDHRA PRADESH'),(524308,'Sangam','NELLORE','ANDHRA PRADESH'),(524309,'Podalakur','NELLORE','ANDHRA PRADESH'),(524310,'Seetharamapuram','NELLORE','ANDHRA PRADESH'),(524311,'Thotapalligudur','NELLORE','ANDHRA PRADESH'),(524312,'Marripadu','NELLORE','ANDHRA PRADESH'),(524313,'Indukurpet','NELLORE','ANDHRA PRADESH'),(524314,'Indukurpet','NELLORE','ANDHRA PRADESH'),(524315,'Allur','NELLORE','ANDHRA PRADESH'),(524316,'Kodavalur','NELLORE','ANDHRA PRADESH'),(524317,'Dagadarthi','NELLORE','ANDHRA PRADESH'),(524318,'Vidavalur','NELLORE','ANDHRA PRADESH'),(524319,'Kodavalur','NELLORE','ANDHRA PRADESH'),(524320,'Venkatachalam','NELLORE','ANDHRA PRADESH'),(524321,'Venkatachalam','NELLORE','ANDHRA PRADESH'),(524322,'Atmakur','NELLORE','ANDHRA PRADESH'),(524323,'Muthukur','NELLORE','ANDHRA PRADESH'),(524341,'Chejerla','NELLORE','ANDHRA PRADESH'),(524342,'Rapur','NELLORE','ANDHRA PRADESH'),(524343,'Kaluvoya','NELLORE','ANDHRA PRADESH'),(524344,'Muthukur','NELLORE','ANDHRA PRADESH'),(524345,'Podalakur','NELLORE','ANDHRA PRADESH'),(524346,'Muthukur','NELLORE','ANDHRA PRADESH'),(524347,'Muthukur','NELLORE','ANDHRA PRADESH'),(524366,'Kodavalur','NELLORE','ANDHRA PRADESH'),(524401,'Tada','NELLORE','ANDHRA PRADESH'),(524402,'Ojili','NELLORE','ANDHRA PRADESH'),(524403,'Chittamur','NELLORE','ANDHRA PRADESH'),(524404,'Balayapalle','NELLORE','ANDHRA PRADESH'),(524405,'Manubolu','NELLORE','ANDHRA PRADESH'),(524406,'Gudur','NELLORE','ANDHRA PRADESH'),(524407,'Sydapuram','NELLORE','ANDHRA PRADESH'),(524408,'Rapur','NELLORE','ANDHRA PRADESH'),(524409,'Sydapuram','NELLORE','ANDHRA PRADESH'),(524410,'Chillakur','NELLORE','ANDHRA PRADESH'),(524411,'Kota','NELLORE','ANDHRA PRADESH'),(524412,'Chillakur','NELLORE','ANDHRA PRADESH'),(524413,'Vakadu','NELLORE','ANDHRA PRADESH'),(524414,'Rapur','NELLORE','ANDHRA PRADESH'),(524415,'Vakadu','NELLORE','ANDHRA PRADESH'),(524421,'Balayapalle','NELLORE','ANDHRA PRADESH'),(530001,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530002,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530003,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530004,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530005,'Pedagantyada','VISAKHAPATNAM','ANDHRA PRADESH'),(530007,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530008,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530009,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530011,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530012,'Pendurthi','VISAKHAPATNAM','ANDHRA PRADESH'),(530013,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530014,'Pedagantyada','VISAKHAPATNAM','ANDHRA PRADESH'),(530015,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530016,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530017,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530018,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530020,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530022,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530024,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530026,'Gajuwaka','VISAKHAPATNAM','ANDHRA PRADESH'),(530027,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530028,'Visakhapatnam (Rural)','VISAKHAPATNAM','ANDHRA PRADESH'),(530029,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530031,'Pedagantyada','VISAKHAPATNAM','ANDHRA PRADESH'),(530032,'Pedagantyada','VISAKHAPATNAM','ANDHRA PRADESH'),(530040,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530041,'Visakhapatnam (Rural)','VISAKHAPATNAM','ANDHRA PRADESH'),(530043,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530044,'Pedagantyada','VISAKHAPATNAM','ANDHRA PRADESH'),(530045,'Visakhapatnam (Urban)','VISAKHAPATNAM','ANDHRA PRADESH'),(530046,'Pedagantyada','VISAKHAPATNAM','ANDHRA PRADESH'),(530047,'Pendurthi','VISAKHAPATNAM','ANDHRA PRADESH'),(530048,'Visakhapatnam (Rural)','VISAKHAPATNAM','ANDHRA PRADESH'),(530049,'Pedagantyada','VISAKHAPATNAM','ANDHRA PRADESH'),(530051,'Pendurthi','VISAKHAPATNAM','ANDHRA PRADESH'),(530052,'Anandapuram','VISAKHAPATNAM','ANDHRA PRADESH'),(530053,'Visakhapatnam (Rural)','VISAKHAPATNAM','ANDHRA PRADESH'),(531001,'Anakapalle','VISAKHAPATNAM','ANDHRA PRADESH'),(531002,'Sabbavaram','VISAKHAPATNAM','ANDHRA PRADESH'),(531011,'Atchutapuram','VISAKHAPATNAM','ANDHRA PRADESH'),(531019,'Anakapalle','VISAKHAPATNAM','ANDHRA PRADESH'),(531020,'Paravada','VISAKHAPATNAM','ANDHRA PRADESH'),(531021,'Paravada','VISAKHAPATNAM','ANDHRA PRADESH'),(531022,'Devarapalle','VISAKHAPATNAM','ANDHRA PRADESH'),(531023,'Chodavaram','VISAKHAPATNAM','ANDHRA PRADESH'),(531024,'Paderu','VISAKHAPATNAM','ANDHRA PRADESH'),(531025,'Ravikamatham','VISAKHAPATNAM','ANDHRA PRADESH'),(531026,'Butchayyapeta','VISAKHAPATNAM','ANDHRA PRADESH'),(531027,'Paderu','VISAKHAPATNAM','ANDHRA PRADESH'),(531028,'Cheedikada','VISAKHAPATNAM','ANDHRA PRADESH'),(531029,'G.Madugula','VISAKHAPATNAM','ANDHRA PRADESH'),(531030,'Ananthagiri','VISAKHAPATNAM','ANDHRA PRADESH'),(531031,'Kasimkota','VISAKHAPATNAM','ANDHRA PRADESH'),(531032,'Anakapalle','VISAKHAPATNAM','ANDHRA PRADESH'),(531033,'Atchutapuram','VISAKHAPATNAM','ANDHRA PRADESH'),(531034,'K.Kotapadu','VISAKHAPATNAM','ANDHRA PRADESH'),(531035,'Sabbavaram','VISAKHAPATNAM','ANDHRA PRADESH'),(531036,'Chodavaram','VISAKHAPATNAM','ANDHRA PRADESH'),(531040,'Munchingi Puttu','VISAKHAPATNAM','ANDHRA PRADESH'),(531055,'Yelamanchili','VISAKHAPATNAM','ANDHRA PRADESH'),(531060,'S.Rayavaram','VISAKHAPATNAM','ANDHRA PRADESH'),(531061,'Rambilli','VISAKHAPATNAM','ANDHRA PRADESH'),(531075,'Devarapalle','VISAKHAPATNAM','ANDHRA PRADESH'),(531077,'Peda Bayalu','VISAKHAPATNAM','ANDHRA PRADESH'),(531081,'Nakkapalle','VISAKHAPATNAM','ANDHRA PRADESH'),(531082,'Yelamanchili','VISAKHAPATNAM','ANDHRA PRADESH'),(531083,'S.Rayavaram','VISAKHAPATNAM','ANDHRA PRADESH'),(531084,'Golugonda','VISAKHAPATNAM','ANDHRA PRADESH'),(531085,'Kotauratla','VISAKHAPATNAM','ANDHRA PRADESH'),(531087,'Koyyuru','VISAKHAPATNAM','ANDHRA PRADESH'),(531105,'Gudem Kotha Veedhi','VISAKHAPATNAM','ANDHRA PRADESH'),(531111,'Gudem Kotha Veedhi','VISAKHAPATNAM','ANDHRA PRADESH'),(531113,'Makavarapalem','VISAKHAPATNAM','ANDHRA PRADESH'),(531114,'Rolugunta','VISAKHAPATNAM','ANDHRA PRADESH'),(531115,'Nathavaram','VISAKHAPATNAM','ANDHRA PRADESH'),(531116,'Narsipatnam','VISAKHAPATNAM','ANDHRA PRADESH'),(531117,'Kotauratla','VISAKHAPATNAM','ANDHRA PRADESH'),(531118,'Chintapalle','VISAKHAPATNAM','ANDHRA PRADESH'),(531126,'Nakkapalle','VISAKHAPATNAM','ANDHRA PRADESH'),(531127,'Payakaraopeta','VISAKHAPATNAM','ANDHRA PRADESH'),(531133,'Gudem Kotha Veedhi','VISAKHAPATNAM','ANDHRA PRADESH'),(531149,'Araku Valley','VISAKHAPATNAM','ANDHRA PRADESH'),(531151,'Ananthagiri','VISAKHAPATNAM','ANDHRA PRADESH'),(531162,'Denkada','VIZIANAGARAM','ANDHRA PRADESH'),(531163,'Bheemunipatnam','VISAKHAPATNAM','ANDHRA PRADESH'),(531173,'Anandapuram','VISAKHAPATNAM','ANDHRA PRADESH'),(531219,'Anandapuram','VISAKHAPATNAM','ANDHRA PRADESH'),(532001,'Srikakulam','SRIKAKULAM','ANDHRA PRADESH'),(532005,'Etcherla','SRIKAKULAM','ANDHRA PRADESH'),(532122,'Balijipeta','VIZIANAGARAM','ANDHRA PRADESH'),(532123,'Regidi Amadalavalasa','SRIKAKULAM','ANDHRA PRADESH'),(532127,'Rajam','SRIKAKULAM','ANDHRA PRADESH'),(532148,'Ganguvarisigadam','SRIKAKULAM','ANDHRA PRADESH'),(532168,'Ponduru','SRIKAKULAM','ANDHRA PRADESH'),(532185,'Amadalavalasa','SRIKAKULAM','ANDHRA PRADESH'),(532186,'Amadalavalasa','SRIKAKULAM','ANDHRA PRADESH'),(532190,'Amadalavalasa','SRIKAKULAM','ANDHRA PRADESH'),(532195,'Kotabommali','SRIKAKULAM','ANDHRA PRADESH'),(532201,'Tekkali','SRIKAKULAM','ANDHRA PRADESH'),(532203,'Nandigam','SRIKAKULAM','ANDHRA PRADESH'),(532211,'Santhabommali','SRIKAKULAM','ANDHRA PRADESH'),(532212,'Tekkali','SRIKAKULAM','ANDHRA PRADESH'),(532213,'Pathapatnam','SRIKAKULAM','ANDHRA PRADESH'),(532214,'Pathapatnam','SRIKAKULAM','ANDHRA PRADESH'),(532215,'Meliaputti','SRIKAKULAM','ANDHRA PRADESH'),(532216,'Meliaputti','SRIKAKULAM','ANDHRA PRADESH'),(532218,'Vajrapukothuru','SRIKAKULAM','ANDHRA PRADESH'),(532219,'Vajrapukothuru','SRIKAKULAM','ANDHRA PRADESH'),(532220,'Nandigam','SRIKAKULAM','ANDHRA PRADESH'),(532221,'Meliaputti','SRIKAKULAM','ANDHRA PRADESH'),(532222,'Vajrapukothuru','SRIKAKULAM','ANDHRA PRADESH'),(532242,'Mandasa','SRIKAKULAM','ANDHRA PRADESH'),(532243,'Mandasa','SRIKAKULAM','ANDHRA PRADESH'),(532263,'Sompeta','SRIKAKULAM','ANDHRA PRADESH'),(532264,'Mandasa','SRIKAKULAM','ANDHRA PRADESH'),(532284,'Sompeta','SRIKAKULAM','ANDHRA PRADESH'),(532290,'Kanchili','SRIKAKULAM','ANDHRA PRADESH'),(532291,'Kanchili','SRIKAKULAM','ANDHRA PRADESH'),(532292,'Kaviti','SRIKAKULAM','ANDHRA PRADESH'),(532312,'Ichchapuram','SRIKAKULAM','ANDHRA PRADESH'),(532322,'Kaviti','SRIKAKULAM','ANDHRA PRADESH'),(532401,'Gara','SRIKAKULAM','ANDHRA PRADESH'),(532402,'Ponduru','SRIKAKULAM','ANDHRA PRADESH'),(532403,'Etcherla','SRIKAKULAM','ANDHRA PRADESH'),(532404,'Gara','SRIKAKULAM','ANDHRA PRADESH'),(532405,'Gara','SRIKAKULAM','ANDHRA PRADESH'),(532406,'Gara','SRIKAKULAM','ANDHRA PRADESH'),(532407,'Ranastalam','SRIKAKULAM','ANDHRA PRADESH'),(532408,'Etcherla','SRIKAKULAM','ANDHRA PRADESH'),(532409,'Ranastalam','SRIKAKULAM','ANDHRA PRADESH'),(532410,'Etcherla','SRIKAKULAM','ANDHRA PRADESH'),(532421,'Narasannapeta','SRIKAKULAM','ANDHRA PRADESH'),(532425,'Narasannapeta','SRIKAKULAM','ANDHRA PRADESH'),(532426,'Saravakota','SRIKAKULAM','ANDHRA PRADESH'),(532427,'Saravakota','SRIKAKULAM','ANDHRA PRADESH'),(532428,'Hiramandalam','SRIKAKULAM','ANDHRA PRADESH'),(532429,'Polaki','SRIKAKULAM','ANDHRA PRADESH'),(532430,'Santhabommali','SRIKAKULAM','ANDHRA PRADESH'),(532432,'Jalumuru','SRIKAKULAM','ANDHRA PRADESH'),(532440,'Regidi Amadalavalasa','SRIKAKULAM','ANDHRA PRADESH'),(532443,'Seethampeta','SRIKAKULAM','ANDHRA PRADESH'),(532445,'Burja','SRIKAKULAM','ANDHRA PRADESH'),(532455,'Seethampeta','SRIKAKULAM','ANDHRA PRADESH'),(532456,'Bhamini','SRIKAKULAM','ANDHRA PRADESH'),(532457,'Kothuru','SRIKAKULAM','ANDHRA PRADESH'),(532458,'Lakshminarsupeta','SRIKAKULAM','ANDHRA PRADESH'),(532459,'Hiramandalam','SRIKAKULAM','ANDHRA PRADESH'),(532460,'Seethampeta','SRIKAKULAM','ANDHRA PRADESH'),(532461,'Vangara','SRIKAKULAM','ANDHRA PRADESH'),(532462,'Palakonda','SRIKAKULAM','ANDHRA PRADESH'),(532474,'Kotabommali','SRIKAKULAM','ANDHRA PRADESH'),(532484,'Srikakulam','SRIKAKULAM','ANDHRA PRADESH'),(533001,'Kakinada (Urban)','EAST GODAVARI','ANDHRA PRADESH'),(533002,'Kakinada (Urban)','EAST GODAVARI','ANDHRA PRADESH'),(533003,'Kakinada (Urban)','EAST GODAVARI','ANDHRA PRADESH'),(533004,'Kakinada (Urban)','EAST GODAVARI','ANDHRA PRADESH'),(533005,'Samalkota','EAST GODAVARI','ANDHRA PRADESH'),(533006,'Pedapudi','EAST GODAVARI','ANDHRA PRADESH'),(533016,'Kakinada (Urban)','EAST GODAVARI','ANDHRA PRADESH'),(533101,'Rajahmundry (Urban)','EAST GODAVARI','ANDHRA PRADESH'),(533102,'Korukonda','EAST GODAVARI','ANDHRA PRADESH'),(533103,'Rajahmundry (Urban)','EAST GODAVARI','ANDHRA PRADESH'),(533104,'Rajahmundry (Urban)','EAST GODAVARI','ANDHRA PRADESH'),(533105,'Rajahmundry Rural','EAST GODAVARI','ANDHRA PRADESH'),(533106,'Rajahmundry (Urban)','EAST GODAVARI','ANDHRA PRADESH'),(533107,'Rajahmundry Rural','EAST GODAVARI','ANDHRA PRADESH'),(533124,'Rajahmundry Rural','EAST GODAVARI','ANDHRA PRADESH'),(533125,'Kadiam','EAST GODAVARI','ANDHRA PRADESH'),(533126,'Kadiam','EAST GODAVARI','ANDHRA PRADESH'),(533201,'Amalapuram','EAST GODAVARI','ANDHRA PRADESH'),(533210,'Allavaram','EAST GODAVARI','ANDHRA PRADESH'),(533211,'Ainavilli','EAST GODAVARI','ANDHRA PRADESH'),(533212,'Katrenikona','EAST GODAVARI','ANDHRA PRADESH'),(533213,'Uppalaguptam','EAST GODAVARI','ANDHRA PRADESH'),(533214,'P.Gannavaram','EAST GODAVARI','ANDHRA PRADESH'),(533215,'Allavaram','EAST GODAVARI','ANDHRA PRADESH'),(533216,'Mummidivaram','EAST GODAVARI','ANDHRA PRADESH'),(533217,'Allavaram','EAST GODAVARI','ANDHRA PRADESH'),(533218,'Allavaram','EAST GODAVARI','ANDHRA PRADESH'),(533220,'I. Polavaram','EAST GODAVARI','ANDHRA PRADESH'),(533221,'Ambajipeta','EAST GODAVARI','ANDHRA PRADESH'),(533222,'Katrenikona','EAST GODAVARI','ANDHRA PRADESH'),(533223,'Kapileswarapuram','EAST GODAVARI','ANDHRA PRADESH'),(533228,'Ainavilli','EAST GODAVARI','ANDHRA PRADESH'),(533229,'P.Gannavaram','EAST GODAVARI','ANDHRA PRADESH'),(533232,'Alamuru','EAST GODAVARI','ANDHRA PRADESH'),(533233,'Alamuru','EAST GODAVARI','ANDHRA PRADESH'),(533234,'Mandapeta','EAST GODAVARI','ANDHRA PRADESH'),(533235,'Atreyapuram','EAST GODAVARI','ANDHRA PRADESH'),(533236,'Ravulapalem','EAST GODAVARI','ANDHRA PRADESH'),(533237,'Atreyapuram','EAST GODAVARI','ANDHRA PRADESH'),(533238,'Ravulapalem','EAST GODAVARI','ANDHRA PRADESH'),(533239,'Ambajipeta','EAST GODAVARI','ANDHRA PRADESH'),(533240,'P.Gannavaram','EAST GODAVARI','ANDHRA PRADESH'),(533241,'Ambajipeta','EAST GODAVARI','ANDHRA PRADESH'),(533242,'Razole','EAST GODAVARI','ANDHRA PRADESH'),(533244,'Razole','EAST GODAVARI','ANDHRA PRADESH'),(533247,'Mamidikuduru','EAST GODAVARI','ANDHRA PRADESH'),(533248,'Razole','EAST GODAVARI','ANDHRA PRADESH'),(533249,'Razole','EAST GODAVARI','ANDHRA PRADESH'),(533250,'Sakhinetipalle','EAST GODAVARI','ANDHRA PRADESH'),(533251,'Sakhinetipalle','EAST GODAVARI','ANDHRA PRADESH'),(533252,'Sakhinetipalle','EAST GODAVARI','ANDHRA PRADESH'),(533253,'Malikipuram','EAST GODAVARI','ANDHRA PRADESH'),(533254,'Malikipuram','EAST GODAVARI','ANDHRA PRADESH'),(533255,'Ramachandrapuram','EAST GODAVARI','ANDHRA PRADESH'),(533256,'Ramachandrapuram','EAST GODAVARI','ANDHRA PRADESH'),(533260,'Karapa','EAST GODAVARI','ANDHRA PRADESH'),(533261,'Rayavaram','EAST GODAVARI','ANDHRA PRADESH'),(533262,'Kajuluru','EAST GODAVARI','ANDHRA PRADESH'),(533263,'Pamarru','EAST GODAVARI','ANDHRA PRADESH'),(533264,'Anaparthy','EAST GODAVARI','ANDHRA PRADESH'),(533274,'Kothapeta','EAST GODAVARI','ANDHRA PRADESH'),(533284,'Rampachodavaram','EAST GODAVARI','ANDHRA PRADESH'),(533285,'Gokavaram','EAST GODAVARI','ANDHRA PRADESH'),(533286,'Devipatnam','EAST GODAVARI','ANDHRA PRADESH'),(533287,'Devipatnam','EAST GODAVARI','ANDHRA PRADESH'),(533288,'Rampachodavaram','EAST GODAVARI','ANDHRA PRADESH'),(533289,'Korukonda','EAST GODAVARI','ANDHRA PRADESH'),(533290,'Seethanagaram','EAST GODAVARI','ANDHRA PRADESH'),(533291,'Rangampeta','EAST GODAVARI','ANDHRA PRADESH'),(533292,'Korukonda','EAST GODAVARI','ANDHRA PRADESH'),(533293,'Seethanagaram','EAST GODAVARI','ANDHRA PRADESH'),(533294,'Rajanagaram','EAST GODAVARI','ANDHRA PRADESH'),(533295,'Maredumilli','EAST GODAVARI','ANDHRA PRADESH'),(533296,'Rajanagaram','EAST GODAVARI','ANDHRA PRADESH'),(533297,'Gandepalle','EAST GODAVARI','ANDHRA PRADESH'),(533305,'Pamarru','EAST GODAVARI','ANDHRA PRADESH'),(533306,'Pamarru','EAST GODAVARI','ANDHRA PRADESH'),(533307,'Kapileswarapuram','EAST GODAVARI','ANDHRA PRADESH'),(533308,'Kapileswarapuram','EAST GODAVARI','ANDHRA PRADESH'),(533309,'Kapileswarapuram','EAST GODAVARI','ANDHRA PRADESH'),(533339,'Devipatnam','EAST GODAVARI','ANDHRA PRADESH'),(533340,'Mandapeta','EAST GODAVARI','ANDHRA PRADESH'),(533341,'Mandapeta','EAST GODAVARI','ANDHRA PRADESH'),(533342,'Rajanagaram','EAST GODAVARI','ANDHRA PRADESH'),(533343,'Biccavolu','EAST GODAVARI','ANDHRA PRADESH'),(533344,'Pedapudi','EAST GODAVARI','ANDHRA PRADESH'),(533345,'Biccavolu','EAST GODAVARI','ANDHRA PRADESH'),(533346,'Rayavaram','EAST GODAVARI','ANDHRA PRADESH'),(533347,'Chintur','KHAMMAM','TELANGANA'),(533348,'Y. Ramavaram','EAST GODAVARI','ANDHRA PRADESH'),(533351,'Bhadrachalam','KHAMMAM','TELANGANA'),(533352,'Chintur','KHAMMAM','TELANGANA'),(533401,'Tuni','EAST GODAVARI','ANDHRA PRADESH'),(533406,'Tuni','EAST GODAVARI','ANDHRA PRADESH'),(533407,'Kotananduru','EAST GODAVARI','ANDHRA PRADESH'),(533408,'Thondangi','EAST GODAVARI','ANDHRA PRADESH'),(533428,'Addateegala','EAST GODAVARI','ANDHRA PRADESH'),(533429,'Addateegala','EAST GODAVARI','ANDHRA PRADESH'),(533430,'Prathipadu','EAST GODAVARI','ANDHRA PRADESH'),(533431,'Kirlampudi','EAST GODAVARI','ANDHRA PRADESH'),(533432,'Prathipadu','EAST GODAVARI','ANDHRA PRADESH'),(533433,'Pithapuram','EAST GODAVARI','ANDHRA PRADESH'),(533434,'Samalkota','EAST GODAVARI','ANDHRA PRADESH'),(533435,'Jaggampeta','EAST GODAVARI','ANDHRA PRADESH'),(533436,'Rajavommangi','EAST GODAVARI','ANDHRA PRADESH'),(533437,'Peddapuram','EAST GODAVARI','ANDHRA PRADESH'),(533440,'Samalkota','EAST GODAVARI','ANDHRA PRADESH'),(533444,'Gollaprolu','EAST GODAVARI','ANDHRA PRADESH'),(533445,'Pithapuram','EAST GODAVARI','ANDHRA PRADESH'),(533446,'Prathipadu','EAST GODAVARI','ANDHRA PRADESH'),(533447,'Kothapalle','EAST GODAVARI','ANDHRA PRADESH'),(533448,'Kothapalle','EAST GODAVARI','ANDHRA PRADESH'),(533449,'Kotananduru','EAST GODAVARI','ANDHRA PRADESH'),(533450,'Peddapuram','EAST GODAVARI','ANDHRA PRADESH'),(533461,'Thallarevu','EAST GODAVARI','ANDHRA PRADESH'),(533462,'Pedapudi','EAST GODAVARI','ANDHRA PRADESH'),(533463,'Thallarevu','EAST GODAVARI','ANDHRA PRADESH'),(533464,'Thallarevu','EAST GODAVARI','ANDHRA PRADESH'),(533468,'Kajuluru','EAST GODAVARI','ANDHRA PRADESH'),(533483,'Y. Ramavaram','EAST GODAVARI','ANDHRA PRADESH'),(533577,'Amalapuram','EAST GODAVARI','ANDHRA PRADESH'),(534001,'Eluru','WEST GODAVARI','ANDHRA PRADESH'),(534002,'Pedapadu','WEST GODAVARI','ANDHRA PRADESH'),(534003,'Pedavegi','WEST GODAVARI','ANDHRA PRADESH'),(534004,'Eluru','WEST GODAVARI','ANDHRA PRADESH'),(534005,'Eluru','WEST GODAVARI','ANDHRA PRADESH'),(534006,'Eluru','WEST GODAVARI','ANDHRA PRADESH'),(534007,'Eluru','WEST GODAVARI','ANDHRA PRADESH'),(534101,'Tadepalligudem','WEST GODAVARI','ANDHRA PRADESH'),(534102,'Tadepalligudem','WEST GODAVARI','ANDHRA PRADESH'),(534111,'Tadepalligudem','WEST GODAVARI','ANDHRA PRADESH'),(534112,'Nallajerla','WEST GODAVARI','ANDHRA PRADESH'),(534122,'Penumantra','WEST GODAVARI','ANDHRA PRADESH'),(534123,'Penugonda','WEST GODAVARI','ANDHRA PRADESH'),(534124,'Penumantra','WEST GODAVARI','ANDHRA PRADESH'),(534126,'Penumantra','WEST GODAVARI','ANDHRA PRADESH'),(534134,'Ganapavaram','WEST GODAVARI','ANDHRA PRADESH'),(534145,'Tadepalligudem','WEST GODAVARI','ANDHRA PRADESH'),(534146,'Tadepalligudem','WEST GODAVARI','ANDHRA PRADESH'),(534156,'Pentapadu','WEST GODAVARI','ANDHRA PRADESH'),(534165,'Pentapadu','WEST GODAVARI','ANDHRA PRADESH'),(534166,'Pentapadu','WEST GODAVARI','ANDHRA PRADESH'),(534176,'Nallajerla','WEST GODAVARI','ANDHRA PRADESH'),(534186,'Ganapavaram','WEST GODAVARI','ANDHRA PRADESH'),(534195,'Nidamarru','WEST GODAVARI','ANDHRA PRADESH'),(534196,'Ganapavaram','WEST GODAVARI','ANDHRA PRADESH'),(534197,'Ganapavaram','WEST GODAVARI','ANDHRA PRADESH'),(534198,'Undi','WEST GODAVARI','ANDHRA PRADESH'),(534199,'Undi','WEST GODAVARI','ANDHRA PRADESH'),(534201,'Bhimavaram','WEST GODAVARI','ANDHRA PRADESH'),(534202,'Bhimavaram','WEST GODAVARI','ANDHRA PRADESH'),(534204,'Kalla','WEST GODAVARI','ANDHRA PRADESH'),(534206,'Kalla','WEST GODAVARI','ANDHRA PRADESH'),(534207,'Veeravasaram','WEST GODAVARI','ANDHRA PRADESH'),(534208,'Bhimavaram','WEST GODAVARI','ANDHRA PRADESH'),(534209,'Palacoderu','WEST GODAVARI','ANDHRA PRADESH'),(534210,'Palacoderu','WEST GODAVARI','ANDHRA PRADESH'),(534211,'Tanuku','WEST GODAVARI','ANDHRA PRADESH'),(534215,'Tanuku','WEST GODAVARI','ANDHRA PRADESH'),(534216,'Undrajavaram','WEST GODAVARI','ANDHRA PRADESH'),(534217,'Iragavaram','WEST GODAVARI','ANDHRA PRADESH'),(534218,'Undrajavaram','WEST GODAVARI','ANDHRA PRADESH'),(534222,'Tanuku','WEST GODAVARI','ANDHRA PRADESH'),(534225,'Attili','WEST GODAVARI','ANDHRA PRADESH'),(534227,'Undrajavaram','WEST GODAVARI','ANDHRA PRADESH'),(534230,'Attili','WEST GODAVARI','ANDHRA PRADESH'),(534235,'Akividu','WEST GODAVARI','ANDHRA PRADESH'),(534236,'Kalla','WEST GODAVARI','ANDHRA PRADESH'),(534237,'Kalla','WEST GODAVARI','ANDHRA PRADESH'),(534238,'Penumantra','WEST GODAVARI','ANDHRA PRADESH'),(534239,'Bhimavaram','WEST GODAVARI','ANDHRA PRADESH'),(534240,'Veeravasaram','WEST GODAVARI','ANDHRA PRADESH'),(534243,'Veeravasaram','WEST GODAVARI','ANDHRA PRADESH'),(534244,'Bhimavaram','WEST GODAVARI','ANDHRA PRADESH'),(534245,'Veeravasaram','WEST GODAVARI','ANDHRA PRADESH'),(534247,'Veeravasaram','WEST GODAVARI','ANDHRA PRADESH'),(534250,'Palacole','WEST GODAVARI','ANDHRA PRADESH'),(534260,'Palacole','WEST GODAVARI','ANDHRA PRADESH'),(534265,'Poduru','WEST GODAVARI','ANDHRA PRADESH'),(534266,'Yelamanchili','WEST GODAVARI','ANDHRA PRADESH'),(534267,'Poduru','WEST GODAVARI','ANDHRA PRADESH'),(534268,'Palacole','WEST GODAVARI','ANDHRA PRADESH'),(534269,'Achanta','WEST GODAVARI','ANDHRA PRADESH'),(534275,'Narasapuram','WEST GODAVARI','ANDHRA PRADESH'),(534280,'Narasapuram','WEST GODAVARI','ANDHRA PRADESH'),(534281,'Mogalthur','WEST GODAVARI','ANDHRA PRADESH'),(534301,'Chagallu','WEST GODAVARI','ANDHRA PRADESH'),(534302,'Kovvur','WEST GODAVARI','ANDHRA PRADESH'),(534305,'Nidadavole','WEST GODAVARI','ANDHRA PRADESH'),(534311,'Buttayagudem','WEST GODAVARI','ANDHRA PRADESH'),(534312,'Buttayagudem','WEST GODAVARI','ANDHRA PRADESH'),(534313,'Devarapalle','WEST GODAVARI','ANDHRA PRADESH'),(534315,'Polavaram','WEST GODAVARI','ANDHRA PRADESH'),(534316,'Devarapalle','WEST GODAVARI','ANDHRA PRADESH'),(534318,'Polavaram','WEST GODAVARI','ANDHRA PRADESH'),(534320,'Iragavaram','WEST GODAVARI','ANDHRA PRADESH'),(534324,'Penugonda','WEST GODAVARI','ANDHRA PRADESH'),(534326,'Penugonda','WEST GODAVARI','ANDHRA PRADESH'),(534327,'Poduru','WEST GODAVARI','ANDHRA PRADESH'),(534328,'Iragavaram','WEST GODAVARI','ANDHRA PRADESH'),(534329,'Nidadavole','WEST GODAVARI','ANDHRA PRADESH'),(534330,'Peravali','WEST GODAVARI','ANDHRA PRADESH'),(534331,'Peravali','WEST GODAVARI','ANDHRA PRADESH'),(534338,'Poduru','WEST GODAVARI','ANDHRA PRADESH'),(534340,'Kovvur','WEST GODAVARI','ANDHRA PRADESH'),(534341,'Gopalapuram','WEST GODAVARI','ANDHRA PRADESH'),(534342,'Kovvur','WEST GODAVARI','ANDHRA PRADESH'),(534350,'Kovvur','WEST GODAVARI','ANDHRA PRADESH'),(534401,'Bhimadole','WEST GODAVARI','ANDHRA PRADESH'),(534406,'Nidamarru','WEST GODAVARI','ANDHRA PRADESH'),(534411,'Unguturu','WEST GODAVARI','ANDHRA PRADESH'),(534416,'Unguturu','WEST GODAVARI','ANDHRA PRADESH'),(534425,'Bhimadole','WEST GODAVARI','ANDHRA PRADESH'),(534426,'Dwarakatirumala','WEST GODAVARI','ANDHRA PRADESH'),(534427,'Bhimadole','WEST GODAVARI','ANDHRA PRADESH'),(534432,'Denduluru','WEST GODAVARI','ANDHRA PRADESH'),(534435,'Denduluru','WEST GODAVARI','ANDHRA PRADESH'),(534437,'Eluru','WEST GODAVARI','ANDHRA PRADESH'),(534442,'Denduluru','WEST GODAVARI','ANDHRA PRADESH'),(534447,'Jangareddigudem','WEST GODAVARI','ANDHRA PRADESH'),(534448,'Buttayagudem','WEST GODAVARI','ANDHRA PRADESH'),(534449,'Kamavarapukota','WEST GODAVARI','ANDHRA PRADESH'),(534450,'Denduluru','WEST GODAVARI','ANDHRA PRADESH'),(534451,'Dwarakatirumala','WEST GODAVARI','ANDHRA PRADESH'),(534452,'Lingapalem','WEST GODAVARI','ANDHRA PRADESH'),(534455,'Jeelugu Milli','WEST GODAVARI','ANDHRA PRADESH'),(534456,'T.Narasapuram','WEST GODAVARI','ANDHRA PRADESH'),(534460,'Chintalapudi','WEST GODAVARI','ANDHRA PRADESH'),(534461,'T.Narasapuram','WEST GODAVARI','ANDHRA PRADESH'),(534462,'Lingapalem','WEST GODAVARI','ANDHRA PRADESH'),(534467,'T.Narasapuram','WEST GODAVARI','ANDHRA PRADESH'),(534475,'Pedavegi','WEST GODAVARI','ANDHRA PRADESH'),(535001,'Vizianagaram','VIZIANAGARAM','ANDHRA PRADESH'),(535002,'Vizianagaram','VIZIANAGARAM','ANDHRA PRADESH'),(535003,'Vizianagaram','VIZIANAGARAM','ANDHRA PRADESH'),(535004,'Vizianagaram','VIZIANAGARAM','ANDHRA PRADESH'),(535005,'Vizianagaram','VIZIANAGARAM','ANDHRA PRADESH'),(535006,'Denkada','VIZIANAGARAM','ANDHRA PRADESH'),(535101,'Garividi','VIZIANAGARAM','ANDHRA PRADESH'),(535102,'Dattirajeru','VIZIANAGARAM','ANDHRA PRADESH'),(535124,'Badangi','VIZIANAGARAM','ANDHRA PRADESH'),(535125,'Cheepurupalle','VIZIANAGARAM','ANDHRA PRADESH'),(535126,'Therlam','VIZIANAGARAM','ANDHRA PRADESH'),(535128,'Garividi','VIZIANAGARAM','ANDHRA PRADESH'),(535145,'Ananthagiri','VISAKHAPATNAM','ANDHRA PRADESH'),(535148,'Srungavarapukota','VIZIANAGARAM','ANDHRA PRADESH'),(535160,'Gantyada','VIZIANAGARAM','ANDHRA PRADESH'),(535161,'Lakkavarapukota','VIZIANAGARAM','ANDHRA PRADESH'),(535183,'Kothavalasa','VIZIANAGARAM','ANDHRA PRADESH'),(535204,'Pusapatirega','VIZIANAGARAM','ANDHRA PRADESH'),(535213,'Pusapatirega','VIZIANAGARAM','ANDHRA PRADESH'),(535214,'Vizianagaram','VIZIANAGARAM','ANDHRA PRADESH'),(535215,'Gantyada','VIZIANAGARAM','ANDHRA PRADESH'),(535216,'Bhogapuram','VIZIANAGARAM','ANDHRA PRADESH'),(535217,'Gurla','VIZIANAGARAM','ANDHRA PRADESH'),(535218,'Pusapatirega','VIZIANAGARAM','ANDHRA PRADESH'),(535220,'Gurla','VIZIANAGARAM','ANDHRA PRADESH'),(535221,'Gantyada','VIZIANAGARAM','ANDHRA PRADESH'),(535240,'Lakkavarapukota','VIZIANAGARAM','ANDHRA PRADESH'),(535250,'Srungavarapukota','VIZIANAGARAM','ANDHRA PRADESH'),(535260,'Bondapalle','VIZIANAGARAM','ANDHRA PRADESH'),(535270,'Gajapathinagaram','VIZIANAGARAM','ANDHRA PRADESH'),(535273,'Mentada','VIZIANAGARAM','ANDHRA PRADESH'),(535280,'Gurla','VIZIANAGARAM','ANDHRA PRADESH'),(535281,'Vepada','VIZIANAGARAM','ANDHRA PRADESH'),(535463,'Garugubilli','VIZIANAGARAM','ANDHRA PRADESH'),(535501,'Parvathipuram','VIZIANAGARAM','ANDHRA PRADESH'),(535502,'Garugubilli','VIZIANAGARAM','ANDHRA PRADESH'),(535521,'Komarada','VIZIANAGARAM','ANDHRA PRADESH'),(535522,'Parvathipuram','VIZIANAGARAM','ANDHRA PRADESH'),(535523,'Gummalakshmipuram','VIZIANAGARAM','ANDHRA PRADESH'),(535524,'Jiyyammavalasa','VIZIANAGARAM','ANDHRA PRADESH'),(535525,'Garugubilli','VIZIANAGARAM','ANDHRA PRADESH'),(535526,'Jiyyammavalasa','VIZIANAGARAM','ANDHRA PRADESH'),(535527,'Parvathipuram','VIZIANAGARAM','ANDHRA PRADESH'),(535534,'Kurupam','VIZIANAGARAM','ANDHRA PRADESH'),(535546,'Seethanagaram','VIZIANAGARAM','ANDHRA PRADESH'),(535547,'Makkuva','VIZIANAGARAM','ANDHRA PRADESH'),(535557,'Balijipeta','VIZIANAGARAM','ANDHRA PRADESH'),(535558,'Bobbili','VIZIANAGARAM','ANDHRA PRADESH'),(535559,'Balijipeta','VIZIANAGARAM','ANDHRA PRADESH'),(535568,'Therlam','VIZIANAGARAM','ANDHRA PRADESH'),(535573,'Bobbili','VIZIANAGARAM','ANDHRA PRADESH'),(535578,'Badangi','VIZIANAGARAM','ANDHRA PRADESH'),(535579,'Salur','VIZIANAGARAM','ANDHRA PRADESH'),(535580,'Dattirajeru','VIZIANAGARAM','ANDHRA PRADESH'),(535581,'Mentada','VIZIANAGARAM','ANDHRA PRADESH'),(535591,'Salur','VIZIANAGARAM','ANDHRA PRADESH'),(535592,'Pachipenta','VIZIANAGARAM','ANDHRA PRADESH'),(535593,'Salur','VIZIANAGARAM','ANDHRA PRADESH'),(535594,'Jiyyammavalasa','VIZIANAGARAM','ANDHRA PRADESH'),(560001,'Bangalore North','BANGALORE','KARNATAKA'),(560002,'Bangalore North','BANGALORE','KARNATAKA'),(560003,'Bangalore North','BANGALORE','KARNATAKA'),(560004,'Bangalore South','BANGALORE','KARNATAKA'),(560005,'Bangalore North','BANGALORE','KARNATAKA'),(560006,'Bangalore North','BANGALORE','KARNATAKA'),(560007,'Bangalore North','BANGALORE','KARNATAKA'),(560008,'Bangalore North','BANGALORE','KARNATAKA'),(560009,'Bangalore North','BANGALORE','KARNATAKA'),(560010,'Bangalore North','BANGALORE','KARNATAKA'),(560011,'Bangalore South','BANGALORE','KARNATAKA'),(560012,'Bangalore North','BANGALORE','KARNATAKA'),(560013,'Bangalore North','BANGALORE','KARNATAKA'),(560015,'Bangalore North','BANGALORE','KARNATAKA'),(560016,'Bangalore North','BANGALORE','KARNATAKA'),(560017,'Bangalore North','BANGALORE','KARNATAKA'),(560018,'Bangalore South','BANGALORE','KARNATAKA'),(560020,'Bangalore North','BANGALORE','KARNATAKA'),(560021,'Bangalore North','BANGALORE','KARNATAKA'),(560022,'Bangalore North','BANGALORE','KARNATAKA'),(560023,'Bangalore North','BANGALORE','KARNATAKA'),(560024,'Bangalore North','BANGALORE','KARNATAKA'),(560025,'Bangalore North','BANGALORE','KARNATAKA'),(560026,'Bangalore South','BANGALORE','KARNATAKA'),(560027,'Bangalore South','BANGALORE','KARNATAKA'),(560029,'Bangalore South','BANGALORE','KARNATAKA'),(560030,'Bangalore South','BANGALORE','KARNATAKA'),(560032,'Bangalore North','BANGALORE','KARNATAKA'),(560033,'Bangalore North','BANGALORE','KARNATAKA'),(560034,'Bangalore North','BANGALORE','KARNATAKA'),(560035,'Bangalore South','BANGALORE','KARNATAKA'),(560036,'Bangalore North','BANGALORE','KARNATAKA'),(560037,'Bangalore North','BANGALORE','KARNATAKA'),(560038,'Bangalore North','BANGALORE','KARNATAKA'),(560040,'Bangalore North','BANGALORE','KARNATAKA'),(560041,'Bangalore South','BANGALORE','KARNATAKA'),(560042,'Bangalore North','BANGALORE','KARNATAKA'),(560043,'Bangalore North','BANGALORE','KARNATAKA'),(560045,'Bangalore North','BANGALORE','KARNATAKA'),(560046,'Bangalore North','BANGALORE','KARNATAKA'),(560047,'Bangalore South','BANGALORE','KARNATAKA'),(560048,'Bangalore North','BANGALORE','KARNATAKA'),(560049,'Bangalore South','BANGALORE','KARNATAKA'),(560050,'Bangalore South','BANGALORE','KARNATAKA'),(560051,'Bangalore North','BANGALORE','KARNATAKA'),(560053,'Bangalore South','BANGALORE','KARNATAKA'),(560054,'Bangalore North','BANGALORE','KARNATAKA'),(560055,'Bangalore North','BANGALORE','KARNATAKA'),(560056,'Bangalore South','BANGALORE','KARNATAKA'),(560057,'Bangalore North','BANGALORE','KARNATAKA'),(560058,'Bangalore North','BANGALORE','KARNATAKA'),(560059,'Bangalore South','BANGALORE','KARNATAKA'),(560060,'Bangalore South','BANGALORE','KARNATAKA'),(560061,'Bangalore South','BANGALORE','KARNATAKA'),(560062,'Bangalore South','BANGALORE','KARNATAKA'),(560063,'Bangalore North','BANGALORE','KARNATAKA'),(560064,'Bangalore North','BANGALORE','KARNATAKA'),(560065,'Bangalore North','BANGALORE','KARNATAKA'),(560066,'Bangalore South','BANGALORE','KARNATAKA'),(560067,'Hosakote','BANGALORE RURAL','KARNATAKA'),(560068,'Bangalore South','BANGALORE','KARNATAKA'),(560070,'Bangalore South','BANGALORE','KARNATAKA'),(560071,'Bangalore North','BANGALORE','KARNATAKA'),(560072,'Bangalore North','BANGALORE','KARNATAKA'),(560073,'Bangalore North','BANGALORE','KARNATAKA'),(560074,'Bangalore South','BANGALORE','KARNATAKA'),(560075,'Bangalore North','BANGALORE','KARNATAKA'),(560076,'Bangalore South','BANGALORE','KARNATAKA'),(560077,'Bangalore North','BANGALORE','KARNATAKA'),(560078,'Bangalore South','BANGALORE','KARNATAKA'),(560079,'Bangalore North','BANGALORE','KARNATAKA'),(560080,'Bangalore North','BANGALORE','KARNATAKA'),(560081,'Bangalore South','BANGALORE','KARNATAKA'),(560082,'Bangalore South','BANGALORE','KARNATAKA'),(560083,'Anekal','BANGALORE','KARNATAKA'),(560084,'Bangalore North','BANGALORE','KARNATAKA'),(560085,'Bangalore South','BANGALORE','KARNATAKA'),(560086,'Bangalore North','BANGALORE','KARNATAKA'),(560087,'Hosakote','BANGALORE RURAL','KARNATAKA'),(560088,'Bangalore North','BANGALORE','KARNATAKA'),(560089,'Bangalore North','BANGALORE','KARNATAKA'),(560090,'Bangalore North','BANGALORE','KARNATAKA'),(560091,'Bangalore North','BANGALORE','KARNATAKA'),(560092,'Bangalore North','BANGALORE','KARNATAKA'),(560093,'Bangalore North','BANGALORE','KARNATAKA'),(560094,'Bangalore North','BANGALORE','KARNATAKA'),(560095,'Bangalore South','BANGALORE','KARNATAKA'),(560096,'Bangalore North','BANGALORE','KARNATAKA'),(560097,'Bangalore North','BANGALORE','KARNATAKA'),(560098,'Bangalore South','BANGALORE','KARNATAKA'),(560099,'Anekal','BANGALORE','KARNATAKA'),(560100,'Bangalore South','BANGALORE','KARNATAKA'),(560102,'Bangalore South','BANGALORE','KARNATAKA'),(560103,'Bangalore South','BANGALORE','KARNATAKA'),(560104,'Bangalore North','BANGALORE','KARNATAKA'),(560105,'Anekal','BANGALORE','KARNATAKA'),(560107,'Bangalore North','BANGALORE','KARNATAKA'),(560108,'Bangalore South','BANGALORE','KARNATAKA'),(560109,'Bangalore South','BANGALORE','KARNATAKA'),(560110,'Bangalore South','BANGALORE','KARNATAKA'),(560111,'Bangalore South','BANGALORE','KARNATAKA'),(560300,'Bangalore North','BANGALORE','KARNATAKA'),(561101,'Magadi','RAMANAGAR','KARNATAKA'),(561201,'Magadi','RAMANAGAR','KARNATAKA'),(561202,'Pavagada','TUMKUR','KARNATAKA'),(561203,'Dod Ballapur','BANGALORE RURAL','KARNATAKA'),(561204,'Dod Ballapur','BANGALORE RURAL','KARNATAKA'),(561205,'Dod Ballapur','BANGALORE RURAL','KARNATAKA'),(561206,'Gauribidanur','CHIKKABALLAPUR','KARNATAKA'),(561207,'Bagepalli','CHIKKABALLAPUR','KARNATAKA'),(561208,'Gauribidanur','CHIKKABALLAPUR','KARNATAKA'),(561209,'Gudibanda','CHIKKABALLAPUR','KARNATAKA'),(561210,'Gauribidanur','CHIKKABALLAPUR','KARNATAKA'),(561211,'Chik Ballapur','CHIKKABALLAPUR','KARNATAKA'),(561212,'Bagepalli','CHIKKABALLAPUR','KARNATAKA'),(561213,'Gauribidanur','CHIKKABALLAPUR','KARNATAKA'),(561228,'Gauribidanur','CHIKKABALLAPUR','KARNATAKA'),(562101,'Chik Ballapur','CHIKKABALLAPUR','KARNATAKA'),(562102,'Sidlaghatta','CHIKKABALLAPUR','KARNATAKA'),(562103,'Chik Ballapur','CHIKKABALLAPUR','KARNATAKA'),(562104,'Chik Ballapur','CHIKKABALLAPUR','KARNATAKA'),(562105,'Sidlaghatta','CHIKKABALLAPUR','KARNATAKA'),(562106,'Anekal','BANGALORE','KARNATAKA'),(562107,'Anekal','BANGALORE','KARNATAKA'),(562108,'Channapatna','RAMANAGAR','KARNATAKA'),(562109,'Ramanagaram','RAMANAGAR','KARNATAKA'),(562110,'Devanahalli','BANGALORE RURAL','KARNATAKA'),(562111,'Nelamangala','BANGALORE RURAL','KARNATAKA'),(562112,'Kanakapura','RAMANAGAR','KARNATAKA'),(562114,'Hosakote','BANGALORE RURAL','KARNATAKA'),(562117,'Kanakapura','RAMANAGAR','KARNATAKA'),(562119,'Kanakapura','RAMANAGAR','KARNATAKA'),(562120,'Magadi','RAMANAGAR','KARNATAKA'),(562121,'Kanakapura','RAMANAGAR','KARNATAKA'),(562122,'Hosakote','BANGALORE RURAL','KARNATAKA'),(562123,'Nelamangala','BANGALORE RURAL','KARNATAKA'),(562125,'Anekal','BANGALORE','KARNATAKA'),(562126,'Kanakapura','RAMANAGAR','KARNATAKA'),(562127,'Magadi','RAMANAGAR','KARNATAKA'),(562128,'Ramanagaram','RAMANAGAR','KARNATAKA'),(562129,'Hosakote','BANGALORE RURAL','KARNATAKA'),(562130,'Bangalore North','BANGALORE','KARNATAKA'),(562131,'Magadi','RAMANAGAR','KARNATAKA'),(562132,'Nelamangala','BANGALORE RURAL','KARNATAKA'),(562135,'Devanahalli','BANGALORE RURAL','KARNATAKA'),(562138,'Channapatna','RAMANAGAR','KARNATAKA'),(562149,'Bangalore South','BANGALORE','KARNATAKA'),(562157,'Bangalore North','BANGALORE','KARNATAKA'),(562159,'Ramanagaram','RAMANAGAR','KARNATAKA'),(562160,'Channapatna','RAMANAGAR','KARNATAKA'),(562161,'Channapatna','RAMANAGAR','KARNATAKA'),(562162,'Bangalore North','BANGALORE','KARNATAKA'),(562163,'Bangalore North','BANGALORE','KARNATAKA'),(562164,'Devanahalli','BANGALORE RURAL','KARNATAKA'),(563101,'Kolar','KOLAR','KARNATAKA'),(563102,'Kolar','KOLAR','KARNATAKA'),(563103,'Kolar','KOLAR','KARNATAKA'),(563113,'Bangarapet','KOLAR','KARNATAKA'),(563114,'Bangarapet','KOLAR','KARNATAKA'),(563115,'Bangarapet','KOLAR','KARNATAKA'),(563116,'Bangarapet','KOLAR','KARNATAKA'),(563117,'Bangarapet','KOLAR','KARNATAKA'),(563118,'Bangarapet','KOLAR','KARNATAKA'),(563119,'Bangarapet','KOLAR','KARNATAKA'),(563120,'Bangarapet','KOLAR','KARNATAKA'),(563121,'Bangarapet','KOLAR','KARNATAKA'),(563122,'Srinivaspur','KOLAR','KARNATAKA'),(563123,'Chintamani','CHIKKABALLAPUR','KARNATAKA'),(563124,'Bagepalli','CHIKKABALLAPUR','KARNATAKA'),(563125,'Chintamani','CHIKKABALLAPUR','KARNATAKA'),(563126,'Srinivaspur','KOLAR','KARNATAKA'),(563127,'Mulbagal','KOLAR','KARNATAKA'),(563128,'Chintamani','CHIKKABALLAPUR','KARNATAKA'),(563129,'Bangarapet','KOLAR','KARNATAKA'),(563130,'Malur','KOLAR','KARNATAKA'),(563131,'Mulbagal','KOLAR','KARNATAKA'),(563132,'Mulbagal','KOLAR','KARNATAKA'),(563133,'Kolar','KOLAR','KARNATAKA'),(563134,'Srinivaspur','KOLAR','KARNATAKA'),(563135,'Srinivaspur','KOLAR','KARNATAKA'),(563136,'Mulbagal','KOLAR','KARNATAKA'),(563137,'Malur','KOLAR','KARNATAKA'),(563138,'Srinivaspur','KOLAR','KARNATAKA'),(563139,'Malur','KOLAR','KARNATAKA'),(563146,'Chintamani','CHIKKABALLAPUR','KARNATAKA'),(563157,'Kolar','KOLAR','KARNATAKA'),(563159,'Chintamani','CHIKKABALLAPUR','KARNATAKA'),(563161,'Srinivaspur','KOLAR','KARNATAKA'),(563162,'Bangarapet','KOLAR','KARNATAKA'),(570001,'Mysuru','Mysuru','KARNATAKA'),(570002,'Mysuru','Mysuru','KARNATAKA'),(570003,'Mysuru','Mysuru','KARNATAKA'),(570004,'Mysuru','Mysuru','KARNATAKA'),(570005,'Mysuru','Mysuru','KARNATAKA'),(570006,'Mysuru','Mysuru','KARNATAKA'),(570007,'Mysuru','Mysuru','KARNATAKA'),(570008,'Mysuru','Mysuru','KARNATAKA'),(570009,'Mysuru','Mysuru','KARNATAKA'),(570010,'Mysuru','Mysuru','KARNATAKA'),(570011,'Mysuru','Mysuru','KARNATAKA'),(570012,'Mysuru','Mysuru','KARNATAKA'),(570014,'Mysuru','Mysuru','KARNATAKA'),(570015,'Mysuru','Mysuru','KARNATAKA'),(570016,'Mysuru','Mysuru','KARNATAKA'),(570017,'Mysuru','Mysuru','KARNATAKA'),(570018,'Mysuru','Mysuru','KARNATAKA'),(570019,'Mysuru','Mysuru','KARNATAKA'),(570020,'Mysuru','Mysuru','KARNATAKA'),(570022,'Mysuru','Mysuru','KARNATAKA'),(570023,'Mysuru','Mysuru','KARNATAKA'),(570025,'Mysuru','Mysuru','KARNATAKA'),(570026,'Mysuru','Mysuru','KARNATAKA'),(570027,'Mysuru','Mysuru','KARNATAKA'),(570028,'Mysuru','Mysuru','KARNATAKA'),(570029,'Mysuru','Mysuru','KARNATAKA'),(571101,'Tirumakudal Narsipur','Mysuru','KARNATAKA'),(571102,'Piriyapatna','Mysuru','KARNATAKA'),(571103,'Hunsur','Mysuru','KARNATAKA'),(571104,'Piriyapatna','Mysuru','KARNATAKA'),(571105,'Hunsur','Mysuru','KARNATAKA'),(571106,'Hunsur','Mysuru','KARNATAKA'),(571107,'Piriyapatna','Mysuru','KARNATAKA'),(571108,'Piriyapatna','Mysuru','KARNATAKA'),(571109,'Nanjangud','Mysuru','KARNATAKA'),(571110,'Tirumakudal Narsipur','Mysuru','KARNATAKA'),(571111,'Gundlupet','CHAMRAJNAGAR','KARNATAKA'),(571114,'Heggadadevankote','Mysuru','KARNATAKA'),(571115,'Chamarajanagar','CHAMRAJNAGAR','KARNATAKA'),(571116,'Heggadadevankote','Mysuru','KARNATAKA'),(571117,'Chamarajanagar','CHAMRAJNAGAR','KARNATAKA'),(571118,'Nanjangud','Mysuru','KARNATAKA'),(571119,'Nanjangud','Mysuru','KARNATAKA'),(571120,'Tirumakudal Narsipur','Mysuru','KARNATAKA'),(571121,'Heggadadevankote','Mysuru','KARNATAKA'),(571122,'Tirumakudal Narsipur','Mysuru','KARNATAKA'),(571123,'Gundlupet','CHAMRAJNAGAR','KARNATAKA'),(571124,'Tirumakudal Narsipur','Mysuru','KARNATAKA'),(571125,'Heggadadevankote','Mysuru','KARNATAKA'),(571126,'Yelandur','CHAMRAJNAGAR','KARNATAKA'),(571127,'Chamarajanagar','CHAMRAJNAGAR','KARNATAKA'),(571128,'Tirumakudal Narsipur','Mysuru','KARNATAKA'),(571129,'Nanjangud','Mysuru','KARNATAKA'),(571130,'Mysuru','Mysuru','KARNATAKA'),(571134,'Hunsur','Mysuru','KARNATAKA'),(571187,'Piriyapatna','Mysuru','KARNATAKA'),(571189,'Hunsur','Mysuru','KARNATAKA'),(571201,'Madikeri','KODAGU','KARNATAKA'),(571211,'Virajpet','KODAGU','KARNATAKA'),(571212,'Madikeri','KODAGU','KARNATAKA'),(571213,'Virajpet','KODAGU','KARNATAKA'),(571214,'Madikeri','KODAGU','KARNATAKA'),(571215,'Madikeri','KODAGU','KARNATAKA'),(571216,'Virajpet','KODAGU','KARNATAKA'),(571217,'Virajpet','KODAGU','KARNATAKA'),(571218,'Virajpet','KODAGU','KARNATAKA'),(571219,'Virajpet','KODAGU','KARNATAKA'),(571231,'Somvarpet','KODAGU','KARNATAKA'),(571232,'Somvarpet','KODAGU','KARNATAKA'),(571234,'Somvarpet','KODAGU','KARNATAKA'),(571235,'Somvarpet','KODAGU','KARNATAKA'),(571236,'Somvarpet','KODAGU','KARNATAKA'),(571237,'Somvarpet','KODAGU','KARNATAKA'),(571247,'Madikeri','KODAGU','KARNATAKA'),(571248,'Somvarpet','KODAGU','KARNATAKA'),(571249,'Virajpet','KODAGU','KARNATAKA'),(571250,'Virajpet','KODAGU','KARNATAKA'),(571251,'Somvarpet','KODAGU','KARNATAKA'),(571252,'Madikeri','KODAGU','KARNATAKA'),(571253,'Somvarpet','KODAGU','KARNATAKA'),(571254,'Virajpet','KODAGU','KARNATAKA'),(571301,'Nanjangud','Mysuru','KARNATAKA'),(571302,'Nanjangud','Mysuru','KARNATAKA'),(571311,'Mysuru','Mysuru','KARNATAKA'),(571312,'Nanjangud','Mysuru','KARNATAKA'),(571313,'Chamarajanagar','CHAMRAJNAGAR','KARNATAKA'),(571314,'Nanjangud','Mysuru','KARNATAKA'),(571315,'Nanjangud','Mysuru','KARNATAKA'),(571316,'Chamarajanagar','CHAMRAJNAGAR','KARNATAKA'),(571320,'Kollegal','CHAMRAJNAGAR','KARNATAKA'),(571342,'Chamarajanagar','CHAMRAJNAGAR','KARNATAKA'),(571401,'Mandya','MANDYA','KARNATAKA'),(571402,'Mandya','MANDYA','KARNATAKA'),(571403,'Mandya','MANDYA','KARNATAKA'),(571404,'Mandya','MANDYA','KARNATAKA'),(571405,'Mandya','MANDYA','KARNATAKA'),(571415,'Shrirangapattana','MANDYA','KARNATAKA'),(571416,'Mandya','MANDYA','KARNATAKA'),(571417,'Malavalli','MANDYA','KARNATAKA'),(571418,'Nagamangala','MANDYA','KARNATAKA'),(571419,'Maddur','MANDYA','KARNATAKA'),(571421,'Malavalli','MANDYA','KARNATAKA'),(571422,'Maddur','MANDYA','KARNATAKA'),(571423,'Krishnarajpet','MANDYA','KARNATAKA'),(571424,'Malavalli','MANDYA','KARNATAKA'),(571425,'Maddur','MANDYA','KARNATAKA'),(571426,'Krishnarajpet','MANDYA','KARNATAKA'),(571427,'Shrirangapattana','MANDYA','KARNATAKA'),(571428,'Maddur','MANDYA','KARNATAKA'),(571429,'Maddur','MANDYA','KARNATAKA'),(571430,'Malavalli','MANDYA','KARNATAKA'),(571431,'Pandavapura','MANDYA','KARNATAKA'),(571432,'Nagamangala','MANDYA','KARNATAKA'),(571433,'Maddur','MANDYA','KARNATAKA'),(571434,'Pandavapura','MANDYA','KARNATAKA'),(571435,'Pandavapura','MANDYA','KARNATAKA'),(571436,'Krishnarajpet','MANDYA','KARNATAKA'),(571438,'Shrirangapattana','MANDYA','KARNATAKA'),(571439,'Kollegal','CHAMRAJNAGAR','KARNATAKA'),(571440,'Kollegal','CHAMRAJNAGAR','KARNATAKA'),(571441,'Yelandur','CHAMRAJNAGAR','KARNATAKA'),(571442,'Tirumakudal Narsipur','Mysuru','KARNATAKA'),(571443,'Kollegal','CHAMRAJNAGAR','KARNATAKA'),(571444,'Kollegal','CHAMRAJNAGAR','KARNATAKA'),(571445,'Nagamangala','MANDYA','KARNATAKA'),(571446,'Mandya','MANDYA','KARNATAKA'),(571448,'Nagamangala','MANDYA','KARNATAKA'),(571450,'Mandya','MANDYA','KARNATAKA'),(571455,'Pandavapura','MANDYA','KARNATAKA'),(571457,'Kollegal','CHAMRAJNAGAR','KARNATAKA'),(571463,'Malavalli','MANDYA','KARNATAKA'),(571475,'Malavalli','MANDYA','KARNATAKA'),(571476,'Maddur','MANDYA','KARNATAKA'),(571477,'Shrirangapattana','MANDYA','KARNATAKA'),(571478,'Mandya','MANDYA','KARNATAKA'),(571490,'Chamarajanagar','CHAMRAJNAGAR','KARNATAKA'),(571601,'Krishnarajanagara','Mysuru','KARNATAKA'),(571602,'Krishnarajanagara','Mysuru','KARNATAKA'),(571603,'Krishnarajanagara','Mysuru','KARNATAKA'),(571604,'Krishnarajanagara','Mysuru','KARNATAKA'),(571605,'Krishnarajpet','MANDYA','KARNATAKA'),(571606,'Shrirangapattana','MANDYA','KARNATAKA'),(571607,'Shrirangapattana','MANDYA','KARNATAKA'),(571610,'Hunsur','Mysuru','KARNATAKA'),(571617,'Krishnarajanagara','Mysuru','KARNATAKA'),(571802,'Nagamangala','MANDYA','KARNATAKA'),(571807,'Shrirangapattana','MANDYA','KARNATAKA'),(571811,'Nagamangala','MANDYA','KARNATAKA'),(571812,'Krishnarajpet','MANDYA','KARNATAKA'),(572101,'Tumkur','TUMKUR','KARNATAKA'),(572102,'Tumkur','TUMKUR','KARNATAKA'),(572103,'Tumkur','TUMKUR','KARNATAKA'),(572104,'Tumkur','TUMKUR','KARNATAKA'),(572105,'Tumkur','TUMKUR','KARNATAKA'),(572106,'Tumkur','TUMKUR','KARNATAKA'),(572107,'Tumkur','TUMKUR','KARNATAKA'),(572111,'Kunigal','TUMKUR','KARNATAKA'),(572112,'Madhugiri','TUMKUR','KARNATAKA'),(572113,'Sira','TUMKUR','KARNATAKA'),(572114,'Tiptur','TUMKUR','KARNATAKA'),(572115,'Sira','TUMKUR','KARNATAKA'),(572116,'Pavagada','TUMKUR','KARNATAKA'),(572117,'Gubbi','TUMKUR','KARNATAKA'),(572118,'Tumkur','TUMKUR','KARNATAKA'),(572119,'Chiknayakanhalli','TUMKUR','KARNATAKA'),(572120,'Tumkur','TUMKUR','KARNATAKA'),(572121,'Koratagere','TUMKUR','KARNATAKA'),(572122,'Tumkur','TUMKUR','KARNATAKA'),(572123,'Kunigal','TUMKUR','KARNATAKA'),(572124,'Madhugiri','TUMKUR','KARNATAKA'),(572125,'Sira','TUMKUR','KARNATAKA'),(572126,'Kunigal','TUMKUR','KARNATAKA'),(572127,'Madhugiri','TUMKUR','KARNATAKA'),(572128,'Tumkur','TUMKUR','KARNATAKA'),(572129,'Koratagere','TUMKUR','KARNATAKA'),(572130,'Kunigal','TUMKUR','KARNATAKA'),(572132,'Madhugiri','TUMKUR','KARNATAKA'),(572133,'Madhugiri','TUMKUR','KARNATAKA'),(572134,'Kunigal','TUMKUR','KARNATAKA'),(572135,'Sira','TUMKUR','KARNATAKA'),(572136,'Pavagada','TUMKUR','KARNATAKA'),(572137,'Sira','TUMKUR','KARNATAKA'),(572138,'Koratagere','TUMKUR','KARNATAKA'),(572139,'Sira','TUMKUR','KARNATAKA'),(572140,'Tumkur','TUMKUR','KARNATAKA'),(572141,'Pavagada','TUMKUR','KARNATAKA'),(572142,'Kunigal','TUMKUR','KARNATAKA'),(572168,'Tumkur','TUMKUR','KARNATAKA'),(572175,'Madhugiri','TUMKUR','KARNATAKA'),(572201,'Tiptur','TUMKUR','KARNATAKA'),(572211,'Gubbi','TUMKUR','KARNATAKA'),(572212,'Turuvekere','TUMKUR','KARNATAKA'),(572213,'Gubbi','TUMKUR','KARNATAKA'),(572214,'Chiknayakanhalli','TUMKUR','KARNATAKA'),(572215,'Turuvekere','TUMKUR','KARNATAKA'),(572216,'Gubbi','TUMKUR','KARNATAKA'),(572217,'Tiptur','TUMKUR','KARNATAKA'),(572218,'Chiknayakanhalli','TUMKUR','KARNATAKA'),(572219,'Gubbi','TUMKUR','KARNATAKA'),(572220,'Turuvekere','TUMKUR','KARNATAKA'),(572221,'Turuvekere','TUMKUR','KARNATAKA'),(572222,'Gubbi','TUMKUR','KARNATAKA'),(572223,'Gubbi','TUMKUR','KARNATAKA'),(572224,'Turuvekere','TUMKUR','KARNATAKA'),(572225,'Turuvekere','TUMKUR','KARNATAKA'),(572226,'Chiknayakanhalli','TUMKUR','KARNATAKA'),(572227,'Turuvekere','TUMKUR','KARNATAKA'),(572228,'Chiknayakanhalli','TUMKUR','KARNATAKA'),(573101,'Belur','HASSAN','KARNATAKA'),(573102,'Arkalgud','HASSAN','KARNATAKA'),(573103,'Arsikere','HASSAN','KARNATAKA'),(573111,'Channarayapatna','HASSAN','KARNATAKA'),(573112,'Arsikere','HASSAN','KARNATAKA'),(573113,'Arkalgud','HASSAN','KARNATAKA'),(573115,'Belur','HASSAN','KARNATAKA'),(573116,'Channarayapatna','HASSAN','KARNATAKA'),(573117,'Arsikere','HASSAN','KARNATAKA'),(573118,'Hassan','HASSAN','KARNATAKA'),(573119,'Arsikere','HASSAN','KARNATAKA'),(573120,'Hassan','HASSAN','KARNATAKA'),(573121,'Belur','HASSAN','KARNATAKA'),(573122,'Arsikere','HASSAN','KARNATAKA'),(573123,'Sakleshpur','HASSAN','KARNATAKA'),(573124,'Channarayapatna','HASSAN','KARNATAKA'),(573125,'Arsikere','HASSAN','KARNATAKA'),(573126,'Arsikere','HASSAN','KARNATAKA'),(573127,'Sakleshpur','HASSAN','KARNATAKA'),(573128,'Alur','HASSAN','KARNATAKA'),(573129,'Alur','HASSAN','KARNATAKA'),(573130,'Arkalgud','HASSAN','KARNATAKA'),(573131,'Channarayapatna','HASSAN','KARNATAKA'),(573133,'Arkalgud','HASSAN','KARNATAKA'),(573134,'Sakleshpur','HASSAN','KARNATAKA'),(573135,'Channarayapatna','HASSAN','KARNATAKA'),(573136,'Arkalgud','HASSAN','KARNATAKA'),(573137,'Sakleshpur','HASSAN','KARNATAKA'),(573141,'Channarayapatna','HASSAN','KARNATAKA'),(573142,'Arkalgud','HASSAN','KARNATAKA'),(573144,'Arsikere','HASSAN','KARNATAKA'),(573162,'Arsikere','HASSAN','KARNATAKA'),(573164,'Arsikere','HASSAN','KARNATAKA'),(573165,'Sakleshpur','HASSAN','KARNATAKA'),(573201,'Hassan','HASSAN','KARNATAKA'),(573202,'Hassan','HASSAN','KARNATAKA'),(573210,'Hole Narsipur','HASSAN','KARNATAKA'),(573211,'Hole Narsipur','HASSAN','KARNATAKA'),(573212,'Hassan','HASSAN','KARNATAKA'),(573213,'Alur','HASSAN','KARNATAKA'),(573214,'Alur','HASSAN','KARNATAKA'),(573215,'Belur','HASSAN','KARNATAKA'),(573216,'Belur','HASSAN','KARNATAKA'),(573217,'Hassan','HASSAN','KARNATAKA'),(573218,'Alur','HASSAN','KARNATAKA'),(573219,'Hassan','HASSAN','KARNATAKA'),(573220,'Hassan','HASSAN','KARNATAKA'),(573225,'Channarayapatna','HASSAN','KARNATAKA'),(574101,'Karkal','UDUPI','KARNATAKA'),(574102,'Karkal','UDUPI','KARNATAKA'),(574103,'Udupi','UDUPI','KARNATAKA'),(574104,'Karkal','UDUPI','KARNATAKA'),(574105,'Udupi','UDUPI','KARNATAKA'),(574106,'Udupi','UDUPI','KARNATAKA'),(574107,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(574108,'Karkal','UDUPI','KARNATAKA'),(574109,'Karkal','UDUPI','KARNATAKA'),(574110,'Karkal','UDUPI','KARNATAKA'),(574111,'Udupi','UDUPI','KARNATAKA'),(574112,'Udupi','UDUPI','KARNATAKA'),(574113,'Udupi','UDUPI','KARNATAKA'),(574114,'Karkal','UDUPI','KARNATAKA'),(574115,'Udupi','UDUPI','KARNATAKA'),(574116,'Udupi','UDUPI','KARNATAKA'),(574117,'Udupi','UDUPI','KARNATAKA'),(574118,'Udupi','UDUPI','KARNATAKA'),(574119,'Udupi','UDUPI','KARNATAKA'),(574122,'Karkal','UDUPI','KARNATAKA'),(574129,'Karkal','UDUPI','KARNATAKA'),(574141,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(574142,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(574143,'Bantval','DAKSHINA KANNADA','KARNATAKA'),(574144,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(574145,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(574146,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(574148,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(574150,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(574151,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(574153,'Bantval','DAKSHINA KANNADA','KARNATAKA'),(574154,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(574197,'Beltangadi','DAKSHINA KANNADA','KARNATAKA'),(574198,'Beltangadi','DAKSHINA KANNADA','KARNATAKA'),(574199,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(574201,'Puttur','DAKSHINA KANNADA','KARNATAKA'),(574202,'Puttur','DAKSHINA KANNADA','KARNATAKA'),(574203,'Puttur','DAKSHINA KANNADA','KARNATAKA'),(574210,'Puttur','DAKSHINA KANNADA','KARNATAKA'),(574211,'Bantval','DAKSHINA KANNADA','KARNATAKA'),(574212,'Sulya','DAKSHINA KANNADA','KARNATAKA'),(574213,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(574214,'Beltangadi','DAKSHINA KANNADA','KARNATAKA'),(574216,'Beltangadi','DAKSHINA KANNADA','KARNATAKA'),(574217,'Beltangadi','DAKSHINA KANNADA','KARNATAKA'),(574218,'Sulya','DAKSHINA KANNADA','KARNATAKA'),(574219,'Bantval','DAKSHINA KANNADA','KARNATAKA'),(574220,'Bantval','DAKSHINA KANNADA','KARNATAKA'),(574221,'Sulya','DAKSHINA KANNADA','KARNATAKA'),(574222,'Bantval','DAKSHINA KANNADA','KARNATAKA'),(574223,'Puttur','DAKSHINA KANNADA','KARNATAKA'),(574224,'Beltangadi','DAKSHINA KANNADA','KARNATAKA'),(574225,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(574226,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(574227,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(574228,'Beltangadi','DAKSHINA KANNADA','KARNATAKA'),(574229,'Beltangadi','DAKSHINA KANNADA','KARNATAKA'),(574230,'Puttur','DAKSHINA KANNADA','KARNATAKA'),(574231,'Bantval','DAKSHINA KANNADA','KARNATAKA'),(574232,'Sulya','DAKSHINA KANNADA','KARNATAKA'),(574233,'Bantval','DAKSHINA KANNADA','KARNATAKA'),(574234,'Madikeri','KODAGU','KARNATAKA'),(574235,'Bantval','DAKSHINA KANNADA','KARNATAKA'),(574236,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(574237,'Bantval','DAKSHINA KANNADA','KARNATAKA'),(574238,'Puttur','DAKSHINA KANNADA','KARNATAKA'),(574239,'Sulya','DAKSHINA KANNADA','KARNATAKA'),(574240,'Beltangadi','DAKSHINA KANNADA','KARNATAKA'),(574241,'Puttur','DAKSHINA KANNADA','KARNATAKA'),(574242,'Beltangadi','DAKSHINA KANNADA','KARNATAKA'),(574243,'Bantval','DAKSHINA KANNADA','KARNATAKA'),(574244,'Karkal','UDUPI','KARNATAKA'),(574248,'Sulya','DAKSHINA KANNADA','KARNATAKA'),(574253,'Bantval','DAKSHINA KANNADA','KARNATAKA'),(574259,'Puttur','DAKSHINA KANNADA','KARNATAKA'),(574260,'Bantval','DAKSHINA KANNADA','KARNATAKA'),(574265,'Bantval','DAKSHINA KANNADA','KARNATAKA'),(574267,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(574274,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(574279,'Bantval','DAKSHINA KANNADA','KARNATAKA'),(574285,'Puttur','DAKSHINA KANNADA','KARNATAKA'),(574313,'Puttur','DAKSHINA KANNADA','KARNATAKA'),(574314,'Sulya','DAKSHINA KANNADA','KARNATAKA'),(574323,'Bantval','DAKSHINA KANNADA','KARNATAKA'),(574324,'Bantval','DAKSHINA KANNADA','KARNATAKA'),(574325,'Puttur','DAKSHINA KANNADA','KARNATAKA'),(574326,'Beltangadi','DAKSHINA KANNADA','KARNATAKA'),(574327,'Sulya','DAKSHINA KANNADA','KARNATAKA'),(574328,'Puttur','DAKSHINA KANNADA','KARNATAKA'),(574509,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575001,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575002,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575003,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575004,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575005,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575006,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575007,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575008,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575010,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575011,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575013,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575014,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575015,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575016,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575017,'Bantval','DAKSHINA KANNADA','KARNATAKA'),(575018,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575019,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575020,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575022,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575023,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575025,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575028,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575029,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(575030,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(576101,'Udupi','UDUPI','KARNATAKA'),(576102,'Udupi','UDUPI','KARNATAKA'),(576103,'Udupi','UDUPI','KARNATAKA'),(576104,'Udupi','UDUPI','KARNATAKA'),(576105,'Udupi','UDUPI','KARNATAKA'),(576106,'Udupi','UDUPI','KARNATAKA'),(576107,'Udupi','UDUPI','KARNATAKA'),(576108,'Udupi','UDUPI','KARNATAKA'),(576111,'Karkal','UDUPI','KARNATAKA'),(576112,'Karkal','UDUPI','KARNATAKA'),(576113,'Udupi','UDUPI','KARNATAKA'),(576114,'Udupi','UDUPI','KARNATAKA'),(576115,'Udupi','UDUPI','KARNATAKA'),(576117,'Karkal','UDUPI','KARNATAKA'),(576120,'Udupi','UDUPI','KARNATAKA'),(576121,'Mangalore','DAKSHINA KANNADA','KARNATAKA'),(576122,'Udupi','UDUPI','KARNATAKA'),(576124,'Udupi','UDUPI','KARNATAKA'),(576201,'Kundapura','UDUPI','KARNATAKA'),(576210,'Udupi','UDUPI','KARNATAKA'),(576211,'Kundapura','UDUPI','KARNATAKA'),(576212,'Kundapura','UDUPI','KARNATAKA'),(576213,'Udupi','UDUPI','KARNATAKA'),(576214,'Kundapura','UDUPI','KARNATAKA'),(576215,'Udupi','UDUPI','KARNATAKA'),(576216,'Kundapura','UDUPI','KARNATAKA'),(576217,'Kundapura','UDUPI','KARNATAKA'),(576218,'Udupi','UDUPI','KARNATAKA'),(576219,'Kundapura','UDUPI','KARNATAKA'),(576220,'Kundapura','UDUPI','KARNATAKA'),(576221,'Kundapura','UDUPI','KARNATAKA'),(576222,'Kundapura','UDUPI','KARNATAKA'),(576223,'Udupi','UDUPI','KARNATAKA'),(576224,'Kundapura','UDUPI','KARNATAKA'),(576225,'Udupi','UDUPI','KARNATAKA'),(576226,'Udupi','UDUPI','KARNATAKA'),(576227,'Kundapura','UDUPI','KARNATAKA'),(576228,'Kundapura','UDUPI','KARNATAKA'),(576229,'Kundapura','UDUPI','KARNATAKA'),(576230,'Kundapura','UDUPI','KARNATAKA'),(576231,'Kundapura','UDUPI','KARNATAKA'),(576232,'Kundapura','UDUPI','KARNATAKA'),(576233,'Kundapura','UDUPI','KARNATAKA'),(576234,'Udupi','UDUPI','KARNATAKA'),(576235,'Kundapura','UDUPI','KARNATAKA'),(576247,'Kundapura','UDUPI','KARNATAKA'),(576257,'Kundapura','UDUPI','KARNATAKA'),(576282,'Kundapura','UDUPI','KARNATAKA'),(576283,'Kundapura','UDUPI','KARNATAKA'),(577001,'Davanagere','DAVANGARE','KARNATAKA'),(577002,'Davanagere','DAVANGARE','KARNATAKA'),(577003,'Davanagere','DAVANGARE','KARNATAKA'),(577004,'Davanagere','DAVANGARE','KARNATAKA'),(577005,'Davanagere','DAVANGARE','KARNATAKA'),(577006,'Davanagere','DAVANGARE','KARNATAKA'),(577007,'Davanagere','DAVANGARE','KARNATAKA'),(577101,'Chikmagalur','CHICKMAGALUR','KARNATAKA'),(577102,'Chikmagalur','CHICKMAGALUR','KARNATAKA'),(577111,'Chikmagalur','CHICKMAGALUR','KARNATAKA'),(577112,'Narasimharajapura','CHICKMAGALUR','KARNATAKA'),(577113,'Mudigere','CHICKMAGALUR','KARNATAKA'),(577114,'Koppa','CHICKMAGALUR','KARNATAKA'),(577115,'Shimoga','SHIMOGA','KARNATAKA'),(577116,'Kadur','CHICKMAGALUR','KARNATAKA'),(577117,'Koppa','CHICKMAGALUR','KARNATAKA'),(577120,'Sringeri','CHICKMAGALUR','KARNATAKA'),(577121,'Mudigere','CHICKMAGALUR','KARNATAKA'),(577122,'Mudigere','CHICKMAGALUR','KARNATAKA'),(577123,'Koppa','CHICKMAGALUR','KARNATAKA'),(577124,'Mudigere','CHICKMAGALUR','KARNATAKA'),(577125,'Koppa','CHICKMAGALUR','KARNATAKA'),(577126,'Koppa','CHICKMAGALUR','KARNATAKA'),(577127,'Koppa','CHICKMAGALUR','KARNATAKA'),(577128,'Tarikere','CHICKMAGALUR','KARNATAKA'),(577129,'Tarikere','CHICKMAGALUR','KARNATAKA'),(577130,'Chikmagalur','CHICKMAGALUR','KARNATAKA'),(577131,'Chikmagalur','CHICKMAGALUR','KARNATAKA'),(577132,'Mudigere','CHICKMAGALUR','KARNATAKA'),(577133,'Chikmagalur','CHICKMAGALUR','KARNATAKA'),(577134,'Narasimharajapura','CHICKMAGALUR','KARNATAKA'),(577135,'Kadur','CHICKMAGALUR','KARNATAKA'),(577136,'Chikmagalur','CHICKMAGALUR','KARNATAKA'),(577137,'Chikmagalur','CHICKMAGALUR','KARNATAKA'),(577138,'Kadur','CHICKMAGALUR','KARNATAKA'),(577139,'Sringeri','CHICKMAGALUR','KARNATAKA'),(577140,'Kadur','CHICKMAGALUR','KARNATAKA'),(577142,'Mudigere','CHICKMAGALUR','KARNATAKA'),(577144,'Tarikere','CHICKMAGALUR','KARNATAKA'),(577145,'Tarikere','CHICKMAGALUR','KARNATAKA'),(577146,'Chikmagalur','CHICKMAGALUR','KARNATAKA'),(577160,'Narasimharajapura','CHICKMAGALUR','KARNATAKA'),(577168,'Chikmagalur','CHICKMAGALUR','KARNATAKA'),(577175,'Kadur','CHICKMAGALUR','KARNATAKA'),(577179,'Mudigere','CHICKMAGALUR','KARNATAKA'),(577180,'Kadur','CHICKMAGALUR','KARNATAKA'),(577181,'Mudigere','CHICKMAGALUR','KARNATAKA'),(577182,'Kadur','CHICKMAGALUR','KARNATAKA'),(577201,'Shimoga','SHIMOGA','KARNATAKA'),(577202,'Shimoga','SHIMOGA','KARNATAKA'),(577203,'Shimoga','SHIMOGA','KARNATAKA'),(577204,'Shimoga','SHIMOGA','KARNATAKA'),(577205,'Shimoga','SHIMOGA','KARNATAKA'),(577211,'Shimoga','SHIMOGA','KARNATAKA'),(577213,'Channagiri','DAVANGARE','KARNATAKA'),(577214,'Shikarpur','SHIMOGA','KARNATAKA'),(577215,'Channagiri','DAVANGARE','KARNATAKA'),(577216,'Honnali','DAVANGARE','KARNATAKA'),(577217,'Honnali','DAVANGARE','KARNATAKA'),(577218,'Channagiri','DAVANGARE','KARNATAKA'),(577219,'Honnali','DAVANGARE','KARNATAKA'),(577220,'Tirthahalli','SHIMOGA','KARNATAKA'),(577221,'Channagiri','DAVANGARE','KARNATAKA'),(577222,'Shimoga','SHIMOGA','KARNATAKA'),(577223,'Honnali','DAVANGARE','KARNATAKA'),(577224,'Honnali','DAVANGARE','KARNATAKA'),(577225,'Shimoga','SHIMOGA','KARNATAKA'),(577226,'Tirthahalli','SHIMOGA','KARNATAKA'),(577227,'Bhadravati','SHIMOGA','KARNATAKA'),(577228,'Tarikere','CHICKMAGALUR','KARNATAKA'),(577229,'Bhadravati','SHIMOGA','KARNATAKA'),(577230,'Honnali','DAVANGARE','KARNATAKA'),(577231,'Channagiri','DAVANGARE','KARNATAKA'),(577232,'Tirthahalli','SHIMOGA','KARNATAKA'),(577233,'Bhadravati','SHIMOGA','KARNATAKA'),(577243,'Bhadravati','SHIMOGA','KARNATAKA'),(577245,'Bhadravati','SHIMOGA','KARNATAKA'),(577301,'Bhadravati','SHIMOGA','KARNATAKA'),(577302,'Bhadravati','SHIMOGA','KARNATAKA'),(577401,'Sagar','SHIMOGA','KARNATAKA'),(577411,'Tirthahalli','SHIMOGA','KARNATAKA'),(577412,'Sagar','SHIMOGA','KARNATAKA'),(577413,'Sorab','SHIMOGA','KARNATAKA'),(577414,'Tirthahalli','SHIMOGA','KARNATAKA'),(577415,'Tirthahalli','SHIMOGA','KARNATAKA'),(577416,'Shimoga','SHIMOGA','KARNATAKA'),(577417,'Hosanagara','SHIMOGA','KARNATAKA'),(577418,'Hosanagara','SHIMOGA','KARNATAKA'),(577419,'Sorab','SHIMOGA','KARNATAKA'),(577421,'Sagar','SHIMOGA','KARNATAKA'),(577422,'Tirthahalli','SHIMOGA','KARNATAKA'),(577423,'Shimoga','SHIMOGA','KARNATAKA'),(577424,'Tirthahalli','SHIMOGA','KARNATAKA'),(577425,'Hosanagara','SHIMOGA','KARNATAKA'),(577426,'Hosanagara','SHIMOGA','KARNATAKA'),(577427,'Shikarpur','SHIMOGA','KARNATAKA'),(577428,'Shikarpur','SHIMOGA','KARNATAKA'),(577429,'Sorab','SHIMOGA','KARNATAKA'),(577430,'Sagar','SHIMOGA','KARNATAKA'),(577431,'Sagar','SHIMOGA','KARNATAKA'),(577432,'Tirthahalli','SHIMOGA','KARNATAKA'),(577433,'Shikarpur','SHIMOGA','KARNATAKA'),(577434,'Sorab','SHIMOGA','KARNATAKA'),(577435,'Sagar','SHIMOGA','KARNATAKA'),(577436,'Tirthahalli','SHIMOGA','KARNATAKA'),(577448,'Hosanagara','SHIMOGA','KARNATAKA'),(577451,'Bhadravati','SHIMOGA','KARNATAKA'),(577452,'Hosanagara','SHIMOGA','KARNATAKA'),(577453,'Sagar','SHIMOGA','KARNATAKA'),(577501,'Chitradurga','CHITRADURGA','KARNATAKA'),(577502,'Chitradurga','CHITRADURGA','KARNATAKA'),(577511,'Hiriyur','CHITRADURGA','KARNATAKA'),(577512,'Davanagere','DAVANGARE','KARNATAKA'),(577513,'Jagalur','DAVANGARE','KARNATAKA'),(577514,'Davanagere','DAVANGARE','KARNATAKA'),(577515,'Hosadurga','CHITRADURGA','KARNATAKA'),(577516,'Harihar','DAVANGARE','KARNATAKA'),(577517,'Chitradurga','CHITRADURGA','KARNATAKA'),(577518,'Holalkere','CHITRADURGA','KARNATAKA'),(577519,'Chitradurga','CHITRADURGA','KARNATAKA'),(577520,'Chitradurga','CHITRADURGA','KARNATAKA'),(577521,'Chitradurga','CHITRADURGA','KARNATAKA'),(577522,'Challakere','CHITRADURGA','KARNATAKA'),(577523,'Holalkere','CHITRADURGA','KARNATAKA'),(577524,'Chitradurga','CHITRADURGA','KARNATAKA'),(577525,'Davanagere','DAVANGARE','KARNATAKA'),(577526,'Holalkere','CHITRADURGA','KARNATAKA'),(577527,'Hosadurga','CHITRADURGA','KARNATAKA'),(577528,'Jagalur','DAVANGARE','KARNATAKA'),(577529,'Challakere','CHITRADURGA','KARNATAKA'),(577530,'Harihar','DAVANGARE','KARNATAKA'),(577531,'Holalkere','CHITRADURGA','KARNATAKA'),(577532,'Chitradurga','CHITRADURGA','KARNATAKA'),(577533,'Hosadurga','CHITRADURGA','KARNATAKA'),(577534,'Davanagere','DAVANGARE','KARNATAKA'),(577535,'Molakalmuru','CHITRADURGA','KARNATAKA'),(577536,'Challakere','CHITRADURGA','KARNATAKA'),(577537,'Challakere','CHITRADURGA','KARNATAKA'),(577538,'Challakere','CHITRADURGA','KARNATAKA'),(577539,'Holalkere','CHITRADURGA','KARNATAKA'),(577540,'Molakalmuru','CHITRADURGA','KARNATAKA'),(577541,'Chitradurga','CHITRADURGA','KARNATAKA'),(577542,'Hosadurga','CHITRADURGA','KARNATAKA'),(577543,'Challakere','CHITRADURGA','KARNATAKA'),(577544,'Channagiri','DAVANGARE','KARNATAKA'),(577545,'Hiriyur','CHITRADURGA','KARNATAKA'),(577546,'Hiriyur','CHITRADURGA','KARNATAKA'),(577547,'Tarikere','CHICKMAGALUR','KARNATAKA'),(577548,'Kadur','CHICKMAGALUR','KARNATAKA'),(577549,'Tarikere','CHICKMAGALUR','KARNATAKA'),(577550,'Kadur','CHICKMAGALUR','KARNATAKA'),(577551,'Honnali','DAVANGARE','KARNATAKA'),(577552,'Channagiri','DAVANGARE','KARNATAKA'),(577553,'Jagalur','DAVANGARE','KARNATAKA'),(577554,'Hosadurga','CHITRADURGA','KARNATAKA'),(577555,'Chitradurga','CHITRADURGA','KARNATAKA'),(577556,'Davanagere','DAVANGARE','KARNATAKA'),(577557,'Holalkere','CHITRADURGA','KARNATAKA'),(577558,'Hiriyur','CHITRADURGA','KARNATAKA'),(577566,'Davanagere','DAVANGARE','KARNATAKA'),(577589,'Harihar','DAVANGARE','KARNATAKA'),(577596,'Hiriyur','CHITRADURGA','KARNATAKA'),(577597,'Hosadurga','CHITRADURGA','KARNATAKA'),(577598,'Hiriyur','CHITRADURGA','KARNATAKA'),(577599,'Hiriyur','CHITRADURGA','KARNATAKA'),(577601,'Harihar','DAVANGARE','KARNATAKA'),(580001,'Dharwad','DHARWARD','KARNATAKA'),(580002,'Dharwad','DHARWARD','KARNATAKA'),(580003,'Dharwad','DHARWARD','KARNATAKA'),(580004,'Dharwad','DHARWARD','KARNATAKA'),(580005,'Dharwad','DHARWARD','KARNATAKA'),(580006,'Dharwad','DHARWARD','KARNATAKA'),(580007,'Dharwad','DHARWARD','KARNATAKA'),(580008,'Dharwad','DHARWARD','KARNATAKA'),(580009,'Dharwad','DHARWARD','KARNATAKA'),(580011,'Dharwad','DHARWARD','KARNATAKA'),(580020,'Hubli','DHARWARD','KARNATAKA'),(580021,'Hubli','DHARWARD','KARNATAKA'),(580023,'Hubli','DHARWARD','KARNATAKA'),(580024,'Hubli','DHARWARD','KARNATAKA'),(580025,'Hubli','DHARWARD','KARNATAKA'),(580026,'Hubli','DHARWARD','KARNATAKA'),(580028,'Hubli','DHARWARD','KARNATAKA'),(580029,'Hubli','DHARWARD','KARNATAKA'),(580030,'Hubli','DHARWARD','KARNATAKA'),(580031,'Hubli','DHARWARD','KARNATAKA'),(580032,'Hubli','DHARWARD','KARNATAKA'),(580112,'Dharwad','DHARWARD','KARNATAKA'),(580114,'Kalghatgi','DHARWARD','KARNATAKA'),(580118,'Dharwad','DHARWARD','KARNATAKA'),(581101,'Hangal','HAVERI','KARNATAKA'),(581102,'Hangal','HAVERI','KARNATAKA'),(581103,'Dharwad','DHARWARD','KARNATAKA'),(581104,'Hangal','HAVERI','KARNATAKA'),(581105,'Dharwad','DHARWARD','KARNATAKA'),(581106,'Byadgi','HAVERI','KARNATAKA'),(581107,'Kundgol','DHARWARD','KARNATAKA'),(581108,'Haveri','HAVERI','KARNATAKA'),(581109,'Hirekerur','HAVERI','KARNATAKA'),(581110,'Haveri','HAVERI','KARNATAKA'),(581111,'Hirekerur','HAVERI','KARNATAKA'),(581112,'Savanur','HAVERI','KARNATAKA'),(581113,'Kundgol','DHARWARD','KARNATAKA'),(581115,'Hangal','HAVERI','KARNATAKA'),(581116,'Hirekerur','HAVERI','KARNATAKA'),(581117,'Kundgol','DHARWARD','KARNATAKA'),(581118,'Savanur','HAVERI','KARNATAKA'),(581119,'Ranibennur','HAVERI','KARNATAKA'),(581120,'Byadgi','HAVERI','KARNATAKA'),(581121,'Supa','UTTARA KANNADA','KARNATAKA'),(581123,'Ranibennur','HAVERI','KARNATAKA'),(581126,'Savanur','HAVERI','KARNATAKA'),(581128,'Haveri','HAVERI','KARNATAKA'),(581129,'Supa','UTTARA KANNADA','KARNATAKA'),(581145,'Ranibennur','HAVERI','KARNATAKA'),(581148,'Haveri','HAVERI','KARNATAKA'),(581186,'Supa','UTTARA KANNADA','KARNATAKA'),(581187,'Supa','UTTARA KANNADA','KARNATAKA'),(581193,'Shiggaon','HAVERI','KARNATAKA'),(581195,'Navalgund','DHARWARD','KARNATAKA'),(581196,'Kalghatgi','DHARWARD','KARNATAKA'),(581197,'Shiggaon','HAVERI','KARNATAKA'),(581198,'Byadgi','HAVERI','KARNATAKA'),(581199,'Hangal','HAVERI','KARNATAKA'),(581201,'Dharwad','DHARWARD','KARNATAKA'),(581202,'Savanur','HAVERI','KARNATAKA'),(581203,'Hangal','HAVERI','KARNATAKA'),(581204,'Kalghatgi','DHARWARD','KARNATAKA'),(581205,'Shiggaon','HAVERI','KARNATAKA'),(581206,'Dharwad','DHARWARD','KARNATAKA'),(581207,'Kundgol','DHARWARD','KARNATAKA'),(581208,'Ranibennur','HAVERI','KARNATAKA'),(581209,'Navalgund','DHARWARD','KARNATAKA'),(581210,'Hirekerur','HAVERI','KARNATAKA'),(581211,'Ranibennur','HAVERI','KARNATAKA'),(581212,'Shiggaon','HAVERI','KARNATAKA'),(581213,'Haveri','HAVERI','KARNATAKA'),(581301,'Karwar','UTTARA KANNADA','KARNATAKA'),(581302,'Karwar','UTTARA KANNADA','KARNATAKA'),(581303,'Karwar','UTTARA KANNADA','KARNATAKA'),(581304,'Karwar','UTTARA KANNADA','KARNATAKA'),(581305,'Karwar','UTTARA KANNADA','KARNATAKA'),(581306,'Karwar','UTTARA KANNADA','KARNATAKA'),(581307,'Karwar','UTTARA KANNADA','KARNATAKA'),(581308,'Karwar','UTTARA KANNADA','KARNATAKA'),(581314,'Ankola','UTTARA KANNADA','KARNATAKA'),(581315,'Sirsi','UTTARA KANNADA','KARNATAKA'),(581316,'Ankola','UTTARA KANNADA','KARNATAKA'),(581317,'Karwar','UTTARA KANNADA','KARNATAKA'),(581318,'Sirsi','UTTARA KANNADA','KARNATAKA'),(581319,'Ankola','UTTARA KANNADA','KARNATAKA'),(581320,'Bhatkal','UTTARA KANNADA','KARNATAKA'),(581321,'Ankola','UTTARA KANNADA','KARNATAKA'),(581322,'Siddapur','UTTARA KANNADA','KARNATAKA'),(581323,'Kumta','UTTARA KANNADA','KARNATAKA'),(581324,'Karwar','UTTARA KANNADA','KARNATAKA'),(581325,'Supa','UTTARA KANNADA','KARNATAKA'),(581326,'Kumta','UTTARA KANNADA','KARNATAKA'),(581327,'Kumta','UTTARA KANNADA','KARNATAKA'),(581328,'Karwar','UTTARA KANNADA','KARNATAKA'),(581329,'Haliyal','UTTARA KANNADA','KARNATAKA'),(581330,'Kumta','UTTARA KANNADA','KARNATAKA'),(581331,'Siddapur','UTTARA KANNADA','KARNATAKA'),(581332,'Kumta','UTTARA KANNADA','KARNATAKA'),(581333,'Kumta','UTTARA KANNADA','KARNATAKA'),(581334,'Honavar','UTTARA KANNADA','KARNATAKA'),(581335,'Honavar','UTTARA KANNADA','KARNATAKA'),(581336,'Sirsi','UTTARA KANNADA','KARNATAKA'),(581337,'Yellapur','UTTARA KANNADA','KARNATAKA'),(581338,'Honavar','UTTARA KANNADA','KARNATAKA'),(581339,'Karwar','UTTARA KANNADA','KARNATAKA'),(581340,'Siddapur','UTTARA KANNADA','KARNATAKA'),(581341,'Honavar','UTTARA KANNADA','KARNATAKA'),(581342,'Honavar','UTTARA KANNADA','KARNATAKA'),(581343,'Kumta','UTTARA KANNADA','KARNATAKA'),(581344,'Ankola','UTTARA KANNADA','KARNATAKA'),(581345,'Karwar','UTTARA KANNADA','KARNATAKA'),(581346,'Mundgod','UTTARA KANNADA','KARNATAKA'),(581347,'Yellapur','UTTARA KANNADA','KARNATAKA'),(581348,'Honavar','UTTARA KANNADA','KARNATAKA'),(581349,'Mundgod','UTTARA KANNADA','KARNATAKA'),(581350,'Bhatkal','UTTARA KANNADA','KARNATAKA'),(581351,'Kumta','UTTARA KANNADA','KARNATAKA'),(581352,'Karwar','UTTARA KANNADA','KARNATAKA'),(581353,'Ankola','UTTARA KANNADA','KARNATAKA'),(581354,'Bhatkal','UTTARA KANNADA','KARNATAKA'),(581355,'Siddapur','UTTARA KANNADA','KARNATAKA'),(581356,'Haliyal','UTTARA KANNADA','KARNATAKA'),(581357,'Ankola','UTTARA KANNADA','KARNATAKA'),(581358,'Sirsi','UTTARA KANNADA','KARNATAKA'),(581359,'Yellapur','UTTARA KANNADA','KARNATAKA'),(581360,'Karwar','UTTARA KANNADA','KARNATAKA'),(581361,'Honavar','UTTARA KANNADA','KARNATAKA'),(581362,'Kumta','UTTARA KANNADA','KARNATAKA'),(581363,'Haliyal','UTTARA KANNADA','KARNATAKA'),(581365,'Supa','UTTARA KANNADA','KARNATAKA'),(581384,'Honavar','UTTARA KANNADA','KARNATAKA'),(581396,'Karwar','UTTARA KANNADA','KARNATAKA'),(581400,'Karwar','UTTARA KANNADA','KARNATAKA'),(581401,'Sirsi','UTTARA KANNADA','KARNATAKA'),(581402,'Sirsi','UTTARA KANNADA','KARNATAKA'),(581403,'Sirsi','UTTARA KANNADA','KARNATAKA'),(581411,'Mundgod','UTTARA KANNADA','KARNATAKA'),(581412,'Yellapur','UTTARA KANNADA','KARNATAKA'),(581421,'Bhatkal','UTTARA KANNADA','KARNATAKA'),(581423,'Honavar','UTTARA KANNADA','KARNATAKA'),(581440,'Kumta','UTTARA KANNADA','KARNATAKA'),(581450,'Siddapur','UTTARA KANNADA','KARNATAKA'),(581453,'Khanapur','BELGAUM','KARNATAKA'),(582101,'Gadag','GADAG','KARNATAKA'),(582102,'Gadag','GADAG','KARNATAKA'),(582103,'Gadag','GADAG','KARNATAKA'),(582111,'Ron','GADAG','KARNATAKA'),(582112,'Shirhatti','GADAG','KARNATAKA'),(582113,'Mundargi','GADAG','KARNATAKA'),(582114,'Ron','GADAG','KARNATAKA'),(582115,'Gadag','GADAG','KARNATAKA'),(582116,'Shirhatti','GADAG','KARNATAKA'),(582117,'Shirhatti','GADAG','KARNATAKA'),(582118,'Mundargi','GADAG','KARNATAKA'),(582119,'Ron','GADAG','KARNATAKA'),(582120,'Shirhatti','GADAG','KARNATAKA'),(582201,'Navalgund','DHARWARD','KARNATAKA'),(582202,'Ron','GADAG','KARNATAKA'),(582203,'Ron','GADAG','KARNATAKA'),(582204,'Gadag','GADAG','KARNATAKA'),(582205,'Gadag','GADAG','KARNATAKA'),(582206,'Nargund','GADAG','KARNATAKA'),(582207,'Nargund','GADAG','KARNATAKA'),(582208,'Navalgund','DHARWARD','KARNATAKA'),(582209,'Ron','GADAG','KARNATAKA'),(582210,'Shirhatti','GADAG','KARNATAKA'),(582211,'Ron','GADAG','KARNATAKA'),(583101,'Bellary','BELLARY','KARNATAKA'),(583102,'Bellary','BELLARY','KARNATAKA'),(583103,'Bellary','BELLARY','KARNATAKA'),(583104,'Bellary','BELLARY','KARNATAKA'),(583105,'Bellary','BELLARY','KARNATAKA'),(583111,'Bellary','BELLARY','KARNATAKA'),(583112,'Sandur','BELLARY','KARNATAKA'),(583113,'Bellary','BELLARY','KARNATAKA'),(583114,'Siruguppa','BELLARY','KARNATAKA'),(583115,'Bellary','BELLARY','KARNATAKA'),(583116,'Bellary','BELLARY','KARNATAKA'),(583117,'Bellary','BELLARY','KARNATAKA'),(583118,'Sandur','BELLARY','KARNATAKA'),(583119,'Sandur','BELLARY','KARNATAKA'),(583120,'Bellary','BELLARY','KARNATAKA'),(583121,'Siruguppa','BELLARY','KARNATAKA'),(583122,'Siruguppa','BELLARY','KARNATAKA'),(583123,'Sandur','BELLARY','KARNATAKA'),(583124,'Sandur','BELLARY','KARNATAKA'),(583125,'Harapanahalli','DAVANGARE','KARNATAKA'),(583126,'Kudligi','BELLARY','KARNATAKA'),(583127,'Harapanahalli','DAVANGARE','KARNATAKA'),(583128,'Sandur','BELLARY','KARNATAKA'),(583129,'Hospet','BELLARY','KARNATAKA'),(583130,'Kudligi','BELLARY','KARNATAKA'),(583131,'Harapanahalli','DAVANGARE','KARNATAKA'),(583132,'Hospet','BELLARY','KARNATAKA'),(583134,'Hagaribommanahalli','BELLARY','KARNATAKA'),(583135,'Kudligi','BELLARY','KARNATAKA'),(583136,'Kudligi','BELLARY','KARNATAKA'),(583137,'Harapanahalli','DAVANGARE','KARNATAKA'),(583152,'Bellary','BELLARY','KARNATAKA'),(583154,'Siruguppa','BELLARY','KARNATAKA'),(583201,'Hospet','BELLARY','KARNATAKA'),(583203,'Hospet','BELLARY','KARNATAKA'),(583211,'Hospet','BELLARY','KARNATAKA'),(583212,'Hagaribommanahalli','BELLARY','KARNATAKA'),(583213,'Harapanahalli','DAVANGARE','KARNATAKA'),(583214,'Hagaribommanahalli','BELLARY','KARNATAKA'),(583215,'Hospet','BELLARY','KARNATAKA'),(583216,'Hadagalli','BELLARY','KARNATAKA'),(583217,'Hadagalli','BELLARY','KARNATAKA'),(583218,'Kudligi','BELLARY','KARNATAKA'),(583219,'Hadagalli','BELLARY','KARNATAKA'),(583220,'Hospet','BELLARY','KARNATAKA'),(583221,'Bellary','BELLARY','KARNATAKA'),(583222,'Hospet','BELLARY','KARNATAKA'),(583223,'Hospet','BELLARY','KARNATAKA'),(583224,'Hagaribommanahalli','BELLARY','KARNATAKA'),(583225,'Hospet','BELLARY','KARNATAKA'),(583226,'Koppal','KOPPAL','KARNATAKA'),(583227,'Gangawati','KOPPAL','KARNATAKA'),(583228,'Koppal','KOPPAL','KARNATAKA'),(583229,'Gangawati','KOPPAL','KARNATAKA'),(583230,'Koppal','KOPPAL','KARNATAKA'),(583231,'Koppal','KOPPAL','KARNATAKA'),(583232,'Yelbarga','KOPPAL','KARNATAKA'),(583233,'Koppal','KOPPAL','KARNATAKA'),(583234,'Koppal','KOPPAL','KARNATAKA'),(583235,'Gangawati','KOPPAL','KARNATAKA'),(583236,'Yelbarga','KOPPAL','KARNATAKA'),(583237,'Yelbarga','KOPPAL','KARNATAKA'),(583238,'Koppal','KOPPAL','KARNATAKA'),(583239,'Hospet','BELLARY','KARNATAKA'),(583268,'Gangawati','KOPPAL','KARNATAKA'),(583275,'Sandur','BELLARY','KARNATAKA'),(583276,'Hospet','BELLARY','KARNATAKA'),(583277,'Kushtagi','KOPPAL','KARNATAKA'),(583278,'Kushtagi','KOPPAL','KARNATAKA'),(583279,'Kushtagi','KOPPAL','KARNATAKA'),(583280,'Kushtagi','KOPPAL','KARNATAKA'),(583281,'Kushtagi','KOPPAL','KARNATAKA'),(583282,'Gangawati','KOPPAL','KARNATAKA'),(583283,'Gangawati','KOPPAL','KARNATAKA'),(583284,'Yelbarga','KOPPAL','KARNATAKA'),(583285,'Koppal','KOPPAL','KARNATAKA'),(584101,'Raichur','RAICHUR','KARNATAKA'),(584102,'Raichur','RAICHUR','KARNATAKA'),(584103,'Raichur','RAICHUR','KARNATAKA'),(584104,'Raichur','RAICHUR','KARNATAKA'),(584111,'Devadurga','RAICHUR','KARNATAKA'),(584113,'Raichur','RAICHUR','KARNATAKA'),(584115,'Lingsugur','RAICHUR','KARNATAKA'),(584116,'Devadurga','RAICHUR','KARNATAKA'),(584118,'Manvi','RAICHUR','KARNATAKA'),(584120,'Manvi','RAICHUR','KARNATAKA'),(584122,'Lingsugur','RAICHUR','KARNATAKA'),(584123,'Manvi','RAICHUR','KARNATAKA'),(584124,'Lingsugur','RAICHUR','KARNATAKA'),(584125,'Lingsugur','RAICHUR','KARNATAKA'),(584126,'Devadurga','RAICHUR','KARNATAKA'),(584127,'Lingsugur','RAICHUR','KARNATAKA'),(584128,'Sindhnur','RAICHUR','KARNATAKA'),(584129,'Devadurga','RAICHUR','KARNATAKA'),(584132,'Sindhnur','RAICHUR','KARNATAKA'),(584133,'Raichur','RAICHUR','KARNATAKA'),(584134,'Raichur','RAICHUR','KARNATAKA'),(584135,'Raichur','RAICHUR','KARNATAKA'),(584136,'Manvi','RAICHUR','KARNATAKA'),(584138,'Manvi','RAICHUR','KARNATAKA'),(584139,'Lingsugur','RAICHUR','KARNATAKA'),(584140,'Raichur','RAICHUR','KARNATAKA'),(584143,'Sindhnur','RAICHUR','KARNATAKA'),(584167,'Sindhnur','RAICHUR','KARNATAKA'),(584170,'Raichur','RAICHUR','KARNATAKA'),(584202,'Raichur','RAICHUR','KARNATAKA'),(584203,'Manvi','RAICHUR','KARNATAKA'),(585101,'Gulbarga','GULBARGA','KARNATAKA'),(585102,'Gulbarga','GULBARGA','KARNATAKA'),(585103,'Gulbarga','GULBARGA','KARNATAKA'),(585104,'Gulbarga','GULBARGA','KARNATAKA'),(585105,'Gulbarga','GULBARGA','KARNATAKA'),(585106,'Gulbarga','GULBARGA','KARNATAKA'),(585201,'Yadgir','GULBARGA','KARNATAKA'),(585202,'Yadgir','GULBARGA','KARNATAKA'),(585210,'Sedam','GULBARGA','KARNATAKA'),(585211,'Chitapur','GULBARGA','KARNATAKA'),(585212,'Jevargi','GULBARGA','KARNATAKA'),(585213,'Gulbarga','GULBARGA','KARNATAKA'),(585214,'Yadgir','GULBARGA','KARNATAKA'),(585215,'Shorapur','GULBARGA','KARNATAKA'),(585216,'Shorapur','GULBARGA','KARNATAKA'),(585217,'Afzalpur','GULBARGA','KARNATAKA'),(585218,'Chitapur','GULBARGA','KARNATAKA'),(585219,'Shorapur','GULBARGA','KARNATAKA'),(585220,'Shorapur','GULBARGA','KARNATAKA'),(585221,'Yadgir','GULBARGA','KARNATAKA'),(585222,'Sedam','GULBARGA','KARNATAKA'),(585223,'Shahpur','GULBARGA','KARNATAKA'),(585224,'Shorapur','GULBARGA','KARNATAKA'),(585225,'Chitapur','GULBARGA','KARNATAKA'),(585226,'Bidar','BIDAR','KARNATAKA'),(585227,'Homnabad','BIDAR','KARNATAKA'),(585228,'Chitapur','GULBARGA','KARNATAKA'),(585229,'Chitapur','GULBARGA','KARNATAKA'),(585236,'Aland','GULBARGA','KARNATAKA'),(585237,'Shorapur','GULBARGA','KARNATAKA'),(585265,'Afzalpur','GULBARGA','KARNATAKA'),(585287,'Jevargi','GULBARGA','KARNATAKA'),(585290,'Yadgir','GULBARGA','KARNATAKA'),(585291,'Shorapur','GULBARGA','KARNATAKA'),(585292,'Sedam','GULBARGA','KARNATAKA'),(585301,'Afzalpur','GULBARGA','KARNATAKA'),(585302,'Aland','GULBARGA','KARNATAKA'),(585303,'Jevargi','GULBARGA','KARNATAKA'),(585304,'Yadgir','GULBARGA','KARNATAKA'),(585305,'Chincholi','GULBARGA','KARNATAKA'),(585306,'Chincholi','GULBARGA','KARNATAKA'),(585307,'Chincholi','GULBARGA','KARNATAKA'),(585308,'Gulbarga','GULBARGA','KARNATAKA'),(585309,'Jevargi','GULBARGA','KARNATAKA'),(585310,'Jevargi','GULBARGA','KARNATAKA'),(585311,'Aland','GULBARGA','KARNATAKA'),(585312,'Chitapur','GULBARGA','KARNATAKA'),(585313,'Gulbarga','GULBARGA','KARNATAKA'),(585314,'Aland','GULBARGA','KARNATAKA'),(585315,'Yadgir','GULBARGA','KARNATAKA'),(585316,'Gulbarga','GULBARGA','KARNATAKA'),(585317,'Sedam','GULBARGA','KARNATAKA'),(585318,'Sedam','GULBARGA','KARNATAKA'),(585319,'Yadgir','GULBARGA','KARNATAKA'),(585320,'Chincholi','GULBARGA','KARNATAKA'),(585321,'Shorapur','GULBARGA','KARNATAKA'),(585322,'Chincholi','GULBARGA','KARNATAKA'),(585323,'Shahpur','GULBARGA','KARNATAKA'),(585324,'Chincholi','GULBARGA','KARNATAKA'),(585325,'Jevargi','GULBARGA','KARNATAKA'),(585326,'Aurad','BIDAR','KARNATAKA'),(585327,'Basavakalyan','BIDAR','KARNATAKA'),(585328,'Bhalki','BIDAR','KARNATAKA'),(585329,'Homnabad','BIDAR','KARNATAKA'),(585330,'Homnabad','BIDAR','KARNATAKA'),(585331,'Basavakalyan','BIDAR','KARNATAKA'),(585353,'Homnabad','BIDAR','KARNATAKA'),(585355,'Yadgir','GULBARGA','KARNATAKA'),(585401,'Bidar','BIDAR','KARNATAKA'),(585402,'Bidar','BIDAR','KARNATAKA'),(585403,'Bidar','BIDAR','KARNATAKA'),(585411,'Bhalki','BIDAR','KARNATAKA'),(585412,'Homnabad','BIDAR','KARNATAKA'),(585413,'Bhalki','BIDAR','KARNATAKA'),(585414,'Homnabad','BIDAR','KARNATAKA'),(585415,'Bhalki','BIDAR','KARNATAKA'),(585416,'Bhalki','BIDAR','KARNATAKA'),(585417,'Aurad','BIDAR','KARNATAKA'),(585418,'Homnabad','BIDAR','KARNATAKA'),(585419,'Basavakalyan','BIDAR','KARNATAKA'),(585421,'Aurad','BIDAR','KARNATAKA'),(585436,'Aurad','BIDAR','KARNATAKA'),(585437,'Basavakalyan','BIDAR','KARNATAKA'),(585443,'Aurad','BIDAR','KARNATAKA'),(585444,'Bhalki','BIDAR','KARNATAKA'),(586101,'Bijapur','BIJAPUR','KARNATAKA'),(586102,'Bijapur','BIJAPUR','KARNATAKA'),(586103,'Bijapur','BIJAPUR','KARNATAKA'),(586104,'Bijapur','BIJAPUR','KARNATAKA'),(586108,'Bijapur','BIJAPUR','KARNATAKA'),(586109,'Bijapur','BIJAPUR','KARNATAKA'),(586111,'Indi','BIJAPUR','KARNATAKA'),(586112,'Bijapur','BIJAPUR','KARNATAKA'),(586113,'Basavana Bagevadi','BIJAPUR','KARNATAKA'),(586114,'Bijapur','BIJAPUR','KARNATAKA'),(586115,'Sindgi','BIJAPUR','KARNATAKA'),(586116,'Muddebihal','BIJAPUR','KARNATAKA'),(586117,'Indi','BIJAPUR','KARNATAKA'),(586118,'Sindgi','BIJAPUR','KARNATAKA'),(586119,'Bijapur','BIJAPUR','KARNATAKA'),(586120,'Sindgi','BIJAPUR','KARNATAKA'),(586121,'Basavana Bagevadi','BIJAPUR','KARNATAKA'),(586122,'Basavana Bagevadi','BIJAPUR','KARNATAKA'),(586123,'Sindgi','BIJAPUR','KARNATAKA'),(586124,'Muddebihal','BIJAPUR','KARNATAKA'),(586125,'Bijapur','BIJAPUR','KARNATAKA'),(586127,'Bijapur','BIJAPUR','KARNATAKA'),(586128,'Sindgi','BIJAPUR','KARNATAKA'),(586129,'Muddebihal','BIJAPUR','KARNATAKA'),(586130,'Bijapur','BIJAPUR','KARNATAKA'),(586201,'Basavana Bagevadi','BIJAPUR','KARNATAKA'),(586202,'Sindgi','BIJAPUR','KARNATAKA'),(586203,'Basavana Bagevadi','BIJAPUR','KARNATAKA'),(586204,'Indi','BIJAPUR','KARNATAKA'),(586205,'Indi','BIJAPUR','KARNATAKA'),(586206,'Sindgi','BIJAPUR','KARNATAKA'),(586207,'Indi','BIJAPUR','KARNATAKA'),(586208,'Basavana Bagevadi','BIJAPUR','KARNATAKA'),(586209,'Indi','BIJAPUR','KARNATAKA'),(586210,'Basavana Bagevadi','BIJAPUR','KARNATAKA'),(586211,'Indi','BIJAPUR','KARNATAKA'),(586212,'Muddebihal','BIJAPUR','KARNATAKA'),(586213,'Muddebihal','BIJAPUR','KARNATAKA'),(586214,'Muddebihal','BIJAPUR','KARNATAKA'),(586215,'Sindgi','BIJAPUR','KARNATAKA'),(586216,'Basavana Bagevadi','BIJAPUR','KARNATAKA'),(586217,'Indi','BIJAPUR','KARNATAKA'),(587101,'Bagalkot','BAGALKOT','KARNATAKA'),(587102,'Bilgi','BAGALKOT','KARNATAKA'),(587103,'Bilgi','BAGALKOT','KARNATAKA'),(587104,'Bagalkot','BAGALKOT','KARNATAKA'),(587111,'Bagalkot','BAGALKOT','KARNATAKA'),(587112,'Hungund','BAGALKOT','KARNATAKA'),(587113,'Mudhol','BAGALKOT','KARNATAKA'),(587114,'Badami','BAGALKOT','KARNATAKA'),(587115,'Bagalkot','BAGALKOT','KARNATAKA'),(587116,'Bilgi','BAGALKOT','KARNATAKA'),(587117,'Bilgi','BAGALKOT','KARNATAKA'),(587118,'Hungund','BAGALKOT','KARNATAKA'),(587119,'Jamkhandi','BAGALKOT','KARNATAKA'),(587120,'Hungund','BAGALKOT','KARNATAKA'),(587121,'Bilgi','BAGALKOT','KARNATAKA'),(587122,'Mudhol','BAGALKOT','KARNATAKA'),(587124,'Hungund','BAGALKOT','KARNATAKA'),(587125,'Hungund','BAGALKOT','KARNATAKA'),(587154,'Hungund','BAGALKOT','KARNATAKA'),(587155,'Badami','BAGALKOT','KARNATAKA'),(587156,'Hungund','BAGALKOT','KARNATAKA'),(587201,'Badami','BAGALKOT','KARNATAKA'),(587202,'Hungund','BAGALKOT','KARNATAKA'),(587203,'Badami','BAGALKOT','KARNATAKA'),(587204,'Bilgi','BAGALKOT','KARNATAKA'),(587205,'Badami','BAGALKOT','KARNATAKA'),(587206,'Badami','BAGALKOT','KARNATAKA'),(587207,'Bagalkot','BAGALKOT','KARNATAKA'),(587301,'Jamkhandi','BAGALKOT','KARNATAKA'),(587311,'Jamkhandi','BAGALKOT','KARNATAKA'),(587312,'Mudhol','BAGALKOT','KARNATAKA'),(587313,'Mudhol','BAGALKOT','KARNATAKA'),(587314,'Jamkhandi','BAGALKOT','KARNATAKA'),(587315,'Jamkhandi','BAGALKOT','KARNATAKA'),(587316,'Mudhol','BAGALKOT','KARNATAKA'),(587330,'Jamkhandi','BAGALKOT','KARNATAKA'),(590001,'Belgaum','BELGAUM','KARNATAKA'),(590003,'Belgaum','BELGAUM','KARNATAKA'),(590005,'Belgaum','BELGAUM','KARNATAKA'),(590006,'Belgaum','BELGAUM','KARNATAKA'),(590008,'Belgaum','BELGAUM','KARNATAKA'),(590009,'Belgaum','BELGAUM','KARNATAKA'),(590010,'Belgaum','BELGAUM','KARNATAKA'),(590011,'Belgaum','BELGAUM','KARNATAKA'),(590014,'Belgaum','BELGAUM','KARNATAKA'),(590015,'Belgaum','BELGAUM','KARNATAKA'),(590016,'Belgaum','BELGAUM','KARNATAKA'),(590017,'Belgaum','BELGAUM','KARNATAKA'),(590018,'Belgaum','BELGAUM','KARNATAKA'),(590019,'Belgaum','BELGAUM','KARNATAKA'),(590020,'Belgaum','BELGAUM','KARNATAKA'),(591101,'Gokak','BELGAUM','KARNATAKA'),(591102,'Sampgaon','BELGAUM','KARNATAKA'),(591103,'Belgaum','BELGAUM','KARNATAKA'),(591104,'Sampgaon','BELGAUM','KARNATAKA'),(591106,'Khanapur','BELGAUM','KARNATAKA'),(591107,'Hukeri','BELGAUM','KARNATAKA'),(591108,'Belgaum','BELGAUM','KARNATAKA'),(591109,'Belgaum','BELGAUM','KARNATAKA'),(591110,'Parasgad','BELGAUM','KARNATAKA'),(591111,'Sampgaon','BELGAUM','KARNATAKA'),(591112,'Khanapur','BELGAUM','KARNATAKA'),(591113,'Belgaum','BELGAUM','KARNATAKA'),(591114,'Ramdurg','BELGAUM','KARNATAKA'),(591115,'Sampgaon','BELGAUM','KARNATAKA'),(591116,'Ramdurg','BELGAUM','KARNATAKA'),(591117,'Parasgad','BELGAUM','KARNATAKA'),(591118,'Sampgaon','BELGAUM','KARNATAKA'),(591119,'Parasgad','BELGAUM','KARNATAKA'),(591120,'Belgaum','BELGAUM','KARNATAKA'),(591121,'Sampgaon','BELGAUM','KARNATAKA'),(591122,'Gokak','BELGAUM','KARNATAKA'),(591123,'Ramdurg','BELGAUM','KARNATAKA'),(591124,'Belgaum','BELGAUM','KARNATAKA'),(591125,'Sampgaon','BELGAUM','KARNATAKA'),(591126,'Parasgad','BELGAUM','KARNATAKA'),(591127,'Ramdurg','BELGAUM','KARNATAKA'),(591128,'Belgaum','BELGAUM','KARNATAKA'),(591129,'Parasgad','BELGAUM','KARNATAKA'),(591130,'Ramdurg','BELGAUM','KARNATAKA'),(591131,'Khanapur','BELGAUM','KARNATAKA'),(591136,'Gokak','BELGAUM','KARNATAKA'),(591143,'Belgaum','BELGAUM','KARNATAKA'),(591147,'Sampgaon','BELGAUM','KARNATAKA'),(591153,'Sampgaon','BELGAUM','KARNATAKA'),(591156,'Belgaum','BELGAUM','KARNATAKA'),(591173,'Parasgad','BELGAUM','KARNATAKA'),(591201,'Chikodi','BELGAUM','KARNATAKA'),(591211,'Chikodi','BELGAUM','KARNATAKA'),(591212,'Athni','BELGAUM','KARNATAKA'),(591213,'Chikodi','BELGAUM','KARNATAKA'),(591214,'Chikodi','BELGAUM','KARNATAKA'),(591215,'Chikodi','BELGAUM','KARNATAKA'),(591216,'Chikodi','BELGAUM','KARNATAKA'),(591217,'Athni','BELGAUM','KARNATAKA'),(591218,'Gokak','BELGAUM','KARNATAKA'),(591219,'Chikodi','BELGAUM','KARNATAKA'),(591220,'Athni','BELGAUM','KARNATAKA'),(591221,'Hukeri','BELGAUM','KARNATAKA'),(591222,'Raybag','BELGAUM','KARNATAKA'),(591223,'Athni','BELGAUM','KARNATAKA'),(591224,'Gokak','BELGAUM','KARNATAKA'),(591225,'Hukeri','BELGAUM','KARNATAKA'),(591226,'Chikodi','BELGAUM','KARNATAKA'),(591227,'Gokak','BELGAUM','KARNATAKA'),(591228,'Chikodi','BELGAUM','KARNATAKA'),(591229,'Chikodi','BELGAUM','KARNATAKA'),(591230,'Athni','BELGAUM','KARNATAKA'),(591231,'Gokak','BELGAUM','KARNATAKA'),(591232,'Athni','BELGAUM','KARNATAKA'),(591233,'Gokak','BELGAUM','KARNATAKA'),(591234,'Athni','BELGAUM','KARNATAKA'),(591235,'Raybag','BELGAUM','KARNATAKA'),(591236,'Hukeri','BELGAUM','KARNATAKA'),(591237,'Chikodi','BELGAUM','KARNATAKA'),(591238,'Chikodi','BELGAUM','KARNATAKA'),(591239,'Chikodi','BELGAUM','KARNATAKA'),(591240,'Athni','BELGAUM','KARNATAKA'),(591241,'Chikodi','BELGAUM','KARNATAKA'),(591242,'Athni','BELGAUM','KARNATAKA'),(591243,'Hukeri','BELGAUM','KARNATAKA'),(591244,'Chikodi','BELGAUM','KARNATAKA'),(591246,'Hukeri','BELGAUM','KARNATAKA'),(591247,'Chikodi','BELGAUM','KARNATAKA'),(591248,'Athni','BELGAUM','KARNATAKA'),(591254,'Hukeri','BELGAUM','KARNATAKA'),(591263,'Chikodi','BELGAUM','KARNATAKA'),(591265,'Athni','BELGAUM','KARNATAKA'),(591287,'Chikodi','BELGAUM','KARNATAKA'),(591301,'Khanapur','BELGAUM','KARNATAKA'),(591302,'Khanapur','BELGAUM','KARNATAKA'),(591303,'Athni','BELGAUM','KARNATAKA'),(591304,'Athni','BELGAUM','KARNATAKA'),(591305,'Hukeri','BELGAUM','KARNATAKA'),(591306,'Gokak','BELGAUM','KARNATAKA'),(591307,'Gokak','BELGAUM','KARNATAKA'),(591308,'Gokak','BELGAUM','KARNATAKA'),(591309,'Hukeri','BELGAUM','KARNATAKA'),(591310,'Gokak','BELGAUM','KARNATAKA'),(591311,'Raybag','BELGAUM','KARNATAKA'),(591312,'Gokak','BELGAUM','KARNATAKA'),(591313,'Hukeri','BELGAUM','KARNATAKA'),(591314,'Hukeri','BELGAUM','KARNATAKA'),(591315,'Athni','BELGAUM','KARNATAKA'),(591316,'Athni','BELGAUM','KARNATAKA'),(591317,'Raybag','BELGAUM','KARNATAKA'),(591340,'Hukeri','BELGAUM','KARNATAKA'),(591344,'Gokak','BELGAUM','KARNATAKA'),(591345,'Khanapur','BELGAUM','KARNATAKA'),(600001,'Fort - Tondiarpet','CHENNAI','TAMIL NADU'),(600002,'Egmore - Nungambakkam','CHENNAI','TAMIL NADU'),(600003,'Fort - Tondiarpet','CHENNAI','TAMIL NADU'),(600004,'Mylapore - Triplicane','CHENNAI','TAMIL NADU'),(600005,'Mylapore - Triplicane','CHENNAI','TAMIL NADU'),(600006,'Egmore - Nungambakkam','CHENNAI','TAMIL NADU'),(600007,'Fort - Tondiarpet','CHENNAI','TAMIL NADU'),(600008,'Egmore - Nungambakkam','CHENNAI','TAMIL NADU'),(600009,'Fort - Tondiarpet','CHENNAI','TAMIL NADU'),(600010,'Perambur - Purasawakkam','CHENNAI','TAMIL NADU'),(600011,'Perambur - Purasawakkam','CHENNAI','TAMIL NADU'),(600012,'Perambur - Purasawakkam','CHENNAI','TAMIL NADU'),(600013,'Fort - Tondiarpet','CHENNAI','TAMIL NADU'),(600014,'Mylapore - Triplicane','CHENNAI','TAMIL NADU'),(600015,'Mambalam - Guindy','CHENNAI','TAMIL NADU'),(600016,'Kancheepuram','KANCHIPURAM','TAMIL NADU'),(600017,'Mambalam - Guindy','CHENNAI','TAMIL NADU'),(600018,'Mylapore - Triplicane','CHENNAI','TAMIL NADU'),(600019,'Ambattur','TIRUVALLUR','TAMIL NADU'),(600020,'Mylapore - Triplicane','CHENNAI','TAMIL NADU'),(600021,'Fort - Tondiarpet','CHENNAI','TAMIL NADU'),(600022,'Mambalam - Guindy','CHENNAI','TAMIL NADU'),(600023,'Perambur - Purasawakkam','CHENNAI','TAMIL NADU'),(600024,'Mambalam - Guindy','CHENNAI','TAMIL NADU'),(600025,'Mambalam - Guindy','CHENNAI','TAMIL NADU'),(600026,'Mambalam - Guindy','CHENNAI','TAMIL NADU'),(600028,'Mylapore - Triplicane','CHENNAI','TAMIL NADU'),(600030,'Egmore - Nungambakkam','CHENNAI','TAMIL NADU'),(600031,'Egmore - Nungambakkam','CHENNAI','TAMIL NADU'),(600032,'Mambalam - Guindy','CHENNAI','TAMIL NADU'),(600033,'Mambalam - Guindy','CHENNAI','TAMIL NADU'),(600034,'Egmore - Nungambakkam','CHENNAI','TAMIL NADU'),(600035,'Mambalam - Guindy','CHENNAI','TAMIL NADU'),(600036,'Mambalam - Guindy','CHENNAI','TAMIL NADU'),(600037,'Ambattur','TIRUVALLUR','TAMIL NADU'),(600038,'Perambur - Purasawakkam','CHENNAI','TAMIL NADU'),(600039,'Fort - Tondiarpet','CHENNAI','TAMIL NADU'),(600040,'Egmore - Nungambakkam','CHENNAI','TAMIL NADU'),(600041,'Mylapore - Triplicane','CHENNAI','TAMIL NADU'),(600042,'Mambalam - Guindy','CHENNAI','TAMIL NADU'),(600043,'Tambaram','KANCHIPURAM','TAMIL NADU'),(600044,'Tambaram','KANCHIPURAM','TAMIL NADU'),(600045,'Tambaram','KANCHIPURAM','TAMIL NADU'),(600046,'Tambaram','KANCHIPURAM','TAMIL NADU'),(600047,'Tambaram','KANCHIPURAM','TAMIL NADU'),(600048,'Chengalpattu','KANCHIPURAM','TAMIL NADU'),(600049,'Ambattur','TIRUVALLUR','TAMIL NADU'),(600050,'Ambattur','TIRUVALLUR','TAMIL NADU'),(600051,'Ponneri','TIRUVALLUR','TAMIL NADU'),(600052,'Ponneri','TIRUVALLUR','TAMIL NADU'),(600053,'Ambattur','TIRUVALLUR','TAMIL NADU'),(600054,'Ambattur','TIRUVALLUR','TAMIL NADU'),(600055,'Ambattur','TIRUVALLUR','TAMIL NADU'),(600056,'Poonamallee','TIRUVALLUR','TAMIL NADU'),(600057,'Ponneri','TIRUVALLUR','TAMIL NADU'),(600058,'Ambattur','TIRUVALLUR','TAMIL NADU'),(600059,'Tambaram','KANCHIPURAM','TAMIL NADU'),(600060,'Ambattur','TIRUVALLUR','TAMIL NADU'),(600061,'Alandur','KANCHIPURAM','TAMIL NADU'),(600062,'Sriperumbudur','KANCHIPURAM','TAMIL NADU'),(600063,'Tambaram','KANCHIPURAM','TAMIL NADU'),(600064,'Tambaram','KANCHIPURAM','TAMIL NADU'),(600066,'Ambattur','TIRUVALLUR','TAMIL NADU'),(600067,'Ponneri','TIRUVALLUR','TAMIL NADU'),(600068,'Gummidipoondi','TIRUVALLUR','TAMIL NADU'),(600069,'Sriperumbudur','KANCHIPURAM','TAMIL NADU'),(600070,'Tambaram','KANCHIPURAM','TAMIL NADU'),(600071,'Poonamallee','TIRUVALLUR','TAMIL NADU'),(600072,'Poonamallee','TIRUVALLUR','TAMIL NADU'),(600073,'Kancheepuram','KANCHIPURAM','TAMIL NADU'),(600074,'Tambaram','KANCHIPURAM','TAMIL NADU'),(600075,'Tambaram','KANCHIPURAM','TAMIL NADU'),(600076,'Ambattur','TIRUVALLUR','TAMIL NADU'),(600077,'Poonamallee','TIRUVALLUR','TAMIL NADU'),(600078,'Mambalam - Guindy','CHENNAI','TAMIL NADU'),(600081,'Fort - Tondiarpet','CHENNAI','TAMIL NADU'),(600082,'Perambur - Purasawakkam','CHENNAI','TAMIL NADU'),(600083,'Mambalam - Guindy','CHENNAI','TAMIL NADU'),(600084,'Perambur - Purasawakkam','CHENNAI','TAMIL NADU'),(600085,'Mylapore - Triplicane','CHENNAI','TAMIL NADU'),(600086,'Mylapore - Triplicane','CHENNAI','TAMIL NADU'),(600087,'Ambattur','TIRUVALLUR','TAMIL NADU'),(600088,'Alandur','KANCHIPURAM','TAMIL NADU'),(600089,'Alandur','KANCHIPURAM','TAMIL NADU'),(600090,'Mylapore - Triplicane','CHENNAI','TAMIL NADU'),(600091,'Sholinganallur','KANCHIPURAM','TAMIL NADU'),(600092,'Mambalam - Guindy','CHENNAI','TAMIL NADU'),(600093,'Mambalam - Guindy','CHENNAI','TAMIL NADU'),(600094,'Egmore - Nungambakkam','CHENNAI','TAMIL NADU'),(600095,'Ambattur','TIRUVALLUR','TAMIL NADU'),(600096,'Sholinganallur','KANCHIPURAM','TAMIL NADU'),(600097,'Sholinganallur','KANCHIPURAM','TAMIL NADU'),(600099,'Ambattur','TIRUVALLUR','TAMIL NADU'),(600100,'Tambaram','KANCHIPURAM','TAMIL NADU'),(600101,'Egmore - Nungambakkam','CHENNAI','TAMIL NADU'),(600102,'Egmore - Nungambakkam','CHENNAI','TAMIL NADU'),(600103,'Ponneri','TIRUVALLUR','TAMIL NADU'),(600104,'Fort - Tondiarpet','CHENNAI','TAMIL NADU'),(600106,'Egmore - Nungambakkam','CHENNAI','TAMIL NADU'),(600107,'Egmore - Nungambakkam','CHENNAI','TAMIL NADU'),(600110,'Ambattur','TIRUVALLUR','TAMIL NADU'),(600113,'Mambalam - Guindy','CHENNAI','TAMIL NADU'),(600115,'Sholinganallur','KANCHIPURAM','TAMIL NADU'),(600116,'Poonamallee','TIRUVALLUR','TAMIL NADU'),(600117,'Tambaram','KANCHIPURAM','TAMIL NADU'),(600118,'Fort - Tondiarpet','CHENNAI','TAMIL NADU'),(600119,'Sholinganallur','KANCHIPURAM','TAMIL NADU'),(600120,'Ambattur','TIRUVALLUR','TAMIL NADU'),(600122,'Sriperumbudur','KANCHIPURAM','TAMIL NADU'),(600123,'Poonamallee','TIRUVALLUR','TAMIL NADU'),(600124,'Poonamallee','TIRUVALLUR','TAMIL NADU'),(600125,'Poonamallee','TIRUVALLUR','TAMIL NADU'),(600126,'Tambaram','KANCHIPURAM','TAMIL NADU'),(600127,'Chengalpattu','KANCHIPURAM','TAMIL NADU'),(600128,'Sriperumbudur','KANCHIPURAM','TAMIL NADU'),(600129,'Tambaram','KANCHIPURAM','TAMIL NADU'),(600130,'Chengalpattu','KANCHIPURAM','TAMIL NADU'),(600132,'Alandur','KANCHIPURAM','TAMIL NADU'),(601101,'Gummidipoondi','TIRUVALLUR','TAMIL NADU'),(601102,'Uthukkottai','TIRUVALLUR','TAMIL NADU'),(601103,'Thiruvallur','TIRUVALLUR','TAMIL NADU'),(601201,'Gummidipoondi','TIRUVALLUR','TAMIL NADU'),(601202,'Gummidipoondi','TIRUVALLUR','TAMIL NADU'),(601203,'Ponneri','TIRUVALLUR','TAMIL NADU'),(601204,'Ponneri','TIRUVALLUR','TAMIL NADU'),(601205,'Ponneri','TIRUVALLUR','TAMIL NADU'),(601206,'Ponneri','TIRUVALLUR','TAMIL NADU'),(601301,'Sriperumbudur','KANCHIPURAM','TAMIL NADU'),(602001,'Thiruvallur','TIRUVALLUR','TAMIL NADU'),(602002,'Thiruvallur','TIRUVALLUR','TAMIL NADU'),(602003,'Thiruvallur','TIRUVALLUR','TAMIL NADU'),(602021,'Thiruvallur','TIRUVALLUR','TAMIL NADU'),(602023,'Uthukkottai','TIRUVALLUR','TAMIL NADU'),(602024,'Thiruvallur','TIRUVALLUR','TAMIL NADU'),(602025,'Thiruvallur','TIRUVALLUR','TAMIL NADU'),(602026,'Uthukkottai','TIRUVALLUR','TAMIL NADU'),(602105,'Sriperumbudur','KANCHIPURAM','TAMIL NADU'),(602106,'Uthukkottai','TIRUVALLUR','TAMIL NADU'),(602108,'Sriperumbudur','KANCHIPURAM','TAMIL NADU'),(602117,'Sriperumbudur','KANCHIPURAM','TAMIL NADU'),(603001,'Chengalpattu','KANCHIPURAM','TAMIL NADU'),(603002,'Chengalpattu','KANCHIPURAM','TAMIL NADU'),(603003,'Tirukalukundram','KANCHIPURAM','TAMIL NADU'),(603004,'Chengalpattu','KANCHIPURAM','TAMIL NADU'),(603101,'Chengalpattu','KANCHIPURAM','TAMIL NADU'),(603102,'Tirukalukundram','KANCHIPURAM','TAMIL NADU'),(603103,'Chengalpattu','KANCHIPURAM','TAMIL NADU'),(603104,'Chengalpattu','KANCHIPURAM','TAMIL NADU'),(603105,'Chengalpattu','KANCHIPURAM','TAMIL NADU'),(603106,'Uthiramerur','KANCHIPURAM','TAMIL NADU'),(603107,'Uthiramerur','KANCHIPURAM','TAMIL NADU'),(603108,'Chengalpattu','KANCHIPURAM','TAMIL NADU'),(603109,'Tirukalukundram','KANCHIPURAM','TAMIL NADU'),(603110,'Tirukalukundram','KANCHIPURAM','TAMIL NADU'),(603111,'Chengalpattu','KANCHIPURAM','TAMIL NADU'),(603112,'Chengalpattu','KANCHIPURAM','TAMIL NADU'),(603127,'Tirukalukundram','KANCHIPURAM','TAMIL NADU'),(603201,'Maduranthakam','KANCHIPURAM','TAMIL NADU'),(603202,'Sriperumbudur','KANCHIPURAM','TAMIL NADU'),(603203,'Sriperumbudur','KANCHIPURAM','TAMIL NADU'),(603204,'Chengalpattu','KANCHIPURAM','TAMIL NADU'),(603209,'Chengalpattu','KANCHIPURAM','TAMIL NADU'),(603210,'Chengalpattu','KANCHIPURAM','TAMIL NADU'),(603211,'Chengalpattu','KANCHIPURAM','TAMIL NADU'),(603301,'Cheyyur','KANCHIPURAM','TAMIL NADU'),(603302,'Maduranthakam','KANCHIPURAM','TAMIL NADU'),(603303,'Maduranthakam','KANCHIPURAM','TAMIL NADU'),(603304,'Maduranthakam','KANCHIPURAM','TAMIL NADU'),(603305,'Cheyyur','KANCHIPURAM','TAMIL NADU'),(603306,'Maduranthakam','KANCHIPURAM','TAMIL NADU'),(603307,'Maduranthakam','KANCHIPURAM','TAMIL NADU'),(603308,'Maduranthakam','KANCHIPURAM','TAMIL NADU'),(603309,'Cheyyur','KANCHIPURAM','TAMIL NADU'),(603310,'Maduranthakam','KANCHIPURAM','TAMIL NADU'),(603311,'Maduranthakam','KANCHIPURAM','TAMIL NADU'),(603312,'Cheyyur','KANCHIPURAM','TAMIL NADU'),(603313,'Maduranthakam','KANCHIPURAM','TAMIL NADU'),(603314,'Maduranthakam','KANCHIPURAM','TAMIL NADU'),(603319,'Maduranthakam','KANCHIPURAM','TAMIL NADU'),(603401,'Cheyyur','KANCHIPURAM','TAMIL NADU'),(603402,'Uthiramerur','KANCHIPURAM','TAMIL NADU'),(603403,'Uthiramerur','KANCHIPURAM','TAMIL NADU'),(603405,'Tirukalukundram','KANCHIPURAM','TAMIL NADU'),(603406,'Kancheepuram','KANCHIPURAM','TAMIL NADU'),(604001,'Tindivanam','VILLUPURAM','TAMIL NADU'),(604101,'Tindivanam','VILLUPURAM','TAMIL NADU'),(604102,'Vanur','VILLUPURAM','TAMIL NADU'),(604151,'Gingee','VILLUPURAM','TAMIL NADU'),(604152,'Gingee','VILLUPURAM','TAMIL NADU'),(604153,'Gingee','VILLUPURAM','TAMIL NADU'),(604154,'Vanur','VILLUPURAM','TAMIL NADU'),(604201,'Gingee','VILLUPURAM','TAMIL NADU'),(604202,'Tindivanam','VILLUPURAM','TAMIL NADU'),(604203,'Gingee','VILLUPURAM','TAMIL NADU'),(604204,'Tindivanam','VILLUPURAM','TAMIL NADU'),(604205,'Gingee','VILLUPURAM','TAMIL NADU'),(604206,'Gingee','VILLUPURAM','TAMIL NADU'),(604207,'Tindivanam','VILLUPURAM','TAMIL NADU'),(604208,'Gingee','VILLUPURAM','TAMIL NADU'),(604210,'Gingee','VILLUPURAM','TAMIL NADU'),(604301,'Tindivanam','VILLUPURAM','TAMIL NADU'),(604302,'Tindivanam','VILLUPURAM','TAMIL NADU'),(604303,'Tindivanam','VILLUPURAM','TAMIL NADU'),(604304,'Tindivanam','VILLUPURAM','TAMIL NADU'),(604305,'Tindivanam','VILLUPURAM','TAMIL NADU'),(604306,'Tindivanam','VILLUPURAM','TAMIL NADU'),(604307,'Tindivanam','VILLUPURAM','TAMIL NADU'),(604401,'Cheyyar','TIRUVANNAMALAI','TAMIL NADU'),(604402,'Tiruvannamalai','TIRUVANNAMALAI','TAMIL NADU'),(604403,'Vandavasi','TIRUVANNAMALAI','TAMIL NADU'),(604404,'Vandavasi','TIRUVANNAMALAI','TAMIL NADU'),(604405,'Vandavasi','TIRUVANNAMALAI','TAMIL NADU'),(604406,'Vandavasi','TIRUVANNAMALAI','TAMIL NADU'),(604407,'Cheyyar','TIRUVANNAMALAI','TAMIL NADU'),(604408,'Vandavasi','TIRUVANNAMALAI','TAMIL NADU'),(604409,'Cheyyar','TIRUVANNAMALAI','TAMIL NADU'),(604410,'Cheyyar','TIRUVANNAMALAI','TAMIL NADU'),(604501,'Vandavasi','TIRUVANNAMALAI','TAMIL NADU'),(604502,'Vandavasi','TIRUVANNAMALAI','TAMIL NADU'),(604503,'Vandavasi','TIRUVANNAMALAI','TAMIL NADU'),(604504,'Vandavasi','TIRUVANNAMALAI','TAMIL NADU'),(604505,'Cheyyar','TIRUVANNAMALAI','TAMIL NADU'),(604601,'Tiruvannamalai','TIRUVANNAMALAI','TAMIL NADU'),(605001,'Mannadipet Commune Panchayat','PONDICHERRY','PONDICHERRY'),(605002,'Nettapakkam Commune Panchayat','PONDICHERRY','PONDICHERRY'),(605003,'Bahour Commune Panchayat','PONDICHERRY','PONDICHERRY'),(605004,'Ariankuppam Commune Panchayat','PONDICHERRY','PONDICHERRY'),(605005,'Ariankuppam Commune Panchayat','PONDICHERRY','PONDICHERRY'),(605006,'Bahour Commune Panchayat','PONDICHERRY','PONDICHERRY'),(605007,'Tindivanam','VILLUPURAM','TAMIL NADU'),(605008,'Nettapakkam Commune Panchayat','PONDICHERRY','PONDICHERRY'),(605009,'Nettapakkam Commune Panchayat','PONDICHERRY','PONDICHERRY'),(605010,'Ariankuppam Commune Panchayat','PONDICHERRY','PONDICHERRY'),(605011,'Bahour Commune Panchayat','PONDICHERRY','PONDICHERRY'),(605013,'Bahour Commune Panchayat','PONDICHERRY','PONDICHERRY'),(605014,'Ariankuppam Commune Panchayat','PONDICHERRY','PONDICHERRY'),(605101,'Vanur','VILLUPURAM','TAMIL NADU'),(605102,'Viluppuram','VILLUPURAM','TAMIL NADU'),(605103,'Viluppuram','VILLUPURAM','TAMIL NADU'),(605104,'Vanur','VILLUPURAM','TAMIL NADU'),(605105,'Viluppuram','VILLUPURAM','TAMIL NADU'),(605106,'Cuddalore','CUDDALORE','TAMIL NADU'),(605107,'Viluppuram','VILLUPURAM','TAMIL NADU'),(605108,'Viluppuram','VILLUPURAM','TAMIL NADU'),(605109,'Vanur','VILLUPURAM','TAMIL NADU'),(605110,'Cuddalore','CUDDALORE','TAMIL NADU'),(605111,'Vanur','VILLUPURAM','TAMIL NADU'),(605201,'Viluppuram','VILLUPURAM','TAMIL NADU'),(605202,'Viluppuram','VILLUPURAM','TAMIL NADU'),(605203,'Viluppuram','VILLUPURAM','TAMIL NADU'),(605301,'Viluppuram','VILLUPURAM','TAMIL NADU'),(605302,'Viluppuram','VILLUPURAM','TAMIL NADU'),(605401,'Viluppuram','VILLUPURAM','TAMIL NADU'),(605402,'Viluppuram','VILLUPURAM','TAMIL NADU'),(605501,'Tindivanam','VILLUPURAM','TAMIL NADU'),(605502,'Viluppuram','VILLUPURAM','TAMIL NADU'),(605601,'Viluppuram','VILLUPURAM','TAMIL NADU'),(605602,'Viluppuram','VILLUPURAM','TAMIL NADU'),(605651,'Gingee','VILLUPURAM','TAMIL NADU'),(605652,'Tindivanam','VILLUPURAM','TAMIL NADU'),(605701,'Tirukkoyilur','VILLUPURAM','TAMIL NADU'),(605702,'Sankarapuram','VILLUPURAM','TAMIL NADU'),(605751,'Tirukkoyilur','VILLUPURAM','TAMIL NADU'),(605752,'Tirukkoyilur','VILLUPURAM','TAMIL NADU'),(605754,'Tirukkoyilur','VILLUPURAM','TAMIL NADU'),(605755,'Tirukkoyilur','VILLUPURAM','TAMIL NADU'),(605756,'Tirukkoyilur','VILLUPURAM','TAMIL NADU'),(605757,'Tirukkoyilur','VILLUPURAM','TAMIL NADU'),(605758,'Tirukkoyilur','VILLUPURAM','TAMIL NADU'),(605759,'Tirukkoyilur','VILLUPURAM','TAMIL NADU'),(605766,'Tirukkoyilur','VILLUPURAM','TAMIL NADU'),(605801,'Sankarapuram','VILLUPURAM','TAMIL NADU'),(605802,'Sankarapuram','VILLUPURAM','TAMIL NADU'),(605803,'Tirukkoyilur','VILLUPURAM','TAMIL NADU'),(606001,'Tittakudi','CUDDALORE','TAMIL NADU'),(606003,'Virudhachalam','CUDDALORE','TAMIL NADU'),(606102,'Ulundurpettai','VILLUPURAM','TAMIL NADU'),(606103,'Virudhachalam','CUDDALORE','TAMIL NADU'),(606104,'Virudhachalam','CUDDALORE','TAMIL NADU'),(606105,'Tittakudi','CUDDALORE','TAMIL NADU'),(606106,'Tittakudi','CUDDALORE','TAMIL NADU'),(606107,'Ulundurpettai','VILLUPURAM','TAMIL NADU'),(606108,'Tittakudi','CUDDALORE','TAMIL NADU'),(606109,'Tittakudi','CUDDALORE','TAMIL NADU'),(606110,'Virudhachalam','CUDDALORE','TAMIL NADU'),(606111,'Tittakudi','CUDDALORE','TAMIL NADU'),(606115,'Virudhachalam','CUDDALORE','TAMIL NADU'),(606201,'Kallakkurichi','VILLUPURAM','TAMIL NADU'),(606202,'Kallakkurichi','VILLUPURAM','TAMIL NADU'),(606203,'Virudhachalam','CUDDALORE','TAMIL NADU'),(606204,'Kallakkurichi','VILLUPURAM','TAMIL NADU'),(606205,'Ulundurpettai','VILLUPURAM','TAMIL NADU'),(606206,'Sankarapuram','VILLUPURAM','TAMIL NADU'),(606207,'Sankarapuram','VILLUPURAM','TAMIL NADU'),(606208,'Sankarapuram','VILLUPURAM','TAMIL NADU'),(606209,'Sankarapuram','VILLUPURAM','TAMIL NADU'),(606213,'Sankarapuram','VILLUPURAM','TAMIL NADU'),(606301,'Kallakkurichi','VILLUPURAM','TAMIL NADU'),(606302,'Tittakudi','CUDDALORE','TAMIL NADU'),(606303,'Tittakudi','CUDDALORE','TAMIL NADU'),(606304,'Virudhachalam','CUDDALORE','TAMIL NADU'),(606305,'Kallakkurichi','VILLUPURAM','TAMIL NADU'),(606401,'Sankarapuram','VILLUPURAM','TAMIL NADU'),(606402,'Sankarapuram','VILLUPURAM','TAMIL NADU'),(606601,'Tiruvannamalai','TIRUVANNAMALAI','TAMIL NADU'),(606603,'Tiruvannamalai','TIRUVANNAMALAI','TAMIL NADU'),(606604,'Tiruvannamalai','TIRUVANNAMALAI','TAMIL NADU'),(606611,'Tiruvannamalai','TIRUVANNAMALAI','TAMIL NADU'),(606701,'Chengam','TIRUVANNAMALAI','TAMIL NADU'),(606702,'Chengam','TIRUVANNAMALAI','TAMIL NADU'),(606703,'Chengam','TIRUVANNAMALAI','TAMIL NADU'),(606704,'Chengam','TIRUVANNAMALAI','TAMIL NADU'),(606705,'Chengam','TIRUVANNAMALAI','TAMIL NADU'),(606706,'Chengam','TIRUVANNAMALAI','TAMIL NADU'),(606707,'Chengam','TIRUVANNAMALAI','TAMIL NADU'),(606708,'Chengam','TIRUVANNAMALAI','TAMIL NADU'),(606709,'Chengam','TIRUVANNAMALAI','TAMIL NADU'),(606710,'Chengam','TIRUVANNAMALAI','TAMIL NADU'),(606751,'Polur','TIRUVANNAMALAI','TAMIL NADU'),(606752,'Tiruvannamalai','TIRUVANNAMALAI','TAMIL NADU'),(606753,'Chengam','TIRUVANNAMALAI','TAMIL NADU'),(606754,'Tiruvannamalai','TIRUVANNAMALAI','TAMIL NADU'),(606755,'Tiruvannamalai','TIRUVANNAMALAI','TAMIL NADU'),(606801,'Tiruvannamalai','TIRUVANNAMALAI','TAMIL NADU'),(606802,'Tiruvannamalai','TIRUVANNAMALAI','TAMIL NADU'),(606803,'Polur','TIRUVANNAMALAI','TAMIL NADU'),(606804,'Tiruvannamalai','TIRUVANNAMALAI','TAMIL NADU'),(606805,'Polur','TIRUVANNAMALAI','TAMIL NADU'),(606806,'Tiruvannamalai','TIRUVANNAMALAI','TAMIL NADU'),(606807,'Vandavasi','TIRUVANNAMALAI','TAMIL NADU'),(606808,'Tiruvannamalai','TIRUVANNAMALAI','TAMIL NADU'),(606811,'Tiruvannamalai','TIRUVANNAMALAI','TAMIL NADU'),(606901,'Polur','TIRUVANNAMALAI','TAMIL NADU'),(606902,'Polur','TIRUVANNAMALAI','TAMIL NADU'),(606903,'Polur','TIRUVANNAMALAI','TAMIL NADU'),(606904,'Polur','TIRUVANNAMALAI','TAMIL NADU'),(606905,'Polur','TIRUVANNAMALAI','TAMIL NADU'),(606906,'Polur','TIRUVANNAMALAI','TAMIL NADU'),(606907,'Polur','TIRUVANNAMALAI','TAMIL NADU'),(606908,'Polur','TIRUVANNAMALAI','TAMIL NADU'),(607001,'Cuddalore','CUDDALORE','TAMIL NADU'),(607002,'Cuddalore','CUDDALORE','TAMIL NADU'),(607003,'Cuddalore','CUDDALORE','TAMIL NADU'),(607004,'Cuddalore','CUDDALORE','TAMIL NADU'),(607005,'Cuddalore','CUDDALORE','TAMIL NADU'),(607006,'Cuddalore','CUDDALORE','TAMIL NADU'),(607101,'Ulundurpettai','VILLUPURAM','TAMIL NADU'),(607102,'Panruti','CUDDALORE','TAMIL NADU'),(607103,'Panruti','CUDDALORE','TAMIL NADU'),(607104,'Panruti','CUDDALORE','TAMIL NADU'),(607105,'Panruti','CUDDALORE','TAMIL NADU'),(607106,'Panruti','CUDDALORE','TAMIL NADU'),(607107,'Ulundurpettai','VILLUPURAM','TAMIL NADU'),(607108,'Panruti','CUDDALORE','TAMIL NADU'),(607109,'Cuddalore','CUDDALORE','TAMIL NADU'),(607112,'Panruti','CUDDALORE','TAMIL NADU'),(607201,'Ulundurpettai','VILLUPURAM','TAMIL NADU'),(607202,'Ulundurpettai','VILLUPURAM','TAMIL NADU'),(607203,'Tirukkoyilur','VILLUPURAM','TAMIL NADU'),(607204,'Ulundurpettai','VILLUPURAM','TAMIL NADU'),(607205,'Panruti','CUDDALORE','TAMIL NADU'),(607209,'Ulundurpettai','VILLUPURAM','TAMIL NADU'),(607301,'Kurinjipadi','CUDDALORE','TAMIL NADU'),(607302,'Kurinjipadi','CUDDALORE','TAMIL NADU'),(607303,'Kurinjipadi','CUDDALORE','TAMIL NADU'),(607308,'Kurinjipadi','CUDDALORE','TAMIL NADU'),(607401,'Cuddalore','CUDDALORE','TAMIL NADU'),(607402,'Bahour Commune Panchayat','PONDICHERRY','PONDICHERRY'),(607403,'Bahour Commune Panchayat','PONDICHERRY','PONDICHERRY'),(607801,'Virudhachalam','CUDDALORE','TAMIL NADU'),(607802,'Virudhachalam','CUDDALORE','TAMIL NADU'),(607803,'Virudhachalam','CUDDALORE','TAMIL NADU'),(607804,'Virudhachalam','CUDDALORE','TAMIL NADU'),(607805,'Virudhachalam','CUDDALORE','TAMIL NADU'),(607807,'Virudhachalam','CUDDALORE','TAMIL NADU'),(608001,'Chidambaram','CUDDALORE','TAMIL NADU'),(608002,'Chidambaram','CUDDALORE','TAMIL NADU'),(608102,'Chidambaram','CUDDALORE','TAMIL NADU'),(608201,'Chidambaram','CUDDALORE','TAMIL NADU'),(608301,'Kattumannarkoil','CUDDALORE','TAMIL NADU'),(608302,'Chidambaram','CUDDALORE','TAMIL NADU'),(608303,'Kattumannarkoil','CUDDALORE','TAMIL NADU'),(608304,'Kattumannarkoil','CUDDALORE','TAMIL NADU'),(608305,'Kattumannarkoil','CUDDALORE','TAMIL NADU'),(608306,'Kattumannarkoil','CUDDALORE','TAMIL NADU'),(608401,'Kattumannarkoil','CUDDALORE','TAMIL NADU'),(608501,'Chidambaram','CUDDALORE','TAMIL NADU'),(608502,'Chidambaram','CUDDALORE','TAMIL NADU'),(608601,'Chidambaram','CUDDALORE','TAMIL NADU'),(608602,'Chidambaram','CUDDALORE','TAMIL NADU'),(608701,'Kattumannarkoil','CUDDALORE','TAMIL NADU'),(608702,'Chidambaram','CUDDALORE','TAMIL NADU'),(608703,'Virudhachalam','CUDDALORE','TAMIL NADU'),(608704,'Chidambaram','CUDDALORE','TAMIL NADU'),(608801,'Cuddalore','CUDDALORE','TAMIL NADU'),(608901,'Udayarpalayam','ARIYALUR','TAMIL NADU'),(609001,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609003,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609101,'Sirkali','NAGAPATTINAM','TAMIL NADU'),(609102,'Sirkali','NAGAPATTINAM','TAMIL NADU'),(609103,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609104,'Sirkali','NAGAPATTINAM','TAMIL NADU'),(609105,'Sirkali','NAGAPATTINAM','TAMIL NADU'),(609106,'Sirkali','NAGAPATTINAM','TAMIL NADU'),(609107,'Tharangambadi','NAGAPATTINAM','TAMIL NADU'),(609108,'Sirkali','NAGAPATTINAM','TAMIL NADU'),(609109,'Sirkali','NAGAPATTINAM','TAMIL NADU'),(609110,'Sirkali','NAGAPATTINAM','TAMIL NADU'),(609111,'Sirkali','NAGAPATTINAM','TAMIL NADU'),(609112,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609113,'Sirkali','NAGAPATTINAM','TAMIL NADU'),(609114,'Sirkali','NAGAPATTINAM','TAMIL NADU'),(609115,'Sirkali','NAGAPATTINAM','TAMIL NADU'),(609116,'Sirkali','NAGAPATTINAM','TAMIL NADU'),(609117,'Sirkali','NAGAPATTINAM','TAMIL NADU'),(609118,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609201,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609202,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609203,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609204,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609205,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609301,'Tharangambadi','NAGAPATTINAM','TAMIL NADU'),(609302,'Tharangambadi','NAGAPATTINAM','TAMIL NADU'),(609303,'Tharangambadi','NAGAPATTINAM','TAMIL NADU'),(609304,'Tharangambadi','NAGAPATTINAM','TAMIL NADU'),(609305,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609306,'Tharangambadi','NAGAPATTINAM','TAMIL NADU'),(609307,'Tharangambadi','NAGAPATTINAM','TAMIL NADU'),(609308,'Tharangambadi','NAGAPATTINAM','TAMIL NADU'),(609309,'Tharangambadi','NAGAPATTINAM','TAMIL NADU'),(609310,'Tharangambadi','NAGAPATTINAM','TAMIL NADU'),(609311,'Tharangambadi','NAGAPATTINAM','TAMIL NADU'),(609312,'Tharangambadi','NAGAPATTINAM','TAMIL NADU'),(609313,'Tharangambadi','NAGAPATTINAM','TAMIL NADU'),(609314,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609401,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609402,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609403,'Nannilam','TIRUVARUR','TAMIL NADU'),(609404,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609405,'Kodavasal','TIRUVARUR','TAMIL NADU'),(609501,'Kodavasal','TIRUVARUR','TAMIL NADU'),(609502,'Nannilam','TIRUVARUR','TAMIL NADU'),(609503,'Nannilam','TIRUVARUR','TAMIL NADU'),(609504,'Nagapattinam','NAGAPATTINAM','TAMIL NADU'),(609601,'Thirunallar Commune Panchayat','KARAIKAL','PONDICHERRY'),(609602,'Kottucherry Commune Panchayat','KARAIKAL','PONDICHERRY'),(609603,'Nedungadu Commune Panchayat','KARAIKAL','PONDICHERRY'),(609604,'Nagapattinam','NAGAPATTINAM','TAMIL NADU'),(609605,'Kottucherry Commune Panchayat','KARAIKAL','PONDICHERRY'),(609606,'Thirumalairayan Pattinam Commune Panchayat','KARAIKAL','PONDICHERRY'),(609607,'Thirunallar Commune Panchayat','KARAIKAL','PONDICHERRY'),(609608,'Nannilam','TIRUVARUR','TAMIL NADU'),(609609,'Kottucherry Commune Panchayat','KARAIKAL','PONDICHERRY'),(609701,'Nagapattinam','NAGAPATTINAM','TAMIL NADU'),(609702,'Nagapattinam','NAGAPATTINAM','TAMIL NADU'),(609703,'Nagapattinam','NAGAPATTINAM','TAMIL NADU'),(609704,'Nagapattinam','NAGAPATTINAM','TAMIL NADU'),(609801,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609802,'Thiruvidaimarudur','THANJAVUR','TAMIL NADU'),(609803,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609804,'Thiruvidaimarudur','THANJAVUR','TAMIL NADU'),(609805,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609806,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609807,'Thiruvidaimarudur','THANJAVUR','TAMIL NADU'),(609808,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609810,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(609811,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(610001,'Thiruvarur','TIRUVARUR','TAMIL NADU'),(610003,'Thiruvarur','TIRUVARUR','TAMIL NADU'),(610004,'Thiruvarur','TIRUVARUR','TAMIL NADU'),(610101,'Nagapattinam','NAGAPATTINAM','TAMIL NADU'),(610102,'Thiruthuraipoondi','TIRUVARUR','TAMIL NADU'),(610103,'Thiruvarur','TIRUVARUR','TAMIL NADU'),(610104,'Kodavasal','TIRUVARUR','TAMIL NADU'),(610105,'Kodavasal','TIRUVARUR','TAMIL NADU'),(610106,'Kilvelur','NAGAPATTINAM','TAMIL NADU'),(610107,'Kodavasal','TIRUVARUR','TAMIL NADU'),(610109,'Thiruvarur','TIRUVARUR','TAMIL NADU'),(610201,'Thirukkuvalai','NAGAPATTINAM','TAMIL NADU'),(610202,'Thiruvarur','TIRUVARUR','TAMIL NADU'),(610203,'Thiruvarur','TIRUVARUR','TAMIL NADU'),(610204,'Thirukkuvalai','NAGAPATTINAM','TAMIL NADU'),(610205,'Thiruvarur','TIRUVARUR','TAMIL NADU'),(610206,'Needamangalam','TIRUVARUR','TAMIL NADU'),(610207,'Thirukkuvalai','NAGAPATTINAM','TAMIL NADU'),(611001,'Nagapattinam','NAGAPATTINAM','TAMIL NADU'),(611002,'Nagapattinam','NAGAPATTINAM','TAMIL NADU'),(611003,'Nagapattinam','NAGAPATTINAM','TAMIL NADU'),(611101,'Thiruvarur','TIRUVARUR','TAMIL NADU'),(611102,'Kilvelur','NAGAPATTINAM','TAMIL NADU'),(611103,'Kilvelur','NAGAPATTINAM','TAMIL NADU'),(611104,'Kilvelur','NAGAPATTINAM','TAMIL NADU'),(611105,'Kilvelur','NAGAPATTINAM','TAMIL NADU'),(611106,'Nagapattinam','NAGAPATTINAM','TAMIL NADU'),(611108,'Nagapattinam','NAGAPATTINAM','TAMIL NADU'),(611109,'Kilvelur','NAGAPATTINAM','TAMIL NADU'),(611110,'Kilvelur','NAGAPATTINAM','TAMIL NADU'),(611111,'Kilvelur','NAGAPATTINAM','TAMIL NADU'),(611112,'Kilvelur','NAGAPATTINAM','TAMIL NADU'),(612001,'Kumbakonam','THANJAVUR','TAMIL NADU'),(612002,'Kumbakonam','THANJAVUR','TAMIL NADU'),(612101,'Thiruvidaimarudur','THANJAVUR','TAMIL NADU'),(612102,'Thiruvidaimarudur','THANJAVUR','TAMIL NADU'),(612103,'Kumbakonam','THANJAVUR','TAMIL NADU'),(612104,'Thiruvidaimarudur','THANJAVUR','TAMIL NADU'),(612105,'Thiruvidaimarudur','THANJAVUR','TAMIL NADU'),(612106,'Thiruvidaimarudur','THANJAVUR','TAMIL NADU'),(612201,'Mayiladuthurai','NAGAPATTINAM','TAMIL NADU'),(612202,'Kumbakonam','THANJAVUR','TAMIL NADU'),(612203,'Kodavasal','TIRUVARUR','TAMIL NADU'),(612204,'Kumbakonam','THANJAVUR','TAMIL NADU'),(612301,'Papanasam','THANJAVUR','TAMIL NADU'),(612302,'Papanasam','THANJAVUR','TAMIL NADU'),(612303,'Kumbakonam','THANJAVUR','TAMIL NADU'),(612401,'Kumbakonam','THANJAVUR','TAMIL NADU'),(612402,'Kumbakonam','THANJAVUR','TAMIL NADU'),(612501,'Kumbakonam','THANJAVUR','TAMIL NADU'),(612502,'Thiruvidaimarudur','THANJAVUR','TAMIL NADU'),(612503,'Kumbakonam','THANJAVUR','TAMIL NADU'),(612504,'Thiruvidaimarudur','THANJAVUR','TAMIL NADU'),(612601,'Kodavasal','TIRUVARUR','TAMIL NADU'),(612602,'Kumbakonam','THANJAVUR','TAMIL NADU'),(612603,'Kodavasal','TIRUVARUR','TAMIL NADU'),(612604,'Kodavasal','TIRUVARUR','TAMIL NADU'),(612605,'Kumbakonam','THANJAVUR','TAMIL NADU'),(612610,'Kodavasal','TIRUVARUR','TAMIL NADU'),(612701,'Valangaiman','TIRUVARUR','TAMIL NADU'),(612702,'Kumbakonam','THANJAVUR','TAMIL NADU'),(612703,'Kumbakonam','THANJAVUR','TAMIL NADU'),(612801,'Valangaiman','TIRUVARUR','TAMIL NADU'),(612802,'Valangaiman','TIRUVARUR','TAMIL NADU'),(612803,'Needamangalam','TIRUVARUR','TAMIL NADU'),(612804,'Valangaiman','TIRUVARUR','TAMIL NADU'),(612901,'Udayarpalayam','ARIYALUR','TAMIL NADU'),(612902,'Udayarpalayam','ARIYALUR','TAMIL NADU'),(612903,'Udayarpalayam','ARIYALUR','TAMIL NADU'),(612904,'Udayarpalayam','ARIYALUR','TAMIL NADU'),(612905,'Udayarpalayam','ARIYALUR','TAMIL NADU'),(613001,'Thanjavur','THANJAVUR','TAMIL NADU'),(613002,'Thanjavur','THANJAVUR','TAMIL NADU'),(613003,'Thanjavur','THANJAVUR','TAMIL NADU'),(613004,'Thanjavur','THANJAVUR','TAMIL NADU'),(613005,'Thanjavur','THANJAVUR','TAMIL NADU'),(613006,'Thanjavur','THANJAVUR','TAMIL NADU'),(613007,'Thanjavur','THANJAVUR','TAMIL NADU'),(613008,'Thanjavur','THANJAVUR','TAMIL NADU'),(613009,'Thanjavur','THANJAVUR','TAMIL NADU'),(613010,'Thanjavur','THANJAVUR','TAMIL NADU'),(613101,'Thiruvaiyaru','THANJAVUR','TAMIL NADU'),(613102,'Thiruvaiyaru','THANJAVUR','TAMIL NADU'),(613103,'Thiruvaiyaru','THANJAVUR','TAMIL NADU'),(613104,'Thiruvaiyaru','THANJAVUR','TAMIL NADU'),(613105,'Thiruvaiyaru','THANJAVUR','TAMIL NADU'),(613201,'Thiruvaiyaru','THANJAVUR','TAMIL NADU'),(613202,'Thanjavur','THANJAVUR','TAMIL NADU'),(613203,'Thiruvaiyaru','THANJAVUR','TAMIL NADU'),(613204,'Thiruvaiyaru','THANJAVUR','TAMIL NADU'),(613205,'Thiruvaiyaru','THANJAVUR','TAMIL NADU'),(613301,'Gandarvakkottai','PUDUKKOTTAI','TAMIL NADU'),(613303,'Gandarvakkottai','PUDUKKOTTAI','TAMIL NADU'),(613401,'Thanjavur','THANJAVUR','TAMIL NADU'),(613402,'Thanjavur','THANJAVUR','TAMIL NADU'),(613403,'Thanjavur','THANJAVUR','TAMIL NADU'),(613501,'Thanjavur','THANJAVUR','TAMIL NADU'),(613502,'Papanasam','THANJAVUR','TAMIL NADU'),(613503,'Thanjavur','THANJAVUR','TAMIL NADU'),(613504,'Papanasam','THANJAVUR','TAMIL NADU'),(613601,'Thanjavur','THANJAVUR','TAMIL NADU'),(613602,'Thiruvaiyaru','THANJAVUR','TAMIL NADU'),(613701,'Kodavasal','TIRUVARUR','TAMIL NADU'),(613702,'Kodavasal','TIRUVARUR','TAMIL NADU'),(613703,'Needamangalam','TIRUVARUR','TAMIL NADU'),(613704,'Needamangalam','TIRUVARUR','TAMIL NADU'),(613705,'Kodavasal','TIRUVARUR','TAMIL NADU'),(614001,'Mannargudi','TIRUVARUR','TAMIL NADU'),(614013,'Mannargudi','TIRUVARUR','TAMIL NADU'),(614014,'Mannargudi','TIRUVARUR','TAMIL NADU'),(614015,'Mannargudi','TIRUVARUR','TAMIL NADU'),(614016,'Mannargudi','TIRUVARUR','TAMIL NADU'),(614017,'Mannargudi','TIRUVARUR','TAMIL NADU'),(614018,'Mannargudi','TIRUVARUR','TAMIL NADU'),(614019,'Orathanadu','THANJAVUR','TAMIL NADU'),(614020,'Mannargudi','TIRUVARUR','TAMIL NADU'),(614101,'Needamangalam','TIRUVARUR','TAMIL NADU'),(614102,'Needamangalam','TIRUVARUR','TAMIL NADU'),(614103,'Needamangalam','TIRUVARUR','TAMIL NADU'),(614201,'Kumbakonam','THANJAVUR','TAMIL NADU'),(614202,'Papanasam','THANJAVUR','TAMIL NADU'),(614203,'Papanasam','THANJAVUR','TAMIL NADU'),(614204,'Papanasam','THANJAVUR','TAMIL NADU'),(614205,'Valangaiman','TIRUVARUR','TAMIL NADU'),(614206,'Kumbakonam','THANJAVUR','TAMIL NADU'),(614207,'Papanasam','THANJAVUR','TAMIL NADU'),(614208,'Valangaiman','TIRUVARUR','TAMIL NADU'),(614210,'Papanasam','THANJAVUR','TAMIL NADU'),(614211,'Papanasam','THANJAVUR','TAMIL NADU'),(614301,'Papanasam','THANJAVUR','TAMIL NADU'),(614302,'Papanasam','THANJAVUR','TAMIL NADU'),(614303,'Papanasam','THANJAVUR','TAMIL NADU'),(614401,'Papanasam','THANJAVUR','TAMIL NADU'),(614402,'Papanasam','THANJAVUR','TAMIL NADU'),(614403,'Needamangalam','TIRUVARUR','TAMIL NADU'),(614404,'Valangaiman','TIRUVARUR','TAMIL NADU'),(614601,'Pattukkottai','THANJAVUR','TAMIL NADU'),(614602,'Pattukkottai','THANJAVUR','TAMIL NADU'),(614612,'Peravurani','THANJAVUR','TAMIL NADU'),(614613,'Pattukkottai','THANJAVUR','TAMIL NADU'),(614614,'Orathanadu','THANJAVUR','TAMIL NADU'),(614615,'Orathanadu','THANJAVUR','TAMIL NADU'),(614616,'Aranthangi','PUDUKKOTTAI','TAMIL NADU'),(614617,'Manamelkudi','PUDUKKOTTAI','TAMIL NADU'),(614618,'Avudayarkoil','PUDUKKOTTAI','TAMIL NADU'),(614619,'Manamelkudi','PUDUKKOTTAI','TAMIL NADU'),(614620,'Manamelkudi','PUDUKKOTTAI','TAMIL NADU'),(614621,'Manamelkudi','PUDUKKOTTAI','TAMIL NADU'),(614622,'Alangudi','PUDUKKOTTAI','TAMIL NADU'),(614623,'Peravurani','THANJAVUR','TAMIL NADU'),(614624,'Aranthangi','PUDUKKOTTAI','TAMIL NADU'),(614625,'Orathanadu','THANJAVUR','TAMIL NADU'),(614626,'Orathanadu','THANJAVUR','TAMIL NADU'),(614628,'Pattukkottai','THANJAVUR','TAMIL NADU'),(614629,'Avudayarkoil','PUDUKKOTTAI','TAMIL NADU'),(614630,'Aranthangi','PUDUKKOTTAI','TAMIL NADU'),(614701,'Pattukkottai','THANJAVUR','TAMIL NADU'),(614702,'Mannargudi','TIRUVARUR','TAMIL NADU'),(614703,'Thiruthuraipoondi','TIRUVARUR','TAMIL NADU'),(614704,'Pattukkottai','THANJAVUR','TAMIL NADU'),(614705,'Needamangalam','TIRUVARUR','TAMIL NADU'),(614706,'Thiruthuraipoondi','TIRUVARUR','TAMIL NADU'),(614707,'Vedaranyam','NAGAPATTINAM','TAMIL NADU'),(614708,'Mannargudi','TIRUVARUR','TAMIL NADU'),(614710,'Thiruthuraipoondi','TIRUVARUR','TAMIL NADU'),(614711,'Thiruthuraipoondi','TIRUVARUR','TAMIL NADU'),(614712,'Vedaranyam','NAGAPATTINAM','TAMIL NADU'),(614713,'Thiruthuraipoondi','TIRUVARUR','TAMIL NADU'),(614714,'Vedaranyam','NAGAPATTINAM','TAMIL NADU'),(614715,'Thiruthuraipoondi','TIRUVARUR','TAMIL NADU'),(614716,'Vedaranyam','NAGAPATTINAM','TAMIL NADU'),(614717,'Mannargudi','TIRUVARUR','TAMIL NADU'),(614723,'Pattukkottai','THANJAVUR','TAMIL NADU'),(614738,'Thiruthuraipoondi','TIRUVARUR','TAMIL NADU'),(614801,'Aranthangi','PUDUKKOTTAI','TAMIL NADU'),(614802,'Peravurani','THANJAVUR','TAMIL NADU'),(614803,'Peravurani','THANJAVUR','TAMIL NADU'),(614804,'Peravurani','THANJAVUR','TAMIL NADU'),(614805,'Aranthangi','PUDUKKOTTAI','TAMIL NADU'),(614806,'Vedaranyam','NAGAPATTINAM','TAMIL NADU'),(614807,'Vedaranyam','NAGAPATTINAM','TAMIL NADU'),(614808,'Vedaranyam','NAGAPATTINAM','TAMIL NADU'),(614809,'Vedaranyam','NAGAPATTINAM','TAMIL NADU'),(614810,'Vedaranyam','NAGAPATTINAM','TAMIL NADU'),(614901,'Orathanadu','THANJAVUR','TAMIL NADU'),(614902,'Pattukkottai','THANJAVUR','TAMIL NADU'),(614903,'Pattukkottai','THANJAVUR','TAMIL NADU'),(614904,'Orathanadu','THANJAVUR','TAMIL NADU'),(614905,'Orathanadu','THANJAVUR','TAMIL NADU'),(614906,'Pattukkottai','THANJAVUR','TAMIL NADU'),(620001,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620002,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620003,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620004,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620005,'Srirangam','TIRUCHIRAPPALLI','TAMIL NADU'),(620006,'Srirangam','TIRUCHIRAPPALLI','TAMIL NADU'),(620007,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620008,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620009,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620010,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620011,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620012,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620013,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620014,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620015,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620016,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620017,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620018,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620019,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620020,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620021,'Srirangam','TIRUCHIRAPPALLI','TAMIL NADU'),(620022,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620023,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620024,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620025,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620026,'Tiruchirappalli','TIRUCHIRAPPALLI','TAMIL NADU'),(620101,'Srirangam','TIRUCHIRAPPALLI','TAMIL NADU'),(620102,'Srirangam','TIRUCHIRAPPALLI','TAMIL NADU'),(621001,'Thuraiyur','TIRUCHIRAPPALLI','TAMIL NADU'),(621002,'Thuraiyur','TIRUCHIRAPPALLI','TAMIL NADU'),(621003,'Thuraiyur','TIRUCHIRAPPALLI','TAMIL NADU'),(621004,'Thuraiyur','TIRUCHIRAPPALLI','TAMIL NADU'),(621005,'Manachanallur','TIRUCHIRAPPALLI','TAMIL NADU'),(621006,'Musiri','TIRUCHIRAPPALLI','TAMIL NADU'),(621007,'Musiri','TIRUCHIRAPPALLI','TAMIL NADU'),(621008,'Thuraiyur','TIRUCHIRAPPALLI','TAMIL NADU'),(621009,'Manachanallur','TIRUCHIRAPPALLI','TAMIL NADU'),(621010,'Thuraiyur','TIRUCHIRAPPALLI','TAMIL NADU'),(621011,'Thuraiyur','TIRUCHIRAPPALLI','TAMIL NADU'),(621012,'Thuraiyur','TIRUCHIRAPPALLI','TAMIL NADU'),(621014,'Thuraiyur','TIRUCHIRAPPALLI','TAMIL NADU'),(621101,'Perambalur','PERAMBALUR','TAMIL NADU'),(621102,'Veppanthattai','PERAMBALUR','TAMIL NADU'),(621103,'Veppanthattai','PERAMBALUR','TAMIL NADU'),(621104,'Kunnam','PERAMBALUR','TAMIL NADU'),(621105,'Manachanallur','TIRUCHIRAPPALLI','TAMIL NADU'),(621106,'Kunnam','PERAMBALUR','TAMIL NADU'),(621107,'Perambalur','PERAMBALUR','TAMIL NADU'),(621108,'Kunnam','PERAMBALUR','TAMIL NADU'),(621109,'Kunnam','PERAMBALUR','TAMIL NADU'),(621110,'Musiri','TIRUCHIRAPPALLI','TAMIL NADU'),(621111,'Lalgudi','TIRUCHIRAPPALLI','TAMIL NADU'),(621112,'Manachanallur','TIRUCHIRAPPALLI','TAMIL NADU'),(621113,'Perambalur','PERAMBALUR','TAMIL NADU'),(621114,'Kunnam','PERAMBALUR','TAMIL NADU'),(621115,'Kunnam','PERAMBALUR','TAMIL NADU'),(621116,'Veppanthattai','PERAMBALUR','TAMIL NADU'),(621117,'Veppanthattai','PERAMBALUR','TAMIL NADU'),(621118,'Kunnam','PERAMBALUR','TAMIL NADU'),(621133,'Veppanthattai','PERAMBALUR','TAMIL NADU'),(621202,'Musiri','TIRUCHIRAPPALLI','TAMIL NADU'),(621203,'Thottiyam','TIRUCHIRAPPALLI','TAMIL NADU'),(621204,'Musiri','TIRUCHIRAPPALLI','TAMIL NADU'),(621205,'Musiri','TIRUCHIRAPPALLI','TAMIL NADU'),(621206,'Thuraiyur','TIRUCHIRAPPALLI','TAMIL NADU'),(621207,'Thottiyam','TIRUCHIRAPPALLI','TAMIL NADU'),(621208,'Thottiyam','TIRUCHIRAPPALLI','TAMIL NADU'),(621209,'Thottiyam','TIRUCHIRAPPALLI','TAMIL NADU'),(621210,'Musiri','TIRUCHIRAPPALLI','TAMIL NADU'),(621211,'Musiri','TIRUCHIRAPPALLI','TAMIL NADU'),(621212,'Perambalur','PERAMBALUR','TAMIL NADU'),(621213,'Manachanallur','TIRUCHIRAPPALLI','TAMIL NADU'),(621214,'Musiri','TIRUCHIRAPPALLI','TAMIL NADU'),(621215,'Thottiyam','TIRUCHIRAPPALLI','TAMIL NADU'),(621216,'Manachanallur','TIRUCHIRAPPALLI','TAMIL NADU'),(621217,'Musiri','TIRUCHIRAPPALLI','TAMIL NADU'),(621218,'Lalgudi','TIRUCHIRAPPALLI','TAMIL NADU'),(621219,'Perambalur','PERAMBALUR','TAMIL NADU'),(621220,'Perambalur','PERAMBALUR','TAMIL NADU'),(621301,'Kulithalai','KARUR','TAMIL NADU'),(621302,'Manapparai','TIRUCHIRAPPALLI','TAMIL NADU'),(621305,'Manapparai','TIRUCHIRAPPALLI','TAMIL NADU'),(621306,'Manapparai','TIRUCHIRAPPALLI','TAMIL NADU'),(621307,'Manapparai','TIRUCHIRAPPALLI','TAMIL NADU'),(621308,'Manapparai','TIRUCHIRAPPALLI','TAMIL NADU'),(621310,'Manapparai','TIRUCHIRAPPALLI','TAMIL NADU'),(621311,'Kulithalai','KARUR','TAMIL NADU'),(621312,'Manapparai','TIRUCHIRAPPALLI','TAMIL NADU'),(621313,'Kulithalai','KARUR','TAMIL NADU'),(621314,'Manapparai','TIRUCHIRAPPALLI','TAMIL NADU'),(621315,'Manapparai','TIRUCHIRAPPALLI','TAMIL NADU'),(621316,'Iluppur','PUDUKKOTTAI','TAMIL NADU'),(621601,'Lalgudi','TIRUCHIRAPPALLI','TAMIL NADU'),(621651,'Lalgudi','TIRUCHIRAPPALLI','TAMIL NADU'),(621652,'Lalgudi','TIRUCHIRAPPALLI','TAMIL NADU'),(621653,'Lalgudi','TIRUCHIRAPPALLI','TAMIL NADU'),(621701,'Udayarpalayam','ARIYALUR','TAMIL NADU'),(621702,'Lalgudi','TIRUCHIRAPPALLI','TAMIL NADU'),(621703,'Lalgudi','TIRUCHIRAPPALLI','TAMIL NADU'),(621704,'Ariyalur','ARIYALUR','TAMIL NADU'),(621705,'Ariyalur','ARIYALUR','TAMIL NADU'),(621706,'Lalgudi','TIRUCHIRAPPALLI','TAMIL NADU'),(621707,'Ariyalur','ARIYALUR','TAMIL NADU'),(621708,'Kunnam','PERAMBALUR','TAMIL NADU'),(621709,'Sendurai','ARIYALUR','TAMIL NADU'),(621710,'Udayarpalayam','ARIYALUR','TAMIL NADU'),(621711,'Lalgudi','TIRUCHIRAPPALLI','TAMIL NADU'),(621712,'Lalgudi','TIRUCHIRAPPALLI','TAMIL NADU'),(621713,'Kunnam','PERAMBALUR','TAMIL NADU'),(621714,'Sendurai','ARIYALUR','TAMIL NADU'),(621715,'Ariyalur','ARIYALUR','TAMIL NADU'),(621716,'Kunnam','PERAMBALUR','TAMIL NADU'),(621717,'Kunnam','PERAMBALUR','TAMIL NADU'),(621718,'Ariyalur','ARIYALUR','TAMIL NADU'),(621719,'Sendurai','ARIYALUR','TAMIL NADU'),(621722,'Lalgudi','TIRUCHIRAPPALLI','TAMIL NADU'),(621729,'Ariyalur','ARIYALUR','TAMIL NADU'),(621730,'Ariyalur','ARIYALUR','TAMIL NADU'),(621801,'Udayarpalayam','ARIYALUR','TAMIL NADU'),(621802,'Udayarpalayam','ARIYALUR','TAMIL NADU'),(621803,'Udayarpalayam','ARIYALUR','TAMIL NADU'),(621804,'Udayarpalayam','ARIYALUR','TAMIL NADU'),(621805,'Udayarpalayam','ARIYALUR','TAMIL NADU'),(621806,'Udayarpalayam','ARIYALUR','TAMIL NADU'),(621851,'Ariyalur','ARIYALUR','TAMIL NADU'),(622001,'Pudukkottai','PUDUKKOTTAI','TAMIL NADU'),(622002,'Thirumayam','PUDUKKOTTAI','TAMIL NADU'),(622003,'Pudukkottai','PUDUKKOTTAI','TAMIL NADU'),(622004,'Pudukkottai','PUDUKKOTTAI','TAMIL NADU'),(622005,'Pudukkottai','PUDUKKOTTAI','TAMIL NADU'),(622101,'Iluppur','PUDUKKOTTAI','TAMIL NADU'),(622102,'Iluppur','PUDUKKOTTAI','TAMIL NADU'),(622103,'Iluppur','PUDUKKOTTAI','TAMIL NADU'),(622104,'Iluppur','PUDUKKOTTAI','TAMIL NADU'),(622201,'Alangudi','PUDUKKOTTAI','TAMIL NADU'),(622202,'Avudayarkoil','PUDUKKOTTAI','TAMIL NADU'),(622203,'Pudukkottai','PUDUKKOTTAI','TAMIL NADU'),(622204,'Avudayarkoil','PUDUKKOTTAI','TAMIL NADU'),(622209,'Thirumayam','PUDUKKOTTAI','TAMIL NADU'),(622301,'Alangudi','PUDUKKOTTAI','TAMIL NADU'),(622302,'Alangudi','PUDUKKOTTAI','TAMIL NADU'),(622303,'Alangudi','PUDUKKOTTAI','TAMIL NADU'),(622304,'Alangudi','PUDUKKOTTAI','TAMIL NADU'),(622401,'Thirumayam','PUDUKKOTTAI','TAMIL NADU'),(622402,'Thirumayam','PUDUKKOTTAI','TAMIL NADU'),(622403,'Thirumayam','PUDUKKOTTAI','TAMIL NADU'),(622404,'Thirumayam','PUDUKKOTTAI','TAMIL NADU'),(622407,'Thirumayam','PUDUKKOTTAI','TAMIL NADU'),(622409,'Thirumayam','PUDUKKOTTAI','TAMIL NADU'),(622411,'Thirumayam','PUDUKKOTTAI','TAMIL NADU'),(622412,'Thirumayam','PUDUKKOTTAI','TAMIL NADU'),(622422,'Thirumayam','PUDUKKOTTAI','TAMIL NADU'),(622501,'Kulathur','PUDUKKOTTAI','TAMIL NADU'),(622502,'Kulathur','PUDUKKOTTAI','TAMIL NADU'),(622503,'Thirumayam','PUDUKKOTTAI','TAMIL NADU'),(622504,'Kulathur','PUDUKKOTTAI','TAMIL NADU'),(622505,'Thirumayam','PUDUKKOTTAI','TAMIL NADU'),(622506,'Thirumayam','PUDUKKOTTAI','TAMIL NADU'),(622507,'Thirumayam','PUDUKKOTTAI','TAMIL NADU'),(622515,'Kulathur','PUDUKKOTTAI','TAMIL NADU'),(623115,'Kamuthi','RAMANATHAPURAM','TAMIL NADU'),(623120,'Kadaladi','RAMANATHAPURAM','TAMIL NADU'),(623135,'Kadaladi','RAMANATHAPURAM','TAMIL NADU'),(623308,'Tiruvadanai','RAMANATHAPURAM','TAMIL NADU'),(623315,'Tiruvadanai','RAMANATHAPURAM','TAMIL NADU'),(623401,'Tiruvadanai','RAMANATHAPURAM','TAMIL NADU'),(623402,'Devakottai','SIVAGANGA','TAMIL NADU'),(623403,'Tiruvadanai','RAMANATHAPURAM','TAMIL NADU'),(623404,'Tiruvadanai','RAMANATHAPURAM','TAMIL NADU'),(623406,'Tiruvadanai','RAMANATHAPURAM','TAMIL NADU'),(623407,'Tiruvadanai','RAMANATHAPURAM','TAMIL NADU'),(623409,'Tiruvadanai','RAMANATHAPURAM','TAMIL NADU'),(623501,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623502,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623503,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623504,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623512,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623513,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623514,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623515,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623516,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623517,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623518,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623519,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623520,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623521,'Rameswaram','RAMANATHAPURAM','TAMIL NADU'),(623522,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623523,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623524,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623525,'Paramakudi','RAMANATHAPURAM','TAMIL NADU'),(623526,'Rameswaram','RAMANATHAPURAM','TAMIL NADU'),(623527,'Paramakudi','RAMANATHAPURAM','TAMIL NADU'),(623528,'Kadaladi','RAMANATHAPURAM','TAMIL NADU'),(623529,'Rameswaram','RAMANATHAPURAM','TAMIL NADU'),(623530,'Paramakudi','RAMANATHAPURAM','TAMIL NADU'),(623531,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623532,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623533,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623534,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623536,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(623537,'Tiruvadanai','RAMANATHAPURAM','TAMIL NADU'),(623538,'Tiruvadanai','RAMANATHAPURAM','TAMIL NADU'),(623566,'Kadaladi','RAMANATHAPURAM','TAMIL NADU'),(623601,'Mudukulathur','RAMANATHAPURAM','TAMIL NADU'),(623603,'Kamuthi','RAMANATHAPURAM','TAMIL NADU'),(623604,'Kamuthi','RAMANATHAPURAM','TAMIL NADU'),(623605,'Kamuthi','RAMANATHAPURAM','TAMIL NADU'),(623608,'Paramakudi','RAMANATHAPURAM','TAMIL NADU'),(623701,'Ilayangudi','SIVAGANGA','TAMIL NADU'),(623703,'Kadaladi','RAMANATHAPURAM','TAMIL NADU'),(623704,'Mudukulathur','RAMANATHAPURAM','TAMIL NADU'),(623705,'Paramakudi','RAMANATHAPURAM','TAMIL NADU'),(623706,'Paramakudi','RAMANATHAPURAM','TAMIL NADU'),(623707,'Paramakudi','RAMANATHAPURAM','TAMIL NADU'),(623708,'Kamuthi','RAMANATHAPURAM','TAMIL NADU'),(623711,'Mudukulathur','RAMANATHAPURAM','TAMIL NADU'),(623712,'Mudukulathur','RAMANATHAPURAM','TAMIL NADU'),(623806,'Ramanathapuram','RAMANATHAPURAM','TAMIL NADU'),(624001,'Dindigul','DINDIGUL','TAMIL NADU'),(624002,'Dindigul','DINDIGUL','TAMIL NADU'),(624003,'Dindigul','DINDIGUL','TAMIL NADU'),(624004,'Dindigul','DINDIGUL','TAMIL NADU'),(624005,'Vedasandur','DINDIGUL','TAMIL NADU'),(624101,'Dindigul','DINDIGUL','TAMIL NADU'),(624103,'Kodaikanal','DINDIGUL','TAMIL NADU'),(624201,'Nilakkottai','DINDIGUL','TAMIL NADU'),(624202,'Nilakkottai','DINDIGUL','TAMIL NADU'),(624204,'Dindigul','DINDIGUL','TAMIL NADU'),(624206,'Nilakkottai','DINDIGUL','TAMIL NADU'),(624208,'Nilakkottai','DINDIGUL','TAMIL NADU'),(624210,'Kodaikanal','DINDIGUL','TAMIL NADU'),(624211,'Nilakkottai','DINDIGUL','TAMIL NADU'),(624212,'Kodaikanal','DINDIGUL','TAMIL NADU'),(624215,'Nilakkottai','DINDIGUL','TAMIL NADU'),(624216,'Kodaikanal','DINDIGUL','TAMIL NADU'),(624219,'Dindigul','DINDIGUL','TAMIL NADU'),(624220,'Nilakkottai','DINDIGUL','TAMIL NADU'),(624301,'Dindigul','DINDIGUL','TAMIL NADU'),(624302,'Dindigul','DINDIGUL','TAMIL NADU'),(624303,'Dindigul','DINDIGUL','TAMIL NADU'),(624304,'Dindigul','DINDIGUL','TAMIL NADU'),(624306,'Dindigul','DINDIGUL','TAMIL NADU'),(624307,'Dindigul','DINDIGUL','TAMIL NADU'),(624308,'Dindigul','DINDIGUL','TAMIL NADU'),(624401,'Natham','DINDIGUL','TAMIL NADU'),(624402,'Natham','DINDIGUL','TAMIL NADU'),(624403,'Natham','DINDIGUL','TAMIL NADU'),(624601,'Palani','DINDIGUL','TAMIL NADU'),(624610,'Palani','DINDIGUL','TAMIL NADU'),(624612,'Oddanchatram','DINDIGUL','TAMIL NADU'),(624613,'Dindigul','DINDIGUL','TAMIL NADU'),(624614,'Oddanchatram','DINDIGUL','TAMIL NADU'),(624615,'Palani','DINDIGUL','TAMIL NADU'),(624616,'Oddanchatram','DINDIGUL','TAMIL NADU'),(624617,'Oddanchatram','DINDIGUL','TAMIL NADU'),(624618,'Palani','DINDIGUL','TAMIL NADU'),(624619,'Oddanchatram','DINDIGUL','TAMIL NADU'),(624620,'Dindigul','DINDIGUL','TAMIL NADU'),(624621,'Palani','DINDIGUL','TAMIL NADU'),(624622,'Dindigul','DINDIGUL','TAMIL NADU'),(624701,'Dindigul','DINDIGUL','TAMIL NADU'),(624702,'Vedasandur','DINDIGUL','TAMIL NADU'),(624703,'Vedasandur','DINDIGUL','TAMIL NADU'),(624704,'Oddanchatram','DINDIGUL','TAMIL NADU'),(624705,'Dindigul','DINDIGUL','TAMIL NADU'),(624706,'Vedasandur','DINDIGUL','TAMIL NADU'),(624707,'Dindigul','DINDIGUL','TAMIL NADU'),(624708,'Nilakkottai','DINDIGUL','TAMIL NADU'),(624709,'Dindigul','DINDIGUL','TAMIL NADU'),(624710,'Vedasandur','DINDIGUL','TAMIL NADU'),(624711,'Vedasandur','DINDIGUL','TAMIL NADU'),(624712,'Oddanchatram','DINDIGUL','TAMIL NADU'),(624801,'Vedasandur','DINDIGUL','TAMIL NADU'),(624802,'Vedasandur','DINDIGUL','TAMIL NADU'),(625001,'Madurai South','MADURAI','TAMIL NADU'),(625002,'Madurai North','MADURAI','TAMIL NADU'),(625003,'Madurai South','MADURAI','TAMIL NADU'),(625004,'Madurai South','MADURAI','TAMIL NADU'),(625005,'Madurai South','MADURAI','TAMIL NADU'),(625006,'Thirupparankundram','MADURAI','TAMIL NADU'),(625007,'Madurai North','MADURAI','TAMIL NADU'),(625008,'Thirumangalam','MADURAI','TAMIL NADU'),(625009,'Madurai South','MADURAI','TAMIL NADU'),(625011,'Madurai South','MADURAI','TAMIL NADU'),(625012,'Madurai South','MADURAI','TAMIL NADU'),(625014,'Madurai North','MADURAI','TAMIL NADU'),(625015,'Madurai South','MADURAI','TAMIL NADU'),(625016,'Madurai North','MADURAI','TAMIL NADU'),(625017,'Madurai North','MADURAI','TAMIL NADU'),(625018,'Madurai North','MADURAI','TAMIL NADU'),(625019,'Madurai South','MADURAI','TAMIL NADU'),(625020,'Madurai North','MADURAI','TAMIL NADU'),(625021,'Madurai South','MADURAI','TAMIL NADU'),(625022,'Madurai South','MADURAI','TAMIL NADU'),(625023,'Madurai North','MADURAI','TAMIL NADU'),(625101,'Madurai North','MADURAI','TAMIL NADU'),(625102,'Melur','MADURAI','TAMIL NADU'),(625103,'Melur','MADURAI','TAMIL NADU'),(625104,'Madurai East','MADURAI','TAMIL NADU'),(625105,'Melur','MADURAI','TAMIL NADU'),(625106,'Melur','MADURAI','TAMIL NADU'),(625107,'Madurai East','MADURAI','TAMIL NADU'),(625108,'Melur','MADURAI','TAMIL NADU'),(625109,'Melur','MADURAI','TAMIL NADU'),(625110,'Melur','MADURAI','TAMIL NADU'),(625122,'Melur','MADURAI','TAMIL NADU'),(625201,'Madurai North','MADURAI','TAMIL NADU'),(625203,'Periyakulam','THENI','TAMIL NADU'),(625205,'Vadipatti','MADURAI','TAMIL NADU'),(625207,'Vadipatti','MADURAI','TAMIL NADU'),(625214,'Vadipatti','MADURAI','TAMIL NADU'),(625218,'Vadipatti','MADURAI','TAMIL NADU'),(625221,'Vadipatti','MADURAI','TAMIL NADU'),(625234,'Vadipatti','MADURAI','TAMIL NADU'),(625301,'Madurai North','MADURAI','TAMIL NADU'),(625402,'Vadipatti','MADURAI','TAMIL NADU'),(625501,'Vadipatti','MADURAI','TAMIL NADU'),(625503,'Vadipatti','MADURAI','TAMIL NADU'),(625512,'Andipatti','THENI','TAMIL NADU'),(625513,'Bodinayakanur','THENI','TAMIL NADU'),(625514,'Usilampatti','MADURAI','TAMIL NADU'),(625515,'Uthamapalayam','THENI','TAMIL NADU'),(625516,'Uthamapalayam','THENI','TAMIL NADU'),(625517,'Andipatti','THENI','TAMIL NADU'),(625518,'Uthamapalayam','THENI','TAMIL NADU'),(625519,'Uthamapalayam','THENI','TAMIL NADU'),(625520,'Uthamapalayam','THENI','TAMIL NADU'),(625521,'Uthamapalayam','THENI','TAMIL NADU'),(625522,'Uthamapalayam','THENI','TAMIL NADU'),(625523,'Periyakulam','THENI','TAMIL NADU'),(625524,'Uthamapalayam','THENI','TAMIL NADU'),(625525,'Uthamapalayam','THENI','TAMIL NADU'),(625526,'Uthamapalayam','THENI','TAMIL NADU'),(625527,'Peraiyur','MADURAI','TAMIL NADU'),(625528,'Bodinayakanur','THENI','TAMIL NADU'),(625529,'Usilampatti','MADURAI','TAMIL NADU'),(625530,'Uthamapalayam','THENI','TAMIL NADU'),(625531,'Theni','THENI','TAMIL NADU'),(625532,'Usilampatti','MADURAI','TAMIL NADU'),(625533,'Uthamapalayam','THENI','TAMIL NADU'),(625534,'Theni','THENI','TAMIL NADU'),(625535,'Peraiyur','MADURAI','TAMIL NADU'),(625536,'Andipatti','THENI','TAMIL NADU'),(625537,'Usilampatti','MADURAI','TAMIL NADU'),(625540,'Uthamapalayam','THENI','TAMIL NADU'),(625556,'Uthamapalayam','THENI','TAMIL NADU'),(625562,'Periyakulam','THENI','TAMIL NADU'),(625579,'Andipatti','THENI','TAMIL NADU'),(625582,'Bodinayakanur','THENI','TAMIL NADU'),(625601,'Periyakulam','THENI','TAMIL NADU'),(625602,'Periyakulam','THENI','TAMIL NADU'),(625603,'Periyakulam','THENI','TAMIL NADU'),(625604,'Periyakulam','THENI','TAMIL NADU'),(625605,'Bodinayakanur','THENI','TAMIL NADU'),(625701,'Madurai North','MADURAI','TAMIL NADU'),(625702,'Peraiyur','MADURAI','TAMIL NADU'),(625703,'Peraiyur','MADURAI','TAMIL NADU'),(625704,'Peraiyur','MADURAI','TAMIL NADU'),(625705,'Peraiyur','MADURAI','TAMIL NADU'),(625706,'Thirumangalam','MADURAI','TAMIL NADU'),(625707,'Thirumangalam','MADURAI','TAMIL NADU'),(625708,'Peraiyur','MADURAI','TAMIL NADU'),(626001,'Virudhunagar','VIRUDHUNAGAR','TAMIL NADU'),(626002,'Virudhunagar','VIRUDHUNAGAR','TAMIL NADU'),(626003,'Aruppukkottai','VIRUDHUNAGAR','TAMIL NADU'),(626004,'Aruppukkottai','VIRUDHUNAGAR','TAMIL NADU'),(626005,'Virudhunagar','VIRUDHUNAGAR','TAMIL NADU'),(626101,'Aruppukkottai','VIRUDHUNAGAR','TAMIL NADU'),(626102,'Rajapalayam','VIRUDHUNAGAR','TAMIL NADU'),(626103,'Sivakasi','VIRUDHUNAGAR','TAMIL NADU'),(626104,'Aruppukkottai','VIRUDHUNAGAR','TAMIL NADU'),(626105,'Tiruchuli','VIRUDHUNAGAR','TAMIL NADU'),(626106,'Kariapatti','VIRUDHUNAGAR','TAMIL NADU'),(626107,'Aruppukkottai','VIRUDHUNAGAR','TAMIL NADU'),(626108,'Rajapalayam','VIRUDHUNAGAR','TAMIL NADU'),(626109,'Kariapatti','VIRUDHUNAGAR','TAMIL NADU'),(626110,'Srivilliputhur','VIRUDHUNAGAR','TAMIL NADU'),(626111,'Rajapalayam','VIRUDHUNAGAR','TAMIL NADU'),(626112,'Aruppukkottai','VIRUDHUNAGAR','TAMIL NADU'),(626113,'Aruppukkottai','VIRUDHUNAGAR','TAMIL NADU'),(626114,'Aruppukkottai','VIRUDHUNAGAR','TAMIL NADU'),(626115,'Kariapatti','VIRUDHUNAGAR','TAMIL NADU'),(626116,'Srivilliputhur','VIRUDHUNAGAR','TAMIL NADU'),(626117,'Rajapalayam','VIRUDHUNAGAR','TAMIL NADU'),(626118,'Aruppukkottai','VIRUDHUNAGAR','TAMIL NADU'),(626119,'Virudhunagar','VIRUDHUNAGAR','TAMIL NADU'),(626121,'Rajapalayam','VIRUDHUNAGAR','TAMIL NADU'),(626122,'Rajapalayam','VIRUDHUNAGAR','TAMIL NADU'),(626123,'Sivakasi','VIRUDHUNAGAR','TAMIL NADU'),(626124,'Sivakasi','VIRUDHUNAGAR','TAMIL NADU'),(626125,'Srivilliputhur','VIRUDHUNAGAR','TAMIL NADU'),(626126,'Srivilliputhur','VIRUDHUNAGAR','TAMIL NADU'),(626127,'Sivakasi','VIRUDHUNAGAR','TAMIL NADU'),(626128,'Sivakasi','VIRUDHUNAGAR','TAMIL NADU'),(626129,'Tiruchuli','VIRUDHUNAGAR','TAMIL NADU'),(626130,'Sivakasi','VIRUDHUNAGAR','TAMIL NADU'),(626131,'Sivakasi','VIRUDHUNAGAR','TAMIL NADU'),(626132,'Srivilliputhur','VIRUDHUNAGAR','TAMIL NADU'),(626133,'Srivilliputhur','VIRUDHUNAGAR','TAMIL NADU'),(626134,'Aruppukkottai','VIRUDHUNAGAR','TAMIL NADU'),(626135,'Srivilliputhur','VIRUDHUNAGAR','TAMIL NADU'),(626136,'Rajapalayam','VIRUDHUNAGAR','TAMIL NADU'),(626137,'Srivilliputhur','VIRUDHUNAGAR','TAMIL NADU'),(626138,'Sivakasi','VIRUDHUNAGAR','TAMIL NADU'),(626139,'Rajapalayam','VIRUDHUNAGAR','TAMIL NADU'),(626140,'Sattur','VIRUDHUNAGAR','TAMIL NADU'),(626141,'Sivakasi','VIRUDHUNAGAR','TAMIL NADU'),(626142,'Rajapalayam','VIRUDHUNAGAR','TAMIL NADU'),(626149,'Virudhunagar','VIRUDHUNAGAR','TAMIL NADU'),(626161,'Aruppukkottai','VIRUDHUNAGAR','TAMIL NADU'),(626188,'Rajapalayam','VIRUDHUNAGAR','TAMIL NADU'),(626189,'Sivakasi','VIRUDHUNAGAR','TAMIL NADU'),(626201,'Sivakasi','VIRUDHUNAGAR','TAMIL NADU'),(626202,'Sattur','VIRUDHUNAGAR','TAMIL NADU'),(626203,'Sattur','VIRUDHUNAGAR','TAMIL NADU'),(626204,'Virudhunagar','VIRUDHUNAGAR','TAMIL NADU'),(626205,'Sattur','VIRUDHUNAGAR','TAMIL NADU'),(626607,'Kariapatti','VIRUDHUNAGAR','TAMIL NADU'),(626612,'Tiruchuli','VIRUDHUNAGAR','TAMIL NADU'),(627001,'Tirunelveli','TIRUNELVELI','TAMIL NADU'),(627002,'Palayamkottai','TIRUNELVELI','TAMIL NADU'),(627003,'Palayamkottai','TIRUNELVELI','TAMIL NADU'),(627004,'Tirunelveli','TIRUNELVELI','TAMIL NADU'),(627005,'Palayamkottai','TIRUNELVELI','TAMIL NADU'),(627006,'Tirunelveli','TIRUNELVELI','TAMIL NADU'),(627007,'Palayamkottai','TIRUNELVELI','TAMIL NADU'),(627008,'Tirunelveli','TIRUNELVELI','TAMIL NADU'),(627009,'Palayamkottai','TIRUNELVELI','TAMIL NADU'),(627010,'Tirunelveli','TIRUNELVELI','TAMIL NADU'),(627011,'Palayamkottai','TIRUNELVELI','TAMIL NADU'),(627012,'Tirunelveli','TIRUNELVELI','TAMIL NADU'),(627101,'Nanguneri','TIRUNELVELI','TAMIL NADU'),(627102,'Nanguneri','TIRUNELVELI','TAMIL NADU'),(627103,'Nanguneri','TIRUNELVELI','TAMIL NADU'),(627104,'Radhapuram','TIRUNELVELI','TAMIL NADU'),(627105,'Radhapuram','TIRUNELVELI','TAMIL NADU'),(627106,'Radhapuram','TIRUNELVELI','TAMIL NADU'),(627107,'Tirunelveli','TIRUNELVELI','TAMIL NADU'),(627108,'Nanguneri','TIRUNELVELI','TAMIL NADU'),(627109,'Radhapuram','TIRUNELVELI','TAMIL NADU'),(627110,'Nanguneri','TIRUNELVELI','TAMIL NADU'),(627111,'Radhapuram','TIRUNELVELI','TAMIL NADU'),(627112,'Radhapuram','TIRUNELVELI','TAMIL NADU'),(627113,'Radhapuram','TIRUNELVELI','TAMIL NADU'),(627114,'Radhapuram','TIRUNELVELI','TAMIL NADU'),(627115,'Nanguneri','TIRUNELVELI','TAMIL NADU'),(627116,'Radhapuram','TIRUNELVELI','TAMIL NADU'),(627117,'Radhapuram','TIRUNELVELI','TAMIL NADU'),(627118,'Nanguneri','TIRUNELVELI','TAMIL NADU'),(627119,'Nanguneri','TIRUNELVELI','TAMIL NADU'),(627120,'Radhapuram','TIRUNELVELI','TAMIL NADU'),(627127,'Radhapuram','TIRUNELVELI','TAMIL NADU'),(627133,'Radhapuram','TIRUNELVELI','TAMIL NADU'),(627151,'Palayamkottai','TIRUNELVELI','TAMIL NADU'),(627152,'Nanguneri','TIRUNELVELI','TAMIL NADU'),(627201,'Tirunelveli','TIRUNELVELI','TAMIL NADU'),(627202,'Tirunelveli','TIRUNELVELI','TAMIL NADU'),(627351,'Palayamkottai','TIRUNELVELI','TAMIL NADU'),(627352,'Tirunelveli','TIRUNELVELI','TAMIL NADU'),(627353,'Palayamkottai','TIRUNELVELI','TAMIL NADU'),(627354,'Nanguneri','TIRUNELVELI','TAMIL NADU'),(627355,'Nanguneri','TIRUNELVELI','TAMIL NADU'),(627356,'Palayamkottai','TIRUNELVELI','TAMIL NADU'),(627357,'Tirunelveli','TIRUNELVELI','TAMIL NADU'),(627358,'Tirunelveli','TIRUNELVELI','TAMIL NADU'),(627359,'Tirunelveli','TIRUNELVELI','TAMIL NADU'),(627401,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627412,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627413,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627414,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627415,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627416,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627417,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627418,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627420,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627421,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627422,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627423,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627424,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627425,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627426,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627427,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627428,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627451,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627452,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627453,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627501,'Ettayapuram','TUTICORIN','TAMIL NADU'),(627502,'Nanguneri','TIRUNELVELI','TAMIL NADU'),(627601,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627602,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627603,'Ambasamudram','TIRUNELVELI','TAMIL NADU'),(627604,'Tirunelveli','TIRUNELVELI','TAMIL NADU'),(627651,'Radhapuram','TIRUNELVELI','TAMIL NADU'),(627652,'Nanguneri','TIRUNELVELI','TAMIL NADU'),(627654,'Radhapuram','TIRUNELVELI','TAMIL NADU'),(627657,'Radhapuram','TIRUNELVELI','TAMIL NADU'),(627713,'Kovilpatti','TUTICORIN','TAMIL NADU'),(627719,'Sankarankoil','TIRUNELVELI','TAMIL NADU'),(627751,'Tenkasi','TIRUNELVELI','TAMIL NADU'),(627753,'Sankarankoil','TIRUNELVELI','TAMIL NADU'),(627754,'Sankarankoil','TIRUNELVELI','TAMIL NADU'),(627755,'Sankarankoil','TIRUNELVELI','TAMIL NADU'),(627756,'Sankarankoil','TIRUNELVELI','TAMIL NADU'),(627757,'Sivagiri','TIRUNELVELI','TAMIL NADU'),(627758,'Sivagiri','TIRUNELVELI','TAMIL NADU'),(627759,'Tenkasi','TIRUNELVELI','TAMIL NADU'),(627760,'Sivagiri','TIRUNELVELI','TAMIL NADU'),(627761,'Sankarankoil','TIRUNELVELI','TAMIL NADU'),(627764,'Sivagiri','TIRUNELVELI','TAMIL NADU'),(627802,'Tenkasi','TIRUNELVELI','TAMIL NADU'),(627803,'Shenkottai','TIRUNELVELI','TAMIL NADU'),(627804,'Tenkasi','TIRUNELVELI','TAMIL NADU'),(627805,'Tenkasi','TIRUNELVELI','TAMIL NADU'),(627806,'Alangulam','TIRUNELVELI','TAMIL NADU'),(627807,'Shenkottai','TIRUNELVELI','TAMIL NADU'),(627808,'Tenkasi','TIRUNELVELI','TAMIL NADU'),(627809,'Shenkottai','TIRUNELVELI','TAMIL NADU'),(627811,'Tenkasi','TIRUNELVELI','TAMIL NADU'),(627812,'Shenkottai','TIRUNELVELI','TAMIL NADU'),(627813,'Shenkottai','TIRUNELVELI','TAMIL NADU'),(627814,'Tenkasi','TIRUNELVELI','TAMIL NADU'),(627818,'Tenkasi','TIRUNELVELI','TAMIL NADU'),(627851,'Alangulam','TIRUNELVELI','TAMIL NADU'),(627852,'Tenkasi','TIRUNELVELI','TAMIL NADU'),(627853,'Alangulam','TIRUNELVELI','TAMIL NADU'),(627854,'Alangulam','TIRUNELVELI','TAMIL NADU'),(627855,'Sankarankoil','TIRUNELVELI','TAMIL NADU'),(627856,'Tenkasi','TIRUNELVELI','TAMIL NADU'),(627857,'Sankarankoil','TIRUNELVELI','TAMIL NADU'),(627858,'Tenkasi','TIRUNELVELI','TAMIL NADU'),(627859,'Sankarankoil','TIRUNELVELI','TAMIL NADU'),(627860,'Veerakeralamputhur','TIRUNELVELI','TAMIL NADU'),(627861,'Veerakeralamputhur','TIRUNELVELI','TAMIL NADU'),(627862,'Sankarankoil','TIRUNELVELI','TAMIL NADU'),(627951,'Alangulam','TIRUNELVELI','TAMIL NADU'),(627953,'Sankarankoil','TIRUNELVELI','TAMIL NADU'),(628001,'Thoothukkudi','TUTICORIN','TAMIL NADU'),(628002,'Ottapidaram','TUTICORIN','TAMIL NADU'),(628003,'Thoothukkudi','TUTICORIN','TAMIL NADU'),(628004,'Thoothukkudi','TUTICORIN','TAMIL NADU'),(628005,'Thoothukkudi','TUTICORIN','TAMIL NADU'),(628006,'Thoothukkudi','TUTICORIN','TAMIL NADU'),(628007,'Thoothukkudi','TUTICORIN','TAMIL NADU'),(628008,'Thoothukkudi','TUTICORIN','TAMIL NADU'),(628101,'Thoothukkudi','TUTICORIN','TAMIL NADU'),(628102,'Thoothukkudi','TUTICORIN','TAMIL NADU'),(628103,'Thoothukkudi','TUTICORIN','TAMIL NADU'),(628104,'Srivaikuntam','TUTICORIN','TAMIL NADU'),(628105,'Ottapidaram','TUTICORIN','TAMIL NADU'),(628151,'Srivaikuntam','TUTICORIN','TAMIL NADU'),(628152,'Srivaikuntam','TUTICORIN','TAMIL NADU'),(628201,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628202,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628203,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628204,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628205,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628206,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628207,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628208,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628209,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628210,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628211,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628212,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628213,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628215,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628216,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628217,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628218,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628219,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628229,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628251,'Thoothukkudi','TUTICORIN','TAMIL NADU'),(628252,'Srivaikuntam','TUTICORIN','TAMIL NADU'),(628301,'Thoothukkudi','TUTICORIN','TAMIL NADU'),(628302,'Ottapidaram','TUTICORIN','TAMIL NADU'),(628303,'Srivaikuntam','TUTICORIN','TAMIL NADU'),(628304,'Thoothukkudi','TUTICORIN','TAMIL NADU'),(628401,'Ottapidaram','TUTICORIN','TAMIL NADU'),(628402,'Ottapidaram','TUTICORIN','TAMIL NADU'),(628501,'Kovilpatti','TUTICORIN','TAMIL NADU'),(628502,'Sankarankoil','TIRUNELVELI','TAMIL NADU'),(628503,'Kovilpatti','TUTICORIN','TAMIL NADU'),(628552,'Kovilpatti','TUTICORIN','TAMIL NADU'),(628601,'Srivaikuntam','TUTICORIN','TAMIL NADU'),(628612,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628613,'Sathankulam','TUTICORIN','TAMIL NADU'),(628614,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628615,'Srivaikuntam','TUTICORIN','TAMIL NADU'),(628616,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628617,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628618,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628619,'Srivaikuntam','TUTICORIN','TAMIL NADU'),(628620,'Srivaikuntam','TUTICORIN','TAMIL NADU'),(628621,'Srivaikuntam','TUTICORIN','TAMIL NADU'),(628622,'Srivaikuntam','TUTICORIN','TAMIL NADU'),(628623,'Tiruchendur','TUTICORIN','TAMIL NADU'),(628653,'Sathankulam','TUTICORIN','TAMIL NADU'),(628656,'Sathankulam','TUTICORIN','TAMIL NADU'),(628701,'Sathankulam','TUTICORIN','TAMIL NADU'),(628702,'Sathankulam','TUTICORIN','TAMIL NADU'),(628703,'Sathankulam','TUTICORIN','TAMIL NADU'),(628704,'Sathankulam','TUTICORIN','TAMIL NADU'),(628712,'Vilathikulam','TUTICORIN','TAMIL NADU'),(628714,'Kovilpatti','TUTICORIN','TAMIL NADU'),(628716,'Kovilpatti','TUTICORIN','TAMIL NADU'),(628718,'Ettayapuram','TUTICORIN','TAMIL NADU'),(628720,'Kovilpatti','TUTICORIN','TAMIL NADU'),(628721,'Kovilpatti','TUTICORIN','TAMIL NADU'),(628722,'Kovilpatti','TUTICORIN','TAMIL NADU'),(628751,'Srivaikuntam','TUTICORIN','TAMIL NADU'),(628752,'Srivaikuntam','TUTICORIN','TAMIL NADU'),(628753,'Srivaikuntam','TUTICORIN','TAMIL NADU'),(628801,'Srivaikuntam','TUTICORIN','TAMIL NADU'),(628802,'Srivaikuntam','TUTICORIN','TAMIL NADU'),(628809,'Srivaikuntam','TUTICORIN','TAMIL NADU'),(628851,'Srivaikuntam','TUTICORIN','TAMIL NADU'),(628901,'Vilathikulam','TUTICORIN','TAMIL NADU'),(628902,'Ettayapuram','TUTICORIN','TAMIL NADU'),(628903,'Vilathikulam','TUTICORIN','TAMIL NADU'),(628904,'Vilathikulam','TUTICORIN','TAMIL NADU'),(628905,'Vilathikulam','TUTICORIN','TAMIL NADU'),(628906,'Vilathikulam','TUTICORIN','TAMIL NADU'),(628907,'Ettayapuram','TUTICORIN','TAMIL NADU'),(628908,'Ettayapuram','TUTICORIN','TAMIL NADU'),(628952,'Kovilpatti','TUTICORIN','TAMIL NADU'),(629001,'Agastheeswaram','KANYAKUMARI','TAMIL NADU'),(629002,'Agastheeswaram','KANYAKUMARI','TAMIL NADU'),(629003,'Agastheeswaram','KANYAKUMARI','TAMIL NADU'),(629004,'Agastheeswaram','KANYAKUMARI','TAMIL NADU'),(629101,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629102,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629151,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629152,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629153,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629154,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629155,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629156,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629157,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629158,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629159,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629160,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629161,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629162,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629163,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629164,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629165,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629166,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629167,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629168,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629169,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629170,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629171,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629172,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629173,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629174,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629175,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629176,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629177,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629178,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629179,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629180,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629193,'Vilavancode','KANYAKUMARI','TAMIL NADU'),(629201,'Agastheeswaram','KANYAKUMARI','TAMIL NADU'),(629202,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629203,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629204,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629251,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629252,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629301,'Agastheeswaram','KANYAKUMARI','TAMIL NADU'),(629302,'Thovala','KANYAKUMARI','TAMIL NADU'),(629401,'Agastheeswaram','KANYAKUMARI','TAMIL NADU'),(629402,'Agastheeswaram','KANYAKUMARI','TAMIL NADU'),(629403,'Agastheeswaram','KANYAKUMARI','TAMIL NADU'),(629501,'Agastheeswaram','KANYAKUMARI','TAMIL NADU'),(629502,'Agastheeswaram','KANYAKUMARI','TAMIL NADU'),(629601,'Agastheeswaram','KANYAKUMARI','TAMIL NADU'),(629602,'Agastheeswaram','KANYAKUMARI','TAMIL NADU'),(629701,'Agastheeswaram','KANYAKUMARI','TAMIL NADU'),(629702,'Agastheeswaram','KANYAKUMARI','TAMIL NADU'),(629703,'Agastheeswaram','KANYAKUMARI','TAMIL NADU'),(629704,'Agastheeswaram','KANYAKUMARI','TAMIL NADU'),(629801,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629802,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629803,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629804,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629809,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629810,'Kalkulam','KANYAKUMARI','TAMIL NADU'),(629851,'Thovala','KANYAKUMARI','TAMIL NADU'),(629852,'Thovala','KANYAKUMARI','TAMIL NADU'),(629901,'Thovala','KANYAKUMARI','TAMIL NADU'),(630001,'Karaikkudi','SIVAGANGA','TAMIL NADU'),(630002,'Karaikkudi','SIVAGANGA','TAMIL NADU'),(630003,'Karaikkudi','SIVAGANGA','TAMIL NADU'),(630005,'Karaikkudi','SIVAGANGA','TAMIL NADU'),(630101,'Karaikkudi','SIVAGANGA','TAMIL NADU'),(630102,'Karaikkudi','SIVAGANGA','TAMIL NADU'),(630103,'Karaikkudi','SIVAGANGA','TAMIL NADU'),(630104,'Karaikkudi','SIVAGANGA','TAMIL NADU'),(630105,'Devakottai','SIVAGANGA','TAMIL NADU'),(630106,'Tirupathur','SIVAGANGA','TAMIL NADU'),(630107,'Karaikkudi','SIVAGANGA','TAMIL NADU'),(630108,'Karaikkudi','SIVAGANGA','TAMIL NADU'),(630201,'Tirupathur','SIVAGANGA','TAMIL NADU'),(630202,'Devakottai','SIVAGANGA','TAMIL NADU'),(630203,'Tirupathur','SIVAGANGA','TAMIL NADU'),(630204,'Tirupathur','SIVAGANGA','TAMIL NADU'),(630205,'Tirupathur','SIVAGANGA','TAMIL NADU'),(630206,'Tirupathur','SIVAGANGA','TAMIL NADU'),(630207,'Karaikkudi','SIVAGANGA','TAMIL NADU'),(630208,'Karaikkudi','SIVAGANGA','TAMIL NADU'),(630210,'Tirupathur','SIVAGANGA','TAMIL NADU'),(630211,'Tirupathur','SIVAGANGA','TAMIL NADU'),(630212,'Tirupathur','SIVAGANGA','TAMIL NADU'),(630301,'Devakottai','SIVAGANGA','TAMIL NADU'),(630302,'Devakottai','SIVAGANGA','TAMIL NADU'),(630303,'Devakottai','SIVAGANGA','TAMIL NADU'),(630305,'Karaikkudi','SIVAGANGA','TAMIL NADU'),(630306,'Karaikkudi','SIVAGANGA','TAMIL NADU'),(630307,'Tirupathur','SIVAGANGA','TAMIL NADU'),(630309,'Tirupathur','SIVAGANGA','TAMIL NADU'),(630311,'Devakottai','SIVAGANGA','TAMIL NADU'),(630312,'Devakottai','SIVAGANGA','TAMIL NADU'),(630313,'Karaikkudi','SIVAGANGA','TAMIL NADU'),(630314,'Devakottai','SIVAGANGA','TAMIL NADU'),(630321,'Karaikkudi','SIVAGANGA','TAMIL NADU'),(630405,'Tirupathur','SIVAGANGA','TAMIL NADU'),(630408,'Devakottai','SIVAGANGA','TAMIL NADU'),(630410,'Tirupathur','SIVAGANGA','TAMIL NADU'),(630411,'Devakottai','SIVAGANGA','TAMIL NADU'),(630501,'Tirupathur','SIVAGANGA','TAMIL NADU');
/*!40000 ALTER TABLE `pincode` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pincode_address`
--

DROP TABLE IF EXISTS `pincode_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pincode_address` (
  `officename` varchar(64) DEFAULT NULL,
  `pincode` int(11) DEFAULT NULL,
  `division` varchar(64) DEFAULT NULL,
  `region` varchar(64) DEFAULT NULL,
  `circle` varchar(64) DEFAULT NULL,
  `taluka` varchar(64) DEFAULT NULL,
  `district` varchar(64) DEFAULT NULL,
  `state` varchar(64) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pincode_address`
--

LOCK TABLES `pincode_address` WRITE;
/*!40000 ALTER TABLE `pincode_address` DISABLE KEYS */;
INSERT INTO `pincode_address` VALUES ('Zura',370001,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Zundala',364490,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Zundal',382421,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Zudvali',362530,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Zoz',391165,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Ziyana',360023,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Zinzwa',389265,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Zinzva',383210,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Zinzuwada ',382755,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Zinzuda',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Zinzuda',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Zinzavadar Nana',364760,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Zinzari',389365,'Panchmahals','Vadodara','Gujarat','Ghoghamba','Panch Mahals','GUJARAT'),('Zinzar',382250,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Zinza Vadar Mota',364760,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Zinvari',360515,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Zinkiyali',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Zinkdi',370001,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Zinjri',362640,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Zilvana',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Zilia',384225,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Zilariya',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Zezra',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Zervavra ',394245,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Zerjitagadh',389146,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Zer',391152,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Zenal',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Zekhada',385360,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Zazam',385360,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Zarwani',393155,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Zaru',370110,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Zarpara',370405,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Zaroli',396105,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Zarnawadi',393040,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Zaridungarda',394730,'Bardoli','Vadodara','Gujarat','Dang','Navsari','GUJARAT'),('Zariawadi',393151,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Zari(Vansda)',396321,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Zari(Chikhli)',396060,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Zari Buzarg',389155,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Zarda',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Zanzva Panai',383255,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Zanzmer',360440,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Zanzarva',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Zanzarka',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Zanzad',391115,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Zanu',382430,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Zankhvav ',394440,'Surat','Vadodara','Gujarat','Zankhvav','Surat','GUJARAT'),('Zankharia',389360,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Zankhari',394655,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Zanjmer',364135,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Zandala',385360,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Zamrala',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Zampodad',363030,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Zampodad',362610,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Zamar',382775,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Zalmor',385550,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Zakhar',361010,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Zak',393130,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Zadiyana',382780,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Zadeshwar ',392011,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Zadakla',364510,'Bhavnagar','Rajkot','Gujarat','Jesar','Bhavnagar','GUJARAT'),('Zabu',389382,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Zab',394163,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Zab',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Wcc Ukai ',394680,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Wankaner ',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Wanghroli',388235,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Wanakbori .T.P.S. ',388239,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Wanakbori',388235,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Wali',393120,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Waghva',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Waghodia Road ',390025,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Waghai ',394730,'Bardoli','Vadodara','Gujarat','Ahwa','Navsari','GUJARAT'),('Wagdod ',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Wagach',391152,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Wadi S.N. Road ',390017,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Wadhwancity Ind. Estate ',363035,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Wadhwancity Bazar ',363030,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Wadhwancity ',363030,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Wadhwana',391110,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Vydhar',391121,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Vyaval',394370,'Bardoli','Vadodara','Gujarat','Nijhar','Surat','GUJARAT'),('Vyasda',389340,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Vyas Vasna',387650,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Vyara RS ',394650,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Vyara Antoli',391760,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Vyara ',394650,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Vyankatpura',391510,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Vovar',370410,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Vora Samni',392012,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Vora Kotda',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Vora',391120,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Vondhada',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Vondh',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('VivekanandNagar',382445,'Gandhinagar','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Vithon ',370675,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Vithodar',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Vithoda',384325,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Vithlpura',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Vithalpur',362720,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Vithalgadh',363115,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Vithal Udyognagar ',388121,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Visnagar Station Road ',384315,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Visnagar Market Yard ',384315,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Visnagar Collage(Urban)',384315,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Visnagar ',384315,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Vishwamangalam',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Vishrampura',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Vishol',384215,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Vishnupura',387620,'Kheda','Vadodara','Gujarat','Kapadvanj','Kheda','GUJARAT'),('Vishalpur',382210,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Visavadi',382750,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Visavadar ',362130,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Visavada',360579,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Visatpur',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Visanvel',362250,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Visaman',360110,'Rajkot','Rajkot','Gujarat','Dhrol','Rajkot','GUJARAT'),('Virvav',363650,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Virval',396051,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Virvadrka',363670,'Rajkot','Rajkot','Gujarat','Maliya Miyana','Rajkot','GUJARAT'),('Viruna',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Virta',384001,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Virsoda',384430,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Virsad ',388580,'Kheda','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Virpur ',360380,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Virpur',394155,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Virpur',391445,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Virpur',394650,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Virpur',362110,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Virpur',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Virpur',365435,'Amreli','Rajkot','Gujarat','Lathi','Amreli','GUJARAT'),('Virpur',365640,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Virpur',391165,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Virpur',383010,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Virpur',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Virpur',383230,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Virpor',393140,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Virparda',363660,'Rajkot','Rajkot','Gujarat','Dahisara','Rajkot','GUJARAT'),('Virpar (M)',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Virol [simarda]',388480,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Virol',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Virol',387240,'Kheda','Vadodara','Gujarat','Sojitra','Anand','GUJARAT'),('Virod',390022,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Virochannagar ',382170,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Virnagar ',360060,'Rajkot','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Virjai',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Virdi',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Virdi',364525,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Virdi',382265,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Viraval',396445,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Viravada',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Viraniya',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Virani Nani',370630,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Virani (Gadh)',370445,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Virani ',370665,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Virampur',385001,'Banasanktha','Ahmedabad HQ','Gujarat','NA','Banaskantha','GUJARAT'),('Viramgam ',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Viramdad',361305,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Virakset',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Vira',370110,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Vinzuvada',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Vinzol',382445,'Gandhinagar','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Vinzol',388220,'Anand','Vadodara','Gujarat','Thsra','Kheda','GUJARAT'),('Vinzivad',364470,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Vinzalpar',361306,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Vintoz',389350,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Vintoz',391770,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Vinjhan',370490,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Vinchhiya ',360055,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Vinchhiya',382110,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Vinchhivadi',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Vinchhi',383422,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Vinchhan',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Vina',387430,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Vilayat',392012,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Vikaliya',364740,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Vijpadi ',364530,'Amreli','Rajkot','Gujarat','Savarkundla','Amreli','GUJARAT'),('Vijli',391170,'Vadodara East','Vadodara','Gujarat','Kawant','Vadodara','GUJARAT'),('Vijlasan',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Vijaynagar ',383460,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Vijayapar',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Vijapurda',384212,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Vijapur Bazar ',382870,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Vijapur ',382870,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Vijapur',362015,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Vijapasar',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Vijaliya',363530,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Vihara',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Vihar',382810,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Vihan',394320,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Vigodi',370605,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Vidi',370110,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Vidhyut Nagar Colony ',390007,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Vidhansabha ',382010,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Vidh',370450,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Vidaj',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Vichhavad',362020,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Vibrant Gujarat ',382010,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhi Nagar','Gandhi Nagar','GUJARAT'),('Vibhapar',361007,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Vibhapar',370030,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Veternary College(Anand) ',388001,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Vesu',395007,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Vesma ',396475,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Vesania',391760,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Vesa',385421,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Veribhavada',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Veraval Udyognagar ',362269,'Junagadh','Rajkot','Gujarat','Patan-Veraval','Junagadh','GUJARAT'),('Veraval Rayon Factory ',362266,'Junagadh','Rajkot','Gujarat','Patan-Veraval','Junagadh','GUJARAT'),('Veraval Moti',361012,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Veraval (Shapar) ',360024,'Rajkot','Rajkot','Gujarat','Kotda Sanghani','Rajkot','GUJARAT'),('Veraval ',362265,'Junagadh','Rajkot','Gujarat','Patan-Veraval','Junagadh','GUJARAT'),('Veratia',361130,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Verakui',394430,'Surat','Vadodara','Gujarat','Vankal','Surat','GUJARAT'),('Verakhadi',388365,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Verad ',360515,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Verabar ',383434,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Vera',388540,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Venpura',384210,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Venasar',363630,'Rajkot','Rajkot','Gujarat','Maliya Miyana','Rajkot','GUJARAT'),('Vemardi',391210,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Vemar',391520,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Vemar',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Velvach',396007,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Velva',362630,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Velva',362720,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Velugam',393120,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Velpura',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Velparwa',396125,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Veloda',384272,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Veldha',394370,'Bardoli','Vadodara','Gujarat','Nizar','Surat','GUJARAT'),('Velavapura',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Velavadar',364313,'Bhavnagar','Rajkot','Gujarat','Vallbhiopur','Bhavnagar','GUJARAT'),('Velavadar',364505,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Velavadar',363040,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Velanvada',389240,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Velanpur',394245,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Velanpore',396540,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Velanja',394150,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Velan',362720,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Velachha ',394405,'Surat','Vadodara','Gujarat','Velachha','Surat','GUJARAT'),('Vektana',394230,'Surat','Vadodara','Gujarat','Chorasi','Surat','GUJARAT'),('Vekri',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Vekri',362620,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Vekra',382165,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Vekariya',362130,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Vekaria',382110,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Vejpur',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Vejpur',391774,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Vejodari',364130,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Vejelav',389152,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Vejawada',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Vejalpura',391760,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Vejalpur ',389340,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Vejalpore',396475,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Vejalpar',363630,'Rajkot','Rajkot','Gujarat','Maliya Miyana','Rajkot','GUJARAT'),('Vejalka',382230,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Vehlal',382330,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmedabad','Ahmedabad','GUJARAT'),('Vegni',392130,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Vegi',394170,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Veganpur',388713,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Vegam',396350,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Vegadvav',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Veer Narmad South Gujarat University ',395007,'Surat','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Vedpur',391761,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Vedchhi ',394641,'Bardoli','Vadodara','Gujarat','Valod','Tapi','GUJARAT'),('Vedchha ',396472,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Vedancha',385510,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Vedach',391810,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Veda (Paliyed)',382735,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Veda',382855,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Ved',389382,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Ved',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Vayor',370511,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Vayad',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Vavol',382016,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Vavkulli',389341,'Panchmahals','Vadodara','Gujarat','Ghoghamba','Panch Mahals','GUJARAT'),('Vaviala',393151,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Vavharali',393151,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Vavera',365560,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Vavdi-road',365450,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Vavdi Station',364485,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Vavdi Buzarg',389001,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Vavdi (D)',365410,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Vavdi',360004,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Vavdi',364330,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Vavdi',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Vavdi',360405,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Vavdi',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Vavdi',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Vavdi',383030,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Vavdi',383345,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Vavdi',362255,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Vavdi',364750,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Vavdi',364120,'Bhavnagar','Rajkot','Gujarat','Gogha','Bhavnagar','GUJARAT'),('Vavdi',364230,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Vavda',365421,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Vavarda',362560,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Vavania',363660,'Rajkot','Rajkot','Gujarat','Dahisara','Rajkot','GUJARAT'),('Vav Kathodara ',394326,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Vav ',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Vav',396040,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Vav',364210,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Vav',389390,'Panchmahals','Vadodara','Gujarat','Jambughoda','Panch Mahals','GUJARAT'),('Vautha',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Vatva Industrial Estate ',382445,'Gandhinagar','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Vatva ',382440,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Vatsalyadham',394340,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Vatrakgadh',383260,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Vatra',388640,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Vathalpur K',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Vataria',393001,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Vatar',396191,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Vataman',382265,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Vatam-juna',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Vatadara',388580,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Vasvel',391760,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Vasurna',394730,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Vastral ',382418,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Vasti Khandali',392140,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Vastana',388180,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Vastadi',363410,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Vasta Devdi Road ',395004,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Vasravi',394421,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Vasoj',362510,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Vaso ',387380,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Vaso',388245,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Vasnirel',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('VasnaSogthi',382308,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Vasnachaudhary',382321,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('VasnaChacharvadi',382213,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Vasna(Iawa)',382170,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Vasna Road ',390007,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Vasna Rathod',382305,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Vasna Margia',387120,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Vasna Kotaria',391745,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Vasna Buzarg',387560,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Vasna',387340,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Vasna',393110,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Vasna',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Vasna',391140,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Vasna',388540,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Vasna',385540,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Vasna',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Vasisthnagar ',380008,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Vasia',391530,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Vasi',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Vasavad ',364490,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Vasava',394517,'Surat','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Vasarda',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Vasantpur',360530,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Vasanpura',391770,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Vasana Vatam',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Vasana',383255,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Vasan(Gandevi)',396310,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Vasan Sevada',391145,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Vasan',382650,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Vasan',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Vasan',396375,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Vasan',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Vasai Dabhala ',382865,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Vasai ',383450,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Vasai',361335,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Vasai',384275,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Vasai',384340,'Mahesana','Ahmedabad HQ','Gujarat','Satlasana','Mahesana','GUJARAT'),('Vasai',361006,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Vasai',383460,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Vasai',382425,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Vasai',391110,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Vasad ',388306,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Varvath',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Varvala',361335,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Varvada',384215,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Varvada',383305,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Vartol',383255,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Varthu',383317,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Vartej ',364060,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Varsola',387130,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Varsoda',382835,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Varsingpur',362560,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Varsila',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Varsda',389350,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Varsani',363427,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Varsang',387560,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Varsamedi',370110,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Varsamedi',363660,'Rajkot','Rajkot','Gujarat','Dahisara','Rajkot','GUJARAT'),('Varsada',365430,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Varsada',391774,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Varsada',388180,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Varoli Talat',396126,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Varod',389180,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Varnoda',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Varnama',391243,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Varna',382265,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Varna',396126,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Varna',361130,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Varmor',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Varli',370130,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Varjang Jalia',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Variavi Bhagal ',395003,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Variav ',394520,'Surat','Vadodara','Gujarat','Variav','Surat','GUJARAT'),('Varethi',394110,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Varetha',384325,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Vareth',394160,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Vareli',394140,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Varedia',392210,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Vardusar',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Vardhari ',388270,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Varasada',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Varandi Moti',370490,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Varana',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Varal',364260,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Varahi ',385360,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Varadia',370490,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Varad ',394355,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Varachhali',395006,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Varachha Road ',395006,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Vapi I.E. ',396195,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Vapi ',396191,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Vanzarda',394651,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Vanzar',383250,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Vanzana',396560,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Vanz',394230,'Surat','Vadodara','Gujarat','Sachin','Surat','GUJARAT'),('Vanthavali',387430,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Vanthali(S) ',362610,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Vanthal',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Vantda Bayad',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Vanta',391135,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Vansva',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Vansol Sundha',387430,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Vansol',387335,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Vansol',385421,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Vansol',387115,'Kheda','Vadodara','Gujarat','Umreth','Kheda','GUJARAT'),('Vanskui',394651,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Vanskui',394240,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Vanskui',394340,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Vansjalia ',360531,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Vansia Kui',389190,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Vansia',389175,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Vansi',392160,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Vanshiyali',364525,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Vansda ',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Vansa',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Vanpardi',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Vanoti',388225,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Vanot',364530,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Vanoi',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Vanoda',388235,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Vanod',382750,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Vanmala',391120,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Vanku',370645,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Vankla',394630,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Vankla',391152,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Vankiya',365635,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Vankiya',365610,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Vankiya',389154,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Vankiya',361210,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Vankia',362560,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Vanki',370425,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Vankda',383462,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Vankas',396150,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Vankaner (SR) ',394620,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Vankaner',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Vankaneda',383335,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Vankaneda',391774,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Vankal (Chikhli)',396325,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Vankal ',394430,'Surat','Vadodara','Gujarat','Vankal','Surat','GUJARAT'),('Vankal',393115,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Vankadi',389110,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Vankada',363641,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Vanka',394370,'Bardoli','Vadodara','Gujarat','Nijhar','Surat','GUJARAT'),('Vanjiakhut',389260,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Vanisa Pisadi',394310,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Vaniawada',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Vaniadri',391135,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Vaniad Kokapur',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Vaniad',391105,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Vania Vada Gorada',389235,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Vani',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Vangadhra',360055,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Vangad',389172,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Vang',370001,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Vandliya',365421,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Vandhol',383460,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Vandhiyol',383250,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Vandhiya',370150,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Vandh',370485,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Vandh',391121,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Vandervela',396540,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Vandeli',389115,'Panchmahals','Vadodara','Gujarat','Morva Hadaf','Panch Mahals','GUJARAT'),('Vandarda',391761,'Vadodara West','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Vanda ',364525,'Amreli','Rajkot','Gujarat','Savarkundla','Amreli','GUJARAT'),('Vanchhara',391430,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Vanch',382449,'Gandhinagar','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Vanavad',360530,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Vanasan',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Vanarasi',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Vanala',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Vanakpore',393115,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Vanagala',384170,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Vanadara',391107,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Vana ',363110,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Vamoti nani',370650,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Vamoti moti',370650,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Vamleshwar',393030,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Vamka',370135,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Vami',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Vamaj',382728,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Vamaiya',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Valvod',388530,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Valvi',392150,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Valvada ',394248,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Valvada',396105,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Valva',391761,'Vadodara West','Vadodara','Gujarat','Vaghodida','Vadodara','GUJARAT'),('Valuna',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Valukad',364270,'Bhavnagar','Rajkot','Gujarat','NA','Bhavnagar','GUJARAT'),('Valukad',364060,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Valsura ',361150,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Valsara',370511,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Valsad Sugar Factory ',396007,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Valsad Mota Bazar ',396001,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Valsad Mograwadi ',396001,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Valsad I.E. ',396035,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Valsad Chhipwad ',396001,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Valsad Abrama ',396002,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Valsad - Vankal',396007,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Valsad ',396001,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Valpura',385560,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Valotra',360570,'Porbandar','Rajkot','Gujarat','Ranavav','Porbandar','GUJARAT'),('Valoti',396380,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Valothi',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Valod ',394640,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Valner',393030,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Vallavpur',389001,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('VallabhVidyanagar ',388120,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Vallabhipur ',364310,'Bhavnagar','Rajkot','Gujarat','Vallabhiopur','Bhavnagar','GUJARAT'),('Vallabhapar (K)',370145,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Vallabhapar',370155,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Valka Mota',370625,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Valinda',382463,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Valiampura',383215,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Valia ',393135,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Valhia',382450,'Gandhinagar','Ahmedabad HQ','Gujarat','Barwala','Ahmedabad','GUJARAT'),('Valetva',388440,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Valer',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Valdhera',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Valavav',391774,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Valasana',384335,'Mahesana','Ahmedabad HQ','Gujarat','Vadnagar','Mahesana','GUJARAT'),('Valasan',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Valasan',360480,'Gondal','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Valasan',388325,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Valaran',383255,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Valar',364130,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Valan ',392310,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Valam ',384310,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Valak',395006,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Valagota',389130,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Valadar',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Valad',382355,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Vaktapura',391530,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Vaktapur ',383010,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Vakhatpar',363430,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Vakha',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Vakaner',391780,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Vajpur',393050,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Vajiria',391120,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Vajapur Juna',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Vainaj',388625,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Vahuva',385350,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Vahial',392140,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Vaheval',394248,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Vahelam',392150,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Vahar',394440,'Surat','Vadodara','Gujarat','Zankhvav','Surat','GUJARAT'),('Vahana',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Vahalu',392020,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Vaguma',391152,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Vagra ',392140,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Vagosana',382845,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Vagosan',384240,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Vaghvan',393030,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Vaghura',370410,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Vaghrota',383210,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Vaghrol',385510,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Vaghrej',396321,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Vaghrali',393151,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Vaghpur',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Vaghpur',383205,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Vaghpur',383251,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Vaghpar',363630,'Rajkot','Rajkot','Gujarat','Maliya  Miyana','Rajkot','GUJARAT'),('Vaghodia ',391760,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Vaghodia',393140,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Vaghnagar',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Vaghjipur',387610,'Kheda','Vadodara','Gujarat','Kapadvanj','Kheda','GUJARAT'),('Vaghjipur',389120,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Vaghetha',393140,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Vagheswari',383450,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Vagheli',391120,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Vaghela Derol',383275,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Vaghela',363030,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Vaghel',384240,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Vaghecha',394355,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Vaghchhipa',396125,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Vaghbod',389370,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Vaghawadi',384335,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Vaghasiya',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Vaghashi',388320,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Vaghasan',385566,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Vaghas',388260,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Vaghas',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Vagharali',393151,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Vaghaniya ',365456,'Amreli','Rajkot','Gujarat','Bagsra','Amreli','GUJARAT'),('Vaghaldhara',396375,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Vaghada',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Patdi','Surendra Nagar','GUJARAT'),('Vaghabari',396321,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Vagela',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Vagdi',383276,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Vagda',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Vagadiya',363530,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Vagadia Ni Andhari',389240,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Vagad',382245,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Vadzar',370427,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Vadviyala',362530,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Vadvasa',382305,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Vadvasa',383205,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Vadvas',389172,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Vadvalarana',360570,'Porbandar','Rajkot','Gujarat','Ranavav','Porbandar','GUJARAT'),('Vadva',370445,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Vadva',389152,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Vadu',382705,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Vadu',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Vadu',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Vadthal',387335,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Vadtal ',387375,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Vadsar Air Force',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Vadsar',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Vadsar',390010,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Vadsala',391243,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Vadrad',383205,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Vadpanchasara',361012,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Vadpada',394445,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Vadoth',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Vadosan',384001,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Vadoli',394350,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Vadoli',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Vadoli',394110,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Vadol',387640,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Vadodarazala',362275,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Vadodara Dodia',362255,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Vadodara ',390001,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Vadodara',382355,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Vadodar',360410,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Vadodar',389115,'Panchmahals','Vadodara','Gujarat','Morva Hadaf','Panch Mahals','GUJARAT'),('Vadod ',388370,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Vadod',360050,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Vadod',364320,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Vadod',382433,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Vadod',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Vadod',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Vadnagar ',384355,'Mahesana','Ahmedabad HQ','Gujarat','Vadnagar','Mahesana','GUJARAT'),('Vadnagar',362725,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Vadli',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Vadli',365560,'Amreli','Rajkot','Gujarat','Rajula','Amreli','GUJARAT'),('Vadla',362205,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Vadla',363030,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Vadkui',394651,'Bardoli','Vadodara','Gujarat','Vyara','Tapi','GUJARAT'),('Vadkhunta',393115,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Vadiya',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Vadiya',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Vadinar ',361010,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Vadina Gorda',389235,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Vadibehsrot',394670,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Vadia ',365480,'Amreli','Rajkot','Gujarat','Kunkvav-vadia','Amreli','GUJARAT'),('Vadia',394246,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Vadia',391520,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Vadia',391121,'Vadodara East','Vadodara','Gujarat','Tilakwada','Vadodara','GUJARAT'),('Vadia',363430,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Vadi',394440,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Vadi',389001,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Vadhvania',394335,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Vadhva',392020,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Vadhera',365540,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Vadhela',382450,'Gandhinagar','Ahmedabad HQ','Gujarat','Barwala','Ahmedabad','GUJARAT'),('Vadhavi',362002,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Vadhava',393041,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Vadharva',363670,'Rajkot','Rajkot','Gujarat','Maliya Miyana','Rajkot','GUJARAT'),('Vadharoda',382165,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Vadhana',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Vadhana',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Vadgas',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Vadgamda',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Vadgam ',385410,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Vadgam',388625,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Vadgam',382750,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Vadfalia',393125,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Vadera',365610,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Vadeli',388590,'Kheda','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Vadeli',391145,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Vadelav',389120,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Vadela',389140,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Vaddala',388255,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Vadbhet',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Vadavali ',384221,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Vadatra',361305,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Vadasma',382705,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Vadasinor Town (Vadasinor) ',388255,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Vadasinor ',388255,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Vadasar',370445,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Vadasan',382830,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Vadasada',360490,'Gondal','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Vadasada',364485,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Vadapadhar',370645,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Vadalia Sinhan',361305,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Vadali(Sabarkantha)',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Vadali',360020,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Vadali',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Vadali',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Vadali',360450,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Vadala Sethna',360520,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Vadala Rana',360590,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Vadala Moti Metana',361162,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Vadala Ghed',362625,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Vadala',362140,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Vadala',370410,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Vadala',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Vadal-moti',364530,'Amreli','Rajkot','Gujarat','Savarkundla','Bhavnagar','GUJARAT'),('Vadal ',362310,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Vadaj ',380013,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Vadaj',391105,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Vadagam ',383307,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Vadagam',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Vadadla Tanti',394317,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Vadadla',387130,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Vadadla',392015,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Vadadla',392130,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Vadadla',388430,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Vadadla',391445,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Vadadala',392155,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Vadad',388250,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Vada Talav',389360,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Vada',385555,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Vada',370465,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Vad',394440,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Vad',396040,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Vachhra',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Vachhol',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Vachhakapar',363650,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Vachhadal',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Vachchhesar',388710,'Panchmahals','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Vachalabara',361310,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Uvarsad ',382422,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Uva',394340,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Uttarsanda ',387370,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Utran Power House ',394105,'Surat','Vadodara','Gujarat','Chorasi','Surat','GUJARAT'),('Utran',394105,'Surat','Vadodara','Gujarat','Chorasi','Surat','GUJARAT'),('Utraj',391250,'Vadodara East','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Utelia',382230,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('UTCL Kovaya ',365541,'Amreli','Rajkot','Gujarat','Rajula','Amreli','GUJARAT'),('Utavali',391120,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Ustiya',370620,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Usrad',364240,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Urja Nagar ',392215,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Urad',391244,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Upsal',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Upleta ND T.S.O',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Upleta Lati Plot ',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Upera',384170,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Upariyala',382765,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Upardal',382110,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Untvada',388170,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Untvada',362560,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Untvad',365421,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Untva',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Untkhari',388205,'Anand','Vadodara','Gujarat','Unreth','Anand','GUJARAT'),('Unteva',394163,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Untdi ',396385,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Untbet Shampar',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Untarda',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Untadi',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Unjha Umiya Mataji ',384170,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Unjha Kotkuva ',384170,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Unjha ',384170,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('United Salt Work',370210,'Kutch','Rajkot','Gujarat','Gandhidham','Kachchh','GUJARAT'),('Undrel',382433,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Undrana',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Undra',384272,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Undra',387335,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Undra',388270,'Panchmahals','Vadodara','Gujarat','NA','Panch Mahals','GUJARAT'),('Undoth',370450,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Undhva',393151,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Undhela',387510,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Undhai',384335,'Mahesana','Ahmedabad HQ','Gujarat','Vadnagar','Mahesana','GUJARAT'),('Undera',391330,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Undel ',388640,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Undava',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Undani',384355,'Mahesana','Ahmedabad HQ','Gujarat','Vadnagar','Mahesana','GUJARAT'),('Undai',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Undach Vania Falia',396325,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Undach LuharFalia',396325,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Unchi Mandal',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Unchi Dhanal',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Unchha',383205,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Unchamala',394651,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Unchadi',382250,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Unchadi',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('UnavaBalva ',382650,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Unava ',384160,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Unai ',396590,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Unada',391140,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Unad',384335,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Una ',362560,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Un(Banaskantha)',385560,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Un',394210,'Surat','Vadodara','Gujarat','Chorasi','Surat','GUJARAT'),('Umta ',384320,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Umru',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Umreth ',388220,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Umrela',382245,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Umrapar',370165,'Kutch','Rajkot','Gujarat','Rapar','Kachchh','GUJARAT'),('Umrali',362020,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Umrali',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Umrali',360025,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Umrala ',364330,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Umrala',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Umraj',392015,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Umra',395007,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Umra',392150,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Umra',394130,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Umra',393041,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Umra',392020,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Umra',394248,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Umeta',388510,'Anand','Vadodara','Gujarat','Anklav','Anand','GUJARAT'),('Umej',362560,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Umedpura',383430,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Umedgadh ',383230,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Umbhel ',394325,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Umbharat',396436,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Umber',394230,'Surat','Vadodara','Gujarat','Sachin','Surat','GUJARAT'),('Umber',389110,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Umbari',362268,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Umbari',385550,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Umathi',391170,'Vadodara East','Vadodara','Gujarat','Kawant','Vadodara','GUJARAT'),('Umarzar',394440,'Surat','Vadodara','Gujarat','Zankhvav','Surat','GUJARAT'),('Umarwada',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Umarvavdoor',394635,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Umarva',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Umarva',393120,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Umarsadi',396125,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Umarpada ',394445,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Umarkutch',394630,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Umarkui',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Umarkui',394630,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Umari',384340,'Mahesana','Ahmedabad HQ','Gujarat','Satlasana','Mahesana','GUJARAT'),('Umargot',394445,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Umargam I.E. ',396171,'Valsad','Vadodara','Gujarat','Umbergaon','Valsad','GUJARAT'),('Umargam ',396170,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Umargam',393135,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Umarda',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Umarda',394445,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Umaraya',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Umarakh',394345,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Umaraia',365650,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Umalla ',393120,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Umaiya',370155,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Umadhra',393115,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Ukta',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Ukhreli',389260,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Ukhlod',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Ukheda',370670,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Ukharla',364050,'Bhavnagar','Rajkot','Gujarat','Gogha','Bhavnagar','GUJARAT'),('Ukhala Dungri',383460,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Ukardina Muvada',387610,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Ukardi',382140,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Ukarda',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Ukai Dam ',394680,'Bardoli','Vadodara','Gujarat','Songadh','Tapi','GUJARAT'),('Ukahlda',394670,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Ukadiya',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Ujleshvar',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Ujjanwada',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Ujeti',389350,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Ujedia',383215,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Ujalvav',364320,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Ugla',362565,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Ughroj',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Ugedi',370605,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Ugat ',396469,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Ugamedi ',364765,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Ugalvan',364280,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Udyognagar ',361004,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Udvada R.S. ',396185,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Udvada ',396180,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Udhnagam ',394210,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Udhna ',394210,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Udhavada',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Udharia',394440,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Udaynagar ',370203,'Kutch','Rajkot','Gujarat','Gandhidham','Kachchh','GUJARAT'),('Udan',382315,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Udalpur',384001,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Uchvania',389160,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Uchosan',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Uchhad',392150,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Uchet',389390,'Panchmahals','Vadodara','Gujarat','Jambughoda','Panch Mahals','GUJARAT'),('Uchedia',393110,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Uchchhal ',394375,'Bardoli','Vadodara','Gujarat','Uchchhal','Tapi','GUJARAT'),('Ucharpi',388270,'Panchmahals','Vadodara','Gujarat','NA','Panch Mahals','GUJARAT'),('Uchapan',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Uchaiya',365560,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Uchad',391121,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Ubsal',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Ubharia',393050,'Bharuch','Vadodara','Gujarat','Sagbara','Narmada','GUJARAT'),('Ubharan',383335,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Uber',392150,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Tuwa',388713,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Tuvad',384241,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Tuva',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Turkha',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Tupni',361335,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Tundi',394310,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Tundel',387230,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Tundav ',391775,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Tundav',384170,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Tundali',382732,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Tundaj',392150,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Tunda',370435,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Tunadar',383335,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Tuna',370205,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Tuna',393125,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Tumbadi',370435,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Tumb',396150,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Tulsishyam',362560,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Tulsipura',391510,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Tukwada',396185,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Tuked',394163,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Tukda Miyani',360579,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Tukda Gosa',360576,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Trent',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Trapaj ',364150,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Transad',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Tranol',388335,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Trankal',392140,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Tranja',387530,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Trambovad',387240,'Kheda','Vadodara','Gujarat','Sojitra','Anand','GUJARAT'),('Tramboda',365410,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Trambau',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Trambakpur',365660,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Tralsa',392020,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Trakuda',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Trakuda',365550,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Traj',387530,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Training College',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Tragad',382470,'Gandhinagar','Ahmedabad HQ','Gujarat','Ahmedabad City','Ahmedabad','GUJARAT'),('Toyani',389130,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Totarmata',391125,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Totana',385560,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Torna ',387365,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Tori',365480,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Torda',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Toranvera',396040,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Toraniya',362263,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Torania',387335,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Torania',360360,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Torangam',396360,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Toli',396469,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Tokrala',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Tokarva',394375,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Tokarva',389382,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Todiya',370670,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Toda',365430,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Toda',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Toda',370415,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Tobra',362268,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Titodan',382865,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Tithva',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Tithor',391450,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Tithgam',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Tithal',396001,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Tiskari',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Tintoi ',383250,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Tintoda',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Tintoda',382422,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Tinmas',362222,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Tindalva',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Timbla',389260,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Timbi ',362730,'Amreli','Rajkot','Gujarat','Jafrabad','Amreli','GUJARAT'),('Timbi',393140,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Timbi',364320,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Timbdi Jam',360450,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Timbdi Arab',360360,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Timbavadi ',362015,'Junagadh','Rajkot','Gujarat','Junagadh','Junagadh','GUJARAT'),('Timbarva Sankri',394355,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Timbarva',391250,'Vadodara East','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Timbarva',394305,'Bardoli','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Timbadi',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Timbachudi',385210,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Timba Road ',388710,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Timba Gam',388710,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Timba',364275,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Timba',384330,'Mahesana','Ahmedabad HQ','Gujarat','Satlasana','Mahesana','GUJARAT'),('Timba',391130,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Timba',388170,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Timba',394330,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Timba',382425,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Timba',363030,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Timana',364150,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Tilakwada ',391120,'Vadodara East','Vadodara','Gujarat','Dabhoi','Narmada','GUJARAT'),('Tikar Parmar',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Tikar (Ran)',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Tikar',362630,'Porbandar','Rajkot','Gujarat','Vanthli','Junagadh','GUJARAT'),('Tighasa',396375,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Thuwavi ',391107,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Thuti',394670,'Bardoli','Vadodara','Gujarat','Uchchhal','Surat','GUJARAT'),('Thuleta',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Thoyana',360570,'Porbandar','Rajkot','Gujarat','Ranavav','Porbandar','GUJARAT'),('Thoriyari',370145,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Thoriyali',363430,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Thoriyali',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Thori Thumbha',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Thori Mubarak',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Thordi',364110,'Bhavnagar','Rajkot','Gujarat','Gogha','Bhavnagar','GUJARAT'),('Thordi',362530,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Thorala',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Thoradi',364522,'Amreli','Rajkot','Gujarat','Savar Kundla','Amreli','GUJARAT'),('Thol I E ',382728,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Thol',382728,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Thnsa',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Thervada',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Thermal Power Station ',382041,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Therka',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Therasana',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Theba',361120,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Thavi',364525,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Thavar',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Thavad',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Thava',393130,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Thasra ',388250,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Tharad ',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Thara ',385555,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Thansa',364505,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Thaniyana',362640,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Thangadh ',363530,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Thanasavli',389220,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Thanapipli',362215,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Thana Galol',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Thamna(Anand)',388215,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Tham',392020,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Thaltej Road ',380054,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Thaltej ',380059,'Gandhinagar','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Thaliya ',364145,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Thali',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Thala',389175,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Thala',389180,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Thala',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Thala',396521,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Thadgam',391170,'Vadodara East','Vadodara','Gujarat','Kawant','Vadodara','GUJARAT'),('Thadach',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Terwada',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Tera ',370660,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Tentalav',391105,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Tenpur',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Teniwada',385210,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Tembhi',396150,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Tembada',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Telnar',387650,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Telavi',382145,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Telav',382210,'Ahmedabad City','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Tejlav',396521,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Tejgadh ',391156,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Tb Sanatorium',370427,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Tawal',393050,'Bharuch','Vadodara','Gujarat','Sagbara','Narmada','GUJARAT'),('Tavra',392011,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Tavi',363427,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Tavdi',396445,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Tavdi',393140,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Tavadia',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Tatosan',382820,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Tatiyana',385560,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Tatithaiya',394305,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Tatarpura',390004,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Tatania',364280,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Tatania',365650,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Tatam',364765,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Tarvadia Vaja',389154,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Tarvadia Himat',389154,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Tarvada',365610,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Tarsingda',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Tarsara',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Tarsali',390009,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Tarsai',360531,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Tarsadi',396418,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Tarsadi',394350,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Tarsada',394160,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Tarora',384240,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Taropa',393140,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Tarnetar',363530,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Tarmaniya',382775,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Tarmalia',396145,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Tarkhanda',389350,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Targol',391125,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Targhari',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Targhara',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Targhadia',360023,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Targhadi',363660,'Rajkot','Rajkot','Gujarat','Maliya','Rajkot','GUJARAT'),('Tareti',384001,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Tared',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Tarbhon',394350,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Tarapur(Anand)',388180,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Tarapur',394440,'Surat','Vadodara','Gujarat','Zankhvav','Surat','GUJARAT'),('Tarangaji Temple',384330,'Mahesana','Ahmedabad HQ','Gujarat','Satlasana','Mahesana','GUJARAT'),('Taranagar',384241,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Taraktalv',365610,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Tarakiya',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Taraj',394315,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Tarabh',384310,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Tappar (S)',370425,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Tappar',370110,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Taparwada',394365,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Tanvad',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Tansa ',364120,'Bhavnagar','Rajkot','Gujarat','Gogha','Bhavnagar','GUJARAT'),('Tanklipada',394716,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Tankaria ',392240,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Tankaria',361320,'Jamnagar','Rajkot','Gujarat','Jamkalyanpur','Jamnagar','GUJARAT'),('Tankari ',392040,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Tankari',393150,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Tankara ',363650,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Tankal',396560,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Tandi',389180,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Tandalja',390012,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Tandalja',391135,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Tandaliya',383275,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Tanda',389160,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Tanchha',392025,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Tanasva',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Tanakhala',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Tana ',364260,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Tambolia',384230,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Talwana',370460,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Talsana',363427,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Talodra',393110,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Talodra',362240,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Talod M Y ',383215,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Talod ',383215,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Talod',383340,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Taliarabo',396310,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Talgajarda',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Talda',365550,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Talavdi',389370,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Talavchora',396521,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Talangpur',394230,'Surat','Vadodara','Gujarat','Sachin','Surat','GUJARAT'),('Talala ',362150,'Junagadh','Rajkot','Gujarat','Talala','Junagadh','GUJARAT'),('Talaja ',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Talagana',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Takodi',384221,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Takhatgadh',383210,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Takatuka ',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Takarwada',385520,'Banasanktha','Ahmedabad HQ','Gujarat','NA','Banaskantha','GUJARAT'),('Takarma',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Tajpuri',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Tajpura',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Tajpura',389350,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Tajpur (Camp)',383305,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Tajpur',383205,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Tajpar',364710,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Tagadi',382250,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Taga',370155,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Tadva',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Tadkeshwar ',394170,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Tadkachhla',391135,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Tadhivedi',383422,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Tadgam',396135,'Valsad','Vadodara','Gujarat','NA','Valsad','GUJARAT'),('Tadav',385566,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Tad',362510,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('T B Sanatorium ',390021,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('T B Nagar ',382350,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Syadla',394130,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Syadla',394340,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Svr College ',395007,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Suvali',394517,'Surat','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Suvai',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Suvag',360110,'Rajkot','Rajkot','Gujarat','Dhrol','Rajkot','GUJARAT'),('Sutrel',392140,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Sutrapada ',362275,'Junagadh','Rajkot','Gujarat','Sutrapada','Junagadh','GUJARAT'),('Suthvad',396530,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Suthri',370490,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Sutharvansa',389180,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Suthar Nesdi',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Sutaria',388265,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Susvav',363351,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Sushiya',382750,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Suryavadar',361325,'Jamnagar','Rajkot','Gujarat','Jamkalyanpur','Jamnagar','GUJARAT'),('Surwada',396007,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Survadar',363351,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Surva',362140,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Surpura',384210,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Surpur',389260,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Surpur',383430,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Surnivas',364505,'Bhavnagar','Rajkot','Gujarat','NA','Bhavnagar','GUJARAT'),('Surnagar',364275,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Surkuva',388130,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Surkheda',391165,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Surkhai',396560,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Surka',364765,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Surendranagar Vadipara ',363001,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Surendranagar Udyognagar ',363002,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Surendranagar Station Road ',363002,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Surendranagar M.P.S.C. ',363002,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Surendranagar ',363001,'Surendranagar','Rajkot','Gujarat','Wadhwanicity','Surendra Nagar','GUJARAT'),('Sureli',388210,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Sureli',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Sureli',389340,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Surel',382780,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Surat Textile Market ',395002,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Surat RS ',395003,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Surat City ',395003,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Surat ',395003,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Surasamal',391115,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Surana',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Surali',394340,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Surajkaradi ',361347,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Suraj',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Supedi ',360440,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Supakurel',396418,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Sunvala',382145,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Sunsar',384225,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Sunsar',383450,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Sunokh',383250,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Sunok',384170,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Sunevkalla',394810,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Sundra',388150,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Sundhia ',384345,'Mahesana','Ahmedabad HQ','Gujarat','Vadnagar','Mahesana','GUJARAT'),('Sunderpura',391145,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Sunderpura',393145,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Sunderpur',394375,'Bardoli','Vadodara','Gujarat','Uchchhal','Surat','GUJARAT'),('Sunderiana',382255,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Sundarpura',391243,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Sundarpur',382860,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Sundarna ',388480,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Sundari',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Sundan',388305,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Sundalpura',388210,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Sunda',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Sunav ',388470,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Sumrasar Jat',370030,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Sumrasar (S)',370001,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Sultanpur(Rajkot)',364470,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Sultanpur',384355,'Mahesana','Ahmedabad HQ','Gujarat','Vadnagar','Mahesana','GUJARAT'),('Sultanpur',396406,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Sultanpur',363630,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Sultanpur',362225,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Sultanabad',362630,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Suliyat',389110,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Sukvel',393040,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Sukhsar ',389190,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Sukhrampura ',380023,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Sukhpur',362310,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Sukhpar Roha',370030,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Sukhpar (V)',370155,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Sukhpar (S)',370655,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Sukhpar (B)',370020,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Sukhpar ',370040,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Sukhlav',396125,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Sukhala',396126,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Sukhabari',396540,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Sukesh',396125,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Sukal',391155,'Vadodara East','Vadodara','Gujarat','NA','Vadodara','GUJARAT'),('Suka',393151,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Sujnipur',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Sujatpura',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Sujapar',370660,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Suigam ',385570,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Sui',388225,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Sughad',382424,'Ahmedabad City','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Sugaria',370105,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Sugar Factory Bardoli ',394601,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Sugar Factory Bamania ',394246,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Sugar Factory',396360,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Sudia',389180,'Panchmahals','Vadodara','Gujarat','Likheda','Dahod','GUJARAT'),('Sudasana ',384340,'Mahesana','Ahmedabad HQ','Gujarat','Satlasana','Mahesana','GUJARAT'),('Sudamada ',363440,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Subir ',394716,'Bardoli','Vadodara','Gujarat','Ahwa','The Dangs','GUJARAT'),('Subhelav',391775,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Subhashpar',370601,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Subhanpura ',390023,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Subapura',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Sub Foreign ',380004,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Station Road(Jamnagar)',361001,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Stadium Marg ',380013,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('SRPF Gr-XIIIGhanteshwar',360006,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('SRP Group I ',390001,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('SRP Group Area Nadiad ',387001,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Soyani',394310,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Soyal',361210,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Sosiya',364081,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Sorna',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Sorapada',393050,'Bharuch','Vadodara','Gujarat','Sagbara','Narmada','GUJARAT'),('Sonwada',396375,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Sonwada',396125,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Sonvadia',360515,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Sonvadi',396350,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Sonsak',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Sonipur',388245,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Soni',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Songam',393151,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Songadh ',364250,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Songadh',363530,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Soneth',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Sondla Khara',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Sondhal Wada',396125,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Sondarda',362227,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Sonasan ',383210,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Sonariya',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Sonardi',361305,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Sonardi',362205,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Sonaiya',388245,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Somasar',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Soma Talav ',390025,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Solsumba ',396165,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Solia',393040,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Solgam',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Soldi',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Soldhara',396521,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Solaj',362268,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Solaiya',382810,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Sola H B C ',380063,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Sola ',380060,'Gandhinagar','Ahmedabad HQ','Gujarat','Ahmedabad','Ahmedabad','GUJARAT'),('Sokhdaradhu',391240,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Sokhda ',391745,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Sokhda',363670,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Sokhda',382830,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Sokhda',382745,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Sokhada',387570,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Sojitra ',387240,'Kheda','Vadodara','Gujarat','Sojitra','Anand','GUJARAT'),('Soja',382735,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Sodvadar',360440,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Sodpur',387330,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Sodhi',382463,'Gandhinagar','Ahmedabad HQ','Gujarat','Barwala','Ahmedabad','GUJARAT'),('Sodhav',384230,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Sodhana',360590,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Sodhaliya',391152,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Sodgam',393135,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Sobhasan',384335,'Mahesana','Ahmedabad HQ','Gujarat','Vadnagar','Mahesana','GUJARAT'),('Sobhasan',382145,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Sobhasan',384001,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Siyot',370627,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Siyasan',383450,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Siyali',393110,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Siyalaj',394110,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Siyal',389265,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Siyada',396540,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Siya',385560,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Sitwada',383205,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Sitpur',391110,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Sitpon',392210,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Sitol',383255,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Sithan',394130,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Sitapur',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Sitana',362625,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Sisva',388530,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Sisva',391740,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Sisrana',385421,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Sisor',394651,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Sisodra ',396463,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Sisodra',394810,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Sisodara (A)',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Sisli',360590,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Sisiodra',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Sisang',361162,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Siracha',370435,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Sipur',384241,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Sipor ',384335,'Mahesana','Ahmedabad HQ','Gujarat','Vadnagar','Mahesana','GUJARAT'),('Sinugara',370110,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Sinor ',391115,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Sinjivada',388180,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Sinhuj ',387430,'Kheda','Vadodara','Gujarat','Mehmedabad','Kheda','GUJARAT'),('Sinhol',388130,'Anand','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Sinhan Aher',361305,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Singsar',362275,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Singpur',394670,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Singod',394335,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Singlav',388560,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Singla',391168,'Vadodara East','Vadodara','Gujarat','Ch.udepur','Vadodara','GUJARAT'),('Singhali',387430,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Singedi',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Singapur',389146,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Singanpore',395004,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Singana',394716,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Singad',396321,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Singach',361010,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Singa',383225,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Sindhvai ',392001,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Sindhrot',391330,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Sindhot',392210,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Sindhikuva',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Sindhavadar',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Sindharej',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Sindhaj',362710,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Sindhai',396590,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Sinay',370205,'Kutch','Rajkot','Gujarat','Gandhidham','Kachchh','GUJARAT'),('Sinaj',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Sinad',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Simrolibava',362220,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Simri',391244,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Simran',364521,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Simodra',394405,'Surat','Vadodara','Gujarat','Velachha','Surat','GUJARAT'),('Simlia Buzarg',389155,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Simlia',389180,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Simli',391105,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Simlak',396415,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Simej',382265,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Simasi',362560,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Simasi',362215,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Simartha',392220,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Simarda',388480,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Simar',362255,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Simar',362550,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Simar',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Porbandar','GUJARAT'),('Simamoi',389382,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Simalia Khurd',389154,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Simalia',391110,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Simalia',392220,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Simalia',389172,'Panchmahals','Vadodara','Gujarat','Santrampur','Dahod','GUJARAT'),('Simalia',389341,'Panchmahals','Vadodara','Gujarat','Ghoghamba','Panch Mahals','GUJARAT'),('Simalgam',396436,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Simadhra',393115,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Siludi',393135,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Silod',387320,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Sikka Tps ',361141,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Sikka Mahajanpada',361140,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Siker',394620,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Sikarpur',370150,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Sika',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Sihori ',385550,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Sihora',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Sihora',391530,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Sihor ',364240,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Sihor',382140,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Sihi',384170,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Sigam',392170,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Sidumber',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Sidsara',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Sidsar',364060,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Sidokar',362255,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Sidhsar',363430,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Sidhsar',360530,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Sidhpur Market Yard ',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Sidhpur Jam Chakla ',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Sidhpur Jafri Baug ',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Sidhpur ',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Sidhada',385360,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Siddhigram ',362276,'Junagadh','Rajkot','Gujarat','Sutrapada','Junagadh','GUJARAT'),('Siawada',382308,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Siawada',382170,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Sia',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Shyamji Krishna Varma Nagar ',370601,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Shurasamal',387115,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Shuklatirth ',392030,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Shrinathgadh',360330,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Shrikothi',392110,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Shri Sardanagar',363641,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Shri Amirgadh ',385130,'Banasanktha','Ahmedabad HQ','Gujarat','Shri Amirgadh','Banaskantha','GUJARAT'),('Shravana',383030,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatanagar','Sabarkantha','GUJARAT'),('Shobhavad',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Shobha Vadla',362020,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Shiyani ',363427,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Shiyanagar',364760,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Shiyalbet',365560,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Shiyal',382230,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Shivrajpur ',389370,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Shivrajpur',360050,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Shivrajgadh',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Shivpura',382140,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Shivlakha',370145,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Shivendra Nagar',364265,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Shiva',360531,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Shishak',360330,'Gondal','Rajkot','Gujarat','Kotda','Rajkot','GUJARAT'),('Shirvaniya',363410,'Surendranagar','Rajkot','Gujarat','NA','Surendra Nagar','GUJARAT'),('Shirva',370465,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Shirola',391110,'Vadodara East','Vadodara','Gujarat','Dabhoi','Narmada','GUJARAT'),('Shira',391121,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Shinol',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Shingda',360590,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Shinavad',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Shili',388210,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Shildha',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Shilana',365440,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Shilaj',380059,'Gandhinagar','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Shil ',362240,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Shikara',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Shiholi Moti',382355,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Shetruji Dam',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Shetra',387560,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Sherthali',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Shertha',382423,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Sherpura',389341,'Panchmahals','Vadodara','Gujarat','Ghoghamba','Panch Mahals','GUJARAT'),('Sherpura',392015,'Bharuch','Vadodara','Gujarat','Bharuch','Vadodara','GUJARAT'),('Sherpura',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Sherpur',383410,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Sherkhi',391330,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Sheriyakhan',362250,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Sheriaj',362225,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Sheri',387305,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Shergadh',362245,'Junagadh','Rajkot','Gujarat','Malia Hatina','Junagadh','GUJARAT'),('Sherdi',362640,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Sherdi',394520,'Surat','Vadodara','Gujarat','NA','Surat','GUJARAT'),('Sherdi',370465,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Sherbaug ',362255,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Sherau',385566,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Shera',393030,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Sher',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Shelana',364525,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Shela',380058,'Ahmedabad City','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Shela',382465,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Shekhpur',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Shekhpur',394250,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Shekhpipariya',365435,'Amreli','Rajkot','Gujarat','Lathi','Amreli','GUJARAT'),('Shekhpar',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Shehrav',393150,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Shehera ',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Shedubhar',365430,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Shatrunda',387430,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Shastrinagar(Ahmedabad)',380013,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Sharma',362230,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Shardanagar ',380007,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Shardagram ',362235,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Sharadnagar ',390009,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Shapur(S) ',362205,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Shapar( Halar)',360024,'Rajkot','Rajkot','Gujarat','Kotda Sangani','Rajkot','GUJARAT'),('Shapar',365440,'Amreli','Rajkot','Gujarat','Visavadar','Junagadh','GUJARAT'),('Shantipura',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Shantinagar',364280,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Shankhalpur',384210,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Shankarpura',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Shankar Talav',396375,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Shangal',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Shampura',394330,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Shampur',383320,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Shampar',361240,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Shamna',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Shamlaji ',383355,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Shakhpur',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Shakat Sanala',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Shakarpur',388620,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Shahwadi',382405,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Shahpura',391220,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Shahpur(Ahmedabad)',380004,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Shahpur',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Shahpur',392210,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Shahpur',382355,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Shahpur',382250,'Gandhinagar','Ahmedabad HQ','Gujarat','Barwala','Ahmedabad','GUJARAT'),('Shahibag ',380004,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Shah Alam Roza ',380028,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Shah',394421,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Sevni ',394320,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Sevasi ',391101,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Sevania',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('SevaliaRs ',388245,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Sevala',384220,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Sevada',391120,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Sevad',393135,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Serisa',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Senjaliya',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Senjal',364515,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Sengpur',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Sengpur',391152,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Sendhani',385421,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Semodra',385410,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Semla',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Sembalia (Poshina)',383422,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Sembal Pani',385110,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Semarvav',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Semalia',383215,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Selut',395005,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Selud',394375,'Bardoli','Vadodara','Gujarat','Uchchhal','Surat','GUJARAT'),('Selod',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Selari',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Selamba ',393025,'Bharuch','Vadodara','Gujarat','Sagbara','Bharuch','GUJARAT'),('Sejwa',391135,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Sejvad',394620,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Sejakuva',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Sejakpar',363440,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Segwa Simli',391155,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Segvi',396007,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Segva Chhama',395005,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Segva',396045,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Segva',392210,'Bharuch','Vadodara','Gujarat','Bharuch','Vadodara','GUJARAT'),('Segva',394320,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Segva',394130,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Segupada',394365,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Segras',362650,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Sedrana',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Sedla',382745,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Sedarda',364280,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Sayra',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Sayma ',388170,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Sayla(Surendra Nagar)',363430,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Sayla',394370,'Bardoli','Vadodara','Gujarat','Nizar','Surat','GUJARAT'),('Sayla',387530,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Saykha',392140,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Sayar',393105,'Bharuch','Vadodara','Gujarat','Rajpipala','Vadodara','GUJARAT'),('Sayan ',394130,'Surat','Vadodara','Gujarat','Sayan','Surat','GUJARAT'),('Sayan',393030,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Sayajipura',390019,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Sayajiganj ',390020,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Savni',362268,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Savli ',391770,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Savli',391121,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Savli',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Savlana',382775,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Saviyana',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Savgadh',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Savela',383340,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Savda',382765,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Savarkundla ',364515,'Amreli','Rajkot','Gujarat','Savarkundla','Amreli','GUJARAT'),('Savar ',364515,'Amreli','Rajkot','Gujarat','Savar Kundla','Amreli','GUJARAT'),('Savapura',385566,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Savala',384001,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Savadi',363650,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Sava',394120,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Sauka',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Satun',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Satpada',364265,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Satodad',360405,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Satmana',389320,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Satlasana ',384330,'Mahesana','Ahmedabad HQ','Gujarat','Satlasana','Mahesana','GUJARAT'),('Satiya',361162,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Satimal',396051,'Valsad','Vadodara','Gujarat','Bansda','Navsari','GUJARAT'),('Sathvav',394160,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Sathrota',389350,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Sathra',364150,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Sathra',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Sathod',391110,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Sathamba ',383340,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Sathal',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Satem ',396466,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Satarda',383345,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Satapar',360330,'Gondal','Rajkot','Gujarat','Kotda','Rajkot','GUJARAT'),('Satapar',370110,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Satapar',360531,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Satapar',361320,'Jamnagar','Rajkot','Gujarat','Jamkalyanpur','Jamnagar','GUJARAT'),('Sat Talav',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Sastapur',387335,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Sasan Gir ',362135,'Junagadh','Rajkot','Gujarat','Talala','Junagadh','GUJARAT'),('Sasam',385515,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Sarvoday Kendra',383355,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Sarvoday Ashram',384310,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Sarvania',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Sarvani',396540,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Sarvan Fokdi',394445,'Surat','Vadodara','Gujarat','Zankhvav','Surat','GUJARAT'),('Sarvala',394370,'Bardoli','Vadodara','Gujarat','Nijhar','Surat','GUJARAT'),('Sarval',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Sarval',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Sarva',364720,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Sarthana ',395013,'Surat','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Sartanpur',384330,'Mahesana','Ahmedabad HQ','Gujarat','Satlasana','Mahesana','GUJARAT'),('Sartanpar',364050,'Bhavnagar','Rajkot','Gujarat','Gogha','Bhavnagar','GUJARAT'),('Sartanpar',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Sarsoli',383335,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Sarsiya ',365660,'Amreli','Rajkot','Gujarat','Dhari','Amreli','GUJARAT'),('Sarsinda',391130,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Sarsavadi',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Sarsav',383460,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Sarsav',389120,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Sarsav',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Sarsai ',362120,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Sarsadi',389240,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Sarsad',393120,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Sarsa ',388365,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Sarsa',393115,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Sarpore Pardi',396433,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Sarovar',394715,'Bardoli','Vadodara','Gujarat','Ahwa','Surat','GUJARAT'),('Sarotra',385135,'Banasanktha','Ahmedabad HQ','Gujarat','Shri Amirgadh','Banaskantha','GUJARAT'),('Saronda',396135,'Valsad','Vadodara','Gujarat','NA','Valsad','GUJARAT'),('Saron',396001,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Saroli',383460,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Saroli',394520,'Surat','Vadodara','Gujarat','Variav','Surat','GUJARAT'),('Saroli',395010,'Surat','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Sarol',388530,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Sarodhi',396001,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Sarodhi',396185,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Saroda',382260,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Saroda',388255,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Sarod ',392180,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Sarnej',391510,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Sarmbhda',365630,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Sarmat',361006,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Sarli',370485,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Sarla',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Sarkui',394160,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Sarkhej Road ',380007,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Sarkhej ',382210,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Sarkhej',387635,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Sarkhadi',362720,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Sariyad ',384272,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Saring',392220,'Bharuch','Vadodara','Gujarat','Bharuch','Vadodara','GUJARAT'),('Sarigam ',396155,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Sari',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Sargwala',382230,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Sargi',391140,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Sargasan',382421,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Sarera',364280,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Sardoi ',383320,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Sardhav ',382640,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Sardharpur',360375,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Sardharka',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Sardhar ',360025,'Rajkot','Rajkot','Gujarat','Sardhar','Rajkot','GUJARAT'),('Sardarpur(Mahesana)',382860,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Sardarpur',384340,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Sardarpur',362020,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Sardarnagar ',382475,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Sardarganj (Anand) ',388001,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Sardargadh ',362640,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Sardarbaug (Bardoli) ',394601,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Sardar Nagar Society ',390002,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Sardar Krishinagar ',385506,'Banasanktha','Ahmedabad HQ','Gujarat','Dantiwada','Banaskantha','GUJARAT'),('Sarda',394445,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Sarbhon ',394350,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Sarbhan ',392035,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Saravad',363660,'Rajkot','Rajkot','Gujarat','Maliya','Rajkot','GUJARAT'),('Sarav',396406,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Saraswani',387430,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Saraswa( North)',389240,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Saraswa',389110,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Saraswa',389365,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Saraspur ',380018,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Sarasavani',391445,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Saras',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Sarar',391243,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Sarapdad',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Sarandi',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Saran',392140,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Sarali',387630,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Saral',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Sarakadiya',365550,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Saraiya',396560,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Sarai',396130,'Valsad','Vadodara','Gujarat','NA','Valsad','GUJARAT'),('Saradia',388260,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Sara',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Sara',396590,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Saputara ',394720,'Bardoli','Vadodara','Gujarat','Ahwa','The Dangs','GUJARAT'),('Sapreda',385566,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Sapeda',370105,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Sapawada',383430,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Sapar',363520,'Surendranagar','Rajkot','Gujarat','NA','Surendra Nagar','GUJARAT'),('Sapar',363630,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Sapakda',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Sanyra (J)',370610,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Sany',370145,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Sanvav',362530,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Sanval',385566,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Sanva',370155,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Santrampur ',389260,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Santkawnar Colony ',390006,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Santhli',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Santhali-bhukhli',365480,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Santhal ',384430,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Santej',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Santalpur ',385350,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Santalpur',362610,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Sant Road ',389120,'Panchmahals','Vadodara','Gujarat','Morva Hadaf','Panch Mahals','GUJARAT'),('Sant',389260,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Sansrod',392220,'Bharuch','Vadodara','Gujarat','Bharuch','Vadodara','GUJARAT'),('Sansori',360515,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Sansoli',387130,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Sansoli',389320,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Sansej',388180,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Sanpur',391430,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Sanosari',361320,'Jamnagar','Rajkot','Gujarat','Jamkalyanpur','Jamnagar','GUJARAT'),('Sanosara ',364230,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Sanosara',360515,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Sanosara',365610,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Sanosara',362630,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Sanosara',360003,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Sanosara',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Sanosara',370030,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Sanor',391105,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Sanodar',364050,'Bhavnagar','Rajkot','Gujarat','Gogha','Bhavnagar','GUJARAT'),('Sanoda',382305,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Sankra',384255,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Sankod',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Sankli',394655,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Sankheshwar ',384246,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Sankhej',387120,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Sankheda ',391145,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Sankhari',384275,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Sankhandra',391135,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Sankhadasar No.1',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Sankarda',391350,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Sankarda',394375,'Bardoli','Vadodara','Gujarat','Uchchhal','Surat','GUJARAT'),('Sankali',363030,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Sanjeli ',389175,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Sanjaya',387375,'Kheda','Vadodara','Gujarat','Petlad','Kheda','GUJARAT'),('Sanjan Bandar',396150,'Valsad','Vadodara','Gujarat','Umbergaon','Valsad','GUJARAT'),('Sanjan ',396150,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Sanjali',394115,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Sanjali',393120,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Saniada',389380,'Panchmahals','Vadodara','Gujarat','Ghoghamba','Panch Mahals','GUJARAT'),('Saniad',391244,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Sania Kande',394210,'Surat','Vadodara','Gujarat','Udhna','Surat','GUJARAT'),('Sania Hemad',395006,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Sangvadar',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Sangra',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Sangpura',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Sangodra',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Sangnara',370675,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Sangma',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Sanghipuram ',370511,'Kutch','Rajkot','Gujarat','NA','Kachchh','GUJARAT'),('Sanghad',370205,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Sangavada',389260,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Sangasar',382463,'Gandhinagar','Ahmedabad HQ','Gujarat','Barwala','Ahmedabad','GUJARAT'),('Sanganva',360035,'Gondal','Rajkot','Gujarat','Lodhika','Rajkot','GUJARAT'),('Sanganpur',382710,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Sangadol',391760,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Sanesh',364313,'Bhavnagar','Rajkot','Gujarat','Vallbhipur','Bhavnagar','GUJARAT'),('Sandhvaya',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Sandhosi',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Sandhnidhar',362710,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Sandhkhakhara',364275,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Sandhier',394130,'Surat','Vadodara','Gujarat','Sayan','Surat','GUJARAT'),('Sandhida',382455,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Sandheli',388250,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Sandhav',370645,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Sandhana',387350,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Sandhan',370490,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Sandha',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Sandha',362220,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Sandesar',388130,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Sandesar',387610,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Sander',384275,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Sandasal ',391530,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Sandalpore',396475,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Sanavia',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Sanathali',364490,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Sanathal',382210,'Ahmedabad City','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Sanand ',382110,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Sanaliya',365535,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Sanali',387330,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Sanali',385110,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Sanali',360055,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Sanali',365450,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Sanala',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Sanala',364510,'Bhavnagar','Rajkot','Gujarat','Jesar','Bhavnagar','GUJARAT'),('Sanala',365450,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Sanakhda ',362550,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Sanadra',388235,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Sanada',391168,'Vadodara East','Vadodara','Gujarat','Ch.udepur','Vadodara','GUJARAT'),('Sanada',391165,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Samtra',370040,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Samthan',394335,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Samter',362560,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Samsherpura',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Samsabad',391107,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Samroli',396521,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Samrod',394315,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Samra',391244,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Sampra',384272,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Sampla',391421,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Sampawada',384210,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Sampad',383120,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Sampa',382315,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Sampa',389001,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Sampa',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Samot',393040,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Samor',393010,'Bharuch','Vadodara','Gujarat','Ankleshwar','Vadodara','GUJARAT'),('Samor',361310,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Samoj',392180,'Bharuch','Vadodara','Gujarat','Jambsuar','Vadodara','GUJARAT'),('Samoda',384275,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Samoda',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Samni ',392025,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Samlod',392210,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Samli',389001,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Samlaya R S ',391520,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Samla',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Samkhiyali ',370150,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Samiyala',391410,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Sami ',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Samgahan',394730,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Sametri',382315,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Sametra',384001,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Samega',362620,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Samdhiyala-1',365555,'Amreli','Rajkot','Gujarat','Rajula','Amreli','GUJARAT'),('Samdhiyala',365440,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Samdhi',385515,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Sambhoi',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Sambharai',370450,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Sambha',392155,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Samba',394248,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Samau',382810,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Samau',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Samarvada',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Samarpada',396126,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Samarpada',393040,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Samarkha ',388360,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Samaria',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Samarda',362230,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Samapur',396439,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Samana',360520,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Samalkuva',389365,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Samaghogha',370415,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Samadhiyala( Mulani)',364230,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Samadhiyala No. 2',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Samadhiyala No. 1',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Samadhiyala',362260,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Samadhiyala',364320,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Samadhiyala',363440,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Samadhiyala',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Samadhiyala',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Samadhiyala',360020,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Samadhiyala',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Samadara',387120,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Sama',389320,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Salvav',396191,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Salun ',387360,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Saloj',391135,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Salla',385515,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Salki',382305,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Saliawadi',388255,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Salia',389130,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Salera',383422,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Salej',396350,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Saldi',382730,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Salaya Mota',370465,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Salaya ',361310,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Salatpur',383215,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Salasar',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Salara',389172,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Salangpur - Hanuman',382450,'Gandhinagar','Ahmedabad HQ','Gujarat','Barwala','Ahmedabad','GUJARAT'),('Salangpur',364750,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Salal ',383120,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Salajada',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Salaiya',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Salaiya',394160,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Salaiya',388260,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Saladra',392012,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Saladi',365535,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Sal Pipalia',360110,'Rajkot','Rajkot','Gujarat','Lodhika','Rajkot','GUJARAT'),('Sakkarpore',393020,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Sakhvadar',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Sakhpar Mota',364750,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Sakhdavadar',362263,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Sakhdasar No.2',364120,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Sakarpatal',394730,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Sakariya',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Sakar',382775,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Sajora',389341,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Sajoi',389382,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Sajod ',393020,'Bharuch','Vadodara','Gujarat','Ankleshwar','Bharuch','GUJARAT'),('Sajnatimba',365535,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Sajiyavadar',365630,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Sajivav',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Sajanvav',365555,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Sajanpar',363641,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Sajadiyali',360405,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Sajadiyali',360450,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Saiyat',388225,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Saiyad Rajpara',362550,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Saiwada',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Saijpur Bogha ',382345,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Saijpur',382405,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Saijpur',388570,'Kheda','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Saij',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Saidivasana',391170,'Vadodara East','Vadodara','Gujarat','Kawant','Vadodara','GUJARAT'),('Saidal',391761,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Sai Devalia',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Sai',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Sahuda',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Sahij',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Sahesa',384290,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Sahebji NaMuvada',382315,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Sahebapura',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Sagwa',391105,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Sagthala',384325,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Sagtala',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Sagrosana',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Sagrampura Putli ',395002,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Sagra',396445,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Sagpur',383307,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Sagodiya',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Saghankshetra',385010,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Sagdapada',389190,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Sagbara ',393050,'Bharuch','Vadodara','Gujarat','Sagbara','Bharuch','GUJARAT'),('Sagawada',389115,'Panchmahals','Vadodara','Gujarat','Morva Hadaf','Panch Mahals','GUJARAT'),('Saduthala',384315,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Sadulkanava',363642,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Sadra ',382320,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Sadra',391430,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Sadra',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Sadra',391510,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Sadodar',360520,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Sadlav',396463,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Sadhli ',391250,'Vadodara East','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Sadhli',391168,'Vadodara East','Vadodara','Gujarat','Ch.udepur','Vadodara','GUJARAT'),('Sadhi',391445,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Sadha',383030,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Sadgavan',394380,'Bardoli','Vadodara','Gujarat','Nijhar','Surat','GUJARAT'),('Sadau',370421,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Sadatpura',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Sadarpur',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Sadakpore',396521,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Sadadvel',396560,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Sadadvel',394365,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Sadad',382775,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Sachodar',383110,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Sachin R.S.',394230,'Surat','Vadodara','Gujarat','Chorasi','Surat','GUJARAT'),('Sachin G.I.D.C. ',394230,'Surat','Vadodara','Gujarat','Chorasi','Surat','GUJARAT'),('Sachin ',394230,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Sachana',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Sachana',361230,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Sabuti',392020,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Sabuti',393041,'Bharuch','Vadodara','Gujarat','NA','Bharuch','GUJARAT'),('Sabli',383421,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Sabarmati ',380005,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Sabaria',393125,'Bharuch','Vadodara','Gujarat','Valia','Surat','GUJARAT'),('Sabalwad',383430,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Sabalpur',384355,'Mahesana','Ahmedabad HQ','Gujarat','Vadnagar','Mahesana','GUJARAT'),('S A Mills ',380008,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('S A C ',380015,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Ruzvani',396040,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Ruvel',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Ruvavi',384275,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Ruvand',391220,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Ruvabari',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Rustampura(Vadodara)',391761,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Rustampura(Surat)',395002,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Rustampura',388245,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Rupvel',396321,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Rupvada',394690,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Ruppura',387335,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Ruppur',384220,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Rupiapura',388480,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Rupgadh',382240,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Rupavati',360360,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Rupavati',364505,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Rupavati',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Rupan',394160,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Rupamora',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Rupal ',382630,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Rupal',383030,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Rupal',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Rupal',385421,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Rupa Kheda',389190,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Runi',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Runi',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Runi',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Rundh',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Runaj',388150,'Kheda','Vadodara','Gujarat','Sojitra','Anand','GUJARAT'),('Runad',392170,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Rumla ',396060,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Rumkitalav',394370,'Bardoli','Vadodara','Gujarat','Nizar','Surat','GUJARAT'),('Rumadia',391168,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Rughnathpur',365635,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Rudel',388140,'Kheda','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Rudatal',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Rudardi',383110,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Rudan',387335,'Kheda','Vadodara','Gujarat','Mehmedabad','Kheda','GUJARAT'),('Rozva',388235,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Rozivada',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Rozdev',393050,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Rozda',360590,'Porbandar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Rozam',389160,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Roza Tankaria',392140,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Royal',364150,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Roswad',394170,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Ropa',393105,'Bharuch','Vadodara','Gujarat','Rajpipala','Vadodara','GUJARAT'),('Ronvel ',396055,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Rola',396375,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Rojka',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Rojiya',364130,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Rojid',382450,'Gandhinagar','Ahmedabad HQ','Gujarat','Barwala','Ahmedabad','GUJARAT'),('Rojasar',363427,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Rohishala',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Rohishala',364760,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Rohishala',363650,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Rohisa',362730,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Rohina',396145,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Rohika',382230,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Roha',370030,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Roghel',360410,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Rodadha',391168,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Roda',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Robas Moti',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Ringanvala-mota',365555,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Rinchvad',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Rinchhvani',389380,'Panchmahals','Vadodara','Gujarat','Ghoghamba','Panch Mahals','GUJARAT'),('Rinchhol',387430,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Rinchhia',389340,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Rinchhia',389360,'Panchmahals','Vadodara','Gujarat','Ghoghamba','Panch Mahals','GUJARAT'),('Ridrol',382835,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Ribda',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Ribadi',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Rib',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Revdibazar ',380002,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Reva',364230,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Rethvania',396560,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Rethal',382110,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Reshamiya',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Reshamdi Galol',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Rentia',389160,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Rentala Kalavad',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Rengan',391121,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Rena',389001,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Remeshwarpura',391761,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Relyo',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Rellawada',383251,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Reliyana',364750,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Reliya',364135,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Reliance Greens ',361142,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Reha',370105,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Regama',394160,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Refda',382255,'Gandhinagar','Ahmedabad HQ','Gujarat','Barwala','Ahmedabad','GUJARAT'),('Razalwada',393115,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Raysan',382007,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Rayka',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Raydi',365550,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Raydhanjar',370490,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Rayawada',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Rayanwadia',389360,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Rayan Muvada',389365,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Rayan Moti',370465,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Rayam',394355,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Ravol',383434,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Ravni Kuba',362130,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Ravni',362002,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Ravna',364490,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Ravli',387375,'Kheda','Vadodara','Gujarat','Petlad','Kheda','GUJARAT'),('Ravlapura',388360,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Ravki',360004,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Raviyana',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Raviyana',385550,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Raviya',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Ravindra',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Ravidra',394115,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Ravel',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Ravdavat',387610,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Ravapar(Nadi)',363642,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Ravapar ',370625,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Ravania',396060,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Ravaliyavadar',363040,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Ravalia',388225,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Ravalia',389350,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Raval ',361325,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Raval',391760,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Ravad',384240,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Rava',370645,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Rav',370165,'Kutch','Rajkot','Gujarat','Rapar','Kachchh','GUJARAT'),('Ratol',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Ratnal',370105,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Ratiya',370040,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Ratidhar',362140,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Ratidevdi',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Ratia',360576,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Ratdi',360579,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Ratanvav',364310,'Bhavnagar','Rajkot','Gujarat','Vallabhipur','Bhavnagar','GUJARAT'),('Ratanpura',391145,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Ratanpura',388220,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Ratanpura',389330,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Ratanpur(Kheda)',387570,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Ratanpur Lokniketan',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Ratanpur Kantdi',388710,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Ratanpur Bhal ',364313,'Bhavnagar','Rajkot','Gujarat','Vallabhipur','Bhavnagar','GUJARAT'),('Ratanpur (R)',388713,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Ratanpur',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Ratanpur',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Ratanpur',383430,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Ratanpar',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Ratanpar',363020,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Ratankuva',388260,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Ratania',394360,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Ratang',362120,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Ratadiya',370410,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Ratadia (N)',370605,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Ratadia',370465,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Ratabhe',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Rata',396191,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Rasulpur',388250,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Rasulpur',388260,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Rasulpur',384325,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Rasulpur',389120,'Panchmahals','Vadodara','Gujarat','Morva Hadaf','Panch Mahals','GUJARAT'),('Rasulpur',391770,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Rasulpara',362140,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Rasulabad',391510,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Rasnol',388335,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Rasnal',364730,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Raska',387120,'Kheda','Vadodara','Gujarat','Mahemdabad','Kheda','GUJARAT'),('Raska',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Rasikpura',387560,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Rasangpar',361280,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Rasana Mota',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Rasam',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Rasalia',370670,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Ras ',388570,'Kheda','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Rarod',393105,'Bharuch','Vadodara','Gujarat','Rajpipala','Vadodara','GUJARAT'),('Rapar (Gadhvali)',370645,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Ranverikhurd',396570,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Ranverikalla',396560,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Ranveri',394640,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Ranuj ',384275,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Ranu ',391445,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Rantila',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Rantej',384410,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Ransipur',382870,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Ranpur(S) ',362030,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Ranpur V-vas',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Ranpur ',382245,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Ranpur',385110,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Ranparda',364265,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Ranoli(Vadodara)',391350,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Ranodra',382433,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Ranoda',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Ranod',384241,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Ranmalpur',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Rankuva ',396560,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Ranjitpar',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Ranjitnagar',389360,'Panchmahals','Vadodara','Gujarat','Ghoghamba','Panch Mahals','GUJARAT'),('Ranjitgadh',363351,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Ranjit Nagar ',361005,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Ranjit Nagar',391780,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Raniyar Kanbi',389180,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Raniwada',364130,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Ranipura',393110,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Ranipura',383307,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Ranipat',363530,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Ranip ',382480,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Ranijini Padedi',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Ranigam',364510,'Bhavnagar','Rajkot','Gujarat','Jesar','Bhavnagar','GUJARAT'),('Ranifalia',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Raniapura',391520,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Raniamba ',394365,'Bardoli','Vadodara','Gujarat','Fort Songadh','Tapi','GUJARAT'),('Raniamba',394655,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Rania',388230,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Rania',391780,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Rangpur(Z)',391165,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Rangpur (K)',391168,'Vadodara East','Vadodara','Gujarat','Kawant','Vadodara','GUJARAT'),('Rangpur',382835,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Rangpur',388620,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Rangpur',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Rangpur',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Rangpur',363421,'Surendranagar','Rajkot','Gujarat','Dhandhuka','Surendra Nagar','GUJARAT'),('Rangpur',361280,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Rangpur',362268,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Rangpur',362227,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Rangpur',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Rangpur',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Rangpar (Bela)',363641,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Rangpar',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Ranghola',364230,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Rangakui',384315,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Rangaipura',388450,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Ranesar',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Raner',385550,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Ranela',384212,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Ranekpar',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Ranechi',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Randola',364240,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Randhiya',365620,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Randhikpur',389130,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Randheja ',382620,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Rander ',395005,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Ranchhodpura',384170,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Rancharada',382115,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Mahesana','GUJARAT'),('Ranavav Railway Station ',360560,'Porbandar','Rajkot','Gujarat','Ranavav','Porbandar','GUJARAT'),('Ranavav ',360550,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Ranavas',385010,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Ranavada',384245,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Ranat',394350,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Ranasan',382870,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Ranasan',383305,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Ranapur',391250,'Vadodara East','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Ranakpur',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Ranakhirasara',360570,'Porbandar','Rajkot','Gujarat','Ranavav','Porbandar','GUJARAT'),('Ranakandorana ',360570,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Ranagadh',363427,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Ranabordi',360570,'Porbandar','Rajkot','Gujarat','Ranavav','Porbandar','GUJARAT'),('Ran',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Ramvav',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Ramsan',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Rampuri',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Rampura(Ahmedabad)',382140,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Rampura Kampa',383260,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Rampura Kampa',383330,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Rampura (D)',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Rampura',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Rampura',391145,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Rampura',382450,'Gandhinagar','Ahmedabad HQ','Gujarat','Barwala','Ahmedabad','GUJARAT'),('Rampura',388260,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Rampura',385566,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Rampur Kasanpur',389115,'Panchmahals','Vadodara','Gujarat','Morva Hadaf','Panch Mahals','GUJARAT'),('Rampur Jodka',389340,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Rampur (Kot)',382870,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Rampur (Fudeda)',383434,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Rampur (A)',383210,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Rampur',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Rampur',365430,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Rampur',387710,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Rampur',365480,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Rampatel Na Muvada',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Rampara Gir',362140,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Rampara ',363435,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Rampara',365560,'Amreli','Rajkot','Gujarat','NA','Amreli','GUJARAT'),('Rampara',362268,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Rampar Pati',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Rampar Mota',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Rampar (Vekra)',370445,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Rampar (R)',370615,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Rampar (N)',370620,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Rampar (Abda)',370655,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Rampar - B',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Rampar',361120,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Ramos',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Ramos',383316,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Ramol ',387710,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Ramol',382449,'Gandhinagar','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Ramod',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Ramnath',391243,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Ramnagar(Surat)',395009,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Ramnagar',388340,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Ramnagar',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Ramgadhi',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Ramgadh',363310,'Surendranagar','Rajkot','Gujarat','Dshrangadhra','Surendra Nagar','GUJARAT'),('Rameshwar',362110,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Rameshra',389350,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Ramdhari',364210,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Rambhoda',383345,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Rambhem Na Muvada',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Rambhas',394730,'Bardoli','Vadodara','Gujarat','The Dangs','The Dangs','GUJARAT'),('Ramanka',364320,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Ramania',370405,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Ramana',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Rama',389130,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Ralol',363423,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Ralisana',384315,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Ralgon',364145,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Ralej',388640,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Rakhiyal',383276,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Rakhiana',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Rakhial Udyog Vistar ',380023,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Rakhial RS ',382315,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Rakhial ',380023,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Rakhial',382315,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Rakhial',388225,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Rakhej',362275,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Rajupura',388306,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Rajupura',391445,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Rajupura',391530,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Rajula ',365560,'Amreli','Rajkot','Gujarat','Rajula','Amreli','GUJARAT'),('Rajsitapur ',363320,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Rajsathli',365610,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Rajpura',391510,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Rajpura',382245,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Rajpur Talat',396051,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Rajpur Gomtipur ',380021,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Rajpur (D)',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Rajpur',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Rajpur',383307,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Rajpur',383010,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Rajpur',388255,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Rajpur',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Rajpur',383460,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Rajpipla D.R. ',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Rajpipla ',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Rajpipla',364750,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Rajpardi ',393115,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Rajpara No. 2',364120,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Rajpara',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Rajpara',393125,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Rajpara',361335,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Rajpara',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Rajpara',364310,'Bhavnagar','Rajkot','Gujarat','Vallabhipur','Bhavnagar','GUJARAT'),('Rajpara',361306,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Rajpar',363030,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Rajpar',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Rajpar',370445,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Rajoda',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Rajnivad',393025,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Rajnagar',387345,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('RajkotRaiya Road ',360007,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Vivekanandnagar ',360002,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Udyognagar ',360002,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Sorathiawadi ',360002,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Sau Uni Area ',360005,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Race Course Road ',360001,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Postal Colony ',360004,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Popatpara ',360001,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Parsi Agiyari Chowk ',360001,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot New Jagnath Plot ',360001,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Municipal Corporation ',360001,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Mochi Bazar ',360001,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Millpara ',360002,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Metoda Gidc ',360021,'Rajkot','Rajkot','Gujarat','NA','Rajkot','GUJARAT'),('Rajkot Marketing Yard ',360003,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Mandvi Chowk ',360001,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Manahar Plot ',360002,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Malviyanagar ',360004,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Kalavad Road ',360001,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Jn. Plot ',360001,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Jairaj Plot ',360001,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot D H College ',360001,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Collectorate ',360001,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot City ',360001,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Bhomeshwar Plot ',360006,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Bhaktinagar ',360002,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Bedipara ',360003,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot Aji Ind Estate ',360003,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajkot ',360001,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Rajgadh',384315,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Rajgadh',393135,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Rajgadh',364313,'Bhavnagar','Rajkot','Gujarat','Vallbhipur','Bhavnagar','GUJARAT'),('Rajesar',362260,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Rajendranagar',383276,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Rajcharadi',363320,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Rajbodeli',391140,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Rajayata',389115,'Panchmahals','Vadodara','Gujarat','Morva Hadaf','Panch Mahals','GUJARAT'),('Rajavadar',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Rajavadala',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Rajasthali',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Rajapara',360030,'Gondal','Rajkot','Gujarat','Kotda','Rajkot','GUJARAT'),('Raiya',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Raiya',360005,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Raisingpura',391170,'Vadodara East','Vadodara','Gujarat','Kawant','Vadodara','GUJARAT'),('Raisingpura',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpura','Vadodara','GUJARAT'),('Raisingpura',393120,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Raisingpur',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Raipura',391410,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Raipur(Ahmedabad)',380001,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Raipur',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Raipur',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Raima',393030,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Railwaypura ',380002,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Railway Colony(Ahmedabad)',380019,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Raikhad ',380001,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Raika',391340,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Raigadh ',383276,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Raigadh',394370,'Bardoli','Vadodara','Gujarat','Nizar','Surat','GUJARAT'),('Raidi',360410,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Raichha',391168,'Vadodara East','Vadodara','Gujarat','Ch.udepur','Vadodara','GUJARAT'),('Raibor',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Rai',389140,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Rahpar (Khokhara)',370020,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Rahpar ',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Rahkui',391510,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Rahij',362225,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Rahiad',392130,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Rahemalpur',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Raheda',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Rahad',392012,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Rah',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Rafudadnani',361170,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Rafu',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Rafalia',362020,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Rafaleshwar',363642,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Rafala',360023,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Radosan',385570,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Radodara',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Radka',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Radhvanaj',387570,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Radhu ',387560,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Radhiwad ',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Radhanpur Rly Colony',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Radhanpur Rajgadhi ',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Radhanpur ',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Racecourse ',390007,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Rabod',389310,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Rabhda',365555,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Rabdal',389160,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Rabda',396055,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Rabarika',365550,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Rabarika',360470,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Rabarika',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Rabadia',389220,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Pursa',392110,'Bharuch','Vadodara','Gujarat','NA','Vadodara','GUJARAT'),('Pural',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Punsari',383307,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Punjpur',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Puniavant',391165,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Puniad',391110,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Puni ',394352,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Pungam',393020,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Pundrasan',382422,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Pundi',370485,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Pundhara ',382855,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Punat',396155,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Punasan',383240,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Punasan',382710,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Punadra',387610,'Kheda','Vadodara','Gujarat','Kapadvanj','Kheda','GUJARAT'),('Puna Kumbharia ',395011,'Surat','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Puna',394163,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Puna',394248,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Pudgam',384310,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Puchhpura',391121,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Public Office(Ahmedabad)',380016,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Prempur',383225,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Prempara',362130,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Premgadh',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Prathampura',391770,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Prathampura',391780,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Pratappura',388365,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Pratappura',383430,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Pratappura',391774,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Pratappur',363320,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Pratappara',364135,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Pratappar',370405,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Pratapnagarr',396321,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Pratapnagar(Vadodara)',390004,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Pratapnagar R.S. ',390004,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Pratapnagar',382845,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Pratapganj(Vadodara)',390002,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Pratapgadh Khedapa',389172,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Pratapgadh Kampa',383440,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Pratap Nagar(Narmada)',393140,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Prasnavada',362275,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Prantiya',382355,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Prantij ',383205,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Pransli',362229,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Pransli',362268,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Pransla',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Pranchi',362268,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Pragpar',370415,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Praghpar',370155,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Prabhas Patan ',362268,'Junagadh','Rajkot','Gujarat','Patan-Veraval','Junagadh','GUJARAT'),('Poyda',383215,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Positra',361335,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Poshina ',383422,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Poshina',383421,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Porda Fagvel',387640,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Porda (Bhatera)',387630,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Porda',382765,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Porda',388130,'Anand','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Porbandar Mill Pura ',360575,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Porbandar Manek Chowk ',360575,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Porbandar M G Road ',360575,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Porbandar Hanuman Gufa ',360575,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Porbandar G.I.D.C. ',360577,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Porbandar Chhaya Plot ',360575,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Porbandar Birla Sagar ',360576,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Porbandar Bhojeshwar ',360575,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Porbandar ',360575,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('POR ',391243,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Por',382421,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Popda',394235,'Surat','Vadodara','Gujarat','Lajpore','Surat','GUJARAT'),('Ponsra',396436,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Polytechnic(Ahmedabad)',380015,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Polarpur ',382250,'Gandhinagar','Ahmedabad HQ','Gujarat','Barwala','Ahmedabad','GUJARAT'),('Poladia',370450,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Poicha',391780,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Poicha',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Poicha',391770,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Poglu',383205,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Pochamba',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Plasva',362015,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Piyava',364515,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Piyava',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Piyaj',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Pithvajal',365610,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Pithvadi',364515,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Pithalpur ',364135,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Pithai',387630,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Pithadia',365456,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Pithadia',361162,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Pithadia',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Pithadara',394635,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Pithad',361220,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Pitha',396045,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Pith Baza- Khambhat ',388620,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Pisawada',382265,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Pisavar',394380,'Bardoli','Vadodara','Gujarat','Nijhar','Surat','GUJARAT'),('Pisai',391110,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Pirojpura',385210,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Pirkhijadiya',365410,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Pirana',382425,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Piraman',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Piprana',385350,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Piprana',383345,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Piprali',363440,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Pipodra',389140,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Pipodara',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Pipodara',394110,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Pipludra',391810,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Piploi',388640,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Piplod(Surat)',395007,'Surat','Vadodara','Gujarat','Nizar','Surat','GUJARAT'),('Piplod(Dahod)',389130,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Piplod',394370,'Bardoli','Vadodara','Gujarat','Nizar','Surat','GUJARAT'),('Piplod',393040,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Pipliya',383422,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Pipli',388530,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Pipli',361280,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Pipli',362220,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Pipli',382465,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Pipli',363642,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Pipli',391445,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Piplav ',388460,'Kheda','Vadodara','Gujarat','Sojitra','Anand','GUJARAT'),('Piplata',387355,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Piplana',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Piplana',362610,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Piplaj',382315,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Ahmedabad','GUJARAT'),('Piplaj',382610,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Piplaidevi',394716,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Piplag ',387355,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Pipero',389382,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Pipartoda',361012,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Pipardi',360055,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Pipardi',360405,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Pipardi',364730,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Pipardi',364320,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Pipardi',364230,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Piparadi',364525,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Pipar',360540,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Pipar',370511,'Kutch','Rajkot','Gujarat','Kachchh','Kachchh','GUJARAT'),('Pipalwada',388250,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Pipalva',360360,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Pipalva',365430,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Pipalva',365650,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Pipalsat',391145,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Pipallag',365455,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Pipalkuva',394670,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Pipalkhed',396060,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Pipaliya(Sadak)',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Pipaliya(A)',360003,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Pipaliya Raj',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Pipaliya Dhandhal',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Pipaliya (Dhora)',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Pipaliya',363660,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Pipaliya',360410,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Pipaliya',392020,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Pipaliya',364765,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Pipaliya',364240,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Pipalia',391760,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Pipalia',392165,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Pipali',382745,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Pipalgabhan',396521,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Pipaldi',391170,'Vadodara East','Vadodara','Gujarat','Kawant','Vadodara','GUJARAT'),('Pipaldahad',394716,'Bardoli','Vadodara','Gujarat','Dang','Surat','GUJARAT'),('Pipalchhat',391530,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Pipadhara',393115,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Pinsad',396475,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Pinjrat',395005,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Pingli',389320,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Pingli',364260,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Pingalvada',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Pindval',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Pindharpura',384229,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Pindhara',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Pindarda',382610,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Pindappa',391430,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Pimpri ',394715,'Bardoli','Vadodara','Gujarat','Ahwa','The Dangs','GUJARAT'),('Pimpan',382110,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Pimpal',384225,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Pilvai ',382850,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Piludra',393020,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Piludra',384001,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Piludra',383120,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Piluda',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Pilucha',385421,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Pilol',391745,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Pikhor',362268,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Pikhor',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Pij ',387230,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Pichhoda',389175,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Pichhipura',393151,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Picchuwada',391145,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Phulwadi',394380,'Bardoli','Vadodara','Gujarat','Nijhar','Surat','GUJARAT'),('Pharadi',370435,'Kutch','Rajkot','Gujarat','K. Mandvi','Kachchh','GUJARAT'),('Phansa ',396140,'Valsad','Vadodara','Gujarat','Umargarm','Valsad','GUJARAT'),('PetrochemicalT Ship ',391345,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Petrochemical ',391346,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Petli',387220,'Kheda','Vadodara','Gujarat','Sojitra','Anand','GUJARAT'),('Petlad RS ',388450,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Petlad ',388450,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Pethapur ',382610,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Pethapur',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Pethapur',389180,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Pethapur',383225,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Pethan',396445,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Petachhapra',383422,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Pera',396418,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Pepol',385421,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Peplu',385530,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Pelad',394630,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Pedhmala',383030,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Pedhla',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Pedhda',363110,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Pedhavada',362720,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Pedhamali',382870,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Pechhadal',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Pavthi',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Pavijetpur ',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Pavdi',389160,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Pavan Chakki ',361005,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Pavagadh ',389360,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Patvali',393040,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Patri ',370425,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Patrapasar',362011,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Patosan',385515,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Patnamau',393050,'Bharuch','Vadodara','Gujarat','Sagbara','Narmada','GUJARAT'),('Patna Kuva',382315,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Patna Bhal',364310,'Bhavnagar','Rajkot','Gujarat','Vallabhipur','Bhavnagar','GUJARAT'),('Patna (Malji)',364730,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Patna',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Patidad',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Patibo',396040,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Patia',389155,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Pati(Gandevi)',396360,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Pati',394635,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Pati',364760,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Pathran',394620,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Pather',393135,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Pathakvadi',394635,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Patelna Dhundha',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Patelka',361320,'Jamnagar','Rajkot','Gujarat','Jamkalyanpur','Jamnagar','GUJARAT'),('Patel Society Area Tso Nad ',387002,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Patel Faliya',396145,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Patel Colony ',361008,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Patdi ',382765,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Patarveni',391220,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Patanvav ',360430,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Patangdi',389130,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Patan Three Gate ',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Patan Siddhraj Road ',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Patan Rajkawada ',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Patan H N G University ',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Patan City ',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Patan ',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Patan',360530,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Patal',394163,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Patadiya',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Pata Meghpar',361162,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Pata',362230,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Pat',393050,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Paswali',362650,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Pasvi',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Pasvadal',385210,'Banasanktha','Ahmedabad HQ','Gujarat','Vadagam','Banaskantha','GUJARAT'),('Pasva',391520,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Pasunj',382430,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Pasodara',395006,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Parwasa',396125,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Parvata',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Parvat Patia ',395010,'Surat','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Parvat',394810,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Parvat',395012,'Surat','Vadodara','Gujarat','Chorasi','Surat','GUJARAT'),('Parvala',364320,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Parvadi ',364275,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Parvadi',389120,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Parujan',396436,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Parthan',396475,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Parsaantaj',387130,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Parsa',382845,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Paroya',383255,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Parosada',383460,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar.','Sabarkantha','GUJARAT'),('Paroli',389365,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Parnera Pardi',396007,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Parnera (Urban)',396020,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Parnala',363427,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Parkhet',392020,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Parjau',370640,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Parikha',391210,'Vadodara West','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Pariej',388180,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Pariej',392020,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Paria',394130,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Pardi R.S.',396125,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Pardi Paria ',396145,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Pardi Idris',394115,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Pardi Bhadol',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Pardi',360024,'Rajkot','Rajkot','Gujarat','Lodhika','Rajkot','GUJARAT'),('Pardhol',382330,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Parbatpura',382845,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Parathampur',389180,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('ParaPipaliya',360006,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Parali',363427,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Paradva',360490,'Gondal','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Parabvavdi',362020,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Parabadi',382250,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Parab',394325,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Par',385350,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Panvi',364310,'Bhavnagar','Rajkot','Gujarat','Vallabhipur','Bhavnagar','GUJARAT'),('Panvad ',391168,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Panva',382750,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Panuda',393130,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Panthawada',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Pantalavdi',393151,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Pansroda',388265,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Pansora',388220,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Pansoli',391110,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Panshina ',363423,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Pansar ',382740,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Pansar',393040,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Pansada',365421,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Panoli I.E. ',394116,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Panoli ',394115,'Bharuch','Vadodara','Gujarat','Ankleshwar','Bharuch','GUJARAT'),('Panol',383430,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Pankhan',362227,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Panjroli',394120,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Paniyari',394650,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Paniya',365440,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Panikhadak',396060,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Panidhra',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Panibar',383251,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Paniadra',392165,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Pania',389140,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Pani',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Pangam',393040,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Panetha',393120,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Paneli ',360480,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Paneli',370630,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Paneli',363642,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Panej',391140,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Pandvania',388220,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Pandva ',388265,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Pandva',394710,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Pandu',391530,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Pandor',396191,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Pandoli ',388160,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Pandharpura',382140,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-Rampura','Ahmedabad','GUJARAT'),('Pandhara',391155,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Pandesara ',394221,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Pandavara',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Pandavadar',360579,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Pandaravada',389232,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Pandadi',389152,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Pandad',388625,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Panchvati (Umreth) ',388220,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Panchvati ',390016,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Panchvada',364250,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Panchvada',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Panchvada',389155,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Panchtobra',364505,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Panchtalvda',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Panchpipla',364265,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Panchpipla',394360,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Panchotiya',370475,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Panchot ',384205,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Panchol',394635,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Panchhi',382455,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Panchham',382465,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Panchha',385110,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Pancheshwar Tower Chowk ',361001,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Panchela',389130,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Panchdwarka',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Panchdevla',391510,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Panchdevda Mota',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Panchavda',360040,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Panchasia',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Panchasar',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Panchasar',384246,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Panchala',362220,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Panchal',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Panchada',385421,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Panch Pipla',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Panch Mahudi',383355,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Panch Mahuda',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Panch Hatdi Pedal',361140,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Panch Fanas ',392001,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Panas',396126,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Panar ',396460,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Panar',382140,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Panandhro',370601,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Panaj',396040,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Panadar',362720,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Pamol',382820,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Pamol',388560,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Palundra',382308,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Palsod',394355,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Palsanda',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Palsana(Surat)',394315,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Palsana Pardi',396185,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Palsana',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Palol',387240,'Kheda','Vadodara','Gujarat','Sojitra','Anand','GUJARAT'),('Palodar',384205,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Pallachar',383205,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Palla',383355,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Palla',389365,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Palla',387530,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Paliyed(Veda)',382735,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Paliyad ',364720,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Palitana SR ',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Palitana Dc ',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Palitana ',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Palikhanda',389370,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Pali',396105,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Pali',384260,'Patan','Ahmedabad HQ','Gujarat','Patan','Mahesana','GUJARAT'),('Palgam',396170,'Valsad','Vadodara','Gujarat','Umbergaon','Valsad','GUJARAT'),('Palgabhan',396590,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Palej ',392220,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Paldi(Ahmedabad)',380007,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Paldi Kankaj',382425,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Paldi',364250,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Paldi',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Paldi',362510,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Palawadi',394633,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Palaswada',391107,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Palaswada',393025,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Palasar',384229,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Palasani',391152,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Palansava',370155,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Palanpur Nd',395009,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Palanpur Kirtistambh ',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Palanpur Kamalpura ',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Palanpur Ganjbazar ',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Palanpur Delhigate ',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Palanpur ',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Palana ',387350,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Palan',396001,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Palaj ',388465,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Palaj',382355,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Palaj',384410,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Palaiya',387330,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Paladi',384315,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Pala',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Pal Bhatha',394510,'Surat','Vadodara','Gujarat','Chorasi','Surat','GUJARAT'),('Pal',383462,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Pal',360004,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Pakhajan ',392165,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Pajod',362620,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Pahaj',392140,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Pahadpur',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Pahad',389146,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Paguthan',392015,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Padvania',393110,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Padvadar',364730,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Padva',364050,'Bhavnagar','Rajkot','Gujarat','Gogha','Bhavnagar','GUJARAT'),('Padusma',382810,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Padusan',383305,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Padri (G)',364150,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Padra ',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Padra',388180,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Padodar',362220,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Padmala',391350,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Padli',361345,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Padla',384246,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Padhora',389365,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Padhiyar',388713,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Padharwant',391165,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Padharia',382865,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Padhara',383255,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Padhar',370105,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Padgol',388440,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Padgha',396445,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Padela',383460,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Padedi Rampur',389235,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Padedi Ador',389260,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Paddhari ',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Paddhara',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Padavla',360480,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Padasan',360020,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Padarsinga',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Padaria',392025,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Padardi',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Padardi',383255,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Padardi',385550,'Banasanktha','Ahmedabad HQ','Gujarat','Kankraj','Banaskantha','GUJARAT'),('Padar',385560,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Padapan',364230,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Padana',370240,'Kutch','Rajkot','Gujarat','Gandhidham','Kachchh','GUJARAT'),('Padana',361280,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Padana',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Padan',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Padampar',370160,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Padamdungri',394635,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Padalia',389146,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Padal',388235,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Padal',393110,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Pachlai',396125,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Pachhtar',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Pachhiapura',392220,'Bharuch','Vadodara','Gujarat','Bharuch','Vadodara','GUJARAT'),('Pachhegam',364310,'Bhavnagar','Rajkot','Gujarat','Vallabhipur','Bhavnagar','GUJARAT'),('Pachhegam',364275,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Pachegam',388625,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Pachakvada',384265,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('P.A.Victor',365555,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Ozarda',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Ozarala',388225,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Ozar',396055,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Ozar',396191,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Oz',393105,'Bharuch','Vadodara','Gujarat','Rajpipala','Vadodara','GUJARAT'),('Othwad',388255,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Otha',364295,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Otaria Sarvodaya Ashram',382463,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Otaria',382463,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Otala',363650,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Oslam',391244,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Osa',362220,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Orvada',389120,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Orpa',393151,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Orna ',394330,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Orma',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Ori',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Ori',360055,'Gondal','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Orgam',394340,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Oran',383205,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Ora',392140,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Onjal Machhivad',396412,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Onjal',396412,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Ongc Nagar ',394518,'Surat','Vadodara','Gujarat','Chorasi','Surat','GUJARAT'),('Ongc Col ',390009,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Ond',396521,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Olpad ',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Oliya',364515,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Olak',363115,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Okhamadhi',361335,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Okha ',361350,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Ognaj',380060,'Gandhinagar','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Ogan',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Odu',382760,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Odhva',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Odhava (D)',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Odhava',385505,'Banasanktha','Ahmedabad HQ','Gujarat','Dantiwada','Banaskantha','GUJARAT'),('Odhav Industrial Estate ',382415,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Odhav ',382415,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Odhav',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Odha',383340,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Ode ',388210,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Ode',383355,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Ode',382427,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Odadar',360576,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Oda',383230,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Ochhan',392230,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Ochhan',392140,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Obha',394810,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('O.N.G.C. Colony ',393010,'Bharuch','Vadodara','Gujarat','Ankleshwar','Bharuch','GUJARAT'),('O N G C ',380005,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Nundhatad',370650,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Nunarda',362220,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Nugar',384205,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Norta',384275,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Nonjanvav',362215,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Nonghanvadar',364230,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Nonghanchora',360070,'Gondal','Rajkot','Gujarat','Kotda','Rajkot','GUJARAT'),('Noli',363440,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Nokha',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Nogama',394405,'Surat','Vadodara','Gujarat','Velachha','Surat','GUJARAT'),('Nogama',396430,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Nogama',394170,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Nodhna',392150,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Noblenagar ',382340,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Nobar',392150,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Nizar',394350,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Nizampura',387340,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Nisraya',388540,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Nishana',394716,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Nishana',394650,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Nirona',370001,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Nirnaynagar ',382481,'Gandhinagar','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Nirmali(Kheda)',387650,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Niol',394325,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Ningla-2',365550,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Ningala ',364760,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Ningal',370105,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Nindka',389190,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Nincha Kotda',364130,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Ninat',394350,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Ninama',363440,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Ninam',392110,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Nimetha',390019,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Nimbhora',394380,'Bardoli','Vadodara','Gujarat','Nijhar','Surat','GUJARAT'),('Nilvala',365421,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Nilpar',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Nilakha',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Nikora',392001,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Nikora',392030,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Nikol',382350,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmedabad','Ahmedabad','GUJARAT'),('Nikoda',383210,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Nikava ',361162,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Nijhar ',394370,'Bardoli','Vadodara','Gujarat','Nizar','Surat','GUJARAT'),('Nichimandal',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Nichi Dhanal',383255,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('New Super Market ',361001,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('New Sachivalaya Complex ',382010,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('New Dudhai',370115,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Nevri',396126,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Nevdiamba',393025,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Netrang ',393130,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Netrang',394180,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Netramali',383430,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Netra ',370620,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Nesvad',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Nesdi',364515,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Nesda (K)',363641,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Nesda',389320,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Nesda',364240,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Nesda',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Nesada-juna',385530,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Nes Molara',389172,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Nes',388230,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Ner',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Nepalpura',388250,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Nenpur',387130,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Nenki',389175,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Nenava',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Neknam',363650,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Nedra',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Nedharad',382115,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Nayta',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Nayka ',387550,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Nayka',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Nayakpur',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Nawabwadi ',395003,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Navyug College ',395009,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Navtad',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Navsari ',396445,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Navrangpura ',380009,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Navra',393140,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Navli ',388355,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Navjivan ',380014,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Naviyani',382750,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Navitothidra',393105,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Navisana',385421,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Navipardi',394150,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Navinal',370405,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Navibandar',360576,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Naviakhol',388625,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Navi Shinol',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Navi Metral',383255,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Navetha',392012,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Navera',396055,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Navda',382450,'Gandhinagar','Ahmedabad HQ','Gujarat','Barwala','Ahmedabad','GUJARAT'),('Navda',362610,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Navavas',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Navasangpur',382870,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Navapura',393140,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Navapura',391125,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Navapura',388520,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Navapura',382210,'Ahmedabad City','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Navapipalia',362110,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Navaniya',363430,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Navaniya',365421,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Navania',364310,'Bhavnagar','Rajkot','Gujarat','Vallabhipur','Bhavnagar','GUJARAT'),('Navania',362110,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Navanagna',361007,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Navanagar',383220,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Navanagar',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Navanagar',382315,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Navalpur',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Navalja',391170,'Vadodara East','Vadodara','Gujarat','Kawant','Vadodara','GUJARAT'),('Navalgadh',363320,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Navakuwa',389360,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Navakhal',388510,'Anand','Vadodara','Gujarat','Anklav','Anand','GUJARAT'),('Navaghanshyamgadh',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Navagamvborjai',393110,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Navagama',388255,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Navagam(Isri)',383251,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Navagam Ghed',361008,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Navagam (S)',363440,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Navagam (Dhanela)',383460,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Navagam ',387540,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Navagam',389110,'Panchmahals','Vadodara','Gujarat','Morwa (Hadaf)','Panch Mahals','GUJARAT'),('Navagam',364313,'Bhavnagar','Rajkot','Gujarat','Vallabhipur','Bhavnagar','GUJARAT'),('Navagam',364120,'Bhavnagar','Rajkot','Gujarat','Gogha','Bhavnagar','GUJARAT'),('Navagam',389160,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Navagam',370020,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Navagam',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Navagam',361006,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Navagam',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Navagam',394185,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Navagam',363670,'Rajkot','Rajkot','Gujarat','Maliya Miyana','Rajkot','GUJARAT'),('Navagam',391510,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Navagam',387620,'Kheda','Vadodara','Gujarat','Kapadvanj','Kheda','GUJARAT'),('Navagam',387710,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Navagam',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Navagam',360320,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Navagam',391152,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Navagam',364250,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Navagam',389365,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Navagadh ',360375,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Navafalia',394640,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Navadra',362268,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Navadra',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Nava Vadia',389146,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Nava Vadaj ',380013,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Nava Savlas',382745,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Nava Sarod',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Nava Sangana',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Nava Revas',383450,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Nava Ratanpar',364070,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Nava Rajuvadia',393140,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Nava Nagar',389155,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Nava Muvada',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Nava Mota',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Nava Matravad',360450,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Nava Manka',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Nava Bhavnath',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Nava Bandar',362510,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Nava',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Nava',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Nava',383305,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Naugama',394350,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Natwar Nagar',391780,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Natvargadh',363427,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Nathuvadala',361210,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Nathpura',385555,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Nathkuwa',389360,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Nathavas',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Nathal',362560,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Natapur',389120,'Panchmahals','Vadodara','Gujarat','Morva Hadaf','Panch Mahals','GUJARAT'),('Naswadi ',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Nasitpar',363641,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Nasikpur',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Nasarpur',394440,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Narukot',389390,'Panchmahals','Vadodara','Gujarat','Jambughoda','Panch Mahals','GUJARAT'),('Narthan',395005,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Narsoli',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Narshihpura',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Narsanda ',387345,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Narpura',391530,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Naroli',385566,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Narol ',382405,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Naroda S A ',382330,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Naroda Road ',382345,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Naroda I E ',382330,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmedabad','Ahmedabad','GUJARAT'),('Naroda ',382330,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Naroda',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Narnavi',392165,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Narmada Nagar(Bharuch)',392015,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Narichana',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Naria',391107,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Nari',364004,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Nargol ',396135,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Naren',394163,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Naredi',370030,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Nardipur ',382735,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Narayanpur',394375,'Bardoli','Vadodara','Gujarat','Uchchhal','Surat','GUJARAT'),('Narayannagar ',380007,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Narayan Sarovar',370601,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Naranpura Vistar ',380013,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Naranpura Kampa',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Naranpur',361012,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Naranpore',396040,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Naranpar (R)',370615,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Naranpar',370430,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Narangadh',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Narali',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Nara',370605,'Kutch','Rajkot','Gujarat','Lakhapat','Kachchh','GUJARAT'),('Nar ',388150,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Napda',383355,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Napania Khijadia',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Napad ',388350,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Napa ',388560,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Nansad',394180,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Nanpura ',395001,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Nanpura',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Nanodara',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Nankhi',383450,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Nanivahiyal ',396065,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Nanivada',384325,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Nanimal',364265,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Nanikathechi',382775,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Nanighansari',362220,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Nanidenavad',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Nanibhagedi',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Nanibedwan',392020,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Nani-vadal',364522,'Amreli','Rajkot','Gujarat','Savar Kundla','Amreli','GUJARAT'),('Nani-kunkavav',365450,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Nani-dhari',365635,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Nani Vavdi',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Nani Vavdi',360440,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Nani Vavdi',382245,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Nani Vavdi',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Nani Vavdi',364505,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Nani Tokri',391168,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Nani Tambadi',396193,'Valsad','Vadodara','Gujarat','Dadra & Nagar Haveli','Valsad','GUJARAT'),('Nani Rajashtali',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Nani Pipli',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Nani Parabadi',360360,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Nani Naroli',394110,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Nani Monpari',362120,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Nani Kharsoli',389265,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Nani Khakhar',370435,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Nani Khadol',387335,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Nani Kadi',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Nani Dholdungri',396051,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Nani Dhadheli',389190,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Nani Devti',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Nani Boru',382230,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Nani Bhugedi',389190,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Nani Bhadol',391520,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Nani Bedwan',393041,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Nani Barar',363670,'Rajkot','Rajkot','Gujarat','Maliya Miyana','Rajkot','GUJARAT'),('Nani Aral',370665,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Nani',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Nangia',370660,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Nangal',393020,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Nanduri',361170,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Nandpur',391145,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Nandpore',394163,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Nandotri',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Nandotra',385421,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Nandola',394430,'Surat','Vadodara','Gujarat','Vankal','Surat','GUJARAT'),('Nandol',382305,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Nandoj',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Nandniketan ',394270,'Surat','Vadodara','Gujarat','Chorasi','Surat','GUJARAT'),('Nandla',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Nandisan',383250,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Nandigam',396105,'Valsad','Vadodara','Gujarat','Umbergaon','Valsad','GUJARAT'),('Nandida',392130,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Nandhelav',389152,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Nandhai',396040,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Nandesari Ind. Estate ',391340,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Nandesari',391340,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Nanderia',391105,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Nandej ',382435,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Nandeal',392015,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Nandav',394125,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Nandasar',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Nandasan',382705,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Nandarva',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Nandarkhi',362002,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Nandarkha',389340,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Nandarkha',396325,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Nandarkha',362630,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Nandana',360520,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Nandana',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Nanawada',383345,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Nanavadadala',389235,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Nanapondha ',396126,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Nanapada',394730,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Nananpur',383210,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Nanan-bhmodra',364515,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Nanaliliya',365535,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Nanakotda',362110,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Nanadia ',362625,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Nanadarkhi',362240,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Nanadara',388250,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Nanabhavda',361335,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Nana Vadala',360540,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Nana Ubhada',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Nana Surka',364250,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Nana Sembalia',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Nana Samadhiyala',362565,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Nana Rajkot',365435,'Amreli','Rajkot','Gujarat','Lathi','Amreli','GUJARAT'),('Nana Rajanpur',389250,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Nana Matra',363440,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Nana Mandva',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Nana Laija',370475,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Nana Khuntavada',364295,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Nana Khijadia',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Nana Karala',391105,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Nana Kalodara',388630,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Nana Jalundra',382321,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Nana Jadra',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Nana Goraiya',382745,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Nana Fofalia',391210,'Vadodara West','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Nana Chiloda',382330,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Nana Chekhla',383305,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Nana Bhadia',370455,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Nana Asrana',364280,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Nana Asambia',370485,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Nana Ankevaliya',363110,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Nana Angia',370675,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Nana Amadara',391135,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Nana',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Namnar',388270,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Namisara',391775,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Namdha',396191,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Namaria',391120,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Nalvant',391152,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Nalu',389382,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Nalseri',383460,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Naliya Mandvi',362510,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Naliya ',370655,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Nalia',391120,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Naldhari',393135,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Naldhara',394240,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Nakti',389380,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Nakra',362625,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Nakhatrana ',370615,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Nakatia Hanvant',394710,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Najapur',365456,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Naip',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Nahuli',396105,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Nahra',391770,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Nahier',392110,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Nahar',392170,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Nagvasana',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Nagvas',396235,'Valsad','Vadodara','Gujarat','Umbergaon','Valsad','GUJARAT'),('Nagvadar',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Nagvada',382755,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Nagrecha',370450,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Nagrasan',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Nagra',363040,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Nagra',388620,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Nagpur',361013,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Nagor',370001,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Nagod',394320,'Bardoli','Vadodara','Gujarat','NA','Surat','GUJARAT'),('Nagnesh',363415,'Surendranagar','Rajkot','Gujarat','NA','Surendra Nagar','GUJARAT'),('Nagka',360579,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Nagichana',362240,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Naghrala',389160,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Nagfana',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Nageshri ',365545,'Amreli','Rajkot','Gujarat','Jafrabad','Amreli','GUJARAT'),('Nagdhara',396466,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Nagdhaniba',364050,'Bhavnagar','Rajkot','Gujarat','Gogha','Bhavnagar','GUJARAT'),('Nagar Pipaliya',360021,'Rajkot','Rajkot','Gujarat','NA','Rajkot','GUJARAT'),('Nagalpur',362263,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Nagalpur',384001,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Nagalpar (Dhindh)',370465,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Nagalpar',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Nagalpar',370110,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Nagalkhada',360410,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Nagadka(Jat)',382745,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Nagadka',363410,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Nagadia',361325,'Jamnagar','Rajkot','Gujarat','Jamkalyanpur','Jamnagar','GUJARAT'),('Nagadhra',365635,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Nadri',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Nadishala',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Nadisar',388710,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Nadiad ',387001,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Nadhanpur',387530,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Nadatod',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Nadasa',384410,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Nadapa',370020,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Nadala',365410,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Nadala',363440,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Nadagdhari',396051,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Nadagchond',394730,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Nada',391210,'Vadodara West','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Nada',389120,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Nada',392040,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Nada',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Nabipur ',392210,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('N C Mills ',382345,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('N C Market ',380002,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Muvalia',389160,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Muval',391770,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Muval',391430,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Muvada',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Muskut',392020,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Muru',370605,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Murdad',396051,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Munsad',396463,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Munpur',389240,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Munkhosla',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Munjpar',363020,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Munjlav',394140,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Municipal Corporation ',380001,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Mundra ',370421,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Mundamore',391168,'Vadodara East','Vadodara','Gujarat','Kawant','Vadodara','GUJARAT'),('Mundaheda',389180,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Munai',383450,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Muna',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Mumanvas',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Mulsan',382710,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Muloj',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Muliyasa',362222,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Mulila',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Muliad',388225,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Muli ',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Muli',396045,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Muler',392140,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Muldwarka',362725,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Muldharai',364310,'Bhavnagar','Rajkot','Gujarat','Vallabhipur','Bhavnagar','GUJARAT'),('Muldhar',391155,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Mulbavla',363427,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Mulad',394110,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Mul Madhavpur',362230,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Muktipur',382425,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Mujpur ',384241,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Mujpur',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Mujkuva',388307,'Anand','Vadodara','Gujarat','Anklav','Anand','GUJARAT'),('Muglisara ',395003,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Mudvada',384290,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Mudhela',391510,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Mudhasana',383215,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Mudhan',370627,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Mudeti',383450,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Mudetha',385530,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Mudavadekh',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Mudarda',384421,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Mudana',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Mubarakpura',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Mubarakpur',394370,'Bardoli','Vadodara','Gujarat','Nijhar','Surat','GUJARAT'),('Moyad',383120,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Moviya ',360330,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Movasa Falia',396310,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Movasa',389235,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Movana',362220,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Movan',361305,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Motived',395004,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Motivavdi',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Motivarnoli',391774,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Motirel(W)',389110,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Motirath',389240,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('MotiRasli',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Motipura',382308,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Motipura',389350,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Motipura',391520,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Motimonpari',362130,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Motimatli',361013,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Motimanekpur',391761,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Motimajethi',382765,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Motimahudi',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('MotiKishol',382110,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Motikayar',389260,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Motikakrad',396412,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Motikaarod',396406,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Motigop',360515,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Motighansari',362220,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Motifalod',394355,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Motidhanej',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Motidevrupam',393050,'Bharuch','Vadodara','Gujarat','Sagbara','Narmada','GUJARAT'),('Moticheir',394651,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Motichanol',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Motibumadi',391155,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Motibhamti',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Motibhalsan',361012,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('MotiBeg',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Motibarar',363670,'Rajkot','Rajkot','Gujarat','Maliya Miyana','Rajkot','GUJARAT'),('MotiAmroli',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Moti Zari',389130,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Moti Vavdi',364275,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Moti Vavdi',382255,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Moti Vavdi',360440,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Moti Valzar',396321,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Moti Vahiyal',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Moti Umaravan',389370,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Moti Tambadi',396193,'Valsad','Vadodara','Gujarat','Dadra & Nagar Haveli','Valsad','GUJARAT'),('Moti Sudadhro',370655,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Moti Sindhodi',370640,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Moti Sarsan',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Moti Rel Purv',389172,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Moti Rantai',382145,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Moti Rajasthali',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Moti Pipli',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Moti Pavad',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Moti Parabadi',360360,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Moti Panduri',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Moti Nan Dukan',389172,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Moti Moydi',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Moti Mori',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Moti Moldi',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Moti Marad ',360421,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Moti Kundal',364730,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Moti Khokhari',361306,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Moti Khilori',364465,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Moti Khervan',394670,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Moti Khavdi',361140,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Moti Kharaj',389160,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Moti Khakhar',370435,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Moti Khajuri',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Moti Kantadi',388710,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Moti Jagdhar',364295,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Moti Isrol',383317,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Moti Hirvani',384325,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Moti Ghoda',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Moti Fafdi',362720,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Moti Dharai',364313,'Bhavnagar','Rajkot','Gujarat','Vallbhipur','Bhavnagar','GUJARAT'),('Moti Dau',384120,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Moti Chinchano',383316,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Moti Boru',382230,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Moti Bhalu',384330,'Mahesana','Ahmedabad HQ','Gujarat','Satlasana','Mahesana','GUJARAT'),('Moti Bebar',383250,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Mothara ',370650,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Motha',362550,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Motesari',383305,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Motera ',380005,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmedabad','Ahmedabad','GUJARAT'),('Motavanta',391170,'Vadodara East','Vadodara','Gujarat','Kawant','Vadodara','GUJARAT'),('Motavadia',360515,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Motatimbla',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Motasukamba',393040,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Motasamdhiyala ',365635,'Amreli','Rajkot','Gujarat','Khambha','Amreli','GUJARAT'),('Motasada',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Motap',384212,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Motamansa',362730,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Motamandha',361010,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Motamalpur',393110,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Motamadhad',363435,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Motali',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Motal',389001,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Motakhuntavada ',364280,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Motakhijadia',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Motakalavad',360515,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('MotaHabipura',391110,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Motaghoda',391168,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Motadesar',362560,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('MotaBhela',363660,'Rajkot','Rajkot','Gujarat','Dahisara','Rajkot','GUJARAT'),('Mota-zinjuda',364515,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Mota-ujla',365450,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Mota-munjiyasar',365440,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Mota-mandvada',365440,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Mota-kankot',365535,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Mota-jampur',385555,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Mota-devaliya',365410,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Mota-ankadiya ',365455,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Mota-agariya',365560,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Mota Zadra',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Mota Varachha ',394101,'Surat','Vadodara','Gujarat','Chorasi','Surat','GUJARAT'),('Mota Vagudad',361210,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Mota Vada',360021,'Rajkot','Rajkot','Gujarat','Lodhika','Rajkot','GUJARAT'),('Mota Umarda',364740,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Mota Tradia',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Mota Thavaria',361110,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Mota Tarpada',394365,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Mota Surka',364240,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Mota Sorva',393115,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Mota Sonela',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Mota Samadhiyala',362565,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Mota Pondha',396191,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Mota Miya Mangrol ',394410,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Mota Mesra',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Mota Mava',360005,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Mota Mandva',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Mota Kotda',383421,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Mota Khokhra',364050,'Bhavnagar','Rajkot','Gujarat','Gogha','Bhavnagar','GUJARAT'),('Mota Khijadia',363650,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Mota Karala',391105,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Mota Kantharia',383251,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Mota Kajaliyara',362610,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Mota Joravarpura',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Mota Jambuda',393130,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Mota Jalundra',382305,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Mota Itala',361210,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Mota Hadmatia',362110,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Mota Gundala',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Mota Fofalia',391115,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Mota Chekhla',383305,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Mota Charodiya',364505,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Mota Borsara',394110,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Mota Bharudiya',361170,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Mota Bhadia',370455,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Mota Baval',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Mota Bandra',370105,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Mota Asrana',364280,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Mota Ankevaliya',363040,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Mota Amadra',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Mota ',394345,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Mota',385510,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Moskut',393041,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Mosam',392140,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Mosali ',394421,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Morzira',394710,'Bardoli','Vadodara','Gujarat','Dangs','The Dangs','GUJARAT'),('Morzar',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Morwada',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Morvada',362720,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Morvada',362020,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Morvad(Juni)',363410,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Morva Hadaf ',389115,'Panchmahals','Vadodara','Gujarat','Morva Hadaf','Panch Mahals','GUJARAT'),('Morva ( Rena)',389001,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Moruka',362140,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Morthana',394130,'Surat','Vadodara','Gujarat','Sayan','Surat','GUJARAT'),('Morthana',394325,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Morthala',363530,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Morthal',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Mortalav',393110,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Morpa',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Morkanda',361120,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Moritha',394160,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Morikha',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Moridad',360540,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Moriana',393130,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Moria(P)',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Moria (N)',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Moria',391120,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Mordevi',394250,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Morchupna',364510,'Bhavnagar','Rajkot','Gujarat','NA','Bhavnagar','GUJARAT'),('Morchand',364050,'Bhavnagar','Rajkot','Gujarat','Gogha','Bhavnagar','GUJARAT'),('Morbi Shakti Plot ',363641,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Morbi Ppw ',363642,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Morbi Nani Bazar ',363641,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Morbi MDG ',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Morbi GIDC ',363641,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Morba',364505,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Morangi',365555,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Morangana',391168,'Vadodara East','Vadodara','Gujarat','Ch.udepur','Vadodara','GUJARAT'),('Morana',360590,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Moramba',394380,'Bardoli','Vadodara','Gujarat','Nijhar','Surat','GUJARAT'),('Morakhala',391125,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Moraj',388180,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Moraiya',382213,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Morai',396191,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Moradungari',391140,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Moradiya',362268,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Morad',388130,'Anand','Vadodara','Gujarat','Perlad','Anand','GUJARAT'),('Mora(Surat)',394517,'Surat','Vadodara','Gujarat','NA','Surat','GUJARAT'),('Mora(Panch Mahals)',389110,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Mor ',394530,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Mor',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Monvel',365645,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Monpur',365620,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Monpar',364313,'Bhavnagar','Rajkot','Gujarat','Vallabhipur','Bhavnagar','GUJARAT'),('Monpar',364145,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Monia',362120,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Mongrol',392110,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Momaymora',370445,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Molipur',384355,'Mahesana','Ahmedabad HQ','Gujarat','Vadnagar','Mahesana','GUJARAT'),('Moli',389175,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Moletha',391105,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Moldi',364521,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Moldhara',396427,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Molaamba',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Mol',389365,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Mokshi',391780,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Mokhdi',393125,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Mokhasan',382740,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Mokhada',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Mokha',370410,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Mokal',360570,'Porbandar','Rajkot','Gujarat','Ranavav','Porbandar','GUJARAT'),('Mojira',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Mojidad',363410,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Mojari',389120,'Panchmahals','Vadodara','Gujarat','Morva Hadaf','Panch Mahals','GUJARAT'),('Mojap',361345,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Mohpada',396065,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Mohni',394305,'Bardoli','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Mohmedpura ',392001,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Mohlel ',387330,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Mohanpur',396310,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Mohanpur',383305,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Mohan',396105,'Valsad','Vadodara','Gujarat','Umbergaon','Valsad','GUJARAT'),('Mohamedpur',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Mohabatpur',362205,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Mogri ',388345,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Mogravadi',396060,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Moghvan',394650,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Moghela',391152,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Mogar ',388340,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Mogar',396445,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Modvadar',370110,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Modpar (Matva)',361013,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Modpar',360531,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Modpar',361280,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Modhvana',363110,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Modhvada',360590,'Porbandar','Rajkot','Gujarat','Porbaandar','Porbandar','GUJARAT'),('Modhuka',360055,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Modhuka',383305,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Modhera ',384212,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Moddar',362650,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Modasar',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Modasar',391135,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Modasa Bazar ',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Modasa ',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Modaj',387110,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Moda',361110,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Moda',370155,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Mobha Road ',391430,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Mobha',388170,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Mobha',391430,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Miyapur',394250,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Miyani',360579,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Miyagam Karjan ',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Miyagam',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Mitrala',360576,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Mitral',387710,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Mitli',388180,'Kheda','Vadodara','Gujarat','Tarapura=','Anand','GUJARAT'),('Mitiyala',364522,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Mitiyaj',362720,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Miti',362620,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Mithivav',393151,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Mithibor',391165,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Mithi Vavdi',384220,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Mithi Rohar',370240,'Kutch','Rajkot','Gujarat','Gandhidham','Kachchh','GUJARAT'),('Mithi Gariyal',384221,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Mithapura (Jesapura)',388230,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Mithapur(Jamnagar)',361345,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Mithapur',382230,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Mithali',389001,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Mithadi',370510,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Mitha Dharva',384229,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Mitha',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Mitha',384001,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Mitana',363650,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Misariado',370510,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Mirzapore',396436,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Mirzapar',370001,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Mirpur',394655,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Miroli',382425,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Mirkot',394670,'Bardoli','Vadodara','Gujarat','Uchchhal','Surat','GUJARAT'),('Mirap',389120,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Mira Khedi',389160,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Minkachha',396430,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Mingalpur',382455,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Mindhol',391250,'Vadodara East','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Mindhiari',370601,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Mindhiara',370130,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Minavada',387630,'Kheda','Vadodara','Gujarat','Mahemdabad','Kheda','GUJARAT'),('Minapur',363415,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Minakyar',389155,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Milarampura',388180,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Miamatar',392035,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Mevli',391770,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Mevda',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Mevasa',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Mevasa',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Mevasa',364313,'Bhavnagar','Rajkot','Gujarat','Vallbhipur','Bhavnagar','GUJARAT'),('Mevasa',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Mevad',382710,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Meu',382730,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Metrana',384290,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Metral',389110,'Panchmahals','Vadodara','Gujarat','Morwa (Hadaf)','Panch Mahals','GUJARAT'),('Metpur',388620,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Methodist Hospital Tso Nad ',387002,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Methi',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Methan',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Methan',389175,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Methan',384290,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Meta Khambhaliya',364465,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Meta',385520,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Meswan',362227,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Mesrad',392220,'Bharuch','Vadodara','Gujarat','Bharuch','Vadodara','GUJARAT'),('Mesavada',360023,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Mesariya',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Mesar',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Mesan',383450,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Mervadar',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Merupar',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Meriyana',364522,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Merau',370465,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Merakuva',391774,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Menpura ',388235,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Menpura',391220,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Mengni ',360070,'Gondal','Rajkot','Gujarat','Kotda Sangani','Rajkot','GUJARAT'),('Mendpara',362030,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Mendhar',396310,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Mendha',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Mendarda ',362260,'Junagadh','Rajkot','Gujarat','Mendarda','Junagadh','GUJARAT'),('Memnagar ',380052,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Memna',384241,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Memka',363030,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Memdavad',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Memana',361170,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Memadpur ',385421,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Meloj',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Melana',364760,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Melaj',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Mela',393135,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Mekhdi',362240,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Mekhar',389115,'Panchmahals','Vadodara','Gujarat','Morva Hadaf','Panch Mahals','GUJARAT'),('Mekha Timbi',360470,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Mekda',364525,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Mehtapura',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Mehru',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Mehlol',389340,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Meh',396020,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Meghval',396240,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Meghva',388345,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Meghraj ',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Meghpur',362610,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Meghpur',361220,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Meghpar Zala',363650,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Meghpar Titodi',361305,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Meghpar (Lakhpat)',370625,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Meghpar',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Meghpar',370430,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Meghpar',364490,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Meghapipalia',365480,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Meghaningar ',380016,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Meghaliasana',384001,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Meghakui',391107,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Medra',382330,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Meditimba',383240,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Medical Campus ',361008,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Medhasan',383276,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Medha',382165,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Medh',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Medapur',389310,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Mayurnagar ',363351,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Maye',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Mavsari',385566,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Mavnagam',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Mavjinjva',365456,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Mavdi',360004,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Mauza',393130,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Mauvana',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Mauchha',383210,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Mau Bhavnath',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Mau',370445,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Matvad ',396439,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Matva',389152,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Matva',361013,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Matrota',384240,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Matroj',392220,'Bharuch','Vadodara','Gujarat','Bharuch','Vadodara','GUJARAT'),('Matpur',384275,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Matoda',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Matoda',382213,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Matiyana',362625,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Matirala',365430,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Matied',393020,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Mathasur',383430,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Mathasulia',383276,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Mathasul',382705,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Mathal',370605,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Mathak',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Mathak',370205,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Mathada',370130,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Matel',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Mataval',394380,'Bardoli','Vadodara','Gujarat','Nijhar','Surat','GUJARAT'),('Matarvaniya',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Matariya Vyas',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Mataria Vejam',389115,'Panchmahals','Vadodara','Gujarat','Morva Hadaf','Panch Mahals','GUJARAT'),('Mataria Vadi',389120,'Panchmahals','Vadodara','Gujarat','Morwa (Hadaf)','Panch Mahals','GUJARAT'),('Matar ',387530,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Masra',388215,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Masota',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Masma',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Maska',370465,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Masitia',361006,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Masar Road ',391421,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Masar',391421,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Masang Moti',382315,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Masali',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Masal',383230,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Masad',394335,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Masabar',389390,'Panchmahals','Vadodara','Gujarat','Jambughoda','Panch Mahals','GUJARAT'),('Masa',396310,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Marusana',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Martoli',384430,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Maroli Sanjan ',396130,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Maroli Bazar ',396436,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Maroli',396436,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Marmath',362620,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Marla',396055,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Mariumpura',388450,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Marida',387360,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Margala',389190,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Mapar',370475,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Manund ',384260,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Manubar',392160,'Bharuch','Vadodara','Gujarat','Bharuch','Vadodara','GUJARAT'),('Mansa(Gandhi Nagar)',382845,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Mansa Bazar ',382845,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Manpuria',385135,'Banasanktha','Ahmedabad HQ','Gujarat','Shri Amirgadh','Banaskantha','GUJARAT'),('Manpura',388150,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Manpura',385210,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Manpur',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Manpur',385550,'Banasanktha','Ahmedabad HQ','Gujarat','Kankraj','Banaskantha','GUJARAT'),('Manpur',362260,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Manpur',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Manpar',360515,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Manpar',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Manorpur',383030,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Manmodi',394730,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Manli',389140,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Mankwa',387130,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Mankuwa ',370030,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Mankunia',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Mankol',382110,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Mankodi',391170,'Vadodara East','Vadodara','Gujarat','Kawant','Vadodara','GUJARAT'),('Manknaj',384421,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Mankna',394325,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Mankhetra',362225,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Mankdi',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Mankdi',383240,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Manka',391170,'Vadodara East','Vadodara','Gujarat','Kawant','Vadodara','GUJARAT'),('Manjusar',391775,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Manjrol',391250,'Vadodara East','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Manjrol',391110,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Manjola',392035,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Manjipura',388230,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Manjipura',387320,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Manjalpur ',390011,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Manjal (H)',370465,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Manjal ( R )',370490,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Manjal ',370610,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Maniyor',383230,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Maniyari',384221,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Manipur (C)',388713,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Manipur',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Manipur',382728,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Maninagar ',380008,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Mangvapal',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Mangvana',370030,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Mangrol(Junagadh)',362225,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Mangrol Bundar ',362226,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Mangrol Bazar ',362225,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Mangrol',393150,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Mangrol',392230,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Mangrol',396436,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Mangnathpipli',362110,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Mangliana',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Mangleshwar',392030,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Manglej',391243,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Manghroli',387115,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Manghrol',387210,'Kheda','Vadodara','Gujarat','Sojitra','Anand','GUJARAT'),('Mangalpur',383345,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Mangalpur',362222,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Mangadh',364275,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Mangadh',383110,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Manfara',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Manekwada',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Manekwada',360030,'Gondal','Rajkot','Gujarat','Kotda','Rajkot','GUJARAT'),('Manekvada',365440,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Manekvada',362222,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Manekpura',382845,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Manekpur',361210,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Manekpore(Gadat)',396350,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Manekpore(Chikhli)',396560,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Manekpore Tankoli',396445,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Manekpore',396120,'Valsad','Vadodara','Gujarat','Umbergaon','Valsad','GUJARAT'),('Manekpor',394340,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Manekbag ',380015,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Manek Chowk ',380001,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Maneja ',390013,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Mandvi(Vadodara)',390001,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Mandvi SR ',394160,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Mandvi Chowk ',361001,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Mandvi',364275,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Mandvi',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Mandvabuzarg',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Mandva',362650,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Mandva',391105,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Mandva',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Mandva',364740,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Mandva',391115,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Mandropur',384325,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Mandroi',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Mandorna',362140,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Mandor',389155,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Mandlikpur',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Mandli',389175,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Mandlava',391165,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Mandlasar',363530,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Mandla',385560,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Mandir',396472,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Mander',362230,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Mander',389130,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Mandavkhadak',396060,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Mandavdhar',364750,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Mandasan',360480,'Gondal','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Mandardi',365560,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Mandan Kundla',360330,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Mandali',384130,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Mandali',382840,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Mandala',391210,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Mandala',393130,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Mandal(Ahmedabad)',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Mandal',365555,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Mandal',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Manda',396155,'Valsad','Vadodara','Gujarat','Umbergaon','Valsad','GUJARAT'),('Manchi Haveli',389360,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Manchhasara',392110,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Manavant',391168,'Vadodara East','Vadodara','Gujarat','Ch.udepur','Vadodara','GUJARAT'),('Manavadar ',362630,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Manar',364150,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Manamora',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Manaj',388150,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Manaichondi',396051,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Manad',392130,'Bharuch','Vadodara','Gujarat','Vagra','Vadodara','GUJARAT'),('Manaba',370145,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Mamuara',370020,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Mamaymora',370155,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Mamana',385570,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Malvav',364130,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Malvasi',389180,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Malvan(Jat)',382745,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Malvan ',389265,'Panchmahals','Vadodara','Gujarat','Santrampura','Panch Mahals','GUJARAT'),('Malvan',396385,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Malvan',388245,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Malvan',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Malupur',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Malu',391761,'Vadodara West','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Malu',389365,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Malu',388620,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Malsika',365640,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Malsar',391115,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Malpur ',383345,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Malpur',391250,'Vadodara East','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Malpur',391145,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Malpur',392155,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Malpara',364730,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Malpara',364002,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Malotra',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Malosan',382815,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Malod',363020,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Maljinjva',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Maliyasan',360003,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Maliya Miyana ',363670,'Rajkot','Rajkot','Gujarat','Maliya','Rajkot','GUJARAT'),('Malila',365630,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Malika',363115,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Maliataj',387380,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Maliadhara',396521,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Malia Hatina ',362245,'Junagadh','Rajkot','Gujarat','Malia','Junagadh','GUJARAT'),('Malgadh',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Maleta',361320,'Jamnagar','Rajkot','Gujarat','Jamkalyanpur','Jamnagar','GUJARAT'),('Malesar ',396445,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Malekpur (Vad)',384355,'Mahesana','Ahmedabad HQ','Gujarat','Vadnabar','Mahesana','GUJARAT'),('Malekpur ',389235,'Panchmahals','Vadodara','Gujarat','NA','Panch Mahals','GUJARAT'),('Malekpor',394315,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Malegaon',394720,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Maldha',394440,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Malavada',387520,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Malav',396105,'Valsad','Vadodara','Gujarat','Umbergaon','Valsad','GUJARAT'),('Malav',389310,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Malataj ',387220,'Kheda','Vadodara','Gujarat','Sojitra','Anand','GUJARAT'),('Malasa',383450,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Malanpur',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Patdi','Surendra Nagar','GUJARAT'),('Malanpur',393030,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Malanka',362260,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Malanka',364002,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Malanka',360490,'Gondal','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Malaniyad',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Malangdev',394716,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Malana',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Malan',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Malai',388225,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Mal Itadi',387640,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Mal',362650,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Maktupur',384170,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Maktupur',362225,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Maktampur ',392012,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Makrani Sanosara',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Makni',391145,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Makhiyala',362011,'Junagadh','Rajkot','Gujarat','Junagadh','Junagadh','GUJARAT'),('Makhiav',382110,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Makhel',370155,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Makhania',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Makhalia',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Makhakarod',360540,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Makda',370445,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Makarpura ',390014,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Makansar',363642,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Makajimeghpar',360110,'Rajkot','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Makadban',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Majra',383205,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Majoth',361210,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Majivana',360590,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Majigam',396521,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Majevadi ',362011,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Majatan',391450,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Majadar',385210,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Mahwshkatri',394715,'Bardoli','Vadodara','Gujarat','The Dangs','The Dangs','GUJARAT'),('Mahuvej',394125,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Mahuvas',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Mahuvaria',394248,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Mahuvad',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Mahuva(Surat)',394250,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Mahuva(Bhavnagar)',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Mahuva Gandhibaug ',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Mahuva Bazar ',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Mahupada',393050,'Bharuch','Vadodara','Gujarat','Sagbara','Narmada','GUJARAT'),('Mahunipada',393050,'Bharuch','Vadodara','Gujarat','Sagbara','Narmada','GUJARAT'),('Mahulia',389001,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Mahudi',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Mahudi',396466,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Mahudi',382855,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Mahudhala',392020,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Mahudha ',387335,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Mahor',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Mahobatpara',362650,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Mahmadpura',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Mahiyari',388180,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Mahiyari',362620,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Mahiyapur',383345,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Mahiyal',383215,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Mahiyal',384325,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Mahisa ',387340,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Mahiki',360530,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Mahika',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Mahika',360002,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Mahijada',382425,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Mahij',387120,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('MahiItadi',388235,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Mahidharpura ',395003,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Mahi',385210,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Mahesana Railway Colony ',384002,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Mahesana Ongc Colony ',384003,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Mahesana JSM ',384001,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Mahesana I E ',384002,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Mahesana Bazar ',384001,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Mahesana ',384001,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Mahervada',384130,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Mahendranagar',363642,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Mahemdavad ',387130,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Mahelav ',388440,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Mahelaj',387530,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Mahalpada',394710,'Bardoli','Vadodara','Gujarat','Dangs','The Dangs','GUJARAT'),('Mahal',394716,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Mahadevpura Kampa',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Mahadevpura',383210,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Mahadevia',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Mahadevia',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Mahadevgram',383317,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Maguna',384410,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Magroda',384305,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Magodi',383335,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Magodi',382355,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Magod Dungri',396020,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Magod',396020,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Magob Bhatha',396436,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Magnad',392150,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Maghasar',389330,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Magharvada',362215,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Magharvada',360023,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Magdalla',395007,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Magarwada',385410,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Magarkui',394655,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Magarbara',394375,'Bardoli','Vadodara','Gujarat','Uchchhal','Surat','GUJARAT'),('Magalia',394633,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Madrisana',382145,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Madka',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Madhvas',389330,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Madhvas',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Madhutra',385350,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Madhupura Market ',380004,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Madhupur Jambur',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Madhpura',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Madhiya',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Madhi ',394340,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Madhi',382860,'Mahesana','Ahmedabad HQ','Gujarat','Satlasana','Mahesana','GUJARAT'),('Madheli',391760,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Madhavpur ',362230,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Madhavgadh',383330,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Madhavgadh',383305,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Madhavgadh',382320,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Madhasana',384335,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Madhar',394130,'Surat','Vadodara','Gujarat','Sayan','Surat','GUJARAT'),('Madhapar ',370020,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Madhapar',361240,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Madhapar',360006,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Madhada',364240,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Madh',370625,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Madar',389350,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Madapur Kampa',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Madanzampa ',390001,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Madana (Dangia )',385510,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Madana',385515,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Madan Boria',394440,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Madal',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Madafar',392040,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Machyalanana',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Machhlivad',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Machhiwad',396125,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Machhiel',387530,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Machhia Vasan',396310,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Machhelai',389130,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Machhava',384130,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Machharda',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Machhad',396440,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('M.I. Estate ',390010,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('M D Marg ',380022,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Luvarvav',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Luvariya',365430,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Luvara',364505,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Luvara',364522,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Luvara',392210,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Luvara',394405,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Luvana',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Lusvada',396310,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Lushala ',362215,'Junagadh','Rajkot','Gujarat','Vanthali(s)','Junagadh','GUJARAT'),('Lusdi',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Lusadia ',383251,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Lunva',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Lunva',384130,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Lunsariya',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Lunsar',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Lunsapur',365540,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Lunpur',385540,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Lunki',365421,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Lunivav',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Lunidhar ',365460,'Amreli','Rajkot','Gujarat','Kunkvav-vadia','Amreli','GUJARAT'),('Luni',370410,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Lunghiya',365645,'Amreli','Rajkot','Gujarat','Dhari','Amreli','GUJARAT'),('Lunej',388620,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Lundhara',364310,'Bhavnagar','Rajkot','Gujarat','Vallabhipur','Bhavnagar','GUJARAT'),('Lunawada ',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Lunasan',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Luna',393135,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Luna',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Lumbha',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Lukhavada',389140,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Luharvad',394440,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Ludva',370445,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Ludra',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Loya',363410,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Lotia',391125,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Lotia',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Lothal Bhurkhi RS ',382230,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Loteshwar',384241,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Lotarva',394690,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Lorwada',385530,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Loria',370001,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Lonhtpur',365540,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Longdi',364295,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Loliyana',364330,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Loliya',382465,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Lolasan',383010,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Lolada',384241,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Lokshala',364150,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Loinga',364295,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Loharia',370130,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Loej',362225,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Lodrani',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Lodrani',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Lodra ',382835,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Lodra',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Lodhva',362275,'Junagadh','Rajkot','Gujarat','Sutrapada','Junagadh','GUJARAT'),('Lodhika ',360035,'Gondal','Rajkot','Gujarat','Lodhika','Rajkot','GUJARAT'),('Lodai',370001,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Liya',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Lingsthali',391220,'Vadodara West','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Lingda',388220,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Lingad',394230,'Surat','Vadodara','Gujarat','Sachin','Surat','GUJARAT'),('Linga',394710,'Bardoli','Vadodara','Gujarat','Dangs','The Dangs','GUJARAT'),('Linch ',384435,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Limzar',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Limodra',393110,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Limodra',394110,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Limli',363020,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Limkheda ',389140,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Limet',393135,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Limdi Timba',389232,'Panchmahals','Vadodara','Gujarat','Khanpur','Panch Mahals','GUJARAT'),('Limdi Doli',389110,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Limdi ',389180,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Limdi',391530,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Limdi',392165,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Limdi',393155,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Limda (H)',364740,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Limda',391760,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Limda',383462,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Limbuni',385570,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Limbuda',361011,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Limbuda',362620,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Limbodra',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Limbodara',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Limbodara',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Limbi',394680,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Limbhola',389250,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Limbhoi ',383316,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Limbhoi',383430,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Limberda',394651,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Limbdiya',364730,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Limbdi ',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Limbayat',395012,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Limbasi ',387520,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Limbarwada',388260,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Limbadia',382330,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Limbada',394405,'Surat','Vadodara','Gujarat','Velachha','Surat','GUJARAT'),('Limb',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Limadia',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Limadhra',362120,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Lilora',391510,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Lilod',393105,'Bharuch','Vadodara','Gujarat','Rajpipala','Vadodara','GUJARAT'),('Liliya ',365535,'Amreli','Rajkot','Gujarat','Liliya','Amreli','GUJARAT'),('Lilchha',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Lilapur',360050,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Lilapur',382775,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Lilapore',396030,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Lilapar',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Likhi',383010,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Likhala',364522,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Lihoda',382315,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Light House',364515,'Amreli','Rajkot','Gujarat','Savar Kundla','Amreli','GUJARAT'),('Lhor',382165,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Letar',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Leriya',362130,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Lekawada',382042,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Lei',383430,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Laxmipura (Sabarkantha) ',383275,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Laxmipura',388620,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Laxmipura',384315,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Laxmipura',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Laxmipura',385550,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Laxmipar (N)',370620,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Laxmikheda',394370,'Bardoli','Vadodara','Gujarat','Nijhar','Surat','GUJARAT'),('Lavet',394430,'Surat','Vadodara','Gujarat','Vankal','Surat','GUJARAT'),('Lavchali',394716,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Lavarpur',382355,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Lavari',383305,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Lavara',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Lavanpur',363660,'Rajkot','Rajkot','Gujarat','Dahisara','Rajkot','GUJARAT'),('Lavana',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Laval',387380,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Lavakui',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Lavadia',361012,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Lavad',382305,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Lavachha',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Lavachha',396193,'Valsad','Vadodara','Gujarat','Dadra & Nagar Haveli','Valsad','GUJARAT'),('Latwa',391530,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Latipura',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Latipur ',361220,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Lati',362268,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Lathidad',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Lathi(Amreli)',365430,'Amreli','Rajkot','Gujarat','Lathi','Amreli','GUJARAT'),('Lathedi',370490,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Lath',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Lasundra ',387640,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Laskana',395006,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Lasanpor',396510,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Lapkaman',380060,'Gandhinagar','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Lanva ',384229,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Lank',383330,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Langhnaj ',382730,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Langdi',393025,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Langala',364320,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Lanchanpura',391770,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Lamdapura',391775,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Lambhvel',387310,'Kheda','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Lambha',382405,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Lambadiya',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Lamba',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Lalpur(Jamnagar)',361170,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Lalpur',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Lalpur',383410,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Lalpur',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Lalparda',361306,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Lalpar',363642,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Laloi',361013,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Laloda',383430,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Laliyana',370150,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Laliyad',363410,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Lalinomath',383307,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Lali',387120,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Lalawada',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Lalavadar',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Lala',370640,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Lal Darwaja ',380001,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Lal Bunglow ',361001,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Lakroda',382835,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Lakodara',391244,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Lakhvad',384001,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Lakhtar ',382775,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Lakhtar',361250,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Lakhond',370105,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Lakhiyarvira',370665,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Lakhigam',392130,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Lakhgam',394160,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Lakheni',364760,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Lakhawadi',396321,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Lakhavad(Nani)',360060,'Rajkot','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Lakhavad Moti',360055,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Lakhapar',370627,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Lakhapar',370425,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Lakhapar',370110,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Lakhapadar',365635,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Lakhapadar',365460,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Lakhanpur',389190,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Lakhanpur',394352,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Lakhanka',364765,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Lakhanka',364070,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Lakhania',370660,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Lakhani',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Lakhali',394655,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Lakhagadh',370155,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Lakhabavad',361006,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Lakdi Poyada',388270,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Lakadiya',364150,'Bhavnagar','Rajkot','Gujarat','Gogha','Bhavnagar','GUJARAT'),('Lakadia ',370145,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Lakadbari',396051,'Valsad','Vadodara','Gujarat','Bansda','Navsari','GUJARAT'),('Lajpore ',394235,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Lajai',363641,'Rajkot','Rajkot','Gujarat','Taankaraa','Rajkot','GUJARAT'),('Laiyala',361210,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Laija ',370475,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Ladvi',394325,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Ladvel',389220,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Ladvel',387640,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Ladudi',362255,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Ladpur',389265,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Ladol ',382840,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Ladod',391135,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Lacjjadi',384305,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Lachhras ',393150,'Bharuch','Vadodara','Gujarat','Nadod','Narmada','GUJARAT'),('Lachharas',391130,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Labadadhara',389365,'Panchmahals','Vadodara','Gujarat','Ghoghamba','Panch Mahals','GUJARAT'),('L.B.Chakla ',392001,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('L G Hospital ',380008,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Kuwazar',389115,'Panchmahals','Vadodara','Gujarat','Morva Hadaf','Panch Mahals','GUJARAT'),('Kuvasana',384315,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Kuvarvada',391760,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Kuvarshi',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Kuvarpura',391761,'Vadodara West','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Kuvarpura',391220,'Vadodara West','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Kuvarla',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Kuvala',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('KUVADAVA ',360023,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Kuvadar',392210,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Kutiyana Bazar ',362650,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Kutiyana ',362650,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Kutana',365565,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Kushki',383250,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Kushkal',385510,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Kurla',392160,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Kurgam',396007,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Kurelia',396590,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Kurel',396469,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Kureja',384255,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Kurchan',392025,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Kurbai',370030,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Kuranga',361335,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Kuran',370510,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Kurali',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Kural',391430,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Kurai',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Kunwara',384265,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Kunvarva',385550,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Kunvarda',394120,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Kunvarad',384241,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Kunvar',382110,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Kunvar',384241,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Kuntasi',363660,'Rajkot','Rajkot','Gujarat','Dahisara','Rajkot','GUJARAT'),('Kuntalpur',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Kunpur',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Kunol',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Kunkavav ',365450,'Amreli','Rajkot','Gujarat','Kunkvav-vadia','Amreli','GUJARAT'),('Kunjrav ',388335,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Kuni',388235,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Kungher ',384255,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Kundrodi',370410,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Kundol Pal',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Kundli',382245,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Kundi',396375,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Kundheli',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Kundhela',391107,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Kundhada',364145,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Kundha',389140,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Kundel',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Kundani',360060,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Kundaliya.',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Kundal',391165,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Kundal',382110,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Kundal',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Kundal',382450,'Gandhinagar','Ahmedabad HQ','Gujarat','Barwala','Ahmedabad','GUJARAT'),('Kunariya (K)',370510,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Kunariya',370001,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Kunad',361250,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Kuna',387110,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Kumkuva',394670,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Kumkotar',396510,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Kumetha',390019,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Kumbhasan',385515,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Kumbharwadi',388260,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Kumbharkha',385570,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Kumbhariya',365555,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Kumbhariya',363630,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Kumbhariya',364145,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Kumbharia',370145,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Kumbharia',396125,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Kumbharia',395010,'Surat','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Kumbharia',370110,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Kumbharadi',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Kumbhara',364720,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Kumbhar Falia',396466,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Kumbhana',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Kumbhan',364250,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Kumbhan',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Kumbhalmer',385510,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Kumarkhan',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Kumar',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Kulda',394375,'Bardoli','Vadodara','Gujarat','Uchchhal','Surat','GUJARAT'),('Kukvav',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Kukurmunda ',394380,'Bardoli','Vadodara','Gujarat','Nijhar','Tapi','GUJARAT'),('Kukrana',384240,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Kukma ',370105,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Kukeri',396560,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Kukdada',392020,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Kukdada',393041,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Kukda',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Kukasvada',362250,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Kukas',391250,'Vadodara East','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Kukarwada ',382830,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Kukarda',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Kukadia',383410,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Kukadi',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Kukad',391110,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Kukad',364120,'Bhavnagar','Rajkot','Gujarat','Gogha','Bhavnagar','GUJARAT'),('Kujad',382430,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Kuilivel',393050,'Bharuch','Vadodara','Gujarat','NA','Surat','GUJARAT'),('Kuha ',382433,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Kudsad',394110,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Kudol',383250,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Kudla',363410,'Surendranagar','Rajkot','Gujarat','Limndi','Surendra Nagar','GUJARAT'),('Kudiana',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Kudasan',382421,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Kudadra',393030,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Kuda',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Kuda',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Kuchiyadad',360023,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Kuchhdi',360579,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Kuched',396475,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Kuchawada',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Kubernagar B A ',382340,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Kubernagar ',382340,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Kubda',365640,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Kubadthal',382430,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Kuba Dharol',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Krishnanagar(Ahmedabad)',382345,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Krishanapur',396460,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Kribhconagar ',394515,'Surat','Vadodara','Gujarat','Chorasi','Surat','GUJARAT'),('Krankach ',365565,'Amreli','Rajkot','Gujarat','Liliya','Amreli','GUJARAT'),('Koyli Mandvi',393130,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Koyli',361220,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Koylana Ghed',362630,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Koyla',388260,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Koydam',388260,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Koyba',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Koyali ',391330,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Koyali',362205,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Kovaya',365541,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Kotna',391330,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Kotlindra',388230,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Kothwa',394110,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Kothiakhad',388520,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Kothia',392140,'Bharuch','Vadodara','Gujarat','Vagra','Vadodara','GUJARAT'),('Kothi Vantarsa',392220,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Kothi',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Kothi',360060,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Kothi',393151,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Kothi',392020,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Kothdi',362630,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Kothasana',384330,'Mahesana','Ahmedabad HQ','Gujarat','Satlasana','Mahesana','GUJARAT'),('Kothariya',363030,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Kotharia(TB Hosp)',360022,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Kotharia(Tankara)',363650,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('KOTHARIA(Rajkot)',360022,'Rajkot','Rajkot','Gujarat','NA','Rajkot','GUJARAT'),('Kotharia',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Kotharia',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Kotharia',362630,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Kothara ',370645,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Kothamba ',389220,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Kothamadi',396445,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Kothadia',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Kotha Pipalia',360035,'Gondal','Rajkot','Gujarat','Lodhika','Rajkot','GUJARAT'),('Kotha Bhadukia',361162,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Kotha',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Kotha',382735,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Kotha',396310,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Koth ',382240,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Koteshwar',385110,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Kotdi (M)',370450,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Kotdapitha',365421,'Amreli','Rajkot','Gujarat','Babra','Amreli','GUJARAT'),('Kotdapitha',365640,'Amreli','Rajkot','Gujarat','Dhari','Amreli','GUJARAT'),('Kotdabavisi',360530,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Kotda-N ',370605,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Kotda Sangani ',360030,'Gondal','Rajkot','Gujarat','Kotda','Rajkot','GUJARAT'),('Kotda Roha',370030,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Kotda Nayani',360003,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Kotda Nana',383110,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Kotda Mota',362020,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Kotda (Reha)',370105,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Kotda (Madh)',370625,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Kotda (C)',370020,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Kotda',362720,'Junagadh','Rajkot','Gujarat','Kodinar','Junagadh','GUJARAT'),('Kotda',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Kotda',362650,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Kotda',383422,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Kotay',370001,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Kotavad',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Kotarwada',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Kotambi',391510,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Kotadi',365560,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Kot',382870,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Kosmadi',394326,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Kosmada',395006,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Kosindra ',391140,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Kosindra',388510,'Anand','Vadodara','Gujarat','Anklav','Anand','GUJARAT'),('Kosimda',394715,'Bardoli','Vadodara','Gujarat','NA','Surat','GUJARAT'),('Koshiyal',387530,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Kosamkuwa',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Kosamdi',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Kosamba Bazar ',394120,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Kosamba (Valsad)',396007,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Kosamba ',394120,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Kosam',388250,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Kosam',387610,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Kosam',394520,'Surat','Vadodara','Gujarat','NA','Surat','GUJARAT'),('Kosadi',394335,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Kosadi',394405,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Kosad',394107,'Surat','Vadodara','Gujarat','Chorayasi','Surat','GUJARAT'),('Kos',396510,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Koriyani',370601,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Korda',363410,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Korda',385360,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Koral',393105,'Bharuch','Vadodara','Gujarat','Rajpipala','Vadodara','GUJARAT'),('Kora(Bharuch)',392155,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Koparli',396191,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Koparani',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Konjli',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Kondh',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Kondh',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Kolvan',393025,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Kolvan',388270,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Kolvada',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Kolva',396350,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Kolva',361306,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Kolundra',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Kolki(Rajkot)',360470,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Koliyak ',364070,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Koliwada',385340,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Kolithad',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Kolikhad',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Kolibharthana',394180,'Bardoli','Vadodara','Gujarat','Makrej','Surat','GUJARAT'),('Koliad',392220,'Bharuch','Vadodara','Gujarat','Bharuch','Vadodara','GUJARAT'),('Kolavana',392140,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Kolavada',382028,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Kolat',382210,'Ahmedabad City','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Kolamba',391152,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Kolak ',396115,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Kolad',382165,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Kokta',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Kokalia',370450,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Kojachora',370485,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Koita',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Kointia',382140,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Kohivav',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Kodvav',362620,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Kodram',385421,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Kodki',370030,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Kodiya',362530,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Kodinar Khadudyog ',362725,'Junagadh','Rajkot','Gujarat','Kodinar','Junagadh','GUJARAT'),('Kodinar ',362720,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Kodidra',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Kodiawada ',383462,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Koday ',370460,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Kodada',394250,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Kocharia',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Kobla',392035,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Koba',382007,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Koba',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Kob',362510,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Kiya',392310,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Kishnad',392220,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Kishangadh',383450,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Kinkhlod',388510,'Anand','Vadodara','Gujarat','Anklav','Anand','GUJARAT'),('Kinkariya',364280,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Kindarva',362255,'Junagadh','Rajkot','Gujarat','Patan-Veraval','Junagadh','GUJARAT'),('Kindarkheda',360590,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Kimoj',392170,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Kimbuva',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Kim Dungara',394160,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Kim Char Rasta ',394111,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Kim ',394110,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Killa Pardi ',396125,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Kilana',385360,'Patan','Ahmedabad HQ','Gujarat','Santalpurp','Patan','GUJARAT'),('Kikwad',394620,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Kikavada',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Kikakui',394650,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Kidotar',385130,'Banasanktha','Ahmedabad HQ','Gujarat','Shri Amirgadh','Banaskantha','GUJARAT'),('Kidiyanagar',370145,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Kidia',388270,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Kidi',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Kidi',363351,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Kidana',370205,'Kutch','Rajkot','Gujarat','Gandhidham','Kachchh','GUJARAT'),('Khutadia',394655,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Khushalpura',394650,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Khurdi',394655,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Khunvad',391130,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Khuntaj',387430,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Khundh',396521,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Khun',382455,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Khumarwad',387570,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Khudvel',396540,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Khudad',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Khredi',389160,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Khota Rampura',394445,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Khorvad',388365,'Anand','Vadodara','Gujarat','Unreth','Anand','GUJARAT'),('Khorsam',384220,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Khorda',394370,'Bardoli','Vadodara','Gujarat','Nizar','Surat','GUJARAT'),('Khorasa Gir',362255,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Khorasa Ahir',362215,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Khorana',360003,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Khorajnanoda',382170,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Khoraj',382735,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Khopi',393050,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Khopala',364320,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Khombhadi ',370670,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Kholvada',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Kholvad ',394190,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Kholeshwar',394180,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Kholadiyad',363020,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Khokhraumar',393040,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Khokharda',362215,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Khokhara Mehmadabad ',380008,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Khokhara',370020,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Khokhaddad',360022,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Khokarnesh',382245,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Khojpardi',394355,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Khojbal',392130,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Khojalvasa',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Khojaberaja',361012,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Khodu',363040,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Khodtalav',394651,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Khodla',385510,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Khodla',385550,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Khodiyarnagar ',382350,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Khodiyar Colony ',361006,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Khodiyar',382421,'Gandhinagar','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Khodasar',370145,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Khodapipar',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Khodana',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Khodamba',394163,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Khodamali',384360,'Mahesana','Ahmedabad HQ','Gujarat','Satlasana','Mahesana','GUJARAT'),('Khoda',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Khoda',385550,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Khoda',382170,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Khjuripipalia',365480,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Khjadia( R.S.',365430,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Khistri',360579,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Khisari',365660,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Khirsara Ghed',362220,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Khirsara (Vinjhan)',370490,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Khirsara (Ghed)',360450,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Khirsara',360021,'Rajkot','Rajkot','Gujarat','NA','Rajkot','GUJARAT'),('Khirsara',370620,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Khirsara',370645,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Khirkhai',389140,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Khirasara',364485,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Khirasara',361170,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Khirasara',361325,'Jamnagar','Rajkot','Gujarat','Jamkalyanpur','Jamnagar','GUJARAT'),('Khirai',363670,'Rajkot','Rajkot','Gujarat','Maliya Miyana','Rajkot','GUJARAT'),('Khintala',363440,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Khimrana',361120,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Khimat ',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Khimana',385550,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Khilosh',361130,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Khilodia',383307,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Khiloda',383250,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Khilavad',362530,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Khijdiyari',384241,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Khijdad',361320,'Jamnagar','Rajkot','Gujarat','Jamkalyanpur','Jamnagar','GUJARAT'),('Khijalpur',388215,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Khijadiya',364730,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Khijadiya',362260,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Khijadia(Khan)',365480,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Khijadia-khara',365456,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Khijadia',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Khijadia',361120,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Khicha',365640,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Khevaliya',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Khervadi',391761,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Kherva(Jat)',382745,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Kherva',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Kherva',384001,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Kherpada',393025,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Kheroli',388260,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Kherola',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Kherol',383215,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Kheroj',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Kherlav',396145,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Khergam(Gandevi)',396360,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Khergam (Ugat)',396469,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Khergam ',396040,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Khergadh',383275,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Kherdi',360002,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Kherdi',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Kherda',388365,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Kherda',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Kherancha',383355,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Kherana',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Kheralu ',384325,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Kherali-moti',365560,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Kherali',363020,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Kherai',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Kheradi',383250,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Khera',362250,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Khentva',385530,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Khengarpura',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Khengarpar',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Khedva',383255,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Khedoi ',370130,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Khedbrahma ',383255,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Khedavada',383220,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Khedasa',388530,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Kheda Karmasiya',391510,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Kheda ',387411,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Khed',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Khavda ',370510,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Khavad',382165,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Khatumba',361335,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Khatrivada',362550,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Khatraj I E',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Khatraj',387130,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Khatodara ',395002,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Khatoda',384355,'Mahesana','Ahmedabad HQ','Gujarat','Vadnagar','Mahesana','GUJARAT'),('Khatnal',388640,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Khatli',360452,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Khatiawant',391168,'Vadodara East','Vadodara','Gujarat','Kawant','Vadodara','GUJARAT'),('Khatdi',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Khatdi',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Khatana',396051,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Khatalwada ',396120,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Khatal',394715,'Bardoli','Vadodara','Gujarat','Ahwa','Surat','GUJARAT'),('Khata Ambha',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Khata',388260,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Khasta',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Khasdali',364530,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Khas',382255,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Kharvel',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Kharvasa',394210,'Surat','Vadodara','Gujarat','Udhna','Surat','GUJARAT'),('Kharvasa',394355,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Kharvani',389180,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Kharvan',394245,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Kharvada',384305,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Kharva',363030,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Kharva',361210,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Kharuva',370650,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Kharsana',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Kharsad',396406,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Kharoli',396570,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Kharoli',394163,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Kharol',389220,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Kharoi',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Kharoda',389160,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Kharod',394115,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Kharod',389365,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Kharod',389160,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Kharod',382840,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Kharod',388265,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Kharmada',391152,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Kharkhadi',389365,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Kharia',385555,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Khari Vavdi',384255,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Khari Rohar',370240,'Kutch','Rajkot','Gujarat','Gandhidham','Kachchh','GUJARAT'),('Khari Ghariayal',384230,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Khari',370510,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Khari',364240,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Khari',365456,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Khari',364295,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Kharetha',393130,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Kharel ',396430,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Kharedi ',360540,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Kharedi',364275,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Khareda',360030,'Gondal','Rajkot','Gujarat','Kotda','Rajkot','GUJARAT'),('Khareda',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Khared',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Kharechiya',360025,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Khardosan',385540,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Khardipada',393130,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Kharchiya(Jam)',360060,'Rajkot','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Kharchi',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Kharanti',387520,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Kharana',382845,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Kharakuva Dholka ',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Kharakadi',364260,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Kharaghoda ',382760,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Kharad',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Kharachiya (V)',362030,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Kharachiya',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Kharachiya',360470,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Kharachia',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Kharach',394120,'Surat','Vadodara','Gujarat','Olpad','Bharuch','GUJARAT'),('Khara',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Khapat',362530,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Khapat',360579,'Porbandar','Rajkot','Gujarat','NA','Porbandar','GUJARAT'),('Khaparvada',396321,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Khapariya',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Khaparia B0',396430,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Khanusa',382850,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Khanpurdeh',392150,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Khanpur(Ahmedabad)',380001,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Khanpur Rajkuva',384255,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Khanpur',396051,'Valsad','Vadodara','Gujarat','Bansda','Navsari','GUJARAT'),('Khanpur',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Khanpur',394320,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Khanpur',394641,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Khanpur',382315,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Khanpur',388430,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Khanpur',388180,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Khanpur',388365,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Khanpar',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Khankuva',388205,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Khankotda',361013,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Khankharda',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Khankhanpur',388220,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Khanjroli',394335,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Khanjar',394365,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Khangela',389154,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Khandosan',384310,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Khandiya',391761,'Vadodara West','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Khandiya',363410,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Khandivav',389390,'Panchmahals','Vadodara','Gujarat','Jambughoda','Panch Mahals','GUJARAT'),('Khandhor (U)',385110,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Khandhli',388560,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Khandhli',387510,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Khandhevadia',360055,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Khandheri',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Khandheri',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Khandhera ',361013,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Khandhera',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Khanderaopura',382115,'Gandhinagar','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Khanderao Market ',390001,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Khandek',370155,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Khandania',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Khandadhar',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Khandachora Dhandhuka ',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Khanda',391760,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Khanda',396051,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Khanay',370650,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Khamta',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Khamidana',362220,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Khamidana',382450,'Gandhinagar','Ahmedabad HQ','Gujarat','Barwala','Ahmedabad','GUJARAT'),('Khamdhrol',362037,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Khambholej ',388330,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Khambhodar',360590,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Khambhla(Vansda)',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Khambhisar',383276,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Khambhei',384210,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Khambhda',396540,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Khambhat ',388620,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Khambhara',370110,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Khambhaliya',362250,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Khambhaliya',362030,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Khambhalida Motavas',361210,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Khambhalia Gate ',361001,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Khambhalia ',361305,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Khambhalav',363423,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Khambhala',365421,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Khambhala',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Khambhala',394716,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Khambhada',363320,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Khambhada',382450,'Gandhinagar','Ahmedabad HQ','Gujarat','Barwala','Ahmedabad','GUJARAT'),('Khambha Gir',362130,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Khambha ',365650,'Amreli','Rajkot','Gujarat','Khambha','Amreli','GUJARAT'),('Khambha',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Khalvad',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Khalpar',364525,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Khalikpur',383335,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Khali',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Khaksar',388625,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Khakhvada',396350,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Khakhriya',365421,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Khakhrechi',363630,'Rajkot','Rajkot','Gujarat','Maliya Miyana','Rajkot','GUJARAT'),('Khakhrala',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Khakhijaliya',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Khakhdabela',360110,'Rajkot','Rajkot','Gujarat','Dhrol','Rajkot','GUJARAT'),('Khakhbai',365560,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Khakharia',391510,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Khakhal',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Khajurdi',396001,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Khajurdi',360110,'Rajkot','Rajkot','Gujarat','Dhrol','Rajkot','GUJARAT'),('Khajurda',360440,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Khajod',395007,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Khajeli',363427,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Khageshri',362650,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Khadvanthali',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Khadsupa Boarding ',396433,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Khadsupa',396433,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Khadsaliya',364070,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Khadpipli',362260,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Khadoli',396230,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Khadol',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Khadol',388350,'Anand','Vadodara','Gujarat','Anklav','Anand','GUJARAT'),('Khadol',387365,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Khadol',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Khadodi',389232,'Panchmahals','Vadodara','Gujarat','Khanpur','Panch Mahals','GUJARAT'),('Khadodhi',388610,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Khadoda',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Khadki',396185,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Khadkhambhalia',361012,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Khadkhad',391165,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Khadkhad',365480,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Khadkala',364521,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Khadia ',380001,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Khadia',362263,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Khadia',362640,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Khadgodhra',388255,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Khadba',361170,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Khadat',382855,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Khadarpar',364120,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Khadana',388160,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Khadalpur',384421,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Khadakwal',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Khadadhar',365650,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Khada',387530,'Kheda','Vadodara','Gujarat','Tarapur','Kheda','GUJARAT'),('Khabda',394375,'Bardoli','Vadodara','Gujarat','Uchchhal','Surat','GUJARAT'),('Kewada',396001,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Kevdi',393041,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Kevdi',392020,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Kevadra ',362227,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Kevadia Colony ',393151,'Bharuch','Vadodara','Gujarat','Nadod','Narmada','GUJARAT'),('Kesli',396360,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Keshwan',392140,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Keshod Akshaygadh ',362229,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Keshod Aerodrome ',362220,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Keshod ',362220,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Keshod',361306,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Keshni',384225,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Keshlu',392025,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Keshiya',361250,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Keshimpa',384325,'Mahesana','Ahmedabad HQ','Gujarat','Vadnagar','Mahesana','GUJARAT'),('Keshbandh',394716,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Kesharpura',383230,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Kesharganj',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Kesariya',362560,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Kesardi',382240,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Kesara',387430,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Kervandh',370655,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Kervada',392025,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Keriyanagas',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Keriyachad',365630,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Keriavi',387355,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Keria',382245,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Kerali',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Kerali',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Kerala-j',365430,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Kerala',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Kerala',364515,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Kerala',364135,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Kerala',364750,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Kerala',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Kerala',365630,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Kera ',370430,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Keori',394445,'Surat','Vadodara','Gujarat','Zankhvav','Surat','GUJARAT'),('Kenpur',389110,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Kenedipur',362260,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Kenedi',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Kelvikuva',393130,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Kelod',392020,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Kelkui',394630,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Kelisana',382830,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('KeliaVasna',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Kelia',396060,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Kelia',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Kelava',383460,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Kelanpur',390004,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Kelamul',389265,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Kayavahron ',391220,'Vadodara West','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Kawas',394510,'Surat','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Kawant ',391170,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Kavli',392180,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Kavitha ',388545,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Kavitha',391125,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Kavitha',392210,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Kavitha',382260,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Kavi ',392170,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Kavdej',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Kavath',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Kavalka',362620,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Kavali',389210,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Kavadiya',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Kavachia',393130,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Kava',392150,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Kava',383434,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Kauka ',382265,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Kau',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Katwara ',389154,'Panchmahals','Vadodara','Gujarat','Panchamahals','Dahod','GUJARAT'),('Katwad',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Katuda',363040,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Katrodi',364525,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Katra (Samal)',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Katra',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Katpor',393030,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Katpar',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Katosan Road ',382145,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-Rampura','Ahmedabad','GUJARAT'),('Katosan',384430,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Katkola',360531,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Kathwada Maize Product ',382430,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Kathwada',382430,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Kathvavdi',383440,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Kathrota',362315,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Kathor ',394150,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Kathol',388530,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Kathodara',394326,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Kathlal ',387630,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Kathla',389154,'Panchmahals','Vadodara','Gujarat','Dohad','Dahod','GUJARAT'),('Kathi',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Kathda',370465,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Kathana RS ',388550,'Kheda','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Kathana',387640,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Kathana',388550,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Kathada',382750,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Katav',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Katasvan',394650,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Katarva',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Katariya',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Katargam GIDC ',395004,'Surat','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Katargam ',395004,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Katar',365560,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Kaswada',383345,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Kaswa',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Kasvav',394633,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Kasumbia',391761,'Vadodara West','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Kasumbad',388540,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Kasturinagar ',382423,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Kasturbadham ',360020,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Kasturba Vidyalaya',382007,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Kasor',388460,'Kheda','Vadodara','Gujarat','Sojitra','Anand','GUJARAT'),('Kasor',388205,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Kasodi',388260,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Kasindra',382465,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Kasindra',382210,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Kashipura(Borsad) ',388540,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Kasbara',388180,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Kasbapar',396445,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Kasari',388590,'Kheda','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Kasara',385555,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Kasana',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Kasal',394163,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Kasad',392020,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Karvali',394163,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Karsanpura',384335,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Karoli',387710,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Karoli',387335,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Karoli',382305,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Karoli',389341,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Karol',383205,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Karol',363410,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Karodiya Mota',370450,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Karodia',391310,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Karod',394375,'Bardoli','Vadodara','Gujarat','Uchchhal','Surat','GUJARAT'),('Karnet',391110,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Karnali',391105,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Karmdadi',365660,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Karmaliyapura',391761,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Karmala',394130,'Surat','Vadodara','Gujarat','Sayan','Surat','GUJARAT'),('Karmal',391210,'Vadodara West','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Karmadiya',364145,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Karmad ',392160,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Karmad',392150,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Karli',384170,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Karla',364280,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Karkhadi ',391450,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Karjoda',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Karjisan',382705,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Karjan',394155,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Karjan',392210,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Karjala',364515,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Kariyani',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Kariyana',365421,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Kariya',362030,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Karena',392230,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Karelibaug ',390018,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Kareli',391810,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Kareli',393151,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Karela',392025,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Kardej',364060,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Karchiya',391310,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Karchia',391520,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Karchha',383355,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Karchelia ',394240,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Karbun',385566,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Karbatia',384355,'Mahesana','Ahmedabad HQ','Gujarat','Vadnagar','Mahesana','GUJARAT'),('Karaya',396191,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Karavel',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Karath',389180,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Karanta',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Karanpur',383030,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Karannagar',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Karanjwant',391168,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Karanjveri',396051,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Karanjvel',394655,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Karanjkhed',394635,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Karanj',394530,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Karanj',394110,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Karan',394305,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Karamsad ',388325,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Karamdi',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Karambeli R.S.',396105,'Valsad','Vadodara','Gujarat','Umbergaon','Valsad','GUJARAT'),('Karambeli',396105,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Karamba',389180,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Karalipura',391110,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Karali',391135,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Karala',363115,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Karakthal',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Karajgam',396155,'Valsad','Vadodara','Gujarat','Umbergaon','Valsad','GUJARAT'),('Karaghogha',370415,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Karadi ',396440,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Karada',389320,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Karachka',394340,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Kara',393135,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Kapurai',390004,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Kapura ',394655,'Bardoli','Vadodara','Gujarat','Vyara','Tapi','GUJARAT'),('Kaprada',396065,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Kapra-mota',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Kapodra',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Kapoda',383010,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Kapaya ',370415,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Kapat',393120,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Kapasia',385135,'Banasanktha','Ahmedabad HQ','Gujarat','Shri Amirgadh','Banaskantha','GUJARAT'),('Kaparupur',387305,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Kapalsadi',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Kapadwanj ',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Kanzat',388170,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Kanzari',382165,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Kanz',382140,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Kantva',394405,'Surat','Vadodara','Gujarat','Velachha','Surat','GUJARAT'),('Kantu',389380,'Panchmahals','Vadodara','Gujarat','Ghoghamba','Panch Mahals','GUJARAT'),('Kantol',362620,'Porbandar','Rajkot','Gujarat','Manavadar','Porbandar','GUJARAT'),('Kantipada',393130,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Kantifalia',394340,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Kantiajal',393030,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Kanthravi',384260,'Patan','Ahmedabad HQ','Gujarat','Patan','Mahesana','GUJARAT'),('Kanthkot',370135,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Kantharpura',391121,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Kanthariya',364310,'Bhavnagar','Rajkot','Gujarat','Vallabhipur','Bhavnagar','GUJARAT'),('Kanthariya',363410,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Kantharia ',388307,'Anand','Vadodara','Gujarat','Anklav','Anand','GUJARAT'),('Kantharia',392015,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Kanteshwar',391125,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Kanteli',389370,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Kantasvel',396321,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Kantasar',364295,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Kansumara',361006,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Kansia',393010,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Kansavad',362620,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Kansaria',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Kansari ',388630,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Kansari',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Kansari',362560,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Kansarakui',384001,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Kansad',394230,'Surat','Vadodara','Gujarat','Sachin','Surat','GUJARAT'),('Kansa',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Kansa',384315,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Kanpur',389365,'Panchmahals','Vadodara','Gujarat','Ghoghamba','Panch Mahals','GUJARAT'),('Kanpur',383450,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Kanpar',360040,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Kanpar',364310,'Bhavnagar','Rajkot','Gujarat','Vallabhipur','Bhavnagar','GUJARAT'),('Kanodar ',385520,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Kanoda',384212,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Kanod',389320,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Kanmer',370155,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Kankrol',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Kankravadi',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Kankot',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Kankot',360005,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Kankavati',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Kankaria',394248,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Kankapura',388550,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Kanjri',389350,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Kanjoda',387115,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Kanjod',394640,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Kanjipani',389390,'Panchmahals','Vadodara','Gujarat','Jambughoda','Panch Mahals','GUJARAT'),('Kanjha',362610,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Kanjetha',391115,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Kanjeta',389382,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Kanjari ',387325,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Kanjarda',364265,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Kanjara',370425,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Kanjan Ranchhod',396055,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Kanjan Hari',396055,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Kanjan',394655,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Kaniyel',382433,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Kanisa',388170,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Kanipur',382308,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Kaniol',383010,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar.','Sabarkantha','GUJARAT'),('Kanij ',387120,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Kanij',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Kaniel',387365,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Kani',384110,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Kani',394350,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Kangvi',396051,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Kangvai',396560,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Kangam',392170,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Kaneti',382110,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Kanesara',360060,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Kanesar',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Kaneri',362229,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Kanera',387540,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Kanera',396460,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Kandroj',393140,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Kandla Port ',370210,'Kutch','Rajkot','Gujarat','Gandhidham','Kachchh','GUJARAT'),('Kandla Harbour ',370210,'Kutch','Rajkot','Gujarat','Gandhidham','Kachchh','GUJARAT'),('Kandla Free Trade Zone ',370230,'Kutch','Rajkot','Gujarat','Gandhidham','Kachchh','GUJARAT'),('Kandhi',362560,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Kandha',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Kanday',370650,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Kandari ',391210,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Kandagara',370435,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Kandach',389310,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Kanda',391430,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Kanda',383220,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Kanda',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Kanchardi',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Kanbudi',393040,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Kanbhaipura',388205,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Kanbhai',396060,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Kanbha',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Kanbha',388550,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Kanbha',382430,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Kanavada',388180,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Kanav',394315,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Kanatalav',364515,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Kanalva',391168,'Vadodara East','Vadodara','Gujarat','Ch.udepur','Vadodara','GUJARAT'),('Kanalush ',361280,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Kanakpur',394230,'Surat','Vadodara','Gujarat','Chorasi','Surat','GUJARAT'),('Kanakpar',361306,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Kanakpar',370650,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Kanakia',362560,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Kanajra',389260,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Kanaiyabe',370020,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Kanai',383220,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Kanadu',396105,'Valsad','Vadodara','Gujarat','Umbergaon','Valsad','GUJARAT'),('Kanadar',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Kanad',364240,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Kamsoli',391120,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Kamroli',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Kamrol',391510,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Kamrej Char Rasta ',394185,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Kamrej ',394180,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Kamparia',396055,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Kamlol Nani',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Kamliwada',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Kamli ',384140,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Kamlej',364060,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Kamlapore',394335,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Kamijala',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Kamigadh',365440,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Kamiala',382465,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Kambopa',388265,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Kamboli',392220,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Kambola',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Kamboi ',384230,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Kamboi',389140,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Kamboi',385550,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Kambodia',393130,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Kamar Kotda',360330,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Kamana',384315,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Kamalpura',391520,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Kamalpur (S)',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Kamalpur (D)',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Kamalpur',383205,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Kamalpur',383434,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Kamalpar',363425,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Kamalia',393135,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Kamali',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Kamalapur',360025,'Rajkot','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Kalyanpura ',382165,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Kalyanpur',361335,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Kalyanpur',360531,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Kalyanpur',364310,'Bhavnagar','Rajkot','Gujarat','Vallabhipur','Bhavnagar','GUJARAT'),('Kalyanpar Gadhda',370165,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Kalyanpar',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Kalyanpar',370610,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Kalyangadh',382240,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Kalyana',384265,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Kalyana',388710,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Kalwada',396045,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Kalvani',362227,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Kalvan',383440,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Kalvach',396409,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Kalupur Chakla ',380001,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Kalu',388550,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Kalthan',396406,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Kalsari',362130,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Kalsar ',388230,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Kalsar',396185,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Kalsar',364130,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Kalri',384210,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Kaloli',387550,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Kalol(Panch Mahals)',389330,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Kalol Society Area ',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Kalol Kampa',383275,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Kalol Industrial Estate ',382725,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Kalol Gandhi Road ',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Kalol Desaivada ',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Kalol ',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Kalmeghda',360540,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Kalmad',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Kaliyapura',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Kaliya Kuva',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Kalitalavadi',388170,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Kalikankar',383422,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Kalijini Saraswani',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('KaligamGujar',389160,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Kalidoli',391140,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Kalibel',389235,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Kalibel',394715,'Bardoli','Vadodara','Gujarat','Ahwa','Surat','GUJARAT'),('Kaliawadi ',396427,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Kaliavad',389152,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Kaliari',392155,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Kaliari',396540,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Kaliarai',389180,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Kali Talawali',370105,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Kali Dungri',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Kali',382470,'Gandhinagar','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Kalgam',396140,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Kalej',362240,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Kaledia',391150,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Kaleda',385421,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Kalavad Gir',362130,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Kalavad ',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Kalatalav',370660,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Kalasar',360050,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Kalariya',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Kalarani',391135,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Kalapan',362510,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Kalana',382170,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Kalana',360410,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Kalamtha',396310,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Kalamsar',388640,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Kalamkui',394340,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Kalamkui',394635,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Kalam',382775,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Kalam',392140,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Kalam',393030,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Kalali',390012,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Kalakva',394630,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Kalakachha',396415,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Kalak',392150,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Kalaji',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Kalai',396105,'Valsad','Vadodara','Gujarat','Umbergaon','Valsad','GUJARAT'),('Kaladra',392130,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Kakwadi',396385,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Kakrapar ',394360,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Kakoshi ',384290,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Kakdapada',392020,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Kakarva',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Kakarkhad',387635,'Kheda','Vadodara','Gujarat','NA','Kheda','GUJARAT'),('Kakarapargam',394160,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Kakar',385550,'Banasanktha','Ahmedabad HQ','Gujarat','Kankraj','Banaskantha','GUJARAT'),('Kakanpur ',388713,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Kakana Bhesavada',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Kakadveri',396040,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Kakadvel',396540,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Kakadva',394635,'Bardoli','Vadodara','Gujarat','NA','Surat','GUJARAT'),('Kakadpada',393041,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Kakadmati',396007,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Kakadkuva',396065,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Kakadkopar',396126,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Kakachiya',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Kakabhai Sihan',361305,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Kajurada',361010,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Kajli',362268,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Kajardi',362560,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Kajali',389265,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Kaj',362720,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Kaiyal',382705,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Kahoda ',384130,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Kahipur',384355,'Mahesana','Ahmedabad HQ','Gujarat','Vadnagar','Mahesana','GUJARAT'),('Kaher',394690,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Kahanvadi',388307,'Anand','Vadodara','Gujarat','Anklav','Anand','GUJARAT'),('Kahanva',391810,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Kahan',392240,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Kagvadar',365545,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Kagvad',360380,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Kagda Mahuda',383251,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Kagadadi',360003,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Kafleta',394235,'Surat','Vadodara','Gujarat','Lajpore','Surat','GUJARAT'),('Kadvasan',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Kadvasan',362725,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Kadvar',362268,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Kadvali',393115,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Kadval',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Kadvadi',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Kadvad',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Kaduka',360050,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Kadu',382775,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Kadrama',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Kadoli',383220,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Kadoli',396436,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Kadol',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Kadodara ',394327,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Kadodara',382305,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Kadodara',392165,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Kadod ',394335,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Kadmal',394716,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Kadjodara',382315,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Kadiyana',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Kadiyali',365560,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Kadipur',382463,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Kadipani ',391175,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Kadiadra ',383440,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Kadia Nana',370670,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Kadia Mota',370670,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Kadi Mkt Yard ',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Kadi ',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Kadhaiya',394246,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Kadegi',362620,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Kadchhala',391774,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Kadbal',360530,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Kadaya',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Kadaya',365645,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Kadana ',389240,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Kadagada',393151,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Kadadhara',391107,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Kadadara',389115,'Panchmahals','Vadodara','Gujarat','Morva Hadaf','Panch Mahals','GUJARAT'),('Kadachhala',391140,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Kadachhala',388270,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Kadachh',362230,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Kada(Mahesana)',384305,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Kacholiya',382745,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Kachigam',396007,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Kachigam',396235,'Valsad','Vadodara','Gujarat','Umbergaon','Valsad','GUJARAT'),('Kachholi ',396370,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Kachholi',394235,'Surat','Vadodara','Gujarat','Lajpore','Surat','GUJARAT'),('Kachchhai',387130,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Kachchh Mandvi Sanjipadi ',370465,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Kachchh Mandvi ',370465,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Kabso',383225,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Kabodara',383305,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Kabirgam',393135,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Kabir Chowk ',380005,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Kabilpore ',396424,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Kabarka',360515,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Juvanpar',361162,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Juvanpar',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Juvangadh',361305,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Juval Rupavati',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Juval',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Juthal',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Junvadar',364730,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Juni-haliyad',365440,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Juni Sedhavi',382705,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Juni Sankli',360360,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Juni Jathardi',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Juni Dhari',388710,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Juni Chavand',362120,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Junathana ',396445,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Junarampura',391760,'Vadodara West','Vadodara','Gujarat','Vaghoida','Vadodara','GUJARAT'),('Junarampar',364330,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Junapadhar',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Junajasapar',363430,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Junagadh Udyognagar ',362037,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Junagadh Station Road ',362001,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Junagadh Sardarbag ',362001,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Junagadh PTC ',362001,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Junagadh Mangnath Road ',362001,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Junagadh Joshipura ',362002,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Junagadh Girnar Road ',362001,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Junagadh Diwan Chowk ',362001,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Junagadh Bhavnath ',362004,'Junagadh','Rajkot','Gujarat','Junagadh','Junagadh','GUJARAT'),('Junagadh Azad Chowk ',362001,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Junagadh Agri Campus ',362001,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Junagadh ',362001,'Junagadh','Rajkot','Gujarat','Junagadh','Junagadh','GUJARAT'),('Junadisa ',385540,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Juna-savar',364521,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Juna Samlaya',391520,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Juna Rajpipala',360025,'Rajkot','Rajkot','Gujarat','Kotda Saangani','Rajkot','GUJARAT'),('Juna Pipaliya',364490,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Juna Nagdavas',363670,'Rajkot','Rajkot','Gujarat','Maliya Miyana','Rajkot','GUJARAT'),('Juna Mosda',393040,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Juna Manka',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Juna Ghantila',363630,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Juna Chamu',383440,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Juna Baria',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Juna',370510,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Jumsar',383450,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Jujwa',396007,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Juhapura ',380055,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Joshipura',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Joshikuva',388510,'Anand','Vadodara','Gujarat','Anklav','Anand','GUJARAT'),('Jornang',382732,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Joravarnagar ',363020,'Surendranagar','Rajkot','Gujarat','Wadhwan','Surendra Nagar','GUJARAT'),('Jorapura',388255,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Jorajini Muvadi',383215,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Jonpur',362222,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Jolwa',394305,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Jolva ',392135,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Jol',388315,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Jokha',394326,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('JojwaR.S.',391125,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Jogvel',396126,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Jogvad',396560,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Jodjpar Nadi',363642,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Jodia ',361250,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Jodhsar',385110,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Jodhpur Char Rasta ',380015,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Jodhpur',388265,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Jobala',363415,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Jiyatalavdi',391220,'Vadodara West','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Jiyapar',370030,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Jiwana',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Jivraj Park ',380051,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Jivapar(c)',363630,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Jivapar',360040,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Jivapar',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Jivapar',363650,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Jivapar',361006,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Jiva',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Jitpura',389360,'Panchmahals','Vadodara','Gujarat','Ghoghamba','Panch Mahals','GUJARAT'),('Jitpura',389340,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Jitpur',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Jitpur',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Jitodia',388345,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Jitoda',384220,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Jitali',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Jirval',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Jiragadh',361220,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Jira ',364521,'Amreli','Rajkot','Gujarat','Savarkundla','Amreli','GUJARAT'),('Jira',365660,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Jior',393150,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Jinjudi',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Jinjay',370605,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Jindva',382315,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Jinaj',388620,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Jikiyali',365635,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Jihtudi',365460,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Jichka',388180,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Jhunsa',389175,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Jhulasan',382705,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Jhotana ',384421,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Jholapur',382170,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Jhijadia(H)',365480,'Amreli','Rajkot','Gujarat','Kunkavav Vadia','Amreli','GUJARAT'),('Jherda',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Jher',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Jhavda',394730,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Jhat',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Jharola ',388590,'Kheda','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Jhara',389220,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Jhar',365630,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Jhangar',392210,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Jhampa ',395003,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Jhalodar',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Jhalod ',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Jhalansar',362011,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Jhagadia ',393110,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Jhabadia',385540,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Jetpur K.B. ND T.S.O',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Jetpur F.W. ND T.S.O',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Jetpur ',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Jetpur',389140,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Jetpur',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Jetpar (M) ',363630,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Jetholi',388265,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Jethlaj',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Jethi',385135,'Banasanktha','Ahmedabad HQ','Gujarat','Shri Amirgadh','Banaskantha','GUJARAT'),('Jetda',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Jetalvasana',384120,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Jetalvad',362130,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Jetalsar Jn. ',360360,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Jetalsar Gam',360360,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Jetalpur',382427,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Jespore',396375,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Jespor',393115,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Jeska',382250,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Jesingpur',394633,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Jesia',396375,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Jeshingpur',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Jeshangpura',382165,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Jesda',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Jesda',384241,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Jesda',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Jesawada ',389152,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Jesar ',364510,'Bhavnagar','Rajkot','Gujarat','Jesar','Bhavnagar','GUJARAT'),('Jesalpore',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Jepura',389360,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Jepur',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Jepur',382870,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Jenpur',383205,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Jemalgadh',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Jelana',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Jekot',389160,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Jegol',385505,'Banasanktha','Ahmedabad HQ','Gujarat','Dantiwada','Banaskantha','GUJARAT'),('Jegadva',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Jayla',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Jawaraj',382230,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Jawaharmarket Dehgam ',382305,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Jawahar Nagar(Vadodara)',391320,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Jawahar Chowk ',380008,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Javesi',389190,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Javantri',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Javantri',362140,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Javaharnagar',370020,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Jatroda',365535,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Jatavira',370665,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Jatavada',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Jaswant Gadh',385120,'Banasanktha','Ahmedabad HQ','Gujarat','NA','Banaskantha','GUJARAT'),('Jasvantpura Kampa',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Jasvantpura',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Jasvantgadh',365620,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Jaspura',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Jaspur',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Jaspara',364120,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Jasomav',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Jasmatpur',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Jasleni',385410,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Jaska',384315,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Jashapar',370655,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Jasdan ',360050,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Jasapar',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Jasapar',360520,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Jasapar',361220,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Jasapar',360531,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Jasapar',361162,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Jasapar',360040,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Jasanwada',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Jasalpur',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Jasali',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Jasadhar',362560,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Jasadhar',362140,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Jarvala',382765,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Jarusha',385360,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Jarsad',393115,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Jarod ',391510,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Jargam',393041,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Jargali',362530,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Jaravat',387110,'Kheda','Vadodara','Gujarat','Mehmedabad','Kheda','GUJARAT'),('Jarakhiya',365430,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Jaoli',393025,'Bharuch','Vadodara','Gujarat','Sagbara','Narmada','GUJARAT'),('Janvad',389260,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Jantran',392155,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Jantral',388580,'Kheda','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Jantral',389320,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Jantral',382860,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Jantanagar ',382449,'Gandhinagar','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Janshali',363425,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Janor',392210,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Janod',388255,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Janjariya-juna',365440,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Janivadla',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Janiadra',392165,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Jangvad',360040,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Jangral',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Jangi',370150,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Jangar',365455,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Jangar',362255,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Jangadia',370655,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Janan',370165,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Jamwanthali ',361130,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Jamwali',360530,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Jamwali',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Jamvala',362530,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Jamvadi',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Jamsukhpur',360531,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Jamsar',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Jamru',385110,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Jamra',362620,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Jampar',361320,'Jamnagar','Rajkot','Gujarat','Jamkalyanpur','Jamnagar','GUJARAT'),('Jampar',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Jamp',382110,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Jamni',387630,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Jamnavad',360410,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Jamnagar ',361001,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Jamli',391152,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Jamla',383010,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Jamla',382735,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Jamkhadi',394365,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Jamkandorna ',360405,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Jamkalyanpur ',361320,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Jamka',365550,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Jamka',365440,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Jamka',362263,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Jamjodhpur Darbargadh ',360530,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Jamjodhpur ',360530,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Jamiyatpura',382423,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Jamgadhka',361320,'Jamnagar','Rajkot','Gujarat','Jamkalyanpur','Jamnagar','GUJARAT'),('Jamdevalia',361320,'Jamnagar','Rajkot','Gujarat','Jamkalyanpur','Jamnagar','GUJARAT'),('Jamda',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Jambusar Bazar ',392150,'Bharuch','Vadodara','Gujarat','Jambusar','Vadodara','GUJARAT'),('Jambusar ',392150,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Jamburi',396105,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Jambugoral',391774,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Jambughoda ',389390,'Panchmahals','Vadodara','Gujarat','Jambughoda','Panch Mahals','GUJARAT'),('Jambudiya',363642,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Jambudi',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Jambudi',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Jambuda',362130,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Jambuda',362630,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Jambuda',361120,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Jambua',390014,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Jambua',389155,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Jambu',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Jamboo',360570,'Porbandar','Rajkot','Gujarat','Ranavav','Porbandar','GUJARAT'),('Jamboi',393120,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Jambala',364260,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Jamba',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Jamanvav',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Jamanvada',362720,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Jamanpur',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Jamanpada',396040,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Jamankuva',394160,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Jamania',394246,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Jamalpur(Ahmedabad)',380001,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Jamalpore',396445,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Jamalia',396051,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Jamalia',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Jam Dudhai',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Jalundh',388640,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Jalsan',388580,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Jalotra',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Jalondhar',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Jalodra',391120,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Jalodha',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Jaloda',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Jaliya(P)',364275,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Jaliya(Dhrol)',360003,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Jaliya (Amraji)',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Jaliya',365610,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Jaliya',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Jaliya',364740,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Jalisana',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Jalila ',382255,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Jalida',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Jaliadevani',361130,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Jalia No Math',382305,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Jalia',387335,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Jaleti',383462,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Jalat',389154,'Panchmahals','Vadodara','Gujarat','Dohad','Dahod','GUJARAT'),('Jalampur',383340,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Jalampur',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Jalalpura',391430,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Jalalpur Vajifa',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Jalalpur',364740,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Jalalpore ',396421,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Jakwada',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Jakshi',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Jakhotra',385350,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Jakhora',382320,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Jakhel',385555,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Jakhel',385360,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Jakhau ',370640,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Jakhana',384220,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Jakhana',394710,'Bardoli','Vadodara','Gujarat','Dangs','The Dangs','GUJARAT'),('Jakhala',388205,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Jakhala',394160,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Jakhada',382230,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Jakasana',384421,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Jajasar',363670,'Rajkot','Rajkot','Gujarat','Maliya Miyana','Rajkot','GUJARAT'),('Jaiva',361210,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Jainabad',382765,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Jagudan ',382710,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Jagnathpura',384140,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Jagatpur',382470,'Gandhinagar','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Jagana',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Jaga',361130,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Jafrabad(Amreli)',365540,'Amreli','Rajkot','Gujarat','Rajula','Amreli','GUJARAT'),('Jafarpura',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Jadodar',370605,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Jadiali',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Jadia',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Jadi',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Jadar ',383110,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Jada Kheria',389140,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Jada',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Jabugam ',391155,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Jabugam',393125,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Jaban',389390,'Panchmahals','Vadodara','Gujarat','Jambughoda','Panch Mahals','GUJARAT'),('Jabalpur',363650,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Jabal',364522,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Jab Chitaria',383355,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Ivnagar',362015,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Itwai',394380,'Bardoli','Vadodara','Gujarat','Nizar','Surat','GUJARAT'),('Itwad',391774,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Itola R.S.',391243,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Itola',391243,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Itola',392110,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Itoda',384230,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Itawa',389154,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Itavadi',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Itaria',364750,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Italva',394315,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Italva',396445,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Itakla',393125,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Itadi',383316,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Itadar',382845,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Isnav',388460,'Kheda','Vadodara','Gujarat','Sojitra','Anand','GUJARAT'),('Islampura',384275,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Islampur',392040,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Ishwariya',364230,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Ishwariya',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Ishwaria',362650,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Ishwaria',360530,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Porbandar','GUJARAT'),('Ishra',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Ishavariya',360040,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Ishavariya',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Ishanpore',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Isarvada',388180,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Isarva',385555,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Isari',383251,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Isanpur-mota',382355,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Isanpur-dodia',382308,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Isanpur ',382443,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Isanpur',363351,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Isanpur',394430,'Surat','Vadodara','Gujarat','Vankal','Surat','GUJARAT'),('Isand',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Iqbalgadh ',385135,'Banasanktha','Ahmedabad HQ','Gujarat','Shri Amirgadh','Banaskantha','GUJARAT'),('Iploda',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Intvaya',362530,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Intva',383251,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Ingrodi',363115,'Surendranagar','Rajkot','Gujarat','Lkhtar','Surendra Nagar','GUJARAT'),('Ingorala-j',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Ingorala-dand',365565,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Ingorala-2',365620,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Ingorala Bhad',365635,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Ingorala',364320,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Ingorala',364730,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Ingorala',363351,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Ingoli',382265,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Industrial Estate (Vadodara) ',390016,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Indroda',382007,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Indravarna',393155,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Indrapura',382845,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Indranaj',388180,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Indran',383340,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Indral',389350,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Indral',391130,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Indrad',391510,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Indrad',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Indra',362640,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Indore',393120,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Inderpura ',395002,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Inaj',362269,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Ilol ',383220,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Ilav ',394810,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Ikhar ',392230,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Idhata',385566,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Idar Town ',383430,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Idar ',383430,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Ichhapore',396350,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Ichhapore',394510,'Surat','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Iawa (Vasna)',382170,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('I I M ',380015,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('I E Bapunagar ',380024,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Husepura',391445,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Husenabad',362225,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Hunj',383240,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Hudli',365630,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Hothijikhadba',360530,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Hoidad',364070,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Hodka',370510,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Hoda',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Hirpura',382870,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Hirola',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Hiravadi',394365,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Hirapura',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Hirapur',389390,'Panchmahals','Vadodara','Gujarat','Jambughoda','Panch Mahals','GUJARAT'),('Hirapur',382435,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Hirapur',389260,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Hirapur',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Hirapar',363650,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Hirapar',370665,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Hipavadli',364525,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Hinglot',392012,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Hingalla',392210,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Hindolia',389190,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Hindla',394365,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Himmatpura',391774,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Himmatpur',383240,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Himatpur',383010,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Himatnagar Station Road ',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Himatnagar ',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Himala',389160,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Hilol',382308,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Heranj',387510,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Heranj',387330,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Hemal',365545,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Helodar',383345,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Hebatpur',363115,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Hebatpur',382455,'Gandhinagar','Ahmedabad HQ','Gujarat','Barwala','Ahmedabad','GUJARAT'),('Haveli',389390,'Panchmahals','Vadodara','Gujarat','Jambughoda','Panch Mahals','GUJARAT'),('Hatuka',394640,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Hathuran ',394125,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Hathrol',383030,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Hathoj',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Hathoda',394405,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Hathoda',394380,'Bardoli','Vadodara','Gujarat','Nijhar','Surat','GUJARAT'),('Hathnoli',387110,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Hathla',360590,'Porbandar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Hathivan',389220,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Hathipura',383340,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Hathijan',382308,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Hathijan',382445,'Gandhinagar','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Hathigadh',365535,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Hathidra',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Hathasani',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Hathasani',360055,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Hatharva',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Hathaj',387360,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Hathab',364070,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Hatdi',370410,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Hasanpur',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Harsurpur',365435,'Amreli','Rajkot','Gujarat','Lathi','Amreli','GUJARAT'),('Harsoli',382305,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Harsol ',383305,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Harshadpur',361012,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Harsani',394421,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Harniav',382435,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Harni Colony ',390022,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Harni',390022,'Vadodara East','Vadodara','Gujarat','NA','Vadodara','GUJARAT'),('Harmadiya',362720,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Harkundi',389340,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Harkhji Na Muvada',382305,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Hariyasan',360480,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Haripura',394335,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Haripura',393120,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Haripura',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Haripura',365430,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Haripur',394375,'Bardoli','Vadodara','Gujarat','Uchchhal','Surat','GUJARAT'),('Haripur',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Haripur',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Haripar',361013,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Haripar',370625,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Haripar',361320,'Jamnagar','Rajkot','Gujarat','Jamkalyanpur','Jamnagar','GUJARAT'),('Haripar',364750,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Haripar',363630,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Haripar',360025,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Haripar',361170,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Haripar',361305,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Haripar',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Harij ',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Hariala',387570,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Haria',396020,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Hareshwar',391125,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Hareda',389110,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Hardaspur',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Harbatiyali',363650,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Harangam',396560,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Harakhapur',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Hapa',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Hanumatmal',396051,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Hanuman Bhagda ',396030,'Valsad','Vadodara','Gujarat','Hanuman Bhagda','Valsad','GUJARAT'),('Hansot ',393030,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Hansapur',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Hansapore',396445,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Hansalpur',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Hanol',364760,'Bhavnagar','Rajkot','Gujarat','NA','Bhavnagar','GUJARAT'),('Handod',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Handod',391145,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Handia',388265,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Hamripar',370660,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Hampar',363320,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Hamirpar',370155,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Hamidpura',388220,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Hamapur',365440,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Halvad ',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Halra',370135,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Halol Bazar ',389350,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Halol ',389350,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Haliyad',364330,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Halisa',382321,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Halenda',360025,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Haldharu',394310,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Haldarvas',387110,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Haldarva',392011,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Haldarva',392220,'Bharuch','Vadodara','Gujarat','Bharuch','Vadodara','GUJARAT'),('Haldar',392210,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Halariya',365630,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Halapar',370450,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Haladva',394248,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Hajira ',394270,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Hajipura ',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Hajipur',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Hajipur',383120,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Hajipur',384170,'Mahesana','Ahmedabad HQ','Gujarat','Vadnagar','Mahesana','GUJARAT'),('Hajipur',364250,'Bhavnagar','Rajkot','Gujarat','NA','Bhavnagar','GUJARAT'),('Hajipir',370605,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Hajikhana Bazar ',392001,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Hajat',393020,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Hajarpura',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Hajapar',370105,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Hajapar',370650,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Hajamchora',361240,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Hahtsani',364515,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Hadol',384360,'Mahesana','Ahmedabad HQ','Gujarat','Satlasana','Mahesana','GUJARAT'),('HadmatiyaVishal',362030,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Hadmatiya Khajuri',362020,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Hadmatiya',360110,'Rajkot','Rajkot','Gujarat','Dhrol','Rajkot','GUJARAT'),('Hadmatiya',364230,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Hadmatiya',362140,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Hadmatiya',363641,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Hadmatia',360025,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Hadiol',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Hadida',364530,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Hadiana ',361011,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Hadgood',388110,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Hadeva',388180,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Haddad',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Hadatoda',361210,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Hadamtala (Shemla)',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Hadamtala (Kolithad)',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Hadalabhal ',363425,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Hadala(S)',365456,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Hadad',385110,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Habukvad',364150,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Habay',370001,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Habardi',361305,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Ha R.S.',361120,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Gyaspur',382405,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Guvar Moti',370601,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Gutal',391760,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Gutal',387370,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Gurukulsupa ',396418,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Guntheli',388255,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Gunkhadi',394365,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Gunjar',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Gunjala',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj Rampura','Ahmedabad','GUJARAT'),('Gunja',384315,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Gungan',363642,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Gunesvel',394240,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Gunesia',389341,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Guneri',370627,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Guneli',389220,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Gundri',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Gundrasan',384355,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Gundran',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Gundiyali ',370455,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Gundiyala',363435,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Gundicha',391145,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Gundia',393125,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Gundia',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Gundi Sarvodaya Ashram',382230,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Gundi',389380,'Panchmahals','Vadodara','Gujarat','Ghoghamba','Panch Mahals','GUJARAT'),('Gundel',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Gundecha',393110,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Gundasari',360452,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Gundasara',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Gundarni',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Gundarna',364295,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Gundaran',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Gundala (Jas)',360055,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Gundala ',370410,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Gundala',364730,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Gundala',362263,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Gundala',364260,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Gunda',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Gunda',382255,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Gunda',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Gunatitnagar',361250,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Gumadia',388250,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Gultora',389180,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Gulabpura',383434,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Gulabnagar ',361007,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Gujrat High Court ',380060,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Gujarwada',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Gujarvadi',363040,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Gujarpur',394370,'Bardoli','Vadodara','Gujarat','Nijhar','Surat','GUJARAT'),('Gujarda',364505,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Gujarat University ',380009,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Gudel ',388625,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Grain Market(Jamnagar)',361001,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Gozaria ',382825,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Goyawant',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Goyala (Mokhra)',370655,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Goya Sundal',389341,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Goya Bazar ',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Gowada',396170,'Valsad','Vadodara','Gujarat','Umbergaon','Valsad','GUJARAT'),('Govt. Medical College ',395001,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Govindpur',365640,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Govindpara',362269,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Govindi',389001,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Govana',361170,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Govali',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Gotri',391101,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Gotiamal',394720,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Gothva',384315,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Gothibada',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Gothib',389190,'Panchmahals','Vadodara','Gujarat','Santrampur','Dahod','GUJARAT'),('Gothda',391770,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Gothan',394130,'Surat','Vadodara','Gujarat','Sayan','Surat','GUJARAT'),('Gothaj',387130,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Gothada',384330,'Mahesana','Ahmedabad HQ','Gujarat','Satlasana','Mahesana','GUJARAT'),('Gotarka',385360,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Gotapur',383335,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Gotalawadi',395004,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Gota',383255,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Gota',382481,'Gandhinagar','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Gosindra',391240,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Gosal',363430,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Gosa',360576,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Gorwa',390003,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Gorkhi',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Goriyavad',382765,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Goriyad',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Gorisana',384335,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Gorgam',396375,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Gorevali',370510,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Goratia',393115,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Gorasu',382463,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Goras',364280,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Gorana',361325,'Jamnagar','Rajkot','Gujarat','Jamkalyanpur','Jamnagar','GUJARAT'),('Goral',383410,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Gorakhmadhi',362268,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Gorakhadi',360520,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Goraj',382110,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Goraj',391761,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Goraiya',363440,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Goraiya',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Goradka',364765,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Gorad',384001,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Gorad',388180,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Gorad',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Gora Colony ',393155,'Bharuch','Vadodara','Gujarat','Nandod','Bharuch','GUJARAT'),('Gora Anjana',383215,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Gora',393155,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Gopipura ',395001,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Gopalpuri ',370240,'Kutch','Rajkot','Gujarat','Gandhidham','Kachchh','GUJARAT'),('Gopalpura',394365,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Gopalpura',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Gopalpura',388370,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Gopalgram',365630,'Amreli','Rajkot','Gujarat','Dhari','Amreli','GUJARAT'),('Goniasar',370485,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Gondalvihir',394710,'Bardoli','Vadodara','Gujarat','Dangs','The Dangs','GUJARAT'),('Gondal Market Yard ',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Gondal College Chowk ',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Gondal Bhuvneshwari Pith ',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Gondal Bhojrajpara ',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Gondal Bhagvatpara ',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Gondal ',360311,'Gondal','Rajkot','Gujarat','NA','Rajkot','GUJARAT'),('Gomtipur ',380021,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Gomta ',360320,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Golwada',383434,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Golvi',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Golthara',382735,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Gollav',389380,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Goliwada',384272,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Golgam',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Golel',388480,'Kheda','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Golana',388625,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Golaj',388250,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Goladra',392165,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Goladhar',362011,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Gola Gamdi',391125,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Gola',385410,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Gokran',362650,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Gokhlana',360050,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Gokhantar',385360,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Goji',394350,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Goinj',361310,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Goima',396145,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Gogla',382463,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Gogha ',364110,'Bhavnagar','Rajkot','Gujarat','NA','Bhavnagar','GUJARAT'),('Godthalbo',396060,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Godsamba ',394163,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Godpar',370485,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Godli',389380,'Panchmahals','Vadodara','Gujarat','Ghoghamba','Panch Mahals','GUJARAT'),('Godhra Vorwad ',389001,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Godhra Shroff Bazar ',389001,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Godhra Civil Lines ',389001,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Godhra City ',389001,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Godhra Bhuravav ',389002,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Godhra ',389001,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Godhra ',370450,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Godhavi ',382115,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Godhavata',382255,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Godhar( North)',389240,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Godhar',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Godhabari',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Goddha',394630,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Goddha',394160,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Godbar',394440,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Godawadi',394163,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Godadara',395012,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Godada',393050,'Bharuch','Vadodara','Gujarat','Sagbara','Narmada','GUJARAT'),('Gochnath',385340,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Gobalaj',387540,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Gnagapur',392020,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Giyod',382321,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Gita Mandir Road ',380022,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Girnala',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Girmatha',382425,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Girgadhda ',362530,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Girdharnagar ',380004,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Gir Devli',362710,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Gingni',360530,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Gijram',394410,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Gigasan',365640,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Gift City ',382355,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhi Nagar','Gandhi Nagar','GUJARAT'),('Gidasan',385421,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Gidardi',365650,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Ghuntu',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Ghunteli',388440,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Ghunsiya',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Ghunda Khanpar',363641,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Ghunda (S)',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Ghumasan',382705,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Ghuma',380058,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Ghughas',389172,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Ghugharala',365410,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Ghotan',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Ghora',388220,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Gholar',396060,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Ghoghmba ',389365,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Ghoghavadar',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Ghogawada',387630,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Ghodvani',396060,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Ghodmal',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Ghodiyal',385421,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Ghodasar(Kheda)',387110,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Ghodasar(Ahmedabad)',380050,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Ghodasar',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Ghodasan',362130,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Ghodali',387130,'Kheda','Vadodara','Gujarat','Mahemdabad','Kheda','GUJARAT'),('Ghodadra',394115,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Ghodadara',391760,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Ghodadar',362230,'Porbandar','Rajkot','Gujarat','Porbandar','Junagadh','GUJARAT'),('Ghoda',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Ghoda',394670,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Ghoba',364525,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Ghiyavad',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Gheti ',364265,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Gherivan',394630,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Ghelawant',391165,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Ghela Somnath',360050,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Ghej',396521,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Gheekanta Road ',380001,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Ghayaj',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Ghatlodia ',380061,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Ghatisana',382140,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj- Rampura','Ahmedabad','GUJARAT'),('Ghata',394651,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Ghaswada',389240,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Ghasiamedha',394360,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Gharana',370150,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Gharal',362550,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Ghanveri',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Ghantvad ',362710,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Ghantu Dhanpura',382870,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Ghantoli',391150,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Ghantoli',393040,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Ghantoli',394160,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Ghantiyal',391510,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Ghanshyampur',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Ghansar Muvadi',389350,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Ghanithar',370155,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Ghani',394630,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Ghanghli',364240,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Ghandla',364530,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Ghanavad',394445,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Ghanad',363110,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Ghana',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Ghamnad',392025,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Ghamkuva',393140,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Ghamij',382308,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Ghala ',394155,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Ghaghretiya',363427,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Ghadvi',394710,'Bardoli','Vadodara','Gujarat','Dangs','The Dangs','GUJARAT'),('Ghadoi',396001,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Ghadoi',394245,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Ghadkan',383205,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Ghadia',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Ghadi',383215,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Ghada',389382,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Ghada',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Gerita Kolavda RS ',382820,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Geratpur',382435,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Gelda',370405,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Gelana',362227,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Gediya',382745,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Gedi',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Gedi',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Geb ',390007,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Gayatri Nagar ',392001,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Gavier',395007,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Gavdka',365610,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Gavasad',391430,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Gavana',382750,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Gavan',394375,'Bardoli','Vadodara','Gujarat','Uchchhal','Surat','GUJARAT'),('Gavada ',382815,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Gavachhi',394140,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Gautamgadh',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Gauridad',360003,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Gauri',396040,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Gatrad',382449,'Gandhinagar','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Gathaman',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Garudeshwar',393151,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Garodia',382115,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Garod',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Garni',365421,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Garnara',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Garmali Moti',365630,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Garmali C',365630,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Garmala',387510,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Gariyadhar ',364505,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Gariya',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Garej',360576,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Gardhia',391520,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Garda',391145,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Garbada ',389155,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Garambhadi',363440,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Garambadi',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Garambadi',385350,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Garakhadi',394710,'Bardoli','Vadodara','Gujarat','The Dangs','The Dangs','GUJARAT'),('Garadu',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Ganvada',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Ganva',383422,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Ganthiol',383410,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Ganthila',362215,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Ganpatpura',391760,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Ganpatpura',391210,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Ganpat Vidyanagar ',384012,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Ganol',382265,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Ganod',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Ganjisar',385340,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Ganjela',363320,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Gangva',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Gangtha',394380,'Bardoli','Vadodara','Gujarat','Nizar','Surat','GUJARAT'),('Gangta',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Gangpur',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Ganget',384275,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Gangecha',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Gangda',362560,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Gangardi',389155,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Gangalasan',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Gangadiya',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Gangadia',396510,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Gangadia',391520,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Gangadhara RS ',394310,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Gangad',363115,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Gangad',382240,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Ganeshpura',382705,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Ganeshpura',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Ganeshpura',391510,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Ganeshpur',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Ganeshpar',370165,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Ganeshnagar ',370201,'Kutch','Rajkot','Gujarat','Gandhidham','Kachchh','GUJARAT'),('Ganeshgadh',364275,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Ganer',383422,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Gandhinagar (Gujarat) ',382010,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Gandhidham ',370201,'Kutch','Rajkot','Gujarat','Gandhidham','Kachchh','GUJARAT'),('Gandhi Vidyapith',394641,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Gandhi Road(Ahmedabad)',380001,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Gandhi Ashram(Ahmedabad)',380027,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Gandhavi',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Gandhari',388260,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Gandhara',391210,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Gandhar',392140,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Gandevi ',396360,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Gandeva',396430,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Gana',388345,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Gamtalv Bujrang',394163,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Gamph',382465,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Gamod',391120,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Gamla',389154,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Gametha',391430,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Gamdi',382435,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Gamdi',388320,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Gamdi',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Gambhu',384212,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Gambhoi ',383030,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Gambhirpura',383430,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Gambhira',388520,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Gamanpura',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj- Rampura','Ahmedabad','GUJARAT'),('Gamani',389365,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Gama-pialiya',365410,'Amreli','Rajkot','Gujarat','Babra','Amreli','GUJARAT'),('Galvav',362630,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Galudan',382355,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Galthar',364295,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Galsana',382245,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Galodiya',383275,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Galodar',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Galkuva',394650,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Galkund',394710,'Bardoli','Vadodara','Gujarat','Dangs','The Dangs','GUJARAT'),('Galiavad',362037,'Junagadh','Rajkot','Gujarat','Junagadh','Junagadh','GUJARAT'),('Galiana',388625,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Gali Semro',383251,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Galenda',392130,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Galath',362020,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Gala',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Gala',363630,'Rajkot','Rajkot','Gujarat','Morvi','Rajkot','GUJARAT'),('Gakharvalamota',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Gajod',370430,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Gajna',388530,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Gajipur',383434,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Gajera ',391810,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Gajedi',361220,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Gajdinpura',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Gajanvav',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Gajana',361170,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Gajan',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Gagva',361140,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Gagodar',370145,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Gaganpur',393041,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Gaga',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Gaduli ',370627,'Kutch','Rajkot','Gujarat','Lakhapat','Kachchh','GUJARAT'),('Gadu',360590,'Porbandar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Gadu',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Gadsisar',385566,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Gadsai',385360,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Gadpadar',370240,'Kutch','Rajkot','Gujarat','Gandhidham','Kachchh','GUJARAT'),('Gadit',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Gadia',389110,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Gadi',396051,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Gadi',383462,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Gadhoda',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Gadhiya',365640,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Gadhesar',364130,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Gadhechi',361335,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Gadhdiya',360025,'Rajkot','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Gadhda (Khadir)',370165,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Gadhboriad ',391152,'Vadodara East','Vadodara','Gujarat','Nasvadi','Vadodara','GUJARAT'),('Gadhavada',388255,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Gadhasisa ',370445,'Kutch','Rajkot','Gujarat','Mandavi','Kachchh','GUJARAT'),('Gadhali',362260,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Gadhali',364750,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Gadhakda',364522,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Gadhaka',360020,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Gadhadiya',364720,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Gadhadia',360050,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Gadhada Sn ',364750,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Gadhada Shamlaji',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Gadhada',383320,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Gadhad',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Gadha',383316,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Gadha',385360,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Gadha',383010,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Gadha',384001,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Gadh ',385515,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Gadat(Tapi)',394633,'Bardoli','Vadodara','Gujarat','Vyara','Tapi','GUJARAT'),('Gadat(Navsari)',396350,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Gadaria',396055,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Gadani',370625,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Gada',389260,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Gada',387240,'Kheda','Vadodara','Gujarat','Sojitra','Anand','GUJARAT'),('Gabhirpura',391761,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Gabheni',394230,'Surat','Vadodara','Gujarat','Sachin','Surat','GUJARAT'),('Gabha',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Gabat ',383335,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('G.I.P.C.L. ',394110,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('G P College',389160,'Panchmahals','Vadodara','Gujarat','Dohad','Dahod','GUJARAT'),('Fulwadi',394160,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Fulwadi',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Fulsar',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Fulsar',393040,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Fulrama',362220,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Fulra',370627,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Fulpura',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Fulpada',395008,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Fulka',362530,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Fulgram',363435,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Fuletra',382728,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Fulay (Chhari)',370665,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Fulay',370511,'Kutch','Rajkot','Gujarat','Kachchh','Kachchh','GUJARAT'),('Fudeda',382860,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Freelandganj ',389160,'Panchmahals','Vadodara','Gujarat','Dohad','Dahod','GUJARAT'),('Fotdi',370040,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Fot',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Fort Songadh ',394670,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Forna',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Fitchwada',393120,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Finchod',383230,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Finav',388580,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Fifad',364525,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Ferkuva',391135,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Felsani',388255,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Fedra ',382465,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Fazalpur',391340,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Fatsar',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Fatsar',362530,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Fatewadi',382210,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Fatepura(Vadodara)',390006,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Fatepura(Dahod)',389172,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Fatepura',391120,'Vadodara East','Vadodara','Gujarat','NA','Narmada','GUJARAT'),('Fatepura',382845,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Fatepur Mota',383210,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Fatepur',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Fatepur',382465,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Fatepur',387370,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Fatepur',382755,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Fatehgadh',370155,'Kutch','Rajkot','Gujarat','Rapar','Kachchh','GUJARAT'),('Fateganj ',390002,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Fatana',360590,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Fartilizer Nagar ',391750,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Fartikui',391107,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Farod',389365,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Fariyadka',364060,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Farer',362620,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Fareni',360370,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Faredi',383345,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Fanta',391125,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Fangia',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Fangani',388450,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Fangadi',382110,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Fanaswada',396045,'Valsad','Vadodara','Gujarat','NA','Valsad','GUJARAT'),('Falu',382870,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Falod',391760,'Vadodara West','Vadodara','Gujarat','Vaghoida','Vadodara','GUJARAT'),('Falla',361120,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Fali',394163,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Faldhara',396007,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Falasan',383230,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Fagvel',387640,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Fagas',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Fadvel ',396540,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Fadsar',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Eta',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Ervada',382750,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Eru Ac ',396450,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Eru',396450,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Erthan',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Erda',360576,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Erandi',389120,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Eral',389340,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Enjar',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Endla',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Endla',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Endhal',396430,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Endergota',396375,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Ena',394310,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Eme ',390008,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Ellisbridge ',380006,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Eksal',392130,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Eklera',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Eklera',394230,'Surat','Vadodara','Gujarat','Sachin','Surat','GUJARAT'),('Eklara',383225,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Ekelbara',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Ekalva',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Ekalbara',391165,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Edrana',385210,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Echhvada',382750,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Dwarka Town ',361335,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Dwarka ',361335,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Duwada',396360,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Duva',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Durgi',382230,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Durgapur',370465,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Dungri(Valsad)',396375,'Valsad','Vadodara','Gujarat','Dungri','Valsad','GUJARAT'),('Dungri (Udava RS)',396185,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Dungri',383110,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Dungri',394110,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Dungri',389180,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Dungri',394240,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Dungri',362610,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Dungrasan',385550,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Dungra',396193,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Dungra',394180,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Dungarvant',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Dungarpur',362263,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Dungarka',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Dungari',393135,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Dungargam',391168,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Dungar ',365555,'Amreli','Rajkot','Gujarat','Rajula','Amreli','GUJARAT'),('Dungar',389172,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Dundas',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Dunawada',384265,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Dumral Bazar ',387001,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Dumlav',396145,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Dumkhal',393040,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Dumka',389382,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Dumiyani',360440,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Dumasgam',394550,'Surat','Vadodara','Gujarat','NA','Surat','GUJARAT'),('Dumas ',394550,'Surat','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Dumaral',387355,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Dumara ',370490,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Dumana',363320,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Dumana',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Dumali',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Dumado',370510,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Dumad',391740,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Duma',389390,'Panchmahals','Vadodara','Gujarat','Jambughoda','Panch Mahals','GUJARAT'),('Dulsad',396007,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Dugdol',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Dugdha',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Dugarvada',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Dugari',388625,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Dudkha',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Dudhwada',391450,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Dudhrej ',363040,'Surendranagar','Rajkot','Gujarat','Wadhwan','Surendra Nagar','GUJARAT'),('Dudhivadar',360410,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Dudhia ',389146,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Dudhia',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Dudheshwar Tavdipura ',380004,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Dudheri',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Dudhava',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Dudhathal',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Dudhamali',389382,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Dudhala No. 2',364280,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Dudhala',365545,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Dudhala',365430,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Dudhala',365660,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Dudhala',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Dudhala',364265,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Dudhai',370020,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Dudhai',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Duchakwada',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Dubalfalia',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Dron',362530,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Dotad',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Doswada',394365,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Dormar',391125,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Dora',392230,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Donja',396560,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Don',370465,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Dolvan ',394635,'Bardoli','Vadodara','Gujarat','Vyara','Tapi','GUJARAT'),('Dolti',364530,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Doltabad',383215,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Dolpur',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Doliya',363430,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Doliya',365555,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Dolia',392150,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Doli',389110,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Doldha',396321,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Dolatpur',393135,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Dolatpara ',362037,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Dolatpar',370630,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Dolasa',362720,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Dolaria',391165,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Dolarana Vasna',382320,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Dolara',394655,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Dodka',391340,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Dodiyala',364490,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Dodiwada',384210,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Dodisara',383355,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Dodgam',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Dodar',382170,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Dobhada',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Diyoli',383410,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Diwda Colony ',389250,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Diwanpura',384421,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Diwa',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Divsi',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Divrana',362220,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Diver',391250,'Vadodara East','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Dived',396020,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Divasa',362240,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Ditwas',389240,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Ditla',365630,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('District Court(Anand)',388001,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('District Court(Ahmedabad)',380001,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Disa Mukhya Dak Ghar ',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Disa M.Y. Pedal',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Deesa','Banaskantha','GUJARAT'),('Disa Bazar ',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Deesa','Banaskantha','GUJARAT'),('Dipla Falia',396436,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Dinod',394125,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Dingucha',382740,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Dindrol',384290,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Dindoli',394210,'Surat','Vadodara','Gujarat','Udhna','Surat','GUJARAT'),('Dinara',370510,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Dihor',364150,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Dihen',395005,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Digvijaynagar ',382470,'Gandhinagar','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Digvijaygram ',361140,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Digvijay Plot ',361005,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Digsar',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Digendranagar ',396570,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Digas',394330,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Digas',393030,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Didhiya',383255,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Dhuvav ',361120,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Dhuvaran Power Station ',388610,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Dhuvaran',388610,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Dhuva',385540,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Dhuva',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Dhutarpur',361130,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Dhunia',361280,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Dhundsar',364260,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Dhundi',388250,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Dhundhoraji',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Dhundhia-pipaliya',365480,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Dhundhar',383030,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Dhundakuva',388130,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Dhunai',370485,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Dhunadra',388230,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Dhulia Domda',360021,'Rajkot','Rajkot','Gujarat','Lodhika','Rajkot','GUJARAT'),('Dhufi moti',370660,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Dhudkot',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Dhudasiya',364470,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Dhudasia',361130,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Dhrumath',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Dhrufaniya',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Dhrufania',364750,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Dhrol ',361210,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Dhrobana',370510,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Dhrechana',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Dhrangadhra ',363310,'Surendranagar','Rajkot','Gujarat','Dhrangsadhra','Surendra Nagar','GUJARAT'),('Dhrang',370001,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Dhrampur',394110,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Dhramanva',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Dhrafa ',360520,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Dhrabavad',362215,'Junagadh','Rajkot','Gujarat','Vanthali(s)','Junagadh','GUJARAT'),('Dhrab',370421,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Dhota',385421,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Dhori',370001,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Dhoravar',370510,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Dhoranpardi',394150,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Dhoraji S.R. ND.T.S.O',360410,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Dhoraji G.P. ND.T.S.O',360410,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Dhoraji D.G. ND T.S.O',360410,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Dhoraji ',360410,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Dholvani',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Dholva',362020,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Dholumber(Chikhli)',396060,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Dholumber',396321,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Dholka ',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Dholikui',394430,'Surat','Vadodara','Gujarat','Vankal','Surat','GUJARAT'),('Dholikui',394250,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Dholidhar',360405,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Dholia',385135,'Banasanktha','Ahmedabad HQ','Gujarat','Shriamirgadh','Banaskantha','GUJARAT'),('Dholi Simal',391165,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Dholi Bhal',363425,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Dholi',382240,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Dholi',363320,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Dholi',388365,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Dholgam',393135,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Dholera ',382455,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Dholavira',370165,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Dholasan',382732,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Dholara',360022,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Dholar',391107,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Dholar',393140,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Dholakuva',382845,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Dholakda',385360,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Dholai Falia',396110,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Dhola ',364320,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Dhokavada',385350,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Dhokalva',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Dhokadva ',362565,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Dhodipada',396130,'Valsad','Vadodara','Gujarat','Umbergaon','Valsad','GUJARAT'),('Dhodhadkuva',396126,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Dhinoj ',384225,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Dhinkva',389360,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Dhinki',361335,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Dhingalwada',389240,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Dhingada',382230,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Dhima ',385566,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Dhichada',361009,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Dhesia',388270,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Dhemal',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Dhelana',362225,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Dhediya',389175,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Dhedasana',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Dhebar',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Dhebar',362130,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Dhavliver',393025,'Bharuch','Vadodara','Gujarat','Sagbara','Narmada','GUJARAT'),('Dhavlidhod',394710,'Bardoli','Vadodara','Gujarat','Dangs','The Dangs','GUJARAT'),('Dhavda',370675,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Dhavat',391210,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Dhavana',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Dhavadia',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Dhava',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Dhatva',394180,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Dhaturia',361306,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Dhathal',387550,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Dhat',394655,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Dhasa Jn ',364740,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Dhasa Gam ',364730,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Dharwala',364740,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Dharvadi',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Dharusan',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Dharuka',364330,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Dharsimel',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Dharpur',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Dharpipla',382245,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Dharoli',393110,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Dharola',389001,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Dharoi DSC ',384360,'Mahesana','Ahmedabad HQ','Gujarat','Satlasana','Mahesana','GUJARAT'),('Dharoi',383255,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Dharoda',387540,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Dharnoj',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Dharnodhar',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Dharmpuri',391110,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Dharmoda',384220,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Dharmaj-ranoli',388430,'Kheda','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Dharmaj ',388430,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Dharisana',382315,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Dharigundali Juni',362020,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Dhari SR ',365640,'Amreli','Rajkot','Gujarat','Dhari','Amreli','GUJARAT'),('Dhari ',365640,'Amreli','Rajkot','Gujarat','Dhari','Amreli','GUJARAT'),('Dhargni',365630,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Dhareshi',370627,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Dharasana',396375,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Dharapur',383421,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Dharapur',389220,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Dharampuri',396590,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Dharampur(Valsad)',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Dharampur',382165,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Dharampur',361170,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Dharampur',360560,'Porbandar','Rajkot','Gujarat','Ranavav','Porbandar','GUJARAT'),('Dharai',364145,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Dharai',365410,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Dharai',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Dharadungar',389160,'Panchmahals','Vadodara','Gujarat','Dohad','Dahod','GUJARAT'),('Dharadhara',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Dhar',364515,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Dhanwada',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Dhanturia',393020,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Dhanturi',394633,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Dhantej',391530,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Dhansura ',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Dhansor',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Dhanpura',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Amirgadh','Banaskantha','GUJARAT'),('Dhanpur ',389382,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Dhanpore',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Dhanori(Gandevi)',396360,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Dhanori',396045,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Dhanora',384246,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Dhanora',391510,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Dhanora',391346,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Dhanoli',396105,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Dhanol',388713,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Dhanodharda',384220,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Dhankuva',389360,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Dhanki(Surendra Nagar)',363115,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Dhankankunda',364230,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Dhank ',360460,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Dhanitra',389001,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Dhaniawada',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Dhaniavi',390014,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Dhangla',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Dhanfuliya',362205,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Dhaneti',370020,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Dhaneshawar',389365,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Dhanera ',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Dhandhusar',362002,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Dhandhuka ',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Dhandhoda',391165,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Dhandhasan',383355,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Dhandhalpur',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Dhandhalpur',363440,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Dhandha',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Dhanawada',384265,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Dhanavada',370650,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Dhanap',382355,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Dhanali',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Dhanali',382732,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Dhanala',382465,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Dhanala',363351,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Dhanakwada',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Dhamrad',394810,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Dhamodla',394340,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Dhamodi',394650,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Dhamod',388270,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Dhamnod',389120,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Dhamnacha',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Dhamlej',362275,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Dhamkhadi',394248,'Bardoli','Vadodara','Gujarat','NA','Surat','GUJARAT'),('Dhamdod Lumbha',394355,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Dhamdod',394125,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Dhamdhuma',396060,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Dhamdachi',396001,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Dhamdachha',396310,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Dhambolia',383355,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Dhamatvan',382435,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Dhamasiya',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Dhamasana',382740,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Dhamanva',384001,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Dhamania',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Dhamani',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Dhaman',396415,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Dhamadka',370020,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Dhamadi (Gadu)',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Dhama',382755,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Dhakha',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Dhakdi',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Dhakania',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Dhajamba',394670,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Dhajala',363440,'Surendranagar','Rajkot','Gujarat','Sayla','Surendra Nagar','GUJARAT'),('Dhagadia',385110,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Dhadhela',389170,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Dhadhela',389140,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Dhadhana',384240,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Devtimoti',382213,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Devsar ',396380,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Devsar',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Devsaki',393050,'Bharuch','Vadodara','Gujarat','Sagbara','Narmada','GUJARAT'),('Devrasan',382710,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Devpura',382140,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Devpura',382870,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Devpara',363425,'Surendranagar','Rajkot','Gujarat','Limbdiq','Surendra Nagar','GUJARAT'),('Devpar Jakh',370675,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Devpar Gadh',370445,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Devnimori',383355,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Devli',362720,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Devli',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Devla',392040,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Devla',364485,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Devla',365640,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Devki Vansol',387130,'Kheda','Vadodara','Gujarat','Mahemdabad','Kheda','GUJARAT'),('Devki Galol',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Devkaran Na Muvada',382308,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Devisar',370665,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Devirampura',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Devgana',364260,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Devgam',365460,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Devgam',360021,'Rajkot','Rajkot','Gujarat','NA','Rajkot','GUJARAT'),('Devgadh Baria ',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Devdhari',360055,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Devdha',396310,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Devda',382830,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Devda',362650,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Devcharadi',363320,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Devchadi',360330,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Devataj',387240,'Kheda','Vadodara','Gujarat','Sojitra','Anand','GUJARAT'),('Devarajiya',365630,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Devalki',365480,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Devaliya ',391121,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Devaliya',382245,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Devaliya',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Devaliya',382775,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Devaliya',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Devaliya',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Devalia Targhadi',361010,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Devalia',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Devalia',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Devalia',370110,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Devadh',394210,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Devadh',394440,'Surat','Vadodara','Gujarat','Zankhvav','Surat','GUJARAT'),('Deva',387380,'Kheda','Vadodara','Gujarat','Petlad','Kheda','GUJARAT'),('Dev',388265,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Deusana',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Detroj ',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Detrana',385350,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Dethli',387210,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Dethli',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Dethli',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Dethali',384210,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Deshotar',383230,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Deshinga',362620,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Deshalpar (V)',370165,'Kutch','Rajkot','Gujarat','Rapar','Kachchh','GUJARAT'),('Deshalpar',370040,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Deshalpar',370405,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Desar ',391774,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Desalpar (N)',370605,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Desaipura',383330,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Desai Vago ',387001,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Desad',393135,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Dervala',382775,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Deroli',383330,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Deroli',391250,'Vadodara East','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Deroli',391130,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Derol R S ',389320,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Derol Gam',389320,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Derol',383220,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Derol',392020,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Deripipariya',365440,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Deri',360540,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Derdi Kumbaji ',364465,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Derdi J',365435,'Amreli','Rajkot','Gujarat','Lathi','Amreli','GUJARAT'),('Derdi',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Derala',363660,'Rajkot','Rajkot','Gujarat','Malia(m)','Rajkot','GUJARAT'),('Der',384110,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Depla',364510,'Bhavnagar','Rajkot','Gujarat','Jesar','Bhavnagar','GUJARAT'),('Depa',370435,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Deodar ',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Deo Dholera',382240,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Dendava',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Denap',384315,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Dena',390022,'Vadodara East','Vadodara','Gujarat','NA','Vadodara','GUJARAT'),('Demti',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Demol',387710,'Kheda','Vadodara','Gujarat','Petlad','Kheda','GUJARAT'),('Demai ',383330,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Delwada',383422,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Delwada',383255,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Delvada Vadoli',396436,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Delvada (Khant)',384210,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Delvada ',362510,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Delvada',382810,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Delvada',394620,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Deloli',384410,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Delol ',389310,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Delmal',384230,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Deli',396126,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Delhi Gate(Ahmedabad)',380004,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Delasa',394530,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Deladva',394210,'Surat','Vadodara','Gujarat','Udhna','Surat','GUJARAT'),('Delad',394330,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Dela',384001,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Dekawada',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj Rampura','Ahmedabad','GUJARAT'),('Dehri',396170,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Dehmi',388560,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Dehli',396105,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Dehgamda',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Dehgam ',382305,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Dehgam',392170,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Dehgam',392012,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Dehali ',393125,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Degvada',364295,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Degama',394690,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Degam ',396530,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Degam',360579,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Degam',387320,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Degam',382745,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Dedvasan',394250,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Dediapada ',393040,'Bharuch','Vadodara','Gujarat','Dediapada','Bharuch','GUJARAT'),('Dedhrota',383220,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Dedhiya',370450,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Dedarva',360360,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Dedarda',364265,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Dedarda',388560,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Dedana',384210,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Dedan ',365550,'Amreli','Rajkot','Gujarat','Khambha','Amreli','GUJARAT'),('Dedakiyal',362260,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Dedakadi',364530,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Dedadra',363030,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Deda',362255,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Debhari',388260,'Anand','Vadodara','Gujarat','Virpur','Kheda','GUJARAT'),('Debarpada',396040,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Dbhavan',392020,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Daypar ',370630,'Kutch','Rajkot','Gujarat','Kachch','Kachchh','GUJARAT'),('Dayal',364130,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Dayadra ',392020,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Daxini Society ',380008,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Davri',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Davol',388540,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Davol',384325,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Davli',383320,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Davda',387350,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Davalpura',388450,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Davadra',389365,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Davada',384120,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Davad ',383225,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Daudpur',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Dattanagar',393130,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Datrana',362260,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Datha ',364130,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Dastan',394310,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Daslana',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Dasla',389154,'Panchmahals','Vadodara','Gujarat','Dohad','Dahod','GUJARAT'),('Dashrath',391740,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Dashela',382355,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Dashan',392012,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Dasawada',384265,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Dasalwada',387365,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Dasaj',384170,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Dasada ',382750,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Dasa',389130,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Darshadi',370445,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Darpan Society ',380009,'Ahmedabad City','Ahmedabad HQ','Gujarat','City Taluka','Ahmedabad','GUJARAT'),('Dariapur(Ahmedabad)',380001,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Dari',362266,'Junagadh','Rajkot','Gujarat','Patan-Veraval','Junagadh','GUJARAT'),('Dared',364760,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Dared',365435,'Amreli','Rajkot','Gujarat','Lathi','Amreli','GUJARAT'),('Darapura',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Daran',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Daran',382165,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Daramali',383110,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Dantroli',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Dantrana',361305,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Dantral',383422,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Dantod',383462,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Dantiwada Colony ',385505,'Banasanktha','Ahmedabad HQ','Gujarat','Dantiwada','Banaskantha','GUJARAT'),('Dantiwada',385505,'Banasanktha','Ahmedabad HQ','Gujarat','Dantiwada','Banaskantha','GUJARAT'),('Dantisana',384246,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Dantia',389180,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Dantia',389140,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Danti',396436,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Danteshwar',390004,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Dantardi',365555,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Dantali',388450,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Danta Bhavangadh ',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Danta',361305,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Danodarda',384225,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Dani',391152,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Dangia',385510,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Dangavadar',365640,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Dangarwa ',382705,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Dangaria',389115,'Panchmahals','Vadodara','Gujarat','Morva Hadaf','Panch Mahals','GUJARAT'),('Dandi',396439,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Dandi',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Danda',392230,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Danavada',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Danadra',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Dana',387630,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Dan Mahudi',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Damrala',364265,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Dampat',387630,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Damnagar ',365220,'Amreli','Rajkot','Gujarat','Lathi','Amreli','GUJARAT'),('Damka',394517,'Surat','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Dambher',396472,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Damavav',389380,'Panchmahals','Vadodara','Gujarat','Ghoghamba','Panch Mahals','GUJARAT'),('Damavas',383275,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Dalwana',385421,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Dalwada',385515,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Dalwada',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Daltungi',361280,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Dalpura',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Dalpur',383120,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Dalod',382130,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Dalkhaniya',365640,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Dalisana',384325,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Dalia',360070,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Dali',388550,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Daldi',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Dalani Muvadi',383205,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Dakor ',388225,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Dakhneshwar',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Dakana',364140,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Dajipura',391774,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Daiyap',385566,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Daiya',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Dahod R.S ',389151,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Dahod ',389151,'Panchmahals','Vadodara','Gujarat','Dohad','Dahod','GUJARAT'),('Dahiup',387620,'Kheda','Vadodara','Gujarat','Kapadvanj','Kheda','GUJARAT'),('Dahisara(Rajkot)',363660,'Rajkot','Rajkot','Gujarat','Maliya','Rajkot','GUJARAT'),('Dahisara(Kachchh)',370485,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Dahisara',360025,'Rajkot','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Dahevan',388550,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Dahej ',392130,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Dahegamda',383251,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Daheda',388620,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Dagunia',394730,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Dagjipura',388205,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Dagavadia',382830,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Dagara',370020,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Dagadiamba',394730,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Dadvi',360405,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Dadva(Randal)',365460,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Dadva Mota',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Dadva',362620,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Dadva',364320,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Dadusar',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Dadusar',387335,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Dadur',389155,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Daduka',382110,'Gandhinagar','Ahmedabad HQ','Gujarat','Sannad','Ahmedabad','GUJARAT'),('Dadia',361012,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Dadhwada',394160,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Dadhvav',383462,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Dadhial',384305,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Dadheda',393110,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Dadhana',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Mandal','Ahmedabad','GUJARAT'),('Dadhalia ',383317,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Dadhalia',389250,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Dadhal',393001,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Dadaria',394630,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Dadarda',383305,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Dadar',360452,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Dadar',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Dadar',362120,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Dadali',365550,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Dabkhal',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Dabka',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Dabhvan',393041,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Dabhunda',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Dabhsar',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Dabhou ',387210,'Kheda','Vadodara','Gujarat','Sojitra','Anand','GUJARAT'),('Dabhor',362266,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Dabholi',395004,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Dabhoi Vadodari Bhagol ',391110,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Dabhoi R.S. ',391110,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Dabhoi ',391110,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Dabhoda ',382355,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Dabhoda',384325,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Dabhlai',396466,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Dabhi',384170,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Dabhela',385130,'Banasanktha','Ahmedabad HQ','Gujarat','Shri Amirgadh','Banaskantha','GUJARAT'),('Dabhel ',396415,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Dabhasi',388140,'Kheda','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Dabhasa',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Dabhan ',387320,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Dabhali',392210,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Dabhali',388250,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Dabhala',382865,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Dabhada',389140,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Dabhad',384325,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Dabha',392150,'Bharuch','Vadodara','Gujarat','Jambusar','Vadodara','GUJARAT'),('Dabha',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Dabasang',361280,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('D R.S.',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('D Cabin ',380019,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Ctm Char Rasta ',380026,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('CRPF Campus G Nagar ',382042,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Concret Jetty',364005,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Civil Hospital ',380016,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Chuval Dangarva',382145,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj Rampura','Ahmedabad','GUJARAT'),('Chuva',388140,'Kheda','Vadodara','Gujarat','Borsad','Kheda','GUJARAT'),('Chuva',385566,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Chur',361306,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Chunel',387330,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Chundi',370430,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Chundadi',389130,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Chunavadi',394635,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Chunakhan',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Chulla',383440,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Chuli',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Chuldi',362255,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Chudva',362640,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Chudmer',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Chudeshwar',391120,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Chudel',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Chuda ',363410,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Chuda',362020,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Chovisi',396427,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Chotila ',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Chotia',384325,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Chosala',389160,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Chorvira',363530,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Chorvani',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Chorvadi',362110,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Chorvad Holiday Home',362250,'Junagadh','Rajkot','Gujarat','Malia','Junagadh','GUJARAT'),('Chorvad ',362250,'Junagadh','Rajkot','Gujarat','Malia','Junagadh','GUJARAT'),('Chorvad',394650,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Chorngala',391130,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Choriwad',383440,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Chorimala',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Chori',388270,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Chordi',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Chorbhuj',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Chorbaria',389380,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Choranda ',391244,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Choramba',394440,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Chopda Buzarg',389110,'Panchmahals','Vadodara','Gujarat','Santrampur','Dahod','GUJARAT'),('Chopadvav',393050,'Bharuch','Vadodara','Gujarat','Sagbara','Narmada','GUJARAT'),('Chopadva',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Chondha',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Chokli',362310,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Choki ',362315,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Choki',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Chokhvada',394445,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Chokhiamli',394380,'Bardoli','Vadodara','Gujarat','Nizar','Surat','GUJARAT'),('Chokhanda',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Chokhad',396415,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Chokdi',382250,'Gandhinagar','Ahmedabad HQ','Gujarat','Barwala','Ahmedabad','GUJARAT'),('Chokdi',363410,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Chokari',391450,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Chok',364510,'Bhavnagar','Rajkot','Gujarat','NA','Bhavnagar','GUJARAT'),('Choila',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Chogath',364330,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Chobari',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Chobari',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Chiyasar',370650,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Chival',396126,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Chitwa',389260,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Chitrodia',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Chitrodi',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Chitroda ',383421,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Chitrod',362135,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Chitrod',370145,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Chitravad ',360452,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Chitravad',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Chitrasani ',385010,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Chitral',391430,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Chitlav',388230,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Chithoda',383462,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Chitariya',383462,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Chitari Bazar ',388620,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Chitalda',394440,'Surat','Vadodara','Gujarat','Zankhvav','Surat','GUJARAT'),('Chital ',365620,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Chiskari',382308,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Chisadiya',391165,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Chirodasang',360520,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Chiroda',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Chiroda',362260,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Chirmati',394380,'Bardoli','Vadodara','Gujarat','Nijhar','Surat','GUJARAT'),('Chirai',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Chipad',391760,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Chinchli',394710,'Bardoli','Vadodara','Gujarat','Dangs','The Dangs','GUJARAT'),('Chinchinagaontha',394715,'Bardoli','Vadodara','Gujarat','Ahwa','Surat','GUJARAT'),('Chimipatal',394445,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Chiloda',382355,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Chilakota',389152,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Chikhodra ',388320,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Chikhodara',390009,'Vadodara East','Vadodara','Gujarat','NA','Vadodara','GUJARAT'),('Chikhlodra',362650,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Chikhlod',387640,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Chikhlinani',394650,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Chikhli(Navsari)',396521,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Chikhli',393135,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Chikhalvav',394650,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Chikhaliya',360410,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Chikhali Khadka',394650,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Chikhali Dungar',394320,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Chikhali Dangs',394730,'Bardoli','Vadodara','Gujarat','The Dangs','The Dangs','GUJARAT'),('Chikhali',364530,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Chikhala',383255,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Chikda',393041,'Bharuch','Vadodara','Gujarat','NA','Vadodara','GUJARAT'),('Chikatia',394710,'Bardoli','Vadodara','Gujarat','Dangs','The Dangs','GUJARAT'),('Chikasar',382765,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Chikar',394730,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Chikalda',394650,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Chijgam',396460,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Chichozar',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Chichod',360430,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Chiboda',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Chibhda',360035,'Gondal','Rajkot','Gujarat','Lodhika','Rajkot','GUJARAT'),('Chibhada',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Chiada',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Chhuchhapura',391125,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Chhota-udepur ',391165,'Vadodara East','Vadodara','Gujarat','Chhotaudepur','Vadodara','GUJARAT'),('Chhogala',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Chhodavadi',362030,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Chhitra',394350,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Chhitpur',394375,'Bardoli','Vadodara','Gujarat','Uchchhal','Surat','GUJARAT'),('Chhiri',396191,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Chhipial',387635,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Chhipdi ',387635,'Kheda','Vadodara','Gujarat','NA','Kheda','GUJARAT'),('Chhindia',394655,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Chhinam',396436,'Navsari','Vadodara','Gujarat','Jalalporre','Navsari','GUJARAT'),('Chhidra',392155,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Chhayan',389180,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Chhaya ',360578,'Porbandar','Rajkot','Gujarat','NA','Porbandar','GUJARAT'),('Chhavad',389120,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Chhatriyala',363415,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Chhatrava',362650,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Chhatrasa',360410,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Chhatrali',391135,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Chhatrala',385530,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Chhatral ',382729,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Chhatral',391210,'Vadodara West','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Chhathiarda',384205,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Chhatar',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Chhatadiya',365630,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Chhasiya',360055,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Chhasiana',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Chhasara',370655,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Chhasara',370410,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Chharwada',396030,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Chharodi',382170,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Chharad',363115,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Chhara',362720,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Chhapti',394375,'Bardoli','Vadodara','Gujarat','Uchchhal','Surat','GUJARAT'),('Chhapri Juni',364145,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Chhapra Bhatha',394107,'Surat','Vadodara','Gujarat','Chorasi','Surat','GUJARAT'),('Chhapra',387130,'Kheda','Vadodara','Gujarat','Mahemdabad','Kheda','GUJARAT'),('Chhapra',396445,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Chhapi ',385210,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Chhapi',383230,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Chhaparwad',389130,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Chhapariyali',364510,'Bhavnagar','Rajkot','Gujarat','Jesar','Bhavnagar','GUJARAT'),('Chhapar',361306,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Chhaniyana',385410,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Chhanip',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Chhaniar',382140,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj- Rampura','Ahmedabad','GUJARAT'),('Chhani(Vadodara)',391740,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Chhani Rd ',390024,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Chhanchava',391244,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Chhanbhoi',391250,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Chhamichha',384221,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Chhalor',389172,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Chhaliar',391530,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Chhalala',363415,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Chhala ',382321,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Chhadwara',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Chhadvavadar',360410,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Chhadura',370655,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Chhachhar',362710,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Chhabhou',383330,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Chhabhadiya',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Chhabasar',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Chhabalia',384355,'Mahesana','Ahmedabad HQ','Gujarat','Vadnagar','Mahesana','GUJARAT'),('Chetarsumba',388225,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Chepa',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Chenpur',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Chemical Industries ',390003,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Chembuva',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Chelawada',389360,'Panchmahals','Vadodara','Gujarat','Ghoghamba','Panch Mahals','GUJARAT'),('Chelabedi',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Chela ',361012,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Chekra',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Chekhla',382115,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Chekhala Pagi',382321,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Chekhala',385550,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Chavshala',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Chaveli',384225,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Chavda',361130,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Chavda',394445,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Chavandi',360452,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Chavand ',365435,'Amreli','Rajkot','Gujarat','NA','Amreli','GUJARAT'),('Chauta',362650,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Chaulaj',382433,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Chatra',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Chatkabeli',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Chasvad',393130,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Chasa',396530,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Charup',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Charopadi Moti',370655,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Charol',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Charkha',365421,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Charkha',365630,'Amreli','Rajkot','Gujarat','Dhari','Amreli','GUJARAT'),('Chari',396040,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Charel',382110,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Charel',360452,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Charda',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Charanvada',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Charanki',382450,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Charanka',385350,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Charania',365480,'Amreli','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Charangam',388270,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Charan Nikol',387640,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Charakhadiya',364515,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Charakhadi',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Charakala',361335,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Charadva',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Charadu',382730,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Charada ',382810,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Char',362220,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Chapredi',370105,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Chapra',389360,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Chaparda',362120,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Chapar',396310,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Chapaldhara',396570,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Chapad',391410,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Chanvai',396020,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Chanvada',391110,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Chansol',384325,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Chansad',391440,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Chanod Md',396195,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Chankhal',394710,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Changwada',385520,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Changodar ',382213,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Changda',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Changa ',388421,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Changa',361012,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Changa',385555,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Changa',385520,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Chandwana',389154,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Chandvegan',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Chandvasa',383460,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Chandvana',362225,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Chandur Nani',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Chandur Moti',384241,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Chandrumana',384255,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Chandrpura',389350,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Chandroda',370130,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Chandrej',383260,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Chandravati',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Chandravasansupa',396472,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Chandravan',393130,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Chandravada',361325,'Jamnagar','Rajkot','Gujarat','Jamkalyanpur','Jamnagar','GUJARAT'),('Chandrasan',382170,'Gandhinagar','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Chandrapur',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Chandrani',370020,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Chandranagar',389360,'Panchmahals','Vadodara','Gujarat','Ghoghamba','Panch Mahals','GUJARAT'),('Chandranagar',391520,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Chandranagar',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Chandrana',383422,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Chandrala',382321,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Chandor',396191,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Chandod ',391105,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Chandlodia ',382481,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Ahmedabad','GUJARAT'),('Chandli',360035,'Gondal','Rajkot','Gujarat','Lodhika','Rajkot','GUJARAT'),('Chandkheda Society Area ',382424,'Ahmedabad City','Ahmedabad HQ','Gujarat','Gandhinagar','Ahmedabad','GUJARAT'),('Chandkheda',382424,'Ahmedabad City','Ahmedabad HQ','Gujarat','Gandhinagar','Ahmedabad','GUJARAT'),('Chandisar ',385510,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Chandisar',382260,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Chandigadh',362220,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Chandial',382433,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Chandia',370130,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Chandgadh',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Chandasar',388225,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Chandarva',382255,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Chandarni',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Chandap',383434,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Chandana',387560,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Chancvel',392140,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Chanch',365555,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Chanasma ',384220,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Chanaka',362020,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Chamthan',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Champrajpur',360370,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Champeli',388270,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Champavadi',394650,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Champaner Road',391510,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Champabeda',360070,'Gondal','Rajkot','Gujarat','Kotda','Rajkot','GUJARAT'),('Chamla',382433,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Chametha',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Chamaria',389175,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Chamardi',364310,'Bhavnagar','Rajkot','Gujarat','Vallabhipur','Bhavnagar','GUJARAT'),('Chamaraj',363040,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Chamaradi ',365410,'Amreli','Rajkot','Gujarat','Babra','Amreli','GUJARAT'),('Chamara',388520,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Chalvada',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Chalva',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Chaluva',382732,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Chalthan ',394305,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Chaloda ',382260,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Chalamali',391140,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Chalali',387115,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Chalali',389341,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Chalala ',365630,'Amreli','Rajkot','Gujarat','Dhari','Amreli','GUJARAT'),('Chala',396191,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Chala',385570,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Chaklashi ',387315,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Chaklad',392035,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Chakkargadh',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Chakalia',389180,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Chagada',388180,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Chadotar',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Chadiya',365630,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Chadasana',382810,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Chadasana',383110,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Chadasana',384210,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Chada',384325,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Chachlana',361320,'Jamnagar','Rajkot','Gujarat','Jamkalyanpur','Jamnagar','GUJARAT'),('Chachka',363410,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Chachapar',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Chachana',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Chabhadia',364320,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Centrap Pulp Mill ',394660,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Cantonment ',380004,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Calico Mills ',380022,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Butwada',394248,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Butta Paldi',384120,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Butta',370655,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Butdi',362130,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Butavadar',360480,'Gondal','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Butal',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Burla',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Buri',362630,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Buranpur',382465,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Bundha',394440,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Bukoli',385550,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Bukna',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Bujetha',391120,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Buhari ',394630,'Bardoli','Vadodara','Gujarat','Valod','Tapi','GUJARAT'),('Budia',394210,'Surat','Vadodara','Gujarat','Udhna','Surat','GUJARAT'),('Budhrasan',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Budhpur',389140,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Budheli',383230,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Budheli',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Budhel',364002,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Budhej',388620,'Kheda','Vadodara','Gujarat','Tarapur','Anand','GUJARAT'),('Budhecha',362250,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Budharmora',370020,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Budhana',364240,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Budasan',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Bubvana',382750,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('BSF GANDHINAGAR ',382045,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Bsf Camp Khavda',370510,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Brahmanwada ',384215,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Brahmanwada',384220,'Patan','Ahmedabad HQ','Gujarat','Chanasma','Patan','GUJARAT'),('Brahamanvashi',391421,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Botad Town ',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Botad Statoin Road ',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Botad ',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Borvav',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Borvai',389232,'Panchmahals','Vadodara','Gujarat','Khanpur','Panch Mahals','GUJARAT'),('Boru Bakorl',389330,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Boru',382845,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Bortha',394370,'Bardoli','Vadodara','Gujarat','Nizar','Surat','GUJARAT'),('Bortalav',391145,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Borsi',396436,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Borsavar',394670,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Borsan',384275,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Borsad ',388540,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Borsad',394110,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Borna',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Borlai',396105,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Borkhal',394710,'Bardoli','Vadodara','Gujarat','Dangs','The Dangs','GUJARAT'),('Borkhadi',394690,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Boriya',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Borisana (Kadi)',382728,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Borisana',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Borigam',396235,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Boridra',394125,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Boridra',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Boricha',360545,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Boriavi ',387310,'Kheda','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Boriavi',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Boriavi',384435,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Boriala',389155,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Boriach',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Boria(Sabarkantha)',383006,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Boria(Anand)',388130,'Anand','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Boria Bechraji',383215,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Boria',360405,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Boria',394430,'Surat','Vadodara','Gujarat','Vankal','Surat','GUJARAT'),('Bori Falia ',396412,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Borditimba',383260,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Bordibazar Viramgam ',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Bordi R.S.',389160,'Panchmahals','Vadodara','Gujarat','Dohad','Dahod','GUJARAT'),('Bordi',383340,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Bordi',388225,'Anand','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Bordi',364280,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Bordi',365640,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bordha',391135,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Borda',393050,'Bharuch','Vadodara','Gujarat','NA','Surat','GUJARAT'),('Borda',364130,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Borbhathabet',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Borbar',391107,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Boratwada',384240,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Borana',363410,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Borala',365650,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Borala',364521,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Boral',383330,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Bor',389380,'Panchmahals','Vadodara','Gujarat','Ghoghamba','Panch Mahals','GUJARAT'),('Bopi',396051,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Bopal ',380058,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Bonandh',394230,'Surat','Vadodara','Gujarat','Sachin','Surat','GUJARAT'),('Bombay Market ',395010,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Bolundra(R)',383421,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Bolundra (S)',383230,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Bolundra',383250,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Bolera',384246,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Bol',382170,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Bokhira ',360579,'Porbandar','Rajkot','Gujarat','NA','Porbandar','GUJARAT'),('Bokarwada',384120,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Bojadra',392150,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Boidra',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Bogharavadar',360025,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Bogaj',393040,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Bodvank',396560,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Bodlai',396055,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Bodki',363660,'Rajkot','Rajkot','Gujarat','Dahisara','Rajkot','GUJARAT'),('Bodki',364750,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Bodka',362610,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Bodka',361220,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Bodka',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Bodidra Khurd',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Bodidra Buzarg',389120,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Bodidhar',362560,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Bodia',382245,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Bodi',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Bodi',364720,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Bodhan(Surat)',394140,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Bodeli ',391135,'Vadodara East','Vadodara','Gujarat','Bodeli','Vadodara','GUJARAT'),('Bodali',396445,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Bodal',388540,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Bodakdev ',380054,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Boda',364295,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Bochasan RS ',388140,'Kheda','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Bochasan',388140,'Kheda','Vadodara','Gujarat','Borsad','Kheda','GUJARAT'),('Bobha',383205,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Bnmroli',387350,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Bngroli',387350,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Bitta Valadia',370110,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Bitta',370650,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Bithli',391105,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Bitada',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Birpur(Kheda)',388260,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Binwada',396020,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Bilwania',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Bilwani',389180,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Bilvan',394445,'Surat','Vadodara','Gujarat','Umarpada','Surat','GUJARAT'),('Bilpudi',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Bilpad',388520,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Bilothi',393130,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Bilodra',382810,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Bilodara',387002,'Kheda','Vadodara','Gujarat','Naidiad','Kheda','GUJARAT'),('Bill',391410,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Bilkhadi',394250,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Bilkha ',362110,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Biliyala',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Biliya',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Bilimora RS ',396321,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Bilimora ',396321,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Bilia',382870,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Bilia',384240,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Bilia',384151,'Patan','Ahmedabad HQ','Gujarat','Sidhpur','Patan','GUJARAT'),('Bileshwar',360550,'Porbandar','Rajkot','Gujarat','Ranavav','Porbandar','GUJARAT'),('Bildi',364490,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Bildha',396051,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Bilasia',382330,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Biladia',383462,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Bila',364280,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Bigri ',396110,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Bidaj',387120,'Kheda','Vadodara','Gujarat','Kheda','Kheda','GUJARAT'),('Bidada ',370435,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Bibinivav',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Bibar',370001,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Bhuvel',388640,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Bhuvar',389110,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Bhuvaldi',382430,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Bhuvad',370130,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Bhuva',364521,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bhuva',392012,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Bhuva',392110,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Bhutwada',394690,'Bardoli','Vadodara','Gujarat','NA','Surat','GUJARAT'),('Bhutsar',396055,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Bhutiya',383440,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Bhutiya',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Bhutiya',364230,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Bhutia',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Bhutedi',385010,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Bhutavad',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Bhutaradi',389155,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Bhutakia',370155,'Kutch','Rajkot','Gujarat','Rapar','Kachchh','GUJARAT'),('Bhurkhi',382230,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Bhurakui',388430,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Bhurakhiya',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bhupgadh',360025,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Bhungalia',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Bhundasan',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Bhunava',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Bhunav',384130,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Bhumel',387370,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Bhumbhli',364110,'Bhavnagar','Rajkot','Gujarat','Gogha','Bhavnagar','GUJARAT'),('Bhumaswada',391168,'Vadodara East','Vadodara','Gujarat','Kawant','Vadodara','GUJARAT'),('Bhukhi',360410,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Bhukhel',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Bhujpur ',370405,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Bhujodi',370020,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Bhuj Ravalwadi ',370001,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Bhuj Din Dayal Nagar ',370001,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Bhuj Darbargadh Chowk ',370001,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Bhuj B S F Camp ',370015,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Bhuj ',370001,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Bhriangda',365565,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bhragupur ',363415,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('BhoyanMoti',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Bhoyani',382145,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Bhoyan Rathod',382422,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Bhoyan',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Bhorva',389382,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Bhorol',385566,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Bhoria',394248,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Bhordu',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Bhorda',391165,'Vadodara East','Vadodara','Gujarat','Chhota-udepur','Vadodara','GUJARAT'),('Bhorara',370410,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Bhoramali',393050,'Bharuch','Vadodara','Gujarat','Sagbara','Narmada','GUJARAT'),('Bhopalka',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Bhomiyavadar',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Porbandar','GUJARAT'),('Bholad',382230,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Bhola',360410,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Bhojwa',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Bhojpur Najik',394690,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Bhojpara',363423,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Bhojpara',364060,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhojela',389190,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Bhojay',370450,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Bhojavadar',364320,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Bhojabedi',360520,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Bhoja Na Muvada',387650,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Bhoj',391445,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Bhoika',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Bhogat',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Bhoddar',360570,'Porbandar','Rajkot','Gujarat','Ranavav','Porbandar','GUJARAT'),('Bhodar',392150,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Bhod',360550,'Porbandar','Rajkot','Gujarat','Ranavav','Porbandar','GUJARAT'),('Bhmodra-mota',364525,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bhljamboli',394370,'Bardoli','Vadodara','Gujarat','Nizar','Surat','GUJARAT'),('Bhiyal',362310,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Bhitkhurd',394375,'Bardoli','Vadodara','Gujarat','Uchchhal','Surat','GUJARAT'),('Bhitara',370030,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Bhirandiara',370510,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Bhinsara',370475,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Bhingrad',365220,'Amreli','Rajkot','Gujarat','Lathi','Amreli','GUJARAT'),('Bhindora',362640,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Bhindol',391135,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Bhinda',361306,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Bhinar',396590,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Bhinar',396436,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Bhimrana',361345,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Bhimpura',384330,'Mahesana','Ahmedabad HQ','Gujarat','Satlasana','Mahesana','GUJARAT'),('Bhimpore',394550,'Surat','Vadodara','Gujarat','NA','Surat','GUJARAT'),('Bhimpor',394640,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Bhimora',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Bhimkata',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Bhimguda',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Bhimdad',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Bhimasar )',370240,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Bhimasar ',370160,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Bhilvashi',393155,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Bhilvan',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Bhilvada',394421,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Bhilpur',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Bhilot',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Bhilodia',391110,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Bhiloda Bazar ',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Bhiloda ',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Bhilod',393135,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Bhilod',389341,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Bhildi ',385530,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Bhilapur',391107,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Bhilad ',396105,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Bhilachal',385505,'Banasanktha','Ahmedabad HQ','Gujarat','Dantiwada','Banaskantha','GUJARAT'),('Bhikhapur',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Bhikda',364060,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhichor',389172,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Bhetasi',388307,'Anand','Vadodara','Gujarat','Anklav','Anand','GUJARAT'),('Bhetali',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Bhetakadi',360590,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Bhesvadi',365535,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bhestan ',395023,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Bhesana',385330,'Banasanktha','Ahmedabad HQ','Gujarat','Deodar','Banaskantha','GUJARAT'),('Bhesana',384421,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Bhesan ',362020,'Junagadh','Rajkot','Gujarat','Bhesan','Junagadh','GUJARAT'),('Bhesan',395005,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Bherunda',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Bhersam',392012,'Bharuch','Vadodara','Gujarat','Bharuch','Vadodara','GUJARAT'),('Bherda',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Bherai',365560,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bhenskhetar',393135,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Bhensjal',363410,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Bhensdara',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Bhensdad',361220,'Jamnagar','Rajkot','Gujarat','Dhrol','Jamnagar','GUJARAT'),('Bhensawada',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Bhensavali',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Bhenakvad',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Bhempoda',383335,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Bhemapur',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Bhedvad',394210,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Bhechda',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Bhe',389155,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Bhayla',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Bhayavadar ',360450,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Bhayavadar',365450,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bhavthan Ambosi',396051,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Bhavsor',382870,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Bhavrdi',365650,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bhavpara',360579,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Bhavpar',363660,'Rajkot','Rajkot','Gujarat','Dahisara','Rajkot','GUJARAT'),('Bhavnagar Wadva ',364001,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhavnagar Vora Bazar ',364001,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhavnagar Takhteshwar ',364002,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhavnagar Station Road ',364006,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhavnagar Shivaji Circle Area ',364001,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhavnagar Para ',364003,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhavnagar Nirmalnagar ',364001,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhavnagar M K Road ',364001,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhavnagar Kumbharwada ',364006,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhavnagar Khargate ',364001,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhavnagar K Nagar ',364001,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhavnagar Gogha Circle ',364001,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhavnagar Collectorate ',364001,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhavnagar Chitra ',364004,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhavnagar BPTI ',364002,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhavnagar Bharatnagar ',364002,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhavnagar Anandnagar ',364005,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhavnagar ',364001,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhavda',382433,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Bhavanpura Kampa',383316,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Bhavanivad ',395003,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Bhavanipura',388450,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Bhavanipar',370650,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Bhavangadh',383430,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Bhavandgad',394710,'Bardoli','Vadodara','Gujarat','Dangs','The Dangs','GUJARAT'),('Bhavan \' S College',388225,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Bhavabhi Khijadia',360540,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Bhatwada',394680,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Bhatvas',384330,'Mahesana','Ahmedabad HQ','Gujarat','Satalasana','Mahesana','GUJARAT'),('Bhatvar',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Bhatvadia',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Bhattvadar',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bhattai',396427,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Bhatsimroli',362220,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Bhatsan',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Bhatram',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Bhatpura',388220,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Bhatpur ',391130,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Bhatpur',388260,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Bhatpore',394510,'Surat','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Bhatlai',394517,'Surat','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Bhatiya',362215,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Bhatib',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Bhatia ',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Bhathrot',362620,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Bhathiwada',389160,'Panchmahals','Vadodara','Gujarat','Dohad','Dahod','GUJARAT'),('Bhathi Karmbeli',396165,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Bhathan',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Bhatha ',394510,'Surat','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Bhatha',396310,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Bhatgam',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Bhatfalia',396310,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Bhatera',383245,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Bhatera',387630,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Bhatel',361305,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Bhatasan',382705,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Bhatamal-moti',385010,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Bhat ',382428,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Bhat',382210,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Bhasaria',382732,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Bharvada',360590,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Bharvada',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Bharundi',394130,'Surat','Vadodara','Gujarat','Sayan','Surat','GUJARAT'),('Bharudia',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Bharuch ',392001,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Bharthana',392210,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Bharthana',391244,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Bharthana',395007,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Bharoli',364120,'Bhavnagar','Rajkot','Gujarat','Gogha','Bhavnagar','GUJARAT'),('Bharodi',388260,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Bharoda',388210,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Bharkunda',387430,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Bharatpur',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Bharasar',370030,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Bharapar',370660,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Bharapar',370427,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Bharapar',370625,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Bharana',361010,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Bharan',394125,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Bharamkheda',389160,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Bharadva',385570,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Bharadia',393135,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Bharada',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Bharad',363320,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Bhanvad ',360510,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Bhanthala',388255,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Bhanpur',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Bhanpur',383410,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Bhanpur',389175,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Bhanmer',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Bhankoda',382140,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Bhankhokhri',361306,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Bhankhara',383460,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Bhankhar',384170,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Bhankhal',364120,'Bhavnagar','Rajkot','Gujarat','Gogha','Bhavnagar','GUJARAT'),('Bhankh',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Bhanjana',385310,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Bhaniara',391510,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Bhangor',360515,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Bhangadh',382455,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Bhaner',387630,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Bhandval',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Bhandut',395005,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Bhanduri',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Bhandu ',384120,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Bhandriya Mota',365610,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bhandotra',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Bhandoi',389115,'Panchmahals','Vadodara','Gujarat','Morva Hadaf','Panch Mahals','GUJARAT'),('Bhandariya ',364050,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Bhandariya',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Bhandariya',364505,'Bhavnagar','Rajkot','Gujarat','Gariyadhar','Bhavnagar','GUJARAT'),('Bhandaria Nana',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bhandaria',360025,'Rajkot','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Bhandaria',361306,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Bhanasimal',389172,'Panchmahals','Vadodara','Gujarat','Santrampur','Dahod','GUJARAT'),('Bhanada',370645,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Bhambha',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Bhamaria',389360,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Bhamar',364530,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bhamaiya',389120,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Bhamaiya',394335,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Bhamadia',393125,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Bhalvav',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bhalusana',384330,'Mahesana','Ahmedabad HQ','Gujarat','Satlasana','Mahesana','GUJARAT'),('Bhalpara',362268,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Bhalot',370130,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Bhalod(Vadodara)',393105,'Bharuch','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Bhalkhet',394715,'Bardoli','Vadodara','Gujarat','Ahwa','Surat','GUJARAT'),('Bhalgamda',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Bhalgam',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Bhalgam',362620,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Bhalgam',365440,'Amreli','Rajkot','Gujarat','Bagasara','Amreli','GUJARAT'),('Bhalgam',385560,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Bhalgam',385421,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Bhalej ',388205,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Bhalania',389340,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Bhalak',384315,'Mahesana','Ahmedabad HQ','Gujarat','Visnagar','Mahesana','GUJARAT'),('Bhalada',387240,'Kheda','Vadodara','Gujarat','Matar','Anand','GUJARAT'),('Bhalada',388270,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Bhakodar',385505,'Banasanktha','Ahmedabad HQ','Gujarat','Dantiwada','Banaskantha','GUJARAT'),('Bhakharmoti',385510,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Bhakhari',385566,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Bhakhari',385120,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Bhaka',391152,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Bhairavnath Road ',380028,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Bhaily ',391410,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Bhailakui',387610,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Bhagwa',394530,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Bhagvanpura',394246,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Bhagod',396020,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Bhagat Khijadia',360540,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Bhagal (P)',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Bhagal (J)',385001,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Bhagal ',395003,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Bhagal',396385,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Bhagadia',370001,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Bhadvav',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Bhadvana',382775,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Bhadva',360030,'Gondal','Rajkot','Gujarat','Kotda','Rajkot','GUJARAT'),('Bhadula',362620,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Bhadukiya Mota',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Bhaduka',363510,'Surendranagar','Rajkot','Gujarat','Muli','Surendra Nagar','GUJARAT'),('Bhadthar ',361306,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Bhadroli Khurd',389320,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Bhadrod ',364295,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Bhadrod',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Bhadrewadi',385560,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Bhadreshwar',370410,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Bhadreshi',363040,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Bhadresar',383110,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Bhadraval',364150,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Bhadravadi',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Bhadrasa',388230,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Bhadran ',388530,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Bhadramali',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Bhadrala',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Bhadrada',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Bhadra',360405,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Bhadra',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Bhadra',370625,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Bhadol',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Bhadli-kotha',385505,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Bhadli (Jhat)',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Bhadli',370675,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Bhadli',364240,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Bhadli',364750,'Gondal','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Bhadla Nana',364720,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Bhadkodra',392155,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Bhadkhadabar',389180,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Bhadkad',387380,'Kheda','Vadodara','Gujarat','Sojitra','Kheda','GUJARAT'),('Bhadiyadhar',362560,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Bhadiyad',363642,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Bhadiad ',382463,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Bhadi',394115,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Bhader ',365645,'Amreli','Rajkot','Gujarat','Dhari','Amreli','GUJARAT'),('Bhader',360410,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Bhadena',382775,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Bhadeli Jagalala',396030,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Bhadeli',396030,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Bhadbhut',392012,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Bhadbhunja',394375,'Bardoli','Vadodara','Gujarat','Uchchhal','Surat','GUJARAT'),('Bhadbhid',364313,'Bhavnagar','Rajkot','Gujarat','Vallbhipur','Bhavnagar','GUJARAT'),('Bhadath',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Bhadarwa ',391780,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Bhadarwa',391121,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Bhadara',391445,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Bhadana',382140,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Bhadam',393145,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Bhadala',360050,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Bhadajalia',360421,'Gondal','Rajkot','Gujarat','Dhoraji','Rajkot','GUJARAT'),('Bhadaj',380060,'Gandhinagar','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Bhadai Moti',370465,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Bhada',362730,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bhad',365650,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bhad',360576,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Bhachunda',370645,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Bhachediya',383316,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Bhachau ',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Bhachalva',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Bhachali',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Bhacha',362560,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Bhabhar ',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Bevta',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Betawada',387650,'Kheda','Vadodara','Gujarat','Kapadvanj','Kheda','GUJARAT'),('Bet ',361330,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Besna',393040,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Berna',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Beraja Pasaya',361110,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Beraja Fala',361011,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Beraja Bhalsan',361013,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Beraja',361305,'Jamnagar','Rajkot','Gujarat','Kahbhalia','Jamnagar','GUJARAT'),('Beraja',370405,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Berachiya',370650,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Ber moti',370511,'Kutch','Rajkot','Gujarat','Kachchh','Kachchh','GUJARAT'),('Bepadar',384272,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Benap',385570,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Belyo',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Belampur',364290,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Bela',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Bela',364150,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Bela',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Behrampura ',380022,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Behdaj',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Beh',361310,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Bedva',388320,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Bedla',360025,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Bedkuvanajik',394650,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Bedkuvadoor',394360,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Bedkuva',394340,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Bediya',362565,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Bedia',391168,'Vadodara East','Vadodara','Gujarat','Kawant','Vadodara','GUJARAT'),('Bedi(Rajkot)',360003,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Bedi( Tankara)',363650,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Bedi ',361009,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Bedhiya',389310,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Bedeshwar ',361002,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Bedchit',394630,'Bardoli','Vadodara','Gujarat','NA','Surat','GUJARAT'),('Bedasma Mumanvas',384330,'Mahesana','Ahmedabad HQ','Gujarat','Satlasana','Mahesana','GUJARAT'),('Bechri',388220,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Becharaji ',384210,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Bayath',370475,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Bayal Dhankhrol',383316,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Bayad ',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Bavsar',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Bavra',387130,'Kheda','Vadodara','Gujarat','Mahemdabad','Kheda','GUJARAT'),('Bavlu',382165,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Bavli',363310,'Surendranagar','Rajkot','Gujarat','Dhrangadhra','Surendra Nagar','GUJARAT'),('Bavla Market Yard ',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Bavla ',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Bavka',389152,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Bavaria',391250,'Vadodara East','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Bavaliary',382455,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Bavalchudi',385210,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Bavakhakharia',361162,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Bavada',365565,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bava Pipaliya',360360,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Baug',370455,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Batakvada',389172,'Panchmahals','Vadodara','Gujarat','Santrampur','Dahod','GUJARAT'),('Basu',385520,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Baspa',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Baska',389350,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Basana',384001,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Basan',382355,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Barwala Jam',365435,'Amreli','Rajkot','Gujarat','Lathi','Amreli','GUJARAT'),('Barwala Ghelasha ',382450,'Gandhinagar','Ahmedabad HQ','Gujarat','Barwala','Ahmedabad','GUJARAT'),('Barwala',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Barvav',383430,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Barvala-bavishi',365450,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Barvala-baval',365480,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Barvala Galath',362020,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Barvala',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Barumal',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Barula',362255,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Bartad',394240,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Bartad',396051,'Valsad','Vadodara','Gujarat','Vansda','Valsad','GUJARAT'),('Bartad',396590,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Barsol',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Barpuda',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Barpatoli',365560,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Baroliya',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Baroli',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Baroi',370421,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Barnoli',383335,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Barman-nana',365545,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Barkhandhia',394730,'Bardoli','Vadodara','Gujarat','Dang','The Dangs','GUJARAT'),('Barkatura',393025,'Bharuch','Vadodara','Gujarat','Sagbara','Narmada','GUJARAT'),('Barkal',391105,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Baria',382308,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Bareja(Ahmedabad)',382425,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dasroi','Ahmedabad','GUJARAT'),('Bardoli-koti',382305,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Bardoli ',394601,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Bardipada',394715,'Bardoli','Vadodara','Gujarat','Ahwa','Surat','GUJARAT'),('Bardipada',394635,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Barbtana',365560,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Barbodhan',395005,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Baraya',370415,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Baravad',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Barasado',394310,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Baranpura ',390001,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Baranda',370511,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Barai',396145,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Baradiya',362120,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Baradiya',360452,'Gondal','Rajkot','Gujarat','Jamkandorna','Rajkot','GUJARAT'),('Baradia',361335,'Jamnagar','Rajkot','Gujarat','Okhamandal','Jamnagar','GUJARAT'),('Bara Mota',370660,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Bara',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Bar',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Bar',388265,'Anand','Vadodara','Gujarat','Birpur','Kheda','GUJARAT'),('Bar',389140,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Bapupura',382845,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Bapunagar ',380024,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Bapotia',389370,'Panchmahals','Vadodara','Gujarat','Holol','Panch Mahals','GUJARAT'),('Bapodar',360570,'Porbandar','Rajkot','Gujarat','Ranavav','Porbandar','GUJARAT'),('Bapla',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Bapada',364150,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Banugar Moti',361120,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Bantwa Subhash Road ',362620,'Porbandar','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Bantwa ',362620,'Porbandar','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Bantva-devli',365480,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bantia',362610,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Banthiwada',383350,'Sabarkantha','Ahmedabad HQ','Gujarat','Meghraj','Sabarkantha','GUJARAT'),('Bankodi',361315,'Jamnagar','Rajkot','Gujarat','Kalyanpur','Jamnagar','GUJARAT'),('Bankhor',383240,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Baniyari',370020,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Bangavadi',363650,'Rajkot','Rajkot','Gujarat','Tankara','Rajkot','GUJARAT'),('Bangapura',391145,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Banga',361013,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Banejada',388580,'Kheda','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Bandra',360330,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Bandiyana Talav',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Bandiya',370620,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Bandibar',389140,'Panchmahals','Vadodara','Gujarat','Dohad','Dahod','GUJARAT'),('Bandhvad',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Bandhiya',360330,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Bandharda',362565,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Bandhani ',388410,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Bandhala',362110,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Bandhadi',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Bamti',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Bamsara',382240,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Bamroli',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Bamroli',385360,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Bamroli',382145,'Gandhinagar','Ahmedabad HQ','Gujarat','Detrioj-rampura','Ahmedabad','GUJARAT'),('Bamroli',394210,'Surat','Vadodara','Gujarat','Chorasi','Surat','GUJARAT'),('Bamroli',387345,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Bamroli',391125,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Bamroda',389230,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Bamosana',384120,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Bamnoj',385110,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Bamni',394335,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Bamnasa Gir',362140,'Junagadh','Rajkot','Gujarat','Talala','Junagadh','GUJARAT'),('Bamnasa Ghed',362625,'Porbandar','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Bamna ',383240,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Bambhaniya',365460,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bambhania',364280,'Bhavnagar','Rajkot','Gujarat','Mahuva','Bhavnagar','GUJARAT'),('Bambhan',364710,'Bhavnagar','Rajkot','Gujarat','Botad','Bhavnagar','GUJARAT'),('Bambhadai',370475,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Bamanvel',396409,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Bamanvada',362240,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Bamanvad',383250,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Bamanva',382765,'Surendranagar','Rajkot','Gujarat','Dasdaa','Surendra Nagar','GUJARAT'),('Bamanva',388580,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Bamanva',384355,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Bamangam ',388520,'Anand','Vadodara','Gujarat','Anklav','Anand','GUJARAT'),('Bamangam',388180,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Bamangam',360540,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Bamangadh',362030,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Bamanbor',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Baman Gam',391243,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Bamalla',393120,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Balvada',396521,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Balva',360530,'Jamnagar','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Balva',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Baluntri',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Balundra',385135,'Banasanktha','Ahmedabad HQ','Gujarat','Amirgadh','Banaskantha','GUJARAT'),('Balsasan',382145,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Balpur',394655,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Balota',394810,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Balot',362610,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Balol ',384410,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Balol',363425,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Balohondi',396126,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Balodhar',385530,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Balodhan',385320,'Banasanktha','Ahmedabad HQ','Gujarat','Bhabhar','Banaskantha','GUJARAT'),('Balitha',396191,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Balisana ',384110,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Balisana',383205,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Balinta',387240,'Kheda','Vadodara','Gujarat','Sojitra','Anand','GUJARAT'),('Balethi',394440,'Surat','Vadodara','Gujarat','Zankhvav','Surat','GUJARAT'),('Baleta',383462,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Baleshwar ',394317,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Balel-piparia',365460,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Balej',362230,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Baldhoi',360060,'Rajkot','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Baldana',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Baldana',382240,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Balda',396125,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Balda',394340,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Balasar',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Balasar',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Balapur',365456,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Balapar -b',370650,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Balambhadi',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Balambha ',361240,'Jamnagar','Rajkot','Gujarat','Jodiya','Jamnagar','GUJARAT'),('Balaiya',389190,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Balagam',362220,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Baladva',393130,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Baladia ',370427,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Balad',384325,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Balachod Nani',370650,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Balachod Moti',370650,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Balachadi ',361230,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Bala',363030,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Bakula Dhanej',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Bakrol ',388315,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Bakrol',382210,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Bakrol',389365,'Panchmahals','Vadodara','Gujarat','Ghoghmba','Panch Mahals','GUJARAT'),('Bakrol',382430,'Ahmedabad City','Ahmedabad HQ','Gujarat','Dascroi','Ahmedabad','GUJARAT'),('Bakrol',390019,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Bakrana',382170,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Bakor ',389232,'Panchmahals','Vadodara','Gujarat','Khanpur','Panch Mahals','GUJARAT'),('Bakkhar',389120,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Bakharla',360579,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Bakhalvad',360050,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Bakarthali',363040,'Surendranagar','Rajkot','Gujarat','Wadhwancity','Surendra Nagar','GUJARAT'),('Bajwa ',391310,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Bajud',364210,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Bajipura ',394690,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Bajipura',388210,'Anand','Vadodara','Gujarat','NA','Anand','GUJARAT'),('Bajarwada',389170,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Bajarda',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Bajarangpura',363110,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Bajana ',382745,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Bajana',361305,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Baiyak',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Baiwada',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Baina',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Baid',361006,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Bahutha',391775,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Bahruch R.S ',392001,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Bahruch City ',392001,'Bharuch','Vadodara','Gujarat','Bahruch','Bharuch','GUJARAT'),('Bahiyal ',382308,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Bahi',389001,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Bahej',396040,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Bahediya',383255,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Bahedaraipura',394630,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Bahadurpur',364760,'Bhavnagar','Rajkot','Gujarat','NA','Bhavnagar','GUJARAT'),('Bahadarpur(Vadodara)',391125,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Bagwada',396185,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Bagvadar ',360590,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Bagumara',394305,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Bagoya',364522,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Bagodara',382230,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Bagdu ',362263,'Junagadh','Rajkot','Gujarat','Junagadh','Junagadh','GUJARAT'),('Bagdana',364145,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Bagathala',363641,'Rajkot','Rajkot','Gujarat','Morbi','Rajkot','GUJARAT'),('Bagasra ',365440,'Amreli','Rajkot','Gujarat','Bagasara','Amreli','GUJARAT'),('Bagasara S.R. ',365440,'Amreli','Rajkot','Gujarat','Bagasara','Amreli','GUJARAT'),('Bagasara Ghed',362620,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Bagadhra',360480,'Gondal','Rajkot','Gujarat','Jamjodhpur','Jamnagar','GUJARAT'),('Bagad',382255,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Badpura',382845,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Badoli ',383410,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Badol',383434,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Badodara',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Badodara',393030,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Badodara',383305,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Badodar',362229,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Badhada ',364522,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Badarpura',385520,'Banasanktha','Ahmedabad HQ','Gujarat','Vadgam','Banaskantha','GUJARAT'),('Badarpura',383335,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Badarpur',384355,'Mahesana','Ahmedabad HQ','Gujarat','Vadnagar','Mahesana','GUJARAT'),('Badarpur',387635,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Badarkha',382260,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Badargadh',385410,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Badargadh',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Badapura',388205,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Badanpar',361250,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Badanpar',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Badalpur',388550,'Kheda','Vadodara','Gujarat','Khambhat','Anand','GUJARAT'),('Badalpar',370145,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Bada',370475,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Bada',361110,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Bachkaria',389240,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Bachar',391244,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Babsar',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Babrol',389260,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Babriyadhar',365560,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Babra(Amreli)',365421,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Babra Gir',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Babra',385360,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Bablia',389232,'Panchmahals','Vadodara','Gujarat','Khanpur','Panch Mahals','GUJARAT'),('Babda',393130,'Bharuch','Vadodara','Gujarat','Valia','Surat','GUJARAT'),('Babarkot',365540,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Babarkhadak',396126,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Babarghat',394375,'Bardoli','Vadodara','Gujarat','Uchchhal','Surat','GUJARAT'),('Babapur ',365610,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Azad Society ',380015,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Ayavej',364510,'Bhavnagar','Rajkot','Gujarat','NA','Bhavnagar','GUJARAT'),('Awaniya',364002,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Avidha ',393017,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Avdha',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Avania',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Avakhal',391250,'Vadodara East','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Avadar',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Avada Falia',396439,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Atul ',396020,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Attarsumba ',387610,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('ATPS Nani Chher ',370602,'Kutch','Rajkot','Gujarat','Lakhpat','Kachchh','GUJARAT'),('Atodara',394130,'Surat','Vadodara','Gujarat','Sayan','Surat','GUJARAT'),('Atladara ',390012,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Atkot ',360040,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Atkhol',393130,'Bharuch','Vadodara','Gujarat','Valia','Bharuch','GUJARAT'),('Atkeshwar',393151,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Athwalines ',395001,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Athwa ',395007,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Athavali',391140,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Athadungri',391170,'Vadodara East','Vadodara','Gujarat','Kawant','Vadodara','GUJARAT'),('Atgam ',396045,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Atarsumba',383460,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Atali',391244,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Atali',392130,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Atak Pardi',396007,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Asura',396050,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Astol',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Astagam',396433,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Asta',394320,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Asta',393030,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Asota Mota',361305,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Asoj',391745,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Asoj',391510,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Asodar',388307,'Anand','Vadodara','Gujarat','Anklav','Anand','GUJARAT'),('Asodar',385565,'Banasanktha','Ahmedabad HQ','Gujarat','Tharad','Banaskantha','GUJARAT'),('Asnad',394540,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Asna',396415,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Asma',396125,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Aslona',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Aslali ',382427,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Asjol',384410,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Ashram Road -Nadiad ',387001,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Ashram Road ',380009,'Ahmedabad City','Ahmedabad HQ','Gujarat','City Ahmedabad','Ahmedabad','GUJARAT'),('Ashram Chakar',370105,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Ashoknagar',382140,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Ashipura',388205,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Ashiavadar',361325,'Jamnagar','Rajkot','Gujarat','Jamkalyanpur','Jamnagar','GUJARAT'),('Ashi',388130,'Anand','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Ashapar',370655,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Asha',393120,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Asarwa Ext South ',380024,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Asarwa Chakla ',380016,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Asarma',388510,'Anand','Vadodara','Gujarat','Anklav','Anand','GUJARAT'),('Asarma',394810,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Asaram',394405,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Asarada',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Asara',385575,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Asar',391168,'Vadodara East','Vadodara','Gujarat','Ch.udepur','Vadodara','GUJARAT'),('Asamli',387530,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Asambia Mota',370485,'Kutch','Rajkot','Gujarat','Mandvi','Kachchh','GUJARAT'),('Asalgam',382150,'Gandhinagar','Ahmedabad HQ','Gujarat','Viramgam','Ahmedabad','GUJARAT'),('Asai',383235,'Sabarkantha','Ahmedabad HQ','Gujarat','Vadali','Sabarkantha','GUJARAT'),('Arsodia',383225,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Aroda',383110,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Arnitimba',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Arni',360450,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Arnej',362725,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Arnej',382230,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Arnai',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Arla',361160,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Arkhi',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Arjansukh',365480,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Arjansar',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Aritha',384240,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Arikhana',370645,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Arikhana',361170,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Ariana',395005,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Argama',392012,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Arethi',393130,'Bharuch','Vadodara','Gujarat','Valia','Vadodara','GUJARAT'),('Areth',394170,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Arera',387320,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Arena',362250,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Ardoi',360030,'Gondal','Rajkot','Gujarat','Kotda Sangani','Rajkot','GUJARAT'),('Ardi',388450,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Arambhada',361345,'Jamnagar','Rajkot','Gujarat','Khambhalia','Jamnagar','GUJARAT'),('Aral Moti',370665,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Arak Sisodra',396475,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Arad',389350,'Panchmahals','Vadodara','Gujarat','Halol','Panch Mahals','GUJARAT'),('Arablush',361280,'Jamnagar','Rajkot','Gujarat','Lalpur','Jamnagar','GUJARAT'),('Apruji',387610,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Anvarpura',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Anumala ',394651,'Bardoli','Vadodara','Gujarat','Vyara','Tapi','GUJARAT'),('Antroli',383305,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Antroli',385010,'Banasanktha','Ahmedabad HQ','Gujarat','Palanpur','Banaskantha','GUJARAT'),('Antroli',394170,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Antroli',387570,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Antroli',387365,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Antroli',362240,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Antroli',394150,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Antroli',394325,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Antoli',391761,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Antisar Gat- Kpdvj ',387620,'Kheda','Vadodara','Gujarat','Kapadvanj','Kheda','GUJARAT'),('Antisar',387620,'Kheda','Vadodara','Gujarat','NA','Kheda','GUJARAT'),('Anti',391445,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Antela',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Dahod','GUJARAT'),('Antarjar',370205,'Kutch','Rajkot','Gujarat','Gandhidham','Kachchh','GUJARAT'),('Antapur',394635,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Antalwada',389240,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Antalia ',396325,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Ansol',383251,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Ansodar',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Anor',392025,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Anodia',382855,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Ankolali',364760,'Bhavnagar','Rajkot','Gujarat','NA','Bhavnagar','GUJARAT'),('Ankodod',394410,'Surat','Vadodara','Gujarat','Mangrol','Surat','GUJARAT'),('Ankodia',391330,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Ankleshwar RS ',393001,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Ankleshwar IE ',393002,'Bharuch','Vadodara','Gujarat','Ankleshwar','Vadodara','GUJARAT'),('Ankleshwar ',393001,'Bharuch','Vadodara','Gujarat','Ankleshwar','Bharuch','GUJARAT'),('Anklav ',388510,'Anand','Vadodara','Gujarat','Anklav','Anand','GUJARAT'),('Anklash',396051,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Anklas',396235,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Ankhol',390019,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Ankhi',392150,'Bharuch','Vadodara','Gujarat','Jambusar','Surat','GUJARAT'),('Ankevaliya',363421,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Ankalva',393030,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Ankaliyara',384330,'Mahesana','Ahmedabad HQ','Gujarat','Satlasana','Mahesana','GUJARAT'),('Ankalia',389240,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Ankala',383410,'Sabarkantha','Ahmedabad HQ','Gujarat','Idar','Sabarkantha','GUJARAT'),('Ankadia-nana',365620,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Anjoli',393130,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Anjlav',396055,'Valsad','Vadodara','Gujarat','Valsad','Valsad','GUJARAT'),('Anjesar',391775,'Vadodara West','Vadodara','Gujarat','Savli','Vadodara','GUJARAT'),('Anjar Savasar Naka ',370110,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Anjar ',370110,'Kutch','Rajkot','Gujarat','Anjar','Kachchh','GUJARAT'),('Anjar',362510,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Anjanwa',389110,'Panchmahals','Vadodara','Gujarat','Santrampur','Panch Mahals','GUJARAT'),('Aniyor Kampa',383345,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Aniyor',383345,'Sabarkantha','Ahmedabad HQ','Gujarat','Malpur','Sabarkantha','GUJARAT'),('Aniyari',360570,'Porbandar','Rajkot','Gujarat','Ranavav','Porbandar','GUJARAT'),('Aniyadri',391160,'Vadodara East','Vadodara','Gujarat','Pavijetpur','Vadodara','GUJARAT'),('Aniyad',389210,'Panchmahals','Vadodara','Gujarat','Shehera','Panch Mahals','GUJARAT'),('Anita',394110,'Surat','Vadodara','Gujarat','Olpad','Surat','GUJARAT'),('Aniod',383305,'Sabarkantha','Ahmedabad HQ','Gujarat','Talod','Sabarkantha','GUJARAT'),('Anindra',363110,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Anika',389175,'Panchmahals','Vadodara','Gujarat','Jhalod','Dahod','GUJARAT'),('Anida Vachhra',360070,'Gondal','Rajkot','Gujarat','Kotda','Rajkot','GUJARAT'),('Anida Bhalodi',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Anida',364270,'Bhavnagar','Rajkot','Gujarat','Palitana','Bhavnagar','GUJARAT'),('Anida',364740,'Bhavnagar','Rajkot','Gujarat','Gadhada Sn','Bhavnagar','GUJARAT'),('Anida',365450,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Anida',365635,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Aniali Bhimji',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Aniali ( K )',382245,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Aniala',362215,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Anguthan',391107,'Vadodara East','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Anguthala',382305,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Angiya Mota',370675,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Angareshwar',392030,'Bharuch','Vadodara','Gujarat','Bharuch','Vadodara','GUJARAT'),('Angam',396155,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Angadi',388250,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Angadh',391330,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Androkha',383460,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Andheri',389140,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Andhatri',394630,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Andej',382115,'Gandhinagar','Ahmedabad HQ','Gujarat','Sanand','Ahmedabad','GUJARAT'),('Andada',393010,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Ancheli',396310,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Anawada',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Anaval ',396510,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Anastu',391240,'Vadodara West','Vadodara','Gujarat','Karjan','Vadodara','GUJARAT'),('Anara',387630,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Anapur Chhota',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Anandsar',370610,'Kutch','Rajkot','Gujarat','Bhuj','Kachchh','GUJARAT'),('Anandpura',391761,'Vadodara West','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Anandpur Bhal',363425,'Surendranagar','Rajkot','Gujarat','Limbdi','Surendra Nagar','GUJARAT'),('Anandpur Bhadla',363520,'Surendranagar','Rajkot','Gujarat','Chotila','Surendra Nagar','GUJARAT'),('Anandpur',362263,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Anandpur',361162,'Jamnagar','Rajkot','Gujarat','Kalavad','Jamnagar','GUJARAT'),('Anandpur',364310,'Bhavnagar','Rajkot','Gujarat','Vallabhipur','Bhavnagar','GUJARAT'),('Anandpar(Morbi)',360003,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Anandpar Navagam',360003,'Rajkot','Rajkot','Gujarat','Rajkot','Rajkot','GUJARAT'),('Anandpar',370165,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Anandpar',370610,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Anandnagar(Ahmedabad)',380007,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Anandi',391110,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Anand Town(Anand) ',388001,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Anand Mahal Road ',395009,'Surat','Vadodara','Gujarat','Choryasi','Surat','GUJARAT'),('Anand Agri Inst(Anand) ',388110,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Anand ',388001,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Anadhara',393110,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Amuldairy(Anand) ',388001,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Amudh',384170,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Amthani',389240,'Panchmahals','Vadodara','Gujarat','Kadana','Panch Mahals','GUJARAT'),('Amrutvel',364521,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Amrutpur',365660,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Amrpur V',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Amroli ',394107,'Surat','Vadodara','Gujarat','Chorasi','Surat','GUJARAT'),('Amroli',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Amrol',388307,'Anand','Vadodara','Gujarat','Anklav','Anand','GUJARAT'),('Amreshwar',391761,'Vadodara West','Vadodara','Gujarat','Dabhoi','Vadodara','GUJARAT'),('Amreli T.R ',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Amreli S R ',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Amreli M P ',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Amreli J P ',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Amreli ',365601,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Amrapura',387130,'Kheda','Vadodara','Gujarat','Mehmedabad','Kheda','GUJARAT'),('Amrapur Gram Bharti',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Amrapur Gir',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Amrapur',362268,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Amrapur',383215,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Amrapuara',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Amrapar',360490,'Gondal','Rajkot','Gujarat','Upleta','Rajkot','GUJARAT'),('Amrapar',360055,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Amran ',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Amrajinamuvada',382305,'Gandhinagar','Ahmedabad HQ','Gujarat','Dehgam','Gandhi Nagar','GUJARAT'),('Amraiwadi ',380026,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Amra',361006,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Ampad',391101,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Amodra',362560,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Amodara',383310,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Amodara',383330,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Amodar',390019,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Amoda',394380,'Bardoli','Vadodara','Gujarat','Nizar','Surat','GUJARAT'),('Amod ',392110,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Amod',388160,'Kheda','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Amli Kasba',396445,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Amli',396125,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Amletha',393140,'Bharuch','Vadodara','Gujarat','Nandod','Narmada','GUJARAT'),('Amleshwar',392012,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Amlai',383315,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Amla',391445,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Amkhuta',394430,'Surat','Vadodara','Gujarat','Vankal','Surat','GUJARAT'),('Amja',382735,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Amiyar',393050,'Bharuch','Vadodara','Gujarat','Sagbara','Narmada','GUJARAT'),('Amiyad',388570,'Kheda','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Amipur',362620,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Aminpura',387620,'Kheda','Vadodara','Gujarat','Kapadvanj','Kheda','GUJARAT'),('Amiapura',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Amdha',396126,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Amchak',394250,'Bardoli','Vadodara','Gujarat','Mahuva','Surat','GUJARAT'),('Ambujanagar ',362715,'Junagadh','Rajkot','Gujarat','Kodinar','Junagadh','GUJARAT'),('Ambos',393110,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Amboli',396230,'Valsad','Vadodara','Gujarat','Umbergaon','Valsad','GUJARAT'),('Ambod',382845,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Ambli ',380058,'Ahmedabad City','Ahmedabad HQ','Gujarat','Daskroi','Ahmedabad','GUJARAT'),('Ambli',382463,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Amblash',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Ambla',364210,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Ambika Society Kalol',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Ambia',394633,'Bardoli','Vadodara','Gujarat','Vyara','Surat','GUJARAT'),('Ambheti',396191,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Ambheti',394352,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Ambheta',395005,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Ambheta',393030,'Bharuch','Vadodara','Gujarat','Hansot','Bharuch','GUJARAT'),('Ambheta',392130,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Ambheta',396409,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Ambecha',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Ambawadi(Bharuch)',393041,'Bharuch','Vadodara','Gujarat','Dediapada','Bharuch','GUJARAT'),('Ambawadi',380006,'Ahmedabad City','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Ambawadi',394430,'Surat','Vadodara','Gujarat','Vankal','Surat','GUJARAT'),('Ambawada',383210,'Sabarkantha','Ahmedabad HQ','Gujarat','Prantij','Sabarkantha','GUJARAT'),('Ambavadi',361305,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Ambavada',384335,'Mahesana','Ahmedabad HQ','Gujarat','Kheralu','Mahesana','GUJARAT'),('Ambavad',362560,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Ambav (Thasra)',388250,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Ambav (Kantharia)B.O',388307,'Anand','Vadodara','Gujarat','Anklav','Anand','GUJARAT'),('Ambasar',383307,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Ambasan',384435,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Ambareli',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Ambardi J',364522,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Ambardi',360515,'Jamnagar','Rajkot','Gujarat','Bhanvad','Jamnagar','GUJARAT'),('Ambardi',360311,'Gondal','Rajkot','Gujarat','Gondal','Rajkot','GUJARAT'),('Ambardi',364750,'Gondal','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Ambardi',365220,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Ambaradi',365630,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Ambapura',391145,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Ambapur',382421,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Ambapani',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Ambamahuda',383422,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Ambaliasan ',382732,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Ambaliara',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Ambaliara',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Ambaliara',382225,'Gandhinagar','Ahmedabad HQ','Gujarat','Dholka','Ahmedabad','GUJARAT'),('Ambalia',362625,'Porbandar','Rajkot','Gujarat','Manavadar','Junagadh','GUJARAT'),('Ambalia',391120,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Ambalia',383345,'Sabarkantha','Ahmedabad HQ','Gujarat','NA','Ahmedabad','GUJARAT'),('Ambali',391115,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Ambali',388307,'Anand','Vadodara','Gujarat','Anklav','Anand','GUJARAT'),('Ambali',389001,'Panchmahals','Vadodara','Gujarat','Godhra','Panch Mahals','GUJARAT'),('Ambali',391760,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Ambala',363655,'Jamnagar','Rajkot','Gujarat','Jodia','Jamnagar','GUJARAT'),('Ambala',362565,'Junagadh','Rajkot','Gujarat','Una','Junagadh','GUJARAT'),('Ambala',362260,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Ambala',384210,'Mahesana','Ahmedabad HQ','Gujarat','Becharaji','Mahesana','GUJARAT'),('Ambala',391165,'Vadodara East','Vadodara','Gujarat','Chhota Udepur','Vadodara','GUJARAT'),('Ambakhunt',389380,'Panchmahals','Vadodara','Gujarat','Devgadh Baria','Panch Mahals','GUJARAT'),('Ambaji ',385110,'Banasanktha','Ahmedabad HQ','Gujarat','Danta','Banaskantha','GUJARAT'),('Ambaigadha',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Ambagam',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Ambagam',393025,'Bharuch','Vadodara','Gujarat','Jhagadia','Bharuch','GUJARAT'),('Ambadungar',391175,'Vadodara East','Vadodara','Gujarat','Kawant','Vadodara','GUJARAT'),('Ambada',391445,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Ambada',396469,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Ambach(Chikhli)',396540,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Ambach (Paria)',396145,'Valsad','Vadodara','Gujarat','Pardi','Valsad','GUJARAT'),('Ambach',394641,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Ambabari',396580,'Navsari','Vadodara','Gujarat','Vansda','Navsari','GUJARAT'),('Ambabar',383246,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Amba Talat ',396051,'Valsad','Vadodara','Gujarat','Dharampur','Valsad','GUJARAT'),('Amba Jungle',396065,'Valsad','Vadodara','Gujarat','Kaprada','Valsad','GUJARAT'),('Amba',394163,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Amba',389180,'Panchmahals','Vadodara','Gujarat','Jahlod','Dahod','GUJARAT'),('Amba',365535,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Amarpur',365450,'Amreli','Rajkot','Gujarat','NA','Amreli','GUJARAT'),('Amarpara Wankaner ',363621,'Rajkot','Rajkot','Gujarat','Wankaner','Rajkot','GUJARAT'),('Amarnagar(Rajkot)',364485,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Amargadh ',364210,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Amardi',370140,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Amardad',360560,'Porbandar','Rajkot','Gujarat','NA','Porbandar','GUJARAT'),('Amara',370605,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Amar',360570,'Porbandar','Rajkot','Gujarat','Kutiyana','Porbandar','GUJARAT'),('Amanpur',392150,'Bharuch','Vadodara','Gujarat','Jambusar','Bharuch','GUJARAT'),('Amalsadi',394163,'Bardoli','Vadodara','Gujarat','Mandvi','Surat','GUJARAT'),('Amalsadi',394350,'Bardoli','Vadodara','Gujarat','Palsana','Surat','GUJARAT'),('Amalsad ',396310,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Amaliyara',390022,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Amaliyara',370150,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Amalgundi',394365,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Amadpore',396445,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Amadhara',396521,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Alwada',385545,'Banasanktha','Ahmedabad HQ','Gujarat','Dhanera','Banaskantha','GUJARAT'),('Alwa',383325,'Sabarkantha','Ahmedabad HQ','Gujarat','Bayad','Sabarkantha','GUJARAT'),('Alwa',391121,'Vadodara East','Vadodara','Gujarat','Tilakwada','Narmada','GUJARAT'),('Alwa',387620,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Alwa',389310,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Alva',391760,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Aluva',382721,'Gandhinagar','Ahmedabad HQ','Gujarat','Kalol','Gandhi Nagar','GUJARAT'),('Althan ',395017,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Alonj',394115,'Bharuch','Vadodara','Gujarat','Anklesvar','Bharuch','GUJARAT'),('Aloda',384205,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Almawadi',393130,'Bharuch','Vadodara','Gujarat','Dediapada','Narmada','GUJARAT'),('Allu',394620,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Allahabad',385340,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Alkapuri ',390007,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Alipore ',396409,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Alindra (Nadiad) ',387115,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Alindra (Matar) ',387510,'Kheda','Vadodara','Gujarat','Matar','Kheda','GUJARAT'),('Alina ',387305,'Kheda','Vadodara','Gujarat','Mahudha','Kheda','GUJARAT'),('Alidhra',362260,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Aliabada ',361110,'Jamnagar','Rajkot','Gujarat','Jamnagar','Jamnagar','GUJARAT'),('Alhadpura',391135,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Algat',394246,'Bardoli','Vadodara','Gujarat','Valod','Surat','GUJARAT'),('Alela',388265,'Anand','Vadodara','Gujarat','Balasinor','Kheda','GUJARAT'),('Alau',382255,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Alarsa ',388543,'Anand','Vadodara','Gujarat','Borsad','Anand','GUJARAT'),('Alang SBY ',364081,'Bhavnagar','Rajkot','Gujarat','Talaja','Bhavnagar','GUJARAT'),('Alampur',382042,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Alampur',382245,'Gandhinagar','Ahmedabad HQ','Gujarat','Ranpur','Ahmedabad','GUJARAT'),('Alampar',364320,'Bhavnagar','Rajkot','Gujarat','Umrala','Bhavnagar','GUJARAT'),('Akwada',364002,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Akrund ',383260,'Sabarkantha','Ahmedabad HQ','Gujarat','Dhansura','Sabarkantha','GUJARAT'),('Akru',382250,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Akri moti',370511,'Kutch','Rajkot','Gujarat','Kachchh','Kachchh','GUJARAT'),('Akoti',394355,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Akota ',390020,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Akona',391150,'Vadodara East','Vadodara','Gujarat','Naswadi','Vadodara','GUJARAT'),('Akolvadi ',362140,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Akoli',385566,'Banasanktha','Ahmedabad HQ','Gujarat','Vav','Banaskantha','GUJARAT'),('Akod',392130,'Bharuch','Vadodara','Gujarat','Vagra','Bharuch','GUJARAT'),('Aklacha',388230,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Aklacha',387430,'Kheda','Vadodara','Gujarat','Mahemdavad','Kheda','GUJARAT'),('Akhodad So',362220,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Akhiyana',382745,'Surendranagar','Rajkot','Gujarat','Dasda','Surendra Nagar','GUJARAT'),('Akhdol',387355,'Kheda','Vadodara','Gujarat','Nadiad','Kheda','GUJARAT'),('Akhaj',382710,'Mahesana','Ahmedabad HQ','Gujarat','Mahesana','Mahesana','GUJARAT'),('Akha',362222,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Akala',362150,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Akala',362245,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Akala',360360,'Gondal','Rajkot','Gujarat','Jetpur','Rajkot','GUJARAT'),('Akala',365430,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Akakheda',391145,'Vadodara East','Vadodara','Gujarat','Sankheda','Vadodara','GUJARAT'),('Ajwa Road ',390019,'Vadodara East','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Ajwa Compound',391510,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Ajupura',388225,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Ajupura',388360,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Ajotha',362268,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Ajol',382810,'Gandhinagar','Ahmedabad HQ','Gujarat','Mansa','Gandhi Nagar','GUJARAT'),('Ajod',391740,'Vadodara West','Vadodara','Gujarat','Vadodara','Vadodara','GUJARAT'),('Ajmer',360055,'Gondal','Rajkot','Gujarat','Jasdan','Rajkot','GUJARAT'),('Ajmavatkot',387610,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Ajitgadh',363330,'Surendranagar','Rajkot','Gujarat','Halvad','Surendra Nagar','GUJARAT'),('Ajimana',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Ajavas',383422,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Ajarpura ',388310,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Ajarai',396360,'Navsari','Vadodara','Gujarat','Gandevi','Navsari','GUJARAT'),('Ajak',362240,'Porbandar','Rajkot','Gujarat','Mangrol','Junagadh','GUJARAT'),('Ajab',362229,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Aiyar',370605,'Kutch','Rajkot','Gujarat','Nakhatrana','Kachchh','GUJARAT'),('Aithor',384170,'Mahesana','Ahmedabad HQ','Gujarat','Unjha','Mahesana','GUJARAT'),('Aida',370655,'Kutch','Rajkot','Gujarat','Abdasa','Kachchh','GUJARAT'),('Ahwadangs ',394710,'Bardoli','Vadodara','Gujarat','Ahwa','The Dangs','GUJARAT'),('Ahmedabad G.P.O. ',380001,'Ahmedabad GPO','Ahmedabad HQ','Gujarat','Ahmadabad City','Ahmedabad','GUJARAT'),('Ahima',388210,'Anand','Vadodara','Gujarat','Umreth','Anand','GUJARAT'),('Agthala',385535,'Banasanktha','Ahmedabad HQ','Gujarat','Disa','Banaskantha','GUJARAT'),('Agol',382165,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Aglod',382870,'Mahesana','Ahmedabad HQ','Gujarat','Vijapur','Mahesana','GUJARAT'),('Agiyali',364260,'Bhavnagar','Rajkot','Gujarat','Sihor','Bhavnagar','GUJARAT'),('Agiya',383270,'Sabarkantha','Ahmedabad HQ','Gujarat','Khedbrahma','Sabarkantha','GUJARAT'),('Agiol',383001,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Agichana',385360,'Patan','Ahmedabad HQ','Gujarat','Radhanpur','Patan','GUJARAT'),('Aghar',384265,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Agavada',389154,'Panchmahals','Vadodara','Gujarat','Dahod','Dahod','GUJARAT'),('Agatrai ',362222,'Junagadh','Rajkot','Gujarat','Keshod','Junagadh','GUJARAT'),('Agaswani',389382,'Panchmahals','Vadodara','Gujarat','Dhanpur','Dahod','GUJARAT'),('Agasvan',394651,'Bardoli','Vadodara','Gujarat','Songadh','Surat','GUJARAT'),('Agasi',396060,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Agas',388130,'Anand','Vadodara','Gujarat','Petlad','Anand','GUJARAT'),('Agarwada',389115,'Panchmahals','Vadodara','Gujarat','Morva Hadaf','Panch Mahals','GUJARAT'),('Agarwada',388270,'Panchmahals','Vadodara','Gujarat','Lunawada','Panch Mahals','GUJARAT'),('Agarwa',388230,'Anand','Vadodara','Gujarat','Thasra','Kheda','GUJARAT'),('Agara',389175,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Agara',389140,'Panchmahals','Vadodara','Gujarat','Limkheda','Dahod','GUJARAT'),('Agar',391121,'Vadodara East','Vadodara','Gujarat','Tilakwada','Vadodara','GUJARAT'),('Aganwada',385555,'Banasanktha','Ahmedabad HQ','Gujarat','Kankrej','Banaskantha','GUJARAT'),('Aganovad ',395003,'Surat','Vadodara','Gujarat','NA','Surat','GUJARAT'),('Afwa',389190,'Panchmahals','Vadodara','Gujarat','Fatepura','Dahod','GUJARAT'),('Afva Isroli',394620,'Bardoli','Vadodara','Gujarat','Bardoli','Surat','GUJARAT'),('Aerodromme ',361003,'Jamnagar','Rajkot','Gujarat','Jodiya','Jamnagar','GUJARAT'),('Advana',360590,'Porbandar','Rajkot','Gujarat','Porbandar','Porbandar','GUJARAT'),('Advala',392110,'Bharuch','Vadodara','Gujarat','Amod','Bharuch','GUJARAT'),('Adval',382460,'Gandhinagar','Ahmedabad HQ','Gujarat','Dhandhuka','Ahmedabad','GUJARAT'),('Adundra',382715,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Adtala',364765,'Bhavnagar','Rajkot','Gujarat','Gadhada','Bhavnagar','GUJARAT'),('Adtala',365430,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Adsang',364522,'Amreli','Rajkot','Gujarat','Amreli','Amreli','GUJARAT'),('Adroda',382220,'Gandhinagar','Ahmedabad HQ','Gujarat','Bavla','Ahmedabad','GUJARAT'),('Adri',362255,'Junagadh','Rajkot','Gujarat','Patan-Veraval','Junagadh','GUJARAT'),('Adrajmoti',382640,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Adraj Merda',382728,'Mahesana','Ahmedabad HQ','Gujarat','Kadi','Mahesana','GUJARAT'),('Adpodra',383276,'Sabarkantha','Ahmedabad HQ','Gujarat','Himatnagar','Sabarkantha','GUJARAT'),('Adol',392240,'Bharuch','Vadodara','Gujarat','Bharuch','Bharuch','GUJARAT'),('Adiya',384255,'Patan','Ahmedabad HQ','Gujarat','Harij','Patan','GUJARAT'),('Adityanagar ',394516,'Surat','Vadodara','Gujarat','Chorasi','Surat','GUJARAT'),('Adityana ',360545,'Porbandar','Rajkot','Gujarat','NA','Porbandar','GUJARAT'),('Adiran',391510,'Vadodara West','Vadodara','Gujarat','Vaghodia','Vadodara','GUJARAT'),('Adipur ',370205,'Kutch','Rajkot','Gujarat','Gandhidham','Kachchh','GUJARAT'),('Adhoi ',370135,'Kutch','Rajkot','Gujarat','Bhachau','Kachchh','GUJARAT'),('Adhewada',364002,'Bhavnagar','Rajkot','Gujarat','Bhavnagar','Bhavnagar','GUJARAT'),('Adhera',383250,'Sabarkantha','Ahmedabad HQ','Gujarat','Modasa','Sabarkantha','GUJARAT'),('Adgam',384245,'Patan','Ahmedabad HQ','Gujarat','Sami','Patan','GUJARAT'),('Adesar ',370155,'Kutch','Rajkot','Gujarat','Rahpar','Kachchh','GUJARAT'),('Adbalka',360110,'Rajkot','Rajkot','Gujarat','Paddhari','Rajkot','GUJARAT'),('Adas ',388305,'Anand','Vadodara','Gujarat','Anand','Anand','GUJARAT'),('Adariyana ',382780,'Surendranagar','Rajkot','Gujarat','Dasada','Surendra Nagar','GUJARAT'),('Adani Port',370421,'Kutch','Rajkot','Gujarat','Mundra','Kachchh','GUJARAT'),('Adalsar',382775,'Surendranagar','Rajkot','Gujarat','Lakhtar','Surendra Nagar','GUJARAT'),('Adalaj ',382421,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('Adajan Dn',395009,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('Adadra ',389341,'Panchmahals','Vadodara','Gujarat','Kalol','Panch Mahals','GUJARAT'),('Adada',396445,'Navsari','Vadodara','Gujarat','Navsari','Navsari','GUJARAT'),('Ada Hathrol',383240,'Sabarkantha','Ahmedabad HQ','Gujarat','Bhiloda','Sabarkantha','GUJARAT'),('Achisara',391250,'Vadodara East','Vadodara','Gujarat','Sinor','Vadodara','GUJARAT'),('Achhod',392110,'Bharuch','Vadodara','Gujarat','NA','Vadodara','GUJARAT'),('Achhidra',362255,'Junagadh','Rajkot','Gujarat','NA','Junagadh','GUJARAT'),('Achhavani',396040,'Navsari','Vadodara','Gujarat','Chikhli','Navsari','GUJARAT'),('Achhari',396105,'Valsad','Vadodara','Gujarat','Umargam','Valsad','GUJARAT'),('Abvel',387650,'Kheda','Vadodara','Gujarat','Kapadwanj','Kheda','GUJARAT'),('Abrama ',396406,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Abrama',394150,'Bardoli','Vadodara','Gujarat','Kamrej','Surat','GUJARAT'),('Abluva',384285,'Patan','Ahmedabad HQ','Gujarat','Patan','Patan','GUJARAT'),('Abiyana',385360,'Patan','Ahmedabad HQ','Gujarat','Santalpur','Patan','GUJARAT'),('Abhva',395007,'Surat','Vadodara','Gujarat','Surat','Surat','GUJARAT'),('Abhripur',387335,'Kheda','Vadodara','Gujarat','Kathlal','Kheda','GUJARAT'),('Abhrampara',364522,'Amreli','Rajkot','Gujarat','Savar Kundla','Amreli','GUJARAT'),('Abhol',391421,'Vadodara West','Vadodara','Gujarat','Padra','Vadodara','GUJARAT'),('Abhlod',389152,'Panchmahals','Vadodara','Gujarat','Garbada','Dahod','GUJARAT'),('Abhapur',383460,'Sabarkantha','Ahmedabad HQ','Gujarat','Vijaynagar','Sabarkantha','GUJARAT'),('Abasana',382120,'Gandhinagar','Ahmedabad HQ','Gujarat','Detroj-rampura','Ahmedabad','GUJARAT'),('Aat ',396403,'Navsari','Vadodara','Gujarat','Jalalpore','Navsari','GUJARAT'),('Aasayadi',389130,'Panchmahals','Vadodara','Gujarat','Devgadbaria','Dahod','GUJARAT'),('Aalidar',362720,'Junagadh','Rajkot','Gujarat','Kodinar','Junagadh','GUJARAT'),('A. K. Road ',395008,'Surat','Vadodara','Gujarat','Surat City','Surat','GUJARAT'),('(Gandhinagar) Sector 9 ',382007,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('(Gandhinagar) Sector 8 ',382007,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('(Gandhinagar) Sector 7 ',382007,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('(Gandhinagar) Sector 6 ',382006,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('(Gandhinagar) Sector 30 ',382030,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('(Gandhinagar) Sector 29 ',382030,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('(Gandhinagar) Sector 28 ',382028,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('(Gandhinagar) Sector 24 ',382024,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('(Gandhinagar) Sector 23 ',382024,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('(Gandhinagar) Sector 22 ',382021,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('(Gandhinagar) Sector 21 ',382021,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('(Gandhinagar) Sector 19 ',382021,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('(Gandhinagar) Sector 17 ',382016,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT'),('(Gandhinagar) Sector 16 ',382016,'Gandhinagar','Ahmedabad HQ','Gujarat','Gandhinagar','Gandhi Nagar','GUJARAT');
/*!40000 ALTER TABLE `pincode_address` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `po_document_catalogue`
--

DROP TABLE IF EXISTS `po_document_catalogue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `po_document_catalogue` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `purchase_order_no` int(11) NOT NULL,
  `date_and_time` datetime NOT NULL,
  `folder_id` int(11) NOT NULL,
  `display_file_name` varchar(50) NOT NULL,
  `original_file_name` varchar(50) NOT NULL,
  `file_path` varchar(100) NOT NULL,
  `document_url` text NOT NULL COMMENT 'save document url with file name',
  `google_drive_file_link` text,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `folder_id` (`folder_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `po_document_catalogue`
--

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

--
-- Table structure for table `po_document_folders`
--

DROP TABLE IF EXISTS `po_document_folders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `po_document_folders` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `purchase_order_no` int(11) NOT NULL,
  `folder_name` varchar(50) NOT NULL,
  `folder_priority` int(11) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `default_folder` enum('Y','N') NOT NULL DEFAULT 'N',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `folder_name` (`folder_name`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `po_document_folders`
--

LOCK TABLES `po_document_folders` WRITE;
/*!40000 ALTER TABLE `po_document_folders` DISABLE KEYS */;
INSERT INTO `po_document_folders` VALUES (0,0,1,0,'PO Documents',1,'Y','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `po_document_folders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `product_ebill_format_master`
--

DROP TABLE IF EXISTS `product_ebill_format_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_ebill_format_master` (
  `format_name` varchar(50) NOT NULL,
  `format_type` enum('csv','excel_identifier','excel_direct','excel_normal') NOT NULL COMMENT 'CSV: values are available in single column separated with some character. Direct: no separate header record, supplier bill number repeated along with item details. Identifier: details appear with identifier such as HTF. Normal: Supplier bill number appears in header row but identifiers are not defined. Provide header row number and data row number',
  `footer_present` enum('Y','N') NOT NULL,
  `headerrow` int(11) NOT NULL,
  `datarow` int(11) NOT NULL,
  `saperator` varchar(1) NOT NULL,
  `Identifiers` varchar(6) NOT NULL,
  `formate_type` enum('general','date') NOT NULL COMMENT 'General when type is general or text and date when typw is date in excel.',
  `expiry_date_format` varchar(20) NOT NULL,
  `bill_date_format` varchar(20) NOT NULL,
  `bill_no` text NOT NULL,
  `bll_date` text NOT NULL,
  `product_id` text NOT NULL,
  `product_name` text NOT NULL,
  `pack` text NOT NULL,
  `batch` text NOT NULL,
  `batch_exp` text NOT NULL,
  `hsn_code` text NOT NULL,
  `qty` text NOT NULL,
  `f_qty` text NOT NULL,
  `sch_amount` text NOT NULL,
  `mrp` text NOT NULL,
  `ptr` text NOT NULL,
  `discount_type` text NOT NULL,
  `discount` text NOT NULL,
  `discount_amount` text NOT NULL,
  `sgst` text NOT NULL,
  `cgst` text NOT NULL,
  `igst` text NOT NULL,
  `scheme_credit_amount` text NOT NULL,
  `tcs` text NOT NULL,
  PRIMARY KEY (`format_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_ebill_format_master`
--

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

--
-- Table structure for table `product_ebill_transaction_header_tmp`
--

DROP TABLE IF EXISTS `product_ebill_transaction_header_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_ebill_transaction_header_tmp` (
  `trn_fyear` smallint(6) NOT NULL COMMENT 'Transaction Financial Year',
  `store_code` varchar(6) NOT NULL,
  `to_store_code` varchar(6) DEFAULT NULL,
  `trn_type` char(6) NOT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return',
  `trn_id` int(11) NOT NULL,
  `bill_amendment` smallint(6) NOT NULL DEFAULT '0',
  `ref_trn_id` int(11) NOT NULL,
  `receipt_id` int(11) DEFAULT NULL,
  `trn_date` date NOT NULL COMMENT 'Transaction Date',
  `trn_status` char(1) NOT NULL COMMENT 'P - Partial, C - Completed, T - Turned Down (Cancelled)',
  `with_po` enum('Y','N') NOT NULL DEFAULT 'N',
  `purchase_bill_no` varchar(15) DEFAULT NULL COMMENT 'Purchase Bill Number',
  `purchase_order_no` varchar(15) DEFAULT NULL,
  `purchase_order_entity_code` char(6) DEFAULT NULL,
  `purchase_bill_date` date DEFAULT NULL COMMENT 'Purchase Bill Date',
  `supplier_id` smallint(5) unsigned DEFAULT NULL,
  `department_id` tinyint(4) DEFAULT NULL,
  `doctor_id` int(11) DEFAULT NULL COMMENT 'Referring external_doctor_master',
  `patient_id` int(11) DEFAULT NULL COMMENT 'Medicine Issue & Issue Return Transaction has patient information if Pharmacy module is integrated',
  `opd_reg_id` bigint(20) DEFAULT NULL COMMENT 'Medicine Issue & Issue Return Transaction has patient information if Pharmacy module is integrated',
  `ipd_reg_id` bigint(20) DEFAULT NULL COMMENT 'Medicine Issue & Issue Return Transaction has patient information if Pharmacy module is integrated',
  `visit_id` int(11) DEFAULT NULL,
  `ph_cust_id` int(11) DEFAULT NULL,
  `gross_total` float(11,2) NOT NULL COMMENT 'Roll up from child items stored in transaction table',
  `discount_type` enum('A','P') DEFAULT NULL COMMENT 'P - Percentage, A - Amount',
  `discount` float(10,2) DEFAULT NULL COMMENT 'discount applied',
  `discount_amt` float(10,2) NOT NULL COMMENT 'Stores calculated discount amount',
  `round_off` float(5,2) NOT NULL,
  `amount_received` float(10,2) NOT NULL DEFAULT '0.00',
  `is_fully_paid` enum('Y','N') NOT NULL DEFAULT 'Y',
  `is_credit_bill` enum('Y','N') DEFAULT 'N',
  `is_ptr_applicable` enum('N','Y') NOT NULL DEFAULT 'N',
  `is_consignment_dc` enum('Y','N') NOT NULL DEFAULT 'N',
  `is_final_bill_prepared` enum('Y','N') NOT NULL DEFAULT 'N',
  `shipping_other_charges` float(10,2) NOT NULL DEFAULT '0.00',
  `sch_amount` float(9,2) NOT NULL DEFAULT '0.00',
  `tcs_amount` float(9,2) NOT NULL DEFAULT '0.00',
  `total` float(10,2) NOT NULL COMMENT 'Net Total',
  `cgst_amt` float(10,2) DEFAULT '0.00',
  `sgst_amt` float(10,2) DEFAULT '0.00',
  `igst_amt` float(10,2) DEFAULT '0.00',
  `invoice_amt` float(11,2) DEFAULT '0.00',
  `remarks` varchar(50) NOT NULL COMMENT 'Remarks, if any. Mandatory if return transaction type',
  `net_taxable_amt` float(11,2) DEFAULT '0.00',
  `is_exported_to_xml` enum('Y','N') NOT NULL DEFAULT 'N',
  `payment_mode` varchar(10) NOT NULL DEFAULT 'CSH',
  `payment_agency` varchar(30) DEFAULT NULL,
  `payment_number` varchar(30) DEFAULT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`trn_fyear`,`store_code`,`trn_type`,`trn_id`),
  KEY `FK_suppliermaster` (`supplier_id`),
  KEY `trn_date` (`trn_date`),
  KEY `trn_type` (`trn_type`,`trn_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_ebill_transaction_header_tmp`
--

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

--
-- Table structure for table `product_ebill_transaction_tmp`
--

DROP TABLE IF EXISTS `product_ebill_transaction_tmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_ebill_transaction_tmp` (
  `trn_fyear` smallint(6) NOT NULL COMMENT 'Transaction Financial Year',
  `trn_type` char(6) NOT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return ',
  `trn_id` int(11) NOT NULL,
  `trn_sr_no` smallint(6) NOT NULL,
  `bill_amendment` smallint(6) NOT NULL DEFAULT '0',
  `ref_trn_type` varchar(5) NOT NULL,
  `ref_trn_id` int(11) NOT NULL,
  `ref_trn_date` date NOT NULL,
  `indent_id` int(11) DEFAULT NULL,
  `product_id` varchar(15) NOT NULL COMMENT 'product_master - product_id',
  `batch_no` varchar(40) DEFAULT NULL,
  `product_tracking_sr_no` varchar(25) DEFAULT NULL,
  `batch_exp` date DEFAULT NULL COMMENT 'To store batch expiry month and year (it will store date as 1st of that given month)',
  `purchase_uom` tinyint(3) unsigned NOT NULL DEFAULT '1',
  `quantity` float NOT NULL,
  `free_quantity` float DEFAULT '0',
  `quantity_per_unit_suom` float NOT NULL,
  `return_quantity` float DEFAULT '0',
  `sch_amt` float(9,2) DEFAULT '0.00' COMMENT 'Scheme Amount entered by user',
  `original_mrp` float(9,2) DEFAULT '0.00',
  `mrp` float(9,2) DEFAULT '0.00' COMMENT 'For trn_typ=''P'' its mrp entered by user, for trn_type=''I'' its mrp_per_unit',
  `price` float(9,4) DEFAULT '0.0000' COMMENT 'For trn_type=''P'' its price for PUOM and for trn_type=''I'' it will be kept 0 ',
  `price_per_unit_suom` float(9,4) NOT NULL COMMENT 'Price Per Unit based on stock unit of measure',
  `price_per_unit_suom_wo_gst` float(9,4) NOT NULL DEFAULT '0.0000',
  `is_reorder_required` enum('Y','N') NOT NULL DEFAULT 'N',
  `ledger_type` enum('C','D') NOT NULL,
  `discount_type` enum('A','P') DEFAULT NULL COMMENT 'P - Percentage, A - Amount',
  `discount` float(9,2) DEFAULT NULL,
  `discount_amt` float(9,2) NOT NULL COMMENT 'IF discount_type = P     discount_amt = net_rate * (Discount%/100) If discount_type = A     discount_amt = Discount',
  `taxable_amt` float(9,2) DEFAULT '0.00' COMMENT '((price * qty) - sch_amt) - discount where discount is to be calculated based on discount type',
  `net_rate` float(9,2) DEFAULT '0.00' COMMENT 'net_rate = taxable_amt/quantity',
  `sgst_percentage` float(6,2) NOT NULL DEFAULT '0.00',
  `sgst_value` float(9,2) NOT NULL DEFAULT '0.00' COMMENT 'sgst_value = taxable_amt * (gst_percentage / 100)',
  `cgst_percentage` float(6,2) NOT NULL DEFAULT '0.00',
  `cgst_value` float(9,2) NOT NULL DEFAULT '0.00' COMMENT 'cgst_value = taxable_amt * (gst_percentage / 100)',
  `igst_percentage` float(6,2) NOT NULL DEFAULT '0.00',
  `igst_value` float(9,2) NOT NULL DEFAULT '0.00' COMMENT 'igst_value = taxable_amt * (gst_percentage / 100)',
  `total` float(10,2) NOT NULL DEFAULT '0.00' COMMENT 'For trn_type = ''P'' => total = price * quantity For trn_type = ''I'' => (price * quantity) - discount',
  `landing_rate` float(9,2) DEFAULT '0.00' COMMENT 'For trn_type=''P=> landing_cost/quantity, For trn_type=''I'' 0',
  `landing_cost` float(10,2) DEFAULT '0.00' COMMENT 'For trn_type=''P'' => taxable_amt + GST, For trn_type = ''I'' 0',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  UNIQUE KEY `UK_TransactionNo` (`trn_fyear`,`trn_type`,`trn_id`,`trn_sr_no`),
  KEY `FK_product_master_id` (`product_id`),
  KEY `FK_unitmaster_trnpom` (`purchase_uom`),
  KEY `trn_type` (`trn_type`,`trn_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_ebill_transaction_tmp`
--

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

--
-- Table structure for table `product_master`
--

DROP TABLE IF EXISTS `product_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_master` (
  `product_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `product_type` char(1) NOT NULL DEFAULT 'M' COMMENT 'M for Medicine, I for Item, S for Store Items',
  `product_name` varchar(100) NOT NULL COMMENT 'Medicine/Item Name',
  `product_alias_name` varchar(100) DEFAULT '',
  `pack` varchar(50) NOT NULL,
  `productgroup_id` smallint(5) unsigned DEFAULT NULL COMMENT 'productgroup_master',
  `generic_drug_id` smallint(5) unsigned DEFAULT NULL COMMENT 'generic_drug_master',
  `product_barcode` varchar(12) DEFAULT NULL,
  `category_id` tinyint(3) unsigned DEFAULT NULL COMMENT 'category_master',
  `abc_classification` varchar(5) DEFAULT NULL,
  `xyz_classification` varchar(5) DEFAULT NULL,
  `subcategory` varchar(5) DEFAULT NULL,
  `manufacturer_id` smallint(5) unsigned DEFAULT NULL COMMENT 'manufacturer_master',
  `purchase_uom` tinyint(3) unsigned DEFAULT NULL COMMENT 'unit_master - to store puchase unit of measure',
  `stock_uom` tinyint(3) unsigned DEFAULT NULL COMMENT 'unit_master - to store stock unit of measure',
  `conversion_factor` int(11) DEFAULT NULL COMMENT 'conversion factor OR packing size',
  `product_bin_location` varchar(10) DEFAULT NULL COMMENT 'Physical location OR Rack No',
  `product_hsn_code` int(11) DEFAULT NULL COMMENT 'Harmonized commodity description and coding system',
  `product_gst` float NOT NULL,
  `product_reorder_level` int(11) DEFAULT NULL,
  `product_lead_time` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Lead Time for Product',
  `discount_id` tinyint(4) NOT NULL DEFAULT '1',
  `product_is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `mapping_id` varchar(6) NOT NULL COMMENT 'Mapping medicine_master.code',
  `is_auto_created` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Indicates, whether it is created through trigger or manually created.',
  `is_auto_updated` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Indicates, whether it is updated through trigger or manually updated.',
  `is_packsize_updated` enum('Y','N') NOT NULL DEFAULT 'N',
  `is_barcode_applicable` enum('Y','N','NB') NOT NULL DEFAULT 'N' COMMENT 'Y - for individual Product Tracking, N - for Product Tracking, NB - for No Barcode',
  `barcode_sticker_pack_size` int(11) NOT NULL DEFAULT '1',
  `is_narcotic` enum('Y','N') NOT NULL DEFAULT 'N',
  `is_lasa` enum('Y','N') DEFAULT 'N',
  `is_highrisk` enum('Y','N') DEFAULT 'N',
  `is_emergency` enum('Y','N') NOT NULL DEFAULT 'N',
  `is_consumable` enum('Y','N') NOT NULL DEFAULT 'N',
  `is_dpco` enum('Y','N') NOT NULL DEFAULT 'N',
  `product_requested_by` varchar(20) NOT NULL,
  `sl_brand_cd` varchar(2) NOT NULL,
  `sl_grp_cd` varchar(2) NOT NULL,
  `sl_fmly_cd` varchar(2) NOT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  `is_schedule` varchar(15) DEFAULT NULL,
  PRIMARY KEY (`product_id`),
  UNIQUE KEY `product_name` (`product_name`,`category_id`),
  KEY `product_discount` (`discount_id`),
  KEY `FK_manufacturer_master` (`manufacturer_id`),
  KEY `FK_generic_drug_master` (`generic_drug_id`),
  KEY `FK_productgroup_master` (`productgroup_id`),
  KEY `FK_puom` (`purchase_uom`),
  KEY `FK_suom` (`stock_uom`),
  KEY `FK_category_master` (`category_id`),
  CONSTRAINT `FK_category_master` FOREIGN KEY (`category_id`) REFERENCES `category_master` (`category_id`),
  CONSTRAINT `FK_generic_drug_master` FOREIGN KEY (`generic_drug_id`) REFERENCES `generic_drug_master` (`generic_drug_id`),
  CONSTRAINT `FK_manufacturer_master` FOREIGN KEY (`manufacturer_id`) REFERENCES `manufacturer_master` (`manufacturer_id`),
  CONSTRAINT `FK_productgroup_master` FOREIGN KEY (`productgroup_id`) REFERENCES `productgroup_master` (`productgroup_id`),
  CONSTRAINT `FK_puom` FOREIGN KEY (`purchase_uom`) REFERENCES `unit_master` (`unit_id`),
  CONSTRAINT `FK_suom` FOREIGN KEY (`stock_uom`) REFERENCES `unit_master` (`unit_id`),
  CONSTRAINT `product_discount` FOREIGN KEY (`discount_id`) REFERENCES `discount_master` (`discount_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_master`
--

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

--
-- Table structure for table `product_receipt_breakup`
--

DROP TABLE IF EXISTS `product_receipt_breakup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_receipt_breakup` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `trn_fyear` smallint(6) NOT NULL COMMENT 'Transaction Financial Year',
  `store_code` varchar(6) NOT NULL,
  `trn_type` char(6) NOT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return',
  `trn_id` int(11) NOT NULL,
  `bill_amendment` smallint(6) NOT NULL DEFAULT '0',
  `total` float(10,2) NOT NULL COMMENT 'Net Total',
  `invoice_amt` float(11,2) DEFAULT '0.00',
  `remarks` varchar(50) DEFAULT NULL COMMENT 'Remarks, if any. Mandatory if return transaction type',
  `amount_received` float(10,2) NOT NULL,
  `payment_mode` varchar(10) NOT NULL DEFAULT 'CSH',
  `payment_agency` varchar(30) DEFAULT NULL,
  `payment_card_number` varchar(20) DEFAULT NULL,
  `payment_number` varchar(30) DEFAULT NULL,
  `approval_code` varchar(30) DEFAULT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`trn_fyear`,`store_code`,`trn_type`,`trn_id`,`payment_mode`),
  UNIQUE KEY `company_id_2` (`company_id`,`branch_id`,`trn_fyear`,`store_code`,`trn_type`,`trn_id`,`payment_mode`),
  UNIQUE KEY `company_id_3` (`company_id`,`branch_id`,`trn_fyear`,`store_code`,`trn_type`,`trn_id`,`payment_mode`),
  UNIQUE KEY `company_id_4` (`company_id`,`branch_id`,`trn_fyear`,`store_code`,`trn_type`,`trn_id`,`payment_mode`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_receipt_breakup`
--

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

--
-- Table structure for table `product_receipt_breakup_amendment`
--

DROP TABLE IF EXISTS `product_receipt_breakup_amendment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_receipt_breakup_amendment` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `trn_fyear` smallint(6) NOT NULL COMMENT 'Transaction Financial Year',
  `store_code` varchar(6) NOT NULL,
  `trn_type` char(6) NOT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return',
  `trn_id` int(11) NOT NULL,
  `bill_amendment` smallint(6) NOT NULL DEFAULT '0',
  `total` float(10,2) NOT NULL COMMENT 'Net Total',
  `invoice_amt` float(11,2) DEFAULT '0.00',
  `remarks` varchar(50) DEFAULT NULL COMMENT 'Remarks, if any. Mandatory if return transaction type',
  `amount_received` float(10,2) NOT NULL,
  `payment_mode` varchar(10) NOT NULL DEFAULT 'CSH',
  `payment_agency` varchar(30) DEFAULT NULL,
  `payment_card_number` varchar(20) DEFAULT NULL,
  `payment_number` varchar(30) DEFAULT NULL,
  `approval_code` varchar(30) DEFAULT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_receipt_breakup_amendment`
--

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

--
-- Table structure for table `product_receipt_transaction`
--

DROP TABLE IF EXISTS `product_receipt_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_receipt_transaction` (
  `receipt_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `trn_fyear` smallint(6) DEFAULT NULL COMMENT 'Transaction Financial Year',
  `store_code` varchar(6) NOT NULL,
  `trn_type` char(2) DEFAULT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return',
  `trn_id` int(11) DEFAULT NULL,
  `trn_receipt_no` int(11) DEFAULT NULL,
  `trn_receipt_type` enum('A','AA','B','R','I') NOT NULL COMMENT 'A - Advance Credit, AA - Advance Adjusted, B - Bill , R - Refund, I - Internal',
  `trn_receipt_date` date NOT NULL COMMENT 'Transaction Date',
  `balance_type` enum('C','D') NOT NULL,
  `is_settle` enum('Y','N') NOT NULL DEFAULT 'N',
  `patient_id` int(11) DEFAULT NULL COMMENT 'Medicine Issue & Issue Return Transaction has patient information if Pharmacy module is integrated',
  `visit_id` int(11) DEFAULT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `ph_cust_id` int(11) DEFAULT NULL,
  `amount_received` float NOT NULL DEFAULT '0',
  `payment_mode` varchar(10) NOT NULL DEFAULT 'CSH',
  `payment_agency` varchar(30) DEFAULT NULL,
  `payment_card_number` varchar(20) DEFAULT NULL,
  `payment_number` varchar(30) DEFAULT NULL,
  `approval_code` varchar(30) DEFAULT NULL,
  `remarks` varchar(25) DEFAULT NULL,
  `modified_remark` varchar(50) NOT NULL,
  `is_exported_to_xml` enum('Y','N') NOT NULL DEFAULT 'N',
  `created_by` varchar(15) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(15) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`receipt_id`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`trn_fyear`,`store_code`,`trn_type`,`trn_id`,`trn_receipt_no`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_receipt_transaction`
--

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

--
-- Table structure for table `product_reorder_request`
--

DROP TABLE IF EXISTS `product_reorder_request`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_reorder_request` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `store_code` varchar(6) NOT NULL,
  `product_id` int(11) NOT NULL,
  `reorder_request_date` date NOT NULL,
  `product_reorder_level` int(11) DEFAULT NULL,
  `current_stock_qty` float NOT NULL,
  `product_reorder_qty` float NOT NULL,
  `product_ordered_qty` float NOT NULL,
  `is_order_done` enum('Y','N') NOT NULL DEFAULT 'N',
  `ref_trn_id` varchar(15) DEFAULT NULL,
  `ref_trn_date` date DEFAULT NULL,
  `created_by` varchar(15) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(15) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  KEY `store_code` (`company_id`,`branch_id`,`store_code`,`product_id`,`reorder_request_date`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_reorder_request`
--

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

--
-- Table structure for table `product_stock`
--

DROP TABLE IF EXISTS `product_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_stock` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `fyear` smallint(6) NOT NULL COMMENT 'Product Stock Financial Year',
  `store_code` varchar(6) NOT NULL DEFAULT '1',
  `product_id` int(10) unsigned NOT NULL COMMENT 'product_master - product_id',
  `batch_no` varchar(40) DEFAULT NULL,
  `batch_exp` date DEFAULT NULL COMMENT 'To store batch expiry month and year (it will store date as 1st of that given month)',
  `latest_purchase_price_wo_gst` float(11,4) NOT NULL DEFAULT '0.0000',
  `price` float(10,4) NOT NULL,
  `price_per_unit` float(15,4) NOT NULL,
  `price_per_unit_wo_gst` float(15,4) NOT NULL DEFAULT '0.0000',
  `latest_purchase_price_per_unit_wo_gst` float(15,4) NOT NULL DEFAULT '0.0000',
  `mrp` float(10,2) NOT NULL,
  `original_mrp` float(9,2) DEFAULT '0.00',
  `mrp_per_unit` float(9,2) NOT NULL,
  `gst_percentage` float(9,2) NOT NULL DEFAULT '0.00',
  `cum_purchase_qty` float NOT NULL COMMENT 'Cummulative Purchase Quantity',
  `cum_purchase_amt` float(11,2) NOT NULL COMMENT 'Cummulative Purchase Amount',
  `cum_sale_qty` float NOT NULL COMMENT 'Cummulative Sale Quantity',
  `cum_sale_amt` float(11,2) NOT NULL COMMENT 'Cummulative Sale Amount',
  `current_stock_qty` float NOT NULL COMMENT 'Current Stock Quantity',
  `current_stock_amt` float(11,2) NOT NULL COMMENT 'Current Stock Amount',
  `is_packsize_updated` enum('Y','N') NOT NULL DEFAULT 'N',
  `is_product_locked_for_cc` enum('Y','N') NOT NULL DEFAULT 'N',
  `last_stock_adjusted_by` varchar(20) NOT NULL,
  `last_stock_adjusted_date` datetime DEFAULT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  `price_mrp_check` enum('Y','N') NOT NULL DEFAULT 'N',
  UNIQUE KEY `store_code` (`store_code`,`product_id`,`batch_no`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`store_code`,`product_id`,`batch_no`),
  UNIQUE KEY `company_id_2` (`company_id`,`branch_id`,`store_code`,`product_id`,`batch_no`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_stock`
--

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

--
-- Table structure for table `product_stock_ledger`
--

DROP TABLE IF EXISTS `product_stock_ledger`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_stock_ledger` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `fyear` smallint(6) NOT NULL,
  `store_code` varchar(6) NOT NULL DEFAULT '',
  `rate_type` enum('W','WO','M') NOT NULL DEFAULT 'WO',
  `product_id` int(10) unsigned NOT NULL,
  `ledger_month_year` date NOT NULL,
  `opening_stock` float NOT NULL DEFAULT '0',
  `opening_rate` float DEFAULT '0' COMMENT 'To store opening rate',
  `opening_price` float NOT NULL DEFAULT '0',
  `total_pur_qty` float NOT NULL DEFAULT '0',
  `total_pur_amt` float NOT NULL DEFAULT '0',
  `total_issue_qty` float NOT NULL DEFAULT '0',
  `total_issue_amt` float NOT NULL DEFAULT '0',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`fyear`,`store_code`,`rate_type`,`product_id`,`ledger_month_year`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_stock_ledger`
--

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

--
-- Table structure for table `product_stock_ledger_temp`
--

DROP TABLE IF EXISTS `product_stock_ledger_temp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_stock_ledger_temp` (
  `fyear` smallint(6) NOT NULL,
  `store_code` varchar(6) NOT NULL DEFAULT '',
  `rate_type` enum('W','WO','M') NOT NULL DEFAULT 'WO',
  `product_id` int(10) unsigned NOT NULL,
  `ledger_month_year` date NOT NULL,
  `opening_stock` float NOT NULL DEFAULT '0',
  `opening_rate` float DEFAULT '0' COMMENT 'To store opening rate',
  `opening_price` float NOT NULL DEFAULT '0',
  `total_pur_qty` float NOT NULL DEFAULT '0',
  `total_pur_amt` float NOT NULL DEFAULT '0',
  `total_issue_qty` float NOT NULL DEFAULT '0',
  `total_issue_amt` float NOT NULL DEFAULT '0',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`fyear`,`store_code`,`product_id`,`ledger_month_year`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_stock_ledger_temp`
--

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

--
-- Table structure for table `product_stock_opening_audit_trial`
--

DROP TABLE IF EXISTS `product_stock_opening_audit_trial`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_stock_opening_audit_trial` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `opening_audit_trial_id` int(11) NOT NULL AUTO_INCREMENT,
  `fyear` smallint(4) NOT NULL COMMENT 'Product Stock Financial Year',
  `store_code` varchar(6) NOT NULL DEFAULT '1',
  `product_id` int(10) unsigned NOT NULL COMMENT 'product_master - product_id',
  `batch_no` varchar(40) DEFAULT NULL,
  `batch_exp` date DEFAULT NULL COMMENT 'To store batch expiry month and year (it will store date as 1st of that given month)',
  `price` float(10,2) NOT NULL,
  `price_per_unit` float(9,2) NOT NULL,
  `price_per_unit_wo_gst` float(9,2) NOT NULL DEFAULT '0.00',
  `original_mrp` float(9,2) DEFAULT '0.00',
  `mrp_per_unit` float(9,2) NOT NULL,
  `gst_percentage` float(9,2) NOT NULL DEFAULT '0.00',
  `current_stock_qty` float NOT NULL COMMENT 'Current Stock Quantity',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  PRIMARY KEY (`opening_audit_trial_id`),
  UNIQUE KEY `store_code` (`store_code`,`product_id`,`batch_no`,`company_id`,`branch_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_stock_opening_audit_trial`
--

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

--
-- Table structure for table `product_stock_update`
--

DROP TABLE IF EXISTS `product_stock_update`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_stock_update` (
  `update_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `update_type` enum('M','E') NOT NULL COMMENT 'M - MRP Update, E - Expiry Update',
  `store_code` varchar(6) NOT NULL DEFAULT '1',
  `product_id` int(10) unsigned NOT NULL COMMENT 'product_master - product_id',
  `batch_no` varchar(40) DEFAULT NULL,
  `batch_exp` date DEFAULT NULL,
  `revised_batch_exp` date DEFAULT NULL,
  `mrp_per_unit` float(9,2) DEFAULT NULL,
  `revised_mrp_per_unit` float(9,2) DEFAULT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  PRIMARY KEY (`update_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_stock_update`
--

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

--
-- Table structure for table `product_store_master`
--

DROP TABLE IF EXISTS `product_store_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_store_master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `store_code` varchar(6) NOT NULL DEFAULT '1',
  `product_id` int(11) NOT NULL,
  `product_bin_location` varchar(10) DEFAULT NULL COMMENT 'Physical location OR Rack No',
  `product_reorder_level` int(11) DEFAULT NULL,
  `reorder_max_quantity` int(11) NOT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  UNIQUE KEY `store_code` (`store_code`,`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_store_master`
--

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

--
-- Table structure for table `product_transaction`
--

DROP TABLE IF EXISTS `product_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_transaction` (
  `pth_id` int(10) unsigned NOT NULL,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `trn_fyear` smallint(6) NOT NULL COMMENT 'Transaction Financial Year',
  `store_code` varchar(6) NOT NULL,
  `trn_type` char(6) NOT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return ',
  `trn_id` int(11) NOT NULL,
  `trn_sr_no` smallint(6) NOT NULL,
  `bill_amendment` smallint(6) NOT NULL DEFAULT '0',
  `ref_trn_type` varchar(5) DEFAULT NULL,
  `ref_trn_fyear` smallint(6) NOT NULL,
  `ref_trn_id` int(11) NOT NULL,
  `ref_trn_date` date DEFAULT NULL,
  `indent_id` int(11) DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL COMMENT 'product_master - product_id',
  `batch_no` varchar(40) DEFAULT NULL,
  `product_tracking_sr_no` varchar(25) DEFAULT NULL,
  `batch_exp` date DEFAULT NULL COMMENT 'To store batch expiry month and year (it will store date as 1st of that given month)',
  `purchase_uom` tinyint(3) unsigned NOT NULL,
  `quantity` float NOT NULL,
  `free_quantity` float DEFAULT '0',
  `quantity_per_unit_suom` float NOT NULL,
  `return_quantity` float DEFAULT '0',
  `sch_amt` float(9,2) DEFAULT '0.00' COMMENT 'Scheme Amount entered by user',
  `original_mrp` float(9,2) DEFAULT '0.00',
  `mrp` float(9,2) DEFAULT '0.00' COMMENT 'For trn_typ=''P'' its mrp entered by user, for trn_type=''I'' its mrp_per_unit',
  `price` float(11,4) DEFAULT '0.0000' COMMENT 'For trn_type=''P'' its price for PUOM and for trn_type=''I'' it will be kept 0 ',
  `price_per_unit_suom` float(11,4) NOT NULL COMMENT 'Price Per Unit based on stock unit of measure',
  `price_per_unit_suom_wo_gst` float(11,4) NOT NULL DEFAULT '0.0000',
  `is_reorder_required` enum('Y','N') NOT NULL DEFAULT 'N',
  `ledger_type` enum('C','D') NOT NULL,
  `discount_type` enum('A','P') DEFAULT NULL COMMENT 'P - Percentage, A - Amount',
  `discount` float(9,2) DEFAULT NULL,
  `discount_amt` float(9,2) NOT NULL COMMENT 'IF discount_type = P     discount_amt = net_rate * (Discount%/100) If discount_type = A     discount_amt = Discount',
  `taxable_amt` float(11,2) DEFAULT '0.00' COMMENT '((price * qty) - sch_amt) - discount where discount is to be calculated based on discount type',
  `net_rate` float(9,2) DEFAULT '0.00' COMMENT 'net_rate = taxable_amt/quantity',
  `sgst_percentage` float(6,2) NOT NULL DEFAULT '0.00',
  `sgst_value` float(9,2) NOT NULL DEFAULT '0.00' COMMENT 'sgst_value = taxable_amt * (gst_percentage / 100)',
  `cgst_percentage` float(6,2) NOT NULL DEFAULT '0.00',
  `cgst_value` float(9,2) NOT NULL DEFAULT '0.00' COMMENT 'cgst_value = taxable_amt * (gst_percentage / 100)',
  `igst_percentage` float(6,2) NOT NULL DEFAULT '0.00',
  `igst_value` float(9,2) NOT NULL DEFAULT '0.00' COMMENT 'igst_value = taxable_amt * (gst_percentage / 100)',
  `total` float(10,2) NOT NULL DEFAULT '0.00' COMMENT 'For trn_type = ''P'' => total = price * quantity For trn_type = ''I'' => (price * quantity) - discount',
  `landing_rate` float(9,2) DEFAULT '0.00' COMMENT 'For trn_type=''P=> landing_cost/quantity, For trn_type=''I'' 0',
  `landing_cost` float(10,2) DEFAULT '0.00' COMMENT 'For trn_type=''P'' => taxable_amt + GST, For trn_type = ''I'' 0',
  `included_in_package` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(15) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(15) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`pth_id`,`trn_sr_no`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`trn_fyear`,`store_code`,`trn_type`,`trn_id`,`trn_sr_no`),
  UNIQUE KEY `company_id_2` (`company_id`,`branch_id`,`trn_fyear`,`store_code`,`trn_type`,`trn_id`,`trn_sr_no`),
  UNIQUE KEY `company_id_3` (`company_id`,`branch_id`,`trn_fyear`,`store_code`,`trn_type`,`trn_id`,`trn_sr_no`),
  KEY `FK_product_master_id` (`product_id`),
  KEY `FK_unitmaster_trnpom` (`purchase_uom`),
  KEY `trn_type` (`trn_type`,`trn_id`),
  CONSTRAINT `FK_product_master_id` FOREIGN KEY (`product_id`) REFERENCES `product_master` (`product_id`),
  CONSTRAINT `FK_unitmaster_trnpom` FOREIGN KEY (`purchase_uom`) REFERENCES `unit_master` (`unit_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_transaction`
--

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

--
-- Table structure for table `product_transaction_amendment`
--

DROP TABLE IF EXISTS `product_transaction_amendment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_transaction_amendment` (
  `pth_id` int(10) unsigned NOT NULL,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `trn_fyear` smallint(6) NOT NULL COMMENT 'Transaction Financial Year',
  `store_code` varchar(6) NOT NULL,
  `trn_type` char(6) NOT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return ',
  `trn_id` int(11) NOT NULL,
  `trn_sr_no` smallint(6) NOT NULL,
  `bill_amendment` smallint(6) NOT NULL,
  `ref_trn_type` varchar(5) DEFAULT NULL,
  `ref_trn_fyear` smallint(6) NOT NULL,
  `ref_trn_id` int(11) NOT NULL,
  `ref_trn_date` date DEFAULT NULL,
  `indent_id` int(11) DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL COMMENT 'product_master - product_id',
  `batch_no` varchar(40) DEFAULT NULL,
  `product_tracking_sr_no` varchar(25) DEFAULT NULL,
  `batch_exp` date DEFAULT NULL COMMENT 'To store batch expiry month and year (it will store date as 1st of that given month)',
  `purchase_uom` tinyint(3) unsigned NOT NULL,
  `quantity` float NOT NULL,
  `free_quantity` float DEFAULT '0',
  `quantity_per_unit_suom` float NOT NULL,
  `return_quantity` float DEFAULT '0',
  `sch_amt` float(9,2) DEFAULT '0.00' COMMENT 'Scheme Amount entered by user',
  `original_mrp` float(9,2) DEFAULT '0.00',
  `mrp` float(9,2) DEFAULT '0.00' COMMENT 'For trn_typ=''P'' its mrp entered by user, for trn_type=''I'' its mrp_per_unit',
  `price` float(9,2) DEFAULT '0.00' COMMENT 'For trn_type=''P'' its price for PUOM and for trn_type=''I'' it will be kept 0 ',
  `price_per_unit_suom` float(9,2) NOT NULL COMMENT 'Price Per Unit based on stock unit of measure',
  `price_per_unit_suom_wo_gst` float(9,2) NOT NULL DEFAULT '0.00',
  `is_reorder_required` enum('Y','N') NOT NULL DEFAULT 'N',
  `ledger_type` enum('C','D') NOT NULL,
  `discount_type` enum('A','P') DEFAULT NULL COMMENT 'P - Percentage, A - Amount',
  `discount` float(9,2) DEFAULT NULL,
  `discount_amt` float(9,2) NOT NULL COMMENT 'IF discount_type = P     discount_amt = net_rate * (Discount%/100) If discount_type = A     discount_amt = Discount',
  `taxable_amt` float(9,2) DEFAULT '0.00' COMMENT '((price * qty) - sch_amt) - discount where discount is to be calculated based on discount type',
  `net_rate` float(9,2) DEFAULT '0.00' COMMENT 'net_rate = taxable_amt/quantity',
  `sgst_percentage` float(6,2) NOT NULL DEFAULT '0.00',
  `sgst_value` float(9,2) NOT NULL DEFAULT '0.00' COMMENT 'sgst_value = taxable_amt * (gst_percentage / 100)',
  `cgst_percentage` float(6,2) NOT NULL DEFAULT '0.00',
  `cgst_value` float(9,2) NOT NULL DEFAULT '0.00' COMMENT 'cgst_value = taxable_amt * (gst_percentage / 100)',
  `igst_percentage` float(6,2) NOT NULL DEFAULT '0.00',
  `igst_value` float(9,2) NOT NULL DEFAULT '0.00' COMMENT 'igst_value = taxable_amt * (gst_percentage / 100)',
  `total` float(10,2) NOT NULL DEFAULT '0.00' COMMENT 'For trn_type = ''P'' => total = price * quantity For trn_type = ''I'' => (price * quantity) - discount',
  `landing_rate` float(9,2) DEFAULT '0.00' COMMENT 'For trn_type=''P=> landing_cost/quantity, For trn_type=''I'' 0',
  `landing_cost` float(10,2) DEFAULT '0.00' COMMENT 'For trn_type=''P'' => taxable_amt + GST, For trn_type = ''I'' 0',
  `created_by` varchar(15) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(15) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`pth_id`,`trn_sr_no`,`bill_amendment`),
  UNIQUE KEY `trn_fyear` (`company_id`,`branch_id`,`trn_fyear`,`store_code`,`trn_type`,`trn_id`,`trn_sr_no`,`bill_amendment`) USING BTREE,
  KEY `FK_product_master_id` (`product_id`),
  KEY `FK_unitmaster_trnpom` (`purchase_uom`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_transaction_amendment`
--

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

--
-- Table structure for table `product_transaction_batch`
--

DROP TABLE IF EXISTS `product_transaction_batch`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_transaction_batch` (
  `pth_id` int(10) unsigned NOT NULL,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `trn_fyear` smallint(6) NOT NULL COMMENT 'Transaction Financial Year',
  `store_code` varchar(6) NOT NULL DEFAULT '1',
  `trn_type` char(6) NOT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return ',
  `trn_id` int(11) NOT NULL,
  `trn_sr_no` smallint(6) NOT NULL,
  `trn_batch_sr_no` int(11) NOT NULL,
  `product_id` int(10) unsigned NOT NULL COMMENT 'product_master - product_id',
  `batch_no` varchar(40) DEFAULT NULL,
  `product_tracking_sr_no` varchar(25) NOT NULL,
  `batch_exp` date DEFAULT NULL COMMENT 'To store batch expiry month and year (it will store date as 1st of that given month)',
  `mrp` float(9,2) NOT NULL DEFAULT '0.00',
  `quantity_received` float NOT NULL,
  `quantity_sold` float NOT NULL DEFAULT '0',
  `quantity_suom_received` float NOT NULL,
  `quantity_suom_sold` float NOT NULL DEFAULT '0',
  `physical_quantity` float NOT NULL DEFAULT '0',
  `is_barcode_printed` enum('Y','N') NOT NULL DEFAULT 'N',
  `barcode_source` enum('P','IR','CC','DCR','GINR') NOT NULL DEFAULT 'P',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`pth_id`,`trn_sr_no`,`trn_batch_sr_no`),
  UNIQUE KEY `UK_TransactionNo` (`trn_fyear`,`trn_type`,`trn_id`,`trn_sr_no`,`trn_batch_sr_no`,`store_code`) USING BTREE,
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`trn_fyear`,`store_code`,`trn_type`,`trn_id`,`trn_sr_no`,`trn_batch_sr_no`),
  KEY `FK_product_master_id` (`product_id`),
  KEY `product_tracking_sr_no` (`product_tracking_sr_no`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_transaction_batch`
--

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

--
-- Table structure for table `product_transaction_header`
--

DROP TABLE IF EXISTS `product_transaction_header`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_transaction_header` (
  `pth_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `trn_fyear` smallint(6) NOT NULL COMMENT 'Transaction Financial Year',
  `store_code` varchar(6) NOT NULL,
  `to_store_code` varchar(6) DEFAULT NULL,
  `trn_type` char(6) NOT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return',
  `trn_id` int(11) NOT NULL,
  `business_entity` int(11) DEFAULT NULL,
  `bill_amendment` smallint(6) NOT NULL DEFAULT '0',
  `ref_trn_type` varchar(10) NOT NULL,
  `ref_trn_fyear` smallint(6) NOT NULL,
  `ref_trn_id` int(11) NOT NULL,
  `receipt_id` int(11) DEFAULT NULL,
  `trn_date` date NOT NULL COMMENT 'Transaction Date',
  `trn_status` char(1) NOT NULL COMMENT 'P - Partial, C - Completed, T - Turned Down (Cancelled)',
  `with_po` enum('Y','N') NOT NULL DEFAULT 'N',
  `purchase_bill_no` varchar(20) DEFAULT NULL COMMENT 'Purchase Bill Number',
  `purchase_order_no` varchar(15) DEFAULT NULL,
  `purchase_order_entity_code` char(6) DEFAULT NULL,
  `purchase_bill_date` date DEFAULT NULL COMMENT 'Purchase Bill Date',
  `supplier_id` smallint(5) unsigned DEFAULT NULL,
  `department_id` tinyint(4) DEFAULT NULL,
  `doctor_id` int(11) DEFAULT NULL COMMENT 'Referring external_doctor_master',
  `patient_id` int(11) DEFAULT NULL COMMENT 'Medicine Issue & Issue Return Transaction has patient information if Pharmacy module is integrated',
  `opd_reg_id` bigint(20) DEFAULT NULL COMMENT 'Medicine Issue & Issue Return Transaction has patient information if Pharmacy module is integrated',
  `ipd_reg_id` bigint(20) DEFAULT NULL COMMENT 'Medicine Issue & Issue Return Transaction has patient information if Pharmacy module is integrated',
  `visit_id` int(11) DEFAULT NULL,
  `ph_cust_id` int(11) DEFAULT NULL,
  `gross_total` float(11,2) NOT NULL COMMENT 'Roll up from child items stored in transaction table',
  `discount_type` enum('A','P') DEFAULT NULL COMMENT 'P - Percentage, A - Amount',
  `discount` float(10,2) DEFAULT NULL COMMENT 'discount applied',
  `discount_amt` float(10,2) NOT NULL COMMENT 'Stores calculated discount amount',
  `round_off` float(5,2) NOT NULL,
  `amount_received` float(10,2) NOT NULL DEFAULT '0.00',
  `is_fully_paid` enum('Y','N') NOT NULL DEFAULT 'Y',
  `is_credit_bill` enum('Y','N') DEFAULT 'N',
  `is_ptr_applicable` enum('N','Y') NOT NULL DEFAULT 'N',
  `is_consignment_dc` enum('Y','N') NOT NULL DEFAULT 'N',
  `is_final_bill_prepared` enum('Y','N') NOT NULL DEFAULT 'N',
  `shipping_other_charges` float(10,2) NOT NULL DEFAULT '0.00',
  `sch_amount` float(9,2) NOT NULL DEFAULT '0.00',
  `tcs_amount` float(9,2) NOT NULL DEFAULT '0.00',
  `total` float(10,2) NOT NULL COMMENT 'Net Total',
  `cgst_amt` float(10,2) DEFAULT '0.00',
  `sgst_amt` float(10,2) DEFAULT '0.00',
  `igst_amt` float(10,2) DEFAULT '0.00',
  `invoice_amt` float(11,2) DEFAULT '0.00',
  `remarks` varchar(50) NOT NULL COMMENT 'Remarks, if any. Mandatory if return transaction type',
  `net_taxable_amt` float(11,2) DEFAULT '0.00',
  `payment_mode` varchar(10) NOT NULL DEFAULT 'CSH',
  `payment_agency` varchar(30) DEFAULT NULL,
  `payment_card_number` varchar(20) DEFAULT NULL,
  `payment_number` varchar(30) DEFAULT NULL,
  `approval_code` varchar(30) DEFAULT NULL,
  `is_exported_to_xml` enum('Y','N') NOT NULL DEFAULT 'N',
  `created_by` varchar(15) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(15) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`pth_id`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`trn_fyear`,`store_code`,`trn_type`,`trn_id`),
  UNIQUE KEY `company_id_2` (`company_id`,`branch_id`,`trn_fyear`,`store_code`,`trn_type`,`trn_id`),
  UNIQUE KEY `company_id_3` (`company_id`,`branch_id`,`trn_fyear`,`store_code`,`trn_type`,`trn_id`),
  KEY `FK_suppliermaster` (`supplier_id`),
  KEY `trn_date` (`trn_date`),
  KEY `trn_type` (`trn_type`,`trn_id`),
  KEY `visit_id` (`visit_id`),
  KEY `idx_pth` (`visit_id`,`ipd_reg_id`,`trn_type`,`trn_status`,`is_fully_paid`,`is_credit_bill`),
  CONSTRAINT `FK_suppliermaster` FOREIGN KEY (`supplier_id`) REFERENCES `suppliermaster` (`supplier_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_transaction_header`
--

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

--
-- Table structure for table `product_transaction_header_amendment`
--

DROP TABLE IF EXISTS `product_transaction_header_amendment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_transaction_header_amendment` (
  `pth_id` int(10) unsigned NOT NULL,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `trn_fyear` smallint(6) NOT NULL COMMENT 'Transaction Financial Year',
  `store_code` varchar(6) NOT NULL DEFAULT '1',
  `to_store_code` varchar(6) DEFAULT NULL,
  `trn_type` char(6) NOT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return',
  `trn_id` int(11) NOT NULL,
  `business_entity` int(11) DEFAULT NULL,
  `bill_amendment` smallint(6) NOT NULL,
  `ref_trn_type` varchar(10) NOT NULL,
  `ref_trn_fyear` smallint(6) NOT NULL,
  `ref_trn_id` int(11) NOT NULL,
  `receipt_id` int(11) DEFAULT NULL,
  `trn_date` date NOT NULL COMMENT 'Transaction Date',
  `trn_status` char(1) NOT NULL COMMENT 'P - Partial, C - Completed, T - Turned Down (Cancelled)',
  `with_po` enum('Y','N') NOT NULL DEFAULT 'N',
  `purchase_bill_no` varchar(15) DEFAULT NULL COMMENT 'Purchase Bill Number',
  `purchase_order_no` varchar(15) DEFAULT NULL,
  `purchase_order_entity_code` char(6) DEFAULT NULL,
  `purchase_bill_date` date DEFAULT NULL COMMENT 'Purchase Bill Date',
  `supplier_id` smallint(5) unsigned DEFAULT NULL,
  `department_id` tinyint(4) DEFAULT NULL,
  `doctor_id` int(11) DEFAULT NULL COMMENT 'Referring external_doctor_master',
  `patient_id` int(11) DEFAULT NULL COMMENT 'Medicine Issue & Issue Return Transaction has patient information if Pharmacy module is integrated',
  `opd_reg_id` bigint(20) DEFAULT NULL COMMENT 'Medicine Issue & Issue Return Transaction has patient information if Pharmacy module is integrated',
  `ipd_reg_id` bigint(20) DEFAULT NULL COMMENT 'Medicine Issue & Issue Return Transaction has patient information if Pharmacy module is integrated',
  `visit_id` int(11) DEFAULT NULL,
  `ph_cust_id` int(11) DEFAULT NULL,
  `gross_total` float(11,2) NOT NULL COMMENT 'Roll up from child items stored in transaction table',
  `discount_type` enum('A','P') DEFAULT NULL COMMENT 'P - Percentage, A - Amount',
  `discount` float(10,2) DEFAULT NULL COMMENT 'discount applied',
  `discount_amt` float(10,2) NOT NULL COMMENT 'Stores calculated discount amount',
  `round_off` float(5,2) NOT NULL,
  `amount_received` float(10,2) NOT NULL DEFAULT '0.00',
  `is_fully_paid` enum('Y','N') NOT NULL DEFAULT 'Y',
  `is_credit_bill` enum('Y','N') DEFAULT 'N',
  `is_ptr_applicable` enum('N','Y') NOT NULL DEFAULT 'N',
  `is_consignment_dc` enum('Y','N') NOT NULL DEFAULT 'N',
  `shipping_other_charges` float(10,2) NOT NULL DEFAULT '0.00',
  `sch_amount` float(9,2) NOT NULL DEFAULT '0.00',
  `tcs_amount` float(9,2) NOT NULL DEFAULT '0.00',
  `total` float(10,2) NOT NULL COMMENT 'Net Total',
  `cgst_amt` float(10,2) DEFAULT '0.00',
  `sgst_amt` float(10,2) DEFAULT '0.00',
  `igst_amt` float(10,2) DEFAULT '0.00',
  `invoice_amt` float(11,2) DEFAULT '0.00',
  `remarks` varchar(50) NOT NULL COMMENT 'Remarks, if any. Mandatory if return transaction type',
  `net_taxable_amt` float(11,2) DEFAULT '0.00',
  `payment_mode` varchar(10) NOT NULL DEFAULT 'CSH',
  `payment_agency` varchar(30) DEFAULT NULL,
  `payment_card_number` varchar(20) DEFAULT NULL,
  `payment_number` varchar(30) DEFAULT NULL,
  `approval_code` varchar(30) DEFAULT NULL,
  `is_exported_to_xml` enum('Y','N') NOT NULL DEFAULT 'N',
  `created_by` varchar(15) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(15) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`pth_id`,`bill_amendment`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`trn_fyear`,`store_code`,`trn_type`,`trn_id`,`bill_amendment`),
  UNIQUE KEY `company_id_2` (`company_id`,`branch_id`,`trn_fyear`,`store_code`,`trn_type`,`trn_id`,`bill_amendment`),
  UNIQUE KEY `company_id_3` (`company_id`,`branch_id`,`trn_fyear`,`store_code`,`trn_type`,`trn_id`,`bill_amendment`),
  KEY `FK_suppliermaster` (`supplier_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_transaction_header_amendment`
--

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

--
-- Table structure for table `product_transaction_temp`
--

DROP TABLE IF EXISTS `product_transaction_temp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_transaction_temp` (
  `trn_type` char(6) NOT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return ',
  `trn_id` int(11) NOT NULL,
  `product_id` int(10) unsigned NOT NULL COMMENT 'product_master - product_id',
  `batch_no` varchar(15) DEFAULT NULL,
  `quantity` float NOT NULL,
  `free_quantity` float DEFAULT '0',
  `quantity_per_unit_suom` float NOT NULL,
  `sch_amt` float(9,2) DEFAULT '0.00' COMMENT 'Scheme Amount entered by user',
  `original_mrp` float(9,2) DEFAULT '0.00',
  `mrp` float(9,2) DEFAULT '0.00' COMMENT 'For trn_typ=''P'' its mrp entered by user, for trn_type=''I'' its mrp_per_unit',
  `price` float(9,2) DEFAULT '0.00' COMMENT 'For trn_type=''P'' its price for PUOM and for trn_type=''I'' it will be kept 0 ',
  `price_per_unit_suom` float(9,2) NOT NULL COMMENT 'Price Per Unit based on stock unit of measure',
  `price_per_unit_suom_wo_gst` float(9,2) NOT NULL DEFAULT '0.00',
  `discount_type` enum('A','P') DEFAULT NULL COMMENT 'P - Percentage, A - Amount',
  `discount` float(9,2) DEFAULT NULL,
  `discount_amt` float(9,2) NOT NULL COMMENT 'IF discount_type = P     discount_amt = net_rate * (Discount%/100) If discount_type = A     discount_amt = Discount',
  `taxable_amt` float(9,2) DEFAULT '0.00' COMMENT '((price * qty) - sch_amt) - discount where discount is to be calculated based on discount type',
  `net_rate` float(9,2) DEFAULT '0.00' COMMENT 'net_rate = taxable_amt/quantity',
  `sgst_percentage` float(6,2) NOT NULL,
  `sgst_value` float(9,2) NOT NULL COMMENT 'sgst_value = taxable_amt * (gst_percentage / 100)',
  `cgst_percentage` float(6,2) NOT NULL,
  `cgst_value` float(9,2) NOT NULL COMMENT 'cgst_value = taxable_amt * (gst_percentage / 100)',
  `igst_percentage` float(6,2) DEFAULT NULL,
  `igst_value` float(9,2) DEFAULT NULL,
  `total` float(10,2) NOT NULL DEFAULT '0.00' COMMENT 'For trn_type = ''P'' => total = price * quantity For trn_type = ''I'' => (price * quantity) - discount',
  `landing_rate` float(9,2) DEFAULT '0.00' COMMENT 'For trn_type=''P=> landing_cost/quantity, For trn_type=''I'' 0',
  `landing_cost` float(10,2) DEFAULT '0.00' COMMENT 'For trn_type=''P'' => taxable_amt + GST, For trn_type = ''I'' 0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_transaction_temp`
--

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

--
-- Table structure for table `productgroup_master`
--

DROP TABLE IF EXISTS `productgroup_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `productgroup_master` (
  `productgroup_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `productgroup_name` varchar(20) NOT NULL,
  `productgroup_description` varchar(50) DEFAULT NULL COMMENT 'Description of Group',
  `productgroup_is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`productgroup_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `productgroup_master`
--

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

--
-- Table structure for table `program_list`
--

DROP TABLE IF EXISTS `program_list`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `program_list` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `program_name` varchar(100) NOT NULL,
  `program_type` char(2) NOT NULL,
  `icon_class` varchar(20) NOT NULL,
  `file_name` text NOT NULL,
  `short_code` varchar(8) DEFAULT NULL,
  `active_YN` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=887 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `program_list`
--

LOCK TABLES `program_list` WRITE;
/*!40000 ALTER TABLE `program_list` DISABLE KEYS */;
INSERT INTO `program_list` VALUES (118,'Medicine for Diagnosis','','far fa-circle','./../../pages/admin/diagnosis_medicine.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(2,'Appointment Booking','','far fa-circle','./../../pages/registration/calendar.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(81,'Doctor Master','','far fa-circle','./../../pages/admin/doctor_setup.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(6,'Token Print','','far fa-circle','',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(7,'OP Registration','','far fa-circle','./../../pages/registration/new.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(8,'OP Patient List','','far fa-circle','./../../pages/registration/op_patient_list.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(9,'OP Registration Report','','far fa-circle','./../../pages/report/dateinput.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(10,'All Patient Queue','','far fa-circle','./../../pages/Doctor/pq1.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(11,'Diagnosis & Prescription','','far fa-circle','./../../pages/Doctor/pq.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(13,'Service Req','','far fa-circle','./../../pages/ward/ward_req.php?grp_cd=LAB',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(14,'Lab Test Report','DO','far fa-circle','./../../pages/lab/patient_lab_result.php?grp_cd=LAB','LAB','Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(15,'Lab Register','','far fa-circle','./../../pages/ward/lab_repo_in.php?grp_cd=LAB',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(16,'Lab Free Register','','far fa-circle','./../../pages/ward/lab_repo_in.php?grp_cd=LAB&&free=F',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(18,'IP Bill Re-Print','','far fa-circle','./../../pages/ipd_bill/ipd_bill_reprint.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(19,'IP Bill Report','','far fa-circle','./../../pages/ipd_bill/ipd_input.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(20,'Patient Account Statement','','far fa-circle','./../../pages/ipd_bill/service_charge_report_input.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(21,'IP Advance Cancellation','','far fa-circle','./../../pages/cancle/advance_cancel.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(22,'IP Payment Collection','','far fa-circle','./../../pages/billing/finalBillList.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(23,'Overall Receipt Summary','','far fa-circle','./../../pages/billing/bill_summary_input.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(24,'Userwise Collection Report','','far fa-circle','./../../pages/report/user_wise_collection_input.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(28,'Operation Report','','far fa-circle','./../../pages/report/operation_input.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(29,'Service Master','','far fa-circle','./../../pages/admin/service_master.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(615,'IMEI Master','','far fa-circle','./../../pages/admin/imei_master.php',NULL,'Y','THIMS','2022-07-21 16:29:00','','0000-00-00 00:00:00'),(33,'IP Advance Report ','','far fa-circle','./../../pages/ipd_bill/ipd_advance_input.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(35,'IP Discharge Report','','far fa-circle','./../../pages/ipd_bill/ipd_discharge_input.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(601,'Direct OP Bill','','far fa-circle','./../../pages/billing/bill.php?ipd_opd=H&&back=Y',NULL,'Y','thims','2017-04-21 18:18:00','','0000-00-00 00:00:00'),(37,'Total Collection Summary','','far fa-circle','./../../pages/report/total_collection_summary_input.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(38,'Ledger Report (Hospital/Doctor) ','','far fa-circle','./../../pages/report/Ledger_Report_Input.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(32,'OP Bill / Receipt Report','','far fa-circle','./../../pages/billing/opd_input.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(41,'3C / Daily Case Register Report','','far fa-circle','./../../pages/report/3C_Daily_Case_Register_Input.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(42,'Xray','','far fa-circle','./../../pages/ward/dept_service.php?grp_cd=Xray',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(47,'Xray Summary','','far fa-circle','./../../pages/ward/xx_summary_in.php?grp_cd=Xray',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(48,'Xray Size Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=Xsize',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(49,'IP Patient Care','','far fa-circle','./../../pages/ward/exam_medi_reco_result.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(51,'Patient Care Task List','','far fa-circle','./../../pages/ward/patient_care_report.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(55,'Item Purchase','','far fa-circle','./../../pages/medicine/purchase.php?trn_type=PD',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(56,'Department Indent-Issue','','far fa-circle','./../../pages/medicine/indent.php?trn_type=DR',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(57,'Item Transaction Register','','far fa-circle','./../../pages/report/transaction_register.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(58,'Item Stock Ledger','','far fa-circle','./../../pages/report/item_stock_ledger.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(59,'Item Stock View','','far fa-circle','./../../pages/medicine/item_stock.php?item_type=I',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(60,'Item Purchase Return','','far fa-circle','./../../pages/medicine/purchase.php?trn_type=RD',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(61,'Add/Modify Item','','far fa-circle','./../../pages/medicine/item_master.php?item_type=I',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(62,'Add/Modify Supplier','','far fa-circle','./../../pages/medicine/supp_master.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(63,'Add Division','','far fa-circle','./../../pages/medicine/div_master.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(64,'Adjust Item','','far fa-circle','./../../pages/medicine/discard.php?trn_type=AD',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(65,'Register MLC','','far fa-circle','./../../pages/MLC/mlc_register.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(66,'Verify MLC','','far fa-circle','./../../pages/MLC/mlc_verify.php?grp_cd=MLC',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(67,'MLC Report','','far fa-circle','./../../pages/MLC/mlc_report.php?grp_cd=MLC',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(68,'Asset Mangement','','far fa-circle','../asset/asset_service_history.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(69,'Add contract','','far fa-circle','../asset/asset_service_contract.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(70,'Asset Report','','far fa-circle','../asset/report.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(71,'Supplier Report','','far fa-circle','../asset/report1.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(72,'Category Report','','far fa-circle','../asset/assetcategories.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(73,'Company Report','','far fa-circle','../asset/assetcompany.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(75,'All Master','','far fa-circle','./../../pages/setup/encounter_master.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(76,'Profile Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=Profile',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(77,'ENC Group','','far fa-circle','./../../pages/lab/general_master.php?master_cd=ENCGP',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(78,'Holiday List','','far fa-circle','./../../pages/setup/holiday_list.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(79,'User Setup','','far fa-circle','./../../pages/setup/user_display.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(80,'Database Backup Utility','','far fa-circle','./../../pages/admin/backup_ui.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(789,'Mandal OP Bill Report','','far fa-circle','./../../pages/billing/opd_input.php?billing_entity=M',NULL,'Y','thims','2001-04-24 13:18:00','','0000-00-00 00:00:00'),(82,'BA / Patient Connect Setup','','far fa-circle','./../../pages/admin/sms_setup.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(83,'Reference Doctor Master','','far fa-circle','./../../pages/admin/doctor_setup.php?doctor_category=R',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(84,'Room Master','','far fa-circle','./../../pages/room/room_master.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(85,'Medicine Master','','far fa-circle','./../../pages/admin/medicine_master.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(87,'Service Group Master','','far fa-circle','./../../pages/admin/service_grp_master.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(89,'General Code Master','','far fa-circle','./../../pages/admin/general_code_master.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(90,'Hospital Setup','','far fa-circle','./../../pages/setup/hospital.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(91,'Parameter Setup','','far fa-circle','./../../pages/admin/parameter_setup.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(92,'User Access Control','','far fa-circle','./../../pages/setup/User_Access_Control.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(93,'Navigation Setup','','far fa-circle','./../../pages/setup/Sub_Navigation_Master.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(96,'Patient Count Summary','','far fa-circle','./../../pages/matrix/mgnt_volume_summary.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(97,'Indoor Daily Accounting Report','','far fa-circle','./../../pages/report/daily_accounting_report_ui.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(98,'OP Bill','','far fa-circle','./../../pages/billing/bill.php?ipd_opd=O',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(99,'OP Receipt Re-Print','','far fa-circle','./../../pages/billing/reservice_bill.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(420,'Outstanding Report','','far fa-circle','./../../pages/billing/outstanding_report.php',NULL,'Y','THIMS','2021-09-19 18:18:00','','0000-00-00 00:00:00'),(102,'IP Registration','','far fa-circle','./../../pages/registration/ipd_reg_new.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(103,'IP Patient List / Action','','far fa-circle','./../../pages/registration/ip_patient_list.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(107,'Examination Master','','far fa-circle','./../../pages/ward/examination_master.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(108,'Operation Master','','far fa-circle','./../../pages/admin/operation_master.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(109,'Operation Category Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=OPCAT',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(111,'Discharge Type Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=DISGTYPE',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(113,'Medicine Category ','','far fa-circle','./../../pages/lab/general_master.php?master_cd=Ptype',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(114,'Business Associate Master','','far fa-circle','./../../pages/admin/business_assoc_master.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(115,'Department Master','','far fa-circle','./../../pages/admin/department.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(117,'Diagnosis Master','','far fa-circle','./../../pages/admin/diagnosis_master.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(119,'Payment Mode Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=PMODE',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(569,'Patient Data Dashboard','','fas fa-tachometer-al','./../../pages/dashboard/dashboard.php',NULL,'Y','THIMS','2009-02-20 18:18:00','','0000-00-00 00:00:00'),(160,'IP Revenue Share Report','','far fa-circle','./../../pages/report/ipBillShareReport.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(161,'OP Revenue Share Report','','far fa-circle','./../../pages/report/opBillShareReport.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(568,'Dashboard','','fas fa-tachometer-al','./../../pages/dashboard/dashboard.php?requestFor=all',NULL,'Y','THIMS','2009-02-20 18:18:00','','0000-00-00 00:00:00'),(165,'Lab Cat Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=Lcat',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(166,'Lab Test Master','','far fa-circle','./../../pages/lab/patho_test_master.php?grp_cd=LAB',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(434,'IP Advance Refund Report','','far fa-circle','./../../pages/ipd_bill/ipd_advance_refund.php',NULL,'Y','THIMS','2031-12-18 13:18:00','','0000-00-00 00:00:00'),(787,'Pathology IP Bill Report','','far fa-circle','./../../pages/ipd_bill/ipd_input.php?billing_entity=L',NULL,'Y','thims','2028-03-24 19:18:00','','0000-00-00 00:00:00'),(170,'Room/Bed Occupancy Report','','far fa-circle','./../../pages/room/room_status.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(172,'Service Req Report','','far fa-circle','./../../pages/ward/service_report_in.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(173,'Medicine Bill','','far fa-circle','./../../pages/medi/med_issue1.php?trn_type=I',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(174,'Medicine Bill Reprint','','far fa-circle','./../../pages/medi/pharmacy_receipt_reprint.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(175,'Credit Bill(Reversal Of Bill)','','far fa-circle','./../../pages/cancle/bill_cancle.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(176,'Purchase','','far fa-circle','./../../pages/medi/purchase.php?trn_type=PD',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(177,'Delete Non-Issue Medicine','','far fa-circle','./../../pages/medi/return_medilist.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(178,'Issue Return','','far fa-circle','./../../pages/medi/med_issue1.php?trn_type=IR',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(179,'Purchase Return','','far fa-circle','./../../pages/medi/purchase.php?trn_type=RD',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(180,'Adjustment','','far fa-circle','./../../pages/medi/discard.php?trn_type=AD',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(181,'Transaction Register','','far fa-circle','./../../pages/report/medi_transaction_register.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(182,'Stock Ledger','','far fa-circle','./../../pages/report/medi_stock_ledger.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(183,'Stock View','','far fa-circle','./../../pages/medi/item_stock.php?item_type=I',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(185,'Medicine Expiry Report','','far fa-circle','./../../pages/report/med_exp.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(36,'IP Registration Report','','far fa-circle','./../../pages/ipd_bill/ipd_reg_input.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(188,'Medicine','','far fa-circle','./../../pages/medi/medicine_master.php?item_type=M',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(190,'Supplier','','far fa-circle','./../../pages/medi/supp_master.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(191,'Medicine Company','','far fa-circle','./../../pages/lab/general_master.php?master_cd=Mcomp',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(193,'Schedule Master','','far fa-circle','./../../pages/admin/sch_master.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(86,'General Instruction','','far fa-circle','./../../pages/lab/general_master.php?master_cd=Ginst&&mst=General Instuructio',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(196,'Charges Upload','','far fa-circle','./../../pages/admin/import_csv.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(197,'Queue Display','TR','far fa-circle','./../../pages/Doctor/queue_display.php','','N','THIMS','2014-09-18 18:18:00','thims','2028-12-18 09:22:00'),(198,'Patient Category Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=PCatg&&name=Patient Category',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(199,'Investigation Master','','far fa-circle','./../../pages/setup/investigation_master.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(200,'Lab Agency','','far fa-circle','./../../pages/lab/general_master.php?master_cd=AGENCY',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(202,'IP Bill','','far fa-circle','./../../pages/billing/bill_new.php?ipd_opd=I',NULL,'Y','THIMS','2015-09-18 10:22:00','','0000-00-00 00:00:00'),(203,'Medicine Type','','far fa-circle','./../../pages/lab/general_master.php?master_cd=Ptype&&mst=Medicine Type',NULL,'Y','THIMS','2015-09-18 10:22:00','','0000-00-00 00:00:00'),(106,'Medicine Instruction Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=Minst&&name=Medi Instruction Master',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(206,'Room Category Master','','far fa-circle','./../../pages/room/room_cat.php',NULL,'Y','THIMS','2015-09-18 10:22:00','','0000-00-00 00:00:00'),(207,'Frequency Type Master','','far fa-circle','./../../pages/ward/frequency_type_master.php',NULL,'Y','THIMS','2015-09-18 10:22:00','','0000-00-00 00:00:00'),(208,'Frequency Type Sub Master','','far fa-circle','./../../pages/ward/frequency_type_sub_master.php',NULL,'Y','THIMS','2015-09-18 10:22:00','','0000-00-00 00:00:00'),(204,'Operation Theatre Master ','','far fa-circle','./../../pages/lab/general_master.php?master_cd=OTROOM',NULL,'Y','THIMS','2015-09-18 10:22:00','','0000-00-00 00:00:00'),(212,'IP Bill Cancellation','','far fa-circle','./../../pages/cancle/bill_cancel.php?ipd_opd=I',NULL,'Y','THIMS','2015-09-18 15:39:00','','0000-00-00 00:00:00'),(213,'All Patient Account Statement','','far fa-circle','./../../pages/ipd_bill/service_charge_report_all.php',NULL,'Y','THIMS','2015-09-18 15:39:00','','0000-00-00 00:00:00'),(214,'IP Bill Payment Collection','','far fa-circle','./../../pages/billing/finalBillList.php?ipdOpd=I',NULL,'Y','THIMS','2015-09-18 15:39:00','','0000-00-00 00:00:00'),(215,'Account Statement Summary','','far fa-circle','./../../pages/ipd_bill/service_charge_summary_report.php',NULL,'Y','THIMS','2015-09-18 15:39:00','','0000-00-00 00:00:00'),(209,'Lab Service Tests','','far fa-circle','./../../pages/lab/patho_report_test.php?grp_cd=LAB',NULL,'Y','THIMS','2015-09-18 10:22:00','','0000-00-00 00:00:00'),(218,'Patient Pregnancy Report','','far fa-circle','./../../pages/report/preg_Input.php',NULL,'Y','THIMS','2015-09-18 15:39:00','','0000-00-00 00:00:00'),(219,'Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php',NULL,'Y','THIMS','2015-09-18 15:39:00','','0000-00-00 00:00:00'),(220,'Day Care Report','','far fa-circle','./../../pages/report/Day_Care_Input.php',NULL,'Y','THIMS','2015-09-18 15:39:00','','0000-00-00 00:00:00'),(221,'Appointment Setup','','far fa-circle','./../../pages/setup/appointment_setup.php',NULL,'Y','THIMS','2015-09-18 15:39:00','','0000-00-00 00:00:00'),(231,'Department Summary Matrix','','far fa-circle','./../../pages/matrix/mgnt_summary_input_dept.php',NULL,'Y','THIMS','2015-09-18 10:31:00','','0000-00-00 00:00:00'),(225,'Sticker Print','','far fa-circle','./../../pages/registration/sticker_print.php',NULL,'Y','THIMS','2015-09-18 10:31:00','','0000-00-00 00:00:00'),(226,'Lab Result Input','','far fa-circle','./../../pages/lab/dept_lab_service.php',NULL,'Y','THIMS','2015-09-18 10:31:00','','0000-00-00 00:00:00'),(189,'Drug','','far fa-circle','./../../pages/medi/drug_master.php?item_type=M',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(229,'Tappering Dose Master','','far fa-circle','./../../pages/setup/tapperingDoseMaster.php',NULL,'Y','THIMS','2015-09-18 10:31:00','','0000-00-00 00:00:00'),(230,'Medicine Frequency','','far fa-circle','./../../pages/lab/general_master.php?master_cd=MFREQ',NULL,'Y','THIMS','2015-09-18 10:31:00','','0000-00-00 00:00:00'),(235,'Lab Test Group','','far fa-circle','./../../pages/lab/lab_test_group.php?grp_cd=LAB',NULL,'Y','THIMS','2015-09-18 10:31:00','','0000-00-00 00:00:00'),(236,'Lab Test Preview','','far fa-circle','./../../pages/lab/lab_test_group.php?grp_cd=LAB&&preview=Y',NULL,'Y','THIMS','2015-09-18 10:31:00','','0000-00-00 00:00:00'),(237,'Add Release Note','','far fa-circle','./../../pages/setup/release_display.php',NULL,'Y','thims','2014-09-18 10:00:00','thims','2014-09-18 10:02:00'),(238,'Estimated Deposit','','far fa-circle','../../pages/billing/estimated_deposit.php',NULL,'Y','thims','2017-09-18 11:21:00','','0000-00-00 00:00:00'),(239,'Deposit Structure Master','','far fa-circle','../../pages/admin/deposit_structure_master.php',NULL,'Y','thims','2017-09-18 11:36:00','','0000-00-00 00:00:00'),(240,'Operation Grade Master','','far fa-circle','../../pages/lab/general_master.php?master_cd=OPG',NULL,'Y','thims','2017-09-18 11:54:00','','0000-00-00 00:00:00'),(241,'OPD Charge Master','','far fa-circle','./../../pages/admin/opdChargeMaster.php',NULL,'Y','thims','2018-09-18 05:46:00','thims','2018-09-18 05:49:00'),(242,'Login Audit Trail Report','','far fa-circle','./../../pages/report/login_audit_report.php',NULL,'Y','thims','2021-11-18 10:05:00','','0000-00-00 00:00:00'),(243,'Diagnosis Wise Report','','far fa-circle','./../../pages/report/diagnosisWiseReport.php',NULL,'Y','thims','2014-09-18 10:00:00','thims','2014-09-18 10:02:00'),(285,'Queue Display','TR','far fa-circle','../../pages/Doctor/queue_display_new.php','QDISP','Y','thims','2028-12-18 09:19:00','thims','2028-12-18 09:21:00'),(287,'Patient Registration','TR','far fa-circle','./../../pages/registration/patientRegistration.php','PREG','Y','thims','2029-12-18 06:53:00','thims','2029-12-18 06:54:00'),(288,'Document setup','MA','far fa-circle','../../pages/setup/document_setup.php','DOCSET','Y','thims','2005-01-19 11:52:00','thims','2005-01-19 11:54:00'),(289,'Address Master','','far fa-circle','./../../pages/setup/patientAddressmaster.php',NULL,'Y','thims','2021-11-18 10:05:00','','0000-00-00 00:00:00'),(290,'Rate Master','','far fa-circle','./../../pages/setup/rateMaster.php',NULL,'Y','thims','2021-11-18 10:05:00','','0000-00-00 00:00:00'),(710,'Cardiac Procedure','','far fa-circle','./../../pages/radiology/radiology_dashboard.php?dashboard=cardiac',NULL,'Y','thims','2005-11-22 13:18:00','','0000-00-00 00:00:00'),(5,'Patient Master List','','far fa-circle','./../../pages/registration/pat_list.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(301,'Purchase','','far fa-circle','Item/purchase',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(302,'Purchase Return','','far fa-circle','Item/purchaseReturn',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(303,'Sale','','far fa-circle','Item/issue',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(304,'Sale Return','','far fa-circle','Item/issueReturn',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(305,'Adjustment','','far fa-circle','Item/adjustment',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(306,'Payment Collection','','far fa-circle','Item/PaymentCollection',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(3,'Appointment Report','','far fa-circle','./../../pages/report/appointment_list.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(435,'Hospital Earning Summary - Day Wise','','far fa-circle','./../../pages/report/dayWiseHospitalEarningReport.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(542,'Denomination Report','','far fa-circle','./../../pages/report/denominationReport.php',NULL,'Y','THIMS','2021-12-20 18:18:00','','0000-00-00 00:00:00'),(312,'Discount','','far fa-circle','Discount/list',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(313,'Generic Drugs','','far fa-circle','Drug/list',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(315,'Products','','far fa-circle','Products/list',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(602,'OP IP Summary(Department Wise)','','far fa-circle','./../../pages/report/departmentWiseInput.php',NULL,'Y','thims','2017-04-21 18:18:00','','0000-00-00 00:00:00'),(105,'Patient Discharge Summary','DO','far fa-circle','./../../pages/report/discharge_summary.php','DSUMM','Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(319,'Stock Ledger','','far fa-circle','Item/StockLedgerInput',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(320,'Transaction Register','','far fa-circle','Item/RegisterInput',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(321,'Sales Collection','','far fa-circle','Item/SalesCollectionInput',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(322,'Stock Statement','','far fa-circle','Item/stockStamentReport',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(323,'Sales Bill Reprint','','far fa-circle','Item/billReprint',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(324,'Uninitialized Products','','far fa-circle','Item/UnInitializedProductInput',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(325,'Product List','','far fa-circle','Item/productlistInput',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(326,'Product Expiry','','far fa-circle','Item/productExpiryInput',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(327,'Purchase Summary','','far fa-circle','Item/supplierwisesaleInput',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(328,'Patient Sales Summary','','far fa-circle','Item/patientwisedataInput',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(329,'Product Sales Summary','','far fa-circle','Item/medicineSaleInput',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(330,'Medicine Reorder','','far fa-circle','Item/medicinereorderInput',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(331,'Gross Profit Report','','far fa-circle','Item/profitReportInput',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(332,'Reorder Required Report','','far fa-circle','Item/reorderRequiredDataInput',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(333,'Patient Credit Sales Summary','','far fa-circle','Item/patientwisedataInputCredit',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(334,'Purchase Voucher','','far fa-circle','Item/PurchaseVoucherInput',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(335,'Job Titles','','far fa-circle','jobtitle',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(336,'Employee Status','','far fa-circle','employee_status',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(337,'Job Categories','','far fa-circle','JobCategory/list',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(338,'Skills','','far fa-circle','skill',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(339,'Educations','','far fa-circle','employee_education',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(340,'Reporting Methods','','far fa-circle','reportmethod',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(341,'Work Week ','','far fa-circle','workweek',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(342,'Leave Types','','far fa-circle','leavetype',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(343,'Directory','','far fa-circle','employeedirectory',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(344,'GRN','','far fa-circle','StoreItem/Purchase',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(345,'GRN With PO','','far fa-circle','StoreItem/PurchaseWithPo',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(346,'Material Issue Note','','far fa-circle','StoreItem/Issue',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(347,'Adjustment Transactions','','far fa-circle','StoreItem/Adjustment',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(348,'GRN Return','','far fa-circle','StoreItem/PurchaseReturn',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(349,'GRN Return With PO','','far fa-circle','StoreItem/PurchaseReturnWithPo',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(350,'Material Issue Return','','far fa-circle','StoreItem/IssueReturn',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(351,'Goods Transfer','','far fa-circle','StoreItem/Transfer',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(354,'Products','','far fa-circle','StoreProducts/list',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(355,'Department','','far fa-circle','StoreDepartment/list',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(705,'Investigation Margin Report','','far fa-circle','./../../pages/report/investigationMarginReport.php',NULL,'Y','thims','2019-10-22 13:18:00','','0000-00-00 00:00:00'),(653,'IP Package Report','','far fa-circle','./../../pages/report/ipPatientPackageReportInput.php',NULL,'Y','thims','2023-02-21 13:18:00','','0000-00-00 00:00:00'),(359,'Transaction Register','','far fa-circle','StoreItem/RegisterInput',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(360,'Store Product List','','far fa-circle','StoreItem/storeProductListInput',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(361,'PO Reprint','','far fa-circle','StorePo/Reprint',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(362,'Approve PO List','','far fa-circle','StorePoDashboard/SuperUser',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(363,'PO List','','far fa-circle','StorePoDashboard/User',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(364,'Approve Leave','','far fa-circle','ApproveLeave',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(365,'Surgery Details','','far fa-circle','./../../pages/ward/operationDetail.php',NULL,'Y','thims','2014-09-18 10:00:00','thims','2014-09-18 10:02:00'),(366,'Price Preview','','far fa-circle','./../../pages/setup/pricePreview.php',NULL,'Y','thims','2014-09-18 10:00:00','thims','2014-09-18 10:02:00'),(367,'Pharmacy Receipt Reprint','','far fa-circle','Item/ReceiptReprint',NULL,'Y','thims','2008-03-19 14:07:00','','0000-00-00 00:00:00'),(368,'Emergency Registration','','far fa-circle','./../../pages/ward/emergencyPatientList.php',NULL,'Y','thims','2014-09-18 10:00:00','thims','2014-09-18 10:02:00'),(369,'Staff Report','','far fa-circle','Hrms/employeeReportExcelInput',NULL,'Y','thims','2014-05-19 14:07:00','','0000-00-00 00:00:00'),(370,'Probation Completion','Hr','far fa-circle','Hrms/probationCompletionInput',NULL,'Y','thims','2014-05-19 14:07:00','','0000-00-00 00:00:00'),(371,'Store Stock Statement','','far fa-circle','StoreItem/storeStockStatementInput',NULL,'Y','thims','2025-05-19 16:27:00','','0000-00-00 00:00:00'),(372,'Store Stock  Ledger','','far fa-circle','StoreItem/storeStockLedgerInput',NULL,'Y','thims','2025-05-19 17:00:00','','0000-00-00 00:00:00'),(373,'Store Purchase Voucher','','far fa-circle','StoreItem/PurchaseVoucherInput',NULL,'Y','thims','2027-05-19 17:27:00','','0000-00-00 00:00:00'),(374,'Store Purchase Summary','','far fa-circle','StoreItem/productIssueInput',NULL,'Y','thims','2027-05-19 17:27:00','','0000-00-00 00:00:00'),(375,'Store Material Reorder','','far fa-circle','StoreItem/medicinereorderInput',NULL,'Y','thims','2027-05-19 17:27:00','','0000-00-00 00:00:00'),(376,'Nursing Station','','far fa-circle','./../../pages/ward/nursingStationRequest.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(377,'Physiotherapy Request','','far fa-circle','./../../pages/ward/physiotherapyRequest.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(378,'IP Bill Order','','far fa-circle','./../../pages/lab/general_master.php?master_cd=BILLSRNO',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(380,'View PaySlip','','far fa-circle','PaySlip',NULL,'Y','thims','2005-06-19 12:18:00','','0000-00-00 00:00:00'),(383,'Add CL Entitlements','','far fa-circle','clleaveentitlement',NULL,'Y','thims','2021-06-19 12:18:00','','0000-00-00 00:00:00'),(384,'Add Yearly Entitlements for Employee','','far fa-circle','yearlyleaveentitlementforemployee',NULL,'Y','thims','2021-06-19 12:18:00','','0000-00-00 00:00:00'),(385,'Add Yearly Entitlements for Trainee','','far fa-circle','yearlyleaveentitlementfortrainee',NULL,'Y','thims','2021-06-19 12:18:00','','0000-00-00 00:00:00'),(386,'Add Yearly Entitlements for Doctor','','far fa-circle','yearlyleaveentitlementfordoctor',NULL,'Y','thims','2021-06-19 12:18:00','','0000-00-00 00:00:00'),(387,'Generate Confirmation Letter','','far fa-circle','Hrms/ConfirmationLetterInput',NULL,'Y','thims','2022-06-19 12:18:00','','0000-00-00 00:00:00'),(388,'Employee','','far fa-circle','CalculateSalary',NULL,'Y','thims','2003-07-19 11:45:00','','0000-00-00 00:00:00'),(389,'Trainee','','far fa-circle','CalculateSalaryfortrainee',NULL,'Y','thims','2003-07-19 11:45:00','','0000-00-00 00:00:00'),(390,'Stock / Cycle Report','','far fa-circle','Item/stockCycleReport',NULL,'Y','thims','2006-07-19 12:55:00','','0000-00-00 00:00:00'),(391,'Stock Adjustment Cycle','','far fa-circle','Item/stockCycleCount',NULL,'Y','thims','2006-07-19 12:55:00','','0000-00-00 00:00:00'),(392,'Junior Doctor','','far fa-circle','CalculateSalaryforjuniordoctor',NULL,'Y','thims','2006-07-19 04:45:00','','0000-00-00 00:00:00'),(399,'My Leave List','','far fa-circle','MyLeaveList/LeaveList',NULL,'Y','thims','2030-07-19 11:45:00','','0000-00-00 00:00:00'),(400,'Center','','far fa-circle','Center/list',NULL,'Y','thims','2030-07-19 11:45:00','','0000-00-00 00:00:00'),(401,'Assign Leave','','far fa-circle','leaveassign',NULL,'Y','thims','2030-07-19 11:45:00','','0000-00-00 00:00:00'),(402,'Credit Note ','','far fa-circle','./../../pages/cancle/credit_note.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(403,'Surgery Schedule Report','','far fa-circle','./../../pages/report/surgery_schedule_report.php',NULL,'Y','THIMS','2015-09-18 15:39:00','','0000-00-00 00:00:00'),(558,'Bill Report - Refferal Doctor Wise','','far fa-circle','./../../pages/report/ipReportReffDocWise.php',NULL,'Y','THIMS','2005-01-20 18:18:00','','0000-00-00 00:00:00'),(407,'Pack Size Amendment','','far fa-circle','Item/conversion',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(431,'LAB Revenue Report','','far fa-circle','./../../pages/report/lab_input.php',NULL,'Y','THIMS','2011-12-19 18:18:00','','0000-00-00 00:00:00'),(409,'View Payslip of Employee','','far fa-circle','EmployeePaySlip',NULL,'Y','thims','2027-08-19 14:59:00','','0000-00-00 00:00:00'),(410,'Sale Amendment','','far fa-circle','Item/issueBillAmendment',NULL,'Y','THIMS','2030-08-19 00:00:00','','0000-00-00 00:00:00'),(411,'Sale Partially Edit','','far fa-circle','Item/issueBillPartiallyAmendment',NULL,'Y','THIMS','2030-08-19 00:00:00','','0000-00-00 00:00:00'),(413,'Bill Amendment','','far fa-circle','./../../pages/billing/billEditSearchList.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(414,'Bill Rectification','','far fa-circle','./../../pages/billing/opBillPartiallyEdit.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(415,'Parital Credit Bill','','far fa-circle','./../../pages/billing/partiallyCreditBill.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(416,'Sales Bill Hospital Internal','','far fa-circle','\r\nItem/issueBillHospitalInternal',NULL,'Y','THIMS','2014-09-19 18:00:00','','0000-00-00 00:00:00'),(417,'Sale Partially Edit','','far fa-circle','\r\nItem/issueBillPartiallyAmendment',NULL,'Y','THIMS','2014-09-19 18:00:00','','0000-00-00 00:00:00'),(418,'Sale Amendment','','far fa-circle','\r\nItem/issueBillAmendment',NULL,'Y','THIMS','2014-09-19 18:00:00','','0000-00-00 00:00:00'),(419,'Purchase Amendment','','far fa-circle','\r\nItem/purchaseAmendment',NULL,'Y','THIMS','2014-09-19 18:00:00','','0000-00-00 00:00:00'),(580,'Material Transfer To Vasna','','far fa-circle','./../../pages/report/materialTransferToVasna.php',NULL,'Y','thims','2019-04-21 18:18:00','','0000-00-00 00:00:00'),(421,'Export Sales(Cash) Voucher Summary','','far fa-circle','../../pages/tallyxml/sales_voucher_summary_export_ui.php',NULL,'Y','thims','2024-09-19 11:45:00','','0000-00-00 00:00:00'),(422,'Export Sales(Credit) Voucher','','far fa-circle','../../pages/tallyxml/sales_voucher_credit_export_ui.php',NULL,'Y','thims','2024-09-19 11:45:00','','0000-00-00 00:00:00'),(423,'Export Purchase Voucher Summary','','far fa-circle','../../pages/tallyxml/purchase_voucher_summary_export_ui.php',NULL,'Y','thims','2024-09-19 11:45:00','','0000-00-00 00:00:00'),(424,'Export Pharmacy Receipt Voucher','','far fa-circle','../../pages/tallyxml/pharmacy_receipt_voucher_export_ui.php',NULL,'Y','thims','2024-09-19 11:45:00','','0000-00-00 00:00:00'),(426,'Visiting Report','','fa-fa',' ./../../pages/report/Visiting_report_input.php',NULL,'Y','THIMS','2021-11-19 11:42:00','THIMS','2021-11-19 11:42:00'),(187,'Current Stock Report','','far fa-circle','./../../pages/report/medicine_list.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(40,'MLC Report','','far fa-circle','./../../pages/report/mlc_input.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(408,'Rev & Receipt Summary-Hospital','','far fa-circle','./../../pages/report/op_ip_bill_report_summary.php',NULL,'Y','THIMS','2021-08-19 18:18:00','','0000-00-00 00:00:00'),(654,'Outsource Billing Report ','','far fa-circle','./../../pages/report/outsourceBillReport.php',NULL,'Y','thims','2009-02-21 13:18:00','','0000-00-00 00:00:00'),(557,'OP - IP Outstanding Report','','far fa-circle','./../../pages/report/outstandingReport.php',NULL,'Y','THIMS','2002-01-20 18:18:00','','0000-00-00 00:00:00'),(436,'Admit Date Rectification','DO','far fa-circle','./../../pages/registration/admitDateRectification.php',NULL,'Y','THIMS','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(437,'Discharge Date Rectification','','far fa-circle','./../../pages/registration/dischargeDateRectification.php',NULL,'Y','THIMS','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(224,'Certificate Print','','far fa-circle','./../../pages/report/pat_certificate.php',NULL,'Y','THIMS','2015-09-18 15:39:00','','0000-00-00 00:00:00'),(395,'Pathology Collection','','far fa-circle','./../../pages/report/pathologyBillCollectionInput.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(445,'Service Group Charge Master','','far fa-circle','./../../pages/admin/ris_service_grp_rate.php',NULL,'Y','THIMS','2017-03-20 18:18:00','','0000-00-00 00:00:00'),(446,'Radiology Investigation','','far fa-circle','./../../pages/Doctor/ris_doctorScreen.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(447,'Religion Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=RELIGION',NULL,'Y','THIMS','2024-02-20 11:18:00','','0000-00-00 00:00:00'),(448,'Speciality Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=SPTYPE',NULL,'Y','THIMS','2024-02-20 11:18:00','','0000-00-00 00:00:00'),(769,'Patient Not Visited Report','','far fa-circle','./../../pages/report/patientNotVisited.php',NULL,'Y','thims','2024-11-23 13:18:00','','0000-00-00 00:00:00'),(450,'Transportation Reimbursement Report','','far fa-circle','./../../pages/report/patientTransportationReceiptInput.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(451,'SMS Purpose Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=SMSPURPS',NULL,'Y','THIMS','2011-04-20 18:18:00','','0000-00-00 00:00:00'),(452,'Store Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=STORE',NULL,'Y','THIMS','2030-03-20 17:18:00','','0000-00-00 00:00:00'),(454,'Drug Administration / Route Master','','far fa-circle','./../../pages/admin/drug_administration.php',NULL,'Y','THIMS','2004-04-20 18:18:00','','0000-00-00 00:00:00'),(455,'Agency Master','','far fa-circle','./../../pages/setup/agency_master.php',NULL,'Y','THIMS','2008-04-20 19:18:00','','0000-00-00 00:00:00'),(457,'OutSource Report','','far fa-circle','./../../pages/report/outsource_report.php',NULL,'Y','THIMS','2025-04-20 18:18:00','','0000-00-00 00:00:00'),(458,'Investigation Report Collection','','far fa-circle','./../../pages/ward/outsource_received.php',NULL,'Y','THIMS','2025-04-20 18:18:00','','0000-00-00 00:00:00'),(459,'TPA Master','','far fa-circle','./../../pages/setup/ins_tpa_master.php?master_cd=TPA',NULL,'Y','THIMS','2030-04-20 18:18:00','','0000-00-00 00:00:00'),(460,'Insurance Master','','far fa-circle','./../../pages/setup/ins_tpa_master.php?master_cd=INS',NULL,'Y','THIMS','2030-04-20 18:18:00','','0000-00-00 00:00:00'),(461,'Discharge Summary Elements','','far fa-circle','./../../pages/lab/general_master.php?master_cd=DISCSUMM',NULL,'Y','THIMS','2013-05-20 18:18:00','','0000-00-00 00:00:00'),(462,'Pay Mode wise Receipt Summary-Hospital','','far fa-circle','./../../pages/report/dayWiseReceiptReport.php',NULL,'Y','THIMS','2025-04-20 18:18:00','','0000-00-00 00:00:00'),(463,'Total Receipt Summary','','far fa-circle','./../../pages/report/dayWiseReceiptReportTotalInput.php',NULL,'Y','THIMS','2025-04-20 18:18:00','','0000-00-00 00:00:00'),(464,'Insurance Detail Report','','far fa-circle','./../../pages/report/insuranceDetailReportInput.php',NULL,'Y','THIMS','2025-04-20 18:18:00','','0000-00-00 00:00:00'),(683,'LAB Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php?billing_entity=L',NULL,'Y','thims','2026-05-22 13:18:00','','0000-00-00 00:00:00'),(470,'Radiology Film Consumption Report','','far fa-circle','./../../pages/report/radiologyFilmConsumptionReportInput.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(471,'Reception Dashboard','','far fa-circle','./../../pages/dashboard/doctorWiseListDashboard.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(472,'Material Request','','far fa-\r\ncircle','StoreMrDashboard/User',NULL,'Y','thims','2020-06-20 00:00:00','','0000-00-00 00:00:00'),(473,'Approve Material Request','','far fa-\r\ncircle','StoreMrDashboard/SuperUser',NULL,'Y','thims','2020-06-20 00:00:00','','0000-00-00 00:00:00'),(481,'Pathology Sample Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=LBSAMPLE',NULL,'Y','THIMS','2005-08-20 11:18:00','','0000-00-00 00:00:00'),(482,'IP DASHBOARD','','far fa-circle','./../../pages/dashboard/ip_billing_workbook.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(483,'User Access Report','','far fa-circle','./../../pages/admin/UserAccess.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(484,'Material Issue Note With MR','','far fa-\r\ncircle','StoreMrDashboard/ApprovedMaterialRequestList',NULL,'Y','thims','2002-07-20 00:00:00','','0000-00-00 00:00:00'),(485,'IP Medicine Issue Lead Time Report','','far fa-\r\ncircle','Item/ipMedicineIssueLeadTimeReportInput',NULL,'Y','thims','2004-07-20 00:00:00','','0000-00-00 00:00:00'),(486,'Purchase Detail - Supp / Item Wise','','far fa-\r\ncircle','Item/PurchaseDetailReportInput',NULL,'Y','thims','2006-07-20 00:00:00','','0000-00-00 00:00:00'),(487,'Doctor Wise Sales Report','','far fa-\r\ncircle','Item/DoctorWiseSalesReportInput',NULL,'Y','thims','2017-07-20 00:00:00','','0000-00-00 00:00:00'),(488,'Purchase Detail - Supp / Item Wise','','far fa-\r\ncircle','StoreItem/PurchaseDetailReportInput',NULL,'Y','thims','2030-07-20 00:00:00','','0000-00-00 00:00:00'),(489,'Product Expiry Report','','far fa-\r\ncircle','StoreItem/productExpiryInput',NULL,'Y','thims','2030-07-20 00:00:00','','0000-00-00 00:00:00'),(492,'Lab Report Printing','','far fa-circle','./../../pages/lab/dept_lab_service.php?onlyPrinting=Y',NULL,'Y','THIMS','2001-09-20 13:18:00','','0000-00-00 00:00:00'),(493,'Package Configuration','','far fa-circle','./../../pages/admin/package_configuration.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(494,'Delivery Challan','','far fa-\r\ncircle','Item/deliveryChallan',NULL,'Y','thims','2027-08-20 00:00:00','','0000-00-00 00:00:00'),(495,'Delivery Challan Return','','far fa-\r\ncircle','Item/deliveryChallanReturn',NULL,'Y','thims','2028-08-20 00:00:00','','0000-00-00 00:00:00'),(496,'Delivery Challan List','','far fa-\r\ncircle','TransactionDashboard/DeliveryChallan',NULL,'Y','thims','2028-08-20 00:00:00','','0000-00-00 00:00:00'),(497,'Delivery Challan Return List','','far fa-\r\ncircle','TransactionDashboard/DeliveryChallanReturn',NULL,'Y','thims','2028-08-20 00:00:00','','0000-00-00 00:00:00'),(498,'Purchase Order','','far fa-\r\ncircle','StorePoDashboard/PharmacyUser',NULL,'Y','thims','2004-09-20 00:00:00','','0000-00-00 00:00:00'),(499,'Approve Purchase Order','','far fa-\r\ncircle','StorePoDashboard/PharmacySuperUser',NULL,'Y','thims','2004-09-20 00:00:00','','0000-00-00 00:00:00'),(500,'PO Reprint','','far fa-\r\ncircle','StorePo/PharmacyReprint',NULL,'Y','thims','2004-09-20 00:00:00','','0000-00-00 00:00:00'),(501,'Lab Request TAT Report','RP','far fa-circle','./../../pages/report/turnAroundTimeLabReqInput.php','','Y','THIMS','2001-09-20 13:18:00','thims','2014-09-20 15:26:00'),(502,'Document Status Report','','far fa-circle','./../../pages/report/documentStatusReportInput.php',NULL,'Y','THIMS','2001-09-20 13:18:00','','0000-00-00 00:00:00'),(503,'Kit Master','','far fa-circle','./../..//pages/admin/kit_master.php',NULL,'Y','thims','2014-09-20 00:00:00','thims','2014-09-18 10:02:00'),(504,'Revenue Share Setup','','far fa-circle','./../../pages/setup/revenuesetup.php',NULL,'Y','thims','2014-09-20 00:00:00','thims','2014-09-18 10:02:00'),(505,'Expiry Update Transaction','','far fa-\r\ncircle','Item/ExpiryUpdateTransaction',NULL,'Y','thims','2022-09-20 00:00:00','','0000-00-00 00:00:00'),(506,'MRP Update Transaction','','far fa-\r\ncircle','Item/MrpUpdateTransaction',NULL,'Y','thims','2023-09-20 00:00:00','','0000-00-00 00:00:00'),(507,'Expiry Update Transaction','','far fa-\r\ncircle','Item/StoreExpiryUpdateTransaction',NULL,'Y','thims','2022-09-20 00:00:00','','0000-00-00 00:00:00'),(508,'MRP Update Transaction','','far fa-\r\ncircle','Item/StoreMrpUpdateTransaction',NULL,'Y','thims','2023-09-20 00:00:00','','0000-00-00 00:00:00'),(509,'Opening Stock Update Transaction','','far fa-\r\ncircle','Item/OpeningStockUpdateTransaction',NULL,'Y','thims','2024-09-20 00:00:00','','0000-00-00 00:00:00'),(510,'Opening Stock Update Transaction','','far fa-\r\ncircle','Item/StoreOpeningStockUpdateTransaction',NULL,'Y','thims','2026-09-20 00:00:00','','0000-00-00 00:00:00'),(511,'Cycle Count Adjustment - Item Wise','','far fa-\r\ncircle','Item/stockCycleReportItemWise',NULL,'Y','thims','2029-09-20 00:00:00','','0000-00-00 00:00:00'),(512,'Room Occupacy History Report','','far fa-circle','./../../pages/report/roomOccupancyHistoryInput.php',NULL,'Y','THIMS','2006-10-20 13:18:00','','0000-00-00 00:00:00'),(513,'Radiology Request Waiting Time Report','','far fa-circle','./../../pages/report/radiologyRequestWaitingTimeInput.php',NULL,'Y','THIMS','2006-10-20 13:18:00','','0000-00-00 00:00:00'),(514,'Consultancy Waiting Time Report','','far fa-circle','./../../pages/report/consultancyWaitingTimeInput.php',NULL,'Y','THIMS','2006-10-20 13:18:00','','0000-00-00 00:00:00'),(515,'Bill Amendment Report','','far fa-circle','./../../pages/report/iPBillAmendmentInput.php',NULL,'Y','THIMS','2006-10-20 13:18:00','','0000-00-00 00:00:00'),(520,'Surgery Schedule','','far fa-circle','./../../pages/ward/operation_scheduler.php',NULL,'Y','THIMS','2009-10-20 18:18:00','','0000-00-00 00:00:00'),(521,'Doctor - Services Assignment Setup','','far fa-circle','./../../pages/setup/service_doctor_assignment.php',NULL,'Y','thims','2014-10-20 10:00:00','','0000-00-00 00:00:00'),(522,'Room Release','','far fa-circle','./../../pages/registration/roomRelease.php?access=Y',NULL,'Y','thims','2014-10-20 10:00:00','','0000-00-00 00:00:00'),(523,'Investigation Group Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=INVM',NULL,'Y','thims','2019-10-20 10:00:00','','0000-00-00 00:00:00'),(525,'Block Room','','far fa-circle','./../../pages/registration/roomBlock.php?blockAccess=Y',NULL,'Y','thims','2023-10-20 10:00:00','','0000-00-00 00:00:00'),(526,'Purchase With PO','','far fa-\r\ncircle','Item/purchaseWithPo',NULL,'Y','thims','2008-10-20 00:00:00','','0000-00-00 00:00:00'),(527,'Purchase - Cash','','far fa-\r\ncircle','Item/purchaseCash',NULL,'Y','thims','2007-11-20 00:00:00','','0000-00-00 00:00:00'),(528,'Surgery Package Configuration','','far fa-circle','./../../pages/admin/surgery_package_configuration.php',NULL,'Y','thims','2023-10-20 10:00:00','','0000-00-00 00:00:00'),(530,'TDS Report','','far fa-circle','./../../pages/report/ipTdsReportInput.php',NULL,'Y','thims','2023-10-20 10:00:00','','0000-00-00 00:00:00'),(531,'Barcode Based Product Inquiry','','far fa-\r\ncircle','Item/BarcodeBasedProductInquiry',NULL,'Y','thims','2019-11-20 00:00:00','','0000-00-00 00:00:00'),(532,'Sales Discount Report','','far fa-\r\ncircle','Item/SalesDiscountReportInput',NULL,'Y','thims','2020-11-20 00:00:00','','0000-00-00 00:00:00'),(533,'Reorder Request Report','','far fa-\r\ncircle','Item/ReorderRequestReportInput',NULL,'Y','thims','2025-11-20 00:00:00','','0000-00-00 00:00:00'),(534,'Sale Discount Edit','','far fa-\r\ncircle','Item/issueBillDiscountAmendment',NULL,'Y','thims','2027-11-20 00:00:00','','0000-00-00 00:00:00'),(535,'Lab Service Test Detail','','far fa-circle','./../../pages/report/lab_service_test.php',NULL,'Y','THIMS','2014-10-20 18:18:00','','0000-00-00 00:00:00'),(536,'Lab Test Bill Detail','','far fa-circle','./../../pages/report/lab_test_report.php',NULL,'Y','THIMS','2014-10-20 18:18:00','','0000-00-00 00:00:00'),(537,'Expense Voucher','','far fa-circle','./../../pages/admin/expense_Voucher.php',NULL,'Y','THIMS','2014-10-20 18:18:00','','0000-00-00 00:00:00'),(538,'Expense Voucher Report','','far fa-circle','./../../pages/report/expenseVoucherReport.php',NULL,'Y','THIMS','2020-11-20 18:18:00','','0000-00-00 00:00:00'),(790,'Mandal Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php?billing_entity=M',NULL,'Y','thims','2001-04-24 19:18:00','','0000-00-00 00:00:00'),(543,'Swap Transaction','','far fa-circle','./../../pages/billing/swapAmtDenomination.php',NULL,'Y','THIMS','2021-12-20 18:18:00','','0000-00-00 00:00:00'),(31,'OP Registration Report (Ref Doctor Wise)','','far fa-circle','./../../pages/report/reff_Doc_Report.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(547,'Pharmacy Expense Voucher','','far fa-circle','./../../pages/admin/pharmacy_expense_voucher.php',NULL,'Y','THIMS','2012-12-20 18:18:00','','0000-00-00 00:00:00'),(548,'Pharmacy Expense Report','','far fa-circle','./../../pages/report/pharmacyExpenseVoucherReport.php',NULL,'Y','THIMS','2015-12-20 18:18:00','','0000-00-00 00:00:00'),(550,'Purchase Scheme Amount Report','','far fa-\r\ncircle','Item/PurchaseSchemeAmountReportInput',NULL,'Y','thims','2015-12-20 00:00:00','','0000-00-00 00:00:00'),(551,'Purchase Order Amendment','','far fa-\r\ncircle','StorePo/PurchaseOrderAmendment',NULL,'Y','thims','2016-12-20 00:00:00','','0000-00-00 00:00:00'),(552,'Purchase Order Amendment','','far fa-\r\ncircle','StorePo/StorePurchaseOrderAmendment',NULL,'Y','thims','2016-12-20 00:00:00','','0000-00-00 00:00:00'),(211,'Ref. Doctor Wise OP Registration Report w/ <br/> Diagnosis ','','far fa-circle','./../../pages/report/reff_Doc_Report.php?type=D',NULL,'Y','THIMS','2015-09-18 15:39:00','','0000-00-00 00:00:00'),(555,'Diagnosis & Prescription (New)','','far fa-circle','./../../pages/Doctor/patQueueList.php',NULL,'Y','THIMS','2021-12-20 18:18:00','','0000-00-00 00:00:00'),(556,'Patient Wise Profit Report','','far fa-\r\ncircle','Item/PatientWiseProfitReportInput',NULL,'Y','thims','2004-01-21 00:00:00','','0000-00-00 00:00:00'),(210,'Re-Order Report','','far fa-circle','./../../pages/report/reorder.php',NULL,'Y','THIMS','2015-09-18 10:22:00','','0000-00-00 00:00:00'),(560,'Bill Report With Service Details - Refferal Doctor Wise','','far fa-circle','./../../pages/report/billReportDetailReffDocWise.php',NULL,'Y','THIMS','2005-01-20 18:18:00','','0000-00-00 00:00:00'),(561,'Bin Master','','far fa-circle','./../../pages/bin/bin_master.php',NULL,'Y','THIMS','2005-01-20 18:18:00','','0000-00-00 00:00:00'),(562,'LOC Master','','far fa-circle','./../../pages/location/location_master.php',NULL,'Y','THIMS','2005-01-20 18:18:00','','0000-00-00 00:00:00'),(563,'Asset Branch Master','','far fa-circle','./../../pages/asset/asset_branch_master.php',NULL,'Y','THIMS','2005-01-20 18:18:00','','0000-00-00 00:00:00'),(564,'Asset Location Master','','far fa-circle','./../../pages/asset/asset_location_master.php',NULL,'Y','THIMS','2005-01-20 18:18:00','','0000-00-00 00:00:00'),(565,'Asset Type Master','','far fa-circle','./../../pages/asset/asset_type_master.php',NULL,'Y','THIMS','2005-01-20 18:18:00','','0000-00-00 00:00:00'),(566,'OP Bill Payment Collection','','far fa-circle','./../../pages/billing/finalBillList.php?ipdOpd=O',NULL,'Y','THIMS','2019-01-20 18:18:00','','0000-00-00 00:00:00'),(567,'Store Wise Product Details','','far fa-\r\ncircle','Item/StoreWiseProductDetails',NULL,'Y','thims','2019-01-21 00:00:00','','0000-00-00 00:00:00'),(519,'SOC Master Report','','far fa-circle','./../../pages/report/socMasterInput.php',NULL,'Y','THIMS','2012-10-20 13:18:00','','0000-00-00 00:00:00'),(541,'Write off Report','','far fa-circle','./../../pages/report/write_off_report_input.php',NULL,'Y','thims','2023-10-20 10:00:00','','0000-00-00 00:00:00'),(687,'MOU Report','','far fa-circle','./../../pages/report/write_off_report_input.php?report_type=M',NULL,'Y','thims','2018-06-22 13:18:00','','0000-00-00 00:00:00'),(574,'Pathology Patient List','','far fa-circle','./../../pages/registration/pathoPatientList.php',NULL,'Y','thims','2026-03-21 18:18:00','','0000-00-00 00:00:00'),(575,'Shift Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=SHIFT',NULL,'Y','thims','2013-04-21 18:18:00','','0000-00-00 00:00:00'),(576,'Pathology Bill','','far fa-circle','./../../pages/billing/bill.php?ipd_opd=L',NULL,'Y','thims','2017-04-21 18:18:00','','0000-00-00 00:00:00'),(577,'Radiology Bill','','far fa-circle','./../../pages/billing/bill.php?ipd_opd=R',NULL,'Y','thims','2017-04-21 18:18:00','','0000-00-00 00:00:00'),(578,'Pathology Bill Report','','far fa-circle','./../../pages/billing/opd_input.php?billing_entity=L',NULL,'Y','thims','2019-04-21 18:18:00','','0000-00-00 00:00:00'),(579,'Radiology Bill Report','','far fa-circle','./../../pages/billing/opd_input.php?billing_entity=R',NULL,'Y','thims','2019-04-21 18:18:00','','0000-00-00 00:00:00'),(34,'In Patient List','','far fa-circle','./../../pages/room/room_alocation_in.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(1,'Program List','','far fa-circle','./../../pages/setup/programListMaster.php',NULL,'Y','thims','2014-09-18 10:00:00','thims','2014-09-18 10:02:00'),(584,'SMH QA Detail','','far fa-circle','./../../pages/report/smh.php',NULL,'Y','THIMS','2001-05-21 18:18:00','','0000-00-00 00:00:00'),(585,'SMH Rx','','far fa-circle','./../../pages/report/smh1.php',NULL,'Y','THIMS','2001-05-21 18:18:00','','0000-00-00 00:00:00'),(593,'LAB Client Master','','far fa-circle','./../../pages/setup/agency_master.php?clientmaster=Y',NULL,'Y','THIMS','2015-05-21 19:18:00','','0000-00-00 00:00:00'),(594,'LAB Bill Cancellation','','far fa-circle','./../../pages/cancle/bill_cancel.php?ipd_opd=O&&bill_entity=L',NULL,'Y','thims','2015-05-21 19:18:00','','0000-00-00 00:00:00'),(595,'Client Wise Bill report','','far fa-circle','./../../pages/report/clientWiseDetailReport.php',NULL,'Y','thims','2018-05-21 19:18:00','','0000-00-00 00:00:00'),(596,'LAB Bill Payment Collection','','far fa-circle','./../../pages/billing/finalBillList.php?ipdOpd=O&labCollection=Y',NULL,'Y','THIMS','2019-05-21 18:18:00','','0000-00-00 00:00:00'),(598,'LAB Credit Bill (Reversal Of Bill)','','far fa-circle','./../../pages/billing/partiallyCreditBill.php?bill_entity=L',NULL,'Y','thims','2020-05-21 19:18:00','','0000-00-00 00:00:00'),(599,'LAB Bill Rectification','','far fa-circle','./../../pages/billing/opBillPartiallyEdit.php?bill_entity=L',NULL,'Y','thims','2021-05-21 19:18:00','','0000-00-00 00:00:00'),(600,'LAB Bill Amendment','','far fa-circle','./../../pages/billing/billEditSearchList.php?bill_entity=L',NULL,'Y','thims','2021-05-21 19:18:00','','0000-00-00 00:00:00'),(626,'Tally Export Flag Reversal','','far fa-circle','./../../pages/tallyxml/tallyxmlFlagUpdate.php',NULL,'Y','THIMS','2009-09-21 02:18:00','','0000-00-00 00:00:00'),(442,'Surgery Detail Edit','','far fa-circle','./../../pages/ward/operationDetail_Edit.php',NULL,'Y','thims','2005-02-20 10:00:00','','2005-02-20 10:02:00'),(50,'Operation Details','','far fa-circle','./../../pages/ward/ot_room_detail.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(606,'Consignment Purchase','','far fa-\r\ncircle','Item/ConsignmentPurchase',NULL,'Y','thims','2024-03-21 00:00:00','','0000-00-00 00:00:00'),(607,'Consignment Purchase Return','','far fa-\r\ncircle','Item/ConsignmentPurchaseReturn',NULL,'Y','thims','2024-03-21 00:00:00','','0000-00-00 00:00:00'),(608,'Consignment Purchase List','','far fa-\r\ncircle','TransactionDashboard/ConsignmentPurchase',NULL,'Y','thims','2024-03-21 00:00:00','','0000-00-00 00:00:00'),(609,'Consignment Purchase Return List','','far fa-\r\ncircle','TransactionDashboard/ConsignmentPurchaseReturn',NULL,'Y','thims','2024-03-21 00:00:00','','0000-00-00 00:00:00'),(610,'Consignment Transaction Register','','far fa-\r\ncircle','Item/ConsignmentRegisterInput',NULL,'Y','thims','2026-03-21 00:00:00','','0000-00-00 00:00:00'),(311,'Product Categories','','far fa-circle','Category/list',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(614,'IP Patient Care New','','far fa-circle','./../../pages/ward/exam_medi_reco_result_V1.php',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(381,'Attrition and NewJoinee Report','','far fa-circle','Hrms/AttritionAndNewJoineeReportInput',NULL,'Y','thims','2006-06-19 02:10:00','','0000-00-00 00:00:00'),(617,'Direct Bill Report','','far fa-circle','./../../pages/billing/opd_input.php?billing_entity=O&&DirectBill=Y',NULL,'Y','THIMS','2017-08-21 16:09:00','','0000-00-00 00:00:00'),(619,'IP Bill Rate Edit','','far fa-circle','./../../pages/ipd_bill/ipBillRateEdit.php',NULL,'Y','thims','2013-08-21 18:18:00','','0000-00-00 00:00:00'),(620,'OP Patient Care For MO','','far fa-circle','./../../pages/Doctor/patQueueListForMO.php',NULL,'Y','THIMS','2021-12-20 18:18:00','','0000-00-00 00:00:00'),(621,'Radiology Service Request','','far fa-circle','./../../pages/ward/ward_req.php?grp_cd=XRY',NULL,'Y','thims','2013-08-21 18:18:00','','0000-00-00 00:00:00'),(622,'Medicine Instruction New','','far fa-circle','./../../pages/setup/multi_language_inst.php?mli_grp=MINST',NULL,'Y','THIMS','2027-08-21 18:18:00','','0000-00-00 00:00:00'),(623,'General Instruction Master','','far fa-circle','./../../pages/setup/multi_language_inst.php?mli_grp=PLAN',NULL,'Y','THIMS','2027-08-21 18:18:00','','0000-00-00 00:00:00'),(624,'LAB Charges B to B','','far fa-circle','./../../pages/admin/btob_charges.php',NULL,'Y','THIMS','2002-09-21 02:18:00','','0000-00-00 00:00:00'),(625,'Single IP Pharmacy Bill','','far fa-\r\ncircle','Item/SingleIpPharmacyBill',NULL,'Y','thims','2017-07-21 00:00:00','','0000-00-00 00:00:00'),(404,'Holiday List','','far fa-circle','Hrms/hrmsHolidayList',NULL,'Y','thims','2019-08-19 12:18:00','','0000-00-00 00:00:00'),(627,'OP/IP Bill Rectification','','far fa-circle','./../../pages/billing/patientBillList.php',NULL,'Y','THIMS','2027-08-21 18:18:00','','0000-00-00 00:00:00'),(630,'OP IP Bill View','','far fa-circle','./../../pages/billing/patientBillList.php?billView=Y',NULL,'Y','THIMS','2027-08-21 18:18:00','','0000-00-00 00:00:00'),(631,'EDD Report','','far fa-circle','./../../pages/report/edd_report.php',NULL,'Y','THIMS','2027-08-21 18:18:00','','0000-00-00 00:00:00'),(633,'Past data (win MD) Preview','','far fa-circle','./../../pages/report/smh_search.php',NULL,'Y','THIMS','2014-10-21 18:18:00','','0000-00-00 00:00:00'),(634,'Operation Step Profile Master','','far fa-circle','./../../pages/setup/opStepProfileMaster.php',NULL,'Y','THIMS','2014-10-21 18:18:00','','0000-00-00 00:00:00'),(636,'LAB Summary Elements','','far fa-circle','./../../pages/lab/general_master.php?master_cd=LABELEMT',NULL,'Y','THIMS','2008-11-21 18:18:00','','0000-00-00 00:00:00'),(637,'Lab Result Input - Biopsy','','far fa-circle','./../../pages/lab/dept_lab_service.php?biopsyReport=Y',NULL,'Y','THIMS','2008-11-21 13:18:00','','0000-00-00 00:00:00'),(639,'Room Transfer Request','','far fa-circle','./../../pages/room/roomTransferRequest.php?transfer_request=Y',NULL,'Y','THIMS','2030-12-21 13:18:00','','0000-00-00 00:00:00'),(640,'Room Transfer','','far fa-circle','./../../pages/room/roomTransferRequest.php?transfer_request=N',NULL,'Y','THIMS','2030-12-21 13:18:00','','0000-00-00 00:00:00'),(641,'Agency Wise B TO B Charges','','far fa-circle','./../../pages/admin/agencywise_btob_charges.php',NULL,'Y','THIMS','2022-01-21 13:18:00','','0000-00-00 00:00:00'),(642,'Copy Pharmacy Bill(111 to 009)','','far fa-circle','./../../pages/auto_backup/auto_copy_product_transaction_input.php',NULL,'Y','thims','2017-02-21 13:18:00','','0000-00-00 00:00:00'),(643,'Notification MSG Master','','far fa-circle','./../../pages/admin/notificationMsgMaster.php',NULL,'Y','thims','2002-02-21 13:18:00','','0000-00-00 00:00:00'),(644,'Shift Master','','far fa-circle','./../attendance/shift_master.php','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(645,'Shift Schedule - HR','','far fa-circle','./../attendance/employee_shift_schedule?fn_by=H','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(646,'Shift Schedule - Superwiser','','far fa-circle','./../attendance/employee_shift_schedule?fn_by=S','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(647,'Attendance Calculation','','far fa-circle','./../attendance/attendance_calculation.php','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(648,'Attendance LOP days finding','','far fa-circle','./../attendance/attendance_lop_days_finding.php','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(649,'Attendence Finalization - HR','','far fa-circle','./../attendance/attendence_finalization?finalization_by=H','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(650,'Attendence Finalization - Superwiser','','far fa-circle','./../attendance/attendence_finalization?finalization_by=S','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(651,'Employee Attendance Check','','far fa-circle','./../attendance/new_employee_attendence_check_approve?ctype=R','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(652,'Employee Time Correction Approve','','far fa-circle','./../attendance/new_employee_attendence_check_approve?ctype=A','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(605,'Bill - Receipt Unsettlement','','far fa-\r\ncircle','Item/BillReceiptUnsettleInput',NULL,'Y','thims','2005-03-21 00:00:00','','0000-00-00 00:00:00'),(611,'Consignment DC','','far fa-\r\ncircle','Item/ConsignmentDeliveryChallan',NULL,'Y','thims','2027-03-21 00:00:00','','0000-00-00 00:00:00'),(612,'Consignment DC Return','','far fa-\r\ncircle','Item/ConsignmentDeliveryChallanReturn',NULL,'Y','thims','2027-03-21 00:00:00','','0000-00-00 00:00:00'),(660,'Recently Visited Menus','','far fa-clock-o','./../../pages/admin/transaction_history.php',NULL,'Y','thims','2023-02-21 13:18:00','','0000-00-00 00:00:00'),(661,'Laundry Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=LAUNDRY',NULL,'Y','thims','2023-02-21 13:18:00','','0000-00-00 00:00:00'),(662,'OP/IP Revenue Share Report New','','far fa-circle','./../../pages/report/three_tier_revenue_share_report_input.php',NULL,'Y','thims','2023-02-21 13:18:00','','0000-00-00 00:00:00'),(663,'OP/IP Revenue Share Edit','','far fa-circle','./../../pages/report/three_tier_revenue_share_Edit.php',NULL,'Y','thims','2023-02-21 13:18:00','','0000-00-00 00:00:00'),(664,'Revenue Share Setup New','','far fa-circle','./../../pages/setup/revenue_setup_new.php',NULL,'Y','thims','2023-02-21 13:18:00','','0000-00-00 00:00:00'),(666,'Upload Charges','','far fa-circle','./../../pages/report/uploadCharges.php',NULL,'Y','thims','2025-03-22 13:18:00','','0000-00-00 00:00:00'),(667,'Surgery Detail Report','','far fa-circle','./../../pages/report/operationReport.php',NULL,'Y','thims','2025-03-22 13:18:00','','0000-00-00 00:00:00'),(668,'Upload DepartmentWise Charges','','far fa-circle','./../../pages/report/uploadDeptWiseCharges.php',NULL,'Y','thims','2004-04-22 13:18:00','','0000-00-00 00:00:00'),(669,'Upload ConsultantLevel Charges','','far fa-circle','./../../pages/report/uploadConsultantWiseCharges.php',NULL,'Y','thims','2004-04-22 13:18:00','','0000-00-00 00:00:00'),(670,'Upload GradeWise Charges','','far fa-circle','./../../pages/report/uploadSurgeryGradeWiseCharges.php',NULL,'Y','thims','2004-04-22 13:18:00','','0000-00-00 00:00:00'),(671,'Cycle Report','','far fa-circle','Item/cycleReportInput',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(672,'Cycle List','','far fa-circle','Item/cycleList',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(673,'OP/IP Revenue Share Report Print','','far fa-circle','./../../pages/report/three_tier_revenue_share_report_input.php?print=Y',NULL,'Y','thims','2023-02-21 13:18:00','','0000-00-00 00:00:00'),(674,'Cycle Cancel','','far fa-circle','Item/cycleCancellationInput',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(859,'View Salary Report','','far fa-circle','SalaryReport_emp',NULL,'Y','thims','2024-05-04 00:00:00','','0000-00-00 00:00:00'),(677,'Upload Health Package Charges','','far fa-circle','./../../pages/report/uploadHealthPackage.php',NULL,'Y','thims','2006-05-22 13:18:00','','0000-00-00 00:00:00'),(678,'OP BIll - Day Summary','','far fa-circle','./../../pages/tallyxml/billing_voucher_summary_export_ui.php',NULL,'Y','THIMS','2019-10-21 14:18:00','','0000-00-00 00:00:00'),(679,'OP Receipt - Day Summary','','far fa-circle','./../../pages/tallyxml/receipt_voucher_summary_export_ui.php',NULL,'Y','THIMS','2019-10-21 14:18:00','','0000-00-00 00:00:00'),(680,'OP BIll - Individual','','far fa-circle','./../../pages/tallyxml/op_billing_detail_voucher_export_ui.php',NULL,'Y','THIMS','2019-10-21 14:18:00','','0000-00-00 00:00:00'),(681,'OP Receipt - Individual','','far fa-circle','./../../pages/tallyxml/op_receipt_detail_voucher_export_ui.php',NULL,'Y','THIMS','2019-10-21 14:18:00','','0000-00-00 00:00:00'),(682,'Vital Master','','far fa-circle','./../../pages/admin/vitalMaster.php',NULL,'Y','thims','2020-05-22 13:18:00','','0000-00-00 00:00:00'),(544,'Non / Slow Moving Product Report','','far fa-\r\ncircle','Item/deadStockInput',NULL,'Y','thims','2002-12-20 00:00:00','','0000-00-00 00:00:00'),(684,'Radiology Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php?billing_entity=R',NULL,'Y','thims','2026-05-22 13:18:00','','0000-00-00 00:00:00'),(858,'View Shift','','far fa-circle','FinalSalaryInput',NULL,'Y','thims','2024-02-19 00:00:00','','0000-00-00 00:00:00'),(686,'Pharmacy Receipt Edit','','far fa-circle','./../../pages/report/pharmacy_receipt_edit.php',NULL,'Y','thims','2026-05-22 13:18:00','','0000-00-00 00:00:00'),(690,'Product Configuration','','far fa-circle','./../../pages/setup/parameterSetup.php',NULL,'Y','thims','2018-06-22 13:18:00','','0000-00-00 00:00:00'),(441,'Pharmacy Earning Summary','','far fa-circle','Item/medicalStoreCollectionReportInput',NULL,'Y','thims','2016-12-19 18:18:00','','0000-00-00 00:00:00'),(692,'Dialysis Bill','','far fa-circle','./../../pages/billing/bill.php?ipd_opd=D',NULL,'Y','thims','2002-07-22 13:18:00','','0000-00-00 00:00:00'),(693,'Dialysis Bill Report','','far fa-circle','./../../pages/billing/opd_input.php?billing_entity=D',NULL,'Y','thims','2002-07-22 13:18:00','','0000-00-00 00:00:00'),(694,'Dialysis Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php?billing_entity=D',NULL,'Y','thims','2002-07-22 13:18:00','','0000-00-00 00:00:00'),(695,'Dialysis Bill Cancellation','','far fa-circle','./../../pages/cancle/bill_cancel.php?ipd_opd=O&&bill_entity=D',NULL,'Y','thims','2002-07-22 19:18:00','','0000-00-00 00:00:00'),(857,'Count & Revenue Summary - Period Wise Comparison','','far fa-circle','./../../pages/report/patientCountRevenueComparision.php',NULL,'Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(856,'Mandal Earning Summary - Day Wise','','far fa-circle','./../../pages/report/dayWiseHospitalEarningReport.php?mandal=Y',NULL,'Y','THIMS','2024-08-21 18:18:12','','0000-00-00 00:00:00'),(701,'Data Modified List','','far fa-circle','./../../pages/admin/dataFieldsModification.php',NULL,'Y','thims','2009-08-22 19:18:00','','0000-00-00 00:00:00'),(702,'Service Master Approval','','far fa-circle','./../../pages/admin/service_master_approval.php',NULL,'Y','thims','2018-06-22 13:18:00','','0000-00-00 00:00:00'),(703,'OP - IP GST Report','','far fa-circle','./../../pages/report/gst_report.php',NULL,'Y','thims','2023-09-22 13:18:00','','0000-00-00 00:00:00'),(704,'OPD Charge Master Approval','','far fa-circle','./../../pages/admin/opdChargeMaster_Approval.php',NULL,'Y','thims','2018-06-22 13:18:00','','0000-00-00 00:00:00'),(433,'Patient Wise Bill Report','','far fa-circle','Item/patientWiseBillReport',NULL,'Y','thims','2016-12-19 18:18:00','','0000-00-00 00:00:00'),(474,'Sales Write Off Report','','far fa-\r\ncircle','Item/SalesWriteOffInput',NULL,'Y','thims','2025-06-20 00:00:00','','0000-00-00 00:00:00'),(711,'Package Configuration Approval','','far fa-circle','./../../pages/admin/package_configuration_approval.php',NULL,'Y','thims','2018-06-22 13:18:00','','0000-00-00 00:00:00'),(855,'Rev & Receipt Summary - Mandal','','far fa-circle','./../../pages/report/op_ip_bill_report_summary.php?mandal=Y',NULL,'Y','THIMS','2024-08-21 18:18:12','','0000-00-00 00:00:00'),(854,'Pay Mode wise Receipt Summary-Mandal','','far fa-circle','./../../pages/report/dayWiseReceiptReport.php?mandal=Y',NULL,'Y','THIMS','2024-08-21 18:18:12','','0000-00-00 00:00:00'),(853,'Asset View','','far fa-circle','./../../pages/asset/asset_master.php?view=Y',NULL,'Y','THIMS','2024-07-12 12:54:12','','0000-00-00 00:00:00'),(852,'Payment Write Off With Search','','far fa-circle','Item/PaymentWriteOffSearch',NULL,'Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(851,'Payment Collection With Search','','far fa-circle','Item/PaymentCollectionSearch',NULL,'Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(850,'Payment WriteOff','','far fa-circle','Item/PaymentWriteOff',NULL,'Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(849,'IP Bill Wise DC/DCR Report','','far fa-circle','Item/IPBillWiseDcDcrReportInput',NULL,'Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(727,'Income Distribution Report','','far fa-circle','./../../pages/report/incomeDistributionReport.php',NULL,'Y','thims','2028-12-22 13:18:00','','0000-00-00 00:00:00'),(848,'Room Category Wise Revenue','','far fa-circle','./../../pages/report/roomCategoryWiseRevenueReportInput.php',NULL,'Y','THIMS','2024-09-01 12:54:12','','0000-00-00 00:00:00'),(432,'Cycle Count Release','','far fa-circle','Item/stockCycleRelease',NULL,'Y','thims','2016-12-19 18:18:00','','0000-00-00 00:00:00'),(730,'Business Entity Doctor Mapping','','far fa-circle','./../../pages/admin/doctorEntityMappingMater.php',NULL,'Y','thims','2002-01-23 13:18:00','','0000-00-00 00:00:00'),(731,'Doctor/Entity Update In Bill','','far fa-circle','./../../pages/billing/billDoctorEntityUpdate.php',NULL,'Y','thims','2002-01-23 13:18:00','','0000-00-00 00:00:00'),(732,'User Role Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=USERROLE',NULL,'Y','THIMS','2031-01-23 11:18:00','','0000-00-00 00:00:00'),(733,'Pharmacy Profit Report - OP & Cust','','far fa-circle','Item/profitReportInputOp',NULL,'Y','thims','2008-03-19 10:15:00','','0000-00-00 00:00:00'),(734,'Business Entity Room Mapping','','far fa-circle','./../../pages/admin/roomEntityMappingMaster.php',NULL,'Y','thims','2015-02-23 13:18:00','','0000-00-00 00:00:00'),(735,'Medicine Schedule Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=SCHPHA',NULL,'Y','thims','2006-03-23 18:18:00','','0000-00-00 00:00:00'),(736,'GST Credit Note','','far fa-circle','Item/GSTCreditnote',NULL,'Y','thims','2006-03-23 18:18:00','','0000-00-00 00:00:00'),(737,'GST Credit Note Report','','far fa-circle','Item/GSTCreditNoteReportInput',NULL,'Y','thims','2006-03-23 18:18:00','','0000-00-00 00:00:00'),(738,'BMSH MIS Report','','far fa-circle','./../../pages/report/mis_daily_report.php',NULL,'Y','thims','2003-04-23 18:18:00','','0000-00-00 00:00:00'),(739,'Bariatric Data Analysis Report','','far fa-circle','./../../pages/report/bariatric_data_analysis_report_Input.php',NULL,'Y','THIMS','2011-04-23 02:18:00','','0000-00-00 00:00:00'),(740,'Blood Bank Bill','','far fa-circle','./../../pages/billing/bill.php?ipd_opd=B',NULL,'Y','thims','2022-03-23 13:18:00','','0000-00-00 00:00:00'),(741,'Blood Bank Bill Report','','far fa-circle','./../../pages/billing/opd_input.php?billing_entity=B',NULL,'Y','thims','2022-03-23 13:18:00','','0000-00-00 00:00:00'),(742,'Blood Bank Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php?billing_entity=B',NULL,'Y','thims','2022-03-23 13:18:00','','0000-00-00 00:00:00'),(743,'Blood Bank Bill Cancellation','','far fa-circle','./../../pages/cancle/bill_cancel.php?ipd_opd=O&&bill_entity=B',NULL,'Y','thims','2022-03-23 19:18:00','','0000-00-00 00:00:00'),(744,'Radiology Charges B to B','','far fa-circle','./../../pages/admin/btob_charges.php?group=xry',NULL,'Y','THIMS','2010-04-23 02:18:00','','0000-00-00 00:00:00'),(745,'Bill Bifurcation Report','','far fa-circle','./../../pages/report/doctorAllocationWiseBillReport.php',NULL,'Y','THIMS','2011-04-23 02:18:00','','0000-00-00 00:00:00'),(746,'Whatsapp Message Configuration','','far fa-circle','./../../pages/admin/whatsapp_msg_setup.php',NULL,'Y','THIMS','2011-04-23 02:18:00','','0000-00-00 00:00:00'),(747,'Discharged - Final Bill Not Prepared Report','','far fa-circle','./../../pages/report/finalBillNotPreparedReport.php',NULL,'Y','thims','2022-03-23 13:18:00','','0000-00-00 00:00:00'),(748,'Patient Diagnosis/Co-Morb Report','','far fa-circle','./../../pages/report/patientDiagnosisReport.php',NULL,'Y','thims','2022-05-23 13:18:00','','0000-00-00 00:00:00'),(749,'Room Reservation','','far fa-circle','./../../pages/registration/room_reservation.php',NULL,'Y','thims','2029-05-23 10:00:00','','0000-00-00 00:00:00'),(750,'Discard Stock','','far fa-circle','Item/stockDiscard',NULL,'Y','thims','2006-03-23 18:18:00','','0000-00-00 00:00:00'),(751,'Stock Statement - Requested By','','far fa-circle','StoreItem/storeStockStatementReqByInput',NULL,'Y','thims','2006-03-23 18:18:00','','0000-00-00 00:00:00'),(752,'Radiology Department Reporting','','far fa-circle','./../../pages/radiology/radiology_dashboard.php?RadReporting=Y',NULL,'Y','thims','2017-07-23 13:18:00','','0000-00-00 00:00:00'),(753,'Radiology Department Reporting V1','','far fa-circle','./../../pages/radiology/radiology_dashboard_v1.php?RadReporting=Y',NULL,'Y','thims','2017-07-23 13:18:00','','0000-00-00 00:00:00'),(755,'Room Availability','','far fa-circle','./../../pages/registration/available_rooms.php',NULL,'Y','thims','2009-08-23 13:18:00','','0000-00-00 00:00:00'),(756,'Discharge TAT Report','','far fa-circle','./../../pages/report/dischargeTAT.php',NULL,'Y','thims','2023-08-23 13:18:00','','0000-00-00 00:00:00'),(757,'Sales Return Free Hand Entry','','far fa-circle','Item/issueReturnFreeHand',NULL,'Y','thims','2006-03-23 18:18:00','','0000-00-00 00:00:00'),(758,'Sales Return Amendment','','far fa-circle','Item/issueReturnBillAmendment',NULL,'Y','thims','2006-03-23 18:18:00','','0000-00-00 00:00:00'),(759,'Amendment Report','','far fa-circle','Item/SalesAmendmentView',NULL,'Y','thims','2006-03-23 18:18:00','','0000-00-00 00:00:00'),(760,'Document Upload - GD','','far fa-circle','./../../pages/document/document_upload_on_drive_input.php',NULL,'Y','thims','2023-08-23 13:18:00','','0000-00-00 00:00:00'),(761,'Sticker Template Setup','','far fa-circle','./../../pages/certificate/certificate_list.php?templateType=STCKR',NULL,'Y','thims','2027-09-23 13:18:00','','0000-00-00 00:00:00'),(762,'Amendment Bill Print','','far fa-circle','./../../pages/ipd_bill/ipd_bill_reprint.php?amendmentPrint=Y',NULL,'Y','thims','2007-10-23 13:18:00','','0000-00-00 00:00:00'),(847,'IP Patient List TV Screen','','far fa-circle','./../../pages/report/ipListDisplayTVScreen.php',NULL,'Y','THIMS','2024-07-12 12:54:12','','0000-00-00 00:00:00'),(765,'Backup Dashboard','','far fa-circle','./../../pages/admin/backup_dashboard.php',NULL,'Y','thims','2006-11-23 13:18:00','','0000-00-00 00:00:00'),(766,'Patient Diet Plan','','far fa-circle','./../../pages/Diet_Management/patient_diet_composition.php',NULL,'Y','thims','2024-11-23 13:18:00','','0000-00-00 00:00:00'),(767,'Diet Plan Report','','far fa-circle','./../../pages/Diet_Management/dietCompositionReport.php',NULL,'Y','thims','2024-11-23 13:18:00','','0000-00-00 00:00:00'),(846,'Patient Transit','','far fa-circle','',NULL,'Y','THIMS','2024-08-07 12:54:12','','0000-00-00 00:00:00'),(771,'Additional Vitals Master','','far fa-circle','./../../pages/admin/additionalVitalsMaster.php',NULL,'Y','thims','2002-02-24 13:18:00','','0000-00-00 00:00:00'),(772,'Manufacturer Wise - Purchase Detail','','far fa-\r\ncircle','manufactur/productWiseReportInput',NULL,'Y','thims','2028-08-20 00:00:00','','0000-00-00 00:00:00'),(773,'Doctor And Patient Wise - Sales Report','','far fa-\r\ncircle','doctorWise/patientSalesReportInput',NULL,'Y','thims','2028-08-20 00:00:00','','0000-00-00 00:00:00'),(353,'Manufactures','','far fa-circle','Manufacturers/list',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(775,'General Store Supplier Payment','','far fa-\r\n    circle','StoreItem/GeneralStoreSupplierPayment',NULL,'Y','thims','2028-08-20 00:00:00','','0000-00-00 00:00:00'),(776,'OP Patient Care Order Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=OPCAREP',NULL,'Y','THIMS','2009-02-24 11:18:00','','0000-00-00 00:00:00'),(777,'Patient Self Registration Report','','far fa-circle','./../../pages/report/selfRegistrationReport.php',NULL,'Y','THIMS','2009-02-24 11:18:00','','0000-00-00 00:00:00'),(778,'Nursing Assessment','','far fa-circle','./../../pages/Doctor/nursingAssessmentInput.php',NULL,'Y','THIMS','2013-03-24 11:18:00','','0000-00-00 00:00:00'),(779,'Approve Leave By HR','','far fa-circle','HRApproveLeave',NULL,'Y','thims','2019-02-24 00:00:00','','0000-00-00 00:00:00'),(780,'Supervisor Report','','far fa-circle','supervisorsreport',NULL,'Y','thims','2019-02-24 00:00:00','','0000-00-00 00:00:00'),(781,'Apply Optional Holiday','','far fa-circle','./../../pages/attendance/employee_optional_leave.php?optionalby=R',NULL,'Y','thims','2019-02-24 00:00:00','','0000-00-00 00:00:00'),(782,'Calculated Salary Report','','far fa-circle','SalaryReport',NULL,'Y','thims','2019-02-24 00:00:00','','0000-00-00 00:00:00'),(845,'Asset - No Maintenance Report','','far fa-circle','./../../pages/asset/assetNoMaintContractReport.php',NULL,'Y','THIMS','2024-07-12 12:54:12','','0000-00-00 00:00:00'),(356,'Product Groups','','far fa-circle','ProductGroup/list',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(613,'PO With Consignment DC','','far fa-\r\ncircle','StorePo/ConsignmentPurchaseOrder',NULL,'Y','thims','2002-04-21 00:00:00','','0000-00-00 00:00:00'),(844,'Maintenance Contract Report','','far fa-circle','./../../pages/asset/maintenanceContractReport.php',NULL,'Y','THIMS','2024-06-12 12:54:12','','0000-00-00 00:00:00'),(357,'Supplier','','far fa-circle','Suppliers/list',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(309,'Sales List','','far fa-circle','TransactionDashboard/Issue',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(843,'Asset Repair Report','','far fa-circle','./../../pages/asset/assetRepairReport.php',NULL,'Y','THIMS','2024-06-12 12:54:12','','0000-00-00 00:00:00'),(294,'Sales Return List','','far fa-circle','TransactionDashboard/IssueReturn',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(291,'Purchase List','','far fa-circle','TransactionDashboard/Purchase',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(842,'Patient Data Doctor-Department Wise','','far fa-circle','./../../pages/report/patientDataDoctorDeptWise.php',NULL,'Y','THIMS','2024-06-12 12:54:12','','0000-00-00 00:00:00'),(292,'Purchase Return List','','far fa-circle','TransactionDashboard/PurchaseReturn',NULL,'Y','THIMS','2014-09-18 18:18:00','','0000-00-00 00:00:00'),(318,'Units','','far fa-circle','Unit/list',NULL,'Y','thims','2008-03-19 15:13:00','','0000-00-00 00:00:00'),(817,'Mandal IP Bill Report','','far fa-circle','./../../pages/ipd_bill/ipd_input.php?billing_entity=M',NULL,'Y','thims','2003-04-24 13:18:00','','0000-00-00 00:00:00'),(841,'Disk Space Utilization Statistics','','far fa-circle','./../../pages/admin/sizeCalculation.php',NULL,'Y','THIMS','2024-06-12 12:54:12','','0000-00-00 00:00:00'),(840,'Pharmacy Receipt Correction','','far fa-circle','./../../pages/report/pharmacy_receipt_edit.php?receiptAdjustment=Y',NULL,'Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(822,'Mandal Advance Report','','far fa-circle','./../../pages/ipd_bill/ipd_advance_input.php?billing_entity=M',NULL,'Y','thims','2008-04-24 13:18:00','','0000-00-00 00:00:00'),(823,'Pathology Advance Report','','far fa-circle','./../../pages/ipd_bill/ipd_advance_input.php?billing_entity=L',NULL,'Y','thims','2008-04-24 13:18:00','','0000-00-00 00:00:00'),(839,'Consignment Purchase Amendment','','far fa-circle','Item/ConsignmentPurchaseAmendment',NULL,'Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(826,'Finalize Salary','','far fa-circle','FinalSalaryInput',NULL,'Y','thims','2019-02-24 00:00:00','','0000-00-00 00:00:00'),(827,'Room Category Wise Occupancy Report','','far fa-circle','./../../pages/report/roomCategoryWiseOccupancy.php',NULL,'Y','THIMS','2012-04-24 12:54:00','','0000-00-00 00:00:00'),(828,'In Patient List - Given Date','','far fa-circle','./../../pages/report/inPatientRoomDayWise.php',NULL,'Y','THIMS','2012-04-24 12:54:00','','0000-00-00 00:00:00'),(829,'Mandal OP Bill Cancellation','','far fa-circle','./../../pages/cancle/all_bill_cancel.php?ipd_opd=O&&bill_entity=M',NULL,'Y','thims','2026-03-24 19:18:00','','0000-00-00 00:00:00'),(830,'Mandal IP Bill Cancellation','','far fa-circle','./../../pages/cancle/all_bill_cancel.php?ipd_opd=I&&bill_entity=M',NULL,'Y','thims','2026-03-24 19:18:00','','0000-00-00 00:00:00'),(831,'Pathology IP Bill Cancellation','','far fa-circle','./../../pages/cancle/all_bill_cancel.php?ipd_opd=I&&bill_entity=L',NULL,'Y','thims','2026-03-24 19:18:00','','0000-00-00 00:00:00'),(838,'Day Wise GST Sales Summary','','far fa-circle','Item/GstSalesSummaryInput',NULL,'Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(836,'View Shift','','far fa-circle','FinalSalaryInput',NULL,'Y','thims','2024-02-19 00:00:00','','0000-00-00 00:00:00'),(837,'View Salary Report','','far fa-circle','SalaryReport_emp',NULL,'Y','thims','2024-05-04 00:00:00','','0000-00-00 00:00:00'),(834,'Service Master - Radiology ','','far fa-circle','./../../pages/admin/service_master_radiology.php',NULL,'Y','THIMS','2024-04-12 12:54:12','','0000-00-00 00:00:00'),(835,'Service Master - Laboratory ','','far fa-circle','./../../pages/admin/service_master_lab.php',NULL,'Y','THIMS','2024-04-12 12:54:12','','0000-00-00 00:00:00'),(860,'Insurance Wise Patient Register','','far fa-circle','./../../pages/report/Insurance_wise_patient_register_input.php',NULL,'Y','thims','2024-11-18 18:18:12','','0000-00-00 00:00:00'),(861,'NRI Registration Report','','far fa-circle','./../../pages/report/NRI_Registration_report_input.php',NULL,'Y','thims','2024-11-18 18:18:12','','0000-00-00 00:00:00'),(862,'OP/IP TDS Report','','far fa-circle','./../../pages/report/op_ip_tds_report_Input.php',NULL,'Y','thims','2024-11-18 18:18:12','','0000-00-00 00:00:00'),(863,'Pharmacy Payable','','far fa-circle','./../../pages/tallyxml/pharmacy_payable_in_hospital_ui.php',NULL,'Y','thims','2024-11-18 18:18:12','','0000-00-00 00:00:00'),(864,'Billing Room Category Change Request','','far fa-circle','',NULL,'Y','THIMS','2024-11-26 11:18:12','','0000-00-00 00:00:00'),(865,'Trn Wise HSN Missing Report','','far fa-circle','item/ProductWithBlankHsnInput',NULL,'Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(866,'Upload Missing HSN','','far fa-circle','item/uploadBlankHsnProductInput',NULL,'Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(867,'Revenue Share Report - Doctor','','far fa-circle','./../../pages/report/three_tier_revenue_share_report_input.php?print=Y&dview=Y',NULL,'Y','thims','2025-03-12 18:18:12','','0000-00-00 00:00:00'),(868,'IP Sale - Arpan','','far fa-circle','Item/issue/Arpan',NULL,'Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(869,'Transaction Register - Arpan','','far fa-circle','Item/RegisterInput/Arpan',NULL,'Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(870,'Patient Wise Profit Report - Arpan','','far fa-circle','Item/PatientWiseProfitReportEntityInput',NULL,'Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(871,'Test Group Type Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=TESTTYPE',NULL,'Y','thims','2025-03-12 18:18:12','','0000-00-00 00:00:00'),(872,'Stock Adjustment Report','','far fa-circle','Item/stockAdjustmentInput',NULL,'Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(873,'PTR Comparison Report','','far fa-circle','report/priceCompairInput',NULL,'Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(874,'Purchase Against Consignment GRN','','far fa-circle','Item/purchaseViaCSN',NULL,'Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(875,'Test Group Type Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=TESTTYPE',NULL,'Y','thims','2025-03-12 18:18:12','','0000-00-00 00:00:00'),(876,'Corporate Advance','','far fa-circle','./../../pages/ipd_bill/corporateAdvance.php',NULL,'Y','thims','2025-10-06 18:18:12','','0000-00-00 00:00:00'),(877,'Corporate Advance Refund','','far fa-circle','./../../pages/ipd_bill/corporateAdvance.php?refund=Y',NULL,'Y','thims','2025-10-06 18:18:12','','0000-00-00 00:00:00'),(878,'Corporate Advance Cancel','','far fa-circle','./../../pages/ipd_bill/corporateAdvanceCancel.php',NULL,'Y','thims','2025-10-06 18:18:12','','0000-00-00 00:00:00'),(879,'Corporate Master','','far fa-circle','./../../pages/setup/ins_tpa_master.php?master_cd=CRP',NULL,'Y','thims','2025-10-06 18:18:12','','0000-00-00 00:00:00'),(880,'Change Discharge Type','','far fa-circle','',NULL,'Y','thims','2025-11-15 11:18:12','','0000-00-00 00:00:00'),(881,'OP Bill Reversal','','far fa-circle','./../../pages/cancle/all_bill_cancel_mz.php?ipd_opd=O',NULL,'Y','thims','2025-03-12 18:18:12','','0000-00-00 00:00:00'),(882,'IP Bill Reversal','','far fa-circle','./../../pages/cancle/all_bill_cancel_mz.php?ipd_opd=I',NULL,'Y','thims','2025-03-12 18:18:12','','0000-00-00 00:00:00'),(883,'OP Bill Credit','','far fa-circle','',NULL,'Y','thims','2025-03-12 18:18:12','','0000-00-00 00:00:00'),(884,'Final IP Bill Credit','','far fa-circle','',NULL,'Y','thims','2025-03-12 18:18:12','','0000-00-00 00:00:00'),(885,'Payment Settlement','','far fa-circle','./../../pages/billing/paymentsettlement.php',NULL,'Y','thims','2025-10-06 18:18:12','','0000-00-00 00:00:00'),(886,'Payment Settlement List','','far fa-circle','./../../pages/billing/paymentSettledList.php',NULL,'Y','thims','2025-10-06 18:18:12','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `program_list` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `program_list_old`
--

DROP TABLE IF EXISTS `program_list_old`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `program_list_old` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `program_name` varchar(100) NOT NULL,
  `program_type` char(2) NOT NULL,
  `icon_class` varchar(20) NOT NULL,
  `file_name` text NOT NULL,
  `short_code` varchar(8) DEFAULT NULL,
  `active_YN` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=832 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `program_list_old`
--

LOCK TABLES `program_list_old` WRITE;
/*!40000 ALTER TABLE `program_list_old` DISABLE KEYS */;
INSERT INTO `program_list_old` VALUES (1,'Program List','','far fa-circle','./../../pages/setup/programListMaster.php',NULL,'Y','thims','2018-09-14 10:00:04','thims','2018-09-14 10:02:18'),(2,'Appointment Booking','','far fa-circle','./../../pages/registration/calendar.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(3,'Appointment Report','','far fa-circle','./../../pages/report/appointment_list.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(5,'Patient Master List','','far fa-circle','./../../pages/registration/pat_list.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(6,'Token Print','','far fa-circle','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(7,'OP Registration','','far fa-circle','./../../pages/registration/new.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(8,'OP Patient List','','far fa-circle','./../../pages/registration/op_patient_list.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(9,'OP Registration Report','','far fa-circle','./../../pages/report/dateinput.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(10,'All Patient Queue','','far fa-circle','./../../pages/Doctor/pq1.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(11,'Diagnosis & Prescription','','far fa-circle','./../../pages/Doctor/pq.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(12,'Reports','','far fa-circle','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(13,'Service Req','','far fa-circle','./../../pages/ward/ward_req.php?grp_cd=LAB',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(14,'Lab Test Report','DO','far fa-circle','./../../pages/lab/patient_lab_result.php?grp_cd=LAB','LAB','Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(15,'Lab Register','','far fa-circle','./../../pages/ward/lab_repo_in.php?grp_cd=LAB',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(16,'Lab Free Register','','far fa-circle','./../../pages/ward/lab_repo_in.php?grp_cd=LAB&&free=F',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(17,'IP Bill','','far fa-circle','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(18,'IP Bill Re-Print','','far fa-circle','./../../pages/ipd_bill/ipd_bill_reprint.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(19,'IP Bill Report','','far fa-circle','./../../pages/ipd_bill/ipd_input.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(20,'Patient Account Statement','','far fa-circle','./../../pages/ipd_bill/service_charge_report_input.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(21,'IP Advance Cancellation','','far fa-circle','./../../pages/cancle/advance_cancel.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(22,'IP Payment Collection','','far fa-circle','./../../pages/billing/finalBillList.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(23,'Overall Receipt Summary','','far fa-circle','./../../pages/billing/bill_summary_input.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(24,'Userwise Collection Report','','far fa-circle','./../../pages/report/user_wise_collection_input.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(28,'Operation Report','','far fa-circle','./../../pages/report/operation_input.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(29,'Service Master','','far fa-circle','./../../pages/admin/service_master.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(31,'OP Registration Report (Ref Doctor Wise)','','far fa-circle','./../../pages/report/reff_Doc_Report.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(32,'OP Bill / Receipt Report','','far fa-circle','./../../pages/billing/opd_input.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(33,'IP Advance Report ','','far fa-circle','./../../pages/ipd_bill/ipd_advance_input.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(34,'In Patient List','','far fa-circle','./../../pages/room/room_alocation_in.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(35,'IP Discharge Report','','far fa-circle','./../../pages/ipd_bill/ipd_discharge_input.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(36,'IP Registration Report','','far fa-circle','./../../pages/ipd_bill/ipd_reg_input.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(37,'Total Collection Summary','','far fa-circle','./../../pages/report/total_collection_summary_input.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(38,'Ledger Report (Hospital/Doctor) ','','far fa-circle','./../../pages/report/Ledger_Report_Input.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(39,'OP Registration Report <br/>  w/ Diagnosis (Ref. Doc)','','far fa-circle','./../../pages/report/reff_Doc_Report.php?type=D',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(40,'MLC Report','','far fa-circle','./../../pages/report/mlc_input.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(41,'3C / Daily Case Register Report','','far fa-circle','./../../pages/report/3C_Daily_Case_Register_Input.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(42,'Xray','','far fa-circle','./../../pages/ward/dept_service.php?grp_cd=Xray',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(47,'Xray Summary','','far fa-circle','./../../pages/ward/xx_summary_in.php?grp_cd=Xray',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(48,'Xray Size Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=Xsize',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(49,'IP Patient Care','','far fa-circle','./../../pages/ward/exam_medi_reco_result.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(50,'Operation Details','','far fa-circle','./../../pages/ward/ot_room_detail.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(51,'Patient Care Task List','','far fa-circle','./../../pages/ward/patient_care_report.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(52,'Patient Bill & Issue','','far fa-circle','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(53,'Transactions','','far fa-circle','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(54,'Reports/Stock','','far fa-circle','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(55,'Item Purchase','','far fa-circle','./../../pages/medicine/purchase.php?trn_type=PD',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(56,'Department Indent-Issue','','far fa-circle','./../../pages/medicine/indent.php?trn_type=DR',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(57,'Item Transaction Register','','far fa-circle','./../../pages/report/transaction_register.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(58,'Item Stock Ledger','','far fa-circle','./../../pages/report/item_stock_ledger.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(59,'Item Stock View','','far fa-circle','./../../pages/medicine/item_stock.php?item_type=I',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(60,'Item Purchase Return','','far fa-circle','./../../pages/medicine/purchase.php?trn_type=RD',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(61,'Add/Modify Item','','far fa-circle','./../../pages/medicine/item_master.php?item_type=I',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(62,'Add/Modify Supplier','','far fa-circle','./../../pages/medicine/supp_master.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(63,'Add Division','','far fa-circle','./../../pages/medicine/div_master.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(64,'Adjust Item','','far fa-circle','./../../pages/medicine/discard.php?trn_type=AD',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(65,'Register MLC','','far fa-circle','./../../pages/MLC/mlc_register.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(66,'Verify MLC','','far fa-circle','./../../pages/MLC/mlc_verify.php?grp_cd=MLC',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(67,'MLC Report','','far fa-circle','./../../pages/MLC/mlc_report.php?grp_cd=MLC',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(68,'Asset Mangement','','far fa-circle','../asset/asset_service_history.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(69,'Add contract','','far fa-circle','../asset/asset_service_contract.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(70,'Asset Report','','far fa-circle','../asset/report.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(71,'Supplier Report','','far fa-circle','../asset/report1.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(72,'Category Report','','far fa-circle','../asset/assetcategories.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(73,'Company Report','','far fa-circle','../asset/assetcompany.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(74,'Other','','far fa-circle','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(75,'All Master','','far fa-circle','./../../pages/setup/encounter_master.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(76,'Profile Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=Profile',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(77,'ENC Group','','far fa-circle','./../../pages/lab/general_master.php?master_cd=ENCGP',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(78,'Holiday List','','far fa-circle','./../../pages/setup/holiday_list.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(79,'User Setup','','far fa-circle','./../../pages/setup/user_display.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(80,'Database Backup Utility','','far fa-circle','./../../pages/admin/backup_ui.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(81,'Doctor Master','','far fa-circle','./../../pages/admin/doctor_setup.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(82,'BA / Patient Connect Setup','','far fa-circle','./../../pages/admin/sms_setup.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(83,'Reference Doctor Master','','far fa-circle','./../../pages/admin/doctor_setup.php?doctor_category=R',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(84,'Room Master','','far fa-circle','./../../pages/room/room_master.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(85,'Medicine Master','','far fa-circle','./../../pages/admin/medicine_master.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(86,'General Instruction','','far fa-circle','./../../pages/lab/general_master.php?master_cd=Ginst&&mst=General Instuructio',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(87,'Service Group Master','','far fa-circle','./../../pages/admin/service_grp_master.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(89,'General Code Master','','far fa-circle','./../../pages/admin/general_code_master.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(90,'Hospital Setup','','far fa-circle','./../../pages/setup/hospital.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(91,'Parameter Setup','','far fa-circle','./../../pages/admin/parameter_setup.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(92,'User Access Control','','far fa-circle','./../../pages/setup/User_Access_Control.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(93,'Navigation Setup','','far fa-circle','./../../pages/setup/Sub_Navigation_Master.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(95,'Department Summary Matrix','','far fa-circle','./../../pages/matrix/mgnt_summary_input_dept.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(96,'Patient Count Summary','','far fa-circle','./../../pages/matrix/mgnt_volume_summary.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(97,'Indoor Daily Accounting Report','','far fa-circle','./../../pages/report/daily_accounting_report_ui.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(98,'OP Bill','','far fa-circle','./../../pages/billing/bill.php?ipd_opd=O',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(99,'OP Receipt Re-Print','','far fa-circle','./../../pages/billing/reservice_bill.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(100,'OP Cancel Receipt','','far fa-circle','./../../pages/cancle/bill_cancel.php?ipd_opd=O',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(101,'OP Bill/Receipt Report','','far fa-circle','./../../pages/billing/opd_input.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(102,'IP Registration','','far fa-circle','./../../pages/registration/ipd_reg_new.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(103,'IP Patient List / Action','','far fa-circle','./../../pages/registration/ip_patient_list.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(105,'Patient Discharge Summary','DO','far fa-circle','./../../pages/report/discharge_summary.php','DSUMM','Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(106,'Medicine Instruction Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=Minst&&name=Medi Instruction Master',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(107,'Examination Master','','far fa-circle','./../../pages/ward/examination_master.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(108,'Operation Master','','far fa-circle','./../../pages/admin/operation_master.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(109,'Operation Category Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=OPCAT',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(110,'Operation Theatre Master ','','far fa-circle','./../../pages/lab/general_master.php?master_cd=OTROOM',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(111,'Discharge Type Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=DISGTYPE',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(112,'Generic /Drug Master','','far fa-circle','./../../pages/medi/drug_master.php?item_type=M',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(113,'Medicine Category ','','far fa-circle','./../../pages/lab/general_master.php?master_cd=Ptype',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(114,'Business Associate Master','','far fa-circle','./../../pages/admin/business_assoc_master.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(115,'Department Master','','far fa-circle','./../../pages/admin/department.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(116,'Rx Instruction Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=Ginst&&mst=General Instuructio',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(117,'Diagnosis Master','','far fa-circle','./../../pages/admin/diagnosis_master.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(118,'Medicine for Diagnosis','','far fa-circle','./../../pages/admin/diagnosis_medicine.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(119,'Payment Mode Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=PMODE',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(120,'List of Patients','','far fa-circle','./../../pages/registration/pat_list.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(121,'Patient Edit','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(122,'Doctor Reassignment','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(123,'OP Bill/Receipt','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(124,'OP Bill Print/Reprint','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(125,'OP Receipt Print/Reprint','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(126,'Token Re-Print','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(127,'OP Payment Collection','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(128,'Cancel Receipt','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(129,'General Note','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(130,'FC Report','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(131,'FollowUp Report','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(132,'Medicine Prescription Printing','DO','','','RX','Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(133,'Order Printing','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(134,'Add Vitals','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(135,'Medicine Issue','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(136,'Medicine Issued List','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(137,'Medicine Issue Return','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(138,'Patient Care','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(139,'OP Cancellation','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(140,'Day Care Admission','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(141,'Day Care Release','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(142,'Room Transfer','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(143,'Nursing Care','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(144,'Reverse Discharge','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(145,'Record Discharge Summary','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(146,'Discharge Slip','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(147,'Advance/Deposit','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(148,'Final IP Bill','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(149,'Admission Reprint','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(150,'Advance Receipt Print/Reprint','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(151,'Account Statement','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(152,'Nursing Orders Report','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(153,'Document Viewer','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(154,'IP Reg. Cancellation','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(155,'File Sticker Print','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(156,'Page Sticker Print','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(157,'Discharge','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(158,'IP Details Edit','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(159,'OP Patient History','','','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(160,'IP Revenue Share Report','','far fa-circle','./../../pages/report/ipBillShareReport.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(161,'OP Revenue Share Report','','far fa-circle','./../../pages/report/opBillShareReport.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(162,'Medi Instruction Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=Minst&&name=Medi Instruction Master',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(163,'Certificate Print','','far fa-circle','./../../pages/report/pat_certificate.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(164,'Reff. Doctor Wise Report','','far fa-circle','./../../pages/report/reff_Doc_Report.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(165,'Lab Cat Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=Lcat',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(166,'Lab Test Master','','far fa-circle','./../../pages/lab/patho_test_master.php?grp_cd=LAB',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(167,'Lab Service Tests','','far fa-circle','./../../pages/lab/patho_report_test.php?grp_cd=LAB',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(168,'IP Reg Report','','far fa-circle','./../../pages/ipd_bill/ipd_reg_input.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(169,'Room Alocation Report','','far fa-circle','./../../pages/room/room_alocation_in.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(170,'Room/Bed Occupancy Report','','far fa-circle','./../../pages/room/room_status.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(171,'Discharge Summary','','far fa-circle','./../../pages/report/discharge_summary.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(172,'Service Req Report','','far fa-circle','./../../pages/ward/service_report_in.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(173,'Medicine Bill','','far fa-circle','./../../pages/medi/med_issue1.php?trn_type=I',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(174,'Medicine Bill Reprint','','far fa-circle','./../../pages/medi/pharmacy_receipt_reprint.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(175,'Credit Bill(Reversal Of Bill)','','far fa-circle','./../../pages/cancle/bill_cancle.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(176,'Purchase','','far fa-circle','./../../pages/medi/purchase.php?trn_type=PD',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(177,'Delete Non-Issue Medicine','','far fa-circle','./../../pages/medi/return_medilist.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(178,'Issue Return','','far fa-circle','./../../pages/medi/med_issue1.php?trn_type=IR',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(179,'Purchase Return','','far fa-circle','./../../pages/medi/purchase.php?trn_type=RD',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(180,'Adjustment','','far fa-circle','./../../pages/medi/discard.php?trn_type=AD',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(181,'Transaction Register','','far fa-circle','./../../pages/report/medi_transaction_register.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(182,'Stock Ledger','','far fa-circle','./../../pages/report/medi_stock_ledger.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(183,'Stock View','','far fa-circle','./../../pages/medi/item_stock.php?item_type=I',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(184,'Reorder Report','','far fa-circle','./../../pages/report/reorder.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(185,'Medicine Expiry Report','','far fa-circle','./../../pages/report/med_exp.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(186,'Medicine List','','far fa-circle','./../../pages/report/medicine_list.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(187,'Current Stock Report','','far fa-circle','./../../pages/report/medicine_list.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(188,'Medicine','','far fa-circle','./../../pages/medi/medicine_master.php?item_type=M',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(189,'Drug','','far fa-circle','./../../pages/medi/drug_master.php?item_type=M',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(190,'Supplier','','far fa-circle','./../../pages/medi/supp_master.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(191,'Medicine Company','','far fa-circle','./../../pages/lab/general_master.php?master_cd=Mcomp',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(192,'Medicines For Diagnosis','','far fa-circle','./../../pages/admin/diagnosis_medicine.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(193,'Schedule Master','','far fa-circle','./../../pages/admin/sch_master.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(194,'Appointment List','','far fa-circle','./../../pages/report/appointment_list.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(196,'Charges Upload','','far fa-circle','./../../pages/admin/import_csv.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(197,'Queue Display','TR','far fa-circle','./../../pages/Doctor/queue_display.php','','N','THIMS','2018-09-14 18:18:12','thims','2018-12-28 09:22:13'),(198,'Patient Category Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=PCatg&&name=Patient Category',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(199,'Investigation Master','','far fa-circle','./../../pages/setup/investigation_master.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(200,'Lab Agency','','far fa-circle','./../../pages/lab/general_master.php?master_cd=AGENCY',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(201,'Masters','','far fa-circle','',NULL,'Y','THIMS','2018-09-15 10:22:56','','0000-00-00 00:00:00'),(202,'IP Bill','','far fa-circle','./../../pages/billing/bill_new.php?ipd_opd=I',NULL,'Y','THIMS','2018-09-15 10:22:56','','0000-00-00 00:00:00'),(203,'Medicine Type','','far fa-circle','./../../pages/lab/general_master.php?master_cd=Ptype&&mst=Medicine Type',NULL,'Y','THIMS','2018-09-15 10:22:56','','0000-00-00 00:00:00'),(204,'Operation Theatre Master ','','far fa-circle','./../../pages/lab/general_master.php?master_cd=OTROOM',NULL,'Y','THIMS','2018-09-15 10:22:56','','0000-00-00 00:00:00'),(205,'Doctor Master','','far fa-circle','./../../pages/admin/doctor_setup.php',NULL,'Y','THIMS','2018-09-15 10:22:56','','0000-00-00 00:00:00'),(206,'Room Category Master','','far fa-circle','./../../pages/room/room_cat.php',NULL,'Y','THIMS','2018-09-15 10:22:56','','0000-00-00 00:00:00'),(207,'Frequency Type Master','','far fa-circle','./../../pages/ward/frequency_type_master.php',NULL,'Y','THIMS','2018-09-15 10:22:56','','0000-00-00 00:00:00'),(208,'Frequency Type Sub Master','','far fa-circle','./../../pages/ward/frequency_type_sub_master.php',NULL,'Y','THIMS','2018-09-15 10:22:56','','0000-00-00 00:00:00'),(209,'Lab Service Tests','','far fa-circle','./../../pages/lab/patho_report_test.php?grp_cd=LAB',NULL,'Y','THIMS','2018-09-15 10:22:56','','0000-00-00 00:00:00'),(210,'Re-Order Report','','far fa-circle','./../../pages/report/reorder.php',NULL,'Y','THIMS','2018-09-15 10:22:56','','0000-00-00 00:00:00'),(211,'Ref. Doctor Wise OP Registration Report w/ <br/> Diagnosis ','','far fa-circle','./../../pages/report/reff_Doc_Report.php?type=D',NULL,'Y','THIMS','2018-09-15 15:39:18','','0000-00-00 00:00:00'),(212,'IP Bill Cancellation','','far fa-circle','./../../pages/cancle/bill_cancel.php?ipd_opd=I',NULL,'Y','THIMS','2018-09-15 15:39:18','','0000-00-00 00:00:00'),(213,'All Patient Account Statement','','far fa-circle','./../../pages/ipd_bill/service_charge_report_all.php',NULL,'Y','THIMS','2018-09-15 15:39:18','','0000-00-00 00:00:00'),(214,'IP Bill Payment Collection','','far fa-circle','./../../pages/billing/finalBillList.php?ipdOpd=I',NULL,'Y','THIMS','2018-09-15 15:39:18','','0000-00-00 00:00:00'),(215,'Account Statement Summary','','far fa-circle','./../../pages/ipd_bill/service_charge_summary_report.php',NULL,'Y','THIMS','2018-09-15 15:39:18','','0000-00-00 00:00:00'),(216,'View Discharge Summary','','far fa-circle','./../../pages/report/discharge_summary.php',NULL,'Y','THIMS','2018-09-15 15:39:18','','0000-00-00 00:00:00'),(217,'Patient MLC Report','','far fa-circle','./../../pages/report/mlc_Input.php',NULL,'Y','THIMS','2018-09-15 15:39:18','','0000-00-00 00:00:00'),(218,'Patient Pregnancy Report','','far fa-circle','./../../pages/report/preg_Input.php',NULL,'Y','THIMS','2018-09-15 15:39:18','','0000-00-00 00:00:00'),(219,'Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php',NULL,'Y','THIMS','2018-09-15 15:39:18','','0000-00-00 00:00:00'),(220,'Day Care Report','','far fa-circle','./../../pages/report/Day_Care_Input.php',NULL,'Y','THIMS','2018-09-15 15:39:18','','0000-00-00 00:00:00'),(221,'Appointment Setup','','far fa-circle','./../../pages/setup/appointment_setup.php',NULL,'Y','THIMS','2018-09-15 15:39:18','','0000-00-00 00:00:00'),(222,'List of Patients','','far fa-circle','./../../pages/registration/pat_list.php',NULL,'Y','THIMS','2018-09-15 15:39:18','','0000-00-00 00:00:00'),(223,'IP Payment Collection','','','',NULL,'Y','THIMS','2018-09-15 15:39:18','','0000-00-00 00:00:00'),(224,'Certificate Print','','far fa-circle','./../../pages/report/pat_certificate.php',NULL,'Y','THIMS','2018-09-15 15:39:18','','0000-00-00 00:00:00'),(225,'Sticker Print','','far fa-circle','./../../pages/registration/sticker_print.php',NULL,'Y','THIMS','2018-09-15 10:31:23','','0000-00-00 00:00:00'),(226,'Lab Result Input','','far fa-circle','./../../pages/lab/dept_lab_service.php',NULL,'Y','THIMS','2018-09-15 10:31:23','','0000-00-00 00:00:00'),(227,'IP Registration Report','','far fa-circle','./../../pages/ipd_bill/ipd_reg_input.php',NULL,'Y','THIMS','2018-09-15 10:31:23','','0000-00-00 00:00:00'),(228,'Operation Details','','far fa-circle','./../../pages/ward/ot_room_detail.php',NULL,'Y','THIMS','2018-09-15 10:31:23','','0000-00-00 00:00:00'),(229,'Tappering Dose Master','','far fa-circle','./../../pages/setup/tapperingDoseMaster.php',NULL,'Y','THIMS','2018-09-15 10:31:23','','0000-00-00 00:00:00'),(230,'Medicine Frequency','','far fa-circle','./../../pages/lab/general_master.php?master_cd=MFREQ',NULL,'Y','THIMS','2018-09-15 10:31:23','','0000-00-00 00:00:00'),(231,'Department Summary Matrix','','far fa-circle','./../../pages/matrix/mgnt_summary_input_dept.php',NULL,'Y','THIMS','2018-09-15 10:31:23','','0000-00-00 00:00:00'),(232,'OP Bill Cancelation','','far fa-circle','./../../pages/cancle/bill_cancel.php?ipd_opd=O',NULL,'Y','THIMS','2018-09-15 10:31:23','','0000-00-00 00:00:00'),(235,'Lab Test Group','','far fa-circle','./../../pages/lab/lab_test_group.php?grp_cd=LAB',NULL,'Y','THIMS','2018-09-15 10:31:23','','0000-00-00 00:00:00'),(236,'Lab Test Preview','','far fa-circle','./../../pages/lab/lab_test_group.php?grp_cd=LAB&&preview=Y',NULL,'Y','THIMS','2018-09-15 10:31:23','','0000-00-00 00:00:00'),(237,'Add Release Note','','far fa-circle','./../../pages/setup/release_display.php',NULL,'Y','thims','2018-09-14 10:00:04','thims','2018-09-14 10:02:18'),(238,'Estimated Deposit','','far fa-circle','../../pages/billing/estimated_deposit.php',NULL,'Y','thims','2018-09-17 11:21:18','','0000-00-00 00:00:00'),(239,'Deposit Structure Master','','far fa-circle','../../pages/admin/deposit_structure_master.php',NULL,'Y','thims','2018-09-17 11:36:31','','0000-00-00 00:00:00'),(240,'Operation Grade Master','','far fa-circle','../../pages/lab/general_master.php?master_cd=OPG',NULL,'Y','thims','2018-09-17 11:54:30','','0000-00-00 00:00:00'),(241,'OPD Charge Master','','far fa-circle','./../../pages/admin/opdChargeMaster.php',NULL,'Y','thims','2018-09-18 05:46:59','thims','2018-09-18 05:49:51'),(242,'Login Audit Trail Report','','far fa-circle','./../../pages/report/login_audit_report.php',NULL,'Y','thims','2018-11-21 10:05:00','','0000-00-00 00:00:00'),(243,'Diagnosis Wise Report','','far fa-circle','./../../pages/report/diagnosisWiseReport.php',NULL,'Y','thims','2018-09-14 10:00:04','thims','2018-09-14 10:02:18'),(244,'Purchase','TR','far fa-circle','./../../pages/setup/programListMaster.php',NULL,'Y','thims','2018-09-14 10:00:04','thims','2018-09-14 10:02:18'),(285,'Queue Display','TR','far fa-circle','../../pages/Doctor/queue_display_new.php','QDISP','Y','thims','2018-12-28 09:19:31','thims','2018-12-28 09:21:57'),(287,'Patient Registration','TR','far fa-circle','./../../pages/registration/patientRegistration.php','PREG','Y','thims','2018-12-29 06:53:57','thims','2018-12-29 06:54:38'),(288,'Document setup','MA','far fa-circle','../../pages/setup/document_setup.php','DOCSET','Y','thims','2019-01-05 11:52:28','thims','2019-01-05 11:54:19'),(289,'Address Master','','far fa-circle','./../../pages/setup/patientAddressmaster.php',NULL,'Y','thims','2018-11-21 10:05:00','','0000-00-00 00:00:00'),(290,'Rate Master','','far fa-circle','./../../pages/setup/rateMaster.php',NULL,'Y','thims','2018-11-21 10:05:00','','0000-00-00 00:00:00'),(291,'Purchase List','','far fa-circle','TransactionDashboard/Purchase',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(292,'Purchase Return List','','far fa-circle','TransactionDashboard/PurchaseReturn',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(293,'Sales List','','far fa-circle','TransactionDashboard/Issue',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(294,'Sales Return List','','far fa-circle','TransactionDashboard/IssueReturn',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(299,'Template Setup','','far fa-circle','./../../pages/certificate/certificate_list.php',NULL,'Y','thims','2018-09-14 10:00:04','thims','2018-09-14 10:02:18'),(301,'Purchase','','far fa-circle','Item/purchase',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(302,'Purchase Return','','far fa-circle','Item/purchaseReturn',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(303,'Sale','','far fa-circle','Item/issue',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(304,'Sale Return','','far fa-circle','Item/issueReturn',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(305,'Adjustment','','far fa-circle','Item/adjustment',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(306,'Payment Collection','','far fa-circle','Item/PaymentCollection',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(307,'Purchase List','','far fa-circle','TransactionDashboard/Purchase',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(308,'Purchase Return List','','far fa-circle','TransactionDashboard/PurchaseReturn',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(309,'Sales List','','far fa-circle','TransactionDashboard/Issue',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(310,'Sales Return List','','far fa-circle','TransactionDashboard/IssueReturn',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(311,'Product Categories','','far fa-circle','Category/list',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(312,'Discount','','far fa-circle','Discount/list',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(313,'Generic Drugs','','far fa-circle','Drug/list',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(314,'Manufactures','','far fa-circle','Manufacturers/list',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(315,'Products','','far fa-circle','Products/list',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(316,'Product Groups','','far fa-circle','ProductGroup/list',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(317,'Suppliers','','far fa-circle','Suppliers/list',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(318,'Units','','far fa-circle','Unit/list',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(319,'Stock Ledger','','far fa-circle','Item/StockLedgerInput',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(320,'Transaction Register','','far fa-circle','Item/RegisterInput',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(321,'Sales Collection','','far fa-circle','Item/SalesCollectionInput',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(322,'Stock Statement','','far fa-circle','Item/stockStamentReport',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(323,'Sales Bill Reprint','','far fa-circle','Item/billReprint',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(324,'Uninitialized Products','','far fa-circle','Item/UnInitializedProductInput',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(325,'Product List','','far fa-circle','Item/productlistInput',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(326,'Product Expiry','','far fa-circle','Item/productExpiryInput',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(327,'Purchase Summary','','far fa-circle','Item/supplierwisesaleInput',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(328,'Patient Sales Summary','','far fa-circle','Item/patientwisedataInput',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(329,'Product Sales Summary','','far fa-circle','Item/medicineSaleInput',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(330,'Medicine Reorder','','far fa-circle','Item/medicinereorderInput',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(331,'Gross Profit Report','','far fa-circle','Item/profitReportInput',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(332,'Reorder Required Report','','far fa-circle','Item/reorderRequiredDataInput',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(333,'Patient Credit Sales Summary','','far fa-circle','Item/patientwisedataInputCredit',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(334,'Purchase Voucher','','far fa-circle','Item/PurchaseVoucherInput',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(335,'Job Titles','','far fa-circle','jobtitle',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(336,'Employee Status','','far fa-circle','employee_status',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(337,'Job Categories','','far fa-circle','JobCategory/list',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(338,'Skills','','far fa-circle','skill',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(339,'Educations','','far fa-circle','employee_education',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(340,'Reporting Methods','','far fa-circle','reportmethod',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(341,'Work Week ','','far fa-circle','workweek',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(342,'Leave Types','','far fa-circle','leavetype',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(343,'Directory','','far fa-circle','employeedirectory',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(344,'GRN','','far fa-circle','StoreItem/Purchase',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(345,'GRN With PO','','far fa-circle','StoreItem/PurchaseWithPo',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(346,'Material Issue Note','','far fa-circle','StoreItem/Issue',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(347,'Adjustment Transactions','','far fa-circle','StoreItem/Adjustment',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(348,'GRN Return','','far fa-circle','StoreItem/PurchaseReturn',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(349,'GRN Return With PO','','far fa-circle','StoreItem/PurchaseReturnWithPo',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(350,'Material Issue Return','','far fa-circle','StoreItem/IssueReturn',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(351,'Goods Transfer','','far fa-circle','StoreItem/Transfer',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(352,'Product Categories','','far fa-circle','Category/list',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(353,'Manufactures','','far fa-circle','Manufacturers/list',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(354,'Products','','far fa-circle','StoreProducts/list',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(355,'Department','','far fa-circle','StoreDepartment/list',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(356,'Product Groups','','far fa-circle','ProductGroup/list',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(357,'Supplier','','far fa-circle','Suppliers/list',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(358,'Units','','far fa-circle','Unit/list',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(359,'Transaction Register','','far fa-circle','StoreItem/RegisterInput',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(360,'Store Product List','','far fa-circle','StoreItem/storeProductListInput',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(361,'PO Reprint','','far fa-circle','StorePo/Reprint',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(362,'Approve PO List','','far fa-circle','StorePoDashboard/SuperUser',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(363,'PO List','','far fa-circle','StorePoDashboard/User',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(364,'Approve Leave','','far fa-circle','ApproveLeave',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(365,'Surgery Details','','far fa-circle','./../../pages/ward/operationDetail.php',NULL,'Y','thims','2018-09-14 10:00:04','thims','2018-09-14 10:02:18'),(366,'Price Preview','','far fa-circle','./../../pages/setup/pricePreview.php',NULL,'Y','thims','2018-09-14 10:00:04','thims','2018-09-14 10:02:18'),(367,'Pharmacy Receipt Reprint','','far fa-circle','Item/ReceiptReprint',NULL,'Y','thims','2019-03-08 14:07:36','','0000-00-00 00:00:00'),(368,'Emergency Registration','','far fa-circle','./../../pages/ward/emergencyPatientList.php',NULL,'Y','thims','2018-09-14 10:00:04','thims','2018-09-14 10:02:18'),(369,'Staff Report','','far fa-circle','Hrms/employeeReportExcelInput',NULL,'Y','thims','2019-05-14 14:07:36','','0000-00-00 00:00:00'),(370,'Probation Completion','Hr','far fa-circle','Hrms/probationCompletionInput',NULL,'Y','thims','2019-05-14 14:07:36','','0000-00-00 00:00:00'),(371,'Store Stock Statement','','far fa-circle','StoreItem/storeStockStatementInput',NULL,'Y','thims','2019-05-25 16:27:00','','0000-00-00 00:00:00'),(372,'Store Stock  Ledger','','far fa-circle','StoreItem/storeStockLedgerInput',NULL,'Y','thims','2019-05-25 17:00:00','','0000-00-00 00:00:00'),(373,'Store Purchase Voucher','','far fa-circle','StoreItem/PurchaseVoucherInput',NULL,'Y','thims','2019-05-27 17:27:00','','0000-00-00 00:00:00'),(374,'Store Purchase Summary','','far fa-circle','StoreItem/productIssueInput',NULL,'Y','thims','2019-05-27 17:27:00','','0000-00-00 00:00:00'),(375,'Store Material Reorder','','far fa-circle','StoreItem/medicinereorderInput',NULL,'Y','thims','2019-05-27 17:27:00','','0000-00-00 00:00:00'),(376,'Nursing Station','','far fa-circle','./../../pages/ward/nursingStationRequest.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(377,'Physiotherapy Request','','far fa-circle','./../../pages/ward/physiotherapyRequest.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(378,'IP Bill Order','','far fa-circle','./../../pages/lab/general_master.php?master_cd=BILLSRNO',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(379,'Calculate Salary','','far fa-circle','',NULL,'Y','thims','2019-06-05 12:18:00','','0000-00-00 00:00:00'),(380,'View PaySlip','','far fa-circle','PaySlip',NULL,'Y','thims','2019-06-05 12:18:00','','0000-00-00 00:00:00'),(381,'Attrition and NewJoinee Report','','far fa-circle','Hrms/AttritionAndNewJoineeReportInput',NULL,'Y','thims','2019-06-06 02:10:00','','0000-00-00 00:00:00'),(382,'Attrition and NewJoinee Report','','far fa-circle','Hrms/AttritionAndNewJoineeReportInput',NULL,'Y','thims','2019-06-06 02:10:00','','0000-00-00 00:00:00'),(383,'Add CL Entitlements','','far fa-circle','clleaveentitlement',NULL,'Y','thims','2019-06-21 12:18:00','','0000-00-00 00:00:00'),(384,'Add Yearly Entitlements for Employee','','far fa-circle','yearlyleaveentitlementforemployee',NULL,'Y','thims','2019-06-21 12:18:00','','0000-00-00 00:00:00'),(385,'Add Yearly Entitlements for Trainee','','far fa-circle','yearlyleaveentitlementfortrainee',NULL,'Y','thims','2019-06-21 12:18:00','','0000-00-00 00:00:00'),(386,'Add Yearly Entitlements for Doctor','','far fa-circle','yearlyleaveentitlementfordoctor',NULL,'Y','thims','2019-06-21 12:18:00','','0000-00-00 00:00:00'),(387,'Generate Confirmation Letter','','far fa-circle','Hrms/ConfirmationLetterInput',NULL,'Y','thims','2019-06-22 12:18:00','','0000-00-00 00:00:00'),(388,'Employee','','far fa-circle','CalculateSalary',NULL,'Y','thims','2019-07-03 11:45:00','','0000-00-00 00:00:00'),(389,'Trainee','','far fa-circle','CalculateSalaryfortrainee',NULL,'Y','thims','2019-07-03 11:45:00','','0000-00-00 00:00:00'),(390,'Stock / Cycle Report','','far fa-circle','Item/stockCycleReport',NULL,'Y','thims','2019-07-06 12:55:36','','0000-00-00 00:00:00'),(391,'Stock Adjustment Cycle','','far fa-circle','Item/stockCycleCount',NULL,'Y','thims','2019-07-06 12:55:36','','0000-00-00 00:00:00'),(392,'Junior Doctor','','far fa-circle','CalculateSalaryforjuniordoctor',NULL,'Y','thims','2019-07-06 04:45:00','','0000-00-00 00:00:00'),(394,'Pathology Bill Report','','far fa-circle','./../../pages/report/pathologyBillReportInput.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(395,'Pathology Collection','','far fa-circle','./../../pages/report/pathologyBillCollectionInput.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(397,'Pathology Bill Report','','far fa-circle','./../../pages/report/pathologyBillReportInput.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(398,'Pathology Collection','','far fa-circle','./../../pages/report/pathologyBillCollectionInput.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(399,'My Leave List','','far fa-circle','MyLeaveList/LeaveList',NULL,'Y','thims','2019-07-30 11:45:00','','0000-00-00 00:00:00'),(400,'Center','','far fa-circle','Center/list',NULL,'Y','thims','2019-07-30 11:45:00','','0000-00-00 00:00:00'),(401,'Assign Leave','','far fa-circle','leaveassign',NULL,'Y','thims','2019-07-30 11:45:00','','0000-00-00 00:00:00'),(402,'Credit Note ','','far fa-circle','./../../pages/cancle/credit_note.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(403,'Surgery Schedule Report','','far fa-circle','./../../pages/report/surgery_schedule_report.php',NULL,'Y','THIMS','2018-09-15 15:39:18','','0000-00-00 00:00:00'),(404,'Holiday List','','far fa-circle','Hrms/hrmsHolidayList',NULL,'Y','thims','2019-08-19 12:18:00','','0000-00-00 00:00:00'),(406,'Holiday List','','far fa-circle','Hrms/hrmsHolidayList',NULL,'Y','thims','2019-08-19 12:18:00','','0000-00-00 00:00:00'),(407,'Pack Size Amendment','','far fa-circle','Item/conversion',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(408,'Bill Receipt Summary','','far fa-circle','./../../pages/report/op_ip_bill_report_summary.php',NULL,'Y','THIMS','2019-08-21 18:18:12','','0000-00-00 00:00:00'),(409,'View Payslip of Employee','','far fa-circle','EmployeePaySlip',NULL,'Y','thims','2019-08-27 14:59:00','','0000-00-00 00:00:00'),(410,'Sale Amendment','','far fa-circle','Item/issueBillAmendment',NULL,'Y','THIMS','2019-08-30 00:00:00','','0000-00-00 00:00:00'),(411,'Sale Partially Edit','','far fa-circle','Item/issueBillPartiallyAmendment',NULL,'Y','THIMS','2019-08-30 00:00:00','','0000-00-00 00:00:00'),(412,'Bill Receipt Summary','','far fa-circle','./../../pages/report/op_ip_bill_report_summary.php',NULL,'Y','THIMS','2019-08-21 18:18:12','','0000-00-00 00:00:00'),(413,'Bill Amendment','','far fa-circle','./../../pages/billing/billEditSearchList.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(414,'Bill Rectification','','far fa-circle','./../../pages/billing/opBillPartiallyEdit.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(415,'Parital Credit Bill','','far fa-circle','./../../pages/billing/partiallyCreditBill.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(416,'Sales Bill Hospital Internal','','far fa-circle','\r\nItem/issueBillHospitalInternal',NULL,'Y','THIMS','2019-09-14 18:00:00','','0000-00-00 00:00:00'),(417,'Sale Partially Edit','','far fa-circle','\r\nItem/issueBillPartiallyAmendment',NULL,'Y','THIMS','2019-09-14 18:00:00','','0000-00-00 00:00:00'),(418,'Sale Amendment','','far fa-circle','\r\nItem/issueBillAmendment',NULL,'Y','THIMS','2019-09-14 18:00:00','','0000-00-00 00:00:00'),(419,'Purchase Amendment','','far fa-circle','\r\nItem/purchaseAmendment',NULL,'Y','THIMS','2019-09-14 18:00:00','','0000-00-00 00:00:00'),(420,'Outstanding Report','','far fa-circle','./../../pages/billing/outstanding_report.php',NULL,'Y','THIMS','2019-09-21 18:18:12','','0000-00-00 00:00:00'),(421,'Export Sales(Cash) Voucher Summary','','far fa-circle','../../pages/tallyxml/sales_voucher_summary_export_ui.php',NULL,'Y','thims','2019-09-24 11:45:00','','0000-00-00 00:00:00'),(422,'Export Sales(Credit) Voucher','','far fa-circle','../../pages/tallyxml/sales_voucher_credit_export_ui.php',NULL,'Y','thims','2019-09-24 11:45:00','','0000-00-00 00:00:00'),(423,'Export Purchase Voucher Summary','','far fa-circle','../../pages/tallyxml/purchase_voucher_summary_export_ui.php',NULL,'Y','thims','2019-09-24 11:45:00','','0000-00-00 00:00:00'),(424,'Export Pharmacy Receipt Voucher','','far fa-circle','../../pages/tallyxml/pharmacy_receipt_voucher_export_ui.php',NULL,'Y','thims','2019-09-24 11:45:00','','0000-00-00 00:00:00'),(425,'Outstanding Report','','far fa-circle','./../../pages/billing/outstanding_report.php',NULL,'Y','THIMS','2019-09-21 18:18:12','','0000-00-00 00:00:00'),(426,'Visiting Report','','fa-fa',' ./../../pages/report/Visiting_report_input.php',NULL,'Y','THIMS','2019-11-21 11:42:00','THIMS','2019-11-21 11:42:00'),(427,'Cycle Count Release','','far fa-circle','Item/stockCycleRelease',NULL,'Y','thims','2019-12-16 18:18:00','','0000-00-00 00:00:00'),(428,'LAB Revenue Report','','far fa-circle','./../../pages/report/lab_input.php',NULL,'Y','THIMS','2019-12-11 18:18:12','','0000-00-00 00:00:00'),(429,'Cycle Count Release','','far fa-circle','Item/stockCycleRelease',NULL,'Y','thims','2019-12-16 18:18:00','','0000-00-00 00:00:00'),(430,'Patient Wise Bill Report','','far fa-circle','Item/patientWiseBillReport',NULL,'Y','thims','2019-12-16 18:18:00','','0000-00-00 00:00:00'),(431,'LAB Revenue Report','','far fa-circle','./../../pages/report/lab_input.php',NULL,'Y','THIMS','2019-12-11 18:18:12','','0000-00-00 00:00:00'),(432,'Cycle Count Release','','far fa-circle','Item/stockCycleRelease',NULL,'Y','thims','2019-12-16 18:18:00','','0000-00-00 00:00:00'),(433,'Patient Wise Bill Report','','far fa-circle','Item/patientWiseBillReport',NULL,'Y','thims','2019-12-16 18:18:00','','0000-00-00 00:00:00'),(434,'IP Advance Refund Report','','far fa-circle','./../../pages/ipd_bill/ipd_advance_refund.php',NULL,'Y','THIMS','2018-12-31 13:18:12','','0000-00-00 00:00:00'),(435,'Hospital Earning Summary - Day Wise','','far fa-circle','./../../pages/report/dayWiseHospitalEarningReport.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(436,'Admit Date Rectification','DO','far fa-circle','./../../pages/registration/admitDateRectification.php',NULL,'Y','THIMS','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(437,'Discharge Date Rectification','','far fa-circle','./../../pages/registration/dischargeDateRectification.php',NULL,'Y','THIMS','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(438,'IP Advance Refund Report','','far fa-circle','./../../pages/ipd_bill/ipd_advance_refund.php',NULL,'Y','THIMS','2018-12-31 13:18:12','','0000-00-00 00:00:00'),(439,'Hospital Earning Summary - Day Wise','','far fa-circle','./../../pages/report/dayWiseHospitalEarningReport.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(440,'Pharmacy Earning Summary','','far fa-circle','Item/medicalStoreCollectionReportInput',NULL,'Y','thims','2019-12-16 18:18:00','','0000-00-00 00:00:00'),(441,'Pharmacy Earning Summary','','far fa-circle','Item/medicalStoreCollectionReportInput',NULL,'Y','thims','2019-12-16 18:18:00','','0000-00-00 00:00:00'),(442,'Surgery Detail Edit','','far fa-circle','./../../pages/ward/operationDetail_Edit.php',NULL,'Y','thims','2020-02-05 10:00:04','','2020-02-05 10:02:18'),(443,'Surgery Detail Edit','','far fa-circle','./../../pages/ward/operationDetail_Edit.php',NULL,'Y','thims','2020-02-05 10:00:04','','2020-02-05 10:02:18'),(445,'Service Group Charge Master','','far fa-circle','./../../pages/admin/ris_service_grp_rate.php',NULL,'Y','THIMS','2020-03-17 18:18:12','','0000-00-00 00:00:00'),(446,'Radiology Investigation','','far fa-circle','./../../pages/Doctor/ris_doctorScreen.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(447,'Religion Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=RELIGION',NULL,'Y','THIMS','2020-02-24 11:18:12','','0000-00-00 00:00:00'),(448,'Speciality Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=SPTYPE',NULL,'Y','THIMS','2020-02-24 11:18:12','','0000-00-00 00:00:00'),(449,'Template Setup','','far fa-circle','./../../pages/certificate/certificate_list.php',NULL,'Y','THIMS','2020-04-21 18:18:12','','0000-00-00 00:00:00'),(450,'Transportation Reimbursement Report','','far fa-circle','./../../pages/report/patientTransportationReceiptInput.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(451,'SMS Purpose Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=SMSPURPS',NULL,'Y','THIMS','2020-04-11 18:18:12','','0000-00-00 00:00:00'),(452,'Store Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=STORE',NULL,'Y','THIMS','2020-03-30 17:18:12','','0000-00-00 00:00:00'),(453,'Case Paper','','far fa-circle','','CASE_P','Y','THIMS','2020-04-04 17:18:12','','0000-00-00 00:00:00'),(454,'Drug Administration / Route Master','','far fa-circle','./../../pages/admin/drug_administration.php',NULL,'Y','THIMS','2020-04-04 18:18:12','','0000-00-00 00:00:00'),(455,'Agency Master','','far fa-circle','./../../pages/setup/agency_master.php',NULL,'Y','THIMS','2020-04-08 19:18:12','','0000-00-00 00:00:00'),(456,'Template Setup','','far fa-circle','./../../pages/certificate/certificate_list.php',NULL,'Y','THIMS','2020-04-21 18:18:12','','0000-00-00 00:00:00'),(457,'OutSource Report','','far fa-circle','./../../pages/report/outsource_report.php',NULL,'Y','THIMS','2020-04-25 18:18:12','','0000-00-00 00:00:00'),(458,'Investigation Report Collection','','far fa-circle','./../../pages/ward/outsource_received.php',NULL,'Y','THIMS','2020-04-25 18:18:12','','0000-00-00 00:00:00'),(459,'TPA Master','','far fa-circle','./../../pages/setup/ins_tpa_master.php?master_cd=TPA',NULL,'Y','THIMS','2020-04-30 18:18:12','','0000-00-00 00:00:00'),(460,'Insurance Master','','far fa-circle','./../../pages/setup/ins_tpa_master.php?master_cd=INS',NULL,'Y','THIMS','2020-04-30 18:18:12','','0000-00-00 00:00:00'),(461,'Discharge Summary Elements','','far fa-circle','./../../pages/lab/general_master.php?master_cd=DISCSUMM',NULL,'Y','THIMS','2020-05-13 18:18:12','','0000-00-00 00:00:00'),(462,'Day Wise Receipt Summary','','far fa-circle','./../../pages/report/dayWiseReceiptReport.php',NULL,'Y','THIMS','2020-04-25 18:18:12','','0000-00-00 00:00:00'),(463,'Total Receipt Summary','','far fa-circle','./../../pages/report/dayWiseReceiptReportTotalInput.php',NULL,'Y','THIMS','2020-04-25 18:18:12','','0000-00-00 00:00:00'),(464,'Insurance Detail Report','','far fa-circle','./../../pages/report/insuranceDetailReportInput.php',NULL,'Y','THIMS','2020-04-25 18:18:12','','0000-00-00 00:00:00'),(465,'Insurance Claim Detail','','far fa-circle','',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(466,'Pharmacy Advance Edit','RP','far fa-fa circle','','','Y','thims','2020-06-11 18:17:03','','0000-00-00 00:00:00'),(467,'Pharmacy Advance Receipt Reprint','RP','far fa-fa circle','','','Y','thims','2020-06-11 18:17:22','','0000-00-00 00:00:00'),(468,'Advance Receipt Edit','RP','far fa-fa circle','','','Y','thims','2020-06-11 21:34:43','','0000-00-00 00:00:00'),(469,'Sales Write Off Report','','far fa-\r\ncircle','Item/SalesWriteOffInput',NULL,'Y','thims','2020-06-25 00:00:36','','0000-00-00 00:00:00'),(470,'Radiology Film Consumption Report','','far fa-circle','./../../pages/report/radiologyFilmConsumptionReportInput.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(471,'Reception Dashboard','','far fa-circle','./../../pages/dashboard/doctorWiseListDashboard.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(472,'Material Request','','far fa-\r\ncircle','StoreMrDashboard/User',NULL,'Y','thims','2020-06-20 00:00:36','','0000-00-00 00:00:00'),(473,'Approve Material Request','','far fa-\r\ncircle','StoreMrDashboard/SuperUser',NULL,'Y','thims','2020-06-20 00:00:36','','0000-00-00 00:00:00'),(474,'Sales Write Off Report','','far fa-\r\ncircle','Item/SalesWriteOffInput',NULL,'Y','thims','2020-06-25 00:00:36','','0000-00-00 00:00:00'),(475,'Advance/Refund Edit','','far fa-circle','',NULL,'Y','THIMS','2020-06-16 18:18:12','','0000-00-00 00:00:00'),(476,'Advance/Refund Reprint','','far fa-circle','',NULL,'Y','THIMS','2020-06-16 18:18:12','','0000-00-00 00:00:00'),(477,'Pharmacy Advance/Refund Edit','','far fa-circle','',NULL,'Y','THIMS','2020-06-16 18:18:12','','0000-00-00 00:00:00'),(478,'Pharmacy Advance/Refund Reprint','','far fa-circle','',NULL,'Y','THIMS','2020-06-16 18:18:12','','0000-00-00 00:00:00'),(479,'Advance Refund','','far fa-circle','',NULL,'Y','THIMS','2020-06-16 18:18:12','','0000-00-00 00:00:00'),(480,'Refund Against Bill','','far fa-circle','',NULL,'Y','THIMS','2020-06-18 18:18:12','','0000-00-00 00:00:00'),(481,'Pathology Sample Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=LBSAMPLE',NULL,'Y','THIMS','2020-08-05 11:18:12','','0000-00-00 00:00:00'),(482,'IP DASHBOARD','','far fa-circle','./../../pages/dashboard/ip_billing_workbook.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(483,'User Access Report','','far fa-circle','./../../pages/admin/UserAccess.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(484,'Material Issue Note With MR','','far fa-\r\ncircle','StoreMrDashboard/ApprovedMaterialRequestList',NULL,'Y','thims','2020-07-02 00:00:36','','0000-00-00 00:00:00'),(485,'IP Medicine Issue Lead Time Report','','far fa-\r\ncircle','Item/ipMedicineIssueLeadTimeReportInput',NULL,'Y','thims','2020-07-04 00:00:36','','0000-00-00 00:00:00'),(486,'Purchase Detail - Supp / Item Wise','','far fa-\r\ncircle','Item/PurchaseDetailReportInput',NULL,'Y','thims','2020-07-06 00:00:36','','0000-00-00 00:00:00'),(487,'Doctor Wise Sales Report','','far fa-\r\ncircle','Item/DoctorWiseSalesReportInput',NULL,'Y','thims','2020-07-17 00:00:36','','0000-00-00 00:00:00'),(488,'Purchase Detail - Supp / Item Wise','','far fa-\r\ncircle','StoreItem/PurchaseDetailReportInput',NULL,'Y','thims','2020-07-30 00:00:36','','0000-00-00 00:00:00'),(489,'Product Expiry Report','','far fa-\r\ncircle','StoreItem/productExpiryInput',NULL,'Y','thims','2020-07-30 00:00:36','','0000-00-00 00:00:00'),(490,'IP Receipt Reprint','RP','far fa-circle','','','Y','thims','2020-08-22 12:25:19','','0000-00-00 00:00:00'),(491,'Account Statement Summery','','far fa-circle','',NULL,'Y','THIMS','2020-07-15 11:18:12','','0000-00-00 00:00:00'),(492,'Lab Report Printing','','far fa-circle','./../../pages/lab/dept_lab_service.php?onlyPrinting=Y',NULL,'Y','THIMS','2020-09-01 13:18:12','','0000-00-00 00:00:00'),(493,'Package Configuration','','far fa-circle','./../../pages/admin/package_configuration.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(494,'Delivery Challan','','far fa-\r\ncircle','Item/deliveryChallan',NULL,'Y','thims','2020-08-27 00:00:36','','0000-00-00 00:00:00'),(495,'Delivery Challan Return','','far fa-\r\ncircle','Item/deliveryChallanReturn',NULL,'Y','thims','2020-08-28 00:00:36','','0000-00-00 00:00:00'),(496,'Delivery Challan List','','far fa-\r\ncircle','TransactionDashboard/DeliveryChallan',NULL,'Y','thims','2020-08-28 00:00:36','','0000-00-00 00:00:00'),(497,'Delivery Challan Return List','','far fa-\r\ncircle','TransactionDashboard/DeliveryChallanReturn',NULL,'Y','thims','2020-08-28 00:00:36','','0000-00-00 00:00:00'),(498,'Purchase Order','','far fa-\r\ncircle','StorePoDashboard/PharmacyUser',NULL,'Y','thims','2020-09-04 00:00:36','','0000-00-00 00:00:00'),(499,'Approve Purchase Order','','far fa-\r\ncircle','StorePoDashboard/PharmacySuperUser',NULL,'Y','thims','2020-09-04 00:00:36','','0000-00-00 00:00:00'),(500,'PO Reprint','','far fa-\r\ncircle','StorePo/PharmacyReprint',NULL,'Y','thims','2020-09-04 00:00:36','','0000-00-00 00:00:00'),(501,'Lab Request TAT Report','RP','far fa-circle','./../../pages/report/turnAroundTimeLabReqInput.php','','Y','THIMS','2020-09-01 13:18:12','thims','2020-09-14 15:26:01'),(502,'Document Status Report','','far fa-circle','./../../pages/report/documentStatusReportInput.php',NULL,'Y','THIMS','2020-09-01 13:18:12','','0000-00-00 00:00:00'),(503,'Kit Master','','far fa-circle','./../..//pages/admin/kit_master.php',NULL,'Y','thims','2020-09-14 00:00:00','thims','2018-09-14 10:02:18'),(504,'Revenue Share Setup','','far fa-circle','./../../pages/setup/revenuesetup.php',NULL,'Y','thims','2020-09-14 00:00:00','thims','2018-09-14 10:02:18'),(505,'Expiry Update Transaction','','far fa-\r\ncircle','Item/ExpiryUpdateTransaction',NULL,'Y','thims','2020-09-22 00:00:36','','0000-00-00 00:00:00'),(506,'MRP Update Transaction','','far fa-\r\ncircle','Item/MrpUpdateTransaction',NULL,'Y','thims','2020-09-23 00:00:36','','0000-00-00 00:00:00'),(507,'Expiry Update Transaction','','far fa-\r\ncircle','Item/StoreExpiryUpdateTransaction',NULL,'Y','thims','2020-09-22 00:00:36','','0000-00-00 00:00:00'),(508,'MRP Update Transaction','','far fa-\r\ncircle','Item/StoreMrpUpdateTransaction',NULL,'Y','thims','2020-09-23 00:00:36','','0000-00-00 00:00:00'),(509,'Opening Stock Update Transaction','','far fa-\r\ncircle','Item/OpeningStockUpdateTransaction',NULL,'Y','thims','2020-09-24 00:00:36','','0000-00-00 00:00:00'),(510,'Opening Stock Update Transaction','','far fa-\r\ncircle','Item/StoreOpeningStockUpdateTransaction',NULL,'Y','thims','2020-09-26 00:00:36','','0000-00-00 00:00:00'),(511,'Cycle Count Adjustment - Item Wise','','far fa-\r\ncircle','Item/stockCycleReportItemWise',NULL,'Y','thims','2020-09-29 00:00:36','','0000-00-00 00:00:00'),(512,'Room Occupacy History Report','','far fa-circle','./../../pages/report/roomOccupancyHistoryInput.php',NULL,'Y','THIMS','2020-10-06 13:18:12','','0000-00-00 00:00:00'),(513,'Radiology Request Waiting Time Report','','far fa-circle','./../../pages/report/radiologyRequestWaitingTimeInput.php',NULL,'Y','THIMS','2020-10-06 13:18:12','','0000-00-00 00:00:00'),(514,'Consultancy Waiting Time Report','','far fa-circle','./../../pages/report/consultancyWaitingTimeInput.php',NULL,'Y','THIMS','2020-10-06 13:18:12','','0000-00-00 00:00:00'),(515,'Bill Amendment Report','','far fa-circle','./../../pages/report/iPBillAmendmentInput.php',NULL,'Y','THIMS','2020-10-06 13:18:12','','0000-00-00 00:00:00'),(516,'IP Bill Reprint','','far fa-circle','',NULL,'Y','THIMS','2020-10-03 18:18:12','','0000-00-00 00:00:00'),(517,'SOC Master Report','','far fa-circle','./../../pages/report/socMasterInput.php',NULL,'Y','THIMS','2020-10-12 13:18:12','','0000-00-00 00:00:00'),(518,'OP Addressograph','','far fa-circle','',NULL,'Y','THIMS','2020-10-14 18:18:12','','0000-00-00 00:00:00'),(519,'SOC Master Report','','far fa-circle','./../../pages/report/socMasterInput.php',NULL,'Y','THIMS','2020-10-12 13:18:12','','0000-00-00 00:00:00'),(520,'Surgery Schedule','','far fa-circle','./../../pages/ward/operation_scheduler.php',NULL,'Y','THIMS','2020-10-09 18:18:12','','0000-00-00 00:00:00'),(521,'Doctor - Services Assignment Setup','','far fa-circle','./../../pages/setup/service_doctor_assignment.php',NULL,'Y','thims','2020-10-14 10:00:04','','0000-00-00 00:00:00'),(522,'Room Release','','far fa-circle','./../../pages/registration/roomRelease.php?access=Y',NULL,'Y','thims','2020-10-14 10:00:04','','0000-00-00 00:00:00'),(523,'Investigation Group Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=INVM',NULL,'Y','thims','2020-10-19 10:00:04','','0000-00-00 00:00:00'),(524,'OP Addressograph','','far fa-circle','',NULL,'Y','THIMS','2020-10-14 18:18:12','','0000-00-00 00:00:00'),(525,'Block Room','','far fa-circle','./../../pages/registration/roomBlock.php?blockAccess=Y',NULL,'Y','thims','2020-10-23 10:00:04','','0000-00-00 00:00:00'),(526,'Purchase With PO','','far fa-\r\ncircle','Item/purchaseWithPo',NULL,'Y','thims','2020-10-08 00:00:36','','0000-00-00 00:00:00'),(527,'Purchase - Cash','','far fa-\r\ncircle','Item/purchaseCash',NULL,'Y','thims','2020-11-07 00:00:36','','0000-00-00 00:00:00'),(528,'Surgery Package Configuration','','far fa-circle','./../../pages/admin/surgery_package_configuration.php',NULL,'Y','thims','2020-10-23 10:00:04','','0000-00-00 00:00:00'),(529,'Write off Report','','far fa-circle','./../../pages/report/write_off_report_input.php',NULL,'Y','thims','2020-10-23 10:00:04','','0000-00-00 00:00:00'),(530,'TDS Report','','far fa-circle','./../../pages/report/ipTdsReportInput.php',NULL,'Y','thims','2020-10-23 10:00:04','','0000-00-00 00:00:00'),(531,'Barcode Based Product Inquiry','','far fa-\r\ncircle','Item/BarcodeBasedProductInquiry',NULL,'Y','thims','2020-11-19 00:00:36','','0000-00-00 00:00:00'),(532,'Sales Discount Report','','far fa-\r\ncircle','Item/SalesDiscountReportInput',NULL,'Y','thims','2020-11-20 00:00:36','','0000-00-00 00:00:00'),(533,'Reorder Request Report','','far fa-\r\ncircle','Item/ReorderRequestReportInput',NULL,'Y','thims','2020-11-25 00:00:36','','0000-00-00 00:00:00'),(534,'Sale Discount Edit','','far fa-\r\ncircle','Item/issueBillDiscountAmendment',NULL,'Y','thims','2020-11-27 00:00:36','','0000-00-00 00:00:00'),(535,'Lab Service Test Detail','','far fa-circle','./../../pages/report/lab_service_test.php',NULL,'Y','THIMS','2020-10-14 18:18:12','','0000-00-00 00:00:00'),(536,'Lab Test Bill Detail','','far fa-circle','./../../pages/report/lab_test_report.php',NULL,'Y','THIMS','2020-10-14 18:18:12','','0000-00-00 00:00:00'),(537,'Expense Voucher','','far fa-circle','./../../pages/admin/expense_Voucher.php',NULL,'Y','THIMS','2020-10-14 18:18:12','','0000-00-00 00:00:00'),(538,'Expense Voucher Report','','far fa-circle','./../../pages/report/expenseVoucherReport.php',NULL,'Y','THIMS','2020-11-20 18:18:12','','0000-00-00 00:00:00'),(539,'Non / Slow Moving Product Report','','far fa-\r\ncircle','Item/deadStockInput',NULL,'Y','thims','2020-12-02 00:00:36','','0000-00-00 00:00:00'),(540,'Bill Write Off','','far fa-circle','',NULL,'Y','THIMS','2020-12-05 11:18:12','','0000-00-00 00:00:00'),(541,'Write off Report','','far fa-circle','./../../pages/report/write_off_report_input.php',NULL,'Y','thims','2020-10-23 10:00:04','','0000-00-00 00:00:00'),(542,'Denomination Report','','far fa-circle','./../../pages/report/denominationReport.php',NULL,'Y','THIMS','2020-12-21 18:18:12','','0000-00-00 00:00:00'),(543,'Swap Transaction','','far fa-circle','./../../pages/billing/swapAmtDenomination.php',NULL,'Y','THIMS','2020-12-21 18:18:12','','0000-00-00 00:00:00'),(544,'Non / Slow Moving Product Report','','far fa-\r\ncircle','Item/deadStockInput',NULL,'Y','thims','2020-12-02 00:00:36','','0000-00-00 00:00:00'),(545,'IP Report - Refferal Doctor Wise','','far fa-circle','./../../pages/report/ipReportReffDocWise.php',NULL,'Y','THIMS','2020-12-05 18:18:12','','0000-00-00 00:00:00'),(546,'Bill Write Off','','far fa-circle','',NULL,'Y','THIMS','2020-12-05 11:18:12','','0000-00-00 00:00:00'),(547,'Pharmacy Expense Voucher','','far fa-circle','./../../pages/admin/pharmacy_expense_voucher.php',NULL,'Y','THIMS','2020-12-12 18:18:12','','0000-00-00 00:00:00'),(548,'Pharmacy Expense Report','','far fa-circle','./../../pages/report/pharmacyExpenseVoucherReport.php',NULL,'Y','THIMS','2020-12-15 18:18:12','','0000-00-00 00:00:00'),(549,'Denomination Report','','far fa-circle','./../../pages/report/denominationReport.php',NULL,'Y','THIMS','2020-12-21 18:18:12','','0000-00-00 00:00:00'),(550,'Purchase Scheme Amount Report','','far fa-\r\ncircle','Item/PurchaseSchemeAmountReportInput',NULL,'Y','thims','2020-12-15 00:00:36','','0000-00-00 00:00:00'),(551,'Purchase Order Amendment','','far fa-\r\ncircle','StorePo/PurchaseOrderAmendment',NULL,'Y','thims','2020-12-16 00:00:36','','0000-00-00 00:00:00'),(552,'Purchase Order Amendment','','far fa-\r\ncircle','StorePo/StorePurchaseOrderAmendment',NULL,'Y','thims','2020-12-16 00:00:36','','0000-00-00 00:00:00'),(553,'Outstanding Report New','','far fa-circle','./../../pages/report/outstandingReport.php',NULL,'Y','THIMS','2020-01-02 18:18:12','','0000-00-00 00:00:00'),(554,'Bill Report - Refferal Doctor Wise','','far fa-circle','./../../pages/report/ipReportReffDocWise.php',NULL,'Y','THIMS','2020-01-05 18:18:12','','0000-00-00 00:00:00'),(555,'Diagnosis & Prescription (New)','','far fa-circle','./../../pages/Doctor/patQueueList.php',NULL,'Y','THIMS','2020-12-21 18:18:12','','0000-00-00 00:00:00'),(556,'Patient Wise Profit Report','','far fa-\r\ncircle','Item/PatientWiseProfitReportInput',NULL,'Y','thims','2021-01-04 00:00:36','','0000-00-00 00:00:00'),(557,'OP - IP Outstanding Report','','far fa-circle','./../../pages/report/outstandingReport.php',NULL,'Y','THIMS','2020-01-02 18:18:12','','0000-00-00 00:00:00'),(558,'Bill Report - Refferal Doctor Wise','','far fa-circle','./../../pages/report/ipReportReffDocWise.php',NULL,'Y','THIMS','2020-01-05 18:18:12','','0000-00-00 00:00:00'),(559,'Advance Cancellation','','far fa-circle','',NULL,'Y','THIMS','2021-01-11 18:18:12','','0000-00-00 00:00:00'),(560,'Bill Report With Service Details - Refferal Doctor Wise','','far fa-circle','./../../pages/report/billReportDetailReffDocWise.php',NULL,'Y','THIMS','2020-01-05 18:18:12','','0000-00-00 00:00:00'),(561,'Bin Master','','far fa-circle','./../../pages/bin/bin_master.php',NULL,'Y','THIMS','2020-01-05 18:18:12','','0000-00-00 00:00:00'),(562,'LOC Master','','far fa-circle','./../../pages/location/location_master.php',NULL,'Y','THIMS','2020-01-05 18:18:12','','0000-00-00 00:00:00'),(563,'Asset Branch Master','','far fa-circle','./../../pages/asset/asset_branch_master.php',NULL,'Y','THIMS','2020-01-05 18:18:12','','0000-00-00 00:00:00'),(564,'Asset Location Master','','far fa-circle','./../../pages/asset/asset_location_master.php',NULL,'Y','THIMS','2020-01-05 18:18:12','','0000-00-00 00:00:00'),(565,'Asset Type Master','','far fa-circle','./../../pages/asset/asset_type_master.php',NULL,'Y','THIMS','2020-01-05 18:18:12','','0000-00-00 00:00:00'),(566,'OP Bill Payment Collection','','far fa-circle','./../../pages/billing/finalBillList.php?ipdOpd=O',NULL,'Y','THIMS','2020-01-19 18:18:12','','0000-00-00 00:00:00'),(567,'Store Wise Product Details','','far fa-\r\ncircle','Item/StoreWiseProductDetails',NULL,'Y','thims','2021-01-19 00:00:36','','0000-00-00 00:00:00'),(568,'Dashboard','','fas fa-tachometer-al','./../../pages/dashboard/dashboard.php?requestFor=all',NULL,'Y','THIMS','2020-02-09 18:18:12','','0000-00-00 00:00:00'),(569,'Patient Data Dashboard','','fas fa-tachometer-al','./../../pages/dashboard/dashboard.php',NULL,'Y','THIMS','2020-02-09 18:18:12','','0000-00-00 00:00:00'),(570,'Dashboard','','fas fa-tachometer-al','./../../pages/dashboard/dashboard.php?requestFor=all',NULL,'Y','THIMS','2020-02-09 18:18:12','','0000-00-00 00:00:00'),(571,'Patient Data Dashboard','','fas fa-tachometer-al','./../../pages/dashboard/dashboard.php',NULL,'Y','THIMS','2020-02-09 18:18:12','','0000-00-00 00:00:00'),(572,'Bill - Receipt Unsettlement','','far fa-\r\ncircle','Item/BillReceiptUnsettleInput',NULL,'Y','thims','2021-03-05 00:00:36','','0000-00-00 00:00:00'),(573,'Material Transfer To Vasna','','far fa-circle','./../../pages/report/materialTransferToVasna.php',NULL,'Y','thims','2021-04-19 18:18:12','','0000-00-00 00:00:00'),(574,'Pathology Patient List','','far fa-circle','./../../pages/registration/pathoPatientList.php',NULL,'Y','thims','2021-03-26 18:18:12','','0000-00-00 00:00:00'),(575,'Shift Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=SHIFT',NULL,'Y','thims','2021-04-13 18:18:12','','0000-00-00 00:00:00'),(576,'Pathology Bill','','far fa-circle','./../../pages/billing/bill.php?ipd_opd=L',NULL,'Y','thims','2021-04-17 18:18:12','','0000-00-00 00:00:00'),(577,'Radiology Bill','','far fa-circle','./../../pages/billing/bill.php?ipd_opd=R',NULL,'Y','thims','2021-04-17 18:18:12','','0000-00-00 00:00:00'),(578,'Pathology Bill Report','','far fa-circle','./../../pages/billing/opd_input.php?billing_entity=L',NULL,'Y','thims','2021-04-19 18:18:12','','0000-00-00 00:00:00'),(579,'Radiology Bill Report','','far fa-circle','./../../pages/billing/opd_input.php?billing_entity=R',NULL,'Y','thims','2021-04-19 18:18:12','','0000-00-00 00:00:00'),(580,'Material Transfer To Vasna','','far fa-circle','./../../pages/report/materialTransferToVasna.php',NULL,'Y','thims','2021-04-19 18:18:12','','0000-00-00 00:00:00'),(581,'Consignment DC','','far fa-\r\ncircle','Item/ConsignmentDeliveryChallan',NULL,'Y','thims','2021-03-27 00:00:36','','0000-00-00 00:00:00'),(582,'Consignment DC Return','','far fa-\r\ncircle','Item/ConsignmentDeliveryChallanReturn',NULL,'Y','thims','2021-03-27 00:00:36','','0000-00-00 00:00:00'),(583,'PO With Consignment DC','','far fa-\r\ncircle','StorePo/ConsignmentPurchaseOrder',NULL,'Y','thims','2021-04-02 00:00:36','','0000-00-00 00:00:00'),(584,'SMH QA Detail','','far fa-circle','./../../pages/report/smh.php',NULL,'Y','THIMS','2021-05-01 18:18:12','','0000-00-00 00:00:00'),(585,'SMH Rx','','far fa-circle','./../../pages/report/smh1.php',NULL,'Y','THIMS','2021-05-01 18:18:12','','0000-00-00 00:00:00'),(586,'Bill Print/Reprint','','far fa-circle','',NULL,'Y','thims','2020-05-06 18:18:12','','0000-00-00 00:00:00'),(587,'Payment Collection','','far fa-circle','',NULL,'Y','thims','2020-05-06 18:18:12','','0000-00-00 00:00:00'),(588,'LAB Bill','','far fa-circle','',NULL,'Y','thims','2021-05-06 18:18:12','','0000-00-00 00:00:00'),(589,'Bill Edit','','far fa-circle','',NULL,'Y','thims','2021-05-06 18:18:12','','0000-00-00 00:00:00'),(590,'LAB Bill Cancelation','','far fa-circle','',NULL,'Y','thims','2021-05-06 18:18:12','','0000-00-00 00:00:00'),(591,'Receipt Print/Reprint','','far fa-circle','',NULL,'Y','thims','2021-05-06 18:18:12','','0000-00-00 00:00:00'),(592,'Receipt Edit','','far fa-circle','',NULL,'Y','thims','2021-05-06 18:18:12','','0000-00-00 00:00:00'),(593,'LAB Client Master','','far fa-circle','./../../pages/setup/agency_master.php?clientmaster=Y',NULL,'Y','THIMS','2021-05-15 19:18:12','','0000-00-00 00:00:00'),(594,'LAB Bill Cancellation','','far fa-circle','./../../pages/cancle/bill_cancel.php?ipd_opd=O&&bill_entity=L',NULL,'Y','thims','2021-05-15 19:18:12','','0000-00-00 00:00:00'),(595,'Client Wise Bill report','','far fa-circle','./../../pages/report/clientWiseDetailReport.php',NULL,'Y','thims','2021-05-18 19:18:12','','0000-00-00 00:00:00'),(596,'LAB Bill Payment Collection','','far fa-circle','./../../pages/billing/finalBillList.php?ipdOpd=O&labCollection=Y',NULL,'Y','THIMS','2021-05-19 18:18:12','','0000-00-00 00:00:00'),(597,'LAB Patient Edit','','far fa-circle','',NULL,'Y','THIMS','2021-05-20 18:18:12','','0000-00-00 00:00:00'),(598,'LAB Credit Bill (Reversal Of Bill)','','far fa-circle','./../../pages/billing/partiallyCreditBill.php?bill_entity=L',NULL,'Y','thims','2021-05-20 19:18:12','','0000-00-00 00:00:00'),(599,'LAB Bill Rectification','','far fa-circle','./../../pages/billing/opBillPartiallyEdit.php?bill_entity=L',NULL,'Y','thims','2021-05-21 19:18:12','','0000-00-00 00:00:00'),(600,'LAB Bill Amendment','','far fa-circle','./../../pages/billing/billEditSearchList.php?bill_entity=L',NULL,'Y','thims','2021-05-21 19:18:12','','0000-00-00 00:00:00'),(601,'Direct OP Bill','','far fa-circle','./../../pages/billing/bill.php?ipd_opd=H&&back=Y',NULL,'Y','thims','2021-04-17 18:18:12','','0000-00-00 00:00:00'),(602,'OP IP Summary(Department Wise)','','far fa-circle','./../../pages/report/departmentWiseInput.php',NULL,'Y','thims','2021-04-17 18:18:12','','0000-00-00 00:00:00'),(603,'Direct OP Bill','','far fa-circle','./../../pages/billing/bill.php?ipd_opd=H&&back=Y',NULL,'Y','thims','2021-04-17 18:18:12','','0000-00-00 00:00:00'),(604,'OP IP Summary(Department Wise)','','far fa-circle','./../../pages/report/departmentWiseInput.php',NULL,'Y','thims','2021-04-17 18:18:12','','0000-00-00 00:00:00'),(605,'Bill - Receipt Unsettlement','','far fa-\r\ncircle','Item/BillReceiptUnsettleInput',NULL,'Y','thims','2021-03-05 00:00:36','','0000-00-00 00:00:00'),(606,'Consignment Purchase','','far fa-\r\ncircle','Item/ConsignmentPurchase',NULL,'Y','thims','2021-03-24 00:00:36','','0000-00-00 00:00:00'),(607,'Consignment Purchase Return','','far fa-\r\ncircle','Item/ConsignmentPurchaseReturn',NULL,'Y','thims','2021-03-24 00:00:36','','0000-00-00 00:00:00'),(608,'Consignment Purchase List','','far fa-\r\ncircle','TransactionDashboard/ConsignmentPurchase',NULL,'Y','thims','2021-03-24 00:00:36','','0000-00-00 00:00:00'),(609,'Consignment Purchase Return List','','far fa-\r\ncircle','TransactionDashboard/ConsignmentPurchaseReturn',NULL,'Y','thims','2021-03-24 00:00:36','','0000-00-00 00:00:00'),(610,'Consignment Transaction Register','','far fa-\r\ncircle','Item/ConsignmentRegisterInput',NULL,'Y','thims','2021-03-26 00:00:36','','0000-00-00 00:00:00'),(611,'Consignment DC','','far fa-\r\ncircle','Item/ConsignmentDeliveryChallan',NULL,'Y','thims','2021-03-27 00:00:36','','0000-00-00 00:00:00'),(612,'Consignment DC Return','','far fa-\r\ncircle','Item/ConsignmentDeliveryChallanReturn',NULL,'Y','thims','2021-03-27 00:00:36','','0000-00-00 00:00:00'),(613,'PO With Consignment DC','','far fa-\r\ncircle','StorePo/ConsignmentPurchaseOrder',NULL,'Y','thims','2021-04-02 00:00:36','','0000-00-00 00:00:00'),(614,'IP Patient Care New','','far fa-circle','./../../pages/ward/exam_medi_reco_result_V1.php',NULL,'Y','THIMS','2018-09-14 18:18:12','','0000-00-00 00:00:00'),(615,'IMEI Master','','far fa-circle','./../../pages/admin/imei_master.php',NULL,'Y','THIMS','2021-07-22 16:29:45','','0000-00-00 00:00:00'),(616,'IMEI Master','','far fa-circle','./../../pages/admin/imei_master.php',NULL,'Y','THIMS','2021-08-04 14:43:24','','0000-00-00 00:00:00'),(617,'Direct Bill Report','','far fa-circle','./../../pages/billing/opd_input.php?billing_entity=O&&DirectBill=Y',NULL,'Y','THIMS','2021-08-17 16:09:29','','0000-00-00 00:00:00'),(618,'IP Billing Summary Reprint','','far fa-circle','',NULL,'Y','thims','2021-08-13 18:18:12','','0000-00-00 00:00:00'),(619,'IP Bill Rate Edit','','far fa-circle','./../../pages/ipd_bill/ipBillRateEdit.php',NULL,'Y','thims','2021-08-13 18:18:12','','0000-00-00 00:00:00'),(620,'OP Patient Care For MO','','far fa-circle','./../../pages/Doctor/patQueueListForMO.php',NULL,'Y','THIMS','2020-12-21 18:18:12','','0000-00-00 00:00:00'),(621,'Radiology Service Request','','far fa-circle','./../../pages/ward/ward_req.php?grp_cd=XRY',NULL,'Y','thims','2021-08-13 18:18:12','','0000-00-00 00:00:00'),(622,'Medicine Instruction New','','far fa-circle','./../../pages/setup/multi_language_inst.php?mli_grp=MINST',NULL,'Y','THIMS','2021-08-27 18:18:12','','0000-00-00 00:00:00'),(623,'General Instruction Master','','far fa-circle','./../../pages/setup/multi_language_inst.php?mli_grp=PLAN',NULL,'Y','THIMS','2021-08-27 18:18:12','','0000-00-00 00:00:00'),(624,'LAB Charges B to B','','far fa-circle','./../../pages/admin/btob_charges.php',NULL,'Y','THIMS','2021-09-02 02:18:12','','0000-00-00 00:00:00'),(625,'Single IP Pharmacy Bill','','far fa-\r\ncircle','Item/SingleIpPharmacyBill',NULL,'Y','thims','2021-07-17 00:00:36','','0000-00-00 00:00:00'),(626,'Tally Export Flag Reversal','','far fa-circle','./../../pages/tallyxml/tallyxmlFlagUpdate.php',NULL,'Y','THIMS','2021-09-09 02:18:12','','0000-00-00 00:00:00'),(627,'OP/IP Bill Rectification','','far fa-circle','./../../pages/billing/patientBillList.php',NULL,'Y','THIMS','2021-08-27 18:18:12','','0000-00-00 00:00:00'),(628,'Tally Export Flag Reversal','','far fa-circle','./../../pages/tallyxml/tallyxmlFlagUpdate.php',NULL,'Y','THIMS','2021-09-09 02:18:12','','0000-00-00 00:00:00'),(629,'OP Detail Edit','','far fa-circle','',NULL,'Y','THIMS','2021-10-02 14:18:12','','0000-00-00 00:00:00'),(630,'OP IP Bill View','','far fa-circle','./../../pages/billing/patientBillList.php?billView=Y',NULL,'Y','THIMS','2021-08-27 18:18:12','','0000-00-00 00:00:00'),(631,'EDD Report','','far fa-circle','./../../pages/report/edd_report.php',NULL,'Y','THIMS','2021-08-27 18:18:12','','0000-00-00 00:00:00'),(632,'IP Bill Lab - Radiology','','far fa-circle','',NULL,'Y','THIMS','2021-10-05 14:18:12','','0000-00-00 00:00:00'),(633,'Past data (win MD) Preview','','far fa-circle','./../../pages/report/smh_search.php',NULL,'Y','THIMS','2021-10-14 18:18:12','','0000-00-00 00:00:00'),(634,'Operation Step Profile Master','','far fa-circle','./../../pages/setup/opStepProfileMaster.php',NULL,'Y','THIMS','2021-10-14 18:18:12','','0000-00-00 00:00:00'),(635,'Referral Doctor Edit','','far fa-circle','',NULL,'Y','THIMS','2021-10-19 14:18:12','','0000-00-00 00:00:00'),(636,'LAB Summary Elements','','far fa-circle','./../../pages/lab/general_master.php?master_cd=LABELEMT',NULL,'Y','THIMS','2021-11-08 18:18:12','','0000-00-00 00:00:00'),(637,'Lab Result Input - Biopsy','','far fa-circle','./../../pages/lab/dept_lab_service.php?biopsyReport=Y',NULL,'Y','THIMS','2021-11-08 13:18:12','','0000-00-00 00:00:00'),(638,'Room Transfer Request','','far fa-circle','',NULL,'Y','THIMS','2021-12-27 14:18:12','','0000-00-00 00:00:00'),(639,'Room Transfer Request','','far fa-circle','./../../pages/room/roomTransferRequest.php?transfer_request=Y',NULL,'Y','THIMS','2021-12-30 13:18:12','','0000-00-00 00:00:00'),(640,'Room Transfer','','far fa-circle','./../../pages/room/roomTransferRequest.php?transfer_request=N',NULL,'Y','THIMS','2021-12-30 13:18:12','','0000-00-00 00:00:00'),(641,'Agency Wise B TO B Charges','','far fa-circle','./../../pages/admin/agencywise_btob_charges.php',NULL,'Y','THIMS','2021-01-22 13:18:12','','0000-00-00 00:00:00'),(642,'Copy Pharmacy Bill(111 to 009)','','far fa-circle','./../../pages/auto_backup/auto_copy_product_transaction_input.php',NULL,'Y','thims','2021-02-17 13:18:12','','0000-00-00 00:00:00'),(643,'Notification MSG Master','','far fa-circle','./../../pages/admin/notificationMsgMaster.php',NULL,'Y','thims','2021-02-02 13:18:12','','0000-00-00 00:00:00'),(644,'Shift Master','','far fa-circle','./../attendance/shift_master.php','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(645,'Shift Schedule - HR','','far fa-circle','./../attendance/employee_shift_schedule?fn_by=H','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(646,'Shift Schedule - Superwiser','','far fa-circle','./../attendance/employee_shift_schedule?fn_by=S','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(647,'Attendance Calculation','','far fa-circle','./../attendance/attendance_calculation.php','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(648,'Attendance LOP days finding','','far fa-circle','./../attendance/attendance_lop_days_finding.php','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(649,'Attendence Finalization - HR','','far fa-circle','./../attendance/attendence_finalization?finalization_by=H','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(650,'Attendence Finalization - Superwiser','','far fa-circle','./../attendance/attendence_finalization?finalization_by=S','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(651,'Employee Attendance Check','','far fa-circle','./../attendance/new_employee_attendence_check_approve?ctype=R','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(652,'Employee Time Correction Approve','','far fa-circle','./../attendance/new_employee_attendence_check_approve?ctype=A','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(653,'IP Package Report','','far fa-circle','./../../pages/report/ipPatientPackageReportInput.php',NULL,'Y','thims','2021-02-23 13:18:12','','0000-00-00 00:00:00'),(654,'Outsource Billing Report ','','far fa-circle','./../../pages/report/outsourceBillReport.php',NULL,'Y','thims','2021-02-09 13:18:12','','0000-00-00 00:00:00'),(655,'IP Package Report','','far fa-circle','./../../pages/report/ipPatientPackageReportInput.php',NULL,'Y','thims','2021-02-23 13:18:12','','0000-00-00 00:00:00'),(656,'IP Package Report','','far fa-circle','./../../pages/report/ipPatientPackageReportInput.php',NULL,'Y','thims','2021-02-23 13:18:12','','0000-00-00 00:00:00'),(657,'IP Package Report','','far fa-circle','./../../pages/report/ipPatientPackageReportInput.php',NULL,'Y','thims','2021-02-23 13:18:12','','0000-00-00 00:00:00'),(658,'IP Package Report','','far fa-circle','./../../pages/report/ipPatientPackageReportInput.php',NULL,'Y','thims','2021-02-23 13:18:12','','0000-00-00 00:00:00'),(659,'Outsource Billing Report ','','far fa-circle','./../../pages/report/outsourceBillReport.php',NULL,'Y','thims','2021-02-09 13:18:12','','0000-00-00 00:00:00'),(660,'Recently Visited Menus','','far fa-clock-o','./../../pages/admin/transaction_history.php',NULL,'Y','thims','2021-02-23 13:18:12','','0000-00-00 00:00:00'),(661,'Laundry Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=LAUNDRY',NULL,'Y','thims','2021-02-23 13:18:12','','0000-00-00 00:00:00'),(662,'OP/IP Revenue Share Report New','','far fa-circle','./../../pages/report/three_tier_revenue_share_report_input.php',NULL,'Y','thims','2021-02-23 13:18:12','','0000-00-00 00:00:00'),(663,'OP/IP Revenue Share Edit','','far fa-circle','./../../pages/report/three_tier_revenue_share_Edit.php',NULL,'Y','thims','2021-02-23 13:18:12','','0000-00-00 00:00:00'),(664,'Revenue Share Setup New','','far fa-circle','./../../pages/setup/revenue_setup_new.php',NULL,'Y','thims','2021-02-23 13:18:12','','0000-00-00 00:00:00'),(665,'Insurance Cover Letter','','far fa-circle','',NULL,'Y','thims','2022-03-24 13:18:12','','0000-00-00 00:00:00'),(666,'Upload Charges','','far fa-circle','./../../pages/report/uploadCharges.php',NULL,'Y','thims','2022-03-25 13:18:12','','0000-00-00 00:00:00'),(667,'Surgery Detail Report','','far fa-circle','./../../pages/report/operationReport.php',NULL,'Y','thims','2022-03-25 13:18:12','','0000-00-00 00:00:00'),(668,'Upload DepartmentWise Charges','','far fa-circle','./../../pages/report/uploadDeptWiseCharges.php',NULL,'Y','thims','2022-04-04 13:18:12','','0000-00-00 00:00:00'),(669,'Upload ConsultantLevel Charges','','far fa-circle','./../../pages/report/uploadConsultantWiseCharges.php',NULL,'Y','thims','2022-04-04 13:18:12','','0000-00-00 00:00:00'),(670,'Upload GradeWise Charges','','far fa-circle','./../../pages/report/uploadSurgeryGradeWiseCharges.php',NULL,'Y','thims','2022-04-04 13:18:12','','0000-00-00 00:00:00'),(671,'Cycle Report','','far fa-circle','Item/cycleReportInput',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(672,'Cycle List','','far fa-circle','Item/cycleList',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(673,'OP/IP Revenue Share Report Print','','far fa-circle','./../../pages/report/three_tier_revenue_share_report_input.php?print=Y',NULL,'Y','thims','2021-02-23 13:18:12','','0000-00-00 00:00:00'),(674,'Cycle Cancel','','far fa-circle','Item/cycleCancellationInput',NULL,'Y','thims','2019-03-08 15:13:57','','0000-00-00 00:00:00'),(675,'Record Discharge Summary 2.0','','far fa-circle','',NULL,'Y','thims','2021-05-04 13:18:12','','0000-00-00 00:00:00'),(676,'View Discharge Summary 2.0','','far fa-circle','',NULL,'Y','thims','2021-05-04 13:18:12','','0000-00-00 00:00:00'),(677,'Upload Health Package Charges','','far fa-circle','./../../pages/report/uploadHealthPackage.php',NULL,'Y','thims','2022-05-06 13:18:12','','0000-00-00 00:00:00'),(678,'OP BIll - Day Summary','','far fa-circle','./../../pages/tallyxml/billing_voucher_summary_export_ui.php',NULL,'Y','THIMS','2021-10-19 14:18:12','','0000-00-00 00:00:00'),(679,'OP Receipt - Day Summary','','far fa-circle','./../../pages/tallyxml/receipt_voucher_summary_export_ui.php',NULL,'Y','THIMS','2021-10-19 14:18:12','','0000-00-00 00:00:00'),(680,'OP BIll - Individual','','far fa-circle','./../../pages/tallyxml/op_billing_detail_voucher_export_ui.php',NULL,'Y','THIMS','2021-10-19 14:18:12','','0000-00-00 00:00:00'),(681,'OP Receipt - Individual','','far fa-circle','./../../pages/tallyxml/op_receipt_detail_voucher_export_ui.php',NULL,'Y','THIMS','2021-10-19 14:18:12','','0000-00-00 00:00:00'),(682,'Vital Master','','far fa-circle','./../../pages/admin/vitalMaster.php',NULL,'Y','thims','2022-05-20 13:18:12','','0000-00-00 00:00:00'),(683,'LAB Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php?billing_entity=L',NULL,'Y','thims','2022-05-26 13:18:12','','0000-00-00 00:00:00'),(684,'Radiology Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php?billing_entity=R',NULL,'Y','thims','2022-05-26 13:18:12','','0000-00-00 00:00:00'),(685,'In Patient Case Sheet Reprint','','far fa-circle','',NULL,'Y','thims','2022-05-26 13:18:12','','0000-00-00 00:00:00'),(686,'Pharmacy Receipt Edit','','far fa-circle','./../../pages/report/pharmacy_receipt_edit.php',NULL,'Y','thims','2022-05-26 13:18:12','','0000-00-00 00:00:00'),(687,'MOU Report','','far fa-circle','./../../pages/report/write_off_report_input.php?report_type=M',NULL,'Y','thims','2022-06-18 13:18:12','','0000-00-00 00:00:00'),(688,'Bariatric Process','./','far fa-circle','',NULL,'Y','thims','2022-05-26 13:18:12','','0000-00-00 00:00:00'),(689,'Bariatric Process','','far fa-circle','',NULL,'Y','thims','2022-05-26 13:18:12','','0000-00-00 00:00:00'),(690,'Product Configuration','','far fa-circle','./../../pages/setup/parameterSetup.php',NULL,'Y','thims','2022-06-18 13:18:12','','0000-00-00 00:00:00'),(691,'MOU Report','','far fa-circle','./../../pages/report/write_off_report_input.php?report_type=M',NULL,'Y','thims','2022-06-18 13:18:12','','0000-00-00 00:00:00'),(692,'Dialysis Bill','','far fa-circle','./../../pages/billing/bill.php?ipd_opd=D',NULL,'Y','thims','2022-07-02 13:18:12','','0000-00-00 00:00:00'),(693,'Dialysis Bill Report','','far fa-circle','./../../pages/billing/opd_input.php?billing_entity=D',NULL,'Y','thims','2022-07-02 13:18:12','','0000-00-00 00:00:00'),(694,'Dialysis Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php?billing_entity=D',NULL,'Y','thims','2022-07-02 13:18:12','','0000-00-00 00:00:00'),(695,'Dialysis Bill Cancellation','','far fa-circle','./../../pages/cancle/bill_cancel.php?ipd_opd=O&&bill_entity=D',NULL,'Y','thims','2022-07-02 19:18:12','','0000-00-00 00:00:00'),(696,'Investigation Advance','','far fa-circle','',NULL,'Y','thims','2022-07-05 19:18:12','','0000-00-00 00:00:00'),(697,'Investigation Advance Refund','','far fa-circle','',NULL,'Y','thims','2022-07-05 19:18:12','','0000-00-00 00:00:00'),(698,'Service Transaction Log','','far fa-circle','',NULL,'Y','thims','2022-07-15 19:18:12','','0000-00-00 00:00:00'),(699,'OP Receipt Cancellation','','far fa-circle','',NULL,'Y','thims','2022-07-21 19:18:12','','0000-00-00 00:00:00'),(700,'IP Receipt Cancellation','','far fa-circle','',NULL,'Y','thims','2022-07-21 19:18:12','','0000-00-00 00:00:00'),(701,'Data Modified List','','far fa-circle','./../../pages/admin/dataFieldsModification.php',NULL,'Y','thims','2022-08-09 19:18:12','','0000-00-00 00:00:00'),(702,'Service Master Approval','','far fa-circle','./../../pages/admin/service_master_approval.php',NULL,'Y','thims','2022-06-18 13:18:12','','0000-00-00 00:00:00'),(703,'OP - IP GST Report','','far fa-circle','./../../pages/report/gst_report.php',NULL,'Y','thims','2022-09-23 13:18:12','','0000-00-00 00:00:00'),(704,'OPD Charge Master Approval','','far fa-circle','./../../pages/admin/opdChargeMaster_Approval.php',NULL,'Y','thims','2022-06-18 13:18:12','','0000-00-00 00:00:00'),(705,'Investigation Margin Report','','far fa-circle','./../../pages/report/investigationMarginReport.php',NULL,'Y','thims','2022-10-19 13:18:12','','0000-00-00 00:00:00'),(706,'Cardiac Procedure','','far fa-circle','./../../pages/radiology/radiology_dashboard.php?dashboard=cardiac',NULL,'Y','thims','2022-11-05 13:18:12','','0000-00-00 00:00:00'),(707,'Cardiac Procedure','','far fa-circle','./../../pages/radiology/radiology_dashboard.php?dashboard=cardiac',NULL,'Y','thims','2022-11-05 13:18:12','','0000-00-00 00:00:00'),(708,'Cardiac Procedure','','far fa-circle','./../../pages/radiology/radiology_dashboard.php?dashboard=cardiac',NULL,'Y','thims','2022-11-05 13:18:12','','0000-00-00 00:00:00'),(709,'Cardiac Procedure','','far fa-circle','./../../pages/radiology/radiology_dashboard.php?dashboard=cardiac',NULL,'Y','thims','2022-11-05 13:18:12','','0000-00-00 00:00:00'),(710,'Cardiac Procedure','','far fa-circle','./../../pages/radiology/radiology_dashboard.php?dashboard=cardiac',NULL,'Y','thims','2022-11-05 13:18:12','','0000-00-00 00:00:00'),(711,'Package Configuration Approval','','far fa-circle','./../../pages/admin/package_configuration_approval.php',NULL,'Y','thims','2022-06-18 13:18:12','','0000-00-00 00:00:00'),(712,'LAB Service Request','','far fa-circle','',NULL,'Y','THIMS','2021-10-05 14:18:12','','0000-00-00 00:00:00'),(713,'RAD Service Request','','far fa-circle','',NULL,'Y','THIMS','2021-10-05 14:18:12','','0000-00-00 00:00:00'),(714,'Data Rectification','','far fa-circle','',NULL,'Y','THIMS','2022-12-23 14:18:12','','0000-00-00 00:00:00'),(715,'OP Bill Date Time Edit','','far fa-circle','',NULL,'Y','THIMS','2022-12-23 14:18:12','','0000-00-00 00:00:00'),(716,'IP Bill Date Time Edit','','far fa-circle','',NULL,'Y','THIMS','2022-12-23 14:18:12','','0000-00-00 00:00:00'),(717,'Receipt Date Time Edit','','far fa-circle','',NULL,'Y','THIMS','2022-12-23 14:18:12','','0000-00-00 00:00:00'),(718,'OP Registration Department Edit','','far fa-circle','',NULL,'Y','THIMS','2022-12-23 14:18:12','','0000-00-00 00:00:00'),(719,'IP Registration Department Edit','','far fa-circle','',NULL,'Y','THIMS','2022-12-23 14:18:12','','0000-00-00 00:00:00'),(720,'OP Registration Doctor Edit','','far fa-circle','',NULL,'Y','THIMS','2022-12-23 14:18:12','','0000-00-00 00:00:00'),(721,'IP Registration Doctor Edit','','far fa-circle','',NULL,'Y','THIMS','2022-12-23 14:18:12','','0000-00-00 00:00:00'),(722,'Pharmacy Receipt Date / Time Edit','','far fa-circle','',NULL,'Y','THIMS','2022-12-23 14:18:12','','0000-00-00 00:00:00'),(723,'Pharmacy Sales Bill Date / Time Edit','','far fa-circle','',NULL,'Y','THIMS','2022-12-23 14:18:12','','0000-00-00 00:00:00'),(724,'Pharmacy Sales Bill Type - Cash /Credit','','far fa-circle','',NULL,'Y','THIMS','2022-12-23 14:18:12','','0000-00-00 00:00:00'),(725,'Pharmacy Sales Return Bill Date / Time Edit','','far fa-circle','',NULL,'Y','THIMS','2022-12-23 14:18:12','','0000-00-00 00:00:00'),(726,'Pharmacy Sales Return Bill Type - Cash /Credit','','far fa-circle','',NULL,'Y','THIMS','2022-12-23 14:18:12','','0000-00-00 00:00:00'),(727,'Income Distribution Report','','far fa-circle','./../../pages/report/incomeDistributionReport.php',NULL,'Y','thims','2022-12-28 13:18:12','','0000-00-00 00:00:00'),(728,'Registration Entity Change','','far fa-circle','',NULL,'Y','THIMS','2022-12-31 14:18:12','','0000-00-00 00:00:00'),(729,'Investigation Margin Report','','far fa-circle','./../../pages/report/investigationMarginReport.php',NULL,'Y','thims','2022-12-28 13:18:12','','0000-00-00 00:00:00'),(730,'Business Entity Doctor Mapping','','far fa-circle','./../../pages/admin/doctorEntityMappingMater.php',NULL,'Y','thims','2023-01-02 13:18:12','','0000-00-00 00:00:00'),(731,'Doctor/Entity Update In Bill','','far fa-circle','./../../pages/billing/billDoctorEntityUpdate.php',NULL,'Y','thims','2023-01-02 13:18:12','','0000-00-00 00:00:00'),(732,'User Role Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=USERROLE',NULL,'Y','THIMS','2023-01-31 11:18:12','','0000-00-00 00:00:00'),(733,'Pharmacy Profit Report - OP & Cust','','far fa-circle','Item/profitReportInputOp',NULL,'Y','thims','2019-03-08 10:15:41','','0000-00-00 00:00:00'),(734,'Business Entity Room Mapping','','far fa-circle','./../../pages/admin/roomEntityMappingMaster.php',NULL,'Y','thims','2023-02-15 13:18:12','','0000-00-00 00:00:00'),(735,'Medicine Schedule Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=SCHPHA',NULL,'Y','thims','2023-03-06 18:18:00','','0000-00-00 00:00:00'),(736,'GST Credit Note','','far fa-circle','Item/GSTCreditnote',NULL,'Y','thims','2023-03-06 18:18:00','','0000-00-00 00:00:00'),(737,'GST Credit Note Report','','far fa-circle','Item/GSTCreditNoteReportInput',NULL,'Y','thims','2023-03-06 18:18:00','','0000-00-00 00:00:00'),(738,'BMSH MIS Report','','far fa-circle','./../../pages/report/mis_daily_report.php',NULL,'Y','thims','2023-04-03 18:18:00','','0000-00-00 00:00:00'),(739,'Bariatric Data Analysis Report','','far fa-circle','./../../pages/report/bariatric_data_analysis_report_Input.php',NULL,'Y','THIMS','2023-04-11 02:18:12','','0000-00-00 00:00:00'),(740,'Blood Bank Bill','','far fa-circle','./../../pages/billing/bill.php?ipd_opd=B',NULL,'Y','thims','2023-03-22 13:18:12','','0000-00-00 00:00:00'),(741,'Blood Bank Bill Report','','far fa-circle','./../../pages/billing/opd_input.php?billing_entity=B',NULL,'Y','thims','2023-03-22 13:18:12','','0000-00-00 00:00:00'),(742,'Blood Bank Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php?billing_entity=B',NULL,'Y','thims','2023-03-22 13:18:12','','0000-00-00 00:00:00'),(743,'Blood Bank Bill Cancellation','','far fa-circle','./../../pages/cancle/bill_cancel.php?ipd_opd=O&&bill_entity=B',NULL,'Y','thims','2023-03-22 19:18:12','','0000-00-00 00:00:00'),(744,'Radiology Charges B to B','','far fa-circle','./../../pages/admin/btob_charges.php?group=xry',NULL,'Y','THIMS','2023-04-10 02:18:12','','0000-00-00 00:00:00'),(745,'Bill Bifurcation Report','','far fa-circle','./../../pages/report/doctorAllocationWiseBillReport.php',NULL,'Y','THIMS','2023-04-11 02:18:12','','0000-00-00 00:00:00'),(746,'Whatsapp Message Configuration','','far fa-circle','./../../pages/admin/whatsapp_msg_setup.php',NULL,'Y','THIMS','2023-04-11 02:18:12','','0000-00-00 00:00:00'),(747,'Discharged - Final Bill Not Prepared Report','','far fa-circle','./../../pages/report/finalBillNotPreparedReport.php',NULL,'Y','thims','2023-03-22 13:18:12','','0000-00-00 00:00:00'),(748,'Patient Diagnosis/Co-Morb Report','','far fa-circle','./../../pages/report/patientDiagnosisReport.php',NULL,'Y','thims','2023-05-22 13:18:12','','0000-00-00 00:00:00'),(749,'Room Reservation','','far fa-circle','./../../pages/registration/room_reservation.php',NULL,'Y','thims','2023-05-29 10:00:04','','0000-00-00 00:00:00'),(750,'Discard Stock','','far fa-circle','Item/stockDiscard',NULL,'Y','thims','2023-03-06 18:18:00','','0000-00-00 00:00:00'),(751,'Stock Statement - Requested By','','far fa-circle','StoreItem/storeStockStatementReqByInput',NULL,'Y','thims','2023-03-06 18:18:00','','0000-00-00 00:00:00'),(752,'Radiology Department Reporting','','far fa-circle','./../../pages/radiology/radiology_dashboard.php?RadReporting=Y',NULL,'Y','thims','2023-07-17 13:18:12','','0000-00-00 00:00:00'),(753,'Radiology Department Reporting V1','','far fa-circle','./../../pages/radiology/radiology_dashboard_v1.php?RadReporting=Y',NULL,'Y','thims','2023-07-17 13:18:12','','0000-00-00 00:00:00'),(754,'Package Bill - Service Detail','','far fa-circle','',NULL,'Y','thims','2023-07-26 13:18:12','','0000-00-00 00:00:00'),(755,'Room Availability','','far fa-circle','./../../pages/registration/available_rooms.php',NULL,'Y','thims','2023-08-09 13:18:12','','0000-00-00 00:00:00'),(756,'Discharge TAT Report','','far fa-circle','./../../pages/report/dischargeTAT.php',NULL,'Y','thims','2023-08-23 13:18:12','','0000-00-00 00:00:00'),(757,'Sales Return Free Hand Entry','','far fa-circle','Item/issueReturnFreeHand',NULL,'Y','thims','2023-03-06 18:18:00','','0000-00-00 00:00:00'),(758,'Sales Return Amendment','','far fa-circle','Item/issueReturnBillAmendment',NULL,'Y','thims','2023-03-06 18:18:00','','0000-00-00 00:00:00'),(759,'Amendment Report','','far fa-circle','Item/SalesAmendmentView',NULL,'Y','thims','2023-03-06 18:18:00','','0000-00-00 00:00:00'),(760,'Document Upload - GD','','far fa-circle','./../../pages/document/document_upload_on_drive_input.php',NULL,'Y','thims','2023-08-23 13:18:12','','0000-00-00 00:00:00'),(761,'Sticker Template Setup','','far fa-circle','./../../pages/certificate/certificate_list.php?templateType=STCKR',NULL,'Y','thims','2023-09-27 13:18:12','','0000-00-00 00:00:00'),(762,'Amendment Bill Print','','far fa-circle','./../../pages/ipd_bill/ipd_bill_reprint.php?amendmentPrint=Y',NULL,'Y','thims','2023-10-07 13:18:12','','0000-00-00 00:00:00'),(763,'Package Bill - Service Detail Edit','','far fa-circle','',NULL,'Y','thims','2023-10-11 13:18:12','','0000-00-00 00:00:00'),(764,'Fitness Report','','far fa-circle','',NULL,'Y','thims','2023-10-31 13:18:12','','0000-00-00 00:00:00'),(765,'Backup Dashboard','','far fa-circle','./../../pages/admin/backup_dashboard.php',NULL,'Y','thims','2023-11-06 13:18:12','','0000-00-00 00:00:00'),(766,'Patient Diet Plan','','far fa-circle','./../../pages/Diet_Management/patient_diet_composition.php',NULL,'Y','thims','2023-11-24 13:18:12','','0000-00-00 00:00:00'),(767,'Diet Plan Report','','far fa-circle','./../../pages/Diet_Management/dietCompositionReport.php',NULL,'Y','thims','2023-11-24 13:18:12','','0000-00-00 00:00:00'),(768,'OT Note','','far fa-circle','',NULL,'Y','thims','2024-01-03 13:18:12','','0000-00-00 00:00:00'),(769,'Patient Not Visited Report','','far fa-circle','./../../pages/report/patientNotVisited.php',NULL,'Y','thims','2023-11-24 13:18:12','','0000-00-00 00:00:00'),(770,'Additional Vitals','','far fa-circle','',NULL,'Y','thims','2024-02-02 13:18:12','','0000-00-00 00:00:00'),(771,'Additional Vitals Master','','far fa-circle','./../../pages/admin/additionalVitalsMaster.php',NULL,'Y','thims','2024-02-02 13:18:12','','0000-00-00 00:00:00'),(772,'Manufacturer Wise - Purchase Detail','','far fa-\r\ncircle','manufactur/productWiseReportInput',NULL,'Y','thims','2020-08-28 00:00:36','','0000-00-00 00:00:00'),(773,'Doctor And Patient Wise - Sales Report','','far fa-\r\ncircle','doctorWise/patientSalesReportInput',NULL,'Y','thims','2020-08-28 00:00:36','','0000-00-00 00:00:00'),(774,'Patient Not Visited Report','','far fa-circle','./../../pages/report/patientNotVisited.php',NULL,'Y','thims','2023-11-24 13:18:12','','0000-00-00 00:00:00'),(775,'General Store Supplier Payment','','far fa-\r\n    circle','StoreItem/GeneralStoreSupplierPayment',NULL,'Y','thims','2020-08-28 00:00:36','','0000-00-00 00:00:00'),(776,'OP Patient Care Order Master','','far fa-circle','./../../pages/lab/general_master.php?master_cd=OPCAREP',NULL,'Y','THIMS','2024-02-09 11:18:12','','0000-00-00 00:00:00'),(777,'Patient Self Registration Report','','far fa-circle','./../../pages/report/selfRegistrationReport.php',NULL,'Y','THIMS','2024-02-09 11:18:12','','0000-00-00 00:00:00'),(778,'Nursing Assessment','','far fa-circle','./../../pages/Doctor/nursingAssessmentInput.php',NULL,'Y','THIMS','2024-03-13 11:18:12','','0000-00-00 00:00:00'),(779,'Approve Leave By HR','','far fa-circle','HRApproveLeave',NULL,'Y','thims','2024-02-19 00:00:00','','0000-00-00 00:00:00'),(780,'Supervisor Report','','far fa-circle','supervisorsreport',NULL,'Y','thims','2024-02-19 00:00:00','','0000-00-00 00:00:00'),(781,'Apply Optional Holiday','','far fa-circle','./../../pages/attendance/employee_optional_leave.php?optionalby=R',NULL,'Y','thims','2024-02-19 00:00:00','','0000-00-00 00:00:00'),(782,'Calculated Salary Report','','far fa-circle','SalaryReport',NULL,'Y','thims','2024-02-19 00:00:00','','0000-00-00 00:00:00'),(783,'Pathology Bill','','far fa-circle','',NULL,'Y','THIMS','2024-03-18 12:54:12','','0000-00-00 00:00:00'),(784,'OP Bill - Mandal','','far fa-circle','',NULL,'Y','THIMS','2024-03-18 12:54:12','','0000-00-00 00:00:00'),(785,'Final IP Bill Mandal','','far fa-circle','',NULL,'Y','THIMS','2024-03-18 12:54:12','','0000-00-00 00:00:00'),(787,'Pathology IP Bill Report','','far fa-circle','./../../pages/ipd_bill/ipd_input.php?billing_entity=L',NULL,'Y','thims','2024-03-28 19:18:12','','0000-00-00 00:00:00'),(788,'Pathology Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php?billing_entity=L',NULL,'Y','thims','2024-03-28 19:18:12','','0000-00-00 00:00:00'),(789,'Mandal OP Bill Report','','far fa-circle','./../../pages/billing/opd_input.php?billing_entity=M',NULL,'Y','thims','2024-04-01 13:18:12','','0000-00-00 00:00:00'),(790,'Mandal Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php?billing_entity=M',NULL,'Y','thims','2024-04-01 19:18:12','','0000-00-00 00:00:00'),(791,'Pathology Bill','','far fa-circle','',NULL,'Y','THIMS','2024-03-18 12:54:12','','0000-00-00 00:00:00'),(792,'OP Bill - Mandal','','far fa-circle','',NULL,'Y','THIMS','2024-03-18 12:54:12','','0000-00-00 00:00:00'),(793,'Final IP Bill Mandal','','far fa-circle','',NULL,'Y','THIMS','2024-03-18 12:54:12','','0000-00-00 00:00:00'),(795,'Pathology IP Bill Report','','far fa-circle','./../../pages/ipd_bill/ipd_input.php?billing_entity=L',NULL,'Y','thims','2024-03-28 19:18:12','','0000-00-00 00:00:00'),(796,'Pathology Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php?billing_entity=L',NULL,'Y','thims','2024-03-28 19:18:12','','0000-00-00 00:00:00'),(797,'Mandal OP Bill Report','','far fa-circle','./../../pages/billing/opd_input.php?billing_entity=M',NULL,'Y','thims','2024-04-01 13:18:12','','0000-00-00 00:00:00'),(798,'Mandal Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php?billing_entity=M',NULL,'Y','thims','2024-04-01 19:18:12','','0000-00-00 00:00:00'),(799,'Pathology Bill','','far fa-circle','',NULL,'Y','THIMS','2024-03-18 12:54:12','','0000-00-00 00:00:00'),(800,'OP Bill - Mandal','','far fa-circle','',NULL,'Y','THIMS','2024-03-18 12:54:12','','0000-00-00 00:00:00'),(801,'Final IP Bill Mandal','','far fa-circle','',NULL,'Y','THIMS','2024-03-18 12:54:12','','0000-00-00 00:00:00'),(803,'Pathology IP Bill Report','','far fa-circle','./../../pages/ipd_bill/ipd_input.php?billing_entity=L',NULL,'Y','thims','2024-03-28 19:18:12','','0000-00-00 00:00:00'),(804,'Pathology Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php?billing_entity=L',NULL,'Y','thims','2024-03-28 19:18:12','','0000-00-00 00:00:00'),(805,'Mandal OP Bill Report','','far fa-circle','./../../pages/billing/opd_input.php?billing_entity=M',NULL,'Y','thims','2024-04-01 13:18:12','','0000-00-00 00:00:00'),(806,'Mandal Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php?billing_entity=M',NULL,'Y','thims','2024-04-01 19:18:12','','0000-00-00 00:00:00'),(807,'OP Bill - Mandal','','far fa-circle','',NULL,'Y','THIMS','2024-03-18 12:54:12','','0000-00-00 00:00:00'),(808,'Final IP Bill Mandal','','far fa-circle','',NULL,'Y','THIMS','2024-03-18 12:54:12','','0000-00-00 00:00:00'),(811,'Pathology Bill','','far fa-circle','',NULL,'Y','THIMS','2024-03-18 12:54:12','','0000-00-00 00:00:00'),(813,'Pathology IP Bill Report','','far fa-circle','./../../pages/ipd_bill/ipd_input.php?billing_entity=L',NULL,'Y','thims','2024-03-28 19:18:12','','0000-00-00 00:00:00'),(814,'Pathology Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php?billing_entity=L',NULL,'Y','thims','2024-03-28 19:18:12','','0000-00-00 00:00:00'),(815,'Mandal OP Bill Report','','far fa-circle','./../../pages/billing/opd_input.php?billing_entity=M',NULL,'Y','thims','2024-04-01 13:18:12','','0000-00-00 00:00:00'),(816,'Mandal Receipt Report','','far fa-circle','./../../pages/report/Receipt_Report_Input.php?billing_entity=M',NULL,'Y','thims','2024-04-01 19:18:12','','0000-00-00 00:00:00'),(817,'Mandal IP Bill Report','','far fa-circle','./../../pages/ipd_bill/ipd_input.php?billing_entity=M',NULL,'Y','thims','2024-04-03 13:18:12','','0000-00-00 00:00:00'),(818,'Mandal Advance/Deposit','','far fa-circle','',NULL,'Y','THIMS','2024-03-18 12:54:12','','0000-00-00 00:00:00'),(819,'Pathology Advance/Deposit','','far fa-circle','',NULL,'Y','THIMS','2024-03-18 12:54:12','','0000-00-00 00:00:00'),(820,'Pathology Advance Refund','','far fa-circle','',NULL,'Y','THIMS','2024-03-18 12:54:12','','0000-00-00 00:00:00'),(821,'Mandal Advance Refund','','far fa-circle','',NULL,'Y','THIMS','2024-03-18 12:54:12','','0000-00-00 00:00:00'),(822,'Mandal Advance Report','','far fa-circle','./../../pages/ipd_bill/ipd_advance_input.php?billing_entity=M',NULL,'Y','thims','2024-04-08 13:18:12','','0000-00-00 00:00:00'),(823,'Pathology Advance Report','','far fa-circle','./../../pages/ipd_bill/ipd_advance_input.php?billing_entity=L',NULL,'Y','thims','2024-04-08 13:18:12','','0000-00-00 00:00:00'),(824,'Eye Case Paper','','far fa-circle','',NULL,'Y','THIMS','2024-04-12 12:54:12','','0000-00-00 00:00:00'),(825,'IP Eye Case Paper','','far fa-circle','',NULL,'Y','THIMS','2024-04-12 12:54:12','','0000-00-00 00:00:00'),(826,'Finalize Salary','','far fa-circle','FinalSalaryInput',NULL,'Y','thims','2024-02-19 00:00:00','','0000-00-00 00:00:00'),(827,'Room Category Wise Occupancy Report','','far fa-circle','./../../pages/report/roomCategoryWiseOccupancy.php',NULL,'Y','THIMS','2024-04-12 12:54:12','','0000-00-00 00:00:00'),(828,'In Patient List - Given Date','','far fa-circle','./../../pages/report/inPatientRoomDayWise.php',NULL,'Y','THIMS','2024-04-12 12:54:12','','0000-00-00 00:00:00'),(829,'Mandal OP Bill Cancellation','','far fa-circle','./../../pages/cancle/all_bill_cancel.php?ipd_opd=O&&bill_entity=M',NULL,'Y','thims','2024-03-26 19:18:12','','0000-00-00 00:00:00'),(830,'Mandal IP Bill Cancellation','','far fa-circle','./../../pages/cancle/all_bill_cancel.php?ipd_opd=I&&bill_entity=M',NULL,'Y','thims','2024-03-26 19:18:12','','0000-00-00 00:00:00'),(831,'Pathology IP Bill Cancellation','','far fa-circle','./../../pages/cancle/all_bill_cancel.php?ipd_opd=I&&bill_entity=L',NULL,'Y','thims','2024-03-26 19:18:12','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `program_list_old` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `purchase_order_delivery_schedule`
--

DROP TABLE IF EXISTS `purchase_order_delivery_schedule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `purchase_order_delivery_schedule` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `po_fyear` smallint(6) NOT NULL COMMENT 'Transaction Financial Year',
  `po_type` char(6) NOT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return ',
  `po_entity_code` char(6) NOT NULL,
  `po_id` int(11) NOT NULL,
  `po_sr_no` smallint(6) NOT NULL,
  `po_amendment` smallint(6) NOT NULL DEFAULT '0',
  `product_id` int(10) unsigned NOT NULL COMMENT 'product_master - product_id',
  `po_quantity` float NOT NULL DEFAULT '0',
  `received_quantity` float NOT NULL DEFAULT '0',
  `pending_quantity` float NOT NULL DEFAULT '0',
  `expected_delivery_date` date NOT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  UNIQUE KEY `UK_TransactionNo` (`company_id`,`branch_id`,`po_fyear`,`po_type`,`po_entity_code`,`po_id`,`po_sr_no`,`expected_delivery_date`) USING BTREE,
  KEY `FK_product_master_id` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_order_delivery_schedule`
--

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

--
-- Table structure for table `purchase_order_delivery_schedule_amendment`
--

DROP TABLE IF EXISTS `purchase_order_delivery_schedule_amendment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `purchase_order_delivery_schedule_amendment` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `po_fyear` smallint(6) NOT NULL COMMENT 'Transaction Financial Year',
  `po_type` char(6) NOT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return ',
  `po_entity_code` char(6) NOT NULL,
  `po_id` int(11) NOT NULL,
  `po_sr_no` smallint(6) NOT NULL,
  `po_amendment` smallint(6) NOT NULL,
  `product_id` int(10) unsigned NOT NULL COMMENT 'product_master - product_id',
  `po_quantity` float NOT NULL DEFAULT '0',
  `received_quantity` float NOT NULL DEFAULT '0',
  `pending_quantity` float NOT NULL DEFAULT '0',
  `expected_delivery_date` date NOT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  UNIQUE KEY `UK_TransactionNo` (`company_id`,`branch_id`,`po_fyear`,`po_type`,`po_entity_code`,`po_id`,`po_sr_no`,`expected_delivery_date`,`po_amendment`) USING BTREE,
  KEY `FK_product_master_id` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_order_delivery_schedule_amendment`
--

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

--
-- Table structure for table `purchase_order_detail`
--

DROP TABLE IF EXISTS `purchase_order_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `purchase_order_detail` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `po_fyear` smallint(6) NOT NULL COMMENT 'Transaction Financial Year',
  `po_type` char(6) NOT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return ',
  `po_entity_code` char(6) NOT NULL,
  `po_id` int(11) NOT NULL,
  `po_sr_no` smallint(6) NOT NULL,
  `po_amendment` smallint(6) NOT NULL DEFAULT '0',
  `product_id` int(10) unsigned NOT NULL COMMENT 'product_master - product_id',
  `additional_product_description` text,
  `purchase_uom` tinyint(3) unsigned NOT NULL,
  `po_quantity` float NOT NULL DEFAULT '0',
  `received_quantity` float NOT NULL DEFAULT '0',
  `pending_quantity` float NOT NULL DEFAULT '0',
  `price` float DEFAULT '0' COMMENT 'For trn_type=''P'' its price for PUOM and for trn_type=''I'' it will be kept 0 ',
  `price_per_unit_suom` float NOT NULL DEFAULT '0' COMMENT 'Price Per Unit based on stock unit of measure',
  `discount_type` enum('A','P') DEFAULT 'P',
  `discount` float DEFAULT '0',
  `discount_amt` float DEFAULT '0',
  `taxable_amt` float DEFAULT '0',
  `net_rate` float DEFAULT '0',
  `sgst_percentage` float NOT NULL DEFAULT '0',
  `sgst_value` float NOT NULL,
  `cgst_percentage` float NOT NULL DEFAULT '0',
  `cgst_value` float NOT NULL,
  `igst_percentage` float NOT NULL DEFAULT '0',
  `igst_value` float NOT NULL,
  `total` float NOT NULL DEFAULT '0' COMMENT 'For trn_type = ''P'' => total = price * quantity For trn_type = ''I'' => (price * quantity) - discount',
  `landing_rate` float DEFAULT '0',
  `landing_cost` float DEFAULT '0',
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(20) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  UNIQUE KEY `UK_TransactionNo` (`company_id`,`branch_id`,`po_fyear`,`po_type`,`po_entity_code`,`po_id`,`po_sr_no`) USING BTREE,
  KEY `FK_product_master_id` (`product_id`),
  KEY `FK_unitmaster_popuom` (`purchase_uom`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_order_detail`
--

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

--
-- Table structure for table `purchase_order_detail_amendment`
--

DROP TABLE IF EXISTS `purchase_order_detail_amendment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `purchase_order_detail_amendment` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `po_fyear` smallint(6) NOT NULL COMMENT 'Transaction Financial Year',
  `po_type` char(6) NOT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return ',
  `po_entity_code` char(6) NOT NULL,
  `po_id` int(11) NOT NULL,
  `po_sr_no` smallint(6) NOT NULL,
  `po_amendment` smallint(6) NOT NULL,
  `product_id` int(10) unsigned NOT NULL COMMENT 'product_master - product_id',
  `additional_product_description` varchar(500) DEFAULT NULL,
  `purchase_uom` tinyint(3) unsigned NOT NULL,
  `po_quantity` float NOT NULL DEFAULT '0',
  `received_quantity` float NOT NULL DEFAULT '0',
  `pending_quantity` float NOT NULL DEFAULT '0',
  `price` float DEFAULT '0' COMMENT 'For trn_type=''P'' its price for PUOM and for trn_type=''I'' it will be kept 0 ',
  `price_per_unit_suom` float NOT NULL DEFAULT '0' COMMENT 'Price Per Unit based on stock unit of measure',
  `discount_type` enum('A','P') DEFAULT 'P',
  `discount` float DEFAULT '0',
  `discount_amt` float DEFAULT '0',
  `taxable_amt` float DEFAULT '0',
  `net_rate` float DEFAULT '0',
  `sgst_percentage` float NOT NULL DEFAULT '0',
  `sgst_value` float NOT NULL,
  `cgst_percentage` float NOT NULL DEFAULT '0',
  `cgst_value` float NOT NULL,
  `igst_percentage` float NOT NULL DEFAULT '0',
  `igst_value` float NOT NULL,
  `total` float NOT NULL DEFAULT '0' COMMENT 'For trn_type = ''P'' => total = price * quantity For trn_type = ''I'' => (price * quantity) - discount',
  `landing_rate` float DEFAULT '0',
  `landing_cost` float DEFAULT '0',
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(20) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  UNIQUE KEY `UK_TransactionNo` (`company_id`,`branch_id`,`po_fyear`,`po_type`,`po_entity_code`,`po_id`,`po_sr_no`,`po_amendment`) USING BTREE,
  KEY `FK_product_master_id` (`product_id`),
  KEY `FK_unitmaster_popuom` (`purchase_uom`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_order_detail_amendment`
--

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

--
-- Table structure for table `purchase_order_header`
--

DROP TABLE IF EXISTS `purchase_order_header`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `purchase_order_header` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `po_fyear` smallint(6) NOT NULL COMMENT 'Transaction Financial Year',
  `store_code` varchar(6) NOT NULL,
  `po_type` char(6) NOT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return',
  `po_entity_code` char(6) NOT NULL,
  `po_id` int(11) NOT NULL,
  `po_amendment` smallint(6) NOT NULL DEFAULT '0',
  `po_date` date NOT NULL COMMENT 'Transaction Date',
  `purchase_order_type` enum('NPO','RPO') NOT NULL COMMENT 'RPO- Rate Purchase Order\r\nNPO- Normal Purchase Order',
  `po_valid_upto` date NOT NULL,
  `po_status` char(1) NOT NULL COMMENT 'Partially saved - P Unapproved - U (Pending approval) Cancelled - T, Approved - A',
  `po_category` enum('G','P') NOT NULL DEFAULT 'G' COMMENT 'G - General PO, P - Pharmacy PO',
  `is_closed` enum('Y','N') NOT NULL DEFAULT 'N',
  `supplier_id` smallint(5) unsigned DEFAULT NULL,
  `gross_total` float NOT NULL COMMENT 'Roll up from child items stored in transaction table',
  `discount_type` enum('P','A') DEFAULT NULL,
  `discount` float DEFAULT NULL,
  `discount_amt` float NOT NULL,
  `net_taxable_amt` float DEFAULT '0',
  `is_fully_executed` enum('Y','N','P') NOT NULL DEFAULT 'N' COMMENT 'Y- Fully executed, N-Not excecute, P - Partial execute',
  `cgst_amt` float DEFAULT '0',
  `igst_amt` float DEFAULT '0',
  `sgst_amt` float DEFAULT '0',
  `shipping_charges` float NOT NULL DEFAULT '0',
  `other_charges` float NOT NULL DEFAULT '0',
  `invoice_amt` float DEFAULT '0',
  `round_off` float NOT NULL,
  `total` float DEFAULT '0' COMMENT 'Net Total',
  `payment_terms_after` int(11) NOT NULL DEFAULT '0',
  `payment_terms_after_unit` enum('days','weeks','months') NOT NULL DEFAULT 'days',
  `terms_conditions` text,
  `approval_remark` text,
  `approved_by` varchar(10) DEFAULT NULL,
  `approved_date` date DEFAULT NULL,
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(20) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`po_fyear`,`store_code`,`po_type`,`po_entity_code`,`po_id`),
  KEY `FK_suppliermaster` (`supplier_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_order_header`
--

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

--
-- Table structure for table `purchase_order_header_amendment`
--

DROP TABLE IF EXISTS `purchase_order_header_amendment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `purchase_order_header_amendment` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `po_fyear` smallint(6) NOT NULL COMMENT 'Transaction Financial Year',
  `store_code` varchar(6) NOT NULL,
  `po_type` char(6) NOT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return',
  `po_entity_code` char(6) NOT NULL,
  `po_id` int(11) NOT NULL,
  `po_amendment` smallint(6) NOT NULL,
  `po_date` date NOT NULL COMMENT 'Transaction Date',
  `po_status` char(1) NOT NULL COMMENT 'Partially saved - P Unapproved - U (Pending approval) Cancelled - T, Approved - A',
  `po_category` enum('G','P') NOT NULL DEFAULT 'G' COMMENT 'G - General PO, P - Pharmacy PO',
  `is_closed` enum('Y','N') NOT NULL DEFAULT 'N',
  `supplier_id` smallint(5) unsigned DEFAULT NULL,
  `gross_total` float NOT NULL COMMENT 'Roll up from child items stored in transaction table',
  `discount_type` enum('P','A') DEFAULT NULL,
  `discount` float DEFAULT NULL,
  `discount_amt` float NOT NULL,
  `net_taxable_amt` float DEFAULT '0',
  `cgst_amt` float DEFAULT '0',
  `igst_amt` float DEFAULT '0',
  `sgst_amt` float DEFAULT '0',
  `shipping_charges` float NOT NULL DEFAULT '0',
  `other_charges` float NOT NULL DEFAULT '0',
  `invoice_amt` float DEFAULT '0',
  `round_off` float NOT NULL,
  `total` float NOT NULL COMMENT 'Net Total',
  `payment_terms_after` int(11) NOT NULL DEFAULT '0',
  `payment_terms_after_unit` enum('days','weeks','months') NOT NULL DEFAULT 'days',
  `terms_conditions` text,
  `approved_by` varchar(10) DEFAULT NULL,
  `approved_date` date DEFAULT NULL,
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(20) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`po_fyear`,`store_code`,`po_type`,`po_entity_code`,`po_id`,`po_amendment`),
  KEY `FK_suppliermaster` (`supplier_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_order_header_amendment`
--

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

--
-- Table structure for table `radiology_film_size_and_qty`
--

DROP TABLE IF EXISTS `radiology_film_size_and_qty`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `radiology_film_size_and_qty` (
  `req_id` int(11) NOT NULL,
  `sr_no` tinyint(4) NOT NULL AUTO_INCREMENT,
  `film_size` varchar(10) NOT NULL,
  `film_size_qty` tinyint(4) NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`sr_no`,`req_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `radiology_film_size_and_qty`
--

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

--
-- Table structure for table `radiology_result`
--

DROP TABLE IF EXISTS `radiology_result`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `radiology_result` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `req_id` int(11) NOT NULL,
  `service_cd` varchar(8) NOT NULL,
  `film_size_cd` varchar(10) NOT NULL,
  `film_size_qty` varchar(10) NOT NULL DEFAULT '1',
  `radiologist_id` int(11) NOT NULL,
  `report_content` text CHARACTER SET utf8 NOT NULL,
  `req_datetime` datetime NOT NULL COMMENT 'Reporting Date time will store here.',
  `datetime_of_report` datetime NOT NULL,
  `update_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `print_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `report_id` int(11) NOT NULL,
  `radiology_img_path` varchar(50) NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `radiology_result`
--

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

--
-- Table structure for table `rate_card_master`
--

DROP TABLE IF EXISTS `rate_card_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rate_card_master` (
  `rate_card_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `rate_card_name` varchar(25) NOT NULL,
  `remark` varchar(30) NOT NULL,
  `default_rate` enum('N','Y') NOT NULL DEFAULT 'N',
  `freez_rate` enum('N','Y') NOT NULL DEFAULT 'N',
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`rate_card_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rate_card_master`
--

LOCK TABLES `rate_card_master` WRITE;
/*!40000 ALTER TABLE `rate_card_master` DISABLE KEYS */;
INSERT INTO `rate_card_master` VALUES (1,0,0,'STANDARD','NEW RATECARD','Y','N','Y','thims','2022-04-28 15:13:50','rohit','2022-05-31 16:26:58'),(2,0,0,'PM JAY','PM JAY - GOV SCHME','N','N','Y','thims','2024-05-03 01:04:52','','0000-00-00 00:00:00'),(3,0,0,'CGHS','CGHS - GOV SCHME','N','N','Y','thims','2025-01-29 17:51:17','thims','2025-01-29 17:51:31');
/*!40000 ALTER TABLE `rate_card_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rate_master_detail`
--

DROP TABLE IF EXISTS `rate_master_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rate_master_detail` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `rate_group_id` int(2) unsigned zerofill NOT NULL,
  `rate_card` varchar(20) NOT NULL,
  `rate_card_id` int(11) NOT NULL COMMENT 'rate card id from rate_card_master',
  `remark` varchar(30) NOT NULL,
  `is_package_available` enum('Y','N') NOT NULL DEFAULT 'N',
  `is_ph_ptr_applicable` enum('N','Y') NOT NULL DEFAULT 'N',
  `sales_ptr_margin` float(5,2) NOT NULL,
  `is_dis_fro_pro_mas` enum('Y','N') NOT NULL DEFAULT 'Y',
  `dis_for_ph_prod` int(11) NOT NULL DEFAULT '0',
  `hosp_name_on_ph_bill` enum('Y','N') NOT NULL DEFAULT 'N' COMMENT 'Hospital Name On Pharmacy Bill.',
  `is_disc_lab` enum('Y','N') NOT NULL DEFAULT 'N',
  `lab_discount_op` int(11) NOT NULL,
  `lab_discount_ip` int(11) NOT NULL,
  `is_disc_radiology` enum('Y','N') NOT NULL DEFAULT 'N',
  `radiology_disc_op` int(11) NOT NULL,
  `radiology_disc_ip` int(11) NOT NULL,
  `is_disc_other` enum('Y','N') NOT NULL DEFAULT 'N',
  `other_disc_groups` varchar(200) NOT NULL COMMENT 'Grade wise surgery & Package group should not include',
  `other_disc_op` int(11) NOT NULL,
  `other_disc_ip` int(11) NOT NULL,
  `is_mediclaim_applicable` enum('N','Y') NOT NULL DEFAULT 'N',
  `cashless_Y_N` enum('N','Y') NOT NULL DEFAULT 'N',
  `default_charge_type` enum('N','Y') NOT NULL DEFAULT 'N',
  `payment_by` enum('P','S') NOT NULL DEFAULT 'P' COMMENT 'P - Patient, S - Sponsor',
  `Print_special_remark` enum('Y','N') NOT NULL DEFAULT 'N',
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `rate_group_id` (`rate_group_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rate_master_detail`
--

LOCK TABLES `rate_master_detail` WRITE;
/*!40000 ALTER TABLE `rate_master_detail` DISABLE KEYS */;
INSERT INTO `rate_master_detail` VALUES (1,01,'STANDARD',1,'','N','N',0.00,'Y',0,'N','N',0,0,'N',0,0,'N','',0,0,'N','N','Y','P','Y','Y','thims','2019-03-20 16:38:14','thims','2025-10-07 23:31:07'),(2,02,'PM JAY',2,'','Y','N',0.00,'Y',0,'N','N',0,0,'N',0,0,'N','',0,0,'N','N','N','S','N','Y','thims','2024-05-03 01:05:42','','0000-00-00 00:00:00'),(3,03,'CGHS',3,'','N','N',0.00,'Y',0,'N','N',0,0,'N',0,0,'N','',0,0,'N','N','N','S','N','Y','thims','2025-01-29 17:52:09','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `rate_master_detail` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rate_master_group`
--

DROP TABLE IF EXISTS `rate_master_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rate_master_group` (
  `id` int(2) unsigned zerofill NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `rate_type` varchar(20) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime 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 `rate_master_group`
--

LOCK TABLES `rate_master_group` WRITE;
/*!40000 ALTER TABLE `rate_master_group` DISABLE KEYS */;
INSERT INTO `rate_master_group` VALUES (01,0,0,'STANDARD','Y','thims','2019-01-12 02:26:51','thims','2019-03-20 16:32:38'),(02,0,0,'PM JAY','Y','thims','2024-05-03 01:05:07','','0000-00-00 00:00:00'),(03,0,0,'CGHS','Y','thims','2025-01-29 17:51:42','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `rate_master_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `receipt`
--

DROP TABLE IF EXISTS `receipt`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `receipt` (
  `receipt_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `business_entity` enum('H','L','M','R') NOT NULL DEFAULT 'H',
  `fyear` varchar(4) NOT NULL,
  `receipt_type` varchar(1) NOT NULL,
  `payer_type` varchar(2) NOT NULL,
  `amount_receipt_no` int(11) NOT NULL,
  `receipt_sr_np` int(11) NOT NULL DEFAULT '0',
  `receipt_no` int(11) NOT NULL,
  `date` date NOT NULL,
  `visit_id` int(11) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `billed_to` int(11) NOT NULL,
  `patient_ip_id` bigint(20) NOT NULL,
  `patient_op_id` bigint(20) NOT NULL,
  `abp_flag` char(3) NOT NULL COMMENT 'advance,bill,pending flag,Advance Refund,Advance Investigation',
  `receipt_amt` float(12,2) NOT NULL,
  `insurance_TDS_amt` float(12,2) NOT NULL,
  `payment_mode` varchar(6) DEFAULT NULL,
  `payment_agency` varchar(25) NOT NULL,
  `payment_card_number` varchar(20) NOT NULL,
  `payment_number` varchar(25) NOT NULL,
  `approval_code` varchar(30) NOT NULL,
  `payment_received_on` date NOT NULL,
  `payment_note` varchar(30) NOT NULL,
  `modified_remark` varchar(200) NOT NULL,
  `id` int(11) NOT NULL,
  `is_settle` enum('N','Y') NOT NULL DEFAULT 'N',
  `receipt_print_flag` char(1) NOT NULL COMMENT 'Defaults to N.Turns to P if printed',
  `receipt_cancel_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `cancelled_receipt_no` int(11) NOT NULL,
  `is_exported_to_xml` enum('N','Y') NOT NULL DEFAULT 'N',
  `cancelled_by` varchar(50) NOT NULL,
  `cancelled_datetime` datetime NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  `IsAdjusted` tinyint(1) DEFAULT '0' COMMENT 'Indicates whether revenue adjusted or not?',
  PRIMARY KEY (`receipt_id`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`business_entity`,`fyear`,`receipt_type`,`amount_receipt_no`,`receipt_sr_np`),
  KEY `id` (`id`),
  KEY `date` (`date`)
) ENGINE=InnoDB AUTO_INCREMENT=8757 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `receipt`
--

LOCK TABLES `receipt` WRITE;
/*!40000 ALTER TABLE `receipt` DISABLE KEYS */;
INSERT INTO `receipt` VALUES (1,0,0,'H','2526','','',1,0,0,'2025-10-08',1,1,0,0,1,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 10:04:25','','0000-00-00 00:00:00',0),(2,0,0,'H','2526','','',2,0,0,'2025-10-08',2,2,0,0,2,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 10:10:20','','0000-00-00 00:00:00',0),(3,0,0,'H','2526','','',3,0,0,'2025-10-08',3,3,0,0,3,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',3,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 10:15:12','','0000-00-00 00:00:00',0),(4,0,0,'H','2526','','',4,0,0,'2025-10-08',4,4,0,0,4,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',4,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 10:16:17','','0000-00-00 00:00:00',0),(5,0,0,'H','2526','','',5,0,0,'2025-10-08',5,5,0,0,5,'B',900.00,0.00,'7','BOI','','82830','','0000-00-00','SCAN','',5,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 10:17:33','','0000-00-00 00:00:00',0),(6,0,0,'H','2526','','',6,0,0,'2025-10-08',7,7,0,0,7,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 10:21:28','','0000-00-00 00:00:00',0),(7,0,0,'H','2526','','',7,0,0,'2025-10-08',8,8,0,0,8,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 10:22:20','','0000-00-00 00:00:00',0),(8,0,0,'H','2526','','',8,0,0,'2025-10-08',9,9,0,0,9,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 10:22:55','','0000-00-00 00:00:00',0),(9,0,0,'H','2526','','',9,0,0,'2025-10-08',10,10,0,0,10,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',9,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 10:24:23','','0000-00-00 00:00:00',0),(10,0,0,'H','2526','','',10,0,0,'2025-10-08',11,11,0,0,11,'B',300.00,0.00,'7','hdfc','','05264','','0000-00-00','scan  ','',10,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 10:25:42','','0000-00-00 00:00:00',0),(11,0,0,'H','2526','','',11,0,0,'2025-10-08',13,13,0,0,13,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',11,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 10:25:53','','0000-00-00 00:00:00',0),(12,0,0,'H','2526','','',12,0,0,'2025-10-08',6,6,0,0,6,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',12,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 10:27:21','','0000-00-00 00:00:00',0),(13,0,0,'H','2526','','',13,0,0,'2025-10-08',14,14,0,0,14,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',13,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 10:27:31','','0000-00-00 00:00:00',0),(14,0,0,'H','2526','','',14,0,0,'2025-10-08',15,15,0,0,15,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',14,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 10:32:24','','0000-00-00 00:00:00',0),(15,0,0,'H','2526','','',15,0,0,'2025-10-08',16,16,0,0,16,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',15,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 10:34:22','','0000-00-00 00:00:00',0),(16,0,0,'H','2526','','',16,0,0,'2025-10-08',17,17,0,0,17,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',16,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-08 10:51:12','','0000-00-00 00:00:00',0),(17,0,0,'H','2526','','',17,0,0,'2025-10-08',18,18,0,0,18,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',17,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 10:53:29','','0000-00-00 00:00:00',0),(18,0,0,'H','2526','','',18,0,0,'2025-10-08',19,19,0,0,19,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',18,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 10:56:01','','0000-00-00 00:00:00',0),(19,0,0,'H','2526','','',19,0,0,'2025-10-08',20,20,0,0,20,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',19,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 10:57:19','','0000-00-00 00:00:00',0),(20,0,0,'H','2526','','',20,0,0,'2025-10-08',24,24,0,0,23,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',20,'N','','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-08 11:09:02','','0000-00-00 00:00:00',0),(21,0,0,'H','2526','','',21,0,0,'2025-10-08',25,25,0,0,24,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',21,'N','','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-08 11:10:57','','0000-00-00 00:00:00',0),(22,0,0,'H','2526','','',22,0,0,'2025-10-08',26,26,0,0,25,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',22,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 11:11:55','','0000-00-00 00:00:00',0),(23,0,0,'H','2526','','',23,0,0,'2025-10-08',29,29,0,0,27,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',23,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 11:14:30','','0000-00-00 00:00:00',0),(24,0,0,'H','2526','','',24,0,0,'2025-10-08',30,30,0,0,28,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',24,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 11:17:05','','0000-00-00 00:00:00',0),(25,0,0,'H','2526','','',25,0,0,'2025-10-08',31,31,0,0,29,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',25,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 11:19:05','','0000-00-00 00:00:00',0),(26,0,0,'H','2526','','',26,0,0,'2025-10-08',32,32,0,0,30,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',26,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 11:19:18','','0000-00-00 00:00:00',0),(27,0,0,'H','2526','','',27,0,0,'2025-10-08',23,23,0,0,22,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',27,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-08 11:22:25','','0000-00-00 00:00:00',0),(28,0,0,'H','2526','','',28,0,0,'2025-10-08',35,35,0,0,32,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',28,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 11:25:41','','0000-00-00 00:00:00',0),(29,0,0,'H','2526','','',29,0,0,'2025-10-08',38,38,0,0,34,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',29,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 11:31:02','','0000-00-00 00:00:00',0),(30,0,0,'H','2526','','',30,0,0,'2025-10-08',39,39,0,0,35,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',30,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 11:32:51','','0000-00-00 00:00:00',0),(31,0,0,'H','2526','','',31,0,0,'2025-10-08',40,40,0,0,36,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',31,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 11:33:19','','0000-00-00 00:00:00',0),(32,0,0,'H','2526','','',32,0,0,'2025-10-08',41,41,0,0,37,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',32,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 11:40:15','','0000-00-00 00:00:00',0),(33,0,0,'H','2526','','',33,0,0,'2025-10-08',43,43,0,0,39,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',33,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 11:41:52','','0000-00-00 00:00:00',0),(34,0,0,'H','2526','','',34,0,0,'2025-10-08',42,42,0,0,38,'B',900.00,0.00,'7','BOB','','80788','','0000-00-00','SCAN','',34,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 11:42:47','','0000-00-00 00:00:00',0),(35,0,0,'H','2526','','',35,0,0,'2025-10-08',27,27,0,0,26,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',35,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-08 11:43:11','','0000-00-00 00:00:00',0),(36,0,0,'H','2526','','',36,0,0,'2025-10-08',44,44,0,0,40,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',36,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 11:43:54','','0000-00-00 00:00:00',0),(37,0,0,'H','2526','','',37,0,0,'2025-10-08',45,45,0,0,41,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',37,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 11:44:04','','0000-00-00 00:00:00',0),(38,0,0,'H','2526','','',38,0,0,'2025-10-08',46,46,0,0,42,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',38,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 11:46:35','','0000-00-00 00:00:00',0),(39,0,0,'H','2526','','',39,0,0,'2025-10-08',5,5,0,0,5,'B',4000.00,0.00,'7','BOB','','80788','','0000-00-00','SCAN','',39,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 11:48:12','','0000-00-00 00:00:00',0),(40,0,0,'H','2526','','',40,0,0,'2025-10-08',47,47,0,0,43,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',40,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 11:49:44','','0000-00-00 00:00:00',0),(41,0,0,'H','2526','','',41,0,0,'2025-10-08',12,12,0,0,12,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',41,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 11:52:13','','0000-00-00 00:00:00',0),(42,0,0,'H','2526','','',42,0,0,'2025-10-08',49,49,0,0,44,'B',400.00,0.00,'7','hdfc ','','17006','','0000-00-00','scan ','',42,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 11:54:03','','0000-00-00 00:00:00',0),(43,0,0,'H','2526','','',43,0,0,'2025-10-08',7,7,0,0,7,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',43,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 11:55:12','','0000-00-00 00:00:00',0),(44,0,0,'H','2526','','',44,0,0,'2025-10-08',53,53,0,0,47,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',44,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 11:58:24','','0000-00-00 00:00:00',0),(45,0,0,'H','2526','','',45,0,0,'2025-10-08',55,55,0,0,49,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',45,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 12:00:59','','0000-00-00 00:00:00',0),(46,0,0,'H','2526','','',46,0,0,'2025-10-08',54,54,0,0,48,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',46,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 12:02:31','','0000-00-00 00:00:00',0),(47,0,0,'H','2526','','',47,0,0,'2025-10-08',50,50,0,0,45,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',47,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 12:02:50','','0000-00-00 00:00:00',0),(48,0,0,'H','2526','','',48,0,0,'2025-10-08',52,52,0,0,46,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',48,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 12:04:53','','0000-00-00 00:00:00',0),(49,0,0,'H','2526','','',49,0,0,'2025-10-08',47,47,0,0,43,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',49,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 12:05:36','','0000-00-00 00:00:00',0),(50,0,0,'H','2526','','',50,0,0,'2025-10-08',25,25,0,0,24,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',50,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 12:06:15','','0000-00-00 00:00:00',0),(51,0,0,'H','2526','','',51,0,0,'2025-10-08',58,58,0,0,51,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',51,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 12:08:56','','0000-00-00 00:00:00',0),(52,0,0,'H','2526','','',52,0,0,'2025-10-08',59,59,0,0,52,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',52,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 12:09:44','','0000-00-00 00:00:00',0),(53,0,0,'H','2526','','',53,0,0,'2025-10-08',57,57,0,0,50,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',53,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-08 12:09:51','','0000-00-00 00:00:00',0),(54,0,0,'H','2526','','',54,0,0,'2025-10-08',61,61,0,0,53,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',54,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-08 12:16:53','','0000-00-00 00:00:00',0),(55,0,0,'H','2526','','',55,0,0,'2025-10-08',38,38,0,0,34,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',55,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 12:23:13','','0000-00-00 00:00:00',0),(56,0,0,'H','2526','','',56,0,0,'2025-10-08',65,65,0,0,55,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',56,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 12:24:15','','0000-00-00 00:00:00',0),(57,0,0,'H','2526','','',57,0,0,'2025-10-08',67,67,0,0,56,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',57,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 12:26:12','','0000-00-00 00:00:00',0),(58,0,0,'H','2526','','',58,0,0,'2025-10-08',68,68,0,0,57,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',58,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 12:26:23','','0000-00-00 00:00:00',0),(59,0,0,'H','2526','','',59,0,0,'2025-10-08',69,69,0,0,58,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',59,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 12:27:55','','0000-00-00 00:00:00',0),(60,0,0,'H','2526','','',60,0,0,'2025-10-08',70,70,0,0,59,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',60,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 12:31:35','','0000-00-00 00:00:00',0),(61,0,0,'H','2526','','',61,0,0,'2025-10-08',71,71,0,0,60,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',61,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 12:32:19','','0000-00-00 00:00:00',0),(62,0,0,'H','2526','','',62,0,0,'2025-10-08',73,73,0,0,62,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',62,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 12:37:32','','0000-00-00 00:00:00',0),(63,0,0,'H','2526','','',63,0,0,'2025-10-08',72,72,0,0,61,'B',100.00,0.00,'7','BOI','','95540','','0000-00-00','scan ','',63,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 12:44:06','','0000-00-00 00:00:00',0),(64,0,0,'H','2526','','',64,0,0,'2025-10-08',30,30,0,0,28,'D',-500.00,0.00,'CSH','','','','','2025-10-08','','',64,'N','N','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 12:47:40','','0000-00-00 00:00:00',0),(65,0,0,'H','2526','','',65,0,0,'2025-10-08',30,30,0,0,28,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',65,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 12:49:26','','0000-00-00 00:00:00',0),(66,0,0,'H','2526','','',66,0,0,'2025-10-08',52,52,0,0,46,'B',4000.00,0.00,'7','INDUSLAND BANK','','92771','','0000-00-00','SCAN','',66,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 12:50:35','','0000-00-00 00:00:00',0),(67,0,0,'H','2526','','',67,0,0,'2025-10-08',71,71,0,0,60,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',67,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 12:52:03','','0000-00-00 00:00:00',0),(68,0,0,'H','2526','','',68,0,0,'2025-10-08',61,61,0,0,53,'D',-500.00,0.00,'CSH','','','','','2025-10-08','','',68,'N','N','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 12:55:42','','0000-00-00 00:00:00',0),(69,0,0,'H','2526','','',69,0,0,'2025-10-08',75,75,0,0,64,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',69,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 13:01:09','','0000-00-00 00:00:00',0),(70,0,0,'H','2526','','',70,0,0,'2025-10-08',61,61,0,0,53,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',70,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 13:02:31','','0000-00-00 00:00:00',0),(71,0,0,'H','2526','','',71,0,0,'2025-10-08',76,76,0,0,65,'B',900.00,0.00,'7','AXIS','','88791','','0000-00-00','SCAN','',71,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 13:02:32','','0000-00-00 00:00:00',0),(72,0,0,'H','2526','','',72,0,0,'2025-10-08',54,54,0,0,48,'D',-500.00,0.00,'CSH','','','','','2025-10-08','','',72,'N','N','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 13:03:35','','0000-00-00 00:00:00',0),(73,0,0,'H','2526','','',73,0,0,'2025-10-08',75,75,0,0,64,'D',-750.00,0.00,'CSH','','','','','2025-10-08','','',73,'N','N','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 13:15:06','','0000-00-00 00:00:00',0),(74,0,0,'H','2526','','',74,0,0,'2025-10-08',77,77,0,0,66,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',74,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 13:15:08','','0000-00-00 00:00:00',0),(75,0,0,'H','2526','','',75,0,0,'2025-10-08',75,75,0,0,64,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',75,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 13:17:03','','0000-00-00 00:00:00',0),(76,0,0,'H','2526','','',76,0,0,'2025-10-08',78,78,0,0,67,'B',750.00,0.00,'7','indus bank','','90042','','0000-00-00','scan ','',76,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-08 13:19:56','','0000-00-00 00:00:00',0),(77,0,0,'H','2526','','',77,0,0,'2025-10-08',79,79,0,0,68,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',77,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 13:23:25','','0000-00-00 00:00:00',0),(78,0,0,'H','2526','','',78,0,0,'2025-10-08',64,64,0,0,54,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',78,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 13:26:24','','0000-00-00 00:00:00',0),(79,0,0,'H','2526','','',79,0,0,'2025-10-08',74,74,0,0,63,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',79,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 13:35:52','','0000-00-00 00:00:00',0),(80,0,0,'H','2526','','',80,0,0,'2025-10-08',69,69,0,0,58,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',80,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 13:49:57','','0000-00-00 00:00:00',0),(81,0,0,'H','2526','','',81,0,0,'2025-10-08',76,76,0,0,65,'B',4000.00,0.00,'7','AXIS','','08597','','0000-00-00','SCAN','',81,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 14:19:27','','0000-00-00 00:00:00',0),(82,0,0,'H','2526','','',82,0,0,'2025-10-08',79,79,0,0,68,'D',-500.00,0.00,'CSH','','','','','2025-10-08','','',82,'N','N','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-08 14:28:09','','0000-00-00 00:00:00',0),(83,0,0,'H','2526','','',83,0,0,'2025-10-08',79,79,0,0,68,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',83,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-08 14:28:44','','0000-00-00 00:00:00',0),(84,0,0,'H','2526','','',84,0,0,'2025-10-08',80,80,0,0,69,'B',2000.00,0.00,'7','KOTAK BANK','','05286','','0000-00-00','scan ','',84,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-08 15:48:02','','0000-00-00 00:00:00',0),(85,0,0,'H','2526','','',85,0,0,'2025-10-08',81,81,0,0,70,'B',2900.00,0.00,'7','KOTAK BANK','','05286','','0000-00-00','scan ','',85,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-08 15:48:39','','0000-00-00 00:00:00',0),(86,0,0,'H','2526','','',86,0,0,'2025-10-08',82,82,0,0,71,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',86,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-08 15:51:01','','0000-00-00 00:00:00',0),(87,0,0,'H','2526','','',87,0,0,'2025-10-08',87,87,0,0,76,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',87,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 16:42:55','','0000-00-00 00:00:00',0),(88,0,0,'H','2526','','',88,0,0,'2025-10-08',88,88,0,0,77,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',88,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 16:51:37','','0000-00-00 00:00:00',0),(89,0,0,'H','2526','','',89,0,0,'2025-10-08',89,89,0,0,78,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',89,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:01:23','','0000-00-00 00:00:00',0),(90,0,0,'H','2526','','',90,0,0,'2025-10-08',90,90,0,0,79,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',90,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 17:05:38','','0000-00-00 00:00:00',0),(91,0,0,'H','2526','','',91,0,0,'2025-10-08',91,91,0,0,80,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',91,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:07:09','','0000-00-00 00:00:00',0),(92,0,0,'H','2526','','',92,0,0,'2025-10-08',92,92,0,0,81,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',92,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:08:06','','0000-00-00 00:00:00',0),(93,0,0,'H','2526','','',93,0,0,'2025-10-08',93,93,0,0,82,'B',500.00,0.00,'2','SBI BANK','','3150','','0000-00-00','CARD','',93,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:12:07','','0000-00-00 00:00:00',0),(94,0,0,'H','2526','','',94,0,0,'2025-10-08',95,95,0,0,84,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',94,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:15:27','','0000-00-00 00:00:00',0),(95,0,0,'H','2526','','',95,0,0,'2025-10-08',96,96,0,0,85,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',95,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:16:34','','0000-00-00 00:00:00',0),(96,0,0,'H','2526','','',96,0,0,'2025-10-08',97,97,0,0,86,'B',500.00,0.00,'7','axis bank','','10087','','0000-00-00','scan  ','',96,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 17:17:11','','0000-00-00 00:00:00',0),(97,0,0,'H','2526','','',97,0,0,'2025-10-08',98,98,0,0,87,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',97,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:20:35','','0000-00-00 00:00:00',0),(98,0,0,'H','2526','','',98,0,0,'2025-10-08',99,99,0,0,88,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',98,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:26:32','','0000-00-00 00:00:00',0),(99,0,0,'H','2526','','',99,0,0,'2025-10-08',100,100,0,0,89,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',99,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:27:00','','0000-00-00 00:00:00',0),(100,0,0,'H','2526','','',100,0,0,'2025-10-08',101,101,0,0,90,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',100,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:28:39','','0000-00-00 00:00:00',0),(101,0,0,'H','2526','','',101,0,0,'2025-10-08',87,87,0,0,76,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',101,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:29:44','','0000-00-00 00:00:00',0),(102,0,0,'H','2526','','',102,0,0,'2025-10-08',102,102,0,0,91,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',102,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:30:30','','0000-00-00 00:00:00',0),(103,0,0,'H','2526','','',103,0,0,'2025-10-08',103,103,0,0,92,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',103,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 17:32:35','','0000-00-00 00:00:00',0),(104,0,0,'H','2526','','',104,0,0,'2025-10-08',104,104,0,0,93,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',104,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:37:08','','0000-00-00 00:00:00',0),(105,0,0,'H','2526','','',105,0,0,'2025-10-08',106,106,0,0,95,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',105,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:39:08','','0000-00-00 00:00:00',0),(106,0,0,'H','2526','','',106,0,0,'2025-10-08',105,105,0,0,94,'B',900.00,0.00,'7','induslnd bank','','81969','','0000-00-00','scan ','',106,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 17:39:26','','0000-00-00 00:00:00',0),(107,0,0,'H','2526','','',107,0,0,'2025-10-08',107,107,0,0,96,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',107,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:42:24','','0000-00-00 00:00:00',0),(108,0,0,'H','2526','','',108,0,0,'2025-10-08',108,108,0,0,97,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',108,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:43:35','','0000-00-00 00:00:00',0),(109,0,0,'H','2526','','',109,0,0,'2025-10-08',109,109,0,0,98,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',109,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-08 17:45:45','','0000-00-00 00:00:00',0),(110,0,0,'H','2526','','',110,0,0,'2025-10-08',110,110,0,0,99,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',110,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:46:41','','0000-00-00 00:00:00',0),(111,0,0,'H','2526','','',111,0,0,'2025-10-08',111,111,0,0,100,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',111,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 17:50:14','','0000-00-00 00:00:00',0),(112,0,0,'H','2526','','',112,0,0,'2025-10-08',113,113,0,0,102,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',112,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-08 17:54:36','','0000-00-00 00:00:00',0),(113,0,0,'H','2526','','',113,0,0,'2025-10-08',114,114,0,0,103,'B',900.00,0.00,'7','RBL BANK','','51196','','0000-00-00','SCAN','',113,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:55:47','','0000-00-00 00:00:00',0),(114,0,0,'H','2526','','',114,0,0,'2025-10-08',115,115,0,0,104,'B',900.00,0.00,'7','SBI','','33023','','0000-00-00','SCAN','',114,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 17:58:15','','0000-00-00 00:00:00',0),(115,0,0,'H','2526','','',115,0,0,'2025-10-08',117,117,0,0,106,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',115,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-08 18:06:25','','0000-00-00 00:00:00',0),(116,0,0,'H','2526','','',116,0,0,'2025-10-08',116,116,0,0,105,'B',500.00,0.00,'7','IDFC BANK','','21110','','0000-00-00','scan','',116,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-08 18:06:34','','0000-00-00 00:00:00',0),(117,0,0,'H','2526','','',117,0,0,'2025-10-08',118,118,0,0,107,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',117,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-08 18:07:50','','0000-00-00 00:00:00',0),(118,0,0,'H','2526','','',118,0,0,'2025-10-08',121,121,0,0,110,'B',450.00,0.00,'CSH','','','','','0000-00-00','','',118,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 18:11:47','','0000-00-00 00:00:00',0),(119,0,0,'H','2526','','',119,0,0,'2025-10-08',120,120,0,0,109,'B',450.00,0.00,'CSH','','','','','0000-00-00','','',119,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 18:12:16','','0000-00-00 00:00:00',0),(120,0,0,'H','2526','','',120,0,0,'2025-10-08',123,123,0,0,112,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',120,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 18:13:29','','0000-00-00 00:00:00',0),(121,0,0,'H','2526','','',121,0,0,'2025-10-08',124,124,0,0,113,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',121,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-08 18:15:14','','0000-00-00 00:00:00',0),(122,0,0,'H','2526','','',122,0,0,'2025-10-08',119,119,0,0,108,'B',300.00,0.00,'7','BOI ','','26674','','0000-00-00','scan','',122,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-08 18:15:23','','0000-00-00 00:00:00',0),(123,0,0,'H','2526','','',123,0,0,'2025-10-08',125,125,0,0,114,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',123,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 18:16:18','','0000-00-00 00:00:00',0),(124,0,0,'H','2526','','',124,0,0,'2025-10-08',104,104,0,0,93,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',124,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 18:16:22','','0000-00-00 00:00:00',0),(125,0,0,'H','2526','','',125,0,0,'2025-10-08',128,128,0,0,117,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',125,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-08 18:24:28','','0000-00-00 00:00:00',0),(126,0,0,'H','2526','','',126,0,0,'2025-10-08',129,129,0,0,118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',126,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 18:26:09','','0000-00-00 00:00:00',0),(127,0,0,'H','2526','','',127,0,0,'2025-10-08',130,130,0,0,119,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',127,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 18:29:43','','0000-00-00 00:00:00',0),(128,0,0,'H','2526','','',128,0,0,'2025-10-08',131,131,0,0,120,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',128,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 18:30:11','','0000-00-00 00:00:00',0),(129,0,0,'H','2526','','',129,0,0,'2025-10-08',132,132,0,0,121,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',129,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-08 18:33:54','','0000-00-00 00:00:00',0),(130,0,0,'H','2526','','',130,0,0,'2025-10-08',99,99,0,0,88,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',130,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 18:35:11','','0000-00-00 00:00:00',0),(131,0,0,'H','2526','','',131,0,0,'2025-10-08',133,133,0,0,122,'B',700.00,0.00,'7','RAJKOT NAGRIK ','','39121','','0000-00-00','SCAN','',131,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 18:40:11','','0000-00-00 00:00:00',0),(132,0,0,'H','2526','','',132,0,0,'2025-10-08',135,135,0,0,124,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',132,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 18:42:49','','0000-00-00 00:00:00',0),(133,0,0,'H','2526','','',133,0,0,'2025-10-08',136,136,0,0,125,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',133,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 18:43:52','','0000-00-00 00:00:00',0),(134,0,0,'H','2526','','',134,0,0,'2025-10-08',134,134,0,0,123,'B',400.00,0.00,'7','south indian','','50036','','0000-00-00','scan ','',134,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-08 18:44:11','','0000-00-00 00:00:00',0),(135,0,0,'H','2526','','',135,0,0,'2025-10-08',137,137,0,0,126,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',135,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 18:46:56','','0000-00-00 00:00:00',0),(136,0,0,'H','2526','','',136,0,0,'2025-10-08',109,109,0,0,98,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',136,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-08 18:47:58','','0000-00-00 00:00:00',0),(137,0,0,'H','2526','','',137,0,0,'2025-10-08',138,138,0,0,127,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',137,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 18:48:55','','0000-00-00 00:00:00',0),(138,0,0,'H','2526','','',138,0,0,'2025-10-08',122,122,0,0,111,'B',200.00,0.00,'7','union bank','','77731','','0000-00-00','scan     ','',138,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 18:50:46','','0000-00-00 00:00:00',0),(139,0,0,'H','2526','','',139,0,0,'2025-10-08',139,139,0,0,128,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',139,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 18:52:21','','0000-00-00 00:00:00',0),(140,0,0,'H','2526','','',140,0,0,'2025-10-08',114,114,0,0,103,'B',3200.00,0.00,'7','KOTAK BANK','','56567','','0000-00-00','SCAN','',140,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 18:54:31','','0000-00-00 00:00:00',0),(141,0,0,'H','2526','','',141,0,0,'2025-10-08',142,142,0,0,131,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',141,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 18:56:49','','0000-00-00 00:00:00',0),(142,0,0,'H','2526','','',142,0,0,'2025-10-08',141,141,0,0,130,'B',400.00,0.00,'7','BOI BANK','','95207','','0000-00-00','scan ','',142,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-08 18:57:22','','0000-00-00 00:00:00',0),(143,0,0,'H','2526','','',143,0,0,'2025-10-08',140,140,0,0,129,'B',400.00,0.00,'7','BOI BANK','','95207','','0000-00-00','scan ','',143,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-08 18:57:42','','0000-00-00 00:00:00',0),(144,0,0,'H','2526','','',144,0,0,'2025-10-08',106,106,0,0,95,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',144,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 18:58:01','','0000-00-00 00:00:00',0),(145,0,0,'H','2526','','',145,0,0,'2025-10-08',143,143,0,0,132,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',145,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 19:02:48','','0000-00-00 00:00:00',0),(146,0,0,'H','2526','','',146,0,0,'2025-10-08',144,144,0,0,133,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',146,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-08 19:08:08','','0000-00-00 00:00:00',0),(147,0,0,'H','2526','','',147,0,0,'2025-10-08',145,145,0,0,134,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',147,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 19:08:47','','0000-00-00 00:00:00',0),(148,0,0,'H','2526','','',148,0,0,'2025-10-08',146,146,0,0,135,'B',400.00,0.00,'7','fedral bank','','50370','','0000-00-00','scan ','',148,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-08 19:14:36','','0000-00-00 00:00:00',0),(149,0,0,'H','2526','','',149,0,0,'2025-10-08',132,132,0,0,121,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',149,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-08 19:16:00','','0000-00-00 00:00:00',0),(150,0,0,'H','2526','','',150,0,0,'2025-10-08',147,147,0,0,136,'B',900.00,0.00,'7','fedral bank','','33303','','0000-00-00','scan ','',150,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-08 19:17:26','','0000-00-00 00:00:00',0),(151,0,0,'H','2526','','',151,0,0,'2025-10-08',134,134,0,0,123,'B',300.00,0.00,'7','SOUTH IND','','52460','','0000-00-00','scan ','',151,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 19:18:12','','0000-00-00 00:00:00',0),(152,0,0,'H','2526','','',152,0,0,'2025-10-08',148,148,0,0,137,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',152,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-08 19:18:29','','0000-00-00 00:00:00',0),(153,0,0,'H','2526','','',153,0,0,'2025-10-08',149,149,0,0,138,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',153,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 19:21:20','','0000-00-00 00:00:00',0),(154,0,0,'H','2526','','',154,0,0,'2025-10-08',152,151,0,0,140,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',154,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-08 19:33:19','','0000-00-00 00:00:00',0),(155,0,0,'H','2526','','',155,0,0,'2025-10-08',153,152,0,0,141,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',155,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-08 19:35:58','','0000-00-00 00:00:00',0),(156,0,0,'H','2526','','',156,0,0,'2025-10-08',151,150,0,0,139,'B',500.00,0.00,'7','HDFC BANK','','85143','','0000-00-00','scan','',156,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-08 19:37:23','','0000-00-00 00:00:00',0),(157,0,0,'H','2526','','',157,0,0,'2025-10-08',153,152,0,0,141,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',157,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-08 19:43:36','','0000-00-00 00:00:00',0),(158,0,0,'H','2526','','',158,0,0,'2025-10-08',155,154,0,0,143,'B',500.00,0.00,'7','HDFC','','31622','','0000-00-00','scan','',158,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-08 19:46:41','','0000-00-00 00:00:00',0),(159,0,0,'H','2526','','',159,0,0,'2025-10-08',157,156,0,0,145,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',159,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-08 19:52:34','','0000-00-00 00:00:00',0),(160,0,0,'H','2526','','',160,0,0,'2025-10-08',155,154,0,0,143,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',161,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-08 19:56:06','','0000-00-00 00:00:00',0),(161,0,0,'H','2526','','',161,0,0,'2025-10-08',105,105,0,0,94,'D',-900.00,0.00,'7','indusind bank','','81969','','2025-10-08','SCAN','',160,'N','N','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 19:57:29','','0000-00-00 00:00:00',0),(162,0,0,'H','2526','','',162,0,0,'2025-10-08',105,105,0,0,94,'B',700.00,0.00,'7','indusind bank','','81969','','0000-00-00','SCAN','',162,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 20:00:08','','0000-00-00 00:00:00',0),(163,0,0,'H','2526','','',163,0,0,'2025-10-08',156,155,0,0,144,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',163,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-08 20:00:57','','0000-00-00 00:00:00',0),(164,0,0,'H','2526','','',164,0,0,'2025-10-08',27,27,0,0,26,'B',7000.00,0.00,'CSH','','','','','0000-00-00','','',164,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-08 20:08:25','','0000-00-00 00:00:00',0),(165,0,0,'H','2526','','',165,0,0,'2025-10-08',158,157,0,0,146,'B',500.00,0.00,'7','indusind bank','','61399','','0000-00-00','SCAN','',165,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-08 20:11:19','','0000-00-00 00:00:00',0),(166,0,0,'H','2526','','',166,0,0,'2025-10-09',159,53,0,0,47,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',166,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 09:02:39','','0000-00-00 00:00:00',0),(167,0,0,'H','2526','','',167,0,0,'2025-10-09',160,158,0,0,147,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',167,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 09:05:56','','0000-00-00 00:00:00',0),(168,0,0,'H','2526','','',168,0,0,'2025-10-09',161,159,0,0,148,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',168,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 09:08:50','','0000-00-00 00:00:00',0),(169,0,0,'H','2526','','',169,0,0,'2025-10-09',162,160,0,0,149,'B',1600.00,0.00,'CSH','','','','','0000-00-00','','',169,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 09:12:55','','0000-00-00 00:00:00',0),(170,0,0,'H','2526','','',170,0,0,'2025-10-09',163,161,0,0,150,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',170,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 09:28:54','','0000-00-00 00:00:00',0),(171,0,0,'H','2526','','',171,0,0,'2025-10-09',166,163,0,0,151,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',171,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 09:44:17','','0000-00-00 00:00:00',0),(172,0,0,'H','2526','','',172,0,0,'2025-10-09',160,158,0,0,147,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',172,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 09:48:17','','0000-00-00 00:00:00',0),(173,0,0,'H','2526','','',173,0,0,'2025-10-09',167,164,0,0,152,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',173,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 09:48:31','','0000-00-00 00:00:00',0),(174,0,0,'H','2526','','',174,0,0,'2025-10-09',169,166,0,0,153,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',174,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 10:11:59','','0000-00-00 00:00:00',0),(175,0,0,'H','2526','','',175,0,0,'2025-10-09',170,167,0,0,154,'B',400.00,0.00,'7','AXIS BANK','','02085','','0000-00-00','scan ','',175,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 10:18:30','','0000-00-00 00:00:00',0),(176,0,0,'H','2526','','',176,0,0,'2025-10-09',171,168,0,0,155,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',176,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 10:27:58','','0000-00-00 00:00:00',0),(177,0,0,'H','2526','','',177,0,0,'2025-10-09',159,53,0,0,47,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',177,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 10:34:36','','0000-00-00 00:00:00',0),(178,0,0,'H','2526','','',178,0,0,'2025-10-09',172,169,0,0,156,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',178,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 10:35:26','','0000-00-00 00:00:00',0),(179,0,0,'H','2526','','',179,0,0,'2025-10-09',173,170,0,0,157,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',179,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 10:36:51','','0000-00-00 00:00:00',0),(180,0,0,'H','2526','','',180,0,0,'2025-10-09',174,171,0,0,158,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',180,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 10:39:25','','0000-00-00 00:00:00',0),(181,0,0,'H','2526','','',181,0,0,'2025-10-09',175,172,0,0,159,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',181,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 10:40:35','','0000-00-00 00:00:00',0),(182,0,0,'H','2526','','',182,0,0,'2025-10-09',176,173,0,0,160,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',182,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 10:43:09','','0000-00-00 00:00:00',0),(183,0,0,'H','2526','','',183,0,0,'2025-10-09',177,174,0,0,161,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',183,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 10:44:57','','0000-00-00 00:00:00',0),(184,0,0,'H','2526','','',184,0,0,'2025-10-09',178,175,0,0,162,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',184,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 10:47:29','','0000-00-00 00:00:00',0),(185,0,0,'H','2526','','',185,0,0,'2025-10-09',179,176,0,0,163,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',185,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-09 10:48:56','','0000-00-00 00:00:00',0),(186,0,0,'H','2526','','',186,0,0,'2025-10-09',180,177,0,0,164,'B',900.00,0.00,'7','HDFC','','76303','','0000-00-00','SCAN','',186,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 10:50:44','','0000-00-00 00:00:00',0),(187,0,0,'H','2526','','',187,0,0,'2025-10-09',182,179,0,0,166,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',187,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 10:52:33','','0000-00-00 00:00:00',0),(188,0,0,'H','2526','','',188,0,0,'2025-10-09',184,181,0,0,168,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',188,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 10:53:11','','0000-00-00 00:00:00',0),(189,0,0,'H','2526','','',189,0,0,'2025-10-09',181,178,0,0,165,'B',300.00,0.00,'7','hdfc','','83458','','0000-00-00','scan  ','',189,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 10:53:42','','0000-00-00 00:00:00',0),(190,0,0,'H','2526','','',190,0,0,'2025-10-09',183,180,0,0,167,'B',500.00,0.00,'7','hdfc','','38458','','0000-00-00','scan  ','',190,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 10:54:03','','0000-00-00 00:00:00',0),(191,0,0,'H','2526','','',191,0,0,'2025-10-09',185,182,0,0,169,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',191,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 10:55:19','','0000-00-00 00:00:00',0),(192,0,0,'H','2526','','',192,0,0,'2025-10-09',186,183,0,0,170,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',192,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 10:58:07','','0000-00-00 00:00:00',0),(193,0,0,'H','2526','','',193,0,0,'2025-10-09',163,161,0,0,150,'D',-400.00,0.00,'CSH','','','','','2025-10-09','','',193,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 10:58:57','','0000-00-00 00:00:00',0),(194,0,0,'H','2526','','',194,0,0,'2025-10-09',187,184,0,0,171,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',194,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 10:59:34','','0000-00-00 00:00:00',0),(195,0,0,'H','2526','','P',195,0,0,'2025-10-09',165,162,0,13,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-09 11:01:42','vishal','2025-10-09 11:01:42',0),(196,0,0,'H','2526','','',196,0,0,'2025-10-09',163,161,0,0,150,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',195,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 11:01:51','','0000-00-00 00:00:00',0),(197,0,0,'H','2526','','',197,0,0,'2025-10-09',163,161,0,0,150,'B',1400.00,0.00,'7','ICICI BANK','','57053','','0000-00-00','scan ','',196,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 11:02:48','','0000-00-00 00:00:00',0),(198,0,0,'H','2526','','',198,0,0,'2025-10-09',167,164,0,0,152,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',197,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 11:03:25','','0000-00-00 00:00:00',0),(199,0,0,'H','2526','','',199,0,0,'2025-10-09',188,185,0,0,172,'B',1800.00,0.00,'CSH','','','','','0000-00-00','','',198,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 11:04:14','','0000-00-00 00:00:00',0),(200,0,0,'H','2526','','',200,0,0,'2025-10-09',189,186,0,0,173,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',199,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 11:07:30','','0000-00-00 00:00:00',0),(201,0,0,'H','2526','','',201,0,0,'2025-10-09',190,187,0,0,174,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',200,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 11:10:17','','0000-00-00 00:00:00',0),(202,0,0,'H','2526','','',202,0,0,'2025-10-09',191,188,0,0,175,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',201,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 11:12:57','','0000-00-00 00:00:00',0),(203,0,0,'H','2526','','',203,0,0,'2025-10-09',192,189,0,0,176,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',202,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 11:14:09','','0000-00-00 00:00:00',0),(204,0,0,'H','2526','','',204,0,0,'2025-10-09',171,168,0,0,155,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',203,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 11:19:35','','0000-00-00 00:00:00',0),(205,0,0,'H','2526','','',205,0,0,'2025-10-09',194,190,0,0,177,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',204,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 11:21:55','','0000-00-00 00:00:00',0),(206,0,0,'H','2526','','',206,0,0,'2025-10-09',182,179,0,0,166,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',205,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 11:22:11','','0000-00-00 00:00:00',0),(207,0,0,'H','2526','','P',207,0,0,'2025-10-09',193,161,0,15,0,'A',6000.00,0.00,'7','sbi','','52829500023','','0000-00-00','','',540,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-09 11:23:39','vishal','2025-10-11 21:09:47',0),(208,0,0,'H','2526','','',208,0,0,'2025-10-09',196,192,0,0,179,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',206,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 11:25:29','','0000-00-00 00:00:00',0),(209,0,0,'H','2526','','',209,0,0,'2025-10-09',195,191,0,0,178,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',207,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-09 11:28:03','','0000-00-00 00:00:00',0),(210,0,0,'H','2526','','',210,0,0,'2025-10-09',198,194,0,0,181,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',208,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 11:30:46','','0000-00-00 00:00:00',0),(211,0,0,'H','2526','','',211,0,0,'2025-10-09',199,195,0,0,182,'B',400.00,0.00,'7','ICICI','','74446','','0000-00-00','scan     ','',209,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 11:34:50','','0000-00-00 00:00:00',0),(212,0,0,'H','2526','','',212,0,0,'2025-10-09',200,196,0,0,183,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',210,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 11:37:38','','0000-00-00 00:00:00',0),(213,0,0,'H','2526','','',213,0,0,'2025-10-09',201,197,0,0,184,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',211,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 11:40:02','','0000-00-00 00:00:00',0),(214,0,0,'H','2526','','',214,0,0,'2025-10-09',203,199,0,0,186,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',212,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 11:43:49','','0000-00-00 00:00:00',0),(215,0,0,'H','2526','','',215,0,0,'2025-10-09',197,193,0,0,180,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',213,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 11:44:52','','0000-00-00 00:00:00',0),(216,0,0,'H','2526','','',216,0,0,'2025-10-09',174,171,0,0,158,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',214,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 11:45:41','','0000-00-00 00:00:00',0),(217,0,0,'H','2526','','',217,0,0,'2025-10-09',202,198,0,0,185,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',215,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 11:46:32','','0000-00-00 00:00:00',0),(218,0,0,'H','2526','','',218,0,0,'2025-10-09',204,200,0,0,187,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',216,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 11:46:44','','0000-00-00 00:00:00',0),(219,0,0,'H','2526','','',219,0,0,'2025-10-09',205,201,0,0,188,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',217,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 11:50:36','','0000-00-00 00:00:00',0),(220,0,0,'H','2526','','',220,0,0,'2025-10-09',206,202,0,0,189,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',218,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 11:53:08','','0000-00-00 00:00:00',0),(221,0,0,'H','2526','','',221,0,0,'2025-10-09',207,203,0,0,190,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',219,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 11:56:03','','0000-00-00 00:00:00',0),(222,0,0,'H','2526','','',222,0,0,'2025-10-09',201,197,0,0,184,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',220,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 11:57:49','','0000-00-00 00:00:00',0),(223,0,0,'H','2526','','',223,0,0,'2025-10-09',180,177,0,0,164,'B',5800.00,0.00,'7','HDFC','','67715','','0000-00-00','SCAN','',221,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 12:02:55','','0000-00-00 00:00:00',0),(224,0,0,'H','2526','','',224,0,0,'2025-10-09',208,204,0,0,191,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',222,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 12:04:58','','0000-00-00 00:00:00',0),(225,0,0,'H','2526','','',225,0,0,'2025-10-09',209,205,0,0,192,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',223,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 12:07:59','','0000-00-00 00:00:00',0),(226,0,0,'H','2526','','',226,0,0,'2025-10-09',200,196,0,0,183,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',224,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 12:09:21','','0000-00-00 00:00:00',0),(227,0,0,'H','2526','','',227,0,0,'2025-10-09',210,206,0,0,193,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',225,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 12:13:03','','0000-00-00 00:00:00',0),(228,0,0,'H','2526','','',228,0,0,'2025-10-09',211,207,0,0,194,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',226,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 12:17:10','','0000-00-00 00:00:00',0),(229,0,0,'H','2526','','',229,0,0,'2025-10-09',212,208,0,0,195,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',227,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-09 12:18:36','','0000-00-00 00:00:00',0),(230,0,0,'H','2526','','',230,0,0,'2025-10-09',213,209,0,0,196,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',228,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 12:20:05','','0000-00-00 00:00:00',0),(231,0,0,'H','2526','','',231,0,0,'2025-10-09',214,210,0,0,197,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',229,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 12:23:10','','0000-00-00 00:00:00',0),(232,0,0,'H','2526','','',232,0,0,'2025-10-09',185,182,0,0,169,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',230,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 12:28:01','','0000-00-00 00:00:00',0),(233,0,0,'H','2526','','',233,0,0,'2025-10-09',215,211,0,0,198,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',231,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 12:31:42','','0000-00-00 00:00:00',0),(234,0,0,'H','2526','','',234,0,0,'2025-10-09',217,212,0,0,199,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',232,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 12:43:43','','0000-00-00 00:00:00',0),(235,0,0,'H','2526','','',235,0,0,'2025-10-09',218,213,0,0,200,'B',300.00,0.00,'7','bob','','88357','','0000-00-00','scan  ','',233,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 12:46:12','','0000-00-00 00:00:00',0),(236,0,0,'H','2526','','',236,0,0,'2025-10-09',219,214,0,0,201,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',234,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 12:54:57','','0000-00-00 00:00:00',0),(237,0,0,'H','2526','','',237,0,0,'2025-10-09',220,215,0,0,202,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',235,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 13:03:05','','0000-00-00 00:00:00',0),(238,0,0,'H','2526','','',238,0,0,'2025-10-09',221,216,0,0,203,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',236,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 13:07:00','','0000-00-00 00:00:00',0),(239,0,0,'H','2526','','',239,0,0,'2025-10-09',221,216,0,0,203,'D',-300.00,0.00,'CSH','','','','','2025-10-09','','',237,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 13:43:11','','0000-00-00 00:00:00',0),(240,0,0,'H','2526','','',240,0,0,'2025-10-09',222,217,0,0,204,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',238,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 13:43:50','','0000-00-00 00:00:00',0),(241,0,0,'H','2526','','',241,0,0,'2025-10-09',223,218,0,0,205,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',239,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 13:46:53','','0000-00-00 00:00:00',0),(242,0,0,'H','2526','','',242,0,0,'2025-10-09',219,214,0,0,201,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',240,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 13:54:15','','0000-00-00 00:00:00',0),(243,0,0,'H','2526','','P',243,0,0,'2025-10-09',224,127,0,17,0,'A',50000.00,0.00,'CSH','','','','','0000-00-00','','',1243,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-09 14:43:35','riya','2025-10-16 20:02:19',0),(244,0,0,'H','2526','','',244,0,0,'2025-10-09',225,219,0,0,206,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',241,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 16:29:52','','0000-00-00 00:00:00',0),(245,0,0,'H','2526','','P',245,0,0,'2025-10-09',216,179,0,16,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',1000,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-09 16:42:02','vishal','2025-10-15 13:00:06',0),(246,0,0,'H','2526','','',246,0,0,'2025-10-09',227,221,0,0,208,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',242,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 16:42:13','','0000-00-00 00:00:00',0),(247,0,0,'H','2526','','',247,0,0,'2025-10-09',226,220,0,0,207,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',243,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 16:42:17','','0000-00-00 00:00:00',0),(248,0,0,'H','2526','','',248,0,0,'2025-10-09',228,222,0,0,209,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',244,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 16:45:49','','0000-00-00 00:00:00',0),(249,0,0,'H','2526','','P',249,0,0,'2025-10-08',150,16,0,12,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',532,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-09 16:48:29','vishal','2025-10-11 19:09:58',0),(250,0,0,'H','2526','','',250,0,0,'2025-10-09',229,223,0,0,210,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',245,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 16:54:46','','0000-00-00 00:00:00',0),(251,0,0,'H','2526','','',251,0,0,'2025-10-09',230,224,0,0,211,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',246,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 16:55:07','','0000-00-00 00:00:00',0),(252,0,0,'H','2526','','',252,0,0,'2025-10-09',231,225,0,0,212,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',247,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 17:02:02','','0000-00-00 00:00:00',0),(253,0,0,'H','2526','','',253,0,0,'2025-10-09',232,226,0,0,213,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',248,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 17:11:47','','0000-00-00 00:00:00',0),(254,0,0,'H','2526','','',254,0,0,'2025-10-09',233,227,0,0,214,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',249,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 17:16:02','','0000-00-00 00:00:00',0),(255,0,0,'H','2526','','',255,0,0,'2025-10-09',234,228,0,0,215,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',250,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 17:19:50','','0000-00-00 00:00:00',0),(256,0,0,'H','2526','','',256,0,0,'2025-10-09',226,220,0,0,207,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',251,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 17:19:54','','0000-00-00 00:00:00',0),(257,0,0,'H','2526','','',257,0,0,'2025-10-09',235,229,0,0,216,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',252,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 17:24:27','','0000-00-00 00:00:00',0),(258,0,0,'H','2526','','',258,0,0,'2025-10-09',237,231,0,0,218,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',253,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 17:28:14','','0000-00-00 00:00:00',0),(259,0,0,'H','2526','','',259,0,0,'2025-10-09',238,232,0,0,219,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',254,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 17:29:13','','0000-00-00 00:00:00',0),(260,0,0,'H','2526','','',260,0,0,'2025-10-09',239,233,0,0,220,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',255,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 17:33:16','','0000-00-00 00:00:00',0),(261,0,0,'H','2526','','',261,0,0,'2025-10-09',241,235,0,0,222,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',256,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 17:43:17','','0000-00-00 00:00:00',0),(262,0,0,'H','2526','','',262,0,0,'2025-10-09',243,100,0,0,89,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',257,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 17:50:37','','0000-00-00 00:00:00',0),(263,0,0,'H','2526','','',263,0,0,'2025-10-09',244,237,0,0,224,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',258,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 17:50:55','','0000-00-00 00:00:00',0),(264,0,0,'H','2526','','',264,0,0,'2025-10-09',242,236,0,0,223,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',259,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 17:51:58','','0000-00-00 00:00:00',0),(265,0,0,'H','2526','','',265,0,0,'2025-10-09',229,223,0,0,210,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',260,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 17:56:12','','0000-00-00 00:00:00',0),(266,0,0,'H','2526','','',266,0,0,'2025-10-09',245,238,0,0,225,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',261,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 17:56:56','','0000-00-00 00:00:00',0),(267,0,0,'H','2526','','',267,0,0,'2025-10-09',247,240,0,0,226,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',262,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 18:01:21','','0000-00-00 00:00:00',0),(268,0,0,'H','2526','','',268,0,0,'2025-10-09',248,241,0,0,227,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',263,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 18:02:23','','0000-00-00 00:00:00',0),(269,0,0,'H','2526','','',269,0,0,'2025-10-09',240,234,0,0,221,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',264,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 18:04:26','','0000-00-00 00:00:00',0),(270,0,0,'H','2526','','P',270,0,0,'2025-10-09',246,239,0,18,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',1483,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-09 18:05:02','riya','2025-10-18 13:55:10',0),(271,0,0,'H','2526','','',271,0,0,'2025-10-09',225,219,0,0,206,'D',-500.00,0.00,'CSH','','','','','2025-10-09','','',265,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 18:05:58','','0000-00-00 00:00:00',0),(272,0,0,'H','2526','','',272,0,0,'2025-10-09',250,243,0,0,229,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',266,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 18:06:07','','0000-00-00 00:00:00',0),(273,0,0,'H','2526','','',273,0,0,'2025-10-09',249,242,0,0,228,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',267,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 18:06:18','','0000-00-00 00:00:00',0),(274,0,0,'H','2526','','',274,0,0,'2025-10-09',251,244,0,0,230,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',268,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 18:07:51','','0000-00-00 00:00:00',0),(275,0,0,'H','2526','','',275,0,0,'2025-10-09',252,245,0,0,231,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',269,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 18:12:09','','0000-00-00 00:00:00',0),(276,0,0,'H','2526','','',276,0,0,'2025-10-09',253,246,0,0,232,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',270,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 18:12:21','','0000-00-00 00:00:00',0),(277,0,0,'H','2526','','',277,0,0,'2025-10-09',254,247,0,0,233,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',271,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 18:13:10','','0000-00-00 00:00:00',0),(278,0,0,'H','2526','','',278,0,0,'2025-10-09',255,122,0,0,111,'B',200.00,0.00,'7','UNION BANK','','26167','','0000-00-00','scan ','',272,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 18:15:14','','0000-00-00 00:00:00',0),(279,0,0,'H','2526','','',279,0,0,'2025-10-09',238,232,0,0,219,'B',4600.00,0.00,'7','SBI','','64325','','0000-00-00','SCAN','',273,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 18:16:47','','0000-00-00 00:00:00',0),(280,0,0,'H','2526','','',280,0,0,'2025-10-09',256,248,0,0,234,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',274,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 18:18:44','','0000-00-00 00:00:00',0),(281,0,0,'H','2526','','',281,0,0,'2025-10-09',258,250,0,0,235,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',275,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 18:24:16','','0000-00-00 00:00:00',0),(282,0,0,'H','2526','','',282,0,0,'2025-10-09',259,251,0,0,236,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',276,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 18:24:43','','0000-00-00 00:00:00',0),(283,0,0,'H','2526','','',283,0,0,'2025-10-09',260,252,0,0,237,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',277,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 18:29:23','','0000-00-00 00:00:00',0),(284,0,0,'H','2526','','',284,0,0,'2025-10-09',261,253,0,0,238,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',278,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 18:32:56','','0000-00-00 00:00:00',0),(285,0,0,'H','2526','','',285,0,0,'2025-10-09',262,254,0,0,239,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',279,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 18:34:20','','0000-00-00 00:00:00',0),(286,0,0,'H','2526','','',286,0,0,'2025-10-09',263,255,0,0,240,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',280,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 18:34:44','','0000-00-00 00:00:00',0),(287,0,0,'H','2526','','P',287,0,0,'2025-10-09',150,16,0,12,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',532,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-09 18:35:17','vishal','2025-10-11 19:09:58',0),(288,0,0,'H','2526','','',288,0,0,'2025-10-09',249,242,0,0,228,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',281,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 18:38:49','','0000-00-00 00:00:00',0),(289,0,0,'H','2526','','',289,0,0,'2025-10-09',264,256,0,0,241,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',282,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 18:48:49','','0000-00-00 00:00:00',0),(290,0,0,'H','2526','','',290,0,0,'2025-10-09',265,257,0,0,242,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',283,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 18:49:18','','0000-00-00 00:00:00',0),(291,0,0,'H','2526','','P',291,0,0,'2025-10-09',257,249,0,19,0,'A',7000.00,0.00,'7','IDFC','I','564827019579','','0000-00-00','UPI','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-09 18:49:37','vishal','2025-10-09 18:49:37',0),(292,0,0,'H','2526','','',292,0,0,'2025-10-09',266,258,0,0,243,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',284,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 18:51:03','','0000-00-00 00:00:00',0),(293,0,0,'H','2526','','P',293,0,0,'2025-10-08',257,249,0,19,0,'A',6000.00,0.00,'7','IDFC','','564723815924','','0000-00-00','UPI','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-09 18:54:08','vishal','2025-10-09 18:54:08',0),(294,0,0,'H','2526','','',294,0,0,'2025-10-09',267,259,0,0,244,'B',750.00,0.00,'7','INDUSLAND BANK','','78679','','0000-00-00','scan ','',285,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 18:57:03','','0000-00-00 00:00:00',0),(295,0,0,'H','2526','','',295,0,0,'2025-10-09',250,243,0,0,229,'D',-500.00,0.00,'CSH','','','','','2025-10-09','','',286,'N','N','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 18:58:27','','0000-00-00 00:00:00',0),(296,0,0,'H','2526','','',296,0,0,'2025-10-09',251,244,0,0,230,'D',-900.00,0.00,'CSH','','','','','2025-10-09','','',287,'N','N','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 18:59:07','','0000-00-00 00:00:00',0),(297,0,0,'H','2526','','',297,0,0,'2025-10-09',268,151,0,0,140,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',288,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 19:00:10','','0000-00-00 00:00:00',0),(298,0,0,'H','2526','','',298,0,0,'2025-10-09',269,260,0,0,245,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',289,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 19:01:17','','0000-00-00 00:00:00',0),(299,0,0,'H','2526','','',299,0,0,'2025-10-09',270,261,0,0,246,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',290,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 19:01:37','','0000-00-00 00:00:00',0),(300,0,0,'H','2526','','',300,0,0,'2025-10-09',271,129,0,0,118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',291,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 19:02:13','','0000-00-00 00:00:00',0),(301,0,0,'H','2526','','P',301,0,0,'2025-10-09',60,60,0,8,0,'A',17000.00,0.00,'7','BOB ','','112402228074','','0000-00-00','UPI','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-09 19:05:18','vishal','2025-10-09 19:05:18',0),(302,0,0,'H','2526','','P',302,0,0,'2025-10-07',60,60,0,8,0,'A',7000.00,0.00,'7','ICICI BANK','','564621962719','','0000-00-00','UPI','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-09 19:06:43','vishal','2025-10-09 19:06:43',0),(303,0,0,'H','2526','','P',303,0,0,'2025-10-06',60,60,0,8,0,'A',6000.00,0.00,'7','ICICI BANK','','527961378184','','0000-00-00','UPI','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-09 19:09:39','vishal','2025-10-09 19:09:39',0),(304,0,0,'H','2526','','',304,0,0,'2025-10-09',273,263,0,0,248,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',292,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 19:11:55','','0000-00-00 00:00:00',0),(305,0,0,'H','2526','','',305,0,0,'2025-10-09',275,265,0,0,250,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',293,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 19:13:12','','0000-00-00 00:00:00',0),(306,0,0,'H','2526','','',306,0,0,'2025-10-09',274,264,0,0,249,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',294,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 19:13:48','','0000-00-00 00:00:00',0),(307,0,0,'H','2526','','',307,0,0,'2025-10-09',276,266,0,0,251,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',295,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 19:15:50','','0000-00-00 00:00:00',0),(308,0,0,'H','2526','','',308,0,0,'2025-10-09',277,267,0,0,252,'B',750.00,0.00,'7','BOB','','57680','','0000-00-00','SCAN','',296,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 19:19:15','','0000-00-00 00:00:00',0),(309,0,0,'H','2526','','P',309,0,0,'2025-10-09',246,239,0,18,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',1483,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-09 19:23:33','riya','2025-10-18 13:55:10',0),(310,0,0,'H','2526','','',310,0,0,'2025-10-09',278,268,0,0,253,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',297,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 19:26:41','','0000-00-00 00:00:00',0),(311,0,0,'H','2526','','',311,0,0,'2025-10-09',245,238,0,0,225,'B',3500.00,0.00,'7','HDFC','','62211','','0000-00-00','SCAN','',298,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 19:27:17','','0000-00-00 00:00:00',0),(312,0,0,'H','2526','','',312,0,0,'2025-10-09',279,269,0,0,254,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',299,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 19:28:12','','0000-00-00 00:00:00',0),(313,0,0,'H','2526','','',313,0,0,'2025-10-09',280,270,0,0,255,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',300,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 19:32:58','','0000-00-00 00:00:00',0),(314,0,0,'H','2526','','',314,0,0,'2025-10-09',281,271,0,0,256,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',301,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 19:35:02','','0000-00-00 00:00:00',0),(315,0,0,'H','2526','','',315,0,0,'2025-10-09',276,266,0,0,251,'D',-400.00,0.00,'CSH','','','','','2025-10-09','','',302,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 19:36:03','','0000-00-00 00:00:00',0),(316,0,0,'H','2526','','',316,0,0,'2025-10-09',232,226,0,0,213,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',303,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-09 19:41:09','','0000-00-00 00:00:00',0),(317,0,0,'H','2526','','',317,0,0,'2025-10-09',272,262,0,0,247,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',304,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 19:51:15','','0000-00-00 00:00:00',0),(318,0,0,'H','2526','','',318,0,0,'2025-10-09',282,272,0,0,257,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',305,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-09 19:52:58','','0000-00-00 00:00:00',0),(319,0,0,'H','2526','','P',319,0,0,'2025-10-09',63,63,0,10,0,'A',25000.00,0.00,'7','BOB ','','564860827370','','0000-00-00','UPI','',665,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-09 19:57:22','vishal','2025-10-13 14:18:29',0),(320,0,0,'H','2526','','P',320,0,0,'2025-10-09',283,273,0,20,0,'A',15000.00,0.00,'7','SBI','','528297596428','','0000-00-00','UPI','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-09 20:10:25','vishal','2025-10-09 20:10:25',0),(321,0,0,'H','2526','','',321,0,0,'2025-10-09',269,260,0,0,245,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',306,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-09 20:24:44','','0000-00-00 00:00:00',0),(322,0,0,'H','2526','','P',322,0,0,'2025-10-09',62,62,0,9,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-09 20:46:01','vishal','2025-10-09 20:46:01',0),(323,0,0,'H','2526','','P',323,0,0,'2025-10-09',284,274,0,21,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',1481,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-09 23:15:26','riya','2025-10-18 13:42:53',0),(324,0,0,'H','2526','','',324,0,0,'2025-10-10',285,275,0,0,258,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',307,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 09:04:09','','0000-00-00 00:00:00',0),(325,0,0,'H','2526','','',325,0,0,'2025-10-10',287,37,0,0,260,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',308,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-10 09:07:58','','0000-00-00 00:00:00',0),(326,0,0,'H','2526','','',326,0,0,'2025-10-10',288,277,0,0,261,'B',1400.00,0.00,'7','sbi','','15310','','0000-00-00','scan','',309,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-10 09:10:38','','0000-00-00 00:00:00',0),(327,0,0,'H','2526','','',327,0,0,'2025-10-10',289,53,0,0,47,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',310,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-10 09:12:16','','0000-00-00 00:00:00',0),(328,0,0,'H','2526','','',328,0,0,'2025-10-10',290,256,0,0,241,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',311,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-10 09:13:05','','0000-00-00 00:00:00',0),(329,0,0,'H','2526','','',329,0,0,'2025-10-10',291,278,0,0,262,'B',1150.00,0.00,'7','rnsb','','74808','','0000-00-00','scan','',312,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-10 09:18:11','','0000-00-00 00:00:00',0),(330,0,0,'H','2526','','',330,0,0,'2025-10-10',292,158,0,0,147,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',313,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 09:18:20','','0000-00-00 00:00:00',0),(331,0,0,'H','2526','','',331,0,0,'2025-10-10',287,37,0,0,260,'D',-100.00,0.00,'CSH','','','','','2025-10-10','','',314,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 09:21:44','','0000-00-00 00:00:00',0),(332,0,0,'H','2526','','',332,0,0,'2025-10-10',293,158,0,0,147,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',315,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 09:22:42','','0000-00-00 00:00:00',0),(333,0,0,'H','2526','','',333,0,0,'2025-10-10',294,279,0,0,263,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',316,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-10 09:26:26','','0000-00-00 00:00:00',0),(334,0,0,'H','2526','','',334,0,0,'2025-10-10',295,280,0,0,264,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',317,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-10 09:56:22','','0000-00-00 00:00:00',0),(335,0,0,'H','2526','','',335,0,0,'2025-10-10',296,281,0,0,265,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',318,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 10:01:31','','0000-00-00 00:00:00',0),(336,0,0,'H','2526','','',336,0,0,'2025-10-10',297,282,0,0,266,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',319,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 10:08:56','','0000-00-00 00:00:00',0),(337,0,0,'H','2526','','',337,0,0,'2025-10-10',298,283,0,0,267,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',320,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 10:11:29','','0000-00-00 00:00:00',0),(338,0,0,'H','2526','','',338,0,0,'2025-10-10',299,284,0,0,268,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',321,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 10:15:36','','0000-00-00 00:00:00',0),(339,0,0,'H','2526','','',339,0,0,'2025-10-10',300,285,0,0,269,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',322,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 10:19:14','','0000-00-00 00:00:00',0),(340,0,0,'H','2526','','',340,0,0,'2025-10-10',302,287,0,0,271,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',323,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 10:28:52','','0000-00-00 00:00:00',0),(341,0,0,'H','2526','','',341,0,0,'2025-10-10',301,286,0,0,270,'B',500.00,0.00,'7','axis bank','','45165','','0000-00-00','scan  ','',324,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 10:29:23','','0000-00-00 00:00:00',0),(342,0,0,'H','2526','','',342,0,0,'2025-10-10',303,288,0,0,272,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',325,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 10:38:01','','0000-00-00 00:00:00',0),(343,0,0,'H','2526','','',343,0,0,'2025-10-10',304,289,0,0,273,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',326,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 10:41:20','','0000-00-00 00:00:00',0),(344,0,0,'H','2526','','',344,0,0,'2025-10-10',305,290,0,0,274,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',327,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 10:48:26','','0000-00-00 00:00:00',0),(345,0,0,'H','2526','','',345,0,0,'2025-10-10',306,291,0,0,275,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',328,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 10:55:55','','0000-00-00 00:00:00',0),(346,0,0,'H','2526','','',346,0,0,'2025-10-10',286,276,0,0,259,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',329,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 11:01:58','','0000-00-00 00:00:00',0),(347,0,0,'H','2526','','',347,0,0,'2025-10-10',309,294,0,0,278,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',330,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 11:04:21','','0000-00-00 00:00:00',0),(348,0,0,'H','2526','','',348,0,0,'2025-10-10',308,293,0,0,277,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',331,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 11:05:30','','0000-00-00 00:00:00',0),(349,0,0,'H','2526','','',349,0,0,'2025-10-10',310,295,0,0,279,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',332,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 11:06:18','','0000-00-00 00:00:00',0),(350,0,0,'H','2526','','',350,0,0,'2025-10-10',311,296,0,0,280,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',333,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 11:14:05','','0000-00-00 00:00:00',0),(351,0,0,'H','2526','','',351,0,0,'2025-10-10',312,297,0,0,281,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',334,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 11:14:06','','0000-00-00 00:00:00',0),(352,0,0,'H','2526','','',352,0,0,'2025-10-10',314,299,0,0,283,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',335,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 11:16:29','','0000-00-00 00:00:00',0),(353,0,0,'H','2526','','',353,0,0,'2025-10-10',315,300,0,0,284,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',336,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 11:18:17','','0000-00-00 00:00:00',0),(354,0,0,'H','2526','','',354,0,0,'2025-10-10',316,301,0,0,285,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',337,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 11:19:13','','0000-00-00 00:00:00',0),(355,0,0,'H','2526','','',355,0,0,'2025-10-10',313,298,0,0,282,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',338,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-10 11:19:16','','0000-00-00 00:00:00',0),(356,0,0,'H','2526','','',356,0,0,'2025-10-10',318,302,0,0,286,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',339,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-10 11:20:52','','0000-00-00 00:00:00',0),(357,0,0,'H','2526','','',357,0,0,'2025-10-10',320,304,0,0,288,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',340,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 11:22:55','','0000-00-00 00:00:00',0),(358,0,0,'H','2526','','',358,0,0,'2025-10-10',319,303,0,0,287,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',341,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 11:22:57','','0000-00-00 00:00:00',0),(359,0,0,'H','2526','','',359,0,0,'2025-10-10',321,305,0,0,289,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',342,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 11:25:58','','0000-00-00 00:00:00',0),(360,0,0,'H','2526','','',360,0,0,'2025-10-10',322,306,0,0,290,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',343,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 11:26:14','','0000-00-00 00:00:00',0),(361,0,0,'H','2526','','',361,0,0,'2025-10-10',323,307,0,0,291,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',344,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 11:27:29','','0000-00-00 00:00:00',0),(362,0,0,'H','2526','','',362,0,0,'2025-10-10',324,308,0,0,292,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',345,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 11:35:17','','0000-00-00 00:00:00',0),(363,0,0,'H','2526','','',363,0,0,'2025-10-10',325,309,0,0,293,'B',750.00,0.00,'7','sbi','','35302','','0000-00-00','scan ','',346,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 11:40:02','','0000-00-00 00:00:00',0),(364,0,0,'H','2526','','',364,0,0,'2025-10-10',326,310,0,0,294,'B',900.00,0.00,'7','AXIS','','90171','','0000-00-00','SCAN','',347,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 11:46:20','','0000-00-00 00:00:00',0),(365,0,0,'H','2526','','',365,0,0,'2025-10-10',311,296,0,0,280,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',348,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 11:49:24','','0000-00-00 00:00:00',0),(366,0,0,'H','2526','','',366,0,0,'2025-10-10',327,311,0,0,295,'B',450.00,0.00,'CSH','','','','','0000-00-00','','',349,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 11:51:42','','0000-00-00 00:00:00',0),(367,0,0,'H','2526','','',367,0,0,'2025-10-10',319,303,0,0,287,'B',300.00,0.00,'7','HDFC','','30777','','0000-00-00','SCAN','',350,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 11:53:49','','0000-00-00 00:00:00',0),(368,0,0,'H','2526','','',368,0,0,'2025-10-10',329,313,0,0,297,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',351,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 12:03:07','','0000-00-00 00:00:00',0),(369,0,0,'H','2526','','',369,0,0,'2025-10-10',330,314,0,0,298,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',352,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 12:04:50','','0000-00-00 00:00:00',0),(370,0,0,'H','2526','','',370,0,0,'2025-10-10',332,316,0,0,300,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',353,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 12:08:28','','0000-00-00 00:00:00',0),(371,0,0,'H','2526','','',371,0,0,'2025-10-10',331,315,0,0,299,'B',750.00,0.00,'7','KOTAK BANK','','20501','','0000-00-00','scan ','',354,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 12:09:34','','0000-00-00 00:00:00',0),(372,0,0,'H','2526','','',372,0,0,'2025-10-10',333,317,0,0,301,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',355,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-10 12:09:48','','0000-00-00 00:00:00',0),(373,0,0,'H','2526','','',373,0,0,'2025-10-10',334,318,0,0,302,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',356,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-10 12:13:19','','0000-00-00 00:00:00',0),(374,0,0,'H','2526','','',374,0,0,'2025-10-10',335,319,0,0,303,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',357,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 12:27:25','','0000-00-00 00:00:00',0),(375,0,0,'H','2526','','',375,0,0,'2025-10-10',324,308,0,0,292,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',358,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 12:37:41','','0000-00-00 00:00:00',0),(376,0,0,'H','2526','','',376,0,0,'2025-10-10',336,320,0,0,304,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',359,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 12:46:47','','0000-00-00 00:00:00',0),(377,0,0,'H','2526','','',377,0,0,'2025-10-10',337,321,0,0,305,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',360,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 12:56:54','','0000-00-00 00:00:00',0),(378,0,0,'H','2526','','',378,0,0,'2025-10-10',338,322,0,0,306,'B',450.00,0.00,'CSH','','','','','0000-00-00','','',361,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 12:58:31','','0000-00-00 00:00:00',0),(379,0,0,'H','2526','','',379,0,0,'2025-10-10',326,310,0,0,294,'B',4000.00,0.00,'7','FEDERAL BANK','','53081','','0000-00-00','SCAN','',362,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 13:07:49','','0000-00-00 00:00:00',0),(380,0,0,'H','2526','','',380,0,0,'2025-10-10',340,324,0,0,308,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',363,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 13:10:30','','0000-00-00 00:00:00',0),(381,0,0,'H','2526','','',381,0,0,'2025-10-10',341,325,0,0,309,'B',900.00,0.00,'7','BOB','','47263','','0000-00-00','SCAN','',364,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 13:18:35','','0000-00-00 00:00:00',0),(382,0,0,'H','2526','','',382,0,0,'2025-10-10',332,316,0,0,300,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',365,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 13:20:29','','0000-00-00 00:00:00',0),(383,0,0,'H','2526','','',383,0,0,'2025-10-10',342,326,0,0,310,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',366,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 13:20:50','','0000-00-00 00:00:00',0),(384,0,0,'H','2526','','',384,0,0,'2025-10-10',343,327,0,0,311,'B',1700.00,0.00,'CSH','','','','','0000-00-00','','',367,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-10 13:44:21','','0000-00-00 00:00:00',0),(385,0,0,'H','2526','','',385,0,0,'2025-10-10',341,325,0,0,309,'B',4600.00,0.00,'7','BOB','','65259','','0000-00-00','SCAN','',368,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 13:44:47','','0000-00-00 00:00:00',0),(386,0,0,'H','2526','','',386,0,0,'2025-10-10',344,328,0,0,312,'B',500.00,0.00,'7','BOB','','43177','','0000-00-00','scan','',369,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-10 13:51:36','','0000-00-00 00:00:00',0),(387,0,0,'H','2526','','',387,0,0,'2025-10-10',345,329,0,0,313,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',370,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 14:01:28','','0000-00-00 00:00:00',0),(388,0,0,'H','2526','','',388,0,0,'2025-10-10',346,307,0,0,291,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',371,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-10 15:24:37','','0000-00-00 00:00:00',0),(389,0,0,'H','2526','','',389,0,0,'2025-10-10',347,330,0,0,314,'B',1100.00,0.00,'7','hdfc','','65937','','0000-00-00','scan ','',372,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-10 16:02:18','','0000-00-00 00:00:00',0),(390,0,0,'H','2526','','',390,0,0,'2025-10-10',348,331,0,0,315,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',373,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-10 16:21:44','','0000-00-00 00:00:00',0),(391,0,0,'H','2526','','',391,0,0,'2025-10-10',352,335,0,0,319,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',374,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 16:37:13','','0000-00-00 00:00:00',0),(392,0,0,'H','2526','','',392,0,0,'2025-10-10',351,334,0,0,318,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',375,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 16:37:34','','0000-00-00 00:00:00',0),(393,0,0,'H','2526','','',393,0,0,'2025-10-10',353,336,0,0,320,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',376,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 16:40:24','','0000-00-00 00:00:00',0),(394,0,0,'H','2526','','',394,0,0,'2025-10-10',354,337,0,0,321,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',377,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 16:41:09','','0000-00-00 00:00:00',0),(395,0,0,'H','2526','','',395,0,0,'2025-10-10',356,339,0,0,323,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',378,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 16:50:51','','0000-00-00 00:00:00',0),(396,0,0,'H','2526','','',396,0,0,'2025-10-10',357,340,0,0,324,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',379,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 16:51:09','','0000-00-00 00:00:00',0),(397,0,0,'H','2526','','',397,0,0,'2025-10-10',360,343,0,0,327,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',380,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-10 17:02:49','','0000-00-00 00:00:00',0),(398,0,0,'H','2526','','',398,0,0,'2025-10-10',361,344,0,0,328,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',381,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 17:05:13','','0000-00-00 00:00:00',0),(399,0,0,'H','2526','','P',399,0,0,'2025-10-10',284,274,0,21,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',1481,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-10 17:05:55','riya','2025-10-18 13:42:53',0),(400,0,0,'H','2526','','',400,0,0,'2025-10-10',362,345,0,0,329,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',382,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-10 17:06:03','','0000-00-00 00:00:00',0),(401,0,0,'H','2526','','P',401,0,0,'2025-10-10',284,274,0,21,0,'A',30000.00,0.00,'7','SBI BANK','','564901780986','','0000-00-00','','',1481,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-10 17:07:34','riya','2025-10-18 13:42:53',0),(402,0,0,'H','2526','','',402,0,0,'2025-10-10',363,346,0,0,330,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',383,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 17:10:30','','0000-00-00 00:00:00',0),(403,0,0,'H','2526','','',403,0,0,'2025-10-10',364,347,0,0,331,'B',900.00,0.00,'7','sbi ','','91857','','0000-00-00','SCAN','',384,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 17:14:15','','0000-00-00 00:00:00',0),(404,0,0,'H','2526','','',404,0,0,'2025-10-10',365,348,0,0,332,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',385,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 17:25:30','','0000-00-00 00:00:00',0),(405,0,0,'H','2526','','',405,0,0,'2025-10-10',366,349,0,0,333,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',386,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 17:26:12','','0000-00-00 00:00:00',0),(406,0,0,'H','2526','','',406,0,0,'2025-10-10',368,351,0,0,335,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',387,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 17:33:33','','0000-00-00 00:00:00',0),(407,0,0,'H','2526','','',407,0,0,'2025-10-10',369,352,0,0,336,'B',300.00,0.00,'7','axis bank','','90947','','0000-00-00','scan','',388,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 17:36:11','','0000-00-00 00:00:00',0),(408,0,0,'H','2526','','',408,0,0,'2025-10-10',371,354,0,0,338,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',389,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 17:39:02','','0000-00-00 00:00:00',0),(409,0,0,'H','2526','','',409,0,0,'2025-10-10',373,356,0,0,340,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',390,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 17:41:41','','0000-00-00 00:00:00',0),(410,0,0,'H','2526','','',410,0,0,'2025-10-10',374,357,0,0,341,'B',300.00,0.00,'7','AU SMALL FINAN','','94972','','0000-00-00','SCAN','',391,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 17:48:12','','0000-00-00 00:00:00',0),(411,0,0,'H','2526','','',411,0,0,'2025-10-10',377,360,0,0,344,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',392,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 17:50:30','','0000-00-00 00:00:00',0),(412,0,0,'H','2526','','',412,0,0,'2025-10-10',378,361,0,0,345,'B',500.00,0.00,'7','rnsb','','81819','','0000-00-00','scan','',393,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 17:52:31','','0000-00-00 00:00:00',0),(413,0,0,'H','2526','','',413,0,0,'2025-10-10',376,359,0,0,343,'B',400.00,0.00,'7','rnsb','','81819','','0000-00-00','scan','',394,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 17:52:45','','0000-00-00 00:00:00',0),(414,0,0,'H','2526','','',414,0,0,'2025-10-10',375,358,0,0,342,'B',400.00,0.00,'7','rnsb','','81819','','0000-00-00','scan','',395,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 17:52:59','','0000-00-00 00:00:00',0),(415,0,0,'H','2526','','',415,0,0,'2025-10-10',379,122,0,0,111,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',396,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 17:54:47','','0000-00-00 00:00:00',0),(416,0,0,'H','2526','','',416,0,0,'2025-10-10',380,362,0,0,346,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',397,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 17:54:59','','0000-00-00 00:00:00',0),(417,0,0,'H','2526','','',417,0,0,'2025-10-10',381,363,0,0,347,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',398,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 17:55:03','','0000-00-00 00:00:00',0),(418,0,0,'H','2526','','',418,0,0,'2025-10-10',382,364,0,0,348,'B',750.00,0.00,'7','sbi','','93008','','0000-00-00','scan  ','',399,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 17:57:48','','0000-00-00 00:00:00',0),(419,0,0,'H','2526','','',419,0,0,'2025-10-10',370,353,0,0,337,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',400,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-10 17:59:38','','0000-00-00 00:00:00',0),(420,0,0,'H','2526','','',420,0,0,'2025-10-10',372,355,0,0,339,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',401,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-10 17:59:51','','0000-00-00 00:00:00',0),(421,0,0,'H','2526','','',421,0,0,'2025-10-10',383,365,0,0,349,'B',500.00,0.00,'7','sbi ','','04414','','0000-00-00','scan ','',402,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 18:02:21','','0000-00-00 00:00:00',0),(422,0,0,'H','2526','','',422,0,0,'2025-10-10',384,366,0,0,350,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',403,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 18:04:12','','0000-00-00 00:00:00',0),(423,0,0,'H','2526','','',423,0,0,'2025-10-10',364,347,0,0,331,'B',4000.00,0.00,'7','SBI BANK','','68020','','0000-00-00','scan ','',404,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 18:05:21','','0000-00-00 00:00:00',0),(424,0,0,'H','2526','','',424,0,0,'2025-10-10',385,367,0,0,351,'B',500.00,0.00,'7','HDFC','','30103','','0000-00-00','SCAN','',405,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 18:11:20','','0000-00-00 00:00:00',0),(425,0,0,'H','2526','','',425,0,0,'2025-10-10',386,368,0,0,352,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',406,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 18:11:35','','0000-00-00 00:00:00',0),(426,0,0,'H','2526','','',426,0,0,'2025-10-10',387,369,0,0,353,'B',700.00,0.00,'7','hdfc','','65625','','0000-00-00','scan ','',407,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 18:15:18','','0000-00-00 00:00:00',0),(427,0,0,'H','2526','','',427,0,0,'2025-10-10',388,370,0,0,354,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',408,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-10 18:19:18','','0000-00-00 00:00:00',0),(428,0,0,'H','2526','','',428,0,0,'2025-10-10',389,371,0,0,355,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',409,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 18:21:19','','0000-00-00 00:00:00',0),(429,0,0,'H','2526','','',429,0,0,'2025-10-10',390,372,0,0,356,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',410,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 18:22:08','','0000-00-00 00:00:00',0),(430,0,0,'H','2526','','P',430,0,0,'2025-10-10',150,16,0,12,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',532,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-10 18:22:48','vishal','2025-10-11 19:09:58',0),(431,0,0,'H','2526','','',431,0,0,'2025-10-10',391,373,0,0,357,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',411,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 18:23:54','','0000-00-00 00:00:00',0),(432,0,0,'H','2526','','',432,0,0,'2025-10-10',392,374,0,0,358,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',412,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 18:24:56','','0000-00-00 00:00:00',0),(433,0,0,'H','2526','','',433,0,0,'2025-10-10',360,343,0,0,327,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',413,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-10 18:26:01','','0000-00-00 00:00:00',0),(434,0,0,'H','2526','','',434,0,0,'2025-10-10',362,345,0,0,329,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',414,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-10 18:26:50','','0000-00-00 00:00:00',0),(435,0,0,'H','2526','','',435,0,0,'2025-10-10',371,354,0,0,338,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',415,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 18:30:51','','0000-00-00 00:00:00',0),(436,0,0,'H','2526','','',436,0,0,'2025-10-10',393,129,0,0,118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',416,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 18:31:42','','0000-00-00 00:00:00',0),(437,0,0,'H','2526','','',437,0,0,'2025-10-10',394,375,0,0,359,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',417,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 18:32:25','','0000-00-00 00:00:00',0),(438,0,0,'H','2526','','',438,0,0,'2025-10-10',395,376,0,0,360,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',418,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 18:32:46','','0000-00-00 00:00:00',0),(439,0,0,'H','2526','','',439,0,0,'2025-10-10',397,377,0,0,361,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',419,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 18:33:55','','0000-00-00 00:00:00',0),(440,0,0,'H','2526','','',440,0,0,'2025-10-10',396,151,0,0,140,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',420,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 18:34:05','','0000-00-00 00:00:00',0),(441,0,0,'H','2526','','',441,0,0,'2025-10-10',388,370,0,0,354,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',421,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-10 18:34:11','','0000-00-00 00:00:00',0),(442,0,0,'H','2526','','',442,0,0,'2025-10-10',398,378,0,0,362,'B',800.00,0.00,'7','AXIS','','04302','','0000-00-00','SCAN','',422,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 18:37:43','','0000-00-00 00:00:00',0),(443,0,0,'H','2526','','',443,0,0,'2025-10-10',399,379,0,0,363,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',423,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 18:41:13','','0000-00-00 00:00:00',0),(444,0,0,'H','2526','','',444,0,0,'2025-10-10',395,376,0,0,360,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',424,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 18:46:53','','0000-00-00 00:00:00',0),(445,0,0,'H','2526','','',445,0,0,'2025-10-10',381,363,0,0,347,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',425,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 18:51:14','','0000-00-00 00:00:00',0),(446,0,0,'H','2526','','',446,0,0,'2025-10-10',384,366,0,0,350,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',427,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 18:54:32','','0000-00-00 00:00:00',0),(447,0,0,'H','2526','','',447,0,0,'2025-10-10',381,363,0,0,347,'D',-4000.00,0.00,'CSH','','','','','2025-10-10','','',426,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 18:55:10','','0000-00-00 00:00:00',0),(448,0,0,'H','2526','','',448,0,0,'2025-10-10',377,360,0,0,344,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',428,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 18:58:58','','0000-00-00 00:00:00',0),(449,0,0,'H','2526','','',449,0,0,'2025-10-10',401,81,0,0,70,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',429,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-10 18:59:46','','0000-00-00 00:00:00',0),(450,0,0,'H','2526','','',450,0,0,'2025-10-10',367,350,0,0,334,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',430,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 19:06:47','','0000-00-00 00:00:00',0),(451,0,0,'H','2526','','P',451,0,0,'2025-10-10',224,127,0,17,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',1243,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-10 19:06:50','riya','2025-10-16 20:02:19',0),(452,0,0,'H','2526','','',452,0,0,'2025-10-10',402,381,0,0,365,'B',400.00,0.00,'7','SBI BANK','','93705','','0000-00-00','scan ','',431,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 19:07:28','','0000-00-00 00:00:00',0),(453,0,0,'H','2526','','',453,0,0,'2025-10-10',403,382,0,0,366,'B',400.00,0.00,'7','SBI BANK','','93705','','0000-00-00','scan ','',432,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 19:09:14','','0000-00-00 00:00:00',0),(454,0,0,'H','2526','','',454,0,0,'2025-10-10',404,383,0,0,367,'B',400.00,0.00,'7','SBI','','81968','','0000-00-00','scan     ','',433,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 19:10:35','','0000-00-00 00:00:00',0),(455,0,0,'H','2526','','',455,0,0,'2025-10-10',405,384,0,0,368,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',434,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 19:12:20','','0000-00-00 00:00:00',0),(456,0,0,'H','2526','','P',456,0,0,'2025-10-10',246,239,0,18,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',1483,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-10 19:16:39','riya','2025-10-18 13:55:10',0),(457,0,0,'H','2526','','',457,0,0,'2025-10-10',312,297,0,0,281,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',435,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 19:17:58','','0000-00-00 00:00:00',0),(458,0,0,'H','2526','','',458,0,0,'2025-10-10',408,387,0,0,370,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',437,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 19:28:39','','0000-00-00 00:00:00',0),(459,0,0,'H','2526','','',459,0,0,'2025-10-10',328,312,0,0,296,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',438,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 19:29:02','','0000-00-00 00:00:00',0),(460,0,0,'H','2526','','',460,0,0,'2025-10-10',400,380,0,0,364,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',439,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-10 19:37:19','','0000-00-00 00:00:00',0),(461,0,0,'H','2526','','',461,0,0,'2025-10-10',410,389,0,0,371,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',440,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 19:44:50','','0000-00-00 00:00:00',0),(462,0,0,'H','2526','','',462,0,0,'2025-10-10',411,390,0,0,372,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',442,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-10 19:50:37','','0000-00-00 00:00:00',0),(463,0,0,'H','2526','','',463,0,0,'2025-10-10',407,386,0,0,369,'B',1100.00,0.00,'7','IDFC BANK','','87423','','0000-00-00','scan','',443,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-10 19:58:24','','0000-00-00 00:00:00',0),(464,0,0,'H','2526','','',464,0,0,'2025-10-10',388,370,0,0,354,'D',-500.00,0.00,'CSH','','','','','2025-10-10','','',436,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-10 20:29:20','','0000-00-00 00:00:00',0),(465,0,0,'H','2526','','P',465,0,0,'2025-10-10',413,276,0,24,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',657,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-10 20:41:21','vishal','2025-10-13 13:27:41',0),(466,0,0,'H','2526','','P',466,0,0,'2025-10-10',414,392,0,25,0,'A',20000.00,0.00,'7','OTHER BANK','','123456789','','0000-00-00','','',2614,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-10 21:08:13','vishal','2025-11-01 15:09:18',0),(467,0,0,'H','2526','','P',467,0,0,'2025-10-10',415,393,0,26,0,'A',7000.00,0.00,'7','OTHER BANK','','123456789','','0000-00-00','','',637,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-10 21:12:43','reception','2025-10-13 12:12:12',0),(468,0,0,'H','2526','','P',468,0,0,'2025-10-10',416,292,0,27,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',917,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-10 21:17:15','riya','2025-10-14 19:23:11',0),(469,0,0,'H','2526','','P',469,0,0,'2025-10-10',417,394,0,28,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',547,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-10 22:01:18','vishal','2025-10-12 12:03:57',0),(470,0,0,'H','2526','','P',470,0,0,'2025-10-07',56,56,0,7,0,'A',7000.00,0.00,'7','OTHER BANK','','123456789','','0000-00-00','','',516,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-10 22:04:19','vishal','2025-10-11 13:07:37',0),(471,0,0,'H','2526','','P',471,0,0,'2025-10-10',56,56,0,7,0,'A',15000.00,0.00,'7','OTHER BANK','','123456789','','0000-00-00','','',516,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-10 22:05:17','vishal','2025-10-11 13:07:37',0),(472,0,0,'H','2526','','',472,0,0,'2025-10-11',418,395,0,0,374,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',444,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-11 08:58:21','','0000-00-00 00:00:00',0),(473,0,0,'H','2526','','',473,0,0,'2025-10-11',419,158,0,0,147,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',445,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 09:15:43','','0000-00-00 00:00:00',0),(474,0,0,'H','2526','','',474,0,0,'2025-10-11',421,397,0,0,376,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',446,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-11 09:17:40','','0000-00-00 00:00:00',0),(475,0,0,'H','2526','','',475,0,0,'2025-10-11',420,396,0,0,375,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',447,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 09:18:36','','0000-00-00 00:00:00',0),(476,0,0,'H','2526','','P',476,0,0,'2025-10-11',422,321,0,29,0,'A',14000.00,0.00,'CSH','','','','','0000-00-00','','',537,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-11 09:28:50','vishal','2025-10-11 19:53:21',0),(477,0,0,'H','2526','','',477,0,0,'2025-10-11',423,398,0,0,377,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',448,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-11 09:30:17','','0000-00-00 00:00:00',0),(478,0,0,'H','2526','','',478,0,0,'2025-10-11',419,158,0,0,147,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',449,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-11 09:31:10','','0000-00-00 00:00:00',0),(479,0,0,'H','2526','','',479,0,0,'2025-10-11',424,399,0,0,378,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',450,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 09:36:28','','0000-00-00 00:00:00',0),(480,0,0,'H','2526','','',480,0,0,'2025-10-11',425,400,0,0,379,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',451,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-11 09:37:17','','0000-00-00 00:00:00',0),(481,0,0,'H','2526','','P',481,0,0,'2025-10-11',426,234,0,30,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',551,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-11 09:43:24','vishal','2025-10-12 13:42:18',0),(482,0,0,'H','2526','','',482,0,0,'2025-10-11',429,402,0,0,381,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',452,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 09:48:06','','0000-00-00 00:00:00',0),(483,0,0,'H','2526','','P',483,0,0,'2025-10-11',428,224,0,31,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',545,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-11 09:49:49','vishal','2025-10-12 10:08:22',0),(484,0,0,'H','2526','','',484,0,0,'2025-10-11',431,404,0,0,382,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',453,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-11 10:10:17','','0000-00-00 00:00:00',0),(485,0,0,'H','2526','','',485,0,0,'2025-10-11',421,397,0,0,376,'B',3000.00,0.00,'7','BOB','','60980','','0000-00-00','SCAN','',454,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 10:10:33','','0000-00-00 00:00:00',0),(486,0,0,'H','2526','','',486,0,0,'2025-10-11',421,397,0,0,376,'B',1800.00,0.00,'CSH','','','','','0000-00-00','','',455,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 10:12:24','','0000-00-00 00:00:00',0),(487,0,0,'H','2526','','',487,0,0,'2025-10-11',432,405,0,0,383,'B',800.00,0.00,'7','UCO BANK','','25377','','0000-00-00','scan','',456,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-11 10:12:51','','0000-00-00 00:00:00',0),(488,0,0,'H','2526','','',488,0,0,'2025-10-11',433,406,0,0,384,'B',500.00,0.00,'7','BOB','','43904','','0000-00-00','SCAN','',457,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 10:18:52','','0000-00-00 00:00:00',0),(489,0,0,'H','2526','','P',489,0,0,'2025-10-11',434,286,0,33,0,'A',30000.00,0.00,'7','AXIS BANK','','528424061950','','0000-00-00','','',550,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-11 10:20:24','vishal','2025-10-12 13:20:56',0),(490,0,0,'H','2526','','',490,0,0,'2025-10-11',425,400,0,0,379,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',458,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 10:21:47','','0000-00-00 00:00:00',0),(491,0,0,'H','2526','','',491,0,0,'2025-10-11',435,407,0,0,385,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',459,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 10:24:21','','0000-00-00 00:00:00',0),(492,0,0,'H','2526','','',492,0,0,'2025-10-11',436,408,0,0,386,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',460,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-11 10:27:17','','0000-00-00 00:00:00',0),(493,0,0,'H','2526','','',493,0,0,'2025-10-11',437,409,0,0,387,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',461,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 10:29:10','','0000-00-00 00:00:00',0),(494,0,0,'H','2526','','',494,0,0,'2025-10-11',438,410,0,0,388,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',462,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 10:31:34','','0000-00-00 00:00:00',0),(495,0,0,'H','2526','','',495,0,0,'2025-10-11',439,411,0,0,389,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',463,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 10:33:18','','0000-00-00 00:00:00',0),(496,0,0,'H','2526','','',496,0,0,'2025-10-11',440,412,0,0,390,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',464,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 10:36:54','','0000-00-00 00:00:00',0),(497,0,0,'H','2526','','',497,0,0,'2025-10-11',437,409,0,0,387,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',465,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 10:39:24','','0000-00-00 00:00:00',0),(498,0,0,'H','2526','','P',498,0,0,'2025-10-11',283,273,0,20,0,'A',18000.00,0.00,'7','SBI BANK','','112476865155','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-11 10:41:38','vishal','2025-10-11 10:41:38',0),(499,0,0,'H','2526','','',499,0,0,'2025-10-11',441,413,0,0,391,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',466,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 10:44:05','','0000-00-00 00:00:00',0),(500,0,0,'H','2526','','',500,0,0,'2025-10-11',443,415,0,0,393,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',467,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 10:47:03','','0000-00-00 00:00:00',0),(501,0,0,'H','2526','','',501,0,0,'2025-10-11',444,416,0,0,394,'B',700.00,0.00,'7','SBI','','13679','','0000-00-00','SCAN','',468,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 11:01:22','','0000-00-00 00:00:00',0),(502,0,0,'H','2526','','',502,0,0,'2025-10-11',445,417,0,0,395,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',469,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 11:02:08','','0000-00-00 00:00:00',0),(503,0,0,'H','2526','','',503,0,0,'2025-10-11',442,414,0,0,392,'B',1150.00,0.00,'CSH','','','','','0000-00-00','','',470,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-11 11:10:49','','0000-00-00 00:00:00',0),(504,0,0,'H','2526','','',504,0,0,'2025-10-11',447,142,0,0,131,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',471,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-11 11:13:11','','0000-00-00 00:00:00',0),(505,0,0,'H','2526','','',505,0,0,'2025-10-11',448,419,0,0,397,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',472,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 11:14:25','','0000-00-00 00:00:00',0),(506,0,0,'H','2526','','',506,0,0,'2025-10-11',449,420,0,0,398,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',473,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-11 11:15:05','','0000-00-00 00:00:00',0),(507,0,0,'H','2526','','',507,0,0,'2025-10-11',450,421,0,0,399,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',474,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 11:16:35','','0000-00-00 00:00:00',0),(508,0,0,'H','2526','','',508,0,0,'2025-10-11',452,423,0,0,401,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',475,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 11:17:04','','0000-00-00 00:00:00',0),(509,0,0,'H','2526','','',509,0,0,'2025-10-11',453,424,0,0,402,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',476,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 11:18:17','','0000-00-00 00:00:00',0),(510,0,0,'H','2526','','',510,0,0,'2025-10-11',454,425,0,0,403,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',477,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-11 11:19:18','','0000-00-00 00:00:00',0),(511,0,0,'H','2526','','',511,0,0,'2025-10-11',455,426,0,0,404,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',478,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 11:20:03','','0000-00-00 00:00:00',0),(512,0,0,'H','2526','','',512,0,0,'2025-10-11',456,427,0,0,405,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',479,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 11:20:14','','0000-00-00 00:00:00',0),(513,0,0,'H','2526','','',513,0,0,'2025-10-11',457,257,0,0,242,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',480,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-11 11:21:25','','0000-00-00 00:00:00',0),(514,0,0,'H','2526','','',514,0,0,'2025-10-11',446,418,0,0,396,'B',400.00,0.00,'7','AXIS BANK','','15645','','0000-00-00','scan ','',481,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 11:21:55','','0000-00-00 00:00:00',0),(515,0,0,'H','2526','','',515,0,0,'2025-10-11',458,428,0,0,406,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',482,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-11 11:22:55','','0000-00-00 00:00:00',0),(516,0,0,'H','2526','','',516,0,0,'2025-10-11',459,429,0,0,407,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',483,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 11:24:05','','0000-00-00 00:00:00',0),(517,0,0,'H','2526','','',517,0,0,'2025-10-11',460,430,0,0,408,'B',300.00,0.00,'7','HDFC','','23571','','0000-00-00','scan','',484,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-11 11:26:19','','0000-00-00 00:00:00',0),(518,0,0,'H','2526','','',518,0,0,'2025-10-11',461,431,0,0,409,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',485,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-11 11:26:29','','0000-00-00 00:00:00',0),(519,0,0,'H','2526','','',519,0,0,'2025-10-11',462,22,0,0,21,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',486,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 11:28:27','','0000-00-00 00:00:00',0),(520,0,0,'H','2526','','',520,0,0,'2025-10-11',463,432,0,0,410,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',487,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 11:31:14','','0000-00-00 00:00:00',0),(521,0,0,'H','2526','','',521,0,0,'2025-10-11',454,425,0,0,403,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',488,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 11:37:46','','0000-00-00 00:00:00',0),(522,0,0,'H','2526','','',522,0,0,'2025-10-11',466,435,0,0,413,'B',400.00,0.00,'7','icici','','54144','','0000-00-00','scan     ','',489,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-11 11:39:03','','0000-00-00 00:00:00',0),(523,0,0,'H','2526','','',523,0,0,'2025-10-11',465,434,0,0,412,'B',750.00,0.00,'7','icici','','54144','','0000-00-00','scan  ','',490,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-11 11:39:17','','0000-00-00 00:00:00',0),(524,0,0,'H','2526','','',524,0,0,'2025-10-11',467,436,0,0,414,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',491,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-11 11:40:28','','0000-00-00 00:00:00',0),(525,0,0,'H','2526','','',525,0,0,'2025-10-11',444,416,0,0,394,'B',500.00,0.00,'7','SBI','','55707','','0000-00-00','SCAN','',492,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 11:40:29','','0000-00-00 00:00:00',0),(526,0,0,'H','2526','','',526,0,0,'2025-10-11',468,437,0,0,415,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',493,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 11:41:32','','0000-00-00 00:00:00',0),(527,0,0,'H','2526','','',527,0,0,'2025-10-11',469,438,0,0,416,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',494,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 11:45:19','','0000-00-00 00:00:00',0),(528,0,0,'H','2526','','',528,0,0,'2025-10-11',471,439,0,0,417,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',495,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 11:47:33','','0000-00-00 00:00:00',0),(529,0,0,'H','2526','','P',529,0,0,'2025-10-11',470,142,0,34,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',1149,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-11 11:48:00','vishal','2025-10-16 12:18:19',0),(530,0,0,'H','2526','','',530,0,0,'2025-10-11',472,440,0,0,418,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',496,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 11:48:36','','0000-00-00 00:00:00',0),(531,0,0,'H','2526','','',531,0,0,'2025-10-11',473,441,0,0,419,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',497,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 11:52:59','','0000-00-00 00:00:00',0),(532,0,0,'H','2526','','',532,0,0,'2025-10-11',474,442,0,0,420,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',498,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 11:57:19','','0000-00-00 00:00:00',0),(533,0,0,'H','2526','','',533,0,0,'2025-10-11',467,436,0,0,414,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',499,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-11 12:01:59','','0000-00-00 00:00:00',0),(534,0,0,'H','2526','','',534,0,0,'2025-10-11',478,443,0,0,421,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',500,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 12:05:55','','0000-00-00 00:00:00',0),(535,0,0,'H','2526','','P',535,0,0,'2025-10-11',477,22,0,35,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',772,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-11 12:06:40','riya','2025-10-13 22:58:16',0),(536,0,0,'H','2526','','',536,0,0,'2025-10-11',453,424,0,0,402,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',501,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 12:07:22','','0000-00-00 00:00:00',0),(537,0,0,'H','2526','','',537,0,0,'2025-10-11',476,391,0,0,373,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',502,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 12:11:27','','0000-00-00 00:00:00',0),(538,0,0,'H','2526','','',538,0,0,'2025-10-11',479,444,0,0,422,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',503,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-11 12:12:59','','0000-00-00 00:00:00',0),(539,0,0,'H','2526','','',539,0,0,'2025-10-11',455,426,0,0,404,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',504,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 12:13:57','','0000-00-00 00:00:00',0),(540,0,0,'H','2526','','',540,0,0,'2025-10-11',480,445,0,0,423,'B',400.00,0.00,'7','UNION BANK','','100016','','0000-00-00','scan ','',505,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 12:15:17','','0000-00-00 00:00:00',0),(541,0,0,'H','2526','','',541,0,0,'2025-10-11',481,446,0,0,424,'B',500.00,0.00,'7','BOB','','85425','','0000-00-00','SCAN','',507,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 12:21:03','','0000-00-00 00:00:00',0),(542,0,0,'H','2526','','',542,0,0,'2025-10-11',482,447,0,0,425,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',508,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-11 12:22:51','','0000-00-00 00:00:00',0),(543,0,0,'H','2526','','',543,0,0,'2025-10-11',452,423,0,0,401,'D',-900.00,0.00,'CSH','','','','','2025-10-11','','',510,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 12:40:07','','0000-00-00 00:00:00',0),(544,0,0,'H','2526','','',544,0,0,'2025-10-11',483,448,0,0,426,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',511,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 12:43:07','','0000-00-00 00:00:00',0),(545,0,0,'H','2526','','',545,0,0,'2025-10-11',484,449,0,0,427,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',512,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 12:51:21','','0000-00-00 00:00:00',0),(546,0,0,'H','2526','','P',546,0,0,'2025-10-11',56,56,0,7,0,'A',5700.00,0.00,'7','UNION BANK','','413734696468','','0000-00-00','','',516,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-11 12:54:37','vishal','2025-10-11 13:07:37',0),(547,0,0,'H','2526','','',547,0,0,'2025-10-11',485,450,0,0,428,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',513,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-11 12:57:46','','0000-00-00 00:00:00',0),(548,0,0,'H','2526','','',548,0,0,'2025-10-11',457,257,0,0,242,'D',-400.00,0.00,'CSH','','','','','2025-10-11','','',514,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-11 13:02:00','','0000-00-00 00:00:00',0),(549,0,0,'H','2526','','',549,0,0,'2025-10-11',476,391,0,0,373,'B',350.00,0.00,'CSH','','','','','0000-00-00','','',515,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 13:03:58','','0000-00-00 00:00:00',0),(550,0,0,'H','2526','','',550,0,0,'2025-10-11',486,451,0,0,429,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',517,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-11 13:11:31','','0000-00-00 00:00:00',0),(551,0,0,'H','2526','','P',551,0,0,'2025-10-11',193,161,0,15,0,'A',7100.00,0.00,'7','AXIS BANK','','112484116525','','0000-00-00','','',540,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-11 13:14:09','vishal','2025-10-11 21:09:47',0),(552,0,0,'H','2526','','P',552,0,0,'2025-10-11',487,71,0,36,0,'A',7000.00,0.00,'7','KOTAK BANK','','528478527479','','0000-00-00','','',984,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-11 14:14:46','vishal','2025-10-15 12:13:31',0),(553,0,0,'H','2526','','P',553,0,0,'2025-10-11',488,429,0,37,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',552,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-11 14:23:28','vishal','2025-10-12 20:24:44',0),(554,0,0,'H','2526','','P',554,0,0,'2025-10-11',489,452,0,38,0,'A',10000.00,0.00,'CRD','SBI BANK','','9405','','0000-00-00','','',1756,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-11 17:40:08','riya','2025-10-25 21:05:07',0),(555,0,0,'H','2526','','',555,0,0,'2025-10-11',491,454,0,0,431,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',519,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 17:51:48','','0000-00-00 00:00:00',0),(556,0,0,'H','2526','','',556,0,0,'2025-10-11',492,455,0,0,432,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',520,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-11 17:54:05','','0000-00-00 00:00:00',0),(557,0,0,'H','2526','','',557,0,0,'2025-10-11',493,456,0,0,433,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',521,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-11 18:10:33','','0000-00-00 00:00:00',0),(558,0,0,'H','2526','','',558,0,0,'2025-10-11',494,129,0,0,118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',523,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-11 18:15:02','','0000-00-00 00:00:00',0),(559,0,0,'H','2526','','',559,0,0,'2025-10-11',495,457,0,0,434,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',524,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-11 18:16:36','','0000-00-00 00:00:00',0),(560,0,0,'H','2526','','',560,0,0,'2025-10-11',497,458,0,0,435,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',525,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-11 18:21:36','','0000-00-00 00:00:00',0),(561,0,0,'H','2526','','',561,0,0,'2025-10-11',498,459,0,0,436,'B',500.00,0.00,'7','hdfc','','88501','','0000-00-00','scan ','',527,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 18:25:27','','0000-00-00 00:00:00',0),(562,0,0,'H','2526','','',562,0,0,'2025-10-11',493,456,0,0,433,'D',-500.00,0.00,'CSH','','','','','2025-10-11','','',526,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-11 18:26:39','','0000-00-00 00:00:00',0),(563,0,0,'H','2526','','',563,0,0,'2025-10-11',501,151,0,0,140,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',528,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-11 18:41:57','','0000-00-00 00:00:00',0),(564,0,0,'H','2526','','',564,0,0,'2025-10-11',496,64,0,0,54,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',529,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 18:47:38','','0000-00-00 00:00:00',0),(565,0,0,'H','2526','','',565,0,0,'2025-10-11',503,319,0,0,303,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',530,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-11 18:48:23','','0000-00-00 00:00:00',0),(566,0,0,'H','2526','','P',566,0,0,'2025-10-11',150,16,0,12,0,'A',1600.00,0.00,'CSH','','','','','0000-00-00','','',532,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-11 19:09:38','vishal','2025-10-11 19:09:58',0),(567,0,0,'H','2526','','P',567,0,0,'2025-10-11',505,464,0,39,0,'A',7000.00,0.00,'7','FEDERAL BANK','','565073435263','','0000-00-00','','',773,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-11 19:26:14','riya','2025-10-13 23:03:17',0),(568,0,0,'H','2526','','',568,0,0,'2025-10-11',490,453,0,0,430,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',533,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-11 19:28:37','','0000-00-00 00:00:00',0),(569,0,0,'H','2526','','',569,0,0,'2025-10-11',492,455,0,0,432,'D',-500.00,0.00,'CSH','','','','','2025-10-11','','',534,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 19:32:25','','0000-00-00 00:00:00',0),(570,0,0,'H','2526','','P',570,0,0,'2025-10-11',413,276,0,24,0,'A',13000.00,0.00,'CSH','','','','','0000-00-00','','',657,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-11 19:42:35','vishal','2025-10-13 13:27:41',0),(571,0,0,'H','2526','','',571,0,0,'2025-10-11',502,462,0,0,439,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',535,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-11 19:48:42','','0000-00-00 00:00:00',0),(572,0,0,'H','2526','','',572,0,0,'2025-10-11',193,161,0,15,150,'D',-1900.00,0.00,'CSH','','','','','0000-00-00','','',540,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-11 21:09:47','','0000-00-00 00:00:00',0),(573,0,0,'H','2526','','P',573,0,0,'2025-10-11',506,465,0,40,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',765,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-11 22:25:08','riya','2025-10-13 20:15:11',0),(574,0,0,'H','2526','','',574,0,0,'2025-10-12',507,158,0,0,147,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',542,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-12 09:19:28','','0000-00-00 00:00:00',0),(575,0,0,'H','2526','','',575,0,0,'2025-10-12',508,466,0,0,441,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',543,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-12 09:21:41','','0000-00-00 00:00:00',0),(576,0,0,'H','2526','','P',576,0,0,'2025-10-12',509,467,0,41,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',828,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-12 11:12:12','riya','2025-10-14 12:16:38',0),(577,0,0,'H','2526','','P',577,0,0,'2025-10-12',417,394,0,28,0,'A',12500.00,0.00,'CSH','','','','','0000-00-00','','',547,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-12 12:03:20','vishal','2025-10-12 12:03:57',0),(578,0,0,'H','2526','','P',578,0,0,'2025-10-12',426,234,0,30,0,'A',6500.00,0.00,'7','OTHER BANK','','037326040310017','','0000-00-00','','',551,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-12 13:40:44','vishal','2025-10-12 13:42:18',0),(579,0,0,'H','2526','','P',579,0,0,'2025-10-12',414,392,0,25,0,'A',35000.00,0.00,'CRD','ICICI BANK','','7000','','0000-00-00','','',2614,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-12 17:28:08','vishal','2025-11-01 15:09:18',0),(580,0,0,'H','2526','','P',580,0,0,'2025-10-12',246,239,0,18,0,'A',40000.00,0.00,'CSH','','','','','0000-00-00','','',1483,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-12 18:23:56','riya','2025-10-18 13:55:10',0),(581,0,0,'H','2526','','P',581,0,0,'2025-10-12',470,142,0,34,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',1149,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-12 19:47:10','vishal','2025-10-16 12:18:19',0),(582,0,0,'H','2526','','P',582,0,0,'2025-10-12',489,452,0,38,0,'A',25000.00,0.00,'CRD','HDFC BANK','','528514054551','','0000-00-00','','',1756,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-12 19:50:09','riya','2025-10-25 21:05:07',0),(583,0,0,'H','2526','','P',583,0,0,'2025-10-12',415,393,0,26,0,'A',17000.00,0.00,'7','NAGRIK BANK','','358623922135','','0000-00-00','','',637,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-12 20:05:11','reception','2025-10-13 12:12:12',0),(584,0,0,'H','2526','','',584,0,0,'2025-10-12',488,429,0,37,407,'D',-800.00,0.00,'CSH','','','','','0000-00-00','','',552,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-12 20:24:44','','0000-00-00 00:00:00',0),(585,0,0,'H','2526','','P',585,0,0,'2025-10-12',406,385,0,22,0,'A',40000.00,0.00,'7','SBI BANK','','565164344885','','0000-00-00','','',853,'N','P','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-12 21:24:23','riya','2025-10-14 14:00:19',0),(586,0,0,'H','2526','','P',586,0,0,'2025-10-12',510,44,0,42,0,'A',4700.00,0.00,'7','AXIS BANK','','528541971975','','0000-00-00','','',554,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-12 21:40:36','vishal','2025-10-12 21:40:50',0),(587,0,0,'H','2526','','P',587,0,0,'2025-10-06',48,48,0,5,0,'A',6000.00,0.00,'7','OTHER BANK','','123456789','','0000-00-00','','',855,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-12 21:45:48','riya','2025-10-14 15:27:37',0),(588,0,0,'H','2526','','P',588,0,0,'2025-10-12',48,48,0,5,0,'A',5000.00,0.00,'7','OTHER BANK','','123456789','','0000-00-00','','',0,'N','P','Y',0,'N','vishal','2025-10-13 16:31:28','vishal','2025-10-12 21:48:27','vishal','2025-10-13 16:31:28',0),(589,0,0,'H','2526','','',589,0,0,'2025-10-13',511,468,0,0,442,'B',1900.00,0.00,'CSH','','','','','0000-00-00','','',555,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 09:13:43','','0000-00-00 00:00:00',0),(590,0,0,'H','2526','','',590,0,0,'2025-10-13',512,469,0,0,443,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',556,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 09:15:08','','0000-00-00 00:00:00',0),(591,0,0,'H','2526','','',591,0,0,'2025-10-13',514,471,0,0,445,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',557,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 09:19:24','','0000-00-00 00:00:00',0),(592,0,0,'H','2526','','',592,0,0,'2025-10-13',515,472,0,0,446,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',558,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 09:19:40','','0000-00-00 00:00:00',0),(593,0,0,'H','2526','','',593,0,0,'2025-10-13',516,151,0,0,140,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',559,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 09:20:47','','0000-00-00 00:00:00',0),(594,0,0,'H','2526','','',594,0,0,'2025-10-13',517,473,0,0,447,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',560,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 09:21:07','','0000-00-00 00:00:00',0),(595,0,0,'H','2526','','',595,0,0,'2025-10-13',518,319,0,0,303,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',561,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 09:22:09','','0000-00-00 00:00:00',0),(596,0,0,'H','2526','','',596,0,0,'2025-10-13',519,129,0,0,118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',562,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 09:22:54','','0000-00-00 00:00:00',0),(597,0,0,'H','2526','','',597,0,0,'2025-10-13',520,474,0,0,448,'B',800.00,0.00,'7','nagrik bank','','87830','','0000-00-00','scan ','',563,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 09:24:39','','0000-00-00 00:00:00',0),(598,0,0,'H','2526','','',598,0,0,'2025-10-13',522,476,0,0,450,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',564,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 09:24:57','','0000-00-00 00:00:00',0),(599,0,0,'H','2526','','',599,0,0,'2025-10-13',521,475,0,0,449,'B',900.00,0.00,'7','bob','','14200','','0000-00-00','scan  ','',565,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 09:25:42','','0000-00-00 00:00:00',0),(600,0,0,'H','2526','','',600,0,0,'2025-10-13',523,477,0,0,451,'B',1350.00,0.00,'CSH','','','','','0000-00-00','','',566,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 09:26:55','','0000-00-00 00:00:00',0),(601,0,0,'H','2526','','',601,0,0,'2025-10-13',524,478,0,0,452,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',567,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 09:28:41','','0000-00-00 00:00:00',0),(602,0,0,'H','2526','','',602,0,0,'2025-10-13',525,479,0,0,453,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',568,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 09:29:49','','0000-00-00 00:00:00',0),(603,0,0,'H','2526','','',603,0,0,'2025-10-13',526,480,0,0,454,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',569,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 09:38:43','','0000-00-00 00:00:00',0),(604,0,0,'H','2526','','P',604,0,0,'2025-10-13',527,387,0,43,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',687,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-13 09:39:52','vishal','2025-10-13 17:17:34',0),(605,0,0,'H','2526','','',605,0,0,'2025-10-13',513,470,0,0,444,'B',2950.00,0.00,'7','SBI BANK','','24302','','0000-00-00','scan ','',570,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 09:44:51','','0000-00-00 00:00:00',0),(606,0,0,'H','2526','','',606,0,0,'2025-10-13',530,483,0,0,457,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',571,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 09:55:23','','0000-00-00 00:00:00',0),(607,0,0,'H','2526','','',607,0,0,'2025-10-13',529,482,0,0,456,'B',700.00,0.00,'7','ICICI','','59566','','0000-00-00','SCAN','',572,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 09:55:59','','0000-00-00 00:00:00',0),(608,0,0,'H','2526','','',608,0,0,'2025-10-13',531,484,0,0,458,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',573,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 09:58:06','','0000-00-00 00:00:00',0),(609,0,0,'H','2526','','',609,0,0,'2025-10-13',532,485,0,0,459,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',574,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 10:01:32','','0000-00-00 00:00:00',0),(610,0,0,'H','2526','','',610,0,0,'2025-10-13',533,486,0,0,460,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',575,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 10:06:20','','0000-00-00 00:00:00',0),(611,0,0,'H','2526','','',611,0,0,'2025-10-13',409,388,0,23,0,'B',3000.00,0.00,'7','other bank','','4288','','0000-00-00','','',576,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-13 10:09:12','','0000-00-00 00:00:00',0),(612,0,0,'H','2526','','',612,0,0,'2025-10-13',534,487,0,0,461,'B',900.00,0.00,'7','AXIS BANK','','88820','','0000-00-00','SCAN','',577,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 10:11:30','','0000-00-00 00:00:00',0),(613,0,0,'H','2526','','',613,0,0,'2025-10-13',536,489,0,0,463,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',578,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 10:14:11','','0000-00-00 00:00:00',0),(614,0,0,'H','2526','','',614,0,0,'2025-10-13',535,488,0,0,462,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',579,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 10:14:17','','0000-00-00 00:00:00',0),(615,0,0,'H','2526','','',615,0,0,'2025-10-13',537,490,0,0,464,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',580,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 10:15:07','','0000-00-00 00:00:00',0),(616,0,0,'H','2526','','',616,0,0,'2025-10-13',538,491,0,0,465,'B',500.00,0.00,'7','BGGB','','04614','','0000-00-00','SCAN','',581,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 10:16:44','','0000-00-00 00:00:00',0),(617,0,0,'H','2526','','',617,0,0,'2025-10-13',539,492,0,0,466,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',582,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 10:16:56','','0000-00-00 00:00:00',0),(618,0,0,'H','2526','','',618,0,0,'2025-10-13',540,493,0,0,467,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',583,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 10:17:14','','0000-00-00 00:00:00',0),(619,0,0,'H','2526','','P',619,0,0,'2025-10-13',416,292,0,27,0,'A',9000.00,0.00,'CSH','','','','','0000-00-00','','',917,'N','P','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 10:19:09','riya','2025-10-14 19:23:11',0),(620,0,0,'H','2526','','',620,0,0,'2025-10-13',530,483,0,0,457,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',584,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 10:19:22','','0000-00-00 00:00:00',0),(621,0,0,'H','2526','','',621,0,0,'2025-10-13',541,158,0,0,147,'B',300.00,0.00,'7','BANK OF BARODA','','11036','','0000-00-00','SCAN','',585,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 10:20:36','','0000-00-00 00:00:00',0),(622,0,0,'H','2526','','',622,0,0,'2025-10-13',542,494,0,0,468,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',586,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 10:28:08','','0000-00-00 00:00:00',0),(623,0,0,'H','2526','','',623,0,0,'2025-10-13',543,495,0,0,469,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',587,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 10:28:35','','0000-00-00 00:00:00',0),(624,0,0,'H','2526','','',624,0,0,'2025-10-13',544,496,0,0,470,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',588,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 10:30:50','','0000-00-00 00:00:00',0),(625,0,0,'H','2526','','',625,0,0,'2025-10-13',545,497,0,0,471,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',589,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 10:33:05','','0000-00-00 00:00:00',0),(626,0,0,'H','2526','','',626,0,0,'2025-10-13',546,498,0,0,472,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',590,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 10:33:41','','0000-00-00 00:00:00',0),(627,0,0,'H','2526','','',627,0,0,'2025-10-13',547,499,0,0,473,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',591,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 10:39:14','','0000-00-00 00:00:00',0),(628,0,0,'H','2526','','',628,0,0,'2025-10-13',514,471,0,0,445,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',592,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 10:44:13','','0000-00-00 00:00:00',0),(629,0,0,'H','2526','','',629,0,0,'2025-10-13',515,472,0,0,446,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',593,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 10:50:01','','0000-00-00 00:00:00',0),(630,0,0,'H','2526','','',630,0,0,'2025-10-13',549,500,0,0,474,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',594,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 10:52:24','','0000-00-00 00:00:00',0),(631,0,0,'H','2526','','',631,0,0,'2025-10-13',553,504,0,0,478,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',595,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 11:01:29','','0000-00-00 00:00:00',0),(632,0,0,'H','2526','','',632,0,0,'2025-10-13',554,505,0,0,479,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',596,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 11:04:29','','0000-00-00 00:00:00',0),(633,0,0,'H','2526','','',633,0,0,'2025-10-13',550,501,0,0,475,'B',500.00,0.00,'7','SBI','','47420','','0000-00-00','SCAN','',597,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 11:09:30','','0000-00-00 00:00:00',0),(634,0,0,'H','2526','','',634,0,0,'2025-10-13',554,505,0,0,479,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',598,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 11:09:45','','0000-00-00 00:00:00',0),(635,0,0,'H','2526','','',635,0,0,'2025-10-13',549,500,0,0,474,'B',350.00,0.00,'CSH','','','','','0000-00-00','','',599,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 11:10:55','','0000-00-00 00:00:00',0),(636,0,0,'H','2526','','P',636,0,0,'2025-10-11',66,66,0,11,0,'A',17000.00,0.00,'CSH','','','','','0000-00-00','','',603,'N','P','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 11:11:42','reception','2025-10-13 11:17:25',0),(637,0,0,'H','2526','','',637,0,0,'2025-10-13',556,507,0,0,481,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',600,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 11:14:07','','0000-00-00 00:00:00',0),(638,0,0,'H','2526','','',638,0,0,'2025-10-13',558,509,0,0,483,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',601,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 11:15:53','','0000-00-00 00:00:00',0),(639,0,0,'H','2526','','',639,0,0,'2025-10-13',557,508,0,0,482,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',602,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 11:16:05','','0000-00-00 00:00:00',0),(640,0,0,'H','2526','','',640,0,0,'2025-10-13',544,496,0,0,470,'B',5800.00,0.00,'CSH','','','','','0000-00-00','','',604,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 11:19:27','','0000-00-00 00:00:00',0),(641,0,0,'H','2526','','',641,0,0,'2025-10-13',555,506,0,0,480,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',605,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 11:19:52','','0000-00-00 00:00:00',0),(642,0,0,'H','2526','','',642,0,0,'2025-10-13',561,510,0,0,486,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',606,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 11:22:09','','0000-00-00 00:00:00',0),(643,0,0,'H','2526','','',643,0,0,'2025-10-13',560,511,0,0,485,'B',500.00,0.00,'7','axis bank','','29664','','0000-00-00','scan  ','',607,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 11:23:49','','0000-00-00 00:00:00',0),(644,0,0,'H','2526','','',644,0,0,'2025-10-13',563,512,0,0,487,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',608,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 11:26:06','','0000-00-00 00:00:00',0),(645,0,0,'H','2526','','',645,0,0,'2025-10-13',557,508,0,0,482,'D',-500.00,0.00,'CSH','','','','','2025-10-13','','',609,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 11:28:57','','0000-00-00 00:00:00',0),(646,0,0,'H','2526','','',646,0,0,'2025-10-13',566,514,0,0,489,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',610,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 11:29:39','','0000-00-00 00:00:00',0),(647,0,0,'H','2526','','',647,0,0,'2025-10-13',565,513,0,0,488,'B',500.00,0.00,'7','AXIS','','29843','','0000-00-00','SCAN','',611,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 11:30:33','','0000-00-00 00:00:00',0),(648,0,0,'H','2526','','',648,0,0,'2025-10-13',564,78,0,0,67,'B',400.00,0.00,'7','INDUSLAND BANK','','909062','','0000-00-00','scan ','',612,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 11:32:04','','0000-00-00 00:00:00',0),(649,0,0,'H','2526','','',649,0,0,'2025-10-13',567,515,0,0,490,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',613,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 11:33:36','','0000-00-00 00:00:00',0),(650,0,0,'H','2526','','',650,0,0,'2025-10-13',568,516,0,0,491,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',614,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 11:33:50','','0000-00-00 00:00:00',0),(651,0,0,'H','2526','','',651,0,0,'2025-10-13',569,517,0,0,492,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',615,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 11:34:35','','0000-00-00 00:00:00',0),(652,0,0,'H','2526','','',652,0,0,'2025-10-13',563,512,0,0,487,'B',350.00,0.00,'CSH','','','','','0000-00-00','','',616,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 11:36:43','','0000-00-00 00:00:00',0),(653,0,0,'H','2526','','P',653,0,0,'2025-10-13',506,465,0,40,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',765,'N','P','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 11:39:54','riya','2025-10-13 20:15:11',0),(654,0,0,'H','2526','','',654,0,0,'2025-10-13',534,487,0,0,461,'B',4000.00,0.00,'7','AXIS','','51472','','0000-00-00','SCAN','',617,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 11:40:02','','0000-00-00 00:00:00',0),(655,0,0,'H','2526','','',655,0,0,'2025-10-13',571,519,0,0,494,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',618,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 11:40:10','','0000-00-00 00:00:00',0),(656,0,0,'H','2526','','',656,0,0,'2025-10-13',572,520,0,0,495,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',619,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 11:45:11','','0000-00-00 00:00:00',0),(657,0,0,'H','2526','','',657,0,0,'2025-10-13',573,521,0,0,496,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',620,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 11:46:00','','0000-00-00 00:00:00',0),(658,0,0,'H','2526','','',658,0,0,'2025-10-13',567,515,0,0,490,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',621,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 11:47:47','','0000-00-00 00:00:00',0),(659,0,0,'H','2526','','',659,0,0,'2025-10-13',576,523,0,0,498,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',622,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 11:48:05','','0000-00-00 00:00:00',0),(660,0,0,'H','2526','','',660,0,0,'2025-10-13',575,522,0,0,497,'B',400.00,0.00,'7','SBI BANK','','83897','','0000-00-00','scan ','',623,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 11:49:11','','0000-00-00 00:00:00',0),(661,0,0,'H','2526','','P',661,0,0,'2025-10-13',574,507,0,44,0,'A',7000.00,0.00,'7','idbi bank','','112579117077','','0000-00-00','','',1095,'N','P','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 11:50:52','vishal','2025-10-16 09:55:58',0),(662,0,0,'H','2526','','',662,0,0,'2025-10-13',577,524,0,0,499,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',624,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 11:51:16','','0000-00-00 00:00:00',0),(663,0,0,'H','2526','','',663,0,0,'2025-10-13',578,525,0,0,500,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',625,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 11:54:18','','0000-00-00 00:00:00',0),(664,0,0,'H','2526','','',664,0,0,'2025-10-13',579,526,0,0,501,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',626,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 11:54:48','','0000-00-00 00:00:00',0),(665,0,0,'H','2526','','',665,0,0,'2025-10-13',580,527,0,0,502,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',627,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 11:55:21','','0000-00-00 00:00:00',0),(666,0,0,'H','2526','','',666,0,0,'2025-10-13',581,528,0,0,503,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',628,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 11:55:58','','0000-00-00 00:00:00',0),(667,0,0,'H','2526','','',667,0,0,'2025-10-13',528,481,0,0,455,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',629,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 11:56:35','','0000-00-00 00:00:00',0),(668,0,0,'H','2526','','',668,0,0,'2025-10-13',570,518,0,0,493,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',631,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 11:59:41','','0000-00-00 00:00:00',0),(669,0,0,'H','2526','','',669,0,0,'2025-10-13',521,475,0,0,449,'B',5400.00,0.00,'CSH','','','','','0000-00-00','','',632,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 12:01:25','','0000-00-00 00:00:00',0),(670,0,0,'H','2526','','',670,0,0,'2025-10-13',569,517,0,0,492,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',633,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 12:02:05','','0000-00-00 00:00:00',0),(671,0,0,'H','2526','','',671,0,0,'2025-10-13',582,529,0,0,504,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',634,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 12:07:50','','0000-00-00 00:00:00',0),(672,0,0,'H','2526','','',672,0,0,'2025-10-13',583,530,0,0,505,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',635,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 12:09:16','','0000-00-00 00:00:00',0),(673,0,0,'H','2526','','',673,0,0,'2025-10-13',543,495,0,0,469,'B',4000.00,0.00,'7','BOI','','60127','','0000-00-00','SCAN','',636,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 12:09:49','','0000-00-00 00:00:00',0),(674,0,0,'H','2526','','P',674,0,0,'2025-10-13',415,393,0,26,0,'A',1500.00,0.00,'7','NAGRIK BANK','','231602316685','','0000-00-00','','',637,'N','P','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 12:11:56','reception','2025-10-13 12:12:12',0),(675,0,0,'H','2526','','',675,0,0,'2025-10-13',581,528,0,0,503,'D',-800.00,0.00,'CSH','','','','','2025-10-13','','',638,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 12:13:17','','0000-00-00 00:00:00',0),(676,0,0,'H','2526','','',676,0,0,'2025-10-13',561,510,0,0,486,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',639,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 12:16:37','','0000-00-00 00:00:00',0),(677,0,0,'H','2526','','',677,0,0,'2025-10-13',584,531,0,0,506,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',640,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 12:18:26','','0000-00-00 00:00:00',0),(678,0,0,'H','2526','','',678,0,0,'2025-10-13',585,532,0,0,507,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',641,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 12:19:43','','0000-00-00 00:00:00',0),(679,0,0,'H','2526','','',679,0,0,'2025-10-13',525,479,0,0,453,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',642,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 12:20:01','','0000-00-00 00:00:00',0),(680,0,0,'H','2526','','',680,0,0,'2025-10-13',586,533,0,0,508,'B',400.00,0.00,'7','hdfc','','24540','','0000-00-00','scan ','',643,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 12:22:49','','0000-00-00 00:00:00',0),(681,0,0,'H','2526','','',681,0,0,'2025-10-13',587,534,0,0,509,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',644,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 12:23:41','','0000-00-00 00:00:00',0),(682,0,0,'H','2526','','',682,0,0,'2025-10-13',588,535,0,0,510,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',645,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 12:25:59','','0000-00-00 00:00:00',0),(683,0,0,'H','2526','','',683,0,0,'2025-10-13',589,536,0,0,511,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',646,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 12:29:48','','0000-00-00 00:00:00',0),(684,0,0,'H','2526','','',684,0,0,'2025-10-13',570,518,0,0,493,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',647,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 12:36:31','','0000-00-00 00:00:00',0),(685,0,0,'H','2526','','',685,0,0,'2025-10-13',572,520,0,0,495,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',648,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 12:42:02','','0000-00-00 00:00:00',0),(686,0,0,'H','2526','','',686,0,0,'2025-10-13',548,463,0,0,440,'B',2000.00,0.00,'7','bob','','29784','','0000-00-00','scan     ','',649,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 12:43:42','','0000-00-00 00:00:00',0),(687,0,0,'H','2526','','',687,0,0,'2025-10-13',552,503,0,0,477,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',650,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 12:43:58','','0000-00-00 00:00:00',0),(688,0,0,'H','2526','','',688,0,0,'2025-10-13',591,538,0,0,513,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',651,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 12:45:16','','0000-00-00 00:00:00',0),(689,0,0,'H','2526','','',689,0,0,'2025-10-13',593,540,0,0,515,'B',400.00,0.00,'7','bob','','81448','','0000-00-00','scan     ','',652,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 13:04:14','','0000-00-00 00:00:00',0),(690,0,0,'H','2526','','',690,0,0,'2025-10-13',594,541,0,0,516,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',653,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 13:07:14','','0000-00-00 00:00:00',0),(691,0,0,'H','2526','','',691,0,0,'2025-10-13',592,539,0,0,514,'B',5000.00,0.00,'CRD','HDFC BANK','','3156','','0000-00-00','CARD','',654,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 13:08:42','','0000-00-00 00:00:00',0),(692,0,0,'H','2526','','P',692,0,0,'2025-10-13',284,274,0,21,0,'A',50000.00,0.00,'CSH','','','','','0000-00-00','','',1481,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-13 13:20:12','riya','2025-10-18 13:42:53',0),(693,0,0,'H','2526','','P',693,0,0,'2025-10-13',413,276,0,24,0,'A',5750.00,0.00,'CSH','','','','','0000-00-00','','',657,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-13 13:26:39','vishal','2025-10-13 13:27:41',0),(694,0,0,'H','2526','','P',694,0,0,'2025-10-07',63,63,0,10,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',665,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-13 13:36:01','vishal','2025-10-13 14:18:29',0),(695,0,0,'H','2526','','',695,0,0,'2025-10-13',585,532,0,0,507,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',658,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 13:36:39','','0000-00-00 00:00:00',0),(696,0,0,'H','2526','','',696,0,0,'2025-10-13',595,542,0,0,517,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',659,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 13:38:07','','0000-00-00 00:00:00',0),(697,0,0,'H','2526','','',697,0,0,'2025-10-13',568,516,0,0,491,'B',250.00,0.00,'7','SBI','','32249','','0000-00-00','scan','',660,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 13:43:33','','0000-00-00 00:00:00',0),(698,0,0,'H','2526','','',698,0,0,'2025-10-13',595,542,0,0,517,'D',-750.00,0.00,'CSH','','','','','2025-10-13','','',661,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 14:02:53','','0000-00-00 00:00:00',0),(699,0,0,'H','2526','','',699,0,0,'2025-10-13',595,542,0,0,517,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',662,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 14:05:27','','0000-00-00 00:00:00',0),(700,0,0,'H','2526','','P',700,0,0,'2025-10-13',63,63,0,10,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','Y',0,'N','vishal','2025-10-13 14:14:46','vishal','2025-10-13 14:06:55','vishal','2025-10-13 14:14:46',0),(701,0,0,'H','2526','','',701,0,0,'2025-10-13',546,498,0,0,472,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',663,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 14:08:06','','0000-00-00 00:00:00',0),(702,0,0,'H','2526','','P',702,0,0,'2025-10-13',63,63,0,10,0,'A',-25000.00,0.00,'CSH','','','','','0000-00-00','','by mistake cash receipt generate',0,'N','P','Y',700,'N','','0000-00-00 00:00:00','vishal','2025-10-13 14:14:46','vishal','2025-10-13 14:14:46',0),(703,0,0,'H','2526','','P',703,0,0,'2025-10-13',63,63,0,10,0,'A',25300.00,0.00,'7','BOB BANK','','565206364258','','0000-00-00','','',665,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-13 14:16:51','vishal','2025-10-13 14:18:29',0),(704,0,0,'H','2526','','',704,0,0,'2025-10-13',594,541,0,0,516,'D',-800.00,0.00,'CSH','','','','','2025-10-13','','',664,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 14:17:59','','0000-00-00 00:00:00',0),(705,0,0,'H','2526','','P',705,0,0,'2025-10-13',63,63,0,10,0,'A',1500.00,0.00,'CSH','','','','','0000-00-00','','',665,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-13 14:18:14','vishal','2025-10-13 14:18:29',0),(706,0,0,'H','2526','','',706,0,0,'2025-10-13',594,541,0,0,516,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',666,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 14:19:18','','0000-00-00 00:00:00',0),(707,0,0,'H','2526','','',707,0,0,'2025-10-13',552,503,0,0,477,'D',-900.00,0.00,'CSH','','','','','2025-10-13','','',667,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 14:24:06','','0000-00-00 00:00:00',0),(708,0,0,'H','2526','','',708,0,0,'2025-10-13',552,503,0,0,477,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',668,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 14:24:47','','0000-00-00 00:00:00',0),(709,0,0,'H','2526','','',709,0,0,'2025-10-13',589,536,0,0,511,'B',3600.00,0.00,'7','IDBI','','90620','','0000-00-00','SCAN','',669,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 15:15:15','','0000-00-00 00:00:00',0),(710,0,0,'H','2526','','',710,0,0,'2025-10-13',591,538,0,0,513,'D',-500.00,0.00,'CSH','','','','','2025-10-13','','',670,'N','N','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 15:28:25','','0000-00-00 00:00:00',0),(711,0,0,'H','2526','','',711,0,0,'2025-10-13',591,538,0,0,513,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',671,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 15:29:03','','0000-00-00 00:00:00',0),(712,0,0,'H','2526','','',712,0,0,'2025-10-13',597,544,0,0,519,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',672,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 15:35:35','','0000-00-00 00:00:00',0),(713,0,0,'H','2526','','P',713,0,0,'2025-10-13',48,48,0,5,0,'A',-5000.00,0.00,'7','OTHER BANK','','123456789','','0000-00-00','','08 TARIKH NA CHHE',0,'N','P','Y',588,'N','','0000-00-00 00:00:00','vishal','2025-10-13 16:31:28','vishal','2025-10-13 16:31:28',0),(714,0,0,'H','2526','','P',714,0,0,'2025-10-08',48,48,0,5,0,'A',5000.00,0.00,'7','OTHER BANK','','123456789','','0000-00-00','','',855,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-13 16:32:39','riya','2025-10-14 15:27:37',0),(715,0,0,'H','2526','','',715,0,0,'2025-10-13',599,546,0,0,520,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',673,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 16:33:25','','0000-00-00 00:00:00',0),(716,0,0,'H','2526','','P',716,0,0,'2025-10-09',48,48,0,5,0,'A',8000.00,0.00,'7','OTHER BANK','','1234567898','','0000-00-00','','',855,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-13 16:34:01','riya','2025-10-14 15:27:37',0),(717,0,0,'H','2526','','',717,0,0,'2025-10-13',600,547,0,0,521,'B',900.00,0.00,'7','ICICI','','08483','','0000-00-00','SCAN','',674,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 16:45:28','','0000-00-00 00:00:00',0),(718,0,0,'H','2526','','',718,0,0,'2025-10-13',601,363,0,0,347,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',675,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 16:47:26','','0000-00-00 00:00:00',0),(719,0,0,'H','2526','','',719,0,0,'2025-10-13',601,363,0,0,347,'D',-500.00,0.00,'CSH','','','','','2025-10-13','','',676,'N','N','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 16:49:45','','0000-00-00 00:00:00',0),(720,0,0,'H','2526','','',720,0,0,'2025-10-13',602,548,0,0,522,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',677,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 16:50:46','','0000-00-00 00:00:00',0),(721,0,0,'H','2526','','',721,0,0,'2025-10-13',601,363,0,0,347,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',678,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 16:50:47','','0000-00-00 00:00:00',0),(722,0,0,'H','2526','','P',722,0,0,'2025-10-04',598,545,0,45,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',681,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-13 16:56:14','vishal','2025-10-13 16:58:50',0),(723,0,0,'H','2526','','P',723,0,0,'2025-10-05',598,545,0,45,0,'A',2900.00,0.00,'7','OTHER BANK','','4458','','0000-00-00','','',681,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-13 16:56:48','vishal','2025-10-13 16:58:50',0),(724,0,0,'H','2526','','',724,0,0,'2025-10-13',603,549,0,0,523,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',679,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 16:57:47','','0000-00-00 00:00:00',0),(725,0,0,'H','2526','','',725,0,0,'2025-10-13',604,550,0,0,524,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',682,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 16:59:47','','0000-00-00 00:00:00',0),(726,0,0,'H','2526','','',726,0,0,'2025-10-13',605,529,0,0,504,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',683,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 17:06:10','','0000-00-00 00:00:00',0),(727,0,0,'H','2526','','',727,0,0,'2025-10-13',599,546,0,0,520,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',684,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-13 17:10:42','','0000-00-00 00:00:00',0),(728,0,0,'H','2526','','',728,0,0,'2025-10-13',606,551,0,0,525,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',685,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 17:15:55','','0000-00-00 00:00:00',0),(729,0,0,'H','2526','','',729,0,0,'2025-10-13',607,552,0,0,526,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',688,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 17:18:44','','0000-00-00 00:00:00',0),(730,0,0,'H','2526','','',730,0,0,'2025-10-13',608,553,0,0,527,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',689,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 17:19:19','','0000-00-00 00:00:00',0),(731,0,0,'H','2526','','',731,0,0,'2025-10-13',609,554,0,0,528,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',690,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 17:21:08','','0000-00-00 00:00:00',0),(732,0,0,'H','2526','','',732,0,0,'2025-10-13',600,547,0,0,521,'B',4500.00,0.00,'7','ICICI BANK','','89367','','0000-00-00','SCAN','',691,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 17:22:12','','0000-00-00 00:00:00',0),(733,0,0,'H','2526','','',733,0,0,'2025-10-13',610,555,0,0,529,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',692,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 17:26:24','','0000-00-00 00:00:00',0),(734,0,0,'H','2526','','',734,0,0,'2025-10-13',611,556,0,0,530,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',693,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 17:27:03','','0000-00-00 00:00:00',0),(735,0,0,'H','2526','','',735,0,0,'2025-10-13',612,557,0,0,531,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',695,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 17:29:11','','0000-00-00 00:00:00',0),(736,0,0,'H','2526','','',736,0,0,'2025-10-13',603,549,0,0,523,'D',-500.00,0.00,'CSH','','','','','2025-10-13','','',694,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 17:29:34','','0000-00-00 00:00:00',0),(737,0,0,'H','2526','','',737,0,0,'2025-10-13',603,549,0,0,523,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',696,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 17:30:12','','0000-00-00 00:00:00',0),(738,0,0,'H','2526','','',738,0,0,'2025-10-13',614,558,0,0,532,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',697,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 17:42:56','','0000-00-00 00:00:00',0),(739,0,0,'H','2526','','',739,0,0,'2025-10-13',616,560,0,0,534,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',698,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 17:44:23','','0000-00-00 00:00:00',0),(740,0,0,'H','2526','','',740,0,0,'2025-10-13',615,559,0,0,533,'B',750.00,0.00,'7','CO OPERATIVE ','','310016','','0000-00-00','scan ','',699,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 17:44:44','','0000-00-00 00:00:00',0),(741,0,0,'H','2526','','',741,0,0,'2025-10-13',617,319,0,0,303,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',700,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 17:47:36','','0000-00-00 00:00:00',0),(742,0,0,'H','2526','','',742,0,0,'2025-10-13',608,553,0,0,527,'B',4400.00,0.00,'7','BOB','','64096','','0000-00-00','SCAN','',701,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 17:49:28','','0000-00-00 00:00:00',0),(743,0,0,'H','2526','','',743,0,0,'2025-10-13',618,561,0,0,535,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',702,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 17:50:52','','0000-00-00 00:00:00',0),(744,0,0,'H','2526','','',744,0,0,'2025-10-13',619,562,0,0,536,'B',900.00,0.00,'7','HDFC','','78045','','0000-00-00','SCAN','',703,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 17:52:42','','0000-00-00 00:00:00',0),(745,0,0,'H','2526','','',745,0,0,'2025-10-13',620,563,0,0,537,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',704,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 17:54:28','','0000-00-00 00:00:00',0),(746,0,0,'H','2526','','',746,0,0,'2025-10-13',621,564,0,0,538,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',705,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 17:55:43','','0000-00-00 00:00:00',0),(747,0,0,'H','2526','','',747,0,0,'2025-10-13',612,557,0,0,531,'D',-500.00,0.00,'CSH','','','','','2025-10-13','','',706,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 18:00:16','','0000-00-00 00:00:00',0),(748,0,0,'H','2526','','',748,0,0,'2025-10-13',612,557,0,0,531,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',707,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 18:00:57','','0000-00-00 00:00:00',0),(749,0,0,'H','2526','','',749,0,0,'2025-10-13',622,565,0,0,539,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',708,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 18:03:43','','0000-00-00 00:00:00',0),(750,0,0,'H','2526','','',750,0,0,'2025-10-13',623,566,0,0,540,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',709,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 18:05:27','','0000-00-00 00:00:00',0),(751,0,0,'H','2526','','',751,0,0,'2025-10-13',624,567,0,0,541,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',710,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 18:06:19','','0000-00-00 00:00:00',0),(752,0,0,'H','2526','','',752,0,0,'2025-10-13',625,568,0,0,542,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',711,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 18:07:05','','0000-00-00 00:00:00',0),(753,0,0,'H','2526','','',753,0,0,'2025-10-13',627,569,0,0,543,'B',400.00,0.00,'7','HDFC','','68935','','0000-00-00','scan ','',712,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 18:09:27','','0000-00-00 00:00:00',0),(754,0,0,'H','2526','','',754,0,0,'2025-10-13',628,570,0,0,544,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',713,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 18:09:49','','0000-00-00 00:00:00',0),(755,0,0,'H','2526','','',755,0,0,'2025-10-13',629,571,0,0,545,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',714,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 18:09:56','','0000-00-00 00:00:00',0),(756,0,0,'H','2526','','',756,0,0,'2025-10-13',630,572,0,0,546,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',715,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 18:10:59','','0000-00-00 00:00:00',0),(757,0,0,'H','2526','','',757,0,0,'2025-10-13',631,573,0,0,547,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',716,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 18:12:11','','0000-00-00 00:00:00',0),(758,0,0,'H','2526','','',758,0,0,'2025-10-13',632,574,0,0,548,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',717,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 18:14:59','','0000-00-00 00:00:00',0),(759,0,0,'H','2526','','',759,0,0,'2025-10-13',633,575,0,0,549,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',718,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 18:15:57','','0000-00-00 00:00:00',0),(760,0,0,'H','2526','','',760,0,0,'2025-10-13',580,527,0,0,502,'B',5000.00,0.00,'CSH','','','','','0000-00-00','','',719,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 18:17:00','','0000-00-00 00:00:00',0),(761,0,0,'H','2526','','',761,0,0,'2025-10-13',634,576,0,0,550,'B',400.00,0.00,'7','AXIS','','10016','','0000-00-00','SCAN','',720,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 18:18:52','','0000-00-00 00:00:00',0),(762,0,0,'H','2526','','',762,0,0,'2025-10-13',635,577,0,0,551,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',721,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 18:19:19','','0000-00-00 00:00:00',0),(763,0,0,'H','2526','','',763,0,0,'2025-10-13',636,578,0,0,552,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',722,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 18:19:47','','0000-00-00 00:00:00',0),(764,0,0,'H','2526','','',764,0,0,'2025-10-13',637,579,0,0,553,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',723,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 18:21:35','','0000-00-00 00:00:00',0),(765,0,0,'H','2526','','',765,0,0,'2025-10-13',638,81,0,0,70,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',724,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 18:23:07','','0000-00-00 00:00:00',0),(766,0,0,'H','2526','','',766,0,0,'2025-10-13',639,580,0,0,554,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',725,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 18:23:17','','0000-00-00 00:00:00',0),(767,0,0,'H','2526','','',767,0,0,'2025-10-13',640,145,0,0,134,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',726,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 18:23:56','','0000-00-00 00:00:00',0),(768,0,0,'H','2526','','',768,0,0,'2025-10-13',641,80,0,0,69,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',727,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 18:24:56','','0000-00-00 00:00:00',0),(769,0,0,'H','2526','','',769,0,0,'2025-10-13',619,562,0,0,536,'B',4400.00,0.00,'7','HDFC','','40727','','0000-00-00','SCAN','',728,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 18:30:51','','0000-00-00 00:00:00',0),(770,0,0,'H','2526','','',770,0,0,'2025-10-13',642,125,0,0,114,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',729,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 18:32:41','','0000-00-00 00:00:00',0),(771,0,0,'H','2526','','',771,0,0,'2025-10-13',626,262,0,0,247,'B',100.00,0.00,'7','union bank','','81090','','0000-00-00','scan     ','',730,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 18:37:01','','0000-00-00 00:00:00',0),(772,0,0,'H','2526','','P',772,0,0,'2025-10-13',216,179,0,16,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',1000,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-13 18:38:20','vishal','2025-10-15 13:00:06',0),(773,0,0,'H','2526','','',773,0,0,'2025-10-13',643,148,0,0,137,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',731,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 18:39:24','','0000-00-00 00:00:00',0),(774,0,0,'H','2526','','',774,0,0,'2025-10-13',644,581,0,0,555,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',732,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 18:42:09','','0000-00-00 00:00:00',0),(775,0,0,'H','2526','','',775,0,0,'2025-10-13',646,583,0,0,556,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',733,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 18:44:20','','0000-00-00 00:00:00',0),(776,0,0,'H','2526','','',776,0,0,'2025-10-13',647,151,0,0,140,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',734,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 18:47:09','','0000-00-00 00:00:00',0),(777,0,0,'H','2526','','',777,0,0,'2025-10-13',644,581,0,0,555,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',735,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 18:48:19','','0000-00-00 00:00:00',0),(778,0,0,'H','2526','','P',778,0,0,'2025-10-13',645,582,0,46,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',1139,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-13 18:49:22','vishal','2025-10-16 11:51:16',0),(779,0,0,'H','2526','','',779,0,0,'2025-10-13',648,584,0,0,557,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',736,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 18:49:27','','0000-00-00 00:00:00',0),(780,0,0,'H','2526','','',780,0,0,'2025-10-13',649,129,0,0,118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',737,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 18:49:37','','0000-00-00 00:00:00',0),(781,0,0,'H','2526','','',781,0,0,'2025-10-13',631,573,0,0,547,'D',-500.00,0.00,'CSH','','','','','2025-10-13','','',738,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 18:51:35','','0000-00-00 00:00:00',0),(782,0,0,'H','2526','','',782,0,0,'2025-10-13',651,586,0,0,559,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',739,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 18:52:14','','0000-00-00 00:00:00',0),(783,0,0,'H','2526','','',783,0,0,'2025-10-13',631,573,0,0,547,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',740,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 18:52:58','','0000-00-00 00:00:00',0),(784,0,0,'H','2526','','',784,0,0,'2025-10-13',652,587,0,0,560,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',741,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 18:53:50','','0000-00-00 00:00:00',0),(785,0,0,'H','2526','','',785,0,0,'2025-10-13',653,588,0,0,561,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',742,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 18:54:35','','0000-00-00 00:00:00',0),(786,0,0,'H','2526','','',786,0,0,'2025-10-13',654,589,0,0,562,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',743,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 18:54:55','','0000-00-00 00:00:00',0),(787,0,0,'H','2526','','',787,0,0,'2025-10-13',656,590,0,0,563,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',744,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 18:57:14','','0000-00-00 00:00:00',0),(788,0,0,'H','2526','','',788,0,0,'2025-10-13',657,591,0,0,564,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',745,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 18:59:21','','0000-00-00 00:00:00',0),(789,0,0,'H','2526','','',789,0,0,'2025-10-13',621,564,0,0,538,'D',-400.00,0.00,'CSH','','','','','2025-10-13','','',746,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 19:01:19','','0000-00-00 00:00:00',0),(790,0,0,'H','2526','','',790,0,0,'2025-10-13',636,578,0,0,552,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',747,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 19:07:17','','0000-00-00 00:00:00',0),(791,0,0,'H','2526','','',791,0,0,'2025-10-13',658,592,0,0,565,'B',500.00,0.00,'7','KOTAK ','','82699','','0000-00-00','SCAN','',748,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 19:08:01','','0000-00-00 00:00:00',0),(792,0,0,'H','2526','','',792,0,0,'2025-10-13',659,593,0,0,566,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',749,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 19:11:31','','0000-00-00 00:00:00',0),(793,0,0,'H','2526','','',793,0,0,'2025-10-13',660,594,0,0,567,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',750,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 19:18:34','','0000-00-00 00:00:00',0),(794,0,0,'H','2526','','',794,0,0,'2025-10-13',661,595,0,0,568,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',751,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 19:19:17','','0000-00-00 00:00:00',0),(795,0,0,'H','2526','','',795,0,0,'2025-10-13',662,596,0,0,569,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',752,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 19:21:25','','0000-00-00 00:00:00',0),(796,0,0,'H','2526','','',796,0,0,'2025-10-13',663,597,0,0,570,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',753,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 19:24:06','','0000-00-00 00:00:00',0),(797,0,0,'H','2526','','',797,0,0,'2025-10-13',664,598,0,0,571,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',754,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 19:26:29','','0000-00-00 00:00:00',0),(798,0,0,'H','2526','','',798,0,0,'2025-10-13',665,599,0,0,572,'B',300.00,0.00,'7','AXIS BANK','','73083','','0000-00-00','scan','',755,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 19:27:17','','0000-00-00 00:00:00',0),(799,0,0,'H','2526','','',799,0,0,'2025-10-13',648,584,0,0,557,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',756,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-13 19:29:11','','0000-00-00 00:00:00',0),(800,0,0,'H','2526','','',800,0,0,'2025-10-13',666,600,0,0,573,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',757,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 19:29:51','','0000-00-00 00:00:00',0),(801,0,0,'H','2526','','',801,0,0,'2025-10-13',669,603,0,0,575,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',758,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 19:36:19','','0000-00-00 00:00:00',0),(802,0,0,'H','2526','','',802,0,0,'2025-10-13',655,234,0,0,221,'B',300.00,0.00,'7','bob','','53623','','0000-00-00','scan  ','',759,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-13 19:41:24','','0000-00-00 00:00:00',0),(803,0,0,'H','2526','','',803,0,0,'2025-10-13',667,601,0,0,574,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',760,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 19:45:11','','0000-00-00 00:00:00',0),(804,0,0,'H','2526','','',804,0,0,'2025-10-13',671,604,0,0,576,'B',300.00,0.00,'7','BOB BANK','','82627','','0000-00-00','scan ','',761,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 19:49:36','','0000-00-00 00:00:00',0),(805,0,0,'H','2526','','P',805,0,0,'2025-10-13',48,48,0,5,0,'A',21000.00,0.00,'7','icici bank','','528685661338','','0000-00-00','SCAN','',855,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-13 19:53:29','riya','2025-10-14 15:27:37',0),(806,0,0,'H','2526','','',806,0,0,'2025-10-13',666,600,0,0,573,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',762,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-13 20:07:55','','0000-00-00 00:00:00',0),(807,0,0,'H','2526','','P',807,0,0,'2025-10-13',506,465,0,40,0,'A',700.00,0.00,'CSH','','','','','0000-00-00','','',765,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-13 20:12:48','riya','2025-10-13 20:15:11',0),(808,0,0,'H','2526','','',808,0,0,'2025-10-13',650,585,0,0,558,'B',300.00,0.00,'CRD','hdfc','','3158','','0000-00-00','card','',764,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-13 20:14:33','','0000-00-00 00:00:00',0),(809,0,0,'H','2526','','P',809,0,0,'2025-10-10',672,165,0,48,0,'A',76800.00,0.00,'CSH','','','','','0000-00-00','','',767,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-13 21:49:17','riya','2025-10-13 21:49:43',0),(810,0,0,'H','2526','','P',810,0,0,'2025-10-06',673,605,0,49,0,'A',25000.00,0.00,'2','AXIS BANK','','3147','','0000-00-00','CARD','',769,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-13 22:11:33','riya','2025-10-13 22:13:19',0),(811,0,0,'H','2526','','P',811,0,0,'2025-10-13',674,606,0,50,0,'A',7000.00,0.00,'7','KOTAK BANK','','528622049938','','0000-00-00','SCAN','',0,'N','P','Y',0,'N','vishal','2025-12-15 17:59:21','riya','2025-10-13 22:33:16','vishal','2025-12-15 17:59:21',0),(812,0,0,'H','2526','','P',812,0,0,'2025-10-13',477,22,0,35,0,'A',8200.00,0.00,'CSH','','','','','0000-00-00','','',772,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-13 22:57:29','riya','2025-10-13 22:58:16',0),(813,0,0,'H','2526','','P',813,0,0,'2025-10-13',505,464,0,39,0,'A',7200.00,0.00,'7','BANK OF INDIA','','112614840989','','0000-00-00','SCAN','',773,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-13 23:02:59','riya','2025-10-13 23:03:17',0),(814,0,0,'H','2526','','',814,0,0,'2025-10-14',676,603,0,0,575,'B',5100.00,0.00,'CSH','','','','','0000-00-00','','',774,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-14 08:50:03','','0000-00-00 00:00:00',0),(815,0,0,'H','2526','','',815,0,0,'2025-10-14',677,608,0,0,577,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',775,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-14 08:52:23','','0000-00-00 00:00:00',0),(816,0,0,'H','2526','','',816,0,0,'2025-10-14',678,609,0,0,578,'B',1800.00,0.00,'CSH','','','','','0000-00-00','','',776,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-14 08:54:48','','0000-00-00 00:00:00',0),(817,0,0,'H','2526','','',817,0,0,'2025-10-14',679,610,0,0,579,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',777,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-14 08:56:17','','0000-00-00 00:00:00',0),(818,0,0,'H','2526','','',818,0,0,'2025-10-14',680,611,0,0,580,'B',2050.00,0.00,'CSH','','','','','0000-00-00','','',778,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-14 08:58:45','','0000-00-00 00:00:00',0),(819,0,0,'H','2526','','',819,0,0,'2025-10-14',681,612,0,0,581,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',779,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-14 09:00:09','','0000-00-00 00:00:00',0),(820,0,0,'H','2526','','',820,0,0,'2025-10-14',682,613,0,0,582,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',780,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-14 09:01:58','','0000-00-00 00:00:00',0),(821,0,0,'H','2526','','P',821,0,0,'2025-10-14',683,454,0,52,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',922,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-14 09:13:35','vishal','2025-10-14 19:43:53',0),(822,0,0,'H','2526','','P',822,0,0,'2025-09-26',668,602,0,47,0,'A',12200.00,0.00,'CRD','SBI','','36524851247','','0000-00-00','CARD','',782,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-14 11:15:00','riya','2025-10-14 09:30:42',0),(823,0,0,'H','2526','','',823,0,0,'2025-10-14',685,614,0,0,583,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',783,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-14 09:32:56','','0000-00-00 00:00:00',0),(824,0,0,'H','2526','','',824,0,0,'2025-10-14',686,615,0,0,584,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',785,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 09:46:29','','0000-00-00 00:00:00',0),(825,0,0,'H','2526','','P',825,0,0,'2025-09-30',684,388,0,53,0,'A',3000.00,0.00,'7','SBI','','36524851242','','0000-00-00','SCAN','',786,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-14 09:46:56','riya','2025-10-14 09:49:32',0),(826,0,0,'H','2526','','P',826,0,0,'2025-10-14',675,607,0,51,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',927,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-14 10:00:52','vishal','2025-10-14 21:13:29',0),(827,0,0,'H','2526','','',827,0,0,'2025-10-14',688,616,0,0,585,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',787,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 10:06:48','','0000-00-00 00:00:00',0),(828,0,0,'H','2526','','',828,0,0,'2025-10-14',689,21,0,0,586,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',789,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 10:16:28','','0000-00-00 00:00:00',0),(829,0,0,'H','2526','','',829,0,0,'2025-10-14',692,618,0,0,588,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',790,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 10:21:04','','0000-00-00 00:00:00',0),(830,0,0,'H','2526','','P',830,0,0,'2025-10-14',489,452,0,38,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',1756,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-14 10:26:40','riya','2025-10-25 21:05:07',0),(831,0,0,'H','2526','','',831,0,0,'2025-10-14',694,620,0,0,590,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',791,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 10:32:53','','0000-00-00 00:00:00',0),(832,0,0,'H','2526','','',832,0,0,'2025-10-14',695,621,0,0,591,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',792,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 10:33:07','','0000-00-00 00:00:00',0),(833,0,0,'H','2526','','',833,0,0,'2025-10-14',697,623,0,0,593,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',793,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 10:36:23','','0000-00-00 00:00:00',0),(834,0,0,'H','2526','','',834,0,0,'2025-10-14',696,622,0,0,592,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',794,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 10:36:51','','0000-00-00 00:00:00',0),(835,0,0,'H','2526','','',835,0,0,'2025-10-14',698,624,0,0,594,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',795,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 10:39:02','','0000-00-00 00:00:00',0),(836,0,0,'H','2526','','',836,0,0,'2025-10-14',699,625,0,0,595,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',796,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 10:41:13','','0000-00-00 00:00:00',0),(837,0,0,'H','2526','','',837,0,0,'2025-10-14',700,626,0,0,596,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',797,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 10:48:47','','0000-00-00 00:00:00',0),(838,0,0,'H','2526','','',838,0,0,'2025-10-14',691,617,0,0,587,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',798,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 10:49:42','','0000-00-00 00:00:00',0),(839,0,0,'H','2526','','P',839,0,0,'2025-10-14',701,625,0,56,0,'A',35000.00,0.00,'CSH','','','','','0000-00-00','','',1008,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-14 10:55:52','vishal','2025-10-15 13:43:56',0),(840,0,0,'H','2526','','',840,0,0,'2025-10-14',703,627,0,0,597,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',799,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 10:56:10','','0000-00-00 00:00:00',0),(841,0,0,'H','2526','','',841,0,0,'2025-10-14',704,628,0,0,598,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',800,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 10:58:14','','0000-00-00 00:00:00',0),(842,0,0,'H','2526','','',842,0,0,'2025-10-14',702,178,0,0,165,'B',300.00,0.00,'7','BANK','','86001','','0000-00-00','scan     ','',801,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 10:59:28','','0000-00-00 00:00:00',0),(843,0,0,'H','2526','','',843,0,0,'2025-10-14',705,629,0,0,599,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',802,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 11:03:30','','0000-00-00 00:00:00',0),(844,0,0,'H','2526','','',844,0,0,'2025-10-14',706,184,0,0,171,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',803,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 11:05:31','','0000-00-00 00:00:00',0),(845,0,0,'H','2526','','',845,0,0,'2025-10-14',707,630,0,0,600,'B',1700.00,0.00,'7','axis bank','','42490','','0000-00-00','scan     ','',804,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 11:07:01','','0000-00-00 00:00:00',0),(846,0,0,'H','2526','','',846,0,0,'2025-10-14',708,631,0,0,601,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',805,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 11:07:47','','0000-00-00 00:00:00',0),(847,0,0,'H','2526','','',847,0,0,'2025-10-14',709,632,0,0,602,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',806,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 11:12:49','','0000-00-00 00:00:00',0),(848,0,0,'H','2526','','',848,0,0,'2025-10-14',710,633,0,0,603,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',807,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-14 11:13:46','','0000-00-00 00:00:00',0),(849,0,0,'H','2526','','',849,0,0,'2025-10-14',712,635,0,0,605,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',808,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 11:16:39','','0000-00-00 00:00:00',0),(850,0,0,'H','2526','','',850,0,0,'2025-10-14',713,636,0,0,606,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',809,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 11:17:48','','0000-00-00 00:00:00',0),(851,0,0,'H','2526','','',851,0,0,'2025-10-14',714,637,0,0,607,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',810,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 11:19:11','','0000-00-00 00:00:00',0),(852,0,0,'H','2526','','',852,0,0,'2025-10-14',693,619,0,0,589,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',811,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 11:22:01','','0000-00-00 00:00:00',0),(853,0,0,'H','2526','','',853,0,0,'2025-10-14',686,615,0,0,584,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',812,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 11:22:12','','0000-00-00 00:00:00',0),(854,0,0,'H','2526','','',854,0,0,'2025-10-14',688,616,0,0,585,'B',5800.00,0.00,'CSH','','','','','0000-00-00','','',813,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 11:25:12','','0000-00-00 00:00:00',0),(855,0,0,'H','2526','','',855,0,0,'2025-10-14',715,638,0,0,608,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',814,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-14 11:28:44','','0000-00-00 00:00:00',0),(856,0,0,'H','2526','','P',856,0,0,'2025-10-14',246,239,0,18,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',1483,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-14 11:39:33','riya','2025-10-18 13:55:10',0),(857,0,0,'H','2526','','',857,0,0,'2025-10-14',711,634,0,0,604,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',815,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 11:40:22','','0000-00-00 00:00:00',0),(858,0,0,'H','2526','','',858,0,0,'2025-10-14',716,639,0,0,609,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',816,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 11:40:57','','0000-00-00 00:00:00',0),(859,0,0,'H','2526','','',859,0,0,'2025-10-14',717,640,0,0,610,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',817,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 11:41:14','','0000-00-00 00:00:00',0),(860,0,0,'H','2526','','',860,0,0,'2025-10-14',718,641,0,0,611,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',818,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 11:42:38','','0000-00-00 00:00:00',0),(861,0,0,'H','2526','','',861,0,0,'2025-10-14',697,623,0,0,593,'B',4200.00,0.00,'7','AXIS BANK','','13645','','0000-00-00','SCAN','',819,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 11:44:17','','0000-00-00 00:00:00',0),(862,0,0,'H','2526','','',862,0,0,'2025-10-14',715,638,0,0,608,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',820,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-14 11:47:17','','0000-00-00 00:00:00',0),(863,0,0,'H','2526','','',863,0,0,'2025-10-14',719,642,0,0,612,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',821,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-14 11:48:58','','0000-00-00 00:00:00',0),(864,0,0,'H','2526','','',864,0,0,'2025-10-14',720,643,0,0,613,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',822,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 11:51:24','','0000-00-00 00:00:00',0),(865,0,0,'H','2526','','',865,0,0,'2025-10-14',721,644,0,0,614,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',823,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 12:00:03','','0000-00-00 00:00:00',0),(866,0,0,'H','2526','','',866,0,0,'2025-10-14',719,642,0,0,612,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',824,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-14 12:05:14','','0000-00-00 00:00:00',0),(867,0,0,'H','2526','','',867,0,0,'2025-10-14',722,645,0,0,615,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',826,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 12:10:49','','0000-00-00 00:00:00',0),(868,0,0,'H','2526','','',868,0,0,'2025-10-14',723,646,0,0,616,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',827,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 12:13:45','','0000-00-00 00:00:00',0),(869,0,0,'H','2526','','P',869,0,0,'2025-10-14',509,467,0,41,0,'A',7600.00,0.00,'CSH','','','','','0000-00-00','','',828,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-14 12:15:52','riya','2025-10-14 12:16:38',0),(870,0,0,'H','2526','','',870,0,0,'2025-10-14',725,648,0,0,618,'B',750.00,0.00,'7','SBI BANK','','40818','','0000-00-00','SCAN','',829,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 12:18:15','','0000-00-00 00:00:00',0),(871,0,0,'H','2526','','',871,0,0,'2025-10-14',724,647,0,0,617,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',830,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-14 12:18:39','','0000-00-00 00:00:00',0),(872,0,0,'H','2526','','',872,0,0,'2025-10-14',727,650,0,0,620,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',831,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 12:19:28','','0000-00-00 00:00:00',0),(873,0,0,'H','2526','','',873,0,0,'2025-10-14',726,649,0,0,619,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',832,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 12:19:45','','0000-00-00 00:00:00',0),(874,0,0,'H','2526','','',874,0,0,'2025-10-14',728,651,0,0,621,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',833,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 12:28:39','','0000-00-00 00:00:00',0),(875,0,0,'H','2526','','',875,0,0,'2025-10-14',729,652,0,0,622,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',834,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 12:32:48','','0000-00-00 00:00:00',0),(876,0,0,'H','2526','','',876,0,0,'2025-10-14',731,654,0,0,624,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',835,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 12:36:23','','0000-00-00 00:00:00',0),(877,0,0,'H','2526','','',877,0,0,'2025-10-14',732,655,0,0,625,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',836,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 12:36:49','','0000-00-00 00:00:00',0),(878,0,0,'H','2526','','',878,0,0,'2025-10-14',730,653,0,0,623,'B',500.00,0.00,'7','SBI BANK','','20769','','0000-00-00','scan ','',837,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 12:37:03','','0000-00-00 00:00:00',0),(879,0,0,'H','2526','','',879,0,0,'2025-10-14',733,656,0,0,626,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',838,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 12:38:46','','0000-00-00 00:00:00',0),(880,0,0,'H','2526','','',880,0,0,'2025-10-14',734,657,0,0,627,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',839,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 12:43:25','','0000-00-00 00:00:00',0),(881,0,0,'H','2526','','',881,0,0,'2025-10-14',735,658,0,0,628,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',840,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 12:44:51','','0000-00-00 00:00:00',0),(882,0,0,'H','2526','','P',882,0,0,'2025-10-14',414,392,0,25,0,'A',35000.00,0.00,'7','ICICI BANK','','528743524673','','0000-00-00','SCAN','',2614,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-14 12:45:37','vishal','2025-11-01 15:09:18',0),(883,0,0,'H','2526','','',883,0,0,'2025-10-14',736,659,0,0,629,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',841,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 12:47:44','','0000-00-00 00:00:00',0),(884,0,0,'H','2526','','',884,0,0,'2025-10-14',703,627,0,0,597,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',842,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 12:50:42','','0000-00-00 00:00:00',0),(885,0,0,'H','2526','','',885,0,0,'2025-10-14',723,646,0,0,616,'B',350.00,0.00,'7','indian oversea','','97286','','0000-00-00','scan ','',843,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 12:54:21','','0000-00-00 00:00:00',0),(886,0,0,'H','2526','','',886,0,0,'2025-10-14',738,660,0,0,630,'B',400.00,0.00,'7','sbi','','52348','','0000-00-00','scan     ','',845,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 12:56:10','','0000-00-00 00:00:00',0),(887,0,0,'H','2526','','',887,0,0,'2025-10-14',720,643,0,0,613,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',846,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 13:01:06','','0000-00-00 00:00:00',0),(888,0,0,'H','2526','','',888,0,0,'2025-10-14',739,661,0,0,631,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',847,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 13:06:47','','0000-00-00 00:00:00',0),(889,0,0,'H','2526','','',889,0,0,'2025-10-14',740,662,0,0,632,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',848,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 13:12:54','','0000-00-00 00:00:00',0),(890,0,0,'H','2526','','',890,0,0,'2025-10-14',741,663,0,0,633,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',849,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 13:14:30','','0000-00-00 00:00:00',0),(891,0,0,'H','2526','','',891,0,0,'2025-10-14',742,265,0,0,250,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',850,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 13:16:28','','0000-00-00 00:00:00',0),(892,0,0,'H','2526','','P',892,0,0,'2025-10-14',284,274,0,21,0,'A',30000.00,0.00,'7','SBI','','528791435996','','0000-00-00','SCAN','',1481,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-14 13:25:39','riya','2025-10-18 13:42:53',0),(893,0,0,'H','2526','','',893,0,0,'2025-10-14',714,637,0,0,607,'B',4200.00,0.00,'CSH','','','','','0000-00-00','','',851,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 13:39:07','','0000-00-00 00:00:00',0),(894,0,0,'H','2526','','P',894,0,0,'2025-10-14',743,649,0,58,0,'A',15000.00,0.00,'7','HDFC BANK','','974356038204','','0000-00-00','SCAN','',1007,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-14 13:45:02','vishal','2025-10-15 13:32:01',0),(895,0,0,'H','2526','','',895,0,0,'2025-10-14',725,648,0,0,618,'B',1000.00,0.00,'7','SBI BANK','','89218','','0000-00-00','scan ','',852,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 13:51:10','','0000-00-00 00:00:00',0),(896,0,0,'H','2526','','P',896,0,0,'2025-10-14',406,385,0,22,0,'A',24500.00,0.00,'CSH','','','','','0000-00-00','','',853,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-14 13:58:27','riya','2025-10-14 14:00:19',0),(897,0,0,'H','2526','','P',897,0,0,'2025-10-14',487,71,0,36,0,'A',10000.00,0.00,'7','KOTAK BANK ','','528776614098','','0000-00-00','SCAN','',984,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-14 14:04:20','vishal','2025-10-15 12:13:31',0),(898,0,0,'H','2526','','P',898,0,0,'2025-10-14',48,48,0,5,0,'A',23000.00,0.00,'7','ICICI BANK','','528790193617','','0000-00-00','SCAN','',855,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-14 15:26:57','riya','2025-10-14 15:27:37',0),(899,0,0,'H','2526','','',899,0,0,'2025-10-14',746,659,0,0,629,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',856,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 16:42:32','','0000-00-00 00:00:00',0),(900,0,0,'H','2526','','',900,0,0,'2025-10-14',747,666,0,0,636,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',857,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 16:51:48','','0000-00-00 00:00:00',0),(901,0,0,'H','2526','','',901,0,0,'2025-10-14',748,667,0,0,637,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',858,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-14 16:52:10','','0000-00-00 00:00:00',0),(902,0,0,'H','2526','','',902,0,0,'2025-10-14',749,668,0,0,638,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',859,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 16:53:39','','0000-00-00 00:00:00',0),(903,0,0,'H','2526','','',903,0,0,'2025-10-14',750,669,0,0,639,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',860,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 16:58:36','','0000-00-00 00:00:00',0),(904,0,0,'H','2526','','',904,0,0,'2025-10-14',751,670,0,0,640,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',861,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-14 17:13:18','','0000-00-00 00:00:00',0),(905,0,0,'H','2526','','',905,0,0,'2025-10-14',752,671,0,0,641,'B',400.00,0.00,'7','HDFC','','86804','','0000-00-00','scan ','',862,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 17:15:09','','0000-00-00 00:00:00',0),(906,0,0,'H','2526','','',906,0,0,'2025-10-14',753,672,0,0,642,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',863,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 17:17:57','','0000-00-00 00:00:00',0),(907,0,0,'H','2526','','',907,0,0,'2025-10-14',754,673,0,0,643,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',864,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 17:18:54','','0000-00-00 00:00:00',0),(908,0,0,'H','2526','','',908,0,0,'2025-10-14',755,674,0,0,644,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',865,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 17:28:52','','0000-00-00 00:00:00',0),(909,0,0,'H','2526','','',909,0,0,'2025-10-14',749,668,0,0,638,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',866,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 17:37:37','','0000-00-00 00:00:00',0),(910,0,0,'H','2526','','',910,0,0,'2025-10-14',756,675,0,0,645,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',867,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-14 17:39:15','','0000-00-00 00:00:00',0),(911,0,0,'H','2526','','',911,0,0,'2025-10-14',757,676,0,0,646,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',868,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 17:41:07','','0000-00-00 00:00:00',0),(912,0,0,'H','2526','','',912,0,0,'2025-10-14',760,321,0,0,305,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',869,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 17:44:53','','0000-00-00 00:00:00',0),(913,0,0,'H','2526','','',913,0,0,'2025-10-14',759,678,0,0,648,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',870,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 17:44:55','','0000-00-00 00:00:00',0),(914,0,0,'H','2526','','',914,0,0,'2025-10-14',761,679,0,0,649,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',871,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 17:46:16','','0000-00-00 00:00:00',0),(915,0,0,'H','2526','','',915,0,0,'2025-10-14',758,677,0,0,647,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',872,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 17:46:40','','0000-00-00 00:00:00',0),(916,0,0,'H','2526','','',916,0,0,'2025-10-14',762,680,0,0,650,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',873,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 17:47:53','','0000-00-00 00:00:00',0),(917,0,0,'H','2526','','',917,0,0,'2025-10-14',763,681,0,0,651,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',874,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 17:48:33','','0000-00-00 00:00:00',0),(918,0,0,'H','2526','','',918,0,0,'2025-10-14',765,683,0,0,653,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',875,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 17:51:46','','0000-00-00 00:00:00',0),(919,0,0,'H','2526','','',919,0,0,'2025-10-14',764,682,0,0,652,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',876,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 17:52:06','','0000-00-00 00:00:00',0),(920,0,0,'H','2526','','',920,0,0,'2025-10-14',750,669,0,0,639,'B',6000.00,0.00,'7','BOI','','61526','','0000-00-00','SCAN','',877,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 17:56:09','','0000-00-00 00:00:00',0),(921,0,0,'H','2526','','',921,0,0,'2025-10-14',766,684,0,0,654,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',878,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-14 17:57:03','','0000-00-00 00:00:00',0),(922,0,0,'H','2526','','',922,0,0,'2025-10-14',767,685,0,0,655,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',879,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 17:57:23','','0000-00-00 00:00:00',0),(923,0,0,'H','2526','','',923,0,0,'2025-10-14',769,687,0,0,657,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',880,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 17:57:57','','0000-00-00 00:00:00',0),(924,0,0,'H','2526','','',924,0,0,'2025-10-14',768,686,0,0,656,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',881,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 17:58:10','','0000-00-00 00:00:00',0),(925,0,0,'H','2526','','',925,0,0,'2025-10-14',770,688,0,0,658,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',882,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 17:59:52','','0000-00-00 00:00:00',0),(926,0,0,'H','2526','','',926,0,0,'2025-10-14',771,122,0,0,111,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',883,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 18:00:42','','0000-00-00 00:00:00',0),(927,0,0,'H','2526','','',927,0,0,'2025-10-14',748,667,0,0,637,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',884,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 18:00:58','','0000-00-00 00:00:00',0),(928,0,0,'H','2526','','',928,0,0,'2025-10-14',772,689,0,0,659,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',885,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 18:03:32','','0000-00-00 00:00:00',0),(929,0,0,'H','2526','','',929,0,0,'2025-10-14',773,690,0,0,660,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',886,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 18:04:50','','0000-00-00 00:00:00',0),(930,0,0,'H','2526','','',930,0,0,'2025-10-14',774,691,0,0,661,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',887,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 18:11:56','','0000-00-00 00:00:00',0),(931,0,0,'H','2526','','',931,0,0,'2025-10-14',775,264,0,0,249,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',888,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 18:12:28','','0000-00-00 00:00:00',0),(932,0,0,'H','2526','','',932,0,0,'2025-10-14',776,692,0,0,662,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',889,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 18:19:28','','0000-00-00 00:00:00',0),(933,0,0,'H','2526','','',933,0,0,'2025-10-14',777,693,0,0,663,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',890,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 18:21:01','','0000-00-00 00:00:00',0),(934,0,0,'H','2526','','',934,0,0,'2025-10-14',779,695,0,0,665,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',891,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 18:22:08','','0000-00-00 00:00:00',0),(935,0,0,'H','2526','','',935,0,0,'2025-10-14',778,694,0,0,664,'B',400.00,0.00,'7','fedral bank','','70104','','0000-00-00','scan     ','',892,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 18:23:25','','0000-00-00 00:00:00',0),(936,0,0,'H','2526','','',936,0,0,'2025-10-14',780,696,0,0,666,'B',500.00,0.00,'7','BOI BANK','','171317','','0000-00-00','scan ','',893,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 18:24:59','','0000-00-00 00:00:00',0),(937,0,0,'H','2526','','',937,0,0,'2025-10-14',781,697,0,0,667,'B',400.00,0.00,'7','fedral bank','','70104','','0000-00-00','scan     ','',894,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 18:27:21','','0000-00-00 00:00:00',0),(938,0,0,'H','2526','','',938,0,0,'2025-10-14',782,698,0,0,668,'B',750.00,0.00,'CSH','','','','','0000-00-00','scan ','',896,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 18:28:40','','0000-00-00 00:00:00',0),(939,0,0,'H','2526','','',939,0,0,'2025-10-14',778,694,0,0,664,'D',-400.00,0.00,'7','fedral bank','','70104','','2025-10-14','SCAN ','',895,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 18:29:10','','0000-00-00 00:00:00',0),(940,0,0,'H','2526','','',940,0,0,'2025-10-14',783,699,0,0,669,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',897,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 18:29:37','','0000-00-00 00:00:00',0),(941,0,0,'H','2526','','',941,0,0,'2025-10-14',786,319,0,0,303,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',898,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 18:31:50','','0000-00-00 00:00:00',0),(942,0,0,'H','2526','','',942,0,0,'2025-10-14',784,700,0,0,670,'B',1050.00,0.00,'CSH','','','','','0000-00-00','','',899,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 18:31:58','','0000-00-00 00:00:00',0),(943,0,0,'H','2526','','',943,0,0,'2025-10-14',765,683,0,0,653,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',900,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 18:32:15','','0000-00-00 00:00:00',0),(944,0,0,'H','2526','','',944,0,0,'2025-10-14',785,62,0,0,671,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',901,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 18:32:42','','0000-00-00 00:00:00',0),(945,0,0,'H','2526','','',945,0,0,'2025-10-14',787,701,0,0,672,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',902,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 18:35:10','','0000-00-00 00:00:00',0),(946,0,0,'H','2526','','',946,0,0,'2025-10-14',788,702,0,0,673,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',903,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 18:37:02','','0000-00-00 00:00:00',0),(947,0,0,'H','2526','','',947,0,0,'2025-10-14',789,703,0,0,674,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',904,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 18:47:48','','0000-00-00 00:00:00',0),(948,0,0,'H','2526','','',948,0,0,'2025-10-14',791,705,0,0,676,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',905,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 18:58:39','','0000-00-00 00:00:00',0),(949,0,0,'H','2526','','',949,0,0,'2025-10-14',792,706,0,0,677,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',907,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 19:04:20','','0000-00-00 00:00:00',0),(950,0,0,'H','2526','','',950,0,0,'2025-10-14',793,129,0,0,118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',908,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 19:05:35','','0000-00-00 00:00:00',0),(951,0,0,'H','2526','','',951,0,0,'2025-10-14',794,707,0,0,678,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',909,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 19:06:17','','0000-00-00 00:00:00',0),(952,0,0,'H','2526','','',952,0,0,'2025-10-14',795,708,0,0,679,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',910,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 19:06:22','','0000-00-00 00:00:00',0),(953,0,0,'H','2526','','',953,0,0,'2025-10-14',797,710,0,0,681,'B',400.00,0.00,'7','ICICI BANK','','66517','','0000-00-00','scan ','',912,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 19:16:57','','0000-00-00 00:00:00',0),(954,0,0,'H','2526','','',954,0,0,'2025-10-14',796,709,0,0,680,'B',300.00,0.00,'7','ICICI BANK','','63583','','0000-00-00','scan','',913,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-14 19:18:32','','0000-00-00 00:00:00',0),(955,0,0,'H','2526','','',955,0,0,'2025-10-14',762,680,0,0,650,'D',-500.00,0.00,'CSH','','','','','2025-10-14','','',914,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 19:19:19','','0000-00-00 00:00:00',0),(956,0,0,'H','2526','','',956,0,0,'2025-10-14',798,711,0,0,682,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',915,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 19:19:34','','0000-00-00 00:00:00',0),(957,0,0,'H','2526','','',957,0,0,'2025-10-14',762,680,0,0,650,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',916,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 19:19:58','','0000-00-00 00:00:00',0),(958,0,0,'H','2526','','P',958,0,0,'2025-10-14',416,292,0,27,0,'A',8100.00,0.00,'CSH','','','','','0000-00-00','','',917,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-14 19:22:51','riya','2025-10-14 19:23:11',0),(959,0,0,'H','2526','','',959,0,0,'2025-10-14',799,307,0,0,291,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',918,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 19:27:38','','0000-00-00 00:00:00',0),(960,0,0,'H','2526','','',960,0,0,'2025-10-14',785,62,0,0,671,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',919,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 19:32:28','','0000-00-00 00:00:00',0),(961,0,0,'H','2526','','',961,0,0,'2025-10-14',800,712,0,0,683,'B',400.00,0.00,'7','bank','','74881','','0000-00-00','scan ','',920,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-14 19:41:30','','0000-00-00 00:00:00',0),(962,0,0,'H','2526','','P',962,0,0,'2025-10-14',683,454,0,52,0,'A',2000.00,0.00,'CSH','','','','','0000-00-00','','',922,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-14 19:43:16','vishal','2025-10-14 19:43:53',0),(963,0,0,'H','2526','','',963,0,0,'2025-10-14',801,1,0,0,1,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',923,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 19:47:52','','0000-00-00 00:00:00',0),(964,0,0,'H','2526','','',964,0,0,'2025-10-14',802,713,0,0,684,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',924,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-14 19:49:15','','0000-00-00 00:00:00',0),(965,0,0,'H','2526','','',965,0,0,'2025-10-14',802,713,0,0,684,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',925,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-14 19:54:15','','0000-00-00 00:00:00',0),(966,0,0,'H','2526','','P',966,0,0,'2025-10-14',675,607,0,51,0,'A',700.00,0.00,'CSH','','','','','0000-00-00','','',927,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-14 21:13:10','vishal','2025-10-14 21:13:29',0),(967,0,0,'H','2526','','P',967,0,0,'2025-10-14',803,714,0,59,0,'A',15000.00,0.00,'7','SBI','','528786873863','','0000-00-00','','',1159,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-14 21:54:28','vishal','2025-10-16 12:56:44',0),(968,0,0,'H','2526','','',968,0,0,'2025-10-15',805,716,0,0,686,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',928,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 09:11:34','','0000-00-00 00:00:00',0),(969,0,0,'H','2526','','',969,0,0,'2025-10-15',806,717,0,0,687,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',929,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 09:13:00','','0000-00-00 00:00:00',0),(970,0,0,'H','2526','','',970,0,0,'2025-10-15',804,715,0,0,685,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',930,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-15 09:13:09','','0000-00-00 00:00:00',0),(971,0,0,'H','2526','','',971,0,0,'2025-10-15',807,718,0,0,688,'B',1900.00,0.00,'7','BANK','','47608','','0000-00-00','scan ','',931,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-15 09:15:48','','0000-00-00 00:00:00',0),(972,0,0,'H','2526','','',972,0,0,'2025-10-15',808,719,0,0,689,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',932,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-15 09:18:29','','0000-00-00 00:00:00',0),(973,0,0,'H','2526','','',973,0,0,'2025-10-15',810,292,0,0,276,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',933,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-15 09:29:07','','0000-00-00 00:00:00',0),(974,0,0,'H','2526','','',974,0,0,'2025-10-15',812,194,0,0,181,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',934,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-15 09:39:51','','0000-00-00 00:00:00',0),(975,0,0,'H','2526','','',975,0,0,'2025-10-15',813,722,0,0,691,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',935,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 09:42:07','','0000-00-00 00:00:00',0),(976,0,0,'H','2526','','P',976,0,0,'2025-10-15',809,720,0,60,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',1225,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-15 09:48:54','riya','2025-10-16 18:55:58',0),(977,0,0,'H','2526','','',977,0,0,'2025-10-15',811,721,0,0,690,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',936,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 09:53:48','','0000-00-00 00:00:00',0),(978,0,0,'H','2526','','',978,0,0,'2025-10-15',814,723,0,0,692,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',937,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 09:57:39','','0000-00-00 00:00:00',0),(979,0,0,'H','2526','','',979,0,0,'2025-10-15',815,724,0,0,693,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',938,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-15 10:03:27','','0000-00-00 00:00:00',0),(980,0,0,'H','2526','','',980,0,0,'2025-10-15',815,724,0,0,693,'D',-500.00,0.00,'CSH','','','','','2025-10-15','','',939,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 10:19:53','','0000-00-00 00:00:00',0),(981,0,0,'H','2526','','',981,0,0,'2025-10-15',817,726,0,0,695,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',940,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 10:27:05','','0000-00-00 00:00:00',0),(982,0,0,'H','2526','','',982,0,0,'2025-10-15',818,727,0,0,696,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',941,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 10:34:41','','0000-00-00 00:00:00',0),(983,0,0,'H','2526','','',983,0,0,'2025-10-15',819,90,0,0,79,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',942,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 10:37:44','','0000-00-00 00:00:00',0),(984,0,0,'H','2526','','',984,0,0,'2025-10-15',820,728,0,0,697,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',943,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 10:39:35','','0000-00-00 00:00:00',0),(985,0,0,'H','2526','','',985,0,0,'2025-10-15',822,16,0,0,16,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',944,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 10:47:15','','0000-00-00 00:00:00',0),(986,0,0,'H','2526','','',986,0,0,'2025-10-15',823,730,0,0,699,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',945,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 10:47:19','','0000-00-00 00:00:00',0),(987,0,0,'H','2526','','',987,0,0,'2025-10-15',824,731,0,0,700,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',946,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 10:49:09','','0000-00-00 00:00:00',0),(988,0,0,'H','2526','','',988,0,0,'2025-10-15',816,725,0,0,694,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',947,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-15 10:51:34','','0000-00-00 00:00:00',0),(989,0,0,'H','2526','','',989,0,0,'2025-10-15',825,732,0,0,701,'B',500.00,0.00,'7','sbi','','30975','','0000-00-00','scan     ','',948,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 10:52:12','','0000-00-00 00:00:00',0),(990,0,0,'H','2526','','',990,0,0,'2025-10-15',826,733,0,0,702,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',949,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-15 10:57:25','','0000-00-00 00:00:00',0),(991,0,0,'H','2526','','',991,0,0,'2025-10-15',827,27,0,0,26,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',950,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-15 10:59:13','','0000-00-00 00:00:00',0),(992,0,0,'H','2526','','',992,0,0,'2025-10-15',828,734,0,0,703,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',951,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 11:00:07','','0000-00-00 00:00:00',0),(993,0,0,'H','2526','','',993,0,0,'2025-10-15',829,735,0,0,704,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',952,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-15 11:01:16','','0000-00-00 00:00:00',0),(994,0,0,'H','2526','','',994,0,0,'2025-10-15',830,736,0,0,705,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',953,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 11:01:54','','0000-00-00 00:00:00',0),(995,0,0,'H','2526','','',995,0,0,'2025-10-15',831,351,0,0,335,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',954,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 11:04:07','','0000-00-00 00:00:00',0),(996,0,0,'H','2526','','',996,0,0,'2025-10-15',832,737,0,0,706,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',955,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 11:07:06','','0000-00-00 00:00:00',0),(997,0,0,'H','2526','','',997,0,0,'2025-10-15',834,739,0,0,708,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',956,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 11:12:07','','0000-00-00 00:00:00',0),(998,0,0,'H','2526','','',998,0,0,'2025-10-15',829,735,0,0,704,'D',-300.00,0.00,'CSH','','','','','2025-10-15','','',957,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-15 11:14:21','','0000-00-00 00:00:00',0),(999,0,0,'H','2526','','',999,0,0,'2025-10-15',833,738,0,0,707,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',958,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-15 11:20:59','','0000-00-00 00:00:00',0),(1000,0,0,'H','2526','','',1000,0,0,'2025-10-15',837,741,0,0,710,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',959,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 11:21:04','','0000-00-00 00:00:00',0),(1001,0,0,'H','2526','','',1001,0,0,'2025-10-15',836,740,0,0,709,'B',750.00,0.00,'7','SBI BANK','','31256','','0000-00-00','scan ','',960,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 11:24:01','','0000-00-00 00:00:00',0),(1002,0,0,'H','2526','','',1002,0,0,'2025-10-15',838,742,0,0,711,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',961,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 11:24:09','','0000-00-00 00:00:00',0),(1003,0,0,'H','2526','','',1003,0,0,'2025-10-15',839,743,0,0,712,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',962,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 11:24:26','','0000-00-00 00:00:00',0),(1004,0,0,'H','2526','','',1004,0,0,'2025-10-15',840,744,0,0,713,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',963,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 11:25:40','','0000-00-00 00:00:00',0),(1005,0,0,'H','2526','','',1005,0,0,'2025-10-15',842,745,0,0,714,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',964,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 11:30:01','','0000-00-00 00:00:00',0),(1006,0,0,'H','2526','','',1006,0,0,'2025-10-15',843,746,0,0,715,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',965,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 11:31:21','','0000-00-00 00:00:00',0),(1007,0,0,'H','2526','','',1007,0,0,'2025-10-15',826,733,0,0,702,'B',250.00,0.00,'CSH','','','','','0000-00-00','','',966,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-15 11:33:34','','0000-00-00 00:00:00',0),(1008,0,0,'H','2526','','',1008,0,0,'2025-10-15',811,721,0,0,690,'B',4600.00,0.00,'7','BOB','','95029','','0000-00-00','SCAN','',967,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 11:35:14','','0000-00-00 00:00:00',0),(1009,0,0,'H','2526','','P',1009,0,0,'2025-10-15',841,477,0,61,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',1242,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-15 11:35:49','riya','2025-10-16 19:57:30',0),(1010,0,0,'H','2526','','',1010,0,0,'2025-10-15',844,747,0,0,716,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',968,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 11:39:27','','0000-00-00 00:00:00',0),(1011,0,0,'H','2526','','',1011,0,0,'2025-10-15',824,731,0,0,700,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',969,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 11:43:19','','0000-00-00 00:00:00',0),(1012,0,0,'H','2526','','',1012,0,0,'2025-10-15',845,53,0,0,47,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',970,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 11:45:24','','0000-00-00 00:00:00',0),(1013,0,0,'H','2526','','',1013,0,0,'2025-10-15',846,748,0,0,717,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',971,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 11:50:09','','0000-00-00 00:00:00',0),(1014,0,0,'H','2526','','',1014,0,0,'2025-10-15',847,749,0,0,718,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',972,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 11:52:28','','0000-00-00 00:00:00',0),(1015,0,0,'H','2526','','',1015,0,0,'2025-10-15',848,750,0,0,719,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',973,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 11:52:48','','0000-00-00 00:00:00',0),(1016,0,0,'H','2526','','',1016,0,0,'2025-10-15',849,751,0,0,720,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',974,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 11:53:27','','0000-00-00 00:00:00',0),(1017,0,0,'H','2526','','',1017,0,0,'2025-10-15',850,752,0,0,721,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',975,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 11:54:36','','0000-00-00 00:00:00',0),(1018,0,0,'H','2526','','',1018,0,0,'2025-10-15',851,753,0,0,722,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',977,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 11:54:45','','0000-00-00 00:00:00',0),(1019,0,0,'H','2526','','',1019,0,0,'2025-10-15',852,754,0,0,723,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',979,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 12:08:38','','0000-00-00 00:00:00',0),(1020,0,0,'H','2526','','',1020,0,0,'2025-10-15',837,741,0,0,710,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',980,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 12:10:21','','0000-00-00 00:00:00',0),(1021,0,0,'H','2526','','',1021,0,0,'2025-10-15',854,755,0,0,724,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',981,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 12:10:28','','0000-00-00 00:00:00',0),(1022,0,0,'H','2526','','',1022,0,0,'2025-10-15',855,756,0,0,725,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',982,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 12:12:07','','0000-00-00 00:00:00',0),(1023,0,0,'H','2526','','',1023,0,0,'2025-10-15',853,502,0,0,476,'B',800.00,0.00,'7','sbi','','61077','','0000-00-00','scan     ','',983,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 12:12:48','','0000-00-00 00:00:00',0),(1024,0,0,'H','2526','','P',1024,0,0,'2025-10-15',487,71,0,36,0,'A',10500.00,0.00,'7','KOTAK BANK','','565496507430','','0000-00-00','','',984,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-15 12:13:03','vishal','2025-10-15 12:13:31',0),(1025,0,0,'H','2526','','',1025,0,0,'2025-10-15',856,757,0,0,726,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',985,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 12:13:46','','0000-00-00 00:00:00',0),(1026,0,0,'H','2526','','',1026,0,0,'2025-10-15',839,743,0,0,712,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',986,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 12:15:12','','0000-00-00 00:00:00',0),(1027,0,0,'H','2526','','',1027,0,0,'2025-10-15',858,758,0,0,727,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',987,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 12:21:26','','0000-00-00 00:00:00',0),(1028,0,0,'H','2526','','',1028,0,0,'2025-10-15',859,759,0,0,728,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',988,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 12:21:33','','0000-00-00 00:00:00',0),(1029,0,0,'H','2526','','',1029,0,0,'2025-10-15',860,760,0,0,729,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',989,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-15 12:25:01','','0000-00-00 00:00:00',0),(1030,0,0,'H','2526','','',1030,0,0,'2025-10-15',844,747,0,0,716,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',990,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 12:27:36','','0000-00-00 00:00:00',0),(1031,0,0,'H','2526','','',1031,0,0,'2025-10-15',861,761,0,0,730,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',991,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 12:28:18','','0000-00-00 00:00:00',0),(1032,0,0,'H','2526','','',1032,0,0,'2025-10-15',851,753,0,0,722,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',992,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 12:30:40','','0000-00-00 00:00:00',0),(1033,0,0,'H','2526','','',1033,0,0,'2025-10-15',862,762,0,0,731,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',993,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 12:32:06','','0000-00-00 00:00:00',0),(1034,0,0,'H','2526','','',1034,0,0,'2025-10-15',863,763,0,0,732,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',994,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 12:35:52','','0000-00-00 00:00:00',0),(1035,0,0,'H','2526','','',1035,0,0,'2025-10-15',864,764,0,0,733,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',997,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 12:40:43','','0000-00-00 00:00:00',0),(1036,0,0,'H','2526','','',1036,0,0,'2025-10-15',865,765,0,0,734,'B',750.00,0.00,'7','IDBI','','98541','','0000-00-00','scan ','',999,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 12:52:23','','0000-00-00 00:00:00',0),(1037,0,0,'H','2526','','P',1037,0,0,'2025-10-15',216,179,0,16,0,'A',13600.00,0.00,'CSH','','','','','0000-00-00','','',1000,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-15 12:59:48','vishal','2025-10-15 13:00:06',0),(1038,0,0,'H','2526','','',1038,0,0,'2025-10-15',866,766,0,0,735,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1001,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 13:00:18','','0000-00-00 00:00:00',0),(1039,0,0,'H','2526','','',1039,0,0,'2025-10-15',856,757,0,0,726,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',1002,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 13:05:03','','0000-00-00 00:00:00',0),(1040,0,0,'H','2526','','',1040,0,0,'2025-10-15',867,767,0,0,736,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1003,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 13:07:05','','0000-00-00 00:00:00',0),(1041,0,0,'H','2526','','',1041,0,0,'2025-10-15',869,768,0,0,737,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1004,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 13:23:55','','0000-00-00 00:00:00',0),(1042,0,0,'H','2526','','',1042,0,0,'2025-10-15',870,769,0,0,738,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1005,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 13:26:34','','0000-00-00 00:00:00',0),(1043,0,0,'H','2526','','',1043,0,0,'2025-10-15',816,725,0,0,694,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1006,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-15 13:30:20','','0000-00-00 00:00:00',0),(1044,0,0,'H','2526','','P',1044,0,0,'2025-10-15',743,649,0,58,0,'A',3000.00,0.00,'7','HDFC BANK','','893324342135','','0000-00-00','','',1007,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-15 13:31:19','vishal','2025-10-15 13:32:01',0),(1045,0,0,'H','2526','','P',1045,0,0,'2025-10-15',871,752,0,62,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',1295,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-15 13:37:12','vishal','2025-10-17 11:46:32',0),(1046,0,0,'H','2526','','',1046,0,0,'2025-10-15',823,730,0,0,699,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',1009,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 13:48:40','','0000-00-00 00:00:00',0),(1047,0,0,'H','2526','','',1047,0,0,'2025-10-15',868,463,0,0,440,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1010,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 13:50:20','','0000-00-00 00:00:00',0),(1048,0,0,'H','2526','','',1048,0,0,'2025-10-15',867,767,0,0,736,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1011,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 14:03:09','','0000-00-00 00:00:00',0),(1049,0,0,'H','2526','','',1049,0,0,'2025-10-15',870,769,0,0,738,'D',-400.00,0.00,'CSH','','','','','2025-10-15','','',1012,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 14:09:17','','0000-00-00 00:00:00',0),(1050,0,0,'H','2526','','',1050,0,0,'2025-10-15',874,772,0,0,741,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1013,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-15 16:04:22','','0000-00-00 00:00:00',0),(1051,0,0,'H','2526','','',1051,0,0,'2025-10-15',875,773,0,0,742,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1014,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 16:31:33','','0000-00-00 00:00:00',0),(1052,0,0,'H','2526','','',1052,0,0,'2025-10-15',876,774,0,0,743,'B',500.00,0.00,'7','UNION BANK','','17944','','0000-00-00','scan ','',1015,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-15 16:33:47','','0000-00-00 00:00:00',0),(1053,0,0,'H','2526','','',1053,0,0,'2025-10-15',879,777,0,0,746,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1016,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 17:01:20','','0000-00-00 00:00:00',0),(1054,0,0,'H','2526','','',1054,0,0,'2025-10-15',880,778,0,0,747,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1017,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-15 17:02:57','','0000-00-00 00:00:00',0),(1055,0,0,'H','2526','','',1055,0,0,'2025-10-15',881,779,0,0,748,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1018,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 17:07:49','','0000-00-00 00:00:00',0),(1056,0,0,'H','2526','','',1056,0,0,'2025-10-15',883,781,0,0,749,'B',700.00,0.00,'7','tjsb bank','','57039','','0000-00-00','SCAN','',1019,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 17:19:49','','0000-00-00 00:00:00',0),(1057,0,0,'H','2526','','P',1057,0,0,'2025-10-15',882,780,0,63,0,'A',15000.00,0.00,'7','SBI ','','565436760668','','0000-00-00','SCAN','',1477,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-15 17:22:39','riya','2025-10-18 13:15:09',0),(1058,0,0,'H','2526','','',1058,0,0,'2025-10-15',880,778,0,0,747,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',1020,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 17:29:39','','0000-00-00 00:00:00',0),(1059,0,0,'H','2526','','',1059,0,0,'2025-10-15',884,224,0,0,211,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1021,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 17:32:41','','0000-00-00 00:00:00',0),(1060,0,0,'H','2526','','',1060,0,0,'2025-10-15',885,782,0,0,750,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1022,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 17:36:16','','0000-00-00 00:00:00',0),(1061,0,0,'H','2526','','',1061,0,0,'2025-10-15',886,783,0,0,751,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1023,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 17:41:31','','0000-00-00 00:00:00',0),(1062,0,0,'H','2526','','',1062,0,0,'2025-10-15',887,784,0,0,752,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1024,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 17:44:36','','0000-00-00 00:00:00',0),(1063,0,0,'H','2526','','',1063,0,0,'2025-10-15',888,785,0,0,753,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1025,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 17:45:48','','0000-00-00 00:00:00',0),(1064,0,0,'H','2526','','',1064,0,0,'2025-10-15',889,786,0,0,754,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1026,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 17:46:40','','0000-00-00 00:00:00',0),(1065,0,0,'H','2526','','',1065,0,0,'2025-10-15',874,772,0,0,741,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',1027,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 17:48:06','','0000-00-00 00:00:00',0),(1066,0,0,'H','2526','','',1066,0,0,'2025-10-15',890,787,0,0,755,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1028,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 17:50:38','','0000-00-00 00:00:00',0),(1067,0,0,'H','2526','','',1067,0,0,'2025-10-15',891,260,0,0,245,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1029,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 17:50:58','','0000-00-00 00:00:00',0),(1068,0,0,'H','2526','','',1068,0,0,'2025-10-15',892,788,0,0,756,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1030,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 17:52:37','','0000-00-00 00:00:00',0),(1069,0,0,'H','2526','','',1069,0,0,'2025-10-15',893,56,0,0,757,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1031,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 17:55:13','','0000-00-00 00:00:00',0),(1070,0,0,'H','2526','','',1070,0,0,'2025-10-15',894,789,0,0,758,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1032,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 17:59:23','','0000-00-00 00:00:00',0),(1071,0,0,'H','2526','','',1071,0,0,'2025-10-15',883,781,0,0,749,'D',-700.00,0.00,'7','tjsb bank','','57039','','2025-10-15','','',1033,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 18:07:18','','0000-00-00 00:00:00',0),(1072,0,0,'H','2526','','',1072,0,0,'2025-10-15',883,781,0,0,749,'B',600.00,0.00,'7','tjsb bank','','57039','','0000-00-00','SCAN','',1034,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 18:08:23','','0000-00-00 00:00:00',0),(1073,0,0,'H','2526','','',1073,0,0,'2025-10-15',895,554,0,0,528,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1035,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 18:08:55','','0000-00-00 00:00:00',0),(1074,0,0,'H','2526','','',1074,0,0,'2025-10-15',896,790,0,0,759,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1036,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-15 18:09:08','','0000-00-00 00:00:00',0),(1075,0,0,'H','2526','','',1075,0,0,'2025-10-15',897,791,0,0,760,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1037,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 18:12:38','','0000-00-00 00:00:00',0),(1076,0,0,'H','2526','','',1076,0,0,'2025-10-15',898,309,0,0,293,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1038,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 18:13:21','','0000-00-00 00:00:00',0),(1077,0,0,'H','2526','','',1077,0,0,'2025-10-15',899,9,0,0,9,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1039,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 18:15:35','','0000-00-00 00:00:00',0),(1078,0,0,'H','2526','','',1078,0,0,'2025-10-15',900,792,0,0,761,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1040,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 18:16:01','','0000-00-00 00:00:00',0),(1079,0,0,'H','2526','','',1079,0,0,'2025-10-15',901,785,0,0,753,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1041,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 18:17:30','','0000-00-00 00:00:00',0),(1080,0,0,'H','2526','','',1080,0,0,'2025-10-15',893,56,0,0,757,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',1042,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 18:22:01','','0000-00-00 00:00:00',0),(1081,0,0,'H','2526','','',1081,0,0,'2025-10-15',902,793,0,0,762,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1043,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 18:23:53','','0000-00-00 00:00:00',0),(1082,0,0,'H','2526','','',1082,0,0,'2025-10-15',903,794,0,0,763,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1044,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 18:26:42','','0000-00-00 00:00:00',0),(1083,0,0,'H','2526','','',1083,0,0,'2025-10-15',904,795,0,0,764,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1045,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 18:30:06','','0000-00-00 00:00:00',0),(1084,0,0,'H','2526','','',1084,0,0,'2025-10-15',906,796,0,0,765,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1046,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 18:31:30','','0000-00-00 00:00:00',0),(1085,0,0,'H','2526','','',1085,0,0,'2025-10-15',892,788,0,0,756,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1047,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 18:31:47','','0000-00-00 00:00:00',0),(1086,0,0,'H','2526','','',1086,0,0,'2025-10-15',862,762,0,0,731,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1048,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 18:32:36','','0000-00-00 00:00:00',0),(1087,0,0,'H','2526','','',1087,0,0,'2025-10-15',896,790,0,0,759,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1049,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-15 18:33:18','','0000-00-00 00:00:00',0),(1088,0,0,'H','2526','','',1088,0,0,'2025-10-15',890,787,0,0,755,'B',5600.00,0.00,'7','KOTAK','','09454','','0000-00-00','SCAN','',1050,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 18:33:25','','0000-00-00 00:00:00',0),(1089,0,0,'H','2526','','',1089,0,0,'2025-10-15',908,798,0,0,767,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1051,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 18:35:08','','0000-00-00 00:00:00',0),(1090,0,0,'H','2526','','',1090,0,0,'2025-10-15',909,799,0,0,768,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1052,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 18:35:40','','0000-00-00 00:00:00',0),(1091,0,0,'H','2526','','',1091,0,0,'2025-10-15',907,797,0,0,766,'B',500.00,0.00,'7','SBI','','48619','','0000-00-00','SCAN','',1053,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 18:35:51','','0000-00-00 00:00:00',0),(1092,0,0,'H','2526','','',1092,0,0,'2025-10-15',911,801,0,0,770,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1054,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 18:40:04','','0000-00-00 00:00:00',0),(1093,0,0,'H','2526','','',1093,0,0,'2025-10-15',910,800,0,0,769,'B',850.00,0.00,'CSH','','','','','0000-00-00','','',1055,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 18:40:09','','0000-00-00 00:00:00',0),(1094,0,0,'H','2526','','',1094,0,0,'2025-10-15',912,802,0,0,771,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1056,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 18:41:36','','0000-00-00 00:00:00',0),(1095,0,0,'H','2526','','',1095,0,0,'2025-10-15',913,803,0,0,772,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1057,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-15 18:41:44','','0000-00-00 00:00:00',0),(1096,0,0,'H','2526','','',1096,0,0,'2025-10-15',884,224,0,0,211,'D',-300.00,0.00,'CSH','','','','','2025-10-15','','',1058,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 18:44:35','','0000-00-00 00:00:00',0),(1097,0,0,'H','2526','','',1097,0,0,'2025-10-15',915,804,0,0,773,'B',400.00,0.00,'7','axis bank','','84346','','0000-00-00','scan ','',1059,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 18:44:39','','0000-00-00 00:00:00',0),(1098,0,0,'H','2526','','P',1098,0,0,'2025-10-15',645,582,0,46,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',1139,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-15 18:47:51','vishal','2025-10-16 11:51:16',0),(1099,0,0,'H','2526','','',1099,0,0,'2025-10-15',916,805,0,0,774,'B',900.00,0.00,'7','SBI','','64316','','0000-00-00','SCAN','',1060,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 18:50:12','','0000-00-00 00:00:00',0),(1100,0,0,'H','2526','','',1100,0,0,'2025-10-15',917,806,0,0,775,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1061,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 18:51:48','','0000-00-00 00:00:00',0),(1101,0,0,'H','2526','','',1101,0,0,'2025-10-15',917,806,0,0,775,'D',-400.00,0.00,'CSH','','','','','2025-10-15','','',1062,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 18:53:03','','0000-00-00 00:00:00',0),(1102,0,0,'H','2526','','',1102,0,0,'2025-10-15',917,806,0,0,775,'B',400.00,0.00,'7','icici','','40859','','0000-00-00','scan  ','',1063,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 18:53:56','','0000-00-00 00:00:00',0),(1103,0,0,'H','2526','','',1103,0,0,'2025-10-15',918,807,0,0,776,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1064,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 18:54:34','','0000-00-00 00:00:00',0),(1104,0,0,'H','2526','','',1104,0,0,'2025-10-15',906,796,0,0,765,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',1065,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 18:57:54','','0000-00-00 00:00:00',0),(1105,0,0,'H','2526','','',1105,0,0,'2025-10-15',920,808,0,0,777,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1066,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 19:08:35','','0000-00-00 00:00:00',0),(1106,0,0,'H','2526','','',1106,0,0,'2025-10-15',921,809,0,0,778,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1067,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 19:10:29','','0000-00-00 00:00:00',0),(1107,0,0,'H','2526','','',1107,0,0,'2025-10-15',922,151,0,0,140,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1068,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 19:14:13','','0000-00-00 00:00:00',0),(1108,0,0,'H','2526','','',1108,0,0,'2025-10-15',916,805,0,0,774,'B',4900.00,0.00,'7','SBI','','70118','','0000-00-00','SCAN','',1069,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 19:14:50','','0000-00-00 00:00:00',0),(1109,0,0,'H','2526','','',1109,0,0,'2025-10-15',910,800,0,0,769,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1070,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 19:19:49','','0000-00-00 00:00:00',0),(1110,0,0,'H','2526','','',1110,0,0,'2025-10-15',923,810,0,0,779,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1071,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 19:21:58','','0000-00-00 00:00:00',0),(1111,0,0,'H','2526','','',1111,0,0,'2025-10-15',925,812,0,0,781,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1072,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 19:25:18','','0000-00-00 00:00:00',0),(1112,0,0,'H','2526','','',1112,0,0,'2025-10-15',924,811,0,0,780,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1073,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 19:25:48','','0000-00-00 00:00:00',0),(1113,0,0,'H','2526','','',1113,0,0,'2025-10-15',926,813,0,0,782,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1074,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 19:38:03','','0000-00-00 00:00:00',0),(1114,0,0,'H','2526','','',1114,0,0,'2025-10-15',927,814,0,0,783,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1075,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 19:39:05','','0000-00-00 00:00:00',0),(1115,0,0,'H','2526','','',1115,0,0,'2025-10-15',928,815,0,0,784,'B',500.00,0.00,'7','BOB','','36423','','0000-00-00','SCAN','',1076,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 19:43:56','','0000-00-00 00:00:00',0),(1116,0,0,'H','2526','','',1116,0,0,'2025-10-15',929,816,0,0,785,'B',750.00,0.00,'7','icici','','21971','','0000-00-00','scan     ','',1077,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 19:45:09','','0000-00-00 00:00:00',0),(1117,0,0,'H','2526','','P',1117,0,0,'2025-10-15',470,142,0,34,0,'A',19000.00,0.00,'CSH','','','','','0000-00-00','','',1149,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-15 19:47:21','vishal','2025-10-16 12:18:19',0),(1118,0,0,'H','2526','','',1118,0,0,'2025-10-15',929,816,0,0,785,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1078,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 19:53:50','','0000-00-00 00:00:00',0),(1119,0,0,'H','2526','','',1119,0,0,'2025-10-15',930,817,0,0,786,'B',300.00,0.00,'7','IDBI BANK','','88058','','0000-00-00','','',1079,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 20:00:40','','0000-00-00 00:00:00',0),(1120,0,0,'H','2526','','',1120,0,0,'2025-10-15',927,814,0,0,783,'D',-500.00,0.00,'CSH','','','','','2025-10-15','','',1080,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 20:04:17','','0000-00-00 00:00:00',0),(1121,0,0,'H','2526','','',1121,0,0,'2025-10-15',931,818,0,0,787,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1081,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 20:04:40','','0000-00-00 00:00:00',0),(1122,0,0,'H','2526','','',1122,0,0,'2025-10-15',932,819,0,0,788,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1082,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 20:05:44','','0000-00-00 00:00:00',0),(1123,0,0,'H','2526','','P',1123,0,0,'2025-10-15',246,239,0,18,0,'A',10000.00,0.00,'7','SBI ','','381909922331','','0000-00-00','SCAN','',1483,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-15 20:08:38','riya','2025-10-18 13:55:10',0),(1124,0,0,'H','2526','','',1124,0,0,'2025-10-15',933,820,0,0,789,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1083,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 20:08:41','','0000-00-00 00:00:00',0),(1125,0,0,'H','2526','','',1125,0,0,'2025-10-15',926,813,0,0,782,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',1084,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-15 20:11:10','','0000-00-00 00:00:00',0),(1126,0,0,'H','2526','','',1126,0,0,'2025-10-15',934,179,0,0,166,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1085,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-15 20:17:50','','0000-00-00 00:00:00',0),(1127,0,0,'H','2526','','',1127,0,0,'2025-10-15',935,292,0,0,276,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1086,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-15 20:53:26','','0000-00-00 00:00:00',0),(1128,0,0,'H','2526','','',1128,0,0,'2025-10-16',937,792,0,0,761,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',1088,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-16 09:01:19','','0000-00-00 00:00:00',0),(1129,0,0,'H','2526','','',1129,0,0,'2025-10-16',938,821,0,0,790,'B',1100.00,0.00,'7','nagrik bank','','89236','','0000-00-00','scan ','',1089,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-16 09:04:38','','0000-00-00 00:00:00',0),(1130,0,0,'H','2526','','',1130,0,0,'2025-10-16',941,292,0,0,276,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1090,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-16 09:24:02','','0000-00-00 00:00:00',0),(1131,0,0,'H','2526','','P',1131,0,0,'2025-10-16',936,800,0,64,0,'A',15000.00,0.00,'7','hdfc bank','','2186','','0000-00-00','','',1487,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-16 09:24:23','riya','2025-10-18 14:25:45',0),(1132,0,0,'H','2526','','',1132,0,0,'2025-10-16',942,823,0,0,792,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1091,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 09:29:13','','0000-00-00 00:00:00',0),(1133,0,0,'H','2526','','P',1133,0,0,'2025-10-16',939,740,0,65,0,'A',7000.00,0.00,'7','icici bank','','6869','','0000-00-00','','',1519,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-16 09:29:21','vishal','2025-10-20 13:24:38',0),(1134,0,0,'H','2526','','',1134,0,0,'2025-10-16',943,824,0,0,793,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1092,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 09:34:39','','0000-00-00 00:00:00',0),(1135,0,0,'H','2526','','',1135,0,0,'2025-10-16',944,825,0,0,794,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1093,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 09:37:20','','0000-00-00 00:00:00',0),(1136,0,0,'H','2526','','',1136,0,0,'2025-10-16',945,826,0,0,795,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1094,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 09:49:27','','0000-00-00 00:00:00',0),(1137,0,0,'H','2526','','P',1137,0,0,'2025-10-16',574,507,0,44,0,'A',13000.00,0.00,'7','idbi bank','','7947','','0000-00-00','','',1095,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-16 09:54:35','vishal','2025-10-16 09:55:58',0),(1138,0,0,'H','2526','','',1138,0,0,'2025-10-16',946,827,0,0,796,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1096,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 10:11:56','','0000-00-00 00:00:00',0),(1139,0,0,'H','2526','','',1139,0,0,'2025-10-16',947,828,0,0,797,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1097,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 10:17:11','','0000-00-00 00:00:00',0),(1140,0,0,'H','2526','','',1140,0,0,'2025-10-16',948,829,0,0,798,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1098,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 10:20:10','','0000-00-00 00:00:00',0),(1141,0,0,'H','2526','','',1141,0,0,'2025-10-16',949,830,0,0,799,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1099,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 10:22:24','','0000-00-00 00:00:00',0),(1142,0,0,'H','2526','','',1142,0,0,'2025-10-16',950,831,0,0,800,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1100,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 10:24:40','','0000-00-00 00:00:00',0),(1143,0,0,'H','2526','','',1143,0,0,'2025-10-16',951,832,0,0,801,'B',500.00,0.00,'7','icici bank','','82869','','0000-00-00','SCAN','',1101,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 10:30:44','','0000-00-00 00:00:00',0),(1144,0,0,'H','2526','','',1144,0,0,'2025-10-16',952,413,0,0,391,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1102,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 10:32:46','','0000-00-00 00:00:00',0),(1145,0,0,'H','2526','','',1145,0,0,'2025-10-16',953,833,0,0,802,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1103,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 10:34:08','','0000-00-00 00:00:00',0),(1146,0,0,'H','2526','','',1146,0,0,'2025-10-16',954,834,0,0,803,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1104,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 10:35:01','','0000-00-00 00:00:00',0),(1147,0,0,'H','2526','','',1147,0,0,'2025-10-16',955,835,0,0,804,'B',500.00,0.00,'7','BOB','','34295','','0000-00-00','SCAN','',1105,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 10:40:00','','0000-00-00 00:00:00',0),(1148,0,0,'H','2526','','',1148,0,0,'2025-10-16',956,836,0,0,805,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1106,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 10:43:40','','0000-00-00 00:00:00',0),(1149,0,0,'H','2526','','',1149,0,0,'2025-10-16',957,837,0,0,806,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1107,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 10:44:51','','0000-00-00 00:00:00',0),(1150,0,0,'H','2526','','',1150,0,0,'2025-10-16',958,838,0,0,807,'B',750.00,0.00,'7','BOB BANK','','46834','','0000-00-00','scan ','',1108,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 10:47:56','','0000-00-00 00:00:00',0),(1151,0,0,'H','2526','','',1151,0,0,'2025-10-16',959,839,0,0,808,'B',400.00,0.00,'7','sbi','','95632','','0000-00-00','scan     ','',1109,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 10:49:33','','0000-00-00 00:00:00',0),(1152,0,0,'H','2526','','',1152,0,0,'2025-10-16',960,840,0,0,809,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1110,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 10:51:37','','0000-00-00 00:00:00',0),(1153,0,0,'H','2526','','',1153,0,0,'2025-10-16',961,841,0,0,810,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1111,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 10:52:13','','0000-00-00 00:00:00',0),(1154,0,0,'H','2526','','',1154,0,0,'2025-10-16',962,842,0,0,811,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1112,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 10:56:54','','0000-00-00 00:00:00',0),(1155,0,0,'H','2526','','',1155,0,0,'2025-10-16',963,843,0,0,812,'B',500.00,0.00,'7','KOTAK','','37971','','0000-00-00','SCAN','',1113,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 10:59:01','','0000-00-00 00:00:00',0),(1156,0,0,'H','2526','','',1156,0,0,'2025-10-16',940,822,0,0,791,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1114,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 11:05:01','','0000-00-00 00:00:00',0),(1157,0,0,'H','2526','','',1157,0,0,'2025-10-16',965,844,0,0,813,'B',900.00,0.00,'7','HDFC','','34821','','0000-00-00','SCAN','',1115,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 11:07:42','','0000-00-00 00:00:00',0),(1158,0,0,'H','2526','','',1158,0,0,'2025-10-16',966,845,0,0,814,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1116,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 11:09:00','','0000-00-00 00:00:00',0),(1159,0,0,'H','2526','','',1159,0,0,'2025-10-16',967,846,0,0,815,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1117,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 11:13:23','','0000-00-00 00:00:00',0),(1160,0,0,'H','2526','','',1160,0,0,'2025-10-16',968,847,0,0,816,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1118,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 11:14:47','','0000-00-00 00:00:00',0),(1161,0,0,'H','2526','','',1161,0,0,'2025-10-16',969,453,0,0,430,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1119,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 11:17:37','','0000-00-00 00:00:00',0),(1162,0,0,'H','2526','','',1162,0,0,'2025-10-16',970,848,0,0,817,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1121,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 11:25:44','','0000-00-00 00:00:00',0),(1163,0,0,'H','2526','','',1163,0,0,'2025-10-16',971,849,0,0,818,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1122,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 11:26:17','','0000-00-00 00:00:00',0),(1164,0,0,'H','2526','','',1164,0,0,'2025-10-16',950,831,0,0,800,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',1123,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 11:27:20','','0000-00-00 00:00:00',0),(1165,0,0,'H','2526','','',1165,0,0,'2025-10-16',973,851,0,0,820,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1124,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 11:28:26','','0000-00-00 00:00:00',0),(1166,0,0,'H','2526','','',1166,0,0,'2025-10-16',972,850,0,0,819,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1125,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 11:28:32','','0000-00-00 00:00:00',0),(1167,0,0,'H','2526','','',1167,0,0,'2025-10-16',966,845,0,0,814,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1126,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 11:29:07','','0000-00-00 00:00:00',0),(1168,0,0,'H','2526','','',1168,0,0,'2025-10-16',975,852,0,0,821,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1127,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 11:30:48','','0000-00-00 00:00:00',0),(1169,0,0,'H','2526','','',1169,0,0,'2025-10-16',976,853,0,0,822,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1128,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 11:32:04','','0000-00-00 00:00:00',0),(1170,0,0,'H','2526','','',1170,0,0,'2025-10-16',977,854,0,0,823,'B',500.00,0.00,'7','CANARA BANK','','43734','','0000-00-00','SCAN','',1129,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 11:35:26','','0000-00-00 00:00:00',0),(1171,0,0,'H','2526','','',1171,0,0,'2025-10-16',978,855,0,0,824,'B',750.00,0.00,'7','axis bank','','39555','','0000-00-00','scan ','',1130,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 11:37:22','','0000-00-00 00:00:00',0),(1172,0,0,'H','2526','','',1172,0,0,'2025-10-16',974,125,0,0,114,'B',100.00,0.00,'7','bob','','64607','','0000-00-00','scan     ','',1131,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 11:39:07','','0000-00-00 00:00:00',0),(1173,0,0,'H','2526','','P',1173,0,0,'2025-10-16',489,452,0,38,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',1756,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-16 11:40:38','riya','2025-10-25 21:05:07',0),(1174,0,0,'H','2526','','',1174,0,0,'2025-10-16',980,857,0,0,826,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1132,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 11:42:47','','0000-00-00 00:00:00',0),(1175,0,0,'H','2526','','',1175,0,0,'2025-10-16',979,856,0,0,825,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1133,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 11:43:36','','0000-00-00 00:00:00',0),(1176,0,0,'H','2526','','P',1176,0,0,'2025-10-15',690,66,0,55,0,'A',26650.00,0.00,'CSH','','','','','0000-00-00','','',1135,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-16 11:43:57','vishal','2025-10-16 11:44:20',0),(1177,0,0,'H','2526','','',1177,0,0,'2025-10-16',981,858,0,0,827,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1134,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 11:43:57','','0000-00-00 00:00:00',0),(1178,0,0,'H','2526','','',1178,0,0,'2025-10-16',982,859,0,0,828,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1136,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 11:45:41','','0000-00-00 00:00:00',0),(1179,0,0,'H','2526','','',1179,0,0,'2025-10-16',983,860,0,0,829,'B',500.00,0.00,'7','bank','','37973','','0000-00-00','scan ','',1137,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 11:47:32','','0000-00-00 00:00:00',0),(1180,0,0,'H','2526','','',1180,0,0,'2025-10-16',984,861,0,0,830,'B',500.00,0.00,'7','BOB','','57311','','0000-00-00','SCAN','',1138,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 11:48:24','','0000-00-00 00:00:00',0),(1181,0,0,'H','2526','','P',1181,0,0,'2025-10-16',645,582,0,46,0,'A',5700.00,0.00,'CSH','','','','','0000-00-00','','',1139,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-16 11:50:32','vishal','2025-10-16 11:51:16',0),(1182,0,0,'H','2526','','',1182,0,0,'2025-10-16',985,862,0,0,831,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1140,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 11:54:48','','0000-00-00 00:00:00',0),(1183,0,0,'H','2526','','',1183,0,0,'2025-10-16',987,864,0,0,833,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1141,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 12:00:51','','0000-00-00 00:00:00',0),(1184,0,0,'H','2526','','',1184,0,0,'2025-10-16',944,825,0,0,794,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',1143,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 12:03:22','','0000-00-00 00:00:00',0),(1185,0,0,'H','2526','','',1185,0,0,'2025-10-16',988,865,0,0,834,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1144,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 12:13:46','','0000-00-00 00:00:00',0),(1186,0,0,'H','2526','','',1186,0,0,'2025-10-16',986,863,0,0,832,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1145,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 12:14:08','','0000-00-00 00:00:00',0),(1187,0,0,'H','2526','','',1187,0,0,'2025-10-16',989,866,0,0,835,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1146,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 12:14:59','','0000-00-00 00:00:00',0),(1188,0,0,'H','2526','','',1188,0,0,'2025-10-16',946,827,0,0,796,'B',2000.00,0.00,'7','BOB','','86293','','0000-00-00','SCAN','',1147,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 12:16:28','','0000-00-00 00:00:00',0),(1189,0,0,'H','2526','','',1189,0,0,'2025-10-16',990,867,0,0,836,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1148,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-16 12:17:25','','0000-00-00 00:00:00',0),(1190,0,0,'H','2526','','P',1190,0,0,'2025-10-16',470,142,0,34,0,'A',2000.00,0.00,'CSH','','','','','0000-00-00','','',1149,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-16 12:17:58','vishal','2025-10-16 12:18:19',0),(1191,0,0,'H','2526','','',1191,0,0,'2025-10-16',991,868,0,0,837,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1150,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 12:20:02','','0000-00-00 00:00:00',0),(1192,0,0,'H','2526','','',1192,0,0,'2025-10-16',992,869,0,0,838,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1151,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 12:24:16','','0000-00-00 00:00:00',0),(1193,0,0,'H','2526','','',1193,0,0,'2025-10-16',994,871,0,0,840,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1152,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 12:28:27','','0000-00-00 00:00:00',0),(1194,0,0,'H','2526','','',1194,0,0,'2025-10-16',996,873,0,0,842,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1154,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 12:33:48','','0000-00-00 00:00:00',0),(1195,0,0,'H','2526','','',1195,0,0,'2025-10-16',995,872,0,0,841,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1155,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-16 12:34:02','','0000-00-00 00:00:00',0),(1196,0,0,'H','2526','','',1196,0,0,'2025-10-16',998,875,0,0,844,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1156,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 12:51:34','','0000-00-00 00:00:00',0),(1197,0,0,'H','2526','','',1197,0,0,'2025-10-16',999,876,0,0,845,'B',500.00,0.00,'7','kotak','','97356','','0000-00-00','scan  ','',1157,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 12:54:23','','0000-00-00 00:00:00',0),(1198,0,0,'H','2526','','',1198,0,0,'2025-10-16',981,858,0,0,827,'B',4000.00,0.00,'7','HDFC','','65733','','0000-00-00','SCAN','',1158,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 12:55:37','','0000-00-00 00:00:00',0),(1199,0,0,'H','2526','','P',1199,0,0,'2025-10-16',803,714,0,59,0,'A',3000.00,0.00,'7','icici bank','','2424','','0000-00-00','','',1159,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-16 12:56:08','vishal','2025-10-16 12:56:44',0),(1200,0,0,'H','2526','','',1200,0,0,'2025-10-16',993,870,0,0,839,'B',300.00,0.00,'7','AXIS','','58676','','0000-00-00','scan','',1160,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-16 13:12:13','','0000-00-00 00:00:00',0),(1201,0,0,'H','2526','','',1201,0,0,'2025-10-16',1000,877,0,0,846,'B',750.00,0.00,'7','axis bank','','63777','','0000-00-00','scan  ','',1161,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 13:14:22','','0000-00-00 00:00:00',0),(1202,0,0,'H','2526','','',1202,0,0,'2025-10-16',1001,179,0,0,166,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1162,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 13:25:21','','0000-00-00 00:00:00',0),(1203,0,0,'H','2526','','',1203,0,0,'2025-10-16',986,863,0,0,832,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',1163,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 13:25:57','','0000-00-00 00:00:00',0),(1204,0,0,'H','2526','','',1204,0,0,'2025-10-16',1001,179,0,0,166,'D',-500.00,0.00,'CSH','','','','','2025-10-16','','',1164,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 13:26:42','','0000-00-00 00:00:00',0),(1205,0,0,'H','2526','','',1205,0,0,'2025-10-16',1001,179,0,0,166,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1165,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 13:27:41','','0000-00-00 00:00:00',0),(1206,0,0,'H','2526','','',1206,0,0,'2025-10-16',1002,878,0,0,847,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1166,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 13:28:21','','0000-00-00 00:00:00',0),(1207,0,0,'H','2526','','',1207,0,0,'2025-10-16',953,833,0,0,802,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',1167,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 13:32:56','','0000-00-00 00:00:00',0),(1208,0,0,'H','2526','','',1208,0,0,'2025-10-16',965,844,0,0,813,'B',4400.00,0.00,'7','HDFC','','41283','','0000-00-00','SCAN','',1168,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 14:02:30','','0000-00-00 00:00:00',0),(1209,0,0,'H','2526','','',1209,0,0,'2025-10-16',1003,865,0,0,834,'B',1500.00,0.00,'7','nagrik bank','','65187','','0000-00-00','scan ','',1169,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 14:13:04','','0000-00-00 00:00:00',0),(1210,0,0,'H','2526','','',1210,0,0,'2025-10-16',1005,880,0,0,848,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1170,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 14:40:47','','0000-00-00 00:00:00',0),(1211,0,0,'H','2526','','',1211,0,0,'2025-10-16',992,869,0,0,838,'B',2500.00,0.00,'CSH','','','','','0000-00-00','','',1171,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 14:45:19','','0000-00-00 00:00:00',0),(1212,0,0,'H','2526','','',1212,0,0,'2025-10-16',1006,881,0,0,849,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',1172,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 15:02:45','','0000-00-00 00:00:00',0),(1213,0,0,'H','2526','','',1213,0,0,'2025-10-16',997,874,0,0,843,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1173,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 15:04:10','','0000-00-00 00:00:00',0),(1214,0,0,'H','2526','','',1214,0,0,'2025-10-16',953,833,0,0,802,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',1174,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-16 15:31:04','','0000-00-00 00:00:00',0),(1215,0,0,'H','2526','','',1215,0,0,'2025-10-16',1007,882,0,0,850,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1175,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 16:37:19','','0000-00-00 00:00:00',0),(1216,0,0,'H','2526','','',1216,0,0,'2025-10-16',1008,883,0,0,851,'B',500.00,0.00,'7','axis','','90472','','0000-00-00','SCAN','',1176,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 16:48:56','','0000-00-00 00:00:00',0),(1217,0,0,'H','2526','','',1217,0,0,'2025-10-16',1009,884,0,0,852,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1177,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 16:54:44','','0000-00-00 00:00:00',0),(1218,0,0,'H','2526','','',1218,0,0,'2025-10-16',1010,885,0,0,853,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1178,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 17:00:26','','0000-00-00 00:00:00',0),(1219,0,0,'H','2526','','',1219,0,0,'2025-10-16',1012,887,0,0,855,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1179,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 17:11:19','','0000-00-00 00:00:00',0),(1220,0,0,'H','2526','','',1220,0,0,'2025-10-16',1014,889,0,0,857,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1180,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 17:21:10','','0000-00-00 00:00:00',0),(1221,0,0,'H','2526','','',1221,0,0,'2025-10-16',1015,890,0,0,858,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1181,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 17:24:08','','0000-00-00 00:00:00',0),(1222,0,0,'H','2526','','',1222,0,0,'2025-10-16',1016,891,0,0,859,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1182,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-16 17:35:12','','0000-00-00 00:00:00',0),(1223,0,0,'H','2526','','',1223,0,0,'2025-10-16',1019,894,0,0,862,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1183,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 17:36:38','','0000-00-00 00:00:00',0),(1224,0,0,'H','2526','','',1224,0,0,'2025-10-16',1018,893,0,0,861,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1184,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 17:36:44','','0000-00-00 00:00:00',0),(1225,0,0,'H','2526','','',1225,0,0,'2025-10-16',1020,808,0,0,777,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',1185,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 17:38:16','','0000-00-00 00:00:00',0),(1226,0,0,'H','2526','','',1226,0,0,'2025-10-16',1017,892,0,0,860,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1186,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 17:40:59','','0000-00-00 00:00:00',0),(1227,0,0,'H','2526','','',1227,0,0,'2025-10-16',1023,897,0,0,865,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1187,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 17:44:05','','0000-00-00 00:00:00',0),(1228,0,0,'H','2526','','',1228,0,0,'2025-10-16',1026,899,0,0,867,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1188,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 17:46:54','','0000-00-00 00:00:00',0),(1229,0,0,'H','2526','','',1229,0,0,'2025-10-16',1024,319,0,0,303,'B',100.00,0.00,'7','kotak','','89091','','0000-00-00','scan     ','',1189,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 17:47:41','','0000-00-00 00:00:00',0),(1230,0,0,'H','2526','','',1230,0,0,'2025-10-16',1027,900,0,0,868,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1190,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 17:50:14','','0000-00-00 00:00:00',0),(1231,0,0,'H','2526','','',1231,0,0,'2025-10-16',1029,902,0,0,870,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1191,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 17:52:23','','0000-00-00 00:00:00',0),(1232,0,0,'H','2526','','',1232,0,0,'2025-10-16',1028,901,0,0,869,'B',900.00,0.00,'7','SBI','','86928','','0000-00-00','SCAN','',1192,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 17:52:38','','0000-00-00 00:00:00',0),(1233,0,0,'H','2526','','',1233,0,0,'2025-10-16',1030,903,0,0,871,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1193,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 17:53:29','','0000-00-00 00:00:00',0),(1234,0,0,'H','2526','','',1234,0,0,'2025-10-16',1031,904,0,0,872,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1194,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 17:54:59','','0000-00-00 00:00:00',0),(1235,0,0,'H','2526','','',1235,0,0,'2025-10-16',1032,905,0,0,873,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1195,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 17:57:57','','0000-00-00 00:00:00',0),(1236,0,0,'H','2526','','',1236,0,0,'2025-10-16',1025,898,0,0,866,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1196,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-16 17:58:19','','0000-00-00 00:00:00',0),(1237,0,0,'H','2526','','',1237,0,0,'2025-10-16',1033,906,0,0,874,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1197,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 18:00:24','','0000-00-00 00:00:00',0),(1238,0,0,'H','2526','','',1238,0,0,'2025-10-16',1034,907,0,0,875,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1198,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 18:00:27','','0000-00-00 00:00:00',0),(1239,0,0,'H','2526','','',1239,0,0,'2025-10-16',1035,908,0,0,876,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1199,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 18:03:06','','0000-00-00 00:00:00',0),(1240,0,0,'H','2526','','',1240,0,0,'2025-10-16',1036,909,0,0,877,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1200,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 18:06:01','','0000-00-00 00:00:00',0),(1241,0,0,'H','2526','','',1241,0,0,'2025-10-16',1038,911,0,0,879,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1201,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 18:08:01','','0000-00-00 00:00:00',0),(1242,0,0,'H','2526','','',1242,0,0,'2025-10-16',1016,891,0,0,859,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1202,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-16 18:08:21','','0000-00-00 00:00:00',0),(1243,0,0,'H','2526','','',1243,0,0,'2025-10-16',1039,912,0,0,880,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1203,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 18:08:41','','0000-00-00 00:00:00',0),(1244,0,0,'H','2526','','',1244,0,0,'2025-10-16',1014,889,0,0,857,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',1204,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 18:11:39','','0000-00-00 00:00:00',0),(1245,0,0,'H','2526','','',1245,0,0,'2025-10-16',1040,376,0,0,360,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1205,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 18:13:05','','0000-00-00 00:00:00',0),(1246,0,0,'H','2526','','',1246,0,0,'2025-10-16',1041,68,0,0,57,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1206,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 18:15:54','','0000-00-00 00:00:00',0),(1247,0,0,'H','2526','','',1247,0,0,'2025-10-16',1015,890,0,0,858,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1207,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 18:18:15','','0000-00-00 00:00:00',0),(1248,0,0,'H','2526','','',1248,0,0,'2025-10-16',1043,913,0,0,881,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1208,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-16 18:27:00','','0000-00-00 00:00:00',0),(1249,0,0,'H','2526','','',1249,0,0,'2025-10-16',1044,914,0,0,882,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1209,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 18:27:42','','0000-00-00 00:00:00',0),(1250,0,0,'H','2526','','',1250,0,0,'2025-10-16',1016,891,0,0,859,'D',-500.00,0.00,'CSH','','','','','2025-10-16','','',1210,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-16 18:29:05','','0000-00-00 00:00:00',0),(1251,0,0,'H','2526','','',1251,0,0,'2025-10-16',1045,915,0,0,883,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1211,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 18:29:58','','0000-00-00 00:00:00',0),(1252,0,0,'H','2526','','',1252,0,0,'2025-10-16',1046,916,0,0,884,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1213,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 18:33:10','','0000-00-00 00:00:00',0),(1253,0,0,'H','2526','','',1253,0,0,'2025-10-16',1034,907,0,0,875,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',1215,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 18:35:43','','0000-00-00 00:00:00',0),(1254,0,0,'H','2526','','',1254,0,0,'2025-10-16',1029,902,0,0,870,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',1216,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 18:39:05','','0000-00-00 00:00:00',0),(1255,0,0,'H','2526','','',1255,0,0,'2025-10-16',1047,917,0,0,885,'B',500.00,0.00,'7','KOTAK','','15877','','0000-00-00','SCAN','',1218,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 18:41:46','','0000-00-00 00:00:00',0),(1256,0,0,'H','2526','','',1256,0,0,'2025-10-16',1048,234,0,0,221,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',1219,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 18:44:13','','0000-00-00 00:00:00',0),(1257,0,0,'H','2526','','',1257,0,0,'2025-10-16',1051,45,0,0,41,'B',400.00,0.00,'7','SBI BANK','','17649','','0000-00-00','scan ','',1220,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 18:51:39','','0000-00-00 00:00:00',0),(1258,0,0,'H','2526','','',1258,0,0,'2025-10-16',1052,920,0,0,888,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1221,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 18:51:42','','0000-00-00 00:00:00',0),(1259,0,0,'H','2526','','',1259,0,0,'2025-10-16',1053,921,0,0,889,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1222,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 18:52:55','','0000-00-00 00:00:00',0),(1260,0,0,'H','2526','','',1260,0,0,'2025-10-16',1055,922,0,0,890,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1223,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 18:54:13','','0000-00-00 00:00:00',0),(1261,0,0,'H','2526','','P',1261,0,0,'2025-10-16',809,720,0,60,0,'A',3000.00,0.00,'7','SBI ','','528948898505','','0000-00-00','SCAN','',1225,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-16 18:54:54','riya','2025-10-16 18:55:58',0),(1262,0,0,'H','2526','','',1262,0,0,'2025-10-16',1022,896,0,0,864,'B',200.00,0.00,'7','AXIS','','75452','','0000-00-00','SCAN','',1224,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 18:55:28','','0000-00-00 00:00:00',0),(1263,0,0,'H','2526','','',1263,0,0,'2025-10-16',1056,923,0,0,891,'B',500.00,0.00,'7','fedral bank','','29629','','0000-00-00','scan ','',1226,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 18:56:25','','0000-00-00 00:00:00',0),(1264,0,0,'H','2526','','',1264,0,0,'2025-10-16',1055,922,0,0,890,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',1227,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 18:57:32','','0000-00-00 00:00:00',0),(1265,0,0,'H','2526','','',1265,0,0,'2025-10-16',1057,924,0,0,892,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1228,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 18:58:52','','0000-00-00 00:00:00',0),(1266,0,0,'H','2526','','',1266,0,0,'2025-10-16',1059,925,0,0,893,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1229,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 19:02:21','','0000-00-00 00:00:00',0),(1267,0,0,'H','2526','','',1267,0,0,'2025-10-16',1060,926,0,0,894,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1230,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 19:03:12','','0000-00-00 00:00:00',0),(1268,0,0,'H','2526','','',1268,0,0,'2025-10-16',1061,927,0,0,895,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1231,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 19:03:32','','0000-00-00 00:00:00',0),(1269,0,0,'H','2526','','',1269,0,0,'2025-10-16',1063,928,0,0,896,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1233,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 19:07:37','','0000-00-00 00:00:00',0),(1270,0,0,'H','2526','','',1270,0,0,'2025-10-16',1064,758,0,0,727,'B',500.00,0.00,'7','sbi','','93248','','0000-00-00','scan  ','',1234,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 19:17:25','','0000-00-00 00:00:00',0),(1271,0,0,'H','2526','','P',1271,0,0,'2025-10-16',1004,879,0,66,0,'A',15000.00,0.00,'2','icici bank','','3159','','0000-00-00','CARD','',1494,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-16 19:23:42','riya','2025-10-18 17:51:53',0),(1272,0,0,'H','2526','','',1272,0,0,'2025-10-16',1054,603,0,0,575,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1235,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 19:25:46','','0000-00-00 00:00:00',0),(1273,0,0,'H','2526','','',1273,0,0,'2025-10-16',1065,929,0,0,897,'B',400.00,0.00,'7','ICICI','','00000','','0000-00-00','scan ','',1236,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 19:32:31','','0000-00-00 00:00:00',0),(1274,0,0,'H','2526','','',1274,0,0,'2025-10-16',1066,930,0,0,898,'B',400.00,0.00,'7','ICICI','','00000','','0000-00-00','scan ','',1237,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-16 19:36:37','','0000-00-00 00:00:00',0),(1275,0,0,'H','2526','','',1275,0,0,'2025-10-16',1067,64,0,0,54,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1238,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 19:46:42','','0000-00-00 00:00:00',0),(1276,0,0,'H','2526','','',1276,0,0,'2025-10-16',1058,129,0,0,118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1239,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 19:47:17','','0000-00-00 00:00:00',0),(1277,0,0,'H','2526','','',1277,0,0,'2025-10-16',1068,931,0,0,899,'B',900.00,0.00,'7','icici bank','','02710','','0000-00-00','SCAN','',1240,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-16 19:50:26','','0000-00-00 00:00:00',0),(1278,0,0,'H','2526','','',1278,0,0,'2025-10-16',1069,926,0,0,900,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1241,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-16 19:54:52','','0000-00-00 00:00:00',0),(1279,0,0,'H','2526','','P',1279,0,0,'2025-10-16',841,477,0,61,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',1242,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-16 19:56:36','riya','2025-10-16 19:57:30',0),(1280,0,0,'H','2526','','P',1280,0,0,'2025-10-16',224,127,0,17,0,'A',23250.00,0.00,'7','rajkot nagrik bank','','022374764730','','0000-00-00','SCAN','',1243,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-16 20:01:51','riya','2025-10-16 20:02:19',0),(1281,0,0,'H','2526','','',1281,0,0,'2025-10-16',1070,292,0,0,276,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1244,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-16 20:02:34','','0000-00-00 00:00:00',0),(1282,0,0,'H','2526','','',1282,0,0,'2025-10-16',1071,932,0,0,901,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1245,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-16 20:10:43','','0000-00-00 00:00:00',0),(1283,0,0,'H','2526','','P',1283,0,0,'2025-10-16',414,392,0,25,0,'A',32000.00,0.00,'CRD','ICICI BANK','','3160','','0000-00-00','CARD','',2614,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-16 20:45:50','vishal','2025-11-01 15:09:18',0),(1284,0,0,'H','2526','','',1284,0,0,'2025-10-17',1073,932,0,0,901,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',1246,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-17 09:03:57','','0000-00-00 00:00:00',0),(1285,0,0,'H','2526','','',1285,0,0,'2025-10-17',1074,179,0,0,166,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1247,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-17 09:09:19','','0000-00-00 00:00:00',0),(1286,0,0,'H','2526','','',1286,0,0,'2025-10-17',1075,934,0,0,902,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',1248,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-17 09:11:26','','0000-00-00 00:00:00',0),(1287,0,0,'H','2526','','',1287,0,0,'2025-10-17',1076,935,0,0,903,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',1249,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-17 09:13:08','','0000-00-00 00:00:00',0),(1288,0,0,'H','2526','','',1288,0,0,'2025-10-17',1077,936,0,0,904,'B',100.00,0.00,'7','IDBI','','17424','','0000-00-00','scan ','',1250,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-17 09:17:01','','0000-00-00 00:00:00',0),(1289,0,0,'H','2526','','',1289,0,0,'2025-10-17',1078,937,0,0,905,'B',400.00,0.00,'7','kotak','','99002','','0000-00-00','scan     ','',1251,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 09:19:51','','0000-00-00 00:00:00',0),(1290,0,0,'H','2526','','',1290,0,0,'2025-10-17',1079,63,0,0,906,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1252,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 09:23:29','','0000-00-00 00:00:00',0),(1291,0,0,'H','2526','','',1291,0,0,'2025-10-17',1080,938,0,0,907,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1253,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 09:31:01','','0000-00-00 00:00:00',0),(1292,0,0,'H','2526','','',1292,0,0,'2025-10-17',1081,939,0,0,908,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1255,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 09:45:29','','0000-00-00 00:00:00',0),(1293,0,0,'H','2526','','',1293,0,0,'2025-10-17',1082,940,0,0,909,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1256,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 09:48:36','','0000-00-00 00:00:00',0),(1294,0,0,'H','2526','','',1294,0,0,'2025-10-17',1083,941,0,0,910,'B',300.00,0.00,'7','sbi','','03853','','0000-00-00','scan  ','',1257,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 09:50:33','','0000-00-00 00:00:00',0),(1295,0,0,'H','2526','','',1295,0,0,'2025-10-17',1084,220,0,0,207,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1258,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 09:55:16','','0000-00-00 00:00:00',0),(1296,0,0,'H','2526','','',1296,0,0,'2025-10-17',1085,942,0,0,911,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1259,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 10:02:34','','0000-00-00 00:00:00',0),(1297,0,0,'H','2526','','',1297,0,0,'2025-10-17',1086,943,0,0,912,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1260,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 10:05:55','','0000-00-00 00:00:00',0),(1298,0,0,'H','2526','','',1298,0,0,'2025-10-17',1087,370,0,0,354,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1261,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-17 10:13:35','','0000-00-00 00:00:00',0),(1299,0,0,'H','2526','','',1299,0,0,'2025-10-17',1088,944,0,0,913,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1262,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 10:13:44','','0000-00-00 00:00:00',0),(1300,0,0,'H','2526','','',1300,0,0,'2025-10-17',1089,945,0,0,914,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1263,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 10:23:15','','0000-00-00 00:00:00',0),(1301,0,0,'H','2526','','',1301,0,0,'2025-10-17',1090,946,0,0,915,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1264,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 10:23:22','','0000-00-00 00:00:00',0),(1302,0,0,'H','2526','','',1302,0,0,'2025-10-17',1091,506,0,0,480,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1265,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 10:25:14','','0000-00-00 00:00:00',0),(1303,0,0,'H','2526','','',1303,0,0,'2025-10-17',1093,948,0,0,917,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1266,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 10:32:35','','0000-00-00 00:00:00',0),(1304,0,0,'H','2526','','',1304,0,0,'2025-10-17',1094,949,0,0,918,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1267,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 10:48:20','','0000-00-00 00:00:00',0),(1305,0,0,'H','2526','','',1305,0,0,'2025-10-17',1095,950,0,0,919,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1268,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 10:51:35','','0000-00-00 00:00:00',0),(1306,0,0,'H','2526','','',1306,0,0,'2025-10-17',1097,952,0,0,921,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1269,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 10:51:58','','0000-00-00 00:00:00',0),(1307,0,0,'H','2526','','',1307,0,0,'2025-10-17',1096,951,0,0,920,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1270,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 10:52:07','','0000-00-00 00:00:00',0),(1308,0,0,'H','2526','','',1308,0,0,'2025-10-17',1098,953,0,0,922,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1271,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 10:54:06','','0000-00-00 00:00:00',0),(1309,0,0,'H','2526','','',1309,0,0,'2025-10-17',1092,947,0,0,916,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1272,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 10:55:15','','0000-00-00 00:00:00',0),(1310,0,0,'H','2526','','',1310,0,0,'2025-10-17',1100,955,0,0,924,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1273,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 10:57:30','','0000-00-00 00:00:00',0),(1311,0,0,'H','2526','','',1311,0,0,'2025-10-17',1101,956,0,0,925,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1274,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 10:59:16','','0000-00-00 00:00:00',0),(1312,0,0,'H','2526','','',1312,0,0,'2025-10-17',1102,957,0,0,926,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1275,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 11:00:20','','0000-00-00 00:00:00',0),(1313,0,0,'H','2526','','',1313,0,0,'2025-10-17',1088,944,0,0,913,'B',4400.00,0.00,'CRD','HDFC','79101','79101','','0000-00-00','CARD','',1276,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 11:11:21','','0000-00-00 00:00:00',0),(1314,0,0,'H','2526','','',1314,0,0,'2025-10-17',1103,958,0,0,927,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1277,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 11:12:50','','0000-00-00 00:00:00',0),(1315,0,0,'H','2526','','',1315,0,0,'2025-10-17',1104,959,0,0,928,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1278,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 11:14:38','','0000-00-00 00:00:00',0),(1316,0,0,'H','2526','','',1316,0,0,'2025-10-17',1105,960,0,0,929,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1279,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 11:18:34','','0000-00-00 00:00:00',0),(1317,0,0,'H','2526','','',1317,0,0,'2025-10-17',1099,954,0,0,923,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1280,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-17 11:19:33','','0000-00-00 00:00:00',0),(1318,0,0,'H','2526','','',1318,0,0,'2025-10-17',1106,489,0,0,463,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1281,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 11:19:45','','0000-00-00 00:00:00',0),(1319,0,0,'H','2526','','',1319,0,0,'2025-10-17',1107,961,0,0,930,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1282,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 11:21:31','','0000-00-00 00:00:00',0),(1320,0,0,'H','2526','','',1320,0,0,'2025-10-17',1108,962,0,0,931,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1283,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 11:21:41','','0000-00-00 00:00:00',0),(1321,0,0,'H','2526','','',1321,0,0,'2025-10-17',1109,47,0,0,43,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1284,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 11:23:26','','0000-00-00 00:00:00',0),(1322,0,0,'H','2526','','',1322,0,0,'2025-10-17',1096,951,0,0,920,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1285,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 11:24:20','','0000-00-00 00:00:00',0),(1323,0,0,'H','2526','','',1323,0,0,'2025-10-17',1087,370,0,0,354,'D',-300.00,0.00,'CSH','','','','','2025-10-17','','',1286,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-17 11:25:56','','0000-00-00 00:00:00',0),(1324,0,0,'H','2526','','',1324,0,0,'2025-10-17',1079,63,0,0,906,'D',-300.00,0.00,'CSH','','','','','2025-10-17','','',1287,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 11:29:24','','0000-00-00 00:00:00',0),(1325,0,0,'H','2526','','',1325,0,0,'2025-10-17',1111,964,0,0,933,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1288,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 11:34:06','','0000-00-00 00:00:00',0),(1326,0,0,'H','2526','','',1326,0,0,'2025-10-17',1112,965,0,0,934,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1289,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 11:34:39','','0000-00-00 00:00:00',0),(1327,0,0,'H','2526','','',1327,0,0,'2025-10-17',1113,966,0,0,935,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1290,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 11:38:05','','0000-00-00 00:00:00',0),(1328,0,0,'H','2526','','',1328,0,0,'2025-10-17',1115,968,0,0,937,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1291,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 11:40:49','','0000-00-00 00:00:00',0),(1329,0,0,'H','2526','','',1329,0,0,'2025-10-17',1116,969,0,0,938,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1292,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 11:42:14','','0000-00-00 00:00:00',0),(1330,0,0,'H','2526','','',1330,0,0,'2025-10-17',1117,970,0,0,939,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1293,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 11:42:36','','0000-00-00 00:00:00',0),(1331,0,0,'H','2526','','',1331,0,0,'2025-10-17',1114,967,0,0,936,'B',400.00,0.00,'7','sbi','','56638','','0000-00-00','scan     ','',1294,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 11:45:27','','0000-00-00 00:00:00',0),(1332,0,0,'H','2526','','P',1332,0,0,'2025-10-17',871,752,0,62,0,'A',6600.00,0.00,'CSH','','','','','0000-00-00','','',1295,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-17 11:45:59','vishal','2025-10-17 11:46:32',0),(1333,0,0,'H','2526','','',1333,0,0,'2025-10-17',1085,942,0,0,911,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',1296,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 11:49:58','','0000-00-00 00:00:00',0),(1334,0,0,'H','2526','','',1334,0,0,'2025-10-17',1118,971,0,0,940,'B',500.00,0.00,'7','SBI','','44021','','0000-00-00','SCAN','',1297,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 11:53:06','','0000-00-00 00:00:00',0),(1335,0,0,'H','2526','','',1335,0,0,'2025-10-17',1119,972,0,0,941,'B',500.00,0.00,'7','SBI','','72074','','0000-00-00','scan','',1298,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-17 11:53:40','','0000-00-00 00:00:00',0),(1336,0,0,'H','2526','','',1336,0,0,'2025-10-17',1120,973,0,0,942,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1299,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 11:59:23','','0000-00-00 00:00:00',0),(1337,0,0,'H','2526','','',1337,0,0,'2025-10-17',1121,974,0,0,943,'B',500.00,0.00,'7','ICICI','','36012','','0000-00-00','SCAN','',1300,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 12:02:09','','0000-00-00 00:00:00',0),(1338,0,0,'H','2526','','',1338,0,0,'2025-10-17',1119,972,0,0,941,'B',400.00,0.00,'7','SBI','','54751','','0000-00-00','scan','',1301,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-17 12:03:59','','0000-00-00 00:00:00',0),(1339,0,0,'H','2526','','',1339,0,0,'2025-10-17',1122,975,0,0,944,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1302,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 12:04:05','','0000-00-00 00:00:00',0),(1340,0,0,'H','2526','','',1340,0,0,'2025-10-17',1123,976,0,0,945,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1303,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 12:04:34','','0000-00-00 00:00:00',0),(1341,0,0,'H','2526','','',1341,0,0,'2025-10-17',1124,610,0,0,579,'B',300.00,0.00,'7','ISBANK','','38306','','0000-00-00','scan','',1304,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-17 12:08:37','','0000-00-00 00:00:00',0),(1342,0,0,'H','2526','','',1342,0,0,'2025-10-17',1125,611,0,0,580,'B',300.00,0.00,'7','ISBANK','','38306','','0000-00-00','scan','',1305,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-17 12:09:34','','0000-00-00 00:00:00',0),(1343,0,0,'H','2526','','',1343,0,0,'2025-10-17',1126,977,0,0,946,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1306,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 12:09:53','','0000-00-00 00:00:00',0),(1344,0,0,'H','2526','','',1344,0,0,'2025-10-17',1127,507,0,0,481,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',1307,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 12:11:51','','0000-00-00 00:00:00',0),(1345,0,0,'H','2526','','',1345,0,0,'2025-10-17',1128,919,0,0,887,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1308,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 12:12:07','','0000-00-00 00:00:00',0),(1346,0,0,'H','2526','','',1346,0,0,'2025-10-17',1129,978,0,0,947,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1309,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 12:12:53','','0000-00-00 00:00:00',0),(1347,0,0,'H','2526','','',1347,0,0,'2025-10-17',1130,979,0,0,948,'B',700.00,0.00,'7','sbi','','50091','','0000-00-00','scan  ','',1310,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 12:15:47','','0000-00-00 00:00:00',0),(1348,0,0,'H','2526','','',1348,0,0,'2025-10-17',1126,977,0,0,946,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',1311,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 12:18:28','','0000-00-00 00:00:00',0),(1349,0,0,'H','2526','','',1349,0,0,'2025-10-17',1131,980,0,0,949,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1312,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 12:20:44','','0000-00-00 00:00:00',0),(1350,0,0,'H','2526','','',1350,0,0,'2025-10-17',1133,982,0,0,951,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1313,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 12:30:53','','0000-00-00 00:00:00',0),(1351,0,0,'H','2526','','',1351,0,0,'2025-10-17',1132,981,0,0,950,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1314,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 12:31:57','','0000-00-00 00:00:00',0),(1352,0,0,'H','2526','','',1352,0,0,'2025-10-17',1130,979,0,0,948,'D',-700.00,0.00,'7','sbi','','50091','','2025-10-17','SCAN                          ','',1315,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 12:36:24','','0000-00-00 00:00:00',0),(1353,0,0,'H','2526','','',1353,0,0,'2025-10-17',1134,276,0,0,259,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1316,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 12:37:53','','0000-00-00 00:00:00',0),(1354,0,0,'H','2526','','',1354,0,0,'2025-10-17',1135,387,0,0,370,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1317,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 12:38:52','','0000-00-00 00:00:00',0),(1355,0,0,'H','2526','','',1355,0,0,'2025-10-17',1130,979,0,0,948,'B',800.00,0.00,'7','sbi','','73112','','0000-00-00','scan  ','',1318,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 12:40:21','','0000-00-00 00:00:00',0),(1356,0,0,'H','2526','','',1356,0,0,'2025-10-17',1136,983,0,0,952,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1319,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 12:41:39','','0000-00-00 00:00:00',0),(1357,0,0,'H','2526','','',1357,0,0,'2025-10-17',1137,984,0,0,953,'B',500.00,0.00,'7','hdfc','','73241','','0000-00-00','scan ','',1320,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 12:43:53','','0000-00-00 00:00:00',0),(1358,0,0,'H','2526','','',1358,0,0,'2025-10-17',1116,969,0,0,938,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1321,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 12:43:56','','0000-00-00 00:00:00',0),(1359,0,0,'H','2526','','',1359,0,0,'2025-10-17',1138,985,0,0,954,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1322,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 12:44:44','','0000-00-00 00:00:00',0),(1360,0,0,'H','2526','','',1360,0,0,'2025-10-17',1095,950,0,0,919,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',1323,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 12:53:51','','0000-00-00 00:00:00',0),(1361,0,0,'H','2526','','',1361,0,0,'2025-10-17',1139,293,0,0,277,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1324,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 13:05:57','','0000-00-00 00:00:00',0),(1362,0,0,'H','2526','','',1362,0,0,'2025-10-17',1129,978,0,0,947,'B',6000.00,0.00,'CRD','ICICI','18688','18688','','0000-00-00','CARD','',1325,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 13:08:11','','0000-00-00 00:00:00',0),(1363,0,0,'H','2526','','P',1363,0,0,'2025-10-17',1140,969,0,68,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',1489,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-17 13:12:32','riya','2025-10-18 16:10:49',0),(1364,0,0,'H','2526','','',1364,0,0,'2025-10-17',1100,955,0,0,924,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',1326,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 13:14:43','','0000-00-00 00:00:00',0),(1365,0,0,'H','2526','','',1365,0,0,'2025-10-17',1142,986,0,0,955,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1327,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 13:22:14','','0000-00-00 00:00:00',0),(1366,0,0,'H','2526','','',1366,0,0,'2025-10-17',1141,587,0,0,560,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',1328,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 13:22:53','','0000-00-00 00:00:00',0),(1367,0,0,'H','2526','','',1367,0,0,'2025-10-17',1090,946,0,0,915,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',1329,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 13:59:51','','0000-00-00 00:00:00',0),(1368,0,0,'H','2526','','P',1368,0,0,'2025-10-17',1144,987,0,69,0,'A',8000.00,0.00,'CSH','','','','','0000-00-00','','',1523,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-17 14:07:01','vishal','2025-10-22 12:44:36',0),(1369,0,0,'H','2526','','',1369,0,0,'2025-10-17',1145,744,0,0,713,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',1330,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-17 14:26:26','','0000-00-00 00:00:00',0),(1370,0,0,'H','2526','','',1370,0,0,'2025-10-17',1136,983,0,0,952,'B',6000.00,0.00,'7','AXIS','','79752','','0000-00-00','SCAN','',1331,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 14:32:56','','0000-00-00 00:00:00',0),(1371,0,0,'H','2526','','',1371,0,0,'2025-10-17',1146,988,0,0,956,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1332,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-17 14:56:23','','0000-00-00 00:00:00',0),(1372,0,0,'H','2526','','P',1372,0,0,'2025-10-17',1147,989,0,70,0,'A',8000.00,0.00,'7','HDFC BANK','','7449','','0000-00-00','','',1742,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-17 15:10:22','riya','2025-10-25 14:28:28',0),(1373,0,0,'H','2526','','',1373,0,0,'2025-10-17',1148,990,0,0,957,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1333,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-17 15:47:41','','0000-00-00 00:00:00',0),(1374,0,0,'H','2526','','P',1374,0,0,'2025-10-05',28,28,0,2,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-17 16:48:12','vishal','2025-10-17 16:48:12',0),(1375,0,0,'H','2526','','',1375,0,0,'2025-10-17',1152,994,0,0,961,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1337,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 16:48:18','','0000-00-00 00:00:00',0),(1376,0,0,'H','2526','','P',1376,0,0,'2025-10-08',28,28,0,2,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-17 16:48:55','vishal','2025-10-17 16:48:55',0),(1377,0,0,'H','2526','','P',1377,0,0,'2025-10-10',28,28,0,2,0,'A',33000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-17 16:49:13','vishal','2025-10-17 16:49:13',0),(1378,0,0,'H','2526','','',1378,0,0,'2025-10-17',1153,995,0,0,962,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1338,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 16:51:53','','0000-00-00 00:00:00',0),(1379,0,0,'H','2526','','',1379,0,0,'2025-10-17',1155,997,0,0,964,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1340,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 16:59:54','','0000-00-00 00:00:00',0),(1380,0,0,'H','2526','','',1380,0,0,'2025-10-17',1156,998,0,0,965,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1341,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 17:00:42','','0000-00-00 00:00:00',0),(1381,0,0,'H','2526','','',1381,0,0,'2025-10-17',1158,1000,0,0,967,'B',500.00,0.00,'7','bob','','298612','','0000-00-00','scan ','',1342,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 17:02:47','','0000-00-00 00:00:00',0),(1382,0,0,'H','2526','','',1382,0,0,'2025-10-17',1160,1001,0,0,968,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1343,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 17:03:37','','0000-00-00 00:00:00',0),(1383,0,0,'H','2526','','',1383,0,0,'2025-10-17',1161,461,0,0,438,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1344,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 17:07:29','','0000-00-00 00:00:00',0),(1384,0,0,'H','2526','','',1384,0,0,'2025-10-17',1162,1002,0,0,969,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1345,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-17 17:17:20','','0000-00-00 00:00:00',0),(1385,0,0,'H','2526','','',1385,0,0,'2025-10-17',1152,994,0,0,961,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',1346,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 17:17:57','','0000-00-00 00:00:00',0),(1386,0,0,'H','2526','','',1386,0,0,'2025-10-17',1163,976,0,0,945,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',1347,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 17:20:49','','0000-00-00 00:00:00',0),(1387,0,0,'H','2526','','',1387,0,0,'2025-10-17',1164,1003,0,0,970,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1348,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 17:25:20','','0000-00-00 00:00:00',0),(1388,0,0,'H','2526','','',1388,0,0,'2025-10-17',1165,1004,0,0,971,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1349,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 17:26:01','','0000-00-00 00:00:00',0),(1389,0,0,'H','2526','','',1389,0,0,'2025-10-17',1166,1005,0,0,972,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1350,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 17:31:14','','0000-00-00 00:00:00',0),(1390,0,0,'H','2526','','',1390,0,0,'2025-10-17',1167,1006,0,0,973,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1351,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 17:32:06','','0000-00-00 00:00:00',0),(1391,0,0,'H','2526','','P',1391,0,0,'2025-10-17',246,239,0,18,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',1483,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-17 17:35:41','riya','2025-10-18 13:55:10',0),(1392,0,0,'H','2526','','',1392,0,0,'2025-10-17',1168,321,0,0,305,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1352,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 17:38:06','','0000-00-00 00:00:00',0),(1393,0,0,'H','2526','','',1393,0,0,'2025-10-17',1169,1007,0,0,974,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1353,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 17:39:04','','0000-00-00 00:00:00',0),(1394,0,0,'H','2526','','',1394,0,0,'2025-10-17',1170,1008,0,0,975,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1354,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 17:39:47','','0000-00-00 00:00:00',0),(1395,0,0,'H','2526','','',1395,0,0,'2025-10-17',1160,1001,0,0,968,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',1355,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 17:41:52','','0000-00-00 00:00:00',0),(1396,0,0,'H','2526','','',1396,0,0,'2025-10-17',1171,1009,0,0,976,'B',750.00,0.00,'7','ICICI','','62749','','0000-00-00','scan ','',1356,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 17:42:40','','0000-00-00 00:00:00',0),(1397,0,0,'H','2526','','',1397,0,0,'2025-10-17',1172,1010,0,0,977,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1357,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 17:43:48','','0000-00-00 00:00:00',0),(1398,0,0,'H','2526','','',1398,0,0,'2025-10-17',1173,1011,0,0,978,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1358,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 17:44:12','','0000-00-00 00:00:00',0),(1399,0,0,'H','2526','','',1399,0,0,'2025-10-17',1174,1012,0,0,979,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1359,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 17:46:37','','0000-00-00 00:00:00',0),(1400,0,0,'H','2526','','',1400,0,0,'2025-10-17',1175,1013,0,0,980,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1360,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 17:48:59','','0000-00-00 00:00:00',0),(1401,0,0,'H','2526','','',1401,0,0,'2025-10-17',1177,1014,0,0,981,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1361,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 17:49:33','','0000-00-00 00:00:00',0),(1402,0,0,'H','2526','','',1402,0,0,'2025-10-17',1176,894,0,0,862,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',1362,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 17:49:48','','0000-00-00 00:00:00',0),(1403,0,0,'H','2526','','',1403,0,0,'2025-10-17',1178,1015,0,0,982,'B',900.00,0.00,'7','SBI','','70943','','0000-00-00','SCAN','',1363,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 17:51:56','','0000-00-00 00:00:00',0),(1404,0,0,'H','2526','','',1404,0,0,'2025-10-17',1179,403,0,0,983,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1364,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 17:52:11','','0000-00-00 00:00:00',0),(1405,0,0,'H','2526','','P',1405,0,0,'2025-10-17',1072,933,0,67,0,'A',10000.00,0.00,'7','ICICI BANK','','529011575415','','0000-00-00','SCAN','',1474,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-17 17:55:03','riya','2025-10-18 13:04:35',0),(1406,0,0,'H','2526','','',1406,0,0,'2025-10-17',1180,1016,0,0,984,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1365,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 17:55:28','','0000-00-00 00:00:00',0),(1407,0,0,'H','2526','','',1407,0,0,'2025-10-17',1181,1017,0,0,985,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1366,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 17:57:56','','0000-00-00 00:00:00',0),(1408,0,0,'H','2526','','',1408,0,0,'2025-10-17',1182,1018,0,0,986,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1367,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 18:02:35','','0000-00-00 00:00:00',0),(1409,0,0,'H','2526','','',1409,0,0,'2025-10-17',1184,1020,0,0,988,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1368,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 18:02:43','','0000-00-00 00:00:00',0),(1410,0,0,'H','2526','','',1410,0,0,'2025-10-17',1186,1022,0,0,990,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1369,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 18:05:33','','0000-00-00 00:00:00',0),(1411,0,0,'H','2526','','',1411,0,0,'2025-10-17',1185,1021,0,0,989,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1370,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 18:06:07','','0000-00-00 00:00:00',0),(1412,0,0,'H','2526','','',1412,0,0,'2025-10-17',1187,214,0,0,201,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1371,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 18:06:35','','0000-00-00 00:00:00',0),(1413,0,0,'H','2526','','',1413,0,0,'2025-10-17',1189,454,0,0,431,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1372,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 18:10:35','','0000-00-00 00:00:00',0),(1414,0,0,'H','2526','','',1414,0,0,'2025-10-17',1173,1011,0,0,978,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',1373,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 18:11:45','','0000-00-00 00:00:00',0),(1415,0,0,'H','2526','','',1415,0,0,'2025-10-17',1190,1023,0,0,991,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1374,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 18:11:55','','0000-00-00 00:00:00',0),(1416,0,0,'H','2526','','',1416,0,0,'2025-10-17',1183,1019,0,0,987,'B',500.00,0.00,'7','AXIS BANK','','09524','','0000-00-00','scan','',1375,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-17 18:12:17','','0000-00-00 00:00:00',0),(1417,0,0,'H','2526','','',1417,0,0,'2025-10-17',1183,1019,0,0,987,'B',400.00,0.00,'7','AXIS BANK','','16047','','0000-00-00','scan','',1376,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-17 18:13:49','','0000-00-00 00:00:00',0),(1418,0,0,'H','2526','','',1418,0,0,'2025-10-17',1191,1024,0,0,992,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1377,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 18:14:39','','0000-00-00 00:00:00',0),(1419,0,0,'H','2526','','',1419,0,0,'2025-10-17',1188,466,0,0,441,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1378,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-17 18:15:01','','0000-00-00 00:00:00',0),(1420,0,0,'H','2526','','',1420,0,0,'2025-10-17',1161,461,0,0,438,'D',-300.00,0.00,'CSH','','','','','2025-10-17','','',1379,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 18:17:49','','0000-00-00 00:00:00',0),(1421,0,0,'H','2526','','',1421,0,0,'2025-10-17',1193,1025,0,0,993,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1380,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-17 18:22:18','','0000-00-00 00:00:00',0),(1422,0,0,'H','2526','','',1422,0,0,'2025-10-17',1194,1026,0,0,994,'B',900.00,0.00,'7','HDFC','','10905','','0000-00-00','SCAN','',1381,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 18:26:38','','0000-00-00 00:00:00',0),(1423,0,0,'H','2526','','',1423,0,0,'2025-10-17',1195,1027,0,0,995,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1382,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 18:29:36','','0000-00-00 00:00:00',0),(1424,0,0,'H','2526','','',1424,0,0,'2025-10-17',1196,151,0,0,140,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1383,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 18:35:09','','0000-00-00 00:00:00',0),(1425,0,0,'H','2526','','P',1425,0,0,'2025-10-17',882,780,0,63,0,'A',10000.00,0.00,'7','SBI BANK','','529008910451','','0000-00-00','SCAN','',1477,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-17 18:36:26','riya','2025-10-18 13:15:09',0),(1426,0,0,'H','2526','','',1426,0,0,'2025-10-17',1198,1029,0,0,997,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1384,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 18:36:56','','0000-00-00 00:00:00',0),(1427,0,0,'H','2526','','',1427,0,0,'2025-10-17',1197,1028,0,0,996,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1385,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 18:37:30','','0000-00-00 00:00:00',0),(1428,0,0,'H','2526','','',1428,0,0,'2025-10-17',1190,1023,0,0,991,'D',-750.00,0.00,'CSH','','','','','2025-10-17','','',1386,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 18:39:20','','0000-00-00 00:00:00',0),(1429,0,0,'H','2526','','',1429,0,0,'2025-10-17',1178,1015,0,0,982,'B',3500.00,0.00,'7','SBI','','22218','','0000-00-00','SCAN','',1387,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 18:40:17','','0000-00-00 00:00:00',0),(1430,0,0,'H','2526','','',1430,0,0,'2025-10-17',1191,1024,0,0,992,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',1388,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 18:49:03','','0000-00-00 00:00:00',0),(1431,0,0,'H','2526','','',1431,0,0,'2025-10-17',1200,1030,0,0,998,'B',400.00,0.00,'7','bob','','85229','','0000-00-00','scan ','',1389,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 18:50:32','','0000-00-00 00:00:00',0),(1432,0,0,'H','2526','','',1432,0,0,'2025-10-17',1201,1031,0,0,999,'B',400.00,0.00,'7','hdfc','','30618','','0000-00-00','scan ','',1390,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 18:51:04','','0000-00-00 00:00:00',0),(1433,0,0,'H','2526','','',1433,0,0,'2025-10-17',1175,1013,0,0,980,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',1391,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 18:55:08','','0000-00-00 00:00:00',0),(1434,0,0,'H','2526','','',1434,0,0,'2025-10-17',1203,286,0,0,270,'B',300.00,0.00,'7','axis bank','','10117','','0000-00-00','scan     ','',1392,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 18:59:03','','0000-00-00 00:00:00',0),(1435,0,0,'H','2526','','',1435,0,0,'2025-10-17',1204,1032,0,0,1000,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1393,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 19:02:44','','0000-00-00 00:00:00',0),(1436,0,0,'H','2526','','',1436,0,0,'2025-10-17',1205,1033,0,0,1001,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1394,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 19:11:32','','0000-00-00 00:00:00',0),(1437,0,0,'H','2526','','',1437,0,0,'2025-10-17',1206,1034,0,0,1002,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1395,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 19:12:28','','0000-00-00 00:00:00',0),(1438,0,0,'H','2526','','P',1438,0,0,'2025-10-17',284,274,0,21,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',1481,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-17 19:15:46','riya','2025-10-18 13:42:53',0),(1439,0,0,'H','2526','','',1439,0,0,'2025-10-17',1202,307,0,0,291,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1396,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 19:28:24','','0000-00-00 00:00:00',0),(1440,0,0,'H','2526','','',1440,0,0,'2025-10-17',1208,1036,0,0,1004,'B',500.00,0.00,'7','sbi','','77636','','0000-00-00','scan  ','',1397,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-17 19:34:20','','0000-00-00 00:00:00',0),(1441,0,0,'H','2526','','',1441,0,0,'2025-10-17',1210,932,0,0,901,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1398,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-17 19:38:44','','0000-00-00 00:00:00',0),(1442,0,0,'H','2526','','',1442,0,0,'2025-10-17',1207,1035,0,0,1003,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1399,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-17 19:39:02','','0000-00-00 00:00:00',0),(1443,0,0,'H','2526','','',1443,0,0,'2025-10-17',1194,1026,0,0,994,'B',4000.00,0.00,'7','HDFC','','21159','','0000-00-00','SCAN','',1400,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 19:40:12','','0000-00-00 00:00:00',0),(1444,0,0,'H','2526','','',1444,0,0,'2025-10-17',1211,1038,0,0,1006,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',1401,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-17 20:05:47','','0000-00-00 00:00:00',0),(1445,0,0,'H','2526','','',1445,0,0,'2025-10-17',1212,1039,0,0,1007,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1402,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-17 20:08:17','','0000-00-00 00:00:00',0),(1446,0,0,'H','2526','','P',1446,0,0,'2025-10-17',936,800,0,64,0,'A',10000.00,0.00,'7','HDFC BANK','','112807335411','','0000-00-00','SCAN','',1487,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-17 20:26:04','riya','2025-10-18 14:25:45',0),(1447,0,0,'H','2526','','P',1447,0,0,'2025-10-17',1213,1040,0,71,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',1525,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-17 21:03:46','vishal','2025-10-22 13:32:53',0),(1448,0,0,'H','2526','','',1448,0,0,'2025-10-18',1214,1041,0,0,1008,'B',3000.00,0.00,'7','icici','','76471','','0000-00-00','scan','',1403,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-18 09:04:37','','0000-00-00 00:00:00',0),(1449,0,0,'H','2526','','',1449,0,0,'2025-10-18',1215,1042,0,0,1009,'B',1250.00,0.00,'7','idfc','','50345','','0000-00-00','scan','',1404,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-18 09:06:58','','0000-00-00 00:00:00',0),(1450,0,0,'H','2526','','',1450,0,0,'2025-10-18',1216,1043,0,0,1010,'B',1200.00,0.00,'7','bob','','48437','','0000-00-00','scan','',1405,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-18 09:09:48','','0000-00-00 00:00:00',0),(1451,0,0,'H','2526','','',1451,0,0,'2025-10-18',1217,1044,0,0,1011,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1406,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 09:41:49','','0000-00-00 00:00:00',0),(1452,0,0,'H','2526','','',1452,0,0,'2025-10-18',1218,1045,0,0,1012,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1407,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 09:43:11','','0000-00-00 00:00:00',0),(1453,0,0,'H','2526','','',1453,0,0,'2025-10-18',1219,1046,0,0,1013,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1408,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 09:48:38','','0000-00-00 00:00:00',0),(1454,0,0,'H','2526','','',1454,0,0,'2025-10-18',1221,1048,0,0,1014,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1409,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 09:50:42','','0000-00-00 00:00:00',0),(1455,0,0,'H','2526','','',1455,0,0,'2025-10-18',1222,1049,0,0,1015,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1410,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-18 09:54:52','','0000-00-00 00:00:00',0),(1456,0,0,'H','2526','','',1456,0,0,'2025-10-18',1223,1050,0,0,1016,'B',900.00,0.00,'7','bob','','68402','','0000-00-00','scan','',1411,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 10:02:50','','0000-00-00 00:00:00',0),(1457,0,0,'H','2526','','P',1457,0,0,'2025-10-18',1220,1047,0,72,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',1518,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-18 10:03:51','vishal','2025-10-20 12:20:34',0),(1458,0,0,'H','2526','','',1458,0,0,'2025-10-18',1224,674,0,0,644,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1412,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-18 10:09:44','','0000-00-00 00:00:00',0),(1459,0,0,'H','2526','','',1459,0,0,'2025-10-18',1225,1051,0,0,1017,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1413,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 10:12:22','','0000-00-00 00:00:00',0),(1460,0,0,'H','2526','','',1460,0,0,'2025-10-18',1226,204,0,0,191,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1414,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-18 10:15:34','','0000-00-00 00:00:00',0),(1461,0,0,'H','2526','','',1461,0,0,'2025-10-18',1227,1029,0,0,997,'B',4000.00,0.00,'7','hdfc','','38689','','0000-00-00','scan','',1415,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 10:18:39','','0000-00-00 00:00:00',0),(1462,0,0,'H','2526','','',1462,0,0,'2025-10-18',1228,1052,0,0,1018,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1416,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 10:25:07','','0000-00-00 00:00:00',0),(1463,0,0,'H','2526','','',1463,0,0,'2025-10-18',1226,204,0,0,191,'B',350.00,0.00,'CSH','','','','','0000-00-00','','',1417,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-18 10:34:07','','0000-00-00 00:00:00',0),(1464,0,0,'H','2526','','',1464,0,0,'2025-10-18',1228,1052,0,0,1018,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1418,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 10:37:41','','0000-00-00 00:00:00',0),(1465,0,0,'H','2526','','',1465,0,0,'2025-10-18',1229,1053,0,0,1019,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1419,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-18 10:41:01','','0000-00-00 00:00:00',0),(1466,0,0,'H','2526','','',1466,0,0,'2025-10-18',1230,1054,0,0,1020,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1420,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-18 10:45:33','','0000-00-00 00:00:00',0),(1467,0,0,'H','2526','','',1467,0,0,'2025-10-18',1231,1055,0,0,1021,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1421,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 10:54:03','','0000-00-00 00:00:00',0),(1468,0,0,'H','2526','','',1468,0,0,'2025-10-18',1232,1056,0,0,1022,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1422,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 10:55:38','','0000-00-00 00:00:00',0),(1469,0,0,'H','2526','','',1469,0,0,'2025-10-18',1233,1057,0,0,1023,'B',900.00,0.00,'7','ICICI BANK','','18730','','0000-00-00','scan ','',1423,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-18 10:57:38','','0000-00-00 00:00:00',0),(1470,0,0,'H','2526','','',1470,0,0,'2025-10-18',1234,1058,0,0,1024,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1424,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 11:06:59','','0000-00-00 00:00:00',0),(1471,0,0,'H','2526','','',1471,0,0,'2025-10-18',1235,539,0,0,514,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1425,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-18 11:08:57','','0000-00-00 00:00:00',0),(1472,0,0,'H','2526','','',1472,0,0,'2025-10-18',1236,87,0,0,76,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1426,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 11:11:00','','0000-00-00 00:00:00',0),(1473,0,0,'H','2526','','',1473,0,0,'2025-10-18',1230,1054,0,0,1020,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',1427,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-18 11:11:37','','0000-00-00 00:00:00',0),(1474,0,0,'H','2526','','',1474,0,0,'2025-10-18',1237,1059,0,0,1025,'B',900.00,0.00,'7','HDFC BANK','','78660','','0000-00-00','scan ','',1428,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-18 11:12:06','','0000-00-00 00:00:00',0),(1475,0,0,'H','2526','','',1475,0,0,'2025-10-18',1223,1050,0,0,1016,'B',2500.00,0.00,'7','bob','','72142','','0000-00-00','scan','',1429,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 11:13:51','','0000-00-00 00:00:00',0),(1476,0,0,'H','2526','','',1476,0,0,'2025-10-18',1238,1060,0,0,1026,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1430,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-18 11:17:38','','0000-00-00 00:00:00',0),(1477,0,0,'H','2526','','',1477,0,0,'2025-10-18',1239,1061,0,0,1027,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1431,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 11:19:12','','0000-00-00 00:00:00',0),(1478,0,0,'H','2526','','',1478,0,0,'2025-10-18',1240,1062,0,0,1028,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1432,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 11:22:33','','0000-00-00 00:00:00',0),(1479,0,0,'H','2526','','',1479,0,0,'2025-10-18',1241,1063,0,0,1029,'B',300.00,0.00,'7','HDFC BANK','','49162','','0000-00-00','scan ','',1433,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-18 11:24:21','','0000-00-00 00:00:00',0),(1480,0,0,'H','2526','','',1480,0,0,'2025-10-18',1242,127,0,0,116,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1434,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-18 11:25:36','','0000-00-00 00:00:00',0),(1481,0,0,'H','2526','','',1481,0,0,'2025-10-18',1243,1064,0,0,1030,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1435,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 11:26:24','','0000-00-00 00:00:00',0),(1482,0,0,'H','2526','','',1482,0,0,'2025-10-18',1244,1065,0,0,1031,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1436,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 11:29:38','','0000-00-00 00:00:00',0),(1483,0,0,'H','2526','','',1483,0,0,'2025-10-18',1245,507,0,0,481,'B',200.00,0.00,'7','idbi','','15664','','0000-00-00','scan  ','',1437,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-18 11:30:44','','0000-00-00 00:00:00',0),(1484,0,0,'H','2526','','',1484,0,0,'2025-10-18',1246,81,0,0,70,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1438,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-18 11:31:12','','0000-00-00 00:00:00',0),(1485,0,0,'H','2526','','',1485,0,0,'2025-10-18',1247,1066,0,0,1032,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1439,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 11:32:42','','0000-00-00 00:00:00',0),(1486,0,0,'H','2526','','',1486,0,0,'2025-10-18',1248,1067,0,0,1033,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1440,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-18 11:33:32','','0000-00-00 00:00:00',0),(1487,0,0,'H','2526','','',1487,0,0,'2025-10-18',1250,1069,0,0,1035,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1441,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-18 11:35:28','','0000-00-00 00:00:00',0),(1488,0,0,'H','2526','','',1488,0,0,'2025-10-18',1249,1068,0,0,1034,'B',400.00,0.00,'7','HDFC BANK','','06324','','0000-00-00','scan ','',1442,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-18 11:35:55','','0000-00-00 00:00:00',0),(1489,0,0,'H','2526','','',1489,0,0,'2025-10-18',1251,1070,0,0,1036,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1443,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 11:36:29','','0000-00-00 00:00:00',0),(1490,0,0,'H','2526','','',1490,0,0,'2025-10-18',1252,1071,0,0,1037,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1444,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 11:39:09','','0000-00-00 00:00:00',0),(1491,0,0,'H','2526','','',1491,0,0,'2025-10-18',1253,1072,0,0,1038,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1445,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 11:40:34','','0000-00-00 00:00:00',0),(1492,0,0,'H','2526','','',1492,0,0,'2025-10-18',1254,1073,0,0,1039,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1446,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-18 11:41:16','','0000-00-00 00:00:00',0),(1493,0,0,'H','2526','','',1493,0,0,'2025-10-18',1255,1074,0,0,1040,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1447,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-18 11:42:20','','0000-00-00 00:00:00',0),(1494,0,0,'H','2526','','',1494,0,0,'2025-10-18',1256,1075,0,0,1041,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1448,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 11:43:11','','0000-00-00 00:00:00',0),(1495,0,0,'H','2526','','',1495,0,0,'2025-10-18',1257,1076,0,0,1042,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1449,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 11:45:16','','0000-00-00 00:00:00',0),(1496,0,0,'H','2526','','',1496,0,0,'2025-10-18',1258,1077,0,0,1043,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1450,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-18 11:46:25','','0000-00-00 00:00:00',0),(1497,0,0,'H','2526','','',1497,0,0,'2025-10-18',1259,1078,0,0,1044,'B',500.00,0.00,'7','IDFC BANK','','78951','','0000-00-00','scan ','',1451,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-18 11:48:05','','0000-00-00 00:00:00',0),(1498,0,0,'H','2526','','',1498,0,0,'2025-10-18',1260,1079,0,0,1045,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1452,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-18 11:50:56','','0000-00-00 00:00:00',0),(1499,0,0,'H','2526','','',1499,0,0,'2025-10-18',1261,1080,0,0,1046,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1453,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-18 11:53:15','','0000-00-00 00:00:00',0),(1500,0,0,'H','2526','','',1500,0,0,'2025-10-18',1234,1058,0,0,1024,'B',6000.00,0.00,'7','bob','','18537','','0000-00-00','scan','',1454,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 11:54:36','','0000-00-00 00:00:00',0),(1501,0,0,'H','2526','','',1501,0,0,'2025-10-18',1239,1061,0,0,1027,'B',4600.00,0.00,'7','SBI','','97347','','0000-00-00','scan','',1455,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 11:58:55','','0000-00-00 00:00:00',0),(1502,0,0,'H','2526','','',1502,0,0,'2025-10-18',1262,1081,0,0,1047,'B',500.00,0.00,'7','SBI','','76938','','0000-00-00','scan','',1456,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-18 11:59:22','','0000-00-00 00:00:00',0),(1503,0,0,'H','2526','','',1503,0,0,'2025-10-18',1263,1082,0,0,1048,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1457,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 12:03:03','','0000-00-00 00:00:00',0),(1504,0,0,'H','2526','','',1504,0,0,'2025-10-18',1225,1051,0,0,1017,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',1458,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 12:06:01','','0000-00-00 00:00:00',0),(1505,0,0,'H','2526','','',1505,0,0,'2025-10-18',1264,1083,0,0,1049,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1459,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-18 12:06:11','','0000-00-00 00:00:00',0),(1506,0,0,'H','2526','','',1506,0,0,'2025-10-18',1265,1084,0,0,1050,'B',500.00,0.00,'7','SBI','','80518','','0000-00-00','scan','',1460,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 12:09:43','','0000-00-00 00:00:00',0),(1507,0,0,'H','2526','','',1507,0,0,'2025-10-18',1262,1081,0,0,1047,'B',600.00,0.00,'7','SBI','','25289','','0000-00-00','scan','',1461,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-18 12:11:35','','0000-00-00 00:00:00',0),(1508,0,0,'H','2526','','',1508,0,0,'2025-10-18',1267,22,0,0,21,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1462,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-18 12:15:35','','0000-00-00 00:00:00',0),(1509,0,0,'H','2526','','',1509,0,0,'2025-10-18',1268,1085,0,0,1051,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1463,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 12:16:51','','0000-00-00 00:00:00',0),(1510,0,0,'H','2526','','',1510,0,0,'2025-10-18',1269,606,0,0,1052,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1466,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-18 12:25:59','','0000-00-00 00:00:00',0),(1511,0,0,'H','2526','','',1511,0,0,'2025-10-18',1233,1057,0,0,1023,'B',6000.00,0.00,'7','icici','','12061','','0000-00-00','scan','',1467,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 12:26:48','','0000-00-00 00:00:00',0),(1512,0,0,'H','2526','','',1512,0,0,'2025-10-18',1270,1086,0,0,1053,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1468,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-18 12:28:49','','0000-00-00 00:00:00',0),(1513,0,0,'H','2526','','',1513,0,0,'2025-10-18',1271,1087,0,0,1054,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1469,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 12:41:26','','0000-00-00 00:00:00',0),(1514,0,0,'H','2526','','',1514,0,0,'2025-10-18',1272,1088,0,0,1055,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1471,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 12:45:35','','0000-00-00 00:00:00',0),(1515,0,0,'H','2526','','',1515,0,0,'2025-10-18',1273,578,0,0,552,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1472,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-18 12:59:01','','0000-00-00 00:00:00',0),(1516,0,0,'H','2526','','',1516,0,0,'2025-10-18',1274,1089,0,0,1056,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1473,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-18 13:03:31','','0000-00-00 00:00:00',0),(1517,0,0,'H','2526','','P',1517,0,0,'2025-10-18',1072,933,0,67,0,'A',12200.00,0.00,'7','AXIS BANK','','529108989839','','0000-00-00','SCAN','',1474,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-18 13:03:42','riya','2025-10-18 13:04:35',0),(1518,0,0,'H','2526','','',1518,0,0,'2025-10-18',1275,326,0,0,310,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1475,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 13:08:25','','0000-00-00 00:00:00',0),(1519,0,0,'H','2526','','P',1519,0,0,'2025-10-18',882,780,0,63,0,'A',15200.00,0.00,'7','SBI BANK','','529166587288','','0000-00-00','SCAN','',1477,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-18 13:14:21','riya','2025-10-18 13:15:09',0),(1520,0,0,'H','2526','','',1520,0,0,'2025-10-18',1262,1081,0,0,1047,'B',600.00,0.00,'7','SBI','','36083','','0000-00-00','scan','',1476,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-18 13:14:29','','0000-00-00 00:00:00',0),(1521,0,0,'H','2526','','',1521,0,0,'2025-10-18',1276,1090,0,0,1057,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1478,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-18 13:25:43','','0000-00-00 00:00:00',0),(1522,0,0,'H','2526','','P',1522,0,0,'2025-10-18',1266,911,0,73,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',1515,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-18 13:38:26','vishal','2025-10-19 13:49:47',0),(1523,0,0,'H','2526','','P',1523,0,0,'2025-10-18',284,274,0,21,0,'A',33700.00,0.00,'CSH','','','','','0000-00-00','','',1481,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-18 13:42:17','riya','2025-10-18 13:42:53',0),(1524,0,0,'H','2526','','',1524,0,0,'2025-10-18',1277,1091,0,0,1058,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1482,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 13:52:17','','0000-00-00 00:00:00',0),(1525,0,0,'H','2526','','P',1525,0,0,'2025-10-18',246,239,0,18,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',1483,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-18 13:54:21','riya','2025-10-18 13:55:10',0),(1526,0,0,'H','2526','','',1526,0,0,'2025-10-18',1270,1086,0,0,1053,'B',3900.00,0.00,'7','SBI','','03702','','0000-00-00','scan','',1484,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 14:04:14','','0000-00-00 00:00:00',0),(1527,0,0,'H','2526','','',1527,0,0,'2025-10-18',1278,1092,0,0,1059,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1486,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-18 14:13:15','','0000-00-00 00:00:00',0),(1528,0,0,'H','2526','','P',1528,0,0,'2025-10-18',936,800,0,64,0,'A',13200.00,0.00,'7','AXIS BANK','','112838484956','','0000-00-00','SCAN','',1487,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-18 14:25:31','riya','2025-10-18 14:25:45',0),(1529,0,0,'H','2526','','P',1529,0,0,'2025-10-18',1279,1093,0,74,0,'A',15000.00,0.00,'7','SBI BANK','','565780619132','','0000-00-00','SCAN','',1512,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-18 15:55:09','vishal','2025-10-19 12:16:31',0),(1530,0,0,'H','2526','','P',1530,0,0,'2025-10-18',1140,969,0,68,0,'A',2800.00,0.00,'CSH','','','','','0000-00-00','','',1489,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-18 16:10:22','riya','2025-10-18 16:10:49',0),(1531,0,0,'H','2526','','',1531,0,0,'2025-10-18',1280,1094,0,0,1060,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1490,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-18 16:22:40','','0000-00-00 00:00:00',0),(1532,0,0,'H','2526','','',1532,0,0,'2025-10-18',1280,1094,0,0,1060,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1492,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-18 17:18:19','','0000-00-00 00:00:00',0),(1533,0,0,'H','2526','','',1533,0,0,'2025-10-18',1282,1096,0,0,1061,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1493,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-18 17:33:55','','0000-00-00 00:00:00',0),(1534,0,0,'H','2526','','P',1534,0,0,'2025-10-18',1004,879,0,66,0,'A',13650.00,0.00,'2','ICICI BANK','','3164','','0000-00-00','SCAN','',1494,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-18 17:51:33','riya','2025-10-18 17:51:53',0),(1535,0,0,'H','2526','','P',1535,0,0,'2025-10-18',414,392,0,25,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','Y',0,'N','riya','2025-10-18 18:09:44','riya','2025-10-18 18:08:08','riya','2025-10-18 18:09:44',0),(1536,0,0,'H','2526','','P',1536,0,0,'2025-10-18',414,392,0,25,0,'A',-25000.00,0.00,'CSH','','','','','0000-00-00','','UPI PAYEMNT',0,'N','P','Y',1535,'N','','0000-00-00 00:00:00','riya','2025-10-18 18:09:44','riya','2025-10-18 18:09:44',0),(1537,0,0,'H','2526','','P',1537,0,0,'2025-10-18',414,392,0,25,0,'A',25000.00,0.00,'CRD','ICICI BANK','','3166','','0000-00-00','','BY MISTAKE WRITEN UPI',2614,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-18 18:11:52','vishal','2025-11-01 15:09:18',0),(1538,0,0,'H','2526','','',1538,0,0,'2025-10-18',1284,570,0,0,544,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1495,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-18 18:17:34','','0000-00-00 00:00:00',0),(1539,0,0,'H','2526','','',1539,0,0,'2025-10-18',1286,607,0,0,1063,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1497,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-18 18:25:07','','0000-00-00 00:00:00',0),(1540,0,0,'H','2526','','',1540,0,0,'2025-10-18',1285,1097,0,0,1062,'B',800.00,0.00,'7','ICICI BANK','','46858','','0000-00-00','scan','',1498,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-18 18:25:13','','0000-00-00 00:00:00',0),(1541,0,0,'H','2526','','',1541,0,0,'2025-10-18',1283,116,0,0,105,'B',300.00,0.00,'7','IDFC','','57205','','0000-00-00','scan','',1499,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-18 18:31:37','','0000-00-00 00:00:00',0),(1542,0,0,'H','2526','','',1542,0,0,'2025-10-18',1285,1097,0,0,1062,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',1500,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-18 18:32:27','','0000-00-00 00:00:00',0),(1543,0,0,'H','2526','','P',1543,0,0,'2025-10-18',1266,911,0,73,0,'R',-360.00,0.00,'7','SBI BANK','','565760271352','','0000-00-00','SCAN','',1515,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-18 19:13:08','vishal','2025-10-19 13:49:47',0),(1544,0,0,'H','2526','','',1544,0,0,'2025-10-18',1287,129,0,0,118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1502,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-18 19:14:57','','0000-00-00 00:00:00',0),(1545,0,0,'H','2526','','',1545,0,0,'2025-10-18',1288,1098,0,0,1064,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1503,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-18 19:15:29','','0000-00-00 00:00:00',0),(1546,0,0,'H','2526','','',1546,0,0,'2025-10-18',1289,1099,0,0,1065,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1504,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-18 19:17:50','','0000-00-00 00:00:00',0),(1547,0,0,'H','2526','','',1547,0,0,'2025-10-18',1289,1099,0,0,1065,'D',-300.00,0.00,'CSH','','','','','2025-10-18','','',1505,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-18 19:24:58','','0000-00-00 00:00:00',0),(1548,0,0,'H','2526','','',1548,0,0,'2025-10-18',1290,1100,0,0,1066,'B',500.00,0.00,'7','IDFC','','47037','','0000-00-00','scan','',1506,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-18 19:48:07','','0000-00-00 00:00:00',0),(1549,0,0,'H','2526','','P',1549,0,0,'2025-10-18',1291,1101,0,76,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',1508,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-18 20:37:12','riya','2025-10-18 22:04:52',0),(1550,0,0,'H','2526','','P',1550,0,0,'2025-10-18',489,452,0,38,0,'A',45000.00,0.00,'2','SBI BANK','','3167','','0000-00-00','CARD','',1756,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-18 20:49:42','riya','2025-10-25 21:05:07',0),(1551,0,0,'H','2526','','P',1551,0,0,'2025-10-18',1291,1101,0,76,0,'A',400.00,0.00,'CSH','','','','','0000-00-00','','',1508,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-18 22:02:47','riya','2025-10-18 22:04:52',0),(1552,0,0,'H','2526','','P',1552,0,0,'2025-10-19',1292,1102,0,77,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',1527,'N','P','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-19 10:18:35','vishal','2025-10-23 08:49:52',0),(1553,0,0,'H','2526','','P',1553,0,0,'2025-10-19',1281,1095,0,75,0,'A',25000.00,0.00,'7','AXIS BANK','','2925','','0000-00-00','','',1510,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-19 11:25:52','vishal','2025-10-19 11:26:20',0),(1554,0,0,'H','2526','','P',1554,0,0,'2025-10-19',1279,1093,0,74,0,'A',41800.00,0.00,'7','SBI BANK','','529242966295','','0000-00-00','','',1512,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-19 12:16:05','vishal','2025-10-19 12:16:31',0),(1555,0,0,'H','2526','','P',1555,0,0,'2025-10-18',1266,911,0,73,0,'A',360.00,0.00,'7','OTHER BANK','','1352','','0000-00-00','','',1515,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-19 13:42:51','vishal','2025-10-19 13:49:47',0),(1556,0,0,'H','2526','','P',1556,0,0,'2025-10-18',1266,911,0,73,0,'A',360.00,0.00,'CSH','','','','','0000-00-00','BY MISTAKE DIS TIME 7000 DEPOS','',1515,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-19 13:45:41','vishal','2025-10-19 13:49:47',0),(1557,0,0,'H','2526','','P',1557,0,0,'2025-10-19',1144,987,0,69,0,'A',12000.00,0.00,'CSH','','','','','0000-00-00','','',1523,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-19 19:17:15','vishal','2025-10-22 12:44:36',0),(1558,0,0,'H','2526','','P',1558,0,0,'2025-10-19',1147,989,0,70,0,'A',15000.00,0.00,'7','HDFC BANK ','','3892','','0000-00-00','','',1742,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-19 19:18:25','riya','2025-10-25 14:28:28',0),(1559,0,0,'H','2526','','P',1559,0,0,'2025-10-19',414,392,0,25,0,'A',22000.00,0.00,'7','ICICI BANK','','042399','','0000-00-00','','',2614,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-19 19:28:39','vishal','2025-11-01 15:09:18',0),(1560,0,0,'H','2526','','P',1560,0,0,'2025-10-20',1294,1104,0,79,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',1597,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-20 11:13:24','vishal','2025-10-23 20:08:05',0),(1561,0,0,'H','2526','','P',1561,0,0,'2025-10-20',1220,1047,0,72,0,'A',64400.00,0.00,'CSH','','','','','0000-00-00','','',1518,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-20 12:20:03','vishal','2025-10-20 12:20:34',0),(1562,0,0,'H','2526','','P',1562,0,0,'2025-10-20',939,740,0,65,0,'A',33700.00,0.00,'CRD','AXIS BANK','','5978','','0000-00-00','','',1519,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-20 13:24:18','vishal','2025-10-20 13:24:38',0),(1563,0,0,'H','2526','','P',1563,0,0,'2025-10-20',1292,1102,0,77,0,'A',20000.00,0.00,'7','hdfc bank','','112964437406','','0000-00-00','','',1527,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-20 19:29:22','vishal','2025-10-23 08:49:52',0),(1564,0,0,'H','2526','','P',1564,0,0,'2025-10-20',1295,1105,0,80,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',1521,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-20 19:40:24','vishal','2025-10-21 15:20:45',0),(1565,0,0,'H','2526','','P',1565,0,0,'2025-10-21',1293,1103,0,78,0,'A',35000.00,0.00,'7','SBI BANK','','7597','','0000-00-00','','',2011,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-21 12:50:48','riya','2025-10-28 12:56:43',0),(1566,0,0,'H','2526','','P',1566,0,0,'2025-10-21',1294,1104,0,79,0,'A',12000.00,0.00,'CSH','','','','','0000-00-00','','',1597,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-21 12:54:18','vishal','2025-10-23 20:08:05',0),(1567,0,0,'H','2526','','P',1567,0,0,'2025-10-21',1292,1102,0,77,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',1527,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-21 13:06:21','vishal','2025-10-23 08:49:52',0),(1568,0,0,'H','2526','','P',1568,0,0,'2025-10-21',1292,1102,0,77,0,'A',5000.00,0.00,'7','hdfc bank','','9938','','0000-00-00','','',1527,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-21 13:06:39','vishal','2025-10-23 08:49:52',0),(1569,0,0,'H','2526','','P',1569,0,0,'2025-10-21',1213,1040,0,71,0,'A',17000.00,0.00,'CSH','','','','','0000-00-00','','',1525,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-21 13:59:17','vishal','2025-10-22 13:32:53',0),(1570,0,0,'H','2526','','P',1570,0,0,'2025-10-21',1295,1105,0,80,0,'A',600.00,0.00,'CSH','','','','','0000-00-00','','',1521,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-21 15:19:46','vishal','2025-10-21 15:20:45',0),(1571,0,0,'H','2526','','P',1571,0,0,'2025-10-21',489,452,0,38,0,'A',30000.00,0.00,'2','SBI BANK','','7445','','0000-00-00','','',1756,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-21 18:32:35','riya','2025-10-25 21:05:07',0),(1572,0,0,'H','2526','','P',1572,0,0,'2025-10-22',1144,987,0,69,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',1523,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-22 12:44:19','vishal','2025-10-22 12:44:36',0),(1573,0,0,'H','2526','','P',1573,0,0,'2025-10-22',1213,1040,0,71,0,'A',8800.00,0.00,'CSH','','','','','0000-00-00','','',1525,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-22 13:32:35','vishal','2025-10-22 13:32:53',0),(1574,0,0,'H','2526','','P',1574,0,0,'2025-10-23',1292,1102,0,77,0,'A',13000.00,0.00,'7','hdfc bank','','113063822402','','0000-00-00','','',1527,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-23 08:48:25','vishal','2025-10-23 08:49:52',0),(1575,0,0,'H','2526','','P',1575,0,0,'2025-10-23',1292,1102,0,77,0,'A',9000.00,0.00,'7','sbi bank','','4685','','0000-00-00','','',1527,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-23 08:49:15','vishal','2025-10-23 08:49:52',0),(1576,0,0,'H','2526','','',1576,0,0,'2025-10-23',1297,1106,0,0,1067,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1528,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 09:56:44','','0000-00-00 00:00:00',0),(1577,0,0,'H','2526','','',1577,0,0,'2025-10-23',1299,1036,0,0,1004,'B',300.00,0.00,'7','boi','','70705','','0000-00-00','scan ','',1529,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 11:29:25','','0000-00-00 00:00:00',0),(1578,0,0,'H','2526','','',1578,0,0,'2025-10-23',1300,454,0,0,431,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1530,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 11:34:42','','0000-00-00 00:00:00',0),(1579,0,0,'H','2526','','',1579,0,0,'2025-10-23',1302,1109,0,0,1069,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1531,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 11:42:13','','0000-00-00 00:00:00',0),(1580,0,0,'H','2526','','',1580,0,0,'2025-10-23',1303,1110,0,0,1070,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1532,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 11:45:28','','0000-00-00 00:00:00',0),(1581,0,0,'H','2526','','',1581,0,0,'2025-10-23',1301,1108,0,0,1068,'B',1100.00,0.00,'7','KOTAK','','72274','','0000-00-00','SCAN','',1533,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 11:46:36','','0000-00-00 00:00:00',0),(1582,0,0,'H','2526','','',1582,0,0,'2025-10-23',1304,234,0,0,221,'B',200.00,0.00,'7','BOB','','14742','','0000-00-00','SCAN','',1534,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 11:50:16','','0000-00-00 00:00:00',0),(1583,0,0,'H','2526','','',1583,0,0,'2025-10-23',1306,1112,0,0,1072,'B',1600.00,0.00,'7','BOB','','25718','','0000-00-00','SCAN','',1535,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 11:54:41','','0000-00-00 00:00:00',0),(1584,0,0,'H','2526','','',1584,0,0,'2025-10-23',1305,1111,0,0,1071,'B',900.00,0.00,'7','hdfc','','77950','','0000-00-00','scan ','',1536,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 11:55:21','','0000-00-00 00:00:00',0),(1585,0,0,'H','2526','','',1585,0,0,'2025-10-23',1307,1113,0,0,1073,'B',1400.00,0.00,'7','KOTAK','','33345','','0000-00-00','SCAN','',1537,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 11:58:37','','0000-00-00 00:00:00',0),(1586,0,0,'H','2526','','',1586,0,0,'2025-10-23',1309,1115,0,0,1075,'B',800.00,0.00,'7','HDFC','','08553','','0000-00-00','SCAN','',1538,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 12:01:31','','0000-00-00 00:00:00',0),(1587,0,0,'H','2526','','',1587,0,0,'2025-10-23',1308,1114,0,0,1074,'B',1000.00,0.00,'7','hdfc','','82966','','0000-00-00','scan ','',1539,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 12:02:07','','0000-00-00 00:00:00',0),(1588,0,0,'H','2526','','',1588,0,0,'2025-10-23',1310,1116,0,0,1076,'B',100.00,0.00,'7','AXIS','','33733','','0000-00-00','SCAN','',1540,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 12:06:31','','0000-00-00 00:00:00',0),(1589,0,0,'H','2526','','',1589,0,0,'2025-10-23',1311,1117,0,0,1077,'B',1600.00,0.00,'7','au small','','15724','','0000-00-00','scan ','',1541,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 12:08:22','','0000-00-00 00:00:00',0),(1590,0,0,'H','2526','','',1590,0,0,'2025-10-23',1312,1118,0,0,1078,'B',1000.00,0.00,'7','BOB BANK','','50359','','0000-00-00','scan ','',1542,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 12:12:43','','0000-00-00 00:00:00',0),(1591,0,0,'H','2526','','',1591,0,0,'2025-10-23',1313,1119,0,0,1079,'B',800.00,0.00,'7','icici','','00299','','0000-00-00','SCAN','',1543,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 12:14:51','','0000-00-00 00:00:00',0),(1592,0,0,'H','2526','','',1592,0,0,'2025-10-23',1314,1120,0,0,1080,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',1544,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 12:17:33','','0000-00-00 00:00:00',0),(1593,0,0,'H','2526','','',1593,0,0,'2025-10-23',1315,936,0,0,904,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1545,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 12:18:39','','0000-00-00 00:00:00',0),(1594,0,0,'H','2526','','',1594,0,0,'2025-10-23',1316,1121,0,0,1081,'B',1600.00,0.00,'CSH','','','','','0000-00-00','','',1546,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 12:22:31','','0000-00-00 00:00:00',0),(1595,0,0,'H','2526','','',1595,0,0,'2025-10-23',1317,1122,0,0,1082,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1547,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 12:22:53','','0000-00-00 00:00:00',0),(1596,0,0,'H','2526','','',1596,0,0,'2025-10-23',1319,1124,0,0,1084,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',1548,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 12:25:40','','0000-00-00 00:00:00',0),(1597,0,0,'H','2526','','',1597,0,0,'2025-10-23',1318,1123,0,0,1083,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1549,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 12:26:00','','0000-00-00 00:00:00',0),(1598,0,0,'H','2526','','',1598,0,0,'2025-10-23',1320,911,0,0,879,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1550,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 12:28:03','','0000-00-00 00:00:00',0),(1599,0,0,'H','2526','','',1599,0,0,'2025-10-23',1321,932,0,0,901,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1551,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 12:28:58','','0000-00-00 00:00:00',0),(1600,0,0,'H','2526','','',1600,0,0,'2025-10-23',1322,151,0,0,140,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1552,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 12:29:22','','0000-00-00 00:00:00',0),(1601,0,0,'H','2526','','',1601,0,0,'2025-10-23',1323,714,0,0,1085,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1553,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 12:30:44','','0000-00-00 00:00:00',0),(1602,0,0,'H','2526','','',1602,0,0,'2025-10-23',1324,1125,0,0,1086,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1554,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 12:31:51','','0000-00-00 00:00:00',0),(1603,0,0,'H','2526','','',1603,0,0,'2025-10-23',1326,1126,0,0,1087,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1555,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 12:34:14','','0000-00-00 00:00:00',0),(1604,0,0,'H','2526','','',1604,0,0,'2025-10-23',1325,129,0,0,118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1556,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 12:35:49','','0000-00-00 00:00:00',0),(1605,0,0,'H','2526','','',1605,0,0,'2025-10-23',1327,296,0,0,280,'B',1600.00,0.00,'CSH','','','','','0000-00-00','','',1557,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 12:37:15','','0000-00-00 00:00:00',0),(1606,0,0,'H','2526','','',1606,0,0,'2025-10-23',1328,478,0,0,452,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1558,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 12:38:03','','0000-00-00 00:00:00',0),(1607,0,0,'H','2526','','',1607,0,0,'2025-10-23',1329,603,0,0,575,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1559,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 12:41:45','','0000-00-00 00:00:00',0),(1608,0,0,'H','2526','','',1608,0,0,'2025-10-23',1330,1127,0,0,1088,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',1560,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 12:44:06','','0000-00-00 00:00:00',0),(1609,0,0,'H','2526','','',1609,0,0,'2025-10-23',1331,1128,0,0,1089,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',1561,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 12:48:22','','0000-00-00 00:00:00',0),(1610,0,0,'H','2526','','',1610,0,0,'2025-10-23',1332,1129,0,0,1090,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1562,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 12:50:47','','0000-00-00 00:00:00',0),(1611,0,0,'H','2526','','',1611,0,0,'2025-10-23',1333,468,0,0,442,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',1564,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 12:54:07','','0000-00-00 00:00:00',0),(1612,0,0,'H','2526','','',1612,0,0,'2025-10-23',1334,1130,0,0,1091,'B',100.00,0.00,'7','icici','','89745','','0000-00-00','SCAN','',1565,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 12:58:31','','0000-00-00 00:00:00',0),(1613,0,0,'H','2526','','',1613,0,0,'2025-10-23',1335,1131,0,0,1092,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1566,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 12:58:40','','0000-00-00 00:00:00',0),(1614,0,0,'H','2526','','',1614,0,0,'2025-10-23',1336,1047,0,0,1093,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1567,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 13:00:24','','0000-00-00 00:00:00',0),(1615,0,0,'H','2526','','',1615,0,0,'2025-10-23',1337,1132,0,0,1094,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',1568,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-23 13:01:14','','0000-00-00 00:00:00',0),(1616,0,0,'H','2526','','',1616,0,0,'2025-10-23',1338,1133,0,0,1095,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',1569,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 13:07:14','','0000-00-00 00:00:00',0),(1617,0,0,'H','2526','','',1617,0,0,'2025-10-23',1340,1024,0,0,992,'B',1250.00,0.00,'CSH','','','','','0000-00-00','','',1570,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-23 13:19:33','','0000-00-00 00:00:00',0),(1618,0,0,'H','2526','','P',1618,0,0,'2025-10-23',1339,1106,0,83,0,'A',20000.00,0.00,'7','sbi bank','','9569','','0000-00-00','','',1627,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-23 13:21:18','riya','2025-10-24 11:44:13',0),(1619,0,0,'H','2526','','P',1619,0,0,'2025-10-23',1341,1036,0,84,0,'A',15000.00,0.00,'7','BOB BANK','','512486','','0000-00-00','','',1643,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-23 13:36:26','riya','2025-10-24 12:42:28',0),(1620,0,0,'H','2526','','',1620,0,0,'2025-10-23',1342,1134,0,0,1096,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1571,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 17:28:39','','0000-00-00 00:00:00',0),(1621,0,0,'H','2526','','',1621,0,0,'2025-10-23',1343,1135,0,0,1097,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1572,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 17:29:50','','0000-00-00 00:00:00',0),(1622,0,0,'H','2526','','',1622,0,0,'2025-10-23',1344,1136,0,0,1098,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1573,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 17:31:10','','0000-00-00 00:00:00',0),(1623,0,0,'H','2526','','',1623,0,0,'2025-10-23',1345,1137,0,0,1099,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1574,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 17:35:05','','0000-00-00 00:00:00',0),(1624,0,0,'H','2526','','',1624,0,0,'2025-10-23',1346,1138,0,0,1100,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',1575,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 17:45:18','','0000-00-00 00:00:00',0),(1625,0,0,'H','2526','','',1625,0,0,'2025-10-23',1347,1139,0,0,1101,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1576,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 17:47:17','','0000-00-00 00:00:00',0),(1626,0,0,'H','2526','','P',1626,0,0,'2025-10-23',414,392,0,25,0,'A',56000.00,0.00,'CRD','ICICI BANK','','7000','','0000-00-00','','',2614,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-23 17:47:31','vishal','2025-11-01 15:09:18',0),(1627,0,0,'H','2526','','',1627,0,0,'2025-10-23',1342,1134,0,0,1096,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',1577,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 17:49:24','','0000-00-00 00:00:00',0),(1628,0,0,'H','2526','','',1628,0,0,'2025-10-23',1348,1140,0,0,1102,'B',2000.00,0.00,'7','BANK','','57476','','0000-00-00','SCAN','',1578,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 18:01:58','','0000-00-00 00:00:00',0),(1629,0,0,'H','2526','','',1629,0,0,'2025-10-23',1344,1136,0,0,1098,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',1579,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 18:06:41','','0000-00-00 00:00:00',0),(1630,0,0,'H','2526','','',1630,0,0,'2025-10-23',1343,1135,0,0,1097,'B',4400.00,0.00,'7','HDFC','','45053','','0000-00-00','SCAN','',1580,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 18:08:38','','0000-00-00 00:00:00',0),(1631,0,0,'H','2526','','',1631,0,0,'2025-10-23',1347,1139,0,0,1101,'B',2400.00,0.00,'7','AXIS','','10119','','0000-00-00','SCAN','',1581,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 18:24:43','','0000-00-00 00:00:00',0),(1632,0,0,'H','2526','','P',1632,0,0,'2025-10-23',1294,1104,0,79,0,'A',6000.00,0.00,'CRD','hdfc bank','','7955','','0000-00-00','','',0,'N','P','Y',0,'N','vishal','2025-10-23 18:36:39','vishal','2025-10-23 18:30:30','vishal','2025-10-23 18:36:39',0),(1633,0,0,'H','2526','','P',1633,0,0,'2025-10-23',1294,1104,0,79,0,'A',-6000.00,0.00,'CRD','hdfc bank','','7955','','0000-00-00','','shaileshbhai na bhulthi ama levai gaya ',0,'N','P','Y',1632,'N','','0000-00-00 00:00:00','vishal','2025-10-23 18:36:39','vishal','2025-10-23 18:36:39',0),(1634,0,0,'H','2526','','P',1634,0,0,'2025-10-23',1298,1107,0,82,0,'A',6000.00,0.00,'CRD','hdfc bank','','7955','','0000-00-00','','',2024,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-23 18:37:41','riya','2025-10-28 14:17:14',0),(1635,0,0,'H','2526','','',1635,0,0,'2025-10-23',1349,1141,0,0,1103,'B',1600.00,0.00,'CSH','','','','','0000-00-00','','',1582,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 18:41:38','','0000-00-00 00:00:00',0),(1636,0,0,'H','2526','','',1636,0,0,'2025-10-23',1350,1142,0,0,1104,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1583,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 18:43:36','','0000-00-00 00:00:00',0),(1637,0,0,'H','2526','','',1637,0,0,'2025-10-23',1351,866,0,0,835,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1584,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 18:44:28','','0000-00-00 00:00:00',0),(1638,0,0,'H','2526','','',1638,0,0,'2025-10-23',1352,1143,0,0,1105,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',1585,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 18:46:14','','0000-00-00 00:00:00',0),(1639,0,0,'H','2526','','',1639,0,0,'2025-10-23',1353,1144,0,0,1106,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',1586,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 18:48:11','','0000-00-00 00:00:00',0),(1640,0,0,'H','2526','','',1640,0,0,'2025-10-23',1354,1145,0,0,1107,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',1587,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 18:51:10','','0000-00-00 00:00:00',0),(1641,0,0,'H','2526','','',1641,0,0,'2025-10-23',1325,129,0,0,118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1588,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 18:52:22','','0000-00-00 00:00:00',0),(1642,0,0,'H','2526','','',1642,0,0,'2025-10-23',1355,911,0,0,879,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1589,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 18:54:04','','0000-00-00 00:00:00',0),(1643,0,0,'H','2526','','',1643,0,0,'2025-10-23',1356,319,0,0,303,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1590,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 18:54:56','','0000-00-00 00:00:00',0),(1644,0,0,'H','2526','','',1644,0,0,'2025-10-23',1357,1146,0,0,1108,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1591,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 18:56:15','','0000-00-00 00:00:00',0),(1645,0,0,'H','2526','','',1645,0,0,'2025-10-23',1358,1147,0,0,1109,'B',3300.00,0.00,'CSH','','','','','0000-00-00','','',1592,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 19:00:37','','0000-00-00 00:00:00',0),(1646,0,0,'H','2526','','',1646,0,0,'2025-10-23',1359,1148,0,0,1110,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',1593,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 19:09:32','','0000-00-00 00:00:00',0),(1647,0,0,'H','2526','','',1647,0,0,'2025-10-23',1361,1150,0,0,1112,'B',1600.00,0.00,'CSH','','','','','0000-00-00','','',1594,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 19:15:15','','0000-00-00 00:00:00',0),(1648,0,0,'H','2526','','P',1648,0,0,'2025-10-23',1362,1151,0,85,0,'A',8000.00,0.00,'7','axis bank','','8498','','0000-00-00','','',1694,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-23 19:33:07','riya','2025-10-25 10:40:00',0),(1649,0,0,'H','2526','','',1649,0,0,'2025-10-23',1360,1149,0,0,1111,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1595,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-23 19:43:09','','0000-00-00 00:00:00',0),(1650,0,0,'H','2526','','P',1650,0,0,'2025-10-23',1294,1104,0,79,0,'A',13000.00,0.00,'CSH','','','','','0000-00-00','','',1597,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-23 20:07:34','vishal','2025-10-23 20:08:05',0),(1651,0,0,'H','2526','','P',1651,0,0,'2025-10-23',1363,1152,0,86,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',2202,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-23 20:23:56','vishal','2025-10-29 18:46:53',0),(1652,0,0,'H','2526','','',1652,0,0,'2025-10-24',1364,1153,0,0,1113,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',1598,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-24 08:56:41','','0000-00-00 00:00:00',0),(1653,0,0,'H','2526','','',1653,0,0,'2025-10-24',1365,1154,0,0,1114,'B',1000.00,0.00,'7','sbi','','55604','','0000-00-00','scan','',1599,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-24 08:59:52','','0000-00-00 00:00:00',0),(1654,0,0,'H','2526','','',1654,0,0,'2025-10-24',1366,1155,0,0,1115,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',1600,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-24 09:02:32','','0000-00-00 00:00:00',0),(1655,0,0,'H','2526','','',1655,0,0,'2025-10-24',1367,1156,0,0,1116,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1601,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-24 09:04:05','','0000-00-00 00:00:00',0),(1656,0,0,'H','2526','','',1656,0,0,'2025-10-24',1368,1157,0,0,1117,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1602,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-24 09:31:56','','0000-00-00 00:00:00',0),(1657,0,0,'H','2526','','',1657,0,0,'2025-10-24',1370,649,0,0,619,'B',300.00,0.00,'7','HDFC','','301418','','0000-00-00','scan                          ','',1603,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 10:07:28','','0000-00-00 00:00:00',0),(1658,0,0,'H','2526','','',1658,0,0,'2025-10-24',1371,1159,0,0,1118,'B',500.00,0.00,'7','SBI','','39072','','0000-00-00','scan','',1604,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 10:10:58','','0000-00-00 00:00:00',0),(1659,0,0,'H','2526','','',1659,0,0,'2025-10-24',1372,1160,0,0,1119,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1605,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-24 10:14:23','','0000-00-00 00:00:00',0),(1660,0,0,'H','2526','','',1660,0,0,'2025-10-24',1373,1161,0,0,1120,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1606,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 10:16:02','','0000-00-00 00:00:00',0),(1661,0,0,'H','2526','','',1661,0,0,'2025-10-24',1374,1162,0,0,1121,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1607,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-24 10:17:18','','0000-00-00 00:00:00',0),(1662,0,0,'H','2526','','',1662,0,0,'2025-10-24',1375,1163,0,0,1122,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1608,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 10:27:05','','0000-00-00 00:00:00',0),(1663,0,0,'H','2526','','',1663,0,0,'2025-10-24',1376,1164,0,0,1123,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1609,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 10:42:04','','0000-00-00 00:00:00',0),(1664,0,0,'H','2526','','',1664,0,0,'2025-10-24',1377,1165,0,0,1124,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1610,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 10:44:13','','0000-00-00 00:00:00',0),(1665,0,0,'H','2526','','',1665,0,0,'2025-10-24',1378,1095,0,0,1125,'B',300.00,0.00,'7','SBI','','17003','','0000-00-00','scan','',1611,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-24 10:52:05','','0000-00-00 00:00:00',0),(1666,0,0,'H','2526','','',1666,0,0,'2025-10-24',1367,1156,0,0,1116,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1612,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 11:11:46','','0000-00-00 00:00:00',0),(1667,0,0,'H','2526','','',1667,0,0,'2025-10-24',1379,891,0,0,859,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1613,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-24 11:12:23','','0000-00-00 00:00:00',0),(1668,0,0,'H','2526','','',1668,0,0,'2025-10-24',1380,1166,0,0,1126,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1614,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-24 11:12:44','','0000-00-00 00:00:00',0),(1669,0,0,'H','2526','','',1669,0,0,'2025-10-24',1381,1167,0,0,1127,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1615,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 11:17:34','','0000-00-00 00:00:00',0),(1670,0,0,'H','2526','','',1670,0,0,'2025-10-24',1379,891,0,0,859,'D',-300.00,0.00,'CSH','','','','','2025-10-24','','',1616,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-24 11:21:04','','0000-00-00 00:00:00',0),(1671,0,0,'H','2526','','',1671,0,0,'2025-10-24',1381,1167,0,0,1127,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1617,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 11:26:08','','0000-00-00 00:00:00',0),(1672,0,0,'H','2526','','',1672,0,0,'2025-10-24',1382,1168,0,0,1128,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1618,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-24 11:31:47','','0000-00-00 00:00:00',0),(1673,0,0,'H','2526','','',1673,0,0,'2025-10-24',1383,1169,0,0,1129,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1620,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-24 11:33:25','','0000-00-00 00:00:00',0),(1674,0,0,'H','2526','','',1674,0,0,'2025-10-24',1384,356,0,0,340,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1621,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-24 11:34:32','','0000-00-00 00:00:00',0),(1675,0,0,'H','2526','','',1675,0,0,'2025-10-24',1385,1170,0,0,1130,'B',900.00,0.00,'7','UNION BANK','','47260','','0000-00-00','scan ','',1623,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-24 11:36:54','','0000-00-00 00:00:00',0),(1676,0,0,'H','2526','','',1676,0,0,'2025-10-24',1387,1172,0,0,1132,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1624,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 11:40:17','','0000-00-00 00:00:00',0),(1677,0,0,'H','2526','','',1677,0,0,'2025-10-24',1388,127,0,0,116,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1625,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-24 11:41:16','','0000-00-00 00:00:00',0),(1678,0,0,'H','2526','','',1678,0,0,'2025-10-24',1389,142,0,0,131,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1626,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-24 11:42:13','','0000-00-00 00:00:00',0),(1679,0,0,'H','2526','','',1679,0,0,'2025-10-24',1390,1092,0,0,1059,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1628,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-24 11:44:40','','0000-00-00 00:00:00',0),(1680,0,0,'H','2526','','',1680,0,0,'2025-10-24',1391,870,0,0,839,'B',300.00,0.00,'7','AXIS BANK','','29984','','0000-00-00','scan','',1629,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-24 11:46:10','','0000-00-00 00:00:00',0),(1681,0,0,'H','2526','','',1681,0,0,'2025-10-24',1392,1173,0,0,1133,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1630,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-24 11:51:17','','0000-00-00 00:00:00',0),(1682,0,0,'H','2526','','',1682,0,0,'2025-10-24',1393,1174,0,0,1134,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1631,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 11:53:21','','0000-00-00 00:00:00',0),(1683,0,0,'H','2526','','',1683,0,0,'2025-10-24',1394,1175,0,0,1135,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1632,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-24 11:59:29','','0000-00-00 00:00:00',0),(1684,0,0,'H','2526','','',1684,0,0,'2025-10-24',1395,1176,0,0,1136,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1633,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-24 12:04:54','','0000-00-00 00:00:00',0),(1685,0,0,'H','2526','','',1685,0,0,'2025-10-24',1396,1177,0,0,1137,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1634,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-24 12:06:45','','0000-00-00 00:00:00',0),(1686,0,0,'H','2526','','',1686,0,0,'2025-10-24',1383,1169,0,0,1129,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',1635,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-24 12:07:58','','0000-00-00 00:00:00',0),(1687,0,0,'H','2526','','',1687,0,0,'2025-10-24',1385,1170,0,0,1130,'B',4600.00,0.00,'7','union bank','','95704','','0000-00-00','scan','',1636,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-24 12:23:02','','0000-00-00 00:00:00',0),(1688,0,0,'H','2526','','',1688,0,0,'2025-10-24',1397,129,0,0,118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1637,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-24 12:24:17','','0000-00-00 00:00:00',0),(1689,0,0,'H','2526','','',1689,0,0,'2025-10-24',1398,129,0,0,118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1638,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 12:26:06','','0000-00-00 00:00:00',0),(1690,0,0,'H','2526','','',1690,0,0,'2025-10-24',1399,1178,0,0,1138,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1639,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 12:35:05','','0000-00-00 00:00:00',0),(1691,0,0,'H','2526','','',1691,0,0,'2025-10-24',1400,1179,0,0,1139,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1640,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 12:37:11','','0000-00-00 00:00:00',0),(1692,0,0,'H','2526','','',1692,0,0,'2025-10-24',1394,1175,0,0,1135,'B',4600.00,0.00,'7','BOB','','33541','','0000-00-00','scan','',1641,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-24 12:38:59','','0000-00-00 00:00:00',0),(1693,0,0,'H','2526','','',1693,0,0,'2025-10-24',1395,1176,0,0,1136,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',1642,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-24 12:41:08','','0000-00-00 00:00:00',0),(1694,0,0,'H','2526','','P',1694,0,0,'2025-10-24',1341,1036,0,84,0,'A',10000.00,0.00,'7','BOB','','113118177956','','0000-00-00','SCAN','',1643,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-24 12:41:45','riya','2025-10-24 12:42:28',0),(1695,0,0,'H','2526','','',1695,0,0,'2025-10-24',1401,446,0,0,424,'B',500.00,0.00,'7','BOB','','39325','','0000-00-00','scan','',1644,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-24 13:15:59','','0000-00-00 00:00:00',0),(1696,0,0,'H','2526','','P',1696,0,0,'2025-10-24',1405,1180,0,88,0,'A',6000.00,0.00,'7','HDFC ','','113124347555','','0000-00-00','SCAN','',1734,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-24 14:53:47','vishal','2025-10-25 12:53:11',0),(1697,0,0,'H','2526','','',1697,0,0,'2025-10-24',1406,1181,0,0,1141,'B',800.00,0.00,'7','ICICI','','58358','','0000-00-00','scan','',1645,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 16:37:45','','0000-00-00 00:00:00',0),(1698,0,0,'H','2526','','',1698,0,0,'2025-10-24',1407,1182,0,0,1142,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',1646,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 16:45:46','','0000-00-00 00:00:00',0),(1699,0,0,'H','2526','','',1699,0,0,'2025-10-24',1408,1183,0,0,1143,'B',800.00,0.00,'7','HDFC','','93610','','0000-00-00','SCAN','',1647,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-24 16:50:20','','0000-00-00 00:00:00',0),(1700,0,0,'H','2526','','',1700,0,0,'2025-10-24',1409,1184,0,0,1144,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1648,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-24 17:03:06','','0000-00-00 00:00:00',0),(1701,0,0,'H','2526','','',1701,0,0,'2025-10-24',1411,603,0,0,575,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1649,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 17:05:13','','0000-00-00 00:00:00',0),(1702,0,0,'H','2526','','',1702,0,0,'2025-10-24',1412,43,0,0,39,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1650,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-24 17:07:52','','0000-00-00 00:00:00',0),(1703,0,0,'H','2526','','',1703,0,0,'2025-10-24',1408,1183,0,0,1143,'B',2000.00,0.00,'7','hdfc','','05903','','0000-00-00','SCAN','',1651,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-24 17:31:30','','0000-00-00 00:00:00',0),(1704,0,0,'H','2526','','',1704,0,0,'2025-10-24',1413,321,0,0,305,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1652,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 17:45:02','','0000-00-00 00:00:00',0),(1705,0,0,'H','2526','','',1705,0,0,'2025-10-24',1414,1185,0,0,1145,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1653,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-24 17:45:23','','0000-00-00 00:00:00',0),(1706,0,0,'H','2526','','',1706,0,0,'2025-10-24',1415,1186,0,0,1146,'B',700.00,0.00,'7','ICICI','','88156','','0000-00-00','SCAN','',1654,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-24 17:48:55','','0000-00-00 00:00:00',0),(1707,0,0,'H','2526','','',1707,0,0,'2025-10-24',1416,1187,0,0,1147,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1655,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-24 18:01:03','','0000-00-00 00:00:00',0),(1708,0,0,'H','2526','','',1708,0,0,'2025-10-24',1415,1186,0,0,1146,'B',500.00,0.00,'7','ICICI','','94508','','0000-00-00','SCAN','',1656,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-24 18:04:25','','0000-00-00 00:00:00',0),(1709,0,0,'H','2526','','',1709,0,0,'2025-10-24',1417,1188,0,0,1148,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1657,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-24 18:07:53','','0000-00-00 00:00:00',0),(1710,0,0,'H','2526','','',1710,0,0,'2025-10-24',1418,1189,0,0,1149,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1658,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 18:08:38','','0000-00-00 00:00:00',0),(1711,0,0,'H','2526','','',1711,0,0,'2025-10-24',1420,1128,0,0,1089,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1659,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-24 18:10:48','','0000-00-00 00:00:00',0),(1712,0,0,'H','2526','','',1712,0,0,'2025-10-24',1421,286,0,0,270,'B',300.00,0.00,'7','axis bank','','67088','','0000-00-00','scan                          ','',1660,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 18:10:56','','0000-00-00 00:00:00',0),(1713,0,0,'H','2526','','',1713,0,0,'2025-10-24',1419,1190,0,0,1150,'B',700.00,0.00,'7','CENTRAL BANK','','44371','','0000-00-00','scan ','',1661,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-24 18:11:19','','0000-00-00 00:00:00',0),(1714,0,0,'H','2526','','',1714,0,0,'2025-10-24',1423,378,0,0,362,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1662,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-24 18:12:35','','0000-00-00 00:00:00',0),(1715,0,0,'H','2526','','',1715,0,0,'2025-10-24',1422,1191,0,0,1151,'B',500.00,0.00,'7','axis bank','','78738','','0000-00-00','scan','',1663,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 18:13:10','','0000-00-00 00:00:00',0),(1716,0,0,'H','2526','','',1716,0,0,'2025-10-24',1424,1192,0,0,1152,'B',500.00,0.00,'7','ICICI','','98627','','0000-00-00','scan','',1664,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 18:15:56','','0000-00-00 00:00:00',0),(1717,0,0,'H','2526','','',1717,0,0,'2025-10-24',1426,1193,0,0,1153,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1665,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-24 18:25:00','','0000-00-00 00:00:00',0),(1718,0,0,'H','2526','','',1718,0,0,'2025-10-24',1430,1196,0,0,1157,'B',700.00,0.00,'7','SBI','','39774','','0000-00-00','scan','',1666,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 18:48:44','','0000-00-00 00:00:00',0),(1719,0,0,'H','2526','','',1719,0,0,'2025-10-24',1429,1195,0,0,1156,'B',1200.00,0.00,'7','RAJKOT NAGRIK ','','54037','','0000-00-00','SCAN','',1667,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-24 18:48:53','','0000-00-00 00:00:00',0),(1720,0,0,'H','2526','','',1720,0,0,'2025-10-24',1431,1197,0,0,1158,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1668,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 18:51:56','','0000-00-00 00:00:00',0),(1721,0,0,'H','2526','','',1721,0,0,'2025-10-24',1430,1196,0,0,1157,'B',300.00,0.00,'7','sbi','','15358','','0000-00-00','scan','',1669,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 19:03:31','','0000-00-00 00:00:00',0),(1722,0,0,'H','2526','','',1722,0,0,'2025-10-24',1432,1198,0,0,1159,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1670,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 19:06:01','','0000-00-00 00:00:00',0),(1723,0,0,'H','2526','','',1723,0,0,'2025-10-24',1420,1128,0,0,1089,'D',-500.00,0.00,'CSH','','','','','2025-10-24','','',1671,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-24 19:08:04','','0000-00-00 00:00:00',0),(1724,0,0,'H','2526','','',1724,0,0,'2025-10-24',1433,1199,0,0,1160,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1672,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 19:09:05','','0000-00-00 00:00:00',0),(1725,0,0,'H','2526','','',1725,0,0,'2025-10-24',1427,1194,0,0,1154,'B',2700.00,0.00,'7','ICICI','','72170','','0000-00-00','SCAN','',1674,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-24 19:19:15','','0000-00-00 00:00:00',0),(1726,0,0,'H','2526','','',1726,0,0,'2025-10-24',1431,1197,0,0,1158,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1675,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-24 19:21:34','','0000-00-00 00:00:00',0),(1727,0,0,'H','2526','','P',1727,0,0,'2025-10-24',1434,1034,0,89,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',1760,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-24 19:25:07','riya','2025-10-26 12:43:23',0),(1728,0,0,'H','2526','','',1728,0,0,'2025-10-24',1435,1200,0,0,1161,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1676,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-24 19:27:17','','0000-00-00 00:00:00',0),(1729,0,0,'H','2526','','',1729,0,0,'2025-10-24',1436,1201,0,0,1162,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1677,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-24 19:50:52','','0000-00-00 00:00:00',0),(1730,0,0,'H','2526','','P',1730,0,0,'2025-10-24',1437,1174,0,90,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',1919,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-24 19:55:24','vishal','2025-10-27 18:46:12',0),(1731,0,0,'H','2526','','',1731,0,0,'2025-10-24',1420,1128,0,0,1089,'B',4400.00,0.00,'CSH','','','','','2025-10-24','','',1673,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-24 20:10:34','','0000-00-00 00:00:00',0),(1732,0,0,'H','2526','','P',1732,0,0,'2025-10-24',1438,1179,0,91,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',2154,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-24 20:24:51','riya','2025-10-29 12:52:54',0),(1733,0,0,'H','2526','','',1733,0,0,'2025-10-24',1436,1201,0,0,1162,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',1678,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-24 20:40:20','','0000-00-00 00:00:00',0),(1734,0,0,'H','2526','','P',1734,0,0,'2025-10-24',1405,1180,0,88,0,'A',6000.00,0.00,'7','HDFC ','','113150320429','','0000-00-00','SCAN','',1734,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-24 23:49:47','vishal','2025-10-25 12:53:11',0),(1735,0,0,'H','2526','','',1735,0,0,'2025-10-25',1439,1202,0,0,1163,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1680,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-25 09:00:52','','0000-00-00 00:00:00',0),(1736,0,0,'H','2526','','',1736,0,0,'2025-10-25',1440,146,0,0,135,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1681,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-25 09:02:04','','0000-00-00 00:00:00',0),(1737,0,0,'H','2526','','',1737,0,0,'2025-10-25',1441,1203,0,0,1164,'B',900.00,0.00,'7','bandhan bank','','16564','','0000-00-00','scan ','',1682,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-25 09:04:17','','0000-00-00 00:00:00',0),(1738,0,0,'H','2526','','',1738,0,0,'2025-10-25',1442,1204,0,0,1165,'B',1250.00,0.00,'7','HDFC BANK','','67500','','0000-00-00','scan ','',1683,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-25 09:07:36','','0000-00-00 00:00:00',0),(1739,0,0,'H','2526','','',1739,0,0,'2025-10-25',1444,1205,0,0,1166,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1684,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-25 09:47:39','','0000-00-00 00:00:00',0),(1740,0,0,'H','2526','','',1740,0,0,'2025-10-25',1445,1206,0,0,1167,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1685,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 09:49:56','','0000-00-00 00:00:00',0),(1741,0,0,'H','2526','','',1741,0,0,'2025-10-25',1446,1207,0,0,1168,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1686,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 09:51:16','','0000-00-00 00:00:00',0),(1742,0,0,'H','2526','','',1742,0,0,'2025-10-25',1447,1208,0,0,1169,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1687,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 09:56:49','','0000-00-00 00:00:00',0),(1743,0,0,'H','2526','','',1743,0,0,'2025-10-25',1448,1209,0,0,1170,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1688,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 10:01:25','','0000-00-00 00:00:00',0),(1744,0,0,'H','2526','','',1744,0,0,'2025-10-25',1449,1210,0,0,1171,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1689,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-25 10:03:21','','0000-00-00 00:00:00',0),(1745,0,0,'H','2526','','',1745,0,0,'2025-10-25',1450,1211,0,0,1172,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1690,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-25 10:08:30','','0000-00-00 00:00:00',0),(1746,0,0,'H','2526','','',1746,0,0,'2025-10-25',1451,1212,0,0,1173,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1691,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 10:17:42','','0000-00-00 00:00:00',0),(1747,0,0,'H','2526','','',1747,0,0,'2025-10-25',1452,1213,0,0,1174,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1693,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 10:33:43','','0000-00-00 00:00:00',0),(1748,0,0,'H','2526','','P',1748,0,0,'2025-10-25',1362,1151,0,85,0,'A',7900.00,0.00,'CSH','','','','','0000-00-00','','',1694,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-25 10:39:23','riya','2025-10-25 10:40:00',0),(1749,0,0,'H','2526','','',1749,0,0,'2025-10-25',1453,1214,0,0,1175,'B',900.00,0.00,'7','airtel payment','','94449','','0000-00-00','scan ','',1695,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-25 10:46:18','','0000-00-00 00:00:00',0),(1750,0,0,'H','2526','','',1750,0,0,'2025-10-25',1446,1207,0,0,1168,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',1696,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 10:51:01','','0000-00-00 00:00:00',0),(1751,0,0,'H','2526','','',1751,0,0,'2025-10-25',1455,1216,0,0,1177,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1697,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 11:00:07','','0000-00-00 00:00:00',0),(1752,0,0,'H','2526','','',1752,0,0,'2025-10-25',1454,1215,0,0,1176,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1698,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-25 11:00:25','','0000-00-00 00:00:00',0),(1753,0,0,'H','2526','','',1753,0,0,'2025-10-25',1447,1208,0,0,1169,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',1699,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 11:04:24','','0000-00-00 00:00:00',0),(1754,0,0,'H','2526','','',1754,0,0,'2025-10-25',1456,1217,0,0,1178,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1700,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-25 11:04:33','','0000-00-00 00:00:00',0),(1755,0,0,'H','2526','','',1755,0,0,'2025-10-25',1457,1218,0,0,1179,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1701,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-25 11:07:04','','0000-00-00 00:00:00',0),(1756,0,0,'H','2526','','',1756,0,0,'2025-10-25',1458,1219,0,0,1180,'B',2100.00,0.00,'CSH','','','','','0000-00-00','','',1702,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-25 11:16:11','','0000-00-00 00:00:00',0),(1757,0,0,'H','2526','','',1757,0,0,'2025-10-25',1459,1220,0,0,1181,'B',700.00,0.00,'7','kotak','','09697','','0000-00-00','scan','',1703,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 11:20:53','','0000-00-00 00:00:00',0),(1758,0,0,'H','2526','','',1758,0,0,'2025-10-25',1460,1221,0,0,1182,'B',400.00,0.00,'7','sbi','','19789','','0000-00-00','scan','',1704,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-25 11:23:54','','0000-00-00 00:00:00',0),(1759,0,0,'H','2526','','',1759,0,0,'2025-10-25',1461,1222,0,0,1183,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1705,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 11:23:54','','0000-00-00 00:00:00',0),(1760,0,0,'H','2526','','',1760,0,0,'2025-10-25',1462,1223,0,0,1184,'B',400.00,0.00,'7','sbi','','19789','','0000-00-00','scan','',1706,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-25 11:25:33','','0000-00-00 00:00:00',0),(1761,0,0,'H','2526','','',1761,0,0,'2025-10-25',1463,1224,0,0,1185,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1707,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 11:26:34','','0000-00-00 00:00:00',0),(1762,0,0,'H','2526','','',1762,0,0,'2025-10-25',1464,1225,0,0,1186,'B',900.00,0.00,'7','HDFC BANK','','82679','','0000-00-00','scan ','',1708,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-25 11:28:15','','0000-00-00 00:00:00',0),(1763,0,0,'H','2526','','',1763,0,0,'2025-10-25',1453,1214,0,0,1175,'B',4500.00,0.00,'7','airtel bank','','03586','','0000-00-00','scan','',1709,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 11:35:54','','0000-00-00 00:00:00',0),(1764,0,0,'H','2526','','',1764,0,0,'2025-10-25',1459,1220,0,0,1181,'B',300.00,0.00,'7','KOTAK BANK','','06844','','0000-00-00','scan ','',1710,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-25 11:41:00','','0000-00-00 00:00:00',0),(1765,0,0,'H','2526','','',1765,0,0,'2025-10-25',1466,1227,0,0,1188,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1711,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 11:41:56','','0000-00-00 00:00:00',0),(1766,0,0,'H','2526','','',1766,0,0,'2025-10-25',1467,1228,0,0,1189,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1712,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-25 11:43:50','','0000-00-00 00:00:00',0),(1767,0,0,'H','2526','','',1767,0,0,'2025-10-25',1468,1229,0,0,1190,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1713,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 11:44:02','','0000-00-00 00:00:00',0),(1768,0,0,'H','2526','','',1768,0,0,'2025-10-25',1465,1226,0,0,1187,'B',500.00,0.00,'7','kotak','','06192','','0000-00-00','scan','',1714,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-25 11:45:08','','0000-00-00 00:00:00',0),(1769,0,0,'H','2526','','',1769,0,0,'2025-10-25',1469,1230,0,0,1191,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1715,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-25 11:45:59','','0000-00-00 00:00:00',0),(1770,0,0,'H','2526','','',1770,0,0,'2025-10-25',1460,1221,0,0,1182,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',1716,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-25 11:47:08','','0000-00-00 00:00:00',0),(1771,0,0,'H','2526','','',1771,0,0,'2025-10-25',1450,1211,0,0,1172,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',1718,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-25 11:49:36','','0000-00-00 00:00:00',0),(1772,0,0,'H','2526','','',1772,0,0,'2025-10-25',1456,1217,0,0,1178,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1719,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-25 11:52:07','','0000-00-00 00:00:00',0),(1773,0,0,'H','2526','','',1773,0,0,'2025-10-25',1471,1232,0,0,1193,'B',700.00,0.00,'7','axis bank','','25173','','0000-00-00','scan ','',1720,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-25 11:53:47','','0000-00-00 00:00:00',0),(1774,0,0,'H','2526','','',1774,0,0,'2025-10-25',1472,1233,0,0,1194,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1722,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 12:02:41','','0000-00-00 00:00:00',0),(1775,0,0,'H','2526','','',1775,0,0,'2025-10-25',1464,1225,0,0,1186,'B',4400.00,0.00,'7','hdfc','','34279','','0000-00-00','scan','',1723,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 12:15:03','','0000-00-00 00:00:00',0),(1776,0,0,'H','2526','','P',1776,0,0,'2025-10-25',1298,1107,0,82,0,'A',10000.00,0.00,'CRD','RBLBANK','','3174','','0000-00-00','CARD','',2024,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-25 12:17:21','riya','2025-10-28 14:17:14',0),(1777,0,0,'H','2526','','P',1777,0,0,'2025-10-25',1298,1107,0,82,0,'A',7000.00,0.00,'CRD','SBI ','','3175','','0000-00-00','CARD','',2024,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-25 12:18:13','riya','2025-10-28 14:17:14',0),(1778,0,0,'H','2526','','',1778,0,0,'2025-10-25',1473,1234,0,0,1195,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1724,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-25 12:25:09','','0000-00-00 00:00:00',0),(1779,0,0,'H','2526','','',1779,0,0,'2025-10-25',1474,1067,0,0,1033,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1725,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-25 12:26:28','','0000-00-00 00:00:00',0),(1780,0,0,'H','2526','','',1780,0,0,'2025-10-25',1475,1235,0,0,1196,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1726,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 12:28:33','','0000-00-00 00:00:00',0),(1781,0,0,'H','2526','','',1781,0,0,'2025-10-25',1476,1236,0,0,1197,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1728,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-25 12:35:48','','0000-00-00 00:00:00',0),(1782,0,0,'H','2526','','',1782,0,0,'2025-10-25',1477,1172,0,0,1132,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',1729,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-25 12:37:38','','0000-00-00 00:00:00',0),(1783,0,0,'H','2526','','',1783,0,0,'2025-10-25',1469,1230,0,0,1191,'B',4000.00,0.00,'2','icici','3177','3177','','0000-00-00','card','',1730,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 12:41:33','','0000-00-00 00:00:00',0),(1784,0,0,'H','2526','','',1784,0,0,'2025-10-25',1478,587,0,0,560,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1731,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-25 12:42:55','','0000-00-00 00:00:00',0),(1785,0,0,'H','2526','','',1785,0,0,'2025-10-25',1467,1228,0,0,1189,'B',4000.00,0.00,'CRD','hdfc','00503','00503','','0000-00-00','card','',1732,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 12:47:00','','0000-00-00 00:00:00',0),(1786,0,0,'H','2526','','',1786,0,0,'2025-10-25',1479,229,0,0,216,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1733,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-25 12:50:06','','0000-00-00 00:00:00',0),(1787,0,0,'H','2526','','',1787,0,0,'2025-10-25',1405,1180,0,88,1140,'D',-1000.00,0.00,'CSH','','','','','0000-00-00','','',1734,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-25 12:53:11','','0000-00-00 00:00:00',0),(1788,0,0,'H','2526','','',1788,0,0,'2025-10-25',1480,1237,0,0,1198,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1735,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 12:54:48','','0000-00-00 00:00:00',0),(1789,0,0,'H','2526','','',1789,0,0,'2025-10-25',1480,1237,0,0,1198,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1736,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-25 13:03:31','','0000-00-00 00:00:00',0),(1790,0,0,'H','2526','','',1790,0,0,'2025-10-25',1481,1238,0,0,1199,'B',900.00,0.00,'7','jccb','','56215','','0000-00-00','scan','',1738,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 13:10:08','','0000-00-00 00:00:00',0),(1791,0,0,'H','2526','','',1791,0,0,'2025-10-25',1482,1239,0,0,1200,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1739,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-25 13:17:23','','0000-00-00 00:00:00',0),(1792,0,0,'H','2526','','P',1792,0,0,'2025-10-25',1296,982,0,81,0,'A',26700.00,0.00,'CSH','','','','','0000-00-00','','',1740,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-25 13:49:13','riya','2025-10-25 13:49:26',0),(1793,0,0,'H','2526','','',1793,0,0,'2025-10-25',1482,1239,0,0,1200,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',1741,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-25 13:51:12','','0000-00-00 00:00:00',0),(1794,0,0,'H','2526','','P',1794,0,0,'2025-10-25',1147,989,0,70,0,'A',32200.00,0.00,'7','HDFC BANK','','113169025138','','0000-00-00','SCAN','',1742,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-25 14:27:51','riya','2025-10-25 14:28:28',0),(1795,0,0,'H','2526','','P',1795,0,0,'2025-10-25',1293,1103,0,78,0,'A',25000.00,0.00,'7','SBI ','','529857635271','','0000-00-00','SCAN','',2011,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-25 16:23:54','riya','2025-10-28 12:56:43',0),(1796,0,0,'H','2526','','P',1796,0,0,'2025-10-25',1363,1152,0,86,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',2202,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-25 16:28:28','vishal','2025-10-29 18:46:53',0),(1797,0,0,'H','2526','','',1797,0,0,'2025-10-25',1485,911,0,0,879,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1743,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-25 16:38:12','','0000-00-00 00:00:00',0),(1798,0,0,'H','2526','','',1798,0,0,'2025-10-25',1486,1242,0,0,1203,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1744,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-25 16:39:43','','0000-00-00 00:00:00',0),(1799,0,0,'H','2526','','',1799,0,0,'2025-10-25',1487,1243,0,0,1204,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1745,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-25 17:41:02','','0000-00-00 00:00:00',0),(1800,0,0,'H','2526','','',1800,0,0,'2025-10-25',1488,122,0,0,111,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',1746,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-25 17:41:29','','0000-00-00 00:00:00',0),(1801,0,0,'H','2526','','',1801,0,0,'2025-10-25',1489,1244,0,0,1205,'B',500.00,0.00,'7','sbi','','40310','','0000-00-00','scan','',1747,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-25 17:46:16','','0000-00-00 00:00:00',0),(1802,0,0,'H','2526','','',1802,0,0,'2025-10-25',1494,128,0,0,117,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1748,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-25 18:42:07','','0000-00-00 00:00:00',0),(1803,0,0,'H','2526','','P',1803,0,0,'2025-10-25',414,392,0,25,0,'A',35000.00,0.00,'CRD','ICICI BANK','','3179','','0000-00-00','CARD','',2614,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-25 18:48:10','vishal','2025-11-01 15:09:18',0),(1804,0,0,'H','2526','','',1804,0,0,'2025-10-25',1491,1246,0,0,1207,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1749,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-25 18:48:20','','0000-00-00 00:00:00',0),(1805,0,0,'H','2526','','',1805,0,0,'2025-10-25',1496,197,0,0,184,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',1750,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-25 18:53:07','','0000-00-00 00:00:00',0),(1806,0,0,'H','2526','','',1806,0,0,'2025-10-25',1497,1250,0,0,1211,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1751,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-25 18:56:53','','0000-00-00 00:00:00',0),(1807,0,0,'H','2526','','',1807,0,0,'2025-10-25',1498,1053,0,0,1019,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1752,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-25 19:03:27','','0000-00-00 00:00:00',0),(1808,0,0,'H','2526','','',1808,0,0,'2025-10-25',1499,1251,0,0,1212,'B',500.00,0.00,'7','SBI BANK','','97894','','0000-00-00','scan ','',1753,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-25 19:06:58','','0000-00-00 00:00:00',0),(1809,0,0,'H','2526','','P',1809,0,0,'2025-10-25',1501,1195,0,93,0,'A',15000.00,0.00,'7','NAGRIK BANK','','692846766735','','0000-00-00','SCAN','',2219,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-25 19:37:47','vishal','2025-10-29 20:42:41',0),(1810,0,0,'H','2526','','',1810,0,0,'2025-10-25',1495,1249,0,0,1210,'B',250.00,0.00,'CSH','','','','','0000-00-00','','',1755,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-25 19:39:18','','0000-00-00 00:00:00',0),(1811,0,0,'H','2526','','P',1811,0,0,'2025-10-25',489,452,0,38,0,'A',30000.00,0.00,'2','SBI ','','3180','','0000-00-00','CARD','',1756,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-25 21:04:36','riya','2025-10-25 21:05:07',0),(1812,0,0,'H','2526','','',1812,0,0,'2025-10-26',1503,1252,0,0,1213,'B',1300.00,0.00,'7','sbi','','78796','','0000-00-00','scan','',1757,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-26 10:05:07','','0000-00-00 00:00:00',0),(1813,0,0,'H','2526','','P',1813,0,0,'2025-10-26',1504,1253,0,94,0,'A',15000.00,0.00,'7','ICICI ','','529910653836','','0000-00-00','','UPI',1870,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-26 10:53:23','riya','2025-10-27 13:59:00',0),(1814,0,0,'H','2526','','P',1814,0,0,'2025-10-26',1505,1254,0,95,0,'A',7000.00,0.00,'7','SBI ','','529972379422','','0000-00-00','UPI','',1851,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-26 11:35:31','riya','2025-10-27 12:42:19',0),(1815,0,0,'H','2526','','P',1815,0,0,'2025-10-26',1506,197,0,96,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',1945,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-26 12:26:06','vishal','2025-10-27 21:27:48',0),(1816,0,0,'H','2526','','P',1816,0,0,'2025-10-26',1434,1034,0,89,0,'A',4600.00,0.00,'CSH','','','','','0000-00-00','','',1760,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-26 12:41:17','riya','2025-10-26 12:43:23',0),(1817,0,0,'H','2526','','P',1817,0,0,'2025-10-26',1438,1179,0,91,0,'A',35000.00,0.00,'CSH','','','','','0000-00-00','','',2154,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-26 19:49:27','riya','2025-10-29 12:52:54',0),(1818,0,0,'H','2526','','',1818,0,0,'2025-10-27',1508,1255,0,0,1214,'B',750.00,0.00,'7','sbi','','75780','','0000-00-00','scan','',1761,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 08:51:41','','0000-00-00 00:00:00',0),(1819,0,0,'H','2526','','',1819,0,0,'2025-10-27',1509,129,0,0,118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1762,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 08:52:50','','0000-00-00 00:00:00',0),(1820,0,0,'H','2526','','',1820,0,0,'2025-10-27',1510,1256,0,0,1215,'B',1450.00,0.00,'7','bank','','64461','','0000-00-00','scan','',1763,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 08:56:20','','0000-00-00 00:00:00',0),(1821,0,0,'H','2526','','',1821,0,0,'2025-10-27',1511,1257,0,0,1216,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',1764,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 09:03:47','','0000-00-00 00:00:00',0),(1822,0,0,'H','2526','','',1822,0,0,'2025-10-27',1512,1258,0,0,1217,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',1765,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 09:08:57','','0000-00-00 00:00:00',0),(1823,0,0,'H','2526','','',1823,0,0,'2025-10-27',1515,1261,0,0,1220,'B',1400.00,0.00,'CSH','','','','','0000-00-00','','',1766,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 09:20:11','','0000-00-00 00:00:00',0),(1824,0,0,'H','2526','','',1824,0,0,'2025-10-27',1516,674,0,0,644,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1767,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 09:26:51','','0000-00-00 00:00:00',0),(1825,0,0,'H','2526','','',1825,0,0,'2025-10-27',1517,1262,0,0,1221,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1768,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 09:29:11','','0000-00-00 00:00:00',0),(1826,0,0,'H','2526','','',1826,0,0,'2025-10-27',1518,1263,0,0,1222,'B',400.00,0.00,'7','HDFC BANK','','03886','','0000-00-00','scan ','',1769,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 09:41:09','','0000-00-00 00:00:00',0),(1827,0,0,'H','2526','','P',1827,0,0,'2025-10-27',1519,1173,0,97,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',1878,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-27 10:07:41','riya','2025-10-27 16:45:07',0),(1828,0,0,'H','2526','','',1828,0,0,'2025-10-27',1521,1265,0,0,1224,'B',500.00,0.00,'7','ICICI BANK','','72819','','0000-00-00','scan','',1770,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 10:14:17','','0000-00-00 00:00:00',0),(1829,0,0,'H','2526','','',1829,0,0,'2025-10-27',1522,1266,0,0,1225,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1771,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 10:18:35','','0000-00-00 00:00:00',0),(1830,0,0,'H','2526','','',1830,0,0,'2025-10-27',1524,1267,0,0,1226,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1772,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 10:21:03','','0000-00-00 00:00:00',0),(1831,0,0,'H','2526','','',1831,0,0,'2025-10-27',1525,1268,0,0,1227,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1773,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 10:21:31','','0000-00-00 00:00:00',0),(1832,0,0,'H','2526','','',1832,0,0,'2025-10-27',1526,675,0,0,645,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1774,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 10:21:40','','0000-00-00 00:00:00',0),(1833,0,0,'H','2526','','',1833,0,0,'2025-10-27',1527,1269,0,0,1228,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1775,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 10:22:36','','0000-00-00 00:00:00',0),(1834,0,0,'H','2526','','',1834,0,0,'2025-10-27',1528,1270,0,0,1229,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1776,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 10:24:51','','0000-00-00 00:00:00',0),(1835,0,0,'H','2526','','',1835,0,0,'2025-10-27',1520,1264,0,0,1223,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1777,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 10:30:32','','0000-00-00 00:00:00',0),(1836,0,0,'H','2526','','',1836,0,0,'2025-10-27',1529,1271,0,0,1230,'B',900.00,0.00,'7','bob','','33729','','0000-00-00','scan','',1778,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 10:30:44','','0000-00-00 00:00:00',0),(1837,0,0,'H','2526','','',1837,0,0,'2025-10-27',1530,1272,0,0,1231,'B',900.00,0.00,'7','sbi','','93443','','0000-00-00','scan','',1779,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 10:32:56','','0000-00-00 00:00:00',0),(1838,0,0,'H','2526','','',1838,0,0,'2025-10-27',1531,897,0,0,865,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1780,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 10:34:54','','0000-00-00 00:00:00',0),(1839,0,0,'H','2526','','',1839,0,0,'2025-10-27',1532,1273,0,0,1232,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1781,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 10:36:31','','0000-00-00 00:00:00',0),(1840,0,0,'H','2526','','',1840,0,0,'2025-10-27',1533,1274,0,0,1233,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1782,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 10:38:36','','0000-00-00 00:00:00',0),(1841,0,0,'H','2526','','',1841,0,0,'2025-10-27',1534,1275,0,0,1234,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1783,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 10:45:55','','0000-00-00 00:00:00',0),(1842,0,0,'H','2526','','',1842,0,0,'2025-10-27',1535,1276,0,0,1235,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1784,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 10:48:54','','0000-00-00 00:00:00',0),(1843,0,0,'H','2526','','',1843,0,0,'2025-10-27',1537,1277,0,0,1236,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1785,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 10:50:58','','0000-00-00 00:00:00',0),(1844,0,0,'H','2526','','',1844,0,0,'2025-10-27',1538,1278,0,0,1237,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1786,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 10:51:11','','0000-00-00 00:00:00',0),(1845,0,0,'H','2526','','',1845,0,0,'2025-10-27',1539,1279,0,0,1238,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1787,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 10:54:10','','0000-00-00 00:00:00',0),(1846,0,0,'H','2526','','',1846,0,0,'2025-10-27',1540,1280,0,0,1239,'B',800.00,0.00,'7','sbi','','73081','','0000-00-00','scan','',1788,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 10:54:17','','0000-00-00 00:00:00',0),(1847,0,0,'H','2526','','',1847,0,0,'2025-10-27',1541,1281,0,0,1240,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1789,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 10:56:14','','0000-00-00 00:00:00',0),(1848,0,0,'H','2526','','',1848,0,0,'2025-10-27',1514,1260,0,0,1219,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1790,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 10:57:00','','0000-00-00 00:00:00',0),(1849,0,0,'H','2526','','',1849,0,0,'2025-10-27',1544,1283,0,0,1242,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1791,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 10:58:29','','0000-00-00 00:00:00',0),(1850,0,0,'H','2526','','',1850,0,0,'2025-10-27',1543,1282,0,0,1241,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1793,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 10:58:54','','0000-00-00 00:00:00',0),(1851,0,0,'H','2526','','',1851,0,0,'2025-10-27',1514,1260,0,0,1219,'D',-400.00,0.00,'CSH','','','','','2025-10-27','','',1792,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 10:59:04','','0000-00-00 00:00:00',0),(1852,0,0,'H','2526','','',1852,0,0,'2025-10-27',1514,1260,0,0,1219,'B',400.00,0.00,'7','axis bank','','74480','','0000-00-00','scan     ','',1794,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 10:59:53','','0000-00-00 00:00:00',0),(1853,0,0,'H','2526','','',1853,0,0,'2025-10-27',1513,1259,0,0,1218,'B',400.00,0.00,'7','axis bank','','74480','','0000-00-00','scan     ','',1795,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 11:00:36','','0000-00-00 00:00:00',0),(1854,0,0,'H','2526','','P',1854,0,0,'2025-10-27',1536,1264,0,98,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',2139,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-27 11:01:05','riya','2025-10-29 12:12:09',0),(1855,0,0,'H','2526','','',1855,0,0,'2025-10-27',1546,1285,0,0,1244,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1796,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 11:03:01','','0000-00-00 00:00:00',0),(1856,0,0,'H','2526','','',1856,0,0,'2025-10-27',1545,1284,0,0,1243,'B',750.00,0.00,'7','SBI BANK','','67141','','0000-00-00','scan ','',1797,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 11:03:24','','0000-00-00 00:00:00',0),(1857,0,0,'H','2526','','',1857,0,0,'2025-10-27',1549,191,0,0,178,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1798,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 11:07:17','','0000-00-00 00:00:00',0),(1858,0,0,'H','2526','','',1858,0,0,'2025-10-27',1550,740,0,0,709,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1799,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 11:07:54','','0000-00-00 00:00:00',0),(1859,0,0,'H','2526','','',1859,0,0,'2025-10-27',1548,1287,0,0,1246,'B',700.00,0.00,'7','axis bank','','74752','','0000-00-00','scan ','',1800,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 11:08:06','','0000-00-00 00:00:00',0),(1860,0,0,'H','2526','','',1860,0,0,'2025-10-27',1551,1288,0,0,1247,'B',900.00,0.00,'7','union','','28078','','0000-00-00','scan','',1801,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 11:10:37','','0000-00-00 00:00:00',0),(1861,0,0,'H','2526','','',1861,0,0,'2025-10-27',1553,1289,0,0,1248,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1802,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 11:14:33','','0000-00-00 00:00:00',0),(1862,0,0,'H','2526','','',1862,0,0,'2025-10-27',1521,1265,0,0,1224,'B',400.00,0.00,'7','ICICI BANK','','98470','','0000-00-00','SCAN','',1803,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 11:15:14','','0000-00-00 00:00:00',0),(1863,0,0,'H','2526','','',1863,0,0,'2025-10-27',1554,1290,0,0,1249,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1804,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 11:17:55','','0000-00-00 00:00:00',0),(1864,0,0,'H','2526','','',1864,0,0,'2025-10-27',1556,1291,0,0,1250,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1805,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 11:20:42','','0000-00-00 00:00:00',0),(1865,0,0,'H','2526','','',1865,0,0,'2025-10-27',1558,752,0,0,721,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1806,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 11:21:51','','0000-00-00 00:00:00',0),(1866,0,0,'H','2526','','P',1866,0,0,'2025-10-27',1501,1195,0,93,0,'A',5000.00,0.00,'7','RAJKOT NAGRIK SHAHKARI BA','','391364595935','','0000-00-00','UPI','',2219,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-27 11:23:27','vishal','2025-10-29 20:42:41',0),(1867,0,0,'H','2526','','',1867,0,0,'2025-10-27',1559,1292,0,0,1251,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1807,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 11:23:31','','0000-00-00 00:00:00',0),(1868,0,0,'H','2526','','',1868,0,0,'2025-10-27',1560,1293,0,0,1252,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1808,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 11:25:21','','0000-00-00 00:00:00',0),(1869,0,0,'H','2526','','',1869,0,0,'2025-10-27',1542,954,0,0,923,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1809,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 11:25:42','','0000-00-00 00:00:00',0),(1870,0,0,'H','2526','','',1870,0,0,'2025-10-27',1562,510,0,0,486,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1810,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 11:28:01','','0000-00-00 00:00:00',0),(1871,0,0,'H','2526','','',1871,0,0,'2025-10-27',1561,1294,0,0,1253,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1811,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 11:28:02','','0000-00-00 00:00:00',0),(1872,0,0,'H','2526','','',1872,0,0,'2025-10-27',1549,191,0,0,178,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1812,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 11:30:05','','0000-00-00 00:00:00',0),(1873,0,0,'H','2526','','',1873,0,0,'2025-10-27',1564,455,0,0,1254,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1813,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 11:32:53','','0000-00-00 00:00:00',0),(1874,0,0,'H','2526','','',1874,0,0,'2025-10-27',1565,1296,0,0,1255,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1814,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 11:35:38','','0000-00-00 00:00:00',0),(1875,0,0,'H','2526','','',1875,0,0,'2025-10-27',1566,53,0,0,47,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1815,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 11:36:38','','0000-00-00 00:00:00',0),(1876,0,0,'H','2526','','',1876,0,0,'2025-10-27',1568,1298,0,0,1257,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1816,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 11:38:57','','0000-00-00 00:00:00',0),(1877,0,0,'H','2526','','',1877,0,0,'2025-10-27',1567,1297,0,0,1256,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1817,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 11:39:43','','0000-00-00 00:00:00',0),(1878,0,0,'H','2526','','',1878,0,0,'2025-10-27',1548,1287,0,0,1246,'B',700.00,0.00,'7','axis bank','','73564','','0000-00-00','scan','',1818,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 11:39:58','','0000-00-00 00:00:00',0),(1879,0,0,'H','2526','','P',1879,0,0,'2025-10-27',1563,1295,0,99,0,'A',40000.00,0.00,'CSH','','','','','0000-00-00','','',2207,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-27 11:39:59','vishal','2025-10-29 19:04:37',0),(1880,0,0,'H','2526','','',1880,0,0,'2025-10-27',1526,675,0,0,645,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',1819,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 11:40:29','','0000-00-00 00:00:00',0),(1881,0,0,'H','2526','','',1881,0,0,'2025-10-27',1569,22,0,0,21,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1820,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 11:41:52','','0000-00-00 00:00:00',0),(1882,0,0,'H','2526','','',1882,0,0,'2025-10-27',1570,1299,0,0,1258,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1821,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 11:42:03','','0000-00-00 00:00:00',0),(1883,0,0,'H','2526','','',1883,0,0,'2025-10-27',1571,1300,0,0,1259,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1822,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 11:42:12','','0000-00-00 00:00:00',0),(1884,0,0,'H','2526','','',1884,0,0,'2025-10-27',1527,1269,0,0,1228,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',1823,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 11:45:41','','0000-00-00 00:00:00',0),(1885,0,0,'H','2526','','',1885,0,0,'2025-10-27',1574,1301,0,0,1260,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1824,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 11:49:04','','0000-00-00 00:00:00',0),(1886,0,0,'H','2526','','',1886,0,0,'2025-10-27',1575,514,0,0,489,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1825,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 11:49:29','','0000-00-00 00:00:00',0),(1887,0,0,'H','2526','','',1887,0,0,'2025-10-27',1577,1303,0,0,1262,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1826,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 11:51:22','','0000-00-00 00:00:00',0),(1888,0,0,'H','2526','','',1888,0,0,'2025-10-27',1578,1304,0,0,1263,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1827,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 11:51:26','','0000-00-00 00:00:00',0),(1889,0,0,'H','2526','','',1889,0,0,'2025-10-27',1551,1288,0,0,1247,'B',4000.00,0.00,'7','union bank','','39942','','0000-00-00','scan ','',1828,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 11:51:31','','0000-00-00 00:00:00',0),(1890,0,0,'H','2526','','',1890,0,0,'2025-10-27',1576,1302,0,0,1261,'B',700.00,0.00,'7','IDFC','','32003','','0000-00-00','scan     ','',1829,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 11:51:54','','0000-00-00 00:00:00',0),(1891,0,0,'H','2526','','',1891,0,0,'2025-10-27',1579,274,0,0,1264,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1830,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 11:53:19','','0000-00-00 00:00:00',0),(1892,0,0,'H','2526','','',1892,0,0,'2025-10-27',1581,179,0,0,166,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1831,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 11:55:10','','0000-00-00 00:00:00',0),(1893,0,0,'H','2526','','P',1893,0,0,'2025-10-27',1572,1276,0,100,0,'A',7000.00,0.00,'2','YES BANK','','3181','','0000-00-00','CARD','',2153,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-27 11:56:41','riya','2025-10-29 12:48:27',0),(1894,0,0,'H','2526','','',1894,0,0,'2025-10-27',1583,1306,0,0,1267,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1833,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 12:02:10','','0000-00-00 00:00:00',0),(1895,0,0,'H','2526','','',1895,0,0,'2025-10-27',1582,1305,0,0,1266,'B',750.00,0.00,'CRD','SBI BANK','','3182','','0000-00-00','CARD','',1834,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 12:04:55','','0000-00-00 00:00:00',0),(1896,0,0,'H','2526','','',1896,0,0,'2025-10-27',1540,1280,0,0,1239,'B',4000.00,0.00,'7','sbi','','46013','','0000-00-00','scan','',1835,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 12:09:42','','0000-00-00 00:00:00',0),(1897,0,0,'H','2526','','',1897,0,0,'2025-10-27',1585,444,0,0,422,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1836,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 12:10:06','','0000-00-00 00:00:00',0),(1898,0,0,'H','2526','','',1898,0,0,'2025-10-27',1584,1307,0,0,1268,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1837,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 12:10:36','','0000-00-00 00:00:00',0),(1899,0,0,'H','2526','','',1899,0,0,'2025-10-27',1586,1308,0,0,1269,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1838,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-27 12:10:40','','0000-00-00 00:00:00',0),(1900,0,0,'H','2526','','',1900,0,0,'2025-10-27',1588,453,0,0,430,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1839,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-27 12:14:07','','0000-00-00 00:00:00',0),(1901,0,0,'H','2526','','',1901,0,0,'2025-10-27',1587,1309,0,0,1270,'B',900.00,0.00,'7','icici','','78350','','0000-00-00','scan ','',1840,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 12:14:12','','0000-00-00 00:00:00',0),(1902,0,0,'H','2526','','',1902,0,0,'2025-10-27',1589,611,0,0,580,'B',300.00,0.00,'7','HDFC','','43285','','0000-00-00','SCAN','',1841,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 12:17:54','','0000-00-00 00:00:00',0),(1903,0,0,'H','2526','','',1903,0,0,'2025-10-27',1523,1192,0,0,1152,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',1842,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 12:18:12','','0000-00-00 00:00:00',0),(1904,0,0,'H','2526','','',1904,0,0,'2025-10-27',1578,1304,0,0,1263,'D',-300.00,0.00,'CSH','','','','','2025-10-27','','',1843,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 12:20:12','','0000-00-00 00:00:00',0),(1905,0,0,'H','2526','','',1905,0,0,'2025-10-27',1590,1310,0,0,1271,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1844,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 12:22:59','','0000-00-00 00:00:00',0),(1906,0,0,'H','2526','','',1906,0,0,'2025-10-27',1529,1271,0,0,1230,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',1845,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 12:23:37','','0000-00-00 00:00:00',0),(1907,0,0,'H','2526','','',1907,0,0,'2025-10-27',1533,1274,0,0,1233,'B',3500.00,0.00,'7','SBI BANK','','92370','','0000-00-00','scan ','',1846,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 12:28:11','','0000-00-00 00:00:00',0),(1908,0,0,'H','2526','','',1908,0,0,'2025-10-27',1591,1311,0,0,1272,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1847,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 12:32:28','','0000-00-00 00:00:00',0),(1909,0,0,'H','2526','','',1909,0,0,'2025-10-27',1521,1265,0,0,1224,'B',600.00,0.00,'7','ICICI BANK','','94743','','0000-00-00','SCAN','',1848,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 12:35:26','','0000-00-00 00:00:00',0),(1910,0,0,'H','2526','','',1910,0,0,'2025-10-27',1592,1312,0,0,1273,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1849,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-27 12:37:36','','0000-00-00 00:00:00',0),(1911,0,0,'H','2526','','',1911,0,0,'2025-10-27',1541,1281,0,0,1240,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',1850,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 12:39:38','','0000-00-00 00:00:00',0),(1912,0,0,'H','2526','','P',1912,0,0,'2025-10-27',1505,1254,0,95,0,'A',1100.00,0.00,'7','SBI','','566617541770','','0000-00-00','UPI','',1851,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-27 12:41:50','riya','2025-10-27 12:42:19',0),(1913,0,0,'H','2526','','',1913,0,0,'2025-10-27',1586,1308,0,0,1269,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',1852,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 12:47:37','','0000-00-00 00:00:00',0),(1914,0,0,'H','2526','','',1914,0,0,'2025-10-27',1593,982,0,0,951,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1853,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-27 12:49:58','','0000-00-00 00:00:00',0),(1915,0,0,'H','2526','','',1915,0,0,'2025-10-27',1594,1215,0,0,1176,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1854,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 12:50:08','','0000-00-00 00:00:00',0),(1916,0,0,'H','2526','','',1916,0,0,'2025-10-27',1596,161,0,0,150,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1855,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-27 12:52:48','','0000-00-00 00:00:00',0),(1917,0,0,'H','2526','','',1917,0,0,'2025-10-27',1595,1313,0,0,1274,'B',400.00,0.00,'7','sbi','','47716','','0000-00-00','scan     ','',1856,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 12:53:05','','0000-00-00 00:00:00',0),(1918,0,0,'H','2526','','',1918,0,0,'2025-10-27',1597,1314,0,0,1275,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1857,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 12:54:27','','0000-00-00 00:00:00',0),(1919,0,0,'H','2526','','',1919,0,0,'2025-10-27',1594,1215,0,0,1176,'D',-300.00,0.00,'CSH','','','','','2025-10-27','','',1858,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 12:57:37','','0000-00-00 00:00:00',0),(1920,0,0,'H','2526','','',1920,0,0,'2025-10-27',1577,1303,0,0,1262,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1859,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-27 12:57:42','','0000-00-00 00:00:00',0),(1921,0,0,'H','2526','','',1921,0,0,'2025-10-27',1584,1307,0,0,1268,'D',-500.00,0.00,'CSH','','','','','2025-10-27','','',1860,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 12:59:18','','0000-00-00 00:00:00',0),(1922,0,0,'H','2526','','',1922,0,0,'2025-10-27',1587,1309,0,0,1270,'B',4500.00,0.00,'7','icici bank','','34199','','0000-00-00','scan ','',1861,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 12:59:44','','0000-00-00 00:00:00',0),(1923,0,0,'H','2526','','',1923,0,0,'2025-10-27',1599,1315,0,0,1276,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1862,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 13:08:33','','0000-00-00 00:00:00',0),(1924,0,0,'H','2526','','',1924,0,0,'2025-10-27',1600,1316,0,0,1277,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1863,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 13:09:19','','0000-00-00 00:00:00',0),(1925,0,0,'H','2526','','',1925,0,0,'2025-10-27',1553,1289,0,0,1248,'B',1600.00,0.00,'CSH','','','','','0000-00-00','','',1864,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 13:13:42','','0000-00-00 00:00:00',0),(1926,0,0,'H','2526','','',1926,0,0,'2025-10-27',1602,1317,0,0,1278,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1866,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 13:21:47','','0000-00-00 00:00:00',0),(1927,0,0,'H','2526','','',1927,0,0,'2025-10-27',1603,1318,0,0,1279,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1867,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-27 13:24:29','','0000-00-00 00:00:00',0),(1928,0,0,'H','2526','','P',1928,0,0,'2025-10-27',1601,657,0,101,0,'A',15000.00,0.00,'7','punjab and sind bank','','566629590527','','0000-00-00','UPI','',2027,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-27 13:29:25','riya','2025-10-28 15:41:04',0),(1929,0,0,'H','2526','','',1929,0,0,'2025-10-27',1604,178,0,0,165,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1868,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 13:51:42','','0000-00-00 00:00:00',0),(1930,0,0,'H','2526','','',1930,0,0,'2025-10-27',1605,1319,0,0,1280,'B',400.00,0.00,'7','icici','','27031','','0000-00-00','scan','',1869,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 13:55:55','','0000-00-00 00:00:00',0),(1931,0,0,'H','2526','','P',1931,0,0,'2025-10-27',1504,1253,0,94,0,'A',4300.00,0.00,'7','icici','','566682647137','','0000-00-00','UPI','',1870,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-27 13:58:22','riya','2025-10-27 13:59:00',0),(1932,0,0,'H','2526','','',1932,0,0,'2025-10-27',1575,514,0,0,489,'B',7000.00,0.00,'7','BOI BANK','','34946','','0000-00-00','scan','',1871,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-27 14:13:12','','0000-00-00 00:00:00',0),(1933,0,0,'H','2526','','',1933,0,0,'2025-10-27',1504,1253,0,94,0,'D',-1600.00,0.00,'CSH','','','','','2025-10-27','CASH','',1870,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-27 14:23:12','','0000-00-00 00:00:00',0),(1934,0,0,'H','2526','','P',1934,0,0,'2025-10-27',1536,1264,0,98,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',2139,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-27 15:08:30','riya','2025-10-29 12:12:09',0),(1935,0,0,'H','2526','','',1935,0,0,'2025-10-27',1607,1321,0,0,1282,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1873,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-27 16:25:14','','0000-00-00 00:00:00',0),(1936,0,0,'H','2526','','',1936,0,0,'2025-10-27',1606,1320,0,0,1281,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1874,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-27 16:25:37','','0000-00-00 00:00:00',0),(1937,0,0,'H','2526','','',1937,0,0,'2025-10-27',1608,1322,0,0,1283,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1875,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 16:35:56','','0000-00-00 00:00:00',0),(1938,0,0,'H','2526','','',1938,0,0,'2025-10-27',1609,1015,0,0,982,'B',500.00,0.00,'7','sbi','','49114','','0000-00-00','scan ','',1877,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 16:43:32','','0000-00-00 00:00:00',0),(1939,0,0,'H','2526','','',1939,0,0,'2025-10-27',1610,1323,0,0,1284,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1879,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 16:46:41','','0000-00-00 00:00:00',0),(1940,0,0,'H','2526','','',1940,0,0,'2025-10-27',1606,1320,0,0,1281,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',1880,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 17:12:58','','0000-00-00 00:00:00',0),(1941,0,0,'H','2526','','',1941,0,0,'2025-10-27',1611,1317,0,0,1278,'B',3100.00,0.00,'CSH','','','','','0000-00-00','','',1881,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 17:16:27','','0000-00-00 00:00:00',0),(1942,0,0,'H','2526','','',1942,0,0,'2025-10-27',1612,90,0,0,79,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1882,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 17:19:32','','0000-00-00 00:00:00',0),(1943,0,0,'H','2526','','',1943,0,0,'2025-10-27',1613,1324,0,0,1285,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1883,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 17:21:24','','0000-00-00 00:00:00',0),(1944,0,0,'H','2526','','',1944,0,0,'2025-10-27',1614,1325,0,0,1286,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1884,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 17:23:00','','0000-00-00 00:00:00',0),(1945,0,0,'H','2526','','',1945,0,0,'2025-10-27',1608,1322,0,0,1283,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',1885,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 17:25:05','','0000-00-00 00:00:00',0),(1946,0,0,'H','2526','','',1946,0,0,'2025-10-27',1615,319,0,0,303,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1886,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 17:27:50','','0000-00-00 00:00:00',0),(1947,0,0,'H','2526','','',1947,0,0,'2025-10-27',1617,1326,0,0,1287,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1887,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 17:34:34','','0000-00-00 00:00:00',0),(1948,0,0,'H','2526','','',1948,0,0,'2025-10-27',1619,1327,0,0,1288,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1888,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-27 17:42:57','','0000-00-00 00:00:00',0),(1949,0,0,'H','2526','','',1949,0,0,'2025-10-27',1620,1328,0,0,1289,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1889,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 17:44:27','','0000-00-00 00:00:00',0),(1950,0,0,'H','2526','','',1950,0,0,'2025-10-27',1621,1329,0,0,1290,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1890,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 17:47:39','','0000-00-00 00:00:00',0),(1951,0,0,'H','2526','','',1951,0,0,'2025-10-27',1622,1330,0,0,1291,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1891,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 17:47:48','','0000-00-00 00:00:00',0),(1952,0,0,'H','2526','','',1952,0,0,'2025-10-27',1613,1324,0,0,1285,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',1892,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 17:52:05','','0000-00-00 00:00:00',0),(1953,0,0,'H','2526','','',1953,0,0,'2025-10-27',1623,477,0,0,451,'B',300.00,0.00,'7','pnb','','24315','','0000-00-00','scan     ','',1893,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 17:52:14','','0000-00-00 00:00:00',0),(1954,0,0,'H','2526','','',1954,0,0,'2025-10-27',1624,1331,0,0,1292,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1894,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 17:57:46','','0000-00-00 00:00:00',0),(1955,0,0,'H','2526','','',1955,0,0,'2025-10-27',1625,1141,0,0,1103,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1895,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 17:58:01','','0000-00-00 00:00:00',0),(1956,0,0,'H','2526','','',1956,0,0,'2025-10-27',1626,1332,0,0,1293,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1896,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 18:01:02','','0000-00-00 00:00:00',0),(1957,0,0,'H','2526','','',1957,0,0,'2025-10-27',1616,1172,0,0,1132,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1897,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 18:01:43','','0000-00-00 00:00:00',0),(1958,0,0,'H','2526','','',1958,0,0,'2025-10-27',1627,932,0,0,901,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1898,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 18:02:30','','0000-00-00 00:00:00',0),(1959,0,0,'H','2526','','',1959,0,0,'2025-10-27',1617,1326,0,0,1287,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',1899,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 18:05:56','','0000-00-00 00:00:00',0),(1960,0,0,'H','2526','','',1960,0,0,'2025-10-27',1628,1333,0,0,1294,'B',500.00,0.00,'7','sbi','','43713','','0000-00-00','scan  ','',1900,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 18:10:23','','0000-00-00 00:00:00',0),(1961,0,0,'H','2526','','',1961,0,0,'2025-10-27',1629,1334,0,0,1295,'B',700.00,0.00,'7','sbi','','48367','','0000-00-00','scan ','',1901,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 18:10:45','','0000-00-00 00:00:00',0),(1962,0,0,'H','2526','','',1962,0,0,'2025-10-27',1618,1036,0,0,1004,'B',100.00,0.00,'7','boi','','65885','','0000-00-00','scan     ','',1903,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 18:11:48','','0000-00-00 00:00:00',0),(1963,0,0,'H','2526','','',1963,0,0,'2025-10-27',1630,1335,0,0,1296,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1904,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 18:21:10','','0000-00-00 00:00:00',0),(1964,0,0,'H','2526','','',1964,0,0,'2025-10-27',1631,1336,0,0,1297,'B',400.00,0.00,'7','hdfc','','04102','','0000-00-00','scan','',1905,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 18:23:41','','0000-00-00 00:00:00',0),(1965,0,0,'H','2526','','',1965,0,0,'2025-10-27',1632,1337,0,0,1298,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1906,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 18:24:23','','0000-00-00 00:00:00',0),(1966,0,0,'H','2526','','',1966,0,0,'2025-10-27',1633,1338,0,0,1299,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1907,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 18:28:24','','0000-00-00 00:00:00',0),(1967,0,0,'H','2526','','',1967,0,0,'2025-10-27',1622,1330,0,0,1291,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',1908,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 18:29:48','','0000-00-00 00:00:00',0),(1968,0,0,'H','2526','','',1968,0,0,'2025-10-27',1634,1339,0,0,1300,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1909,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 18:30:00','','0000-00-00 00:00:00',0),(1969,0,0,'H','2526','','',1969,0,0,'2025-10-27',1636,1341,0,0,1302,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1910,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 18:33:20','','0000-00-00 00:00:00',0),(1970,0,0,'H','2526','','',1970,0,0,'2025-10-27',1638,1342,0,0,1303,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1911,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 18:37:18','','0000-00-00 00:00:00',0),(1971,0,0,'H','2526','','',1971,0,0,'2025-10-27',1639,1343,0,0,1304,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1912,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 18:37:34','','0000-00-00 00:00:00',0),(1972,0,0,'H','2526','','',1972,0,0,'2025-10-27',1641,1345,0,0,1306,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1913,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 18:40:49','','0000-00-00 00:00:00',0),(1973,0,0,'H','2526','','',1973,0,0,'2025-10-27',1642,1094,0,0,1060,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1914,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 18:41:16','','0000-00-00 00:00:00',0),(1974,0,0,'H','2526','','',1974,0,0,'2025-10-27',1640,1344,0,0,1305,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1915,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 18:41:17','','0000-00-00 00:00:00',0),(1975,0,0,'H','2526','','',1975,0,0,'2025-10-27',1637,307,0,0,291,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1916,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 18:42:01','','0000-00-00 00:00:00',0),(1976,0,0,'H','2526','','',1976,0,0,'2025-10-27',1636,1341,0,0,1302,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',1917,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 18:44:43','','0000-00-00 00:00:00',0),(1977,0,0,'H','2526','','',1977,0,0,'2025-10-27',1643,1346,0,0,1307,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1918,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-27 18:45:10','','0000-00-00 00:00:00',0),(1978,0,0,'H','2526','','P',1978,0,0,'2025-10-27',1437,1174,0,90,0,'A',13500.00,0.00,'7','AXIS BANK','','13453','','0000-00-00','','',1919,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-27 18:45:45','vishal','2025-10-27 18:46:12',0),(1979,0,0,'H','2526','','',1979,0,0,'2025-10-27',1644,1347,0,0,1308,'B',500.00,0.00,'7','HDFC','','66163','','0000-00-00','scan ','',1920,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 18:48:29','','0000-00-00 00:00:00',0),(1980,0,0,'H','2526','','',1980,0,0,'2025-10-27',1646,1349,0,0,1310,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1921,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 18:52:12','','0000-00-00 00:00:00',0),(1981,0,0,'H','2526','','',1981,0,0,'2025-10-27',1645,1348,0,0,1309,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1922,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 18:52:26','','0000-00-00 00:00:00',0),(1982,0,0,'H','2526','','',1982,0,0,'2025-10-27',1647,1350,0,0,1311,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1923,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-27 18:52:49','','0000-00-00 00:00:00',0),(1983,0,0,'H','2526','','',1983,0,0,'2025-10-27',1635,1340,0,0,1301,'B',400.00,0.00,'7','hdfc','','65104','','0000-00-00','scan  ','',1924,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 18:55:00','','0000-00-00 00:00:00',0),(1984,0,0,'H','2526','','',1984,0,0,'2025-10-27',1648,458,0,0,435,'B',300.00,0.00,'7','BOB','','13583','','0000-00-00','SCAN','',1925,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-27 18:55:43','','0000-00-00 00:00:00',0),(1985,0,0,'H','2526','','',1985,0,0,'2025-10-27',1649,1351,0,0,1312,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1926,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 18:57:54','','0000-00-00 00:00:00',0),(1986,0,0,'H','2526','','',1986,0,0,'2025-10-27',1651,1353,0,0,1314,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1927,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 19:05:39','','0000-00-00 00:00:00',0),(1987,0,0,'H','2526','','',1987,0,0,'2025-10-27',1650,1352,0,0,1313,'B',700.00,0.00,'7','SBI BANK','','23279','','0000-00-00','scan','',1928,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-27 19:08:38','','0000-00-00 00:00:00',0),(1988,0,0,'H','2526','','',1988,0,0,'2025-10-27',1654,1354,0,0,1315,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1929,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 19:14:13','','0000-00-00 00:00:00',0),(1989,0,0,'H','2526','','',1989,0,0,'2025-10-27',1641,1345,0,0,1306,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',1930,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 19:19:06','','0000-00-00 00:00:00',0),(1990,0,0,'H','2526','','',1990,0,0,'2025-10-27',1650,1352,0,0,1313,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1931,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-27 19:20:38','','0000-00-00 00:00:00',0),(1991,0,0,'H','2526','','',1991,0,0,'2025-10-27',1655,1355,0,0,1316,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1932,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 19:20:45','','0000-00-00 00:00:00',0),(1992,0,0,'H','2526','','',1992,0,0,'2025-10-27',1656,1356,0,0,1317,'B',400.00,0.00,'7','axis bank','','18270','','0000-00-00','scan     ','',1933,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-27 19:32:27','','0000-00-00 00:00:00',0),(1993,0,0,'H','2526','','',1993,0,0,'2025-10-27',1657,1357,0,0,1318,'B',400.00,0.00,'7','BOB BANK','','25014','','0000-00-00','scan','',1935,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-27 19:44:16','','0000-00-00 00:00:00',0),(1994,0,0,'H','2526','','',1994,0,0,'2025-10-27',1658,1358,0,0,1319,'B',400.00,0.00,'7','BOB BANK','','25014','','0000-00-00','scan','',1936,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-27 19:46:12','','0000-00-00 00:00:00',0),(1995,0,0,'H','2526','','',1995,0,0,'2025-10-27',1659,1359,0,0,1320,'B',750.00,0.00,'7','HDFC BANK','','82352','','0000-00-00','scan','',1937,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-27 19:49:58','','0000-00-00 00:00:00',0),(1996,0,0,'H','2526','','',1996,0,0,'2025-10-27',1661,1361,0,0,1321,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1938,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-27 20:10:36','','0000-00-00 00:00:00',0),(1997,0,0,'H','2526','','',1997,0,0,'2025-10-27',1652,468,0,0,442,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1939,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-27 20:22:32','','0000-00-00 00:00:00',0),(1998,0,0,'H','2526','','',1998,0,0,'2025-10-27',1662,1362,0,0,1322,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1940,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 20:41:10','','0000-00-00 00:00:00',0),(1999,0,0,'H','2526','','',1999,0,0,'2025-10-27',1659,1359,0,0,1320,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',1941,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 20:45:42','','0000-00-00 00:00:00',0),(2000,0,0,'H','2526','','',2000,0,0,'2025-10-27',1654,1354,0,0,1315,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',1943,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 20:47:01','','0000-00-00 00:00:00',0),(2001,0,0,'H','2526','','',2001,0,0,'2025-10-27',1654,1354,0,0,1315,'D',-900.00,0.00,'CSH','','','','','2025-10-27','','',1942,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-27 20:47:17','','0000-00-00 00:00:00',0),(2002,0,0,'H','2526','','P',2002,0,0,'2025-10-27',1506,197,0,96,0,'A',3300.00,0.00,'CSH','','','','','0000-00-00','','',1945,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-27 21:27:22','vishal','2025-10-27 21:27:48',0),(2003,0,0,'H','2526','','',2003,0,0,'2025-10-28',1663,1363,0,0,1323,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1946,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-28 09:09:15','','0000-00-00 00:00:00',0),(2004,0,0,'H','2526','','',2004,0,0,'2025-10-28',1664,1364,0,0,1324,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1947,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 09:30:09','','0000-00-00 00:00:00',0),(2005,0,0,'H','2526','','',2005,0,0,'2025-10-28',1666,1366,0,0,1326,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1948,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 09:45:12','','0000-00-00 00:00:00',0),(2006,0,0,'H','2526','','',2006,0,0,'2025-10-28',1667,1367,0,0,1327,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1949,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 09:50:22','','0000-00-00 00:00:00',0),(2007,0,0,'H','2526','','',2007,0,0,'2025-10-28',1668,1368,0,0,1328,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1950,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 10:05:34','','0000-00-00 00:00:00',0),(2008,0,0,'H','2526','','',2008,0,0,'2025-10-28',1665,1365,0,0,1325,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1951,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 10:06:22','','0000-00-00 00:00:00',0),(2009,0,0,'H','2526','','',2009,0,0,'2025-10-28',1669,1369,0,0,1329,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1952,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 10:08:30','','0000-00-00 00:00:00',0),(2010,0,0,'H','2526','','',2010,0,0,'2025-10-28',1670,1370,0,0,1330,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1953,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 10:09:27','','0000-00-00 00:00:00',0),(2011,0,0,'H','2526','','',2011,0,0,'2025-10-28',1671,1371,0,0,1331,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1954,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 10:22:02','','0000-00-00 00:00:00',0),(2012,0,0,'H','2526','','',2012,0,0,'2025-10-28',1672,1372,0,0,1332,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1955,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 10:27:15','','0000-00-00 00:00:00',0),(2013,0,0,'H','2526','','',2013,0,0,'2025-10-28',1673,1373,0,0,1333,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1956,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 10:30:57','','0000-00-00 00:00:00',0),(2014,0,0,'H','2526','','',2014,0,0,'2025-10-28',1674,1374,0,0,1334,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1957,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 10:44:36','','0000-00-00 00:00:00',0),(2015,0,0,'H','2526','','',2015,0,0,'2025-10-28',1675,1375,0,0,1335,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1958,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 10:48:30','','0000-00-00 00:00:00',0),(2016,0,0,'H','2526','','',2016,0,0,'2025-10-28',1676,1376,0,0,1336,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1959,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 10:58:11','','0000-00-00 00:00:00',0),(2017,0,0,'H','2526','','',2017,0,0,'2025-10-28',1677,1377,0,0,1337,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1960,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 10:58:31','','0000-00-00 00:00:00',0),(2018,0,0,'H','2526','','',2018,0,0,'2025-10-28',1667,1367,0,0,1327,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',1961,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 10:59:04','','0000-00-00 00:00:00',0),(2019,0,0,'H','2526','','',2019,0,0,'2025-10-28',1678,47,0,0,43,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1962,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 11:00:32','','0000-00-00 00:00:00',0),(2020,0,0,'H','2526','','',2020,0,0,'2025-10-28',1679,505,0,0,479,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1963,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-28 11:01:28','','0000-00-00 00:00:00',0),(2021,0,0,'H','2526','','',2021,0,0,'2025-10-28',1680,1378,0,0,1338,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1964,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 11:02:15','','0000-00-00 00:00:00',0),(2022,0,0,'H','2526','','',2022,0,0,'2025-10-28',1681,1379,0,0,1339,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1965,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 11:05:56','','0000-00-00 00:00:00',0),(2023,0,0,'H','2526','','',2023,0,0,'2025-10-28',1672,1372,0,0,1332,'B',2000.00,0.00,'7','hdfc','','92605','','0000-00-00','scan     ','',1966,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 11:07:15','','0000-00-00 00:00:00',0),(2024,0,0,'H','2526','','',2024,0,0,'2025-10-28',1666,1366,0,0,1326,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',1967,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 11:07:22','','0000-00-00 00:00:00',0),(2025,0,0,'H','2526','','',2025,0,0,'2025-10-28',1683,547,0,0,521,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1968,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 11:10:54','','0000-00-00 00:00:00',0),(2026,0,0,'H','2526','','',2026,0,0,'2025-10-28',1684,1380,0,0,1340,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1969,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 11:12:10','','0000-00-00 00:00:00',0),(2027,0,0,'H','2526','','',2027,0,0,'2025-10-28',1685,1381,0,0,1341,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1970,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-28 11:16:12','','0000-00-00 00:00:00',0),(2028,0,0,'H','2526','','',2028,0,0,'2025-10-28',1679,505,0,0,479,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1971,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-28 11:23:33','','0000-00-00 00:00:00',0),(2029,0,0,'H','2526','','',2029,0,0,'2025-10-28',1689,1384,0,0,1344,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',1972,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 11:26:56','','0000-00-00 00:00:00',0),(2030,0,0,'H','2526','','',2030,0,0,'2025-10-28',1688,1383,0,0,1343,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1973,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 11:27:10','','0000-00-00 00:00:00',0),(2031,0,0,'H','2526','','',2031,0,0,'2025-10-28',1675,1375,0,0,1335,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',1974,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 11:27:18','','0000-00-00 00:00:00',0),(2032,0,0,'H','2526','','',2032,0,0,'2025-10-28',1685,1381,0,0,1341,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1975,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-28 11:29:23','','0000-00-00 00:00:00',0),(2033,0,0,'H','2526','','',2033,0,0,'2025-10-28',1690,1385,0,0,1345,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1976,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 11:29:40','','0000-00-00 00:00:00',0),(2034,0,0,'H','2526','','',2034,0,0,'2025-10-28',1691,1386,0,0,1346,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1977,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 11:30:26','','0000-00-00 00:00:00',0),(2035,0,0,'H','2526','','',2035,0,0,'2025-10-28',1692,1387,0,0,1347,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1978,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 11:31:55','','0000-00-00 00:00:00',0),(2036,0,0,'H','2526','','',2036,0,0,'2025-10-28',1693,1388,0,0,1348,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',1979,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 11:32:17','','0000-00-00 00:00:00',0),(2037,0,0,'H','2526','','',2037,0,0,'2025-10-28',1694,1201,0,0,1162,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1980,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 11:33:08','','0000-00-00 00:00:00',0),(2038,0,0,'H','2526','','P',2038,0,0,'2025-10-28',414,392,0,25,0,'A',45000.00,0.00,'CRD','icici','','3183','','0000-00-00','CARD','',2614,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-28 11:35:09','vishal','2025-11-01 15:09:18',0),(2039,0,0,'H','2526','','',2039,0,0,'2025-10-28',1695,1389,0,0,1349,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1981,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 11:36:15','','0000-00-00 00:00:00',0),(2040,0,0,'H','2526','','',2040,0,0,'2025-10-28',1696,1390,0,0,1350,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1982,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 11:38:26','','0000-00-00 00:00:00',0),(2041,0,0,'H','2526','','',2041,0,0,'2025-10-28',1697,1391,0,0,1351,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1983,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 11:40:29','','0000-00-00 00:00:00',0),(2042,0,0,'H','2526','','',2042,0,0,'2025-10-28',1698,1392,0,0,1352,'B',400.00,0.00,'7','axis bank','','83438','','0000-00-00','scan','',1985,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 11:43:55','','0000-00-00 00:00:00',0),(2043,0,0,'H','2526','','',2043,0,0,'2025-10-28',1699,1393,0,0,1353,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1986,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 11:51:18','','0000-00-00 00:00:00',0),(2044,0,0,'H','2526','','',2044,0,0,'2025-10-28',1701,1394,0,0,1354,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',1987,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 11:51:36','','0000-00-00 00:00:00',0),(2045,0,0,'H','2526','','',2045,0,0,'2025-10-28',1702,1395,0,0,1355,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1988,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 11:54:03','','0000-00-00 00:00:00',0),(2046,0,0,'H','2526','','',2046,0,0,'2025-10-28',1693,1388,0,0,1348,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',1989,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 11:55:16','','0000-00-00 00:00:00',0),(2047,0,0,'H','2526','','',2047,0,0,'2025-10-28',1703,1396,0,0,1356,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1990,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 11:59:23','','0000-00-00 00:00:00',0),(2048,0,0,'H','2526','','',2048,0,0,'2025-10-28',1677,1377,0,0,1337,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',1991,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 12:00:20','','0000-00-00 00:00:00',0),(2049,0,0,'H','2526','','P',2049,0,0,'2025-10-28',1700,1346,0,103,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',2277,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-28 12:05:29','riya','2025-10-30 12:31:37',0),(2050,0,0,'H','2526','','',2050,0,0,'2025-10-28',1704,624,0,0,594,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1992,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 12:05:38','','0000-00-00 00:00:00',0),(2051,0,0,'H','2526','','',2051,0,0,'2025-10-28',1705,745,0,0,714,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1993,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 12:06:22','','0000-00-00 00:00:00',0),(2052,0,0,'H','2526','','',2052,0,0,'2025-10-28',1706,1397,0,0,1357,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1994,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 12:14:35','','0000-00-00 00:00:00',0),(2053,0,0,'H','2526','','',2053,0,0,'2025-10-28',1707,1398,0,0,1358,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1995,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 12:18:16','','0000-00-00 00:00:00',0),(2054,0,0,'H','2526','','',2054,0,0,'2025-10-28',1708,1399,0,0,1359,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1996,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-28 12:22:19','','0000-00-00 00:00:00',0),(2055,0,0,'H','2526','','',2055,0,0,'2025-10-28',1709,1400,0,0,1360,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',1997,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 12:26:40','','0000-00-00 00:00:00',0),(2056,0,0,'H','2526','','',2056,0,0,'2025-10-28',1710,1401,0,0,1361,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',1998,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 12:29:01','','0000-00-00 00:00:00',0),(2057,0,0,'H','2526','','',2057,0,0,'2025-10-28',1712,1402,0,0,1362,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',1999,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 12:32:02','','0000-00-00 00:00:00',0),(2058,0,0,'H','2526','','',2058,0,0,'2025-10-28',1702,1395,0,0,1355,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2000,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 12:33:21','','0000-00-00 00:00:00',0),(2059,0,0,'H','2526','','',2059,0,0,'2025-10-28',1713,1403,0,0,1363,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2001,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 12:33:37','','0000-00-00 00:00:00',0),(2060,0,0,'H','2526','','',2060,0,0,'2025-10-28',1699,1393,0,0,1353,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',2002,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 12:34:21','','0000-00-00 00:00:00',0),(2061,0,0,'H','2526','','',2061,0,0,'2025-10-28',1708,1399,0,0,1359,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2003,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-28 12:35:29','','0000-00-00 00:00:00',0),(2062,0,0,'H','2526','','',2062,0,0,'2025-10-28',1714,1404,0,0,1364,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2004,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 12:36:12','','0000-00-00 00:00:00',0),(2063,0,0,'H','2526','','',2063,0,0,'2025-10-28',1713,1403,0,0,1363,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',2005,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 12:40:43','','0000-00-00 00:00:00',0),(2064,0,0,'H','2526','','',2064,0,0,'2025-10-28',1703,1396,0,0,1356,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',2006,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 12:40:48','','0000-00-00 00:00:00',0),(2065,0,0,'H','2526','','',2065,0,0,'2025-10-28',1715,1405,0,0,1365,'B',900.00,0.00,'7','hdfc','','01366','','0000-00-00','scan','',2007,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 12:43:25','','0000-00-00 00:00:00',0),(2066,0,0,'H','2526','','',2066,0,0,'2025-10-28',1716,204,0,0,191,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2008,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 12:44:45','','0000-00-00 00:00:00',0),(2067,0,0,'H','2526','','',2067,0,0,'2025-10-28',1704,624,0,0,594,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2009,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 12:47:57','','0000-00-00 00:00:00',0),(2068,0,0,'H','2526','','',2068,0,0,'2025-10-28',1717,1406,0,0,1366,'B',400.00,0.00,'7','BOB BANK','','61372','','0000-00-00','scan','',2010,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 12:53:45','','0000-00-00 00:00:00',0),(2069,0,0,'H','2526','','P',2069,0,0,'2025-10-28',1293,1103,0,78,0,'A',10000.00,0.00,'7','SBI','','566725687117','','0000-00-00','UPI','',2011,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-28 12:56:17','riya','2025-10-28 12:56:43',0),(2070,0,0,'H','2526','','',2070,0,0,'2025-10-28',1687,1242,0,0,1203,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',2012,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 13:01:33','','0000-00-00 00:00:00',0),(2071,0,0,'H','2526','','',2071,0,0,'2025-10-28',1718,234,0,0,221,'B',200.00,0.00,'7','ICICI BANK','','09551','','0000-00-00','scan','',2013,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 13:01:44','','0000-00-00 00:00:00',0),(2072,0,0,'H','2526','','',2072,0,0,'2025-10-28',1719,129,0,0,118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2014,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 13:03:28','','0000-00-00 00:00:00',0),(2073,0,0,'H','2526','','',2073,0,0,'2025-10-28',1713,1403,0,0,1363,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2015,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 13:06:06','','0000-00-00 00:00:00',0),(2074,0,0,'H','2526','','',2074,0,0,'2025-10-28',1720,1407,0,0,1367,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2017,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 13:09:10','','0000-00-00 00:00:00',0),(2075,0,0,'H','2526','','',2075,0,0,'2025-10-28',1722,1409,0,0,1369,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2018,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 13:12:30','','0000-00-00 00:00:00',0),(2076,0,0,'H','2526','','',2076,0,0,'2025-10-28',1721,1408,0,0,1368,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2019,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 13:18:01','','0000-00-00 00:00:00',0),(2077,0,0,'H','2526','','P',2077,0,0,'2025-10-28',1363,1152,0,86,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',2202,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-28 13:41:20','vishal','2025-10-29 18:46:53',0),(2078,0,0,'H','2526','','',2078,0,0,'2025-10-28',1715,1405,0,0,1365,'B',4400.00,0.00,'7','hdfc','','99679','','0000-00-00','scan','',2020,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 13:43:08','','0000-00-00 00:00:00',0),(2079,0,0,'H','2526','','P',2079,0,0,'2025-10-28',1572,1276,0,100,0,'A',8000.00,0.00,'CSH','','','','','0000-00-00','','',2153,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-28 13:44:39','riya','2025-10-29 12:48:27',0),(2080,0,0,'H','2526','','',2080,0,0,'2025-10-28',1720,1407,0,0,1367,'B',4900.00,0.00,'CSH','','','','','0000-00-00','','',2021,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 13:54:44','','0000-00-00 00:00:00',0),(2081,0,0,'H','2526','','P',2081,0,0,'2025-10-28',1723,1408,0,105,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',2735,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-28 13:56:28','vishal','2025-11-03 14:22:42',0),(2082,0,0,'H','2526','','',2082,0,0,'2025-10-28',1725,1327,0,0,1288,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2022,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 14:10:31','','0000-00-00 00:00:00',0),(2083,0,0,'H','2526','','',2083,0,0,'2025-10-28',1707,1398,0,0,1358,'B',3000.00,0.00,'7','HDFC BANK','','48078','','0000-00-00','scan','',2023,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 14:12:35','','0000-00-00 00:00:00',0),(2084,0,0,'H','2526','','P',2084,0,0,'2025-10-28',1298,1107,0,82,0,'A',18500.00,0.00,'CRD','SBI','','3184','','0000-00-00','CARD','',2024,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-28 14:16:13','riya','2025-10-28 14:17:14',0),(2085,0,0,'H','2526','','',2085,0,0,'2025-10-28',1726,1411,0,0,1370,'B',500.00,0.00,'7','sbi ','','62406','','0000-00-00','scan','',2025,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 14:34:28','','0000-00-00 00:00:00',0),(2086,0,0,'H','2526','','P',2086,0,0,'2025-10-28',1727,1403,0,107,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',2604,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-28 15:37:13','vishal','2025-11-01 13:04:50',0),(2087,0,0,'H','2526','','P',2087,0,0,'2025-10-28',1601,657,0,101,0,'A',7950.00,0.00,'7','PUNJAB AND SIND BANK','','530138665129','','0000-00-00','UPI','',2027,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-28 15:40:52','riya','2025-10-28 15:41:04',0),(2088,0,0,'H','2526','','',2088,0,0,'2025-10-28',1728,1412,0,0,1371,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2028,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 16:52:02','','0000-00-00 00:00:00',0),(2089,0,0,'H','2526','','',2089,0,0,'2025-10-28',1729,1413,0,0,1372,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2029,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 17:08:33','','0000-00-00 00:00:00',0),(2090,0,0,'H','2526','','',2090,0,0,'2025-10-28',1730,1414,0,0,1373,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2030,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 17:16:01','','0000-00-00 00:00:00',0),(2091,0,0,'H','2526','','',2091,0,0,'2025-10-28',1728,1412,0,0,1371,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',2031,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 17:23:55','','0000-00-00 00:00:00',0),(2092,0,0,'H','2526','','',2092,0,0,'2025-10-28',1731,1415,0,0,1374,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2032,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 17:26:21','','0000-00-00 00:00:00',0),(2093,0,0,'H','2526','','',2093,0,0,'2025-10-28',1732,1416,0,0,1375,'B',400.00,0.00,'7','BOB BANK','','85643','','0000-00-00','scan','',2033,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 17:35:27','','0000-00-00 00:00:00',0),(2094,0,0,'H','2526','','',2094,0,0,'2025-10-28',1733,1417,0,0,1376,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2034,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 17:36:40','','0000-00-00 00:00:00',0),(2095,0,0,'H','2526','','',2095,0,0,'2025-10-28',1734,1418,0,0,1377,'B',400.00,0.00,'7','HDFC BANK','','21880','','0000-00-00','scan','',2035,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 17:38:43','','0000-00-00 00:00:00',0),(2096,0,0,'H','2526','','',2096,0,0,'2025-10-28',1735,1419,0,0,1378,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2036,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 17:39:08','','0000-00-00 00:00:00',0),(2097,0,0,'H','2526','','',2097,0,0,'2025-10-28',1736,1420,0,0,1379,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2037,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 17:40:48','','0000-00-00 00:00:00',0),(2098,0,0,'H','2526','','',2098,0,0,'2025-10-28',1738,1422,0,0,1381,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2038,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 17:51:23','','0000-00-00 00:00:00',0),(2099,0,0,'H','2526','','',2099,0,0,'2025-10-28',1739,1423,0,0,1382,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2039,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 17:51:25','','0000-00-00 00:00:00',0),(2100,0,0,'H','2526','','',2100,0,0,'2025-10-28',1737,1421,0,0,1380,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2040,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 17:52:29','','0000-00-00 00:00:00',0),(2101,0,0,'H','2526','','',2101,0,0,'2025-10-28',1740,1424,0,0,1383,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2041,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 17:52:50','','0000-00-00 00:00:00',0),(2102,0,0,'H','2526','','',2102,0,0,'2025-10-28',1742,1426,0,0,1385,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2042,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 17:53:51','','0000-00-00 00:00:00',0),(2103,0,0,'H','2526','','',2103,0,0,'2025-10-28',1741,1425,0,0,1384,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2043,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 17:53:57','','0000-00-00 00:00:00',0),(2104,0,0,'H','2526','','',2104,0,0,'2025-10-28',1743,1427,0,0,1386,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2044,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 17:54:06','','0000-00-00 00:00:00',0),(2105,0,0,'H','2526','','',2105,0,0,'2025-10-28',1744,1428,0,0,1387,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2045,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 17:56:11','','0000-00-00 00:00:00',0),(2106,0,0,'H','2526','','',2106,0,0,'2025-10-28',1745,393,0,0,1388,'B',400.00,0.00,'7','rajkot nagrik','','98276','','0000-00-00','scan','',2046,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 17:59:29','','0000-00-00 00:00:00',0),(2107,0,0,'H','2526','','',2107,0,0,'2025-10-28',1747,1430,0,0,1390,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2047,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-28 18:03:11','','0000-00-00 00:00:00',0),(2108,0,0,'H','2526','','',2108,0,0,'2025-10-28',1746,1429,0,0,1389,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2048,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 18:03:15','','0000-00-00 00:00:00',0),(2109,0,0,'H','2526','','',2109,0,0,'2025-10-28',1741,1425,0,0,1384,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',2049,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 18:04:10','','0000-00-00 00:00:00',0),(2110,0,0,'H','2526','','',2110,0,0,'2025-10-28',1742,1426,0,0,1385,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',2050,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 18:04:29','','0000-00-00 00:00:00',0),(2111,0,0,'H','2526','','',2111,0,0,'2025-10-28',1748,1431,0,0,1391,'B',900.00,0.00,'7','sbi','','04315','','0000-00-00','SCAN','',2051,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 18:05:38','','0000-00-00 00:00:00',0),(2112,0,0,'H','2526','','',2112,0,0,'2025-10-28',1749,1432,0,0,1392,'B',400.00,0.00,'7','BRODA GRAMIN','','92136','','0000-00-00','scan','',2052,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 18:06:33','','0000-00-00 00:00:00',0),(2113,0,0,'H','2526','','',2113,0,0,'2025-10-28',1750,627,0,0,597,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2053,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 18:07:07','','0000-00-00 00:00:00',0),(2114,0,0,'H','2526','','',2114,0,0,'2025-10-28',1751,490,0,0,464,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2054,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-28 18:11:00','','0000-00-00 00:00:00',0),(2115,0,0,'H','2526','','',2115,0,0,'2025-10-28',1752,1433,0,0,1393,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2055,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 18:14:46','','0000-00-00 00:00:00',0),(2116,0,0,'H','2526','','',2116,0,0,'2025-10-28',1753,1434,0,0,1394,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2056,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 18:16:21','','0000-00-00 00:00:00',0),(2117,0,0,'H','2526','','',2117,0,0,'2025-10-28',1755,454,0,0,431,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2057,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 18:16:57','','0000-00-00 00:00:00',0),(2118,0,0,'H','2526','','P',2118,0,0,'2025-10-28',1363,1152,0,86,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',2202,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-28 18:17:33','vishal','2025-10-29 18:46:53',0),(2119,0,0,'H','2526','','',2119,0,0,'2025-10-28',1747,1430,0,0,1390,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',2058,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-28 18:21:51','','0000-00-00 00:00:00',0),(2120,0,0,'H','2526','','',2120,0,0,'2025-10-28',1732,1416,0,0,1375,'B',350.00,0.00,'CSH','','','','','0000-00-00','','',2059,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 18:25:11','','0000-00-00 00:00:00',0),(2121,0,0,'H','2526','','',2121,0,0,'2025-10-28',1758,972,0,0,941,'B',300.00,0.00,'7','SBI','','13930','','0000-00-00','scan ','',2060,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-28 18:25:48','','0000-00-00 00:00:00',0),(2122,0,0,'H','2526','','',2122,0,0,'2025-10-28',1757,1437,0,0,1397,'B',700.00,0.00,'7','idbi','','81284','','0000-00-00','SCAN','',2061,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-28 18:26:03','','0000-00-00 00:00:00',0),(2123,0,0,'H','2526','','',2123,0,0,'2025-10-28',1760,1439,0,0,1399,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2062,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 18:29:03','','0000-00-00 00:00:00',0),(2124,0,0,'H','2526','','',2124,0,0,'2025-10-28',1754,1435,0,0,1395,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2063,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-28 18:31:42','','0000-00-00 00:00:00',0),(2125,0,0,'H','2526','','',2125,0,0,'2025-10-28',1761,1440,0,0,1400,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2064,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 18:34:24','','0000-00-00 00:00:00',0),(2126,0,0,'H','2526','','',2126,0,0,'2025-10-28',1762,1441,0,0,1401,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2065,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-28 18:36:50','','0000-00-00 00:00:00',0),(2127,0,0,'H','2526','','',2127,0,0,'2025-10-28',1763,1442,0,0,1402,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2066,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 18:43:22','','0000-00-00 00:00:00',0),(2128,0,0,'H','2526','','',2128,0,0,'2025-10-28',1764,1443,0,0,1403,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2067,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 18:45:15','','0000-00-00 00:00:00',0),(2129,0,0,'H','2526','','',2129,0,0,'2025-10-28',1765,267,0,0,252,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2068,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 18:45:21','','0000-00-00 00:00:00',0),(2130,0,0,'H','2526','','',2130,0,0,'2025-10-28',1766,1444,0,0,1404,'B',400.00,0.00,'7','sbi','','73959','','0000-00-00','scan     ','',2069,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 18:52:05','','0000-00-00 00:00:00',0),(2131,0,0,'H','2526','','',2131,0,0,'2025-10-28',1767,1119,0,0,1079,'B',400.00,0.00,'7','ICICI BANK','','26592','','0000-00-00','scan','',2070,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 18:59:35','','0000-00-00 00:00:00',0),(2132,0,0,'H','2526','','',2132,0,0,'2025-10-28',1769,1446,0,0,1406,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2071,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 19:01:12','','0000-00-00 00:00:00',0),(2133,0,0,'H','2526','','',2133,0,0,'2025-10-28',1768,1445,0,0,1405,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',2072,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 19:01:40','','0000-00-00 00:00:00',0),(2134,0,0,'H','2526','','',2134,0,0,'2025-10-28',1756,1436,0,0,1396,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2073,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 19:12:43','','0000-00-00 00:00:00',0),(2135,0,0,'H','2526','','',2135,0,0,'2025-10-28',1771,1448,0,0,1408,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2074,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 19:12:49','','0000-00-00 00:00:00',0),(2136,0,0,'H','2526','','',2136,0,0,'2025-10-28',1770,1447,0,0,1407,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2075,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-28 19:14:48','','0000-00-00 00:00:00',0),(2137,0,0,'H','2526','','',2137,0,0,'2025-10-28',1772,1449,0,0,1409,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2076,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 19:17:31','','0000-00-00 00:00:00',0),(2138,0,0,'H','2526','','',2138,0,0,'2025-10-28',1773,255,0,0,240,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2077,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 19:36:58','','0000-00-00 00:00:00',0),(2139,0,0,'H','2526','','',2139,0,0,'2025-10-28',1769,1446,0,0,1406,'B',350.00,0.00,'CSH','','','','','0000-00-00','','',2078,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 19:38:52','','0000-00-00 00:00:00',0),(2140,0,0,'H','2526','','',2140,0,0,'2025-10-28',1774,603,0,0,575,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2079,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 19:45:14','','0000-00-00 00:00:00',0),(2141,0,0,'H','2526','','',2141,0,0,'2025-10-28',1775,1450,0,0,1410,'B',400.00,0.00,'7','HDFC BANK','','71674','','0000-00-00','scan','',2080,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 19:46:48','','0000-00-00 00:00:00',0),(2142,0,0,'H','2526','','',2142,0,0,'2025-10-28',1764,1443,0,0,1403,'D',-500.00,0.00,'CSH','','','','','2025-10-28','','',2081,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-28 19:59:32','','0000-00-00 00:00:00',0),(2143,0,0,'H','2526','','',2143,0,0,'2025-10-28',1754,1435,0,0,1395,'B',7000.00,0.00,'CSH','','','','','0000-00-00','','',2082,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-28 20:18:39','','0000-00-00 00:00:00',0),(2144,0,0,'H','2526','','P',2144,0,0,'2025-10-28',1711,1383,0,104,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',2877,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-28 20:39:52','vishal','2025-11-04 17:55:33',0),(2145,0,0,'H','2526','','P',2145,0,0,'2025-10-28',1724,1410,0,106,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',2160,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-28 21:32:10','riya','2025-10-29 15:19:35',0),(2146,0,0,'H','2526','','',2146,0,0,'2025-10-29',1776,53,0,0,47,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2083,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-29 08:52:35','','0000-00-00 00:00:00',0),(2147,0,0,'H','2526','','',2147,0,0,'2025-10-29',1777,1451,0,0,1411,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',2084,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-29 08:54:08','','0000-00-00 00:00:00',0),(2148,0,0,'H','2526','','',2148,0,0,'2025-10-29',1778,1452,0,0,1412,'B',1400.00,0.00,'CSH','','','','','0000-00-00','','',2085,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-29 08:56:48','','0000-00-00 00:00:00',0),(2149,0,0,'H','2526','','',2149,0,0,'2025-10-29',1779,1453,0,0,1413,'B',2100.00,0.00,'CSH','','','','','0000-00-00','','',2086,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-29 08:59:20','','0000-00-00 00:00:00',0),(2150,0,0,'H','2526','','',2150,0,0,'2025-10-29',1780,1454,0,0,1414,'B',1700.00,0.00,'CSH','','','','','0000-00-00','','',2087,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-29 09:02:18','','0000-00-00 00:00:00',0),(2151,0,0,'H','2526','','',2151,0,0,'2025-10-29',1781,1455,0,0,1415,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2088,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-29 09:03:20','','0000-00-00 00:00:00',0),(2152,0,0,'H','2526','','P',2152,0,0,'2025-10-29',1782,1456,0,108,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',2581,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-29 09:53:12','vishal','2025-11-01 12:12:09',0),(2153,0,0,'H','2526','','',2153,0,0,'2025-10-29',1784,1457,0,0,1416,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2089,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 10:05:44','','0000-00-00 00:00:00',0),(2154,0,0,'H','2526','','',2154,0,0,'2025-10-29',1786,1459,0,0,1418,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2090,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 10:09:02','','0000-00-00 00:00:00',0),(2155,0,0,'H','2526','','',2155,0,0,'2025-10-29',1787,1460,0,0,1419,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2091,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 10:13:38','','0000-00-00 00:00:00',0),(2156,0,0,'H','2526','','',2156,0,0,'2025-10-29',1789,1462,0,0,1421,'B',500.00,0.00,'7','bob','','70427','','0000-00-00','scan','',2092,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 10:20:58','','0000-00-00 00:00:00',0),(2157,0,0,'H','2526','','',2157,0,0,'2025-10-29',1790,637,0,0,607,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2093,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 10:22:35','','0000-00-00 00:00:00',0),(2158,0,0,'H','2526','','',2158,0,0,'2025-10-29',1791,1463,0,0,1422,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2094,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 10:23:42','','0000-00-00 00:00:00',0),(2159,0,0,'H','2526','','',2159,0,0,'2025-10-29',1792,1464,0,0,1423,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2095,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 10:25:33','','0000-00-00 00:00:00',0),(2160,0,0,'H','2526','','P',2160,0,0,'2025-10-29',1438,1179,0,91,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',2154,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-29 10:44:13','riya','2025-10-29 12:52:54',0),(2161,0,0,'H','2526','','',2161,0,0,'2025-10-29',1794,1402,0,0,1362,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',2096,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 10:48:53','','0000-00-00 00:00:00',0),(2162,0,0,'H','2526','','',2162,0,0,'2025-10-29',1795,1095,0,0,1125,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2097,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-29 10:51:00','','0000-00-00 00:00:00',0),(2163,0,0,'H','2526','','',2163,0,0,'2025-10-29',1796,1466,0,0,1425,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2098,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 10:52:37','','0000-00-00 00:00:00',0),(2164,0,0,'H','2526','','',2164,0,0,'2025-10-29',1783,912,0,0,880,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2099,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 10:53:25','','0000-00-00 00:00:00',0),(2165,0,0,'H','2526','','',2165,0,0,'2025-10-29',1797,946,0,0,915,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2100,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 10:54:18','','0000-00-00 00:00:00',0),(2166,0,0,'H','2526','','',2166,0,0,'2025-10-29',1798,1467,0,0,1426,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2101,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 10:55:55','','0000-00-00 00:00:00',0),(2167,0,0,'H','2526','','',2167,0,0,'2025-10-29',1799,1468,0,0,1427,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2102,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 10:56:19','','0000-00-00 00:00:00',0),(2168,0,0,'H','2526','','',2168,0,0,'2025-10-29',1801,1470,0,0,1429,'B',500.00,0.00,'7','sbi','','35932','','0000-00-00','scan','',2103,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 10:59:08','','0000-00-00 00:00:00',0),(2169,0,0,'H','2526','','',2169,0,0,'2025-10-29',1802,1471,0,0,1430,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2104,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 11:00:14','','0000-00-00 00:00:00',0),(2170,0,0,'H','2526','','',2170,0,0,'2025-10-29',1785,1458,0,0,1417,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',2105,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-29 11:01:48','','0000-00-00 00:00:00',0),(2171,0,0,'H','2526','','',2171,0,0,'2025-10-29',1804,714,0,0,1085,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2106,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 11:03:06','','0000-00-00 00:00:00',0),(2172,0,0,'H','2526','','',2172,0,0,'2025-10-29',1803,1472,0,0,1431,'B',400.00,0.00,'7','kotak','','60573','','0000-00-00','scan ','',2107,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 11:04:05','','0000-00-00 00:00:00',0),(2173,0,0,'H','2526','','',2173,0,0,'2025-10-29',1805,1473,0,0,1432,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2108,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-29 11:04:39','','0000-00-00 00:00:00',0),(2174,0,0,'H','2526','','P',2174,0,0,'2025-10-29',1723,1408,0,105,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',2735,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-29 11:04:48','vishal','2025-11-03 14:22:42',0),(2175,0,0,'H','2526','','',2175,0,0,'2025-10-29',1806,1474,0,0,1433,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2109,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 11:05:25','','0000-00-00 00:00:00',0),(2176,0,0,'H','2526','','',2176,0,0,'2025-10-29',1807,422,0,0,400,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2110,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 11:06:13','','0000-00-00 00:00:00',0),(2177,0,0,'H','2526','','',2177,0,0,'2025-10-29',1808,1475,0,0,1434,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2111,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 11:08:12','','0000-00-00 00:00:00',0),(2178,0,0,'H','2526','','P',2178,0,0,'2025-10-29',1700,1346,0,103,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',2277,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-29 11:12:13','riya','2025-10-30 12:31:37',0),(2179,0,0,'H','2526','','',2179,0,0,'2025-10-29',1809,1476,0,0,1435,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2112,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 11:15:52','','0000-00-00 00:00:00',0),(2180,0,0,'H','2526','','',2180,0,0,'2025-10-29',1810,1477,0,0,1436,'B',500.00,0.00,'7','axis','','86364','','0000-00-00','scan','',2113,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 11:17:56','','0000-00-00 00:00:00',0),(2181,0,0,'H','2526','','',2181,0,0,'2025-10-29',1811,571,0,0,545,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2114,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-29 11:18:15','','0000-00-00 00:00:00',0),(2182,0,0,'H','2526','','',2182,0,0,'2025-10-29',1791,1463,0,0,1422,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2116,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 11:25:15','','0000-00-00 00:00:00',0),(2183,0,0,'H','2526','','',2183,0,0,'2025-10-29',1813,1479,0,0,1438,'B',900.00,0.00,'7','sbi','','34282','','0000-00-00','scan','',2117,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 11:25:37','','0000-00-00 00:00:00',0),(2184,0,0,'H','2526','','',2184,0,0,'2025-10-29',1806,1474,0,0,1433,'D',-500.00,0.00,'CSH','','','','','2025-10-29','','',2118,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 11:27:18','','0000-00-00 00:00:00',0),(2185,0,0,'H','2526','','',2185,0,0,'2025-10-29',1814,1480,0,0,1439,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2119,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 11:27:39','','0000-00-00 00:00:00',0),(2186,0,0,'H','2526','','',2186,0,0,'2025-10-29',1800,1469,0,0,1428,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2120,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 11:28:07','','0000-00-00 00:00:00',0),(2187,0,0,'H','2526','','',2187,0,0,'2025-10-29',1788,1461,0,0,1420,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2121,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 11:28:57','','0000-00-00 00:00:00',0),(2188,0,0,'H','2526','','',2188,0,0,'2025-10-29',1815,1481,0,0,1440,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2122,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 11:32:37','','0000-00-00 00:00:00',0),(2189,0,0,'H','2526','','',2189,0,0,'2025-10-29',1793,1465,0,0,1424,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2123,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 11:32:47','','0000-00-00 00:00:00',0),(2190,0,0,'H','2526','','',2190,0,0,'2025-10-29',1816,1482,0,0,1441,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2124,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 11:43:53','','0000-00-00 00:00:00',0),(2191,0,0,'H','2526','','',2191,0,0,'2025-10-29',1811,571,0,0,545,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',2125,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-29 11:45:14','','0000-00-00 00:00:00',0),(2192,0,0,'H','2526','','',2192,0,0,'2025-10-29',1817,1483,0,0,1442,'B',400.00,0.00,'7','sbi','','33878','','0000-00-00','scan','',2126,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 11:45:31','','0000-00-00 00:00:00',0),(2193,0,0,'H','2526','','',2193,0,0,'2025-10-29',1818,1484,0,0,1443,'B',400.00,0.00,'7','sbi','','33878','','0000-00-00','scan','',2127,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 11:45:47','','0000-00-00 00:00:00',0),(2194,0,0,'H','2526','','',2194,0,0,'2025-10-29',1785,1458,0,0,1417,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',2128,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-29 11:46:01','','0000-00-00 00:00:00',0),(2195,0,0,'H','2526','','',2195,0,0,'2025-10-29',1819,1485,0,0,1444,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2129,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 11:47:22','','0000-00-00 00:00:00',0),(2196,0,0,'H','2526','','',2196,0,0,'2025-10-29',1820,1486,0,0,1445,'B',400.00,0.00,'7','icici','','62862','','0000-00-00','scan','',2130,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 11:48:11','','0000-00-00 00:00:00',0),(2197,0,0,'H','2526','','',2197,0,0,'2025-10-29',1807,422,0,0,400,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',2131,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 11:48:17','','0000-00-00 00:00:00',0),(2198,0,0,'H','2526','','P',2198,0,0,'2025-10-29',1563,1295,0,99,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',2207,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-29 11:49:05','vishal','2025-10-29 19:04:37',0),(2199,0,0,'H','2526','','',2199,0,0,'2025-10-29',1822,1488,0,0,1447,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2132,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 11:57:10','','0000-00-00 00:00:00',0),(2200,0,0,'H','2526','','',2200,0,0,'2025-10-29',1823,1489,0,0,1448,'B',750.00,0.00,'7','bob','','28813','','0000-00-00','scan     ','',2133,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 11:58:37','','0000-00-00 00:00:00',0),(2201,0,0,'H','2526','','',2201,0,0,'2025-10-29',1788,1461,0,0,1420,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2134,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 11:59:43','','0000-00-00 00:00:00',0),(2202,0,0,'H','2526','','',2202,0,0,'2025-10-29',1824,1490,0,0,1449,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2135,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 12:00:02','','0000-00-00 00:00:00',0),(2203,0,0,'H','2526','','',2203,0,0,'2025-10-29',1825,1491,0,0,1450,'B',750.00,0.00,'7','SBI BANK','','64216','','0000-00-00','scan','',2136,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 12:01:54','','0000-00-00 00:00:00',0),(2204,0,0,'H','2526','','',2204,0,0,'2025-10-29',1812,1478,0,0,1437,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2137,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 12:05:33','','0000-00-00 00:00:00',0),(2205,0,0,'H','2526','','',2205,0,0,'2025-10-29',1826,1106,0,0,1067,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2138,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 12:06:47','','0000-00-00 00:00:00',0),(2206,0,0,'H','2526','','P',2206,0,0,'2025-10-29',1536,1264,0,98,0,'A',42000.00,0.00,'CSH','','','','','0000-00-00','','',2139,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-29 12:11:20','riya','2025-10-29 12:12:09',0),(2207,0,0,'H','2526','','',2207,0,0,'2025-10-29',1822,1488,0,0,1447,'D',-300.00,0.00,'CSH','','','','','2025-10-29','','',2140,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 12:13:17','','0000-00-00 00:00:00',0),(2208,0,0,'H','2526','','',2208,0,0,'2025-10-29',1827,1492,0,0,1451,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2141,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 12:18:29','','0000-00-00 00:00:00',0),(2209,0,0,'H','2526','','',2209,0,0,'2025-10-29',1828,1493,0,0,1452,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2142,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-29 12:22:13','','0000-00-00 00:00:00',0),(2210,0,0,'H','2526','','',2210,0,0,'2025-10-29',1829,436,0,0,414,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2143,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-29 12:22:38','','0000-00-00 00:00:00',0),(2211,0,0,'H','2526','','',2211,0,0,'2025-10-29',1830,1494,0,0,1453,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2144,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 12:23:50','','0000-00-00 00:00:00',0),(2212,0,0,'H','2526','','',2212,0,0,'2025-10-29',1831,1495,0,0,1454,'B',400.00,0.00,'7','HDFC BANK','','40505','','0000-00-00','scan','',2145,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 12:33:18','','0000-00-00 00:00:00',0),(2213,0,0,'H','2526','','',2213,0,0,'2025-10-29',1832,1496,0,0,1455,'B',400.00,0.00,'7','KOTAK BANK','','91858','','0000-00-00','scan','',2147,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 12:36:37','','0000-00-00 00:00:00',0),(2214,0,0,'H','2526','','',2214,0,0,'2025-10-29',1813,1479,0,0,1438,'B',4500.00,0.00,'7','icici','','67357','','0000-00-00','scan','',2148,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 12:38:53','','0000-00-00 00:00:00',0),(2215,0,0,'H','2526','','',2215,0,0,'2025-10-29',1833,1497,0,0,1456,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2150,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-29 12:40:16','','0000-00-00 00:00:00',0),(2216,0,0,'H','2526','','',2216,0,0,'2025-10-29',1834,1498,0,0,1457,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2151,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 12:41:55','','0000-00-00 00:00:00',0),(2217,0,0,'H','2526','','',2217,0,0,'2025-10-29',1835,1499,0,0,1458,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2152,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 12:43:26','','0000-00-00 00:00:00',0),(2218,0,0,'H','2526','','P',2218,0,0,'2025-10-29',1572,1276,0,100,0,'A',2300.00,0.00,'CSH','','','','','0000-00-00','','',2153,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-29 12:46:56','riya','2025-10-29 12:48:27',0),(2219,0,0,'H','2526','','P',2219,0,0,'2025-10-29',1438,1179,0,91,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',2154,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-29 12:52:15','riya','2025-10-29 12:52:54',0),(2220,0,0,'H','2526','','',2220,0,0,'2025-10-29',1837,1501,0,0,1460,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2155,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 13:07:58','','0000-00-00 00:00:00',0),(2221,0,0,'H','2526','','',2221,0,0,'2025-10-29',1838,1502,0,0,1461,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2156,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 13:18:47','','0000-00-00 00:00:00',0),(2222,0,0,'H','2526','','',2222,0,0,'2025-10-29',1831,1495,0,0,1454,'B',300.00,0.00,'7','HDFC BANK','','33598','','0000-00-00','scan','',2157,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 13:22:41','','0000-00-00 00:00:00',0),(2223,0,0,'H','2526','','P',2223,0,0,'2025-10-29',1711,1383,0,104,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','Y',0,'N','riya','2025-10-29 13:48:23','riya','2025-10-29 13:36:14','riya','2025-10-29 13:48:23',0),(2224,0,0,'H','2526','','P',2224,0,0,'2025-10-29',1711,1383,0,104,0,'A',-30000.00,0.00,'CSH','','','','','0000-00-00','','BY MISTAKE',0,'N','P','Y',2223,'N','','0000-00-00 00:00:00','riya','2025-10-29 13:48:23','riya','2025-10-29 13:48:23',0),(2225,0,0,'H','2526','','P',2225,0,0,'2025-10-29',1711,1383,0,104,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',2877,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-29 13:50:57','vishal','2025-11-04 17:55:33',0),(2226,0,0,'H','2526','','',2226,0,0,'2025-10-29',1836,1500,0,0,1459,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2158,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 13:58:01','','0000-00-00 00:00:00',0),(2227,0,0,'H','2526','','P',2227,0,0,'2025-10-29',1724,1410,0,106,0,'A',6300.00,0.00,'CSH','','','','','0000-00-00','','',2160,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-29 15:18:57','riya','2025-10-29 15:19:35',0),(2228,0,0,'H','2526','','',2228,0,0,'2025-10-29',1839,1503,0,0,1462,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',2161,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 15:38:48','','0000-00-00 00:00:00',0),(2229,0,0,'H','2526','','',2229,0,0,'2025-10-29',1841,1505,0,0,1464,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2162,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 16:35:17','','0000-00-00 00:00:00',0),(2230,0,0,'H','2526','','',2230,0,0,'2025-10-29',1842,1506,0,0,1465,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2163,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 16:38:58','','0000-00-00 00:00:00',0),(2231,0,0,'H','2526','','',2231,0,0,'2025-10-29',1845,1509,0,0,1468,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2164,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 17:10:08','','0000-00-00 00:00:00',0),(2232,0,0,'H','2526','','',2232,0,0,'2025-10-29',1847,1511,0,0,1470,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2165,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 17:21:14','','0000-00-00 00:00:00',0),(2233,0,0,'H','2526','','',2233,0,0,'2025-10-29',1848,1512,0,0,1471,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2166,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 17:27:30','','0000-00-00 00:00:00',0),(2234,0,0,'H','2526','','',2234,0,0,'2025-10-29',1849,1513,0,0,1472,'B',900.00,0.00,'7','sbi','','83417','','0000-00-00','SCAN','',2167,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 17:30:58','','0000-00-00 00:00:00',0),(2235,0,0,'H','2526','','',2235,0,0,'2025-10-29',1850,1514,0,0,1473,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2168,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 17:33:10','','0000-00-00 00:00:00',0),(2236,0,0,'H','2526','','',2236,0,0,'2025-10-29',1851,1515,0,0,1474,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2169,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 17:36:14','','0000-00-00 00:00:00',0),(2237,0,0,'H','2526','','',2237,0,0,'2025-10-29',1853,1517,0,0,1476,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2170,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-29 17:43:06','','0000-00-00 00:00:00',0),(2238,0,0,'H','2526','','',2238,0,0,'2025-10-29',1852,1516,0,0,1475,'B',900.00,0.00,'7','SBI','','60842','','0000-00-00','SCAN','',2171,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 17:44:15','','0000-00-00 00:00:00',0),(2239,0,0,'H','2526','','',2239,0,0,'2025-10-29',1854,950,0,0,919,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2172,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 17:45:25','','0000-00-00 00:00:00',0),(2240,0,0,'H','2526','','',2240,0,0,'2025-10-29',1855,1518,0,0,1477,'B',900.00,0.00,'7','HDFC','','00925','','0000-00-00','SCAN','',2173,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 17:52:32','','0000-00-00 00:00:00',0),(2241,0,0,'H','2526','','',2241,0,0,'2025-10-29',1856,1519,0,0,1478,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2174,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 17:57:34','','0000-00-00 00:00:00',0),(2242,0,0,'H','2526','','',2242,0,0,'2025-10-29',1845,1509,0,0,1468,'B',4900.00,0.00,'CSH','','','','','0000-00-00','','',2175,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 17:57:43','','0000-00-00 00:00:00',0),(2243,0,0,'H','2526','','',2243,0,0,'2025-10-29',1857,1520,0,0,1479,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2176,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 18:00:28','','0000-00-00 00:00:00',0),(2244,0,0,'H','2526','','',2244,0,0,'2025-10-29',1858,1521,0,0,1480,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2177,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 18:04:38','','0000-00-00 00:00:00',0),(2245,0,0,'H','2526','','',2245,0,0,'2025-10-29',1859,623,0,0,593,'B',500.00,0.00,'7','AXIS','','83805','','0000-00-00','SCAN','',2178,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 18:05:22','','0000-00-00 00:00:00',0),(2246,0,0,'H','2526','','',2246,0,0,'2025-10-29',1860,1522,0,0,1481,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2179,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 18:08:50','','0000-00-00 00:00:00',0),(2247,0,0,'H','2526','','',2247,0,0,'2025-10-29',1861,1523,0,0,1482,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2180,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 18:15:40','','0000-00-00 00:00:00',0),(2248,0,0,'H','2526','','',2248,0,0,'2025-10-29',1846,1510,0,0,1469,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2181,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 18:17:06','','0000-00-00 00:00:00',0),(2249,0,0,'H','2526','','',2249,0,0,'2025-10-29',1862,1524,0,0,1483,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2182,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-29 18:17:26','','0000-00-00 00:00:00',0),(2250,0,0,'H','2526','','',2250,0,0,'2025-10-29',1849,1513,0,0,1472,'B',4400.00,0.00,'7','SBI','','80463','','0000-00-00','SCAN','',2183,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 18:19:23','','0000-00-00 00:00:00',0),(2251,0,0,'H','2526','','',2251,0,0,'2025-10-29',1863,61,0,0,53,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2184,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-29 18:19:49','','0000-00-00 00:00:00',0),(2252,0,0,'H','2526','','',2252,0,0,'2025-10-29',1864,1525,0,0,1484,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2185,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 18:20:06','','0000-00-00 00:00:00',0),(2253,0,0,'H','2526','','',2253,0,0,'2025-10-29',1861,1523,0,0,1482,'D',-750.00,0.00,'CSH','','','','','2025-10-29','','',2186,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 18:20:54','','0000-00-00 00:00:00',0),(2254,0,0,'H','2526','','',2254,0,0,'2025-10-29',1865,1526,0,0,1485,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2187,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-29 18:22:00','','0000-00-00 00:00:00',0),(2255,0,0,'H','2526','','',2255,0,0,'2025-10-29',1864,1525,0,0,1484,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2188,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 18:24:19','','0000-00-00 00:00:00',0),(2256,0,0,'H','2526','','',2256,0,0,'2025-10-29',1855,1518,0,0,1477,'B',4600.00,0.00,'7','HDFC','','67296','','0000-00-00','SCAN','',2189,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 18:27:21','','0000-00-00 00:00:00',0),(2257,0,0,'H','2526','','',2257,0,0,'2025-10-29',1867,1528,0,0,1487,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2191,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 18:30:35','','0000-00-00 00:00:00',0),(2258,0,0,'H','2526','','',2258,0,0,'2025-10-29',1870,1009,0,0,976,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2192,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 18:33:51','','0000-00-00 00:00:00',0),(2259,0,0,'H','2526','','',2259,0,0,'2025-10-29',1866,1527,0,0,1486,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2193,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-29 18:33:58','','0000-00-00 00:00:00',0),(2260,0,0,'H','2526','','',2260,0,0,'2025-10-29',1869,522,0,0,497,'B',400.00,0.00,'7','AXIS','','64632','','0000-00-00','SCAN','',2194,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 18:34:06','','0000-00-00 00:00:00',0),(2261,0,0,'H','2526','','',2261,0,0,'2025-10-29',1871,1530,0,0,1489,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2195,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 18:36:27','','0000-00-00 00:00:00',0),(2262,0,0,'H','2526','','',2262,0,0,'2025-10-29',1872,1531,0,0,1490,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2196,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-29 18:36:53','','0000-00-00 00:00:00',0),(2263,0,0,'H','2526','','',2263,0,0,'2025-10-29',1868,1529,0,0,1488,'B',400.00,0.00,'7','idbi','','08663','','0000-00-00','scan','',2197,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-29 18:37:35','','0000-00-00 00:00:00',0),(2264,0,0,'H','2526','','',2264,0,0,'2025-10-29',1862,1524,0,0,1483,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',2198,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-29 18:39:03','','0000-00-00 00:00:00',0),(2265,0,0,'H','2526','','',2265,0,0,'2025-10-29',1873,1532,0,0,1491,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2199,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-10-29 18:41:44','','0000-00-00 00:00:00',0),(2266,0,0,'H','2526','','',2266,0,0,'2025-10-29',1874,1533,0,0,1492,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2200,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 18:42:12','','0000-00-00 00:00:00',0),(2267,0,0,'H','2526','','',2267,0,0,'2025-10-29',1850,1514,0,0,1473,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',2201,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 18:43:13','','0000-00-00 00:00:00',0),(2268,0,0,'H','2526','','P',2268,0,0,'2025-10-29',1363,1152,0,86,0,'A',9700.00,0.00,'7','PNB BANK','','530291463154','','0000-00-00','','',2202,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-29 18:46:04','vishal','2025-10-29 18:46:53',0),(2269,0,0,'H','2526','','',2269,0,0,'2025-10-29',1875,689,0,0,659,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2203,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 18:49:35','','0000-00-00 00:00:00',0),(2270,0,0,'H','2526','','',2270,0,0,'2025-10-29',1851,1515,0,0,1474,'B',5600.00,0.00,'CSH','','','','','0000-00-00','','',2204,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 18:52:16','','0000-00-00 00:00:00',0),(2271,0,0,'H','2526','','P',2271,0,0,'2025-10-29',1563,1295,0,99,0,'A',8000.00,0.00,'CSH','','','','','0000-00-00','','',2207,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-29 19:03:06','vishal','2025-10-29 19:04:37',0),(2272,0,0,'H','2526','','',2272,0,0,'2025-10-29',1876,1534,0,0,1493,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2205,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 19:03:52','','0000-00-00 00:00:00',0),(2273,0,0,'H','2526','','',2273,0,0,'2025-10-29',1877,1535,0,0,1494,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2208,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 19:07:25','','0000-00-00 00:00:00',0),(2274,0,0,'H','2526','','',2274,0,0,'2025-10-29',1862,1524,0,0,1483,'D',-500.00,0.00,'CSH','','','','','2025-10-29','','',2209,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-29 19:11:19','','0000-00-00 00:00:00',0),(2275,0,0,'H','2526','','',2275,0,0,'2025-10-29',1862,1524,0,0,1483,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2211,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-29 19:13:19','','0000-00-00 00:00:00',0),(2276,0,0,'H','2526','','',2276,0,0,'2025-10-29',1878,1536,0,0,1495,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2212,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 19:15:42','','0000-00-00 00:00:00',0),(2277,0,0,'H','2526','','',2277,0,0,'2025-10-29',1869,522,0,0,497,'D',-400.00,0.00,'7','BANK','','00000','','2025-10-29','','',2210,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-29 19:15:54','','0000-00-00 00:00:00',0),(2278,0,0,'H','2526','','',2278,0,0,'2025-10-29',1879,1166,0,0,1126,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2213,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 19:37:17','','0000-00-00 00:00:00',0),(2279,0,0,'H','2526','','',2279,0,0,'2025-10-29',1880,589,0,0,562,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2214,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 19:38:09','','0000-00-00 00:00:00',0),(2280,0,0,'H','2526','','',2280,0,0,'2025-10-29',1881,1537,0,0,1496,'B',500.00,0.00,'7','sbi','','82854','','0000-00-00','scan     ','',2215,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 19:41:27','','0000-00-00 00:00:00',0),(2281,0,0,'H','2526','','',2281,0,0,'2025-10-29',1883,1538,0,0,1497,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2216,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-29 19:55:33','','0000-00-00 00:00:00',0),(2282,0,0,'H','2526','','',2282,0,0,'2025-10-29',1881,1537,0,0,1496,'B',200.00,0.00,'7','sbi','','80615','','0000-00-00','scan     ','',2217,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-29 20:12:27','','0000-00-00 00:00:00',0),(2283,0,0,'H','2526','','P',2283,0,0,'2025-10-29',1501,1195,0,93,0,'A',14800.00,0.00,'7','NAGRIK BANK','','391482142347','','0000-00-00','','',2219,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-29 20:42:21','vishal','2025-10-29 20:42:41',0),(2284,0,0,'H','2526','','',2284,0,0,'2025-10-30',1884,1539,0,0,1498,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',2222,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-30 09:04:14','','0000-00-00 00:00:00',0),(2285,0,0,'H','2526','','',2285,0,0,'2025-10-30',1885,1540,0,0,1499,'B',1100.00,0.00,'7','sbi','','01778','','0000-00-00','scan','',2223,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-30 09:07:08','','0000-00-00 00:00:00',0),(2286,0,0,'H','2526','','',2286,0,0,'2025-10-30',1886,1541,0,0,1500,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2224,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 09:31:56','','0000-00-00 00:00:00',0),(2287,0,0,'H','2526','','',2287,0,0,'2025-10-30',1887,495,0,0,469,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2225,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 09:34:28','','0000-00-00 00:00:00',0),(2288,0,0,'H','2526','','P',2288,0,0,'2025-10-30',1888,1495,0,109,0,'A',6000.00,0.00,'7','HDFC','','908909724120','','0000-00-00','UPI','',2514,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-30 09:48:41','vishal','2025-10-31 21:44:29',0),(2289,0,0,'H','2526','','',2289,0,0,'2025-10-30',1889,1542,0,0,1501,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2226,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 10:18:46','','0000-00-00 00:00:00',0),(2290,0,0,'H','2526','','',2290,0,0,'2025-10-30',1890,1543,0,0,1502,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2227,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 10:28:31','','0000-00-00 00:00:00',0),(2291,0,0,'H','2526','','',2291,0,0,'2025-10-30',1891,1544,0,0,1503,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2228,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 10:30:56','','0000-00-00 00:00:00',0),(2292,0,0,'H','2526','','',2292,0,0,'2025-10-30',1892,1545,0,0,1504,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2229,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 10:40:31','','0000-00-00 00:00:00',0),(2293,0,0,'H','2526','','',2293,0,0,'2025-10-30',1893,730,0,0,699,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2230,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 10:41:41','','0000-00-00 00:00:00',0),(2294,0,0,'H','2526','','',2294,0,0,'2025-10-30',1894,316,0,0,300,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2231,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 10:43:44','','0000-00-00 00:00:00',0),(2295,0,0,'H','2526','','',2295,0,0,'2025-10-30',1895,1546,0,0,1505,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2232,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 10:45:34','','0000-00-00 00:00:00',0),(2296,0,0,'H','2526','','',2296,0,0,'2025-10-30',1896,1547,0,0,1506,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2233,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 10:47:36','','0000-00-00 00:00:00',0),(2297,0,0,'H','2526','','',2297,0,0,'2025-10-30',1897,1548,0,0,1507,'B',500.00,0.00,'7','icici','','21643','','0000-00-00','scan','',2234,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 10:57:29','','0000-00-00 00:00:00',0),(2298,0,0,'H','2526','','',2298,0,0,'2025-10-30',1899,1549,0,0,1508,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2235,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 11:02:48','','0000-00-00 00:00:00',0),(2299,0,0,'H','2526','','',2299,0,0,'2025-10-30',1900,56,0,0,757,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2236,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 11:04:39','','0000-00-00 00:00:00',0),(2300,0,0,'H','2526','','',2300,0,0,'2025-10-30',1901,1550,0,0,1509,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2237,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 11:04:49','','0000-00-00 00:00:00',0),(2301,0,0,'H','2526','','',2301,0,0,'2025-10-30',1902,1110,0,0,1070,'B',300.00,0.00,'7','hdfc','','16470','','0000-00-00','scan  ','',2238,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 11:06:35','','0000-00-00 00:00:00',0),(2302,0,0,'H','2526','','',2302,0,0,'2025-10-30',1903,1551,0,0,1510,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2239,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 11:06:48','','0000-00-00 00:00:00',0),(2303,0,0,'H','2526','','',2303,0,0,'2025-10-30',1904,727,0,0,696,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2240,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 11:07:38','','0000-00-00 00:00:00',0),(2304,0,0,'H','2526','','',2304,0,0,'2025-10-30',1905,1552,0,0,1511,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2241,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 11:10:19','','0000-00-00 00:00:00',0),(2305,0,0,'H','2526','','',2305,0,0,'2025-10-30',1906,1553,0,0,1512,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2242,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 11:12:51','','0000-00-00 00:00:00',0),(2306,0,0,'H','2526','','',2306,0,0,'2025-10-30',1891,1544,0,0,1503,'B',5400.00,0.00,'CSH','','','','','0000-00-00','','',2243,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 11:14:35','','0000-00-00 00:00:00',0),(2307,0,0,'H','2526','','',2307,0,0,'2025-10-30',1907,1554,0,0,1513,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2244,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 11:18:35','','0000-00-00 00:00:00',0),(2308,0,0,'H','2526','','',2308,0,0,'2025-10-30',1908,1555,0,0,1514,'B',750.00,0.00,'7','axis bank','','31901','','0000-00-00','scan','',2245,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 11:22:32','','0000-00-00 00:00:00',0),(2309,0,0,'H','2526','','',2309,0,0,'2025-10-30',1909,308,0,0,292,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2246,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 11:29:00','','0000-00-00 00:00:00',0),(2310,0,0,'H','2526','','',2310,0,0,'2025-10-30',1911,1556,0,0,1515,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2247,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 11:34:31','','0000-00-00 00:00:00',0),(2311,0,0,'H','2526','','',2311,0,0,'2025-10-30',1912,127,0,0,116,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2248,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 11:35:56','','0000-00-00 00:00:00',0),(2312,0,0,'H','2526','','',2312,0,0,'2025-10-30',1913,1557,0,0,1516,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2249,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 11:36:24','','0000-00-00 00:00:00',0),(2313,0,0,'H','2526','','',2313,0,0,'2025-10-30',1914,1558,0,0,1517,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2250,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 11:37:30','','0000-00-00 00:00:00',0),(2314,0,0,'H','2526','','',2314,0,0,'2025-10-30',1892,1545,0,0,1504,'B',5400.00,0.00,'CSH','','','','','0000-00-00','','',2251,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 11:40:22','','0000-00-00 00:00:00',0),(2315,0,0,'H','2526','','',2315,0,0,'2025-10-30',1915,1559,0,0,1518,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2252,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 11:43:14','','0000-00-00 00:00:00',0),(2316,0,0,'H','2526','','',2316,0,0,'2025-10-30',1916,1560,0,0,1519,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2253,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 11:44:21','','0000-00-00 00:00:00',0),(2317,0,0,'H','2526','','',2317,0,0,'2025-10-30',1917,1561,0,0,1520,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2254,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 11:45:46','','0000-00-00 00:00:00',0),(2318,0,0,'H','2526','','',2318,0,0,'2025-10-30',1896,1547,0,0,1506,'D',-500.00,0.00,'CSH','','','','','2025-10-30','','',2255,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 11:46:59','','0000-00-00 00:00:00',0),(2319,0,0,'H','2526','','',2319,0,0,'2025-10-30',1905,1552,0,0,1511,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2256,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 11:46:59','','0000-00-00 00:00:00',0),(2320,0,0,'H','2526','','',2320,0,0,'2025-10-30',1918,1562,0,0,1521,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2257,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 11:47:11','','0000-00-00 00:00:00',0),(2321,0,0,'H','2526','','',2321,0,0,'2025-10-30',1896,1547,0,0,1506,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2258,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 11:48:20','','0000-00-00 00:00:00',0),(2322,0,0,'H','2526','','',2322,0,0,'2025-10-30',1910,804,0,0,773,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2259,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 11:48:52','','0000-00-00 00:00:00',0),(2323,0,0,'H','2526','','',2323,0,0,'2025-10-30',1919,1563,0,0,1522,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2260,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 11:50:53','','0000-00-00 00:00:00',0),(2324,0,0,'H','2526','','',2324,0,0,'2025-10-30',1920,1564,0,0,1523,'B',900.00,0.00,'7','sbi','','47828','','0000-00-00','scan','',2261,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 11:52:32','','0000-00-00 00:00:00',0),(2325,0,0,'H','2526','','',2325,0,0,'2025-10-30',1921,1565,0,0,1524,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2262,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 11:52:59','','0000-00-00 00:00:00',0),(2326,0,0,'H','2526','','',2326,0,0,'2025-10-30',1922,1566,0,0,1525,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2263,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 11:55:01','','0000-00-00 00:00:00',0),(2327,0,0,'H','2526','','',2327,0,0,'2025-10-30',1903,1551,0,0,1510,'B',4900.00,0.00,'7','icici','','72038','','0000-00-00','scan','',2264,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 11:56:07','','0000-00-00 00:00:00',0),(2328,0,0,'H','2526','','',2328,0,0,'2025-10-30',1924,1567,0,0,1526,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2265,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 11:59:33','','0000-00-00 00:00:00',0),(2329,0,0,'H','2526','','',2329,0,0,'2025-10-30',1925,1568,0,0,1527,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2267,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 12:06:43','','0000-00-00 00:00:00',0),(2330,0,0,'H','2526','','',2330,0,0,'2025-10-30',1926,129,0,0,118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2268,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 12:07:44','','0000-00-00 00:00:00',0),(2331,0,0,'H','2526','','',2331,0,0,'2025-10-30',1927,1569,0,0,1528,'B',500.00,0.00,'7','ICICI BANK','','54870','','0000-00-00','scan ','',2269,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-30 12:11:21','','0000-00-00 00:00:00',0),(2332,0,0,'H','2526','','',2332,0,0,'2025-10-30',1928,1570,0,0,1529,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2270,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 12:11:23','','0000-00-00 00:00:00',0),(2333,0,0,'H','2526','','',2333,0,0,'2025-10-30',1916,1560,0,0,1519,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',2271,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 12:15:38','','0000-00-00 00:00:00',0),(2334,0,0,'H','2526','','',2334,0,0,'2025-10-30',1917,1561,0,0,1520,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',2272,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 12:16:09','','0000-00-00 00:00:00',0),(2335,0,0,'H','2526','','',2335,0,0,'2025-10-30',1929,1571,0,0,1530,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2273,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 12:17:56','','0000-00-00 00:00:00',0),(2336,0,0,'H','2526','','P',2336,0,0,'2025-10-30',414,392,0,25,0,'A',17000.00,0.00,'7','SBI ','','460069541843','','0000-00-00','UPI','',2614,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-30 12:19:19','vishal','2025-11-01 15:09:18',0),(2337,0,0,'H','2526','','',2337,0,0,'2025-10-30',1920,1564,0,0,1523,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',2274,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 12:23:19','','0000-00-00 00:00:00',0),(2338,0,0,'H','2526','','',2338,0,0,'2025-10-30',1898,1517,0,0,1476,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',2275,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 12:24:19','','0000-00-00 00:00:00',0),(2339,0,0,'H','2526','','',2339,0,0,'2025-10-30',1930,1572,0,0,1531,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2276,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 12:26:31','','0000-00-00 00:00:00',0),(2340,0,0,'H','2526','','P',2340,0,0,'2025-10-30',1700,1346,0,103,0,'A',14500.00,0.00,'CSH','','','','','0000-00-00','','',2277,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-30 12:30:01','riya','2025-10-30 12:31:37',0),(2341,0,0,'H','2526','','',2341,0,0,'2025-10-30',1931,1573,0,0,1532,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2278,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 12:34:19','','0000-00-00 00:00:00',0),(2342,0,0,'H','2526','','',2342,0,0,'2025-10-30',1933,1574,0,0,1534,'B',500.00,0.00,'7','sbi','','37382','','0000-00-00','scan','',2279,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 12:44:13','','0000-00-00 00:00:00',0),(2343,0,0,'H','2526','','',2343,0,0,'2025-10-30',1935,1576,0,0,1535,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2280,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 12:48:19','','0000-00-00 00:00:00',0),(2344,0,0,'H','2526','','P',2344,0,0,'2025-10-30',1936,1555,0,111,0,'A',15000.00,0.00,'7','KOTAK MAHINDRA','','566931425233','','0000-00-00','UPI','',2616,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-30 13:04:38','vishal','2025-11-01 15:35:40',0),(2345,0,0,'H','2526','','',2345,0,0,'2025-10-30',1932,452,0,0,1533,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2281,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 13:05:48','','0000-00-00 00:00:00',0),(2346,0,0,'H','2526','','',2346,0,0,'2025-10-30',1938,1578,0,0,1537,'B',400.00,0.00,'7','hdfc','','87059','','0000-00-00','scan     ','',2282,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 13:06:04','','0000-00-00 00:00:00',0),(2347,0,0,'H','2526','','P',2347,0,0,'2025-10-30',1934,1575,0,110,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',2321,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-30 13:12:55','riya','2025-10-30 18:43:27',0),(2348,0,0,'H','2526','','',2348,0,0,'2025-10-30',1939,1579,0,0,1538,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2283,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 13:42:30','','0000-00-00 00:00:00',0),(2349,0,0,'H','2526','','',2349,0,0,'2025-10-30',1918,1562,0,0,1521,'B',3000.00,0.00,'7','pnb','','47014','','0000-00-00','scan','',2284,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 14:01:21','','0000-00-00 00:00:00',0),(2350,0,0,'H','2526','','P',2350,0,0,'2025-10-30',1941,1580,0,113,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',2732,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-30 14:04:22','vishal','2025-11-03 13:47:09',0),(2351,0,0,'H','2526','','P',2351,0,0,'2025-10-30',1942,1581,0,114,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',2425,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-30 14:28:14','vishal','2025-10-31 13:32:12',0),(2352,0,0,'H','2526','','P',2352,0,0,'2025-10-30',1940,1573,0,112,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',2729,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-30 14:41:52','vishal','2025-11-03 13:19:08',0),(2353,0,0,'H','2526','','',2353,0,0,'2025-10-30',1943,310,0,0,294,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2285,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 16:05:41','','0000-00-00 00:00:00',0),(2354,0,0,'H','2526','','P',2354,0,0,'2025-10-30',1782,1456,0,108,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',2581,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-30 16:14:57','vishal','2025-11-01 12:12:09',0),(2355,0,0,'H','2526','','P',2355,0,0,'2025-10-30',1727,1403,0,107,0,'A',13000.00,0.00,'CSH','','','','','0000-00-00','','',2604,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-30 16:16:39','vishal','2025-11-01 13:04:50',0),(2356,0,0,'H','2526','','',2356,0,0,'2025-10-30',1944,1582,0,0,1539,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2286,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 16:47:47','','0000-00-00 00:00:00',0),(2357,0,0,'H','2526','','',2357,0,0,'2025-10-30',1945,1173,0,0,1133,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2287,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-10-30 16:50:32','','0000-00-00 00:00:00',0),(2358,0,0,'H','2526','','',2358,0,0,'2025-10-30',1946,1583,0,0,1540,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2288,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 16:52:57','','0000-00-00 00:00:00',0),(2359,0,0,'H','2526','','',2359,0,0,'2025-10-30',1947,1584,0,0,1541,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2289,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 17:00:33','','0000-00-00 00:00:00',0),(2360,0,0,'H','2526','','',2360,0,0,'2025-10-30',1948,1585,0,0,1542,'B',500.00,0.00,'2','bob','3185','3185','','0000-00-00','card','',2290,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 17:03:02','','0000-00-00 00:00:00',0),(2361,0,0,'H','2526','','',2361,0,0,'2025-10-30',1949,1586,0,0,1543,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2291,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 17:06:33','','0000-00-00 00:00:00',0),(2362,0,0,'H','2526','','',2362,0,0,'2025-10-30',1950,1587,0,0,1544,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2292,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 17:08:13','','0000-00-00 00:00:00',0),(2363,0,0,'H','2526','','',2363,0,0,'2025-10-30',1951,1588,0,0,1545,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2293,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 17:09:58','','0000-00-00 00:00:00',0),(2364,0,0,'H','2526','','',2364,0,0,'2025-10-30',1953,942,0,0,911,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2294,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 17:12:57','','0000-00-00 00:00:00',0),(2365,0,0,'H','2526','','',2365,0,0,'2025-10-30',1954,1516,0,0,1475,'B',3500.00,0.00,'7','sbi','','86588','','0000-00-00','scan','',2295,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 17:15:16','','0000-00-00 00:00:00',0),(2366,0,0,'H','2526','','',2366,0,0,'2025-10-30',1955,1590,0,0,1547,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2296,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 17:17:20','','0000-00-00 00:00:00',0),(2367,0,0,'H','2526','','',2367,0,0,'2025-10-30',1952,1589,0,0,1546,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2297,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 17:21:01','','0000-00-00 00:00:00',0),(2368,0,0,'H','2526','','',2368,0,0,'2025-10-30',1944,1582,0,0,1539,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',2298,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 17:31:47','','0000-00-00 00:00:00',0),(2369,0,0,'H','2526','','',2369,0,0,'2025-10-30',1956,1591,0,0,1548,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2299,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 17:34:49','','0000-00-00 00:00:00',0),(2370,0,0,'H','2526','','',2370,0,0,'2025-10-30',1957,1592,0,0,1549,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2300,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 17:37:12','','0000-00-00 00:00:00',0),(2371,0,0,'H','2526','','',2371,0,0,'2025-10-30',1958,1593,0,0,1550,'B',500.00,0.00,'7','axis','','56141','','0000-00-00','scan','',2301,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 17:40:54','','0000-00-00 00:00:00',0),(2372,0,0,'H','2526','','',2372,0,0,'2025-10-30',1959,785,0,0,753,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2302,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 17:43:33','','0000-00-00 00:00:00',0),(2373,0,0,'H','2526','','',2373,0,0,'2025-10-30',1960,1594,0,0,1551,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2303,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 17:45:35','','0000-00-00 00:00:00',0),(2374,0,0,'H','2526','','',2374,0,0,'2025-10-30',1961,1595,0,0,1552,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2304,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 17:49:52','','0000-00-00 00:00:00',0),(2375,0,0,'H','2526','','',2375,0,0,'2025-10-30',1956,1591,0,0,1548,'B',4000.00,0.00,'7','axis','','71817','','0000-00-00','scan','',2305,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 17:55:32','','0000-00-00 00:00:00',0),(2376,0,0,'H','2526','','',2376,0,0,'2025-10-30',1962,1596,0,0,1553,'B',500.00,0.00,'7','hdfc','','48605','','0000-00-00','scan     ','',2306,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 17:58:48','','0000-00-00 00:00:00',0),(2377,0,0,'H','2526','','',2377,0,0,'2025-10-30',1963,1597,0,0,1554,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2307,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 18:02:55','','0000-00-00 00:00:00',0),(2378,0,0,'H','2526','','',2378,0,0,'2025-10-30',1964,1598,0,0,1555,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2308,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 18:04:25','','0000-00-00 00:00:00',0),(2379,0,0,'H','2526','','',2379,0,0,'2025-10-30',1966,1599,0,0,1556,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2309,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 18:15:08','','0000-00-00 00:00:00',0),(2380,0,0,'H','2526','','',2380,0,0,'2025-10-30',1965,1218,0,0,1179,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2310,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 18:15:58','','0000-00-00 00:00:00',0),(2381,0,0,'H','2526','','',2381,0,0,'2025-10-30',1968,1601,0,0,1558,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2311,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 18:17:25','','0000-00-00 00:00:00',0),(2382,0,0,'H','2526','','',2382,0,0,'2025-10-30',1967,1600,0,0,1557,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2312,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 18:18:17','','0000-00-00 00:00:00',0),(2383,0,0,'H','2526','','',2383,0,0,'2025-10-30',1969,1602,0,0,1559,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2313,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 18:19:58','','0000-00-00 00:00:00',0),(2384,0,0,'H','2526','','',2384,0,0,'2025-10-30',1970,1603,0,0,1560,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2314,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 18:20:20','','0000-00-00 00:00:00',0),(2385,0,0,'H','2526','','',2385,0,0,'2025-10-30',1971,1604,0,0,1561,'B',400.00,0.00,'7','SBI BANK','','67190','','0000-00-00','','',2316,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 18:30:35','','0000-00-00 00:00:00',0),(2386,0,0,'H','2526','','',2386,0,0,'2025-10-30',1972,1605,0,0,1562,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2317,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 18:34:37','','0000-00-00 00:00:00',0),(2387,0,0,'H','2526','','',2387,0,0,'2025-10-30',1973,1143,0,0,1105,'B',300.00,0.00,'7','bank','','50591','','0000-00-00','scan','',2319,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 18:37:49','','0000-00-00 00:00:00',0),(2388,0,0,'H','2526','','',2388,0,0,'2025-10-30',1974,1606,0,0,1563,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2320,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 18:41:18','','0000-00-00 00:00:00',0),(2389,0,0,'H','2526','','',2389,0,0,'2025-10-30',1934,1575,0,110,0,'D',-2500.00,0.00,'CSH','','','','','0000-00-00','','',2321,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-10-30 18:43:27','','0000-00-00 00:00:00',0),(2390,0,0,'H','2526','','',2390,0,0,'2025-10-30',1975,1607,0,0,1564,'B',500.00,0.00,'7','YES BANK','','103896','','0000-00-00','scan ','',2322,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-30 18:43:30','','0000-00-00 00:00:00',0),(2391,0,0,'H','2526','','',2391,0,0,'2025-10-30',1976,1608,0,0,1565,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2323,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 18:44:03','','0000-00-00 00:00:00',0),(2392,0,0,'H','2526','','',2392,0,0,'2025-10-30',1977,1609,0,0,1566,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2324,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 18:46:42','','0000-00-00 00:00:00',0),(2393,0,0,'H','2526','','',2393,0,0,'2025-10-30',1969,1602,0,0,1559,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',2325,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 18:50:24','','0000-00-00 00:00:00',0),(2394,0,0,'H','2526','','',2394,0,0,'2025-10-30',1978,1610,0,0,1567,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2326,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 18:53:04','','0000-00-00 00:00:00',0),(2395,0,0,'H','2526','','',2395,0,0,'2025-10-30',1979,1611,0,0,1568,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2327,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 18:53:39','','0000-00-00 00:00:00',0),(2396,0,0,'H','2526','','',2396,0,0,'2025-10-30',1981,1612,0,0,1569,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2328,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-30 19:16:27','','0000-00-00 00:00:00',0),(2397,0,0,'H','2526','','',2397,0,0,'2025-10-30',1982,1613,0,0,1570,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2329,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 19:19:29','','0000-00-00 00:00:00',0),(2398,0,0,'H','2526','','',2398,0,0,'2025-10-30',1983,449,0,0,427,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2330,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 19:20:01','','0000-00-00 00:00:00',0),(2399,0,0,'H','2526','','',2399,0,0,'2025-10-30',1984,709,0,0,680,'B',300.00,0.00,'7','AXIS BANK','','71817','','0000-00-00','scan ','',2331,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-30 19:25:16','','0000-00-00 00:00:00',0),(2400,0,0,'H','2526','','',2400,0,0,'2025-10-30',1985,234,0,0,221,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2332,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 19:28:02','','0000-00-00 00:00:00',0),(2401,0,0,'H','2526','','',2401,0,0,'2025-10-30',1974,1606,0,0,1563,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',2333,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 19:37:19','','0000-00-00 00:00:00',0),(2402,0,0,'H','2526','','',2402,0,0,'2025-10-30',1986,1614,0,0,1571,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2334,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-30 20:02:38','','0000-00-00 00:00:00',0),(2403,0,0,'H','2526','','',2403,0,0,'2025-10-30',1987,1615,0,0,1572,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2335,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-30 20:10:15','','0000-00-00 00:00:00',0),(2404,0,0,'H','2526','','',2404,0,0,'2025-10-31',1989,1617,0,0,1573,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2336,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-31 08:57:46','','0000-00-00 00:00:00',0),(2405,0,0,'H','2526','','',2405,0,0,'2025-10-31',1991,1619,0,0,1575,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2337,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 09:03:02','','0000-00-00 00:00:00',0),(2406,0,0,'H','2526','','',2406,0,0,'2025-10-31',1990,1618,0,0,1574,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',2338,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-31 09:03:28','','0000-00-00 00:00:00',0),(2407,0,0,'H','2526','','',2407,0,0,'2025-10-31',1992,1620,0,0,1576,'B',1800.00,0.00,'7','sbi ','','13931','','0000-00-00','scan','',2339,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-10-31 09:08:51','','0000-00-00 00:00:00',0),(2408,0,0,'H','2526','','',2408,0,0,'2025-10-31',1993,1621,0,0,1577,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2340,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 09:20:04','','0000-00-00 00:00:00',0),(2409,0,0,'H','2526','','',2409,0,0,'2025-10-31',1994,1622,0,0,1578,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2341,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 09:47:08','','0000-00-00 00:00:00',0),(2410,0,0,'H','2526','','',2410,0,0,'2025-10-31',1996,1623,0,0,1579,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2342,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 09:52:25','','0000-00-00 00:00:00',0),(2411,0,0,'H','2526','','P',2411,0,0,'2025-10-31',1995,1245,0,116,0,'A',60000.00,0.00,'CSH','','','','','0000-00-00','','',2765,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-31 09:53:43','vishal','2025-11-03 18:11:12',0),(2412,0,0,'H','2526','','',2412,0,0,'2025-10-31',1997,1283,0,0,1242,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2343,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 09:53:48','','0000-00-00 00:00:00',0),(2413,0,0,'H','2526','','',2413,0,0,'2025-10-31',1998,1624,0,0,1580,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2344,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 10:00:41','','0000-00-00 00:00:00',0),(2414,0,0,'H','2526','','',2414,0,0,'2025-10-31',1999,1625,0,0,1581,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2345,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 10:01:42','','0000-00-00 00:00:00',0),(2415,0,0,'H','2526','','',2415,0,0,'2025-10-31',2000,1017,0,0,985,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2346,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 10:03:07','','0000-00-00 00:00:00',0),(2416,0,0,'H','2526','','',2416,0,0,'2025-10-31',2001,630,0,0,600,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2347,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 10:05:13','','0000-00-00 00:00:00',0),(2417,0,0,'H','2526','','',2417,0,0,'2025-10-31',2002,1626,0,0,1582,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2348,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 10:12:54','','0000-00-00 00:00:00',0),(2418,0,0,'H','2526','','',2418,0,0,'2025-10-31',2003,1627,0,0,1583,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2349,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 10:17:34','','0000-00-00 00:00:00',0),(2419,0,0,'H','2526','','',2419,0,0,'2025-10-31',2004,1628,0,0,1584,'B',500.00,0.00,'7','sbi','','77953','','0000-00-00','scan','',2350,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 10:20:33','','0000-00-00 00:00:00',0),(2420,0,0,'H','2526','','',2420,0,0,'2025-10-31',2006,1630,0,0,1586,'B',500.00,0.00,'7','ICICI','','25345','','0000-00-00','scan','',2351,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 10:35:01','','0000-00-00 00:00:00',0),(2421,0,0,'H','2526','','',2421,0,0,'2025-10-31',2007,1631,0,0,1587,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2352,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 10:37:08','','0000-00-00 00:00:00',0),(2422,0,0,'H','2526','','',2422,0,0,'2025-10-31',2008,1632,0,0,1588,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2353,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 10:37:41','','0000-00-00 00:00:00',0),(2423,0,0,'H','2526','','',2423,0,0,'2025-10-31',2009,1633,0,0,1589,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2354,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 10:39:03','','0000-00-00 00:00:00',0),(2424,0,0,'H','2526','','',2424,0,0,'2025-10-31',2010,662,0,0,632,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2355,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 10:40:34','','0000-00-00 00:00:00',0),(2425,0,0,'H','2526','','',2425,0,0,'2025-10-31',2012,1635,0,0,1591,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2356,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 10:50:03','','0000-00-00 00:00:00',0),(2426,0,0,'H','2526','','',2426,0,0,'2025-10-31',2011,1634,0,0,1590,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2357,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 10:50:34','','0000-00-00 00:00:00',0),(2427,0,0,'H','2526','','',2427,0,0,'2025-10-31',2013,1636,0,0,1592,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2358,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 10:53:42','','0000-00-00 00:00:00',0),(2428,0,0,'H','2526','','',2428,0,0,'2025-10-31',2014,1637,0,0,1593,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2359,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 10:54:00','','0000-00-00 00:00:00',0),(2429,0,0,'H','2526','','',2429,0,0,'2025-10-31',2015,1638,0,0,1594,'B',500.00,0.00,'7','icici','','06782','','0000-00-00','scan     ','',2360,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 10:58:10','','0000-00-00 00:00:00',0),(2430,0,0,'H','2526','','',2430,0,0,'2025-10-31',2016,1639,0,0,1595,'B',900.00,0.00,'7','hdfc','','01972','','0000-00-00','scan','',2361,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 10:59:34','','0000-00-00 00:00:00',0),(2431,0,0,'H','2526','','',2431,0,0,'2025-10-31',2017,1640,0,0,1596,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2362,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 11:02:29','','0000-00-00 00:00:00',0),(2432,0,0,'H','2526','','',2432,0,0,'2025-10-31',2019,1642,0,0,1597,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2363,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 11:08:52','','0000-00-00 00:00:00',0),(2433,0,0,'H','2526','','',2433,0,0,'2025-10-31',2020,1643,0,0,1598,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2364,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 11:11:01','','0000-00-00 00:00:00',0),(2434,0,0,'H','2526','','',2434,0,0,'2025-10-31',1994,1622,0,0,1578,'B',8200.00,0.00,'CSH','','','','','0000-00-00','','',2365,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 11:13:43','','0000-00-00 00:00:00',0),(2435,0,0,'H','2526','','P',2435,0,0,'2025-10-31',2018,1641,0,117,0,'A',15000.00,0.00,'7','hdfc bank','','833639847846','','0000-00-00','','',2941,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-31 11:15:42','riya','2025-11-05 11:15:06',0),(2436,0,0,'H','2526','','',2436,0,0,'2025-10-31',2010,662,0,0,632,'D',-500.00,0.00,'CSH','','','','','2025-10-31','','',2366,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 11:16:42','','0000-00-00 00:00:00',0),(2437,0,0,'H','2526','','',2437,0,0,'2025-10-31',2021,1644,0,0,1599,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2367,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 11:19:45','','0000-00-00 00:00:00',0),(2438,0,0,'H','2526','','',2438,0,0,'2025-10-31',2022,1645,0,0,1600,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2368,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 11:21:09','','0000-00-00 00:00:00',0),(2439,0,0,'H','2526','','',2439,0,0,'2025-10-31',2023,1020,0,0,988,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2369,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 11:23:09','','0000-00-00 00:00:00',0),(2440,0,0,'H','2526','','',2440,0,0,'2025-10-31',2024,1646,0,0,1601,'B',900.00,0.00,'7','hdfc','','05552','','0000-00-00','scan','',2370,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 11:23:17','','0000-00-00 00:00:00',0),(2441,0,0,'H','2526','','',2441,0,0,'2025-10-31',2005,1629,0,0,1585,'B',400.00,0.00,'7','KOTAK BANK','','41034','','0000-00-00','scan','',2371,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 11:26:02','','0000-00-00 00:00:00',0),(2442,0,0,'H','2526','','',2442,0,0,'2025-10-31',2026,1158,0,0,1602,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2372,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 11:27:02','','0000-00-00 00:00:00',0),(2443,0,0,'H','2526','','',2443,0,0,'2025-10-31',2028,1648,0,0,1603,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2373,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 11:33:10','','0000-00-00 00:00:00',0),(2444,0,0,'H','2526','','',2444,0,0,'2025-10-31',2025,1277,0,0,1236,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2374,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 11:33:15','','0000-00-00 00:00:00',0),(2445,0,0,'H','2526','','P',2445,0,0,'2025-10-31',2027,1647,0,118,0,'A',15000.00,0.00,'7','bank of india','','2694','','0000-00-00','','',2637,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-31 11:35:29','riya','2025-11-02 11:26:56',0),(2446,0,0,'H','2526','','',2446,0,0,'2025-10-31',1996,1623,0,0,1579,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',2375,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 11:37:45','','0000-00-00 00:00:00',0),(2447,0,0,'H','2526','','',2447,0,0,'2025-10-31',2029,1649,0,0,1604,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2376,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 11:38:12','','0000-00-00 00:00:00',0),(2448,0,0,'H','2526','','',2448,0,0,'2025-10-31',2031,1651,0,0,1606,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2377,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 11:40:17','','0000-00-00 00:00:00',0),(2449,0,0,'H','2526','','',2449,0,0,'2025-10-31',2032,1652,0,0,1607,'B',900.00,0.00,'7','sbi','','22334','','0000-00-00','scan','',2378,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 11:41:08','','0000-00-00 00:00:00',0),(2450,0,0,'H','2526','','',2450,0,0,'2025-10-31',2030,1650,0,0,1605,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2379,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 11:41:55','','0000-00-00 00:00:00',0),(2451,0,0,'H','2526','','',2451,0,0,'2025-10-31',2033,1653,0,0,1608,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2380,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 11:42:00','','0000-00-00 00:00:00',0),(2452,0,0,'H','2526','','',2452,0,0,'2025-10-31',1989,1617,0,0,1573,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2381,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 11:42:26','','0000-00-00 00:00:00',0),(2453,0,0,'H','2526','','',2453,0,0,'2025-10-31',2034,1654,0,0,1609,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2382,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 11:45:44','','0000-00-00 00:00:00',0),(2454,0,0,'H','2526','','',2454,0,0,'2025-10-31',2035,1655,0,0,1610,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2383,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 11:47:30','','0000-00-00 00:00:00',0),(2455,0,0,'H','2526','','',2455,0,0,'2025-10-31',2036,1656,0,0,1611,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2384,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 11:51:50','','0000-00-00 00:00:00',0),(2456,0,0,'H','2526','','',2456,0,0,'2025-10-31',2038,74,0,0,63,'B',350.00,0.00,'CSH','','','','','0000-00-00','','',2385,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 11:56:39','','0000-00-00 00:00:00',0),(2457,0,0,'H','2526','','',2457,0,0,'2025-10-31',2016,1639,0,0,1595,'B',5600.00,0.00,'7','hdfc','','11909','','0000-00-00','scan','',2386,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 11:56:43','','0000-00-00 00:00:00',0),(2458,0,0,'H','2526','','',2458,0,0,'2025-10-31',2039,1658,0,0,1613,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2387,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 11:59:28','','0000-00-00 00:00:00',0),(2459,0,0,'H','2526','','',2459,0,0,'2025-10-31',2037,1657,0,0,1612,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2388,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 12:00:02','','0000-00-00 00:00:00',0),(2460,0,0,'H','2526','','',2460,0,0,'2025-10-31',2040,1659,0,0,1614,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2389,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-31 12:03:26','','0000-00-00 00:00:00',0),(2461,0,0,'H','2526','','',2461,0,0,'2025-10-31',2041,1660,0,0,1615,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2390,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 12:05:41','','0000-00-00 00:00:00',0),(2462,0,0,'H','2526','','',2462,0,0,'2025-10-31',2042,1661,0,0,1616,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2391,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 12:06:33','','0000-00-00 00:00:00',0),(2463,0,0,'H','2526','','',2463,0,0,'2025-10-31',2019,1642,0,0,1597,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',2392,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 12:07:40','','0000-00-00 00:00:00',0),(2464,0,0,'H','2526','','',2464,0,0,'2025-10-31',2040,1659,0,0,1614,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2393,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-31 12:13:43','','0000-00-00 00:00:00',0),(2465,0,0,'H','2526','','',2465,0,0,'2025-10-31',2020,1643,0,0,1598,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2395,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 12:15:19','','0000-00-00 00:00:00',0),(2466,0,0,'H','2526','','',2466,0,0,'2025-10-31',2040,1659,0,0,1614,'D',-500.00,0.00,'CSH','','','','','2025-10-31','','',2394,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-31 12:15:57','','0000-00-00 00:00:00',0),(2467,0,0,'H','2526','','',2467,0,0,'2025-10-31',2045,1664,0,0,1619,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2397,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 12:16:34','','0000-00-00 00:00:00',0),(2468,0,0,'H','2526','','',2468,0,0,'2025-10-31',2044,1663,0,0,1618,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2398,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 12:16:35','','0000-00-00 00:00:00',0),(2469,0,0,'H','2526','','',2469,0,0,'2025-10-31',2043,1662,0,0,1617,'B',900.00,0.00,'7','icici','','97199','','0000-00-00','scan','',2400,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 12:17:05','','0000-00-00 00:00:00',0),(2470,0,0,'H','2526','','',2470,0,0,'2025-10-31',2040,1659,0,0,1614,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2401,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-31 12:17:12','','0000-00-00 00:00:00',0),(2471,0,0,'H','2526','','',2471,0,0,'2025-10-31',2047,1666,0,0,1621,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2402,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 12:19:43','','0000-00-00 00:00:00',0),(2472,0,0,'H','2526','','',2472,0,0,'2025-10-31',2048,1062,0,0,1028,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2403,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 12:19:53','','0000-00-00 00:00:00',0),(2473,0,0,'H','2526','','',2473,0,0,'2025-10-31',2049,1667,0,0,1622,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2404,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 12:20:45','','0000-00-00 00:00:00',0),(2474,0,0,'H','2526','','',2474,0,0,'2025-10-31',1998,1624,0,0,1580,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',2405,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 12:27:58','','0000-00-00 00:00:00',0),(2475,0,0,'H','2526','','',2475,0,0,'2025-10-31',1999,1625,0,0,1581,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',2406,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 12:29:16','','0000-00-00 00:00:00',0),(2476,0,0,'H','2526','','',2476,0,0,'2025-10-31',2050,1668,0,0,1623,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2407,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 12:31:43','','0000-00-00 00:00:00',0),(2477,0,0,'H','2526','','',2477,0,0,'2025-10-31',2051,1669,0,0,1624,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2408,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 12:32:12','','0000-00-00 00:00:00',0),(2478,0,0,'H','2526','','P',2478,0,0,'2025-10-31',1660,1360,0,102,0,'A',32700.00,0.00,'CSH','','','','','0000-00-00','','',2409,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-31 12:32:58','vishal','2025-10-31 12:33:19',0),(2479,0,0,'H','2526','','',2479,0,0,'2025-10-31',2034,1654,0,0,1609,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',2410,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 12:35:30','','0000-00-00 00:00:00',0),(2480,0,0,'H','2526','','',2480,0,0,'2025-10-31',2052,1670,0,0,1625,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2411,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-31 12:36:47','','0000-00-00 00:00:00',0),(2481,0,0,'H','2526','','',2481,0,0,'2025-10-31',2053,1671,0,0,1626,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2412,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 12:46:36','','0000-00-00 00:00:00',0),(2482,0,0,'H','2526','','',2482,0,0,'2025-10-31',2055,1673,0,0,1628,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2413,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 12:49:14','','0000-00-00 00:00:00',0),(2483,0,0,'H','2526','','',2483,0,0,'2025-10-31',2056,347,0,0,331,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2414,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 12:50:32','','0000-00-00 00:00:00',0),(2484,0,0,'H','2526','','',2484,0,0,'2025-10-31',2046,1665,0,0,1620,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2415,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 12:57:37','','0000-00-00 00:00:00',0),(2485,0,0,'H','2526','','',2485,0,0,'2025-10-31',2013,1636,0,0,1592,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2416,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 13:01:22','','0000-00-00 00:00:00',0),(2486,0,0,'H','2526','','',2486,0,0,'2025-10-31',2057,1674,0,0,1629,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2417,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 13:04:40','','0000-00-00 00:00:00',0),(2487,0,0,'H','2526','','',2487,0,0,'2025-10-31',2058,1675,0,0,1630,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2418,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 13:09:52','','0000-00-00 00:00:00',0),(2488,0,0,'H','2526','','',2488,0,0,'2025-10-31',2059,1676,0,0,1631,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2419,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 13:12:15','','0000-00-00 00:00:00',0),(2489,0,0,'H','2526','','',2489,0,0,'2025-10-31',2060,1677,0,0,1632,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2420,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 13:14:35','','0000-00-00 00:00:00',0),(2490,0,0,'H','2526','','',2490,0,0,'2025-10-31',2061,1678,0,0,1633,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2421,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 13:16:12','','0000-00-00 00:00:00',0),(2491,0,0,'H','2526','','',2491,0,0,'2025-10-31',2052,1670,0,0,1625,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',2422,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-31 13:26:20','','0000-00-00 00:00:00',0),(2492,0,0,'H','2526','','',2492,0,0,'2025-10-31',2058,1675,0,0,1630,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',2423,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 13:28:17','','0000-00-00 00:00:00',0),(2493,0,0,'H','2526','','',2493,0,0,'2025-10-31',2043,1662,0,0,1617,'B',4000.00,0.00,'7','icici','','07049','','0000-00-00','scan','',2424,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 13:28:18','','0000-00-00 00:00:00',0),(2494,0,0,'H','2526','','P',2494,0,0,'2025-10-31',1942,1581,0,114,0,'A',1900.00,0.00,'7','hdfc bank','','3629','','0000-00-00','','',2425,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-31 13:31:48','vishal','2025-10-31 13:32:12',0),(2495,0,0,'H','2526','','',2495,0,0,'2025-10-31',2062,1679,0,0,1634,'B',500.00,0.00,'7','BOB BANK','','95856','','0000-00-00','scan','',2427,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 13:51:33','','0000-00-00 00:00:00',0),(2496,0,0,'H','2526','','',2496,0,0,'2025-10-31',2063,1680,0,0,1635,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2428,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 14:11:18','','0000-00-00 00:00:00',0),(2497,0,0,'H','2526','','',2497,0,0,'2025-10-31',2064,1681,0,0,1636,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2429,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 14:25:16','','0000-00-00 00:00:00',0),(2498,0,0,'H','2526','','',2498,0,0,'2025-10-31',2046,1665,0,0,1620,'D',-500.00,0.00,'CSH','','','','','2025-10-31','','',2430,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 14:47:04','','0000-00-00 00:00:00',0),(2499,0,0,'H','2526','','',2499,0,0,'2025-10-31',2046,1665,0,0,1620,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2431,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 14:47:48','','0000-00-00 00:00:00',0),(2500,0,0,'H','2526','','P',2500,0,0,'2025-10-31',2065,1680,0,119,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',2635,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-31 14:57:25','riya','2025-11-02 10:37:55',0),(2501,0,0,'H','2526','','',2501,0,0,'2025-10-31',2004,1628,0,0,1584,'B',4000.00,0.00,'7','sbi ','','81624','','0000-00-00','scan','',2432,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 15:23:09','','0000-00-00 00:00:00',0),(2502,0,0,'H','2526','','',2502,0,0,'2025-10-31',2066,616,0,0,585,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2433,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 16:12:09','','0000-00-00 00:00:00',0),(2503,0,0,'H','2526','','',2503,0,0,'2025-10-31',2067,1682,0,0,1637,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',2434,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 16:12:57','','0000-00-00 00:00:00',0),(2504,0,0,'H','2526','','',2504,0,0,'2025-10-31',2068,1683,0,0,1638,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2435,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 16:24:28','','0000-00-00 00:00:00',0),(2505,0,0,'H','2526','','',2505,0,0,'2025-10-31',2071,1686,0,0,1641,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2436,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 16:43:51','','0000-00-00 00:00:00',0),(2506,0,0,'H','2526','','',2506,0,0,'2025-10-31',2074,1657,0,0,1612,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',2437,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 17:00:57','','0000-00-00 00:00:00',0),(2507,0,0,'H','2526','','',2507,0,0,'2025-10-31',2075,1689,0,0,1644,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2438,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 17:03:15','','0000-00-00 00:00:00',0),(2508,0,0,'H','2526','','',2508,0,0,'2025-10-31',2076,1612,0,0,1569,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',2439,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 17:04:55','','0000-00-00 00:00:00',0),(2509,0,0,'H','2526','','',2509,0,0,'2025-10-31',2077,1690,0,0,1645,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2440,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 17:08:18','','0000-00-00 00:00:00',0),(2510,0,0,'H','2526','','',2510,0,0,'2025-10-31',2078,1633,0,0,1589,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',2441,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 17:10:51','','0000-00-00 00:00:00',0),(2511,0,0,'H','2526','','',2511,0,0,'2025-10-31',2082,1693,0,0,1648,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2442,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 17:15:13','','0000-00-00 00:00:00',0),(2512,0,0,'H','2526','','',2512,0,0,'2025-10-31',2083,1694,0,0,1649,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2443,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 17:15:29','','0000-00-00 00:00:00',0),(2513,0,0,'H','2526','','',2513,0,0,'2025-10-31',2084,1695,0,0,1650,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2444,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 17:16:43','','0000-00-00 00:00:00',0),(2514,0,0,'H','2526','','',2514,0,0,'2025-10-31',2085,1696,0,0,1651,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2445,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 17:20:59','','0000-00-00 00:00:00',0),(2515,0,0,'H','2526','','',2515,0,0,'2025-10-31',2086,1697,0,0,1652,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2446,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 17:24:17','','0000-00-00 00:00:00',0),(2516,0,0,'H','2526','','',2516,0,0,'2025-10-31',2079,1691,0,0,1646,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2447,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-31 17:27:17','','0000-00-00 00:00:00',0),(2517,0,0,'H','2526','','',2517,0,0,'2025-10-31',2087,438,0,0,416,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2448,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 17:28:03','','0000-00-00 00:00:00',0),(2518,0,0,'H','2526','','',2518,0,0,'2025-10-31',2088,1698,0,0,1653,'B',900.00,0.00,'7','HDFC BANK','','26616','','0000-00-00','scan','',2449,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 17:38:45','','0000-00-00 00:00:00',0),(2519,0,0,'H','2526','','',2519,0,0,'2025-10-31',2089,1640,0,0,1596,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',2450,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 17:40:56','','0000-00-00 00:00:00',0),(2520,0,0,'H','2526','','',2520,0,0,'2025-10-31',2081,1692,0,0,1647,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2451,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 17:43:28','','0000-00-00 00:00:00',0),(2521,0,0,'H','2526','','',2521,0,0,'2025-10-31',2090,1699,0,0,1654,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2452,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 17:45:15','','0000-00-00 00:00:00',0),(2522,0,0,'H','2526','','',2522,0,0,'2025-10-31',2091,1700,0,0,1655,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2453,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 17:47:10','','0000-00-00 00:00:00',0),(2523,0,0,'H','2526','','',2523,0,0,'2025-10-31',2094,1008,0,0,975,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2454,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 17:48:47','','0000-00-00 00:00:00',0),(2524,0,0,'H','2526','','',2524,0,0,'2025-10-31',2093,917,0,0,885,'B',500.00,0.00,'7','KOTAK BANK','','38626','','0000-00-00','scan','',2455,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 17:49:05','','0000-00-00 00:00:00',0),(2525,0,0,'H','2526','','',2525,0,0,'2025-10-31',2095,1702,0,0,1657,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2456,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 17:50:04','','0000-00-00 00:00:00',0),(2526,0,0,'H','2526','','',2526,0,0,'2025-10-31',2096,1703,0,0,1658,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2457,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 17:51:52','','0000-00-00 00:00:00',0),(2527,0,0,'H','2526','','',2527,0,0,'2025-10-31',2092,1701,0,0,1656,'B',750.00,0.00,'7','bob','','50042','','0000-00-00','scan     ','',2458,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 17:52:04','','0000-00-00 00:00:00',0),(2528,0,0,'H','2526','','',2528,0,0,'2025-10-31',2097,681,0,0,651,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2459,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 17:53:26','','0000-00-00 00:00:00',0),(2529,0,0,'H','2526','','',2529,0,0,'2025-10-31',2080,1242,0,0,1203,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2460,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 17:54:48','','0000-00-00 00:00:00',0),(2530,0,0,'H','2526','','',2530,0,0,'2025-10-31',2098,1704,0,0,1659,'B',500.00,0.00,'7','UPI LITE STATE','','11212','','0000-00-00','scan','',2461,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 17:56:17','','0000-00-00 00:00:00',0),(2531,0,0,'H','2526','','',2531,0,0,'2025-10-31',2084,1695,0,0,1650,'D',-700.00,0.00,'CSH','','','','','2025-10-31','','',2462,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 17:58:15','','0000-00-00 00:00:00',0),(2532,0,0,'H','2526','','',2532,0,0,'2025-10-31',2084,1695,0,0,1650,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',2463,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 17:59:11','','0000-00-00 00:00:00',0),(2533,0,0,'H','2526','','',2533,0,0,'2025-10-31',2099,1705,0,0,1660,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2464,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 18:02:39','','0000-00-00 00:00:00',0),(2534,0,0,'H','2526','','',2534,0,0,'2025-10-31',2100,1706,0,0,1661,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2465,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-31 18:04:17','','0000-00-00 00:00:00',0),(2535,0,0,'H','2526','','',2535,0,0,'2025-10-31',2103,366,0,0,350,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2466,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 18:07:04','','0000-00-00 00:00:00',0),(2536,0,0,'H','2526','','',2536,0,0,'2025-10-31',2104,1707,0,0,1662,'B',350.00,0.00,'7','axis bank','','56379','','0000-00-00','scan  ','',2467,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 18:09:45','','0000-00-00 00:00:00',0),(2537,0,0,'H','2526','','',2537,0,0,'2025-10-31',2105,226,0,0,213,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2468,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 18:10:45','','0000-00-00 00:00:00',0),(2538,0,0,'H','2526','','',2538,0,0,'2025-10-31',2096,1703,0,0,1658,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',2469,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 18:12:23','','0000-00-00 00:00:00',0),(2539,0,0,'H','2526','','',2539,0,0,'2025-10-31',2107,1346,0,0,1307,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2470,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 18:13:43','','0000-00-00 00:00:00',0),(2540,0,0,'H','2526','','',2540,0,0,'2025-10-31',2108,1708,0,0,1663,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2471,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 18:14:01','','0000-00-00 00:00:00',0),(2541,0,0,'H','2526','','',2541,0,0,'2025-10-31',2110,1332,0,0,1293,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2472,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 18:14:28','','0000-00-00 00:00:00',0),(2542,0,0,'H','2526','','',2542,0,0,'2025-10-31',2111,1710,0,0,1665,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2473,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 18:15:59','','0000-00-00 00:00:00',0),(2543,0,0,'H','2526','','',2543,0,0,'2025-10-31',2079,1691,0,0,1646,'B',550.00,0.00,'CSH','','','','','0000-00-00','','',2474,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-31 18:17:35','','0000-00-00 00:00:00',0),(2544,0,0,'H','2526','','',2544,0,0,'2025-10-31',2113,1174,0,0,1134,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2475,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 18:19:01','','0000-00-00 00:00:00',0),(2545,0,0,'H','2526','','',2545,0,0,'2025-10-31',2112,1711,0,0,1666,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2477,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 18:19:25','','0000-00-00 00:00:00',0),(2546,0,0,'H','2526','','',2546,0,0,'2025-10-31',2079,1691,0,0,1646,'D',-500.00,0.00,'CSH','','','','','2025-10-31','','',2476,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-31 18:19:36','','0000-00-00 00:00:00',0),(2547,0,0,'H','2526','','',2547,0,0,'2025-10-31',2088,1698,0,0,1653,'B',4600.00,0.00,'7','hdfc','','45699','','0000-00-00','scan','',2478,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 18:19:45','','0000-00-00 00:00:00',0),(2548,0,0,'H','2526','','',2548,0,0,'2025-10-31',2079,1691,0,0,1646,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2479,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-31 18:20:23','','0000-00-00 00:00:00',0),(2549,0,0,'H','2526','','',2549,0,0,'2025-10-31',2114,1712,0,0,1667,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2480,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 18:21:30','','0000-00-00 00:00:00',0),(2550,0,0,'H','2526','','',2550,0,0,'2025-10-31',2115,907,0,0,875,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2481,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 18:22:43','','0000-00-00 00:00:00',0),(2551,0,0,'H','2526','','',2551,0,0,'2025-10-31',2116,1713,0,0,1668,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2482,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 18:24:09','','0000-00-00 00:00:00',0),(2552,0,0,'H','2526','','',2552,0,0,'2025-10-31',2092,1701,0,0,1656,'D',-750.00,0.00,'7','BOB BANK','','50042','','2025-10-31','','',2483,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 18:27:41','','0000-00-00 00:00:00',0),(2553,0,0,'H','2526','','',2553,0,0,'2025-10-31',2100,1706,0,0,1661,'D',-500.00,0.00,'CSH','','','','','2025-10-31','','',2484,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-31 18:28:55','','0000-00-00 00:00:00',0),(2554,0,0,'H','2526','','',2554,0,0,'2025-10-31',2121,1717,0,0,1672,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2485,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 18:30:18','','0000-00-00 00:00:00',0),(2555,0,0,'H','2526','','',2555,0,0,'2025-10-31',2122,1718,0,0,1673,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2486,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 18:32:07','','0000-00-00 00:00:00',0),(2556,0,0,'H','2526','','',2556,0,0,'2025-10-31',2123,1719,0,0,1674,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2487,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 18:33:04','','0000-00-00 00:00:00',0),(2557,0,0,'H','2526','','',2557,0,0,'2025-10-31',2124,1720,0,0,1675,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2488,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 18:33:39','','0000-00-00 00:00:00',0),(2558,0,0,'H','2526','','',2558,0,0,'2025-10-31',2117,1714,0,0,1669,'B',500.00,0.00,'7','BOB BANK','','50042','','0000-00-00','scan','',2489,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 18:35:34','','0000-00-00 00:00:00',0),(2559,0,0,'H','2526','','',2559,0,0,'2025-10-31',2114,1712,0,0,1667,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',2490,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 18:37:54','','0000-00-00 00:00:00',0),(2560,0,0,'H','2526','','',2560,0,0,'2025-10-31',2125,1721,0,0,1676,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2491,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 18:38:16','','0000-00-00 00:00:00',0),(2561,0,0,'H','2526','','',2561,0,0,'2025-10-31',2126,1722,0,0,1677,'B',750.00,0.00,'7','KOTAK BANK','','12410','','0000-00-00','scan','',2492,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 18:40:21','','0000-00-00 00:00:00',0),(2562,0,0,'H','2526','','',2562,0,0,'2025-10-31',2127,1723,0,0,1678,'B',700.00,0.00,'7','sbi','','08521','','0000-00-00','scan','',2493,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 18:41:20','','0000-00-00 00:00:00',0),(2563,0,0,'H','2526','','',2563,0,0,'2025-10-31',2128,1724,0,0,1679,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2494,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 18:42:53','','0000-00-00 00:00:00',0),(2564,0,0,'H','2526','','',2564,0,0,'2025-10-31',2118,1715,0,0,1670,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2495,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-31 18:43:08','','0000-00-00 00:00:00',0),(2565,0,0,'H','2526','','',2565,0,0,'2025-10-31',2121,1717,0,0,1672,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2497,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 18:49:59','','0000-00-00 00:00:00',0),(2566,0,0,'H','2526','','',2566,0,0,'2025-10-31',2129,1725,0,0,1680,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2498,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 18:52:11','','0000-00-00 00:00:00',0),(2567,0,0,'H','2526','','P',2567,0,0,'2025-10-31',1936,1555,0,111,0,'A',20000.00,0.00,'7','KOTAK BANK','','9442','','0000-00-00','','',2616,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-31 18:54:52','vishal','2025-11-01 15:35:40',0),(2568,0,0,'H','2526','','',2568,0,0,'2025-10-31',2116,1713,0,0,1668,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',2499,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 18:56:45','','0000-00-00 00:00:00',0),(2569,0,0,'H','2526','','',2569,0,0,'2025-10-31',2083,1694,0,0,1649,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',2500,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 18:57:26','','0000-00-00 00:00:00',0),(2570,0,0,'H','2526','','',2570,0,0,'2025-10-31',2126,1722,0,0,1677,'B',400.00,0.00,'7','KOTAK BANK','','32206','','0000-00-00','scan','',2501,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 19:03:50','','0000-00-00 00:00:00',0),(2571,0,0,'H','2526','','P',2571,0,0,'2025-10-31',1988,1616,0,115,0,'A',34000.00,0.00,'CSH','','','','','0000-00-00','','',2502,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-31 19:05:00','vishal','2025-10-31 19:05:13',0),(2572,0,0,'H','2526','','',2572,0,0,'2025-10-31',2131,594,0,0,567,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2503,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-31 19:15:05','','0000-00-00 00:00:00',0),(2573,0,0,'H','2526','','',2573,0,0,'2025-10-31',2124,1720,0,0,1675,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',2504,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 19:23:28','','0000-00-00 00:00:00',0),(2574,0,0,'H','2526','','',2574,0,0,'2025-10-31',2132,1726,0,0,1681,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',2505,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 19:30:22','','0000-00-00 00:00:00',0),(2575,0,0,'H','2526','','',2575,0,0,'2025-10-31',2133,1727,0,0,1682,'B',500.00,0.00,'7','KOTAK MAHINDRA','','27257','','0000-00-00','scan ','',2506,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-31 19:40:47','','0000-00-00 00:00:00',0),(2576,0,0,'H','2526','','',2576,0,0,'2025-10-31',2131,594,0,0,567,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2507,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-10-31 20:06:05','','0000-00-00 00:00:00',0),(2577,0,0,'H','2526','','',2577,0,0,'2025-10-31',2117,1714,0,0,1669,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2508,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-10-31 20:07:25','','0000-00-00 00:00:00',0),(2578,0,0,'H','2526','','',2578,0,0,'2025-10-31',2130,255,0,0,240,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',2509,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-10-31 20:19:17','','0000-00-00 00:00:00',0),(2579,0,0,'H','2526','','',2579,0,0,'2025-10-31',2099,1705,0,0,1660,'D',-500.00,0.00,'CSH','','','','','2025-10-31','','',2510,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 20:28:51','','0000-00-00 00:00:00',0),(2580,0,0,'H','2526','','',2580,0,0,'2025-10-31',2099,1705,0,0,1660,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2511,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 20:31:27','','0000-00-00 00:00:00',0),(2581,0,0,'H','2526','','',2581,0,0,'2025-10-31',2134,1728,0,0,1683,'B',4900.00,0.00,'CSH','','','','','0000-00-00','','',2513,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-10-31 21:21:08','','0000-00-00 00:00:00',0),(2582,0,0,'H','2526','','P',2582,0,0,'2025-10-31',1888,1495,0,109,0,'A',3200.00,0.00,'7','hdfc bank','','5231','','0000-00-00','','',2514,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-10-31 21:44:00','vishal','2025-10-31 21:44:29',0),(2583,0,0,'H','2526','','',2583,0,0,'2025-11-01',2136,1730,0,0,1684,'B',1100.00,0.00,'7','HDFC BANK','','08576','','0000-00-00','scan','',2515,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-01 09:13:08','','0000-00-00 00:00:00',0),(2584,0,0,'H','2526','','',2584,0,0,'2025-11-01',2138,1732,0,0,1686,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2516,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 09:14:46','','0000-00-00 00:00:00',0),(2585,0,0,'H','2526','','',2585,0,0,'2025-11-01',2137,1731,0,0,1685,'B',1400.00,0.00,'7','KOTAK MAHINDRA','','17865','','0000-00-00','scan','',2517,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-01 09:15:32','','0000-00-00 00:00:00',0),(2586,0,0,'H','2526','','',2586,0,0,'2025-11-01',2139,1733,0,0,1687,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2518,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 09:17:06','','0000-00-00 00:00:00',0),(2587,0,0,'H','2526','','',2587,0,0,'2025-11-01',2140,1734,0,0,1688,'B',100.00,0.00,'7','BANK','','13004','','0000-00-00','scan','',2519,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-01 09:18:06','','0000-00-00 00:00:00',0),(2588,0,0,'H','2526','','',2588,0,0,'2025-11-01',2141,1735,0,0,1689,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2520,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-01 09:47:51','','0000-00-00 00:00:00',0),(2589,0,0,'H','2526','','',2589,0,0,'2025-11-01',2142,1736,0,0,1690,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2521,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 09:49:05','','0000-00-00 00:00:00',0),(2590,0,0,'H','2526','','',2590,0,0,'2025-11-01',2143,944,0,0,913,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2522,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 10:00:19','','0000-00-00 00:00:00',0),(2591,0,0,'H','2526','','',2591,0,0,'2025-11-01',2144,1697,0,0,1652,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',2523,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 10:05:24','','0000-00-00 00:00:00',0),(2592,0,0,'H','2526','','',2592,0,0,'2025-11-01',2145,1737,0,0,1691,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2524,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 10:13:52','','0000-00-00 00:00:00',0),(2593,0,0,'H','2526','','',2593,0,0,'2025-11-01',2146,1738,0,0,1692,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2525,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 10:20:26','','0000-00-00 00:00:00',0),(2594,0,0,'H','2526','','',2594,0,0,'2025-11-01',2147,1739,0,0,1693,'B',900.00,0.00,'7','sbi','','63833','','0000-00-00','scan','',2526,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 10:23:53','','0000-00-00 00:00:00',0),(2595,0,0,'H','2526','','',2595,0,0,'2025-11-01',2148,1740,0,0,1694,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2527,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-01 10:24:38','','0000-00-00 00:00:00',0),(2596,0,0,'H','2526','','',2596,0,0,'2025-11-01',2150,1741,0,0,1695,'B',500.00,0.00,'7','SBI BANK','','71718','','0000-00-00','scan','',2528,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 10:26:56','','0000-00-00 00:00:00',0),(2597,0,0,'H','2526','','',2597,0,0,'2025-11-01',2149,1652,0,0,1607,'B',4500.00,0.00,'7','icici','','71402','','0000-00-00','scan','',2529,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 10:31:38','','0000-00-00 00:00:00',0),(2598,0,0,'H','2526','','',2598,0,0,'2025-11-01',2151,1742,0,0,1696,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2530,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 10:34:16','','0000-00-00 00:00:00',0),(2599,0,0,'H','2526','','',2599,0,0,'2025-11-01',2153,1211,0,0,1172,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2531,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-01 10:37:11','','0000-00-00 00:00:00',0),(2600,0,0,'H','2526','','',2600,0,0,'2025-11-01',2152,1743,0,0,1697,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2532,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 10:37:18','','0000-00-00 00:00:00',0),(2601,0,0,'H','2526','','',2601,0,0,'2025-11-01',2154,1067,0,0,1033,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2533,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-01 10:38:05','','0000-00-00 00:00:00',0),(2602,0,0,'H','2526','','',2602,0,0,'2025-11-01',2155,1189,0,0,1149,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2534,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 10:39:12','','0000-00-00 00:00:00',0),(2603,0,0,'H','2526','','',2603,0,0,'2025-11-01',2156,831,0,0,800,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2535,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 10:39:22','','0000-00-00 00:00:00',0),(2604,0,0,'H','2526','','',2604,0,0,'2025-11-01',2157,1744,0,0,1698,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2536,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 10:47:01','','0000-00-00 00:00:00',0),(2605,0,0,'H','2526','','',2605,0,0,'2025-11-01',2160,1747,0,0,1701,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2537,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-01 10:48:52','','0000-00-00 00:00:00',0),(2606,0,0,'H','2526','','',2606,0,0,'2025-11-01',2158,1745,0,0,1699,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2538,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 10:49:02','','0000-00-00 00:00:00',0),(2607,0,0,'H','2526','','',2607,0,0,'2025-11-01',2159,1746,0,0,1700,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2539,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 10:49:08','','0000-00-00 00:00:00',0),(2608,0,0,'H','2526','','',2608,0,0,'2025-11-01',2161,1748,0,0,1702,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2540,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 10:50:21','','0000-00-00 00:00:00',0),(2609,0,0,'H','2526','','',2609,0,0,'2025-11-01',2163,1749,0,0,1703,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2541,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 10:52:03','','0000-00-00 00:00:00',0),(2610,0,0,'H','2526','','',2610,0,0,'2025-11-01',2162,1302,0,0,1261,'B',400.00,0.00,'7','IDFC','','53043','','0000-00-00','scan  ','',2542,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 10:52:18','','0000-00-00 00:00:00',0),(2611,0,0,'H','2526','','',2611,0,0,'2025-11-01',2164,1750,0,0,1704,'B',400.00,0.00,'7','axis bank','','23799','','0000-00-00','scan','',2543,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 10:56:38','','0000-00-00 00:00:00',0),(2612,0,0,'H','2526','','',2612,0,0,'2025-11-01',2161,1748,0,0,1702,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',2544,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 10:58:44','','0000-00-00 00:00:00',0),(2613,0,0,'H','2526','','',2613,0,0,'2025-11-01',2146,1738,0,0,1692,'B',4500.00,0.00,'7','kotak','','49936','','0000-00-00','scan','',2545,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 10:59:08','','0000-00-00 00:00:00',0),(2614,0,0,'H','2526','','',2614,0,0,'2025-11-01',2165,1107,0,0,1705,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2546,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 11:00:15','','0000-00-00 00:00:00',0),(2615,0,0,'H','2526','','',2615,0,0,'2025-11-01',2166,1751,0,0,1706,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2547,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 11:01:25','','0000-00-00 00:00:00',0),(2616,0,0,'H','2526','','',2616,0,0,'2025-11-01',2161,1748,0,0,1702,'D',-700.00,0.00,'CSH','','','','','2025-11-01','','',2548,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 11:02:05','','0000-00-00 00:00:00',0),(2617,0,0,'H','2526','','',2617,0,0,'2025-11-01',2161,1748,0,0,1702,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2549,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 11:02:58','','0000-00-00 00:00:00',0),(2618,0,0,'H','2526','','',2618,0,0,'2025-11-01',2139,1733,0,0,1687,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',2550,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 11:04:42','','0000-00-00 00:00:00',0),(2619,0,0,'H','2526','','',2619,0,0,'2025-11-01',2167,303,0,0,287,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2551,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 11:05:37','','0000-00-00 00:00:00',0),(2620,0,0,'H','2526','','',2620,0,0,'2025-11-01',2169,1134,0,0,1096,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2552,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 11:09:31','','0000-00-00 00:00:00',0),(2621,0,0,'H','2526','','',2621,0,0,'2025-11-01',2170,1753,0,0,1708,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2553,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 11:12:39','','0000-00-00 00:00:00',0),(2622,0,0,'H','2526','','',2622,0,0,'2025-11-01',2168,1752,0,0,1707,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2554,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 11:12:55','','0000-00-00 00:00:00',0),(2623,0,0,'H','2526','','',2623,0,0,'2025-11-01',2171,1754,0,0,1709,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2555,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 11:13:08','','0000-00-00 00:00:00',0),(2624,0,0,'H','2526','','',2624,0,0,'2025-11-01',2172,1152,0,0,1710,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2556,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 11:14:42','','0000-00-00 00:00:00',0),(2625,0,0,'H','2526','','',2625,0,0,'2025-11-01',2174,1756,0,0,1712,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2557,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 11:16:20','','0000-00-00 00:00:00',0),(2626,0,0,'H','2526','','',2626,0,0,'2025-11-01',2175,1757,0,0,1713,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2558,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 11:17:51','','0000-00-00 00:00:00',0),(2627,0,0,'H','2526','','',2627,0,0,'2025-11-01',2165,1107,0,0,1705,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2559,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 11:18:21','','0000-00-00 00:00:00',0),(2628,0,0,'H','2526','','',2628,0,0,'2025-11-01',2176,1758,0,0,1714,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2560,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 11:18:35','','0000-00-00 00:00:00',0),(2629,0,0,'H','2526','','',2629,0,0,'2025-11-01',2177,1759,0,0,1715,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2561,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 11:20:25','','0000-00-00 00:00:00',0),(2630,0,0,'H','2526','','',2630,0,0,'2025-11-01',2178,1760,0,0,1716,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2562,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 11:21:13','','0000-00-00 00:00:00',0),(2631,0,0,'H','2526','','',2631,0,0,'2025-11-01',2179,1761,0,0,1717,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2563,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 11:23:21','','0000-00-00 00:00:00',0),(2632,0,0,'H','2526','','',2632,0,0,'2025-11-01',2142,1736,0,0,1690,'B',5600.00,0.00,'7','icici','','45106','','0000-00-00','scan','',2564,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 11:25:21','','0000-00-00 00:00:00',0),(2633,0,0,'H','2526','','',2633,0,0,'2025-11-01',2180,1762,0,0,1718,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2565,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 11:26:26','','0000-00-00 00:00:00',0),(2634,0,0,'H','2526','','',2634,0,0,'2025-11-01',2181,1763,0,0,1719,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2566,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 11:32:13','','0000-00-00 00:00:00',0),(2635,0,0,'H','2526','','',2635,0,0,'2025-11-01',2174,1756,0,0,1712,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',2567,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 11:33:15','','0000-00-00 00:00:00',0),(2636,0,0,'H','2526','','',2636,0,0,'2025-11-01',2182,1172,0,0,1132,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2568,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 11:34:09','','0000-00-00 00:00:00',0),(2637,0,0,'H','2526','','',2637,0,0,'2025-11-01',2183,1296,0,0,1255,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2569,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 11:38:03','','0000-00-00 00:00:00',0),(2638,0,0,'H','2526','','',2638,0,0,'2025-11-01',2184,1764,0,0,1720,'B',500.00,0.00,'7','axis','','91117','','0000-00-00','scan','',2570,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 11:43:11','','0000-00-00 00:00:00',0),(2639,0,0,'H','2526','','',2639,0,0,'2025-11-01',2186,1765,0,0,1721,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2571,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 11:46:20','','0000-00-00 00:00:00',0),(2640,0,0,'H','2526','','',2640,0,0,'2025-11-01',2187,1766,0,0,1722,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2572,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 11:47:02','','0000-00-00 00:00:00',0),(2641,0,0,'H','2526','','',2641,0,0,'2025-11-01',2188,1767,0,0,1723,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2573,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 11:49:16','','0000-00-00 00:00:00',0),(2642,0,0,'H','2526','','',2642,0,0,'2025-11-01',2189,1768,0,0,1724,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',2574,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 11:57:17','','0000-00-00 00:00:00',0),(2643,0,0,'H','2526','','',2643,0,0,'2025-11-01',2190,1769,0,0,1725,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2575,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 12:00:39','','0000-00-00 00:00:00',0),(2644,0,0,'H','2526','','',2644,0,0,'2025-11-01',2191,1770,0,0,1726,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2577,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 12:04:27','','0000-00-00 00:00:00',0),(2645,0,0,'H','2526','','',2645,0,0,'2025-11-01',2192,397,0,0,376,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2578,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 12:08:41','','0000-00-00 00:00:00',0),(2646,0,0,'H','2526','','',2646,0,0,'2025-11-01',2179,1761,0,0,1717,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2579,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 12:09:08','','0000-00-00 00:00:00',0),(2647,0,0,'H','2526','','',2647,0,0,'2025-11-01',2185,1372,0,0,1332,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2580,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 12:11:22','','0000-00-00 00:00:00',0),(2648,0,0,'H','2526','','P',2648,0,0,'2025-11-01',1782,1456,0,108,0,'A',11000.00,0.00,'7','axis bank','','3455','','0000-00-00','','',2581,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-01 12:11:47','vishal','2025-11-01 12:12:09',0),(2649,0,0,'H','2526','','',2649,0,0,'2025-11-01',2193,1103,0,0,1727,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2582,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 12:17:38','','0000-00-00 00:00:00',0),(2650,0,0,'H','2526','','',2650,0,0,'2025-11-01',2194,1771,0,0,1728,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2583,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 12:18:08','','0000-00-00 00:00:00',0),(2651,0,0,'H','2526','','',2651,0,0,'2025-11-01',2196,1773,0,0,1729,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2584,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-01 12:22:05','','0000-00-00 00:00:00',0),(2652,0,0,'H','2526','','',2652,0,0,'2025-11-01',2197,1774,0,0,1730,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2585,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 12:23:48','','0000-00-00 00:00:00',0),(2653,0,0,'H','2526','','P',2653,0,0,'2025-11-01',2195,1772,0,121,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',3272,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-01 12:26:37','vishal','2025-11-08 09:27:43',0),(2654,0,0,'H','2526','','',2654,0,0,'2025-11-01',2175,1757,0,0,1713,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',2586,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 12:28:25','','0000-00-00 00:00:00',0),(2655,0,0,'H','2526','','',2655,0,0,'2025-11-01',2198,1775,0,0,1731,'B',900.00,0.00,'7','ujjivan small','','15592','','0000-00-00','scan','',2587,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 12:29:14','','0000-00-00 00:00:00',0),(2656,0,0,'H','2526','','',2656,0,0,'2025-11-01',2147,1739,0,0,1693,'B',5400.00,0.00,'CSH','','','','','0000-00-00','','',2588,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 12:34:25','','0000-00-00 00:00:00',0),(2657,0,0,'H','2526','','',2657,0,0,'2025-11-01',2199,1776,0,0,1732,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2590,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 12:35:22','','0000-00-00 00:00:00',0),(2658,0,0,'H','2526','','',2658,0,0,'2025-11-01',2194,1771,0,0,1728,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',2591,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 12:35:52','','0000-00-00 00:00:00',0),(2659,0,0,'H','2526','','',2659,0,0,'2025-11-01',2194,1771,0,0,1728,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',2592,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 12:35:56','','0000-00-00 00:00:00',0),(2660,0,0,'H','2526','','',2660,0,0,'2025-11-01',2176,1758,0,0,1714,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',2593,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 12:44:38','','0000-00-00 00:00:00',0),(2661,0,0,'H','2526','','',2661,0,0,'2025-11-01',2173,1755,0,0,1711,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',2594,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 12:46:57','','0000-00-00 00:00:00',0),(2662,0,0,'H','2526','','',2662,0,0,'2025-11-01',2200,1777,0,0,1733,'B',750.00,0.00,'7','CENTRAL BANK','','63758','','0000-00-00','scan','',2595,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 12:47:15','','0000-00-00 00:00:00',0),(2663,0,0,'H','2526','','P',2663,0,0,'2025-11-01',1727,1403,0,107,0,'A',12700.00,0.00,'CSH','','','','','0000-00-00','','',2604,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-01 12:49:25','vishal','2025-11-01 13:04:50',0),(2664,0,0,'H','2526','','',2664,0,0,'2025-11-01',2201,1778,0,0,1734,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2596,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 12:49:35','','0000-00-00 00:00:00',0),(2665,0,0,'H','2526','','',2665,0,0,'2025-11-01',2202,1779,0,0,1735,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2598,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 12:53:20','','0000-00-00 00:00:00',0),(2666,0,0,'H','2526','','',2666,0,0,'2025-11-01',2203,1780,0,0,1736,'B',900.00,0.00,'7','axis','','52524','','0000-00-00','scan','',2599,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 12:56:27','','0000-00-00 00:00:00',0),(2667,0,0,'H','2526','','',2667,0,0,'2025-11-01',2204,1781,0,0,1737,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2601,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 12:58:07','','0000-00-00 00:00:00',0),(2668,0,0,'H','2526','','',2668,0,0,'2025-11-01',2205,1782,0,0,1738,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2602,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 12:59:18','','0000-00-00 00:00:00',0),(2669,0,0,'H','2526','','',2669,0,0,'2025-11-01',2169,1134,0,0,1096,'D',-500.00,0.00,'CSH','','','','','2025-11-01','','',2605,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 13:46:44','','0000-00-00 00:00:00',0),(2670,0,0,'H','2526','','',2670,0,0,'2025-11-01',2169,1134,0,0,1096,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',2607,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 13:47:34','','0000-00-00 00:00:00',0),(2671,0,0,'H','2526','','',2671,0,0,'2025-11-01',2186,1765,0,0,1721,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',2608,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 13:53:53','','0000-00-00 00:00:00',0),(2672,0,0,'H','2526','','',2672,0,0,'2025-11-01',2203,1780,0,0,1736,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',2609,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 13:56:11','','0000-00-00 00:00:00',0),(2673,0,0,'H','2526','','',2673,0,0,'2025-11-01',2206,769,0,0,738,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2610,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 14:20:00','','0000-00-00 00:00:00',0),(2674,0,0,'H','2526','','',2674,0,0,'2025-11-01',2198,1775,0,0,1731,'B',3000.00,0.00,'7','ujjivan bank','','71053','','0000-00-00','scan','',2611,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 14:37:09','','0000-00-00 00:00:00',0),(2675,0,0,'H','2526','','',2675,0,0,'2025-11-01',2206,769,0,0,738,'D',-400.00,0.00,'CSH','','','','','2025-11-01','','',2612,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-01 15:01:51','','0000-00-00 00:00:00',0),(2676,0,0,'H','2526','','',2676,0,0,'2025-11-01',2206,769,0,0,738,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',2613,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-01 15:02:36','','0000-00-00 00:00:00',0),(2677,0,0,'H','2526','','P',2677,0,0,'2025-11-01',414,392,0,25,0,'A',16000.00,0.00,'7','icici bank','','80415','','0000-00-00','','',2614,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-01 15:08:40','vishal','2025-11-01 15:09:18',0),(2678,0,0,'H','2526','','P',2678,0,0,'2025-11-01',1711,1383,0,104,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',2877,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-01 15:14:51','vishal','2025-11-04 17:55:33',0),(2679,0,0,'H','2526','','P',2679,0,0,'2025-11-01',1936,1555,0,111,0,'A',13450.00,0.00,'7','KOTAK BANK','','7942','','0000-00-00','','',2616,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-01 15:35:28','vishal','2025-11-01 15:35:40',0),(2680,0,0,'H','2526','','P',2680,0,0,'2025-11-01',2135,1729,0,120,0,'A',35000.00,0.00,'2','bob bank','','6669','','0000-00-00','','',3209,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-01 16:07:26','riya','2025-11-07 13:09:53',0),(2681,0,0,'H','2526','','',2681,0,0,'2025-11-01',2207,1783,0,0,1739,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2617,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 16:27:11','','0000-00-00 00:00:00',0),(2682,0,0,'H','2526','','',2682,0,0,'2025-11-01',2208,1784,0,0,1740,'B',3000.00,0.00,'7','AXIS BANK','','78793','','0000-00-00','scan ','',2618,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-01 17:12:21','','0000-00-00 00:00:00',0),(2683,0,0,'H','2526','','',2683,0,0,'2025-11-01',2210,1785,0,0,1741,'B',500.00,0.00,'7','boi','','85604','','0000-00-00','scan  ','',2619,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 17:36:12','','0000-00-00 00:00:00',0),(2684,0,0,'H','2526','','',2684,0,0,'2025-11-01',2211,1786,0,0,1742,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2620,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-01 18:09:01','','0000-00-00 00:00:00',0),(2685,0,0,'H','2526','','',2685,0,0,'2025-11-01',2212,1787,0,0,1743,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2621,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 18:09:21','','0000-00-00 00:00:00',0),(2686,0,0,'H','2526','','P',2686,0,0,'2025-11-01',2214,1788,0,122,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',2645,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-01 18:20:19','riya','2025-11-02 18:08:09',0),(2687,0,0,'H','2526','','',2687,0,0,'2025-11-01',2215,380,0,0,364,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2622,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 18:20:52','','0000-00-00 00:00:00',0),(2688,0,0,'H','2526','','',2688,0,0,'2025-11-01',2209,1036,0,0,1004,'B',100.00,0.00,'7','hdfc','','95040','','0000-00-00','scan','',2623,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-01 18:25:04','','0000-00-00 00:00:00',0),(2689,0,0,'H','2526','','',2689,0,0,'2025-11-01',2216,932,0,0,901,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2624,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-01 18:41:02','','0000-00-00 00:00:00',0),(2690,0,0,'H','2526','','',2690,0,0,'2025-11-01',2217,1346,0,0,1307,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2625,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-01 19:16:08','','0000-00-00 00:00:00',0),(2691,0,0,'H','2526','','',2691,0,0,'2025-11-01',2218,1789,0,0,1744,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2626,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-01 19:19:44','','0000-00-00 00:00:00',0),(2692,0,0,'H','2526','','',2692,0,0,'2025-11-01',2216,932,0,0,901,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2627,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-01 19:47:39','','0000-00-00 00:00:00',0),(2693,0,0,'H','2526','','',2693,0,0,'2025-11-01',2220,1791,0,0,1745,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2628,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-01 20:10:07','','0000-00-00 00:00:00',0),(2694,0,0,'H','2526','','',2694,0,0,'2025-11-01',2221,1792,0,0,1746,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2629,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 20:36:36','','0000-00-00 00:00:00',0),(2695,0,0,'H','2526','','',2695,0,0,'2025-11-01',2220,1791,0,0,1745,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2630,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 20:38:40','','0000-00-00 00:00:00',0),(2696,0,0,'H','2526','','',2696,0,0,'2025-11-01',2207,1783,0,0,1739,'B',800.00,0.00,'7','CENTRAL BANK','','88077','','0000-00-00','SCAN','',2631,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-01 20:50:24','','0000-00-00 00:00:00',0),(2697,0,0,'H','2526','','',2697,0,0,'2025-11-02',2222,1456,0,0,1747,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',2632,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-02 09:40:41','','0000-00-00 00:00:00',0),(2698,0,0,'H','2526','','',2698,0,0,'2025-11-02',2222,1456,0,0,1747,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2633,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-02 09:41:41','','0000-00-00 00:00:00',0),(2699,0,0,'H','2526','','P',2699,0,0,'2025-11-02',2065,1680,0,119,0,'A',20730.00,0.00,'CSH','','','','','0000-00-00','','',2635,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-02 10:37:16','riya','2025-11-02 10:37:55',0),(2700,0,0,'H','2526','','P',2700,0,0,'2025-11-02',2027,1647,0,118,0,'A',31800.00,0.00,'7','BANK OF INDIA','','567255546891','','0000-00-00','UPI','',2637,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-02 11:26:24','riya','2025-11-02 11:26:56',0),(2701,0,0,'H','2526','','',2701,0,0,'2025-11-02',2223,1714,0,0,1669,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2638,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-02 11:33:50','','0000-00-00 00:00:00',0),(2702,0,0,'H','2526','','P',2702,0,0,'2025-11-02',1723,1408,0,105,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',2735,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-02 12:37:02','vishal','2025-11-03 14:22:42',0),(2703,0,0,'H','2526','','',2703,0,0,'2025-11-02',2224,1793,0,0,1748,'B',5000.00,0.00,'CSH','','','','','0000-00-00','','',2641,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-02 12:45:54','','0000-00-00 00:00:00',0),(2704,0,0,'H','2526','','',2704,0,0,'2025-11-02',2225,1794,0,0,1749,'B',1850.00,0.00,'CSH','','','','','0000-00-00','','',2642,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-02 12:56:46','','0000-00-00 00:00:00',0),(2705,0,0,'H','2526','','P',2705,0,0,'2025-11-02',2226,1795,0,124,0,'A',10000.00,0.00,'7','SBI','','015693134113','','0000-00-00','UPI','',2796,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-02 13:41:34','vishal','2025-11-03 19:22:12',0),(2706,0,0,'H','2526','','P',2706,0,0,'2025-11-02',2195,1772,0,121,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',3272,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-02 16:10:05','vishal','2025-11-08 09:27:43',0),(2707,0,0,'H','2526','','P',2707,0,0,'2025-11-02',2214,1788,0,122,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',2645,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-02 18:07:46','riya','2025-11-02 18:08:09',0),(2708,0,0,'H','2526','','',2708,0,0,'2025-11-03',2227,1108,0,0,1068,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',2647,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-03 09:06:35','','0000-00-00 00:00:00',0),(2709,0,0,'H','2526','','',2709,0,0,'2025-11-03',2228,1796,0,0,1750,'B',1000.00,0.00,'7','SBI BANK','','000000','','0000-00-00','SCAN','',2648,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-03 09:10:02','','0000-00-00 00:00:00',0),(2710,0,0,'H','2526','','',2710,0,0,'2025-11-03',2229,1797,0,0,1751,'B',500.00,0.00,'7','sbi','','36928','','0000-00-00','scan','',2649,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 09:10:10','','0000-00-00 00:00:00',0),(2711,0,0,'H','2526','','',2711,0,0,'2025-11-03',2230,1798,0,0,1752,'B',500.00,0.00,'7','sbi','','36928','','0000-00-00','scan','',2650,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 09:11:44','','0000-00-00 00:00:00',0),(2712,0,0,'H','2526','','',2712,0,0,'2025-11-03',2231,1799,0,0,1753,'B',2000.00,0.00,'7','SBI BANK','','39969','','0000-00-00','SCAN','',2651,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-03 09:15:28','','0000-00-00 00:00:00',0),(2713,0,0,'H','2526','','',2713,0,0,'2025-11-03',2232,1346,0,0,1307,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2652,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-03 09:17:20','','0000-00-00 00:00:00',0),(2714,0,0,'H','2526','','',2714,0,0,'2025-11-03',2233,1454,0,0,1414,'B',1050.00,0.00,'CSH','','','','','0000-00-00','','',2653,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-03 09:18:46','','0000-00-00 00:00:00',0),(2715,0,0,'H','2526','','',2715,0,0,'2025-11-03',2234,1456,0,0,1747,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',2654,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-03 09:19:36','','0000-00-00 00:00:00',0),(2716,0,0,'H','2526','','',2716,0,0,'2025-11-03',2234,1456,0,0,1747,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2655,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 09:24:08','','0000-00-00 00:00:00',0),(2717,0,0,'H','2526','','',2717,0,0,'2025-11-03',2235,1042,0,0,1009,'B',1650.00,0.00,'7','SBI BANK','','28073','','0000-00-00','SCAN','',2656,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-03 09:24:18','','0000-00-00 00:00:00',0),(2718,0,0,'H','2526','','',2718,0,0,'2025-11-03',2236,1800,0,0,1754,'B',1300.00,0.00,'7','sbi','','75019','','0000-00-00','scan','',2657,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 09:24:55','','0000-00-00 00:00:00',0),(2719,0,0,'H','2526','','',2719,0,0,'2025-11-03',2237,1801,0,0,1755,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',2658,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-03 09:27:09','','0000-00-00 00:00:00',0),(2720,0,0,'H','2526','','',2720,0,0,'2025-11-03',2238,1802,0,0,1756,'B',500.00,0.00,'7','axis bank','','36715','','0000-00-00','scan     ','',2659,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 09:52:37','','0000-00-00 00:00:00',0),(2721,0,0,'H','2526','','',2721,0,0,'2025-11-03',2239,1803,0,0,1757,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2660,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 09:53:04','','0000-00-00 00:00:00',0),(2722,0,0,'H','2526','','P',2722,0,0,'2025-11-03',2240,1763,0,125,0,'A',15000.00,0.00,'7','sbi','','15816','','0000-00-00','SCAN','',2850,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-03 10:00:07','vishal','2025-11-04 12:07:28',0),(2723,0,0,'H','2526','','',2723,0,0,'2025-11-03',2241,1804,0,0,1758,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2661,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 10:00:50','','0000-00-00 00:00:00',0),(2724,0,0,'H','2526','','',2724,0,0,'2025-11-03',2242,1265,0,0,1224,'B',300.00,0.00,'7','ICICI BANK','','42322','','0000-00-00','scan ','',2662,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-03 10:12:32','','0000-00-00 00:00:00',0),(2725,0,0,'H','2526','','',2725,0,0,'2025-11-03',2243,1242,0,0,1203,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2663,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 10:12:50','','0000-00-00 00:00:00',0),(2726,0,0,'H','2526','','',2726,0,0,'2025-11-03',2244,1264,0,0,1223,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2664,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 10:16:31','','0000-00-00 00:00:00',0),(2727,0,0,'H','2526','','',2727,0,0,'2025-11-03',2245,1805,0,0,1759,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2665,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 10:21:20','','0000-00-00 00:00:00',0),(2728,0,0,'H','2526','','',2728,0,0,'2025-11-03',2247,1806,0,0,1760,'B',500.00,0.00,'7','HDFC BANK','','98551','','0000-00-00','scan','',2666,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 10:36:59','','0000-00-00 00:00:00',0),(2729,0,0,'H','2526','','',2729,0,0,'2025-11-03',2248,1807,0,0,1761,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2667,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 10:39:01','','0000-00-00 00:00:00',0),(2730,0,0,'H','2526','','',2730,0,0,'2025-11-03',2251,1810,0,0,1764,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2668,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 10:44:54','','0000-00-00 00:00:00',0),(2731,0,0,'H','2526','','',2731,0,0,'2025-11-03',2252,1811,0,0,1765,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2670,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 10:48:47','','0000-00-00 00:00:00',0),(2732,0,0,'H','2526','','',2732,0,0,'2025-11-03',2247,1806,0,0,1760,'D',-500.00,0.00,'7','hdfc','','98551','','2025-11-03','SCAN                          ','',2669,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 10:49:15','','0000-00-00 00:00:00',0),(2733,0,0,'H','2526','','',2733,0,0,'2025-11-03',2253,1812,0,0,1766,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2671,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 10:49:16','','0000-00-00 00:00:00',0),(2734,0,0,'H','2526','','',2734,0,0,'2025-11-03',2254,1813,0,0,1767,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2672,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 10:51:22','','0000-00-00 00:00:00',0),(2735,0,0,'H','2526','','',2735,0,0,'2025-11-03',2257,1323,0,0,1284,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2673,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 10:56:45','','0000-00-00 00:00:00',0),(2736,0,0,'H','2526','','',2736,0,0,'2025-11-03',2258,1815,0,0,1769,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2674,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 10:58:23','','0000-00-00 00:00:00',0),(2737,0,0,'H','2526','','',2737,0,0,'2025-11-03',2259,1816,0,0,1770,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2675,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 10:59:48','','0000-00-00 00:00:00',0),(2738,0,0,'H','2526','','',2738,0,0,'2025-11-03',2260,1817,0,0,1771,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2676,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 11:01:17','','0000-00-00 00:00:00',0),(2739,0,0,'H','2526','','',2739,0,0,'2025-11-03',2261,1818,0,0,1772,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2677,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 11:01:43','','0000-00-00 00:00:00',0),(2740,0,0,'H','2526','','',2740,0,0,'2025-11-03',2262,1819,0,0,1773,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2678,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 11:03:30','','0000-00-00 00:00:00',0),(2741,0,0,'H','2526','','',2741,0,0,'2025-11-03',2263,1820,0,0,1774,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2679,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-03 11:06:15','','0000-00-00 00:00:00',0),(2742,0,0,'H','2526','','',2742,0,0,'2025-11-03',2256,1814,0,0,1768,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2680,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 11:06:40','','0000-00-00 00:00:00',0),(2743,0,0,'H','2526','','',2743,0,0,'2025-11-03',2265,1821,0,0,1775,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2681,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-03 11:08:57','','0000-00-00 00:00:00',0),(2744,0,0,'H','2526','','',2744,0,0,'2025-11-03',2266,1253,0,0,1776,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2682,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 11:09:21','','0000-00-00 00:00:00',0),(2745,0,0,'H','2526','','',2745,0,0,'2025-11-03',2253,1812,0,0,1766,'B',700.00,0.00,'7','HDFC BANK','','9919','','0000-00-00','scan','',2684,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 11:15:34','','0000-00-00 00:00:00',0),(2746,0,0,'H','2526','','',2746,0,0,'2025-11-03',2267,1822,0,0,1777,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2685,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-03 11:16:01','','0000-00-00 00:00:00',0),(2747,0,0,'H','2526','','',2747,0,0,'2025-11-03',2268,1823,0,0,1778,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2686,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 11:16:03','','0000-00-00 00:00:00',0),(2748,0,0,'H','2526','','',2748,0,0,'2025-11-03',2250,1809,0,0,1763,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2687,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 11:16:38','','0000-00-00 00:00:00',0),(2749,0,0,'H','2526','','',2749,0,0,'2025-11-03',2269,1338,0,0,1299,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2688,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 11:18:15','','0000-00-00 00:00:00',0),(2750,0,0,'H','2526','','',2750,0,0,'2025-11-03',2271,1824,0,0,1779,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2689,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 11:21:29','','0000-00-00 00:00:00',0),(2751,0,0,'H','2526','','',2751,0,0,'2025-11-03',2266,1253,0,0,1776,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',2690,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-03 11:23:49','','0000-00-00 00:00:00',0),(2752,0,0,'H','2526','','',2752,0,0,'2025-11-03',2241,1804,0,0,1758,'B',4600.00,0.00,'7','sbi','','21539','','0000-00-00','scan','',2691,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 11:24:39','','0000-00-00 00:00:00',0),(2753,0,0,'H','2526','','',2753,0,0,'2025-11-03',2255,1106,0,0,1067,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',2692,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-03 11:27:16','','0000-00-00 00:00:00',0),(2754,0,0,'H','2526','','',2754,0,0,'2025-11-03',2272,1825,0,0,1780,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2693,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 11:30:27','','0000-00-00 00:00:00',0),(2755,0,0,'H','2526','','',2755,0,0,'2025-11-03',2274,1827,0,0,1782,'B',400.00,0.00,'7','KOTAK BANK','','14758','','0000-00-00','scan','',2694,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 11:35:31','','0000-00-00 00:00:00',0),(2756,0,0,'H','2526','','',2756,0,0,'2025-11-03',2276,1828,0,0,1783,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2695,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 11:36:28','','0000-00-00 00:00:00',0),(2757,0,0,'H','2526','','',2757,0,0,'2025-11-03',2253,1812,0,0,1766,'D',-700.00,0.00,'CSH','','','','','2025-11-03','','',2683,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 11:42:33','','0000-00-00 00:00:00',0),(2758,0,0,'H','2526','','',2758,0,0,'2025-11-03',2277,1714,0,0,1669,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2696,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 11:47:14','','0000-00-00 00:00:00',0),(2759,0,0,'H','2526','','',2759,0,0,'2025-11-03',2278,1829,0,0,1784,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2697,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 11:54:10','','0000-00-00 00:00:00',0),(2760,0,0,'H','2526','','',2760,0,0,'2025-11-03',2245,1805,0,0,1759,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',2698,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 11:56:01','','0000-00-00 00:00:00',0),(2761,0,0,'H','2526','','',2761,0,0,'2025-11-03',2279,1830,0,0,1785,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2699,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 11:59:02','','0000-00-00 00:00:00',0),(2762,0,0,'H','2526','','',2762,0,0,'2025-11-03',2254,1813,0,0,1767,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',2700,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 12:03:00','','0000-00-00 00:00:00',0),(2763,0,0,'H','2526','','',2763,0,0,'2025-11-03',2280,1831,0,0,1786,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2701,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 12:04:44','','0000-00-00 00:00:00',0),(2764,0,0,'H','2526','','',2764,0,0,'2025-11-03',2281,1095,0,0,1125,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2702,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-03 12:05:58','','0000-00-00 00:00:00',0),(2765,0,0,'H','2526','','',2765,0,0,'2025-11-03',2282,1460,0,0,1419,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2703,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 12:06:23','','0000-00-00 00:00:00',0),(2766,0,0,'H','2526','','',2766,0,0,'2025-11-03',2284,1833,0,0,1788,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2704,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 12:08:10','','0000-00-00 00:00:00',0),(2767,0,0,'H','2526','','',2767,0,0,'2025-11-03',2270,539,0,0,514,'B',700.00,0.00,'CRD','HDFC','','71659','','0000-00-00','CARD','',2705,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-03 12:09:49','','0000-00-00 00:00:00',0),(2768,0,0,'H','2526','','P',2768,0,0,'2025-11-03',2264,1703,0,126,0,'A',10000.00,0.00,'7','icici bank','','1499','','0000-00-00','','',2907,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-03 12:11:25','vishal','2025-11-04 19:36:19',0),(2769,0,0,'H','2526','','',2769,0,0,'2025-11-03',2285,1834,0,0,1789,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2706,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 12:14:11','','0000-00-00 00:00:00',0),(2770,0,0,'H','2526','','',2770,0,0,'2025-11-03',2286,1835,0,0,1790,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2707,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 12:17:26','','0000-00-00 00:00:00',0),(2771,0,0,'H','2526','','',2771,0,0,'2025-11-03',2287,1836,0,0,1791,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2709,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-03 12:18:42','','0000-00-00 00:00:00',0),(2772,0,0,'H','2526','','',2772,0,0,'2025-11-03',2258,1815,0,0,1769,'D',-900.00,0.00,'CSH','','','','','2025-11-03','','',2708,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 12:18:55','','0000-00-00 00:00:00',0),(2773,0,0,'H','2526','','',2773,0,0,'2025-11-03',2280,1831,0,0,1786,'D',-700.00,0.00,'CSH','','','','','2025-11-03','','',2710,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 12:22:49','','0000-00-00 00:00:00',0),(2774,0,0,'H','2526','','',2774,0,0,'2025-11-03',2288,1837,0,0,1792,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2711,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-03 12:23:17','','0000-00-00 00:00:00',0),(2775,0,0,'H','2526','','',2775,0,0,'2025-11-03',2289,1838,0,0,1793,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2712,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-03 12:28:39','','0000-00-00 00:00:00',0),(2776,0,0,'H','2526','','',2776,0,0,'2025-11-03',2290,1201,0,0,1162,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2713,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-03 12:30:00','','0000-00-00 00:00:00',0),(2777,0,0,'H','2526','','',2777,0,0,'2025-11-03',2291,1839,0,0,1794,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2714,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 12:30:07','','0000-00-00 00:00:00',0),(2778,0,0,'H','2526','','',2778,0,0,'2025-11-03',2292,1840,0,0,1795,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2717,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-03 12:34:30','','0000-00-00 00:00:00',0),(2779,0,0,'H','2526','','',2779,0,0,'2025-11-03',2293,1841,0,0,1796,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2718,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 12:34:58','','0000-00-00 00:00:00',0),(2780,0,0,'H','2526','','',2780,0,0,'2025-11-03',2294,1842,0,0,1797,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',2719,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 12:37:26','','0000-00-00 00:00:00',0),(2781,0,0,'H','2526','','',2781,0,0,'2025-11-03',2295,1843,0,0,1798,'B',400.00,0.00,'7','kotak','','14758','','0000-00-00','scan','',2720,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-03 12:38:44','','0000-00-00 00:00:00',0),(2782,0,0,'H','2526','','',2782,0,0,'2025-11-03',2279,1830,0,0,1785,'D',-900.00,0.00,'CSH','','','','','2025-11-03','','',2721,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 12:44:11','','0000-00-00 00:00:00',0),(2783,0,0,'H','2526','','',2783,0,0,'2025-11-03',2279,1830,0,0,1785,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',2723,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 12:44:48','','0000-00-00 00:00:00',0),(2784,0,0,'H','2526','','',2784,0,0,'2025-11-03',2296,1844,0,0,1799,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2724,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 12:46:21','','0000-00-00 00:00:00',0),(2785,0,0,'H','2526','','',2785,0,0,'2025-11-03',2297,1845,0,0,1800,'B',500.00,0.00,'7','hdfc','','64910','','0000-00-00','SCAN','',2725,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 12:58:48','','0000-00-00 00:00:00',0),(2786,0,0,'H','2526','','',2786,0,0,'2025-11-03',2268,1823,0,0,1778,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',2726,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 13:00:59','','0000-00-00 00:00:00',0),(2787,0,0,'H','2526','','',2787,0,0,'2025-11-03',2292,1840,0,0,1795,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2727,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-03 13:01:36','','0000-00-00 00:00:00',0),(2788,0,0,'H','2526','','P',2788,0,0,'2025-11-03',2298,1846,0,127,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',3204,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-03 13:07:36','riya','2025-11-07 12:29:44',0),(2789,0,0,'H','2526','','',2789,0,0,'2025-11-03',2265,1821,0,0,1775,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',2728,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 13:08:56','','0000-00-00 00:00:00',0),(2790,0,0,'H','2526','','P',2790,0,0,'2025-11-03',1940,1573,0,112,0,'A',18800.00,0.00,'7','BOB BANK','','60969','','0000-00-00','','',2729,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-03 13:18:50','vishal','2025-11-03 13:19:08',0),(2791,0,0,'H','2526','','',2791,0,0,'2025-11-03',2299,1847,0,0,1801,'B',500.00,0.00,'7','HDFC','','40310','','0000-00-00','scan ','',2730,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-03 13:29:30','','0000-00-00 00:00:00',0),(2792,0,0,'H','2526','','',2792,0,0,'2025-11-03',2299,1847,0,0,1801,'B',400.00,0.00,'7','HDFC','','68159','','0000-00-00','scan ','',2731,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-03 13:33:18','','0000-00-00 00:00:00',0),(2793,0,0,'H','2526','','P',2793,0,0,'2025-11-03',1941,1580,0,113,0,'A',17000.00,0.00,'CSH','','','','','0000-00-00','','',2732,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-03 13:46:48','vishal','2025-11-03 13:47:09',0),(2794,0,0,'H','2526','','',2794,0,0,'2025-11-03',2300,1848,0,0,1802,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2733,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-03 14:05:46','','0000-00-00 00:00:00',0),(2795,0,0,'H','2526','','',2795,0,0,'2025-11-03',2294,1842,0,0,1797,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',2734,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 14:18:47','','0000-00-00 00:00:00',0),(2796,0,0,'H','2526','','P',2796,0,0,'2025-11-03',1723,1408,0,105,0,'A',58400.00,0.00,'CSH','','','','','0000-00-00','','',2735,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-03 14:21:39','vishal','2025-11-03 14:22:42',0),(2797,0,0,'H','2526','','',2797,0,0,'2025-11-03',2301,1849,0,0,1803,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2736,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-03 14:29:02','','0000-00-00 00:00:00',0),(2798,0,0,'H','2526','','',2798,0,0,'2025-11-03',2302,1327,0,0,1288,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',2737,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-03 15:01:22','','0000-00-00 00:00:00',0),(2799,0,0,'H','2526','','',2799,0,0,'2025-11-03',2303,1850,0,0,1804,'B',1100.00,0.00,'7','INDUSLAND BANK','','28834','','0000-00-00','scan','',2738,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-03 15:10:08','','0000-00-00 00:00:00',0),(2800,0,0,'H','2526','','',2800,0,0,'2025-11-03',2304,1851,0,0,1805,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2739,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 16:15:40','','0000-00-00 00:00:00',0),(2801,0,0,'H','2526','','',2801,0,0,'2025-11-03',2305,1852,0,0,1806,'B',900.00,0.00,'7','hdfc','','17265','','0000-00-00','SCAN','',2740,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 16:23:33','','0000-00-00 00:00:00',0),(2802,0,0,'H','2526','','',2802,0,0,'2025-11-03',2306,1853,0,0,1807,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2741,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 16:27:35','','0000-00-00 00:00:00',0),(2803,0,0,'H','2526','','',2803,0,0,'2025-11-03',2307,1011,0,0,978,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2742,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 16:46:31','','0000-00-00 00:00:00',0),(2804,0,0,'H','2526','','',2804,0,0,'2025-11-03',2308,1854,0,0,1808,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2743,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 17:04:10','','0000-00-00 00:00:00',0),(2805,0,0,'H','2526','','',2805,0,0,'2025-11-03',2309,1855,0,0,1809,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2744,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 17:08:08','','0000-00-00 00:00:00',0),(2806,0,0,'H','2526','','',2806,0,0,'2025-11-03',2310,1856,0,0,1810,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2745,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 17:09:26','','0000-00-00 00:00:00',0),(2807,0,0,'H','2526','','',2807,0,0,'2025-11-03',2311,1857,0,0,1811,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2746,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 17:12:34','','0000-00-00 00:00:00',0),(2808,0,0,'H','2526','','',2808,0,0,'2025-11-03',2312,1858,0,0,1812,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2747,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 17:15:08','','0000-00-00 00:00:00',0),(2809,0,0,'H','2526','','',2809,0,0,'2025-11-03',2313,1859,0,0,1813,'B',500.00,0.00,'7','hdfc','','81864','','0000-00-00','SCAN','',2748,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 17:18:44','','0000-00-00 00:00:00',0),(2810,0,0,'H','2526','','',2810,0,0,'2025-11-03',2305,1852,0,0,1806,'B',4000.00,0.00,'7','hdfc','','53852','','0000-00-00','SCAN','',2749,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 17:21:44','','0000-00-00 00:00:00',0),(2811,0,0,'H','2526','','',2811,0,0,'2025-11-03',2314,1860,0,0,1814,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2750,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 17:24:41','','0000-00-00 00:00:00',0),(2812,0,0,'H','2526','','',2812,0,0,'2025-11-03',2308,1854,0,0,1808,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',2751,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 17:26:57','','0000-00-00 00:00:00',0),(2813,0,0,'H','2526','','',2813,0,0,'2025-11-03',2316,1861,0,0,1815,'B',900.00,0.00,'7','axis','','89341','','0000-00-00','SCAN','',2752,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 17:45:45','','0000-00-00 00:00:00',0),(2814,0,0,'H','2526','','',2814,0,0,'2025-11-03',2312,1858,0,0,1812,'D',-700.00,0.00,'CSH','','','','','2025-11-03','','',2753,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 17:47:15','','0000-00-00 00:00:00',0),(2815,0,0,'H','2526','','',2815,0,0,'2025-11-03',2312,1858,0,0,1812,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2754,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 17:48:26','','0000-00-00 00:00:00',0),(2816,0,0,'H','2526','','',2816,0,0,'2025-11-03',2317,1862,0,0,1816,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2755,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 17:52:25','','0000-00-00 00:00:00',0),(2817,0,0,'H','2526','','',2817,0,0,'2025-11-03',2318,1517,0,0,1476,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2756,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 17:56:23','','0000-00-00 00:00:00',0),(2818,0,0,'H','2526','','',2818,0,0,'2025-11-03',2319,1863,0,0,1817,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2757,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 18:02:46','','0000-00-00 00:00:00',0),(2819,0,0,'H','2526','','',2819,0,0,'2025-11-03',2320,553,0,0,527,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2758,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 18:03:19','','0000-00-00 00:00:00',0),(2820,0,0,'H','2526','','',2820,0,0,'2025-11-03',2321,1864,0,0,1818,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2759,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 18:04:41','','0000-00-00 00:00:00',0),(2821,0,0,'H','2526','','P',2821,0,0,'2025-11-03',1995,1245,0,116,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',2765,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-03 18:05:32','vishal','2025-11-03 18:11:12',0),(2822,0,0,'H','2526','','',2822,0,0,'2025-11-03',2322,1865,0,0,1819,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2760,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 18:06:01','','0000-00-00 00:00:00',0),(2823,0,0,'H','2526','','',2823,0,0,'2025-11-03',2323,1866,0,0,1820,'B',500.00,0.00,'7','SBI','','52253','','0000-00-00','SCAN','',2761,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 18:08:37','','0000-00-00 00:00:00',0),(2824,0,0,'H','2526','','',2824,0,0,'2025-11-03',2324,1524,0,0,1483,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2762,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-03 18:09:57','','0000-00-00 00:00:00',0),(2825,0,0,'H','2526','','',2825,0,0,'2025-11-03',2325,1867,0,0,1821,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2763,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 18:10:15','','0000-00-00 00:00:00',0),(2826,0,0,'H','2526','','',2826,0,0,'2025-11-03',2327,1869,0,0,1823,'B',400.00,0.00,'7','rajkot nagrik','','49216','','0000-00-00','scan','',2766,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 18:12:24','','0000-00-00 00:00:00',0),(2827,0,0,'H','2526','','',2827,0,0,'2025-11-03',2328,1870,0,0,1824,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2767,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 18:12:32','','0000-00-00 00:00:00',0),(2828,0,0,'H','2526','','',2828,0,0,'2025-11-03',2321,1864,0,0,1818,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2768,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 18:14:04','','0000-00-00 00:00:00',0),(2829,0,0,'H','2526','','',2829,0,0,'2025-11-03',2319,1863,0,0,1817,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2769,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 18:14:42','','0000-00-00 00:00:00',0),(2830,0,0,'H','2526','','',2830,0,0,'2025-11-03',2316,1861,0,0,1815,'B',4000.00,0.00,'7','axis','','93538','','0000-00-00','SCAN','',2770,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 18:15:28','','0000-00-00 00:00:00',0),(2831,0,0,'H','2526','','',2831,0,0,'2025-11-03',2330,344,0,0,328,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2771,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 18:19:17','','0000-00-00 00:00:00',0),(2832,0,0,'H','2526','','',2832,0,0,'2025-11-03',2331,1871,0,0,1825,'B',900.00,0.00,'7','hdfc','','30963','','0000-00-00','SCAN','',2772,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 18:21:15','','0000-00-00 00:00:00',0),(2833,0,0,'H','2526','','',2833,0,0,'2025-11-03',2326,1868,0,0,1822,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2773,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-03 18:22:21','','0000-00-00 00:00:00',0),(2834,0,0,'H','2526','','',2834,0,0,'2025-11-03',2332,1872,0,0,1826,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2774,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-03 18:22:38','','0000-00-00 00:00:00',0),(2835,0,0,'H','2526','','',2835,0,0,'2025-11-03',2333,1873,0,0,1827,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2775,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 18:23:52','','0000-00-00 00:00:00',0),(2836,0,0,'H','2526','','',2836,0,0,'2025-11-03',2334,1064,0,0,1030,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2776,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 18:25:23','','0000-00-00 00:00:00',0),(2837,0,0,'H','2526','','',2837,0,0,'2025-11-03',2335,1874,0,0,1828,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2777,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 18:28:38','','0000-00-00 00:00:00',0),(2838,0,0,'H','2526','','',2838,0,0,'2025-11-03',2338,1877,0,0,1831,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2778,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 18:31:30','','0000-00-00 00:00:00',0),(2839,0,0,'H','2526','','',2839,0,0,'2025-11-03',2337,1876,0,0,1830,'B',400.00,0.00,'7','icici','','75986','','0000-00-00','scan  ','',2779,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 18:32:20','','0000-00-00 00:00:00',0),(2840,0,0,'H','2526','','',2840,0,0,'2025-11-03',2336,1875,0,0,1829,'B',400.00,0.00,'7','icici','','75986','','0000-00-00','scan  ','',2780,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 18:32:30','','0000-00-00 00:00:00',0),(2841,0,0,'H','2526','','',2841,0,0,'2025-11-03',2339,1878,0,0,1832,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2781,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 18:33:56','','0000-00-00 00:00:00',0),(2842,0,0,'H','2526','','',2842,0,0,'2025-11-03',2340,403,0,0,983,'B',300.00,0.00,'7','icici','','42761','','0000-00-00','scan ','',2782,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 18:42:29','','0000-00-00 00:00:00',0),(2843,0,0,'H','2526','','',2843,0,0,'2025-11-03',2342,1880,0,0,1834,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2783,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 18:46:29','','0000-00-00 00:00:00',0),(2844,0,0,'H','2526','','',2844,0,0,'2025-11-03',2331,1871,0,0,1825,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',2784,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 18:49:24','','0000-00-00 00:00:00',0),(2845,0,0,'H','2526','','',2845,0,0,'2025-11-03',2332,1872,0,0,1826,'D',-500.00,0.00,'CSH','','','','','2025-11-03','','',2785,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-03 18:52:14','','0000-00-00 00:00:00',0),(2846,0,0,'H','2526','','',2846,0,0,'2025-11-03',2343,740,0,0,709,'B',2000.00,0.00,'7','sbi','','29186','','0000-00-00','scan  ','',2786,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 18:53:25','','0000-00-00 00:00:00',0),(2847,0,0,'H','2526','','',2847,0,0,'2025-11-03',2334,1064,0,0,1030,'D',-400.00,0.00,'CSH','','','','','2025-11-03','','',2787,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 18:57:35','','0000-00-00 00:00:00',0),(2848,0,0,'H','2526','','',2848,0,0,'2025-11-03',2344,477,0,0,451,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2788,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 18:59:54','','0000-00-00 00:00:00',0),(2849,0,0,'H','2526','','',2849,0,0,'2025-11-03',2345,1881,0,0,1835,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2789,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 19:02:24','','0000-00-00 00:00:00',0),(2850,0,0,'H','2526','','',2850,0,0,'2025-11-03',2346,129,0,0,118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2790,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 19:03:37','','0000-00-00 00:00:00',0),(2851,0,0,'H','2526','','',2851,0,0,'2025-11-03',2339,1878,0,0,1832,'B',300.00,0.00,'7','bank','','00000','','0000-00-00','scan','',2792,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-03 19:09:31','','0000-00-00 00:00:00',0),(2852,0,0,'H','2526','','',2852,0,0,'2025-11-03',2329,1562,0,0,1521,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2793,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 19:19:15','','0000-00-00 00:00:00',0),(2853,0,0,'H','2526','','P',2853,0,0,'2025-11-03',2226,1795,0,124,0,'A',7000.00,0.00,'7','OTHER BANK','','74165','','0000-00-00','','',2796,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-03 19:19:47','vishal','2025-11-03 19:22:12',0),(2854,0,0,'H','2526','','',2854,0,0,'2025-11-03',2341,1879,0,0,1833,'B',500.00,0.00,'7','BOB','','81473','','0000-00-00','SCAN','',2794,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 19:20:28','','0000-00-00 00:00:00',0),(2855,0,0,'H','2526','','P',2855,0,0,'2025-11-03',2226,1795,0,124,0,'A',200.00,0.00,'CSH','','','','','0000-00-00','','',2796,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-03 19:20:55','vishal','2025-11-03 19:22:12',0),(2856,0,0,'H','2526','','',2856,0,0,'2025-11-03',2341,1879,0,0,1833,'B',2500.00,0.00,'7','BOB','','81473','','0000-00-00','SCAN','',2795,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 19:21:28','','0000-00-00 00:00:00',0),(2857,0,0,'H','2526','','',2857,0,0,'2025-11-03',2348,1398,0,0,1358,'B',300.00,0.00,'7','bank','','02942','','0000-00-00','scan  ','',2797,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 19:24:02','','0000-00-00 00:00:00',0),(2858,0,0,'H','2526','','',2858,0,0,'2025-11-03',2349,1346,0,0,1307,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2798,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 19:27:43','','0000-00-00 00:00:00',0),(2859,0,0,'H','2526','','',2859,0,0,'2025-11-03',2351,1884,0,0,1838,'B',450.00,0.00,'CSH','','','','','0000-00-00','','',2799,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-03 19:30:23','','0000-00-00 00:00:00',0),(2860,0,0,'H','2526','','',2860,0,0,'2025-11-03',2352,1885,0,0,1839,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2800,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-03 19:41:20','','0000-00-00 00:00:00',0),(2861,0,0,'H','2526','','',2861,0,0,'2025-11-03',2352,1885,0,0,1839,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',2801,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-03 19:53:39','','0000-00-00 00:00:00',0),(2862,0,0,'H','2526','','',2862,0,0,'2025-11-03',2354,1887,0,0,1841,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2802,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 19:53:41','','0000-00-00 00:00:00',0),(2863,0,0,'H','2526','','',2863,0,0,'2025-11-03',2353,1886,0,0,1840,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2803,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-03 19:53:53','','0000-00-00 00:00:00',0),(2864,0,0,'H','2526','','',2864,0,0,'2025-11-03',2354,1887,0,0,1841,'D',-500.00,0.00,'CSH','','','','','2025-11-03','','',2804,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 20:15:39','','0000-00-00 00:00:00',0),(2865,0,0,'H','2526','','',2865,0,0,'2025-11-03',2354,1887,0,0,1841,'D',-200.00,0.00,'CSH','','','','','2025-11-03','','',2804,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 20:17:41','','0000-00-00 00:00:00',0),(2866,0,0,'H','2526','','',2866,0,0,'2025-11-03',2354,1887,0,0,1841,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',2805,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-03 20:18:42','','0000-00-00 00:00:00',0),(2867,0,0,'H','2526','','',2867,0,0,'2025-11-04',2355,1456,0,0,1747,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',2806,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 09:09:16','','0000-00-00 00:00:00',0),(2868,0,0,'H','2526','','',2868,0,0,'2025-11-04',2356,1888,0,0,1842,'B',1550.00,0.00,'CSH','','','','','0000-00-00','','',2807,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 09:12:56','','0000-00-00 00:00:00',0),(2869,0,0,'H','2526','','',2869,0,0,'2025-11-04',2355,1456,0,0,1747,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2808,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-04 09:26:29','','0000-00-00 00:00:00',0),(2870,0,0,'H','2526','','',2870,0,0,'2025-11-04',2355,1456,0,0,1747,'D',-200.00,0.00,'CSH','','','','','2025-11-04','','',2809,'N','N','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-04 09:29:57','','0000-00-00 00:00:00',0),(2871,0,0,'H','2526','','',2871,0,0,'2025-11-04',2355,1456,0,0,1747,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',2810,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-04 09:30:32','','0000-00-00 00:00:00',0),(2872,0,0,'H','2526','','',2872,0,0,'2025-11-04',2357,1889,0,0,1843,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2811,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 09:30:35','','0000-00-00 00:00:00',0),(2873,0,0,'H','2526','','',2873,0,0,'2025-11-04',2358,1890,0,0,1844,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2812,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 09:33:28','','0000-00-00 00:00:00',0),(2874,0,0,'H','2526','','',2874,0,0,'2025-11-04',2359,1891,0,0,1845,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2813,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 10:08:31','','0000-00-00 00:00:00',0),(2875,0,0,'H','2526','','',2875,0,0,'2025-11-04',2360,1892,0,0,1846,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2814,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-04 10:12:48','','0000-00-00 00:00:00',0),(2876,0,0,'H','2526','','',2876,0,0,'2025-11-04',2362,1894,0,0,1848,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2815,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-04 10:20:10','','0000-00-00 00:00:00',0),(2877,0,0,'H','2526','','',2877,0,0,'2025-11-04',2361,1893,0,0,1847,'B',500.00,0.00,'7','personal accou','','42875','','0000-00-00','scan','',2816,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 10:21:09','','0000-00-00 00:00:00',0),(2878,0,0,'H','2526','','',2878,0,0,'2025-11-04',2363,659,0,0,629,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2817,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 10:22:10','','0000-00-00 00:00:00',0),(2879,0,0,'H','2526','','',2879,0,0,'2025-11-04',2364,1895,0,0,1849,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2818,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 10:23:48','','0000-00-00 00:00:00',0),(2880,0,0,'H','2526','','',2880,0,0,'2025-11-04',2365,1896,0,0,1850,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2819,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 10:25:26','','0000-00-00 00:00:00',0),(2881,0,0,'H','2526','','',2881,0,0,'2025-11-04',2366,1595,0,0,1552,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2820,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 10:27:04','','0000-00-00 00:00:00',0),(2882,0,0,'H','2526','','',2882,0,0,'2025-11-04',2367,1897,0,0,1851,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2821,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 10:33:51','','0000-00-00 00:00:00',0),(2883,0,0,'H','2526','','',2883,0,0,'2025-11-04',2368,1898,0,0,1852,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2822,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 10:38:35','','0000-00-00 00:00:00',0),(2884,0,0,'H','2526','','',2884,0,0,'2025-11-04',2369,1899,0,0,1853,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2823,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-04 10:57:31','','0000-00-00 00:00:00',0),(2885,0,0,'H','2526','','',2885,0,0,'2025-11-04',2370,1900,0,0,1854,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2824,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 10:57:49','','0000-00-00 00:00:00',0),(2886,0,0,'H','2526','','',2886,0,0,'2025-11-04',2371,1901,0,0,1855,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2825,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-04 10:58:30','','0000-00-00 00:00:00',0),(2887,0,0,'H','2526','','',2887,0,0,'2025-11-04',2365,1896,0,0,1850,'B',6200.00,0.00,'CSH','','','','','0000-00-00','','',2826,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 11:00:39','','0000-00-00 00:00:00',0),(2888,0,0,'H','2526','','',2888,0,0,'2025-11-04',2373,1903,0,0,1857,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2827,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 11:02:21','','0000-00-00 00:00:00',0),(2889,0,0,'H','2526','','',2889,0,0,'2025-11-04',2372,1902,0,0,1856,'B',400.00,0.00,'7','axis bank','','79945','','0000-00-00','scan','',2828,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-04 11:04:16','','0000-00-00 00:00:00',0),(2890,0,0,'H','2526','','',2890,0,0,'2025-11-04',2362,1894,0,0,1848,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',2829,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-04 11:07:41','','0000-00-00 00:00:00',0),(2891,0,0,'H','2526','','',2891,0,0,'2025-11-04',2359,1891,0,0,1845,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',2830,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 11:11:28','','0000-00-00 00:00:00',0),(2892,0,0,'H','2526','','',2892,0,0,'2025-11-04',2376,1904,0,0,1859,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2831,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-04 11:13:45','','0000-00-00 00:00:00',0),(2893,0,0,'H','2526','','',2893,0,0,'2025-11-04',2374,805,0,0,774,'B',500.00,0.00,'7','sbi','','72087','','0000-00-00','scan','',2832,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 11:15:32','','0000-00-00 00:00:00',0),(2894,0,0,'H','2526','','',2894,0,0,'2025-11-04',2377,1905,0,0,1860,'B',700.00,0.00,'7','SBI BANK','','76536','','0000-00-00','scan','',2833,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-04 11:17:28','','0000-00-00 00:00:00',0),(2895,0,0,'H','2526','','',2895,0,0,'2025-11-04',2378,1906,0,0,1861,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2834,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 11:17:45','','0000-00-00 00:00:00',0),(2896,0,0,'H','2526','','',2896,0,0,'2025-11-04',2380,1908,0,0,1863,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2835,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-04 11:22:39','','0000-00-00 00:00:00',0),(2897,0,0,'H','2526','','',2897,0,0,'2025-11-04',2379,1907,0,0,1862,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2836,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 11:22:44','','0000-00-00 00:00:00',0),(2898,0,0,'H','2526','','',2898,0,0,'2025-11-04',2381,1909,0,0,1864,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2837,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 11:24:40','','0000-00-00 00:00:00',0),(2899,0,0,'H','2526','','',2899,0,0,'2025-11-04',2382,1714,0,0,1669,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2838,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-04 11:29:04','','0000-00-00 00:00:00',0),(2900,0,0,'H','2526','','',2900,0,0,'2025-11-04',2373,1903,0,0,1857,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',2839,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 11:31:32','','0000-00-00 00:00:00',0),(2901,0,0,'H','2526','','',2901,0,0,'2025-11-04',2383,1910,0,0,1865,'B',500.00,0.00,'7','SBI','','38396','','0000-00-00','scan ','',2840,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-04 11:34:20','','0000-00-00 00:00:00',0),(2902,0,0,'H','2526','','',2902,0,0,'2025-11-04',2375,870,0,0,1858,'B',500.00,0.00,'7','AXIS BANK','','51522','','0000-00-00','scan ','',2841,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-04 11:39:28','','0000-00-00 00:00:00',0),(2903,0,0,'H','2526','','',2903,0,0,'2025-11-04',2384,1911,0,0,1866,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2842,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 11:42:28','','0000-00-00 00:00:00',0),(2904,0,0,'H','2526','','',2904,0,0,'2025-11-04',2385,1912,0,0,1867,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2843,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 11:44:59','','0000-00-00 00:00:00',0),(2905,0,0,'H','2526','','',2905,0,0,'2025-11-04',2383,1910,0,0,1865,'B',600.00,0.00,'7','SBI','','06118','','0000-00-00','scan ','',2844,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-04 11:51:14','','0000-00-00 00:00:00',0),(2906,0,0,'H','2526','','',2906,0,0,'2025-11-04',2367,1897,0,0,1851,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',2845,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 11:51:16','','0000-00-00 00:00:00',0),(2907,0,0,'H','2526','','',2907,0,0,'2025-11-04',2386,1778,0,0,1734,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2846,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 11:55:58','','0000-00-00 00:00:00',0),(2908,0,0,'H','2526','','',2908,0,0,'2025-11-04',2379,1907,0,0,1862,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',2848,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 11:59:08','','0000-00-00 00:00:00',0),(2909,0,0,'H','2526','','',2909,0,0,'2025-11-04',2387,1913,0,0,1868,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2849,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-04 12:07:11','','0000-00-00 00:00:00',0),(2910,0,0,'H','2526','','P',2910,0,0,'2025-11-04',2240,1763,0,125,0,'A',3200.00,0.00,'CSH','','','','','0000-00-00','','',2850,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-04 12:07:13','vishal','2025-11-04 12:07:28',0),(2911,0,0,'H','2526','','',2911,0,0,'2025-11-04',2388,1230,0,0,1191,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2851,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 12:14:55','','0000-00-00 00:00:00',0),(2912,0,0,'H','2526','','',2912,0,0,'2025-11-04',2389,1914,0,0,1869,'B',500.00,0.00,'7','boi','','74935','','0000-00-00','scan','',2852,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 12:23:15','','0000-00-00 00:00:00',0),(2913,0,0,'H','2526','','',2913,0,0,'2025-11-04',2384,1911,0,0,1866,'B',4000.00,0.00,'7','hdfc','','22936','','0000-00-00','scan','',2853,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 12:26:10','','0000-00-00 00:00:00',0),(2914,0,0,'H','2526','','',2914,0,0,'2025-11-04',2390,1915,0,0,1870,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2854,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-04 12:27:08','','0000-00-00 00:00:00',0),(2915,0,0,'H','2526','','',2915,0,0,'2025-11-04',2391,1916,0,0,1871,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2855,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-04 12:33:41','','0000-00-00 00:00:00',0),(2916,0,0,'H','2526','','',2916,0,0,'2025-11-04',2393,1918,0,0,1872,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2856,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 12:34:18','','0000-00-00 00:00:00',0),(2917,0,0,'H','2526','','',2917,0,0,'2025-11-04',2394,1919,0,0,1873,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2857,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 12:36:53','','0000-00-00 00:00:00',0),(2918,0,0,'H','2526','','',2918,0,0,'2025-11-04',2393,1918,0,0,1872,'B',4600.00,0.00,'7','bob','','91086','','0000-00-00','scan','',2858,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 13:06:31','','0000-00-00 00:00:00',0),(2919,0,0,'H','2526','','',2919,0,0,'2025-11-04',2386,1778,0,0,1734,'B',1500.00,0.00,'7','hdfc','','70493','','0000-00-00','scan','',2859,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 13:42:31','','0000-00-00 00:00:00',0),(2920,0,0,'H','2526','','',2920,0,0,'2025-11-04',2396,1173,0,0,1133,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2860,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-04 16:43:22','','0000-00-00 00:00:00',0),(2921,0,0,'H','2526','','',2921,0,0,'2025-11-04',2397,1921,0,0,1874,'B',500.00,0.00,'7','sbi','','74228','','0000-00-00','scan','',2861,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 16:50:46','','0000-00-00 00:00:00',0),(2922,0,0,'H','2526','','',2922,0,0,'2025-11-04',2398,1922,0,0,1875,'B',500.00,0.00,'7','sbi','','74228','','0000-00-00','scan','',2862,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 16:51:57','','0000-00-00 00:00:00',0),(2923,0,0,'H','2526','','',2923,0,0,'2025-11-04',2399,1585,0,0,1542,'B',500.00,0.00,'2','indian bank','3190','3190','','0000-00-00','card','',2863,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 16:56:22','','0000-00-00 00:00:00',0),(2924,0,0,'H','2526','','',2924,0,0,'2025-11-04',2401,1923,0,0,1876,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2864,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 17:04:45','','0000-00-00 00:00:00',0),(2925,0,0,'H','2526','','',2925,0,0,'2025-11-04',2400,1912,0,0,1867,'B',4400.00,0.00,'7','boi','','73085','','0000-00-00','scan','',2865,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 17:09:01','','0000-00-00 00:00:00',0),(2926,0,0,'H','2526','','',2926,0,0,'2025-11-04',2402,546,0,0,520,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2866,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 17:12:09','','0000-00-00 00:00:00',0),(2927,0,0,'H','2526','','',2927,0,0,'2025-11-04',2404,1924,0,0,1877,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2868,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 17:21:04','','0000-00-00 00:00:00',0),(2928,0,0,'H','2526','','',2928,0,0,'2025-11-04',2405,1925,0,0,1878,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2869,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 17:36:11','','0000-00-00 00:00:00',0),(2929,0,0,'H','2526','','',2929,0,0,'2025-11-04',2406,1926,0,0,1879,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2870,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 17:38:34','','0000-00-00 00:00:00',0),(2930,0,0,'H','2526','','',2930,0,0,'2025-11-04',2407,1927,0,0,1880,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2871,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-04 17:42:09','','0000-00-00 00:00:00',0),(2931,0,0,'H','2526','','',2931,0,0,'2025-11-04',2403,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2872,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-04 17:42:43','','0000-00-00 00:00:00',0),(2932,0,0,'H','2526','','',2932,0,0,'2025-11-04',2408,1928,0,0,1881,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2873,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 17:43:40','','0000-00-00 00:00:00',0),(2933,0,0,'H','2526','','',2933,0,0,'2025-11-04',2409,1929,0,0,1882,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2874,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 17:44:36','','0000-00-00 00:00:00',0),(2934,0,0,'H','2526','','',2934,0,0,'2025-11-04',2401,1923,0,0,1876,'D',-500.00,0.00,'CSH','','','','','2025-11-04','','',2875,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 17:48:34','','0000-00-00 00:00:00',0),(2935,0,0,'H','2526','','',2935,0,0,'2025-11-04',2401,1923,0,0,1876,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2876,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 17:49:14','','0000-00-00 00:00:00',0),(2936,0,0,'H','2526','','P',2936,0,0,'2025-11-04',1711,1383,0,104,0,'A',14000.00,0.00,'CSH','','','','','0000-00-00','','',2877,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-04 17:49:31','vishal','2025-11-04 17:55:33',0),(2937,0,0,'H','2526','','',2937,0,0,'2025-11-04',2410,1930,0,0,1883,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2878,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-04 17:56:25','','0000-00-00 00:00:00',0),(2938,0,0,'H','2526','','',2938,0,0,'2025-11-04',2411,1528,0,0,1487,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2879,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 17:57:17','','0000-00-00 00:00:00',0),(2939,0,0,'H','2526','','',2939,0,0,'2025-11-04',2413,1931,0,0,1884,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2880,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-04 18:05:12','','0000-00-00 00:00:00',0),(2940,0,0,'H','2526','','',2940,0,0,'2025-11-04',2410,1930,0,0,1883,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',2881,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-04 18:07:43','','0000-00-00 00:00:00',0),(2941,0,0,'H','2526','','',2941,0,0,'2025-11-04',2414,1169,0,0,1129,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2882,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 18:09:20','','0000-00-00 00:00:00',0),(2942,0,0,'H','2526','','',2942,0,0,'2025-11-04',2415,1083,0,0,1049,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2883,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-04 18:15:31','','0000-00-00 00:00:00',0),(2943,0,0,'H','2526','','',2943,0,0,'2025-11-04',2408,1928,0,0,1881,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',2884,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 18:17:15','','0000-00-00 00:00:00',0),(2944,0,0,'H','2526','','',2944,0,0,'2025-11-04',2417,1341,0,0,1302,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2885,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-04 18:19:24','','0000-00-00 00:00:00',0),(2945,0,0,'H','2526','','',2945,0,0,'2025-11-04',2416,1932,0,0,1885,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2886,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 18:19:35','','0000-00-00 00:00:00',0),(2946,0,0,'H','2526','','',2946,0,0,'2025-11-04',2418,1933,0,0,1886,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2887,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 18:23:57','','0000-00-00 00:00:00',0),(2947,0,0,'H','2526','','',2947,0,0,'2025-11-04',2419,1792,0,0,1746,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2888,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-04 18:27:32','','0000-00-00 00:00:00',0),(2948,0,0,'H','2526','','',2948,0,0,'2025-11-04',2420,1934,0,0,1887,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2889,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-04 18:29:24','','0000-00-00 00:00:00',0),(2949,0,0,'H','2526','','',2949,0,0,'2025-11-04',2421,1935,0,0,1888,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2890,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 18:31:03','','0000-00-00 00:00:00',0),(2950,0,0,'H','2526','','',2950,0,0,'2025-11-04',2422,721,0,0,690,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2891,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 18:31:41','','0000-00-00 00:00:00',0),(2951,0,0,'H','2526','','',2951,0,0,'2025-11-04',2423,1936,0,0,1889,'B',400.00,0.00,'7','sbi','','94945','','0000-00-00','scan ','',2892,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-04 18:34:50','','0000-00-00 00:00:00',0),(2952,0,0,'H','2526','','',2952,0,0,'2025-11-04',2424,1937,0,0,1890,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2893,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 18:38:04','','0000-00-00 00:00:00',0),(2953,0,0,'H','2526','','',2953,0,0,'2025-11-04',2425,1938,0,0,1891,'B',900.00,0.00,'7','sbi','','80924','','0000-00-00','scan','',2894,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 18:44:03','','0000-00-00 00:00:00',0),(2954,0,0,'H','2526','','',2954,0,0,'2025-11-04',2426,1381,0,0,1341,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2895,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-04 18:47:42','','0000-00-00 00:00:00',0),(2955,0,0,'H','2526','','',2955,0,0,'2025-11-04',2416,1932,0,0,1885,'B',4500.00,0.00,'7','KVB','','15923','','0000-00-00','scan','',2896,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 18:48:23','','0000-00-00 00:00:00',0),(2956,0,0,'H','2526','','',2956,0,0,'2025-11-04',2410,1930,0,0,1883,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2897,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-04 18:48:38','','0000-00-00 00:00:00',0),(2957,0,0,'H','2526','','',2957,0,0,'2025-11-04',2420,1934,0,0,1887,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2898,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-04 18:49:54','','0000-00-00 00:00:00',0),(2958,0,0,'H','2526','','',2958,0,0,'2025-11-04',2427,894,0,0,862,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2899,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 18:51:15','','0000-00-00 00:00:00',0),(2959,0,0,'H','2526','','',2959,0,0,'2025-11-04',2428,1939,0,0,1892,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2900,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-04 18:52:44','','0000-00-00 00:00:00',0),(2960,0,0,'H','2526','','',2960,0,0,'2025-11-04',2429,1940,0,0,1893,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2901,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-04 18:58:05','','0000-00-00 00:00:00',0),(2961,0,0,'H','2526','','',2961,0,0,'2025-11-04',2430,797,0,0,766,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2902,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 18:58:21','','0000-00-00 00:00:00',0),(2962,0,0,'H','2526','','',2962,0,0,'2025-11-04',2428,1939,0,0,1892,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2903,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-04 19:01:07','','0000-00-00 00:00:00',0),(2963,0,0,'H','2526','','',2963,0,0,'2025-11-04',2431,1346,0,0,1307,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2904,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-04 19:04:08','','0000-00-00 00:00:00',0),(2964,0,0,'H','2526','','P',2964,0,0,'2025-10-10',257,249,0,19,0,'A',2100.00,0.00,'7','HDFC BAN','','6790','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-04 19:19:17','vishal','2025-11-04 19:19:17',0),(2965,0,0,'H','2526','','',2965,0,0,'2025-11-04',2432,1313,0,0,1274,'B',400.00,0.00,'7','ICICI BANK','','20231','','0000-00-00','scan','',2906,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-04 19:29:50','','0000-00-00 00:00:00',0),(2966,0,0,'H','2526','','P',2966,0,0,'2025-11-04',2264,1703,0,126,0,'A',10000.00,0.00,'7','icici bank','','2652','','0000-00-00','','',2907,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-04 19:35:52','vishal','2025-11-04 19:36:19',0),(2967,0,0,'H','2526','','',2967,0,0,'2025-11-04',2433,1941,0,0,1894,'B',900.00,0.00,'7','BOB BANK','','06461','','0000-00-00','scan','',2908,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-04 19:38:42','','0000-00-00 00:00:00',0),(2968,0,0,'H','2526','','',2968,0,0,'2025-11-04',2425,1938,0,0,1891,'B',4600.00,0.00,'CRD','sbi','2208','15578','','0000-00-00','scan','',2909,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 19:41:37','','0000-00-00 00:00:00',0),(2969,0,0,'H','2526','','P',2969,0,0,'2025-11-04',2392,1917,0,128,0,'A',7000.00,0.00,'7','sbi bank','','523424','','0000-00-00','','',3049,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-04 19:46:28','vishal','2025-11-05 20:05:18',0),(2970,0,0,'H','2526','','',2970,0,0,'2025-11-04',2433,1941,0,0,1894,'B',4600.00,0.00,'7','BOB','','07758','','0000-00-00','scan','',2910,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-04 19:57:49','','0000-00-00 00:00:00',0),(2971,0,0,'H','2526','','',2971,0,0,'2025-11-05',2434,1456,0,0,1747,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2911,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 09:00:08','','0000-00-00 00:00:00',0),(2972,0,0,'H','2526','','',2972,0,0,'2025-11-05',2435,1455,0,0,1415,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2912,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 09:01:47','','0000-00-00 00:00:00',0),(2973,0,0,'H','2526','','',2973,0,0,'2025-11-05',2436,1942,0,0,1895,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',2913,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 09:08:32','','0000-00-00 00:00:00',0),(2974,0,0,'H','2526','','',2974,0,0,'2025-11-05',2439,1945,0,0,1897,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2915,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 09:50:56','','0000-00-00 00:00:00',0),(2975,0,0,'H','2526','','',2975,0,0,'2025-11-05',2438,1944,0,0,1896,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2916,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 09:51:10','','0000-00-00 00:00:00',0),(2976,0,0,'H','2526','','',2976,0,0,'2025-11-05',2440,621,0,0,591,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2917,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 09:55:14','','0000-00-00 00:00:00',0),(2977,0,0,'H','2526','','',2977,0,0,'2025-11-05',2442,1947,0,0,1899,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2918,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 09:56:34','','0000-00-00 00:00:00',0),(2978,0,0,'H','2526','','',2978,0,0,'2025-11-05',2443,1948,0,0,1900,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2919,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 10:03:35','','0000-00-00 00:00:00',0),(2979,0,0,'H','2526','','',2979,0,0,'2025-11-05',2444,1949,0,0,1901,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2920,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 10:09:10','','0000-00-00 00:00:00',0),(2980,0,0,'H','2526','','',2980,0,0,'2025-11-05',2445,1950,0,0,1902,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2921,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 10:16:46','','0000-00-00 00:00:00',0),(2981,0,0,'H','2526','','',2981,0,0,'2025-11-05',2446,496,0,0,470,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2922,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 10:18:03','','0000-00-00 00:00:00',0),(2982,0,0,'H','2526','','',2982,0,0,'2025-11-05',2447,1332,0,0,1293,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2923,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 10:28:19','','0000-00-00 00:00:00',0),(2983,0,0,'H','2526','','',2983,0,0,'2025-11-05',2448,1951,0,0,1903,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2924,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 10:34:03','','0000-00-00 00:00:00',0),(2984,0,0,'H','2526','','',2984,0,0,'2025-11-05',2449,1952,0,0,1904,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2925,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 10:38:37','','0000-00-00 00:00:00',0),(2985,0,0,'H','2526','','',2985,0,0,'2025-11-05',2450,483,0,0,457,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2926,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 10:43:26','','0000-00-00 00:00:00',0),(2986,0,0,'H','2526','','',2986,0,0,'2025-11-05',2450,483,0,0,457,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2927,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 10:44:01','','0000-00-00 00:00:00',0),(2987,0,0,'H','2526','','',2987,0,0,'2025-11-05',2451,1953,0,0,1905,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2928,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 10:44:03','','0000-00-00 00:00:00',0),(2988,0,0,'H','2526','','',2988,0,0,'2025-11-05',2452,1954,0,0,1906,'B',500.00,0.00,'7','KOTAK','','19306','','0000-00-00','SCAN','',2929,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 10:48:44','','0000-00-00 00:00:00',0),(2989,0,0,'H','2526','','',2989,0,0,'2025-11-05',2454,1955,0,0,1907,'B',500.00,0.00,'7','SBI','','69135','','0000-00-00','SCAN','',2930,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 10:51:02','','0000-00-00 00:00:00',0),(2990,0,0,'H','2526','','',2990,0,0,'2025-11-05',2455,724,0,0,693,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2931,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-05 10:54:20','','0000-00-00 00:00:00',0),(2991,0,0,'H','2526','','',2991,0,0,'2025-11-05',2456,487,0,0,461,'B',500.00,0.00,'7','BANK','','47869','','0000-00-00','SCAN','',2932,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 10:56:50','','0000-00-00 00:00:00',0),(2992,0,0,'H','2526','','',2992,0,0,'2025-11-05',2457,1956,0,0,1908,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2933,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 10:58:43','','0000-00-00 00:00:00',0),(2993,0,0,'H','2526','','',2993,0,0,'2025-11-05',2458,1957,0,0,1909,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2934,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 11:01:48','','0000-00-00 00:00:00',0),(2994,0,0,'H','2526','','',2994,0,0,'2025-11-05',2460,1959,0,0,1911,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2935,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 11:04:51','','0000-00-00 00:00:00',0),(2995,0,0,'H','2526','','',2995,0,0,'2025-11-05',2459,1958,0,0,1910,'B',500.00,0.00,'7','AXIS','','05851','','0000-00-00','SCAN','',2936,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 11:05:12','','0000-00-00 00:00:00',0),(2996,0,0,'H','2526','','',2996,0,0,'2025-11-05',2442,1947,0,0,1899,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',2937,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 11:11:33','','0000-00-00 00:00:00',0),(2997,0,0,'H','2526','','',2997,0,0,'2025-11-05',2455,724,0,0,693,'D',-300.00,0.00,'CSH','','','','','0000-00-00','','',2938,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 11:13:46','','0000-00-00 00:00:00',0),(2998,0,0,'H','2526','','',2998,0,0,'2025-11-05',2455,724,0,0,693,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2939,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 11:14:00','','0000-00-00 00:00:00',0),(2999,0,0,'H','2526','','P',2999,0,0,'2025-11-05',2018,1641,0,117,0,'A',32150.00,0.00,'CRD','KOTAK BANK','','3192','','0000-00-00','CARD','',2941,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-05 11:14:26','riya','2025-11-05 11:15:06',0),(3000,0,0,'H','2526','','',3000,0,0,'2025-11-05',2461,1960,0,0,1912,'B',900.00,0.00,'7','UNION BANK','','72449','','0000-00-00','SCAN','',2940,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 11:14:32','','0000-00-00 00:00:00',0),(3001,0,0,'H','2526','','',3001,0,0,'2025-11-05',2462,1961,0,0,1913,'B',900.00,0.00,'7','BOB ','','73821','','0000-00-00','SCAN','',2942,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 11:17:13','','0000-00-00 00:00:00',0),(3002,0,0,'H','2526','','',3002,0,0,'2025-11-05',2463,1962,0,0,1914,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',2943,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 11:18:14','','0000-00-00 00:00:00',0),(3003,0,0,'H','2526','','',3003,0,0,'2025-11-05',2449,1952,0,0,1904,'B',350.00,0.00,'7','rnsb','','59497','','0000-00-00','scan ','',2944,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 11:19:47','','0000-00-00 00:00:00',0),(3004,0,0,'H','2526','','',3004,0,0,'2025-11-05',2464,1963,0,0,1915,'B',500.00,0.00,'7','HDFC','','80256','','0000-00-00','SCAN','',2945,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 11:21:05','','0000-00-00 00:00:00',0),(3005,0,0,'H','2526','','',3005,0,0,'2025-11-05',2465,1618,0,0,1574,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2946,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-05 11:21:20','','0000-00-00 00:00:00',0),(3006,0,0,'H','2526','','',3006,0,0,'2025-11-05',2444,1949,0,0,1901,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2947,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 11:22:48','','0000-00-00 00:00:00',0),(3007,0,0,'H','2526','','',3007,0,0,'2025-11-05',2466,1964,0,0,1916,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2948,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 11:26:33','','0000-00-00 00:00:00',0),(3008,0,0,'H','2526','','P',3008,0,0,'2025-11-05',2437,1943,0,130,0,'A',15000.00,0.00,'2','CENTRAL BANK','','3193','','0000-00-00','CARD','',3053,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-05 11:27:57','vishal','2025-11-05 21:09:58',0),(3009,0,0,'H','2526','','',3009,0,0,'2025-11-05',2467,1965,0,0,1917,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2949,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 11:28:22','','0000-00-00 00:00:00',0),(3010,0,0,'H','2526','','',3010,0,0,'2025-11-05',2468,1966,0,0,1918,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2950,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-05 11:32:17','','0000-00-00 00:00:00',0),(3011,0,0,'H','2526','','',3011,0,0,'2025-11-05',2469,1967,0,0,1919,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2951,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 11:33:04','','0000-00-00 00:00:00',0),(3012,0,0,'H','2526','','',3012,0,0,'2025-11-05',2453,1809,0,0,1763,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2952,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 11:34:12','','0000-00-00 00:00:00',0),(3013,0,0,'H','2526','','',3013,0,0,'2025-11-05',2470,1968,0,0,1920,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2953,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 11:36:50','','0000-00-00 00:00:00',0),(3014,0,0,'H','2526','','',3014,0,0,'2025-11-05',2471,1969,0,0,1921,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2954,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 11:37:03','','0000-00-00 00:00:00',0),(3015,0,0,'H','2526','','',3015,0,0,'2025-11-05',2462,1961,0,0,1913,'B',4500.00,0.00,'7','BOB ','','65737','','0000-00-00','SCAN','',2955,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 11:50:54','','0000-00-00 00:00:00',0),(3016,0,0,'H','2526','','',3016,0,0,'2025-11-05',2473,1971,0,0,1923,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2956,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-05 11:58:30','','0000-00-00 00:00:00',0),(3017,0,0,'H','2526','','',3017,0,0,'2025-11-05',2474,1714,0,0,1669,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2957,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 11:58:43','','0000-00-00 00:00:00',0),(3018,0,0,'H','2526','','',3018,0,0,'2025-11-05',2472,1970,0,0,1922,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2958,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 11:59:00','','0000-00-00 00:00:00',0),(3019,0,0,'H','2526','','',3019,0,0,'2025-11-05',2476,1973,0,0,1925,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2959,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 12:00:36','','0000-00-00 00:00:00',0),(3020,0,0,'H','2526','','',3020,0,0,'2025-11-05',2475,1972,0,0,1924,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2960,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 12:00:50','','0000-00-00 00:00:00',0),(3021,0,0,'H','2526','','',3021,0,0,'2025-11-05',2477,1974,0,0,1926,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2961,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 12:00:52','','0000-00-00 00:00:00',0),(3022,0,0,'H','2526','','',3022,0,0,'2025-11-05',2441,1946,0,0,1898,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',2962,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 12:01:52','','0000-00-00 00:00:00',0),(3023,0,0,'H','2526','','',3023,0,0,'2025-11-05',2478,1975,0,0,1927,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2963,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 12:02:27','','0000-00-00 00:00:00',0),(3024,0,0,'H','2526','','',3024,0,0,'2025-11-05',2469,1967,0,0,1919,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2964,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 12:02:34','','0000-00-00 00:00:00',0),(3025,0,0,'H','2526','','',3025,0,0,'2025-11-05',2480,1977,0,0,1929,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2965,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 12:05:36','','0000-00-00 00:00:00',0),(3026,0,0,'H','2526','','',3026,0,0,'2025-11-05',2482,1979,0,0,1931,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2966,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 12:07:22','','0000-00-00 00:00:00',0),(3027,0,0,'H','2526','','',3027,0,0,'2025-11-05',2479,1976,0,0,1928,'B',1100.00,0.00,'7','SBI','','48986','','0000-00-00','SCAN','',2967,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-05 12:07:37','','0000-00-00 00:00:00',0),(3028,0,0,'H','2526','','',3028,0,0,'2025-11-05',2481,1978,0,0,1930,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2968,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 12:07:39','','0000-00-00 00:00:00',0),(3029,0,0,'H','2526','','',3029,0,0,'2025-11-05',2483,1315,0,0,1276,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2969,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 12:09:26','','0000-00-00 00:00:00',0),(3030,0,0,'H','2526','','',3030,0,0,'2025-11-05',2473,1971,0,0,1923,'D',-500.00,0.00,'CSH','','','','','2025-11-05','','',2970,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-05 12:11:50','','0000-00-00 00:00:00',0),(3031,0,0,'H','2526','','',3031,0,0,'2025-11-05',2463,1962,0,0,1914,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',2971,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 12:14:56','','0000-00-00 00:00:00',0),(3032,0,0,'H','2526','','',3032,0,0,'2025-11-05',2484,1980,0,0,1932,'B',800.00,0.00,'7','SBI','','76829','','0000-00-00','SCAN','',2972,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 12:37:14','','0000-00-00 00:00:00',0),(3033,0,0,'H','2526','','',3033,0,0,'2025-11-05',2487,1246,0,0,1207,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2973,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-05 12:40:50','','0000-00-00 00:00:00',0),(3034,0,0,'H','2526','','',3034,0,0,'2025-11-05',2486,1982,0,0,1934,'B',500.00,0.00,'7','SIB','','75796','','0000-00-00','SCAN','',2974,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 12:41:07','','0000-00-00 00:00:00',0),(3035,0,0,'H','2526','','',3035,0,0,'2025-11-05',2488,1983,0,0,1935,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2975,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 12:42:36','','0000-00-00 00:00:00',0),(3036,0,0,'H','2526','','',3036,0,0,'2025-11-05',2489,1984,0,0,1936,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2976,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-05 12:44:24','','0000-00-00 00:00:00',0),(3037,0,0,'H','2526','','',3037,0,0,'2025-11-05',2459,1958,0,0,1910,'D',-500.00,0.00,'7','AXIS','','05851','','2025-11-05','SCAN','',2977,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 13:03:41','','0000-00-00 00:00:00',0),(3038,0,0,'H','2526','','',3038,0,0,'2025-11-05',2459,1958,0,0,1910,'B',400.00,0.00,'7','AXIS','','05851','','0000-00-00','SCAN','',2978,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 13:04:25','','0000-00-00 00:00:00',0),(3039,0,0,'H','2526','','',3039,0,0,'2025-11-05',2491,1986,0,0,1938,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',2979,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-05 13:23:12','','0000-00-00 00:00:00',0),(3040,0,0,'H','2526','','P',3040,0,0,'2025-11-05',2195,1772,0,121,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',3272,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-05 13:27:11','vishal','2025-11-08 09:27:43',0),(3041,0,0,'H','2526','','',3041,0,0,'2025-11-05',2461,1960,0,0,1912,'D',-900.00,0.00,'7','UNION BANK','','72449','','2025-11-05','SCAN','',2980,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 13:39:03','','0000-00-00 00:00:00',0),(3042,0,0,'H','2526','','',3042,0,0,'2025-11-05',2461,1960,0,0,1912,'B',700.00,0.00,'7','UNION BANK','','72449','','0000-00-00','SCAN','',2981,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 13:40:28','','0000-00-00 00:00:00',0),(3043,0,0,'H','2526','','',3043,0,0,'2025-11-05',2493,1987,0,0,1939,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2982,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 13:46:36','','0000-00-00 00:00:00',0),(3044,0,0,'H','2526','','',3044,0,0,'2025-11-05',2491,1986,0,0,1938,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',2983,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-05 13:58:55','','0000-00-00 00:00:00',0),(3045,0,0,'H','2526','','',3045,0,0,'2025-11-05',2458,1957,0,0,1909,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2984,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-05 14:33:30','','0000-00-00 00:00:00',0),(3046,0,0,'H','2526','','',3046,0,0,'2025-11-05',2498,685,0,0,655,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2985,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-05 16:53:56','','0000-00-00 00:00:00',0),(3047,0,0,'H','2526','','',3047,0,0,'2025-11-05',2500,1991,0,0,1943,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2986,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 16:57:48','','0000-00-00 00:00:00',0),(3048,0,0,'H','2526','','',3048,0,0,'2025-11-05',2499,1990,0,0,1942,'B',1650.00,0.00,'CSH','','','','','0000-00-00','','',2987,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 17:01:35','','0000-00-00 00:00:00',0),(3049,0,0,'H','2526','','',3049,0,0,'2025-11-05',2501,105,0,0,94,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2988,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 17:04:47','','0000-00-00 00:00:00',0),(3050,0,0,'H','2526','','',3050,0,0,'2025-11-05',2502,1992,0,0,1944,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',2989,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 17:11:23','','0000-00-00 00:00:00',0),(3051,0,0,'H','2526','','',3051,0,0,'2025-11-05',2503,1993,0,0,1945,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2990,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 17:11:50','','0000-00-00 00:00:00',0),(3052,0,0,'H','2526','','',3052,0,0,'2025-11-05',2504,1994,0,0,1946,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2991,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 17:14:10','','0000-00-00 00:00:00',0),(3053,0,0,'H','2526','','',3053,0,0,'2025-11-05',2506,1995,0,0,1947,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2992,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 17:21:03','','0000-00-00 00:00:00',0),(3054,0,0,'H','2526','','',3054,0,0,'2025-11-05',2507,1996,0,0,1948,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',2993,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 17:24:06','','0000-00-00 00:00:00',0),(3055,0,0,'H','2526','','',3055,0,0,'2025-11-05',2503,1993,0,0,1945,'D',-400.00,0.00,'CSH','','','','','2025-11-05','','',2994,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 17:28:20','','0000-00-00 00:00:00',0),(3056,0,0,'H','2526','','',3056,0,0,'2025-11-05',2503,1993,0,0,1945,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2995,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 17:29:08','','0000-00-00 00:00:00',0),(3057,0,0,'H','2526','','',3057,0,0,'2025-11-05',2502,1992,0,0,1944,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',2996,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 17:30:03','','0000-00-00 00:00:00',0),(3058,0,0,'H','2526','','',3058,0,0,'2025-11-05',2508,1723,0,0,1678,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2997,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 17:32:24','','0000-00-00 00:00:00',0),(3059,0,0,'H','2526','','',3059,0,0,'2025-11-05',2509,1997,0,0,1949,'B',900.00,0.00,'7','SBI BANK','','27023','','0000-00-00','scan ','',2998,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 17:33:23','','0000-00-00 00:00:00',0),(3060,0,0,'H','2526','','',3060,0,0,'2025-11-05',2510,1998,0,0,1950,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',2999,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 17:33:28','','0000-00-00 00:00:00',0),(3061,0,0,'H','2526','','',3061,0,0,'2025-11-05',2512,1320,0,0,1281,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3000,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 17:40:26','','0000-00-00 00:00:00',0),(3062,0,0,'H','2526','','',3062,0,0,'2025-11-05',2513,2000,0,0,1952,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3001,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 17:41:02','','0000-00-00 00:00:00',0),(3063,0,0,'H','2526','','',3063,0,0,'2025-11-05',2514,53,0,0,47,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3002,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 17:45:14','','0000-00-00 00:00:00',0),(3064,0,0,'H','2526','','',3064,0,0,'2025-11-05',2515,2001,0,0,1953,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3003,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 17:47:09','','0000-00-00 00:00:00',0),(3065,0,0,'H','2526','','',3065,0,0,'2025-11-05',2517,2003,0,0,1955,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3004,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 17:49:17','','0000-00-00 00:00:00',0),(3066,0,0,'H','2526','','',3066,0,0,'2025-11-05',2516,2002,0,0,1954,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3005,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 17:50:08','','0000-00-00 00:00:00',0),(3067,0,0,'H','2526','','',3067,0,0,'2025-11-05',2518,1862,0,0,1816,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',3006,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 17:52:05','','0000-00-00 00:00:00',0),(3068,0,0,'H','2526','','',3068,0,0,'2025-11-05',2521,2006,0,0,1958,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3007,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 17:53:53','','0000-00-00 00:00:00',0),(3069,0,0,'H','2526','','',3069,0,0,'2025-11-05',2519,2004,0,0,1956,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3008,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 17:53:59','','0000-00-00 00:00:00',0),(3070,0,0,'H','2526','','',3070,0,0,'2025-11-05',2520,2005,0,0,1957,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3009,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-05 17:55:34','','0000-00-00 00:00:00',0),(3071,0,0,'H','2526','','',3071,0,0,'2025-11-05',2522,2007,0,0,1959,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3010,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-05 17:58:03','','0000-00-00 00:00:00',0),(3072,0,0,'H','2526','','',3072,0,0,'2025-11-05',2525,2010,0,0,1962,'B',700.00,0.00,'7','kotak','','57938','','0000-00-00','scan ','',3011,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 18:01:55','','0000-00-00 00:00:00',0),(3073,0,0,'H','2526','','',3073,0,0,'2025-11-05',2524,2009,0,0,1961,'B',500.00,0.00,'7','sbi','','94408','','0000-00-00','scan  ','',3012,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 18:03:14','','0000-00-00 00:00:00',0),(3074,0,0,'H','2526','','',3074,0,0,'2025-11-05',2527,2011,0,0,1963,'B',900.00,0.00,'7','SBI','','82697','','0000-00-00','SCAN','',3013,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 18:06:23','','0000-00-00 00:00:00',0),(3075,0,0,'H','2526','','',3075,0,0,'2025-11-05',2501,105,0,0,94,'D',-400.00,0.00,'CSH','','','','','2025-11-05','','',3014,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 18:07:20','','0000-00-00 00:00:00',0),(3076,0,0,'H','2526','','',3076,0,0,'2025-11-05',2501,105,0,0,94,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3015,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 18:08:23','','0000-00-00 00:00:00',0),(3077,0,0,'H','2526','','',3077,0,0,'2025-11-05',2528,2012,0,0,1964,'B',400.00,0.00,'7','sbi','','52967','','0000-00-00','scan ','',3016,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 18:11:06','','0000-00-00 00:00:00',0),(3078,0,0,'H','2526','','',3078,0,0,'2025-11-05',2529,2013,0,0,1965,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3017,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 18:11:31','','0000-00-00 00:00:00',0),(3079,0,0,'H','2526','','',3079,0,0,'2025-11-05',2531,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3018,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 18:13:02','','0000-00-00 00:00:00',0),(3080,0,0,'H','2526','','',3080,0,0,'2025-11-05',2509,1997,0,0,1949,'B',4600.00,0.00,'7','SBI','','86424','','0000-00-00','SCAN','',3019,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 18:16:30','','0000-00-00 00:00:00',0),(3081,0,0,'H','2526','','',3081,0,0,'2025-11-05',2505,1763,0,0,1719,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3020,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 18:25:22','','0000-00-00 00:00:00',0),(3082,0,0,'H','2526','','',3082,0,0,'2025-11-05',2523,2008,0,0,1960,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3021,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 18:26:41','','0000-00-00 00:00:00',0),(3083,0,0,'H','2526','','',3083,0,0,'2025-11-05',2532,1651,0,0,1606,'B',400.00,0.00,'7','hdfc','','54635','','0000-00-00','scan  ','',3022,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 18:28:59','','0000-00-00 00:00:00',0),(3084,0,0,'H','2526','','',3084,0,0,'2025-11-05',2522,2007,0,0,1959,'D',-500.00,0.00,'CSH','','','','','2025-11-05','','',3023,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-05 18:32:36','','0000-00-00 00:00:00',0),(3085,0,0,'H','2526','','',3085,0,0,'2025-11-05',2533,2014,0,0,1966,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3024,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 18:35:02','','0000-00-00 00:00:00',0),(3086,0,0,'H','2526','','',3086,0,0,'2025-11-05',2534,2015,0,0,1967,'B',700.00,0.00,'7','KOTAK','','49562','','0000-00-00','SCAN','',3025,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 18:37:22','','0000-00-00 00:00:00',0),(3087,0,0,'H','2526','','P',3087,0,0,'2025-11-05',2135,1729,0,120,0,'A',35000.00,0.00,'CRD','axis bank','','7460','','0000-00-00','','',3209,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-05 18:39:09','riya','2025-11-07 13:09:53',0),(3088,0,0,'H','2526','','',3088,0,0,'2025-11-05',2535,2016,0,0,1968,'B',500.00,0.00,'7','SBI BANK','','81212','','0000-00-00','scan ','',3026,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 18:39:21','','0000-00-00 00:00:00',0),(3089,0,0,'H','2526','','',3089,0,0,'2025-11-05',2537,2017,0,0,1969,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3027,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 18:40:40','','0000-00-00 00:00:00',0),(3090,0,0,'H','2526','','',3090,0,0,'2025-11-05',2533,2014,0,0,1966,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',3028,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 18:41:15','','0000-00-00 00:00:00',0),(3091,0,0,'H','2526','','',3091,0,0,'2025-11-05',2538,234,0,0,221,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3029,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 18:41:24','','0000-00-00 00:00:00',0),(3092,0,0,'H','2526','','',3092,0,0,'2025-11-05',2539,1068,0,0,1034,'B',400.00,0.00,'7','HDFC BANK','','36465','','0000-00-00','scan ','',3030,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 18:45:17','','0000-00-00 00:00:00',0),(3093,0,0,'H','2526','','',3093,0,0,'2025-11-05',2540,2018,0,0,1970,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3031,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 18:48:51','','0000-00-00 00:00:00',0),(3094,0,0,'H','2526','','',3094,0,0,'2025-11-05',2541,2019,0,0,1971,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3032,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 18:52:37','','0000-00-00 00:00:00',0),(3095,0,0,'H','2526','','',3095,0,0,'2025-11-05',2536,735,0,0,704,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3033,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-05 18:55:31','','0000-00-00 00:00:00',0),(3096,0,0,'H','2526','','',3096,0,0,'2025-11-05',2542,1032,0,0,1000,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3034,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 18:57:35','','0000-00-00 00:00:00',0),(3097,0,0,'H','2526','','',3097,0,0,'2025-11-05',2543,2020,0,0,1972,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3035,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 19:02:33','','0000-00-00 00:00:00',0),(3098,0,0,'H','2526','','',3098,0,0,'2025-11-05',2544,2021,0,0,1973,'B',900.00,0.00,'7','KOTAK','','91436','','0000-00-00','SCAN','',3036,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 19:05:24','','0000-00-00 00:00:00',0),(3099,0,0,'H','2526','','',3099,0,0,'2025-11-05',2541,2019,0,0,1971,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3037,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 19:15:00','','0000-00-00 00:00:00',0),(3100,0,0,'H','2526','','',3100,0,0,'2025-11-05',2541,2019,0,0,1971,'D',-700.00,0.00,'CSH','','','','','2025-11-05','','',3038,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 19:17:05','','0000-00-00 00:00:00',0),(3101,0,0,'H','2526','','',3101,0,0,'2025-11-05',2545,2022,0,0,1974,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3039,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 19:20:56','','0000-00-00 00:00:00',0),(3102,0,0,'H','2526','','',3102,0,0,'2025-11-05',2546,2023,0,0,1975,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3040,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 19:23:47','','0000-00-00 00:00:00',0),(3103,0,0,'H','2526','','',3103,0,0,'2025-11-05',2527,2011,0,0,1963,'B',3000.00,0.00,'7','SBI','','95918','','0000-00-00','SCAN','',3041,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 19:27:18','','0000-00-00 00:00:00',0),(3104,0,0,'H','2526','','',3104,0,0,'2025-11-05',2546,2023,0,0,1975,'D',-700.00,0.00,'CSH','','','','','2025-11-05','','',3042,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 19:36:21','','0000-00-00 00:00:00',0),(3105,0,0,'H','2526','','',3105,0,0,'2025-11-05',2547,2024,0,0,1976,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3043,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-05 19:38:14','','0000-00-00 00:00:00',0),(3106,0,0,'H','2526','','',3106,0,0,'2025-11-05',2549,121,0,0,110,'B',450.00,0.00,'CSH','','','','','0000-00-00','','',3044,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 19:39:53','','0000-00-00 00:00:00',0),(3107,0,0,'H','2526','','',3107,0,0,'2025-11-05',2548,120,0,0,109,'B',450.00,0.00,'CSH','','','','','0000-00-00','','',3045,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 19:40:01','','0000-00-00 00:00:00',0),(3108,0,0,'H','2526','','',3108,0,0,'2025-11-05',2550,2025,0,0,1977,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3047,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-05 20:02:03','','0000-00-00 00:00:00',0),(3109,0,0,'H','2526','','P',3109,0,0,'2025-11-05',2392,1917,0,128,0,'A',3500.00,0.00,'CSH','','','','','0000-00-00','','',3049,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-05 20:04:00','vishal','2025-11-05 20:05:18',0),(3110,0,0,'H','2526','','',3110,0,0,'2025-11-05',2551,2026,0,0,1978,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3048,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 20:04:39','','0000-00-00 00:00:00',0),(3111,0,0,'H','2526','','P',3111,0,0,'2025-11-05',2392,1917,0,128,0,'A',200.00,0.00,'7','sbi bank','','8474','','0000-00-00','','',3049,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-05 20:04:56','vishal','2025-11-05 20:05:18',0),(3112,0,0,'H','2526','','',3112,0,0,'2025-11-05',2552,2027,0,0,1979,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3050,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-05 20:13:22','','0000-00-00 00:00:00',0),(3113,0,0,'H','2526','','',3113,0,0,'2025-11-05',2526,1158,0,0,1602,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3051,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-05 20:27:42','','0000-00-00 00:00:00',0),(3114,0,0,'H','2526','','P',3114,0,0,'2025-11-05',2437,1943,0,130,0,'A',5000.00,0.00,'2','CENTRAL BANK','','0164','','0000-00-00','','',3053,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-05 21:09:40','vishal','2025-11-05 21:09:58',0),(3115,0,0,'H','2526','','',3115,0,0,'2025-11-06',2553,2028,0,0,1980,'B',1100.00,0.00,'7','sbi','','87528','','0000-00-00','scan','',3054,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 08:36:20','','0000-00-00 00:00:00',0),(3116,0,0,'H','2526','','',3116,0,0,'2025-11-06',2554,2029,0,0,1981,'B',1400.00,0.00,'7','standard bank','','13265','','0000-00-00','scan','',3055,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 09:12:14','','0000-00-00 00:00:00',0),(3117,0,0,'H','2526','','P',3117,0,0,'2025-11-06',2555,2030,0,131,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',3257,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-06 09:31:48','riya','2025-11-07 19:08:07',0),(3118,0,0,'H','2526','','',3118,0,0,'2025-11-06',2557,1542,0,0,1501,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3056,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 09:39:15','','0000-00-00 00:00:00',0),(3119,0,0,'H','2526','','P',3119,0,0,'2025-11-06',2555,2030,0,131,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',3257,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-06 09:47:37','riya','2025-11-07 19:08:07',0),(3120,0,0,'H','2526','','',3120,0,0,'2025-11-06',2558,2032,0,0,1982,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3057,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 09:48:52','','0000-00-00 00:00:00',0),(3121,0,0,'H','2526','','',3121,0,0,'2025-11-06',2559,2033,0,0,1983,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3058,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 09:50:36','','0000-00-00 00:00:00',0),(3122,0,0,'H','2526','','',3122,0,0,'2025-11-06',2560,2034,0,0,1984,'B',800.00,0.00,'7','SBI','','06702','','0000-00-00','scan','',3059,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 10:02:25','','0000-00-00 00:00:00',0),(3123,0,0,'H','2526','','',3123,0,0,'2025-11-06',2563,2037,0,0,1986,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3060,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-06 10:20:47','','0000-00-00 00:00:00',0),(3124,0,0,'H','2526','','',3124,0,0,'2025-11-06',2562,2036,0,0,1985,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3061,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-06 10:21:47','','0000-00-00 00:00:00',0),(3125,0,0,'H','2526','','',3125,0,0,'2025-11-06',2564,2038,0,0,1987,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3062,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 10:26:13','','0000-00-00 00:00:00',0),(3126,0,0,'H','2526','','',3126,0,0,'2025-11-06',2565,2039,0,0,1988,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3063,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 10:30:06','','0000-00-00 00:00:00',0),(3127,0,0,'H','2526','','',3127,0,0,'2025-11-06',2566,2040,0,0,1989,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3064,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 10:32:51','','0000-00-00 00:00:00',0),(3128,0,0,'H','2526','','',3128,0,0,'2025-11-06',2567,1289,0,0,1248,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3065,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 10:49:31','','0000-00-00 00:00:00',0),(3129,0,0,'H','2526','','',3129,0,0,'2025-11-06',2569,893,0,0,861,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3066,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-06 11:01:59','','0000-00-00 00:00:00',0),(3130,0,0,'H','2526','','',3130,0,0,'2025-11-06',2570,2041,0,0,1990,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3067,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 11:02:16','','0000-00-00 00:00:00',0),(3131,0,0,'H','2526','','',3131,0,0,'2025-11-06',2571,2042,0,0,1991,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3068,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 11:03:44','','0000-00-00 00:00:00',0),(3132,0,0,'H','2526','','',3132,0,0,'2025-11-06',2572,2043,0,0,1992,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3069,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 11:05:43','','0000-00-00 00:00:00',0),(3133,0,0,'H','2526','','',3133,0,0,'2025-11-06',2569,893,0,0,861,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',3070,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 11:12:43','','0000-00-00 00:00:00',0),(3134,0,0,'H','2526','','',3134,0,0,'2025-11-06',2573,122,0,0,111,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',3071,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-06 11:18:29','','0000-00-00 00:00:00',0),(3135,0,0,'H','2526','','',3135,0,0,'2025-11-06',2574,2044,0,0,1993,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3072,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 11:19:30','','0000-00-00 00:00:00',0),(3136,0,0,'H','2526','','',3136,0,0,'2025-11-06',2575,2045,0,0,1994,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3073,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 11:19:41','','0000-00-00 00:00:00',0),(3137,0,0,'H','2526','','',3137,0,0,'2025-11-06',2576,2046,0,0,1995,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3074,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 11:22:43','','0000-00-00 00:00:00',0),(3138,0,0,'H','2526','','',3138,0,0,'2025-11-06',2577,2047,0,0,1996,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3075,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 11:26:03','','0000-00-00 00:00:00',0),(3139,0,0,'H','2526','','',3139,0,0,'2025-11-06',2578,26,0,0,25,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3076,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 11:27:44','','0000-00-00 00:00:00',0),(3140,0,0,'H','2526','','',3140,0,0,'2025-11-06',2579,2048,0,0,1997,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3077,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 11:28:54','','0000-00-00 00:00:00',0),(3141,0,0,'H','2526','','',3141,0,0,'2025-11-06',2580,2049,0,0,1998,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3078,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 11:31:17','','0000-00-00 00:00:00',0),(3142,0,0,'H','2526','','',3142,0,0,'2025-11-06',2562,2036,0,0,1985,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',3079,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-06 11:33:00','','0000-00-00 00:00:00',0),(3143,0,0,'H','2526','','',3143,0,0,'2025-11-06',2582,2050,0,0,1999,'B',500.00,0.00,'7','sbi','','37448','','0000-00-00','scan','',3080,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 11:39:41','','0000-00-00 00:00:00',0),(3144,0,0,'H','2526','','',3144,0,0,'2025-11-06',2583,2051,0,0,2000,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3081,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 11:39:43','','0000-00-00 00:00:00',0),(3145,0,0,'H','2526','','',3145,0,0,'2025-11-06',2584,524,0,0,499,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3082,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 11:41:44','','0000-00-00 00:00:00',0),(3146,0,0,'H','2526','','',3146,0,0,'2025-11-06',2571,2042,0,0,1991,'B',4400.00,0.00,'CRD','ICICI BANK','3196','3196','','0000-00-00','CARD','',3083,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 11:48:50','','0000-00-00 00:00:00',0),(3147,0,0,'H','2526','','',3147,0,0,'2025-11-06',2570,2041,0,0,1990,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',3084,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 11:52:49','','0000-00-00 00:00:00',0),(3148,0,0,'H','2526','','',3148,0,0,'2025-11-06',2585,2052,0,0,2001,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3085,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 11:55:11','','0000-00-00 00:00:00',0),(3149,0,0,'H','2526','','',3149,0,0,'2025-11-06',2586,2053,0,0,2002,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3086,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 11:59:32','','0000-00-00 00:00:00',0),(3150,0,0,'H','2526','','',3150,0,0,'2025-11-06',2581,1569,0,0,1528,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3087,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-06 12:02:35','','0000-00-00 00:00:00',0),(3151,0,0,'H','2526','','',3151,0,0,'2025-11-06',2587,2054,0,0,2003,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3088,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 12:02:47','','0000-00-00 00:00:00',0),(3152,0,0,'H','2526','','',3152,0,0,'2025-11-06',2588,2055,0,0,2004,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3089,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 12:04:55','','0000-00-00 00:00:00',0),(3153,0,0,'H','2526','','',3153,0,0,'2025-11-06',2590,2056,0,0,2005,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3090,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 12:17:21','','0000-00-00 00:00:00',0),(3154,0,0,'H','2526','','',3154,0,0,'2025-11-06',2589,2022,0,0,1974,'B',4000.00,0.00,'7','SBI BANK','','77463','','0000-00-00','scan ','',3091,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 12:18:31','','0000-00-00 00:00:00',0),(3155,0,0,'H','2526','','',3155,0,0,'2025-11-06',2572,2043,0,0,1992,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',3092,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 12:36:52','','0000-00-00 00:00:00',0),(3156,0,0,'H','2526','','',3156,0,0,'2025-11-06',2592,2057,0,0,2006,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3093,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 12:38:02','','0000-00-00 00:00:00',0),(3157,0,0,'H','2526','','',3157,0,0,'2025-11-06',2593,2058,0,0,2007,'B',500.00,0.00,'7','axis bank','','15172','','0000-00-00','scan ','',3094,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 12:43:15','','0000-00-00 00:00:00',0),(3158,0,0,'H','2526','','',3158,0,0,'2025-11-06',2591,2026,0,0,1978,'B',3000.00,0.00,'7','bob','','47731','','0000-00-00','scan ','',3095,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-06 12:43:49','','0000-00-00 00:00:00',0),(3159,0,0,'H','2526','','',3159,0,0,'2025-11-06',2594,869,0,0,838,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3096,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 12:47:26','','0000-00-00 00:00:00',0),(3160,0,0,'H','2526','','',3160,0,0,'2025-11-06',2595,2059,0,0,2008,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3097,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 12:54:49','','0000-00-00 00:00:00',0),(3161,0,0,'H','2526','','',3161,0,0,'2025-11-06',2596,2060,0,0,2009,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3098,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-06 12:56:26','','0000-00-00 00:00:00',0),(3162,0,0,'H','2526','','P',3162,0,0,'2025-11-06',2298,1846,0,127,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',3204,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-06 12:56:32','riya','2025-11-07 12:29:44',0),(3163,0,0,'H','2526','','',3163,0,0,'2025-11-06',2574,2044,0,0,1993,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',3099,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 13:01:53','','0000-00-00 00:00:00',0),(3164,0,0,'H','2526','','',3164,0,0,'2025-11-06',2577,2047,0,0,1996,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',3100,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 13:12:37','','0000-00-00 00:00:00',0),(3165,0,0,'H','2526','','',3165,0,0,'2025-11-06',2597,2061,0,0,2010,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3101,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 13:14:35','','0000-00-00 00:00:00',0),(3166,0,0,'H','2526','','',3166,0,0,'2025-11-06',2598,2062,0,0,2011,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3102,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 13:14:47','','0000-00-00 00:00:00',0),(3167,0,0,'H','2526','','',3167,0,0,'2025-11-06',2597,2061,0,0,2010,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',3103,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 13:47:05','','0000-00-00 00:00:00',0),(3168,0,0,'H','2526','','',3168,0,0,'2025-11-06',2600,1628,0,0,1584,'B',300.00,0.00,'7','SBI BANK','','69735','','0000-00-00','scan ','',3104,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 13:57:39','','0000-00-00 00:00:00',0),(3169,0,0,'H','2526','','',3169,0,0,'2025-11-06',2601,1372,0,0,1332,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3105,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-06 14:05:35','','0000-00-00 00:00:00',0),(3170,0,0,'H','2526','','',3170,0,0,'2025-11-06',2603,2065,0,0,2012,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3107,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 16:10:25','','0000-00-00 00:00:00',0),(3171,0,0,'H','2526','','',3171,0,0,'2025-11-06',2605,2066,0,0,2013,'B',500.00,0.00,'7','sbi','','63101','','0000-00-00','scan','',3108,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-06 16:33:11','','0000-00-00 00:00:00',0),(3172,0,0,'H','2526','','',3172,0,0,'2025-11-06',2607,2067,0,0,2014,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3109,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 16:55:25','','0000-00-00 00:00:00',0),(3173,0,0,'H','2526','','',3173,0,0,'2025-11-06',2608,1324,0,0,1285,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3110,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 17:00:08','','0000-00-00 00:00:00',0),(3174,0,0,'H','2526','','',3174,0,0,'2025-11-06',2610,2021,0,0,1973,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',3111,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 17:17:57','','0000-00-00 00:00:00',0),(3175,0,0,'H','2526','','',3175,0,0,'2025-11-06',2611,2068,0,0,2015,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3112,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 17:21:03','','0000-00-00 00:00:00',0),(3176,0,0,'H','2526','','',3176,0,0,'2025-11-06',2603,2065,0,0,2012,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',3113,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 17:21:18','','0000-00-00 00:00:00',0),(3177,0,0,'H','2526','','',3177,0,0,'2025-11-06',2612,2069,0,0,2016,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3114,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 17:28:40','','0000-00-00 00:00:00',0),(3178,0,0,'H','2526','','',3178,0,0,'2025-11-06',2613,2070,0,0,2017,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3115,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 17:37:04','','0000-00-00 00:00:00',0),(3179,0,0,'H','2526','','',3179,0,0,'2025-11-06',2609,1242,0,0,1203,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3116,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-06 17:38:00','','0000-00-00 00:00:00',0),(3180,0,0,'H','2526','','',3180,0,0,'2025-11-06',2614,897,0,0,865,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3117,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 17:42:37','','0000-00-00 00:00:00',0),(3181,0,0,'H','2526','','',3181,0,0,'2025-11-06',2615,1714,0,0,1669,'B',300.00,0.00,'7','HDFC BANK','','35039','','0000-00-00','scan ','',3118,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 17:47:22','','0000-00-00 00:00:00',0),(3182,0,0,'H','2526','','',3182,0,0,'2025-11-06',2616,2071,0,0,2018,'B',700.00,0.00,'7','kotak','','81508','','0000-00-00','scan ','',3119,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-06 17:48:58','','0000-00-00 00:00:00',0),(3183,0,0,'H','2526','','',3183,0,0,'2025-11-06',2617,2072,0,0,2019,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3120,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 17:51:22','','0000-00-00 00:00:00',0),(3184,0,0,'H','2526','','',3184,0,0,'2025-11-06',2618,2073,0,0,2020,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3121,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 17:52:56','','0000-00-00 00:00:00',0),(3185,0,0,'H','2526','','',3185,0,0,'2025-11-06',2619,2074,0,0,2021,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3122,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 17:53:44','','0000-00-00 00:00:00',0),(3186,0,0,'H','2526','','',3186,0,0,'2025-11-06',2611,2068,0,0,2015,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',3123,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 17:55:24','','0000-00-00 00:00:00',0),(3187,0,0,'H','2526','','',3187,0,0,'2025-11-06',2620,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3124,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-06 17:59:03','','0000-00-00 00:00:00',0),(3188,0,0,'H','2526','','',3188,0,0,'2025-11-06',2617,2072,0,0,2019,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',3125,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 18:00:36','','0000-00-00 00:00:00',0),(3189,0,0,'H','2526','','',3189,0,0,'2025-11-06',2621,2075,0,0,2022,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3126,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 18:03:30','','0000-00-00 00:00:00',0),(3190,0,0,'H','2526','','',3190,0,0,'2025-11-06',2618,2073,0,0,2020,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3127,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-06 18:07:12','','0000-00-00 00:00:00',0),(3191,0,0,'H','2526','','',3191,0,0,'2025-11-06',2613,2070,0,0,2017,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',3128,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 18:12:20','','0000-00-00 00:00:00',0),(3192,0,0,'H','2526','','',3192,0,0,'2025-11-06',2622,2076,0,0,2023,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3129,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 18:21:17','','0000-00-00 00:00:00',0),(3193,0,0,'H','2526','','',3193,0,0,'2025-11-06',2625,2079,0,0,2025,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3130,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 18:24:21','','0000-00-00 00:00:00',0),(3194,0,0,'H','2526','','P',3194,0,0,'2025-11-06',2624,2078,0,136,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',3356,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-06 18:25:50','riya','2025-11-09 12:22:32',0),(3195,0,0,'H','2526','','',3195,0,0,'2025-11-06',2627,2081,0,0,2027,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3131,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 18:26:51','','0000-00-00 00:00:00',0),(3196,0,0,'H','2526','','',3196,0,0,'2025-11-06',2626,2080,0,0,2026,'B',400.00,0.00,'7','ICICI BANK','','64478','','0000-00-00','scan ','',3132,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 18:27:31','','0000-00-00 00:00:00',0),(3197,0,0,'H','2526','','',3197,0,0,'2025-11-06',2628,2082,0,0,2028,'B',700.00,0.00,'7','ICICI BANK','','78026','','0000-00-00','scan ','',3133,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 18:31:43','','0000-00-00 00:00:00',0),(3198,0,0,'H','2526','','',3198,0,0,'2025-11-06',2629,2083,0,0,2029,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3134,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 18:37:05','','0000-00-00 00:00:00',0),(3199,0,0,'H','2526','','',3199,0,0,'2025-11-06',2631,842,0,0,811,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3135,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 18:42:32','','0000-00-00 00:00:00',0),(3200,0,0,'H','2526','','',3200,0,0,'2025-11-06',2632,1763,0,0,1719,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3136,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-06 18:48:13','','0000-00-00 00:00:00',0),(3201,0,0,'H','2526','','',3201,0,0,'2025-11-06',2633,1517,0,0,1476,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3137,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-06 18:49:15','','0000-00-00 00:00:00',0),(3202,0,0,'H','2526','','',3202,0,0,'2025-11-06',2634,2085,0,0,2031,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3138,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 18:49:46','','0000-00-00 00:00:00',0),(3203,0,0,'H','2526','','',3203,0,0,'2025-11-06',2635,1562,0,0,1521,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3139,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-06 18:50:46','','0000-00-00 00:00:00',0),(3204,0,0,'H','2526','','',3204,0,0,'2025-11-06',2636,2086,0,0,2032,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3140,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 18:52:18','','0000-00-00 00:00:00',0),(3205,0,0,'H','2526','','',3205,0,0,'2025-11-06',2604,1408,0,0,1368,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3141,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 18:54:45','','0000-00-00 00:00:00',0),(3206,0,0,'H','2526','','',3206,0,0,'2025-11-06',2638,2087,0,0,2033,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3142,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-06 18:56:13','','0000-00-00 00:00:00',0),(3207,0,0,'H','2526','','',3207,0,0,'2025-11-06',2637,1821,0,0,1775,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3143,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-06 18:59:12','','0000-00-00 00:00:00',0),(3208,0,0,'H','2526','','',3208,0,0,'2025-11-06',2639,2088,0,0,2034,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3144,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-06 19:00:17','','0000-00-00 00:00:00',0),(3209,0,0,'H','2526','','',3209,0,0,'2025-11-06',2630,2084,0,0,2030,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3145,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-06 19:13:31','','0000-00-00 00:00:00',0),(3210,0,0,'H','2526','','',3210,0,0,'2025-11-06',2630,2084,0,0,2030,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',3146,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-06 19:20:46','','0000-00-00 00:00:00',0),(3211,0,0,'H','2526','','',3211,0,0,'2025-11-06',2623,2077,0,0,2024,'B',1400.00,0.00,'7','KOTAK MAHINDRA','','96306','','0000-00-00','SCAN','',3147,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-06 19:20:56','','0000-00-00 00:00:00',0),(3212,0,0,'H','2526','','P',3212,0,0,'2025-09-28',2640,2089,0,137,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',3149,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-06 19:37:19','vishal','2025-11-06 19:38:36',0),(3213,0,0,'H','2526','','P',3213,0,0,'2025-10-02',2640,2089,0,137,0,'A',26300.00,0.00,'CSH','','','','','0000-00-00','','',3149,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-06 19:37:58','vishal','2025-11-06 19:38:36',0),(3214,0,0,'H','2526','','',3214,0,0,'2025-11-06',2590,2056,0,0,2005,'B',10000.00,0.00,'7','hdfc','','13938','','0000-00-00','scan ','',3150,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-06 19:59:08','','0000-00-00 00:00:00',0),(3215,0,0,'H','2526','','',3215,0,0,'2025-11-06',430,403,0,32,0,'B',127170.00,0.00,'1','HDFC ERGO','','32','','0000-00-00','','',3151,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(3216,0,0,'H','2526','','',3216,0,0,'2025-11-07',2642,2091,0,0,2036,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',3152,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 08:54:39','','0000-00-00 00:00:00',0),(3217,0,0,'H','2526','','',3217,0,0,'2025-11-07',2643,2092,0,0,2037,'B',500.00,0.00,'7','BGGB','','50586','','0000-00-00','scan','',3153,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 09:03:34','','0000-00-00 00:00:00',0),(3218,0,0,'H','2526','','',3218,0,0,'2025-11-07',2644,2093,0,0,2038,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3154,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 09:32:30','','0000-00-00 00:00:00',0),(3219,0,0,'H','2526','','',3219,0,0,'2025-11-07',2645,2094,0,0,2039,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3155,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 09:44:01','','0000-00-00 00:00:00',0),(3220,0,0,'H','2526','','',3220,0,0,'2025-11-07',2646,2095,0,0,2040,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3156,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 09:45:01','','0000-00-00 00:00:00',0),(3221,0,0,'H','2526','','',3221,0,0,'2025-11-07',2647,2096,0,0,2041,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3157,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 09:48:23','','0000-00-00 00:00:00',0),(3222,0,0,'H','2526','','',3222,0,0,'2025-11-07',2648,2097,0,0,2042,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3158,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 09:57:37','','0000-00-00 00:00:00',0),(3223,0,0,'H','2526','','',3223,0,0,'2025-11-07',2649,10,0,0,10,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3159,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 09:59:04','','0000-00-00 00:00:00',0),(3224,0,0,'H','2526','','',3224,0,0,'2025-11-07',2651,2099,0,0,2044,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3160,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 10:07:32','','0000-00-00 00:00:00',0),(3225,0,0,'H','2526','','',3225,0,0,'2025-11-07',2650,2098,0,0,2043,'B',1100.00,0.00,'7','SOUTH INDIAN','','58635','','0000-00-00','SCAN','',3161,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-07 10:14:03','','0000-00-00 00:00:00',0),(3226,0,0,'H','2526','','',3226,0,0,'2025-11-07',2652,171,0,0,158,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3162,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 10:30:17','','0000-00-00 00:00:00',0),(3227,0,0,'H','2526','','',3227,0,0,'2025-11-07',2653,2100,0,0,2045,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3163,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 10:34:09','','0000-00-00 00:00:00',0),(3228,0,0,'H','2526','','',3228,0,0,'2025-11-07',2654,2101,0,0,2046,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3164,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 10:36:59','','0000-00-00 00:00:00',0),(3229,0,0,'H','2526','','',3229,0,0,'2025-11-07',2655,2102,0,0,2047,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3165,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 10:40:00','','0000-00-00 00:00:00',0),(3230,0,0,'H','2526','','',3230,0,0,'2025-11-07',2656,2103,0,0,2048,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3166,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 10:55:40','','0000-00-00 00:00:00',0),(3231,0,0,'H','2526','','',3231,0,0,'2025-11-07',2657,2104,0,0,2049,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3167,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-07 10:58:15','','0000-00-00 00:00:00',0),(3232,0,0,'H','2526','','',3232,0,0,'2025-11-07',2658,2105,0,0,2050,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3168,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 11:00:35','','0000-00-00 00:00:00',0),(3233,0,0,'H','2526','','',3233,0,0,'2025-11-07',2646,2095,0,0,2040,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',3169,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 11:01:39','','0000-00-00 00:00:00',0),(3234,0,0,'H','2526','','',3234,0,0,'2025-11-07',2659,2106,0,0,2051,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3170,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 11:02:55','','0000-00-00 00:00:00',0),(3235,0,0,'H','2526','','',3235,0,0,'2025-11-07',2660,1580,0,0,2052,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3171,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 11:07:11','','0000-00-00 00:00:00',0),(3236,0,0,'H','2526','','',3236,0,0,'2025-11-07',2661,2107,0,0,2053,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3172,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 11:07:24','','0000-00-00 00:00:00',0),(3237,0,0,'H','2526','','',3237,0,0,'2025-11-07',2662,1573,0,0,1532,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3173,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 11:13:51','','0000-00-00 00:00:00',0),(3238,0,0,'H','2526','','',3238,0,0,'2025-11-07',2653,2100,0,0,2045,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',3174,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 11:14:43','','0000-00-00 00:00:00',0),(3239,0,0,'H','2526','','',3239,0,0,'2025-11-07',2663,2108,0,0,2054,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3175,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 11:17:30','','0000-00-00 00:00:00',0),(3240,0,0,'H','2526','','',3240,0,0,'2025-11-07',2665,1383,0,0,1343,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3176,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-07 11:20:03','','0000-00-00 00:00:00',0),(3241,0,0,'H','2526','','',3241,0,0,'2025-11-07',2664,1388,0,0,1348,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3177,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 11:20:16','','0000-00-00 00:00:00',0),(3242,0,0,'H','2526','','',3242,0,0,'2025-11-07',2666,2109,0,0,2055,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',3178,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 11:26:42','','0000-00-00 00:00:00',0),(3243,0,0,'H','2526','','',3243,0,0,'2025-11-07',2667,2110,0,0,2056,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3179,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-07 11:27:21','','0000-00-00 00:00:00',0),(3244,0,0,'H','2526','','',3244,0,0,'2025-11-07',2668,2111,0,0,2057,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3180,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 11:27:46','','0000-00-00 00:00:00',0),(3245,0,0,'H','2526','','',3245,0,0,'2025-11-07',2670,2113,0,0,2059,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3181,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 11:32:50','','0000-00-00 00:00:00',0),(3246,0,0,'H','2526','','',3246,0,0,'2025-11-07',2669,2112,0,0,2058,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3182,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 11:33:03','','0000-00-00 00:00:00',0),(3247,0,0,'H','2526','','',3247,0,0,'2025-11-07',2671,1976,0,0,1928,'B',100.00,0.00,'7','SBI','','65079','','0000-00-00','SCAN','',3183,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-07 11:35:40','','0000-00-00 00:00:00',0),(3248,0,0,'H','2526','','',3248,0,0,'2025-11-07',2672,2114,0,0,2060,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3184,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 11:37:38','','0000-00-00 00:00:00',0),(3249,0,0,'H','2526','','',3249,0,0,'2025-11-07',2673,2115,0,0,2061,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3185,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 11:39:53','','0000-00-00 00:00:00',0),(3250,0,0,'H','2526','','',3250,0,0,'2025-11-07',2674,2116,0,0,2062,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3186,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 11:46:47','','0000-00-00 00:00:00',0),(3251,0,0,'H','2526','','',3251,0,0,'2025-11-07',2675,2117,0,0,2063,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3187,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 11:55:27','','0000-00-00 00:00:00',0),(3252,0,0,'H','2526','','',3252,0,0,'2025-11-07',2676,2118,0,0,2064,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',3188,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 11:55:41','','0000-00-00 00:00:00',0),(3253,0,0,'H','2526','','',3253,0,0,'2025-11-07',2675,2117,0,0,2063,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',3189,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 11:59:07','','0000-00-00 00:00:00',0),(3254,0,0,'H','2526','','',3254,0,0,'2025-11-07',2658,2105,0,0,2050,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',3190,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 11:59:46','','0000-00-00 00:00:00',0),(3255,0,0,'H','2526','','',3255,0,0,'2025-11-07',2678,356,0,0,340,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3191,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 12:01:00','','0000-00-00 00:00:00',0),(3256,0,0,'H','2526','','',3256,0,0,'2025-11-07',2679,2119,0,0,2065,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3192,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-07 12:02:25','','0000-00-00 00:00:00',0),(3257,0,0,'H','2526','','',3257,0,0,'2025-11-07',2680,2120,0,0,2066,'B',900.00,0.00,'7','sbi','','69704','','0000-00-00','scan','',3193,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 12:03:47','','0000-00-00 00:00:00',0),(3258,0,0,'H','2526','','',3258,0,0,'2025-11-07',2681,1714,0,0,1669,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3194,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-07 12:06:09','','0000-00-00 00:00:00',0),(3259,0,0,'H','2526','','',3259,0,0,'2025-11-07',2682,2121,0,0,2067,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3195,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 12:06:14','','0000-00-00 00:00:00',0),(3260,0,0,'H','2526','','',3260,0,0,'2025-11-07',2683,2122,0,0,2068,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3196,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 12:08:01','','0000-00-00 00:00:00',0),(3261,0,0,'H','2526','','',3261,0,0,'2025-11-07',2684,2123,0,0,2069,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3197,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 12:09:48','','0000-00-00 00:00:00',0),(3262,0,0,'H','2526','','',3262,0,0,'2025-11-07',2685,2124,0,0,2070,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3198,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 12:11:04','','0000-00-00 00:00:00',0),(3263,0,0,'H','2526','','',3263,0,0,'2025-11-07',2686,1026,0,0,994,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3200,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 12:11:52','','0000-00-00 00:00:00',0),(3264,0,0,'H','2526','','',3264,0,0,'2025-11-07',2673,2115,0,0,2061,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',3201,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 12:15:08','','0000-00-00 00:00:00',0),(3265,0,0,'H','2526','','P',3265,0,0,'2025-11-07',2298,1846,0,127,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',3204,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-07 12:28:46','riya','2025-11-07 12:29:44',0),(3266,0,0,'H','2526','','',3266,0,0,'2025-11-07',2655,2102,0,0,2047,'B',3500.00,0.00,'7','sbi','','18453','','0000-00-00','scan','',3203,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 12:28:50','','0000-00-00 00:00:00',0),(3267,0,0,'H','2526','','',3267,0,0,'2025-11-07',2687,2125,0,0,2071,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3205,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-07 12:41:42','','0000-00-00 00:00:00',0),(3268,0,0,'H','2526','','',3268,0,0,'2025-11-07',2659,2106,0,0,2051,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3206,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-07 12:50:49','','0000-00-00 00:00:00',0),(3269,0,0,'H','2526','','',3269,0,0,'2025-11-07',2688,2126,0,0,2072,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3208,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-07 13:01:22','','0000-00-00 00:00:00',0),(3270,0,0,'H','2526','','P',3270,0,0,'2025-11-07',2135,1729,0,120,0,'A',5150.00,0.00,'7','HDFC BANK ','','113783787537','','0000-00-00','SCAN','',3209,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-07 13:09:07','riya','2025-11-07 13:09:53',0),(3271,0,0,'H','2526','','',3271,0,0,'2025-11-07',2689,2127,0,0,2073,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3210,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 13:24:43','','0000-00-00 00:00:00',0),(3272,0,0,'H','2526','','',3272,0,0,'2025-11-07',2690,2128,0,0,2074,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3211,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 13:34:22','','0000-00-00 00:00:00',0),(3273,0,0,'H','2526','','P',3273,0,0,'2025-11-07',2691,2127,0,138,0,'A',6000.00,0.00,'7','ICICI','','567731027597','','0000-00-00','SCAN','',3561,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-07 13:42:08','riya','2025-11-11 12:55:05',0),(3274,0,0,'H','2526','','',3274,0,0,'2025-11-07',2692,2129,0,0,2075,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3212,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 13:50:16','','0000-00-00 00:00:00',0),(3275,0,0,'H','2526','','',3275,0,0,'2025-11-07',2684,2123,0,0,2069,'B',4200.00,0.00,'CSH','','','','','0000-00-00','','',3213,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 13:54:32','','0000-00-00 00:00:00',0),(3276,0,0,'H','2526','','',3276,0,0,'2025-11-07',2685,2124,0,0,2070,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',3214,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 14:05:56','','0000-00-00 00:00:00',0),(3277,0,0,'H','2526','','',3277,0,0,'2025-11-07',2693,2130,0,0,2076,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3215,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-07 14:53:40','','0000-00-00 00:00:00',0),(3278,0,0,'H','2526','','P',3278,0,0,'2025-11-06',2602,2064,0,135,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',3318,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-07 15:39:36','vishal','2025-11-08 12:23:53',0),(3279,0,0,'H','2526','','',3279,0,0,'2025-11-07',2694,2131,0,0,2077,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3216,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 16:06:00','','0000-00-00 00:00:00',0),(3280,0,0,'H','2526','','',3280,0,0,'2025-11-07',2695,2132,0,0,2078,'B',500.00,0.00,'7','sbi','','93713','','0000-00-00','scan','',3217,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 16:35:54','','0000-00-00 00:00:00',0),(3281,0,0,'H','2526','','',3281,0,0,'2025-11-07',2697,2133,0,0,2079,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3218,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-07 16:41:17','','0000-00-00 00:00:00',0),(3282,0,0,'H','2526','','',3282,0,0,'2025-11-07',2701,2137,0,0,2083,'B',500.00,0.00,'7','BOB','','89107','','0000-00-00','scan','',3219,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 16:58:12','','0000-00-00 00:00:00',0),(3283,0,0,'H','2526','','',3283,0,0,'2025-11-07',2703,2139,0,0,2085,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3220,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 17:05:24','','0000-00-00 00:00:00',0),(3284,0,0,'H','2526','','',3284,0,0,'2025-11-07',2704,2140,0,0,2086,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3221,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 17:08:17','','0000-00-00 00:00:00',0),(3285,0,0,'H','2526','','',3285,0,0,'2025-11-07',2705,220,0,0,207,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3222,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 17:10:22','','0000-00-00 00:00:00',0),(3286,0,0,'H','2526','','',3286,0,0,'2025-11-07',2707,2141,0,0,2087,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3223,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 17:14:34','','0000-00-00 00:00:00',0),(3287,0,0,'H','2526','','',3287,0,0,'2025-11-07',2708,2142,0,0,2088,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3224,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 17:28:04','','0000-00-00 00:00:00',0),(3288,0,0,'H','2526','','',3288,0,0,'2025-11-07',2709,1591,0,0,1548,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3225,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 17:29:22','','0000-00-00 00:00:00',0),(3289,0,0,'H','2526','','',3289,0,0,'2025-11-07',2710,2143,0,0,2089,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3226,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 17:30:31','','0000-00-00 00:00:00',0),(3290,0,0,'H','2526','','',3290,0,0,'2025-11-07',2711,2144,0,0,2090,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3227,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 17:33:35','','0000-00-00 00:00:00',0),(3291,0,0,'H','2526','','',3291,0,0,'2025-11-07',2712,2145,0,0,2091,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3228,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 17:35:38','','0000-00-00 00:00:00',0),(3292,0,0,'H','2526','','',3292,0,0,'2025-11-07',2713,2146,0,0,2092,'B',300.00,0.00,'7','indian bank','','51525','','0000-00-00','scan                          ','',3229,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-07 17:39:03','','0000-00-00 00:00:00',0),(3293,0,0,'H','2526','','',3293,0,0,'2025-11-07',2714,2147,0,0,2093,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3230,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 17:39:19','','0000-00-00 00:00:00',0),(3294,0,0,'H','2526','','',3294,0,0,'2025-11-07',2715,1428,0,0,1387,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3231,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 17:39:32','','0000-00-00 00:00:00',0),(3295,0,0,'H','2526','','',3295,0,0,'2025-11-07',2716,2148,0,0,2094,'B',500.00,0.00,'7','axis bank','','07337','','0000-00-00','scan ','',3232,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 17:42:06','','0000-00-00 00:00:00',0),(3296,0,0,'H','2526','','',3296,0,0,'2025-11-07',2693,2130,0,0,2076,'B',3000.00,0.00,'2','HDFC','3197','3197','','0000-00-00','CARD','',3233,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 17:42:57','','0000-00-00 00:00:00',0),(3297,0,0,'H','2526','','',3297,0,0,'2025-11-07',2717,1518,0,0,1477,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3234,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 17:43:35','','0000-00-00 00:00:00',0),(3298,0,0,'H','2526','','',3298,0,0,'2025-11-07',2718,2128,0,0,2074,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',3235,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 17:47:30','','0000-00-00 00:00:00',0),(3299,0,0,'H','2526','','',3299,0,0,'2025-11-07',2720,1763,0,0,1719,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3236,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-07 17:52:37','','0000-00-00 00:00:00',0),(3300,0,0,'H','2526','','',3300,0,0,'2025-11-07',2721,2149,0,0,2096,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3237,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 17:57:32','','0000-00-00 00:00:00',0),(3301,0,0,'H','2526','','',3301,0,0,'2025-11-07',2723,1172,0,0,1132,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3238,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-07 18:07:54','','0000-00-00 00:00:00',0),(3302,0,0,'H','2526','','',3302,0,0,'2025-11-07',2724,1140,0,0,1102,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3239,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-07 18:10:20','','0000-00-00 00:00:00',0),(3303,0,0,'H','2526','','',3303,0,0,'2025-11-07',2725,2151,0,0,2098,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3240,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-07 18:11:21','','0000-00-00 00:00:00',0),(3304,0,0,'H','2526','','',3304,0,0,'2025-11-07',2726,886,0,0,854,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3241,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 18:12:28','','0000-00-00 00:00:00',0),(3305,0,0,'H','2526','','',3305,0,0,'2025-11-07',2727,2152,0,0,2099,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3242,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-07 18:16:53','','0000-00-00 00:00:00',0),(3306,0,0,'H','2526','','',3306,0,0,'2025-11-07',2729,2153,0,0,2100,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3243,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-07 18:20:34','','0000-00-00 00:00:00',0),(3307,0,0,'H','2526','','',3307,0,0,'2025-11-07',2728,974,0,0,943,'B',500.00,0.00,'7','ICICI BANK','','10470','','0000-00-00','CARD','',3244,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 18:21:06','','0000-00-00 00:00:00',0),(3308,0,0,'H','2526','','',3308,0,0,'2025-11-07',2730,1788,0,0,2101,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3245,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-07 18:22:52','','0000-00-00 00:00:00',0),(3309,0,0,'H','2526','','',3309,0,0,'2025-11-07',2731,2154,0,0,2102,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3246,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 18:25:16','','0000-00-00 00:00:00',0),(3310,0,0,'H','2526','','',3310,0,0,'2025-11-07',2721,2149,0,0,2096,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',3247,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 18:27:55','','0000-00-00 00:00:00',0),(3311,0,0,'H','2526','','',3311,0,0,'2025-11-07',2708,2142,0,0,2088,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3248,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 18:30:20','','0000-00-00 00:00:00',0),(3312,0,0,'H','2526','','',3312,0,0,'2025-11-07',2732,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3249,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 18:33:17','','0000-00-00 00:00:00',0),(3313,0,0,'H','2526','','',3313,0,0,'2025-11-07',2722,2150,0,0,2097,'B',700.00,0.00,'7','IDBI BANK','','23039','','0000-00-00','scan','',3250,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 18:33:46','','0000-00-00 00:00:00',0),(3314,0,0,'H','2526','','',3314,0,0,'2025-11-07',2688,2126,0,0,2072,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3251,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 18:36:03','','0000-00-00 00:00:00',0),(3315,0,0,'H','2526','','',3315,0,0,'2025-11-07',2733,1345,0,0,1306,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3252,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 18:44:49','','0000-00-00 00:00:00',0),(3316,0,0,'H','2526','','',3316,0,0,'2025-11-07',2734,858,0,0,827,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3253,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-07 18:49:01','','0000-00-00 00:00:00',0),(3317,0,0,'H','2526','','',3317,0,0,'2025-11-07',2719,1245,0,0,2095,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3254,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-07 18:57:52','','0000-00-00 00:00:00',0),(3318,0,0,'H','2526','','',3318,0,0,'2025-11-07',2735,1789,0,0,1744,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3256,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-07 19:04:21','','0000-00-00 00:00:00',0),(3319,0,0,'H','2526','','P',3319,0,0,'2025-11-07',2555,2030,0,131,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',3257,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-07 19:07:53','riya','2025-11-07 19:08:07',0),(3320,0,0,'H','2526','','',3320,0,0,'2025-11-07',2731,2154,0,0,2102,'D',-300.00,0.00,'CSH','','','','','2025-11-07','','',3258,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 19:09:03','','0000-00-00 00:00:00',0),(3321,0,0,'H','2526','','',3321,0,0,'2025-11-07',2737,594,0,0,567,'B',300.00,0.00,'7','BOB','','16279','','0000-00-00','SCAN','',3259,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-07 19:10:12','','0000-00-00 00:00:00',0),(3322,0,0,'H','2526','','',3322,0,0,'2025-11-07',2738,286,0,0,270,'B',300.00,0.00,'7','axis bank','','18189','','0000-00-00','scan ','',3260,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-07 19:10:59','','0000-00-00 00:00:00',0),(3323,0,0,'H','2526','','',3323,0,0,'2025-11-07',2739,954,0,0,923,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3261,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-07 19:16:33','','0000-00-00 00:00:00',0),(3324,0,0,'H','2526','','',3324,0,0,'2025-11-07',2740,2024,0,0,1976,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3262,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-07 19:20:11','','0000-00-00 00:00:00',0),(3325,0,0,'H','2526','','',3325,0,0,'2025-11-07',2741,1111,0,0,1071,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',3263,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-07 19:32:20','','0000-00-00 00:00:00',0),(3326,0,0,'H','2526','','',3326,0,0,'2025-11-08',2742,2156,0,0,2104,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',3267,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 09:05:45','','0000-00-00 00:00:00',0),(3327,0,0,'H','2526','','',3327,0,0,'2025-11-08',2742,2156,0,0,2104,'B',100.00,0.00,'7','hdfc','','39639','','0000-00-00','scan','',3268,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 09:09:18','','0000-00-00 00:00:00',0),(3328,0,0,'H','2526','','',3328,0,0,'2025-11-08',2743,2157,0,0,2105,'B',600.00,0.00,'7','axis','','23849','','0000-00-00','scan','',3269,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 09:16:52','','0000-00-00 00:00:00',0),(3329,0,0,'H','2526','','',3329,0,0,'2025-11-08',2744,2158,0,0,2106,'B',1700.00,0.00,'7','sbi','','44400','','0000-00-00','scan','',3270,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 09:20:53','','0000-00-00 00:00:00',0),(3330,0,0,'H','2526','','',3330,0,0,'2025-11-08',2745,2159,0,0,2107,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3271,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 09:25:44','','0000-00-00 00:00:00',0),(3331,0,0,'H','2526','','P',3331,0,0,'2025-11-08',2195,1772,0,121,0,'A',16500.00,0.00,'CSH','','','','','0000-00-00','','',3272,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-08 09:26:59','vishal','2025-11-08 09:27:43',0),(3332,0,0,'H','2526','','',3332,0,0,'2025-11-08',2746,2160,0,0,2108,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3273,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 09:51:33','','0000-00-00 00:00:00',0),(3333,0,0,'H','2526','','',3333,0,0,'2025-11-08',2748,2161,0,0,2109,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3274,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 10:02:19','','0000-00-00 00:00:00',0),(3334,0,0,'H','2526','','P',3334,0,0,'2025-11-08',2747,2024,0,139,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',3354,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-08 10:03:37','riya','2025-11-09 12:01:25',0),(3335,0,0,'H','2526','','',3335,0,0,'2025-11-08',2749,2162,0,0,2110,'B',900.00,0.00,'7','hdfc','','14801','','0000-00-00','scan','',3275,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 10:20:11','','0000-00-00 00:00:00',0),(3336,0,0,'H','2526','','',3336,0,0,'2025-11-08',2750,2163,0,0,2111,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3276,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 10:23:36','','0000-00-00 00:00:00',0),(3337,0,0,'H','2526','','',3337,0,0,'2025-11-08',2751,2164,0,0,2112,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3277,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-08 10:25:11','','0000-00-00 00:00:00',0),(3338,0,0,'H','2526','','',3338,0,0,'2025-11-08',2752,2165,0,0,2113,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3278,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 10:26:26','','0000-00-00 00:00:00',0),(3339,0,0,'H','2526','','',3339,0,0,'2025-11-08',2753,2166,0,0,2114,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3279,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 10:37:36','','0000-00-00 00:00:00',0),(3340,0,0,'H','2526','','',3340,0,0,'2025-11-08',2754,2167,0,0,2115,'B',500.00,0.00,'7','rbi','','74020','','0000-00-00','scan ','',3280,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-08 10:42:10','','0000-00-00 00:00:00',0),(3341,0,0,'H','2526','','',3341,0,0,'2025-11-08',2755,2168,0,0,2116,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3281,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 10:43:31','','0000-00-00 00:00:00',0),(3342,0,0,'H','2526','','',3342,0,0,'2025-11-08',2757,1513,0,0,1472,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3282,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-08 10:44:01','','0000-00-00 00:00:00',0),(3343,0,0,'H','2526','','',3343,0,0,'2025-11-08',2756,1053,0,0,1019,'B',300.00,0.00,'7','SBI BANK','','42232','','0000-00-00','scan ','',3283,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-08 10:44:52','','0000-00-00 00:00:00',0),(3344,0,0,'H','2526','','',3344,0,0,'2025-11-08',2758,2169,0,0,2117,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3284,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 10:45:21','','0000-00-00 00:00:00',0),(3345,0,0,'H','2526','','',3345,0,0,'2025-11-08',2759,1763,0,0,2118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3285,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-08 10:49:47','','0000-00-00 00:00:00',0),(3346,0,0,'H','2526','','',3346,0,0,'2025-11-08',2760,234,0,0,221,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3286,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-08 10:52:08','','0000-00-00 00:00:00',0),(3347,0,0,'H','2526','','',3347,0,0,'2025-11-08',2761,2170,0,0,2119,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3287,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 10:57:53','','0000-00-00 00:00:00',0),(3348,0,0,'H','2526','','',3348,0,0,'2025-11-08',2762,2171,0,0,2120,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3288,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-08 11:00:25','','0000-00-00 00:00:00',0),(3349,0,0,'H','2526','','',3349,0,0,'2025-11-08',2763,2172,0,0,2121,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3289,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 11:02:31','','0000-00-00 00:00:00',0),(3350,0,0,'H','2526','','',3350,0,0,'2025-11-08',2755,2168,0,0,2116,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3290,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-08 11:06:18','','0000-00-00 00:00:00',0),(3351,0,0,'H','2526','','',3351,0,0,'2025-11-08',2764,1493,0,0,1452,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3291,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-08 11:07:09','','0000-00-00 00:00:00',0),(3352,0,0,'H','2526','','',3352,0,0,'2025-11-08',2750,2163,0,0,2111,'B',4600.00,0.00,'7','sbi','','20454','','0000-00-00','scan','',3292,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 11:07:18','','0000-00-00 00:00:00',0),(3353,0,0,'H','2526','','',3353,0,0,'2025-11-08',2765,2173,0,0,2122,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3293,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-08 11:08:04','','0000-00-00 00:00:00',0),(3354,0,0,'H','2526','','',3354,0,0,'2025-11-08',2766,2174,0,0,2123,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3294,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-08 11:13:44','','0000-00-00 00:00:00',0),(3355,0,0,'H','2526','','',3355,0,0,'2025-11-08',2767,2175,0,0,2124,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3295,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-08 11:16:22','','0000-00-00 00:00:00',0),(3356,0,0,'H','2526','','',3356,0,0,'2025-11-08',2768,1054,0,0,1020,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3296,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-08 11:21:22','','0000-00-00 00:00:00',0),(3357,0,0,'H','2526','','',3357,0,0,'2025-11-08',2770,2176,0,0,2125,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3297,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 11:23:48','','0000-00-00 00:00:00',0),(3358,0,0,'H','2526','','',3358,0,0,'2025-11-08',2771,2177,0,0,2126,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3298,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 11:26:32','','0000-00-00 00:00:00',0),(3359,0,0,'H','2526','','',3359,0,0,'2025-11-08',2772,1349,0,0,1310,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3299,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 11:30:28','','0000-00-00 00:00:00',0),(3360,0,0,'H','2526','','',3360,0,0,'2025-11-08',2766,2174,0,0,2123,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3300,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-08 11:30:40','','0000-00-00 00:00:00',0),(3361,0,0,'H','2526','','',3361,0,0,'2025-11-08',2773,2178,0,0,2127,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3301,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 11:32:23','','0000-00-00 00:00:00',0),(3362,0,0,'H','2526','','',3362,0,0,'2025-11-08',2774,91,0,0,80,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3302,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 11:34:18','','0000-00-00 00:00:00',0),(3363,0,0,'H','2526','','',3363,0,0,'2025-11-08',2775,1714,0,0,1669,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3303,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-08 11:37:16','','0000-00-00 00:00:00',0),(3364,0,0,'H','2526','','',3364,0,0,'2025-11-08',2776,2179,0,0,2128,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3304,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 11:38:07','','0000-00-00 00:00:00',0),(3365,0,0,'H','2526','','',3365,0,0,'2025-11-08',2749,2162,0,0,2110,'B',5600.00,0.00,'7','hdfc','','04516','','0000-00-00','scan','',3305,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 11:41:15','','0000-00-00 00:00:00',0),(3366,0,0,'H','2526','','',3366,0,0,'2025-11-08',2777,727,0,0,696,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3306,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-08 11:42:40','','0000-00-00 00:00:00',0),(3367,0,0,'H','2526','','',3367,0,0,'2025-11-08',2778,2180,0,0,2129,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3307,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 11:42:55','','0000-00-00 00:00:00',0),(3368,0,0,'H','2526','','',3368,0,0,'2025-11-08',2779,1883,0,0,1837,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3308,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-08 11:45:00','','0000-00-00 00:00:00',0),(3369,0,0,'H','2526','','',3369,0,0,'2025-11-08',2780,2181,0,0,2130,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3309,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 11:47:10','','0000-00-00 00:00:00',0),(3370,0,0,'H','2526','','',3370,0,0,'2025-11-08',2767,2175,0,0,2124,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',3310,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-08 11:49:23','','0000-00-00 00:00:00',0),(3371,0,0,'H','2526','','',3371,0,0,'2025-11-08',2781,2182,0,0,2131,'B',500.00,0.00,'7','hdfc','','32162','','0000-00-00','scan','',3312,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 11:51:25','','0000-00-00 00:00:00',0),(3372,0,0,'H','2526','','',3372,0,0,'2025-11-08',2765,2173,0,0,2122,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',3313,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 11:57:14','','0000-00-00 00:00:00',0),(3373,0,0,'H','2526','','',3373,0,0,'2025-11-08',2767,2175,0,0,2124,'D',-600.00,0.00,'CSH','','','','','2025-11-08','','',3314,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-08 12:04:16','','0000-00-00 00:00:00',0),(3374,0,0,'H','2526','','',3374,0,0,'2025-11-08',2782,2183,0,0,2132,'B',900.00,0.00,'7','sbi','','48345','','0000-00-00','scan','',3315,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 12:07:15','','0000-00-00 00:00:00',0),(3375,0,0,'H','2526','','',3375,0,0,'2025-11-08',2767,2175,0,0,2124,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3316,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-08 12:07:50','','0000-00-00 00:00:00',0),(3376,0,0,'H','2526','','P',3376,0,0,'2025-11-08',2602,2064,0,135,0,'A',12800.00,0.00,'CSH','','','','','0000-00-00','','',3318,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-08 12:23:06','vishal','2025-11-08 12:23:53',0),(3377,0,0,'H','2526','','',3377,0,0,'2025-11-08',2783,2184,0,0,2133,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3317,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 12:23:32','','0000-00-00 00:00:00',0),(3378,0,0,'H','2526','','',3378,0,0,'2025-11-08',2784,1905,0,0,1860,'B',400.00,0.00,'7','SBI BANK','','85736','','0000-00-00','scan ','',3319,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-08 12:28:20','','0000-00-00 00:00:00',0),(3379,0,0,'H','2526','','',3379,0,0,'2025-11-08',2785,100,0,0,89,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3320,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 12:30:21','','0000-00-00 00:00:00',0),(3380,0,0,'H','2526','','',3380,0,0,'2025-11-08',2786,532,0,0,507,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3321,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 12:35:18','','0000-00-00 00:00:00',0),(3381,0,0,'H','2526','','',3381,0,0,'2025-11-08',2787,1782,0,0,1738,'B',400.00,0.00,'7','KOTAK BANK','','68481','','0000-00-00','scan ','',3322,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-08 12:39:51','','0000-00-00 00:00:00',0),(3382,0,0,'H','2526','','',3382,0,0,'2025-11-08',2789,2186,0,0,2135,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3323,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-08 12:43:58','','0000-00-00 00:00:00',0),(3383,0,0,'H','2526','','',3383,0,0,'2025-11-08',2788,2185,0,0,2134,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3324,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-08 12:44:29','','0000-00-00 00:00:00',0),(3384,0,0,'H','2526','','',3384,0,0,'2025-11-08',2790,2187,0,0,2136,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3325,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 12:46:06','','0000-00-00 00:00:00',0),(3385,0,0,'H','2526','','',3385,0,0,'2025-11-08',2782,2183,0,0,2132,'B',4800.00,0.00,'7','sbi','','05874','','0000-00-00','scan','',3326,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 12:50:00','','0000-00-00 00:00:00',0),(3386,0,0,'H','2526','','',3386,0,0,'2025-11-08',2773,2178,0,0,2127,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',3327,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 12:56:53','','0000-00-00 00:00:00',0),(3387,0,0,'H','2526','','',3387,0,0,'2025-11-08',2778,2180,0,0,2129,'B',5600.00,0.00,'7','CENTRAL BANK','','70153','','0000-00-00','scan','',3328,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 13:04:19','','0000-00-00 00:00:00',0),(3388,0,0,'H','2526','','',3388,0,0,'2025-11-08',2769,319,0,0,303,'B',300.00,0.00,'7','kotak','','81785','','0000-00-00','scan  ','',3329,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-08 13:04:22','','0000-00-00 00:00:00',0),(3389,0,0,'H','2526','','',3389,0,0,'2025-11-08',2792,2189,0,0,2138,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3330,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-08 13:09:41','','0000-00-00 00:00:00',0),(3390,0,0,'H','2526','','',3390,0,0,'2025-11-08',2790,2187,0,0,2136,'B',4000.00,0.00,'7','AXIS','','96544','','0000-00-00','scan','',3331,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 13:28:40','','0000-00-00 00:00:00',0),(3391,0,0,'H','2526','','P',3391,0,0,'2025-11-08',2793,2188,0,140,0,'A',50000.00,0.00,'CSH','','','','','0000-00-00','','',3415,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-08 13:34:35','riya','2025-11-10 12:01:13',0),(3392,0,0,'H','2526','','',3392,0,0,'2025-11-08',2794,2190,0,0,2139,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3332,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 13:35:14','','0000-00-00 00:00:00',0),(3393,0,0,'H','2526','','',3393,0,0,'2025-11-08',2780,2181,0,0,2130,'B',4500.00,0.00,'7','INDIAN BANK','','95764','','0000-00-00','scan','',3333,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 13:46:28','','0000-00-00 00:00:00',0),(3394,0,0,'H','2526','','',3394,0,0,'2025-11-08',2750,2163,0,0,2111,'D',-900.00,0.00,'CSH','','','','','2025-11-08','','',3334,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 14:02:22','','0000-00-00 00:00:00',0),(3395,0,0,'H','2526','','',3395,0,0,'2025-11-08',2750,2163,0,0,2111,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3335,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-08 14:07:14','','0000-00-00 00:00:00',0),(3396,0,0,'H','2526','','',3396,0,0,'2025-11-08',2796,2192,0,0,2141,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3336,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-08 14:42:07','','0000-00-00 00:00:00',0),(3397,0,0,'H','2526','','',3397,0,0,'2025-11-08',2796,2192,0,0,2141,'B',4200.00,0.00,'CSH','','','','','0000-00-00','','',3337,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-08 15:13:46','','0000-00-00 00:00:00',0),(3398,0,0,'H','2526','','P',3398,0,0,'2025-11-08',2624,2078,0,136,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',3356,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-08 15:41:47','riya','2025-11-09 12:22:32',0),(3399,0,0,'H','2526','','P',3399,0,0,'2025-11-08',2624,2078,0,136,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','Y',0,'N','vishal','2025-11-08 15:50:36','vishal','2025-11-08 15:48:32','vishal','2025-11-08 15:50:36',0),(3400,0,0,'H','2526','','P',3400,0,0,'2025-11-08',2624,2078,0,136,0,'A',-7000.00,0.00,'CSH','','','','','0000-00-00','','BY MISTAKE 2 VAR CHADI GYA',0,'N','P','Y',3399,'N','','0000-00-00 00:00:00','vishal','2025-11-08 15:50:36','vishal','2025-11-08 15:50:36',0),(3401,0,0,'H','2526','','',3401,0,0,'2025-11-08',2797,1173,0,0,1133,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3338,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-08 16:42:46','','0000-00-00 00:00:00',0),(3402,0,0,'H','2526','','',3402,0,0,'2025-11-08',2798,2193,0,0,2142,'B',1600.00,0.00,'7','BOB BANK','','11743','','0000-00-00','scan ','',3339,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-08 16:50:09','','0000-00-00 00:00:00',0),(3403,0,0,'H','2526','','',3403,0,0,'2025-11-08',2800,2194,0,0,2143,'B',1000.00,0.00,'7','KOTAK','','30483','','0000-00-00','SCAN','',3340,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-08 17:51:24','','0000-00-00 00:00:00',0),(3404,0,0,'H','2526','','',3404,0,0,'2025-11-08',2802,2196,0,0,2144,'B',1100.00,0.00,'7','YES BANK','','29886','','0000-00-00','SCAN','',3341,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-08 18:07:13','','0000-00-00 00:00:00',0),(3405,0,0,'H','2526','','',3405,0,0,'2025-11-08',2804,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3342,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-08 18:50:30','','0000-00-00 00:00:00',0),(3406,0,0,'H','2526','','',3406,0,0,'2025-11-08',2805,2197,0,0,2145,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3343,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-08 18:54:30','','0000-00-00 00:00:00',0),(3407,0,0,'H','2526','','',3407,0,0,'2025-11-08',2803,1315,0,0,1276,'B',100.00,0.00,'7','Apb','','26535','','0000-00-00','scan ','',3344,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-08 19:22:11','','0000-00-00 00:00:00',0),(3408,0,0,'H','2526','','P',3408,0,0,'2025-11-08',2806,2198,0,142,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',3360,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-08 19:23:27','riya','2025-11-09 18:37:26',0),(3409,0,0,'H','2526','','',3409,0,0,'2025-11-08',2807,2056,0,0,2005,'B',100.00,0.00,'7','hdfc','','94383','','0000-00-00','scan                          ','',3345,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-08 19:26:35','','0000-00-00 00:00:00',0),(3410,0,0,'H','2526','','',3410,0,0,'2025-11-08',2808,599,0,0,572,'B',300.00,0.00,'7','SBI','','24248','','0000-00-00','SCAN','',3346,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-08 19:31:07','','0000-00-00 00:00:00',0),(3411,0,0,'H','2526','','',3411,0,0,'2025-11-08',2808,599,0,0,572,'B',400.00,0.00,'7','SBI','','26876','','0000-00-00','SCAN','',3347,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-08 19:37:37','','0000-00-00 00:00:00',0),(3412,0,0,'H','2526','','',3412,0,0,'2025-11-08',2809,2199,0,0,2146,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',3348,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-08 19:51:02','','0000-00-00 00:00:00',0),(3413,0,0,'H','2526','','',3413,0,0,'2025-11-08',2810,2200,0,0,2147,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3349,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-08 19:56:43','','0000-00-00 00:00:00',0),(3414,0,0,'H','2526','','P',3414,0,0,'2025-11-09',2811,2201,0,143,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',4510,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-09 08:50:32','riya','2025-11-20 12:45:24',0),(3415,0,0,'H','2526','','',3415,0,0,'2025-11-09',2812,792,0,0,761,'B',1100.00,0.00,'7','axis ','','50775','','0000-00-00','scan','',3350,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-09 10:18:12','','0000-00-00 00:00:00',0),(3416,0,0,'H','2526','','',3416,0,0,'2025-11-09',2814,1976,0,0,1928,'B',100.00,0.00,'7','sbi','','68544','','0000-00-00','scan','',3351,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-09 11:53:23','','0000-00-00 00:00:00',0),(3417,0,0,'H','2526','','',3417,0,0,'2025-11-09',2813,2202,0,0,2148,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',3353,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-09 11:59:34','','0000-00-00 00:00:00',0),(3418,0,0,'H','2526','','P',3418,0,0,'2025-11-09',2624,2078,0,136,0,'A',12300.00,0.00,'CSH','','','','','0000-00-00','','',3356,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-09 12:22:19','riya','2025-11-09 12:22:32',0),(3419,0,0,'H','2526','','P',3419,0,0,'2025-11-09',2801,2195,0,141,0,'A',22500.00,0.00,'CSH','','','','','0000-00-00','','',3359,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-09 18:27:46','riya','2025-11-09 18:28:21',0),(3420,0,0,'H','2526','','P',3420,0,0,'2025-11-09',2806,2198,0,142,0,'A',13650.00,0.00,'CSH','','','','','0000-00-00','','',3360,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-09 18:36:23','riya','2025-11-09 18:37:26',0),(3421,0,0,'H','2526','','P',3421,0,0,'2025-11-09',2691,2127,0,138,0,'A',11000.00,0.00,'7','BOI','','113906010651','','0000-00-00','SCAN','',3561,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-09 18:41:56','riya','2025-11-11 12:55:05',0),(3422,0,0,'H','2526','','',3422,0,0,'2025-11-10',2815,2203,0,0,2149,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3361,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 09:11:56','','0000-00-00 00:00:00',0),(3423,0,0,'H','2526','','',3423,0,0,'2025-11-10',2816,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3362,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 09:14:03','','0000-00-00 00:00:00',0),(3424,0,0,'H','2526','','',3424,0,0,'2025-11-10',2817,2204,0,0,2150,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',3363,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 09:16:10','','0000-00-00 00:00:00',0),(3425,0,0,'H','2526','','',3425,0,0,'2025-11-10',2818,2157,0,0,2105,'B',300.00,0.00,'7','Axis','','11116','','0000-00-00','scan','',3364,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 09:19:24','','0000-00-00 00:00:00',0),(3426,0,0,'H','2526','','',3426,0,0,'2025-11-10',2820,2206,0,0,2152,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3365,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-10 09:31:08','','0000-00-00 00:00:00',0),(3427,0,0,'H','2526','','',3427,0,0,'2025-11-10',2821,1375,0,0,1335,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3366,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 09:34:11','','0000-00-00 00:00:00',0),(3428,0,0,'H','2526','','',3428,0,0,'2025-11-10',2819,2205,0,0,2151,'B',800.00,0.00,'7','Boi','','11875','','0000-00-00','scan','',3367,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 09:38:15','','0000-00-00 00:00:00',0),(3429,0,0,'H','2526','','',3429,0,0,'2025-11-10',2822,2207,0,0,2153,'B',1300.00,0.00,'7','ICICI BANK','','25531','','0000-00-00','scan ','',3368,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 09:40:25','','0000-00-00 00:00:00',0),(3430,0,0,'H','2526','','',3430,0,0,'2025-11-10',2820,2206,0,0,2152,'D',-800.00,0.00,'CSH','','','','','2025-11-10','','',3369,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-10 09:41:05','','0000-00-00 00:00:00',0),(3431,0,0,'H','2526','','',3431,0,0,'2025-11-10',2824,2208,0,0,2154,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',3370,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 09:43:10','','0000-00-00 00:00:00',0),(3432,0,0,'H','2526','','',3432,0,0,'2025-11-10',2826,2210,0,0,2155,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3371,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 09:47:42','','0000-00-00 00:00:00',0),(3433,0,0,'H','2526','','',3433,0,0,'2025-11-10',2828,426,0,0,404,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3372,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 09:52:22','','0000-00-00 00:00:00',0),(3434,0,0,'H','2526','','',3434,0,0,'2025-11-10',2829,2211,0,0,2156,'B',500.00,0.00,'7','rajkot nagrik','','23253','','0000-00-00','scan ','',3373,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 09:53:25','','0000-00-00 00:00:00',0),(3435,0,0,'H','2526','','',3435,0,0,'2025-11-10',2830,2212,0,0,2157,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3374,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 10:04:49','','0000-00-00 00:00:00',0),(3436,0,0,'H','2526','','',3436,0,0,'2025-11-10',2832,1654,0,0,1609,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3375,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 10:13:03','','0000-00-00 00:00:00',0),(3437,0,0,'H','2526','','',3437,0,0,'2025-11-10',2833,151,0,0,140,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3376,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-10 10:19:39','','0000-00-00 00:00:00',0),(3438,0,0,'H','2526','','',3438,0,0,'2025-11-10',2834,2214,0,0,2159,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3377,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 10:30:20','','0000-00-00 00:00:00',0),(3439,0,0,'H','2526','','',3439,0,0,'2025-11-10',2835,2056,0,0,2005,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3378,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 10:32:09','','0000-00-00 00:00:00',0),(3440,0,0,'H','2526','','',3440,0,0,'2025-11-10',2836,2215,0,0,2160,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3379,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 10:32:49','','0000-00-00 00:00:00',0),(3441,0,0,'H','2526','','',3441,0,0,'2025-11-10',2837,1747,0,0,1701,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3380,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 10:37:08','','0000-00-00 00:00:00',0),(3442,0,0,'H','2526','','',3442,0,0,'2025-11-10',2840,2217,0,0,2162,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3381,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 10:40:37','','0000-00-00 00:00:00',0),(3443,0,0,'H','2526','','',3443,0,0,'2025-11-10',2839,2216,0,0,2161,'B',1400.00,0.00,'CSH','','','','','0000-00-00','','',3382,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 10:41:08','','0000-00-00 00:00:00',0),(3444,0,0,'H','2526','','',3444,0,0,'2025-11-10',2841,2218,0,0,2163,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3383,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 10:47:49','','0000-00-00 00:00:00',0),(3445,0,0,'H','2526','','',3445,0,0,'2025-11-10',2843,1946,0,0,1898,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',3384,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-10 10:47:55','','0000-00-00 00:00:00',0),(3446,0,0,'H','2526','','',3446,0,0,'2025-11-10',2842,2219,0,0,2164,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3385,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 10:48:22','','0000-00-00 00:00:00',0),(3447,0,0,'H','2526','','',3447,0,0,'2025-11-10',2831,2213,0,0,2158,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3386,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 10:57:09','','0000-00-00 00:00:00',0),(3448,0,0,'H','2526','','',3448,0,0,'2025-11-10',2844,2220,0,0,2165,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3387,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 10:57:45','','0000-00-00 00:00:00',0),(3449,0,0,'H','2526','','',3449,0,0,'2025-11-10',2846,1095,0,0,1125,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3388,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 11:00:42','','0000-00-00 00:00:00',0),(3450,0,0,'H','2526','','',3450,0,0,'2025-11-10',2827,12,0,0,12,'B',400.00,0.00,'7','bob','','62865','','0000-00-00','scan','',3389,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 11:01:07','','0000-00-00 00:00:00',0),(3451,0,0,'H','2526','','',3451,0,0,'2025-11-10',2847,2222,0,0,2167,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3390,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 11:04:24','','0000-00-00 00:00:00',0),(3452,0,0,'H','2526','','',3452,0,0,'2025-11-10',2849,514,0,0,489,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3391,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 11:12:53','','0000-00-00 00:00:00',0),(3453,0,0,'H','2526','','',3453,0,0,'2025-11-10',2850,2223,0,0,2168,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3392,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 11:16:59','','0000-00-00 00:00:00',0),(3454,0,0,'H','2526','','',3454,0,0,'2025-11-10',2851,2224,0,0,2169,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3393,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 11:17:39','','0000-00-00 00:00:00',0),(3455,0,0,'H','2526','','',3455,0,0,'2025-11-10',2852,2225,0,0,2170,'B',900.00,0.00,'7','bob','','52149','','0000-00-00','scan','',3394,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 11:19:21','','0000-00-00 00:00:00',0),(3456,0,0,'H','2526','','',3456,0,0,'2025-11-10',2845,2221,0,0,2166,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3396,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 11:22:02','','0000-00-00 00:00:00',0),(3457,0,0,'H','2526','','',3457,0,0,'2025-11-10',2853,2022,0,0,1974,'B',300.00,0.00,'7','INDUSLAND BANK','','98562','','0000-00-00','scan ','',3397,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 11:24:40','','0000-00-00 00:00:00',0),(3458,0,0,'H','2526','','',3458,0,0,'2025-11-10',2854,2226,0,0,2171,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3398,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 11:27:38','','0000-00-00 00:00:00',0),(3459,0,0,'H','2526','','',3459,0,0,'2025-11-10',2855,221,0,0,208,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3399,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 11:36:09','','0000-00-00 00:00:00',0),(3460,0,0,'H','2526','','',3460,0,0,'2025-11-10',2856,1662,0,0,1617,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3400,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 11:37:21','','0000-00-00 00:00:00',0),(3461,0,0,'H','2526','','',3461,0,0,'2025-11-10',2836,2215,0,0,2160,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',3401,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 11:40:24','','0000-00-00 00:00:00',0),(3462,0,0,'H','2526','','',3462,0,0,'2025-11-10',2823,2197,0,0,2145,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',3402,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-10 11:41:19','','0000-00-00 00:00:00',0),(3463,0,0,'H','2526','','',3463,0,0,'2025-11-10',2826,2210,0,0,2155,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',3403,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 11:41:28','','0000-00-00 00:00:00',0),(3464,0,0,'H','2526','','',3464,0,0,'2025-11-10',2857,1986,0,0,1938,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3404,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 11:42:31','','0000-00-00 00:00:00',0),(3465,0,0,'H','2526','','',3465,0,0,'2025-11-10',2858,2227,0,0,2172,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3405,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 11:44:15','','0000-00-00 00:00:00',0),(3466,0,0,'H','2526','','',3466,0,0,'2025-11-10',2859,2228,0,0,2173,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3406,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 11:44:26','','0000-00-00 00:00:00',0),(3467,0,0,'H','2526','','',3467,0,0,'2025-11-10',2851,2224,0,0,2169,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',3407,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 11:45:30','','0000-00-00 00:00:00',0),(3468,0,0,'H','2526','','',3468,0,0,'2025-11-10',2846,1095,0,0,1125,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3408,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 11:46:20','','0000-00-00 00:00:00',0),(3469,0,0,'H','2526','','',3469,0,0,'2025-11-10',2860,2229,0,0,2174,'B',500.00,0.00,'7','SBI BANK','','13524','','0000-00-00','scan ','',3409,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 11:48:14','','0000-00-00 00:00:00',0),(3470,0,0,'H','2526','','',3470,0,0,'2025-11-10',2861,2230,0,0,2175,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3410,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 11:49:45','','0000-00-00 00:00:00',0),(3471,0,0,'H','2526','','',3471,0,0,'2025-11-10',2862,2231,0,0,2176,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3411,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 11:52:54','','0000-00-00 00:00:00',0),(3472,0,0,'H','2526','','',3472,0,0,'2025-11-10',2863,2232,0,0,2177,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3412,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 11:56:57','','0000-00-00 00:00:00',0),(3473,0,0,'H','2526','','',3473,0,0,'2025-11-10',2864,2233,0,0,2178,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3413,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 11:58:29','','0000-00-00 00:00:00',0),(3474,0,0,'H','2526','','P',3474,0,0,'2025-11-10',2793,2188,0,140,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',3415,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-10 12:00:32','riya','2025-11-10 12:01:13',0),(3475,0,0,'H','2526','','',3475,0,0,'2025-11-10',2866,1915,0,0,1870,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3414,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-10 12:01:05','','0000-00-00 00:00:00',0),(3476,0,0,'H','2526','','',3476,0,0,'2025-11-10',2865,1618,0,0,1574,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3416,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 12:01:29','','0000-00-00 00:00:00',0),(3477,0,0,'H','2526','','',3477,0,0,'2025-11-10',2867,2234,0,0,2179,'B',250.00,0.00,'CSH','','','','','0000-00-00','','',3417,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 12:03:07','','0000-00-00 00:00:00',0),(3478,0,0,'H','2526','','',3478,0,0,'2025-11-10',2868,2235,0,0,2180,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3418,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-10 12:09:00','','0000-00-00 00:00:00',0),(3479,0,0,'H','2526','','',3479,0,0,'2025-11-10',2869,2236,0,0,2181,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3419,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 12:09:33','','0000-00-00 00:00:00',0),(3480,0,0,'H','2526','','',3480,0,0,'2025-11-10',2851,2224,0,0,2169,'D',-500.00,0.00,'CSH','','','','','2025-11-10','','',3420,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 12:11:22','','0000-00-00 00:00:00',0),(3481,0,0,'H','2526','','',3481,0,0,'2025-11-10',2870,2237,0,0,2182,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3421,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 12:18:17','','0000-00-00 00:00:00',0),(3482,0,0,'H','2526','','',3482,0,0,'2025-11-10',2858,2227,0,0,2172,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',3422,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 12:21:55','','0000-00-00 00:00:00',0),(3483,0,0,'H','2526','','',3483,0,0,'2025-11-10',2869,2236,0,0,2181,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3423,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-10 12:26:26','','0000-00-00 00:00:00',0),(3484,0,0,'H','2526','','',3484,0,0,'2025-11-10',2834,2214,0,0,2159,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',3424,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 12:31:01','','0000-00-00 00:00:00',0),(3485,0,0,'H','2526','','',3485,0,0,'2025-11-10',2871,2238,0,0,2183,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3425,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 12:33:45','','0000-00-00 00:00:00',0),(3486,0,0,'H','2526','','',3486,0,0,'2025-11-10',2872,1659,0,0,1614,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3426,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 12:40:03','','0000-00-00 00:00:00',0),(3487,0,0,'H','2526','','',3487,0,0,'2025-11-10',2873,2239,0,0,2184,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3427,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 12:49:49','','0000-00-00 00:00:00',0),(3488,0,0,'H','2526','','',3488,0,0,'2025-11-10',2874,1720,0,0,1675,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3428,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 12:51:10','','0000-00-00 00:00:00',0),(3489,0,0,'H','2526','','',3489,0,0,'2025-11-10',2852,2225,0,0,2170,'B',4000.00,0.00,'7','bob','','43282','','0000-00-00','scan','',3429,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 12:53:10','','0000-00-00 00:00:00',0),(3490,0,0,'H','2526','','',3490,0,0,'2025-11-10',2863,2232,0,0,2177,'D',-800.00,0.00,'CSH','','','','','2025-11-10','','',3430,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 12:54:46','','0000-00-00 00:00:00',0),(3491,0,0,'H','2526','','',3491,0,0,'2025-11-10',2875,2240,0,0,2185,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3431,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 12:57:35','','0000-00-00 00:00:00',0),(3492,0,0,'H','2526','','',3492,0,0,'2025-11-10',2870,2237,0,0,2182,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',3432,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 13:04:06','','0000-00-00 00:00:00',0),(3493,0,0,'H','2526','','',3493,0,0,'2025-11-10',2877,2242,0,0,2186,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3433,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 13:15:41','','0000-00-00 00:00:00',0),(3494,0,0,'H','2526','','P',3494,0,0,'2025-11-10',2876,2241,0,145,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',4022,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-10 13:15:47','vishal','2025-11-14 20:30:52',0),(3495,0,0,'H','2526','','',3495,0,0,'2025-11-10',2862,2231,0,0,2176,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',3434,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 13:28:13','','0000-00-00 00:00:00',0),(3496,0,0,'H','2526','','',3496,0,0,'2025-11-10',2878,896,0,0,864,'B',200.00,0.00,'7','Axis','','06115','','0000-00-00','scan','',3435,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 14:29:42','','0000-00-00 00:00:00',0),(3497,0,0,'H','2526','','',3497,0,0,'2025-11-10',2880,1544,0,0,1503,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3436,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 16:18:18','','0000-00-00 00:00:00',0),(3498,0,0,'H','2526','','',3498,0,0,'2025-11-10',2881,1904,0,0,1859,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3437,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 16:57:45','','0000-00-00 00:00:00',0),(3499,0,0,'H','2526','','',3499,0,0,'2025-11-10',2882,2244,0,0,2187,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3438,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 17:00:51','','0000-00-00 00:00:00',0),(3500,0,0,'H','2526','','',3500,0,0,'2025-11-10',2883,1657,0,0,1612,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3439,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 17:02:36','','0000-00-00 00:00:00',0),(3501,0,0,'H','2526','','',3501,0,0,'2025-11-10',2884,2245,0,0,2188,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3440,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 17:03:39','','0000-00-00 00:00:00',0),(3502,0,0,'H','2526','','',3502,0,0,'2025-11-10',2885,550,0,0,524,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3441,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 17:13:07','','0000-00-00 00:00:00',0),(3503,0,0,'H','2526','','P',3503,0,0,'2025-11-10',2811,2201,0,143,0,'A',8000.00,0.00,'CSH','','','','','0000-00-00','','',4510,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-10 17:16:49','riya','2025-11-20 12:45:24',0),(3504,0,0,'H','2526','','',3504,0,0,'2025-11-10',2887,2246,0,0,2189,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3442,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 17:23:21','','0000-00-00 00:00:00',0),(3505,0,0,'H','2526','','',3505,0,0,'2025-11-10',2888,2247,0,0,2190,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3443,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 17:27:59','','0000-00-00 00:00:00',0),(3506,0,0,'H','2526','','',3506,0,0,'2025-11-10',2890,2248,0,0,2191,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3444,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 17:33:31','','0000-00-00 00:00:00',0),(3507,0,0,'H','2526','','',3507,0,0,'2025-11-10',2886,2024,0,0,1976,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',3445,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-10 17:38:19','','0000-00-00 00:00:00',0),(3508,0,0,'H','2526','','',3508,0,0,'2025-11-10',2891,1763,0,0,2118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3446,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-10 17:43:42','','0000-00-00 00:00:00',0),(3509,0,0,'H','2526','','',3509,0,0,'2025-11-10',2892,2249,0,0,2192,'B',800.00,0.00,'7','sib','','63905','','0000-00-00','scan','',3447,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 17:46:44','','0000-00-00 00:00:00',0),(3510,0,0,'H','2526','','',3510,0,0,'2025-11-10',2893,2190,0,0,2139,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',3448,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 17:48:40','','0000-00-00 00:00:00',0),(3511,0,0,'H','2526','','',3511,0,0,'2025-11-10',2888,2247,0,0,2190,'D',-500.00,0.00,'CSH','','','','','2025-11-10','','',3449,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-10 17:49:30','','0000-00-00 00:00:00',0),(3512,0,0,'H','2526','','',3512,0,0,'2025-11-10',2894,2250,0,0,2193,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3450,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 17:51:32','','0000-00-00 00:00:00',0),(3513,0,0,'H','2526','','',3513,0,0,'2025-11-10',2884,2245,0,0,2188,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',3451,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 17:53:05','','0000-00-00 00:00:00',0),(3514,0,0,'H','2526','','',3514,0,0,'2025-11-10',2895,453,0,0,430,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3452,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-10 17:58:39','','0000-00-00 00:00:00',0),(3515,0,0,'H','2526','','',3515,0,0,'2025-11-10',2896,2251,0,0,2194,'B',500.00,0.00,'7','BOI BANK','','69113','','0000-00-00','scan ','',3453,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 18:05:35','','0000-00-00 00:00:00',0),(3516,0,0,'H','2526','','',3516,0,0,'2025-11-10',2896,2251,0,0,2194,'D',-500.00,0.00,'7','BOI','','69113','','2025-11-10','SCAN                          ','',3454,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-10 18:10:20','','0000-00-00 00:00:00',0),(3517,0,0,'H','2526','','',3517,0,0,'2025-11-10',2896,2251,0,0,2194,'B',500.00,0.00,'7','BOB','','69113','','0000-00-00','SCAN','',3455,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 18:12:14','','0000-00-00 00:00:00',0),(3518,0,0,'H','2526','','',3518,0,0,'2025-11-10',2887,2246,0,0,2189,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',3456,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 18:15:24','','0000-00-00 00:00:00',0),(3519,0,0,'H','2526','','',3519,0,0,'2025-11-10',2897,213,0,0,200,'B',300.00,0.00,'7','bob','','92439','','0000-00-00','scan ','',3457,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-10 18:17:39','','0000-00-00 00:00:00',0),(3520,0,0,'H','2526','','',3520,0,0,'2025-11-10',2896,2251,0,0,2194,'B',400.00,0.00,'7','bank of india','','74925','','0000-00-00','SCAN','',3458,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 18:19:43','','0000-00-00 00:00:00',0),(3521,0,0,'H','2526','','',3521,0,0,'2025-11-10',2899,2252,0,0,2195,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3459,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 18:21:53','','0000-00-00 00:00:00',0),(3522,0,0,'H','2526','','',3522,0,0,'2025-11-10',2900,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3460,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 18:23:10','','0000-00-00 00:00:00',0),(3523,0,0,'H','2526','','',3523,0,0,'2025-11-10',2902,683,0,0,653,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3461,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 18:24:51','','0000-00-00 00:00:00',0),(3524,0,0,'H','2526','','',3524,0,0,'2025-11-10',2903,2253,0,0,2196,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3462,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 18:26:00','','0000-00-00 00:00:00',0),(3525,0,0,'H','2526','','',3525,0,0,'2025-11-10',2905,2254,0,0,2198,'B',300.00,0.00,'7','SBI BANK','','73317','','0000-00-00','scan ','',3463,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 18:31:46','','0000-00-00 00:00:00',0),(3526,0,0,'H','2526','','',3526,0,0,'2025-11-10',2898,1383,0,0,1343,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3464,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 18:33:08','','0000-00-00 00:00:00',0),(3527,0,0,'H','2526','','',3527,0,0,'2025-11-10',2907,2255,0,0,2199,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3465,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 18:35:24','','0000-00-00 00:00:00',0),(3528,0,0,'H','2526','','',3528,0,0,'2025-11-10',2910,1441,0,0,1401,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3466,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 18:55:10','','0000-00-00 00:00:00',0),(3529,0,0,'H','2526','','',3529,0,0,'2025-11-10',2911,1706,0,0,1661,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3467,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 18:57:56','','0000-00-00 00:00:00',0),(3530,0,0,'H','2526','','',3530,0,0,'2025-11-10',2903,2253,0,0,2196,'B',4000.00,0.00,'7','kotak','','26526','','0000-00-00','scan','',3468,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 18:59:13','','0000-00-00 00:00:00',0),(3531,0,0,'H','2526','','',3531,0,0,'2025-11-10',2909,2256,0,0,2200,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',3469,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 18:59:52','','0000-00-00 00:00:00',0),(3532,0,0,'H','2526','','',3532,0,0,'2025-11-10',2912,1960,0,0,1912,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3470,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 19:06:53','','0000-00-00 00:00:00',0),(3533,0,0,'H','2526','','',3533,0,0,'2025-11-10',2913,972,0,0,941,'B',300.00,0.00,'7','SBI','','27823','','0000-00-00','SCAN','',3471,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 19:17:20','','0000-00-00 00:00:00',0),(3534,0,0,'H','2526','','',3534,0,0,'2025-11-10',2914,2257,0,0,2201,'B',800.00,0.00,'7','BOB','','19799','','0000-00-00','SCAN','',3473,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 19:29:26','','0000-00-00 00:00:00',0),(3535,0,0,'H','2526','','',3535,0,0,'2025-11-10',2911,1706,0,0,1661,'D',-500.00,0.00,'CSH','','','','','2025-11-10','','',3472,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 19:30:20','','0000-00-00 00:00:00',0),(3536,0,0,'H','2526','','',3536,0,0,'2025-11-10',2915,2258,0,0,2202,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3474,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 19:30:44','','0000-00-00 00:00:00',0),(3537,0,0,'H','2526','','',3537,0,0,'2025-11-10',2916,2259,0,0,2203,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3475,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 19:35:35','','0000-00-00 00:00:00',0),(3538,0,0,'H','2526','','',3538,0,0,'2025-11-10',2916,2259,0,0,2203,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3476,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 19:46:58','','0000-00-00 00:00:00',0),(3539,0,0,'H','2526','','',3539,0,0,'2025-11-10',2917,2260,0,0,2204,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3477,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-10 19:49:21','','0000-00-00 00:00:00',0),(3540,0,0,'H','2526','','',3540,0,0,'2025-11-10',2914,2257,0,0,2201,'B',300.00,0.00,'7','BOB','','16826','','0000-00-00','SCAN','',3478,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-10 19:53:14','','0000-00-00 00:00:00',0),(3541,0,0,'H','2526','','',3541,0,0,'2025-11-10',2918,2261,0,0,2205,'B',1500.00,0.00,'CRD','card','3198','3198','','0000-00-00','card','',3479,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-10 20:34:20','','0000-00-00 00:00:00',0),(3542,0,0,'H','2526','','P',3542,0,0,'2025-11-10',2919,982,0,147,0,'A',7000.00,0.00,'7','OTHER BANK','','211511896206','','0000-00-00','','',3906,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-10 21:18:56','vishal','2025-11-13 19:42:29',0),(3543,0,0,'H','2526','','',3543,0,0,'2025-11-11',2920,2262,0,0,2206,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3480,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 09:14:47','','0000-00-00 00:00:00',0),(3544,0,0,'H','2526','','',3544,0,0,'2025-11-11',2921,2075,0,0,2022,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',3481,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 09:23:53','','0000-00-00 00:00:00',0),(3545,0,0,'H','2526','','',3545,0,0,'2025-11-11',2922,1738,0,0,1692,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3482,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 09:52:38','','0000-00-00 00:00:00',0),(3546,0,0,'H','2526','','',3546,0,0,'2025-11-11',2923,534,0,0,509,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3483,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 10:03:53','','0000-00-00 00:00:00',0),(3547,0,0,'H','2526','','',3547,0,0,'2025-11-11',2924,2263,0,0,2207,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3484,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 10:06:13','','0000-00-00 00:00:00',0),(3548,0,0,'H','2526','','',3548,0,0,'2025-11-11',2925,1757,0,0,1713,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3485,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 10:10:52','','0000-00-00 00:00:00',0),(3549,0,0,'H','2526','','',3549,0,0,'2025-11-11',2926,2264,0,0,2208,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3486,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 10:13:05','','0000-00-00 00:00:00',0),(3550,0,0,'H','2526','','',3550,0,0,'2025-11-11',2928,179,0,0,166,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3488,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 10:29:05','','0000-00-00 00:00:00',0),(3551,0,0,'H','2526','','',3551,0,0,'2025-11-11',2929,518,0,0,493,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3489,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 10:30:10','','0000-00-00 00:00:00',0),(3552,0,0,'H','2526','','P',3552,0,0,'2025-11-11',2879,2243,0,146,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-11 10:33:00','riya','2025-11-11 10:33:00',0),(3553,0,0,'H','2526','','',3553,0,0,'2025-11-11',2927,2265,0,0,2209,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3490,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-11 10:38:52','','0000-00-00 00:00:00',0),(3554,0,0,'H','2526','','',3554,0,0,'2025-11-11',2930,2266,0,0,2210,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3491,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 10:41:21','','0000-00-00 00:00:00',0),(3555,0,0,'H','2526','','',3555,0,0,'2025-11-11',2931,2267,0,0,2211,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3492,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 10:45:23','','0000-00-00 00:00:00',0),(3556,0,0,'H','2526','','',3556,0,0,'2025-11-11',2932,1780,0,0,1736,'B',500.00,0.00,'7','axis','','61975','','0000-00-00','scan','',3493,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 10:48:07','','0000-00-00 00:00:00',0),(3557,0,0,'H','2526','','',3557,0,0,'2025-11-11',2933,2268,0,0,2212,'B',500.00,0.00,'7','hdfc','','06017','','0000-00-00','scan','',3494,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 10:51:08','','0000-00-00 00:00:00',0),(3558,0,0,'H','2526','','',3558,0,0,'2025-11-11',2934,2269,0,0,2213,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3495,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 10:52:08','','0000-00-00 00:00:00',0),(3559,0,0,'H','2526','','',3559,0,0,'2025-11-11',2937,2271,0,0,2215,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3496,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 10:55:50','','0000-00-00 00:00:00',0),(3560,0,0,'H','2526','','',3560,0,0,'2025-11-11',2938,2272,0,0,2216,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3497,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 10:57:22','','0000-00-00 00:00:00',0),(3561,0,0,'H','2526','','',3561,0,0,'2025-11-11',2939,2273,0,0,2217,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3498,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-11 10:58:57','','0000-00-00 00:00:00',0),(3562,0,0,'H','2526','','',3562,0,0,'2025-11-11',2940,1778,0,0,1734,'B',1000.00,0.00,'7','hdfc','','29247','','0000-00-00','scan','',3499,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 11:03:47','','0000-00-00 00:00:00',0),(3563,0,0,'H','2526','','',3563,0,0,'2025-11-11',2941,2274,0,0,2218,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3500,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 11:04:06','','0000-00-00 00:00:00',0),(3564,0,0,'H','2526','','',3564,0,0,'2025-11-11',2942,2275,0,0,2219,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3501,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 11:05:23','','0000-00-00 00:00:00',0),(3565,0,0,'H','2526','','',3565,0,0,'2025-11-11',2943,668,0,0,638,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3502,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 11:08:38','','0000-00-00 00:00:00',0),(3566,0,0,'H','2526','','',3566,0,0,'2025-11-11',2944,1461,0,0,1420,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3503,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 11:09:32','','0000-00-00 00:00:00',0),(3567,0,0,'H','2526','','',3567,0,0,'2025-11-11',2946,287,0,0,271,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3504,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 11:10:58','','0000-00-00 00:00:00',0),(3568,0,0,'H','2526','','',3568,0,0,'2025-11-11',2945,2276,0,0,2220,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3505,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-11 11:11:11','','0000-00-00 00:00:00',0),(3569,0,0,'H','2526','','',3569,0,0,'2025-11-11',2947,2277,0,0,2221,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3506,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 11:12:21','','0000-00-00 00:00:00',0),(3570,0,0,'H','2526','','',3570,0,0,'2025-11-11',2948,1591,0,0,1548,'B',500.00,0.00,'7','axis','','68248','','0000-00-00','scan','',3507,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 11:13:16','','0000-00-00 00:00:00',0),(3571,0,0,'H','2526','','',3571,0,0,'2025-11-11',2951,1288,0,0,1247,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3508,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 11:13:59','','0000-00-00 00:00:00',0),(3572,0,0,'H','2526','','',3572,0,0,'2025-11-11',2952,1910,0,0,1865,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3509,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-11 11:16:21','','0000-00-00 00:00:00',0),(3573,0,0,'H','2526','','',3573,0,0,'2025-11-11',2953,2278,0,0,2222,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3510,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 11:16:24','','0000-00-00 00:00:00',0),(3574,0,0,'H','2526','','',3574,0,0,'2025-11-11',2939,2273,0,0,2217,'D',-500.00,0.00,'CSH','','','','','2025-11-11','','',3511,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-11 11:19:02','','0000-00-00 00:00:00',0),(3575,0,0,'H','2526','','',3575,0,0,'2025-11-11',2954,2279,0,0,2223,'B',750.00,0.00,'7','BOI BANK','','95414','','0000-00-00','scan ','',3512,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 11:19:11','','0000-00-00 00:00:00',0),(3576,0,0,'H','2526','','',3576,0,0,'2025-11-11',2955,2280,0,0,2224,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3513,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 11:19:16','','0000-00-00 00:00:00',0),(3577,0,0,'H','2526','','',3577,0,0,'2025-11-11',2920,2262,0,0,2206,'B',2500.00,0.00,'CSH','','','','','0000-00-00','','',3514,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 11:20:52','','0000-00-00 00:00:00',0),(3578,0,0,'H','2526','','',3578,0,0,'2025-11-11',2957,2282,0,0,2226,'B',750.00,0.00,'7','hdfc','','29581','','0000-00-00','scan ','',3515,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 11:22:59','','0000-00-00 00:00:00',0),(3579,0,0,'H','2526','','',3579,0,0,'2025-11-11',2956,2281,0,0,2225,'B',750.00,0.00,'7','hdfc','','29581','','0000-00-00','scan ','',3516,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 11:23:10','','0000-00-00 00:00:00',0),(3580,0,0,'H','2526','','',3580,0,0,'2025-11-11',2958,2283,0,0,2227,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3517,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 11:31:42','','0000-00-00 00:00:00',0),(3581,0,0,'H','2526','','',3581,0,0,'2025-11-11',2959,1067,0,0,1033,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3518,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-11 11:33:22','','0000-00-00 00:00:00',0),(3582,0,0,'H','2526','','',3582,0,0,'2025-11-11',2960,2284,0,0,2228,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3519,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 11:33:38','','0000-00-00 00:00:00',0),(3583,0,0,'H','2526','','',3583,0,0,'2025-11-11',2961,2285,0,0,2229,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3520,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 11:37:06','','0000-00-00 00:00:00',0),(3584,0,0,'H','2526','','',3584,0,0,'2025-11-11',2934,2269,0,0,2213,'B',4600.00,0.00,'CRD','sbi','3200','3200','','0000-00-00','card','',3521,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 11:38:19','','0000-00-00 00:00:00',0),(3585,0,0,'H','2526','','',3585,0,0,'2025-11-11',2963,2287,0,0,2231,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3522,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 11:40:06','','0000-00-00 00:00:00',0),(3586,0,0,'H','2526','','',3586,0,0,'2025-11-11',2964,2288,0,0,2232,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3523,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 11:40:23','','0000-00-00 00:00:00',0),(3587,0,0,'H','2526','','',3587,0,0,'2025-11-11',2962,2286,0,0,2230,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3524,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 11:40:28','','0000-00-00 00:00:00',0),(3588,0,0,'H','2526','','',3588,0,0,'2025-11-11',2965,1269,0,0,1228,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3525,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 11:41:48','','0000-00-00 00:00:00',0),(3589,0,0,'H','2526','','',3589,0,0,'2025-11-11',2967,1312,0,0,1273,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3526,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 11:42:34','','0000-00-00 00:00:00',0),(3590,0,0,'H','2526','','',3590,0,0,'2025-11-11',2966,2289,0,0,2233,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3527,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 11:42:38','','0000-00-00 00:00:00',0),(3591,0,0,'H','2526','','',3591,0,0,'2025-11-11',2968,2290,0,0,2234,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3528,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 11:43:19','','0000-00-00 00:00:00',0),(3592,0,0,'H','2526','','',3592,0,0,'2025-11-11',2959,1067,0,0,1033,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',3529,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-11 11:44:28','','0000-00-00 00:00:00',0),(3593,0,0,'H','2526','','',3593,0,0,'2025-11-11',2924,2263,0,0,2207,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',3530,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 11:46:27','','0000-00-00 00:00:00',0),(3594,0,0,'H','2526','','',3594,0,0,'2025-11-11',2969,2291,0,0,2235,'B',900.00,0.00,'2','hdfc','3201','3201','','0000-00-00','card','',3531,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 11:49:28','','0000-00-00 00:00:00',0),(3595,0,0,'H','2526','','',3595,0,0,'2025-11-11',2970,804,0,0,773,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3532,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 11:51:12','','0000-00-00 00:00:00',0),(3596,0,0,'H','2526','','',3596,0,0,'2025-11-11',2971,2292,0,0,2236,'B',750.00,0.00,'7','axis bank','','66465','','0000-00-00','scan ','',3533,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 11:55:21','','0000-00-00 00:00:00',0),(3597,0,0,'H','2526','','',3597,0,0,'2025-11-11',2972,714,0,0,1085,'B',400.00,0.00,'7','icici','','27581','','0000-00-00','scan','',3534,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 11:56:22','','0000-00-00 00:00:00',0),(3598,0,0,'H','2526','','',3598,0,0,'2025-11-11',2973,2293,0,0,2237,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3535,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 12:02:01','','0000-00-00 00:00:00',0),(3599,0,0,'H','2526','','',3599,0,0,'2025-11-11',2974,1976,0,0,1928,'B',300.00,0.00,'7','INDIA POST PAY','','22337','','0000-00-00','SCAN','',3536,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-11 12:03:40','','0000-00-00 00:00:00',0),(3600,0,0,'H','2526','','',3600,0,0,'2025-11-11',2975,847,0,0,816,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3537,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 12:05:52','','0000-00-00 00:00:00',0),(3601,0,0,'H','2526','','',3601,0,0,'2025-11-11',2977,564,0,0,538,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3538,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 12:09:54','','0000-00-00 00:00:00',0),(3602,0,0,'H','2526','','',3602,0,0,'2025-11-11',2976,2294,0,0,2238,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3539,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 12:10:19','','0000-00-00 00:00:00',0),(3603,0,0,'H','2526','','',3603,0,0,'2025-11-11',2978,2036,0,0,1985,'B',400.00,0.00,'7','SBI','','22937','','0000-00-00','SCAN','',3540,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-11 12:13:56','','0000-00-00 00:00:00',0),(3604,0,0,'H','2526','','',3604,0,0,'2025-11-11',2980,2295,0,0,2239,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3541,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 12:17:53','','0000-00-00 00:00:00',0),(3605,0,0,'H','2526','','',3605,0,0,'2025-11-11',2981,325,0,0,309,'B',500.00,0.00,'7','bob','','75450','','0000-00-00','scan                          ','',3542,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 12:19:00','','0000-00-00 00:00:00',0),(3606,0,0,'H','2526','','',3606,0,0,'2025-11-11',2982,2296,0,0,2240,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3543,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 12:20:25','','0000-00-00 00:00:00',0),(3607,0,0,'H','2526','','',3607,0,0,'2025-11-11',2985,2299,0,0,2243,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3544,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 12:23:00','','0000-00-00 00:00:00',0),(3608,0,0,'H','2526','','',3608,0,0,'2025-11-11',2986,2300,0,0,2244,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3545,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 12:23:05','','0000-00-00 00:00:00',0),(3609,0,0,'H','2526','','',3609,0,0,'2025-11-11',2983,2297,0,0,2241,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3546,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 12:23:15','','0000-00-00 00:00:00',0),(3610,0,0,'H','2526','','',3610,0,0,'2025-11-11',2987,1461,0,0,1420,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3547,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 12:23:27','','0000-00-00 00:00:00',0),(3611,0,0,'H','2526','','',3611,0,0,'2025-11-11',2984,2298,0,0,2242,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3548,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 12:23:39','','0000-00-00 00:00:00',0),(3612,0,0,'H','2526','','',3612,0,0,'2025-11-11',2988,1993,0,0,1945,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3549,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 12:24:58','','0000-00-00 00:00:00',0),(3613,0,0,'H','2526','','',3613,0,0,'2025-11-11',2989,533,0,0,508,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3550,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 12:25:24','','0000-00-00 00:00:00',0),(3614,0,0,'H','2526','','',3614,0,0,'2025-11-11',2950,2254,0,0,2198,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',3551,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 12:30:27','','0000-00-00 00:00:00',0),(3615,0,0,'H','2526','','',3615,0,0,'2025-11-11',2990,1552,0,0,1511,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3552,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 12:30:39','','0000-00-00 00:00:00',0),(3616,0,0,'H','2526','','',3616,0,0,'2025-11-11',2958,2283,0,0,2227,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3554,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 12:31:50','','0000-00-00 00:00:00',0),(3617,0,0,'H','2526','','',3617,0,0,'2025-11-11',2991,2301,0,0,2245,'B',1400.00,0.00,'CSH','','','','','0000-00-00','','',3555,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-11 12:34:39','','0000-00-00 00:00:00',0),(3618,0,0,'H','2526','','',3618,0,0,'2025-11-11',2992,22,0,0,21,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3556,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 12:36:35','','0000-00-00 00:00:00',0),(3619,0,0,'H','2526','','',3619,0,0,'2025-11-11',2993,300,0,0,284,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3557,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 12:38:40','','0000-00-00 00:00:00',0),(3620,0,0,'H','2526','','',3620,0,0,'2025-11-11',2969,2291,0,0,2235,'B',4600.00,0.00,'2','HDFC','3202','3202','','0000-00-00','card','',3558,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 12:44:33','','0000-00-00 00:00:00',0),(3621,0,0,'H','2526','','',3621,0,0,'2025-11-11',2949,2248,0,0,2191,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',3559,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 12:44:34','','0000-00-00 00:00:00',0),(3622,0,0,'H','2526','','',3622,0,0,'2025-11-11',2960,2284,0,0,2228,'D',-700.00,0.00,'CSH','','','','','2025-11-11','','',3560,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-11 12:51:03','','0000-00-00 00:00:00',0),(3623,0,0,'H','2526','','P',3623,0,0,'2025-11-11',2691,2127,0,138,0,'A',7950.00,0.00,'7','BOI','','113986928432','','0000-00-00','UPI','',3561,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-11 12:54:27','riya','2025-11-11 12:55:05',0),(3624,0,0,'H','2526','','',3624,0,0,'2025-11-11',2944,1461,0,0,1420,'D',-400.00,0.00,'CSH','','','','','2025-11-11','','',3562,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 13:04:29','','0000-00-00 00:00:00',0),(3625,0,0,'H','2526','','P',3625,0,0,'2025-11-11',2994,2302,0,148,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',3771,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-11 13:05:23','vishal','2025-11-12 19:46:37',0),(3626,0,0,'H','2526','','P',3626,0,0,'2025-11-11',2811,2201,0,143,0,'A',55000.00,0.00,'7','BOB','','531520289334','','0000-00-00','','UPI',4510,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-11 13:28:21','riya','2025-11-20 12:45:24',0),(3627,0,0,'H','2526','','',3627,0,0,'2025-11-11',2938,2272,0,0,2216,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3563,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 13:49:11','','0000-00-00 00:00:00',0),(3628,0,0,'H','2526','','',3628,0,0,'2025-11-11',2995,2303,0,0,2246,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3564,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 13:50:58','','0000-00-00 00:00:00',0),(3629,0,0,'H','2526','','',3629,0,0,'2025-11-11',2996,2304,0,0,2247,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3565,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 14:10:15','','0000-00-00 00:00:00',0),(3630,0,0,'H','2526','','',3630,0,0,'2025-11-11',2997,2305,0,0,2248,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3566,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-11 14:13:07','','0000-00-00 00:00:00',0),(3631,0,0,'H','2526','','',3631,0,0,'2025-11-11',2996,2304,0,0,2247,'D',-500.00,0.00,'CSH','','','','','2025-11-11','','',3567,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 14:13:45','','0000-00-00 00:00:00',0),(3632,0,0,'H','2526','','',3632,0,0,'2025-11-11',2998,2306,0,0,2249,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3568,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-11 16:42:11','','0000-00-00 00:00:00',0),(3633,0,0,'H','2526','','',3633,0,0,'2025-11-11',2999,2307,0,0,2250,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3569,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 16:43:55','','0000-00-00 00:00:00',0),(3634,0,0,'H','2526','','',3634,0,0,'2025-11-11',3000,1029,0,0,997,'B',500.00,0.00,'7','sbi','','92257','','0000-00-00','scan','',3570,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-11 16:49:08','','0000-00-00 00:00:00',0),(3635,0,0,'H','2526','','',3635,0,0,'2025-11-11',3001,2308,0,0,2251,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3571,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 17:07:41','','0000-00-00 00:00:00',0),(3636,0,0,'H','2526','','',3636,0,0,'2025-11-11',3002,2300,0,0,2244,'B',4500.00,0.00,'7','sbi','','93325','','0000-00-00','scan','',3572,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 17:10:21','','0000-00-00 00:00:00',0),(3637,0,0,'H','2526','','',3637,0,0,'2025-11-11',3003,486,0,0,460,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3573,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 17:16:21','','0000-00-00 00:00:00',0),(3638,0,0,'H','2526','','P',3638,0,0,'2025-11-11',2876,2241,0,145,0,'A',8000.00,0.00,'CSH','','','','','0000-00-00','','',4022,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-11 17:16:33','vishal','2025-11-14 20:30:52',0),(3639,0,0,'H','2526','','',3639,0,0,'2025-11-11',3004,2024,0,0,1976,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',3574,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 17:17:51','','0000-00-00 00:00:00',0),(3640,0,0,'H','2526','','',3640,0,0,'2025-11-11',3005,2309,0,0,2252,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3575,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 17:21:01','','0000-00-00 00:00:00',0),(3641,0,0,'H','2526','','',3641,0,0,'2025-11-11',3006,2143,0,0,2089,'B',4200.00,0.00,'CSH','','','','','0000-00-00','','',3576,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 17:24:36','','0000-00-00 00:00:00',0),(3642,0,0,'H','2526','','',3642,0,0,'2025-11-11',3008,1173,0,0,1133,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3577,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 17:33:53','','0000-00-00 00:00:00',0),(3643,0,0,'H','2526','','',3643,0,0,'2025-11-11',3001,2308,0,0,2251,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',3578,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 17:33:55','','0000-00-00 00:00:00',0),(3644,0,0,'H','2526','','',3644,0,0,'2025-11-11',3009,363,0,0,347,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3579,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 17:39:51','','0000-00-00 00:00:00',0),(3645,0,0,'H','2526','','',3645,0,0,'2025-11-11',3010,2311,0,0,2254,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3580,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 17:42:11','','0000-00-00 00:00:00',0),(3646,0,0,'H','2526','','',3646,0,0,'2025-11-11',2999,2307,0,0,2250,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',3581,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 17:43:06','','0000-00-00 00:00:00',0),(3647,0,0,'H','2526','','',3647,0,0,'2025-11-11',3011,2312,0,0,2255,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3582,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-11 17:46:07','','0000-00-00 00:00:00',0),(3648,0,0,'H','2526','','',3648,0,0,'2025-11-11',3013,2313,0,0,2256,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3583,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 17:51:39','','0000-00-00 00:00:00',0),(3649,0,0,'H','2526','','',3649,0,0,'2025-11-11',3012,1719,0,0,1674,'B',400.00,0.00,'7','SBI BANK','','37576','','0000-00-00','scan ','',3584,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 17:52:28','','0000-00-00 00:00:00',0),(3650,0,0,'H','2526','','',3650,0,0,'2025-11-11',3014,2056,0,0,2005,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3585,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 17:53:21','','0000-00-00 00:00:00',0),(3651,0,0,'H','2526','','',3651,0,0,'2025-11-11',3015,2314,0,0,2257,'B',900.00,0.00,'7','icici','','11035','','0000-00-00','scan','',3586,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 17:56:40','','0000-00-00 00:00:00',0),(3652,0,0,'H','2526','','',3652,0,0,'2025-11-11',3016,2315,0,0,2258,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3587,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 18:01:21','','0000-00-00 00:00:00',0),(3653,0,0,'H','2526','','',3653,0,0,'2025-11-11',3017,2316,0,0,2259,'B',750.00,0.00,'7','HDFC','','00648','','0000-00-00','scan','',3588,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 18:02:39','','0000-00-00 00:00:00',0),(3654,0,0,'H','2526','','',3654,0,0,'2025-11-11',3018,2317,0,0,2260,'B',500.00,0.00,'7','sbi','','23114','','0000-00-00','scan ','',3589,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 18:03:42','','0000-00-00 00:00:00',0),(3655,0,0,'H','2526','','',3655,0,0,'2025-11-11',3019,2318,0,0,2261,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3590,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 18:04:32','','0000-00-00 00:00:00',0),(3656,0,0,'H','2526','','',3656,0,0,'2025-11-11',3021,1763,0,0,2118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3591,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 18:05:06','','0000-00-00 00:00:00',0),(3657,0,0,'H','2526','','',3657,0,0,'2025-11-11',3022,2320,0,0,2263,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3592,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 18:11:11','','0000-00-00 00:00:00',0),(3658,0,0,'H','2526','','',3658,0,0,'2025-11-11',3023,2321,0,0,2264,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3593,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 18:11:16','','0000-00-00 00:00:00',0),(3659,0,0,'H','2526','','',3659,0,0,'2025-11-11',3024,2322,0,0,2265,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3594,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 18:11:55','','0000-00-00 00:00:00',0),(3660,0,0,'H','2526','','',3660,0,0,'2025-11-11',3025,1437,0,0,1397,'B',400.00,0.00,'7','idbi','','17873','','0000-00-00','scan','',3595,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 18:14:20','','0000-00-00 00:00:00',0),(3661,0,0,'H','2526','','',3661,0,0,'2025-11-11',3026,2323,0,0,2266,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3596,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 18:14:48','','0000-00-00 00:00:00',0),(3662,0,0,'H','2526','','',3662,0,0,'2025-11-11',3028,373,0,0,357,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3597,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 18:15:28','','0000-00-00 00:00:00',0),(3663,0,0,'H','2526','','',3663,0,0,'2025-11-11',3030,2324,0,0,2267,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3598,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 18:17:23','','0000-00-00 00:00:00',0),(3664,0,0,'H','2526','','P',3664,0,0,'2025-11-11',3027,2304,0,149,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',4134,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-11 18:19:17','riya','2025-11-17 10:37:31',0),(3665,0,0,'H','2526','','',3665,0,0,'2025-11-11',3015,2314,0,0,2257,'B',3500.00,0.00,'7','hdfc','','65299','','0000-00-00','scan','',3599,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 18:21:04','','0000-00-00 00:00:00',0),(3666,0,0,'H','2526','','',3666,0,0,'2025-11-11',3031,2325,0,0,2268,'B',900.00,0.00,'7','HDFC BANK','','18789','','0000-00-00','scan ','',3600,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 18:23:13','','0000-00-00 00:00:00',0),(3667,0,0,'H','2526','','',3667,0,0,'2025-11-11',3032,2326,0,0,2269,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3601,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-11 18:26:30','','0000-00-00 00:00:00',0),(3668,0,0,'H','2526','','',3668,0,0,'2025-11-11',3033,2327,0,0,2270,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3602,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 18:32:28','','0000-00-00 00:00:00',0),(3669,0,0,'H','2526','','',3669,0,0,'2025-11-11',3034,924,0,0,892,'B',400.00,0.00,'7','boi','','07745','','0000-00-00','scan','',3603,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 18:35:13','','0000-00-00 00:00:00',0),(3670,0,0,'H','2526','','',3670,0,0,'2025-11-11',3035,2328,0,0,2271,'B',400.00,0.00,'7','HDFC BANK','','32490','','0000-00-00','scan ','',3604,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 18:35:32','','0000-00-00 00:00:00',0),(3671,0,0,'H','2526','','',3671,0,0,'2025-11-11',3037,2329,0,0,2272,'B',750.00,0.00,'7','icici','','89096','','0000-00-00','scan','',3605,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 18:37:40','','0000-00-00 00:00:00',0),(3672,0,0,'H','2526','','',3672,0,0,'2025-11-11',3038,2330,0,0,2273,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3606,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 18:39:00','','0000-00-00 00:00:00',0),(3673,0,0,'H','2526','','',3673,0,0,'2025-11-11',3036,129,0,0,118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3607,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 18:40:06','','0000-00-00 00:00:00',0),(3674,0,0,'H','2526','','',3674,0,0,'2025-11-11',3032,2326,0,0,2269,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',3608,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-11 18:42:21','','0000-00-00 00:00:00',0),(3675,0,0,'H','2526','','',3675,0,0,'2025-11-11',3040,1708,0,0,1663,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3609,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 18:43:58','','0000-00-00 00:00:00',0),(3676,0,0,'H','2526','','',3676,0,0,'2025-11-11',3039,2331,0,0,2274,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3610,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 18:44:07','','0000-00-00 00:00:00',0),(3677,0,0,'H','2526','','',3677,0,0,'2025-11-11',3042,2333,0,0,2276,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3611,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 18:47:53','','0000-00-00 00:00:00',0),(3678,0,0,'H','2526','','',3678,0,0,'2025-11-11',3041,2332,0,0,2275,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3612,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 18:48:36','','0000-00-00 00:00:00',0),(3679,0,0,'H','2526','','',3679,0,0,'2025-11-11',3020,2319,0,0,2262,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3613,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 18:49:24','','0000-00-00 00:00:00',0),(3680,0,0,'H','2526','','',3680,0,0,'2025-11-11',3044,403,0,0,983,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3614,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 18:50:08','','0000-00-00 00:00:00',0),(3681,0,0,'H','2526','','',3681,0,0,'2025-11-11',3030,2324,0,0,2267,'B',600.00,0.00,'7','rnsb','','91915','','0000-00-00','scan','',3615,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 18:50:24','','0000-00-00 00:00:00',0),(3682,0,0,'H','2526','','',3682,0,0,'2025-11-11',3045,2334,0,0,2277,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3616,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 18:52:36','','0000-00-00 00:00:00',0),(3683,0,0,'H','2526','','',3683,0,0,'2025-11-11',3046,2335,0,0,2278,'B',400.00,0.00,'7','BOB BANK','','09916','','0000-00-00','scan ','',3617,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 18:55:04','','0000-00-00 00:00:00',0),(3684,0,0,'H','2526','','',3684,0,0,'2025-11-11',3020,2319,0,0,2262,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',3618,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 18:56:24','','0000-00-00 00:00:00',0),(3685,0,0,'H','2526','','',3685,0,0,'2025-11-11',3031,2325,0,0,2268,'B',4000.00,0.00,'7','HDFC','','64662','','0000-00-00','scan','',3619,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 18:58:47','','0000-00-00 00:00:00',0),(3686,0,0,'H','2526','','',3686,0,0,'2025-11-11',3047,2336,0,0,2279,'B',400.00,0.00,'7','ICICI BANK','','66094','','0000-00-00','scan ','',3620,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 19:02:33','','0000-00-00 00:00:00',0),(3687,0,0,'H','2526','','',3687,0,0,'2025-11-11',3019,2318,0,0,2261,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',3621,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 19:03:05','','0000-00-00 00:00:00',0),(3688,0,0,'H','2526','','',3688,0,0,'2025-11-11',3048,2337,0,0,2280,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3622,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 19:07:02','','0000-00-00 00:00:00',0),(3689,0,0,'H','2526','','',3689,0,0,'2025-11-11',3043,1562,0,0,1521,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3623,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 19:10:34','','0000-00-00 00:00:00',0),(3690,0,0,'H','2526','','',3690,0,0,'2025-11-11',3049,1403,0,0,1363,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3624,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 19:11:05','','0000-00-00 00:00:00',0),(3691,0,0,'H','2526','','',3691,0,0,'2025-11-11',3045,2334,0,0,2277,'B',5800.00,0.00,'7','saraswat bank','','79845','','0000-00-00','scan','',3625,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 19:22:15','','0000-00-00 00:00:00',0),(3692,0,0,'H','2526','','',3692,0,0,'2025-11-11',3029,1361,0,0,1321,'B',400.00,0.00,'7','SBI BANK','','23151','','0000-00-00','scan ','',3626,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 19:26:15','','0000-00-00 00:00:00',0),(3693,0,0,'H','2526','','',3693,0,0,'2025-11-11',3051,2339,0,0,2282,'B',400.00,0.00,'CRD','bank','','74423','','0000-00-00','','',3627,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 19:27:02','','0000-00-00 00:00:00',0),(3694,0,0,'H','2526','','',3694,0,0,'2025-11-11',3032,2326,0,0,2269,'B',200.00,0.00,'7','SBI','','12845','','0000-00-00','SCAN','',3628,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-11 19:27:17','','0000-00-00 00:00:00',0),(3695,0,0,'H','2526','','',3695,0,0,'2025-11-11',3052,2340,0,0,2283,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3629,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 19:27:37','','0000-00-00 00:00:00',0),(3696,0,0,'H','2526','','',3696,0,0,'2025-11-11',3050,2338,0,0,2281,'B',750.00,0.00,'CRD','BANK','','18580','','0000-00-00','CARD','',3630,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 19:29:25','','0000-00-00 00:00:00',0),(3697,0,0,'H','2526','','',3697,0,0,'2025-11-11',3053,2341,0,0,2284,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3631,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-11 19:32:01','','0000-00-00 00:00:00',0),(3698,0,0,'H','2526','','',3698,0,0,'2025-11-11',3054,2342,0,0,2285,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3632,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-11 19:45:28','','0000-00-00 00:00:00',0),(3699,0,0,'H','2526','','',3699,0,0,'2025-11-11',3055,2343,0,0,2286,'B',2150.00,0.00,'7','KOTAK BANK ','','75126','','0000-00-00','scan ','',3633,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-11 20:58:46','','0000-00-00 00:00:00',0),(3700,0,0,'H','2526','','',3700,0,0,'2025-11-12',3056,2344,0,0,2287,'B',1400.00,0.00,'CSH','','','','','0000-00-00','','',3634,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 08:49:42','','0000-00-00 00:00:00',0),(3701,0,0,'H','2526','','',3701,0,0,'2025-11-12',3057,2345,0,0,2288,'B',1100.00,0.00,'7','axis','','52716','','0000-00-00','scan','',3635,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 09:08:08','','0000-00-00 00:00:00',0),(3702,0,0,'H','2526','','',3702,0,0,'2025-11-12',3059,2347,0,0,2290,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3636,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 09:49:24','','0000-00-00 00:00:00',0),(3703,0,0,'H','2526','','',3703,0,0,'2025-11-12',3060,2348,0,0,2291,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3637,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 09:50:37','','0000-00-00 00:00:00',0),(3704,0,0,'H','2526','','',3704,0,0,'2025-11-12',3062,1759,0,0,1715,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3638,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 10:11:56','','0000-00-00 00:00:00',0),(3705,0,0,'H','2526','','',3705,0,0,'2025-11-12',3061,2349,0,0,2292,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3639,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 10:12:25','','0000-00-00 00:00:00',0),(3706,0,0,'H','2526','','',3706,0,0,'2025-11-12',3064,1870,0,0,1824,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3640,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 10:35:02','','0000-00-00 00:00:00',0),(3707,0,0,'H','2526','','',3707,0,0,'2025-11-12',3065,20,0,0,20,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3641,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 10:36:01','','0000-00-00 00:00:00',0),(3708,0,0,'H','2526','','',3708,0,0,'2025-11-12',3066,2351,0,0,2294,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3642,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 10:39:26','','0000-00-00 00:00:00',0),(3709,0,0,'H','2526','','',3709,0,0,'2025-11-12',3067,2352,0,0,2295,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3643,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 10:42:26','','0000-00-00 00:00:00',0),(3710,0,0,'H','2526','','',3710,0,0,'2025-11-12',3068,1135,0,0,1097,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3644,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 10:45:49','','0000-00-00 00:00:00',0),(3711,0,0,'H','2526','','',3711,0,0,'2025-11-12',3064,1870,0,0,1824,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3645,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 10:55:17','','0000-00-00 00:00:00',0),(3712,0,0,'H','2526','','',3712,0,0,'2025-11-12',3069,2353,0,0,2296,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3646,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 10:56:46','','0000-00-00 00:00:00',0),(3713,0,0,'H','2526','','',3713,0,0,'2025-11-12',3070,2354,0,0,2297,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3647,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 11:00:23','','0000-00-00 00:00:00',0),(3714,0,0,'H','2526','','',3714,0,0,'2025-11-12',3071,2355,0,0,2298,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3648,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 11:06:16','','0000-00-00 00:00:00',0),(3715,0,0,'H','2526','','',3715,0,0,'2025-11-12',3072,498,0,0,472,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3649,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 11:09:07','','0000-00-00 00:00:00',0),(3716,0,0,'H','2526','','',3716,0,0,'2025-11-12',3073,2356,0,0,2299,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3650,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 11:10:45','','0000-00-00 00:00:00',0),(3717,0,0,'H','2526','','',3717,0,0,'2025-11-12',3075,2358,0,0,2301,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3651,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-12 11:11:43','','0000-00-00 00:00:00',0),(3718,0,0,'H','2526','','',3718,0,0,'2025-11-12',3074,2357,0,0,2300,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3652,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 11:12:12','','0000-00-00 00:00:00',0),(3719,0,0,'H','2526','','',3719,0,0,'2025-11-12',3076,1276,0,0,1235,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3653,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 11:12:44','','0000-00-00 00:00:00',0),(3720,0,0,'H','2526','','',3720,0,0,'2025-11-12',3078,2359,0,0,2302,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3654,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 11:15:51','','0000-00-00 00:00:00',0),(3721,0,0,'H','2526','','',3721,0,0,'2025-11-12',3058,2346,0,0,2289,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3655,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-12 11:17:24','','0000-00-00 00:00:00',0),(3722,0,0,'H','2526','','',3722,0,0,'2025-11-12',3079,2360,0,0,2303,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3656,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 11:17:57','','0000-00-00 00:00:00',0),(3723,0,0,'H','2526','','',3723,0,0,'2025-11-12',3080,2361,0,0,2304,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3657,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-12 11:20:51','','0000-00-00 00:00:00',0),(3724,0,0,'H','2526','','',3724,0,0,'2025-11-12',3081,2362,0,0,2305,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3658,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 11:21:44','','0000-00-00 00:00:00',0),(3725,0,0,'H','2526','','',3725,0,0,'2025-11-12',3077,1327,0,0,1288,'B',100.00,0.00,'7','bob','','71239','','0000-00-00','scan ','',3659,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 11:27:48','','0000-00-00 00:00:00',0),(3726,0,0,'H','2526','','',3726,0,0,'2025-11-12',3083,2364,0,0,2307,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3660,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 11:28:01','','0000-00-00 00:00:00',0),(3727,0,0,'H','2526','','',3727,0,0,'2025-11-12',3076,1276,0,0,1235,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',3661,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-12 11:31:23','','0000-00-00 00:00:00',0),(3728,0,0,'H','2526','','',3728,0,0,'2025-11-12',3084,2365,0,0,2308,'B',500.00,0.00,'7','PNB','','93445','','0000-00-00','scan','',3662,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 11:31:33','','0000-00-00 00:00:00',0),(3729,0,0,'H','2526','','',3729,0,0,'2025-11-12',3060,2348,0,0,2291,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',3664,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 11:34:56','','0000-00-00 00:00:00',0),(3730,0,0,'H','2526','','',3730,0,0,'2025-11-12',3086,2367,0,0,2310,'B',500.00,0.00,'7','bob','','58570','','0000-00-00','scan                          ','',3665,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 11:36:40','','0000-00-00 00:00:00',0),(3731,0,0,'H','2526','','',3731,0,0,'2025-11-12',3082,2363,0,0,2306,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3666,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-12 11:39:54','','0000-00-00 00:00:00',0),(3732,0,0,'H','2526','','',3732,0,0,'2025-11-12',3087,795,0,0,764,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3667,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 11:41:25','','0000-00-00 00:00:00',0),(3733,0,0,'H','2526','','P',3733,0,0,'2025-11-12',2879,2243,0,146,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-12 11:42:08','vishal','2025-11-12 11:42:08',0),(3734,0,0,'H','2526','','',3734,0,0,'2025-11-12',3088,2368,0,0,2311,'B',750.00,0.00,'7','icici','','95966','','0000-00-00','scan ','',3668,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 11:42:15','','0000-00-00 00:00:00',0),(3735,0,0,'H','2526','','',3735,0,0,'2025-11-12',3089,787,0,0,755,'B',500.00,0.00,'7','KOTAK','','04031','','0000-00-00','scan','',3669,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 11:46:31','','0000-00-00 00:00:00',0),(3736,0,0,'H','2526','','',3736,0,0,'2025-11-12',3090,535,0,0,510,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3670,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 11:48:23','','0000-00-00 00:00:00',0),(3737,0,0,'H','2526','','',3737,0,0,'2025-11-12',3074,2357,0,0,2300,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',3671,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 11:51:17','','0000-00-00 00:00:00',0),(3738,0,0,'H','2526','','',3738,0,0,'2025-11-12',3092,1599,0,0,1556,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3672,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 11:51:49','','0000-00-00 00:00:00',0),(3739,0,0,'H','2526','','',3739,0,0,'2025-11-12',3091,2369,0,0,2312,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3673,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-12 11:52:02','','0000-00-00 00:00:00',0),(3740,0,0,'H','2526','','',3740,0,0,'2025-11-12',3093,2370,0,0,2313,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3674,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 11:56:00','','0000-00-00 00:00:00',0),(3741,0,0,'H','2526','','',3741,0,0,'2025-11-12',3094,2371,0,0,2314,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3675,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 11:57:49','','0000-00-00 00:00:00',0),(3742,0,0,'H','2526','','',3742,0,0,'2025-11-12',3095,2372,0,0,2315,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3676,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-12 12:01:19','','0000-00-00 00:00:00',0),(3743,0,0,'H','2526','','',3743,0,0,'2025-11-12',3096,2373,0,0,2316,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3677,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 12:02:44','','0000-00-00 00:00:00',0),(3744,0,0,'H','2526','','',3744,0,0,'2025-11-12',3097,255,0,0,240,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3678,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 12:05:32','','0000-00-00 00:00:00',0),(3745,0,0,'H','2526','','',3745,0,0,'2025-11-12',3098,2374,0,0,2317,'B',700.00,0.00,'7','HDFC','','41730','','0000-00-00','scan','',3679,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 12:06:46','','0000-00-00 00:00:00',0),(3746,0,0,'H','2526','','',3746,0,0,'2025-11-12',3099,2375,0,0,2318,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3680,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 12:11:15','','0000-00-00 00:00:00',0),(3747,0,0,'H','2526','','',3747,0,0,'2025-11-12',3073,2356,0,0,2299,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3681,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 12:11:17','','0000-00-00 00:00:00',0),(3748,0,0,'H','2526','','P',3748,0,0,'2025-11-12',2994,2302,0,148,0,'A',5900.00,0.00,'CSH','','','','','0000-00-00','','',3771,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-12 12:11:58','vishal','2025-11-12 19:46:37',0),(3749,0,0,'H','2526','','',3749,0,0,'2025-11-12',3100,2376,0,0,2319,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3683,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 12:25:29','','0000-00-00 00:00:00',0),(3750,0,0,'H','2526','','',3750,0,0,'2025-11-12',3101,2126,0,0,2072,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3684,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 12:25:44','','0000-00-00 00:00:00',0),(3751,0,0,'H','2526','','',3751,0,0,'2025-11-12',3102,2377,0,0,2320,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3685,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 12:27:09','','0000-00-00 00:00:00',0),(3752,0,0,'H','2526','','',3752,0,0,'2025-11-12',3103,589,0,0,562,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3686,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 12:28:47','','0000-00-00 00:00:00',0),(3753,0,0,'H','2526','','',3753,0,0,'2025-11-12',3105,212,0,0,199,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3687,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 12:40:41','','0000-00-00 00:00:00',0),(3754,0,0,'H','2526','','',3754,0,0,'2025-11-12',3106,2379,0,0,2322,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3688,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 12:43:17','','0000-00-00 00:00:00',0),(3755,0,0,'H','2526','','',3755,0,0,'2025-11-12',3107,2380,0,0,2323,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3689,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 12:43:51','','0000-00-00 00:00:00',0),(3756,0,0,'H','2526','','',3756,0,0,'2025-11-12',3108,2381,0,0,2324,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3690,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 12:50:40','','0000-00-00 00:00:00',0),(3757,0,0,'H','2526','','',3757,0,0,'2025-11-12',3109,2382,0,0,2325,'B',750.00,0.00,'7','ICICI BANK','','03143','','0000-00-00','scan ','',3691,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 12:54:27','','0000-00-00 00:00:00',0),(3758,0,0,'H','2526','','',3758,0,0,'2025-11-12',3097,255,0,0,240,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',3692,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 12:59:08','','0000-00-00 00:00:00',0),(3759,0,0,'H','2526','','',3759,0,0,'2025-11-12',3110,2383,0,0,2326,'B',1400.00,0.00,'7','BOB BANK','','80045','','0000-00-00','scan ','',3693,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 13:00:29','','0000-00-00 00:00:00',0),(3760,0,0,'H','2526','','P',3760,0,0,'2025-11-12',2876,2241,0,145,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',4022,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-12 13:09:49','vishal','2025-11-14 20:30:52',0),(3761,0,0,'H','2526','','',3761,0,0,'2025-11-12',3111,1795,0,0,2327,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3694,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-12 13:11:53','','0000-00-00 00:00:00',0),(3762,0,0,'H','2526','','',3762,0,0,'2025-11-12',3098,2374,0,0,2317,'D',-700.00,0.00,'7','HDFC','','41730','','2025-11-12','SCAN','',3695,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 13:17:17','','0000-00-00 00:00:00',0),(3763,0,0,'H','2526','','',3763,0,0,'2025-11-12',3098,2374,0,0,2317,'B',500.00,0.00,'7','HDFC','','41730','','0000-00-00','scan','',3696,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 13:19:28','','0000-00-00 00:00:00',0),(3764,0,0,'H','2526','','',3764,0,0,'2025-11-12',3112,255,0,0,2328,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3697,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-12 13:19:46','','0000-00-00 00:00:00',0),(3765,0,0,'H','2526','','P',3765,0,0,'2025-11-12',3113,2384,0,150,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',4086,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-12 13:47:20','riya','2025-11-15 13:16:52',0),(3766,0,0,'H','2526','','',3766,0,0,'2025-11-12',3115,2385,0,0,2329,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3700,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 16:01:33','','0000-00-00 00:00:00',0),(3767,0,0,'H','2526','','',3767,0,0,'2025-11-12',3116,1044,0,0,1011,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3701,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 16:14:29','','0000-00-00 00:00:00',0),(3768,0,0,'H','2526','','P',3768,0,0,'2025-11-12',3027,2304,0,149,0,'A',50000.00,0.00,'CSH','','','','','0000-00-00','','',4134,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-12 16:31:57','riya','2025-11-17 10:37:31',0),(3769,0,0,'H','2526','','',3769,0,0,'2025-11-12',3119,782,0,0,750,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3702,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 16:48:55','','0000-00-00 00:00:00',0),(3770,0,0,'H','2526','','',3770,0,0,'2025-11-12',3122,2388,0,0,2332,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3703,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 16:59:49','','0000-00-00 00:00:00',0),(3771,0,0,'H','2526','','',3771,0,0,'2025-11-12',3123,1128,0,0,1089,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3704,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 17:06:24','','0000-00-00 00:00:00',0),(3772,0,0,'H','2526','','',3772,0,0,'2025-11-12',3124,2389,0,0,2333,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3705,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 17:07:04','','0000-00-00 00:00:00',0),(3773,0,0,'H','2526','','',3773,0,0,'2025-11-12',3125,2390,0,0,2334,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3706,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 17:08:20','','0000-00-00 00:00:00',0),(3774,0,0,'H','2526','','',3774,0,0,'2025-11-12',3126,2391,0,0,2335,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3707,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 17:12:25','','0000-00-00 00:00:00',0),(3775,0,0,'H','2526','','',3775,0,0,'2025-11-12',3128,2392,0,0,2336,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3708,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 17:19:09','','0000-00-00 00:00:00',0),(3776,0,0,'H','2526','','',3776,0,0,'2025-11-12',3129,2393,0,0,2337,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3709,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 17:20:41','','0000-00-00 00:00:00',0),(3777,0,0,'H','2526','','',3777,0,0,'2025-11-12',3130,2394,0,0,2338,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3710,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 17:24:54','','0000-00-00 00:00:00',0),(3778,0,0,'H','2526','','',3778,0,0,'2025-11-12',3131,2395,0,0,2339,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3711,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 17:26:19','','0000-00-00 00:00:00',0),(3779,0,0,'H','2526','','',3779,0,0,'2025-11-12',3132,2396,0,0,2340,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3712,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 17:27:34','','0000-00-00 00:00:00',0),(3780,0,0,'H','2526','','',3780,0,0,'2025-11-12',3133,2397,0,0,2341,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3713,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 17:29:33','','0000-00-00 00:00:00',0),(3781,0,0,'H','2526','','',3781,0,0,'2025-11-12',3134,2398,0,0,2342,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3714,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 17:29:44','','0000-00-00 00:00:00',0),(3782,0,0,'H','2526','','',3782,0,0,'2025-11-12',3135,2399,0,0,2343,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3715,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 17:32:23','','0000-00-00 00:00:00',0),(3783,0,0,'H','2526','','',3783,0,0,'2025-11-12',3137,2400,0,0,2344,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3716,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 17:34:14','','0000-00-00 00:00:00',0),(3784,0,0,'H','2526','','',3784,0,0,'2025-11-12',3136,2001,0,0,1953,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3717,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 17:34:51','','0000-00-00 00:00:00',0),(3785,0,0,'H','2526','','',3785,0,0,'2025-11-12',3138,2106,0,0,2051,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3718,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 17:36:17','','0000-00-00 00:00:00',0),(3786,0,0,'H','2526','','',3786,0,0,'2025-11-12',3139,2401,0,0,2345,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3719,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 17:38:22','','0000-00-00 00:00:00',0),(3787,0,0,'H','2526','','',3787,0,0,'2025-11-12',3142,1245,0,0,2095,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3720,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 17:40:34','','0000-00-00 00:00:00',0),(3788,0,0,'H','2526','','',3788,0,0,'2025-11-12',3141,2056,0,0,2005,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3721,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 17:40:54','','0000-00-00 00:00:00',0),(3789,0,0,'H','2526','','',3789,0,0,'2025-11-12',3126,2391,0,0,2335,'D',-500.00,0.00,'CSH','','','','','2025-11-12','','',3722,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 17:42:06','','0000-00-00 00:00:00',0),(3790,0,0,'H','2526','','',3790,0,0,'2025-11-12',3143,2403,0,0,2347,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3723,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 17:42:55','','0000-00-00 00:00:00',0),(3791,0,0,'H','2526','','',3791,0,0,'2025-11-12',3126,2391,0,0,2335,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3724,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 17:43:09','','0000-00-00 00:00:00',0),(3792,0,0,'H','2526','','',3792,0,0,'2025-11-12',3144,2404,0,0,2348,'B',500.00,0.00,'7','axis bank','','54100','','0000-00-00','scan','',3725,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 17:49:44','','0000-00-00 00:00:00',0),(3793,0,0,'H','2526','','',3793,0,0,'2025-11-12',3145,2405,0,0,2349,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3726,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 17:50:16','','0000-00-00 00:00:00',0),(3794,0,0,'H','2526','','',3794,0,0,'2025-11-12',3148,622,0,0,592,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3727,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 17:53:54','','0000-00-00 00:00:00',0),(3795,0,0,'H','2526','','',3795,0,0,'2025-11-12',3146,648,0,0,618,'B',400.00,0.00,'7','sbis','','07083','','0000-00-00','scan','',3728,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 17:54:56','','0000-00-00 00:00:00',0),(3796,0,0,'H','2526','','',3796,0,0,'2025-11-12',3147,2406,0,0,2350,'B',900.00,0.00,'7','sbi','','37992','','0000-00-00','scan','',3729,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 17:55:39','','0000-00-00 00:00:00',0),(3797,0,0,'H','2526','','',3797,0,0,'2025-11-12',3149,2407,0,0,2351,'B',800.00,0.00,'7','SBI','','102543','','0000-00-00','SCAN','',3730,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-12 17:57:21','','0000-00-00 00:00:00',0),(3798,0,0,'H','2526','','',3798,0,0,'2025-11-12',3150,2408,0,0,2352,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3731,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 17:58:25','','0000-00-00 00:00:00',0),(3799,0,0,'H','2526','','',3799,0,0,'2025-11-12',3152,1094,0,0,1060,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3732,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-12 18:00:03','','0000-00-00 00:00:00',0),(3800,0,0,'H','2526','','',3800,0,0,'2025-11-12',3128,2392,0,0,2336,'B',4500.00,0.00,'7','hdfc','','49143','','0000-00-00','scan','',3733,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 18:00:30','','0000-00-00 00:00:00',0),(3801,0,0,'H','2526','','',3801,0,0,'2025-11-12',3151,1729,0,0,2353,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3734,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 18:00:48','','0000-00-00 00:00:00',0),(3802,0,0,'H','2526','','',3802,0,0,'2025-11-12',3153,1805,0,0,1759,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3735,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 18:05:21','','0000-00-00 00:00:00',0),(3803,0,0,'H','2526','','',3803,0,0,'2025-11-12',3154,2409,0,0,2354,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3736,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 18:09:29','','0000-00-00 00:00:00',0),(3804,0,0,'H','2526','','',3804,0,0,'2025-11-12',3155,974,0,0,943,'B',500.00,0.00,'7','icici','','11187','','0000-00-00','scan','',3737,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 18:10:03','','0000-00-00 00:00:00',0),(3805,0,0,'H','2526','','',3805,0,0,'2025-11-12',3156,2410,0,0,2355,'B',400.00,0.00,'7','BOI BANK','','03164','','0000-00-00','scan ','',3738,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 18:10:29','','0000-00-00 00:00:00',0),(3806,0,0,'H','2526','','',3806,0,0,'2025-11-12',3131,2395,0,0,2339,'B',500.00,0.00,'7','sbi','','35969','','0000-00-00','scan','',3739,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 18:14:00','','0000-00-00 00:00:00',0),(3807,0,0,'H','2526','','',3807,0,0,'2025-11-12',3140,2402,0,0,2346,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3740,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 18:15:22','','0000-00-00 00:00:00',0),(3808,0,0,'H','2526','','',3808,0,0,'2025-11-12',3157,2411,0,0,2356,'B',400.00,0.00,'7','SBI BANK','','75111','','0000-00-00','scan ','',3741,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 18:16:29','','0000-00-00 00:00:00',0),(3809,0,0,'H','2526','','',3809,0,0,'2025-11-12',3159,2412,0,0,2357,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3742,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 18:18:21','','0000-00-00 00:00:00',0),(3810,0,0,'H','2526','','',3810,0,0,'2025-11-12',3160,2024,0,0,1976,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',3743,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 18:19:55','','0000-00-00 00:00:00',0),(3811,0,0,'H','2526','','',3811,0,0,'2025-11-12',3158,234,0,0,221,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3744,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 18:21:01','','0000-00-00 00:00:00',0),(3812,0,0,'H','2526','','',3812,0,0,'2025-11-12',3161,2413,0,0,2358,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3745,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 18:24:09','','0000-00-00 00:00:00',0),(3813,0,0,'H','2526','','',3813,0,0,'2025-11-12',3162,2414,0,0,2359,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3746,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 18:28:36','','0000-00-00 00:00:00',0),(3814,0,0,'H','2526','','',3814,0,0,'2025-11-12',3132,2396,0,0,2340,'B',4400.00,0.00,'7','kotak','','65795','','0000-00-00','scan','',3747,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 18:29:18','','0000-00-00 00:00:00',0),(3815,0,0,'H','2526','','',3815,0,0,'2025-11-12',3163,1763,0,0,2118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3748,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 18:29:25','','0000-00-00 00:00:00',0),(3816,0,0,'H','2526','','',3816,0,0,'2025-11-12',3164,2075,0,0,2022,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',3749,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 18:38:51','','0000-00-00 00:00:00',0),(3817,0,0,'H','2526','','',3817,0,0,'2025-11-12',3165,2415,0,0,2360,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3750,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 18:40:04','','0000-00-00 00:00:00',0),(3818,0,0,'H','2526','','',3818,0,0,'2025-11-12',3166,2416,0,0,2361,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3751,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 18:46:36','','0000-00-00 00:00:00',0),(3819,0,0,'H','2526','','',3819,0,0,'2025-11-12',3169,2418,0,0,2363,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3752,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 18:50:14','','0000-00-00 00:00:00',0),(3820,0,0,'H','2526','','',3820,0,0,'2025-11-12',3170,519,0,0,494,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3753,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 18:54:04','','0000-00-00 00:00:00',0),(3821,0,0,'H','2526','','',3821,0,0,'2025-11-12',3171,2419,0,0,2364,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3754,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 18:54:54','','0000-00-00 00:00:00',0),(3822,0,0,'H','2526','','',3822,0,0,'2025-11-12',3168,2417,0,0,2362,'B',700.00,0.00,'7','kotak','','06137','','0000-00-00','scan','',3755,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 18:55:55','','0000-00-00 00:00:00',0),(3823,0,0,'H','2526','','',3823,0,0,'2025-11-12',3172,2420,0,0,2365,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3756,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 18:58:12','','0000-00-00 00:00:00',0),(3824,0,0,'H','2526','','',3824,0,0,'2025-11-12',3173,2421,0,0,2366,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3757,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 18:59:16','','0000-00-00 00:00:00',0),(3825,0,0,'H','2526','','',3825,0,0,'2025-11-12',3174,2422,0,0,2367,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3758,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-12 19:01:18','','0000-00-00 00:00:00',0),(3826,0,0,'H','2526','','',3826,0,0,'2025-11-12',3147,2406,0,0,2350,'B',4900.00,0.00,'7','sbi','','34832','','0000-00-00','scan','',3759,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 19:02:07','','0000-00-00 00:00:00',0),(3827,0,0,'H','2526','','',3827,0,0,'2025-11-12',3175,2423,0,0,2368,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3760,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 19:05:01','','0000-00-00 00:00:00',0),(3828,0,0,'H','2526','','',3828,0,0,'2025-11-12',3174,2422,0,0,2367,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3761,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-12 19:09:52','','0000-00-00 00:00:00',0),(3829,0,0,'H','2526','','',3829,0,0,'2025-11-12',3177,2425,0,0,2369,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3762,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 19:13:37','','0000-00-00 00:00:00',0),(3830,0,0,'H','2526','','',3830,0,0,'2025-11-12',3178,2426,0,0,2370,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3763,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 19:14:14','','0000-00-00 00:00:00',0),(3831,0,0,'H','2526','','',3831,0,0,'2025-11-12',3179,2427,0,0,2371,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3764,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 19:14:15','','0000-00-00 00:00:00',0),(3832,0,0,'H','2526','','',3832,0,0,'2025-11-12',3180,2428,0,0,2372,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3765,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 19:17:41','','0000-00-00 00:00:00',0),(3833,0,0,'H','2526','','',3833,0,0,'2025-11-12',3181,2429,0,0,2373,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3766,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 19:27:23','','0000-00-00 00:00:00',0),(3834,0,0,'H','2526','','',3834,0,0,'2025-11-12',3182,2430,0,0,2374,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3767,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 19:28:47','','0000-00-00 00:00:00',0),(3835,0,0,'H','2526','','',3835,0,0,'2025-11-12',3166,2416,0,0,2361,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3768,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 19:36:37','','0000-00-00 00:00:00',0),(3836,0,0,'H','2526','','',3836,0,0,'2025-11-12',3183,2431,0,0,2375,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3769,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 19:37:34','','0000-00-00 00:00:00',0),(3837,0,0,'H','2526','','',3837,0,0,'2025-11-12',3184,2432,0,0,2376,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3770,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-12 19:38:34','','0000-00-00 00:00:00',0),(3838,0,0,'H','2526','','P',3838,0,0,'2025-11-12',2994,2302,0,148,0,'A',10300.00,0.00,'CSH','','','','','0000-00-00','','',3771,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-12 19:46:04','vishal','2025-11-12 19:46:37',0),(3839,0,0,'H','2526','','',3839,0,0,'2025-11-12',3184,2432,0,0,2376,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3772,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-12 19:48:34','','0000-00-00 00:00:00',0),(3840,0,0,'H','2526','','',3840,0,0,'2025-11-12',3184,2432,0,0,2376,'D',-500.00,0.00,'CSH','','','','','2025-11-12','','',3773,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-12 19:49:21','','0000-00-00 00:00:00',0),(3841,0,0,'H','2526','','',3841,0,0,'2025-11-12',3186,2433,0,0,2377,'B',700.00,0.00,'7','cboi','','48319','','0000-00-00','scan','',3774,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 19:53:06','','0000-00-00 00:00:00',0),(3842,0,0,'H','2526','','',3842,0,0,'2025-11-12',3174,2422,0,0,2367,'D',-500.00,0.00,'CSH','','','','','2025-11-12','','',3775,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-12 19:57:49','','0000-00-00 00:00:00',0),(3843,0,0,'H','2526','','',3843,0,0,'2025-11-12',3174,2422,0,0,2367,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3776,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-12 19:58:35','','0000-00-00 00:00:00',0),(3844,0,0,'H','2526','','',3844,0,0,'2025-11-12',3187,2434,0,0,2378,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3777,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 19:59:04','','0000-00-00 00:00:00',0),(3845,0,0,'H','2526','','',3845,0,0,'2025-11-12',3188,1532,0,0,1491,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3778,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 20:00:55','','0000-00-00 00:00:00',0),(3846,0,0,'H','2526','','',3846,0,0,'2025-11-12',3165,2415,0,0,2360,'B',3000.00,0.00,'7','icici','','45607','','0000-00-00','scan','',3779,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 20:08:35','','0000-00-00 00:00:00',0),(3847,0,0,'H','2526','','',3847,0,0,'2025-11-12',3182,2430,0,0,2374,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',3780,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-12 20:16:44','','0000-00-00 00:00:00',0),(3848,0,0,'H','2526','','',3848,0,0,'2025-11-12',3106,2379,0,0,2322,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',3781,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 20:28:53','','0000-00-00 00:00:00',0),(3849,0,0,'H','2526','','',3849,0,0,'2025-11-12',3189,2026,0,0,1978,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3782,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 20:30:14','','0000-00-00 00:00:00',0),(3850,0,0,'H','2526','','',3850,0,0,'2025-11-12',3185,1821,0,0,1775,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3783,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-12 20:30:17','','0000-00-00 00:00:00',0),(3851,0,0,'H','2526','','',3851,0,0,'2025-11-12',3183,2431,0,0,2375,'D',-750.00,0.00,'CSH','','','','','2025-11-12','','',3784,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 20:31:29','','0000-00-00 00:00:00',0),(3852,0,0,'H','2526','','',3852,0,0,'2025-11-12',3183,2431,0,0,2375,'B',550.00,0.00,'CSH','','','','','0000-00-00','','',3785,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 20:32:32','','0000-00-00 00:00:00',0),(3853,0,0,'H','2526','','P',3853,0,0,'2025-11-12',3190,2385,0,153,0,'A',30000.00,0.00,'7','sbi','','8707','','0000-00-00','','',4084,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-12 20:34:30','riya','2025-11-15 13:08:46',0),(3854,0,0,'H','2526','','',3854,0,0,'2025-11-12',3180,2428,0,0,2372,'D',-750.00,0.00,'CSH','','','','','2025-11-12','','',3786,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-12 20:57:43','','0000-00-00 00:00:00',0),(3855,0,0,'H','2526','','P',3855,0,0,'2025-11-12',2876,2241,0,145,0,'A',15000.00,0.00,'7','other bank','','2291','','0000-00-00','','',0,'N','P','Y',0,'N','vishal','2025-11-12 21:00:29','vishal','2025-11-12 20:59:52','vishal','2025-11-12 21:00:29',0),(3856,0,0,'H','2526','','P',3856,0,0,'2025-11-12',2876,2241,0,145,0,'A',-15000.00,0.00,'7','other bank','','2291','','0000-00-00','','by mistake meena ben na ama levai gya',0,'N','P','Y',3855,'N','','0000-00-00 00:00:00','vishal','2025-11-12 21:00:29','vishal','2025-11-12 21:00:29',0),(3857,0,0,'H','2526','','P',3857,0,0,'2025-11-12',3176,2424,0,152,0,'A',15000.00,0.00,'7','other bank','','2291','','0000-00-00','','',4025,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-12 21:01:09','riya','2025-11-15 09:46:42',0),(3858,0,0,'H','2526','','',3858,0,0,'2025-11-13',3191,2435,0,0,2379,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3787,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 09:00:23','','0000-00-00 00:00:00',0),(3859,0,0,'H','2526','','',3859,0,0,'2025-11-13',3193,2437,0,0,2381,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3788,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-13 09:13:05','','0000-00-00 00:00:00',0),(3860,0,0,'H','2526','','',3860,0,0,'2025-11-13',3192,2436,0,0,2380,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3789,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-13 09:13:15','','0000-00-00 00:00:00',0),(3861,0,0,'H','2526','','',3861,0,0,'2025-11-13',3195,1410,0,0,2382,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3790,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-13 09:35:44','','0000-00-00 00:00:00',0),(3862,0,0,'H','2526','','',3862,0,0,'2025-11-13',3197,1813,0,0,1767,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3791,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 10:00:49','','0000-00-00 00:00:00',0),(3863,0,0,'H','2526','','',3863,0,0,'2025-11-13',3198,2440,0,0,2383,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3792,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 10:08:06','','0000-00-00 00:00:00',0),(3864,0,0,'H','2526','','',3864,0,0,'2025-11-13',3199,844,0,0,813,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3793,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 10:18:22','','0000-00-00 00:00:00',0),(3865,0,0,'H','2526','','',3865,0,0,'2025-11-13',3200,2441,0,0,2384,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3794,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 10:24:42','','0000-00-00 00:00:00',0),(3866,0,0,'H','2526','','',3866,0,0,'2025-11-13',3202,2443,0,0,2386,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3795,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 10:26:11','','0000-00-00 00:00:00',0),(3867,0,0,'H','2526','','',3867,0,0,'2025-11-13',3201,2442,0,0,2385,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3796,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 10:26:50','','0000-00-00 00:00:00',0),(3868,0,0,'H','2526','','',3868,0,0,'2025-11-13',3203,2444,0,0,2387,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3797,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 10:29:21','','0000-00-00 00:00:00',0),(3869,0,0,'H','2526','','',3869,0,0,'2025-11-13',3204,1086,0,0,1053,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3798,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 10:34:12','','0000-00-00 00:00:00',0),(3870,0,0,'H','2526','','',3870,0,0,'2025-11-13',3205,1804,0,0,1758,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3799,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 10:37:44','','0000-00-00 00:00:00',0),(3871,0,0,'H','2526','','',3871,0,0,'2025-11-13',3206,2445,0,0,2388,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3800,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 10:38:43','','0000-00-00 00:00:00',0),(3872,0,0,'H','2526','','',3872,0,0,'2025-11-13',3207,1170,0,0,1130,'B',500.00,0.00,'7','UNION BANK','','56885','','0000-00-00','SCAN','',3801,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 10:42:39','','0000-00-00 00:00:00',0),(3873,0,0,'H','2526','','',3873,0,0,'2025-11-13',3208,2446,0,0,2389,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3802,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 10:46:26','','0000-00-00 00:00:00',0),(3874,0,0,'H','2526','','',3874,0,0,'2025-11-13',3209,2447,0,0,2390,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3803,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 10:48:42','','0000-00-00 00:00:00',0),(3875,0,0,'H','2526','','',3875,0,0,'2025-11-13',3210,2448,0,0,2391,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3804,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 10:54:44','','0000-00-00 00:00:00',0),(3876,0,0,'H','2526','','',3876,0,0,'2025-11-13',3211,2449,0,0,2392,'B',700.00,0.00,'7','ICICI','','67368','','0000-00-00','SCAN','',3805,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 11:02:56','','0000-00-00 00:00:00',0),(3877,0,0,'H','2526','','',3877,0,0,'2025-11-13',3212,392,0,0,2393,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3806,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 11:04:20','','0000-00-00 00:00:00',0),(3878,0,0,'H','2526','','',3878,0,0,'2025-11-13',3213,631,0,0,601,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3807,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 11:07:31','','0000-00-00 00:00:00',0),(3879,0,0,'H','2526','','',3879,0,0,'2025-11-13',3214,2450,0,0,2394,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3808,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 11:08:23','','0000-00-00 00:00:00',0),(3880,0,0,'H','2526','','',3880,0,0,'2025-11-13',3215,2451,0,0,2395,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3809,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-13 11:09:31','','0000-00-00 00:00:00',0),(3881,0,0,'H','2526','','',3881,0,0,'2025-11-13',3217,2452,0,0,2396,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3810,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 11:12:43','','0000-00-00 00:00:00',0),(3882,0,0,'H','2526','','',3882,0,0,'2025-11-13',3218,1733,0,0,1687,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3811,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 11:12:57','','0000-00-00 00:00:00',0),(3883,0,0,'H','2526','','',3883,0,0,'2025-11-13',3220,2454,0,0,2398,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3812,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 11:15:35','','0000-00-00 00:00:00',0),(3884,0,0,'H','2526','','',3884,0,0,'2025-11-13',3221,2455,0,0,2399,'B',800.00,0.00,'7','SBI','','70646','','0000-00-00','SCAN','',3813,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 11:19:07','','0000-00-00 00:00:00',0),(3885,0,0,'H','2526','','',3885,0,0,'2025-11-13',3222,2456,0,0,2400,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3814,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 11:22:59','','0000-00-00 00:00:00',0),(3886,0,0,'H','2526','','',3886,0,0,'2025-11-13',3201,2442,0,0,2385,'B',1400.00,0.00,'CSH','','','','','0000-00-00','','',3815,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-13 11:24:56','','0000-00-00 00:00:00',0),(3887,0,0,'H','2526','','',3887,0,0,'2025-11-13',3223,752,0,0,721,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3816,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-13 11:26:09','','0000-00-00 00:00:00',0),(3888,0,0,'H','2526','','',3888,0,0,'2025-11-13',3209,2447,0,0,2390,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',3817,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 11:26:52','','0000-00-00 00:00:00',0),(3889,0,0,'H','2526','','',3889,0,0,'2025-11-13',3224,2457,0,0,2401,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3818,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-13 11:27:21','','0000-00-00 00:00:00',0),(3890,0,0,'H','2526','','',3890,0,0,'2025-11-13',3225,2458,0,0,2402,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3819,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-13 11:29:11','','0000-00-00 00:00:00',0),(3891,0,0,'H','2526','','',3891,0,0,'2025-11-13',3226,2459,0,0,2403,'B',750.00,0.00,'7','YES BANK','','75655','','0000-00-00','SCAN','',3820,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 11:35:20','','0000-00-00 00:00:00',0),(3892,0,0,'H','2526','','',3892,0,0,'2025-11-13',3227,2460,0,0,2404,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3821,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-13 11:38:20','','0000-00-00 00:00:00',0),(3893,0,0,'H','2526','','',3893,0,0,'2025-11-13',3216,539,0,0,514,'B',300.00,0.00,'2','HDFC','','68658','','0000-00-00','card','',3822,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-13 11:38:29','','0000-00-00 00:00:00',0),(3894,0,0,'H','2526','','',3894,0,0,'2025-11-13',3228,1456,0,0,1747,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3823,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 11:43:03','','0000-00-00 00:00:00',0),(3895,0,0,'H','2526','','',3895,0,0,'2025-11-13',3229,2461,0,0,2405,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3824,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 11:44:42','','0000-00-00 00:00:00',0),(3896,0,0,'H','2526','','',3896,0,0,'2025-11-13',3230,1911,0,0,1866,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3825,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 11:47:31','','0000-00-00 00:00:00',0),(3897,0,0,'H','2526','','',3897,0,0,'2025-11-13',3231,739,0,0,708,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3826,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 11:48:23','','0000-00-00 00:00:00',0),(3898,0,0,'H','2526','','',3898,0,0,'2025-11-13',3233,2462,0,0,2406,'B',800.00,0.00,'7','SBI','','55376','','0000-00-00','SCAN','',3827,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 11:55:34','','0000-00-00 00:00:00',0),(3899,0,0,'H','2526','','',3899,0,0,'2025-11-13',3232,1383,0,0,1343,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',3828,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-13 11:57:32','','0000-00-00 00:00:00',0),(3900,0,0,'H','2526','','',3900,0,0,'2025-11-13',3234,365,0,0,349,'B',500.00,0.00,'7','SBI','','04414','','0000-00-00','SCAN','',3829,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 12:10:22','','0000-00-00 00:00:00',0),(3901,0,0,'H','2526','','P',3901,0,0,'2025-11-13',3113,2384,0,150,0,'A',50000.00,0.00,'CSH','','','','','0000-00-00','','',4086,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-13 12:21:19','riya','2025-11-15 13:16:52',0),(3902,0,0,'H','2526','','',3902,0,0,'2025-11-13',3235,2463,0,0,2407,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3830,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 12:29:12','','0000-00-00 00:00:00',0),(3903,0,0,'H','2526','','',3903,0,0,'2025-11-13',3237,1138,0,0,1100,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3831,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 12:30:22','','0000-00-00 00:00:00',0),(3904,0,0,'H','2526','','',3904,0,0,'2025-11-13',3239,2465,0,0,2409,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3832,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-13 12:35:26','','0000-00-00 00:00:00',0),(3905,0,0,'H','2526','','',3905,0,0,'2025-11-13',3221,2455,0,0,2399,'B',4000.00,0.00,'7','BOB','','67831','','0000-00-00','SCAN','',3833,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 12:38:38','','0000-00-00 00:00:00',0),(3906,0,0,'H','2526','','',3906,0,0,'2025-11-13',3240,2466,0,0,2410,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3834,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 12:43:12','','0000-00-00 00:00:00',0),(3907,0,0,'H','2526','','',3907,0,0,'2025-11-13',3219,2453,0,0,2397,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3835,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 12:44:51','','0000-00-00 00:00:00',0),(3908,0,0,'H','2526','','',3908,0,0,'2025-11-13',3242,2468,0,0,2412,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3836,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 12:47:06','','0000-00-00 00:00:00',0),(3909,0,0,'H','2526','','',3909,0,0,'2025-11-13',3241,2467,0,0,2411,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3837,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-13 12:47:07','','0000-00-00 00:00:00',0),(3910,0,0,'H','2526','','',3910,0,0,'2025-11-13',3243,1134,0,0,1096,'B',500.00,0.00,'7','IDBI BANK','','66435','','0000-00-00','SCAN','',3839,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 12:52:37','','0000-00-00 00:00:00',0),(3911,0,0,'H','2526','','P',3911,0,0,'2025-11-13',3196,2439,0,155,0,'A',10900.00,0.00,'CSH','','','','','0000-00-00','','',3840,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-13 12:56:39','riya','2025-11-13 12:57:23',0),(3912,0,0,'H','2526','','',3912,0,0,'2025-11-13',3244,1929,0,0,1882,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3841,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 12:58:59','','0000-00-00 00:00:00',0),(3913,0,0,'H','2526','','',3913,0,0,'2025-11-13',3233,2462,0,0,2406,'B',3000.00,0.00,'7','HDFC','','99643','','0000-00-00','SCAN','',3842,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 13:07:14','','0000-00-00 00:00:00',0),(3914,0,0,'H','2526','','',3914,0,0,'2025-11-13',3235,2463,0,0,2407,'B',4600.00,0.00,'7','SBI','','80391','','0000-00-00','SCAN','',3843,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 13:13:08','','0000-00-00 00:00:00',0),(3915,0,0,'H','2526','','',3915,0,0,'2025-11-13',3245,2469,0,0,2413,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3844,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 13:21:16','','0000-00-00 00:00:00',0),(3916,0,0,'H','2526','','',3916,0,0,'2025-11-13',3246,1228,0,0,1189,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3845,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 13:26:30','','0000-00-00 00:00:00',0),(3917,0,0,'H','2526','','',3917,0,0,'2025-11-13',3248,2471,0,0,2415,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3846,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 13:29:41','','0000-00-00 00:00:00',0),(3918,0,0,'H','2526','','',3918,0,0,'2025-11-13',3247,2470,0,0,2414,'B',1500.00,0.00,'7','hdfc','','35668','','0000-00-00','scan ','',3847,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-13 13:30:03','','0000-00-00 00:00:00',0),(3919,0,0,'H','2526','','',3919,0,0,'2025-11-13',3249,2472,0,0,2416,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3848,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 13:34:55','','0000-00-00 00:00:00',0),(3920,0,0,'H','2526','','',3920,0,0,'2025-11-13',3250,2411,0,0,2356,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',3849,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 13:36:47','','0000-00-00 00:00:00',0),(3921,0,0,'H','2526','','',3921,0,0,'2025-11-13',3244,1929,0,0,1882,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3850,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 13:44:42','','0000-00-00 00:00:00',0),(3922,0,0,'H','2526','','',3922,0,0,'2025-11-13',3224,2457,0,0,2401,'B',700.00,0.00,'7','axis bank','','29856','','0000-00-00','scan','',3851,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 13:54:09','','0000-00-00 00:00:00',0),(3923,0,0,'H','2526','','',3923,0,0,'2025-11-13',3251,2473,0,0,2417,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3852,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 14:02:10','','0000-00-00 00:00:00',0),(3924,0,0,'H','2526','','',3924,0,0,'2025-11-13',3219,2453,0,0,2397,'B',2500.00,0.00,'CSH','','','','','0000-00-00','','',3853,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-13 14:03:32','','0000-00-00 00:00:00',0),(3925,0,0,'H','2526','','',3925,0,0,'2025-11-13',3249,2472,0,0,2416,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',3854,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-13 14:17:15','','0000-00-00 00:00:00',0),(3926,0,0,'H','2526','','',3926,0,0,'2025-11-13',3238,2464,0,0,2408,'B',750.00,0.00,'7','SBI BANK','','88397','','0000-00-00','scan ','',3855,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-13 15:00:16','','0000-00-00 00:00:00',0),(3927,0,0,'H','2526','','',3927,0,0,'2025-11-13',3252,2474,0,0,2418,'B',1000.00,0.00,'7','nagrik bank','','69149','','0000-00-00','scan ','',3856,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-13 15:51:29','','0000-00-00 00:00:00',0),(3928,0,0,'H','2526','','',3928,0,0,'2025-11-13',3253,2475,0,0,2419,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3857,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 16:30:25','','0000-00-00 00:00:00',0),(3929,0,0,'H','2526','','',3929,0,0,'2025-11-13',3254,2476,0,0,2420,'B',500.00,0.00,'7','BOI','','98415','','0000-00-00','SCAN','',3858,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 16:38:13','','0000-00-00 00:00:00',0),(3930,0,0,'H','2526','','',3930,0,0,'2025-11-13',3255,2477,0,0,2421,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3859,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 16:39:16','','0000-00-00 00:00:00',0),(3931,0,0,'H','2526','','',3931,0,0,'2025-11-13',3256,1852,0,0,1806,'B',500.00,0.00,'7','HDFC','','84246','','0000-00-00','SCAN','',3860,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 16:40:43','','0000-00-00 00:00:00',0),(3932,0,0,'H','2526','','',3932,0,0,'2025-11-13',3257,1503,0,0,1462,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3861,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 16:59:20','','0000-00-00 00:00:00',0),(3933,0,0,'H','2526','','',3933,0,0,'2025-11-13',3258,2478,0,0,2422,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3862,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 17:11:47','','0000-00-00 00:00:00',0),(3934,0,0,'H','2526','','',3934,0,0,'2025-11-13',3259,2479,0,0,2423,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3863,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 17:15:30','','0000-00-00 00:00:00',0),(3935,0,0,'H','2526','','',3935,0,0,'2025-11-13',3253,2475,0,0,2419,'B',4500.00,0.00,'7','NAGRIK BANK','','13280','','0000-00-00','SCAN','',3864,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 17:17:55','','0000-00-00 00:00:00',0),(3936,0,0,'H','2526','','',3936,0,0,'2025-11-13',3260,2480,0,0,2424,'B',900.00,0.00,'7','ICICI BANK','','02900','','0000-00-00','scan ','',3865,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 17:18:37','','0000-00-00 00:00:00',0),(3937,0,0,'H','2526','','',3937,0,0,'2025-11-13',3261,2481,0,0,2425,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3866,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 17:26:21','','0000-00-00 00:00:00',0),(3938,0,0,'H','2526','','',3938,0,0,'2025-11-13',3262,2482,0,0,2426,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3867,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 17:32:44','','0000-00-00 00:00:00',0),(3939,0,0,'H','2526','','P',3939,0,0,'2025-11-13',2879,2243,0,146,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-13 17:34:23','riya','2025-11-13 17:34:23',0),(3940,0,0,'H','2526','','',3940,0,0,'2025-11-13',3260,2480,0,0,2424,'B',4500.00,0.00,'7','ICICI','','90870','','0000-00-00','SCAN','',3868,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 17:40:34','','0000-00-00 00:00:00',0),(3941,0,0,'H','2526','','',3941,0,0,'2025-11-13',3264,2483,0,0,2427,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3870,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 17:48:05','','0000-00-00 00:00:00',0),(3942,0,0,'H','2526','','',3942,0,0,'2025-11-13',3263,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3871,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-13 17:48:13','','0000-00-00 00:00:00',0),(3943,0,0,'H','2526','','',3943,0,0,'2025-11-13',3265,2484,0,0,2428,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3872,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 17:49:19','','0000-00-00 00:00:00',0),(3944,0,0,'H','2526','','',3944,0,0,'2025-11-13',3266,2485,0,0,2429,'B',700.00,0.00,'7',' SBI','','93812','','0000-00-00','SCAN','',3873,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 17:52:47','','0000-00-00 00:00:00',0),(3945,0,0,'H','2526','','',3945,0,0,'2025-11-13',3267,2486,0,0,2430,'B',750.00,0.00,'7','canara bank','','76941','','0000-00-00','scan ','',3874,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 17:55:15','','0000-00-00 00:00:00',0),(3946,0,0,'H','2526','','',3946,0,0,'2025-11-13',3259,2479,0,0,2423,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',3875,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 17:56:11','','0000-00-00 00:00:00',0),(3947,0,0,'H','2526','','',3947,0,0,'2025-11-13',3268,571,0,0,545,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3876,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-13 18:01:15','','0000-00-00 00:00:00',0),(3948,0,0,'H','2526','','',3948,0,0,'2025-11-13',3269,2487,0,0,2431,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3877,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 18:01:32','','0000-00-00 00:00:00',0),(3949,0,0,'H','2526','','',3949,0,0,'2025-11-13',3271,2489,0,0,2433,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3878,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-13 18:05:43','','0000-00-00 00:00:00',0),(3950,0,0,'H','2526','','',3950,0,0,'2025-11-13',3272,2490,0,0,2434,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3879,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-13 18:05:46','','0000-00-00 00:00:00',0),(3951,0,0,'H','2526','','',3951,0,0,'2025-11-13',3270,2488,0,0,2432,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3880,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 18:05:58','','0000-00-00 00:00:00',0),(3952,0,0,'H','2526','','',3952,0,0,'2025-11-13',3273,667,0,0,637,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3881,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 18:06:43','','0000-00-00 00:00:00',0),(3953,0,0,'H','2526','','',3953,0,0,'2025-11-13',3268,571,0,0,545,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',3882,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-13 18:09:25','','0000-00-00 00:00:00',0),(3954,0,0,'H','2526','','',3954,0,0,'2025-11-13',3275,2024,0,0,1976,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',3883,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 18:10:34','','0000-00-00 00:00:00',0),(3955,0,0,'H','2526','','',3955,0,0,'2025-11-13',3274,340,0,0,324,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3884,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 18:11:00','','0000-00-00 00:00:00',0),(3956,0,0,'H','2526','','',3956,0,0,'2025-11-13',3276,2491,0,0,2435,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3885,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 18:12:12','','0000-00-00 00:00:00',0),(3957,0,0,'H','2526','','',3957,0,0,'2025-11-13',3262,2482,0,0,2426,'B',4500.00,0.00,'7','SBI','','93779','','0000-00-00','SCAN','',3886,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 18:12:43','','0000-00-00 00:00:00',0),(3958,0,0,'H','2526','','',3958,0,0,'2025-11-13',3278,2493,0,0,2437,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3887,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 18:25:52','','0000-00-00 00:00:00',0),(3959,0,0,'H','2526','','',3959,0,0,'2025-11-13',3277,2492,0,0,2436,'B',750.00,0.00,'7','SBI BANK','','92740','','0000-00-00','scan ','',3888,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 18:26:12','','0000-00-00 00:00:00',0),(3960,0,0,'H','2526','','',3960,0,0,'2025-11-13',3279,231,0,0,218,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3889,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 18:35:21','','0000-00-00 00:00:00',0),(3961,0,0,'H','2526','','',3961,0,0,'2025-11-13',3264,2483,0,0,2427,'B',350.00,0.00,'CSH','','','','','0000-00-00','','',3890,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 18:36:58','','0000-00-00 00:00:00',0),(3962,0,0,'H','2526','','',3962,0,0,'2025-11-13',3281,692,0,0,662,'B',400.00,0.00,'7','HDFC BANK','','93080','','0000-00-00','scan ','',3891,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 18:38:47','','0000-00-00 00:00:00',0),(3963,0,0,'H','2526','','',3963,0,0,'2025-11-13',3280,2150,0,0,2097,'B',400.00,0.00,'7','IDBI BANK','','68032','','0000-00-00','SCAN','',3892,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 18:38:48','','0000-00-00 00:00:00',0),(3964,0,0,'H','2526','','',3964,0,0,'2025-11-13',3283,1651,0,0,1606,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3893,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 18:39:48','','0000-00-00 00:00:00',0),(3965,0,0,'H','2526','','',3965,0,0,'2025-11-13',3282,2494,0,0,2438,'B',400.00,0.00,'7','icici','','10721','','0000-00-00','scan','',3894,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-13 18:40:55','','0000-00-00 00:00:00',0),(3966,0,0,'H','2526','','',3966,0,0,'2025-11-13',3284,1195,0,0,1156,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3895,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 18:45:16','','0000-00-00 00:00:00',0),(3967,0,0,'H','2526','','',3967,0,0,'2025-11-13',3271,2489,0,0,2433,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3896,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 18:48:15','','0000-00-00 00:00:00',0),(3968,0,0,'H','2526','','',3968,0,0,'2025-11-13',3287,2495,0,0,2439,'B',400.00,0.00,'7','HDFC BANK','','28520','','0000-00-00','scan ','',3897,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 18:56:01','','0000-00-00 00:00:00',0),(3969,0,0,'H','2526','','',3969,0,0,'2025-11-13',3286,611,0,0,580,'B',300.00,0.00,'7','HDFC','','87710','','0000-00-00','SCAN','',3898,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-13 18:56:05','','0000-00-00 00:00:00',0),(3970,0,0,'H','2526','','',3970,0,0,'2025-11-13',3288,562,0,0,536,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3899,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-13 18:59:11','','0000-00-00 00:00:00',0),(3971,0,0,'H','2526','','',3971,0,0,'2025-11-13',3285,2197,0,0,2145,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',3900,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-13 19:24:27','','0000-00-00 00:00:00',0),(3972,0,0,'H','2526','','',3972,0,0,'2025-11-13',3290,2497,0,0,2441,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3901,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 19:25:21','','0000-00-00 00:00:00',0),(3973,0,0,'H','2526','','',3973,0,0,'2025-11-13',3291,2434,0,0,2378,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',3902,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-13 19:25:34','','0000-00-00 00:00:00',0),(3974,0,0,'H','2526','','',3974,0,0,'2025-11-13',3292,2498,0,0,2442,'B',750.00,0.00,'7','BOB BANK','','13294','','0000-00-00','scan ','',3903,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 19:26:36','','0000-00-00 00:00:00',0),(3975,0,0,'H','2526','','',3975,0,0,'2025-11-13',3289,2496,0,0,2440,'B',400.00,0.00,'7','CENTRAL BANK','','54038','','0000-00-00','scan ','',3904,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 19:31:13','','0000-00-00 00:00:00',0),(3976,0,0,'H','2526','','',3976,0,0,'2025-11-13',3293,1521,0,0,1480,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3905,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-13 19:33:57','','0000-00-00 00:00:00',0),(3977,0,0,'H','2526','','P',3977,0,0,'2025-11-13',2919,982,0,147,0,'A',15000.00,0.00,'7','OTHER BANK','','4887','','0000-00-00','','',3906,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-13 19:41:59','vishal','2025-11-13 19:42:29',0),(3978,0,0,'H','2526','','',3978,0,0,'2025-11-13',3295,2500,0,0,2443,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3908,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-13 19:59:14','','0000-00-00 00:00:00',0),(3979,0,0,'H','2526','','',3979,0,0,'2025-11-14',3296,2501,0,0,2444,'B',800.00,0.00,'7','bank','','49494','','0000-00-00','scan','',3909,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 08:47:11','','0000-00-00 00:00:00',0),(3980,0,0,'H','2526','','',3980,0,0,'2025-11-14',3297,2502,0,0,2445,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3910,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 09:15:42','','0000-00-00 00:00:00',0),(3981,0,0,'H','2526','','',3981,0,0,'2025-11-14',3298,2503,0,0,2446,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3911,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 09:51:50','','0000-00-00 00:00:00',0),(3982,0,0,'H','2526','','P',3982,0,0,'2025-11-14',3299,2504,0,157,0,'A',40000.00,0.00,'CSH','','','','','0000-00-00','','',4116,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-14 10:01:48','riya','2025-11-16 10:47:28',0),(3983,0,0,'H','2526','','',3983,0,0,'2025-11-14',3300,2505,0,0,2447,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3912,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 10:18:29','','0000-00-00 00:00:00',0),(3984,0,0,'H','2526','','',3984,0,0,'2025-11-14',3302,2507,0,0,2448,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3913,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 10:19:58','','0000-00-00 00:00:00',0),(3985,0,0,'H','2526','','',3985,0,0,'2025-11-14',3303,520,0,0,495,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3914,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 10:20:06','','0000-00-00 00:00:00',0),(3986,0,0,'H','2526','','',3986,0,0,'2025-11-14',3304,2508,0,0,2449,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3915,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 10:22:24','','0000-00-00 00:00:00',0),(3987,0,0,'H','2526','','',3987,0,0,'2025-11-14',3305,1903,0,0,1857,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3916,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 10:24:00','','0000-00-00 00:00:00',0),(3988,0,0,'H','2526','','P',3988,0,0,'2025-11-14',3301,2506,0,158,0,'A',2000.00,0.00,'7','SBI','','693859854737','','0000-00-00','UPI','REF CHANGE',4122,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-14 10:26:05','riya','2025-11-16 20:21:03',0),(3989,0,0,'H','2526','','P',3989,0,0,'2025-11-14',3301,2506,0,158,0,'A',13000.00,0.00,'7','SBI','','693859854737','','0000-00-00','UPI','REF CHANGE',4122,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-14 10:26:44','riya','2025-11-16 20:21:03',0),(3990,0,0,'H','2526','','P',3990,0,0,'2025-11-13',3294,2499,0,156,0,'A',15000.00,0.00,'7','SBI','','693847596178','','0000-00-00','UPI','',4112,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-14 10:28:49','vishal','2025-11-15 20:12:01',0),(3991,0,0,'H','2526','','',3991,0,0,'2025-11-14',3306,2509,0,0,2450,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3917,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 10:30:04','','0000-00-00 00:00:00',0),(3992,0,0,'H','2526','','',3992,0,0,'2025-11-14',3307,2510,0,0,2451,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3918,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 10:32:32','','0000-00-00 00:00:00',0),(3993,0,0,'H','2526','','',3993,0,0,'2025-11-14',3308,2511,0,0,2452,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3919,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 10:34:44','','0000-00-00 00:00:00',0),(3994,0,0,'H','2526','','',3994,0,0,'2025-11-14',3309,2512,0,0,2453,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3920,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 10:36:50','','0000-00-00 00:00:00',0),(3995,0,0,'H','2526','','',3995,0,0,'2025-11-14',3310,2513,0,0,2454,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3921,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 10:42:35','','0000-00-00 00:00:00',0),(3996,0,0,'H','2526','','',3996,0,0,'2025-11-14',3311,2514,0,0,2455,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3922,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 10:43:23','','0000-00-00 00:00:00',0),(3997,0,0,'H','2526','','',3997,0,0,'2025-11-14',3313,2515,0,0,2456,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3923,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 10:45:23','','0000-00-00 00:00:00',0),(3998,0,0,'H','2526','','',3998,0,0,'2025-11-14',3312,21,0,0,586,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3924,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 10:45:30','','0000-00-00 00:00:00',0),(3999,0,0,'H','2526','','',3999,0,0,'2025-11-14',3314,2516,0,0,2457,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3925,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 10:49:32','','0000-00-00 00:00:00',0),(4000,0,0,'H','2526','','',4000,0,0,'2025-11-14',3315,2056,0,0,2005,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3926,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 10:51:28','','0000-00-00 00:00:00',0),(4001,0,0,'H','2526','','',4001,0,0,'2025-11-14',3316,2254,0,0,2198,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3927,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 11:05:12','','0000-00-00 00:00:00',0),(4002,0,0,'H','2526','','',4002,0,0,'2025-11-14',3317,2517,0,0,2458,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3928,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-14 11:06:04','','0000-00-00 00:00:00',0),(4003,0,0,'H','2526','','',4003,0,0,'2025-11-14',3298,2503,0,0,2446,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',3929,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 11:06:57','','0000-00-00 00:00:00',0),(4004,0,0,'H','2526','','',4004,0,0,'2025-11-14',3318,2518,0,0,2459,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3930,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 11:09:31','','0000-00-00 00:00:00',0),(4005,0,0,'H','2526','','',4005,0,0,'2025-11-14',3303,520,0,0,495,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3931,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-14 11:09:55','','0000-00-00 00:00:00',0),(4006,0,0,'H','2526','','',4006,0,0,'2025-11-14',3302,2507,0,0,2448,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',3932,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 11:11:03','','0000-00-00 00:00:00',0),(4007,0,0,'H','2526','','',4007,0,0,'2025-11-14',3319,772,0,0,741,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3933,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 11:18:00','','0000-00-00 00:00:00',0),(4008,0,0,'H','2526','','',4008,0,0,'2025-11-14',3307,2510,0,0,2451,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',3934,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 11:21:44','','0000-00-00 00:00:00',0),(4009,0,0,'H','2526','','',4009,0,0,'2025-11-14',3320,619,0,0,589,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3935,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 11:26:48','','0000-00-00 00:00:00',0),(4010,0,0,'H','2526','','',4010,0,0,'2025-11-14',3306,2509,0,0,2450,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',3936,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 11:27:17','','0000-00-00 00:00:00',0),(4011,0,0,'H','2526','','',4011,0,0,'2025-11-14',3321,2519,0,0,2460,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3937,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-14 11:28:14','','0000-00-00 00:00:00',0),(4012,0,0,'H','2526','','',4012,0,0,'2025-11-14',3322,2520,0,0,2461,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3938,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 11:29:27','','0000-00-00 00:00:00',0),(4013,0,0,'H','2526','','',4013,0,0,'2025-11-14',3323,818,0,0,787,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3939,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-14 11:34:54','','0000-00-00 00:00:00',0),(4014,0,0,'H','2526','','',4014,0,0,'2025-11-14',3325,2522,0,0,2463,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',3940,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 11:38:53','','0000-00-00 00:00:00',0),(4015,0,0,'H','2526','','',4015,0,0,'2025-11-14',3324,2521,0,0,2462,'B',750.00,0.00,'7','fedral bank','','43127','','0000-00-00','scan ','',3941,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-14 11:39:11','','0000-00-00 00:00:00',0),(4016,0,0,'H','2526','','',4016,0,0,'2025-11-14',3326,2523,0,0,2464,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3942,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 11:42:19','','0000-00-00 00:00:00',0),(4017,0,0,'H','2526','','',4017,0,0,'2025-11-14',3327,2188,0,0,2137,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3943,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 11:46:54','','0000-00-00 00:00:00',0),(4018,0,0,'H','2526','','',4018,0,0,'2025-11-14',3322,2520,0,0,2461,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',3944,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 11:47:11','','0000-00-00 00:00:00',0),(4019,0,0,'H','2526','','',4019,0,0,'2025-11-14',3321,2519,0,0,2460,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3945,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-14 11:51:19','','0000-00-00 00:00:00',0),(4020,0,0,'H','2526','','',4020,0,0,'2025-11-14',3328,2524,0,0,2465,'B',500.00,0.00,'7','sbi','','00058','','0000-00-00','scan ','',3946,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 11:52:27','','0000-00-00 00:00:00',0),(4021,0,0,'H','2526','','',4021,0,0,'2025-11-14',3329,2525,0,0,2466,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3947,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-14 11:54:22','','0000-00-00 00:00:00',0),(4022,0,0,'H','2526','','',4022,0,0,'2025-11-14',3331,1396,0,0,1356,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3948,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 11:57:05','','0000-00-00 00:00:00',0),(4023,0,0,'H','2526','','',4023,0,0,'2025-11-14',3332,2526,0,0,2468,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3949,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 12:02:48','','0000-00-00 00:00:00',0),(4024,0,0,'H','2526','','P',4024,0,0,'2025-11-14',3027,2304,0,149,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',4134,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-14 12:02:55','riya','2025-11-17 10:37:31',0),(4025,0,0,'H','2526','','',4025,0,0,'2025-11-14',3333,2527,0,0,2469,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3950,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 12:03:07','','0000-00-00 00:00:00',0),(4026,0,0,'H','2526','','',4026,0,0,'2025-11-14',3334,1976,0,0,1928,'B',100.00,0.00,'7','SBI','','41196','','0000-00-00','SCAN','',3951,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-14 12:04:09','','0000-00-00 00:00:00',0),(4027,0,0,'H','2526','','',4027,0,0,'2025-11-14',3311,2514,0,0,2455,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',3952,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 12:08:03','','0000-00-00 00:00:00',0),(4028,0,0,'H','2526','','',4028,0,0,'2025-11-14',3324,2521,0,0,2462,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3953,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 12:09:01','','0000-00-00 00:00:00',0),(4029,0,0,'H','2526','','',4029,0,0,'2025-11-14',3335,2528,0,0,2470,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3954,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-14 12:09:17','','0000-00-00 00:00:00',0),(4030,0,0,'H','2526','','',4030,0,0,'2025-11-14',3330,818,0,0,2467,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3955,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-14 12:09:29','','0000-00-00 00:00:00',0),(4031,0,0,'H','2526','','',4031,0,0,'2025-11-14',3336,2529,0,0,2471,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3956,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-14 12:14:06','','0000-00-00 00:00:00',0),(4032,0,0,'H','2526','','',4032,0,0,'2025-11-14',3302,2507,0,0,2448,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',3957,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 12:20:46','','0000-00-00 00:00:00',0),(4033,0,0,'H','2526','','',4033,0,0,'2025-11-14',3337,2530,0,0,2472,'B',500.00,0.00,'7','sbi','','57924','','0000-00-00','scan  ','',3958,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 12:21:53','','0000-00-00 00:00:00',0),(4034,0,0,'H','2526','','',4034,0,0,'2025-11-14',3340,2532,0,0,2474,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3959,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-14 12:33:14','','0000-00-00 00:00:00',0),(4035,0,0,'H','2526','','',4035,0,0,'2025-11-14',3325,2522,0,0,2463,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3960,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 12:36:32','','0000-00-00 00:00:00',0),(4036,0,0,'H','2526','','',4036,0,0,'2025-11-14',3317,2517,0,0,2458,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',3961,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 12:37:50','','0000-00-00 00:00:00',0),(4037,0,0,'H','2526','','',4037,0,0,'2025-11-14',3339,954,0,0,923,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3962,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-14 12:42:11','','0000-00-00 00:00:00',0),(4038,0,0,'H','2526','','',4038,0,0,'2025-11-14',3328,2524,0,0,2465,'B',100.00,0.00,'7','sbi','','59289','','0000-00-00','scan  ','',3963,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 12:46:24','','0000-00-00 00:00:00',0),(4039,0,0,'H','2526','','',4039,0,0,'2025-11-14',3342,2534,0,0,2476,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3964,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 12:47:35','','0000-00-00 00:00:00',0),(4040,0,0,'H','2526','','',4040,0,0,'2025-11-14',3328,2524,0,0,2465,'D',-100.00,0.00,'7','sbi','','59289','','2025-11-14','SCAN                          ','',3965,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 12:50:13','','0000-00-00 00:00:00',0),(4041,0,0,'H','2526','','',4041,0,0,'2025-11-14',3344,2536,0,0,2478,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3966,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-14 12:50:20','','0000-00-00 00:00:00',0),(4042,0,0,'H','2526','','',4042,0,0,'2025-11-14',3328,2524,0,0,2465,'B',1000.00,0.00,'7','sbi','','59289','','0000-00-00','scan ','',3967,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 12:51:39','','0000-00-00 00:00:00',0),(4043,0,0,'H','2526','','',4043,0,0,'2025-11-14',3345,2533,0,0,2479,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3968,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-14 12:52:38','','0000-00-00 00:00:00',0),(4044,0,0,'H','2526','','',4044,0,0,'2025-11-14',3323,818,0,0,787,'D',-400.00,0.00,'CSH','','','','','2025-11-14','','',3969,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-14 13:01:02','','0000-00-00 00:00:00',0),(4045,0,0,'H','2526','','',4045,0,0,'2025-11-14',3345,2533,0,0,2479,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',3970,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-14 13:10:00','','0000-00-00 00:00:00',0),(4046,0,0,'H','2526','','',4046,0,0,'2025-11-14',3346,2537,0,0,2480,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',3971,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-14 13:13:41','','0000-00-00 00:00:00',0),(4047,0,0,'H','2526','','',4047,0,0,'2025-11-14',3347,2538,0,0,2481,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3972,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 13:28:35','','0000-00-00 00:00:00',0),(4048,0,0,'H','2526','','P',4048,0,0,'2025-11-14',3113,2384,0,150,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',4086,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-14 13:32:25','riya','2025-11-15 13:16:52',0),(4049,0,0,'H','2526','','P',4049,0,0,'2025-11-14',3348,2539,0,159,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',4739,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-14 13:44:27','riya','2025-11-22 13:21:33',0),(4050,0,0,'H','2526','','',4050,0,0,'2025-11-14',3349,2505,0,0,2447,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3973,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-14 14:28:32','','0000-00-00 00:00:00',0),(4051,0,0,'H','2526','','',4051,0,0,'2025-11-14',3350,2540,0,0,2482,'B',1800.00,0.00,'7','SBI BANK','','95020','','0000-00-00','scan ','',3974,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-14 15:30:13','','0000-00-00 00:00:00',0),(4052,0,0,'H','2526','','',4052,0,0,'2025-11-14',3352,2541,0,0,2483,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3975,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 16:26:14','','0000-00-00 00:00:00',0),(4053,0,0,'H','2526','','',4053,0,0,'2025-11-14',3353,1187,0,0,1147,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3976,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 16:33:51','','0000-00-00 00:00:00',0),(4054,0,0,'H','2526','','',4054,0,0,'2025-11-14',3355,2542,0,0,2484,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3977,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 16:36:48','','0000-00-00 00:00:00',0),(4055,0,0,'H','2526','','',4055,0,0,'2025-11-14',3357,223,0,0,210,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3978,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 16:40:11','','0000-00-00 00:00:00',0),(4056,0,0,'H','2526','','',4056,0,0,'2025-11-14',3358,2544,0,0,2486,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',3979,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 16:44:09','','0000-00-00 00:00:00',0),(4057,0,0,'H','2526','','',4057,0,0,'2025-11-14',3360,2546,0,0,2488,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3980,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-14 17:03:21','','0000-00-00 00:00:00',0),(4058,0,0,'H','2526','','',4058,0,0,'2025-11-14',3361,2547,0,0,2489,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',3981,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 17:07:52','','0000-00-00 00:00:00',0),(4059,0,0,'H','2526','','',4059,0,0,'2025-11-14',3363,2548,0,0,2490,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3982,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 17:12:21','','0000-00-00 00:00:00',0),(4060,0,0,'H','2526','','',4060,0,0,'2025-11-14',3364,2549,0,0,2491,'B',400.00,0.00,'7','SBI','','75828','','0000-00-00','scan','',3983,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 17:23:14','','0000-00-00 00:00:00',0),(4061,0,0,'H','2526','','',4061,0,0,'2025-11-14',3365,669,0,0,639,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3984,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 17:30:18','','0000-00-00 00:00:00',0),(4062,0,0,'H','2526','','',4062,0,0,'2025-11-14',3366,1763,0,0,2118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',3985,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-14 17:34:27','','0000-00-00 00:00:00',0),(4063,0,0,'H','2526','','',4063,0,0,'2025-11-14',3367,2550,0,0,2492,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',3986,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-14 17:36:46','','0000-00-00 00:00:00',0),(4064,0,0,'H','2526','','',4064,0,0,'2025-11-14',3368,2551,0,0,2493,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3987,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 17:39:19','','0000-00-00 00:00:00',0),(4065,0,0,'H','2526','','',4065,0,0,'2025-11-14',3370,2553,0,0,2495,'B',400.00,0.00,'7','HDFC BANK','','50479','','0000-00-00','scan ','',3988,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-14 17:42:29','','0000-00-00 00:00:00',0),(4066,0,0,'H','2526','','',4066,0,0,'2025-11-14',3369,2552,0,0,2494,'B',500.00,0.00,'7','bob','','75550','','0000-00-00','scan                          ','',3989,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 17:42:33','','0000-00-00 00:00:00',0),(4067,0,0,'H','2526','','',4067,0,0,'2025-11-14',3371,1949,0,0,1901,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3990,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 17:44:03','','0000-00-00 00:00:00',0),(4068,0,0,'H','2526','','',4068,0,0,'2025-11-14',3352,2541,0,0,2483,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',3991,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 17:57:59','','0000-00-00 00:00:00',0),(4069,0,0,'H','2526','','',4069,0,0,'2025-11-14',3373,2555,0,0,2497,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3992,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 18:00:47','','0000-00-00 00:00:00',0),(4070,0,0,'H','2526','','',4070,0,0,'2025-11-14',3372,2554,0,0,2496,'B',400.00,0.00,'7','AU SMALL FINAN','','44855','','0000-00-00','scan ','',3993,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-14 18:00:57','','0000-00-00 00:00:00',0),(4071,0,0,'H','2526','','',4071,0,0,'2025-11-14',3358,2544,0,0,2486,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',3994,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 18:02:36','','0000-00-00 00:00:00',0),(4072,0,0,'H','2526','','',4072,0,0,'2025-11-14',3361,2547,0,0,2489,'B',4500.00,0.00,'7','ICICI','','75978','','0000-00-00','scan','',3995,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 18:10:33','','0000-00-00 00:00:00',0),(4073,0,0,'H','2526','','',4073,0,0,'2025-11-14',3375,2535,0,0,2477,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',3996,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 18:10:37','','0000-00-00 00:00:00',0),(4074,0,0,'H','2526','','',4074,0,0,'2025-11-14',3374,2196,0,0,2144,'B',300.00,0.00,'7','HDFC','','59022','','0000-00-00','SCAN','',3997,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-14 18:11:01','','0000-00-00 00:00:00',0),(4075,0,0,'H','2526','','',4075,0,0,'2025-11-14',3377,741,0,0,710,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3998,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 18:15:20','','0000-00-00 00:00:00',0),(4076,0,0,'H','2526','','',4076,0,0,'2025-11-14',3379,2557,0,0,2500,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',3999,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 18:22:15','','0000-00-00 00:00:00',0),(4077,0,0,'H','2526','','',4077,0,0,'2025-11-14',3378,2556,0,0,2499,'B',750.00,0.00,'7','pnb','','84807','','0000-00-00','scan ','',4000,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 18:22:57','','0000-00-00 00:00:00',0),(4078,0,0,'H','2526','','',4078,0,0,'2025-11-14',3380,2558,0,0,2501,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4001,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 18:24:42','','0000-00-00 00:00:00',0),(4079,0,0,'H','2526','','',4079,0,0,'2025-11-14',3381,2559,0,0,2502,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4002,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-14 18:25:03','','0000-00-00 00:00:00',0),(4080,0,0,'H','2526','','',4080,0,0,'2025-11-14',3382,1430,0,0,1390,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4003,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-14 18:25:44','','0000-00-00 00:00:00',0),(4081,0,0,'H','2526','','',4081,0,0,'2025-11-14',3383,675,0,0,645,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4004,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-14 18:26:20','','0000-00-00 00:00:00',0),(4082,0,0,'H','2526','','',4082,0,0,'2025-11-14',3384,2560,0,0,2503,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4005,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 18:26:55','','0000-00-00 00:00:00',0),(4083,0,0,'H','2526','','',4083,0,0,'2025-11-14',3376,142,0,0,2498,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4006,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-14 18:31:11','','0000-00-00 00:00:00',0),(4084,0,0,'H','2526','','',4084,0,0,'2025-11-14',3385,2561,0,0,2504,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4007,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-14 18:32:14','','0000-00-00 00:00:00',0),(4085,0,0,'H','2526','','',4085,0,0,'2025-11-14',3386,2562,0,0,2505,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4008,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-14 18:39:21','','0000-00-00 00:00:00',0),(4086,0,0,'H','2526','','',4086,0,0,'2025-11-14',3389,876,0,0,845,'B',300.00,0.00,'7','kotak','','94336','','0000-00-00','scan ','',4009,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 18:47:27','','0000-00-00 00:00:00',0),(4087,0,0,'H','2526','','',4087,0,0,'2025-11-14',3390,2563,0,0,2506,'B',750.00,0.00,'7','IDBI','','96831','','0000-00-00','scan ','',4010,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-14 18:48:31','','0000-00-00 00:00:00',0),(4088,0,0,'H','2526','','',4088,0,0,'2025-11-14',3392,2565,0,0,2508,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4011,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-14 18:51:21','','0000-00-00 00:00:00',0),(4089,0,0,'H','2526','','',4089,0,0,'2025-11-14',3391,2564,0,0,2507,'B',400.00,0.00,'2','IOB ','3205','3205','','0000-00-00','CARD','',4012,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-14 18:52:14','','0000-00-00 00:00:00',0),(4090,0,0,'H','2526','','',4090,0,0,'2025-11-14',3393,2084,0,0,2030,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4013,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-14 18:52:28','','0000-00-00 00:00:00',0),(4091,0,0,'H','2526','','',4091,0,0,'2025-11-14',3395,2567,0,0,2510,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4014,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 18:53:30','','0000-00-00 00:00:00',0),(4092,0,0,'H','2526','','',4092,0,0,'2025-11-14',3394,2566,0,0,2509,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4015,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-14 18:54:00','','0000-00-00 00:00:00',0),(4093,0,0,'H','2526','','',4093,0,0,'2025-11-14',3396,2568,0,0,2511,'B',400.00,0.00,'7','rajkot nagrik','','90587','','0000-00-00','scan ','',4016,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-14 19:06:30','','0000-00-00 00:00:00',0),(4094,0,0,'H','2526','','',4094,0,0,'2025-11-14',3397,2569,0,0,2512,'B',750.00,0.00,'7','HDFC BANK','','81029','','0000-00-00','scan ','',4017,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-14 19:13:12','','0000-00-00 00:00:00',0),(4095,0,0,'H','2526','','',4095,0,0,'2025-11-14',3398,2193,0,0,2142,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4019,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-14 19:28:38','','0000-00-00 00:00:00',0),(4096,0,0,'H','2526','','',4096,0,0,'2025-11-14',3400,1327,0,0,1288,'B',100.00,0.00,'7','bob','','99420','','0000-00-00','scan ','',4020,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-14 19:37:27','','0000-00-00 00:00:00',0),(4097,0,0,'H','2526','','',4097,0,0,'2025-11-14',3401,2570,0,0,2513,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4021,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-14 20:13:41','','0000-00-00 00:00:00',0),(4098,0,0,'H','2526','','P',4098,0,0,'2025-11-14',2876,2241,0,145,0,'A',4500.00,0.00,'CSH','','','','','0000-00-00','','',4022,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-14 20:30:35','vishal','2025-11-14 20:30:52',0),(4099,0,0,'H','2526','','P',4099,0,0,'2025-11-14',3176,2424,0,152,0,'A',30000.00,0.00,'7','OTHER BANK','','2344','','0000-00-00','','',4025,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-14 22:20:19','riya','2025-11-15 09:46:42',0),(4100,0,0,'H','2526','','',4100,0,0,'2025-11-15',3403,2571,0,0,2514,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4024,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-15 09:36:34','','0000-00-00 00:00:00',0),(4101,0,0,'H','2526','','P',4101,0,0,'2025-11-15',3176,2424,0,152,0,'A',12750.00,0.00,'7','indian bank','','306811765984','','0000-00-00','UPI','',4025,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-15 09:46:06','riya','2025-11-15 09:46:42',0),(4102,0,0,'H','2526','','',4102,0,0,'2025-11-15',3404,2572,0,0,2515,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4026,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 09:52:00','','0000-00-00 00:00:00',0),(4103,0,0,'H','2526','','P',4103,0,0,'2025-11-15',3405,2573,0,160,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',4292,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-15 10:09:48','riya','2025-11-18 23:27:04',0),(4104,0,0,'H','2526','','',4104,0,0,'2025-11-15',3406,2574,0,0,2516,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4027,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-15 10:12:34','','0000-00-00 00:00:00',0),(4105,0,0,'H','2526','','',4105,0,0,'2025-11-15',3407,2575,0,0,2517,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4028,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 10:25:11','','0000-00-00 00:00:00',0),(4106,0,0,'H','2526','','',4106,0,0,'2025-11-15',3408,2576,0,0,2518,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4029,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-15 10:26:20','','0000-00-00 00:00:00',0),(4107,0,0,'H','2526','','',4107,0,0,'2025-11-15',3409,2577,0,0,2519,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4030,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-15 10:28:54','','0000-00-00 00:00:00',0),(4108,0,0,'H','2526','','',4108,0,0,'2025-11-15',3410,2578,0,0,2520,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4031,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 10:29:19','','0000-00-00 00:00:00',0),(4109,0,0,'H','2526','','',4109,0,0,'2025-11-15',3411,2579,0,0,2521,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4032,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-15 10:30:48','','0000-00-00 00:00:00',0),(4110,0,0,'H','2526','','P',4110,0,0,'2025-11-14',3294,2499,0,156,0,'A',10000.00,0.00,'7','STANDARD CHARTERED BANK','','7738345450','','0000-00-00','UPI','',4112,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-15 10:31:00','vishal','2025-11-15 20:12:01',0),(4111,0,0,'H','2526','','',4111,0,0,'2025-11-15',3413,2039,0,0,1988,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4033,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 10:37:12','','0000-00-00 00:00:00',0),(4112,0,0,'H','2526','','',4112,0,0,'2025-11-15',3413,2039,0,0,1988,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4034,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 10:37:23','','0000-00-00 00:00:00',0),(4113,0,0,'H','2526','','',4113,0,0,'2025-11-15',3414,2581,0,0,2523,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4035,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-15 10:37:51','','0000-00-00 00:00:00',0),(4114,0,0,'H','2526','','P',4114,0,0,'2025-11-15',2879,2243,0,146,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-15 10:42:38','riya','2025-11-15 10:42:38',0),(4115,0,0,'H','2526','','',4115,0,0,'2025-11-15',3415,2582,0,0,2524,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4036,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 10:49:36','','0000-00-00 00:00:00',0),(4116,0,0,'H','2526','','',4116,0,0,'2025-11-15',3416,1694,0,0,1649,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4037,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 10:55:22','','0000-00-00 00:00:00',0),(4117,0,0,'H','2526','','',4117,0,0,'2025-11-15',3417,843,0,0,812,'B',500.00,0.00,'7','kotak','','49684','','0000-00-00','scan','',4038,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 10:58:58','','0000-00-00 00:00:00',0),(4118,0,0,'H','2526','','',4118,0,0,'2025-11-15',3418,849,0,0,818,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4039,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-15 11:04:56','','0000-00-00 00:00:00',0),(4119,0,0,'H','2526','','',4119,0,0,'2025-11-15',3419,1997,0,0,1949,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4040,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 11:04:57','','0000-00-00 00:00:00',0),(4120,0,0,'H','2526','','',4120,0,0,'2025-11-15',3407,2575,0,0,2517,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',4041,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 11:09:03','','0000-00-00 00:00:00',0),(4121,0,0,'H','2526','','',4121,0,0,'2025-11-15',3420,2583,0,0,2525,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4043,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 11:19:33','','0000-00-00 00:00:00',0),(4122,0,0,'H','2526','','',4122,0,0,'2025-11-15',3421,2584,0,0,2526,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4044,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 11:21:59','','0000-00-00 00:00:00',0),(4123,0,0,'H','2526','','',4123,0,0,'2025-11-15',3421,2584,0,0,2526,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4045,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 11:22:05','','0000-00-00 00:00:00',0),(4124,0,0,'H','2526','','',4124,0,0,'2025-11-15',3421,2584,0,0,2526,'D',-900.00,0.00,'CSH','','','','','2025-11-15','','',4046,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 11:25:13','','0000-00-00 00:00:00',0),(4125,0,0,'H','2526','','',4125,0,0,'2025-11-15',3422,2585,0,0,2527,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4047,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 11:25:51','','0000-00-00 00:00:00',0),(4126,0,0,'H','2526','','',4126,0,0,'2025-11-15',3423,1437,0,0,1397,'B',400.00,0.00,'7','idbi','','57038','','0000-00-00','scan ','',4048,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-15 11:28:08','','0000-00-00 00:00:00',0),(4127,0,0,'H','2526','','',4127,0,0,'2025-11-15',3424,2026,0,0,1978,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4049,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-15 11:30:26','','0000-00-00 00:00:00',0),(4128,0,0,'H','2526','','',4128,0,0,'2025-11-15',3409,2577,0,0,2519,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4050,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-15 11:31:47','','0000-00-00 00:00:00',0),(4129,0,0,'H','2526','','',4129,0,0,'2025-11-15',3425,2174,0,0,2123,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4051,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-15 11:32:32','','0000-00-00 00:00:00',0),(4130,0,0,'H','2526','','',4130,0,0,'2025-11-15',3426,657,0,0,627,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4052,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-15 11:32:36','','0000-00-00 00:00:00',0),(4131,0,0,'H','2526','','',4131,0,0,'2025-11-15',3427,1616,0,0,2528,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4054,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-15 11:34:04','','0000-00-00 00:00:00',0),(4132,0,0,'H','2526','','',4132,0,0,'2025-11-15',3413,2039,0,0,1988,'D',-400.00,0.00,'CSH','','','','','2025-11-15','','',4055,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 11:35:02','','0000-00-00 00:00:00',0),(4133,0,0,'H','2526','','',4133,0,0,'2025-11-15',3428,1053,0,0,1019,'B',300.00,0.00,'7','SBI BANK','','97250','','0000-00-00','scan ','',4056,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-15 11:35:16','','0000-00-00 00:00:00',0),(4134,0,0,'H','2526','','',4134,0,0,'2025-11-15',3430,521,0,0,496,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4057,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 11:42:32','','0000-00-00 00:00:00',0),(4135,0,0,'H','2526','','',4135,0,0,'2025-11-15',3429,2586,0,0,2529,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4058,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-15 11:42:35','','0000-00-00 00:00:00',0),(4136,0,0,'H','2526','','',4136,0,0,'2025-11-15',3430,521,0,0,496,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4059,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 11:42:37','','0000-00-00 00:00:00',0),(4137,0,0,'H','2526','','',4137,0,0,'2025-11-15',3431,2587,0,0,2530,'B',500.00,0.00,'7','boi','','36665','','0000-00-00','scan ','',4060,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-15 11:44:41','','0000-00-00 00:00:00',0),(4138,0,0,'H','2526','','',4138,0,0,'2025-11-15',3432,1051,0,0,1017,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4061,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 11:46:03','','0000-00-00 00:00:00',0),(4139,0,0,'H','2526','','',4139,0,0,'2025-11-15',3433,2588,0,0,2531,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4062,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-15 11:46:29','','0000-00-00 00:00:00',0),(4140,0,0,'H','2526','','P',4140,0,0,'2025-11-15',2811,2201,0,143,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',4510,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-15 11:49:33','riya','2025-11-20 12:45:24',0),(4141,0,0,'H','2526','','',4141,0,0,'2025-11-15',3422,2585,0,0,2527,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',4063,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 11:51:32','','0000-00-00 00:00:00',0),(4142,0,0,'H','2526','','',4142,0,0,'2025-11-15',3430,521,0,0,496,'D',-500.00,0.00,'CSH','','','','','2025-11-15','','',4064,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 11:55:05','','0000-00-00 00:00:00',0),(4143,0,0,'H','2526','','',4143,0,0,'2025-11-15',3434,2589,0,0,2532,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4065,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 12:01:11','','0000-00-00 00:00:00',0),(4144,0,0,'H','2526','','',4144,0,0,'2025-11-15',3435,1723,0,0,1678,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4066,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 12:07:24','','0000-00-00 00:00:00',0),(4145,0,0,'H','2526','','',4145,0,0,'2025-11-15',3402,551,0,0,525,'B',2000.00,0.00,'7','sbi','','46902','','0000-00-00','scan ','',4067,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-15 12:19:31','','0000-00-00 00:00:00',0),(4146,0,0,'H','2526','','',4146,0,0,'2025-11-15',3434,2589,0,0,2532,'B',6400.00,0.00,'7','federal bank','','48755','','0000-00-00','scan','',4068,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 12:21:29','','0000-00-00 00:00:00',0),(4147,0,0,'H','2526','','',4147,0,0,'2025-11-15',3436,2563,0,0,2506,'B',300.00,0.00,'7','IDBI','','53320','','0000-00-00','scan ','',4069,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-15 12:22:15','','0000-00-00 00:00:00',0),(4148,0,0,'H','2526','','',4148,0,0,'2025-11-15',3437,1515,0,0,1474,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4070,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 12:23:46','','0000-00-00 00:00:00',0),(4149,0,0,'H','2526','','',4149,0,0,'2025-11-15',3438,2590,0,0,2533,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4071,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-15 12:26:10','','0000-00-00 00:00:00',0),(4150,0,0,'H','2526','','',4150,0,0,'2025-11-15',3439,1993,0,0,1945,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4072,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 12:26:22','','0000-00-00 00:00:00',0),(4151,0,0,'H','2526','','',4151,0,0,'2025-11-15',3440,2591,0,0,2534,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4073,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 12:28:41','','0000-00-00 00:00:00',0),(4152,0,0,'H','2526','','',4152,0,0,'2025-11-15',3440,2591,0,0,2534,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4074,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 12:28:52','','0000-00-00 00:00:00',0),(4153,0,0,'H','2526','','',4153,0,0,'2025-11-15',3441,2592,0,0,2535,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4076,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-15 12:31:23','','0000-00-00 00:00:00',0),(4154,0,0,'H','2526','','',4154,0,0,'2025-11-15',3440,2591,0,0,2534,'D',-900.00,0.00,'CSH','','','','','2025-11-15','','',4075,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 12:31:47','','0000-00-00 00:00:00',0),(4155,0,0,'H','2526','','',4155,0,0,'2025-11-15',3421,2584,0,0,2526,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',4077,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 12:36:14','','0000-00-00 00:00:00',0),(4156,0,0,'H','2526','','',4156,0,0,'2025-11-15',3442,1505,0,0,1464,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4078,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 12:39:30','','0000-00-00 00:00:00',0),(4157,0,0,'H','2526','','',4157,0,0,'2025-11-15',3443,2593,0,0,2536,'B',900.00,0.00,'7','centrel bank','','79903','','0000-00-00','scan','',4079,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 12:53:39','','0000-00-00 00:00:00',0),(4158,0,0,'H','2526','','',4158,0,0,'2025-11-15',3444,2594,0,0,2537,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',4080,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 13:02:47','','0000-00-00 00:00:00',0),(4159,0,0,'H','2526','','',4159,0,0,'2025-11-15',3444,2594,0,0,2537,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',4081,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 13:03:33','','0000-00-00 00:00:00',0),(4160,0,0,'H','2526','','',4160,0,0,'2025-11-15',3444,2594,0,0,2537,'D',-700.00,0.00,'CSH','','','','','2025-11-15','','',4083,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 13:06:59','','0000-00-00 00:00:00',0),(4161,0,0,'H','2526','','P',4161,0,0,'2025-11-15',3190,2385,0,153,0,'A',13300.00,0.00,'CSH','','','','','0000-00-00','','',4084,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-15 13:08:24','riya','2025-11-15 13:08:46',0),(4162,0,0,'H','2526','','',4162,0,0,'2025-11-15',3440,2591,0,0,2534,'B',4500.00,0.00,'7','sbi','','58821','','0000-00-00','scan','',4085,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 13:08:48','','0000-00-00 00:00:00',0),(4163,0,0,'H','2526','','P',4163,0,0,'2025-11-15',3113,2384,0,150,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',4086,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-15 13:16:15','riya','2025-11-15 13:16:52',0),(4164,0,0,'H','2526','','',4164,0,0,'2025-11-15',3446,2596,0,0,2539,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4087,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 13:26:52','','0000-00-00 00:00:00',0),(4165,0,0,'H','2526','','',4165,0,0,'2025-11-15',3447,2597,0,0,2540,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4088,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-15 13:39:29','','0000-00-00 00:00:00',0),(4166,0,0,'H','2526','','',4166,0,0,'2025-11-15',3444,2594,0,0,2537,'D',-700.00,0.00,'CSH','','','','','2025-11-15','','',4089,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 13:43:42','','0000-00-00 00:00:00',0),(4167,0,0,'H','2526','','',4167,0,0,'2025-11-15',3443,2593,0,0,2536,'D',-900.00,0.00,'7','centrel bank','','79903','','2025-11-15','SCAN','',4091,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 13:46:57','','0000-00-00 00:00:00',0),(4168,0,0,'H','2526','','',4168,0,0,'2025-11-15',3447,2597,0,0,2540,'B',4300.00,0.00,'7','sbi','','09075','','0000-00-00','scan','',4092,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 13:51:21','','0000-00-00 00:00:00',0),(4169,0,0,'H','2526','','',4169,0,0,'2025-11-15',3448,1765,0,0,1721,'B',500.00,0.00,'7','sbi','','63474','','0000-00-00','scan','',4093,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 14:14:12','','0000-00-00 00:00:00',0),(4170,0,0,'H','2526','','P',4170,0,0,'2025-11-15',3348,2539,0,159,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',4739,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-15 17:39:40','riya','2025-11-22 13:21:33',0),(4171,0,0,'H','2526','','P',4171,0,0,'2025-11-15',3299,2504,0,157,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',4116,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-15 17:41:39','riya','2025-11-16 10:47:28',0),(4172,0,0,'H','2526','','P',4172,0,0,'2025-11-15',3027,2304,0,149,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',4134,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-15 17:44:38','riya','2025-11-17 10:37:31',0),(4173,0,0,'H','2526','','',4173,0,0,'2025-11-15',3449,1036,0,0,1004,'B',300.00,0.00,'7','bob','','42260','','0000-00-00','scan  ','',4094,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-15 17:45:56','','0000-00-00 00:00:00',0),(4174,0,0,'H','2526','','',4174,0,0,'2025-11-15',3451,2599,0,0,2542,'B',300.00,0.00,'7','hdfc','','79185','','0000-00-00','scan ','',4095,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-15 17:58:52','','0000-00-00 00:00:00',0),(4175,0,0,'H','2526','','',4175,0,0,'2025-11-15',3450,2598,0,0,2541,'B',500.00,0.00,'7','ICICI BANK','','89220','','0000-00-00','scan ','',4096,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-15 17:59:17','','0000-00-00 00:00:00',0),(4176,0,0,'H','2526','','',4176,0,0,'2025-11-15',3453,2600,0,0,2543,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4097,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-15 18:00:31','','0000-00-00 00:00:00',0),(4177,0,0,'H','2526','','',4177,0,0,'2025-11-15',3452,1940,0,0,1893,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4098,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-15 18:19:03','','0000-00-00 00:00:00',0),(4178,0,0,'H','2526','','',4178,0,0,'2025-11-15',3454,2022,0,0,1974,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4099,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-15 18:22:11','','0000-00-00 00:00:00',0),(4179,0,0,'H','2526','','',4179,0,0,'2025-11-15',3456,2602,0,0,2545,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4100,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-15 18:27:47','','0000-00-00 00:00:00',0),(4180,0,0,'H','2526','','',4180,0,0,'2025-11-15',3457,2248,0,0,2191,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4101,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-15 18:29:46','','0000-00-00 00:00:00',0),(4181,0,0,'H','2526','','',4181,0,0,'2025-11-15',3458,2028,0,0,1980,'B',300.00,0.00,'7','SBI','','09081','','0000-00-00','SCAN','',4102,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 18:47:18','','0000-00-00 00:00:00',0),(4182,0,0,'H','2526','','',4182,0,0,'2025-11-15',3459,2415,0,0,2360,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4103,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-15 18:49:02','','0000-00-00 00:00:00',0),(4183,0,0,'H','2526','','',4183,0,0,'2025-11-15',3460,2603,0,0,2546,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4105,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 19:02:06','','0000-00-00 00:00:00',0),(4184,0,0,'H','2526','','',4184,0,0,'2025-11-15',3461,2251,0,0,2194,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4106,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 19:10:59','','0000-00-00 00:00:00',0),(4185,0,0,'H','2526','','',4185,0,0,'2025-11-15',3462,2604,0,0,2547,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',4107,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 19:24:06','','0000-00-00 00:00:00',0),(4186,0,0,'H','2526','','',4186,0,0,'2025-11-15',3462,2604,0,0,2547,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',4108,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 19:24:15','','0000-00-00 00:00:00',0),(4187,0,0,'H','2526','','',4187,0,0,'2025-11-15',3464,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4109,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-15 19:33:55','','0000-00-00 00:00:00',0),(4188,0,0,'H','2526','','',4188,0,0,'2025-11-15',3463,2379,0,0,2322,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4110,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 19:41:20','','0000-00-00 00:00:00',0),(4189,0,0,'H','2526','','',4189,0,0,'2025-11-15',3465,2078,0,0,2548,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',4111,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-15 20:00:58','','0000-00-00 00:00:00',0),(4190,0,0,'H','2526','','P',4190,0,0,'2025-11-15',3294,2499,0,156,0,'A',2350.00,0.00,'CSH','','','','','0000-00-00','','',4112,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-15 20:11:39','vishal','2025-11-15 20:12:01',0),(4191,0,0,'H','2526','','P',4191,0,0,'2025-11-15',3299,2504,0,157,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',4116,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-15 22:39:27','riya','2025-11-16 10:47:28',0),(4192,0,0,'H','2526','','',4192,0,0,'2025-11-16',3466,2605,0,0,2549,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',4113,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-16 09:06:11','','0000-00-00 00:00:00',0),(4193,0,0,'H','2526','','',4193,0,0,'2025-11-16',3467,2606,0,0,2550,'B',1350.00,0.00,'7','SBI BANK','','56888','','0000-00-00','scan ','',4114,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-16 09:08:38','','0000-00-00 00:00:00',0),(4194,0,0,'H','2526','','P',4194,0,0,'2025-11-16',3468,2607,0,161,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',4521,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-16 10:26:17','riya','2025-11-20 13:39:32',0),(4195,0,0,'H','2526','','P',4195,0,0,'2025-11-16',3470,2608,0,162,0,'A',7000.00,0.00,'7','AU SMALL FINANCE BANK','','532097505226','','0000-00-00','UPI','',4177,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-16 10:40:31','riya','2025-11-17 13:36:54',0),(4196,0,0,'H','2526','','',4196,0,0,'2025-11-15',3462,2604,0,0,2547,'D',-1000.00,0.00,'CSH','','','','','2025-11-16','','',4117,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-16 11:11:52','','0000-00-00 00:00:00',0),(4197,0,0,'H','2526','','',4197,0,0,'2025-11-15',3462,2604,0,0,2547,'D',-1000.00,0.00,'CSH','','','','','2025-11-16','','',4118,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-16 11:14:54','','0000-00-00 00:00:00',0),(4198,0,0,'H','2526','','',4198,0,0,'2025-11-16',3471,2609,0,0,2551,'B',1100.00,0.00,'7','KOTAK MAHINDRA','','306163','','0000-00-00','scan ','',4119,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-16 11:51:08','','0000-00-00 00:00:00',0),(4199,0,0,'H','2526','','',4199,0,0,'2025-11-16',3472,2610,0,0,2552,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',4120,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-16 12:19:06','','0000-00-00 00:00:00',0),(4200,0,0,'H','2526','','P',4200,0,0,'2025-11-16',3348,2539,0,159,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',4739,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-16 17:25:18','riya','2025-11-22 13:21:33',0),(4201,0,0,'H','2526','','P',4201,0,0,'2025-11-16',3473,2611,0,163,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',4763,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-16 17:38:08','riya','2025-11-23 13:52:09',0),(4202,0,0,'H','2526','','P',4202,0,0,'2025-11-16',2879,2243,0,146,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-16 17:39:22','riya','2025-11-16 17:39:22',0),(4203,0,0,'H','2526','','P',4203,0,0,'2025-11-16',3027,2304,0,149,0,'A',9000.00,0.00,'CSH','','','','','0000-00-00','','',4134,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-16 17:44:36','riya','2025-11-17 10:37:31',0),(4204,0,0,'H','2526','','P',4204,0,0,'2025-11-16',2811,2201,0,143,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',4510,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-16 18:09:45','riya','2025-11-20 12:45:24',0),(4205,0,0,'H','2526','','P',4205,0,0,'2025-11-16',3474,2612,0,164,0,'A',15000.00,0.00,'7','INDUSIND BANK','','568699696790','','0000-00-00','UPI','',4577,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-16 18:27:23','vishal','2025-11-20 20:58:52',0),(4206,0,0,'H','2526','','P',4206,0,0,'2025-11-16',3301,2506,0,158,0,'A',17900.00,0.00,'CSH','','','','','0000-00-00','','',4122,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-16 20:19:39','riya','2025-11-16 20:21:03',0),(4207,0,0,'H','2526','','',4207,0,0,'2025-11-17',3475,1327,0,0,1288,'B',100.00,0.00,'7','BOB','','14870','','0000-00-00','SCAN','',4123,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 08:57:39','','0000-00-00 00:00:00',0),(4208,0,0,'H','2526','','',4208,0,0,'2025-11-17',3477,1763,0,0,2118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4124,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 09:01:42','','0000-00-00 00:00:00',0),(4209,0,0,'H','2526','','',4209,0,0,'2025-11-17',3476,2613,0,0,2553,'B',1150.00,0.00,'CSH','','','','','0000-00-00','','',4125,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 09:15:26','','0000-00-00 00:00:00',0),(4210,0,0,'H','2526','','',4210,0,0,'2025-11-17',3478,2614,0,0,2554,'B',1850.00,0.00,'CSH','','','','','0000-00-00','','',4126,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 09:42:09','','0000-00-00 00:00:00',0),(4211,0,0,'H','2526','','',4211,0,0,'2025-11-17',3479,2615,0,0,2555,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4127,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 09:43:22','','0000-00-00 00:00:00',0),(4212,0,0,'H','2526','','',4212,0,0,'2025-11-17',3480,1462,0,0,1421,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4128,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 10:01:42','','0000-00-00 00:00:00',0),(4213,0,0,'H','2526','','',4213,0,0,'2025-11-17',3481,331,0,0,315,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4130,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 10:15:34','','0000-00-00 00:00:00',0),(4214,0,0,'H','2526','','',4214,0,0,'2025-11-17',3482,2616,0,0,2556,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4131,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-17 10:16:57','','0000-00-00 00:00:00',0),(4215,0,0,'H','2526','','',4215,0,0,'2025-11-17',3483,2617,0,0,2557,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4132,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 10:18:58','','0000-00-00 00:00:00',0),(4216,0,0,'H','2526','','',4216,0,0,'2025-11-17',3484,2618,0,0,2558,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4133,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 10:36:45','','0000-00-00 00:00:00',0),(4217,0,0,'H','2526','','',4217,0,0,'2025-11-17',3485,2102,0,0,2047,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4135,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 10:40:17','','0000-00-00 00:00:00',0),(4218,0,0,'H','2526','','',4218,0,0,'2025-11-17',3486,2044,0,0,1993,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4136,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 10:46:32','','0000-00-00 00:00:00',0),(4219,0,0,'H','2526','','',4219,0,0,'2025-11-17',3487,2123,0,0,2069,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4137,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 10:54:52','','0000-00-00 00:00:00',0),(4220,0,0,'H','2526','','',4220,0,0,'2025-11-17',3488,2116,0,0,2062,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4138,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 10:58:01','','0000-00-00 00:00:00',0),(4221,0,0,'H','2526','','',4221,0,0,'2025-11-17',3489,2619,0,0,2559,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4139,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-17 11:03:52','','0000-00-00 00:00:00',0),(4222,0,0,'H','2526','','',4222,0,0,'2025-11-17',3492,2043,0,0,1992,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4140,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 11:16:28','','0000-00-00 00:00:00',0),(4223,0,0,'H','2526','','',4223,0,0,'2025-11-17',3494,790,0,0,759,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4141,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-17 11:20:02','','0000-00-00 00:00:00',0),(4224,0,0,'H','2526','','',4224,0,0,'2025-11-17',3493,2621,0,0,2561,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4142,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-17 11:20:34','','0000-00-00 00:00:00',0),(4225,0,0,'H','2526','','',4225,0,0,'2025-11-17',3490,1292,0,0,1251,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4143,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-17 11:22:21','','0000-00-00 00:00:00',0),(4226,0,0,'H','2526','','',4226,0,0,'2025-11-17',3491,2620,0,0,2560,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4144,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-17 11:23:58','','0000-00-00 00:00:00',0),(4227,0,0,'H','2526','','',4227,0,0,'2025-11-17',3495,2622,0,0,2562,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4145,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 11:25:14','','0000-00-00 00:00:00',0),(4228,0,0,'H','2526','','',4228,0,0,'2025-11-17',3496,1393,0,0,1353,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4146,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 11:26:17','','0000-00-00 00:00:00',0),(4229,0,0,'H','2526','','',4229,0,0,'2025-11-17',3497,2110,0,0,2056,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4147,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 11:29:22','','0000-00-00 00:00:00',0),(4230,0,0,'H','2526','','',4230,0,0,'2025-11-17',3498,2623,0,0,2563,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4148,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 11:30:10','','0000-00-00 00:00:00',0),(4231,0,0,'H','2526','','',4231,0,0,'2025-11-17',3499,2192,0,0,2141,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4149,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 11:31:56','','0000-00-00 00:00:00',0),(4232,0,0,'H','2526','','P',4232,0,0,'2025-11-17',3405,2573,0,160,0,'A',23000.00,0.00,'7','SBI','','415664975732','','0000-00-00','UPI','',4292,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-17 11:35:58','riya','2025-11-18 23:27:04',0),(4233,0,0,'H','2526','','',4233,0,0,'2025-11-17',3500,2624,0,0,2564,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4150,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 11:36:26','','0000-00-00 00:00:00',0),(4234,0,0,'H','2526','','P',4234,0,0,'2025-11-17',3468,2607,0,161,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',4521,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-17 11:36:39','riya','2025-11-20 13:39:32',0),(4235,0,0,'H','2526','','',4235,0,0,'2025-11-17',3494,790,0,0,759,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4151,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-17 11:37:30','','0000-00-00 00:00:00',0),(4236,0,0,'H','2526','','',4236,0,0,'2025-11-17',3501,1473,0,0,1432,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4152,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-17 11:38:30','','0000-00-00 00:00:00',0),(4237,0,0,'H','2526','','',4237,0,0,'2025-11-17',3502,2625,0,0,2565,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4153,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 11:38:40','','0000-00-00 00:00:00',0),(4238,0,0,'H','2526','','',4238,0,0,'2025-11-17',3503,406,0,0,384,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4154,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 11:39:24','','0000-00-00 00:00:00',0),(4239,0,0,'H','2526','','',4239,0,0,'2025-11-17',3504,994,0,0,961,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4155,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 11:40:53','','0000-00-00 00:00:00',0),(4240,0,0,'H','2526','','',4240,0,0,'2025-11-17',3505,2626,0,0,2566,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4156,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-17 11:46:25','','0000-00-00 00:00:00',0),(4241,0,0,'H','2526','','',4241,0,0,'2025-11-17',3506,2301,0,0,2245,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4157,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-17 11:51:40','','0000-00-00 00:00:00',0),(4242,0,0,'H','2526','','',4242,0,0,'2025-11-17',3507,2627,0,0,2567,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4158,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-17 11:56:09','','0000-00-00 00:00:00',0),(4243,0,0,'H','2526','','',4243,0,0,'2025-11-17',3508,1976,0,0,1928,'B',300.00,0.00,'7','SBI','','95709','','0000-00-00','SCAN','',4159,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-17 11:57:48','','0000-00-00 00:00:00',0),(4244,0,0,'H','2526','','',4244,0,0,'2025-11-17',3509,2628,0,0,2568,'B',500.00,0.00,'7','HDFC','','38632','','0000-00-00','SCAN','',4160,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-17 12:02:37','','0000-00-00 00:00:00',0),(4245,0,0,'H','2526','','',4245,0,0,'2025-11-17',3510,2119,0,0,2065,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4161,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-17 12:04:00','','0000-00-00 00:00:00',0),(4246,0,0,'H','2526','','',4246,0,0,'2025-11-17',3498,2623,0,0,2563,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',4162,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 12:04:10','','0000-00-00 00:00:00',0),(4247,0,0,'H','2526','','',4247,0,0,'2025-11-17',3511,2629,0,0,2569,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4163,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-17 12:10:37','','0000-00-00 00:00:00',0),(4248,0,0,'H','2526','','',4248,0,0,'2025-11-17',3489,2619,0,0,2559,'B',2200.00,0.00,'CSH','','','','','0000-00-00','','',4164,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 12:11:20','','0000-00-00 00:00:00',0),(4249,0,0,'H','2526','','',4249,0,0,'2025-11-17',3512,880,0,0,848,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4165,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 12:13:39','','0000-00-00 00:00:00',0),(4250,0,0,'H','2526','','',4250,0,0,'2025-11-17',3510,2119,0,0,2065,'B',500.00,0.00,'7','HDFC','','89841','','0000-00-00','SCAN','',4166,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-17 12:32:41','','0000-00-00 00:00:00',0),(4251,0,0,'H','2526','','',4251,0,0,'2025-11-17',3507,2627,0,0,2567,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',4167,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 12:35:14','','0000-00-00 00:00:00',0),(4252,0,0,'H','2526','','',4252,0,0,'2025-11-17',3513,2630,0,0,2570,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4168,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 12:38:08','','0000-00-00 00:00:00',0),(4253,0,0,'H','2526','','',4253,0,0,'2025-11-17',3514,2631,0,0,2571,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4169,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-17 12:45:40','','0000-00-00 00:00:00',0),(4254,0,0,'H','2526','','',4254,0,0,'2025-11-17',3515,2632,0,0,2572,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4170,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 12:46:58','','0000-00-00 00:00:00',0),(4255,0,0,'H','2526','','',4255,0,0,'2025-11-17',3500,2624,0,0,2564,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',4171,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 12:55:37','','0000-00-00 00:00:00',0),(4256,0,0,'H','2526','','',4256,0,0,'2025-11-17',3516,29,0,0,27,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4172,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 12:58:14','','0000-00-00 00:00:00',0),(4257,0,0,'H','2526','','',4257,0,0,'2025-11-17',3518,2634,0,0,2573,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4173,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 13:04:27','','0000-00-00 00:00:00',0),(4258,0,0,'H','2526','','',4258,0,0,'2025-11-17',3519,2489,0,0,2433,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',4174,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-17 13:15:59','','0000-00-00 00:00:00',0),(4259,0,0,'H','2526','','P',4259,0,0,'2025-11-17',3517,2633,0,165,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',5108,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-17 13:18:21','riya','2025-11-26 15:00:29',0),(4260,0,0,'H','2526','','',4260,0,0,'2025-11-17',3520,827,0,0,796,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4175,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 13:19:05','','0000-00-00 00:00:00',0),(4261,0,0,'H','2526','','P',4261,0,0,'2025-11-17',3470,2608,0,162,0,'A',2300.00,0.00,'7','AU SMALL FINANCE BANK','','532151886249','','0000-00-00','UPI','',4177,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-17 13:35:46','riya','2025-11-17 13:36:54',0),(4262,0,0,'H','2526','','',4262,0,0,'2025-11-17',3505,2626,0,0,2566,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',4178,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 13:37:21','','0000-00-00 00:00:00',0),(4263,0,0,'H','2526','','',4263,0,0,'2025-11-17',3522,2635,0,0,2574,'B',1300.00,0.00,'7','CENTRAL BANK','','62593','','0000-00-00','scan ','',4179,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-17 14:09:57','','0000-00-00 00:00:00',0),(4264,0,0,'H','2526','','',4264,0,0,'2025-11-17',3523,983,0,0,952,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4180,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 14:15:22','','0000-00-00 00:00:00',0),(4265,0,0,'H','2526','','',4265,0,0,'2025-11-17',3524,990,0,0,957,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4181,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-17 14:49:16','','0000-00-00 00:00:00',0),(4266,0,0,'H','2526','','',4266,0,0,'2025-11-17',3525,2149,0,0,2096,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4182,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 16:40:27','','0000-00-00 00:00:00',0),(4267,0,0,'H','2526','','',4267,0,0,'2025-11-17',3526,232,0,0,219,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4183,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 16:47:01','','0000-00-00 00:00:00',0),(4268,0,0,'H','2526','','',4268,0,0,'2025-11-17',3527,2636,0,0,2575,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4184,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 16:49:32','','0000-00-00 00:00:00',0),(4269,0,0,'H','2526','','',4269,0,0,'2025-11-17',3528,2637,0,0,2576,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4185,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-17 16:50:53','','0000-00-00 00:00:00',0),(4270,0,0,'H','2526','','',4270,0,0,'2025-11-17',3529,2638,0,0,2577,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4186,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 16:54:44','','0000-00-00 00:00:00',0),(4271,0,0,'H','2526','','',4271,0,0,'2025-11-17',3530,2639,0,0,2578,'B',900.00,0.00,'7','SBI','','66077','','0000-00-00','SCAN','',4187,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 16:57:17','','0000-00-00 00:00:00',0),(4272,0,0,'H','2526','','',4272,0,0,'2025-11-17',3531,2640,0,0,2579,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4188,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 17:01:51','','0000-00-00 00:00:00',0),(4273,0,0,'H','2526','','',4273,0,0,'2025-11-17',3532,2641,0,0,2580,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4189,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 17:05:03','','0000-00-00 00:00:00',0),(4274,0,0,'H','2526','','',4274,0,0,'2025-11-17',3533,1922,0,0,1875,'B',500.00,0.00,'7','SBI','','70844','','0000-00-00','SCAN','',4190,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 17:12:38','','0000-00-00 00:00:00',0),(4275,0,0,'H','2526','','',4275,0,0,'2025-11-17',3534,2642,0,0,2581,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4191,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-17 17:25:09','','0000-00-00 00:00:00',0),(4276,0,0,'H','2526','','',4276,0,0,'2025-11-17',3536,1583,0,0,1540,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4192,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 17:25:09','','0000-00-00 00:00:00',0),(4277,0,0,'H','2526','','',4277,0,0,'2025-11-17',3535,2643,0,0,2582,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4193,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-17 17:25:27','','0000-00-00 00:00:00',0),(4278,0,0,'H','2526','','',4278,0,0,'2025-11-17',3537,2644,0,0,2583,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4194,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 17:37:13','','0000-00-00 00:00:00',0),(4279,0,0,'H','2526','','',4279,0,0,'2025-11-17',3527,2636,0,0,2575,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',4195,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 17:40:01','','0000-00-00 00:00:00',0),(4280,0,0,'H','2526','','',4280,0,0,'2025-11-17',3534,2642,0,0,2581,'D',-800.00,0.00,'CSH','','','','','2025-11-17','','',4196,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-17 17:47:52','','0000-00-00 00:00:00',0),(4281,0,0,'H','2526','','',4281,0,0,'2025-11-17',3538,1427,0,0,1386,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4197,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-17 17:51:13','','0000-00-00 00:00:00',0),(4282,0,0,'H','2526','','',4282,0,0,'2025-11-17',3530,2639,0,0,2578,'B',4400.00,0.00,'7','SBI','','00192','','0000-00-00','SCAN','',4198,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 17:58:27','','0000-00-00 00:00:00',0),(4283,0,0,'H','2526','','P',4283,0,0,'2025-11-17',3473,2611,0,163,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',4763,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-17 17:58:40','riya','2025-11-23 13:52:09',0),(4284,0,0,'H','2526','','',4284,0,0,'2025-11-17',3539,1027,0,0,995,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4199,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 18:02:58','','0000-00-00 00:00:00',0),(4285,0,0,'H','2526','','',4285,0,0,'2025-11-17',3540,2645,0,0,2584,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4200,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 18:04:46','','0000-00-00 00:00:00',0),(4286,0,0,'H','2526','','',4286,0,0,'2025-11-17',3542,2128,0,0,2074,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4201,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 18:11:57','','0000-00-00 00:00:00',0),(4287,0,0,'H','2526','','',4287,0,0,'2025-11-17',3543,392,0,0,2586,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4202,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-17 18:12:47','','0000-00-00 00:00:00',0),(4288,0,0,'H','2526','','',4288,0,0,'2025-11-17',3541,2646,0,0,2585,'B',500.00,0.00,'7','ZAPP WALLET','','43287','','0000-00-00','SCAN','',4203,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-17 18:17:24','','0000-00-00 00:00:00',0),(4289,0,0,'H','2526','','',4289,0,0,'2025-11-17',3531,2640,0,0,2579,'B',5400.00,0.00,'CSH','','','','','0000-00-00','','',4204,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 18:17:59','','0000-00-00 00:00:00',0),(4290,0,0,'H','2526','','',4290,0,0,'2025-11-17',3544,2647,0,0,2587,'B',900.00,0.00,'7','HDFC','','20416','','0000-00-00','SCAN','',4205,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 18:20:50','','0000-00-00 00:00:00',0),(4291,0,0,'H','2526','','',4291,0,0,'2025-11-17',3532,2641,0,0,2580,'B',3500.00,0.00,'7','RNSB','','03574','','0000-00-00','SCAN','',4206,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 18:25:36','','0000-00-00 00:00:00',0),(4292,0,0,'H','2526','','',4292,0,0,'2025-11-17',3545,807,0,0,776,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4207,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 18:43:33','','0000-00-00 00:00:00',0),(4293,0,0,'H','2526','','',4293,0,0,'2025-11-17',3546,1487,0,0,1446,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4208,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-17 18:45:24','','0000-00-00 00:00:00',0),(4294,0,0,'H','2526','','',4294,0,0,'2025-11-17',3540,2645,0,0,2584,'B',4500.00,0.00,'7','FEDERAL BANK','','96111','','0000-00-00','SCAN','',4209,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 18:46:36','','0000-00-00 00:00:00',0),(4295,0,0,'H','2526','','P',4295,0,0,'2025-11-17',3348,2539,0,159,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',4739,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-17 18:47:04','riya','2025-11-22 13:21:33',0),(4296,0,0,'H','2526','','',4296,0,0,'2025-11-17',3547,2648,0,0,2588,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4210,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-17 18:49:34','','0000-00-00 00:00:00',0),(4297,0,0,'H','2526','','',4297,0,0,'2025-11-17',3541,2646,0,0,2585,'B',500.00,0.00,'7','ZAPP WALLET','','802769','','0000-00-00','SCAN','',4211,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-17 18:50:40','','0000-00-00 00:00:00',0),(4298,0,0,'H','2526','','',4298,0,0,'2025-11-17',3549,2649,0,0,2589,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4212,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 18:56:59','','0000-00-00 00:00:00',0),(4299,0,0,'H','2526','','',4299,0,0,'2025-11-17',3546,1487,0,0,1446,'D',-500.00,0.00,'CSH','','','','','2025-11-17','','',4213,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-17 18:59:32','','0000-00-00 00:00:00',0),(4300,0,0,'H','2526','','',4300,0,0,'2025-11-17',3550,1316,0,0,1277,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4214,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 19:01:53','','0000-00-00 00:00:00',0),(4301,0,0,'H','2526','','',4301,0,0,'2025-11-17',3544,2647,0,0,2587,'B',4000.00,0.00,'7','BOB','','93889','','0000-00-00','SCAN','',4215,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 19:03:39','','0000-00-00 00:00:00',0),(4302,0,0,'H','2526','','',4302,0,0,'2025-11-17',3551,2650,0,0,2590,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4216,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-17 19:07:14','','0000-00-00 00:00:00',0),(4303,0,0,'H','2526','','',4303,0,0,'2025-11-17',3543,392,0,0,2586,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4217,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-17 19:35:59','','0000-00-00 00:00:00',0),(4304,0,0,'H','2526','','',4304,0,0,'2025-11-17',3552,1327,0,0,1288,'B',100.00,0.00,'7','bob','','01319','','0000-00-00','scan  ','',4218,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-17 19:55:47','','0000-00-00 00:00:00',0),(4305,0,0,'H','2526','','',4305,0,0,'2025-11-17',3549,2649,0,0,2589,'D',-500.00,0.00,'CSH','','','','','2025-11-17','','',4219,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 19:58:22','','0000-00-00 00:00:00',0),(4306,0,0,'H','2526','','',4306,0,0,'2025-11-17',3549,2649,0,0,2589,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4220,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-17 19:59:02','','0000-00-00 00:00:00',0),(4307,0,0,'H','2526','','',4307,0,0,'2025-11-17',3521,1037,0,0,1005,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4221,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-17 20:00:27','','0000-00-00 00:00:00',0),(4308,0,0,'H','2526','','',4308,0,0,'2025-11-18',3554,2652,0,0,2591,'B',1700.00,0.00,'CSH','','','','','0000-00-00','','',4222,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 09:09:22','','0000-00-00 00:00:00',0),(4309,0,0,'H','2526','','',4309,0,0,'2025-11-18',3555,2653,0,0,2592,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',4223,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 09:11:54','','0000-00-00 00:00:00',0),(4310,0,0,'H','2526','','',4310,0,0,'2025-11-18',3556,740,0,0,709,'B',4000.00,0.00,'7','SBI','','20704','','0000-00-00','SCAN','',4224,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 09:15:07','','0000-00-00 00:00:00',0),(4311,0,0,'H','2526','','',4311,0,0,'2025-11-18',3557,2654,0,0,2593,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4225,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-18 09:43:36','','0000-00-00 00:00:00',0),(4312,0,0,'H','2526','','',4312,0,0,'2025-11-18',3558,2655,0,0,2594,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4226,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 10:05:59','','0000-00-00 00:00:00',0),(4313,0,0,'H','2526','','',4313,0,0,'2025-11-18',3559,2656,0,0,2595,'B',900.00,0.00,'7','SBI','','25145','','0000-00-00','SCAN','',4227,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 10:13:17','','0000-00-00 00:00:00',0),(4314,0,0,'H','2526','','',4314,0,0,'2025-11-18',3560,2221,0,0,2166,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4228,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-18 10:14:13','','0000-00-00 00:00:00',0),(4315,0,0,'H','2526','','',4315,0,0,'2025-11-18',3561,2657,0,0,2596,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4229,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-18 10:21:55','','0000-00-00 00:00:00',0),(4316,0,0,'H','2526','','',4316,0,0,'2025-11-18',3562,2658,0,0,2597,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4230,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 10:27:37','','0000-00-00 00:00:00',0),(4317,0,0,'H','2526','','',4317,0,0,'2025-11-18',3563,1425,0,0,1384,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4231,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-18 10:37:54','','0000-00-00 00:00:00',0),(4318,0,0,'H','2526','','',4318,0,0,'2025-11-18',3564,2659,0,0,2598,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4232,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-18 10:40:09','','0000-00-00 00:00:00',0),(4319,0,0,'H','2526','','',4319,0,0,'2025-11-18',3565,181,0,0,168,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4233,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 10:46:23','','0000-00-00 00:00:00',0),(4320,0,0,'H','2526','','P',4320,0,0,'2025-11-18',3517,2633,0,165,0,'A',50000.00,0.00,'CSH','','','','','0000-00-00','','',5108,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-18 10:49:07','riya','2025-11-26 15:00:29',0),(4321,0,0,'H','2526','','P',4321,0,0,'2025-11-18',3566,2660,0,167,0,'A',50000.00,0.00,'CSH','','','','','0000-00-00','','',4524,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-18 11:02:02','riya','2025-11-20 15:10:44',0),(4322,0,0,'H','2526','','',4322,0,0,'2025-11-18',3568,234,0,0,221,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4234,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-18 11:02:56','','0000-00-00 00:00:00',0),(4323,0,0,'H','2526','','',4323,0,0,'2025-11-18',3569,2178,0,0,2127,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4235,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 11:04:19','','0000-00-00 00:00:00',0),(4324,0,0,'H','2526','','',4324,0,0,'2025-11-18',3570,2127,0,0,2073,'B',300.00,0.00,'7','ICICI BANK','','47338','','0000-00-00','scan ','',4236,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-18 11:06:00','','0000-00-00 00:00:00',0),(4325,0,0,'H','2526','','',4325,0,0,'2025-11-18',3561,2657,0,0,2596,'B',4800.00,0.00,'7','BOB','','20507','','0000-00-00','SCAN','',4237,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 11:10:52','','0000-00-00 00:00:00',0),(4326,0,0,'H','2526','','P',4326,0,0,'2025-11-18',3405,2573,0,160,0,'A',15000.00,0.00,'7','BANK OF BARODA','','733954290129','','0000-00-00','UPI','',4292,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-18 11:15:49','riya','2025-11-18 23:27:04',0),(4327,0,0,'H','2526','','',4327,0,0,'2025-11-18',3571,948,0,0,917,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4238,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 11:20:07','','0000-00-00 00:00:00',0),(4328,0,0,'H','2526','','',4328,0,0,'2025-11-18',3572,897,0,0,865,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4239,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 11:31:20','','0000-00-00 00:00:00',0),(4329,0,0,'H','2526','','',4329,0,0,'2025-11-18',3573,2661,0,0,2599,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4240,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 11:34:31','','0000-00-00 00:00:00',0),(4330,0,0,'H','2526','','P',4330,0,0,'2025-11-18',2879,2243,0,146,0,'A',32000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-18 11:37:02','riya','2025-11-18 11:37:02',0),(4331,0,0,'H','2526','','',4331,0,0,'2025-11-18',3574,2276,0,0,2220,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4241,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-18 11:39:15','','0000-00-00 00:00:00',0),(4332,0,0,'H','2526','','',4332,0,0,'2025-11-18',3575,2662,0,0,2600,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4242,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 11:43:59','','0000-00-00 00:00:00',0),(4333,0,0,'H','2526','','P',4333,0,0,'2025-11-18',2811,2201,0,143,0,'A',20000.00,0.00,'2','BANK OF BARODA','','3206','','0000-00-00','CARD','',4510,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-18 11:48:10','riya','2025-11-20 12:45:24',0),(4334,0,0,'H','2526','','',4334,0,0,'2025-11-18',3576,2663,0,0,2601,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4243,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-18 11:50:34','','0000-00-00 00:00:00',0),(4335,0,0,'H','2526','','',4335,0,0,'2025-11-18',3577,2664,0,0,2602,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4244,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 11:52:12','','0000-00-00 00:00:00',0),(4336,0,0,'H','2526','','',4336,0,0,'2025-11-18',3578,2347,0,0,2290,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4245,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 11:55:19','','0000-00-00 00:00:00',0),(4337,0,0,'H','2526','','',4337,0,0,'2025-11-18',3579,2665,0,0,2603,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4246,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-18 12:06:48','','0000-00-00 00:00:00',0),(4338,0,0,'H','2526','','',4338,0,0,'2025-11-18',3581,2338,0,0,2281,'B',1200.00,0.00,'CRD','one card','74423','74423','','0000-00-00','CARD','',4247,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-18 12:16:54','','0000-00-00 00:00:00',0),(4339,0,0,'H','2526','','',4339,0,0,'2025-11-18',3580,2339,0,0,2282,'B',1200.00,0.00,'CRD','one card','74423','74423','','0000-00-00','CARD','',4248,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-18 12:16:56','','0000-00-00 00:00:00',0),(4340,0,0,'H','2526','','',4340,0,0,'2025-11-18',3582,2517,0,0,2458,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4249,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 12:22:17','','0000-00-00 00:00:00',0),(4341,0,0,'H','2526','','',4341,0,0,'2025-11-18',3579,2665,0,0,2603,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',4250,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-18 12:29:20','','0000-00-00 00:00:00',0),(4342,0,0,'H','2526','','',4342,0,0,'2025-11-18',3583,2666,0,0,2604,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4251,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 12:29:40','','0000-00-00 00:00:00',0),(4343,0,0,'H','2526','','',4343,0,0,'2025-11-18',3584,2667,0,0,2605,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4252,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 12:36:07','','0000-00-00 00:00:00',0),(4344,0,0,'H','2526','','',4344,0,0,'2025-11-18',3585,2668,0,0,2606,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4253,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-18 12:36:34','','0000-00-00 00:00:00',0),(4345,0,0,'H','2526','','',4345,0,0,'2025-11-18',3586,2669,0,0,2607,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4254,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 12:37:47','','0000-00-00 00:00:00',0),(4346,0,0,'H','2526','','',4346,0,0,'2025-11-18',3587,1758,0,0,1714,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4255,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 12:38:58','','0000-00-00 00:00:00',0),(4347,0,0,'H','2526','','',4347,0,0,'2025-11-18',3588,2670,0,0,2608,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4256,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-18 12:42:34','','0000-00-00 00:00:00',0),(4348,0,0,'H','2526','','',4348,0,0,'2025-11-18',3589,2671,0,0,2609,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4257,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 12:42:53','','0000-00-00 00:00:00',0),(4349,0,0,'H','2526','','',4349,0,0,'2025-11-18',3590,2672,0,0,2610,'B',900.00,0.00,'2','SBI','46391','46391','','0000-00-00','CARD','',4258,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 12:51:25','','0000-00-00 00:00:00',0),(4350,0,0,'H','2526','','',4350,0,0,'2025-11-18',3583,2666,0,0,2604,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',4259,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 12:54:46','','0000-00-00 00:00:00',0),(4351,0,0,'H','2526','','',4351,0,0,'2025-11-18',3586,2669,0,0,2607,'B',4000.00,0.00,'7','BOB','','40372','','0000-00-00','SCAN','',4260,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 13:10:09','','0000-00-00 00:00:00',0),(4352,0,0,'H','2526','','',4352,0,0,'2025-11-18',3592,2674,0,0,2611,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4261,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-18 13:10:40','','0000-00-00 00:00:00',0),(4353,0,0,'H','2526','','',4353,0,0,'2025-11-18',3593,265,0,0,250,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4262,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 13:12:12','','0000-00-00 00:00:00',0),(4354,0,0,'H','2526','','P',4354,0,0,'2025-11-18',3591,2673,0,168,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',4518,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-18 13:14:28','riya','2025-11-20 13:34:48',0),(4355,0,0,'H','2526','','',4355,0,0,'2025-11-18',3590,2672,0,0,2610,'B',4800.00,0.00,'2','SBI','','59733','','0000-00-00','CARD','',4263,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 13:27:39','','0000-00-00 00:00:00',0),(4356,0,0,'H','2526','','P',4356,0,0,'2025-11-18',3474,2612,0,164,0,'A',22000.00,0.00,'CRD','AXIS BANK','','3210','','0000-00-00','CARD','',4577,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-18 13:41:11','vishal','2025-11-20 20:58:52',0),(4357,0,0,'H','2526','','P',4357,0,0,'2025-11-18',3473,2611,0,163,0,'A',60000.00,0.00,'CSH','','','','','0000-00-00','','',4763,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-18 13:47:34','riya','2025-11-23 13:52:09',0),(4358,0,0,'H','2526','','',4358,0,0,'2025-11-18',3592,2674,0,0,2611,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',4264,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 13:47:42','','0000-00-00 00:00:00',0),(4359,0,0,'H','2526','','P',4359,0,0,'2025-11-18',3473,2611,0,163,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',4763,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-18 13:49:30','riya','2025-11-23 13:52:09',0),(4360,0,0,'H','2526','','',4360,0,0,'2025-11-18',3596,2677,0,0,2612,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4265,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 13:57:20','','0000-00-00 00:00:00',0),(4361,0,0,'H','2526','','',4361,0,0,'2025-11-18',3597,2678,0,0,2613,'B',1000.00,0.00,'7','SBI BANK','','55672','','0000-00-00','scan ','',4266,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-18 14:02:17','','0000-00-00 00:00:00',0),(4362,0,0,'H','2526','','',4362,0,0,'2025-11-18',3598,2679,0,0,2614,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4267,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 16:26:01','','0000-00-00 00:00:00',0),(4363,0,0,'H','2526','','',4363,0,0,'2025-11-15',3599,2604,0,0,2547,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',4268,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-18 16:48:00','','0000-00-00 00:00:00',0),(4364,0,0,'H','2526','','',4364,0,0,'2025-11-18',3600,2680,0,0,2615,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4269,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 16:54:48','','0000-00-00 00:00:00',0),(4365,0,0,'H','2526','','',4365,0,0,'2025-11-18',3601,337,0,0,321,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4270,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 16:58:20','','0000-00-00 00:00:00',0),(4366,0,0,'H','2526','','',4366,0,0,'2025-11-18',3602,2681,0,0,2616,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4271,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 17:01:39','','0000-00-00 00:00:00',0),(4367,0,0,'H','2526','','',4367,0,0,'2025-11-18',3603,225,0,0,212,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4272,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 17:03:31','','0000-00-00 00:00:00',0),(4368,0,0,'H','2526','','',4368,0,0,'2025-11-18',3604,2682,0,0,2617,'B',500.00,0.00,'7','ICICI','','63671','','0000-00-00','SCAN','',4273,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 17:07:29','','0000-00-00 00:00:00',0),(4369,0,0,'H','2526','','',4369,0,0,'2025-11-18',3600,2680,0,0,2615,'B',4500.00,0.00,'7','ICICI','','00970','','0000-00-00','SCAN','',4274,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 17:19:54','','0000-00-00 00:00:00',0),(4370,0,0,'H','2526','','',4370,0,0,'2025-11-18',3606,2683,0,0,2618,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4275,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-18 17:27:49','','0000-00-00 00:00:00',0),(4371,0,0,'H','2526','','',4371,0,0,'2025-11-18',3607,2067,0,0,2014,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4276,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 17:31:13','','0000-00-00 00:00:00',0),(4372,0,0,'H','2526','','',4372,0,0,'2025-11-18',3608,1763,0,0,2118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4277,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-18 17:49:13','','0000-00-00 00:00:00',0),(4373,0,0,'H','2526','','',4373,0,0,'2025-11-18',3609,2684,0,0,2619,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4278,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 17:55:24','','0000-00-00 00:00:00',0),(4374,0,0,'H','2526','','',4374,0,0,'2025-11-18',2607,2067,0,0,2014,'D',-500.00,0.00,'CSH','','','','','2025-11-18','','',4279,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 17:59:59','','0000-00-00 00:00:00',0),(4375,0,0,'H','2526','','',4375,0,0,'2025-11-18',3607,2067,0,0,2014,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4280,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 18:01:00','','0000-00-00 00:00:00',0),(4376,0,0,'H','2526','','',4376,0,0,'2025-11-18',3613,1173,0,0,1133,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4281,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 18:06:43','','0000-00-00 00:00:00',0),(4377,0,0,'H','2526','','',4377,0,0,'2025-11-18',3615,2688,0,0,2622,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4282,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 18:15:09','','0000-00-00 00:00:00',0),(4378,0,0,'H','2526','','',4378,0,0,'2025-11-18',3613,1173,0,0,1133,'D',-300.00,0.00,'CSH','','','','','2025-11-18','','',4283,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-18 18:16:48','','0000-00-00 00:00:00',0),(4379,0,0,'H','2526','','',4379,0,0,'2025-11-18',3614,2687,0,0,2621,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4284,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-18 18:22:37','','0000-00-00 00:00:00',0),(4380,0,0,'H','2526','','',4380,0,0,'2025-11-18',3616,1246,0,0,1207,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4285,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-18 18:28:22','','0000-00-00 00:00:00',0),(4381,0,0,'H','2526','','',4381,0,0,'2025-11-18',3609,2684,0,0,2619,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',4286,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 18:28:37','','0000-00-00 00:00:00',0),(4382,0,0,'H','2526','','',4382,0,0,'2025-11-18',3617,2689,0,0,2623,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4287,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 18:30:40','','0000-00-00 00:00:00',0),(4383,0,0,'H','2526','','',4383,0,0,'2025-11-18',3618,2677,0,0,2612,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',4288,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 18:35:25','','0000-00-00 00:00:00',0),(4384,0,0,'H','2526','','',4384,0,0,'2025-11-18',3619,2690,0,0,2624,'B',500.00,0.00,'7','BOI','','81444','','0000-00-00','SCAN','',4289,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 18:45:52','','0000-00-00 00:00:00',0),(4385,0,0,'H','2526','','',4385,0,0,'2025-11-18',3617,2689,0,0,2623,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',4290,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-18 18:55:24','','0000-00-00 00:00:00',0),(4386,0,0,'H','2526','','P',4386,0,0,'2025-11-18',3621,2691,0,172,0,'A',15000.00,0.00,'7','ICICI BANK','','8055','','0000-00-00','','',4760,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-18 22:05:05','riya','2025-11-23 12:03:02',0),(4387,0,0,'H','2526','','P',4387,0,0,'2025-11-18',3405,2573,0,160,0,'A',3500.00,0.00,'CSH','','','','','0000-00-00','','',4292,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-18 23:26:22','riya','2025-11-18 23:27:04',0),(4388,0,0,'H','2526','','',4388,0,0,'2025-11-19',3624,2694,0,0,2626,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4293,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 09:33:22','','0000-00-00 00:00:00',0),(4389,0,0,'H','2526','','P',4389,0,0,'2025-11-19',3623,2693,0,173,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',4517,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-19 09:37:55','riya','2025-11-20 13:32:28',0),(4390,0,0,'H','2526','','',4390,0,0,'2025-11-19',3625,2695,0,0,2627,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4294,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 10:05:46','','0000-00-00 00:00:00',0),(4391,0,0,'H','2526','','',4391,0,0,'2025-11-19',3626,2696,0,0,2628,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4295,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 10:12:10','','0000-00-00 00:00:00',0),(4392,0,0,'H','2526','','',4392,0,0,'2025-11-19',3628,19,0,0,19,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4296,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 10:12:57','','0000-00-00 00:00:00',0),(4393,0,0,'H','2526','','',4393,0,0,'2025-11-19',3629,2698,0,0,2630,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4297,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 10:13:47','','0000-00-00 00:00:00',0),(4394,0,0,'H','2526','','',4394,0,0,'2025-11-19',3631,2227,0,0,2172,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4298,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 10:17:42','','0000-00-00 00:00:00',0),(4395,0,0,'H','2526','','P',4395,0,0,'2025-11-19',3630,2699,0,174,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',4915,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-19 10:20:45','vishal','2025-11-24 21:47:11',0),(4396,0,0,'H','2526','','',4396,0,0,'2025-11-19',3633,955,0,0,924,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4299,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 10:21:04','','0000-00-00 00:00:00',0),(4397,0,0,'H','2526','','',4397,0,0,'2025-11-19',3632,2700,0,0,2631,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4300,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-19 10:23:44','','0000-00-00 00:00:00',0),(4398,0,0,'H','2526','','',4398,0,0,'2025-11-19',3634,2701,0,0,2632,'B',500.00,0.00,'7','HDFC','','55951','','0000-00-00','SCAN','',4301,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 10:28:49','','0000-00-00 00:00:00',0),(4399,0,0,'H','2526','','',4399,0,0,'2025-11-19',3635,2360,0,0,2303,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4302,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 10:30:15','','0000-00-00 00:00:00',0),(4400,0,0,'H','2526','','',4400,0,0,'2025-11-19',3636,2702,0,0,2633,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4303,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 10:33:02','','0000-00-00 00:00:00',0),(4401,0,0,'H','2526','','',4401,0,0,'2025-11-19',3637,2026,0,0,1978,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4304,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-19 10:37:31','','0000-00-00 00:00:00',0),(4402,0,0,'H','2526','','',4402,0,0,'2025-11-19',3639,2703,0,0,2634,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4305,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-19 10:47:01','','0000-00-00 00:00:00',0),(4403,0,0,'H','2526','','',4403,0,0,'2025-11-19',3640,2704,0,0,2635,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4306,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 10:49:18','','0000-00-00 00:00:00',0),(4404,0,0,'H','2526','','',4404,0,0,'2025-11-19',3642,2706,0,0,2636,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4307,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 10:58:17','','0000-00-00 00:00:00',0),(4405,0,0,'H','2526','','',4405,0,0,'2025-11-19',3644,2707,0,0,2637,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',4308,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 11:03:29','','0000-00-00 00:00:00',0),(4406,0,0,'H','2526','','',4406,0,0,'2025-11-19',3645,2708,0,0,2638,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4309,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 11:03:39','','0000-00-00 00:00:00',0),(4407,0,0,'H','2526','','',4407,0,0,'2025-11-19',3646,294,0,0,278,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4310,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 11:04:18','','0000-00-00 00:00:00',0),(4408,0,0,'H','2526','','',4408,0,0,'2025-11-19',3647,2173,0,0,2122,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4311,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 11:05:20','','0000-00-00 00:00:00',0),(4409,0,0,'H','2526','','',4409,0,0,'2025-11-19',3648,2709,0,0,2639,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4312,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 11:05:44','','0000-00-00 00:00:00',0),(4410,0,0,'H','2526','','',4410,0,0,'2025-11-19',3626,2696,0,0,2628,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',4313,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 11:07:53','','0000-00-00 00:00:00',0),(4411,0,0,'H','2526','','',4411,0,0,'2025-11-19',3649,2710,0,0,2640,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4314,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 11:11:42','','0000-00-00 00:00:00',0),(4412,0,0,'H','2526','','',4412,0,0,'2025-11-19',3625,2695,0,0,2627,'B',4600.00,0.00,'7','SBI','','39398','','0000-00-00','SCAN','',4315,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 11:18:26','','0000-00-00 00:00:00',0),(4413,0,0,'H','2526','','',4413,0,0,'2025-11-19',3650,417,0,0,395,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4316,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 11:22:59','','0000-00-00 00:00:00',0),(4414,0,0,'H','2526','','',4414,0,0,'2025-11-19',3651,2711,0,0,2641,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4317,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 11:24:53','','0000-00-00 00:00:00',0),(4415,0,0,'H','2526','','',4415,0,0,'2025-11-19',3622,2692,0,0,2625,'B',2300.00,0.00,'CSH','','','','','0000-00-00','','',4318,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-19 11:26:49','','0000-00-00 00:00:00',0),(4416,0,0,'H','2526','','',4416,0,0,'2025-11-19',3652,2712,0,0,2642,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4319,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 11:30:02','','0000-00-00 00:00:00',0),(4417,0,0,'H','2526','','',4417,0,0,'2025-11-19',3653,2713,0,0,2643,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4320,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-19 11:30:19','','0000-00-00 00:00:00',0),(4418,0,0,'H','2526','','',4418,0,0,'2025-11-19',3655,15,0,0,15,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4321,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 11:32:04','','0000-00-00 00:00:00',0),(4419,0,0,'H','2526','','',4419,0,0,'2025-11-19',3656,2036,0,0,1985,'B',300.00,0.00,'7','SBI','','74483','','0000-00-00','SCAN','',4322,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-19 11:33:06','','0000-00-00 00:00:00',0),(4420,0,0,'H','2526','','',4420,0,0,'2025-11-19',3657,1628,0,0,1584,'B',300.00,0.00,'7','sbi','','15360','','0000-00-00','scan ','',4323,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-19 11:35:27','','0000-00-00 00:00:00',0),(4421,0,0,'H','2526','','',4421,0,0,'2025-11-19',3635,2360,0,0,2303,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4324,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 11:36:08','','0000-00-00 00:00:00',0),(4422,0,0,'H','2526','','',4422,0,0,'2025-11-19',3658,2715,0,0,2645,'B',500.00,0.00,'7','SBI','','36600','','0000-00-00','SCAN','',4325,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-19 11:41:16','','0000-00-00 00:00:00',0),(4423,0,0,'H','2526','','',4423,0,0,'2025-11-19',3659,2716,0,0,2646,'B',400.00,0.00,'7','HDFC BANK','','34226','','0000-00-00','scan ','',4326,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 11:45:27','','0000-00-00 00:00:00',0),(4424,0,0,'H','2526','','',4424,0,0,'2025-11-19',3660,2717,0,0,2647,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4327,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 11:50:46','','0000-00-00 00:00:00',0),(4425,0,0,'H','2526','','',4425,0,0,'2025-11-19',3661,2718,0,0,2648,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4328,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 11:52:43','','0000-00-00 00:00:00',0),(4426,0,0,'H','2526','','',4426,0,0,'2025-11-19',3662,1313,0,0,1274,'B',400.00,0.00,'7','SBI BANK','','31477','','0000-00-00','scan','',4329,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 11:54:31','','0000-00-00 00:00:00',0),(4427,0,0,'H','2526','','',4427,0,0,'2025-11-19',3663,2719,0,0,2649,'B',500.00,0.00,'7','INDIAN BANK','','31787','','0000-00-00','SCAN','',4330,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 11:55:10','','0000-00-00 00:00:00',0),(4428,0,0,'H','2526','','',4428,0,0,'2025-11-19',3658,2715,0,0,2645,'B',1200.00,0.00,'7','SBI','','21169','','0000-00-00','SCAN','',4331,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-19 11:56:21','','0000-00-00 00:00:00',0),(4429,0,0,'H','2526','','',4429,0,0,'2025-11-19',3664,2720,0,0,2650,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4332,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 11:56:55','','0000-00-00 00:00:00',0),(4430,0,0,'H','2526','','',4430,0,0,'2025-11-19',3665,2721,0,0,2651,'B',500.00,0.00,'7','CBOI','','24681','','0000-00-00','SCAN','',4333,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 12:00:49','','0000-00-00 00:00:00',0),(4431,0,0,'H','2526','','',4431,0,0,'2025-11-19',3666,2722,0,0,2652,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4334,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-19 12:01:40','','0000-00-00 00:00:00',0),(4432,0,0,'H','2526','','',4432,0,0,'2025-11-19',3648,2709,0,0,2639,'B',6200.00,0.00,'7','SBI','','54962','','0000-00-00','SCAN','',4335,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 12:02:55','','0000-00-00 00:00:00',0),(4433,0,0,'H','2526','','',4433,0,0,'2025-11-19',3667,2723,0,0,2653,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4336,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-19 12:04:42','','0000-00-00 00:00:00',0),(4434,0,0,'H','2526','','',4434,0,0,'2025-11-19',3668,2724,0,0,2654,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',4337,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 12:05:02','','0000-00-00 00:00:00',0),(4435,0,0,'H','2526','','',4435,0,0,'2025-11-19',3671,2726,0,0,2656,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4338,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 12:09:51','','0000-00-00 00:00:00',0),(4436,0,0,'H','2526','','',4436,0,0,'2025-11-19',3667,2723,0,0,2653,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4339,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-19 12:10:53','','0000-00-00 00:00:00',0),(4437,0,0,'H','2526','','',4437,0,0,'2025-11-19',3672,2727,0,0,2657,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4340,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 12:12:13','','0000-00-00 00:00:00',0),(4438,0,0,'H','2526','','',4438,0,0,'2025-11-19',3673,1229,0,0,1190,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4341,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 12:13:11','','0000-00-00 00:00:00',0),(4439,0,0,'H','2526','','',4439,0,0,'2025-11-19',3677,2729,0,0,2659,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4343,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-19 12:31:06','','0000-00-00 00:00:00',0),(4440,0,0,'H','2526','','P',4440,0,0,'2025-11-19',3595,2676,0,170,0,'A',6000.00,0.00,'CRD','SBI','','3211','','0000-00-00','CARD','',4615,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-19 12:31:38','vishal','2025-11-21 11:56:17',0),(4441,0,0,'H','2526','','',4441,0,0,'2025-11-19',3676,2728,0,0,2658,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4345,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 12:34:55','','0000-00-00 00:00:00',0),(4442,0,0,'H','2526','','',4442,0,0,'2025-11-19',3678,1495,0,0,1454,'B',400.00,0.00,'7','HDFC BANK','','69583','','0000-00-00','scan ','',4346,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 12:35:20','','0000-00-00 00:00:00',0),(4443,0,0,'H','2526','','',4443,0,0,'2025-11-19',3679,2730,0,0,2660,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4347,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 12:40:32','','0000-00-00 00:00:00',0),(4444,0,0,'H','2526','','',4444,0,0,'2025-11-19',3680,1095,0,0,1125,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4348,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-19 12:43:59','','0000-00-00 00:00:00',0),(4445,0,0,'H','2526','','',4445,0,0,'2025-11-19',3664,2720,0,0,2650,'B',5600.00,0.00,'CSH','','','','','0000-00-00','','',4349,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 12:47:13','','0000-00-00 00:00:00',0),(4446,0,0,'H','2526','','',4446,0,0,'2025-11-19',3682,632,0,0,602,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4350,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 12:49:59','','0000-00-00 00:00:00',0),(4447,0,0,'H','2526','','',4447,0,0,'2025-11-19',3668,2724,0,0,2654,'D',-700.00,0.00,'CSH','','','','','2025-11-19','','',4351,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 12:53:56','','0000-00-00 00:00:00',0),(4448,0,0,'H','2526','','',4448,0,0,'2025-11-19',3668,2724,0,0,2654,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4352,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 12:54:53','','0000-00-00 00:00:00',0),(4449,0,0,'H','2526','','',4449,0,0,'2025-11-19',3662,1313,0,0,1274,'B',300.00,0.00,'7','sbi','','82584','','0000-00-00','scan','',4353,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 13:09:05','','0000-00-00 00:00:00',0),(4450,0,0,'H','2526','','',4450,0,0,'2025-11-19',3683,1346,0,0,1307,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4354,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-19 13:14:13','','0000-00-00 00:00:00',0),(4451,0,0,'H','2526','','',4451,0,0,'2025-11-19',3672,2727,0,0,2657,'B',4400.00,0.00,'CSH','','','','','0000-00-00','','',4355,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 13:14:22','','0000-00-00 00:00:00',0),(4452,0,0,'H','2526','','',4452,0,0,'2025-11-19',3684,2384,0,0,2662,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4356,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-19 13:18:58','','0000-00-00 00:00:00',0),(4453,0,0,'H','2526','','',4453,0,0,'2025-11-19',3685,962,0,0,931,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4357,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 13:32:04','','0000-00-00 00:00:00',0),(4454,0,0,'H','2526','','',4454,0,0,'2025-11-19',3642,2706,0,0,2636,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',4358,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 13:33:16','','0000-00-00 00:00:00',0),(4455,0,0,'H','2526','','P',4455,0,0,'2025-11-19',3517,2633,0,165,0,'A',50000.00,0.00,'CSH','','','','','0000-00-00','','',5108,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-19 13:44:38','riya','2025-11-26 15:00:29',0),(4456,0,0,'H','2526','','',4456,0,0,'2025-11-19',3681,2731,0,0,2661,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4359,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 13:51:18','','0000-00-00 00:00:00',0),(4457,0,0,'H','2526','','P',4457,0,0,'2025-11-19',3473,2611,0,163,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',4763,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-19 13:54:27','riya','2025-11-23 13:52:09',0),(4458,0,0,'H','2526','','',4458,0,0,'2025-11-19',3680,1095,0,0,1125,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',4360,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 13:56:00','','0000-00-00 00:00:00',0),(4459,0,0,'H','2526','','',4459,0,0,'2025-11-19',3679,2730,0,0,2660,'D',-900.00,0.00,'CSH','','','','','2025-11-19','','',4361,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 13:58:35','','0000-00-00 00:00:00',0),(4460,0,0,'H','2526','','',4460,0,0,'2025-11-19',3679,2730,0,0,2660,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4362,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 14:00:04','','0000-00-00 00:00:00',0),(4461,0,0,'H','2526','','P',4461,0,0,'2025-11-19',3348,2539,0,159,0,'A',8000.00,0.00,'CSH','','','','','0000-00-00','','',4739,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-19 14:14:48','riya','2025-11-22 13:21:33',0),(4462,0,0,'H','2526','','',4462,0,0,'2025-11-19',3669,2725,0,0,2655,'B',7000.00,0.00,'7','SBI BANK','','45227','','0000-00-00','scan','',4364,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-19 14:51:18','','0000-00-00 00:00:00',0),(4463,0,0,'H','2526','','',4463,0,0,'2025-11-19',3675,2407,0,0,2351,'B',7000.00,0.00,'7','SBI BANK','','51812','','0000-00-00','scan ','',4365,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-19 14:52:15','','0000-00-00 00:00:00',0),(4464,0,0,'H','2526','','',4464,0,0,'2025-11-19',3686,1366,0,0,1326,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4366,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 15:55:16','','0000-00-00 00:00:00',0),(4465,0,0,'H','2526','','',4465,0,0,'2025-11-19',3687,1173,0,0,1133,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4367,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-19 16:36:50','','0000-00-00 00:00:00',0),(4466,0,0,'H','2526','','',4466,0,0,'2025-11-19',3693,2736,0,0,2667,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4368,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 16:58:19','','0000-00-00 00:00:00',0),(4467,0,0,'H','2526','','',4467,0,0,'2025-11-19',3694,1598,0,0,1555,'B',500.00,0.00,'7','sbi','','67157','','0000-00-00','SCAN','',4369,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 17:10:05','','0000-00-00 00:00:00',0),(4468,0,0,'H','2526','','',4468,0,0,'2025-11-19',3695,1778,0,0,1734,'B',1000.00,0.00,'7','bob','','46591','','0000-00-00','SCAN','',4370,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 17:12:20','','0000-00-00 00:00:00',0),(4469,0,0,'H','2526','','',4469,0,0,'2025-11-19',3696,2590,0,0,2533,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4371,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 17:16:08','','0000-00-00 00:00:00',0),(4470,0,0,'H','2526','','',4470,0,0,'2025-11-19',3697,2737,0,0,2668,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4372,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 17:17:50','','0000-00-00 00:00:00',0),(4471,0,0,'H','2526','','',4471,0,0,'2025-11-19',3694,1598,0,0,1555,'D',-500.00,0.00,'7','SBI','','67157','','2025-11-19','SCAN','',4373,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 17:20:35','','0000-00-00 00:00:00',0),(4472,0,0,'H','2526','','',4472,0,0,'2025-11-19',3699,2738,0,0,2669,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',4374,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 17:21:55','','0000-00-00 00:00:00',0),(4473,0,0,'H','2526','','',4473,0,0,'2025-11-19',3700,1697,0,0,1652,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4375,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 17:23:06','','0000-00-00 00:00:00',0),(4474,0,0,'H','2526','','',4474,0,0,'2025-11-19',3701,2739,0,0,2670,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4376,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 17:25:48','','0000-00-00 00:00:00',0),(4475,0,0,'H','2526','','',4475,0,0,'2025-11-19',3694,1598,0,0,1555,'B',300.00,0.00,'7','SBI','','67157','','0000-00-00','SCAN','',4377,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 17:27:07','','0000-00-00 00:00:00',0),(4476,0,0,'H','2526','','',4476,0,0,'2025-11-19',3702,2740,0,0,2671,'B',750.00,0.00,'7','BOI BANK','','57528','','0000-00-00','scan ','',4378,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 17:27:29','','0000-00-00 00:00:00',0),(4477,0,0,'H','2526','','',4477,0,0,'2025-11-19',3703,2638,0,0,2577,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',4379,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 17:30:48','','0000-00-00 00:00:00',0),(4478,0,0,'H','2526','','',4478,0,0,'2025-11-19',3705,2367,0,0,2310,'B',300.00,0.00,'7','ICICI BANK','','62193','','0000-00-00','scan ','',4380,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 17:31:47','','0000-00-00 00:00:00',0),(4479,0,0,'H','2526','','',4479,0,0,'2025-11-19',3704,2741,0,0,2672,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4381,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 17:32:51','','0000-00-00 00:00:00',0),(4480,0,0,'H','2526','','',4480,0,0,'2025-11-19',3706,2742,0,0,2673,'B',750.00,0.00,'7','BOI BANK','','63989','','0000-00-00','scan ','',4382,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 17:35:16','','0000-00-00 00:00:00',0),(4481,0,0,'H','2526','','',4481,0,0,'2025-11-19',3708,2744,0,0,2675,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4383,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 17:38:41','','0000-00-00 00:00:00',0),(4482,0,0,'H','2526','','',4482,0,0,'2025-11-19',3709,2068,0,0,2015,'B',500.00,0.00,'7','yash bank','','36427','','0000-00-00','SCAN','',4384,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 17:40:09','','0000-00-00 00:00:00',0),(4483,0,0,'H','2526','','',4483,0,0,'2025-11-19',3707,2743,0,0,2674,'B',500.00,0.00,'7','kotak','','17700','','0000-00-00','scan     ','',4385,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 17:40:35','','0000-00-00 00:00:00',0),(4484,0,0,'H','2526','','',4484,0,0,'2025-11-19',3710,2745,0,0,2676,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4386,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 17:43:52','','0000-00-00 00:00:00',0),(4485,0,0,'H','2526','','',4485,0,0,'2025-11-19',3711,2746,0,0,2677,'B',500.00,0.00,'7','bob','','29934','','0000-00-00','SCAN','',4387,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 17:44:29','','0000-00-00 00:00:00',0),(4486,0,0,'H','2526','','',4486,0,0,'2025-11-19',3627,2697,0,0,2629,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4388,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 17:51:00','','0000-00-00 00:00:00',0),(4487,0,0,'H','2526','','',4487,0,0,'2025-11-19',3713,2747,0,0,2678,'B',800.00,0.00,'7','union bank','','95452','','0000-00-00','SCAN','',4389,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 17:52:26','','0000-00-00 00:00:00',0),(4488,0,0,'H','2526','','',4488,0,0,'2025-11-19',3715,378,0,0,362,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4390,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 17:53:31','','0000-00-00 00:00:00',0),(4489,0,0,'H','2526','','',4489,0,0,'2025-11-19',3717,2749,0,0,2680,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4391,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 17:55:55','','0000-00-00 00:00:00',0),(4490,0,0,'H','2526','','',4490,0,0,'2025-11-19',3716,2748,0,0,2679,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4392,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 17:56:17','','0000-00-00 00:00:00',0),(4491,0,0,'H','2526','','',4491,0,0,'2025-11-19',3718,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4393,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 17:57:23','','0000-00-00 00:00:00',0),(4492,0,0,'H','2526','','',4492,0,0,'2025-11-19',3720,2751,0,0,2682,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4394,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-19 17:57:59','','0000-00-00 00:00:00',0),(4493,0,0,'H','2526','','',4493,0,0,'2025-11-19',3719,2750,0,0,2681,'B',500.00,0.00,'7','bob','','70369','','0000-00-00','scan     ','',4395,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 17:58:01','','0000-00-00 00:00:00',0),(4494,0,0,'H','2526','','',4494,0,0,'2025-11-19',3721,2752,0,0,2683,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4396,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 17:59:09','','0000-00-00 00:00:00',0),(4495,0,0,'H','2526','','',4495,0,0,'2025-11-19',3720,2751,0,0,2682,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4397,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-19 18:00:39','','0000-00-00 00:00:00',0),(4496,0,0,'H','2526','','',4496,0,0,'2025-11-19',3724,2753,0,0,2684,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4398,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 18:03:30','','0000-00-00 00:00:00',0),(4497,0,0,'H','2526','','',4497,0,0,'2025-11-19',3723,664,0,0,634,'B',400.00,0.00,'2','sbi','74423','74423','','0000-00-00','CARD','',4399,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 18:03:32','','0000-00-00 00:00:00',0),(4498,0,0,'H','2526','','',4498,0,0,'2025-11-19',3725,2754,0,0,2685,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4400,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 18:04:49','','0000-00-00 00:00:00',0),(4499,0,0,'H','2526','','',4499,0,0,'2025-11-19',3713,2747,0,0,2678,'B',2500.00,0.00,'7','union bank','','76712','','0000-00-00','SCAN','',4401,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 18:06:29','','0000-00-00 00:00:00',0),(4500,0,0,'H','2526','','',4500,0,0,'2025-11-19',3726,2755,0,0,2686,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',4402,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 18:10:32','','0000-00-00 00:00:00',0),(4501,0,0,'H','2526','','',4501,0,0,'2025-11-19',3722,2007,0,0,1959,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4403,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-19 18:11:02','','0000-00-00 00:00:00',0),(4502,0,0,'H','2526','','',4502,0,0,'2025-11-19',3727,2756,0,0,2687,'B',750.00,0.00,'7','HDFC BANK','','28980','','0000-00-00','scan ','',4404,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 18:13:04','','0000-00-00 00:00:00',0),(4503,0,0,'H','2526','','',4503,0,0,'2025-11-19',3698,2629,0,0,2569,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4405,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 18:13:08','','0000-00-00 00:00:00',0),(4504,0,0,'H','2526','','',4504,0,0,'2025-11-19',3698,2629,0,0,2569,'D',-100.00,0.00,'CSH','','','','','2025-11-19','','',4406,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 18:13:57','','0000-00-00 00:00:00',0),(4505,0,0,'H','2526','','',4505,0,0,'2025-11-19',3698,2629,0,0,2569,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4407,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 18:14:41','','0000-00-00 00:00:00',0),(4506,0,0,'H','2526','','',4506,0,0,'2025-11-19',3728,2196,0,0,2144,'B',300.00,0.00,'7','HDFC','','83642','','0000-00-00','SCAN','',4408,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-19 18:15:57','','0000-00-00 00:00:00',0),(4507,0,0,'H','2526','','',4507,0,0,'2025-11-19',3729,2757,0,0,2688,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4409,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 18:17:36','','0000-00-00 00:00:00',0),(4508,0,0,'H','2526','','',4508,0,0,'2025-11-19',3730,1245,0,0,2095,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4410,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 18:20:40','','0000-00-00 00:00:00',0),(4509,0,0,'H','2526','','',4509,0,0,'2025-11-19',3731,2758,0,0,2689,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4411,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 18:23:07','','0000-00-00 00:00:00',0),(4510,0,0,'H','2526','','',4510,0,0,'2025-11-19',3732,2759,0,0,2690,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4412,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 18:27:10','','0000-00-00 00:00:00',0),(4511,0,0,'H','2526','','',4511,0,0,'2025-11-19',3734,2001,0,0,1953,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4413,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 18:28:26','','0000-00-00 00:00:00',0),(4512,0,0,'H','2526','','',4512,0,0,'2025-11-19',3733,2253,0,0,2196,'B',500.00,0.00,'7','icici','','70180','','0000-00-00','scan     ','',4414,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 18:28:49','','0000-00-00 00:00:00',0),(4513,0,0,'H','2526','','P',4513,0,0,'2025-11-19',3474,2612,0,164,0,'A',8000.00,0.00,'CRD','AXIS BANK','','4422','','0000-00-00','','',4577,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-19 18:28:52','vishal','2025-11-20 20:58:52',0),(4514,0,0,'H','2526','','',4514,0,0,'2025-11-19',3735,2760,0,0,2691,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4415,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 18:29:37','','0000-00-00 00:00:00',0),(4515,0,0,'H','2526','','P',4515,0,0,'2025-11-19',3553,2651,0,166,0,'A',2155.00,0.00,'7','HDFC BANK','','2106','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-19 18:32:03','vishal','2025-11-19 18:32:03',0),(4516,0,0,'H','2526','','',4516,0,0,'2025-11-19',3737,1562,0,0,1521,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4416,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 18:32:45','','0000-00-00 00:00:00',0),(4517,0,0,'H','2526','','',4517,0,0,'2025-11-19',3738,2761,0,0,2692,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4417,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 18:33:12','','0000-00-00 00:00:00',0),(4518,0,0,'H','2526','','',4518,0,0,'2025-11-19',3712,551,0,0,525,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4418,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 18:33:31','','0000-00-00 00:00:00',0),(4519,0,0,'H','2526','','',4519,0,0,'2025-11-19',3739,1015,0,0,982,'B',500.00,0.00,'7','hdfc','','52951','','0000-00-00','SCAN','',4419,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 18:40:30','','0000-00-00 00:00:00',0),(4520,0,0,'H','2526','','',4520,0,0,'2025-11-19',3740,2762,0,0,2693,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4420,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 18:42:57','','0000-00-00 00:00:00',0),(4521,0,0,'H','2526','','',4521,0,0,'2025-11-19',3741,2197,0,0,2145,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',4421,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 18:45:17','','0000-00-00 00:00:00',0),(4522,0,0,'H','2526','','',4522,0,0,'2025-11-19',3743,2763,0,0,2694,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4422,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 18:48:13','','0000-00-00 00:00:00',0),(4523,0,0,'H','2526','','',4523,0,0,'2025-11-19',3744,2764,0,0,2695,'B',500.00,0.00,'7','rnsb','','66878','','0000-00-00','scan     ','',4423,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 18:50:41','','0000-00-00 00:00:00',0),(4524,0,0,'H','2526','','',4524,0,0,'2025-11-19',3745,2765,0,0,2696,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4424,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 18:55:24','','0000-00-00 00:00:00',0),(4525,0,0,'H','2526','','',4525,0,0,'2025-11-19',3714,990,0,0,957,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4425,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 18:56:50','','0000-00-00 00:00:00',0),(4526,0,0,'H','2526','','',4526,0,0,'2025-11-19',3746,2766,0,0,2697,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4426,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 18:57:02','','0000-00-00 00:00:00',0);
INSERT INTO `receipt` VALUES (4527,0,0,'H','2526','','',4527,0,0,'2025-11-19',3748,2768,0,0,2699,'B',750.00,0.00,'7','axis bank','','68870','','0000-00-00','scan     ','',4427,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 19:01:24','','0000-00-00 00:00:00',0),(4528,0,0,'H','2526','','',4528,0,0,'2025-11-19',3749,2769,0,0,2700,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4428,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 19:02:10','','0000-00-00 00:00:00',0),(4529,0,0,'H','2526','','',4529,0,0,'2025-11-19',3720,2751,0,0,2682,'B',650.00,0.00,'CSH','','','','','0000-00-00','','',4429,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-19 19:02:34','','0000-00-00 00:00:00',0),(4530,0,0,'H','2526','','',4530,0,0,'2025-11-19',3750,2770,0,0,2701,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4430,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-19 19:13:38','','0000-00-00 00:00:00',0),(4531,0,0,'H','2526','','',4531,0,0,'2025-11-19',3751,2771,0,0,2702,'B',750.00,0.00,'7','BOI BANK','','75040','','0000-00-00','scan ','',4431,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 19:17:18','','0000-00-00 00:00:00',0),(4532,0,0,'H','2526','','',4532,0,0,'2025-11-19',3740,2762,0,0,2693,'D',-800.00,0.00,'CSH','','','','','2025-11-19','','',4432,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 19:18:55','','0000-00-00 00:00:00',0),(4533,0,0,'H','2526','','',4533,0,0,'2025-11-19',3740,2762,0,0,2693,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',4433,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-19 19:19:36','','0000-00-00 00:00:00',0),(4534,0,0,'H','2526','','',4534,0,0,'2025-11-19',3750,2770,0,0,2701,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4434,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-19 19:27:10','','0000-00-00 00:00:00',0),(4535,0,0,'H','2526','','',4535,0,0,'2025-11-19',3752,1905,0,0,1860,'B',400.00,0.00,'7','SBI BANK','','85736','','0000-00-00','scan ','',4435,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 19:28:35','','0000-00-00 00:00:00',0),(4536,0,0,'H','2526','','',4536,0,0,'2025-11-19',3725,2754,0,0,2685,'D',-750.00,0.00,'CSH','','','','','2025-11-19','','',4436,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 19:33:40','','0000-00-00 00:00:00',0),(4537,0,0,'H','2526','','',4537,0,0,'2025-11-19',3725,2754,0,0,2685,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4437,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 19:35:10','','0000-00-00 00:00:00',0),(4538,0,0,'H','2526','','',4538,0,0,'2025-11-19',3753,2772,0,0,2703,'B',100.00,0.00,'7','ICICI BANK','','12431','','0000-00-00','scan ','',4438,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 19:50:38','','0000-00-00 00:00:00',0),(4539,0,0,'H','2526','','',4539,0,0,'2025-11-19',3754,2773,0,0,2704,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4439,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-19 19:52:34','','0000-00-00 00:00:00',0),(4540,0,0,'H','2526','','',4540,0,0,'2025-11-19',3578,2347,0,0,2290,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',4440,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-19 20:14:10','','0000-00-00 00:00:00',0),(4541,0,0,'H','2526','','',4541,0,0,'2025-11-20',3756,2774,0,0,2705,'B',1100.00,0.00,'7','standrad bank','','94863','','0000-00-00','SCAN','',4441,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 08:49:21','','0000-00-00 00:00:00',0),(4542,0,0,'H','2526','','',4542,0,0,'2025-11-20',3757,2775,0,0,2706,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4442,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 09:25:08','','0000-00-00 00:00:00',0),(4543,0,0,'H','2526','','',4543,0,0,'2025-11-20',3758,1284,0,0,1243,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',4443,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 09:28:01','','0000-00-00 00:00:00',0),(4544,0,0,'H','2526','','P',4544,0,0,'2025-11-20',3759,2776,0,176,0,'A',15000.00,0.00,'7','BANK OF BARODA','','114406165317','','0000-00-00','UPI','',4565,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-20 09:39:37','vishal','2025-11-20 19:13:30',0),(4545,0,0,'H','2526','','',4545,0,0,'2025-11-20',3761,2651,0,0,2708,'B',100.00,0.00,'7','HDFC BANK','','76580','','0000-00-00','scan ','',4444,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 09:45:49','','0000-00-00 00:00:00',0),(4546,0,0,'H','2526','','',4546,0,0,'2025-11-20',3762,2778,0,0,2709,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4445,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 09:51:24','','0000-00-00 00:00:00',0),(4547,0,0,'H','2526','','P',4547,0,0,'2025-11-20',3763,2779,0,177,0,'A',15000.00,0.00,'7','IDFC BANK','','569043308505','','0000-00-00','UPI','',4673,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-20 09:56:25','vishal','2025-11-21 19:47:04',0),(4548,0,0,'H','2526','','',4548,0,0,'2025-11-20',3766,2782,0,0,2711,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4446,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 10:10:05','','0000-00-00 00:00:00',0),(4549,0,0,'H','2526','','',4549,0,0,'2025-11-20',3765,2781,0,0,2710,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4447,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-20 10:10:28','','0000-00-00 00:00:00',0),(4550,0,0,'H','2526','','',4550,0,0,'2025-11-20',3767,2783,0,0,2712,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4448,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 10:12:24','','0000-00-00 00:00:00',0),(4551,0,0,'H','2526','','P',4551,0,0,'2025-11-20',3764,2780,0,178,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',6344,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-20 10:14:01','riya','2025-12-06 09:28:53',0),(4552,0,0,'H','2526','','',4552,0,0,'2025-11-20',3768,2784,0,0,2713,'B',900.00,0.00,'7','SBI','','45023','','0000-00-00','SCAN','',4449,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 10:19:32','','0000-00-00 00:00:00',0),(4553,0,0,'H','2526','','',4553,0,0,'2025-11-20',3769,2785,0,0,2714,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4450,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 10:20:14','','0000-00-00 00:00:00',0),(4554,0,0,'H','2526','','',4554,0,0,'2025-11-20',3770,1591,0,0,1548,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4451,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 10:33:14','','0000-00-00 00:00:00',0),(4555,0,0,'H','2526','','',4555,0,0,'2025-11-20',3771,2786,0,0,2715,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4452,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 10:37:58','','0000-00-00 00:00:00',0),(4556,0,0,'H','2526','','',4556,0,0,'2025-11-20',3772,1947,0,0,1899,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4453,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 10:38:53','','0000-00-00 00:00:00',0),(4557,0,0,'H','2526','','',4557,0,0,'2025-11-20',3773,2787,0,0,2716,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4455,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 10:43:46','','0000-00-00 00:00:00',0),(4558,0,0,'H','2526','','',4558,0,0,'2025-11-20',3774,2788,0,0,2717,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4456,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 10:48:29','','0000-00-00 00:00:00',0),(4559,0,0,'H','2526','','',4559,0,0,'2025-11-20',3775,2231,0,0,2176,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4457,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 10:48:47','','0000-00-00 00:00:00',0),(4560,0,0,'H','2526','','',4560,0,0,'2025-11-20',3776,2789,0,0,2718,'B',900.00,0.00,'7','HDFC','','30757','','0000-00-00','SCAN','',4458,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 10:54:03','','0000-00-00 00:00:00',0),(4561,0,0,'H','2526','','',4561,0,0,'2025-11-20',3777,2790,0,0,2719,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4459,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 10:55:55','','0000-00-00 00:00:00',0),(4562,0,0,'H','2526','','',4562,0,0,'2025-11-20',3778,2791,0,0,2720,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4460,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 10:57:10','','0000-00-00 00:00:00',0),(4563,0,0,'H','2526','','',4563,0,0,'2025-11-20',3779,2792,0,0,2721,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4461,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 10:58:10','','0000-00-00 00:00:00',0),(4564,0,0,'H','2526','','',4564,0,0,'2025-11-20',3762,2778,0,0,2709,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',4462,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 10:58:22','','0000-00-00 00:00:00',0),(4565,0,0,'H','2526','','',4565,0,0,'2025-11-20',3781,2794,0,0,2723,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4463,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 11:05:26','','0000-00-00 00:00:00',0),(4566,0,0,'H','2526','','',4566,0,0,'2025-11-20',3783,1759,0,0,1715,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4464,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 11:07:08','','0000-00-00 00:00:00',0),(4567,0,0,'H','2526','','',4567,0,0,'2025-11-20',3782,1961,0,0,1913,'B',500.00,0.00,'7','bob','','11772','','0000-00-00','SCAN','',4465,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 11:07:36','','0000-00-00 00:00:00',0),(4568,0,0,'H','2526','','',4568,0,0,'2025-11-20',3784,575,0,0,549,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4466,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 11:10:15','','0000-00-00 00:00:00',0),(4569,0,0,'H','2526','','',4569,0,0,'2025-11-20',3781,2794,0,0,2723,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',4467,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 11:13:05','','0000-00-00 00:00:00',0),(4570,0,0,'H','2526','','',4570,0,0,'2025-11-20',3768,2784,0,0,2713,'B',4600.00,0.00,'7','SBI','','27786','','0000-00-00','SCAN','',4468,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 11:13:51','','0000-00-00 00:00:00',0),(4571,0,0,'H','2526','','',4571,0,0,'2025-11-20',3786,2795,0,0,2724,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4469,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 11:14:26','','0000-00-00 00:00:00',0),(4572,0,0,'H','2526','','',4572,0,0,'2025-11-20',3785,2385,0,0,2329,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4470,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 11:15:43','','0000-00-00 00:00:00',0),(4573,0,0,'H','2526','','',4573,0,0,'2025-11-20',3760,2777,0,0,2707,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4471,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 11:16:47','','0000-00-00 00:00:00',0),(4574,0,0,'H','2526','','',4574,0,0,'2025-11-20',3787,2796,0,0,2725,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4472,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 11:20:23','','0000-00-00 00:00:00',0),(4575,0,0,'H','2526','','',4575,0,0,'2025-11-20',3790,2499,0,0,2728,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4473,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 11:25:25','','0000-00-00 00:00:00',0),(4576,0,0,'H','2526','','',4576,0,0,'2025-11-20',3767,2783,0,0,2712,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',4475,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 11:31:04','','0000-00-00 00:00:00',0),(4577,0,0,'H','2526','','',4577,0,0,'2025-11-20',3792,2343,0,0,2286,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4476,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 11:31:12','','0000-00-00 00:00:00',0),(4578,0,0,'H','2526','','',4578,0,0,'2025-11-20',3793,2799,0,0,2729,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4477,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 11:33:32','','0000-00-00 00:00:00',0),(4579,0,0,'H','2526','','',4579,0,0,'2025-11-20',3760,2777,0,0,2707,'B',350.00,0.00,'CSH','','','','','0000-00-00','','',4478,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 11:35:20','','0000-00-00 00:00:00',0),(4580,0,0,'H','2526','','',4580,0,0,'2025-11-20',3794,2800,0,0,2730,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4480,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 11:39:42','','0000-00-00 00:00:00',0),(4581,0,0,'H','2526','','',4581,0,0,'2025-11-20',3769,2785,0,0,2714,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',4481,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 11:40:01','','0000-00-00 00:00:00',0),(4582,0,0,'H','2526','','',4582,0,0,'2025-11-20',3795,2801,0,0,2731,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4482,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 11:46:33','','0000-00-00 00:00:00',0),(4583,0,0,'H','2526','','',4583,0,0,'2025-11-20',3796,1616,0,0,2528,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4483,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-20 11:47:40','','0000-00-00 00:00:00',0),(4584,0,0,'H','2526','','',4584,0,0,'2025-11-20',3765,2781,0,0,2710,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4484,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-20 11:47:57','','0000-00-00 00:00:00',0),(4585,0,0,'H','2526','','',4585,0,0,'2025-11-20',3798,2802,0,0,2732,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4485,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 11:54:27','','0000-00-00 00:00:00',0),(4586,0,0,'H','2526','','',4586,0,0,'2025-11-20',3799,2803,0,0,2733,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4486,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 11:54:59','','0000-00-00 00:00:00',0),(4587,0,0,'H','2526','','',4587,0,0,'2025-11-20',3801,2804,0,0,2734,'B',750.00,0.00,'7','KOTAK BANK','','06080','','0000-00-00','scan ','',4487,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 12:00:05','','0000-00-00 00:00:00',0),(4588,0,0,'H','2526','','',4588,0,0,'2025-11-20',3802,2805,0,0,2735,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',4488,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 12:01:56','','0000-00-00 00:00:00',0),(4589,0,0,'H','2526','','P',4589,0,0,'2025-11-20',2811,2201,0,143,0,'A',25000.00,0.00,'2','BANK OF BARODA','','E800','','0000-00-00','','',4510,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-20 12:03:17','riya','2025-11-20 12:45:24',0),(4590,0,0,'H','2526','','',4590,0,0,'2025-11-20',3803,2806,0,0,2736,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4489,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 12:07:30','','0000-00-00 00:00:00',0),(4591,0,0,'H','2526','','',4591,0,0,'2025-11-20',3776,2789,0,0,2718,'B',6000.00,0.00,'7','HDFC','','29327','','0000-00-00','SCAN','',4490,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 12:10:02','','0000-00-00 00:00:00',0),(4592,0,0,'H','2526','','P',4592,0,0,'2025-11-20',3623,2693,0,173,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',4517,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-20 12:10:16','riya','2025-11-20 13:32:28',0),(4593,0,0,'H','2526','','',4593,0,0,'2025-11-20',3804,2807,0,0,2737,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4492,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 12:12:38','','0000-00-00 00:00:00',0),(4594,0,0,'H','2526','','',4594,0,0,'2025-11-20',3805,2808,0,0,2738,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4493,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 12:13:02','','0000-00-00 00:00:00',0),(4595,0,0,'H','2526','','',4595,0,0,'2025-11-20',3806,2809,0,0,2739,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4494,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 12:15:26','','0000-00-00 00:00:00',0),(4596,0,0,'H','2526','','',4596,0,0,'2025-11-20',3807,2810,0,0,2740,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4496,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 12:22:48','','0000-00-00 00:00:00',0),(4597,0,0,'H','2526','','',4597,0,0,'2025-11-20',3808,2811,0,0,2741,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4497,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 12:24:12','','0000-00-00 00:00:00',0),(4598,0,0,'H','2526','','',4598,0,0,'2025-11-20',3809,2812,0,0,2742,'B',750.00,0.00,'7','KOTAK BANK','','87114','','0000-00-00','scan ','',4498,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 12:26:54','','0000-00-00 00:00:00',0),(4599,0,0,'H','2526','','',4599,0,0,'2025-11-20',3793,2799,0,0,2729,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',4499,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 12:27:52','','0000-00-00 00:00:00',0),(4600,0,0,'H','2526','','',4600,0,0,'2025-11-20',3810,1674,0,0,1629,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4500,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 12:27:58','','0000-00-00 00:00:00',0),(4601,0,0,'H','2526','','',4601,0,0,'2025-11-20',3811,2813,0,0,2743,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4501,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 12:29:22','','0000-00-00 00:00:00',0),(4602,0,0,'H','2526','','',4602,0,0,'2025-11-20',3812,1326,0,0,1287,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4502,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 12:29:43','','0000-00-00 00:00:00',0),(4603,0,0,'H','2526','','',4603,0,0,'2025-11-20',3800,645,0,0,615,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4503,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 12:30:15','','0000-00-00 00:00:00',0),(4604,0,0,'H','2526','','',4604,0,0,'2025-11-20',3813,2193,0,0,2142,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4504,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-20 12:31:27','','0000-00-00 00:00:00',0),(4605,0,0,'H','2526','','',4605,0,0,'2025-11-20',3771,2786,0,0,2715,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',4505,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 12:32:10','','0000-00-00 00:00:00',0),(4606,0,0,'H','2526','','',4606,0,0,'2025-11-20',3814,391,0,0,373,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4507,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 12:38:53','','0000-00-00 00:00:00',0),(4607,0,0,'H','2526','','',4607,0,0,'2025-11-20',3817,204,0,0,191,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4508,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 12:44:03','','0000-00-00 00:00:00',0),(4608,0,0,'H','2526','','',4608,0,0,'2025-11-20',3816,2237,0,0,2182,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4509,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 12:44:03','','0000-00-00 00:00:00',0),(4609,0,0,'H','2526','','',4609,0,0,'2025-11-05',2525,2010,0,0,1962,'B',50.00,0.00,'7','KOTAK BANK','','11776','','2025-11-05','','',3011,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-20 12:53:59','','0000-00-00 00:00:00',0),(4610,0,0,'H','2526','','',4610,0,0,'2025-11-01',2198,1775,0,0,1731,'B',500.00,0.00,'7','ujjivan bank','','71053','','2025-11-01','','',2611,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-20 12:59:09','','0000-00-00 00:00:00',0),(4611,0,0,'H','2526','','',4611,0,0,'2025-11-20',3818,2133,0,0,2079,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4511,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 12:59:20','','0000-00-00 00:00:00',0),(4612,0,0,'H','2526','','',4612,0,0,'2025-11-20',3801,2804,0,0,2734,'B',400.00,0.00,'7','KOTAK BANK','','13630','','0000-00-00','scan ','',4512,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-20 13:04:34','','0000-00-00 00:00:00',0),(4613,0,0,'H','2526','','',4613,0,0,'2025-11-20',3807,2810,0,0,2740,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',4513,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 13:06:41','','0000-00-00 00:00:00',0),(4614,0,0,'H','2526','','P',4614,0,0,'2025-11-20',3594,2675,0,169,0,'A',11300.00,0.00,'CRD','BANK OF BARODA','','4423','','0000-00-00','CARD','',4516,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-20 13:07:33','riya','2025-11-20 13:29:52',0),(4615,0,0,'H','2526','','',4615,0,0,'2025-11-20',3819,1633,0,0,1589,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4515,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 13:12:51','','0000-00-00 00:00:00',0),(4616,0,0,'H','2526','','P',4616,0,0,'2025-11-20',3468,2607,0,161,0,'A',9740.00,0.00,'CSH','','','','','0000-00-00','','',4521,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-20 13:17:32','riya','2025-11-20 13:39:32',0),(4617,0,0,'H','2526','','P',4617,0,0,'2025-11-20',3591,2673,0,168,0,'A',7800.00,0.00,'CSH','','','','','0000-00-00','','',4518,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-20 13:24:10','riya','2025-11-20 13:34:48',0),(4618,0,0,'H','2526','','',4618,0,0,'2025-11-20',3804,2807,0,0,2737,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',4519,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 13:36:36','','0000-00-00 00:00:00',0),(4619,0,0,'H','2526','','',4619,0,0,'2025-11-20',3756,2774,0,0,2705,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4520,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-20 13:38:03','','0000-00-00 00:00:00',0),(4620,0,0,'H','2526','','',4620,0,0,'2025-11-20',3818,2133,0,0,2079,'B',3900.00,0.00,'7','icici','','17874','','0000-00-00','SCAN','',4522,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 13:50:56','','0000-00-00 00:00:00',0),(4621,0,0,'H','2526','','P',4621,0,0,'2025-11-20',3566,2660,0,167,0,'A',27000.00,0.00,'CSH','','','','','0000-00-00','','',4524,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-20 15:08:56','riya','2025-11-20 15:10:44',0),(4622,0,0,'H','2526','','',4622,0,0,'2025-11-20',3820,2814,0,0,2744,'B',900.00,0.00,'7','BOB BANK','','48520','','0000-00-00','scan ','',4525,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-20 16:33:45','','0000-00-00 00:00:00',0),(4623,0,0,'H','2526','','',4623,0,0,'2025-11-20',3821,2787,0,0,2716,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',4526,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-20 16:38:43','','0000-00-00 00:00:00',0),(4624,0,0,'H','2526','','',4624,0,0,'2025-11-20',3822,2815,0,0,2745,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4527,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-20 16:47:52','','0000-00-00 00:00:00',0),(4625,0,0,'H','2526','','',4625,0,0,'2025-11-20',3823,2816,0,0,2746,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4528,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 16:52:24','','0000-00-00 00:00:00',0),(4626,0,0,'H','2526','','',4626,0,0,'2025-11-20',3824,2817,0,0,2747,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',4529,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 16:54:51','','0000-00-00 00:00:00',0),(4627,0,0,'H','2526','','',4627,0,0,'2025-11-20',3826,2818,0,0,2748,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4530,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 17:16:01','','0000-00-00 00:00:00',0),(4628,0,0,'H','2526','','',4628,0,0,'2025-11-20',3825,2056,0,0,2005,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4531,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 17:16:02','','0000-00-00 00:00:00',0),(4629,0,0,'H','2526','','',4629,0,0,'2025-11-20',3827,2819,0,0,2749,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4532,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 17:18:28','','0000-00-00 00:00:00',0),(4630,0,0,'H','2526','','',4630,0,0,'2025-11-20',3828,2187,0,0,2136,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4533,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 17:21:03','','0000-00-00 00:00:00',0),(4631,0,0,'H','2526','','',4631,0,0,'2025-11-20',3829,1386,0,0,1346,'B',500.00,0.00,'7','sbi','','63438','','0000-00-00','scan','',4534,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 17:24:57','','0000-00-00 00:00:00',0),(4632,0,0,'H','2526','','',4632,0,0,'2025-11-20',3823,2816,0,0,2746,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',4535,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 17:26:46','','0000-00-00 00:00:00',0),(4633,0,0,'H','2526','','',4633,0,0,'2025-11-20',3830,2820,0,0,2750,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4536,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-20 17:28:07','','0000-00-00 00:00:00',0),(4634,0,0,'H','2526','','',4634,0,0,'2025-11-20',3831,2821,0,0,2751,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4537,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 17:33:25','','0000-00-00 00:00:00',0),(4635,0,0,'H','2526','','',4635,0,0,'2025-11-20',3832,2822,0,0,2752,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4538,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 17:39:59','','0000-00-00 00:00:00',0),(4636,0,0,'H','2526','','',4636,0,0,'2025-11-20',3820,2814,0,0,2744,'B',4900.00,0.00,'7','bob','','93536','','0000-00-00','scan','',4539,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 17:43:25','','0000-00-00 00:00:00',0),(4637,0,0,'H','2526','','',4637,0,0,'2025-11-20',3833,2823,0,0,2753,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4540,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 17:45:50','','0000-00-00 00:00:00',0),(4638,0,0,'H','2526','','',4638,0,0,'2025-11-20',3834,1642,0,0,1597,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4541,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 17:46:50','','0000-00-00 00:00:00',0),(4639,0,0,'H','2526','','',4639,0,0,'2025-11-20',3835,2824,0,0,2754,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4542,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 17:47:54','','0000-00-00 00:00:00',0),(4640,0,0,'H','2526','','',4640,0,0,'2025-11-20',3826,2818,0,0,2748,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',4543,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 17:56:04','','0000-00-00 00:00:00',0),(4641,0,0,'H','2526','','',4641,0,0,'2025-11-20',3837,2825,0,0,2755,'B',750.00,0.00,'7','sbi','','39767','','0000-00-00','scan ','',4544,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 18:05:09','','0000-00-00 00:00:00',0),(4642,0,0,'H','2526','','',4642,0,0,'2025-11-20',3839,2826,0,0,2756,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4545,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 18:12:08','','0000-00-00 00:00:00',0),(4643,0,0,'H','2526','','',4643,0,0,'2025-11-20',3840,2827,0,0,2757,'B',500.00,0.00,'7','ICICI','','75719','','0000-00-00','SCAN','',4546,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-20 18:16:59','','0000-00-00 00:00:00',0),(4644,0,0,'H','2526','','',4644,0,0,'2025-11-20',3832,2822,0,0,2752,'B',3000.00,0.00,'7','co operative ','','32377','','0000-00-00','scan','',4547,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 18:18:20','','0000-00-00 00:00:00',0),(4645,0,0,'H','2526','','',4645,0,0,'2025-11-20',3841,412,0,0,390,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4548,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 18:19:49','','0000-00-00 00:00:00',0),(4646,0,0,'H','2526','','',4646,0,0,'2025-11-20',3842,1016,0,0,984,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4549,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 18:20:52','','0000-00-00 00:00:00',0),(4647,0,0,'H','2526','','',4647,0,0,'2025-11-20',3843,1402,0,0,1362,'B',500.00,0.00,'7','hdfc','','70693','','0000-00-00','scan','',4550,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 18:26:16','','0000-00-00 00:00:00',0),(4648,0,0,'H','2526','','',4648,0,0,'2025-11-20',3836,2024,0,0,1976,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',4551,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 18:27:00','','0000-00-00 00:00:00',0),(4649,0,0,'H','2526','','P',4649,0,0,'2025-11-20',3630,2699,0,174,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',4915,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-20 18:28:18','vishal','2025-11-24 21:47:11',0),(4650,0,0,'H','2526','','',4650,0,0,'2025-11-20',3837,2825,0,0,2755,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4552,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 18:28:26','','0000-00-00 00:00:00',0),(4651,0,0,'H','2526','','P',4651,0,0,'2025-11-20',2879,2243,0,146,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-20 18:30:25','vishal','2025-11-20 18:30:25',0),(4652,0,0,'H','2526','','',4652,0,0,'2025-11-20',3829,1386,0,0,1346,'D',-500.00,0.00,'7','sbi','','63438','','2025-11-20','SCAN','',4553,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 18:30:44','','0000-00-00 00:00:00',0),(4653,0,0,'H','2526','','',4653,0,0,'2025-11-20',3845,2828,0,0,2758,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4554,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 18:32:41','','0000-00-00 00:00:00',0),(4654,0,0,'H','2526','','',4654,0,0,'2025-11-20',3829,1386,0,0,1346,'B',300.00,0.00,'7','sbi','','63438','','0000-00-00','scan','',4555,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 18:33:01','','0000-00-00 00:00:00',0),(4655,0,0,'H','2526','','',4655,0,0,'2025-11-20',3844,863,0,0,832,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4556,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 18:36:32','','0000-00-00 00:00:00',0),(4656,0,0,'H','2526','','',4656,0,0,'2025-11-20',3846,2829,0,0,2759,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4557,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 18:38:18','','0000-00-00 00:00:00',0),(4657,0,0,'H','2526','','',4657,0,0,'2025-11-20',3830,2820,0,0,2750,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4558,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-20 18:38:21','','0000-00-00 00:00:00',0),(4658,0,0,'H','2526','','',4658,0,0,'2025-11-20',3847,1763,0,0,2118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4559,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 18:39:22','','0000-00-00 00:00:00',0),(4659,0,0,'H','2526','','',4659,0,0,'2025-11-20',3848,2635,0,0,2574,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4560,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-20 18:40:48','','0000-00-00 00:00:00',0),(4660,0,0,'H','2526','','',4660,0,0,'2025-11-20',3850,2830,0,0,2760,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4561,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 18:44:27','','0000-00-00 00:00:00',0),(4661,0,0,'H','2526','','',4661,0,0,'2025-11-20',3851,234,0,0,221,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4562,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 18:50:59','','0000-00-00 00:00:00',0),(4662,0,0,'H','2526','','',4662,0,0,'2025-11-20',3852,2831,0,0,2761,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4563,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 18:56:43','','0000-00-00 00:00:00',0),(4663,0,0,'H','2526','','P',4663,0,0,'2025-11-20',3759,2776,0,176,0,'A',5000.00,0.00,'7','bob bank','','114436002541','','0000-00-00','','',4565,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-20 19:11:18','vishal','2025-11-20 19:13:30',0),(4664,0,0,'H','2526','','',4664,0,0,'2025-11-20',3855,1353,0,0,1314,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4566,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-20 19:17:36','','0000-00-00 00:00:00',0),(4665,0,0,'H','2526','','P',4665,0,0,'2025-11-20',3473,2611,0,163,0,'A',22000.00,0.00,'CRD','hdfc bank','','4487','','0000-00-00','','',4763,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-20 19:19:25','riya','2025-11-23 13:52:09',0),(4666,0,0,'H','2526','','',4666,0,0,'2025-11-20',3856,926,0,0,900,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4567,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-20 19:20:01','','0000-00-00 00:00:00',0),(4667,0,0,'H','2526','','',4667,0,0,'2025-11-20',3853,2832,0,0,2762,'B',800.00,0.00,'7','HDFC','','606295','','0000-00-00','SCAN','',4568,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-20 19:20:44','','0000-00-00 00:00:00',0),(4668,0,0,'H','2526','','P',4668,0,0,'2025-11-20',3348,2539,0,159,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',4739,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-20 19:22:17','riya','2025-11-22 13:21:33',0),(4669,0,0,'H','2526','','',4669,0,0,'2025-11-20',3857,2087,0,0,2033,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4569,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 19:23:08','','0000-00-00 00:00:00',0),(4670,0,0,'H','2526','','',4670,0,0,'2025-11-20',3858,1356,0,0,1317,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4570,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 19:27:00','','0000-00-00 00:00:00',0),(4671,0,0,'H','2526','','',4671,0,0,'2025-11-20',3853,2832,0,0,2762,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4571,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-20 19:32:48','','0000-00-00 00:00:00',0),(4672,0,0,'H','2526','','',4672,0,0,'2025-11-20',3854,1883,0,0,1837,'B',100.00,0.00,'7','bob','','14489','','0000-00-00','scan                          ','',4572,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 19:36:24','','0000-00-00 00:00:00',0),(4673,0,0,'H','2526','','',4673,0,0,'2025-11-20',3859,1327,0,0,1288,'B',100.00,0.00,'7','bob','','79895','','0000-00-00','scan ','',4573,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-20 19:53:39','','0000-00-00 00:00:00',0),(4674,0,0,'H','2526','','P',4674,0,0,'2025-11-20',3621,2691,0,172,0,'A',18000.00,0.00,'CSH','','','','','0000-00-00','','',4760,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-20 19:59:56','riya','2025-11-23 12:03:02',0),(4675,0,0,'H','2526','','',4675,0,0,'2025-11-20',3761,2651,0,0,2708,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4574,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 20:43:17','','0000-00-00 00:00:00',0),(4676,0,0,'H','2526','','',4676,0,0,'2025-11-20',3860,2833,0,0,2763,'B',500.00,0.00,'7','axis bank','','63462','','0000-00-00','scan','',4575,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-20 20:49:15','','0000-00-00 00:00:00',0),(4677,0,0,'H','2526','','P',4677,0,0,'2025-11-20',3474,2612,0,164,0,'A',1000.00,0.00,'7','sbi bank','','7827','','0000-00-00','','',4577,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-20 20:58:34','vishal','2025-11-20 20:58:52',0),(4678,0,0,'H','2526','','P',4678,0,0,'2025-11-20',3861,2834,0,179,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',5592,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-20 23:01:53','vishal','2025-11-30 13:51:49',0),(4679,0,0,'H','2526','','',4679,0,0,'2025-11-21',3863,2835,0,0,2765,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',4578,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-21 09:00:17','','0000-00-00 00:00:00',0),(4680,0,0,'H','2526','','',4680,0,0,'2025-11-21',3862,2241,0,0,2764,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4579,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-21 09:00:55','','0000-00-00 00:00:00',0),(4681,0,0,'H','2526','','',4681,0,0,'2025-11-21',3864,2651,0,0,2708,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4580,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-21 09:02:09','','0000-00-00 00:00:00',0),(4682,0,0,'H','2526','','',4682,0,0,'2025-11-21',3865,1944,0,0,1896,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4581,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-21 09:27:20','','0000-00-00 00:00:00',0),(4683,0,0,'H','2526','','',4683,0,0,'2025-11-21',3866,1045,0,0,1012,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4582,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-21 09:39:35','','0000-00-00 00:00:00',0),(4684,0,0,'H','2526','','',4684,0,0,'2025-11-21',3867,2836,0,0,2766,'B',400.00,0.00,'7','SBI BANK','','83123','','0000-00-00','scan ','',4583,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 09:44:09','','0000-00-00 00:00:00',0),(4685,0,0,'H','2526','','',4685,0,0,'2025-11-21',3870,2838,0,0,2769,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4584,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-21 10:04:58','','0000-00-00 00:00:00',0),(4686,0,0,'H','2526','','',4686,0,0,'2025-11-21',3871,2839,0,0,2770,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4585,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 10:07:46','','0000-00-00 00:00:00',0),(4687,0,0,'H','2526','','',4687,0,0,'2025-11-21',3873,2840,0,0,2771,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4586,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 10:17:53','','0000-00-00 00:00:00',0),(4688,0,0,'H','2526','','',4688,0,0,'2025-11-21',3874,2841,0,0,2772,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4587,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 10:30:51','','0000-00-00 00:00:00',0),(4689,0,0,'H','2526','','',4689,0,0,'2025-11-21',3869,2837,0,0,2768,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4588,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-21 10:31:38','','0000-00-00 00:00:00',0),(4690,0,0,'H','2526','','',4690,0,0,'2025-11-21',3875,2842,0,0,2773,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4589,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 10:32:24','','0000-00-00 00:00:00',0),(4691,0,0,'H','2526','','',4691,0,0,'2025-11-21',3876,2422,0,0,2367,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4590,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-21 10:39:00','','0000-00-00 00:00:00',0),(4692,0,0,'H','2526','','',4692,0,0,'2025-11-21',3877,2843,0,0,2774,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4591,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 10:39:06','','0000-00-00 00:00:00',0),(4693,0,0,'H','2526','','',4693,0,0,'2025-11-21',3878,2844,0,0,2775,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4592,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 10:40:08','','0000-00-00 00:00:00',0),(4694,0,0,'H','2526','','',4694,0,0,'2025-11-21',3868,2504,0,0,2767,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4593,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-21 10:45:40','','0000-00-00 00:00:00',0),(4695,0,0,'H','2526','','',4695,0,0,'2025-11-21',3880,2846,0,0,2777,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4594,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 10:55:09','','0000-00-00 00:00:00',0),(4696,0,0,'H','2526','','',4696,0,0,'2025-11-21',3879,2845,0,0,2776,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4595,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 10:55:19','','0000-00-00 00:00:00',0),(4697,0,0,'H','2526','','',4697,0,0,'2025-11-21',3881,777,0,0,746,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4596,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 10:57:06','','0000-00-00 00:00:00',0),(4698,0,0,'H','2526','','',4698,0,0,'2025-11-21',3882,1969,0,0,1921,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4597,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 11:04:26','','0000-00-00 00:00:00',0),(4699,0,0,'H','2526','','',4699,0,0,'2025-11-21',3883,2847,0,0,2778,'B',500.00,0.00,'7','axis bank','','26130','','0000-00-00','scan  ','',4598,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-21 11:12:04','','0000-00-00 00:00:00',0),(4700,0,0,'H','2526','','',4700,0,0,'2025-11-21',3884,2848,0,0,2779,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4599,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 11:13:17','','0000-00-00 00:00:00',0),(4701,0,0,'H','2526','','',4701,0,0,'2025-11-21',3885,2304,0,0,2247,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4600,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 11:14:05','','0000-00-00 00:00:00',0),(4702,0,0,'H','2526','','',4702,0,0,'2025-11-21',3874,2841,0,0,2772,'B',4000.00,0.00,'7','SBI','','83499','','0000-00-00','SCAN','',4601,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 11:21:14','','0000-00-00 00:00:00',0),(4703,0,0,'H','2526','','',4703,0,0,'2025-11-21',3886,2849,0,0,2780,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4602,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 11:21:34','','0000-00-00 00:00:00',0),(4704,0,0,'H','2526','','',4704,0,0,'2025-11-21',3887,2850,0,0,2781,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4603,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-21 11:25:11','','0000-00-00 00:00:00',0),(4705,0,0,'H','2526','','',4705,0,0,'2025-11-21',3888,2851,0,0,2782,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4604,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 11:31:36','','0000-00-00 00:00:00',0),(4706,0,0,'H','2526','','',4706,0,0,'2025-11-21',3890,2853,0,0,2784,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4605,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 11:35:16','','0000-00-00 00:00:00',0),(4707,0,0,'H','2526','','',4707,0,0,'2025-11-21',3889,2852,0,0,2783,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4606,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 11:35:57','','0000-00-00 00:00:00',0),(4708,0,0,'H','2526','','',4708,0,0,'2025-11-21',3891,1976,0,0,1928,'B',100.00,0.00,'7','SBI','','17012','','0000-00-00','SCAN','',4607,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-21 11:43:25','','0000-00-00 00:00:00',0),(4709,0,0,'H','2526','','',4709,0,0,'2025-11-21',3878,2844,0,0,2775,'B',4000.00,0.00,'7','BOB','','01498','','0000-00-00','SCAN','',4608,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 11:45:14','','0000-00-00 00:00:00',0),(4710,0,0,'H','2526','','',4710,0,0,'2025-11-21',3892,2854,0,0,2785,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',4609,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 11:45:46','','0000-00-00 00:00:00',0),(4711,0,0,'H','2526','','',4711,0,0,'2025-11-21',3879,2845,0,0,2776,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',4611,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 11:47:21','','0000-00-00 00:00:00',0),(4712,0,0,'H','2526','','',4712,0,0,'2025-11-21',3893,2855,0,0,2786,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4612,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 11:48:49','','0000-00-00 00:00:00',0),(4713,0,0,'H','2526','','',4713,0,0,'2025-11-21',3894,2506,0,0,2787,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4614,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 11:53:10','','0000-00-00 00:00:00',0),(4714,0,0,'H','2526','','',4714,0,0,'2025-11-21',3895,1275,0,0,1234,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4616,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 11:57:41','','0000-00-00 00:00:00',0),(4715,0,0,'H','2526','','',4715,0,0,'2025-11-21',3896,2856,0,0,2788,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4617,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 12:03:55','','0000-00-00 00:00:00',0),(4716,0,0,'H','2526','','',4716,0,0,'2025-11-21',3872,1840,0,0,1795,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4618,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-21 12:04:29','','0000-00-00 00:00:00',0),(4717,0,0,'H','2526','','',4717,0,0,'2025-11-21',3888,2851,0,0,2782,'B',5000.00,0.00,'7','BOB','','53575','','0000-00-00','SCAN','',4619,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 12:05:02','','0000-00-00 00:00:00',0),(4718,0,0,'H','2526','','',4718,0,0,'2025-11-21',3897,1775,0,0,1731,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4620,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 12:05:54','','0000-00-00 00:00:00',0),(4719,0,0,'H','2526','','',4719,0,0,'2025-11-21',3862,2241,0,0,2764,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4621,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 12:11:08','','0000-00-00 00:00:00',0),(4720,0,0,'H','2526','','',4720,0,0,'2025-11-21',3898,2857,0,0,2789,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4622,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 12:12:04','','0000-00-00 00:00:00',0),(4721,0,0,'H','2526','','',4721,0,0,'2025-11-21',3872,1840,0,0,1795,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4623,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-21 12:13:46','','0000-00-00 00:00:00',0),(4722,0,0,'H','2526','','',4722,0,0,'2025-11-21',3899,2858,0,0,2790,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4624,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 12:13:59','','0000-00-00 00:00:00',0),(4723,0,0,'H','2526','','',4723,0,0,'2025-11-21',3900,2859,0,0,2791,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4625,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 12:22:21','','0000-00-00 00:00:00',0),(4724,0,0,'H','2526','','',4724,0,0,'2025-11-21',3901,1062,0,0,1028,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4626,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 12:28:49','','0000-00-00 00:00:00',0),(4725,0,0,'H','2526','','',4725,0,0,'2025-11-21',3903,2861,0,0,2792,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4627,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 12:32:10','','0000-00-00 00:00:00',0),(4726,0,0,'H','2526','','',4726,0,0,'2025-11-21',3904,2862,0,0,2793,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4628,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 12:37:32','','0000-00-00 00:00:00',0),(4727,0,0,'H','2526','','',4727,0,0,'2025-11-21',3905,2863,0,0,2794,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4629,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 12:46:47','','0000-00-00 00:00:00',0),(4728,0,0,'H','2526','','',4728,0,0,'2025-11-21',3903,2861,0,0,2792,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',4630,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 12:59:52','','0000-00-00 00:00:00',0),(4729,0,0,'H','2526','','',4729,0,0,'2025-11-21',3906,2864,0,0,2795,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4631,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-21 13:03:12','','0000-00-00 00:00:00',0),(4730,0,0,'H','2526','','',4730,0,0,'2025-11-21',3907,2865,0,0,2796,'B',500.00,0.00,'7','bob','','69891','','0000-00-00','scan  ','',4632,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-21 13:14:08','','0000-00-00 00:00:00',0),(4731,0,0,'H','2526','','',4731,0,0,'2025-11-21',3906,2864,0,0,2795,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4633,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 13:34:03','','0000-00-00 00:00:00',0),(4732,0,0,'H','2526','','',4732,0,0,'2025-11-21',3863,2835,0,0,2765,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4634,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 13:41:38','','0000-00-00 00:00:00',0),(4733,0,0,'H','2526','','',4733,0,0,'2025-11-21',3908,1629,0,0,1585,'B',500.00,0.00,'7','induslnd bank','','93972','','0000-00-00','scan','',4635,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-21 14:10:54','','0000-00-00 00:00:00',0),(4734,0,0,'H','2526','','P',4734,0,0,'2025-11-21',3764,2780,0,178,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',6344,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-21 15:12:17','riya','2025-12-06 09:28:53',0),(4735,0,0,'H','2526','','P',4735,0,0,'2025-11-21',3909,2866,0,181,0,'A',15000.00,0.00,'7','INDUSIND BANK','','694263795286','','0000-00-00','','',5995,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-21 15:20:02','riya','2025-12-03 16:54:08',0),(4736,0,0,'H','2526','','',4736,0,0,'2025-11-21',3916,2871,0,0,2802,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4636,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-21 16:51:49','','0000-00-00 00:00:00',0),(4737,0,0,'H','2526','','',4737,0,0,'2025-11-21',3915,2871,0,0,2801,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4637,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-21 16:51:55','','0000-00-00 00:00:00',0),(4738,0,0,'H','2526','','',4738,0,0,'2025-11-21',3917,2872,0,0,2803,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4638,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 17:08:14','','0000-00-00 00:00:00',0),(4739,0,0,'H','2526','','',4739,0,0,'2025-11-21',3918,2873,0,0,2804,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4639,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 17:10:28','','0000-00-00 00:00:00',0),(4740,0,0,'H','2526','','',4740,0,0,'2025-11-21',3920,2874,0,0,2805,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4640,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 17:22:45','','0000-00-00 00:00:00',0),(4741,0,0,'H','2526','','P',4741,0,0,'2025-11-21',3517,2633,0,165,0,'A',40000.00,0.00,'CSH','','','','','0000-00-00','','',5108,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-21 17:27:58','riya','2025-11-26 15:00:29',0),(4742,0,0,'H','2526','','',4742,0,0,'2025-11-21',3917,2872,0,0,2803,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',4641,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 17:32:01','','0000-00-00 00:00:00',0),(4743,0,0,'H','2526','','',4743,0,0,'2025-11-21',3921,2875,0,0,2806,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4642,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 17:35:42','','0000-00-00 00:00:00',0),(4744,0,0,'H','2526','','',4744,0,0,'2025-11-21',3922,1463,0,0,1422,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4643,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 17:41:50','','0000-00-00 00:00:00',0),(4745,0,0,'H','2526','','',4745,0,0,'2025-11-21',3923,2876,0,0,2807,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4644,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-21 17:42:29','','0000-00-00 00:00:00',0),(4746,0,0,'H','2526','','P',4746,0,0,'2025-11-21',3473,2611,0,163,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',4763,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-21 17:42:30','riya','2025-11-23 13:52:09',0),(4747,0,0,'H','2526','','',4747,0,0,'2025-11-21',3924,2249,0,0,2192,'B',500.00,0.00,'7','SIB','','98505','','0000-00-00','scan  ','',4645,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-21 17:48:34','','0000-00-00 00:00:00',0),(4748,0,0,'H','2526','','',4748,0,0,'2025-11-21',3925,2254,0,0,2198,'B',300.00,0.00,'7','sbi','','66466','','0000-00-00','scan ','',4646,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-21 17:51:05','','0000-00-00 00:00:00',0),(4749,0,0,'H','2526','','',4749,0,0,'2025-11-21',3927,2314,0,0,2257,'B',500.00,0.00,'7','HDFC BANK','','93672','','0000-00-00','scan ','',4647,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 17:56:00','','0000-00-00 00:00:00',0),(4750,0,0,'H','2526','','',4750,0,0,'2025-11-21',3926,2877,0,0,2808,'B',750.00,0.00,'7','SBI BANK','','09101','','0000-00-00','scan ','',4648,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 17:56:28','','0000-00-00 00:00:00',0),(4751,0,0,'H','2526','','',4751,0,0,'2025-11-21',3928,2878,0,0,2809,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4649,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 17:57:43','','0000-00-00 00:00:00',0),(4752,0,0,'H','2526','','',4752,0,0,'2025-11-21',3929,2879,0,0,2810,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4650,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 18:04:15','','0000-00-00 00:00:00',0),(4753,0,0,'H','2526','','',4753,0,0,'2025-11-21',3930,2577,0,0,2519,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4651,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-21 18:05:08','','0000-00-00 00:00:00',0),(4754,0,0,'H','2526','','',4754,0,0,'2025-11-21',3931,903,0,0,871,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4652,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 18:05:52','','0000-00-00 00:00:00',0),(4755,0,0,'H','2526','','',4755,0,0,'2025-11-21',3933,2880,0,0,2811,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4653,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 18:08:56','','0000-00-00 00:00:00',0),(4756,0,0,'H','2526','','',4756,0,0,'2025-11-21',3934,2415,0,0,2360,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4654,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-21 18:10:14','','0000-00-00 00:00:00',0),(4757,0,0,'H','2526','','',4757,0,0,'2025-11-21',3935,695,0,0,665,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4655,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 18:11:39','','0000-00-00 00:00:00',0),(4758,0,0,'H','2526','','',4758,0,0,'2025-11-21',3936,2881,0,0,2812,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4656,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 18:20:02','','0000-00-00 00:00:00',0),(4759,0,0,'H','2526','','',4759,0,0,'2025-11-21',3929,2879,0,0,2810,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',4657,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 18:31:44','','0000-00-00 00:00:00',0),(4760,0,0,'H','2526','','',4760,0,0,'2025-11-21',3938,2570,0,0,2513,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4658,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 18:34:52','','0000-00-00 00:00:00',0),(4761,0,0,'H','2526','','P',4761,0,0,'2025-11-21',3630,2699,0,174,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',4915,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-21 18:35:16','vishal','2025-11-24 21:47:11',0),(4762,0,0,'H','2526','','',4762,0,0,'2025-11-21',3939,2883,0,0,2814,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4659,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 18:35:56','','0000-00-00 00:00:00',0),(4763,0,0,'H','2526','','P',4763,0,0,'2025-11-21',3348,2539,0,159,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',4739,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-21 18:36:57','riya','2025-11-22 13:21:33',0),(4764,0,0,'H','2526','','',4764,0,0,'2025-11-21',3940,2255,0,0,2199,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4660,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 18:36:57','','0000-00-00 00:00:00',0),(4765,0,0,'H','2526','','',4765,0,0,'2025-11-21',3941,2884,0,0,2815,'B',750.00,0.00,'7','rnsb','','60656','','0000-00-00','scan  ','',4662,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-21 18:41:05','','0000-00-00 00:00:00',0),(4766,0,0,'H','2526','','',4766,0,0,'2025-11-21',3943,2885,0,0,2816,'B',400.00,0.00,'7','SBI BANK','','26250','','0000-00-00','scan ','',4663,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 18:45:44','','0000-00-00 00:00:00',0),(4767,0,0,'H','2526','','',4767,0,0,'2025-11-21',3936,2881,0,0,2812,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',4664,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 18:48:07','','0000-00-00 00:00:00',0),(4768,0,0,'H','2526','','',4768,0,0,'2025-11-21',3944,714,0,0,1085,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4665,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 18:50:47','','0000-00-00 00:00:00',0),(4769,0,0,'H','2526','','P',4769,0,0,'2025-11-21',3902,2860,0,180,0,'A',15000.00,0.00,'7','OTHER BANK','','1234','','0000-00-00','','',4742,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-21 18:51:44','riya','2025-11-22 15:23:59',0),(4770,0,0,'H','2526','','',4770,0,0,'2025-11-21',3945,2886,0,0,2817,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4666,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-21 18:54:18','','0000-00-00 00:00:00',0),(4771,0,0,'H','2526','','',4771,0,0,'2025-11-21',3946,2887,0,0,2818,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4667,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 18:55:01','','0000-00-00 00:00:00',0),(4772,0,0,'H','2526','','',4772,0,0,'2025-11-21',3947,2325,0,0,2268,'B',500.00,0.00,'7','HDFC BANK','','24637','','0000-00-00','scan ','',4668,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 18:57:12','','0000-00-00 00:00:00',0),(4773,0,0,'H','2526','','',4773,0,0,'2025-11-21',3948,2888,0,0,2819,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4669,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 19:03:02','','0000-00-00 00:00:00',0),(4774,0,0,'H','2526','','',4774,0,0,'2025-11-21',3948,2888,0,0,2819,'D',-750.00,0.00,'CSH','','','','','2025-11-21','','',4670,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 19:05:54','','0000-00-00 00:00:00',0),(4775,0,0,'H','2526','','',4775,0,0,'2025-11-21',3949,2889,0,0,2820,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4671,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 19:29:36','','0000-00-00 00:00:00',0),(4776,0,0,'H','2526','','',4776,0,0,'2025-11-21',3929,2879,0,0,2810,'B',1500.00,0.00,'CSH','','','','','2025-11-21','','',4657,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-21 19:35:12','','0000-00-00 00:00:00',0),(4777,0,0,'H','2526','','',4777,0,0,'2025-11-21',3950,2890,0,0,2821,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4672,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-21 19:41:49','','0000-00-00 00:00:00',0),(4778,0,0,'H','2526','','P',4778,0,0,'2025-11-21',3763,2779,0,177,0,'A',3300.00,0.00,'7','KARNATAKA BANK','','114488070484','','0000-00-00','','',4673,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-21 19:46:45','vishal','2025-11-21 19:47:04',0),(4779,0,0,'H','2526','','',4779,0,0,'2025-11-21',3946,2887,0,0,2818,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4674,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 20:20:52','','0000-00-00 00:00:00',0),(4780,0,0,'H','2526','','',4780,0,0,'2025-11-21',3951,2651,0,0,2708,'B',100.00,0.00,'7','HDFC BANK','','75244','','0000-00-00','scan ','',4675,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-21 20:30:47','','0000-00-00 00:00:00',0),(4781,0,0,'H','2526','','',4781,0,0,'2025-11-22',3952,2891,0,0,2822,'B',1200.00,0.00,'7','nagrik bank','','18325','','0000-00-00','SCAN','',4676,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 09:15:17','','0000-00-00 00:00:00',0),(4782,0,0,'H','2526','','',4782,0,0,'2025-11-22',3953,2892,0,0,2823,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4677,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 09:23:47','','0000-00-00 00:00:00',0),(4783,0,0,'H','2526','','',4783,0,0,'2025-11-22',3955,737,0,0,706,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4678,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 09:50:44','','0000-00-00 00:00:00',0),(4784,0,0,'H','2526','','',4784,0,0,'2025-11-22',3956,2894,0,0,2824,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4679,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-22 09:51:33','','0000-00-00 00:00:00',0),(4785,0,0,'H','2526','','P',4785,0,0,'2025-11-22',3954,2893,0,182,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',4838,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-22 09:56:34','riya','2025-11-24 12:53:36',0),(4786,0,0,'H','2526','','',4786,0,0,'2025-11-22',3957,2895,0,0,2825,'B',750.00,0.00,'7','SBI','','19661','','0000-00-00','SCAN','',4680,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 10:02:56','','0000-00-00 00:00:00',0),(4787,0,0,'H','2526','','',4787,0,0,'2025-11-22',3958,2896,0,0,2826,'B',500.00,0.00,'7','SBI','','57449','','0000-00-00','SCAN','',4681,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 10:05:29','','0000-00-00 00:00:00',0),(4788,0,0,'H','2526','','',4788,0,0,'2025-11-22',3960,2898,0,0,2827,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4682,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-22 10:16:34','','0000-00-00 00:00:00',0),(4789,0,0,'H','2526','','P',4789,0,0,'2025-11-22',3959,2897,0,183,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',5240,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-22 10:17:19','riya','2025-11-27 14:50:04',0),(4790,0,0,'H','2526','','',4790,0,0,'2025-11-22',3963,2900,0,0,2828,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4683,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-22 10:35:47','','0000-00-00 00:00:00',0),(4791,0,0,'H','2526','','',4791,0,0,'2025-11-22',3965,2902,0,0,2830,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4684,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 10:37:42','','0000-00-00 00:00:00',0),(4792,0,0,'H','2526','','',4792,0,0,'2025-11-22',3966,2903,0,0,2831,'B',750.00,0.00,'7','SBI','','45771','','0000-00-00','SCAN','',4685,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 10:40:16','','0000-00-00 00:00:00',0),(4793,0,0,'H','2526','','',4793,0,0,'2025-11-22',3964,2901,0,0,2829,'B',1700.00,0.00,'7','federal bank','','30309','','0000-00-00','SCAN','',4686,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-22 10:40:18','','0000-00-00 00:00:00',0),(4794,0,0,'H','2526','','P',4794,0,0,'2025-11-22',3962,2899,0,184,0,'A',7000.00,0.00,'7','ICICI BANK','','694304410255','','0000-00-00','UPI','',4976,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-22 10:41:01','vishal','2025-11-25 12:59:38',0),(4795,0,0,'H','2526','','',4795,0,0,'2025-11-22',3967,2904,0,0,2832,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4687,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 10:48:39','','0000-00-00 00:00:00',0),(4796,0,0,'H','2526','','',4796,0,0,'2025-11-22',3968,2905,0,0,2833,'B',750.00,0.00,'7','SBI BANK','','53534','','0000-00-00','scan ','',4688,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-22 10:57:02','','0000-00-00 00:00:00',0),(4797,0,0,'H','2526','','',4797,0,0,'2025-11-22',3969,2906,0,0,2834,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4689,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 10:57:36','','0000-00-00 00:00:00',0),(4798,0,0,'H','2526','','',4798,0,0,'2025-11-22',3970,2907,0,0,2835,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4690,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 10:59:46','','0000-00-00 00:00:00',0),(4799,0,0,'H','2526','','',4799,0,0,'2025-11-22',3972,2908,0,0,2836,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4691,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 11:04:46','','0000-00-00 00:00:00',0),(4800,0,0,'H','2526','','',4800,0,0,'2025-11-22',3971,2651,0,0,2708,'B',400.00,0.00,'7','HDFC BANK','','34028','','0000-00-00','scan ','',4692,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-22 11:05:27','','0000-00-00 00:00:00',0),(4801,0,0,'H','2526','','',4801,0,0,'2025-11-22',3973,2887,0,0,2818,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4693,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-22 11:16:15','','0000-00-00 00:00:00',0),(4802,0,0,'H','2526','','',4802,0,0,'2025-11-22',3974,2909,0,0,2837,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4694,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 11:18:15','','0000-00-00 00:00:00',0),(4803,0,0,'H','2526','','',4803,0,0,'2025-11-22',3961,2347,0,0,2290,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4695,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 11:23:50','','0000-00-00 00:00:00',0),(4804,0,0,'H','2526','','',4804,0,0,'2025-11-22',3966,2903,0,0,2831,'B',300.00,0.00,'7','SBI','','43476','','0000-00-00','SCAN','',4696,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 11:26:11','','0000-00-00 00:00:00',0),(4805,0,0,'H','2526','','',4805,0,0,'2025-11-22',3975,2910,0,0,2838,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4697,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 11:27:01','','0000-00-00 00:00:00',0),(4806,0,0,'H','2526','','',4806,0,0,'2025-11-22',3965,2902,0,0,2830,'B',5600.00,0.00,'CSH','','','','','0000-00-00','','',4698,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 11:27:08','','0000-00-00 00:00:00',0),(4807,0,0,'H','2526','','',4807,0,0,'2025-11-22',3976,641,0,0,611,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4699,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 11:29:15','','0000-00-00 00:00:00',0),(4808,0,0,'H','2526','','',4808,0,0,'2025-11-22',3977,2911,0,0,2839,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4700,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-22 11:30:54','','0000-00-00 00:00:00',0),(4809,0,0,'H','2526','','',4809,0,0,'2025-11-22',3972,2908,0,0,2836,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',4701,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 11:34:49','','0000-00-00 00:00:00',0),(4810,0,0,'H','2526','','',4810,0,0,'2025-11-22',3969,2906,0,0,2834,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4702,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 11:37:15','','0000-00-00 00:00:00',0),(4811,0,0,'H','2526','','',4811,0,0,'2025-11-22',3978,2912,0,0,2840,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4703,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-22 11:37:39','','0000-00-00 00:00:00',0),(4812,0,0,'H','2526','','',4812,0,0,'2025-11-22',3979,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4704,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 11:39:25','','0000-00-00 00:00:00',0),(4813,0,0,'H','2526','','',4813,0,0,'2025-11-22',3980,266,0,0,251,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4705,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-22 11:42:29','','0000-00-00 00:00:00',0),(4814,0,0,'H','2526','','',4814,0,0,'2025-11-22',3981,2913,0,0,2841,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4706,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 11:44:05','','0000-00-00 00:00:00',0),(4815,0,0,'H','2526','','',4815,0,0,'2025-11-22',3981,2913,0,0,2841,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',4707,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 11:48:56','','0000-00-00 00:00:00',0),(4816,0,0,'H','2526','','',4816,0,0,'2025-11-22',3984,2915,0,0,2843,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4708,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 11:52:19','','0000-00-00 00:00:00',0),(4817,0,0,'H','2526','','',4817,0,0,'2025-11-22',3987,2916,0,0,2844,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4709,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 11:55:25','','0000-00-00 00:00:00',0),(4818,0,0,'H','2526','','',4818,0,0,'2025-11-22',3982,1714,0,0,1669,'B',300.00,0.00,'7','HDFC BANK','','35039','','0000-00-00','scan ','',4710,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-22 11:56:20','','0000-00-00 00:00:00',0),(4819,0,0,'H','2526','','',4819,0,0,'2025-11-22',3988,2917,0,0,2845,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4711,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-22 12:00:33','','0000-00-00 00:00:00',0),(4820,0,0,'H','2526','','',4820,0,0,'2025-11-22',3974,2909,0,0,2837,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4712,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-22 12:02:46','','0000-00-00 00:00:00',0),(4821,0,0,'H','2526','','',4821,0,0,'2025-11-22',3989,2918,0,0,2846,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4713,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 12:05:32','','0000-00-00 00:00:00',0),(4822,0,0,'H','2526','','',4822,0,0,'2025-11-22',3990,2919,0,0,2847,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',4714,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-22 12:06:32','','0000-00-00 00:00:00',0),(4823,0,0,'H','2526','','',4823,0,0,'2025-11-22',3992,2921,0,0,2849,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4715,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 12:07:25','','0000-00-00 00:00:00',0),(4824,0,0,'H','2526','','',4824,0,0,'2025-11-22',3991,2920,0,0,2848,'B',700.00,0.00,'7','icici','','25584','','0000-00-00','scan     ','',4716,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 12:08:06','','0000-00-00 00:00:00',0),(4825,0,0,'H','2526','','',4825,0,0,'2025-11-22',3983,2914,0,0,2842,'B',400.00,0.00,'7','idbi','','13110','','0000-00-00','SCAN','',4717,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 12:10:28','','0000-00-00 00:00:00',0),(4826,0,0,'H','2526','','',4826,0,0,'2025-11-22',3973,2887,0,0,2818,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4718,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-22 12:11:25','','0000-00-00 00:00:00',0),(4827,0,0,'H','2526','','',4827,0,0,'2025-11-22',3984,2915,0,0,2843,'B',5600.00,0.00,'CSH','','','','','0000-00-00','','',4719,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 12:17:21','','0000-00-00 00:00:00',0),(4828,0,0,'H','2526','','',4828,0,0,'2025-11-22',3993,2922,0,0,2850,'B',500.00,0.00,'7','hdfc','','31618','','0000-00-00','scan     ','',4720,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 12:21:13','','0000-00-00 00:00:00',0),(4829,0,0,'H','2526','','',4829,0,0,'2025-11-22',3987,2916,0,0,2844,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',4721,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 12:23:03','','0000-00-00 00:00:00',0),(4830,0,0,'H','2526','','',4830,0,0,'2025-11-22',3956,2894,0,0,2824,'B',2400.00,0.00,'CSH','','','','','0000-00-00','','',4722,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 12:27:11','','0000-00-00 00:00:00',0),(4831,0,0,'H','2526','','',4831,0,0,'2025-11-22',3994,2923,0,0,2851,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4723,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-22 12:28:21','','0000-00-00 00:00:00',0),(4832,0,0,'H','2526','','',4832,0,0,'2025-11-22',3977,2911,0,0,2839,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',4724,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-22 12:30:27','','0000-00-00 00:00:00',0),(4833,0,0,'H','2526','','',4833,0,0,'2025-11-22',3995,2924,0,0,2852,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4725,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-22 12:31:05','','0000-00-00 00:00:00',0),(4834,0,0,'H','2526','','',4834,0,0,'2025-11-22',3960,2898,0,0,2827,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4726,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 12:38:05','','0000-00-00 00:00:00',0),(4835,0,0,'H','2526','','',4835,0,0,'2025-11-22',3996,2925,0,0,2853,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4727,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 12:44:47','','0000-00-00 00:00:00',0),(4836,0,0,'H','2526','','',4836,0,0,'2025-11-22',3997,2248,0,0,2191,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4728,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-22 12:45:53','','0000-00-00 00:00:00',0),(4837,0,0,'H','2526','','',4837,0,0,'2025-11-22',3998,2926,0,0,2854,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4730,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-22 12:49:02','','0000-00-00 00:00:00',0),(4838,0,0,'H','2526','','',4838,0,0,'2025-11-22',3972,2908,0,0,2836,'D',-1000.00,0.00,'CSH','','','','','2025-11-22','','',4729,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 12:49:15','','0000-00-00 00:00:00',0),(4839,0,0,'H','2526','','',4839,0,0,'2025-11-22',3972,2908,0,0,2836,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',4731,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 12:50:04','','0000-00-00 00:00:00',0),(4840,0,0,'H','2526','','',4840,0,0,'2025-11-22',3994,2923,0,0,2851,'B',250.00,0.00,'CSH','','','','','0000-00-00','','',4732,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-22 12:57:15','','0000-00-00 00:00:00',0),(4841,0,0,'H','2526','','',4841,0,0,'2025-11-22',3999,2927,0,0,2855,'B',750.00,0.00,'7','SBI BANK','','27809','','0000-00-00','scan ','',4733,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-22 13:03:59','','0000-00-00 00:00:00',0),(4842,0,0,'H','2526','','',4842,0,0,'2025-11-22',3996,2925,0,0,2853,'B',4500.00,0.00,'2','idbi bank','','3214','','0000-00-00','card','',4734,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 13:05:53','','0000-00-00 00:00:00',0),(4843,0,0,'H','2526','','',4843,0,0,'2025-11-22',3985,2750,0,0,2681,'B',3000.00,0.00,'7','bob','','40083','','0000-00-00','scan','',4735,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 13:07:17','','0000-00-00 00:00:00',0),(4844,0,0,'H','2526','','',4844,0,0,'2025-11-22',4000,2928,0,0,2856,'B',800.00,0.00,'7','SBI','','69590','','0000-00-00','SCAN','',4736,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 13:11:13','','0000-00-00 00:00:00',0),(4845,0,0,'H','2526','','',4845,0,0,'2025-11-22',4001,1386,0,0,1346,'B',100.00,0.00,'7','SBI','','29026','','0000-00-00','SCAN','',4738,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 13:20:08','','0000-00-00 00:00:00',0),(4846,0,0,'H','2526','','',4846,0,0,'2025-11-22',4000,2928,0,0,2856,'B',3000.00,0.00,'7','SBI','','28932','','0000-00-00','SCAN','',4740,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-22 13:25:34','','0000-00-00 00:00:00',0),(4847,0,0,'H','2526','','P',4847,0,0,'2025-11-22',3902,2860,0,180,0,'A',500.00,0.00,'CSH','','','','','0000-00-00','','',4742,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-22 15:22:57','riya','2025-11-22 15:23:59',0),(4848,0,0,'H','2526','','P',4848,0,0,'2025-11-22',3630,2699,0,174,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',4915,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-22 17:33:43','vishal','2025-11-24 21:47:11',0),(4849,0,0,'H','2526','','',4849,0,0,'2025-11-22',4002,2399,0,0,2343,'B',1600.00,0.00,'CSH','','','','','0000-00-00','','',4743,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 17:36:49','','0000-00-00 00:00:00',0),(4850,0,0,'H','2526','','P',4850,0,0,'2025-11-22',3517,2633,0,165,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',5108,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-22 17:42:48','riya','2025-11-26 15:00:29',0),(4851,0,0,'H','2526','','',4851,0,0,'2025-11-22',4003,2929,0,0,2857,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',4744,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 17:59:09','','0000-00-00 00:00:00',0),(4852,0,0,'H','2526','','',4852,0,0,'2025-11-22',4005,234,0,0,221,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4745,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 18:32:24','','0000-00-00 00:00:00',0),(4853,0,0,'H','2526','','P',4853,0,0,'2025-11-22',3764,2780,0,178,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',6344,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-22 18:34:11','riya','2025-12-06 09:28:53',0),(4854,0,0,'H','2526','','',4854,0,0,'2025-11-22',4005,234,0,0,221,'D',-100.00,0.00,'CSH','','','','','2025-11-22','','',4746,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 18:35:21','','0000-00-00 00:00:00',0),(4855,0,0,'H','2526','','',4855,0,0,'2025-11-22',4004,1616,0,0,2528,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4747,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-22 18:55:58','','0000-00-00 00:00:00',0),(4856,0,0,'H','2526','','',4856,0,0,'2025-11-22',4006,1940,0,0,1893,'B',100.00,0.00,'7','SBI','','87990','','0000-00-00','SCAN','',4748,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 19:00:13','','0000-00-00 00:00:00',0),(4857,0,0,'H','2526','','',4857,0,0,'2025-11-22',4007,2930,0,0,2858,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4749,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-22 19:07:06','','0000-00-00 00:00:00',0),(4858,0,0,'H','2526','','',4858,0,0,'2025-11-22',4007,2930,0,0,2858,'D',-500.00,0.00,'CSH','','','','','2025-11-22','','',4750,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-22 19:40:54','','0000-00-00 00:00:00',0),(4859,0,0,'H','2526','','',4859,0,0,'2025-11-22',4007,2930,0,0,2858,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4751,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-22 19:51:52','','0000-00-00 00:00:00',0),(4860,0,0,'H','2526','','',4860,0,0,'2025-11-23',4008,2887,0,0,2818,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4752,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-23 09:03:17','','0000-00-00 00:00:00',0),(4861,0,0,'H','2526','','',4861,0,0,'2025-11-23',4009,2931,0,0,2859,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4753,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-23 09:05:46','','0000-00-00 00:00:00',0),(4862,0,0,'H','2526','','P',4862,0,0,'2025-11-23',4010,2932,0,185,0,'A',15000.00,0.00,'7','SBI','','569354011597','','0000-00-00','UPI','',4914,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-23 10:03:00','vishal','2025-11-24 21:29:09',0),(4863,0,0,'H','2526','','',4863,0,0,'2025-11-23',4012,2934,0,0,2860,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',4754,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-23 10:23:07','','0000-00-00 00:00:00',0),(4864,0,0,'H','2526','','',4864,0,0,'2025-11-23',4013,1717,0,0,1672,'B',1800.00,0.00,'CSH','','','','','0000-00-00','','',4755,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-23 10:29:10','','0000-00-00 00:00:00',0),(4865,0,0,'H','2526','','',4865,0,0,'2025-11-23',4008,2887,0,0,2818,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4757,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-23 10:42:32','','0000-00-00 00:00:00',0),(4866,0,0,'H','2526','','P',4866,0,0,'2025-11-23',4011,2933,0,186,0,'A',6000.00,0.00,'7','KOTAK BANK','','569365116016','','0000-00-00','UPI','',4832,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-23 10:53:00','riya','2025-11-24 12:23:56',0),(4867,0,0,'H','2526','','',4867,0,0,'2025-11-23',4014,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4758,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-23 11:20:21','','0000-00-00 00:00:00',0),(4868,0,0,'H','2526','','',4868,0,0,'2025-11-23',4015,2935,0,0,2861,'B',1000.00,0.00,'7','SBI BANK','','27464','','0000-00-00','scan ','',4759,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-23 11:29:15','','0000-00-00 00:00:00',0),(4869,0,0,'H','2526','','P',4869,0,0,'2025-11-23',3621,2691,0,172,0,'A',13000.00,0.00,'CSH','','','','','0000-00-00','','',4760,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-23 12:01:52','riya','2025-11-23 12:03:02',0),(4870,0,0,'H','2526','','P',4870,0,0,'2025-11-23',3959,2897,0,183,0,'A',40000.00,0.00,'CSH','','','','','0000-00-00','','',5240,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-23 12:10:52','riya','2025-11-27 14:50:04',0),(4871,0,0,'H','2526','','',4871,0,0,'2025-11-23',4016,2936,0,0,2862,'B',1900.00,0.00,'CSH','','','','','0000-00-00','','',4761,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-23 12:33:43','','0000-00-00 00:00:00',0),(4872,0,0,'H','2526','','P',4872,0,0,'2025-11-23',3861,2834,0,179,0,'A',25000.00,0.00,'7','AXIS BANK','','532789822796','','0000-00-00','UPI','',5592,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-23 13:16:15','vishal','2025-11-30 13:51:49',0),(4873,0,0,'H','2526','','P',4873,0,0,'2025-11-23',3473,2611,0,163,0,'A',17000.00,0.00,'CSH','','','','','0000-00-00','','',4763,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-23 13:51:38','riya','2025-11-23 13:52:09',0),(4874,0,0,'H','2526','','P',4874,0,0,'2025-11-23',4017,2937,0,187,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-23 15:24:58','riya','2025-11-23 15:24:58',0),(4875,0,0,'H','2526','','P',4875,0,0,'2025-11-23',2879,2243,0,146,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-23 16:06:07','riya','2025-11-23 16:06:07',0),(4876,0,0,'H','2526','','P',4876,0,0,'2025-11-23',3909,2866,0,181,0,'A',20000.00,0.00,'7','ICICI BANK','','108623298219','','0000-00-00','UPI','',5995,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-23 18:12:00','riya','2025-12-03 16:54:08',0),(4877,0,0,'H','2526','','P',4877,0,0,'2025-11-23',4018,2938,0,188,0,'A',6000.00,0.00,'7','AXIS BANK','','532768557433','','0000-00-00','UPI','',4899,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-23 18:30:17','vishal','2025-11-24 19:11:00',0),(4878,0,0,'H','2526','','P',4878,0,0,'2025-11-23',4019,2939,0,189,0,'A',6000.00,0.00,'7','HDFC BANK','','114590270275','','0000-00-00','UPI','',5085,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-23 20:43:41','vishal','2025-11-26 12:13:19',0),(4879,0,0,'H','2526','','P',4879,0,0,'2025-11-24',4020,2940,0,190,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',4962,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-24 08:58:47','vishal','2025-11-25 12:06:44',0),(4880,0,0,'H','2526','','',4880,0,0,'2025-11-24',4021,2941,0,0,2863,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4764,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 09:13:53','','0000-00-00 00:00:00',0),(4881,0,0,'H','2526','','',4881,0,0,'2025-11-24',4022,2942,0,0,2864,'B',1500.00,0.00,'7','hdfc','','01366','','0000-00-00','scan','',4765,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 09:22:39','','0000-00-00 00:00:00',0),(4882,0,0,'H','2526','','',4882,0,0,'2025-11-24',4023,1763,0,0,2118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4766,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 09:24:02','','0000-00-00 00:00:00',0),(4883,0,0,'H','2526','','',4883,0,0,'2025-11-24',4024,2943,0,0,2865,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4767,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 09:26:51','','0000-00-00 00:00:00',0),(4884,0,0,'H','2526','','',4884,0,0,'2025-11-24',4025,2944,0,0,2866,'B',1300.00,0.00,'7','induslnd','','80754','','0000-00-00','scan','',4768,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 09:30:16','','0000-00-00 00:00:00',0),(4885,0,0,'H','2526','','',4885,0,0,'2025-11-24',4027,2946,0,0,2868,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4769,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 09:33:07','','0000-00-00 00:00:00',0),(4886,0,0,'H','2526','','',4886,0,0,'2025-11-24',4028,2947,0,0,2869,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4770,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 09:36:40','','0000-00-00 00:00:00',0),(4887,0,0,'H','2526','','',4887,0,0,'2025-11-24',4030,2463,0,0,2407,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4771,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 09:47:19','','0000-00-00 00:00:00',0),(4888,0,0,'H','2526','','',4888,0,0,'2025-11-24',4029,2948,0,0,2870,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',4772,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 09:49:05','','0000-00-00 00:00:00',0),(4889,0,0,'H','2526','','',4889,0,0,'2025-11-24',4031,1541,0,0,1500,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4773,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 09:54:22','','0000-00-00 00:00:00',0),(4890,0,0,'H','2526','','',4890,0,0,'2025-11-24',4032,2949,0,0,2871,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4774,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 09:57:10','','0000-00-00 00:00:00',0),(4891,0,0,'H','2526','','',4891,0,0,'2025-11-24',4033,1896,0,0,1850,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4775,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 09:59:03','','0000-00-00 00:00:00',0),(4892,0,0,'H','2526','','',4892,0,0,'2025-11-24',4035,2950,0,0,2873,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4776,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 10:15:02','','0000-00-00 00:00:00',0),(4893,0,0,'H','2526','','',4893,0,0,'2025-11-24',4034,2676,0,0,2872,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4777,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 10:17:04','','0000-00-00 00:00:00',0),(4894,0,0,'H','2526','','',4894,0,0,'2025-11-24',4038,163,0,0,151,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4778,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 10:17:11','','0000-00-00 00:00:00',0),(4895,0,0,'H','2526','','',4895,0,0,'2025-11-24',4037,2675,0,0,2875,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4779,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 10:17:33','','0000-00-00 00:00:00',0),(4896,0,0,'H','2526','','',4896,0,0,'2025-11-24',4040,2447,0,0,2390,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4780,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 10:21:25','','0000-00-00 00:00:00',0),(4897,0,0,'H','2526','','',4897,0,0,'2025-11-24',4041,2951,0,0,2876,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4781,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 10:22:55','','0000-00-00 00:00:00',0),(4898,0,0,'H','2526','','',4898,0,0,'2025-11-24',4042,2952,0,0,2877,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4782,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 10:29:10','','0000-00-00 00:00:00',0),(4899,0,0,'H','2526','','',4899,0,0,'2025-11-24',4043,2953,0,0,2878,'B',900.00,0.00,'7','bob','','53207','','0000-00-00','scan','',4783,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 10:31:21','','0000-00-00 00:00:00',0),(4900,0,0,'H','2526','','',4900,0,0,'2025-11-24',4044,2954,0,0,2879,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4784,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 10:33:38','','0000-00-00 00:00:00',0),(4901,0,0,'H','2526','','',4901,0,0,'2025-11-24',4045,2762,0,0,2693,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4785,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 10:33:44','','0000-00-00 00:00:00',0),(4902,0,0,'H','2526','','',4902,0,0,'2025-11-24',4046,2955,0,0,2880,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4786,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 10:35:56','','0000-00-00 00:00:00',0),(4903,0,0,'H','2526','','',4903,0,0,'2025-11-24',4048,2738,0,0,2669,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4787,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 10:39:31','','0000-00-00 00:00:00',0),(4904,0,0,'H','2526','','',4904,0,0,'2025-11-24',4049,2957,0,0,2881,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4788,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 10:42:03','','0000-00-00 00:00:00',0),(4905,0,0,'H','2526','','',4905,0,0,'2025-11-24',4050,820,0,0,789,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4789,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 10:48:18','','0000-00-00 00:00:00',0),(4906,0,0,'H','2526','','P',4906,0,0,'2025-11-24',4047,2956,0,191,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',5700,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-24 10:50:33','riya','2025-12-01 14:33:15',0),(4907,0,0,'H','2526','','',4907,0,0,'2025-11-24',4050,820,0,0,789,'D',-300.00,0.00,'CSH','','','','','2025-11-24','','',4790,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 10:50:49','','0000-00-00 00:00:00',0),(4908,0,0,'H','2526','','',4908,0,0,'2025-11-24',4051,2455,0,0,2399,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4791,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 10:54:21','','0000-00-00 00:00:00',0),(4909,0,0,'H','2526','','',4909,0,0,'2025-11-24',4036,2201,0,0,2874,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',4792,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 10:55:25','','0000-00-00 00:00:00',0),(4910,0,0,'H','2526','','',4910,0,0,'2025-11-24',4052,2958,0,0,2882,'B',900.00,0.00,'7','idfc ','','84046','','0000-00-00','scan','',4793,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 10:58:42','','0000-00-00 00:00:00',0),(4911,0,0,'H','2526','','',4911,0,0,'2025-11-24',4053,2547,0,0,2489,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4794,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 10:59:47','','0000-00-00 00:00:00',0),(4912,0,0,'H','2526','','',4912,0,0,'2025-11-24',4055,2960,0,0,2883,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4795,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 11:07:43','','0000-00-00 00:00:00',0),(4913,0,0,'H','2526','','P',4913,0,0,'2025-11-24',4054,2959,0,192,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',5101,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-24 11:09:41','vishal','2025-11-26 13:05:43',0),(4914,0,0,'H','2526','','',4914,0,0,'2025-11-24',4041,2951,0,0,2876,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',4796,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 11:10:14','','0000-00-00 00:00:00',0),(4915,0,0,'H','2526','','',4915,0,0,'2025-11-24',4057,2962,0,0,2885,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4797,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 11:15:59','','0000-00-00 00:00:00',0),(4916,0,0,'H','2526','','',4916,0,0,'2025-11-24',4058,2963,0,0,2886,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4798,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 11:23:38','','0000-00-00 00:00:00',0),(4917,0,0,'H','2526','','',4917,0,0,'2025-11-24',4060,2964,0,0,2887,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4799,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 11:24:14','','0000-00-00 00:00:00',0),(4918,0,0,'H','2526','','',4918,0,0,'2025-11-24',4061,2965,0,0,2888,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4800,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 11:24:53','','0000-00-00 00:00:00',0),(4919,0,0,'H','2526','','',4919,0,0,'2025-11-24',4062,2600,0,0,2543,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4801,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 11:25:59','','0000-00-00 00:00:00',0),(4920,0,0,'H','2526','','',4920,0,0,'2025-11-24',4063,2966,0,0,2889,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4802,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 11:26:13','','0000-00-00 00:00:00',0),(4921,0,0,'H','2526','','',4921,0,0,'2025-11-24',4064,2238,0,0,2183,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4803,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 11:26:23','','0000-00-00 00:00:00',0),(4922,0,0,'H','2526','','',4922,0,0,'2025-11-24',4065,2967,0,0,2890,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4804,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 11:29:14','','0000-00-00 00:00:00',0),(4923,0,0,'H','2526','','',4923,0,0,'2025-11-24',4066,2968,0,0,2891,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4805,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 11:30:18','','0000-00-00 00:00:00',0),(4924,0,0,'H','2526','','',4924,0,0,'2025-11-24',4067,2621,0,0,2561,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4806,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-24 11:32:17','','0000-00-00 00:00:00',0),(4925,0,0,'H','2526','','',4925,0,0,'2025-11-24',4068,2969,0,0,2892,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4807,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 11:32:34','','0000-00-00 00:00:00',0),(4926,0,0,'H','2526','','',4926,0,0,'2025-11-24',4069,2970,0,0,2893,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4808,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 11:34:28','','0000-00-00 00:00:00',0),(4927,0,0,'H','2526','','',4927,0,0,'2025-11-24',4071,1233,0,0,1194,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4809,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 11:36:37','','0000-00-00 00:00:00',0),(4928,0,0,'H','2526','','',4928,0,0,'2025-11-24',4070,2971,0,0,2894,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4810,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 11:36:52','','0000-00-00 00:00:00',0),(4929,0,0,'H','2526','','',4929,0,0,'2025-11-24',4021,2941,0,0,2863,'B',350.00,0.00,'CSH','','','','','0000-00-00','','',4811,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 11:38:16','','0000-00-00 00:00:00',0),(4930,0,0,'H','2526','','',4930,0,0,'2025-11-24',4072,2972,0,0,2895,'B',800.00,0.00,'7','central','','05189','','0000-00-00','scan','',4812,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 11:41:30','','0000-00-00 00:00:00',0),(4931,0,0,'H','2526','','',4931,0,0,'2025-11-24',4073,2973,0,0,2896,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4813,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 11:41:55','','0000-00-00 00:00:00',0),(4932,0,0,'H','2526','','',4932,0,0,'2025-11-24',4052,2958,0,0,2882,'B',4600.00,0.00,'7','idfc ','','18326','','0000-00-00','scan','',4814,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 11:44:58','','0000-00-00 00:00:00',0),(4933,0,0,'H','2526','','',4933,0,0,'2025-11-24',4075,2975,0,0,2898,'B',750.00,0.00,'7','rajkot nagrik','','01695','','0000-00-00','scan ','',4815,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 11:50:14','','0000-00-00 00:00:00',0),(4934,0,0,'H','2526','','',4934,0,0,'2025-11-24',4056,2961,0,0,2884,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',4816,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-24 11:50:37','','0000-00-00 00:00:00',0),(4935,0,0,'H','2526','','',4935,0,0,'2025-11-24',4026,2945,0,0,2867,'B',550.00,0.00,'7','SBI BANK','','18717','','0000-00-00','scan ','',4817,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 11:53:26','','0000-00-00 00:00:00',0),(4936,0,0,'H','2526','','',4936,0,0,'2025-11-24',4076,657,0,0,627,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4818,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 11:54:01','','0000-00-00 00:00:00',0),(4937,0,0,'H','2526','','',4937,0,0,'2025-11-24',4077,2976,0,0,2899,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4819,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-24 11:56:48','','0000-00-00 00:00:00',0),(4938,0,0,'H','2526','','',4938,0,0,'2025-11-24',4078,1745,0,0,1699,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4820,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 12:00:41','','0000-00-00 00:00:00',0),(4939,0,0,'H','2526','','',4939,0,0,'2025-11-24',4079,22,0,0,21,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4821,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 12:01:41','','0000-00-00 00:00:00',0),(4940,0,0,'H','2526','','',4940,0,0,'2025-11-24',4042,2952,0,0,2877,'B',4500.00,0.00,'7','axis','','05992','','0000-00-00','scan','',4822,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 12:01:43','','0000-00-00 00:00:00',0),(4941,0,0,'H','2526','','',4941,0,0,'2025-11-24',4080,2977,0,0,2900,'B',500.00,0.00,'7','hdfc','','86152','','0000-00-00','scan','',4823,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 12:07:25','','0000-00-00 00:00:00',0),(4942,0,0,'H','2526','','',4942,0,0,'2025-11-24',4081,1227,0,0,1188,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4824,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 12:07:41','','0000-00-00 00:00:00',0),(4943,0,0,'H','2526','','',4943,0,0,'2025-11-24',4082,2978,0,0,2901,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4825,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 12:12:51','','0000-00-00 00:00:00',0),(4944,0,0,'H','2526','','',4944,0,0,'2025-11-24',4083,2979,0,0,2902,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4828,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 12:18:34','','0000-00-00 00:00:00',0),(4945,0,0,'H','2526','','',4945,0,0,'2025-11-24',4084,2980,0,0,2903,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4829,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 12:20:31','','0000-00-00 00:00:00',0),(4946,0,0,'H','2526','','',4946,0,0,'2025-11-24',4035,2950,0,0,2873,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4830,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 12:23:21','','0000-00-00 00:00:00',0),(4947,0,0,'H','2526','','P',4947,0,0,'2025-11-24',4011,2933,0,186,0,'A',3800.00,0.00,'7','KOTAK BANK','','532833108646','','0000-00-00','UPI','',4832,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-24 12:23:26','riya','2025-11-24 12:23:56',0),(4948,0,0,'H','2526','','',4948,0,0,'2025-11-24',4085,2981,0,0,2904,'B',800.00,0.00,'7','axis bank','','21132','','0000-00-00','scan ','',4831,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 12:23:37','','0000-00-00 00:00:00',0),(4949,0,0,'H','2526','','',4949,0,0,'2025-11-24',4086,2982,0,0,2905,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4833,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 12:24:35','','0000-00-00 00:00:00',0),(4950,0,0,'H','2526','','',4950,0,0,'2025-11-24',4087,1403,0,0,1363,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4834,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 12:25:08','','0000-00-00 00:00:00',0),(4951,0,0,'H','2526','','',4951,0,0,'2025-11-24',4088,2983,0,0,2906,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4835,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 12:30:44','','0000-00-00 00:00:00',0),(4952,0,0,'H','2526','','',4952,0,0,'2025-11-24',4089,2362,0,0,2305,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4836,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 12:35:38','','0000-00-00 00:00:00',0),(4953,0,0,'H','2526','','',4953,0,0,'2025-11-24',4043,2953,0,0,2878,'B',4500.00,0.00,'7','bob','','38883','','0000-00-00','scan','',4837,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 12:52:03','','0000-00-00 00:00:00',0),(4954,0,0,'H','2526','','P',4954,0,0,'2025-11-24',3954,2893,0,182,0,'A',11550.00,0.00,'CSH','','','','','0000-00-00','','',4838,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-24 12:52:36','riya','2025-11-24 12:53:36',0),(4955,0,0,'H','2526','','',4955,0,0,'2025-11-24',4091,873,0,0,842,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4839,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 12:56:46','','0000-00-00 00:00:00',0),(4956,0,0,'H','2526','','',4956,0,0,'2025-11-24',4093,2986,0,0,2908,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4840,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 13:00:34','','0000-00-00 00:00:00',0),(4957,0,0,'H','2526','','',4957,0,0,'2025-11-24',4082,2978,0,0,2901,'B',4500.00,0.00,'7','sbi','','43150','','0000-00-00','scan','',4841,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 13:03:40','','0000-00-00 00:00:00',0),(4958,0,0,'H','2526','','P',4958,0,0,'2025-11-24',4092,2985,0,193,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',4984,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-24 13:05:15','vishal','2025-11-25 14:11:28',0),(4959,0,0,'H','2526','','',4959,0,0,'2025-11-24',4094,2987,0,0,2909,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4842,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 13:05:34','','0000-00-00 00:00:00',0),(4960,0,0,'H','2526','','',4960,0,0,'2025-11-24',4090,2984,0,0,2907,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',4843,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-24 13:06:52','','0000-00-00 00:00:00',0),(4961,0,0,'H','2526','','P',4961,0,0,'2025-11-24',4047,2956,0,191,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',5700,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-24 13:12:33','riya','2025-12-01 14:33:15',0),(4962,0,0,'H','2526','','',4962,0,0,'2025-11-24',4083,2979,0,0,2902,'B',350.00,0.00,'CSH','','','','','0000-00-00','','',4844,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 13:14:45','','0000-00-00 00:00:00',0),(4963,0,0,'H','2526','','',4963,0,0,'2025-11-24',4095,2988,0,0,2910,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4845,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 13:16:05','','0000-00-00 00:00:00',0),(4964,0,0,'H','2526','','',4964,0,0,'2025-11-24',4060,2964,0,0,2887,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',4846,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 13:18:18','','0000-00-00 00:00:00',0),(4965,0,0,'H','2526','','',4965,0,0,'2025-11-24',4096,2935,0,0,2861,'B',800.00,0.00,'7','sbi','','25890','','0000-00-00','scan ','',4847,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 13:18:19','','0000-00-00 00:00:00',0),(4966,0,0,'H','2526','','',4966,0,0,'2025-11-24',4098,2990,0,0,2912,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4848,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 13:23:54','','0000-00-00 00:00:00',0),(4967,0,0,'H','2526','','',4967,0,0,'2025-11-24',4099,968,0,0,937,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4849,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 13:26:04','','0000-00-00 00:00:00',0),(4968,0,0,'H','2526','','',4968,0,0,'2025-11-24',4087,1403,0,0,1363,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4850,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 13:40:43','','0000-00-00 00:00:00',0),(4969,0,0,'H','2526','','',4969,0,0,'2025-11-24',4093,2986,0,0,2908,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',4851,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 13:44:00','','0000-00-00 00:00:00',0),(4970,0,0,'H','2526','','',4970,0,0,'2025-11-24',4101,2991,0,0,2914,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4852,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 13:47:27','','0000-00-00 00:00:00',0),(4971,0,0,'H','2526','','',4971,0,0,'2025-11-24',4072,2972,0,0,2895,'B',3000.00,0.00,'7','central','','26655','','0000-00-00','scan','',4853,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 13:52:41','','0000-00-00 00:00:00',0),(4972,0,0,'H','2526','','',4972,0,0,'2025-11-24',4100,2950,0,0,2913,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4854,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-24 13:53:42','','0000-00-00 00:00:00',0),(4973,0,0,'H','2526','','P',4973,0,0,'2025-11-24',3959,2897,0,183,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',5240,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-24 13:57:42','riya','2025-11-27 14:50:04',0),(4974,0,0,'H','2526','','',4974,0,0,'2025-11-24',4102,2992,0,0,2915,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4855,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-24 15:20:13','','0000-00-00 00:00:00',0),(4975,0,0,'H','2526','','',4975,0,0,'2025-11-24',4104,1208,0,0,1169,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4856,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 16:19:18','','0000-00-00 00:00:00',0),(4976,0,0,'H','2526','','',4976,0,0,'2025-11-24',4105,1320,0,0,1281,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4857,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 16:38:33','','0000-00-00 00:00:00',0),(4977,0,0,'H','2526','','',4977,0,0,'2025-11-24',4107,2994,0,0,2917,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4858,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 16:48:44','','0000-00-00 00:00:00',0),(4978,0,0,'H','2526','','P',4978,0,0,'2025-11-24',3962,2899,0,184,0,'A',28000.00,0.00,'7','ICICI BANK','','694436959847','','0000-00-00','','',4976,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-24 16:51:18','vishal','2025-11-25 12:59:38',0),(4979,0,0,'H','2526','','',4979,0,0,'2025-11-24',4108,2374,0,0,2317,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4859,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 17:15:00','','0000-00-00 00:00:00',0),(4980,0,0,'H','2526','','',4980,0,0,'2025-11-24',4109,2995,0,0,2918,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4860,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 17:19:28','','0000-00-00 00:00:00',0),(4981,0,0,'H','2526','','',4981,0,0,'2025-11-24',4111,2996,0,0,2919,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4861,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 17:21:23','','0000-00-00 00:00:00',0),(4982,0,0,'H','2526','','',4982,0,0,'2025-11-24',4112,1140,0,0,1102,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4862,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-24 17:36:03','','0000-00-00 00:00:00',0),(4983,0,0,'H','2526','','',4983,0,0,'2025-11-24',4113,1092,0,0,1059,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4863,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 17:38:27','','0000-00-00 00:00:00',0),(4984,0,0,'H','2526','','',4984,0,0,'2025-11-24',4115,829,0,0,798,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4864,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 17:42:58','','0000-00-00 00:00:00',0),(4985,0,0,'H','2526','','',4985,0,0,'2025-11-24',4107,2994,0,0,2917,'B',6000.00,0.00,'7','icici','','04541','','0000-00-00','scan','',4865,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 17:46:57','','0000-00-00 00:00:00',0),(4986,0,0,'H','2526','','',4986,0,0,'2025-11-24',4116,1060,0,0,1026,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4866,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 17:49:20','','0000-00-00 00:00:00',0),(4987,0,0,'H','2526','','',4987,0,0,'2025-11-24',4117,2997,0,0,2920,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4867,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 17:52:42','','0000-00-00 00:00:00',0),(4988,0,0,'H','2526','','',4988,0,0,'2025-11-24',4119,2426,0,0,2370,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4868,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 17:54:06','','0000-00-00 00:00:00',0),(4989,0,0,'H','2526','','P',4989,0,0,'2025-11-24',3517,2633,0,165,0,'A',20000.00,0.00,'7','ICICI BANK','','108628944849','','0000-00-00','','',5108,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-24 17:56:15','riya','2025-11-26 15:00:29',0),(4990,0,0,'H','2526','','',4990,0,0,'2025-11-24',4109,2995,0,0,2918,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',4869,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 17:58:34','','0000-00-00 00:00:00',0),(4991,0,0,'H','2526','','',4991,0,0,'2025-11-24',4121,2501,0,0,2444,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4870,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 18:03:56','','0000-00-00 00:00:00',0),(4992,0,0,'H','2526','','',4992,0,0,'2025-11-24',4122,2999,0,0,2922,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',4871,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 18:10:12','','0000-00-00 00:00:00',0),(4993,0,0,'H','2526','','',4993,0,0,'2025-11-24',4123,2697,0,0,2629,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4872,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 18:11:10','','0000-00-00 00:00:00',0),(4994,0,0,'H','2526','','',4994,0,0,'2025-11-24',4110,551,0,0,525,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4873,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 18:15:59','','0000-00-00 00:00:00',0),(4995,0,0,'H','2526','','',4995,0,0,'2025-11-24',4124,3000,0,0,2923,'B',500.00,0.00,'7','icici','','94283','','0000-00-00','scan ','',4874,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 18:22:01','','0000-00-00 00:00:00',0),(4996,0,0,'H','2526','','',4996,0,0,'2025-11-24',4126,3001,0,0,2924,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4875,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-24 18:23:44','','0000-00-00 00:00:00',0),(4997,0,0,'H','2526','','',4997,0,0,'2025-11-24',4127,3002,0,0,2925,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4876,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 18:23:51','','0000-00-00 00:00:00',0),(4998,0,0,'H','2526','','',4998,0,0,'2025-11-24',4128,3003,0,0,2926,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4877,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-24 18:25:31','','0000-00-00 00:00:00',0),(4999,0,0,'H','2526','','',4999,0,0,'2025-11-24',4129,2297,0,0,2241,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4878,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 18:25:45','','0000-00-00 00:00:00',0),(5000,0,0,'H','2526','','',5000,0,0,'2025-11-24',4130,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4880,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 18:27:48','','0000-00-00 00:00:00',0),(5001,0,0,'H','2526','','',5001,0,0,'2025-11-24',4120,2635,0,0,2574,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4881,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-24 18:28:17','','0000-00-00 00:00:00',0),(5002,0,0,'H','2526','','',5002,0,0,'2025-11-24',4122,2999,0,0,2922,'D',-700.00,0.00,'CSH','','','','','2025-11-24','','',4879,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 18:29:37','','0000-00-00 00:00:00',0),(5003,0,0,'H','2526','','',5003,0,0,'2025-11-24',4132,3004,0,0,2927,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4882,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 18:29:39','','0000-00-00 00:00:00',0),(5004,0,0,'H','2526','','',5004,0,0,'2025-11-24',4133,2196,0,0,2144,'B',300.00,0.00,'7','HDFC','','52503','','0000-00-00','SCAN','',4883,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-24 18:30:20','','0000-00-00 00:00:00',0),(5005,0,0,'H','2526','','',5005,0,0,'2025-11-24',4122,2999,0,0,2922,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',4884,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 18:30:34','','0000-00-00 00:00:00',0),(5006,0,0,'H','2526','','',5006,0,0,'2025-11-24',4134,3005,0,0,2928,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4885,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 18:37:07','','0000-00-00 00:00:00',0),(5007,0,0,'H','2526','','',5007,0,0,'2025-11-24',4135,2646,0,0,2585,'B',300.00,0.00,'7','HDFC','','71203','','0000-00-00','SCAN','',4886,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-24 18:42:47','','0000-00-00 00:00:00',0),(5008,0,0,'H','2526','','',5008,0,0,'2025-11-24',4136,3006,0,0,2929,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4887,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 18:43:08','','0000-00-00 00:00:00',0),(5009,0,0,'H','2526','','',5009,0,0,'2025-11-24',4138,2056,0,0,2005,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4888,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 18:45:43','','0000-00-00 00:00:00',0),(5010,0,0,'H','2526','','',5010,0,0,'2025-11-24',4139,2396,0,0,2340,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4890,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 18:46:29','','0000-00-00 00:00:00',0),(5011,0,0,'H','2526','','',5011,0,0,'2025-11-24',4140,3007,0,0,2930,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4891,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 18:46:44','','0000-00-00 00:00:00',0),(5012,0,0,'H','2526','','',5012,0,0,'2025-11-24',4129,2297,0,0,2241,'D',-400.00,0.00,'CSH','','','','','2025-11-24','','',4889,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 18:46:51','','0000-00-00 00:00:00',0),(5013,0,0,'H','2526','','',5013,0,0,'2025-11-24',4127,3002,0,0,2925,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',4892,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 18:49:08','','0000-00-00 00:00:00',0),(5014,0,0,'H','2526','','',5014,0,0,'2025-11-24',4103,2993,0,0,2916,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4894,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 18:52:15','','0000-00-00 00:00:00',0),(5015,0,0,'H','2526','','',5015,0,0,'2025-11-24',4142,3009,0,0,2932,'B',700.00,0.00,'7','south indian','','58226','','0000-00-00','scan','',4895,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 18:58:01','','0000-00-00 00:00:00',0),(5016,0,0,'H','2526','','',5016,0,0,'2025-11-24',4143,129,0,0,118,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4896,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 19:00:38','','0000-00-00 00:00:00',0),(5017,0,0,'H','2526','','',5017,0,0,'2025-11-24',4144,1616,0,0,2528,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4897,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-24 19:04:58','','0000-00-00 00:00:00',0),(5018,0,0,'H','2526','','P',5018,0,0,'2025-11-24',4018,2938,0,188,0,'A',4100.00,0.00,'7','AXIS BANK','','5800','','0000-00-00','','',4899,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-24 19:10:03','vishal','2025-11-24 19:11:00',0),(5019,0,0,'H','2526','','',5019,0,0,'2025-11-24',4137,2740,0,0,2671,'B',400.00,0.00,'7','BOI BANK','','24492','','0000-00-00','scan ','',4900,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 19:16:34','','0000-00-00 00:00:00',0),(5020,0,0,'H','2526','','',5020,0,0,'2025-11-24',4146,3011,0,0,2934,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4901,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 19:19:30','','0000-00-00 00:00:00',0),(5021,0,0,'H','2526','','',5021,0,0,'2025-11-24',4147,3012,0,0,2935,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4902,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 19:21:36','','0000-00-00 00:00:00',0),(5022,0,0,'H','2526','','',5022,0,0,'2025-11-24',4145,3010,0,0,2933,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4903,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-24 19:25:55','','0000-00-00 00:00:00',0),(5023,0,0,'H','2526','','',5023,0,0,'2025-11-24',4148,3013,0,0,2936,'B',500.00,0.00,'7','sbi','','83553','','0000-00-00','scan                          ','',4904,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 19:30:49','','0000-00-00 00:00:00',0),(5024,0,0,'H','2526','','',5024,0,0,'2025-11-24',4149,2758,0,0,2689,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4905,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 19:33:24','','0000-00-00 00:00:00',0),(5025,0,0,'H','2526','','',5025,0,0,'2025-11-24',4151,3015,0,0,2938,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4906,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 19:36:23','','0000-00-00 00:00:00',0),(5026,0,0,'H','2526','','',5026,0,0,'2025-11-24',4152,3016,0,0,2939,'B',700.00,0.00,'7','SBI','','42908','','0000-00-00','SCAN','',4907,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-24 19:52:17','','0000-00-00 00:00:00',0),(5027,0,0,'H','2526','','',5027,0,0,'2025-11-24',4153,3017,0,0,2940,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4908,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-24 19:53:18','','0000-00-00 00:00:00',0),(5028,0,0,'H','2526','','',5028,0,0,'2025-11-24',4028,2947,0,0,2869,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',4909,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-24 19:57:43','','0000-00-00 00:00:00',0),(5029,0,0,'H','2526','','P',5029,0,0,'2025-11-24',4017,2937,0,187,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-24 20:39:17','vishal','2025-11-24 20:39:17',0),(5030,0,0,'H','2526','','P',5030,0,0,'2025-11-24',4125,2612,0,194,0,'A',15000.00,0.00,'CRD','AXIS BANK','','4422','','0000-00-00','','',5234,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-24 20:47:03','riya','2025-11-27 13:28:25',0),(5031,0,0,'H','2526','','',5031,0,0,'2025-11-24',4155,3019,0,0,2941,'B',800.00,0.00,'7','SBI BANK','','94499','','0000-00-00','scan ','',4911,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-24 20:52:07','','0000-00-00 00:00:00',0),(5032,0,0,'H','2526','','P',5032,0,0,'2025-11-24',4010,2932,0,185,0,'A',8500.00,0.00,'7','PNB','','4993','','0000-00-00','','',4914,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-24 21:28:48','vishal','2025-11-24 21:29:09',0),(5033,0,0,'H','2526','','P',5033,0,0,'2025-11-24',3630,2699,0,174,0,'A',17000.00,0.00,'CSH','','','','','0000-00-00','','',4915,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-24 21:46:44','vishal','2025-11-24 21:47:11',0),(5034,0,0,'H','2526','','',5034,0,0,'2025-11-25',4156,3019,0,0,2941,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4916,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 08:48:19','','0000-00-00 00:00:00',0),(5035,0,0,'H','2526','','',5035,0,0,'2025-11-25',4157,3020,0,0,2942,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4917,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 09:06:08','','0000-00-00 00:00:00',0),(5036,0,0,'H','2526','','P',5036,0,0,'2025-11-25',4158,3021,0,196,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',5095,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-25 09:13:04','vishal','2025-11-26 12:33:57',0),(5037,0,0,'H','2526','','P',5037,0,0,'2025-11-25',3764,2780,0,178,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',6344,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-25 09:36:17','riya','2025-12-06 09:28:53',0),(5038,0,0,'H','2526','','P',5038,0,0,'2025-11-25',4159,393,0,197,0,'A',15000.00,0.00,'7','RNSB','','5036','','0000-00-00','','',5402,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-25 09:47:57','vishal','2025-11-28 12:48:44',0),(5039,0,0,'H','2526','','',5039,0,0,'2025-11-25',4160,2214,0,0,2159,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4918,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 09:52:46','','0000-00-00 00:00:00',0),(5040,0,0,'H','2526','','',5040,0,0,'2025-11-25',4162,1280,0,0,1239,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4919,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 10:04:36','','0000-00-00 00:00:00',0),(5041,0,0,'H','2526','','P',5041,0,0,'2025-11-25',4161,2782,0,198,0,'A',50000.00,0.00,'CSH','','','','','0000-00-00','','',5311,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-25 10:05:35','riya','2025-11-27 20:46:39',0),(5042,0,0,'H','2526','','',5042,0,0,'2025-11-25',4163,3022,0,0,2943,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4920,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 10:07:57','','0000-00-00 00:00:00',0),(5043,0,0,'H','2526','','',5043,0,0,'2025-11-25',4164,2894,0,0,2824,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4921,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 10:08:26','','0000-00-00 00:00:00',0),(5044,0,0,'H','2526','','',5044,0,0,'2025-11-25',4165,2507,0,0,2448,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',4922,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 10:12:53','','0000-00-00 00:00:00',0),(5045,0,0,'H','2526','','',5045,0,0,'2025-11-25',4167,3023,0,0,2944,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4923,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-25 10:23:12','','0000-00-00 00:00:00',0),(5046,0,0,'H','2526','','',5046,0,0,'2025-11-25',4168,1662,0,0,1617,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4924,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 10:27:44','','0000-00-00 00:00:00',0),(5047,0,0,'H','2526','','',5047,0,0,'2025-11-25',4170,3024,0,0,2945,'B',900.00,0.00,'7','SBI BANK','','81057','','0000-00-00','scan ','',4925,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 10:32:49','','0000-00-00 00:00:00',0),(5048,0,0,'H','2526','','',5048,0,0,'2025-11-25',4171,3025,0,0,2946,'B',750.00,0.00,'7','HDFC BANK','','44483','','0000-00-00','scan ','',4926,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 10:35:57','','0000-00-00 00:00:00',0),(5049,0,0,'H','2526','','',5049,0,0,'2025-11-25',4172,3026,0,0,2947,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4927,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 10:41:37','','0000-00-00 00:00:00',0),(5050,0,0,'H','2526','','',5050,0,0,'2025-11-25',4173,3027,0,0,2948,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4928,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 10:45:03','','0000-00-00 00:00:00',0),(5051,0,0,'H','2526','','',5051,0,0,'2025-11-25',4167,3023,0,0,2944,'B',600.00,0.00,'7','YES BANK','','62848','','0000-00-00','SCAN','',4929,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-25 11:02:43','','0000-00-00 00:00:00',0),(5052,0,0,'H','2526','','',5052,0,0,'2025-11-25',4174,3028,0,0,2949,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4930,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 11:05:19','','0000-00-00 00:00:00',0),(5053,0,0,'H','2526','','',5053,0,0,'2025-11-25',4175,3029,0,0,2950,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4931,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 11:06:02','','0000-00-00 00:00:00',0),(5054,0,0,'H','2526','','',5054,0,0,'2025-11-25',4176,3030,0,0,2951,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4932,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 11:09:46','','0000-00-00 00:00:00',0),(5055,0,0,'H','2526','','',5055,0,0,'2025-11-25',4177,3031,0,0,2952,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4933,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 11:10:51','','0000-00-00 00:00:00',0),(5056,0,0,'H','2526','','',5056,0,0,'2025-11-25',4179,3033,0,0,2954,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4934,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 11:12:16','','0000-00-00 00:00:00',0),(5057,0,0,'H','2526','','',5057,0,0,'2025-11-25',4178,3032,0,0,2953,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4935,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 11:12:35','','0000-00-00 00:00:00',0),(5058,0,0,'H','2526','','',5058,0,0,'2025-11-25',4181,3035,0,0,2956,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4936,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 11:14:03','','0000-00-00 00:00:00',0),(5059,0,0,'H','2526','','',5059,0,0,'2025-11-25',4180,3034,0,0,2955,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4937,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 11:14:05','','0000-00-00 00:00:00',0),(5060,0,0,'H','2526','','',5060,0,0,'2025-11-25',4182,3036,0,0,2957,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4938,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 11:14:48','','0000-00-00 00:00:00',0),(5061,0,0,'H','2526','','',5061,0,0,'2025-11-25',4183,3037,0,0,2958,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4939,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 11:17:09','','0000-00-00 00:00:00',0),(5062,0,0,'H','2526','','',5062,0,0,'2025-11-25',4184,3038,0,0,2959,'B',500.00,0.00,'7','sbi','','01195','','0000-00-00','scan  ','',4940,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 11:21:09','','0000-00-00 00:00:00',0),(5063,0,0,'H','2526','','',5063,0,0,'2025-11-25',4185,2596,0,0,2539,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4941,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 11:22:17','','0000-00-00 00:00:00',0),(5064,0,0,'H','2526','','',5064,0,0,'2025-11-25',4182,3036,0,0,2957,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',4942,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 11:22:38','','0000-00-00 00:00:00',0),(5065,0,0,'H','2526','','',5065,0,0,'2025-11-25',4169,1193,0,0,1153,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4943,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 11:23:01','','0000-00-00 00:00:00',0),(5066,0,0,'H','2526','','',5066,0,0,'2025-11-25',4186,3039,0,0,2960,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4944,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 11:24:10','','0000-00-00 00:00:00',0),(5067,0,0,'H','2526','','',5067,0,0,'2025-11-25',4170,3024,0,0,2945,'B',5600.00,0.00,'7','SBI','','08746','','0000-00-00','SCAN','',4945,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 11:26:54','','0000-00-00 00:00:00',0),(5068,0,0,'H','2526','','',5068,0,0,'2025-11-25',4187,3040,0,0,2961,'B',750.00,0.00,'7','SBI BANK','','88488','','0000-00-00','scan ','',4946,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 11:30:55','','0000-00-00 00:00:00',0),(5069,0,0,'H','2526','','',5069,0,0,'2025-11-25',4188,3041,0,0,2962,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4947,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 11:35:29','','0000-00-00 00:00:00',0),(5070,0,0,'H','2526','','',5070,0,0,'2025-11-25',4163,3022,0,0,2943,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4948,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 11:36:57','','0000-00-00 00:00:00',0),(5071,0,0,'H','2526','','',5071,0,0,'2025-11-25',4189,3042,0,0,2963,'B',400.00,0.00,'7','amreli jilla','','74429','','0000-00-00','scan ','',4949,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 11:37:52','','0000-00-00 00:00:00',0),(5072,0,0,'H','2526','','',5072,0,0,'2025-11-25',4184,3038,0,0,2959,'B',1000.00,0.00,'7','sbi','','09423','','0000-00-00','scan            ','',4950,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 11:38:48','','0000-00-00 00:00:00',0),(5073,0,0,'H','2526','','',5073,0,0,'2025-11-25',4190,1842,0,0,1797,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4951,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 11:39:38','','0000-00-00 00:00:00',0),(5074,0,0,'H','2526','','',5074,0,0,'2025-11-25',4191,3043,0,0,2964,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4952,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 11:41:39','','0000-00-00 00:00:00',0),(5075,0,0,'H','2526','','',5075,0,0,'2025-11-25',4192,3044,0,0,2965,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4953,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 11:43:15','','0000-00-00 00:00:00',0),(5076,0,0,'H','2526','','',5076,0,0,'2025-11-25',4193,3045,0,0,2966,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',4955,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 11:47:22','','0000-00-00 00:00:00',0),(5077,0,0,'H','2526','','',5077,0,0,'2025-11-25',4176,3030,0,0,2951,'D',-750.00,0.00,'CSH','','','','','2025-11-25','','',4954,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 11:47:41','','0000-00-00 00:00:00',0),(5078,0,0,'H','2526','','',5078,0,0,'2025-11-25',4177,3031,0,0,2952,'D',-750.00,0.00,'CSH','','','','','2025-11-25','','',4956,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 11:48:48','','0000-00-00 00:00:00',0),(5079,0,0,'H','2526','','',5079,0,0,'2025-11-25',4176,3030,0,0,2951,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4957,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 11:49:24','','0000-00-00 00:00:00',0),(5080,0,0,'H','2526','','',5080,0,0,'2025-11-25',4177,3031,0,0,2952,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4958,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 11:50:57','','0000-00-00 00:00:00',0),(5081,0,0,'H','2526','','P',5081,0,0,'2025-11-25',3861,2834,0,179,0,'A',20000.00,0.00,'7','AXIS BANK','','9684','','0000-00-00','','',5592,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-25 11:52:30','vishal','2025-11-30 13:51:49',0),(5082,0,0,'H','2526','','',5082,0,0,'2025-11-25',4194,2607,0,0,2967,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4959,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 11:58:58','','0000-00-00 00:00:00',0),(5083,0,0,'H','2526','','',5083,0,0,'2025-11-25',4195,3046,0,0,2968,'B',500.00,0.00,'7','ICICI','','24914','','0000-00-00','SCAN','',4961,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 12:04:49','','0000-00-00 00:00:00',0),(5084,0,0,'H','2526','','P',5084,0,0,'2025-11-25',4020,2940,0,190,0,'A',10000.00,0.00,'7','HDFC BANK','','9418','','0000-00-00','','',4962,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-25 12:06:21','vishal','2025-11-25 12:06:44',0),(5085,0,0,'H','2526','','',5085,0,0,'2025-11-25',4196,444,0,0,422,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4963,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-25 12:07:08','','0000-00-00 00:00:00',0),(5086,0,0,'H','2526','','',5086,0,0,'2025-11-25',4195,3046,0,0,2968,'B',1000.00,0.00,'7','icici','','40696','','0000-00-00','scan                          ','',4964,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 12:11:43','','0000-00-00 00:00:00',0),(5087,0,0,'H','2526','','',5087,0,0,'2025-11-25',4186,3039,0,0,2960,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',4965,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 12:20:09','','0000-00-00 00:00:00',0),(5088,0,0,'H','2526','','',5088,0,0,'2025-11-25',4197,1976,0,0,1928,'B',100.00,0.00,'7','INDIA POST PAY','','65409','','0000-00-00','SCAN','',4966,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-25 12:22:19','','0000-00-00 00:00:00',0),(5089,0,0,'H','2526','','',5089,0,0,'2025-11-25',4196,444,0,0,422,'D',-500.00,0.00,'CSH','','','','','2025-11-25','','',4967,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-25 12:24:59','','0000-00-00 00:00:00',0),(5090,0,0,'H','2526','','',5090,0,0,'2025-11-25',4198,3047,0,0,2969,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4968,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 12:27:07','','0000-00-00 00:00:00',0),(5091,0,0,'H','2526','','',5091,0,0,'2025-11-25',4199,3048,0,0,2970,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4970,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 12:29:15','','0000-00-00 00:00:00',0),(5092,0,0,'H','2526','','',5092,0,0,'2025-11-25',4200,887,0,0,855,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4971,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 12:32:22','','0000-00-00 00:00:00',0),(5093,0,0,'H','2526','','P',5093,0,0,'2025-11-25',4166,2380,0,199,0,'A',35000.00,0.00,'CSH','','','','','0000-00-00','','',5160,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-25 12:37:00','riya','2025-11-26 20:27:03',0),(5094,0,0,'H','2526','','',5094,0,0,'2025-11-25',4201,2215,0,0,2160,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4972,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 12:40:43','','0000-00-00 00:00:00',0),(5095,0,0,'H','2526','','',5095,0,0,'2025-11-25',4192,3044,0,0,2965,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',4973,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 12:50:54','','0000-00-00 00:00:00',0),(5096,0,0,'H','2526','','',5096,0,0,'2025-11-25',4178,3032,0,0,2953,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',4974,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 12:51:03','','0000-00-00 00:00:00',0),(5097,0,0,'H','2526','','',5097,0,0,'2025-11-25',4202,3049,0,0,2971,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4975,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 12:56:15','','0000-00-00 00:00:00',0),(5098,0,0,'H','2526','','',5098,0,0,'2025-11-25',4203,2358,0,0,2301,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4977,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-25 12:59:43','','0000-00-00 00:00:00',0),(5099,0,0,'H','2526','','',5099,0,0,'2025-11-25',4194,2607,0,0,2967,'D',-400.00,0.00,'CSH','','','','','2025-11-25','','',4978,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 13:03:07','','0000-00-00 00:00:00',0),(5100,0,0,'H','2526','','',5100,0,0,'2025-11-25',4187,3040,0,0,2961,'D',-750.00,0.00,'7','SBI BANK','','88488','','2025-11-25','','',4979,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 13:06:24','','0000-00-00 00:00:00',0),(5101,0,0,'H','2526','','',5101,0,0,'2025-11-25',4202,3049,0,0,2971,'D',-800.00,0.00,'CSH','','','','','2025-11-25','','',4980,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 13:16:52','','0000-00-00 00:00:00',0),(5102,0,0,'H','2526','','',5102,0,0,'2025-11-25',4202,3049,0,0,2971,'B',1400.00,0.00,'CSH','','','','','0000-00-00','','',4981,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 13:18:03','','0000-00-00 00:00:00',0),(5103,0,0,'H','2526','','',5103,0,0,'2025-11-25',4204,3050,0,0,2972,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',4982,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 13:27:40','','0000-00-00 00:00:00',0),(5104,0,0,'H','2526','','P',5104,0,0,'2025-11-25',4047,2956,0,191,0,'A',50000.00,0.00,'CSH','','','','','0000-00-00','','',5700,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-25 13:35:18','riya','2025-12-01 14:33:15',0),(5105,0,0,'H','2526','','P',5105,0,0,'2025-11-25',4092,2985,0,193,0,'A',3100.00,0.00,'CSH','','','','','0000-00-00','','',4984,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-25 14:11:06','vishal','2025-11-25 14:11:28',0),(5106,0,0,'H','2526','','',5106,0,0,'2025-11-25',4205,2713,0,0,2643,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',4985,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-25 16:47:58','','0000-00-00 00:00:00',0),(5107,0,0,'H','2526','','',5107,0,0,'2025-11-25',4206,1861,0,0,1815,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4986,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 17:05:29','','0000-00-00 00:00:00',0),(5108,0,0,'H','2526','','',5108,0,0,'2025-11-25',4207,3051,0,0,2973,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4987,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 17:07:56','','0000-00-00 00:00:00',0),(5109,0,0,'H','2526','','',5109,0,0,'2025-11-25',4208,3052,0,0,2974,'B',500.00,0.00,'7','SBI','','03319','','0000-00-00','SCAN','',4988,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 17:08:31','','0000-00-00 00:00:00',0),(5110,0,0,'H','2526','','',5110,0,0,'2025-11-25',4210,2757,0,0,2688,'B',400.00,0.00,'7','ICICI','','02201','','0000-00-00','SCAN','',4989,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 17:19:41','','0000-00-00 00:00:00',0),(5111,0,0,'H','2526','','',5111,0,0,'2025-11-25',4211,2991,0,0,2914,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',4990,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 17:27:56','','0000-00-00 00:00:00',0),(5112,0,0,'H','2526','','',5112,0,0,'2025-11-25',4212,429,0,0,407,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4991,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 17:36:23','','0000-00-00 00:00:00',0),(5113,0,0,'H','2526','','',5113,0,0,'2025-11-25',4214,3054,0,0,2976,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',4992,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 17:41:24','','0000-00-00 00:00:00',0),(5114,0,0,'H','2526','','',5114,0,0,'2025-11-25',4215,3055,0,0,2977,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4993,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 17:42:35','','0000-00-00 00:00:00',0),(5115,0,0,'H','2526','','',5115,0,0,'2025-11-25',4218,3058,0,0,2980,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',4994,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 17:49:54','','0000-00-00 00:00:00',0),(5116,0,0,'H','2526','','',5116,0,0,'2025-11-25',4217,3057,0,0,2979,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4995,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 17:50:51','','0000-00-00 00:00:00',0),(5117,0,0,'H','2526','','',5117,0,0,'2025-11-25',4216,3056,0,0,2978,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',4996,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 17:51:01','','0000-00-00 00:00:00',0),(5118,0,0,'H','2526','','',5118,0,0,'2025-11-25',4219,3059,0,0,2981,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4997,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 17:51:16','','0000-00-00 00:00:00',0),(5119,0,0,'H','2526','','',5119,0,0,'2025-11-25',4220,3060,0,0,2982,'B',500.00,0.00,'7','SBI','','97178','','0000-00-00','SCAN','',4998,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 17:54:07','','0000-00-00 00:00:00',0),(5120,0,0,'H','2526','','',5120,0,0,'2025-11-25',4213,1740,0,0,1694,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',4999,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-25 17:58:21','','0000-00-00 00:00:00',0),(5121,0,0,'H','2526','','',5121,0,0,'2025-11-25',4221,3061,0,0,2983,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5000,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 17:59:11','','0000-00-00 00:00:00',0),(5122,0,0,'H','2526','','',5122,0,0,'2025-11-25',4222,3062,0,0,2984,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5001,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 18:00:33','','0000-00-00 00:00:00',0),(5123,0,0,'H','2526','','',5123,0,0,'2025-11-25',4214,3054,0,0,2976,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',5002,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 18:00:55','','0000-00-00 00:00:00',0),(5124,0,0,'H','2526','','',5124,0,0,'2025-11-25',4223,916,0,0,884,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5003,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 18:02:04','','0000-00-00 00:00:00',0),(5125,0,0,'H','2526','','',5125,0,0,'2025-11-25',4224,3063,0,0,2985,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5004,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 18:04:35','','0000-00-00 00:00:00',0),(5126,0,0,'H','2526','','',5126,0,0,'2025-11-25',4225,2754,0,0,2685,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5005,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 18:05:17','','0000-00-00 00:00:00',0),(5127,0,0,'H','2526','','',5127,0,0,'2025-11-25',4226,3064,0,0,2986,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5006,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 18:05:50','','0000-00-00 00:00:00',0),(5128,0,0,'H','2526','','',5128,0,0,'2025-11-25',4227,3065,0,0,2987,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5007,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 18:08:18','','0000-00-00 00:00:00',0),(5129,0,0,'H','2526','','',5129,0,0,'2025-11-25',4229,3067,0,0,2989,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5008,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 18:11:20','','0000-00-00 00:00:00',0),(5130,0,0,'H','2526','','',5130,0,0,'2025-11-25',4228,3066,0,0,2988,'B',500.00,0.00,'7','SBI','','59562','','0000-00-00','SCAN','',5009,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-25 18:11:33','','0000-00-00 00:00:00',0),(5131,0,0,'H','2526','','P',5131,0,0,'2025-11-25',3909,2866,0,181,0,'A',15000.00,0.00,'7','ICICI BANK','','108635293894','','0000-00-00','UPI','',5995,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-25 18:14:01','riya','2025-12-03 16:54:08',0),(5132,0,0,'H','2526','','',5132,0,0,'2025-11-25',4230,2593,0,0,2536,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5010,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 18:14:18','','0000-00-00 00:00:00',0),(5133,0,0,'H','2526','','',5133,0,0,'2025-11-25',4218,3058,0,0,2980,'B',4200.00,0.00,'CSH','','','','','0000-00-00','','',5011,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 18:16:36','','0000-00-00 00:00:00',0),(5134,0,0,'H','2526','','',5134,0,0,'2025-11-25',4231,3068,0,0,2990,'B',1400.00,0.00,'CSH','','','','','0000-00-00','','',5012,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 18:18:23','','0000-00-00 00:00:00',0),(5135,0,0,'H','2526','','',5135,0,0,'2025-11-25',4233,3069,0,0,2991,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5013,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 18:30:47','','0000-00-00 00:00:00',0),(5136,0,0,'H','2526','','',5136,0,0,'2025-11-25',4232,2150,0,0,2097,'B',400.00,0.00,'7','IDBI','','08726','','0000-00-00','SCAN','',5014,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 18:31:06','','0000-00-00 00:00:00',0),(5137,0,0,'H','2526','','',5137,0,0,'2025-11-25',4235,2001,0,0,1953,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5015,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 18:32:39','','0000-00-00 00:00:00',0),(5138,0,0,'H','2526','','',5138,0,0,'2025-11-25',4234,1052,0,0,1018,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5016,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 18:32:42','','0000-00-00 00:00:00',0),(5139,0,0,'H','2526','','',5139,0,0,'2025-11-25',4236,3070,0,0,2992,'B',750.00,0.00,'7','AXIS','','63876','','0000-00-00','SCAN','',5017,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 18:33:17','','0000-00-00 00:00:00',0),(5140,0,0,'H','2526','','',5140,0,0,'2025-11-25',4226,3064,0,0,2986,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',5018,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 18:35:16','','0000-00-00 00:00:00',0),(5141,0,0,'H','2526','','',5141,0,0,'2025-11-25',4237,234,0,0,221,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',5019,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 18:39:22','','0000-00-00 00:00:00',0),(5142,0,0,'H','2526','','',5142,0,0,'2025-11-25',4238,3071,0,0,2993,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5020,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-25 18:43:23','','0000-00-00 00:00:00',0),(5143,0,0,'H','2526','','',5143,0,0,'2025-11-25',4239,3072,0,0,2994,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5021,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-25 18:46:06','','0000-00-00 00:00:00',0),(5144,0,0,'H','2526','','',5144,0,0,'2025-11-25',4229,3067,0,0,2989,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',5022,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 18:48:24','','0000-00-00 00:00:00',0),(5145,0,0,'H','2526','','',5145,0,0,'2025-11-25',4240,3073,0,0,2995,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5023,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 18:54:41','','0000-00-00 00:00:00',0),(5146,0,0,'H','2526','','',5146,0,0,'2025-11-25',4241,3074,0,0,2996,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5024,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 18:56:50','','0000-00-00 00:00:00',0),(5147,0,0,'H','2526','','',5147,0,0,'2025-11-25',4227,3065,0,0,2987,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',5025,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 18:59:13','','0000-00-00 00:00:00',0),(5148,0,0,'H','2526','','',5148,0,0,'2025-11-25',4217,3057,0,0,2979,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5026,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 19:00:29','','0000-00-00 00:00:00',0),(5149,0,0,'H','2526','','P',5149,0,0,'2025-09-30',4154,3018,0,195,0,'A',12000.00,0.00,'7','SBI BANK','','5036','','0000-00-00','UPI','',5027,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-25 19:01:27','riya','2025-11-25 19:01:58',0),(5150,0,0,'H','2526','','',5150,0,0,'2025-11-25',4242,3075,0,0,2997,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5028,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-25 19:03:17','','0000-00-00 00:00:00',0),(5151,0,0,'H','2526','','',5151,0,0,'2025-11-25',4243,692,0,0,662,'B',500.00,0.00,'7','HDFC','','78423','','0000-00-00','SCAN','',5029,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 19:03:47','','0000-00-00 00:00:00',0),(5152,0,0,'H','2526','','',5152,0,0,'2025-11-25',4244,3076,0,0,2998,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5030,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 19:05:50','','0000-00-00 00:00:00',0),(5153,0,0,'H','2526','','',5153,0,0,'2025-11-25',4230,2593,0,0,2536,'D',-500.00,0.00,'CSH','','','','','2025-11-25','','',5031,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 19:07:22','','0000-00-00 00:00:00',0),(5154,0,0,'H','2526','','',5154,0,0,'2025-11-25',4236,3070,0,0,2992,'B',350.00,0.00,'7','axis bank','','80076','','0000-00-00','scan ','',5032,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 19:16:34','','0000-00-00 00:00:00',0),(5155,0,0,'H','2526','','P',5155,0,0,'2025-11-25',3764,2780,0,178,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',6344,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-25 19:21:34','riya','2025-12-06 09:28:53',0),(5156,0,0,'H','2526','','',5156,0,0,'2025-11-25',4246,2988,0,0,2910,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',5033,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 19:35:28','','0000-00-00 00:00:00',0),(5157,0,0,'H','2526','','',5157,0,0,'2025-11-25',4244,3076,0,0,2998,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5034,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-25 19:44:28','','0000-00-00 00:00:00',0),(5158,0,0,'H','2526','','P',5158,0,0,'2025-11-25',4245,3077,0,200,0,'A',7000.00,0.00,'7','ICICI BANK','','852548362607','','0000-00-00','UPI','',5357,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-25 19:45:14','vishal','2025-11-28 11:21:35',0),(5159,0,0,'H','2526','','',5159,0,0,'2025-11-25',4247,2887,0,0,2818,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',5035,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-25 19:48:54','','0000-00-00 00:00:00',0),(5160,0,0,'H','2526','','',5160,0,0,'2025-11-25',4248,2087,0,0,2033,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5036,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 19:50:33','','0000-00-00 00:00:00',0),(5161,0,0,'H','2526','','',5161,0,0,'2025-11-25',4248,2087,0,0,2033,'D',-300.00,0.00,'CSH','','','','','2025-11-25','','',5037,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 19:51:25','','0000-00-00 00:00:00',0),(5162,0,0,'H','2526','','',5162,0,0,'2025-11-25',4248,2087,0,0,2033,'B',300.00,0.00,'7','bank','','04158','','0000-00-00','scan                          ','',5038,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 19:52:47','','0000-00-00 00:00:00',0),(5163,0,0,'H','2526','','',5163,0,0,'2025-11-25',4252,1883,0,0,1837,'B',100.00,0.00,'7','bob','','77271','','0000-00-00','scan     ','',5039,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 20:03:37','','0000-00-00 00:00:00',0),(5164,0,0,'H','2526','','',5164,0,0,'2025-11-25',4254,3078,0,0,2999,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5040,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 20:05:56','','0000-00-00 00:00:00',0),(5165,0,0,'H','2526','','',5165,0,0,'2025-11-25',4255,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5041,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-25 20:35:33','','0000-00-00 00:00:00',0),(5166,0,0,'H','2526','','',5166,0,0,'2025-11-25',4253,2725,0,0,2655,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5042,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-25 20:36:36','','0000-00-00 00:00:00',0),(5167,0,0,'H','2526','','',5167,0,0,'2025-11-26',4256,3079,0,0,3000,'B',1400.00,0.00,'7','kotak bank','','70528','','0000-00-00','scan','',5043,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 08:54:03','','0000-00-00 00:00:00',0),(5168,0,0,'H','2526','','',5168,0,0,'2025-11-26',4257,3080,0,0,3001,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5044,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 08:57:24','','0000-00-00 00:00:00',0),(5169,0,0,'H','2526','','',5169,0,0,'2025-11-26',4258,3081,0,0,3002,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5045,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 09:37:14','','0000-00-00 00:00:00',0),(5170,0,0,'H','2526','','P',5170,0,0,'2025-11-26',4161,2782,0,198,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',5311,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-26 09:42:36','riya','2025-11-27 20:46:39',0),(5171,0,0,'H','2526','','',5171,0,0,'2025-11-26',4259,3082,0,0,3003,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5046,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 09:42:40','','0000-00-00 00:00:00',0),(5172,0,0,'H','2526','','',5172,0,0,'2025-11-26',4260,3083,0,0,3004,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5047,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 09:44:41','','0000-00-00 00:00:00',0),(5173,0,0,'H','2526','','P',5173,0,0,'2025-11-26',4261,3005,0,201,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',5313,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-26 09:56:19','riya','2025-11-27 21:23:33',0),(5174,0,0,'H','2526','','',5174,0,0,'2025-11-26',4263,2854,0,0,2785,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5048,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 10:03:45','','0000-00-00 00:00:00',0),(5175,0,0,'H','2526','','',5175,0,0,'2025-11-26',4262,3084,0,0,3005,'B',500.00,0.00,'7','union bank','','17816','','0000-00-00','scan  ','',5049,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 10:05:15','','0000-00-00 00:00:00',0),(5176,0,0,'H','2526','','',5176,0,0,'2025-11-26',4264,2584,0,0,2526,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5050,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 10:06:17','','0000-00-00 00:00:00',0),(5177,0,0,'H','2526','','P',5177,0,0,'2025-11-26',4265,2980,0,202,0,'A',45000.00,0.00,'7','hdfc bank','','2568','','0000-00-00','','',5307,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-26 10:19:38','riya','2025-11-27 19:46:28',0),(5178,0,0,'H','2526','','P',5178,0,0,'2025-11-26',4266,3085,0,203,0,'A',15000.00,0.00,'7','other bank','','10017','','0000-00-00','','',6060,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-26 10:34:59','vishal','2025-12-03 20:03:14',0),(5179,0,0,'H','2526','','',5179,0,0,'2025-11-26',4267,1210,0,0,1171,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5051,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 10:38:46','','0000-00-00 00:00:00',0),(5180,0,0,'H','2526','','',5180,0,0,'2025-11-26',4268,2746,0,0,2677,'B',300.00,0.00,'7','bank','','45828','','0000-00-00','scan ','',5052,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 10:41:13','','0000-00-00 00:00:00',0),(5181,0,0,'H','2526','','',5181,0,0,'2025-11-26',4269,2124,0,0,2070,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5053,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 10:48:22','','0000-00-00 00:00:00',0),(5182,0,0,'H','2526','','',5182,0,0,'2025-11-26',4270,3086,0,0,3006,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5054,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 10:54:23','','0000-00-00 00:00:00',0),(5183,0,0,'H','2526','','',5183,0,0,'2025-11-26',4271,1327,0,0,1288,'B',100.00,0.00,'7','bob','','91155','','0000-00-00','scan','',5055,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 10:55:15','','0000-00-00 00:00:00',0),(5184,0,0,'H','2526','','',5184,0,0,'2025-11-26',4272,3087,0,0,3007,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5056,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 10:55:38','','0000-00-00 00:00:00',0),(5185,0,0,'H','2526','','',5185,0,0,'2025-11-26',4273,3088,0,0,3008,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5057,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 10:59:27','','0000-00-00 00:00:00',0),(5186,0,0,'H','2526','','',5186,0,0,'2025-11-26',4274,3089,0,0,3009,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5058,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 11:02:12','','0000-00-00 00:00:00',0),(5187,0,0,'H','2526','','',5187,0,0,'2025-11-18',4271,1327,0,0,1288,'B',100.00,0.00,'7','bob','','91155','','2025-11-18','','',5055,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-26 11:09:58','','0000-00-00 00:00:00',0),(5188,0,0,'H','2526','','',5188,0,0,'2025-11-26',4275,3090,0,0,3010,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5059,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 11:10:07','','0000-00-00 00:00:00',0),(5189,0,0,'H','2526','','',5189,0,0,'2025-11-26',4276,3091,0,0,3011,'B',900.00,0.00,'7','bob','','73478','','0000-00-00','scan','',5060,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 11:14:32','','0000-00-00 00:00:00',0),(5190,0,0,'H','2526','','',5190,0,0,'2025-11-26',4271,1327,0,0,1288,'D',-200.00,0.00,'7','bob','','91155','','2025-11-26','','',5061,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 11:17:13','','0000-00-00 00:00:00',0),(5191,0,0,'H','2526','','',5191,0,0,'2025-11-26',4277,3092,0,0,3012,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5062,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 11:19:23','','0000-00-00 00:00:00',0),(5192,0,0,'H','2526','','',5192,0,0,'2025-11-26',4278,3093,0,0,3013,'B',500.00,0.00,'7','axis','','46605','','0000-00-00','scan','',5063,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 11:19:57','','0000-00-00 00:00:00',0),(5193,0,0,'H','2526','','',5193,0,0,'2025-11-26',4271,1327,0,0,1288,'B',100.00,0.00,'7','bob','','91155','','0000-00-00','scan','',5064,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 11:20:55','','0000-00-00 00:00:00',0),(5194,0,0,'H','2526','','',5194,0,0,'2025-11-26',4279,3094,0,0,3014,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5065,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 11:24:40','','0000-00-00 00:00:00',0),(5195,0,0,'H','2526','','',5195,0,0,'2025-11-26',4280,3095,0,0,3015,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5066,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 11:27:18','','0000-00-00 00:00:00',0),(5196,0,0,'H','2526','','',5196,0,0,'2025-11-26',4273,3088,0,0,3008,'B',350.00,0.00,'CSH','','','','','0000-00-00','','',5067,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 11:33:46','','0000-00-00 00:00:00',0),(5197,0,0,'H','2526','','',5197,0,0,'2025-11-26',4281,1281,0,0,1240,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5068,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 11:37:57','','0000-00-00 00:00:00',0),(5198,0,0,'H','2526','','',5198,0,0,'2025-11-26',4283,3096,0,0,3016,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5069,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 11:40:02','','0000-00-00 00:00:00',0),(5199,0,0,'H','2526','','',5199,0,0,'2025-11-26',4282,2887,0,0,2818,'B',400.00,0.00,'7','kotak','','57634','','0000-00-00','scan ','',5070,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 11:40:30','','0000-00-00 00:00:00',0),(5200,0,0,'H','2526','','',5200,0,0,'2025-11-26',4284,3097,0,0,3017,'B',400.00,0.00,'7','kotak bank','','53586','','0000-00-00','scan','',5071,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 11:43:57','','0000-00-00 00:00:00',0),(5201,0,0,'H','2526','','',5201,0,0,'2025-11-26',4285,3098,0,0,3018,'B',750.00,0.00,'7','sbi','','44815','','0000-00-00','scan                          ','',5072,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 11:45:43','','0000-00-00 00:00:00',0),(5202,0,0,'H','2526','','',5202,0,0,'2025-11-26',4286,2750,0,0,2681,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5073,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 11:47:23','','0000-00-00 00:00:00',0),(5203,0,0,'H','2526','','',5203,0,0,'2025-11-26',4287,3099,0,0,3019,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5074,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 11:47:30','','0000-00-00 00:00:00',0),(5204,0,0,'H','2526','','',5204,0,0,'2025-11-26',4288,3100,0,0,3020,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5075,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 11:48:48','','0000-00-00 00:00:00',0),(5205,0,0,'H','2526','','',5205,0,0,'2025-11-26',4289,3101,0,0,3021,'B',500.00,0.00,'7','BOI','','22194','','0000-00-00','scan  ','',5076,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 11:51:47','','0000-00-00 00:00:00',0),(5206,0,0,'H','2526','','',5206,0,0,'2025-11-26',4290,3102,0,0,3022,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5077,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 11:53:26','','0000-00-00 00:00:00',0),(5207,0,0,'H','2526','','',5207,0,0,'2025-11-26',4291,3103,0,0,3023,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5078,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 11:55:54','','0000-00-00 00:00:00',0),(5208,0,0,'H','2526','','',5208,0,0,'2025-11-26',4292,255,0,0,240,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5079,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 11:56:59','','0000-00-00 00:00:00',0),(5209,0,0,'H','2526','','',5209,0,0,'2025-11-26',4293,3104,0,0,3024,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5081,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 12:01:03','','0000-00-00 00:00:00',0),(5210,0,0,'H','2526','','',5210,0,0,'2025-11-26',4294,853,0,0,822,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5082,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 12:03:21','','0000-00-00 00:00:00',0),(5211,0,0,'H','2526','','',5211,0,0,'2025-11-26',4276,3091,0,0,3011,'B',5600.00,0.00,'7','bob','','97472','','0000-00-00','scan','',5083,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 12:08:09','','0000-00-00 00:00:00',0),(5212,0,0,'H','2526','','P',5212,0,0,'2025-11-26',4019,2939,0,189,0,'A',11100.00,0.00,'CSH','','','','','0000-00-00','','',5085,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-26 12:12:58','vishal','2025-11-26 12:13:19',0),(5213,0,0,'H','2526','','',5213,0,0,'2025-11-26',4296,533,0,0,508,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5086,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 12:14:14','','0000-00-00 00:00:00',0),(5214,0,0,'H','2526','','',5214,0,0,'2025-11-26',4297,3106,0,0,3026,'B',500.00,0.00,'7','hdfc','','30468','','0000-00-00','scan ','',5087,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 12:16:23','','0000-00-00 00:00:00',0),(5215,0,0,'H','2526','','',5215,0,0,'2025-11-26',4270,3086,0,0,3006,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',5088,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 12:20:04','','0000-00-00 00:00:00',0),(5216,0,0,'H','2526','','',5216,0,0,'2025-11-26',4285,3098,0,0,3018,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5089,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 12:20:50','','0000-00-00 00:00:00',0),(5217,0,0,'H','2526','','',5217,0,0,'2025-11-26',4298,3107,0,0,3027,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5090,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 12:23:06','','0000-00-00 00:00:00',0),(5218,0,0,'H','2526','','',5218,0,0,'2025-11-26',4299,3108,0,0,3028,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5091,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 12:26:26','','0000-00-00 00:00:00',0),(5219,0,0,'H','2526','','',5219,0,0,'2025-11-26',4290,3102,0,0,3022,'B',5600.00,0.00,'7','central','','76439','','0000-00-00','scan','',5093,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 12:28:48','','0000-00-00 00:00:00',0),(5220,0,0,'H','2526','','',5220,0,0,'2025-11-26',4300,980,0,0,949,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5094,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 12:31:29','','0000-00-00 00:00:00',0),(5221,0,0,'H','2526','','P',5221,0,0,'2025-11-26',4158,3021,0,196,0,'A',3900.00,0.00,'CSH','','','','','0000-00-00','','',5095,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-26 12:32:43','vishal','2025-11-26 12:33:57',0),(5222,0,0,'H','2526','','',5222,0,0,'2025-11-26',4301,1177,0,0,1137,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5096,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 12:36:09','','0000-00-00 00:00:00',0),(5223,0,0,'H','2526','','',5223,0,0,'2025-11-26',4287,3099,0,0,3019,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5097,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 12:46:30','','0000-00-00 00:00:00',0),(5224,0,0,'H','2526','','',5224,0,0,'2025-11-26',4288,3100,0,0,3020,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5098,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 12:47:13','','0000-00-00 00:00:00',0),(5225,0,0,'H','2526','','',5225,0,0,'2025-11-26',4302,3109,0,0,3029,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5099,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 12:48:49','','0000-00-00 00:00:00',0),(5226,0,0,'H','2526','','P',5226,0,0,'2025-11-26',4159,393,0,197,0,'A',10000.00,0.00,'7','RNSB','','5066','','0000-00-00','','',5402,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-26 12:50:26','vishal','2025-11-28 12:48:44',0),(5227,0,0,'H','2526','','',5227,0,0,'2025-11-26',4292,255,0,0,240,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5100,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 12:53:20','','0000-00-00 00:00:00',0),(5228,0,0,'H','2526','','P',5228,0,0,'2025-11-26',4054,2959,0,192,0,'A',30000.00,0.00,'7','SBI BANK','','114707760226','','0000-00-00','','',5101,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-26 13:03:31','vishal','2025-11-26 13:05:43',0),(5229,0,0,'H','2526','','',5229,0,0,'2025-11-26',4302,3109,0,0,3029,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',5102,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 13:12:08','','0000-00-00 00:00:00',0),(5230,0,0,'H','2526','','',5230,0,0,'2025-11-26',4303,452,0,0,1533,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5104,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 13:17:18','','0000-00-00 00:00:00',0),(5231,0,0,'H','2526','','',5231,0,0,'2025-11-26',4304,3110,0,0,3030,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5106,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 13:51:35','','0000-00-00 00:00:00',0),(5232,0,0,'H','2526','','',5232,0,0,'2025-11-26',4303,452,0,0,1533,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5107,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-26 14:50:37','','0000-00-00 00:00:00',0),(5233,0,0,'H','2526','','P',5233,0,0,'2025-11-26',3517,2633,0,165,0,'A',25000.00,0.00,'7','ICICI BANK','','2620','','0000-00-00','','',5108,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-26 15:00:08','riya','2025-11-26 15:00:29',0),(5234,0,0,'H','2526','','',5234,0,0,'2025-11-26',4306,3112,0,0,3031,'B',1400.00,0.00,'7','south indian','','78621','','0000-00-00','scan ','',5109,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-26 15:28:06','','0000-00-00 00:00:00',0),(5235,0,0,'H','2526','','',5235,0,0,'2025-11-26',4307,1337,0,0,1298,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5110,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 16:34:30','','0000-00-00 00:00:00',0),(5236,0,0,'H','2526','','',5236,0,0,'2025-11-26',4309,361,0,0,345,'B',500.00,0.00,'7','BOB','','80750','','0000-00-00','scan','',5111,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 16:39:10','','0000-00-00 00:00:00',0),(5237,0,0,'H','2526','','',5237,0,0,'2025-11-26',4311,2021,0,0,1973,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5112,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 16:47:34','','0000-00-00 00:00:00',0),(5238,0,0,'H','2526','','',5238,0,0,'2025-11-26',4313,3114,0,0,3033,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5113,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 17:09:02','','0000-00-00 00:00:00',0),(5239,0,0,'H','2526','','',5239,0,0,'2025-11-26',4313,3114,0,0,3033,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',5114,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 17:30:37','','0000-00-00 00:00:00',0),(5240,0,0,'H','2526','','',5240,0,0,'2025-11-26',4314,3115,0,0,3034,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5115,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 17:32:42','','0000-00-00 00:00:00',0),(5241,0,0,'H','2526','','',5241,0,0,'2025-11-26',4315,2805,0,0,2735,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5116,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 17:36:44','','0000-00-00 00:00:00',0),(5242,0,0,'H','2526','','',5242,0,0,'2025-11-26',4316,3116,0,0,3035,'B',750.00,0.00,'7','boi','','72817','','0000-00-00','scan     ','',5117,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 17:43:43','','0000-00-00 00:00:00',0),(5243,0,0,'H','2526','','',5243,0,0,'2025-11-26',4317,3117,0,0,3036,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5118,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 17:46:48','','0000-00-00 00:00:00',0),(5244,0,0,'H','2526','','P',5244,0,0,'2025-11-26',2879,2243,0,146,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-26 17:50:02','riya','2025-11-26 17:50:02',0),(5245,0,0,'H','2526','','',5245,0,0,'2025-11-26',4318,3118,0,0,3037,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5119,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 17:53:01','','0000-00-00 00:00:00',0),(5246,0,0,'H','2526','','',5246,0,0,'2025-11-26',4319,3119,0,0,3038,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5120,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 17:55:17','','0000-00-00 00:00:00',0),(5247,0,0,'H','2526','','',5247,0,0,'2025-11-26',4320,3120,0,0,3039,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5121,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 17:58:02','','0000-00-00 00:00:00',0),(5248,0,0,'H','2526','','P',5248,0,0,'2025-11-26',3959,2897,0,183,0,'A',35000.00,0.00,'CSH','','','','','0000-00-00','','',5240,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-26 17:58:03','riya','2025-11-27 14:50:04',0),(5249,0,0,'H','2526','','',5249,0,0,'2025-11-26',4321,392,0,0,2393,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5122,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 18:09:51','','0000-00-00 00:00:00',0),(5250,0,0,'H','2526','','P',5250,0,0,'2025-11-26',3861,2834,0,179,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',5592,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-26 18:10:28','vishal','2025-11-30 13:51:49',0),(5251,0,0,'H','2526','','',5251,0,0,'2025-11-26',4322,3121,0,0,3040,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5123,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 18:11:53','','0000-00-00 00:00:00',0),(5252,0,0,'H','2526','','',5252,0,0,'2025-11-26',4323,3122,0,0,3041,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5124,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 18:15:29','','0000-00-00 00:00:00',0),(5253,0,0,'H','2526','','',5253,0,0,'2025-11-26',4319,3119,0,0,3038,'B',350.00,0.00,'7','icici','','29605','','0000-00-00','scan                          ','',5125,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 18:17:11','','0000-00-00 00:00:00',0),(5254,0,0,'H','2526','','',5254,0,0,'2025-11-26',4324,3123,0,0,3042,'B',800.00,0.00,'7','SBI','','69221','','0000-00-00','scan','',5126,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 18:20:48','','0000-00-00 00:00:00',0),(5255,0,0,'H','2526','','',5255,0,0,'2025-11-26',4325,3124,0,0,3043,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5127,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 18:25:15','','0000-00-00 00:00:00',0),(5256,0,0,'H','2526','','',5256,0,0,'2025-11-26',4326,2597,0,0,2540,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5128,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 18:27:32','','0000-00-00 00:00:00',0),(5257,0,0,'H','2526','','',5257,0,0,'2025-11-26',4327,3125,0,0,3044,'B',500.00,0.00,'7','hdfc','','85001','','0000-00-00','scan  ','',5129,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 18:32:43','','0000-00-00 00:00:00',0),(5258,0,0,'H','2526','','',5258,0,0,'2025-11-26',4328,2389,0,0,2333,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5130,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 18:34:31','','0000-00-00 00:00:00',0),(5259,0,0,'H','2526','','',5259,0,0,'2025-11-26',4329,3126,0,0,3045,'B',400.00,0.00,'7','SBI BANK','','77899','','0000-00-00','scan ','',5133,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 18:49:17','','0000-00-00 00:00:00',0),(5260,0,0,'H','2526','','',5260,0,0,'2025-11-26',4330,348,0,0,332,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5135,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 18:52:31','','0000-00-00 00:00:00',0),(5261,0,0,'H','2526','','',5261,0,0,'2025-11-26',4326,2597,0,0,2540,'D',-500.00,0.00,'CSH','','','','','2025-11-26','','',5134,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 18:53:48','','0000-00-00 00:00:00',0),(5262,0,0,'H','2526','','',5262,0,0,'2025-11-26',4331,3127,0,0,3046,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5136,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 18:55:28','','0000-00-00 00:00:00',0),(5263,0,0,'H','2526','','',5263,0,0,'2025-11-26',4332,1292,0,0,1251,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5137,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 18:56:01','','0000-00-00 00:00:00',0),(5264,0,0,'H','2526','','',5264,0,0,'2025-11-26',4326,2597,0,0,2540,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5138,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 18:56:39','','0000-00-00 00:00:00',0),(5265,0,0,'H','2526','','',5265,0,0,'2025-11-26',4333,3128,0,0,3047,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5139,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 18:57:00','','0000-00-00 00:00:00',0),(5266,0,0,'H','2526','','',5266,0,0,'2025-11-26',4334,3129,0,0,3048,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5140,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 19:00:41','','0000-00-00 00:00:00',0),(5267,0,0,'H','2526','','',5267,0,0,'2025-11-26',4336,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5141,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 19:02:04','','0000-00-00 00:00:00',0),(5268,0,0,'H','2526','','',5268,0,0,'2025-11-26',4335,3130,0,0,3049,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5142,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 19:02:13','','0000-00-00 00:00:00',0),(5269,0,0,'H','2526','','',5269,0,0,'2025-11-26',4337,3131,0,0,3050,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5143,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 19:05:52','','0000-00-00 00:00:00',0),(5270,0,0,'H','2526','','',5270,0,0,'2025-11-26',4327,3125,0,0,3044,'B',4000.00,0.00,'7','hdfc','','52168','','0000-00-00','scan ','',5144,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 19:12:47','','0000-00-00 00:00:00',0),(5271,0,0,'H','2526','','',5271,0,0,'2025-11-26',4339,3133,0,0,3052,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5145,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 19:13:22','','0000-00-00 00:00:00',0),(5272,0,0,'H','2526','','',5272,0,0,'2025-11-26',4338,3132,0,0,3051,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5146,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 19:13:39','','0000-00-00 00:00:00',0),(5273,0,0,'H','2526','','',5273,0,0,'2025-11-26',4340,3134,0,0,3053,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5147,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 19:17:44','','0000-00-00 00:00:00',0),(5274,0,0,'H','2526','','',5274,0,0,'2025-11-26',4335,3130,0,0,3049,'D',-800.00,0.00,'CSH','','','','','2025-11-26','','',5148,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 19:19:44','','0000-00-00 00:00:00',0),(5275,0,0,'H','2526','','',5275,0,0,'2025-11-26',4335,3130,0,0,3049,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',5149,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 19:23:28','','0000-00-00 00:00:00',0),(5276,0,0,'H','2526','','',5276,0,0,'2025-11-26',4343,1383,0,0,1343,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5150,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 19:25:23','','0000-00-00 00:00:00',0),(5277,0,0,'H','2526','','P',5277,0,0,'2025-11-26',4305,3111,0,204,0,'A',10100.00,0.00,'CSH','','','','','0000-00-00','','',5151,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-26 19:26:07','riya','2025-11-26 19:27:15',0),(5278,0,0,'H','2526','','',5278,0,0,'2025-11-26',4344,3136,0,0,3055,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5152,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-26 19:29:49','','0000-00-00 00:00:00',0),(5279,0,0,'H','2526','','',5279,0,0,'2025-11-26',4345,3137,0,0,3056,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5153,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 19:30:26','','0000-00-00 00:00:00',0),(5280,0,0,'H','2526','','P',5280,0,0,'2025-11-26',4017,2937,0,187,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-26 19:31:32','riya','2025-11-26 19:31:32',0),(5281,0,0,'H','2526','','',5281,0,0,'2025-11-26',4346,3138,0,0,3057,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5154,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 19:49:04','','0000-00-00 00:00:00',0),(5282,0,0,'H','2526','','',5282,0,0,'2025-11-26',4347,3139,0,0,3058,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5155,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-26 19:53:32','','0000-00-00 00:00:00',0),(5283,0,0,'H','2526','','',5283,0,0,'2025-11-26',4344,3136,0,0,3055,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5156,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-26 19:55:10','','0000-00-00 00:00:00',0),(5284,0,0,'H','2526','','',5284,0,0,'2025-11-26',4348,3140,0,0,3059,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5157,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 19:56:07','','0000-00-00 00:00:00',0),(5285,0,0,'H','2526','','',5285,0,0,'2025-11-26',4334,3129,0,0,3048,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5158,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-26 19:59:22','','0000-00-00 00:00:00',0),(5286,0,0,'H','2526','','',5286,0,0,'2025-11-26',4346,3138,0,0,3057,'D',-750.00,0.00,'CSH','','','','','2025-11-26','','',5159,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-26 20:14:00','','0000-00-00 00:00:00',0),(5287,0,0,'H','2526','','',5287,0,0,'2025-11-26',4166,2380,0,199,2323,'D',-2150.00,0.00,'CSH','','','','','0000-00-00','','',5160,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(5288,0,0,'H','2526','','P',5288,0,0,'2025-11-26',4349,3141,0,205,0,'A',4000.00,0.00,'CSH','','','','','0000-00-00','','',5167,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-26 20:56:18','riya','2025-11-27 09:28:14',0),(5289,0,0,'H','2526','','P',5289,0,0,'2025-11-26',4349,3141,0,205,0,'A',1000.00,0.00,'7','bank of baroda','','599594937539','','0000-00-00','SCAN','',5167,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-26 20:57:26','riya','2025-11-27 09:28:14',0),(5290,0,0,'H','2526','','P',5290,0,0,'2025-11-26',4350,3142,0,206,0,'A',15000.00,0.00,'7','kotak bank','','150792279539','','0000-00-00','SCAN','',5236,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-26 21:08:10','riya','2025-11-27 13:41:11',0),(5291,0,0,'H','2526','','P',5291,0,0,'2025-11-26',4245,3077,0,200,0,'A',50000.00,0.00,'CSH','','','','','0000-00-00','','',5357,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-26 21:43:48','vishal','2025-11-28 11:21:35',0),(5292,0,0,'H','2526','','',5292,0,0,'2025-11-27',4352,3144,0,0,3060,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',5161,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 08:46:36','','0000-00-00 00:00:00',0),(5293,0,0,'H','2526','','',5293,0,0,'2025-11-27',4353,3145,0,0,3061,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',5162,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 08:49:19','','0000-00-00 00:00:00',0),(5294,0,0,'H','2526','','',5294,0,0,'2025-11-27',4354,3146,0,0,3062,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',5163,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 08:51:35','','0000-00-00 00:00:00',0),(5295,0,0,'H','2526','','',5295,0,0,'2025-11-27',4355,3147,0,0,3063,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',5164,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 08:53:35','','0000-00-00 00:00:00',0),(5296,0,0,'H','2526','','',5296,0,0,'2025-11-27',4356,3148,0,0,3064,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5165,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 09:13:49','','0000-00-00 00:00:00',0),(5297,0,0,'H','2526','','',5297,0,0,'2025-11-27',4358,3150,0,0,3065,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5168,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 09:44:56','','0000-00-00 00:00:00',0),(5298,0,0,'H','2526','','P',5298,0,0,'2025-11-27',4359,3151,0,209,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',5594,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-27 09:46:55','vishal','2025-11-30 15:26:27',0),(5299,0,0,'H','2526','','',5299,0,0,'2025-11-27',4360,1900,0,0,1854,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5169,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 09:48:43','','0000-00-00 00:00:00',0),(5300,0,0,'H','2526','','',5300,0,0,'2025-11-27',4361,3152,0,0,3066,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5170,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 09:53:44','','0000-00-00 00:00:00',0),(5301,0,0,'H','2526','','',5301,0,0,'2025-11-27',4362,2623,0,0,2563,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5171,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 09:55:42','','0000-00-00 00:00:00',0),(5302,0,0,'H','2526','','',5302,0,0,'2025-11-27',4364,3135,0,0,3054,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5172,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 10:04:26','','0000-00-00 00:00:00',0),(5303,0,0,'H','2526','','',5303,0,0,'2025-11-27',4365,1512,0,0,1471,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5173,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 10:07:51','','0000-00-00 00:00:00',0),(5304,0,0,'H','2526','','',5304,0,0,'2025-11-27',4366,3154,0,0,3068,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5174,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 10:16:50','','0000-00-00 00:00:00',0),(5305,0,0,'H','2526','','',5305,0,0,'2025-11-27',4368,3156,0,0,3070,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5175,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 10:20:11','','0000-00-00 00:00:00',0),(5306,0,0,'H','2526','','',5306,0,0,'2025-11-27',4367,3155,0,0,3069,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5176,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 10:20:17','','0000-00-00 00:00:00',0),(5307,0,0,'H','2526','','',5307,0,0,'2025-11-27',4366,3154,0,0,3068,'D',-400.00,0.00,'CSH','','','','','0000-00-00','','',5177,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 10:21:37','','0000-00-00 00:00:00',0),(5308,0,0,'H','2526','','',5308,0,0,'2025-11-27',4366,3154,0,0,3068,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5178,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 10:21:48','','0000-00-00 00:00:00',0),(5309,0,0,'H','2526','','',5309,0,0,'2025-11-27',4369,2966,0,0,2889,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5179,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 10:34:26','','0000-00-00 00:00:00',0),(5310,0,0,'H','2526','','',5310,0,0,'2025-11-27',4370,3157,0,0,3071,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5180,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 10:36:10','','0000-00-00 00:00:00',0),(5311,0,0,'H','2526','','',5311,0,0,'2025-11-27',4372,3159,0,0,3073,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5181,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 10:38:07','','0000-00-00 00:00:00',0),(5312,0,0,'H','2526','','',5312,0,0,'2025-11-27',4371,3158,0,0,3072,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5182,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 10:38:27','','0000-00-00 00:00:00',0),(5313,0,0,'H','2526','','',5313,0,0,'2025-11-27',4373,3160,0,0,3074,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5183,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 10:38:39','','0000-00-00 00:00:00',0),(5314,0,0,'H','2526','','',5314,0,0,'2025-11-27',4374,3161,0,0,3075,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5184,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 10:39:49','','0000-00-00 00:00:00',0),(5315,0,0,'H','2526','','',5315,0,0,'2025-11-27',4376,3163,0,0,3077,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5185,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 10:41:59','','0000-00-00 00:00:00',0),(5316,0,0,'H','2526','','',5316,0,0,'2025-11-27',4377,3164,0,0,3078,'B',750.00,0.00,'7','HDFC BANK','','22300','','0000-00-00','scan ','',5186,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 10:44:49','','0000-00-00 00:00:00',0),(5317,0,0,'H','2526','','',5317,0,0,'2025-11-27',4378,3165,0,0,3079,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5187,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 10:45:12','','0000-00-00 00:00:00',0),(5318,0,0,'H','2526','','',5318,0,0,'2025-11-27',4375,3162,0,0,3076,'B',750.00,0.00,'7','HDFC BANK','','22300','','0000-00-00','scan ','',5188,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 10:45:17','','0000-00-00 00:00:00',0),(5319,0,0,'H','2526','','',5319,0,0,'2025-11-27',4379,3166,0,0,3080,'B',900.00,0.00,'7','axis','','28529','','0000-00-00','scan','',5189,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 10:50:04','','0000-00-00 00:00:00',0),(5320,0,0,'H','2526','','',5320,0,0,'2025-11-27',4380,3167,0,0,3081,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5190,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 10:51:28','','0000-00-00 00:00:00',0),(5321,0,0,'H','2526','','',5321,0,0,'2025-11-27',4381,2167,0,0,2115,'B',300.00,0.00,'7','rbl','','19642','','0000-00-00','scan','',5191,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 10:52:11','','0000-00-00 00:00:00',0),(5322,0,0,'H','2526','','',5322,0,0,'2025-11-27',4382,1110,0,0,1070,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5192,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 10:54:26','','0000-00-00 00:00:00',0),(5323,0,0,'H','2526','','',5323,0,0,'2025-11-27',4383,3101,0,0,3021,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5193,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 10:55:10','','0000-00-00 00:00:00',0),(5324,0,0,'H','2526','','',5324,0,0,'2025-11-27',4384,3168,0,0,3082,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5194,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-27 11:04:25','','0000-00-00 00:00:00',0),(5325,0,0,'H','2526','','P',5325,0,0,'2025-11-27',4357,3149,0,208,0,'A',7000.00,0.00,'2','BOB','','3216','','0000-00-00','CARD','',5226,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-27 11:06:21','riya','2025-11-27 12:50:00',0),(5326,0,0,'H','2526','','',5326,0,0,'2025-11-27',4385,3169,0,0,3083,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5195,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 11:06:26','','0000-00-00 00:00:00',0),(5327,0,0,'H','2526','','',5327,0,0,'2025-11-27',4386,2626,0,0,2566,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5196,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 11:14:47','','0000-00-00 00:00:00',0),(5328,0,0,'H','2526','','',5328,0,0,'2025-11-27',4387,3170,0,0,3084,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5197,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 11:17:25','','0000-00-00 00:00:00',0),(5329,0,0,'H','2526','','',5329,0,0,'2025-11-27',4388,1419,0,0,1378,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5198,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 11:20:02','','0000-00-00 00:00:00',0),(5330,0,0,'H','2526','','',5330,0,0,'2025-11-27',4389,3171,0,0,3085,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5199,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 11:22:10','','0000-00-00 00:00:00',0),(5331,0,0,'H','2526','','',5331,0,0,'2025-11-27',4378,3165,0,0,3079,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',5200,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 11:24:26','','0000-00-00 00:00:00',0),(5332,0,0,'H','2526','','',5332,0,0,'2025-11-27',4390,3172,0,0,3086,'B',450.00,0.00,'CSH','','','','','0000-00-00','','',5201,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 11:24:49','','0000-00-00 00:00:00',0),(5333,0,0,'H','2526','','',5333,0,0,'2025-11-27',4391,3173,0,0,3087,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5202,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 11:29:02','','0000-00-00 00:00:00',0),(5334,0,0,'H','2526','','',5334,0,0,'2025-11-27',4392,55,0,0,49,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5203,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 11:32:16','','0000-00-00 00:00:00',0),(5335,0,0,'H','2526','','',5335,0,0,'2025-11-27',4393,1698,0,0,1653,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5204,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-27 11:37:07','','0000-00-00 00:00:00',0),(5336,0,0,'H','2526','','',5336,0,0,'2025-11-27',4369,2966,0,0,2889,'D',-400.00,0.00,'CSH','','','','','2025-11-27','','',5205,'N','N','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-27 11:40:23','','0000-00-00 00:00:00',0),(5337,0,0,'H','2526','','',5337,0,0,'2025-11-27',4379,3166,0,0,3080,'B',5400.00,0.00,'CSH','','','','','0000-00-00','','',5206,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 11:40:33','','0000-00-00 00:00:00',0),(5338,0,0,'H','2526','','',5338,0,0,'2025-11-27',4380,3167,0,0,3081,'D',-700.00,0.00,'CSH','','','','','2025-11-27','','',5207,'N','N','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-27 11:42:50','','0000-00-00 00:00:00',0),(5339,0,0,'H','2526','','',5339,0,0,'2025-11-27',4394,2600,0,0,2543,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5208,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 11:42:54','','0000-00-00 00:00:00',0),(5340,0,0,'H','2526','','',5340,0,0,'2025-11-27',4374,3161,0,0,3075,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',5209,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 11:42:55','','0000-00-00 00:00:00',0),(5341,0,0,'H','2526','','',5341,0,0,'2025-11-27',4380,3167,0,0,3081,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5210,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-27 11:44:19','','0000-00-00 00:00:00',0),(5342,0,0,'H','2526','','',5342,0,0,'2025-11-27',4391,3173,0,0,3087,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5211,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-27 11:54:02','','0000-00-00 00:00:00',0),(5343,0,0,'H','2526','','',5343,0,0,'2025-11-27',4395,2529,0,0,2471,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5212,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-27 11:58:26','','0000-00-00 00:00:00',0),(5344,0,0,'H','2526','','',5344,0,0,'2025-11-27',4396,3174,0,0,3088,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5213,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 12:02:30','','0000-00-00 00:00:00',0),(5345,0,0,'H','2526','','',5345,0,0,'2025-11-27',4397,3175,0,0,3089,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',5214,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-27 12:03:04','','0000-00-00 00:00:00',0),(5346,0,0,'H','2526','','',5346,0,0,'2025-11-27',4398,3176,0,0,3090,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5215,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 12:12:30','','0000-00-00 00:00:00',0),(5347,0,0,'H','2526','','',5347,0,0,'2025-11-27',4364,3135,0,0,3054,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',5216,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 12:12:44','','0000-00-00 00:00:00',0),(5348,0,0,'H','2526','','',5348,0,0,'2025-11-27',4399,3177,0,0,3091,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5217,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 12:18:51','','0000-00-00 00:00:00',0),(5349,0,0,'H','2526','','',5349,0,0,'2025-11-27',4400,2919,0,0,3092,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5218,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 12:22:05','','0000-00-00 00:00:00',0),(5350,0,0,'H','2526','','',5350,0,0,'2025-11-27',4398,3176,0,0,3090,'B',350.00,0.00,'CSH','','','','','0000-00-00','','',5219,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 12:22:10','','0000-00-00 00:00:00',0),(5351,0,0,'H','2526','','P',5351,0,0,'2025-11-27',4261,3005,0,201,0,'A',8000.00,0.00,'CSH','','','','','0000-00-00','','',5313,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-27 12:26:57','riya','2025-11-27 21:23:33',0),(5352,0,0,'H','2526','','',5352,0,0,'2025-11-27',4400,2919,0,0,3092,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5221,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 12:27:27','','0000-00-00 00:00:00',0),(5353,0,0,'H','2526','','',5353,0,0,'2025-11-27',4401,3178,0,0,3093,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5223,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-27 12:36:34','','0000-00-00 00:00:00',0),(5354,0,0,'H','2526','','P',5354,0,0,'2025-11-27',3861,2834,0,179,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',5592,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-27 12:44:17','vishal','2025-11-30 13:51:49',0),(5355,0,0,'H','2526','','',5355,0,0,'2025-11-27',4373,3160,0,0,3074,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',5224,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 12:45:00','','0000-00-00 00:00:00',0),(5356,0,0,'H','2526','','',5356,0,0,'2025-11-27',4402,662,0,0,632,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5225,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 12:47:49','','0000-00-00 00:00:00',0),(5357,0,0,'H','2526','','',5357,0,0,'2025-11-27',4357,3149,0,208,0,'D',-1200.00,0.00,'CSH','','','','','0000-00-00','','',5226,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-27 12:50:00','','0000-00-00 00:00:00',0),(5358,0,0,'H','2526','','',5358,0,0,'2025-11-27',4403,1930,0,0,1883,'B',100.00,0.00,'7','axis bank','','36046','','0000-00-00','scan ','',5227,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-27 12:51:58','','0000-00-00 00:00:00',0),(5359,0,0,'H','2526','','',5359,0,0,'2025-11-27',4399,3177,0,0,3091,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',5228,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 12:56:28','','0000-00-00 00:00:00',0),(5360,0,0,'H','2526','','',5360,0,0,'2025-11-27',4398,3176,0,0,3090,'B',1000.00,0.00,'CRD','VMC','','74423','','0000-00-00','CARD','',5229,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-11-27 13:01:36','','0000-00-00 00:00:00',0),(5361,0,0,'H','2526','','',5361,0,0,'2025-11-27',4394,2600,0,0,2543,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',5230,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 13:12:33','','0000-00-00 00:00:00',0),(5362,0,0,'H','2526','','',5362,0,0,'2025-11-27',4404,3179,0,0,3094,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5231,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 13:16:18','','0000-00-00 00:00:00',0),(5363,0,0,'H','2526','','',5363,0,0,'2025-11-27',4405,3180,0,0,3095,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5232,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 13:20:30','','0000-00-00 00:00:00',0),(5364,0,0,'H','2526','','',5364,0,0,'2025-11-27',4381,2167,0,0,2115,'B',3000.00,0.00,'7','rbl bank','','39753','','0000-00-00','scan  ','',5233,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 13:26:30','','0000-00-00 00:00:00',0),(5365,0,0,'H','2526','','P',5365,0,0,'2025-11-27',4125,2612,0,194,0,'A',8350.00,0.00,'CRD','AXIS BANK','','3218','','0000-00-00','CARD','',5234,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-27 13:27:22','riya','2025-11-27 13:28:25',0),(5366,0,0,'H','2526','','',5366,0,0,'2025-11-27',4350,3142,0,206,0,'D',-2200.00,0.00,'CSH','','','','','0000-00-00','','',5236,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-27 13:41:11','','0000-00-00 00:00:00',0),(5367,0,0,'H','2526','','P',5367,0,0,'2025-11-27',3909,2866,0,181,0,'A',20000.00,0.00,'CRD','ICICI','','3219','','0000-00-00','','',5995,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-27 13:50:06','riya','2025-12-03 16:54:08',0),(5368,0,0,'H','2526','','',5368,0,0,'2025-11-27',4405,3180,0,0,3095,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',5237,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 13:54:19','','0000-00-00 00:00:00',0),(5369,0,0,'H','2526','','',5369,0,0,'2025-11-27',4406,3181,0,0,3096,'B',900.00,0.00,'7','HDFC','','44980','','0000-00-00','scan','',5239,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 14:32:25','','0000-00-00 00:00:00',0),(5370,0,0,'H','2526','','P',5370,0,0,'2025-11-27',3959,2897,0,183,0,'A',27000.00,0.00,'CSH','','','','','0000-00-00','','',5240,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-27 14:46:14','riya','2025-11-27 14:50:04',0),(5371,0,0,'H','2526','','P',5371,0,0,'2025-11-27',3959,2897,0,183,0,'A',10000.00,0.00,'7','BOB','','533174139172','','0000-00-00','UPI','',5240,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-27 14:49:04','riya','2025-11-27 14:50:04',0),(5372,0,0,'H','2526','','',5372,0,0,'2025-11-27',4406,3181,0,0,3096,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5241,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 14:51:27','','0000-00-00 00:00:00',0),(5373,0,0,'H','2526','','',5373,0,0,'2025-11-27',4407,3108,0,0,3028,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5242,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 14:57:13','','0000-00-00 00:00:00',0),(5374,0,0,'H','2526','','P',5374,0,0,'2025-11-27',4409,3182,0,210,0,'A',15000.00,0.00,'2','HDFC','','3220','','0000-00-00','CARD','',5519,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-27 15:24:38','vishal','2025-11-29 11:54:14',0),(5375,0,0,'H','2526','','',5375,0,0,'2025-11-27',4411,2680,0,0,2615,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5243,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 16:26:29','','0000-00-00 00:00:00',0),(5376,0,0,'H','2526','','',5376,0,0,'2025-11-27',4412,1689,0,0,1644,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5244,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 16:27:03','','0000-00-00 00:00:00',0),(5377,0,0,'H','2526','','',5377,0,0,'2025-11-27',4413,3183,0,0,3097,'B',2500.00,0.00,'CSH','','','','','0000-00-00','','',5245,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 16:41:40','','0000-00-00 00:00:00',0),(5378,0,0,'H','2526','','',5378,0,0,'2025-11-27',4414,1066,0,0,1032,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5246,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 16:45:11','','0000-00-00 00:00:00',0),(5379,0,0,'H','2526','','P',5379,0,0,'2025-11-27',4266,3085,0,203,0,'A',22000.00,0.00,'CSH','','','','','0000-00-00','','',6060,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-27 16:54:20','vishal','2025-12-03 20:03:14',0),(5380,0,0,'H','2526','','',5380,0,0,'2025-11-27',4415,3184,0,0,3098,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5247,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 16:55:04','','0000-00-00 00:00:00',0),(5381,0,0,'H','2526','','',5381,0,0,'2025-11-27',4418,3187,0,0,3100,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5248,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-27 17:03:48','','0000-00-00 00:00:00',0),(5382,0,0,'H','2526','','',5382,0,0,'2025-11-27',4416,3185,0,0,3099,'B',1250.00,0.00,'CSH','','','','','0000-00-00','','',5249,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 17:04:18','','0000-00-00 00:00:00',0),(5383,0,0,'H','2526','','P',5383,0,0,'2025-11-27',4417,3186,0,211,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',5544,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-27 17:08:03','vishal','2025-11-29 12:17:48',0),(5384,0,0,'H','2526','','',5384,0,0,'2025-11-27',4419,2666,0,0,2604,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5250,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 17:12:35','','0000-00-00 00:00:00',0),(5385,0,0,'H','2526','','',5385,0,0,'2025-11-27',4420,3188,0,0,3101,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5251,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 17:27:20','','0000-00-00 00:00:00',0),(5386,0,0,'H','2526','','',5386,0,0,'2025-11-27',4421,3189,0,0,3102,'B',500.00,0.00,'7','HDFC','','08451','','0000-00-00','scan','',5252,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 17:35:46','','0000-00-00 00:00:00',0),(5387,0,0,'H','2526','','',5387,0,0,'2025-11-27',4422,3190,0,0,3103,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5253,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 17:40:13','','0000-00-00 00:00:00',0),(5388,0,0,'H','2526','','',5388,0,0,'2025-11-27',4423,1616,0,0,2528,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5254,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-27 17:40:23','','0000-00-00 00:00:00',0),(5389,0,0,'H','2526','','',5389,0,0,'2025-11-27',4410,53,0,0,47,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5255,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 17:40:23','','0000-00-00 00:00:00',0),(5390,0,0,'H','2526','','',5390,0,0,'2025-11-27',4426,3192,0,0,3105,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5256,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 17:45:22','','0000-00-00 00:00:00',0),(5391,0,0,'H','2526','','',5391,0,0,'2025-11-27',4425,3191,0,0,3104,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5257,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 17:45:34','','0000-00-00 00:00:00',0),(5392,0,0,'H','2526','','',5392,0,0,'2025-11-27',4427,2781,0,0,2710,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5258,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-27 17:50:18','','0000-00-00 00:00:00',0),(5393,0,0,'H','2526','','',5393,0,0,'2025-11-27',4428,783,0,0,751,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5259,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 17:52:22','','0000-00-00 00:00:00',0),(5394,0,0,'H','2526','','',5394,0,0,'2025-11-27',4429,1583,0,0,1540,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5260,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 17:59:54','','0000-00-00 00:00:00',0),(5395,0,0,'H','2526','','',5395,0,0,'2025-11-27',4431,3193,0,0,3106,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5261,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 18:04:20','','0000-00-00 00:00:00',0),(5396,0,0,'H','2526','','',5396,0,0,'2025-11-27',4432,2579,0,0,2521,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5262,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 18:08:11','','0000-00-00 00:00:00',0),(5397,0,0,'H','2526','','',5397,0,0,'2025-11-27',4433,3194,0,0,3107,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5263,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-27 18:08:29','','0000-00-00 00:00:00',0),(5398,0,0,'H','2526','','',5398,0,0,'2025-11-27',4434,3195,0,0,3108,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5264,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 18:10:21','','0000-00-00 00:00:00',0),(5399,0,0,'H','2526','','',5399,0,0,'2025-11-27',4436,3196,0,0,3109,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5265,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 18:13:02','','0000-00-00 00:00:00',0),(5400,0,0,'H','2526','','',5400,0,0,'2025-11-27',4437,3197,0,0,3110,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5266,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-27 18:15:08','','0000-00-00 00:00:00',0),(5401,0,0,'H','2526','','',5401,0,0,'2025-11-27',4439,2301,0,0,2245,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5267,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-27 18:17:14','','0000-00-00 00:00:00',0),(5402,0,0,'H','2526','','',5402,0,0,'2025-11-27',4440,3199,0,0,3112,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5268,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 18:17:21','','0000-00-00 00:00:00',0),(5403,0,0,'H','2526','','',5403,0,0,'2025-11-27',4438,3198,0,0,3111,'B',500.00,0.00,'7','IDFC BANK','','53688','','0000-00-00','SCAN','',5269,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-27 18:18:52','','0000-00-00 00:00:00',0),(5404,0,0,'H','2526','','P',5404,0,0,'2025-11-27',4245,3077,0,200,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',5357,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-27 18:20:00','vishal','2025-11-28 11:21:35',0),(5405,0,0,'H','2526','','',5405,0,0,'2025-11-27',4442,3200,0,0,3113,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5270,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-27 18:20:33','','0000-00-00 00:00:00',0),(5406,0,0,'H','2526','','',5406,0,0,'2025-11-27',4424,2024,0,0,1976,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5271,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 18:20:58','','0000-00-00 00:00:00',0),(5407,0,0,'H','2526','','',5407,0,0,'2025-11-27',4425,3191,0,0,3104,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',5272,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 18:21:24','','0000-00-00 00:00:00',0),(5408,0,0,'H','2526','','',5408,0,0,'2025-11-27',4426,3192,0,0,3105,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',5273,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 18:21:52','','0000-00-00 00:00:00',0),(5409,0,0,'H','2526','','',5409,0,0,'2025-11-27',4430,2016,0,0,1968,'B',100.00,0.00,'7','canara bank','','69837','','0000-00-00','scan ','',5274,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 18:23:23','','0000-00-00 00:00:00',0),(5410,0,0,'H','2526','','',5410,0,0,'2025-11-27',4444,286,0,0,270,'B',300.00,0.00,'7','axis bank','','59189','','0000-00-00','scan','',5275,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 18:23:48','','0000-00-00 00:00:00',0),(5411,0,0,'H','2526','','',5411,0,0,'2025-11-27',4433,3194,0,0,3107,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',5276,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-27 18:25:31','','0000-00-00 00:00:00',0),(5412,0,0,'H','2526','','',5412,0,0,'2025-11-27',4445,2933,0,0,3114,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5277,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 18:25:48','','0000-00-00 00:00:00',0),(5413,0,0,'H','2526','','',5413,0,0,'2025-11-27',4446,3201,0,0,3115,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5278,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 18:27:39','','0000-00-00 00:00:00',0),(5414,0,0,'H','2526','','',5414,0,0,'2025-11-27',4447,3202,0,0,3116,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5279,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 18:29:50','','0000-00-00 00:00:00',0),(5415,0,0,'H','2526','','',5415,0,0,'2025-11-27',4448,2886,0,0,2817,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5280,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-27 18:30:18','','0000-00-00 00:00:00',0),(5416,0,0,'H','2526','','',5416,0,0,'2025-11-27',4437,3197,0,0,3110,'D',-500.00,0.00,'CSH','','','','','2025-11-27','','',5281,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-27 18:31:33','','0000-00-00 00:00:00',0),(5417,0,0,'H','2526','','',5417,0,0,'2025-11-27',4449,3203,0,0,3117,'B',750.00,0.00,'7','INDUSLAND BANK','','59157','','0000-00-00','scan ','',5282,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 18:31:36','','0000-00-00 00:00:00',0),(5418,0,0,'H','2526','','',5418,0,0,'2025-11-27',4450,3204,0,0,3118,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5283,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 18:32:23','','0000-00-00 00:00:00',0),(5419,0,0,'H','2526','','',5419,0,0,'2025-11-27',4443,2304,0,0,2247,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5284,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 18:33:03','','0000-00-00 00:00:00',0),(5420,0,0,'H','2526','','',5420,0,0,'2025-11-27',4451,1111,0,0,1071,'B',400.00,0.00,'7','HDFC BANK','','89389','','0000-00-00','scan ','',5285,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 18:33:14','','0000-00-00 00:00:00',0),(5421,0,0,'H','2526','','',5421,0,0,'2025-11-27',4452,3205,0,0,3119,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5286,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 18:35:17','','0000-00-00 00:00:00',0),(5422,0,0,'H','2526','','',5422,0,0,'2025-11-27',4453,2144,0,0,2090,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5287,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 18:36:45','','0000-00-00 00:00:00',0),(5423,0,0,'H','2526','','',5423,0,0,'2025-11-27',4455,3206,0,0,3120,'B',400.00,0.00,'7','kotak','','67325','','0000-00-00','scan','',5288,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 18:46:45','','0000-00-00 00:00:00',0),(5424,0,0,'H','2526','','',5424,0,0,'2025-11-27',4436,3196,0,0,3109,'B',5500.00,0.00,'CSH','','','','','0000-00-00','','',5289,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 18:47:24','','0000-00-00 00:00:00',0),(5425,0,0,'H','2526','','',5425,0,0,'2025-11-27',4456,1763,0,0,2118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5290,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 18:47:43','','0000-00-00 00:00:00',0),(5426,0,0,'H','2526','','',5426,0,0,'2025-11-27',4446,3201,0,0,3115,'D',-400.00,0.00,'CSH','','','','','2025-11-27','','',5291,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 18:50:42','','0000-00-00 00:00:00',0),(5427,0,0,'H','2526','','',5427,0,0,'2025-11-27',4438,3198,0,0,3111,'B',600.00,0.00,'7','IDFC BANK','','13041','','0000-00-00','SCAN','',5292,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-27 18:53:40','','0000-00-00 00:00:00',0),(5428,0,0,'H','2526','','',5428,0,0,'2025-11-27',4438,3198,0,0,3111,'D',-500.00,0.00,'7','IDFC BANK','','53688','','2025-11-27','SCAN','',5293,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-27 18:55:37','','0000-00-00 00:00:00',0),(5429,0,0,'H','2526','','',5429,0,0,'2025-11-27',4451,1111,0,0,1071,'D',-400.00,0.00,'7','HDFC BANK','','89389','','2025-11-27','','',5294,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 18:57:31','','0000-00-00 00:00:00',0),(5430,0,0,'H','2526','','',5430,0,0,'2025-11-27',4458,3208,0,0,3122,'B',500.00,0.00,'7','HDFC BANK','','79379','','0000-00-00','scan ','',5295,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 18:58:13','','0000-00-00 00:00:00',0),(5431,0,0,'H','2526','','',5431,0,0,'2025-11-27',4457,3207,0,0,3121,'B',700.00,0.00,'CRD','icici','74423','74423','','0000-00-00','CARD','',5297,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 18:59:47','','0000-00-00 00:00:00',0),(5432,0,0,'H','2526','','',5432,0,0,'2025-11-27',4442,3200,0,0,3113,'D',-500.00,0.00,'CSH','','','','','2025-11-27','','',5296,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-27 18:59:49','','0000-00-00 00:00:00',0),(5433,0,0,'H','2526','','',5433,0,0,'2025-11-27',4459,3209,0,0,3123,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5298,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 19:00:55','','0000-00-00 00:00:00',0),(5434,0,0,'H','2526','','',5434,0,0,'2025-11-27',4460,3210,0,0,3124,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5299,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 19:01:38','','0000-00-00 00:00:00',0),(5435,0,0,'H','2526','','',5435,0,0,'2025-11-27',4461,592,0,0,565,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5300,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 19:01:50','','0000-00-00 00:00:00',0),(5436,0,0,'H','2526','','',5436,0,0,'2025-11-27',4439,2301,0,0,2245,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5301,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-27 19:04:20','','0000-00-00 00:00:00',0),(5437,0,0,'H','2526','','',5437,0,0,'2025-11-27',4463,3211,0,0,3125,'B',750.00,0.00,'7','SBI BANK','','66170','','0000-00-00','scan','',5302,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 19:09:20','','0000-00-00 00:00:00',0),(5438,0,0,'H','2526','','',5438,0,0,'2025-11-27',4464,3205,0,0,3119,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5303,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-27 19:10:01','','0000-00-00 00:00:00',0),(5439,0,0,'H','2526','','',5439,0,0,'2025-11-27',4465,1327,0,0,1288,'B',100.00,0.00,'7','bob','','72086','','0000-00-00','scan  ','',5305,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-27 19:26:20','','0000-00-00 00:00:00',0),(5440,0,0,'H','2526','','P',5440,0,0,'2025-11-27',4265,2980,0,202,0,'A',5000.00,0.00,'7','HDFC BANK','','4205','','0000-00-00','','',5307,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-27 19:45:44','riya','2025-11-27 19:46:28',0),(5441,0,0,'H','2526','','',5441,0,0,'2025-11-27',4466,3212,0,0,3126,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5308,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 20:14:28','','0000-00-00 00:00:00',0),(5442,0,0,'H','2526','','',5442,0,0,'2025-11-27',4467,1416,0,0,1375,'B',400.00,0.00,'7','axis bank','','73903','','0000-00-00','scan ','',5309,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 20:39:46','','0000-00-00 00:00:00',0),(5443,0,0,'H','2526','','',5443,0,0,'2025-11-27',4468,3213,0,0,3127,'B',2800.00,0.00,'7','HDFC BANK','','90103','','0000-00-00','scan','',5310,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-27 20:45:50','','0000-00-00 00:00:00',0),(5444,0,0,'H','2526','','P',5444,0,0,'2025-11-27',4161,2782,0,198,0,'A',13000.00,0.00,'CSH','','','','','0000-00-00','','',5311,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-27 20:45:56','riya','2025-11-27 20:46:39',0),(5445,0,0,'H','2526','','P',5445,0,0,'2025-11-27',4261,3005,0,201,0,'A',400.00,0.00,'7','SBI BANK','','9121','','0000-00-00','','',5313,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-27 21:23:06','riya','2025-11-27 21:23:33',0),(5446,0,0,'H','2526','','P',5446,0,0,'2025-11-27',4017,2937,0,187,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-27 22:46:52','vishal','2025-11-27 22:46:52',0),(5447,0,0,'H','2526','','P',5447,0,0,'2025-11-27',4469,429,0,212,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',5315,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-27 23:24:32','vishal','2025-11-28 02:43:12',0),(5448,0,0,'H','2526','','',5448,0,0,'2025-11-28',4469,429,0,212,407,'D',-6000.00,0.00,'CSH','','','','','0000-00-00','','',5315,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-28 02:43:12','','0000-00-00 00:00:00',0),(5449,0,0,'H','2526','','',5449,0,0,'2025-11-28',4470,3214,0,0,3128,'B',1400.00,0.00,'CSH','','','','','0000-00-00','','',5316,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 08:52:37','','0000-00-00 00:00:00',0),(5450,0,0,'H','2526','','',5450,0,0,'2025-11-28',4472,3215,0,0,3129,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5317,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-28 08:56:53','','0000-00-00 00:00:00',0),(5451,0,0,'H','2526','','',5451,0,0,'2025-11-28',4471,1416,0,0,1375,'B',700.00,0.00,'7','hdfc','','88699','','0000-00-00','scan','',5318,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 09:04:19','','0000-00-00 00:00:00',0),(5452,0,0,'H','2526','','',5452,0,0,'2025-11-28',4473,3216,0,0,3130,'B',0.00,0.00,'CSH','','','','','0000-00-00','','',5319,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 09:22:20','','0000-00-00 00:00:00',0),(5453,0,0,'H','2526','','',5453,0,0,'2025-11-28',4474,10,0,0,10,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5320,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 09:45:51','','0000-00-00 00:00:00',0),(5454,0,0,'H','2526','','',5454,0,0,'2025-11-28',4475,3217,0,0,3131,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5321,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 10:05:17','','0000-00-00 00:00:00',0),(5455,0,0,'H','2526','','',5455,0,0,'2025-11-28',4477,2065,0,0,2012,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5322,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 10:07:42','','0000-00-00 00:00:00',0),(5456,0,0,'H','2526','','',5456,0,0,'2025-11-28',4476,3218,0,0,3132,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5323,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 10:09:26','','0000-00-00 00:00:00',0),(5457,0,0,'H','2526','','',5457,0,0,'2025-11-28',4478,3219,0,0,3133,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5324,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 10:14:01','','0000-00-00 00:00:00',0),(5458,0,0,'H','2526','','',5458,0,0,'2025-11-28',4479,3220,0,0,3134,'B',0.00,0.00,'CSH','','','','','0000-00-00','','',5325,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 10:15:56','','0000-00-00 00:00:00',0),(5459,0,0,'H','2526','','',5459,0,0,'2025-11-28',4480,3221,0,0,3135,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5326,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 10:17:02','','0000-00-00 00:00:00',0),(5460,0,0,'H','2526','','',5460,0,0,'2025-11-28',4473,3216,0,0,3130,'D',0.00,0.00,'CSH','','','','','0000-00-00','','',5327,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 10:17:25','','0000-00-00 00:00:00',0),(5461,0,0,'H','2526','','',5461,0,0,'2025-11-28',4473,3216,0,0,3130,'B',0.00,0.00,'CSH','','','','','0000-00-00','','',5328,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 10:17:44','','0000-00-00 00:00:00',0),(5462,0,0,'H','2526','','',5462,0,0,'2025-11-28',4479,3220,0,0,3134,'D',0.00,0.00,'CSH','','','','','0000-00-00','','',5329,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 10:19:07','','0000-00-00 00:00:00',0),(5463,0,0,'H','2526','','',5463,0,0,'2025-11-28',4479,3220,0,0,3134,'B',0.00,0.00,'CSH','','','','','0000-00-00','','',5330,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 10:19:16','','0000-00-00 00:00:00',0),(5464,0,0,'H','2526','','',5464,0,0,'2025-11-28',4479,3220,0,0,3134,'D',0.00,0.00,'CSH','','','','','2025-11-28','','',5331,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 10:20:33','','0000-00-00 00:00:00',0),(5465,0,0,'H','2526','','',5465,0,0,'2025-11-28',4473,3216,0,0,3130,'D',0.00,0.00,'CSH','','','','','0000-00-00','','',5332,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 10:25:12','','0000-00-00 00:00:00',0),(5466,0,0,'H','2526','','',5466,0,0,'2025-11-28',4473,3216,0,0,3130,'B',0.00,0.00,'CSH','','','','','0000-00-00','','',5333,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 10:25:23','','0000-00-00 00:00:00',0),(5467,0,0,'H','2526','','',5467,0,0,'2025-11-28',4479,3220,0,0,3134,'D',0.00,0.00,'CSH','','','','','0000-00-00','','',5334,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 10:26:16','','0000-00-00 00:00:00',0),(5468,0,0,'H','2526','','',5468,0,0,'2025-11-28',4479,3220,0,0,3134,'B',0.00,0.00,'CSH','','','','','0000-00-00','','',5335,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 10:26:28','','0000-00-00 00:00:00',0),(5469,0,0,'H','2526','','',5469,0,0,'2025-11-28',4479,3220,0,0,3134,'D',0.00,0.00,'CSH','','','','','0000-00-00','','',5336,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 10:26:52','','0000-00-00 00:00:00',0),(5470,0,0,'H','2526','','',5470,0,0,'2025-11-28',4479,3220,0,0,3134,'B',0.00,0.00,'CSH','','','','','0000-00-00','','',5337,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 10:27:01','','0000-00-00 00:00:00',0),(5471,0,0,'H','2526','','',5471,0,0,'2025-11-28',4479,3220,0,0,3134,'D',0.00,0.00,'CSH','','','','','2025-11-28','','',5338,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 10:28:42','','0000-00-00 00:00:00',0),(5472,0,0,'H','2526','','',5472,0,0,'2025-11-28',4481,3222,0,0,3136,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5339,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 10:28:45','','0000-00-00 00:00:00',0),(5473,0,0,'H','2526','','',5473,0,0,'2025-11-28',4479,3220,0,0,3134,'D',0.00,0.00,'CSH','','','','','2025-11-28','','',5340,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 10:30:03','','0000-00-00 00:00:00',0),(5474,0,0,'H','2526','','',5474,0,0,'2025-11-28',4483,2837,0,0,2768,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5341,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 10:31:05','','0000-00-00 00:00:00',0),(5475,0,0,'H','2526','','',5475,0,0,'2025-11-28',4484,3223,0,0,3137,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5342,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 10:32:48','','0000-00-00 00:00:00',0),(5476,0,0,'H','2526','','',5476,0,0,'2025-11-28',4485,2146,0,0,2092,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5343,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 10:42:09','','0000-00-00 00:00:00',0),(5477,0,0,'H','2526','','',5477,0,0,'2025-11-28',4486,3224,0,0,3138,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5344,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 10:43:03','','0000-00-00 00:00:00',0),(5478,0,0,'H','2526','','',5478,0,0,'2025-11-28',4487,2347,0,0,2290,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5345,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 10:45:18','','0000-00-00 00:00:00',0),(5479,0,0,'H','2526','','',5479,0,0,'2025-11-28',4488,1509,0,0,1468,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5346,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 10:46:30','','0000-00-00 00:00:00',0),(5480,0,0,'H','2526','','',5480,0,0,'2025-11-28',4482,2201,0,0,2874,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5347,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 10:52:59','','0000-00-00 00:00:00',0),(5481,0,0,'H','2526','','',5481,0,0,'2025-11-28',4490,3101,0,0,3021,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5348,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 11:01:36','','0000-00-00 00:00:00',0),(5482,0,0,'H','2526','','',5482,0,0,'2025-11-28',4491,2619,0,0,2559,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5349,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 11:04:34','','0000-00-00 00:00:00',0),(5483,0,0,'H','2526','','',5483,0,0,'2025-11-28',4493,3226,0,0,3140,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5350,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 11:06:55','','0000-00-00 00:00:00',0),(5484,0,0,'H','2526','','',5484,0,0,'2025-11-28',4492,3225,0,0,3139,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5351,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 11:06:55','','0000-00-00 00:00:00',0),(5485,0,0,'H','2526','','',5485,0,0,'2025-11-28',4494,3227,0,0,3141,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5353,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 11:14:39','','0000-00-00 00:00:00',0),(5486,0,0,'H','2526','','',5486,0,0,'2025-11-28',4495,3228,0,0,3142,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5354,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 11:19:00','','0000-00-00 00:00:00',0),(5487,0,0,'H','2526','','',5487,0,0,'2025-11-28',4496,624,0,0,594,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5355,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 11:19:35','','0000-00-00 00:00:00',0),(5488,0,0,'H','2526','','P',5488,0,0,'2025-11-28',4245,3077,0,200,0,'A',6450.00,0.00,'CSH','','','','','0000-00-00','','',5357,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-28 11:20:44','vishal','2025-11-28 11:21:35',0),(5489,0,0,'H','2526','','',5489,0,0,'2025-11-28',4497,1265,0,0,1224,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5356,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 11:21:08','','0000-00-00 00:00:00',0),(5490,0,0,'H','2526','','',5490,0,0,'2025-11-28',4489,3181,0,0,3096,'B',4500.00,0.00,'7','bob','','87935','','0000-00-00','scan','',5358,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 11:23:00','','0000-00-00 00:00:00',0),(5491,0,0,'H','2526','','',5491,0,0,'2025-11-28',4498,1299,0,0,1258,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5359,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 11:23:29','','0000-00-00 00:00:00',0),(5492,0,0,'H','2526','','',5492,0,0,'2025-11-28',4499,3229,0,0,3143,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5360,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 11:25:28','','0000-00-00 00:00:00',0),(5493,0,0,'H','2526','','',5493,0,0,'2025-11-28',4501,789,0,0,758,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5361,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 11:28:11','','0000-00-00 00:00:00',0),(5494,0,0,'H','2526','','',5494,0,0,'2025-11-28',4503,3231,0,0,3145,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5362,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 11:28:50','','0000-00-00 00:00:00',0),(5495,0,0,'H','2526','','',5495,0,0,'2025-11-28',4502,3230,0,0,3144,'B',400.00,0.00,'7','BANK','','61177','','0000-00-00','scan ','',5363,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 11:29:37','','0000-00-00 00:00:00',0),(5496,0,0,'H','2526','','',5496,0,0,'2025-11-28',4504,3232,0,0,3146,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5364,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 11:30:59','','0000-00-00 00:00:00',0),(5497,0,0,'H','2526','','',5497,0,0,'2025-11-28',4505,1759,0,0,1715,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5365,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 11:31:35','','0000-00-00 00:00:00',0),(5498,0,0,'H','2526','','',5498,0,0,'2025-11-28',4500,2960,0,0,2883,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5366,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 11:32:14','','0000-00-00 00:00:00',0),(5499,0,0,'H','2526','','',5499,0,0,'2025-11-28',4473,3216,0,0,3130,'B',0.00,0.00,'CSH','','','','','0000-00-00','','',5367,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 11:33:21','','0000-00-00 00:00:00',0),(5500,0,0,'H','2526','','',5500,0,0,'2025-11-28',4506,3233,0,0,3147,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5368,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 11:34:35','','0000-00-00 00:00:00',0),(5501,0,0,'H','2526','','',5501,0,0,'2025-11-28',4507,2162,0,0,2110,'B',500.00,0.00,'7','hdfc','','97986','','0000-00-00','scan','',5369,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 11:36:12','','0000-00-00 00:00:00',0),(5502,0,0,'H','2526','','',5502,0,0,'2025-11-28',4508,2706,0,0,2636,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5370,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 11:36:13','','0000-00-00 00:00:00',0),(5503,0,0,'H','2526','','',5503,0,0,'2025-11-28',4509,1407,0,0,1367,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5371,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 11:37:43','','0000-00-00 00:00:00',0),(5504,0,0,'H','2526','','',5504,0,0,'2025-11-28',4497,1265,0,0,1224,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5372,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 11:38:24','','0000-00-00 00:00:00',0),(5505,0,0,'H','2526','','',5505,0,0,'2025-11-28',4512,3236,0,0,3150,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5373,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 11:40:22','','0000-00-00 00:00:00',0),(5506,0,0,'H','2526','','',5506,0,0,'2025-11-28',4513,3237,0,0,3151,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5374,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 11:41:06','','0000-00-00 00:00:00',0),(5507,0,0,'H','2526','','',5507,0,0,'2025-11-28',4510,3234,0,0,3148,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5375,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 11:41:23','','0000-00-00 00:00:00',0),(5508,0,0,'H','2526','','',5508,0,0,'2025-11-28',4511,3235,0,0,3149,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5376,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 11:41:34','','0000-00-00 00:00:00',0),(5509,0,0,'H','2526','','',5509,0,0,'2025-11-28',4514,3238,0,0,3152,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5377,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 11:43:24','','0000-00-00 00:00:00',0),(5510,0,0,'H','2526','','',5510,0,0,'2025-11-28',4480,3221,0,0,3135,'B',4600.00,0.00,'7','kotak','','00386','','0000-00-00','scan','',5378,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 11:44:13','','0000-00-00 00:00:00',0),(5511,0,0,'H','2526','','',5511,0,0,'2025-11-28',4517,3240,0,0,3154,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5379,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 11:48:15','','0000-00-00 00:00:00',0),(5512,0,0,'H','2526','','',5512,0,0,'2025-11-28',4519,3242,0,0,3156,'B',700.00,0.00,'7','punjab bank','','06623','','0000-00-00','scan','',5380,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 11:51:43','','0000-00-00 00:00:00',0),(5513,0,0,'H','2526','','',5513,0,0,'2025-11-28',4518,3241,0,0,3155,'B',900.00,0.00,'7','punjab bank','','06623','','0000-00-00','scan','',5381,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 11:51:59','','0000-00-00 00:00:00',0),(5514,0,0,'H','2526','','',5514,0,0,'2025-11-28',4521,3244,0,0,3158,'B',750.00,0.00,'7','axis bank','','04223','','0000-00-00','scan ','',5382,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 11:54:46','','0000-00-00 00:00:00',0),(5515,0,0,'H','2526','','',5515,0,0,'2025-11-28',4522,3245,0,0,3159,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5383,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 11:54:56','','0000-00-00 00:00:00',0),(5516,0,0,'H','2526','','',5516,0,0,'2025-11-28',4516,3239,0,0,3153,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5384,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 11:55:19','','0000-00-00 00:00:00',0),(5517,0,0,'H','2526','','',5517,0,0,'2025-11-28',4520,3243,0,0,3157,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5385,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 11:57:20','','0000-00-00 00:00:00',0),(5518,0,0,'H','2526','','',5518,0,0,'2025-11-28',4502,3230,0,0,3144,'B',50.00,0.00,'7','citizens co op','','22768','','0000-00-00','scan                          ','',5386,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 11:58:38','','0000-00-00 00:00:00',0),(5519,0,0,'H','2526','','',5519,0,0,'2025-11-28',4523,3246,0,0,3160,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5387,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 12:00:26','','0000-00-00 00:00:00',0),(5520,0,0,'H','2526','','',5520,0,0,'2025-11-28',4481,3222,0,0,3136,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',5388,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 12:02:37','','0000-00-00 00:00:00',0),(5521,0,0,'H','2526','','',5521,0,0,'2025-11-28',4479,3220,0,0,3134,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5389,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 12:05:48','','0000-00-00 00:00:00',0),(5522,0,0,'H','2526','','',5522,0,0,'2025-11-28',4524,3247,0,0,3161,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5390,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 12:07:18','','0000-00-00 00:00:00',0),(5523,0,0,'H','2526','','',5523,0,0,'2025-11-28',4473,3216,0,0,3130,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',5391,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 12:07:21','','0000-00-00 00:00:00',0),(5524,0,0,'H','2526','','',5524,0,0,'2025-11-28',4510,3234,0,0,3148,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5392,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 12:11:09','','0000-00-00 00:00:00',0),(5525,0,0,'H','2526','','',5525,0,0,'2025-11-28',4525,3248,0,0,3162,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5393,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 12:11:11','','0000-00-00 00:00:00',0),(5526,0,0,'H','2526','','',5526,0,0,'2025-11-28',4475,3217,0,0,3131,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',5394,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 12:15:27','','0000-00-00 00:00:00',0),(5527,0,0,'H','2526','','P',5527,0,0,'2025-11-28',4359,3151,0,209,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',5594,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-28 12:16:34','vishal','2025-11-30 15:26:27',0),(5528,0,0,'H','2526','','',5528,0,0,'2025-11-28',4526,3249,0,0,3163,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5395,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 12:18:15','','0000-00-00 00:00:00',0),(5529,0,0,'H','2526','','',5529,0,0,'2025-11-28',4527,3250,0,0,3164,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5396,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 12:19:52','','0000-00-00 00:00:00',0),(5530,0,0,'H','2526','','P',5530,0,0,'2025-11-28',3764,2780,0,178,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',6344,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-28 12:24:01','riya','2025-12-06 09:28:53',0),(5531,0,0,'H','2526','','',5531,0,0,'2025-11-28',4528,867,0,0,836,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5397,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 12:32:31','','0000-00-00 00:00:00',0),(5532,0,0,'H','2526','','',5532,0,0,'2025-11-28',4522,3245,0,0,3159,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',5399,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 12:42:18','','0000-00-00 00:00:00',0),(5533,0,0,'H','2526','','',5533,0,0,'2025-11-28',4529,3251,0,0,3165,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5400,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 12:46:10','','0000-00-00 00:00:00',0),(5534,0,0,'H','2526','','P',5534,0,0,'2025-11-28',4159,393,0,197,0,'A',13250.00,0.00,'7','RNSB','','1226','','0000-00-00','','',5402,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-28 12:48:21','vishal','2025-11-28 12:48:44',0),(5535,0,0,'H','2526','','',5535,0,0,'2025-11-28',4530,188,0,0,175,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5401,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 12:48:37','','0000-00-00 00:00:00',0),(5536,0,0,'H','2526','','',5536,0,0,'2025-11-28',4506,3233,0,0,3147,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',5403,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 13:50:29','','0000-00-00 00:00:00',0),(5537,0,0,'H','2526','','',5537,0,0,'2025-11-28',4531,3252,0,0,3166,'B',900.00,0.00,'7','SBI','','91833','','0000-00-00','SCAN','',5404,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 13:51:21','','0000-00-00 00:00:00',0),(5538,0,0,'H','2526','','',5538,0,0,'2025-11-28',4532,1548,0,0,1507,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5405,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 13:52:09','','0000-00-00 00:00:00',0),(5539,0,0,'H','2526','','',5539,0,0,'2025-11-28',4531,3252,0,0,3166,'B',4500.00,0.00,'7','SBI','','04129','','0000-00-00','SCAN','',5406,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 13:54:15','','0000-00-00 00:00:00',0),(5540,0,0,'H','2526','','',5540,0,0,'2025-11-28',4522,3245,0,0,3159,'D',-3500.00,0.00,'CSH','','','','','2025-11-28','','',5407,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 13:58:04','','0000-00-00 00:00:00',0),(5541,0,0,'H','2526','','',5541,0,0,'2025-11-28',4526,3249,0,0,3163,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',5408,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 14:02:46','','0000-00-00 00:00:00',0),(5542,0,0,'H','2526','','',5542,0,0,'2025-11-28',4517,3240,0,0,3154,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',5409,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 14:10:39','','0000-00-00 00:00:00',0),(5543,0,0,'H','2526','','',5543,0,0,'2025-11-28',4533,3253,0,0,3167,'B',400.00,0.00,'7','BOB','','29466','','0000-00-00','SCAN','',5410,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 14:24:11','','0000-00-00 00:00:00',0),(5544,0,0,'H','2526','','',5544,0,0,'2025-11-28',4534,3254,0,0,3168,'B',450.00,0.00,'CSH','','','','','0000-00-00','','',5411,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 14:25:40','','0000-00-00 00:00:00',0),(5545,0,0,'H','2526','','',5545,0,0,'2025-11-28',4536,3256,0,0,3170,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5412,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 16:20:45','','0000-00-00 00:00:00',0),(5546,0,0,'H','2526','','',5546,0,0,'2025-11-28',4537,3248,0,0,3162,'B',1500.00,0.00,'7','central bank','','14990','','0000-00-00','scan','',5413,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 16:29:27','','0000-00-00 00:00:00',0),(5547,0,0,'H','2526','','',5547,0,0,'2025-11-28',4539,1225,0,0,1186,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5414,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 16:32:26','','0000-00-00 00:00:00',0),(5548,0,0,'H','2526','','',5548,0,0,'2025-11-28',4542,3259,0,0,3173,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5415,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 16:52:49','','0000-00-00 00:00:00',0),(5549,0,0,'H','2526','','',5549,0,0,'2025-11-28',4543,3260,0,0,3174,'B',900.00,0.00,'2','axis bank','20913','20913','','0000-00-00','card','',5416,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 16:59:35','','0000-00-00 00:00:00',0),(5550,0,0,'H','2526','','',5550,0,0,'2025-11-28',4544,3261,0,0,3175,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5417,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 17:13:11','','0000-00-00 00:00:00',0),(5551,0,0,'H','2526','','',5551,0,0,'2025-11-28',4545,3262,0,0,3176,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5418,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 17:16:10','','0000-00-00 00:00:00',0),(5552,0,0,'H','2526','','',5552,0,0,'2025-11-28',4546,3263,0,0,3177,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5419,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 17:16:35','','0000-00-00 00:00:00',0),(5553,0,0,'H','2526','','',5553,0,0,'2025-11-28',4547,3264,0,0,3178,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5420,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 17:17:49','','0000-00-00 00:00:00',0),(5554,0,0,'H','2526','','',5554,0,0,'2025-11-28',4548,3241,0,0,3155,'B',4500.00,0.00,'7','axis bank','','39704','','0000-00-00','scan','',5421,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 17:28:57','','0000-00-00 00:00:00',0),(5555,0,0,'H','2526','','',5555,0,0,'2025-11-28',4549,3247,0,0,3161,'B',3500.00,0.00,'7','hdfc','','12393','','0000-00-00','scan','',5422,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 17:32:24','','0000-00-00 00:00:00',0),(5556,0,0,'H','2526','','',5556,0,0,'2025-11-28',4551,3266,0,0,3180,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5423,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 17:36:23','','0000-00-00 00:00:00',0),(5557,0,0,'H','2526','','',5557,0,0,'2025-11-28',4535,3255,0,0,3169,'B',900.00,0.00,'CRD','icici','65403','65403','','0000-00-00','card','',5424,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 17:40:36','','0000-00-00 00:00:00',0),(5558,0,0,'H','2526','','',5558,0,0,'2025-11-28',4552,1769,0,0,1725,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5425,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 17:43:12','','0000-00-00 00:00:00',0),(5559,0,0,'H','2526','','',5559,0,0,'2025-11-28',4553,3267,0,0,3181,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5426,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 17:45:13','','0000-00-00 00:00:00',0),(5560,0,0,'H','2526','','',5560,0,0,'2025-11-28',4536,3256,0,0,3170,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',5427,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 17:48:06','','0000-00-00 00:00:00',0),(5561,0,0,'H','2526','','',5561,0,0,'2025-11-28',4554,3268,0,0,3182,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5428,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 17:50:56','','0000-00-00 00:00:00',0),(5562,0,0,'H','2526','','',5562,0,0,'2025-11-28',4556,2221,0,0,2166,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5429,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 17:51:01','','0000-00-00 00:00:00',0),(5563,0,0,'H','2526','','',5563,0,0,'2025-11-28',4555,3269,0,0,3183,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5430,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 17:51:20','','0000-00-00 00:00:00',0),(5564,0,0,'H','2526','','',5564,0,0,'2025-11-28',4557,2812,0,0,2742,'B',400.00,0.00,'7','KOTAK BANK','','10212','','0000-00-00','scan ','',5431,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 17:53:39','','0000-00-00 00:00:00',0),(5565,0,0,'H','2526','','',5565,0,0,'2025-11-28',4559,3271,0,0,3185,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5432,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 17:58:45','','0000-00-00 00:00:00',0),(5566,0,0,'H','2526','','',5566,0,0,'2025-11-28',4560,571,0,0,545,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5433,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 18:07:53','','0000-00-00 00:00:00',0),(5567,0,0,'H','2526','','',5567,0,0,'2025-11-28',4561,593,0,0,566,'B',400.00,0.00,'7','unity small','','00000','','0000-00-00','scan ','',5434,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 18:09:03','','0000-00-00 00:00:00',0),(5568,0,0,'H','2526','','',5568,0,0,'2025-11-28',4556,2221,0,0,2166,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5435,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 18:10:39','','0000-00-00 00:00:00',0),(5569,0,0,'H','2526','','',5569,0,0,'2025-11-28',4563,3273,0,0,3187,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5436,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 18:12:14','','0000-00-00 00:00:00',0),(5570,0,0,'H','2526','','',5570,0,0,'2025-11-28',4562,3272,0,0,3186,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5437,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 18:13:02','','0000-00-00 00:00:00',0),(5571,0,0,'H','2526','','',5571,0,0,'2025-11-28',4564,3274,0,0,3188,'B',900.00,0.00,'7','HDFC BANK','','68716','','0000-00-00','scan ','',5438,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 18:14:50','','0000-00-00 00:00:00',0),(5572,0,0,'H','2526','','',5572,0,0,'2025-11-28',4565,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5439,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 18:15:22','','0000-00-00 00:00:00',0),(5573,0,0,'H','2526','','P',5573,0,0,'2025-11-28',4266,3085,0,203,0,'A',16000.00,0.00,'CSH','','','','','0000-00-00','','',6060,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-28 18:15:46','vishal','2025-12-03 20:03:14',0),(5574,0,0,'H','2526','','',5574,0,0,'2025-11-28',4555,3269,0,0,3183,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5440,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 18:17:25','','0000-00-00 00:00:00',0),(5575,0,0,'H','2526','','',5575,0,0,'2025-11-28',4543,3260,0,0,3174,'B',4600.00,0.00,'2','axis','06205','06205','','0000-00-00','card','',5441,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 18:18:55','','0000-00-00 00:00:00',0),(5576,0,0,'H','2526','','',5576,0,0,'2025-11-28',4567,2326,0,0,2269,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5442,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 18:21:05','','0000-00-00 00:00:00',0),(5577,0,0,'H','2526','','',5577,0,0,'2025-11-28',4566,200,0,0,187,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5443,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 18:21:14','','0000-00-00 00:00:00',0),(5578,0,0,'H','2526','','',5578,0,0,'2025-11-28',4568,817,0,0,786,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5444,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 18:22:15','','0000-00-00 00:00:00',0),(5579,0,0,'H','2526','','',5579,0,0,'2025-11-28',4569,3275,0,0,3189,'B',400.00,0.00,'7','sbi','','50580','','0000-00-00','scan  ','',5445,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 18:25:35','','0000-00-00 00:00:00',0),(5580,0,0,'H','2526','','',5580,0,0,'2025-11-28',4571,1586,0,0,1543,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5446,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 18:29:36','','0000-00-00 00:00:00',0),(5581,0,0,'H','2526','','',5581,0,0,'2025-11-28',4572,2988,0,0,2910,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5447,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 18:29:38','','0000-00-00 00:00:00',0),(5582,0,0,'H','2526','','P',5582,0,0,'2025-11-28',3909,2866,0,181,0,'A',25000.00,0.00,'CRD','ICICI','','3225','','0000-00-00','CARD','',5995,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-28 18:30:59','riya','2025-12-03 16:54:08',0),(5583,0,0,'H','2526','','',5583,0,0,'2025-11-28',4574,3276,0,0,3190,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5449,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 18:33:14','','0000-00-00 00:00:00',0),(5584,0,0,'H','2526','','',5584,0,0,'2025-11-28',4573,121,0,0,110,'B',450.00,0.00,'CSH','','','','','0000-00-00','','',5450,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 18:33:59','','0000-00-00 00:00:00',0),(5585,0,0,'H','2526','','',5585,0,0,'2025-11-28',4575,120,0,0,109,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5451,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 18:34:08','','0000-00-00 00:00:00',0),(5586,0,0,'H','2526','','',5586,0,0,'2025-11-28',4576,3277,0,0,3191,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5452,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 18:35:48','','0000-00-00 00:00:00',0),(5587,0,0,'H','2526','','',5587,0,0,'2025-11-28',4540,2380,0,0,2323,'B',200.00,0.00,'7','sbi','','70082','','0000-00-00','scan                          ','',5453,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 18:37:18','','0000-00-00 00:00:00',0),(5588,0,0,'H','2526','','',5588,0,0,'2025-11-28',4578,2276,0,0,2220,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5454,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 18:37:51','','0000-00-00 00:00:00',0),(5589,0,0,'H','2526','','',5589,0,0,'2025-11-28',4577,3202,0,0,3116,'B',4500.00,0.00,'7','federal bank','','68880','','0000-00-00','scan','',5455,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 18:39:14','','0000-00-00 00:00:00',0),(5590,0,0,'H','2526','','',5590,0,0,'2025-11-28',4579,3278,0,0,3192,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5456,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 18:41:22','','0000-00-00 00:00:00',0),(5591,0,0,'H','2526','','',5591,0,0,'2025-11-28',4580,2307,0,0,2250,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5457,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 18:45:08','','0000-00-00 00:00:00',0),(5592,0,0,'H','2526','','',5592,0,0,'2025-11-28',4570,551,0,0,525,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5458,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 18:45:44','','0000-00-00 00:00:00',0),(5593,0,0,'H','2526','','',5593,0,0,'2025-11-28',4581,3279,0,0,3193,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5459,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 18:47:39','','0000-00-00 00:00:00',0),(5594,0,0,'H','2526','','',5594,0,0,'2025-11-28',4583,3281,0,0,3195,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5460,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 18:49:52','','0000-00-00 00:00:00',0),(5595,0,0,'H','2526','','',5595,0,0,'2025-11-28',4582,3280,0,0,3194,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5461,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 18:50:03','','0000-00-00 00:00:00',0),(5596,0,0,'H','2526','','',5596,0,0,'2025-11-28',4584,3282,0,0,3196,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5462,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 18:50:42','','0000-00-00 00:00:00',0),(5597,0,0,'H','2526','','',5597,0,0,'2025-11-28',4586,3284,0,0,3198,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5463,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 18:55:12','','0000-00-00 00:00:00',0),(5598,0,0,'H','2526','','',5598,0,0,'2025-11-28',4585,3283,0,0,3197,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5464,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 18:56:06','','0000-00-00 00:00:00',0),(5599,0,0,'H','2526','','',5599,0,0,'2025-11-28',4587,3285,0,0,3199,'B',900.00,0.00,'7','icici','','39325','','0000-00-00','scan','',5465,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 18:58:14','','0000-00-00 00:00:00',0),(5600,0,0,'H','2526','','',5600,0,0,'2025-11-28',4588,1616,0,0,2528,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5466,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-28 18:59:19','','0000-00-00 00:00:00',0),(5601,0,0,'H','2526','','',5601,0,0,'2025-11-28',4589,1363,0,0,1323,'B',400.00,0.00,'7','ICICI BANK','','34654','','0000-00-00','scan ','',5467,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 19:05:06','','0000-00-00 00:00:00',0),(5602,0,0,'H','2526','','',5602,0,0,'2025-11-28',4564,3274,0,0,3188,'B',4000.00,0.00,'7','hdfc','','87640','','0000-00-00','scan','',5468,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 19:07:02','','0000-00-00 00:00:00',0),(5603,0,0,'H','2526','','',5603,0,0,'2025-11-28',4590,129,0,0,118,'B',100.00,0.00,'7','BOI','','55245','','0000-00-00','scan                          ','',5469,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-28 19:17:36','','0000-00-00 00:00:00',0),(5604,0,0,'H','2526','','',5604,0,0,'2025-11-28',4591,2563,0,0,2506,'B',400.00,0.00,'7','idbi bank','','63161','','0000-00-00','scan ','',5470,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 19:18:06','','0000-00-00 00:00:00',0),(5605,0,0,'H','2526','','',5605,0,0,'2025-11-28',4592,3286,0,0,3200,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5471,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 19:23:49','','0000-00-00 00:00:00',0),(5606,0,0,'H','2526','','',5606,0,0,'2025-11-28',4593,3162,0,0,3076,'B',500.00,0.00,'7','HDFC BANK','','09356','','0000-00-00','scan ','',5472,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-28 19:26:09','','0000-00-00 00:00:00',0),(5607,0,0,'H','2526','','',5607,0,0,'2025-11-28',4554,3268,0,0,3182,'D',-800.00,0.00,'CSH','','','','','2025-11-28','','',5448,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 20:19:27','','0000-00-00 00:00:00',0),(5608,0,0,'H','2526','','',5608,0,0,'2025-11-28',4554,3268,0,0,3182,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',5473,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-28 20:21:10','','0000-00-00 00:00:00',0),(5609,0,0,'H','2526','','P',5609,0,0,'2025-11-28',4594,3287,0,213,0,'A',50000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','Y',0,'N','riya','2025-11-28 21:45:36','riya','2025-11-28 21:44:29','riya','2025-11-28 21:45:36',0),(5610,0,0,'H','2526','','P',5610,0,0,'2025-11-28',4594,3287,0,213,0,'A',-50000.00,0.00,'CSH','','','','','0000-00-00','','by mistake',0,'N','P','Y',5609,'N','','0000-00-00 00:00:00','riya','2025-11-28 21:45:36','riya','2025-11-28 21:45:36',0),(5611,0,0,'H','2526','','P',5611,0,0,'2025-11-28',4594,3287,0,213,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',5694,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-28 21:46:00','riya','2025-12-01 13:33:09',0),(5612,0,0,'H','2526','','P',5612,0,0,'2025-11-28',4017,2937,0,187,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-11-28 21:55:57','riya','2025-11-28 21:55:57',0),(5613,0,0,'H','2526','','',5613,0,0,'2025-11-29',4595,3288,0,0,3201,'B',1250.00,0.00,'CSH','','','','','0000-00-00','','',5475,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 09:06:17','','0000-00-00 00:00:00',0),(5614,0,0,'H','2526','','',5614,0,0,'2025-11-29',4596,3289,0,0,3202,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5476,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 09:07:43','','0000-00-00 00:00:00',0),(5615,0,0,'H','2526','','',5615,0,0,'2025-11-29',4597,3290,0,0,3203,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5477,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 09:09:27','','0000-00-00 00:00:00',0),(5616,0,0,'H','2526','','',5616,0,0,'2025-11-29',4599,1736,0,0,1690,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5478,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 09:28:03','','0000-00-00 00:00:00',0),(5617,0,0,'H','2526','','',5617,0,0,'2025-11-29',4600,3292,0,0,3205,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5480,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 09:56:17','','0000-00-00 00:00:00',0),(5618,0,0,'H','2526','','',5618,0,0,'2025-11-29',4601,1593,0,0,1550,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5481,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 09:58:02','','0000-00-00 00:00:00',0),(5619,0,0,'H','2526','','',5619,0,0,'2025-11-29',4602,3293,0,0,3206,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5482,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 09:59:35','','0000-00-00 00:00:00',0),(5620,0,0,'H','2526','','',5620,0,0,'2025-11-29',4603,3294,0,0,3207,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5483,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 10:02:28','','0000-00-00 00:00:00',0),(5621,0,0,'H','2526','','',5621,0,0,'2025-11-29',4604,472,0,0,446,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5484,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 10:09:31','','0000-00-00 00:00:00',0),(5622,0,0,'H','2526','','',5622,0,0,'2025-11-29',4605,3295,0,0,3208,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5485,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 10:14:29','','0000-00-00 00:00:00',0),(5623,0,0,'H','2526','','',5623,0,0,'2025-11-29',4606,3296,0,0,3209,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5486,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 10:15:52','','0000-00-00 00:00:00',0),(5624,0,0,'H','2526','','',5624,0,0,'2025-11-29',4607,1465,0,0,1424,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5487,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 10:27:59','','0000-00-00 00:00:00',0),(5625,0,0,'H','2526','','',5625,0,0,'2025-11-29',4600,3292,0,0,3205,'D',-500.00,0.00,'CSH','','','','','2025-11-29','','',5488,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 10:34:31','','0000-00-00 00:00:00',0),(5626,0,0,'H','2526','','',5626,0,0,'2025-11-29',4600,3292,0,0,3205,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5489,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 10:35:12','','0000-00-00 00:00:00',0),(5627,0,0,'H','2526','','',5627,0,0,'2025-11-29',4608,3297,0,0,3210,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5490,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 10:37:55','','0000-00-00 00:00:00',0),(5628,0,0,'H','2526','','',5628,0,0,'2025-11-29',4609,3298,0,0,3211,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5491,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 10:53:45','','0000-00-00 00:00:00',0),(5629,0,0,'H','2526','','',5629,0,0,'2025-11-29',4610,2699,0,0,3212,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5492,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 10:54:30','','0000-00-00 00:00:00',0),(5630,0,0,'H','2526','','',5630,0,0,'2025-11-29',4611,3299,0,0,3213,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5493,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 10:56:23','','0000-00-00 00:00:00',0),(5631,0,0,'H','2526','','',5631,0,0,'2025-11-29',4613,3285,0,0,3199,'B',4000.00,0.00,'7','icici','','74848','','0000-00-00','scan','',5494,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 10:58:34','','0000-00-00 00:00:00',0),(5632,0,0,'H','2526','','',5632,0,0,'2025-11-29',4614,3300,0,0,3214,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5495,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 10:59:15','','0000-00-00 00:00:00',0),(5633,0,0,'H','2526','','',5633,0,0,'2025-11-29',4616,193,0,0,180,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5496,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 11:05:30','','0000-00-00 00:00:00',0),(5634,0,0,'H','2526','','',5634,0,0,'2025-11-29',4615,2183,0,0,2132,'B',500.00,0.00,'7','sbi','','49949','','0000-00-00','scan','',5497,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 11:05:48','','0000-00-00 00:00:00',0),(5635,0,0,'H','2526','','',5635,0,0,'2025-11-29',4617,3301,0,0,3215,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5498,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 11:06:59','','0000-00-00 00:00:00',0),(5636,0,0,'H','2526','','',5636,0,0,'2025-11-29',4618,3302,0,0,3216,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5499,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 11:07:51','','0000-00-00 00:00:00',0),(5637,0,0,'H','2526','','',5637,0,0,'2025-11-29',4600,3292,0,0,3205,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',5500,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 11:07:54','','0000-00-00 00:00:00',0),(5638,0,0,'H','2526','','',5638,0,0,'2025-11-29',4619,1623,0,0,1579,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5502,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 11:09:24','','0000-00-00 00:00:00',0),(5639,0,0,'H','2526','','',5639,0,0,'2025-11-29',4618,3302,0,0,3216,'D',-400.00,0.00,'CSH','','','','','2025-11-29','','',5501,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 11:09:40','','0000-00-00 00:00:00',0),(5640,0,0,'H','2526','','',5640,0,0,'2025-11-29',4618,3302,0,0,3216,'B',400.00,0.00,'7','axis bank','','07189','','0000-00-00','scan                          ','',5503,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 11:10:37','','0000-00-00 00:00:00',0),(5641,0,0,'H','2526','','',5641,0,0,'2025-11-29',4621,2919,0,0,2847,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5504,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 11:18:01','','0000-00-00 00:00:00',0),(5642,0,0,'H','2526','','',5642,0,0,'2025-11-29',4622,3304,0,0,3218,'B',500.00,0.00,'7','BOB BANK','','15688','','0000-00-00','scan ','',5505,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 11:20:04','','0000-00-00 00:00:00',0),(5643,0,0,'H','2526','','',5643,0,0,'2025-11-29',4623,1671,0,0,1626,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5506,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 11:22:03','','0000-00-00 00:00:00',0),(5644,0,0,'H','2526','','',5644,0,0,'2025-11-29',4624,3305,0,0,3219,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5508,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 11:27:22','','0000-00-00 00:00:00',0),(5645,0,0,'H','2526','','',5645,0,0,'2025-11-29',4625,3306,0,0,3220,'B',400.00,0.00,'7','axis bank','','73378','','0000-00-00','scan ','',5509,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 11:28:59','','0000-00-00 00:00:00',0),(5646,0,0,'H','2526','','',5646,0,0,'2025-11-29',4627,2620,0,0,2560,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5510,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-29 11:31:09','','0000-00-00 00:00:00',0),(5647,0,0,'H','2526','','',5647,0,0,'2025-11-29',4628,3307,0,0,3221,'B',750.00,0.00,'7','UNION BANK','','98864','','0000-00-00','scan ','',5511,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 11:33:20','','0000-00-00 00:00:00',0),(5648,0,0,'H','2526','','',5648,0,0,'2025-11-29',4629,3308,0,0,3222,'B',400.00,0.00,'7','bob','','74281','','0000-00-00','scan                          ','',5512,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 11:33:39','','0000-00-00 00:00:00',0),(5649,0,0,'H','2526','','',5649,0,0,'2025-11-29',4606,3296,0,0,3209,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',5513,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 11:34:00','','0000-00-00 00:00:00',0),(5650,0,0,'H','2526','','',5650,0,0,'2025-11-29',4626,2560,0,0,2503,'B',300.00,0.00,'7','sbi','','82860','','0000-00-00','scan                          ','',5514,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 11:35:06','','0000-00-00 00:00:00',0),(5651,0,0,'H','2526','','',5651,0,0,'2025-11-29',4632,3310,0,0,3224,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5515,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 11:36:59','','0000-00-00 00:00:00',0),(5652,0,0,'H','2526','','',5652,0,0,'2025-11-29',4631,3309,0,0,3223,'B',400.00,0.00,'7','ICICI BANK','','02094','','0000-00-00','scan ','',5516,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 11:37:27','','0000-00-00 00:00:00',0),(5653,0,0,'H','2526','','P',5653,0,0,'2025-11-29',4630,3303,0,214,0,'A',6000.00,0.00,'7','other bank','','6499','','0000-00-00','','',5587,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-29 11:37:52','vishal','2025-11-29 21:08:23',0),(5654,0,0,'H','2526','','',5654,0,0,'2025-11-29',4636,3314,0,0,3228,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5517,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 11:52:53','','0000-00-00 00:00:00',0),(5655,0,0,'H','2526','','',5655,0,0,'2025-11-29',4635,3313,0,0,3227,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5518,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 11:53:04','','0000-00-00 00:00:00',0),(5656,0,0,'H','2526','','P',5656,0,0,'2025-11-29',4409,3182,0,210,0,'A',6300.00,0.00,'7','boi bank','','88581','','0000-00-00','','',5519,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-29 11:53:59','vishal','2025-11-29 11:54:14',0),(5657,0,0,'H','2526','','',5657,0,0,'2025-11-29',4637,2541,0,0,2483,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5520,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 11:54:37','','0000-00-00 00:00:00',0),(5658,0,0,'H','2526','','',5658,0,0,'2025-11-29',4638,3315,0,0,3229,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5521,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 11:54:41','','0000-00-00 00:00:00',0),(5659,0,0,'H','2526','','',5659,0,0,'2025-11-29',4640,2893,0,0,3231,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5522,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 11:55:14','','0000-00-00 00:00:00',0),(5660,0,0,'H','2526','','',5660,0,0,'2025-11-29',4641,2779,0,0,3232,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5523,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 11:55:24','','0000-00-00 00:00:00',0),(5661,0,0,'H','2526','','',5661,0,0,'2025-11-29',4639,3316,0,0,3230,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5524,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-29 11:56:08','','0000-00-00 00:00:00',0),(5662,0,0,'H','2526','','',5662,0,0,'2025-11-29',4634,3312,0,0,3226,'B',750.00,0.00,'7','axis bank','','49141','','0000-00-00','scan ','',5525,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 11:56:18','','0000-00-00 00:00:00',0),(5663,0,0,'H','2526','','',5663,0,0,'2025-11-29',4644,2939,0,0,3233,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5526,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 11:57:54','','0000-00-00 00:00:00',0),(5664,0,0,'H','2526','','',5664,0,0,'2025-11-29',4642,1976,0,0,1928,'B',100.00,0.00,'7','INDIA POST PAY','','78816','','0000-00-00','SCAN','',5527,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-29 11:58:05','','0000-00-00 00:00:00',0),(5665,0,0,'H','2526','','',5665,0,0,'2025-11-29',4629,3308,0,0,3222,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5528,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 11:59:21','','0000-00-00 00:00:00',0),(5666,0,0,'H','2526','','',5666,0,0,'2025-11-29',4608,3297,0,0,3210,'B',4600.00,0.00,'7','bob','','05873','','0000-00-00','scan','',5529,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 11:59:31','','0000-00-00 00:00:00',0),(5667,0,0,'H','2526','','',5667,0,0,'2025-11-29',4646,3318,0,0,3235,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5530,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-29 12:00:03','','0000-00-00 00:00:00',0),(5668,0,0,'H','2526','','',5668,0,0,'2025-11-29',4645,3317,0,0,3234,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5531,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 12:01:13','','0000-00-00 00:00:00',0),(5669,0,0,'H','2526','','',5669,0,0,'2025-11-29',4639,3316,0,0,3230,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5532,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-29 12:01:54','','0000-00-00 00:00:00',0),(5670,0,0,'H','2526','','',5670,0,0,'2025-11-29',4647,3101,0,0,3021,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5533,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 12:03:07','','0000-00-00 00:00:00',0),(5671,0,0,'H','2526','','',5671,0,0,'2025-11-29',4649,1910,0,0,1865,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5534,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-29 12:03:17','','0000-00-00 00:00:00',0),(5672,0,0,'H','2526','','',5672,0,0,'2025-11-29',4648,3319,0,0,3236,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5535,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 12:03:32','','0000-00-00 00:00:00',0),(5673,0,0,'H','2526','','',5673,0,0,'2025-11-29',4605,3295,0,0,3208,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',5536,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 12:04:50','','0000-00-00 00:00:00',0),(5674,0,0,'H','2526','','',5674,0,0,'2025-11-29',4633,3311,0,0,3225,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5537,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 12:05:09','','0000-00-00 00:00:00',0),(5675,0,0,'H','2526','','',5675,0,0,'2025-11-29',4624,3305,0,0,3219,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',5538,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 12:07:22','','0000-00-00 00:00:00',0),(5676,0,0,'H','2526','','',5676,0,0,'2025-11-29',4623,1671,0,0,1626,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5539,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 12:10:42','','0000-00-00 00:00:00',0),(5677,0,0,'H','2526','','',5677,0,0,'2025-11-29',4650,2539,0,0,3237,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5540,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 12:11:26','','0000-00-00 00:00:00',0),(5678,0,0,'H','2526','','',5678,0,0,'2025-11-29',4612,2838,0,0,2769,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5541,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 12:13:36','','0000-00-00 00:00:00',0),(5679,0,0,'H','2526','','',5679,0,0,'2025-11-29',4651,3320,0,0,3238,'B',500.00,0.00,'7','sbi','','91788','','0000-00-00','scan ','',5542,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 12:13:44','','0000-00-00 00:00:00',0),(5680,0,0,'H','2526','','',5680,0,0,'2025-11-29',4653,3321,0,0,3239,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5543,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 12:17:12','','0000-00-00 00:00:00',0),(5681,0,0,'H','2526','','P',5681,0,0,'2025-11-29',4417,3186,0,211,0,'A',5700.00,0.00,'CSH','','','','','0000-00-00','','',5544,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-29 12:17:29','vishal','2025-11-29 12:17:48',0),(5682,0,0,'H','2526','','',5682,0,0,'2025-11-29',4654,3322,0,0,3240,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5545,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 12:18:22','','0000-00-00 00:00:00',0),(5683,0,0,'H','2526','','',5683,0,0,'2025-11-29',4655,3213,0,0,3127,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5546,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 12:20:32','','0000-00-00 00:00:00',0),(5684,0,0,'H','2526','','',5684,0,0,'2025-11-29',4656,1545,0,0,1504,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5547,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 12:21:46','','0000-00-00 00:00:00',0),(5685,0,0,'H','2526','','',5685,0,0,'2025-11-29',4657,2530,0,0,2472,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5548,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 12:25:02','','0000-00-00 00:00:00',0),(5686,0,0,'H','2526','','',5686,0,0,'2025-11-29',4660,3324,0,0,3242,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5549,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 12:27:33','','0000-00-00 00:00:00',0),(5687,0,0,'H','2526','','',5687,0,0,'2025-11-29',4659,3323,0,0,3241,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5550,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 12:27:42','','0000-00-00 00:00:00',0),(5688,0,0,'H','2526','','',5688,0,0,'2025-11-29',4629,3308,0,0,3222,'B',1000.00,0.00,'7','axis bank','','87316','','0000-00-00','scan ','',5551,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 12:31:04','','0000-00-00 00:00:00',0),(5689,0,0,'H','2526','','',5689,0,0,'2025-11-29',4663,3327,0,0,3245,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5552,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 12:32:26','','0000-00-00 00:00:00',0),(5690,0,0,'H','2526','','',5690,0,0,'2025-11-29',4646,3318,0,0,3235,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5553,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-29 12:33:50','','0000-00-00 00:00:00',0),(5691,0,0,'H','2526','','',5691,0,0,'2025-11-29',4664,3328,0,0,3246,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5554,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 12:33:52','','0000-00-00 00:00:00',0),(5692,0,0,'H','2526','','',5692,0,0,'2025-11-29',4665,3329,0,0,3247,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5555,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 12:34:38','','0000-00-00 00:00:00',0),(5693,0,0,'H','2526','','',5693,0,0,'2025-11-29',4662,3326,0,0,3244,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5556,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 12:35:14','','0000-00-00 00:00:00',0),(5694,0,0,'H','2526','','',5694,0,0,'2025-11-29',4661,3325,0,0,3243,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5557,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 12:36:26','','0000-00-00 00:00:00',0),(5695,0,0,'H','2526','','',5695,0,0,'2025-11-29',4666,3330,0,0,3248,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5558,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 12:38:46','','0000-00-00 00:00:00',0),(5696,0,0,'H','2526','','',5696,0,0,'2025-11-29',4667,1674,0,0,1629,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5559,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 12:41:24','','0000-00-00 00:00:00',0),(5697,0,0,'H','2526','','',5697,0,0,'2025-11-29',4633,3311,0,0,3225,'B',4600.00,0.00,'7','indin bank','','89885','','0000-00-00','scan','',5560,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 12:41:55','','0000-00-00 00:00:00',0),(5698,0,0,'H','2526','','',5698,0,0,'2025-11-29',4609,3298,0,0,3211,'B',4600.00,0.00,'7','sbi','','79093','','0000-00-00','scan','',5561,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 12:47:08','','0000-00-00 00:00:00',0),(5699,0,0,'H','2526','','',5699,0,0,'2025-11-29',4669,3332,0,0,3250,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5562,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 12:49:04','','0000-00-00 00:00:00',0),(5700,0,0,'H','2526','','',5700,0,0,'2025-11-29',4646,3318,0,0,3235,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',5563,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-29 12:53:35','','0000-00-00 00:00:00',0),(5701,0,0,'H','2526','','',5701,0,0,'2025-11-29',4622,3304,0,0,3218,'D',-500.00,0.00,'7','bob','','15688','','2025-11-29','SCAN','',5564,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 12:58:08','','0000-00-00 00:00:00',0),(5702,0,0,'H','2526','','',5702,0,0,'2025-11-29',4622,3304,0,0,3218,'B',800.00,0.00,'7','bob','','15688','','0000-00-00','scan','',5565,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 12:59:11','','0000-00-00 00:00:00',0),(5703,0,0,'H','2526','','',5703,0,0,'2025-11-29',4672,3334,0,0,3252,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5566,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 13:15:12','','0000-00-00 00:00:00',0),(5704,0,0,'H','2526','','',5704,0,0,'2025-11-29',4673,3335,0,0,3253,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',5567,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 13:17:32','','0000-00-00 00:00:00',0),(5705,0,0,'H','2526','','',5705,0,0,'2025-11-29',4660,3324,0,0,3242,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5568,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-11-29 13:21:48','','0000-00-00 00:00:00',0),(5706,0,0,'H','2526','','',5706,0,0,'2025-11-29',4664,3328,0,0,3246,'B',4000.00,0.00,'7','kotak','','17235','','0000-00-00','scan','',5569,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 13:32:14','','0000-00-00 00:00:00',0),(5707,0,0,'H','2526','','P',5707,0,0,'2025-11-29',4674,3336,0,215,0,'A',7000.00,0.00,'7','axis bank','','8643','','0000-00-00','','',5867,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-29 13:44:24','riya','2025-12-02 14:51:03',0),(5708,0,0,'H','2526','','',5708,0,0,'2025-11-29',4661,3325,0,0,3243,'D',-900.00,0.00,'CSH','','','','','2025-11-29','','',5570,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 14:00:07','','0000-00-00 00:00:00',0),(5709,0,0,'H','2526','','P',5709,0,0,'2025-11-29',4675,3295,0,216,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',5596,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-29 14:15:39','vishal','2025-11-30 18:15:08',0),(5710,0,0,'H','2526','','',5710,0,0,'2025-11-29',4672,3334,0,0,3252,'B',4500.00,0.00,'7','sbi','','92400','','0000-00-00','scan','',5571,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-11-29 14:45:42','','0000-00-00 00:00:00',0),(5711,0,0,'H','2526','','',5711,0,0,'2025-11-29',4676,392,0,0,2393,'B',4000.00,0.00,'7','sbi','','96254','','0000-00-00','scan','',5572,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-11-29 15:11:46','','0000-00-00 00:00:00',0),(5712,0,0,'H','2526','','',5712,0,0,'2025-11-29',4677,3337,0,0,3254,'B',300.00,0.00,'7','sbi','','30179','','0000-00-00','scan  ','',5573,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 17:56:33','','0000-00-00 00:00:00',0),(5713,0,0,'H','2526','','',5713,0,0,'2025-11-29',4677,3337,0,0,3254,'D',-300.00,0.00,'7','sbi','','30179','','2025-11-29','SCAN                          ','',5574,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 18:06:58','','0000-00-00 00:00:00',0),(5714,0,0,'H','2526','','',5714,0,0,'2025-11-29',4677,3337,0,0,3254,'B',500.00,0.00,'7','sbi','','30179','','0000-00-00','scan ','',5575,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 18:08:32','','0000-00-00 00:00:00',0),(5715,0,0,'H','2526','','',5715,0,0,'2025-11-29',4678,3338,0,0,3255,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5576,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-29 18:10:33','','0000-00-00 00:00:00',0),(5716,0,0,'H','2526','','',5716,0,0,'2025-11-29',4680,3339,0,0,3256,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5577,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 18:14:47','','0000-00-00 00:00:00',0),(5717,0,0,'H','2526','','',5717,0,0,'2025-11-29',4681,2317,0,0,2260,'B',300.00,0.00,'7','sbi','','59558','','0000-00-00','scan                          ','',5578,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 18:27:51','','0000-00-00 00:00:00',0),(5718,0,0,'H','2526','','',5718,0,0,'2025-11-29',4682,2980,0,0,2903,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5579,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 18:32:26','','0000-00-00 00:00:00',0),(5719,0,0,'H','2526','','',5719,0,0,'2025-11-29',4683,3340,0,0,3257,'B',500.00,0.00,'7','KOTAK MAHINDRA','','909220','','0000-00-00','SCAN','',5581,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-29 18:40:35','','0000-00-00 00:00:00',0),(5720,0,0,'H','2526','','',5720,0,0,'2025-11-29',4684,3341,0,0,3258,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5582,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 18:51:48','','0000-00-00 00:00:00',0),(5721,0,0,'H','2526','','',5721,0,0,'2025-11-29',4683,3340,0,0,3257,'B',300.00,0.00,'7','KOTAK MAHINDRA','','909220','','0000-00-00','SCAN','',5583,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-29 19:00:17','','0000-00-00 00:00:00',0),(5722,0,0,'H','2526','','',5722,0,0,'2025-11-29',4683,3340,0,0,3257,'D',-500.00,0.00,'7','KOTAK MAHINDRA','','909220','','2025-11-29','SCAN','',5584,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-11-29 19:01:38','','0000-00-00 00:00:00',0),(5723,0,0,'H','2526','','',5723,0,0,'2025-11-29',4685,3342,0,0,3259,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5585,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-11-29 19:27:38','','0000-00-00 00:00:00',0),(5724,0,0,'H','2526','','P',5724,0,0,'2025-11-29',4630,3303,0,214,0,'A',600.00,0.00,'7','other bank','','5101','','0000-00-00','','BY MISTAKE CASH',5587,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-29 21:07:17','vishal','2025-11-29 21:08:23',0),(5725,0,0,'H','2526','','P',5725,0,0,'2025-11-29',4686,3343,0,217,0,'A',10000.00,0.00,'7','bob bank','','6717','','0000-00-00','','',5703,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-29 21:16:10','riya','2025-12-01 15:28:12',0),(5726,0,0,'H','2526','','',5726,0,0,'2025-11-30',4687,3344,0,0,3260,'B',1100.00,0.00,'7','hdfc','','40741','','0000-00-00','scan','',5588,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-30 09:28:24','','0000-00-00 00:00:00',0),(5727,0,0,'H','2526','','',5727,0,0,'2025-11-30',4689,3143,0,0,3261,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5589,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-30 11:05:44','','0000-00-00 00:00:00',0),(5728,0,0,'H','2526','','P',5728,0,0,'2025-11-30',4688,3345,0,218,0,'A',1500.00,0.00,'7','hdfc bank','','2350','','0000-00-00','','',7018,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-30 11:07:59','riya','2025-12-11 14:46:45',0),(5729,0,0,'H','2526','','P',5729,0,0,'2025-11-30',4688,3345,0,218,0,'A',13500.00,0.00,'7','hdfc bank','','1207','','0000-00-00','','',7018,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-30 11:08:18','riya','2025-12-11 14:46:45',0),(5730,0,0,'H','2526','','P',5730,0,0,'2025-11-30',4691,3347,0,220,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',5920,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-30 11:49:21','vishal','2025-12-02 20:58:15',0),(5731,0,0,'H','2526','','',5731,0,0,'2025-11-30',4692,3348,0,0,3262,'B',1700.00,0.00,'7','hdfc','','08938','','0000-00-00','scan','',5591,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-11-30 12:05:37','','0000-00-00 00:00:00',0),(5732,0,0,'H','2526','','P',5732,0,0,'2025-11-30',4690,3346,0,219,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',5772,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-30 12:14:08','riya','2025-12-01 19:03:43',0),(5733,0,0,'H','2526','','P',5733,0,0,'2025-11-30',4594,3287,0,213,0,'A',33000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','Y',0,'N','vishal','2025-11-30 12:19:17','vishal','2025-11-30 12:18:39','vishal','2025-11-30 12:19:17',0),(5734,0,0,'H','2526','','P',5734,0,0,'2025-11-30',4594,3287,0,213,0,'A',-33000.00,0.00,'CSH','','','','','0000-00-00','','BY MISTAKE 203 IP NU AMA LEVAI GYU ',0,'N','P','Y',5733,'N','','0000-00-00 00:00:00','vishal','2025-11-30 12:19:17','vishal','2025-11-30 12:19:17',0),(5735,0,0,'H','2526','','P',5735,0,0,'2025-11-30',4266,3085,0,203,0,'A',33000.00,0.00,'CSH','','','','','0000-00-00','','',6060,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-30 12:19:59','vishal','2025-12-03 20:03:14',0),(5736,0,0,'H','2526','','P',5736,0,0,'2025-11-30',4693,3349,0,221,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',6193,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-30 13:48:07','riya','2025-12-04 20:45:23',0),(5737,0,0,'H','2526','','P',5737,0,0,'2025-11-30',3861,2834,0,179,0,'A',15000.00,0.00,'7','AXIS BANK','','1527','','0000-00-00','','',5592,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-30 13:50:50','vishal','2025-11-30 13:51:49',0),(5738,0,0,'H','2526','','P',5738,0,0,'2025-11-30',4359,3151,0,209,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',5594,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-30 15:25:18','vishal','2025-11-30 15:26:27',0),(5739,0,0,'H','2526','','P',5739,0,0,'2025-11-30',4359,3151,0,209,0,'A',18000.00,0.00,'CSH','','','','','0000-00-00','','',5594,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-30 15:25:55','vishal','2025-11-30 15:26:27',0),(5740,0,0,'H','2526','','P',5740,0,0,'2025-11-30',2879,2243,0,146,0,'A',18000.00,0.00,'7','SBI BANK','','4060','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-30 15:32:35','vishal','2025-11-30 15:32:35',0),(5741,0,0,'H','2526','','P',5741,0,0,'2025-11-30',4694,3350,0,222,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',7319,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-30 18:31:14','riya','2025-12-13 14:24:24',0),(5742,0,0,'H','2526','','P',5742,0,0,'2025-11-30',3909,2866,0,181,0,'A',25000.00,0.00,'CRD','ICICI BANK','','0007','','0000-00-00','','',5995,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-30 19:29:50','riya','2025-12-03 16:54:08',0),(5743,0,0,'H','2526','','P',5743,0,0,'2025-11-30',4017,2937,0,187,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-11-30 20:13:49','vishal','2025-11-30 20:13:49',0),(5744,0,0,'H','2526','','',5744,0,0,'2025-12-01',4695,3351,0,0,3263,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',5597,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 08:42:38','','0000-00-00 00:00:00',0),(5745,0,0,'H','2526','','',5745,0,0,'2025-12-01',4696,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5598,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 09:06:37','','0000-00-00 00:00:00',0),(5746,0,0,'H','2526','','',5746,0,0,'2025-12-01',4697,3352,0,0,3264,'B',1900.00,0.00,'CSH','','','','','0000-00-00','','',5599,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 09:11:09','','0000-00-00 00:00:00',0),(5747,0,0,'H','2526','','',5747,0,0,'2025-12-01',4698,3353,0,0,3265,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',5600,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 09:20:33','','0000-00-00 00:00:00',0),(5748,0,0,'H','2526','','',5748,0,0,'2025-12-01',4699,3354,0,0,3266,'B',1400.00,0.00,'7','sbi','','24450','','0000-00-00','scan','',5601,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 09:26:52','','0000-00-00 00:00:00',0),(5749,0,0,'H','2526','','',5749,0,0,'2025-12-01',4700,3355,0,0,3267,'B',1400.00,0.00,'7','bank','','23400','','0000-00-00','scan','',5602,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 09:31:59','','0000-00-00 00:00:00',0),(5750,0,0,'H','2526','','',5750,0,0,'2025-12-01',4702,2503,0,0,2446,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5603,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 09:49:21','','0000-00-00 00:00:00',0),(5751,0,0,'H','2526','','',5751,0,0,'2025-12-01',4701,3356,0,0,3268,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5604,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 09:49:42','','0000-00-00 00:00:00',0),(5752,0,0,'H','2526','','',5752,0,0,'2025-12-01',4703,2210,0,0,2155,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5605,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 09:51:18','','0000-00-00 00:00:00',0),(5753,0,0,'H','2526','','',5753,0,0,'2025-12-01',4704,2263,0,0,2207,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5606,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 09:58:16','','0000-00-00 00:00:00',0),(5754,0,0,'H','2526','','',5754,0,0,'2025-12-01',4705,3357,0,0,3269,'B',500.00,0.00,'7','sbi','','91025','','0000-00-00','scan','',5607,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 10:01:20','','0000-00-00 00:00:00',0),(5755,0,0,'H','2526','','',5755,0,0,'2025-12-01',4706,3358,0,0,3270,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5608,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 10:03:11','','0000-00-00 00:00:00',0),(5756,0,0,'H','2526','','',5756,0,0,'2025-12-01',4707,3359,0,0,3271,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5609,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 10:04:36','','0000-00-00 00:00:00',0),(5757,0,0,'H','2526','','',5757,0,0,'2025-12-01',4708,2778,0,0,2709,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5610,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 10:08:05','','0000-00-00 00:00:00',0),(5758,0,0,'H','2526','','',5758,0,0,'2025-12-01',4709,3360,0,0,3272,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5611,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 10:15:31','','0000-00-00 00:00:00',0),(5759,0,0,'H','2526','','',5759,0,0,'2025-12-01',4710,1747,0,0,1701,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5612,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-01 10:17:19','','0000-00-00 00:00:00',0),(5760,0,0,'H','2526','','',5760,0,0,'2025-12-01',4712,3362,0,0,3273,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5613,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 10:21:46','','0000-00-00 00:00:00',0),(5761,0,0,'H','2526','','',5761,0,0,'2025-12-01',4713,961,0,0,930,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5614,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 10:25:32','','0000-00-00 00:00:00',0),(5762,0,0,'H','2526','','P',5762,0,0,'2025-12-01',4711,3361,0,223,0,'A',50000.00,0.00,'CSH','','','','','0000-00-00','','',5947,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-01 10:27:52','riya','2025-12-03 11:01:32',0),(5763,0,0,'H','2526','','',5763,0,0,'2025-12-01',4714,3363,0,0,3274,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5615,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 10:33:37','','0000-00-00 00:00:00',0),(5764,0,0,'H','2526','','',5764,0,0,'2025-12-01',4715,2785,0,0,2714,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5616,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 10:35:27','','0000-00-00 00:00:00',0),(5765,0,0,'H','2526','','',5765,0,0,'2025-12-01',4716,3364,0,0,3275,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5617,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 10:37:58','','0000-00-00 00:00:00',0),(5766,0,0,'H','2526','','',5766,0,0,'2025-12-01',4717,2787,0,0,2716,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5618,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 10:39:41','','0000-00-00 00:00:00',0),(5767,0,0,'H','2526','','',5767,0,0,'2025-12-01',4718,3162,0,0,3076,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5619,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 10:41:46','','0000-00-00 00:00:00',0),(5768,0,0,'H','2526','','',5768,0,0,'2025-12-01',4719,3365,0,0,3276,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5620,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 10:42:15','','0000-00-00 00:00:00',0),(5769,0,0,'H','2526','','',5769,0,0,'2025-12-01',4720,1271,0,0,1230,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5621,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 10:45:36','','0000-00-00 00:00:00',0),(5770,0,0,'H','2526','','',5770,0,0,'2025-12-01',4721,3366,0,0,3277,'B',750.00,0.00,'7','kotak','','89070','','0000-00-00','scan','',5622,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 10:47:15','','0000-00-00 00:00:00',0),(5771,0,0,'H','2526','','',5771,0,0,'2025-12-01',4722,3367,0,0,3278,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5623,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 10:47:32','','0000-00-00 00:00:00',0),(5772,0,0,'H','2526','','',5772,0,0,'2025-12-01',4723,2916,0,0,2844,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5624,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 10:48:15','','0000-00-00 00:00:00',0),(5773,0,0,'H','2526','','',5773,0,0,'2025-12-01',4724,1547,0,0,1506,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5625,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 10:51:08','','0000-00-00 00:00:00',0),(5774,0,0,'H','2526','','',5774,0,0,'2025-12-01',4726,3093,0,0,3013,'B',300.00,0.00,'7','axis bank','','59475','','0000-00-00','scan                          ','',5626,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 10:56:07','','0000-00-00 00:00:00',0),(5775,0,0,'H','2526','','',5775,0,0,'2025-12-01',4725,3019,0,0,2941,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5627,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 10:56:12','','0000-00-00 00:00:00',0),(5776,0,0,'H','2526','','',5776,0,0,'2025-12-01',4727,2971,0,0,2894,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5628,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 10:58:36','','0000-00-00 00:00:00',0),(5777,0,0,'H','2526','','',5777,0,0,'2025-12-01',4709,3360,0,0,3272,'B',4600.00,0.00,'7','punjab bank','','03957','','0000-00-00','scan','',5629,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 10:59:09','','0000-00-00 00:00:00',0),(5778,0,0,'H','2526','','',5778,0,0,'2025-12-01',4728,3368,0,0,3279,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5630,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 11:01:27','','0000-00-00 00:00:00',0),(5779,0,0,'H','2526','','P',5779,0,0,'2025-12-01',4691,3347,0,220,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',5920,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-01 11:03:22','vishal','2025-12-02 20:58:15',0),(5780,0,0,'H','2526','','',5780,0,0,'2025-12-01',4729,3369,0,0,3280,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5631,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 11:04:20','','0000-00-00 00:00:00',0),(5781,0,0,'H','2526','','',5781,0,0,'2025-12-01',4731,3371,0,0,3282,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5632,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 11:04:45','','0000-00-00 00:00:00',0),(5782,0,0,'H','2526','','',5782,0,0,'2025-12-01',4732,3372,0,0,3283,'B',750.00,0.00,'7','hdfc','','78136','','0000-00-00','scan                          ','',5633,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 11:05:46','','0000-00-00 00:00:00',0),(5783,0,0,'H','2526','','',5783,0,0,'2025-12-01',4730,3370,0,0,3281,'B',750.00,0.00,'7','hdfc','','78136','','0000-00-00','scan                          ','',5634,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 11:06:06','','0000-00-00 00:00:00',0),(5784,0,0,'H','2526','','',5784,0,0,'2025-12-01',4733,3373,0,0,3284,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5635,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 11:07:43','','0000-00-00 00:00:00',0),(5785,0,0,'H','2526','','',5785,0,0,'2025-12-01',4734,2962,0,0,2885,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5636,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 11:09:41','','0000-00-00 00:00:00',0),(5786,0,0,'H','2526','','',5786,0,0,'2025-12-01',4736,3375,0,0,3286,'B',750.00,0.00,'7','hdfc','','34466','','0000-00-00','scan','',5637,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 11:12:56','','0000-00-00 00:00:00',0),(5787,0,0,'H','2526','','',5787,0,0,'2025-12-01',4736,3375,0,0,3286,'D',-750.00,0.00,'7','hdfc','','34466','','2025-12-01','SCAN','',5638,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 11:15:39','','0000-00-00 00:00:00',0),(5788,0,0,'H','2526','','',5788,0,0,'2025-12-01',4736,3375,0,0,3286,'B',750.00,0.00,'7','HDFC BANK','','34466','','0000-00-00','scan ','',5639,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 11:17:13','','0000-00-00 00:00:00',0),(5789,0,0,'H','2526','','',5789,0,0,'2025-12-01',4712,3362,0,0,3273,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',5640,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 11:23:39','','0000-00-00 00:00:00',0),(5790,0,0,'H','2526','','',5790,0,0,'2025-12-01',4738,2402,0,0,2346,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5641,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 11:25:11','','0000-00-00 00:00:00',0),(5791,0,0,'H','2526','','',5791,0,0,'2025-12-01',4735,3374,0,0,3285,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5642,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-01 11:26:14','','0000-00-00 00:00:00',0),(5792,0,0,'H','2526','','P',5792,0,0,'2025-12-01',4693,3349,0,221,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',6193,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-01 11:26:54','riya','2025-12-04 20:45:23',0),(5793,0,0,'H','2526','','',5793,0,0,'2025-12-01',4739,1067,0,0,1033,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5643,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-01 11:26:55','','0000-00-00 00:00:00',0),(5794,0,0,'H','2526','','',5794,0,0,'2025-12-01',4728,3368,0,0,3279,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5644,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 11:33:15','','0000-00-00 00:00:00',0),(5795,0,0,'H','2526','','',5795,0,0,'2025-12-01',4714,3363,0,0,3274,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',5645,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 11:37:07','','0000-00-00 00:00:00',0),(5796,0,0,'H','2526','','',5796,0,0,'2025-12-01',4741,2713,0,0,2643,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5646,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 11:39:39','','0000-00-00 00:00:00',0),(5797,0,0,'H','2526','','',5797,0,0,'2025-12-01',4743,3378,0,0,3289,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5648,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 11:44:26','','0000-00-00 00:00:00',0),(5798,0,0,'H','2526','','',5798,0,0,'2025-12-01',4744,3379,0,0,3290,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5649,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 11:44:40','','0000-00-00 00:00:00',0),(5799,0,0,'H','2526','','',5799,0,0,'2025-12-01',4745,3380,0,0,3291,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5650,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 11:46:09','','0000-00-00 00:00:00',0),(5800,0,0,'H','2526','','',5800,0,0,'2025-12-01',4746,2334,0,0,2277,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5651,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 11:46:37','','0000-00-00 00:00:00',0),(5801,0,0,'H','2526','','',5801,0,0,'2025-12-01',4747,3381,0,0,3292,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5652,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 11:47:36','','0000-00-00 00:00:00',0),(5802,0,0,'H','2526','','',5802,0,0,'2025-12-01',4748,1161,0,0,1120,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5653,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 11:50:26','','0000-00-00 00:00:00',0),(5803,0,0,'H','2526','','',5803,0,0,'2025-12-01',4749,3382,0,0,3293,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5654,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 11:54:39','','0000-00-00 00:00:00',0),(5804,0,0,'H','2526','','',5804,0,0,'2025-12-01',4737,3376,0,0,3287,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5655,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 11:56:39','','0000-00-00 00:00:00',0),(5805,0,0,'H','2526','','',5805,0,0,'2025-12-01',4750,1576,0,0,1535,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5656,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 11:58:59','','0000-00-00 00:00:00',0),(5806,0,0,'H','2526','','',5806,0,0,'2025-12-01',4725,3019,0,0,2941,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5658,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 12:04:07','','0000-00-00 00:00:00',0),(5807,0,0,'H','2526','','',5807,0,0,'2025-12-01',4722,3367,0,0,3278,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',5659,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 12:05:39','','0000-00-00 00:00:00',0),(5808,0,0,'H','2526','','',5808,0,0,'2025-12-01',4752,2237,0,0,2182,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5660,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 12:07:26','','0000-00-00 00:00:00',0),(5809,0,0,'H','2526','','',5809,0,0,'2025-12-01',4753,3384,0,0,3294,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5661,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 12:13:46','','0000-00-00 00:00:00',0),(5810,0,0,'H','2526','','P',5810,0,0,'2025-12-01',4751,3383,0,224,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',6411,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-01 12:14:10','riya','2025-12-06 12:53:47',0),(5811,0,0,'H','2526','','',5811,0,0,'2025-12-01',4754,3385,0,0,3295,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5662,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 12:14:18','','0000-00-00 00:00:00',0),(5812,0,0,'H','2526','','',5812,0,0,'2025-12-01',4755,3386,0,0,3296,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5663,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 12:14:47','','0000-00-00 00:00:00',0),(5813,0,0,'H','2526','','',5813,0,0,'2025-12-01',4756,191,0,0,178,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5664,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-01 12:21:50','','0000-00-00 00:00:00',0),(5814,0,0,'H','2526','','',5814,0,0,'2025-12-01',4757,3387,0,0,3297,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5665,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 12:26:18','','0000-00-00 00:00:00',0),(5815,0,0,'H','2526','','',5815,0,0,'2025-12-01',4756,191,0,0,178,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5667,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-01 12:27:23','','0000-00-00 00:00:00',0),(5816,0,0,'H','2526','','',5816,0,0,'2025-12-01',4758,3388,0,0,3298,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5668,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 12:28:11','','0000-00-00 00:00:00',0),(5817,0,0,'H','2526','','',5817,0,0,'2025-12-01',4734,2962,0,0,2885,'D',-400.00,0.00,'CSH','','','','','2025-12-01','','',5666,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 12:29:06','','0000-00-00 00:00:00',0),(5818,0,0,'H','2526','','',5818,0,0,'2025-12-01',4729,3369,0,0,3280,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',5669,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 12:30:59','','0000-00-00 00:00:00',0),(5819,0,0,'H','2526','','',5819,0,0,'2025-12-01',4760,2311,0,0,2254,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5670,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 12:31:01','','0000-00-00 00:00:00',0),(5820,0,0,'H','2526','','',5820,0,0,'2025-12-01',4759,2660,0,0,3299,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5671,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 12:31:51','','0000-00-00 00:00:00',0),(5821,0,0,'H','2526','','',5821,0,0,'2025-12-01',4744,3379,0,0,3290,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5672,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 12:33:56','','0000-00-00 00:00:00',0),(5822,0,0,'H','2526','','',5822,0,0,'2025-12-01',4761,3389,0,0,3300,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5673,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-01 12:36:31','','0000-00-00 00:00:00',0),(5823,0,0,'H','2526','','',5823,0,0,'2025-12-01',4762,3390,0,0,3301,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5674,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 12:38:40','','0000-00-00 00:00:00',0),(5824,0,0,'H','2526','','',5824,0,0,'2025-12-01',4763,3391,0,0,3302,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5675,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 12:45:15','','0000-00-00 00:00:00',0),(5825,0,0,'H','2526','','',5825,0,0,'2025-12-01',4764,3392,0,0,3303,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5676,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 12:49:34','','0000-00-00 00:00:00',0),(5826,0,0,'H','2526','','',5826,0,0,'2025-12-01',4765,3393,0,0,3304,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5677,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 12:50:10','','0000-00-00 00:00:00',0),(5827,0,0,'H','2526','','',5827,0,0,'2025-12-01',4761,3389,0,0,3300,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5678,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-01 12:50:47','','0000-00-00 00:00:00',0),(5828,0,0,'H','2526','','',5828,0,0,'2025-12-01',4766,212,0,0,199,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5680,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 12:51:37','','0000-00-00 00:00:00',0),(5829,0,0,'H','2526','','',5829,0,0,'2025-12-01',4765,3393,0,0,3304,'D',-700.00,0.00,'CSH','','','','','2025-12-01','','',5679,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 12:51:42','','0000-00-00 00:00:00',0),(5830,0,0,'H','2526','','',5830,0,0,'2025-12-01',4765,3393,0,0,3304,'B',700.00,0.00,'7','icici','','05294','','0000-00-00','scan                          ','',5681,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 12:52:48','','0000-00-00 00:00:00',0),(5831,0,0,'H','2526','','',5831,0,0,'2025-12-01',4767,3394,0,0,3305,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5682,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 12:54:11','','0000-00-00 00:00:00',0),(5832,0,0,'H','2526','','',5832,0,0,'2025-12-01',4768,3395,0,0,3306,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5683,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 12:57:09','','0000-00-00 00:00:00',0),(5833,0,0,'H','2526','','',5833,0,0,'2025-12-01',4769,1826,0,0,1781,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5684,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 12:59:56','','0000-00-00 00:00:00',0),(5834,0,0,'H','2526','','',5834,0,0,'2025-12-01',4770,3396,0,0,3307,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5685,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 13:00:52','','0000-00-00 00:00:00',0),(5835,0,0,'H','2526','','',5835,0,0,'2025-12-01',4771,3397,0,0,3308,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5686,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 13:04:16','','0000-00-00 00:00:00',0),(5836,0,0,'H','2526','','',5836,0,0,'2025-12-01',4772,2591,0,0,2534,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5687,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 13:05:28','','0000-00-00 00:00:00',0),(5837,0,0,'H','2526','','',5837,0,0,'2025-12-01',4728,3368,0,0,3279,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',5688,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 13:09:36','','0000-00-00 00:00:00',0),(5838,0,0,'H','2526','','',5838,0,0,'2025-12-01',4758,3388,0,0,3298,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',5689,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 13:12:32','','0000-00-00 00:00:00',0),(5839,0,0,'H','2526','','',5839,0,0,'2025-12-01',4769,1826,0,0,1781,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',5690,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 13:16:34','','0000-00-00 00:00:00',0),(5840,0,0,'H','2526','','',5840,0,0,'2025-12-01',4768,3395,0,0,3306,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',5691,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 13:21:14','','0000-00-00 00:00:00',0),(5841,0,0,'H','2526','','P',5841,0,0,'2025-12-01',3764,2780,0,178,0,'A',25250.00,0.00,'CSH','','','','','0000-00-00','','',6344,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-01 13:24:29','riya','2025-12-06 09:28:53',0),(5842,0,0,'H','2526','','',5842,0,0,'2025-12-01',4773,1209,0,0,1170,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5692,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 13:30:25','','0000-00-00 00:00:00',0),(5843,0,0,'H','2526','','',5843,0,0,'2025-12-01',4774,3398,0,0,3309,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5693,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 13:30:46','','0000-00-00 00:00:00',0),(5844,0,0,'H','2526','','P',5844,0,0,'2025-12-01',4594,3287,0,213,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',5694,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-01 13:32:42','riya','2025-12-01 13:33:09',0),(5845,0,0,'H','2526','','',5845,0,0,'2025-12-01',4724,1547,0,0,1506,'D',-500.00,0.00,'CSH','','','','','2025-12-01','','',5695,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 13:40:21','','0000-00-00 00:00:00',0),(5846,0,0,'H','2526','','',5846,0,0,'2025-12-01',4724,1547,0,0,1506,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5696,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 13:41:09','','0000-00-00 00:00:00',0),(5847,0,0,'H','2526','','',5847,0,0,'2025-12-01',4776,3399,0,0,3310,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5697,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 13:54:31','','0000-00-00 00:00:00',0),(5848,0,0,'H','2526','','',5848,0,0,'2025-12-01',4775,3342,0,0,3259,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',5698,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 14:16:45','','0000-00-00 00:00:00',0),(5849,0,0,'H','2526','','P',5849,0,0,'2025-12-01',4047,2956,0,191,0,'A',50000.00,0.00,'CSH','','','','','0000-00-00','','',5700,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-01 14:32:33','riya','2025-12-01 14:33:15',0),(5850,0,0,'H','2526','','',5850,0,0,'2025-12-01',4779,3402,0,0,3311,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5699,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 14:33:03','','0000-00-00 00:00:00',0),(5851,0,0,'H','2526','','',5851,0,0,'2025-12-01',4727,2971,0,0,2894,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5701,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-01 14:33:45','','0000-00-00 00:00:00',0),(5852,0,0,'H','2526','','P',5852,0,0,'2025-12-01',4778,3401,0,226,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',6240,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-01 14:40:07','vishal','2025-12-05 11:53:00',0),(5853,0,0,'H','2526','','P',5853,0,0,'2025-12-01',4780,3403,0,227,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',5865,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-01 14:56:00','riya','2025-12-02 14:21:28',0),(5854,0,0,'H','2526','','P',5854,0,0,'2025-12-01',4693,3349,0,221,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',6193,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-01 15:11:10','riya','2025-12-04 20:45:23',0),(5855,0,0,'H','2526','','P',5855,0,0,'2025-12-01',4781,3404,0,228,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',6270,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-01 15:23:15','vishal','2025-12-05 14:40:20',0),(5856,0,0,'H','2526','','P',5856,0,0,'2025-12-01',4686,3343,0,217,0,'A',7800.00,0.00,'CSH','','','','','0000-00-00','','',5703,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-01 15:26:01','riya','2025-12-01 15:28:12',0),(5857,0,0,'H','2526','','P',5857,0,0,'2025-12-01',4351,3143,0,207,0,'A',1374.00,0.00,'7','BANK OF BARODA','','570196644645','','0000-00-00','SCAN','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-01 15:42:29','riya','2025-12-01 15:42:29',0),(5858,0,0,'H','2526','','',5858,0,0,'2025-12-01',4782,2818,0,0,2748,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5704,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 16:27:36','','0000-00-00 00:00:00',0),(5859,0,0,'H','2526','','',5859,0,0,'2025-12-01',4783,3134,0,0,3053,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5706,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-01 16:51:14','','0000-00-00 00:00:00',0),(5860,0,0,'H','2526','','',5860,0,0,'2025-12-01',4785,1880,0,0,1834,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5707,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 16:52:23','','0000-00-00 00:00:00',0),(5861,0,0,'H','2526','','',5861,0,0,'2025-12-01',4784,3207,0,0,3121,'B',400.00,0.00,'CRD','ICICI BANK','','3227','','0000-00-00','CARD','',5708,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 16:55:41','','0000-00-00 00:00:00',0),(5862,0,0,'H','2526','','',5862,0,0,'2025-12-01',4782,2818,0,0,2748,'D',-500.00,0.00,'CSH','','','','','2025-12-01','','',5709,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 17:11:00','','0000-00-00 00:00:00',0),(5863,0,0,'H','2526','','',5863,0,0,'2025-12-01',4782,2818,0,0,2748,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5710,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 17:13:04','','0000-00-00 00:00:00',0),(5864,0,0,'H','2526','','',5864,0,0,'2025-12-01',4786,2816,0,0,2746,'B',500.00,0.00,'7','idfc bank','','89230','','0000-00-00','scan','',5711,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 17:15:27','','0000-00-00 00:00:00',0),(5865,0,0,'H','2526','','',5865,0,0,'2025-12-01',4787,3397,0,0,3308,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',5712,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 17:18:49','','0000-00-00 00:00:00',0),(5866,0,0,'H','2526','','',5866,0,0,'2025-12-01',4789,3406,0,0,3313,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5713,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 17:20:34','','0000-00-00 00:00:00',0),(5867,0,0,'H','2526','','',5867,0,0,'2025-12-01',4790,2691,0,0,3314,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5714,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-01 17:22:32','','0000-00-00 00:00:00',0),(5868,0,0,'H','2526','','',5868,0,0,'2025-12-01',4788,3405,0,0,3312,'B',700.00,0.00,'7','sbi','','24013','','0000-00-00','scan                          ','',5715,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-01 17:23:49','','0000-00-00 00:00:00',0),(5869,0,0,'H','2526','','',5869,0,0,'2025-12-01',4792,1477,0,0,1436,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5716,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 17:27:52','','0000-00-00 00:00:00',0),(5870,0,0,'H','2526','','',5870,0,0,'2025-12-01',4794,2586,0,0,2529,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5717,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-01 17:30:57','','0000-00-00 00:00:00',0),(5871,0,0,'H','2526','','',5871,0,0,'2025-12-01',4793,3407,0,0,3315,'B',750.00,0.00,'7','HDFC BANK','','79914','','0000-00-00','scan ','',5718,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 17:31:56','','0000-00-00 00:00:00',0),(5872,0,0,'H','2526','','',5872,0,0,'2025-12-01',4795,3090,0,0,3010,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5719,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 17:31:59','','0000-00-00 00:00:00',0),(5873,0,0,'H','2526','','P',5873,0,0,'2025-12-01',4751,3383,0,224,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',6411,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-01 17:32:45','riya','2025-12-06 12:53:47',0),(5874,0,0,'H','2526','','',5874,0,0,'2025-12-01',4796,3408,0,0,3316,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5720,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 17:33:01','','0000-00-00 00:00:00',0),(5875,0,0,'H','2526','','',5875,0,0,'2025-12-01',4797,3409,0,0,3317,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5721,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 17:34:37','','0000-00-00 00:00:00',0),(5876,0,0,'H','2526','','',5876,0,0,'2025-12-01',4798,3410,0,0,3318,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5722,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 17:35:49','','0000-00-00 00:00:00',0),(5877,0,0,'H','2526','','',5877,0,0,'2025-12-01',4799,2245,0,0,2188,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5723,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 17:37:17','','0000-00-00 00:00:00',0),(5878,0,0,'H','2526','','',5878,0,0,'2025-12-01',4800,3391,0,0,3302,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',5724,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 17:40:06','','0000-00-00 00:00:00',0),(5879,0,0,'H','2526','','',5879,0,0,'2025-12-01',4801,3411,0,0,3319,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5725,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 17:46:47','','0000-00-00 00:00:00',0),(5880,0,0,'H','2526','','',5880,0,0,'2025-12-01',4803,3412,0,0,3320,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5726,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 17:49:54','','0000-00-00 00:00:00',0),(5881,0,0,'H','2526','','',5881,0,0,'2025-12-01',4805,1412,0,0,1371,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5727,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 17:51:19','','0000-00-00 00:00:00',0),(5882,0,0,'H','2526','','',5882,0,0,'2025-12-01',4806,1140,0,0,1102,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5728,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-01 17:51:41','','0000-00-00 00:00:00',0),(5883,0,0,'H','2526','','',5883,0,0,'2025-12-01',4807,3413,0,0,3321,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5729,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 17:52:45','','0000-00-00 00:00:00',0),(5884,0,0,'H','2526','','',5884,0,0,'2025-12-01',4810,3415,0,0,3323,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5730,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-01 17:59:49','','0000-00-00 00:00:00',0),(5885,0,0,'H','2526','','',5885,0,0,'2025-12-01',4809,3414,0,0,3322,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5731,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-01 18:00:00','','0000-00-00 00:00:00',0),(5886,0,0,'H','2526','','',5886,0,0,'2025-12-01',4812,1717,0,0,1672,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5732,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 18:02:56','','0000-00-00 00:00:00',0),(5887,0,0,'H','2526','','',5887,0,0,'2025-12-01',4813,3416,0,0,3324,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5733,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 18:02:57','','0000-00-00 00:00:00',0),(5888,0,0,'H','2526','','',5888,0,0,'2025-12-01',4811,1542,0,0,1501,'B',500.00,0.00,'7','bob','','70446','','0000-00-00','scan','',5734,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 18:05:16','','0000-00-00 00:00:00',0),(5889,0,0,'H','2526','','',5889,0,0,'2025-12-01',4815,3417,0,0,3325,'B',700.00,0.00,'7','axis bank','','18157','','0000-00-00','scan                          ','',5735,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 18:05:38','','0000-00-00 00:00:00',0),(5890,0,0,'H','2526','','',5890,0,0,'2025-12-01',4816,1327,0,0,1288,'B',100.00,0.00,'7','bob','','41439','','0000-00-00','scan                          ','',5736,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 18:08:29','','0000-00-00 00:00:00',0),(5891,0,0,'H','2526','','',5891,0,0,'2025-12-01',4817,1564,0,0,1523,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5737,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 18:09:16','','0000-00-00 00:00:00',0),(5892,0,0,'H','2526','','',5892,0,0,'2025-12-01',4797,3409,0,0,3317,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',5738,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 18:09:55','','0000-00-00 00:00:00',0),(5893,0,0,'H','2526','','',5893,0,0,'2025-12-01',4818,3418,0,0,3326,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5739,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 18:11:34','','0000-00-00 00:00:00',0),(5894,0,0,'H','2526','','',5894,0,0,'2025-12-01',4819,3419,0,0,3327,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5740,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 18:11:51','','0000-00-00 00:00:00',0),(5895,0,0,'H','2526','','',5895,0,0,'2025-12-01',4820,2873,0,0,2804,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5741,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 18:13:23','','0000-00-00 00:00:00',0),(5896,0,0,'H','2526','','',5896,0,0,'2025-12-01',4821,3420,0,0,3328,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5742,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 18:13:27','','0000-00-00 00:00:00',0),(5897,0,0,'H','2526','','',5897,0,0,'2025-12-01',4794,2586,0,0,2529,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',5743,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-01 18:13:31','','0000-00-00 00:00:00',0),(5898,0,0,'H','2526','','',5898,0,0,'2025-12-01',4822,791,0,0,760,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5744,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 18:14:51','','0000-00-00 00:00:00',0),(5899,0,0,'H','2526','','',5899,0,0,'2025-12-01',4823,3421,0,0,3329,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5745,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 18:16:25','','0000-00-00 00:00:00',0),(5900,0,0,'H','2526','','',5900,0,0,'2025-12-01',4824,3422,0,0,3330,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5746,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 18:16:39','','0000-00-00 00:00:00',0),(5901,0,0,'H','2526','','',5901,0,0,'2025-12-01',4825,3423,0,0,3331,'B',400.00,0.00,'7','axis bank','','21919','','0000-00-00','scan ','',5747,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 18:19:21','','0000-00-00 00:00:00',0),(5902,0,0,'H','2526','','',5902,0,0,'2025-12-01',4803,3412,0,0,3320,'B',4500.00,0.00,'7','bob','','29424','','0000-00-00','scan','',5748,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 18:23:37','','0000-00-00 00:00:00',0),(5903,0,0,'H','2526','','',5903,0,0,'2025-12-01',4804,3115,0,0,3034,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5749,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 18:25:59','','0000-00-00 00:00:00',0),(5904,0,0,'H','2526','','',5904,0,0,'2025-12-01',4826,601,0,0,574,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5750,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 18:26:45','','0000-00-00 00:00:00',0),(5905,0,0,'H','2526','','',5905,0,0,'2025-12-01',4827,1279,0,0,1238,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5751,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 18:28:58','','0000-00-00 00:00:00',0),(5906,0,0,'H','2526','','',5906,0,0,'2025-12-01',4829,3425,0,0,3333,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5752,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 18:30:40','','0000-00-00 00:00:00',0),(5907,0,0,'H','2526','','',5907,0,0,'2025-12-01',4830,1496,0,0,1455,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5753,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 18:32:15','','0000-00-00 00:00:00',0),(5908,0,0,'H','2526','','',5908,0,0,'2025-12-01',4833,438,0,0,416,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5754,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 18:34:35','','0000-00-00 00:00:00',0),(5909,0,0,'H','2526','','',5909,0,0,'2025-12-01',4831,3426,0,0,3334,'B',500.00,0.00,'CRD','sbi','74423','74423','','0000-00-00','CARD','',5755,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 18:36:26','','0000-00-00 00:00:00',0),(5910,0,0,'H','2526','','',5910,0,0,'2025-12-01',4835,3428,0,0,3335,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5756,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 18:36:57','','0000-00-00 00:00:00',0),(5911,0,0,'H','2526','','',5911,0,0,'2025-12-01',4832,2750,0,0,2681,'B',200.00,0.00,'7','bob','','12678','','0000-00-00','scan                          ','',5757,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 18:38:32','','0000-00-00 00:00:00',0),(5912,0,0,'H','2526','','',5912,0,0,'2025-12-01',4836,2325,0,0,2268,'B',500.00,0.00,'7','hdfc','','50935','','0000-00-00','scan','',5758,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 18:40:52','','0000-00-00 00:00:00',0),(5913,0,0,'H','2526','','',5913,0,0,'2025-12-01',4814,2841,0,0,2772,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5759,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 18:41:35','','0000-00-00 00:00:00',0),(5914,0,0,'H','2526','','P',5914,0,0,'2025-12-01',4834,3427,0,230,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',6064,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-01 18:44:22','vishal','2025-12-03 21:28:55',0),(5915,0,0,'H','2526','','',5915,0,0,'2025-12-01',4838,3429,0,0,3336,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5760,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 18:46:52','','0000-00-00 00:00:00',0),(5916,0,0,'H','2526','','',5916,0,0,'2025-12-01',4837,1313,0,0,1274,'B',400.00,0.00,'7','sbi','','01735','','0000-00-00','scan  ','',5761,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 18:47:06','','0000-00-00 00:00:00',0),(5917,0,0,'H','2526','','',5917,0,0,'2025-12-01',4840,319,0,0,303,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5762,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 18:49:30','','0000-00-00 00:00:00',0),(5918,0,0,'H','2526','','',5918,0,0,'2025-12-01',4839,3430,0,0,3337,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5763,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 18:50:01','','0000-00-00 00:00:00',0),(5919,0,0,'H','2526','','',5919,0,0,'2025-12-01',4841,3431,0,0,3338,'B',400.00,0.00,'7','idbi','','45474','','0000-00-00','scan ','',5766,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 18:54:23','','0000-00-00 00:00:00',0),(5920,0,0,'H','2526','','',5920,0,0,'2025-12-01',4838,3429,0,0,3336,'D',-750.00,0.00,'CSH','','','','','2025-12-01','','',5765,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 18:54:43','','0000-00-00 00:00:00',0),(5921,0,0,'H','2526','','',5921,0,0,'2025-12-01',4828,3424,0,0,3332,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5767,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-01 18:55:01','','0000-00-00 00:00:00',0),(5922,0,0,'H','2526','','',5922,0,0,'2025-12-01',4807,3413,0,0,3321,'D',-750.00,0.00,'CSH','','','','','2025-12-01','','',5768,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 18:55:58','','0000-00-00 00:00:00',0),(5923,0,0,'H','2526','','',5923,0,0,'2025-12-01',4807,3413,0,0,3321,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5769,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 18:57:22','','0000-00-00 00:00:00',0),(5924,0,0,'H','2526','','',5924,0,0,'2025-12-01',4842,2822,0,0,2752,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5770,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 18:57:40','','0000-00-00 00:00:00',0),(5925,0,0,'H','2526','','',5925,0,0,'2025-12-01',4838,3429,0,0,3336,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5771,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 18:58:58','','0000-00-00 00:00:00',0),(5926,0,0,'H','2526','','P',5926,0,0,'2025-12-01',4690,3346,0,219,0,'A',5600.00,0.00,'CSH','','','','','0000-00-00','','',5772,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-01 19:02:40','riya','2025-12-01 19:03:43',0),(5927,0,0,'H','2526','','',5927,0,0,'2025-12-01',4845,3432,0,0,3339,'B',500.00,0.00,'7','sbi','','66382','','0000-00-00','scan','',5773,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 19:09:50','','0000-00-00 00:00:00',0),(5928,0,0,'H','2526','','',5928,0,0,'2025-12-01',4827,1279,0,0,1238,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',5774,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 19:10:57','','0000-00-00 00:00:00',0),(5929,0,0,'H','2526','','',5929,0,0,'2025-12-01',4844,2056,0,0,2005,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5775,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 19:11:12','','0000-00-00 00:00:00',0),(5930,0,0,'H','2526','','',5930,0,0,'2025-12-01',4843,2167,0,0,2115,'B',100.00,0.00,'7','rbi','','60269','','0000-00-00','scan  ','',5776,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 19:12:46','','0000-00-00 00:00:00',0),(5931,0,0,'H','2526','','',5931,0,0,'2025-12-01',4846,1521,0,0,1480,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5778,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-01 19:13:57','','0000-00-00 00:00:00',0),(5932,0,0,'H','2526','','',5932,0,0,'2025-12-01',4847,3433,0,0,3340,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5779,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 19:16:16','','0000-00-00 00:00:00',0),(5933,0,0,'H','2526','','',5933,0,0,'2025-12-01',4848,3434,0,0,3341,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5780,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 19:17:40','','0000-00-00 00:00:00',0),(5934,0,0,'H','2526','','',5934,0,0,'2025-12-01',4788,3405,0,0,3312,'D',-700.00,0.00,'7','sbi','','24013','','2025-12-01','SCAN','',5781,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 19:30:37','','0000-00-00 00:00:00',0),(5935,0,0,'H','2526','','',5935,0,0,'2025-12-01',4788,3405,0,0,3312,'B',500.00,0.00,'7','sbi','','24013','','0000-00-00','scan','',5782,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 19:32:23','','0000-00-00 00:00:00',0),(5936,0,0,'H','2526','','',5936,0,0,'2025-12-01',4850,3210,0,0,3124,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5783,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 19:38:34','','0000-00-00 00:00:00',0),(5937,0,0,'H','2526','','',5937,0,0,'2025-12-01',4849,3435,0,0,3342,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5784,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 19:38:36','','0000-00-00 00:00:00',0),(5938,0,0,'H','2526','','',5938,0,0,'2025-12-01',4849,3435,0,0,3342,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',5785,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-01 19:46:33','','0000-00-00 00:00:00',0),(5939,0,0,'H','2526','','P',5939,0,0,'2025-12-01',4017,2937,0,187,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-01 19:55:11','riya','2025-12-01 19:55:11',0),(5940,0,0,'H','2526','','',5940,0,0,'2025-12-01',4851,2627,0,0,2567,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5786,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 19:56:53','','0000-00-00 00:00:00',0),(5941,0,0,'H','2526','','',5941,0,0,'2025-12-01',4852,3101,0,0,3021,'B',100.00,0.00,'7','bob','','43456','','0000-00-00','scan','',5787,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-01 20:21:53','','0000-00-00 00:00:00',0),(5942,0,0,'H','2526','','',5942,0,0,'2025-12-01',4847,3433,0,0,3340,'D',-400.00,0.00,'CSH','','','','','2025-12-01','','',5788,'N','N','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-01 20:22:39','','0000-00-00 00:00:00',0),(5943,0,0,'H','2526','','P',5943,0,0,'2025-12-01',4802,3394,0,229,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',6062,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-01 21:16:42','vishal','2025-12-03 20:52:50',0),(5944,0,0,'H','2526','','',5944,0,0,'2025-12-02',4853,3436,0,0,3343,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5789,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 09:06:30','','0000-00-00 00:00:00',0),(5945,0,0,'H','2526','','',5945,0,0,'2025-12-02',4854,3437,0,0,3344,'B',900.00,0.00,'7','BOI','','09078','','0000-00-00','SAN','',5790,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 09:22:03','','0000-00-00 00:00:00',0),(5946,0,0,'H','2526','','',5946,0,0,'2025-12-02',4856,3439,0,0,3345,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5791,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 09:59:44','','0000-00-00 00:00:00',0),(5947,0,0,'H','2526','','',5947,0,0,'2025-12-02',4858,3441,0,0,3346,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5792,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 10:04:54','','0000-00-00 00:00:00',0),(5948,0,0,'H','2526','','',5948,0,0,'2025-12-02',4859,3442,0,0,3347,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5793,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 10:06:42','','0000-00-00 00:00:00',0),(5949,0,0,'H','2526','','',5949,0,0,'2025-12-02',4860,1546,0,0,1505,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5794,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 10:08:47','','0000-00-00 00:00:00',0),(5950,0,0,'H','2526','','',5950,0,0,'2025-12-02',4861,1375,0,0,1335,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5795,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 10:09:01','','0000-00-00 00:00:00',0),(5951,0,0,'H','2526','','P',5951,0,0,'2025-12-02',4857,3440,0,232,0,'A',6000.00,0.00,'7','AU SMALL FINANCE BANK','','533676488411','','0000-00-00','SCAN','',6120,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-02 10:11:18','riya','2025-12-04 12:36:43',0),(5952,0,0,'H','2526','','',5952,0,0,'2025-12-02',4862,3443,0,0,3348,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5796,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 10:16:48','','0000-00-00 00:00:00',0),(5953,0,0,'H','2526','','',5953,0,0,'2025-12-02',4864,3445,0,0,3349,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5797,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 10:23:53','','0000-00-00 00:00:00',0),(5954,0,0,'H','2526','','',5954,0,0,'2025-12-02',4865,2914,0,0,2842,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5798,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 10:28:49','','0000-00-00 00:00:00',0),(5955,0,0,'H','2526','','',5955,0,0,'2025-12-02',4866,3158,0,0,3072,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5799,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 10:29:07','','0000-00-00 00:00:00',0),(5956,0,0,'H','2526','','',5956,0,0,'2025-12-02',4867,3446,0,0,3350,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5800,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 10:33:23','','0000-00-00 00:00:00',0),(5957,0,0,'H','2526','','',5957,0,0,'2025-12-02',4870,1481,0,0,1440,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5801,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 10:42:33','','0000-00-00 00:00:00',0),(5958,0,0,'H','2526','','',5958,0,0,'2025-12-02',4871,3448,0,0,3351,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5802,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 10:42:44','','0000-00-00 00:00:00',0),(5959,0,0,'H','2526','','',5959,0,0,'2025-12-02',4869,787,0,0,755,'B',500.00,0.00,'7','BOB','','29638','','0000-00-00','SCAN','',5803,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 10:43:17','','0000-00-00 00:00:00',0),(5960,0,0,'H','2526','','',5960,0,0,'2025-12-02',4872,3449,0,0,3352,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5804,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 10:45:44','','0000-00-00 00:00:00',0),(5961,0,0,'H','2526','','',5961,0,0,'2025-12-02',4873,1268,0,0,1227,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5805,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 10:47:14','','0000-00-00 00:00:00',0),(5962,0,0,'H','2526','','',5962,0,0,'2025-12-02',4874,1386,0,0,1346,'B',500.00,0.00,'7','SBI','','94281','','0000-00-00','SCAN','',5806,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 10:49:45','','0000-00-00 00:00:00',0),(5963,0,0,'H','2526','','',5963,0,0,'2025-12-02',4876,3451,0,0,3354,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5807,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 10:51:04','','0000-00-00 00:00:00',0),(5964,0,0,'H','2526','','P',5964,0,0,'2025-12-02',4868,3447,0,234,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',5876,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-02 10:52:33','vishal','2025-12-02 17:18:01',0),(5965,0,0,'H','2526','','',5965,0,0,'2025-12-02',4877,3452,0,0,3355,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5808,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 10:52:38','','0000-00-00 00:00:00',0),(5966,0,0,'H','2526','','',5966,0,0,'2025-12-02',4853,3436,0,0,3343,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',5810,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 11:00:19','','0000-00-00 00:00:00',0),(5967,0,0,'H','2526','','',5967,0,0,'2025-12-02',3444,2594,0,0,2537,'D',0.00,0.00,'','','','','','2025-12-02','','',0,'N','N','Y',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 11:00:20','','0000-00-00 00:00:00',0),(5968,0,0,'H','2526','','',5968,0,0,'2025-12-02',4870,1481,0,0,1440,'D',-400.00,0.00,'CSH','','','','','2025-12-02','','',5809,'N','N','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 11:00:48','','0000-00-00 00:00:00',0),(5969,0,0,'H','2526','','',5969,0,0,'2025-12-02',4879,655,0,0,625,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5811,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 11:04:48','','0000-00-00 00:00:00',0),(5970,0,0,'H','2526','','',5970,0,0,'2025-12-02',4880,982,0,0,951,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5812,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 11:06:07','','0000-00-00 00:00:00',0),(5971,0,0,'H','2526','','',5971,0,0,'2025-12-02',4881,1481,0,0,1440,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5813,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 11:07:02','','0000-00-00 00:00:00',0),(5972,0,0,'H','2526','','',5972,0,0,'2025-12-02',4882,3453,0,0,3356,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5814,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 11:08:28','','0000-00-00 00:00:00',0),(5973,0,0,'H','2526','','',5973,0,0,'2025-12-02',4875,3450,0,0,3353,'B',750.00,0.00,'7','hdfc','','94429','','0000-00-00','scan                          ','',5815,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 11:10:24','','0000-00-00 00:00:00',0),(5974,0,0,'H','2526','','',5974,0,0,'2025-12-02',4867,3446,0,0,3350,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',5816,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 11:11:18','','0000-00-00 00:00:00',0),(5975,0,0,'H','2526','','',5975,0,0,'2025-12-02',4883,3454,0,0,3357,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5817,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 11:13:29','','0000-00-00 00:00:00',0),(5976,0,0,'H','2526','','',5976,0,0,'2025-12-02',4884,3455,0,0,3358,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5818,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 11:14:52','','0000-00-00 00:00:00',0),(5977,0,0,'H','2526','','',5977,0,0,'2025-12-02',4885,3157,0,0,3071,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5819,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 11:21:55','','0000-00-00 00:00:00',0),(5978,0,0,'H','2526','','',5978,0,0,'2025-12-02',4886,3456,0,0,3359,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5820,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 11:23:34','','0000-00-00 00:00:00',0),(5979,0,0,'H','2526','','',5979,0,0,'2025-12-02',4878,2201,0,0,2874,'B',100.00,0.00,'7','sbi','','94579','','0000-00-00','scan                          ','',5821,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 11:25:06','','0000-00-00 00:00:00',0),(5980,0,0,'H','2526','','',5980,0,0,'2025-12-02',4887,3457,0,0,3360,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5822,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 11:26:08','','0000-00-00 00:00:00',0),(5981,0,0,'H','2526','','',5981,0,0,'2025-12-02',4889,1473,0,0,1432,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5823,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-02 11:28:13','','0000-00-00 00:00:00',0),(5982,0,0,'H','2526','','',5982,0,0,'2025-12-02',4888,3458,0,0,3361,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5824,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 11:28:29','','0000-00-00 00:00:00',0),(5983,0,0,'H','2526','','',5983,0,0,'2025-12-02',4890,3459,0,0,3362,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5825,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-02 11:31:44','','0000-00-00 00:00:00',0),(5984,0,0,'H','2526','','P',5984,0,0,'2025-12-02',4751,3383,0,224,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',6411,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-02 11:32:05','riya','2025-12-06 12:53:47',0),(5985,0,0,'H','2526','','',5985,0,0,'2025-12-02',4892,3461,0,0,3364,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5826,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 11:34:49','','0000-00-00 00:00:00',0),(5986,0,0,'H','2526','','',5986,0,0,'2025-12-02',4893,3462,0,0,3365,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5827,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 11:35:09','','0000-00-00 00:00:00',0),(5987,0,0,'H','2526','','',5987,0,0,'2025-12-02',4891,3460,0,0,3363,'B',750.00,0.00,'7','KOTAK BANK','','70405','','0000-00-00','scan ','',5828,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 11:36:12','','0000-00-00 00:00:00',0),(5988,0,0,'H','2526','','',5988,0,0,'2025-12-02',4894,3463,0,0,3366,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5829,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 11:37:11','','0000-00-00 00:00:00',0),(5989,0,0,'H','2526','','P',5989,0,0,'2025-12-02',4802,3394,0,229,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',6062,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-02 11:38:02','vishal','2025-12-03 20:52:50',0),(5990,0,0,'H','2526','','',5990,0,0,'2025-12-02',4895,3464,0,0,3367,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5830,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 11:41:37','','0000-00-00 00:00:00',0),(5991,0,0,'H','2526','','',5991,0,0,'2025-12-02',4896,3465,0,0,3368,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5831,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 11:42:03','','0000-00-00 00:00:00',0),(5992,0,0,'H','2526','','',5992,0,0,'2025-12-02',4897,1481,0,0,3369,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5832,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-02 11:46:37','','0000-00-00 00:00:00',0),(5993,0,0,'H','2526','','',5993,0,0,'2025-12-02',4898,3466,0,0,3370,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5833,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 11:50:13','','0000-00-00 00:00:00',0),(5994,0,0,'H','2526','','P',5994,0,0,'2025-12-02',4266,3085,0,203,0,'A',30000.00,0.00,'7','HDFC BANK','','115000507173','','0000-00-00','SCAN','',6060,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-02 11:50:17','vishal','2025-12-03 20:03:14',0),(5995,0,0,'H','2526','','',5995,0,0,'2025-12-02',4899,3446,0,0,3371,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5834,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-02 11:55:20','','0000-00-00 00:00:00',0),(5996,0,0,'H','2526','','',5996,0,0,'2025-12-02',4884,3455,0,0,3358,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',5835,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 11:56:12','','0000-00-00 00:00:00',0),(5997,0,0,'H','2526','','',5997,0,0,'2025-12-02',4900,3467,0,0,3372,'B',400.00,0.00,'7','SBI BANK','','33885','','0000-00-00','scan ','',5836,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 11:56:41','','0000-00-00 00:00:00',0),(5998,0,0,'H','2526','','',5998,0,0,'2025-12-02',4901,3468,0,0,3373,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5837,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 12:00:36','','0000-00-00 00:00:00',0),(5999,0,0,'H','2526','','',5999,0,0,'2025-12-02',4902,3469,0,0,3374,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5838,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 12:00:50','','0000-00-00 00:00:00',0),(6000,0,0,'H','2526','','',6000,0,0,'2025-12-02',4903,3470,0,0,3375,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5839,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 12:04:27','','0000-00-00 00:00:00',0),(6001,0,0,'H','2526','','',6001,0,0,'2025-12-02',4904,3471,0,0,3376,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5840,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 12:08:15','','0000-00-00 00:00:00',0),(6002,0,0,'H','2526','','',6002,0,0,'2025-12-02',4887,3457,0,0,3360,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',5841,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 12:09:51','','0000-00-00 00:00:00',0),(6003,0,0,'H','2526','','',6003,0,0,'2025-12-02',4905,3472,0,0,3377,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5842,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 12:13:26','','0000-00-00 00:00:00',0),(6004,0,0,'H','2526','','',6004,0,0,'2025-12-02',4906,3473,0,0,3378,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5843,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 12:20:55','','0000-00-00 00:00:00',0),(6005,0,0,'H','2526','','',6005,0,0,'2025-12-02',4907,3474,0,0,3379,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5844,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 12:24:44','','0000-00-00 00:00:00',0),(6006,0,0,'H','2526','','',6006,0,0,'2025-12-02',4888,3458,0,0,3361,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',5845,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 12:25:28','','0000-00-00 00:00:00',0),(6007,0,0,'H','2526','','',6007,0,0,'2025-12-02',4909,2920,0,0,2848,'B',400.00,0.00,'7','ICICI','','82340','','0000-00-00','SCAN','',5846,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 12:31:23','','0000-00-00 00:00:00',0),(6008,0,0,'H','2526','','',6008,0,0,'2025-12-02',4910,3475,0,0,3380,'B',400.00,0.00,'7','UNION BANK','','97466','','0000-00-00','scan','',5847,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 12:34:26','','0000-00-00 00:00:00',0),(6009,0,0,'H','2526','','',6009,0,0,'2025-12-02',4911,3476,0,0,3381,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5848,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 12:38:34','','0000-00-00 00:00:00',0),(6010,0,0,'H','2526','','',6010,0,0,'2025-12-02',4912,2336,0,0,2279,'B',400.00,0.00,'7','ICICI','','12762','','0000-00-00','SCAN','',5849,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 12:50:08','','0000-00-00 00:00:00',0),(6011,0,0,'H','2526','','',6011,0,0,'2025-12-02',4913,3477,0,0,3382,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5850,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 12:50:31','','0000-00-00 00:00:00',0),(6012,0,0,'H','2526','','',6012,0,0,'2025-12-02',4907,3474,0,0,3379,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',5851,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 12:54:11','','0000-00-00 00:00:00',0),(6013,0,0,'H','2526','','P',6013,0,0,'2025-12-02',4688,3345,0,218,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',7018,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-02 12:55:46','riya','2025-12-11 14:46:45',0),(6014,0,0,'H','2526','','',6014,0,0,'2025-12-02',4914,3478,0,0,3383,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5852,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-02 12:56:08','','0000-00-00 00:00:00',0),(6015,0,0,'H','2526','','',6015,0,0,'2025-12-02',4908,3353,0,0,3265,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',5853,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-02 12:58:36','','0000-00-00 00:00:00',0),(6016,0,0,'H','2526','','',6016,0,0,'2025-12-02',4915,3479,0,0,3384,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5854,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-02 13:00:27','','0000-00-00 00:00:00',0),(6017,0,0,'H','2526','','',6017,0,0,'2025-12-02',4916,1542,0,0,1501,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',5855,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 13:02:09','','0000-00-00 00:00:00',0),(6018,0,0,'H','2526','','',6018,0,0,'2025-12-02',4913,3477,0,0,3382,'D',-300.00,0.00,'CSH','','','','','2025-12-02','','',5856,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 13:07:03','','0000-00-00 00:00:00',0),(6019,0,0,'H','2526','','',6019,0,0,'2025-12-02',4913,3477,0,0,3382,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5857,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 13:08:24','','0000-00-00 00:00:00',0),(6020,0,0,'H','2526','','',6020,0,0,'2025-12-02',4918,319,0,0,303,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5858,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 13:13:03','','0000-00-00 00:00:00',0),(6021,0,0,'H','2526','','P',6021,0,0,'2025-12-02',4674,3336,0,215,0,'A',22000.00,0.00,'7','AXIS BANK','','407229770725','','0000-00-00','SCAN','',5867,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-02 13:19:01','riya','2025-12-02 14:51:03',0),(6022,0,0,'H','2526','','',6022,0,0,'2025-12-02',4911,3476,0,0,3381,'B',4200.00,0.00,'CSH','','','','','0000-00-00','','',5859,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 13:23:29','','0000-00-00 00:00:00',0),(6023,0,0,'H','2526','','',6023,0,0,'2025-12-02',4919,1087,0,0,1054,'B',500.00,0.00,'7','BOB','','88118','','0000-00-00','SCAN','',5860,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 13:35:02','','0000-00-00 00:00:00',0),(6024,0,0,'H','2526','','',6024,0,0,'2025-12-02',4906,3473,0,0,3378,'B',1000.00,0.00,'7','SBI BANK','','04767','','0000-00-00','scan','',5861,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 13:36:30','','0000-00-00 00:00:00',0),(6025,0,0,'H','2526','','P',6025,0,0,'2025-12-02',4920,3480,0,235,0,'A',6000.00,0.00,'7','SBI','','657228532262','','0000-00-00','SCAN','',6155,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-02 13:48:40','vishal','2025-12-04 17:45:40',0),(6026,0,0,'H','2526','','',6026,0,0,'2025-12-02',4905,3472,0,0,3377,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',5862,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 13:48:46','','0000-00-00 00:00:00',0),(6027,0,0,'H','2526','','',6027,0,0,'2025-12-02',4921,3481,0,0,3385,'B',500.00,0.00,'7','sbi','','31318','','0000-00-00','scan','',5863,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 13:53:05','','0000-00-00 00:00:00',0),(6028,0,0,'H','2526','','',6028,0,0,'2025-12-02',4780,3403,0,227,0,'D',-400.00,0.00,'CSH','','','','','0000-00-00','','',5865,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-02 14:21:28','','0000-00-00 00:00:00',0),(6029,0,0,'H','2526','','P',6029,0,0,'2025-12-02',4863,3444,0,233,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',6271,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-02 15:52:30','vishal','2025-12-05 15:13:49',0),(6030,0,0,'H','2526','','',6030,0,0,'2025-12-02',4922,3482,0,0,3386,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',5869,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 16:15:43','','0000-00-00 00:00:00',0),(6031,0,0,'H','2526','','',6031,0,0,'2025-12-02',4923,1544,0,0,1503,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5870,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 16:25:40','','0000-00-00 00:00:00',0),(6032,0,0,'H','2526','','',6032,0,0,'2025-12-02',4924,3483,0,0,3387,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5872,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 16:51:43','','0000-00-00 00:00:00',0),(6033,0,0,'H','2526','','',6033,0,0,'2025-12-02',4925,3084,0,0,3005,'B',300.00,0.00,'7','UNION BANK','','23210','','0000-00-00','SCAN','',5873,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 16:54:25','','0000-00-00 00:00:00',0),(6034,0,0,'H','2526','','',6034,0,0,'2025-12-02',4926,1763,0,0,2118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5874,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 16:55:19','','0000-00-00 00:00:00',0),(6035,0,0,'H','2526','','',6035,0,0,'2025-12-02',4927,2782,0,0,2711,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5875,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 17:07:10','','0000-00-00 00:00:00',0),(6036,0,0,'H','2526','','',6036,0,0,'2025-12-02',4928,2479,0,0,2423,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5877,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 17:19:21','','0000-00-00 00:00:00',0),(6037,0,0,'H','2526','','',6037,0,0,'2025-12-02',4929,1012,0,0,979,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5878,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 17:22:46','','0000-00-00 00:00:00',0),(6038,0,0,'H','2526','','',6038,0,0,'2025-12-02',4930,3484,0,0,3388,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5879,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 17:25:01','','0000-00-00 00:00:00',0),(6039,0,0,'H','2526','','',6039,0,0,'2025-12-02',4932,3485,0,0,3389,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5880,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 17:32:32','','0000-00-00 00:00:00',0),(6040,0,0,'H','2526','','',6040,0,0,'2025-12-02',4933,3486,0,0,3390,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5881,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 17:34:17','','0000-00-00 00:00:00',0),(6041,0,0,'H','2526','','',6041,0,0,'2025-12-02',4934,1938,0,0,1891,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5882,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 17:35:44','','0000-00-00 00:00:00',0),(6042,0,0,'H','2526','','',6042,0,0,'2025-12-02',4935,3487,0,0,3391,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5883,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 17:41:53','','0000-00-00 00:00:00',0),(6043,0,0,'H','2526','','',6043,0,0,'2025-12-02',4936,3021,0,0,3392,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5884,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 17:43:33','','0000-00-00 00:00:00',0),(6044,0,0,'H','2526','','',6044,0,0,'2025-12-02',4937,3488,0,0,3393,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5885,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 17:47:12','','0000-00-00 00:00:00',0),(6045,0,0,'H','2526','','',6045,0,0,'2025-12-02',4939,3449,0,0,3352,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5886,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 17:49:33','','0000-00-00 00:00:00',0),(6046,0,0,'H','2526','','',6046,0,0,'2025-12-02',4938,3009,0,0,2932,'B',400.00,0.00,'7','SBI','','31952','','0000-00-00','SCAN','',5887,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 17:50:35','','0000-00-00 00:00:00',0),(6047,0,0,'H','2526','','',6047,0,0,'2025-12-02',4940,3489,0,0,3394,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5888,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 17:50:37','','0000-00-00 00:00:00',0),(6048,0,0,'H','2526','','',6048,0,0,'2025-12-02',4941,2314,0,0,2257,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5889,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 17:58:53','','0000-00-00 00:00:00',0),(6049,0,0,'H','2526','','',6049,0,0,'2025-12-02',4942,3490,0,0,3395,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5890,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 18:05:54','','0000-00-00 00:00:00',0),(6050,0,0,'H','2526','','',6050,0,0,'2025-12-02',4943,3491,0,0,3396,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5891,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 18:06:51','','0000-00-00 00:00:00',0),(6051,0,0,'H','2526','','',6051,0,0,'2025-12-02',4944,2645,0,0,2584,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5892,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 18:07:35','','0000-00-00 00:00:00',0),(6052,0,0,'H','2526','','',6052,0,0,'2025-12-02',4945,3492,0,0,3397,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5893,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 18:09:36','','0000-00-00 00:00:00',0),(6053,0,0,'H','2526','','',6053,0,0,'2025-12-02',4947,3494,0,0,3399,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5894,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 18:10:36','','0000-00-00 00:00:00',0),(6054,0,0,'H','2526','','',6054,0,0,'2025-12-02',4946,3493,0,0,3398,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',5895,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 18:12:15','','0000-00-00 00:00:00',0),(6055,0,0,'H','2526','','',6055,0,0,'2025-12-02',4948,3495,0,0,3400,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5896,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 18:19:26','','0000-00-00 00:00:00',0),(6056,0,0,'H','2526','','',6056,0,0,'2025-12-02',4945,3492,0,0,3397,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',5897,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 18:21:00','','0000-00-00 00:00:00',0),(6057,0,0,'H','2526','','',6057,0,0,'2025-12-02',4950,3007,0,0,2930,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5898,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 18:26:59','','0000-00-00 00:00:00',0),(6058,0,0,'H','2526','','',6058,0,0,'2025-12-02',4952,3497,0,0,3402,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5899,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 18:34:40','','0000-00-00 00:00:00',0),(6059,0,0,'H','2526','','',6059,0,0,'2025-12-02',4951,3496,0,0,3401,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5900,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 18:34:48','','0000-00-00 00:00:00',0),(6060,0,0,'H','2526','','',6060,0,0,'2025-12-02',4953,3399,0,0,3310,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5901,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 18:37:42','','0000-00-00 00:00:00',0),(6061,0,0,'H','2526','','',6061,0,0,'2025-12-02',4954,3498,0,0,3403,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5902,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 18:42:09','','0000-00-00 00:00:00',0),(6062,0,0,'H','2526','','',6062,0,0,'2025-12-02',4955,1821,0,0,1775,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5903,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 18:44:21','','0000-00-00 00:00:00',0),(6063,0,0,'H','2526','','',6063,0,0,'2025-12-02',4942,3490,0,0,3395,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',5904,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 18:48:49','','0000-00-00 00:00:00',0),(6064,0,0,'H','2526','','',6064,0,0,'2025-12-02',4956,2784,0,0,2713,'B',500.00,0.00,'7','SBI','','10080','','0000-00-00','SCAN','',5905,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 18:51:23','','0000-00-00 00:00:00',0),(6065,0,0,'H','2526','','',6065,0,0,'2025-12-02',4957,3499,0,0,3404,'B',750.00,0.00,'7','ICICI BANK','','23354','','0000-00-00','scan ','',5906,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 18:52:50','','0000-00-00 00:00:00',0),(6066,0,0,'H','2526','','',6066,0,0,'2025-12-02',4958,2001,0,0,1953,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5907,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-02 18:55:34','','0000-00-00 00:00:00',0),(6067,0,0,'H','2526','','',6067,0,0,'2025-12-02',4959,1327,0,0,1288,'B',100.00,0.00,'7','BOB BANK','','46857','','0000-00-00','scan ','',5908,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 19:06:04','','0000-00-00 00:00:00',0),(6068,0,0,'H','2526','','',6068,0,0,'2025-12-02',4960,3500,0,0,3405,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5909,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 19:07:12','','0000-00-00 00:00:00',0),(6069,0,0,'H','2526','','',6069,0,0,'2025-12-02',4962,3502,0,0,3407,'B',400.00,0.00,'7','HDFC','','96385','','0000-00-00','SCAN','',5910,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 19:09:42','','0000-00-00 00:00:00',0),(6070,0,0,'H','2526','','P',6070,0,0,'2025-12-02',4694,3350,0,222,0,'A',50000.00,0.00,'7','HDFC BANK','','115025887890','','0000-00-00','','',7319,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-02 19:12:41','riya','2025-12-13 14:24:24',0),(6071,0,0,'H','2526','','',6071,0,0,'2025-12-02',4964,1616,0,0,2528,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5911,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 19:17:54','','0000-00-00 00:00:00',0),(6072,0,0,'H','2526','','',6072,0,0,'2025-12-02',4965,3190,0,0,3103,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5912,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 19:21:42','','0000-00-00 00:00:00',0),(6073,0,0,'H','2526','','',6073,0,0,'2025-12-02',4957,3499,0,0,3404,'B',300.00,0.00,'7','ICICI','','90382','','0000-00-00','SCAN','',5913,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 19:25:14','','0000-00-00 00:00:00',0),(6074,0,0,'H','2526','','',6074,0,0,'2025-12-02',4961,3501,0,0,3406,'B',550.00,0.00,'7','ICICI BANK','','50229','','0000-00-00','scan ','',5914,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 19:30:13','','0000-00-00 00:00:00',0),(6075,0,0,'H','2526','','',6075,0,0,'2025-12-02',4966,3503,0,0,3408,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5915,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 19:34:18','','0000-00-00 00:00:00',0),(6076,0,0,'H','2526','','',6076,0,0,'2025-12-02',4963,2564,0,0,2507,'B',400.00,0.00,'2','iob','','7','','0000-00-00','CARD','',5916,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-02 19:45:16','','0000-00-00 00:00:00',0),(6077,0,0,'H','2526','','',6077,0,0,'2025-12-02',4967,3504,0,0,3409,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5917,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 19:48:06','','0000-00-00 00:00:00',0),(6078,0,0,'H','2526','','P',6078,0,0,'2025-12-02',4017,2937,0,187,0,'A',17000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-02 20:19:40','vishal','2025-12-02 20:19:40',0),(6079,0,0,'H','2526','','',6079,0,0,'2025-12-02',4969,3505,0,0,3410,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5919,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-02 20:24:27','','0000-00-00 00:00:00',0),(6080,0,0,'H','2526','','P',6080,0,0,'2025-12-02',4970,3506,0,237,0,'A',15000.00,0.00,'7','axis bank','','3434','','0000-00-00','','',6357,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-02 20:40:38','riya','2025-12-06 10:35:14',0),(6081,0,0,'H','2526','','P',6081,0,0,'2025-12-02',4691,3347,0,220,0,'A',20600.00,0.00,'7','icici bank','','2603','','0000-00-00','','',0,'N','P','Y',0,'N','vishal','2025-12-02 20:50:46','vishal','2025-12-02 20:45:04','vishal','2025-12-02 20:50:46',0),(6082,0,0,'H','2526','','P',6082,0,0,'2025-12-02',3611,2685,0,171,0,'A',20600.00,0.00,'7','icici bank','','2603','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-02 20:46:49','vishal','2025-12-02 20:46:49',0),(6083,0,0,'H','2526','','P',6083,0,0,'2025-12-02',4691,3347,0,220,0,'A',-20600.00,0.00,'7','icici bank','','2603','','0000-00-00','','ramanlal raval nu ama levai gyu bhulthi',0,'N','P','Y',6081,'N','','0000-00-00 00:00:00','vishal','2025-12-02 20:50:46','vishal','2025-12-02 20:50:46',0),(6084,0,0,'H','2526','','P',6084,0,0,'2025-12-02',4691,3347,0,220,0,'A',14500.00,0.00,'CSH','','','','','0000-00-00','','',5920,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-02 20:54:18','vishal','2025-12-02 20:58:15',0),(6085,0,0,'H','2526','','',6085,0,0,'2025-12-03',4971,3044,0,0,2965,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5921,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 08:41:58','','0000-00-00 00:00:00',0),(6086,0,0,'H','2526','','',6086,0,0,'2025-12-03',4972,3507,0,0,3411,'B',800.00,0.00,'7','sbi','','00971','','0000-00-00','scan','',5922,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 08:44:18','','0000-00-00 00:00:00',0),(6087,0,0,'H','2526','','',6087,0,0,'2025-12-03',4973,3505,0,0,3410,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5923,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 08:48:11','','0000-00-00 00:00:00',0),(6088,0,0,'H','2526','','',6088,0,0,'2025-12-03',4974,3508,0,0,3412,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5924,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 09:11:48','','0000-00-00 00:00:00',0),(6089,0,0,'H','2526','','',6089,0,0,'2025-12-03',4975,3509,0,0,3413,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5925,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 09:23:30','','0000-00-00 00:00:00',0),(6090,0,0,'H','2526','','',6090,0,0,'2025-12-03',4976,865,0,0,834,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5926,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 09:35:18','','0000-00-00 00:00:00',0),(6091,0,0,'H','2526','','P',6091,0,0,'2025-12-03',4977,3510,0,238,0,'A',15000.00,0.00,'CRD','HDFC ','','48000','','0000-00-00','CARD','',6562,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-03 09:47:41','riya','2025-12-08 12:52:58',0),(6092,0,0,'H','2526','','',6092,0,0,'2025-12-03',4979,3512,0,0,3415,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5927,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 09:50:27','','0000-00-00 00:00:00',0),(6093,0,0,'H','2526','','',6093,0,0,'2025-12-03',4978,3511,0,0,3414,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5928,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 09:50:37','','0000-00-00 00:00:00',0),(6094,0,0,'H','2526','','',6094,0,0,'2025-12-03',4980,3513,0,0,3416,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5929,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 10:09:51','','0000-00-00 00:00:00',0),(6095,0,0,'H','2526','','P',6095,0,0,'2025-12-03',4968,3501,0,236,0,'A',6000.00,0.00,'7','ICICI','','533716566475','','0000-00-00','SCAN','',6238,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-03 10:10:07','vishal','2025-12-05 11:49:00',0),(6096,0,0,'H','2526','','',6096,0,0,'2025-12-03',4981,1184,0,0,1144,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5930,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 10:11:49','','0000-00-00 00:00:00',0),(6097,0,0,'H','2526','','',6097,0,0,'2025-12-03',4982,3514,0,0,3417,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5931,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 10:14:47','','0000-00-00 00:00:00',0),(6098,0,0,'H','2526','','',6098,0,0,'2025-12-03',4983,724,0,0,693,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5932,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-03 10:17:58','','0000-00-00 00:00:00',0),(6099,0,0,'H','2526','','',6099,0,0,'2025-12-03',4984,3515,0,0,3418,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5933,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 10:24:37','','0000-00-00 00:00:00',0),(6100,0,0,'H','2526','','',6100,0,0,'2025-12-03',4985,1599,0,0,1556,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5934,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 10:27:08','','0000-00-00 00:00:00',0),(6101,0,0,'H','2526','','',6101,0,0,'2025-12-03',4986,3516,0,0,3419,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5935,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 10:30:29','','0000-00-00 00:00:00',0),(6102,0,0,'H','2526','','',6102,0,0,'2025-12-03',4987,3517,0,0,3420,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5936,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 10:32:21','','0000-00-00 00:00:00',0),(6103,0,0,'H','2526','','',6103,0,0,'2025-12-03',4988,1822,0,0,1777,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5937,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 10:32:37','','0000-00-00 00:00:00',0),(6104,0,0,'H','2526','','',6104,0,0,'2025-12-03',4983,724,0,0,693,'D',-300.00,0.00,'CSH','','','','','2025-12-03','','',5938,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 10:34:44','','0000-00-00 00:00:00',0),(6105,0,0,'H','2526','','',6105,0,0,'2025-12-03',4989,2475,0,0,2419,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5939,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 10:35:33','','0000-00-00 00:00:00',0),(6106,0,0,'H','2526','','',6106,0,0,'2025-12-03',4983,724,0,0,693,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',5940,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 10:36:20','','0000-00-00 00:00:00',0),(6107,0,0,'H','2526','','',6107,0,0,'2025-12-03',4991,3519,0,0,3422,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5941,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 10:37:29','','0000-00-00 00:00:00',0),(6108,0,0,'H','2526','','',6108,0,0,'2025-12-03',4990,3518,0,0,3421,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5942,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 10:37:53','','0000-00-00 00:00:00',0),(6109,0,0,'H','2526','','',6109,0,0,'2025-12-03',4992,3520,0,0,3423,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5943,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 10:41:29','','0000-00-00 00:00:00',0),(6110,0,0,'H','2526','','',6110,0,0,'2025-12-03',4993,112,0,0,101,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5944,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 10:42:14','','0000-00-00 00:00:00',0),(6111,0,0,'H','2526','','',6111,0,0,'2025-12-03',4997,3522,0,0,3425,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5946,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 10:59:41','','0000-00-00 00:00:00',0),(6112,0,0,'H','2526','','P',6112,0,0,'2025-12-03',4711,3361,0,223,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',5947,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-03 11:00:42','riya','2025-12-03 11:01:32',0),(6113,0,0,'H','2526','','',6113,0,0,'2025-12-03',4999,3523,0,0,3426,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5948,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 11:02:16','','0000-00-00 00:00:00',0),(6114,0,0,'H','2526','','',6114,0,0,'2025-12-03',5000,3524,0,0,3427,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5949,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 11:02:58','','0000-00-00 00:00:00',0),(6115,0,0,'H','2526','','',6115,0,0,'2025-12-03',4975,3509,0,0,3413,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',5950,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 11:04:53','','0000-00-00 00:00:00',0),(6116,0,0,'H','2526','','',6116,0,0,'2025-12-03',5002,3525,0,0,3428,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5951,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 11:11:09','','0000-00-00 00:00:00',0),(6117,0,0,'H','2526','','',6117,0,0,'2025-12-03',4979,3512,0,0,3415,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',5952,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 11:13:29','','0000-00-00 00:00:00',0),(6118,0,0,'H','2526','','',6118,0,0,'2025-12-03',5003,3526,0,0,3429,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5953,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 11:13:41','','0000-00-00 00:00:00',0),(6119,0,0,'H','2526','','',6119,0,0,'2025-12-03',5004,2462,0,0,2406,'B',500.00,0.00,'7','sbi','','98229','','0000-00-00','scan','',5954,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 11:14:04','','0000-00-00 00:00:00',0),(6120,0,0,'H','2526','','',6120,0,0,'2025-12-03',5005,1639,0,0,1595,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5955,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 11:15:10','','0000-00-00 00:00:00',0),(6121,0,0,'H','2526','','',6121,0,0,'2025-12-03',5006,3527,0,0,3430,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5956,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 11:16:45','','0000-00-00 00:00:00',0),(6122,0,0,'H','2526','','',6122,0,0,'2025-12-03',5008,2347,0,0,2290,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5957,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 11:20:30','','0000-00-00 00:00:00',0),(6123,0,0,'H','2526','','',6123,0,0,'2025-12-03',5010,3528,0,0,3431,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5958,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 11:34:25','','0000-00-00 00:00:00',0),(6124,0,0,'H','2526','','',6124,0,0,'2025-12-03',5011,3529,0,0,3432,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5959,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 11:35:55','','0000-00-00 00:00:00',0),(6125,0,0,'H','2526','','',6125,0,0,'2025-12-03',5009,1902,0,0,1856,'B',400.00,0.00,'2','axis bank','74423','74423','','0000-00-00','CARD','',5960,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 11:36:34','','0000-00-00 00:00:00',0),(6126,0,0,'H','2526','','',6126,0,0,'2025-12-03',5012,3530,0,0,3433,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5961,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 11:37:16','','0000-00-00 00:00:00',0),(6127,0,0,'H','2526','','',6127,0,0,'2025-12-03',5013,739,0,0,708,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5962,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 11:39:06','','0000-00-00 00:00:00',0),(6128,0,0,'H','2526','','',6128,0,0,'2025-12-03',5014,3531,0,0,3434,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5963,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 11:39:21','','0000-00-00 00:00:00',0),(6129,0,0,'H','2526','','',6129,0,0,'2025-12-03',5015,3532,0,0,3435,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5964,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 11:41:55','','0000-00-00 00:00:00',0),(6130,0,0,'H','2526','','',6130,0,0,'2025-12-03',4994,3521,0,0,3424,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5965,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 11:42:48','','0000-00-00 00:00:00',0),(6131,0,0,'H','2526','','',6131,0,0,'2025-12-03',5017,3533,0,0,3436,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5966,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 11:47:32','','0000-00-00 00:00:00',0),(6132,0,0,'H','2526','','',6132,0,0,'2025-12-03',5016,1853,0,0,1807,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5967,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 11:49:51','','0000-00-00 00:00:00',0),(6133,0,0,'H','2526','','',6133,0,0,'2025-12-03',5018,3534,0,0,3437,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5968,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 11:52:15','','0000-00-00 00:00:00',0),(6134,0,0,'H','2526','','',6134,0,0,'2025-12-03',5020,3330,0,0,3248,'B',5000.00,0.00,'CSH','','','','','0000-00-00','','',5969,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 11:55:37','','0000-00-00 00:00:00',0),(6135,0,0,'H','2526','','',6135,0,0,'2025-12-03',5021,1976,0,0,1928,'B',100.00,0.00,'7','INDIA POST PAY','','08190','','0000-00-00','SCAN','',5970,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-03 11:55:55','','0000-00-00 00:00:00',0),(6136,0,0,'H','2526','','',6136,0,0,'2025-12-03',5011,3529,0,0,3432,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',5971,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 11:56:16','','0000-00-00 00:00:00',0),(6137,0,0,'H','2526','','',6137,0,0,'2025-12-03',5001,3342,0,0,3259,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5972,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 11:58:42','','0000-00-00 00:00:00',0),(6138,0,0,'H','2526','','',6138,0,0,'2025-12-03',4984,3515,0,0,3418,'B',5400.00,0.00,'CSH','','','','','0000-00-00','','',5973,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 11:59:58','','0000-00-00 00:00:00',0),(6139,0,0,'H','2526','','',6139,0,0,'2025-12-03',5022,3535,0,0,3438,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5974,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 12:01:08','','0000-00-00 00:00:00',0),(6140,0,0,'H','2526','','P',6140,0,0,'2025-12-03',4781,3404,0,228,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',6270,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-03 12:05:35','vishal','2025-12-05 14:40:20',0),(6141,0,0,'H','2526','','',6141,0,0,'2025-12-03',5024,3536,0,0,3439,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5975,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 12:10:40','','0000-00-00 00:00:00',0),(6142,0,0,'H','2526','','',6142,0,0,'2025-12-03',5025,1498,0,0,1457,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5976,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 12:13:32','','0000-00-00 00:00:00',0),(6143,0,0,'H','2526','','',6143,0,0,'2025-12-03',4983,724,0,0,693,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',5977,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-03 12:14:24','','0000-00-00 00:00:00',0),(6144,0,0,'H','2526','','',6144,0,0,'2025-12-03',5026,3537,0,0,3440,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5978,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 12:18:29','','0000-00-00 00:00:00',0),(6145,0,0,'H','2526','','',6145,0,0,'2025-12-03',5027,3119,0,0,3038,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5979,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 12:19:33','','0000-00-00 00:00:00',0),(6146,0,0,'H','2526','','',6146,0,0,'2025-12-03',5029,3539,0,0,3442,'B',1000.00,0.00,'7','BOI','','92500','','0000-00-00','scan ','',5980,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 12:31:44','','0000-00-00 00:00:00',0),(6147,0,0,'H','2526','','',6147,0,0,'2025-12-03',5030,962,0,0,931,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5981,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 12:37:30','','0000-00-00 00:00:00',0),(6148,0,0,'H','2526','','',6148,0,0,'2025-12-03',5012,3530,0,0,3433,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',5982,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 12:39:27','','0000-00-00 00:00:00',0),(6149,0,0,'H','2526','','',6149,0,0,'2025-12-03',5031,3540,0,0,3443,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',5983,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 12:42:40','','0000-00-00 00:00:00',0),(6150,0,0,'H','2526','','',6150,0,0,'2025-12-03',5014,3531,0,0,3434,'D',-800.00,0.00,'CSH','','','','','2025-12-03','','',5984,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 12:46:05','','0000-00-00 00:00:00',0),(6151,0,0,'H','2526','','',6151,0,0,'2025-12-03',5014,3531,0,0,3434,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5985,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 12:46:38','','0000-00-00 00:00:00',0),(6152,0,0,'H','2526','','',6152,0,0,'2025-12-03',5032,3541,0,0,3444,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',5986,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 12:47:39','','0000-00-00 00:00:00',0),(6153,0,0,'H','2526','','',6153,0,0,'2025-12-03',5033,3542,0,0,3445,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5987,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 13:22:27','','0000-00-00 00:00:00',0),(6154,0,0,'H','2526','','',6154,0,0,'2025-12-03',5034,1728,0,0,1683,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5988,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 13:29:40','','0000-00-00 00:00:00',0),(6155,0,0,'H','2526','','',6155,0,0,'2025-12-03',5033,3542,0,0,3445,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',5989,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-03 14:05:10','','0000-00-00 00:00:00',0),(6156,0,0,'H','2526','','P',6156,0,0,'2025-12-03',5036,3543,0,239,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',6121,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-03 15:37:30','riya','2025-12-04 12:39:00',0),(6157,0,0,'H','2526','','P',6157,0,0,'2025-12-03',5038,3544,0,240,0,'A',15000.00,0.00,'7','kotak bank','','533712420290','','0000-00-00','SCAN','',6069,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-03 16:25:09','vishal','2025-12-04 07:16:11',0),(6158,0,0,'H','2526','','',6158,0,0,'2025-12-03',5041,3546,0,0,3447,'B',1400.00,0.00,'CSH','','','','','0000-00-00','','',5991,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 16:31:06','','0000-00-00 00:00:00',0),(6159,0,0,'H','2526','','',6159,0,0,'2025-12-03',5042,2480,0,0,2424,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5992,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 16:32:08','','0000-00-00 00:00:00',0),(6160,0,0,'H','2526','','',6160,0,0,'2025-12-03',5044,3547,0,0,3448,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',5993,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-03 16:38:47','','0000-00-00 00:00:00',0),(6161,0,0,'H','2526','','',6161,0,0,'2025-12-03',5045,3548,0,0,3449,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',5994,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 16:39:12','','0000-00-00 00:00:00',0),(6162,0,0,'H','2526','','',6162,0,0,'2025-12-03',3909,2866,0,181,0,'D',-7600.00,0.00,'CSH','','','','','0000-00-00','','',5995,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(6163,0,0,'H','2526','','',6163,0,0,'2025-12-03',5050,2551,0,0,2493,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5996,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 17:13:32','','0000-00-00 00:00:00',0),(6164,0,0,'H','2526','','',6164,0,0,'2025-12-03',5051,3420,0,0,3328,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',5997,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 17:15:04','','0000-00-00 00:00:00',0),(6165,0,0,'H','2526','','',6165,0,0,'2025-12-03',5052,3552,0,0,3453,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',5998,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 17:19:32','','0000-00-00 00:00:00',0),(6166,0,0,'H','2526','','',6166,0,0,'2025-12-03',5053,1051,0,0,1017,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',5999,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 17:21:31','','0000-00-00 00:00:00',0),(6167,0,0,'H','2526','','',6167,0,0,'2025-12-03',5054,1369,0,0,1329,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6000,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 17:23:46','','0000-00-00 00:00:00',0),(6168,0,0,'H','2526','','',6168,0,0,'2025-12-03',5055,3553,0,0,3454,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6001,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 17:25:22','','0000-00-00 00:00:00',0),(6169,0,0,'H','2526','','',6169,0,0,'2025-12-03',5057,3555,0,0,3456,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6002,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 17:29:21','','0000-00-00 00:00:00',0),(6170,0,0,'H','2526','','',6170,0,0,'2025-12-03',5058,2482,0,0,2426,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6003,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 17:30:52','','0000-00-00 00:00:00',0),(6171,0,0,'H','2526','','',6171,0,0,'2025-12-03',5059,3556,0,0,3457,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6004,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 17:33:21','','0000-00-00 00:00:00',0),(6172,0,0,'H','2526','','',6172,0,0,'2025-12-03',5060,3557,0,0,3458,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6005,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 17:39:19','','0000-00-00 00:00:00',0),(6173,0,0,'H','2526','','',6173,0,0,'2025-12-03',5062,3559,0,0,3460,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6006,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 17:44:09','','0000-00-00 00:00:00',0),(6174,0,0,'H','2526','','',6174,0,0,'2025-12-03',5063,3560,0,0,3461,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6007,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-03 17:49:27','','0000-00-00 00:00:00',0),(6175,0,0,'H','2526','','',6175,0,0,'2025-12-03',5052,3552,0,0,3453,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',6008,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 17:54:17','','0000-00-00 00:00:00',0),(6176,0,0,'H','2526','','',6176,0,0,'2025-12-03',5064,3561,0,0,3462,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6009,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 18:02:05','','0000-00-00 00:00:00',0),(6177,0,0,'H','2526','','',6177,0,0,'2025-12-03',5065,1187,0,0,1147,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6010,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 18:04:04','','0000-00-00 00:00:00',0),(6178,0,0,'H','2526','','',6178,0,0,'2025-12-03',5066,3562,0,0,3463,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6011,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 18:04:25','','0000-00-00 00:00:00',0),(6179,0,0,'H','2526','','',6179,0,0,'2025-12-03',5067,3563,0,0,3464,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6012,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 18:05:16','','0000-00-00 00:00:00',0),(6180,0,0,'H','2526','','',6180,0,0,'2025-12-03',5068,3564,0,0,3465,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6013,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 18:05:49','','0000-00-00 00:00:00',0),(6181,0,0,'H','2526','','',6181,0,0,'2025-12-03',5069,3565,0,0,3466,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6014,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 18:06:44','','0000-00-00 00:00:00',0),(6182,0,0,'H','2526','','',6182,0,0,'2025-12-03',5071,3567,0,0,3468,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6015,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 18:08:14','','0000-00-00 00:00:00',0),(6183,0,0,'H','2526','','',6183,0,0,'2025-12-03',5070,3566,0,0,3467,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6016,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 18:08:32','','0000-00-00 00:00:00',0),(6184,0,0,'H','2526','','',6184,0,0,'2025-12-03',5073,3568,0,0,3469,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6017,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 18:10:25','','0000-00-00 00:00:00',0),(6185,0,0,'H','2526','','',6185,0,0,'2025-12-03',5074,3569,0,0,3470,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6018,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 18:11:53','','0000-00-00 00:00:00',0),(6186,0,0,'H','2526','','',6186,0,0,'2025-12-03',5055,3553,0,0,3454,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',6019,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 18:13:59','','0000-00-00 00:00:00',0),(6187,0,0,'H','2526','','',6187,0,0,'2025-12-03',5076,3571,0,0,3472,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6020,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 18:14:40','','0000-00-00 00:00:00',0),(6188,0,0,'H','2526','','',6188,0,0,'2025-12-03',5075,3570,0,0,3471,'B',400.00,0.00,'7','ICICI BANK','','20084','','0000-00-00','scan ','',6021,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 18:15:18','','0000-00-00 00:00:00',0),(6189,0,0,'H','2526','','',6189,0,0,'2025-12-03',5077,3572,0,0,3473,'B',400.00,0.00,'7','ICICI BANK','','20084','','0000-00-00','scan ','',6022,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 18:15:31','','0000-00-00 00:00:00',0),(6190,0,0,'H','2526','','',6190,0,0,'2025-12-03',5079,3574,0,0,3475,'B',700.00,0.00,'7','bob','','81570','','0000-00-00','scan  ','',6023,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 18:17:07','','0000-00-00 00:00:00',0),(6191,0,0,'H','2526','','',6191,0,0,'2025-12-03',5080,3575,0,0,3476,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6024,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 18:17:31','','0000-00-00 00:00:00',0),(6192,0,0,'H','2526','','',6192,0,0,'2025-12-03',5081,3576,0,0,3477,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6025,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 18:18:58','','0000-00-00 00:00:00',0),(6193,0,0,'H','2526','','',6193,0,0,'2025-12-03',5082,3577,0,0,3478,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6026,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 18:20:07','','0000-00-00 00:00:00',0),(6194,0,0,'H','2526','','',6194,0,0,'2025-12-03',5059,3556,0,0,3457,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',6027,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 18:20:47','','0000-00-00 00:00:00',0),(6195,0,0,'H','2526','','',6195,0,0,'2025-12-03',5083,2754,0,0,2685,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6028,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 18:21:44','','0000-00-00 00:00:00',0),(6196,0,0,'H','2526','','',6196,0,0,'2025-12-03',5067,3563,0,0,3464,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',6029,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 18:27:44','','0000-00-00 00:00:00',0),(6197,0,0,'H','2526','','',6197,0,0,'2025-12-03',5085,3579,0,0,3480,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6030,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 18:28:19','','0000-00-00 00:00:00',0),(6198,0,0,'H','2526','','',6198,0,0,'2025-12-03',5084,3578,0,0,3479,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6031,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 18:28:47','','0000-00-00 00:00:00',0),(6199,0,0,'H','2526','','',6199,0,0,'2025-12-03',5086,3580,0,0,3481,'B',500.00,0.00,'7','yes bank','','26920','','0000-00-00','scan','',6032,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 18:29:20','','0000-00-00 00:00:00',0),(6200,0,0,'H','2526','','',6200,0,0,'2025-12-03',5064,3561,0,0,3462,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6033,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 18:30:16','','0000-00-00 00:00:00',0),(6201,0,0,'H','2526','','',6201,0,0,'2025-12-03',5087,3581,0,0,3482,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6034,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 18:30:35','','0000-00-00 00:00:00',0),(6202,0,0,'H','2526','','',6202,0,0,'2025-12-03',5088,3582,0,0,3483,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6035,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 18:31:11','','0000-00-00 00:00:00',0),(6203,0,0,'H','2526','','',6203,0,0,'2025-12-03',5063,3560,0,0,3461,'D',-500.00,0.00,'CSH','','','','','2025-12-03','','',6036,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-03 18:33:24','','0000-00-00 00:00:00',0),(6204,0,0,'H','2526','','',6204,0,0,'2025-12-03',5063,3560,0,0,3461,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6037,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-03 18:34:13','','0000-00-00 00:00:00',0),(6205,0,0,'H','2526','','',6205,0,0,'2025-12-03',5091,3584,0,0,3484,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6038,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 18:45:08','','0000-00-00 00:00:00',0),(6206,0,0,'H','2526','','',6206,0,0,'2025-12-03',5095,3587,0,0,3487,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6039,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 18:49:27','','0000-00-00 00:00:00',0),(6207,0,0,'H','2526','','',6207,0,0,'2025-12-03',5094,3586,0,0,3486,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6040,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 18:49:49','','0000-00-00 00:00:00',0),(6208,0,0,'H','2526','','',6208,0,0,'2025-12-03',5092,3585,0,0,3485,'B',400.00,0.00,'7','axis bank','','37280','','0000-00-00','scan ','',6041,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 18:49:55','','0000-00-00 00:00:00',0),(6209,0,0,'H','2526','','',6209,0,0,'2025-12-03',5096,3588,0,0,3488,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6042,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 18:51:41','','0000-00-00 00:00:00',0),(6210,0,0,'H','2526','','',6210,0,0,'2025-12-03',5097,3589,0,0,3489,'B',700.00,0.00,'7','hdfc','','69042','','0000-00-00','scan','',6043,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 18:55:14','','0000-00-00 00:00:00',0),(6211,0,0,'H','2526','','',6211,0,0,'2025-12-03',5099,714,0,0,1085,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6044,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 18:56:23','','0000-00-00 00:00:00',0),(6212,0,0,'H','2526','','',6212,0,0,'2025-12-03',5100,3591,0,0,3491,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6046,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 18:59:05','','0000-00-00 00:00:00',0),(6213,0,0,'H','2526','','',6213,0,0,'2025-12-03',5092,3585,0,0,3485,'D',-400.00,0.00,'7','axis bank','','37280','','2025-12-03','','',6045,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 18:59:17','','0000-00-00 00:00:00',0),(6214,0,0,'H','2526','','',6214,0,0,'2025-12-03',5101,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6047,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 18:59:31','','0000-00-00 00:00:00',0),(6215,0,0,'H','2526','','',6215,0,0,'2025-12-03',5102,3592,0,0,3492,'B',400.00,0.00,'7','axis bank','','37280','','0000-00-00','scan','',6048,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 19:01:09','','0000-00-00 00:00:00',0),(6216,0,0,'H','2526','','',6216,0,0,'2025-12-03',5103,3593,0,0,3493,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6049,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 19:01:11','','0000-00-00 00:00:00',0),(6217,0,0,'H','2526','','',6217,0,0,'2025-12-03',5090,820,0,0,789,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6050,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 19:02:32','','0000-00-00 00:00:00',0),(6218,0,0,'H','2526','','',6218,0,0,'2025-12-03',5074,3569,0,0,3470,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',6051,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 19:02:56','','0000-00-00 00:00:00',0),(6219,0,0,'H','2526','','',6219,0,0,'2025-12-03',5093,3073,0,0,2995,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6052,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 19:04:00','','0000-00-00 00:00:00',0),(6220,0,0,'H','2526','','',6220,0,0,'2025-12-03',5104,3399,0,0,3310,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6053,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 19:05:13','','0000-00-00 00:00:00',0),(6221,0,0,'H','2526','','',6221,0,0,'2025-12-03',5091,3584,0,0,3484,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',6054,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-03 19:11:59','','0000-00-00 00:00:00',0),(6222,0,0,'H','2526','','',6222,0,0,'2025-12-03',5106,2087,0,0,2033,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6055,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 19:12:22','','0000-00-00 00:00:00',0),(6223,0,0,'H','2526','','',6223,0,0,'2025-12-03',5095,3587,0,0,3487,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',6056,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-03 19:13:18','','0000-00-00 00:00:00',0),(6224,0,0,'H','2526','','',6224,0,0,'2025-12-03',5107,818,0,0,787,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6057,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-03 19:15:50','','0000-00-00 00:00:00',0),(6225,0,0,'H','2526','','',6225,0,0,'2025-12-03',5105,3101,0,0,3021,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6059,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-03 19:41:25','','0000-00-00 00:00:00',0),(6226,0,0,'H','2526','','',6226,0,0,'2025-12-03',4266,3085,0,203,0,'D',-10000.00,0.00,'CSH','','','','','0000-00-00','','',6060,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(6227,0,0,'H','2526','','P',6227,0,0,'2025-12-03',4802,3394,0,229,0,'A',6600.00,0.00,'CSH','','','','','0000-00-00','','',6062,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-03 20:52:37','vishal','2025-12-03 20:52:50',0),(6228,0,0,'H','2526','','P',6228,0,0,'2025-12-03',4834,3427,0,230,0,'A',10300.00,0.00,'CSH','','','','','0000-00-00','','',6064,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-03 21:28:25','vishal','2025-12-03 21:28:55',0),(6229,0,0,'H','2526','','P',6229,0,0,'2025-12-04',5038,3544,0,240,0,'A',13600.00,0.00,'CSH','','','','','0000-00-00','','',6069,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-04 07:12:22','vishal','2025-12-04 07:16:11',0),(6230,0,0,'H','2526','','',6230,0,0,'2025-12-04',5108,3594,0,0,3494,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',6070,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 08:42:34','','0000-00-00 00:00:00',0),(6231,0,0,'H','2526','','',6231,0,0,'2025-12-04',5109,3595,0,0,3495,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',6071,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 08:46:13','','0000-00-00 00:00:00',0),(6232,0,0,'H','2526','','',6232,0,0,'2025-12-04',5110,3596,0,0,3496,'B',1200.00,0.00,'7','bank','','88375','','0000-00-00','scan','',6072,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 08:49:02','','0000-00-00 00:00:00',0),(6233,0,0,'H','2526','','',6233,0,0,'2025-12-04',5111,2463,0,0,2407,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6073,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 09:35:52','','0000-00-00 00:00:00',0),(6234,0,0,'H','2526','','P',6234,0,0,'2025-12-04',4778,3401,0,226,0,'A',50000.00,0.00,'CSH','','','','','0000-00-00','','',6240,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-04 10:01:56','vishal','2025-12-05 11:53:00',0),(6235,0,0,'H','2526','','',6235,0,0,'2025-12-04',5112,3597,0,0,3497,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6074,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-04 10:03:18','','0000-00-00 00:00:00',0),(6236,0,0,'H','2526','','',6236,0,0,'2025-12-04',5114,2544,0,0,2486,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6075,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 10:19:38','','0000-00-00 00:00:00',0),(6237,0,0,'H','2526','','',6237,0,0,'2025-12-04',5115,3599,0,0,3498,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6076,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-04 10:22:53','','0000-00-00 00:00:00',0),(6238,0,0,'H','2526','','',6238,0,0,'2025-12-04',5116,2986,0,0,2908,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6077,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-04 10:29:27','','0000-00-00 00:00:00',0),(6239,0,0,'H','2526','','',6239,0,0,'2025-12-04',5118,3600,0,0,3499,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6078,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-04 10:46:49','','0000-00-00 00:00:00',0),(6240,0,0,'H','2526','','',6240,0,0,'2025-12-04',5117,3411,0,0,3319,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6079,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-04 10:48:21','','0000-00-00 00:00:00',0),(6241,0,0,'H','2526','','',6241,0,0,'2025-12-04',5121,3602,0,0,3500,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6080,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 10:56:32','','0000-00-00 00:00:00',0),(6242,0,0,'H','2526','','',6242,0,0,'2025-12-04',5122,3603,0,0,3501,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6081,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 11:00:12','','0000-00-00 00:00:00',0),(6243,0,0,'H','2526','','P',6243,0,0,'2025-12-04',5120,3601,0,243,0,'A',15000.00,0.00,'7','HDFC BANK','','115101142090','','0000-00-00','SCAN','',8441,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-04 11:02:08','vishal','2025-12-22 21:57:17',0),(6244,0,0,'H','2526','','',6244,0,0,'2025-12-04',5123,3604,0,0,3502,'B',500.00,0.00,'7','uco bank','','01803','','0000-00-00','scan','',6082,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 11:02:43','','0000-00-00 00:00:00',0),(6245,0,0,'H','2526','','',6245,0,0,'2025-12-04',5124,2783,0,0,2712,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6083,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 11:04:59','','0000-00-00 00:00:00',0),(6246,0,0,'H','2526','','',6246,0,0,'2025-12-04',5125,3605,0,0,3503,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6084,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 11:12:50','','0000-00-00 00:00:00',0),(6247,0,0,'H','2526','','',6247,0,0,'2025-12-04',5126,1903,0,0,1857,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6085,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 11:13:07','','0000-00-00 00:00:00',0),(6248,0,0,'H','2526','','',6248,0,0,'2025-12-04',5128,3606,0,0,3504,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6086,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-04 11:16:47','','0000-00-00 00:00:00',0),(6249,0,0,'H','2526','','',6249,0,0,'2025-12-04',5127,2357,0,0,2300,'B',500.00,0.00,'7','hdfc','','17820','','0000-00-00','scan','',6087,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 11:17:22','','0000-00-00 00:00:00',0),(6250,0,0,'H','2526','','',6250,0,0,'2025-12-04',5112,3597,0,0,3497,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',6088,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-04 11:19:15','','0000-00-00 00:00:00',0),(6251,0,0,'H','2526','','P',6251,0,0,'2025-12-04',4977,3510,0,238,0,'A',20000.00,0.00,'CRD','HDFC BANK','','E800','','0000-00-00','CARD','',6562,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-04 11:19:42','riya','2025-12-08 12:52:58',0),(6252,0,0,'H','2526','','',6252,0,0,'2025-12-04',5129,3607,0,0,3505,'B',750.00,0.00,'7','canara bank','','03295','','0000-00-00','scan','',6089,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 11:20:24','','0000-00-00 00:00:00',0),(6253,0,0,'H','2526','','',6253,0,0,'2025-12-04',5130,3608,0,0,3506,'B',500.00,0.00,'7','hdfc','','10751','','0000-00-00','scan','',6090,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 11:22:42','','0000-00-00 00:00:00',0),(6254,0,0,'H','2526','','',6254,0,0,'2025-12-04',5131,3482,0,0,3386,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6091,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-04 11:25:40','','0000-00-00 00:00:00',0),(6255,0,0,'H','2526','','',6255,0,0,'2025-12-04',5133,3610,0,0,3508,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6093,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 11:31:29','','0000-00-00 00:00:00',0),(6256,0,0,'H','2526','','',6256,0,0,'2025-12-04',5134,3611,0,0,3509,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6094,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 11:33:58','','0000-00-00 00:00:00',0),(6257,0,0,'H','2526','','',6257,0,0,'2025-12-04',5136,3394,0,0,3305,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6095,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 11:40:24','','0000-00-00 00:00:00',0),(6258,0,0,'H','2526','','',6258,0,0,'2025-12-04',5137,3612,0,0,3511,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6096,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 11:42:16','','0000-00-00 00:00:00',0),(6259,0,0,'H','2526','','P',6259,0,0,'2025-12-04',5113,3598,0,242,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',6442,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-04 11:43:00','riya','2025-12-06 19:32:58',0),(6260,0,0,'H','2526','','P',6260,0,0,'2025-12-04',4751,3383,0,224,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',6411,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-04 11:45:42','riya','2025-12-06 12:53:47',0),(6261,0,0,'H','2526','','',6261,0,0,'2025-12-04',5138,3613,0,0,3512,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6097,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 11:46:48','','0000-00-00 00:00:00',0),(6262,0,0,'H','2526','','',6262,0,0,'2025-12-04',5139,1972,0,0,1924,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6098,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 11:47:57','','0000-00-00 00:00:00',0),(6263,0,0,'H','2526','','',6263,0,0,'2025-12-04',5141,3615,0,0,3514,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6099,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 11:49:17','','0000-00-00 00:00:00',0),(6264,0,0,'H','2526','','',6264,0,0,'2025-12-04',5140,3614,0,0,3513,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6100,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 11:49:24','','0000-00-00 00:00:00',0),(6265,0,0,'H','2526','','',6265,0,0,'2025-12-04',5132,3609,0,0,3507,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6102,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-04 11:51:00','','0000-00-00 00:00:00',0),(6266,0,0,'H','2526','','',6266,0,0,'2025-12-04',5142,3616,0,0,3515,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6103,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 11:52:39','','0000-00-00 00:00:00',0),(6267,0,0,'H','2526','','',6267,0,0,'2025-12-04',5128,3606,0,0,3504,'D',-750.00,0.00,'CSH','','','','','2025-12-04','','',6104,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 12:00:29','','0000-00-00 00:00:00',0),(6268,0,0,'H','2526','','',6268,0,0,'2025-12-04',5128,3606,0,0,3504,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6105,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 12:01:04','','0000-00-00 00:00:00',0),(6269,0,0,'H','2526','','',6269,0,0,'2025-12-04',5143,538,0,0,513,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6106,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 12:02:19','','0000-00-00 00:00:00',0),(6270,0,0,'H','2526','','',6270,0,0,'2025-12-04',5144,3617,0,0,3516,'B',750.00,0.00,'7','HDFC BANK','','29443','','0000-00-00','scan','',6107,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 12:07:44','','0000-00-00 00:00:00',0),(6271,0,0,'H','2526','','',6271,0,0,'2025-12-04',5145,3618,0,0,3517,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6108,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 12:16:13','','0000-00-00 00:00:00',0),(6272,0,0,'H','2526','','',6272,0,0,'2025-12-04',5146,3619,0,0,3518,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6109,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 12:16:55','','0000-00-00 00:00:00',0),(6273,0,0,'H','2526','','',6273,0,0,'2025-12-04',5147,3620,0,0,3519,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6110,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 12:20:33','','0000-00-00 00:00:00',0),(6274,0,0,'H','2526','','',6274,0,0,'2025-12-04',5149,2653,0,0,2592,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6111,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 12:22:23','','0000-00-00 00:00:00',0),(6275,0,0,'H','2526','','',6275,0,0,'2025-12-04',5144,3617,0,0,3516,'B',400.00,0.00,'7','hdfc','','55067','','0000-00-00','scan ','',6112,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-04 12:23:54','','0000-00-00 00:00:00',0),(6276,0,0,'H','2526','','',6276,0,0,'2025-12-04',5142,3616,0,0,3515,'D',-700.00,0.00,'CSH','','','','','2025-12-04','','',6113,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 12:24:51','','0000-00-00 00:00:00',0),(6277,0,0,'H','2526','','',6277,0,0,'2025-12-04',5142,3616,0,0,3515,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6114,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 12:25:31','','0000-00-00 00:00:00',0),(6278,0,0,'H','2526','','',6278,0,0,'2025-12-04',5150,3622,0,0,3520,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6115,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 12:26:41','','0000-00-00 00:00:00',0),(6279,0,0,'H','2526','','',6279,0,0,'2025-12-04',5151,3623,0,0,3521,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6116,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 12:28:22','','0000-00-00 00:00:00',0),(6280,0,0,'H','2526','','',6280,0,0,'2025-12-04',5119,2313,0,0,2256,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6117,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 12:29:10','','0000-00-00 00:00:00',0),(6281,0,0,'H','2526','','',6281,0,0,'2025-12-04',5152,3624,0,0,3522,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6118,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 12:30:21','','0000-00-00 00:00:00',0),(6282,0,0,'H','2526','','P',6282,0,0,'2025-12-04',4857,3440,0,232,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',6120,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-04 12:35:17','riya','2025-12-04 12:36:43',0),(6283,0,0,'H','2526','','',6283,0,0,'2025-12-04',5153,1567,0,0,1526,'B',400.00,0.00,'7','CENTRAL BANK','','46797','','0000-00-00','scan','',6119,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 12:36:24','','0000-00-00 00:00:00',0),(6284,0,0,'H','2526','','P',6284,0,0,'2025-12-04',5036,3543,0,239,0,'A',200.00,0.00,'CSH','','','','','0000-00-00','','',6121,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-04 12:38:47','riya','2025-12-04 12:39:00',0),(6285,0,0,'H','2526','','',6285,0,0,'2025-12-04',5154,3586,0,0,3486,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',6122,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-04 12:40:35','','0000-00-00 00:00:00',0),(6286,0,0,'H','2526','','',6286,0,0,'2025-12-04',5155,3625,0,0,3523,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6123,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 12:45:00','','0000-00-00 00:00:00',0),(6287,0,0,'H','2526','','',6287,0,0,'2025-12-04',5156,3626,0,0,3524,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6124,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-04 12:47:23','','0000-00-00 00:00:00',0),(6288,0,0,'H','2526','','',6288,0,0,'2025-12-04',5157,3627,0,0,3525,'B',500.00,0.00,'7','KOTAK BANK','','11431','','0000-00-00','scan','',6125,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 12:48:16','','0000-00-00 00:00:00',0),(6289,0,0,'H','2526','','',6289,0,0,'2025-12-04',5158,1907,0,0,1862,'B',500.00,0.00,'7','sbi','','75222','','0000-00-00','scan','',6126,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 12:49:36','','0000-00-00 00:00:00',0),(6290,0,0,'H','2526','','',6290,0,0,'2025-12-04',5155,3625,0,0,3523,'D',-750.00,0.00,'CSH','','','','','2025-12-04','','',6127,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 12:51:36','','0000-00-00 00:00:00',0),(6291,0,0,'H','2526','','',6291,0,0,'2025-12-04',5141,3615,0,0,3514,'B',4600.00,0.00,'7','sbi','','13580','','0000-00-00','scan','',6128,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 12:52:07','','0000-00-00 00:00:00',0),(6292,0,0,'H','2526','','',6292,0,0,'2025-12-04',5155,3625,0,0,3523,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6129,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 12:52:10','','0000-00-00 00:00:00',0),(6293,0,0,'H','2526','','',6293,0,0,'2025-12-04',5159,3628,0,0,3526,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6130,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 13:02:35','','0000-00-00 00:00:00',0),(6294,0,0,'H','2526','','',6294,0,0,'2025-12-04',5160,3629,0,0,3527,'B',900.00,0.00,'7','sbi','','38235','','0000-00-00','scan','',6131,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 13:06:32','','0000-00-00 00:00:00',0),(6295,0,0,'H','2526','','',6295,0,0,'2025-12-04',5161,1676,0,0,1631,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6132,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 13:06:59','','0000-00-00 00:00:00',0),(6296,0,0,'H','2526','','P',6296,0,0,'2025-12-04',4688,3345,0,218,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',7018,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-04 13:21:34','riya','2025-12-11 14:46:45',0),(6297,0,0,'H','2526','','',6297,0,0,'2025-12-04',5157,3627,0,0,3525,'B',1000.00,0.00,'7','kotak','','42677','','0000-00-00','scan  ','',6133,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-04 13:50:14','','0000-00-00 00:00:00',0),(6298,0,0,'H','2526','','',6298,0,0,'2025-12-04',5162,2384,0,0,2662,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6134,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-04 13:52:12','','0000-00-00 00:00:00',0),(6299,0,0,'H','2526','','',6299,0,0,'2025-12-04',5143,538,0,0,513,'D',-400.00,0.00,'CSH','','','','','2025-12-04','','',6135,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 13:57:14','','0000-00-00 00:00:00',0),(6300,0,0,'H','2526','','',6300,0,0,'2025-12-04',5143,538,0,0,513,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6136,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 13:58:11','','0000-00-00 00:00:00',0),(6301,0,0,'H','2526','','P',6301,0,0,'2025-12-04',5163,3630,0,245,0,'A',2000.00,0.00,'CSH','','','','','0000-00-00','','',7222,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-04 15:05:42','vishal','2025-12-12 19:36:58',0),(6302,0,0,'H','2526','','P',6302,0,0,'2025-12-04',5164,3631,0,246,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',6195,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-04 15:54:38','riya','2025-12-04 21:49:34',0),(6303,0,0,'H','2526','','',6303,0,0,'2025-12-04',5165,3632,0,0,3528,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6137,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 16:09:06','','0000-00-00 00:00:00',0),(6304,0,0,'H','2526','','',6304,0,0,'2025-12-04',5166,2747,0,0,2678,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6138,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-04 16:35:31','','0000-00-00 00:00:00',0),(6305,0,0,'H','2526','','',6305,0,0,'2025-12-04',5167,2902,0,0,2830,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6139,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-04 16:37:43','','0000-00-00 00:00:00',0),(6306,0,0,'H','2526','','',6306,0,0,'2025-12-04',5168,3633,0,0,3529,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6141,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 16:48:57','','0000-00-00 00:00:00',0),(6307,0,0,'H','2526','','',6307,0,0,'2025-12-04',5171,3634,0,0,3532,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6142,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 16:54:40','','0000-00-00 00:00:00',0),(6308,0,0,'H','2526','','',6308,0,0,'2025-12-04',5172,3591,0,0,3491,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',6143,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 17:04:56','','0000-00-00 00:00:00',0),(6309,0,0,'H','2526','','',6309,0,0,'2025-12-04',5173,3635,0,0,3533,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6144,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 17:11:32','','0000-00-00 00:00:00',0),(6310,0,0,'H','2526','','',6310,0,0,'2025-12-04',5176,834,0,0,803,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6145,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 17:24:31','','0000-00-00 00:00:00',0),(6311,0,0,'H','2526','','P',6311,0,0,'2025-12-04',5175,3636,0,247,0,'A',15000.00,0.00,'CRD','other bank','','0312','','0000-00-00','','',6708,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-04 17:27:33','vishal','2025-12-09 11:48:27',0),(6312,0,0,'H','2526','','',6312,0,0,'2025-12-04',5177,3637,0,0,3535,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6146,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 17:32:06','','0000-00-00 00:00:00',0),(6313,0,0,'H','2526','','',6313,0,0,'2025-12-04',5178,3213,0,0,3127,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6147,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 17:34:18','','0000-00-00 00:00:00',0),(6314,0,0,'H','2526','','',6314,0,0,'2025-12-04',5179,3638,0,0,3536,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6148,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 17:38:31','','0000-00-00 00:00:00',0),(6315,0,0,'H','2526','','',6315,0,0,'2025-12-04',5168,3633,0,0,3529,'B',4200.00,0.00,'CSH','','','','','0000-00-00','','',6149,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 17:39:14','','0000-00-00 00:00:00',0),(6316,0,0,'H','2526','','',6316,0,0,'2025-12-04',5180,1932,0,0,1885,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6150,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 17:40:04','','0000-00-00 00:00:00',0),(6317,0,0,'H','2526','','',6317,0,0,'2025-12-04',5181,3639,0,0,3537,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6151,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-04 17:40:28','','0000-00-00 00:00:00',0),(6318,0,0,'H','2526','','',6318,0,0,'2025-12-04',5182,752,0,0,721,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6152,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 17:43:35','','0000-00-00 00:00:00',0),(6319,0,0,'H','2526','','',6319,0,0,'2025-12-04',5181,3639,0,0,3537,'D',-500.00,0.00,'CSH','','','','','0000-00-00','','',6153,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-04 17:43:36','','0000-00-00 00:00:00',0),(6320,0,0,'H','2526','','',6320,0,0,'2025-12-04',5181,3639,0,0,3537,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6154,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-04 17:43:45','','0000-00-00 00:00:00',0),(6321,0,0,'H','2526','','P',6321,0,0,'2025-12-04',4920,3480,0,235,0,'A',25000.00,0.00,'7','HDFC BANK','','4731','','0000-00-00','','',6155,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-04 17:44:23','vishal','2025-12-04 17:45:40',0),(6322,0,0,'H','2526','','P',6322,0,0,'2025-12-04',4920,3480,0,235,0,'A',500.00,0.00,'7','HDFC BANK','','4731','','0000-00-00','','',6155,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-04 17:45:13','vishal','2025-12-04 17:45:40',0),(6323,0,0,'H','2526','','',6323,0,0,'2025-12-04',5183,3640,0,0,3538,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6156,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-04 17:49:58','','0000-00-00 00:00:00',0),(6324,0,0,'H','2526','','',6324,0,0,'2025-12-04',5171,3634,0,0,3532,'B',2500.00,0.00,'CSH','','','','','0000-00-00','','',6157,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 17:53:45','','0000-00-00 00:00:00',0),(6325,0,0,'H','2526','','',6325,0,0,'2025-12-04',5136,3394,0,0,3305,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6158,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-04 17:55:34','','0000-00-00 00:00:00',0),(6326,0,0,'H','2526','','',6326,0,0,'2025-12-04',5185,3641,0,0,3539,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6159,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 17:56:39','','0000-00-00 00:00:00',0),(6327,0,0,'H','2526','','',6327,0,0,'2025-12-04',5186,3642,0,0,3540,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6160,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 18:00:26','','0000-00-00 00:00:00',0),(6328,0,0,'H','2526','','',6328,0,0,'2025-12-04',5187,805,0,0,774,'B',500.00,0.00,'7','sbi','','43656','','0000-00-00','scan','',6161,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 18:01:46','','0000-00-00 00:00:00',0),(6329,0,0,'H','2526','','',6329,0,0,'2025-12-04',5188,3643,0,0,3541,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6162,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 18:06:05','','0000-00-00 00:00:00',0),(6330,0,0,'H','2526','','',6330,0,0,'2025-12-04',5189,2780,0,0,3542,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6163,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 18:08:57','','0000-00-00 00:00:00',0),(6331,0,0,'H','2526','','',6331,0,0,'2025-12-04',5191,3267,0,0,3181,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6164,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 18:10:21','','0000-00-00 00:00:00',0),(6332,0,0,'H','2526','','',6332,0,0,'2025-12-04',5192,3098,0,0,3018,'B',400.00,0.00,'7','SBI BANK','','97285','','0000-00-00','scan','',6165,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 18:12:03','','0000-00-00 00:00:00',0),(6333,0,0,'H','2526','','',6333,0,0,'2025-12-04',5184,2808,0,0,2738,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6166,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-04 18:12:26','','0000-00-00 00:00:00',0),(6334,0,0,'H','2526','','',6334,0,0,'2025-12-04',5193,2781,0,0,2710,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6167,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-04 18:15:42','','0000-00-00 00:00:00',0),(6335,0,0,'H','2526','','',6335,0,0,'2025-12-04',5195,3645,0,0,3544,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6168,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 18:16:51','','0000-00-00 00:00:00',0),(6336,0,0,'H','2526','','',6336,0,0,'2025-12-04',5194,3644,0,0,3543,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6169,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-04 18:16:55','','0000-00-00 00:00:00',0),(6337,0,0,'H','2526','','',6337,0,0,'2025-12-04',5196,864,0,0,833,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6170,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 18:23:58','','0000-00-00 00:00:00',0),(6338,0,0,'H','2526','','',6338,0,0,'2025-12-04',5197,3646,0,0,3545,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6171,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-04 18:24:17','','0000-00-00 00:00:00',0),(6339,0,0,'H','2526','','',6339,0,0,'2025-12-04',5189,2780,0,0,3542,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',6172,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 18:25:32','','0000-00-00 00:00:00',0),(6340,0,0,'H','2526','','',6340,0,0,'2025-12-04',5198,797,0,0,766,'B',500.00,0.00,'7','sbi','','75559','','0000-00-00','scan','',6173,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 18:26:25','','0000-00-00 00:00:00',0),(6341,0,0,'H','2526','','',6341,0,0,'2025-12-04',5186,3642,0,0,3540,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6174,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 18:29:05','','0000-00-00 00:00:00',0),(6342,0,0,'H','2526','','',6342,0,0,'2025-12-04',5199,2567,0,0,2510,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6175,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-04 18:31:13','','0000-00-00 00:00:00',0),(6343,0,0,'H','2526','','',6343,0,0,'2025-12-04',5192,3098,0,0,3018,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',6176,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 18:34:44','','0000-00-00 00:00:00',0),(6344,0,0,'H','2526','','',6344,0,0,'2025-12-04',5200,2389,0,0,2333,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6177,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 18:34:45','','0000-00-00 00:00:00',0),(6345,0,0,'H','2526','','',6345,0,0,'2025-12-04',5201,3647,0,0,3546,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6178,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 18:36:31','','0000-00-00 00:00:00',0),(6346,0,0,'H','2526','','',6346,0,0,'2025-12-04',5203,2952,0,0,2877,'B',500.00,0.00,'7','AXIS','','54424','','0000-00-00','scan','',6179,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 18:42:38','','0000-00-00 00:00:00',0),(6347,0,0,'H','2526','','',6347,0,0,'2025-12-04',5205,3649,0,0,3548,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6180,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 18:45:58','','0000-00-00 00:00:00',0),(6348,0,0,'H','2526','','',6348,0,0,'2025-12-04',5204,3648,0,0,3547,'B',700.00,0.00,'7','axis bank','','41886','','0000-00-00','scan ','',6181,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-04 18:46:36','','0000-00-00 00:00:00',0),(6349,0,0,'H','2526','','',6349,0,0,'2025-12-04',5206,3399,0,0,3310,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6182,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-04 18:47:22','','0000-00-00 00:00:00',0),(6350,0,0,'H','2526','','',6350,0,0,'2025-12-04',5207,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6183,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 18:48:29','','0000-00-00 00:00:00',0),(6351,0,0,'H','2526','','',6351,0,0,'2025-12-04',5210,3651,0,0,3550,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6184,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 18:58:11','','0000-00-00 00:00:00',0),(6352,0,0,'H','2526','','',6352,0,0,'2025-12-04',5209,3650,0,0,3549,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6185,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 18:58:24','','0000-00-00 00:00:00',0),(6353,0,0,'H','2526','','',6353,0,0,'2025-12-04',5192,3098,0,0,3018,'B',100.00,0.00,'7','SBI BANK','','92331','','0000-00-00','scan','',6186,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 18:58:44','','0000-00-00 00:00:00',0),(6354,0,0,'H','2526','','',6354,0,0,'2025-12-04',5211,3652,0,0,3551,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6187,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 19:04:02','','0000-00-00 00:00:00',0),(6355,0,0,'H','2526','','',6355,0,0,'2025-12-04',5201,3647,0,0,3546,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',6188,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 19:07:52','','0000-00-00 00:00:00',0),(6356,0,0,'H','2526','','',6356,0,0,'2025-12-04',5212,1765,0,0,1721,'B',500.00,0.00,'7','sbi','','57202','','0000-00-00','scan','',6189,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-04 19:17:59','','0000-00-00 00:00:00',0),(6357,0,0,'H','2526','','',6357,0,0,'2025-12-04',5213,3346,0,0,3552,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6190,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-04 19:21:19','','0000-00-00 00:00:00',0),(6358,0,0,'H','2526','','',6358,0,0,'2025-12-04',5214,580,0,0,554,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6191,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-04 19:24:31','','0000-00-00 00:00:00',0),(6359,0,0,'H','2526','','P',6359,0,0,'2025-12-04',5120,3601,0,243,0,'A',15000.00,0.00,'7','kotak bank','','11089','','0000-00-00','','',8441,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-04 20:24:50','vishal','2025-12-22 21:57:17',0),(6360,0,0,'H','2526','','P',6360,0,0,'2025-12-04',4693,3349,0,221,0,'A',14000.00,0.00,'CSH','','','','','0000-00-00','','',6193,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-04 20:44:38','riya','2025-12-04 20:45:23',0),(6361,0,0,'H','2526','','P',6361,0,0,'2025-12-04',5164,3631,0,246,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',6195,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-04 21:49:13','riya','2025-12-04 21:49:34',0),(6362,0,0,'H','2526','','P',6362,0,0,'2025-12-04',4970,3506,0,237,0,'A',19700.00,0.00,'7','axis bank','','2677','','0000-00-00','','',6357,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-04 22:03:53','riya','2025-12-06 10:35:14',0),(6363,0,0,'H','2526','','',6363,0,0,'2025-12-05',5216,3653,0,0,3553,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',6196,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 08:40:40','','0000-00-00 00:00:00',0),(6364,0,0,'H','2526','','',6364,0,0,'2025-12-05',5217,3394,0,0,3305,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6197,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 08:42:22','','0000-00-00 00:00:00',0),(6365,0,0,'H','2526','','',6365,0,0,'2025-12-05',5218,3654,0,0,3554,'B',1100.00,0.00,'1','BANK','','00986','','0000-00-00','SCAN','',6198,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 08:48:53','','0000-00-00 00:00:00',0),(6366,0,0,'H','2526','','',6366,0,0,'2025-12-05',5218,3654,0,0,3554,'D',-1100.00,0.00,'1','BANK','','00986','','2025-12-05','SCAN','',6199,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 09:05:13','','0000-00-00 00:00:00',0),(6367,0,0,'H','2526','','',6367,0,0,'2025-12-05',5218,3654,0,0,3554,'B',1100.00,0.00,'7','BANK','','00986','','0000-00-00','SCAN','',6200,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 09:06:27','','0000-00-00 00:00:00',0),(6368,0,0,'H','2526','','',6368,0,0,'2025-12-05',5217,3394,0,0,3305,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6201,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 09:20:18','','0000-00-00 00:00:00',0),(6369,0,0,'H','2526','','',6369,0,0,'2025-12-05',5219,3058,0,0,2980,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6202,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 09:39:31','','0000-00-00 00:00:00',0),(6370,0,0,'H','2526','','',6370,0,0,'2025-12-05',5220,1624,0,0,1580,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6203,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 09:43:32','','0000-00-00 00:00:00',0),(6371,0,0,'H','2526','','',6371,0,0,'2025-12-05',5221,3655,0,0,3555,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6204,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 09:50:48','','0000-00-00 00:00:00',0),(6372,0,0,'H','2526','','',6372,0,0,'2025-12-05',5222,3656,0,0,3556,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6205,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 09:58:23','','0000-00-00 00:00:00',0),(6373,0,0,'H','2526','','',6373,0,0,'2025-12-05',5224,3295,0,0,3208,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6206,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 10:08:07','','0000-00-00 00:00:00',0),(6374,0,0,'H','2526','','',6374,0,0,'2025-12-05',5226,3658,0,0,3558,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6207,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 10:16:47','','0000-00-00 00:00:00',0),(6375,0,0,'H','2526','','',6375,0,0,'2025-12-05',5227,3659,0,0,3559,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6208,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 10:18:58','','0000-00-00 00:00:00',0),(6376,0,0,'H','2526','','',6376,0,0,'2025-12-05',5228,2116,0,0,2062,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6209,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 10:20:36','','0000-00-00 00:00:00',0),(6377,0,0,'H','2526','','',6377,0,0,'2025-12-05',5229,3660,0,0,3560,'B',900.00,0.00,'7','BOB','','75947','','0000-00-00','SCAN','',6210,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 10:45:57','','0000-00-00 00:00:00',0),(6378,0,0,'H','2526','','',6378,0,0,'2025-12-05',5230,2352,0,0,2295,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6211,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 10:49:08','','0000-00-00 00:00:00',0),(6379,0,0,'H','2526','','',6379,0,0,'2025-12-05',5231,3661,0,0,3561,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6212,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 10:52:10','','0000-00-00 00:00:00',0),(6380,0,0,'H','2526','','',6380,0,0,'2025-12-05',5232,3662,0,0,3562,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6213,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 10:54:54','','0000-00-00 00:00:00',0),(6381,0,0,'H','2526','','',6381,0,0,'2025-12-05',5233,3663,0,0,3563,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6214,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 11:02:18','','0000-00-00 00:00:00',0),(6382,0,0,'H','2526','','',6382,0,0,'2025-12-05',5235,3665,0,0,3565,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6215,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 11:05:17','','0000-00-00 00:00:00',0),(6383,0,0,'H','2526','','',6383,0,0,'2025-12-05',5234,3664,0,0,3564,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6216,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 11:05:27','','0000-00-00 00:00:00',0),(6384,0,0,'H','2526','','',6384,0,0,'2025-12-05',5236,3666,0,0,3566,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6217,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 11:07:39','','0000-00-00 00:00:00',0),(6385,0,0,'H','2526','','',6385,0,0,'2025-12-05',5237,3667,0,0,3567,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6218,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 11:08:35','','0000-00-00 00:00:00',0),(6386,0,0,'H','2526','','',6386,0,0,'2025-12-05',5238,3668,0,0,3568,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6219,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 11:09:29','','0000-00-00 00:00:00',0),(6387,0,0,'H','2526','','',6387,0,0,'2025-12-05',5239,3669,0,0,3569,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6220,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 11:09:47','','0000-00-00 00:00:00',0),(6388,0,0,'H','2526','','',6388,0,0,'2025-12-05',5225,3657,0,0,3557,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6221,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 11:10:22','','0000-00-00 00:00:00',0),(6389,0,0,'H','2526','','',6389,0,0,'2025-12-05',5240,1619,0,0,1575,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6222,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 11:11:07','','0000-00-00 00:00:00',0),(6390,0,0,'H','2526','','',6390,0,0,'2025-12-05',5241,3670,0,0,3570,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6223,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 11:11:59','','0000-00-00 00:00:00',0),(6391,0,0,'H','2526','','',6391,0,0,'2025-12-05',5221,3655,0,0,3555,'B',4500.00,0.00,'7','BOB','','02175','','0000-00-00','SCAN','',6225,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 11:18:21','','0000-00-00 00:00:00',0),(6392,0,0,'H','2526','','',6392,0,0,'2025-12-05',5243,3522,0,0,3571,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6226,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-05 11:20:38','','0000-00-00 00:00:00',0),(6393,0,0,'H','2526','','',6393,0,0,'2025-12-05',5244,3671,0,0,3572,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6228,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 11:27:17','','0000-00-00 00:00:00',0),(6394,0,0,'H','2526','','',6394,0,0,'2025-12-05',5242,3411,0,0,3319,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6229,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 11:28:09','','0000-00-00 00:00:00',0),(6395,0,0,'H','2526','','',6395,0,0,'2025-12-05',5225,3657,0,0,3557,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6230,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 11:32:49','','0000-00-00 00:00:00',0),(6396,0,0,'H','2526','','',6396,0,0,'2025-12-05',5226,3658,0,0,3558,'B',4000.00,0.00,'7','SBI','','94224','','0000-00-00','SCAN','',6231,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 11:35:06','','0000-00-00 00:00:00',0),(6397,0,0,'H','2526','','',6397,0,0,'2025-12-05',5229,3660,0,0,3560,'B',4500.00,0.00,'7','BOB','','01912','','0000-00-00','SCAN','',6232,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 11:39:48','','0000-00-00 00:00:00',0),(6398,0,0,'H','2526','','',6398,0,0,'2025-12-05',5245,3672,0,0,3573,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6233,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 11:42:03','','0000-00-00 00:00:00',0),(6399,0,0,'H','2526','','',6399,0,0,'2025-12-05',5246,3673,0,0,3574,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6234,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-05 11:44:46','','0000-00-00 00:00:00',0),(6400,0,0,'H','2526','','',6400,0,0,'2025-12-05',5247,3674,0,0,3575,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6235,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-05 11:44:56','','0000-00-00 00:00:00',0),(6401,0,0,'H','2526','','',6401,0,0,'2025-12-05',5248,3675,0,0,3576,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6236,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 11:45:14','','0000-00-00 00:00:00',0),(6402,0,0,'H','2526','','',6402,0,0,'2025-12-05',5249,177,0,0,164,'B',500.00,0.00,'7','HDFC','','38742','','0000-00-00','SCAN','',6237,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 11:47:05','','0000-00-00 00:00:00',0),(6403,0,0,'H','2526','','P',6403,0,0,'2025-12-05',4968,3501,0,236,0,'A',5800.00,0.00,'CSH','','','','','0000-00-00','','',6238,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-05 11:48:41','vishal','2025-12-05 11:49:00',0),(6404,0,0,'H','2526','','',6404,0,0,'2025-12-05',5250,1551,0,0,1510,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6239,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 11:50:15','','0000-00-00 00:00:00',0),(6405,0,0,'H','2526','','P',6405,0,0,'2025-12-05',4778,3401,0,226,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',6240,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-05 11:52:30','vishal','2025-12-05 11:53:00',0),(6406,0,0,'H','2526','','',6406,0,0,'2025-12-05',5251,3065,0,0,2987,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6241,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 11:53:03','','0000-00-00 00:00:00',0),(6407,0,0,'H','2526','','',6407,0,0,'2025-12-05',5252,3676,0,0,3577,'B',750.00,0.00,'7','axis bank','','31120','','0000-00-00','scan','',6242,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 11:54:12','','0000-00-00 00:00:00',0),(6408,0,0,'H','2526','','',6408,0,0,'2025-12-05',5232,3662,0,0,3562,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',6244,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 11:55:18','','0000-00-00 00:00:00',0),(6409,0,0,'H','2526','','',6409,0,0,'2025-12-05',5241,3670,0,0,3570,'D',-750.00,0.00,'CSH','','','','','2025-12-05','','',6243,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 11:55:24','','0000-00-00 00:00:00',0),(6410,0,0,'H','2526','','',6410,0,0,'2025-12-05',5241,3670,0,0,3570,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6245,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 11:55:56','','0000-00-00 00:00:00',0),(6411,0,0,'H','2526','','',6411,0,0,'2025-12-05',5245,3672,0,0,3573,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6246,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 12:00:43','','0000-00-00 00:00:00',0),(6412,0,0,'H','2526','','',6412,0,0,'2025-12-05',5253,3677,0,0,3578,'B',700.00,0.00,'7','HDFC','','02129','','0000-00-00','SCAN','',6247,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 12:07:21','','0000-00-00 00:00:00',0),(6413,0,0,'H','2526','','',6413,0,0,'2025-12-05',5235,3665,0,0,3565,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',6248,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 12:15:22','','0000-00-00 00:00:00',0),(6414,0,0,'H','2526','','P',6414,0,0,'2025-12-05',4977,3510,0,238,0,'A',10000.00,0.00,'CRD','other bank','','7081','','0000-00-00','','',6562,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-05 12:17:32','riya','2025-12-08 12:52:58',0),(6415,0,0,'H','2526','','',6415,0,0,'2025-12-05',5255,3678,0,0,3579,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6249,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 12:18:41','','0000-00-00 00:00:00',0),(6416,0,0,'H','2526','','',6416,0,0,'2025-12-05',5256,3679,0,0,3580,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6250,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 12:23:39','','0000-00-00 00:00:00',0),(6417,0,0,'H','2526','','',6417,0,0,'2025-12-05',5239,3669,0,0,3569,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',6251,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 12:26:34','','0000-00-00 00:00:00',0),(6418,0,0,'H','2526','','',6418,0,0,'2025-12-05',5257,3680,0,0,3581,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6252,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 12:26:50','','0000-00-00 00:00:00',0),(6419,0,0,'H','2526','','',6419,0,0,'2025-12-05',5255,3678,0,0,3579,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6253,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 12:34:13','','0000-00-00 00:00:00',0),(6420,0,0,'H','2526','','',6420,0,0,'2025-12-05',5258,3681,0,0,3582,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6254,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 12:37:53','','0000-00-00 00:00:00',0),(6421,0,0,'H','2526','','',6421,0,0,'2025-12-05',5259,3682,0,0,3583,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6256,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 12:43:30','','0000-00-00 00:00:00',0),(6422,0,0,'H','2526','','',6422,0,0,'2025-12-05',5260,3683,0,0,3584,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6257,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 12:47:11','','0000-00-00 00:00:00',0),(6423,0,0,'H','2526','','',6423,0,0,'2025-12-05',5263,3685,0,0,3586,'B',750.00,0.00,'7','SBI','','47584','','0000-00-00','SCAN','',6258,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 12:52:13','','0000-00-00 00:00:00',0),(6424,0,0,'H','2526','','',6424,0,0,'2025-12-05',5262,3316,0,0,3230,'B',300.00,0.00,'7','SBI','','67909','','0000-00-00','SCAN','',6259,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-05 12:52:20','','0000-00-00 00:00:00',0),(6425,0,0,'H','2526','','',6425,0,0,'2025-12-05',5261,3684,0,0,3585,'B',750.00,0.00,'7','HDFC BANK','','45584','','0000-00-00','scan','',6260,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 12:56:46','','0000-00-00 00:00:00',0),(6426,0,0,'H','2526','','',6426,0,0,'2025-12-05',5256,3679,0,0,3580,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',6262,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 13:01:45','','0000-00-00 00:00:00',0),(6427,0,0,'H','2526','','',6427,0,0,'2025-12-05',5263,3685,0,0,3586,'B',300.00,0.00,'7','SBI BANK','','98460','','0000-00-00','scan','',6263,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 13:05:03','','0000-00-00 00:00:00',0),(6428,0,0,'H','2526','','',6428,0,0,'2025-12-05',5264,3640,0,0,3538,'B',3000.00,0.00,'2','sbi','74423','74423','','0000-00-00','CARD','',6264,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 13:10:41','','0000-00-00 00:00:00',0),(6429,0,0,'H','2526','','P',6429,0,0,'2025-12-05',5223,3627,0,248,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',6324,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-05 13:12:05','vishal','2025-12-05 19:03:03',0),(6430,0,0,'H','2526','','',6430,0,0,'2025-12-05',5259,3682,0,0,3583,'D',-800.00,0.00,'CSH','','','','','2025-12-05','','',6265,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 13:13:23','','0000-00-00 00:00:00',0),(6431,0,0,'H','2526','','',6431,0,0,'2025-12-05',5259,3682,0,0,3583,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',6266,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 13:14:09','','0000-00-00 00:00:00',0),(6432,0,0,'H','2526','','',6432,0,0,'2025-12-05',5260,3683,0,0,3584,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',6267,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 13:30:12','','0000-00-00 00:00:00',0),(6433,0,0,'H','2526','','',6433,0,0,'2025-12-05',5266,3687,0,0,3588,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6268,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 13:38:27','','0000-00-00 00:00:00',0),(6434,0,0,'H','2526','','',6434,0,0,'2025-12-05',5266,3687,0,0,3588,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6269,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 14:03:26','','0000-00-00 00:00:00',0),(6435,0,0,'H','2526','','P',6435,0,0,'2025-12-05',4781,3404,0,228,0,'A',10000.00,0.00,'7','other bank','','7980','','0000-00-00','','',6270,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-05 14:39:16','vishal','2025-12-05 14:40:20',0),(6436,0,0,'H','2526','','P',6436,0,0,'2025-12-05',4781,3404,0,228,0,'A',2050.00,0.00,'CSH','','','','','0000-00-00','','',6270,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-05 14:39:41','vishal','2025-12-05 14:40:20',0),(6437,0,0,'H','2526','','P',6437,0,0,'2025-12-05',4863,3444,0,233,0,'A',22500.00,0.00,'CSH','','','','','0000-00-00','','',6271,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-05 15:13:29','vishal','2025-12-05 15:13:49',0),(6438,0,0,'H','2526','','',6438,0,0,'2025-12-05',5268,3688,0,0,3589,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6272,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 16:31:25','','0000-00-00 00:00:00',0),(6439,0,0,'H','2526','','',6439,0,0,'2025-12-05',5269,365,0,0,349,'B',500.00,0.00,'7','SBI BANK','','23655','','0000-00-00','scan ','',6273,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-05 16:36:35','','0000-00-00 00:00:00',0),(6440,0,0,'H','2526','','',6440,0,0,'2025-12-05',5273,1169,0,0,1129,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6274,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 16:54:40','','0000-00-00 00:00:00',0),(6441,0,0,'H','2526','','',6441,0,0,'2025-12-05',5274,3447,0,0,3590,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6275,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 16:57:51','','0000-00-00 00:00:00',0),(6442,0,0,'H','2526','','',6442,0,0,'2025-12-05',5274,3447,0,0,3590,'D',-500.00,0.00,'CSH','','','','','2025-12-05','','',6276,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 16:59:31','','0000-00-00 00:00:00',0),(6443,0,0,'H','2526','','',6443,0,0,'2025-12-05',5274,3447,0,0,3590,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6277,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 17:00:27','','0000-00-00 00:00:00',0),(6444,0,0,'H','2526','','',6444,0,0,'2025-12-05',5275,3689,0,0,3591,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6278,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 17:03:50','','0000-00-00 00:00:00',0),(6445,0,0,'H','2526','','P',6445,0,0,'2025-12-05',5163,3630,0,245,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',7222,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-05 17:05:21','vishal','2025-12-12 19:36:58',0),(6446,0,0,'H','2526','','',6446,0,0,'2025-12-05',5276,3207,0,0,3121,'B',400.00,0.00,'CRD','ICICI','75431','75431','','0000-00-00','CARD','',6279,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 17:10:20','','0000-00-00 00:00:00',0),(6447,0,0,'H','2526','','',6447,0,0,'2025-12-05',5278,3273,0,0,3187,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',6280,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 17:13:52','','0000-00-00 00:00:00',0),(6448,0,0,'H','2526','','',6448,0,0,'2025-12-05',5279,3364,0,0,3275,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6281,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 17:17:20','','0000-00-00 00:00:00',0),(6449,0,0,'H','2526','','',6449,0,0,'2025-12-05',5281,3520,0,0,3423,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6282,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 17:18:30','','0000-00-00 00:00:00',0),(6450,0,0,'H','2526','','',6450,0,0,'2025-12-05',5283,1598,0,0,1555,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6283,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 17:19:39','','0000-00-00 00:00:00',0),(6451,0,0,'H','2526','','',6451,0,0,'2025-12-05',5268,3688,0,0,3589,'B',4000.00,0.00,'7','BOB','','68246','','0000-00-00','SCAN','',6284,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 17:22:24','','0000-00-00 00:00:00',0),(6452,0,0,'H','2526','','',6452,0,0,'2025-12-05',5284,3690,0,0,3592,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6285,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 17:29:13','','0000-00-00 00:00:00',0),(6453,0,0,'H','2526','','',6453,0,0,'2025-12-05',5285,2592,0,0,2535,'B',500.00,0.00,'7','CENARA BANK','','15106','','0000-00-00','scan','',6286,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-05 17:31:41','','0000-00-00 00:00:00',0),(6454,0,0,'H','2526','','',6454,0,0,'2025-12-05',5286,3691,0,0,3593,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6287,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 17:32:44','','0000-00-00 00:00:00',0),(6455,0,0,'H','2526','','',6455,0,0,'2025-12-05',5287,3692,0,0,3594,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6288,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 17:35:11','','0000-00-00 00:00:00',0),(6456,0,0,'H','2526','','',6456,0,0,'2025-12-05',5288,552,0,0,526,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6289,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 17:38:29','','0000-00-00 00:00:00',0),(6457,0,0,'H','2526','','',6457,0,0,'2025-12-05',5289,3693,0,0,3595,'B',800.00,0.00,'7','SBI','','64769','','0000-00-00','SCAN','',6290,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-05 17:40:39','','0000-00-00 00:00:00',0),(6458,0,0,'H','2526','','',6458,0,0,'2025-12-05',5292,2560,0,0,2503,'B',300.00,0.00,'7','sbi','','96259','','0000-00-00','scan                          ','',6291,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 17:46:22','','0000-00-00 00:00:00',0),(6459,0,0,'H','2526','','',6459,0,0,'2025-12-05',5294,2958,0,0,2882,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6292,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 17:54:21','','0000-00-00 00:00:00',0),(6460,0,0,'H','2526','','',6460,0,0,'2025-12-05',5290,3341,0,0,3258,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6293,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 17:57:04','','0000-00-00 00:00:00',0),(6461,0,0,'H','2526','','',6461,0,0,'2025-12-05',5295,3694,0,0,3596,'B',800.00,0.00,'7','RAJKOT NAGRIK','','26928','','0000-00-00','SCAN','',6294,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 17:58:07','','0000-00-00 00:00:00',0),(6462,0,0,'H','2526','','',6462,0,0,'2025-12-05',5296,3695,0,0,3597,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6295,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 18:04:03','','0000-00-00 00:00:00',0),(6463,0,0,'H','2526','','',6463,0,0,'2025-12-05',5297,2577,0,0,2519,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6296,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-05 18:04:20','','0000-00-00 00:00:00',0),(6464,0,0,'H','2526','','',6464,0,0,'2025-12-05',5300,3697,0,0,3599,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6297,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 18:12:12','','0000-00-00 00:00:00',0),(6465,0,0,'H','2526','','',6465,0,0,'2025-12-05',5299,1607,0,0,1564,'B',300.00,0.00,'7',' YES BANK','','23194','','0000-00-00','SCAN','',6298,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-05 18:12:44','','0000-00-00 00:00:00',0),(6466,0,0,'H','2526','','',6466,0,0,'2025-12-05',5303,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6299,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 18:16:18','','0000-00-00 00:00:00',0),(6467,0,0,'H','2526','','',6467,0,0,'2025-12-05',5302,2808,0,0,2738,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6300,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 18:16:31','','0000-00-00 00:00:00',0),(6468,0,0,'H','2526','','',6468,0,0,'2025-12-05',5304,3067,0,0,2989,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6301,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 18:17:02','','0000-00-00 00:00:00',0),(6469,0,0,'H','2526','','',6469,0,0,'2025-12-05',5306,1582,0,0,1539,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6302,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 18:19:03','','0000-00-00 00:00:00',0),(6470,0,0,'H','2526','','',6470,0,0,'2025-12-05',5305,3699,0,0,3600,'B',700.00,0.00,'7','YASH BANK','','92565','','0000-00-00','SCAN','',6303,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 18:21:18','','0000-00-00 00:00:00',0),(6471,0,0,'H','2526','','',6471,0,0,'2025-12-05',5274,3447,0,0,3590,'D',-300.00,0.00,'CSH','','','','','2025-12-05','','',6304,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 18:22:25','','0000-00-00 00:00:00',0),(6472,0,0,'H','2526','','',6472,0,0,'2025-12-05',5298,3696,0,0,3598,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6305,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 18:23:58','','0000-00-00 00:00:00',0),(6473,0,0,'H','2526','','',6473,0,0,'2025-12-05',5280,2996,0,0,2919,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6306,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 18:26:59','','0000-00-00 00:00:00',0),(6474,0,0,'H','2526','','',6474,0,0,'2025-12-05',5309,3702,0,0,3602,'B',400.00,0.00,'7','KOTAK BANK','','88197','','0000-00-00','scan','',6307,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 18:27:42','','0000-00-00 00:00:00',0),(6475,0,0,'H','2526','','',6475,0,0,'2025-12-05',5308,3701,0,0,3601,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6308,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 18:27:50','','0000-00-00 00:00:00',0),(6476,0,0,'H','2526','','P',6476,0,0,'2025-12-05',5307,3700,0,250,0,'A',15000.00,0.00,'7','SBI BANK','','9561','','0000-00-00','','',7019,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-05 18:29:09','riya','2025-12-11 15:06:15',0),(6477,0,0,'H','2526','','',6477,0,0,'2025-12-05',5310,3703,0,0,3603,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6309,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 18:29:17','','0000-00-00 00:00:00',0),(6478,0,0,'H','2526','','',6478,0,0,'2025-12-05',5305,3699,0,0,3600,'B',1000.00,0.00,'7','YASH BANK','','07735','','0000-00-00','SCAN','',6310,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 18:30:55','','0000-00-00 00:00:00',0),(6479,0,0,'H','2526','','',6479,0,0,'2025-12-05',5311,3704,0,0,3604,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6311,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 18:31:07','','0000-00-00 00:00:00',0),(6480,0,0,'H','2526','','',6480,0,0,'2025-12-05',5313,188,0,0,175,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6313,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 18:36:55','','0000-00-00 00:00:00',0),(6481,0,0,'H','2526','','',6481,0,0,'2025-12-05',5314,3705,0,0,3605,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6315,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 18:39:05','','0000-00-00 00:00:00',0),(6482,0,0,'H','2526','','',6482,0,0,'2025-12-05',5315,2016,0,0,1968,'B',300.00,0.00,'7','canara bank','','90017','','0000-00-00','scan  ','',6316,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 18:41:40','','0000-00-00 00:00:00',0),(6483,0,0,'H','2526','','',6483,0,0,'2025-12-05',5317,3707,0,0,3606,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6317,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 18:47:40','','0000-00-00 00:00:00',0),(6484,0,0,'H','2526','','',6484,0,0,'2025-12-05',5290,3341,0,0,3258,'D',-300.00,0.00,'CSH','','','','','2025-12-05','','',6318,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 18:50:41','','0000-00-00 00:00:00',0),(6485,0,0,'H','2526','','',6485,0,0,'2025-12-05',5318,3708,0,0,3607,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6319,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 18:51:21','','0000-00-00 00:00:00',0),(6486,0,0,'H','2526','','',6486,0,0,'2025-12-05',5319,1463,0,0,1422,'B',400.00,0.00,'7','HDFC BANK','','29696','','0000-00-00','scan','',6320,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 18:52:13','','0000-00-00 00:00:00',0),(6487,0,0,'H','2526','','',6487,0,0,'2025-12-05',5320,3709,0,0,3608,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6321,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 18:53:14','','0000-00-00 00:00:00',0),(6488,0,0,'H','2526','','',6488,0,0,'2025-12-05',5285,2592,0,0,2535,'D',-500.00,0.00,'7','CANARA BANK','','15106','','2025-12-05','SCAN','',6312,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 18:53:56','','0000-00-00 00:00:00',0),(6489,0,0,'H','2526','','',6489,0,0,'2025-12-05',5285,2592,0,0,2535,'B',300.00,0.00,'7','CANARA BANK','','15106','','0000-00-00','SCAN','',6322,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 18:56:13','','0000-00-00 00:00:00',0),(6490,0,0,'H','2526','','',6490,0,0,'2025-12-05',5295,3694,0,0,3596,'B',4000.00,0.00,'7','RAJKOT NAGRIK','','44183','','0000-00-00','SCAN','',6323,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 18:58:55','','0000-00-00 00:00:00',0),(6491,0,0,'H','2526','','',6491,0,0,'2025-12-05',5323,3711,0,0,3610,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6325,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 19:05:14','','0000-00-00 00:00:00',0),(6492,0,0,'H','2526','','',6492,0,0,'2025-12-05',5324,2167,0,0,2115,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6326,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 19:06:35','','0000-00-00 00:00:00',0),(6493,0,0,'H','2526','','',6493,0,0,'2025-12-05',5326,3713,0,0,3612,'B',400.00,0.00,'7','KOTAK BANK','','45864','','0000-00-00','scan','',6327,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 19:14:34','','0000-00-00 00:00:00',0),(6494,0,0,'H','2526','','',6494,0,0,'2025-12-05',5322,2750,0,0,2681,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6328,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 19:15:24','','0000-00-00 00:00:00',0),(6495,0,0,'H','2526','','',6495,0,0,'2025-12-05',5328,3151,0,0,3613,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6329,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 19:19:42','','0000-00-00 00:00:00',0),(6496,0,0,'H','2526','','',6496,0,0,'2025-12-05',5329,3714,0,0,3614,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6330,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 19:22:08','','0000-00-00 00:00:00',0),(6497,0,0,'H','2526','','',6497,0,0,'2025-12-05',5330,3715,0,0,3615,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6331,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 19:23:16','','0000-00-00 00:00:00',0),(6498,0,0,'H','2526','','',6498,0,0,'2025-12-05',5325,3712,0,0,3611,'B',700.00,0.00,'7','HDFC BANK','','75246','','0000-00-00','scan','',6332,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 19:27:16','','0000-00-00 00:00:00',0),(6499,0,0,'H','2526','','',6499,0,0,'2025-12-05',5325,3712,0,0,3611,'B',700.00,0.00,'7','HDFC BANK','','46959','','0000-00-00','scan','',6333,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 19:27:18','','0000-00-00 00:00:00',0),(6500,0,0,'H','2526','','',6500,0,0,'2025-12-05',5331,3716,0,0,3616,'B',700.00,0.00,'7','KOTAK','','48063','','0000-00-00','SCAN','',6334,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 19:34:54','','0000-00-00 00:00:00',0),(6501,0,0,'H','2526','','',6501,0,0,'2025-12-05',5217,3394,0,0,3305,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6335,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 19:36:51','','0000-00-00 00:00:00',0),(6502,0,0,'H','2526','','',6502,0,0,'2025-12-05',5332,3717,0,0,3617,'B',700.00,0.00,'7','KOTAK','','82787','','0000-00-00','SCAN','',6336,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 19:42:20','','0000-00-00 00:00:00',0),(6503,0,0,'H','2526','','',6503,0,0,'2025-12-05',5329,3714,0,0,3614,'D',-700.00,0.00,'CSH','','','','','2025-12-05','','',6337,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 19:46:22','','0000-00-00 00:00:00',0),(6504,0,0,'H','2526','','',6504,0,0,'2025-12-05',5329,3714,0,0,3614,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6338,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-05 19:47:22','','0000-00-00 00:00:00',0),(6505,0,0,'H','2526','','',6505,0,0,'2025-12-05',5333,792,0,0,761,'B',400.00,0.00,'7','IDFC BANK','','40066','','0000-00-00','scan','',6339,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 19:52:54','','0000-00-00 00:00:00',0),(6506,0,0,'H','2526','','P',6506,0,0,'2025-12-05',5120,3601,0,243,0,'A',40000.00,0.00,'7','hdfc bank','','3318','','0000-00-00','','',8441,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-05 19:56:51','vishal','2025-12-22 21:57:17',0),(6507,0,0,'H','2526','','',6507,0,0,'2025-12-05',5334,3399,0,0,3310,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6340,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 20:04:01','','0000-00-00 00:00:00',0),(6508,0,0,'H','2526','','',6508,0,0,'2025-12-05',5335,3337,0,0,3254,'B',2500.00,0.00,'7','kotak','','76605','','0000-00-00','scan  ','',6341,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-05 20:05:13','','0000-00-00 00:00:00',0),(6509,0,0,'H','2526','','P',6509,0,0,'2025-12-05',4694,3350,0,222,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',7319,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-05 20:24:58','riya','2025-12-13 14:24:24',0),(6510,0,0,'H','2526','','P',6510,0,0,'2025-12-05',5316,3706,0,251,0,'A',15000.00,0.00,'7','KOTAK BANK','','6077','','0000-00-00','','',6883,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-05 20:48:11','riya','2025-12-10 13:41:36',0),(6511,0,0,'H','2526','','',6511,0,0,'2025-12-05',5336,3718,0,0,3618,'B',900.00,0.00,'7','INDUSLAND BANK','','14886','','0000-00-00','scan','',6342,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-05 20:52:29','','0000-00-00 00:00:00',0),(6512,0,0,'H','2526','','P',6512,0,0,'2025-12-05',5337,3719,0,252,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',6575,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-05 20:58:28','riya','2025-12-08 13:54:59',0),(6513,0,0,'H','2526','','P',6513,0,0,'2025-12-05',4017,2937,0,187,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-05 21:00:39','riya','2025-12-05 21:00:39',0),(6514,0,0,'H','2526','','P',6514,0,0,'2025-12-05',5338,3720,0,253,0,'A',6000.00,0.00,'7','OTHER BANK','','84157','','0000-00-00','','',6659,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-05 21:09:41','vishal','2025-12-08 21:18:53',0),(6515,0,0,'H','2526','','P',6515,0,0,'2025-12-05',5301,3698,0,249,0,'A',7000.00,0.00,'7','RNSB','','53395','','0000-00-00','','',6423,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-05 21:23:55','riya','2025-12-06 13:37:39',0),(6516,0,0,'H','2526','','',6516,0,0,'2025-12-06',5339,3036,0,0,2957,'B',1400.00,0.00,'CSH','','','','','0000-00-00','','',6343,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 08:47:29','','0000-00-00 00:00:00',0),(6517,0,0,'H','2526','','',6517,0,0,'2025-12-06',5340,854,0,0,823,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6345,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 10:01:20','','0000-00-00 00:00:00',0),(6518,0,0,'H','2526','','',6518,0,0,'2025-12-06',5342,3722,0,0,3619,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6346,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-06 10:02:36','','0000-00-00 00:00:00',0),(6519,0,0,'H','2526','','',6519,0,0,'2025-12-06',5344,1834,0,0,1789,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6347,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 10:07:51','','0000-00-00 00:00:00',0),(6520,0,0,'H','2526','','',6520,0,0,'2025-12-06',5343,3723,0,0,3620,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6348,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-06 10:08:04','','0000-00-00 00:00:00',0),(6521,0,0,'H','2526','','',6521,0,0,'2025-12-06',5345,3724,0,0,3621,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6349,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 10:11:49','','0000-00-00 00:00:00',0),(6522,0,0,'H','2526','','',6522,0,0,'2025-12-06',5346,476,0,0,450,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6350,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 10:19:16','','0000-00-00 00:00:00',0),(6523,0,0,'H','2526','','',6523,0,0,'2025-12-06',5347,2922,0,0,2850,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6351,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-06 10:26:07','','0000-00-00 00:00:00',0),(6524,0,0,'H','2526','','',6524,0,0,'2025-12-06',5348,3177,0,0,3091,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6352,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 10:28:34','','0000-00-00 00:00:00',0),(6525,0,0,'H','2526','','',6525,0,0,'2025-12-06',5349,3725,0,0,3622,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6353,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 10:30:53','','0000-00-00 00:00:00',0),(6526,0,0,'H','2526','','',6526,0,0,'2025-12-06',5350,2044,0,0,1993,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6354,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 10:33:53','','0000-00-00 00:00:00',0),(6527,0,0,'H','2526','','',6527,0,0,'2025-12-06',5351,2338,0,0,2281,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6356,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 10:34:44','','0000-00-00 00:00:00',0),(6528,0,0,'H','2526','','',6528,0,0,'2025-12-06',5352,3726,0,0,3623,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6358,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 10:35:50','','0000-00-00 00:00:00',0),(6529,0,0,'H','2526','','',6529,0,0,'2025-12-06',5354,3727,0,0,3624,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6359,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 10:37:40','','0000-00-00 00:00:00',0),(6530,0,0,'H','2526','','',6530,0,0,'2025-12-06',5353,3252,0,0,3166,'B',500.00,0.00,'7','hdfc','','94931','','0000-00-00','scan','',6360,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 10:39:13','','0000-00-00 00:00:00',0),(6531,0,0,'H','2526','','',6531,0,0,'2025-12-06',5355,3728,0,0,3625,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6361,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 10:43:31','','0000-00-00 00:00:00',0),(6532,0,0,'H','2526','','',6532,0,0,'2025-12-06',5356,2041,0,0,1990,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6362,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 10:47:22','','0000-00-00 00:00:00',0),(6533,0,0,'H','2526','','',6533,0,0,'2025-12-06',5357,3729,0,0,3626,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6363,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 10:50:24','','0000-00-00 00:00:00',0),(6534,0,0,'H','2526','','',6534,0,0,'2025-12-06',5358,3730,0,0,3627,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6364,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 10:50:43','','0000-00-00 00:00:00',0),(6535,0,0,'H','2526','','',6535,0,0,'2025-12-06',5359,3731,0,0,3628,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6365,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 10:54:06','','0000-00-00 00:00:00',0),(6536,0,0,'H','2526','','',6536,0,0,'2025-12-06',5360,2047,0,0,1996,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6366,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 10:59:46','','0000-00-00 00:00:00',0),(6537,0,0,'H','2526','','',6537,0,0,'2025-12-06',5361,3732,0,0,3629,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6367,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 11:03:09','','0000-00-00 00:00:00',0),(6538,0,0,'H','2526','','',6538,0,0,'2025-12-06',5362,574,0,0,548,'B',400.00,0.00,'7','hdfc','','73129','','0000-00-00','scan                          ','',6368,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-06 11:05:30','','0000-00-00 00:00:00',0),(6539,0,0,'H','2526','','',6539,0,0,'2025-12-06',5363,3733,0,0,3630,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6369,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 11:12:40','','0000-00-00 00:00:00',0),(6540,0,0,'H','2526','','',6540,0,0,'2025-12-06',5364,3411,0,0,3319,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6370,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-06 11:20:57','','0000-00-00 00:00:00',0),(6541,0,0,'H','2526','','',6541,0,0,'2025-12-06',5365,1222,0,0,1183,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6371,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 11:24:35','','0000-00-00 00:00:00',0),(6542,0,0,'H','2526','','',6542,0,0,'2025-12-06',5366,3247,0,0,3161,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6372,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 11:26:24','','0000-00-00 00:00:00',0),(6543,0,0,'H','2526','','P',6543,0,0,'2025-12-06',5113,3598,0,242,0,'A',12000.00,0.00,'CSH','','','','','0000-00-00','','',6442,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-06 11:26:55','riya','2025-12-06 19:32:58',0),(6544,0,0,'H','2526','','',6544,0,0,'2025-12-06',5367,1645,0,0,1600,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6373,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 11:27:36','','0000-00-00 00:00:00',0),(6545,0,0,'H','2526','','',6545,0,0,'2025-12-06',5354,3727,0,0,3624,'B',4500.00,0.00,'7','sbi','','47754','','0000-00-00','scan','',6374,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 11:29:25','','0000-00-00 00:00:00',0),(6546,0,0,'H','2526','','',6546,0,0,'2025-12-06',5368,1561,0,0,1520,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6375,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 11:33:40','','0000-00-00 00:00:00',0),(6547,0,0,'H','2526','','P',6547,0,0,'2025-12-06',5341,3721,0,254,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',6453,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-06 11:35:04','vishal','2025-12-07 19:45:14',0),(6548,0,0,'H','2526','','',6548,0,0,'2025-12-06',5369,1574,0,0,1534,'B',500.00,0.00,'7','sbi','','11578','','0000-00-00','scan','',6376,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 11:36:10','','0000-00-00 00:00:00',0),(6549,0,0,'H','2526','','',6549,0,0,'2025-12-06',5370,3524,0,0,3427,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6377,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 11:36:51','','0000-00-00 00:00:00',0),(6550,0,0,'H','2526','','',6550,0,0,'2025-12-06',5342,3722,0,0,3619,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',6378,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 11:37:42','','0000-00-00 00:00:00',0),(6551,0,0,'H','2526','','',6551,0,0,'2025-12-06',5371,3734,0,0,3631,'B',800.00,0.00,'7','icici','','20003','','0000-00-00','scan ','',6379,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-06 11:40:32','','0000-00-00 00:00:00',0),(6552,0,0,'H','2526','','',6552,0,0,'2025-12-06',5372,3353,0,0,3265,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6380,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-06 11:41:23','','0000-00-00 00:00:00',0),(6553,0,0,'H','2526','','',6553,0,0,'2025-12-06',5373,2597,0,0,2540,'B',500.00,0.00,'7','airtel bank','','17198','','0000-00-00','scan','',6381,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 11:43:11','','0000-00-00 00:00:00',0),(6554,0,0,'H','2526','','',6554,0,0,'2025-12-06',5345,3724,0,0,3621,'B',700.00,0.00,'7','SBI BANK','','60050','','0000-00-00','scan','',6382,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 11:45:02','','0000-00-00 00:00:00',0),(6555,0,0,'H','2526','','',6555,0,0,'2025-12-06',5374,3735,0,0,3632,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6384,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-06 11:47:02','','0000-00-00 00:00:00',0),(6556,0,0,'H','2526','','',6556,0,0,'2025-12-06',5361,3732,0,0,3629,'D',-750.00,0.00,'CSH','','','','','2025-12-06','','',6383,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 11:47:10','','0000-00-00 00:00:00',0),(6557,0,0,'H','2526','','',6557,0,0,'2025-12-06',5375,2501,0,0,2444,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6385,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 11:48:51','','0000-00-00 00:00:00',0),(6558,0,0,'H','2526','','',6558,0,0,'2025-12-06',5376,3736,0,0,3633,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6386,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 11:50:26','','0000-00-00 00:00:00',0),(6559,0,0,'H','2526','','',6559,0,0,'2025-12-06',5377,2964,0,0,2887,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6387,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-06 11:51:09','','0000-00-00 00:00:00',0),(6560,0,0,'H','2526','','',6560,0,0,'2025-12-06',5363,3733,0,0,3630,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',6388,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 11:57:03','','0000-00-00 00:00:00',0),(6561,0,0,'H','2526','','',6561,0,0,'2025-12-06',5378,3737,0,0,3634,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6389,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 11:59:29','','0000-00-00 00:00:00',0),(6562,0,0,'H','2526','','',6562,0,0,'2025-12-06',5358,3730,0,0,3627,'D',-700.00,0.00,'CSH','','','','','2025-12-06','','',6390,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 12:00:32','','0000-00-00 00:00:00',0),(6563,0,0,'H','2526','','',6563,0,0,'2025-12-06',5379,3390,0,0,3301,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6391,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 12:01:15','','0000-00-00 00:00:00',0),(6564,0,0,'H','2526','','',6564,0,0,'2025-12-06',5380,3738,0,0,3635,'B',900.00,0.00,'7','AXIS BANK','','56565','','0000-00-00','SCAN','',6393,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-06 12:20:04','','0000-00-00 00:00:00',0),(6565,0,0,'H','2526','','',6565,0,0,'2025-12-06',5382,1053,0,0,1019,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6394,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-06 12:22:24','','0000-00-00 00:00:00',0),(6566,0,0,'H','2526','','',6566,0,0,'2025-12-06',5381,3739,0,0,3636,'B',900.00,0.00,'7','induslnd bank','','95803','','0000-00-00','scan','',6395,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 12:23:27','','0000-00-00 00:00:00',0),(6567,0,0,'H','2526','','P',6567,0,0,'2025-12-06',5148,3621,0,244,0,'A',7900.00,0.00,'CSH','','','','','0000-00-00','','',6396,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-06 12:23:46','riya','2025-12-06 12:23:59',0),(6568,0,0,'H','2526','','',6568,0,0,'2025-12-06',5383,3740,0,0,3637,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6397,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-06 12:24:11','','0000-00-00 00:00:00',0),(6569,0,0,'H','2526','','',6569,0,0,'2025-12-06',5384,1297,0,0,1256,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6398,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 12:24:18','','0000-00-00 00:00:00',0),(6570,0,0,'H','2526','','',6570,0,0,'2025-12-06',5385,2173,0,0,2122,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6399,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 12:24:36','','0000-00-00 00:00:00',0),(6571,0,0,'H','2526','','',6571,0,0,'2025-12-06',5386,3381,0,0,3292,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6400,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-06 12:26:09','','0000-00-00 00:00:00',0),(6572,0,0,'H','2526','','',6572,0,0,'2025-12-06',5387,3741,0,0,3638,'B',400.00,0.00,'7','HDFC BANK','','71229','','0000-00-00','scan','',6401,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 12:26:59','','0000-00-00 00:00:00',0),(6573,0,0,'H','2526','','',6573,0,0,'2025-12-06',5388,2808,0,0,2738,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6402,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-06 12:27:36','','0000-00-00 00:00:00',0),(6574,0,0,'H','2526','','',6574,0,0,'2025-12-06',5389,3742,0,0,3639,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6403,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 12:28:30','','0000-00-00 00:00:00',0),(6575,0,0,'H','2526','','',6575,0,0,'2025-12-06',5390,3743,0,0,3640,'B',500.00,0.00,'7','sbi','','93447','','0000-00-00','scan','',6404,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 12:29:49','','0000-00-00 00:00:00',0),(6576,0,0,'H','2526','','',6576,0,0,'2025-12-06',5391,3394,0,0,3305,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6405,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-06 12:30:47','','0000-00-00 00:00:00',0),(6577,0,0,'H','2526','','',6577,0,0,'2025-12-06',5387,3741,0,0,3638,'B',350.00,0.00,'7','hdfc','','07503','','0000-00-00','scan ','',6406,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-06 12:33:20','','0000-00-00 00:00:00',0),(6578,0,0,'H','2526','','',6578,0,0,'2025-12-06',5392,3744,0,0,3641,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6407,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 12:33:27','','0000-00-00 00:00:00',0),(6579,0,0,'H','2526','','',6579,0,0,'2025-12-06',5393,3745,0,0,3642,'B',900.00,0.00,'7','hdfc','','90756','','0000-00-00','scan','',6408,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 12:38:26','','0000-00-00 00:00:00',0),(6580,0,0,'H','2526','','',6580,0,0,'2025-12-06',5394,3746,0,0,3643,'B',750.00,0.00,'7','UNION BANK','','97465','','0000-00-00','scan','',6409,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 12:45:26','','0000-00-00 00:00:00',0),(6581,0,0,'H','2526','','P',6581,0,0,'2025-12-06',4751,3383,0,224,0,'A',11000.00,0.00,'CSH','','','','','0000-00-00','','',6411,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-06 12:52:08','riya','2025-12-06 12:53:47',0),(6582,0,0,'H','2526','','',6582,0,0,'2025-12-06',5395,3747,0,0,3644,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6412,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-06 12:57:18','','0000-00-00 00:00:00',0),(6583,0,0,'H','2526','','',6583,0,0,'2025-12-06',5381,3739,0,0,3636,'B',4500.00,0.00,'7','induslnd bank','','91171','','0000-00-00','scan','',6413,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 12:59:43','','0000-00-00 00:00:00',0),(6584,0,0,'H','2526','','',6584,0,0,'2025-12-06',5397,3098,0,0,3018,'B',100.00,0.00,'7','SBI BANK','','15219','','0000-00-00','scan','',6414,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 13:03:06','','0000-00-00 00:00:00',0),(6585,0,0,'H','2526','','',6585,0,0,'2025-12-06',5398,3749,0,0,3646,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6415,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 13:04:53','','0000-00-00 00:00:00',0),(6586,0,0,'H','2526','','',6586,0,0,'2025-12-06',5399,3750,0,0,3647,'B',400.00,0.00,'7','SBI BANK','','26890','','0000-00-00','scan','',6416,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 13:05:21','','0000-00-00 00:00:00',0),(6587,0,0,'H','2526','','',6587,0,0,'2025-12-06',5357,3729,0,0,3626,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6418,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 13:07:03','','0000-00-00 00:00:00',0),(6588,0,0,'H','2526','','',6588,0,0,'2025-12-06',5377,2964,0,0,2887,'D',-500.00,0.00,'CSH','','','','','2025-12-06','','',6417,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 13:07:36','','0000-00-00 00:00:00',0),(6589,0,0,'H','2526','','',6589,0,0,'2025-12-06',5398,3749,0,0,3646,'B',350.00,0.00,'CSH','','','','','0000-00-00','','',6420,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-06 13:09:42','','0000-00-00 00:00:00',0),(6590,0,0,'H','2526','','',6590,0,0,'2025-12-06',5400,1289,0,0,1248,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6421,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 13:16:54','','0000-00-00 00:00:00',0),(6591,0,0,'H','2526','','',6591,0,0,'2025-12-06',5401,2928,0,0,2856,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6422,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 13:23:19','','0000-00-00 00:00:00',0),(6592,0,0,'H','2526','','',6592,0,0,'2025-12-06',5393,3745,0,0,3642,'B',4200.00,0.00,'7','hdfc','','25616','','0000-00-00','scan','',6424,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 13:43:59','','0000-00-00 00:00:00',0),(6593,0,0,'H','2526','','',6593,0,0,'2025-12-06',5402,3751,0,0,3648,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6425,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 14:03:13','','0000-00-00 00:00:00',0),(6594,0,0,'H','2526','','',6594,0,0,'2025-12-06',5403,3752,0,0,3649,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6426,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 14:04:07','','0000-00-00 00:00:00',0),(6595,0,0,'H','2526','','',6595,0,0,'2025-12-06',5301,3698,0,249,0,'D',-500.00,0.00,'CSH','','','','','2025-12-06','','',6423,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-06 14:06:24','','0000-00-00 00:00:00',0),(6596,0,0,'H','2526','','',6596,0,0,'2025-12-06',5404,3753,0,0,3650,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6427,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-06 15:04:46','','0000-00-00 00:00:00',0),(6597,0,0,'H','2526','','',6597,0,0,'2025-12-06',5405,3754,0,0,3651,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6428,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-06 16:59:26','','0000-00-00 00:00:00',0),(6598,0,0,'H','2526','','P',6598,0,0,'2025-12-06',5163,3630,0,245,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',7222,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-06 17:29:05','vishal','2025-12-12 19:36:58',0),(6599,0,0,'H','2526','','',6599,0,0,'2025-12-06',5406,1140,0,0,1102,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6429,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-06 17:37:30','','0000-00-00 00:00:00',0),(6600,0,0,'H','2526','','',6600,0,0,'2025-12-06',5407,3125,0,0,3044,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6430,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 17:37:58','','0000-00-00 00:00:00',0),(6601,0,0,'H','2526','','',6601,0,0,'2025-12-06',5408,3755,0,0,3652,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6431,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-06 17:46:37','','0000-00-00 00:00:00',0),(6602,0,0,'H','2526','','',6602,0,0,'2025-12-06',5408,3755,0,0,3652,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',6432,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-06 18:05:38','','0000-00-00 00:00:00',0),(6603,0,0,'H','2526','','',6603,0,0,'2025-12-06',5410,2980,0,0,2903,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6433,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 18:08:00','','0000-00-00 00:00:00',0),(6604,0,0,'H','2526','','',6604,0,0,'2025-12-06',5411,2646,0,0,2585,'B',300.00,0.00,'7','ZAPP WALLET','','70942','','0000-00-00','SCAN','',6434,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-06 18:14:02','','0000-00-00 00:00:00',0),(6605,0,0,'H','2526','','',6605,0,0,'2025-12-06',5412,3757,0,0,3654,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6435,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-06 18:26:00','','0000-00-00 00:00:00',0),(6606,0,0,'H','2526','','',6606,0,0,'2025-12-06',5408,3755,0,0,3652,'D',-1200.00,0.00,'CSH','','','','','2025-12-06','','',6436,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-06 18:40:52','','0000-00-00 00:00:00',0),(6607,0,0,'H','2526','','',6607,0,0,'2025-12-06',5413,3758,0,0,3655,'B',500.00,0.00,'7','KOTAK MAHINDRA','','57691','','0000-00-00','SCAN','',6437,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-06 19:22:55','','0000-00-00 00:00:00',0),(6608,0,0,'H','2526','','',6608,0,0,'2025-12-06',5414,3759,0,0,3656,'B',800.00,0.00,'7','KOTAK MAHINDRA','','57691','','0000-00-00','SCAN','',6438,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-06 19:23:16','','0000-00-00 00:00:00',0),(6609,0,0,'H','2526','','',6609,0,0,'2025-12-06',5415,3760,0,0,3657,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6440,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-06 19:25:09','','0000-00-00 00:00:00',0),(6610,0,0,'H','2526','','',6610,0,0,'2025-12-06',5416,3761,0,0,3658,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',6441,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 19:29:05','','0000-00-00 00:00:00',0),(6611,0,0,'H','2526','','P',6611,0,0,'2025-12-06',5113,3598,0,242,0,'A',600.00,0.00,'CSH','','','','','0000-00-00','','',6442,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-06 19:32:46','riya','2025-12-06 19:32:58',0),(6612,0,0,'H','2526','','',6612,0,0,'2025-12-06',5417,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6443,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 19:35:10','','0000-00-00 00:00:00',0),(6613,0,0,'H','2526','','',6613,0,0,'2025-12-06',5418,3399,0,0,3310,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6444,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 19:41:22','','0000-00-00 00:00:00',0),(6614,0,0,'H','2526','','',6614,0,0,'2025-12-06',5372,3353,0,0,3265,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6445,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-06 20:16:53','','0000-00-00 00:00:00',0),(6615,0,0,'H','2526','','P',6615,0,0,'2025-12-06',4017,2937,0,187,0,'A',18000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-06 20:44:51','riya','2025-12-06 20:44:51',0),(6616,0,0,'H','2526','','P',6616,0,0,'2025-12-06',4688,3345,0,218,0,'A',16000.00,0.00,'CSH','','','','','0000-00-00','','',7018,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-06 20:50:18','riya','2025-12-11 14:46:45',0),(6617,0,0,'H','2526','','P',6617,0,0,'2025-12-06',5307,3700,0,250,0,'A',12000.00,0.00,'7','sbi bank','','6218','','0000-00-00','','',7019,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-06 22:12:53','riya','2025-12-11 15:06:15',0),(6618,0,0,'H','2526','','',6618,0,0,'2025-12-07',5419,3762,0,0,3659,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6446,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-07 09:33:30','','0000-00-00 00:00:00',0),(6619,0,0,'H','2526','','',6619,0,0,'2025-12-07',5420,3598,0,0,3660,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6447,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-07 09:34:38','','0000-00-00 00:00:00',0),(6620,0,0,'H','2526','','',6620,0,0,'2025-12-07',5421,3763,0,0,3661,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',6448,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-07 11:21:55','','0000-00-00 00:00:00',0),(6621,0,0,'H','2526','','',6621,0,0,'2025-12-07',5422,3101,0,0,3021,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6449,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-07 11:38:53','','0000-00-00 00:00:00',0),(6622,0,0,'H','2526','','',6622,0,0,'2025-12-07',5423,1063,0,0,1029,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',6450,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-07 12:18:45','','0000-00-00 00:00:00',0),(6623,0,0,'H','2526','','',6623,0,0,'2025-12-07',5424,1763,0,0,2118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6451,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-07 12:46:03','','0000-00-00 00:00:00',0),(6624,0,0,'H','2526','','P',6624,0,0,'2025-12-07',5316,3706,0,251,0,'A',10000.00,0.00,'7','OTHER BANK','','6804','','0000-00-00','','',6883,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-07 13:07:33','riya','2025-12-10 13:41:36',0),(6625,0,0,'H','2526','','P',6625,0,0,'2025-12-07',5425,3764,0,255,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',7016,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-07 16:52:53','riya','2025-12-11 14:14:08',0),(6626,0,0,'H','2526','','P',6626,0,0,'2025-12-07',5341,3721,0,254,0,'A',12900.00,0.00,'7','bob bank','','44603','','0000-00-00','','',6453,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-07 19:44:40','vishal','2025-12-07 19:45:14',0),(6627,0,0,'H','2526','','',6627,0,0,'2025-12-08',5427,3766,0,0,3662,'B',1600.00,0.00,'CSH','','','','','0000-00-00','','',6454,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-08 08:48:30','','0000-00-00 00:00:00',0),(6628,0,0,'H','2526','','',6628,0,0,'2025-12-08',5428,3767,0,0,3663,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',6455,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-08 08:49:56','','0000-00-00 00:00:00',0),(6629,0,0,'H','2526','','',6629,0,0,'2025-12-08',5429,3399,0,0,3310,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6456,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 08:50:09','','0000-00-00 00:00:00',0),(6630,0,0,'H','2526','','',6630,0,0,'2025-12-08',5430,3768,0,0,3664,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',6457,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-08 08:51:04','','0000-00-00 00:00:00',0),(6631,0,0,'H','2526','','',6631,0,0,'2025-12-08',5431,3598,0,0,3660,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6458,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-08 08:51:54','','0000-00-00 00:00:00',0),(6632,0,0,'H','2526','','',6632,0,0,'2025-12-08',5432,3769,0,0,3665,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',6459,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-08 08:53:50','','0000-00-00 00:00:00',0),(6633,0,0,'H','2526','','',6633,0,0,'2025-12-08',5433,3394,0,0,3305,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6460,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-08 08:55:03','','0000-00-00 00:00:00',0),(6634,0,0,'H','2526','','',6634,0,0,'2025-12-08',5434,3770,0,0,3666,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',6461,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-08 08:56:26','','0000-00-00 00:00:00',0),(6635,0,0,'H','2526','','',6635,0,0,'2025-12-08',5435,3771,0,0,3667,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',6462,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-08 08:58:18','','0000-00-00 00:00:00',0),(6636,0,0,'H','2526','','',6636,0,0,'2025-12-08',5436,3772,0,0,3668,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',6463,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-08 09:00:03','','0000-00-00 00:00:00',0),(6637,0,0,'H','2526','','',6637,0,0,'2025-12-08',5437,3773,0,0,3669,'B',900.00,0.00,'7','HDFC BANK','','37781','','0000-00-00','scan','',6464,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-08 09:02:31','','0000-00-00 00:00:00',0),(6638,0,0,'H','2526','','',6638,0,0,'2025-12-08',5438,3774,0,0,3670,'B',1450.00,0.00,'7','BANK','','94648','','0000-00-00','scan','',6465,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-08 09:05:12','','0000-00-00 00:00:00',0),(6639,0,0,'H','2526','','',6639,0,0,'2025-12-08',5439,1189,0,0,1149,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6466,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 09:15:45','','0000-00-00 00:00:00',0),(6640,0,0,'H','2526','','',6640,0,0,'2025-12-08',5441,3776,0,0,3672,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6467,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 09:28:52','','0000-00-00 00:00:00',0),(6641,0,0,'H','2526','','',6641,0,0,'2025-12-08',5440,3775,0,0,3671,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6468,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 09:30:50','','0000-00-00 00:00:00',0),(6642,0,0,'H','2526','','',6642,0,0,'2025-12-08',5442,3777,0,0,3673,'B',1000.00,0.00,'7','BOI','','94671','','0000-00-00','scan  ','',6469,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 09:35:29','','0000-00-00 00:00:00',0),(6643,0,0,'H','2526','','',6643,0,0,'2025-12-08',5444,3779,0,0,3674,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6470,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 09:43:39','','0000-00-00 00:00:00',0),(6644,0,0,'H','2526','','P',6644,0,0,'2025-12-08',5443,3778,0,257,0,'A',50000.00,0.00,'CRD','hdfc bank','','e800','','0000-00-00','CARD','',6737,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-08 09:44:41','vishal','2025-12-09 13:53:12',0),(6645,0,0,'H','2526','','',6645,0,0,'2025-12-08',5446,3781,0,0,3675,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6471,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 09:48:30','','0000-00-00 00:00:00',0),(6646,0,0,'H','2526','','P',6646,0,0,'2025-12-08',5445,3780,0,258,0,'A',15000.00,0.00,'7','HDFC','','115294479039','','0000-00-00','UPI','',7011,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-08 09:49:34','riya','2025-12-11 13:32:03',0),(6647,0,0,'H','2526','','',6647,0,0,'2025-12-08',5447,3782,0,0,3676,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6472,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 09:51:27','','0000-00-00 00:00:00',0),(6648,0,0,'H','2526','','',6648,0,0,'2025-12-08',5448,3085,0,0,3510,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6473,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 09:58:04','','0000-00-00 00:00:00',0),(6649,0,0,'H','2526','','',6649,0,0,'2025-12-08',5449,823,0,0,792,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6474,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 09:58:15','','0000-00-00 00:00:00',0),(6650,0,0,'H','2526','','',6650,0,0,'2025-12-08',5450,1779,0,0,1735,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6475,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 09:59:14','','0000-00-00 00:00:00',0),(6651,0,0,'H','2526','','',6651,0,0,'2025-12-08',5453,3783,0,0,3678,'B',900.00,0.00,'7','bob','','54456','','0000-00-00','scan','',6476,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 10:07:50','','0000-00-00 00:00:00',0),(6652,0,0,'H','2526','','',6652,0,0,'2025-12-08',5454,2095,0,0,2040,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6477,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 10:09:25','','0000-00-00 00:00:00',0),(6653,0,0,'H','2526','','',6653,0,0,'2025-12-08',5455,3784,0,0,3679,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6478,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 10:13:54','','0000-00-00 00:00:00',0),(6654,0,0,'H','2526','','',6654,0,0,'2025-12-08',5456,3785,0,0,3680,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6479,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 10:20:26','','0000-00-00 00:00:00',0),(6655,0,0,'H','2526','','',6655,0,0,'2025-12-08',5457,3786,0,0,3681,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6480,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 10:21:41','','0000-00-00 00:00:00',0),(6656,0,0,'H','2526','','',6656,0,0,'2025-12-08',5458,3787,0,0,3682,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6481,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 10:28:02','','0000-00-00 00:00:00',0),(6657,0,0,'H','2526','','',6657,0,0,'2025-12-08',5459,3788,0,0,3683,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6482,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 10:32:17','','0000-00-00 00:00:00',0),(6658,0,0,'H','2526','','',6658,0,0,'2025-12-08',5452,3401,0,0,3677,'B',100.00,0.00,'7','idbi','','79939','','0000-00-00','scan                          ','',6483,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 10:33:00','','0000-00-00 00:00:00',0),(6659,0,0,'H','2526','','',6659,0,0,'2025-12-08',5460,3789,0,0,3684,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6484,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 10:43:22','','0000-00-00 00:00:00',0),(6660,0,0,'H','2526','','',6660,0,0,'2025-12-08',5461,3790,0,0,3685,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6485,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 10:44:04','','0000-00-00 00:00:00',0),(6661,0,0,'H','2526','','',6661,0,0,'2025-12-08',5462,3791,0,0,3686,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6486,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 10:45:15','','0000-00-00 00:00:00',0),(6662,0,0,'H','2526','','',6662,0,0,'2025-12-08',5463,3792,0,0,3687,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6487,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 10:50:05','','0000-00-00 00:00:00',0),(6663,0,0,'H','2526','','',6663,0,0,'2025-12-08',5464,89,0,0,78,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6488,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 10:50:09','','0000-00-00 00:00:00',0),(6664,0,0,'H','2526','','',6664,0,0,'2025-12-08',5465,1576,0,0,1535,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6489,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 10:51:23','','0000-00-00 00:00:00',0),(6665,0,0,'H','2526','','',6665,0,0,'2025-12-08',5466,3793,0,0,3688,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6490,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 10:55:00','','0000-00-00 00:00:00',0),(6666,0,0,'H','2526','','',6666,0,0,'2025-12-08',5467,3794,0,0,3689,'B',500.00,0.00,'7','hdfc','','33924','','0000-00-00','scan','',6491,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 10:56:39','','0000-00-00 00:00:00',0),(6667,0,0,'H','2526','','',6667,0,0,'2025-12-08',5469,2672,0,0,2610,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6492,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 10:57:56','','0000-00-00 00:00:00',0),(6668,0,0,'H','2526','','',6668,0,0,'2025-12-08',5468,2599,0,0,2542,'B',300.00,0.00,'7','hdfc','','33924','','0000-00-00','scan ','',6493,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 10:58:12','','0000-00-00 00:00:00',0),(6669,0,0,'H','2526','','',6669,0,0,'2025-12-08',5470,3795,0,0,3690,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6495,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 10:59:53','','0000-00-00 00:00:00',0),(6670,0,0,'H','2526','','',6670,0,0,'2025-12-08',5468,2599,0,0,2542,'D',-300.00,0.00,'7','hdfc','','33924','','2025-12-08','SCAN                          ','',6494,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 11:00:01','','0000-00-00 00:00:00',0),(6671,0,0,'H','2526','','',6671,0,0,'2025-12-08',5468,2599,0,0,2542,'B',300.00,0.00,'7','hdfc','','53755','','0000-00-00','scan                          ','',6496,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 11:02:40','','0000-00-00 00:00:00',0),(6672,0,0,'H','2526','','',6672,0,0,'2025-12-08',5471,2179,0,0,2128,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6497,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 11:04:52','','0000-00-00 00:00:00',0),(6673,0,0,'H','2526','','',6673,0,0,'2025-12-08',5472,3796,0,0,3691,'B',900.00,0.00,'7','axis bank','','85069','','0000-00-00','scan ','',6498,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 11:06:51','','0000-00-00 00:00:00',0),(6674,0,0,'H','2526','','',6674,0,0,'2025-12-08',5473,3797,0,0,3692,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6499,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 11:08:52','','0000-00-00 00:00:00',0),(6675,0,0,'H','2526','','',6675,0,0,'2025-12-08',5474,3798,0,0,3693,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6500,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 11:11:57','','0000-00-00 00:00:00',0),(6676,0,0,'H','2526','','',6676,0,0,'2025-12-08',5476,3347,0,0,3695,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6501,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 11:13:18','','0000-00-00 00:00:00',0),(6677,0,0,'H','2526','','',6677,0,0,'2025-12-08',5475,3799,0,0,3694,'B',750.00,0.00,'7','sbi','','05123','','0000-00-00','scan','',6502,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 11:13:49','','0000-00-00 00:00:00',0),(6678,0,0,'H','2526','','',6678,0,0,'2025-12-08',5462,3791,0,0,3686,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6503,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 11:16:05','','0000-00-00 00:00:00',0),(6679,0,0,'H','2526','','',6679,0,0,'2025-12-08',5441,3776,0,0,3672,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6504,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 11:16:58','','0000-00-00 00:00:00',0),(6680,0,0,'H','2526','','',6680,0,0,'2025-12-08',5478,3665,0,0,3565,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6505,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 11:18:03','','0000-00-00 00:00:00',0),(6681,0,0,'H','2526','','',6681,0,0,'2025-12-08',5457,3786,0,0,3681,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',6506,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 11:18:52','','0000-00-00 00:00:00',0),(6682,0,0,'H','2526','','',6682,0,0,'2025-12-08',5479,3800,0,0,3696,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6507,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 11:22:13','','0000-00-00 00:00:00',0),(6683,0,0,'H','2526','','P',6683,0,0,'2025-12-08',5307,3700,0,250,0,'A',17000.00,0.00,'7','SBI ','','570812519439','','0000-00-00','SCAN','',7019,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-08 11:22:35','riya','2025-12-11 15:06:15',0),(6684,0,0,'H','2526','','',6684,0,0,'2025-12-08',5440,3775,0,0,3671,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',6508,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 11:23:23','','0000-00-00 00:00:00',0),(6685,0,0,'H','2526','','',6685,0,0,'2025-12-08',5480,2834,0,0,3697,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6509,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 11:23:56','','0000-00-00 00:00:00',0),(6686,0,0,'H','2526','','',6686,0,0,'2025-12-08',5481,3801,0,0,3698,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6510,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 11:25:30','','0000-00-00 00:00:00',0),(6687,0,0,'H','2526','','',6687,0,0,'2025-12-08',5483,3803,0,0,3700,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6511,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 11:27:43','','0000-00-00 00:00:00',0),(6688,0,0,'H','2526','','',6688,0,0,'2025-12-08',5482,3802,0,0,3699,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6512,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 11:27:51','','0000-00-00 00:00:00',0),(6689,0,0,'H','2526','','',6689,0,0,'2025-12-08',5466,3793,0,0,3688,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6513,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 11:29:22','','0000-00-00 00:00:00',0),(6690,0,0,'H','2526','','',6690,0,0,'2025-12-08',5484,2399,0,0,2343,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6514,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 11:29:36','','0000-00-00 00:00:00',0),(6691,0,0,'H','2526','','',6691,0,0,'2025-12-08',5477,2808,0,0,2738,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6515,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 11:30:30','','0000-00-00 00:00:00',0),(6692,0,0,'H','2526','','',6692,0,0,'2025-12-08',5486,3805,0,0,3702,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6516,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 11:30:57','','0000-00-00 00:00:00',0),(6693,0,0,'H','2526','','',6693,0,0,'2025-12-08',5487,3806,0,0,3703,'B',400.00,0.00,'7','SBI BANK','','16514','','0000-00-00','scan ','',6517,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 11:32:00','','0000-00-00 00:00:00',0),(6694,0,0,'H','2526','','',6694,0,0,'2025-12-08',5488,3807,0,0,3704,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6518,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 11:32:27','','0000-00-00 00:00:00',0),(6695,0,0,'H','2526','','',6695,0,0,'2025-12-08',5490,1174,0,0,1134,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6519,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 11:33:10','','0000-00-00 00:00:00',0),(6696,0,0,'H','2526','','',6696,0,0,'2025-12-08',5489,3808,0,0,3705,'B',400.00,0.00,'7','SBI BANK','','16514','','0000-00-00','scan ','',6520,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 11:33:52','','0000-00-00 00:00:00',0),(6697,0,0,'H','2526','','',6697,0,0,'2025-12-08',5492,3809,0,0,3706,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6521,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 11:36:05','','0000-00-00 00:00:00',0),(6698,0,0,'H','2526','','',6698,0,0,'2025-12-08',5485,3804,0,0,3701,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',6522,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 11:36:18','','0000-00-00 00:00:00',0),(6699,0,0,'H','2526','','',6699,0,0,'2025-12-08',5493,2100,0,0,2045,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6523,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 11:36:55','','0000-00-00 00:00:00',0),(6700,0,0,'H','2526','','P',6700,0,0,'2025-12-08',5426,3765,0,256,0,'A',15000.00,0.00,'2','SBI','','16574423','','0000-00-00','CARD','',6942,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-08 11:40:55','vishal','2025-12-10 21:31:47',0),(6701,0,0,'H','2526','','',6701,0,0,'2025-12-08',5491,3542,0,0,3445,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6524,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 11:41:48','','0000-00-00 00:00:00',0),(6702,0,0,'H','2526','','',6702,0,0,'2025-12-08',5494,3810,0,0,3707,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6525,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 11:42:36','','0000-00-00 00:00:00',0),(6703,0,0,'H','2526','','',6703,0,0,'2025-12-08',5495,3811,0,0,3708,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6526,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 11:44:04','','0000-00-00 00:00:00',0),(6704,0,0,'H','2526','','',6704,0,0,'2025-12-08',5496,3812,0,0,3709,'B',750.00,0.00,'7','SBI BANK','','44110','','0000-00-00','scan ','',6527,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 11:45:59','','0000-00-00 00:00:00',0),(6705,0,0,'H','2526','','',6705,0,0,'2025-12-08',5497,3813,0,0,3710,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6528,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 11:49:03','','0000-00-00 00:00:00',0),(6706,0,0,'H','2526','','',6706,0,0,'2025-12-08',5500,314,0,0,298,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6529,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 11:52:36','','0000-00-00 00:00:00',0),(6707,0,0,'H','2526','','',6707,0,0,'2025-12-08',5498,2866,0,0,3711,'B',400.00,0.00,'CRD','ICICI BANK','','18','','0000-00-00','CARD','',6530,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 11:53:54','','0000-00-00 00:00:00',0),(6708,0,0,'H','2526','','',6708,0,0,'2025-12-08',5472,3796,0,0,3691,'B',4000.00,0.00,'7','axis','','87370','','0000-00-00','scan','',6531,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 11:54:59','','0000-00-00 00:00:00',0),(6709,0,0,'H','2526','','',6709,0,0,'2025-12-08',5501,3814,0,0,3712,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6532,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 11:58:10','','0000-00-00 00:00:00',0),(6710,0,0,'H','2526','','',6710,0,0,'2025-12-08',5502,3815,0,0,3713,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6533,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 11:58:12','','0000-00-00 00:00:00',0),(6711,0,0,'H','2526','','',6711,0,0,'2025-12-08',5503,3816,0,0,3714,'B',500.00,0.00,'7','sbi','','84895','','0000-00-00','scan','',6534,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 11:59:45','','0000-00-00 00:00:00',0),(6712,0,0,'H','2526','','',6712,0,0,'2025-12-08',5504,3817,0,0,3715,'B',500.00,0.00,'7','SBI','','987081','','0000-00-00','SCAN','',6535,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 12:00:12','','0000-00-00 00:00:00',0),(6713,0,0,'H','2526','','',6713,0,0,'2025-12-08',5505,392,0,0,2393,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6536,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 12:00:42','','0000-00-00 00:00:00',0),(6714,0,0,'H','2526','','',6714,0,0,'2025-12-08',5453,3783,0,0,3678,'B',3500.00,0.00,'7','bob','','85685','','0000-00-00','scan','',6537,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 12:01:52','','0000-00-00 00:00:00',0),(6715,0,0,'H','2526','','',6715,0,0,'2025-12-08',5442,3777,0,0,3673,'B',4000.00,0.00,'7','bank of india','','10135','','0000-00-00','SCAN','',6538,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 12:02:53','','0000-00-00 00:00:00',0),(6716,0,0,'H','2526','','',6716,0,0,'2025-12-08',5446,3781,0,0,3675,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',6539,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 12:04:48','','0000-00-00 00:00:00',0),(6717,0,0,'H','2526','','',6717,0,0,'2025-12-08',5507,3818,0,0,3716,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6540,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 12:05:20','','0000-00-00 00:00:00',0),(6718,0,0,'H','2526','','',6718,0,0,'2025-12-08',5508,2301,0,0,2245,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6541,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 12:12:52','','0000-00-00 00:00:00',0),(6719,0,0,'H','2526','','',6719,0,0,'2025-12-08',5509,1022,0,0,990,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6542,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 12:13:33','','0000-00-00 00:00:00',0),(6720,0,0,'H','2526','','',6720,0,0,'2025-12-08',5504,3817,0,0,3715,'B',600.00,0.00,'7','SBI','','72004','','0000-00-00','SCAN','',6543,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 12:16:20','','0000-00-00 00:00:00',0),(6721,0,0,'H','2526','','',6721,0,0,'2025-12-08',5511,3820,0,0,3718,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6545,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 12:18:05','','0000-00-00 00:00:00',0),(6722,0,0,'H','2526','','',6722,0,0,'2025-12-08',5512,2510,0,0,2451,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6546,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 12:19:10','','0000-00-00 00:00:00',0),(6723,0,0,'H','2526','','',6723,0,0,'2025-12-08',5510,3819,0,0,3717,'B',1400.00,0.00,'7','IDFC BANK','','19','','0000-00-00','scan ','',6547,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 12:20:23','','0000-00-00 00:00:00',0),(6724,0,0,'H','2526','','',6724,0,0,'2025-12-08',5506,3501,0,0,3406,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6548,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 12:20:31','','0000-00-00 00:00:00',0),(6725,0,0,'H','2526','','',6725,0,0,'2025-12-08',5513,1976,0,0,1928,'B',100.00,0.00,'7','INDIA POST PAY','','85175','','0000-00-00','SCAN','',6549,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 12:22:13','','0000-00-00 00:00:00',0),(6726,0,0,'H','2526','','',6726,0,0,'2025-12-08',5514,3025,0,0,2946,'B',400.00,0.00,'7','HDFC BANK','','28388','','0000-00-00','scan ','',6550,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 12:24:44','','0000-00-00 00:00:00',0),(6727,0,0,'H','2526','','',6727,0,0,'2025-12-08',5481,3801,0,0,3698,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',6551,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 12:25:03','','0000-00-00 00:00:00',0),(6728,0,0,'H','2526','','',6728,0,0,'2025-12-08',5515,269,0,0,254,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6552,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 12:29:49','','0000-00-00 00:00:00',0),(6729,0,0,'H','2526','','',6729,0,0,'2025-12-08',5516,3531,0,0,3434,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6553,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 12:33:24','','0000-00-00 00:00:00',0),(6730,0,0,'H','2526','','',6730,0,0,'2025-12-08',5517,3821,0,0,3719,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6554,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 12:33:54','','0000-00-00 00:00:00',0),(6731,0,0,'H','2526','','',6731,0,0,'2025-12-08',5519,3822,0,0,3721,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6555,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 12:37:05','','0000-00-00 00:00:00',0),(6732,0,0,'H','2526','','',6732,0,0,'2025-12-08',5520,3823,0,0,3722,'B',1250.00,0.00,'7','HDFC BANK','','05425','','0000-00-00','scan ','',6556,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 12:39:39','','0000-00-00 00:00:00',0),(6733,0,0,'H','2526','','',6733,0,0,'2025-12-08',5523,3825,0,0,3723,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6557,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 12:40:39','','0000-00-00 00:00:00',0),(6734,0,0,'H','2526','','',6734,0,0,'2025-12-08',5522,705,0,0,676,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6558,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 12:40:55','','0000-00-00 00:00:00',0),(6735,0,0,'H','2526','','',6735,0,0,'2025-12-08',5441,3776,0,0,3672,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6559,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 12:42:14','','0000-00-00 00:00:00',0),(6736,0,0,'H','2526','','',6736,0,0,'2025-12-08',5524,3826,0,0,3724,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6560,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 12:42:52','','0000-00-00 00:00:00',0),(6737,0,0,'H','2526','','P',6737,0,0,'2025-12-08',5521,3824,0,259,0,'A',7000.00,0.00,'7','hdfc bank','','534293636156','','0000-00-00','UPI','',7786,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-08 12:47:19','vishal','2025-12-17 14:05:14',0),(6738,0,0,'H','2526','','',6738,0,0,'2025-12-08',5486,3805,0,0,3702,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',6561,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 12:48:23','','0000-00-00 00:00:00',0),(6739,0,0,'H','2526','','P',6739,0,0,'2025-12-08',4977,3510,0,238,0,'A',13300.00,0.00,'CRD','hdfc bank','','48000','','0000-00-00','CARD','',6562,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-08 12:52:34','riya','2025-12-08 12:52:58',0),(6740,0,0,'H','2526','','P',6740,0,0,'2025-12-08',4688,3345,0,218,0,'A',13000.00,0.00,'7','hdfc bank','','115309012017','','0000-00-00','SCAN','',7018,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-08 13:00:13','riya','2025-12-11 14:46:45',0),(6741,0,0,'H','2526','','',6741,0,0,'2025-12-08',5518,3721,0,0,3720,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6563,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 13:01:15','','0000-00-00 00:00:00',0),(6742,0,0,'H','2526','','',6742,0,0,'2025-12-08',5525,3098,0,0,3018,'B',100.00,0.00,'7','sbi','','56399','','0000-00-00','scan','',6564,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 13:04:54','','0000-00-00 00:00:00',0),(6743,0,0,'H','2526','','',6743,0,0,'2025-12-08',5482,3802,0,0,3699,'B',3500.00,0.00,'7','sbi','','44694','','0000-00-00','scan','',6565,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 13:06:12','','0000-00-00 00:00:00',0),(6744,0,0,'H','2526','','',6744,0,0,'2025-12-08',5528,3828,0,0,3725,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6566,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 13:08:37','','0000-00-00 00:00:00',0),(6745,0,0,'H','2526','','P',6745,0,0,'2025-12-08',5527,3827,0,260,0,'A',15000.00,0.00,'7','hdfc bank','','115310046089','','0000-00-00','UPI','',7317,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-08 13:14:23','riya','2025-12-13 14:12:13',0),(6746,0,0,'H','2526','','',6746,0,0,'2025-12-08',5529,3829,0,0,3726,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6567,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 13:18:05','','0000-00-00 00:00:00',0),(6747,0,0,'H','2526','','',6747,0,0,'2025-12-08',5530,3830,0,0,3727,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6568,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 13:19:44','','0000-00-00 00:00:00',0),(6748,0,0,'H','2526','','',6748,0,0,'2025-12-08',5528,3828,0,0,3725,'D',-800.00,0.00,'CSH','','','','','2025-12-08','','',6569,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 13:21:49','','0000-00-00 00:00:00',0),(6749,0,0,'H','2526','','',6749,0,0,'2025-12-08',5483,3803,0,0,3700,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',6571,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 13:29:58','','0000-00-00 00:00:00',0),(6750,0,0,'H','2526','','',6750,0,0,'2025-12-08',5531,3831,0,0,3728,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6572,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 13:32:48','','0000-00-00 00:00:00',0),(6751,0,0,'H','2526','','',6751,0,0,'2025-12-08',5532,3832,0,0,3729,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6573,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 13:33:50','','0000-00-00 00:00:00',0),(6752,0,0,'H','2526','','',6752,0,0,'2025-12-08',5442,3777,0,0,3673,'B',600.00,0.00,'7','boi','','96547','','0000-00-00','scan  ','',6574,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 13:44:26','','0000-00-00 00:00:00',0),(6753,0,0,'H','2526','','P',6753,0,0,'2025-12-08',5337,3719,0,252,0,'A',29000.00,0.00,'CSH','','','','','0000-00-00','','',6575,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-08 13:53:54','riya','2025-12-08 13:54:59',0),(6754,0,0,'H','2526','','P',6754,0,0,'2025-12-08',5163,3630,0,245,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',7222,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-08 14:11:14','vishal','2025-12-12 19:36:58',0),(6755,0,0,'H','2526','','',6755,0,0,'2025-12-08',5524,3826,0,0,3724,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6576,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 14:18:02','','0000-00-00 00:00:00',0),(6756,0,0,'H','2526','','',6756,0,0,'2025-12-08',5533,3833,0,0,3730,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6577,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 14:29:33','','0000-00-00 00:00:00',0),(6757,0,0,'H','2526','','P',6757,0,0,'2025-12-08',4694,3350,0,222,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',7319,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-08 15:23:39','riya','2025-12-13 14:24:24',0),(6758,0,0,'H','2526','','',6758,0,0,'2025-12-08',5534,3834,0,0,3731,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6578,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-08 15:59:49','','0000-00-00 00:00:00',0),(6759,0,0,'H','2526','','',6759,0,0,'2025-12-08',5535,2636,0,0,2575,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6579,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 16:37:32','','0000-00-00 00:00:00',0),(6760,0,0,'H','2526','','P',6760,0,0,'2025-12-08',5120,3601,0,243,0,'A',50000.00,0.00,'7','HDFC','','115320949835','','0000-00-00','UPI','',8441,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-08 16:45:13','vishal','2025-12-22 21:57:17',0),(6761,0,0,'H','2526','','',6761,0,0,'2025-12-08',5531,3831,0,0,3728,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',6580,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 16:47:42','','0000-00-00 00:00:00',0),(6762,0,0,'H','2526','','',6762,0,0,'2025-12-08',5537,2246,0,0,2189,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6581,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-08 16:48:54','','0000-00-00 00:00:00',0),(6763,0,0,'H','2526','','',6763,0,0,'2025-12-08',5538,3835,0,0,3732,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6582,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 16:54:52','','0000-00-00 00:00:00',0),(6764,0,0,'H','2526','','',6764,0,0,'2025-12-08',5539,3836,0,0,3733,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6583,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 16:57:11','','0000-00-00 00:00:00',0),(6765,0,0,'H','2526','','',6765,0,0,'2025-12-08',5540,3837,0,0,3734,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6584,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 17:00:12','','0000-00-00 00:00:00',0),(6766,0,0,'H','2526','','',6766,0,0,'2025-12-08',5541,3838,0,0,3735,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6585,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 17:03:53','','0000-00-00 00:00:00',0),(6767,0,0,'H','2526','','',6767,0,0,'2025-12-08',5543,3840,0,0,3737,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6586,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-08 17:05:44','','0000-00-00 00:00:00',0),(6768,0,0,'H','2526','','',6768,0,0,'2025-12-08',5544,3841,0,0,3738,'B',700.00,0.00,'7','axis','','25100','','0000-00-00','scan','',6587,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 17:08:14','','0000-00-00 00:00:00',0),(6769,0,0,'H','2526','','',6769,0,0,'2025-12-08',5542,3839,0,0,3736,'B',700.00,0.00,'7','axis','','25100','','0000-00-00','scan','',6588,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 17:08:39','','0000-00-00 00:00:00',0),(6770,0,0,'H','2526','','',6770,0,0,'2025-12-08',5545,3842,0,0,3739,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6589,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 17:10:11','','0000-00-00 00:00:00',0),(6771,0,0,'H','2526','','',6771,0,0,'2025-12-08',5547,3844,0,0,3741,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6590,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 17:15:33','','0000-00-00 00:00:00',0),(6772,0,0,'H','2526','','',6772,0,0,'2025-12-08',5546,3843,0,0,3740,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6591,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 17:15:38','','0000-00-00 00:00:00',0),(6773,0,0,'H','2526','','P',6773,0,0,'2025-12-08',5089,3583,0,241,0,'A',9450.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-08 17:20:19','riya','2025-12-08 17:20:19',0),(6774,0,0,'H','2526','','',6774,0,0,'2025-12-08',5549,3160,0,0,3074,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6592,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 17:20:45','','0000-00-00 00:00:00',0),(6775,0,0,'H','2526','','',6775,0,0,'2025-12-08',5550,3208,0,0,3122,'B',300.00,0.00,'7','HDFC','','97262','','0000-00-00','scan','',6593,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-08 17:20:48','','0000-00-00 00:00:00',0),(6776,0,0,'H','2526','','',6776,0,0,'2025-12-08',5548,3845,0,0,3742,'B',700.00,0.00,'2','axis','25865','25865','','0000-00-00','card','',6594,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 17:23:29','','0000-00-00 00:00:00',0),(6777,0,0,'H','2526','','',6777,0,0,'2025-12-08',5551,3846,0,0,3743,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6595,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-08 17:24:02','','0000-00-00 00:00:00',0),(6778,0,0,'H','2526','','',6778,0,0,'2025-12-08',5540,3837,0,0,3734,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',6596,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 17:24:59','','0000-00-00 00:00:00',0),(6779,0,0,'H','2526','','',6779,0,0,'2025-12-08',5553,3848,0,0,3745,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6597,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-08 17:27:20','','0000-00-00 00:00:00',0),(6780,0,0,'H','2526','','',6780,0,0,'2025-12-08',5552,3847,0,0,3744,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6598,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-08 17:27:32','','0000-00-00 00:00:00',0),(6781,0,0,'H','2526','','',6781,0,0,'2025-12-08',5538,3835,0,0,3732,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',6599,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 17:28:38','','0000-00-00 00:00:00',0),(6782,0,0,'H','2526','','',6782,0,0,'2025-12-08',5554,1740,0,0,1694,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6600,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 17:42:49','','0000-00-00 00:00:00',0),(6783,0,0,'H','2526','','',6783,0,0,'2025-12-08',5555,3849,0,0,3746,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6601,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 17:43:57','','0000-00-00 00:00:00',0),(6784,0,0,'H','2526','','',6784,0,0,'2025-12-08',5545,3842,0,0,3739,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',6602,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 17:44:05','','0000-00-00 00:00:00',0),(6785,0,0,'H','2526','','',6785,0,0,'2025-12-08',5556,3830,0,0,3727,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',6603,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 17:53:09','','0000-00-00 00:00:00',0),(6786,0,0,'H','2526','','',6786,0,0,'2025-12-08',5557,3850,0,0,3747,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6604,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 17:55:16','','0000-00-00 00:00:00',0),(6787,0,0,'H','2526','','',6787,0,0,'2025-12-08',5558,3526,0,0,3429,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6605,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 18:07:25','','0000-00-00 00:00:00',0),(6788,0,0,'H','2526','','',6788,0,0,'2025-12-08',5560,3473,0,0,3378,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6606,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 18:10:44','','0000-00-00 00:00:00',0),(6789,0,0,'H','2526','','',6789,0,0,'2025-12-08',5561,3851,0,0,3748,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6607,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 18:11:49','','0000-00-00 00:00:00',0),(6790,0,0,'H','2526','','',6790,0,0,'2025-12-08',5562,3852,0,0,3749,'B',500.00,0.00,'7','boi','','01277','','0000-00-00','scan ','',6608,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 18:13:36','','0000-00-00 00:00:00',0),(6791,0,0,'H','2526','','',6791,0,0,'2025-12-08',5563,383,0,0,367,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6609,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 18:16:30','','0000-00-00 00:00:00',0),(6792,0,0,'H','2526','','',6792,0,0,'2025-12-08',5564,3853,0,0,3750,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6610,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 18:21:38','','0000-00-00 00:00:00',0),(6793,0,0,'H','2526','','',6793,0,0,'2025-12-08',5565,3854,0,0,3751,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6611,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 18:22:29','','0000-00-00 00:00:00',0),(6794,0,0,'H','2526','','',6794,0,0,'2025-12-08',5566,3855,0,0,3752,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6612,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 18:24:01','','0000-00-00 00:00:00',0),(6795,0,0,'H','2526','','',6795,0,0,'2025-12-08',5559,3424,0,0,3332,'B',300.00,0.00,'7','AXIS BANK','','31929','','0000-00-00','SCAN','',6613,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 18:25:58','','0000-00-00 00:00:00',0),(6796,0,0,'H','2526','','',6796,0,0,'2025-12-08',5567,2273,0,0,2217,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6614,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 18:28:14','','0000-00-00 00:00:00',0),(6797,0,0,'H','2526','','',6797,0,0,'2025-12-08',5569,3856,0,0,3753,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6615,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 18:29:46','','0000-00-00 00:00:00',0),(6798,0,0,'H','2526','','',6798,0,0,'2025-12-08',5568,1027,0,0,995,'B',500.00,0.00,'7','indian bank','','33401','','0000-00-00','scan','',6616,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 18:30:14','','0000-00-00 00:00:00',0),(6799,0,0,'H','2526','','',6799,0,0,'2025-12-08',5570,3857,0,0,3754,'B',500.00,0.00,'7','AXIS BANK','','32090','','0000-00-00','SCAN','',6617,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 18:31:00','','0000-00-00 00:00:00',0),(6800,0,0,'H','2526','','',6800,0,0,'2025-12-08',5571,3073,0,0,2995,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6618,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 18:34:02','','0000-00-00 00:00:00',0),(6801,0,0,'H','2526','','',6801,0,0,'2025-12-08',5572,974,0,0,943,'B',500.00,0.00,'7','icici','','40740','','0000-00-00','scan','',6619,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 18:39:42','','0000-00-00 00:00:00',0),(6802,0,0,'H','2526','','',6802,0,0,'2025-12-08',5573,3256,0,0,3170,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6620,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 18:40:53','','0000-00-00 00:00:00',0),(6803,0,0,'H','2526','','',6803,0,0,'2025-12-08',5574,3858,0,0,3755,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6621,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 18:42:47','','0000-00-00 00:00:00',0),(6804,0,0,'H','2526','','',6804,0,0,'2025-12-08',5575,3280,0,0,3194,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6622,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 18:43:23','','0000-00-00 00:00:00',0),(6805,0,0,'H','2526','','',6805,0,0,'2025-12-08',5578,3861,0,0,3758,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6624,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 18:46:16','','0000-00-00 00:00:00',0),(6806,0,0,'H','2526','','',6806,0,0,'2025-12-08',5577,3860,0,0,3757,'B',900.00,0.00,'7','axis bank','','02911','','0000-00-00','scan ','',6625,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 18:46:21','','0000-00-00 00:00:00',0),(6807,0,0,'H','2526','','',6807,0,0,'2025-12-08',5567,2273,0,0,2217,'D',-300.00,0.00,'CSH','','','','','2025-12-08','','',6623,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 18:46:26','','0000-00-00 00:00:00',0),(6808,0,0,'H','2526','','',6808,0,0,'2025-12-08',5579,1505,0,0,1464,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6626,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 18:52:11','','0000-00-00 00:00:00',0),(6809,0,0,'H','2526','','',6809,0,0,'2025-12-08',5580,3862,0,0,3759,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6627,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 18:52:30','','0000-00-00 00:00:00',0),(6810,0,0,'H','2526','','',6810,0,0,'2025-12-08',5581,100,0,0,89,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6628,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 18:53:13','','0000-00-00 00:00:00',0),(6811,0,0,'H','2526','','',6811,0,0,'2025-12-08',5568,1027,0,0,995,'D',-500.00,0.00,'7','indian bank','','33401','','2025-12-08','SCAN','',6629,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 18:55:58','','0000-00-00 00:00:00',0),(6812,0,0,'H','2526','','',6812,0,0,'2025-12-08',5582,2782,0,0,2711,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6630,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 18:56:05','','0000-00-00 00:00:00',0),(6813,0,0,'H','2526','','',6813,0,0,'2025-12-08',5568,1027,0,0,995,'B',300.00,0.00,'7','indian bank','','33401','','0000-00-00','scan','',6631,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 18:56:43','','0000-00-00 00:00:00',0),(6814,0,0,'H','2526','','',6814,0,0,'2025-12-08',5584,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6632,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 19:00:12','','0000-00-00 00:00:00',0),(6815,0,0,'H','2526','','',6815,0,0,'2025-12-08',5559,3424,0,0,3332,'B',500.00,0.00,'7','AXIS BANK','','43077','','0000-00-00','SCAN','',6633,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 19:01:59','','0000-00-00 00:00:00',0),(6816,0,0,'H','2526','','',6816,0,0,'2025-12-08',5586,3421,0,0,3329,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6634,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 19:06:41','','0000-00-00 00:00:00',0),(6817,0,0,'H','2526','','',6817,0,0,'2025-12-08',5570,3857,0,0,3754,'B',600.00,0.00,'7','AXIS BANK','','38463','','0000-00-00','SCAN','',6635,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 19:06:46','','0000-00-00 00:00:00',0),(6818,0,0,'H','2526','','',6818,0,0,'2025-12-08',5580,3862,0,0,3759,'D',-400.00,0.00,'CSH','','','','','2025-12-08','','',6636,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 19:10:24','','0000-00-00 00:00:00',0),(6819,0,0,'H','2526','','',6819,0,0,'2025-12-08',5587,2669,0,0,2607,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6637,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 19:10:51','','0000-00-00 00:00:00',0),(6820,0,0,'H','2526','','',6820,0,0,'2025-12-08',5591,3865,0,0,3761,'B',400.00,0.00,'7','axis bank','','37448','','0000-00-00','scan  ','',6638,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 19:19:23','','0000-00-00 00:00:00',0),(6821,0,0,'H','2526','','P',6821,0,0,'2025-12-08',5588,3833,0,262,0,'A',30000.00,0.00,'7','other bank','','2353','','0000-00-00','','',7004,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-08 19:20:40','riya','2025-12-11 13:06:37',0),(6822,0,0,'H','2526','','',6822,0,0,'2025-12-08',5594,2318,0,0,2261,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6639,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 19:24:41','','0000-00-00 00:00:00',0),(6823,0,0,'H','2526','','',6823,0,0,'2025-12-08',5593,3866,0,0,3762,'B',500.00,0.00,'7','ICICI BANK','','23368','','0000-00-00','SCAN','',6640,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 19:26:07','','0000-00-00 00:00:00',0),(6824,0,0,'H','2526','','',6824,0,0,'2025-12-08',5595,3867,0,0,3763,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6641,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 19:29:28','','0000-00-00 00:00:00',0),(6825,0,0,'H','2526','','',6825,0,0,'2025-12-08',5589,3864,0,0,3760,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6642,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 19:31:55','','0000-00-00 00:00:00',0),(6826,0,0,'H','2526','','',6826,0,0,'2025-12-08',5596,3627,0,0,3525,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6643,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 19:33:23','','0000-00-00 00:00:00',0),(6827,0,0,'H','2526','','',6827,0,0,'2025-12-08',5597,3399,0,0,3310,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6644,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-08 19:39:11','','0000-00-00 00:00:00',0),(6828,0,0,'H','2526','','',6828,0,0,'2025-12-08',5598,2729,0,0,2659,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6645,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 19:46:52','','0000-00-00 00:00:00',0),(6829,0,0,'H','2526','','',6829,0,0,'2025-12-08',5593,3866,0,0,3762,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6646,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-08 19:53:49','','0000-00-00 00:00:00',0),(6830,0,0,'H','2526','','',6830,0,0,'2025-12-08',3641,2705,0,175,0,'B',70006.00,0.00,'7','other bank','','175','','0000-00-00','','',6647,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-08 20:09:45','','0000-00-00 00:00:00',0),(6831,0,0,'H','2526','','',6831,0,0,'2025-12-08',3114,2367,0,151,2310,'B',75941.00,0.00,'1','HDFC ERGO','','151','','0000-00-00','','',6648,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-08 20:11:18','','0000-00-00 00:00:00',0),(6832,0,0,'H','2526','','',6832,0,0,'2025-12-08',1369,1158,0,87,0,'B',101655.00,0.00,'1','HDFC ERGO','','87','','0000-00-00','','',6649,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(6833,0,0,'H','2526','','',6833,0,0,'2025-12-08',1443,1189,0,92,1149,'B',125169.00,0.00,'1','HDFC ERGO','','92','','0000-00-00','','',6650,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(6834,0,0,'H','2526','','',6834,0,0,'2025-12-08',5600,3868,0,0,3764,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6651,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-08 20:14:36','','0000-00-00 00:00:00',0),(6835,0,0,'H','2526','','',6835,0,0,'2025-12-08',2395,1920,0,129,0,'B',215075.00,0.00,'7','HDFC ERGO','','129','','0000-00-00','','',6652,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(6836,0,0,'H','2526','','',6836,0,0,'2025-12-08',2825,2209,0,144,0,'B',80491.00,0.00,'1','HDFC ERGO','','144','','0000-00-00','','',6653,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-08 20:17:35','','0000-00-00 00:00:00',0),(6837,0,0,'H','2526','','',6837,0,0,'2025-12-08',687,508,0,54,482,'B',48913.00,0.00,'1','BAJAJ ALLIANZ','','54','','0000-00-00','','',6654,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-08 20:19:07','','0000-00-00 00:00:00',0),(6838,0,0,'H','2526','','',6838,0,0,'2025-12-08',2556,2031,0,132,0,'B',59467.00,0.00,'1','BAJAJ ALLIANZ','','132','','0000-00-00','','',6655,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-08 20:20:19','','0000-00-00 00:00:00',0),(6839,0,0,'H','2526','','',6839,0,0,'2025-12-08',5601,3869,0,0,3765,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',6656,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-08 20:21:35','','0000-00-00 00:00:00',0),(6840,0,0,'H','2526','','',6840,0,0,'2025-12-08',5601,3869,0,0,3765,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6657,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-08 20:59:04','','0000-00-00 00:00:00',0),(6841,0,0,'H','2526','','P',6841,0,0,'2025-12-08',5338,3720,0,253,0,'A',15300.00,0.00,'CSH','','','','','0000-00-00','','',6659,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-08 21:18:36','vishal','2025-12-08 21:18:53',0),(6842,0,0,'H','2526','','',6842,0,0,'2025-12-09',5602,3870,0,0,3766,'B',1400.00,0.00,'CSH','','','','','0000-00-00','','',6660,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 08:57:44','','0000-00-00 00:00:00',0),(6843,0,0,'H','2526','','P',6843,0,0,'2025-12-09',5603,3871,0,263,0,'A',10000.00,0.00,'7','other bank','','7765','','0000-00-00','','',6941,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-09 09:45:44','vishal','2025-12-10 21:25:32',0),(6844,0,0,'H','2526','','',6844,0,0,'2025-12-09',5605,367,0,0,351,'B',500.00,0.00,'7','idfc bank','','34035','','0000-00-00','scan','',6661,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 09:51:21','','0000-00-00 00:00:00',0),(6845,0,0,'H','2526','','',6845,0,0,'2025-12-09',5606,3820,0,0,3718,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',6662,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 09:55:09','','0000-00-00 00:00:00',0),(6846,0,0,'H','2526','','',6846,0,0,'2025-12-09',5607,3720,0,0,3767,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6663,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 10:04:20','','0000-00-00 00:00:00',0),(6847,0,0,'H','2526','','',6847,0,0,'2025-12-09',5609,3872,0,0,3768,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6664,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 10:06:20','','0000-00-00 00:00:00',0),(6848,0,0,'H','2526','','',6848,0,0,'2025-12-09',5608,3721,0,0,3720,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6665,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 10:06:25','','0000-00-00 00:00:00',0),(6849,0,0,'H','2526','','',6849,0,0,'2025-12-09',5610,3873,0,0,3769,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6666,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 10:10:31','','0000-00-00 00:00:00',0),(6850,0,0,'H','2526','','',6850,0,0,'2025-12-09',5611,2950,0,0,2913,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6667,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-09 10:10:53','','0000-00-00 00:00:00',0),(6851,0,0,'H','2526','','',6851,0,0,'2025-12-09',5612,2696,0,0,2628,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6668,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 10:11:28','','0000-00-00 00:00:00',0),(6852,0,0,'H','2526','','',6852,0,0,'2025-12-09',5613,3325,0,0,3243,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6670,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 10:13:08','','0000-00-00 00:00:00',0),(6853,0,0,'H','2526','','',6853,0,0,'2025-12-09',5614,3874,0,0,3770,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6671,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 10:14:37','','0000-00-00 00:00:00',0),(6854,0,0,'H','2526','','',6854,0,0,'2025-12-09',5615,3875,0,0,3771,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6672,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 10:17:03','','0000-00-00 00:00:00',0),(6855,0,0,'H','2526','','',6855,0,0,'2025-12-09',5616,3876,0,0,3772,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6673,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 10:17:22','','0000-00-00 00:00:00',0),(6856,0,0,'H','2526','','',6856,0,0,'2025-12-09',5617,3877,0,0,3773,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6674,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 10:19:36','','0000-00-00 00:00:00',0),(6857,0,0,'H','2526','','',6857,0,0,'2025-12-09',5618,897,0,0,865,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6675,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 10:26:42','','0000-00-00 00:00:00',0),(6858,0,0,'H','2526','','',6858,0,0,'2025-12-09',5619,3878,0,0,3774,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6676,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 10:29:16','','0000-00-00 00:00:00',0),(6859,0,0,'H','2526','','',6859,0,0,'2025-12-09',5620,3879,0,0,3775,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6677,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 10:35:33','','0000-00-00 00:00:00',0),(6860,0,0,'H','2526','','',6860,0,0,'2025-12-09',5622,3880,0,0,3776,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6678,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 10:42:06','','0000-00-00 00:00:00',0),(6861,0,0,'H','2526','','',6861,0,0,'2025-12-09',5623,2449,0,0,2392,'B',400.00,0.00,'7','icici','','47773','','0000-00-00','scan','',6679,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 10:44:20','','0000-00-00 00:00:00',0),(6862,0,0,'H','2526','','',6862,0,0,'2025-12-09',5625,289,0,0,273,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6680,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 10:47:52','','0000-00-00 00:00:00',0),(6863,0,0,'H','2526','','',6863,0,0,'2025-12-09',5626,3881,0,0,3777,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6681,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 10:50:59','','0000-00-00 00:00:00',0),(6864,0,0,'H','2526','','',6864,0,0,'2025-12-09',5627,3882,0,0,3778,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6682,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 10:51:56','','0000-00-00 00:00:00',0),(6865,0,0,'H','2526','','',6865,0,0,'2025-12-09',5628,3883,0,0,3779,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6683,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-09 10:52:19','','0000-00-00 00:00:00',0),(6866,0,0,'H','2526','','',6866,0,0,'2025-12-09',5629,3884,0,0,3780,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6684,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 10:53:16','','0000-00-00 00:00:00',0),(6867,0,0,'H','2526','','',6867,0,0,'2025-12-09',5630,3885,0,0,3781,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6685,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 10:58:04','','0000-00-00 00:00:00',0),(6868,0,0,'H','2526','','',6868,0,0,'2025-12-09',5631,3886,0,0,3782,'B',750.00,0.00,'7','BOI BANK','','41442','','0000-00-00','scan ','',6686,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 10:59:29','','0000-00-00 00:00:00',0),(6869,0,0,'H','2526','','',6869,0,0,'2025-12-09',5632,3887,0,0,3783,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6687,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 10:59:54','','0000-00-00 00:00:00',0),(6870,0,0,'H','2526','','',6870,0,0,'2025-12-09',5634,3889,0,0,3785,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6688,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 11:01:34','','0000-00-00 00:00:00',0),(6871,0,0,'H','2526','','',6871,0,0,'2025-12-09',5633,3888,0,0,3784,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6689,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 11:03:14','','0000-00-00 00:00:00',0),(6872,0,0,'H','2526','','',6872,0,0,'2025-12-09',5605,367,0,0,351,'B',500.00,0.00,'7','axis','','02572','','0000-00-00','scan','',6690,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 11:04:28','','0000-00-00 00:00:00',0),(6873,0,0,'H','2526','','',6873,0,0,'2025-12-09',5635,514,0,0,489,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6691,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-09 11:04:50','','0000-00-00 00:00:00',0),(6874,0,0,'H','2526','','',6874,0,0,'2025-12-09',5636,3890,0,0,3786,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6692,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 11:06:24','','0000-00-00 00:00:00',0),(6875,0,0,'H','2526','','',6875,0,0,'2025-12-09',5637,310,0,0,294,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6693,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 11:06:52','','0000-00-00 00:00:00',0),(6876,0,0,'H','2526','','',6876,0,0,'2025-12-09',5639,3891,0,0,3787,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6694,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 11:17:55','','0000-00-00 00:00:00',0),(6877,0,0,'H','2526','','P',6877,0,0,'2025-12-09',5445,3780,0,258,0,'A',12000.00,0.00,'7','rnsb','','4573','','0000-00-00','','',7011,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-09 11:18:42','riya','2025-12-11 13:32:03',0),(6878,0,0,'H','2526','','',6878,0,0,'2025-12-09',5640,3892,0,0,3788,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6695,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-09 11:18:57','','0000-00-00 00:00:00',0),(6879,0,0,'H','2526','','',6879,0,0,'2025-12-09',5622,3880,0,0,3776,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',6696,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 11:21:35','','0000-00-00 00:00:00',0),(6880,0,0,'H','2526','','',6880,0,0,'2025-12-09',5641,3893,0,0,3789,'B',900.00,0.00,'7','sbi','','89089','','0000-00-00','scan','',6697,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 11:27:09','','0000-00-00 00:00:00',0),(6881,0,0,'H','2526','','',6881,0,0,'2025-12-09',5642,169,0,0,156,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6698,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 11:28:09','','0000-00-00 00:00:00',0),(6882,0,0,'H','2526','','',6882,0,0,'2025-12-09',5631,3886,0,0,3782,'B',300.00,0.00,'7','BOI','','50178','','0000-00-00','scan ','',6699,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 11:30:45','','0000-00-00 00:00:00',0),(6883,0,0,'H','2526','','',6883,0,0,'2025-12-09',5640,3892,0,0,3788,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6700,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-09 11:36:55','','0000-00-00 00:00:00',0),(6884,0,0,'H','2526','','',6884,0,0,'2025-12-09',5640,3892,0,0,3788,'D',-500.00,0.00,'CSH','','','','','2025-12-09','','',6701,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-09 11:37:45','','0000-00-00 00:00:00',0),(6885,0,0,'H','2526','','',6885,0,0,'2025-12-09',5609,3872,0,0,3768,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',6702,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 11:38:20','','0000-00-00 00:00:00',0),(6886,0,0,'H','2526','','',6886,0,0,'2025-12-09',5640,3892,0,0,3788,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6703,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-09 11:38:45','','0000-00-00 00:00:00',0),(6887,0,0,'H','2526','','',6887,0,0,'2025-12-09',5613,3325,0,0,3243,'D',-500.00,0.00,'CSH','','','','','2025-12-09','','',6704,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 11:41:02','','0000-00-00 00:00:00',0),(6888,0,0,'H','2526','','',6888,0,0,'2025-12-09',5643,2715,0,0,2645,'B',300.00,0.00,'7','SBI','','50458','','0000-00-00','SCAN','',6705,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-09 11:44:30','','0000-00-00 00:00:00',0),(6889,0,0,'H','2526','','P',6889,0,0,'2025-12-09',5175,3636,0,247,0,'A',20000.00,0.00,'CRD','other bank','','0312','','0000-00-00','','',6708,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-09 11:47:07','vishal','2025-12-09 11:48:27',0),(6890,0,0,'H','2526','','',6890,0,0,'2025-12-09',5644,3894,0,0,3790,'B',1500.00,0.00,'7','BOI BANK','','09947','','0000-00-00','scan ','',6706,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 11:47:51','','0000-00-00 00:00:00',0),(6891,0,0,'H','2526','','',6891,0,0,'2025-12-09',5645,3895,0,0,3791,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6707,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 11:48:06','','0000-00-00 00:00:00',0),(6892,0,0,'H','2526','','',6892,0,0,'2025-12-09',5639,3891,0,0,3787,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6709,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 11:50:02','','0000-00-00 00:00:00',0),(6893,0,0,'H','2526','','',6893,0,0,'2025-12-09',5646,3896,0,0,3792,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6710,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 11:51:37','','0000-00-00 00:00:00',0),(6894,0,0,'H','2526','','',6894,0,0,'2025-12-09',5647,3897,0,0,3793,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6711,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 11:57:08','','0000-00-00 00:00:00',0),(6895,0,0,'H','2526','','',6895,0,0,'2025-12-09',5648,3898,0,0,3794,'B',900.00,0.00,'7','sbi','','53521','','0000-00-00','scan','',6712,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 11:58:17','','0000-00-00 00:00:00',0),(6896,0,0,'H','2526','','',6896,0,0,'2025-12-09',5649,1207,0,0,1168,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6713,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 11:59:50','','0000-00-00 00:00:00',0),(6897,0,0,'H','2526','','',6897,0,0,'2025-12-09',5650,3899,0,0,3795,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6714,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 12:00:15','','0000-00-00 00:00:00',0),(6898,0,0,'H','2526','','',6898,0,0,'2025-12-09',5627,3882,0,0,3778,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',6715,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 12:01:35','','0000-00-00 00:00:00',0),(6899,0,0,'H','2526','','',6899,0,0,'2025-12-09',5651,3260,0,0,3174,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6716,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 12:02:47','','0000-00-00 00:00:00',0),(6900,0,0,'H','2526','','',6900,0,0,'2025-12-09',5614,3874,0,0,3770,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',6717,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 12:07:53','','0000-00-00 00:00:00',0),(6901,0,0,'H','2526','','',6901,0,0,'2025-12-09',5652,3900,0,0,3796,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6718,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 12:16:39','','0000-00-00 00:00:00',0),(6902,0,0,'H','2526','','',6902,0,0,'2025-12-09',5624,3691,0,0,3593,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6719,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 12:18:00','','0000-00-00 00:00:00',0),(6903,0,0,'H','2526','','',6903,0,0,'2025-12-09',5624,3691,0,0,3593,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6720,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 12:18:02','','0000-00-00 00:00:00',0),(6904,0,0,'H','2526','','',6904,0,0,'2025-12-09',5638,2201,0,0,2874,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6721,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 12:21:50','','0000-00-00 00:00:00',0),(6905,0,0,'H','2526','','',6905,0,0,'2025-12-09',5654,3901,0,0,3797,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6722,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-09 12:29:23','','0000-00-00 00:00:00',0),(6906,0,0,'H','2526','','',6906,0,0,'2025-12-09',5653,2665,0,0,2603,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6723,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-09 12:29:38','','0000-00-00 00:00:00',0),(6907,0,0,'H','2526','','',6907,0,0,'2025-12-09',5655,3902,0,0,3798,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6725,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 12:32:46','','0000-00-00 00:00:00',0),(6908,0,0,'H','2526','','',6908,0,0,'2025-12-09',5624,3691,0,0,3593,'D',-100.00,0.00,'CSH','','','','','2025-12-09','','',6724,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 12:33:14','','0000-00-00 00:00:00',0),(6909,0,0,'H','2526','','',6909,0,0,'2025-12-09',5617,3877,0,0,3773,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',6726,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 12:35:16','','0000-00-00 00:00:00',0),(6910,0,0,'H','2526','','',6910,0,0,'2025-12-09',5656,2668,0,0,2606,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6727,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 12:46:54','','0000-00-00 00:00:00',0),(6911,0,0,'H','2526','','',6911,0,0,'2025-12-09',5648,3898,0,0,3794,'B',6000.00,0.00,'7','sbi','','97502','','0000-00-00','scan','',6728,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 12:53:44','','0000-00-00 00:00:00',0),(6912,0,0,'H','2526','','',6912,0,0,'2025-12-09',5658,3903,0,0,3799,'B',400.00,0.00,'7','HDFC BANK','','32397','','0000-00-00','','',6729,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 12:58:51','','0000-00-00 00:00:00',0),(6913,0,0,'H','2526','','',6913,0,0,'2025-12-09',5611,2950,0,0,2913,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6730,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-09 12:59:57','','0000-00-00 00:00:00',0),(6914,0,0,'H','2526','','',6914,0,0,'2025-12-09',5659,3904,0,0,3800,'B',850.00,0.00,'CSH','','','','','0000-00-00','','',6732,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-09 13:12:28','','0000-00-00 00:00:00',0),(6915,0,0,'H','2526','','P',6915,0,0,'2025-12-09',5604,624,0,264,0,'A',11100.00,0.00,'CSH','','','','','0000-00-00','','',6733,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-09 13:18:51','vishal','2025-12-09 13:19:23',0),(6916,0,0,'H','2526','','P',6916,0,0,'2025-12-09',5660,3894,0,265,0,'A',15000.00,0.00,'7','icici bank','','60904','','0000-00-00','','',6880,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-09 13:29:17','riya','2025-12-10 13:19:44',0),(6917,0,0,'H','2526','','',6917,0,0,'2025-12-09',5641,3893,0,0,3789,'B',4600.00,0.00,'7','sbi','','96826','','0000-00-00','scan','',6734,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 13:49:43','','0000-00-00 00:00:00',0),(6918,0,0,'H','2526','','',6918,0,0,'2025-12-09',5661,2729,0,0,2659,'B',1400.00,0.00,'CSH','','','','','0000-00-00','','',6735,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 13:49:50','','0000-00-00 00:00:00',0),(6919,0,0,'H','2526','','',6919,0,0,'2025-12-09',5662,3905,0,0,3801,'B',1900.00,0.00,'7','icici bank','','92082','','0000-00-00','scan','',6738,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 14:55:55','','0000-00-00 00:00:00',0),(6920,0,0,'H','2526','','',6920,0,0,'2025-12-09',5664,1587,0,0,1544,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6739,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 16:36:26','','0000-00-00 00:00:00',0),(6921,0,0,'H','2526','','',6921,0,0,'2025-12-09',5665,3885,0,0,3781,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',6740,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 16:41:53','','0000-00-00 00:00:00',0),(6922,0,0,'H','2526','','',6922,0,0,'2025-12-09',5666,3207,0,0,3121,'B',400.00,0.00,'CRD','icici','','81427','','0000-00-00','card','',6741,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 16:50:48','','0000-00-00 00:00:00',0),(6923,0,0,'H','2526','','',6923,0,0,'2025-12-09',5667,3876,0,0,3772,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',6742,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 16:53:20','','0000-00-00 00:00:00',0),(6924,0,0,'H','2526','','',6924,0,0,'2025-12-09',5669,3896,0,0,3792,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',6743,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 17:01:18','','0000-00-00 00:00:00',0),(6925,0,0,'H','2526','','',6925,0,0,'2025-12-09',5670,3753,0,0,3650,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',6744,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 17:03:25','','0000-00-00 00:00:00',0),(6926,0,0,'H','2526','','',6926,0,0,'2025-12-09',5668,3907,0,0,3802,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6745,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 17:04:09','','0000-00-00 00:00:00',0),(6927,0,0,'H','2526','','',6927,0,0,'2025-12-09',5671,3908,0,0,3803,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6746,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 17:07:13','','0000-00-00 00:00:00',0),(6928,0,0,'H','2526','','',6928,0,0,'2025-12-09',5672,3909,0,0,3804,'B',500.00,0.00,'7','sbi','','47204','','0000-00-00','scan','',6747,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 17:11:38','','0000-00-00 00:00:00',0),(6929,0,0,'H','2526','','',6929,0,0,'2025-12-09',5673,2872,0,0,2803,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6748,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 17:12:36','','0000-00-00 00:00:00',0),(6930,0,0,'H','2526','','',6930,0,0,'2025-12-09',5674,3002,0,0,2925,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6749,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 17:17:15','','0000-00-00 00:00:00',0),(6931,0,0,'H','2526','','',6931,0,0,'2025-12-09',5668,3907,0,0,3802,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',6750,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 17:21:58','','0000-00-00 00:00:00',0),(6932,0,0,'H','2526','','',6932,0,0,'2025-12-09',5676,3910,0,0,3805,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6751,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 17:26:17','','0000-00-00 00:00:00',0),(6933,0,0,'H','2526','','',6933,0,0,'2025-12-09',5677,3911,0,0,3806,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6752,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 17:37:22','','0000-00-00 00:00:00',0),(6934,0,0,'H','2526','','',6934,0,0,'2025-12-09',5679,3913,0,0,3807,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6753,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 17:47:28','','0000-00-00 00:00:00',0),(6935,0,0,'H','2526','','P',6935,0,0,'2025-12-09',5678,3912,0,267,0,'A',5000.00,0.00,'7','SHRI RAJKOT SAHKARI BANK','','570916783969','','0000-00-00','SCAN','',7265,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-09 17:47:37','riya','2025-12-13 11:05:31',0),(6936,0,0,'H','2526','','',6936,0,0,'2025-12-09',5680,3914,0,0,3808,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6754,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 17:51:50','','0000-00-00 00:00:00',0),(6937,0,0,'H','2526','','',6937,0,0,'2025-12-09',5681,3915,0,0,3809,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6755,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 17:55:39','','0000-00-00 00:00:00',0),(6938,0,0,'H','2526','','',6938,0,0,'2025-12-09',5682,3416,0,0,3324,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6756,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 17:59:53','','0000-00-00 00:00:00',0),(6939,0,0,'H','2526','','',6939,0,0,'2025-12-09',5683,1873,0,0,1827,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6757,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 18:00:12','','0000-00-00 00:00:00',0),(6940,0,0,'H','2526','','',6940,0,0,'2025-12-09',5675,2996,0,0,2919,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6758,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 18:00:32','','0000-00-00 00:00:00',0),(6941,0,0,'H','2526','','',6941,0,0,'2025-12-09',5684,1788,0,0,2101,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6759,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 18:02:44','','0000-00-00 00:00:00',0),(6942,0,0,'H','2526','','',6942,0,0,'2025-12-09',5685,3916,0,0,3810,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6760,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 18:04:12','','0000-00-00 00:00:00',0),(6943,0,0,'H','2526','','',6943,0,0,'2025-12-09',5686,3917,0,0,3811,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6761,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 18:04:42','','0000-00-00 00:00:00',0),(6944,0,0,'H','2526','','',6944,0,0,'2025-12-09',5687,3918,0,0,3812,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6762,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 18:04:50','','0000-00-00 00:00:00',0),(6945,0,0,'H','2526','','',6945,0,0,'2025-12-09',5688,3919,0,0,3813,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6763,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 18:05:50','','0000-00-00 00:00:00',0),(6946,0,0,'H','2526','','',6946,0,0,'2025-12-09',5689,3920,0,0,3814,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6764,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 18:08:04','','0000-00-00 00:00:00',0),(6947,0,0,'H','2526','','',6947,0,0,'2025-12-09',5691,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6765,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 18:14:33','','0000-00-00 00:00:00',0),(6948,0,0,'H','2526','','',6948,0,0,'2025-12-09',5690,3921,0,0,3815,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6766,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 18:14:56','','0000-00-00 00:00:00',0),(6949,0,0,'H','2526','','',6949,0,0,'2025-12-09',5692,3922,0,0,3816,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6767,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 18:17:55','','0000-00-00 00:00:00',0),(6950,0,0,'H','2526','','',6950,0,0,'2025-12-09',5694,1721,0,0,1676,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6768,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 18:18:29','','0000-00-00 00:00:00',0),(6951,0,0,'H','2526','','',6951,0,0,'2025-12-09',5693,3923,0,0,3817,'B',750.00,0.00,'7','SBI BANK','','79509','','0000-00-00','scan ','',6769,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 18:19:42','','0000-00-00 00:00:00',0),(6952,0,0,'H','2526','','',6952,0,0,'2025-12-09',5695,3924,0,0,3818,'B',400.00,0.00,'7','HDFC BANK','','84680','','0000-00-00','scan ','',6770,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 18:22:38','','0000-00-00 00:00:00',0),(6953,0,0,'H','2526','','',6953,0,0,'2025-12-09',5697,3925,0,0,3820,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6771,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 18:25:00','','0000-00-00 00:00:00',0),(6954,0,0,'H','2526','','',6954,0,0,'2025-12-09',5698,3926,0,0,3821,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6772,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 18:28:33','','0000-00-00 00:00:00',0),(6955,0,0,'H','2526','','',6955,0,0,'2025-12-09',5699,3927,0,0,3822,'B',400.00,0.00,'7','kotak','','69506','','0000-00-00','scan                          ','',6773,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 18:33:53','','0000-00-00 00:00:00',0),(6956,0,0,'H','2526','','',6956,0,0,'2025-12-09',5700,1298,0,0,1257,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6774,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 18:34:46','','0000-00-00 00:00:00',0),(6957,0,0,'H','2526','','',6957,0,0,'2025-12-09',5687,3918,0,0,3812,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',6775,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 18:38:31','','0000-00-00 00:00:00',0),(6958,0,0,'H','2526','','',6958,0,0,'2025-12-09',5701,3928,0,0,3823,'B',500.00,0.00,'7','central bank','','48731','','0000-00-00','scan  ','',6776,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 18:40:28','','0000-00-00 00:00:00',0),(6959,0,0,'H','2526','','',6959,0,0,'2025-12-09',5702,922,0,0,890,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6777,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 18:41:12','','0000-00-00 00:00:00',0),(6960,0,0,'H','2526','','',6960,0,0,'2025-12-09',5688,3919,0,0,3813,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',6778,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 18:44:15','','0000-00-00 00:00:00',0),(6961,0,0,'H','2526','','P',6961,0,0,'2025-12-09',5663,3906,0,266,0,'A',15000.00,0.00,'7','SBI','','534310535402','','0000-00-00','SCAN','',7156,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-09 18:44:28','riya','2025-12-12 15:10:09',0),(6962,0,0,'H','2526','','',6962,0,0,'2025-12-09',5703,3929,0,0,3824,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6779,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 18:47:53','','0000-00-00 00:00:00',0),(6963,0,0,'H','2526','','',6963,0,0,'2025-12-09',5696,3349,0,0,3819,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6780,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 18:48:42','','0000-00-00 00:00:00',0),(6964,0,0,'H','2526','','',6964,0,0,'2025-12-09',5704,3930,0,0,3825,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6781,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 18:48:58','','0000-00-00 00:00:00',0),(6965,0,0,'H','2526','','',6965,0,0,'2025-12-09',5705,1351,0,0,1312,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6782,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 18:50:49','','0000-00-00 00:00:00',0),(6966,0,0,'H','2526','','',6966,0,0,'2025-12-09',5682,3416,0,0,3324,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6783,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 18:51:29','','0000-00-00 00:00:00',0),(6967,0,0,'H','2526','','',6967,0,0,'2025-12-09',5706,1032,0,0,1000,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6784,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 18:55:18','','0000-00-00 00:00:00',0),(6968,0,0,'H','2526','','',6968,0,0,'2025-12-09',5707,3394,0,0,3305,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6785,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 18:56:16','','0000-00-00 00:00:00',0),(6969,0,0,'H','2526','','P',6969,0,0,'2025-12-09',5307,3700,0,250,0,'A',10000.00,0.00,'7','SBI','','570931761169','','0000-00-00','SCAN','',7019,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-09 18:56:28','riya','2025-12-11 15:06:15',0),(6970,0,0,'H','2526','','',6970,0,0,'2025-12-09',5708,3411,0,0,3319,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6786,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 18:57:31','','0000-00-00 00:00:00',0),(6971,0,0,'H','2526','','P',6971,0,0,'2025-12-09',5425,3764,0,255,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',7016,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-09 18:59:40','riya','2025-12-11 14:14:08',0),(6972,0,0,'H','2526','','',6972,0,0,'2025-12-09',5710,3931,0,0,3826,'B',700.00,0.00,'7','HDFC BANK','','20024','','0000-00-00','scan ','',6787,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 19:01:53','','0000-00-00 00:00:00',0),(6973,0,0,'H','2526','','P',6973,0,0,'2025-12-09',5163,3630,0,245,0,'A',10000.00,0.00,'7','BANK OF BARODA','','534313735059','','0000-00-00','SCAN','',7222,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-09 19:02:59','vishal','2025-12-12 19:36:58',0),(6974,0,0,'H','2526','','P',6974,0,0,'2025-12-09',5583,3863,0,261,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',7352,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-09 19:04:15','riya','2025-12-14 13:19:53',0),(6975,0,0,'H','2526','','',6975,0,0,'2025-12-09',5685,3916,0,0,3810,'B',4000.00,0.00,'7','bob','','79802','','0000-00-00','scan','',6788,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 19:06:07','','0000-00-00 00:00:00',0),(6976,0,0,'H','2526','','',6976,0,0,'2025-12-09',5712,3367,0,0,3278,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6789,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 19:11:49','','0000-00-00 00:00:00',0),(6977,0,0,'H','2526','','',6977,0,0,'2025-12-09',5713,3933,0,0,3828,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6790,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 19:13:04','','0000-00-00 00:00:00',0),(6978,0,0,'H','2526','','',6978,0,0,'2025-12-09',5714,3399,0,0,3310,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6791,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 19:14:08','','0000-00-00 00:00:00',0),(6979,0,0,'H','2526','','',6979,0,0,'2025-12-09',5702,922,0,0,890,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6792,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-09 19:14:36','','0000-00-00 00:00:00',0),(6980,0,0,'H','2526','','',6980,0,0,'2025-12-09',5716,3934,0,0,3829,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6793,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-09 19:16:06','','0000-00-00 00:00:00',0),(6981,0,0,'H','2526','','',6981,0,0,'2025-12-09',5717,3935,0,0,3830,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6794,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 19:27:17','','0000-00-00 00:00:00',0),(6982,0,0,'H','2526','','',6982,0,0,'2025-12-09',5709,2024,0,0,1976,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6795,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 19:30:50','','0000-00-00 00:00:00',0),(6983,0,0,'H','2526','','',6983,0,0,'2025-12-09',5718,3598,0,0,3660,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6796,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-09 19:32:54','','0000-00-00 00:00:00',0),(6984,0,0,'H','2526','','P',6984,0,0,'2025-12-09',4017,2937,0,187,0,'A',35000.00,0.00,'7','icici bank','','570986597326','','0000-00-00','SCAN','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-09 19:40:12','riya','2025-12-09 19:40:12',0),(6985,0,0,'H','2526','','',6985,0,0,'2025-12-09',5719,3936,0,0,3831,'B',400.00,0.00,'7','  hdfc','','10613','','0000-00-00','scan ','',6797,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-09 19:42:58','','0000-00-00 00:00:00',0),(6986,0,0,'H','2526','','',6986,0,0,'2025-12-09',5720,3937,0,0,3832,'B',500.00,0.00,'7','bob','','14299','','0000-00-00','scan ','',6798,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-09 19:53:49','','0000-00-00 00:00:00',0),(6987,0,0,'H','2526','','',6987,0,0,'2025-12-09',5711,3932,0,0,3827,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6799,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 20:00:16','','0000-00-00 00:00:00',0),(6988,0,0,'H','2526','','',6988,0,0,'2025-12-09',5713,3933,0,0,3828,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',6800,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 20:05:21','','0000-00-00 00:00:00',0),(6989,0,0,'H','2526','','P',6989,0,0,'2025-12-09',5316,3706,0,251,0,'A',15000.00,0.00,'7','AU SMALL FINANCE BANK','','115386652957','','0000-00-00','SCAN','',6883,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-09 20:15:03','riya','2025-12-10 13:41:36',0),(6990,0,0,'H','2526','','',6990,0,0,'2025-12-09',5721,3720,0,0,3767,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6801,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-09 20:16:59','','0000-00-00 00:00:00',0),(6991,0,0,'H','2526','','P',6991,0,0,'2025-12-09',5722,3938,0,268,0,'A',6000.00,0.00,'CRD','HDFC','','16574423','','0000-00-00','CARD','',7002,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-09 20:39:21','riya','2025-12-11 12:59:46',0),(6992,0,0,'H','2526','','P',6992,0,0,'2025-12-09',5723,3939,0,269,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',6904,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-09 21:23:17','riya','2025-12-10 17:49:52',0),(6993,0,0,'H','2526','','',6993,0,0,'2025-12-10',5724,3080,0,0,3001,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6802,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 08:51:43','','0000-00-00 00:00:00',0),(6994,0,0,'H','2526','','',6994,0,0,'2025-12-10',5725,3936,0,0,3831,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6803,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-10 08:53:48','','0000-00-00 00:00:00',0),(6995,0,0,'H','2526','','',6995,0,0,'2025-12-10',5726,3940,0,0,3833,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6804,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-10 08:55:44','','0000-00-00 00:00:00',0),(6996,0,0,'H','2526','','',6996,0,0,'2025-12-10',5727,3937,0,0,3832,'B',500.00,0.00,'7','','','','','0000-00-00','','',6805,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-10 08:56:53','','0000-00-00 00:00:00',0),(6997,0,0,'H','2526','','',6997,0,0,'2025-12-10',5726,3940,0,0,3833,'B',450.00,0.00,'7','BANK','','25901','','0000-00-00','scan','',6806,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-10 08:59:08','','0000-00-00 00:00:00',0),(6998,0,0,'H','2526','','',6998,0,0,'2025-12-10',5727,3937,0,0,3832,'D',-500.00,0.00,'7','BOB BANK','','14427','','2025-12-10','','',6807,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-10 09:01:05','','0000-00-00 00:00:00',0),(6999,0,0,'H','2526','','',6999,0,0,'2025-12-10',5727,3937,0,0,3832,'B',500.00,0.00,'7','BOB BANK','','14427','','0000-00-00','scan','',6808,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-10 09:01:56','','0000-00-00 00:00:00',0),(7000,0,0,'H','2526','','',7000,0,0,'2025-12-10',5725,3936,0,0,3831,'B',450.00,0.00,'CSH','','','','','0000-00-00','','',6809,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 09:09:21','','0000-00-00 00:00:00',0),(7001,0,0,'H','2526','','P',7001,0,0,'2025-12-10',5728,3941,0,270,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',6936,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-10 09:44:45','vishal','2025-12-10 20:33:52',0),(7002,0,0,'H','2526','','',7002,0,0,'2025-12-10',5727,3937,0,0,3832,'D',-500.00,0.00,'7','bob','','14427','','2025-12-10','SCAN                          ','',6810,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 09:47:05','','0000-00-00 00:00:00',0),(7003,0,0,'H','2526','','',7003,0,0,'2025-12-10',5729,2075,0,0,2022,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6811,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-10 09:47:15','','0000-00-00 00:00:00',0),(7004,0,0,'H','2526','','',7004,0,0,'2025-12-10',5730,3942,0,0,3834,'B',1500.00,0.00,'7','SBI BANK','','52663','','0000-00-00','scan ','',6812,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-10 09:53:38','','0000-00-00 00:00:00',0),(7005,0,0,'H','2526','','',7005,0,0,'2025-12-10',5731,1667,0,0,1622,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6813,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 09:57:02','','0000-00-00 00:00:00',0),(7006,0,0,'H','2526','','',7006,0,0,'2025-12-10',5733,3944,0,0,3835,'B',800.00,0.00,'7','BOB','','57970','','0000-00-00','SCAN','',6814,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-10 10:11:35','','0000-00-00 00:00:00',0),(7007,0,0,'H','2526','','',7007,0,0,'2025-12-10',5735,3945,0,0,3836,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6815,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-10 10:11:49','','0000-00-00 00:00:00',0),(7008,0,0,'H','2526','','',7008,0,0,'2025-12-10',5736,3284,0,0,3198,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6816,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 10:11:56','','0000-00-00 00:00:00',0),(7009,0,0,'H','2526','','P',7009,0,0,'2025-12-10',5732,3943,0,271,0,'A',8000.00,0.00,'CSH','','','','','0000-00-00','','',6937,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-10 10:15:18','vishal','2025-12-10 20:38:54',0),(7010,0,0,'H','2526','','',7010,0,0,'2025-12-10',5738,3946,0,0,3837,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6817,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 10:19:33','','0000-00-00 00:00:00',0),(7011,0,0,'H','2526','','P',7011,0,0,'2025-12-10',5588,3833,0,262,0,'A',30000.00,0.00,'7','union bank','','281728545180','','0000-00-00','SCAN','',7004,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-10 10:22:44','riya','2025-12-11 13:06:37',0),(7012,0,0,'H','2526','','',7012,0,0,'2025-12-10',5739,3721,0,0,3720,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6818,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 10:22:45','','0000-00-00 00:00:00',0),(7013,0,0,'H','2526','','',7013,0,0,'2025-12-10',5740,2231,0,0,2176,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6819,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 10:23:06','','0000-00-00 00:00:00',0),(7014,0,0,'H','2526','','',7014,0,0,'2025-12-10',5741,3947,0,0,3838,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6820,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 10:24:47','','0000-00-00 00:00:00',0),(7015,0,0,'H','2526','','',7015,0,0,'2025-12-10',5742,3948,0,0,3839,'B',1350.00,0.00,'7','icici','','51566','','0000-00-00','scan     ','',6821,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 10:30:08','','0000-00-00 00:00:00',0),(7016,0,0,'H','2526','','',7016,0,0,'2025-12-10',5743,3949,0,0,3840,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6822,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 10:30:22','','0000-00-00 00:00:00',0),(7017,0,0,'H','2526','','',7017,0,0,'2025-12-10',5746,3950,0,0,3841,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6823,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-10 10:33:35','','0000-00-00 00:00:00',0),(7018,0,0,'H','2526','','',7018,0,0,'2025-12-10',5747,894,0,0,862,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6824,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 10:34:06','','0000-00-00 00:00:00',0),(7019,0,0,'H','2526','','',7019,0,0,'2025-12-10',5745,892,0,0,860,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6825,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 10:34:27','','0000-00-00 00:00:00',0),(7020,0,0,'H','2526','','',7020,0,0,'2025-12-10',5749,3951,0,0,3842,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6826,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 10:43:11','','0000-00-00 00:00:00',0),(7021,0,0,'H','2526','','',7021,0,0,'2025-12-10',5750,3331,0,0,3249,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6827,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-10 10:46:22','','0000-00-00 00:00:00',0),(7022,0,0,'H','2526','','',7022,0,0,'2025-12-10',5734,3295,0,0,3208,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6828,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 10:47:03','','0000-00-00 00:00:00',0),(7023,0,0,'H','2526','','',7023,0,0,'2025-12-10',5737,3705,0,0,3605,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6829,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 10:50:16','','0000-00-00 00:00:00',0),(7024,0,0,'H','2526','','',7024,0,0,'2025-12-10',5751,3952,0,0,3843,'B',700.00,0.00,'7','sbi','','77873','','0000-00-00','scan','',6830,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 10:53:16','','0000-00-00 00:00:00',0),(7025,0,0,'H','2526','','',7025,0,0,'2025-12-10',5752,3953,0,0,3844,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6831,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 10:59:14','','0000-00-00 00:00:00',0),(7026,0,0,'H','2526','','',7026,0,0,'2025-12-10',5729,2075,0,0,2022,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',6832,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 11:02:16','','0000-00-00 00:00:00',0),(7027,0,0,'H','2526','','',7027,0,0,'2025-12-10',5754,3954,0,0,3845,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6833,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-10 11:03:33','','0000-00-00 00:00:00',0),(7028,0,0,'H','2526','','',7028,0,0,'2025-12-10',5755,2115,0,0,2061,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6834,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 11:07:05','','0000-00-00 00:00:00',0),(7029,0,0,'H','2526','','',7029,0,0,'2025-12-10',5756,3955,0,0,3846,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6835,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-10 11:07:22','','0000-00-00 00:00:00',0),(7030,0,0,'H','2526','','',7030,0,0,'2025-12-10',5757,3956,0,0,3847,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6836,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 11:08:27','','0000-00-00 00:00:00',0),(7031,0,0,'H','2526','','',7031,0,0,'2025-12-10',5758,3397,0,0,3308,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6837,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 11:09:47','','0000-00-00 00:00:00',0),(7032,0,0,'H','2526','','',7032,0,0,'2025-12-10',5759,546,0,0,520,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6838,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 11:11:47','','0000-00-00 00:00:00',0),(7033,0,0,'H','2526','','',7033,0,0,'2025-12-10',5760,3957,0,0,3848,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6839,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-10 11:12:53','','0000-00-00 00:00:00',0),(7034,0,0,'H','2526','','',7034,0,0,'2025-11-29',4677,3337,0,0,3254,'D',-200.00,0.00,'7','sbi','','30179','','2025-11-29','','',5575,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 11:13:07','','0000-00-00 00:00:00',0),(7035,0,0,'H','2526','','',7035,0,0,'2025-12-10',5727,3937,0,0,3832,'B',500.00,0.00,'7','bob','','14427','','0000-00-00','scan','',6840,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 11:14:03','','0000-00-00 00:00:00',0),(7036,0,0,'H','2526','','',7036,0,0,'2025-12-10',5761,3958,0,0,3849,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6841,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 11:14:42','','0000-00-00 00:00:00',0),(7037,0,0,'H','2526','','',7037,0,0,'2025-12-10',5762,3394,0,0,3305,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6842,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-10 11:17:02','','0000-00-00 00:00:00',0),(7038,0,0,'H','2526','','',7038,0,0,'2025-12-10',5763,2808,0,0,2738,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6843,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 11:25:51','','0000-00-00 00:00:00',0),(7039,0,0,'H','2526','','',7039,0,0,'2025-12-10',5764,3959,0,0,3850,'B',300.00,0.00,'7','rajkot nagrik','','48010','','0000-00-00','scan ','',6844,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-10 11:29:11','','0000-00-00 00:00:00',0),(7040,0,0,'H','2526','','',7040,0,0,'2025-12-10',5749,3951,0,0,3842,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',6845,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 11:30:17','','0000-00-00 00:00:00',0),(7041,0,0,'H','2526','','',7041,0,0,'2025-12-10',5765,3960,0,0,3851,'B',750.00,0.00,'7','hdfc','','39235','','0000-00-00','scan  ','',6846,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 11:31:06','','0000-00-00 00:00:00',0),(7042,0,0,'H','2526','','',7042,0,0,'2025-12-10',5766,2351,0,0,2294,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6847,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 11:32:23','','0000-00-00 00:00:00',0),(7043,0,0,'H','2526','','',7043,0,0,'2025-12-10',5767,1302,0,0,1261,'B',400.00,0.00,'7','IDFC BANK','','33346','','0000-00-00','scan ','',6848,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-10 11:34:27','','0000-00-00 00:00:00',0),(7044,0,0,'H','2526','','',7044,0,0,'2025-12-10',5768,3961,0,0,3852,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6849,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 11:37:16','','0000-00-00 00:00:00',0),(7045,0,0,'H','2526','','',7045,0,0,'2025-12-10',5769,3962,0,0,3853,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6850,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 11:37:45','','0000-00-00 00:00:00',0),(7046,0,0,'H','2526','','',7046,0,0,'2025-12-10',5770,1427,0,0,1386,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6851,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 11:40:03','','0000-00-00 00:00:00',0),(7047,0,0,'H','2526','','',7047,0,0,'2025-12-10',5771,3963,0,0,3854,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6852,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-10 11:40:43','','0000-00-00 00:00:00',0),(7048,0,0,'H','2526','','',7048,0,0,'2025-12-10',5772,3964,0,0,3855,'B',900.00,0.00,'7','sbi','','41188','','0000-00-00','scan','',6853,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 11:43:40','','0000-00-00 00:00:00',0),(7049,0,0,'H','2526','','',7049,0,0,'2025-12-10',5773,3965,0,0,3856,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6854,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 11:46:39','','0000-00-00 00:00:00',0),(7050,0,0,'H','2526','','',7050,0,0,'2025-12-10',5775,3967,0,0,3858,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6855,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 11:51:52','','0000-00-00 00:00:00',0),(7051,0,0,'H','2526','','',7051,0,0,'2025-12-10',5776,3968,0,0,3859,'B',500.00,0.00,'7','axis bank','','71069','','0000-00-00','scan ','',6857,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-10 12:02:16','','0000-00-00 00:00:00',0),(7052,0,0,'H','2526','','',7052,0,0,'2025-12-10',5760,3957,0,0,3848,'B',5600.00,0.00,'CSH','','','','','0000-00-00','','',6858,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 12:02:46','','0000-00-00 00:00:00',0),(7053,0,0,'H','2526','','',7053,0,0,'2025-12-10',5777,3353,0,0,3265,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6859,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-10 12:02:51','','0000-00-00 00:00:00',0),(7054,0,0,'H','2526','','',7054,0,0,'2025-12-10',5778,3969,0,0,3860,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6860,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-10 12:07:55','','0000-00-00 00:00:00',0),(7055,0,0,'H','2526','','',7055,0,0,'2025-12-10',5779,3343,0,0,3861,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6861,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 12:07:59','','0000-00-00 00:00:00',0),(7056,0,0,'H','2526','','',7056,0,0,'2025-12-10',5780,1267,0,0,1226,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6862,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 12:08:50','','0000-00-00 00:00:00',0),(7057,0,0,'H','2526','','',7057,0,0,'2025-12-10',5781,3970,0,0,3862,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6863,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-10 12:09:49','','0000-00-00 00:00:00',0),(7058,0,0,'H','2526','','',7058,0,0,'2025-12-10',5782,3617,0,0,3516,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6864,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-10 12:12:34','','0000-00-00 00:00:00',0),(7059,0,0,'H','2526','','',7059,0,0,'2025-12-10',5783,206,0,0,193,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6865,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 12:17:14','','0000-00-00 00:00:00',0),(7060,0,0,'H','2526','','',7060,0,0,'2025-12-10',5784,3971,0,0,3863,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6866,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-10 12:21:30','','0000-00-00 00:00:00',0),(7061,0,0,'H','2526','','',7061,0,0,'2025-12-10',5768,3961,0,0,3852,'B',4600.00,0.00,'7','bob','','46922','','0000-00-00','scan','',6867,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 12:24:53','','0000-00-00 00:00:00',0),(7062,0,0,'H','2526','','',7062,0,0,'2025-12-10',5786,3973,0,0,3865,'B',400.00,0.00,'7','BOB BANK','','42617','','0000-00-00','scan ','',6868,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-10 12:25:09','','0000-00-00 00:00:00',0),(7063,0,0,'H','2526','','',7063,0,0,'2025-12-10',5785,3972,0,0,3864,'B',400.00,0.00,'7','bob','','42617','','0000-00-00','scan ','',6869,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 12:25:19','','0000-00-00 00:00:00',0),(7064,0,0,'H','2526','','',7064,0,0,'2025-12-10',5787,3974,0,0,3866,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6870,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-10 12:27:27','','0000-00-00 00:00:00',0),(7065,0,0,'H','2526','','',7065,0,0,'2025-12-10',5788,3975,0,0,3867,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6871,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 12:27:30','','0000-00-00 00:00:00',0),(7066,0,0,'H','2526','','',7066,0,0,'2025-12-10',5789,2296,0,0,2240,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6872,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 12:28:49','','0000-00-00 00:00:00',0),(7067,0,0,'H','2526','','',7067,0,0,'2025-12-10',5790,3976,0,0,3868,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6873,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-10 12:29:48','','0000-00-00 00:00:00',0),(7068,0,0,'H','2526','','',7068,0,0,'2025-12-10',5773,3965,0,0,3856,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6874,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 12:32:22','','0000-00-00 00:00:00',0),(7069,0,0,'H','2526','','',7069,0,0,'2025-12-10',5757,3956,0,0,3847,'B',4900.00,0.00,'CSH','','','','','0000-00-00','','',6875,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 12:32:33','','0000-00-00 00:00:00',0),(7070,0,0,'H','2526','','',7070,0,0,'2025-12-10',5790,3976,0,0,3868,'B',350.00,0.00,'CSH','','','','','0000-00-00','','',6876,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-10 12:50:44','','0000-00-00 00:00:00',0),(7071,0,0,'H','2526','','',7071,0,0,'2025-12-10',5788,3975,0,0,3867,'B',4600.00,0.00,'7','HDFC','','12880','','0000-00-00','scan','',6877,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 13:02:19','','0000-00-00 00:00:00',0),(7072,0,0,'H','2526','','P',7072,0,0,'2025-12-10',5791,3977,0,272,0,'A',13000.00,0.00,'CSH','','','','','0000-00-00','','',7023,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-10 13:03:15','riya','2025-12-11 16:18:41',0),(7073,0,0,'H','2526','','',7073,0,0,'2025-12-10',5792,2810,0,0,2740,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6878,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 13:06:19','','0000-00-00 00:00:00',0),(7074,0,0,'H','2526','','P',7074,0,0,'2025-12-10',5660,3894,0,265,0,'A',400.00,0.00,'CSH','','','','','0000-00-00','','',6880,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-10 13:17:08','riya','2025-12-10 13:19:44',0),(7075,0,0,'H','2526','','',7075,0,0,'2025-12-10',5772,3964,0,0,3855,'B',5600.00,0.00,'7','sbi','','31999','','0000-00-00','scan','',6881,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 13:22:27','','0000-00-00 00:00:00',0),(7076,0,0,'H','2526','','',7076,0,0,'2025-12-10',5793,3978,0,0,3869,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6882,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 13:29:20','','0000-00-00 00:00:00',0),(7077,0,0,'H','2526','','P',7077,0,0,'2025-12-10',5316,3706,0,251,0,'A',20100.00,0.00,'7','RAJKOT NAGRIK BANK','','5344245590748','','0000-00-00','SCAN','',6883,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-10 13:41:09','riya','2025-12-10 13:41:36',0),(7078,0,0,'H','2526','','P',7078,0,0,'2025-12-10',4688,3345,0,218,0,'A',12000.00,0.00,'7','HDFC','','115413258376','','0000-00-00','SCAN','',7018,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-10 13:44:52','riya','2025-12-11 14:46:45',0),(7079,0,0,'H','2526','','',7079,0,0,'2025-12-10',5795,970,0,0,939,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6884,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 13:44:56','','0000-00-00 00:00:00',0),(7080,0,0,'H','2526','','',7080,0,0,'2025-12-10',5796,3980,0,0,3871,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6885,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 14:29:29','','0000-00-00 00:00:00',0),(7081,0,0,'H','2526','','',7081,0,0,'2025-12-10',5797,3981,0,0,3872,'B',1350.00,0.00,'7','fedral bank','','37394','','0000-00-00','scan','',6886,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-10 14:55:09','','0000-00-00 00:00:00',0),(7082,0,0,'H','2526','','',7082,0,0,'2025-12-10',5798,3982,0,0,3873,'B',1400.00,0.00,'CSH','','','','','0000-00-00','','',6887,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-10 15:01:04','','0000-00-00 00:00:00',0),(7083,0,0,'H','2526','','P',7083,0,0,'2025-12-10',4017,2937,0,187,0,'A',30000.00,0.00,'7','SBI','','57101747858','','0000-00-00','SCAN','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-10 15:21:51','riya','2025-12-10 15:21:51',0),(7084,0,0,'H','2526','','',7084,0,0,'2025-12-10',5800,550,0,0,524,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6888,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 16:13:51','','0000-00-00 00:00:00',0),(7085,0,0,'H','2526','','',7085,0,0,'2025-12-10',5801,3984,0,0,3875,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6889,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-10 16:14:18','','0000-00-00 00:00:00',0),(7086,0,0,'H','2526','','',7086,0,0,'2025-12-10',5802,1658,0,0,1613,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6890,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 16:24:56','','0000-00-00 00:00:00',0),(7087,0,0,'H','2526','','',7087,0,0,'2025-12-10',5799,3983,0,0,3874,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6891,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 16:32:01','','0000-00-00 00:00:00',0),(7088,0,0,'H','2526','','P',7088,0,0,'2025-12-10',4694,3350,0,222,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',7319,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-10 16:48:46','riya','2025-12-13 14:24:24',0),(7089,0,0,'H','2526','','',7089,0,0,'2025-12-10',5806,3985,0,0,3876,'B',500.00,0.00,'7','axis','','13044','','0000-00-00','scan','',6892,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 16:54:36','','0000-00-00 00:00:00',0),(7090,0,0,'H','2526','','',7090,0,0,'2025-12-10',5807,1173,0,0,1133,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6893,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 16:56:01','','0000-00-00 00:00:00',0),(7091,0,0,'H','2526','','',7091,0,0,'2025-12-10',5808,3986,0,0,3877,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6894,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-10 16:58:15','','0000-00-00 00:00:00',0),(7092,0,0,'H','2526','','',7092,0,0,'2025-12-10',5809,3987,0,0,3878,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6895,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 16:58:36','','0000-00-00 00:00:00',0),(7093,0,0,'H','2526','','',7093,0,0,'2025-12-10',5810,3134,0,0,3053,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6896,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-10 17:03:46','','0000-00-00 00:00:00',0),(7094,0,0,'H','2526','','',7094,0,0,'2025-12-10',5812,3989,0,0,3880,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',6897,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 17:09:55','','0000-00-00 00:00:00',0),(7095,0,0,'H','2526','','',7095,0,0,'2025-12-10',5813,3990,0,0,3881,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6898,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-10 17:16:46','','0000-00-00 00:00:00',0),(7096,0,0,'H','2526','','',7096,0,0,'2025-12-10',5814,3297,0,0,3210,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6899,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 17:18:28','','0000-00-00 00:00:00',0),(7097,0,0,'H','2526','','',7097,0,0,'2025-12-10',5816,3992,0,0,3883,'B',500.00,0.00,'7','hdfc','','84022','','0000-00-00','scan','',6900,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 17:34:38','','0000-00-00 00:00:00',0),(7098,0,0,'H','2526','','',7098,0,0,'2025-12-10',5817,3993,0,0,3884,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6901,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 17:36:17','','0000-00-00 00:00:00',0),(7099,0,0,'H','2526','','',7099,0,0,'2025-12-10',5801,3984,0,0,3875,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',6902,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 17:42:51','','0000-00-00 00:00:00',0),(7100,0,0,'H','2526','','',7100,0,0,'2025-12-10',5723,3939,0,269,0,'D',-1800.00,0.00,'CSH','','','','','0000-00-00','','',6904,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-10 17:49:52','','0000-00-00 00:00:00',0),(7101,0,0,'H','2526','','',7101,0,0,'2025-12-10',5818,1631,0,0,1587,'B',400.00,0.00,'7','icici bank','','84868','','0000-00-00','scan ','',6905,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-10 17:51:51','','0000-00-00 00:00:00',0),(7102,0,0,'H','2526','','',7102,0,0,'2025-12-10',5819,3994,0,0,3885,'B',750.00,0.00,'7','INDIAN BANK','','08629','','0000-00-00','scan ','',6906,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-10 17:55:19','','0000-00-00 00:00:00',0),(7103,0,0,'H','2526','','',7103,0,0,'2025-12-10',5799,3983,0,0,3874,'B',4500.00,0.00,'7','sbi','','65750','','0000-00-00','scan','',6907,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 17:55:56','','0000-00-00 00:00:00',0),(7104,0,0,'H','2526','','',7104,0,0,'2025-12-10',5820,3995,0,0,3886,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6908,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 17:58:12','','0000-00-00 00:00:00',0),(7105,0,0,'H','2526','','',7105,0,0,'2025-12-10',5821,3996,0,0,3887,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6909,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 18:00:32','','0000-00-00 00:00:00',0),(7106,0,0,'H','2526','','',7106,0,0,'2025-12-10',5822,1026,0,0,994,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6910,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 18:00:55','','0000-00-00 00:00:00',0),(7107,0,0,'H','2526','','',7107,0,0,'2025-12-10',5824,1909,0,0,1864,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6911,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 18:01:52','','0000-00-00 00:00:00',0),(7108,0,0,'H','2526','','P',7108,0,0,'2025-12-10',5426,3765,0,256,0,'A',11000.00,0.00,'7','SBI','','531089805951','','0000-00-00','SCAN','',6942,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-10 18:02:40','vishal','2025-12-10 21:31:47',0),(7109,0,0,'H','2526','','',7109,0,0,'2025-12-10',5825,3998,0,0,3889,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6912,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 18:03:11','','0000-00-00 00:00:00',0),(7110,0,0,'H','2526','','',7110,0,0,'2025-12-10',5823,3997,0,0,3888,'B',700.00,0.00,'7','SBI BANK','','11479','','0000-00-00','scan ','',6913,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-10 18:04:24','','0000-00-00 00:00:00',0),(7111,0,0,'H','2526','','',7111,0,0,'2025-12-10',5826,2501,0,0,2444,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6914,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 18:16:45','','0000-00-00 00:00:00',0),(7112,0,0,'H','2526','','',7112,0,0,'2025-12-10',5817,3993,0,0,3884,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',6915,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 18:24:24','','0000-00-00 00:00:00',0),(7113,0,0,'H','2526','','P',7113,0,0,'2025-12-10',5663,3906,0,266,0,'A',15000.00,0.00,'7','sbi bank','','2472','','0000-00-00','','',7156,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-10 18:25:06','riya','2025-12-12 15:10:09',0),(7114,0,0,'H','2526','','',7114,0,0,'2025-12-10',5820,3995,0,0,3886,'B',4600.00,0.00,'7','axis','','27734','','0000-00-00','scan','',6916,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 18:26:46','','0000-00-00 00:00:00',0),(7115,0,0,'H','2526','','',7115,0,0,'2025-12-10',5827,2542,0,0,2484,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6917,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 18:29:21','','0000-00-00 00:00:00',0),(7116,0,0,'H','2526','','',7116,0,0,'2025-12-10',5828,2336,0,0,2279,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6918,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-10 18:32:47','','0000-00-00 00:00:00',0),(7117,0,0,'H','2526','','',7117,0,0,'2025-12-10',5830,4000,0,0,3891,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6919,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 18:35:35','','0000-00-00 00:00:00',0),(7118,0,0,'H','2526','','',7118,0,0,'2025-12-10',5832,4002,0,0,3892,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6920,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-10 18:39:53','','0000-00-00 00:00:00',0),(7119,0,0,'H','2526','','',7119,0,0,'2025-12-10',5833,1841,0,0,1796,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6921,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 18:47:35','','0000-00-00 00:00:00',0),(7120,0,0,'H','2526','','P',7120,0,0,'2025-12-10',5120,3601,0,243,0,'A',40000.00,0.00,'7','KOTAK BANK','','3726','','0000-00-00','','',8441,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-10 18:50:03','vishal','2025-12-22 21:57:17',0),(7121,0,0,'H','2526','','P',7121,0,0,'2025-12-10',5831,4001,0,273,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',7540,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-10 18:51:25','vishal','2025-12-15 19:34:59',0),(7122,0,0,'H','2526','','',7122,0,0,'2025-12-10',5835,1572,0,0,1531,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6922,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-10 18:54:15','','0000-00-00 00:00:00',0),(7123,0,0,'H','2526','','',7123,0,0,'2025-12-10',5836,4004,0,0,3894,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6923,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 18:58:12','','0000-00-00 00:00:00',0),(7124,0,0,'H','2526','','',7124,0,0,'2025-12-10',5828,2336,0,0,2279,'D',-400.00,0.00,'CSH','','','','','2025-12-10','','',6924,'N','N','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-10 19:10:28','','0000-00-00 00:00:00',0),(7125,0,0,'H','2526','','',7125,0,0,'2025-12-10',5837,4005,0,0,3895,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6925,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-10 19:16:42','','0000-00-00 00:00:00',0),(7126,0,0,'H','2526','','P',7126,0,0,'2025-12-10',5163,3630,0,245,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',7222,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-10 19:20:37','vishal','2025-12-12 19:36:58',0),(7127,0,0,'H','2526','','',7127,0,0,'2025-12-10',5840,3640,0,0,3538,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6926,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 19:23:40','','0000-00-00 00:00:00',0),(7128,0,0,'H','2526','','',7128,0,0,'2025-12-10',5838,2706,0,0,2636,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6927,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-10 19:28:39','','0000-00-00 00:00:00',0),(7129,0,0,'H','2526','','',7129,0,0,'2025-12-10',5842,3543,0,0,3897,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6928,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 19:31:47','','0000-00-00 00:00:00',0),(7130,0,0,'H','2526','','',7130,0,0,'2025-12-10',5843,3440,0,0,3898,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6929,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-10 19:32:04','','0000-00-00 00:00:00',0),(7131,0,0,'H','2526','','',7131,0,0,'2025-12-10',5844,4007,0,0,3899,'B',750.00,0.00,'7','jivan comm','','75505','','0000-00-00','scan ','',6930,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-10 19:35:11','','0000-00-00 00:00:00',0),(7132,0,0,'H','2526','','',7132,0,0,'2025-12-10',5845,4008,0,0,3900,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6931,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-10 19:40:15','','0000-00-00 00:00:00',0),(7133,0,0,'H','2526','','',7133,0,0,'2025-12-10',5846,4009,0,0,3901,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6932,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-10 20:11:42','','0000-00-00 00:00:00',0),(7134,0,0,'H','2526','','',7134,0,0,'2025-12-10',5847,3399,0,0,3310,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6933,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-10 20:17:23','','0000-00-00 00:00:00',0),(7135,0,0,'H','2526','','P',7135,0,0,'2025-12-10',5732,3943,0,271,0,'A',2000.00,0.00,'7','SBI','','6133','','0000-00-00','','',6937,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-10 20:37:28','vishal','2025-12-10 20:38:54',0),(7136,0,0,'H','2526','','',7136,0,0,'2025-12-10',5846,4009,0,0,3901,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6938,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-10 20:45:01','','0000-00-00 00:00:00',0),(7137,0,0,'H','2526','','P',7137,0,0,'2025-12-10',5603,3871,0,263,0,'A',8100.00,0.00,'7','IDBI BANK','','4383','','0000-00-00','','',6941,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-10 21:24:34','vishal','2025-12-10 21:25:32',0),(7138,0,0,'H','2526','','P',7138,0,0,'2025-12-10',5426,3765,0,256,0,'A',3200.00,0.00,'7','SBI','','5742','','0000-00-00','','',6942,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-10 21:31:29','vishal','2025-12-10 21:31:47',0),(7139,0,0,'H','2526','','P',7139,0,0,'2025-12-10',5848,4010,0,274,0,'A',15000.00,0.00,'2','ICICI BANK','','8933','','0000-00-00','','',7481,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-10 23:02:33','riya','2025-12-15 16:56:44',0),(7140,0,0,'H','2526','','',7140,0,0,'2025-11-15',3443,2593,0,0,2536,'D',0.00,0.00,'7','central bank of india','','79903','','2025-12-11','SCAN','',4090,'N','N','Y',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 08:29:25','','0000-00-00 00:00:00',0),(7141,0,0,'H','2526','','',7141,0,0,'2025-12-11',5849,4011,0,0,3902,'B',2000.00,0.00,'7','bob','','93080','','0000-00-00','scan','',6943,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 08:42:23','','0000-00-00 00:00:00',0),(7142,0,0,'H','2526','','',7142,0,0,'2025-12-11',5850,4012,0,0,3903,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6944,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 10:02:02','','0000-00-00 00:00:00',0),(7143,0,0,'H','2526','','',7143,0,0,'2025-12-11',5851,4013,0,0,3904,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6945,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 10:19:54','','0000-00-00 00:00:00',0),(7144,0,0,'H','2526','','',7144,0,0,'2025-12-11',5853,4014,0,0,3905,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6946,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 10:23:01','','0000-00-00 00:00:00',0),(7145,0,0,'H','2526','','',7145,0,0,'2025-12-11',5852,1159,0,0,1118,'B',500.00,0.00,'7','SBI BANK','','99165','','0000-00-00','scan ','',6947,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 10:23:15','','0000-00-00 00:00:00',0),(7146,0,0,'H','2526','','',7146,0,0,'2025-12-11',5854,4015,0,0,3906,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6948,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 10:33:39','','0000-00-00 00:00:00',0),(7147,0,0,'H','2526','','',7147,0,0,'2025-12-11',5856,4016,0,0,3907,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6949,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 10:36:57','','0000-00-00 00:00:00',0),(7148,0,0,'H','2526','','',7148,0,0,'2025-12-11',5857,4017,0,0,3908,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6950,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 10:45:31','','0000-00-00 00:00:00',0),(7149,0,0,'H','2526','','',7149,0,0,'2025-12-11',5858,1829,0,0,1784,'B',500.00,0.00,'7','hdfc','','85539','','0000-00-00','scan','',6951,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 10:48:36','','0000-00-00 00:00:00',0),(7150,0,0,'H','2526','','',7150,0,0,'2025-12-11',5859,2276,0,0,2220,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',6952,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-11 10:52:09','','0000-00-00 00:00:00',0),(7151,0,0,'H','2526','','',7151,0,0,'2025-12-11',5860,4018,0,0,3909,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6953,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 10:53:58','','0000-00-00 00:00:00',0),(7152,0,0,'H','2526','','',7152,0,0,'2025-12-11',5861,4019,0,0,3910,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6954,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 10:57:58','','0000-00-00 00:00:00',0),(7153,0,0,'H','2526','','',7153,0,0,'2025-12-11',5862,2709,0,0,2639,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6955,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 10:58:59','','0000-00-00 00:00:00',0),(7154,0,0,'H','2526','','',7154,0,0,'2025-12-11',5863,2851,0,0,2782,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6956,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 10:59:31','','0000-00-00 00:00:00',0),(7155,0,0,'H','2526','','',7155,0,0,'2025-12-11',5864,2893,0,0,3231,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6957,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 11:02:02','','0000-00-00 00:00:00',0),(7156,0,0,'H','2526','','',7156,0,0,'2025-12-11',5865,2274,0,0,2218,'B',500.00,0.00,'7','icici','','588517','','0000-00-00','scan','',6958,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 11:03:52','','0000-00-00 00:00:00',0),(7157,0,0,'H','2526','','',7157,0,0,'2025-12-11',5854,4015,0,0,3906,'B',4200.00,0.00,'CSH','','','','','0000-00-00','','',6959,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 11:05:59','','0000-00-00 00:00:00',0),(7158,0,0,'H','2526','','',7158,0,0,'2025-12-11',5866,3602,0,0,3500,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6960,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 11:08:52','','0000-00-00 00:00:00',0),(7159,0,0,'H','2526','','',7159,0,0,'2025-12-11',5859,2276,0,0,2220,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',6961,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-11 11:19:09','','0000-00-00 00:00:00',0),(7160,0,0,'H','2526','','',7160,0,0,'2025-12-11',5868,3477,0,0,3382,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6962,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 11:19:13','','0000-00-00 00:00:00',0),(7161,0,0,'H','2526','','',7161,0,0,'2025-12-11',5867,4020,0,0,3911,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6963,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-11 11:19:39','','0000-00-00 00:00:00',0),(7162,0,0,'H','2526','','',7162,0,0,'2025-12-11',5870,1571,0,0,1530,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6964,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 11:21:44','','0000-00-00 00:00:00',0),(7163,0,0,'H','2526','','',7163,0,0,'2025-12-11',5869,4021,0,0,3912,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6965,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 11:22:04','','0000-00-00 00:00:00',0),(7164,0,0,'H','2526','','',7164,0,0,'2025-12-11',5855,3798,0,0,3693,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6966,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 11:23:41','','0000-00-00 00:00:00',0),(7165,0,0,'H','2526','','',7165,0,0,'2025-12-11',5871,3583,0,0,3913,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6967,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 11:23:53','','0000-00-00 00:00:00',0),(7166,0,0,'H','2526','','',7166,0,0,'2025-12-11',5872,1763,0,0,2118,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',6968,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 11:25:00','','0000-00-00 00:00:00',0),(7167,0,0,'H','2526','','',7167,0,0,'2025-12-11',5856,4016,0,0,3907,'B',4300.00,0.00,'CSH','','','','','0000-00-00','','',6969,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 11:25:07','','0000-00-00 00:00:00',0),(7168,0,0,'H','2526','','',7168,0,0,'2025-12-11',5873,4022,0,0,3914,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6970,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 11:26:33','','0000-00-00 00:00:00',0),(7169,0,0,'H','2526','','',7169,0,0,'2025-12-11',5874,4023,0,0,3915,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6971,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 11:28:01','','0000-00-00 00:00:00',0),(7170,0,0,'H','2526','','P',7170,0,0,'2025-12-11',5521,3824,0,259,0,'A',25000.00,0.00,'CRD','axis bank','26','534505205658','','0000-00-00','','',7786,'N','P','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-11 11:30:42','vishal','2025-12-17 14:05:14',0),(7171,0,0,'H','2526','','',7171,0,0,'2025-12-11',5875,3395,0,0,3306,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6972,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 11:33:27','','0000-00-00 00:00:00',0),(7172,0,0,'H','2526','','',7172,0,0,'2025-12-11',5864,2893,0,0,3231,'B',350.00,0.00,'7','KOTAK BANK','','61473','','0000-00-00','scan ','',6973,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 11:41:45','','0000-00-00 00:00:00',0),(7173,0,0,'H','2526','','',7173,0,0,'2025-12-11',5878,4025,0,0,3917,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6974,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 11:42:18','','0000-00-00 00:00:00',0),(7174,0,0,'H','2526','','',7174,0,0,'2025-12-11',5879,4026,0,0,3918,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6975,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 11:43:59','','0000-00-00 00:00:00',0),(7175,0,0,'H','2526','','',7175,0,0,'2025-12-11',5880,659,0,0,629,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6976,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 11:44:23','','0000-00-00 00:00:00',0),(7176,0,0,'H','2526','','',7176,0,0,'2025-12-11',5877,198,0,0,185,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6977,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 11:45:32','','0000-00-00 00:00:00',0),(7177,0,0,'H','2526','','',7177,0,0,'2025-12-11',5882,4028,0,0,3920,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6978,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 11:50:04','','0000-00-00 00:00:00',0),(7178,0,0,'H','2526','','',7178,0,0,'2025-12-11',5881,4027,0,0,3919,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6979,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-11 11:50:29','','0000-00-00 00:00:00',0),(7179,0,0,'H','2526','','',7179,0,0,'2025-12-11',5883,2808,0,0,2738,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6980,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 11:55:08','','0000-00-00 00:00:00',0),(7180,0,0,'H','2526','','',7180,0,0,'2025-12-11',5884,3118,0,0,3037,'B',400.00,0.00,'7','BOB BANK','','19166','','0000-00-00','scan ','',6981,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 12:03:36','','0000-00-00 00:00:00',0),(7181,0,0,'H','2526','','',7181,0,0,'2025-12-11',5885,4029,0,0,3921,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',6982,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 12:05:12','','0000-00-00 00:00:00',0),(7182,0,0,'H','2526','','',7182,0,0,'2025-12-11',5886,4030,0,0,3922,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6983,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 12:08:21','','0000-00-00 00:00:00',0),(7183,0,0,'H','2526','','',7183,0,0,'2025-12-11',5887,4031,0,0,3923,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',6984,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 12:09:47','','0000-00-00 00:00:00',0),(7184,0,0,'H','2526','','',7184,0,0,'2025-12-11',5888,4032,0,0,3924,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6985,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 12:17:40','','0000-00-00 00:00:00',0),(7185,0,0,'H','2526','','',7185,0,0,'2025-12-11',5889,3705,0,0,3605,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6986,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 12:17:41','','0000-00-00 00:00:00',0),(7186,0,0,'H','2526','','',7186,0,0,'2025-12-11',5890,4033,0,0,3925,'B',750.00,0.00,'7','sbi','','09618','','0000-00-00','scan','',6987,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 12:20:27','','0000-00-00 00:00:00',0),(7187,0,0,'H','2526','','',7187,0,0,'2025-12-11',5891,4034,0,0,3926,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',6988,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 12:25:10','','0000-00-00 00:00:00',0),(7188,0,0,'H','2526','','',7188,0,0,'2025-12-11',5892,4035,0,0,3927,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6989,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 12:30:20','','0000-00-00 00:00:00',0),(7189,0,0,'H','2526','','',7189,0,0,'2025-12-11',5893,421,0,0,399,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6990,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 12:34:49','','0000-00-00 00:00:00',0),(7190,0,0,'H','2526','','',7190,0,0,'2025-12-11',5894,3155,0,0,3069,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6991,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 12:36:06','','0000-00-00 00:00:00',0),(7191,0,0,'H','2526','','',7191,0,0,'2025-12-11',5895,4036,0,0,3928,'B',800.00,0.00,'7','axis','','97967','','0000-00-00','scan','',6992,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 12:37:30','','0000-00-00 00:00:00',0),(7192,0,0,'H','2526','','',7192,0,0,'2025-12-11',5896,3394,0,0,3305,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',6993,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 12:39:42','','0000-00-00 00:00:00',0),(7193,0,0,'H','2526','','',7193,0,0,'2025-12-11',5897,4037,0,0,3929,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6994,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 12:44:09','','0000-00-00 00:00:00',0),(7194,0,0,'H','2526','','',7194,0,0,'2025-12-11',5899,1409,0,0,1369,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6995,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 12:45:15','','0000-00-00 00:00:00',0),(7195,0,0,'H','2526','','',7195,0,0,'2025-12-11',5898,3777,0,0,3673,'B',300.00,0.00,'7','bank of india','','59353','','0000-00-00','SCAN','',6996,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-11 12:45:35','','0000-00-00 00:00:00',0),(7196,0,0,'H','2526','','',7196,0,0,'2025-12-11',5900,4038,0,0,3930,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',6997,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 12:46:22','','0000-00-00 00:00:00',0),(7197,0,0,'H','2526','','',7197,0,0,'2025-12-11',5901,4039,0,0,3931,'B',900.00,0.00,'7','sbi','','94499','','0000-00-00','scan','',6998,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 12:48:36','','0000-00-00 00:00:00',0),(7198,0,0,'H','2526','','',7198,0,0,'2025-12-11',5902,4040,0,0,3932,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',6999,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 12:55:12','','0000-00-00 00:00:00',0),(7199,0,0,'H','2526','','',7199,0,0,'2025-12-11',5897,4037,0,0,3929,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7001,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 12:57:42','','0000-00-00 00:00:00',0),(7200,0,0,'H','2526','','P',7200,0,0,'2025-12-11',5722,3938,0,268,0,'A',4800.00,0.00,'CRD','HDFC','','16474423','','0000-00-00','CARD','',7002,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-11 12:59:31','riya','2025-12-11 12:59:46',0),(7201,0,0,'H','2526','','P',7201,0,0,'2025-12-11',5588,3833,0,262,0,'A',18800.00,0.00,'7','UNION BANK','','151250569987','','0000-00-00','SCAN','',7004,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-11 13:06:13','riya','2025-12-11 13:06:37',0),(7202,0,0,'H','2526','','',7202,0,0,'2025-12-11',5903,1276,0,0,1235,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7005,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 13:10:59','','0000-00-00 00:00:00',0),(7203,0,0,'H','2526','','',7203,0,0,'2025-12-11',5904,4041,0,0,3933,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7006,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 13:12:13','','0000-00-00 00:00:00',0),(7204,0,0,'H','2526','','',7204,0,0,'2025-12-11',5895,4036,0,0,3928,'B',500.00,0.00,'7','axis','','00304','','0000-00-00','scan','',7007,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 13:13:08','','0000-00-00 00:00:00',0),(7205,0,0,'H','2526','','',7205,0,0,'2025-12-11',5905,4042,0,0,3934,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7009,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 13:20:31','','0000-00-00 00:00:00',0),(7206,0,0,'H','2526','','P',7206,0,0,'2025-12-11',5445,3780,0,258,0,'A',7750.00,0.00,'7','HDFC','','115464686117','','0000-00-00','SCAN','',7011,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-11 13:31:22','riya','2025-12-11 13:32:03',0),(7207,0,0,'H','2526','','',7207,0,0,'2025-12-11',5874,4023,0,0,3915,'B',4500.00,0.00,'7','icici','','09036','','0000-00-00','scan','',7012,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 13:35:27','','0000-00-00 00:00:00',0),(7208,0,0,'H','2526','','',7208,0,0,'2025-12-11',5901,4039,0,0,3931,'B',3500.00,0.00,'7','sbi','','30310','','0000-00-00','scan','',7014,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 13:47:26','','0000-00-00 00:00:00',0),(7209,0,0,'H','2526','','',7209,0,0,'2025-12-11',5425,3764,0,255,0,'D',-2000.00,0.00,'CSH','','','','','0000-00-00','','',7016,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(7210,0,0,'H','2526','','',7210,0,0,'2025-12-11',5906,4043,0,0,3935,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',7017,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 14:18:05','','0000-00-00 00:00:00',0),(7211,0,0,'H','2526','','P',7211,0,0,'2025-12-11',4688,3345,0,218,0,'A',4000.00,0.00,'CSH','','','','','0000-00-00','','',7018,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-11 14:46:08','riya','2025-12-11 14:46:45',0),(7212,0,0,'H','2526','','P',7212,0,0,'2025-12-11',5307,3700,0,250,0,'A',16150.00,0.00,'7','SBI','','571101027574','','0000-00-00','SCAN','',7019,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-11 15:05:31','riya','2025-12-11 15:06:15',0),(7213,0,0,'H','2526','','P',7213,0,0,'2025-12-11',4777,3400,0,225,0,'A',5056.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-11 15:50:40','riya','2025-12-11 15:50:40',0),(7214,0,0,'H','2526','','',7214,0,0,'2025-12-11',5907,4044,0,0,3936,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7020,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 16:03:09','','0000-00-00 00:00:00',0),(7215,0,0,'H','2526','','P',7215,0,0,'2025-12-11',5791,3977,0,272,0,'A',1300.00,0.00,'CSH','','','','','0000-00-00','','',7023,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-11 16:16:28','riya','2025-12-11 16:18:41',0),(7216,0,0,'H','2526','','',7216,0,0,'2025-12-11',5908,4045,0,0,3937,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7024,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 16:32:25','','0000-00-00 00:00:00',0),(7217,0,0,'H','2526','','',7217,0,0,'2025-12-11',5909,4046,0,0,3938,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7025,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 16:33:53','','0000-00-00 00:00:00',0),(7218,0,0,'H','2526','','',7218,0,0,'2025-12-11',5910,1325,0,0,1286,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7026,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 16:38:13','','0000-00-00 00:00:00',0),(7219,0,0,'H','2526','','',7219,0,0,'2025-12-11',5911,4047,0,0,3939,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7027,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 16:39:36','','0000-00-00 00:00:00',0),(7220,0,0,'H','2526','','',7220,0,0,'2025-12-11',5912,4000,0,0,3891,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',7028,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 16:44:19','','0000-00-00 00:00:00',0),(7221,0,0,'H','2526','','',7221,0,0,'2025-12-11',5913,4048,0,0,3940,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7029,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 16:45:13','','0000-00-00 00:00:00',0),(7222,0,0,'H','2526','','',7222,0,0,'2025-12-11',5914,4031,0,0,3923,'B',5500.00,0.00,'CSH','','','','','0000-00-00','','',7030,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 16:58:39','','0000-00-00 00:00:00',0),(7223,0,0,'H','2526','','',7223,0,0,'2025-12-11',5915,2739,0,0,2670,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7031,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 17:00:26','','0000-00-00 00:00:00',0),(7224,0,0,'H','2526','','',7224,0,0,'2025-12-11',5907,4044,0,0,3936,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',7032,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 17:04:27','','0000-00-00 00:00:00',0),(7225,0,0,'H','2526','','',7225,0,0,'2025-12-11',5917,3442,0,0,3347,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7033,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 17:20:13','','0000-00-00 00:00:00',0),(7226,0,0,'H','2526','','',7226,0,0,'2025-12-11',5918,4050,0,0,3942,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7034,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-11 17:25:08','','0000-00-00 00:00:00',0),(7227,0,0,'H','2526','','',7227,0,0,'2025-12-11',5913,4048,0,0,3940,'B',5500.00,0.00,'CSH','','','','','0000-00-00','','',7035,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 17:27:31','','0000-00-00 00:00:00',0),(7228,0,0,'H','2526','','',7228,0,0,'2025-12-11',5919,3409,0,0,3317,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7036,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 17:29:36','','0000-00-00 00:00:00',0),(7229,0,0,'H','2526','','',7229,0,0,'2025-12-11',5920,4051,0,0,3943,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7037,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-11 17:38:54','','0000-00-00 00:00:00',0),(7230,0,0,'H','2526','','',7230,0,0,'2025-12-11',5909,4046,0,0,3938,'B',4900.00,0.00,'7','sbi','','46344','','0000-00-00','scan','',7038,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 17:39:53','','0000-00-00 00:00:00',0),(7231,0,0,'H','2526','','',7231,0,0,'2025-12-11',5921,3399,0,0,3310,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7039,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 17:46:11','','0000-00-00 00:00:00',0),(7232,0,0,'H','2526','','',7232,0,0,'2025-12-11',5922,4052,0,0,3944,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7040,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 18:03:32','','0000-00-00 00:00:00',0),(7233,0,0,'H','2526','','',7233,0,0,'2025-12-11',5923,1592,0,0,1549,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7041,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 18:05:50','','0000-00-00 00:00:00',0),(7234,0,0,'H','2526','','',7234,0,0,'2025-12-11',5916,4049,0,0,3941,'B',500.00,0.00,'7','BOB','','18881','','0000-00-00','SCAN','',7042,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-11 18:10:21','','0000-00-00 00:00:00',0),(7235,0,0,'H','2526','','',7235,0,0,'2025-12-11',5924,79,0,0,68,'B',500.00,0.00,'7','sbi','','35586','','0000-00-00','scan','',7043,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 18:10:51','','0000-00-00 00:00:00',0),(7236,0,0,'H','2526','','',7236,0,0,'2025-12-11',5925,4053,0,0,3945,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7045,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 18:15:34','','0000-00-00 00:00:00',0),(7237,0,0,'H','2526','','',7237,0,0,'2025-12-11',5927,4055,0,0,3947,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7046,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 18:23:31','','0000-00-00 00:00:00',0),(7238,0,0,'H','2526','','',7238,0,0,'2025-12-11',5928,1930,0,0,1883,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7047,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 18:24:24','','0000-00-00 00:00:00',0),(7239,0,0,'H','2526','','',7239,0,0,'2025-12-11',5929,3264,0,0,3178,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7048,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-11 18:27:33','','0000-00-00 00:00:00',0),(7240,0,0,'H','2526','','',7240,0,0,'2025-12-11',5931,4057,0,0,3949,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7049,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 18:29:07','','0000-00-00 00:00:00',0),(7241,0,0,'H','2526','','',7241,0,0,'2025-12-11',5930,4056,0,0,3948,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7050,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 18:29:26','','0000-00-00 00:00:00',0),(7242,0,0,'H','2526','','',7242,0,0,'2025-12-11',5932,4058,0,0,3950,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7051,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 18:30:25','','0000-00-00 00:00:00',0),(7243,0,0,'H','2526','','',7243,0,0,'2025-12-11',5916,4049,0,0,3941,'B',400.00,0.00,'7','BOB','','27378','','0000-00-00','SCAN','',7052,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-11 18:34:05','','0000-00-00 00:00:00',0),(7244,0,0,'H','2526','','',7244,0,0,'2025-12-11',5935,1703,0,0,1658,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7053,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 18:35:37','','0000-00-00 00:00:00',0),(7245,0,0,'H','2526','','',7245,0,0,'2025-12-11',5934,4059,0,0,3951,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7054,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 18:36:01','','0000-00-00 00:00:00',0),(7246,0,0,'H','2526','','',7246,0,0,'2025-12-11',5933,2881,0,0,2812,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7055,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 18:36:25','','0000-00-00 00:00:00',0),(7247,0,0,'H','2526','','',7247,0,0,'2025-12-11',5926,4054,0,0,3946,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7056,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-11 18:36:59','','0000-00-00 00:00:00',0),(7248,0,0,'H','2526','','',7248,0,0,'2025-12-11',5936,4060,0,0,3952,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7057,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 18:41:56','','0000-00-00 00:00:00',0),(7249,0,0,'H','2526','','',7249,0,0,'2025-12-11',5937,4061,0,0,3953,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7058,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 18:44:04','','0000-00-00 00:00:00',0),(7250,0,0,'H','2526','','',7250,0,0,'2025-12-11',5939,4062,0,0,3954,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7059,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 18:47:08','','0000-00-00 00:00:00',0),(7251,0,0,'H','2526','','',7251,0,0,'2025-12-11',5929,3264,0,0,3178,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',7060,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-11 18:49:12','','0000-00-00 00:00:00',0),(7252,0,0,'H','2526','','',7252,0,0,'2025-12-11',5940,3740,0,0,3637,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7061,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 18:50:09','','0000-00-00 00:00:00',0),(7253,0,0,'H','2526','','',7253,0,0,'2025-12-11',5941,2023,0,0,1975,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7062,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 18:51:21','','0000-00-00 00:00:00',0),(7254,0,0,'H','2526','','',7254,0,0,'2025-12-11',5942,4063,0,0,3955,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7063,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 18:54:12','','0000-00-00 00:00:00',0),(7255,0,0,'H','2526','','',7255,0,0,'2025-12-11',5943,4064,0,0,3956,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7064,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 19:00:07','','0000-00-00 00:00:00',0),(7256,0,0,'H','2526','','',7256,0,0,'2025-12-11',5944,4065,0,0,3957,'B',700.00,0.00,'7','SBI BANK','','35616','','0000-00-00','scan ','',7065,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 19:09:26','','0000-00-00 00:00:00',0),(7257,0,0,'H','2526','','',7257,0,0,'2025-12-11',5945,4066,0,0,3958,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7066,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 19:13:41','','0000-00-00 00:00:00',0),(7258,0,0,'H','2526','','',7258,0,0,'2025-12-11',5876,4024,0,0,3916,'B',550.00,0.00,'CSH','','','','','0000-00-00','','',7067,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 19:15:00','','0000-00-00 00:00:00',0),(7259,0,0,'H','2526','','',7259,0,0,'2025-12-11',5946,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7068,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 19:19:39','','0000-00-00 00:00:00',0),(7260,0,0,'H','2526','','',7260,0,0,'2025-12-11',5939,4062,0,0,3954,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',7069,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 19:19:44','','0000-00-00 00:00:00',0),(7261,0,0,'H','2526','','',7261,0,0,'2025-12-11',5947,652,0,0,622,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7070,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 19:22:21','','0000-00-00 00:00:00',0),(7262,0,0,'H','2526','','',7262,0,0,'2025-12-11',5935,1703,0,0,1658,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',7071,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 19:25:19','','0000-00-00 00:00:00',0),(7263,0,0,'H','2526','','',7263,0,0,'2025-12-11',5931,4057,0,0,3949,'D',-750.00,0.00,'CSH','','','','','2025-12-11','','',7072,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 19:37:08','','0000-00-00 00:00:00',0),(7264,0,0,'H','2526','','',7264,0,0,'2025-12-11',5931,4057,0,0,3949,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7073,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 19:38:19','','0000-00-00 00:00:00',0),(7265,0,0,'H','2526','','',7265,0,0,'2025-12-11',5940,3740,0,0,3637,'D',-400.00,0.00,'CSH','','','','','2025-12-11','','',7074,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-11 19:43:06','','0000-00-00 00:00:00',0),(7266,0,0,'H','2526','','',7266,0,0,'2025-12-11',5941,2023,0,0,1975,'D',-400.00,0.00,'CSH','','','','','2025-12-11','','',7075,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-11 19:45:03','','0000-00-00 00:00:00',0),(7267,0,0,'H','2526','','',7267,0,0,'2025-12-11',5948,3943,0,0,3959,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7076,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 20:06:01','','0000-00-00 00:00:00',0),(7268,0,0,'H','2526','','',7268,0,0,'2025-12-11',5947,652,0,0,622,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7077,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-11 20:21:43','','0000-00-00 00:00:00',0),(7269,0,0,'H','2526','','P',7269,0,0,'2025-12-11',4017,2937,0,187,0,'A',15000.00,0.00,'7','icici bank','','571104889624','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-11 22:56:30','vishal','2025-12-11 22:56:30',0),(7270,0,0,'H','2526','','',7270,0,0,'2025-12-12',5949,4067,0,0,3960,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',7078,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 08:37:07','','0000-00-00 00:00:00',0),(7271,0,0,'H','2526','','',7271,0,0,'2025-12-12',5950,4068,0,0,3961,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',7079,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 08:40:31','','0000-00-00 00:00:00',0),(7272,0,0,'H','2526','','',7272,0,0,'2025-12-12',5951,3509,0,0,3413,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',7080,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 08:54:40','','0000-00-00 00:00:00',0),(7273,0,0,'H','2526','','',7273,0,0,'2025-12-12',5953,937,0,0,905,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7081,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 09:31:43','','0000-00-00 00:00:00',0),(7274,0,0,'H','2526','','',7274,0,0,'2025-12-12',5954,3388,0,0,3298,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7082,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 09:48:07','','0000-00-00 00:00:00',0),(7275,0,0,'H','2526','','',7275,0,0,'2025-12-12',5955,3436,0,0,3343,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7083,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 09:49:33','','0000-00-00 00:00:00',0),(7276,0,0,'H','2526','','',7276,0,0,'2025-12-12',5956,3534,0,0,3437,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7084,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 10:15:53','','0000-00-00 00:00:00',0),(7277,0,0,'H','2526','','',7277,0,0,'2025-12-12',5957,4069,0,0,3962,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7085,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 10:25:16','','0000-00-00 00:00:00',0),(7278,0,0,'H','2526','','',7278,0,0,'2025-12-12',5959,4070,0,0,3963,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7086,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 10:33:41','','0000-00-00 00:00:00',0),(7279,0,0,'H','2526','','',7279,0,0,'2025-12-12',5960,4071,0,0,3964,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7087,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 10:33:49','','0000-00-00 00:00:00',0),(7280,0,0,'H','2526','','',7280,0,0,'2025-12-12',5958,3447,0,0,3590,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7088,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 10:46:25','','0000-00-00 00:00:00',0),(7281,0,0,'H','2526','','',7281,0,0,'2025-12-12',5963,3369,0,0,3280,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7089,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 10:48:12','','0000-00-00 00:00:00',0),(7282,0,0,'H','2526','','',7282,0,0,'2025-12-12',5963,3369,0,0,3280,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7090,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 10:48:19','','0000-00-00 00:00:00',0),(7283,0,0,'H','2526','','',7283,0,0,'2025-12-12',5964,4072,0,0,3965,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7091,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 10:52:00','','0000-00-00 00:00:00',0),(7284,0,0,'H','2526','','',7284,0,0,'2025-12-12',5965,4073,0,0,3966,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7092,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 10:52:30','','0000-00-00 00:00:00',0),(7285,0,0,'H','2526','','',7285,0,0,'2025-12-12',5966,4074,0,0,3967,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7093,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 10:53:19','','0000-00-00 00:00:00',0),(7286,0,0,'H','2526','','',7286,0,0,'2025-12-12',5952,2464,0,0,2408,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7094,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 10:59:20','','0000-00-00 00:00:00',0),(7287,0,0,'H','2526','','',7287,0,0,'2025-12-12',5967,1887,0,0,1841,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7095,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 11:04:47','','0000-00-00 00:00:00',0),(7288,0,0,'H','2526','','',7288,0,0,'2025-12-12',5968,3457,0,0,3360,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7096,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 11:06:01','','0000-00-00 00:00:00',0),(7289,0,0,'H','2526','','',7289,0,0,'2025-12-12',5969,4075,0,0,3968,'B',500.00,0.00,'7','INDIAN OVERSEA','','24707','','0000-00-00','SCAN','',7097,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-12 11:06:34','','0000-00-00 00:00:00',0),(7290,0,0,'H','2526','','',7290,0,0,'2025-12-12',5970,1878,0,0,1832,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7098,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 11:10:54','','0000-00-00 00:00:00',0),(7291,0,0,'H','2526','','',7291,0,0,'2025-12-12',5971,299,0,0,283,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7099,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 11:12:20','','0000-00-00 00:00:00',0),(7292,0,0,'H','2526','','',7292,0,0,'2025-12-12',5972,56,0,0,757,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7100,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 11:15:10','','0000-00-00 00:00:00',0),(7293,0,0,'H','2526','','',7293,0,0,'2025-12-12',5960,4071,0,0,3964,'B',6000.00,0.00,'7','hdfc','','57420','','0000-00-00','scan','',7101,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 11:15:46','','0000-00-00 00:00:00',0),(7294,0,0,'H','2526','','',7294,0,0,'2025-12-12',5971,299,0,0,283,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',7102,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 11:18:52','','0000-00-00 00:00:00',0),(7295,0,0,'H','2526','','',7295,0,0,'2025-12-12',5951,3509,0,0,3413,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',7103,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 11:20:37','','0000-00-00 00:00:00',0),(7296,0,0,'H','2526','','',7296,0,0,'2025-12-12',5970,1878,0,0,1832,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7104,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 11:24:54','','0000-00-00 00:00:00',0),(7297,0,0,'H','2526','','',7297,0,0,'2025-12-12',5974,4077,0,0,3970,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7105,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 11:25:13','','0000-00-00 00:00:00',0),(7298,0,0,'H','2526','','',7298,0,0,'2025-12-12',5975,4078,0,0,3971,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7106,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 11:25:52','','0000-00-00 00:00:00',0),(7299,0,0,'H','2526','','',7299,0,0,'2025-12-12',5976,4079,0,0,3972,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7107,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 11:27:19','','0000-00-00 00:00:00',0),(7300,0,0,'H','2526','','',7300,0,0,'2025-12-12',5978,4080,0,0,3973,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7108,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 11:28:18','','0000-00-00 00:00:00',0),(7301,0,0,'H','2526','','',7301,0,0,'2025-12-12',5977,513,0,0,488,'B',500.00,0.00,'7','axis','','83077','','0000-00-00','scan','',7109,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 11:28:45','','0000-00-00 00:00:00',0),(7302,0,0,'H','2526','','',7302,0,0,'2025-12-12',5979,1134,0,0,1096,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7110,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 11:32:59','','0000-00-00 00:00:00',0),(7303,0,0,'H','2526','','',7303,0,0,'2025-12-12',5980,4081,0,0,3974,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7111,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 11:34:10','','0000-00-00 00:00:00',0),(7304,0,0,'H','2526','','',7304,0,0,'2025-12-12',5964,4072,0,0,3965,'B',4800.00,0.00,'7','icici','','87053','','0000-00-00','scan','',7112,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 11:35:13','','0000-00-00 00:00:00',0),(7305,0,0,'H','2526','','',7305,0,0,'2025-12-12',5981,3472,0,0,3377,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7113,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 11:37:53','','0000-00-00 00:00:00',0),(7306,0,0,'H','2526','','',7306,0,0,'2025-12-12',5982,2915,0,0,2843,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7114,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 11:40:30','','0000-00-00 00:00:00',0),(7307,0,0,'H','2526','','',7307,0,0,'2025-12-12',5973,4076,0,0,3969,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7115,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-12 11:42:05','','0000-00-00 00:00:00',0),(7308,0,0,'H','2526','','',7308,0,0,'2025-12-12',5983,4082,0,0,3975,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7116,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 11:42:29','','0000-00-00 00:00:00',0),(7309,0,0,'H','2526','','',7309,0,0,'2025-12-12',5984,4083,0,0,3976,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7117,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 11:44:44','','0000-00-00 00:00:00',0),(7310,0,0,'H','2526','','',7310,0,0,'2025-12-12',5957,4069,0,0,3962,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',7118,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 11:48:01','','0000-00-00 00:00:00',0),(7311,0,0,'H','2526','','',7311,0,0,'2025-12-12',5985,1425,0,0,1384,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7119,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 11:52:25','','0000-00-00 00:00:00',0),(7312,0,0,'H','2526','','',7312,0,0,'2025-12-12',5973,4076,0,0,3969,'D',-500.00,0.00,'CSH','','','','','2025-12-12','','',7120,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-12 11:54:28','','0000-00-00 00:00:00',0),(7313,0,0,'H','2526','','',7313,0,0,'2025-12-12',5986,4084,0,0,3977,'B',750.00,0.00,'7','icici','','12560','','0000-00-00','scan                          ','',7121,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 11:59:28','','0000-00-00 00:00:00',0),(7314,0,0,'H','2526','','',7314,0,0,'2025-12-12',5975,4078,0,0,3971,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',7122,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 12:00:09','','0000-00-00 00:00:00',0),(7315,0,0,'H','2526','','P',7315,0,0,'2025-12-12',5583,3863,0,261,0,'A',5000.00,0.00,'7','HDFC','','115508513834','','0000-00-00','SCAN','',7352,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-12 12:02:36','riya','2025-12-14 13:19:53',0),(7316,0,0,'H','2526','','',7316,0,0,'2025-12-12',5961,1547,0,0,1506,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7123,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 12:03:29','','0000-00-00 00:00:00',0),(7317,0,0,'H','2526','','',7317,0,0,'2025-12-12',5987,2808,0,0,2738,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',7124,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 12:03:41','','0000-00-00 00:00:00',0),(7318,0,0,'H','2526','','P',7318,0,0,'2025-12-12',5678,3912,0,267,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',7265,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-12 12:03:49','riya','2025-12-13 11:05:31',0),(7319,0,0,'H','2526','','P',7319,0,0,'2025-12-12',5678,3912,0,267,0,'A',5000.00,0.00,'7','RAJKOT NAGRIK SAHKARI BAN','','534648885095','','0000-00-00','SCAN','',7265,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-12 12:04:34','riya','2025-12-13 11:05:31',0),(7320,0,0,'H','2526','','',7320,0,0,'2025-12-12',5988,2308,0,0,2251,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7125,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 12:06:32','','0000-00-00 00:00:00',0),(7321,0,0,'H','2526','','',7321,0,0,'2025-12-12',5989,4085,0,0,3978,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7126,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 12:15:26','','0000-00-00 00:00:00',0),(7322,0,0,'H','2526','','',7322,0,0,'2025-12-12',5990,3135,0,0,3054,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7127,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 12:16:37','','0000-00-00 00:00:00',0),(7323,0,0,'H','2526','','',7323,0,0,'2025-12-12',5991,4086,0,0,3979,'B',750.00,0.00,'7','HDFC BANK','','82707','','0000-00-00','scan ','',7130,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 12:20:02','','0000-00-00 00:00:00',0),(7324,0,0,'H','2526','','',7324,0,0,'2025-12-12',5967,1887,0,0,1841,'D',-400.00,0.00,'CSH','','','','','2025-12-12','','',7128,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 12:21:40','','0000-00-00 00:00:00',0),(7325,0,0,'H','2526','','',7325,0,0,'2025-12-12',5962,1552,0,0,1511,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7131,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 12:21:54','','0000-00-00 00:00:00',0),(7326,0,0,'H','2526','','',7326,0,0,'2025-12-12',5967,1887,0,0,1841,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',7132,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 12:22:54','','0000-00-00 00:00:00',0),(7327,0,0,'H','2526','','',7327,0,0,'2025-12-12',5974,4077,0,0,3970,'D',-500.00,0.00,'CSH','','','','','2025-12-12','','',7133,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 12:26:34','','0000-00-00 00:00:00',0),(7328,0,0,'H','2526','','P',7328,0,0,'2025-12-12',5527,3827,0,260,0,'A',15000.00,0.00,'7','ICICI','','534631004967','','0000-00-00','SCAN','',7317,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-12 12:26:53','riya','2025-12-13 14:12:13',0),(7329,0,0,'H','2526','','',7329,0,0,'2025-12-12',5974,4077,0,0,3970,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7134,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 12:27:06','','0000-00-00 00:00:00',0),(7330,0,0,'H','2526','','',7330,0,0,'2025-12-12',5992,4087,0,0,3980,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7135,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 12:27:43','','0000-00-00 00:00:00',0),(7331,0,0,'H','2526','','',7331,0,0,'2025-12-12',5993,3098,0,0,3018,'B',100.00,0.00,'7','SBI BANK','','14700','','0000-00-00','scan ','',7136,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-12 12:31:56','','0000-00-00 00:00:00',0),(7332,0,0,'H','2526','','',7332,0,0,'2025-12-12',5963,3369,0,0,3280,'D',-500.00,0.00,'CSH','','','','','2025-12-12','','',7137,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 12:33:26','','0000-00-00 00:00:00',0),(7333,0,0,'H','2526','','',7333,0,0,'2025-12-12',5994,4088,0,0,3981,'B',400.00,0.00,'7','HDFC BANK','','69681','','0000-00-00','scan ','',7138,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 12:40:25','','0000-00-00 00:00:00',0),(7334,0,0,'H','2526','','',7334,0,0,'2025-12-12',5995,4089,0,0,3982,'B',400.00,0.00,'7','KOTAK BANK','','88923','','0000-00-00','scan ','',7139,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 12:43:46','','0000-00-00 00:00:00',0),(7335,0,0,'H','2526','','P',7335,0,0,'2025-12-12',5521,3824,0,259,0,'A',40000.00,0.00,'7','ICICI','','81452412563','','0000-00-00','SCAN','',7786,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-12 12:46:49','vishal','2025-12-17 14:05:14',0),(7336,0,0,'H','2526','','',7336,0,0,'2025-12-12',5996,4090,0,0,3983,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7140,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 12:53:37','','0000-00-00 00:00:00',0),(7337,0,0,'H','2526','','',7337,0,0,'2025-12-12',5949,4067,0,0,3960,'D',-1000.00,0.00,'CSH','','','','','2025-12-12','','',7141,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 13:04:07','','0000-00-00 00:00:00',0),(7338,0,0,'H','2526','','',7338,0,0,'2025-12-12',5949,4067,0,0,3960,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7142,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 13:05:15','','0000-00-00 00:00:00',0),(7339,0,0,'H','2526','','',7339,0,0,'2025-12-12',5975,4078,0,0,3971,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',7143,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 13:06:16','','0000-00-00 00:00:00',0),(7340,0,0,'H','2526','','',7340,0,0,'2025-12-12',5995,4089,0,0,3982,'D',-400.00,0.00,'7','KOTAK BANK','','88923','','2025-12-12','','',7144,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 13:07:10','','0000-00-00 00:00:00',0),(7341,0,0,'H','2526','','',7341,0,0,'2025-12-12',5995,4089,0,0,3982,'B',400.00,0.00,'7','KOTAK BANK','','88923','','0000-00-00','scan ','',7145,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 13:11:26','','0000-00-00 00:00:00',0),(7342,0,0,'H','2526','','',7342,0,0,'2025-12-12',5998,3514,0,0,3417,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',7146,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 13:15:25','','0000-00-00 00:00:00',0),(7343,0,0,'H','2526','','',7343,0,0,'2025-12-12',5998,3514,0,0,3417,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',7147,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 13:15:32','','0000-00-00 00:00:00',0),(7344,0,0,'H','2526','','',7344,0,0,'2025-12-12',5997,4063,0,0,3955,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',7148,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 13:16:59','','0000-00-00 00:00:00',0),(7345,0,0,'H','2526','','',7345,0,0,'2025-12-12',5998,3514,0,0,3417,'D',-1000.00,0.00,'CSH','','','','','2025-12-12','','',7149,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 13:18:53','','0000-00-00 00:00:00',0),(7346,0,0,'H','2526','','',7346,0,0,'2025-12-12',5996,4090,0,0,3983,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',7150,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 13:28:56','','0000-00-00 00:00:00',0),(7347,0,0,'H','2526','','',7347,0,0,'2025-12-12',5996,4090,0,0,3983,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',7151,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 13:28:59','','0000-00-00 00:00:00',0),(7348,0,0,'H','2526','','',7348,0,0,'2025-12-12',5999,4091,0,0,3984,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7153,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 13:33:44','','0000-00-00 00:00:00',0),(7349,0,0,'H','2526','','',7349,0,0,'2025-12-12',5996,4090,0,0,3983,'D',-4600.00,0.00,'CSH','','','','','2025-12-12','','',7152,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 13:34:23','','0000-00-00 00:00:00',0),(7350,0,0,'H','2526','','',7350,0,0,'2025-12-12',6000,652,0,0,622,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7154,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 13:48:35','','0000-00-00 00:00:00',0),(7351,0,0,'H','2526','','P',7351,0,0,'2025-12-12',5663,3906,0,266,0,'A',32650.00,0.00,'7','SBI','','534697099307','','0000-00-00','SCAN','',7156,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-12 15:08:32','riya','2025-12-12 15:10:09',0),(7352,0,0,'H','2526','','',7352,0,0,'2025-12-12',6001,4092,0,0,3985,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7157,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 16:19:11','','0000-00-00 00:00:00',0),(7353,0,0,'H','2526','','',7353,0,0,'2025-12-12',6002,4093,0,0,3986,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7158,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 16:24:36','','0000-00-00 00:00:00',0),(7354,0,0,'H','2526','','',7354,0,0,'2025-12-12',6003,1062,0,0,1028,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7159,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 16:26:01','','0000-00-00 00:00:00',0),(7355,0,0,'H','2526','','',7355,0,0,'2025-12-12',6005,1744,0,0,1698,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7160,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 16:33:01','','0000-00-00 00:00:00',0),(7356,0,0,'H','2526','','',7356,0,0,'2025-12-12',6006,1697,0,0,1652,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7161,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 16:36:02','','0000-00-00 00:00:00',0),(7357,0,0,'H','2526','','',7357,0,0,'2025-12-12',6007,991,0,0,958,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7162,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 16:36:54','','0000-00-00 00:00:00',0),(7358,0,0,'H','2526','','',7358,0,0,'2025-12-12',6009,4094,0,0,3987,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7163,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 16:45:47','','0000-00-00 00:00:00',0),(7359,0,0,'H','2526','','',7359,0,0,'2025-12-12',6010,3665,0,0,3565,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7164,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 16:53:50','','0000-00-00 00:00:00',0),(7360,0,0,'H','2526','','',7360,0,0,'2025-12-12',6007,991,0,0,958,'D',-500.00,0.00,'CSH','','','','','2025-12-12','','',7165,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 17:02:16','','0000-00-00 00:00:00',0),(7361,0,0,'H','2526','','',7361,0,0,'2025-12-12',6013,4096,0,0,3989,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7166,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 17:08:29','','0000-00-00 00:00:00',0),(7362,0,0,'H','2526','','',7362,0,0,'2025-12-12',6014,4097,0,0,3990,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7167,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 17:10:21','','0000-00-00 00:00:00',0),(7363,0,0,'H','2526','','',7363,0,0,'2025-12-12',6016,4099,0,0,3992,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7168,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 17:13:30','','0000-00-00 00:00:00',0),(7364,0,0,'H','2526','','P',7364,0,0,'2025-12-12',4017,2937,0,187,0,'A',20000.00,0.00,'7','BOI BANK','','9470','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-12 17:16:15','riya','2025-12-12 17:16:15',0),(7365,0,0,'H','2526','','',7365,0,0,'2025-12-12',6018,2996,0,0,2919,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7169,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 17:21:21','','0000-00-00 00:00:00',0),(7366,0,0,'H','2526','','',7366,0,0,'2025-12-12',6017,4100,0,0,3993,'B',900.00,0.00,'7','hdfc','','76777','','0000-00-00','scan','',7170,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 17:24:12','','0000-00-00 00:00:00',0),(7367,0,0,'H','2526','','',7367,0,0,'2025-12-12',6002,4093,0,0,3986,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',7171,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 17:27:10','','0000-00-00 00:00:00',0),(7368,0,0,'H','2526','','',7368,0,0,'2025-12-12',6019,4101,0,0,3994,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7172,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 17:29:59','','0000-00-00 00:00:00',0),(7369,0,0,'H','2526','','',7369,0,0,'2025-12-12',6020,4102,0,0,3995,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7173,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 17:34:04','','0000-00-00 00:00:00',0),(7370,0,0,'H','2526','','',7370,0,0,'2025-12-12',6021,4103,0,0,3996,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7174,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 17:47:33','','0000-00-00 00:00:00',0),(7371,0,0,'H','2526','','',7371,0,0,'2025-12-12',6022,2401,0,0,2345,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7175,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 17:48:43','','0000-00-00 00:00:00',0),(7372,0,0,'H','2526','','',7372,0,0,'2025-12-12',6023,4104,0,0,3997,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7176,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 17:56:24','','0000-00-00 00:00:00',0),(7373,0,0,'H','2526','','',7373,0,0,'2025-12-12',6024,4105,0,0,3998,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7177,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 17:58:33','','0000-00-00 00:00:00',0),(7374,0,0,'H','2526','','',7374,0,0,'2025-12-12',6025,1128,0,0,1089,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7178,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 17:59:56','','0000-00-00 00:00:00',0),(7375,0,0,'H','2526','','',7375,0,0,'2025-12-12',5993,3098,0,0,3018,'B',100.00,0.00,'7','SBI BANK','','14700','','0000-00-00','scan ','',7179,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 18:00:08','','0000-00-00 00:00:00',0),(7376,0,0,'H','2526','','',7376,0,0,'2025-12-12',6016,4099,0,0,3992,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',7180,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 18:02:03','','0000-00-00 00:00:00',0),(7377,0,0,'H','2526','','',7377,0,0,'2025-12-12',6026,4106,0,0,3999,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7181,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 18:06:09','','0000-00-00 00:00:00',0),(7378,0,0,'H','2526','','',7378,0,0,'2025-12-12',6028,4108,0,0,4001,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7182,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 18:12:40','','0000-00-00 00:00:00',0),(7379,0,0,'H','2526','','',7379,0,0,'2025-12-12',6029,4109,0,0,4002,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7183,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 18:14:40','','0000-00-00 00:00:00',0),(7380,0,0,'H','2526','','',7380,0,0,'2025-12-12',6027,4107,0,0,4000,'B',500.00,0.00,'7','HDFC','','12621','','0000-00-00','SCAN','',7184,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-12 18:16:09','','0000-00-00 00:00:00',0),(7381,0,0,'H','2526','','',7381,0,0,'2025-12-12',6030,322,0,0,306,'B',450.00,0.00,'CSH','','','','','0000-00-00','','',7185,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 18:16:19','','0000-00-00 00:00:00',0),(7382,0,0,'H','2526','','',7382,0,0,'2025-12-12',6031,4110,0,0,4003,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7186,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 18:17:26','','0000-00-00 00:00:00',0),(7383,0,0,'H','2526','','',7383,0,0,'2025-12-12',6034,4112,0,0,4005,'B',400.00,0.00,'7','hdfc','','12279','','0000-00-00','scan                          ','',7187,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 18:19:38','','0000-00-00 00:00:00',0),(7384,0,0,'H','2526','','',7384,0,0,'2025-12-12',6033,4111,0,0,4004,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7188,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 18:20:02','','0000-00-00 00:00:00',0),(7385,0,0,'H','2526','','',7385,0,0,'2025-12-12',6032,3838,0,0,3735,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7189,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-12 18:20:24','','0000-00-00 00:00:00',0),(7386,0,0,'H','2526','','',7386,0,0,'2025-12-12',6035,4113,0,0,4006,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7190,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 18:21:34','','0000-00-00 00:00:00',0),(7387,0,0,'H','2526','','',7387,0,0,'2025-12-12',6036,3705,0,0,3605,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',7191,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 18:21:50','','0000-00-00 00:00:00',0),(7388,0,0,'H','2526','','',7388,0,0,'2025-12-12',6037,4114,0,0,4007,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7192,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 18:23:41','','0000-00-00 00:00:00',0),(7389,0,0,'H','2526','','',7389,0,0,'2025-12-12',6038,4115,0,0,4008,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7193,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 18:24:25','','0000-00-00 00:00:00',0),(7390,0,0,'H','2526','','',7390,0,0,'2025-12-12',6040,4117,0,0,4010,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7195,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-12 18:35:04','','0000-00-00 00:00:00',0),(7391,0,0,'H','2526','','',7391,0,0,'2025-12-12',6020,4102,0,0,3995,'B',4400.00,0.00,'7','hdfc','','45482','','0000-00-00','scan','',7196,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 18:35:25','','0000-00-00 00:00:00',0),(7392,0,0,'H','2526','','',7392,0,0,'2025-12-12',6039,4116,0,0,4009,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7197,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 18:41:48','','0000-00-00 00:00:00',0),(7393,0,0,'H','2526','','',7393,0,0,'2025-12-12',6032,3838,0,0,3735,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7198,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-12 18:42:46','','0000-00-00 00:00:00',0),(7394,0,0,'H','2526','','',7394,0,0,'2025-12-12',6041,4118,0,0,4011,'B',400.00,0.00,'7','bob','','42848','','0000-00-00','scan                          ','',7199,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 18:47:17','','0000-00-00 00:00:00',0),(7395,0,0,'H','2526','','',7395,0,0,'2025-12-12',6043,4120,0,0,4013,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7200,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 18:48:05','','0000-00-00 00:00:00',0),(7396,0,0,'H','2526','','',7396,0,0,'2025-12-12',6044,2423,0,0,2368,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7201,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 18:48:30','','0000-00-00 00:00:00',0),(7397,0,0,'H','2526','','',7397,0,0,'2025-12-12',6017,4100,0,0,3993,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',7202,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 18:49:16','','0000-00-00 00:00:00',0),(7398,0,0,'H','2526','','',7398,0,0,'2025-12-12',6045,3696,0,0,3598,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7203,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 18:49:38','','0000-00-00 00:00:00',0),(7399,0,0,'H','2526','','',7399,0,0,'2025-12-12',6042,4119,0,0,4012,'B',1850.00,0.00,'CSH','','','','','0000-00-00','','',7204,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 18:49:50','','0000-00-00 00:00:00',0),(7400,0,0,'H','2526','','',7400,0,0,'2025-12-12',6046,562,0,0,536,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7205,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 18:50:28','','0000-00-00 00:00:00',0),(7401,0,0,'H','2526','','P',7401,0,0,'2025-12-12',6047,4109,0,275,0,'A',8000.00,0.00,'CSH','','','','','0000-00-00','','',7354,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-12 18:54:06','riya','2025-12-14 13:38:54',0),(7402,0,0,'H','2526','','',7402,0,0,'2025-12-12',6048,2326,0,0,2269,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7206,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-12 18:54:51','','0000-00-00 00:00:00',0),(7403,0,0,'H','2526','','',7403,0,0,'2025-12-12',6049,2229,0,0,2174,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7207,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 18:56:12','','0000-00-00 00:00:00',0),(7404,0,0,'H','2526','','',7404,0,0,'2025-12-12',6050,2742,0,0,2673,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7208,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 18:59:57','','0000-00-00 00:00:00',0),(7405,0,0,'H','2526','','',7405,0,0,'2025-12-12',6052,4121,0,0,4014,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7209,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 19:00:33','','0000-00-00 00:00:00',0),(7406,0,0,'H','2526','','',7406,0,0,'2025-12-12',6051,1195,0,0,1156,'B',400.00,0.00,'7','RNB','','79797','','0000-00-00','scan                          ','',7210,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 19:01:39','','0000-00-00 00:00:00',0),(7407,0,0,'H','2526','','',7407,0,0,'2025-12-12',6053,2553,0,0,2495,'B',400.00,0.00,'7','HDFC BANK','','74486','','0000-00-00','scan ','',7211,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 19:03:41','','0000-00-00 00:00:00',0),(7408,0,0,'H','2526','','',7408,0,0,'2025-12-12',6039,4116,0,0,4009,'D',-750.00,0.00,'CSH','','','','','2025-12-12','','',7212,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 19:06:20','','0000-00-00 00:00:00',0),(7409,0,0,'H','2526','','',7409,0,0,'2025-12-12',6054,4122,0,0,4015,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7213,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 19:08:49','','0000-00-00 00:00:00',0),(7410,0,0,'H','2526','','',7410,0,0,'2025-12-12',6055,3399,0,0,3310,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7214,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 19:13:30','','0000-00-00 00:00:00',0),(7411,0,0,'H','2526','','',7411,0,0,'2025-12-12',5994,4088,0,0,3981,'B',600.00,0.00,'7','icici bank','','46466','','0000-00-00','scan ','',7215,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 19:15:50','','0000-00-00 00:00:00',0),(7412,0,0,'H','2526','','',7412,0,0,'2025-12-12',6057,390,0,0,372,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7216,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 19:16:32','','0000-00-00 00:00:00',0),(7413,0,0,'H','2526','','P',7413,0,0,'2025-12-12',6056,4123,0,276,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',7334,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-12 19:17:39','riya','2025-12-13 18:33:00',0),(7414,0,0,'H','2526','','',7414,0,0,'2025-12-12',6058,4124,0,0,4016,'B',700.00,0.00,'7','SBI BANK','','79577','','0000-00-00','scan ','',7218,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 19:27:42','','0000-00-00 00:00:00',0),(7415,0,0,'H','2526','','',7415,0,0,'2025-12-12',2599,2063,0,134,0,'B',30398.00,0.00,'1','HDFC ERGO','','134','','0000-00-00','','',7219,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(7416,0,0,'H','2526','','',7416,0,0,'2025-12-12',6059,364,0,0,348,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7220,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 19:29:23','','0000-00-00 00:00:00',0),(7417,0,0,'H','2526','','',7417,0,0,'2025-12-12',6060,4125,0,0,4017,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7221,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 19:36:23','','0000-00-00 00:00:00',0),(7418,0,0,'H','2526','','P',7418,0,0,'2025-12-12',5163,3630,0,245,0,'A',22000.00,0.00,'CSH','','','','','0000-00-00','','',7222,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-12 19:36:37','vishal','2025-12-12 19:36:58',0),(7419,0,0,'H','2526','','',7419,0,0,'2025-12-12',5967,1887,0,0,1841,'D',0.00,0.00,'CSH','','','','','2025-12-12','','',7129,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-12 19:42:38','','0000-00-00 00:00:00',0),(7420,0,0,'H','2526','','',7420,0,0,'2025-12-12',6045,3696,0,0,3598,'D',-400.00,0.00,'CSH','','','','','2025-12-12','','',7223,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-12 19:44:53','','0000-00-00 00:00:00',0),(7421,0,0,'H','2526','','',7421,0,0,'2025-12-12',6062,4126,0,0,4018,'B',1200.00,0.00,'7','BANK OF MAHARA','','43740','','0000-00-00','SCAN','',7224,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-12 19:52:48','','0000-00-00 00:00:00',0),(7422,0,0,'H','2526','','',7422,0,0,'2025-12-12',6063,4127,0,0,4019,'B',800.00,0.00,'7','bob','','44651','','0000-00-00','scan','',7225,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 19:54:37','','0000-00-00 00:00:00',0),(7423,0,0,'H','2526','','P',7423,0,0,'2025-12-12',6061,4124,0,277,0,'A',6000.00,0.00,'CRD','HDFC BANK','','6023','','0000-00-00','','',7778,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-12 19:57:35','vishal','2025-12-17 13:20:09',0),(7424,0,0,'H','2526','','',7424,0,0,'2025-12-12',6064,4128,0,0,4020,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7226,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-12 20:06:29','','0000-00-00 00:00:00',0),(7425,0,0,'H','2526','','',7425,0,0,'2025-12-12',5967,1887,0,0,1841,'D',-200.00,0.00,'CSH','','','','','2025-12-12','','',7227,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 20:10:29','','0000-00-00 00:00:00',0),(7426,0,0,'H','2526','','',7426,0,0,'2025-12-12',5967,1887,0,0,1841,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',7228,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-12 20:13:15','','0000-00-00 00:00:00',0),(7427,0,0,'H','2526','','',7427,0,0,'2025-12-12',6065,4129,0,0,4021,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7229,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-12 20:26:24','','0000-00-00 00:00:00',0),(7428,0,0,'H','2526','','',7428,0,0,'2025-12-12',6066,4130,0,0,4022,'B',1550.00,0.00,'CSH','','','','','0000-00-00','','',7230,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-12 20:29:13','','0000-00-00 00:00:00',0),(7429,0,0,'H','2526','','',7429,0,0,'2025-12-13',6067,3780,0,0,4023,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7231,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 08:39:18','','0000-00-00 00:00:00',0),(7430,0,0,'H','2526','','',7430,0,0,'2025-12-13',6068,4126,0,0,4018,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7232,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 08:40:16','','0000-00-00 00:00:00',0),(7431,0,0,'H','2526','','',7431,0,0,'2025-12-13',6069,168,0,0,155,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7233,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 09:37:52','','0000-00-00 00:00:00',0),(7432,0,0,'H','2526','','',7432,0,0,'2025-12-13',6072,4131,0,0,4024,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7234,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 09:58:26','','0000-00-00 00:00:00',0),(7433,0,0,'H','2526','','',7433,0,0,'2025-12-13',6073,4132,0,0,4025,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7235,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-13 10:02:04','','0000-00-00 00:00:00',0),(7434,0,0,'H','2526','','P',7434,0,0,'2025-12-13',6070,4087,0,278,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',7353,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-13 10:04:45','riya','2025-12-14 13:22:49',0),(7435,0,0,'H','2526','','',7435,0,0,'2025-12-13',6076,1170,0,0,1130,'B',500.00,0.00,'7','union bank','','75317','','0000-00-00','scan','',7236,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 10:06:35','','0000-00-00 00:00:00',0),(7436,0,0,'H','2526','','',7436,0,0,'2025-12-13',6077,3556,0,0,3457,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7237,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-13 10:07:11','','0000-00-00 00:00:00',0),(7437,0,0,'H','2526','','',7437,0,0,'2025-12-13',6074,4133,0,0,4026,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7238,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-13 10:07:59','','0000-00-00 00:00:00',0),(7438,0,0,'H','2526','','',7438,0,0,'2025-12-13',6078,2560,0,0,2503,'B',300.00,0.00,'7','sbi','','96084','','0000-00-00','scan                          ','',7239,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-13 10:08:55','','0000-00-00 00:00:00',0),(7439,0,0,'H','2526','','',7439,0,0,'2025-12-13',6079,624,0,0,594,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7240,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-13 10:09:25','','0000-00-00 00:00:00',0),(7440,0,0,'H','2526','','',7440,0,0,'2025-12-13',6080,4134,0,0,4027,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7241,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 10:10:36','','0000-00-00 00:00:00',0),(7441,0,0,'H','2526','','',7441,0,0,'2025-12-13',6083,3561,0,0,3462,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7242,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 10:26:49','','0000-00-00 00:00:00',0),(7442,0,0,'H','2526','','P',7442,0,0,'2025-12-13',6084,4106,0,280,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',7360,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-13 10:28:57','vishal','2025-12-14 17:34:17',0),(7443,0,0,'H','2526','','',7443,0,0,'2025-12-13',6086,3978,0,0,3869,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7243,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-13 10:30:15','','0000-00-00 00:00:00',0),(7444,0,0,'H','2526','','',7444,0,0,'2025-12-13',6089,4138,0,0,4031,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7244,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 10:34:46','','0000-00-00 00:00:00',0),(7445,0,0,'H','2526','','',7445,0,0,'2025-12-13',6087,4136,0,0,4029,'B',750.00,0.00,'7','axis bank','','64562','','0000-00-00','scan ','',7245,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-13 10:35:35','','0000-00-00 00:00:00',0),(7446,0,0,'H','2526','','',7446,0,0,'2025-12-13',6088,4137,0,0,4030,'B',900.00,0.00,'7','HDFC','','55139','','0000-00-00','SCAN','',7246,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-13 10:36:35','','0000-00-00 00:00:00',0),(7447,0,0,'H','2526','','',7447,0,0,'2025-12-13',6091,3482,0,0,3386,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7247,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-13 10:37:21','','0000-00-00 00:00:00',0),(7448,0,0,'H','2526','','',7448,0,0,'2025-12-13',6092,2291,0,0,2235,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7248,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 10:37:32','','0000-00-00 00:00:00',0),(7449,0,0,'H','2526','','',7449,0,0,'2025-12-13',6090,4139,0,0,4032,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7249,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 10:39:53','','0000-00-00 00:00:00',0),(7450,0,0,'H','2526','','',7450,0,0,'2025-12-13',6094,4140,0,0,4033,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7250,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-13 10:40:28','','0000-00-00 00:00:00',0),(7451,0,0,'H','2526','','',7451,0,0,'2025-12-13',6093,1517,0,0,1476,'B',300.00,0.00,'7','axis bank','','81244','','0000-00-00','scan ','',7251,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-13 10:40:40','','0000-00-00 00:00:00',0),(7452,0,0,'H','2526','','',7452,0,0,'2025-12-13',6095,324,0,0,308,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7252,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 10:40:42','','0000-00-00 00:00:00',0),(7453,0,0,'H','2526','','',7453,0,0,'2025-12-13',6096,3668,0,0,3568,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7253,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-13 10:41:42','','0000-00-00 00:00:00',0),(7454,0,0,'H','2526','','',7454,0,0,'2025-12-13',6081,2782,0,0,2711,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7254,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-13 10:45:50','','0000-00-00 00:00:00',0),(7455,0,0,'H','2526','','',7455,0,0,'2025-12-13',6098,4141,0,0,4034,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7255,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-13 10:47:30','','0000-00-00 00:00:00',0),(7456,0,0,'H','2526','','',7456,0,0,'2025-12-13',6099,4142,0,0,4035,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7256,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 10:52:54','','0000-00-00 00:00:00',0),(7457,0,0,'H','2526','','',7457,0,0,'2025-12-13',6085,4135,0,0,4028,'B',250.00,0.00,'7','sbi','','55100','','0000-00-00','scan     ','',7257,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-13 10:53:10','','0000-00-00 00:00:00',0),(7458,0,0,'H','2526','','',7458,0,0,'2025-12-13',6100,1669,0,0,1624,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7258,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 10:54:38','','0000-00-00 00:00:00',0),(7459,0,0,'H','2526','','P',7459,0,0,'2025-12-13',5678,3912,0,267,0,'A',7400.00,0.00,'7','GPAY','','71840','','0000-00-00','SCAN','',7265,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-13 10:55:02','riya','2025-12-13 11:05:31',0),(7460,0,0,'H','2526','','',7460,0,0,'2025-12-13',6102,2532,0,0,2474,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7259,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-13 10:58:26','','0000-00-00 00:00:00',0),(7461,0,0,'H','2526','','',7461,0,0,'2025-12-13',6105,492,0,0,466,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7260,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 11:02:14','','0000-00-00 00:00:00',0),(7462,0,0,'H','2526','','',7462,0,0,'2025-12-13',6102,2532,0,0,2474,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7261,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-13 11:04:40','','0000-00-00 00:00:00',0),(7463,0,0,'H','2526','','',7463,0,0,'2025-12-13',6107,4145,0,0,4038,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7262,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-13 11:04:50','','0000-00-00 00:00:00',0),(7464,0,0,'H','2526','','',7464,0,0,'2025-12-13',6106,4144,0,0,4037,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7263,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(7465,0,0,'H','2526','','',7465,0,0,'2025-12-13',6108,4146,0,0,4039,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7266,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-13 11:06:32','','0000-00-00 00:00:00',0),(7466,0,0,'H','2526','','',7466,0,0,'2025-12-13',6109,4147,0,0,4040,'B',900.00,0.00,'7','icici','','13596','','0000-00-00','scan','',7267,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 11:10:34','','0000-00-00 00:00:00',0),(7467,0,0,'H','2526','','',7467,0,0,'2025-12-13',6111,4148,0,0,4041,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7268,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 11:13:44','','0000-00-00 00:00:00',0),(7468,0,0,'H','2526','','',7468,0,0,'2025-12-13',6110,3807,0,0,3704,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7269,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-13 11:13:49','','0000-00-00 00:00:00',0),(7469,0,0,'H','2526','','',7469,0,0,'2025-12-13',6112,3039,0,0,2960,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7270,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 11:15:01','','0000-00-00 00:00:00',0),(7470,0,0,'H','2526','','',7470,0,0,'2025-12-13',6097,3337,0,0,3254,'B',100.00,0.00,'7','SBI BANK','','29503','','0000-00-00','scan ','',7271,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-13 11:15:20','','0000-00-00 00:00:00',0),(7471,0,0,'H','2526','','',7471,0,0,'2025-12-13',6101,4143,0,0,4036,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7272,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-13 11:16:47','','0000-00-00 00:00:00',0),(7472,0,0,'H','2526','','',7472,0,0,'2025-12-13',6113,3610,0,0,3508,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7273,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 11:18:44','','0000-00-00 00:00:00',0),(7473,0,0,'H','2526','','',7473,0,0,'2025-12-13',6114,1319,0,0,1280,'B',400.00,0.00,'7','icici bank','','72166','','0000-00-00','scan ','',7274,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-13 11:19:17','','0000-00-00 00:00:00',0),(7474,0,0,'H','2526','','',7474,0,0,'2025-12-13',6072,4131,0,0,4024,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',7275,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 11:20:30','','0000-00-00 00:00:00',0),(7475,0,0,'H','2526','','',7475,0,0,'2025-12-13',6083,3561,0,0,3462,'D',-500.00,0.00,'CSH','','','','','2025-12-13','','',7276,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 11:23:00','','0000-00-00 00:00:00',0),(7476,0,0,'H','2526','','',7476,0,0,'2025-12-13',6083,3561,0,0,3462,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7277,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 11:23:46','','0000-00-00 00:00:00',0),(7477,0,0,'H','2526','','',7477,0,0,'2025-12-13',6094,4140,0,0,4033,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7278,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-13 11:26:49','','0000-00-00 00:00:00',0),(7478,0,0,'H','2526','','',7478,0,0,'2025-12-13',6115,4149,0,0,4042,'B',750.00,0.00,'7','canara bank','','86679','','0000-00-00','scan','',7279,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 11:28:51','','0000-00-00 00:00:00',0),(7479,0,0,'H','2526','','',7479,0,0,'2025-12-13',6116,3394,0,0,3305,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7280,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-13 11:29:36','','0000-00-00 00:00:00',0),(7480,0,0,'H','2526','','',7480,0,0,'2025-12-13',6117,4150,0,0,4043,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7281,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 11:30:41','','0000-00-00 00:00:00',0),(7481,0,0,'H','2526','','',7481,0,0,'2025-12-13',6119,3625,0,0,3523,'B',400.00,0.00,'7','sbi','','70015','','0000-00-00','scan  ','',7282,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-13 11:33:00','','0000-00-00 00:00:00',0),(7482,0,0,'H','2526','','',7482,0,0,'2025-12-13',6120,4152,0,0,4045,'B',900.00,0.00,'7','sbi','','77424','','0000-00-00','scan','',7283,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 11:36:42','','0000-00-00 00:00:00',0),(7483,0,0,'H','2526','','',7483,0,0,'2025-12-13',6099,4142,0,0,4035,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',7284,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 11:37:09','','0000-00-00 00:00:00',0),(7484,0,0,'H','2526','','',7484,0,0,'2025-12-13',6087,4136,0,0,4029,'B',300.00,0.00,'7','axis bank','','75021','','0000-00-00','scan ','',7285,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-13 11:38:27','','0000-00-00 00:00:00',0),(7485,0,0,'H','2526','','',7485,0,0,'2025-12-13',6110,3807,0,0,3704,'D',-300.00,0.00,'CSH','','','','','2025-12-13','','',7286,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-13 11:39:43','','0000-00-00 00:00:00',0),(7486,0,0,'H','2526','','',7486,0,0,'2025-12-13',6109,4147,0,0,4040,'B',4500.00,0.00,'7','icici','','10861','','0000-00-00','scan','',7287,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 11:52:44','','0000-00-00 00:00:00',0),(7487,0,0,'H','2526','','',7487,0,0,'2025-12-13',6121,3618,0,0,3517,'B',400.00,0.00,'7','CENTRAL BANK','','72997','','0000-00-00','scan ','',7288,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-13 11:58:01','','0000-00-00 00:00:00',0),(7488,0,0,'H','2526','','',7488,0,0,'2025-12-13',6122,252,0,0,237,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7289,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 12:03:56','','0000-00-00 00:00:00',0),(7489,0,0,'H','2526','','',7489,0,0,'2025-12-13',6117,4150,0,0,4043,'B',4500.00,0.00,'7','union bank','','74504','','0000-00-00','scan','',7290,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 12:07:25','','0000-00-00 00:00:00',0),(7490,0,0,'H','2526','','',7490,0,0,'2025-12-13',6071,4080,0,0,3973,'B',5000.00,0.00,'7','BOI','','65177','','0000-00-00','scan ','',7291,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-13 12:13:35','','0000-00-00 00:00:00',0),(7491,0,0,'H','2526','','',7491,0,0,'2025-12-13',6123,4153,0,0,4046,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7292,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 12:14:42','','0000-00-00 00:00:00',0),(7492,0,0,'H','2526','','',7492,0,0,'2025-12-13',6124,4154,0,0,4047,'B',750.00,0.00,'7','HDFC BANK','','37567','','0000-00-00','scan ','',7293,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-13 12:15:56','','0000-00-00 00:00:00',0),(7493,0,0,'H','2526','','',7493,0,0,'2025-12-13',6125,4155,0,0,4048,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7294,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 12:17:58','','0000-00-00 00:00:00',0),(7494,0,0,'H','2526','','',7494,0,0,'2025-12-13',6126,4156,0,0,4049,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7295,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-13 12:20:00','','0000-00-00 00:00:00',0),(7495,0,0,'H','2526','','',7495,0,0,'2025-12-13',6106,4144,0,0,4037,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',7296,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 12:21:30','','0000-00-00 00:00:00',0),(7496,0,0,'H','2526','','',7496,0,0,'2025-12-13',6128,1294,0,0,1253,'B',500.00,0.00,'7','central bank','','70405','','0000-00-00','scan','',7297,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 12:26:50','','0000-00-00 00:00:00',0),(7497,0,0,'H','2526','','',7497,0,0,'2025-12-13',6129,3510,0,0,4050,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7298,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-13 12:31:38','','0000-00-00 00:00:00',0),(7498,0,0,'H','2526','','',7498,0,0,'2025-12-13',6130,2808,0,0,2738,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',7299,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-13 12:31:44','','0000-00-00 00:00:00',0),(7499,0,0,'H','2526','','',7499,0,0,'2025-12-13',6132,4158,0,0,4051,'B',400.00,0.00,'7','icici','','76794','','0000-00-00','scan','',7300,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 12:34:00','','0000-00-00 00:00:00',0),(7500,0,0,'H','2526','','',7500,0,0,'2025-12-13',6134,4160,0,0,4053,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7301,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-13 12:37:04','','0000-00-00 00:00:00',0),(7501,0,0,'H','2526','','',7501,0,0,'2025-12-13',6133,4159,0,0,4052,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7302,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-13 12:37:23','','0000-00-00 00:00:00',0),(7502,0,0,'H','2526','','',7502,0,0,'2025-12-13',6135,1086,0,0,1053,'B',500.00,0.00,'7','hdfc','','98375','','0000-00-00','scan','',7303,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 12:38:59','','0000-00-00 00:00:00',0),(7503,0,0,'H','2526','','',7503,0,0,'2025-12-13',6108,4146,0,0,4039,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',7304,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 12:41:18','','0000-00-00 00:00:00',0),(7504,0,0,'H','2526','','',7504,0,0,'2025-12-13',6136,255,0,0,240,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7305,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-13 12:45:24','','0000-00-00 00:00:00',0),(7505,0,0,'H','2526','','',7505,0,0,'2025-12-13',6111,4148,0,0,4041,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',7306,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 12:51:45','','0000-00-00 00:00:00',0),(7506,0,0,'H','2526','','',7506,0,0,'2025-12-13',6137,2250,0,0,2193,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7307,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 13:10:56','','0000-00-00 00:00:00',0),(7507,0,0,'H','2526','','P',7507,0,0,'2025-12-13',5527,3827,0,260,0,'R',-11600.00,0.00,'CSH','','','','','0000-00-00','CASH','-',7317,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-13 13:11:49','riya','2025-12-13 14:12:13',0),(7508,0,0,'H','2526','','',7508,0,0,'2025-12-13',6138,4161,0,0,4054,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7310,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-13 13:13:20','','0000-00-00 00:00:00',0),(7509,0,0,'H','2526','','',7509,0,0,'2025-12-13',6139,2835,0,0,2765,'B',400.00,0.00,'7','HDFC BANK','','29467','','0000-00-00','scan ','',7311,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-13 13:15:29','','0000-00-00 00:00:00',0),(7510,0,0,'H','2526','','',7510,0,0,'2025-12-13',6123,4153,0,0,4046,'B',4000.00,0.00,'7','union bank','','81222','','0000-00-00','scan','',7312,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 13:16:58','','0000-00-00 00:00:00',0),(7511,0,0,'H','2526','','',7511,0,0,'2025-12-13',6138,4161,0,0,4054,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',7313,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-13 13:35:54','','0000-00-00 00:00:00',0),(7512,0,0,'H','2526','','',7512,0,0,'2025-12-13',6089,4138,0,0,4031,'B',4200.00,0.00,'7','utkarsh bank','','81559','','0000-00-00','scan','',7314,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 13:54:52','','0000-00-00 00:00:00',0),(7513,0,0,'H','2526','','P',7513,0,0,'2025-12-13',5527,3827,0,260,0,'A',11600.00,0.00,'CSH','','','','','0000-00-00','','',7317,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-13 14:10:52','riya','2025-12-13 14:12:13',0),(7514,0,0,'H','2526','','P',7514,0,0,'2025-12-13',5527,3827,0,260,0,'A',11600.00,0.00,'7','ICICI','','72674','','0000-00-00','SCAN','',7317,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-13 14:11:30','riya','2025-12-13 14:12:13',0),(7515,0,0,'H','2526','','P',7515,0,0,'2025-12-13',4694,3350,0,222,0,'A',32000.00,0.00,'CSH','','','','','0000-00-00','','',7319,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-13 14:23:48','riya','2025-12-13 14:24:24',0),(7516,0,0,'H','2526','','P',7516,0,0,'2025-12-13',6131,4157,0,281,0,'A',5400.00,0.00,'7','nagrik bank','','CICAgOiLzv2_Fw','','0000-00-00','','',7321,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-13 15:02:06','riya','2025-12-13 15:05:52',0),(7517,0,0,'H','2526','','',7517,0,0,'2025-12-13',6140,1053,0,0,1019,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7322,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 17:12:40','','0000-00-00 00:00:00',0),(7518,0,0,'H','2526','','',7518,0,0,'2025-12-13',6141,840,0,0,809,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7323,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 17:14:12','','0000-00-00 00:00:00',0),(7519,0,0,'H','2526','','P',7519,0,0,'2025-12-13',4017,2937,0,187,0,'A',40000.00,0.00,'7','bank of india','','115576101799','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-13 17:25:51','riya','2025-12-13 17:25:51',0),(7520,0,0,'H','2526','','',7520,0,0,'2025-12-13',6142,4162,0,0,4055,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7324,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-13 17:34:56','','0000-00-00 00:00:00',0),(7521,0,0,'H','2526','','',7521,0,0,'2025-12-13',6143,4163,0,0,4056,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7325,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 17:48:33','','0000-00-00 00:00:00',0),(7522,0,0,'H','2526','','',7522,0,0,'2025-12-13',6145,4164,0,0,4057,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7326,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 17:58:18','','0000-00-00 00:00:00',0),(7523,0,0,'H','2526','','',7523,0,0,'2025-12-13',6147,4009,0,0,3901,'B',100.00,0.00,'7','icici','','06345','','0000-00-00','scan     ','',7327,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-13 18:03:28','','0000-00-00 00:00:00',0),(7524,0,0,'H','2526','','',7524,0,0,'2025-12-13',6146,4165,0,0,4058,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7328,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-13 18:04:33','','0000-00-00 00:00:00',0),(7525,0,0,'H','2526','','P',7525,0,0,'2025-12-13',6056,4123,0,276,0,'R',-400.00,0.00,'CSH','','','','','0000-00-00','-','',7334,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-13 18:23:26','riya','2025-12-13 18:33:00',0),(7526,0,0,'H','2526','','',7526,0,0,'2025-12-13',6148,3705,0,0,3605,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7331,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-13 18:30:53','','0000-00-00 00:00:00',0),(7527,0,0,'H','2526','','P',7527,0,0,'2025-12-13',6056,4123,0,276,0,'A',1200.00,0.00,'CSH','','','','','0000-00-00','','',7334,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-13 18:32:26','riya','2025-12-13 18:33:00',0),(7528,0,0,'H','2526','','',7528,0,0,'2025-12-13',6149,3112,0,0,3031,'B',300.00,0.00,'7','south bank','','01799','','0000-00-00','scan','',7335,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 18:36:03','','0000-00-00 00:00:00',0),(7529,0,0,'H','2526','','',7529,0,0,'2025-12-13',6150,4166,0,0,4059,'B',800.00,0.00,'7','sbi','','12866','','0000-00-00','scan','',7336,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-13 18:47:10','','0000-00-00 00:00:00',0),(7530,0,0,'H','2526','','',7530,0,0,'2025-12-13',6150,4166,0,0,4059,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7337,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-13 18:55:56','','0000-00-00 00:00:00',0),(7531,0,0,'H','2526','','',7531,0,0,'2025-12-13',6151,1327,0,0,1288,'B',100.00,0.00,'7','bob','','20759','','0000-00-00','scan                          ','',7338,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-13 18:59:54','','0000-00-00 00:00:00',0),(7532,0,0,'H','2526','','',7532,0,0,'2025-12-13',6152,3399,0,0,3310,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7339,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-13 19:03:58','','0000-00-00 00:00:00',0),(7533,0,0,'H','2526','','',7533,0,0,'2025-12-13',6153,4167,0,0,4060,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',7340,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-13 19:28:22','','0000-00-00 00:00:00',0),(7534,0,0,'H','2526','','',7534,0,0,'2025-12-13',6154,1517,0,0,1476,'B',3000.00,0.00,'7','axis','','45812','','0000-00-00','scan','',7341,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-13 20:12:26','','0000-00-00 00:00:00',0),(7535,0,0,'H','2526','','P',7535,0,0,'2025-12-13',6155,4140,0,282,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',7638,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-13 21:30:36','vishal','2025-12-16 14:08:52',0),(7536,0,0,'H','2526','','',7536,0,0,'2025-12-14',6156,3352,0,0,3264,'B',1100.00,0.00,'7','SBI BANK','','38627','','0000-00-00','scan ','',7342,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-14 09:26:55','','0000-00-00 00:00:00',0),(7537,0,0,'H','2526','','',7537,0,0,'2025-12-14',6157,4168,0,0,4061,'B',1700.00,0.00,'CSH','','','','','0000-00-00','','',7343,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-14 09:36:24','','0000-00-00 00:00:00',0),(7538,0,0,'H','2526','','',7538,0,0,'2025-12-14',6158,3765,0,0,4062,'B',900.00,0.00,'7','SBI BANK','','32201','','0000-00-00','scan ','',7344,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-14 09:52:05','','0000-00-00 00:00:00',0),(7539,0,0,'H','2526','','',7539,0,0,'2025-12-14',6159,4169,0,0,4063,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7345,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-14 10:02:02','','0000-00-00 00:00:00',0),(7540,0,0,'H','2526','','',7540,0,0,'2025-12-14',6160,4170,0,0,4064,'B',1600.00,0.00,'CSH','','','','','0000-00-00','','',7346,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-14 10:42:15','','0000-00-00 00:00:00',0),(7541,0,0,'H','2526','','',7541,0,0,'2025-12-14',6162,3394,0,0,3305,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',7348,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-14 11:20:58','','0000-00-00 00:00:00',0),(7542,0,0,'H','2526','','P',7542,0,0,'2025-12-14',6161,4171,0,283,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',7358,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-14 11:35:44','vishal','2025-12-14 16:52:21',0),(7543,0,0,'H','2526','','P',7543,0,0,'2025-12-14',6163,4172,0,284,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',8093,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-14 11:37:17','riya','2025-12-19 14:49:10',0),(7544,0,0,'H','2526','','P',7544,0,0,'2025-12-14',6070,4087,0,278,0,'A',5700.00,0.00,'CSH','','','','','0000-00-00','','',7353,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-14 12:46:43','riya','2025-12-14 13:22:49',0),(7545,0,0,'H','2526','','',7545,0,0,'2025-12-14',6164,2808,0,0,2738,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',7351,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-14 12:57:45','','0000-00-00 00:00:00',0),(7546,0,0,'H','2526','','P',7546,0,0,'2025-12-14',6165,4173,0,285,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','Y',0,'N','riya','2025-12-14 13:46:52','riya','2025-12-14 13:01:28','riya','2025-12-14 13:46:52',0),(7547,0,0,'H','2526','','P',7547,0,0,'2025-12-14',5583,3863,0,261,0,'A',15600.00,0.00,'7','union bank','','53488652484','','0000-00-00','SCAN','',7352,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-14 13:19:18','riya','2025-12-14 13:19:53',0),(7548,0,0,'H','2526','','P',7548,0,0,'2025-12-14',6047,4109,0,275,0,'A',9200.00,0.00,'7','icici','','153654690413','','0000-00-00','SCAN','',7354,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-14 13:38:04','riya','2025-12-14 13:38:54',0),(7549,0,0,'H','2526','','P',7549,0,0,'2025-12-14',6165,4173,0,285,0,'A',-10000.00,0.00,'CSH','','','','','0000-00-00','','by mistake',0,'N','P','Y',7546,'N','','0000-00-00 00:00:00','riya','2025-12-14 13:46:52','riya','2025-12-14 13:46:52',0),(7550,0,0,'H','2526','','P',7550,0,0,'2025-12-14',6165,4173,0,285,0,'A',8000.00,0.00,'CSH','','','','','0000-00-00','','',8343,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-14 13:47:27','riya','2025-12-22 15:21:43',0),(7551,0,0,'H','2526','','P',7551,0,0,'2025-12-14',6155,4140,0,282,0,'A',25000.00,0.00,'CSH','','','','','0000-00-00','','',7638,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-14 14:01:27','vishal','2025-12-16 14:08:52',0),(7552,0,0,'H','2526','','',7552,0,0,'2025-12-14',6161,4171,0,283,0,'D',-3300.00,0.00,'CSH','','','','','0000-00-00','','',7358,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-14 16:52:21','','0000-00-00 00:00:00',0),(7553,0,0,'H','2526','','P',7553,0,0,'2025-12-14',6084,4106,0,280,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',7360,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-14 17:33:55','vishal','2025-12-14 17:34:17',0),(7554,0,0,'H','2526','','P',7554,0,0,'2025-12-14',6061,4124,0,277,0,'A',5000.00,0.00,'CRD','OTHER BANK','','6023','','0000-00-00','','',7778,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-14 21:00:55','vishal','2025-12-17 13:20:09',0),(7555,0,0,'H','2526','','P',7555,0,0,'2025-12-14',6167,4174,0,287,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',7553,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-14 21:21:01','riya','2025-12-15 21:26:57',0),(7556,0,0,'H','2526','','',7556,0,0,'2025-12-14',674,606,0,50,0,'D',-7000.00,0.00,'1','AXIS BANK','','1234','','0000-00-00','','',7361,'N','','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-14 21:27:15','','0000-00-00 00:00:00',0),(7557,0,0,'H','2526','','',7557,0,0,'2025-12-15',6168,3473,0,0,3378,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7362,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 08:49:17','','0000-00-00 00:00:00',0),(7558,0,0,'H','2526','','',7558,0,0,'2025-12-15',6169,4175,0,0,4065,'B',3100.00,0.00,'CSH','','','','','0000-00-00','','',7363,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 09:10:50','','0000-00-00 00:00:00',0),(7559,0,0,'H','2526','','',7559,0,0,'2025-12-15',6170,4176,0,0,4066,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7364,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-15 09:16:07','','0000-00-00 00:00:00',0),(7560,0,0,'H','2526','','',7560,0,0,'2025-12-15',6171,4177,0,0,4067,'B',2600.00,0.00,'CSH','','','','','0000-00-00','','',7365,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 09:17:27','','0000-00-00 00:00:00',0),(7561,0,0,'H','2526','','',7561,0,0,'2025-12-15',6172,1268,0,0,1227,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7366,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 10:06:33','','0000-00-00 00:00:00',0),(7562,0,0,'H','2526','','',7562,0,0,'2025-12-15',6173,4178,0,0,4068,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7367,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 10:11:21','','0000-00-00 00:00:00',0),(7563,0,0,'H','2526','','',7563,0,0,'2025-12-15',6175,4179,0,0,4069,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7368,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 10:16:37','','0000-00-00 00:00:00',0),(7564,0,0,'H','2526','','',7564,0,0,'2025-12-15',6177,3615,0,0,3514,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7369,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 10:18:03','','0000-00-00 00:00:00',0),(7565,0,0,'H','2526','','',7565,0,0,'2025-12-15',6178,4180,0,0,4070,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7370,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 10:26:01','','0000-00-00 00:00:00',0),(7566,0,0,'H','2526','','',7566,0,0,'2025-12-15',6174,3463,0,0,3366,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7371,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 10:28:31','','0000-00-00 00:00:00',0),(7567,0,0,'H','2526','','',7567,0,0,'2025-12-15',6179,4181,0,0,4071,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7372,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 10:30:58','','0000-00-00 00:00:00',0),(7568,0,0,'H','2526','','',7568,0,0,'2025-12-15',6180,2922,0,0,2850,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7373,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 10:31:11','','0000-00-00 00:00:00',0),(7569,0,0,'H','2526','','',7569,0,0,'2025-12-15',6181,3814,0,0,3712,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7374,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 10:32:42','','0000-00-00 00:00:00',0),(7570,0,0,'H','2526','','',7570,0,0,'2025-12-15',6182,4182,0,0,4072,'B',800.00,0.00,'7','sbi','','28200','','0000-00-00','scan','',7375,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 10:34:11','','0000-00-00 00:00:00',0),(7571,0,0,'H','2526','','',7571,0,0,'2025-12-15',6183,2295,0,0,2239,'B',500.00,0.00,'7','hdfc','','70205','','0000-00-00','scan','',7376,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 10:35:46','','0000-00-00 00:00:00',0),(7572,0,0,'H','2526','','',7572,0,0,'2025-12-15',6184,2334,0,0,2277,'B',500.00,0.00,'7','SARASWAT BANK','','92458','','0000-00-00','scan ','',7377,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 10:38:14','','0000-00-00 00:00:00',0),(7573,0,0,'H','2526','','',7573,0,0,'2025-12-15',6185,4183,0,0,4073,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7378,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 10:40:08','','0000-00-00 00:00:00',0),(7574,0,0,'H','2526','','',7574,0,0,'2025-12-15',6187,2013,0,0,1965,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7379,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 10:46:13','','0000-00-00 00:00:00',0),(7575,0,0,'H','2526','','',7575,0,0,'2025-12-15',6188,3347,0,0,3695,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7380,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 10:48:28','','0000-00-00 00:00:00',0),(7576,0,0,'H','2526','','',7576,0,0,'2025-12-15',6189,4184,0,0,4075,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7381,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 10:48:46','','0000-00-00 00:00:00',0),(7577,0,0,'H','2526','','',7577,0,0,'2025-12-15',6190,4185,0,0,4076,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7382,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 10:51:27','','0000-00-00 00:00:00',0),(7578,0,0,'H','2526','','',7578,0,0,'2025-12-15',6191,3721,0,0,3720,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7383,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-15 10:52:35','','0000-00-00 00:00:00',0),(7579,0,0,'H','2526','','',7579,0,0,'2025-12-15',6192,4186,0,0,4077,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7384,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 10:54:04','','0000-00-00 00:00:00',0),(7580,0,0,'H','2526','','',7580,0,0,'2025-12-15',6193,842,0,0,811,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7385,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 10:54:54','','0000-00-00 00:00:00',0),(7581,0,0,'H','2526','','',7581,0,0,'2025-12-15',6194,4187,0,0,4078,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7386,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-15 10:55:23','','0000-00-00 00:00:00',0),(7582,0,0,'H','2526','','',7582,0,0,'2025-12-15',6196,4188,0,0,4079,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7387,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 10:56:59','','0000-00-00 00:00:00',0),(7583,0,0,'H','2526','','',7583,0,0,'2025-12-15',6195,3858,0,0,3755,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7388,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 10:57:40','','0000-00-00 00:00:00',0),(7584,0,0,'H','2526','','',7584,0,0,'2025-12-15',6197,3234,0,0,3148,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7389,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 10:58:22','','0000-00-00 00:00:00',0),(7585,0,0,'H','2526','','',7585,0,0,'2025-12-15',6173,4178,0,0,4068,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',7390,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 11:01:34','','0000-00-00 00:00:00',0),(7586,0,0,'H','2526','','',7586,0,0,'2025-12-15',6199,3688,0,0,3589,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7391,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 11:02:46','','0000-00-00 00:00:00',0),(7587,0,0,'H','2526','','',7587,0,0,'2025-12-15',6202,4190,0,0,4080,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7392,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 11:08:12','','0000-00-00 00:00:00',0),(7588,0,0,'H','2526','','',7588,0,0,'2025-12-15',6176,4011,0,0,3902,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7393,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-15 11:10:37','','0000-00-00 00:00:00',0),(7589,0,0,'H','2526','','',7589,0,0,'2025-12-15',6203,3394,0,0,3305,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',7394,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 11:10:56','','0000-00-00 00:00:00',0),(7590,0,0,'H','2526','','',7590,0,0,'2025-12-15',6204,4191,0,0,4081,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7395,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 11:11:44','','0000-00-00 00:00:00',0),(7591,0,0,'H','2526','','',7591,0,0,'2025-12-15',6205,1549,0,0,1508,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7396,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 11:12:28','','0000-00-00 00:00:00',0),(7592,0,0,'H','2526','','',7592,0,0,'2025-12-15',6207,4193,0,0,4083,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7397,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-15 11:13:36','','0000-00-00 00:00:00',0),(7593,0,0,'H','2526','','',7593,0,0,'2025-12-15',6206,4192,0,0,4082,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7398,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-15 11:13:48','','0000-00-00 00:00:00',0),(7594,0,0,'H','2526','','',7594,0,0,'2025-12-15',6209,4195,0,0,4085,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7399,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 11:14:41','','0000-00-00 00:00:00',0),(7595,0,0,'H','2526','','P',7595,0,0,'2025-12-15',6201,4189,0,288,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',7582,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-15 11:14:50','vishal','2025-12-16 11:15:58',0),(7596,0,0,'H','2526','','',7596,0,0,'2025-12-15',6210,4196,0,0,4086,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7400,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-15 11:15:11','','0000-00-00 00:00:00',0),(7597,0,0,'H','2526','','',7597,0,0,'2025-12-15',6212,4198,0,0,4088,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7401,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 11:18:22','','0000-00-00 00:00:00',0),(7598,0,0,'H','2526','','',7598,0,0,'2025-12-15',6213,4199,0,0,4089,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7402,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-15 11:19:53','','0000-00-00 00:00:00',0),(7599,0,0,'H','2526','','',7599,0,0,'2025-12-15',6214,4200,0,0,4090,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7403,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 11:20:10','','0000-00-00 00:00:00',0),(7600,0,0,'H','2526','','',7600,0,0,'2025-12-15',6211,4197,0,0,4087,'B',550.00,0.00,'CSH','','','','','0000-00-00','','',7404,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 11:21:06','','0000-00-00 00:00:00',0),(7601,0,0,'H','2526','','',7601,0,0,'2025-12-15',6215,4201,0,0,4091,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7405,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 11:21:46','','0000-00-00 00:00:00',0),(7602,0,0,'H','2526','','',7602,0,0,'2025-12-15',6216,3455,0,0,3358,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7406,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 11:22:08','','0000-00-00 00:00:00',0),(7603,0,0,'H','2526','','',7603,0,0,'2025-12-15',6217,2650,0,0,2590,'B',500.00,0.00,'7','HDFC','','53747','','0000-00-00','scan','',7407,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 11:25:45','','0000-00-00 00:00:00',0),(7604,0,0,'H','2526','','',7604,0,0,'2025-12-15',6218,4202,0,0,4092,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7408,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 11:26:54','','0000-00-00 00:00:00',0),(7605,0,0,'H','2526','','',7605,0,0,'2025-12-15',6219,4203,0,0,4093,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7409,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 11:28:52','','0000-00-00 00:00:00',0),(7606,0,0,'H','2526','','',7606,0,0,'2025-12-15',6200,3477,0,0,3382,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7410,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 11:30:36','','0000-00-00 00:00:00',0),(7607,0,0,'H','2526','','',7607,0,0,'2025-12-15',6186,3778,0,0,4074,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7411,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-15 11:30:55','','0000-00-00 00:00:00',0),(7608,0,0,'H','2526','','',7608,0,0,'2025-12-15',6221,2803,0,0,2733,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7412,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-15 11:31:10','','0000-00-00 00:00:00',0),(7609,0,0,'H','2526','','',7609,0,0,'2025-12-15',6186,3778,0,0,4074,'D',-400.00,0.00,'CSH','','','','','2025-12-15','','',7413,'N','N','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-15 11:32:31','','0000-00-00 00:00:00',0),(7610,0,0,'H','2526','','',7610,0,0,'2025-12-15',6221,2803,0,0,2733,'D',-400.00,0.00,'CSH','','','','','2025-12-15','','',7414,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 11:33:06','','0000-00-00 00:00:00',0),(7611,0,0,'H','2526','','',7611,0,0,'2025-12-15',6186,3778,0,0,4074,'B',100.00,0.00,'7','hdfc','','84322','','0000-00-00','scan     ','',7415,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-15 11:33:06','','0000-00-00 00:00:00',0),(7612,0,0,'H','2526','','',7612,0,0,'2025-12-15',6222,4204,0,0,4094,'B',800.00,0.00,'7','AXIS','','27182','','0000-00-00','scan','',7416,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 11:33:49','','0000-00-00 00:00:00',0),(7613,0,0,'H','2526','','',7613,0,0,'2025-12-15',6220,2803,0,0,2733,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7417,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 11:33:57','','0000-00-00 00:00:00',0),(7614,0,0,'H','2526','','',7614,0,0,'2025-12-15',6178,4180,0,0,4070,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',7418,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 11:36:09','','0000-00-00 00:00:00',0),(7615,0,0,'H','2526','','',7615,0,0,'2025-12-15',6224,4206,0,0,4096,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7419,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 11:38:12','','0000-00-00 00:00:00',0),(7616,0,0,'H','2526','','',7616,0,0,'2025-12-15',6225,4207,0,0,4097,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7420,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 11:38:27','','0000-00-00 00:00:00',0),(7617,0,0,'H','2526','','',7617,0,0,'2025-12-15',6208,4194,0,0,4084,'B',100.00,0.00,'7','icici','','25436','','0000-00-00','scan','',7421,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 11:41:38','','0000-00-00 00:00:00',0),(7618,0,0,'H','2526','','',7618,0,0,'2025-12-15',6226,4208,0,0,4098,'B',750.00,0.00,'7','BOI BANK','','90922','','0000-00-00','scan ','',7422,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 11:43:10','','0000-00-00 00:00:00',0),(7619,0,0,'H','2526','','',7619,0,0,'2025-12-15',6228,4209,0,0,4099,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7423,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 11:44:05','','0000-00-00 00:00:00',0),(7620,0,0,'H','2526','','',7620,0,0,'2025-12-15',6223,4205,0,0,4095,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7424,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 11:44:08','','0000-00-00 00:00:00',0),(7621,0,0,'H','2526','','',7621,0,0,'2025-12-15',6230,4210,0,0,4100,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7425,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 11:47:34','','0000-00-00 00:00:00',0),(7622,0,0,'H','2526','','',7622,0,0,'2025-12-15',6212,4198,0,0,4088,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7426,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-15 11:47:53','','0000-00-00 00:00:00',0),(7623,0,0,'H','2526','','',7623,0,0,'2025-12-15',6231,2129,0,0,2075,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7427,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 11:48:11','','0000-00-00 00:00:00',0),(7624,0,0,'H','2526','','',7624,0,0,'2025-12-15',6232,3828,0,0,3725,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7428,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 11:48:45','','0000-00-00 00:00:00',0),(7625,0,0,'H','2526','','',7625,0,0,'2025-12-15',6233,1759,0,0,1715,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7429,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-15 11:49:27','','0000-00-00 00:00:00',0),(7626,0,0,'H','2526','','',7626,0,0,'2025-12-15',6234,4211,0,0,4101,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7430,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 11:52:21','','0000-00-00 00:00:00',0),(7627,0,0,'H','2526','','',7627,0,0,'2025-12-15',6189,4184,0,0,4075,'B',4600.00,0.00,'7','icici','','25349','','0000-00-00','scan','',7431,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 11:52:47','','0000-00-00 00:00:00',0),(7628,0,0,'H','2526','','',7628,0,0,'2025-12-15',6213,4199,0,0,4089,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7432,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 11:55:26','','0000-00-00 00:00:00',0),(7629,0,0,'H','2526','','',7629,0,0,'2025-12-15',6235,4212,0,0,4102,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7433,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 11:55:34','','0000-00-00 00:00:00',0),(7630,0,0,'H','2526','','',7630,0,0,'2025-12-15',6237,4213,0,0,4103,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7434,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-15 11:57:56','','0000-00-00 00:00:00',0),(7631,0,0,'H','2526','','',7631,0,0,'2025-12-15',6238,3963,0,0,3854,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7435,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 11:58:22','','0000-00-00 00:00:00',0),(7632,0,0,'H','2526','','',7632,0,0,'2025-12-15',6223,4205,0,0,4095,'B',400.00,0.00,'7','HDFC','','03640','','0000-00-00','scan','',7436,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 12:01:47','','0000-00-00 00:00:00',0),(7633,0,0,'H','2526','','',7633,0,0,'2025-12-15',6239,3622,0,0,3520,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7437,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 12:03:10','','0000-00-00 00:00:00',0),(7634,0,0,'H','2526','','',7634,0,0,'2025-12-15',6240,4214,0,0,4104,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7438,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 12:05:36','','0000-00-00 00:00:00',0),(7635,0,0,'H','2526','','',7635,0,0,'2025-12-15',6242,2994,0,0,2917,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7439,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 12:06:44','','0000-00-00 00:00:00',0),(7636,0,0,'H','2526','','',7636,0,0,'2025-12-15',6241,3871,0,0,4105,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7440,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 12:06:59','','0000-00-00 00:00:00',0),(7637,0,0,'H','2526','','',7637,0,0,'2025-12-15',6228,4209,0,0,4099,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7441,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 12:07:08','','0000-00-00 00:00:00',0),(7638,0,0,'H','2526','','',7638,0,0,'2025-12-15',6243,4215,0,0,4106,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7442,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 12:09:23','','0000-00-00 00:00:00',0),(7639,0,0,'H','2526','','',7639,0,0,'2025-12-15',6244,2589,0,0,2532,'B',500.00,0.00,'7','federal bank','','50933','','0000-00-00','scan','',7443,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 12:10:38','','0000-00-00 00:00:00',0),(7640,0,0,'H','2526','','',7640,0,0,'2025-12-15',6245,4216,0,0,4107,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7444,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 12:12:07','','0000-00-00 00:00:00',0),(7641,0,0,'H','2526','','',7641,0,0,'2025-12-15',6246,4217,0,0,4108,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7445,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 12:13:11','','0000-00-00 00:00:00',0),(7642,0,0,'H','2526','','',7642,0,0,'2025-12-15',6224,4206,0,0,4096,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',7446,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 12:14:00','','0000-00-00 00:00:00',0),(7643,0,0,'H','2526','','',7643,0,0,'2025-12-15',6196,4188,0,0,4079,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',7447,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 12:16:02','','0000-00-00 00:00:00',0),(7644,0,0,'H','2526','','',7644,0,0,'2025-12-15',6248,4219,0,0,4110,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7448,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 12:16:29','','0000-00-00 00:00:00',0),(7645,0,0,'H','2526','','',7645,0,0,'2025-12-15',6249,4220,0,0,4111,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7449,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 12:18:02','','0000-00-00 00:00:00',0),(7646,0,0,'H','2526','','',7646,0,0,'2025-12-15',6250,4221,0,0,4112,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7450,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 12:18:50','','0000-00-00 00:00:00',0),(7647,0,0,'H','2526','','',7647,0,0,'2025-12-15',6236,3777,0,0,3673,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7451,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 12:20:25','','0000-00-00 00:00:00',0),(7648,0,0,'H','2526','','',7648,0,0,'2025-12-15',6251,3353,0,0,3265,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7452,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 12:25:33','','0000-00-00 00:00:00',0),(7649,0,0,'H','2526','','',7649,0,0,'2025-12-15',6227,3996,0,0,3887,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7453,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 12:31:03','','0000-00-00 00:00:00',0),(7650,0,0,'H','2526','','',7650,0,0,'2025-12-15',6252,4151,0,0,4044,'B',100.00,0.00,'7','SBI BANK','','14700','','0000-00-00','scan ','',7454,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 12:32:52','','0000-00-00 00:00:00',0),(7651,0,0,'H','2526','','',7651,0,0,'2025-12-15',6253,3968,0,0,3859,'B',300.00,0.00,'7','idfc','','14314','','0000-00-00','scan  ','',7455,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 12:34:32','','0000-00-00 00:00:00',0),(7652,0,0,'H','2526','','',7652,0,0,'2025-12-15',6204,4191,0,0,4081,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',7456,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 12:36:35','','0000-00-00 00:00:00',0),(7653,0,0,'H','2526','','',7653,0,0,'2025-12-15',6214,4200,0,0,4090,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7457,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 12:38:43','','0000-00-00 00:00:00',0),(7654,0,0,'H','2526','','',7654,0,0,'2025-12-15',6229,3392,0,0,3303,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7458,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 12:40:27','','0000-00-00 00:00:00',0),(7655,0,0,'H','2526','','',7655,0,0,'2025-12-15',6255,4223,0,0,4113,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7459,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 12:40:43','','0000-00-00 00:00:00',0),(7656,0,0,'H','2526','','P',7656,0,0,'2025-12-15',6254,4222,0,289,0,'A',4000.00,0.00,'CSH','','','','','0000-00-00','','',7788,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-15 12:40:59','vishal','2025-12-17 14:48:24',0),(7657,0,0,'H','2526','','',7657,0,0,'2025-12-15',6256,4224,0,0,4114,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7460,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 12:42:55','','0000-00-00 00:00:00',0),(7658,0,0,'H','2526','','',7658,0,0,'2025-12-15',6232,3828,0,0,3725,'D',-500.00,0.00,'CSH','','','','','2025-12-15','','',7461,'N','N','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 12:44:50','','0000-00-00 00:00:00',0),(7659,0,0,'H','2526','','P',7659,0,0,'2025-12-15',5521,3824,0,259,0,'A',25000.00,0.00,'CRD','AXIS BANK','','16574423','','0000-00-00','CARD','',7786,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-15 12:50:56','vishal','2025-12-17 14:05:14',0),(7660,0,0,'H','2526','','',7660,0,0,'2025-12-15',6245,4216,0,0,4107,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',7462,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 12:51:17','','0000-00-00 00:00:00',0),(7661,0,0,'H','2526','','',7661,0,0,'2025-12-15',6256,4224,0,0,4114,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',7463,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 12:51:36','','0000-00-00 00:00:00',0),(7662,0,0,'H','2526','','',7662,0,0,'2025-12-15',6246,4217,0,0,4108,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',7464,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 12:56:29','','0000-00-00 00:00:00',0),(7663,0,0,'H','2526','','',7663,0,0,'2025-12-15',6257,1085,0,0,1051,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7465,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 13:00:05','','0000-00-00 00:00:00',0),(7664,0,0,'H','2526','','',7664,0,0,'2025-12-15',6259,3705,0,0,3605,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',7466,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 13:08:54','','0000-00-00 00:00:00',0),(7665,0,0,'H','2526','','',7665,0,0,'2025-12-15',6260,4226,0,0,4116,'B',750.00,0.00,'7','bob','','59541','','0000-00-00','scan     ','',7467,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 13:27:45','','0000-00-00 00:00:00',0),(7666,0,0,'H','2526','','',7666,0,0,'2025-12-15',6258,4225,0,0,4115,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',7468,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 13:28:56','','0000-00-00 00:00:00',0),(7667,0,0,'H','2526','','',7667,0,0,'2025-12-15',6261,2808,0,0,2738,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',7469,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 13:30:26','','0000-00-00 00:00:00',0),(7668,0,0,'H','2526','','',7668,0,0,'2025-12-15',6255,4223,0,0,4113,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',7470,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 13:32:01','','0000-00-00 00:00:00',0),(7669,0,0,'H','2526','','',7669,0,0,'2025-12-15',6250,4221,0,0,4112,'B',3000.00,0.00,'7','idfc','','66050','','0000-00-00','scan','',7471,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 13:43:42','','0000-00-00 00:00:00',0),(7670,0,0,'H','2526','','',7670,0,0,'2025-12-15',6250,4221,0,0,4112,'B',1500.00,0.00,'CSH','','','','','0000-00-00','','',7472,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 13:44:25','','0000-00-00 00:00:00',0),(7671,0,0,'H','2526','','',7671,0,0,'2025-12-15',6198,3599,0,0,3498,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',7473,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 14:06:15','','0000-00-00 00:00:00',0),(7672,0,0,'H','2526','','',7672,0,0,'2025-12-15',6247,4218,0,0,4109,'B',250.00,0.00,'7','BOI BANK','','67387','','0000-00-00','scan ','',7474,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 14:08:14','','0000-00-00 00:00:00',0),(7673,0,0,'H','2526','','P',7673,0,0,'2025-12-15',6262,4227,0,290,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',7787,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-15 14:40:32','vishal','2025-12-17 14:27:22',0),(7674,0,0,'H','2526','','P',7674,0,0,'2025-12-15',6262,4227,0,290,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',7787,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-15 14:40:54','vishal','2025-12-17 14:27:22',0),(7675,0,0,'H','2526','','P',7675,0,0,'2025-12-15',6263,4228,0,291,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','Y',0,'N','riya','2025-12-15 17:29:30','riya','2025-12-15 15:07:36','riya','2025-12-15 17:29:30',0),(7676,0,0,'H','2526','','P',7676,0,0,'2025-12-15',6264,4229,0,292,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',7648,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-15 15:36:21','riya','2025-12-16 15:33:06',0),(7677,0,0,'H','2526','','',7677,0,0,'2025-12-15',6265,4230,0,0,4117,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7477,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 16:28:30','','0000-00-00 00:00:00',0),(7678,0,0,'H','2526','','',7678,0,0,'2025-12-15',6266,3268,0,0,3182,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7478,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 16:36:20','','0000-00-00 00:00:00',0),(7679,0,0,'H','2526','','',7679,0,0,'2025-12-15',6267,4231,0,0,4118,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7479,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 16:43:10','','0000-00-00 00:00:00',0),(7680,0,0,'H','2526','','',7680,0,0,'2025-12-15',6268,3745,0,0,3642,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7480,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 16:49:33','','0000-00-00 00:00:00',0),(7681,0,0,'H','2526','','P',7681,0,0,'2025-12-15',5848,4010,0,274,0,'A',16325.00,0.00,'2','SBI ','','534911536341','','0000-00-00','CARD','',7481,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-15 16:55:42','riya','2025-12-15 16:56:44',0),(7682,0,0,'H','2526','','P',7682,0,0,'2025-12-15',5848,4010,0,274,0,'A',16325.00,0.00,'2','SBI ','','534911536341','','0000-00-00','CARD','',7481,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-15 16:56:25','riya','2025-12-15 16:56:44',0),(7683,0,0,'H','2526','','',7683,0,0,'2025-12-15',6269,619,0,0,589,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7482,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 16:57:32','','0000-00-00 00:00:00',0),(7684,0,0,'H','2526','','',7684,0,0,'2025-12-15',6270,2953,0,0,2878,'B',500.00,0.00,'7','BOB','','30583','','0000-00-00','scan','',7483,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 16:59:10','','0000-00-00 00:00:00',0),(7685,0,0,'H','2526','','',7685,0,0,'2025-12-15',6272,4232,0,0,4120,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7484,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 17:07:42','','0000-00-00 00:00:00',0),(7686,0,0,'H','2526','','P',7686,0,0,'2025-12-15',6274,4233,0,293,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',7629,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-15 17:15:57','riya','2025-12-16 13:11:06',0),(7687,0,0,'H','2526','','',7687,0,0,'2025-12-15',6275,4234,0,0,4121,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7485,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 17:17:51','','0000-00-00 00:00:00',0),(7688,0,0,'H','2526','','',7688,0,0,'2025-12-15',6276,4235,0,0,4122,'B',500.00,0.00,'7','icici','','53191','','0000-00-00','scan','',7486,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 17:21:46','','0000-00-00 00:00:00',0),(7689,0,0,'H','2526','','',7689,0,0,'2025-12-15',6277,3846,0,0,3743,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7487,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 17:22:10','','0000-00-00 00:00:00',0),(7690,0,0,'H','2526','','',7690,0,0,'2025-12-15',6265,4230,0,0,4117,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',7488,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 17:24:23','','0000-00-00 00:00:00',0),(7691,0,0,'H','2526','','',7691,0,0,'2025-12-15',6279,4236,0,0,4123,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7489,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 17:26:15','','0000-00-00 00:00:00',0),(7692,0,0,'H','2526','','',7692,0,0,'2025-12-15',6280,2463,0,0,2407,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7490,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 17:27:05','','0000-00-00 00:00:00',0),(7693,0,0,'H','2526','','',7693,0,0,'2025-12-15',6281,688,0,0,658,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7491,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 17:27:28','','0000-00-00 00:00:00',0),(7694,0,0,'H','2526','','P',7694,0,0,'2025-12-15',6263,4228,0,291,0,'A',-15000.00,0.00,'CSH','','','','','0000-00-00','','ADMISSION CANCEL',0,'N','P','Y',7675,'N','','0000-00-00 00:00:00','riya','2025-12-15 17:29:30','riya','2025-12-15 17:29:30',0),(7695,0,0,'H','2526','','',7695,0,0,'2025-12-15',6266,3268,0,0,3182,'D',-500.00,0.00,'CSH','','','','','2025-12-15','','',7492,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 17:32:10','','0000-00-00 00:00:00',0),(7696,0,0,'H','2526','','',7696,0,0,'2025-12-15',6282,4237,0,0,4124,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7493,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 17:32:25','','0000-00-00 00:00:00',0),(7697,0,0,'H','2526','','',7697,0,0,'2025-12-15',6283,4238,0,0,4125,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7494,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 17:33:44','','0000-00-00 00:00:00',0),(7698,0,0,'H','2526','','',7698,0,0,'2025-12-15',6284,3349,0,0,3819,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7495,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 17:34:21','','0000-00-00 00:00:00',0),(7699,0,0,'H','2526','','',7699,0,0,'2025-12-15',6285,4239,0,0,4126,'B',900.00,0.00,'7','SBI','','48556','','0000-00-00','scan','',7496,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 17:42:12','','0000-00-00 00:00:00',0),(7700,0,0,'H','2526','','',7700,0,0,'2025-12-15',6278,4164,0,0,4057,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7497,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 17:43:55','','0000-00-00 00:00:00',0),(7701,0,0,'H','2526','','',7701,0,0,'2025-12-15',6287,4240,0,0,4127,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7499,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 17:53:38','','0000-00-00 00:00:00',0),(7702,0,0,'H','2526','','P',7702,0,0,'2025-12-15',674,606,0,50,0,'A',-7000.00,0.00,'7','KOTAK BANK','','528622049938','','0000-00-00','','payment received from tpa this is cashless pt',0,'N','P','Y',811,'N','','0000-00-00 00:00:00','vishal','2025-12-15 17:59:21','vishal','2025-12-15 17:59:21',0),(7703,0,0,'H','2526','','',7703,0,0,'2025-12-15',6288,4241,0,0,4128,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7501,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 17:59:52','','0000-00-00 00:00:00',0),(7704,0,0,'H','2526','','',7704,0,0,'2025-12-15',674,606,0,50,0,'B',33546.00,0.00,'1','hdfc argo','','50','','0000-00-00','','',7502,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(7705,0,0,'H','2526','','',7705,0,0,'2025-12-15',6282,4237,0,0,4124,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',7503,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 18:01:47','','0000-00-00 00:00:00',0),(7706,0,0,'H','2526','','',7706,0,0,'2025-12-15',6289,4242,0,0,4129,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7504,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 18:03:48','','0000-00-00 00:00:00',0),(7707,0,0,'H','2526','','',7707,0,0,'2025-12-15',6286,4080,0,0,3973,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7505,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 18:06:09','','0000-00-00 00:00:00',0),(7708,0,0,'H','2526','','',7708,0,0,'2025-12-15',6291,4244,0,0,4131,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7506,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 18:07:50','','0000-00-00 00:00:00',0),(7709,0,0,'H','2526','','',7709,0,0,'2025-12-15',6290,4243,0,0,4130,'B',800.00,0.00,'7','sbi','','98000','','0000-00-00','scan','',7507,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 18:08:29','','0000-00-00 00:00:00',0),(7710,0,0,'H','2526','','',7710,0,0,'2025-12-15',6292,4245,0,0,4132,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7508,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 18:08:54','','0000-00-00 00:00:00',0),(7711,0,0,'H','2526','','',7711,0,0,'2025-12-15',6293,2555,0,0,2497,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7509,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 18:11:22','','0000-00-00 00:00:00',0),(7712,0,0,'H','2526','','',7712,0,0,'2025-12-15',6288,4241,0,0,4128,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',7510,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 18:13:24','','0000-00-00 00:00:00',0),(7713,0,0,'H','2526','','',7713,0,0,'2025-12-15',6275,4234,0,0,4121,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',7511,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 18:13:30','','0000-00-00 00:00:00',0),(7714,0,0,'H','2526','','',7714,0,0,'2025-12-15',6294,4246,0,0,4133,'B',500.00,0.00,'7','fedral bank','','91296','','0000-00-00','scan ','',7512,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 18:15:55','','0000-00-00 00:00:00',0),(7715,0,0,'H','2526','','',7715,0,0,'2025-12-15',6290,4243,0,0,4130,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',7513,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-15 18:16:37','','0000-00-00 00:00:00',0),(7716,0,0,'H','2526','','',7716,0,0,'2025-12-15',6295,4247,0,0,4134,'B',900.00,0.00,'7','SBI','','16914','','0000-00-00','scan','',7514,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 18:16:38','','0000-00-00 00:00:00',0),(7717,0,0,'H','2526','','',7717,0,0,'2025-12-15',6296,1344,0,0,1305,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7515,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 18:19:28','','0000-00-00 00:00:00',0),(7718,0,0,'H','2526','','',7718,0,0,'2025-12-15',6283,4238,0,0,4125,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',7516,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 18:22:40','','0000-00-00 00:00:00',0),(7719,0,0,'H','2526','','',7719,0,0,'2025-12-15',6298,767,0,0,736,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7517,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 18:23:04','','0000-00-00 00:00:00',0),(7720,0,0,'H','2526','','',7720,0,0,'2025-12-15',6300,4248,0,0,4135,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7518,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 18:29:35','','0000-00-00 00:00:00',0),(7721,0,0,'H','2526','','',7721,0,0,'2025-12-15',6303,1008,0,0,975,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7519,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 18:30:19','','0000-00-00 00:00:00',0),(7722,0,0,'H','2526','','',7722,0,0,'2025-12-15',6302,3764,0,0,4137,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7520,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 18:30:36','','0000-00-00 00:00:00',0),(7723,0,0,'H','2526','','',7723,0,0,'2025-12-15',6301,4249,0,0,4136,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7521,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 18:30:39','','0000-00-00 00:00:00',0),(7724,0,0,'H','2526','','',7724,0,0,'2025-12-15',6285,4239,0,0,4126,'B',4000.00,0.00,'7','SBI','','05617','','0000-00-00','scan','',7522,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 18:41:02','','0000-00-00 00:00:00',0),(7725,0,0,'H','2526','','',7725,0,0,'2025-12-15',6304,2825,0,0,2755,'B',400.00,0.00,'7','SBI BANK','','76048','','0000-00-00','scan ','',7523,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 18:41:11','','0000-00-00 00:00:00',0),(7726,0,0,'H','2526','','',7726,0,0,'2025-12-15',6273,3833,0,0,3730,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7524,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 18:43:52','','0000-00-00 00:00:00',0),(7727,0,0,'H','2526','','',7727,0,0,'2025-12-15',6305,4250,0,0,4138,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7525,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 18:44:15','','0000-00-00 00:00:00',0),(7728,0,0,'H','2526','','',7728,0,0,'2025-12-15',6306,4251,0,0,4139,'B',400.00,0.00,'7','icici','','57990','','0000-00-00','scan','',7526,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 18:48:19','','0000-00-00 00:00:00',0),(7729,0,0,'H','2526','','',7729,0,0,'2025-12-15',6295,4247,0,0,4134,'B',4000.00,0.00,'7','SBI','','33010','','0000-00-00','scan','',7527,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 18:52:03','','0000-00-00 00:00:00',0),(7730,0,0,'H','2526','','',7730,0,0,'2025-12-15',6308,3411,0,0,3319,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7528,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 18:55:53','','0000-00-00 00:00:00',0),(7731,0,0,'H','2526','','',7731,0,0,'2025-12-15',6309,4252,0,0,4140,'B',900.00,0.00,'7','HDFC','','34103','','0000-00-00','scan','',7529,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 18:57:31','','0000-00-00 00:00:00',0),(7732,0,0,'H','2526','','',7732,0,0,'2025-12-15',6310,4253,0,0,4141,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7530,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 18:59:48','','0000-00-00 00:00:00',0),(7733,0,0,'H','2526','','',7733,0,0,'2025-12-15',6311,2081,0,0,2027,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7531,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 19:02:06','','0000-00-00 00:00:00',0),(7734,0,0,'H','2526','','',7734,0,0,'2025-12-15',6312,296,0,0,280,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7532,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 19:03:23','','0000-00-00 00:00:00',0),(7735,0,0,'H','2526','','',7735,0,0,'2025-12-15',6212,4198,0,0,4088,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7533,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 19:03:30','','0000-00-00 00:00:00',0),(7736,0,0,'H','2526','','',7736,0,0,'2025-12-15',6314,1941,0,0,1894,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7534,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 19:17:13','','0000-00-00 00:00:00',0),(7737,0,0,'H','2526','','',7737,0,0,'2025-12-15',6316,4254,0,0,4142,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7535,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 19:21:24','','0000-00-00 00:00:00',0),(7738,0,0,'H','2526','','',7738,0,0,'2025-12-15',6317,3399,0,0,3310,'B',100.00,0.00,'7','sbi','','60112','','0000-00-00','scan','',7536,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 19:21:44','','0000-00-00 00:00:00',0),(7739,0,0,'H','2526','','',7739,0,0,'2025-12-15',6300,4248,0,0,4135,'B',4500.00,0.00,'7','YES BANK','','74783','','0000-00-00','scan','',7537,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 19:23:41','','0000-00-00 00:00:00',0),(7740,0,0,'H','2526','','',7740,0,0,'2025-12-15',6319,2754,0,0,2685,'B',400.00,0.00,'7','BANK','','07301','','0000-00-00','scan ','',7538,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 19:23:47','','0000-00-00 00:00:00',0),(7741,0,0,'H','2526','','',7741,0,0,'2025-12-15',6271,3350,0,0,4119,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7539,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 19:26:50','','0000-00-00 00:00:00',0),(7742,0,0,'H','2526','','P',7742,0,0,'2025-12-11',5831,4001,0,273,0,'A',8000.00,0.00,'CSH','','','','','0000-00-00','','',7540,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-15 19:33:56','vishal','2025-12-15 19:34:59',0),(7743,0,0,'H','2526','','P',7743,0,0,'2025-12-13',5831,4001,0,273,0,'A',6700.00,0.00,'CSH','','','','','0000-00-00','','',7540,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-15 19:34:45','vishal','2025-12-15 19:34:59',0),(7744,0,0,'H','2526','','',7744,0,0,'2025-12-15',6321,4256,0,0,4144,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7541,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 19:36:43','','0000-00-00 00:00:00',0),(7745,0,0,'H','2526','','',7745,0,0,'2025-12-15',6322,3963,0,0,3854,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',7542,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 19:38:41','','0000-00-00 00:00:00',0),(7746,0,0,'H','2526','','',7746,0,0,'2025-12-15',6323,1327,0,0,1288,'B',100.00,0.00,'7','bob','','14919','','0000-00-00','scan ','',7543,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 19:48:58','','0000-00-00 00:00:00',0),(7747,0,0,'H','2526','','',7747,0,0,'2025-12-15',6319,2754,0,0,2685,'D',-400.00,0.00,'7','BANK','','07301','','2025-12-15','','',7544,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 19:50:47','','0000-00-00 00:00:00',0),(7748,0,0,'H','2526','','',7748,0,0,'2025-12-15',6295,4247,0,0,4134,'D',-900.00,0.00,'7','SBI','','16914','','2025-12-15','SCAN','',7545,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 19:59:23','','0000-00-00 00:00:00',0),(7749,0,0,'H','2526','','',7749,0,0,'2025-12-15',6295,4247,0,0,4134,'B',600.00,0.00,'7','SBI','','16914','','0000-00-00','scan','',7546,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 20:01:11','','0000-00-00 00:00:00',0),(7750,0,0,'H','2526','','',7750,0,0,'2025-12-15',6324,4257,0,0,4145,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7547,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-15 20:03:35','','0000-00-00 00:00:00',0),(7751,0,0,'H','2526','','',7751,0,0,'2025-12-15',6325,4258,0,0,4146,'B',750.00,0.00,'7','icici','','69944','','0000-00-00','scan','',7548,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 20:05:07','','0000-00-00 00:00:00',0),(7752,0,0,'H','2526','','',7752,0,0,'2025-12-15',6326,3473,0,0,3378,'B',300.00,0.00,'7','sbi','','08205','','0000-00-00','scan     ','',7549,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-15 20:09:32','','0000-00-00 00:00:00',0),(7753,0,0,'H','2526','','',7753,0,0,'2025-12-15',6327,4259,0,0,4147,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7550,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 20:16:50','','0000-00-00 00:00:00',0),(7754,0,0,'H','2526','','',7754,0,0,'2025-12-15',6328,3932,0,0,3827,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7551,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-15 20:18:51','','0000-00-00 00:00:00',0),(7755,0,0,'H','2526','','P',7755,0,0,'2025-12-15',6167,4174,0,287,0,'A',400.00,0.00,'CSH','','','','','0000-00-00','','',7553,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-15 21:25:53','riya','2025-12-15 21:26:57',0),(7756,0,0,'H','2526','','',7756,0,0,'2025-12-16',6331,2859,0,0,2791,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7554,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 10:00:13','','0000-00-00 00:00:00',0),(7757,0,0,'H','2526','','',7757,0,0,'2025-12-16',6332,844,0,0,813,'B',500.00,0.00,'7','hdfc','','68502','','0000-00-00','scan','',7555,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 10:01:28','','0000-00-00 00:00:00',0),(7758,0,0,'H','2526','','',7758,0,0,'2025-12-16',6333,4261,0,0,4148,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7556,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 10:02:49','','0000-00-00 00:00:00',0),(7759,0,0,'H','2526','','P',7759,0,0,'2025-12-16',6330,4260,0,295,0,'A',6000.00,0.00,'7','boi bank','','9620','','0000-00-00','','',7711,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-16 10:05:36','vishal','2025-12-16 19:44:36',0),(7760,0,0,'H','2526','','',7760,0,0,'2025-12-16',6335,4263,0,0,4149,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7557,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 10:06:52','','0000-00-00 00:00:00',0),(7761,0,0,'H','2526','','',7761,0,0,'2025-12-16',6336,4264,0,0,4150,'B',900.00,0.00,'7','BOB BANK','','38581','','0000-00-00','scan ','',7558,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 10:10:04','','0000-00-00 00:00:00',0),(7762,0,0,'H','2526','','P',7762,0,0,'2025-12-16',6334,4262,0,296,0,'A',15000.00,0.00,'7','bopi bank','','7964','','0000-00-00','','',7713,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-16 10:11:31','vishal','2025-12-16 19:54:45',0),(7763,0,0,'H','2526','','',7763,0,0,'2025-12-16',6337,3722,0,0,3619,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7559,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 10:13:34','','0000-00-00 00:00:00',0),(7764,0,0,'H','2526','','',7764,0,0,'2025-12-16',6338,3669,0,0,3569,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7560,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 10:17:58','','0000-00-00 00:00:00',0),(7765,0,0,'H','2526','','',7765,0,0,'2025-12-16',6339,2640,0,0,2579,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7561,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 10:24:13','','0000-00-00 00:00:00',0),(7766,0,0,'H','2526','','',7766,0,0,'2025-12-16',6340,4265,0,0,4151,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7562,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 10:25:41','','0000-00-00 00:00:00',0),(7767,0,0,'H','2526','','',7767,0,0,'2025-12-16',6341,4266,0,0,4152,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7563,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 10:28:24','','0000-00-00 00:00:00',0),(7768,0,0,'H','2526','','',7768,0,0,'2025-12-16',6342,283,0,0,267,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7564,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 10:30:14','','0000-00-00 00:00:00',0),(7769,0,0,'H','2526','','',7769,0,0,'2025-12-16',6343,949,0,0,918,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7565,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 10:38:01','','0000-00-00 00:00:00',0),(7770,0,0,'H','2526','','',7770,0,0,'2025-12-16',6344,4267,0,0,4153,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7566,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 10:38:56','','0000-00-00 00:00:00',0),(7771,0,0,'H','2526','','',7771,0,0,'2025-12-16',6345,3522,0,0,3571,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7567,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-16 10:39:08','','0000-00-00 00:00:00',0),(7772,0,0,'H','2526','','',7772,0,0,'2025-12-16',6347,1592,0,0,1549,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7568,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 10:41:07','','0000-00-00 00:00:00',0),(7773,0,0,'H','2526','','P',7773,0,0,'2025-12-16',6346,4163,0,297,0,'A',80000.00,0.00,'7','axis bank','','9174','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-16 10:44:29','vishal','2025-12-16 10:44:29',0),(7774,0,0,'H','2526','','',7774,0,0,'2025-12-16',6348,4268,0,0,4154,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7569,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 10:44:41','','0000-00-00 00:00:00',0),(7775,0,0,'H','2526','','',7775,0,0,'2025-12-16',6349,1282,0,0,1241,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7570,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 10:48:38','','0000-00-00 00:00:00',0),(7776,0,0,'H','2526','','',7776,0,0,'2025-12-16',6350,2986,0,0,2908,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7571,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 10:50:03','','0000-00-00 00:00:00',0),(7777,0,0,'H','2526','','',7777,0,0,'2025-12-16',6351,4269,0,0,4155,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7572,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 10:53:09','','0000-00-00 00:00:00',0),(7778,0,0,'H','2526','','',7778,0,0,'2025-12-16',6352,4270,0,0,4156,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7573,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-16 11:01:59','','0000-00-00 00:00:00',0),(7779,0,0,'H','2526','','',7779,0,0,'2025-12-16',6353,4271,0,0,4157,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7574,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 11:06:22','','0000-00-00 00:00:00',0),(7780,0,0,'H','2526','','',7780,0,0,'2025-12-16',6355,4273,0,0,4159,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7575,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 11:09:41','','0000-00-00 00:00:00',0),(7781,0,0,'H','2526','','',7781,0,0,'2025-12-16',6357,747,0,0,716,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7576,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 11:10:42','','0000-00-00 00:00:00',0),(7782,0,0,'H','2526','','',7782,0,0,'2025-12-16',6356,4274,0,0,4160,'B',400.00,0.00,'7','axis bank','','64219','','0000-00-00','scan ','',7578,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 11:11:37','','0000-00-00 00:00:00',0),(7783,0,0,'H','2526','','',7783,0,0,'2025-12-16',6352,4270,0,0,4156,'D',-500.00,0.00,'CSH','','','','','2025-12-16','','',7579,'N','N','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-16 11:12:36','','0000-00-00 00:00:00',0),(7784,0,0,'H','2526','','',7784,0,0,'2025-12-16',6352,4270,0,0,4156,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7580,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-16 11:13:20','','0000-00-00 00:00:00',0),(7785,0,0,'H','2526','','',7785,0,0,'2025-12-16',6336,4264,0,0,4150,'B',6000.00,0.00,'7','bob','','20751','','0000-00-00','scan','',7581,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 11:15:52','','0000-00-00 00:00:00',0),(7786,0,0,'H','2526','','',7786,0,0,'2025-12-16',6359,663,0,0,633,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7583,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 11:18:20','','0000-00-00 00:00:00',0),(7787,0,0,'H','2526','','',7787,0,0,'2025-12-16',6358,4275,0,0,4161,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7584,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 11:18:32','','0000-00-00 00:00:00',0),(7788,0,0,'H','2526','','',7788,0,0,'2025-12-16',6352,4270,0,0,4156,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7585,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-16 11:19:31','','0000-00-00 00:00:00',0),(7789,0,0,'H','2526','','',7789,0,0,'2025-12-16',6360,4276,0,0,4162,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7586,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 11:19:33','','0000-00-00 00:00:00',0),(7790,0,0,'H','2526','','',7790,0,0,'2025-12-16',6331,2859,0,0,2791,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',7587,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 11:20:42','','0000-00-00 00:00:00',0),(7791,0,0,'H','2526','','',7791,0,0,'2025-12-16',6361,4277,0,0,4163,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7588,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 11:21:02','','0000-00-00 00:00:00',0),(7792,0,0,'H','2526','','P',7792,0,0,'2025-12-16',6163,4172,0,284,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',8093,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-16 11:24:20','riya','2025-12-19 14:49:10',0),(7793,0,0,'H','2526','','',7793,0,0,'2025-12-16',6363,4278,0,0,4164,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7589,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 11:27:47','','0000-00-00 00:00:00',0),(7794,0,0,'H','2526','','',7794,0,0,'2025-12-16',6364,4279,0,0,4165,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7590,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 11:28:54','','0000-00-00 00:00:00',0),(7795,0,0,'H','2526','','',7795,0,0,'2025-12-16',6365,4280,0,0,4166,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7591,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 11:29:34','','0000-00-00 00:00:00',0),(7796,0,0,'H','2526','','',7796,0,0,'2025-12-16',6366,943,0,0,912,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7592,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 11:31:23','','0000-00-00 00:00:00',0),(7797,0,0,'H','2526','','',7797,0,0,'2025-12-16',6367,2529,0,0,2471,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7593,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-16 11:32:23','','0000-00-00 00:00:00',0),(7798,0,0,'H','2526','','',7798,0,0,'2025-12-16',6348,4268,0,0,4154,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',7594,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 11:33:53','','0000-00-00 00:00:00',0),(7799,0,0,'H','2526','','',7799,0,0,'2025-12-16',6335,4263,0,0,4149,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7595,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 11:34:43','','0000-00-00 00:00:00',0),(7800,0,0,'H','2526','','',7800,0,0,'2025-12-16',6368,4281,0,0,4167,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7596,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 11:34:51','','0000-00-00 00:00:00',0),(7801,0,0,'H','2526','','',7801,0,0,'2025-12-16',6369,3394,0,0,3305,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',7598,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 11:40:05','','0000-00-00 00:00:00',0),(7802,0,0,'H','2526','','',7802,0,0,'2025-12-16',6370,4282,0,0,4168,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',7599,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 11:45:16','','0000-00-00 00:00:00',0),(7803,0,0,'H','2526','','',7803,0,0,'2025-12-16',6371,4283,0,0,4169,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',7600,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 11:45:36','','0000-00-00 00:00:00',0),(7804,0,0,'H','2526','','',7804,0,0,'2025-12-16',6372,4123,0,0,4170,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7601,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 11:46:58','','0000-00-00 00:00:00',0),(7805,0,0,'H','2526','','',7805,0,0,'2025-12-16',6373,4284,0,0,4171,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7603,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 11:51:26','','0000-00-00 00:00:00',0),(7806,0,0,'H','2526','','',7806,0,0,'2025-12-16',6374,4285,0,0,4172,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7604,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 11:52:55','','0000-00-00 00:00:00',0),(7807,0,0,'H','2526','','',7807,0,0,'2025-12-16',6351,4269,0,0,4155,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',7605,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 11:56:42','','0000-00-00 00:00:00',0),(7808,0,0,'H','2526','','',7808,0,0,'2025-12-16',6375,4286,0,0,4173,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7606,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 11:58:43','','0000-00-00 00:00:00',0),(7809,0,0,'H','2526','','',7809,0,0,'2025-12-16',6376,4287,0,0,4174,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7607,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 12:00:23','','0000-00-00 00:00:00',0),(7810,0,0,'H','2526','','',7810,0,0,'2025-12-16',6377,2179,0,0,2128,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7608,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 12:00:45','','0000-00-00 00:00:00',0),(7811,0,0,'H','2526','','',7811,0,0,'2025-12-16',6341,4266,0,0,4152,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',7609,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 12:05:45','','0000-00-00 00:00:00',0),(7812,0,0,'H','2526','','',7812,0,0,'2025-12-16',6374,4285,0,0,4172,'D',-750.00,0.00,'CSH','','','','','2025-12-16','','',7610,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 12:12:02','','0000-00-00 00:00:00',0),(7813,0,0,'H','2526','','',7813,0,0,'2025-12-16',6379,4289,0,0,4176,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7611,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 12:16:57','','0000-00-00 00:00:00',0),(7814,0,0,'H','2526','','',7814,0,0,'2025-12-16',6380,4290,0,0,4177,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7612,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 12:21:53','','0000-00-00 00:00:00',0),(7815,0,0,'H','2526','','',7815,0,0,'2025-12-16',6362,3640,0,0,3538,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7613,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 12:25:25','','0000-00-00 00:00:00',0),(7816,0,0,'H','2526','','P',7816,0,0,'2025-12-16',5120,3601,0,243,0,'A',50000.00,0.00,'7','bob bank','','2854','','0000-00-00','','',8441,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-16 12:26:40','vishal','2025-12-22 21:57:17',0),(7817,0,0,'H','2526','','',7817,0,0,'2025-12-16',6373,4284,0,0,4171,'B',5600.00,0.00,'7','boi','','90467','','0000-00-00','scan','',7614,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 12:36:06','','0000-00-00 00:00:00',0),(7818,0,0,'H','2526','','',7818,0,0,'2025-12-16',6380,4290,0,0,4177,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',7615,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 12:37:26','','0000-00-00 00:00:00',0),(7819,0,0,'H','2526','','',7819,0,0,'2025-12-16',6382,4226,0,0,4116,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',7617,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 12:41:47','','0000-00-00 00:00:00',0),(7820,0,0,'H','2526','','',7820,0,0,'2025-12-16',6383,4292,0,0,4179,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7618,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 12:45:29','','0000-00-00 00:00:00',0),(7821,0,0,'H','2526','','',7821,0,0,'2025-12-16',6384,4175,0,0,4065,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7619,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-16 12:48:04','','0000-00-00 00:00:00',0),(7822,0,0,'H','2526','','',7822,0,0,'2025-12-16',6385,3328,0,0,3246,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7620,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 12:51:38','','0000-00-00 00:00:00',0),(7823,0,0,'H','2526','','',7823,0,0,'2025-12-16',6386,4293,0,0,4180,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7621,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 12:55:48','','0000-00-00 00:00:00',0),(7824,0,0,'H','2526','','',7824,0,0,'2025-12-16',6383,4292,0,0,4179,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7622,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 12:58:35','','0000-00-00 00:00:00',0),(7825,0,0,'H','2526','','',7825,0,0,'2025-12-16',6387,4294,0,0,4181,'B',750.00,0.00,'7','federal bank','','54572','','0000-00-00','scan','',7623,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 13:01:15','','0000-00-00 00:00:00',0),(7826,0,0,'H','2526','','',7826,0,0,'2025-12-16',6388,4295,0,0,4182,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7625,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 13:09:09','','0000-00-00 00:00:00',0),(7827,0,0,'H','2526','','',7827,0,0,'2025-12-16',6390,4297,0,0,4184,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7627,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 13:10:32','','0000-00-00 00:00:00',0),(7828,0,0,'H','2526','','',7828,0,0,'2025-12-16',6389,4296,0,0,4183,'B',400.00,0.00,'7','SBI BANK','','32331','','0000-00-00','scan ','',7628,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 13:10:47','','0000-00-00 00:00:00',0),(7829,0,0,'H','2526','','',7829,0,0,'2025-12-16',6392,4298,0,0,4185,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7630,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 13:14:20','','0000-00-00 00:00:00',0),(7830,0,0,'H','2526','','',7830,0,0,'2025-12-16',6386,4293,0,0,4180,'D',-750.00,0.00,'CSH','','','','','2025-12-16','','',7631,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 13:15:25','','0000-00-00 00:00:00',0),(7831,0,0,'H','2526','','',7831,0,0,'2025-12-16',6394,4299,0,0,4186,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7632,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 13:17:05','','0000-00-00 00:00:00',0),(7832,0,0,'H','2526','','',7832,0,0,'2025-12-16',6393,3950,0,0,3841,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7633,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 13:17:14','','0000-00-00 00:00:00',0),(7833,0,0,'H','2526','','',7833,0,0,'2025-12-16',6387,4294,0,0,4181,'B',1100.00,0.00,'7','fedral bank','','84489','','0000-00-00','scan ','',7634,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-16 13:21:10','','0000-00-00 00:00:00',0),(7834,0,0,'H','2526','','',7834,0,0,'2025-12-16',6378,4288,0,0,4175,'B',900.00,0.00,'CRD','sbi','','58542','','0000-00-00','card','',7635,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 13:45:15','','0000-00-00 00:00:00',0),(7835,0,0,'H','2526','','',7835,0,0,'2025-12-16',6378,4288,0,0,4175,'B',3500.00,0.00,'CRD','sbi','','64030','','0000-00-00','card','',7636,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 13:49:40','','0000-00-00 00:00:00',0),(7836,0,0,'H','2526','','',7836,0,0,'2025-12-16',6381,4291,0,0,4178,'B',500.00,0.00,'7','sbi','','33693','','0000-00-00','scan                          ','',7637,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 14:04:34','','0000-00-00 00:00:00',0),(7837,0,0,'H','2526','','P',7837,0,0,'2025-12-16',6155,4140,0,282,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',7638,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-16 14:08:21','vishal','2025-12-16 14:08:52',0),(7838,0,0,'H','2526','','',7838,0,0,'2025-12-16',6395,2808,2808,0,2738,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',7639,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 14:09:42','','0000-00-00 00:00:00',0),(7839,0,0,'H','2526','','',7839,0,0,'2025-12-16',6377,2179,0,0,2128,'D',-500.00,0.00,'CSH','','','','','2025-12-16','','',7640,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 14:12:06','','0000-00-00 00:00:00',0),(7840,0,0,'H','2526','','',7840,0,0,'2025-12-16',6396,4300,4300,0,4187,'B',700.00,0.00,'7','nagrik bank','','94292','','0000-00-00','scan','',7641,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 14:24:14','','0000-00-00 00:00:00',0),(7841,0,0,'H','2526','','',7841,0,0,'2025-12-16',6396,4300,4300,0,4187,'B',800.00,0.00,'7','nagrik bank','','92719','','0000-00-00','scan','',7642,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 14:36:22','','0000-00-00 00:00:00',0),(7842,0,0,'H','2526','','P',7842,0,0,'2025-12-16',6264,4229,4229,292,0,'A',2000.00,0.00,'7','BONK OF MAHARASHTRA','','8109','','0000-00-00','','',7648,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-16 15:23:53','riya','2025-12-16 15:33:06',0),(7843,0,0,'H','2526','','P',7843,0,0,'2025-12-16',6264,4229,4229,292,0,'A',100.00,0.00,'CSH','','','','','0000-00-00','','',7648,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-16 15:24:17','riya','2025-12-16 15:33:06',0),(7844,0,0,'H','2526','','',7844,0,0,'2025-12-16',6264,4229,0,292,0,'D',-800.00,0.00,'CSH','','','','','0000-00-00','','',7648,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-16 15:33:06','','0000-00-00 00:00:00',0),(7845,0,0,'H','2526','','P',7845,0,0,'2025-12-16',6397,4301,4301,298,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',8224,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-16 15:45:47','riya','2025-12-20 18:26:16',0),(7846,0,0,'H','2526','','',7846,0,0,'2025-12-16',6398,4302,0,0,4188,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7649,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 16:21:02','','0000-00-00 00:00:00',0),(7847,0,0,'H','2526','','',7847,0,0,'2025-12-16',6374,4285,0,0,4172,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7650,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 16:38:32','','0000-00-00 00:00:00',0),(7848,0,0,'H','2526','','',7848,0,0,'2025-12-16',6399,4303,0,0,4189,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7651,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 16:40:04','','0000-00-00 00:00:00',0),(7849,0,0,'H','2526','','',7849,0,0,'2025-12-16',6400,300,0,0,284,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7652,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-16 16:40:25','','0000-00-00 00:00:00',0),(7850,0,0,'H','2526','','',7850,0,0,'2025-12-16',6401,4304,0,0,4190,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7653,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 16:46:59','','0000-00-00 00:00:00',0),(7851,0,0,'H','2526','','',7851,0,0,'2025-12-16',6402,4252,0,0,4140,'B',4500.00,0.00,'7','hdfc','','46500','','0000-00-00','SCAN','',7654,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 16:57:29','','0000-00-00 00:00:00',0),(7852,0,0,'H','2526','','',7852,0,0,'2025-12-16',6403,1500,0,0,1459,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7655,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 17:11:18','','0000-00-00 00:00:00',0),(7853,0,0,'H','2526','','',7853,0,0,'2025-12-16',6404,4305,0,0,4191,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7656,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 17:24:20','','0000-00-00 00:00:00',0),(7854,0,0,'H','2526','','',7854,0,0,'2025-12-16',6405,4306,0,0,4192,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7657,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 17:27:51','','0000-00-00 00:00:00',0),(7855,0,0,'H','2526','','',7855,0,0,'2025-12-16',6401,4304,0,0,4190,'B',5200.00,0.00,'7','HDFC','','68870','','0000-00-00','SCAN','',7658,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 17:40:35','','0000-00-00 00:00:00',0),(7856,0,0,'H','2526','','',7856,0,0,'2025-12-16',6407,4307,0,0,4193,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7659,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 17:43:21','','0000-00-00 00:00:00',0),(7857,0,0,'H','2526','','',7857,0,0,'2025-12-16',6408,4308,0,0,4194,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7660,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-16 17:44:05','','0000-00-00 00:00:00',0),(7858,0,0,'H','2526','','',7858,0,0,'2025-12-16',6409,997,0,0,964,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7661,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 17:45:50','','0000-00-00 00:00:00',0),(7859,0,0,'H','2526','','',7859,0,0,'2025-12-16',6410,4309,0,0,4195,'B',500.00,0.00,'7','nagrik bank','','88119','','0000-00-00','scan','',7663,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 17:51:18','','0000-00-00 00:00:00',0),(7860,0,0,'H','2526','','',7860,0,0,'2025-12-16',6411,3780,0,0,4023,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7664,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 17:55:15','','0000-00-00 00:00:00',0),(7861,0,0,'H','2526','','P',7861,0,0,'2025-12-16',6329,3719,3719,294,0,'A',4800.00,0.00,'CSH','','','','','0000-00-00','','',7665,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-16 17:56:23','vishal','2025-12-16 17:56:44',0),(7862,0,0,'H','2526','','',7862,0,0,'2025-12-16',6398,4302,0,0,4188,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',7666,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 17:57:14','','0000-00-00 00:00:00',0),(7863,0,0,'H','2526','','',7863,0,0,'2025-12-16',6412,884,0,0,852,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7667,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 17:58:24','','0000-00-00 00:00:00',0),(7864,0,0,'H','2526','','',7864,0,0,'2025-12-16',6413,4310,0,0,4196,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7668,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 18:00:05','','0000-00-00 00:00:00',0),(7865,0,0,'H','2526','','',7865,0,0,'2025-12-16',6414,4311,0,0,4197,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7669,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 18:01:54','','0000-00-00 00:00:00',0),(7866,0,0,'H','2526','','',7866,0,0,'2025-12-16',6416,4312,0,0,4198,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7670,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-16 18:05:34','','0000-00-00 00:00:00',0),(7867,0,0,'H','2526','','',7867,0,0,'2025-12-16',6417,4313,0,0,4199,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7671,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 18:06:10','','0000-00-00 00:00:00',0),(7868,0,0,'H','2526','','',7868,0,0,'2025-12-16',6418,3424,0,0,3332,'B',300.00,0.00,'7','AXIS','','96104','','0000-00-00','scan','',7672,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-16 18:10:49','','0000-00-00 00:00:00',0),(7869,0,0,'H','2526','','',7869,0,0,'2025-12-16',6416,4312,0,0,4198,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7673,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-16 18:16:28','','0000-00-00 00:00:00',0),(7870,0,0,'H','2526','','',7870,0,0,'2025-12-16',6419,3399,0,0,3310,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7674,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 18:18:24','','0000-00-00 00:00:00',0),(7871,0,0,'H','2526','','',7871,0,0,'2025-12-16',6421,4285,0,0,4172,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7675,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 18:19:43','','0000-00-00 00:00:00',0),(7872,0,0,'H','2526','','',7872,0,0,'2025-12-16',6420,4314,0,0,4200,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7676,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 18:19:58','','0000-00-00 00:00:00',0),(7873,0,0,'H','2526','','',7873,0,0,'2025-12-16',6423,2297,0,0,2241,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7677,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 18:21:39','','0000-00-00 00:00:00',0),(7874,0,0,'H','2526','','',7874,0,0,'2025-12-16',6422,3007,0,0,2930,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7678,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 18:21:42','','0000-00-00 00:00:00',0),(7875,0,0,'H','2526','','',7875,0,0,'2025-12-16',6417,4313,0,0,4199,'D',-700.00,0.00,'CSH','','','','','2025-12-16','','',7679,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 18:22:58','','0000-00-00 00:00:00',0),(7876,0,0,'H','2526','','',7876,0,0,'2025-12-16',6415,2599,0,0,2542,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7680,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 18:23:36','','0000-00-00 00:00:00',0),(7877,0,0,'H','2526','','',7877,0,0,'2025-12-16',6424,4315,0,0,4201,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7681,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 18:24:44','','0000-00-00 00:00:00',0),(7878,0,0,'H','2526','','',7878,0,0,'2025-12-16',6425,3799,0,0,3694,'B',400.00,0.00,'7','SBI BANK','','11547','','0000-00-00','scan ','',7682,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 18:27:27','','0000-00-00 00:00:00',0),(7879,0,0,'H','2526','','',7879,0,0,'2025-12-16',6426,4316,0,0,4202,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7683,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 18:29:34','','0000-00-00 00:00:00',0),(7880,0,0,'H','2526','','',7880,0,0,'2025-12-16',6427,3691,0,0,3593,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7684,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 18:33:51','','0000-00-00 00:00:00',0),(7881,0,0,'H','2526','','',7881,0,0,'2025-12-16',6428,4317,0,0,4203,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7685,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 18:34:15','','0000-00-00 00:00:00',0),(7882,0,0,'H','2526','','',7882,0,0,'2025-12-16',6430,705,0,0,676,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7686,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 18:44:12','','0000-00-00 00:00:00',0),(7883,0,0,'H','2526','','',7883,0,0,'2025-12-16',6431,4318,0,0,4204,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7687,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 18:45:38','','0000-00-00 00:00:00',0),(7884,0,0,'H','2526','','',7884,0,0,'2025-12-16',6432,2991,0,0,2914,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7688,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 18:46:19','','0000-00-00 00:00:00',0),(7885,0,0,'H','2526','','',7885,0,0,'2025-12-16',6433,4319,0,0,4205,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7689,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 18:48:33','','0000-00-00 00:00:00',0),(7886,0,0,'H','2526','','',7886,0,0,'2025-12-16',6434,3185,0,0,3099,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7690,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 18:50:24','','0000-00-00 00:00:00',0),(7887,0,0,'H','2526','','',7887,0,0,'2025-12-16',6405,4306,0,0,4192,'B',4500.00,0.00,'7','hdfc','','48228','','0000-00-00','scan','',7691,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 18:50:31','','0000-00-00 00:00:00',0),(7888,0,0,'H','2526','','',7888,0,0,'2025-12-16',6435,3920,0,0,3814,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7692,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 18:52:11','','0000-00-00 00:00:00',0),(7889,0,0,'H','2526','','',7889,0,0,'2025-12-16',6437,260,0,0,245,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7693,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 18:54:10','','0000-00-00 00:00:00',0),(7890,0,0,'H','2526','','',7890,0,0,'2025-12-16',6436,3070,0,0,2992,'B',400.00,0.00,'7','SBI BANK','','99984','','0000-00-00','scan ','',7694,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 18:55:49','','0000-00-00 00:00:00',0),(7891,0,0,'H','2526','','',7891,0,0,'2025-12-16',6438,4320,0,0,4206,'B',700.00,0.00,'7','BOB BANK','','71390','','0000-00-00','scan ','',7695,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 18:57:37','','0000-00-00 00:00:00',0),(7892,0,0,'H','2526','','',7892,0,0,'2025-12-16',6439,3697,0,0,3599,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7696,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 18:59:49','','0000-00-00 00:00:00',0),(7893,0,0,'H','2526','','',7893,0,0,'2025-12-16',6440,4321,0,0,4207,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7697,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 19:04:50','','0000-00-00 00:00:00',0),(7894,0,0,'H','2526','','',7894,0,0,'2025-12-16',6438,4320,0,0,4206,'B',400.00,0.00,'7','BOB BANK','','95584','','0000-00-00','scan ','',7698,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 19:08:13','','0000-00-00 00:00:00',0),(7895,0,0,'H','2526','','',7895,0,0,'2025-12-16',6441,4322,0,0,4208,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7699,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 19:08:27','','0000-00-00 00:00:00',0),(7896,0,0,'H','2526','','',7896,0,0,'2025-12-16',6442,4323,0,0,4209,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7700,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 19:10:46','','0000-00-00 00:00:00',0),(7897,0,0,'H','2526','','',7897,0,0,'2025-12-16',6443,3934,0,0,3829,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7701,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 19:15:09','','0000-00-00 00:00:00',0),(7898,0,0,'H','2526','','',7898,0,0,'2025-12-16',6442,4323,0,0,4209,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7702,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 19:17:22','','0000-00-00 00:00:00',0),(7899,0,0,'H','2526','','',7899,0,0,'2025-12-16',6406,4164,0,0,4057,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',7703,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-16 19:17:30','','0000-00-00 00:00:00',0),(7900,0,0,'H','2526','','',7900,0,0,'2025-12-16',6408,4308,0,0,4194,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',7704,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-16 19:30:18','','0000-00-00 00:00:00',0),(7901,0,0,'H','2526','','',7901,0,0,'2025-12-16',6444,4324,0,0,4210,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7707,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 19:36:41','','0000-00-00 00:00:00',0),(7902,0,0,'H','2526','','',7902,0,0,'2025-12-16',6440,4321,0,0,4207,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',7708,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 19:37:14','','0000-00-00 00:00:00',0),(7903,0,0,'H','2526','','',7903,0,0,'2025-12-16',6430,705,0,0,676,'D',-400.00,0.00,'CSH','','','','','2025-12-16','','',7709,'N','N','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 19:37:58','','0000-00-00 00:00:00',0),(7904,0,0,'H','2526','','',7904,0,0,'2025-12-16',6440,4321,0,0,4207,'B',2000.00,0.00,'7','SBI','','71823','','0000-00-00','scan','',7710,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-16 19:42:12','','0000-00-00 00:00:00',0),(7905,0,0,'H','2526','','P',7905,0,0,'2025-12-16',6330,4260,4260,295,0,'A',600.00,0.00,'7','BOI BANK','','3357','','0000-00-00','','',7711,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-16 19:44:15','vishal','2025-12-16 19:44:36',0),(7906,0,0,'H','2526','','P',7906,0,0,'2025-12-16',4017,2937,2937,187,0,'A',30000.00,0.00,'7','BOI BANK','','3862','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-16 19:48:10','vishal','2025-12-16 19:48:10',0),(7907,0,0,'H','2526','','',7907,0,0,'2025-12-16',6446,4065,0,0,3957,'B',400.00,0.00,'7','IDFC BANK','','24399','','0000-00-00','scan ','',7712,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-16 19:48:33','','0000-00-00 00:00:00',0),(7908,0,0,'H','2526','','',7908,0,0,'2025-12-16',6334,4262,0,296,0,'D',-1700.00,0.00,'CSH','','','','','0000-00-00','','',7713,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-16 19:54:45','','0000-00-00 00:00:00',0),(7909,0,0,'H','2526','','',7909,0,0,'2025-12-16',6408,4308,0,0,4194,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',7714,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-16 20:04:02','','0000-00-00 00:00:00',0),(7910,0,0,'H','2526','','P',7910,0,0,'2025-12-16',6447,4323,4323,299,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',8154,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-16 20:25:04','vishal','2025-12-19 19:24:32',0),(7911,0,0,'H','2526','','',7911,0,0,'2025-12-17',6449,4326,0,0,4211,'B',1200.00,0.00,'7','hdfc','','88927','','0000-00-00','scan','',7715,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 08:43:30','','0000-00-00 00:00:00',0),(7912,0,0,'H','2526','','',7912,0,0,'2025-12-17',6450,4327,0,0,4212,'B',1000.00,0.00,'7','sbi','','57631','','0000-00-00','scan','',7716,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 08:46:57','','0000-00-00 00:00:00',0),(7913,0,0,'H','2526','','',7913,0,0,'2025-12-17',6451,4298,0,0,4185,'B',550.00,0.00,'7','BOM','','81424','','0000-00-00','scan','',7717,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 08:49:19','','0000-00-00 00:00:00',0),(7914,0,0,'H','2526','','',7914,0,0,'2025-12-17',6452,4328,0,0,4213,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7718,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 09:50:39','','0000-00-00 00:00:00',0),(7915,0,0,'H','2526','','',7915,0,0,'2025-12-17',6453,4329,0,0,4214,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7719,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 09:56:17','','0000-00-00 00:00:00',0),(7916,0,0,'H','2526','','',7916,0,0,'2025-12-17',6455,2348,0,0,2291,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7720,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 10:06:39','','0000-00-00 00:00:00',0),(7917,0,0,'H','2526','','P',7917,0,0,'2025-12-17',6448,4325,4325,300,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',7854,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-17 10:10:29','vishal','2025-12-17 19:16:02',0),(7918,0,0,'H','2526','','',7918,0,0,'2025-12-17',6456,1890,0,0,1844,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7721,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 10:13:02','','0000-00-00 00:00:00',0),(7919,0,0,'H','2526','','',7919,0,0,'2025-12-17',6457,3446,0,0,3350,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7722,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 10:13:42','','0000-00-00 00:00:00',0),(7920,0,0,'H','2526','','',7920,0,0,'2025-12-17',6458,3292,0,0,3205,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7723,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 10:15:27','','0000-00-00 00:00:00',0),(7921,0,0,'H','2526','','',7921,0,0,'2025-12-17',6459,4330,0,0,4215,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7724,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 10:17:46','','0000-00-00 00:00:00',0),(7922,0,0,'H','2526','','',7922,0,0,'2025-12-17',6460,3161,0,0,3075,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7725,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 10:18:46','','0000-00-00 00:00:00',0),(7923,0,0,'H','2526','','',7923,0,0,'2025-12-17',6462,3177,0,0,3091,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7726,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 10:35:16','','0000-00-00 00:00:00',0),(7924,0,0,'H','2526','','',7924,0,0,'2025-12-17',6463,4331,0,0,4216,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7727,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 10:39:38','','0000-00-00 00:00:00',0),(7925,0,0,'H','2526','','',7925,0,0,'2025-12-17',6464,4332,0,0,4217,'B',500.00,0.00,'7','union bank','','48617','','0000-00-00','scan  ','',7728,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-17 10:48:34','','0000-00-00 00:00:00',0),(7926,0,0,'H','2526','','',7926,0,0,'2025-12-17',6465,2925,0,0,2853,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7729,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 10:49:58','','0000-00-00 00:00:00',0),(7927,0,0,'H','2526','','',7927,0,0,'2025-12-17',6466,4333,0,0,4218,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7730,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 10:52:00','','0000-00-00 00:00:00',0),(7928,0,0,'H','2526','','',7928,0,0,'2025-12-17',6454,4164,0,0,4057,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7731,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-17 10:53:10','','0000-00-00 00:00:00',0),(7929,0,0,'H','2526','','',7929,0,0,'2025-12-17',6467,4080,0,0,3973,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7732,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 10:56:01','','0000-00-00 00:00:00',0),(7930,0,0,'H','2526','','',7930,0,0,'2025-12-17',6468,4334,0,0,4219,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7733,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-17 10:56:17','','0000-00-00 00:00:00',0),(7931,0,0,'H','2526','','',7931,0,0,'2025-12-17',6469,4335,0,0,4220,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7734,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 10:58:25','','0000-00-00 00:00:00',0),(7932,0,0,'H','2526','','',7932,0,0,'2025-12-17',6471,567,0,0,541,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7735,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 11:03:20','','0000-00-00 00:00:00',0),(7933,0,0,'H','2526','','',7933,0,0,'2025-12-17',6472,4336,0,0,4221,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7736,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 11:03:32','','0000-00-00 00:00:00',0),(7934,0,0,'H','2526','','',7934,0,0,'2025-12-17',6473,746,0,0,715,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7737,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 11:08:36','','0000-00-00 00:00:00',0),(7935,0,0,'H','2526','','',7935,0,0,'2025-12-17',6475,26,0,0,25,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7738,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 11:10:16','','0000-00-00 00:00:00',0),(7936,0,0,'H','2526','','',7936,0,0,'2025-12-17',6474,4337,0,0,4222,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7739,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-17 11:10:38','','0000-00-00 00:00:00',0),(7937,0,0,'H','2526','','',7937,0,0,'2025-12-17',6476,1481,0,0,3369,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7740,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-17 11:12:00','','0000-00-00 00:00:00',0),(7938,0,0,'H','2526','','',7938,0,0,'2025-12-17',6477,4338,0,0,4223,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7741,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-17 11:13:40','','0000-00-00 00:00:00',0),(7939,0,0,'H','2526','','',7939,0,0,'2025-12-17',6478,505,0,0,479,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7742,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-17 11:14:23','','0000-00-00 00:00:00',0),(7940,0,0,'H','2526','','',7940,0,0,'2025-12-17',6479,2588,0,0,2531,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7743,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 11:21:34','','0000-00-00 00:00:00',0),(7941,0,0,'H','2526','','',7941,0,0,'2025-12-17',6452,4328,0,0,4213,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',7744,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 11:22:42','','0000-00-00 00:00:00',0),(7942,0,0,'H','2526','','',7942,0,0,'2025-12-17',6480,4339,0,0,4224,'B',850.00,0.00,'CSH','','','','','0000-00-00','','',7745,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-17 11:22:51','','0000-00-00 00:00:00',0),(7943,0,0,'H','2526','','',7943,0,0,'2025-12-17',6482,4340,0,0,4225,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7746,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 11:27:56','','0000-00-00 00:00:00',0),(7944,0,0,'H','2526','','',7944,0,0,'2025-12-17',6483,2270,0,0,2214,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7747,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-17 11:29:02','','0000-00-00 00:00:00',0),(7945,0,0,'H','2526','','',7945,0,0,'2025-12-17',6484,4341,0,0,4226,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7748,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-17 11:30:27','','0000-00-00 00:00:00',0),(7946,0,0,'H','2526','','',7946,0,0,'2025-12-17',6463,4331,0,0,4216,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',7749,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 11:30:39','','0000-00-00 00:00:00',0),(7947,0,0,'H','2526','','',7947,0,0,'2025-12-17',6485,2052,0,0,2001,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7750,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 11:37:40','','0000-00-00 00:00:00',0),(7948,0,0,'H','2526','','',7948,0,0,'2025-12-17',6453,4329,0,0,4214,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',7751,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 11:42:54','','0000-00-00 00:00:00',0),(7949,0,0,'H','2526','','',7949,0,0,'2025-12-17',6477,4338,0,0,4223,'D',-500.00,0.00,'CSH','','','','','2025-12-17','','',7752,'N','N','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-17 11:46:57','','0000-00-00 00:00:00',0),(7950,0,0,'H','2526','','',7950,0,0,'2025-12-17',6486,4342,0,0,4227,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7753,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-17 11:48:48','','0000-00-00 00:00:00',0),(7951,0,0,'H','2526','','',7951,0,0,'2025-12-17',6488,4344,0,0,4229,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7754,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 11:51:52','','0000-00-00 00:00:00',0),(7952,0,0,'H','2526','','',7952,0,0,'2025-12-17',6487,4343,0,0,4228,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7755,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 11:52:10','','0000-00-00 00:00:00',0),(7953,0,0,'H','2526','','',7953,0,0,'2025-12-17',6478,505,0,0,479,'B',400.00,0.00,'7','union','','44650','','0000-00-00','scan','',7756,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-17 11:53:41','','0000-00-00 00:00:00',0),(7954,0,0,'H','2526','','',7954,0,0,'2025-12-17',6489,4345,0,0,4230,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7757,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 11:54:04','','0000-00-00 00:00:00',0),(7955,0,0,'H','2526','','',7955,0,0,'2025-12-17',6486,4342,0,0,4227,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',7758,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-17 11:57:41','','0000-00-00 00:00:00',0),(7956,0,0,'H','2526','','',7956,0,0,'2025-12-17',6466,4333,0,0,4218,'D',-700.00,0.00,'CSH','','','','','2025-12-17','','',7759,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 12:00:56','','0000-00-00 00:00:00',0),(7957,0,0,'H','2526','','',7957,0,0,'2025-12-17',6469,4335,0,0,4220,'B',4500.00,0.00,'7','CENTRAL BANK','','80038','','0000-00-00','SCAN','',7760,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 12:13:40','','0000-00-00 00:00:00',0),(7958,0,0,'H','2526','','',7958,0,0,'2025-12-17',6488,4344,0,0,4229,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7761,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 12:15:44','','0000-00-00 00:00:00',0),(7959,0,0,'H','2526','','',7959,0,0,'2025-12-17',6489,4345,0,0,4230,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7762,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 12:18:06','','0000-00-00 00:00:00',0),(7960,0,0,'H','2526','','',7960,0,0,'2025-12-17',6451,4298,0,0,4185,'B',1000.00,0.00,'7','ICICI BANK','','41157','','0000-00-00','scan ','',7763,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 12:26:54','','0000-00-00 00:00:00',0),(7961,0,0,'H','2526','','',7961,0,0,'2025-12-17',6472,4336,0,0,4221,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',7764,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 12:27:52','','0000-00-00 00:00:00',0),(7962,0,0,'H','2526','','',7962,0,0,'2025-12-17',6491,3166,0,0,3080,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7765,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 12:32:00','','0000-00-00 00:00:00',0),(7963,0,0,'H','2526','','',7963,0,0,'2025-12-17',6493,3876,0,0,3772,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7767,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 12:38:28','','0000-00-00 00:00:00',0),(7964,0,0,'H','2526','','',7964,0,0,'2025-12-17',6492,4215,0,0,4106,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',7768,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-17 12:43:22','','0000-00-00 00:00:00',0),(7965,0,0,'H','2526','','',7965,0,0,'2025-12-17',6495,4347,0,0,4232,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7769,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 12:43:40','','0000-00-00 00:00:00',0),(7966,0,0,'H','2526','','',7966,0,0,'2025-12-17',6496,4348,0,0,4233,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7770,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 12:47:28','','0000-00-00 00:00:00',0),(7967,0,0,'H','2526','','',7967,0,0,'2025-12-17',6494,4346,0,0,4231,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7771,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 13:00:44','','0000-00-00 00:00:00',0),(7968,0,0,'H','2526','','',7968,0,0,'2025-12-17',6499,3252,0,0,3166,'B',500.00,0.00,'7','sbi','','92022','','0000-00-00','scan','',7772,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 13:03:36','','0000-00-00 00:00:00',0),(7969,0,0,'H','2526','','',7969,0,0,'2025-12-17',6501,3473,0,0,3378,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7773,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-17 13:04:45','','0000-00-00 00:00:00',0),(7970,0,0,'H','2526','','',7970,0,0,'2025-12-17',6497,1037,0,0,1005,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',7774,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-17 13:07:21','','0000-00-00 00:00:00',0),(7971,0,0,'H','2526','','',7971,0,0,'2025-12-17',6500,4349,0,0,4234,'B',1700.00,0.00,'CSH','','','','','0000-00-00','','',7775,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-17 13:08:49','','0000-00-00 00:00:00',0),(7972,0,0,'H','2526','','P',7972,0,0,'2025-12-17',6061,4124,4124,277,0,'A',15000.00,0.00,'CRD','6023','','9581','','0000-00-00','','',7778,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-17 13:13:12','vishal','2025-12-17 13:20:09',0),(7973,0,0,'H','2526','','',7973,0,0,'2025-12-17',6502,4350,0,0,4235,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7776,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 13:18:59','','0000-00-00 00:00:00',0),(7974,0,0,'H','2526','','',7974,0,0,'2025-12-17',6503,2984,0,0,2907,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7777,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-17 13:19:42','','0000-00-00 00:00:00',0),(7975,0,0,'H','2526','','',7975,0,0,'2025-12-17',6489,4345,0,0,4230,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7779,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 13:22:25','','0000-00-00 00:00:00',0),(7976,0,0,'H','2526','','',7976,0,0,'2025-12-17',6504,296,0,0,280,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7780,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 13:27:29','','0000-00-00 00:00:00',0),(7977,0,0,'H','2526','','',7977,0,0,'2025-12-17',6505,3098,0,0,3018,'B',100.00,0.00,'7','SBI BANK','','14700','','0000-00-00','scan ','',7781,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 13:36:03','','0000-00-00 00:00:00',0),(7978,0,0,'H','2526','','',7978,0,0,'2025-12-17',6502,4350,0,0,4235,'B',4200.00,0.00,'CSH','','','','','0000-00-00','','',7784,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 13:56:23','','0000-00-00 00:00:00',0),(7979,0,0,'H','2526','','P',7979,0,0,'2025-12-17',5521,3824,3824,259,0,'A',10350.00,0.00,'7','ICICI','','10682','','0000-00-00','','',7786,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-17 14:04:34','vishal','2025-12-17 14:05:14',0),(7980,0,0,'H','2526','','P',7980,0,0,'2025-12-17',6262,4227,4227,290,0,'A',12000.00,0.00,'CSH','','','','','0000-00-00','','',7787,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-17 14:27:02','vishal','2025-12-17 14:27:22',0),(7981,0,0,'H','2526','','P',7981,0,0,'2025-12-17',6254,4222,4222,289,0,'A',21600.00,0.00,'CSH','','','','','0000-00-00','','',7788,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-17 14:48:03','vishal','2025-12-17 14:48:24',0),(7982,0,0,'H','2526','','',7982,0,0,'2025-12-17',6504,296,0,0,280,'B',600.00,0.00,'7','icici bank','','04787','','0000-00-00','scan ','',7789,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-17 14:51:51','','0000-00-00 00:00:00',0),(7983,0,0,'H','2526','','',7983,0,0,'2025-12-17',6508,3419,0,0,3327,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7790,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 16:24:54','','0000-00-00 00:00:00',0),(7984,0,0,'H','2526','','',7984,0,0,'2025-12-17',6510,4352,0,0,4237,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7791,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 16:48:22','','0000-00-00 00:00:00',0),(7985,0,0,'H','2526','','',7985,0,0,'2025-12-17',6511,1520,0,0,1479,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7792,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 16:49:37','','0000-00-00 00:00:00',0),(7986,0,0,'H','2526','','',7986,0,0,'2025-12-17',6514,920,0,0,888,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7793,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 17:00:35','','0000-00-00 00:00:00',0),(7987,0,0,'H','2526','','',7987,0,0,'2025-12-17',6515,4353,0,0,4238,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7794,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 17:04:51','','0000-00-00 00:00:00',0),(7988,0,0,'H','2526','','',7988,0,0,'2025-12-17',6516,4354,0,0,4239,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7795,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 17:11:31','','0000-00-00 00:00:00',0),(7989,0,0,'H','2526','','',7989,0,0,'2025-12-17',6517,4355,0,0,4240,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7796,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 17:20:04','','0000-00-00 00:00:00',0),(7990,0,0,'H','2526','','',7990,0,0,'2025-12-17',6518,3856,0,0,3753,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7797,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 17:23:14','','0000-00-00 00:00:00',0),(7991,0,0,'H','2526','','',7991,0,0,'2025-12-17',6519,4356,0,0,4241,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7798,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 17:24:12','','0000-00-00 00:00:00',0),(7992,0,0,'H','2526','','',7992,0,0,'2025-12-17',6520,4357,0,0,4242,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7800,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-17 17:32:48','','0000-00-00 00:00:00',0),(7993,0,0,'H','2526','','',7993,0,0,'2025-12-17',6521,4358,0,0,4243,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7801,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 17:34:02','','0000-00-00 00:00:00',0),(7994,0,0,'H','2526','','',7994,0,0,'2025-12-17',6522,2389,0,0,2333,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7802,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 17:35:31','','0000-00-00 00:00:00',0),(7995,0,0,'H','2526','','',7995,0,0,'2025-12-17',6523,1857,0,0,1811,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7803,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 17:40:47','','0000-00-00 00:00:00',0),(7996,0,0,'H','2526','','',7996,0,0,'2025-12-17',6524,2844,0,0,2775,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7804,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 17:41:34','','0000-00-00 00:00:00',0),(7997,0,0,'H','2526','','',7997,0,0,'2025-12-17',6525,4359,0,0,4244,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7805,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-17 17:42:40','','0000-00-00 00:00:00',0),(7998,0,0,'H','2526','','',7998,0,0,'2025-12-17',6526,4360,0,0,4245,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7806,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 17:49:21','','0000-00-00 00:00:00',0),(7999,0,0,'H','2526','','',7999,0,0,'2025-12-17',6508,3419,0,0,3327,'D',-500.00,0.00,'CSH','','','','','2025-12-17','','',7807,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 17:51:23','','0000-00-00 00:00:00',0),(8000,0,0,'H','2526','','',8000,0,0,'2025-12-17',6508,3419,0,0,3327,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7808,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 17:52:36','','0000-00-00 00:00:00',0),(8001,0,0,'H','2526','','',8001,0,0,'2025-12-17',6527,4361,0,0,4246,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7809,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 18:00:45','','0000-00-00 00:00:00',0),(8002,0,0,'H','2526','','',8002,0,0,'2025-12-17',6528,4362,0,0,4247,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7810,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 18:03:02','','0000-00-00 00:00:00',0),(8003,0,0,'H','2526','','',8003,0,0,'2025-12-17',6529,2802,0,0,2732,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7811,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 18:04:16','','0000-00-00 00:00:00',0),(8004,0,0,'H','2526','','',8004,0,0,'2025-12-17',6530,4363,0,0,4248,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7812,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 18:07:07','','0000-00-00 00:00:00',0),(8005,0,0,'H','2526','','',8005,0,0,'2025-12-17',6531,4364,0,0,4249,'B',400.00,0.00,'7','PUNJAB BANK','','73898','','0000-00-00','scan','',7813,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 18:09:33','','0000-00-00 00:00:00',0),(8006,0,0,'H','2526','','',8006,0,0,'2025-12-17',6532,4365,0,0,4250,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7814,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-17 18:10:24','','0000-00-00 00:00:00',0),(8007,0,0,'H','2526','','',8007,0,0,'2025-12-17',6533,4366,0,0,4251,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7815,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 18:10:45','','0000-00-00 00:00:00',0),(8008,0,0,'H','2526','','',8008,0,0,'2025-12-17',6534,4367,0,0,4252,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7816,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 18:14:49','','0000-00-00 00:00:00',0),(8009,0,0,'H','2526','','',8009,0,0,'2025-12-17',6536,4368,0,0,4253,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7817,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 18:15:44','','0000-00-00 00:00:00',0),(8010,0,0,'H','2526','','',8010,0,0,'2025-12-17',6535,3807,0,0,3704,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7818,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-17 18:15:46','','0000-00-00 00:00:00',0),(8011,0,0,'H','2526','','',8011,0,0,'2025-12-17',6537,2641,0,0,2580,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7819,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 18:16:15','','0000-00-00 00:00:00',0),(8012,0,0,'H','2526','','',8012,0,0,'2025-12-17',6538,3721,0,0,3720,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7820,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-17 18:17:51','','0000-00-00 00:00:00',0),(8013,0,0,'H','2526','','',8013,0,0,'2025-12-17',6539,3133,0,0,3052,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7821,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 18:18:24','','0000-00-00 00:00:00',0),(8014,0,0,'H','2526','','',8014,0,0,'2025-12-17',6540,4369,0,0,4254,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7822,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 18:20:00','','0000-00-00 00:00:00',0),(8015,0,0,'H','2526','','',8015,0,0,'2025-12-17',6521,4358,0,0,4243,'B',4800.00,0.00,'7','KOTAK','','18706','','0000-00-00','scan','',7823,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 18:20:11','','0000-00-00 00:00:00',0),(8016,0,0,'H','2526','','',8016,0,0,'2025-12-17',6516,4354,0,0,4239,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7824,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 18:22:19','','0000-00-00 00:00:00',0),(8017,0,0,'H','2526','','',8017,0,0,'2025-12-17',6541,4370,0,0,4255,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7825,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-17 18:22:34','','0000-00-00 00:00:00',0),(8018,0,0,'H','2526','','',8018,0,0,'2025-12-17',6517,4355,0,0,4240,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',7826,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 18:23:14','','0000-00-00 00:00:00',0),(8019,0,0,'H','2526','','',8019,0,0,'2025-12-17',6542,2808,0,0,2738,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',7827,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-17 18:27:13','','0000-00-00 00:00:00',0),(8020,0,0,'H','2526','','',8020,0,0,'2025-12-17',6543,4371,0,0,4256,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7828,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 18:28:25','','0000-00-00 00:00:00',0),(8021,0,0,'H','2526','','',8021,0,0,'2025-12-17',6544,3705,0,0,3605,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',7829,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-17 18:29:31','','0000-00-00 00:00:00',0),(8022,0,0,'H','2526','','',8022,0,0,'2025-12-17',6545,4372,0,0,4257,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7830,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 18:30:32','','0000-00-00 00:00:00',0),(8023,0,0,'H','2526','','',8023,0,0,'2025-12-17',6546,4373,0,0,4258,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7831,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 18:33:46','','0000-00-00 00:00:00',0),(8024,0,0,'H','2526','','',8024,0,0,'2025-12-17',6504,296,0,0,280,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',7832,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 18:34:34','','0000-00-00 00:00:00',0),(8025,0,0,'H','2526','','',8025,0,0,'2025-12-17',6526,4360,0,0,4245,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',7833,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 18:36:07','','0000-00-00 00:00:00',0),(8026,0,0,'H','2526','','',8026,0,0,'2025-12-17',6548,3394,0,0,3305,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',7834,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-17 18:36:40','','0000-00-00 00:00:00',0),(8027,0,0,'H','2526','','',8027,0,0,'2025-12-17',6549,1538,0,0,1497,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7835,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 18:38:37','','0000-00-00 00:00:00',0),(8028,0,0,'H','2526','','',8028,0,0,'2025-12-17',6550,4110,0,0,4003,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7836,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 18:40:30','','0000-00-00 00:00:00',0),(8029,0,0,'H','2526','','',8029,0,0,'2025-12-17',6552,3844,0,0,3741,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7837,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-17 18:43:55','','0000-00-00 00:00:00',0),(8030,0,0,'H','2526','','',8030,0,0,'2025-12-17',6551,4374,0,0,4259,'B',750.00,0.00,'7','SBI BANK','','99841','','0000-00-00','scan ','',7838,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 18:44:01','','0000-00-00 00:00:00',0),(8031,0,0,'H','2526','','',8031,0,0,'2025-12-17',6553,138,0,0,127,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7839,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 18:48:41','','0000-00-00 00:00:00',0),(8032,0,0,'H','2526','','',8032,0,0,'2025-12-17',6527,4361,0,0,4246,'D',-800.00,0.00,'CSH','','','','','2025-12-17','','',7840,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 18:49:57','','0000-00-00 00:00:00',0),(8033,0,0,'H','2526','','',8033,0,0,'2025-12-17',6554,727,0,0,696,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7841,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-17 18:50:13','','0000-00-00 00:00:00',0),(8034,0,0,'H','2526','','',8034,0,0,'2025-12-17',6527,4361,0,0,4246,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7842,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 18:50:38','','0000-00-00 00:00:00',0),(8035,0,0,'H','2526','','',8035,0,0,'2025-12-17',6556,4375,0,0,4260,'B',400.00,0.00,'7','axis bank','','98628','','0000-00-00','scan ','',7843,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 18:53:14','','0000-00-00 00:00:00',0),(8036,0,0,'H','2526','','',8036,0,0,'2025-12-17',6557,3817,0,0,3715,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7844,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-17 18:56:04','','0000-00-00 00:00:00',0),(8037,0,0,'H','2526','','',8037,0,0,'2025-12-17',6560,4377,0,0,4262,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7845,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-17 18:57:36','','0000-00-00 00:00:00',0),(8038,0,0,'H','2526','','',8038,0,0,'2025-12-17',6559,4376,0,0,4261,'B',750.00,0.00,'7','BANK','','85368','','0000-00-00','scan ','',7846,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 18:57:53','','0000-00-00 00:00:00',0),(8039,0,0,'H','2526','','',8039,0,0,'2025-12-17',6561,3411,0,0,3319,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7848,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-17 19:00:00','','0000-00-00 00:00:00',0),(8040,0,0,'H','2526','','',8040,0,0,'2025-12-17',6550,4110,0,0,4003,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7849,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 19:01:02','','0000-00-00 00:00:00',0),(8041,0,0,'H','2526','','',8041,0,0,'2025-12-17',6563,2863,0,0,2794,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7850,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 19:05:28','','0000-00-00 00:00:00',0),(8042,0,0,'H','2526','','',8042,0,0,'2025-12-17',6562,3586,0,0,3486,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7851,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-17 19:05:47','','0000-00-00 00:00:00',0),(8043,0,0,'H','2526','','',8043,0,0,'2025-12-17',6564,4378,0,0,4263,'B',750.00,0.00,'7','bob','','16816','','0000-00-00','scan ','',7852,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-17 19:08:46','','0000-00-00 00:00:00',0),(8044,0,0,'H','2526','','',8044,0,0,'2025-12-17',6566,971,0,0,940,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7853,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 19:13:28','','0000-00-00 00:00:00',0),(8045,0,0,'H','2526','','',8045,0,0,'2025-12-17',6448,4325,0,300,0,'D',-400.00,0.00,'CSH','','','','','0000-00-00','','',7854,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-17 19:16:02','','0000-00-00 00:00:00',0),(8046,0,0,'H','2526','','',8046,0,0,'2025-12-17',6567,4379,0,0,4264,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7855,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 19:17:16','','0000-00-00 00:00:00',0),(8047,0,0,'H','2526','','',8047,0,0,'2025-12-17',6568,4009,0,0,3901,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7856,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 19:18:33','','0000-00-00 00:00:00',0),(8048,0,0,'H','2526','','',8048,0,0,'2025-12-17',6569,4380,0,0,4265,'B',700.00,0.00,'7','sbi','','01134','','0000-00-00','scan  ','',7857,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-17 19:32:06','','0000-00-00 00:00:00',0),(8049,0,0,'H','2526','','',8049,0,0,'2025-12-17',6555,2024,0,0,1976,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7858,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-17 19:39:52','','0000-00-00 00:00:00',0),(8050,0,0,'H','2526','','',8050,0,0,'2025-12-17',6571,4381,0,0,4266,'B',400.00,0.00,'7','SBI BANK','','19464','','0000-00-00','scan ','',7859,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 19:40:41','','0000-00-00 00:00:00',0),(8051,0,0,'H','2526','','',8051,0,0,'2025-12-17',6546,4373,0,0,4258,'D',-700.00,0.00,'CSH','','','','','2025-12-17','','',7860,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 19:46:44','','0000-00-00 00:00:00',0),(8052,0,0,'H','2526','','',8052,0,0,'2025-12-17',6546,4373,0,0,4258,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',7861,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 19:47:34','','0000-00-00 00:00:00',0),(8053,0,0,'H','2526','','',8053,0,0,'2025-12-17',6572,4382,0,0,4267,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7862,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 19:51:09','','0000-00-00 00:00:00',0),(8054,0,0,'H','2526','','',8054,0,0,'2025-12-17',6541,4370,0,0,4255,'B',12000.00,0.00,'7','sbi','','68507','','0000-00-00','scan','',7863,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-17 19:54:57','','0000-00-00 00:00:00',0),(8055,0,0,'H','2526','','',8055,0,0,'2025-12-17',6549,1538,0,0,1497,'D',-500.00,0.00,'CSH','','','','','2025-12-17','','',7864,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 19:56:43','','0000-00-00 00:00:00',0),(8056,0,0,'H','2526','','',8056,0,0,'2025-12-17',6549,1538,0,0,1497,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7865,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 19:57:17','','0000-00-00 00:00:00',0),(8057,0,0,'H','2526','','',8057,0,0,'2025-12-17',6573,4383,0,0,4268,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7866,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-17 20:00:08','','0000-00-00 00:00:00',0),(8058,0,0,'H','2526','','',8058,0,0,'2025-12-17',6574,4384,0,0,4269,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7867,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-17 20:12:16','','0000-00-00 00:00:00',0),(8059,0,0,'H','2526','','',8059,0,0,'2025-12-17',6575,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7868,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-17 20:20:05','','0000-00-00 00:00:00',0),(8060,0,0,'H','2526','','P',8060,0,0,'2025-12-17',6576,4384,4384,302,0,'A',6000.00,0.00,'7','SBI BANK','','63758','','0000-00-00','','',8213,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-17 20:40:49','riya','2025-12-20 13:41:47',0),(8061,0,0,'H','2526','','',8061,0,0,'2025-12-18',6577,4385,0,0,4270,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7869,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 08:48:01','','0000-00-00 00:00:00',0),(8062,0,0,'H','2526','','',8062,0,0,'2025-12-18',6578,4386,0,0,4271,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7870,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 08:51:16','','0000-00-00 00:00:00',0),(8063,0,0,'H','2526','','',8063,0,0,'2025-12-18',6579,4387,0,0,4272,'B',1600.00,0.00,'7','sbi','','19473','','0000-00-00','scan','',7871,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 08:53:51','','0000-00-00 00:00:00',0),(8064,0,0,'H','2526','','',8064,0,0,'2025-12-18',6580,4388,0,0,4273,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7872,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 09:50:30','','0000-00-00 00:00:00',0),(8065,0,0,'H','2526','','',8065,0,0,'2025-12-18',6582,3311,0,0,3225,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7873,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 09:57:53','','0000-00-00 00:00:00',0),(8066,0,0,'H','2526','','',8066,0,0,'2025-12-18',6583,3363,0,0,3274,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7874,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 10:08:51','','0000-00-00 00:00:00',0),(8067,0,0,'H','2526','','',8067,0,0,'2025-12-18',6584,3796,0,0,3691,'B',500.00,0.00,'7','axis bank','','41159','','0000-00-00','scan','',7875,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 10:11:22','','0000-00-00 00:00:00',0),(8068,0,0,'H','2526','','',8068,0,0,'2025-12-18',6585,331,0,0,315,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7876,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 10:15:03','','0000-00-00 00:00:00',0),(8069,0,0,'H','2526','','',8069,0,0,'2025-12-18',6586,3296,0,0,3209,'B',500.00,0.00,'7','sbi','','87390','','0000-00-00','scan','',7877,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 10:27:53','','0000-00-00 00:00:00',0),(8070,0,0,'H','2526','','',8070,0,0,'2025-12-18',6587,3840,0,0,3737,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7878,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 10:31:15','','0000-00-00 00:00:00',0),(8071,0,0,'H','2526','','',8071,0,0,'2025-12-18',6588,4390,0,0,4275,'B',1300.00,0.00,'7','sbi','','36740','','0000-00-00','scan','',7879,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-18 10:37:23','','0000-00-00 00:00:00',0),(8072,0,0,'H','2526','','',8072,0,0,'2025-12-18',6589,4391,0,0,4276,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7880,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 10:40:36','','0000-00-00 00:00:00',0),(8073,0,0,'H','2526','','',8073,0,0,'2025-12-18',6591,4393,0,0,4278,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7881,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 10:44:13','','0000-00-00 00:00:00',0),(8074,0,0,'H','2526','','',8074,0,0,'2025-12-18',6592,4394,0,0,4279,'B',700.00,0.00,'7','sbi','','53336','','0000-00-00','scan ','',7882,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-18 10:46:11','','0000-00-00 00:00:00',0),(8075,0,0,'H','2526','','',8075,0,0,'2025-12-18',6593,1414,0,0,1373,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7883,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 10:46:30','','0000-00-00 00:00:00',0),(8076,0,0,'H','2526','','',8076,0,0,'2025-12-18',6595,4396,0,0,4281,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7884,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 10:48:37','','0000-00-00 00:00:00',0),(8077,0,0,'H','2526','','',8077,0,0,'2025-12-18',6594,4395,0,0,4280,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7885,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 10:48:52','','0000-00-00 00:00:00',0),(8078,0,0,'H','2526','','',8078,0,0,'2025-12-18',6596,3784,0,0,3679,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7886,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 10:49:57','','0000-00-00 00:00:00',0),(8079,0,0,'H','2526','','',8079,0,0,'2025-12-18',6597,4242,0,0,4129,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7887,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-18 10:52:04','','0000-00-00 00:00:00',0),(8080,0,0,'H','2526','','',8080,0,0,'2025-12-18',6598,4397,0,0,4282,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7888,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 10:52:37','','0000-00-00 00:00:00',0),(8081,0,0,'H','2526','','',8081,0,0,'2025-12-18',6599,4398,0,0,4283,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7889,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 10:55:59','','0000-00-00 00:00:00',0),(8082,0,0,'H','2526','','',8082,0,0,'2025-12-18',6600,4399,0,0,4284,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7890,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 11:01:04','','0000-00-00 00:00:00',0),(8083,0,0,'H','2526','','',8083,0,0,'2025-12-18',6597,4242,0,0,4129,'D',-400.00,0.00,'CSH','','','','','2025-12-18','','',7891,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-18 11:01:59','','0000-00-00 00:00:00',0),(8084,0,0,'H','2526','','',8084,0,0,'2025-12-18',6601,4400,0,0,4285,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7892,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 11:02:43','','0000-00-00 00:00:00',0),(8085,0,0,'H','2526','','',8085,0,0,'2025-12-18',6581,4389,0,0,4274,'B',550.00,0.00,'CSH','','','','','0000-00-00','','',7893,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 11:05:44','','0000-00-00 00:00:00',0),(8086,0,0,'H','2526','','',8086,0,0,'2025-12-18',6602,1835,0,0,1790,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7894,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 11:06:46','','0000-00-00 00:00:00',0),(8087,0,0,'H','2526','','',8087,0,0,'2025-12-18',6605,2146,0,0,2092,'B',300.00,0.00,'7','indian bank','','37631','','0000-00-00','scan  ','',7895,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-18 11:08:57','','0000-00-00 00:00:00',0),(8088,0,0,'H','2526','','',8088,0,0,'2025-12-18',6606,4401,0,0,4286,'B',900.00,0.00,'7','UNION BANK','','76217','','0000-00-00','scan ','',7896,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 11:12:14','','0000-00-00 00:00:00',0),(8089,0,0,'H','2526','','',8089,0,0,'2025-12-18',6607,4402,0,0,4287,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7897,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 11:12:35','','0000-00-00 00:00:00',0),(8090,0,0,'H','2526','','',8090,0,0,'2025-12-18',6608,3165,0,0,3079,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7898,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 11:13:41','','0000-00-00 00:00:00',0),(8091,0,0,'H','2526','','',8091,0,0,'2025-12-18',6609,4403,0,0,4288,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7899,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-18 11:13:57','','0000-00-00 00:00:00',0),(8092,0,0,'H','2526','','P',8092,0,0,'2025-12-18',6610,4383,4383,303,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',8010,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-18 11:18:36','vishal','2025-12-18 20:28:18',0),(8093,0,0,'H','2526','','',8093,0,0,'2025-12-18',6580,4388,0,0,4273,'B',3600.00,0.00,'CSH','','','','','0000-00-00','','',7900,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 11:18:51','','0000-00-00 00:00:00',0),(8094,0,0,'H','2526','','',8094,0,0,'2025-12-18',6580,4388,0,0,4273,'B',1000.00,0.00,'7','rajkot distric','','72573','','2025-12-18','SCAN ','',7900,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 11:22:06','','0000-00-00 00:00:00',0),(8095,0,0,'H','2526','','',8095,0,0,'2025-12-18',6589,4391,0,0,4276,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',7901,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 11:23:44','','0000-00-00 00:00:00',0),(8096,0,0,'H','2526','','',8096,0,0,'2025-12-18',6611,3240,0,0,3154,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7902,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 11:25:41','','0000-00-00 00:00:00',0),(8097,0,0,'H','2526','','',8097,0,0,'2025-12-18',6612,4404,0,0,4289,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7903,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 11:28:02','','0000-00-00 00:00:00',0),(8098,0,0,'H','2526','','',8098,0,0,'2025-12-18',6614,1095,0,0,1125,'B',300.00,0.00,'7','sbi','','38250','','0000-00-00','scan','',7904,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-18 11:32:36','','0000-00-00 00:00:00',0),(8099,0,0,'H','2526','','',8099,0,0,'2025-12-18',6602,1835,0,0,1790,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',7905,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 11:34:17','','0000-00-00 00:00:00',0),(8100,0,0,'H','2526','','',8100,0,0,'2025-12-18',6616,4407,0,0,4291,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7906,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 11:40:56','','0000-00-00 00:00:00',0),(8101,0,0,'H','2526','','',8101,0,0,'2025-12-18',6617,4408,0,0,4292,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7907,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 11:45:29','','0000-00-00 00:00:00',0),(8102,0,0,'H','2526','','',8102,0,0,'2025-12-18',6618,3420,0,0,3328,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7908,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-18 11:47:51','','0000-00-00 00:00:00',0),(8103,0,0,'H','2526','','',8103,0,0,'2025-12-18',6619,4409,0,0,4293,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7909,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-18 11:48:06','','0000-00-00 00:00:00',0),(8104,0,0,'H','2526','','',8104,0,0,'2025-12-18',6620,4410,0,0,4294,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7910,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 11:50:19','','0000-00-00 00:00:00',0),(8105,0,0,'H','2526','','',8105,0,0,'2025-12-18',6606,4401,0,0,4286,'B',4000.00,0.00,'7','UNION BANK ','','82598','','0000-00-00','scan','',7911,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 11:51:01','','0000-00-00 00:00:00',0),(8106,0,0,'H','2526','','',8106,0,0,'2025-12-18',6615,4406,0,0,4290,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7912,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-18 11:52:34','','0000-00-00 00:00:00',0),(8107,0,0,'H','2526','','',8107,0,0,'2025-12-18',6621,2586,0,0,2529,'B',300.00,0.00,'7','sbi','','61519','','0000-00-00','scan','',7913,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-18 11:55:27','','0000-00-00 00:00:00',0),(8108,0,0,'H','2526','','',8108,0,0,'2025-12-18',6622,3221,0,0,3135,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7914,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 11:55:50','','0000-00-00 00:00:00',0),(8109,0,0,'H','2526','','',8109,0,0,'2025-12-18',6623,3630,0,0,4295,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7915,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-18 11:57:06','','0000-00-00 00:00:00',0),(8110,0,0,'H','2526','','',8110,0,0,'2025-12-18',6624,4139,0,0,4032,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7916,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 11:57:20','','0000-00-00 00:00:00',0),(8111,0,0,'H','2526','','',8111,0,0,'2025-12-18',6625,3394,0,0,3305,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',7917,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 11:59:48','','0000-00-00 00:00:00',0),(8112,0,0,'H','2526','','',8112,0,0,'2025-12-18',6619,4409,0,0,4293,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7918,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-18 12:04:12','','0000-00-00 00:00:00',0),(8113,0,0,'H','2526','','P',8113,0,0,'2025-12-18',6613,4405,4405,304,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',8218,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-18 12:11:21','riya','2025-12-20 14:23:20',0),(8114,0,0,'H','2526','','',8114,0,0,'2025-12-18',6601,4400,0,0,4285,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',7919,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 12:12:20','','0000-00-00 00:00:00',0),(8115,0,0,'H','2526','','',8115,0,0,'2025-12-18',6595,4396,0,0,4281,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7920,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 12:17:23','','0000-00-00 00:00:00',0),(8116,0,0,'H','2526','','',8116,0,0,'2025-12-18',6627,4392,0,0,4277,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7921,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-18 12:20:20','','0000-00-00 00:00:00',0),(8117,0,0,'H','2526','','',8117,0,0,'2025-12-18',6628,4412,0,0,4297,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7922,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-18 12:21:52','','0000-00-00 00:00:00',0),(8118,0,0,'H','2526','','',8118,0,0,'2025-12-18',6629,4413,0,0,4298,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7923,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 12:22:23','','0000-00-00 00:00:00',0),(8119,0,0,'H','2526','','',8119,0,0,'2025-12-18',6626,4411,0,0,4296,'B',500.00,0.00,'7','VIJAY COM','','60106','','0000-00-00','scan','',7924,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-18 12:25:22','','0000-00-00 00:00:00',0),(8120,0,0,'H','2526','','',8120,0,0,'2025-12-18',6626,4411,0,0,4296,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7925,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-18 12:26:34','','0000-00-00 00:00:00',0),(8121,0,0,'H','2526','','',8121,0,0,'2025-12-18',6630,3399,0,0,3310,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7926,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-18 12:27:04','','0000-00-00 00:00:00',0),(8122,0,0,'H','2526','','',8122,0,0,'2025-12-18',6631,4414,0,0,4299,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7927,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 12:28:19','','0000-00-00 00:00:00',0),(8123,0,0,'H','2526','','',8123,0,0,'2025-12-18',6632,4415,0,0,4300,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7928,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 12:29:36','','0000-00-00 00:00:00',0),(8124,0,0,'H','2526','','',8124,0,0,'2025-12-18',6633,4416,0,0,4301,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7929,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-18 12:36:57','','0000-00-00 00:00:00',0),(8125,0,0,'H','2526','','P',8125,0,0,'2025-12-18',6165,4173,4173,285,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',8343,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-18 12:40:38','riya','2025-12-22 15:21:43',0),(8126,0,0,'H','2526','','',8126,0,0,'2025-12-18',6634,3863,0,0,4302,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7930,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 12:42:37','','0000-00-00 00:00:00',0),(8127,0,0,'H','2526','','',8127,0,0,'2025-12-18',6635,4417,0,0,4303,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7931,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 12:43:27','','0000-00-00 00:00:00',0),(8128,0,0,'H','2526','','',8128,0,0,'2025-12-18',6636,1698,0,0,1653,'B',500.00,0.00,'7','HDFC','','74593','','0000-00-00','scan','',7932,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 12:53:10','','0000-00-00 00:00:00',0),(8129,0,0,'H','2526','','',8129,0,0,'2025-12-18',6637,4418,0,0,4304,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7933,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-18 13:46:23','','0000-00-00 00:00:00',0),(8130,0,0,'H','2526','','',8130,0,0,'2025-12-18',6588,4390,0,0,4275,'D',-1300.00,0.00,'7','SBI BANK','','36740','','2025-12-18','SCAN ','',7934,'N','N','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-18 14:09:35','','0000-00-00 00:00:00',0),(8131,0,0,'H','2526','','',8131,0,0,'2025-12-18',6588,4390,0,0,4275,'B',800.00,0.00,'7','SBI BANK','','36740','','0000-00-00','scan ','',7935,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-18 14:11:07','','0000-00-00 00:00:00',0),(8132,0,0,'H','2526','','',8132,0,0,'2025-12-18',6637,4418,0,0,4304,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',7936,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-18 14:24:34','','0000-00-00 00:00:00',0),(8133,0,0,'H','2526','','',8133,0,0,'2025-12-18',6638,4419,0,0,4305,'B',1250.00,0.00,'CSH','','','','','0000-00-00','','',7937,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-18 14:45:54','','0000-00-00 00:00:00',0),(8134,0,0,'H','2526','','',8134,0,0,'2025-12-18',6623,3630,0,0,4295,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7938,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-18 14:56:02','','0000-00-00 00:00:00',0),(8135,0,0,'H','2526','','',8135,0,0,'2025-12-18',6640,4421,0,0,4307,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7939,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 16:24:10','','0000-00-00 00:00:00',0),(8136,0,0,'H','2526','','',8136,0,0,'2025-12-18',6639,4420,0,0,4306,'B',900.00,0.00,'7','baroda bank','','85577','','0000-00-00','scan ','',7940,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-18 16:25:41','','0000-00-00 00:00:00',0),(8137,0,0,'H','2526','','',8137,0,0,'2025-12-18',6641,4422,0,0,4308,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7941,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 16:27:32','','0000-00-00 00:00:00',0),(8138,0,0,'H','2526','','',8138,0,0,'2025-12-18',6642,2689,0,0,2623,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7942,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 16:44:13','','0000-00-00 00:00:00',0),(8139,0,0,'H','2526','','',8139,0,0,'2025-12-18',6639,4420,0,0,4306,'B',500.00,0.00,'7','BGGB','','86100','','0000-00-00','scan','',7943,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 17:09:31','','0000-00-00 00:00:00',0),(8140,0,0,'H','2526','','',8140,0,0,'2025-12-18',6643,3787,0,0,3682,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7944,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 17:11:04','','0000-00-00 00:00:00',0),(8141,0,0,'H','2526','','',8141,0,0,'2025-12-18',6644,3842,0,0,3739,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7945,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 17:11:58','','0000-00-00 00:00:00',0),(8142,0,0,'H','2526','','',8142,0,0,'2025-12-18',6645,4008,0,0,3900,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7946,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 17:17:26','','0000-00-00 00:00:00',0),(8143,0,0,'H','2526','','',8143,0,0,'2025-12-18',6646,4423,0,0,4309,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7947,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 17:18:54','','0000-00-00 00:00:00',0),(8144,0,0,'H','2526','','',8144,0,0,'2025-12-18',6641,4422,0,0,4308,'B',6000.00,0.00,'CSH','','','','','0000-00-00','','',7948,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 17:21:00','','0000-00-00 00:00:00',0),(8145,0,0,'H','2526','','',8145,0,0,'2025-12-18',6648,2649,0,0,2589,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7949,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 17:23:13','','0000-00-00 00:00:00',0),(8146,0,0,'H','2526','','',8146,0,0,'2025-12-18',6647,4424,0,0,4310,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7950,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-18 17:23:33','','0000-00-00 00:00:00',0),(8147,0,0,'H','2526','','',8147,0,0,'2025-12-18',6650,915,0,0,883,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7951,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 17:32:40','','0000-00-00 00:00:00',0),(8148,0,0,'H','2526','','',8148,0,0,'2025-12-18',6651,4170,0,0,4064,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7952,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 17:37:30','','0000-00-00 00:00:00',0),(8149,0,0,'H','2526','','',8149,0,0,'2025-12-18',6652,3337,0,0,3254,'B',100.00,0.00,'7','INDUS BANK','','96802','','0000-00-00','scan ','',7953,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 17:39:27','','0000-00-00 00:00:00',0),(8150,0,0,'H','2526','','',8150,0,0,'2025-12-18',6653,4425,0,0,4311,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7954,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 17:41:08','','0000-00-00 00:00:00',0),(8151,0,0,'H','2526','','',8151,0,0,'2025-12-18',6654,3134,0,0,3053,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7955,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 17:41:28','','0000-00-00 00:00:00',0),(8152,0,0,'H','2526','','P',8152,0,0,'2025-12-18',6397,4301,4301,298,0,'A',13000.00,0.00,'CSH','','','','','0000-00-00','','',8224,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-18 17:44:40','riya','2025-12-20 18:26:16',0),(8153,0,0,'H','2526','','',8153,0,0,'2025-12-18',6655,4426,0,0,4312,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7956,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-18 17:46:18','','0000-00-00 00:00:00',0),(8154,0,0,'H','2526','','',8154,0,0,'2025-12-18',6656,4427,0,0,4313,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7957,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 17:47:15','','0000-00-00 00:00:00',0),(8155,0,0,'H','2526','','',8155,0,0,'2025-12-18',6657,2665,0,0,2603,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7958,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-18 17:47:28','','0000-00-00 00:00:00',0),(8156,0,0,'H','2526','','',8156,0,0,'2025-12-18',6646,4423,0,0,4309,'B',4000.00,0.00,'7','HDFC','','66707','','0000-00-00','scan','',7959,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 17:57:01','','0000-00-00 00:00:00',0),(8157,0,0,'H','2526','','',8157,0,0,'2025-12-18',6658,4428,0,0,4314,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7960,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-18 17:58:58','','0000-00-00 00:00:00',0),(8158,0,0,'H','2526','','',8158,0,0,'2025-12-18',6659,4429,0,0,4315,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',7961,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 17:59:01','','0000-00-00 00:00:00',0),(8159,0,0,'H','2526','','',8159,0,0,'2025-12-18',6660,2781,0,0,2710,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',7962,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-18 17:59:26','','0000-00-00 00:00:00',0),(8160,0,0,'H','2526','','',8160,0,0,'2025-12-18',6648,2649,0,0,2589,'D',-500.00,0.00,'CSH','','','','','2025-12-18','','',7963,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 18:00:46','','0000-00-00 00:00:00',0),(8161,0,0,'H','2526','','',8161,0,0,'2025-12-18',6648,2649,0,0,2589,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7964,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 18:02:17','','0000-00-00 00:00:00',0),(8162,0,0,'H','2526','','',8162,0,0,'2025-12-18',6661,4430,0,0,4316,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7965,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 18:04:09','','0000-00-00 00:00:00',0),(8163,0,0,'H','2526','','',8163,0,0,'2025-12-18',6663,1517,0,0,1476,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7966,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 18:05:47','','0000-00-00 00:00:00',0),(8164,0,0,'H','2526','','',8164,0,0,'2025-12-18',6664,4432,0,0,4318,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7967,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-18 18:06:04','','0000-00-00 00:00:00',0),(8165,0,0,'H','2526','','',8165,0,0,'2025-12-18',6665,3345,0,0,4319,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7968,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 18:07:07','','0000-00-00 00:00:00',0),(8166,0,0,'H','2526','','',8166,0,0,'2025-12-18',6666,4433,0,0,4320,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',7969,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-18 18:07:41','','0000-00-00 00:00:00',0),(8167,0,0,'H','2526','','',8167,0,0,'2025-12-18',6667,4434,0,0,4321,'B',700.00,0.00,'7','ICICI BANK','','18409','','0000-00-00','scan ','',7970,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 18:13:38','','0000-00-00 00:00:00',0),(8168,0,0,'H','2526','','',8168,0,0,'2025-12-18',6668,4435,0,0,4322,'B',700.00,0.00,'7','ICICI','','18409','','0000-00-00','scan','',7971,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 18:13:55','','0000-00-00 00:00:00',0),(8169,0,0,'H','2526','','',8169,0,0,'2025-12-18',6669,4436,0,0,4323,'B',700.00,0.00,'7','icici','','18409','','0000-00-00','scan  ','',7972,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-18 18:14:19','','0000-00-00 00:00:00',0),(8170,0,0,'H','2526','','',8170,0,0,'2025-12-18',6670,4437,0,0,4324,'B',700.00,0.00,'7','icici','','18409','','0000-00-00','scan','',7973,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-18 18:14:45','','0000-00-00 00:00:00',0),(8171,0,0,'H','2526','','',8171,0,0,'2025-12-18',6671,4438,0,0,4325,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7974,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 18:16:49','','0000-00-00 00:00:00',0),(8172,0,0,'H','2526','','',8172,0,0,'2025-12-18',6656,4427,0,0,4313,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',7975,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 18:17:39','','0000-00-00 00:00:00',0),(8173,0,0,'H','2526','','',8173,0,0,'2025-12-18',6675,788,0,0,756,'B',400.00,0.00,'7','YES BANK','','32913','','0000-00-00','scan ','',7976,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 18:21:26','','0000-00-00 00:00:00',0),(8174,0,0,'H','2526','','',8174,0,0,'2025-12-18',6674,4439,0,0,4326,'B',400.00,0.00,'7','yes bank','','32913','','0000-00-00','scan  ','',7977,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-18 18:21:30','','0000-00-00 00:00:00',0),(8175,0,0,'H','2526','','',8175,0,0,'2025-12-18',6647,4424,0,0,4310,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7978,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-18 18:21:34','','0000-00-00 00:00:00',0),(8176,0,0,'H','2526','','',8176,0,0,'2025-12-18',6676,4440,0,0,4327,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',7979,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 18:22:02','','0000-00-00 00:00:00',0),(8177,0,0,'H','2526','','',8177,0,0,'2025-12-18',6680,4443,0,0,4330,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7980,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-18 18:25:37','','0000-00-00 00:00:00',0),(8178,0,0,'H','2526','','',8178,0,0,'2025-12-18',6679,4442,0,0,4329,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7981,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-18 18:25:47','','0000-00-00 00:00:00',0),(8179,0,0,'H','2526','','',8179,0,0,'2025-12-18',6678,4441,0,0,4328,'B',750.00,0.00,'7','BANK','','11750','','0000-00-00','scan ','',7982,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 18:26:10','','0000-00-00 00:00:00',0),(8180,0,0,'H','2526','','',8180,0,0,'2025-12-18',6672,3599,0,0,3498,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7983,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-18 18:29:00','','0000-00-00 00:00:00',0),(8181,0,0,'H','2526','','',8181,0,0,'2025-12-18',6681,3202,0,0,3116,'B',500.00,0.00,'7','sbi','','92678','','0000-00-00','scan','',7984,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 18:29:06','','0000-00-00 00:00:00',0),(8182,0,0,'H','2526','','',8182,0,0,'2025-12-18',6682,1842,0,0,1797,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7985,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 18:30:44','','0000-00-00 00:00:00',0),(8183,0,0,'H','2526','','',8183,0,0,'2025-12-18',6683,4444,0,0,4331,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',7986,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 18:32:49','','0000-00-00 00:00:00',0),(8184,0,0,'H','2526','','',8184,0,0,'2025-12-18',6686,856,0,0,825,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7987,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 18:33:49','','0000-00-00 00:00:00',0),(8185,0,0,'H','2526','','',8185,0,0,'2025-12-18',6684,3963,0,0,3854,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7988,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-18 18:35:45','','0000-00-00 00:00:00',0),(8186,0,0,'H','2526','','',8186,0,0,'2025-12-18',6659,4429,0,0,4315,'B',4000.00,0.00,'7','UNION BANK ','','88421','','0000-00-00','scan','',7989,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 18:36:08','','0000-00-00 00:00:00',0),(8187,0,0,'H','2526','','',8187,0,0,'2025-12-18',6688,2666,0,0,2604,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7990,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 18:39:14','','0000-00-00 00:00:00',0),(8188,0,0,'H','2526','','',8188,0,0,'2025-12-18',6685,2996,0,0,2919,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',7991,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-18 18:42:52','','0000-00-00 00:00:00',0),(8189,0,0,'H','2526','','',8189,0,0,'2025-12-18',6690,3683,0,0,3584,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',7992,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 18:44:33','','0000-00-00 00:00:00',0),(8190,0,0,'H','2526','','',8190,0,0,'2025-12-18',6691,1340,0,0,1301,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7993,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 18:45:11','','0000-00-00 00:00:00',0),(8191,0,0,'H','2526','','',8191,0,0,'2025-12-18',6692,2808,0,0,2738,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',7994,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-18 18:52:39','','0000-00-00 00:00:00',0),(8192,0,0,'H','2526','','',8192,0,0,'2025-12-18',6678,4441,0,0,4328,'B',300.00,0.00,'7','BANK','','64117','','0000-00-00','scan ','',7995,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 18:52:56','','0000-00-00 00:00:00',0),(8193,0,0,'H','2526','','',8193,0,0,'2025-12-18',6693,4445,0,0,4332,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',7996,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-18 18:54:24','','0000-00-00 00:00:00',0),(8194,0,0,'H','2526','','',8194,0,0,'2025-12-18',6695,3705,0,0,3605,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',7997,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-18 18:57:33','','0000-00-00 00:00:00',0),(8195,0,0,'H','2526','','',8195,0,0,'2025-12-18',6694,3823,0,0,3722,'B',400.00,0.00,'7','ICICI','','11599','','0000-00-00','scan','',7998,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 18:57:36','','0000-00-00 00:00:00',0),(8196,0,0,'H','2526','','',8196,0,0,'2025-12-18',6680,4443,0,0,4330,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',7999,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-18 18:58:13','','0000-00-00 00:00:00',0),(8197,0,0,'H','2526','','',8197,0,0,'2025-12-18',6696,4446,0,0,4333,'B',900.00,0.00,'CRD','HDFC','96278','96278','','0000-00-00','CARD','',8000,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 19:02:36','','0000-00-00 00:00:00',0),(8198,0,0,'H','2526','','P',8198,0,0,'2025-12-18',6163,4172,4172,284,0,'A',15000.00,0.00,'7','other bank','','13144','','0000-00-00','','',8093,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-18 19:13:17','riya','2025-12-19 14:49:10',0),(8199,0,0,'H','2526','','',8199,0,0,'2025-12-18',6697,4447,0,0,4334,'B',1800.00,0.00,'7','UJJIVAN SMALL','','41499','','0000-00-00','SCAN','',8001,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-18 19:14:46','','0000-00-00 00:00:00',0),(8200,0,0,'H','2526','','',8200,0,0,'2025-12-18',6693,4445,0,0,4332,'D',-400.00,0.00,'CSH','','','','','2025-12-18','','',8002,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 19:21:49','','0000-00-00 00:00:00',0),(8201,0,0,'H','2526','','',8201,0,0,'2025-12-18',6700,4415,0,0,4300,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',8003,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-18 19:22:06','','0000-00-00 00:00:00',0),(8202,0,0,'H','2526','','',8202,0,0,'2025-12-18',6693,4445,0,0,4332,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',8004,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 19:23:07','','0000-00-00 00:00:00',0),(8203,0,0,'H','2526','','',8203,0,0,'2025-12-18',6701,4450,0,0,4337,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8005,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-18 19:24:42','','0000-00-00 00:00:00',0),(8204,0,0,'H','2526','','',8204,0,0,'2025-12-18',6704,1705,0,0,1660,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8006,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 19:38:59','','0000-00-00 00:00:00',0),(8205,0,0,'H','2526','','',8205,0,0,'2025-12-18',6705,4451,0,0,4338,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8007,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-18 19:49:04','','0000-00-00 00:00:00',0),(8206,0,0,'H','2526','','P',8206,0,0,'2025-12-18',6706,4452,4452,305,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',8346,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-18 20:02:17','riya','2025-12-22 16:44:43',0),(8207,0,0,'H','2526','','',8207,0,0,'2025-12-18',6656,4427,0,0,4313,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8008,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-18 20:16:47','','0000-00-00 00:00:00',0),(8208,0,0,'H','2526','','',8208,0,0,'2025-12-18',6610,4383,0,303,4268,'D',-1400.00,0.00,'CSH','','','','','0000-00-00','','',8010,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-18 20:28:18','','0000-00-00 00:00:00',0),(8209,0,0,'H','2526','','P',8209,0,0,'2025-12-18',6447,4323,4323,299,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',8154,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-18 22:00:32','vishal','2025-12-19 19:24:32',0),(8210,0,0,'H','2526','','',8210,0,0,'2025-12-19',6708,4454,0,0,4339,'B',1600.00,0.00,'CSH','','','','','0000-00-00','','',8011,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 08:53:32','','0000-00-00 00:00:00',0),(8211,0,0,'H','2526','','',8211,0,0,'2025-12-19',6709,2720,0,0,2650,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8012,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 09:25:09','','0000-00-00 00:00:00',0),(8212,0,0,'H','2526','','',8212,0,0,'2025-12-19',6710,1798,0,0,1752,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8013,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 09:48:33','','0000-00-00 00:00:00',0),(8213,0,0,'H','2526','','',8213,0,0,'2025-12-19',6711,1797,0,0,1751,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8014,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 09:49:17','','0000-00-00 00:00:00',0),(8214,0,0,'H','2526','','',8214,0,0,'2025-12-19',6713,4455,0,0,4340,'B',500.00,0.00,'7','kotak','','20945','','0000-00-00','scan','',8015,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 10:13:09','','0000-00-00 00:00:00',0),(8215,0,0,'H','2526','','',8215,0,0,'2025-12-19',6714,4456,0,0,4341,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8016,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 10:15:30','','0000-00-00 00:00:00',0),(8216,0,0,'H','2526','','P',8216,0,0,'2025-12-19',6707,4453,4453,306,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',8161,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-19 10:15:34','vishal','2025-12-19 20:36:48',0),(8217,0,0,'H','2526','','',8217,0,0,'2025-12-19',6715,3877,0,0,3773,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8017,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 10:16:18','','0000-00-00 00:00:00',0),(8218,0,0,'H','2526','','',8218,0,0,'2025-12-19',6716,3222,0,0,3136,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8018,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 10:20:10','','0000-00-00 00:00:00',0),(8219,0,0,'H','2526','','',8219,0,0,'2025-12-19',6717,4457,0,0,4342,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8019,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 10:25:55','','0000-00-00 00:00:00',0),(8220,0,0,'H','2526','','',8220,0,0,'2025-12-19',6718,4458,0,0,4343,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8020,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 10:29:45','','0000-00-00 00:00:00',0),(8221,0,0,'H','2526','','',8221,0,0,'2025-12-19',6719,4459,0,0,4344,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8021,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 10:31:45','','0000-00-00 00:00:00',0),(8222,0,0,'H','2526','','',8222,0,0,'2025-12-19',6720,2789,0,0,2718,'B',500.00,0.00,'7','hdfc','','97672','','0000-00-00','scan','',8022,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 10:38:36','','0000-00-00 00:00:00',0),(8223,0,0,'H','2526','','',8223,0,0,'2025-12-19',6722,4461,0,0,4346,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',8023,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 10:42:22','','0000-00-00 00:00:00',0),(8224,0,0,'H','2526','','',8224,0,0,'2025-12-19',6721,4460,0,0,4345,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8024,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 10:42:25','','0000-00-00 00:00:00',0),(8225,0,0,'H','2526','','',8225,0,0,'2025-12-19',6725,4462,0,0,4347,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8025,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 10:46:03','','0000-00-00 00:00:00',0),(8226,0,0,'H','2526','','',8226,0,0,'2025-12-19',6724,1055,0,0,1021,'B',500.00,0.00,'7','union bank','','10735','','0000-00-00','scan','',8026,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 10:46:15','','0000-00-00 00:00:00',0),(8227,0,0,'H','2526','','',8227,0,0,'2025-12-19',6723,1056,0,0,1022,'B',500.00,0.00,'7','union bank','','10735','','0000-00-00','scan','',8027,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 10:47:00','','0000-00-00 00:00:00',0),(8228,0,0,'H','2526','','',8228,0,0,'2025-12-19',6726,329,0,0,313,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8028,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-19 10:47:05','','0000-00-00 00:00:00',0),(8229,0,0,'H','2526','','',8229,0,0,'2025-12-19',6728,3989,0,0,3880,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8029,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 10:50:33','','0000-00-00 00:00:00',0),(8230,0,0,'H','2526','','',8230,0,0,'2025-12-19',6727,4463,0,0,4348,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',8030,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 10:50:47','','0000-00-00 00:00:00',0),(8231,0,0,'H','2526','','',8231,0,0,'2025-12-19',6729,2045,0,0,1994,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8031,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 10:53:22','','0000-00-00 00:00:00',0),(8232,0,0,'H','2526','','',8232,0,0,'2025-12-19',6730,4464,0,0,4349,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8032,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 10:57:01','','0000-00-00 00:00:00',0),(8233,0,0,'H','2526','','',8233,0,0,'2025-12-19',6732,1898,0,0,1852,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8033,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 10:57:53','','0000-00-00 00:00:00',0),(8234,0,0,'H','2526','','',8234,0,0,'2025-12-19',6731,4314,0,0,4200,'B',400.00,0.00,'7','BOB BANK','','33933','','0000-00-00','scan ','',8034,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 10:57:53','','0000-00-00 00:00:00',0),(8235,0,0,'H','2526','','',8235,0,0,'2025-12-19',6733,2226,0,0,2171,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8035,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 11:04:09','','0000-00-00 00:00:00',0),(8236,0,0,'H','2526','','',8236,0,0,'2025-12-19',6734,4465,0,0,4350,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8036,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 11:09:14','','0000-00-00 00:00:00',0),(8237,0,0,'H','2526','','',8237,0,0,'2025-12-19',6735,1983,0,0,1935,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8037,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 11:11:59','','0000-00-00 00:00:00',0),(8238,0,0,'H','2526','','',8238,0,0,'2025-12-19',6719,4459,0,0,4344,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8038,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-19 11:13:27','','0000-00-00 00:00:00',0),(8239,0,0,'H','2526','','',8239,0,0,'2025-12-19',6738,4076,0,0,3969,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8039,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-19 11:14:23','','0000-00-00 00:00:00',0),(8240,0,0,'H','2526','','',8240,0,0,'2025-12-19',6736,4466,0,0,4351,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8040,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 11:15:15','','0000-00-00 00:00:00',0),(8241,0,0,'H','2526','','',8241,0,0,'2025-12-19',6721,4460,0,0,4345,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',8041,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 11:18:10','','0000-00-00 00:00:00',0),(8242,0,0,'H','2526','','',8242,0,0,'2025-12-19',6732,1898,0,0,1852,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8042,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 11:22:05','','0000-00-00 00:00:00',0),(8243,0,0,'H','2526','','',8243,0,0,'2025-12-19',6739,4468,0,0,4352,'B',1250.00,0.00,'CSH','','','','','0000-00-00','','',8043,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 11:22:11','','0000-00-00 00:00:00',0),(8244,0,0,'H','2526','','',8244,0,0,'2025-12-19',6738,4076,0,0,3969,'D',-300.00,0.00,'CSH','','','','','2025-12-19','','',8044,'N','N','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-19 11:23:57','','0000-00-00 00:00:00',0),(8245,0,0,'H','2526','','',8245,0,0,'2025-12-19',6740,4469,0,0,4353,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',8045,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 11:24:26','','0000-00-00 00:00:00',0),(8246,0,0,'H','2526','','',8246,0,0,'2025-12-19',6742,4470,0,0,4354,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',8046,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-19 11:25:49','','0000-00-00 00:00:00',0),(8247,0,0,'H','2526','','',8247,0,0,'2025-12-19',6744,9,0,0,9,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8047,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-19 11:27:11','','0000-00-00 00:00:00',0),(8248,0,0,'H','2526','','',8248,0,0,'2025-12-19',6743,4471,0,0,4355,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',8048,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 11:27:21','','0000-00-00 00:00:00',0),(8249,0,0,'H','2526','','',8249,0,0,'2025-12-19',6741,3260,0,0,3174,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8049,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 11:28:49','','0000-00-00 00:00:00',0),(8250,0,0,'H','2526','','',8250,0,0,'2025-12-19',6745,4472,0,0,4356,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8050,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 11:31:11','','0000-00-00 00:00:00',0),(8251,0,0,'H','2526','','',8251,0,0,'2025-12-19',6746,3751,0,0,3648,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8051,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 11:32:15','','0000-00-00 00:00:00',0),(8252,0,0,'H','2526','','',8252,0,0,'2025-12-19',6747,3731,0,0,3628,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8052,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 11:32:54','','0000-00-00 00:00:00',0),(8253,0,0,'H','2526','','',8253,0,0,'2025-12-19',6714,4456,0,0,4341,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',8053,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 11:35:08','','0000-00-00 00:00:00',0),(8254,0,0,'H','2526','','',8254,0,0,'2025-12-19',6748,2624,0,0,2564,'B',500.00,0.00,'7','sbi','','28543','','0000-00-00','scan','',8054,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 11:36:54','','0000-00-00 00:00:00',0),(8255,0,0,'H','2526','','',8255,0,0,'2025-12-19',6750,4474,0,0,4358,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8055,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 11:39:04','','0000-00-00 00:00:00',0),(8256,0,0,'H','2526','','',8256,0,0,'2025-12-19',6751,1071,0,0,1037,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8056,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 11:42:07','','0000-00-00 00:00:00',0),(8257,0,0,'H','2526','','',8257,0,0,'2025-12-19',6752,3013,0,0,2936,'B',300.00,0.00,'7','sbi','','49121','','0000-00-00','scan ','',8057,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-19 11:44:28','','0000-00-00 00:00:00',0),(8258,0,0,'H','2526','','',8258,0,0,'2025-12-19',6730,4464,0,0,4349,'B',5600.00,0.00,'CSH','','','','','0000-00-00','','',8058,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 11:46:40','','0000-00-00 00:00:00',0),(8259,0,0,'H','2526','','',8259,0,0,'2025-12-19',6754,4475,0,0,4359,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8059,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-19 11:47:24','','0000-00-00 00:00:00',0),(8260,0,0,'H','2526','','',8260,0,0,'2025-12-19',6755,2902,0,0,2830,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8060,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 11:48:03','','0000-00-00 00:00:00',0),(8261,0,0,'H','2526','','',8261,0,0,'2025-12-19',6753,2814,0,0,2744,'B',500.00,0.00,'7','KOTAK BANK','','26591','','0000-00-00','scan ','',8061,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 11:48:08','','0000-00-00 00:00:00',0),(8262,0,0,'H','2526','','',8262,0,0,'2025-12-19',6756,3731,0,0,4360,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8062,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-19 11:48:33','','0000-00-00 00:00:00',0),(8263,0,0,'H','2526','','',8263,0,0,'2025-12-19',6757,4476,0,0,4361,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',8063,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 11:50:43','','0000-00-00 00:00:00',0),(8264,0,0,'H','2526','','',8264,0,0,'2025-12-19',6758,2233,0,0,2178,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8064,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 11:52:52','','0000-00-00 00:00:00',0),(8265,0,0,'H','2526','','',8265,0,0,'2025-12-19',6718,4458,0,0,4343,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',8065,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 11:54:48','','0000-00-00 00:00:00',0),(8266,0,0,'H','2526','','',8266,0,0,'2025-12-19',6760,4478,0,0,4363,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8066,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 11:56:04','','0000-00-00 00:00:00',0),(8267,0,0,'H','2526','','',8267,0,0,'2025-12-19',6759,4477,0,0,4362,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8067,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-19 11:56:07','','0000-00-00 00:00:00',0),(8268,0,0,'H','2526','','',8268,0,0,'2025-12-19',6761,925,0,0,893,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8068,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-19 11:56:55','','0000-00-00 00:00:00',0),(8269,0,0,'H','2526','','',8269,0,0,'2025-12-19',6762,4479,0,0,4364,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8069,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 11:58:57','','0000-00-00 00:00:00',0),(8270,0,0,'H','2526','','',8270,0,0,'2025-12-19',6763,4480,0,0,4365,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8070,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-19 12:01:29','','0000-00-00 00:00:00',0),(8271,0,0,'H','2526','','',8271,0,0,'2025-12-19',6728,3989,0,0,3880,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8071,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 12:13:50','','0000-00-00 00:00:00',0),(8272,0,0,'H','2526','','',8272,0,0,'2025-12-19',6765,4481,0,0,4366,'B',900.00,0.00,'7','boi','','55851','','0000-00-00','scan','',8072,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 12:16:40','','0000-00-00 00:00:00',0),(8273,0,0,'H','2526','','',8273,0,0,'2025-12-19',6766,4482,0,0,4367,'B',500.00,0.00,'7','sbi','','63922','','0000-00-00','scan     ','',8073,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-19 12:22:11','','0000-00-00 00:00:00',0),(8274,0,0,'H','2526','','',8274,0,0,'2025-12-19',6767,4483,0,0,4368,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8074,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 12:23:53','','0000-00-00 00:00:00',0),(8275,0,0,'H','2526','','',8275,0,0,'2025-12-19',6768,2792,0,0,2721,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8075,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 12:25:57','','0000-00-00 00:00:00',0),(8276,0,0,'H','2526','','',8276,0,0,'2025-12-19',6770,4485,0,0,4369,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8076,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 12:28:39','','0000-00-00 00:00:00',0),(8277,0,0,'H','2526','','',8277,0,0,'2025-12-19',6771,3777,0,0,3673,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8077,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-19 12:29:24','','0000-00-00 00:00:00',0),(8278,0,0,'H','2526','','P',8278,0,0,'2025-12-19',6769,4484,4484,309,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-19 12:31:16','riya','2025-12-19 12:31:16',0),(8279,0,0,'H','2526','','',8279,0,0,'2025-12-19',6745,4472,0,0,4356,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',8078,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 12:33:00','','0000-00-00 00:00:00',0),(8280,0,0,'H','2526','','P',8280,0,0,'2025-12-19',6712,2808,2808,307,0,'A',3000.00,0.00,'CSH','','','','','0000-00-00','','',8156,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-19 12:38:40','vishal','2025-12-19 19:42:15',0),(8281,0,0,'H','2526','','',8281,0,0,'2025-12-19',6713,4455,0,0,4340,'B',3000.00,0.00,'7','kotak','','31405','','0000-00-00','scan ','',8079,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-19 12:40:09','','0000-00-00 00:00:00',0),(8282,0,0,'H','2526','','',8282,0,0,'2025-12-19',6772,4486,0,0,4370,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8080,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 12:42:48','','0000-00-00 00:00:00',0),(8283,0,0,'H','2526','','',8283,0,0,'2025-12-19',6773,4487,0,0,4371,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8081,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 12:43:54','','0000-00-00 00:00:00',0),(8284,0,0,'H','2526','','',8284,0,0,'2025-12-19',6774,4488,0,0,4372,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8082,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 12:49:01','','0000-00-00 00:00:00',0),(8285,0,0,'H','2526','','',8285,0,0,'2025-12-19',6775,4489,0,0,4373,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',8083,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 12:53:42','','0000-00-00 00:00:00',0),(8286,0,0,'H','2526','','',8286,0,0,'2025-12-19',6775,4489,0,0,4373,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8084,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 12:58:33','','0000-00-00 00:00:00',0),(8287,0,0,'H','2526','','',8287,0,0,'2025-12-19',6746,3751,0,0,3648,'B',3500.00,0.00,'CSH','','','','','0000-00-00','','',8085,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 13:03:00','','0000-00-00 00:00:00',0),(8288,0,0,'H','2526','','',8288,0,0,'2025-12-19',6774,4488,0,0,4372,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8086,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 13:03:15','','0000-00-00 00:00:00',0),(8289,0,0,'H','2526','','',8289,0,0,'2025-12-19',6767,4483,0,0,4368,'D',-900.00,0.00,'CSH','','','','','2025-12-19','','',8087,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 13:15:11','','0000-00-00 00:00:00',0),(8290,0,0,'H','2526','','',8290,0,0,'2025-12-19',6776,2638,0,0,2577,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8088,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 13:21:31','','0000-00-00 00:00:00',0),(8291,0,0,'H','2526','','',8291,0,0,'2025-12-19',6772,4486,0,0,4370,'B',1400.00,0.00,'CSH','','','','','0000-00-00','','',8089,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-19 13:23:26','','0000-00-00 00:00:00',0),(8292,0,0,'H','2526','','P',8292,0,0,'2025-12-19',5120,3601,3601,243,0,'A',50000.00,0.00,'7','KOTAK ','','737922','','0000-00-00','SCAN','',8441,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-19 13:31:42','vishal','2025-12-22 21:57:17',0),(8293,0,0,'H','2526','','',8293,0,0,'2025-12-19',6773,4487,0,0,4371,'B',4200.00,0.00,'CSH','','','','','0000-00-00','','',8090,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 14:06:03','','0000-00-00 00:00:00',0),(8294,0,0,'H','2526','','',8294,0,0,'2025-12-19',6778,1316,0,0,1277,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8092,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 14:26:54','','0000-00-00 00:00:00',0),(8295,0,0,'H','2526','','P',8295,0,0,'2025-12-19',6163,4172,4172,284,0,'A',4000.00,0.00,'7','CO OPERative','','005644','','0000-00-00','','',8093,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-19 14:48:31','riya','2025-12-19 14:49:10',0),(8296,0,0,'H','2526','','',8296,0,0,'2025-12-19',6779,2618,0,0,2558,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8094,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-19 15:44:30','','0000-00-00 00:00:00',0),(8297,0,0,'H','2526','','P',8297,0,0,'2025-12-19',6780,4490,4490,310,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',8521,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-19 15:57:23','riya','2025-12-23 13:53:00',0),(8298,0,0,'H','2526','','',8298,0,0,'2025-12-19',6781,4491,0,0,4374,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8095,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 16:17:00','','0000-00-00 00:00:00',0),(8299,0,0,'H','2526','','',8299,0,0,'2025-12-19',6783,4493,0,0,4376,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8096,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 16:31:24','','0000-00-00 00:00:00',0),(8300,0,0,'H','2526','','',8300,0,0,'2025-12-19',6785,4485,0,0,4369,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',8097,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 16:40:53','','0000-00-00 00:00:00',0),(8301,0,0,'H','2526','','',8301,0,0,'2025-12-19',6786,897,0,0,865,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8098,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 16:47:25','','0000-00-00 00:00:00',0),(8302,0,0,'H','2526','','',8302,0,0,'2025-12-19',6787,4494,0,0,4377,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8099,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-19 16:48:07','','0000-00-00 00:00:00',0),(8303,0,0,'H','2526','','',8303,0,0,'2025-12-19',6788,3918,0,0,3812,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8100,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 16:51:52','','0000-00-00 00:00:00',0),(8304,0,0,'H','2526','','',8304,0,0,'2025-12-19',6790,3893,0,0,3789,'B',500.00,0.00,'7','sbi','','60143','','0000-00-00','scan','',8101,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 16:56:09','','0000-00-00 00:00:00',0),(8305,0,0,'H','2526','','',8305,0,0,'2025-12-19',6792,2695,0,0,2627,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8102,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 17:03:16','','0000-00-00 00:00:00',0),(8306,0,0,'H','2526','','',8306,0,0,'2025-12-19',6793,4495,0,0,4378,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',8103,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 17:10:43','','0000-00-00 00:00:00',0),(8307,0,0,'H','2526','','',8307,0,0,'2025-12-19',6795,4497,0,0,4380,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8104,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-19 17:15:03','','0000-00-00 00:00:00',0),(8308,0,0,'H','2526','','',8308,0,0,'2025-12-19',6796,3874,0,0,3770,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8105,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 17:16:36','','0000-00-00 00:00:00',0),(8309,0,0,'H','2526','','',8309,0,0,'2025-12-19',6797,1811,0,0,1765,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8106,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 17:20:18','','0000-00-00 00:00:00',0),(8310,0,0,'H','2526','','',8310,0,0,'2025-12-19',6799,3919,0,0,3813,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8107,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 17:26:50','','0000-00-00 00:00:00',0),(8311,0,0,'H','2526','','',8311,0,0,'2025-12-19',6787,4494,0,0,4377,'B',2000.00,0.00,'7','hdfc','','00423','','0000-00-00','scan','',8108,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 17:35:32','','0000-00-00 00:00:00',0),(8312,0,0,'H','2526','','',8312,0,0,'2025-12-19',6787,4494,0,0,4377,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',8109,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 17:36:27','','0000-00-00 00:00:00',0),(8313,0,0,'H','2526','','',8313,0,0,'2025-12-19',6800,475,0,0,449,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8110,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 17:37:58','','0000-00-00 00:00:00',0),(8314,0,0,'H','2526','','',8314,0,0,'2025-12-19',6801,392,0,0,2393,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8111,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 17:43:25','','0000-00-00 00:00:00',0),(8315,0,0,'H','2526','','',8315,0,0,'2025-12-19',6798,4498,0,0,4381,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',8112,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-19 17:46:30','','0000-00-00 00:00:00',0),(8316,0,0,'H','2526','','',8316,0,0,'2025-12-19',6804,4500,0,0,4383,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8113,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 17:49:33','','0000-00-00 00:00:00',0),(8317,0,0,'H','2526','','',8317,0,0,'2025-12-19',6805,2726,0,0,2656,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8114,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 17:51:16','','0000-00-00 00:00:00',0),(8318,0,0,'H','2526','','',8318,0,0,'2025-12-19',6807,4502,0,0,4385,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8115,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 17:53:55','','0000-00-00 00:00:00',0),(8319,0,0,'H','2526','','',8319,0,0,'2025-12-19',6806,4501,0,0,4384,'B',750.00,0.00,'CRD','BANK','','39','','0000-00-00','CARD','',8116,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 17:55:26','','0000-00-00 00:00:00',0),(8320,0,0,'H','2526','','',8320,0,0,'2025-12-19',6809,4504,0,0,4387,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8117,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 18:00:44','','0000-00-00 00:00:00',0),(8321,0,0,'H','2526','','',8321,0,0,'2025-12-19',6808,4503,0,0,4386,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8118,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 18:00:57','','0000-00-00 00:00:00',0),(8322,0,0,'H','2526','','',8322,0,0,'2025-12-19',6783,4493,0,0,4376,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',8119,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 18:02:26','','0000-00-00 00:00:00',0),(8323,0,0,'H','2526','','',8323,0,0,'2025-12-19',6810,1369,0,0,1329,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8120,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-19 18:07:06','','0000-00-00 00:00:00',0),(8324,0,0,'H','2526','','',8324,0,0,'2025-12-19',6811,2753,0,0,2684,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8121,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-19 18:07:43','','0000-00-00 00:00:00',0),(8325,0,0,'H','2526','','',8325,0,0,'2025-12-19',6781,4491,0,0,4374,'B',4600.00,0.00,'7','hdfc','','87379','','0000-00-00','scan','',8122,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 18:07:51','','0000-00-00 00:00:00',0),(8326,0,0,'H','2526','','',8326,0,0,'2025-12-19',6812,3880,0,0,3776,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8123,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 18:10:40','','0000-00-00 00:00:00',0),(8327,0,0,'H','2526','','',8327,0,0,'2025-12-19',6813,4017,0,0,3908,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8124,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 18:19:11','','0000-00-00 00:00:00',0),(8328,0,0,'H','2526','','',8328,0,0,'2025-12-19',6814,4505,0,0,4388,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',8125,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 18:23:01','','0000-00-00 00:00:00',0),(8329,0,0,'H','2526','','',8329,0,0,'2025-12-19',6815,3411,0,0,3319,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8126,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-19 18:24:35','','0000-00-00 00:00:00',0),(8330,0,0,'H','2526','','',8330,0,0,'2025-12-19',6816,3267,0,0,3181,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8127,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 18:25:59','','0000-00-00 00:00:00',0),(8331,0,0,'H','2526','','',8331,0,0,'2025-12-19',6803,4187,0,0,4078,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8128,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-19 18:26:49','','0000-00-00 00:00:00',0),(8332,0,0,'H','2526','','',8332,0,0,'2025-12-19',6817,3996,0,0,3887,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8129,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 18:29:16','','0000-00-00 00:00:00',0),(8333,0,0,'H','2526','','',8333,0,0,'2025-12-19',6819,234,0,0,221,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8130,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 18:32:53','','0000-00-00 00:00:00',0),(8334,0,0,'H','2526','','',8334,0,0,'2025-12-19',6820,3342,0,0,3259,'B',100.00,0.00,'7','rnsb','','64628','','0000-00-00','scan     ','',8131,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-19 18:34:42','','0000-00-00 00:00:00',0),(8335,0,0,'H','2526','','',8335,0,0,'2025-12-19',6821,257,0,0,242,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8132,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 18:34:54','','0000-00-00 00:00:00',0),(8336,0,0,'H','2526','','',8336,0,0,'2025-12-19',6823,4506,0,0,4389,'B',400.00,0.00,'7','sbi','','79285','','0000-00-00','scan     ','',8133,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-19 18:37:09','','0000-00-00 00:00:00',0),(8337,0,0,'H','2526','','',8337,0,0,'2025-12-19',6824,4507,0,0,4390,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8134,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-19 18:37:47','','0000-00-00 00:00:00',0),(8338,0,0,'H','2526','','',8338,0,0,'2025-12-19',6807,4502,0,0,4385,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',8135,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 18:38:09','','0000-00-00 00:00:00',0),(8339,0,0,'H','2526','','',8339,0,0,'2025-12-19',6825,4508,0,0,4391,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8136,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 18:38:42','','0000-00-00 00:00:00',0),(8340,0,0,'H','2526','','',8340,0,0,'2025-12-19',6826,4175,0,0,4065,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8137,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-19 18:43:33','','0000-00-00 00:00:00',0),(8341,0,0,'H','2526','','',8341,0,0,'2025-12-19',6827,1110,0,0,1070,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8138,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-19 18:46:53','','0000-00-00 00:00:00',0),(8342,0,0,'H','2526','','',8342,0,0,'2025-12-19',6828,3957,0,0,3848,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8139,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 18:47:18','','0000-00-00 00:00:00',0),(8343,0,0,'H','2526','','',8343,0,0,'2025-12-19',6829,1083,0,0,1049,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8140,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 18:50:27','','0000-00-00 00:00:00',0),(8344,0,0,'H','2526','','',8344,0,0,'2025-12-19',6832,3274,0,0,3188,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8141,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 18:52:22','','0000-00-00 00:00:00',0),(8345,0,0,'H','2526','','',8345,0,0,'2025-12-19',6833,4509,0,0,4392,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8142,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-19 18:53:51','','0000-00-00 00:00:00',0),(8346,0,0,'H','2526','','',8346,0,0,'2025-12-19',6834,4510,0,0,4393,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8143,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-19 18:53:57','','0000-00-00 00:00:00',0),(8347,0,0,'H','2526','','',8347,0,0,'2025-12-19',6804,4500,0,0,4383,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',8144,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 18:55:08','','0000-00-00 00:00:00',0),(8348,0,0,'H','2526','','',8348,0,0,'2025-12-19',6830,4447,0,0,4334,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8145,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-19 18:55:55','','0000-00-00 00:00:00',0),(8349,0,0,'H','2526','','',8349,0,0,'2025-12-19',6835,3399,0,0,3310,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8146,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-19 18:58:35','','0000-00-00 00:00:00',0),(8350,0,0,'H','2526','','',8350,0,0,'2025-12-19',6822,3575,0,0,3476,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8147,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 18:58:47','','0000-00-00 00:00:00',0),(8351,0,0,'H','2526','','',8351,0,0,'2025-12-19',6836,4511,0,0,4394,'B',750.00,0.00,'7','sbi','','57759','','0000-00-00','scan','',8148,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 19:01:18','','0000-00-00 00:00:00',0),(8352,0,0,'H','2526','','',8352,0,0,'2025-12-19',6837,4512,0,0,4395,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',8149,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-19 19:02:49','','0000-00-00 00:00:00',0),(8353,0,0,'H','2526','','',8353,0,0,'2025-12-19',6839,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8150,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 19:10:15','','0000-00-00 00:00:00',0),(8354,0,0,'H','2526','','',8354,0,0,'2025-12-19',6840,4514,0,0,4397,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8151,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-19 19:14:48','','0000-00-00 00:00:00',0),(8355,0,0,'H','2526','','',8355,0,0,'2025-12-19',6841,3473,0,0,3378,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8153,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-19 19:20:47','','0000-00-00 00:00:00',0),(8356,0,0,'H','2526','','P',8356,0,0,'2025-12-19',6447,4323,4323,299,0,'A',3400.00,0.00,'CSH','','','','','0000-00-00','','',8154,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-19 19:24:19','vishal','2025-12-19 19:24:32',0),(8357,0,0,'H','2526','','P',8357,0,0,'2025-12-19',6712,2808,2808,307,0,'A',2200.00,0.00,'CSH','','','','','0000-00-00','','',8156,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-19 19:42:00','vishal','2025-12-19 19:42:15',0),(8358,0,0,'H','2526','','',8358,0,0,'2025-12-19',6838,4513,0,0,4396,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8157,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 19:45:29','','0000-00-00 00:00:00',0),(8359,0,0,'H','2526','','',8359,0,0,'2025-12-19',6809,4504,0,0,4387,'B',1800.00,0.00,'7','bob','','25330','','0000-00-00','scan','',8158,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 19:52:56','','0000-00-00 00:00:00',0),(8360,0,0,'H','2526','','',8360,0,0,'2025-12-19',6838,4513,0,0,4396,'B',500.00,0.00,'CRD','kotak','11859','11859','','0000-00-00','card','',8159,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-19 20:03:41','','0000-00-00 00:00:00',0),(8361,0,0,'H','2526','','P',8361,0,0,'2025-12-19',6707,4453,4453,306,0,'A',600.00,0.00,'7','icici bank','','10017','','0000-00-00','','',8161,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-19 20:36:29','vishal','2025-12-19 20:36:48',0),(8362,0,0,'H','2526','','P',8362,0,0,'2025-12-19',6843,4515,4515,311,0,'A',8000.00,0.00,'7','icici bank','','9033','','0000-00-00','','',8440,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-19 22:35:43','vishal','2025-12-22 21:20:44',0),(8363,0,0,'H','2526','','',8363,0,0,'2025-12-20',6844,3961,0,0,3852,'B',1500.00,0.00,'7','BOB BANK','','78164','','0000-00-00','scan ','',8162,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-20 08:48:40','','0000-00-00 00:00:00',0),(8364,0,0,'H','2526','','',8364,0,0,'2025-12-20',6845,4516,0,0,4398,'B',1200.00,0.00,'CSH','','','','','0000-00-00','','',8163,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-20 08:50:53','','0000-00-00 00:00:00',0),(8365,0,0,'H','2526','','P',8365,0,0,'2025-12-20',6613,4405,4405,304,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',8218,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-20 09:41:16','riya','2025-12-20 14:23:20',0),(8366,0,0,'H','2526','','',8366,0,0,'2025-12-20',6846,2749,0,0,2680,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8164,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-20 09:42:45','','0000-00-00 00:00:00',0),(8367,0,0,'H','2526','','',8367,0,0,'2025-12-20',6847,4517,0,0,4399,'B',500.00,0.00,'7','SBI','','36145','','0000-00-00','SCAN','',8165,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-20 10:20:47','','0000-00-00 00:00:00',0),(8368,0,0,'H','2526','','',8368,0,0,'2025-12-20',6848,3232,0,0,3146,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8166,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-20 10:26:29','','0000-00-00 00:00:00',0),(8369,0,0,'H','2526','','',8369,0,0,'2025-12-20',6850,4518,0,0,4400,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',8167,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-20 10:35:06','','0000-00-00 00:00:00',0),(8370,0,0,'H','2526','','P',8370,0,0,'2025-12-20',6576,4384,4384,302,0,'A',10000.00,0.00,'7','sbi','','118003','','0000-00-00','','',8213,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-20 10:52:47','riya','2025-12-20 13:41:47',0),(8371,0,0,'H','2526','','',8371,0,0,'2025-12-20',6849,3394,0,0,3305,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8168,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-20 10:55:35','','0000-00-00 00:00:00',0),(8372,0,0,'H','2526','','',8372,0,0,'2025-12-20',6852,4519,0,0,4401,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8169,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-20 11:01:29','','0000-00-00 00:00:00',0),(8373,0,0,'H','2526','','',8373,0,0,'2025-12-20',6853,4520,0,0,4402,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',8170,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-20 11:02:36','','0000-00-00 00:00:00',0),(8374,0,0,'H','2526','','P',8374,0,0,'2025-12-20',4017,2937,2937,187,0,'A',40000.00,0.00,'7','boi','','519049','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-20 11:04:36','riya','2025-12-20 11:04:36',0),(8375,0,0,'H','2526','','',8375,0,0,'2025-12-20',6855,4522,0,0,4404,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8171,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-20 11:10:37','','0000-00-00 00:00:00',0),(8376,0,0,'H','2526','','',8376,0,0,'2025-12-20',6856,4523,0,0,4405,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8172,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-20 11:12:10','','0000-00-00 00:00:00',0),(8377,0,0,'H','2526','','',8377,0,0,'2025-12-20',6854,4521,0,0,4403,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8173,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-20 11:15:19','','0000-00-00 00:00:00',0),(8378,0,0,'H','2526','','',8378,0,0,'2025-12-20',6858,4524,0,0,4406,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8174,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-20 11:16:08','','0000-00-00 00:00:00',0),(8379,0,0,'H','2526','','',8379,0,0,'2025-12-20',6855,4522,0,0,4404,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',8175,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-20 11:18:17','','0000-00-00 00:00:00',0),(8380,0,0,'H','2526','','',8380,0,0,'2025-12-20',6847,4517,0,0,4399,'B',400.00,0.00,'7','SBI','','34487','','0000-00-00','SCAN','',8176,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-20 11:21:24','','0000-00-00 00:00:00',0),(8381,0,0,'H','2526','','P',8381,0,0,'2025-12-20',6780,4490,4490,310,0,'A',5000.00,0.00,'CSH','','','','','0000-00-00','','',8521,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-20 11:22:30','riya','2025-12-23 13:53:00',0),(8382,0,0,'H','2526','','',8382,0,0,'2025-12-20',6850,4518,0,0,4400,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8177,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-20 11:26:49','','0000-00-00 00:00:00',0),(8383,0,0,'H','2526','','',8383,0,0,'2025-12-20',6861,4525,0,0,4407,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8178,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-20 11:28:04','','0000-00-00 00:00:00',0),(8384,0,0,'H','2526','','',8384,0,0,'2025-12-20',6853,4520,0,0,4402,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8179,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-20 11:30:29','','0000-00-00 00:00:00',0),(8385,0,0,'H','2526','','',8385,0,0,'2025-12-20',6862,266,0,0,251,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8180,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-20 11:30:53','','0000-00-00 00:00:00',0),(8386,0,0,'H','2526','','',8386,0,0,'2025-12-20',6851,4154,0,0,4047,'B',400.00,0.00,'7','KOTAK BANK','','24493','','0000-00-00','scan ','',8181,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-20 11:36:50','','0000-00-00 00:00:00',0),(8387,0,0,'H','2526','','',8387,0,0,'2025-12-20',6863,4526,0,0,4408,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8182,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-20 11:38:48','','0000-00-00 00:00:00',0),(8388,0,0,'H','2526','','',8388,0,0,'2025-12-20',6864,4527,0,0,4409,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8183,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-20 11:45:19','','0000-00-00 00:00:00',0),(8389,0,0,'H','2526','','',8389,0,0,'2025-12-20',6865,4325,0,0,4410,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8184,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-20 11:46:24','','0000-00-00 00:00:00',0),(8390,0,0,'H','2526','','',8390,0,0,'2025-12-20',6866,3006,0,0,2929,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8185,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-20 11:48:20','','0000-00-00 00:00:00',0),(8391,0,0,'H','2526','','',8391,0,0,'2025-12-20',6867,3351,0,0,3263,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8186,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-20 11:48:25','','0000-00-00 00:00:00',0),(8392,0,0,'H','2526','','',8392,0,0,'2025-12-20',6868,4528,0,0,4411,'B',500.00,0.00,'7','HDFC BANK','','36747','','0000-00-00','scan ','',8187,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-20 11:50:12','','0000-00-00 00:00:00',0),(8393,0,0,'H','2526','','',8393,0,0,'2025-12-20',6869,4529,0,0,4412,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8188,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-20 11:53:41','','0000-00-00 00:00:00',0),(8394,0,0,'H','2526','','',8394,0,0,'2025-12-20',6870,4530,0,0,4413,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8189,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-20 12:04:08','','0000-00-00 00:00:00',0),(8395,0,0,'H','2526','','P',8395,0,0,'2025-12-20',6397,4301,4301,298,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',8224,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-20 12:12:48','riya','2025-12-20 18:26:16',0),(8396,0,0,'H','2526','','',8396,0,0,'2025-12-20',6863,4526,0,0,4408,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8190,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-20 12:14:14','','0000-00-00 00:00:00',0),(8397,0,0,'H','2526','','',8397,0,0,'2025-12-20',6872,4532,0,0,4415,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8191,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-20 12:15:47','','0000-00-00 00:00:00',0),(8398,0,0,'H','2526','','',8398,0,0,'2025-12-20',6871,4531,0,0,4414,'B',750.00,0.00,'7','hdfc','','65139','','0000-00-00','scan','',8192,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-20 12:16:00','','0000-00-00 00:00:00',0),(8399,0,0,'H','2526','','',8399,0,0,'2025-12-20',6873,4533,0,0,4416,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8193,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-20 12:22:20','','0000-00-00 00:00:00',0),(8400,0,0,'H','2526','','',8400,0,0,'2025-12-20',6874,4534,0,0,4417,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8194,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-20 12:28:33','','0000-00-00 00:00:00',0),(8401,0,0,'H','2526','','',8401,0,0,'2025-12-20',6847,4517,0,0,4399,'B',200.00,0.00,'7','SBI','','39475','','0000-00-00','SCAN','',8195,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-20 12:29:11','','0000-00-00 00:00:00',0),(8402,0,0,'H','2526','','',8402,0,0,'2025-12-20',6875,4535,0,0,4418,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8196,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-20 12:29:29','','0000-00-00 00:00:00',0),(8403,0,0,'H','2526','','',8403,0,0,'2025-12-20',6877,2729,0,0,2659,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8197,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-20 12:31:09','','0000-00-00 00:00:00',0),(8404,0,0,'H','2526','','',8404,0,0,'2025-12-20',6876,4536,0,0,4419,'B',400.00,0.00,'7','SBI BANK','','18414','','0000-00-00','scan ','',8198,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-20 12:32:06','','0000-00-00 00:00:00',0),(8405,0,0,'H','2526','','',8405,0,0,'2025-12-20',6878,4537,0,0,4420,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8199,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-20 12:32:53','','0000-00-00 00:00:00',0),(8406,0,0,'H','2526','','',8406,0,0,'2025-12-20',6879,4538,0,0,4421,'B',400.00,0.00,'7','SBI BANK','','18414','','0000-00-00','scan ','',8200,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-20 12:33:46','','0000-00-00 00:00:00',0),(8407,0,0,'H','2526','','',8407,0,0,'2025-12-20',6875,4535,0,0,4418,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',8201,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-20 12:42:19','','0000-00-00 00:00:00',0),(8408,0,0,'H','2526','','',8408,0,0,'2025-12-20',6872,4532,0,0,4415,'D',-750.00,0.00,'CSH','','','','','2025-12-20','','',8202,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-20 12:51:25','','0000-00-00 00:00:00',0),(8409,0,0,'H','2526','','',8409,0,0,'2025-12-20',6872,4532,0,0,4415,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8203,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-20 12:53:02','','0000-00-00 00:00:00',0),(8410,0,0,'H','2526','','',8410,0,0,'2025-12-20',6880,4539,0,0,4422,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',8204,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-20 13:05:39','','0000-00-00 00:00:00',0),(8411,0,0,'H','2526','','',8411,0,0,'2025-12-20',6877,2729,0,0,2659,'D',-400.00,0.00,'CSH','','','','','2025-12-20','','',8205,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-20 13:07:19','','0000-00-00 00:00:00',0),(8412,0,0,'H','2526','','',8412,0,0,'2025-12-20',6860,4431,0,0,4317,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',8206,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-20 13:08:44','','0000-00-00 00:00:00',0),(8413,0,0,'H','2526','','',8413,0,0,'2025-12-20',6881,4540,0,0,4423,'B',500.00,0.00,'7','axis','','47257','','0000-00-00','scan','',8207,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-20 13:12:25','','0000-00-00 00:00:00',0),(8414,0,0,'H','2526','','P',8414,0,0,'2025-12-20',6706,4452,4452,305,0,'A',16000.00,0.00,'CSH','','','','','0000-00-00','','',8346,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-20 13:12:40','riya','2025-12-22 16:44:43',0),(8415,0,0,'H','2526','','P',8415,0,0,'2025-12-20',6576,4384,4384,302,0,'A',3000.00,0.00,'CSH','','','','','0000-00-00','','',8213,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-20 13:38:20','riya','2025-12-20 13:41:47',0),(8416,0,0,'H','2526','','',8416,0,0,'2025-12-20',6881,4540,0,0,4423,'B',2000.00,0.00,'7','axis','','62196','','0000-00-00','scan','',8214,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-20 14:01:51','','0000-00-00 00:00:00',0),(8417,0,0,'H','2526','','P',8417,0,0,'2025-12-20',6461,4320,4320,301,0,'A',25700.00,0.00,'CRD','HDFC','0177','350961','','0000-00-00','','',8216,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-20 14:06:12','riya','2025-12-20 14:09:37',0),(8418,0,0,'H','2526','','P',8418,0,0,'2025-12-20',4017,2937,2937,187,0,'A',30000.00,0.00,'7','BOI','','596149','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-20 14:12:40','riya','2025-12-20 14:12:40',0),(8419,0,0,'H','2526','','P',8419,0,0,'2025-12-20',6613,4405,4405,304,0,'A',81100.00,0.00,'CSH','','','','','0000-00-00','','',8218,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-20 14:21:51','riya','2025-12-20 14:23:20',0),(8420,0,0,'H','2526','','P',8420,0,0,'2025-12-20',6882,4541,4541,312,0,'A',7000.00,0.00,'7','SBI','','406743','','0000-00-00','','',8329,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-20 14:47:00','riya','2025-12-22 13:27:41',0),(8421,0,0,'H','2526','','',8421,0,0,'2025-12-20',6883,990,0,0,957,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8219,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-20 15:37:57','','0000-00-00 00:00:00',0),(8422,0,0,'H','2526','','P',8422,0,0,'2025-12-20',6884,2749,2749,313,0,'A',15000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-20 16:42:40','riya','2025-12-20 16:42:40',0),(8423,0,0,'H','2526','','',8423,0,0,'2025-12-20',6885,4187,0,0,4078,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8220,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-20 17:41:56','','0000-00-00 00:00:00',0),(8424,0,0,'H','2526','','',8424,0,0,'2025-12-20',6886,4542,0,0,4424,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8221,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-20 17:57:27','','0000-00-00 00:00:00',0),(8425,0,0,'H','2526','','',8425,0,0,'2025-12-20',6887,4543,0,0,4425,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8222,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-20 18:08:24','','0000-00-00 00:00:00',0),(8426,0,0,'H','2526','','P',8426,0,0,'2025-12-20',6397,4301,4301,298,0,'A',1000.00,0.00,'CSH','','','','','0000-00-00','','',8224,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-20 18:25:10','riya','2025-12-20 18:26:16',0),(8427,0,0,'H','2526','','',8427,0,0,'2025-12-20',6888,4544,0,0,4426,'B',800.00,0.00,'7','HDFC','','43618','','0000-00-00','SCAN','',8225,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-20 19:10:05','','0000-00-00 00:00:00',0),(8428,0,0,'H','2526','','',8428,0,0,'2025-12-20',6889,4545,0,0,4427,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8226,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-20 19:13:11','','0000-00-00 00:00:00',0),(8429,0,0,'H','2526','','',8429,0,0,'2025-12-20',6890,4392,0,0,4277,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8227,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-20 19:25:06','','0000-00-00 00:00:00',0),(8430,0,0,'H','2526','','',8430,0,0,'2025-12-20',6891,4447,0,0,4334,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8228,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-20 19:31:00','','0000-00-00 00:00:00',0),(8431,0,0,'H','2526','','P',8431,0,0,'2025-12-20',6892,4339,4339,314,0,'A',3000.00,0.00,'CSH','','','','','0000-00-00','','',8342,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-20 21:07:05','riya','2025-12-22 15:18:59',0),(8432,0,0,'H','2526','','',8432,0,0,'2025-12-21',6893,4546,0,0,4428,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',8229,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-21 09:14:43','','0000-00-00 00:00:00',0),(8433,0,0,'H','2526','','',8433,0,0,'2025-12-21',6894,4547,0,0,4429,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',8230,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-21 09:18:04','','0000-00-00 00:00:00',0),(8434,0,0,'H','2526','','',8434,0,0,'2025-12-21',6895,4548,0,0,4430,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8231,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-21 09:20:57','','0000-00-00 00:00:00',0),(8435,0,0,'H','2526','','P',8435,0,0,'2025-12-21',6165,4173,4173,285,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',8343,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-21 10:36:00','riya','2025-12-22 15:21:43',0),(8436,0,0,'H','2526','','',8436,0,0,'2025-12-21',6896,3399,0,0,3310,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8232,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-21 11:26:11','','0000-00-00 00:00:00',0),(8437,0,0,'H','2526','','',8437,0,0,'2025-12-21',6897,4549,0,0,4431,'B',1500.00,0.00,'7','BOB BANK','','92291','','0000-00-00','scan ','',8233,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-21 12:12:00','','0000-00-00 00:00:00',0),(8438,0,0,'H','2526','','P',8438,0,0,'2025-12-21',6898,4550,4550,315,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',8491,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-21 20:29:46','riya','2025-12-23 11:53:09',0),(8439,0,0,'H','2526','','P',8439,0,0,'2025-12-21',6900,3698,3698,317,0,'A',7000.00,0.00,'7','rnsb ','','9088','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-21 21:01:27','vishal','2025-12-21 21:01:27',0),(8440,0,0,'H','2526','','',8440,0,0,'2025-12-22',6901,4551,0,0,4432,'B',1100.00,0.00,'7','bank','','90419','','0000-00-00','scan','',8234,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 08:59:24','','0000-00-00 00:00:00',0),(8441,0,0,'H','2526','','',8441,0,0,'2025-12-22',6902,4552,0,0,4433,'B',1500.00,0.00,'7','hdfc','','47173','','0000-00-00','scan','',8235,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 09:10:13','','0000-00-00 00:00:00',0),(8442,0,0,'H','2526','','',8442,0,0,'2025-12-22',6903,4536,0,0,4419,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',8236,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 09:12:24','','0000-00-00 00:00:00',0),(8443,0,0,'H','2526','','',8443,0,0,'2025-12-22',6904,4553,0,0,4434,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',8237,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 09:14:18','','0000-00-00 00:00:00',0),(8444,0,0,'H','2526','','',8444,0,0,'2025-12-22',6905,3858,0,0,3755,'B',1400.00,0.00,'CSH','','','','','0000-00-00','','',8238,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 09:17:22','','0000-00-00 00:00:00',0),(8445,0,0,'H','2526','','',8445,0,0,'2025-12-22',6906,1327,0,0,1288,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8239,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 09:18:36','','0000-00-00 00:00:00',0),(8446,0,0,'H','2526','','',8446,0,0,'2025-12-22',6907,4447,0,0,4334,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8240,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 09:25:02','','0000-00-00 00:00:00',0),(8447,0,0,'H','2526','','',8447,0,0,'2025-12-22',6908,4554,0,0,4435,'B',6400.00,0.00,'CSH','','','','','0000-00-00','','',8241,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 09:28:51','','0000-00-00 00:00:00',0),(8448,0,0,'H','2526','','',8448,0,0,'2025-12-22',6910,4556,0,0,4437,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',8242,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 09:30:52','','0000-00-00 00:00:00',0),(8449,0,0,'H','2526','','',8449,0,0,'2025-12-22',6909,4555,0,0,4436,'B',750.00,0.00,'7','sbi','','62030','','0000-00-00','scan  ','',8243,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 09:33:23','','0000-00-00 00:00:00',0),(8450,0,0,'H','2526','','',8450,0,0,'2025-12-22',6912,4557,0,0,4438,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',8244,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 09:33:45','','0000-00-00 00:00:00',0),(8451,0,0,'H','2526','','',8451,0,0,'2025-12-22',6914,4559,0,0,4439,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',8245,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 09:42:25','','0000-00-00 00:00:00',0),(8452,0,0,'H','2526','','',8452,0,0,'2025-12-22',6915,3391,0,0,3302,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8246,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 09:44:27','','0000-00-00 00:00:00',0),(8453,0,0,'H','2526','','',8453,0,0,'2025-12-22',6916,3908,0,0,3803,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8247,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 09:45:53','','0000-00-00 00:00:00',0),(8454,0,0,'H','2526','','P',8454,0,0,'2025-12-22',6913,4558,4558,318,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-22 09:49:28','riya','2025-12-22 09:49:28',0),(8455,0,0,'H','2526','','',8455,0,0,'2025-12-22',6918,4561,0,0,4440,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8248,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 10:00:50','','0000-00-00 00:00:00',0),(8456,0,0,'H','2526','','',8456,0,0,'2025-12-22',6919,4562,0,0,4441,'B',800.00,0.00,'7','SBI BANK','','82422','','0000-00-00','scan ','',8249,'N','','N',0,'N','','0000-00-00 00:00:00','urvashi','2025-12-22 10:04:40','','0000-00-00 00:00:00',0),(8457,0,0,'H','2526','','',8457,0,0,'2025-12-22',6920,4563,0,0,4442,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8250,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 10:05:38','','0000-00-00 00:00:00',0),(8458,0,0,'H','2526','','',8458,0,0,'2025-12-22',6921,2096,0,0,2041,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8251,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 10:06:46','','0000-00-00 00:00:00',0),(8459,0,0,'H','2526','','P',8459,0,0,'2025-12-22',6922,4564,4564,320,0,'A',3000.00,0.00,'CSH','','','','','0000-00-00','','',8388,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-22 10:12:36','vishal','2025-12-22 18:24:19',0),(8460,0,0,'H','2526','','',8460,0,0,'2025-12-22',6923,4565,0,0,4443,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8252,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 10:14:55','','0000-00-00 00:00:00',0),(8461,0,0,'H','2526','','',8461,0,0,'2025-12-22',6924,3347,0,0,3695,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8253,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-22 10:17:17','','0000-00-00 00:00:00',0),(8462,0,0,'H','2526','','',8462,0,0,'2025-12-22',6926,4567,0,0,4445,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8254,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 10:21:27','','0000-00-00 00:00:00',0),(8463,0,0,'H','2526','','',8463,0,0,'2025-12-22',6927,4568,0,0,4446,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8255,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 10:23:46','','0000-00-00 00:00:00',0),(8464,0,0,'H','2526','','',8464,0,0,'2025-12-22',6925,4566,0,0,4444,'B',900.00,0.00,'CRD','hdfc','64782','64782','','0000-00-00','card','',8256,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 10:25:12','','0000-00-00 00:00:00',0),(8465,0,0,'H','2526','','',8465,0,0,'2025-12-22',6928,4569,0,0,4447,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8257,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-22 10:27:53','','0000-00-00 00:00:00',0),(8466,0,0,'H','2526','','',8466,0,0,'2025-12-22',6929,4570,0,0,4448,'B',1650.00,0.00,'CSH','','','','','0000-00-00','','',8258,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-22 10:34:06','','0000-00-00 00:00:00',0),(8467,0,0,'H','2526','','',8467,0,0,'2025-12-22',6930,4571,0,0,4449,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8259,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 10:35:16','','0000-00-00 00:00:00',0),(8468,0,0,'H','2526','','',8468,0,0,'2025-12-22',6932,2170,0,0,2119,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8260,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 10:40:59','','0000-00-00 00:00:00',0),(8469,0,0,'H','2526','','',8469,0,0,'2025-12-22',6933,4572,0,0,4450,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8261,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-22 10:44:05','','0000-00-00 00:00:00',0),(8470,0,0,'H','2526','','',8470,0,0,'2025-12-22',6934,4573,0,0,4451,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8262,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 10:44:40','','0000-00-00 00:00:00',0),(8471,0,0,'H','2526','','',8471,0,0,'2025-12-22',6936,4132,0,0,4025,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8263,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 10:46:47','','0000-00-00 00:00:00',0),(8472,0,0,'H','2526','','',8472,0,0,'2025-12-22',6938,2184,0,0,2133,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8264,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 10:47:47','','0000-00-00 00:00:00',0),(8473,0,0,'H','2526','','',8473,0,0,'2025-12-22',6939,4575,0,0,4453,'B',750.00,0.00,'7','bank','','21838','','0000-00-00','scan ','',8265,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 10:49:38','','0000-00-00 00:00:00',0),(8474,0,0,'H','2526','','',8474,0,0,'2025-12-22',6937,4574,0,0,4452,'B',400.00,0.00,'7','bank','','21838','','0000-00-00','scan ','',8266,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 10:50:03','','0000-00-00 00:00:00',0),(8475,0,0,'H','2526','','',8475,0,0,'2025-12-22',6940,4232,0,0,4120,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8267,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 10:54:33','','0000-00-00 00:00:00',0),(8476,0,0,'H','2526','','',8476,0,0,'2025-12-22',6942,4036,0,0,3928,'B',500.00,0.00,'7','axis','','06942','','0000-00-00','scan','',8268,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 10:56:11','','0000-00-00 00:00:00',0),(8477,0,0,'H','2526','','P',8477,0,0,'2025-12-22',6899,4285,4285,316,0,'A',80000.00,0.00,'7','hdfc ','','606259','','0000-00-00','','',8544,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-22 10:56:23','vishal','2025-12-23 17:44:36',0),(8478,0,0,'H','2526','','',8478,0,0,'2025-12-22',6941,4576,0,0,4454,'B',1650.00,0.00,'CSH','','','','','0000-00-00','','',8269,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 10:56:47','','0000-00-00 00:00:00',0),(8479,0,0,'H','2526','','',8479,0,0,'2025-12-22',6943,4577,0,0,4455,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',8270,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 10:57:17','','0000-00-00 00:00:00',0),(8480,0,0,'H','2526','','',8480,0,0,'2025-12-22',6944,3226,0,0,3140,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8271,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 11:00:34','','0000-00-00 00:00:00',0),(8481,0,0,'H','2526','','',8481,0,0,'2025-12-22',6945,4198,0,0,4088,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8272,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 11:01:27','','0000-00-00 00:00:00',0),(8482,0,0,'H','2526','','',8482,0,0,'2025-12-22',6927,4568,0,0,4446,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8273,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 11:02:04','','0000-00-00 00:00:00',0),(8483,0,0,'H','2526','','',8483,0,0,'2025-12-22',6946,4578,0,0,4456,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8274,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 11:03:12','','0000-00-00 00:00:00',0),(8484,0,0,'H','2526','','',8484,0,0,'2025-12-22',6947,3314,0,0,3228,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8275,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 11:05:13','','0000-00-00 00:00:00',0),(8485,0,0,'H','2526','','',8485,0,0,'2025-12-22',6948,4000,0,0,3891,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8276,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 11:09:33','','0000-00-00 00:00:00',0),(8486,0,0,'H','2526','','',8486,0,0,'2025-12-22',6949,4579,0,0,4457,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8277,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 11:10:50','','0000-00-00 00:00:00',0),(8487,0,0,'H','2526','','',8487,0,0,'2025-12-22',6950,4580,0,0,4458,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',8278,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 11:14:29','','0000-00-00 00:00:00',0),(8488,0,0,'H','2526','','P',8488,0,0,'2025-12-22',4017,2937,2937,187,0,'A',40000.00,0.00,'7','bank of india','','484890','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-22 11:15:36','riya','2025-12-22 11:15:36',0),(8489,0,0,'H','2526','','',8489,0,0,'2025-12-22',6952,4581,0,0,4459,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8279,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 11:16:17','','0000-00-00 00:00:00',0),(8490,0,0,'H','2526','','',8490,0,0,'2025-12-22',6953,4582,0,0,4460,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8280,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 11:16:42','','0000-00-00 00:00:00',0),(8491,0,0,'H','2526','','',8491,0,0,'2025-12-22',6954,4583,0,0,4461,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8281,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 11:18:24','','0000-00-00 00:00:00',0),(8492,0,0,'H','2526','','',8492,0,0,'2025-12-22',6918,4561,0,0,4440,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',8282,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 11:21:17','','0000-00-00 00:00:00',0),(8493,0,0,'H','2526','','',8493,0,0,'2025-12-22',6951,3072,0,0,2994,'B',1100.00,0.00,'CSH','','','','','0000-00-00','','',8284,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-22 11:22:43','','0000-00-00 00:00:00',0),(8494,0,0,'H','2526','','',8494,0,0,'2025-12-22',6909,4555,0,0,4436,'B',300.00,0.00,'7','sbi','','84774','','0000-00-00','scan     ','',8285,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 11:22:51','','0000-00-00 00:00:00',0),(8495,0,0,'H','2526','','',8495,0,0,'2025-12-22',6912,4557,0,0,4438,'D',-700.00,0.00,'CSH','','','','','2025-12-22','','',8283,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 11:22:57','','0000-00-00 00:00:00',0),(8496,0,0,'H','2526','','',8496,0,0,'2025-12-22',6912,4557,0,0,4438,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',8286,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 11:23:34','','0000-00-00 00:00:00',0),(8497,0,0,'H','2526','','',8497,0,0,'2025-12-22',6956,2301,0,0,2245,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8287,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-22 11:23:45','','0000-00-00 00:00:00',0),(8498,0,0,'H','2526','','',8498,0,0,'2025-12-22',6957,221,0,0,208,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8288,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 11:25:51','','0000-00-00 00:00:00',0),(8499,0,0,'H','2526','','',8499,0,0,'2025-12-22',6958,4585,0,0,4463,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8289,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 11:26:46','','0000-00-00 00:00:00',0),(8500,0,0,'H','2526','','',8500,0,0,'2025-12-22',6959,4586,0,0,4464,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8290,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 11:27:50','','0000-00-00 00:00:00',0),(8501,0,0,'H','2526','','',8501,0,0,'2025-12-22',6960,4587,0,0,4465,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8291,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 11:28:22','','0000-00-00 00:00:00',0),(8502,0,0,'H','2526','','',8502,0,0,'2025-12-22',6920,4563,0,0,4442,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',8292,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 11:28:41','','0000-00-00 00:00:00',0),(8503,0,0,'H','2526','','',8503,0,0,'2025-12-22',6962,4589,0,0,4466,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8293,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 11:35:11','','0000-00-00 00:00:00',0),(8504,0,0,'H','2526','','',8504,0,0,'2025-12-22',6964,2834,0,0,3697,'B',400.00,0.00,'7','baroda bank','','16924','','0000-00-00','scan ','',8294,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 11:37:43','','0000-00-00 00:00:00',0),(8505,0,0,'H','2526','','',8505,0,0,'2025-12-22',6963,3824,0,0,4467,'B',400.00,0.00,'7','hdfc','','45849','','0000-00-00','scan ','',8295,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 11:38:18','','0000-00-00 00:00:00',0),(8506,0,0,'H','2526','','',8506,0,0,'2025-12-22',6965,2955,0,0,2880,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8296,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 11:38:31','','0000-00-00 00:00:00',0),(8507,0,0,'H','2526','','',8507,0,0,'2025-12-22',6956,2301,0,0,2245,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8297,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-22 11:39:07','','0000-00-00 00:00:00',0),(8508,0,0,'H','2526','','',8508,0,0,'2025-12-22',6931,4082,0,0,3975,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8298,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 11:40:22','','0000-00-00 00:00:00',0),(8509,0,0,'H','2526','','',8509,0,0,'2025-12-22',6966,4590,0,0,4468,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8299,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 11:41:18','','0000-00-00 00:00:00',0),(8510,0,0,'H','2526','','',8510,0,0,'2025-12-22',6967,4591,0,0,4469,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8300,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-22 11:43:43','','0000-00-00 00:00:00',0),(8511,0,0,'H','2526','','P',8511,0,0,'2025-12-22',6961,4588,4588,321,0,'A',10000.00,0.00,'7','HDFC ','','817584','','0000-00-00','','',8426,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-22 11:45:53','vishal','2025-12-22 19:43:17',0),(8512,0,0,'H','2526','','',8512,0,0,'2025-12-22',6968,4592,0,0,4470,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8301,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 11:49:42','','0000-00-00 00:00:00',0),(8513,0,0,'H','2526','','',8513,0,0,'2025-12-22',6934,4573,0,0,4451,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',8302,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 11:49:54','','0000-00-00 00:00:00',0),(8514,0,0,'H','2526','','',8514,0,0,'2025-12-22',6968,4592,0,0,4470,'D',-750.00,0.00,'CSH','','','','','2025-12-22','','',8303,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 11:52:23','','0000-00-00 00:00:00',0),(8515,0,0,'H','2526','','P',8515,0,0,'2025-12-22',6969,4593,4593,322,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-22 11:55:36','riya','2025-12-22 11:55:36',0),(8516,0,0,'H','2526','','',8516,0,0,'2025-12-22',6970,4594,0,0,4471,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8304,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 11:56:57','','0000-00-00 00:00:00',0),(8517,0,0,'H','2526','','',8517,0,0,'2025-12-22',6971,4595,0,0,4472,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8305,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 11:59:11','','0000-00-00 00:00:00',0),(8518,0,0,'H','2526','','',8518,0,0,'2025-12-22',6972,4596,0,0,4473,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8306,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 12:01:01','','0000-00-00 00:00:00',0),(8519,0,0,'H','2526','','',8519,0,0,'2025-12-22',6940,4232,0,0,4120,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8307,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 12:05:47','','0000-00-00 00:00:00',0),(8520,0,0,'H','2526','','',8520,0,0,'2025-12-22',6959,4586,0,0,4464,'B',6000.00,0.00,'7','sbi','','39730','','0000-00-00','scan','',8308,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 12:07:09','','0000-00-00 00:00:00',0),(8521,0,0,'H','2526','','',8521,0,0,'2025-12-22',6973,4597,0,0,4474,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8309,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 12:10:05','','0000-00-00 00:00:00',0),(8522,0,0,'H','2526','','',8522,0,0,'2025-12-22',6975,3349,0,0,3819,'B',300.00,0.00,'7','axis bank','','08798','','0000-00-00','scan ','',8310,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 12:16:26','','0000-00-00 00:00:00',0),(8523,0,0,'H','2526','','P',8523,0,0,'2025-12-22',6974,4598,4598,323,0,'A',20000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-22 12:16:46','riya','2025-12-22 12:16:46',0),(8524,0,0,'H','2526','','',8524,0,0,'2025-12-22',6943,4577,0,0,4455,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8311,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 12:19:15','','0000-00-00 00:00:00',0),(8525,0,0,'H','2526','','',8525,0,0,'2025-12-22',6967,4591,0,0,4469,'B',600.00,0.00,'7','AXIS BANK','','67683','','0000-00-00','SCAN','',8312,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-22 12:19:42','','0000-00-00 00:00:00',0),(8526,0,0,'H','2526','','',8526,0,0,'2025-12-22',6976,4599,0,0,4475,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8313,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 12:19:44','','0000-00-00 00:00:00',0),(8527,0,0,'H','2526','','P',8527,0,0,'2025-12-22',6978,4600,4600,324,0,'A',3000.00,0.00,'CSH','','','','','0000-00-00','','',8430,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-22 12:26:52','vishal','2025-12-22 19:56:43',0),(8528,0,0,'H','2526','','',8528,0,0,'2025-12-22',6925,4566,0,0,4444,'B',4500.00,0.00,'CRD','hdfc','76343','76343','','0000-00-00','card','',8314,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 12:30:00','','0000-00-00 00:00:00',0),(8529,0,0,'H','2526','','',8529,0,0,'2025-12-22',6903,4536,0,0,4419,'B',800.00,0.00,'7','sbi','','15761','','0000-00-00','scan ','',8315,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 12:33:32','','0000-00-00 00:00:00',0),(8530,0,0,'H','2526','','',8530,0,0,'2025-12-22',6979,4601,0,0,4477,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8316,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 12:35:42','','0000-00-00 00:00:00',0),(8531,0,0,'H','2526','','',8531,0,0,'2025-12-22',6980,4602,0,0,4478,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8317,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 12:37:39','','0000-00-00 00:00:00',0),(8532,0,0,'H','2526','','',8532,0,0,'2025-12-22',6981,4603,0,0,4479,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8318,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-22 12:40:36','','0000-00-00 00:00:00',0),(8533,0,0,'H','2526','','',8533,0,0,'2025-12-22',6952,4581,0,0,4459,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',8319,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 12:59:56','','0000-00-00 00:00:00',0),(8534,0,0,'H','2526','','',8534,0,0,'2025-12-22',6982,4604,0,0,4480,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8320,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-22 13:00:52','','0000-00-00 00:00:00',0),(8535,0,0,'H','2526','','',8535,0,0,'2025-12-22',6983,4605,0,0,4481,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8321,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 13:07:41','','0000-00-00 00:00:00',0),(8536,0,0,'H','2526','','',8536,0,0,'2025-12-22',6984,4606,0,0,4482,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',8322,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 13:11:11','','0000-00-00 00:00:00',0),(8537,0,0,'H','2526','','',8537,0,0,'2025-12-22',6976,4599,0,0,4475,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',8324,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 13:18:49','','0000-00-00 00:00:00',0),(8538,0,0,'H','2526','','',8538,0,0,'2025-12-22',6983,4605,0,0,4481,'B',2000.00,0.00,'CSH','','','','','0000-00-00','','',8325,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-22 13:20:39','','0000-00-00 00:00:00',0),(8539,0,0,'H','2526','','',8539,0,0,'2025-12-22',6980,4602,0,0,4478,'B',3500.00,0.00,'7','hdfc','','11709','','0000-00-00','scan','',8326,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 13:21:12','','0000-00-00 00:00:00',0),(8540,0,0,'H','2526','','',8540,0,0,'2025-12-22',6985,4607,0,0,4483,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8327,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-22 13:26:32','','0000-00-00 00:00:00',0),(8541,0,0,'H','2526','','P',8541,0,0,'2025-12-22',6882,4541,4541,312,0,'A',4750.00,0.00,'CSH','','','','','0000-00-00','','',8329,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-22 13:26:42','riya','2025-12-22 13:27:41',0),(8542,0,0,'H','2526','','',8542,0,0,'2025-12-22',6986,4608,0,0,4484,'B',500.00,0.00,'7','bob','','57156','','0000-00-00','scan  ','',8330,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 13:35:40','','0000-00-00 00:00:00',0),(8543,0,0,'H','2526','','',8543,0,0,'2025-12-22',6962,4589,0,0,4466,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',8331,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 13:42:42','','0000-00-00 00:00:00',0),(8544,0,0,'H','2526','','',8544,0,0,'2025-12-22',6987,4609,0,0,4485,'B',200.00,0.00,'7','hdfc','','31064','','0000-00-00','scan     ','',8332,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 13:56:50','','0000-00-00 00:00:00',0),(8545,0,0,'H','2526','','',8545,0,0,'2025-12-22',6967,4591,0,0,4469,'B',300.00,0.00,'7','axis bank','','39003','','0000-00-00','scan                          ','',8333,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 13:57:52','','0000-00-00 00:00:00',0),(8546,0,0,'H','2526','','',8546,0,0,'2025-12-22',6966,4590,0,0,4468,'B',4200.00,0.00,'CSH','','','','','0000-00-00','','',8334,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 14:07:05','','0000-00-00 00:00:00',0),(8547,0,0,'H','2526','','',8547,0,0,'2025-12-22',6983,4605,0,0,4481,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',8335,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-22 14:13:39','','0000-00-00 00:00:00',0),(8548,0,0,'H','2526','','',8548,0,0,'2025-12-22',6988,3895,0,0,3791,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8336,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-22 14:18:35','','0000-00-00 00:00:00',0),(8549,0,0,'H','2526','','',8549,0,0,'2025-12-22',6989,4610,0,0,4486,'B',400.00,0.00,'7','BOB','','15911','','0000-00-00','scan','',8337,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 14:34:41','','0000-00-00 00:00:00',0),(8550,0,0,'H','2526','','',8550,0,0,'2025-12-22',6986,4608,0,0,4484,'B',600.00,0.00,'7','BOB BANK','','51622','','0000-00-00','scan ','',8338,'N','','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-22 14:37:41','','0000-00-00 00:00:00',0),(8551,0,0,'H','2526','','',8551,0,0,'2025-12-22',6979,4601,0,0,4477,'B',4600.00,0.00,'CSH','','','','','0000-00-00','','',8339,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 14:46:29','','0000-00-00 00:00:00',0),(8552,0,0,'H','2526','','',8552,0,0,'2025-12-22',6984,4606,0,0,4482,'D',-700.00,0.00,'CSH','','','','','2025-12-22','','',8340,'N','N','N',0,'N','','0000-00-00 00:00:00','shweta','2025-12-22 15:13:49','','0000-00-00 00:00:00',0),(8553,0,0,'H','2526','','P',8553,0,0,'2025-12-22',6892,4339,4339,314,0,'A',9000.00,0.00,'CSH','','','','','0000-00-00','','',8342,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-22 15:17:31','riya','2025-12-22 15:18:59',0),(8554,0,0,'H','2526','','P',8554,0,0,'2025-12-22',6165,4173,4173,285,0,'A',30000.00,0.00,'CSH','','','','','0000-00-00','','',8343,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-22 15:20:51','riya','2025-12-22 15:21:43',0),(8555,0,0,'H','2526','','',8555,0,0,'2025-12-22',6990,4069,0,0,3962,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8344,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 16:21:11','','0000-00-00 00:00:00',0),(8556,0,0,'H','2526','','',8556,0,0,'2025-12-22',6992,2017,0,0,1969,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8345,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 16:25:56','','0000-00-00 00:00:00',0),(8557,0,0,'H','2526','','P',8557,0,0,'2025-12-22',6991,4611,4611,325,0,'A',7000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-22 16:29:06','riya','2025-12-22 16:29:06',0),(8558,0,0,'H','2526','','',8558,0,0,'2025-12-22',6993,91,0,0,80,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8347,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 16:47:32','','0000-00-00 00:00:00',0),(8559,0,0,'H','2526','','',8559,0,0,'2025-12-22',6994,4099,0,0,3992,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8348,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 16:48:34','','0000-00-00 00:00:00',0),(8560,0,0,'H','2526','','',8560,0,0,'2025-12-22',6995,4604,0,0,4480,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',8349,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 16:50:04','','0000-00-00 00:00:00',0),(8561,0,0,'H','2526','','',8561,0,0,'2025-12-22',6996,4578,0,0,4456,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',8350,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 16:51:32','','0000-00-00 00:00:00',0),(8562,0,0,'H','2526','','',8562,0,0,'2025-12-22',6997,1977,0,0,1929,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8351,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 16:54:41','','0000-00-00 00:00:00',0),(8563,0,0,'H','2526','','',8563,0,0,'2025-12-22',6998,4344,0,0,4229,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8352,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 16:54:58','','0000-00-00 00:00:00',0),(8564,0,0,'H','2526','','',8564,0,0,'2025-12-22',6999,1887,0,0,1841,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8353,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 16:57:03','','0000-00-00 00:00:00',0),(8565,0,0,'H','2526','','',8565,0,0,'2025-12-22',7000,4102,0,0,3995,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8354,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 17:05:22','','0000-00-00 00:00:00',0),(8566,0,0,'H','2526','','',8566,0,0,'2025-12-22',7001,3959,0,0,3850,'B',300.00,0.00,'7','axis','','49017','','0000-00-00','scan','',8355,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 17:08:45','','0000-00-00 00:00:00',0),(8567,0,0,'H','2526','','',8567,0,0,'2025-12-22',7002,4612,0,0,4487,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8357,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 17:10:16','','0000-00-00 00:00:00',0),(8568,0,0,'H','2526','','',8568,0,0,'2025-12-22',7003,3996,0,0,3887,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8358,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 17:14:55','','0000-00-00 00:00:00',0),(8569,0,0,'H','2526','','',8569,0,0,'2025-12-22',7004,3852,0,0,3749,'B',300.00,0.00,'7','boi','','06494','','0000-00-00','scan','',8359,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 17:17:47','','0000-00-00 00:00:00',0),(8570,0,0,'H','2526','','',8570,0,0,'2025-12-22',7005,4613,0,0,4488,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8360,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 17:18:21','','0000-00-00 00:00:00',0),(8571,0,0,'H','2526','','',8571,0,0,'2025-12-22',7006,4614,0,0,4489,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8361,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 17:20:35','','0000-00-00 00:00:00',0),(8572,0,0,'H','2526','','',8572,0,0,'2025-12-22',7007,4615,0,0,4490,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',8362,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 17:35:08','','0000-00-00 00:00:00',0),(8573,0,0,'H','2526','','',8573,0,0,'2025-12-22',7008,2359,0,0,2302,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8363,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 17:37:59','','0000-00-00 00:00:00',0),(8574,0,0,'H','2526','','',8574,0,0,'2025-12-22',7002,4612,0,0,4487,'B',4000.00,0.00,'7','hdfc','','32940','','0000-00-00','scan','',8364,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 17:38:01','','0000-00-00 00:00:00',0),(8575,0,0,'H','2526','','',8575,0,0,'2025-12-22',7009,4616,0,0,4491,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8365,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 17:41:05','','0000-00-00 00:00:00',0),(8576,0,0,'H','2526','','',8576,0,0,'2025-12-22',7011,4618,0,0,4492,'B',800.00,0.00,'7','HDFC','','74259','','0000-00-00','SCAN','',8366,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-22 17:45:58','','0000-00-00 00:00:00',0),(8577,0,0,'H','2526','','',8577,0,0,'2025-12-22',7012,4124,0,0,4016,'B',400.00,0.00,'7','sbi','','14326','','0000-00-00','scan','',8367,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 17:48:30','','0000-00-00 00:00:00',0),(8578,0,0,'H','2526','','',8578,0,0,'2025-12-22',7014,4187,0,0,4078,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8368,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 17:50:02','','0000-00-00 00:00:00',0),(8579,0,0,'H','2526','','',8579,0,0,'2025-12-22',7015,4619,0,0,4493,'B',700.00,0.00,'7','IDFC BANK','','83378','','0000-00-00','scan ','',8369,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 17:51:33','','0000-00-00 00:00:00',0),(8580,0,0,'H','2526','','',8580,0,0,'2025-12-22',7016,1964,0,0,1916,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8370,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 17:51:35','','0000-00-00 00:00:00',0),(8581,0,0,'H','2526','','',8581,0,0,'2025-12-22',7017,4620,0,0,4494,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8371,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 17:52:08','','0000-00-00 00:00:00',0),(8582,0,0,'H','2526','','',8582,0,0,'2025-12-22',7006,4614,0,0,4489,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',8372,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 17:53:20','','0000-00-00 00:00:00',0),(8583,0,0,'H','2526','','',8583,0,0,'2025-12-22',7018,2599,0,0,2542,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8373,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 17:58:30','','0000-00-00 00:00:00',0),(8584,0,0,'H','2526','','',8584,0,0,'2025-12-22',7020,4621,0,0,4495,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8374,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 18:05:17','','0000-00-00 00:00:00',0),(8585,0,0,'H','2526','','',8585,0,0,'2025-12-22',7021,2422,0,0,2367,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8375,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-22 18:08:40','','0000-00-00 00:00:00',0),(8586,0,0,'H','2526','','',8586,0,0,'2025-12-22',7011,4618,0,0,4492,'B',400.00,0.00,'7','HDFC','','43120','','0000-00-00','SCAN','',8376,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-22 18:11:52','','0000-00-00 00:00:00',0),(8587,0,0,'H','2526','','',8587,0,0,'2025-12-22',7022,4622,0,0,4496,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8377,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 18:12:38','','0000-00-00 00:00:00',0),(8588,0,0,'H','2526','','',8588,0,0,'2025-12-22',7023,3833,0,0,3730,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8378,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 18:13:50','','0000-00-00 00:00:00',0),(8589,0,0,'H','2526','','',8589,0,0,'2025-12-22',7026,3721,0,0,3720,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8379,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 18:15:53','','0000-00-00 00:00:00',0),(8590,0,0,'H','2526','','',8590,0,0,'2025-12-22',6999,1887,0,0,1841,'D',-400.00,0.00,'CSH','','','','','2025-12-22','','',8380,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 18:16:15','','0000-00-00 00:00:00',0),(8591,0,0,'H','2526','','',8591,0,0,'2025-12-22',6999,1887,0,0,1841,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',8381,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 18:17:06','','0000-00-00 00:00:00',0),(8592,0,0,'H','2526','','',8592,0,0,'2025-12-22',7027,4624,0,0,4498,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',8382,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 18:19:04','','0000-00-00 00:00:00',0),(8593,0,0,'H','2526','','',8593,0,0,'2025-12-22',7028,4175,0,0,4065,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8383,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-22 18:22:27','','0000-00-00 00:00:00',0),(8594,0,0,'H','2526','','',8594,0,0,'2025-12-22',7029,4625,0,0,4499,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8385,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 18:22:44','','0000-00-00 00:00:00',0),(8595,0,0,'H','2526','','',8595,0,0,'2025-12-22',7030,3835,0,0,3732,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8387,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 18:23:59','','0000-00-00 00:00:00',0),(8596,0,0,'H','2526','','',8596,0,0,'2025-12-22',7017,4620,0,0,4494,'D',-500.00,0.00,'CSH','','','','','2025-12-22','','',8386,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 18:24:08','','0000-00-00 00:00:00',0),(8597,0,0,'H','2526','','',8597,0,0,'2025-12-22',7031,3407,0,0,3315,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8389,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 18:24:59','','0000-00-00 00:00:00',0),(8598,0,0,'H','2526','','',8598,0,0,'2025-12-22',7033,4100,0,0,3993,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8390,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 18:27:01','','0000-00-00 00:00:00',0),(8599,0,0,'H','2526','','',8599,0,0,'2025-12-22',7034,4626,0,0,4500,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8391,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 18:33:09','','0000-00-00 00:00:00',0),(8600,0,0,'H','2526','','',8600,0,0,'2025-12-22',7035,4627,0,0,4501,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8392,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 18:33:21','','0000-00-00 00:00:00',0),(8601,0,0,'H','2526','','',8601,0,0,'2025-12-22',7037,4628,0,0,4502,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',8393,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 18:35:37','','0000-00-00 00:00:00',0),(8602,0,0,'H','2526','','',8602,0,0,'2025-12-22',7020,4621,0,0,4495,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',8394,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 18:35:38','','0000-00-00 00:00:00',0),(8603,0,0,'H','2526','','',8603,0,0,'2025-12-22',7020,4621,0,0,4495,'B',500.00,0.00,'7','union bank','','91867','','0000-00-00','scan','',8395,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 18:37:03','','0000-00-00 00:00:00',0),(8604,0,0,'H','2526','','',8604,0,0,'2025-12-22',7038,4369,0,0,4254,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8396,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 18:38:36','','0000-00-00 00:00:00',0),(8605,0,0,'H','2526','','',8605,0,0,'2025-12-22',7019,2230,0,0,2175,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8397,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-22 18:39:22','','0000-00-00 00:00:00',0),(8606,0,0,'H','2526','','',8606,0,0,'2025-12-22',7040,4630,0,0,4504,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',8398,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 18:41:12','','0000-00-00 00:00:00',0),(8607,0,0,'H','2526','','',8607,0,0,'2025-12-22',7013,2898,0,0,2827,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8399,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 18:42:44','','0000-00-00 00:00:00',0),(8608,0,0,'H','2526','','',8608,0,0,'2025-12-22',7042,4062,0,0,3954,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8400,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 18:44:49','','0000-00-00 00:00:00',0),(8609,0,0,'H','2526','','',8609,0,0,'2025-12-22',7041,4631,0,0,4505,'B',500.00,0.00,'7','sbi','','61514','','0000-00-00','scan  ','',8401,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 18:45:08','','0000-00-00 00:00:00',0),(8610,0,0,'H','2526','','',8610,0,0,'2025-12-22',7039,4629,0,0,4503,'B',800.00,0.00,'7','ICICI','','208765','','0000-00-00','SCAN','',8402,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-22 18:45:18','','0000-00-00 00:00:00',0),(8611,0,0,'H','2526','','',8611,0,0,'2025-12-22',7043,3411,0,0,3319,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8403,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 18:46:28','','0000-00-00 00:00:00',0),(8612,0,0,'H','2526','','',8612,0,0,'2025-12-22',7024,4623,0,0,4497,'B',300.00,0.00,'7','BOB','','33174','','0000-00-00','SCAN','',8404,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-22 18:48:52','','0000-00-00 00:00:00',0),(8613,0,0,'H','2526','','',8613,0,0,'2025-12-22',7044,2241,0,0,2764,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8405,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 18:49:36','','0000-00-00 00:00:00',0),(8614,0,0,'H','2526','','',8614,0,0,'2025-12-22',6939,4575,0,0,4453,'B',300.00,0.00,'7','federal bank','','77218','','0000-00-00','scan','',8406,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 18:49:49','','0000-00-00 00:00:00',0),(8615,0,0,'H','2526','','',8615,0,0,'2025-12-22',7046,4633,0,0,4507,'B',750.00,0.00,'7','SBI BANK','','99499','','0000-00-00','scan ','',8407,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 18:53:15','','0000-00-00 00:00:00',0),(8616,0,0,'H','2526','','',8616,0,0,'2025-12-22',7047,4634,0,0,4508,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8408,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 18:54:35','','0000-00-00 00:00:00',0),(8617,0,0,'H','2526','','',8617,0,0,'2025-12-22',7046,4633,0,0,4507,'D',-750.00,0.00,'7','SBI BANK','','99499','','2025-12-22','','',8409,'N','N','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 18:56:14','','0000-00-00 00:00:00',0),(8618,0,0,'H','2526','','',8618,0,0,'2025-12-22',7046,4633,0,0,4507,'B',700.00,0.00,'7','SBI BANK','','99499','','0000-00-00','scan ','',8411,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 18:57:31','','0000-00-00 00:00:00',0),(8619,0,0,'H','2526','','',8619,0,0,'2025-12-22',7049,4635,0,0,4509,'B',900.00,0.00,'7','hdfc','','82169','','0000-00-00','scan','',8412,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 18:58:02','','0000-00-00 00:00:00',0),(8620,0,0,'H','2526','','',8620,0,0,'2025-12-22',7051,4636,0,0,4510,'B',750.00,0.00,'7','HDFC BANK','','13533','','0000-00-00','scan ','',8413,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 19:01:35','','0000-00-00 00:00:00',0),(8621,0,0,'H','2526','','',8621,0,0,'2025-12-22',7052,3530,0,0,3433,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8414,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 19:05:46','','0000-00-00 00:00:00',0),(8622,0,0,'H','2526','','',8622,0,0,'2025-12-22',7053,4637,0,0,4511,'B',400.00,0.00,'7','HDFC BANK','','13314','','0000-00-00','scan ','',8416,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 19:10:25','','0000-00-00 00:00:00',0),(8623,0,0,'H','2526','','',8623,0,0,'2025-12-22',7046,4633,0,0,4507,'D',-700.00,0.00,'7','sbi','','99499','','2025-12-22','SCAN','',8415,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 19:10:45','','0000-00-00 00:00:00',0),(8624,0,0,'H','2526','','',8624,0,0,'2025-12-22',7046,4633,0,0,4507,'B',900.00,0.00,'7','sbi','','99499','','0000-00-00','scan','',8417,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 19:12:48','','0000-00-00 00:00:00',0),(8625,0,0,'H','2526','','',8625,0,0,'2025-12-22',7054,3705,0,0,3605,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',8418,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 19:13:59','','0000-00-00 00:00:00',0),(8626,0,0,'H','2526','','',8626,0,0,'2025-12-22',7055,4638,0,0,4512,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8419,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 19:17:06','','0000-00-00 00:00:00',0),(8627,0,0,'H','2526','','',8627,0,0,'2025-12-22',7040,4630,0,0,4504,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',8420,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 19:18:18','','0000-00-00 00:00:00',0),(8628,0,0,'H','2526','','',8628,0,0,'2025-12-22',7056,3586,0,0,3486,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8421,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 19:19:05','','0000-00-00 00:00:00',0),(8629,0,0,'H','2526','','',8629,0,0,'2025-12-22',7057,4107,0,0,4000,'B',400.00,0.00,'7','HDFC','','44196','','0000-00-00','SCAN','',8422,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-22 19:19:53','','0000-00-00 00:00:00',0),(8630,0,0,'H','2526','','',8630,0,0,'2025-12-22',7058,1439,0,0,1399,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8423,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 19:24:29','','0000-00-00 00:00:00',0),(8631,0,0,'H','2526','','',8631,0,0,'2025-12-22',7049,4635,0,0,4509,'B',3500.00,0.00,'7','hdfc','','87610','','0000-00-00','scan','',8424,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 19:26:33','','0000-00-00 00:00:00',0),(8632,0,0,'H','2526','','',8632,0,0,'2025-12-22',7004,3852,0,0,3749,'B',2000.00,0.00,'7','kotak','','68333','','0000-00-00','scan     ','',8425,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 19:37:46','','0000-00-00 00:00:00',0),(8633,0,0,'H','2526','','',8633,0,0,'2025-12-22',6961,4588,0,321,0,'D',-4500.00,0.00,'1','AXIS BANK','','1234','','0000-00-00','','',8426,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-22 19:43:17','','0000-00-00 00:00:00',0),(8634,0,0,'H','2526','','',8634,0,0,'2025-12-22',7059,4639,0,0,4513,'B',1800.00,0.00,'7','AXIS BANK','','66798','','0000-00-00','SCAN','',8427,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-22 19:51:43','','0000-00-00 00:00:00',0),(8635,0,0,'H','2526','','',8635,0,0,'2025-12-22',7061,4641,0,0,4515,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8429,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 19:56:38','','0000-00-00 00:00:00',0),(8636,0,0,'H','2526','','',8636,0,0,'2025-12-22',7048,4415,0,0,4300,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8431,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 19:57:48','','0000-00-00 00:00:00',0),(8637,0,0,'H','2526','','',8637,0,0,'2025-12-22',7062,4642,0,0,4516,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8433,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 20:02:54','','0000-00-00 00:00:00',0),(8638,0,0,'H','2526','','',8638,0,0,'2025-12-22',7041,4631,0,0,4505,'D',-500.00,0.00,'7','sbi','','61514','','2025-12-22','SCAN                          ','',8434,'N','N','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-22 20:05:43','','0000-00-00 00:00:00',0),(8639,0,0,'H','2526','','',8639,0,0,'2025-12-22',7063,4643,0,0,4517,'B',500.00,0.00,'7','HDFC BANK','','87719','','0000-00-00','scan ','',8435,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-22 20:17:24','','0000-00-00 00:00:00',0),(8640,0,0,'H','2526','','',8640,0,0,'2025-12-22',7061,4641,0,0,4515,'D',-300.00,0.00,'CSH','','','','','2025-12-22','','',8436,'N','N','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 20:26:36','','0000-00-00 00:00:00',0),(8641,0,0,'H','2526','','',8641,0,0,'2025-12-22',7064,4447,0,0,4334,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8437,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-22 20:40:24','','0000-00-00 00:00:00',0),(8642,0,0,'H','2526','','',8642,0,0,'2025-12-22',7065,4644,0,0,4518,'B',1400.00,0.00,'7','union bank','','27101','','0000-00-00','scan','',8439,'N','','N',0,'N','','0000-00-00 00:00:00','priyanshi','2025-12-22 21:02:05','','0000-00-00 00:00:00',0),(8643,0,0,'H','2526','','P',8643,0,0,'2025-12-22',6843,4515,4515,311,0,'A',20000.00,0.00,'7','ICICI BANK','','1049','','0000-00-00','','',8440,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-22 21:20:16','vishal','2025-12-22 21:20:44',0),(8644,0,0,'H','2526','','P',8644,0,0,'2025-12-22',7066,4622,4622,327,0,'A',6000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-22 21:44:30','vishal','2025-12-22 21:44:30',0),(8645,0,0,'H','2526','','P',8645,0,0,'2025-12-22',5120,3601,3601,243,0,'A',31000.00,0.00,'7','HDFC BANK','','27041','','0000-00-00','','',8441,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-22 21:54:53','vishal','2025-12-22 21:57:17',0),(8646,0,0,'H','2526','','P',8646,0,0,'2025-12-22',5120,3601,3601,243,0,'A',50000.00,0.00,'CSH','','','','','0000-00-00','','',8441,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-22 21:56:32','vishal','2025-12-22 21:57:17',0),(8647,0,0,'H','2526','','P',8647,0,0,'2025-12-22',7067,4645,4645,328,0,'A',10000.00,0.00,'7','SBI BANK','','6077','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-22 22:16:37','vishal','2025-12-22 22:16:37',0),(8648,0,0,'H','2526','','',8648,0,0,'2025-12-23',7068,4644,0,0,4518,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',8442,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 08:42:30','','0000-00-00 00:00:00',0),(8649,0,0,'H','2526','','',8649,0,0,'2025-12-23',7069,4419,0,0,4305,'B',1800.00,0.00,'7','sbi','','84469','','0000-00-00','scan','',8443,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 08:46:22','','0000-00-00 00:00:00',0),(8650,0,0,'H','2526','','',8650,0,0,'2025-12-23',7070,4646,0,0,4519,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8444,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-23 09:49:45','','0000-00-00 00:00:00',0),(8651,0,0,'H','2526','','',8651,0,0,'2025-12-23',7071,4392,0,0,4277,'B',300.00,0.00,'7','icici','','55060','','0000-00-00','scan  ','',8445,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-23 09:55:34','','0000-00-00 00:00:00',0),(8652,0,0,'H','2526','','P',8652,0,0,'2025-12-01',2879,2243,2243,146,0,'A',30000.00,0.00,'7','ICICI','','6589','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-23 09:57:45','riya','2025-12-23 09:57:45',0),(8653,0,0,'H','2526','','',8653,0,0,'2025-12-23',7072,4647,0,0,4520,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8446,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-23 10:08:21','','0000-00-00 00:00:00',0),(8654,0,0,'H','2526','','',8654,0,0,'2025-12-23',7073,4648,0,0,4521,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8447,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 10:09:02','','0000-00-00 00:00:00',0),(8655,0,0,'H','2526','','P',8655,0,0,'2025-12-23',6884,2749,2749,313,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-23 10:09:17','riya','2025-12-23 10:09:17',0),(8656,0,0,'H','2526','','',8656,0,0,'2025-12-23',7074,683,0,0,653,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8448,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 10:12:39','','0000-00-00 00:00:00',0),(8657,0,0,'H','2526','','',8657,0,0,'2025-12-23',7077,1499,0,0,1458,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8449,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 10:18:03','','0000-00-00 00:00:00',0),(8658,0,0,'H','2526','','',8658,0,0,'2025-12-23',7075,4649,0,0,4522,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',8450,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-23 10:18:15','','0000-00-00 00:00:00',0),(8659,0,0,'H','2526','','',8659,0,0,'2025-12-23',7076,4650,0,0,4523,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',8451,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-23 10:18:34','','0000-00-00 00:00:00',0),(8660,0,0,'H','2526','','',8660,0,0,'2025-12-23',7078,170,0,0,157,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8452,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 10:22:09','','0000-00-00 00:00:00',0),(8661,0,0,'H','2526','','',8661,0,0,'2025-12-23',7079,4651,0,0,4524,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8453,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-23 10:23:03','','0000-00-00 00:00:00',0),(8662,0,0,'H','2526','','',8662,0,0,'2025-12-23',7080,4138,0,0,4031,'B',500.00,0.00,'7','utkarsh bank','','95768','','0000-00-00','scan','',8454,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 10:26:00','','0000-00-00 00:00:00',0),(8663,0,0,'H','2526','','',8663,0,0,'2025-12-23',7081,4652,0,0,4525,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8455,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 10:27:55','','0000-00-00 00:00:00',0),(8664,0,0,'H','2526','','P',8664,0,0,'2025-12-23',6913,4558,4558,318,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-23 10:38:11','riya','2025-12-23 10:38:11',0),(8665,0,0,'H','2526','','',8665,0,0,'2025-12-23',7075,4649,0,0,4522,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',8456,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-23 10:41:18','','0000-00-00 00:00:00',0),(8666,0,0,'H','2526','','',8666,0,0,'2025-12-23',7076,4650,0,0,4523,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',8457,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-23 10:49:54','','0000-00-00 00:00:00',0),(8667,0,0,'H','2526','','',8667,0,0,'2025-12-23',7082,4653,0,0,4526,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',8458,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 10:51:10','','0000-00-00 00:00:00',0),(8668,0,0,'H','2526','','',8668,0,0,'2025-12-23',7083,958,0,0,927,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8459,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 10:58:55','','0000-00-00 00:00:00',0),(8669,0,0,'H','2526','','',8669,0,0,'2025-12-23',7085,4654,0,0,4527,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8460,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-23 11:00:27','','0000-00-00 00:00:00',0),(8670,0,0,'H','2526','','',8670,0,0,'2025-12-23',7073,4648,0,0,4521,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',8461,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 11:00:32','','0000-00-00 00:00:00',0),(8671,0,0,'H','2526','','',8671,0,0,'2025-12-23',7086,4655,0,0,4528,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',8462,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 11:05:00','','0000-00-00 00:00:00',0),(8672,0,0,'H','2526','','',8672,0,0,'2025-12-23',7087,4656,0,0,4529,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8463,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-23 11:06:53','','0000-00-00 00:00:00',0),(8673,0,0,'H','2526','','P',8673,0,0,'2025-12-23',6780,4490,4490,310,0,'A',10000.00,0.00,'CSH','','','','','0000-00-00','','',8521,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-23 11:07:51','riya','2025-12-23 13:53:00',0),(8674,0,0,'H','2526','','',8674,0,0,'2025-12-23',7088,4657,0,0,4530,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8464,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-23 11:08:16','','0000-00-00 00:00:00',0),(8675,0,0,'H','2526','','',8675,0,0,'2025-12-23',7075,4649,0,0,4522,'B',600.00,0.00,'CSH','','','','','0000-00-00','','',8465,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-23 11:09:16','','0000-00-00 00:00:00',0),(8676,0,0,'H','2526','','',8676,0,0,'2025-12-23',7089,4658,0,0,4531,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8466,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-23 11:09:17','','0000-00-00 00:00:00',0),(8677,0,0,'H','2526','','',8677,0,0,'2025-12-23',7090,4659,0,0,4532,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8467,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 11:10:16','','0000-00-00 00:00:00',0),(8678,0,0,'H','2526','','P',8678,0,0,'2025-12-23',7084,3601,3601,329,0,'A',10000.00,0.00,'7','KOTAK ','','330984','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-23 11:10:21','riya','2025-12-23 11:10:21',0),(8679,0,0,'H','2526','','',8679,0,0,'2025-12-23',7091,4660,0,0,4533,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8468,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 11:11:57','','0000-00-00 00:00:00',0),(8680,0,0,'H','2526','','',8680,0,0,'2025-12-23',7094,4661,0,0,4534,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8469,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-23 11:16:45','','0000-00-00 00:00:00',0),(8681,0,0,'H','2526','','',8681,0,0,'2025-12-23',7095,4662,0,0,4535,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8470,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-23 11:18:42','','0000-00-00 00:00:00',0),(8682,0,0,'H','2526','','',8682,0,0,'2025-12-23',7096,4663,0,0,4536,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8471,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-23 11:19:45','','0000-00-00 00:00:00',0),(8683,0,0,'H','2526','','',8683,0,0,'2025-12-23',7097,4664,0,0,4537,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8472,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 11:20:26','','0000-00-00 00:00:00',0),(8684,0,0,'H','2526','','',8684,0,0,'2025-12-23',7098,4665,0,0,4538,'B',900.00,0.00,'7','bob','','00827','','0000-00-00','scan','',8473,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 11:23:05','','0000-00-00 00:00:00',0),(8685,0,0,'H','2526','','',8685,0,0,'2025-12-23',7099,4666,0,0,4539,'B',750.00,0.00,'CSH','','','','','0000-00-00','','',8474,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-23 11:25:06','','0000-00-00 00:00:00',0),(8686,0,0,'H','2526','','',8686,0,0,'2025-12-23',7095,4662,0,0,4535,'B',50.00,0.00,'CSH','','','','','0000-00-00','','',8475,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-23 11:28:50','','0000-00-00 00:00:00',0),(8687,0,0,'H','2526','','',8687,0,0,'2025-12-23',7100,4667,0,0,4540,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',8476,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 11:29:05','','0000-00-00 00:00:00',0),(8688,0,0,'H','2526','','',8688,0,0,'2025-12-23',7102,4668,0,0,4541,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8477,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-23 11:35:25','','0000-00-00 00:00:00',0),(8689,0,0,'H','2526','','',8689,0,0,'2025-12-23',7103,3188,0,0,3101,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8478,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 11:36:43','','0000-00-00 00:00:00',0),(8690,0,0,'H','2526','','',8690,0,0,'2025-12-23',7104,3561,0,0,3462,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8479,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 11:38:31','','0000-00-00 00:00:00',0),(8691,0,0,'H','2526','','',8691,0,0,'2025-12-23',7105,4669,0,0,4542,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8480,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-23 11:39:13','','0000-00-00 00:00:00',0),(8692,0,0,'H','2526','','',8692,0,0,'2025-12-23',7107,1473,0,0,1432,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8481,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-23 11:41:05','','0000-00-00 00:00:00',0),(8693,0,0,'H','2526','','',8693,0,0,'2025-12-23',7106,4670,0,0,4543,'B',500.00,0.00,'7','baroda gujrat ','','27764','','0000-00-00','scan     ','',8482,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-23 11:41:37','','0000-00-00 00:00:00',0),(8694,0,0,'H','2526','','',8694,0,0,'2025-12-23',7081,4652,0,0,4525,'B',4500.00,0.00,'7','sbi','','45431','','0000-00-00','scan','',8483,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 11:42:14','','0000-00-00 00:00:00',0),(8695,0,0,'H','2526','','',8695,0,0,'2025-12-23',7108,4671,0,0,4544,'B',750.00,0.00,'7','BOB BANK','','38024','','0000-00-00','scan ','',8484,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-23 11:46:48','','0000-00-00 00:00:00',0),(8696,0,0,'H','2526','','',8696,0,0,'2025-12-23',7109,4672,0,0,4545,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8485,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-23 11:47:45','','0000-00-00 00:00:00',0),(8697,0,0,'H','2526','','',8697,0,0,'2025-12-23',7110,4673,0,0,4546,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8486,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 11:48:12','','0000-00-00 00:00:00',0),(8698,0,0,'H','2526','','',8698,0,0,'2025-12-23',7111,4674,0,0,4547,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8487,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-23 11:49:24','','0000-00-00 00:00:00',0),(8699,0,0,'H','2526','','',8699,0,0,'2025-12-23',7113,622,0,0,592,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8488,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-23 11:52:11','','0000-00-00 00:00:00',0),(8700,0,0,'H','2526','','',8700,0,0,'2025-12-23',7114,4675,0,0,4548,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8489,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 11:52:23','','0000-00-00 00:00:00',0),(8701,0,0,'H','2526','','P',8701,0,0,'2025-12-23',6898,4550,4550,315,0,'A',8450.00,0.00,'CSH','','','','','0000-00-00','','',8491,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-23 11:52:24','riya','2025-12-23 11:53:09',0),(8702,0,0,'H','2526','','',8702,0,0,'2025-12-23',7115,4676,0,0,4549,'B',900.00,0.00,'7','hdfc','','55616','','0000-00-00','scan','',8492,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 11:55:36','','0000-00-00 00:00:00',0),(8703,0,0,'H','2526','','',8703,0,0,'2025-12-23',7116,3353,0,0,3265,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8493,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-23 11:57:59','','0000-00-00 00:00:00',0),(8704,0,0,'H','2526','','',8704,0,0,'2025-12-23',7093,2586,0,0,2529,'B',300.00,0.00,'7','BOB','','37827','','0000-00-00','SCAN','',8494,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-23 12:00:00','','0000-00-00 00:00:00',0),(8705,0,0,'H','2526','','',8705,0,0,'2025-12-23',7091,4660,0,0,4533,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',8495,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 12:00:49','','0000-00-00 00:00:00',0),(8706,0,0,'H','2526','','',8706,0,0,'2025-12-23',7090,4659,0,0,4532,'B',3000.00,0.00,'CSH','','','','','0000-00-00','','',8496,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 12:01:36','','0000-00-00 00:00:00',0),(8707,0,0,'H','2526','','',8707,0,0,'2025-12-23',7117,4677,0,0,4550,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8497,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-23 12:10:07','','0000-00-00 00:00:00',0),(8708,0,0,'H','2526','','',8708,0,0,'2025-12-23',7118,4374,0,0,4259,'B',400.00,0.00,'7','sbi','','07331','','0000-00-00','scan','',8498,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 12:11:37','','0000-00-00 00:00:00',0),(8709,0,0,'H','2526','','',8709,0,0,'2025-12-23',7119,4678,0,0,4551,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8499,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-23 12:12:43','','0000-00-00 00:00:00',0),(8710,0,0,'H','2526','','',8710,0,0,'2025-12-23',7120,4679,0,0,4552,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8500,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-23 12:14:57','','0000-00-00 00:00:00',0),(8711,0,0,'H','2526','','P',8711,0,0,'2025-12-23',4017,2937,2937,187,0,'A',30000.00,0.00,'7','BOI','','458901','','0000-00-00','','',0,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-23 12:18:36','riya','2025-12-23 12:18:36',0),(8712,0,0,'H','2526','','',8712,0,0,'2025-12-23',7100,4667,0,0,4540,'B',4000.00,0.00,'7','bob','','07730','','0000-00-00','scan','',8501,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 12:20:07','','0000-00-00 00:00:00',0),(8713,0,0,'H','2526','','',8713,0,0,'2025-12-23',7072,4647,0,0,4520,'B',2200.00,0.00,'CSH','','','','','0000-00-00','','',8502,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-23 12:22:12','','0000-00-00 00:00:00',0),(8714,0,0,'H','2526','','',8714,0,0,'2025-12-23',7118,4374,0,0,4259,'B',400.00,0.00,'7','SBI BANK','','02180','','0000-00-00','scan ','',8503,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-23 12:25:30','','0000-00-00 00:00:00',0),(8715,0,0,'H','2526','','',8715,0,0,'2025-12-23',7121,4680,0,0,4553,'B',900.00,0.00,'7','kotak bank','','19347','','0000-00-00','scan','',8504,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 12:31:39','','0000-00-00 00:00:00',0),(8716,0,0,'H','2526','','',8716,0,0,'2025-12-23',7122,3394,0,0,3305,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8505,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-23 12:35:09','','0000-00-00 00:00:00',0),(8717,0,0,'H','2526','','',8717,0,0,'2025-12-23',7124,4682,0,0,4555,'B',700.00,0.00,'7','hdfc','','95924','','0000-00-00','scan','',8506,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 12:37:03','','0000-00-00 00:00:00',0),(8718,0,0,'H','2526','','',8718,0,0,'2025-12-23',7094,4661,0,0,4534,'B',4800.00,0.00,'CSH','','','','','0000-00-00','','',8507,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 12:39:33','','0000-00-00 00:00:00',0),(8719,0,0,'H','2526','','',8719,0,0,'2025-12-23',7125,4298,0,0,4185,'B',400.00,0.00,'7','ICICI BANK','','41157','','0000-00-00','scan ','',8508,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-23 12:43:34','','0000-00-00 00:00:00',0),(8720,0,0,'H','2526','','',8720,0,0,'2025-12-23',7126,1356,0,0,1317,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8509,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 12:56:07','','0000-00-00 00:00:00',0),(8721,0,0,'H','2526','','',8721,0,0,'2025-12-23',7123,4681,0,0,4554,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',8510,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-23 13:03:37','','0000-00-00 00:00:00',0),(8722,0,0,'H','2526','','',8722,0,0,'2025-12-23',7126,1356,0,0,1317,'B',300.00,0.00,'CSH','','','','','0000-00-00','','',8511,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-23 13:05:12','','0000-00-00 00:00:00',0),(8723,0,0,'H','2526','','',8723,0,0,'2025-12-23',7098,4665,0,0,4538,'B',4500.00,0.00,'CSH','','','','','0000-00-00','','',8512,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 13:05:46','','0000-00-00 00:00:00',0),(8724,0,0,'H','2526','','',8724,0,0,'2025-12-23',7115,4676,0,0,4549,'B',4500.00,0.00,'7','hdfc','','35572','','0000-00-00','scan','',8513,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 13:08:56','','0000-00-00 00:00:00',0),(8725,0,0,'H','2526','','',8725,0,0,'2025-12-23',7128,58,0,0,51,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8514,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 13:12:32','','0000-00-00 00:00:00',0),(8726,0,0,'H','2526','','',8726,0,0,'2025-12-23',7129,4683,0,0,4556,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8515,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 13:17:43','','0000-00-00 00:00:00',0),(8727,0,0,'H','2526','','',8727,0,0,'2025-12-23',7119,4678,0,0,4551,'B',4000.00,0.00,'CSH','','','','','0000-00-00','','',8516,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 13:23:34','','0000-00-00 00:00:00',0),(8728,0,0,'H','2526','','',8728,0,0,'2025-12-23',7124,4682,0,0,4555,'B',400.00,0.00,'7','hdfc','','64541','','0000-00-00','scan','',8517,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 13:39:50','','0000-00-00 00:00:00',0),(8729,0,0,'H','2526','','',8729,0,0,'2025-12-23',7130,4684,0,0,4557,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8518,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 13:47:40','','0000-00-00 00:00:00',0),(8730,0,0,'H','2526','','P',8730,0,0,'2025-12-23',6780,4490,4490,310,0,'A',16500.00,0.00,'CSH','','','','','0000-00-00','','',8521,'N','P','N',0,'N','','0000-00-00 00:00:00','riya','2025-12-23 13:52:07','riya','2025-12-23 13:53:00',0),(8731,0,0,'H','2526','','',8731,0,0,'2025-12-23',7131,4685,0,0,4558,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8520,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 13:52:24','','0000-00-00 00:00:00',0),(8732,0,0,'H','2526','','',8732,0,0,'2025-12-23',7132,2507,0,0,2448,'B',1000.00,0.00,'CSH','','','','','0000-00-00','','',8522,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 16:16:16','','0000-00-00 00:00:00',0),(8733,0,0,'H','2526','','',8733,0,0,'2025-12-23',7133,782,0,0,750,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8523,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 16:28:59','','0000-00-00 00:00:00',0),(8734,0,0,'H','2526','','',8734,0,0,'2025-12-23',7134,4686,0,0,4559,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8524,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 16:38:31','','0000-00-00 00:00:00',0),(8735,0,0,'H','2526','','',8735,0,0,'2025-12-23',7135,4687,0,0,4560,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8525,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 16:42:38','','0000-00-00 00:00:00',0),(8736,0,0,'H','2526','','',8736,0,0,'2025-12-23',7136,2055,0,0,2004,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8526,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 16:44:18','','0000-00-00 00:00:00',0),(8737,0,0,'H','2526','','',8737,0,0,'2025-12-23',7137,1542,0,0,1501,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8527,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 16:46:35','','0000-00-00 00:00:00',0),(8738,0,0,'H','2526','','',8738,0,0,'2025-12-23',7138,667,0,0,637,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8528,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 16:55:04','','0000-00-00 00:00:00',0),(8739,0,0,'H','2526','','',8739,0,0,'2025-12-23',7139,3048,0,0,2970,'B',500.00,0.00,'7','BOI','','61111','','0000-00-00','scan','',8530,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 17:00:59','','0000-00-00 00:00:00',0),(8740,0,0,'H','2526','','',8740,0,0,'2025-12-23',7140,4688,0,0,4561,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',8532,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 17:16:12','','0000-00-00 00:00:00',0),(8741,0,0,'H','2526','','',8741,0,0,'2025-12-23',7141,4689,0,0,4562,'B',1300.00,0.00,'CSH','','','','','0000-00-00','','',8533,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-23 17:21:41','','0000-00-00 00:00:00',0),(8742,0,0,'H','2526','','',8742,0,0,'2025-12-23',7142,1496,0,0,1455,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8534,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-23 17:22:59','','0000-00-00 00:00:00',0),(8743,0,0,'H','2526','','',8743,0,0,'2025-12-23',7135,4687,0,0,4560,'B',4000.00,0.00,'7','sbi','','29304','','0000-00-00','scan','',8535,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 17:26:42','','0000-00-00 00:00:00',0),(8744,0,0,'H','2526','','',8744,0,0,'2025-12-23',7143,2662,0,0,2600,'B',500.00,0.00,'7','RNSB','','48157','','0000-00-00','scan','',8536,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 17:31:19','','0000-00-00 00:00:00',0),(8745,0,0,'H','2526','','',8745,0,0,'2025-12-23',7144,4187,0,0,4078,'B',100.00,0.00,'CSH','','','','','0000-00-00','','',8537,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-23 17:31:50','','0000-00-00 00:00:00',0),(8746,0,0,'H','2526','','',8746,0,0,'2025-12-23',7145,4440,0,0,4327,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8538,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 17:33:21','','0000-00-00 00:00:00',0),(8747,0,0,'H','2526','','',8747,0,0,'2025-12-23',7146,4690,0,0,4563,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8539,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 17:35:41','','0000-00-00 00:00:00',0),(8748,0,0,'H','2526','','',8748,0,0,'2025-12-23',7147,4691,0,0,4564,'B',900.00,0.00,'CSH','','','','','0000-00-00','','',8540,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 17:36:48','','0000-00-00 00:00:00',0),(8749,0,0,'H','2526','','',8749,0,0,'2025-12-23',7149,4692,0,0,4565,'B',500.00,0.00,'CSH','','','','','0000-00-00','','',8541,'N','','N',0,'N','','0000-00-00 00:00:00','manshi','2025-12-23 17:42:52','','0000-00-00 00:00:00',0),(8750,0,0,'H','2526','','',8750,0,0,'2025-12-23',7134,4686,0,0,4559,'B',4200.00,0.00,'CSH','','','','','0000-00-00','','',8542,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 17:43:30','','0000-00-00 00:00:00',0),(8751,0,0,'H','2526','','',8751,0,0,'2025-12-23',7150,900,0,0,868,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8543,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-23 17:44:32','','0000-00-00 00:00:00',0),(8752,0,0,'H','2526','','',8752,0,0,'2025-12-23',6899,4285,0,316,4172,'D',-2000.00,0.00,'CSH','','','','','0000-00-00','','',8544,'N','P','N',0,'N','','0000-00-00 00:00:00','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(8753,0,0,'H','2526','','',8753,0,0,'2025-12-23',7151,4693,0,0,4566,'B',800.00,0.00,'CSH','','','','','0000-00-00','','',8545,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 17:46:01','','0000-00-00 00:00:00',0),(8754,0,0,'H','2526','','',8754,0,0,'2025-12-23',7152,4066,0,0,3958,'B',400.00,0.00,'CSH','','','','','0000-00-00','','',8546,'N','','N',0,'N','','0000-00-00 00:00:00','drashti','2025-12-23 17:46:39','','0000-00-00 00:00:00',0),(8755,0,0,'H','2526','','',8755,0,0,'2025-12-23',7153,2808,0,0,2738,'B',200.00,0.00,'CSH','','','','','0000-00-00','','',8547,'N','','N',0,'N','','0000-00-00 00:00:00','janvi','2025-12-23 17:47:00','','0000-00-00 00:00:00',0),(8756,0,0,'H','2526','','',8756,0,0,'2025-12-23',7154,4694,0,0,4567,'B',700.00,0.00,'CSH','','','','','0000-00-00','','',8548,'N','','N',0,'N','','0000-00-00 00:00:00','reception','2025-12-23 17:47:11','','0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `receipt` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `receipt_backup`
--

DROP TABLE IF EXISTS `receipt_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `receipt_backup` (
  `fyear` varchar(4) NOT NULL,
  `amount_receipt_no` int(11) NOT NULL,
  `receipt_no` int(11) NOT NULL,
  `date` date NOT NULL,
  `visit_id` int(11) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `abp_flag` char(1) NOT NULL COMMENT 'advance,bill,pending flag',
  `receipt_amt` int(11) NOT NULL,
  `payment_mode` varchar(3) NOT NULL,
  `payment_agency` varchar(25) NOT NULL,
  `payment_number` varchar(20) NOT NULL,
  `payment_note` varchar(30) NOT NULL,
  `id` int(11) NOT NULL,
  `receipt_print_flag` char(1) NOT NULL COMMENT 'Defaults to N.Turns to P if printed',
  `receipt_cancel_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `cancelled_receipt_no` int(11) NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  `IsAdjusted` tinyint(1) DEFAULT '0' COMMENT 'Indicates whether revenue adjusted or not?',
  PRIMARY KEY (`fyear`,`amount_receipt_no`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `receipt_backup`
--

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

--
-- Table structure for table `receipt_header`
--

DROP TABLE IF EXISTS `receipt_header`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `receipt_header` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `fyear` varchar(4) NOT NULL,
  `receipt_cat` char(1) NOT NULL,
  `ipd_opd` varchar(2) NOT NULL,
  `receipt_no` int(11) NOT NULL,
  `bill_category` varchar(6) NOT NULL COMMENT 'Like Cash bill, Credit Bill',
  `bill_amendment_no` tinyint(4) NOT NULL,
  `receipt_date` date NOT NULL,
  `bill_due_date` date NOT NULL,
  `patient_reg_id` bigint(20) NOT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `bill_to` int(11) NOT NULL,
  `dept_id` varchar(5) NOT NULL,
  `package_service_code` varchar(4) NOT NULL,
  `ref_by` int(11) NOT NULL COMMENT 'ref by used in pathology bill',
  `gross_amt` float(9,2) NOT NULL,
  `service_level_discount` float(9,2) NOT NULL,
  `gst_amount` float(9,2) NOT NULL,
  `receipt_amt` float(9,2) NOT NULL COMMENT 'gross_amt - service_level_discount',
  `receipt_discount` float(9,2) NOT NULL,
  `adjustment` float(9,2) NOT NULL,
  `authorization_detail` varchar(100) NOT NULL,
  `write_off_amount` float(9,2) NOT NULL,
  `write_off_date` date NOT NULL,
  `write_off_by` varchar(20) NOT NULL,
  `write_off_remark` varchar(50) DEFAULT NULL,
  `disc_remark` varchar(100) NOT NULL,
  `promo_no` int(11) NOT NULL,
  `discount_type` varchar(6) NOT NULL,
  `payment_mode` varchar(6) DEFAULT NULL,
  `payment_agency` varchar(25) NOT NULL,
  `payment_card_number` varchar(20) NOT NULL,
  `payment_number` varchar(25) NOT NULL,
  `approval_code` varchar(30) NOT NULL,
  `payment_note` varchar(30) NOT NULL,
  `receipt_paid` float(9,2) NOT NULL,
  `advance` int(11) NOT NULL,
  `mou_discount` float NOT NULL,
  `mou_discount_date` date NOT NULL,
  `paid` varchar(1) NOT NULL,
  `is_credit_bill` enum('Y','N') NOT NULL DEFAULT 'N',
  `print_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `draft_bill` char(1) NOT NULL,
  `bill_type` enum('D','L','R','N') NOT NULL DEFAULT 'N' COMMENT 'D = Direct Bill\r\nN = Normal Bill',
  `receipt_due` float(9,2) NOT NULL,
  `room_cat` varchar(11) NOT NULL,
  `cancellation_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `cancellation_remark` varchar(50) NOT NULL,
  `newreceipt_no` varchar(11) NOT NULL,
  `oldreceipt_no` varchar(11) NOT NULL,
  `receipt_flag` char(1) NOT NULL,
  `is_exported_to_xml` enum('N','Y') NOT NULL DEFAULT 'N',
  `is_writeoff_exported_to_tally` enum('N','Y') NOT NULL DEFAULT 'N',
  `is_mou_exported_to_tally` enum('N','Y') NOT NULL DEFAULT 'N',
  `is_revenue_share_processed` enum('N','Y') NOT NULL DEFAULT 'N',
  `revenue_share_processed_on` date NOT NULL,
  `revenue_calculation_month_year` date NOT NULL,
  `is_revenue_finalized` enum('N','Y') NOT NULL DEFAULT 'N',
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  `IsAdjusted` tinyint(1) DEFAULT '0' COMMENT 'Indicates whether revenue adjusted or not?',
  PRIMARY KEY (`id`,`company_id`,`branch_id`,`fyear`,`receipt_cat`,`ipd_opd`,`receipt_no`),
  KEY `receipt_header_idx_id` (`visit_id`),
  KEY `patient_reg_id` (`patient_reg_id`),
  KEY `visit_id` (`visit_id`),
  KEY `patient_id` (`patient_id`),
  KEY `receipt_date` (`receipt_date`),
  KEY `idx_rh_filter` (`fyear`,`receipt_cat`,`ipd_opd`,`receipt_no`),
  KEY `ipd_reg_id` (`ipd_reg_id`)
) ENGINE=InnoDB AUTO_INCREMENT=8549 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `receipt_header`
--

LOCK TABLES `receipt_header` WRITE;
/*!40000 ALTER TABLE `receipt_header` DISABLE KEYS */;
INSERT INTO `receipt_header` VALUES (1,0,0,1,'2526','H','O',1,'',0,'2025-10-08','0000-00-00',1,0,1,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 10:04:25','','0000-00-00 00:00:00',0),(2,0,0,2,'2526','H','O',2,'',0,'2025-10-08','0000-00-00',2,0,2,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 10:10:20','','0000-00-00 00:00:00',0),(3,0,0,3,'2526','H','O',3,'',0,'2025-10-08','0000-00-00',3,0,3,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 10:15:12','','0000-00-00 00:00:00',0),(4,0,0,4,'2526','H','O',4,'',0,'2025-10-08','0000-00-00',4,0,4,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 10:16:17','','0000-00-00 00:00:00',0),(5,0,0,5,'2526','H','O',5,'',0,'2025-10-08','0000-00-00',5,0,5,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOI','','82830','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 10:17:33','','0000-00-00 00:00:00',0),(6,0,0,7,'2526','H','O',6,'',0,'2025-10-08','0000-00-00',7,0,7,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 10:21:28','','0000-00-00 00:00:00',0),(7,0,0,8,'2526','H','O',7,'',0,'2025-10-08','0000-00-00',8,0,8,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 10:22:20','','0000-00-00 00:00:00',0),(8,0,0,9,'2526','H','O',8,'',0,'2025-10-08','0000-00-00',9,0,9,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 10:22:55','','0000-00-00 00:00:00',0),(9,0,0,10,'2526','H','O',9,'',0,'2025-10-08','0000-00-00',10,0,10,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 10:24:23','','0000-00-00 00:00:00',0),(10,0,0,11,'2526','H','O',10,'',0,'2025-10-08','0000-00-00',11,0,11,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','05264','','scan  ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 10:25:42','','0000-00-00 00:00:00',0),(11,0,0,13,'2526','H','O',11,'',0,'2025-10-08','0000-00-00',13,0,13,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 10:25:53','','0000-00-00 00:00:00',0),(12,0,0,6,'2526','H','O',12,'',0,'2025-10-08','0000-00-00',6,0,6,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 10:27:21','','0000-00-00 00:00:00',0),(13,0,0,14,'2526','H','O',13,'',0,'2025-10-08','0000-00-00',14,0,14,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 10:27:31','','0000-00-00 00:00:00',0),(14,0,0,15,'2526','H','O',14,'',0,'2025-10-08','0000-00-00',15,0,15,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 10:32:24','','0000-00-00 00:00:00',0),(15,0,0,16,'2526','H','O',15,'',0,'2025-10-08','0000-00-00',16,0,16,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 10:34:22','','0000-00-00 00:00:00',0),(16,0,0,17,'2526','H','O',16,'',0,'2025-10-08','0000-00-00',17,0,17,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-08 10:51:12','','0000-00-00 00:00:00',0),(17,0,0,18,'2526','H','O',17,'',0,'2025-10-08','0000-00-00',18,0,18,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 10:53:29','','0000-00-00 00:00:00',0),(18,0,0,19,'2526','H','O',18,'',0,'2025-10-08','0000-00-00',19,0,19,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 10:56:01','','0000-00-00 00:00:00',0),(19,0,0,20,'2526','H','O',19,'',0,'2025-10-08','0000-00-00',20,0,20,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 10:57:19','','0000-00-00 00:00:00',0),(20,0,0,24,'2526','H','O',20,'',0,'2025-10-08','0000-00-00',23,0,24,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-08 11:09:02','','0000-00-00 00:00:00',0),(21,0,0,25,'2526','H','O',21,'',0,'2025-10-08','0000-00-00',24,0,25,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-08 11:10:57','','0000-00-00 00:00:00',0),(22,0,0,26,'2526','H','O',22,'',0,'2025-10-08','0000-00-00',25,0,26,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 11:11:55','','0000-00-00 00:00:00',0),(23,0,0,29,'2526','H','O',23,'',0,'2025-10-08','0000-00-00',27,0,29,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 11:14:30','','0000-00-00 00:00:00',0),(24,0,0,30,'2526','H','O',24,'',0,'2025-10-08','0000-00-00',28,0,30,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT ','HO 64','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 11:17:05','shweta','2025-10-08 12:47:10',0),(25,0,0,31,'2526','H','O',25,'',0,'2025-10-08','0000-00-00',29,0,31,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 11:19:05','','0000-00-00 00:00:00',0),(26,0,0,32,'2526','H','O',26,'',0,'2025-10-08','0000-00-00',30,0,32,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 11:19:18','','0000-00-00 00:00:00',0),(27,0,0,23,'2526','H','O',27,'',0,'2025-10-08','0000-00-00',22,0,23,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-08 11:22:25','','0000-00-00 00:00:00',0),(28,0,0,35,'2526','H','O',28,'',0,'2025-10-08','0000-00-00',32,0,35,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 11:25:41','','0000-00-00 00:00:00',0),(29,0,0,38,'2526','H','O',29,'',0,'2025-10-08','0000-00-00',34,0,38,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 11:31:02','','0000-00-00 00:00:00',0),(30,0,0,39,'2526','H','O',30,'',0,'2025-10-08','0000-00-00',35,0,39,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 11:32:51','','0000-00-00 00:00:00',0),(31,0,0,40,'2526','H','O',31,'',0,'2025-10-08','0000-00-00',36,0,40,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 11:33:19','','0000-00-00 00:00:00',0),(32,0,0,41,'2526','H','O',32,'',0,'2025-10-08','0000-00-00',37,0,41,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 11:40:15','','0000-00-00 00:00:00',0),(33,0,0,43,'2526','H','O',33,'',0,'2025-10-08','0000-00-00',39,0,43,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 11:41:52','','0000-00-00 00:00:00',0),(34,0,0,42,'2526','H','O',34,'',0,'2025-10-08','0000-00-00',38,0,42,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','80788','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 11:42:47','','0000-00-00 00:00:00',0),(35,0,0,27,'2526','H','O',35,'',0,'2025-10-08','0000-00-00',26,0,27,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-08 11:43:11','','0000-00-00 00:00:00',0),(36,0,0,44,'2526','H','O',36,'',0,'2025-10-08','0000-00-00',40,0,44,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 11:43:54','','0000-00-00 00:00:00',0),(37,0,0,45,'2526','H','O',37,'',0,'2025-10-08','0000-00-00',41,0,45,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 11:44:04','','0000-00-00 00:00:00',0),(38,0,0,46,'2526','H','O',38,'',0,'2025-10-08','0000-00-00',42,0,46,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 11:46:35','','0000-00-00 00:00:00',0),(39,0,0,5,'2526','H','O',39,'',0,'2025-10-08','0000-00-00',5,0,5,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','80788','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 11:48:12','','0000-00-00 00:00:00',0),(40,0,0,47,'2526','H','O',40,'',0,'2025-10-08','0000-00-00',43,0,47,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 11:49:44','','0000-00-00 00:00:00',0),(41,0,0,12,'2526','H','O',41,'',0,'2025-10-08','0000-00-00',12,0,12,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 11:52:13','','0000-00-00 00:00:00',0),(42,0,0,49,'2526','H','O',42,'',0,'2025-10-08','0000-00-00',44,0,49,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','hdfc ','','17006','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 11:54:03','','0000-00-00 00:00:00',0),(43,0,0,7,'2526','H','O',43,'',0,'2025-10-08','0000-00-00',7,0,7,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 11:55:12','','0000-00-00 00:00:00',0),(44,0,0,53,'2526','H','O',44,'',0,'2025-10-08','0000-00-00',47,0,53,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 11:58:24','','0000-00-00 00:00:00',0),(45,0,0,55,'2526','H','O',45,'',0,'2025-10-08','0000-00-00',49,0,55,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 12:00:59','','0000-00-00 00:00:00',0),(46,0,0,54,'2526','H','O',46,'',0,'2025-10-08','0000-00-00',48,0,54,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 72','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 12:02:31','shweta','2025-10-08 13:03:16',0),(47,0,0,50,'2526','H','O',47,'',0,'2025-10-08','0000-00-00',45,0,50,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 12:02:50','','0000-00-00 00:00:00',0),(48,0,0,52,'2526','H','O',48,'',0,'2025-10-08','0000-00-00',46,0,52,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 12:04:53','','0000-00-00 00:00:00',0),(49,0,0,47,'2526','H','O',49,'',0,'2025-10-08','0000-00-00',43,0,47,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 12:05:36','','0000-00-00 00:00:00',0),(50,0,0,25,'2526','H','O',50,'',0,'2025-10-08','0000-00-00',24,0,25,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 12:06:15','','0000-00-00 00:00:00',0),(51,0,0,58,'2526','H','O',51,'',0,'2025-10-08','0000-00-00',51,0,58,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 12:08:56','','0000-00-00 00:00:00',0),(52,0,0,59,'2526','H','O',52,'',0,'2025-10-08','0000-00-00',52,0,59,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 12:09:44','','0000-00-00 00:00:00',0),(53,0,0,57,'2526','H','O',53,'',0,'2025-10-08','0000-00-00',50,0,57,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-08 12:09:51','','0000-00-00 00:00:00',0),(54,0,0,61,'2526','H','O',54,'',0,'2025-10-08','0000-00-00',53,0,61,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 68','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-08 12:16:53','shweta','2025-10-08 12:54:52',0),(55,0,0,38,'2526','H','O',55,'',0,'2025-10-08','0000-00-00',34,0,38,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 12:23:13','','0000-00-00 00:00:00',0),(56,0,0,65,'2526','H','O',56,'',0,'2025-10-08','0000-00-00',55,0,65,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 12:24:15','','0000-00-00 00:00:00',0),(57,0,0,67,'2526','H','O',57,'',0,'2025-10-08','0000-00-00',56,0,67,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 12:26:12','','0000-00-00 00:00:00',0),(58,0,0,68,'2526','H','O',58,'',0,'2025-10-08','0000-00-00',57,0,68,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 12:26:23','','0000-00-00 00:00:00',0),(59,0,0,69,'2526','H','O',59,'',0,'2025-10-08','0000-00-00',58,0,69,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 12:27:55','','0000-00-00 00:00:00',0),(60,0,0,70,'2526','H','O',60,'',0,'2025-10-08','0000-00-00',59,0,70,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 12:31:35','','0000-00-00 00:00:00',0),(61,0,0,71,'2526','H','O',61,'',0,'2025-10-08','0000-00-00',60,0,71,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 12:32:19','','0000-00-00 00:00:00',0),(62,0,0,73,'2526','H','O',62,'',0,'2025-10-08','0000-00-00',62,0,73,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 12:37:32','','0000-00-00 00:00:00',0),(63,0,0,72,'2526','H','O',63,'',0,'2025-10-08','0000-00-00',61,0,72,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOI','','95540','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 12:44:06','','0000-00-00 00:00:00',0),(64,0,0,30,'2526','H','O',64,'',0,'2025-10-08','0000-00-00',28,0,30,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-08','Y','N','N','','N',0.00,'','Y','200 DISCOUNT ','','HO 24','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 12:47:10','shweta','2025-10-08 12:47:40',0),(65,0,0,30,'2526','H','O',65,'',0,'2025-10-08','0000-00-00',28,0,30,0,'D06','',0,500.00,0.00,0.00,500.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 12:49:26','','0000-00-00 00:00:00',0),(66,0,0,52,'2526','H','O',66,'',0,'2025-10-08','0000-00-00',46,0,52,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','INDUSLAND BANK','','92771','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 12:50:35','','0000-00-00 00:00:00',0),(67,0,0,71,'2526','H','O',67,'',0,'2025-10-08','0000-00-00',60,0,71,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 12:52:03','','0000-00-00 00:00:00',0),(68,0,0,61,'2526','H','O',68,'',0,'2025-10-08','0000-00-00',53,0,61,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-08','Y','N','N','','N',0.00,'','Y','FOC','','HO 54','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 12:54:52','shweta','2025-10-08 12:55:42',0),(69,0,0,75,'2526','H','O',69,'',0,'2025-10-08','0000-00-00',64,0,75,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 73','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 13:01:09','shweta','2025-10-08 13:14:50',0),(70,0,0,61,'2526','H','O',70,'',0,'2025-10-08','0000-00-00',53,0,61,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 13:02:31','','0000-00-00 00:00:00',0),(71,0,0,76,'2526','H','O',71,'',0,'2025-10-08','0000-00-00',65,0,76,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','AXIS','','88791','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 13:02:32','','0000-00-00 00:00:00',0),(72,0,0,54,'2526','H','O',72,'',0,'2025-10-08','0000-00-00',48,0,54,0,'D02','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-08','Y','N','N','','N',0.00,'','Y','FOC','','HO 46','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 13:03:16','shweta','2025-10-08 13:03:35',0),(73,0,0,75,'2526','H','O',73,'',0,'2025-10-08','0000-00-00',64,0,75,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-10-08','Y','N','N','','N',0.00,'','Y','FOC','','HO 69','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 13:14:50','shweta','2025-10-08 13:15:06',0),(74,0,0,77,'2526','H','O',74,'',0,'2025-10-08','0000-00-00',66,0,77,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 13:15:08','','0000-00-00 00:00:00',0),(75,0,0,75,'2526','H','O',75,'',0,'2025-10-08','0000-00-00',64,0,75,0,'D27','',0,1050.00,0.00,0.00,1050.00,750.00,0.00,'',0.00,'0000-00-00','',NULL,'Discount Given Instruction By Dr Rathod',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 13:17:03','','0000-00-00 00:00:00',0),(76,0,0,78,'2526','H','O',76,'',0,'2025-10-08','0000-00-00',67,0,78,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','indus bank','','90042','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-08 13:19:56','','0000-00-00 00:00:00',0),(77,0,0,79,'2526','H','O',77,'',0,'2025-10-08','0000-00-00',68,0,79,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 82','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 13:23:25','priyanshi','2025-10-08 14:27:56',0),(78,0,0,64,'2526','H','O',78,'',0,'2025-10-08','0000-00-00',54,0,64,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 13:26:24','','0000-00-00 00:00:00',0),(79,0,0,74,'2526','H','O',79,'',0,'2025-10-08','0000-00-00',63,0,74,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 13:35:52','','0000-00-00 00:00:00',0),(80,0,0,69,'2526','H','O',80,'',0,'2025-10-08','0000-00-00',58,0,69,0,'D06','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 13:49:57','','0000-00-00 00:00:00',0),(81,0,0,76,'2526','H','O',81,'',0,'2025-10-08','0000-00-00',65,0,76,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','AXIS','','08597','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 14:19:27','','0000-00-00 00:00:00',0),(82,0,0,79,'2526','H','O',82,'',0,'2025-10-08','0000-00-00',68,0,79,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-08','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 77','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-08 14:27:56','priyanshi','2025-10-08 14:28:09',0),(83,0,0,79,'2526','H','O',83,'',0,'2025-10-08','0000-00-00',68,0,79,0,'D06','',0,500.00,0.00,0.00,500.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-08 14:28:44','','0000-00-00 00:00:00',0),(84,0,0,80,'2526','H','O',84,'',0,'2025-10-08','0000-00-00',69,0,80,0,'D03','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK BANK','','05286','','scan ',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-08 15:48:02','','0000-00-00 00:00:00',0),(85,0,0,81,'2526','H','O',85,'',0,'2025-10-08','0000-00-00',70,0,81,0,'D03','',0,2900.00,0.00,0.00,2900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK BANK','','05286','','scan ',2900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-08 15:48:39','','0000-00-00 00:00:00',0),(86,0,0,82,'2526','H','O',86,'',0,'2025-10-08','0000-00-00',71,0,82,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-08 15:51:01','','0000-00-00 00:00:00',0),(87,0,0,87,'2526','H','O',87,'',0,'2025-10-08','0000-00-00',76,0,87,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 16:42:55','','0000-00-00 00:00:00',0),(88,0,0,88,'2526','H','O',88,'',0,'2025-10-08','0000-00-00',77,0,88,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 16:51:37','','0000-00-00 00:00:00',0),(89,0,0,89,'2526','H','O',89,'',0,'2025-10-08','0000-00-00',78,0,89,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:01:23','','0000-00-00 00:00:00',0),(90,0,0,90,'2526','H','O',90,'',0,'2025-10-08','0000-00-00',79,0,90,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 17:05:38','','0000-00-00 00:00:00',0),(91,0,0,91,'2526','H','O',91,'',0,'2025-10-08','0000-00-00',80,0,91,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:07:09','','0000-00-00 00:00:00',0),(92,0,0,92,'2526','H','O',92,'',0,'2025-10-08','0000-00-00',81,0,92,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:08:06','','0000-00-00 00:00:00',0),(93,0,0,93,'2526','H','O',93,'',0,'2025-10-08','0000-00-00',82,0,93,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','2','SBI BANK','','3150','','CARD',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:12:07','','0000-00-00 00:00:00',0),(94,0,0,95,'2526','H','O',94,'',0,'2025-10-08','0000-00-00',84,0,95,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:15:27','','0000-00-00 00:00:00',0),(95,0,0,96,'2526','H','O',95,'',0,'2025-10-08','0000-00-00',85,0,96,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:16:34','','0000-00-00 00:00:00',0),(96,0,0,97,'2526','H','O',96,'',0,'2025-10-08','0000-00-00',86,0,97,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','10087','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 17:17:11','','0000-00-00 00:00:00',0),(97,0,0,98,'2526','H','O',97,'',0,'2025-10-08','0000-00-00',87,0,98,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:20:35','','0000-00-00 00:00:00',0),(98,0,0,99,'2526','H','O',98,'',0,'2025-10-08','0000-00-00',88,0,99,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:26:32','','0000-00-00 00:00:00',0),(99,0,0,100,'2526','H','O',99,'',0,'2025-10-08','0000-00-00',89,0,100,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:27:00','','0000-00-00 00:00:00',0),(100,0,0,101,'2526','H','O',100,'',0,'2025-10-08','0000-00-00',90,0,101,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:28:39','','0000-00-00 00:00:00',0),(101,0,0,87,'2526','H','O',101,'',0,'2025-10-08','0000-00-00',76,0,87,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:29:44','','0000-00-00 00:00:00',0),(102,0,0,102,'2526','H','O',102,'',0,'2025-10-08','0000-00-00',91,0,102,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:30:30','','0000-00-00 00:00:00',0),(103,0,0,103,'2526','H','O',103,'',0,'2025-10-08','0000-00-00',92,0,103,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 17:32:35','','0000-00-00 00:00:00',0),(104,0,0,104,'2526','H','O',104,'',0,'2025-10-08','0000-00-00',93,0,104,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:37:08','','0000-00-00 00:00:00',0),(105,0,0,106,'2526','H','O',105,'',0,'2025-10-08','0000-00-00',95,0,106,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:39:08','','0000-00-00 00:00:00',0),(106,0,0,105,'2526','H','O',106,'',0,'2025-10-08','0000-00-00',94,0,105,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','induslnd bank','','81969','','scan ',900.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 160','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 17:39:26','shweta','2025-10-08 19:55:07',0),(107,0,0,107,'2526','H','O',107,'',0,'2025-10-08','0000-00-00',96,0,107,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:42:24','','0000-00-00 00:00:00',0),(108,0,0,108,'2526','H','O',108,'',0,'2025-10-08','0000-00-00',97,0,108,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:43:35','','0000-00-00 00:00:00',0),(109,0,0,109,'2526','H','O',109,'',0,'2025-10-08','0000-00-00',98,0,109,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-08 17:45:45','','0000-00-00 00:00:00',0),(110,0,0,110,'2526','H','O',110,'',0,'2025-10-08','0000-00-00',99,0,110,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:46:41','','0000-00-00 00:00:00',0),(111,0,0,111,'2526','H','O',111,'',0,'2025-10-08','0000-00-00',100,0,111,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 17:50:14','','0000-00-00 00:00:00',0),(112,0,0,113,'2526','H','O',112,'',0,'2025-10-08','0000-00-00',102,0,113,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-08 17:54:36','','0000-00-00 00:00:00',0),(113,0,0,114,'2526','H','O',113,'',0,'2025-10-08','0000-00-00',103,0,114,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','RBL BANK','','51196','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:55:47','','0000-00-00 00:00:00',0),(114,0,0,115,'2526','H','O',114,'',0,'2025-10-08','0000-00-00',104,0,115,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','33023','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 17:58:15','','0000-00-00 00:00:00',0),(115,0,0,117,'2526','H','O',115,'',0,'2025-10-08','0000-00-00',106,0,117,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-08 18:06:25','','0000-00-00 00:00:00',0),(116,0,0,116,'2526','H','O',116,'',0,'2025-10-08','0000-00-00',105,0,116,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','IDFC BANK','','21110','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-08 18:06:34','','0000-00-00 00:00:00',0),(117,0,0,118,'2526','H','O',117,'',0,'2025-10-08','0000-00-00',107,0,118,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-08 18:07:50','','0000-00-00 00:00:00',0),(118,0,0,121,'2526','H','O',118,'',0,'2025-10-08','0000-00-00',110,0,121,0,'D27','',0,450.00,0.00,0.00,450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',450.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 18:11:47','','0000-00-00 00:00:00',0),(119,0,0,120,'2526','H','O',119,'',0,'2025-10-08','0000-00-00',109,0,120,0,'D27','',0,450.00,0.00,0.00,450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',450.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 18:12:16','','0000-00-00 00:00:00',0),(120,0,0,123,'2526','H','O',120,'',0,'2025-10-08','0000-00-00',112,0,123,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 18:13:29','','0000-00-00 00:00:00',0),(121,0,0,124,'2526','H','O',121,'',0,'2025-10-08','0000-00-00',113,0,124,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-08 18:15:14','','0000-00-00 00:00:00',0),(122,0,0,119,'2526','H','O',122,'',0,'2025-10-08','0000-00-00',108,0,119,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOI ','','26674','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-08 18:15:23','','0000-00-00 00:00:00',0),(123,0,0,125,'2526','H','O',123,'',0,'2025-10-08','0000-00-00',114,0,125,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 18:16:18','','0000-00-00 00:00:00',0),(124,0,0,104,'2526','H','O',124,'',0,'2025-10-08','0000-00-00',93,0,104,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 18:16:22','','0000-00-00 00:00:00',0),(125,0,0,128,'2526','H','O',125,'',0,'2025-10-08','0000-00-00',117,0,128,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-08 18:24:28','','0000-00-00 00:00:00',0),(126,0,0,129,'2526','H','O',126,'',0,'2025-10-08','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 18:26:09','','0000-00-00 00:00:00',0),(127,0,0,130,'2526','H','O',127,'',0,'2025-10-08','0000-00-00',119,0,130,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 18:29:43','','0000-00-00 00:00:00',0),(128,0,0,131,'2526','H','O',128,'',0,'2025-10-08','0000-00-00',120,0,131,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 18:30:11','','0000-00-00 00:00:00',0),(129,0,0,132,'2526','H','O',129,'',0,'2025-10-08','0000-00-00',121,0,132,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-08 18:33:54','','0000-00-00 00:00:00',0),(130,0,0,99,'2526','H','O',130,'',0,'2025-10-08','0000-00-00',88,0,99,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 18:35:11','','0000-00-00 00:00:00',0),(131,0,0,133,'2526','H','O',131,'',0,'2025-10-08','0000-00-00',122,0,133,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','RAJKOT NAGRIK ','','39121','','SCAN',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 18:40:11','','0000-00-00 00:00:00',0),(132,0,0,135,'2526','H','O',132,'',0,'2025-10-08','0000-00-00',124,0,135,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 18:42:49','','0000-00-00 00:00:00',0),(133,0,0,136,'2526','H','O',133,'',0,'2025-10-08','0000-00-00',125,0,136,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 18:43:52','','0000-00-00 00:00:00',0),(134,0,0,134,'2526','H','O',134,'',0,'2025-10-08','0000-00-00',123,0,134,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','south indian','','50036','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-08 18:44:11','','0000-00-00 00:00:00',0),(135,0,0,137,'2526','H','O',135,'',0,'2025-10-08','0000-00-00',126,0,137,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 18:46:56','','0000-00-00 00:00:00',0),(136,0,0,109,'2526','H','O',136,'',0,'2025-10-08','0000-00-00',98,0,109,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-08 18:47:58','','0000-00-00 00:00:00',0),(137,0,0,138,'2526','H','O',137,'',0,'2025-10-08','0000-00-00',127,0,138,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 18:48:55','','0000-00-00 00:00:00',0),(138,0,0,122,'2526','H','O',138,'',0,'2025-10-08','0000-00-00',111,0,122,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','union bank','','77731','','scan     ',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 18:50:46','','0000-00-00 00:00:00',0),(139,0,0,139,'2526','H','O',139,'',0,'2025-10-08','0000-00-00',128,0,139,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 18:52:21','','0000-00-00 00:00:00',0),(140,0,0,114,'2526','H','O',140,'',0,'2025-10-08','0000-00-00',103,0,114,0,'D06','',0,3500.00,0.00,0.00,3500.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','KOTAK BANK','','56567','','SCAN',3200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 18:54:31','','0000-00-00 00:00:00',0),(141,0,0,142,'2526','H','O',141,'',0,'2025-10-08','0000-00-00',131,0,142,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 18:56:49','','0000-00-00 00:00:00',0),(142,0,0,141,'2526','H','O',142,'',0,'2025-10-08','0000-00-00',130,0,141,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOI BANK','','95207','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-08 18:57:22','','0000-00-00 00:00:00',0),(143,0,0,140,'2526','H','O',143,'',0,'2025-10-08','0000-00-00',129,0,140,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOI BANK','','95207','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-08 18:57:42','','0000-00-00 00:00:00',0),(144,0,0,106,'2526','H','O',144,'',0,'2025-10-08','0000-00-00',95,0,106,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 18:58:01','','0000-00-00 00:00:00',0),(145,0,0,143,'2526','H','O',145,'',0,'2025-10-08','0000-00-00',132,0,143,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 19:02:48','','0000-00-00 00:00:00',0),(146,0,0,144,'2526','H','O',146,'',0,'2025-10-08','0000-00-00',133,0,144,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-08 19:08:08','','0000-00-00 00:00:00',0),(147,0,0,145,'2526','H','O',147,'',0,'2025-10-08','0000-00-00',134,0,145,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 19:08:47','','0000-00-00 00:00:00',0),(148,0,0,146,'2526','H','O',148,'',0,'2025-10-08','0000-00-00',135,0,146,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','fedral bank','','50370','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-08 19:14:36','','0000-00-00 00:00:00',0),(149,0,0,132,'2526','H','O',149,'',0,'2025-10-08','0000-00-00',121,0,132,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-08 19:16:00','','0000-00-00 00:00:00',0),(150,0,0,147,'2526','H','O',150,'',0,'2025-10-08','0000-00-00',136,0,147,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','fedral bank','','33303','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-08 19:17:26','','0000-00-00 00:00:00',0),(151,0,0,134,'2526','H','O',151,'',0,'2025-10-08','0000-00-00',123,0,134,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SOUTH IND','','52460','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 19:18:12','','0000-00-00 00:00:00',0),(152,0,0,148,'2526','H','O',152,'',0,'2025-10-08','0000-00-00',137,0,148,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-08 19:18:29','','0000-00-00 00:00:00',0),(153,0,0,149,'2526','H','O',153,'',0,'2025-10-08','0000-00-00',138,0,149,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 19:21:20','','0000-00-00 00:00:00',0),(154,0,0,152,'2526','H','O',154,'',0,'2025-10-08','0000-00-00',140,0,151,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-08 19:33:19','','0000-00-00 00:00:00',0),(155,0,0,153,'2526','H','O',155,'',0,'2025-10-08','0000-00-00',141,0,152,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-08 19:35:58','','0000-00-00 00:00:00',0),(156,0,0,151,'2526','H','O',156,'',0,'2025-10-08','0000-00-00',139,0,150,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC BANK','','85143','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-08 19:37:23','','0000-00-00 00:00:00',0),(157,0,0,153,'2526','H','O',157,'',0,'2025-10-08','0000-00-00',141,0,152,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-08 19:43:36','','0000-00-00 00:00:00',0),(158,0,0,155,'2526','H','O',158,'',0,'2025-10-08','0000-00-00',143,0,154,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','31622','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-08 19:46:41','','0000-00-00 00:00:00',0),(159,0,0,157,'2526','H','O',159,'',0,'2025-10-08','0000-00-00',145,0,156,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-08 19:52:34','','0000-00-00 00:00:00',0),(160,0,0,105,'2526','H','O',160,'',0,'2025-10-08','0000-00-00',94,0,105,0,'D06','',0,-900.00,0.00,0.00,-900.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','indusind bank','','81969','','SCAN',-900.00,0,0,'2025-10-08','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 106','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 19:55:07','shweta','2025-10-08 19:57:29',0),(161,0,0,155,'2526','H','O',161,'',0,'2025-10-08','0000-00-00',143,0,154,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-08 19:56:06','','0000-00-00 00:00:00',0),(162,0,0,105,'2526','H','O',162,'',0,'2025-10-08','0000-00-00',94,0,105,0,'D06','',0,900.00,0.00,0.00,900.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','indusind bank','','81969','','SCAN',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 20:00:08','','0000-00-00 00:00:00',0),(163,0,0,156,'2526','H','O',163,'',0,'2025-10-08','0000-00-00',144,0,155,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-08 20:00:57','','0000-00-00 00:00:00',0),(164,0,0,27,'2526','H','O',164,'',0,'2025-10-08','0000-00-00',26,0,27,0,'D14','',0,7000.00,0.00,0.00,7000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',7000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-08 20:08:25','','0000-00-00 00:00:00',0),(165,0,0,158,'2526','H','O',165,'',0,'2025-10-08','0000-00-00',146,0,157,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','indusind bank','','61399','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-08 20:11:19','','0000-00-00 00:00:00',0),(166,0,0,159,'2526','H','O',166,'',0,'2025-10-09','0000-00-00',47,0,53,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 09:02:39','','0000-00-00 00:00:00',0),(167,0,0,160,'2526','H','O',167,'',0,'2025-10-09','0000-00-00',147,0,158,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 09:05:56','','0000-00-00 00:00:00',0),(168,0,0,161,'2526','H','O',168,'',0,'2025-10-09','0000-00-00',148,0,159,0,'D06','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 09:08:50','','0000-00-00 00:00:00',0),(169,0,0,162,'2526','H','O',169,'',0,'2025-10-09','0000-00-00',149,0,160,0,'D27','',0,1600.00,0.00,0.00,1600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 09:12:55','','0000-00-00 00:00:00',0),(170,0,0,163,'2526','H','O',170,'',0,'2025-10-09','0000-00-00',150,0,161,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 193','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 09:28:54','urvashi','2025-10-09 10:58:33',0),(171,0,0,166,'2526','H','O',171,'',0,'2025-10-09','0000-00-00',151,0,163,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 09:44:17','','0000-00-00 00:00:00',0),(172,0,0,160,'2526','H','O',172,'',0,'2025-10-09','0000-00-00',147,0,158,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 09:48:17','','0000-00-00 00:00:00',0),(173,0,0,167,'2526','H','O',173,'',0,'2025-10-09','0000-00-00',152,0,164,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 09:48:31','','0000-00-00 00:00:00',0),(174,0,0,169,'2526','H','O',174,'',0,'2025-10-09','0000-00-00',153,0,166,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 10:11:59','','0000-00-00 00:00:00',0),(175,0,0,170,'2526','H','O',175,'',0,'2025-10-09','0000-00-00',154,0,167,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','AXIS BANK','','02085','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 10:18:30','','0000-00-00 00:00:00',0),(176,0,0,171,'2526','H','O',176,'',0,'2025-10-09','0000-00-00',155,0,168,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 10:27:58','','0000-00-00 00:00:00',0),(177,0,0,159,'2526','H','O',177,'',0,'2025-10-09','0000-00-00',47,0,53,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 10:34:36','','0000-00-00 00:00:00',0),(178,0,0,172,'2526','H','O',178,'',0,'2025-10-09','0000-00-00',156,0,169,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 10:35:26','','0000-00-00 00:00:00',0),(179,0,0,173,'2526','H','O',179,'',0,'2025-10-09','0000-00-00',157,0,170,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 10:36:51','','0000-00-00 00:00:00',0),(180,0,0,174,'2526','H','O',180,'',0,'2025-10-09','0000-00-00',158,0,171,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 10:39:25','','0000-00-00 00:00:00',0),(181,0,0,175,'2526','H','O',181,'',0,'2025-10-09','0000-00-00',159,0,172,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 10:40:35','','0000-00-00 00:00:00',0),(182,0,0,176,'2526','H','O',182,'',0,'2025-10-09','0000-00-00',160,0,173,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 10:43:09','','0000-00-00 00:00:00',0),(183,0,0,177,'2526','H','O',183,'',0,'2025-10-09','0000-00-00',161,0,174,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 10:44:57','','0000-00-00 00:00:00',0),(184,0,0,178,'2526','H','O',184,'',0,'2025-10-09','0000-00-00',162,0,175,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 10:47:29','','0000-00-00 00:00:00',0),(185,0,0,179,'2526','H','O',185,'',0,'2025-10-09','0000-00-00',163,0,176,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-09 10:48:56','','0000-00-00 00:00:00',0),(186,0,0,180,'2526','H','O',186,'',0,'2025-10-09','0000-00-00',164,0,177,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','76303','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 10:50:44','','0000-00-00 00:00:00',0),(187,0,0,182,'2526','H','O',187,'',0,'2025-10-09','0000-00-00',166,0,179,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 10:52:33','','0000-00-00 00:00:00',0),(188,0,0,184,'2526','H','O',188,'',0,'2025-10-09','0000-00-00',168,0,181,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 10:53:11','','0000-00-00 00:00:00',0),(189,0,0,181,'2526','H','O',189,'',0,'2025-10-09','0000-00-00',165,0,178,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','83458','','scan  ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 10:53:42','','0000-00-00 00:00:00',0),(190,0,0,183,'2526','H','O',190,'',0,'2025-10-09','0000-00-00',167,0,180,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','38458','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 10:54:03','','0000-00-00 00:00:00',0),(191,0,0,185,'2526','H','O',191,'',0,'2025-10-09','0000-00-00',169,0,182,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 10:55:19','','0000-00-00 00:00:00',0),(192,0,0,186,'2526','H','O',192,'',0,'2025-10-09','0000-00-00',170,0,183,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 10:58:07','','0000-00-00 00:00:00',0),(193,0,0,163,'2526','H','O',193,'',0,'2025-10-09','0000-00-00',150,0,161,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-10-09','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 170','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 10:58:33','urvashi','2025-10-09 10:58:57',0),(194,0,0,187,'2526','H','O',194,'',0,'2025-10-09','0000-00-00',171,0,184,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 10:59:34','','0000-00-00 00:00:00',0),(195,0,0,163,'2526','H','O',195,'',0,'2025-10-09','0000-00-00',150,0,161,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 11:01:51','','0000-00-00 00:00:00',0),(196,0,0,163,'2526','H','O',196,'',0,'2025-10-09','0000-00-00',150,0,161,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','57053','','scan ',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 11:02:48','','0000-00-00 00:00:00',0),(197,0,0,167,'2526','H','O',197,'',0,'2025-10-09','0000-00-00',152,0,164,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 11:03:25','','0000-00-00 00:00:00',0),(198,0,0,188,'2526','H','O',198,'',0,'2025-10-09','0000-00-00',172,0,185,0,'D27','',0,1800.00,0.00,0.00,1800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 11:04:14','','0000-00-00 00:00:00',0),(199,0,0,189,'2526','H','O',199,'',0,'2025-10-09','0000-00-00',173,0,186,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 11:07:30','','0000-00-00 00:00:00',0),(200,0,0,190,'2526','H','O',200,'',0,'2025-10-09','0000-00-00',174,0,187,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 11:10:17','','0000-00-00 00:00:00',0),(201,0,0,191,'2526','H','O',201,'',0,'2025-10-09','0000-00-00',175,0,188,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 11:12:57','','0000-00-00 00:00:00',0),(202,0,0,192,'2526','H','O',202,'',0,'2025-10-09','0000-00-00',176,0,189,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 11:14:09','','0000-00-00 00:00:00',0),(203,0,0,171,'2526','H','O',203,'',0,'2025-10-09','0000-00-00',155,0,168,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 11:19:35','','0000-00-00 00:00:00',0),(204,0,0,194,'2526','H','O',204,'',0,'2025-10-09','0000-00-00',177,0,190,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 11:21:55','','0000-00-00 00:00:00',0),(205,0,0,182,'2526','H','O',205,'',0,'2025-10-09','0000-00-00',166,0,179,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 11:22:11','','0000-00-00 00:00:00',0),(206,0,0,196,'2526','H','O',206,'',0,'2025-10-09','0000-00-00',179,0,192,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 11:25:29','','0000-00-00 00:00:00',0),(207,0,0,195,'2526','H','O',207,'',0,'2025-10-09','0000-00-00',178,0,191,0,'D03','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-09 11:28:03','','0000-00-00 00:00:00',0),(208,0,0,198,'2526','H','O',208,'',0,'2025-10-09','0000-00-00',181,0,194,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 11:30:46','','0000-00-00 00:00:00',0),(209,0,0,199,'2526','H','O',209,'',0,'2025-10-09','0000-00-00',182,0,195,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','ICICI','','74446','','scan     ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 11:34:50','','0000-00-00 00:00:00',0),(210,0,0,200,'2526','H','O',210,'',0,'2025-10-09','0000-00-00',183,0,196,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 11:37:38','','0000-00-00 00:00:00',0),(211,0,0,201,'2526','H','O',211,'',0,'2025-10-09','0000-00-00',184,0,197,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 11:40:02','','0000-00-00 00:00:00',0),(212,0,0,203,'2526','H','O',212,'',0,'2025-10-09','0000-00-00',186,0,199,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 11:43:49','','0000-00-00 00:00:00',0),(213,0,0,197,'2526','H','O',213,'',0,'2025-10-09','0000-00-00',180,0,193,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 11:44:52','','0000-00-00 00:00:00',0),(214,0,0,174,'2526','H','O',214,'',0,'2025-10-09','0000-00-00',158,0,171,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 11:45:41','','0000-00-00 00:00:00',0),(215,0,0,202,'2526','H','O',215,'',0,'2025-10-09','0000-00-00',185,0,198,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 11:46:32','','0000-00-00 00:00:00',0),(216,0,0,204,'2526','H','O',216,'',0,'2025-10-09','0000-00-00',187,0,200,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 11:46:44','','0000-00-00 00:00:00',0),(217,0,0,205,'2526','H','O',217,'',0,'2025-10-09','0000-00-00',188,0,201,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 11:50:36','','0000-00-00 00:00:00',0),(218,0,0,206,'2526','H','O',218,'',0,'2025-10-09','0000-00-00',189,0,202,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 11:53:08','','0000-00-00 00:00:00',0),(219,0,0,207,'2526','H','O',219,'',0,'2025-10-09','0000-00-00',190,0,203,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 11:56:03','','0000-00-00 00:00:00',0),(220,0,0,201,'2526','H','O',220,'',0,'2025-10-09','0000-00-00',184,0,197,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 11:57:49','','0000-00-00 00:00:00',0),(221,0,0,180,'2526','H','O',221,'',0,'2025-10-09','0000-00-00',164,0,177,0,'D06','',0,7000.00,0.00,0.00,7000.00,1200.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','67715','','SCAN',5800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 12:02:55','','0000-00-00 00:00:00',0),(222,0,0,208,'2526','H','O',222,'',0,'2025-10-09','0000-00-00',191,0,204,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 12:04:58','','0000-00-00 00:00:00',0),(223,0,0,209,'2526','H','O',223,'',0,'2025-10-09','0000-00-00',192,0,205,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 12:07:59','','0000-00-00 00:00:00',0),(224,0,0,200,'2526','H','O',224,'',0,'2025-10-09','0000-00-00',183,0,196,0,'D06','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 12:09:21','','0000-00-00 00:00:00',0),(225,0,0,210,'2526','H','O',225,'',0,'2025-10-09','0000-00-00',193,0,206,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 12:13:03','','0000-00-00 00:00:00',0),(226,0,0,211,'2526','H','O',226,'',0,'2025-10-09','0000-00-00',194,0,207,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 12:17:10','','0000-00-00 00:00:00',0),(227,0,0,212,'2526','H','O',227,'',0,'2025-10-09','0000-00-00',195,0,208,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-09 12:18:36','','0000-00-00 00:00:00',0),(228,0,0,213,'2526','H','O',228,'',0,'2025-10-09','0000-00-00',196,0,209,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 12:20:05','','0000-00-00 00:00:00',0),(229,0,0,214,'2526','H','O',229,'',0,'2025-10-09','0000-00-00',197,0,210,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 12:23:10','','0000-00-00 00:00:00',0),(230,0,0,185,'2526','H','O',230,'',0,'2025-10-09','0000-00-00',169,0,182,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 12:28:01','','0000-00-00 00:00:00',0),(231,0,0,215,'2526','H','O',231,'',0,'2025-10-09','0000-00-00',198,0,211,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 12:31:42','','0000-00-00 00:00:00',0),(232,0,0,217,'2526','H','O',232,'',0,'2025-10-09','0000-00-00',199,0,212,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 12:43:43','','0000-00-00 00:00:00',0),(233,0,0,218,'2526','H','O',233,'',0,'2025-10-09','0000-00-00',200,0,213,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','88357','','scan  ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 12:46:12','','0000-00-00 00:00:00',0),(234,0,0,219,'2526','H','O',234,'',0,'2025-10-09','0000-00-00',201,0,214,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 12:54:57','','0000-00-00 00:00:00',0),(235,0,0,220,'2526','H','O',235,'',0,'2025-10-09','0000-00-00',202,0,215,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 13:03:05','','0000-00-00 00:00:00',0),(236,0,0,221,'2526','H','O',236,'',0,'2025-10-09','0000-00-00',203,0,216,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 237','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 13:07:00','janvi','2025-10-09 13:42:46',0),(237,0,0,221,'2526','H','O',237,'',0,'2025-10-09','0000-00-00',203,0,216,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-10-09','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 236','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 13:42:46','janvi','2025-10-09 13:43:11',0),(238,0,0,222,'2526','H','O',238,'',0,'2025-10-09','0000-00-00',204,0,217,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 13:43:50','','0000-00-00 00:00:00',0),(239,0,0,223,'2526','H','O',239,'',0,'2025-10-09','0000-00-00',205,0,218,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 13:46:53','','0000-00-00 00:00:00',0),(240,0,0,219,'2526','H','O',240,'',0,'2025-10-09','0000-00-00',201,0,214,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 13:54:15','','0000-00-00 00:00:00',0),(241,0,0,225,'2526','H','O',241,'',0,'2025-10-09','0000-00-00',206,0,219,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 265','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 16:29:52','janvi','2025-10-09 18:05:36',0),(242,0,0,227,'2526','H','O',242,'',0,'2025-10-09','0000-00-00',208,0,221,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 16:42:13','','0000-00-00 00:00:00',0),(243,0,0,226,'2526','H','O',243,'',0,'2025-10-09','0000-00-00',207,0,220,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 16:42:17','','0000-00-00 00:00:00',0),(244,0,0,228,'2526','H','O',244,'',0,'2025-10-09','0000-00-00',209,0,222,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 16:45:49','','0000-00-00 00:00:00',0),(245,0,0,229,'2526','H','O',245,'',0,'2025-10-09','0000-00-00',210,0,223,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 16:54:46','','0000-00-00 00:00:00',0),(246,0,0,230,'2526','H','O',246,'',0,'2025-10-09','0000-00-00',211,0,224,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 16:55:07','','0000-00-00 00:00:00',0),(247,0,0,231,'2526','H','O',247,'',0,'2025-10-09','0000-00-00',212,0,225,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 17:02:02','','0000-00-00 00:00:00',0),(248,0,0,232,'2526','H','O',248,'',0,'2025-10-09','0000-00-00',213,0,226,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 17:11:47','','0000-00-00 00:00:00',0),(249,0,0,233,'2526','H','O',249,'',0,'2025-10-09','0000-00-00',214,0,227,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 17:16:02','','0000-00-00 00:00:00',0),(250,0,0,234,'2526','H','O',250,'',0,'2025-10-09','0000-00-00',215,0,228,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 17:19:50','','0000-00-00 00:00:00',0),(251,0,0,226,'2526','H','O',251,'',0,'2025-10-09','0000-00-00',207,0,220,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 17:19:54','','0000-00-00 00:00:00',0),(252,0,0,235,'2526','H','O',252,'',0,'2025-10-09','0000-00-00',216,0,229,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 17:24:27','','0000-00-00 00:00:00',0),(253,0,0,237,'2526','H','O',253,'',0,'2025-10-09','0000-00-00',218,0,231,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 17:28:14','','0000-00-00 00:00:00',0),(254,0,0,238,'2526','H','O',254,'',0,'2025-10-09','0000-00-00',219,0,232,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 17:29:13','','0000-00-00 00:00:00',0),(255,0,0,239,'2526','H','O',255,'',0,'2025-10-09','0000-00-00',220,0,233,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 17:33:16','','0000-00-00 00:00:00',0),(256,0,0,241,'2526','H','O',256,'',0,'2025-10-09','0000-00-00',222,0,235,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 17:43:17','','0000-00-00 00:00:00',0),(257,0,0,243,'2526','H','O',257,'',0,'2025-10-09','0000-00-00',89,0,100,0,'D06','',0,4900.00,0.00,0.00,4900.00,900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 17:50:37','','0000-00-00 00:00:00',0),(258,0,0,244,'2526','H','O',258,'',0,'2025-10-09','0000-00-00',224,0,237,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 17:50:55','','0000-00-00 00:00:00',0),(259,0,0,242,'2526','H','O',259,'',0,'2025-10-09','0000-00-00',223,0,236,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 17:51:58','','0000-00-00 00:00:00',0),(260,0,0,229,'2526','H','O',260,'',0,'2025-10-09','0000-00-00',210,0,223,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 17:56:12','','0000-00-00 00:00:00',0),(261,0,0,245,'2526','H','O',261,'',0,'2025-10-09','0000-00-00',225,0,238,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 17:56:56','','0000-00-00 00:00:00',0),(262,0,0,247,'2526','H','O',262,'',0,'2025-10-09','0000-00-00',226,0,240,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 18:01:21','','0000-00-00 00:00:00',0),(263,0,0,248,'2526','H','O',263,'',0,'2025-10-09','0000-00-00',227,0,241,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 18:02:23','','0000-00-00 00:00:00',0),(264,0,0,240,'2526','H','O',264,'',0,'2025-10-09','0000-00-00',221,0,234,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 18:04:26','','0000-00-00 00:00:00',0),(265,0,0,225,'2526','H','O',265,'',0,'2025-10-09','0000-00-00',206,0,219,0,'D02','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-09','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 241','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 18:05:36','janvi','2025-10-09 18:05:58',0),(266,0,0,250,'2526','H','O',266,'',0,'2025-10-09','0000-00-00',229,0,243,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 286','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 18:06:07','shweta','2025-10-09 18:57:59',0),(267,0,0,249,'2526','H','O',267,'',0,'2025-10-09','0000-00-00',228,0,242,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 18:06:18','','0000-00-00 00:00:00',0),(268,0,0,251,'2526','H','O',268,'',0,'2025-10-09','0000-00-00',230,0,244,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 287','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 18:07:51','shweta','2025-10-09 18:58:53',0),(269,0,0,252,'2526','H','O',269,'',0,'2025-10-09','0000-00-00',231,0,245,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 18:12:09','','0000-00-00 00:00:00',0),(270,0,0,253,'2526','H','O',270,'',0,'2025-10-09','0000-00-00',232,0,246,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 18:12:21','','0000-00-00 00:00:00',0),(271,0,0,254,'2526','H','O',271,'',0,'2025-10-09','0000-00-00',233,0,247,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 18:13:10','','0000-00-00 00:00:00',0),(272,0,0,255,'2526','H','O',272,'',0,'2025-10-09','0000-00-00',111,0,122,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','UNION BANK','','26167','','scan ',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 18:15:14','','0000-00-00 00:00:00',0),(273,0,0,238,'2526','H','O',273,'',0,'2025-10-09','0000-00-00',219,0,232,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','64325','','SCAN',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 18:16:47','','0000-00-00 00:00:00',0),(274,0,0,256,'2526','H','O',274,'',0,'2025-10-09','0000-00-00',234,0,248,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 18:18:44','','0000-00-00 00:00:00',0),(275,0,0,258,'2526','H','O',275,'',0,'2025-10-09','0000-00-00',235,0,250,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 18:24:16','','0000-00-00 00:00:00',0),(276,0,0,259,'2526','H','O',276,'',0,'2025-10-09','0000-00-00',236,0,251,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 18:24:43','','0000-00-00 00:00:00',0),(277,0,0,260,'2526','H','O',277,'',0,'2025-10-09','0000-00-00',237,0,252,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 18:29:23','','0000-00-00 00:00:00',0),(278,0,0,261,'2526','H','O',278,'',0,'2025-10-09','0000-00-00',238,0,253,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 18:32:56','','0000-00-00 00:00:00',0),(279,0,0,262,'2526','H','O',279,'',0,'2025-10-09','0000-00-00',239,0,254,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 18:34:20','','0000-00-00 00:00:00',0),(280,0,0,263,'2526','H','O',280,'',0,'2025-10-09','0000-00-00',240,0,255,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 18:34:44','','0000-00-00 00:00:00',0),(281,0,0,249,'2526','H','O',281,'',0,'2025-10-09','0000-00-00',228,0,242,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 18:38:49','','0000-00-00 00:00:00',0),(282,0,0,264,'2526','H','O',282,'',0,'2025-10-09','0000-00-00',241,0,256,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 18:48:49','','0000-00-00 00:00:00',0),(283,0,0,265,'2526','H','O',283,'',0,'2025-10-09','0000-00-00',242,0,257,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 18:49:18','','0000-00-00 00:00:00',0),(284,0,0,266,'2526','H','O',284,'',0,'2025-10-09','0000-00-00',243,0,258,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 18:51:03','','0000-00-00 00:00:00',0),(285,0,0,267,'2526','H','O',285,'',0,'2025-10-09','0000-00-00',244,0,259,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','INDUSLAND BANK','','78679','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 18:57:03','','0000-00-00 00:00:00',0),(286,0,0,250,'2526','H','O',286,'',0,'2025-10-09','0000-00-00',229,0,243,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-09','Y','N','N','','N',0.00,'','Y','FOC','','HO 266','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 18:57:59','shweta','2025-10-09 18:58:27',0),(287,0,0,251,'2526','H','O',287,'',0,'2025-10-09','0000-00-00',230,0,244,0,'D06','',0,-900.00,0.00,0.00,-900.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-900.00,0,0,'2025-10-09','Y','N','N','','N',0.00,'','Y','FOC','','HO 268','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 18:58:53','shweta','2025-10-09 18:59:07',0),(288,0,0,268,'2526','H','O',288,'',0,'2025-10-09','0000-00-00',140,0,151,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 19:00:10','','0000-00-00 00:00:00',0),(289,0,0,269,'2526','H','O',289,'',0,'2025-10-09','0000-00-00',245,0,260,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 19:01:17','','0000-00-00 00:00:00',0),(290,0,0,270,'2526','H','O',290,'',0,'2025-10-09','0000-00-00',246,0,261,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 19:01:37','','0000-00-00 00:00:00',0),(291,0,0,271,'2526','H','O',291,'',0,'2025-10-09','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 19:02:13','','0000-00-00 00:00:00',0),(292,0,0,273,'2526','H','O',292,'',0,'2025-10-09','0000-00-00',248,0,263,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 19:11:55','','0000-00-00 00:00:00',0),(293,0,0,275,'2526','H','O',293,'',0,'2025-10-09','0000-00-00',250,0,265,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 19:13:12','','0000-00-00 00:00:00',0),(294,0,0,274,'2526','H','O',294,'',0,'2025-10-09','0000-00-00',249,0,264,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 19:13:48','','0000-00-00 00:00:00',0),(295,0,0,276,'2526','H','O',295,'',0,'2025-10-09','0000-00-00',251,0,266,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','INSTRUCTION BY DR A RATHOD','HO 302','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 19:15:50','urvashi','2025-10-09 19:35:38',0),(296,0,0,277,'2526','H','O',296,'',0,'2025-10-09','0000-00-00',252,0,267,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','57680','','SCAN',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 19:19:15','','0000-00-00 00:00:00',0),(297,0,0,278,'2526','H','O',297,'',0,'2025-10-09','0000-00-00',253,0,268,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 19:26:41','','0000-00-00 00:00:00',0),(298,0,0,245,'2526','H','O',298,'',0,'2025-10-09','0000-00-00',225,0,238,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','62211','','SCAN',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 19:27:17','','0000-00-00 00:00:00',0),(299,0,0,279,'2526','H','O',299,'',0,'2025-10-09','0000-00-00',254,0,269,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 19:28:12','','0000-00-00 00:00:00',0),(300,0,0,280,'2526','H','O',300,'',0,'2025-10-09','0000-00-00',255,0,270,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 19:32:58','','0000-00-00 00:00:00',0),(301,0,0,281,'2526','H','O',301,'',0,'2025-10-09','0000-00-00',256,0,271,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 19:35:02','','0000-00-00 00:00:00',0),(302,0,0,276,'2526','H','O',302,'',0,'2025-10-09','0000-00-00',251,0,266,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-10-09','Y','N','N','','N',0.00,'','Y','INSTRUCTION BY DR A RATHOD','','HO 295','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 19:35:38','urvashi','2025-10-09 19:36:03',0),(303,0,0,232,'2526','H','O',303,'',0,'2025-10-09','0000-00-00',213,0,226,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-09 19:41:09','','0000-00-00 00:00:00',0),(304,0,0,272,'2526','H','O',304,'',0,'2025-10-09','0000-00-00',247,0,262,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 19:51:15','','0000-00-00 00:00:00',0),(305,0,0,282,'2526','H','O',305,'',0,'2025-10-09','0000-00-00',257,0,272,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-09 19:52:58','','0000-00-00 00:00:00',0),(306,0,0,269,'2526','H','O',306,'',0,'2025-10-09','0000-00-00',245,0,260,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-09 20:24:44','','0000-00-00 00:00:00',0),(307,0,0,285,'2526','H','O',307,'',0,'2025-10-10','0000-00-00',258,0,275,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 09:04:09','','0000-00-00 00:00:00',0),(308,0,0,287,'2526','H','O',308,'',0,'2025-10-10','0000-00-00',260,0,37,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 314','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-10 09:07:58','janvi','2025-10-10 09:21:07',0),(309,0,0,288,'2526','H','O',309,'',0,'2025-10-10','0000-00-00',261,0,277,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','15310','','scan',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-10 09:10:38','','0000-00-00 00:00:00',0),(310,0,0,289,'2526','H','O',310,'',0,'2025-10-10','0000-00-00',47,0,53,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-10 09:12:16','','0000-00-00 00:00:00',0),(311,0,0,290,'2526','H','O',311,'',0,'2025-10-10','0000-00-00',241,0,256,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-10 09:13:05','','0000-00-00 00:00:00',0),(312,0,0,291,'2526','H','O',312,'',0,'2025-10-10','0000-00-00',262,0,278,0,'D27','',0,1150.00,0.00,0.00,1150.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','rnsb','','74808','','scan',1150.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-10 09:18:11','','0000-00-00 00:00:00',0),(313,0,0,292,'2526','H','O',313,'',0,'2025-10-10','0000-00-00',147,0,158,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 09:18:20','','0000-00-00 00:00:00',0),(314,0,0,287,'2526','H','O',314,'',0,'2025-10-10','0000-00-00',260,0,37,0,'D02','',0,-100.00,0.00,0.00,-100.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-100.00,0,0,'2025-10-10','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 308','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 09:21:07','janvi','2025-10-10 09:21:44',0),(315,0,0,293,'2526','H','O',315,'',0,'2025-10-10','0000-00-00',147,0,158,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 09:22:42','','0000-00-00 00:00:00',0),(316,0,0,294,'2526','H','O',316,'',0,'2025-10-10','0000-00-00',263,0,279,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-10 09:26:26','','0000-00-00 00:00:00',0),(317,0,0,295,'2526','H','O',317,'',0,'2025-10-10','0000-00-00',264,0,280,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-10 09:56:22','','0000-00-00 00:00:00',0),(318,0,0,296,'2526','H','O',318,'',0,'2025-10-10','0000-00-00',265,0,281,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 10:01:31','','0000-00-00 00:00:00',0),(319,0,0,297,'2526','H','O',319,'',0,'2025-10-10','0000-00-00',266,0,282,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 10:08:56','','0000-00-00 00:00:00',0),(320,0,0,298,'2526','H','O',320,'',0,'2025-10-10','0000-00-00',267,0,283,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 10:11:29','','0000-00-00 00:00:00',0),(321,0,0,299,'2526','H','O',321,'',0,'2025-10-10','0000-00-00',268,0,284,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 10:15:36','','0000-00-00 00:00:00',0),(322,0,0,300,'2526','H','O',322,'',0,'2025-10-10','0000-00-00',269,0,285,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 10:19:14','','0000-00-00 00:00:00',0),(323,0,0,302,'2526','H','O',323,'',0,'2025-10-10','0000-00-00',271,0,287,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 10:28:52','','0000-00-00 00:00:00',0),(324,0,0,301,'2526','H','O',324,'',0,'2025-10-10','0000-00-00',270,0,286,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','45165','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 10:29:23','','0000-00-00 00:00:00',0),(325,0,0,303,'2526','H','O',325,'',0,'2025-10-10','0000-00-00',272,0,288,0,'D06','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 10:38:01','','0000-00-00 00:00:00',0),(326,0,0,304,'2526','H','O',326,'',0,'2025-10-10','0000-00-00',273,0,289,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 10:41:20','','0000-00-00 00:00:00',0),(327,0,0,305,'2526','H','O',327,'',0,'2025-10-10','0000-00-00',274,0,290,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 10:48:26','','0000-00-00 00:00:00',0),(328,0,0,306,'2526','H','O',328,'',0,'2025-10-10','0000-00-00',275,0,291,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 10:55:55','','0000-00-00 00:00:00',0),(329,0,0,286,'2526','H','O',329,'',0,'2025-10-10','0000-00-00',259,0,276,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 11:01:58','','0000-00-00 00:00:00',0),(330,0,0,309,'2526','H','O',330,'',0,'2025-10-10','0000-00-00',278,0,294,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 11:04:21','','0000-00-00 00:00:00',0),(331,0,0,308,'2526','H','O',331,'',0,'2025-10-10','0000-00-00',277,0,293,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 11:05:30','','0000-00-00 00:00:00',0),(332,0,0,310,'2526','H','O',332,'',0,'2025-10-10','0000-00-00',279,0,295,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 11:06:18','','0000-00-00 00:00:00',0),(333,0,0,311,'2526','H','O',333,'',0,'2025-10-10','0000-00-00',280,0,296,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 11:14:05','','0000-00-00 00:00:00',0),(334,0,0,312,'2526','H','O',334,'',0,'2025-10-10','0000-00-00',281,0,297,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 11:14:06','','0000-00-00 00:00:00',0),(335,0,0,314,'2526','H','O',335,'',0,'2025-10-10','0000-00-00',283,0,299,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 11:16:29','','0000-00-00 00:00:00',0),(336,0,0,315,'2526','H','O',336,'',0,'2025-10-10','0000-00-00',284,0,300,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 11:18:17','','0000-00-00 00:00:00',0),(337,0,0,316,'2526','H','O',337,'',0,'2025-10-10','0000-00-00',285,0,301,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 11:19:13','','0000-00-00 00:00:00',0),(338,0,0,313,'2526','H','O',338,'',0,'2025-10-10','0000-00-00',282,0,298,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-10 11:19:16','','0000-00-00 00:00:00',0),(339,0,0,318,'2526','H','O',339,'',0,'2025-10-10','0000-00-00',286,0,302,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-10 11:20:52','','0000-00-00 00:00:00',0),(340,0,0,320,'2526','H','O',340,'',0,'2025-10-10','0000-00-00',288,0,304,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 11:22:55','','0000-00-00 00:00:00',0),(341,0,0,319,'2526','H','O',341,'',0,'2025-10-10','0000-00-00',287,0,303,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 11:22:57','','0000-00-00 00:00:00',0),(342,0,0,321,'2526','H','O',342,'',0,'2025-10-10','0000-00-00',289,0,305,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 11:25:58','','0000-00-00 00:00:00',0),(343,0,0,322,'2526','H','O',343,'',0,'2025-10-10','0000-00-00',290,0,306,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 11:26:14','','0000-00-00 00:00:00',0),(344,0,0,323,'2526','H','O',344,'',0,'2025-10-10','0000-00-00',291,0,307,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 11:27:29','','0000-00-00 00:00:00',0),(345,0,0,324,'2526','H','O',345,'',0,'2025-10-10','0000-00-00',292,0,308,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 11:35:17','','0000-00-00 00:00:00',0),(346,0,0,325,'2526','H','O',346,'',0,'2025-10-10','0000-00-00',293,0,309,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','sbi','','35302','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 11:40:02','','0000-00-00 00:00:00',0),(347,0,0,326,'2526','H','O',347,'',0,'2025-10-10','0000-00-00',294,0,310,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','AXIS','','90171','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 11:46:20','','0000-00-00 00:00:00',0),(348,0,0,311,'2526','H','O',348,'',0,'2025-10-10','0000-00-00',280,0,296,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 11:49:24','','0000-00-00 00:00:00',0),(349,0,0,327,'2526','H','O',349,'',0,'2025-10-10','0000-00-00',295,0,311,0,'D27','',0,450.00,0.00,0.00,450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',450.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 11:51:42','','0000-00-00 00:00:00',0),(350,0,0,319,'2526','H','O',350,'',0,'2025-10-10','0000-00-00',287,0,303,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','30777','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 11:53:49','','0000-00-00 00:00:00',0),(351,0,0,329,'2526','H','O',351,'',0,'2025-10-10','0000-00-00',297,0,313,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 12:03:07','','0000-00-00 00:00:00',0),(352,0,0,330,'2526','H','O',352,'',0,'2025-10-10','0000-00-00',298,0,314,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 12:04:50','','0000-00-00 00:00:00',0),(353,0,0,332,'2526','H','O',353,'',0,'2025-10-10','0000-00-00',300,0,316,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 12:08:28','','0000-00-00 00:00:00',0),(354,0,0,331,'2526','H','O',354,'',0,'2025-10-10','0000-00-00',299,0,315,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK BANK','','20501','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 12:09:34','','0000-00-00 00:00:00',0),(355,0,0,333,'2526','H','O',355,'',0,'2025-10-10','0000-00-00',301,0,317,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-10 12:09:48','','0000-00-00 00:00:00',0),(356,0,0,334,'2526','H','O',356,'',0,'2025-10-10','0000-00-00',302,0,318,0,'D03','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-10 12:13:19','','0000-00-00 00:00:00',0),(357,0,0,335,'2526','H','O',357,'',0,'2025-10-10','0000-00-00',303,0,319,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 12:27:25','','0000-00-00 00:00:00',0),(358,0,0,324,'2526','H','O',358,'',0,'2025-10-10','0000-00-00',292,0,308,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 12:37:41','','0000-00-00 00:00:00',0),(359,0,0,336,'2526','H','O',359,'',0,'2025-10-10','0000-00-00',304,0,320,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 12:46:47','','0000-00-00 00:00:00',0),(360,0,0,337,'2526','H','O',360,'',0,'2025-10-10','0000-00-00',305,0,321,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 12:56:54','','0000-00-00 00:00:00',0),(361,0,0,338,'2526','H','O',361,'',0,'2025-10-10','0000-00-00',306,0,322,0,'D27','',0,450.00,0.00,0.00,450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',450.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 12:58:31','','0000-00-00 00:00:00',0),(362,0,0,326,'2526','H','O',362,'',0,'2025-10-10','0000-00-00',294,0,310,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','FEDERAL BANK','','53081','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 13:07:49','','0000-00-00 00:00:00',0),(363,0,0,340,'2526','H','O',363,'',0,'2025-10-10','0000-00-00',308,0,324,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 13:10:30','','0000-00-00 00:00:00',0),(364,0,0,341,'2526','H','O',364,'',0,'2025-10-10','0000-00-00',309,0,325,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','47263','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 13:18:35','','0000-00-00 00:00:00',0),(365,0,0,332,'2526','H','O',365,'',0,'2025-10-10','0000-00-00',300,0,316,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 13:20:29','','0000-00-00 00:00:00',0),(366,0,0,342,'2526','H','O',366,'',0,'2025-10-10','0000-00-00',310,0,326,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 13:20:50','','0000-00-00 00:00:00',0),(367,0,0,343,'2526','H','O',367,'',0,'2025-10-10','0000-00-00',311,0,327,0,'D03','',0,1700.00,0.00,0.00,1700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-10 13:44:21','','0000-00-00 00:00:00',0),(368,0,0,341,'2526','H','O',368,'',0,'2025-10-10','0000-00-00',309,0,325,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','65259','','SCAN',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 13:44:47','','0000-00-00 00:00:00',0),(369,0,0,344,'2526','H','O',369,'',0,'2025-10-10','0000-00-00',312,0,328,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','43177','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-10 13:51:36','','0000-00-00 00:00:00',0),(370,0,0,345,'2526','H','O',370,'',0,'2025-10-10','0000-00-00',313,0,329,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 14:01:28','','0000-00-00 00:00:00',0),(371,0,0,346,'2526','H','O',371,'',0,'2025-10-10','0000-00-00',291,0,307,0,'D02','',0,4000.00,0.00,0.00,4000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-10 15:24:37','','0000-00-00 00:00:00',0),(372,0,0,347,'2526','H','O',372,'',0,'2025-10-10','0000-00-00',314,0,330,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','hdfc','','65937','','scan ',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-10 16:02:18','','0000-00-00 00:00:00',0),(373,0,0,348,'2526','H','O',373,'',0,'2025-10-10','0000-00-00',315,0,331,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-10 16:21:44','','0000-00-00 00:00:00',0),(374,0,0,352,'2526','H','O',374,'',0,'2025-10-10','0000-00-00',319,0,335,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 16:37:13','','0000-00-00 00:00:00',0),(375,0,0,351,'2526','H','O',375,'',0,'2025-10-10','0000-00-00',318,0,334,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 16:37:34','','0000-00-00 00:00:00',0),(376,0,0,353,'2526','H','O',376,'',0,'2025-10-10','0000-00-00',320,0,336,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 16:40:24','','0000-00-00 00:00:00',0),(377,0,0,354,'2526','H','O',377,'',0,'2025-10-10','0000-00-00',321,0,337,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 16:41:09','','0000-00-00 00:00:00',0),(378,0,0,356,'2526','H','O',378,'',0,'2025-10-10','0000-00-00',323,0,339,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 16:50:51','','0000-00-00 00:00:00',0),(379,0,0,357,'2526','H','O',379,'',0,'2025-10-10','0000-00-00',324,0,340,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 16:51:09','','0000-00-00 00:00:00',0),(380,0,0,360,'2526','H','O',380,'',0,'2025-10-10','0000-00-00',327,0,343,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-10 17:02:49','','0000-00-00 00:00:00',0),(381,0,0,361,'2526','H','O',381,'',0,'2025-10-10','0000-00-00',328,0,344,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 17:05:13','','0000-00-00 00:00:00',0),(382,0,0,362,'2526','H','O',382,'',0,'2025-10-10','0000-00-00',329,0,345,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-10 17:06:03','','0000-00-00 00:00:00',0),(383,0,0,363,'2526','H','O',383,'',0,'2025-10-10','0000-00-00',330,0,346,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 17:10:30','','0000-00-00 00:00:00',0),(384,0,0,364,'2526','H','O',384,'',0,'2025-10-10','0000-00-00',331,0,347,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi ','','91857','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 17:14:15','','0000-00-00 00:00:00',0),(385,0,0,365,'2526','H','O',385,'',0,'2025-10-10','0000-00-00',332,0,348,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 17:25:30','','0000-00-00 00:00:00',0),(386,0,0,366,'2526','H','O',386,'',0,'2025-10-10','0000-00-00',333,0,349,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 17:26:12','','0000-00-00 00:00:00',0),(387,0,0,368,'2526','H','O',387,'',0,'2025-10-10','0000-00-00',335,0,351,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 17:33:33','','0000-00-00 00:00:00',0),(388,0,0,369,'2526','H','O',388,'',0,'2025-10-10','0000-00-00',336,0,352,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','90947','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 17:36:11','','0000-00-00 00:00:00',0),(389,0,0,371,'2526','H','O',389,'',0,'2025-10-10','0000-00-00',338,0,354,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 17:39:02','','0000-00-00 00:00:00',0),(390,0,0,373,'2526','H','O',390,'',0,'2025-10-10','0000-00-00',340,0,356,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 17:41:41','','0000-00-00 00:00:00',0),(391,0,0,374,'2526','H','O',391,'',0,'2025-10-10','0000-00-00',341,0,357,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','AU SMALL FINAN','','94972','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 17:48:12','','0000-00-00 00:00:00',0),(392,0,0,377,'2526','H','O',392,'',0,'2025-10-10','0000-00-00',344,0,360,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 17:50:30','','0000-00-00 00:00:00',0),(393,0,0,378,'2526','H','O',393,'',0,'2025-10-10','0000-00-00',345,0,361,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','rnsb','','81819','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 17:52:31','','0000-00-00 00:00:00',0),(394,0,0,376,'2526','H','O',394,'',0,'2025-10-10','0000-00-00',343,0,359,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','rnsb','','81819','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 17:52:45','','0000-00-00 00:00:00',0),(395,0,0,375,'2526','H','O',395,'',0,'2025-10-10','0000-00-00',342,0,358,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','rnsb','','81819','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 17:52:59','','0000-00-00 00:00:00',0),(396,0,0,379,'2526','H','O',396,'',0,'2025-10-10','0000-00-00',111,0,122,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 17:54:47','','0000-00-00 00:00:00',0),(397,0,0,380,'2526','H','O',397,'',0,'2025-10-10','0000-00-00',346,0,362,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 17:54:59','','0000-00-00 00:00:00',0),(398,0,0,381,'2526','H','O',398,'',0,'2025-10-10','0000-00-00',347,0,363,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 17:55:03','','0000-00-00 00:00:00',0),(399,0,0,382,'2526','H','O',399,'',0,'2025-10-10','0000-00-00',348,0,364,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','93008','','scan  ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 17:57:48','','0000-00-00 00:00:00',0),(400,0,0,370,'2526','H','O',400,'',0,'2025-10-10','0000-00-00',337,0,353,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-10 17:59:38','','0000-00-00 00:00:00',0),(401,0,0,372,'2526','H','O',401,'',0,'2025-10-10','0000-00-00',339,0,355,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-10 17:59:51','','0000-00-00 00:00:00',0),(402,0,0,383,'2526','H','O',402,'',0,'2025-10-10','0000-00-00',349,0,365,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','sbi ','','04414','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 18:02:21','','0000-00-00 00:00:00',0),(403,0,0,384,'2526','H','O',403,'',0,'2025-10-10','0000-00-00',350,0,366,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 18:04:12','','0000-00-00 00:00:00',0),(404,0,0,364,'2526','H','O',404,'',0,'2025-10-10','0000-00-00',331,0,347,0,'D06','',0,4000.00,0.00,0.00,4000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','68020','','scan ',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 18:05:21','','0000-00-00 00:00:00',0),(405,0,0,385,'2526','H','O',405,'',0,'2025-10-10','0000-00-00',351,0,367,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','7','HDFC','','30103','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 18:11:20','','0000-00-00 00:00:00',0),(406,0,0,386,'2526','H','O',406,'',0,'2025-10-10','0000-00-00',352,0,368,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 18:11:35','','0000-00-00 00:00:00',0),(407,0,0,387,'2526','H','O',407,'',0,'2025-10-10','0000-00-00',353,0,369,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','65625','','scan ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 18:15:18','','0000-00-00 00:00:00',0),(408,0,0,388,'2526','H','O',408,'',0,'2025-10-10','0000-00-00',354,0,370,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','HO 436','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-10 18:19:18','manshi','2025-10-10 19:18:52',0),(409,0,0,389,'2526','H','O',409,'',0,'2025-10-10','0000-00-00',355,0,371,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 18:21:19','','0000-00-00 00:00:00',0),(410,0,0,390,'2526','H','O',410,'',0,'2025-10-10','0000-00-00',356,0,372,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 18:22:08','','0000-00-00 00:00:00',0),(411,0,0,391,'2526','H','O',411,'',0,'2025-10-10','0000-00-00',357,0,373,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 18:23:54','','0000-00-00 00:00:00',0),(412,0,0,392,'2526','H','O',412,'',0,'2025-10-10','0000-00-00',358,0,374,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 18:24:56','','0000-00-00 00:00:00',0),(413,0,0,360,'2526','H','O',413,'',0,'2025-10-10','0000-00-00',327,0,343,0,'D03','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-10 18:26:01','','0000-00-00 00:00:00',0),(414,0,0,362,'2526','H','O',414,'',0,'2025-10-10','0000-00-00',329,0,345,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-10 18:26:50','','0000-00-00 00:00:00',0),(415,0,0,371,'2526','H','O',415,'',0,'2025-10-10','0000-00-00',338,0,354,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 18:30:51','','0000-00-00 00:00:00',0),(416,0,0,393,'2526','H','O',416,'',0,'2025-10-10','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 18:31:42','','0000-00-00 00:00:00',0),(417,0,0,394,'2526','H','O',417,'',0,'2025-10-10','0000-00-00',359,0,375,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 18:32:25','','0000-00-00 00:00:00',0),(418,0,0,395,'2526','H','O',418,'',0,'2025-10-10','0000-00-00',360,0,376,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 18:32:46','','0000-00-00 00:00:00',0),(419,0,0,397,'2526','H','O',419,'',0,'2025-10-10','0000-00-00',361,0,377,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 18:33:55','','0000-00-00 00:00:00',0),(420,0,0,396,'2526','H','O',420,'',0,'2025-10-10','0000-00-00',140,0,151,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 18:34:05','','0000-00-00 00:00:00',0),(421,0,0,388,'2526','H','O',421,'',0,'2025-10-10','0000-00-00',354,0,370,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-10 18:34:11','','0000-00-00 00:00:00',0),(422,0,0,398,'2526','H','O',422,'',0,'2025-10-10','0000-00-00',362,0,378,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','AXIS','','04302','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 18:37:43','','0000-00-00 00:00:00',0),(423,0,0,399,'2526','H','O',423,'',0,'2025-10-10','0000-00-00',363,0,379,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 18:41:13','','0000-00-00 00:00:00',0),(424,0,0,395,'2526','H','O',424,'',0,'2025-10-10','0000-00-00',360,0,376,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 18:46:53','','0000-00-00 00:00:00',0),(425,0,0,381,'2526','H','O',425,'',0,'2025-10-10','0000-00-00',347,0,363,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 426','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 18:51:14','drashti','2025-10-10 18:53:53',0),(426,0,0,381,'2526','H','O',426,'',0,'2025-10-10','0000-00-00',347,0,363,0,'D06','',0,-4400.00,0.00,0.00,-4400.00,-400.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-4000.00,0,0,'2025-10-10','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 425','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 18:53:53','drashti','2025-10-10 18:55:10',0),(427,0,0,384,'2526','H','O',427,'',0,'2025-10-10','0000-00-00',350,0,366,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 18:54:32','','0000-00-00 00:00:00',0),(428,0,0,377,'2526','H','O',428,'',0,'2025-10-10','0000-00-00',344,0,360,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 18:58:58','','0000-00-00 00:00:00',0),(429,0,0,401,'2526','H','O',429,'',0,'2025-10-10','0000-00-00',70,0,81,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-10 18:59:46','','0000-00-00 00:00:00',0),(430,0,0,367,'2526','H','O',430,'',0,'2025-10-10','0000-00-00',334,0,350,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-10 19:06:47','','0000-00-00 00:00:00',0),(431,0,0,402,'2526','H','O',431,'',0,'2025-10-10','0000-00-00',365,0,381,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','93705','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 19:07:28','','0000-00-00 00:00:00',0),(432,0,0,403,'2526','H','O',432,'',0,'2025-10-10','0000-00-00',366,0,382,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','93705','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 19:09:14','','0000-00-00 00:00:00',0),(433,0,0,404,'2526','H','O',433,'',0,'2025-10-10','0000-00-00',367,0,383,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','81968','','scan     ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 19:10:35','','0000-00-00 00:00:00',0),(434,0,0,405,'2526','H','O',434,'',0,'2025-10-10','0000-00-00',368,0,384,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 19:12:20','','0000-00-00 00:00:00',0),(435,0,0,312,'2526','H','O',435,'',0,'2025-10-10','0000-00-00',281,0,297,0,'D02','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 19:17:58','','0000-00-00 00:00:00',0),(436,0,0,388,'2526','H','O',436,'',0,'2025-10-10','0000-00-00',354,0,370,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-10','Y','N','N','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','','HO 408','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-10 19:18:52','reception','2025-10-10 20:29:20',0),(437,0,0,408,'2526','H','O',437,'',0,'2025-10-10','0000-00-00',370,0,387,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 19:28:39','','0000-00-00 00:00:00',0),(438,0,0,328,'2526','H','O',438,'',0,'2025-10-10','0000-00-00',296,0,312,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 19:29:02','','0000-00-00 00:00:00',0),(439,0,0,400,'2526','H','O',439,'',0,'2025-10-10','0000-00-00',364,0,380,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-10 19:37:19','','0000-00-00 00:00:00',0),(440,0,0,410,'2526','H','O',440,'',0,'2025-10-10','0000-00-00',371,0,389,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 19:44:50','','0000-00-00 00:00:00',0),(441,0,0,409,'2526','H','D',1,'',0,'2025-10-10','0000-00-00',0,23,388,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',500.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-10 19:50:24','','0000-00-00 00:00:00',0),(442,0,0,411,'2526','H','O',441,'',0,'2025-10-10','0000-00-00',372,0,390,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-10 19:50:37','','0000-00-00 00:00:00',0),(443,0,0,407,'2526','H','O',442,'',0,'2025-10-10','0000-00-00',369,0,386,0,'D03','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','IDFC BANK','','87423','','scan',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-10 19:58:24','','0000-00-00 00:00:00',0),(444,0,0,418,'2526','H','O',443,'',0,'2025-10-11','0000-00-00',374,0,395,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-11 08:58:21','','0000-00-00 00:00:00',0),(445,0,0,419,'2526','H','O',444,'',0,'2025-10-11','0000-00-00',147,0,158,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 09:15:43','','0000-00-00 00:00:00',0),(446,0,0,421,'2526','H','O',445,'',0,'2025-10-11','0000-00-00',376,0,397,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-11 09:17:40','','0000-00-00 00:00:00',0),(447,0,0,420,'2526','H','O',446,'',0,'2025-10-11','0000-00-00',375,0,396,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 09:18:36','','0000-00-00 00:00:00',0),(448,0,0,423,'2526','H','O',447,'',0,'2025-10-11','0000-00-00',377,0,398,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-11 09:30:17','','0000-00-00 00:00:00',0),(449,0,0,419,'2526','H','O',448,'',0,'2025-10-11','0000-00-00',147,0,158,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-11 09:31:10','','0000-00-00 00:00:00',0),(450,0,0,424,'2526','H','O',449,'',0,'2025-10-11','0000-00-00',378,0,399,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 09:36:28','','0000-00-00 00:00:00',0),(451,0,0,425,'2526','H','O',450,'',0,'2025-10-11','0000-00-00',379,0,400,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-11 09:37:17','','0000-00-00 00:00:00',0),(452,0,0,429,'2526','H','O',451,'',0,'2025-10-11','0000-00-00',381,0,402,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 09:48:06','','0000-00-00 00:00:00',0),(453,0,0,431,'2526','H','O',452,'',0,'2025-10-11','0000-00-00',382,0,404,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-11 10:10:17','','0000-00-00 00:00:00',0),(454,0,0,421,'2526','H','O',453,'',0,'2025-10-11','0000-00-00',376,0,397,0,'D06','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','60980','','SCAN',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 10:10:33','','0000-00-00 00:00:00',0),(455,0,0,421,'2526','H','O',454,'',0,'2025-10-11','0000-00-00',376,0,397,0,'D06','',0,2200.00,0.00,0.00,2200.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 10:12:24','','0000-00-00 00:00:00',0),(456,0,0,432,'2526','H','O',455,'',0,'2025-10-11','0000-00-00',383,0,405,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','UCO BANK','','25377','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-11 10:12:51','','0000-00-00 00:00:00',0),(457,0,0,433,'2526','H','O',456,'',0,'2025-10-11','0000-00-00',384,0,406,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','43904','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 10:18:52','','0000-00-00 00:00:00',0),(458,0,0,425,'2526','H','O',457,'',0,'2025-10-11','0000-00-00',379,0,400,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 10:21:47','','0000-00-00 00:00:00',0),(459,0,0,435,'2526','H','O',458,'',0,'2025-10-11','0000-00-00',385,0,407,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 10:24:21','','0000-00-00 00:00:00',0),(460,0,0,436,'2526','H','O',459,'',0,'2025-10-11','0000-00-00',386,0,408,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-11 10:27:17','','0000-00-00 00:00:00',0),(461,0,0,437,'2526','H','O',460,'',0,'2025-10-11','0000-00-00',387,0,409,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 10:29:10','','0000-00-00 00:00:00',0),(462,0,0,438,'2526','H','O',461,'',0,'2025-10-11','0000-00-00',388,0,410,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 10:31:34','','0000-00-00 00:00:00',0),(463,0,0,439,'2526','H','O',462,'',0,'2025-10-11','0000-00-00',389,0,411,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 10:33:18','','0000-00-00 00:00:00',0),(464,0,0,440,'2526','H','O',463,'',0,'2025-10-11','0000-00-00',390,0,412,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 10:36:54','','0000-00-00 00:00:00',0),(465,0,0,437,'2526','H','O',464,'',0,'2025-10-11','0000-00-00',387,0,409,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 10:39:24','','0000-00-00 00:00:00',0),(466,0,0,441,'2526','H','O',465,'',0,'2025-10-11','0000-00-00',391,0,413,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 10:44:05','','0000-00-00 00:00:00',0),(467,0,0,443,'2526','H','O',466,'',0,'2025-10-11','0000-00-00',393,0,415,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 10:47:03','','0000-00-00 00:00:00',0),(468,0,0,444,'2526','H','O',467,'',0,'2025-10-11','0000-00-00',394,0,416,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','13679','','SCAN',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 11:01:22','','0000-00-00 00:00:00',0),(469,0,0,445,'2526','H','O',468,'',0,'2025-10-11','0000-00-00',395,0,417,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 11:02:08','','0000-00-00 00:00:00',0),(470,0,0,442,'2526','H','O',469,'',0,'2025-10-11','0000-00-00',392,0,414,0,'D27','',0,1150.00,0.00,0.00,1150.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1150.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-11 11:10:49','','0000-00-00 00:00:00',0),(471,0,0,447,'2526','H','O',470,'',0,'2025-10-11','0000-00-00',131,0,142,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-11 11:13:11','','0000-00-00 00:00:00',0),(472,0,0,448,'2526','H','O',471,'',0,'2025-10-11','0000-00-00',397,0,419,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 11:14:25','','0000-00-00 00:00:00',0),(473,0,0,449,'2526','H','O',472,'',0,'2025-10-11','0000-00-00',398,0,420,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-11 11:15:05','','0000-00-00 00:00:00',0),(474,0,0,450,'2526','H','O',473,'',0,'2025-10-11','0000-00-00',399,0,421,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 11:16:35','','0000-00-00 00:00:00',0),(475,0,0,452,'2526','H','O',474,'',0,'2025-10-11','0000-00-00',401,0,423,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 507','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 11:17:04','reception','2025-10-11 12:39:22',0),(476,0,0,453,'2526','H','O',475,'',0,'2025-10-11','0000-00-00',402,0,424,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 11:18:17','','0000-00-00 00:00:00',0),(477,0,0,454,'2526','H','O',476,'',0,'2025-10-11','0000-00-00',403,0,425,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-11 11:19:18','','0000-00-00 00:00:00',0),(478,0,0,455,'2526','H','O',477,'',0,'2025-10-11','0000-00-00',404,0,426,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 11:20:03','','0000-00-00 00:00:00',0),(479,0,0,456,'2526','H','O',478,'',0,'2025-10-11','0000-00-00',405,0,427,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 11:20:14','','0000-00-00 00:00:00',0),(480,0,0,457,'2526','H','O',479,'',0,'2025-10-11','0000-00-00',242,0,257,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 511','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-11 11:21:25','janvi','2025-10-11 13:01:42',0),(481,0,0,446,'2526','H','O',480,'',0,'2025-10-11','0000-00-00',396,0,418,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','AXIS BANK','','15645','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 11:21:55','','0000-00-00 00:00:00',0),(482,0,0,458,'2526','H','O',481,'',0,'2025-10-11','0000-00-00',406,0,428,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-11 11:22:55','','0000-00-00 00:00:00',0),(483,0,0,459,'2526','H','O',482,'',0,'2025-10-11','0000-00-00',407,0,429,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 11:24:05','','0000-00-00 00:00:00',0),(484,0,0,460,'2526','H','O',483,'',0,'2025-10-11','0000-00-00',408,0,430,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','23571','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-11 11:26:19','','0000-00-00 00:00:00',0),(485,0,0,461,'2526','H','O',484,'',0,'2025-10-11','0000-00-00',409,0,431,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-11 11:26:29','','0000-00-00 00:00:00',0),(486,0,0,462,'2526','H','O',485,'',0,'2025-10-11','0000-00-00',21,0,22,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 11:28:27','','0000-00-00 00:00:00',0),(487,0,0,463,'2526','H','O',486,'',0,'2025-10-11','0000-00-00',410,0,432,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 11:31:14','','0000-00-00 00:00:00',0),(488,0,0,454,'2526','H','O',487,'',0,'2025-10-11','0000-00-00',403,0,425,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 11:37:46','','0000-00-00 00:00:00',0),(489,0,0,466,'2526','H','O',488,'',0,'2025-10-11','0000-00-00',413,0,435,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','54144','','scan     ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-11 11:39:03','','0000-00-00 00:00:00',0),(490,0,0,465,'2526','H','O',489,'',0,'2025-10-11','0000-00-00',412,0,434,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','54144','','scan  ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-11 11:39:17','','0000-00-00 00:00:00',0),(491,0,0,467,'2526','H','O',490,'',0,'2025-10-11','0000-00-00',414,0,436,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-11 11:40:28','','0000-00-00 00:00:00',0),(492,0,0,444,'2526','H','O',491,'',0,'2025-10-11','0000-00-00',394,0,416,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','55707','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 11:40:29','','0000-00-00 00:00:00',0),(493,0,0,468,'2526','H','O',492,'',0,'2025-10-11','0000-00-00',415,0,437,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 11:41:32','','0000-00-00 00:00:00',0),(494,0,0,469,'2526','H','O',493,'',0,'2025-10-11','0000-00-00',416,0,438,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 11:45:19','','0000-00-00 00:00:00',0),(495,0,0,471,'2526','H','O',494,'',0,'2025-10-11','0000-00-00',417,0,439,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 11:47:33','','0000-00-00 00:00:00',0),(496,0,0,472,'2526','H','O',495,'',0,'2025-10-11','0000-00-00',418,0,440,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 11:48:36','','0000-00-00 00:00:00',0),(497,0,0,473,'2526','H','O',496,'',0,'2025-10-11','0000-00-00',419,0,441,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 11:52:59','','0000-00-00 00:00:00',0),(498,0,0,474,'2526','H','O',497,'',0,'2025-10-11','0000-00-00',420,0,442,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 11:57:19','','0000-00-00 00:00:00',0),(499,0,0,467,'2526','H','O',498,'',0,'2025-10-11','0000-00-00',414,0,436,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-11 12:01:59','','0000-00-00 00:00:00',0),(500,0,0,478,'2526','H','O',499,'',0,'2025-10-11','0000-00-00',421,0,443,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 12:05:55','','0000-00-00 00:00:00',0),(501,0,0,453,'2526','H','O',500,'',0,'2025-10-11','0000-00-00',402,0,424,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 12:07:22','','0000-00-00 00:00:00',0),(502,0,0,476,'2526','H','O',501,'',0,'2025-10-11','0000-00-00',373,0,391,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 12:11:27','','0000-00-00 00:00:00',0),(503,0,0,479,'2526','H','O',502,'',0,'2025-10-11','0000-00-00',422,0,444,0,'D14','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-11 12:12:59','','0000-00-00 00:00:00',0),(504,0,0,455,'2526','H','O',503,'',0,'2025-10-11','0000-00-00',404,0,426,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 12:13:57','','0000-00-00 00:00:00',0),(505,0,0,480,'2526','H','O',504,'',0,'2025-10-11','0000-00-00',423,0,445,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','UNION BANK','','100016','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 12:15:17','','0000-00-00 00:00:00',0),(507,0,0,481,'2526','H','O',505,'',0,'2025-10-11','0000-00-00',424,0,446,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','85425','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 12:21:03','','0000-00-00 00:00:00',0),(508,0,0,482,'2526','H','O',506,'',0,'2025-10-11','0000-00-00',425,0,447,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-11 12:22:51','','0000-00-00 00:00:00',0),(509,0,0,56,'2526','H','D',3,'',0,'2025-10-11','0000-00-00',0,7,56,0,'D27','',0,27700.00,0.00,0.00,27700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-22000,0,'0000-00-00','','N','N','F','N',5700.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-11 12:38:33','vishal','2025-10-11 12:52:33',0),(510,0,0,452,'2526','H','O',507,'',0,'2025-10-11','0000-00-00',401,0,423,0,'D06','',0,-900.00,0.00,0.00,-900.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-900.00,0,0,'2025-10-11','Y','N','N','','N',0.00,'','Y','FOC','','HO 474','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 12:39:22','reception','2025-10-11 12:40:07',0),(511,0,0,483,'2526','H','O',508,'',0,'2025-10-11','0000-00-00',426,0,448,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 12:43:07','','0000-00-00 00:00:00',0),(512,0,0,484,'2526','H','O',509,'',0,'2025-10-11','0000-00-00',427,0,449,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 12:51:21','','0000-00-00 00:00:00',0),(513,0,0,485,'2526','H','O',510,'',0,'2025-10-11','0000-00-00',428,0,450,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-11 12:57:46','','0000-00-00 00:00:00',0),(514,0,0,457,'2526','H','O',511,'',0,'2025-10-11','0000-00-00',242,0,257,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-10-11','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 479','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-11 13:01:42','janvi','2025-10-11 13:02:00',0),(515,0,0,476,'2526','H','O',512,'',0,'2025-10-11','0000-00-00',373,0,391,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 13:03:58','','0000-00-00 00:00:00',0),(516,0,0,56,'2526','H','I',1,'',0,'2025-10-11','0000-00-00',0,7,56,0,'D27','',0,27700.00,0.00,0.00,27700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-27700,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(517,0,0,486,'2526','H','O',513,'',0,'2025-10-11','0000-00-00',429,0,451,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-11 13:11:31','','0000-00-00 00:00:00',0),(518,0,0,193,'2526','H','I',2,'',0,'2025-10-11','0000-00-00',150,15,161,0,'D27','',0,13100.00,0.00,0.00,13100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-13100,0,'0000-00-00','','N','Y','F','N',0.00,'','Y','DISCOUNT BY DR. ARCHIT RATHOD 1900 REFUND BY CASH ','HI 3','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-11 13:15:11','vishal','2025-10-11 18:14:49',0),(519,0,0,491,'2526','H','O',514,'',0,'2025-10-11','0000-00-00',431,0,454,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 17:51:48','','0000-00-00 00:00:00',0),(520,0,0,492,'2526','H','O',515,'',0,'2025-10-11','0000-00-00',432,0,455,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 526','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-11 17:54:05','reception','2025-10-11 19:32:09',0),(521,0,0,493,'2526','H','O',516,'',0,'2025-10-11','0000-00-00',433,0,456,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','HO 520','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-11 18:10:33','manshi','2025-10-11 18:25:20',0),(522,0,0,193,'2526','H','I',3,'',0,'2025-10-11','0000-00-00',150,15,161,0,'D27','',0,-13100.00,0.00,0.00,-13100.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',0.00,'','Y','DISCOUNT BY DR. ARCHIT RATHOD 1900 REFUND BY CASH ','','HI 2','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-11 18:14:49','','0000-00-00 00:00:00',0),(523,0,0,494,'2526','H','O',517,'',0,'2025-10-11','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-11 18:15:02','','0000-00-00 00:00:00',0),(524,0,0,495,'2526','H','O',518,'',0,'2025-10-11','0000-00-00',434,0,457,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-11 18:16:36','','0000-00-00 00:00:00',0),(525,0,0,497,'2526','H','O',519,'',0,'2025-10-11','0000-00-00',435,0,458,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-11 18:21:36','','0000-00-00 00:00:00',0),(526,0,0,493,'2526','H','O',520,'',0,'2025-10-11','0000-00-00',433,0,456,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-11','Y','N','N','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','','HO 516','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-11 18:25:20','manshi','2025-10-11 18:26:39',0),(527,0,0,498,'2526','H','O',521,'',0,'2025-10-11','0000-00-00',436,0,459,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','hdfc','','88501','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 18:25:27','','0000-00-00 00:00:00',0),(528,0,0,501,'2526','H','O',522,'',0,'2025-10-11','0000-00-00',140,0,151,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-11 18:41:57','','0000-00-00 00:00:00',0),(529,0,0,496,'2526','H','O',523,'',0,'2025-10-11','0000-00-00',54,0,64,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 18:47:38','','0000-00-00 00:00:00',0),(530,0,0,503,'2526','H','O',524,'',0,'2025-10-11','0000-00-00',303,0,319,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-11 18:48:23','','0000-00-00 00:00:00',0),(531,0,0,150,'2526','H','D',4,'',0,'2025-10-11','0000-00-00',16,12,16,0,'D27','',0,21600.00,0.00,0.00,21600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','','N','N','F','N',1600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-11 18:48:46','vishal','2025-10-11 19:04:55',0),(532,0,0,150,'2526','H','I',4,'',0,'2025-10-11','0000-00-00',16,12,16,0,'D27','',0,21600.00,0.00,0.00,21600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-21600,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(533,0,0,490,'2526','H','O',525,'',0,'2025-10-11','0000-00-00',430,0,453,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-11 19:28:37','','0000-00-00 00:00:00',0),(534,0,0,492,'2526','H','O',526,'',0,'2025-10-11','0000-00-00',432,0,455,0,'D02','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-11','Y','N','N','','N',0.00,'','Y','FOC','','HO 515','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 19:32:09','reception','2025-10-11 19:32:25',0),(535,0,0,502,'2526','H','O',527,'',0,'2025-10-11','0000-00-00',439,0,462,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-11 19:48:42','','0000-00-00 00:00:00',0),(536,0,0,422,'2526','H','D',5,'',0,'2025-10-11','0000-00-00',305,29,321,0,'D02','',0,14000.00,0.00,0.00,14000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-14000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-11 19:53:11','','0000-00-00 00:00:00',0),(537,0,0,422,'2526','H','I',5,'',0,'2025-10-11','0000-00-00',305,29,321,0,'D02','',0,14000.00,0.00,0.00,14000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-14000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-11 19:53:21','','0000-00-00 00:00:00',0),(538,0,0,66,'2526','H','D',6,'',0,'2025-10-11','0000-00-00',0,11,66,0,'D27','',0,21600.00,0.00,0.00,21600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',21600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-11 20:27:42','vishal','2025-10-11 20:29:59',0),(539,0,0,193,'2526','H','D',7,'',0,'2025-10-11','0000-00-00',150,15,161,0,'D27','',0,13100.00,0.00,0.00,13100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-13100,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-11 20:58:05','vishal','2025-10-11 21:07:44',0),(540,0,0,193,'2526','H','I',6,'',0,'2025-10-11','0000-00-00',150,15,161,0,'D27','',0,13100.00,0.00,0.00,13100.00,1900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-1900.00,-13100,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-11 21:09:47','','0000-00-00 00:00:00',0),(541,0,0,488,'2526','H','D',8,'',0,'2025-10-11','0000-00-00',407,37,429,0,'D27','',0,4200.00,0.00,0.00,4200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-5000,0,'0000-00-00','','N','N','F','N',-800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-11 21:31:09','vishal','2025-10-11 21:59:24',0),(542,0,0,507,'2526','H','O',528,'',0,'2025-10-12','0000-00-00',147,0,158,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-12 09:19:28','','0000-00-00 00:00:00',0),(543,0,0,508,'2526','H','O',529,'',0,'2025-10-12','0000-00-00',441,0,466,0,'D14','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-12 09:21:41','','0000-00-00 00:00:00',0),(544,0,0,428,'2526','H','D',9,'',0,'2025-10-12','0000-00-00',211,31,224,0,'D02','',0,15000.00,0.00,0.00,15000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(545,0,0,428,'2526','H','I',7,'',0,'2025-10-12','0000-00-00',211,31,224,0,'D02','',0,15000.00,0.00,0.00,15000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-12 10:08:22','','0000-00-00 00:00:00',0),(546,0,0,417,'2526','H','D',10,'',0,'2025-10-12','0000-00-00',0,28,394,0,'D27','',0,27500.00,0.00,0.00,27500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',12500.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-12 11:00:08','vishal','2025-10-12 12:01:25',0),(547,0,0,417,'2526','H','I',8,'',0,'2025-10-12','0000-00-00',0,28,394,0,'D27','',0,27500.00,0.00,0.00,27500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-27500,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(548,0,0,434,'2526','H','D',11,'',0,'2025-10-12','0000-00-00',270,33,286,0,'D02','',0,30000.00,0.00,0.00,30000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-30000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-12 13:04:49','vishal','2025-10-12 13:17:53',0),(549,0,0,426,'2526','H','D',12,'',0,'2025-10-12','0000-00-00',221,30,234,0,'D02','',0,34400.00,0.00,0.00,34400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25000,0,'0000-00-00','','N','N','F','N',9400.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-12 13:10:03','vishal','2025-10-12 13:28:19',0),(550,0,0,434,'2526','H','I',9,'',0,'2025-10-12','0000-00-00',270,33,286,0,'D02','',0,30000.00,0.00,0.00,30000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-30000,0,'0000-00-00','','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-12 13:20:56','','0000-00-00 00:00:00',0),(551,0,0,426,'2526','H','I',10,'',0,'2025-10-12','0000-00-00',221,30,234,0,'D02','',0,34400.00,0.00,0.00,34400.00,2900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-31500,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-12 13:42:18','','0000-00-00 00:00:00',0),(552,0,0,488,'2526','H','I',11,'',0,'2025-10-12','0000-00-00',407,37,429,0,'D27','',0,4200.00,0.00,0.00,4200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-800.00,-5000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-12 20:24:44','','0000-00-00 00:00:00',0),(553,0,0,510,'2526','H','D',13,'',0,'2025-10-12','0000-00-00',40,42,44,0,'D27','',0,4700.00,0.00,0.00,4700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',4700.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-12 21:38:13','','0000-00-00 00:00:00',0),(554,0,0,510,'2526','H','I',12,'',0,'2025-10-12','0000-00-00',40,42,44,0,'D27','',0,4700.00,0.00,0.00,4700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-4700,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-12 21:40:50','','0000-00-00 00:00:00',0),(555,0,0,511,'2526','H','O',530,'',0,'2025-10-13','0000-00-00',442,0,468,0,'D27','',0,1900.00,0.00,0.00,1900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 09:13:43','','0000-00-00 00:00:00',0),(556,0,0,512,'2526','H','O',531,'',0,'2025-10-13','0000-00-00',443,0,469,0,'D06','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 09:15:08','','0000-00-00 00:00:00',0),(557,0,0,514,'2526','H','O',532,'',0,'2025-10-13','0000-00-00',445,0,471,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 09:19:24','','0000-00-00 00:00:00',0),(558,0,0,515,'2526','H','O',533,'',0,'2025-10-13','0000-00-00',446,0,472,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 09:19:40','','0000-00-00 00:00:00',0),(559,0,0,516,'2526','H','O',534,'',0,'2025-10-13','0000-00-00',140,0,151,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 09:20:47','','0000-00-00 00:00:00',0),(560,0,0,517,'2526','H','O',535,'',0,'2025-10-13','0000-00-00',447,0,473,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 09:21:07','','0000-00-00 00:00:00',0),(561,0,0,518,'2526','H','O',536,'',0,'2025-10-13','0000-00-00',303,0,319,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 09:22:09','','0000-00-00 00:00:00',0),(562,0,0,519,'2526','H','O',537,'',0,'2025-10-13','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 09:22:54','','0000-00-00 00:00:00',0),(563,0,0,520,'2526','H','O',538,'',0,'2025-10-13','0000-00-00',448,0,474,0,'D02','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','nagrik bank','','87830','','scan ',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 09:24:39','','0000-00-00 00:00:00',0),(564,0,0,522,'2526','H','O',539,'',0,'2025-10-13','0000-00-00',450,0,476,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 09:24:57','','0000-00-00 00:00:00',0),(565,0,0,521,'2526','H','O',540,'',0,'2025-10-13','0000-00-00',449,0,475,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','14200','','scan  ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 09:25:42','','0000-00-00 00:00:00',0),(566,0,0,523,'2526','H','O',541,'',0,'2025-10-13','0000-00-00',451,0,477,0,'D02','',0,1350.00,0.00,0.00,1350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 09:26:55','','0000-00-00 00:00:00',0),(567,0,0,524,'2526','H','O',542,'',0,'2025-10-13','0000-00-00',452,0,478,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 09:28:41','','0000-00-00 00:00:00',0),(568,0,0,525,'2526','H','O',543,'',0,'2025-10-13','0000-00-00',453,0,479,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 09:29:49','','0000-00-00 00:00:00',0),(569,0,0,526,'2526','H','O',544,'',0,'2025-10-13','0000-00-00',454,0,480,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 09:38:43','','0000-00-00 00:00:00',0),(570,0,0,513,'2526','H','O',545,'',0,'2025-10-13','0000-00-00',444,0,470,0,'D03','',0,2950.00,0.00,0.00,2950.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','24302','','scan ',2950.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 09:44:51','','0000-00-00 00:00:00',0),(571,0,0,530,'2526','H','O',546,'',0,'2025-10-13','0000-00-00',457,0,483,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 09:55:23','','0000-00-00 00:00:00',0),(572,0,0,529,'2526','H','O',547,'',0,'2025-10-13','0000-00-00',456,0,482,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI','','59566','','SCAN',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 09:55:59','','0000-00-00 00:00:00',0),(573,0,0,531,'2526','H','O',548,'',0,'2025-10-13','0000-00-00',458,0,484,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 09:58:06','','0000-00-00 00:00:00',0),(574,0,0,532,'2526','H','O',549,'',0,'2025-10-13','0000-00-00',459,0,485,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 10:01:32','','0000-00-00 00:00:00',0),(575,0,0,533,'2526','H','O',550,'',0,'2025-10-13','0000-00-00',460,0,486,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 10:06:20','','0000-00-00 00:00:00',0),(576,0,0,409,'2526','H','I',13,'',0,'2025-10-13','0000-00-00',0,23,388,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','7','other bank','','4288','','',3000.00,0,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-13 10:09:12','','0000-00-00 00:00:00',0),(577,0,0,534,'2526','H','O',551,'',0,'2025-10-13','0000-00-00',461,0,487,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS BANK','','88820','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 10:11:30','','0000-00-00 00:00:00',0),(578,0,0,536,'2526','H','O',552,'',0,'2025-10-13','0000-00-00',463,0,489,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 10:14:11','','0000-00-00 00:00:00',0),(579,0,0,535,'2526','H','O',553,'',0,'2025-10-13','0000-00-00',462,0,488,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 10:14:17','','0000-00-00 00:00:00',0),(580,0,0,537,'2526','H','O',554,'',0,'2025-10-13','0000-00-00',464,0,490,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 10:15:07','','0000-00-00 00:00:00',0),(581,0,0,538,'2526','H','O',555,'',0,'2025-10-13','0000-00-00',465,0,491,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BGGB','','04614','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 10:16:44','','0000-00-00 00:00:00',0),(582,0,0,539,'2526','H','O',556,'',0,'2025-10-13','0000-00-00',466,0,492,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 10:16:56','','0000-00-00 00:00:00',0),(583,0,0,540,'2526','H','O',557,'',0,'2025-10-13','0000-00-00',467,0,493,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 10:17:14','','0000-00-00 00:00:00',0),(584,0,0,530,'2526','H','O',558,'',0,'2025-10-13','0000-00-00',457,0,483,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 10:19:22','','0000-00-00 00:00:00',0),(585,0,0,541,'2526','H','O',559,'',0,'2025-10-13','0000-00-00',147,0,158,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BANK OF BARODA','','11036','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 10:20:36','','0000-00-00 00:00:00',0),(586,0,0,542,'2526','H','O',560,'',0,'2025-10-13','0000-00-00',468,0,494,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 10:28:08','','0000-00-00 00:00:00',0),(587,0,0,543,'2526','H','O',561,'',0,'2025-10-13','0000-00-00',469,0,495,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 10:28:35','','0000-00-00 00:00:00',0),(588,0,0,544,'2526','H','O',562,'',0,'2025-10-13','0000-00-00',470,0,496,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 10:30:50','','0000-00-00 00:00:00',0),(589,0,0,545,'2526','H','O',563,'',0,'2025-10-13','0000-00-00',471,0,497,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 10:33:05','','0000-00-00 00:00:00',0),(590,0,0,546,'2526','H','O',564,'',0,'2025-10-13','0000-00-00',472,0,498,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 10:33:41','','0000-00-00 00:00:00',0),(591,0,0,547,'2526','H','O',565,'',0,'2025-10-13','0000-00-00',473,0,499,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 10:39:14','','0000-00-00 00:00:00',0),(592,0,0,514,'2526','H','O',566,'',0,'2025-10-13','0000-00-00',445,0,471,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 10:44:13','','0000-00-00 00:00:00',0),(593,0,0,515,'2526','H','O',567,'',0,'2025-10-13','0000-00-00',446,0,472,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 10:50:01','','0000-00-00 00:00:00',0),(594,0,0,549,'2526','H','O',568,'',0,'2025-10-13','0000-00-00',474,0,500,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 10:52:24','','0000-00-00 00:00:00',0),(595,0,0,553,'2526','H','O',569,'',0,'2025-10-13','0000-00-00',478,0,504,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 11:01:29','','0000-00-00 00:00:00',0),(596,0,0,554,'2526','H','O',570,'',0,'2025-10-13','0000-00-00',479,0,505,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 11:04:29','','0000-00-00 00:00:00',0),(597,0,0,550,'2526','H','O',571,'',0,'2025-10-13','0000-00-00',475,0,501,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','47420','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 11:09:30','','0000-00-00 00:00:00',0),(598,0,0,554,'2526','H','O',572,'',0,'2025-10-13','0000-00-00',479,0,505,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 11:09:45','','0000-00-00 00:00:00',0),(599,0,0,549,'2526','H','O',573,'',0,'2025-10-13','0000-00-00',474,0,500,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 11:10:55','','0000-00-00 00:00:00',0),(600,0,0,556,'2526','H','O',574,'',0,'2025-10-13','0000-00-00',481,0,507,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 11:14:07','','0000-00-00 00:00:00',0),(601,0,0,558,'2526','H','O',575,'',0,'2025-10-13','0000-00-00',483,0,509,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 11:15:53','','0000-00-00 00:00:00',0),(602,0,0,557,'2526','H','O',576,'',0,'2025-10-13','0000-00-00',482,0,508,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 582','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 11:16:05','janvi','2025-10-13 11:28:09',0),(603,0,0,66,'2526','H','I',14,'',0,'2025-10-13','0000-00-00',0,11,66,0,'D27','',0,21600.00,0.00,0.00,21600.00,4600.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-17000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(604,0,0,544,'2526','H','O',577,'',0,'2025-10-13','0000-00-00',470,0,496,0,'D06','',0,6900.00,0.00,0.00,6900.00,1100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 11:19:27','','0000-00-00 00:00:00',0),(605,0,0,555,'2526','H','O',578,'',0,'2025-10-13','0000-00-00',480,0,506,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 11:19:52','','0000-00-00 00:00:00',0),(606,0,0,561,'2526','H','O',579,'',0,'2025-10-13','0000-00-00',486,0,510,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 11:22:09','','0000-00-00 00:00:00',0),(607,0,0,560,'2526','H','O',580,'',0,'2025-10-13','0000-00-00',485,0,511,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','29664','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 11:23:49','','0000-00-00 00:00:00',0),(608,0,0,563,'2526','H','O',581,'',0,'2025-10-13','0000-00-00',487,0,512,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 11:26:06','','0000-00-00 00:00:00',0),(609,0,0,557,'2526','H','O',582,'',0,'2025-10-13','0000-00-00',482,0,508,0,'D02','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-13','Y','N','Y','','N',0.00,'','Y','FOC','','HO 576','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 11:28:09','janvi','2025-10-13 11:28:57',0),(610,0,0,566,'2526','H','O',583,'',0,'2025-10-13','0000-00-00',489,0,514,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 11:29:39','','0000-00-00 00:00:00',0),(611,0,0,565,'2526','H','O',584,'',0,'2025-10-13','0000-00-00',488,0,513,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS','','29843','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 11:30:33','','0000-00-00 00:00:00',0),(612,0,0,564,'2526','H','O',585,'',0,'2025-10-13','0000-00-00',67,0,78,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','INDUSLAND BANK','','909062','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 11:32:04','','0000-00-00 00:00:00',0),(613,0,0,567,'2526','H','O',586,'',0,'2025-10-13','0000-00-00',490,0,515,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 11:33:36','','0000-00-00 00:00:00',0),(614,0,0,568,'2526','H','O',587,'',0,'2025-10-13','0000-00-00',491,0,516,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 11:33:50','','0000-00-00 00:00:00',0),(615,0,0,569,'2526','H','O',588,'',0,'2025-10-13','0000-00-00',492,0,517,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 11:34:35','','0000-00-00 00:00:00',0),(616,0,0,563,'2526','H','O',589,'',0,'2025-10-13','0000-00-00',487,0,512,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 11:36:43','','0000-00-00 00:00:00',0),(617,0,0,534,'2526','H','O',590,'',0,'2025-10-13','0000-00-00',461,0,487,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS','','51472','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 11:40:02','','0000-00-00 00:00:00',0),(618,0,0,571,'2526','H','O',591,'',0,'2025-10-13','0000-00-00',494,0,519,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 11:40:10','','0000-00-00 00:00:00',0),(619,0,0,572,'2526','H','O',592,'',0,'2025-10-13','0000-00-00',495,0,520,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 11:45:11','','0000-00-00 00:00:00',0),(620,0,0,573,'2526','H','O',593,'',0,'2025-10-13','0000-00-00',496,0,521,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 11:46:00','','0000-00-00 00:00:00',0),(621,0,0,567,'2526','H','O',594,'',0,'2025-10-13','0000-00-00',490,0,515,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 11:47:47','','0000-00-00 00:00:00',0),(622,0,0,576,'2526','H','O',595,'',0,'2025-10-13','0000-00-00',498,0,523,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 11:48:05','','0000-00-00 00:00:00',0),(623,0,0,575,'2526','H','O',596,'',0,'2025-10-13','0000-00-00',497,0,522,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','83897','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 11:49:11','','0000-00-00 00:00:00',0),(624,0,0,577,'2526','H','O',597,'',0,'2025-10-13','0000-00-00',499,0,524,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 11:51:16','','0000-00-00 00:00:00',0),(625,0,0,578,'2526','H','O',598,'',0,'2025-10-13','0000-00-00',500,0,525,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 11:54:18','','0000-00-00 00:00:00',0),(626,0,0,579,'2526','H','O',599,'',0,'2025-10-13','0000-00-00',501,0,526,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 11:54:48','','0000-00-00 00:00:00',0),(627,0,0,580,'2526','H','O',600,'',0,'2025-10-13','0000-00-00',502,0,527,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 11:55:21','','0000-00-00 00:00:00',0),(628,0,0,581,'2526','H','O',601,'',0,'2025-10-13','0000-00-00',503,0,528,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 609','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 11:55:58','manshi','2025-10-13 12:12:40',0),(629,0,0,528,'2526','H','O',602,'',0,'2025-10-13','0000-00-00',455,0,481,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 11:56:35','','0000-00-00 00:00:00',0),(630,0,0,415,'2526','H','D',14,'',0,'2025-10-13','0000-00-00',0,26,393,0,'D27','',0,25500.00,0.00,0.00,25500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-24000,0,'0000-00-00','','N','N','F','N',1500.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 11:59:35','reception','2025-10-13 12:02:04',0),(631,0,0,570,'2526','H','O',603,'',0,'2025-10-13','0000-00-00',493,0,518,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 11:59:41','','0000-00-00 00:00:00',0),(632,0,0,521,'2526','H','O',604,'',0,'2025-10-13','0000-00-00',449,0,475,0,'D06','',0,6900.00,0.00,0.00,6900.00,1500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 12:01:25','','0000-00-00 00:00:00',0),(633,0,0,569,'2526','H','O',605,'',0,'2025-10-13','0000-00-00',492,0,517,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 12:02:05','','0000-00-00 00:00:00',0),(634,0,0,582,'2526','H','O',606,'',0,'2025-10-13','0000-00-00',504,0,529,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 12:07:50','','0000-00-00 00:00:00',0),(635,0,0,583,'2526','H','O',607,'',0,'2025-10-13','0000-00-00',505,0,530,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 12:09:16','','0000-00-00 00:00:00',0),(636,0,0,543,'2526','H','O',608,'',0,'2025-10-13','0000-00-00',469,0,495,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOI','','60127','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 12:09:49','','0000-00-00 00:00:00',0),(637,0,0,415,'2526','H','I',15,'',0,'2025-10-13','0000-00-00',0,26,393,0,'D27','',0,25500.00,0.00,0.00,25500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25500,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(638,0,0,581,'2526','H','O',609,'',0,'2025-10-13','0000-00-00',503,0,528,0,'D14','',0,-800.00,0.00,0.00,-800.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-800.00,0,0,'2025-10-13','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 601','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 12:12:40','manshi','2025-10-13 12:13:17',0),(639,0,0,561,'2526','H','O',610,'',0,'2025-10-13','0000-00-00',486,0,510,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 12:16:37','','0000-00-00 00:00:00',0),(640,0,0,584,'2526','H','O',611,'',0,'2025-10-13','0000-00-00',506,0,531,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 12:18:26','','0000-00-00 00:00:00',0),(641,0,0,585,'2526','H','O',612,'',0,'2025-10-13','0000-00-00',507,0,532,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 12:19:43','','0000-00-00 00:00:00',0),(642,0,0,525,'2526','H','O',613,'',0,'2025-10-13','0000-00-00',453,0,479,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 12:20:01','','0000-00-00 00:00:00',0),(643,0,0,586,'2526','H','O',614,'',0,'2025-10-13','0000-00-00',508,0,533,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','24540','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 12:22:49','','0000-00-00 00:00:00',0),(644,0,0,587,'2526','H','O',615,'',0,'2025-10-13','0000-00-00',509,0,534,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 12:23:41','','0000-00-00 00:00:00',0),(645,0,0,588,'2526','H','O',616,'',0,'2025-10-13','0000-00-00',510,0,535,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 12:25:59','','0000-00-00 00:00:00',0),(646,0,0,589,'2526','H','O',617,'',0,'2025-10-13','0000-00-00',511,0,536,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 12:29:48','','0000-00-00 00:00:00',0),(647,0,0,570,'2526','H','O',618,'',0,'2025-10-13','0000-00-00',493,0,518,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 12:36:31','','0000-00-00 00:00:00',0),(648,0,0,572,'2526','H','O',619,'',0,'2025-10-13','0000-00-00',495,0,520,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 12:42:02','','0000-00-00 00:00:00',0),(649,0,0,548,'2526','H','O',620,'',0,'2025-10-13','0000-00-00',440,0,463,0,'D02','',0,3000.00,0.00,0.00,3000.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','29784','','scan     ',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 12:43:42','','0000-00-00 00:00:00',0),(650,0,0,552,'2526','H','O',621,'',0,'2025-10-13','0000-00-00',477,0,503,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 634','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 12:43:58','drashti','2025-10-13 14:23:35',0),(651,0,0,591,'2526','H','O',622,'',0,'2025-10-13','0000-00-00',513,0,538,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100 DISCOUNT','HO 637','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 12:45:16','shweta','2025-10-13 15:28:07',0),(652,0,0,593,'2526','H','O',623,'',0,'2025-10-13','0000-00-00',515,0,540,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','81448','','scan     ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 13:04:14','','0000-00-00 00:00:00',0),(653,0,0,594,'2526','H','O',624,'',0,'2025-10-13','0000-00-00',516,0,541,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','300 DISCOUNT','HO 632','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 13:07:14','drashti','2025-10-13 14:16:48',0),(654,0,0,592,'2526','H','O',625,'',0,'2025-10-13','0000-00-00',514,0,539,0,'D03','',0,5000.00,0.00,0.00,5000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','CRD','HDFC BANK','','3156','','CARD',5000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 13:08:42','','0000-00-00 00:00:00',0),(655,0,0,413,'2526','H','D',15,'',0,'2025-10-13','0000-00-00',259,24,276,0,'D02','',0,25750.00,0.00,0.00,25750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','','N','N','F','N',5750.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-13 13:11:03','vishal','2025-10-13 13:13:12',0),(656,0,0,63,'2526','H','D',16,'',0,'2025-10-13','0000-00-00',0,10,63,0,'D02','',0,63800.00,0.00,0.00,63800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-35000,0,'0000-00-00','','N','N','F','N',28800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-13 13:14:48','vishal','2025-10-13 13:45:49',0),(657,0,0,413,'2526','H','I',16,'',0,'2025-10-13','0000-00-00',259,24,276,0,'D02','',0,25750.00,0.00,0.00,25750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25750,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(658,0,0,585,'2526','H','O',626,'',0,'2025-10-13','0000-00-00',507,0,532,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 13:36:39','','0000-00-00 00:00:00',0),(659,0,0,595,'2526','H','O',627,'',0,'2025-10-13','0000-00-00',517,0,542,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 629','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 13:38:07','janvi','2025-10-13 14:02:30',0),(660,0,0,568,'2526','H','O',628,'',0,'2025-10-13','0000-00-00',491,0,516,0,'D03','',0,250.00,0.00,0.00,250.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','32249','','scan',250.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 13:43:33','','0000-00-00 00:00:00',0),(661,0,0,595,'2526','H','O',629,'',0,'2025-10-13','0000-00-00',517,0,542,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-10-13','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 627','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 14:02:30','janvi','2025-10-13 14:02:53',0),(662,0,0,595,'2526','H','O',630,'',0,'2025-10-13','0000-00-00',517,0,542,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 14:05:27','','0000-00-00 00:00:00',0),(663,0,0,546,'2526','H','O',631,'',0,'2025-10-13','0000-00-00',472,0,498,0,'D06','',0,4400.00,0.00,0.00,4400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 14:08:06','','0000-00-00 00:00:00',0),(664,0,0,594,'2526','H','O',632,'',0,'2025-10-13','0000-00-00',516,0,541,0,'D06','',0,-800.00,0.00,0.00,-800.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-800.00,0,0,'2025-10-13','Y','N','N','','N',0.00,'','Y','300 DISCOUNT','','HO 624','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 14:16:48','drashti','2025-10-13 14:17:59',0),(665,0,0,63,'2526','H','I',17,'',0,'2025-10-13','0000-00-00',0,10,63,0,'D02','',0,63800.00,0.00,0.00,63800.00,2000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-61800,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(666,0,0,594,'2526','H','O',633,'',0,'2025-10-13','0000-00-00',516,0,541,0,'D06','',0,800.00,0.00,0.00,800.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 14:19:18','','0000-00-00 00:00:00',0),(667,0,0,552,'2526','H','O',634,'',0,'2025-10-13','0000-00-00',477,0,503,0,'D06','',0,-900.00,0.00,0.00,-900.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-900.00,0,0,'2025-10-13','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 621','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 14:23:35','drashti','2025-10-13 14:24:06',0),(668,0,0,552,'2526','H','O',635,'',0,'2025-10-13','0000-00-00',477,0,503,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 14:24:47','','0000-00-00 00:00:00',0),(669,0,0,589,'2526','H','O',636,'',0,'2025-10-13','0000-00-00',511,0,536,0,'D06','',0,3600.00,0.00,0.00,3600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','IDBI','','90620','','SCAN',3600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 15:15:15','','0000-00-00 00:00:00',0),(670,0,0,591,'2526','H','O',637,'',0,'2025-10-13','0000-00-00',513,0,538,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-13','Y','N','N','','N',0.00,'','Y','100 DISCOUNT','','HO 622','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 15:28:07','shweta','2025-10-13 15:28:25',0),(671,0,0,591,'2526','H','O',638,'',0,'2025-10-13','0000-00-00',513,0,538,0,'D06','',0,500.00,0.00,0.00,500.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 15:29:03','','0000-00-00 00:00:00',0),(672,0,0,597,'2526','H','O',639,'',0,'2025-10-13','0000-00-00',519,0,544,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 15:35:35','','0000-00-00 00:00:00',0),(673,0,0,599,'2526','H','O',640,'',0,'2025-10-13','0000-00-00',520,0,546,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 16:33:25','','0000-00-00 00:00:00',0),(674,0,0,600,'2526','H','O',641,'',0,'2025-10-13','0000-00-00',521,0,547,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI','','08483','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 16:45:28','','0000-00-00 00:00:00',0),(675,0,0,601,'2526','H','O',642,'',0,'2025-10-13','0000-00-00',347,0,363,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 643','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 16:47:26','shweta','2025-10-13 16:49:30',0),(676,0,0,601,'2526','H','O',643,'',0,'2025-10-13','0000-00-00',347,0,363,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-13','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 642','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 16:49:30','shweta','2025-10-13 16:49:45',0),(677,0,0,602,'2526','H','O',644,'',0,'2025-10-13','0000-00-00',522,0,548,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 16:50:46','','0000-00-00 00:00:00',0),(678,0,0,601,'2526','H','O',645,'',0,'2025-10-13','0000-00-00',347,0,363,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 16:50:47','','0000-00-00 00:00:00',0),(679,0,0,603,'2526','H','O',646,'',0,'2025-10-13','0000-00-00',523,0,549,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 657','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 16:57:47','reception','2025-10-13 17:29:01',0),(680,0,0,598,'2526','H','D',17,'',0,'2025-10-13','0000-00-00',0,45,545,0,'D02','',0,7900.00,0.00,0.00,7900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7900,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-13 16:58:42','','0000-00-00 00:00:00',0),(681,0,0,598,'2526','H','I',18,'',0,'2025-10-13','0000-00-00',0,45,545,0,'D02','',0,7900.00,0.00,0.00,7900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7900,0,'0000-00-00','','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-13 16:58:50','','0000-00-00 00:00:00',0),(682,0,0,604,'2526','H','O',647,'',0,'2025-10-13','0000-00-00',524,0,550,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 16:59:47','','0000-00-00 00:00:00',0),(683,0,0,605,'2526','H','O',648,'',0,'2025-10-13','0000-00-00',504,0,529,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 17:06:10','','0000-00-00 00:00:00',0),(684,0,0,599,'2526','H','O',649,'',0,'2025-10-13','0000-00-00',520,0,546,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-13 17:10:42','','0000-00-00 00:00:00',0),(685,0,0,606,'2526','H','O',650,'',0,'2025-10-13','0000-00-00',525,0,551,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 17:15:55','','0000-00-00 00:00:00',0),(686,0,0,527,'2526','H','D',18,'',0,'2025-10-13','0000-00-00',370,43,387,0,'D02','',0,4700.00,0.00,0.00,4700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',-10300.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-13 17:15:57','','0000-00-00 00:00:00',0),(687,0,0,527,'2526','H','I',19,'',0,'2025-10-13','0000-00-00',370,43,387,0,'D02','',0,15000.00,0.00,0.00,15000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-13 17:17:34','','0000-00-00 00:00:00',0),(688,0,0,607,'2526','H','O',651,'',0,'2025-10-13','0000-00-00',526,0,552,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 17:18:44','','0000-00-00 00:00:00',0),(689,0,0,608,'2526','H','O',652,'',0,'2025-10-13','0000-00-00',527,0,553,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 17:19:19','','0000-00-00 00:00:00',0),(690,0,0,609,'2526','H','O',653,'',0,'2025-10-13','0000-00-00',528,0,554,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 17:21:08','','0000-00-00 00:00:00',0),(691,0,0,600,'2526','H','O',654,'',0,'2025-10-13','0000-00-00',521,0,547,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI BANK','','89367','','SCAN',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 17:22:12','','0000-00-00 00:00:00',0),(692,0,0,610,'2526','H','O',655,'',0,'2025-10-13','0000-00-00',529,0,555,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 17:26:24','','0000-00-00 00:00:00',0),(693,0,0,611,'2526','H','O',656,'',0,'2025-10-13','0000-00-00',530,0,556,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 17:27:03','','0000-00-00 00:00:00',0),(694,0,0,603,'2526','H','O',657,'',0,'2025-10-13','0000-00-00',523,0,549,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-13','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 646','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 17:29:01','reception','2025-10-13 17:29:34',0),(695,0,0,612,'2526','H','O',658,'',0,'2025-10-13','0000-00-00',531,0,557,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 669','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 17:29:11','reception','2025-10-13 17:59:58',0),(696,0,0,603,'2526','H','O',659,'',0,'2025-10-13','0000-00-00',523,0,549,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 17:30:12','','0000-00-00 00:00:00',0),(697,0,0,614,'2526','H','O',660,'',0,'2025-10-13','0000-00-00',532,0,558,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 17:42:56','','0000-00-00 00:00:00',0),(698,0,0,616,'2526','H','O',661,'',0,'2025-10-13','0000-00-00',534,0,560,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 17:44:23','','0000-00-00 00:00:00',0),(699,0,0,615,'2526','H','O',662,'',0,'2025-10-13','0000-00-00',533,0,559,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','CO OPERATIVE ','','310016','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 17:44:44','','0000-00-00 00:00:00',0),(700,0,0,617,'2526','H','O',663,'',0,'2025-10-13','0000-00-00',303,0,319,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 17:47:36','','0000-00-00 00:00:00',0),(701,0,0,608,'2526','H','O',664,'',0,'2025-10-13','0000-00-00',527,0,553,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','64096','','SCAN',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 17:49:28','','0000-00-00 00:00:00',0),(702,0,0,618,'2526','H','O',665,'',0,'2025-10-13','0000-00-00',535,0,561,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 17:50:52','','0000-00-00 00:00:00',0),(703,0,0,619,'2526','H','O',666,'',0,'2025-10-13','0000-00-00',536,0,562,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','78045','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 17:52:42','','0000-00-00 00:00:00',0),(704,0,0,620,'2526','H','O',667,'',0,'2025-10-13','0000-00-00',537,0,563,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 17:54:28','','0000-00-00 00:00:00',0),(705,0,0,621,'2526','H','O',668,'',0,'2025-10-13','0000-00-00',538,0,564,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 709','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 17:55:43','drashti','2025-10-13 19:00:40',0),(706,0,0,612,'2526','H','O',669,'',0,'2025-10-13','0000-00-00',531,0,557,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-13','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 658','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 17:59:58','reception','2025-10-13 18:00:16',0),(707,0,0,612,'2526','H','O',670,'',0,'2025-10-13','0000-00-00',531,0,557,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 18:00:57','','0000-00-00 00:00:00',0),(708,0,0,622,'2526','H','O',671,'',0,'2025-10-13','0000-00-00',539,0,565,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 18:03:43','','0000-00-00 00:00:00',0),(709,0,0,623,'2526','H','O',672,'',0,'2025-10-13','0000-00-00',540,0,566,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 18:05:27','','0000-00-00 00:00:00',0),(710,0,0,624,'2526','H','O',673,'',0,'2025-10-13','0000-00-00',541,0,567,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 18:06:19','','0000-00-00 00:00:00',0),(711,0,0,625,'2526','H','O',674,'',0,'2025-10-13','0000-00-00',542,0,568,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 18:07:05','','0000-00-00 00:00:00',0),(712,0,0,627,'2526','H','O',675,'',0,'2025-10-13','0000-00-00',543,0,569,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC','','68935','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 18:09:27','','0000-00-00 00:00:00',0),(713,0,0,628,'2526','H','O',676,'',0,'2025-10-13','0000-00-00',544,0,570,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 18:09:49','','0000-00-00 00:00:00',0),(714,0,0,629,'2526','H','O',677,'',0,'2025-10-13','0000-00-00',545,0,571,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 18:09:56','','0000-00-00 00:00:00',0),(715,0,0,630,'2526','H','O',678,'',0,'2025-10-13','0000-00-00',546,0,572,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 18:10:59','','0000-00-00 00:00:00',0),(716,0,0,631,'2526','H','O',679,'',0,'2025-10-13','0000-00-00',547,0,573,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 701','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 18:12:11','reception','2025-10-13 18:51:16',0),(717,0,0,632,'2526','H','O',680,'',0,'2025-10-13','0000-00-00',548,0,574,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 18:14:59','','0000-00-00 00:00:00',0),(718,0,0,633,'2526','H','O',681,'',0,'2025-10-13','0000-00-00',549,0,575,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 18:15:57','','0000-00-00 00:00:00',0),(719,0,0,580,'2526','H','O',682,'',0,'2025-10-13','0000-00-00',502,0,527,0,'D02','',0,5000.00,0.00,0.00,5000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 18:17:00','','0000-00-00 00:00:00',0),(720,0,0,634,'2526','H','O',683,'',0,'2025-10-13','0000-00-00',550,0,576,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS','','10016','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 18:18:52','','0000-00-00 00:00:00',0),(721,0,0,635,'2526','H','O',684,'',0,'2025-10-13','0000-00-00',551,0,577,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 18:19:19','','0000-00-00 00:00:00',0),(722,0,0,636,'2526','H','O',685,'',0,'2025-10-13','0000-00-00',552,0,578,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 18:19:47','','0000-00-00 00:00:00',0),(723,0,0,637,'2526','H','O',686,'',0,'2025-10-13','0000-00-00',553,0,579,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 18:21:35','','0000-00-00 00:00:00',0),(724,0,0,638,'2526','H','O',687,'',0,'2025-10-13','0000-00-00',70,0,81,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 18:23:07','','0000-00-00 00:00:00',0),(725,0,0,639,'2526','H','O',688,'',0,'2025-10-13','0000-00-00',554,0,580,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 18:23:17','','0000-00-00 00:00:00',0),(726,0,0,640,'2526','H','O',689,'',0,'2025-10-13','0000-00-00',134,0,145,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 18:23:56','','0000-00-00 00:00:00',0),(727,0,0,641,'2526','H','O',690,'',0,'2025-10-13','0000-00-00',69,0,80,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 18:24:56','','0000-00-00 00:00:00',0),(728,0,0,619,'2526','H','O',691,'',0,'2025-10-13','0000-00-00',536,0,562,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','40727','','SCAN',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 18:30:51','','0000-00-00 00:00:00',0),(729,0,0,642,'2526','H','O',692,'',0,'2025-10-13','0000-00-00',114,0,125,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 18:32:41','','0000-00-00 00:00:00',0),(730,0,0,626,'2526','H','O',693,'',0,'2025-10-13','0000-00-00',247,0,262,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','union bank','','81090','','scan     ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 18:37:01','','0000-00-00 00:00:00',0),(731,0,0,643,'2526','H','O',694,'',0,'2025-10-13','0000-00-00',137,0,148,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 18:39:24','','0000-00-00 00:00:00',0),(732,0,0,644,'2526','H','O',695,'',0,'2025-10-13','0000-00-00',555,0,581,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 18:42:09','','0000-00-00 00:00:00',0),(733,0,0,646,'2526','H','O',696,'',0,'2025-10-13','0000-00-00',556,0,583,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 18:44:20','','0000-00-00 00:00:00',0),(734,0,0,647,'2526','H','O',697,'',0,'2025-10-13','0000-00-00',140,0,151,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 18:47:09','','0000-00-00 00:00:00',0),(735,0,0,644,'2526','H','O',698,'',0,'2025-10-13','0000-00-00',555,0,581,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 18:48:19','','0000-00-00 00:00:00',0),(736,0,0,648,'2526','H','O',699,'',0,'2025-10-13','0000-00-00',557,0,584,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 18:49:27','','0000-00-00 00:00:00',0),(737,0,0,649,'2526','H','O',700,'',0,'2025-10-13','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 18:49:37','','0000-00-00 00:00:00',0),(738,0,0,631,'2526','H','O',701,'',0,'2025-10-13','0000-00-00',547,0,573,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-13','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 679','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 18:51:16','reception','2025-10-13 18:51:35',0),(739,0,0,651,'2526','H','O',702,'',0,'2025-10-13','0000-00-00',559,0,586,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 18:52:14','','0000-00-00 00:00:00',0),(740,0,0,631,'2526','H','O',703,'',0,'2025-10-13','0000-00-00',547,0,573,0,'D06','',0,500.00,0.00,0.00,500.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 18:52:58','','0000-00-00 00:00:00',0),(741,0,0,652,'2526','H','O',704,'',0,'2025-10-13','0000-00-00',560,0,587,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 18:53:50','','0000-00-00 00:00:00',0),(742,0,0,653,'2526','H','O',705,'',0,'2025-10-13','0000-00-00',561,0,588,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 18:54:35','','0000-00-00 00:00:00',0),(743,0,0,654,'2526','H','O',706,'',0,'2025-10-13','0000-00-00',562,0,589,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 18:54:55','','0000-00-00 00:00:00',0),(744,0,0,656,'2526','H','O',707,'',0,'2025-10-13','0000-00-00',563,0,590,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 18:57:14','','0000-00-00 00:00:00',0),(745,0,0,657,'2526','H','O',708,'',0,'2025-10-13','0000-00-00',564,0,591,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 18:59:21','','0000-00-00 00:00:00',0),(746,0,0,621,'2526','H','O',709,'',0,'2025-10-13','0000-00-00',538,0,564,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-10-13','Y','N','N','','N',0.00,'','Y','FOC','','HO 668','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 19:00:40','drashti','2025-10-13 19:01:19',0),(747,0,0,636,'2526','H','O',710,'',0,'2025-10-13','0000-00-00',552,0,578,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 19:07:17','','0000-00-00 00:00:00',0),(748,0,0,658,'2526','H','O',711,'',0,'2025-10-13','0000-00-00',565,0,592,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK ','','82699','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 19:08:01','','0000-00-00 00:00:00',0),(749,0,0,659,'2526','H','O',712,'',0,'2025-10-13','0000-00-00',566,0,593,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 19:11:31','','0000-00-00 00:00:00',0),(750,0,0,660,'2526','H','O',713,'',0,'2025-10-13','0000-00-00',567,0,594,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 19:18:34','','0000-00-00 00:00:00',0),(751,0,0,661,'2526','H','O',714,'',0,'2025-10-13','0000-00-00',568,0,595,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 19:19:17','','0000-00-00 00:00:00',0),(752,0,0,662,'2526','H','O',715,'',0,'2025-10-13','0000-00-00',569,0,596,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 19:21:25','','0000-00-00 00:00:00',0),(753,0,0,663,'2526','H','O',716,'',0,'2025-10-13','0000-00-00',570,0,597,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 19:24:06','','0000-00-00 00:00:00',0),(754,0,0,664,'2526','H','O',717,'',0,'2025-10-13','0000-00-00',571,0,598,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 19:26:29','','0000-00-00 00:00:00',0),(755,0,0,665,'2526','H','O',718,'',0,'2025-10-13','0000-00-00',572,0,599,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS BANK','','73083','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 19:27:17','','0000-00-00 00:00:00',0),(756,0,0,648,'2526','H','O',719,'',0,'2025-10-13','0000-00-00',557,0,584,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-13 19:29:11','','0000-00-00 00:00:00',0),(757,0,0,666,'2526','H','O',720,'',0,'2025-10-13','0000-00-00',573,0,600,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 19:29:51','','0000-00-00 00:00:00',0),(758,0,0,669,'2526','H','O',721,'',0,'2025-10-13','0000-00-00',575,0,603,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 19:36:19','','0000-00-00 00:00:00',0),(759,0,0,655,'2526','H','O',722,'',0,'2025-10-13','0000-00-00',221,0,234,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','53623','','scan  ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-13 19:41:24','','0000-00-00 00:00:00',0),(760,0,0,667,'2526','H','O',723,'',0,'2025-10-13','0000-00-00',574,0,601,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 19:45:11','','0000-00-00 00:00:00',0),(761,0,0,671,'2526','H','O',724,'',0,'2025-10-13','0000-00-00',576,0,604,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','82627','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 19:49:36','','0000-00-00 00:00:00',0),(762,0,0,666,'2526','H','O',725,'',0,'2025-10-13','0000-00-00',573,0,600,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-13 20:07:55','','0000-00-00 00:00:00',0),(763,0,0,506,'2526','H','D',19,'',0,'2025-10-13','0000-00-00',0,40,465,0,'D27','',0,25700.00,0.00,0.00,25700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25700,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(764,0,0,650,'2526','H','O',726,'',0,'2025-10-13','0000-00-00',558,0,585,0,'D06','',0,500.00,0.00,0.00,500.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','CRD','hdfc','','3158','','card',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-13 20:14:33','','0000-00-00 00:00:00',0),(765,0,0,506,'2526','H','I',20,'',0,'2025-10-13','0000-00-00',0,40,465,0,'D27','',0,25700.00,0.00,0.00,25700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25700,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(766,0,0,672,'2526','H','D',20,'',0,'2025-10-13','0000-00-00',0,48,165,0,'D02','',0,76800.00,0.00,0.00,76800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',76800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-13 21:48:05','','0000-00-00 00:00:00',0),(767,0,0,672,'2526','H','I',21,'',0,'2025-10-13','0000-00-00',0,48,165,0,'D02','',0,76800.00,0.00,0.00,76800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-76800,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-13 21:49:43','','0000-00-00 00:00:00',0),(768,0,0,673,'2526','H','D',21,'',0,'2025-10-13','0000-00-00',0,49,605,0,'D02','',0,25000.00,0.00,0.00,25000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-13 22:09:24','riya','2025-10-13 22:13:06',0),(769,0,0,673,'2526','H','I',22,'',0,'2025-10-13','0000-00-00',0,49,605,0,'D02','',0,25000.00,0.00,0.00,25000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-13 22:13:19','','0000-00-00 00:00:00',0),(770,0,0,505,'2526','H','D',22,'',0,'2025-10-13','0000-00-00',0,39,464,0,'D27','',0,14200.00,0.00,0.00,14200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',7200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-13 22:46:27','riya','2025-10-13 23:00:00',0),(771,0,0,477,'2526','H','D',23,'',0,'2025-10-13','0000-00-00',21,35,22,0,'D27','',0,14200.00,0.00,0.00,14200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-14200,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-13 22:52:33','riya','2025-10-13 22:58:06',0),(772,0,0,477,'2526','H','I',23,'',0,'2025-10-13','0000-00-00',21,35,22,0,'D27','',0,14200.00,0.00,0.00,14200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-14200,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(773,0,0,505,'2526','H','I',24,'',0,'2025-10-13','0000-00-00',0,39,464,0,'D27','',0,14200.00,0.00,0.00,14200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-14200,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-13 23:03:17','','0000-00-00 00:00:00',0),(774,0,0,676,'2526','H','O',727,'',0,'2025-10-14','0000-00-00',575,0,603,0,'D02','',0,5100.00,0.00,0.00,5100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-14 08:50:03','','0000-00-00 00:00:00',0),(775,0,0,677,'2526','H','O',728,'',0,'2025-10-14','0000-00-00',577,0,608,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-14 08:52:23','','0000-00-00 00:00:00',0),(776,0,0,678,'2526','H','O',729,'',0,'2025-10-14','0000-00-00',578,0,609,0,'D27','',0,1800.00,0.00,0.00,1800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-14 08:54:48','','0000-00-00 00:00:00',0),(777,0,0,679,'2526','H','O',730,'',0,'2025-10-14','0000-00-00',579,0,610,0,'D03','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-14 08:56:17','','0000-00-00 00:00:00',0),(778,0,0,680,'2526','H','O',731,'',0,'2025-10-14','0000-00-00',580,0,611,0,'D03','',0,2050.00,0.00,0.00,2050.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2050.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-14 08:58:45','','0000-00-00 00:00:00',0),(779,0,0,681,'2526','H','O',732,'',0,'2025-10-14','0000-00-00',581,0,612,0,'D27','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-14 09:00:09','','0000-00-00 00:00:00',0),(780,0,0,682,'2526','H','O',733,'',0,'2025-10-14','0000-00-00',582,0,613,0,'D27','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-14 09:01:58','','0000-00-00 00:00:00',0),(781,0,0,668,'2526','H','D',24,'',0,'2025-10-14','0000-00-00',0,47,602,0,'D27','',0,12200.00,0.00,0.00,12200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',12200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-14 09:25:00','','0000-00-00 00:00:00',0),(782,0,0,668,'2526','H','I',25,'',0,'2025-10-14','0000-00-00',0,47,602,0,'D27','',0,12200.00,0.00,0.00,12200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-12200,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-14 09:30:42','','0000-00-00 00:00:00',0),(783,0,0,685,'2526','H','O',734,'',0,'2025-10-14','0000-00-00',583,0,614,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-14 09:32:56','','0000-00-00 00:00:00',0),(784,0,0,684,'2526','H','D',25,'',0,'2025-10-14','0000-00-00',0,53,388,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',3000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-14 09:44:01','','0000-00-00 00:00:00',0),(785,0,0,686,'2526','H','O',735,'',0,'2025-10-14','0000-00-00',584,0,615,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 09:46:29','','0000-00-00 00:00:00',0),(786,0,0,684,'2526','H','I',26,'',0,'2025-10-14','0000-00-00',0,53,388,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-3000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-14 09:49:32','','0000-00-00 00:00:00',0),(787,0,0,688,'2526','H','O',736,'',0,'2025-10-14','0000-00-00',585,0,616,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 10:06:48','','0000-00-00 00:00:00',0),(788,0,0,430,'2526','H','D',26,'',0,'2025-11-06','0000-00-00',0,32,403,0,'D02','',0,127170.00,0.00,0.00,127170.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',127170.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-14 10:11:52','vishal','2025-11-06 20:00:11',0),(789,0,0,689,'2526','H','O',737,'',0,'2025-10-14','0000-00-00',586,0,21,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 10:16:28','','0000-00-00 00:00:00',0),(790,0,0,692,'2526','H','O',738,'',0,'2025-10-14','0000-00-00',588,0,618,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 10:21:04','','0000-00-00 00:00:00',0),(791,0,0,694,'2526','H','O',739,'',0,'2025-10-14','0000-00-00',590,0,620,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 10:32:53','','0000-00-00 00:00:00',0),(792,0,0,695,'2526','H','O',740,'',0,'2025-10-14','0000-00-00',591,0,621,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 10:33:07','','0000-00-00 00:00:00',0),(793,0,0,697,'2526','H','O',741,'',0,'2025-10-14','0000-00-00',593,0,623,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 10:36:23','','0000-00-00 00:00:00',0),(794,0,0,696,'2526','H','O',742,'',0,'2025-10-14','0000-00-00',592,0,622,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 10:36:51','','0000-00-00 00:00:00',0),(795,0,0,698,'2526','H','O',743,'',0,'2025-10-14','0000-00-00',594,0,624,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 10:39:02','','0000-00-00 00:00:00',0),(796,0,0,699,'2526','H','O',744,'',0,'2025-10-14','0000-00-00',595,0,625,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 10:41:13','','0000-00-00 00:00:00',0),(797,0,0,700,'2526','H','O',745,'',0,'2025-10-14','0000-00-00',596,0,626,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 10:48:47','','0000-00-00 00:00:00',0),(798,0,0,691,'2526','H','O',746,'',0,'2025-10-14','0000-00-00',587,0,617,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 10:49:42','','0000-00-00 00:00:00',0),(799,0,0,703,'2526','H','O',747,'',0,'2025-10-14','0000-00-00',597,0,627,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 10:56:10','','0000-00-00 00:00:00',0),(800,0,0,704,'2526','H','O',748,'',0,'2025-10-14','0000-00-00',598,0,628,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 10:58:14','','0000-00-00 00:00:00',0),(801,0,0,702,'2526','H','O',749,'',0,'2025-10-14','0000-00-00',165,0,178,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BANK','','86001','','scan     ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 10:59:28','','0000-00-00 00:00:00',0),(802,0,0,705,'2526','H','O',750,'',0,'2025-10-14','0000-00-00',599,0,629,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 11:03:30','','0000-00-00 00:00:00',0),(803,0,0,706,'2526','H','O',751,'',0,'2025-10-14','0000-00-00',171,0,184,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 11:05:31','','0000-00-00 00:00:00',0),(804,0,0,707,'2526','H','O',752,'',0,'2025-10-14','0000-00-00',600,0,630,0,'D27','',0,1700.00,0.00,0.00,1700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','42490','','scan     ',1700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 11:07:01','','0000-00-00 00:00:00',0),(805,0,0,708,'2526','H','O',753,'',0,'2025-10-14','0000-00-00',601,0,631,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 11:07:47','','0000-00-00 00:00:00',0),(806,0,0,709,'2526','H','O',754,'',0,'2025-10-14','0000-00-00',602,0,632,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 11:12:49','','0000-00-00 00:00:00',0),(807,0,0,710,'2526','H','O',755,'',0,'2025-10-14','0000-00-00',603,0,633,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-14 11:13:46','','0000-00-00 00:00:00',0),(808,0,0,712,'2526','H','O',756,'',0,'2025-10-14','0000-00-00',605,0,635,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 11:16:39','','0000-00-00 00:00:00',0),(809,0,0,713,'2526','H','O',757,'',0,'2025-10-14','0000-00-00',606,0,636,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 11:17:48','','0000-00-00 00:00:00',0),(810,0,0,714,'2526','H','O',758,'',0,'2025-10-14','0000-00-00',607,0,637,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 11:19:11','','0000-00-00 00:00:00',0),(811,0,0,693,'2526','H','O',759,'',0,'2025-10-14','0000-00-00',589,0,619,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 11:22:01','','0000-00-00 00:00:00',0),(812,0,0,686,'2526','H','O',760,'',0,'2025-10-14','0000-00-00',584,0,615,0,'D06','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 11:22:12','','0000-00-00 00:00:00',0),(813,0,0,688,'2526','H','O',761,'',0,'2025-10-14','0000-00-00',585,0,616,0,'D06','',0,6900.00,0.00,0.00,6900.00,1100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 11:25:12','','0000-00-00 00:00:00',0),(814,0,0,715,'2526','H','O',762,'',0,'2025-10-14','0000-00-00',608,0,638,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-14 11:28:44','','0000-00-00 00:00:00',0),(815,0,0,711,'2526','H','O',763,'',0,'2025-10-14','0000-00-00',604,0,634,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 11:40:22','','0000-00-00 00:00:00',0),(816,0,0,716,'2526','H','O',764,'',0,'2025-10-14','0000-00-00',609,0,639,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 11:40:57','','0000-00-00 00:00:00',0),(817,0,0,717,'2526','H','O',765,'',0,'2025-10-14','0000-00-00',610,0,640,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 11:41:14','','0000-00-00 00:00:00',0),(818,0,0,718,'2526','H','O',766,'',0,'2025-10-14','0000-00-00',611,0,641,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 11:42:38','','0000-00-00 00:00:00',0),(819,0,0,697,'2526','H','O',767,'',0,'2025-10-14','0000-00-00',593,0,623,0,'D06','',0,4400.00,0.00,0.00,4400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS BANK','','13645','','SCAN',4200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 11:44:17','','0000-00-00 00:00:00',0),(820,0,0,715,'2526','H','O',768,'',0,'2025-10-14','0000-00-00',608,0,638,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-14 11:47:17','','0000-00-00 00:00:00',0),(821,0,0,719,'2526','H','O',769,'',0,'2025-10-14','0000-00-00',612,0,642,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-14 11:48:58','','0000-00-00 00:00:00',0),(822,0,0,720,'2526','H','O',770,'',0,'2025-10-14','0000-00-00',613,0,643,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 11:51:24','','0000-00-00 00:00:00',0),(823,0,0,721,'2526','H','O',771,'',0,'2025-10-14','0000-00-00',614,0,644,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 12:00:03','','0000-00-00 00:00:00',0),(824,0,0,719,'2526','H','O',772,'',0,'2025-10-14','0000-00-00',612,0,642,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-14 12:05:14','','0000-00-00 00:00:00',0),(825,0,0,509,'2526','H','D',27,'',0,'2025-10-14','0000-00-00',0,41,467,0,'D27','',0,12600.00,0.00,0.00,12600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-5000,0,'0000-00-00','','N','N','F','N',7600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-14 12:10:02','','0000-00-00 00:00:00',0),(826,0,0,722,'2526','H','O',773,'',0,'2025-10-14','0000-00-00',615,0,645,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 12:10:49','','0000-00-00 00:00:00',0),(827,0,0,723,'2526','H','O',774,'',0,'2025-10-14','0000-00-00',616,0,646,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 12:13:45','','0000-00-00 00:00:00',0),(828,0,0,509,'2526','H','I',27,'',0,'2025-10-14','0000-00-00',0,41,467,0,'D27','',0,12600.00,0.00,0.00,12600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-12600,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-14 12:16:38','','0000-00-00 00:00:00',0),(829,0,0,725,'2526','H','O',775,'',0,'2025-10-14','0000-00-00',618,0,648,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','40818','','SCAN',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 12:18:15','','0000-00-00 00:00:00',0),(830,0,0,724,'2526','H','O',776,'',0,'2025-10-14','0000-00-00',617,0,647,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-14 12:18:39','','0000-00-00 00:00:00',0),(831,0,0,727,'2526','H','O',777,'',0,'2025-10-14','0000-00-00',620,0,650,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 12:19:28','','0000-00-00 00:00:00',0),(832,0,0,726,'2526','H','O',778,'',0,'2025-10-14','0000-00-00',619,0,649,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 12:19:45','','0000-00-00 00:00:00',0),(833,0,0,728,'2526','H','O',779,'',0,'2025-10-14','0000-00-00',621,0,651,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 12:28:39','','0000-00-00 00:00:00',0),(834,0,0,729,'2526','H','O',780,'',0,'2025-10-14','0000-00-00',622,0,652,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 12:32:48','','0000-00-00 00:00:00',0),(835,0,0,731,'2526','H','O',781,'',0,'2025-10-14','0000-00-00',624,0,654,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 12:36:23','','0000-00-00 00:00:00',0),(836,0,0,732,'2526','H','O',782,'',0,'2025-10-14','0000-00-00',625,0,655,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 12:36:49','','0000-00-00 00:00:00',0),(837,0,0,730,'2526','H','O',783,'',0,'2025-10-14','0000-00-00',623,0,653,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','20769','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 12:37:03','','0000-00-00 00:00:00',0),(838,0,0,733,'2526','H','O',784,'',0,'2025-10-14','0000-00-00',626,0,656,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 12:38:46','','0000-00-00 00:00:00',0),(839,0,0,734,'2526','H','O',785,'',0,'2025-10-14','0000-00-00',627,0,657,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 12:43:25','','0000-00-00 00:00:00',0),(840,0,0,735,'2526','H','O',786,'',0,'2025-10-14','0000-00-00',628,0,658,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 12:44:51','','0000-00-00 00:00:00',0),(841,0,0,736,'2526','H','O',787,'',0,'2025-10-14','0000-00-00',629,0,659,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 12:47:44','','0000-00-00 00:00:00',0),(842,0,0,703,'2526','H','O',788,'',0,'2025-10-14','0000-00-00',597,0,627,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 12:50:42','','0000-00-00 00:00:00',0),(843,0,0,723,'2526','H','O',789,'',0,'2025-10-14','0000-00-00',616,0,646,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','indian oversea','','97286','','scan ',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 12:54:21','','0000-00-00 00:00:00',0),(844,0,0,406,'2526','H','D',28,'',0,'2025-10-14','0000-00-00',0,22,385,0,'D03','',0,64550.00,0.00,0.00,64550.00,50.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-40000,0,'0000-00-00','','N','N','F','N',24500.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-14 12:54:21','riya','2025-10-14 13:56:03',0),(845,0,0,738,'2526','H','O',790,'',0,'2025-10-14','0000-00-00',630,0,660,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','52348','','scan     ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 12:56:10','','0000-00-00 00:00:00',0),(846,0,0,720,'2526','H','O',791,'',0,'2025-10-14','0000-00-00',613,0,643,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 13:01:06','','0000-00-00 00:00:00',0),(847,0,0,739,'2526','H','O',792,'',0,'2025-10-14','0000-00-00',631,0,661,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 13:06:47','','0000-00-00 00:00:00',0),(848,0,0,740,'2526','H','O',793,'',0,'2025-10-14','0000-00-00',632,0,662,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 13:12:54','','0000-00-00 00:00:00',0),(849,0,0,741,'2526','H','O',794,'',0,'2025-10-14','0000-00-00',633,0,663,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 13:14:30','','0000-00-00 00:00:00',0),(850,0,0,742,'2526','H','O',795,'',0,'2025-10-14','0000-00-00',250,0,265,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 13:16:28','','0000-00-00 00:00:00',0),(851,0,0,714,'2526','H','O',796,'',0,'2025-10-14','0000-00-00',607,0,637,0,'D06','',0,4700.00,0.00,0.00,4700.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 13:39:07','','0000-00-00 00:00:00',0),(852,0,0,725,'2526','H','O',797,'',0,'2025-10-14','0000-00-00',618,0,648,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','89218','','scan ',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 13:51:10','','0000-00-00 00:00:00',0),(853,0,0,406,'2526','H','I',28,'',0,'2025-10-14','0000-00-00',0,22,385,0,'D03','',0,64550.00,0.00,0.00,64550.00,50.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-64500,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(854,0,0,48,'2526','H','D',29,'',0,'2025-10-14','0000-00-00',0,5,48,0,'D27','',0,77150.00,0.00,0.00,77150.00,14150.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-40000,0,'0000-00-00','','N','N','F','N',23000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-14 15:24:54','riya','2025-10-14 15:25:26',0),(855,0,0,48,'2526','H','I',29,'',0,'2025-10-14','0000-00-00',0,5,48,0,'D27','',0,77150.00,0.00,0.00,77150.00,14150.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-63000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(856,0,0,746,'2526','H','O',798,'',0,'2025-10-14','0000-00-00',629,0,659,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 16:42:32','','0000-00-00 00:00:00',0),(857,0,0,747,'2526','H','O',799,'',0,'2025-10-14','0000-00-00',636,0,666,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 16:51:48','','0000-00-00 00:00:00',0),(858,0,0,748,'2526','H','O',800,'',0,'2025-10-14','0000-00-00',637,0,667,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-14 16:52:10','','0000-00-00 00:00:00',0),(859,0,0,749,'2526','H','O',801,'',0,'2025-10-14','0000-00-00',638,0,668,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 16:53:39','','0000-00-00 00:00:00',0),(860,0,0,750,'2526','H','O',802,'',0,'2025-10-14','0000-00-00',639,0,669,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 16:58:36','','0000-00-00 00:00:00',0),(861,0,0,751,'2526','H','O',803,'',0,'2025-10-14','0000-00-00',640,0,670,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-14 17:13:18','','0000-00-00 00:00:00',0),(862,0,0,752,'2526','H','O',804,'',0,'2025-10-14','0000-00-00',641,0,671,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC','','86804','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 17:15:09','','0000-00-00 00:00:00',0),(863,0,0,753,'2526','H','O',805,'',0,'2025-10-14','0000-00-00',642,0,672,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 17:17:57','','0000-00-00 00:00:00',0),(864,0,0,754,'2526','H','O',806,'',0,'2025-10-14','0000-00-00',643,0,673,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 17:18:54','','0000-00-00 00:00:00',0),(865,0,0,755,'2526','H','O',807,'',0,'2025-10-14','0000-00-00',644,0,674,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 17:28:52','','0000-00-00 00:00:00',0),(866,0,0,749,'2526','H','O',808,'',0,'2025-10-14','0000-00-00',638,0,668,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 17:37:37','','0000-00-00 00:00:00',0),(867,0,0,756,'2526','H','O',809,'',0,'2025-10-14','0000-00-00',645,0,675,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-14 17:39:15','','0000-00-00 00:00:00',0),(868,0,0,757,'2526','H','O',810,'',0,'2025-10-14','0000-00-00',646,0,676,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 17:41:07','','0000-00-00 00:00:00',0),(869,0,0,760,'2526','H','O',811,'',0,'2025-10-14','0000-00-00',305,0,321,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 17:44:53','','0000-00-00 00:00:00',0),(870,0,0,759,'2526','H','O',812,'',0,'2025-10-14','0000-00-00',648,0,678,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 17:44:55','','0000-00-00 00:00:00',0),(871,0,0,761,'2526','H','O',813,'',0,'2025-10-14','0000-00-00',649,0,679,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 17:46:16','','0000-00-00 00:00:00',0),(872,0,0,758,'2526','H','O',814,'',0,'2025-10-14','0000-00-00',647,0,677,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 17:46:40','','0000-00-00 00:00:00',0),(873,0,0,762,'2526','H','O',815,'',0,'2025-10-14','0000-00-00',650,0,680,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 854','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 17:47:53','urvashi','2025-10-14 19:19:02',0),(874,0,0,763,'2526','H','O',816,'',0,'2025-10-14','0000-00-00',651,0,681,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 17:48:33','','0000-00-00 00:00:00',0),(875,0,0,765,'2526','H','O',817,'',0,'2025-10-14','0000-00-00',653,0,683,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 17:51:46','','0000-00-00 00:00:00',0),(876,0,0,764,'2526','H','O',818,'',0,'2025-10-14','0000-00-00',652,0,682,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 17:52:06','','0000-00-00 00:00:00',0),(877,0,0,750,'2526','H','O',819,'',0,'2025-10-14','0000-00-00',639,0,669,0,'D06','',0,6900.00,0.00,0.00,6900.00,900.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOI','','61526','','SCAN',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 17:56:09','','0000-00-00 00:00:00',0),(878,0,0,766,'2526','H','O',820,'',0,'2025-10-14','0000-00-00',654,0,684,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-14 17:57:03','','0000-00-00 00:00:00',0),(879,0,0,767,'2526','H','O',821,'',0,'2025-10-14','0000-00-00',655,0,685,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 17:57:23','','0000-00-00 00:00:00',0),(880,0,0,769,'2526','H','O',822,'',0,'2025-10-14','0000-00-00',657,0,687,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 17:57:57','','0000-00-00 00:00:00',0),(881,0,0,768,'2526','H','O',823,'',0,'2025-10-14','0000-00-00',656,0,686,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 17:58:10','','0000-00-00 00:00:00',0),(882,0,0,770,'2526','H','O',824,'',0,'2025-10-14','0000-00-00',658,0,688,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 17:59:52','','0000-00-00 00:00:00',0),(883,0,0,771,'2526','H','O',825,'',0,'2025-10-14','0000-00-00',111,0,122,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 18:00:42','','0000-00-00 00:00:00',0),(884,0,0,748,'2526','H','O',826,'',0,'2025-10-14','0000-00-00',637,0,667,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 18:00:58','','0000-00-00 00:00:00',0),(885,0,0,772,'2526','H','O',827,'',0,'2025-10-14','0000-00-00',659,0,689,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 18:03:32','','0000-00-00 00:00:00',0),(886,0,0,773,'2526','H','O',828,'',0,'2025-10-14','0000-00-00',660,0,690,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 18:04:50','','0000-00-00 00:00:00',0),(887,0,0,774,'2526','H','O',829,'',0,'2025-10-14','0000-00-00',661,0,691,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 18:11:56','','0000-00-00 00:00:00',0),(888,0,0,775,'2526','H','O',830,'',0,'2025-10-14','0000-00-00',249,0,264,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 18:12:28','','0000-00-00 00:00:00',0),(889,0,0,776,'2526','H','O',831,'',0,'2025-10-14','0000-00-00',662,0,692,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 18:19:28','','0000-00-00 00:00:00',0),(890,0,0,777,'2526','H','O',832,'',0,'2025-10-14','0000-00-00',663,0,693,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 18:21:01','','0000-00-00 00:00:00',0),(891,0,0,779,'2526','H','O',833,'',0,'2025-10-14','0000-00-00',665,0,695,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 18:22:08','','0000-00-00 00:00:00',0),(892,0,0,778,'2526','H','O',834,'',0,'2025-10-14','0000-00-00',664,0,694,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','fedral bank','','70104','','scan     ',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 837','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 18:23:25','janvi','2025-10-14 18:28:12',0),(893,0,0,780,'2526','H','O',835,'',0,'2025-10-14','0000-00-00',666,0,696,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOI BANK','','171317','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 18:24:59','','0000-00-00 00:00:00',0),(894,0,0,781,'2526','H','O',836,'',0,'2025-10-14','0000-00-00',667,0,697,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','fedral bank','','70104','','scan     ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 18:27:21','','0000-00-00 00:00:00',0),(895,0,0,778,'2526','H','O',837,'',0,'2025-10-14','0000-00-00',664,0,694,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','fedral bank','','70104','','SCAN ',-400.00,0,0,'2025-10-14','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 834','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 18:28:12','janvi','2025-10-14 18:29:10',0),(896,0,0,782,'2526','H','O',838,'',0,'2025-10-14','0000-00-00',668,0,698,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 18:28:40','','0000-00-00 00:00:00',0),(897,0,0,783,'2526','H','O',839,'',0,'2025-10-14','0000-00-00',669,0,699,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 18:29:37','','0000-00-00 00:00:00',0),(898,0,0,786,'2526','H','O',840,'',0,'2025-10-14','0000-00-00',303,0,319,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 18:31:50','','0000-00-00 00:00:00',0),(899,0,0,784,'2526','H','O',841,'',0,'2025-10-14','0000-00-00',670,0,700,0,'D27','',0,1050.00,0.00,0.00,1050.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1050.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 18:31:58','','0000-00-00 00:00:00',0),(900,0,0,765,'2526','H','O',842,'',0,'2025-10-14','0000-00-00',653,0,683,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 18:32:15','','0000-00-00 00:00:00',0),(901,0,0,785,'2526','H','O',843,'',0,'2025-10-14','0000-00-00',671,0,62,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 18:32:42','','0000-00-00 00:00:00',0),(902,0,0,787,'2526','H','O',844,'',0,'2025-10-14','0000-00-00',672,0,701,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 18:35:10','','0000-00-00 00:00:00',0),(903,0,0,788,'2526','H','O',845,'',0,'2025-10-14','0000-00-00',673,0,702,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 18:37:02','','0000-00-00 00:00:00',0),(904,0,0,789,'2526','H','O',846,'',0,'2025-10-14','0000-00-00',674,0,703,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 18:47:48','','0000-00-00 00:00:00',0),(905,0,0,791,'2526','H','O',847,'',0,'2025-10-14','0000-00-00',676,0,705,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 18:58:39','','0000-00-00 00:00:00',0),(907,0,0,792,'2526','H','O',848,'',0,'2025-10-14','0000-00-00',677,0,706,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 19:04:20','','0000-00-00 00:00:00',0),(908,0,0,793,'2526','H','O',849,'',0,'2025-10-14','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 19:05:35','','0000-00-00 00:00:00',0),(909,0,0,794,'2526','H','O',850,'',0,'2025-10-14','0000-00-00',678,0,707,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 19:06:17','','0000-00-00 00:00:00',0),(910,0,0,795,'2526','H','O',851,'',0,'2025-10-14','0000-00-00',679,0,708,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 19:06:22','','0000-00-00 00:00:00',0),(911,0,0,416,'2526','H','D',31,'',0,'2025-10-14','0000-00-00',276,27,292,0,'D27','',0,24100.00,0.00,0.00,24100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-16000,0,'0000-00-00','','N','N','F','N',8100.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-14 19:12:46','riya','2025-10-14 19:21:06',0),(912,0,0,797,'2526','H','O',852,'',0,'2025-10-14','0000-00-00',681,0,710,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','66517','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 19:16:57','','0000-00-00 00:00:00',0),(913,0,0,796,'2526','H','O',853,'',0,'2025-10-14','0000-00-00',680,0,709,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI BANK','','63583','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-14 19:18:32','','0000-00-00 00:00:00',0),(914,0,0,762,'2526','H','O',854,'',0,'2025-10-14','0000-00-00',650,0,680,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-14','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 815','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 19:19:02','urvashi','2025-10-14 19:19:19',0),(915,0,0,798,'2526','H','O',855,'',0,'2025-10-14','0000-00-00',682,0,711,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 19:19:34','','0000-00-00 00:00:00',0),(916,0,0,762,'2526','H','O',856,'',0,'2025-10-14','0000-00-00',650,0,680,0,'D06','',0,500.00,0.00,0.00,500.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 19:19:58','','0000-00-00 00:00:00',0),(917,0,0,416,'2526','H','I',30,'',0,'2025-10-14','0000-00-00',276,27,292,0,'D27','',0,24100.00,0.00,0.00,24100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-24100,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(918,0,0,799,'2526','H','O',857,'',0,'2025-10-14','0000-00-00',291,0,307,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 19:27:38','','0000-00-00 00:00:00',0),(919,0,0,785,'2526','H','O',858,'',0,'2025-10-14','0000-00-00',671,0,62,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 19:32:28','','0000-00-00 00:00:00',0),(920,0,0,800,'2526','H','O',859,'',0,'2025-10-14','0000-00-00',683,0,712,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','bank','','74881','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-14 19:41:30','','0000-00-00 00:00:00',0),(921,0,0,683,'2526','H','D',32,'',0,'2025-10-14','0000-00-00',431,52,454,0,'D02','',0,18000.00,0.00,0.00,18000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',3000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-14 19:42:57','','0000-00-00 00:00:00',0),(922,0,0,683,'2526','H','I',31,'',0,'2025-10-14','0000-00-00',431,52,454,0,'D02','',0,18000.00,0.00,0.00,18000.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-17000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-14 19:43:53','','0000-00-00 00:00:00',0),(923,0,0,801,'2526','H','O',860,'',0,'2025-10-14','0000-00-00',1,0,1,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 19:47:52','','0000-00-00 00:00:00',0),(924,0,0,802,'2526','H','O',861,'',0,'2025-10-14','0000-00-00',684,0,713,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-14 19:49:15','','0000-00-00 00:00:00',0),(925,0,0,802,'2526','H','O',862,'',0,'2025-10-14','0000-00-00',684,0,713,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-14 19:54:15','','0000-00-00 00:00:00',0),(926,0,0,675,'2526','H','D',33,'',0,'2025-10-14','0000-00-00',0,51,607,0,'D02','',0,7700.00,0.00,0.00,7700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',700.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-14 21:08:05','vishal','2025-10-14 21:08:41',0),(927,0,0,675,'2526','H','I',32,'',0,'2025-10-14','0000-00-00',0,51,607,0,'D02','',0,7700.00,0.00,0.00,7700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7700,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-14 21:13:29','','0000-00-00 00:00:00',0),(928,0,0,805,'2526','H','O',863,'',0,'2025-10-15','0000-00-00',686,0,716,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 09:11:34','','0000-00-00 00:00:00',0),(929,0,0,806,'2526','H','O',864,'',0,'2025-10-15','0000-00-00',687,0,717,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 09:13:00','','0000-00-00 00:00:00',0),(930,0,0,804,'2526','H','O',865,'',0,'2025-10-15','0000-00-00',685,0,715,0,'D27','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-15 09:13:09','','0000-00-00 00:00:00',0),(931,0,0,807,'2526','H','O',866,'',0,'2025-10-15','0000-00-00',688,0,718,0,'D27','',0,1900.00,0.00,0.00,1900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BANK','','47608','','scan ',1900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-15 09:15:48','','0000-00-00 00:00:00',0),(932,0,0,808,'2526','H','O',867,'',0,'2025-10-15','0000-00-00',689,0,719,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-15 09:18:29','','0000-00-00 00:00:00',0),(933,0,0,810,'2526','H','O',868,'',0,'2025-10-15','0000-00-00',276,0,292,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-15 09:29:07','','0000-00-00 00:00:00',0),(934,0,0,812,'2526','H','O',869,'',0,'2025-10-15','0000-00-00',181,0,194,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-15 09:39:51','','0000-00-00 00:00:00',0),(935,0,0,813,'2526','H','O',870,'',0,'2025-10-15','0000-00-00',691,0,722,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 09:42:07','','0000-00-00 00:00:00',0),(936,0,0,811,'2526','H','O',871,'',0,'2025-10-15','0000-00-00',690,0,721,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 09:53:48','','0000-00-00 00:00:00',0),(937,0,0,814,'2526','H','O',872,'',0,'2025-10-15','0000-00-00',692,0,723,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 09:57:39','','0000-00-00 00:00:00',0),(938,0,0,815,'2526','H','O',873,'',0,'2025-10-15','0000-00-00',693,0,724,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 874','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-15 10:03:27','janvi','2025-10-15 10:19:35',0),(939,0,0,815,'2526','H','O',874,'',0,'2025-10-15','0000-00-00',693,0,724,0,'D02','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-15','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 873','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 10:19:35','janvi','2025-10-15 10:19:53',0),(940,0,0,817,'2526','H','O',875,'',0,'2025-10-15','0000-00-00',695,0,726,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 10:27:05','','0000-00-00 00:00:00',0),(941,0,0,818,'2526','H','O',876,'',0,'2025-10-15','0000-00-00',696,0,727,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 10:34:41','','0000-00-00 00:00:00',0),(942,0,0,819,'2526','H','O',877,'',0,'2025-10-15','0000-00-00',79,0,90,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 10:37:44','','0000-00-00 00:00:00',0),(943,0,0,820,'2526','H','O',878,'',0,'2025-10-15','0000-00-00',697,0,728,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 10:39:35','','0000-00-00 00:00:00',0),(944,0,0,822,'2526','H','O',879,'',0,'2025-10-15','0000-00-00',16,0,16,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 10:47:15','','0000-00-00 00:00:00',0),(945,0,0,823,'2526','H','O',880,'',0,'2025-10-15','0000-00-00',699,0,730,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 10:47:19','','0000-00-00 00:00:00',0),(946,0,0,824,'2526','H','O',881,'',0,'2025-10-15','0000-00-00',700,0,731,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 10:49:09','','0000-00-00 00:00:00',0),(947,0,0,816,'2526','H','O',882,'',0,'2025-10-15','0000-00-00',694,0,725,0,'D03','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-15 10:51:34','','0000-00-00 00:00:00',0),(948,0,0,825,'2526','H','O',883,'',0,'2025-10-15','0000-00-00',701,0,732,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','30975','','scan     ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 10:52:12','','0000-00-00 00:00:00',0),(949,0,0,826,'2526','H','O',884,'',0,'2025-10-15','0000-00-00',702,0,733,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-15 10:57:25','','0000-00-00 00:00:00',0),(950,0,0,827,'2526','H','O',885,'',0,'2025-10-15','0000-00-00',26,0,27,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-15 10:59:13','','0000-00-00 00:00:00',0),(951,0,0,828,'2526','H','O',886,'',0,'2025-10-15','0000-00-00',703,0,734,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 11:00:07','','0000-00-00 00:00:00',0),(952,0,0,829,'2526','H','O',887,'',0,'2025-10-15','0000-00-00',704,0,735,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','HO 892','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-15 11:01:16','manshi','2025-10-15 11:13:54',0),(953,0,0,830,'2526','H','O',888,'',0,'2025-10-15','0000-00-00',705,0,736,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 11:01:54','','0000-00-00 00:00:00',0),(954,0,0,831,'2526','H','O',889,'',0,'2025-10-15','0000-00-00',335,0,351,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 11:04:07','','0000-00-00 00:00:00',0),(955,0,0,832,'2526','H','O',890,'',0,'2025-10-15','0000-00-00',706,0,737,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 11:07:06','','0000-00-00 00:00:00',0),(956,0,0,834,'2526','H','O',891,'',0,'2025-10-15','0000-00-00',708,0,739,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 11:12:07','','0000-00-00 00:00:00',0),(957,0,0,829,'2526','H','O',892,'',0,'2025-10-15','0000-00-00',704,0,735,0,'D03','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-10-15','Y','N','N','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','','HO 887','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-15 11:13:54','manshi','2025-10-15 11:14:21',0),(958,0,0,833,'2526','H','O',893,'',0,'2025-10-15','0000-00-00',707,0,738,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-15 11:20:59','','0000-00-00 00:00:00',0),(959,0,0,837,'2526','H','O',894,'',0,'2025-10-15','0000-00-00',710,0,741,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 11:21:04','','0000-00-00 00:00:00',0),(960,0,0,836,'2526','H','O',895,'',0,'2025-10-15','0000-00-00',709,0,740,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','31256','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 11:24:01','','0000-00-00 00:00:00',0),(961,0,0,838,'2526','H','O',896,'',0,'2025-10-15','0000-00-00',711,0,742,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 11:24:09','','0000-00-00 00:00:00',0),(962,0,0,839,'2526','H','O',897,'',0,'2025-10-15','0000-00-00',712,0,743,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 11:24:26','','0000-00-00 00:00:00',0),(963,0,0,840,'2526','H','O',898,'',0,'2025-10-15','0000-00-00',713,0,744,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 11:25:40','','0000-00-00 00:00:00',0),(964,0,0,842,'2526','H','O',899,'',0,'2025-10-15','0000-00-00',714,0,745,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 11:30:01','','0000-00-00 00:00:00',0),(965,0,0,843,'2526','H','O',900,'',0,'2025-10-15','0000-00-00',715,0,746,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 11:31:21','','0000-00-00 00:00:00',0),(966,0,0,826,'2526','H','O',901,'',0,'2025-10-15','0000-00-00',702,0,733,0,'D03','',0,250.00,0.00,0.00,250.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',250.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-15 11:33:34','','0000-00-00 00:00:00',0),(967,0,0,811,'2526','H','O',902,'',0,'2025-10-15','0000-00-00',690,0,721,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','95029','','SCAN',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 11:35:14','','0000-00-00 00:00:00',0),(968,0,0,844,'2526','H','O',903,'',0,'2025-10-15','0000-00-00',716,0,747,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 11:39:27','','0000-00-00 00:00:00',0),(969,0,0,824,'2526','H','O',904,'',0,'2025-10-15','0000-00-00',700,0,731,0,'D06','',0,5200.00,0.00,0.00,5200.00,800.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 11:43:19','','0000-00-00 00:00:00',0),(970,0,0,845,'2526','H','O',905,'',0,'2025-10-15','0000-00-00',47,0,53,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 11:45:24','','0000-00-00 00:00:00',0),(971,0,0,846,'2526','H','O',906,'',0,'2025-10-15','0000-00-00',717,0,748,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 11:50:09','','0000-00-00 00:00:00',0),(972,0,0,847,'2526','H','O',907,'',0,'2025-10-15','0000-00-00',718,0,749,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 11:52:28','','0000-00-00 00:00:00',0),(973,0,0,848,'2526','H','O',908,'',0,'2025-10-15','0000-00-00',719,0,750,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 11:52:48','','0000-00-00 00:00:00',0),(974,0,0,849,'2526','H','O',909,'',0,'2025-10-15','0000-00-00',720,0,751,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 11:53:27','','0000-00-00 00:00:00',0),(975,0,0,850,'2526','H','O',910,'',0,'2025-10-15','0000-00-00',721,0,752,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 11:54:36','','0000-00-00 00:00:00',0),(976,0,0,487,'2526','H','D',34,'',0,'2025-10-15','0000-00-00',60,36,71,0,'D27','',0,28700.00,0.00,0.00,28700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-17000,0,'0000-00-00','','N','N','F','N',11700.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-15 11:54:40','vishal','2025-10-15 12:09:50',0),(977,0,0,851,'2526','H','O',911,'',0,'2025-10-15','0000-00-00',722,0,753,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 11:54:45','','0000-00-00 00:00:00',0),(978,0,0,216,'2526','H','D',35,'',0,'2025-10-15','0000-00-00',166,16,179,0,'D27','',0,31100.00,0.00,0.00,31100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-16000,0,'0000-00-00','','N','N','F','N',15100.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-15 12:03:01','vishal','2025-10-15 12:27:43',0),(979,0,0,852,'2526','H','O',912,'',0,'2025-10-15','0000-00-00',723,0,754,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 12:08:38','','0000-00-00 00:00:00',0),(980,0,0,837,'2526','H','O',913,'',0,'2025-10-15','0000-00-00',710,0,741,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 12:10:21','','0000-00-00 00:00:00',0),(981,0,0,854,'2526','H','O',914,'',0,'2025-10-15','0000-00-00',724,0,755,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 12:10:28','','0000-00-00 00:00:00',0),(982,0,0,855,'2526','H','O',915,'',0,'2025-10-15','0000-00-00',725,0,756,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 12:12:07','','0000-00-00 00:00:00',0),(983,0,0,853,'2526','H','O',916,'',0,'2025-10-15','0000-00-00',476,0,502,0,'D02','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','61077','','scan     ',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 12:12:48','','0000-00-00 00:00:00',0),(984,0,0,487,'2526','H','I',33,'',0,'2025-10-15','0000-00-00',60,36,71,0,'D27','',0,28700.00,0.00,0.00,28700.00,1200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-27500,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(985,0,0,856,'2526','H','O',917,'',0,'2025-10-15','0000-00-00',726,0,757,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 12:13:46','','0000-00-00 00:00:00',0),(986,0,0,839,'2526','H','O',918,'',0,'2025-10-15','0000-00-00',712,0,743,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 12:15:12','','0000-00-00 00:00:00',0),(987,0,0,858,'2526','H','O',919,'',0,'2025-10-15','0000-00-00',727,0,758,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 12:21:26','','0000-00-00 00:00:00',0),(988,0,0,859,'2526','H','O',920,'',0,'2025-10-15','0000-00-00',728,0,759,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 12:21:33','','0000-00-00 00:00:00',0),(989,0,0,860,'2526','H','O',921,'',0,'2025-10-15','0000-00-00',729,0,760,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-15 12:25:01','','0000-00-00 00:00:00',0),(990,0,0,844,'2526','H','O',922,'',0,'2025-10-15','0000-00-00',716,0,747,0,'D06','',0,2500.00,0.00,0.00,2500.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 12:27:36','','0000-00-00 00:00:00',0),(991,0,0,861,'2526','H','O',923,'',0,'2025-10-15','0000-00-00',730,0,761,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 12:28:18','','0000-00-00 00:00:00',0),(992,0,0,851,'2526','H','O',924,'',0,'2025-10-15','0000-00-00',722,0,753,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 12:30:40','','0000-00-00 00:00:00',0),(993,0,0,862,'2526','H','O',925,'',0,'2025-10-15','0000-00-00',731,0,762,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 12:32:06','','0000-00-00 00:00:00',0),(994,0,0,863,'2526','H','O',926,'',0,'2025-10-15','0000-00-00',732,0,763,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 12:35:52','','0000-00-00 00:00:00',0),(995,0,0,690,'2526','H','D',36,'',0,'2025-10-15','0000-00-00',0,55,66,0,'D02','',0,26650.00,0.00,0.00,26650.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',26650.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-15 12:38:09','riya','2025-10-15 18:44:12',0),(996,0,0,743,'2526','H','D',37,'',0,'2025-10-15','0000-00-00',619,58,649,0,'D02','',0,18000.00,0.00,0.00,18000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',3000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-15 12:40:05','vishal','2025-10-15 13:05:27',0),(997,0,0,864,'2526','H','O',927,'',0,'2025-10-15','0000-00-00',733,0,764,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 12:40:43','','0000-00-00 00:00:00',0),(998,0,0,701,'2526','H','D',38,'',0,'2025-10-15','0000-00-00',595,56,625,0,'D02','',0,35000.00,0.00,0.00,35000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-35000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-15 12:43:34','vishal','2025-10-15 13:42:57',0),(999,0,0,865,'2526','H','O',928,'',0,'2025-10-15','0000-00-00',734,0,765,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','IDBI','','98541','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 12:52:23','','0000-00-00 00:00:00',0),(1000,0,0,216,'2526','H','I',34,'',0,'2025-10-15','0000-00-00',166,16,179,0,'D27','',0,31100.00,0.00,0.00,31100.00,1500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-29600,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(1001,0,0,866,'2526','H','O',929,'',0,'2025-10-15','0000-00-00',735,0,766,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 13:00:18','','0000-00-00 00:00:00',0),(1002,0,0,856,'2526','H','O',930,'',0,'2025-10-15','0000-00-00',726,0,757,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 13:05:03','','0000-00-00 00:00:00',0),(1003,0,0,867,'2526','H','O',931,'',0,'2025-10-15','0000-00-00',736,0,767,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 13:07:05','','0000-00-00 00:00:00',0),(1004,0,0,869,'2526','H','O',932,'',0,'2025-10-15','0000-00-00',737,0,768,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 13:23:55','','0000-00-00 00:00:00',0),(1005,0,0,870,'2526','H','O',933,'',0,'2025-10-15','0000-00-00',738,0,769,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 938','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 13:26:34','reception','2025-10-15 14:08:52',0),(1006,0,0,816,'2526','H','O',934,'',0,'2025-10-15','0000-00-00',694,0,725,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-15 13:30:20','','0000-00-00 00:00:00',0),(1007,0,0,743,'2526','H','I',35,'',0,'2025-10-15','0000-00-00',619,58,649,0,'D02','',0,18000.00,0.00,0.00,18000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-18000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-15 13:32:01','','0000-00-00 00:00:00',0),(1008,0,0,701,'2526','H','I',36,'',0,'2025-10-15','0000-00-00',595,56,625,0,'D02','',0,35000.00,0.00,0.00,35000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-35000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-15 13:43:56','','0000-00-00 00:00:00',0),(1009,0,0,823,'2526','H','O',935,'',0,'2025-10-15','0000-00-00',699,0,730,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 13:48:40','','0000-00-00 00:00:00',0),(1010,0,0,868,'2526','H','O',936,'',0,'2025-10-15','0000-00-00',440,0,463,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 13:50:20','','0000-00-00 00:00:00',0),(1011,0,0,867,'2526','H','O',937,'',0,'2025-10-15','0000-00-00',736,0,767,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 14:03:09','','0000-00-00 00:00:00',0),(1012,0,0,870,'2526','H','O',938,'',0,'2025-10-15','0000-00-00',738,0,769,0,'D06','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-10-15','Y','N','N','','N',0.00,'','Y','FOC','','HO 933','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 14:08:52','reception','2025-10-15 14:09:17',0),(1013,0,0,874,'2526','H','O',939,'',0,'2025-10-15','0000-00-00',741,0,772,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-15 16:04:22','','0000-00-00 00:00:00',0),(1014,0,0,875,'2526','H','O',940,'',0,'2025-10-15','0000-00-00',742,0,773,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 16:31:33','','0000-00-00 00:00:00',0),(1015,0,0,876,'2526','H','O',941,'',0,'2025-10-15','0000-00-00',743,0,774,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','UNION BANK','','17944','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-15 16:33:47','','0000-00-00 00:00:00',0),(1016,0,0,879,'2526','H','O',942,'',0,'2025-10-15','0000-00-00',746,0,777,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 17:01:20','','0000-00-00 00:00:00',0),(1017,0,0,880,'2526','H','O',943,'',0,'2025-10-15','0000-00-00',747,0,778,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-15 17:02:57','','0000-00-00 00:00:00',0),(1018,0,0,881,'2526','H','O',944,'',0,'2025-10-15','0000-00-00',748,0,779,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 17:07:49','','0000-00-00 00:00:00',0),(1019,0,0,883,'2526','H','O',945,'',0,'2025-10-15','0000-00-00',749,0,781,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','tjsb bank','','57039','','SCAN',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100 CASH  RETURN','HO 959','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 17:19:49','reception','2025-10-15 18:06:42',0),(1020,0,0,880,'2526','H','O',946,'',0,'2025-10-15','0000-00-00',747,0,778,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 17:29:39','','0000-00-00 00:00:00',0),(1021,0,0,884,'2526','H','O',947,'',0,'2025-10-15','0000-00-00',211,0,224,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 984','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 17:32:41','janvi','2025-10-15 18:44:16',0),(1022,0,0,885,'2526','H','O',948,'',0,'2025-10-15','0000-00-00',750,0,782,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 17:36:16','','0000-00-00 00:00:00',0),(1023,0,0,886,'2526','H','O',949,'',0,'2025-10-15','0000-00-00',751,0,783,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 17:41:31','','0000-00-00 00:00:00',0),(1024,0,0,887,'2526','H','O',950,'',0,'2025-10-15','0000-00-00',752,0,784,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 17:44:36','','0000-00-00 00:00:00',0),(1025,0,0,888,'2526','H','O',951,'',0,'2025-10-15','0000-00-00',753,0,785,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 17:45:48','','0000-00-00 00:00:00',0),(1026,0,0,889,'2526','H','O',952,'',0,'2025-10-15','0000-00-00',754,0,786,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 17:46:40','','0000-00-00 00:00:00',0),(1027,0,0,874,'2526','H','O',953,'',0,'2025-10-15','0000-00-00',741,0,772,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 17:48:06','','0000-00-00 00:00:00',0),(1028,0,0,890,'2526','H','O',954,'',0,'2025-10-15','0000-00-00',755,0,787,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 17:50:38','','0000-00-00 00:00:00',0),(1029,0,0,891,'2526','H','O',955,'',0,'2025-10-15','0000-00-00',245,0,260,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 17:50:58','','0000-00-00 00:00:00',0),(1030,0,0,892,'2526','H','O',956,'',0,'2025-10-15','0000-00-00',756,0,788,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 17:52:37','','0000-00-00 00:00:00',0),(1031,0,0,893,'2526','H','O',957,'',0,'2025-10-15','0000-00-00',757,0,56,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 17:55:13','','0000-00-00 00:00:00',0),(1032,0,0,894,'2526','H','O',958,'',0,'2025-10-15','0000-00-00',758,0,789,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 17:59:23','','0000-00-00 00:00:00',0),(1033,0,0,883,'2526','H','O',959,'',0,'2025-10-15','0000-00-00',749,0,781,0,'D06','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','tjsb bank','','57039','','',-700.00,0,0,'2025-10-15','Y','N','N','','N',0.00,'','Y','100 CASH  RETURN','','HO 945','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 18:06:42','reception','2025-10-15 18:07:18',0),(1034,0,0,883,'2526','H','O',960,'',0,'2025-10-15','0000-00-00',749,0,781,0,'D06','',0,700.00,0.00,0.00,700.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','tjsb bank','','57039','','SCAN',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 18:08:23','','0000-00-00 00:00:00',0),(1035,0,0,895,'2526','H','O',961,'',0,'2025-10-15','0000-00-00',528,0,554,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 18:08:55','','0000-00-00 00:00:00',0),(1036,0,0,896,'2526','H','O',962,'',0,'2025-10-15','0000-00-00',759,0,790,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-15 18:09:08','','0000-00-00 00:00:00',0),(1037,0,0,897,'2526','H','O',963,'',0,'2025-10-15','0000-00-00',760,0,791,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 18:12:38','','0000-00-00 00:00:00',0),(1038,0,0,898,'2526','H','O',964,'',0,'2025-10-15','0000-00-00',293,0,309,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 18:13:21','','0000-00-00 00:00:00',0),(1039,0,0,899,'2526','H','O',965,'',0,'2025-10-15','0000-00-00',9,0,9,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 18:15:35','','0000-00-00 00:00:00',0),(1040,0,0,900,'2526','H','O',966,'',0,'2025-10-15','0000-00-00',761,0,792,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 18:16:01','','0000-00-00 00:00:00',0),(1041,0,0,901,'2526','H','O',967,'',0,'2025-10-15','0000-00-00',753,0,785,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 18:17:30','','0000-00-00 00:00:00',0),(1042,0,0,893,'2526','H','O',968,'',0,'2025-10-15','0000-00-00',757,0,56,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 18:22:01','','0000-00-00 00:00:00',0),(1043,0,0,902,'2526','H','O',969,'',0,'2025-10-15','0000-00-00',762,0,793,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 18:23:53','','0000-00-00 00:00:00',0),(1044,0,0,903,'2526','H','O',970,'',0,'2025-10-15','0000-00-00',763,0,794,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 18:26:42','','0000-00-00 00:00:00',0),(1045,0,0,904,'2526','H','O',971,'',0,'2025-10-15','0000-00-00',764,0,795,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 18:30:06','','0000-00-00 00:00:00',0),(1046,0,0,906,'2526','H','O',972,'',0,'2025-10-15','0000-00-00',765,0,796,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 18:31:30','','0000-00-00 00:00:00',0),(1047,0,0,892,'2526','H','O',973,'',0,'2025-10-15','0000-00-00',756,0,788,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 18:31:47','','0000-00-00 00:00:00',0),(1048,0,0,862,'2526','H','O',974,'',0,'2025-10-15','0000-00-00',731,0,762,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 18:32:36','','0000-00-00 00:00:00',0),(1049,0,0,896,'2526','H','O',975,'',0,'2025-10-15','0000-00-00',759,0,790,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-15 18:33:18','','0000-00-00 00:00:00',0),(1050,0,0,890,'2526','H','O',976,'',0,'2025-10-15','0000-00-00',755,0,787,0,'D06','',0,6900.00,0.00,0.00,6900.00,1300.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK','','09454','','SCAN',5600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 18:33:25','','0000-00-00 00:00:00',0),(1051,0,0,908,'2526','H','O',977,'',0,'2025-10-15','0000-00-00',767,0,798,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 18:35:08','','0000-00-00 00:00:00',0),(1052,0,0,909,'2526','H','O',978,'',0,'2025-10-15','0000-00-00',768,0,799,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 18:35:40','','0000-00-00 00:00:00',0),(1053,0,0,907,'2526','H','O',979,'',0,'2025-10-15','0000-00-00',766,0,797,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','48619','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 18:35:51','','0000-00-00 00:00:00',0),(1054,0,0,911,'2526','H','O',980,'',0,'2025-10-15','0000-00-00',770,0,801,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 18:40:04','','0000-00-00 00:00:00',0),(1055,0,0,910,'2526','H','O',981,'',0,'2025-10-15','0000-00-00',769,0,800,0,'D27','',0,850.00,0.00,0.00,850.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',850.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 18:40:09','','0000-00-00 00:00:00',0),(1056,0,0,912,'2526','H','O',982,'',0,'2025-10-15','0000-00-00',771,0,802,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 18:41:36','','0000-00-00 00:00:00',0),(1057,0,0,913,'2526','H','O',983,'',0,'2025-10-15','0000-00-00',772,0,803,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-15 18:41:44','','0000-00-00 00:00:00',0),(1058,0,0,884,'2526','H','O',984,'',0,'2025-10-15','0000-00-00',211,0,224,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-10-15','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 947','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 18:44:16','janvi','2025-10-15 18:44:35',0),(1059,0,0,915,'2526','H','O',985,'',0,'2025-10-15','0000-00-00',773,0,804,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','84346','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 18:44:39','','0000-00-00 00:00:00',0),(1060,0,0,916,'2526','H','O',986,'',0,'2025-10-15','0000-00-00',774,0,805,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','64316','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 18:50:12','','0000-00-00 00:00:00',0),(1061,0,0,917,'2526','H','O',987,'',0,'2025-10-15','0000-00-00',775,0,806,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 988','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 18:51:48','janvi','2025-10-15 18:52:48',0),(1062,0,0,917,'2526','H','O',988,'',0,'2025-10-15','0000-00-00',775,0,806,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-10-15','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 987','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 18:52:48','janvi','2025-10-15 18:53:03',0),(1063,0,0,917,'2526','H','O',989,'',0,'2025-10-15','0000-00-00',775,0,806,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','40859','','scan  ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 18:53:56','','0000-00-00 00:00:00',0),(1064,0,0,918,'2526','H','O',990,'',0,'2025-10-15','0000-00-00',776,0,807,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 18:54:34','','0000-00-00 00:00:00',0),(1065,0,0,906,'2526','H','O',991,'',0,'2025-10-15','0000-00-00',765,0,796,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 18:57:54','','0000-00-00 00:00:00',0),(1066,0,0,920,'2526','H','O',992,'',0,'2025-10-15','0000-00-00',777,0,808,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 19:08:35','','0000-00-00 00:00:00',0),(1067,0,0,921,'2526','H','O',993,'',0,'2025-10-15','0000-00-00',778,0,809,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 19:10:29','','0000-00-00 00:00:00',0),(1068,0,0,922,'2526','H','O',994,'',0,'2025-10-15','0000-00-00',140,0,151,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 19:14:13','','0000-00-00 00:00:00',0),(1069,0,0,916,'2526','H','O',995,'',0,'2025-10-15','0000-00-00',774,0,805,0,'D06','',0,4900.00,0.00,0.00,4900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','70118','','SCAN',4900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 19:14:50','','0000-00-00 00:00:00',0),(1070,0,0,910,'2526','H','O',996,'',0,'2025-10-15','0000-00-00',769,0,800,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 19:19:49','','0000-00-00 00:00:00',0),(1071,0,0,923,'2526','H','O',997,'',0,'2025-10-15','0000-00-00',779,0,810,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 19:21:58','','0000-00-00 00:00:00',0),(1072,0,0,925,'2526','H','O',998,'',0,'2025-10-15','0000-00-00',781,0,812,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 19:25:18','','0000-00-00 00:00:00',0),(1073,0,0,924,'2526','H','O',999,'',0,'2025-10-15','0000-00-00',780,0,811,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 19:25:48','','0000-00-00 00:00:00',0),(1074,0,0,926,'2526','H','O',1000,'',0,'2025-10-15','0000-00-00',782,0,813,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 19:38:03','','0000-00-00 00:00:00',0),(1075,0,0,927,'2526','H','O',1001,'',0,'2025-10-15','0000-00-00',783,0,814,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 1006','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 19:39:05','janvi','2025-10-15 20:04:02',0),(1076,0,0,928,'2526','H','O',1002,'',0,'2025-10-15','0000-00-00',784,0,815,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','36423','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 19:43:56','','0000-00-00 00:00:00',0),(1077,0,0,929,'2526','H','O',1003,'',0,'2025-10-15','0000-00-00',785,0,816,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','21971','','scan     ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 19:45:09','','0000-00-00 00:00:00',0),(1078,0,0,929,'2526','H','O',1004,'',0,'2025-10-15','0000-00-00',785,0,816,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 19:53:50','','0000-00-00 00:00:00',0),(1079,0,0,930,'2526','H','O',1005,'',0,'2025-10-15','0000-00-00',786,0,817,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','IDBI BANK','','88058','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 20:00:40','','0000-00-00 00:00:00',0),(1080,0,0,927,'2526','H','O',1006,'',0,'2025-10-15','0000-00-00',783,0,814,0,'D02','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-15','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 1001','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 20:04:02','janvi','2025-10-15 20:04:17',0),(1081,0,0,931,'2526','H','O',1007,'',0,'2025-10-15','0000-00-00',787,0,818,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 20:04:40','','0000-00-00 00:00:00',0),(1082,0,0,932,'2526','H','O',1008,'',0,'2025-10-15','0000-00-00',788,0,819,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 20:05:44','','0000-00-00 00:00:00',0),(1083,0,0,933,'2526','H','O',1009,'',0,'2025-10-15','0000-00-00',789,0,820,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 20:08:41','','0000-00-00 00:00:00',0),(1084,0,0,926,'2526','H','O',1010,'',0,'2025-10-15','0000-00-00',782,0,813,0,'D02','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-15 20:11:10','','0000-00-00 00:00:00',0),(1085,0,0,934,'2526','H','O',1011,'',0,'2025-10-15','0000-00-00',166,0,179,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-15 20:17:50','','0000-00-00 00:00:00',0),(1086,0,0,935,'2526','H','O',1012,'',0,'2025-10-15','0000-00-00',276,0,292,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-15 20:53:26','','0000-00-00 00:00:00',0),(1087,0,0,574,'2526','H','D',39,'',0,'2025-10-16','0000-00-00',481,44,507,0,'D27','',0,20000.00,0.00,0.00,20000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',13000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-16 08:56:02','vishal','2025-10-16 08:57:10',0),(1088,0,0,937,'2526','H','O',1013,'',0,'2025-10-16','0000-00-00',761,0,792,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-16 09:01:19','','0000-00-00 00:00:00',0),(1089,0,0,938,'2526','H','O',1014,'',0,'2025-10-16','0000-00-00',790,0,821,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','nagrik bank','','89236','','scan ',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-16 09:04:38','','0000-00-00 00:00:00',0),(1090,0,0,941,'2526','H','O',1015,'',0,'2025-10-16','0000-00-00',276,0,292,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-16 09:24:02','','0000-00-00 00:00:00',0),(1091,0,0,942,'2526','H','O',1016,'',0,'2025-10-16','0000-00-00',792,0,823,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 09:29:13','','0000-00-00 00:00:00',0),(1092,0,0,943,'2526','H','O',1017,'',0,'2025-10-16','0000-00-00',793,0,824,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 09:34:39','','0000-00-00 00:00:00',0),(1093,0,0,944,'2526','H','O',1018,'',0,'2025-10-16','0000-00-00',794,0,825,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 09:37:20','','0000-00-00 00:00:00',0),(1094,0,0,945,'2526','H','O',1019,'',0,'2025-10-16','0000-00-00',795,0,826,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 09:49:27','','0000-00-00 00:00:00',0),(1095,0,0,574,'2526','H','I',37,'',0,'2025-10-16','0000-00-00',481,44,507,0,'D27','',0,20000.00,0.00,0.00,20000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(1096,0,0,946,'2526','H','O',1020,'',0,'2025-10-16','0000-00-00',796,0,827,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 10:11:56','','0000-00-00 00:00:00',0),(1097,0,0,947,'2526','H','O',1021,'',0,'2025-10-16','0000-00-00',797,0,828,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 10:17:11','','0000-00-00 00:00:00',0),(1098,0,0,948,'2526','H','O',1022,'',0,'2025-10-16','0000-00-00',798,0,829,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 10:20:10','','0000-00-00 00:00:00',0),(1099,0,0,949,'2526','H','O',1023,'',0,'2025-10-16','0000-00-00',799,0,830,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 10:22:24','','0000-00-00 00:00:00',0),(1100,0,0,950,'2526','H','O',1024,'',0,'2025-10-16','0000-00-00',800,0,831,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 10:24:40','','0000-00-00 00:00:00',0),(1101,0,0,951,'2526','H','O',1025,'',0,'2025-10-16','0000-00-00',801,0,832,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','icici bank','','82869','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 10:30:44','','0000-00-00 00:00:00',0),(1102,0,0,952,'2526','H','O',1026,'',0,'2025-10-16','0000-00-00',391,0,413,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 10:32:46','','0000-00-00 00:00:00',0),(1103,0,0,953,'2526','H','O',1027,'',0,'2025-10-16','0000-00-00',802,0,833,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 10:34:08','','0000-00-00 00:00:00',0),(1104,0,0,954,'2526','H','O',1028,'',0,'2025-10-16','0000-00-00',803,0,834,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 10:35:01','','0000-00-00 00:00:00',0),(1105,0,0,955,'2526','H','O',1029,'',0,'2025-10-16','0000-00-00',804,0,835,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','34295','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 10:40:00','','0000-00-00 00:00:00',0),(1106,0,0,956,'2526','H','O',1030,'',0,'2025-10-16','0000-00-00',805,0,836,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 10:43:40','','0000-00-00 00:00:00',0),(1107,0,0,957,'2526','H','O',1031,'',0,'2025-10-16','0000-00-00',806,0,837,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 10:44:51','','0000-00-00 00:00:00',0),(1108,0,0,958,'2526','H','O',1032,'',0,'2025-10-16','0000-00-00',807,0,838,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','46834','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 10:47:56','','0000-00-00 00:00:00',0),(1109,0,0,959,'2526','H','O',1033,'',0,'2025-10-16','0000-00-00',808,0,839,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','95632','','scan     ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 10:49:33','','0000-00-00 00:00:00',0),(1110,0,0,960,'2526','H','O',1034,'',0,'2025-10-16','0000-00-00',809,0,840,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 10:51:37','','0000-00-00 00:00:00',0),(1111,0,0,961,'2526','H','O',1035,'',0,'2025-10-16','0000-00-00',810,0,841,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 10:52:13','','0000-00-00 00:00:00',0),(1112,0,0,962,'2526','H','O',1036,'',0,'2025-10-16','0000-00-00',811,0,842,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 10:56:54','','0000-00-00 00:00:00',0),(1113,0,0,963,'2526','H','O',1037,'',0,'2025-10-16','0000-00-00',812,0,843,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK','','37971','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 10:59:01','','0000-00-00 00:00:00',0),(1114,0,0,940,'2526','H','O',1038,'',0,'2025-10-16','0000-00-00',791,0,822,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 11:05:01','','0000-00-00 00:00:00',0),(1115,0,0,965,'2526','H','O',1039,'',0,'2025-10-16','0000-00-00',813,0,844,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','34821','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 11:07:42','','0000-00-00 00:00:00',0),(1116,0,0,966,'2526','H','O',1040,'',0,'2025-10-16','0000-00-00',814,0,845,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 11:09:00','','0000-00-00 00:00:00',0),(1117,0,0,967,'2526','H','O',1041,'',0,'2025-10-16','0000-00-00',815,0,846,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 11:13:23','','0000-00-00 00:00:00',0),(1118,0,0,968,'2526','H','O',1042,'',0,'2025-10-16','0000-00-00',816,0,847,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 11:14:47','','0000-00-00 00:00:00',0),(1119,0,0,969,'2526','H','O',1043,'',0,'2025-10-16','0000-00-00',430,0,453,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 11:17:37','','0000-00-00 00:00:00',0),(1120,0,0,645,'2526','H','D',40,'',0,'2025-10-16','0000-00-00',0,46,582,0,'D27','',0,22700.00,0.00,0.00,22700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-17000,0,'0000-00-00','','N','N','F','N',5700.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-16 11:21:52','vishal','2025-10-16 11:48:41',0),(1121,0,0,970,'2526','H','O',1044,'',0,'2025-10-16','0000-00-00',817,0,848,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 11:25:44','','0000-00-00 00:00:00',0),(1122,0,0,971,'2526','H','O',1045,'',0,'2025-10-16','0000-00-00',818,0,849,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 11:26:17','','0000-00-00 00:00:00',0),(1123,0,0,950,'2526','H','O',1046,'',0,'2025-10-16','0000-00-00',800,0,831,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 11:27:20','','0000-00-00 00:00:00',0),(1124,0,0,973,'2526','H','O',1047,'',0,'2025-10-16','0000-00-00',820,0,851,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 11:28:26','','0000-00-00 00:00:00',0),(1125,0,0,972,'2526','H','O',1048,'',0,'2025-10-16','0000-00-00',819,0,850,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 11:28:32','','0000-00-00 00:00:00',0),(1126,0,0,966,'2526','H','O',1049,'',0,'2025-10-16','0000-00-00',814,0,845,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 11:29:07','','0000-00-00 00:00:00',0),(1127,0,0,975,'2526','H','O',1050,'',0,'2025-10-16','0000-00-00',821,0,852,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 11:30:48','','0000-00-00 00:00:00',0),(1128,0,0,976,'2526','H','O',1051,'',0,'2025-10-16','0000-00-00',822,0,853,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 11:32:04','','0000-00-00 00:00:00',0),(1129,0,0,977,'2526','H','O',1052,'',0,'2025-10-16','0000-00-00',823,0,854,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','CANARA BANK','','43734','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 11:35:26','','0000-00-00 00:00:00',0),(1130,0,0,978,'2526','H','O',1053,'',0,'2025-10-16','0000-00-00',824,0,855,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','39555','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 11:37:22','','0000-00-00 00:00:00',0),(1131,0,0,974,'2526','H','O',1054,'',0,'2025-10-16','0000-00-00',114,0,125,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','64607','','scan     ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 11:39:07','','0000-00-00 00:00:00',0),(1132,0,0,980,'2526','H','O',1055,'',0,'2025-10-16','0000-00-00',826,0,857,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 11:42:47','','0000-00-00 00:00:00',0),(1133,0,0,979,'2526','H','O',1056,'',0,'2025-10-16','0000-00-00',825,0,856,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 11:43:36','','0000-00-00 00:00:00',0),(1134,0,0,981,'2526','H','O',1057,'',0,'2025-10-16','0000-00-00',827,0,858,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 11:43:57','','0000-00-00 00:00:00',0),(1135,0,0,690,'2526','H','I',38,'',0,'2025-10-16','0000-00-00',0,55,66,0,'D02','',0,26650.00,0.00,0.00,26650.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-26650,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-16 11:44:20','','0000-00-00 00:00:00',0),(1136,0,0,982,'2526','H','O',1058,'',0,'2025-10-16','0000-00-00',828,0,859,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 11:45:41','','0000-00-00 00:00:00',0),(1137,0,0,983,'2526','H','O',1059,'',0,'2025-10-16','0000-00-00',829,0,860,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','bank','','37973','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 11:47:32','','0000-00-00 00:00:00',0),(1138,0,0,984,'2526','H','O',1060,'',0,'2025-10-16','0000-00-00',830,0,861,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','57311','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 11:48:24','','0000-00-00 00:00:00',0),(1139,0,0,645,'2526','H','I',39,'',0,'2025-10-16','0000-00-00',0,46,582,0,'D27','',0,22700.00,0.00,0.00,22700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-22700,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(1140,0,0,985,'2526','H','O',1061,'',0,'2025-10-16','0000-00-00',831,0,862,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 11:54:48','','0000-00-00 00:00:00',0),(1141,0,0,987,'2526','H','O',1062,'',0,'2025-10-16','0000-00-00',833,0,864,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 12:00:51','','0000-00-00 00:00:00',0),(1142,0,0,470,'2526','H','D',41,'',0,'2025-10-16','0000-00-00',131,34,142,0,'D27','',0,38900.00,0.00,0.00,38900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-36000,0,'0000-00-00','','N','N','F','N',2900.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-16 12:02:58','vishal','2025-10-16 12:13:02',0),(1143,0,0,944,'2526','H','O',1063,'',0,'2025-10-16','0000-00-00',794,0,825,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 12:03:22','','0000-00-00 00:00:00',0),(1144,0,0,988,'2526','H','O',1064,'',0,'2025-10-16','0000-00-00',834,0,865,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 12:13:46','','0000-00-00 00:00:00',0),(1145,0,0,986,'2526','H','O',1065,'',0,'2025-10-16','0000-00-00',832,0,863,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 12:14:08','','0000-00-00 00:00:00',0),(1146,0,0,989,'2526','H','O',1066,'',0,'2025-10-16','0000-00-00',835,0,866,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 12:14:59','','0000-00-00 00:00:00',0),(1147,0,0,946,'2526','H','O',1067,'',0,'2025-10-16','0000-00-00',796,0,827,0,'D06','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','86293','','SCAN',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 12:16:28','','0000-00-00 00:00:00',0),(1148,0,0,990,'2526','H','O',1068,'',0,'2025-10-16','0000-00-00',836,0,867,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-16 12:17:25','','0000-00-00 00:00:00',0),(1149,0,0,470,'2526','H','I',40,'',0,'2025-10-16','0000-00-00',131,34,142,0,'D27','',0,38900.00,0.00,0.00,38900.00,900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-38000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(1150,0,0,991,'2526','H','O',1069,'',0,'2025-10-16','0000-00-00',837,0,868,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 12:20:02','','0000-00-00 00:00:00',0),(1151,0,0,992,'2526','H','O',1070,'',0,'2025-10-16','0000-00-00',838,0,869,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 12:24:16','','0000-00-00 00:00:00',0),(1152,0,0,994,'2526','H','O',1071,'',0,'2025-10-16','0000-00-00',840,0,871,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 12:28:27','','0000-00-00 00:00:00',0),(1153,0,0,803,'2526','H','D',42,'',0,'2025-10-16','0000-00-00',0,59,714,0,'D27','',0,18000.00,0.00,0.00,18000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',3000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-16 12:33:40','vishal','2025-10-16 12:36:09',0),(1154,0,0,996,'2526','H','O',1072,'',0,'2025-10-16','0000-00-00',842,0,873,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 12:33:48','','0000-00-00 00:00:00',0),(1155,0,0,995,'2526','H','O',1073,'',0,'2025-10-16','0000-00-00',841,0,872,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-16 12:34:02','','0000-00-00 00:00:00',0),(1156,0,0,998,'2526','H','O',1074,'',0,'2025-10-16','0000-00-00',844,0,875,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 12:51:34','','0000-00-00 00:00:00',0),(1157,0,0,999,'2526','H','O',1075,'',0,'2025-10-16','0000-00-00',845,0,876,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','97356','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 12:54:23','','0000-00-00 00:00:00',0),(1158,0,0,981,'2526','H','O',1076,'',0,'2025-10-16','0000-00-00',827,0,858,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','65733','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 12:55:37','','0000-00-00 00:00:00',0),(1159,0,0,803,'2526','H','I',41,'',0,'2025-10-16','0000-00-00',0,59,714,0,'D27','',0,18000.00,0.00,0.00,18000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-18000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(1160,0,0,993,'2526','H','O',1077,'',0,'2025-10-16','0000-00-00',839,0,870,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS','','58676','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-16 13:12:13','','0000-00-00 00:00:00',0),(1161,0,0,1000,'2526','H','O',1078,'',0,'2025-10-16','0000-00-00',846,0,877,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','63777','','scan  ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 13:14:22','','0000-00-00 00:00:00',0),(1162,0,0,1001,'2526','H','O',1079,'',0,'2025-10-16','0000-00-00',166,0,179,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 1081','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 13:25:21','drashti','2025-10-16 13:26:20',0),(1163,0,0,986,'2526','H','O',1080,'',0,'2025-10-16','0000-00-00',832,0,863,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 13:25:57','','0000-00-00 00:00:00',0),(1164,0,0,1001,'2526','H','O',1081,'',0,'2025-10-16','0000-00-00',166,0,179,0,'D27','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-16','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 1079','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 13:26:20','drashti','2025-10-16 13:26:42',0),(1165,0,0,1001,'2526','H','O',1082,'',0,'2025-10-16','0000-00-00',166,0,179,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 13:27:41','','0000-00-00 00:00:00',0),(1166,0,0,1002,'2526','H','O',1083,'',0,'2025-10-16','0000-00-00',847,0,878,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 13:28:21','','0000-00-00 00:00:00',0),(1167,0,0,953,'2526','H','O',1084,'',0,'2025-10-16','0000-00-00',802,0,833,0,'D06','',0,7000.00,0.00,0.00,7000.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 13:32:56','','0000-00-00 00:00:00',0),(1168,0,0,965,'2526','H','O',1085,'',0,'2025-10-16','0000-00-00',813,0,844,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','41283','','SCAN',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 14:02:30','','0000-00-00 00:00:00',0),(1169,0,0,1003,'2526','H','O',1086,'',0,'2025-10-16','0000-00-00',834,0,865,0,'D02','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','nagrik bank','','65187','','scan ',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 14:13:04','','0000-00-00 00:00:00',0),(1170,0,0,1005,'2526','H','O',1087,'',0,'2025-10-16','0000-00-00',848,0,880,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 14:40:47','','0000-00-00 00:00:00',0),(1171,0,0,992,'2526','H','O',1088,'',0,'2025-10-16','0000-00-00',838,0,869,0,'D06','',0,2500.00,0.00,0.00,2500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 14:45:19','','0000-00-00 00:00:00',0),(1172,0,0,1006,'2526','H','O',1089,'',0,'2025-10-16','0000-00-00',849,0,881,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 15:02:45','','0000-00-00 00:00:00',0),(1173,0,0,997,'2526','H','O',1090,'',0,'2025-10-16','0000-00-00',843,0,874,0,'D06','',0,700.00,0.00,0.00,700.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 15:04:10','','0000-00-00 00:00:00',0),(1174,0,0,953,'2526','H','O',1091,'',0,'2025-10-16','0000-00-00',802,0,833,0,'D06','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-16 15:31:04','','0000-00-00 00:00:00',0),(1175,0,0,1007,'2526','H','O',1092,'',0,'2025-10-16','0000-00-00',850,0,882,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 16:37:19','','0000-00-00 00:00:00',0),(1176,0,0,1008,'2526','H','O',1093,'',0,'2025-10-16','0000-00-00',851,0,883,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','axis','','90472','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 16:48:56','','0000-00-00 00:00:00',0),(1177,0,0,1009,'2526','H','O',1094,'',0,'2025-10-16','0000-00-00',852,0,884,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 16:54:44','','0000-00-00 00:00:00',0),(1178,0,0,1010,'2526','H','O',1095,'',0,'2025-10-16','0000-00-00',853,0,885,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 17:00:26','','0000-00-00 00:00:00',0),(1179,0,0,1012,'2526','H','O',1096,'',0,'2025-10-16','0000-00-00',855,0,887,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 17:11:19','','0000-00-00 00:00:00',0),(1180,0,0,1014,'2526','H','O',1097,'',0,'2025-10-16','0000-00-00',857,0,889,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 17:21:10','','0000-00-00 00:00:00',0),(1181,0,0,1015,'2526','H','O',1098,'',0,'2025-10-16','0000-00-00',858,0,890,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 17:24:08','','0000-00-00 00:00:00',0),(1182,0,0,1016,'2526','H','O',1099,'',0,'2025-10-16','0000-00-00',859,0,891,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','HO 1127','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-16 17:35:12','manshi','2025-10-16 18:28:36',0),(1183,0,0,1019,'2526','H','O',1100,'',0,'2025-10-16','0000-00-00',862,0,894,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 17:36:38','','0000-00-00 00:00:00',0),(1184,0,0,1018,'2526','H','O',1101,'',0,'2025-10-16','0000-00-00',861,0,893,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 17:36:44','','0000-00-00 00:00:00',0),(1185,0,0,1020,'2526','H','O',1102,'',0,'2025-10-16','0000-00-00',777,0,808,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 17:38:16','','0000-00-00 00:00:00',0),(1186,0,0,1017,'2526','H','O',1103,'',0,'2025-10-16','0000-00-00',860,0,892,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 17:40:59','','0000-00-00 00:00:00',0),(1187,0,0,1023,'2526','H','O',1104,'',0,'2025-10-16','0000-00-00',865,0,897,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 17:44:05','','0000-00-00 00:00:00',0),(1188,0,0,1026,'2526','H','O',1105,'',0,'2025-10-16','0000-00-00',867,0,899,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 17:46:54','','0000-00-00 00:00:00',0),(1189,0,0,1024,'2526','H','O',1106,'',0,'2025-10-16','0000-00-00',303,0,319,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','89091','','scan     ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 17:47:41','','0000-00-00 00:00:00',0),(1190,0,0,1027,'2526','H','O',1107,'',0,'2025-10-16','0000-00-00',868,0,900,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 17:50:14','','0000-00-00 00:00:00',0),(1191,0,0,1029,'2526','H','O',1108,'',0,'2025-10-16','0000-00-00',870,0,902,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 17:52:23','','0000-00-00 00:00:00',0),(1192,0,0,1028,'2526','H','O',1109,'',0,'2025-10-16','0000-00-00',869,0,901,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','86928','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 17:52:38','','0000-00-00 00:00:00',0),(1193,0,0,1030,'2526','H','O',1110,'',0,'2025-10-16','0000-00-00',871,0,903,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 17:53:29','','0000-00-00 00:00:00',0),(1194,0,0,1031,'2526','H','O',1111,'',0,'2025-10-16','0000-00-00',872,0,904,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 17:54:59','','0000-00-00 00:00:00',0),(1195,0,0,1032,'2526','H','O',1112,'',0,'2025-10-16','0000-00-00',873,0,905,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 17:57:57','','0000-00-00 00:00:00',0),(1196,0,0,1025,'2526','H','O',1113,'',0,'2025-10-16','0000-00-00',866,0,898,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-16 17:58:19','','0000-00-00 00:00:00',0),(1197,0,0,1033,'2526','H','O',1114,'',0,'2025-10-16','0000-00-00',874,0,906,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 18:00:24','','0000-00-00 00:00:00',0),(1198,0,0,1034,'2526','H','O',1115,'',0,'2025-10-16','0000-00-00',875,0,907,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 18:00:27','','0000-00-00 00:00:00',0),(1199,0,0,1035,'2526','H','O',1116,'',0,'2025-10-16','0000-00-00',876,0,908,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 18:03:06','','0000-00-00 00:00:00',0),(1200,0,0,1036,'2526','H','O',1117,'',0,'2025-10-16','0000-00-00',877,0,909,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 18:06:01','','0000-00-00 00:00:00',0),(1201,0,0,1038,'2526','H','O',1118,'',0,'2025-10-16','0000-00-00',879,0,911,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 18:08:01','','0000-00-00 00:00:00',0),(1202,0,0,1016,'2526','H','O',1119,'',0,'2025-10-16','0000-00-00',859,0,891,0,'D03','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-16 18:08:21','','0000-00-00 00:00:00',0),(1203,0,0,1039,'2526','H','O',1120,'',0,'2025-10-16','0000-00-00',880,0,912,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 18:08:41','','0000-00-00 00:00:00',0),(1204,0,0,1014,'2526','H','O',1121,'',0,'2025-10-16','0000-00-00',857,0,889,0,'D06','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 18:11:39','','0000-00-00 00:00:00',0),(1205,0,0,1040,'2526','H','O',1122,'',0,'2025-10-16','0000-00-00',360,0,376,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 18:13:05','','0000-00-00 00:00:00',0),(1206,0,0,1041,'2526','H','O',1123,'',0,'2025-10-16','0000-00-00',57,0,68,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 18:15:54','','0000-00-00 00:00:00',0),(1207,0,0,1015,'2526','H','O',1124,'',0,'2025-10-16','0000-00-00',858,0,890,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 18:18:15','','0000-00-00 00:00:00',0),(1208,0,0,1043,'2526','H','O',1125,'',0,'2025-10-16','0000-00-00',881,0,913,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-16 18:27:00','','0000-00-00 00:00:00',0),(1209,0,0,1044,'2526','H','O',1126,'',0,'2025-10-16','0000-00-00',882,0,914,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 18:27:42','','0000-00-00 00:00:00',0),(1210,0,0,1016,'2526','H','O',1127,'',0,'2025-10-16','0000-00-00',859,0,891,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-16','Y','N','N','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','','HO 1099','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-16 18:28:36','manshi','2025-10-16 18:29:05',0),(1211,0,0,1045,'2526','H','O',1128,'',0,'2025-10-16','0000-00-00',883,0,915,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 18:29:58','','0000-00-00 00:00:00',0),(1212,0,0,841,'2526','H','D',43,'',0,'2025-10-16','0000-00-00',451,61,477,0,'D02','',0,30000.00,0.00,0.00,30000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10000,0,'0000-00-00','','N','N','F','N',20000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-16 18:31:39','riya','2025-10-16 19:55:06',0),(1213,0,0,1046,'2526','H','O',1129,'',0,'2025-10-16','0000-00-00',884,0,916,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 18:33:10','','0000-00-00 00:00:00',0),(1214,0,0,809,'2526','H','D',44,'',0,'2025-10-16','0000-00-00',0,60,720,0,'D02','',0,28000.00,0.00,0.00,28000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25000,0,'0000-00-00','','N','N','F','N',3000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-16 18:34:17','riya','2025-10-16 18:51:56',0),(1215,0,0,1034,'2526','H','O',1130,'',0,'2025-10-16','0000-00-00',875,0,907,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 18:35:43','','0000-00-00 00:00:00',0),(1216,0,0,1029,'2526','H','O',1131,'',0,'2025-10-16','0000-00-00',870,0,902,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 18:39:05','','0000-00-00 00:00:00',0),(1218,0,0,1047,'2526','H','O',1132,'',0,'2025-10-16','0000-00-00',885,0,917,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK','','15877','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 18:41:46','','0000-00-00 00:00:00',0),(1219,0,0,1048,'2526','H','O',1133,'',0,'2025-10-16','0000-00-00',221,0,234,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 18:44:13','','0000-00-00 00:00:00',0),(1220,0,0,1051,'2526','H','O',1134,'',0,'2025-10-16','0000-00-00',41,0,45,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','17649','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 18:51:39','','0000-00-00 00:00:00',0),(1221,0,0,1052,'2526','H','O',1135,'',0,'2025-10-16','0000-00-00',888,0,920,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 18:51:42','','0000-00-00 00:00:00',0),(1222,0,0,1053,'2526','H','O',1136,'',0,'2025-10-16','0000-00-00',889,0,921,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 18:52:55','','0000-00-00 00:00:00',0),(1223,0,0,1055,'2526','H','O',1137,'',0,'2025-10-16','0000-00-00',890,0,922,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 18:54:13','','0000-00-00 00:00:00',0),(1224,0,0,1022,'2526','H','O',1138,'',0,'2025-10-16','0000-00-00',864,0,896,0,'D06','',0,400.00,0.00,0.00,400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS','','75452','','SCAN',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 18:55:28','','0000-00-00 00:00:00',0),(1225,0,0,809,'2526','H','I',42,'',0,'2025-10-16','0000-00-00',0,60,720,0,'D02','',0,28000.00,0.00,0.00,28000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-28000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-16 18:55:58','','0000-00-00 00:00:00',0),(1226,0,0,1056,'2526','H','O',1139,'',0,'2025-10-16','0000-00-00',891,0,923,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','fedral bank','','29629','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 18:56:25','','0000-00-00 00:00:00',0),(1227,0,0,1055,'2526','H','O',1140,'',0,'2025-10-16','0000-00-00',890,0,922,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 18:57:32','','0000-00-00 00:00:00',0),(1228,0,0,1057,'2526','H','O',1141,'',0,'2025-10-16','0000-00-00',892,0,924,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 18:58:52','','0000-00-00 00:00:00',0),(1229,0,0,1059,'2526','H','O',1142,'',0,'2025-10-16','0000-00-00',893,0,925,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 19:02:21','','0000-00-00 00:00:00',0),(1230,0,0,1060,'2526','H','O',1143,'',0,'2025-10-16','0000-00-00',894,0,926,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 19:03:12','','0000-00-00 00:00:00',0),(1231,0,0,1061,'2526','H','O',1144,'',0,'2025-10-16','0000-00-00',895,0,927,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 19:03:32','','0000-00-00 00:00:00',0),(1232,0,0,224,'2526','H','D',46,'',0,'2025-10-16','0000-00-00',116,17,127,0,'D02','',0,103250.00,0.00,0.00,103250.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-80000,0,'0000-00-00','','N','N','F','N',23250.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-16 19:07:10','riya','2025-10-16 19:53:20',0),(1233,0,0,1063,'2526','H','O',1145,'',0,'2025-10-16','0000-00-00',896,0,928,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 19:07:37','','0000-00-00 00:00:00',0),(1234,0,0,1064,'2526','H','O',1146,'',0,'2025-10-16','0000-00-00',727,0,758,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','93248','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 19:17:25','','0000-00-00 00:00:00',0),(1235,0,0,1054,'2526','H','O',1147,'',0,'2025-10-16','0000-00-00',575,0,603,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 19:25:46','','0000-00-00 00:00:00',0),(1236,0,0,1065,'2526','H','O',1148,'',0,'2025-10-16','0000-00-00',897,0,929,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI','','00000','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 19:32:31','','0000-00-00 00:00:00',0),(1237,0,0,1066,'2526','H','O',1149,'',0,'2025-10-16','0000-00-00',898,0,930,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI','','00000','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-16 19:36:37','','0000-00-00 00:00:00',0),(1238,0,0,1067,'2526','H','O',1150,'',0,'2025-10-16','0000-00-00',54,0,64,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 19:46:42','','0000-00-00 00:00:00',0),(1239,0,0,1058,'2526','H','O',1151,'',0,'2025-10-16','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 19:47:17','','0000-00-00 00:00:00',0),(1240,0,0,1068,'2526','H','O',1152,'',0,'2025-10-16','0000-00-00',899,0,931,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','icici bank','','02710','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-16 19:50:26','','0000-00-00 00:00:00',0),(1241,0,0,1069,'2526','H','O',1153,'',0,'2025-10-16','0000-00-00',900,0,926,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-16 19:54:52','','0000-00-00 00:00:00',0),(1242,0,0,841,'2526','H','I',43,'',0,'2025-10-16','0000-00-00',451,61,477,0,'D02','',0,30000.00,0.00,0.00,30000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-30000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-16 19:57:30','','0000-00-00 00:00:00',0),(1243,0,0,224,'2526','H','I',44,'',0,'2025-10-16','0000-00-00',116,17,127,0,'D02','',0,103250.00,0.00,0.00,103250.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-103250,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(1244,0,0,1070,'2526','H','O',1154,'',0,'2025-10-16','0000-00-00',276,0,292,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-16 20:02:34','','0000-00-00 00:00:00',0),(1245,0,0,1071,'2526','H','O',1155,'',0,'2025-10-16','0000-00-00',901,0,932,0,'D03','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-16 20:10:43','','0000-00-00 00:00:00',0),(1246,0,0,1073,'2526','H','O',1156,'',0,'2025-10-17','0000-00-00',901,0,932,0,'D03','',0,4800.00,0.00,0.00,4800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-17 09:03:57','','0000-00-00 00:00:00',0),(1247,0,0,1074,'2526','H','O',1157,'',0,'2025-10-17','0000-00-00',166,0,179,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-17 09:09:19','','0000-00-00 00:00:00',0),(1248,0,0,1075,'2526','H','O',1158,'',0,'2025-10-17','0000-00-00',902,0,934,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-17 09:11:26','','0000-00-00 00:00:00',0),(1249,0,0,1076,'2526','H','O',1159,'',0,'2025-10-17','0000-00-00',903,0,935,0,'D02','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-17 09:13:08','','0000-00-00 00:00:00',0),(1250,0,0,1077,'2526','H','O',1160,'',0,'2025-10-17','0000-00-00',904,0,936,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','IDBI','','17424','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-17 09:17:01','','0000-00-00 00:00:00',0),(1251,0,0,1078,'2526','H','O',1161,'',0,'2025-10-17','0000-00-00',905,0,937,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','99002','','scan     ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 09:19:51','','0000-00-00 00:00:00',0),(1252,0,0,1079,'2526','H','O',1162,'',0,'2025-10-17','0000-00-00',906,0,63,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 1196','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 09:23:29','janvi','2025-10-17 11:28:32',0),(1253,0,0,1080,'2526','H','O',1163,'',0,'2025-10-17','0000-00-00',907,0,938,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 09:31:01','','0000-00-00 00:00:00',0),(1254,0,0,871,'2526','H','D',47,'',0,'2025-10-17','0000-00-00',721,62,752,0,'D27','',0,12600.00,0.00,0.00,12600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6000,0,'0000-00-00','','N','N','F','N',6600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-17 09:31:05','vishal','2025-10-17 09:31:51',0),(1255,0,0,1081,'2526','H','O',1164,'',0,'2025-10-17','0000-00-00',908,0,939,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 09:45:29','','0000-00-00 00:00:00',0),(1256,0,0,1082,'2526','H','O',1165,'',0,'2025-10-17','0000-00-00',909,0,940,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 09:48:36','','0000-00-00 00:00:00',0),(1257,0,0,1083,'2526','H','O',1166,'',0,'2025-10-17','0000-00-00',910,0,941,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','03853','','scan  ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 09:50:33','','0000-00-00 00:00:00',0),(1258,0,0,1084,'2526','H','O',1167,'',0,'2025-10-17','0000-00-00',207,0,220,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 09:55:16','','0000-00-00 00:00:00',0),(1259,0,0,1085,'2526','H','O',1168,'',0,'2025-10-17','0000-00-00',911,0,942,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 10:02:34','','0000-00-00 00:00:00',0),(1260,0,0,1086,'2526','H','O',1169,'',0,'2025-10-17','0000-00-00',912,0,943,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 10:05:55','','0000-00-00 00:00:00',0),(1261,0,0,1087,'2526','H','O',1170,'',0,'2025-10-17','0000-00-00',354,0,370,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','HO 1195','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-17 10:13:35','manshi','2025-10-17 11:25:35',0),(1262,0,0,1088,'2526','H','O',1171,'',0,'2025-10-17','0000-00-00',913,0,944,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 10:13:44','','0000-00-00 00:00:00',0),(1263,0,0,1089,'2526','H','O',1172,'',0,'2025-10-17','0000-00-00',914,0,945,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 10:23:15','','0000-00-00 00:00:00',0),(1264,0,0,1090,'2526','H','O',1173,'',0,'2025-10-17','0000-00-00',915,0,946,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 10:23:22','','0000-00-00 00:00:00',0),(1265,0,0,1091,'2526','H','O',1174,'',0,'2025-10-17','0000-00-00',480,0,506,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 10:25:14','','0000-00-00 00:00:00',0),(1266,0,0,1093,'2526','H','O',1175,'',0,'2025-10-17','0000-00-00',917,0,948,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 10:32:35','','0000-00-00 00:00:00',0),(1267,0,0,1094,'2526','H','O',1176,'',0,'2025-10-17','0000-00-00',918,0,949,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 10:48:20','','0000-00-00 00:00:00',0),(1268,0,0,1095,'2526','H','O',1177,'',0,'2025-10-17','0000-00-00',919,0,950,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 10:51:35','','0000-00-00 00:00:00',0),(1269,0,0,1097,'2526','H','O',1178,'',0,'2025-10-17','0000-00-00',921,0,952,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 10:51:58','','0000-00-00 00:00:00',0),(1270,0,0,1096,'2526','H','O',1179,'',0,'2025-10-17','0000-00-00',920,0,951,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 10:52:07','','0000-00-00 00:00:00',0),(1271,0,0,1098,'2526','H','O',1180,'',0,'2025-10-17','0000-00-00',922,0,953,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 10:54:06','','0000-00-00 00:00:00',0),(1272,0,0,1092,'2526','H','O',1181,'',0,'2025-10-17','0000-00-00',916,0,947,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 10:55:15','','0000-00-00 00:00:00',0),(1273,0,0,1100,'2526','H','O',1182,'',0,'2025-10-17','0000-00-00',924,0,955,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 10:57:30','','0000-00-00 00:00:00',0),(1274,0,0,1101,'2526','H','O',1183,'',0,'2025-10-17','0000-00-00',925,0,956,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 10:59:16','','0000-00-00 00:00:00',0),(1275,0,0,1102,'2526','H','O',1184,'',0,'2025-10-17','0000-00-00',926,0,957,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 11:00:20','','0000-00-00 00:00:00',0),(1276,0,0,1088,'2526','H','O',1185,'',0,'2025-10-17','0000-00-00',913,0,944,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','CRD','HDFC','79101','79101','','CARD',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 11:11:21','','0000-00-00 00:00:00',0),(1277,0,0,1103,'2526','H','O',1186,'',0,'2025-10-17','0000-00-00',927,0,958,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 11:12:50','','0000-00-00 00:00:00',0),(1278,0,0,1104,'2526','H','O',1187,'',0,'2025-10-17','0000-00-00',928,0,959,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 11:14:38','','0000-00-00 00:00:00',0),(1279,0,0,1105,'2526','H','O',1188,'',0,'2025-10-17','0000-00-00',929,0,960,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 11:18:34','','0000-00-00 00:00:00',0),(1280,0,0,1099,'2526','H','O',1189,'',0,'2025-10-17','0000-00-00',923,0,954,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-17 11:19:33','','0000-00-00 00:00:00',0),(1281,0,0,1106,'2526','H','O',1190,'',0,'2025-10-17','0000-00-00',463,0,489,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 11:19:45','','0000-00-00 00:00:00',0),(1282,0,0,1107,'2526','H','O',1191,'',0,'2025-10-17','0000-00-00',930,0,961,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 11:21:31','','0000-00-00 00:00:00',0),(1283,0,0,1108,'2526','H','O',1192,'',0,'2025-10-17','0000-00-00',931,0,962,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 11:21:41','','0000-00-00 00:00:00',0),(1284,0,0,1109,'2526','H','O',1193,'',0,'2025-10-17','0000-00-00',43,0,47,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 11:23:26','','0000-00-00 00:00:00',0),(1285,0,0,1096,'2526','H','O',1194,'',0,'2025-10-17','0000-00-00',920,0,951,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 11:24:20','','0000-00-00 00:00:00',0),(1286,0,0,1087,'2526','H','O',1195,'',0,'2025-10-17','0000-00-00',354,0,370,0,'D03','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-10-17','Y','N','N','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','','HO 1170','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-17 11:25:35','manshi','2025-10-17 11:25:56',0),(1287,0,0,1079,'2526','H','O',1196,'',0,'2025-10-17','0000-00-00',906,0,63,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-10-17','Y','N','N','','N',0.00,'','Y','FOC','','HO 1162','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 11:28:32','janvi','2025-10-17 11:29:24',0),(1288,0,0,1111,'2526','H','O',1197,'',0,'2025-10-17','0000-00-00',933,0,964,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 11:34:06','','0000-00-00 00:00:00',0),(1289,0,0,1112,'2526','H','O',1198,'',0,'2025-10-17','0000-00-00',934,0,965,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 11:34:39','','0000-00-00 00:00:00',0),(1290,0,0,1113,'2526','H','O',1199,'',0,'2025-10-17','0000-00-00',935,0,966,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 11:38:05','','0000-00-00 00:00:00',0),(1291,0,0,1115,'2526','H','O',1200,'',0,'2025-10-17','0000-00-00',937,0,968,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 11:40:49','','0000-00-00 00:00:00',0),(1292,0,0,1116,'2526','H','O',1201,'',0,'2025-10-17','0000-00-00',938,0,969,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 11:42:14','','0000-00-00 00:00:00',0),(1293,0,0,1117,'2526','H','O',1202,'',0,'2025-10-17','0000-00-00',939,0,970,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 11:42:36','','0000-00-00 00:00:00',0),(1294,0,0,1114,'2526','H','O',1203,'',0,'2025-10-17','0000-00-00',936,0,967,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','56638','','scan     ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 11:45:27','','0000-00-00 00:00:00',0),(1295,0,0,871,'2526','H','I',45,'',0,'2025-10-17','0000-00-00',721,62,752,0,'D27','',0,12600.00,0.00,0.00,12600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-12600,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-17 11:46:32','','0000-00-00 00:00:00',0),(1296,0,0,1085,'2526','H','O',1204,'',0,'2025-10-17','0000-00-00',911,0,942,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 11:49:58','','0000-00-00 00:00:00',0),(1297,0,0,1118,'2526','H','O',1205,'',0,'2025-10-17','0000-00-00',940,0,971,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','44021','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 11:53:06','','0000-00-00 00:00:00',0),(1298,0,0,1119,'2526','H','O',1206,'',0,'2025-10-17','0000-00-00',941,0,972,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','72074','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-17 11:53:40','','0000-00-00 00:00:00',0),(1299,0,0,1120,'2526','H','O',1207,'',0,'2025-10-17','0000-00-00',942,0,973,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 11:59:23','','0000-00-00 00:00:00',0),(1300,0,0,1121,'2526','H','O',1208,'',0,'2025-10-17','0000-00-00',943,0,974,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI','','36012','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 12:02:09','','0000-00-00 00:00:00',0),(1301,0,0,1119,'2526','H','O',1209,'',0,'2025-10-17','0000-00-00',941,0,972,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','54751','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-17 12:03:59','','0000-00-00 00:00:00',0),(1302,0,0,1122,'2526','H','O',1210,'',0,'2025-10-17','0000-00-00',944,0,975,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 12:04:05','','0000-00-00 00:00:00',0),(1303,0,0,1123,'2526','H','O',1211,'',0,'2025-10-17','0000-00-00',945,0,976,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 12:04:34','','0000-00-00 00:00:00',0),(1304,0,0,1124,'2526','H','O',1212,'',0,'2025-10-17','0000-00-00',579,0,610,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ISBANK','','38306','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-17 12:08:37','','0000-00-00 00:00:00',0),(1305,0,0,1125,'2526','H','O',1213,'',0,'2025-10-17','0000-00-00',580,0,611,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ISBANK','','38306','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-17 12:09:34','','0000-00-00 00:00:00',0),(1306,0,0,1126,'2526','H','O',1214,'',0,'2025-10-17','0000-00-00',946,0,977,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 12:09:53','','0000-00-00 00:00:00',0),(1307,0,0,1127,'2526','H','O',1215,'',0,'2025-10-17','0000-00-00',481,0,507,0,'D27','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 12:11:51','','0000-00-00 00:00:00',0),(1308,0,0,1128,'2526','H','O',1216,'',0,'2025-10-17','0000-00-00',887,0,919,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 12:12:07','','0000-00-00 00:00:00',0),(1309,0,0,1129,'2526','H','O',1217,'',0,'2025-10-17','0000-00-00',947,0,978,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 12:12:53','','0000-00-00 00:00:00',0),(1310,0,0,1130,'2526','H','O',1218,'',0,'2025-10-17','0000-00-00',948,0,979,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','50091','','scan  ',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 1223','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 12:15:47','janvi','2025-10-17 12:35:40',0),(1311,0,0,1126,'2526','H','O',1219,'',0,'2025-10-17','0000-00-00',946,0,977,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 12:18:28','','0000-00-00 00:00:00',0),(1312,0,0,1131,'2526','H','O',1220,'',0,'2025-10-17','0000-00-00',949,0,980,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 12:20:44','','0000-00-00 00:00:00',0),(1313,0,0,1133,'2526','H','O',1221,'',0,'2025-10-17','0000-00-00',951,0,982,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 12:30:53','','0000-00-00 00:00:00',0),(1314,0,0,1132,'2526','H','O',1222,'',0,'2025-10-17','0000-00-00',950,0,981,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 12:31:57','','0000-00-00 00:00:00',0),(1315,0,0,1130,'2526','H','O',1223,'',0,'2025-10-17','0000-00-00',948,0,979,0,'D27','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','sbi','','50091','','SCAN                          ',-700.00,0,0,'2025-10-17','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 1218','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 12:35:40','janvi','2025-10-17 12:36:24',0),(1316,0,0,1134,'2526','H','O',1224,'',0,'2025-10-17','0000-00-00',259,0,276,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 12:37:53','','0000-00-00 00:00:00',0),(1317,0,0,1135,'2526','H','O',1225,'',0,'2025-10-17','0000-00-00',370,0,387,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 12:38:52','','0000-00-00 00:00:00',0),(1318,0,0,1130,'2526','H','O',1226,'',0,'2025-10-17','0000-00-00',948,0,979,0,'D27','',0,1000.00,0.00,0.00,1000.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','73112','','scan  ',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 12:40:21','','0000-00-00 00:00:00',0),(1319,0,0,1136,'2526','H','O',1227,'',0,'2025-10-17','0000-00-00',952,0,983,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 12:41:39','','0000-00-00 00:00:00',0),(1320,0,0,1137,'2526','H','O',1228,'',0,'2025-10-17','0000-00-00',953,0,984,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','hdfc','','73241','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 12:43:53','','0000-00-00 00:00:00',0),(1321,0,0,1116,'2526','H','O',1229,'',0,'2025-10-17','0000-00-00',938,0,969,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 12:43:56','','0000-00-00 00:00:00',0),(1322,0,0,1138,'2526','H','O',1230,'',0,'2025-10-17','0000-00-00',954,0,985,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 12:44:44','','0000-00-00 00:00:00',0),(1323,0,0,1095,'2526','H','O',1231,'',0,'2025-10-17','0000-00-00',919,0,950,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 12:53:51','','0000-00-00 00:00:00',0),(1324,0,0,1139,'2526','H','O',1232,'',0,'2025-10-17','0000-00-00',277,0,293,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 13:05:57','','0000-00-00 00:00:00',0),(1325,0,0,1129,'2526','H','O',1233,'',0,'2025-10-17','0000-00-00',947,0,978,0,'D06','',0,6900.00,0.00,0.00,6900.00,900.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','CRD','ICICI','18688','18688','','CARD',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 13:08:11','','0000-00-00 00:00:00',0),(1326,0,0,1100,'2526','H','O',1234,'',0,'2025-10-17','0000-00-00',924,0,955,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 13:14:43','','0000-00-00 00:00:00',0),(1327,0,0,1142,'2526','H','O',1235,'',0,'2025-10-17','0000-00-00',955,0,986,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 13:22:14','','0000-00-00 00:00:00',0),(1328,0,0,1141,'2526','H','O',1236,'',0,'2025-10-17','0000-00-00',560,0,587,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 13:22:53','','0000-00-00 00:00:00',0),(1329,0,0,1090,'2526','H','O',1237,'',0,'2025-10-17','0000-00-00',915,0,946,0,'D02','',0,5000.00,0.00,0.00,5000.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 13:59:51','','0000-00-00 00:00:00',0),(1330,0,0,1145,'2526','H','O',1238,'',0,'2025-10-17','0000-00-00',713,0,744,0,'D27','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-17 14:26:26','','0000-00-00 00:00:00',0),(1331,0,0,1136,'2526','H','O',1239,'',0,'2025-10-17','0000-00-00',952,0,983,0,'D06','',0,7000.00,0.00,0.00,7000.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS','','79752','','SCAN',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 14:32:56','','0000-00-00 00:00:00',0),(1332,0,0,1146,'2526','H','O',1240,'',0,'2025-10-17','0000-00-00',956,0,988,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-17 14:56:23','','0000-00-00 00:00:00',0),(1333,0,0,1148,'2526','H','O',1241,'',0,'2025-10-17','0000-00-00',957,0,990,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-17 15:47:41','','0000-00-00 00:00:00',0),(1335,0,0,28,'2526','H','I',46,'',0,'2025-10-17','0000-00-00',0,2,28,0,'D27','',0,60800.00,0.00,0.00,60800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',0.00,'','Y','PAYMENT CHADAVANU BAKI','HI 47','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(1336,0,0,28,'2526','H','I',47,'',0,'2025-10-17','0000-00-00',0,2,28,0,'D27','',0,-60800.00,0.00,0.00,-60800.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',0.00,'','Y','PAYMENT CHADAVANU BAKI','','HI 46','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-17 16:47:14','','0000-00-00 00:00:00',0),(1337,0,0,1152,'2526','H','O',1242,'',0,'2025-10-17','0000-00-00',961,0,994,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 16:48:18','','0000-00-00 00:00:00',0),(1338,0,0,1153,'2526','H','O',1243,'',0,'2025-10-17','0000-00-00',962,0,995,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 16:51:53','','0000-00-00 00:00:00',0),(1339,0,0,28,'2526','H','D',49,'',0,'2025-10-17','0000-00-00',0,2,28,0,'D27','',0,71050.00,0.00,0.00,71050.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-68000,0,'0000-00-00','','N','N','D','N',3050.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-17 16:53:15','riya','2025-10-17 17:13:50',0),(1340,0,0,1155,'2526','H','O',1244,'',0,'2025-10-17','0000-00-00',964,0,997,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 16:59:54','','0000-00-00 00:00:00',0),(1341,0,0,1156,'2526','H','O',1245,'',0,'2025-10-17','0000-00-00',965,0,998,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 17:00:42','','0000-00-00 00:00:00',0),(1342,0,0,1158,'2526','H','O',1246,'',0,'2025-10-17','0000-00-00',967,0,1000,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','bob','','298612','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 17:02:47','','0000-00-00 00:00:00',0),(1343,0,0,1160,'2526','H','O',1247,'',0,'2025-10-17','0000-00-00',968,0,1001,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 17:03:37','','0000-00-00 00:00:00',0),(1344,0,0,1161,'2526','H','O',1248,'',0,'2025-10-17','0000-00-00',438,0,461,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 1283','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 17:07:29','janvi','2025-10-17 18:17:10',0),(1345,0,0,1162,'2526','H','O',1249,'',0,'2025-10-17','0000-00-00',969,0,1002,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-17 17:17:20','','0000-00-00 00:00:00',0),(1346,0,0,1152,'2526','H','O',1250,'',0,'2025-10-17','0000-00-00',961,0,994,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 17:17:57','','0000-00-00 00:00:00',0),(1347,0,0,1163,'2526','H','O',1251,'',0,'2025-10-17','0000-00-00',945,0,976,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 17:20:49','','0000-00-00 00:00:00',0),(1348,0,0,1164,'2526','H','O',1252,'',0,'2025-10-17','0000-00-00',970,0,1003,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 17:25:20','','0000-00-00 00:00:00',0),(1349,0,0,1165,'2526','H','O',1253,'',0,'2025-10-17','0000-00-00',971,0,1004,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 17:26:01','','0000-00-00 00:00:00',0),(1350,0,0,1166,'2526','H','O',1254,'',0,'2025-10-17','0000-00-00',972,0,1005,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 17:31:14','','0000-00-00 00:00:00',0),(1351,0,0,1167,'2526','H','O',1255,'',0,'2025-10-17','0000-00-00',973,0,1006,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 17:32:06','','0000-00-00 00:00:00',0),(1352,0,0,1168,'2526','H','O',1256,'',0,'2025-10-17','0000-00-00',305,0,321,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 17:38:06','','0000-00-00 00:00:00',0),(1353,0,0,1169,'2526','H','O',1257,'',0,'2025-10-17','0000-00-00',974,0,1007,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 17:39:04','','0000-00-00 00:00:00',0),(1354,0,0,1170,'2526','H','O',1258,'',0,'2025-10-17','0000-00-00',975,0,1008,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 17:39:47','','0000-00-00 00:00:00',0),(1355,0,0,1160,'2526','H','O',1259,'',0,'2025-10-17','0000-00-00',968,0,1001,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 17:41:52','','0000-00-00 00:00:00',0),(1356,0,0,1171,'2526','H','O',1260,'',0,'2025-10-17','0000-00-00',976,0,1009,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI','','62749','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 17:42:40','','0000-00-00 00:00:00',0),(1357,0,0,1172,'2526','H','O',1261,'',0,'2025-10-17','0000-00-00',977,0,1010,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 17:43:48','','0000-00-00 00:00:00',0),(1358,0,0,1173,'2526','H','O',1262,'',0,'2025-10-17','0000-00-00',978,0,1011,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 17:44:12','','0000-00-00 00:00:00',0),(1359,0,0,1174,'2526','H','O',1263,'',0,'2025-10-17','0000-00-00',979,0,1012,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 17:46:37','','0000-00-00 00:00:00',0),(1360,0,0,1175,'2526','H','O',1264,'',0,'2025-10-17','0000-00-00',980,0,1013,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 17:48:59','','0000-00-00 00:00:00',0),(1361,0,0,1177,'2526','H','O',1265,'',0,'2025-10-17','0000-00-00',981,0,1014,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 17:49:33','','0000-00-00 00:00:00',0),(1362,0,0,1176,'2526','H','O',1266,'',0,'2025-10-17','0000-00-00',862,0,894,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 17:49:48','','0000-00-00 00:00:00',0),(1363,0,0,1178,'2526','H','O',1267,'',0,'2025-10-17','0000-00-00',982,0,1015,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','70943','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 17:51:56','','0000-00-00 00:00:00',0),(1364,0,0,1179,'2526','H','O',1268,'',0,'2025-10-17','0000-00-00',983,0,403,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 17:52:11','','0000-00-00 00:00:00',0),(1365,0,0,1180,'2526','H','O',1269,'',0,'2025-10-17','0000-00-00',984,0,1016,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 17:55:28','','0000-00-00 00:00:00',0),(1366,0,0,1181,'2526','H','O',1270,'',0,'2025-10-17','0000-00-00',985,0,1017,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 17:57:56','','0000-00-00 00:00:00',0),(1367,0,0,1182,'2526','H','O',1271,'',0,'2025-10-17','0000-00-00',986,0,1018,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 18:02:35','','0000-00-00 00:00:00',0),(1368,0,0,1184,'2526','H','O',1272,'',0,'2025-10-17','0000-00-00',988,0,1020,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 18:02:43','','0000-00-00 00:00:00',0),(1369,0,0,1186,'2526','H','O',1273,'',0,'2025-10-17','0000-00-00',990,0,1022,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 18:05:33','','0000-00-00 00:00:00',0),(1370,0,0,1185,'2526','H','O',1274,'',0,'2025-10-17','0000-00-00',989,0,1021,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 18:06:07','','0000-00-00 00:00:00',0),(1371,0,0,1187,'2526','H','O',1275,'',0,'2025-10-17','0000-00-00',201,0,214,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 18:06:35','','0000-00-00 00:00:00',0),(1372,0,0,1189,'2526','H','O',1276,'',0,'2025-10-17','0000-00-00',431,0,454,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 18:10:35','','0000-00-00 00:00:00',0),(1373,0,0,1173,'2526','H','O',1277,'',0,'2025-10-17','0000-00-00',978,0,1011,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 18:11:45','','0000-00-00 00:00:00',0),(1374,0,0,1190,'2526','H','O',1278,'',0,'2025-10-17','0000-00-00',991,0,1023,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 1290','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 18:11:55','drashti','2025-10-17 18:38:55',0),(1375,0,0,1183,'2526','H','O',1279,'',0,'2025-10-17','0000-00-00',987,0,1019,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','AXIS BANK','','09524','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-17 18:12:17','','0000-00-00 00:00:00',0),(1376,0,0,1183,'2526','H','O',1280,'',0,'2025-10-17','0000-00-00',987,0,1019,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','AXIS BANK','','16047','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-17 18:13:49','','0000-00-00 00:00:00',0),(1377,0,0,1191,'2526','H','O',1281,'',0,'2025-10-17','0000-00-00',992,0,1024,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 18:14:39','','0000-00-00 00:00:00',0),(1378,0,0,1188,'2526','H','O',1282,'',0,'2025-10-17','0000-00-00',441,0,466,0,'D14','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-17 18:15:01','','0000-00-00 00:00:00',0),(1379,0,0,1161,'2526','H','O',1283,'',0,'2025-10-17','0000-00-00',438,0,461,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-10-17','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 1248','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 18:17:10','janvi','2025-10-17 18:17:49',0),(1380,0,0,1193,'2526','H','O',1284,'',0,'2025-10-17','0000-00-00',993,0,1025,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-17 18:22:18','','0000-00-00 00:00:00',0),(1381,0,0,1194,'2526','H','O',1285,'',0,'2025-10-17','0000-00-00',994,0,1026,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','10905','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 18:26:38','','0000-00-00 00:00:00',0),(1382,0,0,1195,'2526','H','O',1286,'',0,'2025-10-17','0000-00-00',995,0,1027,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 18:29:36','','0000-00-00 00:00:00',0),(1383,0,0,1196,'2526','H','O',1287,'',0,'2025-10-17','0000-00-00',140,0,151,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 18:35:09','','0000-00-00 00:00:00',0),(1384,0,0,1198,'2526','H','O',1288,'',0,'2025-10-17','0000-00-00',997,0,1029,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 18:36:56','','0000-00-00 00:00:00',0),(1385,0,0,1197,'2526','H','O',1289,'',0,'2025-10-17','0000-00-00',996,0,1028,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 18:37:30','','0000-00-00 00:00:00',0),(1386,0,0,1190,'2526','H','O',1290,'',0,'2025-10-17','0000-00-00',991,0,1023,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-10-17','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 1278','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 18:38:55','drashti','2025-10-17 18:39:20',0),(1387,0,0,1178,'2526','H','O',1291,'',0,'2025-10-17','0000-00-00',982,0,1015,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','22218','','SCAN',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 18:40:17','','0000-00-00 00:00:00',0),(1388,0,0,1191,'2526','H','O',1292,'',0,'2025-10-17','0000-00-00',992,0,1024,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 18:49:03','','0000-00-00 00:00:00',0),(1389,0,0,1200,'2526','H','O',1293,'',0,'2025-10-17','0000-00-00',998,0,1030,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','85229','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 18:50:32','','0000-00-00 00:00:00',0),(1390,0,0,1201,'2526','H','O',1294,'',0,'2025-10-17','0000-00-00',999,0,1031,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','30618','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 18:51:04','','0000-00-00 00:00:00',0),(1391,0,0,1175,'2526','H','O',1295,'',0,'2025-10-17','0000-00-00',980,0,1013,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 18:55:08','','0000-00-00 00:00:00',0),(1392,0,0,1203,'2526','H','O',1296,'',0,'2025-10-17','0000-00-00',270,0,286,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','10117','','scan     ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 18:59:03','','0000-00-00 00:00:00',0),(1393,0,0,1204,'2526','H','O',1297,'',0,'2025-10-17','0000-00-00',1000,0,1032,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 19:02:44','','0000-00-00 00:00:00',0),(1394,0,0,1205,'2526','H','O',1298,'',0,'2025-10-17','0000-00-00',1001,0,1033,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 19:11:32','','0000-00-00 00:00:00',0),(1395,0,0,1206,'2526','H','O',1299,'',0,'2025-10-17','0000-00-00',1002,0,1034,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 19:12:28','','0000-00-00 00:00:00',0),(1396,0,0,1202,'2526','H','O',1300,'',0,'2025-10-17','0000-00-00',291,0,307,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 19:28:24','','0000-00-00 00:00:00',0),(1397,0,0,1208,'2526','H','O',1301,'',0,'2025-10-17','0000-00-00',1004,0,1036,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','77636','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-17 19:34:20','','0000-00-00 00:00:00',0),(1398,0,0,1210,'2526','H','O',1302,'',0,'2025-10-17','0000-00-00',901,0,932,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-17 19:38:44','','0000-00-00 00:00:00',0),(1399,0,0,1207,'2526','H','O',1303,'',0,'2025-10-17','0000-00-00',1003,0,1035,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-17 19:39:02','','0000-00-00 00:00:00',0),(1400,0,0,1194,'2526','H','O',1304,'',0,'2025-10-17','0000-00-00',994,0,1026,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','21159','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 19:40:12','','0000-00-00 00:00:00',0),(1401,0,0,1211,'2526','H','O',1305,'',0,'2025-10-17','0000-00-00',1006,0,1038,0,'D03','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-17 20:05:47','','0000-00-00 00:00:00',0),(1402,0,0,1212,'2526','H','O',1306,'',0,'2025-10-17','0000-00-00',1007,0,1039,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-17 20:08:17','','0000-00-00 00:00:00',0),(1403,0,0,1214,'2526','H','O',1307,'',0,'2025-10-18','0000-00-00',1008,0,1041,0,'D14','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','76471','','scan',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-18 09:04:37','','0000-00-00 00:00:00',0),(1404,0,0,1215,'2526','H','O',1308,'',0,'2025-10-18','0000-00-00',1009,0,1042,0,'D27','',0,1250.00,0.00,0.00,1250.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','idfc','','50345','','scan',1250.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-18 09:06:58','','0000-00-00 00:00:00',0),(1405,0,0,1216,'2526','H','O',1309,'',0,'2025-10-18','0000-00-00',1010,0,1043,0,'D27','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','48437','','scan',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-18 09:09:48','','0000-00-00 00:00:00',0),(1406,0,0,1217,'2526','H','O',1310,'',0,'2025-10-18','0000-00-00',1011,0,1044,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 09:41:49','','0000-00-00 00:00:00',0),(1407,0,0,1218,'2526','H','O',1311,'',0,'2025-10-18','0000-00-00',1012,0,1045,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 09:43:11','','0000-00-00 00:00:00',0),(1408,0,0,1219,'2526','H','O',1312,'',0,'2025-10-18','0000-00-00',1013,0,1046,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 09:48:38','','0000-00-00 00:00:00',0),(1409,0,0,1221,'2526','H','O',1313,'',0,'2025-10-18','0000-00-00',1014,0,1048,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 09:50:42','','0000-00-00 00:00:00',0),(1410,0,0,1222,'2526','H','O',1314,'',0,'2025-10-18','0000-00-00',1015,0,1049,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-18 09:54:52','','0000-00-00 00:00:00',0),(1411,0,0,1223,'2526','H','O',1315,'',0,'2025-10-18','0000-00-00',1016,0,1050,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','68402','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 10:02:50','','0000-00-00 00:00:00',0),(1412,0,0,1224,'2526','H','O',1316,'',0,'2025-10-18','0000-00-00',644,0,674,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-18 10:09:44','','0000-00-00 00:00:00',0),(1413,0,0,1225,'2526','H','O',1317,'',0,'2025-10-18','0000-00-00',1017,0,1051,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 10:12:22','','0000-00-00 00:00:00',0),(1414,0,0,1226,'2526','H','O',1318,'',0,'2025-10-18','0000-00-00',191,0,204,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-18 10:15:34','','0000-00-00 00:00:00',0),(1415,0,0,1227,'2526','H','O',1319,'',0,'2025-10-18','0000-00-00',997,0,1029,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','38689','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 10:18:39','','0000-00-00 00:00:00',0),(1416,0,0,1228,'2526','H','O',1320,'',0,'2025-10-18','0000-00-00',1018,0,1052,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 10:25:07','','0000-00-00 00:00:00',0),(1417,0,0,1226,'2526','H','O',1321,'',0,'2025-10-18','0000-00-00',191,0,204,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-18 10:34:07','','0000-00-00 00:00:00',0),(1418,0,0,1228,'2526','H','O',1322,'',0,'2025-10-18','0000-00-00',1018,0,1052,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 10:37:41','','0000-00-00 00:00:00',0),(1419,0,0,1229,'2526','H','O',1323,'',0,'2025-10-18','0000-00-00',1019,0,1053,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-18 10:41:01','','0000-00-00 00:00:00',0),(1420,0,0,1230,'2526','H','O',1324,'',0,'2025-10-18','0000-00-00',1020,0,1054,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-18 10:45:33','','0000-00-00 00:00:00',0),(1421,0,0,1231,'2526','H','O',1325,'',0,'2025-10-18','0000-00-00',1021,0,1055,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 10:54:03','','0000-00-00 00:00:00',0),(1422,0,0,1232,'2526','H','O',1326,'',0,'2025-10-18','0000-00-00',1022,0,1056,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 10:55:38','','0000-00-00 00:00:00',0),(1423,0,0,1233,'2526','H','O',1327,'',0,'2025-10-18','0000-00-00',1023,0,1057,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','18730','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-18 10:57:38','','0000-00-00 00:00:00',0),(1424,0,0,1234,'2526','H','O',1328,'',0,'2025-10-18','0000-00-00',1024,0,1058,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 11:06:59','','0000-00-00 00:00:00',0),(1425,0,0,1235,'2526','H','O',1329,'',0,'2025-10-18','0000-00-00',514,0,539,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-18 11:08:57','','0000-00-00 00:00:00',0),(1426,0,0,1236,'2526','H','O',1330,'',0,'2025-10-18','0000-00-00',76,0,87,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 11:11:00','','0000-00-00 00:00:00',0),(1427,0,0,1230,'2526','H','O',1331,'',0,'2025-10-18','0000-00-00',1020,0,1054,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-18 11:11:37','','0000-00-00 00:00:00',0),(1428,0,0,1237,'2526','H','O',1332,'',0,'2025-10-18','0000-00-00',1025,0,1059,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','78660','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-18 11:12:06','','0000-00-00 00:00:00',0),(1429,0,0,1223,'2526','H','O',1333,'',0,'2025-10-18','0000-00-00',1016,0,1050,0,'D06','',0,2500.00,0.00,0.00,2500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','72142','','scan',2500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 11:13:51','','0000-00-00 00:00:00',0),(1430,0,0,1238,'2526','H','O',1334,'',0,'2025-10-18','0000-00-00',1026,0,1060,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-18 11:17:38','','0000-00-00 00:00:00',0),(1431,0,0,1239,'2526','H','O',1335,'',0,'2025-10-18','0000-00-00',1027,0,1061,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 11:19:12','','0000-00-00 00:00:00',0),(1432,0,0,1240,'2526','H','O',1336,'',0,'2025-10-18','0000-00-00',1028,0,1062,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 11:22:33','','0000-00-00 00:00:00',0),(1433,0,0,1241,'2526','H','O',1337,'',0,'2025-10-18','0000-00-00',1029,0,1063,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','49162','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-18 11:24:21','','0000-00-00 00:00:00',0),(1434,0,0,1242,'2526','H','O',1338,'',0,'2025-10-18','0000-00-00',116,0,127,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-18 11:25:36','','0000-00-00 00:00:00',0),(1435,0,0,1243,'2526','H','O',1339,'',0,'2025-10-18','0000-00-00',1030,0,1064,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 11:26:24','','0000-00-00 00:00:00',0),(1436,0,0,1244,'2526','H','O',1340,'',0,'2025-10-18','0000-00-00',1031,0,1065,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 11:29:38','','0000-00-00 00:00:00',0),(1437,0,0,1245,'2526','H','O',1341,'',0,'2025-10-18','0000-00-00',481,0,507,0,'D27','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','idbi','','15664','','scan  ',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-18 11:30:44','','0000-00-00 00:00:00',0),(1438,0,0,1246,'2526','H','O',1342,'',0,'2025-10-18','0000-00-00',70,0,81,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-18 11:31:12','','0000-00-00 00:00:00',0),(1439,0,0,1247,'2526','H','O',1343,'',0,'2025-10-18','0000-00-00',1032,0,1066,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 11:32:42','','0000-00-00 00:00:00',0),(1440,0,0,1248,'2526','H','O',1344,'',0,'2025-10-18','0000-00-00',1033,0,1067,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-18 11:33:32','','0000-00-00 00:00:00',0),(1441,0,0,1250,'2526','H','O',1345,'',0,'2025-10-18','0000-00-00',1035,0,1069,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-18 11:35:28','','0000-00-00 00:00:00',0),(1442,0,0,1249,'2526','H','O',1346,'',0,'2025-10-18','0000-00-00',1034,0,1068,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','06324','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-18 11:35:55','','0000-00-00 00:00:00',0),(1443,0,0,1251,'2526','H','O',1347,'',0,'2025-10-18','0000-00-00',1036,0,1070,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 11:36:29','','0000-00-00 00:00:00',0),(1444,0,0,1252,'2526','H','O',1348,'',0,'2025-10-18','0000-00-00',1037,0,1071,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 11:39:09','','0000-00-00 00:00:00',0),(1445,0,0,1253,'2526','H','O',1349,'',0,'2025-10-18','0000-00-00',1038,0,1072,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 11:40:34','','0000-00-00 00:00:00',0),(1446,0,0,1254,'2526','H','O',1350,'',0,'2025-10-18','0000-00-00',1039,0,1073,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-18 11:41:16','','0000-00-00 00:00:00',0),(1447,0,0,1255,'2526','H','O',1351,'',0,'2025-10-18','0000-00-00',1040,0,1074,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-18 11:42:20','','0000-00-00 00:00:00',0),(1448,0,0,1256,'2526','H','O',1352,'',0,'2025-10-18','0000-00-00',1041,0,1075,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 11:43:11','','0000-00-00 00:00:00',0),(1449,0,0,1257,'2526','H','O',1353,'',0,'2025-10-18','0000-00-00',1042,0,1076,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 11:45:16','','0000-00-00 00:00:00',0),(1450,0,0,1258,'2526','H','O',1354,'',0,'2025-10-18','0000-00-00',1043,0,1077,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-18 11:46:25','','0000-00-00 00:00:00',0),(1451,0,0,1259,'2526','H','O',1355,'',0,'2025-10-18','0000-00-00',1044,0,1078,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','IDFC BANK','','78951','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-18 11:48:05','','0000-00-00 00:00:00',0),(1452,0,0,1260,'2526','H','O',1356,'',0,'2025-10-18','0000-00-00',1045,0,1079,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-18 11:50:56','','0000-00-00 00:00:00',0),(1453,0,0,1261,'2526','H','O',1357,'',0,'2025-10-18','0000-00-00',1046,0,1080,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-18 11:53:15','','0000-00-00 00:00:00',0),(1454,0,0,1234,'2526','H','O',1358,'',0,'2025-10-18','0000-00-00',1024,0,1058,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','18537','','scan',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 11:54:36','','0000-00-00 00:00:00',0),(1455,0,0,1239,'2526','H','O',1359,'',0,'2025-10-18','0000-00-00',1027,0,1061,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','97347','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 11:58:55','','0000-00-00 00:00:00',0),(1456,0,0,1262,'2526','H','O',1360,'',0,'2025-10-18','0000-00-00',1047,0,1081,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','76938','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-18 11:59:22','','0000-00-00 00:00:00',0),(1457,0,0,1263,'2526','H','O',1361,'',0,'2025-10-18','0000-00-00',1048,0,1082,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 12:03:03','','0000-00-00 00:00:00',0),(1458,0,0,1225,'2526','H','O',1362,'',0,'2025-10-18','0000-00-00',1017,0,1051,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 12:06:01','','0000-00-00 00:00:00',0),(1459,0,0,1264,'2526','H','O',1363,'',0,'2025-10-18','0000-00-00',1049,0,1083,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-18 12:06:11','','0000-00-00 00:00:00',0),(1460,0,0,1265,'2526','H','O',1364,'',0,'2025-10-18','0000-00-00',1050,0,1084,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','80518','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 12:09:43','','0000-00-00 00:00:00',0),(1461,0,0,1262,'2526','H','O',1365,'',0,'2025-10-18','0000-00-00',1047,0,1081,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','25289','','scan',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-18 12:11:35','','0000-00-00 00:00:00',0),(1462,0,0,1267,'2526','H','O',1366,'',0,'2025-10-18','0000-00-00',21,0,22,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-18 12:15:35','','0000-00-00 00:00:00',0),(1463,0,0,1268,'2526','H','O',1367,'',0,'2025-10-18','0000-00-00',1051,0,1085,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 12:16:51','','0000-00-00 00:00:00',0),(1464,0,0,882,'2526','H','D',50,'',0,'2025-10-18','0000-00-00',0,63,780,0,'D27','',0,40200.00,0.00,0.00,40200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25000,0,'0000-00-00','','N','N','F','N',15200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-18 12:22:00','riya','2025-10-18 13:09:17',0),(1465,0,0,1072,'2526','H','D',51,'',0,'2025-10-18','0000-00-00',0,67,933,0,'D27','',0,22200.00,0.00,0.00,22200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10000,0,'0000-00-00','','N','N','F','N',12200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-18 12:25:05','riya','2025-10-18 12:49:18',0),(1466,0,0,1269,'2526','H','O',1368,'',0,'2025-10-18','0000-00-00',1052,0,606,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-18 12:25:59','','0000-00-00 00:00:00',0),(1467,0,0,1233,'2526','H','O',1369,'',0,'2025-10-18','0000-00-00',1023,0,1057,0,'D06','',0,6500.00,0.00,0.00,6500.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','12061','','scan',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 12:26:48','','0000-00-00 00:00:00',0),(1468,0,0,1270,'2526','H','O',1370,'',0,'2025-10-18','0000-00-00',1053,0,1086,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-18 12:28:49','','0000-00-00 00:00:00',0),(1469,0,0,1271,'2526','H','O',1371,'',0,'2025-10-18','0000-00-00',1054,0,1087,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 12:41:26','','0000-00-00 00:00:00',0),(1471,0,0,1272,'2526','H','O',1372,'',0,'2025-10-18','0000-00-00',1055,0,1088,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 12:45:35','','0000-00-00 00:00:00',0),(1472,0,0,1273,'2526','H','O',1373,'',0,'2025-10-18','0000-00-00',552,0,578,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-18 12:59:01','','0000-00-00 00:00:00',0),(1473,0,0,1274,'2526','H','O',1374,'',0,'2025-10-18','0000-00-00',1056,0,1089,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-18 13:03:31','','0000-00-00 00:00:00',0),(1474,0,0,1072,'2526','H','I',48,'',0,'2025-10-18','0000-00-00',0,67,933,0,'D27','',0,22200.00,0.00,0.00,22200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-22200,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-18 13:04:35','','0000-00-00 00:00:00',0),(1475,0,0,1275,'2526','H','O',1375,'',0,'2025-10-18','0000-00-00',310,0,326,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 13:08:25','','0000-00-00 00:00:00',0),(1476,0,0,1262,'2526','H','O',1376,'',0,'2025-10-18','0000-00-00',1047,0,1081,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','36083','','scan',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-18 13:14:29','','0000-00-00 00:00:00',0),(1477,0,0,882,'2526','H','I',49,'',0,'2025-10-18','0000-00-00',0,63,780,0,'D27','',0,40200.00,0.00,0.00,40200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-40200,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(1478,0,0,1276,'2526','H','O',1377,'',0,'2025-10-18','0000-00-00',1057,0,1090,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-18 13:25:43','','0000-00-00 00:00:00',0),(1479,0,0,246,'2526','H','D',53,'',0,'2025-10-18','0000-00-00',0,18,239,0,'D02','',0,156850.00,0.00,0.00,156850.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-135000,0,'0000-00-00','','N','N','F','N',21850.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-18 13:27:36','riya','2025-10-18 13:50:29',0),(1480,0,0,284,'2526','H','D',54,'',0,'2025-10-18','0000-00-00',0,21,274,0,'D27','',0,210700.00,0.00,0.00,210700.00,7000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-170000,0,'0000-00-00','','N','N','F','N',33700.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-18 13:28:32','riya','2025-10-18 13:28:54',0),(1481,0,0,284,'2526','H','I',50,'',0,'2025-10-18','0000-00-00',0,21,274,0,'D27','',0,210700.00,0.00,0.00,210700.00,7000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-203700,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(1482,0,0,1277,'2526','H','O',1378,'',0,'2025-10-18','0000-00-00',1058,0,1091,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 13:52:17','','0000-00-00 00:00:00',0),(1483,0,0,246,'2526','H','I',51,'',0,'2025-10-18','0000-00-00',0,18,239,0,'D02','',0,156850.00,0.00,0.00,156850.00,1850.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-155000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(1484,0,0,1270,'2526','H','O',1379,'',0,'2025-10-18','0000-00-00',1053,0,1086,0,'D06','',0,4500.00,0.00,0.00,4500.00,600.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','03702','','scan',3900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 14:04:14','','0000-00-00 00:00:00',0),(1485,0,0,936,'2526','H','D',55,'',0,'2025-10-18','0000-00-00',769,64,800,0,'D27','',0,38200.00,0.00,0.00,38200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25000,0,'0000-00-00','','N','N','F','N',13200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-18 14:11:03','riya','2025-10-18 14:21:37',0),(1486,0,0,1278,'2526','H','O',1380,'',0,'2025-10-18','0000-00-00',1059,0,1092,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-18 14:13:15','','0000-00-00 00:00:00',0),(1487,0,0,936,'2526','H','I',52,'',0,'2025-10-18','0000-00-00',769,64,800,0,'D27','',0,38200.00,0.00,0.00,38200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-38200,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(1488,0,0,1140,'2526','H','D',56,'',0,'2025-10-18','0000-00-00',938,68,969,0,'D27','',0,8800.00,0.00,0.00,8800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-8800,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-18 16:10:35','','0000-00-00 00:00:00',0),(1489,0,0,1140,'2526','H','I',53,'',0,'2025-10-18','0000-00-00',938,68,969,0,'D27','',0,8800.00,0.00,0.00,8800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-8800,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-18 16:10:49','','0000-00-00 00:00:00',0),(1490,0,0,1280,'2526','H','O',1381,'',0,'2025-10-18','0000-00-00',1060,0,1094,0,'D03','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-18 16:22:40','','0000-00-00 00:00:00',0),(1491,0,0,1004,'2526','H','D',57,'',0,'2025-10-18','0000-00-00',0,66,879,0,'D27','',0,28650.00,0.00,0.00,28650.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',13650.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(1492,0,0,1280,'2526','H','O',1382,'',0,'2025-10-18','0000-00-00',1060,0,1094,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-18 17:18:19','','0000-00-00 00:00:00',0),(1493,0,0,1282,'2526','H','O',1383,'',0,'2025-10-18','0000-00-00',1061,0,1096,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-18 17:33:55','','0000-00-00 00:00:00',0),(1494,0,0,1004,'2526','H','I',54,'',0,'2025-10-18','0000-00-00',0,66,879,0,'D27','',0,28650.00,0.00,0.00,28650.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-28650,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(1495,0,0,1284,'2526','H','O',1384,'',0,'2025-10-18','0000-00-00',544,0,570,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-18 18:17:34','','0000-00-00 00:00:00',0),(1497,0,0,1286,'2526','H','O',1385,'',0,'2025-10-18','0000-00-00',1063,0,607,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-18 18:25:07','','0000-00-00 00:00:00',0),(1498,0,0,1285,'2526','H','O',1386,'',0,'2025-10-18','0000-00-00',1062,0,1097,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','ICICI BANK','','46858','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-18 18:25:13','','0000-00-00 00:00:00',0),(1499,0,0,1283,'2526','H','O',1387,'',0,'2025-10-18','0000-00-00',105,0,116,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','IDFC','','57205','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-18 18:31:37','','0000-00-00 00:00:00',0),(1500,0,0,1285,'2526','H','O',1388,'',0,'2025-10-18','0000-00-00',1062,0,1097,0,'D14','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','N','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-18 18:32:27','','0000-00-00 00:00:00',0),(1501,0,0,1266,'2526','H','I',55,'',0,'2025-10-18','0000-00-00',879,73,911,0,'D02','',0,7360.00,0.00,0.00,7360.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6640,0,'0000-00-00','','N','Y','F','N',0.00,'','Y','BY MISTAKE REFUND','HI 59','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-18 19:13:54','vishal','2025-10-19 13:23:20',0),(1502,0,0,1287,'2526','H','O',1389,'',0,'2025-10-18','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-18 19:14:57','','0000-00-00 00:00:00',0),(1503,0,0,1288,'2526','H','O',1390,'',0,'2025-10-18','0000-00-00',1064,0,1098,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-18 19:15:29','','0000-00-00 00:00:00',0),(1504,0,0,1289,'2526','H','O',1391,'',0,'2025-10-18','0000-00-00',1065,0,1099,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','HO 1392','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-18 19:17:50','manshi','2025-10-18 19:24:36',0),(1505,0,0,1289,'2526','H','O',1392,'',0,'2025-10-18','0000-00-00',1065,0,1099,0,'D03','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-10-18','Y','N','N','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','','HO 1391','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-18 19:24:36','manshi','2025-10-18 19:24:58',0),(1506,0,0,1290,'2526','H','O',1393,'',0,'2025-10-18','0000-00-00',1066,0,1100,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','IDFC','','47037','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-18 19:48:07','','0000-00-00 00:00:00',0),(1507,0,0,1291,'2526','H','D',59,'',0,'2025-10-18','0000-00-00',0,76,1101,0,'D27','',0,5400.00,0.00,0.00,5400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-5400,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-18 22:04:23','riya','2025-10-18 22:04:42',0),(1508,0,0,1291,'2526','H','I',56,'',0,'2025-10-18','0000-00-00',0,76,1101,0,'D27','',0,5400.00,0.00,0.00,5400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-5400,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-18 22:04:52','','0000-00-00 00:00:00',0),(1509,0,0,1281,'2526','H','D',60,'',0,'2025-10-19','0000-00-00',0,75,1095,0,'D03','',0,25000.00,0.00,0.00,25000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',25000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-19 10:46:40','vishal','2025-10-19 11:21:03',0),(1510,0,0,1281,'2526','H','I',57,'',0,'2025-10-19','0000-00-00',0,75,1095,0,'D03','',0,25000.00,0.00,0.00,25000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-19 11:26:20','','0000-00-00 00:00:00',0),(1511,0,0,1279,'2526','H','D',61,'',0,'2025-10-19','0000-00-00',0,74,1093,0,'D02','',0,56800.00,0.00,0.00,56800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',41800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-19 11:44:37','vishal','2025-10-19 11:46:41',0),(1512,0,0,1279,'2526','H','I',58,'',0,'2025-10-19','0000-00-00',0,74,1093,0,'D02','',0,56800.00,0.00,0.00,56800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-56800,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-19 12:16:31','','0000-00-00 00:00:00',0),(1513,0,0,1266,'2526','H','I',59,'',0,'2025-10-19','0000-00-00',879,73,911,0,'D02','',0,-7360.00,0.00,0.00,-7360.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',0.00,'','Y','BY MISTAKE REFUND','','HI 55','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-19 13:23:20','','0000-00-00 00:00:00',0),(1514,0,0,1266,'2526','H','D',62,'',0,'2025-10-19','0000-00-00',879,73,911,0,'D02','',0,7360.00,0.00,0.00,7360.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6640,0,'0000-00-00','','N','N','F','N',720.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-19 13:23:52','','0000-00-00 00:00:00',0),(1515,0,0,1266,'2526','H','I',60,'',0,'2025-10-19','0000-00-00',879,73,911,0,'D02','',0,7360.00,0.00,0.00,7360.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7360,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-19 13:49:47','','0000-00-00 00:00:00',0),(1516,0,0,1220,'2526','H','D',63,'',0,'2025-10-20','0000-00-00',0,72,1047,0,'D02','',0,94450.00,0.00,0.00,94450.00,50.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-30000,0,'0000-00-00','','N','N','F','N',64400.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-20 11:23:30','vishal','2025-10-20 12:19:49',0),(1517,0,0,939,'2526','H','D',64,'',0,'2025-10-20','0000-00-00',709,65,740,0,'D27','',0,40700.00,0.00,0.00,40700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',33700.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-20 11:40:09','vishal','2025-10-20 12:37:58',0),(1518,0,0,1220,'2526','H','I',61,'',0,'2025-10-20','0000-00-00',0,72,1047,0,'D02','',0,94450.00,0.00,0.00,94450.00,50.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-94400,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(1519,0,0,939,'2526','H','I',62,'',0,'2025-10-20','0000-00-00',709,65,740,0,'D27','',0,40700.00,0.00,0.00,40700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-40700,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(1520,0,0,1295,'2526','H','D',65,'',0,'2025-10-21','0000-00-00',0,80,1105,0,'D27','',0,7600.00,0.00,0.00,7600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-21 15:12:52','vishal','2025-10-21 15:13:41',0),(1521,0,0,1295,'2526','H','I',63,'',0,'2025-10-21','0000-00-00',0,80,1105,0,'D27','',0,7600.00,0.00,0.00,7600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7600,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-21 15:20:45','','0000-00-00 00:00:00',0),(1522,0,0,1144,'2526','H','D',66,'',0,'2025-10-22','0000-00-00',0,69,987,0,'D27','',0,33200.00,0.00,0.00,33200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','','N','N','F','N',13200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-22 10:56:47','vishal','2025-10-22 10:59:15',0),(1523,0,0,1144,'2526','H','I',64,'',0,'2025-10-22','0000-00-00',0,69,987,0,'D27','',0,33200.00,0.00,0.00,33200.00,3200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-30000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(1524,0,0,1213,'2526','H','D',67,'',0,'2025-10-22','0000-00-00',0,71,1040,0,'D27','',0,32800.00,0.00,0.00,32800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-24000,0,'0000-00-00','','N','N','F','N',8800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-22 13:21:52','vishal','2025-10-22 13:27:35',0),(1525,0,0,1213,'2526','H','I',65,'',0,'2025-10-22','0000-00-00',0,71,1040,0,'D27','',0,32800.00,0.00,0.00,32800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-32800,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(1526,0,0,1292,'2526','H','D',68,'',0,'2025-10-23','0000-00-00',0,77,1102,0,'D02','',0,76950.00,0.00,0.00,76950.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-50000,0,'0000-00-00','','N','N','F','N',26950.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(1527,0,0,1292,'2526','H','I',66,'',0,'2025-10-23','0000-00-00',0,77,1102,0,'D02','',0,76950.00,0.00,0.00,76950.00,4950.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-72000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(1528,0,0,1297,'2526','H','O',1394,'',0,'2025-10-23','0000-00-00',1067,0,1106,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 09:56:44','','0000-00-00 00:00:00',0),(1529,0,0,1299,'2526','H','O',1395,'',0,'2025-10-23','0000-00-00',1004,0,1036,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','boi','','70705','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 11:29:25','','0000-00-00 00:00:00',0),(1530,0,0,1300,'2526','H','O',1396,'',0,'2025-10-23','0000-00-00',431,0,454,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 11:34:42','','0000-00-00 00:00:00',0),(1531,0,0,1302,'2526','H','O',1397,'',0,'2025-10-23','0000-00-00',1069,0,1109,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 11:42:13','','0000-00-00 00:00:00',0),(1532,0,0,1303,'2526','H','O',1398,'',0,'2025-10-23','0000-00-00',1070,0,1110,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 11:45:28','','0000-00-00 00:00:00',0),(1533,0,0,1301,'2526','H','O',1399,'',0,'2025-10-23','0000-00-00',1068,0,1108,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK','','72274','','SCAN',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 11:46:36','','0000-00-00 00:00:00',0),(1534,0,0,1304,'2526','H','O',1400,'',0,'2025-10-23','0000-00-00',221,0,234,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','14742','','SCAN',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 11:50:16','','0000-00-00 00:00:00',0),(1535,0,0,1306,'2526','H','O',1401,'',0,'2025-10-23','0000-00-00',1072,0,1112,0,'D27','',0,1600.00,0.00,0.00,1600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','25718','','SCAN',1600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 11:54:41','','0000-00-00 00:00:00',0),(1536,0,0,1305,'2526','H','O',1402,'',0,'2025-10-23','0000-00-00',1071,0,1111,0,'D27','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','hdfc','','77950','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 11:55:21','','0000-00-00 00:00:00',0),(1537,0,0,1307,'2526','H','O',1403,'',0,'2025-10-23','0000-00-00',1073,0,1113,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK','','33345','','SCAN',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 11:58:37','','0000-00-00 00:00:00',0),(1538,0,0,1309,'2526','H','O',1404,'',0,'2025-10-23','0000-00-00',1075,0,1115,0,'D02','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','08553','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 12:01:31','','0000-00-00 00:00:00',0),(1539,0,0,1308,'2526','H','O',1405,'',0,'2025-10-23','0000-00-00',1074,0,1114,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','hdfc','','82966','','scan ',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 12:02:07','','0000-00-00 00:00:00',0),(1540,0,0,1310,'2526','H','O',1406,'',0,'2025-10-23','0000-00-00',1076,0,1116,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS','','33733','','SCAN',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 12:06:31','','0000-00-00 00:00:00',0),(1541,0,0,1311,'2526','H','O',1407,'',0,'2025-10-23','0000-00-00',1077,0,1117,0,'D27','',0,1600.00,0.00,0.00,1600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','au small','','15724','','scan ',1600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 12:08:22','','0000-00-00 00:00:00',0),(1542,0,0,1312,'2526','H','O',1408,'',0,'2025-10-23','0000-00-00',1078,0,1118,0,'D06','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','50359','','scan ',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 12:12:43','','0000-00-00 00:00:00',0),(1543,0,0,1313,'2526','H','O',1409,'',0,'2025-10-23','0000-00-00',1079,0,1119,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','icici','','00299','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 12:14:51','','0000-00-00 00:00:00',0),(1544,0,0,1314,'2526','H','O',1410,'',0,'2025-10-23','0000-00-00',1080,0,1120,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 12:17:33','','0000-00-00 00:00:00',0),(1545,0,0,1315,'2526','H','O',1411,'',0,'2025-10-23','0000-00-00',904,0,936,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 12:18:39','','0000-00-00 00:00:00',0),(1546,0,0,1316,'2526','H','O',1412,'',0,'2025-10-23','0000-00-00',1081,0,1121,0,'D27','',0,1600.00,0.00,0.00,1600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 12:22:31','','0000-00-00 00:00:00',0),(1547,0,0,1317,'2526','H','O',1413,'',0,'2025-10-23','0000-00-00',1082,0,1122,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 12:22:53','','0000-00-00 00:00:00',0),(1548,0,0,1319,'2526','H','O',1414,'',0,'2025-10-23','0000-00-00',1084,0,1124,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 12:25:40','','0000-00-00 00:00:00',0),(1549,0,0,1318,'2526','H','O',1415,'',0,'2025-10-23','0000-00-00',1083,0,1123,0,'D02','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 12:26:00','','0000-00-00 00:00:00',0),(1550,0,0,1320,'2526','H','O',1416,'',0,'2025-10-23','0000-00-00',879,0,911,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 12:28:03','','0000-00-00 00:00:00',0),(1551,0,0,1321,'2526','H','O',1417,'',0,'2025-10-23','0000-00-00',901,0,932,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 12:28:58','','0000-00-00 00:00:00',0),(1552,0,0,1322,'2526','H','O',1418,'',0,'2025-10-23','0000-00-00',140,0,151,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 12:29:22','','0000-00-00 00:00:00',0),(1553,0,0,1323,'2526','H','O',1419,'',0,'2025-10-23','0000-00-00',1085,0,714,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 12:30:44','','0000-00-00 00:00:00',0),(1554,0,0,1324,'2526','H','O',1420,'',0,'2025-10-23','0000-00-00',1086,0,1125,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 12:31:51','','0000-00-00 00:00:00',0),(1555,0,0,1326,'2526','H','O',1421,'',0,'2025-10-23','0000-00-00',1087,0,1126,0,'D27','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 12:34:14','','0000-00-00 00:00:00',0),(1556,0,0,1325,'2526','H','O',1422,'',0,'2025-10-23','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 12:35:49','','0000-00-00 00:00:00',0),(1557,0,0,1327,'2526','H','O',1423,'',0,'2025-10-23','0000-00-00',280,0,296,0,'D27','',0,1600.00,0.00,0.00,1600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 12:37:15','','0000-00-00 00:00:00',0),(1558,0,0,1328,'2526','H','O',1424,'',0,'2025-10-23','0000-00-00',452,0,478,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 12:38:03','','0000-00-00 00:00:00',0),(1559,0,0,1329,'2526','H','O',1425,'',0,'2025-10-23','0000-00-00',575,0,603,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 12:41:45','','0000-00-00 00:00:00',0),(1560,0,0,1330,'2526','H','O',1426,'',0,'2025-10-23','0000-00-00',1088,0,1127,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 12:44:06','','0000-00-00 00:00:00',0),(1561,0,0,1331,'2526','H','O',1427,'',0,'2025-10-23','0000-00-00',1089,0,1128,0,'D06','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 12:48:22','','0000-00-00 00:00:00',0),(1562,0,0,1332,'2526','H','O',1428,'',0,'2025-10-23','0000-00-00',1090,0,1129,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 12:50:47','','0000-00-00 00:00:00',0),(1563,0,0,37,'2526','H','D',69,'',0,'2025-10-23','0000-00-00',0,4,37,0,'D02','',0,5600.00,0.00,0.00,5600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','D','N',5600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-23 12:53:56','','0000-00-00 00:00:00',0),(1564,0,0,1333,'2526','H','O',1429,'',0,'2025-10-23','0000-00-00',442,0,468,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 12:54:07','','0000-00-00 00:00:00',0),(1565,0,0,1334,'2526','H','O',1430,'',0,'2025-10-23','0000-00-00',1091,0,1130,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','icici','','89745','','SCAN',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 12:58:31','','0000-00-00 00:00:00',0),(1566,0,0,1335,'2526','H','O',1431,'',0,'2025-10-23','0000-00-00',1092,0,1131,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 12:58:40','','0000-00-00 00:00:00',0),(1567,0,0,1336,'2526','H','O',1432,'',0,'2025-10-23','0000-00-00',1093,0,1047,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 13:00:24','','0000-00-00 00:00:00',0),(1568,0,0,1337,'2526','H','O',1433,'',0,'2025-10-23','0000-00-00',1094,0,1132,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-23 13:01:14','','0000-00-00 00:00:00',0),(1569,0,0,1338,'2526','H','O',1434,'',0,'2025-10-23','0000-00-00',1095,0,1133,0,'D27','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 13:07:14','','0000-00-00 00:00:00',0),(1570,0,0,1340,'2526','H','O',1435,'',0,'2025-10-23','0000-00-00',992,0,1024,0,'D27','',0,1250.00,0.00,0.00,1250.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1250.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-23 13:19:33','','0000-00-00 00:00:00',0),(1571,0,0,1342,'2526','H','O',1436,'',0,'2025-10-23','0000-00-00',1096,0,1134,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 17:28:39','','0000-00-00 00:00:00',0),(1572,0,0,1343,'2526','H','O',1437,'',0,'2025-10-23','0000-00-00',1097,0,1135,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 17:29:50','','0000-00-00 00:00:00',0),(1573,0,0,1344,'2526','H','O',1438,'',0,'2025-10-23','0000-00-00',1098,0,1136,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 17:31:10','','0000-00-00 00:00:00',0),(1574,0,0,1345,'2526','H','O',1439,'',0,'2025-10-23','0000-00-00',1099,0,1137,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 17:35:05','','0000-00-00 00:00:00',0),(1575,0,0,1346,'2526','H','O',1440,'',0,'2025-10-23','0000-00-00',1100,0,1138,0,'D27','',0,1450.00,0.00,0.00,1450.00,450.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 17:45:18','','0000-00-00 00:00:00',0),(1576,0,0,1347,'2526','H','O',1441,'',0,'2025-10-23','0000-00-00',1101,0,1139,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 17:47:17','','0000-00-00 00:00:00',0),(1577,0,0,1342,'2526','H','O',1442,'',0,'2025-10-23','0000-00-00',1096,0,1134,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 17:49:24','','0000-00-00 00:00:00',0),(1578,0,0,1348,'2526','H','O',1443,'',0,'2025-10-23','0000-00-00',1102,0,1140,0,'D03','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BANK','','57476','','SCAN',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 18:01:58','','0000-00-00 00:00:00',0),(1579,0,0,1344,'2526','H','O',1444,'',0,'2025-10-23','0000-00-00',1098,0,1136,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 18:06:41','','0000-00-00 00:00:00',0),(1580,0,0,1343,'2526','H','O',1445,'',0,'2025-10-23','0000-00-00',1097,0,1135,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','45053','','SCAN',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 18:08:38','','0000-00-00 00:00:00',0),(1581,0,0,1347,'2526','H','O',1446,'',0,'2025-10-23','0000-00-00',1101,0,1139,0,'D06','',0,2500.00,0.00,0.00,2500.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS','','10119','','SCAN',2400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 18:24:43','','0000-00-00 00:00:00',0),(1582,0,0,1349,'2526','H','O',1447,'',0,'2025-10-23','0000-00-00',1103,0,1141,0,'D27','',0,1600.00,0.00,0.00,1600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 18:41:38','','0000-00-00 00:00:00',0),(1583,0,0,1350,'2526','H','O',1448,'',0,'2025-10-23','0000-00-00',1104,0,1142,0,'D03','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 18:43:36','','0000-00-00 00:00:00',0),(1584,0,0,1351,'2526','H','O',1449,'',0,'2025-10-23','0000-00-00',835,0,866,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 18:44:28','','0000-00-00 00:00:00',0),(1585,0,0,1352,'2526','H','O',1450,'',0,'2025-10-23','0000-00-00',1105,0,1143,0,'D02','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 18:46:14','','0000-00-00 00:00:00',0),(1586,0,0,1353,'2526','H','O',1451,'',0,'2025-10-23','0000-00-00',1106,0,1144,0,'D27','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 18:48:11','','0000-00-00 00:00:00',0),(1587,0,0,1354,'2526','H','O',1452,'',0,'2025-10-23','0000-00-00',1107,0,1145,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 18:51:10','','0000-00-00 00:00:00',0),(1588,0,0,1325,'2526','H','O',1453,'',0,'2025-10-23','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 18:52:22','','0000-00-00 00:00:00',0),(1589,0,0,1355,'2526','H','O',1454,'',0,'2025-10-23','0000-00-00',879,0,911,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 18:54:04','','0000-00-00 00:00:00',0),(1590,0,0,1356,'2526','H','O',1455,'',0,'2025-10-23','0000-00-00',303,0,319,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 18:54:56','','0000-00-00 00:00:00',0),(1591,0,0,1357,'2526','H','O',1456,'',0,'2025-10-23','0000-00-00',1108,0,1146,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 18:56:15','','0000-00-00 00:00:00',0),(1592,0,0,1358,'2526','H','O',1457,'',0,'2025-10-23','0000-00-00',1109,0,1147,0,'D03','',0,3300.00,0.00,0.00,3300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 19:00:37','','0000-00-00 00:00:00',0),(1593,0,0,1359,'2526','H','O',1458,'',0,'2025-10-23','0000-00-00',1110,0,1148,0,'D27','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 19:09:32','','0000-00-00 00:00:00',0),(1594,0,0,1361,'2526','H','O',1459,'',0,'2025-10-23','0000-00-00',1112,0,1150,0,'D27','',0,1600.00,0.00,0.00,1600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 19:15:15','','0000-00-00 00:00:00',0),(1595,0,0,1360,'2526','H','O',1460,'',0,'2025-10-23','0000-00-00',1111,0,1149,0,'D03','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-23 19:43:09','','0000-00-00 00:00:00',0),(1596,0,0,1294,'2526','H','D',70,'',0,'2025-10-23','0000-00-00',0,79,1104,0,'D27','',0,40950.00,0.00,0.00,40950.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-40000,0,'0000-00-00','','N','N','F','N',950.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(1597,0,0,1294,'2526','H','I',67,'',0,'2025-10-23','0000-00-00',0,79,1104,0,'D27','',0,40950.00,0.00,0.00,40950.00,950.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-40000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(1598,0,0,1364,'2526','H','O',1461,'',0,'2025-10-24','0000-00-00',1113,0,1153,0,'D27','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-24 08:56:41','','0000-00-00 00:00:00',0),(1599,0,0,1365,'2526','H','O',1462,'',0,'2025-10-24','0000-00-00',1114,0,1154,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','55604','','scan',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-24 08:59:52','','0000-00-00 00:00:00',0),(1600,0,0,1366,'2526','H','O',1463,'',0,'2025-10-24','0000-00-00',1115,0,1155,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-24 09:02:32','','0000-00-00 00:00:00',0),(1601,0,0,1367,'2526','H','O',1464,'',0,'2025-10-24','0000-00-00',1116,0,1156,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-24 09:04:05','','0000-00-00 00:00:00',0),(1602,0,0,1368,'2526','H','O',1465,'',0,'2025-10-24','0000-00-00',1117,0,1157,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-24 09:31:56','','0000-00-00 00:00:00',0),(1603,0,0,1370,'2526','H','O',1466,'',0,'2025-10-24','0000-00-00',619,0,649,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','301418','','scan                          ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 10:07:28','','0000-00-00 00:00:00',0),(1604,0,0,1371,'2526','H','O',1467,'',0,'2025-10-24','0000-00-00',1118,0,1159,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','39072','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 10:10:58','','0000-00-00 00:00:00',0),(1605,0,0,1372,'2526','H','O',1468,'',0,'2025-10-24','0000-00-00',1119,0,1160,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-24 10:14:23','','0000-00-00 00:00:00',0),(1606,0,0,1373,'2526','H','O',1469,'',0,'2025-10-24','0000-00-00',1120,0,1161,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 10:16:02','','0000-00-00 00:00:00',0),(1607,0,0,1374,'2526','H','O',1470,'',0,'2025-10-24','0000-00-00',1121,0,1162,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-24 10:17:18','','0000-00-00 00:00:00',0),(1608,0,0,1375,'2526','H','O',1471,'',0,'2025-10-24','0000-00-00',1122,0,1163,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 10:27:05','','0000-00-00 00:00:00',0),(1609,0,0,1376,'2526','H','O',1472,'',0,'2025-10-24','0000-00-00',1123,0,1164,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 10:42:04','','0000-00-00 00:00:00',0),(1610,0,0,1377,'2526','H','O',1473,'',0,'2025-10-24','0000-00-00',1124,0,1165,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 10:44:13','','0000-00-00 00:00:00',0),(1611,0,0,1378,'2526','H','O',1474,'',0,'2025-10-24','0000-00-00',1125,0,1095,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','17003','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-24 10:52:05','','0000-00-00 00:00:00',0),(1612,0,0,1367,'2526','H','O',1475,'',0,'2025-10-24','0000-00-00',1116,0,1156,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 11:11:46','','0000-00-00 00:00:00',0),(1613,0,0,1379,'2526','H','O',1476,'',0,'2025-10-24','0000-00-00',859,0,891,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR. SAGAR KHANPARA','HO 1479','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-24 11:12:23','manshi','2025-10-24 11:20:40',0),(1614,0,0,1380,'2526','H','O',1477,'',0,'2025-10-24','0000-00-00',1126,0,1166,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-24 11:12:44','','0000-00-00 00:00:00',0),(1615,0,0,1381,'2526','H','O',1478,'',0,'2025-10-24','0000-00-00',1127,0,1167,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 11:17:34','','0000-00-00 00:00:00',0),(1616,0,0,1379,'2526','H','O',1479,'',0,'2025-10-24','0000-00-00',859,0,891,0,'D03','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-10-24','Y','N','N','','N',0.00,'','Y','FOC BY DR. SAGAR KHANPARA','','HO 1476','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-24 11:20:40','manshi','2025-10-24 11:21:04',0),(1617,0,0,1381,'2526','H','O',1480,'',0,'2025-10-24','0000-00-00',1127,0,1167,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 11:26:08','','0000-00-00 00:00:00',0),(1618,0,0,1382,'2526','H','O',1481,'',0,'2025-10-24','0000-00-00',1128,0,1168,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-24 11:31:47','','0000-00-00 00:00:00',0),(1619,0,0,1339,'2526','H','D',71,'',0,'2025-10-24','0000-00-00',1067,83,1106,0,'D02','',0,20000.00,0.00,0.00,20000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-24 11:32:36','riya','2025-10-24 11:43:59',0),(1620,0,0,1383,'2526','H','O',1482,'',0,'2025-10-24','0000-00-00',1129,0,1169,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-24 11:33:25','','0000-00-00 00:00:00',0),(1621,0,0,1384,'2526','H','O',1483,'',0,'2025-10-24','0000-00-00',340,0,356,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-24 11:34:32','','0000-00-00 00:00:00',0),(1622,0,0,1341,'2526','H','D',72,'',0,'2025-10-24','0000-00-00',1004,84,1036,0,'D02','',0,25000.00,0.00,0.00,25000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',10000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-24 11:36:20','riya','2025-10-24 12:05:52',0),(1623,0,0,1385,'2526','H','O',1484,'',0,'2025-10-24','0000-00-00',1130,0,1170,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','UNION BANK','','47260','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-24 11:36:54','','0000-00-00 00:00:00',0),(1624,0,0,1387,'2526','H','O',1485,'',0,'2025-10-24','0000-00-00',1132,0,1172,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 11:40:17','','0000-00-00 00:00:00',0),(1625,0,0,1388,'2526','H','O',1486,'',0,'2025-10-24','0000-00-00',116,0,127,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-24 11:41:16','','0000-00-00 00:00:00',0),(1626,0,0,1389,'2526','H','O',1487,'',0,'2025-10-24','0000-00-00',131,0,142,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-24 11:42:13','','0000-00-00 00:00:00',0),(1627,0,0,1339,'2526','H','I',68,'',0,'2025-10-24','0000-00-00',1067,83,1106,0,'D02','',0,20000.00,0.00,0.00,20000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-24 11:44:13','','0000-00-00 00:00:00',0),(1628,0,0,1390,'2526','H','O',1488,'',0,'2025-10-24','0000-00-00',1059,0,1092,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-24 11:44:40','','0000-00-00 00:00:00',0),(1629,0,0,1391,'2526','H','O',1489,'',0,'2025-10-24','0000-00-00',839,0,870,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS BANK','','29984','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-24 11:46:10','','0000-00-00 00:00:00',0),(1630,0,0,1392,'2526','H','O',1490,'',0,'2025-10-24','0000-00-00',1133,0,1173,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-24 11:51:17','','0000-00-00 00:00:00',0),(1631,0,0,1393,'2526','H','O',1491,'',0,'2025-10-24','0000-00-00',1134,0,1174,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 11:53:21','','0000-00-00 00:00:00',0),(1632,0,0,1394,'2526','H','O',1492,'',0,'2025-10-24','0000-00-00',1135,0,1175,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-24 11:59:29','','0000-00-00 00:00:00',0),(1633,0,0,1395,'2526','H','O',1493,'',0,'2025-10-24','0000-00-00',1136,0,1176,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-24 12:04:54','','0000-00-00 00:00:00',0),(1634,0,0,1396,'2526','H','O',1494,'',0,'2025-10-24','0000-00-00',1137,0,1177,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-24 12:06:45','','0000-00-00 00:00:00',0),(1635,0,0,1383,'2526','H','O',1495,'',0,'2025-10-24','0000-00-00',1129,0,1169,0,'D06','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-24 12:07:58','','0000-00-00 00:00:00',0),(1636,0,0,1385,'2526','H','O',1496,'',0,'2025-10-24','0000-00-00',1130,0,1170,0,'D06','',0,4800.00,0.00,0.00,4800.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','union bank','','95704','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-24 12:23:02','','0000-00-00 00:00:00',0),(1637,0,0,1397,'2526','H','O',1497,'',0,'2025-10-24','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-24 12:24:17','','0000-00-00 00:00:00',0),(1638,0,0,1398,'2526','H','O',1498,'',0,'2025-10-24','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 12:26:06','','0000-00-00 00:00:00',0),(1639,0,0,1399,'2526','H','O',1499,'',0,'2025-10-24','0000-00-00',1138,0,1178,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 12:35:05','','0000-00-00 00:00:00',0),(1640,0,0,1400,'2526','H','O',1500,'',0,'2025-10-24','0000-00-00',1139,0,1179,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 12:37:11','','0000-00-00 00:00:00',0),(1641,0,0,1394,'2526','H','O',1501,'',0,'2025-10-24','0000-00-00',1135,0,1175,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','33541','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-24 12:38:59','','0000-00-00 00:00:00',0),(1642,0,0,1395,'2526','H','O',1502,'',0,'2025-10-24','0000-00-00',1136,0,1176,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-24 12:41:08','','0000-00-00 00:00:00',0),(1643,0,0,1341,'2526','H','I',69,'',0,'2025-10-24','0000-00-00',1004,84,1036,0,'D02','',0,25000.00,0.00,0.00,25000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-24 12:42:28','','0000-00-00 00:00:00',0),(1644,0,0,1401,'2526','H','O',1503,'',0,'2025-10-24','0000-00-00',424,0,446,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','39325','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-24 13:15:59','','0000-00-00 00:00:00',0),(1645,0,0,1406,'2526','H','O',1504,'',0,'2025-10-24','0000-00-00',1141,0,1181,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','ICICI','','58358','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 16:37:45','','0000-00-00 00:00:00',0),(1646,0,0,1407,'2526','H','O',1505,'',0,'2025-10-24','0000-00-00',1142,0,1182,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 16:45:46','','0000-00-00 00:00:00',0),(1647,0,0,1408,'2526','H','O',1506,'',0,'2025-10-24','0000-00-00',1143,0,1183,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','93610','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-24 16:50:20','','0000-00-00 00:00:00',0),(1648,0,0,1409,'2526','H','O',1507,'',0,'2025-10-24','0000-00-00',1144,0,1184,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-24 17:03:06','','0000-00-00 00:00:00',0),(1649,0,0,1411,'2526','H','O',1508,'',0,'2025-10-24','0000-00-00',575,0,603,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 17:05:13','','0000-00-00 00:00:00',0),(1650,0,0,1412,'2526','H','O',1509,'',0,'2025-10-24','0000-00-00',39,0,43,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-24 17:07:52','','0000-00-00 00:00:00',0),(1651,0,0,1408,'2526','H','O',1510,'',0,'2025-10-24','0000-00-00',1143,0,1183,0,'D06','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','05903','','SCAN',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-24 17:31:30','','0000-00-00 00:00:00',0),(1652,0,0,1413,'2526','H','O',1511,'',0,'2025-10-24','0000-00-00',305,0,321,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 17:45:02','','0000-00-00 00:00:00',0),(1653,0,0,1414,'2526','H','O',1512,'',0,'2025-10-24','0000-00-00',1145,0,1185,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-24 17:45:23','','0000-00-00 00:00:00',0),(1654,0,0,1415,'2526','H','O',1513,'',0,'2025-10-24','0000-00-00',1146,0,1186,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','ICICI','','88156','','SCAN',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-24 17:48:55','','0000-00-00 00:00:00',0),(1655,0,0,1416,'2526','H','O',1514,'',0,'2025-10-24','0000-00-00',1147,0,1187,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-24 18:01:03','','0000-00-00 00:00:00',0),(1656,0,0,1415,'2526','H','O',1515,'',0,'2025-10-24','0000-00-00',1146,0,1186,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','ICICI','','94508','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-24 18:04:25','','0000-00-00 00:00:00',0),(1657,0,0,1417,'2526','H','O',1516,'',0,'2025-10-24','0000-00-00',1148,0,1188,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-24 18:07:53','','0000-00-00 00:00:00',0),(1658,0,0,1418,'2526','H','O',1517,'',0,'2025-10-24','0000-00-00',1149,0,1189,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 18:08:38','','0000-00-00 00:00:00',0),(1659,0,0,1420,'2526','H','O',1518,'',0,'2025-10-24','0000-00-00',1089,0,1128,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 1530','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-24 18:10:48','janvi','2025-10-24 19:07:34',0),(1660,0,0,1421,'2526','H','O',1519,'',0,'2025-10-24','0000-00-00',270,0,286,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','67088','','scan                          ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 18:10:56','','0000-00-00 00:00:00',0),(1661,0,0,1419,'2526','H','O',1520,'',0,'2025-10-24','0000-00-00',1150,0,1190,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','CENTRAL BANK','','44371','','scan ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-24 18:11:19','','0000-00-00 00:00:00',0),(1662,0,0,1423,'2526','H','O',1521,'',0,'2025-10-24','0000-00-00',362,0,378,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-24 18:12:35','','0000-00-00 00:00:00',0),(1663,0,0,1422,'2526','H','O',1522,'',0,'2025-10-24','0000-00-00',1151,0,1191,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','78738','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 18:13:10','','0000-00-00 00:00:00',0),(1664,0,0,1424,'2526','H','O',1523,'',0,'2025-10-24','0000-00-00',1152,0,1192,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','ICICI','','98627','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 18:15:56','','0000-00-00 00:00:00',0),(1665,0,0,1426,'2526','H','O',1524,'',0,'2025-10-24','0000-00-00',1153,0,1193,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-24 18:25:00','','0000-00-00 00:00:00',0),(1666,0,0,1430,'2526','H','O',1525,'',0,'2025-10-24','0000-00-00',1157,0,1196,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','39774','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 18:48:44','','0000-00-00 00:00:00',0),(1667,0,0,1429,'2526','H','O',1526,'',0,'2025-10-24','0000-00-00',1156,0,1195,0,'D27','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','RAJKOT NAGRIK ','','54037','','SCAN',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-24 18:48:53','','0000-00-00 00:00:00',0),(1668,0,0,1431,'2526','H','O',1527,'',0,'2025-10-24','0000-00-00',1158,0,1197,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 18:51:56','','0000-00-00 00:00:00',0),(1669,0,0,1430,'2526','H','O',1528,'',0,'2025-10-24','0000-00-00',1157,0,1196,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','15358','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 19:03:31','','0000-00-00 00:00:00',0),(1670,0,0,1432,'2526','H','O',1529,'',0,'2025-10-24','0000-00-00',1159,0,1198,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 19:06:01','','0000-00-00 00:00:00',0),(1671,0,0,1420,'2526','H','O',1530,'',0,'2025-10-24','0000-00-00',1089,0,1128,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-24','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 1518','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-24 19:07:34','janvi','2025-10-24 19:08:04',0),(1672,0,0,1433,'2526','H','O',1531,'',0,'2025-10-24','0000-00-00',1160,0,1199,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 19:09:05','','0000-00-00 00:00:00',0),(1673,0,0,1420,'2526','H','O',1532,'',0,'2025-10-24','0000-00-00',1089,0,1128,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'Pending',0,'','CSH','','','','','',4400.00,0,0,'2025-10-24','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-24 19:10:20','manshi','2025-10-24 20:10:34',0),(1674,0,0,1427,'2526','H','O',1533,'',0,'2025-10-24','0000-00-00',1154,0,1194,0,'D06','',0,2700.00,0.00,0.00,2700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','ICICI','','72170','','SCAN',2700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-24 19:19:15','','0000-00-00 00:00:00',0),(1675,0,0,1431,'2526','H','O',1534,'',0,'2025-10-24','0000-00-00',1158,0,1197,0,'D02','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-24 19:21:34','','0000-00-00 00:00:00',0),(1676,0,0,1435,'2526','H','O',1535,'',0,'2025-10-24','0000-00-00',1161,0,1200,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-24 19:27:17','','0000-00-00 00:00:00',0),(1677,0,0,1436,'2526','H','O',1536,'',0,'2025-10-24','0000-00-00',1162,0,1201,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-24 19:50:52','','0000-00-00 00:00:00',0),(1678,0,0,1436,'2526','H','O',1537,'',0,'2025-10-24','0000-00-00',1162,0,1201,0,'D02','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-24 20:40:20','','0000-00-00 00:00:00',0),(1680,0,0,1439,'2526','H','O',1538,'',0,'2025-10-25','0000-00-00',1163,0,1202,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-25 09:00:52','','0000-00-00 00:00:00',0),(1681,0,0,1440,'2526','H','O',1539,'',0,'2025-10-25','0000-00-00',135,0,146,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-25 09:02:04','','0000-00-00 00:00:00',0),(1682,0,0,1441,'2526','H','O',1540,'',0,'2025-10-25','0000-00-00',1164,0,1203,0,'D27','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','bandhan bank','','16564','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-25 09:04:17','','0000-00-00 00:00:00',0),(1683,0,0,1442,'2526','H','O',1541,'',0,'2025-10-25','0000-00-00',1165,0,1204,0,'D27','',0,1250.00,0.00,0.00,1250.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','67500','','scan ',1250.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-25 09:07:36','','0000-00-00 00:00:00',0),(1684,0,0,1444,'2526','H','O',1542,'',0,'2025-10-25','0000-00-00',1166,0,1205,0,'D03','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-25 09:47:39','','0000-00-00 00:00:00',0),(1685,0,0,1445,'2526','H','O',1543,'',0,'2025-10-25','0000-00-00',1167,0,1206,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 09:49:56','','0000-00-00 00:00:00',0),(1686,0,0,1446,'2526','H','O',1544,'',0,'2025-10-25','0000-00-00',1168,0,1207,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 09:51:16','','0000-00-00 00:00:00',0),(1687,0,0,1447,'2526','H','O',1545,'',0,'2025-10-25','0000-00-00',1169,0,1208,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 09:56:49','','0000-00-00 00:00:00',0),(1688,0,0,1448,'2526','H','O',1546,'',0,'2025-10-25','0000-00-00',1170,0,1209,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 10:01:25','','0000-00-00 00:00:00',0),(1689,0,0,1449,'2526','H','O',1547,'',0,'2025-10-25','0000-00-00',1171,0,1210,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-25 10:03:21','','0000-00-00 00:00:00',0),(1690,0,0,1450,'2526','H','O',1548,'',0,'2025-10-25','0000-00-00',1172,0,1211,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-25 10:08:30','','0000-00-00 00:00:00',0),(1691,0,0,1451,'2526','H','O',1549,'',0,'2025-10-25','0000-00-00',1173,0,1212,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 10:17:42','','0000-00-00 00:00:00',0),(1692,0,0,1362,'2526','H','D',74,'',0,'2025-10-25','0000-00-00',0,85,1151,0,'D02','',0,15900.00,0.00,0.00,15900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-8000,0,'0000-00-00','','N','N','F','N',7900.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-25 10:30:29','riya','2025-10-25 10:31:25',0),(1693,0,0,1452,'2526','H','O',1550,'',0,'2025-10-25','0000-00-00',1174,0,1213,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 10:33:43','','0000-00-00 00:00:00',0),(1694,0,0,1362,'2526','H','I',70,'',0,'2025-10-25','0000-00-00',0,85,1151,0,'D02','',0,15900.00,0.00,0.00,15900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15900,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-25 10:40:00','','0000-00-00 00:00:00',0),(1695,0,0,1453,'2526','H','O',1551,'',0,'2025-10-25','0000-00-00',1175,0,1214,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','airtel payment','','94449','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-25 10:46:18','','0000-00-00 00:00:00',0),(1696,0,0,1446,'2526','H','O',1552,'',0,'2025-10-25','0000-00-00',1168,0,1207,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 10:51:01','','0000-00-00 00:00:00',0),(1697,0,0,1455,'2526','H','O',1553,'',0,'2025-10-25','0000-00-00',1177,0,1216,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 11:00:07','','0000-00-00 00:00:00',0),(1698,0,0,1454,'2526','H','O',1554,'',0,'2025-10-25','0000-00-00',1176,0,1215,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-25 11:00:25','','0000-00-00 00:00:00',0),(1699,0,0,1447,'2526','H','O',1555,'',0,'2025-10-25','0000-00-00',1169,0,1208,0,'D06','',0,7000.00,0.00,0.00,7000.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 11:04:24','','0000-00-00 00:00:00',0),(1700,0,0,1456,'2526','H','O',1556,'',0,'2025-10-25','0000-00-00',1178,0,1217,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-25 11:04:33','','0000-00-00 00:00:00',0),(1701,0,0,1457,'2526','H','O',1557,'',0,'2025-10-25','0000-00-00',1179,0,1218,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-25 11:07:04','','0000-00-00 00:00:00',0),(1702,0,0,1458,'2526','H','O',1558,'',0,'2025-10-25','0000-00-00',1180,0,1219,0,'D27','',0,2600.00,0.00,0.00,2600.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-25 11:16:11','','0000-00-00 00:00:00',0),(1703,0,0,1459,'2526','H','O',1559,'',0,'2025-10-25','0000-00-00',1181,0,1220,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','09697','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 11:20:53','','0000-00-00 00:00:00',0),(1704,0,0,1460,'2526','H','O',1560,'',0,'2025-10-25','0000-00-00',1182,0,1221,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','19789','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-25 11:23:54','','0000-00-00 00:00:00',0),(1705,0,0,1461,'2526','H','O',1561,'',0,'2025-10-25','0000-00-00',1183,0,1222,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 11:23:54','','0000-00-00 00:00:00',0),(1706,0,0,1462,'2526','H','O',1562,'',0,'2025-10-25','0000-00-00',1184,0,1223,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','19789','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-25 11:25:33','','0000-00-00 00:00:00',0),(1707,0,0,1463,'2526','H','O',1563,'',0,'2025-10-25','0000-00-00',1185,0,1224,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 11:26:34','','0000-00-00 00:00:00',0),(1708,0,0,1464,'2526','H','O',1564,'',0,'2025-10-25','0000-00-00',1186,0,1225,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC BANK','','82679','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-25 11:28:15','','0000-00-00 00:00:00',0),(1709,0,0,1453,'2526','H','O',1565,'',0,'2025-10-25','0000-00-00',1175,0,1214,0,'D06','',0,5300.00,0.00,0.00,5300.00,800.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','airtel bank','','03586','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 11:35:54','','0000-00-00 00:00:00',0),(1710,0,0,1459,'2526','H','O',1566,'',0,'2025-10-25','0000-00-00',1181,0,1220,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK BANK','','06844','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-25 11:41:00','','0000-00-00 00:00:00',0),(1711,0,0,1466,'2526','H','O',1567,'',0,'2025-10-25','0000-00-00',1188,0,1227,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 11:41:56','','0000-00-00 00:00:00',0),(1712,0,0,1467,'2526','H','O',1568,'',0,'2025-10-25','0000-00-00',1189,0,1228,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-25 11:43:50','','0000-00-00 00:00:00',0),(1713,0,0,1468,'2526','H','O',1569,'',0,'2025-10-25','0000-00-00',1190,0,1229,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 11:44:02','','0000-00-00 00:00:00',0),(1714,0,0,1465,'2526','H','O',1570,'',0,'2025-10-25','0000-00-00',1187,0,1226,0,'D27','',0,700.00,0.00,0.00,700.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','06192','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-25 11:45:08','','0000-00-00 00:00:00',0),(1715,0,0,1469,'2526','H','O',1571,'',0,'2025-10-25','0000-00-00',1191,0,1230,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-25 11:45:59','','0000-00-00 00:00:00',0),(1716,0,0,1460,'2526','H','O',1572,'',0,'2025-10-25','0000-00-00',1182,0,1221,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-25 11:47:08','','0000-00-00 00:00:00',0),(1717,0,0,1470,'2526','H','O',1573,'',0,'2025-10-25','0000-00-00',1192,0,1231,0,'D06','',0,1200.00,0.00,0.00,1200.00,1200.00,0.00,'',0.00,'0000-00-00','',NULL,'Foc ',0,'','CSH','','','','','',0.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 11:47:26','','0000-00-00 00:00:00',0),(1718,0,0,1450,'2526','H','O',1574,'',0,'2025-10-25','0000-00-00',1172,0,1211,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-25 11:49:36','','0000-00-00 00:00:00',0),(1719,0,0,1456,'2526','H','O',1575,'',0,'2025-10-25','0000-00-00',1178,0,1217,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-25 11:52:07','','0000-00-00 00:00:00',0),(1720,0,0,1471,'2526','H','O',1576,'',0,'2025-10-25','0000-00-00',1193,0,1232,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','axis bank','','25173','','scan ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-25 11:53:47','','0000-00-00 00:00:00',0),(1721,0,0,1147,'2526','H','D',75,'',0,'2025-10-25','0000-00-00',0,70,989,0,'D27','',0,59300.00,0.00,0.00,59300.00,4100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-23000,0,'0000-00-00','','N','N','F','N',32200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-25 12:01:57','riya','2025-10-25 14:16:30',0),(1722,0,0,1472,'2526','H','O',1577,'',0,'2025-10-25','0000-00-00',1194,0,1233,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 12:02:41','','0000-00-00 00:00:00',0),(1723,0,0,1464,'2526','H','O',1578,'',0,'2025-10-25','0000-00-00',1186,0,1225,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','34279','','scan',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 12:15:03','','0000-00-00 00:00:00',0),(1724,0,0,1473,'2526','H','O',1579,'',0,'2025-10-25','0000-00-00',1195,0,1234,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-25 12:25:09','','0000-00-00 00:00:00',0),(1725,0,0,1474,'2526','H','O',1580,'',0,'2025-10-25','0000-00-00',1033,0,1067,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-25 12:26:28','','0000-00-00 00:00:00',0),(1726,0,0,1475,'2526','H','O',1581,'',0,'2025-10-25','0000-00-00',1196,0,1235,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 12:28:33','','0000-00-00 00:00:00',0),(1727,0,0,1405,'2526','H','D',76,'',0,'2025-10-25','0000-00-00',1140,88,1180,0,'D02','',0,11000.00,0.00,0.00,11000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-12000,0,'0000-00-00','','N','N','F','N',-1000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-25 12:35:40','vishal','2025-10-25 12:47:37',0),(1728,0,0,1476,'2526','H','O',1582,'',0,'2025-10-25','0000-00-00',1197,0,1236,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-25 12:35:48','','0000-00-00 00:00:00',0),(1729,0,0,1477,'2526','H','O',1583,'',0,'2025-10-25','0000-00-00',1132,0,1172,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-25 12:37:38','','0000-00-00 00:00:00',0),(1730,0,0,1469,'2526','H','O',1584,'',0,'2025-10-25','0000-00-00',1191,0,1230,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','2','icici','3177','3177','','card',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 12:41:33','','0000-00-00 00:00:00',0),(1731,0,0,1478,'2526','H','O',1585,'',0,'2025-10-25','0000-00-00',560,0,587,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-25 12:42:55','','0000-00-00 00:00:00',0),(1732,0,0,1467,'2526','H','O',1586,'',0,'2025-10-25','0000-00-00',1189,0,1228,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','CRD','hdfc','00503','00503','','card',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 12:47:00','','0000-00-00 00:00:00',0),(1733,0,0,1479,'2526','H','O',1587,'',0,'2025-10-25','0000-00-00',216,0,229,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-25 12:50:06','','0000-00-00 00:00:00',0),(1734,0,0,1405,'2526','H','I',71,'',0,'2025-10-25','0000-00-00',1140,88,1180,0,'D02','',0,11000.00,0.00,0.00,11000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-1000.00,-12000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-25 12:53:11','','0000-00-00 00:00:00',0),(1735,0,0,1480,'2526','H','O',1588,'',0,'2025-10-25','0000-00-00',1198,0,1237,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 12:54:48','','0000-00-00 00:00:00',0),(1736,0,0,1480,'2526','H','O',1589,'',0,'2025-10-25','0000-00-00',1198,0,1237,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-25 13:03:31','','0000-00-00 00:00:00',0),(1737,0,0,1296,'2526','H','D',77,'',0,'2025-10-25','0000-00-00',951,81,982,0,'D27','',0,26700.00,0.00,0.00,26700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',26700.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-25 13:08:57','riya','2025-10-25 13:46:46',0),(1738,0,0,1481,'2526','H','O',1590,'',0,'2025-10-25','0000-00-00',1199,0,1238,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','jccb','','56215','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 13:10:08','','0000-00-00 00:00:00',0),(1739,0,0,1482,'2526','H','O',1591,'',0,'2025-10-25','0000-00-00',1200,0,1239,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-25 13:17:23','','0000-00-00 00:00:00',0),(1740,0,0,1296,'2526','H','I',72,'',0,'2025-10-25','0000-00-00',951,81,982,0,'D27','',0,26700.00,0.00,0.00,26700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-26700,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(1741,0,0,1482,'2526','H','O',1592,'',0,'2025-10-25','0000-00-00',1200,0,1239,0,'D02','',0,400.00,0.00,0.00,400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-25 13:51:12','','0000-00-00 00:00:00',0),(1742,0,0,1147,'2526','H','I',73,'',0,'2025-10-25','0000-00-00',0,70,989,0,'D27','',0,59300.00,0.00,0.00,59300.00,4100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-55200,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(1743,0,0,1485,'2526','H','O',1593,'',0,'2025-10-25','0000-00-00',879,0,911,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-25 16:38:12','','0000-00-00 00:00:00',0),(1744,0,0,1486,'2526','H','O',1594,'',0,'2025-10-25','0000-00-00',1203,0,1242,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-25 16:39:43','','0000-00-00 00:00:00',0),(1745,0,0,1487,'2526','H','O',1595,'',0,'2025-10-25','0000-00-00',1204,0,1243,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-25 17:41:02','','0000-00-00 00:00:00',0),(1746,0,0,1488,'2526','H','O',1596,'',0,'2025-10-25','0000-00-00',111,0,122,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-25 17:41:29','','0000-00-00 00:00:00',0),(1747,0,0,1489,'2526','H','O',1597,'',0,'2025-10-25','0000-00-00',1205,0,1244,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','7','sbi','','40310','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-25 17:46:16','','0000-00-00 00:00:00',0),(1748,0,0,1494,'2526','H','O',1598,'',0,'2025-10-25','0000-00-00',117,0,128,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-25 18:42:07','','0000-00-00 00:00:00',0),(1749,0,0,1491,'2526','H','O',1599,'',0,'2025-10-25','0000-00-00',1207,0,1246,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-25 18:48:20','','0000-00-00 00:00:00',0),(1750,0,0,1496,'2526','H','O',1600,'',0,'2025-10-25','0000-00-00',184,0,197,0,'D27','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-25 18:53:07','','0000-00-00 00:00:00',0),(1751,0,0,1497,'2526','H','O',1601,'',0,'2025-10-25','0000-00-00',1211,0,1250,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-25 18:56:53','','0000-00-00 00:00:00',0),(1752,0,0,1498,'2526','H','O',1602,'',0,'2025-10-25','0000-00-00',1019,0,1053,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-25 19:03:27','','0000-00-00 00:00:00',0),(1753,0,0,1499,'2526','H','O',1603,'',0,'2025-10-25','0000-00-00',1212,0,1251,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI BANK','','97894','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-25 19:06:58','','0000-00-00 00:00:00',0),(1754,0,0,489,'2526','H','D',78,'',0,'2025-10-25','0000-00-00',0,38,452,0,'D27','',0,184000.00,0.00,0.00,184000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-150000,0,'0000-00-00','','N','N','F','N',34000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-25 19:16:18','riya','2025-10-25 19:40:03',0),(1755,0,0,1495,'2526','H','O',1604,'',0,'2025-10-25','0000-00-00',1210,0,1249,0,'D02','',0,500.00,0.00,0.00,500.00,250.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',250.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-25 19:39:18','','0000-00-00 00:00:00',0),(1756,0,0,489,'2526','H','I',74,'',0,'2025-10-25','0000-00-00',0,38,452,0,'D27','',0,184000.00,0.00,0.00,184000.00,4000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-180000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(1757,0,0,1503,'2526','H','O',1605,'',0,'2025-10-26','0000-00-00',1213,0,1252,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','78796','','scan',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-26 10:05:07','','0000-00-00 00:00:00',0),(1758,0,0,1369,'2526','H','D',79,'',0,'2025-10-28','0000-00-00',0,87,1158,0,'D02','',0,14950.00,0.00,0.00,14950.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',14950.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-26 10:22:14','riya','2025-10-28 17:32:59',0),(1759,0,0,1434,'2526','H','D',80,'',0,'2025-10-26','0000-00-00',1002,89,1034,0,'D27','',0,10600.00,0.00,0.00,10600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6000,0,'0000-00-00','','N','N','F','N',4600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-26 12:31:53','riya','2025-10-26 12:37:14',0),(1760,0,0,1434,'2526','H','I',75,'',0,'2025-10-26','0000-00-00',1002,89,1034,0,'D27','',0,10600.00,0.00,0.00,10600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10600,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-26 12:43:23','','0000-00-00 00:00:00',0),(1761,0,0,1508,'2526','H','O',1606,'',0,'2025-10-27','0000-00-00',1214,0,1255,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','75780','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 08:51:41','','0000-00-00 00:00:00',0),(1762,0,0,1509,'2526','H','O',1607,'',0,'2025-10-27','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 08:52:50','','0000-00-00 00:00:00',0),(1763,0,0,1510,'2526','H','O',1608,'',0,'2025-10-27','0000-00-00',1215,0,1256,0,'D27','',0,1450.00,0.00,0.00,1450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bank','','64461','','scan',1450.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 08:56:20','','0000-00-00 00:00:00',0),(1764,0,0,1511,'2526','H','O',1609,'',0,'2025-10-27','0000-00-00',1216,0,1257,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 09:03:47','','0000-00-00 00:00:00',0),(1765,0,0,1512,'2526','H','O',1610,'',0,'2025-10-27','0000-00-00',1217,0,1258,0,'D02','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 09:08:57','','0000-00-00 00:00:00',0),(1766,0,0,1515,'2526','H','O',1611,'',0,'2025-10-27','0000-00-00',1220,0,1261,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 09:20:11','','0000-00-00 00:00:00',0),(1767,0,0,1516,'2526','H','O',1612,'',0,'2025-10-27','0000-00-00',644,0,674,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 09:26:51','','0000-00-00 00:00:00',0),(1768,0,0,1517,'2526','H','O',1613,'',0,'2025-10-27','0000-00-00',1221,0,1262,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 09:29:11','','0000-00-00 00:00:00',0),(1769,0,0,1518,'2526','H','O',1614,'',0,'2025-10-27','0000-00-00',1222,0,1263,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','03886','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 09:41:09','','0000-00-00 00:00:00',0),(1770,0,0,1521,'2526','H','O',1615,'',0,'2025-10-27','0000-00-00',1224,0,1265,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI BANK','','72819','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 10:14:17','','0000-00-00 00:00:00',0),(1771,0,0,1522,'2526','H','O',1616,'',0,'2025-10-27','0000-00-00',1225,0,1266,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 10:18:35','','0000-00-00 00:00:00',0),(1772,0,0,1524,'2526','H','O',1617,'',0,'2025-10-27','0000-00-00',1226,0,1267,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 10:21:03','','0000-00-00 00:00:00',0),(1773,0,0,1525,'2526','H','O',1618,'',0,'2025-10-27','0000-00-00',1227,0,1268,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 10:21:31','','0000-00-00 00:00:00',0),(1774,0,0,1526,'2526','H','O',1619,'',0,'2025-10-27','0000-00-00',645,0,675,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 10:21:40','','0000-00-00 00:00:00',0),(1775,0,0,1527,'2526','H','O',1620,'',0,'2025-10-27','0000-00-00',1228,0,1269,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 10:22:36','','0000-00-00 00:00:00',0),(1776,0,0,1528,'2526','H','O',1621,'',0,'2025-10-27','0000-00-00',1229,0,1270,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 10:24:51','','0000-00-00 00:00:00',0),(1777,0,0,1520,'2526','H','O',1622,'',0,'2025-10-27','0000-00-00',1223,0,1264,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 10:30:32','','0000-00-00 00:00:00',0),(1778,0,0,1529,'2526','H','O',1623,'',0,'2025-10-27','0000-00-00',1230,0,1271,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','33729','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 10:30:44','','0000-00-00 00:00:00',0),(1779,0,0,1530,'2526','H','O',1624,'',0,'2025-10-27','0000-00-00',1231,0,1272,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','93443','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 10:32:56','','0000-00-00 00:00:00',0),(1780,0,0,1531,'2526','H','O',1625,'',0,'2025-10-27','0000-00-00',865,0,897,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 10:34:54','','0000-00-00 00:00:00',0),(1781,0,0,1532,'2526','H','O',1626,'',0,'2025-10-27','0000-00-00',1232,0,1273,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 10:36:31','','0000-00-00 00:00:00',0),(1782,0,0,1533,'2526','H','O',1627,'',0,'2025-10-27','0000-00-00',1233,0,1274,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 10:38:36','','0000-00-00 00:00:00',0),(1783,0,0,1534,'2526','H','O',1628,'',0,'2025-10-27','0000-00-00',1234,0,1275,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 10:45:55','','0000-00-00 00:00:00',0),(1784,0,0,1535,'2526','H','O',1629,'',0,'2025-10-27','0000-00-00',1235,0,1276,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 10:48:54','','0000-00-00 00:00:00',0),(1785,0,0,1537,'2526','H','O',1630,'',0,'2025-10-27','0000-00-00',1236,0,1277,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 10:50:58','','0000-00-00 00:00:00',0),(1786,0,0,1538,'2526','H','O',1631,'',0,'2025-10-27','0000-00-00',1237,0,1278,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 10:51:11','','0000-00-00 00:00:00',0),(1787,0,0,1539,'2526','H','O',1632,'',0,'2025-10-27','0000-00-00',1238,0,1279,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 10:54:10','','0000-00-00 00:00:00',0),(1788,0,0,1540,'2526','H','O',1633,'',0,'2025-10-27','0000-00-00',1239,0,1280,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','73081','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 10:54:17','','0000-00-00 00:00:00',0),(1789,0,0,1541,'2526','H','O',1634,'',0,'2025-10-27','0000-00-00',1240,0,1281,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 10:56:14','','0000-00-00 00:00:00',0),(1790,0,0,1514,'2526','H','O',1635,'',0,'2025-10-27','0000-00-00',1219,0,1260,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 1637','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 10:57:00','janvi','2025-10-27 10:58:40',0),(1791,0,0,1544,'2526','H','O',1636,'',0,'2025-10-27','0000-00-00',1242,0,1283,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 10:58:29','','0000-00-00 00:00:00',0),(1792,0,0,1514,'2526','H','O',1637,'',0,'2025-10-27','0000-00-00',1219,0,1260,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-10-27','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 1635','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 10:58:40','janvi','2025-10-27 10:59:04',0),(1793,0,0,1543,'2526','H','O',1638,'',0,'2025-10-27','0000-00-00',1241,0,1282,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 10:58:54','','0000-00-00 00:00:00',0),(1794,0,0,1514,'2526','H','O',1639,'',0,'2025-10-27','0000-00-00',1219,0,1260,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','74480','','scan     ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 10:59:53','','0000-00-00 00:00:00',0),(1795,0,0,1513,'2526','H','O',1640,'',0,'2025-10-27','0000-00-00',1218,0,1259,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','74480','','scan     ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 11:00:36','','0000-00-00 00:00:00',0),(1796,0,0,1546,'2526','H','O',1641,'',0,'2025-10-27','0000-00-00',1244,0,1285,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 11:03:01','','0000-00-00 00:00:00',0),(1797,0,0,1545,'2526','H','O',1642,'',0,'2025-10-27','0000-00-00',1243,0,1284,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','67141','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 11:03:24','','0000-00-00 00:00:00',0),(1798,0,0,1549,'2526','H','O',1643,'',0,'2025-10-27','0000-00-00',178,0,191,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 11:07:17','','0000-00-00 00:00:00',0),(1799,0,0,1550,'2526','H','O',1644,'',0,'2025-10-27','0000-00-00',709,0,740,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 11:07:54','','0000-00-00 00:00:00',0),(1800,0,0,1548,'2526','H','O',1645,'',0,'2025-10-27','0000-00-00',1246,0,1287,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','74752','','scan ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 11:08:06','','0000-00-00 00:00:00',0),(1801,0,0,1551,'2526','H','O',1646,'',0,'2025-10-27','0000-00-00',1247,0,1288,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','union','','28078','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 11:10:37','','0000-00-00 00:00:00',0),(1802,0,0,1553,'2526','H','O',1647,'',0,'2025-10-27','0000-00-00',1248,0,1289,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 11:14:33','','0000-00-00 00:00:00',0),(1803,0,0,1521,'2526','H','O',1648,'',0,'2025-10-27','0000-00-00',1224,0,1265,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI BANK','','98470','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 11:15:14','','0000-00-00 00:00:00',0),(1804,0,0,1554,'2526','H','O',1649,'',0,'2025-10-27','0000-00-00',1249,0,1290,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 11:17:55','','0000-00-00 00:00:00',0),(1805,0,0,1556,'2526','H','O',1650,'',0,'2025-10-27','0000-00-00',1250,0,1291,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 11:20:42','','0000-00-00 00:00:00',0),(1806,0,0,1558,'2526','H','O',1651,'',0,'2025-10-27','0000-00-00',721,0,752,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 11:21:51','','0000-00-00 00:00:00',0),(1807,0,0,1559,'2526','H','O',1652,'',0,'2025-10-27','0000-00-00',1251,0,1292,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 11:23:31','','0000-00-00 00:00:00',0),(1808,0,0,1560,'2526','H','O',1653,'',0,'2025-10-27','0000-00-00',1252,0,1293,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 11:25:21','','0000-00-00 00:00:00',0),(1809,0,0,1542,'2526','H','O',1654,'',0,'2025-10-27','0000-00-00',923,0,954,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 11:25:42','','0000-00-00 00:00:00',0),(1810,0,0,1562,'2526','H','O',1655,'',0,'2025-10-27','0000-00-00',486,0,510,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 11:28:01','','0000-00-00 00:00:00',0),(1811,0,0,1561,'2526','H','O',1656,'',0,'2025-10-27','0000-00-00',1253,0,1294,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 11:28:02','','0000-00-00 00:00:00',0),(1812,0,0,1549,'2526','H','O',1657,'',0,'2025-10-27','0000-00-00',178,0,191,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 11:30:05','','0000-00-00 00:00:00',0),(1813,0,0,1564,'2526','H','O',1658,'',0,'2025-10-27','0000-00-00',1254,0,455,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 11:32:53','','0000-00-00 00:00:00',0),(1814,0,0,1565,'2526','H','O',1659,'',0,'2025-10-27','0000-00-00',1255,0,1296,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 11:35:38','','0000-00-00 00:00:00',0),(1815,0,0,1566,'2526','H','O',1660,'',0,'2025-10-27','0000-00-00',47,0,53,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 11:36:38','','0000-00-00 00:00:00',0),(1816,0,0,1568,'2526','H','O',1661,'',0,'2025-10-27','0000-00-00',1257,0,1298,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 11:38:57','','0000-00-00 00:00:00',0),(1817,0,0,1567,'2526','H','O',1662,'',0,'2025-10-27','0000-00-00',1256,0,1297,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 11:39:43','','0000-00-00 00:00:00',0),(1818,0,0,1548,'2526','H','O',1663,'',0,'2025-10-27','0000-00-00',1246,0,1287,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','73564','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 11:39:58','','0000-00-00 00:00:00',0),(1819,0,0,1526,'2526','H','O',1664,'',0,'2025-10-27','0000-00-00',645,0,675,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 11:40:29','','0000-00-00 00:00:00',0),(1820,0,0,1569,'2526','H','O',1665,'',0,'2025-10-27','0000-00-00',21,0,22,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 11:41:52','','0000-00-00 00:00:00',0),(1821,0,0,1570,'2526','H','O',1666,'',0,'2025-10-27','0000-00-00',1258,0,1299,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 11:42:03','','0000-00-00 00:00:00',0),(1822,0,0,1571,'2526','H','O',1667,'',0,'2025-10-27','0000-00-00',1259,0,1300,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 11:42:12','','0000-00-00 00:00:00',0),(1823,0,0,1527,'2526','H','O',1668,'',0,'2025-10-27','0000-00-00',1228,0,1269,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 11:45:41','','0000-00-00 00:00:00',0),(1824,0,0,1574,'2526','H','O',1669,'',0,'2025-10-27','0000-00-00',1260,0,1301,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 11:49:04','','0000-00-00 00:00:00',0),(1825,0,0,1575,'2526','H','O',1670,'',0,'2025-10-27','0000-00-00',489,0,514,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 11:49:29','','0000-00-00 00:00:00',0),(1826,0,0,1577,'2526','H','O',1671,'',0,'2025-10-27','0000-00-00',1262,0,1303,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 11:51:22','','0000-00-00 00:00:00',0),(1827,0,0,1578,'2526','H','O',1672,'',0,'2025-10-27','0000-00-00',1263,0,1304,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','HO 1687','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 11:51:26','manshi','2025-10-27 12:19:52',0),(1828,0,0,1551,'2526','H','O',1673,'',0,'2025-10-27','0000-00-00',1247,0,1288,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','union bank','','39942','','scan ',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 11:51:31','','0000-00-00 00:00:00',0),(1829,0,0,1576,'2526','H','O',1674,'',0,'2025-10-27','0000-00-00',1261,0,1302,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','IDFC','','32003','','scan     ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 11:51:54','','0000-00-00 00:00:00',0),(1830,0,0,1579,'2526','H','O',1675,'',0,'2025-10-27','0000-00-00',1264,0,274,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 11:53:19','','0000-00-00 00:00:00',0),(1831,0,0,1581,'2526','H','O',1676,'',0,'2025-10-27','0000-00-00',166,0,179,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 11:55:10','','0000-00-00 00:00:00',0),(1832,0,0,1505,'2526','H','D',81,'',0,'2025-10-27','0000-00-00',0,95,1254,0,'D27','',0,8100.00,0.00,0.00,8100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',1100.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-27 11:59:14','riya','2025-10-27 12:39:45',0),(1833,0,0,1583,'2526','H','O',1677,'',0,'2025-10-27','0000-00-00',1267,0,1306,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 12:02:10','','0000-00-00 00:00:00',0),(1834,0,0,1582,'2526','H','O',1678,'',0,'2025-10-27','0000-00-00',1266,0,1305,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','CRD','SBI BANK','','3182','','CARD',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 12:04:55','','0000-00-00 00:00:00',0),(1835,0,0,1540,'2526','H','O',1679,'',0,'2025-10-27','0000-00-00',1239,0,1280,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','46013','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 12:09:42','','0000-00-00 00:00:00',0),(1836,0,0,1585,'2526','H','O',1680,'',0,'2025-10-27','0000-00-00',422,0,444,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 12:10:06','','0000-00-00 00:00:00',0),(1837,0,0,1584,'2526','H','O',1681,'',0,'2025-10-27','0000-00-00',1268,0,1307,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 1703','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 12:10:36','janvi','2025-10-27 12:59:03',0),(1838,0,0,1586,'2526','H','O',1682,'',0,'2025-10-27','0000-00-00',1269,0,1308,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-27 12:10:40','','0000-00-00 00:00:00',0),(1839,0,0,1588,'2526','H','O',1683,'',0,'2025-10-27','0000-00-00',430,0,453,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-27 12:14:07','','0000-00-00 00:00:00',0),(1840,0,0,1587,'2526','H','O',1684,'',0,'2025-10-27','0000-00-00',1270,0,1309,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','78350','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 12:14:12','','0000-00-00 00:00:00',0),(1841,0,0,1589,'2526','H','O',1685,'',0,'2025-10-27','0000-00-00',580,0,611,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','43285','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 12:17:54','','0000-00-00 00:00:00',0),(1842,0,0,1523,'2526','H','O',1686,'',0,'2025-10-27','0000-00-00',1152,0,1192,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 12:18:12','','0000-00-00 00:00:00',0),(1843,0,0,1578,'2526','H','O',1687,'',0,'2025-10-27','0000-00-00',1263,0,1304,0,'D03','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-10-27','Y','N','N','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','','HO 1672','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 12:19:52','manshi','2025-10-27 12:20:12',0),(1844,0,0,1590,'2526','H','O',1688,'',0,'2025-10-27','0000-00-00',1271,0,1310,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 12:22:59','','0000-00-00 00:00:00',0),(1845,0,0,1529,'2526','H','O',1689,'',0,'2025-10-27','0000-00-00',1230,0,1271,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 12:23:37','','0000-00-00 00:00:00',0),(1846,0,0,1533,'2526','H','O',1690,'',0,'2025-10-27','0000-00-00',1233,0,1274,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI BANK','','92370','','scan ',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 12:28:11','','0000-00-00 00:00:00',0),(1847,0,0,1591,'2526','H','O',1691,'',0,'2025-10-27','0000-00-00',1272,0,1311,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 12:32:28','','0000-00-00 00:00:00',0),(1848,0,0,1521,'2526','H','O',1692,'',0,'2025-10-27','0000-00-00',1224,0,1265,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI BANK','','94743','','SCAN',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 12:35:26','','0000-00-00 00:00:00',0),(1849,0,0,1592,'2526','H','O',1693,'',0,'2025-10-27','0000-00-00',1273,0,1312,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-27 12:37:36','','0000-00-00 00:00:00',0),(1850,0,0,1541,'2526','H','O',1694,'',0,'2025-10-27','0000-00-00',1240,0,1281,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 12:39:38','','0000-00-00 00:00:00',0),(1851,0,0,1505,'2526','H','I',76,'',0,'2025-10-27','0000-00-00',0,95,1254,0,'D27','',0,8100.00,0.00,0.00,8100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-8100,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-27 12:42:19','','0000-00-00 00:00:00',0),(1852,0,0,1586,'2526','H','O',1695,'',0,'2025-10-27','0000-00-00',1269,0,1308,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 12:47:37','','0000-00-00 00:00:00',0),(1853,0,0,1593,'2526','H','O',1696,'',0,'2025-10-27','0000-00-00',951,0,982,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-27 12:49:58','','0000-00-00 00:00:00',0),(1854,0,0,1594,'2526','H','O',1697,'',0,'2025-10-27','0000-00-00',1176,0,1215,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 1701','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 12:50:08','janvi','2025-10-27 12:55:57',0),(1855,0,0,1596,'2526','H','O',1698,'',0,'2025-10-27','0000-00-00',150,0,161,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-27 12:52:48','','0000-00-00 00:00:00',0),(1856,0,0,1595,'2526','H','O',1699,'',0,'2025-10-27','0000-00-00',1274,0,1313,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','47716','','scan     ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 12:53:05','','0000-00-00 00:00:00',0),(1857,0,0,1597,'2526','H','O',1700,'',0,'2025-10-27','0000-00-00',1275,0,1314,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 12:54:27','','0000-00-00 00:00:00',0),(1858,0,0,1594,'2526','H','O',1701,'',0,'2025-10-27','0000-00-00',1176,0,1215,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-10-27','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 1697','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 12:55:57','janvi','2025-10-27 12:57:37',0),(1859,0,0,1577,'2526','H','O',1702,'',0,'2025-10-27','0000-00-00',1262,0,1303,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-27 12:57:42','','0000-00-00 00:00:00',0),(1860,0,0,1584,'2526','H','O',1703,'',0,'2025-10-27','0000-00-00',1268,0,1307,0,'D02','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-27','Y','N','N','','N',0.00,'','Y','FOC','','HO 1681','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 12:59:03','janvi','2025-10-27 12:59:18',0),(1861,0,0,1587,'2526','H','O',1704,'',0,'2025-10-27','0000-00-00',1270,0,1309,0,'D06','',0,6000.00,0.00,0.00,6000.00,1500.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici bank','','34199','','scan ',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 12:59:44','','0000-00-00 00:00:00',0),(1862,0,0,1599,'2526','H','O',1705,'',0,'2025-10-27','0000-00-00',1276,0,1315,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 13:08:33','','0000-00-00 00:00:00',0),(1863,0,0,1600,'2526','H','O',1706,'',0,'2025-10-27','0000-00-00',1277,0,1316,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 13:09:19','','0000-00-00 00:00:00',0),(1864,0,0,1553,'2526','H','O',1707,'',0,'2025-10-27','0000-00-00',1248,0,1289,0,'D06','',0,1600.00,0.00,0.00,1600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 13:13:42','','0000-00-00 00:00:00',0),(1865,0,0,1504,'2526','H','D',82,'',0,'2025-10-27','0000-00-00',0,94,1253,0,'D27','',0,19300.00,0.00,0.00,19300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',4300.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-27 13:17:09','riya','2025-10-27 13:53:07',0),(1866,0,0,1602,'2526','H','O',1708,'',0,'2025-10-27','0000-00-00',1278,0,1317,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 13:21:47','','0000-00-00 00:00:00',0),(1867,0,0,1603,'2526','H','O',1709,'',0,'2025-10-27','0000-00-00',1279,0,1318,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-27 13:24:29','','0000-00-00 00:00:00',0),(1868,0,0,1604,'2526','H','O',1710,'',0,'2025-10-27','0000-00-00',165,0,178,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 13:51:42','','0000-00-00 00:00:00',0),(1869,0,0,1605,'2526','H','O',1711,'',0,'2025-10-27','0000-00-00',1280,0,1319,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','27031','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 13:55:55','','0000-00-00 00:00:00',0),(1870,0,0,1504,'2526','H','I',77,'',1,'2025-10-27','0000-00-00',0,94,1253,0,'D27','',0,17700.00,0.00,0.00,17700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','CASH',-1600.00,-19300,0,'2025-10-27','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-27 13:59:00','riya','2025-10-27 14:23:12',0),(1871,0,0,1575,'2526','H','O',1712,'',0,'2025-10-27','0000-00-00',489,0,514,0,'D14','',0,7000.00,0.00,0.00,7000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOI BANK','','34946','','scan',7000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-27 14:13:12','','0000-00-00 00:00:00',0),(1872,0,0,1443,'2526','H','D',83,'',0,'2025-10-28','0000-00-00',1149,92,1189,0,'D02','',0,15950.00,0.00,0.00,15950.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',15950.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-27 15:21:49','riya','2025-10-28 17:20:21',0),(1873,0,0,1607,'2526','H','O',1713,'',0,'2025-10-27','0000-00-00',1282,0,1321,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-27 16:25:14','','0000-00-00 00:00:00',0),(1874,0,0,1606,'2526','H','O',1714,'',0,'2025-10-27','0000-00-00',1281,0,1320,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-27 16:25:37','','0000-00-00 00:00:00',0),(1875,0,0,1608,'2526','H','O',1715,'',0,'2025-10-27','0000-00-00',1283,0,1322,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 16:35:56','','0000-00-00 00:00:00',0),(1876,0,0,1519,'2526','H','D',84,'',0,'2025-10-27','0000-00-00',1133,97,1173,0,'D02','',0,20000.00,0.00,0.00,20000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-27 16:39:08','riya','2025-10-27 16:44:57',0),(1877,0,0,1609,'2526','H','O',1716,'',0,'2025-10-27','0000-00-00',982,0,1015,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','49114','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 16:43:32','','0000-00-00 00:00:00',0),(1878,0,0,1519,'2526','H','I',78,'',0,'2025-10-27','0000-00-00',1133,97,1173,0,'D02','',0,20000.00,0.00,0.00,20000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-27 16:45:07','','0000-00-00 00:00:00',0),(1879,0,0,1610,'2526','H','O',1717,'',0,'2025-10-27','0000-00-00',1284,0,1323,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 16:46:41','','0000-00-00 00:00:00',0),(1880,0,0,1606,'2526','H','O',1718,'',0,'2025-10-27','0000-00-00',1281,0,1320,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 17:12:58','','0000-00-00 00:00:00',0),(1881,0,0,1611,'2526','H','O',1719,'',0,'2025-10-27','0000-00-00',1278,0,1317,0,'D06','',0,3600.00,0.00,0.00,3600.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 17:16:27','','0000-00-00 00:00:00',0),(1882,0,0,1612,'2526','H','O',1720,'',0,'2025-10-27','0000-00-00',79,0,90,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 17:19:32','','0000-00-00 00:00:00',0),(1883,0,0,1613,'2526','H','O',1721,'',0,'2025-10-27','0000-00-00',1285,0,1324,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 17:21:24','','0000-00-00 00:00:00',0),(1884,0,0,1614,'2526','H','O',1722,'',0,'2025-10-27','0000-00-00',1286,0,1325,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 17:23:00','','0000-00-00 00:00:00',0),(1885,0,0,1608,'2526','H','O',1723,'',0,'2025-10-27','0000-00-00',1283,0,1322,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 17:25:05','','0000-00-00 00:00:00',0),(1886,0,0,1615,'2526','H','O',1724,'',0,'2025-10-27','0000-00-00',303,0,319,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 17:27:50','','0000-00-00 00:00:00',0),(1887,0,0,1617,'2526','H','O',1725,'',0,'2025-10-27','0000-00-00',1287,0,1326,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 17:34:34','','0000-00-00 00:00:00',0),(1888,0,0,1619,'2526','H','O',1726,'',0,'2025-10-27','0000-00-00',1288,0,1327,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-27 17:42:57','','0000-00-00 00:00:00',0),(1889,0,0,1620,'2526','H','O',1727,'',0,'2025-10-27','0000-00-00',1289,0,1328,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 17:44:27','','0000-00-00 00:00:00',0),(1890,0,0,1621,'2526','H','O',1728,'',0,'2025-10-27','0000-00-00',1290,0,1329,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 17:47:39','','0000-00-00 00:00:00',0),(1891,0,0,1622,'2526','H','O',1729,'',0,'2025-10-27','0000-00-00',1291,0,1330,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 17:47:48','','0000-00-00 00:00:00',0),(1892,0,0,1613,'2526','H','O',1730,'',0,'2025-10-27','0000-00-00',1285,0,1324,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 17:52:05','','0000-00-00 00:00:00',0),(1893,0,0,1623,'2526','H','O',1731,'',0,'2025-10-27','0000-00-00',451,0,477,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','pnb','','24315','','scan     ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 17:52:14','','0000-00-00 00:00:00',0),(1894,0,0,1624,'2526','H','O',1732,'',0,'2025-10-27','0000-00-00',1292,0,1331,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 17:57:46','','0000-00-00 00:00:00',0),(1895,0,0,1625,'2526','H','O',1733,'',0,'2025-10-27','0000-00-00',1103,0,1141,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 17:58:01','','0000-00-00 00:00:00',0),(1896,0,0,1626,'2526','H','O',1734,'',0,'2025-10-27','0000-00-00',1293,0,1332,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 18:01:02','','0000-00-00 00:00:00',0),(1897,0,0,1616,'2526','H','O',1735,'',0,'2025-10-27','0000-00-00',1132,0,1172,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 18:01:43','','0000-00-00 00:00:00',0),(1898,0,0,1627,'2526','H','O',1736,'',0,'2025-10-27','0000-00-00',901,0,932,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 18:02:30','','0000-00-00 00:00:00',0),(1899,0,0,1617,'2526','H','O',1737,'',0,'2025-10-27','0000-00-00',1287,0,1326,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 18:05:56','','0000-00-00 00:00:00',0),(1900,0,0,1628,'2526','H','O',1738,'',0,'2025-10-27','0000-00-00',1294,0,1333,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','43713','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 18:10:23','','0000-00-00 00:00:00',0),(1901,0,0,1629,'2526','H','O',1739,'',0,'2025-10-27','0000-00-00',1295,0,1334,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','48367','','scan ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 18:10:45','','0000-00-00 00:00:00',0),(1902,0,0,1437,'2526','H','D',85,'',0,'2025-10-27','0000-00-00',1134,90,1174,0,'D27','',0,20600.00,0.00,0.00,20600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6000,0,'0000-00-00','','N','N','F','N',14600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-27 18:11:45','vishal','2025-10-27 18:33:00',0),(1903,0,0,1618,'2526','H','O',1740,'',0,'2025-10-27','0000-00-00',1004,0,1036,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','boi','','65885','','scan     ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 18:11:48','','0000-00-00 00:00:00',0),(1904,0,0,1630,'2526','H','O',1741,'',0,'2025-10-27','0000-00-00',1296,0,1335,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 18:21:10','','0000-00-00 00:00:00',0),(1905,0,0,1631,'2526','H','O',1742,'',0,'2025-10-27','0000-00-00',1297,0,1336,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','04102','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 18:23:41','','0000-00-00 00:00:00',0),(1906,0,0,1632,'2526','H','O',1743,'',0,'2025-10-27','0000-00-00',1298,0,1337,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 18:24:23','','0000-00-00 00:00:00',0),(1907,0,0,1633,'2526','H','O',1744,'',0,'2025-10-27','0000-00-00',1299,0,1338,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 18:28:24','','0000-00-00 00:00:00',0),(1908,0,0,1622,'2526','H','O',1745,'',0,'2025-10-27','0000-00-00',1291,0,1330,0,'D06','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 18:29:48','','0000-00-00 00:00:00',0),(1909,0,0,1634,'2526','H','O',1746,'',0,'2025-10-27','0000-00-00',1300,0,1339,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 18:30:00','','0000-00-00 00:00:00',0),(1910,0,0,1636,'2526','H','O',1747,'',0,'2025-10-27','0000-00-00',1302,0,1341,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 18:33:20','','0000-00-00 00:00:00',0),(1911,0,0,1638,'2526','H','O',1748,'',0,'2025-10-27','0000-00-00',1303,0,1342,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 18:37:18','','0000-00-00 00:00:00',0),(1912,0,0,1639,'2526','H','O',1749,'',0,'2025-10-27','0000-00-00',1304,0,1343,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 18:37:34','','0000-00-00 00:00:00',0),(1913,0,0,1641,'2526','H','O',1750,'',0,'2025-10-27','0000-00-00',1306,0,1345,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 18:40:49','','0000-00-00 00:00:00',0),(1914,0,0,1642,'2526','H','O',1751,'',0,'2025-10-27','0000-00-00',1060,0,1094,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 18:41:16','','0000-00-00 00:00:00',0),(1915,0,0,1640,'2526','H','O',1752,'',0,'2025-10-27','0000-00-00',1305,0,1344,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 18:41:17','','0000-00-00 00:00:00',0),(1916,0,0,1637,'2526','H','O',1753,'',0,'2025-10-27','0000-00-00',291,0,307,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 18:42:01','','0000-00-00 00:00:00',0),(1917,0,0,1636,'2526','H','O',1754,'',0,'2025-10-27','0000-00-00',1302,0,1341,0,'D03','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 18:44:43','','0000-00-00 00:00:00',0),(1918,0,0,1643,'2526','H','O',1755,'',0,'2025-10-27','0000-00-00',1307,0,1346,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-27 18:45:10','','0000-00-00 00:00:00',0),(1919,0,0,1437,'2526','H','I',79,'',0,'2025-10-27','0000-00-00',1134,90,1174,0,'D27','',0,20600.00,0.00,0.00,20600.00,1100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-19500,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(1920,0,0,1644,'2526','H','O',1756,'',0,'2025-10-27','0000-00-00',1308,0,1347,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','66163','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 18:48:29','','0000-00-00 00:00:00',0),(1921,0,0,1646,'2526','H','O',1757,'',0,'2025-10-27','0000-00-00',1310,0,1349,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 18:52:12','','0000-00-00 00:00:00',0),(1922,0,0,1645,'2526','H','O',1758,'',0,'2025-10-27','0000-00-00',1309,0,1348,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 18:52:26','','0000-00-00 00:00:00',0),(1923,0,0,1647,'2526','H','O',1759,'',0,'2025-10-27','0000-00-00',1311,0,1350,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-27 18:52:49','','0000-00-00 00:00:00',0),(1924,0,0,1635,'2526','H','O',1760,'',0,'2025-10-27','0000-00-00',1301,0,1340,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','65104','','scan  ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 18:55:00','','0000-00-00 00:00:00',0),(1925,0,0,1648,'2526','H','O',1761,'',0,'2025-10-27','0000-00-00',435,0,458,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','13583','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-27 18:55:43','','0000-00-00 00:00:00',0),(1926,0,0,1649,'2526','H','O',1762,'',0,'2025-10-27','0000-00-00',1312,0,1351,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 18:57:54','','0000-00-00 00:00:00',0),(1927,0,0,1651,'2526','H','O',1763,'',0,'2025-10-27','0000-00-00',1314,0,1353,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 19:05:39','','0000-00-00 00:00:00',0),(1928,0,0,1650,'2526','H','O',1764,'',0,'2025-10-27','0000-00-00',1313,0,1352,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','23279','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-27 19:08:38','','0000-00-00 00:00:00',0),(1929,0,0,1654,'2526','H','O',1765,'',0,'2025-10-27','0000-00-00',1315,0,1354,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','300LESS','HO 1777','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 19:14:13','reception','2025-10-27 20:46:12',0),(1930,0,0,1641,'2526','H','O',1766,'',0,'2025-10-27','0000-00-00',1306,0,1345,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 19:19:06','','0000-00-00 00:00:00',0),(1931,0,0,1650,'2526','H','O',1767,'',0,'2025-10-27','0000-00-00',1313,0,1352,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-27 19:20:38','','0000-00-00 00:00:00',0),(1932,0,0,1655,'2526','H','O',1768,'',0,'2025-10-27','0000-00-00',1316,0,1355,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 19:20:45','','0000-00-00 00:00:00',0),(1933,0,0,1656,'2526','H','O',1769,'',0,'2025-10-27','0000-00-00',1317,0,1356,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','18270','','scan     ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-27 19:32:27','','0000-00-00 00:00:00',0),(1934,0,0,168,'2526','H','D',86,'',0,'2025-10-27','0000-00-00',0,14,165,0,'D02','',0,6200.00,0.00,0.00,6200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'2ND TIME SAME ADMISION BY MISTAKE BY RIYA SO CANCEL THIS',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','D','N',6200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-27 19:42:54','','0000-00-00 00:00:00',0),(1935,0,0,1657,'2526','H','O',1770,'',0,'2025-10-27','0000-00-00',1318,0,1357,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','25014','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-27 19:44:16','','0000-00-00 00:00:00',0),(1936,0,0,1658,'2526','H','O',1771,'',0,'2025-10-27','0000-00-00',1319,0,1358,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','25014','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-27 19:46:12','','0000-00-00 00:00:00',0),(1937,0,0,1659,'2526','H','O',1772,'',0,'2025-10-27','0000-00-00',1320,0,1359,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','82352','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-27 19:49:58','','0000-00-00 00:00:00',0),(1938,0,0,1661,'2526','H','O',1773,'',0,'2025-10-27','0000-00-00',1321,0,1361,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-27 20:10:36','','0000-00-00 00:00:00',0),(1939,0,0,1652,'2526','H','O',1774,'',0,'2025-10-27','0000-00-00',442,0,468,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-27 20:22:32','','0000-00-00 00:00:00',0),(1940,0,0,1662,'2526','H','O',1775,'',0,'2025-10-27','0000-00-00',1322,0,1362,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 20:41:10','','0000-00-00 00:00:00',0),(1941,0,0,1659,'2526','H','O',1776,'',0,'2025-10-27','0000-00-00',1320,0,1359,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 20:45:42','','0000-00-00 00:00:00',0),(1942,0,0,1654,'2526','H','O',1777,'',0,'2025-10-27','0000-00-00',1315,0,1354,0,'D06','',0,-900.00,0.00,0.00,-900.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-900.00,0,0,'2025-10-27','Y','N','N','','N',0.00,'','Y','300LESS','','HO 1765','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 20:46:12','reception','2025-10-27 20:47:17',0),(1943,0,0,1654,'2526','H','O',1778,'',0,'2025-10-27','0000-00-00',1315,0,1354,0,'D06','',0,900.00,0.00,0.00,900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-27 20:47:01','','0000-00-00 00:00:00',0),(1944,0,0,1506,'2526','H','D',87,'',0,'2025-10-27','0000-00-00',184,96,197,0,'D27','',0,11500.00,0.00,0.00,11500.00,1200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',3300.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-27 21:19:44','vishal','2025-10-27 21:25:58',0),(1945,0,0,1506,'2526','H','I',80,'',0,'2025-10-27','0000-00-00',184,96,197,0,'D27','',0,11500.00,0.00,0.00,11500.00,1200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10300,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-27 21:27:48','','0000-00-00 00:00:00',0),(1946,0,0,1663,'2526','H','O',1779,'',0,'2025-10-28','0000-00-00',1323,0,1363,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-28 09:09:15','','0000-00-00 00:00:00',0),(1947,0,0,1664,'2526','H','O',1780,'',0,'2025-10-28','0000-00-00',1324,0,1364,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 09:30:09','','0000-00-00 00:00:00',0),(1948,0,0,1666,'2526','H','O',1781,'',0,'2025-10-28','0000-00-00',1326,0,1366,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 09:45:12','','0000-00-00 00:00:00',0),(1949,0,0,1667,'2526','H','O',1782,'',0,'2025-10-28','0000-00-00',1327,0,1367,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 09:50:22','','0000-00-00 00:00:00',0),(1950,0,0,1668,'2526','H','O',1783,'',0,'2025-10-28','0000-00-00',1328,0,1368,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 10:05:34','','0000-00-00 00:00:00',0),(1951,0,0,1665,'2526','H','O',1784,'',0,'2025-10-28','0000-00-00',1325,0,1365,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 10:06:22','','0000-00-00 00:00:00',0),(1952,0,0,1669,'2526','H','O',1785,'',0,'2025-10-28','0000-00-00',1329,0,1369,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 10:08:30','','0000-00-00 00:00:00',0),(1953,0,0,1670,'2526','H','O',1786,'',0,'2025-10-28','0000-00-00',1330,0,1370,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 10:09:27','','0000-00-00 00:00:00',0),(1954,0,0,1671,'2526','H','O',1787,'',0,'2025-10-28','0000-00-00',1331,0,1371,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 10:22:02','','0000-00-00 00:00:00',0),(1955,0,0,1672,'2526','H','O',1788,'',0,'2025-10-28','0000-00-00',1332,0,1372,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 10:27:15','','0000-00-00 00:00:00',0),(1956,0,0,1673,'2526','H','O',1789,'',0,'2025-10-28','0000-00-00',1333,0,1373,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 10:30:57','','0000-00-00 00:00:00',0),(1957,0,0,1674,'2526','H','O',1790,'',0,'2025-10-28','0000-00-00',1334,0,1374,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 10:44:36','','0000-00-00 00:00:00',0),(1958,0,0,1675,'2526','H','O',1791,'',0,'2025-10-28','0000-00-00',1335,0,1375,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 10:48:30','','0000-00-00 00:00:00',0),(1959,0,0,1676,'2526','H','O',1792,'',0,'2025-10-28','0000-00-00',1336,0,1376,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 10:58:11','','0000-00-00 00:00:00',0),(1960,0,0,1677,'2526','H','O',1793,'',0,'2025-10-28','0000-00-00',1337,0,1377,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 10:58:31','','0000-00-00 00:00:00',0),(1961,0,0,1667,'2526','H','O',1794,'',0,'2025-10-28','0000-00-00',1327,0,1367,0,'D06','',0,6900.00,0.00,0.00,6900.00,900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 10:59:04','','0000-00-00 00:00:00',0),(1962,0,0,1678,'2526','H','O',1795,'',0,'2025-10-28','0000-00-00',43,0,47,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 11:00:32','','0000-00-00 00:00:00',0),(1963,0,0,1679,'2526','H','O',1796,'',0,'2025-10-28','0000-00-00',479,0,505,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-28 11:01:28','','0000-00-00 00:00:00',0),(1964,0,0,1680,'2526','H','O',1797,'',0,'2025-10-28','0000-00-00',1338,0,1378,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 11:02:15','','0000-00-00 00:00:00',0),(1965,0,0,1681,'2526','H','O',1798,'',0,'2025-10-28','0000-00-00',1339,0,1379,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 11:05:56','','0000-00-00 00:00:00',0),(1966,0,0,1672,'2526','H','O',1799,'',0,'2025-10-28','0000-00-00',1332,0,1372,0,'D02','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','92605','','scan     ',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 11:07:15','','0000-00-00 00:00:00',0),(1967,0,0,1666,'2526','H','O',1800,'',0,'2025-10-28','0000-00-00',1326,0,1366,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 11:07:22','','0000-00-00 00:00:00',0),(1968,0,0,1683,'2526','H','O',1801,'',0,'2025-10-28','0000-00-00',521,0,547,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 11:10:54','','0000-00-00 00:00:00',0),(1969,0,0,1684,'2526','H','O',1802,'',0,'2025-10-28','0000-00-00',1340,0,1380,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 11:12:10','','0000-00-00 00:00:00',0),(1970,0,0,1685,'2526','H','O',1803,'',0,'2025-10-28','0000-00-00',1341,0,1381,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-28 11:16:12','','0000-00-00 00:00:00',0),(1971,0,0,1679,'2526','H','O',1804,'',0,'2025-10-28','0000-00-00',479,0,505,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-28 11:23:33','','0000-00-00 00:00:00',0),(1972,0,0,1689,'2526','H','O',1805,'',0,'2025-10-28','0000-00-00',1344,0,1384,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 11:26:56','','0000-00-00 00:00:00',0),(1973,0,0,1688,'2526','H','O',1806,'',0,'2025-10-28','0000-00-00',1343,0,1383,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 11:27:10','','0000-00-00 00:00:00',0),(1974,0,0,1675,'2526','H','O',1807,'',0,'2025-10-28','0000-00-00',1335,0,1375,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 11:27:18','','0000-00-00 00:00:00',0),(1975,0,0,1685,'2526','H','O',1808,'',0,'2025-10-28','0000-00-00',1341,0,1381,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-28 11:29:23','','0000-00-00 00:00:00',0),(1976,0,0,1690,'2526','H','O',1809,'',0,'2025-10-28','0000-00-00',1345,0,1385,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 11:29:40','','0000-00-00 00:00:00',0),(1977,0,0,1691,'2526','H','O',1810,'',0,'2025-10-28','0000-00-00',1346,0,1386,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 11:30:26','','0000-00-00 00:00:00',0),(1978,0,0,1692,'2526','H','O',1811,'',0,'2025-10-28','0000-00-00',1347,0,1387,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 11:31:55','','0000-00-00 00:00:00',0),(1979,0,0,1693,'2526','H','O',1812,'',0,'2025-10-28','0000-00-00',1348,0,1388,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 11:32:17','','0000-00-00 00:00:00',0),(1980,0,0,1694,'2526','H','O',1813,'',0,'2025-10-28','0000-00-00',1162,0,1201,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 11:33:08','','0000-00-00 00:00:00',0),(1981,0,0,1695,'2526','H','O',1814,'',0,'2025-10-28','0000-00-00',1349,0,1389,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 11:36:15','','0000-00-00 00:00:00',0),(1982,0,0,1696,'2526','H','O',1815,'',0,'2025-10-28','0000-00-00',1350,0,1390,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 11:38:26','','0000-00-00 00:00:00',0),(1983,0,0,1697,'2526','H','O',1816,'',0,'2025-10-28','0000-00-00',1351,0,1391,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 11:40:29','','0000-00-00 00:00:00',0),(1984,0,0,1293,'2526','H','D',88,'',0,'2025-10-28','0000-00-00',0,78,1103,0,'D27','',0,74100.00,0.00,0.00,74100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-60000,0,'0000-00-00','','N','N','F','N',14100.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-28 11:43:32','riya','2025-10-28 12:54:41',0),(1985,0,0,1698,'2526','H','O',1817,'',0,'2025-10-28','0000-00-00',1352,0,1392,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','83438','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 11:43:55','','0000-00-00 00:00:00',0),(1986,0,0,1699,'2526','H','O',1818,'',0,'2025-10-28','0000-00-00',1353,0,1393,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 11:51:18','','0000-00-00 00:00:00',0),(1987,0,0,1701,'2526','H','O',1819,'',0,'2025-10-28','0000-00-00',1354,0,1394,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 11:51:36','','0000-00-00 00:00:00',0),(1988,0,0,1702,'2526','H','O',1820,'',0,'2025-10-28','0000-00-00',1355,0,1395,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 11:54:03','','0000-00-00 00:00:00',0),(1989,0,0,1693,'2526','H','O',1821,'',0,'2025-10-28','0000-00-00',1348,0,1388,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 11:55:16','','0000-00-00 00:00:00',0),(1990,0,0,1703,'2526','H','O',1822,'',0,'2025-10-28','0000-00-00',1356,0,1396,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 11:59:23','','0000-00-00 00:00:00',0),(1991,0,0,1677,'2526','H','O',1823,'',0,'2025-10-28','0000-00-00',1337,0,1377,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 12:00:20','','0000-00-00 00:00:00',0),(1992,0,0,1704,'2526','H','O',1824,'',0,'2025-10-28','0000-00-00',594,0,624,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 12:05:38','','0000-00-00 00:00:00',0),(1993,0,0,1705,'2526','H','O',1825,'',0,'2025-10-28','0000-00-00',714,0,745,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 12:06:22','','0000-00-00 00:00:00',0),(1994,0,0,1706,'2526','H','O',1826,'',0,'2025-10-28','0000-00-00',1357,0,1397,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 12:14:35','','0000-00-00 00:00:00',0),(1995,0,0,1707,'2526','H','O',1827,'',0,'2025-10-28','0000-00-00',1358,0,1398,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 12:18:16','','0000-00-00 00:00:00',0),(1996,0,0,1708,'2526','H','O',1828,'',0,'2025-10-28','0000-00-00',1359,0,1399,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-28 12:22:19','','0000-00-00 00:00:00',0),(1997,0,0,1709,'2526','H','O',1829,'',0,'2025-10-28','0000-00-00',1360,0,1400,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 12:26:40','','0000-00-00 00:00:00',0),(1998,0,0,1710,'2526','H','O',1830,'',0,'2025-10-28','0000-00-00',1361,0,1401,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 12:29:01','','0000-00-00 00:00:00',0),(1999,0,0,1712,'2526','H','O',1831,'',0,'2025-10-28','0000-00-00',1362,0,1402,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 12:32:02','','0000-00-00 00:00:00',0),(2000,0,0,1702,'2526','H','O',1832,'',0,'2025-10-28','0000-00-00',1355,0,1395,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 12:33:21','','0000-00-00 00:00:00',0),(2001,0,0,1713,'2526','H','O',1833,'',0,'2025-10-28','0000-00-00',1363,0,1403,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 12:33:37','','0000-00-00 00:00:00',0),(2002,0,0,1699,'2526','H','O',1834,'',0,'2025-10-28','0000-00-00',1353,0,1393,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 12:34:21','','0000-00-00 00:00:00',0),(2003,0,0,1708,'2526','H','O',1835,'',0,'2025-10-28','0000-00-00',1359,0,1399,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-28 12:35:29','','0000-00-00 00:00:00',0),(2004,0,0,1714,'2526','H','O',1836,'',0,'2025-10-28','0000-00-00',1364,0,1404,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 12:36:12','','0000-00-00 00:00:00',0),(2005,0,0,1713,'2526','H','O',1837,'',0,'2025-10-28','0000-00-00',1363,0,1403,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 12:40:43','','0000-00-00 00:00:00',0),(2006,0,0,1703,'2526','H','O',1838,'',0,'2025-10-28','0000-00-00',1356,0,1396,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 12:40:48','','0000-00-00 00:00:00',0),(2007,0,0,1715,'2526','H','O',1839,'',0,'2025-10-28','0000-00-00',1365,0,1405,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','01366','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 12:43:25','','0000-00-00 00:00:00',0),(2008,0,0,1716,'2526','H','O',1840,'',0,'2025-10-28','0000-00-00',191,0,204,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 12:44:45','','0000-00-00 00:00:00',0),(2009,0,0,1704,'2526','H','O',1841,'',0,'2025-10-28','0000-00-00',594,0,624,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 12:47:57','','0000-00-00 00:00:00',0),(2010,0,0,1717,'2526','H','O',1842,'',0,'2025-10-28','0000-00-00',1366,0,1406,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','61372','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 12:53:45','','0000-00-00 00:00:00',0),(2011,0,0,1293,'2526','H','I',81,'',1,'2025-10-28','0000-00-00',0,78,1103,0,'D27','',0,74100.00,0.00,0.00,74100.00,4100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-70000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-28 12:56:43','riya','2025-10-28 16:55:16',0),(2012,0,0,1687,'2526','H','O',1843,'',0,'2025-10-28','0000-00-00',1203,0,1242,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 13:01:33','','0000-00-00 00:00:00',0),(2013,0,0,1718,'2526','H','O',1844,'',0,'2025-10-28','0000-00-00',221,0,234,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','09551','','scan',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 13:01:44','','0000-00-00 00:00:00',0),(2014,0,0,1719,'2526','H','O',1845,'',0,'2025-10-28','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 13:03:28','','0000-00-00 00:00:00',0),(2015,0,0,1713,'2526','H','O',1846,'',0,'2025-10-28','0000-00-00',1363,0,1403,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 13:06:06','','0000-00-00 00:00:00',0),(2016,0,0,1298,'2526','H','D',89,'',0,'2025-10-28','0000-00-00',0,82,1107,0,'D27','',0,41500.00,0.00,0.00,41500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-23000,0,'0000-00-00','','N','N','F','N',18500.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-28 13:06:59','riya','2025-10-28 14:14:35',0),(2017,0,0,1720,'2526','H','O',1847,'',0,'2025-10-28','0000-00-00',1367,0,1407,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 13:09:10','','0000-00-00 00:00:00',0),(2018,0,0,1722,'2526','H','O',1848,'',0,'2025-10-28','0000-00-00',1369,0,1409,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 13:12:30','','0000-00-00 00:00:00',0),(2019,0,0,1721,'2526','H','O',1849,'',0,'2025-10-28','0000-00-00',1368,0,1408,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 13:18:01','','0000-00-00 00:00:00',0),(2020,0,0,1715,'2526','H','O',1850,'',0,'2025-10-28','0000-00-00',1365,0,1405,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','99679','','scan',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 13:43:08','','0000-00-00 00:00:00',0),(2021,0,0,1720,'2526','H','O',1851,'',0,'2025-10-28','0000-00-00',1367,0,1407,0,'D06','',0,4900.00,0.00,0.00,4900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 13:54:44','','0000-00-00 00:00:00',0),(2022,0,0,1725,'2526','H','O',1852,'',0,'2025-10-28','0000-00-00',1288,0,1327,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 14:10:31','','0000-00-00 00:00:00',0),(2023,0,0,1707,'2526','H','O',1853,'',0,'2025-10-28','0000-00-00',1358,0,1398,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','48078','','scan',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 14:12:35','','0000-00-00 00:00:00',0),(2024,0,0,1298,'2526','H','I',82,'',0,'2025-10-28','0000-00-00',0,82,1107,0,'D27','',0,41500.00,0.00,0.00,41500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-41500,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(2025,0,0,1726,'2526','H','O',1854,'',0,'2025-10-28','0000-00-00',1370,0,1411,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','sbi ','','62406','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 14:34:28','','0000-00-00 00:00:00',0),(2026,0,0,1601,'2526','H','D',90,'',0,'2025-10-28','0000-00-00',627,101,657,0,'D27','',0,22950.00,0.00,0.00,22950.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',7950.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-28 15:19:15','riya','2025-10-28 15:38:42',0),(2027,0,0,1601,'2526','H','I',83,'',0,'2025-10-28','0000-00-00',627,101,657,0,'D27','',0,22950.00,0.00,0.00,22950.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-22950,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(2028,0,0,1728,'2526','H','O',1855,'',0,'2025-10-28','0000-00-00',1371,0,1412,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 16:52:02','','0000-00-00 00:00:00',0),(2029,0,0,1729,'2526','H','O',1856,'',0,'2025-10-28','0000-00-00',1372,0,1413,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 17:08:33','','0000-00-00 00:00:00',0),(2030,0,0,1730,'2526','H','O',1857,'',0,'2025-10-28','0000-00-00',1373,0,1414,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 17:16:01','','0000-00-00 00:00:00',0),(2031,0,0,1728,'2526','H','O',1858,'',0,'2025-10-28','0000-00-00',1371,0,1412,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 17:23:55','','0000-00-00 00:00:00',0),(2032,0,0,1731,'2526','H','O',1859,'',0,'2025-10-28','0000-00-00',1374,0,1415,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 17:26:21','','0000-00-00 00:00:00',0),(2033,0,0,1732,'2526','H','O',1860,'',0,'2025-10-28','0000-00-00',1375,0,1416,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','85643','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 17:35:27','','0000-00-00 00:00:00',0),(2034,0,0,1733,'2526','H','O',1861,'',0,'2025-10-28','0000-00-00',1376,0,1417,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 17:36:40','','0000-00-00 00:00:00',0),(2035,0,0,1734,'2526','H','O',1862,'',0,'2025-10-28','0000-00-00',1377,0,1418,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','21880','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 17:38:43','','0000-00-00 00:00:00',0),(2036,0,0,1735,'2526','H','O',1863,'',0,'2025-10-28','0000-00-00',1378,0,1419,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 17:39:08','','0000-00-00 00:00:00',0),(2037,0,0,1736,'2526','H','O',1864,'',0,'2025-10-28','0000-00-00',1379,0,1420,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 17:40:48','','0000-00-00 00:00:00',0),(2038,0,0,1738,'2526','H','O',1865,'',0,'2025-10-28','0000-00-00',1381,0,1422,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 17:51:23','','0000-00-00 00:00:00',0),(2039,0,0,1739,'2526','H','O',1866,'',0,'2025-10-28','0000-00-00',1382,0,1423,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 17:51:25','','0000-00-00 00:00:00',0),(2040,0,0,1737,'2526','H','O',1867,'',0,'2025-10-28','0000-00-00',1380,0,1421,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 17:52:29','','0000-00-00 00:00:00',0),(2041,0,0,1740,'2526','H','O',1868,'',0,'2025-10-28','0000-00-00',1383,0,1424,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 17:52:50','','0000-00-00 00:00:00',0),(2042,0,0,1742,'2526','H','O',1869,'',0,'2025-10-28','0000-00-00',1385,0,1426,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 17:53:51','','0000-00-00 00:00:00',0),(2043,0,0,1741,'2526','H','O',1870,'',0,'2025-10-28','0000-00-00',1384,0,1425,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 17:53:57','','0000-00-00 00:00:00',0),(2044,0,0,1743,'2526','H','O',1871,'',0,'2025-10-28','0000-00-00',1386,0,1427,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 17:54:06','','0000-00-00 00:00:00',0),(2045,0,0,1744,'2526','H','O',1872,'',0,'2025-10-28','0000-00-00',1387,0,1428,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 17:56:11','','0000-00-00 00:00:00',0),(2046,0,0,1745,'2526','H','O',1873,'',0,'2025-10-28','0000-00-00',1388,0,393,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','rajkot nagrik','','98276','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 17:59:29','','0000-00-00 00:00:00',0),(2047,0,0,1747,'2526','H','O',1874,'',0,'2025-10-28','0000-00-00',1390,0,1430,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-28 18:03:11','','0000-00-00 00:00:00',0),(2048,0,0,1746,'2526','H','O',1875,'',0,'2025-10-28','0000-00-00',1389,0,1429,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 18:03:15','','0000-00-00 00:00:00',0),(2049,0,0,1741,'2526','H','O',1876,'',0,'2025-10-28','0000-00-00',1384,0,1425,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 18:04:10','','0000-00-00 00:00:00',0),(2050,0,0,1742,'2526','H','O',1877,'',0,'2025-10-28','0000-00-00',1385,0,1426,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 18:04:29','','0000-00-00 00:00:00',0),(2051,0,0,1748,'2526','H','O',1878,'',0,'2025-10-28','0000-00-00',1391,0,1431,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','04315','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 18:05:38','','0000-00-00 00:00:00',0),(2052,0,0,1749,'2526','H','O',1879,'',0,'2025-10-28','0000-00-00',1392,0,1432,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BRODA GRAMIN','','92136','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 18:06:33','','0000-00-00 00:00:00',0),(2053,0,0,1750,'2526','H','O',1880,'',0,'2025-10-28','0000-00-00',597,0,627,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 18:07:07','','0000-00-00 00:00:00',0),(2054,0,0,1751,'2526','H','O',1881,'',0,'2025-10-28','0000-00-00',464,0,490,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-28 18:11:00','','0000-00-00 00:00:00',0),(2055,0,0,1752,'2526','H','O',1882,'',0,'2025-10-28','0000-00-00',1393,0,1433,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 18:14:46','','0000-00-00 00:00:00',0),(2056,0,0,1753,'2526','H','O',1883,'',0,'2025-10-28','0000-00-00',1394,0,1434,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 18:16:21','','0000-00-00 00:00:00',0),(2057,0,0,1755,'2526','H','O',1884,'',0,'2025-10-28','0000-00-00',431,0,454,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 18:16:57','','0000-00-00 00:00:00',0),(2058,0,0,1747,'2526','H','O',1885,'',0,'2025-10-28','0000-00-00',1390,0,1430,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-28 18:21:51','','0000-00-00 00:00:00',0),(2059,0,0,1732,'2526','H','O',1886,'',0,'2025-10-28','0000-00-00',1375,0,1416,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 18:25:11','','0000-00-00 00:00:00',0),(2060,0,0,1758,'2526','H','O',1887,'',0,'2025-10-28','0000-00-00',941,0,972,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','13930','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-28 18:25:48','','0000-00-00 00:00:00',0),(2061,0,0,1757,'2526','H','O',1888,'',0,'2025-10-28','0000-00-00',1397,0,1437,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','idbi','','81284','','SCAN',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-28 18:26:03','','0000-00-00 00:00:00',0),(2062,0,0,1760,'2526','H','O',1889,'',0,'2025-10-28','0000-00-00',1399,0,1439,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 18:29:03','','0000-00-00 00:00:00',0),(2063,0,0,1754,'2526','H','O',1890,'',0,'2025-10-28','0000-00-00',1395,0,1435,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-28 18:31:42','','0000-00-00 00:00:00',0),(2064,0,0,1761,'2526','H','O',1891,'',0,'2025-10-28','0000-00-00',1400,0,1440,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 18:34:24','','0000-00-00 00:00:00',0),(2065,0,0,1762,'2526','H','O',1892,'',0,'2025-10-28','0000-00-00',1401,0,1441,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-28 18:36:50','','0000-00-00 00:00:00',0),(2066,0,0,1763,'2526','H','O',1893,'',0,'2025-10-28','0000-00-00',1402,0,1442,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 18:43:22','','0000-00-00 00:00:00',0),(2067,0,0,1764,'2526','H','O',1894,'',0,'2025-10-28','0000-00-00',1403,0,1443,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 1908','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 18:45:15','janvi','2025-10-28 19:59:07',0),(2068,0,0,1765,'2526','H','O',1895,'',0,'2025-10-28','0000-00-00',252,0,267,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 18:45:21','','0000-00-00 00:00:00',0),(2069,0,0,1766,'2526','H','O',1896,'',0,'2025-10-28','0000-00-00',1404,0,1444,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','73959','','scan     ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 18:52:05','','0000-00-00 00:00:00',0),(2070,0,0,1767,'2526','H','O',1897,'',0,'2025-10-28','0000-00-00',1079,0,1119,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','26592','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 18:59:35','','0000-00-00 00:00:00',0),(2071,0,0,1769,'2526','H','O',1898,'',0,'2025-10-28','0000-00-00',1406,0,1446,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 19:01:12','','0000-00-00 00:00:00',0),(2072,0,0,1768,'2526','H','O',1899,'',0,'2025-10-28','0000-00-00',1405,0,1445,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 19:01:40','','0000-00-00 00:00:00',0),(2073,0,0,1756,'2526','H','O',1900,'',0,'2025-10-28','0000-00-00',1396,0,1436,0,'D06','',0,900.00,0.00,0.00,900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 19:12:43','','0000-00-00 00:00:00',0),(2074,0,0,1771,'2526','H','O',1901,'',0,'2025-10-28','0000-00-00',1408,0,1448,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 19:12:49','','0000-00-00 00:00:00',0),(2075,0,0,1770,'2526','H','O',1902,'',0,'2025-10-28','0000-00-00',1407,0,1447,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-28 19:14:48','','0000-00-00 00:00:00',0),(2076,0,0,1772,'2526','H','O',1903,'',0,'2025-10-28','0000-00-00',1409,0,1449,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 19:17:31','','0000-00-00 00:00:00',0),(2077,0,0,1773,'2526','H','O',1904,'',0,'2025-10-28','0000-00-00',240,0,255,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 19:36:58','','0000-00-00 00:00:00',0),(2078,0,0,1769,'2526','H','O',1905,'',0,'2025-10-28','0000-00-00',1406,0,1446,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 19:38:52','','0000-00-00 00:00:00',0),(2079,0,0,1774,'2526','H','O',1906,'',0,'2025-10-28','0000-00-00',575,0,603,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 19:45:14','','0000-00-00 00:00:00',0),(2080,0,0,1775,'2526','H','O',1907,'',0,'2025-10-28','0000-00-00',1410,0,1450,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','71674','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 19:46:48','','0000-00-00 00:00:00',0),(2081,0,0,1764,'2526','H','O',1908,'',0,'2025-10-28','0000-00-00',1403,0,1443,0,'D02','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-28','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 1894','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-28 19:59:07','janvi','2025-10-28 19:59:32',0),(2082,0,0,1754,'2526','H','O',1909,'',0,'2025-10-28','0000-00-00',1395,0,1435,0,'D14','',0,7000.00,0.00,0.00,7000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',7000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-28 20:18:39','','0000-00-00 00:00:00',0),(2083,0,0,1776,'2526','H','O',1910,'',0,'2025-10-29','0000-00-00',47,0,53,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-29 08:52:35','','0000-00-00 00:00:00',0),(2084,0,0,1777,'2526','H','O',1911,'',0,'2025-10-29','0000-00-00',1411,0,1451,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-29 08:54:08','','0000-00-00 00:00:00',0),(2085,0,0,1778,'2526','H','O',1912,'',0,'2025-10-29','0000-00-00',1412,0,1452,0,'D02','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-29 08:56:48','','0000-00-00 00:00:00',0),(2086,0,0,1779,'2526','H','O',1913,'',0,'2025-10-29','0000-00-00',1413,0,1453,0,'D27','',0,2100.00,0.00,0.00,2100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-29 08:59:20','','0000-00-00 00:00:00',0),(2087,0,0,1780,'2526','H','O',1914,'',0,'2025-10-29','0000-00-00',1414,0,1454,0,'D27','',0,1700.00,0.00,0.00,1700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-29 09:02:18','','0000-00-00 00:00:00',0),(2088,0,0,1781,'2526','H','O',1915,'',0,'2025-10-29','0000-00-00',1415,0,1455,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-29 09:03:20','','0000-00-00 00:00:00',0),(2089,0,0,1784,'2526','H','O',1916,'',0,'2025-10-29','0000-00-00',1416,0,1457,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 10:05:44','','0000-00-00 00:00:00',0),(2090,0,0,1786,'2526','H','O',1917,'',0,'2025-10-29','0000-00-00',1418,0,1459,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 10:09:02','','0000-00-00 00:00:00',0),(2091,0,0,1787,'2526','H','O',1918,'',0,'2025-10-29','0000-00-00',1419,0,1460,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 10:13:38','','0000-00-00 00:00:00',0),(2092,0,0,1789,'2526','H','O',1919,'',0,'2025-10-29','0000-00-00',1421,0,1462,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','70427','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 10:20:58','','0000-00-00 00:00:00',0),(2093,0,0,1790,'2526','H','O',1920,'',0,'2025-10-29','0000-00-00',607,0,637,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 10:22:35','','0000-00-00 00:00:00',0),(2094,0,0,1791,'2526','H','O',1921,'',0,'2025-10-29','0000-00-00',1422,0,1463,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 10:23:42','','0000-00-00 00:00:00',0),(2095,0,0,1792,'2526','H','O',1922,'',0,'2025-10-29','0000-00-00',1423,0,1464,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 10:25:33','','0000-00-00 00:00:00',0),(2096,0,0,1794,'2526','H','O',1923,'',0,'2025-10-29','0000-00-00',1362,0,1402,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 10:48:53','','0000-00-00 00:00:00',0),(2097,0,0,1795,'2526','H','O',1924,'',0,'2025-10-29','0000-00-00',1125,0,1095,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-29 10:51:00','','0000-00-00 00:00:00',0),(2098,0,0,1796,'2526','H','O',1925,'',0,'2025-10-29','0000-00-00',1425,0,1466,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 10:52:37','','0000-00-00 00:00:00',0),(2099,0,0,1783,'2526','H','O',1926,'',0,'2025-10-29','0000-00-00',880,0,912,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 10:53:25','','0000-00-00 00:00:00',0),(2100,0,0,1797,'2526','H','O',1927,'',0,'2025-10-29','0000-00-00',915,0,946,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 10:54:18','','0000-00-00 00:00:00',0),(2101,0,0,1798,'2526','H','O',1928,'',0,'2025-10-29','0000-00-00',1426,0,1467,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 10:55:55','','0000-00-00 00:00:00',0),(2102,0,0,1799,'2526','H','O',1929,'',0,'2025-10-29','0000-00-00',1427,0,1468,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 10:56:19','','0000-00-00 00:00:00',0),(2103,0,0,1801,'2526','H','O',1930,'',0,'2025-10-29','0000-00-00',1429,0,1470,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','35932','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 10:59:08','','0000-00-00 00:00:00',0),(2104,0,0,1802,'2526','H','O',1931,'',0,'2025-10-29','0000-00-00',1430,0,1471,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 11:00:14','','0000-00-00 00:00:00',0),(2105,0,0,1785,'2526','H','O',1932,'',0,'2025-10-29','0000-00-00',1417,0,1458,0,'D14','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-29 11:01:48','','0000-00-00 00:00:00',0),(2106,0,0,1804,'2526','H','O',1933,'',0,'2025-10-29','0000-00-00',1085,0,714,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 11:03:06','','0000-00-00 00:00:00',0),(2107,0,0,1803,'2526','H','O',1934,'',0,'2025-10-29','0000-00-00',1431,0,1472,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','60573','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 11:04:05','','0000-00-00 00:00:00',0),(2108,0,0,1805,'2526','H','O',1935,'',0,'2025-10-29','0000-00-00',1432,0,1473,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-29 11:04:39','','0000-00-00 00:00:00',0),(2109,0,0,1806,'2526','H','O',1936,'',0,'2025-10-29','0000-00-00',1433,0,1474,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL ENTRY','HO 1944','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 11:05:25','reception','2025-10-29 11:26:36',0),(2110,0,0,1807,'2526','H','O',1937,'',0,'2025-10-29','0000-00-00',400,0,422,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 11:06:13','','0000-00-00 00:00:00',0),(2111,0,0,1808,'2526','H','O',1938,'',0,'2025-10-29','0000-00-00',1434,0,1475,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 11:08:12','','0000-00-00 00:00:00',0),(2112,0,0,1809,'2526','H','O',1939,'',0,'2025-10-29','0000-00-00',1435,0,1476,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 11:15:52','','0000-00-00 00:00:00',0),(2113,0,0,1810,'2526','H','O',1940,'',0,'2025-10-29','0000-00-00',1436,0,1477,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','86364','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 11:17:56','','0000-00-00 00:00:00',0),(2114,0,0,1811,'2526','H','O',1941,'',0,'2025-10-29','0000-00-00',545,0,571,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-29 11:18:15','','0000-00-00 00:00:00',0),(2115,0,0,1536,'2526','H','D',91,'',0,'2025-10-29','0000-00-00',1223,98,1264,0,'D02','',0,85000.00,0.00,0.00,85000.00,3000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-40000,0,'0000-00-00','','N','N','F','N',42000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-29 11:21:54','riya','2025-10-29 12:09:55',0),(2116,0,0,1791,'2526','H','O',1942,'',0,'2025-10-29','0000-00-00',1422,0,1463,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 11:25:15','','0000-00-00 00:00:00',0),(2117,0,0,1813,'2526','H','O',1943,'',0,'2025-10-29','0000-00-00',1438,0,1479,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','34282','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 11:25:37','','0000-00-00 00:00:00',0),(2118,0,0,1806,'2526','H','O',1944,'',0,'2025-10-29','0000-00-00',1433,0,1474,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-29','Y','N','Y','','N',0.00,'','Y','CANCEL ENTRY','','HO 1936','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 11:26:36','reception','2025-10-29 11:27:18',0),(2119,0,0,1814,'2526','H','O',1945,'',0,'2025-10-29','0000-00-00',1439,0,1480,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 11:27:39','','0000-00-00 00:00:00',0),(2120,0,0,1800,'2526','H','O',1946,'',0,'2025-10-29','0000-00-00',1428,0,1469,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 11:28:07','','0000-00-00 00:00:00',0),(2121,0,0,1788,'2526','H','O',1947,'',0,'2025-10-29','0000-00-00',1420,0,1461,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 11:28:57','','0000-00-00 00:00:00',0),(2122,0,0,1815,'2526','H','O',1948,'',0,'2025-10-29','0000-00-00',1440,0,1481,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 11:32:37','','0000-00-00 00:00:00',0),(2123,0,0,1793,'2526','H','O',1949,'',0,'2025-10-29','0000-00-00',1424,0,1465,0,'D27','',0,1050.00,0.00,0.00,1050.00,250.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 11:32:47','','0000-00-00 00:00:00',0),(2124,0,0,1816,'2526','H','O',1950,'',0,'2025-10-29','0000-00-00',1441,0,1482,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 11:43:53','','0000-00-00 00:00:00',0),(2125,0,0,1811,'2526','H','O',1951,'',0,'2025-10-29','0000-00-00',545,0,571,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-29 11:45:14','','0000-00-00 00:00:00',0),(2126,0,0,1817,'2526','H','O',1952,'',0,'2025-10-29','0000-00-00',1442,0,1483,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','33878','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 11:45:31','','0000-00-00 00:00:00',0),(2127,0,0,1818,'2526','H','O',1953,'',0,'2025-10-29','0000-00-00',1443,0,1484,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','33878','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 11:45:47','','0000-00-00 00:00:00',0),(2128,0,0,1785,'2526','H','O',1954,'',0,'2025-10-29','0000-00-00',1417,0,1458,0,'D14','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-29 11:46:01','','0000-00-00 00:00:00',0),(2129,0,0,1819,'2526','H','O',1955,'',0,'2025-10-29','0000-00-00',1444,0,1485,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 11:47:22','','0000-00-00 00:00:00',0),(2130,0,0,1820,'2526','H','O',1956,'',0,'2025-10-29','0000-00-00',1445,0,1486,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','62862','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 11:48:11','','0000-00-00 00:00:00',0),(2131,0,0,1807,'2526','H','O',1957,'',0,'2025-10-29','0000-00-00',400,0,422,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 11:48:17','','0000-00-00 00:00:00',0),(2132,0,0,1822,'2526','H','O',1958,'',0,'2025-10-29','0000-00-00',1447,0,1488,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 1965','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 11:57:10','janvi','2025-10-29 12:13:02',0),(2133,0,0,1823,'2526','H','O',1959,'',0,'2025-10-29','0000-00-00',1448,0,1489,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','28813','','scan     ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 11:58:37','','0000-00-00 00:00:00',0),(2134,0,0,1788,'2526','H','O',1960,'',0,'2025-10-29','0000-00-00',1420,0,1461,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 11:59:43','','0000-00-00 00:00:00',0),(2135,0,0,1824,'2526','H','O',1961,'',0,'2025-10-29','0000-00-00',1449,0,1490,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 12:00:02','','0000-00-00 00:00:00',0),(2136,0,0,1825,'2526','H','O',1962,'',0,'2025-10-29','0000-00-00',1450,0,1491,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','64216','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 12:01:54','','0000-00-00 00:00:00',0),(2137,0,0,1812,'2526','H','O',1963,'',0,'2025-10-29','0000-00-00',1437,0,1478,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 12:05:33','','0000-00-00 00:00:00',0),(2138,0,0,1826,'2526','H','O',1964,'',0,'2025-10-29','0000-00-00',1067,0,1106,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 12:06:47','','0000-00-00 00:00:00',0),(2139,0,0,1536,'2526','H','I',84,'',1,'2025-10-29','0000-00-00',1223,98,1264,0,'D02','',0,85000.00,0.00,0.00,85000.00,3000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-82000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-29 12:12:09','riya','2025-10-29 12:18:31',0),(2140,0,0,1822,'2526','H','O',1965,'',0,'2025-10-29','0000-00-00',1447,0,1488,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-10-29','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 1958','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 12:13:02','janvi','2025-10-29 12:13:17',0),(2141,0,0,1827,'2526','H','O',1966,'',0,'2025-10-29','0000-00-00',1451,0,1492,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 12:18:29','','0000-00-00 00:00:00',0),(2142,0,0,1828,'2526','H','O',1967,'',0,'2025-10-29','0000-00-00',1452,0,1493,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-29 12:22:13','','0000-00-00 00:00:00',0),(2143,0,0,1829,'2526','H','O',1968,'',0,'2025-10-29','0000-00-00',414,0,436,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-29 12:22:38','','0000-00-00 00:00:00',0),(2144,0,0,1830,'2526','H','O',1969,'',0,'2025-10-29','0000-00-00',1453,0,1494,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 12:23:50','','0000-00-00 00:00:00',0),(2145,0,0,1831,'2526','H','O',1970,'',0,'2025-10-29','0000-00-00',1454,0,1495,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','7','HDFC BANK','','40505','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 12:33:18','','0000-00-00 00:00:00',0),(2146,0,0,1438,'2526','H','D',92,'',0,'2025-10-29','0000-00-00',1139,91,1179,0,'D02','',0,89450.00,0.00,0.00,89450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-67000,0,'0000-00-00','','N','N','F','N',22450.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-29 12:33:20','riya','2025-10-29 12:34:16',0),(2147,0,0,1832,'2526','H','O',1971,'',0,'2025-10-29','0000-00-00',1455,0,1496,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK BANK','','91858','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 12:36:37','','0000-00-00 00:00:00',0),(2148,0,0,1813,'2526','H','O',1972,'',0,'2025-10-29','0000-00-00',1438,0,1479,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','67357','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 12:38:53','','0000-00-00 00:00:00',0),(2149,0,0,1572,'2526','H','D',93,'',0,'2025-10-29','0000-00-00',1235,100,1276,0,'D27','',0,17300.00,0.00,0.00,17300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',2300.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(2150,0,0,1833,'2526','H','O',1973,'',0,'2025-10-29','0000-00-00',1456,0,1497,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-29 12:40:16','','0000-00-00 00:00:00',0),(2151,0,0,1834,'2526','H','O',1974,'',0,'2025-10-29','0000-00-00',1457,0,1498,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 12:41:55','','0000-00-00 00:00:00',0),(2152,0,0,1835,'2526','H','O',1975,'',0,'2025-10-29','0000-00-00',1458,0,1499,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 12:43:26','','0000-00-00 00:00:00',0),(2153,0,0,1572,'2526','H','I',85,'',0,'2025-10-29','0000-00-00',1235,100,1276,0,'D27','',0,17300.00,0.00,0.00,17300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-17300,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(2154,0,0,1438,'2526','H','I',86,'',1,'2025-10-29','0000-00-00',1139,91,1179,0,'D02','',0,89450.00,0.00,0.00,89450.00,2450.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-87000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-29 12:52:54','riya','2025-10-29 13:00:55',0),(2155,0,0,1837,'2526','H','O',1976,'',0,'2025-10-29','0000-00-00',1460,0,1501,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 13:07:58','','0000-00-00 00:00:00',0),(2156,0,0,1838,'2526','H','O',1977,'',0,'2025-10-29','0000-00-00',1461,0,1502,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 13:18:47','','0000-00-00 00:00:00',0),(2157,0,0,1831,'2526','H','O',1978,'',0,'2025-10-29','0000-00-00',1454,0,1495,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','33598','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 13:22:41','','0000-00-00 00:00:00',0),(2158,0,0,1836,'2526','H','O',1979,'',0,'2025-10-29','0000-00-00',1459,0,1500,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 13:58:01','','0000-00-00 00:00:00',0),(2159,0,0,1724,'2526','H','D',94,'',0,'2025-10-29','0000-00-00',0,106,1410,0,'D27','',0,15300.00,0.00,0.00,15300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',8300.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-29 14:49:57','riya','2025-10-29 15:02:21',0),(2160,0,0,1724,'2526','H','I',87,'',0,'2025-10-29','0000-00-00',0,106,1410,0,'D27','',0,15300.00,0.00,0.00,15300.00,2000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-13300,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-29 15:19:35','','0000-00-00 00:00:00',0),(2161,0,0,1839,'2526','H','O',1980,'',0,'2025-10-29','0000-00-00',1462,0,1503,0,'D06','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 15:38:48','','0000-00-00 00:00:00',0),(2162,0,0,1841,'2526','H','O',1981,'',0,'2025-10-29','0000-00-00',1464,0,1505,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 16:35:17','','0000-00-00 00:00:00',0),(2163,0,0,1842,'2526','H','O',1982,'',0,'2025-10-29','0000-00-00',1465,0,1506,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 16:38:58','','0000-00-00 00:00:00',0),(2164,0,0,1845,'2526','H','O',1983,'',0,'2025-10-29','0000-00-00',1468,0,1509,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 17:10:08','','0000-00-00 00:00:00',0),(2165,0,0,1847,'2526','H','O',1984,'',0,'2025-10-29','0000-00-00',1470,0,1511,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 17:21:14','','0000-00-00 00:00:00',0),(2166,0,0,1848,'2526','H','O',1985,'',0,'2025-10-29','0000-00-00',1471,0,1512,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 17:27:30','','0000-00-00 00:00:00',0),(2167,0,0,1849,'2526','H','O',1986,'',0,'2025-10-29','0000-00-00',1472,0,1513,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','83417','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 17:30:58','','0000-00-00 00:00:00',0),(2168,0,0,1850,'2526','H','O',1987,'',0,'2025-10-29','0000-00-00',1473,0,1514,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 17:33:10','','0000-00-00 00:00:00',0),(2169,0,0,1851,'2526','H','O',1988,'',0,'2025-10-29','0000-00-00',1474,0,1515,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 17:36:14','','0000-00-00 00:00:00',0),(2170,0,0,1853,'2526','H','O',1989,'',0,'2025-10-29','0000-00-00',1476,0,1517,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-29 17:43:06','','0000-00-00 00:00:00',0),(2171,0,0,1852,'2526','H','O',1990,'',0,'2025-10-29','0000-00-00',1475,0,1516,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','60842','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 17:44:15','','0000-00-00 00:00:00',0),(2172,0,0,1854,'2526','H','O',1991,'',0,'2025-10-29','0000-00-00',919,0,950,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 17:45:25','','0000-00-00 00:00:00',0),(2173,0,0,1855,'2526','H','O',1992,'',0,'2025-10-29','0000-00-00',1477,0,1518,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','00925','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 17:52:32','','0000-00-00 00:00:00',0),(2174,0,0,1856,'2526','H','O',1993,'',0,'2025-10-29','0000-00-00',1478,0,1519,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 17:57:34','','0000-00-00 00:00:00',0),(2175,0,0,1845,'2526','H','O',1994,'',0,'2025-10-29','0000-00-00',1468,0,1509,0,'D06','',0,4900.00,0.00,0.00,4900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 17:57:43','','0000-00-00 00:00:00',0),(2176,0,0,1857,'2526','H','O',1995,'',0,'2025-10-29','0000-00-00',1479,0,1520,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 18:00:28','','0000-00-00 00:00:00',0),(2177,0,0,1858,'2526','H','O',1996,'',0,'2025-10-29','0000-00-00',1480,0,1521,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 18:04:38','','0000-00-00 00:00:00',0),(2178,0,0,1859,'2526','H','O',1997,'',0,'2025-10-29','0000-00-00',593,0,623,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','AXIS','','83805','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 18:05:22','','0000-00-00 00:00:00',0),(2179,0,0,1860,'2526','H','O',1998,'',0,'2025-10-29','0000-00-00',1481,0,1522,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 18:08:50','','0000-00-00 00:00:00',0),(2180,0,0,1861,'2526','H','O',1999,'',0,'2025-10-29','0000-00-00',1482,0,1523,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 2005','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 18:15:40','janvi','2025-10-29 18:20:37',0),(2181,0,0,1846,'2526','H','O',2000,'',0,'2025-10-29','0000-00-00',1469,0,1510,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 18:17:06','','0000-00-00 00:00:00',0),(2182,0,0,1862,'2526','H','O',2001,'',0,'2025-10-29','0000-00-00',1483,0,1524,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 2024','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-29 18:17:26','manshi','2025-10-29 19:08:52',0),(2183,0,0,1849,'2526','H','O',2002,'',0,'2025-10-29','0000-00-00',1472,0,1513,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','80463','','SCAN',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 18:19:23','','0000-00-00 00:00:00',0),(2184,0,0,1863,'2526','H','O',2003,'',0,'2025-10-29','0000-00-00',53,0,61,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-29 18:19:49','','0000-00-00 00:00:00',0),(2185,0,0,1864,'2526','H','O',2004,'',0,'2025-10-29','0000-00-00',1484,0,1525,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 18:20:06','','0000-00-00 00:00:00',0),(2186,0,0,1861,'2526','H','O',2005,'',0,'2025-10-29','0000-00-00',1482,0,1523,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-10-29','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 1999','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 18:20:37','janvi','2025-10-29 18:20:54',0),(2187,0,0,1865,'2526','H','O',2006,'',0,'2025-10-29','0000-00-00',1485,0,1526,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-29 18:22:00','','0000-00-00 00:00:00',0),(2188,0,0,1864,'2526','H','O',2007,'',0,'2025-10-29','0000-00-00',1484,0,1525,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 18:24:19','','0000-00-00 00:00:00',0),(2189,0,0,1855,'2526','H','O',2008,'',0,'2025-10-29','0000-00-00',1477,0,1518,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','67296','','SCAN',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 18:27:21','','0000-00-00 00:00:00',0),(2190,0,0,1363,'2526','H','D',95,'',0,'2025-10-29','0000-00-00',0,86,1152,0,'D27','',0,43700.00,0.00,0.00,43700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-34000,0,'0000-00-00','','N','N','F','N',9700.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-29 18:28:59','vishal','2025-10-29 18:43:37',0),(2191,0,0,1867,'2526','H','O',2009,'',0,'2025-10-29','0000-00-00',1487,0,1528,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 18:30:35','','0000-00-00 00:00:00',0),(2192,0,0,1870,'2526','H','O',2010,'',0,'2025-10-29','0000-00-00',976,0,1009,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 18:33:51','','0000-00-00 00:00:00',0),(2193,0,0,1866,'2526','H','O',2011,'',0,'2025-10-29','0000-00-00',1486,0,1527,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-29 18:33:58','','0000-00-00 00:00:00',0),(2194,0,0,1869,'2526','H','O',2012,'',0,'2025-10-29','0000-00-00',497,0,522,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','AXIS','','64632','','SCAN',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 2025','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 18:34:06','drashti','2025-10-29 19:12:04',0),(2195,0,0,1871,'2526','H','O',2013,'',0,'2025-10-29','0000-00-00',1489,0,1530,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 18:36:27','','0000-00-00 00:00:00',0),(2196,0,0,1872,'2526','H','O',2014,'',0,'2025-10-29','0000-00-00',1490,0,1531,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-29 18:36:53','','0000-00-00 00:00:00',0),(2197,0,0,1868,'2526','H','O',2015,'',0,'2025-10-29','0000-00-00',1488,0,1529,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','idbi','','08663','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-29 18:37:35','','0000-00-00 00:00:00',0),(2198,0,0,1862,'2526','H','O',2016,'',0,'2025-10-29','0000-00-00',1483,0,1524,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-29 18:39:03','','0000-00-00 00:00:00',0),(2199,0,0,1873,'2526','H','O',2017,'',0,'2025-10-29','0000-00-00',1491,0,1532,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-10-29 18:41:44','','0000-00-00 00:00:00',0),(2200,0,0,1874,'2526','H','O',2018,'',0,'2025-10-29','0000-00-00',1492,0,1533,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 18:42:12','','0000-00-00 00:00:00',0),(2201,0,0,1850,'2526','H','O',2019,'',0,'2025-10-29','0000-00-00',1473,0,1514,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 18:43:13','','0000-00-00 00:00:00',0),(2202,0,0,1363,'2526','H','I',88,'',0,'2025-10-29','0000-00-00',0,86,1152,0,'D27','',0,43700.00,0.00,0.00,43700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-43700,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(2203,0,0,1875,'2526','H','O',2020,'',0,'2025-10-29','0000-00-00',659,0,689,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 18:49:35','','0000-00-00 00:00:00',0),(2204,0,0,1851,'2526','H','O',2021,'',0,'2025-10-29','0000-00-00',1474,0,1515,0,'D06','',0,6900.00,0.00,0.00,6900.00,1300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 18:52:16','','0000-00-00 00:00:00',0),(2205,0,0,1876,'2526','H','O',2022,'',0,'2025-10-29','0000-00-00',1493,0,1534,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 19:03:52','','0000-00-00 00:00:00',0),(2206,0,0,1563,'2526','H','D',96,'',0,'2025-10-29','0000-00-00',0,99,1295,0,'D02','',0,70000.00,0.00,0.00,70000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-68000,0,'0000-00-00','','N','N','F','N',2000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(2207,0,0,1563,'2526','H','I',89,'',0,'2025-10-29','0000-00-00',0,99,1295,0,'D02','',0,70000.00,0.00,0.00,70000.00,2000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-68000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(2208,0,0,1877,'2526','H','O',2023,'',0,'2025-10-29','0000-00-00',1494,0,1535,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 19:07:25','','0000-00-00 00:00:00',0),(2209,0,0,1862,'2526','H','O',2024,'',0,'2025-10-29','0000-00-00',1483,0,1524,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-29','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 2001','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-29 19:08:52','manshi','2025-10-29 19:11:19',0),(2210,0,0,1869,'2526','H','O',2025,'',0,'2025-10-29','0000-00-00',497,0,522,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','BANK','','00000','','',-400.00,0,0,'2025-10-29','Y','N','N','','N',0.00,'','Y','FOC','','HO 2012','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-29 19:12:04','drashti','2025-10-29 19:15:54',0),(2211,0,0,1862,'2526','H','O',2026,'',0,'2025-10-29','0000-00-00',1483,0,1524,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-29 19:13:19','','0000-00-00 00:00:00',0),(2212,0,0,1878,'2526','H','O',2027,'',0,'2025-10-29','0000-00-00',1495,0,1536,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 19:15:42','','0000-00-00 00:00:00',0),(2213,0,0,1879,'2526','H','O',2028,'',0,'2025-10-29','0000-00-00',1126,0,1166,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 19:37:17','','0000-00-00 00:00:00',0),(2214,0,0,1880,'2526','H','O',2029,'',0,'2025-10-29','0000-00-00',562,0,589,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 19:38:09','','0000-00-00 00:00:00',0),(2215,0,0,1881,'2526','H','O',2030,'',0,'2025-10-29','0000-00-00',1496,0,1537,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','82854','','scan     ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 19:41:27','','0000-00-00 00:00:00',0),(2216,0,0,1883,'2526','H','O',2031,'',0,'2025-10-29','0000-00-00',1497,0,1538,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-29 19:55:33','','0000-00-00 00:00:00',0),(2217,0,0,1881,'2526','H','O',2032,'',0,'2025-10-29','0000-00-00',1496,0,1537,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','80615','','scan     ',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-29 20:12:27','','0000-00-00 00:00:00',0),(2218,0,0,1501,'2526','H','D',97,'',0,'2025-10-29','0000-00-00',1156,93,1195,0,'D27','',0,34800.00,0.00,0.00,34800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','','N','N','F','N',14800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-29 20:31:21','vishal','2025-10-29 20:39:15',0),(2219,0,0,1501,'2526','H','I',90,'',0,'2025-10-29','0000-00-00',1156,93,1195,0,'D27','',0,34800.00,0.00,0.00,34800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-34800,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(2221,0,0,687,'2526','H','D',99,'',0,'2025-10-29','0000-00-00',482,54,508,0,'D02','',0,9600.00,0.00,0.00,9600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',9600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-29 23:06:36','vishal','2025-10-29 23:07:26',0),(2222,0,0,1884,'2526','H','O',2033,'',0,'2025-10-30','0000-00-00',1498,0,1539,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-30 09:04:14','','0000-00-00 00:00:00',0),(2223,0,0,1885,'2526','H','O',2034,'',0,'2025-10-30','0000-00-00',1499,0,1540,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','sbi','','01778','','scan',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-30 09:07:08','','0000-00-00 00:00:00',0),(2224,0,0,1886,'2526','H','O',2035,'',0,'2025-10-30','0000-00-00',1500,0,1541,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 09:31:56','','0000-00-00 00:00:00',0),(2225,0,0,1887,'2526','H','O',2036,'',0,'2025-10-30','0000-00-00',469,0,495,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 09:34:28','','0000-00-00 00:00:00',0),(2226,0,0,1889,'2526','H','O',2037,'',0,'2025-10-30','0000-00-00',1501,0,1542,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 10:18:46','','0000-00-00 00:00:00',0),(2227,0,0,1890,'2526','H','O',2038,'',0,'2025-10-30','0000-00-00',1502,0,1543,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 10:28:31','','0000-00-00 00:00:00',0),(2228,0,0,1891,'2526','H','O',2039,'',0,'2025-10-30','0000-00-00',1503,0,1544,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 10:30:56','','0000-00-00 00:00:00',0),(2229,0,0,1892,'2526','H','O',2040,'',0,'2025-10-30','0000-00-00',1504,0,1545,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 10:40:31','','0000-00-00 00:00:00',0),(2230,0,0,1893,'2526','H','O',2041,'',0,'2025-10-30','0000-00-00',699,0,730,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 10:41:41','','0000-00-00 00:00:00',0),(2231,0,0,1894,'2526','H','O',2042,'',0,'2025-10-30','0000-00-00',300,0,316,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 10:43:44','','0000-00-00 00:00:00',0),(2232,0,0,1895,'2526','H','O',2043,'',0,'2025-10-30','0000-00-00',1505,0,1546,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 10:45:34','','0000-00-00 00:00:00',0),(2233,0,0,1896,'2526','H','O',2044,'',0,'2025-10-30','0000-00-00',1506,0,1547,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','DISCOUNT','HO 2066','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 10:47:36','reception','2025-10-30 11:45:51',0),(2234,0,0,1897,'2526','H','O',2045,'',0,'2025-10-30','0000-00-00',1507,0,1548,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','21643','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 10:57:29','','0000-00-00 00:00:00',0),(2235,0,0,1899,'2526','H','O',2046,'',0,'2025-10-30','0000-00-00',1508,0,1549,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 11:02:48','','0000-00-00 00:00:00',0),(2236,0,0,1900,'2526','H','O',2047,'',0,'2025-10-30','0000-00-00',757,0,56,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 11:04:39','','0000-00-00 00:00:00',0),(2237,0,0,1901,'2526','H','O',2048,'',0,'2025-10-30','0000-00-00',1509,0,1550,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 11:04:49','','0000-00-00 00:00:00',0),(2238,0,0,1902,'2526','H','O',2049,'',0,'2025-10-30','0000-00-00',1070,0,1110,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','16470','','scan  ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 11:06:35','','0000-00-00 00:00:00',0),(2239,0,0,1903,'2526','H','O',2050,'',0,'2025-10-30','0000-00-00',1510,0,1551,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 11:06:48','','0000-00-00 00:00:00',0),(2240,0,0,1904,'2526','H','O',2051,'',0,'2025-10-30','0000-00-00',696,0,727,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 11:07:38','','0000-00-00 00:00:00',0),(2241,0,0,1905,'2526','H','O',2052,'',0,'2025-10-30','0000-00-00',1511,0,1552,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 11:10:19','','0000-00-00 00:00:00',0),(2242,0,0,1906,'2526','H','O',2053,'',0,'2025-10-30','0000-00-00',1512,0,1553,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 11:12:51','','0000-00-00 00:00:00',0),(2243,0,0,1891,'2526','H','O',2054,'',0,'2025-10-30','0000-00-00',1503,0,1544,0,'D06','',0,6000.00,0.00,0.00,6000.00,600.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 11:14:35','','0000-00-00 00:00:00',0),(2244,0,0,1907,'2526','H','O',2055,'',0,'2025-10-30','0000-00-00',1513,0,1554,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 11:18:35','','0000-00-00 00:00:00',0),(2245,0,0,1908,'2526','H','O',2056,'',0,'2025-10-30','0000-00-00',1514,0,1555,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','31901','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 11:22:32','','0000-00-00 00:00:00',0),(2246,0,0,1909,'2526','H','O',2057,'',0,'2025-10-30','0000-00-00',292,0,308,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 11:29:00','','0000-00-00 00:00:00',0),(2247,0,0,1911,'2526','H','O',2058,'',0,'2025-10-30','0000-00-00',1515,0,1556,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 11:34:31','','0000-00-00 00:00:00',0),(2248,0,0,1912,'2526','H','O',2059,'',0,'2025-10-30','0000-00-00',116,0,127,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 11:35:56','','0000-00-00 00:00:00',0),(2249,0,0,1913,'2526','H','O',2060,'',0,'2025-10-30','0000-00-00',1516,0,1557,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 11:36:24','','0000-00-00 00:00:00',0),(2250,0,0,1914,'2526','H','O',2061,'',0,'2025-10-30','0000-00-00',1517,0,1558,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 11:37:30','','0000-00-00 00:00:00',0),(2251,0,0,1892,'2526','H','O',2062,'',0,'2025-10-30','0000-00-00',1504,0,1545,0,'D06','',0,6900.00,0.00,0.00,6900.00,1500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 11:40:22','','0000-00-00 00:00:00',0),(2252,0,0,1915,'2526','H','O',2063,'',0,'2025-10-30','0000-00-00',1518,0,1559,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 11:43:14','','0000-00-00 00:00:00',0),(2253,0,0,1916,'2526','H','O',2064,'',0,'2025-10-30','0000-00-00',1519,0,1560,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 11:44:21','','0000-00-00 00:00:00',0),(2254,0,0,1917,'2526','H','O',2065,'',0,'2025-10-30','0000-00-00',1520,0,1561,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 11:45:46','','0000-00-00 00:00:00',0),(2255,0,0,1896,'2526','H','O',2066,'',0,'2025-10-30','0000-00-00',1506,0,1547,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-30','Y','N','N','','N',0.00,'','Y','DISCOUNT','','HO 2044','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 11:45:51','reception','2025-10-30 11:46:59',0),(2256,0,0,1905,'2526','H','O',2067,'',0,'2025-10-30','0000-00-00',1511,0,1552,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 11:46:59','','0000-00-00 00:00:00',0),(2257,0,0,1918,'2526','H','O',2068,'',0,'2025-10-30','0000-00-00',1521,0,1562,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 11:47:11','','0000-00-00 00:00:00',0),(2258,0,0,1896,'2526','H','O',2069,'',0,'2025-10-30','0000-00-00',1506,0,1547,0,'D06','',0,500.00,0.00,0.00,500.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 11:48:20','','0000-00-00 00:00:00',0),(2259,0,0,1910,'2526','H','O',2070,'',0,'2025-10-30','0000-00-00',773,0,804,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 11:48:52','','0000-00-00 00:00:00',0),(2260,0,0,1919,'2526','H','O',2071,'',0,'2025-10-30','0000-00-00',1522,0,1563,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 11:50:53','','0000-00-00 00:00:00',0),(2261,0,0,1920,'2526','H','O',2072,'',0,'2025-10-30','0000-00-00',1523,0,1564,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','47828','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 11:52:32','','0000-00-00 00:00:00',0),(2262,0,0,1921,'2526','H','O',2073,'',0,'2025-10-30','0000-00-00',1524,0,1565,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 11:52:59','','0000-00-00 00:00:00',0),(2263,0,0,1922,'2526','H','O',2074,'',0,'2025-10-30','0000-00-00',1525,0,1566,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 11:55:01','','0000-00-00 00:00:00',0),(2264,0,0,1903,'2526','H','O',2075,'',0,'2025-10-30','0000-00-00',1510,0,1551,0,'D06','',0,4900.00,0.00,0.00,4900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','72038','','scan',4900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 11:56:07','','0000-00-00 00:00:00',0),(2265,0,0,1924,'2526','H','O',2076,'',0,'2025-10-30','0000-00-00',1526,0,1567,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 11:59:33','','0000-00-00 00:00:00',0),(2266,0,0,1700,'2526','H','D',100,'',0,'2025-10-30','0000-00-00',1307,103,1346,0,'D02','',0,31500.00,0.00,0.00,31500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-17000,0,'0000-00-00','','N','N','F','N',14500.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-30 12:03:40','riya','2025-10-30 12:26:01',0),(2267,0,0,1925,'2526','H','O',2077,'',0,'2025-10-30','0000-00-00',1527,0,1568,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 12:06:43','','0000-00-00 00:00:00',0),(2268,0,0,1926,'2526','H','O',2078,'',0,'2025-10-30','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 12:07:44','','0000-00-00 00:00:00',0),(2269,0,0,1927,'2526','H','O',2079,'',0,'2025-10-30','0000-00-00',1528,0,1569,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI BANK','','54870','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-30 12:11:21','','0000-00-00 00:00:00',0),(2270,0,0,1928,'2526','H','O',2080,'',0,'2025-10-30','0000-00-00',1529,0,1570,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 12:11:23','','0000-00-00 00:00:00',0),(2271,0,0,1916,'2526','H','O',2081,'',0,'2025-10-30','0000-00-00',1519,0,1560,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 12:15:38','','0000-00-00 00:00:00',0),(2272,0,0,1917,'2526','H','O',2082,'',0,'2025-10-30','0000-00-00',1520,0,1561,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 12:16:09','','0000-00-00 00:00:00',0),(2273,0,0,1929,'2526','H','O',2083,'',0,'2025-10-30','0000-00-00',1530,0,1571,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 12:17:56','','0000-00-00 00:00:00',0),(2274,0,0,1920,'2526','H','O',2084,'',0,'2025-10-30','0000-00-00',1523,0,1564,0,'D06','',0,6600.00,0.00,0.00,6600.00,600.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 12:23:19','','0000-00-00 00:00:00',0),(2275,0,0,1898,'2526','H','O',2085,'',0,'2025-10-30','0000-00-00',1476,0,1517,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 12:24:19','','0000-00-00 00:00:00',0),(2276,0,0,1930,'2526','H','O',2086,'',0,'2025-10-30','0000-00-00',1531,0,1572,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 12:26:31','','0000-00-00 00:00:00',0),(2277,0,0,1700,'2526','H','I',91,'',0,'2025-10-30','0000-00-00',1307,103,1346,0,'D02','',0,31500.00,0.00,0.00,31500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-31500,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(2278,0,0,1931,'2526','H','O',2087,'',0,'2025-10-30','0000-00-00',1532,0,1573,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 12:34:19','','0000-00-00 00:00:00',0),(2279,0,0,1933,'2526','H','O',2088,'',0,'2025-10-30','0000-00-00',1534,0,1574,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','37382','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 12:44:13','','0000-00-00 00:00:00',0),(2280,0,0,1935,'2526','H','O',2089,'',0,'2025-10-30','0000-00-00',1535,0,1576,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 12:48:19','','0000-00-00 00:00:00',0),(2281,0,0,1932,'2526','H','O',2090,'',0,'2025-10-30','0000-00-00',1533,0,452,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 13:05:48','','0000-00-00 00:00:00',0),(2282,0,0,1938,'2526','H','O',2091,'',0,'2025-10-30','0000-00-00',1537,0,1578,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','87059','','scan     ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 13:06:04','','0000-00-00 00:00:00',0),(2283,0,0,1939,'2526','H','O',2092,'',0,'2025-10-30','0000-00-00',1538,0,1579,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 13:42:30','','0000-00-00 00:00:00',0),(2284,0,0,1918,'2526','H','O',2093,'',0,'2025-10-30','0000-00-00',1521,0,1562,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','pnb','','47014','','scan',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 14:01:21','','0000-00-00 00:00:00',0),(2285,0,0,1943,'2526','H','O',2094,'',0,'2025-10-30','0000-00-00',294,0,310,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 16:05:41','','0000-00-00 00:00:00',0),(2286,0,0,1944,'2526','H','O',2095,'',0,'2025-10-30','0000-00-00',1539,0,1582,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 16:47:47','','0000-00-00 00:00:00',0),(2287,0,0,1945,'2526','H','O',2096,'',0,'2025-10-30','0000-00-00',1133,0,1173,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-10-30 16:50:32','','0000-00-00 00:00:00',0),(2288,0,0,1946,'2526','H','O',2097,'',0,'2025-10-30','0000-00-00',1540,0,1583,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 16:52:57','','0000-00-00 00:00:00',0),(2289,0,0,1947,'2526','H','O',2098,'',0,'2025-10-30','0000-00-00',1541,0,1584,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 17:00:33','','0000-00-00 00:00:00',0),(2290,0,0,1948,'2526','H','O',2099,'',0,'2025-10-30','0000-00-00',1542,0,1585,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','2','bob','3185','3185','','card',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 17:03:02','','0000-00-00 00:00:00',0),(2291,0,0,1949,'2526','H','O',2100,'',0,'2025-10-30','0000-00-00',1543,0,1586,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 17:06:33','','0000-00-00 00:00:00',0),(2292,0,0,1950,'2526','H','O',2101,'',0,'2025-10-30','0000-00-00',1544,0,1587,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 17:08:13','','0000-00-00 00:00:00',0),(2293,0,0,1951,'2526','H','O',2102,'',0,'2025-10-30','0000-00-00',1545,0,1588,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 17:09:58','','0000-00-00 00:00:00',0),(2294,0,0,1953,'2526','H','O',2103,'',0,'2025-10-30','0000-00-00',911,0,942,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 17:12:57','','0000-00-00 00:00:00',0),(2295,0,0,1954,'2526','H','O',2104,'',0,'2025-10-30','0000-00-00',1475,0,1516,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','86588','','scan',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 17:15:16','','0000-00-00 00:00:00',0),(2296,0,0,1955,'2526','H','O',2105,'',0,'2025-10-30','0000-00-00',1547,0,1590,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 17:17:20','','0000-00-00 00:00:00',0),(2297,0,0,1952,'2526','H','O',2106,'',0,'2025-10-30','0000-00-00',1546,0,1589,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 17:21:01','','0000-00-00 00:00:00',0),(2298,0,0,1944,'2526','H','O',2107,'',0,'2025-10-30','0000-00-00',1539,0,1582,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 17:31:47','','0000-00-00 00:00:00',0),(2299,0,0,1956,'2526','H','O',2108,'',0,'2025-10-30','0000-00-00',1548,0,1591,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 17:34:49','','0000-00-00 00:00:00',0),(2300,0,0,1957,'2526','H','O',2109,'',0,'2025-10-30','0000-00-00',1549,0,1592,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 17:37:12','','0000-00-00 00:00:00',0),(2301,0,0,1958,'2526','H','O',2110,'',0,'2025-10-30','0000-00-00',1550,0,1593,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','56141','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 17:40:54','','0000-00-00 00:00:00',0),(2302,0,0,1959,'2526','H','O',2111,'',0,'2025-10-30','0000-00-00',753,0,785,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 17:43:33','','0000-00-00 00:00:00',0),(2303,0,0,1960,'2526','H','O',2112,'',0,'2025-10-30','0000-00-00',1551,0,1594,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 17:45:35','','0000-00-00 00:00:00',0),(2304,0,0,1961,'2526','H','O',2113,'',0,'2025-10-30','0000-00-00',1552,0,1595,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 17:49:52','','0000-00-00 00:00:00',0),(2305,0,0,1956,'2526','H','O',2114,'',0,'2025-10-30','0000-00-00',1548,0,1591,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','71817','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 17:55:32','','0000-00-00 00:00:00',0),(2306,0,0,1962,'2526','H','O',2115,'',0,'2025-10-30','0000-00-00',1553,0,1596,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','48605','','scan     ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 17:58:48','','0000-00-00 00:00:00',0),(2307,0,0,1963,'2526','H','O',2116,'',0,'2025-10-30','0000-00-00',1554,0,1597,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 18:02:55','','0000-00-00 00:00:00',0),(2308,0,0,1964,'2526','H','O',2117,'',0,'2025-10-30','0000-00-00',1555,0,1598,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 18:04:25','','0000-00-00 00:00:00',0),(2309,0,0,1966,'2526','H','O',2118,'',0,'2025-10-30','0000-00-00',1556,0,1599,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 18:15:08','','0000-00-00 00:00:00',0),(2310,0,0,1965,'2526','H','O',2119,'',0,'2025-10-30','0000-00-00',1179,0,1218,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 18:15:58','','0000-00-00 00:00:00',0),(2311,0,0,1968,'2526','H','O',2120,'',0,'2025-10-30','0000-00-00',1558,0,1601,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 18:17:25','','0000-00-00 00:00:00',0),(2312,0,0,1967,'2526','H','O',2121,'',0,'2025-10-30','0000-00-00',1557,0,1600,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 18:18:17','','0000-00-00 00:00:00',0),(2313,0,0,1969,'2526','H','O',2122,'',0,'2025-10-30','0000-00-00',1559,0,1602,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 18:19:58','','0000-00-00 00:00:00',0),(2314,0,0,1970,'2526','H','O',2123,'',0,'2025-10-30','0000-00-00',1560,0,1603,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 18:20:20','','0000-00-00 00:00:00',0),(2315,0,0,165,'2526','H','D',101,'',0,'2025-10-30','0000-00-00',0,13,162,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10000,0,'0000-00-00','','N','N','D','N',-9800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-30 18:28:06','','0000-00-00 00:00:00',0),(2316,0,0,1971,'2526','H','O',2124,'',0,'2025-10-30','0000-00-00',1561,0,1604,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','67190','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 18:30:35','','0000-00-00 00:00:00',0),(2317,0,0,1972,'2526','H','O',2125,'',0,'2025-10-30','0000-00-00',1562,0,1605,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 18:34:37','','0000-00-00 00:00:00',0),(2318,0,0,1934,'2526','H','D',102,'',0,'2025-10-30','0000-00-00',0,110,1575,0,'D27','',0,12500.00,0.00,0.00,12500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',-2500.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-30 18:37:42','riya','2025-10-30 18:41:29',0),(2319,0,0,1973,'2526','H','O',2126,'',0,'2025-10-30','0000-00-00',1105,0,1143,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','bank','','50591','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 18:37:49','','0000-00-00 00:00:00',0),(2320,0,0,1974,'2526','H','O',2127,'',0,'2025-10-30','0000-00-00',1563,0,1606,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 18:41:18','','0000-00-00 00:00:00',0),(2321,0,0,1934,'2526','H','I',92,'',0,'2025-10-30','0000-00-00',0,110,1575,0,'D27','',0,12500.00,0.00,0.00,12500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-2500.00,-15000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-30 18:43:27','','0000-00-00 00:00:00',0),(2322,0,0,1975,'2526','H','O',2128,'',0,'2025-10-30','0000-00-00',1564,0,1607,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','YES BANK','','103896','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-30 18:43:30','','0000-00-00 00:00:00',0),(2323,0,0,1976,'2526','H','O',2129,'',0,'2025-10-30','0000-00-00',1565,0,1608,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 18:44:03','','0000-00-00 00:00:00',0),(2324,0,0,1977,'2526','H','O',2130,'',0,'2025-10-30','0000-00-00',1566,0,1609,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 18:46:42','','0000-00-00 00:00:00',0),(2325,0,0,1969,'2526','H','O',2131,'',0,'2025-10-30','0000-00-00',1559,0,1602,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 18:50:24','','0000-00-00 00:00:00',0),(2326,0,0,1978,'2526','H','O',2132,'',0,'2025-10-30','0000-00-00',1567,0,1610,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 18:53:04','','0000-00-00 00:00:00',0),(2327,0,0,1979,'2526','H','O',2133,'',0,'2025-10-30','0000-00-00',1568,0,1611,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 18:53:39','','0000-00-00 00:00:00',0),(2328,0,0,1981,'2526','H','O',2134,'',0,'2025-10-30','0000-00-00',1569,0,1612,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-30 19:16:27','','0000-00-00 00:00:00',0),(2329,0,0,1982,'2526','H','O',2135,'',0,'2025-10-30','0000-00-00',1570,0,1613,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 19:19:29','','0000-00-00 00:00:00',0),(2330,0,0,1983,'2526','H','O',2136,'',0,'2025-10-30','0000-00-00',427,0,449,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 19:20:01','','0000-00-00 00:00:00',0),(2331,0,0,1984,'2526','H','O',2137,'',0,'2025-10-30','0000-00-00',680,0,709,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS BANK','','71817','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-30 19:25:16','','0000-00-00 00:00:00',0),(2332,0,0,1985,'2526','H','O',2138,'',0,'2025-10-30','0000-00-00',221,0,234,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 19:28:02','','0000-00-00 00:00:00',0),(2333,0,0,1974,'2526','H','O',2139,'',0,'2025-10-30','0000-00-00',1563,0,1606,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 19:37:19','','0000-00-00 00:00:00',0),(2334,0,0,1986,'2526','H','O',2140,'',0,'2025-10-30','0000-00-00',1571,0,1614,0,'D14','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-30 20:02:38','','0000-00-00 00:00:00',0),(2335,0,0,1987,'2526','H','O',2141,'',0,'2025-10-30','0000-00-00',1572,0,1615,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-30 20:10:15','','0000-00-00 00:00:00',0),(2336,0,0,1989,'2526','H','O',2142,'',0,'2025-10-31','0000-00-00',1573,0,1617,0,'D27','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-31 08:57:46','','0000-00-00 00:00:00',0),(2337,0,0,1991,'2526','H','O',2143,'',0,'2025-10-31','0000-00-00',1575,0,1619,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 09:03:02','','0000-00-00 00:00:00',0),(2338,0,0,1990,'2526','H','O',2144,'',0,'2025-10-31','0000-00-00',1574,0,1618,0,'D03','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-31 09:03:28','','0000-00-00 00:00:00',0),(2339,0,0,1992,'2526','H','O',2145,'',0,'2025-10-31','0000-00-00',1576,0,1620,0,'D06','',0,1800.00,0.00,0.00,1800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','sbi ','','13931','','scan',1800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-10-31 09:08:51','','0000-00-00 00:00:00',0),(2340,0,0,1993,'2526','H','O',2146,'',0,'2025-10-31','0000-00-00',1577,0,1621,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 09:20:04','','0000-00-00 00:00:00',0),(2341,0,0,1994,'2526','H','O',2147,'',0,'2025-10-31','0000-00-00',1578,0,1622,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 09:47:08','','0000-00-00 00:00:00',0),(2342,0,0,1996,'2526','H','O',2148,'',0,'2025-10-31','0000-00-00',1579,0,1623,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 09:52:25','','0000-00-00 00:00:00',0),(2343,0,0,1997,'2526','H','O',2149,'',0,'2025-10-31','0000-00-00',1242,0,1283,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 09:53:48','','0000-00-00 00:00:00',0),(2344,0,0,1998,'2526','H','O',2150,'',0,'2025-10-31','0000-00-00',1580,0,1624,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 10:00:41','','0000-00-00 00:00:00',0),(2345,0,0,1999,'2526','H','O',2151,'',0,'2025-10-31','0000-00-00',1581,0,1625,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 10:01:42','','0000-00-00 00:00:00',0),(2346,0,0,2000,'2526','H','O',2152,'',0,'2025-10-31','0000-00-00',985,0,1017,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 10:03:07','','0000-00-00 00:00:00',0),(2347,0,0,2001,'2526','H','O',2153,'',0,'2025-10-31','0000-00-00',600,0,630,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 10:05:13','','0000-00-00 00:00:00',0),(2348,0,0,2002,'2526','H','O',2154,'',0,'2025-10-31','0000-00-00',1582,0,1626,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 10:12:54','','0000-00-00 00:00:00',0),(2349,0,0,2003,'2526','H','O',2155,'',0,'2025-10-31','0000-00-00',1583,0,1627,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 10:17:34','','0000-00-00 00:00:00',0),(2350,0,0,2004,'2526','H','O',2156,'',0,'2025-10-31','0000-00-00',1584,0,1628,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','77953','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 10:20:33','','0000-00-00 00:00:00',0),(2351,0,0,2006,'2526','H','O',2157,'',0,'2025-10-31','0000-00-00',1586,0,1630,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI','','25345','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 10:35:01','','0000-00-00 00:00:00',0),(2352,0,0,2007,'2526','H','O',2158,'',0,'2025-10-31','0000-00-00',1587,0,1631,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 10:37:08','','0000-00-00 00:00:00',0),(2353,0,0,2008,'2526','H','O',2159,'',0,'2025-10-31','0000-00-00',1588,0,1632,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 10:37:41','','0000-00-00 00:00:00',0),(2354,0,0,2009,'2526','H','O',2160,'',0,'2025-10-31','0000-00-00',1589,0,1633,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 10:39:03','','0000-00-00 00:00:00',0),(2355,0,0,2010,'2526','H','O',2161,'',0,'2025-10-31','0000-00-00',632,0,662,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 2172','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 10:40:34','reception','2025-10-31 11:16:04',0),(2356,0,0,2012,'2526','H','O',2162,'',0,'2025-10-31','0000-00-00',1591,0,1635,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 10:50:03','','0000-00-00 00:00:00',0),(2357,0,0,2011,'2526','H','O',2163,'',0,'2025-10-31','0000-00-00',1590,0,1634,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 10:50:34','','0000-00-00 00:00:00',0),(2358,0,0,2013,'2526','H','O',2164,'',0,'2025-10-31','0000-00-00',1592,0,1636,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 10:53:42','','0000-00-00 00:00:00',0),(2359,0,0,2014,'2526','H','O',2165,'',0,'2025-10-31','0000-00-00',1593,0,1637,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 10:54:00','','0000-00-00 00:00:00',0),(2360,0,0,2015,'2526','H','O',2166,'',0,'2025-10-31','0000-00-00',1594,0,1638,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','06782','','scan     ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 10:58:10','','0000-00-00 00:00:00',0),(2361,0,0,2016,'2526','H','O',2167,'',0,'2025-10-31','0000-00-00',1595,0,1639,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','01972','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 10:59:34','','0000-00-00 00:00:00',0),(2362,0,0,2017,'2526','H','O',2168,'',0,'2025-10-31','0000-00-00',1596,0,1640,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 11:02:29','','0000-00-00 00:00:00',0),(2363,0,0,2019,'2526','H','O',2169,'',0,'2025-10-31','0000-00-00',1597,0,1642,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 11:08:52','','0000-00-00 00:00:00',0),(2364,0,0,2020,'2526','H','O',2170,'',0,'2025-10-31','0000-00-00',1598,0,1643,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 11:11:01','','0000-00-00 00:00:00',0),(2365,0,0,1994,'2526','H','O',2171,'',0,'2025-10-31','0000-00-00',1578,0,1622,0,'D06','',0,8200.00,0.00,0.00,8200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',8200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 11:13:43','','0000-00-00 00:00:00',0),(2366,0,0,2010,'2526','H','O',2172,'',0,'2025-10-31','0000-00-00',632,0,662,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-31','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 2161','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 11:16:04','reception','2025-10-31 11:16:42',0),(2367,0,0,2021,'2526','H','O',2173,'',0,'2025-10-31','0000-00-00',1599,0,1644,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 11:19:45','','0000-00-00 00:00:00',0),(2368,0,0,2022,'2526','H','O',2174,'',0,'2025-10-31','0000-00-00',1600,0,1645,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 11:21:09','','0000-00-00 00:00:00',0),(2369,0,0,2023,'2526','H','O',2175,'',0,'2025-10-31','0000-00-00',988,0,1020,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 11:23:09','','0000-00-00 00:00:00',0),(2370,0,0,2024,'2526','H','O',2176,'',0,'2025-10-31','0000-00-00',1601,0,1646,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','05552','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 11:23:17','','0000-00-00 00:00:00',0),(2371,0,0,2005,'2526','H','O',2177,'',0,'2025-10-31','0000-00-00',1585,0,1629,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK BANK','','41034','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 11:26:02','','0000-00-00 00:00:00',0),(2372,0,0,2026,'2526','H','O',2178,'',0,'2025-10-31','0000-00-00',1602,0,1158,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 11:27:02','','0000-00-00 00:00:00',0),(2373,0,0,2028,'2526','H','O',2179,'',0,'2025-10-31','0000-00-00',1603,0,1648,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 11:33:10','','0000-00-00 00:00:00',0),(2374,0,0,2025,'2526','H','O',2180,'',0,'2025-10-31','0000-00-00',1236,0,1277,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 11:33:15','','0000-00-00 00:00:00',0),(2375,0,0,1996,'2526','H','O',2181,'',0,'2025-10-31','0000-00-00',1579,0,1623,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 11:37:45','','0000-00-00 00:00:00',0),(2376,0,0,2029,'2526','H','O',2182,'',0,'2025-10-31','0000-00-00',1604,0,1649,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 11:38:12','','0000-00-00 00:00:00',0),(2377,0,0,2031,'2526','H','O',2183,'',0,'2025-10-31','0000-00-00',1606,0,1651,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 11:40:17','','0000-00-00 00:00:00',0),(2378,0,0,2032,'2526','H','O',2184,'',0,'2025-10-31','0000-00-00',1607,0,1652,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','22334','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 11:41:08','','0000-00-00 00:00:00',0),(2379,0,0,2030,'2526','H','O',2185,'',0,'2025-10-31','0000-00-00',1605,0,1650,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 11:41:55','','0000-00-00 00:00:00',0),(2380,0,0,2033,'2526','H','O',2186,'',0,'2025-10-31','0000-00-00',1608,0,1653,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 11:42:00','','0000-00-00 00:00:00',0),(2381,0,0,1989,'2526','H','O',2187,'',0,'2025-10-31','0000-00-00',1573,0,1617,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 11:42:26','','0000-00-00 00:00:00',0),(2382,0,0,2034,'2526','H','O',2188,'',0,'2025-10-31','0000-00-00',1609,0,1654,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 11:45:44','','0000-00-00 00:00:00',0),(2383,0,0,2035,'2526','H','O',2189,'',0,'2025-10-31','0000-00-00',1610,0,1655,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 11:47:30','','0000-00-00 00:00:00',0),(2384,0,0,2036,'2526','H','O',2190,'',0,'2025-10-31','0000-00-00',1611,0,1656,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 11:51:50','','0000-00-00 00:00:00',0),(2385,0,0,2038,'2526','H','O',2191,'',0,'2025-10-31','0000-00-00',63,0,74,0,'D02','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 11:56:39','','0000-00-00 00:00:00',0),(2386,0,0,2016,'2526','H','O',2192,'',0,'2025-10-31','0000-00-00',1595,0,1639,0,'D06','',0,6900.00,0.00,0.00,6900.00,1300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','11909','','scan',5600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 11:56:43','','0000-00-00 00:00:00',0),(2387,0,0,2039,'2526','H','O',2193,'',0,'2025-10-31','0000-00-00',1613,0,1658,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 11:59:28','','0000-00-00 00:00:00',0),(2388,0,0,2037,'2526','H','O',2194,'',0,'2025-10-31','0000-00-00',1612,0,1657,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 12:00:02','','0000-00-00 00:00:00',0),(2389,0,0,2040,'2526','H','O',2195,'',0,'2025-10-31','0000-00-00',1614,0,1659,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 2200','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-31 12:03:26','manshi','2025-10-31 12:14:46',0),(2390,0,0,2041,'2526','H','O',2196,'',0,'2025-10-31','0000-00-00',1615,0,1660,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 12:05:41','','0000-00-00 00:00:00',0),(2391,0,0,2042,'2526','H','O',2197,'',0,'2025-10-31','0000-00-00',1616,0,1661,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 12:06:33','','0000-00-00 00:00:00',0),(2392,0,0,2019,'2526','H','O',2198,'',0,'2025-10-31','0000-00-00',1597,0,1642,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 12:07:40','','0000-00-00 00:00:00',0),(2393,0,0,2040,'2526','H','O',2199,'',0,'2025-10-31','0000-00-00',1614,0,1659,0,'D03','',0,600.00,0.00,0.00,600.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-31 12:13:43','','0000-00-00 00:00:00',0),(2394,0,0,2040,'2526','H','O',2200,'',0,'2025-10-31','0000-00-00',1614,0,1659,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-31','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 2195','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-31 12:14:46','manshi','2025-10-31 12:15:57',0),(2395,0,0,2020,'2526','H','O',2201,'',0,'2025-10-31','0000-00-00',1598,0,1643,0,'D02','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 12:15:19','','0000-00-00 00:00:00',0),(2396,0,0,1942,'2526','H','D',103,'',0,'2025-10-31','0000-00-00',0,114,1581,0,'D27','',0,6900.00,0.00,0.00,6900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-5000,0,'0000-00-00','','N','N','F','N',1900.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-31 12:16:01','','0000-00-00 00:00:00',0),(2397,0,0,2045,'2526','H','O',2202,'',0,'2025-10-31','0000-00-00',1619,0,1664,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 12:16:34','','0000-00-00 00:00:00',0),(2398,0,0,2044,'2526','H','O',2203,'',0,'2025-10-31','0000-00-00',1618,0,1663,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 12:16:35','','0000-00-00 00:00:00',0),(2399,0,0,1660,'2526','H','D',104,'',0,'2025-10-31','0000-00-00',0,102,1360,0,'D27','',0,46600.00,0.00,0.00,46600.00,13980.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',32620.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-31 12:16:58','vishal','2025-10-31 12:28:40',0),(2400,0,0,2043,'2526','H','O',2204,'',0,'2025-10-31','0000-00-00',1617,0,1662,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','97199','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 12:17:05','','0000-00-00 00:00:00',0),(2401,0,0,2040,'2526','H','O',2205,'',0,'2025-10-31','0000-00-00',1614,0,1659,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-31 12:17:12','','0000-00-00 00:00:00',0),(2402,0,0,2047,'2526','H','O',2206,'',0,'2025-10-31','0000-00-00',1621,0,1666,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 12:19:43','','0000-00-00 00:00:00',0),(2403,0,0,2048,'2526','H','O',2207,'',0,'2025-10-31','0000-00-00',1028,0,1062,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 12:19:53','','0000-00-00 00:00:00',0),(2404,0,0,2049,'2526','H','O',2208,'',0,'2025-10-31','0000-00-00',1622,0,1667,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 12:20:45','','0000-00-00 00:00:00',0),(2405,0,0,1998,'2526','H','O',2209,'',0,'2025-10-31','0000-00-00',1580,0,1624,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 12:27:58','','0000-00-00 00:00:00',0),(2406,0,0,1999,'2526','H','O',2210,'',0,'2025-10-31','0000-00-00',1581,0,1625,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 12:29:16','','0000-00-00 00:00:00',0),(2407,0,0,2050,'2526','H','O',2211,'',0,'2025-10-31','0000-00-00',1623,0,1668,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 12:31:43','','0000-00-00 00:00:00',0),(2408,0,0,2051,'2526','H','O',2212,'',0,'2025-10-31','0000-00-00',1624,0,1669,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 12:32:12','','0000-00-00 00:00:00',0),(2409,0,0,1660,'2526','H','I',93,'',0,'2025-10-31','0000-00-00',0,102,1360,0,'D27','',0,46600.00,0.00,0.00,46600.00,13900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-32700,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(2410,0,0,2034,'2526','H','O',2213,'',0,'2025-10-31','0000-00-00',1609,0,1654,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 12:35:30','','0000-00-00 00:00:00',0),(2411,0,0,2052,'2526','H','O',2214,'',0,'2025-10-31','0000-00-00',1625,0,1670,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-31 12:36:47','','0000-00-00 00:00:00',0),(2412,0,0,2053,'2526','H','O',2215,'',0,'2025-10-31','0000-00-00',1626,0,1671,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 12:46:36','','0000-00-00 00:00:00',0),(2413,0,0,2055,'2526','H','O',2216,'',0,'2025-10-31','0000-00-00',1628,0,1673,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 12:49:14','','0000-00-00 00:00:00',0),(2414,0,0,2056,'2526','H','O',2217,'',0,'2025-10-31','0000-00-00',331,0,347,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 12:50:32','','0000-00-00 00:00:00',0),(2415,0,0,2046,'2526','H','O',2218,'',0,'2025-10-31','0000-00-00',1620,0,1665,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100 DISCOUNT','HO 2231','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 12:57:37','drashti','2025-10-31 14:46:46',0),(2416,0,0,2013,'2526','H','O',2219,'',0,'2025-10-31','0000-00-00',1592,0,1636,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 13:01:22','','0000-00-00 00:00:00',0),(2417,0,0,2057,'2526','H','O',2220,'',0,'2025-10-31','0000-00-00',1629,0,1674,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 13:04:40','','0000-00-00 00:00:00',0),(2418,0,0,2058,'2526','H','O',2221,'',0,'2025-10-31','0000-00-00',1630,0,1675,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 13:09:52','','0000-00-00 00:00:00',0),(2419,0,0,2059,'2526','H','O',2222,'',0,'2025-10-31','0000-00-00',1631,0,1676,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 13:12:15','','0000-00-00 00:00:00',0),(2420,0,0,2060,'2526','H','O',2223,'',0,'2025-10-31','0000-00-00',1632,0,1677,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 13:14:35','','0000-00-00 00:00:00',0),(2421,0,0,2061,'2526','H','O',2224,'',0,'2025-10-31','0000-00-00',1633,0,1678,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 13:16:12','','0000-00-00 00:00:00',0),(2422,0,0,2052,'2526','H','O',2225,'',0,'2025-10-31','0000-00-00',1625,0,1670,0,'D03','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-31 13:26:20','','0000-00-00 00:00:00',0),(2423,0,0,2058,'2526','H','O',2226,'',0,'2025-10-31','0000-00-00',1630,0,1675,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 13:28:17','','0000-00-00 00:00:00',0),(2424,0,0,2043,'2526','H','O',2227,'',0,'2025-10-31','0000-00-00',1617,0,1662,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','07049','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 13:28:18','','0000-00-00 00:00:00',0),(2425,0,0,1942,'2526','H','I',94,'',0,'2025-10-31','0000-00-00',0,114,1581,0,'D27','',0,6900.00,0.00,0.00,6900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6900,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-31 13:32:12','','0000-00-00 00:00:00',0),(2427,0,0,2062,'2526','H','O',2228,'',0,'2025-10-31','0000-00-00',1634,0,1679,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','95856','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 13:51:33','','0000-00-00 00:00:00',0),(2428,0,0,2063,'2526','H','O',2229,'',0,'2025-10-31','0000-00-00',1635,0,1680,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 14:11:18','','0000-00-00 00:00:00',0),(2429,0,0,2064,'2526','H','O',2230,'',0,'2025-10-31','0000-00-00',1636,0,1681,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 14:25:16','','0000-00-00 00:00:00',0),(2430,0,0,2046,'2526','H','O',2231,'',0,'2025-10-31','0000-00-00',1620,0,1665,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-31','Y','N','N','','N',0.00,'','Y','100 DISCOUNT','','HO 2218','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 14:46:46','drashti','2025-10-31 14:47:04',0),(2431,0,0,2046,'2526','H','O',2232,'',0,'2025-10-31','0000-00-00',1620,0,1665,0,'D06','',0,500.00,0.00,0.00,500.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 14:47:48','','0000-00-00 00:00:00',0),(2432,0,0,2004,'2526','H','O',2233,'',0,'2025-10-31','0000-00-00',1584,0,1628,0,'D02','',0,4000.00,0.00,0.00,4000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','sbi ','','81624','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 15:23:09','','0000-00-00 00:00:00',0),(2433,0,0,2066,'2526','H','O',2234,'',0,'2025-10-31','0000-00-00',585,0,616,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 16:12:09','','0000-00-00 00:00:00',0),(2434,0,0,2067,'2526','H','O',2235,'',0,'2025-10-31','0000-00-00',1637,0,1682,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 16:12:57','','0000-00-00 00:00:00',0),(2435,0,0,2068,'2526','H','O',2236,'',0,'2025-10-31','0000-00-00',1638,0,1683,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 16:24:28','','0000-00-00 00:00:00',0),(2436,0,0,2071,'2526','H','O',2237,'',0,'2025-10-31','0000-00-00',1641,0,1686,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 16:43:51','','0000-00-00 00:00:00',0),(2437,0,0,2074,'2526','H','O',2238,'',0,'2025-10-31','0000-00-00',1612,0,1657,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 17:00:57','','0000-00-00 00:00:00',0),(2438,0,0,2075,'2526','H','O',2239,'',0,'2025-10-31','0000-00-00',1644,0,1689,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 17:03:15','','0000-00-00 00:00:00',0),(2439,0,0,2076,'2526','H','O',2240,'',0,'2025-10-31','0000-00-00',1569,0,1612,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 17:04:55','','0000-00-00 00:00:00',0),(2440,0,0,2077,'2526','H','O',2241,'',0,'2025-10-31','0000-00-00',1645,0,1690,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 17:08:18','','0000-00-00 00:00:00',0),(2441,0,0,2078,'2526','H','O',2242,'',0,'2025-10-31','0000-00-00',1589,0,1633,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 17:10:51','','0000-00-00 00:00:00',0),(2442,0,0,2082,'2526','H','O',2243,'',0,'2025-10-31','0000-00-00',1648,0,1693,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 17:15:13','','0000-00-00 00:00:00',0),(2443,0,0,2083,'2526','H','O',2244,'',0,'2025-10-31','0000-00-00',1649,0,1694,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 17:15:29','','0000-00-00 00:00:00',0),(2444,0,0,2084,'2526','H','O',2245,'',0,'2025-10-31','0000-00-00',1650,0,1695,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 2263','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 17:16:43','reception','2025-10-31 17:57:57',0),(2445,0,0,2085,'2526','H','O',2246,'',0,'2025-10-31','0000-00-00',1651,0,1696,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 17:20:59','','0000-00-00 00:00:00',0),(2446,0,0,2086,'2526','H','O',2247,'',0,'2025-10-31','0000-00-00',1652,0,1697,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 17:24:17','','0000-00-00 00:00:00',0),(2447,0,0,2079,'2526','H','O',2248,'',0,'2025-10-31','0000-00-00',1646,0,1691,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 2277','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-31 17:27:17','manshi','2025-10-31 18:19:09',0),(2448,0,0,2087,'2526','H','O',2249,'',0,'2025-10-31','0000-00-00',416,0,438,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 17:28:03','','0000-00-00 00:00:00',0),(2449,0,0,2088,'2526','H','O',2250,'',0,'2025-10-31','0000-00-00',1653,0,1698,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','26616','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 17:38:45','','0000-00-00 00:00:00',0),(2450,0,0,2089,'2526','H','O',2251,'',0,'2025-10-31','0000-00-00',1596,0,1640,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 17:40:56','','0000-00-00 00:00:00',0),(2451,0,0,2081,'2526','H','O',2252,'',0,'2025-10-31','0000-00-00',1647,0,1692,0,'D06','',0,900.00,0.00,0.00,900.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 17:43:28','','0000-00-00 00:00:00',0),(2452,0,0,2090,'2526','H','O',2253,'',0,'2025-10-31','0000-00-00',1654,0,1699,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 17:45:15','','0000-00-00 00:00:00',0),(2453,0,0,2091,'2526','H','O',2254,'',0,'2025-10-31','0000-00-00',1655,0,1700,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 17:47:10','','0000-00-00 00:00:00',0),(2454,0,0,2094,'2526','H','O',2255,'',0,'2025-10-31','0000-00-00',975,0,1008,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 17:48:47','','0000-00-00 00:00:00',0),(2455,0,0,2093,'2526','H','O',2256,'',0,'2025-10-31','0000-00-00',885,0,917,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK BANK','','38626','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 17:49:05','','0000-00-00 00:00:00',0),(2456,0,0,2095,'2526','H','O',2257,'',0,'2025-10-31','0000-00-00',1657,0,1702,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 17:50:04','','0000-00-00 00:00:00',0),(2457,0,0,2096,'2526','H','O',2258,'',0,'2025-10-31','0000-00-00',1658,0,1703,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 17:51:52','','0000-00-00 00:00:00',0),(2458,0,0,2092,'2526','H','O',2259,'',0,'2025-10-31','0000-00-00',1656,0,1701,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','50042','','scan     ',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 2284','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 17:52:04','drashti','2025-10-31 18:26:45',0),(2459,0,0,2097,'2526','H','O',2260,'',0,'2025-10-31','0000-00-00',651,0,681,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 17:53:26','','0000-00-00 00:00:00',0),(2460,0,0,2080,'2526','H','O',2261,'',0,'2025-10-31','0000-00-00',1203,0,1242,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 17:54:48','','0000-00-00 00:00:00',0),(2461,0,0,2098,'2526','H','O',2262,'',0,'2025-10-31','0000-00-00',1659,0,1704,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','UPI LITE STATE','','11212','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 17:56:17','','0000-00-00 00:00:00',0),(2462,0,0,2084,'2526','H','O',2263,'',0,'2025-10-31','0000-00-00',1650,0,1695,0,'D06','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-10-31','Y','N','N','','N',0.00,'','Y','FOC','','HO 2245','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 17:57:57','reception','2025-10-31 17:58:15',0),(2463,0,0,2084,'2526','H','O',2264,'',0,'2025-10-31','0000-00-00',1650,0,1695,0,'D06','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 17:59:11','','0000-00-00 00:00:00',0),(2464,0,0,2099,'2526','H','O',2265,'',0,'2025-10-31','0000-00-00',1660,0,1705,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 2309','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 18:02:39','reception','2025-10-31 20:28:36',0),(2465,0,0,2100,'2526','H','O',2266,'',0,'2025-10-31','0000-00-00',1661,0,1706,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR. RIDHAM KHANDERIA','HO 2285','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-31 18:04:17','manshi','2025-10-31 18:28:25',0),(2466,0,0,2103,'2526','H','O',2267,'',0,'2025-10-31','0000-00-00',350,0,366,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 18:07:04','','0000-00-00 00:00:00',0),(2467,0,0,2104,'2526','H','O',2268,'',0,'2025-10-31','0000-00-00',1662,0,1707,0,'D27','',0,400.00,0.00,0.00,400.00,50.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','56379','','scan  ',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 18:09:45','','0000-00-00 00:00:00',0),(2468,0,0,2105,'2526','H','O',2269,'',0,'2025-10-31','0000-00-00',213,0,226,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 18:10:45','','0000-00-00 00:00:00',0),(2469,0,0,2096,'2526','H','O',2270,'',0,'2025-10-31','0000-00-00',1658,0,1703,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 18:12:23','','0000-00-00 00:00:00',0),(2470,0,0,2107,'2526','H','O',2271,'',0,'2025-10-31','0000-00-00',1307,0,1346,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 18:13:43','','0000-00-00 00:00:00',0),(2471,0,0,2108,'2526','H','O',2272,'',0,'2025-10-31','0000-00-00',1663,0,1708,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 18:14:01','','0000-00-00 00:00:00',0),(2472,0,0,2110,'2526','H','O',2273,'',0,'2025-10-31','0000-00-00',1293,0,1332,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 18:14:28','','0000-00-00 00:00:00',0),(2473,0,0,2111,'2526','H','O',2274,'',0,'2025-10-31','0000-00-00',1665,0,1710,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 18:15:59','','0000-00-00 00:00:00',0),(2474,0,0,2079,'2526','H','O',2275,'',0,'2025-10-31','0000-00-00',1646,0,1691,0,'D03','',0,600.00,0.00,0.00,600.00,50.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',550.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-31 18:17:35','','0000-00-00 00:00:00',0),(2475,0,0,2113,'2526','H','O',2276,'',0,'2025-10-31','0000-00-00',1134,0,1174,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 18:19:01','','0000-00-00 00:00:00',0),(2476,0,0,2079,'2526','H','O',2277,'',0,'2025-10-31','0000-00-00',1646,0,1691,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-31','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 2248','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-31 18:19:09','manshi','2025-10-31 18:19:36',0),(2477,0,0,2112,'2526','H','O',2278,'',0,'2025-10-31','0000-00-00',1666,0,1711,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 18:19:25','','0000-00-00 00:00:00',0),(2478,0,0,2088,'2526','H','O',2279,'',0,'2025-10-31','0000-00-00',1653,0,1698,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','45699','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 18:19:45','','0000-00-00 00:00:00',0),(2479,0,0,2079,'2526','H','O',2280,'',0,'2025-10-31','0000-00-00',1646,0,1691,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-31 18:20:23','','0000-00-00 00:00:00',0),(2480,0,0,2114,'2526','H','O',2281,'',0,'2025-10-31','0000-00-00',1667,0,1712,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 18:21:30','','0000-00-00 00:00:00',0),(2481,0,0,2115,'2526','H','O',2282,'',0,'2025-10-31','0000-00-00',875,0,907,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 18:22:43','','0000-00-00 00:00:00',0),(2482,0,0,2116,'2526','H','O',2283,'',0,'2025-10-31','0000-00-00',1668,0,1713,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 18:24:09','','0000-00-00 00:00:00',0),(2483,0,0,2092,'2526','H','O',2284,'',0,'2025-10-31','0000-00-00',1656,0,1701,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','BOB BANK','','50042','','',-750.00,0,0,'2025-10-31','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 2259','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 18:26:45','drashti','2025-10-31 18:27:41',0),(2484,0,0,2100,'2526','H','O',2285,'',0,'2025-10-31','0000-00-00',1661,0,1706,0,'D14','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-31','Y','N','N','','N',0.00,'','Y','FOC BY DR. RIDHAM KHANDERIA','','HO 2266','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-31 18:28:25','manshi','2025-10-31 18:28:55',0),(2485,0,0,2121,'2526','H','O',2286,'',0,'2025-10-31','0000-00-00',1672,0,1717,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 18:30:18','','0000-00-00 00:00:00',0),(2486,0,0,2122,'2526','H','O',2287,'',0,'2025-10-31','0000-00-00',1673,0,1718,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 18:32:07','','0000-00-00 00:00:00',0),(2487,0,0,2123,'2526','H','O',2288,'',0,'2025-10-31','0000-00-00',1674,0,1719,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 18:33:04','','0000-00-00 00:00:00',0),(2488,0,0,2124,'2526','H','O',2289,'',0,'2025-10-31','0000-00-00',1675,0,1720,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 18:33:39','','0000-00-00 00:00:00',0),(2489,0,0,2117,'2526','H','O',2290,'',0,'2025-10-31','0000-00-00',1669,0,1714,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','50042','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 18:35:34','','0000-00-00 00:00:00',0),(2490,0,0,2114,'2526','H','O',2291,'',0,'2025-10-31','0000-00-00',1667,0,1712,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 18:37:54','','0000-00-00 00:00:00',0),(2491,0,0,2125,'2526','H','O',2292,'',0,'2025-10-31','0000-00-00',1676,0,1721,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 18:38:16','','0000-00-00 00:00:00',0),(2492,0,0,2126,'2526','H','O',2293,'',0,'2025-10-31','0000-00-00',1677,0,1722,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK BANK','','12410','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 18:40:21','','0000-00-00 00:00:00',0),(2493,0,0,2127,'2526','H','O',2294,'',0,'2025-10-31','0000-00-00',1678,0,1723,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','08521','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 18:41:20','','0000-00-00 00:00:00',0),(2494,0,0,2128,'2526','H','O',2295,'',0,'2025-10-31','0000-00-00',1679,0,1724,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 18:42:53','','0000-00-00 00:00:00',0),(2495,0,0,2118,'2526','H','O',2296,'',0,'2025-10-31','0000-00-00',1670,0,1715,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-31 18:43:08','','0000-00-00 00:00:00',0),(2496,0,0,1988,'2526','H','D',106,'',0,'2025-10-31','0000-00-00',0,115,1616,0,'D03','',0,34000.00,0.00,0.00,34000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',34000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-31 18:43:17','vishal','2025-10-31 18:45:18',0),(2497,0,0,2121,'2526','H','O',2297,'',0,'2025-10-31','0000-00-00',1672,0,1717,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 18:49:59','','0000-00-00 00:00:00',0),(2498,0,0,2129,'2526','H','O',2298,'',0,'2025-10-31','0000-00-00',1680,0,1725,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 18:52:11','','0000-00-00 00:00:00',0),(2499,0,0,2116,'2526','H','O',2299,'',0,'2025-10-31','0000-00-00',1668,0,1713,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 18:56:45','','0000-00-00 00:00:00',0),(2500,0,0,2083,'2526','H','O',2300,'',0,'2025-10-31','0000-00-00',1649,0,1694,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 18:57:26','','0000-00-00 00:00:00',0),(2501,0,0,2126,'2526','H','O',2301,'',0,'2025-10-31','0000-00-00',1677,0,1722,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK BANK','','32206','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 19:03:50','','0000-00-00 00:00:00',0),(2502,0,0,1988,'2526','H','I',95,'',0,'2025-10-31','0000-00-00',0,115,1616,0,'D03','',0,34000.00,0.00,0.00,34000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-34000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-31 19:05:13','','0000-00-00 00:00:00',0),(2503,0,0,2131,'2526','H','O',2302,'',0,'2025-10-31','0000-00-00',567,0,594,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-31 19:15:05','','0000-00-00 00:00:00',0),(2504,0,0,2124,'2526','H','O',2303,'',0,'2025-10-31','0000-00-00',1675,0,1720,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 19:23:28','','0000-00-00 00:00:00',0),(2505,0,0,2132,'2526','H','O',2304,'',0,'2025-10-31','0000-00-00',1681,0,1726,0,'D27','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 19:30:22','','0000-00-00 00:00:00',0),(2506,0,0,2133,'2526','H','O',2305,'',0,'2025-10-31','0000-00-00',1682,0,1727,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK MAHINDRA','','27257','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-31 19:40:47','','0000-00-00 00:00:00',0),(2507,0,0,2131,'2526','H','O',2306,'',0,'2025-10-31','0000-00-00',567,0,594,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-10-31 20:06:05','','0000-00-00 00:00:00',0),(2508,0,0,2117,'2526','H','O',2307,'',0,'2025-10-31','0000-00-00',1669,0,1714,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-10-31 20:07:25','','0000-00-00 00:00:00',0),(2509,0,0,2130,'2526','H','O',2308,'',0,'2025-10-31','0000-00-00',240,0,255,0,'D27','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-10-31 20:19:17','','0000-00-00 00:00:00',0),(2510,0,0,2099,'2526','H','O',2309,'',0,'2025-10-31','0000-00-00',1660,0,1705,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-10-31','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 2265','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 20:28:36','reception','2025-10-31 20:28:51',0),(2511,0,0,2099,'2526','H','O',2310,'',0,'2025-10-31','0000-00-00',1660,0,1705,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 20:31:27','','0000-00-00 00:00:00',0),(2512,0,0,1888,'2526','H','D',107,'',0,'2025-10-31','0000-00-00',1454,109,1495,0,'D27','',0,12600.00,0.00,0.00,12600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6000,0,'0000-00-00','','N','N','F','N',6600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-10-31 21:14:57','riya','2025-10-31 21:15:29',0),(2513,0,0,2134,'2526','H','O',2311,'',0,'2025-10-31','0000-00-00',1683,0,1728,0,'D06','',0,5300.00,0.00,0.00,5300.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-10-31 21:21:08','','0000-00-00 00:00:00',0),(2514,0,0,1888,'2526','H','I',96,'',0,'2025-10-31','0000-00-00',1454,109,1495,0,'D27','',0,12600.00,0.00,0.00,12600.00,3400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-9200,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-10-31 21:44:29','','0000-00-00 00:00:00',0),(2515,0,0,2136,'2526','H','O',2312,'',0,'2025-11-01','0000-00-00',1684,0,1730,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','08576','','scan',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-01 09:13:08','','0000-00-00 00:00:00',0),(2516,0,0,2138,'2526','H','O',2313,'',0,'2025-11-01','0000-00-00',1686,0,1732,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 09:14:46','','0000-00-00 00:00:00',0),(2517,0,0,2137,'2526','H','O',2314,'',0,'2025-11-01','0000-00-00',1685,0,1731,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK MAHINDRA','','17865','','scan',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-01 09:15:32','','0000-00-00 00:00:00',0),(2518,0,0,2139,'2526','H','O',2315,'',0,'2025-11-01','0000-00-00',1687,0,1733,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 09:17:06','','0000-00-00 00:00:00',0),(2519,0,0,2140,'2526','H','O',2316,'',0,'2025-11-01','0000-00-00',1688,0,1734,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BANK','','13004','','scan',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-01 09:18:06','','0000-00-00 00:00:00',0),(2520,0,0,2141,'2526','H','O',2317,'',0,'2025-11-01','0000-00-00',1689,0,1735,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-01 09:47:51','','0000-00-00 00:00:00',0),(2521,0,0,2142,'2526','H','O',2318,'',0,'2025-11-01','0000-00-00',1690,0,1736,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 09:49:05','','0000-00-00 00:00:00',0),(2522,0,0,2143,'2526','H','O',2319,'',0,'2025-11-01','0000-00-00',913,0,944,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 10:00:19','','0000-00-00 00:00:00',0),(2523,0,0,2144,'2526','H','O',2320,'',0,'2025-11-01','0000-00-00',1652,0,1697,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 10:05:24','','0000-00-00 00:00:00',0),(2524,0,0,2145,'2526','H','O',2321,'',0,'2025-11-01','0000-00-00',1691,0,1737,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 10:13:52','','0000-00-00 00:00:00',0),(2525,0,0,2146,'2526','H','O',2322,'',0,'2025-11-01','0000-00-00',1692,0,1738,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 10:20:26','','0000-00-00 00:00:00',0),(2526,0,0,2147,'2526','H','O',2323,'',0,'2025-11-01','0000-00-00',1693,0,1739,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','63833','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 10:23:53','','0000-00-00 00:00:00',0),(2527,0,0,2148,'2526','H','O',2324,'',0,'2025-11-01','0000-00-00',1694,0,1740,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-01 10:24:38','','0000-00-00 00:00:00',0),(2528,0,0,2150,'2526','H','O',2325,'',0,'2025-11-01','0000-00-00',1695,0,1741,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','71718','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 10:26:56','','0000-00-00 00:00:00',0),(2529,0,0,2149,'2526','H','O',2326,'',0,'2025-11-01','0000-00-00',1607,0,1652,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','71402','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 10:31:38','','0000-00-00 00:00:00',0),(2530,0,0,2151,'2526','H','O',2327,'',0,'2025-11-01','0000-00-00',1696,0,1742,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 10:34:16','','0000-00-00 00:00:00',0),(2531,0,0,2153,'2526','H','O',2328,'',0,'2025-11-01','0000-00-00',1172,0,1211,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-01 10:37:11','','0000-00-00 00:00:00',0),(2532,0,0,2152,'2526','H','O',2329,'',0,'2025-11-01','0000-00-00',1697,0,1743,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 10:37:18','','0000-00-00 00:00:00',0),(2533,0,0,2154,'2526','H','O',2330,'',0,'2025-11-01','0000-00-00',1033,0,1067,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-01 10:38:05','','0000-00-00 00:00:00',0),(2534,0,0,2155,'2526','H','O',2331,'',0,'2025-11-01','0000-00-00',1149,0,1189,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 10:39:12','','0000-00-00 00:00:00',0),(2535,0,0,2156,'2526','H','O',2332,'',0,'2025-11-01','0000-00-00',800,0,831,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 10:39:22','','0000-00-00 00:00:00',0),(2536,0,0,2157,'2526','H','O',2333,'',0,'2025-11-01','0000-00-00',1698,0,1744,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 10:47:01','','0000-00-00 00:00:00',0),(2537,0,0,2160,'2526','H','O',2334,'',0,'2025-11-01','0000-00-00',1701,0,1747,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-01 10:48:52','','0000-00-00 00:00:00',0),(2538,0,0,2158,'2526','H','O',2335,'',0,'2025-11-01','0000-00-00',1699,0,1745,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 10:49:02','','0000-00-00 00:00:00',0),(2539,0,0,2159,'2526','H','O',2336,'',0,'2025-11-01','0000-00-00',1700,0,1746,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 10:49:08','','0000-00-00 00:00:00',0),(2540,0,0,2161,'2526','H','O',2337,'',0,'2025-11-01','0000-00-00',1702,0,1748,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 2345','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 10:50:21','drashti','2025-11-01 11:01:43',0),(2541,0,0,2163,'2526','H','O',2338,'',0,'2025-11-01','0000-00-00',1703,0,1749,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 10:52:03','','0000-00-00 00:00:00',0),(2542,0,0,2162,'2526','H','O',2339,'',0,'2025-11-01','0000-00-00',1261,0,1302,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','IDFC','','53043','','scan  ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 10:52:18','','0000-00-00 00:00:00',0),(2543,0,0,2164,'2526','H','O',2340,'',0,'2025-11-01','0000-00-00',1704,0,1750,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','23799','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 10:56:38','','0000-00-00 00:00:00',0),(2544,0,0,2161,'2526','H','O',2341,'',0,'2025-11-01','0000-00-00',1702,0,1748,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 10:58:44','','0000-00-00 00:00:00',0),(2545,0,0,2146,'2526','H','O',2342,'',0,'2025-11-01','0000-00-00',1692,0,1738,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','49936','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 10:59:08','','0000-00-00 00:00:00',0),(2546,0,0,2165,'2526','H','O',2343,'',0,'2025-11-01','0000-00-00',1705,0,1107,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 11:00:15','','0000-00-00 00:00:00',0),(2547,0,0,2166,'2526','H','O',2344,'',0,'2025-11-01','0000-00-00',1706,0,1751,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 11:01:25','','0000-00-00 00:00:00',0),(2548,0,0,2161,'2526','H','O',2345,'',0,'2025-11-01','0000-00-00',1702,0,1748,0,'D27','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-11-01','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 2337','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 11:01:43','drashti','2025-11-01 11:02:05',0),(2549,0,0,2161,'2526','H','O',2346,'',0,'2025-11-01','0000-00-00',1702,0,1748,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 11:02:58','','0000-00-00 00:00:00',0),(2550,0,0,2139,'2526','H','O',2347,'',0,'2025-11-01','0000-00-00',1687,0,1733,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 11:04:42','','0000-00-00 00:00:00',0),(2551,0,0,2167,'2526','H','O',2348,'',0,'2025-11-01','0000-00-00',287,0,303,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 11:05:37','','0000-00-00 00:00:00',0),(2552,0,0,2169,'2526','H','O',2349,'',0,'2025-11-01','0000-00-00',1096,0,1134,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','300 DISCOUNT','HO 2395','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 11:09:31','reception','2025-11-01 13:46:10',0),(2553,0,0,2170,'2526','H','O',2350,'',0,'2025-11-01','0000-00-00',1708,0,1753,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 11:12:39','','0000-00-00 00:00:00',0),(2554,0,0,2168,'2526','H','O',2351,'',0,'2025-11-01','0000-00-00',1707,0,1752,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 11:12:55','','0000-00-00 00:00:00',0),(2555,0,0,2171,'2526','H','O',2352,'',0,'2025-11-01','0000-00-00',1709,0,1754,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 11:13:08','','0000-00-00 00:00:00',0),(2556,0,0,2172,'2526','H','O',2353,'',0,'2025-11-01','0000-00-00',1710,0,1152,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 11:14:42','','0000-00-00 00:00:00',0),(2557,0,0,2174,'2526','H','O',2354,'',0,'2025-11-01','0000-00-00',1712,0,1756,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 11:16:20','','0000-00-00 00:00:00',0),(2558,0,0,2175,'2526','H','O',2355,'',0,'2025-11-01','0000-00-00',1713,0,1757,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 11:17:51','','0000-00-00 00:00:00',0),(2559,0,0,2165,'2526','H','O',2356,'',0,'2025-11-01','0000-00-00',1705,0,1107,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 11:18:21','','0000-00-00 00:00:00',0),(2560,0,0,2176,'2526','H','O',2357,'',0,'2025-11-01','0000-00-00',1714,0,1758,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 11:18:35','','0000-00-00 00:00:00',0),(2561,0,0,2177,'2526','H','O',2358,'',0,'2025-11-01','0000-00-00',1715,0,1759,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 11:20:25','','0000-00-00 00:00:00',0),(2562,0,0,2178,'2526','H','O',2359,'',0,'2025-11-01','0000-00-00',1716,0,1760,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 11:21:13','','0000-00-00 00:00:00',0),(2563,0,0,2179,'2526','H','O',2360,'',0,'2025-11-01','0000-00-00',1717,0,1761,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 11:23:21','','0000-00-00 00:00:00',0),(2564,0,0,2142,'2526','H','O',2361,'',0,'2025-11-01','0000-00-00',1690,0,1736,0,'D06','',0,6900.00,0.00,0.00,6900.00,1300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','45106','','scan',5600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 11:25:21','','0000-00-00 00:00:00',0),(2565,0,0,2180,'2526','H','O',2362,'',0,'2025-11-01','0000-00-00',1718,0,1762,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 11:26:26','','0000-00-00 00:00:00',0),(2566,0,0,2181,'2526','H','O',2363,'',0,'2025-11-01','0000-00-00',1719,0,1763,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 11:32:13','','0000-00-00 00:00:00',0),(2567,0,0,2174,'2526','H','O',2364,'',0,'2025-11-01','0000-00-00',1712,0,1756,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 11:33:15','','0000-00-00 00:00:00',0),(2568,0,0,2182,'2526','H','O',2365,'',0,'2025-11-01','0000-00-00',1132,0,1172,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 11:34:09','','0000-00-00 00:00:00',0),(2569,0,0,2183,'2526','H','O',2366,'',0,'2025-11-01','0000-00-00',1255,0,1296,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 11:38:03','','0000-00-00 00:00:00',0),(2570,0,0,2184,'2526','H','O',2367,'',0,'2025-11-01','0000-00-00',1720,0,1764,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','91117','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 11:43:11','','0000-00-00 00:00:00',0),(2571,0,0,2186,'2526','H','O',2368,'',0,'2025-11-01','0000-00-00',1721,0,1765,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 11:46:20','','0000-00-00 00:00:00',0),(2572,0,0,2187,'2526','H','O',2369,'',0,'2025-11-01','0000-00-00',1722,0,1766,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 11:47:02','','0000-00-00 00:00:00',0),(2573,0,0,2188,'2526','H','O',2370,'',0,'2025-11-01','0000-00-00',1723,0,1767,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 11:49:16','','0000-00-00 00:00:00',0),(2574,0,0,2189,'2526','H','O',2371,'',0,'2025-11-01','0000-00-00',1724,0,1768,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 11:57:17','','0000-00-00 00:00:00',0),(2575,0,0,2190,'2526','H','O',2372,'',0,'2025-11-01','0000-00-00',1725,0,1769,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 12:00:39','','0000-00-00 00:00:00',0),(2576,0,0,1782,'2526','H','D',108,'',0,'2025-11-01','0000-00-00',0,108,1456,0,'D27','',0,25000.00,0.00,0.00,25000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-14000,0,'0000-00-00','','N','N','F','N',11000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-01 12:01:26','vishal','2025-11-01 12:07:12',0),(2577,0,0,2191,'2526','H','O',2373,'',0,'2025-11-01','0000-00-00',1726,0,1770,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 12:04:27','','0000-00-00 00:00:00',0),(2578,0,0,2192,'2526','H','O',2374,'',0,'2025-11-01','0000-00-00',376,0,397,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 12:08:41','','0000-00-00 00:00:00',0),(2579,0,0,2179,'2526','H','O',2375,'',0,'2025-11-01','0000-00-00',1717,0,1761,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 12:09:08','','0000-00-00 00:00:00',0),(2580,0,0,2185,'2526','H','O',2376,'',0,'2025-11-01','0000-00-00',1332,0,1372,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 12:11:22','','0000-00-00 00:00:00',0),(2581,0,0,1782,'2526','H','I',97,'',0,'2025-11-01','0000-00-00',0,108,1456,0,'D27','',0,25000.00,0.00,0.00,25000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(2582,0,0,2193,'2526','H','O',2377,'',0,'2025-11-01','0000-00-00',1727,0,1103,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 12:17:38','','0000-00-00 00:00:00',0),(2583,0,0,2194,'2526','H','O',2378,'',0,'2025-11-01','0000-00-00',1728,0,1771,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 12:18:08','','0000-00-00 00:00:00',0),(2584,0,0,2196,'2526','H','O',2379,'',0,'2025-11-01','0000-00-00',1729,0,1773,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-01 12:22:05','','0000-00-00 00:00:00',0),(2585,0,0,2197,'2526','H','O',2380,'',0,'2025-11-01','0000-00-00',1730,0,1774,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 12:23:48','','0000-00-00 00:00:00',0),(2586,0,0,2175,'2526','H','O',2381,'',0,'2025-11-01','0000-00-00',1713,0,1757,0,'D27','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 12:28:25','','0000-00-00 00:00:00',0),(2587,0,0,2198,'2526','H','O',2382,'',0,'2025-11-01','0000-00-00',1731,0,1775,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','ujjivan small','','15592','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 12:29:14','','0000-00-00 00:00:00',0),(2588,0,0,2147,'2526','H','O',2383,'',0,'2025-11-01','0000-00-00',1693,0,1739,0,'D06','',0,6900.00,0.00,0.00,6900.00,1500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 12:34:25','','0000-00-00 00:00:00',0),(2590,0,0,2199,'2526','H','O',2384,'',0,'2025-11-01','0000-00-00',1732,0,1776,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 12:35:22','','0000-00-00 00:00:00',0),(2591,0,0,2194,'2526','H','O',2385,'',0,'2025-11-01','0000-00-00',1728,0,1771,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 12:35:52','','0000-00-00 00:00:00',0),(2592,0,0,2194,'2526','H','O',2386,'',0,'2025-11-01','0000-00-00',1728,0,1771,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 12:35:56','','0000-00-00 00:00:00',0),(2593,0,0,2176,'2526','H','O',2387,'',0,'2025-11-01','0000-00-00',1714,0,1758,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 12:44:38','','0000-00-00 00:00:00',0),(2594,0,0,2173,'2526','H','O',2388,'',0,'2025-11-01','0000-00-00',1711,0,1755,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 12:46:57','','0000-00-00 00:00:00',0),(2595,0,0,2200,'2526','H','O',2389,'',0,'2025-11-01','0000-00-00',1733,0,1777,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','CENTRAL BANK','','63758','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 12:47:15','','0000-00-00 00:00:00',0),(2596,0,0,2201,'2526','H','O',2390,'',0,'2025-11-01','0000-00-00',1734,0,1778,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 12:49:35','','0000-00-00 00:00:00',0),(2597,0,0,1727,'2526','H','I',98,'',0,'2025-11-01','0000-00-00',1363,107,1403,0,'D27','',0,32700.00,0.00,0.00,32700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-32700,0,'0000-00-00','','N','Y','F','N',0.00,'','Y','NAME MISMATCH','HI 99','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(2598,0,0,2202,'2526','H','O',2391,'',0,'2025-11-01','0000-00-00',1735,0,1779,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 12:53:20','','0000-00-00 00:00:00',0),(2599,0,0,2203,'2526','H','O',2392,'',0,'2025-11-01','0000-00-00',1736,0,1780,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','52524','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 12:56:27','','0000-00-00 00:00:00',0),(2600,0,0,1727,'2526','H','I',99,'',0,'2025-11-01','0000-00-00',1363,107,1403,0,'D27','',0,-32700.00,0.00,0.00,-32700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',0.00,'','Y','NAME MISMATCH','','HI 98','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-01 12:57:28','','0000-00-00 00:00:00',0),(2601,0,0,2204,'2526','H','O',2393,'',0,'2025-11-01','0000-00-00',1737,0,1781,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 12:58:07','','0000-00-00 00:00:00',0),(2602,0,0,2205,'2526','H','O',2394,'',0,'2025-11-01','0000-00-00',1738,0,1782,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 12:59:18','','0000-00-00 00:00:00',0),(2603,0,0,1727,'2526','H','D',110,'',0,'2025-11-01','0000-00-00',1363,107,1403,0,'D27','',0,32700.00,0.00,0.00,32700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-32700,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(2604,0,0,1727,'2526','H','I',100,'',0,'2025-11-01','0000-00-00',1363,107,1403,0,'D27','',0,32700.00,0.00,0.00,32700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-32700,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(2605,0,0,2169,'2526','H','O',2395,'',0,'2025-11-01','0000-00-00',1096,0,1134,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-01','Y','N','N','','N',0.00,'','Y','300 DISCOUNT','','HO 2349','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 13:46:10','reception','2025-11-01 13:46:44',0),(2606,0,0,414,'2526','H','D',111,'',0,'2025-11-01','0000-00-00',0,25,392,0,'D27','',0,338000.00,0.00,0.00,338000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-322000,0,'0000-00-00','','N','N','F','N',16000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-01 13:47:20','vishal','2025-11-01 14:45:20',0),(2607,0,0,2169,'2526','H','O',2396,'',0,'2025-11-01','0000-00-00',1096,0,1134,0,'D06','',0,500.00,0.00,0.00,500.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 13:47:34','','0000-00-00 00:00:00',0),(2608,0,0,2186,'2526','H','O',2397,'',0,'2025-11-01','0000-00-00',1721,0,1765,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 13:53:53','','0000-00-00 00:00:00',0),(2609,0,0,2203,'2526','H','O',2398,'',0,'2025-11-01','0000-00-00',1736,0,1780,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 13:56:11','','0000-00-00 00:00:00',0),(2610,0,0,2206,'2526','H','O',2399,'',0,'2025-11-01','0000-00-00',738,0,769,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 2401','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 14:20:00','urvashi','2025-11-01 15:01:34',0),(2611,0,0,2198,'2526','H','O',2400,'',1,'2025-11-01','0000-00-00',1731,0,1775,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'sacn',0,'','7','ujjivan bank','','71053','','',3500.00,0,0,'2025-11-20','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 14:37:09','urvashi','2025-11-20 12:59:09',0),(2612,0,0,2206,'2526','H','O',2401,'',0,'2025-11-01','0000-00-00',738,0,769,0,'D06','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-11-01','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 2399','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-01 15:01:34','urvashi','2025-11-01 15:01:51',0),(2613,0,0,2206,'2526','H','O',2402,'',0,'2025-11-01','0000-00-00',738,0,769,0,'D06','',0,400.00,0.00,0.00,400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-01 15:02:36','','0000-00-00 00:00:00',0),(2614,0,0,414,'2526','H','I',101,'',0,'2025-11-01','0000-00-00',0,25,392,0,'D27','',0,338000.00,0.00,0.00,338000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-338000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(2615,0,0,1936,'2526','H','D',112,'',0,'2025-11-01','0000-00-00',1514,111,1555,0,'D27','',0,48450.00,0.00,0.00,48450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-35000,0,'0000-00-00','','N','N','F','N',13450.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-01 15:18:36','vishal','2025-11-01 15:30:05',0),(2616,0,0,1936,'2526','H','I',102,'',0,'2025-11-01','0000-00-00',1514,111,1555,0,'D27','',0,48450.00,0.00,0.00,48450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-48450,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(2617,0,0,2207,'2526','H','O',2403,'',0,'2025-11-01','0000-00-00',1739,0,1783,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 16:27:11','','0000-00-00 00:00:00',0),(2618,0,0,2208,'2526','H','O',2404,'',0,'2025-11-01','0000-00-00',1740,0,1784,0,'D03','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS BANK','','78793','','scan ',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-01 17:12:21','','0000-00-00 00:00:00',0),(2619,0,0,2210,'2526','H','O',2405,'',0,'2025-11-01','0000-00-00',1741,0,1785,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','boi','','85604','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 17:36:12','','0000-00-00 00:00:00',0),(2620,0,0,2211,'2526','H','O',2406,'',0,'2025-11-01','0000-00-00',1742,0,1786,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-01 18:09:01','','0000-00-00 00:00:00',0),(2621,0,0,2212,'2526','H','O',2407,'',0,'2025-11-01','0000-00-00',1743,0,1787,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 18:09:21','','0000-00-00 00:00:00',0),(2622,0,0,2215,'2526','H','O',2408,'',0,'2025-11-01','0000-00-00',364,0,380,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 18:20:52','','0000-00-00 00:00:00',0),(2623,0,0,2209,'2526','H','O',2409,'',0,'2025-11-01','0000-00-00',1004,0,1036,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','95040','','scan',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-01 18:25:04','','0000-00-00 00:00:00',0),(2624,0,0,2216,'2526','H','O',2410,'',0,'2025-11-01','0000-00-00',901,0,932,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-01 18:41:02','','0000-00-00 00:00:00',0),(2625,0,0,2217,'2526','H','O',2411,'',0,'2025-11-01','0000-00-00',1307,0,1346,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-01 19:16:08','','0000-00-00 00:00:00',0),(2626,0,0,2218,'2526','H','O',2412,'',0,'2025-11-01','0000-00-00',1744,0,1789,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-01 19:19:44','','0000-00-00 00:00:00',0),(2627,0,0,2216,'2526','H','O',2413,'',0,'2025-11-01','0000-00-00',901,0,932,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-01 19:47:39','','0000-00-00 00:00:00',0),(2628,0,0,2220,'2526','H','O',2414,'',0,'2025-11-01','0000-00-00',1745,0,1791,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-01 20:10:07','','0000-00-00 00:00:00',0),(2629,0,0,2221,'2526','H','O',2415,'',0,'2025-11-01','0000-00-00',1746,0,1792,0,'D02','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 20:36:36','','0000-00-00 00:00:00',0),(2630,0,0,2220,'2526','H','O',2416,'',0,'2025-11-01','0000-00-00',1745,0,1791,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 20:38:40','','0000-00-00 00:00:00',0),(2631,0,0,2207,'2526','H','O',2417,'',0,'2025-11-01','0000-00-00',1739,0,1783,0,'D02','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','CENTRAL BANK','','88077','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-01 20:50:24','','0000-00-00 00:00:00',0),(2632,0,0,2222,'2526','H','O',2418,'',0,'2025-11-02','0000-00-00',1747,0,1456,0,'D27','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-02 09:40:41','','0000-00-00 00:00:00',0),(2633,0,0,2222,'2526','H','O',2419,'',0,'2025-11-02','0000-00-00',1747,0,1456,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-02 09:41:41','','0000-00-00 00:00:00',0),(2634,0,0,2065,'2526','H','D',113,'',0,'2025-11-02','0000-00-00',1635,119,1680,0,'D02','',0,45730.00,0.00,0.00,45730.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25000,0,'0000-00-00','','N','N','F','N',20730.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-02 09:44:42','riya','2025-11-02 10:31:03',0),(2635,0,0,2065,'2526','H','I',103,'',2,'2025-11-02','0000-00-00',1635,119,1680,0,'D02','',0,45730.00,0.00,0.00,45730.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-45730,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-02 10:37:55','riya','2025-11-02 11:31:39',0),(2636,0,0,2027,'2526','H','D',114,'',0,'2025-11-02','0000-00-00',0,118,1647,0,'D27','',0,52000.00,0.00,0.00,52000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',37000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-02 11:10:01','riya','2025-11-02 11:20:49',0),(2637,0,0,2027,'2526','H','I',104,'',0,'2025-11-02','0000-00-00',0,118,1647,0,'D27','',0,52000.00,0.00,0.00,52000.00,5200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-46800,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(2638,0,0,2223,'2526','H','O',2420,'',0,'2025-11-02','0000-00-00',1669,0,1714,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-02 11:33:50','','0000-00-00 00:00:00',0),(2639,0,0,2219,'2526','H','D',115,'',0,'2025-11-02','0000-00-00',0,123,1790,0,'D27','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-02 11:52:03','','0000-00-00 00:00:00',0),(2640,0,0,2219,'2526','H','I',105,'',0,'2025-11-02','0000-00-00',0,123,1790,0,'D27','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','Y','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-02 11:54:35','','0000-00-00 00:00:00',0),(2641,0,0,2224,'2526','H','O',2421,'',0,'2025-11-02','0000-00-00',1748,0,1793,0,'D14','',0,5000.00,0.00,0.00,5000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-02 12:45:54','','0000-00-00 00:00:00',0),(2642,0,0,2225,'2526','H','O',2422,'',0,'2025-11-02','0000-00-00',1749,0,1794,0,'D14','',0,1850.00,0.00,0.00,1850.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1850.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-02 12:56:46','','0000-00-00 00:00:00',0),(2644,0,0,2214,'2526','H','D',117,'',0,'2025-11-02','0000-00-00',0,122,1788,0,'D02','',0,35000.00,0.00,0.00,35000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','','N','N','F','N',15000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-02 17:38:52','riya','2025-11-02 17:49:12',0),(2645,0,0,2214,'2526','H','I',106,'',0,'2025-11-02','0000-00-00',0,122,1788,0,'D02','',0,35000.00,0.00,0.00,35000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-35000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-02 18:08:09','','0000-00-00 00:00:00',0),(2647,0,0,2227,'2526','H','O',2423,'',0,'2025-11-03','0000-00-00',1068,0,1108,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-03 09:06:35','','0000-00-00 00:00:00',0),(2648,0,0,2228,'2526','H','O',2424,'',0,'2025-11-03','0000-00-00',1750,0,1796,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','000000','','SCAN',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-03 09:10:02','','0000-00-00 00:00:00',0),(2649,0,0,2229,'2526','H','O',2425,'',0,'2025-11-03','0000-00-00',1751,0,1797,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','36928','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 09:10:10','','0000-00-00 00:00:00',0),(2650,0,0,2230,'2526','H','O',2426,'',0,'2025-11-03','0000-00-00',1752,0,1798,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','36928','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 09:11:44','','0000-00-00 00:00:00',0),(2651,0,0,2231,'2526','H','O',2427,'',0,'2025-11-03','0000-00-00',1753,0,1799,0,'D27','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','39969','','SCAN',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-03 09:15:28','','0000-00-00 00:00:00',0),(2652,0,0,2232,'2526','H','O',2428,'',0,'2025-11-03','0000-00-00',1307,0,1346,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-03 09:17:20','','0000-00-00 00:00:00',0),(2653,0,0,2233,'2526','H','O',2429,'',0,'2025-11-03','0000-00-00',1414,0,1454,0,'D27','',0,1050.00,0.00,0.00,1050.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1050.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-03 09:18:46','','0000-00-00 00:00:00',0),(2654,0,0,2234,'2526','H','O',2430,'',0,'2025-11-03','0000-00-00',1747,0,1456,0,'D27','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-03 09:19:36','','0000-00-00 00:00:00',0),(2655,0,0,2234,'2526','H','O',2431,'',0,'2025-11-03','0000-00-00',1747,0,1456,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 09:24:08','','0000-00-00 00:00:00',0),(2656,0,0,2235,'2526','H','O',2432,'',0,'2025-11-03','0000-00-00',1009,0,1042,0,'D27','',0,1650.00,0.00,0.00,1650.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','28073','','SCAN',1650.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-03 09:24:18','','0000-00-00 00:00:00',0),(2657,0,0,2236,'2526','H','O',2433,'',0,'2025-11-03','0000-00-00',1754,0,1800,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','75019','','scan',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 09:24:55','','0000-00-00 00:00:00',0),(2658,0,0,2237,'2526','H','O',2434,'',0,'2025-11-03','0000-00-00',1755,0,1801,0,'D02','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-03 09:27:09','','0000-00-00 00:00:00',0),(2659,0,0,2238,'2526','H','O',2435,'',0,'2025-11-03','0000-00-00',1756,0,1802,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','36715','','scan     ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 09:52:37','','0000-00-00 00:00:00',0),(2660,0,0,2239,'2526','H','O',2436,'',0,'2025-11-03','0000-00-00',1757,0,1803,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 09:53:04','','0000-00-00 00:00:00',0),(2661,0,0,2241,'2526','H','O',2437,'',0,'2025-11-03','0000-00-00',1758,0,1804,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 10:00:50','','0000-00-00 00:00:00',0),(2662,0,0,2242,'2526','H','O',2438,'',0,'2025-11-03','0000-00-00',1224,0,1265,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI BANK','','42322','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-03 10:12:32','','0000-00-00 00:00:00',0),(2663,0,0,2243,'2526','H','O',2439,'',0,'2025-11-03','0000-00-00',1203,0,1242,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 10:12:50','','0000-00-00 00:00:00',0),(2664,0,0,2244,'2526','H','O',2440,'',0,'2025-11-03','0000-00-00',1223,0,1264,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 10:16:31','','0000-00-00 00:00:00',0),(2665,0,0,2245,'2526','H','O',2441,'',0,'2025-11-03','0000-00-00',1759,0,1805,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 10:21:20','','0000-00-00 00:00:00',0),(2666,0,0,2247,'2526','H','O',2442,'',0,'2025-11-03','0000-00-00',1760,0,1806,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','98551','','scan',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 2445','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 10:36:59','janvi','2025-11-03 10:48:27',0),(2667,0,0,2248,'2526','H','O',2443,'',0,'2025-11-03','0000-00-00',1761,0,1807,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 10:39:01','','0000-00-00 00:00:00',0),(2668,0,0,2251,'2526','H','O',2444,'',0,'2025-11-03','0000-00-00',1764,0,1810,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 10:44:54','','0000-00-00 00:00:00',0),(2669,0,0,2247,'2526','H','O',2445,'',0,'2025-11-03','0000-00-00',1760,0,1806,0,'D02','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','hdfc','','98551','','SCAN                          ',-500.00,0,0,'2025-11-03','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 2442','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 10:48:27','janvi','2025-11-03 10:49:15',0),(2670,0,0,2252,'2526','H','O',2446,'',0,'2025-11-03','0000-00-00',1765,0,1811,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 10:48:47','','0000-00-00 00:00:00',0),(2671,0,0,2253,'2526','H','O',2447,'',0,'2025-11-03','0000-00-00',1766,0,1812,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 2459','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 10:49:16','drashti','2025-11-03 11:12:58',0),(2672,0,0,2254,'2526','H','O',2448,'',0,'2025-11-03','0000-00-00',1767,0,1813,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 10:51:22','','0000-00-00 00:00:00',0),(2673,0,0,2257,'2526','H','O',2449,'',0,'2025-11-03','0000-00-00',1284,0,1323,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 10:56:45','','0000-00-00 00:00:00',0),(2674,0,0,2258,'2526','H','O',2450,'',0,'2025-11-03','0000-00-00',1769,0,1815,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 2484','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 10:58:23','reception','2025-11-03 12:18:28',0),(2675,0,0,2259,'2526','H','O',2451,'',0,'2025-11-03','0000-00-00',1770,0,1816,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 10:59:48','','0000-00-00 00:00:00',0),(2676,0,0,2260,'2526','H','O',2452,'',0,'2025-11-03','0000-00-00',1771,0,1817,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 11:01:17','','0000-00-00 00:00:00',0),(2677,0,0,2261,'2526','H','O',2453,'',0,'2025-11-03','0000-00-00',1772,0,1818,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 11:01:43','','0000-00-00 00:00:00',0),(2678,0,0,2262,'2526','H','O',2454,'',0,'2025-11-03','0000-00-00',1773,0,1819,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 11:03:30','','0000-00-00 00:00:00',0),(2679,0,0,2263,'2526','H','O',2455,'',0,'2025-11-03','0000-00-00',1774,0,1820,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-03 11:06:15','','0000-00-00 00:00:00',0),(2680,0,0,2256,'2526','H','O',2456,'',0,'2025-11-03','0000-00-00',1768,0,1814,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 11:06:40','','0000-00-00 00:00:00',0),(2681,0,0,2265,'2526','H','O',2457,'',0,'2025-11-03','0000-00-00',1775,0,1821,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-03 11:08:57','','0000-00-00 00:00:00',0),(2682,0,0,2266,'2526','H','O',2458,'',0,'2025-11-03','0000-00-00',1776,0,1253,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 11:09:21','','0000-00-00 00:00:00',0),(2683,0,0,2253,'2526','H','O',2459,'',0,'2025-11-03','0000-00-00',1766,0,1812,0,'D27','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-11-03','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 2447','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 11:12:58','drashti','2025-11-03 11:42:33',0),(2684,0,0,2253,'2526','H','O',2460,'',0,'2025-11-03','0000-00-00',1766,0,1812,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','9919','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 11:15:34','','0000-00-00 00:00:00',0),(2685,0,0,2267,'2526','H','O',2461,'',0,'2025-11-03','0000-00-00',1777,0,1822,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-03 11:16:01','','0000-00-00 00:00:00',0),(2686,0,0,2268,'2526','H','O',2462,'',0,'2025-11-03','0000-00-00',1778,0,1823,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 11:16:03','','0000-00-00 00:00:00',0),(2687,0,0,2250,'2526','H','O',2463,'',0,'2025-11-03','0000-00-00',1763,0,1809,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 11:16:38','','0000-00-00 00:00:00',0),(2688,0,0,2269,'2526','H','O',2464,'',0,'2025-11-03','0000-00-00',1299,0,1338,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 11:18:15','','0000-00-00 00:00:00',0),(2689,0,0,2271,'2526','H','O',2465,'',0,'2025-11-03','0000-00-00',1779,0,1824,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 11:21:29','','0000-00-00 00:00:00',0),(2690,0,0,2266,'2526','H','O',2466,'',0,'2025-11-03','0000-00-00',1776,0,1253,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-03 11:23:49','','0000-00-00 00:00:00',0),(2691,0,0,2241,'2526','H','O',2467,'',0,'2025-11-03','0000-00-00',1758,0,1804,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','21539','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 11:24:39','','0000-00-00 00:00:00',0),(2692,0,0,2255,'2526','H','O',2468,'',0,'2025-11-03','0000-00-00',1067,0,1106,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-03 11:27:16','','0000-00-00 00:00:00',0),(2693,0,0,2272,'2526','H','O',2469,'',0,'2025-11-03','0000-00-00',1780,0,1825,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 11:30:27','','0000-00-00 00:00:00',0),(2694,0,0,2274,'2526','H','O',2470,'',0,'2025-11-03','0000-00-00',1782,0,1827,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','7','KOTAK BANK','','14758','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 11:35:31','','0000-00-00 00:00:00',0),(2695,0,0,2276,'2526','H','O',2471,'',0,'2025-11-03','0000-00-00',1783,0,1828,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 11:36:28','','0000-00-00 00:00:00',0),(2696,0,0,2277,'2526','H','O',2472,'',0,'2025-11-03','0000-00-00',1669,0,1714,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 11:47:14','','0000-00-00 00:00:00',0),(2697,0,0,2278,'2526','H','O',2473,'',0,'2025-11-03','0000-00-00',1784,0,1829,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 11:54:10','','0000-00-00 00:00:00',0),(2698,0,0,2245,'2526','H','O',2474,'',0,'2025-11-03','0000-00-00',1759,0,1805,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 11:56:01','','0000-00-00 00:00:00',0),(2699,0,0,2279,'2526','H','O',2475,'',0,'2025-11-03','0000-00-00',1785,0,1830,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','300 DISCOUNT','HO 2495','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 11:59:02','reception','2025-11-03 12:43:54',0),(2700,0,0,2254,'2526','H','O',2476,'',0,'2025-11-03','0000-00-00',1767,0,1813,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 12:03:00','','0000-00-00 00:00:00',0),(2701,0,0,2280,'2526','H','O',2477,'',0,'2025-11-03','0000-00-00',1786,0,1831,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 2486','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 12:04:44','drashti','2025-11-03 12:22:14',0),(2702,0,0,2281,'2526','H','O',2478,'',0,'2025-11-03','0000-00-00',1125,0,1095,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-03 12:05:58','','0000-00-00 00:00:00',0),(2703,0,0,2282,'2526','H','O',2479,'',0,'2025-11-03','0000-00-00',1419,0,1460,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 12:06:23','','0000-00-00 00:00:00',0),(2704,0,0,2284,'2526','H','O',2480,'',0,'2025-11-03','0000-00-00',1788,0,1833,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 12:08:10','','0000-00-00 00:00:00',0),(2705,0,0,2270,'2526','H','O',2481,'',0,'2025-11-03','0000-00-00',514,0,539,0,'D03','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','CRD','HDFC','','71659','','CARD',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-03 12:09:49','','0000-00-00 00:00:00',0),(2706,0,0,2285,'2526','H','O',2482,'',0,'2025-11-03','0000-00-00',1789,0,1834,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 12:14:11','','0000-00-00 00:00:00',0),(2707,0,0,2286,'2526','H','O',2483,'',0,'2025-11-03','0000-00-00',1790,0,1835,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 12:17:26','','0000-00-00 00:00:00',0),(2708,0,0,2258,'2526','H','O',2484,'',0,'2025-11-03','0000-00-00',1769,0,1815,0,'D06','',0,-900.00,0.00,0.00,-900.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-900.00,0,0,'2025-11-03','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 2450','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 12:18:28','reception','2025-11-03 12:18:55',0),(2709,0,0,2287,'2526','H','O',2485,'',0,'2025-11-03','0000-00-00',1791,0,1836,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-03 12:18:42','','0000-00-00 00:00:00',0),(2710,0,0,2280,'2526','H','O',2486,'',0,'2025-11-03','0000-00-00',1786,0,1831,0,'D27','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-11-03','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 2477','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 12:22:14','drashti','2025-11-03 12:22:49',0),(2711,0,0,2288,'2526','H','O',2487,'',0,'2025-11-03','0000-00-00',1792,0,1837,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-03 12:23:17','','0000-00-00 00:00:00',0),(2712,0,0,2289,'2526','H','O',2488,'',0,'2025-11-03','0000-00-00',1793,0,1838,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-03 12:28:39','','0000-00-00 00:00:00',0),(2713,0,0,2290,'2526','H','O',2489,'',0,'2025-11-03','0000-00-00',1162,0,1201,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-03 12:30:00','','0000-00-00 00:00:00',0),(2714,0,0,2291,'2526','H','O',2490,'',0,'2025-11-03','0000-00-00',1794,0,1839,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 12:30:07','','0000-00-00 00:00:00',0),(2715,0,0,1940,'2526','H','D',119,'',0,'2025-11-03','0000-00-00',1532,112,1573,0,'D27','',0,25800.00,0.00,0.00,25800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',18800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-03 12:32:03','vishal','2025-11-03 12:33:52',0),(2716,0,0,1941,'2526','H','D',120,'',0,'2025-11-03','0000-00-00',0,113,1580,0,'D27','',0,23400.00,0.00,0.00,23400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6000,0,'0000-00-00','','N','N','F','N',17400.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(2717,0,0,2292,'2526','H','O',2491,'',0,'2025-11-03','0000-00-00',1795,0,1840,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-03 12:34:30','','0000-00-00 00:00:00',0),(2718,0,0,2293,'2526','H','O',2492,'',0,'2025-11-03','0000-00-00',1796,0,1841,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 12:34:58','','0000-00-00 00:00:00',0),(2719,0,0,2294,'2526','H','O',2493,'',0,'2025-11-03','0000-00-00',1797,0,1842,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 12:37:26','','0000-00-00 00:00:00',0),(2720,0,0,2295,'2526','H','O',2494,'',0,'2025-11-03','0000-00-00',1798,0,1843,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','14758','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-03 12:38:44','','0000-00-00 00:00:00',0),(2721,0,0,2279,'2526','H','O',2495,'',0,'2025-11-03','0000-00-00',1785,0,1830,0,'D06','',0,-900.00,0.00,0.00,-900.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-900.00,0,0,'2025-11-03','Y','N','N','','N',0.00,'','Y','300 DISCOUNT','','HO 2475','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 12:43:54','reception','2025-11-03 12:44:11',0),(2722,0,0,1723,'2526','H','D',121,'',0,'2025-11-03','0000-00-00',1368,105,1408,0,'D02','',0,128400.00,0.00,0.00,128400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-70000,0,'0000-00-00','','N','N','F','N',58400.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-03 12:44:13','vishal','2025-11-03 13:52:14',0),(2723,0,0,2279,'2526','H','O',2496,'',0,'2025-11-03','0000-00-00',1785,0,1830,0,'D06','',0,900.00,0.00,0.00,900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 12:44:48','','0000-00-00 00:00:00',0),(2724,0,0,2296,'2526','H','O',2497,'',0,'2025-11-03','0000-00-00',1799,0,1844,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 12:46:21','','0000-00-00 00:00:00',0),(2725,0,0,2297,'2526','H','O',2498,'',0,'2025-11-03','0000-00-00',1800,0,1845,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','64910','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 12:58:48','','0000-00-00 00:00:00',0),(2726,0,0,2268,'2526','H','O',2499,'',0,'2025-11-03','0000-00-00',1778,0,1823,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 13:00:59','','0000-00-00 00:00:00',0),(2727,0,0,2292,'2526','H','O',2500,'',0,'2025-11-03','0000-00-00',1795,0,1840,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-03 13:01:36','','0000-00-00 00:00:00',0),(2728,0,0,2265,'2526','H','O',2501,'',0,'2025-11-03','0000-00-00',1775,0,1821,0,'D02','',0,4000.00,0.00,0.00,4000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 13:08:56','','0000-00-00 00:00:00',0),(2729,0,0,1940,'2526','H','I',107,'',0,'2025-11-03','0000-00-00',1532,112,1573,0,'D27','',0,25800.00,0.00,0.00,25800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25800,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(2730,0,0,2299,'2526','H','O',2502,'',0,'2025-11-03','0000-00-00',1801,0,1847,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','40310','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-03 13:29:30','','0000-00-00 00:00:00',0),(2731,0,0,2299,'2526','H','O',2503,'',0,'2025-11-03','0000-00-00',1801,0,1847,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','68159','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-03 13:33:18','','0000-00-00 00:00:00',0),(2732,0,0,1941,'2526','H','I',108,'',0,'2025-11-03','0000-00-00',0,113,1580,0,'D27','',0,23400.00,0.00,0.00,23400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-23000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(2733,0,0,2300,'2526','H','O',2504,'',0,'2025-11-03','0000-00-00',1802,0,1848,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-03 14:05:46','','0000-00-00 00:00:00',0),(2734,0,0,2294,'2526','H','O',2505,'',0,'2025-11-03','0000-00-00',1797,0,1842,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 14:18:47','','0000-00-00 00:00:00',0),(2735,0,0,1723,'2526','H','I',109,'',0,'2025-11-03','0000-00-00',1368,105,1408,0,'D02','',0,128400.00,0.00,0.00,128400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-128400,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(2736,0,0,2301,'2526','H','O',2506,'',0,'2025-11-03','0000-00-00',1803,0,1849,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-03 14:29:02','','0000-00-00 00:00:00',0),(2737,0,0,2302,'2526','H','O',2507,'',0,'2025-11-03','0000-00-00',1288,0,1327,0,'D02','',0,4000.00,0.00,0.00,4000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-03 15:01:22','','0000-00-00 00:00:00',0),(2738,0,0,2303,'2526','H','O',2508,'',0,'2025-11-03','0000-00-00',1804,0,1850,0,'D02','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','INDUSLAND BANK','','28834','','scan',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-03 15:10:08','','0000-00-00 00:00:00',0),(2739,0,0,2304,'2526','H','O',2509,'',0,'2025-11-03','0000-00-00',1805,0,1851,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 16:15:40','','0000-00-00 00:00:00',0),(2740,0,0,2305,'2526','H','O',2510,'',0,'2025-11-03','0000-00-00',1806,0,1852,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','17265','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 16:23:33','','0000-00-00 00:00:00',0),(2741,0,0,2306,'2526','H','O',2511,'',0,'2025-11-03','0000-00-00',1807,0,1853,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 16:27:35','','0000-00-00 00:00:00',0),(2742,0,0,2307,'2526','H','O',2512,'',0,'2025-11-03','0000-00-00',978,0,1011,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 16:46:31','','0000-00-00 00:00:00',0),(2743,0,0,2308,'2526','H','O',2513,'',0,'2025-11-03','0000-00-00',1808,0,1854,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 17:04:10','','0000-00-00 00:00:00',0),(2744,0,0,2309,'2526','H','O',2514,'',0,'2025-11-03','0000-00-00',1809,0,1855,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 17:08:08','','0000-00-00 00:00:00',0),(2745,0,0,2310,'2526','H','O',2515,'',0,'2025-11-03','0000-00-00',1810,0,1856,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 17:09:26','','0000-00-00 00:00:00',0),(2746,0,0,2311,'2526','H','O',2516,'',0,'2025-11-03','0000-00-00',1811,0,1857,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 17:12:34','','0000-00-00 00:00:00',0),(2747,0,0,2312,'2526','H','O',2517,'',0,'2025-11-03','0000-00-00',1812,0,1858,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 2523','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 17:15:08','reception','2025-11-03 17:46:22',0),(2748,0,0,2313,'2526','H','O',2518,'',0,'2025-11-03','0000-00-00',1813,0,1859,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','81864','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 17:18:44','','0000-00-00 00:00:00',0),(2749,0,0,2305,'2526','H','O',2519,'',0,'2025-11-03','0000-00-00',1806,0,1852,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','53852','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 17:21:44','','0000-00-00 00:00:00',0),(2750,0,0,2314,'2526','H','O',2520,'',0,'2025-11-03','0000-00-00',1814,0,1860,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 17:24:41','','0000-00-00 00:00:00',0),(2751,0,0,2308,'2526','H','O',2521,'',0,'2025-11-03','0000-00-00',1808,0,1854,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 17:26:57','','0000-00-00 00:00:00',0),(2752,0,0,2316,'2526','H','O',2522,'',0,'2025-11-03','0000-00-00',1815,0,1861,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','89341','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 17:45:45','','0000-00-00 00:00:00',0),(2753,0,0,2312,'2526','H','O',2523,'',0,'2025-11-03','0000-00-00',1812,0,1858,0,'D06','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-11-03','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 2517','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 17:46:22','reception','2025-11-03 17:47:15',0),(2754,0,0,2312,'2526','H','O',2524,'',0,'2025-11-03','0000-00-00',1812,0,1858,0,'D06','',0,700.00,0.00,0.00,700.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 17:48:26','','0000-00-00 00:00:00',0),(2755,0,0,2317,'2526','H','O',2525,'',0,'2025-11-03','0000-00-00',1816,0,1862,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 17:52:25','','0000-00-00 00:00:00',0),(2756,0,0,2318,'2526','H','O',2526,'',0,'2025-11-03','0000-00-00',1476,0,1517,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 17:56:23','','0000-00-00 00:00:00',0),(2757,0,0,2319,'2526','H','O',2527,'',0,'2025-11-03','0000-00-00',1817,0,1863,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 18:02:46','','0000-00-00 00:00:00',0),(2758,0,0,2320,'2526','H','O',2528,'',0,'2025-11-03','0000-00-00',527,0,553,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 18:03:19','','0000-00-00 00:00:00',0),(2759,0,0,2321,'2526','H','O',2529,'',0,'2025-11-03','0000-00-00',1818,0,1864,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 18:04:41','','0000-00-00 00:00:00',0),(2760,0,0,2322,'2526','H','O',2530,'',0,'2025-11-03','0000-00-00',1819,0,1865,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 18:06:01','','0000-00-00 00:00:00',0),(2761,0,0,2323,'2526','H','O',2531,'',0,'2025-11-03','0000-00-00',1820,0,1866,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','52253','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 18:08:37','','0000-00-00 00:00:00',0),(2762,0,0,2324,'2526','H','O',2532,'',0,'2025-11-03','0000-00-00',1483,0,1524,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-03 18:09:57','','0000-00-00 00:00:00',0),(2763,0,0,2325,'2526','H','O',2533,'',0,'2025-11-03','0000-00-00',1821,0,1867,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 18:10:15','','0000-00-00 00:00:00',0),(2764,0,0,1995,'2526','H','D',122,'',0,'2025-11-03','0000-00-00',1206,116,1245,0,'D02','',0,90340.00,0.00,0.00,90340.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-90000,0,'0000-00-00','','N','N','F','N',340.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(2765,0,0,1995,'2526','H','I',110,'',0,'2025-11-03','0000-00-00',1206,116,1245,0,'D02','',0,90340.00,0.00,0.00,90340.00,340.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-90000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(2766,0,0,2327,'2526','H','O',2534,'',0,'2025-11-03','0000-00-00',1823,0,1869,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','rajkot nagrik','','49216','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 18:12:24','','0000-00-00 00:00:00',0),(2767,0,0,2328,'2526','H','O',2535,'',0,'2025-11-03','0000-00-00',1824,0,1870,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 18:12:32','','0000-00-00 00:00:00',0),(2768,0,0,2321,'2526','H','O',2536,'',0,'2025-11-03','0000-00-00',1818,0,1864,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 18:14:04','','0000-00-00 00:00:00',0),(2769,0,0,2319,'2526','H','O',2537,'',0,'2025-11-03','0000-00-00',1817,0,1863,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 18:14:42','','0000-00-00 00:00:00',0),(2770,0,0,2316,'2526','H','O',2538,'',0,'2025-11-03','0000-00-00',1815,0,1861,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','93538','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 18:15:28','','0000-00-00 00:00:00',0),(2771,0,0,2330,'2526','H','O',2539,'',0,'2025-11-03','0000-00-00',328,0,344,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 18:19:17','','0000-00-00 00:00:00',0),(2772,0,0,2331,'2526','H','O',2540,'',0,'2025-11-03','0000-00-00',1825,0,1871,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','30963','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 18:21:15','','0000-00-00 00:00:00',0),(2773,0,0,2326,'2526','H','O',2541,'',0,'2025-11-03','0000-00-00',1822,0,1868,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-03 18:22:21','','0000-00-00 00:00:00',0),(2774,0,0,2332,'2526','H','O',2542,'',0,'2025-11-03','0000-00-00',1826,0,1872,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','HO 2553','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-03 18:22:38','manshi','2025-11-03 18:51:54',0),(2775,0,0,2333,'2526','H','O',2543,'',0,'2025-11-03','0000-00-00',1827,0,1873,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 18:23:52','','0000-00-00 00:00:00',0),(2776,0,0,2334,'2526','H','O',2544,'',0,'2025-11-03','0000-00-00',1030,0,1064,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 2555','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 18:25:23','janvi','2025-11-03 18:56:41',0),(2777,0,0,2335,'2526','H','O',2545,'',0,'2025-11-03','0000-00-00',1828,0,1874,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 18:28:38','','0000-00-00 00:00:00',0),(2778,0,0,2338,'2526','H','O',2546,'',0,'2025-11-03','0000-00-00',1831,0,1877,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 18:31:30','','0000-00-00 00:00:00',0),(2779,0,0,2337,'2526','H','O',2547,'',0,'2025-11-03','0000-00-00',1830,0,1876,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','75986','','scan  ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 18:32:20','','0000-00-00 00:00:00',0),(2780,0,0,2336,'2526','H','O',2548,'',0,'2025-11-03','0000-00-00',1829,0,1875,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','75986','','scan  ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 18:32:30','','0000-00-00 00:00:00',0),(2781,0,0,2339,'2526','H','O',2549,'',0,'2025-11-03','0000-00-00',1832,0,1878,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 18:33:56','','0000-00-00 00:00:00',0),(2782,0,0,2340,'2526','H','O',2550,'',0,'2025-11-03','0000-00-00',983,0,403,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','42761','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 18:42:29','','0000-00-00 00:00:00',0),(2783,0,0,2342,'2526','H','O',2551,'',0,'2025-11-03','0000-00-00',1834,0,1880,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 18:46:29','','0000-00-00 00:00:00',0),(2784,0,0,2331,'2526','H','O',2552,'',0,'2025-11-03','0000-00-00',1825,0,1871,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 18:49:24','','0000-00-00 00:00:00',0),(2785,0,0,2332,'2526','H','O',2553,'',0,'2025-11-03','0000-00-00',1826,0,1872,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-03','Y','N','N','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','','HO 2542','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-03 18:51:54','manshi','2025-11-03 18:52:14',0),(2786,0,0,2343,'2526','H','O',2554,'',0,'2025-11-03','0000-00-00',709,0,740,0,'D27','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','29186','','scan  ',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 18:53:25','','0000-00-00 00:00:00',0),(2787,0,0,2334,'2526','H','O',2555,'',0,'2025-11-03','0000-00-00',1030,0,1064,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-11-03','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 2544','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 18:56:41','janvi','2025-11-03 18:57:35',0),(2788,0,0,2344,'2526','H','O',2556,'',0,'2025-11-03','0000-00-00',451,0,477,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 18:59:54','','0000-00-00 00:00:00',0),(2789,0,0,2345,'2526','H','O',2557,'',0,'2025-11-03','0000-00-00',1835,0,1881,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 19:02:24','','0000-00-00 00:00:00',0),(2790,0,0,2346,'2526','H','O',2558,'',0,'2025-11-03','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 19:03:37','','0000-00-00 00:00:00',0),(2791,0,0,2226,'2526','H','D',123,'',0,'2025-11-03','0000-00-00',0,124,1795,0,'D14','',0,17200.00,0.00,0.00,17200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10000,0,'0000-00-00','','N','N','F','N',7200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-03 19:03:58','vishal','2025-11-03 19:11:08',0),(2792,0,0,2339,'2526','H','O',2559,'',0,'2025-11-03','0000-00-00',1832,0,1878,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','bank','','00000','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-03 19:09:31','','0000-00-00 00:00:00',0),(2793,0,0,2329,'2526','H','O',2560,'',0,'2025-11-03','0000-00-00',1521,0,1562,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 19:19:15','','0000-00-00 00:00:00',0),(2794,0,0,2341,'2526','H','O',2561,'',0,'2025-11-03','0000-00-00',1833,0,1879,0,'D06','',0,900.00,0.00,0.00,900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','81473','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 19:20:28','','0000-00-00 00:00:00',0),(2795,0,0,2341,'2526','H','O',2562,'',0,'2025-11-03','0000-00-00',1833,0,1879,0,'D06','',0,3500.00,0.00,0.00,3500.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','81473','','SCAN',2500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 19:21:28','','0000-00-00 00:00:00',0),(2796,0,0,2226,'2526','H','I',111,'',0,'2025-11-03','0000-00-00',0,124,1795,0,'D14','',0,17200.00,0.00,0.00,17200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-17200,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-03 19:22:12','','0000-00-00 00:00:00',0),(2797,0,0,2348,'2526','H','O',2563,'',0,'2025-11-03','0000-00-00',1358,0,1398,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bank','','02942','','scan  ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 19:24:02','','0000-00-00 00:00:00',0),(2798,0,0,2349,'2526','H','O',2564,'',0,'2025-11-03','0000-00-00',1307,0,1346,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 19:27:43','','0000-00-00 00:00:00',0),(2799,0,0,2351,'2526','H','O',2565,'',0,'2025-11-03','0000-00-00',1838,0,1884,0,'D27','',0,450.00,0.00,0.00,450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',450.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-03 19:30:23','','0000-00-00 00:00:00',0),(2800,0,0,2352,'2526','H','O',2566,'',0,'2025-11-03','0000-00-00',1839,0,1885,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-03 19:41:20','','0000-00-00 00:00:00',0),(2801,0,0,2352,'2526','H','O',2567,'',0,'2025-11-03','0000-00-00',1839,0,1885,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-03 19:53:39','','0000-00-00 00:00:00',0),(2802,0,0,2354,'2526','H','O',2568,'',0,'2025-11-03','0000-00-00',1841,0,1887,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','500 DISCOUNT','HO 2570','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 19:53:41','reception','2025-11-03 20:15:15',0),(2803,0,0,2353,'2526','H','O',2569,'',0,'2025-11-03','0000-00-00',1840,0,1886,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-03 19:53:53','','0000-00-00 00:00:00',0),(2804,0,0,2354,'2526','H','O',2570,'',0,'2025-11-03','0000-00-00',1841,0,1887,0,'D06','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-11-03','Y','N','N','','N',0.00,'','Y','500 DISCOUNT','','HO 2568','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 20:15:15','reception','2025-11-03 20:17:41',0),(2805,0,0,2354,'2526','H','O',2571,'',0,'2025-11-03','0000-00-00',1841,0,1887,0,'D06','',0,700.00,0.00,0.00,700.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-03 20:18:42','','0000-00-00 00:00:00',0),(2806,0,0,2355,'2526','H','O',2572,'',0,'2025-11-04','0000-00-00',1747,0,1456,0,'D27','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 2575','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 09:09:16','priyanshi','2025-11-04 09:29:35',0),(2807,0,0,2356,'2526','H','O',2573,'',0,'2025-11-04','0000-00-00',1842,0,1888,0,'D27','',0,1550.00,0.00,0.00,1550.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1550.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 09:12:56','','0000-00-00 00:00:00',0),(2808,0,0,2355,'2526','H','O',2574,'',0,'2025-11-04','0000-00-00',1747,0,1456,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-04 09:26:29','','0000-00-00 00:00:00',0),(2809,0,0,2355,'2526','H','O',2575,'',0,'2025-11-04','0000-00-00',1747,0,1456,0,'D27','',0,-200.00,0.00,0.00,-200.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-200.00,0,0,'2025-11-04','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 2572','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-04 09:29:35','priyanshi','2025-11-04 09:29:57',0),(2810,0,0,2355,'2526','H','O',2576,'',0,'2025-11-04','0000-00-00',1747,0,1456,0,'D27','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-04 09:30:32','','0000-00-00 00:00:00',0),(2811,0,0,2357,'2526','H','O',2577,'',0,'2025-11-04','0000-00-00',1843,0,1889,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 09:30:35','','0000-00-00 00:00:00',0),(2812,0,0,2358,'2526','H','O',2578,'',0,'2025-11-04','0000-00-00',1844,0,1890,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 09:33:28','','0000-00-00 00:00:00',0),(2813,0,0,2359,'2526','H','O',2579,'',0,'2025-11-04','0000-00-00',1845,0,1891,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 10:08:31','','0000-00-00 00:00:00',0),(2814,0,0,2360,'2526','H','O',2580,'',0,'2025-11-04','0000-00-00',1846,0,1892,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-04 10:12:48','','0000-00-00 00:00:00',0),(2815,0,0,2362,'2526','H','O',2581,'',0,'2025-11-04','0000-00-00',1848,0,1894,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-04 10:20:10','','0000-00-00 00:00:00',0),(2816,0,0,2361,'2526','H','O',2582,'',0,'2025-11-04','0000-00-00',1847,0,1893,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','personal accou','','42875','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 10:21:09','','0000-00-00 00:00:00',0),(2817,0,0,2363,'2526','H','O',2583,'',0,'2025-11-04','0000-00-00',629,0,659,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 10:22:10','','0000-00-00 00:00:00',0),(2818,0,0,2364,'2526','H','O',2584,'',0,'2025-11-04','0000-00-00',1849,0,1895,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 10:23:48','','0000-00-00 00:00:00',0),(2819,0,0,2365,'2526','H','O',2585,'',0,'2025-11-04','0000-00-00',1850,0,1896,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 10:25:26','','0000-00-00 00:00:00',0),(2820,0,0,2366,'2526','H','O',2586,'',0,'2025-11-04','0000-00-00',1552,0,1595,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 10:27:04','','0000-00-00 00:00:00',0),(2821,0,0,2367,'2526','H','O',2587,'',0,'2025-11-04','0000-00-00',1851,0,1897,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 10:33:51','','0000-00-00 00:00:00',0),(2822,0,0,2368,'2526','H','O',2588,'',0,'2025-11-04','0000-00-00',1852,0,1898,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 10:38:35','','0000-00-00 00:00:00',0),(2823,0,0,2369,'2526','H','O',2589,'',0,'2025-11-04','0000-00-00',1853,0,1899,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-04 10:57:31','','0000-00-00 00:00:00',0),(2824,0,0,2370,'2526','H','O',2590,'',0,'2025-11-04','0000-00-00',1854,0,1900,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 10:57:49','','0000-00-00 00:00:00',0),(2825,0,0,2371,'2526','H','O',2591,'',0,'2025-11-04','0000-00-00',1855,0,1901,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-04 10:58:30','','0000-00-00 00:00:00',0),(2826,0,0,2365,'2526','H','O',2592,'',0,'2025-11-04','0000-00-00',1850,0,1896,0,'D06','',0,7100.00,0.00,0.00,7100.00,900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 11:00:39','','0000-00-00 00:00:00',0),(2827,0,0,2373,'2526','H','O',2593,'',0,'2025-11-04','0000-00-00',1857,0,1903,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 11:02:21','','0000-00-00 00:00:00',0),(2828,0,0,2372,'2526','H','O',2594,'',0,'2025-11-04','0000-00-00',1856,0,1902,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','79945','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-04 11:04:16','','0000-00-00 00:00:00',0),(2829,0,0,2362,'2526','H','O',2595,'',0,'2025-11-04','0000-00-00',1848,0,1894,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-04 11:07:41','','0000-00-00 00:00:00',0),(2830,0,0,2359,'2526','H','O',2596,'',0,'2025-11-04','0000-00-00',1845,0,1891,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 11:11:28','','0000-00-00 00:00:00',0),(2831,0,0,2376,'2526','H','O',2597,'',0,'2025-11-04','0000-00-00',1859,0,1904,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-04 11:13:45','','0000-00-00 00:00:00',0),(2832,0,0,2374,'2526','H','O',2598,'',0,'2025-11-04','0000-00-00',774,0,805,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','72087','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 11:15:32','','0000-00-00 00:00:00',0),(2833,0,0,2377,'2526','H','O',2599,'',0,'2025-11-04','0000-00-00',1860,0,1905,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','76536','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-04 11:17:28','','0000-00-00 00:00:00',0),(2834,0,0,2378,'2526','H','O',2600,'',0,'2025-11-04','0000-00-00',1861,0,1906,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 11:17:45','','0000-00-00 00:00:00',0),(2835,0,0,2380,'2526','H','O',2601,'',0,'2025-11-04','0000-00-00',1863,0,1908,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-04 11:22:39','','0000-00-00 00:00:00',0),(2836,0,0,2379,'2526','H','O',2602,'',0,'2025-11-04','0000-00-00',1862,0,1907,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 11:22:44','','0000-00-00 00:00:00',0),(2837,0,0,2381,'2526','H','O',2603,'',0,'2025-11-04','0000-00-00',1864,0,1909,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 11:24:40','','0000-00-00 00:00:00',0),(2838,0,0,2382,'2526','H','O',2604,'',0,'2025-11-04','0000-00-00',1669,0,1714,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-04 11:29:04','','0000-00-00 00:00:00',0),(2839,0,0,2373,'2526','H','O',2605,'',0,'2025-11-04','0000-00-00',1857,0,1903,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 11:31:32','','0000-00-00 00:00:00',0),(2840,0,0,2383,'2526','H','O',2606,'',0,'2025-11-04','0000-00-00',1865,0,1910,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','38396','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-04 11:34:20','','0000-00-00 00:00:00',0),(2841,0,0,2375,'2526','H','O',2607,'',0,'2025-11-04','0000-00-00',1858,0,870,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS BANK','','51522','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-04 11:39:28','','0000-00-00 00:00:00',0),(2842,0,0,2384,'2526','H','O',2608,'',0,'2025-11-04','0000-00-00',1866,0,1911,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 11:42:28','','0000-00-00 00:00:00',0),(2843,0,0,2385,'2526','H','O',2609,'',0,'2025-11-04','0000-00-00',1867,0,1912,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 11:44:59','','0000-00-00 00:00:00',0),(2844,0,0,2383,'2526','H','O',2610,'',0,'2025-11-04','0000-00-00',1865,0,1910,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','06118','','scan ',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-04 11:51:14','','0000-00-00 00:00:00',0),(2845,0,0,2367,'2526','H','O',2611,'',0,'2025-11-04','0000-00-00',1851,0,1897,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 11:51:16','','0000-00-00 00:00:00',0),(2846,0,0,2386,'2526','H','O',2612,'',0,'2025-11-04','0000-00-00',1734,0,1778,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 11:55:58','','0000-00-00 00:00:00',0),(2847,0,0,2240,'2526','H','D',124,'',0,'2025-11-04','0000-00-00',1719,125,1763,0,'D02','',0,18200.00,0.00,0.00,18200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',3200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-04 11:58:06','vishal','2025-11-04 12:00:07',0),(2848,0,0,2379,'2526','H','O',2613,'',0,'2025-11-04','0000-00-00',1862,0,1907,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 11:59:08','','0000-00-00 00:00:00',0),(2849,0,0,2387,'2526','H','O',2614,'',0,'2025-11-04','0000-00-00',1868,0,1913,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-04 12:07:11','','0000-00-00 00:00:00',0),(2850,0,0,2240,'2526','H','I',112,'',0,'2025-11-04','0000-00-00',1719,125,1763,0,'D02','',0,18200.00,0.00,0.00,18200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-18200,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-04 12:07:28','','0000-00-00 00:00:00',0),(2851,0,0,2388,'2526','H','O',2615,'',0,'2025-11-04','0000-00-00',1191,0,1230,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 12:14:55','','0000-00-00 00:00:00',0),(2852,0,0,2389,'2526','H','O',2616,'',0,'2025-11-04','0000-00-00',1869,0,1914,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','boi','','74935','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 12:23:15','','0000-00-00 00:00:00',0),(2853,0,0,2384,'2526','H','O',2617,'',0,'2025-11-04','0000-00-00',1866,0,1911,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','22936','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 12:26:10','','0000-00-00 00:00:00',0),(2854,0,0,2390,'2526','H','O',2618,'',0,'2025-11-04','0000-00-00',1870,0,1915,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-04 12:27:08','','0000-00-00 00:00:00',0),(2855,0,0,2391,'2526','H','O',2619,'',0,'2025-11-04','0000-00-00',1871,0,1916,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-04 12:33:41','','0000-00-00 00:00:00',0),(2856,0,0,2393,'2526','H','O',2620,'',0,'2025-11-04','0000-00-00',1872,0,1918,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 12:34:18','','0000-00-00 00:00:00',0),(2857,0,0,2394,'2526','H','O',2621,'',0,'2025-11-04','0000-00-00',1873,0,1919,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 12:36:53','','0000-00-00 00:00:00',0),(2858,0,0,2393,'2526','H','O',2622,'',0,'2025-11-04','0000-00-00',1872,0,1918,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','91086','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 13:06:31','','0000-00-00 00:00:00',0),(2859,0,0,2386,'2526','H','O',2623,'',0,'2025-11-04','0000-00-00',1734,0,1778,0,'D06','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','70493','','scan',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 13:42:31','','0000-00-00 00:00:00',0),(2860,0,0,2396,'2526','H','O',2624,'',0,'2025-11-04','0000-00-00',1133,0,1173,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-04 16:43:22','','0000-00-00 00:00:00',0),(2861,0,0,2397,'2526','H','O',2625,'',0,'2025-11-04','0000-00-00',1874,0,1921,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','74228','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 16:50:46','','0000-00-00 00:00:00',0),(2862,0,0,2398,'2526','H','O',2626,'',0,'2025-11-04','0000-00-00',1875,0,1922,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','74228','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 16:51:57','','0000-00-00 00:00:00',0),(2863,0,0,2399,'2526','H','O',2627,'',0,'2025-11-04','0000-00-00',1542,0,1585,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','2','indian bank','3190','3190','','card',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 16:56:22','','0000-00-00 00:00:00',0),(2864,0,0,2401,'2526','H','O',2628,'',0,'2025-11-04','0000-00-00',1876,0,1923,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','DISCOUNT','HO 2638','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 17:04:45','reception','2025-11-04 17:48:19',0),(2865,0,0,2400,'2526','H','O',2629,'',0,'2025-11-04','0000-00-00',1867,0,1912,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','boi','','73085','','scan',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 17:09:01','','0000-00-00 00:00:00',0),(2866,0,0,2402,'2526','H','O',2630,'',0,'2025-11-04','0000-00-00',520,0,546,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 17:12:09','','0000-00-00 00:00:00',0),(2867,0,0,1711,'2526','H','D',125,'',0,'2025-11-04','0000-00-00',1343,104,1383,0,'D02','',0,69000.00,0.00,0.00,69000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-69000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-04 17:12:38','vishal','2025-11-04 17:51:35',0),(2868,0,0,2404,'2526','H','O',2631,'',0,'2025-11-04','0000-00-00',1877,0,1924,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 17:21:04','','0000-00-00 00:00:00',0),(2869,0,0,2405,'2526','H','O',2632,'',0,'2025-11-04','0000-00-00',1878,0,1925,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 17:36:11','','0000-00-00 00:00:00',0),(2870,0,0,2406,'2526','H','O',2633,'',0,'2025-11-04','0000-00-00',1879,0,1926,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 17:38:34','','0000-00-00 00:00:00',0),(2871,0,0,2407,'2526','H','O',2634,'',0,'2025-11-04','0000-00-00',1880,0,1927,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-04 17:42:09','','0000-00-00 00:00:00',0),(2872,0,0,2403,'2526','H','O',2635,'',0,'2025-11-04','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-04 17:42:43','','0000-00-00 00:00:00',0),(2873,0,0,2408,'2526','H','O',2636,'',0,'2025-11-04','0000-00-00',1881,0,1928,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 17:43:40','','0000-00-00 00:00:00',0),(2874,0,0,2409,'2526','H','O',2637,'',0,'2025-11-04','0000-00-00',1882,0,1929,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 17:44:36','','0000-00-00 00:00:00',0),(2875,0,0,2401,'2526','H','O',2638,'',0,'2025-11-04','0000-00-00',1876,0,1923,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-04','Y','N','N','','N',0.00,'','Y','DISCOUNT','','HO 2628','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 17:48:19','reception','2025-11-04 17:48:34',0),(2876,0,0,2401,'2526','H','O',2639,'',0,'2025-11-04','0000-00-00',1876,0,1923,0,'D06','',0,500.00,0.00,0.00,500.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 17:49:14','','0000-00-00 00:00:00',0),(2877,0,0,1711,'2526','H','I',113,'',0,'2025-11-04','0000-00-00',1343,104,1383,0,'D02','',0,69000.00,0.00,0.00,69000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-69000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(2878,0,0,2410,'2526','H','O',2640,'',0,'2025-11-04','0000-00-00',1883,0,1930,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-04 17:56:25','','0000-00-00 00:00:00',0),(2879,0,0,2411,'2526','H','O',2641,'',0,'2025-11-04','0000-00-00',1487,0,1528,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 17:57:17','','0000-00-00 00:00:00',0),(2880,0,0,2413,'2526','H','O',2642,'',0,'2025-11-04','0000-00-00',1884,0,1931,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-04 18:05:12','','0000-00-00 00:00:00',0),(2881,0,0,2410,'2526','H','O',2643,'',0,'2025-11-04','0000-00-00',1883,0,1930,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-04 18:07:43','','0000-00-00 00:00:00',0),(2882,0,0,2414,'2526','H','O',2644,'',0,'2025-11-04','0000-00-00',1129,0,1169,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 18:09:20','','0000-00-00 00:00:00',0),(2883,0,0,2415,'2526','H','O',2645,'',0,'2025-11-04','0000-00-00',1049,0,1083,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-04 18:15:31','','0000-00-00 00:00:00',0),(2884,0,0,2408,'2526','H','O',2646,'',0,'2025-11-04','0000-00-00',1881,0,1928,0,'D06','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 18:17:15','','0000-00-00 00:00:00',0),(2885,0,0,2417,'2526','H','O',2647,'',0,'2025-11-04','0000-00-00',1302,0,1341,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-04 18:19:24','','0000-00-00 00:00:00',0),(2886,0,0,2416,'2526','H','O',2648,'',0,'2025-11-04','0000-00-00',1885,0,1932,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 18:19:35','','0000-00-00 00:00:00',0),(2887,0,0,2418,'2526','H','O',2649,'',0,'2025-11-04','0000-00-00',1886,0,1933,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 18:23:57','','0000-00-00 00:00:00',0),(2888,0,0,2419,'2526','H','O',2650,'',0,'2025-11-04','0000-00-00',1746,0,1792,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-04 18:27:32','','0000-00-00 00:00:00',0),(2889,0,0,2420,'2526','H','O',2651,'',0,'2025-11-04','0000-00-00',1887,0,1934,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-04 18:29:24','','0000-00-00 00:00:00',0),(2890,0,0,2421,'2526','H','O',2652,'',0,'2025-11-04','0000-00-00',1888,0,1935,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 18:31:03','','0000-00-00 00:00:00',0),(2891,0,0,2422,'2526','H','O',2653,'',0,'2025-11-04','0000-00-00',690,0,721,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 18:31:41','','0000-00-00 00:00:00',0),(2892,0,0,2423,'2526','H','O',2654,'',0,'2025-11-04','0000-00-00',1889,0,1936,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','94945','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-04 18:34:50','','0000-00-00 00:00:00',0),(2893,0,0,2424,'2526','H','O',2655,'',0,'2025-11-04','0000-00-00',1890,0,1937,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 18:38:04','','0000-00-00 00:00:00',0),(2894,0,0,2425,'2526','H','O',2656,'',0,'2025-11-04','0000-00-00',1891,0,1938,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','80924','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 18:44:03','','0000-00-00 00:00:00',0),(2895,0,0,2426,'2526','H','O',2657,'',0,'2025-11-04','0000-00-00',1341,0,1381,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-04 18:47:42','','0000-00-00 00:00:00',0),(2896,0,0,2416,'2526','H','O',2658,'',0,'2025-11-04','0000-00-00',1885,0,1932,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','KVB','','15923','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 18:48:23','','0000-00-00 00:00:00',0),(2897,0,0,2410,'2526','H','O',2659,'',0,'2025-11-04','0000-00-00',1883,0,1930,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-04 18:48:38','','0000-00-00 00:00:00',0),(2898,0,0,2420,'2526','H','O',2660,'',0,'2025-11-04','0000-00-00',1887,0,1934,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-04 18:49:54','','0000-00-00 00:00:00',0),(2899,0,0,2427,'2526','H','O',2661,'',0,'2025-11-04','0000-00-00',862,0,894,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 18:51:15','','0000-00-00 00:00:00',0),(2900,0,0,2428,'2526','H','O',2662,'',0,'2025-11-04','0000-00-00',1892,0,1939,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-04 18:52:44','','0000-00-00 00:00:00',0),(2901,0,0,2429,'2526','H','O',2663,'',0,'2025-11-04','0000-00-00',1893,0,1940,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-04 18:58:05','','0000-00-00 00:00:00',0),(2902,0,0,2430,'2526','H','O',2664,'',0,'2025-11-04','0000-00-00',766,0,797,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 18:58:21','','0000-00-00 00:00:00',0),(2903,0,0,2428,'2526','H','O',2665,'',0,'2025-11-04','0000-00-00',1892,0,1939,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-04 19:01:07','','0000-00-00 00:00:00',0),(2904,0,0,2431,'2526','H','O',2666,'',0,'2025-11-04','0000-00-00',1307,0,1346,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-04 19:04:08','','0000-00-00 00:00:00',0),(2905,0,0,2264,'2526','H','D',126,'',0,'2025-11-04','0000-00-00',1658,126,1703,0,'D27','',0,21400.00,0.00,0.00,21400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10000,0,'0000-00-00','','N','N','F','N',11400.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-04 19:04:21','vishal','2025-11-04 19:23:53',0),(2906,0,0,2432,'2526','H','O',2667,'',0,'2025-11-04','0000-00-00',1274,0,1313,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','20231','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-04 19:29:50','','0000-00-00 00:00:00',0),(2907,0,0,2264,'2526','H','I',114,'',0,'2025-11-04','0000-00-00',1658,126,1703,0,'D27','',0,21400.00,0.00,0.00,21400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(2908,0,0,2433,'2526','H','O',2668,'',0,'2025-11-04','0000-00-00',1894,0,1941,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','06461','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-04 19:38:42','','0000-00-00 00:00:00',0),(2909,0,0,2425,'2526','H','O',2669,'',0,'2025-11-04','0000-00-00',1891,0,1938,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','CRD','sbi','2208','15578','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 19:41:37','','0000-00-00 00:00:00',0),(2910,0,0,2433,'2526','H','O',2670,'',0,'2025-11-04','0000-00-00',1894,0,1941,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','07758','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-04 19:57:49','','0000-00-00 00:00:00',0),(2911,0,0,2434,'2526','H','O',2671,'',0,'2025-11-05','0000-00-00',1747,0,1456,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 09:00:08','','0000-00-00 00:00:00',0),(2912,0,0,2435,'2526','H','O',2672,'',0,'2025-11-05','0000-00-00',1415,0,1455,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 09:01:47','','0000-00-00 00:00:00',0),(2913,0,0,2436,'2526','H','O',2673,'',0,'2025-11-05','0000-00-00',1895,0,1942,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 09:08:32','','0000-00-00 00:00:00',0),(2914,0,0,2018,'2526','H','D',127,'',0,'2025-11-05','0000-00-00',0,117,1641,0,'D27','',0,47150.00,0.00,0.00,47150.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',32150.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-05 09:45:43','riya','2025-11-05 11:10:02',0),(2915,0,0,2439,'2526','H','O',2674,'',0,'2025-11-05','0000-00-00',1897,0,1945,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 09:50:56','','0000-00-00 00:00:00',0),(2916,0,0,2438,'2526','H','O',2675,'',0,'2025-11-05','0000-00-00',1896,0,1944,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 09:51:10','','0000-00-00 00:00:00',0),(2917,0,0,2440,'2526','H','O',2676,'',0,'2025-11-05','0000-00-00',591,0,621,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 09:55:14','','0000-00-00 00:00:00',0),(2918,0,0,2442,'2526','H','O',2677,'',0,'2025-11-05','0000-00-00',1899,0,1947,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 09:56:34','','0000-00-00 00:00:00',0),(2919,0,0,2443,'2526','H','O',2678,'',0,'2025-11-05','0000-00-00',1900,0,1948,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 10:03:35','','0000-00-00 00:00:00',0);
INSERT INTO `receipt_header` VALUES (2920,0,0,2444,'2526','H','O',2679,'',0,'2025-11-05','0000-00-00',1901,0,1949,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 10:09:10','','0000-00-00 00:00:00',0),(2921,0,0,2445,'2526','H','O',2680,'',0,'2025-11-05','0000-00-00',1902,0,1950,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 10:16:46','','0000-00-00 00:00:00',0),(2922,0,0,2446,'2526','H','O',2681,'',0,'2025-11-05','0000-00-00',470,0,496,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 10:18:03','','0000-00-00 00:00:00',0),(2923,0,0,2447,'2526','H','O',2682,'',0,'2025-11-05','0000-00-00',1293,0,1332,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 10:28:19','','0000-00-00 00:00:00',0),(2924,0,0,2448,'2526','H','O',2683,'',0,'2025-11-05','0000-00-00',1903,0,1951,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 10:34:03','','0000-00-00 00:00:00',0),(2925,0,0,2449,'2526','H','O',2684,'',0,'2025-11-05','0000-00-00',1904,0,1952,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 10:38:37','','0000-00-00 00:00:00',0),(2926,0,0,2450,'2526','H','O',2685,'',0,'2025-11-05','0000-00-00',457,0,483,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 10:43:26','','0000-00-00 00:00:00',0),(2927,0,0,2450,'2526','H','O',2686,'',0,'2025-11-05','0000-00-00',457,0,483,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 10:44:01','','0000-00-00 00:00:00',0),(2928,0,0,2451,'2526','H','O',2687,'',0,'2025-11-05','0000-00-00',1905,0,1953,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 10:44:03','','0000-00-00 00:00:00',0),(2929,0,0,2452,'2526','H','O',2688,'',0,'2025-11-05','0000-00-00',1906,0,1954,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK','','19306','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 10:48:44','','0000-00-00 00:00:00',0),(2930,0,0,2454,'2526','H','O',2689,'',0,'2025-11-05','0000-00-00',1907,0,1955,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','69135','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 10:51:02','','0000-00-00 00:00:00',0),(2931,0,0,2455,'2526','H','O',2690,'',0,'2025-11-05','0000-00-00',693,0,724,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-05 10:54:20','','0000-00-00 00:00:00',0),(2932,0,0,2456,'2526','H','O',2691,'',0,'2025-11-05','0000-00-00',461,0,487,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BANK','','47869','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 10:56:50','','0000-00-00 00:00:00',0),(2933,0,0,2457,'2526','H','O',2692,'',0,'2025-11-05','0000-00-00',1908,0,1956,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 10:58:43','','0000-00-00 00:00:00',0),(2934,0,0,2458,'2526','H','O',2693,'',0,'2025-11-05','0000-00-00',1909,0,1957,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 11:01:48','','0000-00-00 00:00:00',0),(2935,0,0,2460,'2526','H','O',2694,'',0,'2025-11-05','0000-00-00',1911,0,1959,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 11:04:51','','0000-00-00 00:00:00',0),(2936,0,0,2459,'2526','H','O',2695,'',0,'2025-11-05','0000-00-00',1910,0,1958,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS','','05851','','SCAN',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100 DISCOUNT','HO 2735','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 11:05:12','reception','2025-11-05 13:01:20',0),(2937,0,0,2442,'2526','H','O',2696,'',0,'2025-11-05','0000-00-00',1899,0,1947,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 11:11:33','','0000-00-00 00:00:00',0),(2938,0,0,2455,'2526','H','O',2697,'',0,'2025-11-05','0000-00-00',693,0,724,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-300.00,0,0,'0000-00-00','Y','Y','N','F','N',0.00,'','N','','','HO2690','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 11:13:46','','0000-00-00 00:00:00',0),(2939,0,0,2455,'2526','H','O',2698,'',0,'2025-11-05','0000-00-00',693,0,724,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 11:14:00','','0000-00-00 00:00:00',0),(2940,0,0,2461,'2526','H','O',2699,'',0,'2025-11-05','0000-00-00',1912,0,1960,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','UNION BANK','','72449','','SCAN',900.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 2738','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 11:14:32','reception','2025-11-05 13:36:23',0),(2941,0,0,2018,'2526','H','I',115,'',0,'2025-11-05','0000-00-00',0,117,1641,0,'D27','',0,47150.00,0.00,0.00,47150.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-47150,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(2942,0,0,2462,'2526','H','O',2700,'',0,'2025-11-05','0000-00-00',1913,0,1961,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB ','','73821','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 11:17:13','','0000-00-00 00:00:00',0),(2943,0,0,2463,'2526','H','O',2701,'',0,'2025-11-05','0000-00-00',1914,0,1962,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 11:18:14','','0000-00-00 00:00:00',0),(2944,0,0,2449,'2526','H','O',2702,'',0,'2025-11-05','0000-00-00',1904,0,1952,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','rnsb','','59497','','scan ',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 11:19:47','','0000-00-00 00:00:00',0),(2945,0,0,2464,'2526','H','O',2703,'',0,'2025-11-05','0000-00-00',1915,0,1963,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','80256','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 11:21:05','','0000-00-00 00:00:00',0),(2946,0,0,2465,'2526','H','O',2704,'',0,'2025-11-05','0000-00-00',1574,0,1618,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-05 11:21:20','','0000-00-00 00:00:00',0),(2947,0,0,2444,'2526','H','O',2705,'',0,'2025-11-05','0000-00-00',1901,0,1949,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 11:22:48','','0000-00-00 00:00:00',0),(2948,0,0,2466,'2526','H','O',2706,'',0,'2025-11-05','0000-00-00',1916,0,1964,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 11:26:33','','0000-00-00 00:00:00',0),(2949,0,0,2467,'2526','H','O',2707,'',0,'2025-11-05','0000-00-00',1917,0,1965,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 11:28:22','','0000-00-00 00:00:00',0),(2950,0,0,2468,'2526','H','O',2708,'',0,'2025-11-05','0000-00-00',1918,0,1966,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-05 11:32:17','','0000-00-00 00:00:00',0),(2951,0,0,2469,'2526','H','O',2709,'',0,'2025-11-05','0000-00-00',1919,0,1967,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 11:33:04','','0000-00-00 00:00:00',0),(2952,0,0,2453,'2526','H','O',2710,'',0,'2025-11-05','0000-00-00',1763,0,1809,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 11:34:12','','0000-00-00 00:00:00',0),(2953,0,0,2470,'2526','H','O',2711,'',0,'2025-11-05','0000-00-00',1920,0,1968,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 11:36:50','','0000-00-00 00:00:00',0),(2954,0,0,2471,'2526','H','O',2712,'',0,'2025-11-05','0000-00-00',1921,0,1969,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 11:37:03','','0000-00-00 00:00:00',0),(2955,0,0,2462,'2526','H','O',2713,'',0,'2025-11-05','0000-00-00',1913,0,1961,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB ','','65737','','SCAN',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 11:50:54','','0000-00-00 00:00:00',0),(2956,0,0,2473,'2526','H','O',2714,'',0,'2025-11-05','0000-00-00',1923,0,1971,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','HO 2728','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-05 11:58:30','manshi','2025-11-05 12:11:34',0),(2957,0,0,2474,'2526','H','O',2715,'',0,'2025-11-05','0000-00-00',1669,0,1714,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 11:58:43','','0000-00-00 00:00:00',0),(2958,0,0,2472,'2526','H','O',2716,'',0,'2025-11-05','0000-00-00',1922,0,1970,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 11:59:00','','0000-00-00 00:00:00',0),(2959,0,0,2476,'2526','H','O',2717,'',0,'2025-11-05','0000-00-00',1925,0,1973,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 12:00:36','','0000-00-00 00:00:00',0),(2960,0,0,2475,'2526','H','O',2718,'',0,'2025-11-05','0000-00-00',1924,0,1972,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 12:00:50','','0000-00-00 00:00:00',0),(2961,0,0,2477,'2526','H','O',2719,'',0,'2025-11-05','0000-00-00',1926,0,1974,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 12:00:52','','0000-00-00 00:00:00',0),(2962,0,0,2441,'2526','H','O',2720,'',0,'2025-11-05','0000-00-00',1898,0,1946,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 12:01:52','','0000-00-00 00:00:00',0),(2963,0,0,2478,'2526','H','O',2721,'',0,'2025-11-05','0000-00-00',1927,0,1975,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 12:02:27','','0000-00-00 00:00:00',0),(2964,0,0,2469,'2526','H','O',2722,'',0,'2025-11-05','0000-00-00',1919,0,1967,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 12:02:34','','0000-00-00 00:00:00',0),(2965,0,0,2480,'2526','H','O',2723,'',0,'2025-11-05','0000-00-00',1929,0,1977,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 12:05:36','','0000-00-00 00:00:00',0),(2966,0,0,2482,'2526','H','O',2724,'',0,'2025-11-05','0000-00-00',1931,0,1979,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 12:07:22','','0000-00-00 00:00:00',0),(2967,0,0,2479,'2526','H','O',2725,'',0,'2025-11-05','0000-00-00',1928,0,1976,0,'D03','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','48986','','SCAN',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-05 12:07:37','','0000-00-00 00:00:00',0),(2968,0,0,2481,'2526','H','O',2726,'',0,'2025-11-05','0000-00-00',1930,0,1978,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 12:07:39','','0000-00-00 00:00:00',0),(2969,0,0,2483,'2526','H','O',2727,'',0,'2025-11-05','0000-00-00',1276,0,1315,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 12:09:26','','0000-00-00 00:00:00',0),(2970,0,0,2473,'2526','H','O',2728,'',0,'2025-11-05','0000-00-00',1923,0,1971,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-05','Y','N','N','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','','HO 2714','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-05 12:11:34','manshi','2025-11-05 12:11:50',0),(2971,0,0,2463,'2526','H','O',2729,'',0,'2025-11-05','0000-00-00',1914,0,1962,0,'D06','',0,4500.00,0.00,0.00,4500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 12:14:56','','0000-00-00 00:00:00',0),(2972,0,0,2484,'2526','H','O',2730,'',0,'2025-11-05','0000-00-00',1932,0,1980,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','76829','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 12:37:14','','0000-00-00 00:00:00',0),(2973,0,0,2487,'2526','H','O',2731,'',0,'2025-11-05','0000-00-00',1207,0,1246,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-05 12:40:50','','0000-00-00 00:00:00',0),(2974,0,0,2486,'2526','H','O',2732,'',0,'2025-11-05','0000-00-00',1934,0,1982,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SIB','','75796','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 12:41:07','','0000-00-00 00:00:00',0),(2975,0,0,2488,'2526','H','O',2733,'',0,'2025-11-05','0000-00-00',1935,0,1983,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 12:42:36','','0000-00-00 00:00:00',0),(2976,0,0,2489,'2526','H','O',2734,'',0,'2025-11-05','0000-00-00',1936,0,1984,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-05 12:44:24','','0000-00-00 00:00:00',0),(2977,0,0,2459,'2526','H','O',2735,'',0,'2025-11-05','0000-00-00',1910,0,1958,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','AXIS','','05851','','SCAN',-500.00,0,0,'2025-11-05','Y','N','N','','N',0.00,'','Y','100 DISCOUNT','','HO 2695','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 13:01:20','reception','2025-11-05 13:03:41',0),(2978,0,0,2459,'2526','H','O',2736,'',0,'2025-11-05','0000-00-00',1910,0,1958,0,'D06','',0,500.00,0.00,0.00,500.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS','','05851','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 13:04:25','','0000-00-00 00:00:00',0),(2979,0,0,2491,'2526','H','O',2737,'',0,'2025-11-05','0000-00-00',1938,0,1986,0,'D03','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-05 13:23:12','','0000-00-00 00:00:00',0),(2980,0,0,2461,'2526','H','O',2738,'',0,'2025-11-05','0000-00-00',1912,0,1960,0,'D06','',0,-900.00,0.00,0.00,-900.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','UNION BANK','','72449','','SCAN',-900.00,0,0,'2025-11-05','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 2699','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 13:36:23','reception','2025-11-05 13:39:03',0),(2981,0,0,2461,'2526','H','O',2739,'',0,'2025-11-05','0000-00-00',1912,0,1960,0,'D06','',0,900.00,0.00,0.00,900.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','UNION BANK','','72449','','SCAN',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 13:40:28','','0000-00-00 00:00:00',0),(2982,0,0,2493,'2526','H','O',2740,'',0,'2025-11-05','0000-00-00',1939,0,1987,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 13:46:36','','0000-00-00 00:00:00',0),(2983,0,0,2491,'2526','H','O',2741,'',0,'2025-11-05','0000-00-00',1938,0,1986,0,'D03','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-05 13:58:55','','0000-00-00 00:00:00',0),(2984,0,0,2458,'2526','H','O',2742,'',0,'2025-11-05','0000-00-00',1909,0,1957,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-05 14:33:30','','0000-00-00 00:00:00',0),(2985,0,0,2498,'2526','H','O',2743,'',0,'2025-11-05','0000-00-00',655,0,685,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-05 16:53:56','','0000-00-00 00:00:00',0),(2986,0,0,2500,'2526','H','O',2744,'',0,'2025-11-05','0000-00-00',1943,0,1991,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 16:57:48','','0000-00-00 00:00:00',0),(2987,0,0,2499,'2526','H','O',2745,'',0,'2025-11-05','0000-00-00',1942,0,1990,0,'D27','',0,1650.00,0.00,0.00,1650.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1650.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 17:01:35','','0000-00-00 00:00:00',0),(2988,0,0,2501,'2526','H','O',2746,'',0,'2025-11-05','0000-00-00',94,0,105,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100 DISCOUNT','HO 2772','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 17:04:47','reception','2025-11-05 18:06:51',0),(2989,0,0,2502,'2526','H','O',2747,'',0,'2025-11-05','0000-00-00',1944,0,1992,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 17:11:23','','0000-00-00 00:00:00',0),(2990,0,0,2503,'2526','H','O',2748,'',0,'2025-11-05','0000-00-00',1945,0,1993,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 2752','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 17:11:50','reception','2025-11-05 17:28:03',0),(2991,0,0,2504,'2526','H','O',2749,'',0,'2025-11-05','0000-00-00',1946,0,1994,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 17:14:10','','0000-00-00 00:00:00',0),(2992,0,0,2506,'2526','H','O',2750,'',0,'2025-11-05','0000-00-00',1947,0,1995,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 17:21:03','','0000-00-00 00:00:00',0),(2993,0,0,2507,'2526','H','O',2751,'',0,'2025-11-05','0000-00-00',1948,0,1996,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 17:24:06','','0000-00-00 00:00:00',0),(2994,0,0,2503,'2526','H','O',2752,'',0,'2025-11-05','0000-00-00',1945,0,1993,0,'D06','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-11-05','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 2748','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 17:28:03','reception','2025-11-05 17:28:20',0),(2995,0,0,2503,'2526','H','O',2753,'',0,'2025-11-05','0000-00-00',1945,0,1993,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 17:29:08','','0000-00-00 00:00:00',0),(2996,0,0,2502,'2526','H','O',2754,'',0,'2025-11-05','0000-00-00',1944,0,1992,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 17:30:03','','0000-00-00 00:00:00',0),(2997,0,0,2508,'2526','H','O',2755,'',0,'2025-11-05','0000-00-00',1678,0,1723,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 17:32:24','','0000-00-00 00:00:00',0),(2998,0,0,2509,'2526','H','O',2756,'',0,'2025-11-05','0000-00-00',1949,0,1997,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','27023','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 17:33:23','','0000-00-00 00:00:00',0),(2999,0,0,2510,'2526','H','O',2757,'',0,'2025-11-05','0000-00-00',1950,0,1998,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 17:33:28','','0000-00-00 00:00:00',0),(3000,0,0,2512,'2526','H','O',2758,'',0,'2025-11-05','0000-00-00',1281,0,1320,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 17:40:26','','0000-00-00 00:00:00',0),(3001,0,0,2513,'2526','H','O',2759,'',0,'2025-11-05','0000-00-00',1952,0,2000,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 17:41:02','','0000-00-00 00:00:00',0),(3002,0,0,2514,'2526','H','O',2760,'',0,'2025-11-05','0000-00-00',47,0,53,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 17:45:14','','0000-00-00 00:00:00',0),(3003,0,0,2515,'2526','H','O',2761,'',0,'2025-11-05','0000-00-00',1953,0,2001,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 17:47:09','','0000-00-00 00:00:00',0),(3004,0,0,2517,'2526','H','O',2762,'',0,'2025-11-05','0000-00-00',1955,0,2003,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 17:49:17','','0000-00-00 00:00:00',0),(3005,0,0,2516,'2526','H','O',2763,'',0,'2025-11-05','0000-00-00',1954,0,2002,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 17:50:08','','0000-00-00 00:00:00',0),(3006,0,0,2518,'2526','H','O',2764,'',0,'2025-11-05','0000-00-00',1816,0,1862,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 17:52:05','','0000-00-00 00:00:00',0),(3007,0,0,2521,'2526','H','O',2765,'',0,'2025-11-05','0000-00-00',1958,0,2006,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 17:53:53','','0000-00-00 00:00:00',0),(3008,0,0,2519,'2526','H','O',2766,'',0,'2025-11-05','0000-00-00',1956,0,2004,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 17:53:59','','0000-00-00 00:00:00',0),(3009,0,0,2520,'2526','H','O',2767,'',0,'2025-11-05','0000-00-00',1957,0,2005,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-05 17:55:34','','0000-00-00 00:00:00',0),(3010,0,0,2522,'2526','H','O',2768,'',0,'2025-11-05','0000-00-00',1959,0,2007,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','HO 2781','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-05 17:58:03','manshi','2025-11-05 18:32:18',0),(3011,0,0,2525,'2526','H','O',2769,'',1,'2025-11-05','0000-00-00',1962,0,2010,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK BANK','','11776','','',750.00,0,0,'2025-11-20','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 18:01:55','urvashi','2025-11-20 12:53:59',0),(3012,0,0,2524,'2526','H','O',2770,'',0,'2025-11-05','0000-00-00',1961,0,2009,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','94408','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 18:03:14','','0000-00-00 00:00:00',0),(3013,0,0,2527,'2526','H','O',2771,'',0,'2025-11-05','0000-00-00',1963,0,2011,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','82697','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 18:06:23','','0000-00-00 00:00:00',0),(3014,0,0,2501,'2526','H','O',2772,'',0,'2025-11-05','0000-00-00',94,0,105,0,'D06','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-11-05','Y','N','N','','N',0.00,'','Y','100 DISCOUNT','','HO 2746','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 18:06:51','reception','2025-11-05 18:07:20',0),(3015,0,0,2501,'2526','H','O',2773,'',0,'2025-11-05','0000-00-00',94,0,105,0,'D06','',0,400.00,0.00,0.00,400.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 18:08:23','','0000-00-00 00:00:00',0),(3016,0,0,2528,'2526','H','O',2774,'',0,'2025-11-05','0000-00-00',1964,0,2012,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','52967','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 18:11:06','','0000-00-00 00:00:00',0),(3017,0,0,2529,'2526','H','O',2775,'',0,'2025-11-05','0000-00-00',1965,0,2013,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 18:11:31','','0000-00-00 00:00:00',0),(3018,0,0,2531,'2526','H','O',2776,'',0,'2025-11-05','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 18:13:02','','0000-00-00 00:00:00',0),(3019,0,0,2509,'2526','H','O',2777,'',0,'2025-11-05','0000-00-00',1949,0,1997,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','86424','','SCAN',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 18:16:30','','0000-00-00 00:00:00',0),(3020,0,0,2505,'2526','H','O',2778,'',0,'2025-11-05','0000-00-00',1719,0,1763,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 18:25:22','','0000-00-00 00:00:00',0),(3021,0,0,2523,'2526','H','O',2779,'',0,'2025-11-05','0000-00-00',1960,0,2008,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 18:26:41','','0000-00-00 00:00:00',0),(3022,0,0,2532,'2526','H','O',2780,'',0,'2025-11-05','0000-00-00',1606,0,1651,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','54635','','scan  ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 18:28:59','','0000-00-00 00:00:00',0),(3023,0,0,2522,'2526','H','O',2781,'',0,'2025-11-05','0000-00-00',1959,0,2007,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-05','Y','N','N','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','','HO 2768','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-05 18:32:18','manshi','2025-11-05 18:32:36',0),(3024,0,0,2533,'2526','H','O',2782,'',0,'2025-11-05','0000-00-00',1966,0,2014,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 18:35:02','','0000-00-00 00:00:00',0),(3025,0,0,2534,'2526','H','O',2783,'',0,'2025-11-05','0000-00-00',1967,0,2015,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK','','49562','','SCAN',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 18:37:22','','0000-00-00 00:00:00',0),(3026,0,0,2535,'2526','H','O',2784,'',0,'2025-11-05','0000-00-00',1968,0,2016,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','81212','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 18:39:21','','0000-00-00 00:00:00',0),(3027,0,0,2537,'2526','H','O',2785,'',0,'2025-11-05','0000-00-00',1969,0,2017,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 18:40:40','','0000-00-00 00:00:00',0),(3028,0,0,2533,'2526','H','O',2786,'',0,'2025-11-05','0000-00-00',1966,0,2014,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 18:41:15','','0000-00-00 00:00:00',0),(3029,0,0,2538,'2526','H','O',2787,'',0,'2025-11-05','0000-00-00',221,0,234,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 18:41:24','','0000-00-00 00:00:00',0),(3030,0,0,2539,'2526','H','O',2788,'',0,'2025-11-05','0000-00-00',1034,0,1068,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','36465','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 18:45:17','','0000-00-00 00:00:00',0),(3031,0,0,2540,'2526','H','O',2789,'',0,'2025-11-05','0000-00-00',1970,0,2018,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 18:48:51','','0000-00-00 00:00:00',0),(3032,0,0,2541,'2526','H','O',2790,'',0,'2025-11-05','0000-00-00',1971,0,2019,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 2796','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 18:52:37','janvi','2025-11-05 19:15:59',0),(3033,0,0,2536,'2526','H','O',2791,'',0,'2025-11-05','0000-00-00',704,0,735,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-05 18:55:31','','0000-00-00 00:00:00',0),(3034,0,0,2542,'2526','H','O',2792,'',0,'2025-11-05','0000-00-00',1000,0,1032,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 18:57:35','','0000-00-00 00:00:00',0),(3035,0,0,2543,'2526','H','O',2793,'',0,'2025-11-05','0000-00-00',1972,0,2020,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 19:02:33','','0000-00-00 00:00:00',0),(3036,0,0,2544,'2526','H','O',2794,'',0,'2025-11-05','0000-00-00',1973,0,2021,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK','','91436','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 19:05:24','','0000-00-00 00:00:00',0),(3037,0,0,2541,'2526','H','O',2795,'',0,'2025-11-05','0000-00-00',1971,0,2019,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 19:15:00','','0000-00-00 00:00:00',0),(3038,0,0,2541,'2526','H','O',2796,'',0,'2025-11-05','0000-00-00',1971,0,2019,0,'D27','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-11-05','Y','N','N','','N',0.00,'','Y','FOC','','HO 2790','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 19:15:59','janvi','2025-11-05 19:17:05',0),(3039,0,0,2545,'2526','H','O',2797,'',0,'2025-11-05','0000-00-00',1974,0,2022,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 19:20:56','','0000-00-00 00:00:00',0),(3040,0,0,2546,'2526','H','O',2798,'',0,'2025-11-05','0000-00-00',1975,0,2023,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 2800','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 19:23:47','reception','2025-11-05 19:36:00',0),(3041,0,0,2527,'2526','H','O',2799,'',0,'2025-11-05','0000-00-00',1963,0,2011,0,'D06','',0,3600.00,0.00,0.00,3600.00,600.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','95918','','SCAN',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 19:27:18','','0000-00-00 00:00:00',0),(3042,0,0,2546,'2526','H','O',2800,'',0,'2025-11-05','0000-00-00',1975,0,2023,0,'D06','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-11-05','Y','N','N','','N',0.00,'','Y','FOC','','HO 2798','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 19:36:00','reception','2025-11-05 19:36:21',0),(3043,0,0,2547,'2526','H','O',2801,'',0,'2025-11-05','0000-00-00',1976,0,2024,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-05 19:38:14','','0000-00-00 00:00:00',0),(3044,0,0,2549,'2526','H','O',2802,'',0,'2025-11-05','0000-00-00',110,0,121,0,'D27','',0,450.00,0.00,0.00,450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',450.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 19:39:53','','0000-00-00 00:00:00',0),(3045,0,0,2548,'2526','H','O',2803,'',0,'2025-11-05','0000-00-00',109,0,120,0,'D27','',0,450.00,0.00,0.00,450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',450.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 19:40:01','','0000-00-00 00:00:00',0),(3046,0,0,2392,'2526','H','D',128,'',0,'2025-11-05','0000-00-00',0,128,1917,0,'D27','',0,10700.00,0.00,0.00,10700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',3700.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-05 19:57:12','vishal','2025-11-05 20:01:21',0),(3047,0,0,2550,'2526','H','O',2804,'',0,'2025-11-05','0000-00-00',1977,0,2025,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-05 20:02:03','','0000-00-00 00:00:00',0),(3048,0,0,2551,'2526','H','O',2805,'',0,'2025-11-05','0000-00-00',1978,0,2026,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 20:04:39','','0000-00-00 00:00:00',0),(3049,0,0,2392,'2526','H','I',116,'',0,'2025-11-05','0000-00-00',0,128,1917,0,'D27','',0,10700.00,0.00,0.00,10700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10700,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-05 20:05:18','','0000-00-00 00:00:00',0),(3050,0,0,2552,'2526','H','O',2806,'',0,'2025-11-05','0000-00-00',1979,0,2027,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-05 20:13:22','','0000-00-00 00:00:00',0),(3051,0,0,2526,'2526','H','O',2807,'',0,'2025-11-05','0000-00-00',1602,0,1158,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-05 20:27:42','','0000-00-00 00:00:00',0),(3052,0,0,2437,'2526','H','D',129,'',0,'2025-11-05','0000-00-00',0,130,1943,0,'D02','',0,20000.00,0.00,0.00,20000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',5000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-05 21:06:23','','0000-00-00 00:00:00',0),(3053,0,0,2437,'2526','H','I',117,'',0,'2025-11-05','0000-00-00',0,130,1943,0,'D02','',0,20000.00,0.00,0.00,20000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-05 21:09:58','','0000-00-00 00:00:00',0),(3054,0,0,2553,'2526','H','O',2808,'',0,'2025-11-06','0000-00-00',1980,0,2028,0,'D03','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','87528','','scan',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 08:36:20','','0000-00-00 00:00:00',0),(3055,0,0,2554,'2526','H','O',2809,'',0,'2025-11-06','0000-00-00',1981,0,2029,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','standard bank','','13265','','scan',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 09:12:14','','0000-00-00 00:00:00',0),(3056,0,0,2557,'2526','H','O',2810,'',0,'2025-11-06','0000-00-00',1501,0,1542,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 09:39:15','','0000-00-00 00:00:00',0),(3057,0,0,2558,'2526','H','O',2811,'',0,'2025-11-06','0000-00-00',1982,0,2032,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 09:48:52','','0000-00-00 00:00:00',0),(3058,0,0,2559,'2526','H','O',2812,'',0,'2025-11-06','0000-00-00',1983,0,2033,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 09:50:36','','0000-00-00 00:00:00',0),(3059,0,0,2560,'2526','H','O',2813,'',0,'2025-11-06','0000-00-00',1984,0,2034,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','06702','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 10:02:25','','0000-00-00 00:00:00',0),(3060,0,0,2563,'2526','H','O',2814,'',0,'2025-11-06','0000-00-00',1986,0,2037,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-06 10:20:47','','0000-00-00 00:00:00',0),(3061,0,0,2562,'2526','H','O',2815,'',0,'2025-11-06','0000-00-00',1985,0,2036,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-06 10:21:47','','0000-00-00 00:00:00',0),(3062,0,0,2564,'2526','H','O',2816,'',0,'2025-11-06','0000-00-00',1987,0,2038,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 10:26:13','','0000-00-00 00:00:00',0),(3063,0,0,2565,'2526','H','O',2817,'',0,'2025-11-06','0000-00-00',1988,0,2039,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 10:30:06','','0000-00-00 00:00:00',0),(3064,0,0,2566,'2526','H','O',2818,'',0,'2025-11-06','0000-00-00',1989,0,2040,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 10:32:51','','0000-00-00 00:00:00',0),(3065,0,0,2567,'2526','H','O',2819,'',0,'2025-11-06','0000-00-00',1248,0,1289,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 10:49:31','','0000-00-00 00:00:00',0),(3066,0,0,2569,'2526','H','O',2820,'',0,'2025-11-06','0000-00-00',861,0,893,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-06 11:01:59','','0000-00-00 00:00:00',0),(3067,0,0,2570,'2526','H','O',2821,'',0,'2025-11-06','0000-00-00',1990,0,2041,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 11:02:16','','0000-00-00 00:00:00',0),(3068,0,0,2571,'2526','H','O',2822,'',0,'2025-11-06','0000-00-00',1991,0,2042,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 11:03:44','','0000-00-00 00:00:00',0),(3069,0,0,2572,'2526','H','O',2823,'',0,'2025-11-06','0000-00-00',1992,0,2043,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 11:05:43','','0000-00-00 00:00:00',0),(3070,0,0,2569,'2526','H','O',2824,'',0,'2025-11-06','0000-00-00',861,0,893,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 11:12:43','','0000-00-00 00:00:00',0),(3071,0,0,2573,'2526','H','O',2825,'',0,'2025-11-06','0000-00-00',111,0,122,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-06 11:18:29','','0000-00-00 00:00:00',0),(3072,0,0,2574,'2526','H','O',2826,'',0,'2025-11-06','0000-00-00',1993,0,2044,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 11:19:30','','0000-00-00 00:00:00',0),(3073,0,0,2575,'2526','H','O',2827,'',0,'2025-11-06','0000-00-00',1994,0,2045,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 11:19:41','','0000-00-00 00:00:00',0),(3074,0,0,2576,'2526','H','O',2828,'',0,'2025-11-06','0000-00-00',1995,0,2046,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 11:22:43','','0000-00-00 00:00:00',0),(3075,0,0,2577,'2526','H','O',2829,'',0,'2025-11-06','0000-00-00',1996,0,2047,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 11:26:03','','0000-00-00 00:00:00',0),(3076,0,0,2578,'2526','H','O',2830,'',0,'2025-11-06','0000-00-00',25,0,26,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 11:27:44','','0000-00-00 00:00:00',0),(3077,0,0,2579,'2526','H','O',2831,'',0,'2025-11-06','0000-00-00',1997,0,2048,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 11:28:54','','0000-00-00 00:00:00',0),(3078,0,0,2580,'2526','H','O',2832,'',0,'2025-11-06','0000-00-00',1998,0,2049,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 11:31:17','','0000-00-00 00:00:00',0),(3079,0,0,2562,'2526','H','O',2833,'',0,'2025-11-06','0000-00-00',1985,0,2036,0,'D03','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-06 11:33:00','','0000-00-00 00:00:00',0),(3080,0,0,2582,'2526','H','O',2834,'',0,'2025-11-06','0000-00-00',1999,0,2050,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','37448','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 11:39:41','','0000-00-00 00:00:00',0),(3081,0,0,2583,'2526','H','O',2835,'',0,'2025-11-06','0000-00-00',2000,0,2051,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 11:39:43','','0000-00-00 00:00:00',0),(3082,0,0,2584,'2526','H','O',2836,'',0,'2025-11-06','0000-00-00',499,0,524,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 11:41:44','','0000-00-00 00:00:00',0),(3083,0,0,2571,'2526','H','O',2837,'',0,'2025-11-06','0000-00-00',1991,0,2042,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','CRD','ICICI BANK','3196','3196','','CARD',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 11:48:50','','0000-00-00 00:00:00',0),(3084,0,0,2570,'2526','H','O',2838,'',0,'2025-11-06','0000-00-00',1990,0,2041,0,'D06','',0,3200.00,0.00,0.00,3200.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 11:52:49','','0000-00-00 00:00:00',0),(3085,0,0,2585,'2526','H','O',2839,'',0,'2025-11-06','0000-00-00',2001,0,2052,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 11:55:11','','0000-00-00 00:00:00',0),(3086,0,0,2586,'2526','H','O',2840,'',0,'2025-11-06','0000-00-00',2002,0,2053,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 11:59:32','','0000-00-00 00:00:00',0),(3087,0,0,2581,'2526','H','O',2841,'',0,'2025-11-06','0000-00-00',1528,0,1569,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-06 12:02:35','','0000-00-00 00:00:00',0),(3088,0,0,2587,'2526','H','O',2842,'',0,'2025-11-06','0000-00-00',2003,0,2054,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 12:02:47','','0000-00-00 00:00:00',0),(3089,0,0,2588,'2526','H','O',2843,'',0,'2025-11-06','0000-00-00',2004,0,2055,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 12:04:55','','0000-00-00 00:00:00',0),(3090,0,0,2590,'2526','H','O',2844,'',0,'2025-11-06','0000-00-00',2005,0,2056,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 12:17:21','','0000-00-00 00:00:00',0),(3091,0,0,2589,'2526','H','O',2845,'',0,'2025-11-06','0000-00-00',1974,0,2022,0,'D02','',0,4000.00,0.00,0.00,4000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','77463','','scan ',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 12:18:31','','0000-00-00 00:00:00',0),(3092,0,0,2572,'2526','H','O',2846,'',0,'2025-11-06','0000-00-00',1992,0,2043,0,'D06','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 12:36:52','','0000-00-00 00:00:00',0),(3093,0,0,2592,'2526','H','O',2847,'',0,'2025-11-06','0000-00-00',2006,0,2057,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 12:38:02','','0000-00-00 00:00:00',0),(3094,0,0,2593,'2526','H','O',2848,'',0,'2025-11-06','0000-00-00',2007,0,2058,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','7','axis bank','','15172','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 12:43:15','','0000-00-00 00:00:00',0),(3095,0,0,2591,'2526','H','O',2849,'',0,'2025-11-06','0000-00-00',1978,0,2026,0,'D02','',0,5000.00,0.00,0.00,5000.00,2000.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','47731','','scan ',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-06 12:43:49','','0000-00-00 00:00:00',0),(3096,0,0,2594,'2526','H','O',2850,'',0,'2025-11-06','0000-00-00',838,0,869,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 12:47:26','','0000-00-00 00:00:00',0),(3097,0,0,2595,'2526','H','O',2851,'',0,'2025-11-06','0000-00-00',2008,0,2059,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 12:54:49','','0000-00-00 00:00:00',0),(3098,0,0,2596,'2526','H','O',2852,'',0,'2025-11-06','0000-00-00',2009,0,2060,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-06 12:56:26','','0000-00-00 00:00:00',0),(3099,0,0,2574,'2526','H','O',2853,'',0,'2025-11-06','0000-00-00',1993,0,2044,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 13:01:53','','0000-00-00 00:00:00',0),(3100,0,0,2577,'2526','H','O',2854,'',0,'2025-11-06','0000-00-00',1996,0,2047,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 13:12:37','','0000-00-00 00:00:00',0),(3101,0,0,2597,'2526','H','O',2855,'',0,'2025-11-06','0000-00-00',2010,0,2061,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 13:14:35','','0000-00-00 00:00:00',0),(3102,0,0,2598,'2526','H','O',2856,'',0,'2025-11-06','0000-00-00',2011,0,2062,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 13:14:47','','0000-00-00 00:00:00',0),(3103,0,0,2597,'2526','H','O',2857,'',0,'2025-11-06','0000-00-00',2010,0,2061,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 13:47:05','','0000-00-00 00:00:00',0),(3104,0,0,2600,'2526','H','O',2858,'',0,'2025-11-06','0000-00-00',1584,0,1628,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','69735','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 13:57:39','','0000-00-00 00:00:00',0),(3105,0,0,2601,'2526','H','O',2859,'',0,'2025-11-06','0000-00-00',1332,0,1372,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-06 14:05:35','','0000-00-00 00:00:00',0),(3106,0,0,2395,'2526','H','D',130,'',0,'2025-11-08','0000-00-00',0,129,1920,0,'D03','',0,16800.00,0.00,0.00,16800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',16800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-06 14:19:09','vishal','2025-11-08 14:39:25',0),(3107,0,0,2603,'2526','H','O',2860,'',0,'2025-11-06','0000-00-00',2012,0,2065,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 16:10:25','','0000-00-00 00:00:00',0),(3108,0,0,2605,'2526','H','O',2861,'',0,'2025-11-06','0000-00-00',2013,0,2066,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','63101','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-06 16:33:11','','0000-00-00 00:00:00',0),(3109,0,0,2607,'2526','H','O',2862,'',0,'2025-11-06','0000-00-00',2014,0,2067,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 3975','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 16:55:25','reception','2025-11-18 17:59:31',0),(3110,0,0,2608,'2526','H','O',2863,'',0,'2025-11-06','0000-00-00',1285,0,1324,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 17:00:08','','0000-00-00 00:00:00',0),(3111,0,0,2610,'2526','H','O',2864,'',0,'2025-11-06','0000-00-00',1973,0,2021,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 17:17:57','','0000-00-00 00:00:00',0),(3112,0,0,2611,'2526','H','O',2865,'',0,'2025-11-06','0000-00-00',2015,0,2068,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 17:21:03','','0000-00-00 00:00:00',0),(3113,0,0,2603,'2526','H','O',2866,'',0,'2025-11-06','0000-00-00',2012,0,2065,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 17:21:18','','0000-00-00 00:00:00',0),(3114,0,0,2612,'2526','H','O',2867,'',0,'2025-11-06','0000-00-00',2016,0,2069,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 17:28:40','','0000-00-00 00:00:00',0),(3115,0,0,2613,'2526','H','O',2868,'',0,'2025-11-06','0000-00-00',2017,0,2070,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 17:37:04','','0000-00-00 00:00:00',0),(3116,0,0,2609,'2526','H','O',2869,'',0,'2025-11-06','0000-00-00',1203,0,1242,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-06 17:38:00','','0000-00-00 00:00:00',0),(3117,0,0,2614,'2526','H','O',2870,'',0,'2025-11-06','0000-00-00',865,0,897,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 17:42:37','','0000-00-00 00:00:00',0),(3118,0,0,2615,'2526','H','O',2871,'',0,'2025-11-06','0000-00-00',1669,0,1714,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','35039','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 17:47:22','','0000-00-00 00:00:00',0),(3119,0,0,2616,'2526','H','O',2872,'',0,'2025-11-06','0000-00-00',2018,0,2071,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','81508','','scan ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-06 17:48:58','','0000-00-00 00:00:00',0),(3120,0,0,2617,'2526','H','O',2873,'',0,'2025-11-06','0000-00-00',2019,0,2072,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 17:51:22','','0000-00-00 00:00:00',0),(3121,0,0,2618,'2526','H','O',2874,'',0,'2025-11-06','0000-00-00',2020,0,2073,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 17:52:56','','0000-00-00 00:00:00',0),(3122,0,0,2619,'2526','H','O',2875,'',0,'2025-11-06','0000-00-00',2021,0,2074,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 17:53:44','','0000-00-00 00:00:00',0),(3123,0,0,2611,'2526','H','O',2876,'',0,'2025-11-06','0000-00-00',2015,0,2068,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 17:55:24','','0000-00-00 00:00:00',0),(3124,0,0,2620,'2526','H','O',2877,'',0,'2025-11-06','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-06 17:59:03','','0000-00-00 00:00:00',0),(3125,0,0,2617,'2526','H','O',2878,'',0,'2025-11-06','0000-00-00',2019,0,2072,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 18:00:36','','0000-00-00 00:00:00',0),(3126,0,0,2621,'2526','H','O',2879,'',0,'2025-11-06','0000-00-00',2022,0,2075,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 18:03:30','','0000-00-00 00:00:00',0),(3127,0,0,2618,'2526','H','O',2880,'',0,'2025-11-06','0000-00-00',2020,0,2073,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-06 18:07:12','','0000-00-00 00:00:00',0),(3128,0,0,2613,'2526','H','O',2881,'',0,'2025-11-06','0000-00-00',2017,0,2070,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 18:12:20','','0000-00-00 00:00:00',0),(3129,0,0,2622,'2526','H','O',2882,'',0,'2025-11-06','0000-00-00',2023,0,2076,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 18:21:17','','0000-00-00 00:00:00',0),(3130,0,0,2625,'2526','H','O',2883,'',0,'2025-11-06','0000-00-00',2025,0,2079,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 18:24:21','','0000-00-00 00:00:00',0),(3131,0,0,2627,'2526','H','O',2884,'',0,'2025-11-06','0000-00-00',2027,0,2081,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 18:26:51','','0000-00-00 00:00:00',0),(3132,0,0,2626,'2526','H','O',2885,'',0,'2025-11-06','0000-00-00',2026,0,2080,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','64478','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 18:27:31','','0000-00-00 00:00:00',0),(3133,0,0,2628,'2526','H','O',2886,'',0,'2025-11-06','0000-00-00',2028,0,2082,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','78026','','scan ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 18:31:43','','0000-00-00 00:00:00',0),(3134,0,0,2629,'2526','H','O',2887,'',0,'2025-11-06','0000-00-00',2029,0,2083,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 18:37:05','','0000-00-00 00:00:00',0),(3135,0,0,2631,'2526','H','O',2888,'',0,'2025-11-06','0000-00-00',811,0,842,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 18:42:32','','0000-00-00 00:00:00',0),(3136,0,0,2632,'2526','H','O',2889,'',0,'2025-11-06','0000-00-00',1719,0,1763,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-06 18:48:13','','0000-00-00 00:00:00',0),(3137,0,0,2633,'2526','H','O',2890,'',0,'2025-11-06','0000-00-00',1476,0,1517,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-06 18:49:15','','0000-00-00 00:00:00',0),(3138,0,0,2634,'2526','H','O',2891,'',0,'2025-11-06','0000-00-00',2031,0,2085,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 18:49:46','','0000-00-00 00:00:00',0),(3139,0,0,2635,'2526','H','O',2892,'',0,'2025-11-06','0000-00-00',1521,0,1562,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-06 18:50:46','','0000-00-00 00:00:00',0),(3140,0,0,2636,'2526','H','O',2893,'',0,'2025-11-06','0000-00-00',2032,0,2086,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 18:52:18','','0000-00-00 00:00:00',0),(3141,0,0,2604,'2526','H','O',2894,'',0,'2025-11-06','0000-00-00',1368,0,1408,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 18:54:45','','0000-00-00 00:00:00',0),(3142,0,0,2638,'2526','H','O',2895,'',0,'2025-11-06','0000-00-00',2033,0,2087,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-06 18:56:13','','0000-00-00 00:00:00',0),(3143,0,0,2637,'2526','H','O',2896,'',0,'2025-11-06','0000-00-00',1775,0,1821,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-06 18:59:12','','0000-00-00 00:00:00',0),(3144,0,0,2639,'2526','H','O',2897,'',0,'2025-11-06','0000-00-00',2034,0,2088,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-06 19:00:17','','0000-00-00 00:00:00',0),(3145,0,0,2630,'2526','H','O',2898,'',0,'2025-11-06','0000-00-00',2030,0,2084,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-06 19:13:31','','0000-00-00 00:00:00',0),(3146,0,0,2630,'2526','H','O',2899,'',0,'2025-11-06','0000-00-00',2030,0,2084,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-06 19:20:46','','0000-00-00 00:00:00',0),(3147,0,0,2623,'2526','H','O',2900,'',0,'2025-11-06','0000-00-00',2024,0,2077,0,'D03','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK MAHINDRA','','96306','','SCAN',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-06 19:20:56','','0000-00-00 00:00:00',0),(3148,0,0,2640,'2526','H','D',131,'',0,'2025-11-06','0000-00-00',0,137,2089,0,'D27','',0,32300.00,0.00,0.00,32300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-32300,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(3149,0,0,2640,'2526','H','I',118,'',0,'2025-11-06','0000-00-00',0,137,2089,0,'D27','',0,32300.00,0.00,0.00,32300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-32300,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(3150,0,0,2590,'2526','H','O',2901,'',0,'2025-11-06','0000-00-00',2005,0,2056,0,'D02','',0,10000.00,0.00,0.00,10000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','13938','','scan ',10000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-06 19:59:08','','0000-00-00 00:00:00',0),(3151,0,0,430,'2526','H','I',119,'',0,'2025-11-06','0000-00-00',0,32,403,0,'D02','',0,127170.00,0.00,0.00,127170.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','1','HDFC ERGO','','32','','',127170.00,0,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(3152,0,0,2642,'2526','H','O',2902,'',0,'2025-11-07','0000-00-00',2036,0,2091,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 08:54:39','','0000-00-00 00:00:00',0),(3153,0,0,2643,'2526','H','O',2903,'',0,'2025-11-07','0000-00-00',2037,0,2092,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BGGB','','50586','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 09:03:34','','0000-00-00 00:00:00',0),(3154,0,0,2644,'2526','H','O',2904,'',0,'2025-11-07','0000-00-00',2038,0,2093,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 09:32:30','','0000-00-00 00:00:00',0),(3155,0,0,2645,'2526','H','O',2905,'',0,'2025-11-07','0000-00-00',2039,0,2094,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 09:44:01','','0000-00-00 00:00:00',0),(3156,0,0,2646,'2526','H','O',2906,'',0,'2025-11-07','0000-00-00',2040,0,2095,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 09:45:01','','0000-00-00 00:00:00',0),(3157,0,0,2647,'2526','H','O',2907,'',0,'2025-11-07','0000-00-00',2041,0,2096,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 09:48:23','','0000-00-00 00:00:00',0),(3158,0,0,2648,'2526','H','O',2908,'',0,'2025-11-07','0000-00-00',2042,0,2097,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 09:57:37','','0000-00-00 00:00:00',0),(3159,0,0,2649,'2526','H','O',2909,'',0,'2025-11-07','0000-00-00',10,0,10,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 09:59:04','','0000-00-00 00:00:00',0),(3160,0,0,2651,'2526','H','O',2910,'',0,'2025-11-07','0000-00-00',2044,0,2099,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 10:07:32','','0000-00-00 00:00:00',0),(3161,0,0,2650,'2526','H','O',2911,'',0,'2025-11-07','0000-00-00',2043,0,2098,0,'D03','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SOUTH INDIAN','','58635','','SCAN',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-07 10:14:03','','0000-00-00 00:00:00',0),(3162,0,0,2652,'2526','H','O',2912,'',0,'2025-11-07','0000-00-00',158,0,171,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 10:30:17','','0000-00-00 00:00:00',0),(3163,0,0,2653,'2526','H','O',2913,'',0,'2025-11-07','0000-00-00',2045,0,2100,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 10:34:09','','0000-00-00 00:00:00',0),(3164,0,0,2654,'2526','H','O',2914,'',0,'2025-11-07','0000-00-00',2046,0,2101,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 10:36:59','','0000-00-00 00:00:00',0),(3165,0,0,2655,'2526','H','O',2915,'',0,'2025-11-07','0000-00-00',2047,0,2102,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 10:40:00','','0000-00-00 00:00:00',0),(3166,0,0,2656,'2526','H','O',2916,'',0,'2025-11-07','0000-00-00',2048,0,2103,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 10:55:40','','0000-00-00 00:00:00',0),(3167,0,0,2657,'2526','H','O',2917,'',0,'2025-11-07','0000-00-00',2049,0,2104,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-07 10:58:15','','0000-00-00 00:00:00',0),(3168,0,0,2658,'2526','H','O',2918,'',0,'2025-11-07','0000-00-00',2050,0,2105,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 11:00:35','','0000-00-00 00:00:00',0),(3169,0,0,2646,'2526','H','O',2919,'',0,'2025-11-07','0000-00-00',2040,0,2095,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 11:01:39','','0000-00-00 00:00:00',0),(3170,0,0,2659,'2526','H','O',2920,'',0,'2025-11-07','0000-00-00',2051,0,2106,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 11:02:55','','0000-00-00 00:00:00',0),(3171,0,0,2660,'2526','H','O',2921,'',0,'2025-11-07','0000-00-00',2052,0,1580,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 11:07:11','','0000-00-00 00:00:00',0),(3172,0,0,2661,'2526','H','O',2922,'',0,'2025-11-07','0000-00-00',2053,0,2107,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 11:07:24','','0000-00-00 00:00:00',0),(3173,0,0,2662,'2526','H','O',2923,'',0,'2025-11-07','0000-00-00',1532,0,1573,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 11:13:51','','0000-00-00 00:00:00',0),(3174,0,0,2653,'2526','H','O',2924,'',0,'2025-11-07','0000-00-00',2045,0,2100,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 11:14:43','','0000-00-00 00:00:00',0),(3175,0,0,2663,'2526','H','O',2925,'',0,'2025-11-07','0000-00-00',2054,0,2108,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 11:17:30','','0000-00-00 00:00:00',0),(3176,0,0,2665,'2526','H','O',2926,'',0,'2025-11-07','0000-00-00',1343,0,1383,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-07 11:20:03','','0000-00-00 00:00:00',0),(3177,0,0,2664,'2526','H','O',2927,'',0,'2025-11-07','0000-00-00',1348,0,1388,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 11:20:16','','0000-00-00 00:00:00',0),(3178,0,0,2666,'2526','H','O',2928,'',0,'2025-11-07','0000-00-00',2055,0,2109,0,'D06','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 11:26:42','','0000-00-00 00:00:00',0),(3179,0,0,2667,'2526','H','O',2929,'',0,'2025-11-07','0000-00-00',2056,0,2110,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-07 11:27:21','','0000-00-00 00:00:00',0),(3180,0,0,2668,'2526','H','O',2930,'',0,'2025-11-07','0000-00-00',2057,0,2111,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 11:27:46','','0000-00-00 00:00:00',0),(3181,0,0,2670,'2526','H','O',2931,'',0,'2025-11-07','0000-00-00',2059,0,2113,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 11:32:50','','0000-00-00 00:00:00',0),(3182,0,0,2669,'2526','H','O',2932,'',0,'2025-11-07','0000-00-00',2058,0,2112,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 11:33:03','','0000-00-00 00:00:00',0),(3183,0,0,2671,'2526','H','O',2933,'',0,'2025-11-07','0000-00-00',1928,0,1976,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','65079','','SCAN',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-07 11:35:40','','0000-00-00 00:00:00',0),(3184,0,0,2672,'2526','H','O',2934,'',0,'2025-11-07','0000-00-00',2060,0,2114,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 11:37:38','','0000-00-00 00:00:00',0),(3185,0,0,2673,'2526','H','O',2935,'',0,'2025-11-07','0000-00-00',2061,0,2115,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 11:39:53','','0000-00-00 00:00:00',0),(3186,0,0,2674,'2526','H','O',2936,'',0,'2025-11-07','0000-00-00',2062,0,2116,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 11:46:47','','0000-00-00 00:00:00',0),(3187,0,0,2675,'2526','H','O',2937,'',0,'2025-11-07','0000-00-00',2063,0,2117,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 11:55:27','','0000-00-00 00:00:00',0),(3188,0,0,2676,'2526','H','O',2938,'',0,'2025-11-07','0000-00-00',2064,0,2118,0,'D06','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 11:55:41','','0000-00-00 00:00:00',0),(3189,0,0,2675,'2526','H','O',2939,'',0,'2025-11-07','0000-00-00',2063,0,2117,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 11:59:07','','0000-00-00 00:00:00',0),(3190,0,0,2658,'2526','H','O',2940,'',0,'2025-11-07','0000-00-00',2050,0,2105,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 11:59:46','','0000-00-00 00:00:00',0),(3191,0,0,2678,'2526','H','O',2941,'',0,'2025-11-07','0000-00-00',340,0,356,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 12:01:00','','0000-00-00 00:00:00',0),(3192,0,0,2679,'2526','H','O',2942,'',0,'2025-11-07','0000-00-00',2065,0,2119,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-07 12:02:25','','0000-00-00 00:00:00',0),(3193,0,0,2680,'2526','H','O',2943,'',0,'2025-11-07','0000-00-00',2066,0,2120,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','69704','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 12:03:47','','0000-00-00 00:00:00',0),(3194,0,0,2681,'2526','H','O',2944,'',0,'2025-11-07','0000-00-00',1669,0,1714,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-07 12:06:09','','0000-00-00 00:00:00',0),(3195,0,0,2682,'2526','H','O',2945,'',0,'2025-11-07','0000-00-00',2067,0,2121,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 12:06:14','','0000-00-00 00:00:00',0),(3196,0,0,2683,'2526','H','O',2946,'',0,'2025-11-07','0000-00-00',2068,0,2122,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 12:08:01','','0000-00-00 00:00:00',0),(3197,0,0,2684,'2526','H','O',2947,'',0,'2025-11-07','0000-00-00',2069,0,2123,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 12:09:48','','0000-00-00 00:00:00',0),(3198,0,0,2685,'2526','H','O',2948,'',0,'2025-11-07','0000-00-00',2070,0,2124,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 12:11:04','','0000-00-00 00:00:00',0),(3199,0,0,2298,'2526','H','D',132,'',0,'2025-11-07','0000-00-00',0,127,1846,0,'D27','',0,29000.00,0.00,0.00,29000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-22000,0,'0000-00-00','','N','N','F','N',7000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(3200,0,0,2686,'2526','H','O',2949,'',0,'2025-11-07','0000-00-00',994,0,1026,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 12:11:52','','0000-00-00 00:00:00',0),(3201,0,0,2673,'2526','H','O',2950,'',0,'2025-11-07','0000-00-00',2061,0,2115,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 12:15:08','','0000-00-00 00:00:00',0),(3203,0,0,2655,'2526','H','O',2951,'',0,'2025-11-07','0000-00-00',2047,0,2102,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','18453','','scan',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 12:28:50','','0000-00-00 00:00:00',0),(3204,0,0,2298,'2526','H','I',120,'',0,'2025-11-07','0000-00-00',0,127,1846,0,'D27','',0,29000.00,0.00,0.00,29000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-29000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(3205,0,0,2687,'2526','H','O',2952,'',0,'2025-11-07','0000-00-00',2071,0,2125,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-07 12:41:42','','0000-00-00 00:00:00',0),(3206,0,0,2659,'2526','H','O',2953,'',0,'2025-11-07','0000-00-00',2051,0,2106,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-07 12:50:49','','0000-00-00 00:00:00',0),(3207,0,0,2135,'2526','H','D',134,'',0,'2025-11-07','0000-00-00',0,120,1729,0,'D27','',0,79100.00,0.00,0.00,79100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-70000,0,'0000-00-00','','N','N','F','N',9100.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(3208,0,0,2688,'2526','H','O',2954,'',0,'2025-11-07','0000-00-00',2072,0,2126,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-07 13:01:22','','0000-00-00 00:00:00',0),(3209,0,0,2135,'2526','H','I',121,'',0,'2025-11-07','0000-00-00',0,120,1729,0,'D27','',0,79100.00,0.00,0.00,79100.00,3950.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-75150,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(3210,0,0,2689,'2526','H','O',2955,'',0,'2025-11-07','0000-00-00',2073,0,2127,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 13:24:43','','0000-00-00 00:00:00',0),(3211,0,0,2690,'2526','H','O',2956,'',0,'2025-11-07','0000-00-00',2074,0,2128,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 13:34:22','','0000-00-00 00:00:00',0),(3212,0,0,2692,'2526','H','O',2957,'',0,'2025-11-07','0000-00-00',2075,0,2129,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 13:50:16','','0000-00-00 00:00:00',0),(3213,0,0,2684,'2526','H','O',2958,'',0,'2025-11-07','0000-00-00',2069,0,2123,0,'D06','',0,4400.00,0.00,0.00,4400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 13:54:32','','0000-00-00 00:00:00',0),(3214,0,0,2685,'2526','H','O',2959,'',0,'2025-11-07','0000-00-00',2070,0,2124,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 14:05:56','','0000-00-00 00:00:00',0),(3215,0,0,2693,'2526','H','O',2960,'',0,'2025-11-07','0000-00-00',2076,0,2130,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-07 14:53:40','','0000-00-00 00:00:00',0),(3216,0,0,2694,'2526','H','O',2961,'',0,'2025-11-07','0000-00-00',2077,0,2131,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 16:06:00','','0000-00-00 00:00:00',0),(3217,0,0,2695,'2526','H','O',2962,'',0,'2025-11-07','0000-00-00',2078,0,2132,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','93713','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 16:35:54','','0000-00-00 00:00:00',0),(3218,0,0,2697,'2526','H','O',2963,'',0,'2025-11-07','0000-00-00',2079,0,2133,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-07 16:41:17','','0000-00-00 00:00:00',0),(3219,0,0,2701,'2526','H','O',2964,'',0,'2025-11-07','0000-00-00',2083,0,2137,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','89107','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 16:58:12','','0000-00-00 00:00:00',0),(3220,0,0,2703,'2526','H','O',2965,'',0,'2025-11-07','0000-00-00',2085,0,2139,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 17:05:24','','0000-00-00 00:00:00',0),(3221,0,0,2704,'2526','H','O',2966,'',0,'2025-11-07','0000-00-00',2086,0,2140,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 17:08:17','','0000-00-00 00:00:00',0),(3222,0,0,2705,'2526','H','O',2967,'',0,'2025-11-07','0000-00-00',207,0,220,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 17:10:22','','0000-00-00 00:00:00',0),(3223,0,0,2707,'2526','H','O',2968,'',0,'2025-11-07','0000-00-00',2087,0,2141,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 17:14:34','','0000-00-00 00:00:00',0),(3224,0,0,2708,'2526','H','O',2969,'',0,'2025-11-07','0000-00-00',2088,0,2142,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 17:28:04','','0000-00-00 00:00:00',0),(3225,0,0,2709,'2526','H','O',2970,'',0,'2025-11-07','0000-00-00',1548,0,1591,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 17:29:22','','0000-00-00 00:00:00',0),(3226,0,0,2710,'2526','H','O',2971,'',0,'2025-11-07','0000-00-00',2089,0,2143,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 17:30:31','','0000-00-00 00:00:00',0),(3227,0,0,2711,'2526','H','O',2972,'',0,'2025-11-07','0000-00-00',2090,0,2144,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 17:33:35','','0000-00-00 00:00:00',0),(3228,0,0,2712,'2526','H','O',2973,'',0,'2025-11-07','0000-00-00',2091,0,2145,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 17:35:38','','0000-00-00 00:00:00',0),(3229,0,0,2713,'2526','H','O',2974,'',0,'2025-11-07','0000-00-00',2092,0,2146,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','indian bank','','51525','','scan                          ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-07 17:39:03','','0000-00-00 00:00:00',0),(3230,0,0,2714,'2526','H','O',2975,'',0,'2025-11-07','0000-00-00',2093,0,2147,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 17:39:19','','0000-00-00 00:00:00',0),(3231,0,0,2715,'2526','H','O',2976,'',0,'2025-11-07','0000-00-00',1387,0,1428,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 17:39:32','','0000-00-00 00:00:00',0),(3232,0,0,2716,'2526','H','O',2977,'',0,'2025-11-07','0000-00-00',2094,0,2148,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','07337','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 17:42:06','','0000-00-00 00:00:00',0),(3233,0,0,2693,'2526','H','O',2978,'',0,'2025-11-07','0000-00-00',2076,0,2130,0,'D06','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','2','HDFC','3197','3197','','CARD',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 17:42:57','','0000-00-00 00:00:00',0),(3234,0,0,2717,'2526','H','O',2979,'',0,'2025-11-07','0000-00-00',1477,0,1518,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 17:43:35','','0000-00-00 00:00:00',0),(3235,0,0,2718,'2526','H','O',2980,'',0,'2025-11-07','0000-00-00',2074,0,2128,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 17:47:30','','0000-00-00 00:00:00',0),(3236,0,0,2720,'2526','H','O',2981,'',0,'2025-11-07','0000-00-00',1719,0,1763,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-07 17:52:37','','0000-00-00 00:00:00',0),(3237,0,0,2721,'2526','H','O',2982,'',0,'2025-11-07','0000-00-00',2096,0,2149,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 17:57:32','','0000-00-00 00:00:00',0),(3238,0,0,2723,'2526','H','O',2983,'',0,'2025-11-07','0000-00-00',1132,0,1172,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-07 18:07:54','','0000-00-00 00:00:00',0),(3239,0,0,2724,'2526','H','O',2984,'',0,'2025-11-07','0000-00-00',1102,0,1140,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-07 18:10:20','','0000-00-00 00:00:00',0),(3240,0,0,2725,'2526','H','O',2985,'',0,'2025-11-07','0000-00-00',2098,0,2151,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-07 18:11:21','','0000-00-00 00:00:00',0),(3241,0,0,2726,'2526','H','O',2986,'',0,'2025-11-07','0000-00-00',854,0,886,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 18:12:28','','0000-00-00 00:00:00',0),(3242,0,0,2727,'2526','H','O',2987,'',0,'2025-11-07','0000-00-00',2099,0,2152,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-07 18:16:53','','0000-00-00 00:00:00',0),(3243,0,0,2729,'2526','H','O',2988,'',0,'2025-11-07','0000-00-00',2100,0,2153,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-07 18:20:34','','0000-00-00 00:00:00',0),(3244,0,0,2728,'2526','H','O',2989,'',0,'2025-11-07','0000-00-00',943,0,974,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','7','ICICI BANK','','10470','','CARD',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 18:21:06','','0000-00-00 00:00:00',0),(3245,0,0,2730,'2526','H','O',2990,'',0,'2025-11-07','0000-00-00',2101,0,1788,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-07 18:22:52','','0000-00-00 00:00:00',0),(3246,0,0,2731,'2526','H','O',2991,'',0,'2025-11-07','0000-00-00',2102,0,2154,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 3001','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 18:25:16','drashti','2025-11-07 19:08:41',0),(3247,0,0,2721,'2526','H','O',2992,'',0,'2025-11-07','0000-00-00',2096,0,2149,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 18:27:55','','0000-00-00 00:00:00',0),(3248,0,0,2708,'2526','H','O',2993,'',0,'2025-11-07','0000-00-00',2088,0,2142,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 18:30:20','','0000-00-00 00:00:00',0),(3249,0,0,2732,'2526','H','O',2994,'',0,'2025-11-07','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 18:33:17','','0000-00-00 00:00:00',0),(3250,0,0,2722,'2526','H','O',2995,'',0,'2025-11-07','0000-00-00',2097,0,2150,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','IDBI BANK','','23039','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 18:33:46','','0000-00-00 00:00:00',0),(3251,0,0,2688,'2526','H','O',2996,'',0,'2025-11-07','0000-00-00',2072,0,2126,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 18:36:03','','0000-00-00 00:00:00',0),(3252,0,0,2733,'2526','H','O',2997,'',0,'2025-11-07','0000-00-00',1306,0,1345,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 18:44:49','','0000-00-00 00:00:00',0),(3253,0,0,2734,'2526','H','O',2998,'',0,'2025-11-07','0000-00-00',827,0,858,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-07 18:49:01','','0000-00-00 00:00:00',0),(3254,0,0,2719,'2526','H','O',2999,'',0,'2025-11-07','0000-00-00',2095,0,1245,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-07 18:57:52','','0000-00-00 00:00:00',0),(3255,0,0,2555,'2526','H','D',135,'',0,'2025-11-07','0000-00-00',0,131,2030,0,'D02','',0,60000.00,0.00,0.00,60000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-40000,0,'0000-00-00','','N','N','F','N',20000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-07 18:59:40','riya','2025-11-07 19:03:45',0),(3256,0,0,2735,'2526','H','O',3000,'',0,'2025-11-07','0000-00-00',1744,0,1789,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-07 19:04:21','','0000-00-00 00:00:00',0),(3257,0,0,2555,'2526','H','I',122,'',0,'2025-11-07','0000-00-00',0,131,2030,0,'D02','',0,60000.00,0.00,0.00,60000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-60000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-07 19:08:07','','0000-00-00 00:00:00',0),(3258,0,0,2731,'2526','H','O',3001,'',0,'2025-11-07','0000-00-00',2102,0,2154,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-11-07','Y','N','N','','N',0.00,'','Y','FOC','','HO 2991','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 19:08:41','drashti','2025-11-07 19:09:03',0),(3259,0,0,2737,'2526','H','O',3002,'',0,'2025-11-07','0000-00-00',567,0,594,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','16279','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-07 19:10:12','','0000-00-00 00:00:00',0),(3260,0,0,2738,'2526','H','O',3003,'',0,'2025-11-07','0000-00-00',270,0,286,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','18189','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-07 19:10:59','','0000-00-00 00:00:00',0),(3261,0,0,2739,'2526','H','O',3004,'',0,'2025-11-07','0000-00-00',923,0,954,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-07 19:16:33','','0000-00-00 00:00:00',0),(3262,0,0,2740,'2526','H','O',3005,'',0,'2025-11-07','0000-00-00',1976,0,2024,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-07 19:20:11','','0000-00-00 00:00:00',0),(3263,0,0,2741,'2526','H','O',3006,'',0,'2025-11-07','0000-00-00',1071,0,1111,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-07 19:32:20','','0000-00-00 00:00:00',0),(3264,0,0,2561,'2526','H','D',136,'',0,'2025-11-07','0000-00-00',0,133,2035,0,'D02','',0,7900.00,0.00,0.00,7900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','D','N',7900.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-07 19:32:55','','0000-00-00 00:00:00',0),(3265,0,0,2556,'2526','H','D',137,'',0,'2025-11-07','0000-00-00',0,132,2031,0,'D02','',0,7900.00,0.00,0.00,7900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',7900.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-07 19:37:23','','0000-00-00 00:00:00',0),(3266,0,0,2195,'2526','H','D',138,'',0,'2025-11-08','0000-00-00',0,121,1772,0,'D27','',0,59700.00,0.00,0.00,59700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-40000,0,'0000-00-00','','N','N','F','N',19700.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-08 09:02:46','vishal','2025-11-08 09:22:16',0),(3267,0,0,2742,'2526','H','O',3007,'',0,'2025-11-08','0000-00-00',2104,0,2156,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 09:05:45','','0000-00-00 00:00:00',0),(3268,0,0,2742,'2526','H','O',3008,'',0,'2025-11-08','0000-00-00',2104,0,2156,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','39639','','scan',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 09:09:18','','0000-00-00 00:00:00',0),(3269,0,0,2743,'2526','H','O',3009,'',0,'2025-11-08','0000-00-00',2105,0,2157,0,'D02','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','23849','','scan',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 09:16:52','','0000-00-00 00:00:00',0),(3270,0,0,2744,'2526','H','O',3010,'',0,'2025-11-08','0000-00-00',2106,0,2158,0,'D27','',0,1700.00,0.00,0.00,1700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','44400','','scan',1700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 09:20:53','','0000-00-00 00:00:00',0),(3271,0,0,2745,'2526','H','O',3011,'',0,'2025-11-08','0000-00-00',2107,0,2159,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 09:25:44','','0000-00-00 00:00:00',0),(3272,0,0,2195,'2526','H','I',123,'',0,'2025-11-08','0000-00-00',0,121,1772,0,'D27','',0,59700.00,0.00,0.00,59700.00,3200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-56500,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(3273,0,0,2746,'2526','H','O',3012,'',0,'2025-11-08','0000-00-00',2108,0,2160,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 09:51:33','','0000-00-00 00:00:00',0),(3274,0,0,2748,'2526','H','O',3013,'',0,'2025-11-08','0000-00-00',2109,0,2161,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 10:02:19','','0000-00-00 00:00:00',0),(3275,0,0,2749,'2526','H','O',3014,'',0,'2025-11-08','0000-00-00',2110,0,2162,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','14801','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 10:20:11','','0000-00-00 00:00:00',0),(3276,0,0,2750,'2526','H','O',3015,'',0,'2025-11-08','0000-00-00',2111,0,2163,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100 DISCOUNT','HO 3071','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 10:23:36','reception','2025-11-08 14:01:47',0),(3277,0,0,2751,'2526','H','O',3016,'',0,'2025-11-08','0000-00-00',2112,0,2164,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-08 10:25:11','','0000-00-00 00:00:00',0),(3278,0,0,2752,'2526','H','O',3017,'',0,'2025-11-08','0000-00-00',2113,0,2165,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 10:26:26','','0000-00-00 00:00:00',0),(3279,0,0,2753,'2526','H','O',3018,'',0,'2025-11-08','0000-00-00',2114,0,2166,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 10:37:36','','0000-00-00 00:00:00',0),(3280,0,0,2754,'2526','H','O',3019,'',0,'2025-11-08','0000-00-00',2115,0,2167,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','rbi','','74020','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-08 10:42:10','','0000-00-00 00:00:00',0),(3281,0,0,2755,'2526','H','O',3020,'',0,'2025-11-08','0000-00-00',2116,0,2168,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 10:43:31','','0000-00-00 00:00:00',0),(3282,0,0,2757,'2526','H','O',3021,'',0,'2025-11-08','0000-00-00',1472,0,1513,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-08 10:44:01','','0000-00-00 00:00:00',0),(3283,0,0,2756,'2526','H','O',3022,'',0,'2025-11-08','0000-00-00',1019,0,1053,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','42232','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-08 10:44:52','','0000-00-00 00:00:00',0),(3284,0,0,2758,'2526','H','O',3023,'',0,'2025-11-08','0000-00-00',2117,0,2169,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 10:45:21','','0000-00-00 00:00:00',0),(3285,0,0,2759,'2526','H','O',3024,'',0,'2025-11-08','0000-00-00',2118,0,1763,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-08 10:49:47','','0000-00-00 00:00:00',0),(3286,0,0,2760,'2526','H','O',3025,'',0,'2025-11-08','0000-00-00',221,0,234,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-08 10:52:08','','0000-00-00 00:00:00',0),(3287,0,0,2761,'2526','H','O',3026,'',0,'2025-11-08','0000-00-00',2119,0,2170,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 10:57:53','','0000-00-00 00:00:00',0),(3288,0,0,2762,'2526','H','O',3027,'',0,'2025-11-08','0000-00-00',2120,0,2171,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-08 11:00:25','','0000-00-00 00:00:00',0),(3289,0,0,2763,'2526','H','O',3028,'',0,'2025-11-08','0000-00-00',2121,0,2172,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 11:02:31','','0000-00-00 00:00:00',0),(3290,0,0,2755,'2526','H','O',3029,'',0,'2025-11-08','0000-00-00',2116,0,2168,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-08 11:06:18','','0000-00-00 00:00:00',0),(3291,0,0,2764,'2526','H','O',3030,'',0,'2025-11-08','0000-00-00',1452,0,1493,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-08 11:07:09','','0000-00-00 00:00:00',0),(3292,0,0,2750,'2526','H','O',3031,'',0,'2025-11-08','0000-00-00',2111,0,2163,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','20454','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 11:07:18','','0000-00-00 00:00:00',0),(3293,0,0,2765,'2526','H','O',3032,'',0,'2025-11-08','0000-00-00',2122,0,2173,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-08 11:08:04','','0000-00-00 00:00:00',0),(3294,0,0,2766,'2526','H','O',3033,'',0,'2025-11-08','0000-00-00',2123,0,2174,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-08 11:13:44','','0000-00-00 00:00:00',0),(3295,0,0,2767,'2526','H','O',3034,'',0,'2025-11-08','0000-00-00',2124,0,2175,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-08 11:16:22','','0000-00-00 00:00:00',0),(3296,0,0,2768,'2526','H','O',3035,'',0,'2025-11-08','0000-00-00',1020,0,1054,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-08 11:21:22','','0000-00-00 00:00:00',0),(3297,0,0,2770,'2526','H','O',3036,'',0,'2025-11-08','0000-00-00',2125,0,2176,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 11:23:48','','0000-00-00 00:00:00',0),(3298,0,0,2771,'2526','H','O',3037,'',0,'2025-11-08','0000-00-00',2126,0,2177,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 11:26:32','','0000-00-00 00:00:00',0),(3299,0,0,2772,'2526','H','O',3038,'',0,'2025-11-08','0000-00-00',1310,0,1349,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 11:30:28','','0000-00-00 00:00:00',0),(3300,0,0,2766,'2526','H','O',3039,'',0,'2025-11-08','0000-00-00',2123,0,2174,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-08 11:30:40','','0000-00-00 00:00:00',0),(3301,0,0,2773,'2526','H','O',3040,'',0,'2025-11-08','0000-00-00',2127,0,2178,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 11:32:23','','0000-00-00 00:00:00',0),(3302,0,0,2774,'2526','H','O',3041,'',0,'2025-11-08','0000-00-00',80,0,91,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 11:34:18','','0000-00-00 00:00:00',0),(3303,0,0,2775,'2526','H','O',3042,'',0,'2025-11-08','0000-00-00',1669,0,1714,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-08 11:37:16','','0000-00-00 00:00:00',0),(3304,0,0,2776,'2526','H','O',3043,'',0,'2025-11-08','0000-00-00',2128,0,2179,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 11:38:07','','0000-00-00 00:00:00',0),(3305,0,0,2749,'2526','H','O',3044,'',0,'2025-11-08','0000-00-00',2110,0,2162,0,'D06','',0,6900.00,0.00,0.00,6900.00,1300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','7','hdfc','','04516','','scan',5600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 11:41:15','','0000-00-00 00:00:00',0),(3306,0,0,2777,'2526','H','O',3045,'',0,'2025-11-08','0000-00-00',696,0,727,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-08 11:42:40','','0000-00-00 00:00:00',0),(3307,0,0,2778,'2526','H','O',3046,'',0,'2025-11-08','0000-00-00',2129,0,2180,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 11:42:55','','0000-00-00 00:00:00',0),(3308,0,0,2779,'2526','H','O',3047,'',0,'2025-11-08','0000-00-00',1837,0,1883,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-08 11:45:00','','0000-00-00 00:00:00',0),(3309,0,0,2780,'2526','H','O',3048,'',0,'2025-11-08','0000-00-00',2130,0,2181,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 11:47:10','','0000-00-00 00:00:00',0),(3310,0,0,2767,'2526','H','O',3049,'',0,'2025-11-08','0000-00-00',2124,0,2175,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 3052','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-08 11:49:23','manshi','2025-11-08 12:03:34',0),(3311,0,0,2602,'2526','H','D',139,'',0,'2025-11-08','0000-00-00',0,135,2064,0,'D02','',0,19800.00,0.00,0.00,19800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',12800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-08 11:50:11','vishal','2025-11-08 11:52:51',0),(3312,0,0,2781,'2526','H','O',3050,'',0,'2025-11-08','0000-00-00',2131,0,2182,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','32162','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 11:51:25','','0000-00-00 00:00:00',0),(3313,0,0,2765,'2526','H','O',3051,'',0,'2025-11-08','0000-00-00',2122,0,2173,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 11:57:14','','0000-00-00 00:00:00',0),(3314,0,0,2767,'2526','H','O',3052,'',0,'2025-11-08','0000-00-00',2124,0,2175,0,'D03','',0,-600.00,0.00,0.00,-600.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-600.00,0,0,'2025-11-08','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 3049','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-08 12:03:34','manshi','2025-11-08 12:04:16',0),(3315,0,0,2782,'2526','H','O',3053,'',0,'2025-11-08','0000-00-00',2132,0,2183,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','48345','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 12:07:15','','0000-00-00 00:00:00',0),(3316,0,0,2767,'2526','H','O',3054,'',0,'2025-11-08','0000-00-00',2124,0,2175,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-08 12:07:50','','0000-00-00 00:00:00',0),(3317,0,0,2783,'2526','H','O',3055,'',0,'2025-11-08','0000-00-00',2133,0,2184,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 12:23:32','','0000-00-00 00:00:00',0),(3318,0,0,2602,'2526','H','I',124,'',0,'2025-11-08','0000-00-00',0,135,2064,0,'D02','',0,19800.00,0.00,0.00,19800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-19800,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(3319,0,0,2784,'2526','H','O',3056,'',0,'2025-11-08','0000-00-00',1860,0,1905,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','85736','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-08 12:28:20','','0000-00-00 00:00:00',0),(3320,0,0,2785,'2526','H','O',3057,'',0,'2025-11-08','0000-00-00',89,0,100,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 12:30:21','','0000-00-00 00:00:00',0),(3321,0,0,2786,'2526','H','O',3058,'',0,'2025-11-08','0000-00-00',507,0,532,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 12:35:18','','0000-00-00 00:00:00',0),(3322,0,0,2787,'2526','H','O',3059,'',0,'2025-11-08','0000-00-00',1738,0,1782,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK BANK','','68481','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-08 12:39:51','','0000-00-00 00:00:00',0),(3323,0,0,2789,'2526','H','O',3060,'',0,'2025-11-08','0000-00-00',2135,0,2186,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-08 12:43:58','','0000-00-00 00:00:00',0),(3324,0,0,2788,'2526','H','O',3061,'',0,'2025-11-08','0000-00-00',2134,0,2185,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-08 12:44:29','','0000-00-00 00:00:00',0),(3325,0,0,2790,'2526','H','O',3062,'',0,'2025-11-08','0000-00-00',2136,0,2187,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 12:46:06','','0000-00-00 00:00:00',0),(3326,0,0,2782,'2526','H','O',3063,'',0,'2025-11-08','0000-00-00',2132,0,2183,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','05874','','scan',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 12:50:00','','0000-00-00 00:00:00',0),(3327,0,0,2773,'2526','H','O',3064,'',0,'2025-11-08','0000-00-00',2127,0,2178,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 12:56:53','','0000-00-00 00:00:00',0),(3328,0,0,2778,'2526','H','O',3065,'',0,'2025-11-08','0000-00-00',2129,0,2180,0,'D06','',0,6900.00,0.00,0.00,6900.00,1300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','CENTRAL BANK','','70153','','scan',5600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 13:04:19','','0000-00-00 00:00:00',0),(3329,0,0,2769,'2526','H','O',3066,'',0,'2025-11-08','0000-00-00',303,0,319,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','81785','','scan  ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-08 13:04:22','','0000-00-00 00:00:00',0),(3330,0,0,2792,'2526','H','O',3067,'',0,'2025-11-08','0000-00-00',2138,0,2189,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-08 13:09:41','','0000-00-00 00:00:00',0),(3331,0,0,2790,'2526','H','O',3068,'',0,'2025-11-08','0000-00-00',2136,0,2187,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','AXIS','','96544','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 13:28:40','','0000-00-00 00:00:00',0),(3332,0,0,2794,'2526','H','O',3069,'',0,'2025-11-08','0000-00-00',2139,0,2190,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 13:35:14','','0000-00-00 00:00:00',0),(3333,0,0,2780,'2526','H','O',3070,'',0,'2025-11-08','0000-00-00',2130,0,2181,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','INDIAN BANK','','95764','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 13:46:28','','0000-00-00 00:00:00',0),(3334,0,0,2750,'2526','H','O',3071,'',0,'2025-11-08','0000-00-00',2111,0,2163,0,'D06','',0,-900.00,0.00,0.00,-900.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-900.00,0,0,'2025-11-08','Y','N','N','','N',0.00,'','Y','100 DISCOUNT','','HO 3015','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 14:01:47','reception','2025-11-08 14:02:22',0),(3335,0,0,2750,'2526','H','O',3072,'',0,'2025-11-08','0000-00-00',2111,0,2163,0,'D06','',0,900.00,0.00,0.00,900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-08 14:07:14','','0000-00-00 00:00:00',0),(3336,0,0,2796,'2526','H','O',3073,'',0,'2025-11-08','0000-00-00',2141,0,2192,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-08 14:42:07','','0000-00-00 00:00:00',0),(3337,0,0,2796,'2526','H','O',3074,'',0,'2025-11-08','0000-00-00',2141,0,2192,0,'D06','',0,4700.00,0.00,0.00,4700.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-08 15:13:46','','0000-00-00 00:00:00',0),(3338,0,0,2797,'2526','H','O',3075,'',0,'2025-11-08','0000-00-00',1133,0,1173,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-08 16:42:46','','0000-00-00 00:00:00',0),(3339,0,0,2798,'2526','H','O',3076,'',0,'2025-11-08','0000-00-00',2142,0,2193,0,'D03','',0,1600.00,0.00,0.00,1600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','11743','','scan ',1600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-08 16:50:09','','0000-00-00 00:00:00',0),(3340,0,0,2800,'2526','H','O',3077,'',0,'2025-11-08','0000-00-00',2143,0,2194,0,'D03','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK','','30483','','SCAN',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-08 17:51:24','','0000-00-00 00:00:00',0),(3341,0,0,2802,'2526','H','O',3078,'',0,'2025-11-08','0000-00-00',2144,0,2196,0,'D03','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','YES BANK','','29886','','SCAN',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-08 18:07:13','','0000-00-00 00:00:00',0),(3342,0,0,2804,'2526','H','O',3079,'',0,'2025-11-08','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-08 18:50:30','','0000-00-00 00:00:00',0),(3343,0,0,2805,'2526','H','O',3080,'',0,'2025-11-08','0000-00-00',2145,0,2197,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-08 18:54:30','','0000-00-00 00:00:00',0),(3344,0,0,2803,'2526','H','O',3081,'',0,'2025-11-08','0000-00-00',1276,0,1315,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','Apb','','26535','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-08 19:22:11','','0000-00-00 00:00:00',0),(3345,0,0,2807,'2526','H','O',3082,'',0,'2025-11-08','0000-00-00',2005,0,2056,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','94383','','scan                          ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-08 19:26:35','','0000-00-00 00:00:00',0),(3346,0,0,2808,'2526','H','O',3083,'',0,'2025-11-08','0000-00-00',572,0,599,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','24248','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-08 19:31:07','','0000-00-00 00:00:00',0),(3347,0,0,2808,'2526','H','O',3084,'',0,'2025-11-08','0000-00-00',572,0,599,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','26876','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-08 19:37:37','','0000-00-00 00:00:00',0),(3348,0,0,2809,'2526','H','O',3085,'',0,'2025-11-08','0000-00-00',2146,0,2199,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-08 19:51:02','','0000-00-00 00:00:00',0),(3349,0,0,2810,'2526','H','O',3086,'',0,'2025-11-08','0000-00-00',2147,0,2200,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-08 19:56:43','','0000-00-00 00:00:00',0),(3350,0,0,2812,'2526','H','O',3087,'',0,'2025-11-09','0000-00-00',761,0,792,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis ','','50775','','scan',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-09 10:18:12','','0000-00-00 00:00:00',0),(3351,0,0,2814,'2526','H','O',3088,'',0,'2025-11-09','0000-00-00',1928,0,1976,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','68544','','scan',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-09 11:53:23','','0000-00-00 00:00:00',0),(3352,0,0,2747,'2526','H','D',140,'',0,'2025-11-09','0000-00-00',1976,139,2024,0,'D02','',0,25000.00,0.00,0.00,25000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-09 11:58:26','riya','2025-11-09 12:01:07',0),(3353,0,0,2813,'2526','H','O',3089,'',0,'2025-11-09','0000-00-00',2148,0,2202,0,'D27','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-09 11:59:34','','0000-00-00 00:00:00',0),(3354,0,0,2747,'2526','H','I',125,'',0,'2025-11-09','0000-00-00',1976,139,2024,0,'D02','',0,25000.00,0.00,0.00,25000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-09 12:01:25','','0000-00-00 00:00:00',0),(3355,0,0,2624,'2526','H','D',141,'',0,'2025-11-09','0000-00-00',0,136,2078,0,'D27','',0,25300.00,0.00,0.00,25300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-13000,0,'0000-00-00','','N','N','F','N',12300.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-09 12:06:12','riya','2025-11-09 12:20:52',0),(3356,0,0,2624,'2526','H','I',126,'',0,'2025-11-09','0000-00-00',0,136,2078,0,'D27','',0,25300.00,0.00,0.00,25300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25300,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(3357,0,0,2801,'2526','H','D',142,'',0,'2025-11-09','0000-00-00',0,141,2195,0,'D03','',0,22500.00,0.00,0.00,22500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',22500.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-09 13:22:22','riya','2025-11-09 18:25:39',0),(3358,0,0,2806,'2526','H','D',143,'',0,'2025-11-09','0000-00-00',0,142,2198,0,'D03','',0,23650.00,0.00,0.00,23650.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10000,0,'0000-00-00','','N','N','F','N',13650.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-09 17:48:08','riya','2025-11-09 18:33:21',0),(3359,0,0,2801,'2526','H','I',127,'',0,'2025-11-09','0000-00-00',0,141,2195,0,'D03','',0,22500.00,0.00,0.00,22500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-22500,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-09 18:28:21','','0000-00-00 00:00:00',0),(3360,0,0,2806,'2526','H','I',128,'',0,'2025-11-09','0000-00-00',0,142,2198,0,'D03','',0,23650.00,0.00,0.00,23650.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-23650,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-09 18:37:26','','0000-00-00 00:00:00',0),(3361,0,0,2815,'2526','H','O',3090,'',0,'2025-11-10','0000-00-00',2149,0,2203,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 09:11:56','','0000-00-00 00:00:00',0),(3362,0,0,2816,'2526','H','O',3091,'',0,'2025-11-10','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 09:14:03','','0000-00-00 00:00:00',0),(3363,0,0,2817,'2526','H','O',3092,'',0,'2025-11-10','0000-00-00',2150,0,2204,0,'D14','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 09:16:10','','0000-00-00 00:00:00',0),(3364,0,0,2818,'2526','H','O',3093,'',0,'2025-11-10','0000-00-00',2105,0,2157,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','Axis','','11116','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 09:19:24','','0000-00-00 00:00:00',0),(3365,0,0,2820,'2526','H','O',3094,'',0,'2025-11-10','0000-00-00',2152,0,2206,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 3098','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-10 09:31:08','janvi','2025-11-10 09:40:36',0),(3366,0,0,2821,'2526','H','O',3095,'',0,'2025-11-10','0000-00-00',1335,0,1375,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 09:34:11','','0000-00-00 00:00:00',0),(3367,0,0,2819,'2526','H','O',3096,'',0,'2025-11-10','0000-00-00',2151,0,2205,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','Boi','','11875','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 09:38:15','','0000-00-00 00:00:00',0),(3368,0,0,2822,'2526','H','O',3097,'',0,'2025-11-10','0000-00-00',2153,0,2207,0,'D02','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','25531','','scan ',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 09:40:25','','0000-00-00 00:00:00',0),(3369,0,0,2820,'2526','H','O',3098,'',0,'2025-11-10','0000-00-00',2152,0,2206,0,'D27','',0,-800.00,0.00,0.00,-800.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-800.00,0,0,'2025-11-10','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 3094','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-10 09:40:36','janvi','2025-11-10 09:41:05',0),(3370,0,0,2824,'2526','H','O',3099,'',0,'2025-11-10','0000-00-00',2154,0,2208,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 09:43:10','','0000-00-00 00:00:00',0),(3371,0,0,2826,'2526','H','O',3100,'',0,'2025-11-10','0000-00-00',2155,0,2210,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 09:47:42','','0000-00-00 00:00:00',0),(3372,0,0,2828,'2526','H','O',3101,'',0,'2025-11-10','0000-00-00',404,0,426,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 09:52:22','','0000-00-00 00:00:00',0),(3373,0,0,2829,'2526','H','O',3102,'',0,'2025-11-10','0000-00-00',2156,0,2211,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','rajkot nagrik','','23253','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 09:53:25','','0000-00-00 00:00:00',0),(3374,0,0,2830,'2526','H','O',3103,'',0,'2025-11-10','0000-00-00',2157,0,2212,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 10:04:49','','0000-00-00 00:00:00',0),(3375,0,0,2832,'2526','H','O',3104,'',0,'2025-11-10','0000-00-00',1609,0,1654,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 10:13:03','','0000-00-00 00:00:00',0),(3376,0,0,2833,'2526','H','O',3105,'',0,'2025-11-10','0000-00-00',140,0,151,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-10 10:19:39','','0000-00-00 00:00:00',0),(3377,0,0,2834,'2526','H','O',3106,'',0,'2025-11-10','0000-00-00',2159,0,2214,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 10:30:20','','0000-00-00 00:00:00',0),(3378,0,0,2835,'2526','H','O',3107,'',0,'2025-11-10','0000-00-00',2005,0,2056,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 10:32:09','','0000-00-00 00:00:00',0),(3379,0,0,2836,'2526','H','O',3108,'',0,'2025-11-10','0000-00-00',2160,0,2215,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 10:32:49','','0000-00-00 00:00:00',0),(3380,0,0,2837,'2526','H','O',3109,'',0,'2025-11-10','0000-00-00',1701,0,1747,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 10:37:08','','0000-00-00 00:00:00',0),(3381,0,0,2840,'2526','H','O',3110,'',0,'2025-11-10','0000-00-00',2162,0,2217,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 10:40:37','','0000-00-00 00:00:00',0),(3382,0,0,2839,'2526','H','O',3111,'',0,'2025-11-10','0000-00-00',2161,0,2216,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 10:41:08','','0000-00-00 00:00:00',0),(3383,0,0,2841,'2526','H','O',3112,'',0,'2025-11-10','0000-00-00',2163,0,2218,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 10:47:49','','0000-00-00 00:00:00',0),(3384,0,0,2843,'2526','H','O',3113,'',0,'2025-11-10','0000-00-00',1898,0,1946,0,'D27','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-10 10:47:55','','0000-00-00 00:00:00',0),(3385,0,0,2842,'2526','H','O',3114,'',0,'2025-11-10','0000-00-00',2164,0,2219,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 10:48:22','','0000-00-00 00:00:00',0),(3386,0,0,2831,'2526','H','O',3115,'',0,'2025-11-10','0000-00-00',2158,0,2213,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 10:57:09','','0000-00-00 00:00:00',0),(3387,0,0,2844,'2526','H','O',3116,'',0,'2025-11-10','0000-00-00',2165,0,2220,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 10:57:45','','0000-00-00 00:00:00',0),(3388,0,0,2846,'2526','H','O',3117,'',0,'2025-11-10','0000-00-00',1125,0,1095,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 11:00:42','','0000-00-00 00:00:00',0),(3389,0,0,2827,'2526','H','O',3118,'',0,'2025-11-10','0000-00-00',12,0,12,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','62865','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 11:01:07','','0000-00-00 00:00:00',0),(3390,0,0,2847,'2526','H','O',3119,'',0,'2025-11-10','0000-00-00',2167,0,2222,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 11:04:24','','0000-00-00 00:00:00',0),(3391,0,0,2849,'2526','H','O',3120,'',0,'2025-11-10','0000-00-00',489,0,514,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 11:12:53','','0000-00-00 00:00:00',0),(3392,0,0,2850,'2526','H','O',3121,'',0,'2025-11-10','0000-00-00',2168,0,2223,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 11:16:59','','0000-00-00 00:00:00',0),(3393,0,0,2851,'2526','H','O',3122,'',0,'2025-11-10','0000-00-00',2169,0,2224,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','HO 3147','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 11:17:39','manshi','2025-11-10 12:10:59',0),(3394,0,0,2852,'2526','H','O',3123,'',0,'2025-11-10','0000-00-00',2170,0,2225,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','52149','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 11:19:21','','0000-00-00 00:00:00',0),(3395,0,0,2793,'2526','H','D',144,'',0,'2025-11-10','0000-00-00',2137,140,2188,0,'D02','',0,58000.00,0.00,0.00,58000.00,3000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-50000,0,'0000-00-00','','N','N','F','N',5000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-10 11:19:46','riya','2025-11-10 11:49:04',0),(3396,0,0,2845,'2526','H','O',3124,'',0,'2025-11-10','0000-00-00',2166,0,2221,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 11:22:02','','0000-00-00 00:00:00',0),(3397,0,0,2853,'2526','H','O',3125,'',0,'2025-11-10','0000-00-00',1974,0,2022,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','INDUSLAND BANK','','98562','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 11:24:40','','0000-00-00 00:00:00',0),(3398,0,0,2854,'2526','H','O',3126,'',0,'2025-11-10','0000-00-00',2171,0,2226,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 11:27:38','','0000-00-00 00:00:00',0),(3399,0,0,2855,'2526','H','O',3127,'',0,'2025-11-10','0000-00-00',208,0,221,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 11:36:09','','0000-00-00 00:00:00',0),(3400,0,0,2856,'2526','H','O',3128,'',0,'2025-11-10','0000-00-00',1617,0,1662,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 11:37:21','','0000-00-00 00:00:00',0),(3401,0,0,2836,'2526','H','O',3129,'',0,'2025-11-10','0000-00-00',2160,0,2215,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 11:40:24','','0000-00-00 00:00:00',0),(3402,0,0,2823,'2526','H','O',3130,'',0,'2025-11-10','0000-00-00',2145,0,2197,0,'D02','',0,4000.00,0.00,0.00,4000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-10 11:41:19','','0000-00-00 00:00:00',0),(3403,0,0,2826,'2526','H','O',3131,'',0,'2025-11-10','0000-00-00',2155,0,2210,0,'D06','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 11:41:28','','0000-00-00 00:00:00',0),(3404,0,0,2857,'2526','H','O',3132,'',0,'2025-11-10','0000-00-00',1938,0,1986,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 11:42:31','','0000-00-00 00:00:00',0),(3405,0,0,2858,'2526','H','O',3133,'',0,'2025-11-10','0000-00-00',2172,0,2227,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 11:44:15','','0000-00-00 00:00:00',0),(3406,0,0,2859,'2526','H','O',3134,'',0,'2025-11-10','0000-00-00',2173,0,2228,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 11:44:26','','0000-00-00 00:00:00',0),(3407,0,0,2851,'2526','H','O',3135,'',0,'2025-11-10','0000-00-00',2169,0,2224,0,'D03','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 11:45:30','','0000-00-00 00:00:00',0),(3408,0,0,2846,'2526','H','O',3136,'',0,'2025-11-10','0000-00-00',1125,0,1095,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 11:46:20','','0000-00-00 00:00:00',0),(3409,0,0,2860,'2526','H','O',3137,'',0,'2025-11-10','0000-00-00',2174,0,2229,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','13524','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 11:48:14','','0000-00-00 00:00:00',0),(3410,0,0,2861,'2526','H','O',3138,'',0,'2025-11-10','0000-00-00',2175,0,2230,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 11:49:45','','0000-00-00 00:00:00',0),(3411,0,0,2862,'2526','H','O',3139,'',0,'2025-11-10','0000-00-00',2176,0,2231,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 11:52:54','','0000-00-00 00:00:00',0),(3412,0,0,2863,'2526','H','O',3140,'',0,'2025-11-10','0000-00-00',2177,0,2232,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.RIDHAM ','HO 3157','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 11:56:57','manshi','2025-11-10 12:54:25',0),(3413,0,0,2864,'2526','H','O',3141,'',0,'2025-11-10','0000-00-00',2178,0,2233,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 11:58:29','','0000-00-00 00:00:00',0),(3414,0,0,2866,'2526','H','O',3142,'',0,'2025-11-10','0000-00-00',1870,0,1915,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-10 12:01:05','','0000-00-00 00:00:00',0),(3415,0,0,2793,'2526','H','I',129,'',0,'2025-11-10','0000-00-00',2137,140,2188,0,'D02','',0,58000.00,0.00,0.00,58000.00,3000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-55000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(3416,0,0,2865,'2526','H','O',3143,'',0,'2025-11-10','0000-00-00',1574,0,1618,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 12:01:29','','0000-00-00 00:00:00',0),(3417,0,0,2867,'2526','H','O',3144,'',0,'2025-11-10','0000-00-00',2179,0,2234,0,'D06','',0,500.00,0.00,0.00,500.00,250.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',250.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 12:03:07','','0000-00-00 00:00:00',0),(3418,0,0,2868,'2526','H','O',3145,'',0,'2025-11-10','0000-00-00',2180,0,2235,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-10 12:09:00','','0000-00-00 00:00:00',0),(3419,0,0,2869,'2526','H','O',3146,'',0,'2025-11-10','0000-00-00',2181,0,2236,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 12:09:33','','0000-00-00 00:00:00',0),(3420,0,0,2851,'2526','H','O',3147,'',0,'2025-11-10','0000-00-00',2169,0,2224,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-10','Y','N','N','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','','HO 3122','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 12:10:59','manshi','2025-11-10 12:11:22',0),(3421,0,0,2870,'2526','H','O',3148,'',0,'2025-11-10','0000-00-00',2182,0,2237,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 12:18:17','','0000-00-00 00:00:00',0),(3422,0,0,2858,'2526','H','O',3149,'',0,'2025-11-10','0000-00-00',2172,0,2227,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 12:21:55','','0000-00-00 00:00:00',0),(3423,0,0,2869,'2526','H','O',3150,'',0,'2025-11-10','0000-00-00',2181,0,2236,0,'D02','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-10 12:26:26','','0000-00-00 00:00:00',0),(3424,0,0,2834,'2526','H','O',3151,'',0,'2025-11-10','0000-00-00',2159,0,2214,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 12:31:01','','0000-00-00 00:00:00',0),(3425,0,0,2871,'2526','H','O',3152,'',0,'2025-11-10','0000-00-00',2183,0,2238,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 12:33:45','','0000-00-00 00:00:00',0),(3426,0,0,2872,'2526','H','O',3153,'',0,'2025-11-10','0000-00-00',1614,0,1659,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 12:40:03','','0000-00-00 00:00:00',0),(3427,0,0,2873,'2526','H','O',3154,'',0,'2025-11-10','0000-00-00',2184,0,2239,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 12:49:49','','0000-00-00 00:00:00',0),(3428,0,0,2874,'2526','H','O',3155,'',0,'2025-11-10','0000-00-00',1675,0,1720,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 12:51:10','','0000-00-00 00:00:00',0),(3429,0,0,2852,'2526','H','O',3156,'',0,'2025-11-10','0000-00-00',2170,0,2225,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','7','bob','','43282','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 12:53:10','','0000-00-00 00:00:00',0),(3430,0,0,2863,'2526','H','O',3157,'',0,'2025-11-10','0000-00-00',2177,0,2232,0,'D14','',0,-800.00,0.00,0.00,-800.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-800.00,0,0,'2025-11-10','Y','N','N','','N',0.00,'','Y','FOC BY DR.RIDHAM ','','HO 3140','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 12:54:25','manshi','2025-11-10 12:54:46',0),(3431,0,0,2875,'2526','H','O',3158,'',0,'2025-11-10','0000-00-00',2185,0,2240,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 12:57:35','','0000-00-00 00:00:00',0),(3432,0,0,2870,'2526','H','O',3159,'',0,'2025-11-10','0000-00-00',2182,0,2237,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 13:04:06','','0000-00-00 00:00:00',0),(3433,0,0,2877,'2526','H','O',3160,'',0,'2025-11-10','0000-00-00',2186,0,2242,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 13:15:41','','0000-00-00 00:00:00',0),(3434,0,0,2862,'2526','H','O',3161,'',0,'2025-11-10','0000-00-00',2176,0,2231,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 13:28:13','','0000-00-00 00:00:00',0),(3435,0,0,2878,'2526','H','O',3162,'',0,'2025-11-10','0000-00-00',864,0,896,0,'D06','',0,400.00,0.00,0.00,400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','Axis','','06115','','scan',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 14:29:42','','0000-00-00 00:00:00',0),(3436,0,0,2880,'2526','H','O',3163,'',0,'2025-11-10','0000-00-00',1503,0,1544,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 16:18:18','','0000-00-00 00:00:00',0),(3437,0,0,2881,'2526','H','O',3164,'',0,'2025-11-10','0000-00-00',1859,0,1904,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 16:57:45','','0000-00-00 00:00:00',0),(3438,0,0,2882,'2526','H','O',3165,'',0,'2025-11-10','0000-00-00',2187,0,2244,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 17:00:51','','0000-00-00 00:00:00',0),(3439,0,0,2883,'2526','H','O',3166,'',0,'2025-11-10','0000-00-00',1612,0,1657,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 17:02:36','','0000-00-00 00:00:00',0),(3440,0,0,2884,'2526','H','O',3167,'',0,'2025-11-10','0000-00-00',2188,0,2245,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 17:03:39','','0000-00-00 00:00:00',0),(3441,0,0,2885,'2526','H','O',3168,'',0,'2025-11-10','0000-00-00',524,0,550,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 17:13:07','','0000-00-00 00:00:00',0),(3442,0,0,2887,'2526','H','O',3169,'',0,'2025-11-10','0000-00-00',2189,0,2246,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 17:23:21','','0000-00-00 00:00:00',0),(3443,0,0,2888,'2526','H','O',3170,'',0,'2025-11-10','0000-00-00',2190,0,2247,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 3176','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 17:27:59','janvi','2025-11-10 17:49:14',0),(3444,0,0,2890,'2526','H','O',3171,'',0,'2025-11-10','0000-00-00',2191,0,2248,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 17:33:31','','0000-00-00 00:00:00',0),(3445,0,0,2886,'2526','H','O',3172,'',0,'2025-11-10','0000-00-00',1976,0,2024,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-10 17:38:19','','0000-00-00 00:00:00',0),(3446,0,0,2891,'2526','H','O',3173,'',0,'2025-11-10','0000-00-00',2118,0,1763,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-10 17:43:42','','0000-00-00 00:00:00',0),(3447,0,0,2892,'2526','H','O',3174,'',0,'2025-11-10','0000-00-00',2192,0,2249,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sib','','63905','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 17:46:44','','0000-00-00 00:00:00',0),(3448,0,0,2893,'2526','H','O',3175,'',0,'2025-11-10','0000-00-00',2139,0,2190,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 17:48:40','','0000-00-00 00:00:00',0),(3449,0,0,2888,'2526','H','O',3176,'',0,'2025-11-10','0000-00-00',2190,0,2247,0,'D02','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-10','Y','N','N','','N',0.00,'','Y','FOC','','HO 3170','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-10 17:49:14','janvi','2025-11-10 17:49:30',0),(3450,0,0,2894,'2526','H','O',3177,'',0,'2025-11-10','0000-00-00',2193,0,2250,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 17:51:32','','0000-00-00 00:00:00',0),(3451,0,0,2884,'2526','H','O',3178,'',0,'2025-11-10','0000-00-00',2188,0,2245,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 17:53:05','','0000-00-00 00:00:00',0),(3452,0,0,2895,'2526','H','O',3179,'',0,'2025-11-10','0000-00-00',430,0,453,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-10 17:58:39','','0000-00-00 00:00:00',0),(3453,0,0,2896,'2526','H','O',3180,'',0,'2025-11-10','0000-00-00',2194,0,2251,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOI BANK','','69113','','scan ',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','TRANSFER TO ORTHO','HO 3181','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 18:05:35','janvi','2025-11-10 18:08:31',0),(3454,0,0,2896,'2526','H','O',3181,'',0,'2025-11-10','0000-00-00',2194,0,2251,0,'D02','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','BOI','','69113','','SCAN                          ',-500.00,0,0,'2025-11-10','Y','N','N','','N',0.00,'','Y','TRANSFER TO ORTHO','','HO 3180','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-10 18:08:31','janvi','2025-11-10 18:10:20',0),(3455,0,0,2896,'2526','H','O',3182,'',0,'2025-11-10','0000-00-00',2194,0,2251,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','69113','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 18:12:14','','0000-00-00 00:00:00',0),(3456,0,0,2887,'2526','H','O',3183,'',0,'2025-11-10','0000-00-00',2189,0,2246,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 18:15:24','','0000-00-00 00:00:00',0),(3457,0,0,2897,'2526','H','O',3184,'',0,'2025-11-10','0000-00-00',200,0,213,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','92439','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-10 18:17:39','','0000-00-00 00:00:00',0),(3458,0,0,2896,'2526','H','O',3185,'',0,'2025-11-10','0000-00-00',2194,0,2251,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','bank of india','','74925','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 18:19:43','','0000-00-00 00:00:00',0),(3459,0,0,2899,'2526','H','O',3186,'',0,'2025-11-10','0000-00-00',2195,0,2252,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 18:21:53','','0000-00-00 00:00:00',0),(3460,0,0,2900,'2526','H','O',3187,'',0,'2025-11-10','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 18:23:10','','0000-00-00 00:00:00',0),(3461,0,0,2902,'2526','H','O',3188,'',0,'2025-11-10','0000-00-00',653,0,683,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 18:24:51','','0000-00-00 00:00:00',0),(3462,0,0,2903,'2526','H','O',3189,'',0,'2025-11-10','0000-00-00',2196,0,2253,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 18:26:00','','0000-00-00 00:00:00',0),(3463,0,0,2905,'2526','H','O',3190,'',0,'2025-11-10','0000-00-00',2198,0,2254,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','73317','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 18:31:46','','0000-00-00 00:00:00',0),(3464,0,0,2898,'2526','H','O',3191,'',0,'2025-11-10','0000-00-00',1343,0,1383,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 18:33:08','','0000-00-00 00:00:00',0),(3465,0,0,2907,'2526','H','O',3192,'',0,'2025-11-10','0000-00-00',2199,0,2255,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 18:35:24','','0000-00-00 00:00:00',0),(3466,0,0,2910,'2526','H','O',3193,'',0,'2025-11-10','0000-00-00',1401,0,1441,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 18:55:10','','0000-00-00 00:00:00',0),(3467,0,0,2911,'2526','H','O',3194,'',0,'2025-11-10','0000-00-00',1661,0,1706,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','REFUND BY DR.RIDHAM SR','HO 3199','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 18:57:56','manshi','2025-11-10 19:23:38',0),(3468,0,0,2903,'2526','H','O',3195,'',0,'2025-11-10','0000-00-00',2196,0,2253,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','26526','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 18:59:13','','0000-00-00 00:00:00',0),(3469,0,0,2909,'2526','H','O',3196,'',0,'2025-11-10','0000-00-00',2200,0,2256,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 18:59:52','','0000-00-00 00:00:00',0),(3470,0,0,2912,'2526','H','O',3197,'',0,'2025-11-10','0000-00-00',1912,0,1960,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 19:06:53','','0000-00-00 00:00:00',0),(3471,0,0,2913,'2526','H','O',3198,'',0,'2025-11-10','0000-00-00',941,0,972,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','27823','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 19:17:20','','0000-00-00 00:00:00',0),(3472,0,0,2911,'2526','H','O',3199,'',0,'2025-11-10','0000-00-00',1661,0,1706,0,'D14','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-10','Y','N','N','','N',0.00,'','Y','REFUND BY DR.RIDHAM SR','','HO 3194','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 19:23:38','manshi','2025-11-10 19:30:20',0),(3473,0,0,2914,'2526','H','O',3200,'',0,'2025-11-10','0000-00-00',2201,0,2257,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','19799','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 19:29:26','','0000-00-00 00:00:00',0),(3474,0,0,2915,'2526','H','O',3201,'',0,'2025-11-10','0000-00-00',2202,0,2258,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 19:30:44','','0000-00-00 00:00:00',0),(3475,0,0,2916,'2526','H','O',3202,'',0,'2025-11-10','0000-00-00',2203,0,2259,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 19:35:35','','0000-00-00 00:00:00',0),(3476,0,0,2916,'2526','H','O',3203,'',0,'2025-11-10','0000-00-00',2203,0,2259,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 19:46:58','','0000-00-00 00:00:00',0),(3477,0,0,2917,'2526','H','O',3204,'',0,'2025-11-10','0000-00-00',2204,0,2260,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-10 19:49:21','','0000-00-00 00:00:00',0),(3478,0,0,2914,'2526','H','O',3205,'',0,'2025-11-10','0000-00-00',2201,0,2257,0,'D14','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','16826','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-10 19:53:14','','0000-00-00 00:00:00',0),(3479,0,0,2918,'2526','H','O',3206,'',0,'2025-11-10','0000-00-00',2205,0,2261,0,'D06','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','CRD','card','3198','3198','','card',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-10 20:34:20','','0000-00-00 00:00:00',0),(3480,0,0,2920,'2526','H','O',3207,'',0,'2025-11-11','0000-00-00',2206,0,2262,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 09:14:47','','0000-00-00 00:00:00',0),(3481,0,0,2921,'2526','H','O',3208,'',0,'2025-11-11','0000-00-00',2022,0,2075,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 09:23:53','','0000-00-00 00:00:00',0),(3482,0,0,2922,'2526','H','O',3209,'',0,'2025-11-11','0000-00-00',1692,0,1738,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 09:52:38','','0000-00-00 00:00:00',0),(3483,0,0,2923,'2526','H','O',3210,'',0,'2025-11-11','0000-00-00',509,0,534,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 10:03:53','','0000-00-00 00:00:00',0),(3484,0,0,2924,'2526','H','O',3211,'',0,'2025-11-11','0000-00-00',2207,0,2263,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 10:06:13','','0000-00-00 00:00:00',0),(3485,0,0,2925,'2526','H','O',3212,'',0,'2025-11-11','0000-00-00',1713,0,1757,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 10:10:52','','0000-00-00 00:00:00',0),(3486,0,0,2926,'2526','H','O',3213,'',0,'2025-11-11','0000-00-00',2208,0,2264,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 10:13:05','','0000-00-00 00:00:00',0),(3487,0,0,2825,'2526','H','D',145,'',0,'2025-11-11','0000-00-00',0,144,2209,0,'D02','',0,7600.00,0.00,0.00,7600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',7600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-11 10:16:35','riya','2025-11-11 16:32:14',0),(3488,0,0,2928,'2526','H','O',3214,'',0,'2025-11-11','0000-00-00',166,0,179,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 10:29:05','','0000-00-00 00:00:00',0),(3489,0,0,2929,'2526','H','O',3215,'',0,'2025-11-11','0000-00-00',493,0,518,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 10:30:10','','0000-00-00 00:00:00',0),(3490,0,0,2927,'2526','H','O',3216,'',0,'2025-11-11','0000-00-00',2209,0,2265,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-11 10:38:52','','0000-00-00 00:00:00',0),(3491,0,0,2930,'2526','H','O',3217,'',0,'2025-11-11','0000-00-00',2210,0,2266,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 10:41:21','','0000-00-00 00:00:00',0),(3492,0,0,2931,'2526','H','O',3218,'',0,'2025-11-11','0000-00-00',2211,0,2267,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 10:45:23','','0000-00-00 00:00:00',0),(3493,0,0,2932,'2526','H','O',3219,'',0,'2025-11-11','0000-00-00',1736,0,1780,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','61975','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 10:48:07','','0000-00-00 00:00:00',0),(3494,0,0,2933,'2526','H','O',3220,'',0,'2025-11-11','0000-00-00',2212,0,2268,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','06017','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 10:51:08','','0000-00-00 00:00:00',0),(3495,0,0,2934,'2526','H','O',3221,'',0,'2025-11-11','0000-00-00',2213,0,2269,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 10:52:08','','0000-00-00 00:00:00',0),(3496,0,0,2937,'2526','H','O',3222,'',0,'2025-11-11','0000-00-00',2215,0,2271,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 10:55:50','','0000-00-00 00:00:00',0),(3497,0,0,2938,'2526','H','O',3223,'',0,'2025-11-11','0000-00-00',2216,0,2272,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 10:57:22','','0000-00-00 00:00:00',0),(3498,0,0,2939,'2526','H','O',3224,'',0,'2025-11-11','0000-00-00',2217,0,2273,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','HO 3237','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-11 10:58:57','manshi','2025-11-11 11:18:09',0),(3499,0,0,2940,'2526','H','O',3225,'',0,'2025-11-11','0000-00-00',1734,0,1778,0,'D06','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','29247','','scan',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 11:03:47','','0000-00-00 00:00:00',0),(3500,0,0,2941,'2526','H','O',3226,'',0,'2025-11-11','0000-00-00',2218,0,2274,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 11:04:06','','0000-00-00 00:00:00',0),(3501,0,0,2942,'2526','H','O',3227,'',0,'2025-11-11','0000-00-00',2219,0,2275,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 11:05:23','','0000-00-00 00:00:00',0),(3502,0,0,2943,'2526','H','O',3228,'',0,'2025-11-11','0000-00-00',638,0,668,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 11:08:38','','0000-00-00 00:00:00',0),(3503,0,0,2944,'2526','H','O',3229,'',0,'2025-11-11','0000-00-00',1420,0,1461,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 3286','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 11:09:32','drashti','2025-11-11 13:03:59',0),(3504,0,0,2946,'2526','H','O',3230,'',0,'2025-11-11','0000-00-00',271,0,287,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 11:10:58','','0000-00-00 00:00:00',0),(3505,0,0,2945,'2526','H','O',3231,'',0,'2025-11-11','0000-00-00',2220,0,2276,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-11 11:11:11','','0000-00-00 00:00:00',0),(3506,0,0,2947,'2526','H','O',3232,'',0,'2025-11-11','0000-00-00',2221,0,2277,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 11:12:21','','0000-00-00 00:00:00',0),(3507,0,0,2948,'2526','H','O',3233,'',0,'2025-11-11','0000-00-00',1548,0,1591,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','68248','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 11:13:16','','0000-00-00 00:00:00',0),(3508,0,0,2951,'2526','H','O',3234,'',0,'2025-11-11','0000-00-00',1247,0,1288,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 11:13:59','','0000-00-00 00:00:00',0),(3509,0,0,2952,'2526','H','O',3235,'',0,'2025-11-11','0000-00-00',1865,0,1910,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-11 11:16:21','','0000-00-00 00:00:00',0),(3510,0,0,2953,'2526','H','O',3236,'',0,'2025-11-11','0000-00-00',2222,0,2278,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 11:16:24','','0000-00-00 00:00:00',0),(3511,0,0,2939,'2526','H','O',3237,'',0,'2025-11-11','0000-00-00',2217,0,2273,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-11','Y','N','N','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','','HO 3224','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-11 11:18:09','manshi','2025-11-11 11:19:02',0),(3512,0,0,2954,'2526','H','O',3238,'',0,'2025-11-11','0000-00-00',2223,0,2279,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOI BANK','','95414','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 11:19:11','','0000-00-00 00:00:00',0),(3513,0,0,2955,'2526','H','O',3239,'',0,'2025-11-11','0000-00-00',2224,0,2280,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 11:19:16','','0000-00-00 00:00:00',0),(3514,0,0,2920,'2526','H','O',3240,'',0,'2025-11-11','0000-00-00',2206,0,2262,0,'D06','',0,2500.00,0.00,0.00,2500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 11:20:52','','0000-00-00 00:00:00',0),(3515,0,0,2957,'2526','H','O',3241,'',0,'2025-11-11','0000-00-00',2226,0,2282,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','29581','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 11:22:59','','0000-00-00 00:00:00',0),(3516,0,0,2956,'2526','H','O',3242,'',0,'2025-11-11','0000-00-00',2225,0,2281,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','29581','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 11:23:10','','0000-00-00 00:00:00',0),(3517,0,0,2958,'2526','H','O',3243,'',0,'2025-11-11','0000-00-00',2227,0,2283,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 11:31:42','','0000-00-00 00:00:00',0),(3518,0,0,2959,'2526','H','O',3244,'',0,'2025-11-11','0000-00-00',1033,0,1067,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-11 11:33:22','','0000-00-00 00:00:00',0),(3519,0,0,2960,'2526','H','O',3245,'',0,'2025-11-11','0000-00-00',2228,0,2284,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 3285','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 11:33:38','reception','2025-11-11 12:50:33',0),(3520,0,0,2961,'2526','H','O',3246,'',0,'2025-11-11','0000-00-00',2229,0,2285,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 11:37:06','','0000-00-00 00:00:00',0),(3521,0,0,2934,'2526','H','O',3247,'',0,'2025-11-11','0000-00-00',2213,0,2269,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CRD','sbi','3200','3200','','card',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 11:38:19','','0000-00-00 00:00:00',0),(3522,0,0,2963,'2526','H','O',3248,'',0,'2025-11-11','0000-00-00',2231,0,2287,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 11:40:06','','0000-00-00 00:00:00',0),(3523,0,0,2964,'2526','H','O',3249,'',0,'2025-11-11','0000-00-00',2232,0,2288,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 11:40:23','','0000-00-00 00:00:00',0),(3524,0,0,2962,'2526','H','O',3250,'',0,'2025-11-11','0000-00-00',2230,0,2286,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 11:40:28','','0000-00-00 00:00:00',0),(3525,0,0,2965,'2526','H','O',3251,'',0,'2025-11-11','0000-00-00',1228,0,1269,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 11:41:48','','0000-00-00 00:00:00',0),(3526,0,0,2967,'2526','H','O',3252,'',0,'2025-11-11','0000-00-00',1273,0,1312,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 11:42:34','','0000-00-00 00:00:00',0),(3527,0,0,2966,'2526','H','O',3253,'',0,'2025-11-11','0000-00-00',2233,0,2289,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 11:42:38','','0000-00-00 00:00:00',0),(3528,0,0,2968,'2526','H','O',3254,'',0,'2025-11-11','0000-00-00',2234,0,2290,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 11:43:19','','0000-00-00 00:00:00',0),(3529,0,0,2959,'2526','H','O',3255,'',0,'2025-11-11','0000-00-00',1033,0,1067,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-11 11:44:28','','0000-00-00 00:00:00',0),(3530,0,0,2924,'2526','H','O',3256,'',0,'2025-11-11','0000-00-00',2207,0,2263,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 11:46:27','','0000-00-00 00:00:00',0),(3531,0,0,2969,'2526','H','O',3257,'',0,'2025-11-11','0000-00-00',2235,0,2291,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','2','hdfc','3201','3201','','card',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 11:49:28','','0000-00-00 00:00:00',0),(3532,0,0,2970,'2526','H','O',3258,'',0,'2025-11-11','0000-00-00',773,0,804,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 11:51:12','','0000-00-00 00:00:00',0),(3533,0,0,2971,'2526','H','O',3259,'',0,'2025-11-11','0000-00-00',2236,0,2292,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','66465','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 11:55:21','','0000-00-00 00:00:00',0),(3534,0,0,2972,'2526','H','O',3260,'',0,'2025-11-11','0000-00-00',1085,0,714,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','27581','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 11:56:22','','0000-00-00 00:00:00',0),(3535,0,0,2973,'2526','H','O',3261,'',0,'2025-11-11','0000-00-00',2237,0,2293,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 12:02:01','','0000-00-00 00:00:00',0),(3536,0,0,2974,'2526','H','O',3262,'',0,'2025-11-11','0000-00-00',1928,0,1976,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','INDIA POST PAY','','22337','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-11 12:03:40','','0000-00-00 00:00:00',0),(3537,0,0,2975,'2526','H','O',3263,'',0,'2025-11-11','0000-00-00',816,0,847,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 12:05:52','','0000-00-00 00:00:00',0),(3538,0,0,2977,'2526','H','O',3264,'',0,'2025-11-11','0000-00-00',538,0,564,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 12:09:54','','0000-00-00 00:00:00',0),(3539,0,0,2976,'2526','H','O',3265,'',0,'2025-11-11','0000-00-00',2238,0,2294,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 12:10:19','','0000-00-00 00:00:00',0),(3540,0,0,2978,'2526','H','O',3266,'',0,'2025-11-11','0000-00-00',1985,0,2036,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','22937','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-11 12:13:56','','0000-00-00 00:00:00',0),(3541,0,0,2980,'2526','H','O',3267,'',0,'2025-11-11','0000-00-00',2239,0,2295,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 12:17:53','','0000-00-00 00:00:00',0),(3542,0,0,2981,'2526','H','O',3268,'',0,'2025-11-11','0000-00-00',309,0,325,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','75450','','scan                          ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 12:19:00','','0000-00-00 00:00:00',0),(3543,0,0,2982,'2526','H','O',3269,'',0,'2025-11-11','0000-00-00',2240,0,2296,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 12:20:25','','0000-00-00 00:00:00',0),(3544,0,0,2985,'2526','H','O',3270,'',0,'2025-11-11','0000-00-00',2243,0,2299,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 12:23:00','','0000-00-00 00:00:00',0),(3545,0,0,2986,'2526','H','O',3271,'',0,'2025-11-11','0000-00-00',2244,0,2300,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 12:23:05','','0000-00-00 00:00:00',0),(3546,0,0,2983,'2526','H','O',3272,'',0,'2025-11-11','0000-00-00',2241,0,2297,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 12:23:15','','0000-00-00 00:00:00',0),(3547,0,0,2987,'2526','H','O',3273,'',0,'2025-11-11','0000-00-00',1420,0,1461,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 12:23:27','','0000-00-00 00:00:00',0),(3548,0,0,2984,'2526','H','O',3274,'',0,'2025-11-11','0000-00-00',2242,0,2298,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 12:23:39','','0000-00-00 00:00:00',0),(3549,0,0,2988,'2526','H','O',3275,'',0,'2025-11-11','0000-00-00',1945,0,1993,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 12:24:58','','0000-00-00 00:00:00',0),(3550,0,0,2989,'2526','H','O',3276,'',0,'2025-11-11','0000-00-00',508,0,533,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 12:25:24','','0000-00-00 00:00:00',0),(3551,0,0,2950,'2526','H','O',3277,'',0,'2025-11-11','0000-00-00',2198,0,2254,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 12:30:27','','0000-00-00 00:00:00',0),(3552,0,0,2990,'2526','H','O',3278,'',0,'2025-11-11','0000-00-00',1511,0,1552,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 12:30:39','','0000-00-00 00:00:00',0),(3553,0,0,2691,'2526','H','D',146,'',0,'2025-11-11','0000-00-00',2073,138,2127,0,'D02','',0,24950.00,0.00,0.00,24950.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-17000,0,'0000-00-00','','N','N','F','N',7950.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-11 12:31:37','riya','2025-11-11 12:46:31',0),(3554,0,0,2958,'2526','H','O',3279,'',0,'2025-11-11','0000-00-00',2227,0,2283,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 12:31:50','','0000-00-00 00:00:00',0),(3555,0,0,2991,'2526','H','O',3280,'',0,'2025-11-11','0000-00-00',2245,0,2301,0,'D03','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-11 12:34:39','','0000-00-00 00:00:00',0),(3556,0,0,2992,'2526','H','O',3281,'',0,'2025-11-11','0000-00-00',21,0,22,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 12:36:35','','0000-00-00 00:00:00',0),(3557,0,0,2993,'2526','H','O',3282,'',0,'2025-11-11','0000-00-00',284,0,300,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 12:38:40','','0000-00-00 00:00:00',0),(3558,0,0,2969,'2526','H','O',3283,'',0,'2025-11-11','0000-00-00',2235,0,2291,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','2','HDFC','3202','3202','','card',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 12:44:33','','0000-00-00 00:00:00',0),(3559,0,0,2949,'2526','H','O',3284,'',0,'2025-11-11','0000-00-00',2191,0,2248,0,'D02','',0,3000.00,0.00,0.00,3000.00,1500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 12:44:34','','0000-00-00 00:00:00',0),(3560,0,0,2960,'2526','H','O',3285,'',0,'2025-11-11','0000-00-00',2228,0,2284,0,'D06','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-11-11','Y','N','N','','N',0.00,'','Y','FOC','','HO 3245','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-11 12:50:33','reception','2025-11-11 12:51:03',0),(3561,0,0,2691,'2526','H','I',130,'',0,'2025-11-11','0000-00-00',2073,138,2127,0,'D02','',0,24950.00,0.00,0.00,24950.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-24950,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(3562,0,0,2944,'2526','H','O',3286,'',0,'2025-11-11','0000-00-00',1420,0,1461,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-11-11','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 3229','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 13:03:59','drashti','2025-11-11 13:04:29',0),(3563,0,0,2938,'2526','H','O',3287,'',0,'2025-11-11','0000-00-00',2216,0,2272,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 13:49:11','','0000-00-00 00:00:00',0),(3564,0,0,2995,'2526','H','O',3288,'',0,'2025-11-11','0000-00-00',2246,0,2303,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 13:50:58','','0000-00-00 00:00:00',0),(3565,0,0,2996,'2526','H','O',3289,'',0,'2025-11-11','0000-00-00',2247,0,2304,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','ADDMISION','HO 3291','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 14:10:15','janvi','2025-11-11 14:13:13',0),(3566,0,0,2997,'2526','H','O',3290,'',0,'2025-11-11','0000-00-00',2248,0,2305,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-11 14:13:07','','0000-00-00 00:00:00',0),(3567,0,0,2996,'2526','H','O',3291,'',0,'2025-11-11','0000-00-00',2247,0,2304,0,'D02','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-11','Y','N','N','','N',0.00,'','Y','ADDMISION','','HO 3289','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 14:13:13','janvi','2025-11-11 14:13:45',0),(3568,0,0,2998,'2526','H','O',3292,'',0,'2025-11-11','0000-00-00',2249,0,2306,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-11 16:42:11','','0000-00-00 00:00:00',0),(3569,0,0,2999,'2526','H','O',3293,'',0,'2025-11-11','0000-00-00',2250,0,2307,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 16:43:55','','0000-00-00 00:00:00',0),(3570,0,0,3000,'2526','H','O',3294,'',0,'2025-11-11','0000-00-00',997,0,1029,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','92257','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-11 16:49:08','','0000-00-00 00:00:00',0),(3571,0,0,3001,'2526','H','O',3295,'',0,'2025-11-11','0000-00-00',2251,0,2308,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 17:07:41','','0000-00-00 00:00:00',0),(3572,0,0,3002,'2526','H','O',3296,'',0,'2025-11-11','0000-00-00',2244,0,2300,0,'D06','',0,4500.00,0.00,0.00,4500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','93325','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 17:10:21','','0000-00-00 00:00:00',0),(3573,0,0,3003,'2526','H','O',3297,'',0,'2025-11-11','0000-00-00',460,0,486,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 17:16:21','','0000-00-00 00:00:00',0),(3574,0,0,3004,'2526','H','O',3298,'',0,'2025-11-11','0000-00-00',1976,0,2024,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 17:17:51','','0000-00-00 00:00:00',0),(3575,0,0,3005,'2526','H','O',3299,'',0,'2025-11-11','0000-00-00',2252,0,2309,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 17:21:01','','0000-00-00 00:00:00',0),(3576,0,0,3006,'2526','H','O',3300,'',0,'2025-11-11','0000-00-00',2089,0,2143,0,'D06','',0,4700.00,0.00,0.00,4700.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 17:24:36','','0000-00-00 00:00:00',0),(3577,0,0,3008,'2526','H','O',3301,'',0,'2025-11-11','0000-00-00',1133,0,1173,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 17:33:53','','0000-00-00 00:00:00',0),(3578,0,0,3001,'2526','H','O',3302,'',0,'2025-11-11','0000-00-00',2251,0,2308,0,'D06','',0,4400.00,0.00,0.00,4400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 17:33:55','','0000-00-00 00:00:00',0),(3579,0,0,3009,'2526','H','O',3303,'',0,'2025-11-11','0000-00-00',347,0,363,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 17:39:51','','0000-00-00 00:00:00',0),(3580,0,0,3010,'2526','H','O',3304,'',0,'2025-11-11','0000-00-00',2254,0,2311,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 17:42:11','','0000-00-00 00:00:00',0),(3581,0,0,2999,'2526','H','O',3305,'',0,'2025-11-11','0000-00-00',2250,0,2307,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 17:43:06','','0000-00-00 00:00:00',0),(3582,0,0,3011,'2526','H','O',3306,'',0,'2025-11-11','0000-00-00',2255,0,2312,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-11 17:46:07','','0000-00-00 00:00:00',0),(3583,0,0,3013,'2526','H','O',3307,'',0,'2025-11-11','0000-00-00',2256,0,2313,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 17:51:39','','0000-00-00 00:00:00',0),(3584,0,0,3012,'2526','H','O',3308,'',0,'2025-11-11','0000-00-00',1674,0,1719,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','37576','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 17:52:28','','0000-00-00 00:00:00',0),(3585,0,0,3014,'2526','H','O',3309,'',0,'2025-11-11','0000-00-00',2005,0,2056,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 17:53:21','','0000-00-00 00:00:00',0),(3586,0,0,3015,'2526','H','O',3310,'',0,'2025-11-11','0000-00-00',2257,0,2314,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','11035','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 17:56:40','','0000-00-00 00:00:00',0),(3587,0,0,3016,'2526','H','O',3311,'',0,'2025-11-11','0000-00-00',2258,0,2315,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 18:01:21','','0000-00-00 00:00:00',0),(3588,0,0,3017,'2526','H','O',3312,'',0,'2025-11-11','0000-00-00',2259,0,2316,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','00648','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 18:02:39','','0000-00-00 00:00:00',0),(3589,0,0,3018,'2526','H','O',3313,'',0,'2025-11-11','0000-00-00',2260,0,2317,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','23114','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 18:03:42','','0000-00-00 00:00:00',0),(3590,0,0,3019,'2526','H','O',3314,'',0,'2025-11-11','0000-00-00',2261,0,2318,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 18:04:32','','0000-00-00 00:00:00',0),(3591,0,0,3021,'2526','H','O',3315,'',0,'2025-11-11','0000-00-00',2118,0,1763,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 18:05:06','','0000-00-00 00:00:00',0),(3592,0,0,3022,'2526','H','O',3316,'',0,'2025-11-11','0000-00-00',2263,0,2320,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 18:11:11','','0000-00-00 00:00:00',0),(3593,0,0,3023,'2526','H','O',3317,'',0,'2025-11-11','0000-00-00',2264,0,2321,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 18:11:16','','0000-00-00 00:00:00',0),(3594,0,0,3024,'2526','H','O',3318,'',0,'2025-11-11','0000-00-00',2265,0,2322,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 18:11:55','','0000-00-00 00:00:00',0),(3595,0,0,3025,'2526','H','O',3319,'',0,'2025-11-11','0000-00-00',1397,0,1437,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','idbi','','17873','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 18:14:20','','0000-00-00 00:00:00',0),(3596,0,0,3026,'2526','H','O',3320,'',0,'2025-11-11','0000-00-00',2266,0,2323,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 18:14:48','','0000-00-00 00:00:00',0),(3597,0,0,3028,'2526','H','O',3321,'',0,'2025-11-11','0000-00-00',357,0,373,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 18:15:28','','0000-00-00 00:00:00',0),(3598,0,0,3030,'2526','H','O',3322,'',0,'2025-11-11','0000-00-00',2267,0,2324,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 18:17:23','','0000-00-00 00:00:00',0),(3599,0,0,3015,'2526','H','O',3323,'',0,'2025-11-11','0000-00-00',2257,0,2314,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','65299','','scan',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 18:21:04','','0000-00-00 00:00:00',0),(3600,0,0,3031,'2526','H','O',3324,'',0,'2025-11-11','0000-00-00',2268,0,2325,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','18789','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 18:23:13','','0000-00-00 00:00:00',0),(3601,0,0,3032,'2526','H','O',3325,'',0,'2025-11-11','0000-00-00',2269,0,2326,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-11 18:26:30','','0000-00-00 00:00:00',0),(3602,0,0,3033,'2526','H','O',3326,'',0,'2025-11-11','0000-00-00',2270,0,2327,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 18:32:28','','0000-00-00 00:00:00',0),(3603,0,0,3034,'2526','H','O',3327,'',0,'2025-11-11','0000-00-00',892,0,924,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','boi','','07745','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 18:35:13','','0000-00-00 00:00:00',0),(3604,0,0,3035,'2526','H','O',3328,'',0,'2025-11-11','0000-00-00',2271,0,2328,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','32490','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 18:35:32','','0000-00-00 00:00:00',0),(3605,0,0,3037,'2526','H','O',3329,'',0,'2025-11-11','0000-00-00',2272,0,2329,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','89096','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 18:37:40','','0000-00-00 00:00:00',0),(3606,0,0,3038,'2526','H','O',3330,'',0,'2025-11-11','0000-00-00',2273,0,2330,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 18:39:00','','0000-00-00 00:00:00',0),(3607,0,0,3036,'2526','H','O',3331,'',0,'2025-11-11','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 18:40:06','','0000-00-00 00:00:00',0),(3608,0,0,3032,'2526','H','O',3332,'',0,'2025-11-11','0000-00-00',2269,0,2326,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-11 18:42:21','','0000-00-00 00:00:00',0),(3609,0,0,3040,'2526','H','O',3333,'',0,'2025-11-11','0000-00-00',1663,0,1708,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 18:43:58','','0000-00-00 00:00:00',0),(3610,0,0,3039,'2526','H','O',3334,'',0,'2025-11-11','0000-00-00',2274,0,2331,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 18:44:07','','0000-00-00 00:00:00',0),(3611,0,0,3042,'2526','H','O',3335,'',0,'2025-11-11','0000-00-00',2276,0,2333,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 18:47:53','','0000-00-00 00:00:00',0),(3612,0,0,3041,'2526','H','O',3336,'',0,'2025-11-11','0000-00-00',2275,0,2332,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 18:48:36','','0000-00-00 00:00:00',0),(3613,0,0,3020,'2526','H','O',3337,'',0,'2025-11-11','0000-00-00',2262,0,2319,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 18:49:24','','0000-00-00 00:00:00',0),(3614,0,0,3044,'2526','H','O',3338,'',0,'2025-11-11','0000-00-00',983,0,403,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 18:50:08','','0000-00-00 00:00:00',0),(3615,0,0,3030,'2526','H','O',3339,'',0,'2025-11-11','0000-00-00',2267,0,2324,0,'D06','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','rnsb','','91915','','scan',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 18:50:24','','0000-00-00 00:00:00',0),(3616,0,0,3045,'2526','H','O',3340,'',0,'2025-11-11','0000-00-00',2277,0,2334,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 18:52:36','','0000-00-00 00:00:00',0),(3617,0,0,3046,'2526','H','O',3341,'',0,'2025-11-11','0000-00-00',2278,0,2335,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','09916','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 18:55:04','','0000-00-00 00:00:00',0),(3618,0,0,3020,'2526','H','O',3342,'',0,'2025-11-11','0000-00-00',2262,0,2319,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 18:56:24','','0000-00-00 00:00:00',0),(3619,0,0,3031,'2526','H','O',3343,'',0,'2025-11-11','0000-00-00',2268,0,2325,0,'D06','',0,4600.00,0.00,0.00,4600.00,600.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','64662','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 18:58:47','','0000-00-00 00:00:00',0),(3620,0,0,3047,'2526','H','O',3344,'',0,'2025-11-11','0000-00-00',2279,0,2336,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','66094','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 19:02:33','','0000-00-00 00:00:00',0),(3621,0,0,3019,'2526','H','O',3345,'',0,'2025-11-11','0000-00-00',2261,0,2318,0,'D06','',0,3000.00,0.00,0.00,3000.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 19:03:05','','0000-00-00 00:00:00',0),(3622,0,0,3048,'2526','H','O',3346,'',0,'2025-11-11','0000-00-00',2280,0,2337,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 19:07:02','','0000-00-00 00:00:00',0),(3623,0,0,3043,'2526','H','O',3347,'',0,'2025-11-11','0000-00-00',1521,0,1562,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 19:10:34','','0000-00-00 00:00:00',0),(3624,0,0,3049,'2526','H','O',3348,'',0,'2025-11-11','0000-00-00',1363,0,1403,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 19:11:05','','0000-00-00 00:00:00',0),(3625,0,0,3045,'2526','H','O',3349,'',0,'2025-11-11','0000-00-00',2277,0,2334,0,'D06','',0,6500.00,0.00,0.00,6500.00,700.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','saraswat bank','','79845','','scan',5800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 19:22:15','','0000-00-00 00:00:00',0),(3626,0,0,3029,'2526','H','O',3350,'',0,'2025-11-11','0000-00-00',1321,0,1361,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','23151','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 19:26:15','','0000-00-00 00:00:00',0),(3627,0,0,3051,'2526','H','O',3351,'',0,'2025-11-11','0000-00-00',2282,0,2339,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','CRD','bank','','74423','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 19:27:02','','0000-00-00 00:00:00',0),(3628,0,0,3032,'2526','H','O',3352,'',0,'2025-11-11','0000-00-00',2269,0,2326,0,'D03','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','12845','','SCAN',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-11 19:27:17','','0000-00-00 00:00:00',0),(3629,0,0,3052,'2526','H','O',3353,'',0,'2025-11-11','0000-00-00',2283,0,2340,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 19:27:37','','0000-00-00 00:00:00',0),(3630,0,0,3050,'2526','H','O',3354,'',0,'2025-11-11','0000-00-00',2281,0,2338,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','CRD','BANK','','18580','','CARD',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 19:29:25','','0000-00-00 00:00:00',0),(3631,0,0,3053,'2526','H','O',3355,'',0,'2025-11-11','0000-00-00',2284,0,2341,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-11 19:32:01','','0000-00-00 00:00:00',0),(3632,0,0,3054,'2526','H','O',3356,'',0,'2025-11-11','0000-00-00',2285,0,2342,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-11 19:45:28','','0000-00-00 00:00:00',0),(3633,0,0,3055,'2526','H','O',3357,'',0,'2025-11-11','0000-00-00',2286,0,2343,0,'D27','',0,2150.00,0.00,0.00,2150.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK BANK ','','75126','','scan ',2150.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-11 20:58:46','','0000-00-00 00:00:00',0),(3634,0,0,3056,'2526','H','O',3358,'',0,'2025-11-12','0000-00-00',2287,0,2344,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 08:49:42','','0000-00-00 00:00:00',0),(3635,0,0,3057,'2526','H','O',3359,'',0,'2025-11-12','0000-00-00',2288,0,2345,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','52716','','scan',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 09:08:08','','0000-00-00 00:00:00',0),(3636,0,0,3059,'2526','H','O',3360,'',0,'2025-11-12','0000-00-00',2290,0,2347,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 09:49:24','','0000-00-00 00:00:00',0),(3637,0,0,3060,'2526','H','O',3361,'',0,'2025-11-12','0000-00-00',2291,0,2348,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 09:50:37','','0000-00-00 00:00:00',0),(3638,0,0,3062,'2526','H','O',3362,'',0,'2025-11-12','0000-00-00',1715,0,1759,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 10:11:56','','0000-00-00 00:00:00',0),(3639,0,0,3061,'2526','H','O',3363,'',0,'2025-11-12','0000-00-00',2292,0,2349,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 10:12:25','','0000-00-00 00:00:00',0),(3640,0,0,3064,'2526','H','O',3364,'',0,'2025-11-12','0000-00-00',1824,0,1870,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 10:35:02','','0000-00-00 00:00:00',0),(3641,0,0,3065,'2526','H','O',3365,'',0,'2025-11-12','0000-00-00',20,0,20,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 10:36:01','','0000-00-00 00:00:00',0),(3642,0,0,3066,'2526','H','O',3366,'',0,'2025-11-12','0000-00-00',2294,0,2351,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 10:39:26','','0000-00-00 00:00:00',0),(3643,0,0,3067,'2526','H','O',3367,'',0,'2025-11-12','0000-00-00',2295,0,2352,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 10:42:26','','0000-00-00 00:00:00',0),(3644,0,0,3068,'2526','H','O',3368,'',0,'2025-11-12','0000-00-00',1097,0,1135,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 10:45:49','','0000-00-00 00:00:00',0),(3645,0,0,3064,'2526','H','O',3369,'',0,'2025-11-12','0000-00-00',1824,0,1870,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 10:55:17','','0000-00-00 00:00:00',0),(3646,0,0,3069,'2526','H','O',3370,'',0,'2025-11-12','0000-00-00',2296,0,2353,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 10:56:46','','0000-00-00 00:00:00',0),(3647,0,0,3070,'2526','H','O',3371,'',0,'2025-11-12','0000-00-00',2297,0,2354,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 11:00:23','','0000-00-00 00:00:00',0),(3648,0,0,3071,'2526','H','O',3372,'',0,'2025-11-12','0000-00-00',2298,0,2355,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 11:06:16','','0000-00-00 00:00:00',0),(3649,0,0,3072,'2526','H','O',3373,'',0,'2025-11-12','0000-00-00',472,0,498,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 11:09:07','','0000-00-00 00:00:00',0),(3650,0,0,3073,'2526','H','O',3374,'',0,'2025-11-12','0000-00-00',2299,0,2356,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 11:10:45','','0000-00-00 00:00:00',0),(3651,0,0,3075,'2526','H','O',3375,'',0,'2025-11-12','0000-00-00',2301,0,2358,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-12 11:11:43','','0000-00-00 00:00:00',0),(3652,0,0,3074,'2526','H','O',3376,'',0,'2025-11-12','0000-00-00',2300,0,2357,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 11:12:12','','0000-00-00 00:00:00',0),(3653,0,0,3076,'2526','H','O',3377,'',0,'2025-11-12','0000-00-00',1235,0,1276,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 11:12:44','','0000-00-00 00:00:00',0),(3654,0,0,3078,'2526','H','O',3378,'',0,'2025-11-12','0000-00-00',2302,0,2359,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 11:15:51','','0000-00-00 00:00:00',0),(3655,0,0,3058,'2526','H','O',3379,'',0,'2025-11-12','0000-00-00',2289,0,2346,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-12 11:17:24','','0000-00-00 00:00:00',0),(3656,0,0,3079,'2526','H','O',3380,'',0,'2025-11-12','0000-00-00',2303,0,2360,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 11:17:57','','0000-00-00 00:00:00',0),(3657,0,0,3080,'2526','H','O',3381,'',0,'2025-11-12','0000-00-00',2304,0,2361,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-12 11:20:51','','0000-00-00 00:00:00',0),(3658,0,0,3081,'2526','H','O',3382,'',0,'2025-11-12','0000-00-00',2305,0,2362,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 11:21:44','','0000-00-00 00:00:00',0),(3659,0,0,3077,'2526','H','O',3383,'',0,'2025-11-12','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','71239','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 11:27:48','','0000-00-00 00:00:00',0),(3660,0,0,3083,'2526','H','O',3384,'',0,'2025-11-12','0000-00-00',2307,0,2364,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 11:28:01','','0000-00-00 00:00:00',0),(3661,0,0,3076,'2526','H','O',3385,'',0,'2025-11-12','0000-00-00',1235,0,1276,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-12 11:31:23','','0000-00-00 00:00:00',0),(3662,0,0,3084,'2526','H','O',3386,'',0,'2025-11-12','0000-00-00',2308,0,2365,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','PNB','','93445','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 11:31:33','','0000-00-00 00:00:00',0),(3664,0,0,3060,'2526','H','O',3387,'',0,'2025-11-12','0000-00-00',2291,0,2348,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 11:34:56','','0000-00-00 00:00:00',0),(3665,0,0,3086,'2526','H','O',3388,'',0,'2025-11-12','0000-00-00',2310,0,2367,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','58570','','scan                          ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 11:36:40','','0000-00-00 00:00:00',0),(3666,0,0,3082,'2526','H','O',3389,'',0,'2025-11-12','0000-00-00',2306,0,2363,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-12 11:39:54','','0000-00-00 00:00:00',0),(3667,0,0,3087,'2526','H','O',3390,'',0,'2025-11-12','0000-00-00',764,0,795,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 11:41:25','','0000-00-00 00:00:00',0),(3668,0,0,3088,'2526','H','O',3391,'',0,'2025-11-12','0000-00-00',2311,0,2368,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','95966','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 11:42:15','','0000-00-00 00:00:00',0),(3669,0,0,3089,'2526','H','O',3392,'',0,'2025-11-12','0000-00-00',755,0,787,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','KOTAK','','04031','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 11:46:31','','0000-00-00 00:00:00',0),(3670,0,0,3090,'2526','H','O',3393,'',0,'2025-11-12','0000-00-00',510,0,535,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 11:48:23','','0000-00-00 00:00:00',0),(3671,0,0,3074,'2526','H','O',3394,'',0,'2025-11-12','0000-00-00',2300,0,2357,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 11:51:17','','0000-00-00 00:00:00',0),(3672,0,0,3092,'2526','H','O',3395,'',0,'2025-11-12','0000-00-00',1556,0,1599,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 11:51:49','','0000-00-00 00:00:00',0),(3673,0,0,3091,'2526','H','O',3396,'',0,'2025-11-12','0000-00-00',2312,0,2369,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-12 11:52:02','','0000-00-00 00:00:00',0),(3674,0,0,3093,'2526','H','O',3397,'',0,'2025-11-12','0000-00-00',2313,0,2370,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 11:56:00','','0000-00-00 00:00:00',0),(3675,0,0,3094,'2526','H','O',3398,'',0,'2025-11-12','0000-00-00',2314,0,2371,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 11:57:49','','0000-00-00 00:00:00',0),(3676,0,0,3095,'2526','H','O',3399,'',0,'2025-11-12','0000-00-00',2315,0,2372,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-12 12:01:19','','0000-00-00 00:00:00',0),(3677,0,0,3096,'2526','H','O',3400,'',0,'2025-11-12','0000-00-00',2316,0,2373,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 12:02:44','','0000-00-00 00:00:00',0),(3678,0,0,3097,'2526','H','O',3401,'',0,'2025-11-12','0000-00-00',240,0,255,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 12:05:32','','0000-00-00 00:00:00',0),(3679,0,0,3098,'2526','H','O',3402,'',0,'2025-11-12','0000-00-00',2317,0,2374,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','41730','','scan',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 3417','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 12:06:46','reception','2025-11-12 13:16:30',0),(3680,0,0,3099,'2526','H','O',3403,'',0,'2025-11-12','0000-00-00',2318,0,2375,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 12:11:15','','0000-00-00 00:00:00',0),(3681,0,0,3073,'2526','H','O',3404,'',0,'2025-11-12','0000-00-00',2299,0,2356,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 12:11:17','','0000-00-00 00:00:00',0),(3682,0,0,2994,'2526','H','I',131,'',1,'2025-11-12','0000-00-00',0,148,2302,0,'D03','',0,21200.00,0.00,0.00,21200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10900,0,'0000-00-00','','N','Y','F','N',0.00,'','Y','OS PENDING ','HI 132','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-12 12:12:20','vishal','2025-11-12 13:32:36',0),(3683,0,0,3100,'2526','H','O',3405,'',0,'2025-11-12','0000-00-00',2319,0,2376,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 12:25:29','','0000-00-00 00:00:00',0),(3684,0,0,3101,'2526','H','O',3406,'',0,'2025-11-12','0000-00-00',2072,0,2126,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 12:25:44','','0000-00-00 00:00:00',0),(3685,0,0,3102,'2526','H','O',3407,'',0,'2025-11-12','0000-00-00',2320,0,2377,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 12:27:09','','0000-00-00 00:00:00',0),(3686,0,0,3103,'2526','H','O',3408,'',0,'2025-11-12','0000-00-00',562,0,589,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 12:28:47','','0000-00-00 00:00:00',0),(3687,0,0,3105,'2526','H','O',3409,'',0,'2025-11-12','0000-00-00',199,0,212,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 12:40:41','','0000-00-00 00:00:00',0),(3688,0,0,3106,'2526','H','O',3410,'',0,'2025-11-12','0000-00-00',2322,0,2379,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 12:43:17','','0000-00-00 00:00:00',0),(3689,0,0,3107,'2526','H','O',3411,'',0,'2025-11-12','0000-00-00',2323,0,2380,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 12:43:51','','0000-00-00 00:00:00',0),(3690,0,0,3108,'2526','H','O',3412,'',0,'2025-11-12','0000-00-00',2324,0,2381,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 12:50:40','','0000-00-00 00:00:00',0),(3691,0,0,3109,'2526','H','O',3413,'',0,'2025-11-12','0000-00-00',2325,0,2382,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','03143','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 12:54:27','','0000-00-00 00:00:00',0),(3692,0,0,3097,'2526','H','O',3414,'',0,'2025-11-12','0000-00-00',240,0,255,0,'D27','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 12:59:08','','0000-00-00 00:00:00',0),(3693,0,0,3110,'2526','H','O',3415,'',0,'2025-11-12','0000-00-00',2326,0,2383,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','80045','','scan ',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 13:00:29','','0000-00-00 00:00:00',0),(3694,0,0,3111,'2526','H','O',3416,'',0,'2025-11-12','0000-00-00',2327,0,1795,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-12 13:11:53','','0000-00-00 00:00:00',0),(3695,0,0,3098,'2526','H','O',3417,'',0,'2025-11-12','0000-00-00',2317,0,2374,0,'D06','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','HDFC','','41730','','SCAN',-700.00,0,0,'2025-11-12','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 3402','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 13:16:30','reception','2025-11-12 13:17:17',0),(3696,0,0,3098,'2526','H','O',3418,'',0,'2025-11-12','0000-00-00',2317,0,2374,0,'D06','',0,700.00,0.00,0.00,700.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','41730','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 13:19:28','','0000-00-00 00:00:00',0),(3697,0,0,3112,'2526','H','O',3419,'',0,'2025-11-12','0000-00-00',2328,0,255,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-12 13:19:46','','0000-00-00 00:00:00',0),(3698,0,0,2994,'2526','H','I',132,'',0,'2025-11-12','0000-00-00',0,148,2302,0,'D03','',0,-21200.00,0.00,0.00,-21200.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',0.00,'','Y','OS PENDING ','','HI 131','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-12 13:32:36','','0000-00-00 00:00:00',0),(3699,0,0,2994,'2526','H','D',148,'',0,'2025-11-12','0000-00-00',0,148,2302,0,'D03','',0,21200.00,0.00,0.00,21200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10900,0,'0000-00-00','','N','N','F','N',10300.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-12 13:33:16','vishal','2025-11-12 13:38:02',0),(3700,0,0,3115,'2526','H','O',3420,'',0,'2025-11-12','0000-00-00',2329,0,2385,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 16:01:33','','0000-00-00 00:00:00',0),(3701,0,0,3116,'2526','H','O',3421,'',0,'2025-11-12','0000-00-00',1011,0,1044,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 16:14:29','','0000-00-00 00:00:00',0),(3702,0,0,3119,'2526','H','O',3422,'',0,'2025-11-12','0000-00-00',750,0,782,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 16:48:55','','0000-00-00 00:00:00',0),(3703,0,0,3122,'2526','H','O',3423,'',0,'2025-11-12','0000-00-00',2332,0,2388,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 16:59:49','','0000-00-00 00:00:00',0),(3704,0,0,3123,'2526','H','O',3424,'',0,'2025-11-12','0000-00-00',1089,0,1128,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 17:06:24','','0000-00-00 00:00:00',0),(3705,0,0,3124,'2526','H','O',3425,'',0,'2025-11-12','0000-00-00',2333,0,2389,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 17:07:04','','0000-00-00 00:00:00',0),(3706,0,0,3125,'2526','H','O',3426,'',0,'2025-11-12','0000-00-00',2334,0,2390,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 17:08:20','','0000-00-00 00:00:00',0),(3707,0,0,3126,'2526','H','O',3427,'',0,'2025-11-12','0000-00-00',2335,0,2391,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100 DISCOUNT','HO 3442','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 17:12:25','reception','2025-11-12 17:41:51',0),(3708,0,0,3128,'2526','H','O',3428,'',0,'2025-11-12','0000-00-00',2336,0,2392,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 17:19:09','','0000-00-00 00:00:00',0),(3709,0,0,3129,'2526','H','O',3429,'',0,'2025-11-12','0000-00-00',2337,0,2393,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 17:20:41','','0000-00-00 00:00:00',0),(3710,0,0,3130,'2526','H','O',3430,'',0,'2025-11-12','0000-00-00',2338,0,2394,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 17:24:54','','0000-00-00 00:00:00',0),(3711,0,0,3131,'2526','H','O',3431,'',0,'2025-11-12','0000-00-00',2339,0,2395,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 17:26:19','','0000-00-00 00:00:00',0),(3712,0,0,3132,'2526','H','O',3432,'',0,'2025-11-12','0000-00-00',2340,0,2396,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 17:27:34','','0000-00-00 00:00:00',0),(3713,0,0,3133,'2526','H','O',3433,'',0,'2025-11-12','0000-00-00',2341,0,2397,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 17:29:33','','0000-00-00 00:00:00',0),(3714,0,0,3134,'2526','H','O',3434,'',0,'2025-11-12','0000-00-00',2342,0,2398,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 17:29:44','','0000-00-00 00:00:00',0),(3715,0,0,3135,'2526','H','O',3435,'',0,'2025-11-12','0000-00-00',2343,0,2399,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 17:32:23','','0000-00-00 00:00:00',0),(3716,0,0,3137,'2526','H','O',3436,'',0,'2025-11-12','0000-00-00',2344,0,2400,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 17:34:14','','0000-00-00 00:00:00',0),(3717,0,0,3136,'2526','H','O',3437,'',0,'2025-11-12','0000-00-00',1953,0,2001,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 17:34:51','','0000-00-00 00:00:00',0),(3718,0,0,3138,'2526','H','O',3438,'',0,'2025-11-12','0000-00-00',2051,0,2106,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 17:36:17','','0000-00-00 00:00:00',0),(3719,0,0,3139,'2526','H','O',3439,'',0,'2025-11-12','0000-00-00',2345,0,2401,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 17:38:22','','0000-00-00 00:00:00',0),(3720,0,0,3142,'2526','H','O',3440,'',0,'2025-11-12','0000-00-00',2095,0,1245,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 17:40:34','','0000-00-00 00:00:00',0),(3721,0,0,3141,'2526','H','O',3441,'',0,'2025-11-12','0000-00-00',2005,0,2056,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 17:40:54','','0000-00-00 00:00:00',0),(3722,0,0,3126,'2526','H','O',3442,'',0,'2025-11-12','0000-00-00',2335,0,2391,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-12','Y','N','N','','N',0.00,'','Y','100 DISCOUNT','','HO 3427','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 17:41:51','reception','2025-11-12 17:42:06',0),(3723,0,0,3143,'2526','H','O',3443,'',0,'2025-11-12','0000-00-00',2347,0,2403,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 17:42:55','','0000-00-00 00:00:00',0),(3724,0,0,3126,'2526','H','O',3444,'',0,'2025-11-12','0000-00-00',2335,0,2391,0,'D06','',0,500.00,0.00,0.00,500.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 17:43:09','','0000-00-00 00:00:00',0),(3725,0,0,3144,'2526','H','O',3445,'',0,'2025-11-12','0000-00-00',2348,0,2404,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','54100','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 17:49:44','','0000-00-00 00:00:00',0),(3726,0,0,3145,'2526','H','O',3446,'',0,'2025-11-12','0000-00-00',2349,0,2405,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 17:50:16','','0000-00-00 00:00:00',0),(3727,0,0,3148,'2526','H','O',3447,'',0,'2025-11-12','0000-00-00',592,0,622,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 17:53:54','','0000-00-00 00:00:00',0),(3728,0,0,3146,'2526','H','O',3448,'',0,'2025-11-12','0000-00-00',618,0,648,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbis','','07083','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 17:54:56','','0000-00-00 00:00:00',0),(3729,0,0,3147,'2526','H','O',3449,'',0,'2025-11-12','0000-00-00',2350,0,2406,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','37992','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 17:55:39','','0000-00-00 00:00:00',0),(3730,0,0,3149,'2526','H','O',3450,'',0,'2025-11-12','0000-00-00',2351,0,2407,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','102543','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-12 17:57:21','','0000-00-00 00:00:00',0),(3731,0,0,3150,'2526','H','O',3451,'',0,'2025-11-12','0000-00-00',2352,0,2408,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 17:58:25','','0000-00-00 00:00:00',0),(3732,0,0,3152,'2526','H','O',3452,'',0,'2025-11-12','0000-00-00',1060,0,1094,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-12 18:00:03','','0000-00-00 00:00:00',0),(3733,0,0,3128,'2526','H','O',3453,'',0,'2025-11-12','0000-00-00',2336,0,2392,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','49143','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 18:00:30','','0000-00-00 00:00:00',0),(3734,0,0,3151,'2526','H','O',3454,'',0,'2025-11-12','0000-00-00',2353,0,1729,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 18:00:48','','0000-00-00 00:00:00',0),(3735,0,0,3153,'2526','H','O',3455,'',0,'2025-11-12','0000-00-00',1759,0,1805,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 18:05:21','','0000-00-00 00:00:00',0),(3736,0,0,3154,'2526','H','O',3456,'',0,'2025-11-12','0000-00-00',2354,0,2409,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 18:09:29','','0000-00-00 00:00:00',0),(3737,0,0,3155,'2526','H','O',3457,'',0,'2025-11-12','0000-00-00',943,0,974,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','11187','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 18:10:03','','0000-00-00 00:00:00',0),(3738,0,0,3156,'2526','H','O',3458,'',0,'2025-11-12','0000-00-00',2355,0,2410,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOI BANK','','03164','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 18:10:29','','0000-00-00 00:00:00',0),(3739,0,0,3131,'2526','H','O',3459,'',0,'2025-11-12','0000-00-00',2339,0,2395,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','35969','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 18:14:00','','0000-00-00 00:00:00',0),(3740,0,0,3140,'2526','H','O',3460,'',0,'2025-11-12','0000-00-00',2346,0,2402,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 18:15:22','','0000-00-00 00:00:00',0),(3741,0,0,3157,'2526','H','O',3461,'',0,'2025-11-12','0000-00-00',2356,0,2411,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','75111','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 18:16:29','','0000-00-00 00:00:00',0),(3742,0,0,3159,'2526','H','O',3462,'',0,'2025-11-12','0000-00-00',2357,0,2412,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 18:18:21','','0000-00-00 00:00:00',0),(3743,0,0,3160,'2526','H','O',3463,'',0,'2025-11-12','0000-00-00',1976,0,2024,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 18:19:55','','0000-00-00 00:00:00',0),(3744,0,0,3158,'2526','H','O',3464,'',0,'2025-11-12','0000-00-00',221,0,234,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 18:21:01','','0000-00-00 00:00:00',0),(3745,0,0,3161,'2526','H','O',3465,'',0,'2025-11-12','0000-00-00',2358,0,2413,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 18:24:09','','0000-00-00 00:00:00',0),(3746,0,0,3162,'2526','H','O',3466,'',0,'2025-11-12','0000-00-00',2359,0,2414,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 18:28:36','','0000-00-00 00:00:00',0),(3747,0,0,3132,'2526','H','O',3467,'',0,'2025-11-12','0000-00-00',2340,0,2396,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','65795','','scan',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 18:29:18','','0000-00-00 00:00:00',0),(3748,0,0,3163,'2526','H','O',3468,'',0,'2025-11-12','0000-00-00',2118,0,1763,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 18:29:25','','0000-00-00 00:00:00',0),(3749,0,0,3164,'2526','H','O',3469,'',0,'2025-11-12','0000-00-00',2022,0,2075,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 18:38:51','','0000-00-00 00:00:00',0),(3750,0,0,3165,'2526','H','O',3470,'',0,'2025-11-12','0000-00-00',2360,0,2415,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 18:40:04','','0000-00-00 00:00:00',0),(3751,0,0,3166,'2526','H','O',3471,'',0,'2025-11-12','0000-00-00',2361,0,2416,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 18:46:36','','0000-00-00 00:00:00',0),(3752,0,0,3169,'2526','H','O',3472,'',0,'2025-11-12','0000-00-00',2363,0,2418,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 18:50:14','','0000-00-00 00:00:00',0),(3753,0,0,3170,'2526','H','O',3473,'',0,'2025-11-12','0000-00-00',494,0,519,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 18:54:04','','0000-00-00 00:00:00',0),(3754,0,0,3171,'2526','H','O',3474,'',0,'2025-11-12','0000-00-00',2364,0,2419,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 18:54:54','','0000-00-00 00:00:00',0),(3755,0,0,3168,'2526','H','O',3475,'',0,'2025-11-12','0000-00-00',2362,0,2417,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','06137','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 18:55:55','','0000-00-00 00:00:00',0),(3756,0,0,3172,'2526','H','O',3476,'',0,'2025-11-12','0000-00-00',2365,0,2420,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 18:58:12','','0000-00-00 00:00:00',0),(3757,0,0,3173,'2526','H','O',3477,'',0,'2025-11-12','0000-00-00',2366,0,2421,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 18:59:16','','0000-00-00 00:00:00',0),(3758,0,0,3174,'2526','H','O',3478,'',0,'2025-11-12','0000-00-00',2367,0,2422,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 3494','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-12 19:01:18','manshi','2025-11-12 19:57:27',0),(3759,0,0,3147,'2526','H','O',3479,'',0,'2025-11-12','0000-00-00',2350,0,2406,0,'D06','',0,4900.00,0.00,0.00,4900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','34832','','scan',4900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 19:02:07','','0000-00-00 00:00:00',0),(3760,0,0,3175,'2526','H','O',3480,'',0,'2025-11-12','0000-00-00',2368,0,2423,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 19:05:01','','0000-00-00 00:00:00',0),(3761,0,0,3174,'2526','H','O',3481,'',0,'2025-11-12','0000-00-00',2367,0,2422,0,'D03','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-12 19:09:52','','0000-00-00 00:00:00',0),(3762,0,0,3177,'2526','H','O',3482,'',0,'2025-11-12','0000-00-00',2369,0,2425,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 19:13:37','','0000-00-00 00:00:00',0),(3763,0,0,3178,'2526','H','O',3483,'',0,'2025-11-12','0000-00-00',2370,0,2426,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 19:14:14','','0000-00-00 00:00:00',0),(3764,0,0,3179,'2526','H','O',3484,'',0,'2025-11-12','0000-00-00',2371,0,2427,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 19:14:15','','0000-00-00 00:00:00',0),(3765,0,0,3180,'2526','H','O',3485,'',0,'2025-11-12','0000-00-00',2372,0,2428,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','F.O.C','HO 3505','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 19:17:41','drashti','2025-11-12 20:57:23',0),(3766,0,0,3181,'2526','H','O',3486,'',0,'2025-11-12','0000-00-00',2373,0,2429,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 19:27:23','','0000-00-00 00:00:00',0),(3767,0,0,3182,'2526','H','O',3487,'',0,'2025-11-12','0000-00-00',2374,0,2430,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 19:28:47','','0000-00-00 00:00:00',0),(3768,0,0,3166,'2526','H','O',3488,'',0,'2025-11-12','0000-00-00',2361,0,2416,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 19:36:37','','0000-00-00 00:00:00',0),(3769,0,0,3183,'2526','H','O',3489,'',0,'2025-11-12','0000-00-00',2375,0,2431,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 3503','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 19:37:34','drashti','2025-11-12 20:31:02',0),(3770,0,0,3184,'2526','H','O',3490,'',0,'2025-11-12','0000-00-00',2376,0,2432,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','HO 3492','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-12 19:38:34','manshi','2025-11-12 19:49:01',0),(3771,0,0,2994,'2526','H','I',133,'',0,'2025-11-12','0000-00-00',0,148,2302,0,'D03','',0,21200.00,0.00,0.00,21200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-21200,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-12 19:46:37','','0000-00-00 00:00:00',0),(3772,0,0,3184,'2526','H','O',3491,'',0,'2025-11-12','0000-00-00',2376,0,2432,0,'D03','',0,400.00,0.00,0.00,400.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-12 19:48:34','','0000-00-00 00:00:00',0),(3773,0,0,3184,'2526','H','O',3492,'',0,'2025-11-12','0000-00-00',2376,0,2432,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-12','Y','N','N','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','','HO 3490','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-12 19:49:01','manshi','2025-11-12 19:49:21',0),(3774,0,0,3186,'2526','H','O',3493,'',0,'2025-11-12','0000-00-00',2377,0,2433,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','cboi','','48319','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 19:53:06','','0000-00-00 00:00:00',0),(3775,0,0,3174,'2526','H','O',3494,'',0,'2025-11-12','0000-00-00',2367,0,2422,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-12','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 3478','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-12 19:57:27','manshi','2025-11-12 19:57:49',0),(3776,0,0,3174,'2526','H','O',3495,'',0,'2025-11-12','0000-00-00',2367,0,2422,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-12 19:58:35','','0000-00-00 00:00:00',0),(3777,0,0,3187,'2526','H','O',3496,'',0,'2025-11-12','0000-00-00',2378,0,2434,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 19:59:04','','0000-00-00 00:00:00',0),(3778,0,0,3188,'2526','H','O',3497,'',0,'2025-11-12','0000-00-00',1491,0,1532,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 20:00:55','','0000-00-00 00:00:00',0),(3779,0,0,3165,'2526','H','O',3498,'',0,'2025-11-12','0000-00-00',2360,0,2415,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','45607','','scan',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 20:08:35','','0000-00-00 00:00:00',0),(3780,0,0,3182,'2526','H','O',3499,'',0,'2025-11-12','0000-00-00',2374,0,2430,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-12 20:16:44','','0000-00-00 00:00:00',0),(3781,0,0,3106,'2526','H','O',3500,'',0,'2025-11-12','0000-00-00',2322,0,2379,0,'D02','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 20:28:53','','0000-00-00 00:00:00',0),(3782,0,0,3189,'2526','H','O',3501,'',0,'2025-11-12','0000-00-00',1978,0,2026,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 20:30:14','','0000-00-00 00:00:00',0),(3783,0,0,3185,'2526','H','O',3502,'',0,'2025-11-12','0000-00-00',1775,0,1821,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-12 20:30:17','','0000-00-00 00:00:00',0),(3784,0,0,3183,'2526','H','O',3503,'',0,'2025-11-12','0000-00-00',2375,0,2431,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-11-12','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 3489','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 20:31:02','drashti','2025-11-12 20:31:29',0),(3785,0,0,3183,'2526','H','O',3504,'',0,'2025-11-12','0000-00-00',2375,0,2431,0,'D27','',0,750.00,0.00,0.00,750.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',550.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 20:32:32','','0000-00-00 00:00:00',0),(3786,0,0,3180,'2526','H','O',3505,'',0,'2025-11-12','0000-00-00',2372,0,2428,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-11-12','Y','N','N','','N',0.00,'','Y','F.O.C','','HO 3485','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-12 20:57:23','drashti','2025-11-12 20:57:43',0),(3787,0,0,3191,'2526','H','O',3506,'',0,'2025-11-13','0000-00-00',2379,0,2435,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 09:00:23','','0000-00-00 00:00:00',0),(3788,0,0,3193,'2526','H','O',3507,'',0,'2025-11-13','0000-00-00',2381,0,2437,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-13 09:13:05','','0000-00-00 00:00:00',0),(3789,0,0,3192,'2526','H','O',3508,'',0,'2025-11-13','0000-00-00',2380,0,2436,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-13 09:13:15','','0000-00-00 00:00:00',0),(3790,0,0,3195,'2526','H','O',3509,'',0,'2025-11-13','0000-00-00',2382,0,1410,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-13 09:35:44','','0000-00-00 00:00:00',0),(3791,0,0,3197,'2526','H','O',3510,'',0,'2025-11-13','0000-00-00',1767,0,1813,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 10:00:49','','0000-00-00 00:00:00',0),(3792,0,0,3198,'2526','H','O',3511,'',0,'2025-11-13','0000-00-00',2383,0,2440,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 10:08:06','','0000-00-00 00:00:00',0),(3793,0,0,3199,'2526','H','O',3512,'',0,'2025-11-13','0000-00-00',813,0,844,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 10:18:22','','0000-00-00 00:00:00',0),(3794,0,0,3200,'2526','H','O',3513,'',0,'2025-11-13','0000-00-00',2384,0,2441,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 10:24:42','','0000-00-00 00:00:00',0),(3795,0,0,3202,'2526','H','O',3514,'',0,'2025-11-13','0000-00-00',2386,0,2443,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 10:26:11','','0000-00-00 00:00:00',0),(3796,0,0,3201,'2526','H','O',3515,'',0,'2025-11-13','0000-00-00',2385,0,2442,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 10:26:50','','0000-00-00 00:00:00',0),(3797,0,0,3203,'2526','H','O',3516,'',0,'2025-11-13','0000-00-00',2387,0,2444,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 10:29:21','','0000-00-00 00:00:00',0),(3798,0,0,3204,'2526','H','O',3517,'',0,'2025-11-13','0000-00-00',1053,0,1086,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 10:34:12','','0000-00-00 00:00:00',0),(3799,0,0,3205,'2526','H','O',3518,'',0,'2025-11-13','0000-00-00',1758,0,1804,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 10:37:44','','0000-00-00 00:00:00',0),(3800,0,0,3206,'2526','H','O',3519,'',0,'2025-11-13','0000-00-00',2388,0,2445,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 10:38:43','','0000-00-00 00:00:00',0),(3801,0,0,3207,'2526','H','O',3520,'',0,'2025-11-13','0000-00-00',1130,0,1170,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','UNION BANK','','56885','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 10:42:39','','0000-00-00 00:00:00',0),(3802,0,0,3208,'2526','H','O',3521,'',0,'2025-11-13','0000-00-00',2389,0,2446,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 10:46:26','','0000-00-00 00:00:00',0),(3803,0,0,3209,'2526','H','O',3522,'',0,'2025-11-13','0000-00-00',2390,0,2447,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 10:48:42','','0000-00-00 00:00:00',0),(3804,0,0,3210,'2526','H','O',3523,'',0,'2025-11-13','0000-00-00',2391,0,2448,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 10:54:44','','0000-00-00 00:00:00',0),(3805,0,0,3211,'2526','H','O',3524,'',0,'2025-11-13','0000-00-00',2392,0,2449,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI','','67368','','SCAN',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 11:02:56','','0000-00-00 00:00:00',0),(3806,0,0,3212,'2526','H','O',3525,'',0,'2025-11-13','0000-00-00',2393,0,392,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 11:04:20','','0000-00-00 00:00:00',0),(3807,0,0,3213,'2526','H','O',3526,'',0,'2025-11-13','0000-00-00',601,0,631,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 11:07:31','','0000-00-00 00:00:00',0),(3808,0,0,3214,'2526','H','O',3527,'',0,'2025-11-13','0000-00-00',2394,0,2450,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 11:08:23','','0000-00-00 00:00:00',0),(3809,0,0,3215,'2526','H','O',3528,'',0,'2025-11-13','0000-00-00',2395,0,2451,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-13 11:09:31','','0000-00-00 00:00:00',0),(3810,0,0,3217,'2526','H','O',3529,'',0,'2025-11-13','0000-00-00',2396,0,2452,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 11:12:43','','0000-00-00 00:00:00',0),(3811,0,0,3218,'2526','H','O',3530,'',0,'2025-11-13','0000-00-00',1687,0,1733,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 11:12:57','','0000-00-00 00:00:00',0),(3812,0,0,3220,'2526','H','O',3531,'',0,'2025-11-13','0000-00-00',2398,0,2454,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 11:15:35','','0000-00-00 00:00:00',0),(3813,0,0,3221,'2526','H','O',3532,'',0,'2025-11-13','0000-00-00',2399,0,2455,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','70646','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 11:19:07','','0000-00-00 00:00:00',0),(3814,0,0,3222,'2526','H','O',3533,'',0,'2025-11-13','0000-00-00',2400,0,2456,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 11:22:59','','0000-00-00 00:00:00',0),(3815,0,0,3201,'2526','H','O',3534,'',0,'2025-11-13','0000-00-00',2385,0,2442,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-13 11:24:56','','0000-00-00 00:00:00',0),(3816,0,0,3223,'2526','H','O',3535,'',0,'2025-11-13','0000-00-00',721,0,752,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-13 11:26:09','','0000-00-00 00:00:00',0),(3817,0,0,3209,'2526','H','O',3536,'',0,'2025-11-13','0000-00-00',2390,0,2447,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 11:26:52','','0000-00-00 00:00:00',0),(3818,0,0,3224,'2526','H','O',3537,'',0,'2025-11-13','0000-00-00',2401,0,2457,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-13 11:27:21','','0000-00-00 00:00:00',0),(3819,0,0,3225,'2526','H','O',3538,'',0,'2025-11-13','0000-00-00',2402,0,2458,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-13 11:29:11','','0000-00-00 00:00:00',0),(3820,0,0,3226,'2526','H','O',3539,'',0,'2025-11-13','0000-00-00',2403,0,2459,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','YES BANK','','75655','','SCAN',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 11:35:20','','0000-00-00 00:00:00',0),(3821,0,0,3227,'2526','H','O',3540,'',0,'2025-11-13','0000-00-00',2404,0,2460,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-13 11:38:20','','0000-00-00 00:00:00',0),(3822,0,0,3216,'2526','H','O',3541,'',0,'2025-11-13','0000-00-00',514,0,539,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','2','HDFC','','68658','','card',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-13 11:38:29','','0000-00-00 00:00:00',0),(3823,0,0,3228,'2526','H','O',3542,'',0,'2025-11-13','0000-00-00',1747,0,1456,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 11:43:03','','0000-00-00 00:00:00',0),(3824,0,0,3229,'2526','H','O',3543,'',0,'2025-11-13','0000-00-00',2405,0,2461,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 11:44:42','','0000-00-00 00:00:00',0),(3825,0,0,3230,'2526','H','O',3544,'',0,'2025-11-13','0000-00-00',1866,0,1911,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 11:47:31','','0000-00-00 00:00:00',0),(3826,0,0,3231,'2526','H','O',3545,'',0,'2025-11-13','0000-00-00',708,0,739,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 11:48:23','','0000-00-00 00:00:00',0),(3827,0,0,3233,'2526','H','O',3546,'',0,'2025-11-13','0000-00-00',2406,0,2462,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','7','SBI','','55376','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 11:55:34','','0000-00-00 00:00:00',0),(3828,0,0,3232,'2526','H','O',3547,'',0,'2025-11-13','0000-00-00',1343,0,1383,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-13 11:57:32','','0000-00-00 00:00:00',0),(3829,0,0,3234,'2526','H','O',3548,'',0,'2025-11-13','0000-00-00',349,0,365,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','04414','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 12:10:22','','0000-00-00 00:00:00',0),(3830,0,0,3235,'2526','H','O',3549,'',0,'2025-11-13','0000-00-00',2407,0,2463,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 12:29:12','','0000-00-00 00:00:00',0),(3831,0,0,3237,'2526','H','O',3550,'',0,'2025-11-13','0000-00-00',1100,0,1138,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 12:30:22','','0000-00-00 00:00:00',0),(3832,0,0,3239,'2526','H','O',3551,'',0,'2025-11-13','0000-00-00',2409,0,2465,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-13 12:35:26','','0000-00-00 00:00:00',0),(3833,0,0,3221,'2526','H','O',3552,'',0,'2025-11-13','0000-00-00',2399,0,2455,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','7','BOB','','67831','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 12:38:38','','0000-00-00 00:00:00',0),(3834,0,0,3240,'2526','H','O',3553,'',0,'2025-11-13','0000-00-00',2410,0,2466,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 12:43:12','','0000-00-00 00:00:00',0),(3835,0,0,3219,'2526','H','O',3554,'',0,'2025-11-13','0000-00-00',2397,0,2453,0,'D27','',0,1050.00,0.00,0.00,1050.00,250.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 12:44:51','','0000-00-00 00:00:00',0),(3836,0,0,3242,'2526','H','O',3555,'',0,'2025-11-13','0000-00-00',2412,0,2468,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 12:47:06','','0000-00-00 00:00:00',0),(3837,0,0,3241,'2526','H','O',3556,'',0,'2025-11-13','0000-00-00',2411,0,2467,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-13 12:47:07','','0000-00-00 00:00:00',0),(3838,0,0,3196,'2526','H','D',149,'',0,'2025-11-13','0000-00-00',0,155,2439,0,'D27','',0,15900.00,0.00,0.00,15900.00,5000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',10900.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-13 12:52:22','riya','2025-11-13 12:53:24',0),(3839,0,0,3243,'2526','H','O',3557,'',0,'2025-11-13','0000-00-00',1096,0,1134,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','IDBI BANK','','66435','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 12:52:37','','0000-00-00 00:00:00',0),(3840,0,0,3196,'2526','H','I',134,'',0,'2025-11-13','0000-00-00',0,155,2439,0,'D27','',0,15900.00,0.00,0.00,15900.00,5000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10900,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-13 12:57:23','','0000-00-00 00:00:00',0),(3841,0,0,3244,'2526','H','O',3558,'',0,'2025-11-13','0000-00-00',1882,0,1929,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 12:58:59','','0000-00-00 00:00:00',0),(3842,0,0,3233,'2526','H','O',3559,'',0,'2025-11-13','0000-00-00',2406,0,2462,0,'D06','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','99643','','SCAN',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 13:07:14','','0000-00-00 00:00:00',0),(3843,0,0,3235,'2526','H','O',3560,'',0,'2025-11-13','0000-00-00',2407,0,2463,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','7','SBI','','80391','','SCAN',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 13:13:08','','0000-00-00 00:00:00',0),(3844,0,0,3245,'2526','H','O',3561,'',0,'2025-11-13','0000-00-00',2413,0,2469,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 13:21:16','','0000-00-00 00:00:00',0),(3845,0,0,3246,'2526','H','O',3562,'',0,'2025-11-13','0000-00-00',1189,0,1228,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 13:26:30','','0000-00-00 00:00:00',0),(3846,0,0,3248,'2526','H','O',3563,'',0,'2025-11-13','0000-00-00',2415,0,2471,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 13:29:41','','0000-00-00 00:00:00',0),(3847,0,0,3247,'2526','H','O',3564,'',0,'2025-11-13','0000-00-00',2414,0,2470,0,'D27','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','35668','','scan ',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-13 13:30:03','','0000-00-00 00:00:00',0),(3848,0,0,3249,'2526','H','O',3565,'',0,'2025-11-13','0000-00-00',2416,0,2472,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 13:34:55','','0000-00-00 00:00:00',0),(3849,0,0,3250,'2526','H','O',3566,'',0,'2025-11-13','0000-00-00',2356,0,2411,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 13:36:47','','0000-00-00 00:00:00',0),(3850,0,0,3244,'2526','H','O',3567,'',0,'2025-11-13','0000-00-00',1882,0,1929,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 13:44:42','','0000-00-00 00:00:00',0),(3851,0,0,3224,'2526','H','O',3568,'',0,'2025-11-13','0000-00-00',2401,0,2457,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','29856','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 13:54:09','','0000-00-00 00:00:00',0),(3852,0,0,3251,'2526','H','O',3569,'',0,'2025-11-13','0000-00-00',2417,0,2473,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 14:02:10','','0000-00-00 00:00:00',0),(3853,0,0,3219,'2526','H','O',3570,'',0,'2025-11-13','0000-00-00',2397,0,2453,0,'D27','',0,2500.00,0.00,0.00,2500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-13 14:03:32','','0000-00-00 00:00:00',0),(3854,0,0,3249,'2526','H','O',3571,'',0,'2025-11-13','0000-00-00',2416,0,2472,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-13 14:17:15','','0000-00-00 00:00:00',0),(3855,0,0,3238,'2526','H','O',3572,'',0,'2025-11-13','0000-00-00',2408,0,2464,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','88397','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-13 15:00:16','','0000-00-00 00:00:00',0),(3856,0,0,3252,'2526','H','O',3573,'',0,'2025-11-13','0000-00-00',2418,0,2474,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','nagrik bank','','69149','','scan ',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-13 15:51:29','','0000-00-00 00:00:00',0),(3857,0,0,3253,'2526','H','O',3574,'',0,'2025-11-13','0000-00-00',2419,0,2475,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 16:30:25','','0000-00-00 00:00:00',0),(3858,0,0,3254,'2526','H','O',3575,'',0,'2025-11-13','0000-00-00',2420,0,2476,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOI','','98415','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 16:38:13','','0000-00-00 00:00:00',0),(3859,0,0,3255,'2526','H','O',3576,'',0,'2025-11-13','0000-00-00',2421,0,2477,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 16:39:16','','0000-00-00 00:00:00',0),(3860,0,0,3256,'2526','H','O',3577,'',0,'2025-11-13','0000-00-00',1806,0,1852,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','84246','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 16:40:43','','0000-00-00 00:00:00',0),(3861,0,0,3257,'2526','H','O',3578,'',0,'2025-11-13','0000-00-00',1462,0,1503,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 16:59:20','','0000-00-00 00:00:00',0),(3862,0,0,3258,'2526','H','O',3579,'',0,'2025-11-13','0000-00-00',2422,0,2478,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 17:11:47','','0000-00-00 00:00:00',0),(3863,0,0,3259,'2526','H','O',3580,'',0,'2025-11-13','0000-00-00',2423,0,2479,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 17:15:30','','0000-00-00 00:00:00',0),(3864,0,0,3253,'2526','H','O',3581,'',0,'2025-11-13','0000-00-00',2419,0,2475,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','NAGRIK BANK','','13280','','SCAN',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 17:17:55','','0000-00-00 00:00:00',0),(3865,0,0,3260,'2526','H','O',3582,'',0,'2025-11-13','0000-00-00',2424,0,2480,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','02900','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 17:18:37','','0000-00-00 00:00:00',0),(3866,0,0,3261,'2526','H','O',3583,'',0,'2025-11-13','0000-00-00',2425,0,2481,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 17:26:21','','0000-00-00 00:00:00',0),(3867,0,0,3262,'2526','H','O',3584,'',0,'2025-11-13','0000-00-00',2426,0,2482,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 17:32:44','','0000-00-00 00:00:00',0),(3868,0,0,3260,'2526','H','O',3585,'',0,'2025-11-13','0000-00-00',2424,0,2480,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI','','90870','','SCAN',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 17:40:34','','0000-00-00 00:00:00',0),(3869,0,0,2919,'2526','H','D',150,'',0,'2025-11-13','0000-00-00',951,147,982,0,'D27','',0,22000.00,0.00,0.00,22000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',15000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-13 17:43:02','riya','2025-11-13 17:44:03',0),(3870,0,0,3264,'2526','H','O',3586,'',0,'2025-11-13','0000-00-00',2427,0,2483,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 17:48:05','','0000-00-00 00:00:00',0),(3871,0,0,3263,'2526','H','O',3587,'',0,'2025-11-13','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-13 17:48:13','','0000-00-00 00:00:00',0),(3872,0,0,3265,'2526','H','O',3588,'',0,'2025-11-13','0000-00-00',2428,0,2484,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 17:49:19','','0000-00-00 00:00:00',0),(3873,0,0,3266,'2526','H','O',3589,'',0,'2025-11-13','0000-00-00',2429,0,2485,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7',' SBI','','93812','','SCAN',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 17:52:47','','0000-00-00 00:00:00',0),(3874,0,0,3267,'2526','H','O',3590,'',0,'2025-11-13','0000-00-00',2430,0,2486,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','canara bank','','76941','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 17:55:15','','0000-00-00 00:00:00',0),(3875,0,0,3259,'2526','H','O',3591,'',0,'2025-11-13','0000-00-00',2423,0,2479,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 17:56:11','','0000-00-00 00:00:00',0),(3876,0,0,3268,'2526','H','O',3592,'',0,'2025-11-13','0000-00-00',545,0,571,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-13 18:01:15','','0000-00-00 00:00:00',0),(3877,0,0,3269,'2526','H','O',3593,'',0,'2025-11-13','0000-00-00',2431,0,2487,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 18:01:32','','0000-00-00 00:00:00',0),(3878,0,0,3271,'2526','H','O',3594,'',0,'2025-11-13','0000-00-00',2433,0,2489,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-13 18:05:43','','0000-00-00 00:00:00',0),(3879,0,0,3272,'2526','H','O',3595,'',0,'2025-11-13','0000-00-00',2434,0,2490,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-13 18:05:46','','0000-00-00 00:00:00',0),(3880,0,0,3270,'2526','H','O',3596,'',0,'2025-11-13','0000-00-00',2432,0,2488,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 18:05:58','','0000-00-00 00:00:00',0),(3881,0,0,3273,'2526','H','O',3597,'',0,'2025-11-13','0000-00-00',637,0,667,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 18:06:43','','0000-00-00 00:00:00',0),(3882,0,0,3268,'2526','H','O',3598,'',0,'2025-11-13','0000-00-00',545,0,571,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-13 18:09:25','','0000-00-00 00:00:00',0),(3883,0,0,3275,'2526','H','O',3599,'',0,'2025-11-13','0000-00-00',1976,0,2024,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 18:10:34','','0000-00-00 00:00:00',0),(3884,0,0,3274,'2526','H','O',3600,'',0,'2025-11-13','0000-00-00',324,0,340,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 18:11:00','','0000-00-00 00:00:00',0),(3885,0,0,3276,'2526','H','O',3601,'',0,'2025-11-13','0000-00-00',2435,0,2491,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 18:12:12','','0000-00-00 00:00:00',0),(3886,0,0,3262,'2526','H','O',3602,'',0,'2025-11-13','0000-00-00',2426,0,2482,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','93779','','SCAN',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 18:12:43','','0000-00-00 00:00:00',0),(3887,0,0,3278,'2526','H','O',3603,'',0,'2025-11-13','0000-00-00',2437,0,2493,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 18:25:52','','0000-00-00 00:00:00',0),(3888,0,0,3277,'2526','H','O',3604,'',0,'2025-11-13','0000-00-00',2436,0,2492,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','92740','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 18:26:12','','0000-00-00 00:00:00',0),(3889,0,0,3279,'2526','H','O',3605,'',0,'2025-11-13','0000-00-00',218,0,231,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 18:35:21','','0000-00-00 00:00:00',0),(3890,0,0,3264,'2526','H','O',3606,'',0,'2025-11-13','0000-00-00',2427,0,2483,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 18:36:58','','0000-00-00 00:00:00',0),(3891,0,0,3281,'2526','H','O',3607,'',0,'2025-11-13','0000-00-00',662,0,692,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','93080','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 18:38:47','','0000-00-00 00:00:00',0),(3892,0,0,3280,'2526','H','O',3608,'',0,'2025-11-13','0000-00-00',2097,0,2150,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','IDBI BANK','','68032','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 18:38:48','','0000-00-00 00:00:00',0),(3893,0,0,3283,'2526','H','O',3609,'',0,'2025-11-13','0000-00-00',1606,0,1651,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 18:39:48','','0000-00-00 00:00:00',0),(3894,0,0,3282,'2526','H','O',3610,'',0,'2025-11-13','0000-00-00',2438,0,2494,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','10721','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-13 18:40:55','','0000-00-00 00:00:00',0),(3895,0,0,3284,'2526','H','O',3611,'',0,'2025-11-13','0000-00-00',1156,0,1195,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 18:45:16','','0000-00-00 00:00:00',0),(3896,0,0,3271,'2526','H','O',3612,'',0,'2025-11-13','0000-00-00',2433,0,2489,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 18:48:15','','0000-00-00 00:00:00',0),(3897,0,0,3287,'2526','H','O',3613,'',0,'2025-11-13','0000-00-00',2439,0,2495,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','28520','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 18:56:01','','0000-00-00 00:00:00',0),(3898,0,0,3286,'2526','H','O',3614,'',0,'2025-11-13','0000-00-00',580,0,611,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','87710','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-13 18:56:05','','0000-00-00 00:00:00',0),(3899,0,0,3288,'2526','H','O',3615,'',0,'2025-11-13','0000-00-00',536,0,562,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-13 18:59:11','','0000-00-00 00:00:00',0),(3900,0,0,3285,'2526','H','O',3616,'',0,'2025-11-13','0000-00-00',2145,0,2197,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-13 19:24:27','','0000-00-00 00:00:00',0),(3901,0,0,3290,'2526','H','O',3617,'',0,'2025-11-13','0000-00-00',2441,0,2497,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 19:25:21','','0000-00-00 00:00:00',0),(3902,0,0,3291,'2526','H','O',3618,'',0,'2025-11-13','0000-00-00',2378,0,2434,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-13 19:25:34','','0000-00-00 00:00:00',0),(3903,0,0,3292,'2526','H','O',3619,'',0,'2025-11-13','0000-00-00',2442,0,2498,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','13294','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 19:26:36','','0000-00-00 00:00:00',0),(3904,0,0,3289,'2526','H','O',3620,'',0,'2025-11-13','0000-00-00',2440,0,2496,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','CENTRAL BANK','','54038','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 19:31:13','','0000-00-00 00:00:00',0),(3905,0,0,3293,'2526','H','O',3621,'',0,'2025-11-13','0000-00-00',1480,0,1521,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-13 19:33:57','','0000-00-00 00:00:00',0),(3906,0,0,2919,'2526','H','I',135,'',0,'2025-11-13','0000-00-00',951,147,982,0,'D27','',0,22000.00,0.00,0.00,22000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-22000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(3907,0,0,3114,'2526','H','D',151,'',0,'2025-11-13','0000-00-00',2310,151,2367,0,'D02','',0,76707.00,0.00,0.00,76707.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',76707.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-13 19:55:47','vishal','2025-11-13 20:02:05',0),(3908,0,0,3295,'2526','H','O',3622,'',0,'2025-11-13','0000-00-00',2443,0,2500,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-13 19:59:14','','0000-00-00 00:00:00',0),(3909,0,0,3296,'2526','H','O',3623,'',0,'2025-11-14','0000-00-00',2444,0,2501,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bank','','49494','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 08:47:11','','0000-00-00 00:00:00',0),(3910,0,0,3297,'2526','H','O',3624,'',0,'2025-11-14','0000-00-00',2445,0,2502,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 09:15:42','','0000-00-00 00:00:00',0),(3911,0,0,3298,'2526','H','O',3625,'',0,'2025-11-14','0000-00-00',2446,0,2503,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 09:51:50','','0000-00-00 00:00:00',0),(3912,0,0,3300,'2526','H','O',3626,'',0,'2025-11-14','0000-00-00',2447,0,2505,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 10:18:29','','0000-00-00 00:00:00',0),(3913,0,0,3302,'2526','H','O',3627,'',0,'2025-11-14','0000-00-00',2448,0,2507,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 10:19:58','','0000-00-00 00:00:00',0),(3914,0,0,3303,'2526','H','O',3628,'',0,'2025-11-14','0000-00-00',495,0,520,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 10:20:06','','0000-00-00 00:00:00',0),(3915,0,0,3304,'2526','H','O',3629,'',0,'2025-11-14','0000-00-00',2449,0,2508,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 10:22:24','','0000-00-00 00:00:00',0),(3916,0,0,3305,'2526','H','O',3630,'',0,'2025-11-14','0000-00-00',1857,0,1903,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 10:24:00','','0000-00-00 00:00:00',0),(3917,0,0,3306,'2526','H','O',3631,'',0,'2025-11-14','0000-00-00',2450,0,2509,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 10:30:04','','0000-00-00 00:00:00',0),(3918,0,0,3307,'2526','H','O',3632,'',0,'2025-11-14','0000-00-00',2451,0,2510,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 10:32:32','','0000-00-00 00:00:00',0),(3919,0,0,3308,'2526','H','O',3633,'',0,'2025-11-14','0000-00-00',2452,0,2511,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 10:34:44','','0000-00-00 00:00:00',0),(3920,0,0,3309,'2526','H','O',3634,'',0,'2025-11-14','0000-00-00',2453,0,2512,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 10:36:50','','0000-00-00 00:00:00',0),(3921,0,0,3310,'2526','H','O',3635,'',0,'2025-11-14','0000-00-00',2454,0,2513,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 10:42:35','','0000-00-00 00:00:00',0),(3922,0,0,3311,'2526','H','O',3636,'',0,'2025-11-14','0000-00-00',2455,0,2514,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 10:43:23','','0000-00-00 00:00:00',0),(3923,0,0,3313,'2526','H','O',3637,'',0,'2025-11-14','0000-00-00',2456,0,2515,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 10:45:23','','0000-00-00 00:00:00',0),(3924,0,0,3312,'2526','H','O',3638,'',0,'2025-11-14','0000-00-00',586,0,21,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 10:45:30','','0000-00-00 00:00:00',0),(3925,0,0,3314,'2526','H','O',3639,'',0,'2025-11-14','0000-00-00',2457,0,2516,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 10:49:32','','0000-00-00 00:00:00',0),(3926,0,0,3315,'2526','H','O',3640,'',0,'2025-11-14','0000-00-00',2005,0,2056,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 10:51:28','','0000-00-00 00:00:00',0),(3927,0,0,3316,'2526','H','O',3641,'',0,'2025-11-14','0000-00-00',2198,0,2254,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 11:05:12','','0000-00-00 00:00:00',0),(3928,0,0,3317,'2526','H','O',3642,'',0,'2025-11-14','0000-00-00',2458,0,2517,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-14 11:06:04','','0000-00-00 00:00:00',0),(3929,0,0,3298,'2526','H','O',3643,'',0,'2025-11-14','0000-00-00',2446,0,2503,0,'D06','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 11:06:57','','0000-00-00 00:00:00',0),(3930,0,0,3318,'2526','H','O',3644,'',0,'2025-11-14','0000-00-00',2459,0,2518,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 11:09:31','','0000-00-00 00:00:00',0),(3931,0,0,3303,'2526','H','O',3645,'',0,'2025-11-14','0000-00-00',495,0,520,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-14 11:09:55','','0000-00-00 00:00:00',0),(3932,0,0,3302,'2526','H','O',3646,'',0,'2025-11-14','0000-00-00',2448,0,2507,0,'D06','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 11:11:03','','0000-00-00 00:00:00',0),(3933,0,0,3319,'2526','H','O',3647,'',0,'2025-11-14','0000-00-00',741,0,772,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 11:18:00','','0000-00-00 00:00:00',0),(3934,0,0,3307,'2526','H','O',3648,'',0,'2025-11-14','0000-00-00',2451,0,2510,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 11:21:44','','0000-00-00 00:00:00',0),(3935,0,0,3320,'2526','H','O',3649,'',0,'2025-11-14','0000-00-00',589,0,619,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 11:26:48','','0000-00-00 00:00:00',0),(3936,0,0,3306,'2526','H','O',3650,'',0,'2025-11-14','0000-00-00',2450,0,2509,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 11:27:17','','0000-00-00 00:00:00',0),(3937,0,0,3321,'2526','H','O',3651,'',0,'2025-11-14','0000-00-00',2460,0,2519,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-14 11:28:14','','0000-00-00 00:00:00',0),(3938,0,0,3322,'2526','H','O',3652,'',0,'2025-11-14','0000-00-00',2461,0,2520,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 11:29:27','','0000-00-00 00:00:00',0),(3939,0,0,3323,'2526','H','O',3653,'',0,'2025-11-14','0000-00-00',787,0,818,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','F.O.C','HO 3683','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-14 11:34:54','urvashi','2025-11-14 13:00:43',0),(3940,0,0,3325,'2526','H','O',3654,'',0,'2025-11-14','0000-00-00',2463,0,2522,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 11:38:53','','0000-00-00 00:00:00',0),(3941,0,0,3324,'2526','H','O',3655,'',0,'2025-11-14','0000-00-00',2462,0,2521,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','fedral bank','','43127','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-14 11:39:11','','0000-00-00 00:00:00',0),(3942,0,0,3326,'2526','H','O',3656,'',0,'2025-11-14','0000-00-00',2464,0,2523,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 11:42:19','','0000-00-00 00:00:00',0),(3943,0,0,3327,'2526','H','O',3657,'',0,'2025-11-14','0000-00-00',2137,0,2188,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 11:46:54','','0000-00-00 00:00:00',0),(3944,0,0,3322,'2526','H','O',3658,'',0,'2025-11-14','0000-00-00',2461,0,2520,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 11:47:11','','0000-00-00 00:00:00',0),(3945,0,0,3321,'2526','H','O',3659,'',0,'2025-11-14','0000-00-00',2460,0,2519,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-14 11:51:19','','0000-00-00 00:00:00',0),(3946,0,0,3328,'2526','H','O',3660,'',0,'2025-11-14','0000-00-00',2465,0,2524,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','00058','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 11:52:27','','0000-00-00 00:00:00',0),(3947,0,0,3329,'2526','H','O',3661,'',0,'2025-11-14','0000-00-00',2466,0,2525,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-14 11:54:22','','0000-00-00 00:00:00',0),(3948,0,0,3331,'2526','H','O',3662,'',0,'2025-11-14','0000-00-00',1356,0,1396,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 11:57:05','','0000-00-00 00:00:00',0),(3949,0,0,3332,'2526','H','O',3663,'',0,'2025-11-14','0000-00-00',2468,0,2526,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 12:02:48','','0000-00-00 00:00:00',0),(3950,0,0,3333,'2526','H','O',3664,'',0,'2025-11-14','0000-00-00',2469,0,2527,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 12:03:07','','0000-00-00 00:00:00',0),(3951,0,0,3334,'2526','H','O',3665,'',0,'2025-11-14','0000-00-00',1928,0,1976,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','41196','','SCAN',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-14 12:04:09','','0000-00-00 00:00:00',0),(3952,0,0,3311,'2526','H','O',3666,'',0,'2025-11-14','0000-00-00',2455,0,2514,0,'D06','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 12:08:03','','0000-00-00 00:00:00',0),(3953,0,0,3324,'2526','H','O',3667,'',0,'2025-11-14','0000-00-00',2462,0,2521,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 12:09:01','','0000-00-00 00:00:00',0),(3954,0,0,3335,'2526','H','O',3668,'',0,'2025-11-14','0000-00-00',2470,0,2528,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-14 12:09:17','','0000-00-00 00:00:00',0),(3955,0,0,3330,'2526','H','O',3669,'',0,'2025-11-14','0000-00-00',2467,0,818,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-14 12:09:29','','0000-00-00 00:00:00',0),(3956,0,0,3336,'2526','H','O',3670,'',0,'2025-11-14','0000-00-00',2471,0,2529,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-14 12:14:06','','0000-00-00 00:00:00',0),(3957,0,0,3302,'2526','H','O',3671,'',0,'2025-11-14','0000-00-00',2448,0,2507,0,'D06','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 12:20:46','','0000-00-00 00:00:00',0),(3958,0,0,3337,'2526','H','O',3672,'',0,'2025-11-14','0000-00-00',2472,0,2530,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','57924','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 12:21:53','','0000-00-00 00:00:00',0),(3959,0,0,3340,'2526','H','O',3673,'',0,'2025-11-14','0000-00-00',2474,0,2532,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-14 12:33:14','','0000-00-00 00:00:00',0),(3960,0,0,3325,'2526','H','O',3674,'',0,'2025-11-14','0000-00-00',2463,0,2522,0,'D06','',0,500.00,0.00,0.00,500.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 12:36:32','','0000-00-00 00:00:00',0),(3961,0,0,3317,'2526','H','O',3675,'',0,'2025-11-14','0000-00-00',2458,0,2517,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 12:37:50','','0000-00-00 00:00:00',0),(3962,0,0,3339,'2526','H','O',3676,'',0,'2025-11-14','0000-00-00',923,0,954,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-14 12:42:11','','0000-00-00 00:00:00',0),(3963,0,0,3328,'2526','H','O',3677,'',0,'2025-11-14','0000-00-00',2465,0,2524,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','59289','','scan  ',100.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 3679','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 12:46:24','janvi','2025-11-14 12:47:38',0),(3964,0,0,3342,'2526','H','O',3678,'',0,'2025-11-14','0000-00-00',2476,0,2534,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 12:47:35','','0000-00-00 00:00:00',0),(3965,0,0,3328,'2526','H','O',3679,'',0,'2025-11-14','0000-00-00',2465,0,2524,0,'D02','',0,-1000.00,0.00,0.00,-1000.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','sbi','','59289','','SCAN                          ',-100.00,0,0,'2025-11-14','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 3677','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 12:47:38','janvi','2025-11-14 12:50:13',0),(3966,0,0,3344,'2526','H','O',3680,'',0,'2025-11-14','0000-00-00',2478,0,2536,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-14 12:50:20','','0000-00-00 00:00:00',0),(3967,0,0,3328,'2526','H','O',3681,'',0,'2025-11-14','0000-00-00',2465,0,2524,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','59289','','scan ',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 12:51:39','','0000-00-00 00:00:00',0),(3968,0,0,3345,'2526','H','O',3682,'',0,'2025-11-14','0000-00-00',2479,0,2533,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-14 12:52:38','','0000-00-00 00:00:00',0),(3969,0,0,3323,'2526','H','O',3683,'',0,'2025-11-14','0000-00-00',787,0,818,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-11-14','Y','N','N','','N',0.00,'','Y','F.O.C','','HO 3653','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-14 13:00:43','urvashi','2025-11-14 13:01:02',0),(3970,0,0,3345,'2526','H','O',3684,'',0,'2025-11-14','0000-00-00',2479,0,2533,0,'D03','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-14 13:10:00','','0000-00-00 00:00:00',0),(3971,0,0,3346,'2526','H','O',3685,'',0,'2025-11-14','0000-00-00',2480,0,2537,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-14 13:13:41','','0000-00-00 00:00:00',0),(3972,0,0,3347,'2526','H','O',3686,'',0,'2025-11-14','0000-00-00',2481,0,2538,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 13:28:35','','0000-00-00 00:00:00',0),(3973,0,0,3349,'2526','H','O',3687,'',0,'2025-11-14','0000-00-00',2447,0,2505,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-14 14:28:32','','0000-00-00 00:00:00',0),(3974,0,0,3350,'2526','H','O',3688,'',0,'2025-11-14','0000-00-00',2482,0,2540,0,'D27','',0,1800.00,0.00,0.00,1800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','95020','','scan ',1800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-14 15:30:13','','0000-00-00 00:00:00',0),(3975,0,0,3352,'2526','H','O',3689,'',0,'2025-11-14','0000-00-00',2483,0,2541,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 16:26:14','','0000-00-00 00:00:00',0),(3976,0,0,3353,'2526','H','O',3690,'',0,'2025-11-14','0000-00-00',1147,0,1187,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 16:33:51','','0000-00-00 00:00:00',0),(3977,0,0,3355,'2526','H','O',3691,'',0,'2025-11-14','0000-00-00',2484,0,2542,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 16:36:48','','0000-00-00 00:00:00',0),(3978,0,0,3357,'2526','H','O',3692,'',0,'2025-11-14','0000-00-00',210,0,223,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 16:40:11','','0000-00-00 00:00:00',0),(3979,0,0,3358,'2526','H','O',3693,'',0,'2025-11-14','0000-00-00',2486,0,2544,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 16:44:09','','0000-00-00 00:00:00',0),(3980,0,0,3360,'2526','H','O',3694,'',0,'2025-11-14','0000-00-00',2488,0,2546,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-14 17:03:21','','0000-00-00 00:00:00',0),(3981,0,0,3361,'2526','H','O',3695,'',0,'2025-11-14','0000-00-00',2489,0,2547,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 17:07:52','','0000-00-00 00:00:00',0),(3982,0,0,3363,'2526','H','O',3696,'',0,'2025-11-14','0000-00-00',2490,0,2548,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 17:12:21','','0000-00-00 00:00:00',0),(3983,0,0,3364,'2526','H','O',3697,'',0,'2025-11-14','0000-00-00',2491,0,2549,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','75828','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 17:23:14','','0000-00-00 00:00:00',0),(3984,0,0,3365,'2526','H','O',3698,'',0,'2025-11-14','0000-00-00',639,0,669,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 17:30:18','','0000-00-00 00:00:00',0),(3985,0,0,3366,'2526','H','O',3699,'',0,'2025-11-14','0000-00-00',2118,0,1763,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-14 17:34:27','','0000-00-00 00:00:00',0),(3986,0,0,3367,'2526','H','O',3700,'',0,'2025-11-14','0000-00-00',2492,0,2550,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-14 17:36:46','','0000-00-00 00:00:00',0),(3987,0,0,3368,'2526','H','O',3701,'',0,'2025-11-14','0000-00-00',2493,0,2551,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 17:39:19','','0000-00-00 00:00:00',0),(3988,0,0,3370,'2526','H','O',3702,'',0,'2025-11-14','0000-00-00',2495,0,2553,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','50479','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-14 17:42:29','','0000-00-00 00:00:00',0),(3989,0,0,3369,'2526','H','O',3703,'',0,'2025-11-14','0000-00-00',2494,0,2552,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','75550','','scan                          ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 17:42:33','','0000-00-00 00:00:00',0),(3990,0,0,3371,'2526','H','O',3704,'',0,'2025-11-14','0000-00-00',1901,0,1949,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 17:44:03','','0000-00-00 00:00:00',0),(3991,0,0,3352,'2526','H','O',3705,'',0,'2025-11-14','0000-00-00',2483,0,2541,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 17:57:59','','0000-00-00 00:00:00',0),(3992,0,0,3373,'2526','H','O',3706,'',0,'2025-11-14','0000-00-00',2497,0,2555,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 18:00:47','','0000-00-00 00:00:00',0),(3993,0,0,3372,'2526','H','O',3707,'',0,'2025-11-14','0000-00-00',2496,0,2554,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','AU SMALL FINAN','','44855','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-14 18:00:57','','0000-00-00 00:00:00',0),(3994,0,0,3358,'2526','H','O',3708,'',0,'2025-11-14','0000-00-00',2486,0,2544,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 18:02:36','','0000-00-00 00:00:00',0),(3995,0,0,3361,'2526','H','O',3709,'',0,'2025-11-14','0000-00-00',2489,0,2547,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','ICICI','','75978','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 18:10:33','','0000-00-00 00:00:00',0),(3996,0,0,3375,'2526','H','O',3710,'',0,'2025-11-14','0000-00-00',2477,0,2535,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 18:10:37','','0000-00-00 00:00:00',0),(3997,0,0,3374,'2526','H','O',3711,'',0,'2025-11-14','0000-00-00',2144,0,2196,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','59022','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-14 18:11:01','','0000-00-00 00:00:00',0),(3998,0,0,3377,'2526','H','O',3712,'',0,'2025-11-14','0000-00-00',710,0,741,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 18:15:20','','0000-00-00 00:00:00',0),(3999,0,0,3379,'2526','H','O',3713,'',0,'2025-11-14','0000-00-00',2500,0,2557,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 18:22:15','','0000-00-00 00:00:00',0),(4000,0,0,3378,'2526','H','O',3714,'',0,'2025-11-14','0000-00-00',2499,0,2556,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','pnb','','84807','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 18:22:57','','0000-00-00 00:00:00',0),(4001,0,0,3380,'2526','H','O',3715,'',0,'2025-11-14','0000-00-00',2501,0,2558,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 18:24:42','','0000-00-00 00:00:00',0),(4002,0,0,3381,'2526','H','O',3716,'',0,'2025-11-14','0000-00-00',2502,0,2559,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-14 18:25:03','','0000-00-00 00:00:00',0),(4003,0,0,3382,'2526','H','O',3717,'',0,'2025-11-14','0000-00-00',1390,0,1430,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-14 18:25:44','','0000-00-00 00:00:00',0),(4004,0,0,3383,'2526','H','O',3718,'',0,'2025-11-14','0000-00-00',645,0,675,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-14 18:26:20','','0000-00-00 00:00:00',0),(4005,0,0,3384,'2526','H','O',3719,'',0,'2025-11-14','0000-00-00',2503,0,2560,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 18:26:55','','0000-00-00 00:00:00',0),(4006,0,0,3376,'2526','H','O',3720,'',0,'2025-11-14','0000-00-00',2498,0,142,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-14 18:31:11','','0000-00-00 00:00:00',0),(4007,0,0,3385,'2526','H','O',3721,'',0,'2025-11-14','0000-00-00',2504,0,2561,0,'D27','',0,1050.00,0.00,0.00,1050.00,250.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-14 18:32:14','','0000-00-00 00:00:00',0),(4008,0,0,3386,'2526','H','O',3722,'',0,'2025-11-14','0000-00-00',2505,0,2562,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-14 18:39:21','','0000-00-00 00:00:00',0),(4009,0,0,3389,'2526','H','O',3723,'',0,'2025-11-14','0000-00-00',845,0,876,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','94336','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 18:47:27','','0000-00-00 00:00:00',0),(4010,0,0,3390,'2526','H','O',3724,'',0,'2025-11-14','0000-00-00',2506,0,2563,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','IDBI','','96831','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-14 18:48:31','','0000-00-00 00:00:00',0),(4011,0,0,3392,'2526','H','O',3725,'',0,'2025-11-14','0000-00-00',2508,0,2565,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-14 18:51:21','','0000-00-00 00:00:00',0),(4012,0,0,3391,'2526','H','O',3726,'',0,'2025-11-14','0000-00-00',2507,0,2564,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','2','IOB ','3205','3205','','CARD',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-14 18:52:14','','0000-00-00 00:00:00',0),(4013,0,0,3393,'2526','H','O',3727,'',0,'2025-11-14','0000-00-00',2030,0,2084,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-14 18:52:28','','0000-00-00 00:00:00',0),(4014,0,0,3395,'2526','H','O',3728,'',0,'2025-11-14','0000-00-00',2510,0,2567,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 18:53:30','','0000-00-00 00:00:00',0),(4015,0,0,3394,'2526','H','O',3729,'',0,'2025-11-14','0000-00-00',2509,0,2566,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-14 18:54:00','','0000-00-00 00:00:00',0),(4016,0,0,3396,'2526','H','O',3730,'',0,'2025-11-14','0000-00-00',2511,0,2568,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','rajkot nagrik','','90587','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-14 19:06:30','','0000-00-00 00:00:00',0),(4017,0,0,3397,'2526','H','O',3731,'',0,'2025-11-14','0000-00-00',2512,0,2569,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','81029','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-14 19:13:12','','0000-00-00 00:00:00',0),(4018,0,0,2876,'2526','H','D',152,'',0,'2025-11-14','0000-00-00',0,145,2241,0,'D27','',0,49500.00,0.00,0.00,49500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-38000,0,'0000-00-00','','N','N','F','N',11500.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-14 19:22:28','vishal','2025-11-14 20:12:05',0),(4019,0,0,3398,'2526','H','O',3732,'',0,'2025-11-14','0000-00-00',2142,0,2193,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-14 19:28:38','','0000-00-00 00:00:00',0),(4020,0,0,3400,'2526','H','O',3733,'',0,'2025-11-14','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','99420','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-14 19:37:27','','0000-00-00 00:00:00',0),(4021,0,0,3401,'2526','H','O',3734,'',0,'2025-11-14','0000-00-00',2513,0,2570,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-14 20:13:41','','0000-00-00 00:00:00',0),(4022,0,0,2876,'2526','H','I',136,'',0,'2025-11-14','0000-00-00',0,145,2241,0,'D27','',0,49500.00,0.00,0.00,49500.00,7000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-42500,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(4023,0,0,3176,'2526','H','D',153,'',0,'2025-11-15','0000-00-00',0,152,2424,0,'D27','',0,57750.00,0.00,0.00,57750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-45000,0,'0000-00-00','','N','N','F','N',12750.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-15 09:26:14','riya','2025-11-15 09:38:54',0),(4024,0,0,3403,'2526','H','O',3735,'',0,'2025-11-15','0000-00-00',2514,0,2571,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-15 09:36:34','','0000-00-00 00:00:00',0),(4025,0,0,3176,'2526','H','I',137,'',0,'2025-11-15','0000-00-00',0,152,2424,0,'D27','',0,57750.00,0.00,0.00,57750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-57750,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(4026,0,0,3404,'2526','H','O',3736,'',0,'2025-11-15','0000-00-00',2515,0,2572,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 09:52:00','','0000-00-00 00:00:00',0),(4027,0,0,3406,'2526','H','O',3737,'',0,'2025-11-15','0000-00-00',2516,0,2574,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-15 10:12:34','','0000-00-00 00:00:00',0),(4028,0,0,3407,'2526','H','O',3738,'',0,'2025-11-15','0000-00-00',2517,0,2575,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 10:25:11','','0000-00-00 00:00:00',0),(4029,0,0,3408,'2526','H','O',3739,'',0,'2025-11-15','0000-00-00',2518,0,2576,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-15 10:26:20','','0000-00-00 00:00:00',0),(4030,0,0,3409,'2526','H','O',3740,'',0,'2025-11-15','0000-00-00',2519,0,2577,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-15 10:28:54','','0000-00-00 00:00:00',0),(4031,0,0,3410,'2526','H','O',3741,'',0,'2025-11-15','0000-00-00',2520,0,2578,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 10:29:19','','0000-00-00 00:00:00',0),(4032,0,0,3411,'2526','H','O',3742,'',0,'2025-11-15','0000-00-00',2521,0,2579,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-15 10:30:48','','0000-00-00 00:00:00',0),(4033,0,0,3413,'2526','H','O',3743,'',0,'2025-11-15','0000-00-00',1988,0,2039,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','N','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 10:37:12','','0000-00-00 00:00:00',0),(4034,0,0,3413,'2526','H','O',3744,'',0,'2025-11-15','0000-00-00',1988,0,2039,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 3763','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 10:37:23','reception','2025-11-15 11:34:43',0),(4035,0,0,3414,'2526','H','O',3745,'',0,'2025-11-15','0000-00-00',2523,0,2581,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-15 10:37:51','','0000-00-00 00:00:00',0),(4036,0,0,3415,'2526','H','O',3746,'',0,'2025-11-15','0000-00-00',2524,0,2582,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 10:49:36','','0000-00-00 00:00:00',0),(4037,0,0,3416,'2526','H','O',3747,'',0,'2025-11-15','0000-00-00',1649,0,1694,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 10:55:22','','0000-00-00 00:00:00',0),(4038,0,0,3417,'2526','H','O',3748,'',0,'2025-11-15','0000-00-00',812,0,843,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','49684','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 10:58:58','','0000-00-00 00:00:00',0),(4039,0,0,3418,'2526','H','O',3749,'',0,'2025-11-15','0000-00-00',818,0,849,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-15 11:04:56','','0000-00-00 00:00:00',0),(4040,0,0,3419,'2526','H','O',3750,'',0,'2025-11-15','0000-00-00',1949,0,1997,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 11:04:57','','0000-00-00 00:00:00',0),(4041,0,0,3407,'2526','H','O',3751,'',0,'2025-11-15','0000-00-00',2517,0,2575,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 11:09:03','','0000-00-00 00:00:00',0),(4042,0,0,3190,'2526','H','D',154,'',0,'2025-11-15','0000-00-00',2329,153,2385,0,'D02','',0,43300.00,0.00,0.00,43300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-30000,0,'0000-00-00','','N','N','F','N',13300.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-15 11:14:17','riya','2025-11-15 13:05:31',0),(4043,0,0,3420,'2526','H','O',3752,'',0,'2025-11-15','0000-00-00',2525,0,2583,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 11:19:33','','0000-00-00 00:00:00',0),(4044,0,0,3421,'2526','H','O',3753,'',0,'2025-11-15','0000-00-00',2526,0,2584,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','','N','N','','N',0.00,'','Y','CANCEL','HO 3755','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 11:21:59','reception','2025-11-15 11:24:24',0),(4045,0,0,3421,'2526','H','O',3754,'',0,'2025-11-15','0000-00-00',2526,0,2584,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 11:22:05','','0000-00-00 00:00:00',0),(4046,0,0,3421,'2526','H','O',3755,'',0,'2025-11-15','0000-00-00',2526,0,2584,0,'D06','',0,-900.00,0.00,0.00,-900.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-900.00,0,0,'2025-11-15','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 3753','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 11:24:24','reception','2025-11-15 11:25:13',0),(4047,0,0,3422,'2526','H','O',3756,'',0,'2025-11-15','0000-00-00',2527,0,2585,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 11:25:51','','0000-00-00 00:00:00',0),(4048,0,0,3423,'2526','H','O',3757,'',0,'2025-11-15','0000-00-00',1397,0,1437,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','idbi','','57038','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-15 11:28:08','','0000-00-00 00:00:00',0),(4049,0,0,3424,'2526','H','O',3758,'',0,'2025-11-15','0000-00-00',1978,0,2026,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-15 11:30:26','','0000-00-00 00:00:00',0),(4050,0,0,3409,'2526','H','O',3759,'',0,'2025-11-15','0000-00-00',2519,0,2577,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-15 11:31:47','','0000-00-00 00:00:00',0),(4051,0,0,3425,'2526','H','O',3760,'',0,'2025-11-15','0000-00-00',2123,0,2174,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-15 11:32:32','','0000-00-00 00:00:00',0),(4052,0,0,3426,'2526','H','O',3761,'',0,'2025-11-15','0000-00-00',627,0,657,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-15 11:32:36','','0000-00-00 00:00:00',0),(4053,0,0,3113,'2526','H','D',155,'',0,'2025-11-15','0000-00-00',0,150,2384,0,'D02','',0,88800.00,0.00,0.00,88800.00,3000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-75000,0,'0000-00-00','','N','N','F','N',10800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-15 11:33:13','riya','2025-11-15 13:12:40',0),(4054,0,0,3427,'2526','H','O',3762,'',0,'2025-11-15','0000-00-00',2528,0,1616,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-15 11:34:04','','0000-00-00 00:00:00',0),(4055,0,0,3413,'2526','H','O',3763,'',0,'2025-11-15','0000-00-00',1988,0,2039,0,'D06','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-11-15','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 3744','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 11:34:43','reception','2025-11-15 11:35:02',0),(4056,0,0,3428,'2526','H','O',3764,'',0,'2025-11-15','0000-00-00',1019,0,1053,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','97250','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-15 11:35:16','','0000-00-00 00:00:00',0),(4057,0,0,3430,'2526','H','O',3765,'',0,'2025-11-15','0000-00-00',496,0,521,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','N','','N',0.00,'','Y','CANCEL','HO 3772','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 11:42:32','reception','2025-11-15 11:54:47',0),(4058,0,0,3429,'2526','H','O',3766,'',0,'2025-11-15','0000-00-00',2529,0,2586,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-15 11:42:35','','0000-00-00 00:00:00',0),(4059,0,0,3430,'2526','H','O',3767,'',0,'2025-11-15','0000-00-00',496,0,521,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 11:42:37','','0000-00-00 00:00:00',0),(4060,0,0,3431,'2526','H','O',3768,'',0,'2025-11-15','0000-00-00',2530,0,2587,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','boi','','36665','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-15 11:44:41','','0000-00-00 00:00:00',0),(4061,0,0,3432,'2526','H','O',3769,'',0,'2025-11-15','0000-00-00',1017,0,1051,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 11:46:03','','0000-00-00 00:00:00',0),(4062,0,0,3433,'2526','H','O',3770,'',0,'2025-11-15','0000-00-00',2531,0,2588,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-15 11:46:29','','0000-00-00 00:00:00',0),(4063,0,0,3422,'2526','H','O',3771,'',0,'2025-11-15','0000-00-00',2527,0,2585,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 11:51:32','','0000-00-00 00:00:00',0),(4064,0,0,3430,'2526','H','O',3772,'',0,'2025-11-15','0000-00-00',496,0,521,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-15','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 3765','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 11:54:47','reception','2025-11-15 11:55:05',0),(4065,0,0,3434,'2526','H','O',3773,'',0,'2025-11-15','0000-00-00',2532,0,2589,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 12:01:11','','0000-00-00 00:00:00',0),(4066,0,0,3435,'2526','H','O',3774,'',0,'2025-11-15','0000-00-00',1678,0,1723,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 12:07:24','','0000-00-00 00:00:00',0),(4067,0,0,3402,'2526','H','O',3775,'',0,'2025-11-15','0000-00-00',525,0,551,0,'D02','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','46902','','scan ',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-15 12:19:31','','0000-00-00 00:00:00',0),(4068,0,0,3434,'2526','H','O',3776,'',0,'2025-11-15','0000-00-00',2532,0,2589,0,'D06','',0,7400.00,0.00,0.00,7400.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','federal bank','','48755','','scan',6400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 12:21:29','','0000-00-00 00:00:00',0),(4069,0,0,3436,'2526','H','O',3777,'',0,'2025-11-15','0000-00-00',2506,0,2563,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','IDBI','','53320','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-15 12:22:15','','0000-00-00 00:00:00',0),(4070,0,0,3437,'2526','H','O',3778,'',0,'2025-11-15','0000-00-00',1474,0,1515,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 12:23:46','','0000-00-00 00:00:00',0),(4071,0,0,3438,'2526','H','O',3779,'',0,'2025-11-15','0000-00-00',2533,0,2590,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-15 12:26:10','','0000-00-00 00:00:00',0),(4072,0,0,3439,'2526','H','O',3780,'',0,'2025-11-15','0000-00-00',1945,0,1993,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 12:26:22','','0000-00-00 00:00:00',0),(4073,0,0,3440,'2526','H','O',3781,'',0,'2025-11-15','0000-00-00',2534,0,2591,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','','N','N','','N',0.00,'','Y','CANCEL','HO 3783','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 12:28:41','reception','2025-11-15 12:30:49',0),(4074,0,0,3440,'2526','H','O',3782,'',0,'2025-11-15','0000-00-00',2534,0,2591,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 12:28:52','','0000-00-00 00:00:00',0),(4075,0,0,3440,'2526','H','O',3783,'',0,'2025-11-15','0000-00-00',2534,0,2591,0,'D06','',0,-900.00,0.00,0.00,-900.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-900.00,0,0,'2025-11-15','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 3781','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 12:30:49','reception','2025-11-15 12:31:47',0),(4076,0,0,3441,'2526','H','O',3784,'',0,'2025-11-15','0000-00-00',2535,0,2592,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-15 12:31:23','','0000-00-00 00:00:00',0),(4077,0,0,3421,'2526','H','O',3785,'',0,'2025-11-15','0000-00-00',2526,0,2584,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 12:36:14','','0000-00-00 00:00:00',0),(4078,0,0,3442,'2526','H','O',3786,'',0,'2025-11-15','0000-00-00',1464,0,1505,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 12:39:30','','0000-00-00 00:00:00',0),(4079,0,0,3443,'2526','H','O',3787,'',0,'2025-11-15','0000-00-00',2536,0,2593,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','centrel bank','','79903','','scan',900.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 3797','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 12:53:39','reception','2025-11-15 13:45:06',0),(4080,0,0,3444,'2526','H','O',3788,'',0,'2025-11-15','0000-00-00',2537,0,2594,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','N','','N',0.00,'','Y','CANCEL','HO 3791','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 13:02:47','reception','2025-11-15 13:06:03',0),(4081,0,0,3444,'2526','H','O',3789,'',0,'2025-11-15','0000-00-00',2537,0,2594,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 3795','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 13:03:33','reception','2025-11-15 13:42:45',0),(4082,0,0,3444,'2526','H','O',3790,'',0,'2025-11-15','0000-00-00',2537,0,2594,0,'D06','',0,-700.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',0.00,0,0,'2025-12-02','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 3788','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 13:05:52','shweta','2025-12-02 11:00:20',0),(4083,0,0,3444,'2526','H','O',3791,'',0,'2025-11-15','0000-00-00',2537,0,2594,0,'D06','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-11-15','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 3788','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 13:06:03','reception','2025-11-15 13:06:59',0),(4084,0,0,3190,'2526','H','I',138,'',0,'2025-11-15','0000-00-00',2329,153,2385,0,'D02','',0,43300.00,0.00,0.00,43300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-43300,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(4085,0,0,3440,'2526','H','O',3792,'',0,'2025-11-15','0000-00-00',2534,0,2591,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','sbi','','58821','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 13:08:48','','0000-00-00 00:00:00',0),(4086,0,0,3113,'2526','H','I',139,'',0,'2025-11-15','0000-00-00',0,150,2384,0,'D02','',0,88800.00,0.00,0.00,88800.00,3800.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-85000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(4087,0,0,3446,'2526','H','O',3793,'',0,'2025-11-15','0000-00-00',2539,0,2596,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 13:26:52','','0000-00-00 00:00:00',0),(4088,0,0,3447,'2526','H','O',3794,'',0,'2025-11-15','0000-00-00',2540,0,2597,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-15 13:39:29','','0000-00-00 00:00:00',0),(4089,0,0,3444,'2526','H','O',3795,'',0,'2025-11-15','0000-00-00',2537,0,2594,0,'D06','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-11-15','Y','N','N','','N',0.00,'','Y','FOC','','HO 3789','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 13:42:45','reception','2025-11-15 13:43:42',0),(4090,0,0,3443,'2526','H','O',3796,'',0,'2025-11-15','0000-00-00',2536,0,2593,0,'D06','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','central bank of india','','79903','','SCAN',0.00,0,0,'2025-12-11','Y','N','N','','N',0.00,'','Y','FOC','','HO 3787','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 13:44:59','reception','2025-12-11 08:29:25',0),(4091,0,0,3443,'2526','H','O',3797,'',0,'2025-11-15','0000-00-00',2536,0,2593,0,'D06','',0,-900.00,0.00,0.00,-900.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','centrel bank','','79903','','SCAN',-900.00,0,0,'2025-11-15','Y','N','N','','N',0.00,'','Y','FOC','','HO 3787','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 13:45:06','reception','2025-11-15 13:46:57',0),(4092,0,0,3447,'2526','H','O',3798,'',0,'2025-11-15','0000-00-00',2540,0,2597,0,'D06','',0,4900.00,0.00,0.00,4900.00,600.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','09075','','scan',4300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 13:51:21','','0000-00-00 00:00:00',0),(4093,0,0,3448,'2526','H','O',3799,'',0,'2025-11-15','0000-00-00',1721,0,1765,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','63474','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 14:14:12','','0000-00-00 00:00:00',0),(4094,0,0,3449,'2526','H','O',3800,'',0,'2025-11-15','0000-00-00',1004,0,1036,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','42260','','scan  ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-15 17:45:56','','0000-00-00 00:00:00',0),(4095,0,0,3451,'2526','H','O',3801,'',0,'2025-11-15','0000-00-00',2542,0,2599,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','79185','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-15 17:58:52','','0000-00-00 00:00:00',0),(4096,0,0,3450,'2526','H','O',3802,'',0,'2025-11-15','0000-00-00',2541,0,2598,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','89220','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-15 17:59:17','','0000-00-00 00:00:00',0),(4097,0,0,3453,'2526','H','O',3803,'',0,'2025-11-15','0000-00-00',2543,0,2600,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-15 18:00:31','','0000-00-00 00:00:00',0),(4098,0,0,3452,'2526','H','O',3804,'',0,'2025-11-15','0000-00-00',1893,0,1940,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-15 18:19:03','','0000-00-00 00:00:00',0),(4099,0,0,3454,'2526','H','O',3805,'',0,'2025-11-15','0000-00-00',1974,0,2022,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-15 18:22:11','','0000-00-00 00:00:00',0),(4100,0,0,3456,'2526','H','O',3806,'',0,'2025-11-15','0000-00-00',2545,0,2602,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-15 18:27:47','','0000-00-00 00:00:00',0),(4101,0,0,3457,'2526','H','O',3807,'',0,'2025-11-15','0000-00-00',2191,0,2248,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-15 18:29:46','','0000-00-00 00:00:00',0),(4102,0,0,3458,'2526','H','O',3808,'',0,'2025-11-15','0000-00-00',1980,0,2028,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','09081','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 18:47:18','','0000-00-00 00:00:00',0),(4103,0,0,3459,'2526','H','O',3809,'',0,'2025-11-15','0000-00-00',2360,0,2415,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-15 18:49:02','','0000-00-00 00:00:00',0),(4104,0,0,3294,'2526','H','D',156,'',0,'2025-11-15','0000-00-00',0,156,2499,0,'D27','',0,27350.00,0.00,0.00,27350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25000,0,'0000-00-00','','N','N','F','N',2350.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-15 19:00:56','vishal','2025-11-15 19:06:53',0),(4105,0,0,3460,'2526','H','O',3810,'',0,'2025-11-15','0000-00-00',2546,0,2603,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 19:02:06','','0000-00-00 00:00:00',0),(4106,0,0,3461,'2526','H','O',3811,'',0,'2025-11-15','0000-00-00',2194,0,2251,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 19:10:59','','0000-00-00 00:00:00',0),(4107,0,0,3462,'2526','H','O',3812,'',0,'2025-11-15','0000-00-00',2547,0,2604,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','','N','N','','N',0.00,'','Y','DOUBLE ENTRY','HO 3819','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 19:24:06','manshi','2025-11-16 11:11:22',0),(4108,0,0,3462,'2526','H','O',3813,'',0,'2025-11-15','0000-00-00',2547,0,2604,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','DOUBLE ENTRY','HO 3820','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 19:24:15','manshi','2025-11-16 11:14:32',0),(4109,0,0,3464,'2526','H','O',3814,'',0,'2025-11-15','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-15 19:33:55','','0000-00-00 00:00:00',0),(4110,0,0,3463,'2526','H','O',3815,'',0,'2025-11-15','0000-00-00',2322,0,2379,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 19:41:20','','0000-00-00 00:00:00',0),(4111,0,0,3465,'2526','H','O',3816,'',0,'2025-11-15','0000-00-00',2548,0,2078,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-15 20:00:58','','0000-00-00 00:00:00',0),(4112,0,0,3294,'2526','H','I',140,'',0,'2025-11-15','0000-00-00',0,156,2499,0,'D27','',0,27350.00,0.00,0.00,27350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-27350,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(4113,0,0,3466,'2526','H','O',3817,'',0,'2025-11-16','0000-00-00',2549,0,2605,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-16 09:06:11','','0000-00-00 00:00:00',0),(4114,0,0,3467,'2526','H','O',3818,'',0,'2025-11-16','0000-00-00',2550,0,2606,0,'D02','',0,1350.00,0.00,0.00,1350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','56888','','scan ',1350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-16 09:08:38','','0000-00-00 00:00:00',0),(4115,0,0,3299,'2526','H','D',157,'',0,'2025-11-16','0000-00-00',0,157,2504,0,'D02','',0,65000.00,0.00,0.00,65000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-65000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-16 10:43:12','riya','2025-11-16 10:47:03',0),(4116,0,0,3299,'2526','H','I',141,'',0,'2025-11-16','0000-00-00',0,157,2504,0,'D02','',0,65000.00,0.00,0.00,65000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-65000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(4117,0,0,3462,'2526','H','O',3819,'',0,'2025-11-15','0000-00-00',2547,0,2604,0,'D27','',0,-1000.00,0.00,0.00,-1000.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-1000.00,0,0,'2025-11-16','Y','N','N','','N',0.00,'','Y','DOUBLE ENTRY','','HO 3812','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-16 11:11:22','manshi','2025-11-16 11:11:52',0),(4118,0,0,3462,'2526','H','O',3820,'',0,'2025-11-15','0000-00-00',2547,0,2604,0,'D27','',0,-1000.00,0.00,0.00,-1000.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-1000.00,0,0,'2025-11-16','Y','N','N','','N',0.00,'','Y','DOUBLE ENTRY','','HO 3813','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-16 11:14:32','manshi','2025-11-16 11:14:54',0),(4119,0,0,3471,'2526','H','O',3821,'',0,'2025-11-16','0000-00-00',2551,0,2609,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK MAHINDRA','','306163','','scan ',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-16 11:51:08','','0000-00-00 00:00:00',0),(4120,0,0,3472,'2526','H','O',3822,'',0,'2025-11-16','0000-00-00',2552,0,2610,0,'D03','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-16 12:19:06','','0000-00-00 00:00:00',0),(4121,0,0,3301,'2526','H','D',158,'',0,'2025-11-16','0000-00-00',0,158,2506,0,'D27','',0,32900.00,0.00,0.00,32900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',17900.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-16 19:46:54','riya','2025-11-16 20:16:52',0),(4122,0,0,3301,'2526','H','I',142,'',0,'2025-11-16','0000-00-00',0,158,2506,0,'D27','',0,32900.00,0.00,0.00,32900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-32900,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(4123,0,0,3475,'2526','H','O',3823,'',0,'2025-11-17','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','14870','','SCAN',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 08:57:39','','0000-00-00 00:00:00',0),(4124,0,0,3477,'2526','H','O',3824,'',0,'2025-11-17','0000-00-00',2118,0,1763,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 09:01:42','','0000-00-00 00:00:00',0),(4125,0,0,3476,'2526','H','O',3825,'',0,'2025-11-17','0000-00-00',2553,0,2613,0,'D27','',0,1150.00,0.00,0.00,1150.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1150.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 09:15:26','','0000-00-00 00:00:00',0),(4126,0,0,3478,'2526','H','O',3826,'',0,'2025-11-17','0000-00-00',2554,0,2614,0,'D14','',0,1850.00,0.00,0.00,1850.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1850.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 09:42:09','','0000-00-00 00:00:00',0),(4127,0,0,3479,'2526','H','O',3827,'',0,'2025-11-17','0000-00-00',2555,0,2615,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 09:43:22','','0000-00-00 00:00:00',0),(4128,0,0,3480,'2526','H','O',3828,'',0,'2025-11-17','0000-00-00',1421,0,1462,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 10:01:42','','0000-00-00 00:00:00',0),(4129,0,0,3027,'2526','H','D',159,'',0,'2025-11-17','0000-00-00',2247,149,2304,0,'D02','',0,90550.00,0.00,0.00,90550.00,5550.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-85000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-17 10:03:49','riya','2025-11-17 10:35:00',0),(4130,0,0,3481,'2526','H','O',3829,'',0,'2025-11-17','0000-00-00',315,0,331,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 10:15:34','','0000-00-00 00:00:00',0),(4131,0,0,3482,'2526','H','O',3830,'',0,'2025-11-17','0000-00-00',2556,0,2616,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-17 10:16:57','','0000-00-00 00:00:00',0),(4132,0,0,3483,'2526','H','O',3831,'',0,'2025-11-17','0000-00-00',2557,0,2617,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 10:18:58','','0000-00-00 00:00:00',0),(4133,0,0,3484,'2526','H','O',3832,'',0,'2025-11-17','0000-00-00',2558,0,2618,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 10:36:45','','0000-00-00 00:00:00',0),(4134,0,0,3027,'2526','H','I',143,'',0,'2025-11-17','0000-00-00',2247,149,2304,0,'D02','',0,90550.00,0.00,0.00,90550.00,5550.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-85000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(4135,0,0,3485,'2526','H','O',3833,'',0,'2025-11-17','0000-00-00',2047,0,2102,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 10:40:17','','0000-00-00 00:00:00',0),(4136,0,0,3486,'2526','H','O',3834,'',0,'2025-11-17','0000-00-00',1993,0,2044,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 10:46:32','','0000-00-00 00:00:00',0),(4137,0,0,3487,'2526','H','O',3835,'',0,'2025-11-17','0000-00-00',2069,0,2123,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 10:54:52','','0000-00-00 00:00:00',0),(4138,0,0,3488,'2526','H','O',3836,'',0,'2025-11-17','0000-00-00',2062,0,2116,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 10:58:01','','0000-00-00 00:00:00',0),(4139,0,0,3489,'2526','H','O',3837,'',0,'2025-11-17','0000-00-00',2559,0,2619,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-17 11:03:52','','0000-00-00 00:00:00',0),(4140,0,0,3492,'2526','H','O',3838,'',0,'2025-11-17','0000-00-00',1992,0,2043,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 11:16:28','','0000-00-00 00:00:00',0),(4141,0,0,3494,'2526','H','O',3839,'',0,'2025-11-17','0000-00-00',759,0,790,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-17 11:20:02','','0000-00-00 00:00:00',0),(4142,0,0,3493,'2526','H','O',3840,'',0,'2025-11-17','0000-00-00',2561,0,2621,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-17 11:20:34','','0000-00-00 00:00:00',0),(4143,0,0,3490,'2526','H','O',3841,'',0,'2025-11-17','0000-00-00',1251,0,1292,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-17 11:22:21','','0000-00-00 00:00:00',0),(4144,0,0,3491,'2526','H','O',3842,'',0,'2025-11-17','0000-00-00',2560,0,2620,0,'D03','',0,1100.00,500.00,0.00,600.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-17 11:23:58','','0000-00-00 00:00:00',0),(4145,0,0,3495,'2526','H','O',3843,'',0,'2025-11-17','0000-00-00',2562,0,2622,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 11:25:14','','0000-00-00 00:00:00',0),(4146,0,0,3496,'2526','H','O',3844,'',0,'2025-11-17','0000-00-00',1353,0,1393,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 11:26:17','','0000-00-00 00:00:00',0),(4147,0,0,3497,'2526','H','O',3845,'',0,'2025-11-17','0000-00-00',2056,0,2110,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 11:29:22','','0000-00-00 00:00:00',0),(4148,0,0,3498,'2526','H','O',3846,'',0,'2025-11-17','0000-00-00',2563,0,2623,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 11:30:10','','0000-00-00 00:00:00',0),(4149,0,0,3499,'2526','H','O',3847,'',0,'2025-11-17','0000-00-00',2141,0,2192,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 11:31:56','','0000-00-00 00:00:00',0),(4150,0,0,3500,'2526','H','O',3848,'',0,'2025-11-17','0000-00-00',2564,0,2624,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 11:36:26','','0000-00-00 00:00:00',0),(4151,0,0,3494,'2526','H','O',3849,'',0,'2025-11-17','0000-00-00',759,0,790,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-17 11:37:30','','0000-00-00 00:00:00',0),(4152,0,0,3501,'2526','H','O',3850,'',0,'2025-11-17','0000-00-00',1432,0,1473,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-17 11:38:30','','0000-00-00 00:00:00',0),(4153,0,0,3502,'2526','H','O',3851,'',0,'2025-11-17','0000-00-00',2565,0,2625,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 11:38:40','','0000-00-00 00:00:00',0),(4154,0,0,3503,'2526','H','O',3852,'',0,'2025-11-17','0000-00-00',384,0,406,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 11:39:24','','0000-00-00 00:00:00',0),(4155,0,0,3504,'2526','H','O',3853,'',0,'2025-11-17','0000-00-00',961,0,994,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 11:40:53','','0000-00-00 00:00:00',0),(4156,0,0,3505,'2526','H','O',3854,'',0,'2025-11-17','0000-00-00',2566,0,2626,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-17 11:46:25','','0000-00-00 00:00:00',0),(4157,0,0,3506,'2526','H','O',3855,'',0,'2025-11-17','0000-00-00',2245,0,2301,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-17 11:51:40','','0000-00-00 00:00:00',0),(4158,0,0,3507,'2526','H','O',3856,'',0,'2025-11-17','0000-00-00',2567,0,2627,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-17 11:56:09','','0000-00-00 00:00:00',0),(4159,0,0,3508,'2526','H','O',3857,'',0,'2025-11-17','0000-00-00',1928,0,1976,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','95709','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-17 11:57:48','','0000-00-00 00:00:00',0),(4160,0,0,3509,'2526','H','O',3858,'',0,'2025-11-17','0000-00-00',2568,0,2628,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','38632','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-17 12:02:37','','0000-00-00 00:00:00',0),(4161,0,0,3510,'2526','H','O',3859,'',0,'2025-11-17','0000-00-00',2065,0,2119,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-17 12:04:00','','0000-00-00 00:00:00',0),(4162,0,0,3498,'2526','H','O',3860,'',0,'2025-11-17','0000-00-00',2563,0,2623,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 12:04:10','','0000-00-00 00:00:00',0),(4163,0,0,3511,'2526','H','O',3861,'',0,'2025-11-17','0000-00-00',2569,0,2629,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-17 12:10:37','','0000-00-00 00:00:00',0),(4164,0,0,3489,'2526','H','O',3862,'',0,'2025-11-17','0000-00-00',2559,0,2619,0,'D06','',0,2200.00,0.00,0.00,2200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 12:11:20','','0000-00-00 00:00:00',0),(4165,0,0,3512,'2526','H','O',3863,'',0,'2025-11-17','0000-00-00',848,0,880,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 12:13:39','','0000-00-00 00:00:00',0),(4166,0,0,3510,'2526','H','O',3864,'',0,'2025-11-17','0000-00-00',2065,0,2119,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','89841','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-17 12:32:41','','0000-00-00 00:00:00',0),(4167,0,0,3507,'2526','H','O',3865,'',0,'2025-11-17','0000-00-00',2567,0,2627,0,'D06','',0,4600.00,0.00,0.00,4600.00,600.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 12:35:14','','0000-00-00 00:00:00',0),(4168,0,0,3513,'2526','H','O',3866,'',0,'2025-11-17','0000-00-00',2570,0,2630,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 12:38:08','','0000-00-00 00:00:00',0),(4169,0,0,3514,'2526','H','O',3867,'',0,'2025-11-17','0000-00-00',2571,0,2631,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-17 12:45:40','','0000-00-00 00:00:00',0),(4170,0,0,3515,'2526','H','O',3868,'',0,'2025-11-17','0000-00-00',2572,0,2632,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 12:46:58','','0000-00-00 00:00:00',0),(4171,0,0,3500,'2526','H','O',3869,'',0,'2025-11-17','0000-00-00',2564,0,2624,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 12:55:37','','0000-00-00 00:00:00',0),(4172,0,0,3516,'2526','H','O',3870,'',0,'2025-11-17','0000-00-00',27,0,29,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 12:58:14','','0000-00-00 00:00:00',0),(4173,0,0,3518,'2526','H','O',3871,'',0,'2025-11-17','0000-00-00',2573,0,2634,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 13:04:27','','0000-00-00 00:00:00',0),(4174,0,0,3519,'2526','H','O',3872,'',0,'2025-11-17','0000-00-00',2433,0,2489,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-17 13:15:59','','0000-00-00 00:00:00',0),(4175,0,0,3520,'2526','H','O',3873,'',0,'2025-11-17','0000-00-00',796,0,827,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 13:19:05','','0000-00-00 00:00:00',0),(4176,0,0,3470,'2526','H','D',160,'',0,'2025-11-17','0000-00-00',0,162,2608,0,'D27','',0,9300.00,0.00,0.00,9300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',2300.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-17 13:25:29','riya','2025-11-17 13:33:18',0),(4177,0,0,3470,'2526','H','I',144,'',0,'2025-11-17','0000-00-00',0,162,2608,0,'D27','',0,9300.00,0.00,0.00,9300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-9300,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-17 13:36:54','','0000-00-00 00:00:00',0),(4178,0,0,3505,'2526','H','O',3874,'',0,'2025-11-17','0000-00-00',2566,0,2626,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 13:37:21','','0000-00-00 00:00:00',0),(4179,0,0,3522,'2526','H','O',3875,'',0,'2025-11-17','0000-00-00',2574,0,2635,0,'D14','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','CENTRAL BANK','','62593','','scan ',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-17 14:09:57','','0000-00-00 00:00:00',0),(4180,0,0,3523,'2526','H','O',3876,'',0,'2025-11-17','0000-00-00',952,0,983,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 14:15:22','','0000-00-00 00:00:00',0),(4181,0,0,3524,'2526','H','O',3877,'',0,'2025-11-17','0000-00-00',957,0,990,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-17 14:49:16','','0000-00-00 00:00:00',0),(4182,0,0,3525,'2526','H','O',3878,'',0,'2025-11-17','0000-00-00',2096,0,2149,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 16:40:27','','0000-00-00 00:00:00',0),(4183,0,0,3526,'2526','H','O',3879,'',0,'2025-11-17','0000-00-00',219,0,232,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 16:47:01','','0000-00-00 00:00:00',0),(4184,0,0,3527,'2526','H','O',3880,'',0,'2025-11-17','0000-00-00',2575,0,2636,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 16:49:32','','0000-00-00 00:00:00',0),(4185,0,0,3528,'2526','H','O',3881,'',0,'2025-11-17','0000-00-00',2576,0,2637,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-17 16:50:53','','0000-00-00 00:00:00',0),(4186,0,0,3529,'2526','H','O',3882,'',0,'2025-11-17','0000-00-00',2577,0,2638,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 16:54:44','','0000-00-00 00:00:00',0),(4187,0,0,3530,'2526','H','O',3883,'',0,'2025-11-17','0000-00-00',2578,0,2639,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','66077','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 16:57:17','','0000-00-00 00:00:00',0),(4188,0,0,3531,'2526','H','O',3884,'',0,'2025-11-17','0000-00-00',2579,0,2640,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 17:01:51','','0000-00-00 00:00:00',0),(4189,0,0,3532,'2526','H','O',3885,'',0,'2025-11-17','0000-00-00',2580,0,2641,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 17:05:03','','0000-00-00 00:00:00',0),(4190,0,0,3533,'2526','H','O',3886,'',0,'2025-11-17','0000-00-00',1875,0,1922,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','70844','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 17:12:38','','0000-00-00 00:00:00',0),(4191,0,0,3534,'2526','H','O',3887,'',0,'2025-11-17','0000-00-00',2581,0,2642,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 3892','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-17 17:25:09','manshi','2025-11-17 17:46:57',0),(4192,0,0,3536,'2526','H','O',3888,'',0,'2025-11-17','0000-00-00',1540,0,1583,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 17:25:09','','0000-00-00 00:00:00',0),(4193,0,0,3535,'2526','H','O',3889,'',0,'2025-11-17','0000-00-00',2582,0,2643,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-17 17:25:27','','0000-00-00 00:00:00',0),(4194,0,0,3537,'2526','H','O',3890,'',0,'2025-11-17','0000-00-00',2583,0,2644,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 17:37:13','','0000-00-00 00:00:00',0),(4195,0,0,3527,'2526','H','O',3891,'',0,'2025-11-17','0000-00-00',2575,0,2636,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 17:40:01','','0000-00-00 00:00:00',0),(4196,0,0,3534,'2526','H','O',3892,'',0,'2025-11-17','0000-00-00',2581,0,2642,0,'D14','',0,-800.00,0.00,0.00,-800.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-800.00,0,0,'2025-11-17','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 3887','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-17 17:46:57','manshi','2025-11-17 17:47:52',0),(4197,0,0,3538,'2526','H','O',3893,'',0,'2025-11-17','0000-00-00',1386,0,1427,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-17 17:51:13','','0000-00-00 00:00:00',0),(4198,0,0,3530,'2526','H','O',3894,'',0,'2025-11-17','0000-00-00',2578,0,2639,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','00192','','SCAN',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 17:58:27','','0000-00-00 00:00:00',0),(4199,0,0,3539,'2526','H','O',3895,'',0,'2025-11-17','0000-00-00',995,0,1027,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 18:02:58','','0000-00-00 00:00:00',0),(4200,0,0,3540,'2526','H','O',3896,'',0,'2025-11-17','0000-00-00',2584,0,2645,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 18:04:46','','0000-00-00 00:00:00',0),(4201,0,0,3542,'2526','H','O',3897,'',0,'2025-11-17','0000-00-00',2074,0,2128,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 18:11:57','','0000-00-00 00:00:00',0),(4202,0,0,3543,'2526','H','O',3898,'',0,'2025-11-17','0000-00-00',2586,0,392,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-17 18:12:47','','0000-00-00 00:00:00',0),(4203,0,0,3541,'2526','H','O',3899,'',0,'2025-11-17','0000-00-00',2585,0,2646,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ZAPP WALLET','','43287','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-17 18:17:24','','0000-00-00 00:00:00',0),(4204,0,0,3531,'2526','H','O',3900,'',0,'2025-11-17','0000-00-00',2579,0,2640,0,'D06','',0,6100.00,0.00,0.00,6100.00,700.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 18:17:59','','0000-00-00 00:00:00',0),(4205,0,0,3544,'2526','H','O',3901,'',0,'2025-11-17','0000-00-00',2587,0,2647,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','20416','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 18:20:50','','0000-00-00 00:00:00',0),(4206,0,0,3532,'2526','H','O',3902,'',0,'2025-11-17','0000-00-00',2580,0,2641,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','RNSB','','03574','','SCAN',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 18:25:36','','0000-00-00 00:00:00',0),(4207,0,0,3545,'2526','H','O',3903,'',0,'2025-11-17','0000-00-00',776,0,807,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 18:43:33','','0000-00-00 00:00:00',0),(4208,0,0,3546,'2526','H','O',3904,'',0,'2025-11-17','0000-00-00',1446,0,1487,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.RIDHAM SIR','HO 3909','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-17 18:45:24','manshi','2025-11-17 18:58:53',0),(4209,0,0,3540,'2526','H','O',3905,'',0,'2025-11-17','0000-00-00',2584,0,2645,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','FEDERAL BANK','','96111','','SCAN',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 18:46:36','','0000-00-00 00:00:00',0),(4210,0,0,3547,'2526','H','O',3906,'',0,'2025-11-17','0000-00-00',2588,0,2648,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-17 18:49:34','','0000-00-00 00:00:00',0),(4211,0,0,3541,'2526','H','O',3907,'',0,'2025-11-17','0000-00-00',2585,0,2646,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ZAPP WALLET','','802769','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-17 18:50:40','','0000-00-00 00:00:00',0),(4212,0,0,3549,'2526','H','O',3908,'',0,'2025-11-17','0000-00-00',2589,0,2649,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100 DISCOUNT','HO 3915','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 18:56:59','reception','2025-11-17 19:57:59',0),(4213,0,0,3546,'2526','H','O',3909,'',0,'2025-11-17','0000-00-00',1446,0,1487,0,'D14','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-17','Y','N','N','','N',0.00,'','Y','FOC BY DR.RIDHAM SIR','','HO 3904','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-17 18:58:53','manshi','2025-11-17 18:59:32',0),(4214,0,0,3550,'2526','H','O',3910,'',0,'2025-11-17','0000-00-00',1277,0,1316,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 19:01:53','','0000-00-00 00:00:00',0),(4215,0,0,3544,'2526','H','O',3911,'',0,'2025-11-17','0000-00-00',2587,0,2647,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','93889','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 19:03:39','','0000-00-00 00:00:00',0),(4216,0,0,3551,'2526','H','O',3912,'',0,'2025-11-17','0000-00-00',2590,0,2650,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-17 19:07:14','','0000-00-00 00:00:00',0),(4217,0,0,3543,'2526','H','O',3913,'',0,'2025-11-17','0000-00-00',2586,0,392,0,'D14','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-17 19:35:59','','0000-00-00 00:00:00',0),(4218,0,0,3552,'2526','H','O',3914,'',0,'2025-11-17','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','01319','','scan  ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-17 19:55:47','','0000-00-00 00:00:00',0),(4219,0,0,3549,'2526','H','O',3915,'',0,'2025-11-17','0000-00-00',2589,0,2649,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-17','Y','N','N','','N',0.00,'','Y','100 DISCOUNT','','HO 3908','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 19:57:59','reception','2025-11-17 19:58:22',0),(4220,0,0,3549,'2526','H','O',3916,'',0,'2025-11-17','0000-00-00',2589,0,2649,0,'D06','',0,500.00,0.00,0.00,500.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-17 19:59:02','','0000-00-00 00:00:00',0),(4221,0,0,3521,'2526','H','O',3917,'',0,'2025-11-17','0000-00-00',1005,0,1037,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-17 20:00:27','','0000-00-00 00:00:00',0),(4222,0,0,3554,'2526','H','O',3918,'',0,'2025-11-18','0000-00-00',2591,0,2652,0,'D27','',0,1700.00,0.00,0.00,1700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 09:09:22','','0000-00-00 00:00:00',0),(4223,0,0,3555,'2526','H','O',3919,'',0,'2025-11-18','0000-00-00',2592,0,2653,0,'D27','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 09:11:54','','0000-00-00 00:00:00',0),(4224,0,0,3556,'2526','H','O',3920,'',0,'2025-11-18','0000-00-00',709,0,740,0,'D27','',0,4000.00,0.00,0.00,4000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','20704','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 09:15:07','','0000-00-00 00:00:00',0),(4225,0,0,3557,'2526','H','O',3921,'',0,'2025-11-18','0000-00-00',2593,0,2654,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-18 09:43:36','','0000-00-00 00:00:00',0),(4226,0,0,3558,'2526','H','O',3922,'',0,'2025-11-18','0000-00-00',2594,0,2655,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 10:05:59','','0000-00-00 00:00:00',0),(4227,0,0,3559,'2526','H','O',3923,'',0,'2025-11-18','0000-00-00',2595,0,2656,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','25145','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 10:13:17','','0000-00-00 00:00:00',0),(4228,0,0,3560,'2526','H','O',3924,'',0,'2025-11-18','0000-00-00',2166,0,2221,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-18 10:14:13','','0000-00-00 00:00:00',0),(4229,0,0,3561,'2526','H','O',3925,'',0,'2025-11-18','0000-00-00',2596,0,2657,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-18 10:21:55','','0000-00-00 00:00:00',0),(4230,0,0,3562,'2526','H','O',3926,'',0,'2025-11-18','0000-00-00',2597,0,2658,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 10:27:37','','0000-00-00 00:00:00',0),(4231,0,0,3563,'2526','H','O',3927,'',0,'2025-11-18','0000-00-00',1384,0,1425,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-18 10:37:54','','0000-00-00 00:00:00',0),(4232,0,0,3564,'2526','H','O',3928,'',0,'2025-11-18','0000-00-00',2598,0,2659,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-18 10:40:09','','0000-00-00 00:00:00',0),(4233,0,0,3565,'2526','H','O',3929,'',0,'2025-11-18','0000-00-00',168,0,181,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 10:46:23','','0000-00-00 00:00:00',0),(4234,0,0,3568,'2526','H','O',3930,'',0,'2025-11-18','0000-00-00',221,0,234,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-18 11:02:56','','0000-00-00 00:00:00',0),(4235,0,0,3569,'2526','H','O',3931,'',0,'2025-11-18','0000-00-00',2127,0,2178,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 11:04:19','','0000-00-00 00:00:00',0),(4236,0,0,3570,'2526','H','O',3932,'',0,'2025-11-18','0000-00-00',2073,0,2127,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','47338','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-18 11:06:00','','0000-00-00 00:00:00',0),(4237,0,0,3561,'2526','H','O',3933,'',0,'2025-11-18','0000-00-00',2596,0,2657,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','20507','','SCAN',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 11:10:52','','0000-00-00 00:00:00',0),(4238,0,0,3571,'2526','H','O',3934,'',0,'2025-11-18','0000-00-00',917,0,948,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 11:20:07','','0000-00-00 00:00:00',0),(4239,0,0,3572,'2526','H','O',3935,'',0,'2025-11-18','0000-00-00',865,0,897,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 11:31:20','','0000-00-00 00:00:00',0),(4240,0,0,3573,'2526','H','O',3936,'',0,'2025-11-18','0000-00-00',2599,0,2661,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 11:34:31','','0000-00-00 00:00:00',0),(4241,0,0,3574,'2526','H','O',3937,'',0,'2025-11-18','0000-00-00',2220,0,2276,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-18 11:39:15','','0000-00-00 00:00:00',0),(4242,0,0,3575,'2526','H','O',3938,'',0,'2025-11-18','0000-00-00',2600,0,2662,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 11:43:59','','0000-00-00 00:00:00',0),(4243,0,0,3576,'2526','H','O',3939,'',0,'2025-11-18','0000-00-00',2601,0,2663,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-18 11:50:34','','0000-00-00 00:00:00',0),(4244,0,0,3577,'2526','H','O',3940,'',0,'2025-11-18','0000-00-00',2602,0,2664,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 11:52:12','','0000-00-00 00:00:00',0),(4245,0,0,3578,'2526','H','O',3941,'',0,'2025-11-18','0000-00-00',2290,0,2347,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 11:55:19','','0000-00-00 00:00:00',0),(4246,0,0,3579,'2526','H','O',3942,'',0,'2025-11-18','0000-00-00',2603,0,2665,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-18 12:06:48','','0000-00-00 00:00:00',0),(4247,0,0,3581,'2526','H','O',3943,'',0,'2025-11-18','0000-00-00',2281,0,2338,0,'D27','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','CRD','one card','74423','74423','','CARD',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-18 12:16:54','','0000-00-00 00:00:00',0),(4248,0,0,3580,'2526','H','O',3944,'',0,'2025-11-18','0000-00-00',2282,0,2339,0,'D27','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','CRD','one card','74423','74423','','CARD',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-18 12:16:56','','0000-00-00 00:00:00',0),(4249,0,0,3582,'2526','H','O',3945,'',0,'2025-11-18','0000-00-00',2458,0,2517,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 12:22:17','','0000-00-00 00:00:00',0),(4250,0,0,3579,'2526','H','O',3946,'',0,'2025-11-18','0000-00-00',2603,0,2665,0,'D03','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-18 12:29:20','','0000-00-00 00:00:00',0),(4251,0,0,3583,'2526','H','O',3947,'',0,'2025-11-18','0000-00-00',2604,0,2666,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 12:29:40','','0000-00-00 00:00:00',0),(4252,0,0,3584,'2526','H','O',3948,'',0,'2025-11-18','0000-00-00',2605,0,2667,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 12:36:07','','0000-00-00 00:00:00',0),(4253,0,0,3585,'2526','H','O',3949,'',0,'2025-11-18','0000-00-00',2606,0,2668,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-18 12:36:34','','0000-00-00 00:00:00',0),(4254,0,0,3586,'2526','H','O',3950,'',0,'2025-11-18','0000-00-00',2607,0,2669,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 12:37:47','','0000-00-00 00:00:00',0),(4255,0,0,3587,'2526','H','O',3951,'',0,'2025-11-18','0000-00-00',1714,0,1758,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 12:38:58','','0000-00-00 00:00:00',0),(4256,0,0,3588,'2526','H','O',3952,'',0,'2025-11-18','0000-00-00',2608,0,2670,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-18 12:42:34','','0000-00-00 00:00:00',0),(4257,0,0,3589,'2526','H','O',3953,'',0,'2025-11-18','0000-00-00',2609,0,2671,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 12:42:53','','0000-00-00 00:00:00',0),(4258,0,0,3590,'2526','H','O',3954,'',0,'2025-11-18','0000-00-00',2610,0,2672,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','2','SBI','46391','46391','','CARD',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 12:51:25','','0000-00-00 00:00:00',0),(4259,0,0,3583,'2526','H','O',3955,'',0,'2025-11-18','0000-00-00',2604,0,2666,0,'D06','',0,4900.00,0.00,0.00,4900.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 12:54:46','','0000-00-00 00:00:00',0),(4260,0,0,3586,'2526','H','O',3956,'',0,'2025-11-18','0000-00-00',2607,0,2669,0,'D06','',0,5000.00,0.00,0.00,5000.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','40372','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 13:10:09','','0000-00-00 00:00:00',0),(4261,0,0,3592,'2526','H','O',3957,'',0,'2025-11-18','0000-00-00',2611,0,2674,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-18 13:10:40','','0000-00-00 00:00:00',0),(4262,0,0,3593,'2526','H','O',3958,'',0,'2025-11-18','0000-00-00',250,0,265,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 13:12:12','','0000-00-00 00:00:00',0),(4263,0,0,3590,'2526','H','O',3959,'',0,'2025-11-18','0000-00-00',2610,0,2672,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','2','SBI','','59733','','CARD',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 13:27:39','','0000-00-00 00:00:00',0),(4264,0,0,3592,'2526','H','O',3960,'',0,'2025-11-18','0000-00-00',2611,0,2674,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 13:47:42','','0000-00-00 00:00:00',0),(4265,0,0,3596,'2526','H','O',3961,'',0,'2025-11-18','0000-00-00',2612,0,2677,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 13:57:20','','0000-00-00 00:00:00',0),(4266,0,0,3597,'2526','H','O',3962,'',0,'2025-11-18','0000-00-00',2613,0,2678,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','55672','','scan ',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-18 14:02:17','','0000-00-00 00:00:00',0),(4267,0,0,3598,'2526','H','O',3963,'',0,'2025-11-18','0000-00-00',2614,0,2679,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 16:26:01','','0000-00-00 00:00:00',0),(4268,0,0,3599,'2526','H','O',3964,'',0,'2025-11-15','0000-00-00',2547,0,2604,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-18 17:48:00','','0000-00-00 00:00:00',0),(4269,0,0,3600,'2526','H','O',3965,'',0,'2025-11-18','0000-00-00',2615,0,2680,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 16:54:48','','0000-00-00 00:00:00',0),(4270,0,0,3601,'2526','H','O',3966,'',0,'2025-11-18','0000-00-00',321,0,337,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 16:58:20','','0000-00-00 00:00:00',0),(4271,0,0,3602,'2526','H','O',3967,'',0,'2025-11-18','0000-00-00',2616,0,2681,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 17:01:39','','0000-00-00 00:00:00',0),(4272,0,0,3603,'2526','H','O',3968,'',0,'2025-11-18','0000-00-00',212,0,225,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 17:03:31','','0000-00-00 00:00:00',0),(4273,0,0,3604,'2526','H','O',3969,'',0,'2025-11-18','0000-00-00',2617,0,2682,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','ICICI','','63671','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 17:07:29','','0000-00-00 00:00:00',0),(4274,0,0,3600,'2526','H','O',3970,'',0,'2025-11-18','0000-00-00',2615,0,2680,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','ICICI','','00970','','SCAN',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 17:19:54','','0000-00-00 00:00:00',0),(4275,0,0,3606,'2526','H','O',3971,'',0,'2025-11-18','0000-00-00',2618,0,2683,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-18 17:27:49','','0000-00-00 00:00:00',0),(4276,0,0,3607,'2526','H','O',3972,'',0,'2025-11-18','0000-00-00',2014,0,2067,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 17:31:13','','0000-00-00 00:00:00',0),(4277,0,0,3608,'2526','H','O',3973,'',0,'2025-11-18','0000-00-00',2118,0,1763,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-18 17:49:13','','0000-00-00 00:00:00',0),(4278,0,0,3609,'2526','H','O',3974,'',0,'2025-11-18','0000-00-00',2619,0,2684,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 17:55:24','','0000-00-00 00:00:00',0),(4279,0,0,2607,'2526','H','O',3975,'',0,'2025-11-18','0000-00-00',2014,0,2067,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-18','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 2862','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 17:59:31','reception','2025-11-18 17:59:59',0),(4280,0,0,3607,'2526','H','O',3976,'',0,'2025-11-18','0000-00-00',2014,0,2067,0,'D06','',0,500.00,0.00,0.00,500.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 18:01:00','','0000-00-00 00:00:00',0),(4281,0,0,3613,'2526','H','O',3977,'',0,'2025-11-18','0000-00-00',1133,0,1173,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 3979','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 18:06:43','janvi','2025-11-18 18:16:29',0),(4282,0,0,3615,'2526','H','O',3978,'',0,'2025-11-18','0000-00-00',2622,0,2688,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 18:15:09','','0000-00-00 00:00:00',0),(4283,0,0,3613,'2526','H','O',3979,'',0,'2025-11-18','0000-00-00',1133,0,1173,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-11-18','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 3977','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-18 18:16:29','janvi','2025-11-18 18:16:48',0),(4284,0,0,3614,'2526','H','O',3980,'',0,'2025-11-18','0000-00-00',2621,0,2687,0,'D02','',0,800.00,0.00,0.00,800.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-18 18:22:37','','0000-00-00 00:00:00',0),(4285,0,0,3616,'2526','H','O',3981,'',0,'2025-11-18','0000-00-00',1207,0,1246,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-18 18:28:22','','0000-00-00 00:00:00',0),(4286,0,0,3609,'2526','H','O',3982,'',0,'2025-11-18','0000-00-00',2619,0,2684,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 18:28:37','','0000-00-00 00:00:00',0),(4287,0,0,3617,'2526','H','O',3983,'',0,'2025-11-18','0000-00-00',2623,0,2689,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 18:30:40','','0000-00-00 00:00:00',0),(4288,0,0,3618,'2526','H','O',3984,'',0,'2025-11-18','0000-00-00',2612,0,2677,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 18:35:25','','0000-00-00 00:00:00',0),(4289,0,0,3619,'2526','H','O',3985,'',0,'2025-11-18','0000-00-00',2624,0,2690,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOI','','81444','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 18:45:52','','0000-00-00 00:00:00',0),(4290,0,0,3617,'2526','H','O',3986,'',0,'2025-11-18','0000-00-00',2623,0,2689,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-18 18:55:24','','0000-00-00 00:00:00',0),(4291,0,0,3405,'2526','H','D',161,'',0,'2025-11-18','0000-00-00',0,160,2573,0,'D27','',0,61650.00,0.00,0.00,61650.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-53000,0,'0000-00-00','','N','N','F','N',8650.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-18 23:10:02','riya','2025-11-18 23:22:32',0),(4292,0,0,3405,'2526','H','I',145,'',0,'2025-11-18','0000-00-00',0,160,2573,0,'D27','',0,61650.00,0.00,0.00,61650.00,5150.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-56500,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(4293,0,0,3624,'2526','H','O',3987,'',0,'2025-11-19','0000-00-00',2626,0,2694,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 09:33:22','','0000-00-00 00:00:00',0),(4294,0,0,3625,'2526','H','O',3988,'',0,'2025-11-19','0000-00-00',2627,0,2695,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 10:05:46','','0000-00-00 00:00:00',0),(4295,0,0,3626,'2526','H','O',3989,'',0,'2025-11-19','0000-00-00',2628,0,2696,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 10:12:10','','0000-00-00 00:00:00',0),(4296,0,0,3628,'2526','H','O',3990,'',0,'2025-11-19','0000-00-00',19,0,19,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 10:12:57','','0000-00-00 00:00:00',0),(4297,0,0,3629,'2526','H','O',3991,'',0,'2025-11-19','0000-00-00',2630,0,2698,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 10:13:47','','0000-00-00 00:00:00',0),(4298,0,0,3631,'2526','H','O',3992,'',0,'2025-11-19','0000-00-00',2172,0,2227,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 10:17:42','','0000-00-00 00:00:00',0),(4299,0,0,3633,'2526','H','O',3993,'',0,'2025-11-19','0000-00-00',924,0,955,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 10:21:04','','0000-00-00 00:00:00',0),(4300,0,0,3632,'2526','H','O',3994,'',0,'2025-11-19','0000-00-00',2631,0,2700,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-19 10:23:44','','0000-00-00 00:00:00',0),(4301,0,0,3634,'2526','H','O',3995,'',0,'2025-11-19','0000-00-00',2632,0,2701,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','55951','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 10:28:49','','0000-00-00 00:00:00',0),(4302,0,0,3635,'2526','H','O',3996,'',0,'2025-11-19','0000-00-00',2303,0,2360,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 10:30:15','','0000-00-00 00:00:00',0),(4303,0,0,3636,'2526','H','O',3997,'',0,'2025-11-19','0000-00-00',2633,0,2702,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 10:33:02','','0000-00-00 00:00:00',0),(4304,0,0,3637,'2526','H','O',3998,'',0,'2025-11-19','0000-00-00',1978,0,2026,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-19 10:37:31','','0000-00-00 00:00:00',0),(4305,0,0,3639,'2526','H','O',3999,'',0,'2025-11-19','0000-00-00',2634,0,2703,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-19 10:47:01','','0000-00-00 00:00:00',0),(4306,0,0,3640,'2526','H','O',4000,'',0,'2025-11-19','0000-00-00',2635,0,2704,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 10:49:18','','0000-00-00 00:00:00',0),(4307,0,0,3642,'2526','H','O',4001,'',0,'2025-11-19','0000-00-00',2636,0,2706,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 10:58:17','','0000-00-00 00:00:00',0),(4308,0,0,3644,'2526','H','O',4002,'',0,'2025-11-19','0000-00-00',2637,0,2707,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 11:03:29','','0000-00-00 00:00:00',0),(4309,0,0,3645,'2526','H','O',4003,'',0,'2025-11-19','0000-00-00',2638,0,2708,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 11:03:39','','0000-00-00 00:00:00',0),(4310,0,0,3646,'2526','H','O',4004,'',0,'2025-11-19','0000-00-00',278,0,294,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 11:04:18','','0000-00-00 00:00:00',0),(4311,0,0,3647,'2526','H','O',4005,'',0,'2025-11-19','0000-00-00',2122,0,2173,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 11:05:20','','0000-00-00 00:00:00',0),(4312,0,0,3648,'2526','H','O',4006,'',0,'2025-11-19','0000-00-00',2639,0,2709,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 11:05:44','','0000-00-00 00:00:00',0),(4313,0,0,3626,'2526','H','O',4007,'',0,'2025-11-19','0000-00-00',2628,0,2696,0,'D06','',0,6900.00,0.00,0.00,6900.00,900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 11:07:53','','0000-00-00 00:00:00',0),(4314,0,0,3649,'2526','H','O',4008,'',0,'2025-11-19','0000-00-00',2640,0,2710,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 11:11:42','','0000-00-00 00:00:00',0),(4315,0,0,3625,'2526','H','O',4009,'',0,'2025-11-19','0000-00-00',2627,0,2695,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','39398','','SCAN',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 11:18:26','','0000-00-00 00:00:00',0),(4316,0,0,3650,'2526','H','O',4010,'',0,'2025-11-19','0000-00-00',395,0,417,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 11:22:59','','0000-00-00 00:00:00',0),(4317,0,0,3651,'2526','H','O',4011,'',0,'2025-11-19','0000-00-00',2641,0,2711,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 11:24:53','','0000-00-00 00:00:00',0),(4318,0,0,3622,'2526','H','O',4012,'',0,'2025-11-19','0000-00-00',2625,0,2692,0,'D03','',0,2300.00,0.00,0.00,2300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-19 11:26:49','','0000-00-00 00:00:00',0),(4319,0,0,3652,'2526','H','O',4013,'',0,'2025-11-19','0000-00-00',2642,0,2712,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 11:30:02','','0000-00-00 00:00:00',0),(4320,0,0,3653,'2526','H','O',4014,'',0,'2025-11-19','0000-00-00',2643,0,2713,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-19 11:30:19','','0000-00-00 00:00:00',0),(4321,0,0,3655,'2526','H','O',4015,'',0,'2025-11-19','0000-00-00',15,0,15,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 11:32:04','','0000-00-00 00:00:00',0),(4322,0,0,3656,'2526','H','O',4016,'',0,'2025-11-19','0000-00-00',1985,0,2036,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','74483','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-19 11:33:06','','0000-00-00 00:00:00',0),(4323,0,0,3657,'2526','H','O',4017,'',0,'2025-11-19','0000-00-00',1584,0,1628,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','15360','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-19 11:35:27','','0000-00-00 00:00:00',0),(4324,0,0,3635,'2526','H','O',4018,'',0,'2025-11-19','0000-00-00',2303,0,2360,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 11:36:08','','0000-00-00 00:00:00',0),(4325,0,0,3658,'2526','H','O',4019,'',0,'2025-11-19','0000-00-00',2645,0,2715,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','36600','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-19 11:41:16','','0000-00-00 00:00:00',0),(4326,0,0,3659,'2526','H','O',4020,'',0,'2025-11-19','0000-00-00',2646,0,2716,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC BANK','','34226','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 11:45:27','','0000-00-00 00:00:00',0),(4327,0,0,3660,'2526','H','O',4021,'',0,'2025-11-19','0000-00-00',2647,0,2717,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 11:50:46','','0000-00-00 00:00:00',0),(4328,0,0,3661,'2526','H','O',4022,'',0,'2025-11-19','0000-00-00',2648,0,2718,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 11:52:43','','0000-00-00 00:00:00',0),(4329,0,0,3662,'2526','H','O',4023,'',0,'2025-11-19','0000-00-00',1274,0,1313,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI BANK','','31477','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 11:54:31','','0000-00-00 00:00:00',0),(4330,0,0,3663,'2526','H','O',4024,'',0,'2025-11-19','0000-00-00',2649,0,2719,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','INDIAN BANK','','31787','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 11:55:10','','0000-00-00 00:00:00',0),(4331,0,0,3658,'2526','H','O',4025,'',0,'2025-11-19','0000-00-00',2645,0,2715,0,'D03','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','21169','','SCAN',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-19 11:56:21','','0000-00-00 00:00:00',0),(4332,0,0,3664,'2526','H','O',4026,'',0,'2025-11-19','0000-00-00',2650,0,2720,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 11:56:55','','0000-00-00 00:00:00',0),(4333,0,0,3665,'2526','H','O',4027,'',0,'2025-11-19','0000-00-00',2651,0,2721,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','CBOI','','24681','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 12:00:49','','0000-00-00 00:00:00',0),(4334,0,0,3666,'2526','H','O',4028,'',0,'2025-11-19','0000-00-00',2652,0,2722,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-19 12:01:40','','0000-00-00 00:00:00',0),(4335,0,0,3648,'2526','H','O',4029,'',0,'2025-11-19','0000-00-00',2639,0,2709,0,'D06','',0,6200.00,0.00,0.00,6200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','54962','','SCAN',6200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 12:02:55','','0000-00-00 00:00:00',0),(4336,0,0,3667,'2526','H','O',4030,'',0,'2025-11-19','0000-00-00',2653,0,2723,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-19 12:04:42','','0000-00-00 00:00:00',0),(4337,0,0,3668,'2526','H','O',4031,'',0,'2025-11-19','0000-00-00',2654,0,2724,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 4043','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 12:05:02','reception','2025-11-19 12:53:21',0),(4338,0,0,3671,'2526','H','O',4032,'',0,'2025-11-19','0000-00-00',2656,0,2726,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 12:09:51','','0000-00-00 00:00:00',0),(4339,0,0,3667,'2526','H','O',4033,'',0,'2025-11-19','0000-00-00',2653,0,2723,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-19 12:10:53','','0000-00-00 00:00:00',0),(4340,0,0,3672,'2526','H','O',4034,'',0,'2025-11-19','0000-00-00',2657,0,2727,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 12:12:13','','0000-00-00 00:00:00',0),(4341,0,0,3673,'2526','H','O',4035,'',0,'2025-11-19','0000-00-00',1190,0,1229,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 12:13:11','','0000-00-00 00:00:00',0),(4343,0,0,3677,'2526','H','O',4036,'',0,'2025-11-19','0000-00-00',2659,0,2729,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-19 12:31:06','','0000-00-00 00:00:00',0),(4344,0,0,3595,'2526','H','I',146,'',0,'2025-11-19','0000-00-00',0,170,2676,0,'D27','',0,6000.00,0.00,0.00,6000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6000,0,'0000-00-00','','N','Y','F','N',0.00,'','Y','NAME SPELLING CHANGE','HI 155','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-19 12:32:04','vishal','2025-11-21 11:45:46',0),(4345,0,0,3676,'2526','H','O',4037,'',0,'2025-11-19','0000-00-00',2658,0,2728,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 12:34:55','','0000-00-00 00:00:00',0),(4346,0,0,3678,'2526','H','O',4038,'',0,'2025-11-19','0000-00-00',1454,0,1495,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC BANK','','69583','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 12:35:20','','0000-00-00 00:00:00',0),(4347,0,0,3679,'2526','H','O',4039,'',0,'2025-11-19','0000-00-00',2660,0,2730,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100 DISCOUNT','HO 4053','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 12:40:32','reception','2025-11-19 13:58:13',0),(4348,0,0,3680,'2526','H','O',4040,'',0,'2025-11-19','0000-00-00',1125,0,1095,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-19 12:43:59','','0000-00-00 00:00:00',0),(4349,0,0,3664,'2526','H','O',4041,'',0,'2025-11-19','0000-00-00',2650,0,2720,0,'D06','',0,6900.00,0.00,0.00,6900.00,1300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 12:47:13','','0000-00-00 00:00:00',0),(4350,0,0,3682,'2526','H','O',4042,'',0,'2025-11-19','0000-00-00',602,0,632,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 12:49:59','','0000-00-00 00:00:00',0),(4351,0,0,3668,'2526','H','O',4043,'',0,'2025-11-19','0000-00-00',2654,0,2724,0,'D06','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-11-19','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 4031','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 12:53:21','reception','2025-11-19 12:53:56',0),(4352,0,0,3668,'2526','H','O',4044,'',0,'2025-11-19','0000-00-00',2654,0,2724,0,'D06','',0,700.00,0.00,0.00,700.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 12:54:53','','0000-00-00 00:00:00',0),(4353,0,0,3662,'2526','H','O',4045,'',0,'2025-11-19','0000-00-00',1274,0,1313,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','sbi','','82584','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 13:09:05','','0000-00-00 00:00:00',0),(4354,0,0,3683,'2526','H','O',4046,'',0,'2025-11-19','0000-00-00',1307,0,1346,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-19 13:14:13','','0000-00-00 00:00:00',0),(4355,0,0,3672,'2526','H','O',4047,'',0,'2025-11-19','0000-00-00',2657,0,2727,0,'D06','',0,4400.00,0.00,0.00,4400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 13:14:22','','0000-00-00 00:00:00',0),(4356,0,0,3684,'2526','H','O',4048,'',0,'2025-11-19','0000-00-00',2662,0,2384,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-19 13:18:58','','0000-00-00 00:00:00',0),(4357,0,0,3685,'2526','H','O',4049,'',0,'2025-11-19','0000-00-00',931,0,962,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 13:32:04','','0000-00-00 00:00:00',0),(4358,0,0,3642,'2526','H','O',4050,'',0,'2025-11-19','0000-00-00',2636,0,2706,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 13:33:16','','0000-00-00 00:00:00',0),(4359,0,0,3681,'2526','H','O',4051,'',0,'2025-11-19','0000-00-00',2661,0,2731,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 13:51:18','','0000-00-00 00:00:00',0),(4360,0,0,3680,'2526','H','O',4052,'',0,'2025-11-19','0000-00-00',1125,0,1095,0,'D03','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 13:56:00','','0000-00-00 00:00:00',0),(4361,0,0,3679,'2526','H','O',4053,'',0,'2025-11-19','0000-00-00',2660,0,2730,0,'D06','',0,-900.00,0.00,0.00,-900.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-900.00,0,0,'2025-11-19','Y','N','N','','N',0.00,'','Y','100 DISCOUNT','','HO 4039','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 13:58:13','reception','2025-11-19 13:58:35',0),(4362,0,0,3679,'2526','H','O',4054,'',0,'2025-11-19','0000-00-00',2660,0,2730,0,'D06','',0,900.00,0.00,0.00,900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 14:00:04','','0000-00-00 00:00:00',0),(4363,0,0,3553,'2526','H','D',163,'',0,'2025-11-19','0000-00-00',0,166,2651,0,'D27','',0,13700.00,0.00,0.00,13700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','D','N',13700.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-19 14:25:52','vishal','2025-11-19 17:00:37',0),(4364,0,0,3669,'2526','H','O',4055,'',0,'2025-11-19','0000-00-00',2655,0,2725,0,'D14','',0,7000.00,0.00,0.00,7000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','45227','','scan',7000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-19 14:51:18','','0000-00-00 00:00:00',0),(4365,0,0,3675,'2526','H','O',4056,'',0,'2025-11-19','0000-00-00',2351,0,2407,0,'D14','',0,7000.00,0.00,0.00,7000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','51812','','scan ',7000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-19 14:52:15','','0000-00-00 00:00:00',0),(4366,0,0,3686,'2526','H','O',4057,'',0,'2025-11-19','0000-00-00',1326,0,1366,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 15:55:16','','0000-00-00 00:00:00',0),(4367,0,0,3687,'2526','H','O',4058,'',0,'2025-11-19','0000-00-00',1133,0,1173,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-19 16:36:50','','0000-00-00 00:00:00',0),(4368,0,0,3693,'2526','H','O',4059,'',0,'2025-11-19','0000-00-00',2667,0,2736,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 16:58:19','','0000-00-00 00:00:00',0),(4369,0,0,3694,'2526','H','O',4060,'',0,'2025-11-19','0000-00-00',1555,0,1598,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','sbi','','67157','','SCAN',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 4064','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 17:10:05','reception','2025-11-19 17:19:49',0),(4370,0,0,3695,'2526','H','O',4061,'',0,'2025-11-19','0000-00-00',1734,0,1778,0,'D06','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','bob','','46591','','SCAN',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 17:12:20','','0000-00-00 00:00:00',0),(4371,0,0,3696,'2526','H','O',4062,'',0,'2025-11-19','0000-00-00',2533,0,2590,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 17:16:08','','0000-00-00 00:00:00',0),(4372,0,0,3697,'2526','H','O',4063,'',0,'2025-11-19','0000-00-00',2668,0,2737,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 17:17:50','','0000-00-00 00:00:00',0),(4373,0,0,3694,'2526','H','O',4064,'',0,'2025-11-19','0000-00-00',1555,0,1598,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','SBI','','67157','','SCAN',-500.00,0,0,'2025-11-19','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 4060','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 17:19:49','reception','2025-11-19 17:20:35',0),(4374,0,0,3699,'2526','H','O',4065,'',0,'2025-11-19','0000-00-00',2669,0,2738,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 17:21:55','','0000-00-00 00:00:00',0),(4375,0,0,3700,'2526','H','O',4066,'',0,'2025-11-19','0000-00-00',1652,0,1697,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 17:23:06','','0000-00-00 00:00:00',0),(4376,0,0,3701,'2526','H','O',4067,'',0,'2025-11-19','0000-00-00',2670,0,2739,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 17:25:48','','0000-00-00 00:00:00',0),(4377,0,0,3694,'2526','H','O',4068,'',0,'2025-11-19','0000-00-00',1555,0,1598,0,'D06','',0,500.00,0.00,0.00,500.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','67157','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 17:27:07','','0000-00-00 00:00:00',0),(4378,0,0,3702,'2526','H','O',4069,'',0,'2025-11-19','0000-00-00',2671,0,2740,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOI BANK','','57528','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 17:27:29','','0000-00-00 00:00:00',0),(4379,0,0,3703,'2526','H','O',4070,'',0,'2025-11-19','0000-00-00',2577,0,2638,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 17:30:48','','0000-00-00 00:00:00',0),(4380,0,0,3705,'2526','H','O',4071,'',0,'2025-11-19','0000-00-00',2310,0,2367,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','62193','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 17:31:47','','0000-00-00 00:00:00',0),(4381,0,0,3704,'2526','H','O',4072,'',0,'2025-11-19','0000-00-00',2672,0,2741,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 17:32:51','','0000-00-00 00:00:00',0),(4382,0,0,3706,'2526','H','O',4073,'',0,'2025-11-19','0000-00-00',2673,0,2742,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOI BANK','','63989','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 17:35:16','','0000-00-00 00:00:00',0),(4383,0,0,3708,'2526','H','O',4074,'',0,'2025-11-19','0000-00-00',2675,0,2744,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 17:38:41','','0000-00-00 00:00:00',0),(4384,0,0,3709,'2526','H','O',4075,'',0,'2025-11-19','0000-00-00',2015,0,2068,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','yash bank','','36427','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 17:40:09','','0000-00-00 00:00:00',0),(4385,0,0,3707,'2526','H','O',4076,'',0,'2025-11-19','0000-00-00',2674,0,2743,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','17700','','scan     ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 17:40:35','','0000-00-00 00:00:00',0),(4386,0,0,3710,'2526','H','O',4077,'',0,'2025-11-19','0000-00-00',2676,0,2745,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 17:43:52','','0000-00-00 00:00:00',0),(4387,0,0,3711,'2526','H','O',4078,'',0,'2025-11-19','0000-00-00',2677,0,2746,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','bob','','29934','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 17:44:29','','0000-00-00 00:00:00',0),(4388,0,0,3627,'2526','H','O',4079,'',0,'2025-11-19','0000-00-00',2629,0,2697,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 17:51:00','','0000-00-00 00:00:00',0),(4389,0,0,3713,'2526','H','O',4080,'',0,'2025-11-19','0000-00-00',2678,0,2747,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','union bank','','95452','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 17:52:26','','0000-00-00 00:00:00',0),(4390,0,0,3715,'2526','H','O',4081,'',0,'2025-11-19','0000-00-00',362,0,378,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 17:53:31','','0000-00-00 00:00:00',0),(4391,0,0,3717,'2526','H','O',4082,'',0,'2025-11-19','0000-00-00',2680,0,2749,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 17:55:55','','0000-00-00 00:00:00',0),(4392,0,0,3716,'2526','H','O',4083,'',0,'2025-11-19','0000-00-00',2679,0,2748,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 17:56:17','','0000-00-00 00:00:00',0),(4393,0,0,3718,'2526','H','O',4084,'',0,'2025-11-19','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 17:57:23','','0000-00-00 00:00:00',0),(4394,0,0,3720,'2526','H','O',4085,'',0,'2025-11-19','0000-00-00',2682,0,2751,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-19 17:57:59','','0000-00-00 00:00:00',0),(4395,0,0,3719,'2526','H','O',4086,'',0,'2025-11-19','0000-00-00',2681,0,2750,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','70369','','scan     ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 17:58:01','','0000-00-00 00:00:00',0),(4396,0,0,3721,'2526','H','O',4087,'',0,'2025-11-19','0000-00-00',2683,0,2752,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 17:59:09','','0000-00-00 00:00:00',0),(4397,0,0,3720,'2526','H','O',4088,'',0,'2025-11-19','0000-00-00',2682,0,2751,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-19 18:00:39','','0000-00-00 00:00:00',0),(4398,0,0,3724,'2526','H','O',4089,'',0,'2025-11-19','0000-00-00',2684,0,2753,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 18:03:30','','0000-00-00 00:00:00',0),(4399,0,0,3723,'2526','H','O',4090,'',0,'2025-11-19','0000-00-00',634,0,664,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','2','sbi','74423','74423','','CARD',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 18:03:32','','0000-00-00 00:00:00',0),(4400,0,0,3725,'2526','H','O',4091,'',0,'2025-11-19','0000-00-00',2685,0,2754,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 4127','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 18:04:49','drashti','2025-11-19 19:33:12',0),(4401,0,0,3713,'2526','H','O',4092,'',0,'2025-11-19','0000-00-00',2678,0,2747,0,'D06','',0,2500.00,0.00,0.00,2500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','union bank','','76712','','SCAN',2500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 18:06:29','','0000-00-00 00:00:00',0),(4402,0,0,3726,'2526','H','O',4093,'',0,'2025-11-19','0000-00-00',2686,0,2755,0,'D06','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 18:10:32','','0000-00-00 00:00:00',0),(4403,0,0,3722,'2526','H','O',4094,'',0,'2025-11-19','0000-00-00',1959,0,2007,0,'D03','',0,600.00,0.00,0.00,600.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-19 18:11:02','','0000-00-00 00:00:00',0),(4404,0,0,3727,'2526','H','O',4095,'',0,'2025-11-19','0000-00-00',2687,0,2756,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','28980','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 18:13:04','','0000-00-00 00:00:00',0),(4405,0,0,3698,'2526','H','O',4096,'',0,'2025-11-19','0000-00-00',2569,0,2629,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 4097','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 18:13:08','urvashi','2025-11-19 18:13:41',0),(4406,0,0,3698,'2526','H','O',4097,'',0,'2025-11-19','0000-00-00',2569,0,2629,0,'D02','',0,-100.00,0.00,0.00,-100.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-100.00,0,0,'2025-11-19','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 4096','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 18:13:41','urvashi','2025-11-19 18:13:57',0),(4407,0,0,3698,'2526','H','O',4098,'',0,'2025-11-19','0000-00-00',2569,0,2629,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 18:14:41','','0000-00-00 00:00:00',0),(4408,0,0,3728,'2526','H','O',4099,'',0,'2025-11-19','0000-00-00',2144,0,2196,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','83642','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-19 18:15:57','','0000-00-00 00:00:00',0),(4409,0,0,3729,'2526','H','O',4100,'',0,'2025-11-19','0000-00-00',2688,0,2757,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 18:17:36','','0000-00-00 00:00:00',0),(4410,0,0,3730,'2526','H','O',4101,'',0,'2025-11-19','0000-00-00',2095,0,1245,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 18:20:40','','0000-00-00 00:00:00',0),(4411,0,0,3731,'2526','H','O',4102,'',0,'2025-11-19','0000-00-00',2689,0,2758,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 18:23:07','','0000-00-00 00:00:00',0),(4412,0,0,3732,'2526','H','O',4103,'',0,'2025-11-19','0000-00-00',2690,0,2759,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 18:27:10','','0000-00-00 00:00:00',0),(4413,0,0,3734,'2526','H','O',4104,'',0,'2025-11-19','0000-00-00',1953,0,2001,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 18:28:26','','0000-00-00 00:00:00',0),(4414,0,0,3733,'2526','H','O',4105,'',0,'2025-11-19','0000-00-00',2196,0,2253,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','70180','','scan     ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 18:28:49','','0000-00-00 00:00:00',0),(4415,0,0,3735,'2526','H','O',4106,'',0,'2025-11-19','0000-00-00',2691,0,2760,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 18:29:37','','0000-00-00 00:00:00',0),(4416,0,0,3737,'2526','H','O',4107,'',0,'2025-11-19','0000-00-00',1521,0,1562,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 18:32:45','','0000-00-00 00:00:00',0),(4417,0,0,3738,'2526','H','O',4108,'',0,'2025-11-19','0000-00-00',2692,0,2761,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 18:33:12','','0000-00-00 00:00:00',0),(4418,0,0,3712,'2526','H','O',4109,'',0,'2025-11-19','0000-00-00',525,0,551,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 18:33:31','','0000-00-00 00:00:00',0),(4419,0,0,3739,'2526','H','O',4110,'',0,'2025-11-19','0000-00-00',982,0,1015,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','hdfc','','52951','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 18:40:30','','0000-00-00 00:00:00',0),(4420,0,0,3740,'2526','H','O',4111,'',0,'2025-11-19','0000-00-00',2693,0,2762,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100 DISCOUNT','HO 4123','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 18:42:57','reception','2025-11-19 19:18:37',0),(4421,0,0,3741,'2526','H','O',4112,'',0,'2025-11-19','0000-00-00',2145,0,2197,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 18:45:17','','0000-00-00 00:00:00',0),(4422,0,0,3743,'2526','H','O',4113,'',0,'2025-11-19','0000-00-00',2694,0,2763,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 18:48:13','','0000-00-00 00:00:00',0),(4423,0,0,3744,'2526','H','O',4114,'',0,'2025-11-19','0000-00-00',2695,0,2764,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','rnsb','','66878','','scan     ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 18:50:41','','0000-00-00 00:00:00',0),(4424,0,0,3745,'2526','H','O',4115,'',0,'2025-11-19','0000-00-00',2696,0,2765,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 18:55:24','','0000-00-00 00:00:00',0),(4425,0,0,3714,'2526','H','O',4116,'',0,'2025-11-19','0000-00-00',957,0,990,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 18:56:50','','0000-00-00 00:00:00',0),(4426,0,0,3746,'2526','H','O',4117,'',0,'2025-11-19','0000-00-00',2697,0,2766,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 18:57:02','','0000-00-00 00:00:00',0),(4427,0,0,3748,'2526','H','O',4118,'',0,'2025-11-19','0000-00-00',2699,0,2768,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','68870','','scan     ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 19:01:24','','0000-00-00 00:00:00',0),(4428,0,0,3749,'2526','H','O',4119,'',0,'2025-11-19','0000-00-00',2700,0,2769,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 19:02:10','','0000-00-00 00:00:00',0),(4429,0,0,3720,'2526','H','O',4120,'',0,'2025-11-19','0000-00-00',2682,0,2751,0,'D03','',0,650.00,0.00,0.00,650.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',650.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-19 19:02:34','','0000-00-00 00:00:00',0),(4430,0,0,3750,'2526','H','O',4121,'',0,'2025-11-19','0000-00-00',2701,0,2770,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-19 19:13:38','','0000-00-00 00:00:00',0),(4431,0,0,3751,'2526','H','O',4122,'',0,'2025-11-19','0000-00-00',2702,0,2771,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOI BANK','','75040','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 19:17:18','','0000-00-00 00:00:00',0),(4432,0,0,3740,'2526','H','O',4123,'',0,'2025-11-19','0000-00-00',2693,0,2762,0,'D06','',0,-800.00,0.00,0.00,-800.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-800.00,0,0,'2025-11-19','Y','N','N','','N',0.00,'','Y','100 DISCOUNT','','HO 4111','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 19:18:37','reception','2025-11-19 19:18:55',0),(4433,0,0,3740,'2526','H','O',4124,'',0,'2025-11-19','0000-00-00',2693,0,2762,0,'D06','',0,800.00,0.00,0.00,800.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-19 19:19:36','','0000-00-00 00:00:00',0),(4434,0,0,3750,'2526','H','O',4125,'',0,'2025-11-19','0000-00-00',2701,0,2770,0,'D14','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-19 19:27:10','','0000-00-00 00:00:00',0),(4435,0,0,3752,'2526','H','O',4126,'',0,'2025-11-19','0000-00-00',1860,0,1905,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','85736','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 19:28:35','','0000-00-00 00:00:00',0),(4436,0,0,3725,'2526','H','O',4127,'',0,'2025-11-19','0000-00-00',2685,0,2754,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-11-19','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 4091','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 19:33:12','drashti','2025-11-19 19:33:40',0),(4437,0,0,3725,'2526','H','O',4128,'',0,'2025-11-19','0000-00-00',2685,0,2754,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 19:35:10','','0000-00-00 00:00:00',0),(4438,0,0,3753,'2526','H','O',4129,'',0,'2025-11-19','0000-00-00',2703,0,2772,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','12431','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 19:50:38','','0000-00-00 00:00:00',0),(4439,0,0,3754,'2526','H','O',4130,'',0,'2025-11-19','0000-00-00',2704,0,2773,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-19 19:52:34','','0000-00-00 00:00:00',0),(4440,0,0,3578,'2526','H','O',4131,'',0,'2025-11-19','0000-00-00',2290,0,2347,0,'D02','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-19 20:14:10','','0000-00-00 00:00:00',0),(4441,0,0,3756,'2526','H','O',4132,'',0,'2025-11-20','0000-00-00',2705,0,2774,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','standrad bank','','94863','','SCAN',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 08:49:21','','0000-00-00 00:00:00',0),(4442,0,0,3757,'2526','H','O',4133,'',0,'2025-11-20','0000-00-00',2706,0,2775,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 09:25:08','','0000-00-00 00:00:00',0),(4443,0,0,3758,'2526','H','O',4134,'',0,'2025-11-20','0000-00-00',1243,0,1284,0,'D27','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 09:28:01','','0000-00-00 00:00:00',0),(4444,0,0,3761,'2526','H','O',4135,'',0,'2025-11-20','0000-00-00',2708,0,2651,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','76580','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 09:45:49','','0000-00-00 00:00:00',0),(4445,0,0,3762,'2526','H','O',4136,'',0,'2025-11-20','0000-00-00',2709,0,2778,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 09:51:24','','0000-00-00 00:00:00',0),(4446,0,0,3766,'2526','H','O',4137,'',0,'2025-11-20','0000-00-00',2711,0,2782,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 10:10:05','','0000-00-00 00:00:00',0),(4447,0,0,3765,'2526','H','O',4138,'',0,'2025-11-20','0000-00-00',2710,0,2781,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-20 10:10:28','','0000-00-00 00:00:00',0),(4448,0,0,3767,'2526','H','O',4139,'',0,'2025-11-20','0000-00-00',2712,0,2783,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 10:12:24','','0000-00-00 00:00:00',0),(4449,0,0,3768,'2526','H','O',4140,'',0,'2025-11-20','0000-00-00',2713,0,2784,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','45023','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 10:19:32','','0000-00-00 00:00:00',0),(4450,0,0,3769,'2526','H','O',4141,'',0,'2025-11-20','0000-00-00',2714,0,2785,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 10:20:14','','0000-00-00 00:00:00',0),(4451,0,0,3770,'2526','H','O',4142,'',0,'2025-11-20','0000-00-00',1548,0,1591,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 10:33:14','','0000-00-00 00:00:00',0),(4452,0,0,3771,'2526','H','O',4143,'',0,'2025-11-20','0000-00-00',2715,0,2786,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 10:37:58','','0000-00-00 00:00:00',0),(4453,0,0,3772,'2526','H','O',4144,'',0,'2025-11-20','0000-00-00',1899,0,1947,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 10:38:53','','0000-00-00 00:00:00',0),(4454,0,0,2811,'2526','H','D',164,'',0,'2025-11-20','0000-00-00',0,143,2201,0,'D27','',0,172800.00,0.00,0.00,172800.00,7800.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-165000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-20 10:42:09','riya','2025-11-20 12:03:37',0),(4455,0,0,3773,'2526','H','O',4145,'',0,'2025-11-20','0000-00-00',2716,0,2787,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 10:43:46','','0000-00-00 00:00:00',0),(4456,0,0,3774,'2526','H','O',4146,'',0,'2025-11-20','0000-00-00',2717,0,2788,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 10:48:29','','0000-00-00 00:00:00',0),(4457,0,0,3775,'2526','H','O',4147,'',0,'2025-11-20','0000-00-00',2176,0,2231,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 10:48:47','','0000-00-00 00:00:00',0),(4458,0,0,3776,'2526','H','O',4148,'',0,'2025-11-20','0000-00-00',2718,0,2789,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','30757','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 10:54:03','','0000-00-00 00:00:00',0),(4459,0,0,3777,'2526','H','O',4149,'',0,'2025-11-20','0000-00-00',2719,0,2790,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 10:55:55','','0000-00-00 00:00:00',0),(4460,0,0,3778,'2526','H','O',4150,'',0,'2025-11-20','0000-00-00',2720,0,2791,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 10:57:10','','0000-00-00 00:00:00',0),(4461,0,0,3779,'2526','H','O',4151,'',0,'2025-11-20','0000-00-00',2721,0,2792,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 10:58:10','','0000-00-00 00:00:00',0),(4462,0,0,3762,'2526','H','O',4152,'',0,'2025-11-20','0000-00-00',2709,0,2778,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 10:58:22','','0000-00-00 00:00:00',0),(4463,0,0,3781,'2526','H','O',4153,'',0,'2025-11-20','0000-00-00',2723,0,2794,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 11:05:26','','0000-00-00 00:00:00',0),(4464,0,0,3783,'2526','H','O',4154,'',0,'2025-11-20','0000-00-00',1715,0,1759,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 11:07:08','','0000-00-00 00:00:00',0),(4465,0,0,3782,'2526','H','O',4155,'',0,'2025-11-20','0000-00-00',1913,0,1961,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','bob','','11772','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 11:07:36','','0000-00-00 00:00:00',0),(4466,0,0,3784,'2526','H','O',4156,'',0,'2025-11-20','0000-00-00',549,0,575,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 11:10:15','','0000-00-00 00:00:00',0),(4467,0,0,3781,'2526','H','O',4157,'',0,'2025-11-20','0000-00-00',2723,0,2794,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 11:13:05','','0000-00-00 00:00:00',0),(4468,0,0,3768,'2526','H','O',4158,'',0,'2025-11-20','0000-00-00',2713,0,2784,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','27786','','SCAN',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 11:13:51','','0000-00-00 00:00:00',0),(4469,0,0,3786,'2526','H','O',4159,'',0,'2025-11-20','0000-00-00',2724,0,2795,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 11:14:26','','0000-00-00 00:00:00',0),(4470,0,0,3785,'2526','H','O',4160,'',0,'2025-11-20','0000-00-00',2329,0,2385,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 11:15:43','','0000-00-00 00:00:00',0),(4471,0,0,3760,'2526','H','O',4161,'',0,'2025-11-20','0000-00-00',2707,0,2777,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 11:16:47','','0000-00-00 00:00:00',0),(4472,0,0,3787,'2526','H','O',4162,'',0,'2025-11-20','0000-00-00',2725,0,2796,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 11:20:23','','0000-00-00 00:00:00',0),(4473,0,0,3790,'2526','H','O',4163,'',0,'2025-11-20','0000-00-00',2728,0,2499,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 11:25:25','','0000-00-00 00:00:00',0),(4474,0,0,3641,'2526','H','D',165,'',0,'2025-11-21','0000-00-00',0,175,2705,0,'D02','',0,78570.00,0.00,0.00,78570.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',78570.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-20 11:28:16','vishal','2025-11-21 18:28:04',0),(4475,0,0,3767,'2526','H','O',4164,'',0,'2025-11-20','0000-00-00',2712,0,2783,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 11:31:04','','0000-00-00 00:00:00',0),(4476,0,0,3792,'2526','H','O',4165,'',0,'2025-11-20','0000-00-00',2286,0,2343,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 11:31:12','','0000-00-00 00:00:00',0),(4477,0,0,3793,'2526','H','O',4166,'',0,'2025-11-20','0000-00-00',2729,0,2799,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 11:33:32','','0000-00-00 00:00:00',0),(4478,0,0,3760,'2526','H','O',4167,'',0,'2025-11-20','0000-00-00',2707,0,2777,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 11:35:20','','0000-00-00 00:00:00',0),(4479,0,0,3623,'2526','H','D',166,'',0,'2025-11-20','0000-00-00',0,173,2693,0,'D02','',0,35000.00,0.00,0.00,35000.00,3000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25000,0,'0000-00-00','','N','N','F','N',7000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-20 11:35:28','riya','2025-11-20 12:07:05',0),(4480,0,0,3794,'2526','H','O',4168,'',0,'2025-11-20','0000-00-00',2730,0,2800,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 11:39:42','','0000-00-00 00:00:00',0),(4481,0,0,3769,'2526','H','O',4169,'',0,'2025-11-20','0000-00-00',2714,0,2785,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 11:40:01','','0000-00-00 00:00:00',0),(4482,0,0,3795,'2526','H','O',4170,'',0,'2025-11-20','0000-00-00',2731,0,2801,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 11:46:33','','0000-00-00 00:00:00',0),(4483,0,0,3796,'2526','H','O',4171,'',0,'2025-11-20','0000-00-00',2528,0,1616,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-20 11:47:40','','0000-00-00 00:00:00',0),(4484,0,0,3765,'2526','H','O',4172,'',0,'2025-11-20','0000-00-00',2710,0,2781,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-20 11:47:57','','0000-00-00 00:00:00',0),(4485,0,0,3798,'2526','H','O',4173,'',0,'2025-11-20','0000-00-00',2732,0,2802,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 11:54:27','','0000-00-00 00:00:00',0),(4486,0,0,3799,'2526','H','O',4174,'',0,'2025-11-20','0000-00-00',2733,0,2803,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 11:54:59','','0000-00-00 00:00:00',0),(4487,0,0,3801,'2526','H','O',4175,'',0,'2025-11-20','0000-00-00',2734,0,2804,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK BANK','','06080','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 12:00:05','','0000-00-00 00:00:00',0),(4488,0,0,3802,'2526','H','O',4176,'',0,'2025-11-20','0000-00-00',2735,0,2805,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 12:01:56','','0000-00-00 00:00:00',0),(4489,0,0,3803,'2526','H','O',4177,'',0,'2025-11-20','0000-00-00',2736,0,2806,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 12:07:30','','0000-00-00 00:00:00',0),(4490,0,0,3776,'2526','H','O',4178,'',0,'2025-11-20','0000-00-00',2718,0,2789,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','29327','','SCAN',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 12:10:02','','0000-00-00 00:00:00',0),(4491,0,0,3594,'2526','H','D',167,'',0,'2025-11-20','0000-00-00',0,169,2675,0,'D27','',0,11300.00,0.00,0.00,11300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',11300.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-20 12:12:22','riya','2025-11-20 12:29:25',0),(4492,0,0,3804,'2526','H','O',4179,'',0,'2025-11-20','0000-00-00',2737,0,2807,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 12:12:38','','0000-00-00 00:00:00',0),(4493,0,0,3805,'2526','H','O',4180,'',0,'2025-11-20','0000-00-00',2738,0,2808,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 12:13:02','','0000-00-00 00:00:00',0),(4494,0,0,3806,'2526','H','O',4181,'',0,'2025-11-20','0000-00-00',2739,0,2809,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 12:15:26','','0000-00-00 00:00:00',0),(4496,0,0,3807,'2526','H','O',4182,'',0,'2025-11-20','0000-00-00',2740,0,2810,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 12:22:48','','0000-00-00 00:00:00',0),(4497,0,0,3808,'2526','H','O',4183,'',0,'2025-11-20','0000-00-00',2741,0,2811,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 12:24:12','','0000-00-00 00:00:00',0),(4498,0,0,3809,'2526','H','O',4184,'',0,'2025-11-20','0000-00-00',2742,0,2812,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK BANK','','87114','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 12:26:54','','0000-00-00 00:00:00',0),(4499,0,0,3793,'2526','H','O',4185,'',0,'2025-11-20','0000-00-00',2729,0,2799,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 12:27:52','','0000-00-00 00:00:00',0),(4500,0,0,3810,'2526','H','O',4186,'',0,'2025-11-20','0000-00-00',1629,0,1674,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 12:27:58','','0000-00-00 00:00:00',0),(4501,0,0,3811,'2526','H','O',4187,'',0,'2025-11-20','0000-00-00',2743,0,2813,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 12:29:22','','0000-00-00 00:00:00',0),(4502,0,0,3812,'2526','H','O',4188,'',0,'2025-11-20','0000-00-00',1287,0,1326,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 12:29:43','','0000-00-00 00:00:00',0),(4503,0,0,3800,'2526','H','O',4189,'',0,'2025-11-20','0000-00-00',615,0,645,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 12:30:15','','0000-00-00 00:00:00',0),(4504,0,0,3813,'2526','H','O',4190,'',0,'2025-11-20','0000-00-00',2142,0,2193,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-20 12:31:27','','0000-00-00 00:00:00',0),(4505,0,0,3771,'2526','H','O',4191,'',0,'2025-11-20','0000-00-00',2715,0,2786,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 12:32:10','','0000-00-00 00:00:00',0),(4506,0,0,3591,'2526','H','D',169,'',0,'2025-11-20','0000-00-00',0,168,2673,0,'D27','',0,22800.00,0.00,0.00,22800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',7800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-20 12:37:18','riya','2025-11-20 13:20:54',0),(4507,0,0,3814,'2526','H','O',4192,'',0,'2025-11-20','0000-00-00',373,0,391,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 12:38:53','','0000-00-00 00:00:00',0),(4508,0,0,3817,'2526','H','O',4193,'',0,'2025-11-20','0000-00-00',191,0,204,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 12:44:03','','0000-00-00 00:00:00',0),(4509,0,0,3816,'2526','H','O',4194,'',0,'2025-11-20','0000-00-00',2182,0,2237,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 12:44:03','','0000-00-00 00:00:00',0),(4510,0,0,2811,'2526','H','I',147,'',0,'2025-11-20','0000-00-00',0,143,2201,0,'D27','',0,172800.00,0.00,0.00,172800.00,7800.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-165000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(4511,0,0,3818,'2526','H','O',4195,'',0,'2025-11-20','0000-00-00',2079,0,2133,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 12:59:20','','0000-00-00 00:00:00',0),(4512,0,0,3801,'2526','H','O',4196,'',0,'2025-11-20','0000-00-00',2734,0,2804,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK BANK','','13630','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-20 13:04:34','','0000-00-00 00:00:00',0),(4513,0,0,3807,'2526','H','O',4197,'',0,'2025-11-20','0000-00-00',2740,0,2810,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 13:06:41','','0000-00-00 00:00:00',0),(4514,0,0,3468,'2526','H','D',170,'',0,'2025-11-20','0000-00-00',0,161,2607,0,'D27','',0,43050.00,0.00,0.00,43050.00,8310.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25000,0,'0000-00-00','','N','N','F','N',9740.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-20 13:08:43','riya','2025-11-20 13:17:02',0),(4515,0,0,3819,'2526','H','O',4198,'',0,'2025-11-20','0000-00-00',1589,0,1633,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 13:12:51','','0000-00-00 00:00:00',0),(4516,0,0,3594,'2526','H','I',148,'',0,'2025-11-20','0000-00-00',0,169,2675,0,'D27','',0,11300.00,0.00,0.00,11300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-11300,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-20 13:29:52','','0000-00-00 00:00:00',0),(4517,0,0,3623,'2526','H','I',149,'',0,'2025-11-20','0000-00-00',0,173,2693,0,'D02','',0,35000.00,0.00,0.00,35000.00,3000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-32000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-20 13:32:28','','0000-00-00 00:00:00',0),(4518,0,0,3591,'2526','H','I',150,'',0,'2025-11-20','0000-00-00',0,168,2673,0,'D27','',0,22800.00,0.00,0.00,22800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-22800,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(4519,0,0,3804,'2526','H','O',4199,'',0,'2025-11-20','0000-00-00',2737,0,2807,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 13:36:36','','0000-00-00 00:00:00',0),(4520,0,0,3756,'2526','H','O',4200,'',0,'2025-11-20','0000-00-00',2705,0,2774,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-20 13:38:03','','0000-00-00 00:00:00',0),(4521,0,0,3468,'2526','H','I',151,'',0,'2025-11-20','0000-00-00',0,161,2607,0,'D27','',0,43050.00,0.00,0.00,43050.00,8310.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-34740,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(4522,0,0,3818,'2526','H','O',4201,'',0,'2025-11-20','0000-00-00',2079,0,2133,0,'D06','',0,4900.00,0.00,0.00,4900.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','icici','','17874','','SCAN',3900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 13:50:56','','0000-00-00 00:00:00',0),(4523,0,0,3566,'2526','H','D',171,'',0,'2025-11-20','0000-00-00',0,167,2660,0,'D02','',0,81670.00,0.00,0.00,81670.00,4670.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-50000,0,'0000-00-00','','N','N','F','N',27000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-20 14:08:32','riya','2025-11-20 15:06:17',0),(4524,0,0,3566,'2526','H','I',152,'',0,'2025-11-20','0000-00-00',0,167,2660,0,'D02','',0,81670.00,0.00,0.00,81670.00,4670.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-77000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(4525,0,0,3820,'2526','H','O',4202,'',0,'2025-11-20','0000-00-00',2744,0,2814,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','48520','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-20 16:33:45','','0000-00-00 00:00:00',0),(4526,0,0,3821,'2526','H','O',4203,'',0,'2025-11-20','0000-00-00',2716,0,2787,0,'D06','',0,4500.00,0.00,0.00,4500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-20 16:38:43','','0000-00-00 00:00:00',0),(4527,0,0,3822,'2526','H','O',4204,'',0,'2025-11-20','0000-00-00',2745,0,2815,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-20 16:47:52','','0000-00-00 00:00:00',0),(4528,0,0,3823,'2526','H','O',4205,'',0,'2025-11-20','0000-00-00',2746,0,2816,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 16:52:24','','0000-00-00 00:00:00',0),(4529,0,0,3824,'2526','H','O',4206,'',0,'2025-11-20','0000-00-00',2747,0,2817,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 16:54:51','','0000-00-00 00:00:00',0),(4530,0,0,3826,'2526','H','O',4207,'',0,'2025-11-20','0000-00-00',2748,0,2818,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 17:16:01','','0000-00-00 00:00:00',0),(4531,0,0,3825,'2526','H','O',4208,'',0,'2025-11-20','0000-00-00',2005,0,2056,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 17:16:02','','0000-00-00 00:00:00',0),(4532,0,0,3827,'2526','H','O',4209,'',0,'2025-11-20','0000-00-00',2749,0,2819,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 17:18:28','','0000-00-00 00:00:00',0),(4533,0,0,3828,'2526','H','O',4210,'',0,'2025-11-20','0000-00-00',2136,0,2187,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 17:21:03','','0000-00-00 00:00:00',0),(4534,0,0,3829,'2526','H','O',4211,'',0,'2025-11-20','0000-00-00',1346,0,1386,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','63438','','scan',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 4230','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 17:24:57','reception','2025-11-20 18:29:50',0),(4535,0,0,3823,'2526','H','O',4212,'',0,'2025-11-20','0000-00-00',2746,0,2816,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 17:26:46','','0000-00-00 00:00:00',0),(4536,0,0,3830,'2526','H','O',4213,'',0,'2025-11-20','0000-00-00',2750,0,2820,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-20 17:28:07','','0000-00-00 00:00:00',0),(4537,0,0,3831,'2526','H','O',4214,'',0,'2025-11-20','0000-00-00',2751,0,2821,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 17:33:25','','0000-00-00 00:00:00',0),(4538,0,0,3832,'2526','H','O',4215,'',0,'2025-11-20','0000-00-00',2752,0,2822,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 17:39:59','','0000-00-00 00:00:00',0),(4539,0,0,3820,'2526','H','O',4216,'',0,'2025-11-20','0000-00-00',2744,0,2814,0,'D06','',0,4900.00,0.00,0.00,4900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','93536','','scan',4900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 17:43:25','','0000-00-00 00:00:00',0),(4540,0,0,3833,'2526','H','O',4217,'',0,'2025-11-20','0000-00-00',2753,0,2823,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 17:45:50','','0000-00-00 00:00:00',0),(4541,0,0,3834,'2526','H','O',4218,'',0,'2025-11-20','0000-00-00',1597,0,1642,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 17:46:50','','0000-00-00 00:00:00',0),(4542,0,0,3835,'2526','H','O',4219,'',0,'2025-11-20','0000-00-00',2754,0,2824,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 17:47:54','','0000-00-00 00:00:00',0),(4543,0,0,3826,'2526','H','O',4220,'',0,'2025-11-20','0000-00-00',2748,0,2818,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 17:56:04','','0000-00-00 00:00:00',0),(4544,0,0,3837,'2526','H','O',4221,'',0,'2025-11-20','0000-00-00',2755,0,2825,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','39767','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 18:05:09','','0000-00-00 00:00:00',0),(4545,0,0,3839,'2526','H','O',4222,'',0,'2025-11-20','0000-00-00',2756,0,2826,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 18:12:08','','0000-00-00 00:00:00',0),(4546,0,0,3840,'2526','H','O',4223,'',0,'2025-11-20','0000-00-00',2757,0,2827,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','ICICI','','75719','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-20 18:16:59','','0000-00-00 00:00:00',0),(4547,0,0,3832,'2526','H','O',4224,'',0,'2025-11-20','0000-00-00',2752,0,2822,0,'D06','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','co operative ','','32377','','scan',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 18:18:20','','0000-00-00 00:00:00',0),(4548,0,0,3841,'2526','H','O',4225,'',0,'2025-11-20','0000-00-00',390,0,412,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 18:19:49','','0000-00-00 00:00:00',0),(4549,0,0,3842,'2526','H','O',4226,'',0,'2025-11-20','0000-00-00',984,0,1016,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 18:20:52','','0000-00-00 00:00:00',0),(4550,0,0,3843,'2526','H','O',4227,'',0,'2025-11-20','0000-00-00',1362,0,1402,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','70693','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 18:26:16','','0000-00-00 00:00:00',0),(4551,0,0,3836,'2526','H','O',4228,'',0,'2025-11-20','0000-00-00',1976,0,2024,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 18:27:00','','0000-00-00 00:00:00',0),(4552,0,0,3837,'2526','H','O',4229,'',0,'2025-11-20','0000-00-00',2755,0,2825,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 18:28:26','','0000-00-00 00:00:00',0),(4553,0,0,3829,'2526','H','O',4230,'',0,'2025-11-20','0000-00-00',1346,0,1386,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','sbi','','63438','','SCAN',-500.00,0,0,'2025-11-20','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 4211','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 18:29:50','reception','2025-11-20 18:30:44',0),(4554,0,0,3845,'2526','H','O',4231,'',0,'2025-11-20','0000-00-00',2758,0,2828,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 18:32:41','','0000-00-00 00:00:00',0),(4555,0,0,3829,'2526','H','O',4232,'',0,'2025-11-20','0000-00-00',1346,0,1386,0,'D06','',0,500.00,0.00,0.00,500.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','63438','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 18:33:01','','0000-00-00 00:00:00',0),(4556,0,0,3844,'2526','H','O',4233,'',0,'2025-11-20','0000-00-00',832,0,863,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 18:36:32','','0000-00-00 00:00:00',0),(4557,0,0,3846,'2526','H','O',4234,'',0,'2025-11-20','0000-00-00',2759,0,2829,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 18:38:18','','0000-00-00 00:00:00',0),(4558,0,0,3830,'2526','H','O',4235,'',0,'2025-11-20','0000-00-00',2750,0,2820,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-20 18:38:21','','0000-00-00 00:00:00',0),(4559,0,0,3847,'2526','H','O',4236,'',0,'2025-11-20','0000-00-00',2118,0,1763,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 18:39:22','','0000-00-00 00:00:00',0),(4560,0,0,3848,'2526','H','O',4237,'',0,'2025-11-20','0000-00-00',2574,0,2635,0,'D14','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-20 18:40:48','','0000-00-00 00:00:00',0),(4561,0,0,3850,'2526','H','O',4238,'',0,'2025-11-20','0000-00-00',2760,0,2830,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 18:44:27','','0000-00-00 00:00:00',0),(4562,0,0,3851,'2526','H','O',4239,'',0,'2025-11-20','0000-00-00',221,0,234,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 18:50:59','','0000-00-00 00:00:00',0),(4563,0,0,3852,'2526','H','O',4240,'',0,'2025-11-20','0000-00-00',2761,0,2831,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 18:56:43','','0000-00-00 00:00:00',0),(4564,0,0,3759,'2526','H','D',172,'',0,'2025-11-20','0000-00-00',0,176,2776,0,'D02','',0,20000.00,0.00,0.00,20000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-20 19:12:02','vishal','2025-11-20 19:13:15',0),(4565,0,0,3759,'2526','H','I',153,'',0,'2025-11-20','0000-00-00',0,176,2776,0,'D02','',0,20000.00,0.00,0.00,20000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-20 19:13:30','','0000-00-00 00:00:00',0),(4566,0,0,3855,'2526','H','O',4241,'',0,'2025-11-20','0000-00-00',1314,0,1353,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-20 19:17:36','','0000-00-00 00:00:00',0),(4567,0,0,3856,'2526','H','O',4242,'',0,'2025-11-20','0000-00-00',900,0,926,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-20 19:20:01','','0000-00-00 00:00:00',0),(4568,0,0,3853,'2526','H','O',4243,'',0,'2025-11-20','0000-00-00',2762,0,2832,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','606295','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-20 19:20:44','','0000-00-00 00:00:00',0),(4569,0,0,3857,'2526','H','O',4244,'',0,'2025-11-20','0000-00-00',2033,0,2087,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 19:23:08','','0000-00-00 00:00:00',0),(4570,0,0,3858,'2526','H','O',4245,'',0,'2025-11-20','0000-00-00',1317,0,1356,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 19:27:00','','0000-00-00 00:00:00',0),(4571,0,0,3853,'2526','H','O',4246,'',0,'2025-11-20','0000-00-00',2762,0,2832,0,'D14','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-20 19:32:48','','0000-00-00 00:00:00',0),(4572,0,0,3854,'2526','H','O',4247,'',0,'2025-11-20','0000-00-00',1837,0,1883,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','14489','','scan                          ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 19:36:24','','0000-00-00 00:00:00',0),(4573,0,0,3859,'2526','H','O',4248,'',0,'2025-11-20','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','79895','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-20 19:53:39','','0000-00-00 00:00:00',0),(4574,0,0,3761,'2526','H','O',4249,'',0,'2025-11-20','0000-00-00',2708,0,2651,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 20:43:17','','0000-00-00 00:00:00',0),(4575,0,0,3860,'2526','H','O',4250,'',0,'2025-11-20','0000-00-00',2763,0,2833,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','axis bank','','63462','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-20 20:49:15','','0000-00-00 00:00:00',0),(4576,0,0,3474,'2526','H','D',173,'',0,'2025-11-20','0000-00-00',0,164,2612,0,'D27','',0,49900.00,0.00,0.00,49900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-45000,0,'0000-00-00','','N','N','F','N',4900.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(4577,0,0,3474,'2526','H','I',154,'',0,'2025-11-20','0000-00-00',0,164,2612,0,'D27','',0,49900.00,0.00,0.00,49900.00,3900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-46000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(4578,0,0,3863,'2526','H','O',4251,'',0,'2025-11-21','0000-00-00',2765,0,2835,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-21 09:00:17','','0000-00-00 00:00:00',0),(4579,0,0,3862,'2526','H','O',4252,'',0,'2025-11-21','0000-00-00',2764,0,2241,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-21 09:00:55','','0000-00-00 00:00:00',0),(4580,0,0,3864,'2526','H','O',4253,'',0,'2025-11-21','0000-00-00',2708,0,2651,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-21 09:02:09','','0000-00-00 00:00:00',0),(4581,0,0,3865,'2526','H','O',4254,'',0,'2025-11-21','0000-00-00',1896,0,1944,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-21 09:27:20','','0000-00-00 00:00:00',0),(4582,0,0,3866,'2526','H','O',4255,'',0,'2025-11-21','0000-00-00',1012,0,1045,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-21 09:39:35','','0000-00-00 00:00:00',0),(4583,0,0,3867,'2526','H','O',4256,'',0,'2025-11-21','0000-00-00',2766,0,2836,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','83123','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 09:44:09','','0000-00-00 00:00:00',0),(4584,0,0,3870,'2526','H','O',4257,'',0,'2025-11-21','0000-00-00',2769,0,2838,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-21 10:04:58','','0000-00-00 00:00:00',0),(4585,0,0,3871,'2526','H','O',4258,'',0,'2025-11-21','0000-00-00',2770,0,2839,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 10:07:46','','0000-00-00 00:00:00',0),(4586,0,0,3873,'2526','H','O',4259,'',0,'2025-11-21','0000-00-00',2771,0,2840,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 10:17:53','','0000-00-00 00:00:00',0),(4587,0,0,3874,'2526','H','O',4260,'',0,'2025-11-21','0000-00-00',2772,0,2841,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 10:30:51','','0000-00-00 00:00:00',0),(4588,0,0,3869,'2526','H','O',4261,'',0,'2025-11-21','0000-00-00',2768,0,2837,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-21 10:31:38','','0000-00-00 00:00:00',0),(4589,0,0,3875,'2526','H','O',4262,'',0,'2025-11-21','0000-00-00',2773,0,2842,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 10:32:24','','0000-00-00 00:00:00',0),(4590,0,0,3876,'2526','H','O',4263,'',0,'2025-11-21','0000-00-00',2367,0,2422,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-21 10:39:00','','0000-00-00 00:00:00',0),(4591,0,0,3877,'2526','H','O',4264,'',0,'2025-11-21','0000-00-00',2774,0,2843,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 10:39:06','','0000-00-00 00:00:00',0),(4592,0,0,3878,'2526','H','O',4265,'',0,'2025-11-21','0000-00-00',2775,0,2844,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 10:40:08','','0000-00-00 00:00:00',0),(4593,0,0,3868,'2526','H','O',4266,'',0,'2025-11-21','0000-00-00',2767,0,2504,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-21 10:45:40','','0000-00-00 00:00:00',0),(4594,0,0,3880,'2526','H','O',4267,'',0,'2025-11-21','0000-00-00',2777,0,2846,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 10:55:09','','0000-00-00 00:00:00',0),(4595,0,0,3879,'2526','H','O',4268,'',0,'2025-11-21','0000-00-00',2776,0,2845,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 10:55:19','','0000-00-00 00:00:00',0),(4596,0,0,3881,'2526','H','O',4269,'',0,'2025-11-21','0000-00-00',746,0,777,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 10:57:06','','0000-00-00 00:00:00',0),(4597,0,0,3882,'2526','H','O',4270,'',0,'2025-11-21','0000-00-00',1921,0,1969,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 11:04:26','','0000-00-00 00:00:00',0),(4598,0,0,3883,'2526','H','O',4271,'',0,'2025-11-21','0000-00-00',2778,0,2847,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','26130','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-21 11:12:04','','0000-00-00 00:00:00',0),(4599,0,0,3884,'2526','H','O',4272,'',0,'2025-11-21','0000-00-00',2779,0,2848,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 11:13:17','','0000-00-00 00:00:00',0),(4600,0,0,3885,'2526','H','O',4273,'',0,'2025-11-21','0000-00-00',2247,0,2304,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 11:14:05','','0000-00-00 00:00:00',0),(4601,0,0,3874,'2526','H','O',4274,'',0,'2025-11-21','0000-00-00',2772,0,2841,0,'D06','',0,4900.00,0.00,0.00,4900.00,900.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','83499','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 11:21:14','','0000-00-00 00:00:00',0),(4602,0,0,3886,'2526','H','O',4275,'',0,'2025-11-21','0000-00-00',2780,0,2849,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 11:21:34','','0000-00-00 00:00:00',0),(4603,0,0,3887,'2526','H','O',4276,'',0,'2025-11-21','0000-00-00',2781,0,2850,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-21 11:25:11','','0000-00-00 00:00:00',0),(4604,0,0,3888,'2526','H','O',4277,'',0,'2025-11-21','0000-00-00',2782,0,2851,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 11:31:36','','0000-00-00 00:00:00',0),(4605,0,0,3890,'2526','H','O',4278,'',0,'2025-11-21','0000-00-00',2784,0,2853,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 11:35:16','','0000-00-00 00:00:00',0),(4606,0,0,3889,'2526','H','O',4279,'',0,'2025-11-21','0000-00-00',2783,0,2852,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 11:35:57','','0000-00-00 00:00:00',0),(4607,0,0,3891,'2526','H','O',4280,'',0,'2025-11-21','0000-00-00',1928,0,1976,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','17012','','SCAN',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-21 11:43:25','','0000-00-00 00:00:00',0),(4608,0,0,3878,'2526','H','O',4281,'',0,'2025-11-21','0000-00-00',2775,0,2844,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','01498','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 11:45:14','','0000-00-00 00:00:00',0),(4609,0,0,3892,'2526','H','O',4282,'',0,'2025-11-21','0000-00-00',2785,0,2854,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 11:45:46','','0000-00-00 00:00:00',0),(4610,0,0,3595,'2526','H','I',155,'',0,'2025-11-21','0000-00-00',0,170,2676,0,'D27','',0,-6000.00,0.00,0.00,-6000.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',0.00,'','Y','NAME SPELLING CHANGE','','HI 146','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-21 11:45:46','','0000-00-00 00:00:00',0),(4611,0,0,3879,'2526','H','O',4283,'',0,'2025-11-21','0000-00-00',2776,0,2845,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 11:47:21','','0000-00-00 00:00:00',0),(4612,0,0,3893,'2526','H','O',4284,'',0,'2025-11-21','0000-00-00',2786,0,2855,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 11:48:49','','0000-00-00 00:00:00',0),(4613,0,0,3595,'2526','H','D',174,'',0,'2025-11-21','0000-00-00',0,170,2676,0,'D27','',0,6000.00,0.00,0.00,6000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-21 11:51:05','vishal','2025-11-21 11:55:28',0),(4614,0,0,3894,'2526','H','O',4285,'',0,'2025-11-21','0000-00-00',2787,0,2506,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 11:53:10','','0000-00-00 00:00:00',0),(4615,0,0,3595,'2526','H','I',156,'',0,'2025-11-21','0000-00-00',0,170,2676,0,'D27','',0,6000.00,0.00,0.00,6000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-21 11:56:17','','0000-00-00 00:00:00',0),(4616,0,0,3895,'2526','H','O',4286,'',0,'2025-11-21','0000-00-00',1234,0,1275,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 11:57:41','','0000-00-00 00:00:00',0),(4617,0,0,3896,'2526','H','O',4287,'',0,'2025-11-21','0000-00-00',2788,0,2856,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 12:03:55','','0000-00-00 00:00:00',0),(4618,0,0,3872,'2526','H','O',4288,'',0,'2025-11-21','0000-00-00',1795,0,1840,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-21 12:04:29','','0000-00-00 00:00:00',0),(4619,0,0,3888,'2526','H','O',4289,'',0,'2025-11-21','0000-00-00',2782,0,2851,0,'D06','',0,6900.00,0.00,0.00,6900.00,1900.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','53575','','SCAN',5000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 12:05:02','','0000-00-00 00:00:00',0),(4620,0,0,3897,'2526','H','O',4290,'',0,'2025-11-21','0000-00-00',1731,0,1775,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 12:05:54','','0000-00-00 00:00:00',0),(4621,0,0,3862,'2526','H','O',4291,'',0,'2025-11-21','0000-00-00',2764,0,2241,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 12:11:08','','0000-00-00 00:00:00',0),(4622,0,0,3898,'2526','H','O',4292,'',0,'2025-11-21','0000-00-00',2789,0,2857,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 12:12:04','','0000-00-00 00:00:00',0),(4623,0,0,3872,'2526','H','O',4293,'',0,'2025-11-21','0000-00-00',1795,0,1840,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-21 12:13:46','','0000-00-00 00:00:00',0),(4624,0,0,3899,'2526','H','O',4294,'',0,'2025-11-21','0000-00-00',2790,0,2858,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 12:13:59','','0000-00-00 00:00:00',0),(4625,0,0,3900,'2526','H','O',4295,'',0,'2025-11-21','0000-00-00',2791,0,2859,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 12:22:21','','0000-00-00 00:00:00',0),(4626,0,0,3901,'2526','H','O',4296,'',0,'2025-11-21','0000-00-00',1028,0,1062,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 12:28:49','','0000-00-00 00:00:00',0),(4627,0,0,3903,'2526','H','O',4297,'',0,'2025-11-21','0000-00-00',2792,0,2861,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 12:32:10','','0000-00-00 00:00:00',0),(4628,0,0,3904,'2526','H','O',4298,'',0,'2025-11-21','0000-00-00',2793,0,2862,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 12:37:32','','0000-00-00 00:00:00',0),(4629,0,0,3905,'2526','H','O',4299,'',0,'2025-11-21','0000-00-00',2794,0,2863,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 12:46:47','','0000-00-00 00:00:00',0),(4630,0,0,3903,'2526','H','O',4300,'',0,'2025-11-21','0000-00-00',2792,0,2861,0,'D06','',0,5200.00,0.00,0.00,5200.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 12:59:52','','0000-00-00 00:00:00',0),(4631,0,0,3906,'2526','H','O',4301,'',0,'2025-11-21','0000-00-00',2795,0,2864,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-21 13:03:12','','0000-00-00 00:00:00',0),(4632,0,0,3907,'2526','H','O',4302,'',0,'2025-11-21','0000-00-00',2796,0,2865,0,'D02','',0,1000.00,0.00,0.00,1000.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','69891','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-21 13:14:08','','0000-00-00 00:00:00',0),(4633,0,0,3906,'2526','H','O',4303,'',0,'2025-11-21','0000-00-00',2795,0,2864,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 13:34:03','','0000-00-00 00:00:00',0),(4634,0,0,3863,'2526','H','O',4304,'',0,'2025-11-21','0000-00-00',2765,0,2835,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 13:41:38','','0000-00-00 00:00:00',0),(4635,0,0,3908,'2526','H','O',4305,'',0,'2025-11-21','0000-00-00',1585,0,1629,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','induslnd bank','','93972','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-21 14:10:54','','0000-00-00 00:00:00',0),(4636,0,0,3916,'2526','H','O',4306,'',0,'2025-11-21','0000-00-00',2802,0,2871,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-21 16:51:49','','0000-00-00 00:00:00',0),(4637,0,0,3915,'2526','H','O',4307,'',0,'2025-11-21','0000-00-00',2801,0,2871,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-21 16:51:55','','0000-00-00 00:00:00',0),(4638,0,0,3917,'2526','H','O',4308,'',0,'2025-11-21','0000-00-00',2803,0,2872,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 17:08:14','','0000-00-00 00:00:00',0),(4639,0,0,3918,'2526','H','O',4309,'',0,'2025-11-21','0000-00-00',2804,0,2873,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 17:10:28','','0000-00-00 00:00:00',0),(4640,0,0,3920,'2526','H','O',4310,'',0,'2025-11-21','0000-00-00',2805,0,2874,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 17:22:45','','0000-00-00 00:00:00',0),(4641,0,0,3917,'2526','H','O',4311,'',0,'2025-11-21','0000-00-00',2803,0,2872,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 17:32:01','','0000-00-00 00:00:00',0),(4642,0,0,3921,'2526','H','O',4312,'',0,'2025-11-21','0000-00-00',2806,0,2875,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 17:35:42','','0000-00-00 00:00:00',0),(4643,0,0,3922,'2526','H','O',4313,'',0,'2025-11-21','0000-00-00',1422,0,1463,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 17:41:50','','0000-00-00 00:00:00',0),(4644,0,0,3923,'2526','H','O',4314,'',0,'2025-11-21','0000-00-00',2807,0,2876,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-21 17:42:29','','0000-00-00 00:00:00',0),(4645,0,0,3924,'2526','H','O',4315,'',0,'2025-11-21','0000-00-00',2192,0,2249,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SIB','','98505','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-21 17:48:34','','0000-00-00 00:00:00',0),(4646,0,0,3925,'2526','H','O',4316,'',0,'2025-11-21','0000-00-00',2198,0,2254,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','66466','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-21 17:51:05','','0000-00-00 00:00:00',0),(4647,0,0,3927,'2526','H','O',4317,'',0,'2025-11-21','0000-00-00',2257,0,2314,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','93672','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 17:56:00','','0000-00-00 00:00:00',0),(4648,0,0,3926,'2526','H','O',4318,'',0,'2025-11-21','0000-00-00',2808,0,2877,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','09101','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 17:56:28','','0000-00-00 00:00:00',0),(4649,0,0,3928,'2526','H','O',4319,'',0,'2025-11-21','0000-00-00',2809,0,2878,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 17:57:43','','0000-00-00 00:00:00',0),(4650,0,0,3929,'2526','H','O',4320,'',0,'2025-11-21','0000-00-00',2810,0,2879,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 18:04:15','','0000-00-00 00:00:00',0),(4651,0,0,3930,'2526','H','O',4321,'',0,'2025-11-21','0000-00-00',2519,0,2577,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-21 18:05:08','','0000-00-00 00:00:00',0),(4652,0,0,3931,'2526','H','O',4322,'',0,'2025-11-21','0000-00-00',871,0,903,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 18:05:52','','0000-00-00 00:00:00',0),(4653,0,0,3933,'2526','H','O',4323,'',0,'2025-11-21','0000-00-00',2811,0,2880,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 18:08:56','','0000-00-00 00:00:00',0),(4654,0,0,3934,'2526','H','O',4324,'',0,'2025-11-21','0000-00-00',2360,0,2415,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-21 18:10:14','','0000-00-00 00:00:00',0),(4655,0,0,3935,'2526','H','O',4325,'',0,'2025-11-21','0000-00-00',665,0,695,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 18:11:39','','0000-00-00 00:00:00',0),(4656,0,0,3936,'2526','H','O',4326,'',0,'2025-11-21','0000-00-00',2812,0,2881,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 18:20:02','','0000-00-00 00:00:00',0),(4657,0,0,3929,'2526','H','O',4327,'',0,'2025-11-21','0000-00-00',2810,0,2879,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Pending',0,'','CSH','','','','','',3500.00,0,0,'2025-11-21','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 18:31:44','urvashi','2025-11-21 19:35:12',0),(4658,0,0,3938,'2526','H','O',4328,'',0,'2025-11-21','0000-00-00',2513,0,2570,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 18:34:52','','0000-00-00 00:00:00',0),(4659,0,0,3939,'2526','H','O',4329,'',0,'2025-11-21','0000-00-00',2814,0,2883,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 18:35:56','','0000-00-00 00:00:00',0),(4660,0,0,3940,'2526','H','O',4330,'',0,'2025-11-21','0000-00-00',2199,0,2255,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 18:36:57','','0000-00-00 00:00:00',0),(4661,0,0,3763,'2526','H','D',175,'',0,'2025-11-21','0000-00-00',0,177,2779,0,'D27','',0,18300.00,0.00,0.00,18300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',3300.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-21 18:40:02','vishal','2025-11-21 19:42:57',0),(4662,0,0,3941,'2526','H','O',4331,'',0,'2025-11-21','0000-00-00',2815,0,2884,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','rnsb','','60656','','scan  ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-21 18:41:05','','0000-00-00 00:00:00',0),(4663,0,0,3943,'2526','H','O',4332,'',0,'2025-11-21','0000-00-00',2816,0,2885,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','26250','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 18:45:44','','0000-00-00 00:00:00',0),(4664,0,0,3936,'2526','H','O',4333,'',0,'2025-11-21','0000-00-00',2812,0,2881,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 18:48:07','','0000-00-00 00:00:00',0),(4665,0,0,3944,'2526','H','O',4334,'',0,'2025-11-21','0000-00-00',1085,0,714,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 18:50:47','','0000-00-00 00:00:00',0),(4666,0,0,3945,'2526','H','O',4335,'',0,'2025-11-21','0000-00-00',2817,0,2886,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-21 18:54:18','','0000-00-00 00:00:00',0),(4667,0,0,3946,'2526','H','O',4336,'',0,'2025-11-21','0000-00-00',2818,0,2887,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 18:55:01','','0000-00-00 00:00:00',0),(4668,0,0,3947,'2526','H','O',4337,'',0,'2025-11-21','0000-00-00',2268,0,2325,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','24637','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 18:57:12','','0000-00-00 00:00:00',0),(4669,0,0,3948,'2526','H','O',4338,'',0,'2025-11-21','0000-00-00',2819,0,2888,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 4339','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 19:03:02','drashti','2025-11-21 19:05:34',0),(4670,0,0,3948,'2526','H','O',4339,'',0,'2025-11-21','0000-00-00',2819,0,2888,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-11-21','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 4338','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 19:05:34','drashti','2025-11-21 19:05:54',0),(4671,0,0,3949,'2526','H','O',4340,'',0,'2025-11-21','0000-00-00',2820,0,2889,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-21 19:29:36','','0000-00-00 00:00:00',0),(4672,0,0,3950,'2526','H','O',4341,'',0,'2025-11-21','0000-00-00',2821,0,2890,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-21 19:41:49','','0000-00-00 00:00:00',0),(4673,0,0,3763,'2526','H','I',157,'',0,'2025-11-21','0000-00-00',0,177,2779,0,'D27','',0,18300.00,0.00,0.00,18300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-18300,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-21 19:47:04','','0000-00-00 00:00:00',0),(4674,0,0,3946,'2526','H','O',4342,'',0,'2025-11-21','0000-00-00',2818,0,2887,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 20:20:52','','0000-00-00 00:00:00',0),(4675,0,0,3951,'2526','H','O',4343,'',0,'2025-11-21','0000-00-00',2708,0,2651,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','75244','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-21 20:30:47','','0000-00-00 00:00:00',0),(4676,0,0,3952,'2526','H','O',4344,'',0,'2025-11-22','0000-00-00',2822,0,2891,0,'D27','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','nagrik bank','','18325','','SCAN',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 09:15:17','','0000-00-00 00:00:00',0),(4677,0,0,3953,'2526','H','O',4345,'',0,'2025-11-22','0000-00-00',2823,0,2892,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 09:23:47','','0000-00-00 00:00:00',0),(4678,0,0,3955,'2526','H','O',4346,'',0,'2025-11-22','0000-00-00',706,0,737,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 09:50:44','','0000-00-00 00:00:00',0),(4679,0,0,3956,'2526','H','O',4347,'',0,'2025-11-22','0000-00-00',2824,0,2894,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-22 09:51:33','','0000-00-00 00:00:00',0),(4680,0,0,3957,'2526','H','O',4348,'',0,'2025-11-22','0000-00-00',2825,0,2895,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','19661','','SCAN',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 10:02:56','','0000-00-00 00:00:00',0),(4681,0,0,3958,'2526','H','O',4349,'',0,'2025-11-22','0000-00-00',2826,0,2896,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','57449','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 10:05:29','','0000-00-00 00:00:00',0),(4682,0,0,3960,'2526','H','O',4350,'',0,'2025-11-22','0000-00-00',2827,0,2898,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-22 10:16:34','','0000-00-00 00:00:00',0),(4683,0,0,3963,'2526','H','O',4351,'',0,'2025-11-22','0000-00-00',2828,0,2900,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-22 10:35:47','','0000-00-00 00:00:00',0),(4684,0,0,3965,'2526','H','O',4352,'',0,'2025-11-22','0000-00-00',2830,0,2902,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 10:37:42','','0000-00-00 00:00:00',0),(4685,0,0,3966,'2526','H','O',4353,'',0,'2025-11-22','0000-00-00',2831,0,2903,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','45771','','SCAN',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 10:40:16','','0000-00-00 00:00:00',0),(4686,0,0,3964,'2526','H','O',4354,'',0,'2025-11-22','0000-00-00',2829,0,2901,0,'D03','',0,1700.00,0.00,0.00,1700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','federal bank','','30309','','SCAN',1700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-22 10:40:18','','0000-00-00 00:00:00',0),(4687,0,0,3967,'2526','H','O',4355,'',0,'2025-11-22','0000-00-00',2832,0,2904,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 10:48:39','','0000-00-00 00:00:00',0),(4688,0,0,3968,'2526','H','O',4356,'',0,'2025-11-22','0000-00-00',2833,0,2905,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','53534','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-22 10:57:02','','0000-00-00 00:00:00',0),(4689,0,0,3969,'2526','H','O',4357,'',0,'2025-11-22','0000-00-00',2834,0,2906,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 10:57:36','','0000-00-00 00:00:00',0),(4690,0,0,3970,'2526','H','O',4358,'',0,'2025-11-22','0000-00-00',2835,0,2907,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 10:59:46','','0000-00-00 00:00:00',0),(4691,0,0,3972,'2526','H','O',4359,'',0,'2025-11-22','0000-00-00',2836,0,2908,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 11:04:46','','0000-00-00 00:00:00',0),(4692,0,0,3971,'2526','H','O',4360,'',0,'2025-11-22','0000-00-00',2708,0,2651,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','34028','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-22 11:05:27','','0000-00-00 00:00:00',0),(4693,0,0,3973,'2526','H','O',4361,'',0,'2025-11-22','0000-00-00',2818,0,2887,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-22 11:16:15','','0000-00-00 00:00:00',0),(4694,0,0,3974,'2526','H','O',4362,'',0,'2025-11-22','0000-00-00',2837,0,2909,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 11:18:15','','0000-00-00 00:00:00',0),(4695,0,0,3961,'2526','H','O',4363,'',0,'2025-11-22','0000-00-00',2290,0,2347,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 11:23:50','','0000-00-00 00:00:00',0),(4696,0,0,3966,'2526','H','O',4364,'',0,'2025-11-22','0000-00-00',2831,0,2903,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','43476','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 11:26:11','','0000-00-00 00:00:00',0),(4697,0,0,3975,'2526','H','O',4365,'',0,'2025-11-22','0000-00-00',2838,0,2910,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 11:27:01','','0000-00-00 00:00:00',0),(4698,0,0,3965,'2526','H','O',4366,'',0,'2025-11-22','0000-00-00',2830,0,2902,0,'D06','',0,6500.00,0.00,0.00,6500.00,900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 11:27:08','','0000-00-00 00:00:00',0),(4699,0,0,3976,'2526','H','O',4367,'',0,'2025-11-22','0000-00-00',611,0,641,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 11:29:15','','0000-00-00 00:00:00',0),(4700,0,0,3977,'2526','H','O',4368,'',0,'2025-11-22','0000-00-00',2839,0,2911,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-22 11:30:54','','0000-00-00 00:00:00',0),(4701,0,0,3972,'2526','H','O',4369,'',0,'2025-11-22','0000-00-00',2836,0,2908,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','300 DISCOUNT','HO 4397','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 11:34:49','urvashi','2025-11-22 12:48:39',0),(4702,0,0,3969,'2526','H','O',4370,'',0,'2025-11-22','0000-00-00',2834,0,2906,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 11:37:15','','0000-00-00 00:00:00',0),(4703,0,0,3978,'2526','H','O',4371,'',0,'2025-11-22','0000-00-00',2840,0,2912,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-22 11:37:39','','0000-00-00 00:00:00',0),(4704,0,0,3979,'2526','H','O',4372,'',0,'2025-11-22','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 11:39:25','','0000-00-00 00:00:00',0),(4705,0,0,3980,'2526','H','O',4373,'',0,'2025-11-22','0000-00-00',251,0,266,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-22 11:42:29','','0000-00-00 00:00:00',0),(4706,0,0,3981,'2526','H','O',4374,'',0,'2025-11-22','0000-00-00',2841,0,2913,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 11:44:05','','0000-00-00 00:00:00',0),(4707,0,0,3981,'2526','H','O',4375,'',0,'2025-11-22','0000-00-00',2841,0,2913,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 11:48:56','','0000-00-00 00:00:00',0),(4708,0,0,3984,'2526','H','O',4376,'',0,'2025-11-22','0000-00-00',2843,0,2915,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 11:52:19','','0000-00-00 00:00:00',0),(4709,0,0,3987,'2526','H','O',4377,'',0,'2025-11-22','0000-00-00',2844,0,2916,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 11:55:25','','0000-00-00 00:00:00',0),(4710,0,0,3982,'2526','H','O',4378,'',0,'2025-11-22','0000-00-00',1669,0,1714,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','35039','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-22 11:56:20','','0000-00-00 00:00:00',0),(4711,0,0,3988,'2526','H','O',4379,'',0,'2025-11-22','0000-00-00',2845,0,2917,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-22 12:00:33','','0000-00-00 00:00:00',0),(4712,0,0,3974,'2526','H','O',4380,'',0,'2025-11-22','0000-00-00',2837,0,2909,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-22 12:02:46','','0000-00-00 00:00:00',0),(4713,0,0,3989,'2526','H','O',4381,'',0,'2025-11-22','0000-00-00',2846,0,2918,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 12:05:32','','0000-00-00 00:00:00',0),(4714,0,0,3990,'2526','H','O',4382,'',0,'2025-11-22','0000-00-00',2847,0,2919,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-22 12:06:32','','0000-00-00 00:00:00',0),(4715,0,0,3992,'2526','H','O',4383,'',0,'2025-11-22','0000-00-00',2849,0,2921,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 12:07:25','','0000-00-00 00:00:00',0),(4716,0,0,3991,'2526','H','O',4384,'',0,'2025-11-22','0000-00-00',2848,0,2920,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','25584','','scan     ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 12:08:06','','0000-00-00 00:00:00',0),(4717,0,0,3983,'2526','H','O',4385,'',0,'2025-11-22','0000-00-00',2842,0,2914,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','idbi','','13110','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 12:10:28','','0000-00-00 00:00:00',0),(4718,0,0,3973,'2526','H','O',4386,'',0,'2025-11-22','0000-00-00',2818,0,2887,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-22 12:11:25','','0000-00-00 00:00:00',0),(4719,0,0,3984,'2526','H','O',4387,'',0,'2025-11-22','0000-00-00',2843,0,2915,0,'D06','',0,6500.00,0.00,0.00,6500.00,900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 12:17:21','','0000-00-00 00:00:00',0),(4720,0,0,3993,'2526','H','O',4388,'',0,'2025-11-22','0000-00-00',2850,0,2922,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','31618','','scan     ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 12:21:13','','0000-00-00 00:00:00',0),(4721,0,0,3987,'2526','H','O',4389,'',0,'2025-11-22','0000-00-00',2844,0,2916,0,'D06','',0,4900.00,0.00,0.00,4900.00,900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 12:23:03','','0000-00-00 00:00:00',0),(4722,0,0,3956,'2526','H','O',4390,'',0,'2025-11-22','0000-00-00',2824,0,2894,0,'D02','',0,2400.00,0.00,0.00,2400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 12:27:11','','0000-00-00 00:00:00',0),(4723,0,0,3994,'2526','H','O',4391,'',0,'2025-11-22','0000-00-00',2851,0,2923,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-22 12:28:21','','0000-00-00 00:00:00',0),(4724,0,0,3977,'2526','H','O',4392,'',0,'2025-11-22','0000-00-00',2839,0,2911,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-22 12:30:27','','0000-00-00 00:00:00',0),(4725,0,0,3995,'2526','H','O',4393,'',0,'2025-11-22','0000-00-00',2852,0,2924,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-22 12:31:05','','0000-00-00 00:00:00',0),(4726,0,0,3960,'2526','H','O',4394,'',0,'2025-11-22','0000-00-00',2827,0,2898,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 12:38:05','','0000-00-00 00:00:00',0),(4727,0,0,3996,'2526','H','O',4395,'',0,'2025-11-22','0000-00-00',2853,0,2925,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 12:44:47','','0000-00-00 00:00:00',0),(4728,0,0,3997,'2526','H','O',4396,'',0,'2025-11-22','0000-00-00',2191,0,2248,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-22 12:45:53','','0000-00-00 00:00:00',0),(4729,0,0,3972,'2526','H','O',4397,'',0,'2025-11-22','0000-00-00',2836,0,2908,0,'D02','',0,-1000.00,0.00,0.00,-1000.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-1000.00,0,0,'2025-11-22','Y','N','N','','N',0.00,'','Y','300 DISCOUNT','','HO 4369','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 12:48:39','urvashi','2025-11-22 12:49:15',0),(4730,0,0,3998,'2526','H','O',4398,'',0,'2025-11-22','0000-00-00',2854,0,2926,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-22 12:49:02','','0000-00-00 00:00:00',0),(4731,0,0,3972,'2526','H','O',4399,'',0,'2025-11-22','0000-00-00',2836,0,2908,0,'D02','',0,1000.00,0.00,0.00,1000.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 12:50:04','','0000-00-00 00:00:00',0),(4732,0,0,3994,'2526','H','O',4400,'',0,'2025-11-22','0000-00-00',2851,0,2923,0,'D27','',0,250.00,0.00,0.00,250.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',250.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-22 12:57:15','','0000-00-00 00:00:00',0),(4733,0,0,3999,'2526','H','O',4401,'',0,'2025-11-22','0000-00-00',2855,0,2927,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','27809','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-22 13:03:59','','0000-00-00 00:00:00',0),(4734,0,0,3996,'2526','H','O',4402,'',0,'2025-11-22','0000-00-00',2853,0,2925,0,'D06','',0,4500.00,0.00,0.00,4500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','2','idbi bank','','3214','','card',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 13:05:53','','0000-00-00 00:00:00',0),(4735,0,0,3985,'2526','H','O',4403,'',0,'2025-11-22','0000-00-00',2681,0,2750,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','40083','','scan',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 13:07:17','','0000-00-00 00:00:00',0),(4736,0,0,4000,'2526','H','O',4404,'',0,'2025-11-22','0000-00-00',2856,0,2928,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','69590','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 13:11:13','','0000-00-00 00:00:00',0),(4737,0,0,3348,'2526','H','D',176,'',0,'2025-11-22','0000-00-00',0,159,2539,0,'D27','',0,54250.00,0.00,0.00,54250.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-53000,0,'0000-00-00','','N','N','F','N',1250.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-22 13:16:05','riya','2025-11-22 13:18:48',0),(4738,0,0,4001,'2526','H','O',4405,'',0,'2025-11-22','0000-00-00',1346,0,1386,0,'D06','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','29026','','SCAN',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 13:20:08','','0000-00-00 00:00:00',0),(4739,0,0,3348,'2526','H','I',158,'',0,'2025-11-22','0000-00-00',0,159,2539,0,'D27','',0,54250.00,0.00,0.00,54250.00,1250.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-53000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(4740,0,0,4000,'2526','H','O',4406,'',0,'2025-11-22','0000-00-00',2856,0,2928,0,'D06','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','28932','','SCAN',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-22 13:25:34','','0000-00-00 00:00:00',0),(4741,0,0,3902,'2526','H','D',177,'',0,'2025-11-22','0000-00-00',0,180,2860,0,'D27','',0,15500.00,0.00,0.00,15500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',500.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-22 15:18:09','riya','2025-11-22 15:19:16',0),(4742,0,0,3902,'2526','H','I',159,'',0,'2025-11-22','0000-00-00',0,180,2860,0,'D27','',0,15500.00,0.00,0.00,15500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15500,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-22 15:23:59','','0000-00-00 00:00:00',0),(4743,0,0,4002,'2526','H','O',4407,'',0,'2025-11-22','0000-00-00',2343,0,2399,0,'D06','',0,1600.00,0.00,0.00,1600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 17:36:49','','0000-00-00 00:00:00',0),(4744,0,0,4003,'2526','H','O',4408,'',0,'2025-11-22','0000-00-00',2857,0,2929,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 17:59:09','','0000-00-00 00:00:00',0),(4745,0,0,4005,'2526','H','O',4409,'',0,'2025-11-22','0000-00-00',221,0,234,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 4410','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 18:32:24','urvashi','2025-11-22 18:34:36',0),(4746,0,0,4005,'2526','H','O',4410,'',0,'2025-11-22','0000-00-00',221,0,234,0,'D02','',0,-100.00,0.00,0.00,-100.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-100.00,0,0,'2025-11-22','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 4409','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 18:34:36','urvashi','2025-11-22 18:35:21',0),(4747,0,0,4004,'2526','H','O',4411,'',0,'2025-11-22','0000-00-00',2528,0,1616,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-22 18:55:58','','0000-00-00 00:00:00',0),(4748,0,0,4006,'2526','H','O',4412,'',0,'2025-11-22','0000-00-00',1893,0,1940,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','87990','','SCAN',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 19:00:13','','0000-00-00 00:00:00',0),(4749,0,0,4007,'2526','H','O',4413,'',0,'2025-11-22','0000-00-00',2858,0,2930,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 4414','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-22 19:07:06','janvi','2025-11-22 19:40:20',0),(4750,0,0,4007,'2526','H','O',4414,'',0,'2025-11-22','0000-00-00',2858,0,2930,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-22','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 4413','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-22 19:40:20','janvi','2025-11-22 19:40:54',0),(4751,0,0,4007,'2526','H','O',4415,'',0,'2025-11-22','0000-00-00',2858,0,2930,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-22 19:51:52','','0000-00-00 00:00:00',0),(4752,0,0,4008,'2526','H','O',4416,'',0,'2025-11-23','0000-00-00',2818,0,2887,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-23 09:03:17','','0000-00-00 00:00:00',0),(4753,0,0,4009,'2526','H','O',4417,'',0,'2025-11-23','0000-00-00',2859,0,2931,0,'D27','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-23 09:05:46','','0000-00-00 00:00:00',0),(4754,0,0,4012,'2526','H','O',4418,'',0,'2025-11-23','0000-00-00',2860,0,2934,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-23 10:23:07','','0000-00-00 00:00:00',0),(4755,0,0,4013,'2526','H','O',4419,'',0,'2025-11-23','0000-00-00',1672,0,1717,0,'D27','',0,1800.00,0.00,0.00,1800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-23 10:29:10','','0000-00-00 00:00:00',0),(4756,0,0,3621,'2526','H','D',178,'',0,'2025-11-23','0000-00-00',0,172,2691,0,'D27','',0,47900.00,0.00,0.00,47900.00,1900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-33000,0,'0000-00-00','','N','N','F','N',13000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-23 10:35:13','riya','2025-11-23 10:45:54',0),(4757,0,0,4008,'2526','H','O',4420,'',0,'2025-11-23','0000-00-00',2818,0,2887,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-23 10:42:32','','0000-00-00 00:00:00',0),(4758,0,0,4014,'2526','H','O',4421,'',0,'2025-11-23','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-23 11:20:21','','0000-00-00 00:00:00',0),(4759,0,0,4015,'2526','H','O',4422,'',0,'2025-11-23','0000-00-00',2861,0,2935,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','27464','','scan ',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-23 11:29:15','','0000-00-00 00:00:00',0),(4760,0,0,3621,'2526','H','I',160,'',0,'2025-11-23','0000-00-00',0,172,2691,0,'D27','',0,47900.00,0.00,0.00,47900.00,1900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-46000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(4761,0,0,4016,'2526','H','O',4423,'',0,'2025-11-23','0000-00-00',2862,0,2936,0,'D27','',0,1900.00,0.00,0.00,1900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-23 12:33:43','','0000-00-00 00:00:00',0),(4762,0,0,3473,'2526','H','D',179,'',0,'2025-11-23','0000-00-00',0,163,2611,0,'D27','',0,140050.00,0.00,0.00,140050.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-123000,0,'0000-00-00','','N','N','F','N',17050.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-23 12:48:14','riya','2025-11-23 13:35:37',0),(4763,0,0,3473,'2526','H','I',161,'',0,'2025-11-23','0000-00-00',0,163,2611,0,'D27','',0,140050.00,0.00,0.00,140050.00,50.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-140000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(4764,0,0,4021,'2526','H','O',4424,'',0,'2025-11-24','0000-00-00',2863,0,2941,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 09:13:53','','0000-00-00 00:00:00',0),(4765,0,0,4022,'2526','H','O',4425,'',0,'2025-11-24','0000-00-00',2864,0,2942,0,'D27','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','01366','','scan',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 09:22:39','','0000-00-00 00:00:00',0),(4766,0,0,4023,'2526','H','O',4426,'',0,'2025-11-24','0000-00-00',2118,0,1763,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 09:24:02','','0000-00-00 00:00:00',0),(4767,0,0,4024,'2526','H','O',4427,'',0,'2025-11-24','0000-00-00',2865,0,2943,0,'D02','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 09:26:51','','0000-00-00 00:00:00',0),(4768,0,0,4025,'2526','H','O',4428,'',0,'2025-11-24','0000-00-00',2866,0,2944,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','induslnd','','80754','','scan',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 09:30:16','','0000-00-00 00:00:00',0),(4769,0,0,4027,'2526','H','O',4429,'',0,'2025-11-24','0000-00-00',2868,0,2946,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 09:33:07','','0000-00-00 00:00:00',0),(4770,0,0,4028,'2526','H','O',4430,'',0,'2025-11-24','0000-00-00',2869,0,2947,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 09:36:40','','0000-00-00 00:00:00',0),(4771,0,0,4030,'2526','H','O',4431,'',0,'2025-11-24','0000-00-00',2407,0,2463,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 09:47:19','','0000-00-00 00:00:00',0),(4772,0,0,4029,'2526','H','O',4432,'',0,'2025-11-24','0000-00-00',2870,0,2948,0,'D27','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 09:49:05','','0000-00-00 00:00:00',0),(4773,0,0,4031,'2526','H','O',4433,'',0,'2025-11-24','0000-00-00',1500,0,1541,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 09:54:22','','0000-00-00 00:00:00',0),(4774,0,0,4032,'2526','H','O',4434,'',0,'2025-11-24','0000-00-00',2871,0,2949,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 09:57:10','','0000-00-00 00:00:00',0),(4775,0,0,4033,'2526','H','O',4435,'',0,'2025-11-24','0000-00-00',1850,0,1896,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 09:59:03','','0000-00-00 00:00:00',0),(4776,0,0,4035,'2526','H','O',4436,'',0,'2025-11-24','0000-00-00',2873,0,2950,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 10:15:02','','0000-00-00 00:00:00',0),(4777,0,0,4034,'2526','H','O',4437,'',0,'2025-11-24','0000-00-00',2872,0,2676,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 10:17:04','','0000-00-00 00:00:00',0),(4778,0,0,4038,'2526','H','O',4438,'',0,'2025-11-24','0000-00-00',151,0,163,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 10:17:11','','0000-00-00 00:00:00',0),(4779,0,0,4037,'2526','H','O',4439,'',0,'2025-11-24','0000-00-00',2875,0,2675,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 10:17:33','','0000-00-00 00:00:00',0),(4780,0,0,4040,'2526','H','O',4440,'',0,'2025-11-24','0000-00-00',2390,0,2447,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 10:21:25','','0000-00-00 00:00:00',0),(4781,0,0,4041,'2526','H','O',4441,'',0,'2025-11-24','0000-00-00',2876,0,2951,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 10:22:55','','0000-00-00 00:00:00',0),(4782,0,0,4042,'2526','H','O',4442,'',0,'2025-11-24','0000-00-00',2877,0,2952,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 10:29:10','','0000-00-00 00:00:00',0),(4783,0,0,4043,'2526','H','O',4443,'',0,'2025-11-24','0000-00-00',2878,0,2953,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','53207','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 10:31:21','','0000-00-00 00:00:00',0),(4784,0,0,4044,'2526','H','O',4444,'',0,'2025-11-24','0000-00-00',2879,0,2954,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 10:33:38','','0000-00-00 00:00:00',0),(4785,0,0,4045,'2526','H','O',4445,'',0,'2025-11-24','0000-00-00',2693,0,2762,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 10:33:44','','0000-00-00 00:00:00',0),(4786,0,0,4046,'2526','H','O',4446,'',0,'2025-11-24','0000-00-00',2880,0,2955,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 10:35:56','','0000-00-00 00:00:00',0),(4787,0,0,4048,'2526','H','O',4447,'',0,'2025-11-24','0000-00-00',2669,0,2738,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 10:39:31','','0000-00-00 00:00:00',0),(4788,0,0,4049,'2526','H','O',4448,'',0,'2025-11-24','0000-00-00',2881,0,2957,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 10:42:03','','0000-00-00 00:00:00',0),(4789,0,0,4050,'2526','H','O',4449,'',0,'2025-11-24','0000-00-00',789,0,820,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 4450','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 10:48:18','janvi','2025-11-24 10:50:31',0),(4790,0,0,4050,'2526','H','O',4450,'',0,'2025-11-24','0000-00-00',789,0,820,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-11-24','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 4449','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 10:50:31','janvi','2025-11-24 10:50:49',0),(4791,0,0,4051,'2526','H','O',4451,'',0,'2025-11-24','0000-00-00',2399,0,2455,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 10:54:21','','0000-00-00 00:00:00',0),(4792,0,0,4036,'2526','H','O',4452,'',0,'2025-11-24','0000-00-00',2874,0,2201,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 10:55:25','','0000-00-00 00:00:00',0),(4793,0,0,4052,'2526','H','O',4453,'',0,'2025-11-24','0000-00-00',2882,0,2958,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','idfc ','','84046','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 10:58:42','','0000-00-00 00:00:00',0),(4794,0,0,4053,'2526','H','O',4454,'',0,'2025-11-24','0000-00-00',2489,0,2547,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 10:59:47','','0000-00-00 00:00:00',0),(4795,0,0,4055,'2526','H','O',4455,'',0,'2025-11-24','0000-00-00',2883,0,2960,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 11:07:43','','0000-00-00 00:00:00',0),(4796,0,0,4041,'2526','H','O',4456,'',0,'2025-11-24','0000-00-00',2876,0,2951,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 11:10:14','','0000-00-00 00:00:00',0),(4797,0,0,4057,'2526','H','O',4457,'',0,'2025-11-24','0000-00-00',2885,0,2962,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 11:15:59','','0000-00-00 00:00:00',0),(4798,0,0,4058,'2526','H','O',4458,'',0,'2025-11-24','0000-00-00',2886,0,2963,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 11:23:38','','0000-00-00 00:00:00',0),(4799,0,0,4060,'2526','H','O',4459,'',0,'2025-11-24','0000-00-00',2887,0,2964,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 11:24:14','','0000-00-00 00:00:00',0),(4800,0,0,4061,'2526','H','O',4460,'',0,'2025-11-24','0000-00-00',2888,0,2965,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 11:24:53','','0000-00-00 00:00:00',0),(4801,0,0,4062,'2526','H','O',4461,'',0,'2025-11-24','0000-00-00',2543,0,2600,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 11:25:59','','0000-00-00 00:00:00',0),(4802,0,0,4063,'2526','H','O',4462,'',0,'2025-11-24','0000-00-00',2889,0,2966,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 11:26:13','','0000-00-00 00:00:00',0),(4803,0,0,4064,'2526','H','O',4463,'',0,'2025-11-24','0000-00-00',2183,0,2238,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 11:26:23','','0000-00-00 00:00:00',0),(4804,0,0,4065,'2526','H','O',4464,'',0,'2025-11-24','0000-00-00',2890,0,2967,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 11:29:14','','0000-00-00 00:00:00',0),(4805,0,0,4066,'2526','H','O',4465,'',0,'2025-11-24','0000-00-00',2891,0,2968,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 11:30:18','','0000-00-00 00:00:00',0),(4806,0,0,4067,'2526','H','O',4466,'',0,'2025-11-24','0000-00-00',2561,0,2621,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-24 11:32:17','','0000-00-00 00:00:00',0),(4807,0,0,4068,'2526','H','O',4467,'',0,'2025-11-24','0000-00-00',2892,0,2969,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 11:32:34','','0000-00-00 00:00:00',0),(4808,0,0,4069,'2526','H','O',4468,'',0,'2025-11-24','0000-00-00',2893,0,2970,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 11:34:28','','0000-00-00 00:00:00',0),(4809,0,0,4071,'2526','H','O',4469,'',0,'2025-11-24','0000-00-00',1194,0,1233,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 11:36:37','','0000-00-00 00:00:00',0),(4810,0,0,4070,'2526','H','O',4470,'',0,'2025-11-24','0000-00-00',2894,0,2971,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 11:36:52','','0000-00-00 00:00:00',0),(4811,0,0,4021,'2526','H','O',4471,'',0,'2025-11-24','0000-00-00',2863,0,2941,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 11:38:16','','0000-00-00 00:00:00',0),(4812,0,0,4072,'2526','H','O',4472,'',0,'2025-11-24','0000-00-00',2895,0,2972,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','central','','05189','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 11:41:30','','0000-00-00 00:00:00',0),(4813,0,0,4073,'2526','H','O',4473,'',0,'2025-11-24','0000-00-00',2896,0,2973,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 11:41:55','','0000-00-00 00:00:00',0),(4814,0,0,4052,'2526','H','O',4474,'',0,'2025-11-24','0000-00-00',2882,0,2958,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','idfc ','','18326','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 11:44:58','','0000-00-00 00:00:00',0),(4815,0,0,4075,'2526','H','O',4475,'',0,'2025-11-24','0000-00-00',2898,0,2975,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','rajkot nagrik','','01695','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 11:50:14','','0000-00-00 00:00:00',0),(4816,0,0,4056,'2526','H','O',4476,'',0,'2025-11-24','0000-00-00',2884,0,2961,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-24 11:50:37','','0000-00-00 00:00:00',0),(4817,0,0,4026,'2526','H','O',4477,'',0,'2025-11-24','0000-00-00',2867,0,2945,0,'D27','',0,750.00,0.00,0.00,750.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','18717','','scan ',550.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 11:53:26','','0000-00-00 00:00:00',0),(4818,0,0,4076,'2526','H','O',4478,'',0,'2025-11-24','0000-00-00',627,0,657,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 11:54:01','','0000-00-00 00:00:00',0),(4819,0,0,4077,'2526','H','O',4479,'',0,'2025-11-24','0000-00-00',2899,0,2976,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-24 11:56:48','','0000-00-00 00:00:00',0),(4820,0,0,4078,'2526','H','O',4480,'',0,'2025-11-24','0000-00-00',1699,0,1745,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 12:00:41','','0000-00-00 00:00:00',0),(4821,0,0,4079,'2526','H','O',4481,'',0,'2025-11-24','0000-00-00',21,0,22,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 12:01:41','','0000-00-00 00:00:00',0),(4822,0,0,4042,'2526','H','O',4482,'',0,'2025-11-24','0000-00-00',2877,0,2952,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','05992','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 12:01:43','','0000-00-00 00:00:00',0),(4823,0,0,4080,'2526','H','O',4483,'',0,'2025-11-24','0000-00-00',2900,0,2977,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','86152','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 12:07:25','','0000-00-00 00:00:00',0),(4824,0,0,4081,'2526','H','O',4484,'',0,'2025-11-24','0000-00-00',1188,0,1227,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 12:07:41','','0000-00-00 00:00:00',0),(4825,0,0,4082,'2526','H','O',4485,'',0,'2025-11-24','0000-00-00',2901,0,2978,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 12:12:51','','0000-00-00 00:00:00',0),(4826,0,0,3954,'2526','H','D',180,'',0,'2025-11-24','0000-00-00',0,182,2893,0,'D27','',0,26550.00,0.00,0.00,26550.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',11550.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-24 12:13:51','riya','2025-11-24 12:49:53',0),(4827,0,0,4011,'2526','H','D',181,'',0,'2025-11-24','0000-00-00',0,186,2933,0,'D27','',0,9800.00,0.00,0.00,9800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6000,0,'0000-00-00','','N','N','F','N',3800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-24 12:15:51','riya','2025-11-24 12:21:01',0),(4828,0,0,4083,'2526','H','O',4486,'',0,'2025-11-24','0000-00-00',2902,0,2979,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 12:18:34','','0000-00-00 00:00:00',0),(4829,0,0,4084,'2526','H','O',4487,'',0,'2025-11-24','0000-00-00',2903,0,2980,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 12:20:31','','0000-00-00 00:00:00',0),(4830,0,0,4035,'2526','H','O',4488,'',0,'2025-11-24','0000-00-00',2873,0,2950,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 12:23:21','','0000-00-00 00:00:00',0),(4831,0,0,4085,'2526','H','O',4489,'',0,'2025-11-24','0000-00-00',2904,0,2981,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','21132','','scan ',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 12:23:37','','0000-00-00 00:00:00',0),(4832,0,0,4011,'2526','H','I',162,'',0,'2025-11-24','0000-00-00',0,186,2933,0,'D27','',0,9800.00,0.00,0.00,9800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-9800,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-24 12:23:56','','0000-00-00 00:00:00',0),(4833,0,0,4086,'2526','H','O',4490,'',0,'2025-11-24','0000-00-00',2905,0,2982,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 12:24:35','','0000-00-00 00:00:00',0),(4834,0,0,4087,'2526','H','O',4491,'',0,'2025-11-24','0000-00-00',1363,0,1403,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 12:25:08','','0000-00-00 00:00:00',0),(4835,0,0,4088,'2526','H','O',4492,'',0,'2025-11-24','0000-00-00',2906,0,2983,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 12:30:44','','0000-00-00 00:00:00',0),(4836,0,0,4089,'2526','H','O',4493,'',0,'2025-11-24','0000-00-00',2305,0,2362,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 12:35:38','','0000-00-00 00:00:00',0),(4837,0,0,4043,'2526','H','O',4494,'',0,'2025-11-24','0000-00-00',2878,0,2953,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','38883','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 12:52:03','','0000-00-00 00:00:00',0),(4838,0,0,3954,'2526','H','I',163,'',0,'2025-11-24','0000-00-00',0,182,2893,0,'D27','',0,26550.00,0.00,0.00,26550.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-26550,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(4839,0,0,4091,'2526','H','O',4495,'',0,'2025-11-24','0000-00-00',842,0,873,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 12:56:46','','0000-00-00 00:00:00',0),(4840,0,0,4093,'2526','H','O',4496,'',0,'2025-11-24','0000-00-00',2908,0,2986,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 13:00:34','','0000-00-00 00:00:00',0),(4841,0,0,4082,'2526','H','O',4497,'',0,'2025-11-24','0000-00-00',2901,0,2978,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','43150','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 13:03:40','','0000-00-00 00:00:00',0),(4842,0,0,4094,'2526','H','O',4498,'',0,'2025-11-24','0000-00-00',2909,0,2987,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 13:05:34','','0000-00-00 00:00:00',0),(4843,0,0,4090,'2526','H','O',4499,'',0,'2025-11-24','0000-00-00',2907,0,2984,0,'D03','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-24 13:06:52','','0000-00-00 00:00:00',0),(4844,0,0,4083,'2526','H','O',4500,'',0,'2025-11-24','0000-00-00',2902,0,2979,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 13:14:45','','0000-00-00 00:00:00',0),(4845,0,0,4095,'2526','H','O',4501,'',0,'2025-11-24','0000-00-00',2910,0,2988,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 13:16:05','','0000-00-00 00:00:00',0),(4846,0,0,4060,'2526','H','O',4502,'',0,'2025-11-24','0000-00-00',2887,0,2964,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 13:18:18','','0000-00-00 00:00:00',0),(4847,0,0,4096,'2526','H','O',4503,'',0,'2025-11-24','0000-00-00',2861,0,2935,0,'D02','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','25890','','scan ',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 13:18:19','','0000-00-00 00:00:00',0),(4848,0,0,4098,'2526','H','O',4504,'',0,'2025-11-24','0000-00-00',2912,0,2990,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 13:23:54','','0000-00-00 00:00:00',0),(4849,0,0,4099,'2526','H','O',4505,'',0,'2025-11-24','0000-00-00',937,0,968,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 13:26:04','','0000-00-00 00:00:00',0),(4850,0,0,4087,'2526','H','O',4506,'',0,'2025-11-24','0000-00-00',1363,0,1403,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 13:40:43','','0000-00-00 00:00:00',0),(4851,0,0,4093,'2526','H','O',4507,'',0,'2025-11-24','0000-00-00',2908,0,2986,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 13:44:00','','0000-00-00 00:00:00',0),(4852,0,0,4101,'2526','H','O',4508,'',0,'2025-11-24','0000-00-00',2914,0,2991,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 13:47:27','','0000-00-00 00:00:00',0),(4853,0,0,4072,'2526','H','O',4509,'',0,'2025-11-24','0000-00-00',2895,0,2972,0,'D06','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','central','','26655','','scan',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 13:52:41','','0000-00-00 00:00:00',0),(4854,0,0,4100,'2526','H','O',4510,'',0,'2025-11-24','0000-00-00',2913,0,2950,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-24 13:53:42','','0000-00-00 00:00:00',0),(4855,0,0,4102,'2526','H','O',4511,'',0,'2025-11-24','0000-00-00',2915,0,2992,0,'D02','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-24 15:20:13','','0000-00-00 00:00:00',0),(4856,0,0,4104,'2526','H','O',4512,'',0,'2025-11-24','0000-00-00',1169,0,1208,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 16:19:18','','0000-00-00 00:00:00',0),(4857,0,0,4105,'2526','H','O',4513,'',0,'2025-11-24','0000-00-00',1281,0,1320,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 16:38:33','','0000-00-00 00:00:00',0),(4858,0,0,4107,'2526','H','O',4514,'',0,'2025-11-24','0000-00-00',2917,0,2994,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 16:48:44','','0000-00-00 00:00:00',0),(4859,0,0,4108,'2526','H','O',4515,'',0,'2025-11-24','0000-00-00',2317,0,2374,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 17:15:00','','0000-00-00 00:00:00',0),(4860,0,0,4109,'2526','H','O',4516,'',0,'2025-11-24','0000-00-00',2918,0,2995,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 17:19:28','','0000-00-00 00:00:00',0),(4861,0,0,4111,'2526','H','O',4517,'',0,'2025-11-24','0000-00-00',2919,0,2996,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 17:21:23','','0000-00-00 00:00:00',0),(4862,0,0,4112,'2526','H','O',4518,'',0,'2025-11-24','0000-00-00',1102,0,1140,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-24 17:36:03','','0000-00-00 00:00:00',0),(4863,0,0,4113,'2526','H','O',4519,'',0,'2025-11-24','0000-00-00',1059,0,1092,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 17:38:27','','0000-00-00 00:00:00',0),(4864,0,0,4115,'2526','H','O',4520,'',0,'2025-11-24','0000-00-00',798,0,829,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 17:42:58','','0000-00-00 00:00:00',0),(4865,0,0,4107,'2526','H','O',4521,'',0,'2025-11-24','0000-00-00',2917,0,2994,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','04541','','scan',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 17:46:57','','0000-00-00 00:00:00',0),(4866,0,0,4116,'2526','H','O',4522,'',0,'2025-11-24','0000-00-00',1026,0,1060,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 17:49:20','','0000-00-00 00:00:00',0),(4867,0,0,4117,'2526','H','O',4523,'',0,'2025-11-24','0000-00-00',2920,0,2997,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 17:52:42','','0000-00-00 00:00:00',0),(4868,0,0,4119,'2526','H','O',4524,'',0,'2025-11-24','0000-00-00',2370,0,2426,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 17:54:06','','0000-00-00 00:00:00',0),(4869,0,0,4109,'2526','H','O',4525,'',0,'2025-11-24','0000-00-00',2918,0,2995,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 17:58:34','','0000-00-00 00:00:00',0),(4870,0,0,4121,'2526','H','O',4526,'',0,'2025-11-24','0000-00-00',2444,0,2501,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 18:03:56','','0000-00-00 00:00:00',0),(4871,0,0,4122,'2526','H','O',4527,'',0,'2025-11-24','0000-00-00',2922,0,2999,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100 DISCOUNT','HO 4535','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 18:10:12','reception','2025-11-24 18:27:37',0),(4872,0,0,4123,'2526','H','O',4528,'',0,'2025-11-24','0000-00-00',2629,0,2697,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 18:11:10','','0000-00-00 00:00:00',0),(4873,0,0,4110,'2526','H','O',4529,'',0,'2025-11-24','0000-00-00',525,0,551,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 18:15:59','','0000-00-00 00:00:00',0),(4874,0,0,4124,'2526','H','O',4530,'',0,'2025-11-24','0000-00-00',2923,0,3000,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','94283','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 18:22:01','','0000-00-00 00:00:00',0),(4875,0,0,4126,'2526','H','O',4531,'',0,'2025-11-24','0000-00-00',2924,0,3001,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-24 18:23:44','','0000-00-00 00:00:00',0),(4876,0,0,4127,'2526','H','O',4532,'',0,'2025-11-24','0000-00-00',2925,0,3002,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 18:23:51','','0000-00-00 00:00:00',0),(4877,0,0,4128,'2526','H','O',4533,'',0,'2025-11-24','0000-00-00',2926,0,3003,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-24 18:25:31','','0000-00-00 00:00:00',0),(4878,0,0,4129,'2526','H','O',4534,'',0,'2025-11-24','0000-00-00',2241,0,2297,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 4545','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 18:25:45','drashti','2025-11-24 18:45:59',0),(4879,0,0,4122,'2526','H','O',4535,'',0,'2025-11-24','0000-00-00',2922,0,2999,0,'D06','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-11-24','Y','N','N','','N',0.00,'','Y','100 DISCOUNT','','HO 4527','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 18:27:37','reception','2025-11-24 18:29:37',0),(4880,0,0,4130,'2526','H','O',4536,'',0,'2025-11-24','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 18:27:48','','0000-00-00 00:00:00',0),(4881,0,0,4120,'2526','H','O',4537,'',0,'2025-11-24','0000-00-00',2574,0,2635,0,'D14','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-24 18:28:17','','0000-00-00 00:00:00',0),(4882,0,0,4132,'2526','H','O',4538,'',0,'2025-11-24','0000-00-00',2927,0,3004,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 18:29:39','','0000-00-00 00:00:00',0),(4883,0,0,4133,'2526','H','O',4539,'',0,'2025-11-24','0000-00-00',2144,0,2196,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','52503','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-24 18:30:20','','0000-00-00 00:00:00',0),(4884,0,0,4122,'2526','H','O',4540,'',0,'2025-11-24','0000-00-00',2922,0,2999,0,'D06','',0,700.00,0.00,0.00,700.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 18:30:34','','0000-00-00 00:00:00',0),(4885,0,0,4134,'2526','H','O',4541,'',0,'2025-11-24','0000-00-00',2928,0,3005,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 18:37:07','','0000-00-00 00:00:00',0),(4886,0,0,4135,'2526','H','O',4542,'',0,'2025-11-24','0000-00-00',2585,0,2646,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','71203','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-24 18:42:47','','0000-00-00 00:00:00',0),(4887,0,0,4136,'2526','H','O',4543,'',0,'2025-11-24','0000-00-00',2929,0,3006,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 18:43:08','','0000-00-00 00:00:00',0),(4888,0,0,4138,'2526','H','O',4544,'',0,'2025-11-24','0000-00-00',2005,0,2056,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 18:45:43','','0000-00-00 00:00:00',0),(4889,0,0,4129,'2526','H','O',4545,'',0,'2025-11-24','0000-00-00',2241,0,2297,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-11-24','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 4534','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 18:45:59','drashti','2025-11-24 18:46:51',0),(4890,0,0,4139,'2526','H','O',4546,'',0,'2025-11-24','0000-00-00',2340,0,2396,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 18:46:29','','0000-00-00 00:00:00',0),(4891,0,0,4140,'2526','H','O',4547,'',0,'2025-11-24','0000-00-00',2930,0,3007,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 18:46:44','','0000-00-00 00:00:00',0),(4892,0,0,4127,'2526','H','O',4548,'',0,'2025-11-24','0000-00-00',2925,0,3002,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 18:49:08','','0000-00-00 00:00:00',0),(4894,0,0,4103,'2526','H','O',4549,'',0,'2025-11-24','0000-00-00',2916,0,2993,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 18:52:15','','0000-00-00 00:00:00',0),(4895,0,0,4142,'2526','H','O',4550,'',0,'2025-11-24','0000-00-00',2932,0,3009,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','south indian','','58226','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 18:58:01','','0000-00-00 00:00:00',0),(4896,0,0,4143,'2526','H','O',4551,'',0,'2025-11-24','0000-00-00',118,0,129,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 19:00:38','','0000-00-00 00:00:00',0),(4897,0,0,4144,'2526','H','O',4552,'',0,'2025-11-24','0000-00-00',2528,0,1616,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-24 19:04:58','','0000-00-00 00:00:00',0),(4898,0,0,4018,'2526','H','D',183,'',0,'2025-11-24','0000-00-00',0,188,2938,0,'D27','',0,11200.00,0.00,0.00,11200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10100,0,'0000-00-00','','N','N','F','N',1100.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-24 19:10:21','vishal','2025-11-24 19:10:46',0),(4899,0,0,4018,'2526','H','I',164,'',0,'2025-11-24','0000-00-00',0,188,2938,0,'D27','',0,11200.00,0.00,0.00,11200.00,1100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10100,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-24 19:11:00','','0000-00-00 00:00:00',0),(4900,0,0,4137,'2526','H','O',4553,'',0,'2025-11-24','0000-00-00',2671,0,2740,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOI BANK','','24492','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 19:16:34','','0000-00-00 00:00:00',0),(4901,0,0,4146,'2526','H','O',4554,'',0,'2025-11-24','0000-00-00',2934,0,3011,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 19:19:30','','0000-00-00 00:00:00',0),(4902,0,0,4147,'2526','H','O',4555,'',0,'2025-11-24','0000-00-00',2935,0,3012,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 19:21:36','','0000-00-00 00:00:00',0),(4903,0,0,4145,'2526','H','O',4556,'',0,'2025-11-24','0000-00-00',2933,0,3010,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-24 19:25:55','','0000-00-00 00:00:00',0),(4904,0,0,4148,'2526','H','O',4557,'',0,'2025-11-24','0000-00-00',2936,0,3013,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','83553','','scan                          ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 19:30:49','','0000-00-00 00:00:00',0),(4905,0,0,4149,'2526','H','O',4558,'',0,'2025-11-24','0000-00-00',2689,0,2758,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 19:33:24','','0000-00-00 00:00:00',0),(4906,0,0,4151,'2526','H','O',4559,'',0,'2025-11-24','0000-00-00',2938,0,3015,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 19:36:23','','0000-00-00 00:00:00',0),(4907,0,0,4152,'2526','H','O',4560,'',0,'2025-11-24','0000-00-00',2939,0,3016,0,'D03','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','42908','','SCAN',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-24 19:52:17','','0000-00-00 00:00:00',0),(4908,0,0,4153,'2526','H','O',4561,'',0,'2025-11-24','0000-00-00',2940,0,3017,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-24 19:53:18','','0000-00-00 00:00:00',0),(4909,0,0,4028,'2526','H','O',4562,'',0,'2025-11-24','0000-00-00',2869,0,2947,0,'D27','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-24 19:57:43','','0000-00-00 00:00:00',0),(4910,0,0,4154,'2526','H','D',184,'',0,'2025-11-25','0000-00-00',0,195,3018,0,'D02','',0,12000.00,0.00,0.00,12000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',12000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-24 20:01:10','riya','2025-11-25 18:59:58',0),(4911,0,0,4155,'2526','H','O',4563,'',0,'2025-11-24','0000-00-00',2941,0,3019,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','94499','','scan ',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-24 20:52:07','','0000-00-00 00:00:00',0),(4912,0,0,4010,'2526','H','D',185,'',0,'2025-11-24','0000-00-00',0,185,2932,0,'D27','',0,25200.00,0.00,0.00,25200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',10200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-24 21:13:44','vishal','2025-11-24 21:24:08',0),(4913,0,0,3630,'2526','H','D',186,'',0,'2025-11-24','0000-00-00',0,174,2699,0,'D27','',0,54300.00,0.00,0.00,54300.00,3300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-34000,0,'0000-00-00','','N','N','F','N',17000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-24 21:18:58','vishal','2025-11-24 21:45:30',0),(4914,0,0,4010,'2526','H','I',165,'',0,'2025-11-24','0000-00-00',0,185,2932,0,'D27','',0,25200.00,0.00,0.00,25200.00,1700.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-23500,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(4915,0,0,3630,'2526','H','I',166,'',0,'2025-11-24','0000-00-00',0,174,2699,0,'D27','',0,54300.00,0.00,0.00,54300.00,3300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-51000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(4916,0,0,4156,'2526','H','O',4564,'',0,'2025-11-25','0000-00-00',2941,0,3019,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 08:48:19','','0000-00-00 00:00:00',0),(4917,0,0,4157,'2526','H','O',4565,'',0,'2025-11-25','0000-00-00',2942,0,3020,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 09:06:08','','0000-00-00 00:00:00',0),(4918,0,0,4160,'2526','H','O',4566,'',0,'2025-11-25','0000-00-00',2159,0,2214,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 09:52:46','','0000-00-00 00:00:00',0),(4919,0,0,4162,'2526','H','O',4567,'',0,'2025-11-25','0000-00-00',1239,0,1280,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 10:04:36','','0000-00-00 00:00:00',0),(4920,0,0,4163,'2526','H','O',4568,'',0,'2025-11-25','0000-00-00',2943,0,3022,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 10:07:57','','0000-00-00 00:00:00',0),(4921,0,0,4164,'2526','H','O',4569,'',0,'2025-11-25','0000-00-00',2824,0,2894,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 10:08:26','','0000-00-00 00:00:00',0),(4922,0,0,4165,'2526','H','O',4570,'',0,'2025-11-25','0000-00-00',2448,0,2507,0,'D06','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 10:12:53','','0000-00-00 00:00:00',0),(4923,0,0,4167,'2526','H','O',4571,'',0,'2025-11-25','0000-00-00',2944,0,3023,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-25 10:23:12','','0000-00-00 00:00:00',0),(4924,0,0,4168,'2526','H','O',4572,'',0,'2025-11-25','0000-00-00',1617,0,1662,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 10:27:44','','0000-00-00 00:00:00',0),(4925,0,0,4170,'2526','H','O',4573,'',0,'2025-11-25','0000-00-00',2945,0,3024,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','81057','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 10:32:49','','0000-00-00 00:00:00',0),(4926,0,0,4171,'2526','H','O',4574,'',0,'2025-11-25','0000-00-00',2946,0,3025,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','44483','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 10:35:57','','0000-00-00 00:00:00',0),(4927,0,0,4172,'2526','H','O',4575,'',0,'2025-11-25','0000-00-00',2947,0,3026,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 10:41:37','','0000-00-00 00:00:00',0),(4928,0,0,4173,'2526','H','O',4576,'',0,'2025-11-25','0000-00-00',2948,0,3027,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 10:45:03','','0000-00-00 00:00:00',0),(4929,0,0,4167,'2526','H','O',4577,'',0,'2025-11-25','0000-00-00',2944,0,3023,0,'D14','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','YES BANK','','62848','','SCAN',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-25 11:02:43','','0000-00-00 00:00:00',0),(4930,0,0,4174,'2526','H','O',4578,'',0,'2025-11-25','0000-00-00',2949,0,3028,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 11:05:19','','0000-00-00 00:00:00',0),(4931,0,0,4175,'2526','H','O',4579,'',0,'2025-11-25','0000-00-00',2950,0,3029,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 11:06:02','','0000-00-00 00:00:00',0),(4932,0,0,4176,'2526','H','O',4580,'',0,'2025-11-25','0000-00-00',2951,0,3030,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 4602','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 11:09:46','janvi','2025-11-25 11:47:12',0),(4933,0,0,4177,'2526','H','O',4581,'',0,'2025-11-25','0000-00-00',2952,0,3031,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 4604','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 11:10:51','janvi','2025-11-25 11:48:28',0),(4934,0,0,4179,'2526','H','O',4582,'',0,'2025-11-25','0000-00-00',2954,0,3033,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 11:12:16','','0000-00-00 00:00:00',0),(4935,0,0,4178,'2526','H','O',4583,'',0,'2025-11-25','0000-00-00',2953,0,3032,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 11:12:35','','0000-00-00 00:00:00',0),(4936,0,0,4181,'2526','H','O',4584,'',0,'2025-11-25','0000-00-00',2956,0,3035,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 11:14:03','','0000-00-00 00:00:00',0),(4937,0,0,4180,'2526','H','O',4585,'',0,'2025-11-25','0000-00-00',2955,0,3034,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 11:14:05','','0000-00-00 00:00:00',0),(4938,0,0,4182,'2526','H','O',4586,'',0,'2025-11-25','0000-00-00',2957,0,3036,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 11:14:48','','0000-00-00 00:00:00',0),(4939,0,0,4183,'2526','H','O',4587,'',0,'2025-11-25','0000-00-00',2958,0,3037,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 11:17:09','','0000-00-00 00:00:00',0),(4940,0,0,4184,'2526','H','O',4588,'',0,'2025-11-25','0000-00-00',2959,0,3038,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','01195','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 11:21:09','','0000-00-00 00:00:00',0),(4941,0,0,4185,'2526','H','O',4589,'',0,'2025-11-25','0000-00-00',2539,0,2596,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 11:22:17','','0000-00-00 00:00:00',0),(4942,0,0,4182,'2526','H','O',4590,'',0,'2025-11-25','0000-00-00',2957,0,3036,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 11:22:38','','0000-00-00 00:00:00',0),(4943,0,0,4169,'2526','H','O',4591,'',0,'2025-11-25','0000-00-00',1153,0,1193,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 11:23:01','','0000-00-00 00:00:00',0),(4944,0,0,4186,'2526','H','O',4592,'',0,'2025-11-25','0000-00-00',2960,0,3039,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 11:24:10','','0000-00-00 00:00:00',0),(4945,0,0,4170,'2526','H','O',4593,'',0,'2025-11-25','0000-00-00',2945,0,3024,0,'D06','',0,6900.00,0.00,0.00,6900.00,1300.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','08746','','SCAN',5600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 11:26:54','','0000-00-00 00:00:00',0),(4946,0,0,4187,'2526','H','O',4594,'',0,'2025-11-25','0000-00-00',2961,0,3040,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','88488','','scan ',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 4623','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 11:30:55','drashti','2025-11-25 13:05:37',0),(4947,0,0,4188,'2526','H','O',4595,'',0,'2025-11-25','0000-00-00',2962,0,3041,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 11:35:29','','0000-00-00 00:00:00',0),(4948,0,0,4163,'2526','H','O',4596,'',0,'2025-11-25','0000-00-00',2943,0,3022,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 11:36:57','','0000-00-00 00:00:00',0),(4949,0,0,4189,'2526','H','O',4597,'',0,'2025-11-25','0000-00-00',2963,0,3042,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','amreli jilla','','74429','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 11:37:52','','0000-00-00 00:00:00',0),(4950,0,0,4184,'2526','H','O',4598,'',0,'2025-11-25','0000-00-00',2959,0,3038,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','09423','','scan            ',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 11:38:48','','0000-00-00 00:00:00',0),(4951,0,0,4190,'2526','H','O',4599,'',0,'2025-11-25','0000-00-00',1797,0,1842,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 11:39:38','','0000-00-00 00:00:00',0),(4952,0,0,4191,'2526','H','O',4600,'',0,'2025-11-25','0000-00-00',2964,0,3043,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 11:41:39','','0000-00-00 00:00:00',0),(4953,0,0,4192,'2526','H','O',4601,'',0,'2025-11-25','0000-00-00',2965,0,3044,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 11:43:15','','0000-00-00 00:00:00',0),(4954,0,0,4176,'2526','H','O',4602,'',0,'2025-11-25','0000-00-00',2951,0,3030,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-11-25','Y','N','Y','','N',0.00,'','Y','CANCEL','','HO 4580','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 11:47:12','janvi','2025-11-25 11:47:41',0),(4955,0,0,4193,'2526','H','O',4603,'',0,'2025-11-25','0000-00-00',2966,0,3045,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 11:47:22','','0000-00-00 00:00:00',0),(4956,0,0,4177,'2526','H','O',4604,'',0,'2025-11-25','0000-00-00',2952,0,3031,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-11-25','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 4581','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 11:48:28','janvi','2025-11-25 11:48:48',0),(4957,0,0,4176,'2526','H','O',4605,'',0,'2025-11-25','0000-00-00',2951,0,3030,0,'D27','',0,1050.00,250.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 11:49:24','','0000-00-00 00:00:00',0),(4958,0,0,4177,'2526','H','O',4606,'',0,'2025-11-25','0000-00-00',2952,0,3031,0,'D27','',0,1050.00,250.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 11:50:57','','0000-00-00 00:00:00',0),(4959,0,0,4194,'2526','H','O',4607,'',0,'2025-11-25','0000-00-00',2967,0,2607,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 4622','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 11:58:58','drashti','2025-11-25 13:02:35',0),(4960,0,0,4020,'2526','H','D',187,'',0,'2025-11-25','0000-00-00',0,190,2940,0,'D02','',0,25000.00,0.00,0.00,25000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',10000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-25 12:01:58','vishal','2025-11-25 12:05:50',0),(4961,0,0,4195,'2526','H','O',4608,'',0,'2025-11-25','0000-00-00',2968,0,3046,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI','','24914','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 12:04:49','','0000-00-00 00:00:00',0),(4962,0,0,4020,'2526','H','I',167,'',0,'2025-11-25','0000-00-00',0,190,2940,0,'D02','',0,25000.00,0.00,0.00,25000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-25 12:06:44','','0000-00-00 00:00:00',0),(4963,0,0,4196,'2526','H','O',4609,'',0,'2025-11-25','0000-00-00',422,0,444,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.RIDHAM SIR','HO 4613','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-25 12:07:08','manshi','2025-11-25 12:24:37',0),(4964,0,0,4195,'2526','H','O',4610,'',0,'2025-11-25','0000-00-00',2968,0,3046,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','40696','','scan                          ',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 12:11:43','','0000-00-00 00:00:00',0),(4965,0,0,4186,'2526','H','O',4611,'',0,'2025-11-25','0000-00-00',2960,0,3039,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 12:20:09','','0000-00-00 00:00:00',0),(4966,0,0,4197,'2526','H','O',4612,'',0,'2025-11-25','0000-00-00',1928,0,1976,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','INDIA POST PAY','','65409','','SCAN',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-25 12:22:19','','0000-00-00 00:00:00',0),(4967,0,0,4196,'2526','H','O',4613,'',0,'2025-11-25','0000-00-00',422,0,444,0,'D14','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-25','Y','N','N','','N',0.00,'','Y','FOC BY DR.RIDHAM SIR','','HO 4609','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-25 12:24:37','manshi','2025-11-25 12:24:59',0),(4968,0,0,4198,'2526','H','O',4614,'',0,'2025-11-25','0000-00-00',2969,0,3047,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 12:27:07','','0000-00-00 00:00:00',0),(4969,0,0,3962,'2526','H','D',188,'',0,'2025-11-25','0000-00-00',0,184,2899,0,'D27','',0,35000.00,0.00,0.00,35000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-35000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-25 12:29:00','vishal','2025-11-25 12:31:22',0),(4970,0,0,4199,'2526','H','O',4615,'',0,'2025-11-25','0000-00-00',2970,0,3048,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 12:29:15','','0000-00-00 00:00:00',0),(4971,0,0,4200,'2526','H','O',4616,'',0,'2025-11-25','0000-00-00',855,0,887,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 12:32:22','','0000-00-00 00:00:00',0),(4972,0,0,4201,'2526','H','O',4617,'',0,'2025-11-25','0000-00-00',2160,0,2215,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 12:40:43','','0000-00-00 00:00:00',0),(4973,0,0,4192,'2526','H','O',4618,'',0,'2025-11-25','0000-00-00',2965,0,3044,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 12:50:54','','0000-00-00 00:00:00',0),(4974,0,0,4178,'2526','H','O',4619,'',0,'2025-11-25','0000-00-00',2953,0,3032,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 12:51:03','','0000-00-00 00:00:00',0),(4975,0,0,4202,'2526','H','O',4620,'',0,'2025-11-25','0000-00-00',2971,0,3049,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 4624','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 12:56:15','drashti','2025-11-25 13:16:30',0),(4976,0,0,3962,'2526','H','I',168,'',0,'2025-11-25','0000-00-00',0,184,2899,0,'D27','',0,35000.00,0.00,0.00,35000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-35000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(4977,0,0,4203,'2526','H','O',4621,'',0,'2025-11-25','0000-00-00',2301,0,2358,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-25 12:59:43','','0000-00-00 00:00:00',0),(4978,0,0,4194,'2526','H','O',4622,'',0,'2025-11-25','0000-00-00',2967,0,2607,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-11-25','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 4607','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 13:02:35','drashti','2025-11-25 13:03:07',0),(4979,0,0,4187,'2526','H','O',4623,'',0,'2025-11-25','0000-00-00',2961,0,3040,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','SBI BANK','','88488','','',-750.00,0,0,'2025-11-25','Y','N','N','','N',0.00,'','Y','FOC','','HO 4594','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 13:05:37','drashti','2025-11-25 13:06:24',0),(4980,0,0,4202,'2526','H','O',4624,'',0,'2025-11-25','0000-00-00',2971,0,3049,0,'D27','',0,-800.00,0.00,0.00,-800.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-800.00,0,0,'2025-11-25','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 4620','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 13:16:30','drashti','2025-11-25 13:16:52',0),(4981,0,0,4202,'2526','H','O',4625,'',0,'2025-11-25','0000-00-00',2971,0,3049,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 13:18:03','','0000-00-00 00:00:00',0),(4982,0,0,4204,'2526','H','O',4626,'',0,'2025-11-25','0000-00-00',2972,0,3050,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 13:27:40','','0000-00-00 00:00:00',0),(4983,0,0,4092,'2526','H','D',189,'',0,'2025-11-25','0000-00-00',0,193,2985,0,'D27','',0,8100.00,0.00,0.00,8100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-5000,0,'0000-00-00','','N','N','F','N',3100.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-25 14:01:27','vishal','2025-11-25 14:02:07',0),(4984,0,0,4092,'2526','H','I',169,'',0,'2025-11-25','0000-00-00',0,193,2985,0,'D27','',0,8100.00,0.00,0.00,8100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-8100,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-25 14:11:28','','0000-00-00 00:00:00',0),(4985,0,0,4205,'2526','H','O',4627,'',0,'2025-11-25','0000-00-00',2643,0,2713,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-25 16:47:58','','0000-00-00 00:00:00',0),(4986,0,0,4206,'2526','H','O',4628,'',0,'2025-11-25','0000-00-00',1815,0,1861,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 17:05:29','','0000-00-00 00:00:00',0),(4987,0,0,4207,'2526','H','O',4629,'',0,'2025-11-25','0000-00-00',2973,0,3051,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 17:07:56','','0000-00-00 00:00:00',0),(4988,0,0,4208,'2526','H','O',4630,'',0,'2025-11-25','0000-00-00',2974,0,3052,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','03319','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 17:08:31','','0000-00-00 00:00:00',0),(4989,0,0,4210,'2526','H','O',4631,'',0,'2025-11-25','0000-00-00',2688,0,2757,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI','','02201','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 17:19:41','','0000-00-00 00:00:00',0),(4990,0,0,4211,'2526','H','O',4632,'',0,'2025-11-25','0000-00-00',2914,0,2991,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 17:27:56','','0000-00-00 00:00:00',0),(4991,0,0,4212,'2526','H','O',4633,'',0,'2025-11-25','0000-00-00',407,0,429,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 17:36:23','','0000-00-00 00:00:00',0),(4992,0,0,4214,'2526','H','O',4634,'',0,'2025-11-25','0000-00-00',2976,0,3054,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 17:41:24','','0000-00-00 00:00:00',0),(4993,0,0,4215,'2526','H','O',4635,'',0,'2025-11-25','0000-00-00',2977,0,3055,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 17:42:35','','0000-00-00 00:00:00',0),(4994,0,0,4218,'2526','H','O',4636,'',0,'2025-11-25','0000-00-00',2980,0,3058,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 17:49:54','','0000-00-00 00:00:00',0),(4995,0,0,4217,'2526','H','O',4637,'',0,'2025-11-25','0000-00-00',2979,0,3057,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 17:50:51','','0000-00-00 00:00:00',0),(4996,0,0,4216,'2526','H','O',4638,'',0,'2025-11-25','0000-00-00',2978,0,3056,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 17:51:01','','0000-00-00 00:00:00',0),(4997,0,0,4219,'2526','H','O',4639,'',0,'2025-11-25','0000-00-00',2981,0,3059,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 17:51:16','','0000-00-00 00:00:00',0),(4998,0,0,4220,'2526','H','O',4640,'',0,'2025-11-25','0000-00-00',2982,0,3060,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','97178','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 17:54:07','','0000-00-00 00:00:00',0),(4999,0,0,4213,'2526','H','O',4641,'',0,'2025-11-25','0000-00-00',1694,0,1740,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-25 17:58:21','','0000-00-00 00:00:00',0),(5000,0,0,4221,'2526','H','O',4642,'',0,'2025-11-25','0000-00-00',2983,0,3061,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 17:59:11','','0000-00-00 00:00:00',0),(5001,0,0,4222,'2526','H','O',4643,'',0,'2025-11-25','0000-00-00',2984,0,3062,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 18:00:33','','0000-00-00 00:00:00',0),(5002,0,0,4214,'2526','H','O',4644,'',0,'2025-11-25','0000-00-00',2976,0,3054,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 18:00:55','','0000-00-00 00:00:00',0),(5003,0,0,4223,'2526','H','O',4645,'',0,'2025-11-25','0000-00-00',884,0,916,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 18:02:04','','0000-00-00 00:00:00',0),(5004,0,0,4224,'2526','H','O',4646,'',0,'2025-11-25','0000-00-00',2985,0,3063,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 18:04:35','','0000-00-00 00:00:00',0),(5005,0,0,4225,'2526','H','O',4647,'',0,'2025-11-25','0000-00-00',2685,0,2754,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 18:05:17','','0000-00-00 00:00:00',0),(5006,0,0,4226,'2526','H','O',4648,'',0,'2025-11-25','0000-00-00',2986,0,3064,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 18:05:50','','0000-00-00 00:00:00',0),(5007,0,0,4227,'2526','H','O',4649,'',0,'2025-11-25','0000-00-00',2987,0,3065,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 18:08:18','','0000-00-00 00:00:00',0),(5008,0,0,4229,'2526','H','O',4650,'',0,'2025-11-25','0000-00-00',2989,0,3067,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 18:11:20','','0000-00-00 00:00:00',0),(5009,0,0,4228,'2526','H','O',4651,'',0,'2025-11-25','0000-00-00',2988,0,3066,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','59562','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-25 18:11:33','','0000-00-00 00:00:00',0),(5010,0,0,4230,'2526','H','O',4652,'',0,'2025-11-25','0000-00-00',2536,0,2593,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 4672','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 18:14:18','reception','2025-11-25 19:06:31',0),(5011,0,0,4218,'2526','H','O',4653,'',0,'2025-11-25','0000-00-00',2980,0,3058,0,'D06','',0,4400.00,0.00,0.00,4400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 18:16:36','','0000-00-00 00:00:00',0),(5012,0,0,4231,'2526','H','O',4654,'',0,'2025-11-25','0000-00-00',2990,0,3068,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 18:18:23','','0000-00-00 00:00:00',0),(5013,0,0,4233,'2526','H','O',4655,'',0,'2025-11-25','0000-00-00',2991,0,3069,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 18:30:47','','0000-00-00 00:00:00',0),(5014,0,0,4232,'2526','H','O',4656,'',0,'2025-11-25','0000-00-00',2097,0,2150,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','7','IDBI','','08726','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 18:31:06','','0000-00-00 00:00:00',0),(5015,0,0,4235,'2526','H','O',4657,'',0,'2025-11-25','0000-00-00',1953,0,2001,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 18:32:39','','0000-00-00 00:00:00',0),(5016,0,0,4234,'2526','H','O',4658,'',0,'2025-11-25','0000-00-00',1018,0,1052,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 18:32:42','','0000-00-00 00:00:00',0),(5017,0,0,4236,'2526','H','O',4659,'',0,'2025-11-25','0000-00-00',2992,0,3070,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS','','63876','','SCAN',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 18:33:17','','0000-00-00 00:00:00',0),(5018,0,0,4226,'2526','H','O',4660,'',0,'2025-11-25','0000-00-00',2986,0,3064,0,'D06','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 18:35:16','','0000-00-00 00:00:00',0),(5019,0,0,4237,'2526','H','O',4661,'',0,'2025-11-25','0000-00-00',221,0,234,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 18:39:22','','0000-00-00 00:00:00',0),(5020,0,0,4238,'2526','H','O',4662,'',0,'2025-11-25','0000-00-00',2993,0,3071,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-25 18:43:23','','0000-00-00 00:00:00',0),(5021,0,0,4239,'2526','H','O',4663,'',0,'2025-11-25','0000-00-00',2994,0,3072,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-25 18:46:06','','0000-00-00 00:00:00',0),(5022,0,0,4229,'2526','H','O',4664,'',0,'2025-11-25','0000-00-00',2989,0,3067,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 18:48:24','','0000-00-00 00:00:00',0),(5023,0,0,4240,'2526','H','O',4665,'',0,'2025-11-25','0000-00-00',2995,0,3073,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 18:54:41','','0000-00-00 00:00:00',0),(5024,0,0,4241,'2526','H','O',4666,'',0,'2025-11-25','0000-00-00',2996,0,3074,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 18:56:50','','0000-00-00 00:00:00',0),(5025,0,0,4227,'2526','H','O',4667,'',0,'2025-11-25','0000-00-00',2987,0,3065,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 18:59:13','','0000-00-00 00:00:00',0),(5026,0,0,4217,'2526','H','O',4668,'',0,'2025-11-25','0000-00-00',2979,0,3057,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 19:00:29','','0000-00-00 00:00:00',0),(5027,0,0,4154,'2526','H','I',170,'',0,'2025-11-25','0000-00-00',0,195,3018,0,'D02','',0,12000.00,0.00,0.00,12000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-12000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-25 19:01:58','','0000-00-00 00:00:00',0),(5028,0,0,4242,'2526','H','O',4669,'',0,'2025-11-25','0000-00-00',2997,0,3075,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-25 19:03:17','','0000-00-00 00:00:00',0),(5029,0,0,4243,'2526','H','O',4670,'',0,'2025-11-25','0000-00-00',662,0,692,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','78423','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 19:03:47','','0000-00-00 00:00:00',0),(5030,0,0,4244,'2526','H','O',4671,'',0,'2025-11-25','0000-00-00',2998,0,3076,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 19:05:50','','0000-00-00 00:00:00',0),(5031,0,0,4230,'2526','H','O',4672,'',0,'2025-11-25','0000-00-00',2536,0,2593,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-25','Y','N','N','','N',0.00,'','Y','FOC','','HO 4652','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 19:06:31','reception','2025-11-25 19:07:22',0),(5032,0,0,4236,'2526','H','O',4673,'',0,'2025-11-25','0000-00-00',2992,0,3070,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','80076','','scan ',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 19:16:34','','0000-00-00 00:00:00',0),(5033,0,0,4246,'2526','H','O',4674,'',0,'2025-11-25','0000-00-00',2910,0,2988,0,'D02','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 19:35:28','','0000-00-00 00:00:00',0),(5034,0,0,4244,'2526','H','O',4675,'',0,'2025-11-25','0000-00-00',2998,0,3076,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-25 19:44:28','','0000-00-00 00:00:00',0),(5035,0,0,4247,'2526','H','O',4676,'',0,'2025-11-25','0000-00-00',2818,0,2887,0,'D27','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-25 19:48:54','','0000-00-00 00:00:00',0),(5036,0,0,4248,'2526','H','O',4677,'',0,'2025-11-25','0000-00-00',2033,0,2087,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 4678','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 19:50:33','janvi','2025-11-25 19:51:03',0),(5037,0,0,4248,'2526','H','O',4678,'',0,'2025-11-25','0000-00-00',2033,0,2087,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-11-25','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 4677','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 19:51:03','janvi','2025-11-25 19:51:25',0),(5038,0,0,4248,'2526','H','O',4679,'',0,'2025-11-25','0000-00-00',2033,0,2087,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bank','','04158','','scan                          ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 19:52:47','','0000-00-00 00:00:00',0),(5039,0,0,4252,'2526','H','O',4680,'',0,'2025-11-25','0000-00-00',1837,0,1883,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','77271','','scan     ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 20:03:37','','0000-00-00 00:00:00',0),(5040,0,0,4254,'2526','H','O',4681,'',0,'2025-11-25','0000-00-00',2999,0,3078,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 20:05:56','','0000-00-00 00:00:00',0),(5041,0,0,4255,'2526','H','O',4682,'',0,'2025-11-25','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-25 20:35:33','','0000-00-00 00:00:00',0),(5042,0,0,4253,'2526','H','O',4683,'',0,'2025-11-25','0000-00-00',2655,0,2725,0,'D14','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-25 20:36:36','','0000-00-00 00:00:00',0),(5043,0,0,4256,'2526','H','O',4684,'',0,'2025-11-26','0000-00-00',3000,0,3079,0,'D14','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak bank','','70528','','scan',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 08:54:03','','0000-00-00 00:00:00',0),(5044,0,0,4257,'2526','H','O',4685,'',0,'2025-11-26','0000-00-00',3001,0,3080,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 08:57:24','','0000-00-00 00:00:00',0),(5045,0,0,4258,'2526','H','O',4686,'',0,'2025-11-26','0000-00-00',3002,0,3081,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 09:37:14','','0000-00-00 00:00:00',0),(5046,0,0,4259,'2526','H','O',4687,'',0,'2025-11-26','0000-00-00',3003,0,3082,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','N','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 09:42:40','','0000-00-00 00:00:00',0),(5047,0,0,4260,'2526','H','O',4688,'',0,'2025-11-26','0000-00-00',3004,0,3083,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 09:44:41','','0000-00-00 00:00:00',0),(5048,0,0,4263,'2526','H','O',4689,'',0,'2025-11-26','0000-00-00',2785,0,2854,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 10:03:45','','0000-00-00 00:00:00',0),(5049,0,0,4262,'2526','H','O',4690,'',0,'2025-11-26','0000-00-00',3005,0,3084,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','union bank','','17816','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 10:05:15','','0000-00-00 00:00:00',0),(5050,0,0,4264,'2526','H','O',4691,'',0,'2025-11-26','0000-00-00',2526,0,2584,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 10:06:17','','0000-00-00 00:00:00',0),(5051,0,0,4267,'2526','H','O',4692,'',0,'2025-11-26','0000-00-00',1171,0,1210,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 10:38:46','','0000-00-00 00:00:00',0),(5052,0,0,4268,'2526','H','O',4693,'',0,'2025-11-26','0000-00-00',2677,0,2746,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','bank','','45828','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 10:41:13','','0000-00-00 00:00:00',0),(5053,0,0,4269,'2526','H','O',4694,'',0,'2025-11-26','0000-00-00',2070,0,2124,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 10:48:22','','0000-00-00 00:00:00',0),(5054,0,0,4270,'2526','H','O',4695,'',0,'2025-11-26','0000-00-00',3006,0,3086,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 10:54:23','','0000-00-00 00:00:00',0),(5055,0,0,4271,'2526','H','O',4696,'',2,'2025-11-26','0000-00-00',1288,0,1327,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'PENDING',0,'','7','bob','','91155','','',200.00,0,0,'2025-11-26','','N','Y','','N',0.00,'','Y','CANCEL','HO 4702','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 10:55:15','janvi','2025-11-26 11:16:15',0),(5056,0,0,4272,'2526','H','O',4697,'',0,'2025-11-26','0000-00-00',3007,0,3087,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 10:55:38','','0000-00-00 00:00:00',0),(5057,0,0,4273,'2526','H','O',4698,'',0,'2025-11-26','0000-00-00',3008,0,3088,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 10:59:27','','0000-00-00 00:00:00',0),(5058,0,0,4274,'2526','H','O',4699,'',0,'2025-11-26','0000-00-00',3009,0,3089,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 11:02:12','','0000-00-00 00:00:00',0),(5059,0,0,4275,'2526','H','O',4700,'',0,'2025-11-26','0000-00-00',3010,0,3090,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 11:10:07','','0000-00-00 00:00:00',0),(5060,0,0,4276,'2526','H','O',4701,'',0,'2025-11-26','0000-00-00',3011,0,3091,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','73478','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 11:14:32','','0000-00-00 00:00:00',0),(5061,0,0,4271,'2526','H','O',4702,'',0,'2025-11-26','0000-00-00',1288,0,1327,0,'D02','',0,-200.00,0.00,0.00,-200.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','bob','','91155','','',-200.00,0,0,'2025-11-26','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 4696','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 11:16:15','janvi','2025-11-26 11:17:13',0),(5062,0,0,4277,'2526','H','O',4703,'',0,'2025-11-26','0000-00-00',3012,0,3092,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 11:19:23','','0000-00-00 00:00:00',0),(5063,0,0,4278,'2526','H','O',4704,'',0,'2025-11-26','0000-00-00',3013,0,3093,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','46605','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 11:19:57','','0000-00-00 00:00:00',0),(5064,0,0,4271,'2526','H','O',4705,'',0,'2025-11-18','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','91155','','scan',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 08:01:00','','0000-00-00 00:00:00',0),(5065,0,0,4279,'2526','H','O',4706,'',0,'2025-11-26','0000-00-00',3014,0,3094,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 11:24:40','','0000-00-00 00:00:00',0),(5066,0,0,4280,'2526','H','O',4707,'',0,'2025-11-26','0000-00-00',3015,0,3095,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 11:27:18','','0000-00-00 00:00:00',0),(5067,0,0,4273,'2526','H','O',4708,'',0,'2025-11-26','0000-00-00',3008,0,3088,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 11:33:46','','0000-00-00 00:00:00',0),(5068,0,0,4281,'2526','H','O',4709,'',0,'2025-11-26','0000-00-00',1240,0,1281,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 11:37:57','','0000-00-00 00:00:00',0),(5069,0,0,4283,'2526','H','O',4710,'',0,'2025-11-26','0000-00-00',3016,0,3096,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 11:40:02','','0000-00-00 00:00:00',0),(5070,0,0,4282,'2526','H','O',4711,'',0,'2025-11-26','0000-00-00',2818,0,2887,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','57634','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 11:40:30','','0000-00-00 00:00:00',0),(5071,0,0,4284,'2526','H','O',4712,'',0,'2025-11-26','0000-00-00',3017,0,3097,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak bank','','53586','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 11:43:57','','0000-00-00 00:00:00',0),(5072,0,0,4285,'2526','H','O',4713,'',0,'2025-11-26','0000-00-00',3018,0,3098,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','44815','','scan                          ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 11:45:43','','0000-00-00 00:00:00',0),(5073,0,0,4286,'2526','H','O',4714,'',0,'2025-11-26','0000-00-00',2681,0,2750,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 11:47:23','','0000-00-00 00:00:00',0),(5074,0,0,4287,'2526','H','O',4715,'',0,'2025-11-26','0000-00-00',3019,0,3099,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 11:47:30','','0000-00-00 00:00:00',0),(5075,0,0,4288,'2526','H','O',4716,'',0,'2025-11-26','0000-00-00',3020,0,3100,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 11:48:48','','0000-00-00 00:00:00',0),(5076,0,0,4289,'2526','H','O',4717,'',0,'2025-11-26','0000-00-00',3021,0,3101,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOI','','22194','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 11:51:47','','0000-00-00 00:00:00',0),(5077,0,0,4290,'2526','H','O',4718,'',0,'2025-11-26','0000-00-00',3022,0,3102,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 11:53:26','','0000-00-00 00:00:00',0),(5078,0,0,4291,'2526','H','O',4719,'',0,'2025-11-26','0000-00-00',3023,0,3103,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 11:55:54','','0000-00-00 00:00:00',0),(5079,0,0,4292,'2526','H','O',4720,'',0,'2025-11-26','0000-00-00',240,0,255,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 11:56:59','','0000-00-00 00:00:00',0),(5080,0,0,4019,'2526','H','D',190,'',0,'2025-11-26','0000-00-00',0,189,2939,0,'D27','',0,17100.00,0.00,0.00,17100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6000,0,'0000-00-00','','N','N','F','N',11100.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-26 11:59:11','vishal','2025-11-26 12:04:09',0),(5081,0,0,4293,'2526','H','O',4721,'',0,'2025-11-26','0000-00-00',3024,0,3104,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 12:01:03','','0000-00-00 00:00:00',0),(5082,0,0,4294,'2526','H','O',4722,'',0,'2025-11-26','0000-00-00',822,0,853,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 12:03:21','','0000-00-00 00:00:00',0),(5083,0,0,4276,'2526','H','O',4723,'',0,'2025-11-26','0000-00-00',3011,0,3091,0,'D06','',0,6900.00,0.00,0.00,6900.00,1300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','97472','','scan',5600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 12:08:09','','0000-00-00 00:00:00',0),(5084,0,0,4158,'2526','H','D',191,'',0,'2025-11-26','0000-00-00',0,196,3021,0,'D27','',0,10900.00,0.00,0.00,10900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',3900.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-26 12:08:12','vishal','2025-11-26 12:29:57',0),(5085,0,0,4019,'2526','H','I',171,'',0,'2025-11-26','0000-00-00',0,189,2939,0,'D27','',0,17100.00,0.00,0.00,17100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-17100,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(5086,0,0,4296,'2526','H','O',4724,'',0,'2025-11-26','0000-00-00',508,0,533,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 12:14:14','','0000-00-00 00:00:00',0),(5087,0,0,4297,'2526','H','O',4725,'',0,'2025-11-26','0000-00-00',3026,0,3106,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','30468','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 12:16:23','','0000-00-00 00:00:00',0),(5088,0,0,4270,'2526','H','O',4726,'',0,'2025-11-26','0000-00-00',3006,0,3086,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 12:20:04','','0000-00-00 00:00:00',0),(5089,0,0,4285,'2526','H','O',4727,'',0,'2025-11-26','0000-00-00',3018,0,3098,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 12:20:50','','0000-00-00 00:00:00',0),(5090,0,0,4298,'2526','H','O',4728,'',0,'2025-11-26','0000-00-00',3027,0,3107,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 12:23:06','','0000-00-00 00:00:00',0),(5091,0,0,4299,'2526','H','O',4729,'',0,'2025-11-26','0000-00-00',3028,0,3108,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 12:26:26','','0000-00-00 00:00:00',0),(5092,0,0,4054,'2526','H','D',192,'',0,'2025-11-26','0000-00-00',0,192,2959,0,'D02','',0,60000.00,0.00,0.00,60000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-60000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-26 12:27:43','vishal','2025-11-26 13:05:24',0),(5093,0,0,4290,'2526','H','O',4730,'',0,'2025-11-26','0000-00-00',3022,0,3102,0,'D06','',0,6900.00,0.00,0.00,6900.00,1300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','central','','76439','','scan',5600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 12:28:48','','0000-00-00 00:00:00',0),(5094,0,0,4300,'2526','H','O',4731,'',0,'2025-11-26','0000-00-00',949,0,980,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 12:31:29','','0000-00-00 00:00:00',0),(5095,0,0,4158,'2526','H','I',172,'',0,'2025-11-26','0000-00-00',0,196,3021,0,'D27','',0,10900.00,0.00,0.00,10900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10900,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-26 12:33:57','','0000-00-00 00:00:00',0),(5096,0,0,4301,'2526','H','O',4732,'',0,'2025-11-26','0000-00-00',1137,0,1177,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 12:36:09','','0000-00-00 00:00:00',0),(5097,0,0,4287,'2526','H','O',4733,'',0,'2025-11-26','0000-00-00',3019,0,3099,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 12:46:30','','0000-00-00 00:00:00',0),(5098,0,0,4288,'2526','H','O',4734,'',0,'2025-11-26','0000-00-00',3020,0,3100,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 12:47:13','','0000-00-00 00:00:00',0),(5099,0,0,4302,'2526','H','O',4735,'',0,'2025-11-26','0000-00-00',3029,0,3109,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 12:48:49','','0000-00-00 00:00:00',0),(5100,0,0,4292,'2526','H','O',4736,'',0,'2025-11-26','0000-00-00',240,0,255,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 12:53:20','','0000-00-00 00:00:00',0),(5101,0,0,4054,'2526','H','I',173,'',0,'2025-11-26','0000-00-00',0,192,2959,0,'D02','',0,60000.00,0.00,0.00,60000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-60000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(5102,0,0,4302,'2526','H','O',4737,'',0,'2025-11-26','0000-00-00',3029,0,3109,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 13:12:08','','0000-00-00 00:00:00',0),(5104,0,0,4303,'2526','H','O',4738,'',0,'2025-11-26','0000-00-00',1533,0,452,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 13:17:18','','0000-00-00 00:00:00',0),(5105,0,0,3517,'2526','H','D',194,'',0,'2025-11-26','0000-00-00',0,165,2633,0,'D02','',0,236900.00,0.00,0.00,236900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-205000,0,'0000-00-00','','N','N','F','N',31900.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-26 13:33:18','riya','2025-11-26 14:16:31',0),(5106,0,0,4304,'2526','H','O',4739,'',0,'2025-11-26','0000-00-00',3030,0,3110,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 13:51:35','','0000-00-00 00:00:00',0),(5107,0,0,4303,'2526','H','O',4740,'',0,'2025-11-26','0000-00-00',1533,0,452,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-26 14:50:37','','0000-00-00 00:00:00',0),(5108,0,0,3517,'2526','H','I',174,'',0,'2025-11-26','0000-00-00',0,165,2633,0,'D02','',0,236900.00,0.00,0.00,236900.00,6900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-230000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(5109,0,0,4306,'2526','H','O',4741,'',0,'2025-11-26','0000-00-00',3031,0,3112,0,'D02','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','south indian','','78621','','scan ',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-26 15:28:06','','0000-00-00 00:00:00',0),(5110,0,0,4307,'2526','H','O',4742,'',0,'2025-11-26','0000-00-00',1298,0,1337,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 16:34:30','','0000-00-00 00:00:00',0),(5111,0,0,4309,'2526','H','O',4743,'',0,'2025-11-26','0000-00-00',345,0,361,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','80750','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 16:39:10','','0000-00-00 00:00:00',0),(5112,0,0,4311,'2526','H','O',4744,'',0,'2025-11-26','0000-00-00',1973,0,2021,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 16:47:34','','0000-00-00 00:00:00',0),(5113,0,0,4313,'2526','H','O',4745,'',0,'2025-11-26','0000-00-00',3033,0,3114,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 17:09:02','','0000-00-00 00:00:00',0),(5114,0,0,4313,'2526','H','O',4746,'',0,'2025-11-26','0000-00-00',3033,0,3114,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 17:30:37','','0000-00-00 00:00:00',0),(5115,0,0,4314,'2526','H','O',4747,'',0,'2025-11-26','0000-00-00',3034,0,3115,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 17:32:42','','0000-00-00 00:00:00',0),(5116,0,0,4315,'2526','H','O',4748,'',0,'2025-11-26','0000-00-00',2735,0,2805,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 17:36:44','','0000-00-00 00:00:00',0),(5117,0,0,4316,'2526','H','O',4749,'',0,'2025-11-26','0000-00-00',3035,0,3116,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','boi','','72817','','scan     ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 17:43:43','','0000-00-00 00:00:00',0),(5118,0,0,4317,'2526','H','O',4750,'',0,'2025-11-26','0000-00-00',3036,0,3117,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 17:46:48','','0000-00-00 00:00:00',0),(5119,0,0,4318,'2526','H','O',4751,'',0,'2025-11-26','0000-00-00',3037,0,3118,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 17:53:01','','0000-00-00 00:00:00',0),(5120,0,0,4319,'2526','H','O',4752,'',0,'2025-11-26','0000-00-00',3038,0,3119,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 17:55:17','','0000-00-00 00:00:00',0),(5121,0,0,4320,'2526','H','O',4753,'',0,'2025-11-26','0000-00-00',3039,0,3120,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 17:58:02','','0000-00-00 00:00:00',0),(5122,0,0,4321,'2526','H','O',4754,'',0,'2025-11-26','0000-00-00',2393,0,392,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 18:09:51','','0000-00-00 00:00:00',0),(5123,0,0,4322,'2526','H','O',4755,'',0,'2025-11-26','0000-00-00',3040,0,3121,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 18:11:53','','0000-00-00 00:00:00',0),(5124,0,0,4323,'2526','H','O',4756,'',0,'2025-11-26','0000-00-00',3041,0,3122,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 18:15:29','','0000-00-00 00:00:00',0),(5125,0,0,4319,'2526','H','O',4757,'',0,'2025-11-26','0000-00-00',3038,0,3119,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','29605','','scan                          ',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 18:17:11','','0000-00-00 00:00:00',0),(5126,0,0,4324,'2526','H','O',4758,'',0,'2025-11-26','0000-00-00',3042,0,3123,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','69221','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 18:20:48','','0000-00-00 00:00:00',0),(5127,0,0,4325,'2526','H','O',4759,'',0,'2025-11-26','0000-00-00',3043,0,3124,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 18:25:15','','0000-00-00 00:00:00',0),(5128,0,0,4326,'2526','H','O',4760,'',0,'2025-11-26','0000-00-00',2540,0,2597,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 4764','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 18:27:32','reception','2025-11-26 18:50:00',0),(5129,0,0,4327,'2526','H','O',4761,'',0,'2025-11-26','0000-00-00',3044,0,3125,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','85001','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 18:32:43','','0000-00-00 00:00:00',0),(5130,0,0,4328,'2526','H','O',4762,'',0,'2025-11-26','0000-00-00',2333,0,2389,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 18:34:31','','0000-00-00 00:00:00',0),(5131,0,0,4305,'2526','H','D',195,'',0,'2025-11-26','0000-00-00',0,204,3111,0,'D03','',0,10100.00,0.00,0.00,10100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',10100.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-26 18:40:53','riya','2025-11-26 19:24:51',0),(5132,0,0,4166,'2526','H','D',196,'',0,'2025-11-26','0000-00-00',2323,199,2380,0,'D02','',0,32850.00,0.00,0.00,32850.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-35000,0,'0000-00-00','','N','N','F','N',-2150.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-26 18:44:00','riya','2025-11-26 19:06:28',0),(5133,0,0,4329,'2526','H','O',4763,'',0,'2025-11-26','0000-00-00',3045,0,3126,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','77899','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 18:49:17','','0000-00-00 00:00:00',0),(5134,0,0,4326,'2526','H','O',4764,'',0,'2025-11-26','0000-00-00',2540,0,2597,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-26','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 4760','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 18:50:00','reception','2025-11-26 18:53:48',0),(5135,0,0,4330,'2526','H','O',4765,'',0,'2025-11-26','0000-00-00',332,0,348,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 18:52:31','','0000-00-00 00:00:00',0),(5136,0,0,4331,'2526','H','O',4766,'',0,'2025-11-26','0000-00-00',3046,0,3127,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 18:55:28','','0000-00-00 00:00:00',0),(5137,0,0,4332,'2526','H','O',4767,'',0,'2025-11-26','0000-00-00',1251,0,1292,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 18:56:01','','0000-00-00 00:00:00',0),(5138,0,0,4326,'2526','H','O',4768,'',0,'2025-11-26','0000-00-00',2540,0,2597,0,'D06','',0,500.00,0.00,0.00,500.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 18:56:39','','0000-00-00 00:00:00',0),(5139,0,0,4333,'2526','H','O',4769,'',0,'2025-11-26','0000-00-00',3047,0,3128,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 18:57:00','','0000-00-00 00:00:00',0),(5140,0,0,4334,'2526','H','O',4770,'',0,'2025-11-26','0000-00-00',3048,0,3129,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 19:00:41','','0000-00-00 00:00:00',0),(5141,0,0,4336,'2526','H','O',4771,'',0,'2025-11-26','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 19:02:04','','0000-00-00 00:00:00',0),(5142,0,0,4335,'2526','H','O',4772,'',0,'2025-11-26','0000-00-00',3049,0,3130,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 4778','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 19:02:13','reception','2025-11-26 19:19:06',0),(5143,0,0,4337,'2526','H','O',4773,'',0,'2025-11-26','0000-00-00',3050,0,3131,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 19:05:52','','0000-00-00 00:00:00',0),(5144,0,0,4327,'2526','H','O',4774,'',0,'2025-11-26','0000-00-00',3044,0,3125,0,'D02','',0,4000.00,0.00,0.00,4000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','52168','','scan ',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 19:12:47','','0000-00-00 00:00:00',0),(5145,0,0,4339,'2526','H','O',4775,'',0,'2025-11-26','0000-00-00',3052,0,3133,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 19:13:22','','0000-00-00 00:00:00',0),(5146,0,0,4338,'2526','H','O',4776,'',0,'2025-11-26','0000-00-00',3051,0,3132,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 19:13:39','','0000-00-00 00:00:00',0),(5147,0,0,4340,'2526','H','O',4777,'',0,'2025-11-26','0000-00-00',3053,0,3134,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 19:17:44','','0000-00-00 00:00:00',0),(5148,0,0,4335,'2526','H','O',4778,'',0,'2025-11-26','0000-00-00',3049,0,3130,0,'D06','',0,-800.00,0.00,0.00,-800.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-800.00,0,0,'2025-11-26','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 4772','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 19:19:06','reception','2025-11-26 19:19:44',0),(5149,0,0,4335,'2526','H','O',4779,'',0,'2025-11-26','0000-00-00',3049,0,3130,0,'D06','',0,800.00,0.00,0.00,800.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 19:23:28','','0000-00-00 00:00:00',0),(5150,0,0,4343,'2526','H','O',4780,'',0,'2025-11-26','0000-00-00',1343,0,1383,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 19:25:23','','0000-00-00 00:00:00',0),(5151,0,0,4305,'2526','H','I',175,'',0,'2025-11-26','0000-00-00',0,204,3111,0,'D03','',0,10100.00,0.00,0.00,10100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10100,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-26 19:27:15','','0000-00-00 00:00:00',0),(5152,0,0,4344,'2526','H','O',4781,'',0,'2025-11-26','0000-00-00',3055,0,3136,0,'D03','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-26 19:29:49','','0000-00-00 00:00:00',0),(5153,0,0,4345,'2526','H','O',4782,'',0,'2025-11-26','0000-00-00',3056,0,3137,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 19:30:26','','0000-00-00 00:00:00',0),(5154,0,0,4346,'2526','H','O',4783,'',0,'2025-11-26','0000-00-00',3057,0,3138,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 4788','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 19:49:04','drashti','2025-11-26 20:13:18',0),(5155,0,0,4347,'2526','H','O',4784,'',0,'2025-11-26','0000-00-00',3058,0,3139,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-26 19:53:32','','0000-00-00 00:00:00',0),(5156,0,0,4344,'2526','H','O',4785,'',0,'2025-11-26','0000-00-00',3055,0,3136,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-26 19:55:10','','0000-00-00 00:00:00',0),(5157,0,0,4348,'2526','H','O',4786,'',0,'2025-11-26','0000-00-00',3059,0,3140,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 19:56:07','','0000-00-00 00:00:00',0),(5158,0,0,4334,'2526','H','O',4787,'',0,'2025-11-26','0000-00-00',3048,0,3129,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-26 19:59:22','','0000-00-00 00:00:00',0),(5159,0,0,4346,'2526','H','O',4788,'',0,'2025-11-26','0000-00-00',3057,0,3138,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-11-26','Y','N','N','','N',0.00,'','Y','FOC','','HO 4783','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-26 20:13:18','drashti','2025-11-26 20:14:00',0),(5160,0,0,4166,'2526','H','I',176,'',0,'2025-11-26','0000-00-00',2323,199,2380,0,'D02','',0,32850.00,0.00,0.00,32850.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-2150.00,-35000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(5161,0,0,4352,'2526','H','O',4789,'',0,'2025-11-27','0000-00-00',3060,0,3144,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 08:46:36','','0000-00-00 00:00:00',0),(5162,0,0,4353,'2526','H','O',4790,'',0,'2025-11-27','0000-00-00',3061,0,3145,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 08:49:19','','0000-00-00 00:00:00',0),(5163,0,0,4354,'2526','H','O',4791,'',0,'2025-11-27','0000-00-00',3062,0,3146,0,'D27','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 08:51:35','','0000-00-00 00:00:00',0),(5164,0,0,4355,'2526','H','O',4792,'',0,'2025-11-27','0000-00-00',3063,0,3147,0,'D03','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 08:53:35','','0000-00-00 00:00:00',0),(5165,0,0,4356,'2526','H','O',4793,'',0,'2025-11-27','0000-00-00',3064,0,3148,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 09:13:49','','0000-00-00 00:00:00',0),(5166,0,0,4349,'2526','H','D',197,'',0,'2025-11-27','0000-00-00',0,205,3141,0,'D02','',0,6500.00,0.00,0.00,6500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-5000,0,'0000-00-00','','N','N','F','N',1500.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-27 09:22:48','','0000-00-00 00:00:00',0),(5167,0,0,4349,'2526','H','I',177,'',0,'2025-11-27','0000-00-00',0,205,3141,0,'D02','',0,5000.00,0.00,0.00,5000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-5000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-27 09:28:14','','0000-00-00 00:00:00',0),(5168,0,0,4358,'2526','H','O',4794,'',0,'2025-11-27','0000-00-00',3065,0,3150,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 09:44:56','','0000-00-00 00:00:00',0),(5169,0,0,4360,'2526','H','O',4795,'',0,'2025-11-27','0000-00-00',1854,0,1900,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 09:48:43','','0000-00-00 00:00:00',0),(5170,0,0,4361,'2526','H','O',4796,'',0,'2025-11-27','0000-00-00',3066,0,3152,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 09:53:44','','0000-00-00 00:00:00',0),(5171,0,0,4362,'2526','H','O',4797,'',0,'2025-11-27','0000-00-00',2563,0,2623,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 09:55:42','','0000-00-00 00:00:00',0),(5172,0,0,4364,'2526','H','O',4798,'',0,'2025-11-27','0000-00-00',3054,0,3135,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 10:04:26','','0000-00-00 00:00:00',0),(5173,0,0,4365,'2526','H','O',4799,'',0,'2025-11-27','0000-00-00',1471,0,1512,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 10:07:51','','0000-00-00 00:00:00',0),(5174,0,0,4366,'2526','H','O',4800,'',0,'2025-11-27','0000-00-00',3068,0,3154,0,'D02','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 10:16:50','','0000-00-00 00:00:00',0),(5175,0,0,4368,'2526','H','O',4801,'',0,'2025-11-27','0000-00-00',3070,0,3156,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 10:20:11','','0000-00-00 00:00:00',0),(5176,0,0,4367,'2526','H','O',4802,'',0,'2025-11-27','0000-00-00',3069,0,3155,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 10:20:17','','0000-00-00 00:00:00',0),(5177,0,0,4366,'2526','H','O',4803,'',0,'2025-11-27','0000-00-00',3068,0,3154,0,'D02','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-400.00,0,0,'0000-00-00','Y','Y','N','F','N',0.00,'','N','','','HO4800','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 10:21:37','','0000-00-00 00:00:00',0),(5178,0,0,4366,'2526','H','O',4804,'',0,'2025-11-27','0000-00-00',3068,0,3154,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 10:21:48','','0000-00-00 00:00:00',0),(5179,0,0,4369,'2526','H','O',4805,'',0,'2025-11-27','0000-00-00',2889,0,2966,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','REFUNDED ','HO 4831','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 10:34:26','priyanshi','2025-11-27 11:39:42',0),(5180,0,0,4370,'2526','H','O',4806,'',0,'2025-11-27','0000-00-00',3071,0,3157,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 10:36:10','','0000-00-00 00:00:00',0),(5181,0,0,4372,'2526','H','O',4807,'',0,'2025-11-27','0000-00-00',3073,0,3159,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 10:38:07','','0000-00-00 00:00:00',0),(5182,0,0,4371,'2526','H','O',4808,'',0,'2025-11-27','0000-00-00',3072,0,3158,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 10:38:27','','0000-00-00 00:00:00',0),(5183,0,0,4373,'2526','H','O',4809,'',0,'2025-11-27','0000-00-00',3074,0,3160,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 10:38:39','','0000-00-00 00:00:00',0),(5184,0,0,4374,'2526','H','O',4810,'',0,'2025-11-27','0000-00-00',3075,0,3161,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 10:39:49','','0000-00-00 00:00:00',0),(5185,0,0,4376,'2526','H','O',4811,'',0,'2025-11-27','0000-00-00',3077,0,3163,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 10:41:59','','0000-00-00 00:00:00',0),(5186,0,0,4377,'2526','H','O',4812,'',0,'2025-11-27','0000-00-00',3078,0,3164,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','22300','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 10:44:49','','0000-00-00 00:00:00',0),(5187,0,0,4378,'2526','H','O',4813,'',0,'2025-11-27','0000-00-00',3079,0,3165,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 10:45:12','','0000-00-00 00:00:00',0),(5188,0,0,4375,'2526','H','O',4814,'',0,'2025-11-27','0000-00-00',3076,0,3162,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','22300','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 10:45:17','','0000-00-00 00:00:00',0),(5189,0,0,4379,'2526','H','O',4815,'',0,'2025-11-27','0000-00-00',3080,0,3166,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','28529','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 10:50:04','','0000-00-00 00:00:00',0),(5190,0,0,4380,'2526','H','O',4816,'',0,'2025-11-27','0000-00-00',3081,0,3167,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','300 DISCOUNT','HO 4833','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 10:51:28','priyanshi','2025-11-27 11:42:17',0),(5191,0,0,4381,'2526','H','O',4817,'',0,'2025-11-27','0000-00-00',2115,0,2167,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','rbl','','19642','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 10:52:11','','0000-00-00 00:00:00',0),(5192,0,0,4382,'2526','H','O',4818,'',0,'2025-11-27','0000-00-00',1070,0,1110,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 10:54:26','','0000-00-00 00:00:00',0),(5193,0,0,4383,'2526','H','O',4819,'',0,'2025-11-27','0000-00-00',3021,0,3101,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 10:55:10','','0000-00-00 00:00:00',0),(5194,0,0,4384,'2526','H','O',4820,'',0,'2025-11-27','0000-00-00',3082,0,3168,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-27 11:04:25','','0000-00-00 00:00:00',0),(5195,0,0,4385,'2526','H','O',4821,'',0,'2025-11-27','0000-00-00',3083,0,3169,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 11:06:26','','0000-00-00 00:00:00',0),(5196,0,0,4386,'2526','H','O',4822,'',0,'2025-11-27','0000-00-00',2566,0,2626,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 11:14:47','','0000-00-00 00:00:00',0),(5197,0,0,4387,'2526','H','O',4823,'',0,'2025-11-27','0000-00-00',3084,0,3170,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 11:17:25','','0000-00-00 00:00:00',0),(5198,0,0,4388,'2526','H','O',4824,'',0,'2025-11-27','0000-00-00',1378,0,1419,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 11:20:02','','0000-00-00 00:00:00',0),(5199,0,0,4389,'2526','H','O',4825,'',0,'2025-11-27','0000-00-00',3085,0,3171,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 11:22:10','','0000-00-00 00:00:00',0),(5200,0,0,4378,'2526','H','O',4826,'',0,'2025-11-27','0000-00-00',3079,0,3165,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 11:24:26','','0000-00-00 00:00:00',0),(5201,0,0,4390,'2526','H','O',4827,'',0,'2025-11-27','0000-00-00',3086,0,3172,0,'D27','',0,450.00,0.00,0.00,450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',450.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 11:24:49','','0000-00-00 00:00:00',0),(5202,0,0,4391,'2526','H','O',4828,'',0,'2025-11-27','0000-00-00',3087,0,3173,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 11:29:02','','0000-00-00 00:00:00',0),(5203,0,0,4392,'2526','H','O',4829,'',0,'2025-11-27','0000-00-00',49,0,55,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 11:32:16','','0000-00-00 00:00:00',0),(5204,0,0,4393,'2526','H','O',4830,'',0,'2025-11-27','0000-00-00',1653,0,1698,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-27 11:37:07','','0000-00-00 00:00:00',0),(5205,0,0,4369,'2526','H','O',4831,'',0,'2025-11-27','0000-00-00',2889,0,2966,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-11-27','Y','N','N','','N',0.00,'','Y','REFUNDED ','','HO 4805','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-27 11:39:42','priyanshi','2025-11-27 11:40:23',0),(5206,0,0,4379,'2526','H','O',4832,'',0,'2025-11-27','0000-00-00',3080,0,3166,0,'D06','',0,7000.00,0.00,0.00,7000.00,1600.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 11:40:33','','0000-00-00 00:00:00',0),(5207,0,0,4380,'2526','H','O',4833,'',0,'2025-11-27','0000-00-00',3081,0,3167,0,'D27','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-11-27','Y','N','N','','N',0.00,'','Y','300 DISCOUNT','','HO 4816','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-27 11:42:17','priyanshi','2025-11-27 11:42:50',0),(5208,0,0,4394,'2526','H','O',4834,'',0,'2025-11-27','0000-00-00',2543,0,2600,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 11:42:54','','0000-00-00 00:00:00',0),(5209,0,0,4374,'2526','H','O',4835,'',0,'2025-11-27','0000-00-00',3075,0,3161,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 11:42:55','','0000-00-00 00:00:00',0),(5210,0,0,4380,'2526','H','O',4836,'',0,'2025-11-27','0000-00-00',3081,0,3167,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-27 11:44:19','','0000-00-00 00:00:00',0),(5211,0,0,4391,'2526','H','O',4837,'',0,'2025-11-27','0000-00-00',3087,0,3173,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-27 11:54:02','','0000-00-00 00:00:00',0),(5212,0,0,4395,'2526','H','O',4838,'',0,'2025-11-27','0000-00-00',2471,0,2529,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-27 11:58:26','','0000-00-00 00:00:00',0),(5213,0,0,4396,'2526','H','O',4839,'',0,'2025-11-27','0000-00-00',3088,0,3174,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 12:02:30','','0000-00-00 00:00:00',0),(5214,0,0,4397,'2526','H','O',4840,'',0,'2025-11-27','0000-00-00',3089,0,3175,0,'D06','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-27 12:03:04','','0000-00-00 00:00:00',0),(5215,0,0,4398,'2526','H','O',4841,'',0,'2025-11-27','0000-00-00',3090,0,3176,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 12:12:30','','0000-00-00 00:00:00',0),(5216,0,0,4364,'2526','H','O',4842,'',0,'2025-11-27','0000-00-00',3054,0,3135,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 12:12:44','','0000-00-00 00:00:00',0),(5217,0,0,4399,'2526','H','O',4843,'',0,'2025-11-27','0000-00-00',3091,0,3177,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 12:18:51','','0000-00-00 00:00:00',0),(5218,0,0,4400,'2526','H','O',4844,'',0,'2025-11-27','0000-00-00',3092,0,2919,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 12:22:05','','0000-00-00 00:00:00',0),(5219,0,0,4398,'2526','H','O',4845,'',0,'2025-11-27','0000-00-00',3090,0,3176,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 12:22:10','','0000-00-00 00:00:00',0),(5220,0,0,4125,'2526','H','D',198,'',0,'2025-11-27','0000-00-00',0,194,2612,0,'D27','',0,25950.00,0.00,0.00,25950.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',10950.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-27 12:23:36','riya','2025-11-27 13:22:41',0),(5221,0,0,4400,'2526','H','O',4846,'',0,'2025-11-27','0000-00-00',3092,0,2919,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 12:27:27','','0000-00-00 00:00:00',0),(5222,0,0,4357,'2526','H','D',199,'',0,'2025-11-27','0000-00-00',0,208,3149,0,'D27','',0,5800.00,0.00,0.00,5800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',-1200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-27 12:32:58','riya','2025-11-27 12:47:54',0),(5223,0,0,4401,'2526','H','O',4847,'',0,'2025-11-27','0000-00-00',3093,0,3178,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-27 12:36:34','','0000-00-00 00:00:00',0),(5224,0,0,4373,'2526','H','O',4848,'',0,'2025-11-27','0000-00-00',3074,0,3160,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 12:45:00','','0000-00-00 00:00:00',0),(5225,0,0,4402,'2526','H','O',4849,'',0,'2025-11-27','0000-00-00',632,0,662,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 12:47:49','','0000-00-00 00:00:00',0),(5226,0,0,4357,'2526','H','I',178,'',0,'2025-11-27','0000-00-00',0,208,3149,0,'D27','',0,5800.00,0.00,0.00,5800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-1200.00,-7000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-27 12:50:00','','0000-00-00 00:00:00',0),(5227,0,0,4403,'2526','H','O',4850,'',0,'2025-11-27','0000-00-00',1883,0,1930,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','36046','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-27 12:51:58','','0000-00-00 00:00:00',0),(5228,0,0,4399,'2526','H','O',4851,'',0,'2025-11-27','0000-00-00',3091,0,3177,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 12:56:28','','0000-00-00 00:00:00',0),(5229,0,0,4398,'2526','H','O',4852,'',0,'2025-11-27','0000-00-00',3090,0,3176,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','CRD','VMC','','74423','','CARD',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-11-27 13:01:36','','0000-00-00 00:00:00',0),(5230,0,0,4394,'2526','H','O',4853,'',0,'2025-11-27','0000-00-00',2543,0,2600,0,'D02','',0,4000.00,0.00,0.00,4000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 13:12:33','','0000-00-00 00:00:00',0),(5231,0,0,4404,'2526','H','O',4854,'',0,'2025-11-27','0000-00-00',3094,0,3179,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 13:16:18','','0000-00-00 00:00:00',0),(5232,0,0,4405,'2526','H','O',4855,'',0,'2025-11-27','0000-00-00',3095,0,3180,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 13:20:30','','0000-00-00 00:00:00',0),(5233,0,0,4381,'2526','H','O',4856,'',0,'2025-11-27','0000-00-00',2115,0,2167,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','rbl bank','','39753','','scan  ',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 13:26:30','','0000-00-00 00:00:00',0),(5234,0,0,4125,'2526','H','I',179,'',0,'2025-11-27','0000-00-00',0,194,2612,0,'D27','',0,25950.00,0.00,0.00,25950.00,2600.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-23350,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(5235,0,0,4350,'2526','H','D',200,'',0,'2025-11-27','0000-00-00',0,206,3142,0,'D27','',0,12800.00,0.00,0.00,12800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',-2200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-27 13:40:29','','0000-00-00 00:00:00',0),(5236,0,0,4350,'2526','H','I',180,'',0,'2025-11-27','0000-00-00',0,206,3142,0,'D27','',0,12800.00,0.00,0.00,12800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-2200.00,-15000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-27 13:41:11','','0000-00-00 00:00:00',0),(5237,0,0,4405,'2526','H','O',4857,'',0,'2025-11-27','0000-00-00',3095,0,3180,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 13:54:19','','0000-00-00 00:00:00',0),(5238,0,0,3959,'2526','H','D',201,'',0,'2025-11-27','0000-00-00',0,183,2897,0,'D27','',0,167250.00,0.00,0.00,167250.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-120000,0,'0000-00-00','','N','N','F','N',47250.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-27 14:18:23','riya','2025-11-27 14:43:39',0),(5239,0,0,4406,'2526','H','O',4858,'',0,'2025-11-27','0000-00-00',3096,0,3181,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','44980','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 14:32:25','','0000-00-00 00:00:00',0),(5240,0,0,3959,'2526','H','I',181,'',0,'2025-11-27','0000-00-00',0,183,2897,0,'D27','',0,167250.00,0.00,0.00,167250.00,10250.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-157000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(5241,0,0,4406,'2526','H','O',4859,'',0,'2025-11-27','0000-00-00',3096,0,3181,0,'D06','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 14:51:27','','0000-00-00 00:00:00',0),(5242,0,0,4407,'2526','H','O',4860,'',0,'2025-11-27','0000-00-00',3028,0,3108,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 14:57:13','','0000-00-00 00:00:00',0),(5243,0,0,4411,'2526','H','O',4861,'',0,'2025-11-27','0000-00-00',2615,0,2680,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 16:26:29','','0000-00-00 00:00:00',0),(5244,0,0,4412,'2526','H','O',4862,'',0,'2025-11-27','0000-00-00',1644,0,1689,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 16:27:03','','0000-00-00 00:00:00',0),(5245,0,0,4413,'2526','H','O',4863,'',0,'2025-11-27','0000-00-00',3097,0,3183,0,'D27','',0,2500.00,0.00,0.00,2500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 16:41:40','','0000-00-00 00:00:00',0),(5246,0,0,4414,'2526','H','O',4864,'',0,'2025-11-27','0000-00-00',1032,0,1066,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 16:45:11','','0000-00-00 00:00:00',0),(5247,0,0,4415,'2526','H','O',4865,'',0,'2025-11-27','0000-00-00',3098,0,3184,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 16:55:04','','0000-00-00 00:00:00',0),(5248,0,0,4418,'2526','H','O',4866,'',0,'2025-11-27','0000-00-00',3100,0,3187,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-27 17:03:48','','0000-00-00 00:00:00',0),(5249,0,0,4416,'2526','H','O',4867,'',0,'2025-11-27','0000-00-00',3099,0,3185,0,'D02','',0,1250.00,0.00,0.00,1250.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1250.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 17:04:18','','0000-00-00 00:00:00',0),(5250,0,0,4419,'2526','H','O',4868,'',0,'2025-11-27','0000-00-00',2604,0,2666,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 17:12:35','','0000-00-00 00:00:00',0),(5251,0,0,4420,'2526','H','O',4869,'',0,'2025-11-27','0000-00-00',3101,0,3188,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 17:27:20','','0000-00-00 00:00:00',0),(5252,0,0,4421,'2526','H','O',4870,'',0,'2025-11-27','0000-00-00',3102,0,3189,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','08451','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 17:35:46','','0000-00-00 00:00:00',0),(5253,0,0,4422,'2526','H','O',4871,'',0,'2025-11-27','0000-00-00',3103,0,3190,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 17:40:13','','0000-00-00 00:00:00',0),(5254,0,0,4423,'2526','H','O',4872,'',0,'2025-11-27','0000-00-00',2528,0,1616,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-27 17:40:23','','0000-00-00 00:00:00',0),(5255,0,0,4410,'2526','H','O',4873,'',0,'2025-11-27','0000-00-00',47,0,53,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 17:40:23','','0000-00-00 00:00:00',0),(5256,0,0,4426,'2526','H','O',4874,'',0,'2025-11-27','0000-00-00',3105,0,3192,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 17:45:22','','0000-00-00 00:00:00',0),(5257,0,0,4425,'2526','H','O',4875,'',0,'2025-11-27','0000-00-00',3104,0,3191,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 17:45:34','','0000-00-00 00:00:00',0),(5258,0,0,4427,'2526','H','O',4876,'',0,'2025-11-27','0000-00-00',2710,0,2781,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-27 17:50:18','','0000-00-00 00:00:00',0),(5259,0,0,4428,'2526','H','O',4877,'',0,'2025-11-27','0000-00-00',751,0,783,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 17:52:22','','0000-00-00 00:00:00',0),(5260,0,0,4429,'2526','H','O',4878,'',0,'2025-11-27','0000-00-00',1540,0,1583,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 17:59:54','','0000-00-00 00:00:00',0),(5261,0,0,4431,'2526','H','O',4879,'',0,'2025-11-27','0000-00-00',3106,0,3193,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 18:04:20','','0000-00-00 00:00:00',0),(5262,0,0,4432,'2526','H','O',4880,'',0,'2025-11-27','0000-00-00',2521,0,2579,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 18:08:11','','0000-00-00 00:00:00',0),(5263,0,0,4433,'2526','H','O',4881,'',0,'2025-11-27','0000-00-00',3107,0,3194,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-27 18:08:29','','0000-00-00 00:00:00',0),(5264,0,0,4434,'2526','H','O',4882,'',0,'2025-11-27','0000-00-00',3108,0,3195,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 18:10:21','','0000-00-00 00:00:00',0),(5265,0,0,4436,'2526','H','O',4883,'',0,'2025-11-27','0000-00-00',3109,0,3196,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 18:13:02','','0000-00-00 00:00:00',0),(5266,0,0,4437,'2526','H','O',4884,'',0,'2025-11-27','0000-00-00',3110,0,3197,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','HO 4899','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-27 18:15:08','manshi','2025-11-27 18:31:16',0),(5267,0,0,4439,'2526','H','O',4885,'',0,'2025-11-27','0000-00-00',2245,0,2301,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-27 18:17:14','','0000-00-00 00:00:00',0),(5268,0,0,4440,'2526','H','O',4886,'',0,'2025-11-27','0000-00-00',3112,0,3199,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 18:17:21','','0000-00-00 00:00:00',0),(5269,0,0,4438,'2526','H','O',4887,'',0,'2025-11-27','0000-00-00',3111,0,3198,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','IDFC BANK','','53688','','SCAN',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','HO 4911','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-27 18:18:52','manshi','2025-11-27 18:54:18',0),(5270,0,0,4442,'2526','H','O',4888,'',0,'2025-11-27','0000-00-00',3113,0,3200,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','HO 4914','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-27 18:20:33','manshi','2025-11-27 18:59:26',0),(5271,0,0,4424,'2526','H','O',4889,'',0,'2025-11-27','0000-00-00',1976,0,2024,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 18:20:58','','0000-00-00 00:00:00',0),(5272,0,0,4425,'2526','H','O',4890,'',0,'2025-11-27','0000-00-00',3104,0,3191,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 18:21:24','','0000-00-00 00:00:00',0),(5273,0,0,4426,'2526','H','O',4891,'',0,'2025-11-27','0000-00-00',3105,0,3192,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 18:21:52','','0000-00-00 00:00:00',0),(5274,0,0,4430,'2526','H','O',4892,'',0,'2025-11-27','0000-00-00',1968,0,2016,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','canara bank','','69837','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 18:23:23','','0000-00-00 00:00:00',0),(5275,0,0,4444,'2526','H','O',4893,'',0,'2025-11-27','0000-00-00',270,0,286,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','59189','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 18:23:48','','0000-00-00 00:00:00',0),(5276,0,0,4433,'2526','H','O',4894,'',0,'2025-11-27','0000-00-00',3107,0,3194,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-27 18:25:31','','0000-00-00 00:00:00',0),(5277,0,0,4445,'2526','H','O',4895,'',0,'2025-11-27','0000-00-00',3114,0,2933,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 18:25:48','','0000-00-00 00:00:00',0),(5278,0,0,4446,'2526','H','O',4896,'',0,'2025-11-27','0000-00-00',3115,0,3201,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 4909','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 18:27:39','drashti','2025-11-27 18:50:04',0),(5279,0,0,4447,'2526','H','O',4897,'',0,'2025-11-27','0000-00-00',3116,0,3202,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 18:29:50','','0000-00-00 00:00:00',0),(5280,0,0,4448,'2526','H','O',4898,'',0,'2025-11-27','0000-00-00',2817,0,2886,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-27 18:30:18','','0000-00-00 00:00:00',0),(5281,0,0,4437,'2526','H','O',4899,'',0,'2025-11-27','0000-00-00',3110,0,3197,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-27','Y','N','N','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','','HO 4884','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-27 18:31:16','manshi','2025-11-27 18:31:33',0),(5282,0,0,4449,'2526','H','O',4900,'',0,'2025-11-27','0000-00-00',3117,0,3203,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','INDUSLAND BANK','','59157','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 18:31:36','','0000-00-00 00:00:00',0),(5283,0,0,4450,'2526','H','O',4901,'',0,'2025-11-27','0000-00-00',3118,0,3204,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 18:32:23','','0000-00-00 00:00:00',0),(5284,0,0,4443,'2526','H','O',4902,'',0,'2025-11-27','0000-00-00',2247,0,2304,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 18:33:03','','0000-00-00 00:00:00',0),(5285,0,0,4451,'2526','H','O',4903,'',0,'2025-11-27','0000-00-00',1071,0,1111,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','89389','','scan ',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 4912','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 18:33:14','drashti','2025-11-27 18:56:14',0),(5286,0,0,4452,'2526','H','O',4904,'',0,'2025-11-27','0000-00-00',3119,0,3205,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 18:35:17','','0000-00-00 00:00:00',0),(5287,0,0,4453,'2526','H','O',4905,'',0,'2025-11-27','0000-00-00',2090,0,2144,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 18:36:45','','0000-00-00 00:00:00',0),(5288,0,0,4455,'2526','H','O',4906,'',0,'2025-11-27','0000-00-00',3120,0,3206,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','67325','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 18:46:45','','0000-00-00 00:00:00',0),(5289,0,0,4436,'2526','H','O',4907,'',0,'2025-11-27','0000-00-00',3109,0,3196,0,'D06','',0,6600.00,0.00,0.00,6600.00,1100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 18:47:24','','0000-00-00 00:00:00',0),(5290,0,0,4456,'2526','H','O',4908,'',0,'2025-11-27','0000-00-00',2118,0,1763,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 18:47:43','','0000-00-00 00:00:00',0),(5291,0,0,4446,'2526','H','O',4909,'',0,'2025-11-27','0000-00-00',3115,0,3201,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-11-27','Y','N','N','','N',0.00,'','Y','FOC','','HO 4896','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 18:50:04','drashti','2025-11-27 18:50:42',0),(5292,0,0,4438,'2526','H','O',4910,'',0,'2025-11-27','0000-00-00',3111,0,3198,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','IDFC BANK','','13041','','SCAN',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-27 18:53:40','','0000-00-00 00:00:00',0),(5293,0,0,4438,'2526','H','O',4911,'',0,'2025-11-27','0000-00-00',3111,0,3198,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','IDFC BANK','','53688','','SCAN',-500.00,0,0,'2025-11-27','Y','N','N','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','','HO 4887','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-27 18:54:18','manshi','2025-11-27 18:55:37',0),(5294,0,0,4451,'2526','H','O',4912,'',0,'2025-11-27','0000-00-00',1071,0,1111,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','HDFC BANK','','89389','','',-400.00,0,0,'2025-11-27','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 4903','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 18:56:14','drashti','2025-11-27 18:57:31',0),(5295,0,0,4458,'2526','H','O',4913,'',0,'2025-11-27','0000-00-00',3122,0,3208,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','79379','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 18:58:13','','0000-00-00 00:00:00',0),(5296,0,0,4442,'2526','H','O',4914,'',0,'2025-11-27','0000-00-00',3113,0,3200,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-27','Y','N','N','','N',0.00,'','Y','FOC BY DR.SAGAR KHANPARA','','HO 4888','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-27 18:59:26','manshi','2025-11-27 18:59:49',0),(5297,0,0,4457,'2526','H','O',4915,'',0,'2025-11-27','0000-00-00',3121,0,3207,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','CRD','icici','74423','74423','','CARD',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 18:59:47','','0000-00-00 00:00:00',0),(5298,0,0,4459,'2526','H','O',4916,'',0,'2025-11-27','0000-00-00',3123,0,3209,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 19:00:55','','0000-00-00 00:00:00',0),(5299,0,0,4460,'2526','H','O',4917,'',0,'2025-11-27','0000-00-00',3124,0,3210,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 19:01:38','','0000-00-00 00:00:00',0),(5300,0,0,4461,'2526','H','O',4918,'',0,'2025-11-27','0000-00-00',565,0,592,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 19:01:50','','0000-00-00 00:00:00',0),(5301,0,0,4439,'2526','H','O',4919,'',0,'2025-11-27','0000-00-00',2245,0,2301,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-27 19:04:20','','0000-00-00 00:00:00',0),(5302,0,0,4463,'2526','H','O',4920,'',0,'2025-11-27','0000-00-00',3125,0,3211,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','66170','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 19:09:20','','0000-00-00 00:00:00',0),(5303,0,0,4464,'2526','H','O',4921,'',0,'2025-11-27','0000-00-00',3119,0,3205,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-27 19:10:01','','0000-00-00 00:00:00',0),(5304,0,0,4161,'2526','H','D',202,'',0,'2025-11-27','0000-00-00',2711,198,2782,0,'D02','',0,93100.00,0.00,0.00,93100.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-80000,0,'0000-00-00','','N','N','F','N',13000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-27 19:20:31','riya','2025-11-27 20:45:00',0),(5305,0,0,4465,'2526','H','O',4922,'',0,'2025-11-27','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','72086','','scan  ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-27 19:26:20','','0000-00-00 00:00:00',0),(5306,0,0,4265,'2526','H','D',203,'',0,'2025-11-27','0000-00-00',2903,202,2980,0,'D02','',0,50000.00,0.00,0.00,50000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-45000,0,'0000-00-00','','N','N','F','N',5000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-27 19:32:31','riya','2025-11-27 19:41:31',0),(5307,0,0,4265,'2526','H','I',182,'',0,'2025-11-27','0000-00-00',2903,202,2980,0,'D02','',0,50000.00,0.00,0.00,50000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-50000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(5308,0,0,4466,'2526','H','O',4923,'',0,'2025-11-27','0000-00-00',3126,0,3212,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 20:14:28','','0000-00-00 00:00:00',0),(5309,0,0,4467,'2526','H','O',4924,'',0,'2025-11-27','0000-00-00',1375,0,1416,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','73903','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 20:39:46','','0000-00-00 00:00:00',0),(5310,0,0,4468,'2526','H','O',4925,'',0,'2025-11-27','0000-00-00',3127,0,3213,0,'D06','',0,2800.00,0.00,0.00,2800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','90103','','scan',2800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-27 20:45:50','','0000-00-00 00:00:00',0),(5311,0,0,4161,'2526','H','I',183,'',0,'2025-11-27','0000-00-00',2711,198,2782,0,'D02','',0,93100.00,0.00,0.00,93100.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-93000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(5312,0,0,4261,'2526','H','D',204,'',0,'2025-11-27','0000-00-00',2928,201,3005,0,'D27','',0,16400.00,0.00,0.00,16400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',1400.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-27 20:51:53','riya','2025-11-27 21:18:34',0),(5313,0,0,4261,'2526','H','I',184,'',0,'2025-11-27','0000-00-00',2928,201,3005,0,'D27','',0,16400.00,0.00,0.00,16400.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15400,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-11-27 21:23:33','','0000-00-00 00:00:00',0),(5314,0,0,4469,'2526','H','D',205,'',0,'2025-11-28','0000-00-00',407,212,429,0,'D27','',0,9000.00,0.00,0.00,9000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',-6000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-28 02:29:16','vishal','2025-11-28 02:41:17',0),(5315,0,0,4469,'2526','H','I',185,'',0,'2025-11-28','0000-00-00',407,212,429,0,'D27','',0,9000.00,0.00,0.00,9000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-6000.00,-15000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-28 02:43:12','','0000-00-00 00:00:00',0),(5316,0,0,4470,'2526','H','O',4926,'',0,'2025-11-28','0000-00-00',3128,0,3214,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 08:52:37','','0000-00-00 00:00:00',0),(5317,0,0,4472,'2526','H','O',4927,'',0,'2025-11-28','0000-00-00',3129,0,3215,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-28 08:56:53','','0000-00-00 00:00:00',0),(5318,0,0,4471,'2526','H','O',4928,'',0,'2025-11-28','0000-00-00',1375,0,1416,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','88699','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 09:04:19','','0000-00-00 00:00:00',0),(5319,0,0,4473,'2526','H','O',4929,'',0,'2025-11-28','0000-00-00',3130,0,3216,0,'D27','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',0.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 09:22:20','','0000-00-00 00:00:00',0),(5320,0,0,4474,'2526','H','O',4930,'',0,'2025-11-28','0000-00-00',10,0,10,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 09:45:51','','0000-00-00 00:00:00',0),(5321,0,0,4475,'2526','H','O',4931,'',0,'2025-11-28','0000-00-00',3131,0,3217,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 10:05:17','','0000-00-00 00:00:00',0),(5322,0,0,4477,'2526','H','O',4932,'',0,'2025-11-28','0000-00-00',2012,0,2065,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 10:07:42','','0000-00-00 00:00:00',0),(5323,0,0,4476,'2526','H','O',4933,'',0,'2025-11-28','0000-00-00',3132,0,3218,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 10:09:26','','0000-00-00 00:00:00',0),(5324,0,0,4478,'2526','H','O',4934,'',0,'2025-11-28','0000-00-00',3133,0,3219,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','N','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 10:14:01','','0000-00-00 00:00:00',0),(5325,0,0,4479,'2526','H','O',4935,'',0,'2025-11-28','0000-00-00',3134,0,3220,0,'D27','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',0.00,0,0,'0000-00-00','Y','Y','Y','','N',0.00,'','N','CANCEL','HO 4941','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 10:15:56','janvi','2025-11-28 10:20:17',0),(5326,0,0,4480,'2526','H','O',4936,'',0,'2025-11-28','0000-00-00',3135,0,3221,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 10:17:02','','0000-00-00 00:00:00',0),(5327,0,0,4473,'2526','H','O',4937,'',0,'2025-11-28','0000-00-00',3130,0,3216,0,'D27','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',0.00,0,0,'0000-00-00','Y','Y','N','F','N',0.00,'','N','','','HO4929','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 10:17:25','','0000-00-00 00:00:00',0),(5328,0,0,4473,'2526','H','O',4938,'',0,'2025-11-28','0000-00-00',3130,0,3216,0,'D27','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',0.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 10:17:44','','0000-00-00 00:00:00',0),(5329,0,0,4479,'2526','H','O',4939,'',0,'2025-11-28','0000-00-00',3134,0,3220,0,'D27','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',0.00,0,0,'0000-00-00','Y','Y','N','F','N',0.00,'','N','','','HO4935','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 10:19:07','','0000-00-00 00:00:00',0),(5330,0,0,4479,'2526','H','O',4940,'',0,'2025-11-28','0000-00-00',3134,0,3220,0,'D27','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',0.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 10:19:16','','0000-00-00 00:00:00',0),(5331,0,0,4479,'2526','H','O',4941,'',0,'2025-11-28','0000-00-00',3134,0,3220,0,'D27','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',0.00,0,0,'2025-11-28','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 4935','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 10:20:17','janvi','2025-11-28 10:20:33',0),(5332,0,0,4473,'2526','H','O',4942,'',0,'2025-11-28','0000-00-00',3130,0,3216,0,'D27','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',0.00,0,0,'0000-00-00','Y','Y','N','F','N',0.00,'','N','','','HO4938','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 10:25:12','','0000-00-00 00:00:00',0),(5333,0,0,4473,'2526','H','O',4943,'',0,'2025-11-28','0000-00-00',3130,0,3216,0,'D27','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',0.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 10:25:23','','0000-00-00 00:00:00',0),(5334,0,0,4479,'2526','H','O',4944,'',0,'2025-11-28','0000-00-00',3134,0,3220,0,'D27','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',0.00,0,0,'0000-00-00','Y','Y','N','F','N',0.00,'','N','','','HO4940','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 10:26:16','','0000-00-00 00:00:00',0),(5335,0,0,4479,'2526','H','O',4945,'',0,'2025-11-28','0000-00-00',3134,0,3220,0,'D27','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',0.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 4950','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 10:26:28','drashti','2025-11-28 10:29:44',0),(5336,0,0,4479,'2526','H','O',4946,'',0,'2025-11-28','0000-00-00',3134,0,3220,0,'D27','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',0.00,0,0,'0000-00-00','Y','Y','N','F','N',0.00,'','N','','','HO4945','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 10:26:52','','0000-00-00 00:00:00',0),(5337,0,0,4479,'2526','H','O',4947,'',0,'2025-11-28','0000-00-00',3134,0,3220,0,'D27','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',0.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 4948','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 10:27:01','drashti','2025-11-28 10:28:04',0),(5338,0,0,4479,'2526','H','O',4948,'',0,'2025-11-28','0000-00-00',3134,0,3220,0,'D27','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',0.00,0,0,'2025-11-28','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 4947','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 10:28:04','drashti','2025-11-28 10:28:42',0),(5339,0,0,4481,'2526','H','O',4949,'',0,'2025-11-28','0000-00-00',3136,0,3222,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 10:28:45','','0000-00-00 00:00:00',0),(5340,0,0,4479,'2526','H','O',4950,'',0,'2025-11-28','0000-00-00',3134,0,3220,0,'D27','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',0.00,0,0,'2025-11-28','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 4945','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 10:29:44','drashti','2025-11-28 10:30:03',0),(5341,0,0,4483,'2526','H','O',4951,'',0,'2025-11-28','0000-00-00',2768,0,2837,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 10:31:05','','0000-00-00 00:00:00',0),(5342,0,0,4484,'2526','H','O',4952,'',0,'2025-11-28','0000-00-00',3137,0,3223,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 10:32:48','','0000-00-00 00:00:00',0),(5343,0,0,4485,'2526','H','O',4953,'',0,'2025-11-28','0000-00-00',2092,0,2146,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 10:42:09','','0000-00-00 00:00:00',0),(5344,0,0,4486,'2526','H','O',4954,'',0,'2025-11-28','0000-00-00',3138,0,3224,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 10:43:03','','0000-00-00 00:00:00',0),(5345,0,0,4487,'2526','H','O',4955,'',0,'2025-11-28','0000-00-00',2290,0,2347,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 10:45:18','','0000-00-00 00:00:00',0),(5346,0,0,4488,'2526','H','O',4956,'',0,'2025-11-28','0000-00-00',1468,0,1509,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 10:46:30','','0000-00-00 00:00:00',0),(5347,0,0,4482,'2526','H','O',4957,'',0,'2025-11-28','0000-00-00',2874,0,2201,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 10:52:59','','0000-00-00 00:00:00',0),(5348,0,0,4490,'2526','H','O',4958,'',0,'2025-11-28','0000-00-00',3021,0,3101,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 11:01:36','','0000-00-00 00:00:00',0),(5349,0,0,4491,'2526','H','O',4959,'',0,'2025-11-28','0000-00-00',2559,0,2619,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 11:04:34','','0000-00-00 00:00:00',0),(5350,0,0,4493,'2526','H','O',4960,'',0,'2025-11-28','0000-00-00',3140,0,3226,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 11:06:55','','0000-00-00 00:00:00',0),(5351,0,0,4492,'2526','H','O',4961,'',0,'2025-11-28','0000-00-00',3139,0,3225,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 11:06:55','','0000-00-00 00:00:00',0),(5352,0,0,4245,'2526','H','D',206,'',0,'2025-11-28','0000-00-00',0,200,3077,0,'D02','',0,83450.00,0.00,0.00,83450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-77000,0,'0000-00-00','','N','N','F','N',6450.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(5353,0,0,4494,'2526','H','O',4962,'',0,'2025-11-28','0000-00-00',3141,0,3227,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 11:14:39','','0000-00-00 00:00:00',0),(5354,0,0,4495,'2526','H','O',4963,'',0,'2025-11-28','0000-00-00',3142,0,3228,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 11:19:00','','0000-00-00 00:00:00',0),(5355,0,0,4496,'2526','H','O',4964,'',0,'2025-11-28','0000-00-00',594,0,624,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 11:19:35','','0000-00-00 00:00:00',0),(5356,0,0,4497,'2526','H','O',4965,'',0,'2025-11-28','0000-00-00',1224,0,1265,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 11:21:08','','0000-00-00 00:00:00',0),(5357,0,0,4245,'2526','H','I',186,'',0,'2025-11-28','0000-00-00',0,200,3077,0,'D02','',0,83450.00,0.00,0.00,83450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-83450,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(5358,0,0,4489,'2526','H','O',4966,'',0,'2025-11-28','0000-00-00',3096,0,3181,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','87935','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 11:23:00','','0000-00-00 00:00:00',0),(5359,0,0,4498,'2526','H','O',4967,'',0,'2025-11-28','0000-00-00',1258,0,1299,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 11:23:29','','0000-00-00 00:00:00',0),(5360,0,0,4499,'2526','H','O',4968,'',0,'2025-11-28','0000-00-00',3143,0,3229,0,'D03','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 11:25:28','','0000-00-00 00:00:00',0),(5361,0,0,4501,'2526','H','O',4969,'',0,'2025-11-28','0000-00-00',758,0,789,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 11:28:11','','0000-00-00 00:00:00',0),(5362,0,0,4503,'2526','H','O',4970,'',0,'2025-11-28','0000-00-00',3145,0,3231,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 11:28:50','','0000-00-00 00:00:00',0),(5363,0,0,4502,'2526','H','O',4971,'',0,'2025-11-28','0000-00-00',3144,0,3230,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BANK','','61177','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 11:29:37','','0000-00-00 00:00:00',0),(5364,0,0,4504,'2526','H','O',4972,'',0,'2025-11-28','0000-00-00',3146,0,3232,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 11:30:59','','0000-00-00 00:00:00',0),(5365,0,0,4505,'2526','H','O',4973,'',0,'2025-11-28','0000-00-00',1715,0,1759,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 11:31:35','','0000-00-00 00:00:00',0),(5366,0,0,4500,'2526','H','O',4974,'',0,'2025-11-28','0000-00-00',2883,0,2960,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 11:32:14','','0000-00-00 00:00:00',0),(5367,0,0,4473,'2526','H','O',4975,'',0,'2025-11-28','0000-00-00',3130,0,3216,0,'D27','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',0.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 11:33:21','','0000-00-00 00:00:00',0),(5368,0,0,4506,'2526','H','O',4976,'',0,'2025-11-28','0000-00-00',3147,0,3233,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 11:34:35','','0000-00-00 00:00:00',0),(5369,0,0,4507,'2526','H','O',4977,'',0,'2025-11-28','0000-00-00',2110,0,2162,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','97986','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 11:36:12','','0000-00-00 00:00:00',0),(5370,0,0,4508,'2526','H','O',4978,'',0,'2025-11-28','0000-00-00',2636,0,2706,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 11:36:13','','0000-00-00 00:00:00',0),(5371,0,0,4509,'2526','H','O',4979,'',0,'2025-11-28','0000-00-00',1367,0,1407,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 11:37:43','','0000-00-00 00:00:00',0),(5372,0,0,4497,'2526','H','O',4980,'',0,'2025-11-28','0000-00-00',1224,0,1265,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 11:38:24','','0000-00-00 00:00:00',0),(5373,0,0,4512,'2526','H','O',4981,'',0,'2025-11-28','0000-00-00',3150,0,3236,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 11:40:22','','0000-00-00 00:00:00',0),(5374,0,0,4513,'2526','H','O',4982,'',0,'2025-11-28','0000-00-00',3151,0,3237,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 11:41:06','','0000-00-00 00:00:00',0),(5375,0,0,4510,'2526','H','O',4983,'',0,'2025-11-28','0000-00-00',3148,0,3234,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 11:41:23','','0000-00-00 00:00:00',0),(5376,0,0,4511,'2526','H','O',4984,'',0,'2025-11-28','0000-00-00',3149,0,3235,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 11:41:34','','0000-00-00 00:00:00',0),(5377,0,0,4514,'2526','H','O',4985,'',0,'2025-11-28','0000-00-00',3152,0,3238,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 11:43:24','','0000-00-00 00:00:00',0),(5378,0,0,4480,'2526','H','O',4986,'',0,'2025-11-28','0000-00-00',3135,0,3221,0,'D06','',0,5200.00,0.00,0.00,5200.00,600.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','00386','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 11:44:13','','0000-00-00 00:00:00',0),(5379,0,0,4517,'2526','H','O',4987,'',0,'2025-11-28','0000-00-00',3154,0,3240,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 11:48:15','','0000-00-00 00:00:00',0),(5380,0,0,4519,'2526','H','O',4988,'',0,'2025-11-28','0000-00-00',3156,0,3242,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','punjab bank','','06623','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 11:51:43','','0000-00-00 00:00:00',0),(5381,0,0,4518,'2526','H','O',4989,'',0,'2025-11-28','0000-00-00',3155,0,3241,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','punjab bank','','06623','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 11:51:59','','0000-00-00 00:00:00',0),(5382,0,0,4521,'2526','H','O',4990,'',0,'2025-11-28','0000-00-00',3158,0,3244,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','04223','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 11:54:46','','0000-00-00 00:00:00',0),(5383,0,0,4522,'2526','H','O',4991,'',0,'2025-11-28','0000-00-00',3159,0,3245,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 11:54:56','','0000-00-00 00:00:00',0),(5384,0,0,4516,'2526','H','O',4992,'',0,'2025-11-28','0000-00-00',3153,0,3239,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 11:55:19','','0000-00-00 00:00:00',0),(5385,0,0,4520,'2526','H','O',4993,'',0,'2025-11-28','0000-00-00',3157,0,3243,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 11:57:20','','0000-00-00 00:00:00',0),(5386,0,0,4502,'2526','H','O',4994,'',0,'2025-11-28','0000-00-00',3144,0,3230,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','citizens co op','','22768','','scan                          ',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 11:58:38','','0000-00-00 00:00:00',0),(5387,0,0,4523,'2526','H','O',4995,'',0,'2025-11-28','0000-00-00',3160,0,3246,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 12:00:26','','0000-00-00 00:00:00',0),(5388,0,0,4481,'2526','H','O',4996,'',0,'2025-11-28','0000-00-00',3136,0,3222,0,'D06','',0,5200.00,0.00,0.00,5200.00,700.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 12:02:37','','0000-00-00 00:00:00',0),(5389,0,0,4479,'2526','H','O',4997,'',0,'2025-11-28','0000-00-00',3134,0,3220,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 12:05:48','','0000-00-00 00:00:00',0),(5390,0,0,4524,'2526','H','O',4998,'',0,'2025-11-28','0000-00-00',3161,0,3247,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 12:07:18','','0000-00-00 00:00:00',0),(5391,0,0,4473,'2526','H','O',4999,'',0,'2025-11-28','0000-00-00',3130,0,3216,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 12:07:21','','0000-00-00 00:00:00',0),(5392,0,0,4510,'2526','H','O',5000,'',0,'2025-11-28','0000-00-00',3148,0,3234,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 12:11:09','','0000-00-00 00:00:00',0),(5393,0,0,4525,'2526','H','O',5001,'',0,'2025-11-28','0000-00-00',3162,0,3248,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 12:11:11','','0000-00-00 00:00:00',0),(5394,0,0,4475,'2526','H','O',5002,'',0,'2025-11-28','0000-00-00',3131,0,3217,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 12:15:27','','0000-00-00 00:00:00',0),(5395,0,0,4526,'2526','H','O',5003,'',0,'2025-11-28','0000-00-00',3163,0,3249,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 12:18:15','','0000-00-00 00:00:00',0),(5396,0,0,4527,'2526','H','O',5004,'',0,'2025-11-28','0000-00-00',3164,0,3250,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 12:19:52','','0000-00-00 00:00:00',0),(5397,0,0,4528,'2526','H','O',5005,'',0,'2025-11-28','0000-00-00',836,0,867,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 12:32:31','','0000-00-00 00:00:00',0),(5398,0,0,4159,'2526','H','D',207,'',0,'2025-11-28','0000-00-00',1388,197,393,0,'D27','',0,38250.00,0.00,0.00,38250.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25000,0,'0000-00-00','','N','N','F','N',13250.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-28 12:37:40','vishal','2025-11-28 12:40:16',0),(5399,0,0,4522,'2526','H','O',5006,'',0,'2025-11-28','0000-00-00',3159,0,3245,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5013','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 12:42:18','reception','2025-11-28 13:57:15',0),(5400,0,0,4529,'2526','H','O',5007,'',0,'2025-11-28','0000-00-00',3165,0,3251,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 12:46:10','','0000-00-00 00:00:00',0),(5401,0,0,4530,'2526','H','O',5008,'',0,'2025-11-28','0000-00-00',175,0,188,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 12:48:37','','0000-00-00 00:00:00',0),(5402,0,0,4159,'2526','H','I',187,'',0,'2025-11-28','0000-00-00',1388,197,393,0,'D27','',0,38250.00,0.00,0.00,38250.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-38250,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(5403,0,0,4506,'2526','H','O',5009,'',0,'2025-11-28','0000-00-00',3147,0,3233,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 13:50:29','','0000-00-00 00:00:00',0),(5404,0,0,4531,'2526','H','O',5010,'',0,'2025-11-28','0000-00-00',3166,0,3252,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','91833','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 13:51:21','','0000-00-00 00:00:00',0),(5405,0,0,4532,'2526','H','O',5011,'',0,'2025-11-28','0000-00-00',1507,0,1548,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 13:52:09','','0000-00-00 00:00:00',0),(5406,0,0,4531,'2526','H','O',5012,'',0,'2025-11-28','0000-00-00',3166,0,3252,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','04129','','SCAN',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 13:54:15','','0000-00-00 00:00:00',0),(5407,0,0,4522,'2526','H','O',5013,'',0,'2025-11-28','0000-00-00',3159,0,3245,0,'D06','',0,-3500.00,0.00,0.00,-3500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-3500.00,0,0,'2025-11-28','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 5006','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 13:57:15','reception','2025-11-28 13:58:04',0),(5408,0,0,4526,'2526','H','O',5014,'',0,'2025-11-28','0000-00-00',3163,0,3249,0,'D27','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 14:02:46','','0000-00-00 00:00:00',0),(5409,0,0,4517,'2526','H','O',5015,'',0,'2025-11-28','0000-00-00',3154,0,3240,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 14:10:39','','0000-00-00 00:00:00',0),(5410,0,0,4533,'2526','H','O',5016,'',0,'2025-11-28','0000-00-00',3167,0,3253,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','29466','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 14:24:11','','0000-00-00 00:00:00',0),(5411,0,0,4534,'2526','H','O',5017,'',0,'2025-11-28','0000-00-00',3168,0,3254,0,'D27','',0,450.00,0.00,0.00,450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',450.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 14:25:40','','0000-00-00 00:00:00',0),(5412,0,0,4536,'2526','H','O',5018,'',0,'2025-11-28','0000-00-00',3170,0,3256,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 16:20:45','','0000-00-00 00:00:00',0),(5413,0,0,4537,'2526','H','O',5019,'',0,'2025-11-28','0000-00-00',3162,0,3248,0,'D06','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','central bank','','14990','','scan',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 16:29:27','','0000-00-00 00:00:00',0),(5414,0,0,4539,'2526','H','O',5020,'',0,'2025-11-28','0000-00-00',1186,0,1225,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 16:32:26','','0000-00-00 00:00:00',0),(5415,0,0,4542,'2526','H','O',5021,'',0,'2025-11-28','0000-00-00',3173,0,3259,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 16:52:49','','0000-00-00 00:00:00',0),(5416,0,0,4543,'2526','H','O',5022,'',0,'2025-11-28','0000-00-00',3174,0,3260,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','2','axis bank','20913','20913','','card',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 16:59:35','','0000-00-00 00:00:00',0),(5417,0,0,4544,'2526','H','O',5023,'',0,'2025-11-28','0000-00-00',3175,0,3261,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 17:13:11','','0000-00-00 00:00:00',0),(5418,0,0,4545,'2526','H','O',5024,'',0,'2025-11-28','0000-00-00',3176,0,3262,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 17:16:10','','0000-00-00 00:00:00',0),(5419,0,0,4546,'2526','H','O',5025,'',0,'2025-11-28','0000-00-00',3177,0,3263,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 17:16:35','','0000-00-00 00:00:00',0),(5420,0,0,4547,'2526','H','O',5026,'',0,'2025-11-28','0000-00-00',3178,0,3264,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 17:17:49','','0000-00-00 00:00:00',0),(5421,0,0,4548,'2526','H','O',5027,'',0,'2025-11-28','0000-00-00',3155,0,3241,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','39704','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 17:28:57','','0000-00-00 00:00:00',0),(5422,0,0,4549,'2526','H','O',5028,'',0,'2025-11-28','0000-00-00',3161,0,3247,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','12393','','scan',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 17:32:24','','0000-00-00 00:00:00',0),(5423,0,0,4551,'2526','H','O',5029,'',0,'2025-11-28','0000-00-00',3180,0,3266,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 17:36:23','','0000-00-00 00:00:00',0),(5424,0,0,4535,'2526','H','O',5030,'',0,'2025-11-28','0000-00-00',3169,0,3255,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','CRD','icici','65403','65403','','card',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 17:40:36','','0000-00-00 00:00:00',0),(5425,0,0,4552,'2526','H','O',5031,'',0,'2025-11-28','0000-00-00',1725,0,1769,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 17:43:12','','0000-00-00 00:00:00',0),(5426,0,0,4553,'2526','H','O',5032,'',0,'2025-11-28','0000-00-00',3181,0,3267,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 17:45:13','','0000-00-00 00:00:00',0),(5427,0,0,4536,'2526','H','O',5033,'',0,'2025-11-28','0000-00-00',3170,0,3256,0,'D06','',0,6900.00,0.00,0.00,6900.00,900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 17:48:06','','0000-00-00 00:00:00',0),(5428,0,0,4554,'2526','H','O',5034,'',0,'2025-11-28','0000-00-00',3182,0,3268,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 5054','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 17:50:56','reception','2025-11-28 18:31:45',0),(5429,0,0,4556,'2526','H','O',5035,'',0,'2025-11-28','0000-00-00',2166,0,2221,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 17:51:01','','0000-00-00 00:00:00',0),(5430,0,0,4555,'2526','H','O',5036,'',0,'2025-11-28','0000-00-00',3183,0,3269,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 17:51:20','','0000-00-00 00:00:00',0),(5431,0,0,4557,'2526','H','O',5037,'',0,'2025-11-28','0000-00-00',2742,0,2812,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK BANK','','10212','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 17:53:39','','0000-00-00 00:00:00',0),(5432,0,0,4559,'2526','H','O',5038,'',0,'2025-11-28','0000-00-00',3185,0,3271,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 17:58:45','','0000-00-00 00:00:00',0),(5433,0,0,4560,'2526','H','O',5039,'',0,'2025-11-28','0000-00-00',545,0,571,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 18:07:53','','0000-00-00 00:00:00',0),(5434,0,0,4561,'2526','H','O',5040,'',0,'2025-11-28','0000-00-00',566,0,593,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','unity small','','00000','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 18:09:03','','0000-00-00 00:00:00',0),(5435,0,0,4556,'2526','H','O',5041,'',0,'2025-11-28','0000-00-00',2166,0,2221,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 18:10:39','','0000-00-00 00:00:00',0),(5436,0,0,4563,'2526','H','O',5042,'',0,'2025-11-28','0000-00-00',3187,0,3273,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 18:12:14','','0000-00-00 00:00:00',0),(5437,0,0,4562,'2526','H','O',5043,'',0,'2025-11-28','0000-00-00',3186,0,3272,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 18:13:02','','0000-00-00 00:00:00',0),(5438,0,0,4564,'2526','H','O',5044,'',0,'2025-11-28','0000-00-00',3188,0,3274,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','68716','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 18:14:50','','0000-00-00 00:00:00',0),(5439,0,0,4565,'2526','H','O',5045,'',0,'2025-11-28','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 18:15:22','','0000-00-00 00:00:00',0),(5440,0,0,4555,'2526','H','O',5046,'',0,'2025-11-28','0000-00-00',3183,0,3269,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 18:17:25','','0000-00-00 00:00:00',0),(5441,0,0,4543,'2526','H','O',5047,'',0,'2025-11-28','0000-00-00',3174,0,3260,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','2','axis','06205','06205','','card',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 18:18:55','','0000-00-00 00:00:00',0),(5442,0,0,4567,'2526','H','O',5048,'',0,'2025-11-28','0000-00-00',2269,0,2326,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 18:21:05','','0000-00-00 00:00:00',0),(5443,0,0,4566,'2526','H','O',5049,'',0,'2025-11-28','0000-00-00',187,0,200,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 18:21:14','','0000-00-00 00:00:00',0),(5444,0,0,4568,'2526','H','O',5050,'',0,'2025-11-28','0000-00-00',786,0,817,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 18:22:15','','0000-00-00 00:00:00',0),(5445,0,0,4569,'2526','H','O',5051,'',0,'2025-11-28','0000-00-00',3189,0,3275,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','50580','','scan  ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 18:25:35','','0000-00-00 00:00:00',0),(5446,0,0,4571,'2526','H','O',5052,'',0,'2025-11-28','0000-00-00',1543,0,1586,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 18:29:36','','0000-00-00 00:00:00',0),(5447,0,0,4572,'2526','H','O',5053,'',0,'2025-11-28','0000-00-00',2910,0,2988,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 18:29:38','','0000-00-00 00:00:00',0),(5448,0,0,4554,'2526','H','O',5054,'',0,'2025-11-28','0000-00-00',3182,0,3268,0,'D06','',0,-800.00,0.00,0.00,-800.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-800.00,0,0,'2025-11-28','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 5034','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 18:31:45','reception','2025-11-28 20:19:27',0),(5449,0,0,4574,'2526','H','O',5055,'',0,'2025-11-28','0000-00-00',3190,0,3276,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 18:33:14','','0000-00-00 00:00:00',0),(5450,0,0,4573,'2526','H','O',5056,'',0,'2025-11-28','0000-00-00',110,0,121,0,'D27','',0,450.00,0.00,0.00,450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',450.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 18:33:59','','0000-00-00 00:00:00',0),(5451,0,0,4575,'2526','H','O',5057,'',0,'2025-11-28','0000-00-00',109,0,120,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 18:34:08','','0000-00-00 00:00:00',0),(5452,0,0,4576,'2526','H','O',5058,'',0,'2025-11-28','0000-00-00',3191,0,3277,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 18:35:48','','0000-00-00 00:00:00',0),(5453,0,0,4540,'2526','H','O',5059,'',0,'2025-11-28','0000-00-00',2323,0,2380,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','70082','','scan                          ',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 18:37:18','','0000-00-00 00:00:00',0),(5454,0,0,4578,'2526','H','O',5060,'',0,'2025-11-28','0000-00-00',2220,0,2276,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 18:37:51','','0000-00-00 00:00:00',0),(5455,0,0,4577,'2526','H','O',5061,'',0,'2025-11-28','0000-00-00',3116,0,3202,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','federal bank','','68880','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 18:39:14','','0000-00-00 00:00:00',0),(5456,0,0,4579,'2526','H','O',5062,'',0,'2025-11-28','0000-00-00',3192,0,3278,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 18:41:22','','0000-00-00 00:00:00',0),(5457,0,0,4580,'2526','H','O',5063,'',0,'2025-11-28','0000-00-00',2250,0,2307,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 18:45:08','','0000-00-00 00:00:00',0),(5458,0,0,4570,'2526','H','O',5064,'',0,'2025-11-28','0000-00-00',525,0,551,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 18:45:44','','0000-00-00 00:00:00',0),(5459,0,0,4581,'2526','H','O',5065,'',0,'2025-11-28','0000-00-00',3193,0,3279,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 18:47:39','','0000-00-00 00:00:00',0),(5460,0,0,4583,'2526','H','O',5066,'',0,'2025-11-28','0000-00-00',3195,0,3281,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 18:49:52','','0000-00-00 00:00:00',0),(5461,0,0,4582,'2526','H','O',5067,'',0,'2025-11-28','0000-00-00',3194,0,3280,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 18:50:03','','0000-00-00 00:00:00',0),(5462,0,0,4584,'2526','H','O',5068,'',0,'2025-11-28','0000-00-00',3196,0,3282,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 18:50:42','','0000-00-00 00:00:00',0),(5463,0,0,4586,'2526','H','O',5069,'',0,'2025-11-28','0000-00-00',3198,0,3284,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 18:55:12','','0000-00-00 00:00:00',0),(5464,0,0,4585,'2526','H','O',5070,'',0,'2025-11-28','0000-00-00',3197,0,3283,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 18:56:06','','0000-00-00 00:00:00',0),(5465,0,0,4587,'2526','H','O',5071,'',0,'2025-11-28','0000-00-00',3199,0,3285,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','39325','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 18:58:14','','0000-00-00 00:00:00',0),(5466,0,0,4588,'2526','H','O',5072,'',0,'2025-11-28','0000-00-00',2528,0,1616,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-28 18:59:19','','0000-00-00 00:00:00',0),(5467,0,0,4589,'2526','H','O',5073,'',0,'2025-11-28','0000-00-00',1323,0,1363,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','34654','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 19:05:06','','0000-00-00 00:00:00',0),(5468,0,0,4564,'2526','H','O',5074,'',0,'2025-11-28','0000-00-00',3188,0,3274,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','87640','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 19:07:02','','0000-00-00 00:00:00',0),(5469,0,0,4590,'2526','H','O',5075,'',0,'2025-11-28','0000-00-00',118,0,129,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOI','','55245','','scan                          ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-28 19:17:36','','0000-00-00 00:00:00',0),(5470,0,0,4591,'2526','H','O',5076,'',0,'2025-11-28','0000-00-00',2506,0,2563,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','idbi bank','','63161','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 19:18:06','','0000-00-00 00:00:00',0),(5471,0,0,4592,'2526','H','O',5077,'',0,'2025-11-28','0000-00-00',3200,0,3286,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 19:23:49','','0000-00-00 00:00:00',0),(5472,0,0,4593,'2526','H','O',5078,'',0,'2025-11-28','0000-00-00',3076,0,3162,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','09356','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-28 19:26:09','','0000-00-00 00:00:00',0),(5473,0,0,4554,'2526','H','O',5079,'',0,'2025-11-28','0000-00-00',3182,0,3268,0,'D06','',0,800.00,0.00,0.00,800.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-28 20:21:10','','0000-00-00 00:00:00',0),(5475,0,0,4595,'2526','H','O',5080,'',0,'2025-11-29','0000-00-00',3201,0,3288,0,'D27','',0,1250.00,0.00,0.00,1250.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1250.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 09:06:17','','0000-00-00 00:00:00',0),(5476,0,0,4596,'2526','H','O',5081,'',0,'2025-11-29','0000-00-00',3202,0,3289,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 09:07:43','','0000-00-00 00:00:00',0),(5477,0,0,4597,'2526','H','O',5082,'',0,'2025-11-29','0000-00-00',3203,0,3290,0,'D27','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 09:09:27','','0000-00-00 00:00:00',0),(5478,0,0,4599,'2526','H','O',5083,'',0,'2025-11-29','0000-00-00',1690,0,1736,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 09:28:03','','0000-00-00 00:00:00',0),(5479,0,0,4409,'2526','H','D',209,'',0,'2025-11-29','0000-00-00',0,210,3182,0,'D02','',0,21300.00,0.00,0.00,21300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',6300.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-29 09:38:26','vishal','2025-11-29 09:39:38',0),(5480,0,0,4600,'2526','H','O',5084,'',0,'2025-11-29','0000-00-00',3205,0,3292,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5092','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 09:56:17','reception','2025-11-29 10:33:57',0),(5481,0,0,4601,'2526','H','O',5085,'',0,'2025-11-29','0000-00-00',1550,0,1593,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 09:58:02','','0000-00-00 00:00:00',0),(5482,0,0,4602,'2526','H','O',5086,'',0,'2025-11-29','0000-00-00',3206,0,3293,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 09:59:35','','0000-00-00 00:00:00',0),(5483,0,0,4603,'2526','H','O',5087,'',0,'2025-11-29','0000-00-00',3207,0,3294,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 10:02:28','','0000-00-00 00:00:00',0),(5484,0,0,4604,'2526','H','O',5088,'',0,'2025-11-29','0000-00-00',446,0,472,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 10:09:31','','0000-00-00 00:00:00',0),(5485,0,0,4605,'2526','H','O',5089,'',0,'2025-11-29','0000-00-00',3208,0,3295,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 10:14:29','','0000-00-00 00:00:00',0),(5486,0,0,4606,'2526','H','O',5090,'',0,'2025-11-29','0000-00-00',3209,0,3296,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 10:15:52','','0000-00-00 00:00:00',0),(5487,0,0,4607,'2526','H','O',5091,'',0,'2025-11-29','0000-00-00',1424,0,1465,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 10:27:59','','0000-00-00 00:00:00',0),(5488,0,0,4600,'2526','H','O',5092,'',0,'2025-11-29','0000-00-00',3205,0,3292,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-11-29','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 5084','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 10:33:57','reception','2025-11-29 10:34:31',0),(5489,0,0,4600,'2526','H','O',5093,'',0,'2025-11-29','0000-00-00',3205,0,3292,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 10:35:12','','0000-00-00 00:00:00',0),(5490,0,0,4608,'2526','H','O',5094,'',0,'2025-11-29','0000-00-00',3210,0,3297,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 10:37:55','','0000-00-00 00:00:00',0),(5491,0,0,4609,'2526','H','O',5095,'',0,'2025-11-29','0000-00-00',3211,0,3298,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','N','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 10:53:45','','0000-00-00 00:00:00',0),(5492,0,0,4610,'2526','H','O',5096,'',0,'2025-11-29','0000-00-00',3212,0,2699,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 10:54:30','','0000-00-00 00:00:00',0),(5493,0,0,4611,'2526','H','O',5097,'',0,'2025-11-29','0000-00-00',3213,0,3299,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 10:56:23','','0000-00-00 00:00:00',0),(5494,0,0,4613,'2526','H','O',5098,'',0,'2025-11-29','0000-00-00',3199,0,3285,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','74848','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 10:58:34','','0000-00-00 00:00:00',0),(5495,0,0,4614,'2526','H','O',5099,'',0,'2025-11-29','0000-00-00',3214,0,3300,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 10:59:15','','0000-00-00 00:00:00',0),(5496,0,0,4616,'2526','H','O',5100,'',0,'2025-11-29','0000-00-00',180,0,193,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 11:05:30','','0000-00-00 00:00:00',0),(5497,0,0,4615,'2526','H','O',5101,'',0,'2025-11-29','0000-00-00',2132,0,2183,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','49949','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 11:05:48','','0000-00-00 00:00:00',0),(5498,0,0,4617,'2526','H','O',5102,'',0,'2025-11-29','0000-00-00',3215,0,3301,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 11:06:59','','0000-00-00 00:00:00',0),(5499,0,0,4618,'2526','H','O',5103,'',0,'2025-11-29','0000-00-00',3216,0,3302,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5105','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 11:07:51','janvi','2025-11-29 11:09:09',0),(5500,0,0,4600,'2526','H','O',5104,'',0,'2025-11-29','0000-00-00',3205,0,3292,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 11:07:54','','0000-00-00 00:00:00',0),(5501,0,0,4618,'2526','H','O',5105,'',0,'2025-11-29','0000-00-00',3216,0,3302,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-11-29','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 5103','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 11:09:09','janvi','2025-11-29 11:09:40',0),(5502,0,0,4619,'2526','H','O',5106,'',0,'2025-11-29','0000-00-00',1579,0,1623,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 11:09:24','','0000-00-00 00:00:00',0),(5503,0,0,4618,'2526','H','O',5107,'',0,'2025-11-29','0000-00-00',3216,0,3302,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','07189','','scan                          ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 11:10:37','','0000-00-00 00:00:00',0),(5504,0,0,4621,'2526','H','O',5108,'',0,'2025-11-29','0000-00-00',2847,0,2919,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 11:18:01','','0000-00-00 00:00:00',0),(5505,0,0,4622,'2526','H','O',5109,'',0,'2025-11-29','0000-00-00',3218,0,3304,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','15688','','scan ',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5165','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 11:20:04','reception','2025-11-29 12:57:20',0),(5506,0,0,4623,'2526','H','O',5110,'',0,'2025-11-29','0000-00-00',1626,0,1671,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 11:22:03','','0000-00-00 00:00:00',0),(5507,0,0,4417,'2526','H','D',210,'',0,'2025-11-29','0000-00-00',0,211,3186,0,'D27','',0,14100.00,0.00,0.00,14100.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',5700.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-29 11:23:17','vishal','2025-11-29 12:17:00',0),(5508,0,0,4624,'2526','H','O',5111,'',0,'2025-11-29','0000-00-00',3219,0,3305,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 11:27:22','','0000-00-00 00:00:00',0),(5509,0,0,4625,'2526','H','O',5112,'',0,'2025-11-29','0000-00-00',3220,0,3306,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','73378','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 11:28:59','','0000-00-00 00:00:00',0),(5510,0,0,4627,'2526','H','O',5113,'',0,'2025-11-29','0000-00-00',2560,0,2620,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-29 11:31:09','','0000-00-00 00:00:00',0),(5511,0,0,4628,'2526','H','O',5114,'',0,'2025-11-29','0000-00-00',3221,0,3307,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','UNION BANK','','98864','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 11:33:20','','0000-00-00 00:00:00',0),(5512,0,0,4629,'2526','H','O',5115,'',0,'2025-11-29','0000-00-00',3222,0,3308,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','74281','','scan                          ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 11:33:39','','0000-00-00 00:00:00',0),(5513,0,0,4606,'2526','H','O',5116,'',0,'2025-11-29','0000-00-00',3209,0,3296,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 11:34:00','','0000-00-00 00:00:00',0),(5514,0,0,4626,'2526','H','O',5117,'',0,'2025-11-29','0000-00-00',2503,0,2560,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','82860','','scan                          ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 11:35:06','','0000-00-00 00:00:00',0),(5515,0,0,4632,'2526','H','O',5118,'',0,'2025-11-29','0000-00-00',3224,0,3310,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 11:36:59','','0000-00-00 00:00:00',0),(5516,0,0,4631,'2526','H','O',5119,'',0,'2025-11-29','0000-00-00',3223,0,3309,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','02094','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 11:37:27','','0000-00-00 00:00:00',0),(5517,0,0,4636,'2526','H','O',5120,'',0,'2025-11-29','0000-00-00',3228,0,3314,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 11:52:53','','0000-00-00 00:00:00',0),(5518,0,0,4635,'2526','H','O',5121,'',0,'2025-11-29','0000-00-00',3227,0,3313,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 11:53:04','','0000-00-00 00:00:00',0),(5519,0,0,4409,'2526','H','I',188,'',0,'2025-11-29','0000-00-00',0,210,3182,0,'D02','',0,21300.00,0.00,0.00,21300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-21300,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(5520,0,0,4637,'2526','H','O',5122,'',0,'2025-11-29','0000-00-00',2483,0,2541,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 11:54:37','','0000-00-00 00:00:00',0),(5521,0,0,4638,'2526','H','O',5123,'',0,'2025-11-29','0000-00-00',3229,0,3315,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 11:54:41','','0000-00-00 00:00:00',0),(5522,0,0,4640,'2526','H','O',5124,'',0,'2025-11-29','0000-00-00',3231,0,2893,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 11:55:14','','0000-00-00 00:00:00',0),(5523,0,0,4641,'2526','H','O',5125,'',0,'2025-11-29','0000-00-00',3232,0,2779,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 11:55:24','','0000-00-00 00:00:00',0),(5524,0,0,4639,'2526','H','O',5126,'',0,'2025-11-29','0000-00-00',3230,0,3316,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-29 11:56:08','','0000-00-00 00:00:00',0),(5525,0,0,4634,'2526','H','O',5127,'',0,'2025-11-29','0000-00-00',3226,0,3312,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','49141','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 11:56:18','','0000-00-00 00:00:00',0),(5526,0,0,4644,'2526','H','O',5128,'',0,'2025-11-29','0000-00-00',3233,0,2939,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 11:57:54','','0000-00-00 00:00:00',0),(5527,0,0,4642,'2526','H','O',5129,'',0,'2025-11-29','0000-00-00',1928,0,1976,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','INDIA POST PAY','','78816','','SCAN',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-29 11:58:05','','0000-00-00 00:00:00',0),(5528,0,0,4629,'2526','H','O',5130,'',0,'2025-11-29','0000-00-00',3222,0,3308,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 11:59:21','','0000-00-00 00:00:00',0),(5529,0,0,4608,'2526','H','O',5131,'',0,'2025-11-29','0000-00-00',3210,0,3297,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','05873','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 11:59:31','','0000-00-00 00:00:00',0),(5530,0,0,4646,'2526','H','O',5132,'',0,'2025-11-29','0000-00-00',3235,0,3318,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-29 12:00:03','','0000-00-00 00:00:00',0),(5531,0,0,4645,'2526','H','O',5133,'',0,'2025-11-29','0000-00-00',3234,0,3317,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 12:01:13','','0000-00-00 00:00:00',0),(5532,0,0,4639,'2526','H','O',5134,'',0,'2025-11-29','0000-00-00',3230,0,3316,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-29 12:01:54','','0000-00-00 00:00:00',0),(5533,0,0,4647,'2526','H','O',5135,'',0,'2025-11-29','0000-00-00',3021,0,3101,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 12:03:07','','0000-00-00 00:00:00',0),(5534,0,0,4649,'2526','H','O',5136,'',0,'2025-11-29','0000-00-00',1865,0,1910,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-29 12:03:17','','0000-00-00 00:00:00',0),(5535,0,0,4648,'2526','H','O',5137,'',0,'2025-11-29','0000-00-00',3236,0,3319,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 12:03:32','','0000-00-00 00:00:00',0),(5536,0,0,4605,'2526','H','O',5138,'',0,'2025-11-29','0000-00-00',3208,0,3295,0,'D02','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 12:04:50','','0000-00-00 00:00:00',0),(5537,0,0,4633,'2526','H','O',5139,'',0,'2025-11-29','0000-00-00',3225,0,3311,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 12:05:09','','0000-00-00 00:00:00',0),(5538,0,0,4624,'2526','H','O',5140,'',0,'2025-11-29','0000-00-00',3219,0,3305,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 12:07:22','','0000-00-00 00:00:00',0),(5539,0,0,4623,'2526','H','O',5141,'',0,'2025-11-29','0000-00-00',1626,0,1671,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 12:10:42','','0000-00-00 00:00:00',0),(5540,0,0,4650,'2526','H','O',5142,'',0,'2025-11-29','0000-00-00',3237,0,2539,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 12:11:26','','0000-00-00 00:00:00',0),(5541,0,0,4612,'2526','H','O',5143,'',0,'2025-11-29','0000-00-00',2769,0,2838,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 12:13:36','','0000-00-00 00:00:00',0),(5542,0,0,4651,'2526','H','O',5144,'',0,'2025-11-29','0000-00-00',3238,0,3320,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','91788','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 12:13:44','','0000-00-00 00:00:00',0),(5543,0,0,4653,'2526','H','O',5145,'',0,'2025-11-29','0000-00-00',3239,0,3321,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 12:17:12','','0000-00-00 00:00:00',0),(5544,0,0,4417,'2526','H','I',189,'',0,'2025-11-29','0000-00-00',0,211,3186,0,'D27','',0,14100.00,0.00,0.00,14100.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-12700,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-29 12:17:48','','0000-00-00 00:00:00',0),(5545,0,0,4654,'2526','H','O',5146,'',0,'2025-11-29','0000-00-00',3240,0,3322,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 12:18:22','','0000-00-00 00:00:00',0),(5546,0,0,4655,'2526','H','O',5147,'',0,'2025-11-29','0000-00-00',3127,0,3213,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 12:20:32','','0000-00-00 00:00:00',0),(5547,0,0,4656,'2526','H','O',5148,'',0,'2025-11-29','0000-00-00',1504,0,1545,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 12:21:46','','0000-00-00 00:00:00',0),(5548,0,0,4657,'2526','H','O',5149,'',0,'2025-11-29','0000-00-00',2472,0,2530,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 12:25:02','','0000-00-00 00:00:00',0),(5549,0,0,4660,'2526','H','O',5150,'',0,'2025-11-29','0000-00-00',3242,0,3324,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 12:27:33','','0000-00-00 00:00:00',0),(5550,0,0,4659,'2526','H','O',5151,'',0,'2025-11-29','0000-00-00',3241,0,3323,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 12:27:42','','0000-00-00 00:00:00',0),(5551,0,0,4629,'2526','H','O',5152,'',0,'2025-11-29','0000-00-00',3222,0,3308,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','87316','','scan ',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 12:31:04','','0000-00-00 00:00:00',0),(5552,0,0,4663,'2526','H','O',5153,'',0,'2025-11-29','0000-00-00',3245,0,3327,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 12:32:26','','0000-00-00 00:00:00',0),(5553,0,0,4646,'2526','H','O',5154,'',0,'2025-11-29','0000-00-00',3235,0,3318,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-29 12:33:50','','0000-00-00 00:00:00',0),(5554,0,0,4664,'2526','H','O',5155,'',0,'2025-11-29','0000-00-00',3246,0,3328,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 12:33:52','','0000-00-00 00:00:00',0),(5555,0,0,4665,'2526','H','O',5156,'',0,'2025-11-29','0000-00-00',3247,0,3329,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 12:34:38','','0000-00-00 00:00:00',0),(5556,0,0,4662,'2526','H','O',5157,'',0,'2025-11-29','0000-00-00',3244,0,3326,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 12:35:14','','0000-00-00 00:00:00',0),(5557,0,0,4661,'2526','H','O',5158,'',0,'2025-11-29','0000-00-00',3243,0,3325,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 5171','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 12:36:26','reception','2025-11-29 13:59:48',0),(5558,0,0,4666,'2526','H','O',5159,'',0,'2025-11-29','0000-00-00',3248,0,3330,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 12:38:46','','0000-00-00 00:00:00',0),(5559,0,0,4667,'2526','H','O',5160,'',0,'2025-11-29','0000-00-00',1629,0,1674,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 12:41:24','','0000-00-00 00:00:00',0),(5560,0,0,4633,'2526','H','O',5161,'',0,'2025-11-29','0000-00-00',3225,0,3311,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','indin bank','','89885','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 12:41:55','','0000-00-00 00:00:00',0),(5561,0,0,4609,'2526','H','O',5162,'',0,'2025-11-29','0000-00-00',3211,0,3298,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','79093','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 12:47:08','','0000-00-00 00:00:00',0),(5562,0,0,4669,'2526','H','O',5163,'',0,'2025-11-29','0000-00-00',3250,0,3332,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 12:49:04','','0000-00-00 00:00:00',0),(5563,0,0,4646,'2526','H','O',5164,'',0,'2025-11-29','0000-00-00',3235,0,3318,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-29 12:53:35','','0000-00-00 00:00:00',0),(5564,0,0,4622,'2526','H','O',5165,'',0,'2025-11-29','0000-00-00',3218,0,3304,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','bob','','15688','','SCAN',-500.00,0,0,'2025-11-29','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 5109','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 12:57:20','reception','2025-11-29 12:58:08',0),(5565,0,0,4622,'2526','H','O',5166,'',0,'2025-11-29','0000-00-00',3218,0,3304,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','15688','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 12:59:11','','0000-00-00 00:00:00',0),(5566,0,0,4672,'2526','H','O',5167,'',0,'2025-11-29','0000-00-00',3252,0,3334,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 13:15:12','','0000-00-00 00:00:00',0),(5567,0,0,4673,'2526','H','O',5168,'',0,'2025-11-29','0000-00-00',3253,0,3335,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 13:17:32','','0000-00-00 00:00:00',0),(5568,0,0,4660,'2526','H','O',5169,'',0,'2025-11-29','0000-00-00',3242,0,3324,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-11-29 13:21:48','','0000-00-00 00:00:00',0),(5569,0,0,4664,'2526','H','O',5170,'',0,'2025-11-29','0000-00-00',3246,0,3328,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','17235','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 13:32:14','','0000-00-00 00:00:00',0),(5570,0,0,4661,'2526','H','O',5171,'',0,'2025-11-29','0000-00-00',3243,0,3325,0,'D06','',0,-900.00,0.00,0.00,-900.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-900.00,0,0,'2025-11-29','Y','N','N','','N',0.00,'','Y','FOC','','HO 5158','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 13:59:48','reception','2025-11-29 14:00:07',0),(5571,0,0,4672,'2526','H','O',5172,'',0,'2025-11-29','0000-00-00',3252,0,3334,0,'D06','',0,4500.00,0.00,0.00,4500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','92400','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-11-29 14:45:42','','0000-00-00 00:00:00',0),(5572,0,0,4676,'2526','H','O',5173,'',0,'2025-11-29','0000-00-00',2393,0,392,0,'D27','',0,4000.00,0.00,0.00,4000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','96254','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-11-29 15:11:46','','0000-00-00 00:00:00',0),(5573,0,0,4677,'2526','H','O',5174,'',0,'2025-11-29','0000-00-00',3254,0,3337,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','30179','','scan  ',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5175','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 17:56:33','janvi','2025-11-29 18:06:08',0),(5574,0,0,4677,'2526','H','O',5175,'',0,'2025-11-29','0000-00-00',3254,0,3337,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','sbi','','30179','','SCAN                          ',-300.00,0,0,'2025-11-29','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 5174','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 18:06:08','janvi','2025-11-29 18:06:58',0),(5575,0,0,4677,'2526','H','O',5176,'',1,'2025-11-29','0000-00-00',3254,0,3337,0,'D02','',0,500.00,0.00,0.00,500.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'request by jahnviben',0,'','7','sbi','','30179','','',300.00,0,0,'2025-12-10','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 18:08:32','janvi','2025-12-10 11:13:07',0),(5576,0,0,4678,'2526','H','O',5177,'',0,'2025-11-29','0000-00-00',3255,0,3338,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-29 18:10:33','','0000-00-00 00:00:00',0),(5577,0,0,4680,'2526','H','O',5178,'',0,'2025-11-29','0000-00-00',3256,0,3339,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 18:14:47','','0000-00-00 00:00:00',0),(5578,0,0,4681,'2526','H','O',5179,'',0,'2025-11-29','0000-00-00',2260,0,2317,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','59558','','scan                          ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 18:27:51','','0000-00-00 00:00:00',0),(5579,0,0,4682,'2526','H','O',5180,'',0,'2025-11-29','0000-00-00',2903,0,2980,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 18:32:26','','0000-00-00 00:00:00',0),(5580,0,0,4351,'2526','H','D',211,'',0,'2025-12-01','0000-00-00',0,207,3143,0,'D27','',0,17700.00,0.00,0.00,17700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-1374,0,'0000-00-00','','N','N','D','N',16326.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-29 18:36:02','riya','2025-12-01 21:25:46',0),(5581,0,0,4683,'2526','H','O',5181,'',0,'2025-11-29','0000-00-00',3257,0,3340,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','KOTAK MAHINDRA','','909220','','SCAN',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 5184','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-29 18:40:35','manshi','2025-11-29 19:01:00',0),(5582,0,0,4684,'2526','H','O',5182,'',0,'2025-11-29','0000-00-00',3258,0,3341,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 18:51:48','','0000-00-00 00:00:00',0),(5583,0,0,4683,'2526','H','O',5183,'',0,'2025-11-29','0000-00-00',3257,0,3340,0,'D03','',0,400.00,0.00,0.00,400.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','KOTAK MAHINDRA','','909220','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-29 19:00:17','','0000-00-00 00:00:00',0),(5584,0,0,4683,'2526','H','O',5184,'',0,'2025-11-29','0000-00-00',3257,0,3340,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','KOTAK MAHINDRA','','909220','','SCAN',-500.00,0,0,'2025-11-29','Y','N','N','','N',0.00,'','Y','FOC','','HO 5181','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-11-29 19:01:00','manshi','2025-11-29 19:01:38',0),(5585,0,0,4685,'2526','H','O',5185,'',0,'2025-11-29','0000-00-00',3259,0,3342,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-11-29 19:27:38','','0000-00-00 00:00:00',0),(5586,0,0,4630,'2526','H','D',212,'',0,'2025-11-29','0000-00-00',3217,214,3303,0,'D27','',0,6600.00,0.00,0.00,6600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6000,0,'0000-00-00','','N','N','F','N',600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-29 20:56:41','vishal','2025-11-29 21:02:32',0),(5587,0,0,4630,'2526','H','I',190,'',0,'2025-11-29','0000-00-00',3217,214,3303,0,'D27','',0,6600.00,0.00,0.00,6600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6600,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-29 21:08:23','','0000-00-00 00:00:00',0),(5588,0,0,4687,'2526','H','O',5186,'',0,'2025-11-30','0000-00-00',3260,0,3344,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','40741','','scan',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-30 09:28:24','','0000-00-00 00:00:00',0),(5589,0,0,4689,'2526','H','O',5187,'',0,'2025-11-30','0000-00-00',3261,0,3143,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-30 11:05:44','','0000-00-00 00:00:00',0),(5590,0,0,3861,'2526','H','D',213,'',0,'2025-11-30','0000-00-00',0,179,2834,0,'D27','',0,94000.00,0.00,0.00,94000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-72000,0,'0000-00-00','','N','N','F','N',22000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-30 11:59:40','vishal','2025-11-30 13:22:05',0),(5591,0,0,4692,'2526','H','O',5188,'',0,'2025-11-30','0000-00-00',3262,0,3348,0,'D27','',0,1700.00,0.00,0.00,1700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','08938','','scan',1700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-11-30 12:05:37','','0000-00-00 00:00:00',0),(5592,0,0,3861,'2526','H','I',191,'',0,'2025-11-30','0000-00-00',0,179,2834,0,'D27','',0,94000.00,0.00,0.00,94000.00,7000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-87000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(5593,0,0,4359,'2526','H','D',214,'',0,'2025-11-30','0000-00-00',0,209,3151,0,'D27','',0,78100.00,0.00,0.00,78100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-35000,0,'0000-00-00','','N','N','F','N',43100.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-30 14:04:42','vishal','2025-11-30 14:15:54',0),(5594,0,0,4359,'2526','H','I',192,'',0,'2025-11-30','0000-00-00',0,209,3151,0,'D27','',0,78100.00,0.00,0.00,78100.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-78000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(5595,0,0,4675,'2526','H','D',215,'',0,'2025-11-30','0000-00-00',3208,216,3295,0,'D02','',0,7200.00,0.00,0.00,7200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-30000,0,'0000-00-00','','N','N','F','N',-22800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-30 18:05:38','vishal','2025-11-30 18:07:32',0),(5596,0,0,4675,'2526','H','I',193,'',0,'2025-11-30','0000-00-00',3208,216,3295,0,'D02','',0,30000.00,0.00,0.00,30000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-30000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-11-30 18:15:08','','0000-00-00 00:00:00',0),(5597,0,0,4695,'2526','H','O',5189,'',0,'2025-12-01','0000-00-00',3263,0,3351,0,'D27','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 08:42:38','','0000-00-00 00:00:00',0),(5598,0,0,4696,'2526','H','O',5190,'',0,'2025-12-01','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 09:06:37','','0000-00-00 00:00:00',0),(5599,0,0,4697,'2526','H','O',5191,'',0,'2025-12-01','0000-00-00',3264,0,3352,0,'D03','',0,1900.00,0.00,0.00,1900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 09:11:09','','0000-00-00 00:00:00',0),(5600,0,0,4698,'2526','H','O',5192,'',0,'2025-12-01','0000-00-00',3265,0,3353,0,'D03','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 09:20:33','','0000-00-00 00:00:00',0),(5601,0,0,4699,'2526','H','O',5193,'',0,'2025-12-01','0000-00-00',3266,0,3354,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','24450','','scan',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 09:26:52','','0000-00-00 00:00:00',0),(5602,0,0,4700,'2526','H','O',5194,'',0,'2025-12-01','0000-00-00',3267,0,3355,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bank','','23400','','scan',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 09:31:59','','0000-00-00 00:00:00',0),(5603,0,0,4702,'2526','H','O',5195,'',0,'2025-12-01','0000-00-00',2446,0,2503,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 09:49:21','','0000-00-00 00:00:00',0),(5604,0,0,4701,'2526','H','O',5196,'',0,'2025-12-01','0000-00-00',3268,0,3356,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 09:49:42','','0000-00-00 00:00:00',0),(5605,0,0,4703,'2526','H','O',5197,'',0,'2025-12-01','0000-00-00',2155,0,2210,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 09:51:18','','0000-00-00 00:00:00',0),(5606,0,0,4704,'2526','H','O',5198,'',0,'2025-12-01','0000-00-00',2207,0,2263,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 09:58:16','','0000-00-00 00:00:00',0),(5607,0,0,4705,'2526','H','O',5199,'',0,'2025-12-01','0000-00-00',3269,0,3357,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','91025','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 10:01:20','','0000-00-00 00:00:00',0),(5608,0,0,4706,'2526','H','O',5200,'',0,'2025-12-01','0000-00-00',3270,0,3358,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 10:03:11','','0000-00-00 00:00:00',0),(5609,0,0,4707,'2526','H','O',5201,'',0,'2025-12-01','0000-00-00',3271,0,3359,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 10:04:36','','0000-00-00 00:00:00',0),(5610,0,0,4708,'2526','H','O',5202,'',0,'2025-12-01','0000-00-00',2709,0,2778,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 10:08:05','','0000-00-00 00:00:00',0),(5611,0,0,4709,'2526','H','O',5203,'',0,'2025-12-01','0000-00-00',3272,0,3360,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 10:15:31','','0000-00-00 00:00:00',0),(5612,0,0,4710,'2526','H','O',5204,'',0,'2025-12-01','0000-00-00',1701,0,1747,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-01 10:17:19','','0000-00-00 00:00:00',0),(5613,0,0,4712,'2526','H','O',5205,'',0,'2025-12-01','0000-00-00',3273,0,3362,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 10:21:46','','0000-00-00 00:00:00',0),(5614,0,0,4713,'2526','H','O',5206,'',0,'2025-12-01','0000-00-00',930,0,961,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 10:25:32','','0000-00-00 00:00:00',0),(5615,0,0,4714,'2526','H','O',5207,'',0,'2025-12-01','0000-00-00',3274,0,3363,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 10:33:37','','0000-00-00 00:00:00',0),(5616,0,0,4715,'2526','H','O',5208,'',0,'2025-12-01','0000-00-00',2714,0,2785,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 10:35:27','','0000-00-00 00:00:00',0),(5617,0,0,4716,'2526','H','O',5209,'',0,'2025-12-01','0000-00-00',3275,0,3364,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 10:37:58','','0000-00-00 00:00:00',0),(5618,0,0,4717,'2526','H','O',5210,'',0,'2025-12-01','0000-00-00',2716,0,2787,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 10:39:41','','0000-00-00 00:00:00',0),(5619,0,0,4718,'2526','H','O',5211,'',0,'2025-12-01','0000-00-00',3076,0,3162,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 10:41:46','','0000-00-00 00:00:00',0),(5620,0,0,4719,'2526','H','O',5212,'',0,'2025-12-01','0000-00-00',3276,0,3365,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 10:42:15','','0000-00-00 00:00:00',0),(5621,0,0,4720,'2526','H','O',5213,'',0,'2025-12-01','0000-00-00',1230,0,1271,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 10:45:36','','0000-00-00 00:00:00',0),(5622,0,0,4721,'2526','H','O',5214,'',0,'2025-12-01','0000-00-00',3277,0,3366,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','89070','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 10:47:15','','0000-00-00 00:00:00',0),(5623,0,0,4722,'2526','H','O',5215,'',0,'2025-12-01','0000-00-00',3278,0,3367,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 10:47:32','','0000-00-00 00:00:00',0),(5624,0,0,4723,'2526','H','O',5216,'',0,'2025-12-01','0000-00-00',2844,0,2916,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 10:48:15','','0000-00-00 00:00:00',0),(5625,0,0,4724,'2526','H','O',5217,'',0,'2025-12-01','0000-00-00',1506,0,1547,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 5284','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 10:51:08','reception','2025-12-01 13:38:05',0),(5626,0,0,4726,'2526','H','O',5218,'',0,'2025-12-01','0000-00-00',3013,0,3093,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','59475','','scan                          ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 10:56:07','','0000-00-00 00:00:00',0),(5627,0,0,4725,'2526','H','O',5219,'',0,'2025-12-01','0000-00-00',2941,0,3019,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 10:56:12','','0000-00-00 00:00:00',0),(5628,0,0,4727,'2526','H','O',5220,'',0,'2025-12-01','0000-00-00',2894,0,2971,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 10:58:36','','0000-00-00 00:00:00',0),(5629,0,0,4709,'2526','H','O',5221,'',0,'2025-12-01','0000-00-00',3272,0,3360,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','punjab bank','','03957','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 10:59:09','','0000-00-00 00:00:00',0),(5630,0,0,4728,'2526','H','O',5222,'',0,'2025-12-01','0000-00-00',3279,0,3368,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 11:01:27','','0000-00-00 00:00:00',0),(5631,0,0,4729,'2526','H','O',5223,'',0,'2025-12-01','0000-00-00',3280,0,3369,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 11:04:20','','0000-00-00 00:00:00',0),(5632,0,0,4731,'2526','H','O',5224,'',0,'2025-12-01','0000-00-00',3282,0,3371,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 11:04:45','','0000-00-00 00:00:00',0),(5633,0,0,4732,'2526','H','O',5225,'',0,'2025-12-01','0000-00-00',3283,0,3372,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','78136','','scan                          ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 11:05:46','','0000-00-00 00:00:00',0),(5634,0,0,4730,'2526','H','O',5226,'',0,'2025-12-01','0000-00-00',3281,0,3370,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','78136','','scan                          ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 11:06:06','','0000-00-00 00:00:00',0),(5635,0,0,4733,'2526','H','O',5227,'',0,'2025-12-01','0000-00-00',3284,0,3373,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 11:07:43','','0000-00-00 00:00:00',0),(5636,0,0,4734,'2526','H','O',5228,'',0,'2025-12-01','0000-00-00',2885,0,2962,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 5256','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 11:09:41','drashti','2025-12-01 12:27:15',0),(5637,0,0,4736,'2526','H','O',5229,'',0,'2025-12-01','0000-00-00',3286,0,3375,0,'D06','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','34466','','scan',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5230','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 11:12:56','reception','2025-12-01 11:14:21',0),(5638,0,0,4736,'2526','H','O',5230,'',0,'2025-12-01','0000-00-00',3286,0,3375,0,'D06','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','hdfc','','34466','','SCAN',-750.00,0,0,'2025-12-01','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 5229','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 11:14:21','reception','2025-12-01 11:15:39',0),(5639,0,0,4736,'2526','H','O',5231,'',0,'2025-12-01','0000-00-00',3286,0,3375,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','34466','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 11:17:13','','0000-00-00 00:00:00',0),(5640,0,0,4712,'2526','H','O',5232,'',0,'2025-12-01','0000-00-00',3273,0,3362,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 11:23:39','','0000-00-00 00:00:00',0),(5641,0,0,4738,'2526','H','O',5233,'',0,'2025-12-01','0000-00-00',2346,0,2402,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 11:25:11','','0000-00-00 00:00:00',0),(5642,0,0,4735,'2526','H','O',5234,'',0,'2025-12-01','0000-00-00',3285,0,3374,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-01 11:26:14','','0000-00-00 00:00:00',0),(5643,0,0,4739,'2526','H','O',5235,'',0,'2025-12-01','0000-00-00',1033,0,1067,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-01 11:26:55','','0000-00-00 00:00:00',0),(5644,0,0,4728,'2526','H','O',5236,'',0,'2025-12-01','0000-00-00',3279,0,3368,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 11:33:15','','0000-00-00 00:00:00',0),(5645,0,0,4714,'2526','H','O',5237,'',0,'2025-12-01','0000-00-00',3274,0,3363,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 11:37:07','','0000-00-00 00:00:00',0),(5646,0,0,4741,'2526','H','O',5238,'',0,'2025-12-01','0000-00-00',2643,0,2713,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 11:39:39','','0000-00-00 00:00:00',0),(5647,0,0,4047,'2526','H','D',216,'',0,'2025-12-01','0000-00-00',0,191,2956,0,'D02','',0,155190.00,0.00,0.00,155190.00,5190.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-100000,0,'0000-00-00','','N','N','F','N',50000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-01 11:44:24','riya','2025-12-01 14:21:25',0),(5648,0,0,4743,'2526','H','O',5239,'',0,'2025-12-01','0000-00-00',3289,0,3378,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 11:44:26','','0000-00-00 00:00:00',0),(5649,0,0,4744,'2526','H','O',5240,'',0,'2025-12-01','0000-00-00',3290,0,3379,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 11:44:40','','0000-00-00 00:00:00',0),(5650,0,0,4745,'2526','H','O',5241,'',0,'2025-12-01','0000-00-00',3291,0,3380,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 11:46:09','','0000-00-00 00:00:00',0),(5651,0,0,4746,'2526','H','O',5242,'',0,'2025-12-01','0000-00-00',2277,0,2334,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 11:46:37','','0000-00-00 00:00:00',0),(5652,0,0,4747,'2526','H','O',5243,'',0,'2025-12-01','0000-00-00',3292,0,3381,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 11:47:36','','0000-00-00 00:00:00',0),(5653,0,0,4748,'2526','H','O',5244,'',0,'2025-12-01','0000-00-00',1120,0,1161,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 11:50:26','','0000-00-00 00:00:00',0),(5654,0,0,4749,'2526','H','O',5245,'',0,'2025-12-01','0000-00-00',3293,0,3382,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 11:54:39','','0000-00-00 00:00:00',0),(5655,0,0,4737,'2526','H','O',5246,'',0,'2025-12-01','0000-00-00',3287,0,3376,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 11:56:39','','0000-00-00 00:00:00',0),(5656,0,0,4750,'2526','H','O',5247,'',0,'2025-12-01','0000-00-00',1535,0,1576,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 11:58:59','','0000-00-00 00:00:00',0),(5657,0,0,4594,'2526','H','D',217,'',0,'2025-12-01','0000-00-00',0,213,3287,0,'D02','',0,50000.00,0.00,0.00,50000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25000,0,'0000-00-00','','N','N','F','N',25000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-01 12:00:02','riya','2025-12-01 13:31:40',0),(5658,0,0,4725,'2526','H','O',5248,'',0,'2025-12-01','0000-00-00',2941,0,3019,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 12:04:07','','0000-00-00 00:00:00',0),(5659,0,0,4722,'2526','H','O',5249,'',0,'2025-12-01','0000-00-00',3278,0,3367,0,'D06','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 12:05:39','','0000-00-00 00:00:00',0),(5660,0,0,4752,'2526','H','O',5250,'',0,'2025-12-01','0000-00-00',2182,0,2237,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 12:07:26','','0000-00-00 00:00:00',0),(5661,0,0,4753,'2526','H','O',5251,'',0,'2025-12-01','0000-00-00',3294,0,3384,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 12:13:46','','0000-00-00 00:00:00',0),(5662,0,0,4754,'2526','H','O',5252,'',0,'2025-12-01','0000-00-00',3295,0,3385,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 12:14:18','','0000-00-00 00:00:00',0),(5663,0,0,4755,'2526','H','O',5253,'',0,'2025-12-01','0000-00-00',3296,0,3386,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 12:14:47','','0000-00-00 00:00:00',0),(5664,0,0,4756,'2526','H','O',5254,'',0,'2025-12-01','0000-00-00',178,0,191,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-01 12:21:50','','0000-00-00 00:00:00',0),(5665,0,0,4757,'2526','H','O',5255,'',0,'2025-12-01','0000-00-00',3297,0,3387,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 12:26:18','','0000-00-00 00:00:00',0),(5666,0,0,4734,'2526','H','O',5256,'',0,'2025-12-01','0000-00-00',2885,0,2962,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-12-01','Y','N','N','','N',0.00,'','Y','FOC','','HO 5228','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 12:27:15','drashti','2025-12-01 12:29:06',0),(5667,0,0,4756,'2526','H','O',5257,'',0,'2025-12-01','0000-00-00',178,0,191,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-01 12:27:23','','0000-00-00 00:00:00',0),(5668,0,0,4758,'2526','H','O',5258,'',0,'2025-12-01','0000-00-00',3298,0,3388,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 12:28:11','','0000-00-00 00:00:00',0),(5669,0,0,4729,'2526','H','O',5259,'',0,'2025-12-01','0000-00-00',3280,0,3369,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 12:30:59','','0000-00-00 00:00:00',0),(5670,0,0,4760,'2526','H','O',5260,'',0,'2025-12-01','0000-00-00',2254,0,2311,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 12:31:01','','0000-00-00 00:00:00',0),(5671,0,0,4759,'2526','H','O',5261,'',0,'2025-12-01','0000-00-00',3299,0,2660,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 12:31:51','','0000-00-00 00:00:00',0),(5672,0,0,4744,'2526','H','O',5262,'',0,'2025-12-01','0000-00-00',3290,0,3379,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 12:33:56','','0000-00-00 00:00:00',0),(5673,0,0,4761,'2526','H','O',5263,'',0,'2025-12-01','0000-00-00',3300,0,3389,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-01 12:36:31','','0000-00-00 00:00:00',0),(5674,0,0,4762,'2526','H','O',5264,'',0,'2025-12-01','0000-00-00',3301,0,3390,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 12:38:40','','0000-00-00 00:00:00',0),(5675,0,0,4763,'2526','H','O',5265,'',0,'2025-12-01','0000-00-00',3302,0,3391,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 12:45:15','','0000-00-00 00:00:00',0),(5676,0,0,4764,'2526','H','O',5266,'',0,'2025-12-01','0000-00-00',3303,0,3392,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 12:49:34','','0000-00-00 00:00:00',0),(5677,0,0,4765,'2526','H','O',5267,'',0,'2025-12-01','0000-00-00',3304,0,3393,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5269','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 12:50:10','janvi','2025-12-01 12:51:10',0),(5678,0,0,4761,'2526','H','O',5268,'',0,'2025-12-01','0000-00-00',3300,0,3389,0,'D03','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-01 12:50:47','','0000-00-00 00:00:00',0),(5679,0,0,4765,'2526','H','O',5269,'',0,'2025-12-01','0000-00-00',3304,0,3393,0,'D27','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-12-01','Y','N','Y','','N',0.00,'','Y','CANCEL','','HO 5267','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 12:51:10','janvi','2025-12-01 12:51:42',0),(5680,0,0,4766,'2526','H','O',5270,'',0,'2025-12-01','0000-00-00',199,0,212,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 12:51:37','','0000-00-00 00:00:00',0),(5681,0,0,4765,'2526','H','O',5271,'',0,'2025-12-01','0000-00-00',3304,0,3393,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','05294','','scan                          ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 12:52:48','','0000-00-00 00:00:00',0),(5682,0,0,4767,'2526','H','O',5272,'',0,'2025-12-01','0000-00-00',3305,0,3394,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 12:54:11','','0000-00-00 00:00:00',0),(5683,0,0,4768,'2526','H','O',5273,'',0,'2025-12-01','0000-00-00',3306,0,3395,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 12:57:09','','0000-00-00 00:00:00',0),(5684,0,0,4769,'2526','H','O',5274,'',0,'2025-12-01','0000-00-00',1781,0,1826,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 12:59:56','','0000-00-00 00:00:00',0),(5685,0,0,4770,'2526','H','O',5275,'',0,'2025-12-01','0000-00-00',3307,0,3396,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 13:00:52','','0000-00-00 00:00:00',0),(5686,0,0,4771,'2526','H','O',5276,'',0,'2025-12-01','0000-00-00',3308,0,3397,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 13:04:16','','0000-00-00 00:00:00',0),(5687,0,0,4772,'2526','H','O',5277,'',0,'2025-12-01','0000-00-00',2534,0,2591,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 13:05:28','','0000-00-00 00:00:00',0),(5688,0,0,4728,'2526','H','O',5278,'',0,'2025-12-01','0000-00-00',3279,0,3368,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 13:09:36','','0000-00-00 00:00:00',0),(5689,0,0,4758,'2526','H','O',5279,'',0,'2025-12-01','0000-00-00',3298,0,3388,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 13:12:32','','0000-00-00 00:00:00',0),(5690,0,0,4769,'2526','H','O',5280,'',0,'2025-12-01','0000-00-00',1781,0,1826,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 13:16:34','','0000-00-00 00:00:00',0),(5691,0,0,4768,'2526','H','O',5281,'',0,'2025-12-01','0000-00-00',3306,0,3395,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 13:21:14','','0000-00-00 00:00:00',0),(5692,0,0,4773,'2526','H','O',5282,'',0,'2025-12-01','0000-00-00',1170,0,1209,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 13:30:25','','0000-00-00 00:00:00',0),(5693,0,0,4774,'2526','H','O',5283,'',0,'2025-12-01','0000-00-00',3309,0,3398,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 13:30:46','','0000-00-00 00:00:00',0),(5694,0,0,4594,'2526','H','I',194,'',0,'2025-12-01','0000-00-00',0,213,3287,0,'D02','',0,50000.00,0.00,0.00,50000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-50000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(5695,0,0,4724,'2526','H','O',5284,'',0,'2025-12-01','0000-00-00',1506,0,1547,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-01','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 5217','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 13:38:05','reception','2025-12-01 13:40:21',0),(5696,0,0,4724,'2526','H','O',5285,'',0,'2025-12-01','0000-00-00',1506,0,1547,0,'D06','',0,500.00,0.00,0.00,500.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 13:41:09','','0000-00-00 00:00:00',0),(5697,0,0,4776,'2526','H','O',5286,'',0,'2025-12-01','0000-00-00',3310,0,3399,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 13:54:31','','0000-00-00 00:00:00',0),(5698,0,0,4775,'2526','H','O',5287,'',0,'2025-12-01','0000-00-00',3259,0,3342,0,'D02','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 14:16:45','','0000-00-00 00:00:00',0),(5699,0,0,4779,'2526','H','O',5288,'',0,'2025-12-01','0000-00-00',3311,0,3402,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 14:33:03','','0000-00-00 00:00:00',0),(5700,0,0,4047,'2526','H','I',195,'',0,'2025-12-01','0000-00-00',0,191,2956,0,'D02','',0,155190.00,0.00,0.00,155190.00,5190.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-150000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(5701,0,0,4727,'2526','H','O',5289,'',0,'2025-12-01','0000-00-00',2894,0,2971,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-01 14:33:45','','0000-00-00 00:00:00',0),(5702,0,0,4686,'2526','H','D',218,'',0,'2025-12-01','0000-00-00',0,217,3343,0,'D27','',0,17800.00,0.00,0.00,17800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10000,0,'0000-00-00','','N','N','F','N',7800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-01 14:42:42','riya','2025-12-01 15:13:24',0),(5703,0,0,4686,'2526','H','I',196,'',0,'2025-12-01','0000-00-00',0,217,3343,0,'D27','',0,17800.00,0.00,0.00,17800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-17800,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(5704,0,0,4782,'2526','H','O',5290,'',0,'2025-12-01','0000-00-00',2748,0,2818,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100 DISCOUNT','HO 5294','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 16:27:36','reception','2025-12-01 17:09:58',0),(5705,0,0,3764,'2526','H','D',219,'',0,'2025-12-01','0000-00-00',0,178,2780,0,'D02','',0,132150.00,0.00,0.00,132150.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-130250,0,'0000-00-00','','N','N','F','N',1900.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(5706,0,0,4783,'2526','H','O',5291,'',0,'2025-12-01','0000-00-00',3053,0,3134,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-01 16:51:14','','0000-00-00 00:00:00',0),(5707,0,0,4785,'2526','H','O',5292,'',0,'2025-12-01','0000-00-00',1834,0,1880,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 16:52:23','','0000-00-00 00:00:00',0),(5708,0,0,4784,'2526','H','O',5293,'',0,'2025-12-01','0000-00-00',3121,0,3207,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','CRD','ICICI BANK','','3227','','CARD',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 16:55:41','','0000-00-00 00:00:00',0),(5709,0,0,4782,'2526','H','O',5294,'',0,'2025-12-01','0000-00-00',2748,0,2818,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-01','Y','N','N','','N',0.00,'','Y','100 DISCOUNT','','HO 5290','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 17:09:58','reception','2025-12-01 17:11:00',0),(5710,0,0,4782,'2526','H','O',5295,'',0,'2025-12-01','0000-00-00',2748,0,2818,0,'D06','',0,500.00,0.00,0.00,500.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 17:13:04','','0000-00-00 00:00:00',0),(5711,0,0,4786,'2526','H','O',5296,'',0,'2025-12-01','0000-00-00',2746,0,2816,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','idfc bank','','89230','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 17:15:27','','0000-00-00 00:00:00',0),(5712,0,0,4787,'2526','H','O',5297,'',0,'2025-12-01','0000-00-00',3308,0,3397,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 17:18:49','','0000-00-00 00:00:00',0),(5713,0,0,4789,'2526','H','O',5298,'',0,'2025-12-01','0000-00-00',3313,0,3406,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 17:20:34','','0000-00-00 00:00:00',0),(5714,0,0,4790,'2526','H','O',5299,'',0,'2025-12-01','0000-00-00',3314,0,2691,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-01 17:22:32','','0000-00-00 00:00:00',0),(5715,0,0,4788,'2526','H','O',5300,'',0,'2025-12-01','0000-00-00',3312,0,3405,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','24013','','scan                          ',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 5363','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-01 17:23:49','reception','2025-12-01 19:28:38',0),(5716,0,0,4792,'2526','H','O',5301,'',0,'2025-12-01','0000-00-00',1436,0,1477,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 17:27:52','','0000-00-00 00:00:00',0),(5717,0,0,4794,'2526','H','O',5302,'',0,'2025-12-01','0000-00-00',2529,0,2586,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-01 17:30:57','','0000-00-00 00:00:00',0),(5718,0,0,4793,'2526','H','O',5303,'',0,'2025-12-01','0000-00-00',3315,0,3407,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','79914','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 17:31:56','','0000-00-00 00:00:00',0),(5719,0,0,4795,'2526','H','O',5304,'',0,'2025-12-01','0000-00-00',3010,0,3090,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 17:31:59','','0000-00-00 00:00:00',0),(5720,0,0,4796,'2526','H','O',5305,'',0,'2025-12-01','0000-00-00',3316,0,3408,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 17:33:01','','0000-00-00 00:00:00',0),(5721,0,0,4797,'2526','H','O',5306,'',0,'2025-12-01','0000-00-00',3317,0,3409,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 17:34:37','','0000-00-00 00:00:00',0),(5722,0,0,4798,'2526','H','O',5307,'',0,'2025-12-01','0000-00-00',3318,0,3410,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 17:35:49','','0000-00-00 00:00:00',0),(5723,0,0,4799,'2526','H','O',5308,'',0,'2025-12-01','0000-00-00',2188,0,2245,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 17:37:17','','0000-00-00 00:00:00',0),(5724,0,0,4800,'2526','H','O',5309,'',0,'2025-12-01','0000-00-00',3302,0,3391,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 17:40:06','','0000-00-00 00:00:00',0),(5725,0,0,4801,'2526','H','O',5310,'',0,'2025-12-01','0000-00-00',3319,0,3411,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 17:46:47','','0000-00-00 00:00:00',0),(5726,0,0,4803,'2526','H','O',5311,'',0,'2025-12-01','0000-00-00',3320,0,3412,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 17:49:54','','0000-00-00 00:00:00',0),(5727,0,0,4805,'2526','H','O',5312,'',0,'2025-12-01','0000-00-00',1371,0,1412,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 17:51:19','','0000-00-00 00:00:00',0),(5728,0,0,4806,'2526','H','O',5313,'',0,'2025-12-01','0000-00-00',1102,0,1140,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-01 17:51:41','','0000-00-00 00:00:00',0),(5729,0,0,4807,'2526','H','O',5314,'',0,'2025-12-01','0000-00-00',3321,0,3413,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5352','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 17:52:45','drashti','2025-12-01 18:55:38',0),(5730,0,0,4810,'2526','H','O',5315,'',0,'2025-12-01','0000-00-00',3323,0,3415,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-01 17:59:49','','0000-00-00 00:00:00',0),(5731,0,0,4809,'2526','H','O',5316,'',0,'2025-12-01','0000-00-00',3322,0,3414,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-01 18:00:00','','0000-00-00 00:00:00',0),(5732,0,0,4812,'2526','H','O',5317,'',0,'2025-12-01','0000-00-00',1672,0,1717,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 18:02:56','','0000-00-00 00:00:00',0),(5733,0,0,4813,'2526','H','O',5318,'',0,'2025-12-01','0000-00-00',3324,0,3416,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 18:02:57','','0000-00-00 00:00:00',0),(5734,0,0,4811,'2526','H','O',5319,'',0,'2025-12-01','0000-00-00',1501,0,1542,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','70446','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 18:05:16','','0000-00-00 00:00:00',0),(5735,0,0,4815,'2526','H','O',5320,'',0,'2025-12-01','0000-00-00',3325,0,3417,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','18157','','scan                          ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 18:05:38','','0000-00-00 00:00:00',0),(5736,0,0,4816,'2526','H','O',5321,'',0,'2025-12-01','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','41439','','scan                          ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 18:08:29','','0000-00-00 00:00:00',0),(5737,0,0,4817,'2526','H','O',5322,'',0,'2025-12-01','0000-00-00',1523,0,1564,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 18:09:16','','0000-00-00 00:00:00',0),(5738,0,0,4797,'2526','H','O',5323,'',0,'2025-12-01','0000-00-00',3317,0,3409,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 18:09:55','','0000-00-00 00:00:00',0),(5739,0,0,4818,'2526','H','O',5324,'',0,'2025-12-01','0000-00-00',3326,0,3418,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 18:11:34','','0000-00-00 00:00:00',0),(5740,0,0,4819,'2526','H','O',5325,'',0,'2025-12-01','0000-00-00',3327,0,3419,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 18:11:51','','0000-00-00 00:00:00',0),(5741,0,0,4820,'2526','H','O',5326,'',0,'2025-12-01','0000-00-00',2804,0,2873,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 18:13:23','','0000-00-00 00:00:00',0),(5742,0,0,4821,'2526','H','O',5327,'',0,'2025-12-01','0000-00-00',3328,0,3420,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 18:13:27','','0000-00-00 00:00:00',0),(5743,0,0,4794,'2526','H','O',5328,'',0,'2025-12-01','0000-00-00',2529,0,2586,0,'D03','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-01 18:13:31','','0000-00-00 00:00:00',0),(5744,0,0,4822,'2526','H','O',5329,'',0,'2025-12-01','0000-00-00',760,0,791,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 18:14:51','','0000-00-00 00:00:00',0),(5745,0,0,4823,'2526','H','O',5330,'',0,'2025-12-01','0000-00-00',3329,0,3421,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 18:16:25','','0000-00-00 00:00:00',0),(5746,0,0,4824,'2526','H','O',5331,'',0,'2025-12-01','0000-00-00',3330,0,3422,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 18:16:39','','0000-00-00 00:00:00',0),(5747,0,0,4825,'2526','H','O',5332,'',0,'2025-12-01','0000-00-00',3331,0,3423,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','21919','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 18:19:21','','0000-00-00 00:00:00',0),(5748,0,0,4803,'2526','H','O',5333,'',0,'2025-12-01','0000-00-00',3320,0,3412,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','29424','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 18:23:37','','0000-00-00 00:00:00',0),(5749,0,0,4804,'2526','H','O',5334,'',0,'2025-12-01','0000-00-00',3034,0,3115,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 18:25:59','','0000-00-00 00:00:00',0),(5750,0,0,4826,'2526','H','O',5335,'',0,'2025-12-01','0000-00-00',574,0,601,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 18:26:45','','0000-00-00 00:00:00',0),(5751,0,0,4827,'2526','H','O',5336,'',0,'2025-12-01','0000-00-00',1238,0,1279,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 18:28:58','','0000-00-00 00:00:00',0),(5752,0,0,4829,'2526','H','O',5337,'',0,'2025-12-01','0000-00-00',3333,0,3425,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 18:30:40','','0000-00-00 00:00:00',0),(5753,0,0,4830,'2526','H','O',5338,'',0,'2025-12-01','0000-00-00',1455,0,1496,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 18:32:15','','0000-00-00 00:00:00',0),(5754,0,0,4833,'2526','H','O',5339,'',0,'2025-12-01','0000-00-00',416,0,438,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 18:34:35','','0000-00-00 00:00:00',0),(5755,0,0,4831,'2526','H','O',5340,'',0,'2025-12-01','0000-00-00',3334,0,3426,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','CRD','sbi','74423','74423','','CARD',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 18:36:26','','0000-00-00 00:00:00',0),(5756,0,0,4835,'2526','H','O',5341,'',0,'2025-12-01','0000-00-00',3335,0,3428,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 18:36:57','','0000-00-00 00:00:00',0),(5757,0,0,4832,'2526','H','O',5342,'',0,'2025-12-01','0000-00-00',2681,0,2750,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','12678','','scan                          ',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 18:38:32','','0000-00-00 00:00:00',0),(5758,0,0,4836,'2526','H','O',5343,'',0,'2025-12-01','0000-00-00',2268,0,2325,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','50935','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 18:40:52','','0000-00-00 00:00:00',0),(5759,0,0,4814,'2526','H','O',5344,'',0,'2025-12-01','0000-00-00',2772,0,2841,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 18:41:35','','0000-00-00 00:00:00',0),(5760,0,0,4838,'2526','H','O',5345,'',0,'2025-12-01','0000-00-00',3336,0,3429,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5349','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 18:46:52','drashti','2025-12-01 18:54:14',0),(5761,0,0,4837,'2526','H','O',5346,'',0,'2025-12-01','0000-00-00',1274,0,1313,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','01735','','scan  ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 18:47:06','','0000-00-00 00:00:00',0),(5762,0,0,4840,'2526','H','O',5347,'',0,'2025-12-01','0000-00-00',303,0,319,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 18:49:30','','0000-00-00 00:00:00',0),(5763,0,0,4839,'2526','H','O',5348,'',0,'2025-12-01','0000-00-00',3337,0,3430,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 18:50:01','','0000-00-00 00:00:00',0),(5764,0,0,4690,'2526','H','D',220,'',0,'2025-12-01','0000-00-00',0,219,3346,0,'D27','',0,12600.00,0.00,0.00,12600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',5600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-01 18:51:57','','0000-00-00 00:00:00',0),(5765,0,0,4838,'2526','H','O',5349,'',0,'2025-12-01','0000-00-00',3336,0,3429,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-12-01','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 5345','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 18:54:14','drashti','2025-12-01 18:54:43',0),(5766,0,0,4841,'2526','H','O',5350,'',0,'2025-12-01','0000-00-00',3338,0,3431,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','idbi','','45474','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 18:54:23','','0000-00-00 00:00:00',0),(5767,0,0,4828,'2526','H','O',5351,'',0,'2025-12-01','0000-00-00',3332,0,3424,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-01 18:55:01','','0000-00-00 00:00:00',0),(5768,0,0,4807,'2526','H','O',5352,'',0,'2025-12-01','0000-00-00',3321,0,3413,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-12-01','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 5314','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 18:55:38','drashti','2025-12-01 18:55:58',0),(5769,0,0,4807,'2526','H','O',5353,'',0,'2025-12-01','0000-00-00',3321,0,3413,0,'D27','',0,750.00,0.00,0.00,750.00,250.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 18:57:22','','0000-00-00 00:00:00',0),(5770,0,0,4842,'2526','H','O',5354,'',0,'2025-12-01','0000-00-00',2752,0,2822,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 18:57:40','','0000-00-00 00:00:00',0),(5771,0,0,4838,'2526','H','O',5355,'',0,'2025-12-01','0000-00-00',3336,0,3429,0,'D27','',0,750.00,0.00,0.00,750.00,250.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 18:58:58','','0000-00-00 00:00:00',0),(5772,0,0,4690,'2526','H','I',197,'',0,'2025-12-01','0000-00-00',0,219,3346,0,'D27','',0,12600.00,0.00,0.00,12600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-12600,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-01 19:03:43','','0000-00-00 00:00:00',0),(5773,0,0,4845,'2526','H','O',5356,'',0,'2025-12-01','0000-00-00',3339,0,3432,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','66382','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 19:09:50','','0000-00-00 00:00:00',0),(5774,0,0,4827,'2526','H','O',5357,'',0,'2025-12-01','0000-00-00',1238,0,1279,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 19:10:57','','0000-00-00 00:00:00',0),(5775,0,0,4844,'2526','H','O',5358,'',0,'2025-12-01','0000-00-00',2005,0,2056,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 19:11:12','','0000-00-00 00:00:00',0),(5776,0,0,4843,'2526','H','O',5359,'',0,'2025-12-01','0000-00-00',2115,0,2167,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','rbi','','60269','','scan  ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 19:12:46','','0000-00-00 00:00:00',0),(5778,0,0,4846,'2526','H','O',5360,'',0,'2025-12-01','0000-00-00',1480,0,1521,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-01 19:13:57','','0000-00-00 00:00:00',0),(5779,0,0,4847,'2526','H','O',5361,'',0,'2025-12-01','0000-00-00',3340,0,3433,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 5370','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 19:16:16','shweta','2025-12-01 20:22:18',0),(5780,0,0,4848,'2526','H','O',5362,'',0,'2025-12-01','0000-00-00',3341,0,3434,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 19:17:40','','0000-00-00 00:00:00',0),(5781,0,0,4788,'2526','H','O',5363,'',0,'2025-12-01','0000-00-00',3312,0,3405,0,'D06','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','sbi','','24013','','SCAN',-700.00,0,0,'2025-12-01','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 5300','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 19:28:38','reception','2025-12-01 19:30:37',0),(5782,0,0,4788,'2526','H','O',5364,'',0,'2025-12-01','0000-00-00',3312,0,3405,0,'D06','',0,700.00,0.00,0.00,700.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','24013','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 19:32:23','','0000-00-00 00:00:00',0),(5783,0,0,4850,'2526','H','O',5365,'',0,'2025-12-01','0000-00-00',3124,0,3210,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 19:38:34','','0000-00-00 00:00:00',0),(5784,0,0,4849,'2526','H','O',5366,'',0,'2025-12-01','0000-00-00',3342,0,3435,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 19:38:36','','0000-00-00 00:00:00',0),(5785,0,0,4849,'2526','H','O',5367,'',0,'2025-12-01','0000-00-00',3342,0,3435,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-01 19:46:33','','0000-00-00 00:00:00',0),(5786,0,0,4851,'2526','H','O',5368,'',0,'2025-12-01','0000-00-00',2567,0,2627,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 19:56:53','','0000-00-00 00:00:00',0),(5787,0,0,4852,'2526','H','O',5369,'',0,'2025-12-01','0000-00-00',3021,0,3101,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','43456','','scan',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-01 20:21:53','','0000-00-00 00:00:00',0),(5788,0,0,4847,'2526','H','O',5370,'',0,'2025-12-01','0000-00-00',3340,0,3433,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-12-01','Y','N','N','','N',0.00,'','Y','FOC','','HO 5361','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-01 20:22:18','shweta','2025-12-01 20:22:39',0),(5789,0,0,4853,'2526','H','O',5371,'',0,'2025-12-02','0000-00-00',3343,0,3436,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 09:06:30','','0000-00-00 00:00:00',0),(5790,0,0,4854,'2526','H','O',5372,'',0,'2025-12-02','0000-00-00',3344,0,3437,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOI','','09078','','SAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 09:22:03','','0000-00-00 00:00:00',0),(5791,0,0,4856,'2526','H','O',5373,'',0,'2025-12-02','0000-00-00',3345,0,3439,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 09:59:44','','0000-00-00 00:00:00',0),(5792,0,0,4858,'2526','H','O',5374,'',0,'2025-12-02','0000-00-00',3346,0,3441,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 10:04:54','','0000-00-00 00:00:00',0),(5793,0,0,4859,'2526','H','O',5375,'',0,'2025-12-02','0000-00-00',3347,0,3442,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 10:06:42','','0000-00-00 00:00:00',0),(5794,0,0,4860,'2526','H','O',5376,'',0,'2025-12-02','0000-00-00',1505,0,1546,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 10:08:47','','0000-00-00 00:00:00',0),(5795,0,0,4861,'2526','H','O',5377,'',0,'2025-12-02','0000-00-00',1335,0,1375,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 10:09:01','','0000-00-00 00:00:00',0),(5796,0,0,4862,'2526','H','O',5378,'',0,'2025-12-02','0000-00-00',3348,0,3443,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 10:16:48','','0000-00-00 00:00:00',0),(5797,0,0,4864,'2526','H','O',5379,'',0,'2025-12-02','0000-00-00',3349,0,3445,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 10:23:53','','0000-00-00 00:00:00',0),(5798,0,0,4865,'2526','H','O',5380,'',0,'2025-12-02','0000-00-00',2842,0,2914,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 10:28:49','','0000-00-00 00:00:00',0),(5799,0,0,4866,'2526','H','O',5381,'',0,'2025-12-02','0000-00-00',3072,0,3158,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 10:29:07','','0000-00-00 00:00:00',0),(5800,0,0,4867,'2526','H','O',5382,'',0,'2025-12-02','0000-00-00',3350,0,3446,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 10:33:23','','0000-00-00 00:00:00',0),(5801,0,0,4870,'2526','H','O',5383,'',0,'2025-12-02','0000-00-00',1440,0,1481,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','TRNSFR TO DR RATHOD','HO 5391','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 10:42:33','shweta','2025-12-02 10:59:30',0),(5802,0,0,4871,'2526','H','O',5384,'',0,'2025-12-02','0000-00-00',3351,0,3448,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 10:42:44','','0000-00-00 00:00:00',0),(5803,0,0,4869,'2526','H','O',5385,'',0,'2025-12-02','0000-00-00',755,0,787,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','29638','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 10:43:17','','0000-00-00 00:00:00',0),(5804,0,0,4872,'2526','H','O',5386,'',0,'2025-12-02','0000-00-00',3352,0,3449,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 10:45:44','','0000-00-00 00:00:00',0),(5805,0,0,4873,'2526','H','O',5387,'',0,'2025-12-02','0000-00-00',1227,0,1268,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 10:47:14','','0000-00-00 00:00:00',0),(5806,0,0,4874,'2526','H','O',5388,'',0,'2025-12-02','0000-00-00',1346,0,1386,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','94281','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 10:49:45','','0000-00-00 00:00:00',0),(5807,0,0,4876,'2526','H','O',5389,'',0,'2025-12-02','0000-00-00',3354,0,3451,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 10:51:04','','0000-00-00 00:00:00',0);
INSERT INTO `receipt_header` VALUES (5808,0,0,4877,'2526','H','O',5390,'',0,'2025-12-02','0000-00-00',3355,0,3452,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 10:52:38','','0000-00-00 00:00:00',0),(5809,0,0,4870,'2526','H','O',5391,'',0,'2025-12-02','0000-00-00',1440,0,1481,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-12-02','Y','N','N','','N',0.00,'','Y','TRNSFR TO DR RATHOD','','HO 5383','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 10:59:30','shweta','2025-12-02 11:00:48',0),(5810,0,0,4853,'2526','H','O',5392,'',0,'2025-12-02','0000-00-00',3343,0,3436,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 11:00:19','','0000-00-00 00:00:00',0),(5811,0,0,4879,'2526','H','O',5393,'',0,'2025-12-02','0000-00-00',625,0,655,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 11:04:48','','0000-00-00 00:00:00',0),(5812,0,0,4880,'2526','H','O',5394,'',0,'2025-12-02','0000-00-00',951,0,982,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 11:06:07','','0000-00-00 00:00:00',0),(5813,0,0,4881,'2526','H','O',5395,'',0,'2025-12-02','0000-00-00',1440,0,1481,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 11:07:02','','0000-00-00 00:00:00',0),(5814,0,0,4882,'2526','H','O',5396,'',0,'2025-12-02','0000-00-00',3356,0,3453,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 11:08:28','','0000-00-00 00:00:00',0),(5815,0,0,4875,'2526','H','O',5397,'',0,'2025-12-02','0000-00-00',3353,0,3450,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','94429','','scan                          ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 11:10:24','','0000-00-00 00:00:00',0),(5816,0,0,4867,'2526','H','O',5398,'',0,'2025-12-02','0000-00-00',3350,0,3446,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 11:11:18','','0000-00-00 00:00:00',0),(5817,0,0,4883,'2526','H','O',5399,'',0,'2025-12-02','0000-00-00',3357,0,3454,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 11:13:29','','0000-00-00 00:00:00',0),(5818,0,0,4884,'2526','H','O',5400,'',0,'2025-12-02','0000-00-00',3358,0,3455,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 11:14:52','','0000-00-00 00:00:00',0),(5819,0,0,4885,'2526','H','O',5401,'',0,'2025-12-02','0000-00-00',3071,0,3157,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 11:21:55','','0000-00-00 00:00:00',0),(5820,0,0,4886,'2526','H','O',5402,'',0,'2025-12-02','0000-00-00',3359,0,3456,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 11:23:34','','0000-00-00 00:00:00',0),(5821,0,0,4878,'2526','H','O',5403,'',0,'2025-12-02','0000-00-00',2874,0,2201,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','94579','','scan                          ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 11:25:06','','0000-00-00 00:00:00',0),(5822,0,0,4887,'2526','H','O',5404,'',0,'2025-12-02','0000-00-00',3360,0,3457,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 11:26:08','','0000-00-00 00:00:00',0),(5823,0,0,4889,'2526','H','O',5405,'',0,'2025-12-02','0000-00-00',1432,0,1473,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-02 11:28:13','','0000-00-00 00:00:00',0),(5824,0,0,4888,'2526','H','O',5406,'',0,'2025-12-02','0000-00-00',3361,0,3458,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 11:28:29','','0000-00-00 00:00:00',0),(5825,0,0,4890,'2526','H','O',5407,'',0,'2025-12-02','0000-00-00',3362,0,3459,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-02 11:31:44','','0000-00-00 00:00:00',0),(5826,0,0,4892,'2526','H','O',5408,'',0,'2025-12-02','0000-00-00',3364,0,3461,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 11:34:49','','0000-00-00 00:00:00',0),(5827,0,0,4893,'2526','H','O',5409,'',0,'2025-12-02','0000-00-00',3365,0,3462,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 11:35:09','','0000-00-00 00:00:00',0),(5828,0,0,4891,'2526','H','O',5410,'',0,'2025-12-02','0000-00-00',3363,0,3460,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK BANK','','70405','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 11:36:12','','0000-00-00 00:00:00',0),(5829,0,0,4894,'2526','H','O',5411,'',0,'2025-12-02','0000-00-00',3366,0,3463,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 11:37:11','','0000-00-00 00:00:00',0),(5830,0,0,4895,'2526','H','O',5412,'',0,'2025-12-02','0000-00-00',3367,0,3464,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 11:41:37','','0000-00-00 00:00:00',0),(5831,0,0,4896,'2526','H','O',5413,'',0,'2025-12-02','0000-00-00',3368,0,3465,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 11:42:03','','0000-00-00 00:00:00',0),(5832,0,0,4897,'2526','H','O',5414,'',0,'2025-12-02','0000-00-00',3369,0,1481,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-02 11:46:37','','0000-00-00 00:00:00',0),(5833,0,0,4898,'2526','H','O',5415,'',0,'2025-12-02','0000-00-00',3370,0,3466,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 11:50:13','','0000-00-00 00:00:00',0),(5834,0,0,4899,'2526','H','O',5416,'',0,'2025-12-02','0000-00-00',3371,0,3446,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-02 11:55:20','','0000-00-00 00:00:00',0),(5835,0,0,4884,'2526','H','O',5417,'',0,'2025-12-02','0000-00-00',3358,0,3455,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 11:56:12','','0000-00-00 00:00:00',0),(5836,0,0,4900,'2526','H','O',5418,'',0,'2025-12-02','0000-00-00',3372,0,3467,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','33885','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 11:56:41','','0000-00-00 00:00:00',0),(5837,0,0,4901,'2526','H','O',5419,'',0,'2025-12-02','0000-00-00',3373,0,3468,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 12:00:36','','0000-00-00 00:00:00',0),(5838,0,0,4902,'2526','H','O',5420,'',0,'2025-12-02','0000-00-00',3374,0,3469,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 12:00:50','','0000-00-00 00:00:00',0),(5839,0,0,4903,'2526','H','O',5421,'',0,'2025-12-02','0000-00-00',3375,0,3470,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 12:04:27','','0000-00-00 00:00:00',0),(5840,0,0,4904,'2526','H','O',5422,'',0,'2025-12-02','0000-00-00',3376,0,3471,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 12:08:15','','0000-00-00 00:00:00',0),(5841,0,0,4887,'2526','H','O',5423,'',0,'2025-12-02','0000-00-00',3360,0,3457,0,'D06','',0,5000.00,0.00,0.00,5000.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 12:09:51','','0000-00-00 00:00:00',0),(5842,0,0,4905,'2526','H','O',5424,'',0,'2025-12-02','0000-00-00',3377,0,3472,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 12:13:26','','0000-00-00 00:00:00',0),(5843,0,0,4906,'2526','H','O',5425,'',0,'2025-12-02','0000-00-00',3378,0,3473,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 12:20:55','','0000-00-00 00:00:00',0),(5844,0,0,4907,'2526','H','O',5426,'',0,'2025-12-02','0000-00-00',3379,0,3474,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 12:24:44','','0000-00-00 00:00:00',0),(5845,0,0,4888,'2526','H','O',5427,'',0,'2025-12-02','0000-00-00',3361,0,3458,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 12:25:28','','0000-00-00 00:00:00',0),(5846,0,0,4909,'2526','H','O',5428,'',0,'2025-12-02','0000-00-00',2848,0,2920,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI','','82340','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 12:31:23','','0000-00-00 00:00:00',0),(5847,0,0,4910,'2526','H','O',5429,'',0,'2025-12-02','0000-00-00',3380,0,3475,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','UNION BANK','','97466','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 12:34:26','','0000-00-00 00:00:00',0),(5848,0,0,4911,'2526','H','O',5430,'',0,'2025-12-02','0000-00-00',3381,0,3476,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 12:38:34','','0000-00-00 00:00:00',0),(5849,0,0,4912,'2526','H','O',5431,'',0,'2025-12-02','0000-00-00',2279,0,2336,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI','','12762','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 12:50:08','','0000-00-00 00:00:00',0),(5850,0,0,4913,'2526','H','O',5432,'',0,'2025-12-02','0000-00-00',3382,0,3477,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5438','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 12:50:31','janvi','2025-12-02 13:06:44',0),(5851,0,0,4907,'2526','H','O',5433,'',0,'2025-12-02','0000-00-00',3379,0,3474,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 12:54:11','','0000-00-00 00:00:00',0),(5852,0,0,4914,'2526','H','O',5434,'',0,'2025-12-02','0000-00-00',3383,0,3478,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-02 12:56:08','','0000-00-00 00:00:00',0),(5853,0,0,4908,'2526','H','O',5435,'',0,'2025-12-02','0000-00-00',3265,0,3353,0,'D03','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-02 12:58:36','','0000-00-00 00:00:00',0),(5854,0,0,4915,'2526','H','O',5436,'',0,'2025-12-02','0000-00-00',3384,0,3479,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-02 13:00:27','','0000-00-00 00:00:00',0),(5855,0,0,4916,'2526','H','O',5437,'',0,'2025-12-02','0000-00-00',1501,0,1542,0,'D06','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 13:02:09','','0000-00-00 00:00:00',0),(5856,0,0,4913,'2526','H','O',5438,'',0,'2025-12-02','0000-00-00',3382,0,3477,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-12-02','Y','N','Y','','N',0.00,'','Y','CANCEL','','HO 5432','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 13:06:44','janvi','2025-12-02 13:07:03',0),(5857,0,0,4913,'2526','H','O',5439,'',0,'2025-12-02','0000-00-00',3382,0,3477,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 13:08:24','','0000-00-00 00:00:00',0),(5858,0,0,4918,'2526','H','O',5440,'',0,'2025-12-02','0000-00-00',303,0,319,0,'D02','',0,1000.00,0.00,0.00,1000.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 13:13:03','','0000-00-00 00:00:00',0),(5859,0,0,4911,'2526','H','O',5441,'',0,'2025-12-02','0000-00-00',3381,0,3476,0,'D06','',0,4400.00,0.00,0.00,4400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 13:23:29','','0000-00-00 00:00:00',0),(5860,0,0,4919,'2526','H','O',5442,'',0,'2025-12-02','0000-00-00',1054,0,1087,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','88118','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 13:35:02','','0000-00-00 00:00:00',0),(5861,0,0,4906,'2526','H','O',5443,'',0,'2025-12-02','0000-00-00',3378,0,3473,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','04767','','scan',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 13:36:30','','0000-00-00 00:00:00',0),(5862,0,0,4905,'2526','H','O',5444,'',0,'2025-12-02','0000-00-00',3377,0,3472,0,'D06','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 13:48:46','','0000-00-00 00:00:00',0),(5863,0,0,4921,'2526','H','O',5445,'',0,'2025-12-02','0000-00-00',3385,0,3481,0,'D02','',0,1000.00,0.00,0.00,1000.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','31318','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 13:53:05','','0000-00-00 00:00:00',0),(5864,0,0,4780,'2526','H','D',222,'',0,'2025-12-02','0000-00-00',0,227,3403,0,'D27','',0,6600.00,0.00,0.00,6600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',-400.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-02 14:04:48','riya','2025-12-02 14:05:43',0),(5865,0,0,4780,'2526','H','I',198,'',0,'2025-12-02','0000-00-00',0,227,3403,0,'D27','',0,6600.00,0.00,0.00,6600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-400.00,-7000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-02 14:21:28','','0000-00-00 00:00:00',0),(5866,0,0,4674,'2526','H','D',223,'',0,'2025-12-02','0000-00-00',0,215,3336,0,'D27','',0,29500.00,0.00,0.00,29500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-29000,0,'0000-00-00','','N','N','F','N',500.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(5867,0,0,4674,'2526','H','I',199,'',0,'2025-12-02','0000-00-00',0,215,3336,0,'D27','',0,29500.00,0.00,0.00,29500.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-29000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(5868,0,0,3611,'2526','H','D',224,'',0,'2025-12-02','0000-00-00',0,171,2685,0,'D02','',0,160000.00,0.00,0.00,160000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','D','N',160000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-02 16:03:49','riya','2025-12-02 16:15:04',0),(5869,0,0,4922,'2526','H','O',5446,'',0,'2025-12-02','0000-00-00',3386,0,3482,0,'D02','',0,2500.00,0.00,0.00,2500.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 16:15:43','','0000-00-00 00:00:00',0),(5870,0,0,4923,'2526','H','O',5447,'',0,'2025-12-02','0000-00-00',1503,0,1544,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 16:25:40','','0000-00-00 00:00:00',0),(5871,0,0,4868,'2526','H','D',225,'',0,'2025-12-02','0000-00-00',0,234,3447,0,'D02','',0,15000.00,0.00,0.00,15000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-02 16:50:50','vishal','2025-12-02 17:16:43',0),(5872,0,0,4924,'2526','H','O',5448,'',0,'2025-12-02','0000-00-00',3387,0,3483,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 16:51:43','','0000-00-00 00:00:00',0),(5873,0,0,4925,'2526','H','O',5449,'',0,'2025-12-02','0000-00-00',3005,0,3084,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','UNION BANK','','23210','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 16:54:25','','0000-00-00 00:00:00',0),(5874,0,0,4926,'2526','H','O',5450,'',0,'2025-12-02','0000-00-00',2118,0,1763,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 16:55:19','','0000-00-00 00:00:00',0),(5875,0,0,4927,'2526','H','O',5451,'',0,'2025-12-02','0000-00-00',2711,0,2782,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 17:07:10','','0000-00-00 00:00:00',0),(5876,0,0,4868,'2526','H','I',200,'',0,'2025-12-02','0000-00-00',0,234,3447,0,'D02','',0,15000.00,0.00,0.00,15000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-02 17:18:01','','0000-00-00 00:00:00',0),(5877,0,0,4928,'2526','H','O',5452,'',0,'2025-12-02','0000-00-00',2423,0,2479,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 17:19:21','','0000-00-00 00:00:00',0),(5878,0,0,4929,'2526','H','O',5453,'',0,'2025-12-02','0000-00-00',979,0,1012,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 17:22:46','','0000-00-00 00:00:00',0),(5879,0,0,4930,'2526','H','O',5454,'',0,'2025-12-02','0000-00-00',3388,0,3484,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 17:25:01','','0000-00-00 00:00:00',0),(5880,0,0,4932,'2526','H','O',5455,'',0,'2025-12-02','0000-00-00',3389,0,3485,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 17:32:32','','0000-00-00 00:00:00',0),(5881,0,0,4933,'2526','H','O',5456,'',0,'2025-12-02','0000-00-00',3390,0,3486,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 17:34:17','','0000-00-00 00:00:00',0),(5882,0,0,4934,'2526','H','O',5457,'',0,'2025-12-02','0000-00-00',1891,0,1938,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 17:35:44','','0000-00-00 00:00:00',0),(5883,0,0,4935,'2526','H','O',5458,'',0,'2025-12-02','0000-00-00',3391,0,3487,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 17:41:53','','0000-00-00 00:00:00',0),(5884,0,0,4936,'2526','H','O',5459,'',0,'2025-12-02','0000-00-00',3392,0,3021,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 17:43:33','','0000-00-00 00:00:00',0),(5885,0,0,4937,'2526','H','O',5460,'',0,'2025-12-02','0000-00-00',3393,0,3488,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 17:47:12','','0000-00-00 00:00:00',0),(5886,0,0,4939,'2526','H','O',5461,'',0,'2025-12-02','0000-00-00',3352,0,3449,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 17:49:33','','0000-00-00 00:00:00',0),(5887,0,0,4938,'2526','H','O',5462,'',0,'2025-12-02','0000-00-00',2932,0,3009,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','31952','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 17:50:35','','0000-00-00 00:00:00',0),(5888,0,0,4940,'2526','H','O',5463,'',0,'2025-12-02','0000-00-00',3394,0,3489,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 17:50:37','','0000-00-00 00:00:00',0),(5889,0,0,4941,'2526','H','O',5464,'',0,'2025-12-02','0000-00-00',2257,0,2314,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 17:58:53','','0000-00-00 00:00:00',0),(5890,0,0,4942,'2526','H','O',5465,'',0,'2025-12-02','0000-00-00',3395,0,3490,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 18:05:54','','0000-00-00 00:00:00',0),(5891,0,0,4943,'2526','H','O',5466,'',0,'2025-12-02','0000-00-00',3396,0,3491,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 18:06:51','','0000-00-00 00:00:00',0),(5892,0,0,4944,'2526','H','O',5467,'',0,'2025-12-02','0000-00-00',2584,0,2645,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 18:07:35','','0000-00-00 00:00:00',0),(5893,0,0,4945,'2526','H','O',5468,'',0,'2025-12-02','0000-00-00',3397,0,3492,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 18:09:36','','0000-00-00 00:00:00',0),(5894,0,0,4947,'2526','H','O',5469,'',0,'2025-12-02','0000-00-00',3399,0,3494,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 18:10:36','','0000-00-00 00:00:00',0),(5895,0,0,4946,'2526','H','O',5470,'',0,'2025-12-02','0000-00-00',3398,0,3493,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 18:12:15','','0000-00-00 00:00:00',0),(5896,0,0,4948,'2526','H','O',5471,'',0,'2025-12-02','0000-00-00',3400,0,3495,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 18:19:26','','0000-00-00 00:00:00',0),(5897,0,0,4945,'2526','H','O',5472,'',0,'2025-12-02','0000-00-00',3397,0,3492,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 18:21:00','','0000-00-00 00:00:00',0),(5898,0,0,4950,'2526','H','O',5473,'',0,'2025-12-02','0000-00-00',2930,0,3007,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 18:26:59','','0000-00-00 00:00:00',0),(5899,0,0,4952,'2526','H','O',5474,'',0,'2025-12-02','0000-00-00',3402,0,3497,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 18:34:40','','0000-00-00 00:00:00',0),(5900,0,0,4951,'2526','H','O',5475,'',0,'2025-12-02','0000-00-00',3401,0,3496,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 18:34:48','','0000-00-00 00:00:00',0),(5901,0,0,4953,'2526','H','O',5476,'',0,'2025-12-02','0000-00-00',3310,0,3399,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 18:37:42','','0000-00-00 00:00:00',0),(5902,0,0,4954,'2526','H','O',5477,'',0,'2025-12-02','0000-00-00',3403,0,3498,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 18:42:09','','0000-00-00 00:00:00',0),(5903,0,0,4955,'2526','H','O',5478,'',0,'2025-12-02','0000-00-00',1775,0,1821,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 18:44:21','','0000-00-00 00:00:00',0),(5904,0,0,4942,'2526','H','O',5479,'',0,'2025-12-02','0000-00-00',3395,0,3490,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 18:48:49','','0000-00-00 00:00:00',0),(5905,0,0,4956,'2526','H','O',5480,'',0,'2025-12-02','0000-00-00',2713,0,2784,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','10080','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 18:51:23','','0000-00-00 00:00:00',0),(5906,0,0,4957,'2526','H','O',5481,'',0,'2025-12-02','0000-00-00',3404,0,3499,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','23354','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 18:52:50','','0000-00-00 00:00:00',0),(5907,0,0,4958,'2526','H','O',5482,'',0,'2025-12-02','0000-00-00',1953,0,2001,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-02 18:55:34','','0000-00-00 00:00:00',0),(5908,0,0,4959,'2526','H','O',5483,'',0,'2025-12-02','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','46857','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 19:06:04','','0000-00-00 00:00:00',0),(5909,0,0,4960,'2526','H','O',5484,'',0,'2025-12-02','0000-00-00',3405,0,3500,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 19:07:12','','0000-00-00 00:00:00',0),(5910,0,0,4962,'2526','H','O',5485,'',0,'2025-12-02','0000-00-00',3407,0,3502,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','96385','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 19:09:42','','0000-00-00 00:00:00',0),(5911,0,0,4964,'2526','H','O',5486,'',0,'2025-12-02','0000-00-00',2528,0,1616,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 19:17:54','','0000-00-00 00:00:00',0),(5912,0,0,4965,'2526','H','O',5487,'',0,'2025-12-02','0000-00-00',3103,0,3190,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 19:21:42','','0000-00-00 00:00:00',0),(5913,0,0,4957,'2526','H','O',5488,'',0,'2025-12-02','0000-00-00',3404,0,3499,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI','','90382','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 19:25:14','','0000-00-00 00:00:00',0),(5914,0,0,4961,'2526','H','O',5489,'',0,'2025-12-02','0000-00-00',3406,0,3501,0,'D27','',0,750.00,0.00,0.00,750.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','ICICI BANK','','50229','','scan ',550.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 19:30:13','','0000-00-00 00:00:00',0),(5915,0,0,4966,'2526','H','O',5490,'',0,'2025-12-02','0000-00-00',3408,0,3503,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 19:34:18','','0000-00-00 00:00:00',0),(5916,0,0,4963,'2526','H','O',5491,'',0,'2025-12-02','0000-00-00',2507,0,2564,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','2','iob','','7','','CARD',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-02 19:45:16','','0000-00-00 00:00:00',0),(5917,0,0,4967,'2526','H','O',5492,'',0,'2025-12-02','0000-00-00',3409,0,3504,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 19:48:06','','0000-00-00 00:00:00',0),(5918,0,0,4691,'2526','H','D',226,'',0,'2025-12-02','0000-00-00',0,220,3347,0,'D02','',0,40500.00,0.00,0.00,40500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-40500,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-02 19:48:20','vishal','2025-12-02 20:58:05',0),(5919,0,0,4969,'2526','H','O',5493,'',0,'2025-12-02','0000-00-00',3410,0,3505,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-02 20:24:27','','0000-00-00 00:00:00',0),(5920,0,0,4691,'2526','H','I',201,'',1,'2025-12-02','0000-00-00',0,220,3347,0,'D02','',0,40500.00,0.00,0.00,40500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-40500,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-02 20:58:15','vishal','2025-12-02 21:01:06',0),(5921,0,0,4971,'2526','H','O',5494,'',0,'2025-12-03','0000-00-00',2965,0,3044,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 08:41:58','','0000-00-00 00:00:00',0),(5922,0,0,4972,'2526','H','O',5495,'',0,'2025-12-03','0000-00-00',3411,0,3507,0,'D03','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','00971','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 08:44:18','','0000-00-00 00:00:00',0),(5923,0,0,4973,'2526','H','O',5496,'',0,'2025-12-03','0000-00-00',3410,0,3505,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 08:48:11','','0000-00-00 00:00:00',0),(5924,0,0,4974,'2526','H','O',5497,'',0,'2025-12-03','0000-00-00',3412,0,3508,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 09:11:48','','0000-00-00 00:00:00',0),(5925,0,0,4975,'2526','H','O',5498,'',0,'2025-12-03','0000-00-00',3413,0,3509,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 09:23:30','','0000-00-00 00:00:00',0),(5926,0,0,4976,'2526','H','O',5499,'',0,'2025-12-03','0000-00-00',834,0,865,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 09:35:18','','0000-00-00 00:00:00',0),(5927,0,0,4979,'2526','H','O',5500,'',0,'2025-12-03','0000-00-00',3415,0,3512,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 09:50:27','','0000-00-00 00:00:00',0),(5928,0,0,4978,'2526','H','O',5501,'',0,'2025-12-03','0000-00-00',3414,0,3511,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 09:50:37','','0000-00-00 00:00:00',0),(5929,0,0,4980,'2526','H','O',5502,'',0,'2025-12-03','0000-00-00',3416,0,3513,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 10:09:51','','0000-00-00 00:00:00',0),(5930,0,0,4981,'2526','H','O',5503,'',0,'2025-12-03','0000-00-00',1144,0,1184,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 10:11:49','','0000-00-00 00:00:00',0),(5931,0,0,4982,'2526','H','O',5504,'',0,'2025-12-03','0000-00-00',3417,0,3514,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 10:14:47','','0000-00-00 00:00:00',0),(5932,0,0,4983,'2526','H','O',5505,'',0,'2025-12-03','0000-00-00',693,0,724,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5511','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-03 10:17:58','janvi','2025-12-03 10:34:10',0),(5933,0,0,4984,'2526','H','O',5506,'',0,'2025-12-03','0000-00-00',3418,0,3515,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 10:24:37','','0000-00-00 00:00:00',0),(5934,0,0,4985,'2526','H','O',5507,'',0,'2025-12-03','0000-00-00',1556,0,1599,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 10:27:08','','0000-00-00 00:00:00',0),(5935,0,0,4986,'2526','H','O',5508,'',0,'2025-12-03','0000-00-00',3419,0,3516,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 10:30:29','','0000-00-00 00:00:00',0),(5936,0,0,4987,'2526','H','O',5509,'',0,'2025-12-03','0000-00-00',3420,0,3517,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 10:32:21','','0000-00-00 00:00:00',0),(5937,0,0,4988,'2526','H','O',5510,'',0,'2025-12-03','0000-00-00',1777,0,1822,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 10:32:37','','0000-00-00 00:00:00',0),(5938,0,0,4983,'2526','H','O',5511,'',0,'2025-12-03','0000-00-00',693,0,724,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-12-03','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 5505','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 10:34:10','janvi','2025-12-03 10:34:44',0),(5939,0,0,4989,'2526','H','O',5512,'',0,'2025-12-03','0000-00-00',2419,0,2475,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 10:35:33','','0000-00-00 00:00:00',0),(5940,0,0,4983,'2526','H','O',5513,'',0,'2025-12-03','0000-00-00',693,0,724,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 10:36:20','','0000-00-00 00:00:00',0),(5941,0,0,4991,'2526','H','O',5514,'',0,'2025-12-03','0000-00-00',3422,0,3519,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 10:37:29','','0000-00-00 00:00:00',0),(5942,0,0,4990,'2526','H','O',5515,'',0,'2025-12-03','0000-00-00',3421,0,3518,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 10:37:53','','0000-00-00 00:00:00',0),(5943,0,0,4992,'2526','H','O',5516,'',0,'2025-12-03','0000-00-00',3423,0,3520,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 10:41:29','','0000-00-00 00:00:00',0),(5944,0,0,4993,'2526','H','O',5517,'',0,'2025-12-03','0000-00-00',101,0,112,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 10:42:14','','0000-00-00 00:00:00',0),(5945,0,0,4711,'2526','H','D',227,'',0,'2025-12-03','0000-00-00',0,223,3361,0,'D02','',0,55000.00,0.00,0.00,55000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-50000,0,'0000-00-00','','N','N','F','N',5000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-03 10:51:33','riya','2025-12-03 10:54:04',0),(5946,0,0,4997,'2526','H','O',5518,'',0,'2025-12-03','0000-00-00',3425,0,3522,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 10:59:41','','0000-00-00 00:00:00',0),(5947,0,0,4711,'2526','H','I',202,'',1,'2025-12-03','0000-00-00',0,223,3361,0,'D02','',0,55000.00,0.00,0.00,55000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-55000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-03 11:01:32','riya','2025-12-03 11:03:00',0),(5948,0,0,4999,'2526','H','O',5519,'',0,'2025-12-03','0000-00-00',3426,0,3523,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 11:02:16','','0000-00-00 00:00:00',0),(5949,0,0,5000,'2526','H','O',5520,'',0,'2025-12-03','0000-00-00',3427,0,3524,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 11:02:58','','0000-00-00 00:00:00',0),(5950,0,0,4975,'2526','H','O',5521,'',0,'2025-12-03','0000-00-00',3413,0,3509,0,'D06','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 11:04:53','','0000-00-00 00:00:00',0),(5951,0,0,5002,'2526','H','O',5522,'',0,'2025-12-03','0000-00-00',3428,0,3525,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','N','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 11:11:09','','0000-00-00 00:00:00',0),(5952,0,0,4979,'2526','H','O',5523,'',0,'2025-12-03','0000-00-00',3415,0,3512,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 11:13:29','','0000-00-00 00:00:00',0),(5953,0,0,5003,'2526','H','O',5524,'',0,'2025-12-03','0000-00-00',3429,0,3526,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','N','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 11:13:41','','0000-00-00 00:00:00',0),(5954,0,0,5004,'2526','H','O',5525,'',0,'2025-12-03','0000-00-00',2406,0,2462,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','98229','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 11:14:04','','0000-00-00 00:00:00',0),(5955,0,0,5005,'2526','H','O',5526,'',0,'2025-12-03','0000-00-00',1595,0,1639,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 11:15:10','','0000-00-00 00:00:00',0),(5956,0,0,5006,'2526','H','O',5527,'',0,'2025-12-03','0000-00-00',3430,0,3527,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 11:16:45','','0000-00-00 00:00:00',0),(5957,0,0,5008,'2526','H','O',5528,'',0,'2025-12-03','0000-00-00',2290,0,2347,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 11:20:30','','0000-00-00 00:00:00',0),(5958,0,0,5010,'2526','H','O',5529,'',0,'2025-12-03','0000-00-00',3431,0,3528,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 11:34:25','','0000-00-00 00:00:00',0),(5959,0,0,5011,'2526','H','O',5530,'',0,'2025-12-03','0000-00-00',3432,0,3529,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 11:35:55','','0000-00-00 00:00:00',0),(5960,0,0,5009,'2526','H','O',5531,'',0,'2025-12-03','0000-00-00',1856,0,1902,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','2','axis bank','74423','74423','','CARD',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 11:36:34','','0000-00-00 00:00:00',0),(5961,0,0,5012,'2526','H','O',5532,'',0,'2025-12-03','0000-00-00',3433,0,3530,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 11:37:16','','0000-00-00 00:00:00',0),(5962,0,0,5013,'2526','H','O',5533,'',0,'2025-12-03','0000-00-00',708,0,739,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 11:39:06','','0000-00-00 00:00:00',0),(5963,0,0,5014,'2526','H','O',5534,'',0,'2025-12-03','0000-00-00',3434,0,3531,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5555','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 11:39:21','reception','2025-12-03 12:45:45',0),(5964,0,0,5015,'2526','H','O',5535,'',0,'2025-12-03','0000-00-00',3435,0,3532,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 11:41:55','','0000-00-00 00:00:00',0),(5965,0,0,4994,'2526','H','O',5536,'',0,'2025-12-03','0000-00-00',3424,0,3521,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 11:42:48','','0000-00-00 00:00:00',0),(5966,0,0,5017,'2526','H','O',5537,'',0,'2025-12-03','0000-00-00',3436,0,3533,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 11:47:32','','0000-00-00 00:00:00',0),(5967,0,0,5016,'2526','H','O',5538,'',0,'2025-12-03','0000-00-00',1807,0,1853,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 11:49:51','','0000-00-00 00:00:00',0),(5968,0,0,5018,'2526','H','O',5539,'',0,'2025-12-03','0000-00-00',3437,0,3534,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 11:52:15','','0000-00-00 00:00:00',0),(5969,0,0,5020,'2526','H','O',5540,'',0,'2025-12-03','0000-00-00',3248,0,3330,0,'D06','',0,5200.00,0.00,0.00,5200.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 11:55:37','','0000-00-00 00:00:00',0),(5970,0,0,5021,'2526','H','O',5541,'',0,'2025-12-03','0000-00-00',1928,0,1976,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','INDIA POST PAY','','08190','','SCAN',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-03 11:55:55','','0000-00-00 00:00:00',0),(5971,0,0,5011,'2526','H','O',5542,'',0,'2025-12-03','0000-00-00',3432,0,3529,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 11:56:16','','0000-00-00 00:00:00',0),(5972,0,0,5001,'2526','H','O',5543,'',0,'2025-12-03','0000-00-00',3259,0,3342,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 11:58:42','','0000-00-00 00:00:00',0),(5973,0,0,4984,'2526','H','O',5544,'',0,'2025-12-03','0000-00-00',3418,0,3515,0,'D06','',0,6900.00,0.00,0.00,6900.00,1500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 11:59:58','','0000-00-00 00:00:00',0),(5974,0,0,5022,'2526','H','O',5545,'',0,'2025-12-03','0000-00-00',3438,0,3535,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 12:01:08','','0000-00-00 00:00:00',0),(5975,0,0,5024,'2526','H','O',5546,'',0,'2025-12-03','0000-00-00',3439,0,3536,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 12:10:40','','0000-00-00 00:00:00',0),(5976,0,0,5025,'2526','H','O',5547,'',0,'2025-12-03','0000-00-00',1457,0,1498,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 12:13:32','','0000-00-00 00:00:00',0),(5977,0,0,4983,'2526','H','O',5548,'',0,'2025-12-03','0000-00-00',693,0,724,0,'D03','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-03 12:14:24','','0000-00-00 00:00:00',0),(5978,0,0,5026,'2526','H','O',5549,'',0,'2025-12-03','0000-00-00',3440,0,3537,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 12:18:29','','0000-00-00 00:00:00',0),(5979,0,0,5027,'2526','H','O',5550,'',0,'2025-12-03','0000-00-00',3038,0,3119,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 12:19:33','','0000-00-00 00:00:00',0),(5980,0,0,5029,'2526','H','O',5551,'',0,'2025-12-03','0000-00-00',3442,0,3539,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOI','','92500','','scan ',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 12:31:44','','0000-00-00 00:00:00',0),(5981,0,0,5030,'2526','H','O',5552,'',0,'2025-12-03','0000-00-00',931,0,962,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 12:37:30','','0000-00-00 00:00:00',0),(5982,0,0,5012,'2526','H','O',5553,'',0,'2025-12-03','0000-00-00',3433,0,3530,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 12:39:27','','0000-00-00 00:00:00',0),(5983,0,0,5031,'2526','H','O',5554,'',0,'2025-12-03','0000-00-00',3443,0,3540,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 12:42:40','','0000-00-00 00:00:00',0),(5984,0,0,5014,'2526','H','O',5555,'',0,'2025-12-03','0000-00-00',3434,0,3531,0,'D06','',0,-800.00,0.00,0.00,-800.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-800.00,0,0,'2025-12-03','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 5534','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 12:45:45','reception','2025-12-03 12:46:05',0),(5985,0,0,5014,'2526','H','O',5556,'',0,'2025-12-03','0000-00-00',3434,0,3531,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 12:46:38','','0000-00-00 00:00:00',0),(5986,0,0,5032,'2526','H','O',5557,'',0,'2025-12-03','0000-00-00',3444,0,3541,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 12:47:39','','0000-00-00 00:00:00',0),(5987,0,0,5033,'2526','H','O',5558,'',0,'2025-12-03','0000-00-00',3445,0,3542,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 13:22:27','','0000-00-00 00:00:00',0),(5988,0,0,5034,'2526','H','O',5559,'',0,'2025-12-03','0000-00-00',1683,0,1728,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 13:29:40','','0000-00-00 00:00:00',0),(5989,0,0,5033,'2526','H','O',5560,'',0,'2025-12-03','0000-00-00',3445,0,3542,0,'D06','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-03 14:05:10','','0000-00-00 00:00:00',0),(5990,0,0,3909,'2526','H','D',228,'',0,'2025-12-03','0000-00-00',0,181,2866,0,'D27','',0,112400.00,0.00,0.00,112400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-120000,0,'0000-00-00','','N','N','F','N',-7600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-03 15:53:47','riya','2025-12-03 16:40:16',0),(5991,0,0,5041,'2526','H','O',5561,'',0,'2025-12-03','0000-00-00',3447,0,3546,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 16:31:06','','0000-00-00 00:00:00',0),(5992,0,0,5042,'2526','H','O',5562,'',0,'2025-12-03','0000-00-00',2424,0,2480,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 16:32:08','','0000-00-00 00:00:00',0),(5993,0,0,5044,'2526','H','O',5563,'',0,'2025-12-03','0000-00-00',3448,0,3547,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','N','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-03 16:38:47','','0000-00-00 00:00:00',0),(5994,0,0,5045,'2526','H','O',5564,'',0,'2025-12-03','0000-00-00',3449,0,3548,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 16:39:12','','0000-00-00 00:00:00',0),(5995,0,0,3909,'2526','H','I',203,'',0,'2025-12-03','0000-00-00',0,181,2866,0,'D27','',0,112400.00,0.00,0.00,112400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-7600.00,-120000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(5996,0,0,5050,'2526','H','O',5565,'',0,'2025-12-03','0000-00-00',2493,0,2551,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 17:13:32','','0000-00-00 00:00:00',0),(5997,0,0,5051,'2526','H','O',5566,'',0,'2025-12-03','0000-00-00',3328,0,3420,0,'D06','',0,3500.00,0.00,0.00,3500.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 17:15:04','','0000-00-00 00:00:00',0),(5998,0,0,5052,'2526','H','O',5567,'',0,'2025-12-03','0000-00-00',3453,0,3552,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 17:19:32','','0000-00-00 00:00:00',0),(5999,0,0,5053,'2526','H','O',5568,'',0,'2025-12-03','0000-00-00',1017,0,1051,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 17:21:31','','0000-00-00 00:00:00',0),(6000,0,0,5054,'2526','H','O',5569,'',0,'2025-12-03','0000-00-00',1329,0,1369,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 17:23:46','','0000-00-00 00:00:00',0),(6001,0,0,5055,'2526','H','O',5570,'',0,'2025-12-03','0000-00-00',3454,0,3553,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 17:25:22','','0000-00-00 00:00:00',0),(6002,0,0,5057,'2526','H','O',5571,'',0,'2025-12-03','0000-00-00',3456,0,3555,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 17:29:21','','0000-00-00 00:00:00',0),(6003,0,0,5058,'2526','H','O',5572,'',0,'2025-12-03','0000-00-00',2426,0,2482,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 17:30:52','','0000-00-00 00:00:00',0),(6004,0,0,5059,'2526','H','O',5573,'',0,'2025-12-03','0000-00-00',3457,0,3556,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 17:33:21','','0000-00-00 00:00:00',0),(6005,0,0,5060,'2526','H','O',5574,'',0,'2025-12-03','0000-00-00',3458,0,3557,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 17:39:19','','0000-00-00 00:00:00',0),(6006,0,0,5062,'2526','H','O',5575,'',0,'2025-12-03','0000-00-00',3460,0,3559,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 17:44:09','','0000-00-00 00:00:00',0),(6007,0,0,5063,'2526','H','O',5576,'',0,'2025-12-03','0000-00-00',3461,0,3560,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5605','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-03 17:49:27','manshi','2025-12-03 18:32:57',0),(6008,0,0,5052,'2526','H','O',5577,'',0,'2025-12-03','0000-00-00',3453,0,3552,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 17:54:17','','0000-00-00 00:00:00',0),(6009,0,0,5064,'2526','H','O',5578,'',0,'2025-12-03','0000-00-00',3462,0,3561,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 18:02:05','','0000-00-00 00:00:00',0),(6010,0,0,5065,'2526','H','O',5579,'',0,'2025-12-03','0000-00-00',1147,0,1187,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 18:04:04','','0000-00-00 00:00:00',0),(6011,0,0,5066,'2526','H','O',5580,'',0,'2025-12-03','0000-00-00',3463,0,3562,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 18:04:25','','0000-00-00 00:00:00',0),(6012,0,0,5067,'2526','H','O',5581,'',0,'2025-12-03','0000-00-00',3464,0,3563,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 18:05:16','','0000-00-00 00:00:00',0),(6013,0,0,5068,'2526','H','O',5582,'',0,'2025-12-03','0000-00-00',3465,0,3564,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 18:05:49','','0000-00-00 00:00:00',0),(6014,0,0,5069,'2526','H','O',5583,'',0,'2025-12-03','0000-00-00',3466,0,3565,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 18:06:44','','0000-00-00 00:00:00',0),(6015,0,0,5071,'2526','H','O',5584,'',0,'2025-12-03','0000-00-00',3468,0,3567,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 18:08:14','','0000-00-00 00:00:00',0),(6016,0,0,5070,'2526','H','O',5585,'',0,'2025-12-03','0000-00-00',3467,0,3566,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 18:08:32','','0000-00-00 00:00:00',0),(6017,0,0,5073,'2526','H','O',5586,'',0,'2025-12-03','0000-00-00',3469,0,3568,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 18:10:25','','0000-00-00 00:00:00',0),(6018,0,0,5074,'2526','H','O',5587,'',0,'2025-12-03','0000-00-00',3470,0,3569,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 18:11:53','','0000-00-00 00:00:00',0),(6019,0,0,5055,'2526','H','O',5588,'',0,'2025-12-03','0000-00-00',3454,0,3553,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 18:13:59','','0000-00-00 00:00:00',0),(6020,0,0,5076,'2526','H','O',5589,'',0,'2025-12-03','0000-00-00',3472,0,3571,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 18:14:40','','0000-00-00 00:00:00',0),(6021,0,0,5075,'2526','H','O',5590,'',0,'2025-12-03','0000-00-00',3471,0,3570,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI BANK','','20084','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 18:15:18','','0000-00-00 00:00:00',0),(6022,0,0,5077,'2526','H','O',5591,'',0,'2025-12-03','0000-00-00',3473,0,3572,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI BANK','','20084','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 18:15:31','','0000-00-00 00:00:00',0),(6023,0,0,5079,'2526','H','O',5592,'',0,'2025-12-03','0000-00-00',3475,0,3574,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','81570','','scan  ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 18:17:07','','0000-00-00 00:00:00',0),(6024,0,0,5080,'2526','H','O',5593,'',0,'2025-12-03','0000-00-00',3476,0,3575,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 18:17:31','','0000-00-00 00:00:00',0),(6025,0,0,5081,'2526','H','O',5594,'',0,'2025-12-03','0000-00-00',3477,0,3576,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 18:18:58','','0000-00-00 00:00:00',0),(6026,0,0,5082,'2526','H','O',5595,'',0,'2025-12-03','0000-00-00',3478,0,3577,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 18:20:07','','0000-00-00 00:00:00',0),(6027,0,0,5059,'2526','H','O',5596,'',0,'2025-12-03','0000-00-00',3457,0,3556,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 18:20:47','','0000-00-00 00:00:00',0),(6028,0,0,5083,'2526','H','O',5597,'',0,'2025-12-03','0000-00-00',2685,0,2754,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 18:21:44','','0000-00-00 00:00:00',0),(6029,0,0,5067,'2526','H','O',5598,'',0,'2025-12-03','0000-00-00',3464,0,3563,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 18:27:44','','0000-00-00 00:00:00',0),(6030,0,0,5085,'2526','H','O',5599,'',0,'2025-12-03','0000-00-00',3480,0,3579,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 18:28:19','','0000-00-00 00:00:00',0),(6031,0,0,5084,'2526','H','O',5600,'',0,'2025-12-03','0000-00-00',3479,0,3578,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 18:28:47','','0000-00-00 00:00:00',0),(6032,0,0,5086,'2526','H','O',5601,'',0,'2025-12-03','0000-00-00',3481,0,3580,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','yes bank','','26920','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 18:29:20','','0000-00-00 00:00:00',0),(6033,0,0,5064,'2526','H','O',5602,'',0,'2025-12-03','0000-00-00',3462,0,3561,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 18:30:16','','0000-00-00 00:00:00',0),(6034,0,0,5087,'2526','H','O',5603,'',0,'2025-12-03','0000-00-00',3482,0,3581,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 18:30:35','','0000-00-00 00:00:00',0),(6035,0,0,5088,'2526','H','O',5604,'',0,'2025-12-03','0000-00-00',3483,0,3582,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 18:31:11','','0000-00-00 00:00:00',0),(6036,0,0,5063,'2526','H','O',5605,'',0,'2025-12-03','0000-00-00',3461,0,3560,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-03','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 5576','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-03 18:32:57','manshi','2025-12-03 18:33:24',0),(6037,0,0,5063,'2526','H','O',5606,'',0,'2025-12-03','0000-00-00',3461,0,3560,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-03 18:34:13','','0000-00-00 00:00:00',0),(6038,0,0,5091,'2526','H','O',5607,'',0,'2025-12-03','0000-00-00',3484,0,3584,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 18:45:08','','0000-00-00 00:00:00',0),(6039,0,0,5095,'2526','H','O',5608,'',0,'2025-12-03','0000-00-00',3487,0,3587,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 18:49:27','','0000-00-00 00:00:00',0),(6040,0,0,5094,'2526','H','O',5609,'',0,'2025-12-03','0000-00-00',3486,0,3586,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 18:49:49','','0000-00-00 00:00:00',0),(6041,0,0,5092,'2526','H','O',5610,'',0,'2025-12-03','0000-00-00',3485,0,3585,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','axis bank','','37280','','scan ',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5614','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 18:49:55','urvashi','2025-12-03 18:58:16',0),(6042,0,0,5096,'2526','H','O',5611,'',0,'2025-12-03','0000-00-00',3488,0,3588,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 18:51:41','','0000-00-00 00:00:00',0),(6043,0,0,5097,'2526','H','O',5612,'',0,'2025-12-03','0000-00-00',3489,0,3589,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','69042','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 18:55:14','','0000-00-00 00:00:00',0),(6044,0,0,5099,'2526','H','O',5613,'',0,'2025-12-03','0000-00-00',1085,0,714,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 18:56:23','','0000-00-00 00:00:00',0),(6045,0,0,5092,'2526','H','O',5614,'',0,'2025-12-03','0000-00-00',3485,0,3585,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','axis bank','','37280','','',-400.00,0,0,'2025-12-03','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 5610','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 18:58:16','urvashi','2025-12-03 18:59:17',0),(6046,0,0,5100,'2526','H','O',5615,'',0,'2025-12-03','0000-00-00',3491,0,3591,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 18:59:05','','0000-00-00 00:00:00',0),(6047,0,0,5101,'2526','H','O',5616,'',0,'2025-12-03','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 18:59:31','','0000-00-00 00:00:00',0),(6048,0,0,5102,'2526','H','O',5617,'',0,'2025-12-03','0000-00-00',3492,0,3592,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','axis bank','','37280','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 19:01:09','','0000-00-00 00:00:00',0),(6049,0,0,5103,'2526','H','O',5618,'',0,'2025-12-03','0000-00-00',3493,0,3593,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 19:01:11','','0000-00-00 00:00:00',0),(6050,0,0,5090,'2526','H','O',5619,'',0,'2025-12-03','0000-00-00',789,0,820,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 19:02:32','','0000-00-00 00:00:00',0),(6051,0,0,5074,'2526','H','O',5620,'',0,'2025-12-03','0000-00-00',3470,0,3569,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 19:02:56','','0000-00-00 00:00:00',0),(6052,0,0,5093,'2526','H','O',5621,'',0,'2025-12-03','0000-00-00',2995,0,3073,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 19:04:00','','0000-00-00 00:00:00',0),(6053,0,0,5104,'2526','H','O',5622,'',0,'2025-12-03','0000-00-00',3310,0,3399,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 19:05:13','','0000-00-00 00:00:00',0),(6054,0,0,5091,'2526','H','O',5623,'',0,'2025-12-03','0000-00-00',3484,0,3584,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-03 19:11:59','','0000-00-00 00:00:00',0),(6055,0,0,5106,'2526','H','O',5624,'',0,'2025-12-03','0000-00-00',2033,0,2087,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 19:12:22','','0000-00-00 00:00:00',0),(6056,0,0,5095,'2526','H','O',5625,'',0,'2025-12-03','0000-00-00',3487,0,3587,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-03 19:13:18','','0000-00-00 00:00:00',0),(6057,0,0,5107,'2526','H','O',5626,'',0,'2025-12-03','0000-00-00',787,0,818,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-03 19:15:50','','0000-00-00 00:00:00',0),(6058,0,0,4266,'2526','H','D',229,'',0,'2025-12-03','0000-00-00',0,203,3085,0,'D27','',0,111200.00,0.00,0.00,111200.00,5200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-116000,0,'0000-00-00','','N','N','F','N',-10000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-03 19:38:20','vishal','2025-12-03 20:02:34',0),(6059,0,0,5105,'2526','H','O',5627,'',0,'2025-12-03','0000-00-00',3021,0,3101,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-03 19:41:25','','0000-00-00 00:00:00',0),(6060,0,0,4266,'2526','H','I',204,'',0,'2025-12-03','0000-00-00',0,203,3085,0,'D27','',0,111200.00,0.00,0.00,111200.00,5200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-10000.00,-116000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(6061,0,0,4802,'2526','H','D',230,'',0,'2025-12-03','0000-00-00',3305,229,3394,0,'D02','',0,36600.00,0.00,0.00,36600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-30000,0,'0000-00-00','','N','N','F','N',6600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-03 20:41:18','vishal','2025-12-03 20:47:34',0),(6062,0,0,4802,'2526','H','I',205,'',0,'2025-12-03','0000-00-00',3305,229,3394,0,'D02','',0,36600.00,0.00,0.00,36600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-36600,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-03 20:52:50','','0000-00-00 00:00:00',0),(6063,0,0,4834,'2526','H','D',231,'',0,'2025-12-03','0000-00-00',0,230,3427,0,'D02','',0,17300.00,0.00,0.00,17300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',10300.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-03 21:01:09','vishal','2025-12-03 21:01:47',0),(6064,0,0,4834,'2526','H','I',206,'',0,'2025-12-03','0000-00-00',0,230,3427,0,'D02','',0,17300.00,0.00,0.00,17300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-17300,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-03 21:28:55','','0000-00-00 00:00:00',0),(6066,0,0,5038,'2526','H','I',207,'',0,'2025-12-04','0000-00-00',0,240,3544,0,'D14','',0,28650.00,0.00,0.00,28650.00,50.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-28600,0,'0000-00-00','','N','Y','F','N',0.00,'','Y','DEATH BY MISTAKE NORMAL','HI 208','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(6067,0,0,5038,'2526','H','I',208,'',0,'2025-12-04','0000-00-00',0,240,3544,0,'D14','',0,-28650.00,0.00,0.00,-28650.00,-50.00,0.00,'',0.00,'0000-00-00','','','',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',0.00,'','Y','DEATH BY MISTAKE NORMAL','','HI 207','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-04 07:14:58','','0000-00-00 00:00:00',0),(6068,0,0,5038,'2526','H','D',233,'',0,'2025-12-04','0000-00-00',0,240,3544,0,'D14','',0,28650.00,0.00,0.00,28650.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-28600,0,'0000-00-00','','N','N','F','N',50.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(6069,0,0,5038,'2526','H','I',209,'',0,'2025-12-04','0000-00-00',0,240,3544,0,'D14','',0,28650.00,0.00,0.00,28650.00,50.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-28600,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(6070,0,0,5108,'2526','H','O',5628,'',0,'2025-12-04','0000-00-00',3494,0,3594,0,'D27','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 08:42:34','','0000-00-00 00:00:00',0),(6071,0,0,5109,'2526','H','O',5629,'',0,'2025-12-04','0000-00-00',3495,0,3595,0,'D27','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 08:46:13','','0000-00-00 00:00:00',0),(6072,0,0,5110,'2526','H','O',5630,'',0,'2025-12-04','0000-00-00',3496,0,3596,0,'D27','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bank','','88375','','scan',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 08:49:02','','0000-00-00 00:00:00',0),(6073,0,0,5111,'2526','H','O',5631,'',0,'2025-12-04','0000-00-00',2407,0,2463,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 09:35:52','','0000-00-00 00:00:00',0),(6074,0,0,5112,'2526','H','O',5632,'',0,'2025-12-04','0000-00-00',3497,0,3597,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-04 10:03:18','','0000-00-00 00:00:00',0),(6075,0,0,5114,'2526','H','O',5633,'',0,'2025-12-04','0000-00-00',2486,0,2544,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 10:19:38','','0000-00-00 00:00:00',0),(6076,0,0,5115,'2526','H','O',5634,'',0,'2025-12-04','0000-00-00',3498,0,3599,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-04 10:22:53','','0000-00-00 00:00:00',0),(6077,0,0,5116,'2526','H','O',5635,'',0,'2025-12-04','0000-00-00',2908,0,2986,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-04 10:29:27','','0000-00-00 00:00:00',0),(6078,0,0,5118,'2526','H','O',5636,'',0,'2025-12-04','0000-00-00',3499,0,3600,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-04 10:46:49','','0000-00-00 00:00:00',0),(6079,0,0,5117,'2526','H','O',5637,'',0,'2025-12-04','0000-00-00',3319,0,3411,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-04 10:48:21','','0000-00-00 00:00:00',0),(6080,0,0,5121,'2526','H','O',5638,'',0,'2025-12-04','0000-00-00',3500,0,3602,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 10:56:32','','0000-00-00 00:00:00',0),(6081,0,0,5122,'2526','H','O',5639,'',0,'2025-12-04','0000-00-00',3501,0,3603,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 11:00:12','','0000-00-00 00:00:00',0),(6082,0,0,5123,'2526','H','O',5640,'',0,'2025-12-04','0000-00-00',3502,0,3604,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','uco bank','','01803','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 11:02:43','','0000-00-00 00:00:00',0),(6083,0,0,5124,'2526','H','O',5641,'',0,'2025-12-04','0000-00-00',2712,0,2783,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 11:04:59','','0000-00-00 00:00:00',0),(6084,0,0,5125,'2526','H','O',5642,'',0,'2025-12-04','0000-00-00',3503,0,3605,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 11:12:50','','0000-00-00 00:00:00',0),(6085,0,0,5126,'2526','H','O',5643,'',0,'2025-12-04','0000-00-00',1857,0,1903,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 11:13:07','','0000-00-00 00:00:00',0),(6086,0,0,5128,'2526','H','O',5644,'',0,'2025-12-04','0000-00-00',3504,0,3606,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5660','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-04 11:16:47','urvashi','2025-12-04 12:00:05',0),(6087,0,0,5127,'2526','H','O',5645,'',0,'2025-12-04','0000-00-00',2300,0,2357,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','17820','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 11:17:22','','0000-00-00 00:00:00',0),(6088,0,0,5112,'2526','H','O',5646,'',0,'2025-12-04','0000-00-00',3497,0,3597,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-04 11:19:15','','0000-00-00 00:00:00',0),(6089,0,0,5129,'2526','H','O',5647,'',0,'2025-12-04','0000-00-00',3505,0,3607,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','canara bank','','03295','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 11:20:24','','0000-00-00 00:00:00',0),(6090,0,0,5130,'2526','H','O',5648,'',0,'2025-12-04','0000-00-00',3506,0,3608,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','10751','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 11:22:42','','0000-00-00 00:00:00',0),(6091,0,0,5131,'2526','H','O',5649,'',0,'2025-12-04','0000-00-00',3386,0,3482,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-04 11:25:40','','0000-00-00 00:00:00',0),(6092,0,0,4857,'2526','H','D',234,'',0,'2025-12-04','0000-00-00',0,232,3440,0,'D27','',0,12900.00,0.00,0.00,12900.00,1900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6000,0,'0000-00-00','','N','N','F','N',5000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-04 11:28:37','riya','2025-12-04 12:32:31',0),(6093,0,0,5133,'2526','H','O',5650,'',0,'2025-12-04','0000-00-00',3508,0,3610,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 11:31:29','','0000-00-00 00:00:00',0),(6094,0,0,5134,'2526','H','O',5651,'',0,'2025-12-04','0000-00-00',3509,0,3611,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 11:33:58','','0000-00-00 00:00:00',0),(6095,0,0,5136,'2526','H','O',5652,'',0,'2025-12-04','0000-00-00',3305,0,3394,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 11:40:24','','0000-00-00 00:00:00',0),(6096,0,0,5137,'2526','H','O',5653,'',0,'2025-12-04','0000-00-00',3511,0,3612,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 11:42:16','','0000-00-00 00:00:00',0),(6097,0,0,5138,'2526','H','O',5654,'',0,'2025-12-04','0000-00-00',3512,0,3613,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 11:46:48','','0000-00-00 00:00:00',0),(6098,0,0,5139,'2526','H','O',5655,'',0,'2025-12-04','0000-00-00',1924,0,1972,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 11:47:57','','0000-00-00 00:00:00',0),(6099,0,0,5141,'2526','H','O',5656,'',0,'2025-12-04','0000-00-00',3514,0,3615,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 11:49:17','','0000-00-00 00:00:00',0),(6100,0,0,5140,'2526','H','O',5657,'',0,'2025-12-04','0000-00-00',3513,0,3614,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 11:49:24','','0000-00-00 00:00:00',0),(6101,0,0,5036,'2526','H','D',235,'',0,'2025-12-04','0000-00-00',0,239,3543,0,'D27','',0,7300.00,0.00,0.00,7300.00,1100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6000,0,'0000-00-00','','N','N','F','N',200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-04 11:49:55','riya','2025-12-04 12:30:56',0),(6102,0,0,5132,'2526','H','O',5658,'',0,'2025-12-04','0000-00-00',3507,0,3609,0,'D14','',0,800.00,0.00,0.00,800.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-04 11:51:00','','0000-00-00 00:00:00',0),(6103,0,0,5142,'2526','H','O',5659,'',0,'2025-12-04','0000-00-00',3515,0,3616,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 5669','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 11:52:39','urvashi','2025-12-04 12:24:35',0),(6104,0,0,5128,'2526','H','O',5660,'',0,'2025-12-04','0000-00-00',3504,0,3606,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-12-04','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 5644','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 12:00:05','urvashi','2025-12-04 12:00:29',0),(6105,0,0,5128,'2526','H','O',5661,'',0,'2025-12-04','0000-00-00',3504,0,3606,0,'D27','',0,750.00,0.00,0.00,750.00,250.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 12:01:04','','0000-00-00 00:00:00',0),(6106,0,0,5143,'2526','H','O',5662,'',0,'2025-12-04','0000-00-00',513,0,538,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100 DISCOUNT','HO 5689','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 12:02:19','reception','2025-12-04 13:56:42',0),(6107,0,0,5144,'2526','H','O',5663,'',0,'2025-12-04','0000-00-00',3516,0,3617,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC BANK','','29443','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 12:07:44','','0000-00-00 00:00:00',0),(6108,0,0,5145,'2526','H','O',5664,'',0,'2025-12-04','0000-00-00',3517,0,3618,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 12:16:13','','0000-00-00 00:00:00',0),(6109,0,0,5146,'2526','H','O',5665,'',0,'2025-12-04','0000-00-00',3518,0,3619,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 12:16:55','','0000-00-00 00:00:00',0),(6110,0,0,5147,'2526','H','O',5666,'',0,'2025-12-04','0000-00-00',3519,0,3620,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 12:20:33','','0000-00-00 00:00:00',0),(6111,0,0,5149,'2526','H','O',5667,'',0,'2025-12-04','0000-00-00',2592,0,2653,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 12:22:23','','0000-00-00 00:00:00',0),(6112,0,0,5144,'2526','H','O',5668,'',0,'2025-12-04','0000-00-00',3516,0,3617,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','55067','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-04 12:23:54','','0000-00-00 00:00:00',0),(6113,0,0,5142,'2526','H','O',5669,'',0,'2025-12-04','0000-00-00',3515,0,3616,0,'D27','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-12-04','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 5659','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 12:24:35','urvashi','2025-12-04 12:24:51',0),(6114,0,0,5142,'2526','H','O',5670,'',0,'2025-12-04','0000-00-00',3515,0,3616,0,'D27','',0,700.00,0.00,0.00,700.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 12:25:31','','0000-00-00 00:00:00',0),(6115,0,0,5150,'2526','H','O',5671,'',0,'2025-12-04','0000-00-00',3520,0,3622,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 12:26:41','','0000-00-00 00:00:00',0),(6116,0,0,5151,'2526','H','O',5672,'',0,'2025-12-04','0000-00-00',3521,0,3623,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 12:28:22','','0000-00-00 00:00:00',0),(6117,0,0,5119,'2526','H','O',5673,'',0,'2025-12-04','0000-00-00',2256,0,2313,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 12:29:10','','0000-00-00 00:00:00',0),(6118,0,0,5152,'2526','H','O',5674,'',0,'2025-12-04','0000-00-00',3522,0,3624,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 12:30:21','','0000-00-00 00:00:00',0),(6119,0,0,5153,'2526','H','O',5675,'',0,'2025-12-04','0000-00-00',1526,0,1567,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','CENTRAL BANK','','46797','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 12:36:24','','0000-00-00 00:00:00',0),(6120,0,0,4857,'2526','H','I',210,'',0,'2025-12-04','0000-00-00',0,232,3440,0,'D27','',0,12900.00,0.00,0.00,12900.00,1900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-11000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-04 12:36:43','','0000-00-00 00:00:00',0),(6121,0,0,5036,'2526','H','I',211,'',0,'2025-12-04','0000-00-00',0,239,3543,0,'D27','',0,7300.00,0.00,0.00,7300.00,1100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6200,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-04 12:39:00','','0000-00-00 00:00:00',0),(6122,0,0,5154,'2526','H','O',5676,'',0,'2025-12-04','0000-00-00',3486,0,3586,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-04 12:40:35','','0000-00-00 00:00:00',0),(6123,0,0,5155,'2526','H','O',5677,'',0,'2025-12-04','0000-00-00',3523,0,3625,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5681','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 12:45:00','urvashi','2025-12-04 12:51:22',0),(6124,0,0,5156,'2526','H','O',5678,'',0,'2025-12-04','0000-00-00',3524,0,3626,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-04 12:47:23','','0000-00-00 00:00:00',0),(6125,0,0,5157,'2526','H','O',5679,'',0,'2025-12-04','0000-00-00',3525,0,3627,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK BANK','','11431','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 12:48:16','','0000-00-00 00:00:00',0),(6126,0,0,5158,'2526','H','O',5680,'',0,'2025-12-04','0000-00-00',1862,0,1907,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','75222','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 12:49:36','','0000-00-00 00:00:00',0),(6127,0,0,5155,'2526','H','O',5681,'',0,'2025-12-04','0000-00-00',3523,0,3625,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-12-04','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 5677','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 12:51:22','urvashi','2025-12-04 12:51:36',0),(6128,0,0,5141,'2526','H','O',5682,'',0,'2025-12-04','0000-00-00',3514,0,3615,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','13580','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 12:52:07','','0000-00-00 00:00:00',0),(6129,0,0,5155,'2526','H','O',5683,'',0,'2025-12-04','0000-00-00',3523,0,3625,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 12:52:10','','0000-00-00 00:00:00',0),(6130,0,0,5159,'2526','H','O',5684,'',0,'2025-12-04','0000-00-00',3526,0,3628,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 13:02:35','','0000-00-00 00:00:00',0),(6131,0,0,5160,'2526','H','O',5685,'',0,'2025-12-04','0000-00-00',3527,0,3629,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','38235','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 13:06:32','','0000-00-00 00:00:00',0),(6132,0,0,5161,'2526','H','O',5686,'',0,'2025-12-04','0000-00-00',1631,0,1676,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 13:06:59','','0000-00-00 00:00:00',0),(6133,0,0,5157,'2526','H','O',5687,'',0,'2025-12-04','0000-00-00',3525,0,3627,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','42677','','scan  ',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-04 13:50:14','','0000-00-00 00:00:00',0),(6134,0,0,5162,'2526','H','O',5688,'',0,'2025-12-04','0000-00-00',2662,0,2384,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-04 13:52:12','','0000-00-00 00:00:00',0),(6135,0,0,5143,'2526','H','O',5689,'',0,'2025-12-04','0000-00-00',513,0,538,0,'D06','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-12-04','Y','N','N','','N',0.00,'','Y','100 DISCOUNT','','HO 5662','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 13:56:42','reception','2025-12-04 13:57:14',0),(6136,0,0,5143,'2526','H','O',5690,'',0,'2025-12-04','0000-00-00',513,0,538,0,'D06','',0,400.00,0.00,0.00,400.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 13:58:11','','0000-00-00 00:00:00',0),(6137,0,0,5165,'2526','H','O',5691,'',0,'2025-12-04','0000-00-00',3528,0,3632,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 16:09:06','','0000-00-00 00:00:00',0),(6138,0,0,5166,'2526','H','O',5692,'',0,'2025-12-04','0000-00-00',2678,0,2747,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-04 16:35:31','','0000-00-00 00:00:00',0),(6139,0,0,5167,'2526','H','O',5693,'',0,'2025-12-04','0000-00-00',2830,0,2902,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-04 16:37:43','','0000-00-00 00:00:00',0),(6140,0,0,4920,'2526','H','D',236,'',0,'2025-12-04','0000-00-00',0,235,3480,0,'D27','',0,32500.00,0.00,0.00,32500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6000,0,'0000-00-00','','N','N','F','N',26500.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-04 16:42:39','vishal','2025-12-04 17:39:18',0),(6141,0,0,5168,'2526','H','O',5694,'',0,'2025-12-04','0000-00-00',3529,0,3633,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 16:48:57','','0000-00-00 00:00:00',0),(6142,0,0,5171,'2526','H','O',5695,'',0,'2025-12-04','0000-00-00',3532,0,3634,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 16:54:40','','0000-00-00 00:00:00',0),(6143,0,0,5172,'2526','H','O',5696,'',0,'2025-12-04','0000-00-00',3491,0,3591,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 17:04:56','','0000-00-00 00:00:00',0),(6144,0,0,5173,'2526','H','O',5697,'',0,'2025-12-04','0000-00-00',3533,0,3635,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 17:11:32','','0000-00-00 00:00:00',0),(6145,0,0,5176,'2526','H','O',5698,'',0,'2025-12-04','0000-00-00',803,0,834,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 17:24:31','','0000-00-00 00:00:00',0),(6146,0,0,5177,'2526','H','O',5699,'',0,'2025-12-04','0000-00-00',3535,0,3637,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 17:32:06','','0000-00-00 00:00:00',0),(6147,0,0,5178,'2526','H','O',5700,'',0,'2025-12-04','0000-00-00',3127,0,3213,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 17:34:18','','0000-00-00 00:00:00',0),(6148,0,0,5179,'2526','H','O',5701,'',0,'2025-12-04','0000-00-00',3536,0,3638,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 17:38:31','','0000-00-00 00:00:00',0),(6149,0,0,5168,'2526','H','O',5702,'',0,'2025-12-04','0000-00-00',3529,0,3633,0,'D06','',0,4400.00,0.00,0.00,4400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 17:39:14','','0000-00-00 00:00:00',0),(6150,0,0,5180,'2526','H','O',5703,'',0,'2025-12-04','0000-00-00',1885,0,1932,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 17:40:04','','0000-00-00 00:00:00',0),(6151,0,0,5181,'2526','H','O',5704,'',0,'2025-12-04','0000-00-00',3537,0,3639,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-04 17:40:28','','0000-00-00 00:00:00',0),(6152,0,0,5182,'2526','H','O',5705,'',0,'2025-12-04','0000-00-00',721,0,752,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 17:43:35','','0000-00-00 00:00:00',0),(6153,0,0,5181,'2526','H','O',5706,'',0,'2025-12-04','0000-00-00',3537,0,3639,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-500.00,0,0,'0000-00-00','Y','Y','N','F','N',0.00,'','N','','','HO5704','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-04 17:43:36','','0000-00-00 00:00:00',0),(6154,0,0,5181,'2526','H','O',5707,'',0,'2025-12-04','0000-00-00',3537,0,3639,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-04 17:43:45','','0000-00-00 00:00:00',0),(6155,0,0,4920,'2526','H','I',212,'',0,'2025-12-04','0000-00-00',0,235,3480,0,'D27','',0,32500.00,0.00,0.00,32500.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-31500,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(6156,0,0,5183,'2526','H','O',5708,'',0,'2025-12-04','0000-00-00',3538,0,3640,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-04 17:49:58','','0000-00-00 00:00:00',0),(6157,0,0,5171,'2526','H','O',5709,'',0,'2025-12-04','0000-00-00',3532,0,3634,0,'D06','',0,2500.00,0.00,0.00,2500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 17:53:45','','0000-00-00 00:00:00',0),(6158,0,0,5136,'2526','H','O',5710,'',0,'2025-12-04','0000-00-00',3305,0,3394,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-04 17:55:34','','0000-00-00 00:00:00',0),(6159,0,0,5185,'2526','H','O',5711,'',0,'2025-12-04','0000-00-00',3539,0,3641,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 17:56:39','','0000-00-00 00:00:00',0),(6160,0,0,5186,'2526','H','O',5712,'',0,'2025-12-04','0000-00-00',3540,0,3642,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 18:00:26','','0000-00-00 00:00:00',0),(6161,0,0,5187,'2526','H','O',5713,'',0,'2025-12-04','0000-00-00',774,0,805,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','43656','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 18:01:46','','0000-00-00 00:00:00',0),(6162,0,0,5188,'2526','H','O',5714,'',0,'2025-12-04','0000-00-00',3541,0,3643,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 18:06:05','','0000-00-00 00:00:00',0),(6163,0,0,5189,'2526','H','O',5715,'',0,'2025-12-04','0000-00-00',3542,0,2780,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 18:08:57','','0000-00-00 00:00:00',0),(6164,0,0,5191,'2526','H','O',5716,'',0,'2025-12-04','0000-00-00',3181,0,3267,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 18:10:21','','0000-00-00 00:00:00',0),(6165,0,0,5192,'2526','H','O',5717,'',0,'2025-12-04','0000-00-00',3018,0,3098,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI BANK','','97285','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 18:12:03','','0000-00-00 00:00:00',0),(6166,0,0,5184,'2526','H','O',5718,'',0,'2025-12-04','0000-00-00',2738,0,2808,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-04 18:12:26','','0000-00-00 00:00:00',0),(6167,0,0,5193,'2526','H','O',5719,'',0,'2025-12-04','0000-00-00',2710,0,2781,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-04 18:15:42','','0000-00-00 00:00:00',0),(6168,0,0,5195,'2526','H','O',5720,'',0,'2025-12-04','0000-00-00',3544,0,3645,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 18:16:51','','0000-00-00 00:00:00',0),(6169,0,0,5194,'2526','H','O',5721,'',0,'2025-12-04','0000-00-00',3543,0,3644,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-04 18:16:55','','0000-00-00 00:00:00',0),(6170,0,0,5196,'2526','H','O',5722,'',0,'2025-12-04','0000-00-00',833,0,864,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 18:23:58','','0000-00-00 00:00:00',0),(6171,0,0,5197,'2526','H','O',5723,'',0,'2025-12-04','0000-00-00',3545,0,3646,0,'D14','',0,800.00,0.00,0.00,800.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-04 18:24:17','','0000-00-00 00:00:00',0),(6172,0,0,5189,'2526','H','O',5724,'',0,'2025-12-04','0000-00-00',3542,0,2780,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 18:25:32','','0000-00-00 00:00:00',0),(6173,0,0,5198,'2526','H','O',5725,'',0,'2025-12-04','0000-00-00',766,0,797,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','75559','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 18:26:25','','0000-00-00 00:00:00',0),(6174,0,0,5186,'2526','H','O',5726,'',0,'2025-12-04','0000-00-00',3540,0,3642,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 18:29:05','','0000-00-00 00:00:00',0),(6175,0,0,5199,'2526','H','O',5727,'',0,'2025-12-04','0000-00-00',2510,0,2567,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-04 18:31:13','','0000-00-00 00:00:00',0),(6176,0,0,5192,'2526','H','O',5728,'',0,'2025-12-04','0000-00-00',3018,0,3098,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 18:34:44','','0000-00-00 00:00:00',0),(6177,0,0,5200,'2526','H','O',5729,'',0,'2025-12-04','0000-00-00',2333,0,2389,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 18:34:45','','0000-00-00 00:00:00',0),(6178,0,0,5201,'2526','H','O',5730,'',0,'2025-12-04','0000-00-00',3546,0,3647,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 18:36:31','','0000-00-00 00:00:00',0),(6179,0,0,5203,'2526','H','O',5731,'',0,'2025-12-04','0000-00-00',2877,0,2952,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','AXIS','','54424','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 18:42:38','','0000-00-00 00:00:00',0),(6180,0,0,5205,'2526','H','O',5732,'',0,'2025-12-04','0000-00-00',3548,0,3649,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 18:45:58','','0000-00-00 00:00:00',0),(6181,0,0,5204,'2526','H','O',5733,'',0,'2025-12-04','0000-00-00',3547,0,3648,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','41886','','scan ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-04 18:46:36','','0000-00-00 00:00:00',0),(6182,0,0,5206,'2526','H','O',5734,'',0,'2025-12-04','0000-00-00',3310,0,3399,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-04 18:47:22','','0000-00-00 00:00:00',0),(6183,0,0,5207,'2526','H','O',5735,'',0,'2025-12-04','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 18:48:29','','0000-00-00 00:00:00',0),(6184,0,0,5210,'2526','H','O',5736,'',0,'2025-12-04','0000-00-00',3550,0,3651,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 18:58:11','','0000-00-00 00:00:00',0),(6185,0,0,5209,'2526','H','O',5737,'',0,'2025-12-04','0000-00-00',3549,0,3650,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 18:58:24','','0000-00-00 00:00:00',0),(6186,0,0,5192,'2526','H','O',5738,'',0,'2025-12-04','0000-00-00',3018,0,3098,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI BANK','','92331','','scan',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 18:58:44','','0000-00-00 00:00:00',0),(6187,0,0,5211,'2526','H','O',5739,'',0,'2025-12-04','0000-00-00',3551,0,3652,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 19:04:02','','0000-00-00 00:00:00',0),(6188,0,0,5201,'2526','H','O',5740,'',0,'2025-12-04','0000-00-00',3546,0,3647,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 19:07:52','','0000-00-00 00:00:00',0),(6189,0,0,5212,'2526','H','O',5741,'',0,'2025-12-04','0000-00-00',1721,0,1765,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','57202','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-04 19:17:59','','0000-00-00 00:00:00',0),(6190,0,0,5213,'2526','H','O',5742,'',0,'2025-12-04','0000-00-00',3552,0,3346,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-04 19:21:19','','0000-00-00 00:00:00',0),(6191,0,0,5214,'2526','H','O',5743,'',0,'2025-12-04','0000-00-00',554,0,580,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-04 19:24:31','','0000-00-00 00:00:00',0),(6192,0,0,4693,'2526','H','D',237,'',0,'2025-12-04','0000-00-00',0,221,3349,0,'D02','',0,81250.00,0.00,0.00,81250.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-65000,0,'0000-00-00','','N','N','F','N',16250.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-04 20:15:56','riya','2025-12-04 20:17:24',0),(6193,0,0,4693,'2526','H','I',213,'',0,'2025-12-04','0000-00-00',0,221,3349,0,'D02','',0,81250.00,0.00,0.00,81250.00,2250.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-79000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(6194,0,0,5164,'2526','H','D',238,'',0,'2025-12-04','0000-00-00',0,246,3631,0,'D02','',0,20000.00,0.00,0.00,20000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',5000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-04 21:40:31','riya','2025-12-04 21:43:20',0),(6195,0,0,5164,'2526','H','I',214,'',0,'2025-12-04','0000-00-00',0,246,3631,0,'D02','',0,20000.00,0.00,0.00,20000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-04 21:49:34','','0000-00-00 00:00:00',0),(6196,0,0,5216,'2526','H','O',5744,'',0,'2025-12-05','0000-00-00',3553,0,3653,0,'D27','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 08:40:40','','0000-00-00 00:00:00',0),(6197,0,0,5217,'2526','H','O',5745,'',0,'2025-12-05','0000-00-00',3305,0,3394,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 08:42:22','','0000-00-00 00:00:00',0),(6198,0,0,5218,'2526','H','O',5746,'',0,'2025-12-05','0000-00-00',3554,0,3654,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','1','BANK','','00986','','SCAN',1100.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5747','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 08:48:53','reception','2025-12-05 09:04:34',0),(6199,0,0,5218,'2526','H','O',5747,'',0,'2025-12-05','0000-00-00',3554,0,3654,0,'D27','',0,-1100.00,0.00,0.00,-1100.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','1','BANK','','00986','','SCAN',-1100.00,0,0,'2025-12-05','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 5746','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 09:04:34','reception','2025-12-05 09:05:13',0),(6200,0,0,5218,'2526','H','O',5748,'',0,'2025-12-05','0000-00-00',3554,0,3654,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BANK','','00986','','SCAN',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 09:06:27','','0000-00-00 00:00:00',0),(6201,0,0,5217,'2526','H','O',5749,'',0,'2025-12-05','0000-00-00',3305,0,3394,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 09:20:18','','0000-00-00 00:00:00',0),(6202,0,0,5219,'2526','H','O',5750,'',0,'2025-12-05','0000-00-00',2980,0,3058,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 09:39:31','','0000-00-00 00:00:00',0),(6203,0,0,5220,'2526','H','O',5751,'',0,'2025-12-05','0000-00-00',1580,0,1624,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 09:43:32','','0000-00-00 00:00:00',0),(6204,0,0,5221,'2526','H','O',5752,'',0,'2025-12-05','0000-00-00',3555,0,3655,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 09:50:48','','0000-00-00 00:00:00',0),(6205,0,0,5222,'2526','H','O',5753,'',0,'2025-12-05','0000-00-00',3556,0,3656,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 09:58:23','','0000-00-00 00:00:00',0),(6206,0,0,5224,'2526','H','O',5754,'',0,'2025-12-05','0000-00-00',3208,0,3295,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 10:08:07','','0000-00-00 00:00:00',0),(6207,0,0,5226,'2526','H','O',5755,'',0,'2025-12-05','0000-00-00',3558,0,3658,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 10:16:47','','0000-00-00 00:00:00',0),(6208,0,0,5227,'2526','H','O',5756,'',0,'2025-12-05','0000-00-00',3559,0,3659,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 10:18:58','','0000-00-00 00:00:00',0),(6209,0,0,5228,'2526','H','O',5757,'',0,'2025-12-05','0000-00-00',2062,0,2116,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 10:20:36','','0000-00-00 00:00:00',0),(6210,0,0,5229,'2526','H','O',5758,'',0,'2025-12-05','0000-00-00',3560,0,3660,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','75947','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 10:45:57','','0000-00-00 00:00:00',0),(6211,0,0,5230,'2526','H','O',5759,'',0,'2025-12-05','0000-00-00',2295,0,2352,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 10:49:08','','0000-00-00 00:00:00',0),(6212,0,0,5231,'2526','H','O',5760,'',0,'2025-12-05','0000-00-00',3561,0,3661,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 10:52:10','','0000-00-00 00:00:00',0),(6213,0,0,5232,'2526','H','O',5761,'',0,'2025-12-05','0000-00-00',3562,0,3662,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 10:54:54','','0000-00-00 00:00:00',0),(6214,0,0,5233,'2526','H','O',5762,'',0,'2025-12-05','0000-00-00',3563,0,3663,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 11:02:18','','0000-00-00 00:00:00',0),(6215,0,0,5235,'2526','H','O',5763,'',0,'2025-12-05','0000-00-00',3565,0,3665,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 11:05:17','','0000-00-00 00:00:00',0),(6216,0,0,5234,'2526','H','O',5764,'',0,'2025-12-05','0000-00-00',3564,0,3664,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 11:05:27','','0000-00-00 00:00:00',0),(6217,0,0,5236,'2526','H','O',5765,'',0,'2025-12-05','0000-00-00',3566,0,3666,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 11:07:39','','0000-00-00 00:00:00',0),(6218,0,0,5237,'2526','H','O',5766,'',0,'2025-12-05','0000-00-00',3567,0,3667,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 11:08:35','','0000-00-00 00:00:00',0),(6219,0,0,5238,'2526','H','O',5767,'',0,'2025-12-05','0000-00-00',3568,0,3668,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 11:09:29','','0000-00-00 00:00:00',0),(6220,0,0,5239,'2526','H','O',5768,'',0,'2025-12-05','0000-00-00',3569,0,3669,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 11:09:47','','0000-00-00 00:00:00',0),(6221,0,0,5225,'2526','H','O',5769,'',0,'2025-12-05','0000-00-00',3557,0,3657,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 11:10:22','','0000-00-00 00:00:00',0),(6222,0,0,5240,'2526','H','O',5770,'',0,'2025-12-05','0000-00-00',1575,0,1619,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 11:11:07','','0000-00-00 00:00:00',0),(6223,0,0,5241,'2526','H','O',5771,'',0,'2025-12-05','0000-00-00',3570,0,3670,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','250 DISCOUNT','HO 5787','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 11:11:59','urvashi','2025-12-05 11:54:58',0),(6224,0,0,4778,'2526','H','D',239,'',0,'2025-12-05','0000-00-00',0,226,3401,0,'D02','',0,105000.00,0.00,0.00,105000.00,5000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-80000,0,'0000-00-00','','N','N','F','N',20000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-05 11:15:37','vishal','2025-12-05 11:52:19',0),(6225,0,0,5221,'2526','H','O',5772,'',0,'2025-12-05','0000-00-00',3555,0,3655,0,'D06','',0,4500.00,0.00,0.00,4500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','02175','','SCAN',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 11:18:21','','0000-00-00 00:00:00',0),(6226,0,0,5243,'2526','H','O',5773,'',0,'2025-12-05','0000-00-00',3571,0,3522,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-05 11:20:38','','0000-00-00 00:00:00',0),(6227,0,0,4968,'2526','H','D',240,'',0,'2025-12-05','0000-00-00',3406,236,3501,0,'D27','',0,15700.00,0.00,0.00,15700.00,3900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6000,0,'0000-00-00','','N','N','F','N',5800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-05 11:25:19','vishal','2025-12-05 11:48:28',0),(6228,0,0,5244,'2526','H','O',5774,'',0,'2025-12-05','0000-00-00',3572,0,3671,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 11:27:17','','0000-00-00 00:00:00',0),(6229,0,0,5242,'2526','H','O',5775,'',0,'2025-12-05','0000-00-00',3319,0,3411,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 11:28:09','','0000-00-00 00:00:00',0),(6230,0,0,5225,'2526','H','O',5776,'',0,'2025-12-05','0000-00-00',3557,0,3657,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 11:32:49','','0000-00-00 00:00:00',0),(6231,0,0,5226,'2526','H','O',5777,'',0,'2025-12-05','0000-00-00',3558,0,3658,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','94224','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 11:35:06','','0000-00-00 00:00:00',0),(6232,0,0,5229,'2526','H','O',5778,'',0,'2025-12-05','0000-00-00',3560,0,3660,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','01912','','SCAN',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 11:39:48','','0000-00-00 00:00:00',0),(6233,0,0,5245,'2526','H','O',5779,'',0,'2025-12-05','0000-00-00',3573,0,3672,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 11:42:03','','0000-00-00 00:00:00',0),(6234,0,0,5246,'2526','H','O',5780,'',0,'2025-12-05','0000-00-00',3574,0,3673,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-05 11:44:46','','0000-00-00 00:00:00',0),(6235,0,0,5247,'2526','H','O',5781,'',0,'2025-12-05','0000-00-00',3575,0,3674,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-05 11:44:56','','0000-00-00 00:00:00',0),(6236,0,0,5248,'2526','H','O',5782,'',0,'2025-12-05','0000-00-00',3576,0,3675,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 11:45:14','','0000-00-00 00:00:00',0),(6237,0,0,5249,'2526','H','O',5783,'',0,'2025-12-05','0000-00-00',164,0,177,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','38742','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 11:47:05','','0000-00-00 00:00:00',0),(6238,0,0,4968,'2526','H','I',215,'',0,'2025-12-05','0000-00-00',3406,236,3501,0,'D27','',0,15700.00,0.00,0.00,15700.00,3900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-11800,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(6239,0,0,5250,'2526','H','O',5784,'',0,'2025-12-05','0000-00-00',1510,0,1551,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 11:50:15','','0000-00-00 00:00:00',0),(6240,0,0,4778,'2526','H','I',216,'',0,'2025-12-05','0000-00-00',0,226,3401,0,'D02','',0,105000.00,0.00,0.00,105000.00,5000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-100000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(6241,0,0,5251,'2526','H','O',5785,'',0,'2025-12-05','0000-00-00',2987,0,3065,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 11:53:03','','0000-00-00 00:00:00',0),(6242,0,0,5252,'2526','H','O',5786,'',0,'2025-12-05','0000-00-00',3577,0,3676,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','axis bank','','31120','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 11:54:12','','0000-00-00 00:00:00',0),(6243,0,0,5241,'2526','H','O',5787,'',0,'2025-12-05','0000-00-00',3570,0,3670,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-12-05','Y','N','N','','N',0.00,'','Y','250 DISCOUNT','','HO 5771','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 11:54:58','urvashi','2025-12-05 11:55:24',0),(6244,0,0,5232,'2526','H','O',5788,'',0,'2025-12-05','0000-00-00',3562,0,3662,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 11:55:18','','0000-00-00 00:00:00',0),(6245,0,0,5241,'2526','H','O',5789,'',0,'2025-12-05','0000-00-00',3570,0,3670,0,'D27','',0,750.00,0.00,0.00,750.00,250.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 11:55:56','','0000-00-00 00:00:00',0),(6246,0,0,5245,'2526','H','O',5790,'',0,'2025-12-05','0000-00-00',3573,0,3672,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 12:00:43','','0000-00-00 00:00:00',0),(6247,0,0,5253,'2526','H','O',5791,'',0,'2025-12-05','0000-00-00',3578,0,3677,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','02129','','SCAN',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 12:07:21','','0000-00-00 00:00:00',0),(6248,0,0,5235,'2526','H','O',5792,'',0,'2025-12-05','0000-00-00',3565,0,3665,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 12:15:22','','0000-00-00 00:00:00',0),(6249,0,0,5255,'2526','H','O',5793,'',0,'2025-12-05','0000-00-00',3579,0,3678,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 12:18:41','','0000-00-00 00:00:00',0),(6250,0,0,5256,'2526','H','O',5794,'',0,'2025-12-05','0000-00-00',3580,0,3679,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 12:23:39','','0000-00-00 00:00:00',0),(6251,0,0,5239,'2526','H','O',5795,'',0,'2025-12-05','0000-00-00',3569,0,3669,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 12:26:34','','0000-00-00 00:00:00',0),(6252,0,0,5257,'2526','H','O',5796,'',0,'2025-12-05','0000-00-00',3581,0,3680,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 12:26:50','','0000-00-00 00:00:00',0),(6253,0,0,5255,'2526','H','O',5797,'',0,'2025-12-05','0000-00-00',3579,0,3678,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 12:34:13','','0000-00-00 00:00:00',0),(6254,0,0,5258,'2526','H','O',5798,'',0,'2025-12-05','0000-00-00',3582,0,3681,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 12:37:53','','0000-00-00 00:00:00',0),(6255,0,0,4781,'2526','H','D',241,'',0,'2025-12-05','0000-00-00',0,228,3404,0,'D27','',0,49150.00,0.00,0.00,49150.00,2000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-35000,0,'0000-00-00','','N','N','F','N',12150.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-05 12:41:58','vishal','2025-12-05 14:27:56',0),(6256,0,0,5259,'2526','H','O',5799,'',0,'2025-12-05','0000-00-00',3583,0,3682,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 5807','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 12:43:30','reception','2025-12-05 13:13:00',0),(6257,0,0,5260,'2526','H','O',5800,'',0,'2025-12-05','0000-00-00',3584,0,3683,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 12:47:11','','0000-00-00 00:00:00',0),(6258,0,0,5263,'2526','H','O',5801,'',0,'2025-12-05','0000-00-00',3586,0,3685,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','47584','','SCAN',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 12:52:13','','0000-00-00 00:00:00',0),(6259,0,0,5262,'2526','H','O',5802,'',0,'2025-12-05','0000-00-00',3230,0,3316,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','67909','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-05 12:52:20','','0000-00-00 00:00:00',0),(6260,0,0,5261,'2526','H','O',5803,'',0,'2025-12-05','0000-00-00',3585,0,3684,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC BANK','','45584','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 12:56:46','','0000-00-00 00:00:00',0),(6261,0,0,4863,'2526','H','D',242,'',0,'2025-12-05','0000-00-00',0,233,3444,0,'D27','',0,33500.00,0.00,0.00,33500.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10000,0,'0000-00-00','','N','N','F','N',22500.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-05 13:00:17','vishal','2025-12-05 13:41:39',0),(6262,0,0,5256,'2526','H','O',5804,'',0,'2025-12-05','0000-00-00',3580,0,3679,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 13:01:45','','0000-00-00 00:00:00',0),(6263,0,0,5263,'2526','H','O',5805,'',0,'2025-12-05','0000-00-00',3586,0,3685,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','98460','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 13:05:03','','0000-00-00 00:00:00',0),(6264,0,0,5264,'2526','H','O',5806,'',0,'2025-12-05','0000-00-00',3538,0,3640,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','2','sbi','74423','74423','','CARD',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 13:10:41','','0000-00-00 00:00:00',0),(6265,0,0,5259,'2526','H','O',5807,'',0,'2025-12-05','0000-00-00',3583,0,3682,0,'D06','',0,-800.00,0.00,0.00,-800.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-800.00,0,0,'2025-12-05','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 5799','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 13:13:00','reception','2025-12-05 13:13:23',0),(6266,0,0,5259,'2526','H','O',5808,'',0,'2025-12-05','0000-00-00',3583,0,3682,0,'D06','',0,800.00,0.00,0.00,800.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 13:14:09','','0000-00-00 00:00:00',0),(6267,0,0,5260,'2526','H','O',5809,'',0,'2025-12-05','0000-00-00',3584,0,3683,0,'D06','',0,5200.00,0.00,0.00,5200.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 13:30:12','','0000-00-00 00:00:00',0),(6268,0,0,5266,'2526','H','O',5810,'',0,'2025-12-05','0000-00-00',3588,0,3687,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 13:38:27','','0000-00-00 00:00:00',0),(6269,0,0,5266,'2526','H','O',5811,'',0,'2025-12-05','0000-00-00',3588,0,3687,0,'D06','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 14:03:26','','0000-00-00 00:00:00',0),(6270,0,0,4781,'2526','H','I',217,'',0,'2025-12-05','0000-00-00',0,228,3404,0,'D27','',0,49150.00,0.00,0.00,49150.00,2100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-47050,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(6271,0,0,4863,'2526','H','I',218,'',0,'2025-12-05','0000-00-00',0,233,3444,0,'D27','',0,33500.00,0.00,0.00,33500.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-32500,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(6272,0,0,5268,'2526','H','O',5812,'',0,'2025-12-05','0000-00-00',3589,0,3688,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 16:31:25','','0000-00-00 00:00:00',0),(6273,0,0,5269,'2526','H','O',5813,'',0,'2025-12-05','0000-00-00',349,0,365,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','23655','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-05 16:36:35','','0000-00-00 00:00:00',0),(6274,0,0,5273,'2526','H','O',5814,'',0,'2025-12-05','0000-00-00',1129,0,1169,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 16:54:40','','0000-00-00 00:00:00',0),(6275,0,0,5274,'2526','H','O',5815,'',0,'2025-12-05','0000-00-00',3590,0,3447,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5816','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 16:57:51','janvi','2025-12-05 16:58:52',0),(6276,0,0,5274,'2526','H','O',5816,'',0,'2025-12-05','0000-00-00',3590,0,3447,0,'D02','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-05','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 5815','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 16:58:52','janvi','2025-12-05 16:59:31',0),(6277,0,0,5274,'2526','H','O',5817,'',0,'2025-12-05','0000-00-00',3590,0,3447,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 5844','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 17:00:27','janvi','2025-12-05 18:22:10',0),(6278,0,0,5275,'2526','H','O',5818,'',0,'2025-12-05','0000-00-00',3591,0,3689,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 17:03:50','','0000-00-00 00:00:00',0),(6279,0,0,5276,'2526','H','O',5819,'',0,'2025-12-05','0000-00-00',3121,0,3207,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','CRD','ICICI','75431','75431','','CARD',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 17:10:20','','0000-00-00 00:00:00',0),(6280,0,0,5278,'2526','H','O',5820,'',0,'2025-12-05','0000-00-00',3187,0,3273,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 17:13:52','','0000-00-00 00:00:00',0),(6281,0,0,5279,'2526','H','O',5821,'',0,'2025-12-05','0000-00-00',3275,0,3364,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 17:17:20','','0000-00-00 00:00:00',0),(6282,0,0,5281,'2526','H','O',5822,'',0,'2025-12-05','0000-00-00',3423,0,3520,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 17:18:30','','0000-00-00 00:00:00',0),(6283,0,0,5283,'2526','H','O',5823,'',0,'2025-12-05','0000-00-00',1555,0,1598,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 17:19:39','','0000-00-00 00:00:00',0),(6284,0,0,5268,'2526','H','O',5824,'',0,'2025-12-05','0000-00-00',3589,0,3688,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','68246','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 17:22:24','','0000-00-00 00:00:00',0),(6285,0,0,5284,'2526','H','O',5825,'',0,'2025-12-05','0000-00-00',3592,0,3690,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 17:29:13','','0000-00-00 00:00:00',0),(6286,0,0,5285,'2526','H','O',5826,'',0,'2025-12-05','0000-00-00',2535,0,2592,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','CENARA BANK','','15106','','scan',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 5852','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-05 17:31:41','reception','2025-12-05 18:34:11',0),(6287,0,0,5286,'2526','H','O',5827,'',0,'2025-12-05','0000-00-00',3593,0,3691,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 17:32:44','','0000-00-00 00:00:00',0),(6288,0,0,5287,'2526','H','O',5828,'',0,'2025-12-05','0000-00-00',3594,0,3692,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 17:35:11','','0000-00-00 00:00:00',0),(6289,0,0,5288,'2526','H','O',5829,'',0,'2025-12-05','0000-00-00',526,0,552,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 17:38:29','','0000-00-00 00:00:00',0),(6290,0,0,5289,'2526','H','O',5830,'',0,'2025-12-05','0000-00-00',3595,0,3693,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','64769','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-05 17:40:39','','0000-00-00 00:00:00',0),(6291,0,0,5292,'2526','H','O',5831,'',0,'2025-12-05','0000-00-00',2503,0,2560,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','96259','','scan                          ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 17:46:22','','0000-00-00 00:00:00',0),(6292,0,0,5294,'2526','H','O',5832,'',0,'2025-12-05','0000-00-00',2882,0,2958,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 17:54:21','','0000-00-00 00:00:00',0),(6293,0,0,5290,'2526','H','O',5833,'',0,'2025-12-05','0000-00-00',3258,0,3341,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 5857','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 17:57:04','janvi','2025-12-05 18:50:08',0),(6294,0,0,5295,'2526','H','O',5834,'',0,'2025-12-05','0000-00-00',3596,0,3694,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','RAJKOT NAGRIK','','26928','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 17:58:07','','0000-00-00 00:00:00',0),(6295,0,0,5296,'2526','H','O',5835,'',0,'2025-12-05','0000-00-00',3597,0,3695,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 18:04:03','','0000-00-00 00:00:00',0),(6296,0,0,5297,'2526','H','O',5836,'',0,'2025-12-05','0000-00-00',2519,0,2577,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-05 18:04:20','','0000-00-00 00:00:00',0),(6297,0,0,5300,'2526','H','O',5837,'',0,'2025-12-05','0000-00-00',3599,0,3697,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 18:12:12','','0000-00-00 00:00:00',0),(6298,0,0,5299,'2526','H','O',5838,'',0,'2025-12-05','0000-00-00',1564,0,1607,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7',' YES BANK','','23194','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-05 18:12:44','','0000-00-00 00:00:00',0),(6299,0,0,5303,'2526','H','O',5839,'',0,'2025-12-05','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 18:16:18','','0000-00-00 00:00:00',0),(6300,0,0,5302,'2526','H','O',5840,'',0,'2025-12-05','0000-00-00',2738,0,2808,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 18:16:31','','0000-00-00 00:00:00',0),(6301,0,0,5304,'2526','H','O',5841,'',0,'2025-12-05','0000-00-00',2989,0,3067,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 18:17:02','','0000-00-00 00:00:00',0),(6302,0,0,5306,'2526','H','O',5842,'',0,'2025-12-05','0000-00-00',1539,0,1582,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 18:19:03','','0000-00-00 00:00:00',0),(6303,0,0,5305,'2526','H','O',5843,'',0,'2025-12-05','0000-00-00',3600,0,3699,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','YASH BANK','','92565','','SCAN',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 18:21:18','','0000-00-00 00:00:00',0),(6304,0,0,5274,'2526','H','O',5844,'',0,'2025-12-05','0000-00-00',3590,0,3447,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-12-05','Y','N','N','','N',0.00,'','Y','FOC','','HO 5817','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 18:22:10','janvi','2025-12-05 18:22:25',0),(6305,0,0,5298,'2526','H','O',5845,'',0,'2025-12-05','0000-00-00',3598,0,3696,0,'D27','',0,750.00,0.00,0.00,750.00,350.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 18:23:58','','0000-00-00 00:00:00',0),(6306,0,0,5280,'2526','H','O',5846,'',0,'2025-12-05','0000-00-00',2919,0,2996,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 18:26:59','','0000-00-00 00:00:00',0),(6307,0,0,5309,'2526','H','O',5847,'',0,'2025-12-05','0000-00-00',3602,0,3702,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK BANK','','88197','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 18:27:42','','0000-00-00 00:00:00',0),(6308,0,0,5308,'2526','H','O',5848,'',0,'2025-12-05','0000-00-00',3601,0,3701,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 18:27:50','','0000-00-00 00:00:00',0),(6309,0,0,5310,'2526','H','O',5849,'',0,'2025-12-05','0000-00-00',3603,0,3703,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 18:29:17','','0000-00-00 00:00:00',0),(6310,0,0,5305,'2526','H','O',5850,'',0,'2025-12-05','0000-00-00',3600,0,3699,0,'D06','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','YASH BANK','','07735','','SCAN',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 18:30:55','','0000-00-00 00:00:00',0),(6311,0,0,5311,'2526','H','O',5851,'',0,'2025-12-05','0000-00-00',3604,0,3704,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 18:31:07','','0000-00-00 00:00:00',0),(6312,0,0,5285,'2526','H','O',5852,'',0,'2025-12-05','0000-00-00',2535,0,2592,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','CANARA BANK','','15106','','SCAN',-500.00,0,0,'2025-12-05','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 5826','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 18:34:11','reception','2025-12-05 18:53:56',0),(6313,0,0,5313,'2526','H','O',5853,'',0,'2025-12-05','0000-00-00',175,0,188,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 18:36:55','','0000-00-00 00:00:00',0),(6314,0,0,5223,'2526','H','D',243,'',0,'2025-12-05','0000-00-00',3525,248,3627,0,'D02','',0,15000.00,0.00,0.00,15000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-05 18:38:54','vishal','2025-12-05 19:02:46',0),(6315,0,0,5314,'2526','H','O',5854,'',0,'2025-12-05','0000-00-00',3605,0,3705,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 18:39:05','','0000-00-00 00:00:00',0),(6316,0,0,5315,'2526','H','O',5855,'',0,'2025-12-05','0000-00-00',1968,0,2016,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','canara bank','','90017','','scan  ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 18:41:40','','0000-00-00 00:00:00',0),(6317,0,0,5317,'2526','H','O',5856,'',0,'2025-12-05','0000-00-00',3606,0,3707,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 18:47:40','','0000-00-00 00:00:00',0),(6318,0,0,5290,'2526','H','O',5857,'',0,'2025-12-05','0000-00-00',3258,0,3341,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-12-05','Y','N','N','','N',0.00,'','Y','FOC','','HO 5833','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 18:50:08','janvi','2025-12-05 18:50:41',0),(6319,0,0,5318,'2526','H','O',5858,'',0,'2025-12-05','0000-00-00',3607,0,3708,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 18:51:21','','0000-00-00 00:00:00',0),(6320,0,0,5319,'2526','H','O',5859,'',0,'2025-12-05','0000-00-00',1422,0,1463,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC BANK','','29696','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 18:52:13','','0000-00-00 00:00:00',0),(6321,0,0,5320,'2526','H','O',5860,'',0,'2025-12-05','0000-00-00',3608,0,3709,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 18:53:14','','0000-00-00 00:00:00',0),(6322,0,0,5285,'2526','H','O',5861,'',0,'2025-12-05','0000-00-00',2535,0,2592,0,'D06','',0,500.00,0.00,0.00,500.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','CANARA BANK','','15106','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 18:56:13','','0000-00-00 00:00:00',0),(6323,0,0,5295,'2526','H','O',5862,'',0,'2025-12-05','0000-00-00',3596,0,3694,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','RAJKOT NAGRIK','','44183','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 18:58:55','','0000-00-00 00:00:00',0),(6324,0,0,5223,'2526','H','I',219,'',0,'2025-12-05','0000-00-00',3525,248,3627,0,'D02','',0,15000.00,0.00,0.00,15000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-05 19:03:03','','0000-00-00 00:00:00',0),(6325,0,0,5323,'2526','H','O',5863,'',0,'2025-12-05','0000-00-00',3610,0,3711,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 19:05:14','','0000-00-00 00:00:00',0),(6326,0,0,5324,'2526','H','O',5864,'',0,'2025-12-05','0000-00-00',2115,0,2167,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 19:06:35','','0000-00-00 00:00:00',0),(6327,0,0,5326,'2526','H','O',5865,'',0,'2025-12-05','0000-00-00',3612,0,3713,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK BANK','','45864','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 19:14:34','','0000-00-00 00:00:00',0),(6328,0,0,5322,'2526','H','O',5866,'',0,'2025-12-05','0000-00-00',2681,0,2750,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 19:15:24','','0000-00-00 00:00:00',0),(6329,0,0,5328,'2526','H','O',5867,'',0,'2025-12-05','0000-00-00',3613,0,3151,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 19:19:42','','0000-00-00 00:00:00',0),(6330,0,0,5329,'2526','H','O',5868,'',0,'2025-12-05','0000-00-00',3614,0,3714,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','300 DISCOUNT','HO 5875','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 19:22:08','reception','2025-12-05 19:45:43',0),(6331,0,0,5330,'2526','H','O',5869,'',0,'2025-12-05','0000-00-00',3615,0,3715,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 19:23:16','','0000-00-00 00:00:00',0),(6332,0,0,5325,'2526','H','O',5870,'',0,'2025-12-05','0000-00-00',3611,0,3712,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC BANK','','75246','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 19:27:16','','0000-00-00 00:00:00',0),(6333,0,0,5325,'2526','H','O',5871,'',0,'2025-12-05','0000-00-00',3611,0,3712,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC BANK','','46959','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 19:27:18','','0000-00-00 00:00:00',0),(6334,0,0,5331,'2526','H','O',5872,'',0,'2025-12-05','0000-00-00',3616,0,3716,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK','','48063','','SCAN',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 19:34:54','','0000-00-00 00:00:00',0),(6335,0,0,5217,'2526','H','O',5873,'',0,'2025-12-05','0000-00-00',3305,0,3394,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 19:36:51','','0000-00-00 00:00:00',0),(6336,0,0,5332,'2526','H','O',5874,'',0,'2025-12-05','0000-00-00',3617,0,3717,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK','','82787','','SCAN',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 19:42:20','','0000-00-00 00:00:00',0),(6337,0,0,5329,'2526','H','O',5875,'',0,'2025-12-05','0000-00-00',3614,0,3714,0,'D06','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-12-05','Y','N','N','','N',0.00,'','Y','300 DISCOUNT','','HO 5868','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 19:45:43','reception','2025-12-05 19:46:22',0),(6338,0,0,5329,'2526','H','O',5876,'',0,'2025-12-05','0000-00-00',3614,0,3714,0,'D06','',0,700.00,0.00,0.00,700.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-05 19:47:22','','0000-00-00 00:00:00',0),(6339,0,0,5333,'2526','H','O',5877,'',0,'2025-12-05','0000-00-00',761,0,792,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','IDFC BANK','','40066','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 19:52:54','','0000-00-00 00:00:00',0),(6340,0,0,5334,'2526','H','O',5878,'',0,'2025-12-05','0000-00-00',3310,0,3399,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 20:04:01','','0000-00-00 00:00:00',0),(6341,0,0,5335,'2526','H','O',5879,'',0,'2025-12-05','0000-00-00',3254,0,3337,0,'D02','',0,3000.00,0.00,0.00,3000.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','76605','','scan  ',2500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-05 20:05:13','','0000-00-00 00:00:00',0),(6342,0,0,5336,'2526','H','O',5880,'',0,'2025-12-05','0000-00-00',3618,0,3718,0,'D27','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','INDUSLAND BANK','','14886','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-05 20:52:29','','0000-00-00 00:00:00',0),(6343,0,0,5339,'2526','H','O',5881,'',0,'2025-12-06','0000-00-00',2957,0,3036,0,'D02','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 08:47:29','','0000-00-00 00:00:00',0),(6344,0,0,3764,'2526','H','I',220,'',0,'2025-12-06','0000-00-00',0,178,2780,0,'D02','',0,135250.00,0.00,0.00,135250.00,5000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-130250,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(6345,0,0,5340,'2526','H','O',5882,'',0,'2025-12-06','0000-00-00',823,0,854,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 10:01:20','','0000-00-00 00:00:00',0),(6346,0,0,5342,'2526','H','O',5883,'',0,'2025-12-06','0000-00-00',3619,0,3722,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-06 10:02:36','','0000-00-00 00:00:00',0),(6347,0,0,5344,'2526','H','O',5884,'',0,'2025-12-06','0000-00-00',1789,0,1834,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 10:07:51','','0000-00-00 00:00:00',0),(6348,0,0,5343,'2526','H','O',5885,'',0,'2025-12-06','0000-00-00',3620,0,3723,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-06 10:08:04','','0000-00-00 00:00:00',0),(6349,0,0,5345,'2526','H','O',5886,'',0,'2025-12-06','0000-00-00',3621,0,3724,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 10:11:49','','0000-00-00 00:00:00',0),(6350,0,0,5346,'2526','H','O',5887,'',0,'2025-12-06','0000-00-00',450,0,476,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 10:19:16','','0000-00-00 00:00:00',0),(6351,0,0,5347,'2526','H','O',5888,'',0,'2025-12-06','0000-00-00',2850,0,2922,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-06 10:26:07','','0000-00-00 00:00:00',0),(6352,0,0,5348,'2526','H','O',5889,'',0,'2025-12-06','0000-00-00',3091,0,3177,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 10:28:34','','0000-00-00 00:00:00',0),(6353,0,0,5349,'2526','H','O',5890,'',0,'2025-12-06','0000-00-00',3622,0,3725,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 10:30:53','','0000-00-00 00:00:00',0),(6354,0,0,5350,'2526','H','O',5891,'',0,'2025-12-06','0000-00-00',1993,0,2044,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 10:33:53','','0000-00-00 00:00:00',0),(6355,0,0,4970,'2526','H','D',244,'',0,'2025-12-06','0000-00-00',0,237,3506,0,'D27','',0,34700.00,0.00,0.00,34700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-34700,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(6356,0,0,5351,'2526','H','O',5892,'',0,'2025-12-06','0000-00-00',2281,0,2338,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 10:34:44','','0000-00-00 00:00:00',0),(6357,0,0,4970,'2526','H','I',221,'',0,'2025-12-06','0000-00-00',0,237,3506,0,'D27','',0,34700.00,0.00,0.00,34700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-34700,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(6358,0,0,5352,'2526','H','O',5893,'',0,'2025-12-06','0000-00-00',3623,0,3726,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 10:35:50','','0000-00-00 00:00:00',0),(6359,0,0,5354,'2526','H','O',5894,'',0,'2025-12-06','0000-00-00',3624,0,3727,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 10:37:40','','0000-00-00 00:00:00',0),(6360,0,0,5353,'2526','H','O',5895,'',0,'2025-12-06','0000-00-00',3166,0,3252,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','94931','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 10:39:13','','0000-00-00 00:00:00',0),(6361,0,0,5355,'2526','H','O',5896,'',0,'2025-12-06','0000-00-00',3625,0,3728,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 10:43:31','','0000-00-00 00:00:00',0),(6362,0,0,5356,'2526','H','O',5897,'',0,'2025-12-06','0000-00-00',1990,0,2041,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 10:47:22','','0000-00-00 00:00:00',0),(6363,0,0,5357,'2526','H','O',5898,'',0,'2025-12-06','0000-00-00',3626,0,3729,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 10:50:24','','0000-00-00 00:00:00',0),(6364,0,0,5358,'2526','H','O',5899,'',0,'2025-12-06','0000-00-00',3627,0,3730,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5925','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 10:50:43','urvashi','2025-12-06 12:00:18',0),(6365,0,0,5359,'2526','H','O',5900,'',0,'2025-12-06','0000-00-00',3628,0,3731,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 10:54:06','','0000-00-00 00:00:00',0),(6366,0,0,5360,'2526','H','O',5901,'',0,'2025-12-06','0000-00-00',1996,0,2047,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 10:59:46','','0000-00-00 00:00:00',0),(6367,0,0,5361,'2526','H','O',5902,'',0,'2025-12-06','0000-00-00',3629,0,3732,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 5918','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 11:03:09','urvashi','2025-12-06 11:46:48',0),(6368,0,0,5362,'2526','H','O',5903,'',0,'2025-12-06','0000-00-00',548,0,574,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','73129','','scan                          ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-06 11:05:30','','0000-00-00 00:00:00',0),(6369,0,0,5363,'2526','H','O',5904,'',0,'2025-12-06','0000-00-00',3630,0,3733,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 11:12:40','','0000-00-00 00:00:00',0),(6370,0,0,5364,'2526','H','O',5905,'',0,'2025-12-06','0000-00-00',3319,0,3411,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-06 11:20:57','','0000-00-00 00:00:00',0),(6371,0,0,5365,'2526','H','O',5906,'',0,'2025-12-06','0000-00-00',1183,0,1222,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 11:24:35','','0000-00-00 00:00:00',0),(6372,0,0,5366,'2526','H','O',5907,'',0,'2025-12-06','0000-00-00',3161,0,3247,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 11:26:24','','0000-00-00 00:00:00',0),(6373,0,0,5367,'2526','H','O',5908,'',0,'2025-12-06','0000-00-00',1600,0,1645,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 11:27:36','','0000-00-00 00:00:00',0),(6374,0,0,5354,'2526','H','O',5909,'',0,'2025-12-06','0000-00-00',3624,0,3727,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','47754','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 11:29:25','','0000-00-00 00:00:00',0),(6375,0,0,5368,'2526','H','O',5910,'',0,'2025-12-06','0000-00-00',1520,0,1561,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 11:33:40','','0000-00-00 00:00:00',0),(6376,0,0,5369,'2526','H','O',5911,'',0,'2025-12-06','0000-00-00',1534,0,1574,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','11578','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 11:36:10','','0000-00-00 00:00:00',0),(6377,0,0,5370,'2526','H','O',5912,'',0,'2025-12-06','0000-00-00',3427,0,3524,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 11:36:51','','0000-00-00 00:00:00',0),(6378,0,0,5342,'2526','H','O',5913,'',0,'2025-12-06','0000-00-00',3619,0,3722,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 11:37:42','','0000-00-00 00:00:00',0),(6379,0,0,5371,'2526','H','O',5914,'',0,'2025-12-06','0000-00-00',3631,0,3734,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','20003','','scan ',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-06 11:40:32','','0000-00-00 00:00:00',0),(6380,0,0,5372,'2526','H','O',5915,'',0,'2025-12-06','0000-00-00',3265,0,3353,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-06 11:41:23','','0000-00-00 00:00:00',0),(6381,0,0,5373,'2526','H','O',5916,'',0,'2025-12-06','0000-00-00',2540,0,2597,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','airtel bank','','17198','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 11:43:11','','0000-00-00 00:00:00',0),(6382,0,0,5345,'2526','H','O',5917,'',0,'2025-12-06','0000-00-00',3621,0,3724,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI BANK','','60050','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 11:45:02','','0000-00-00 00:00:00',0),(6383,0,0,5361,'2526','H','O',5918,'',0,'2025-12-06','0000-00-00',3629,0,3732,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-12-06','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 5902','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 11:46:48','urvashi','2025-12-06 11:47:10',0),(6384,0,0,5374,'2526','H','O',5919,'',0,'2025-12-06','0000-00-00',3632,0,3735,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-06 11:47:02','','0000-00-00 00:00:00',0),(6385,0,0,5375,'2526','H','O',5920,'',0,'2025-12-06','0000-00-00',2444,0,2501,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 11:48:51','','0000-00-00 00:00:00',0),(6386,0,0,5376,'2526','H','O',5921,'',0,'2025-12-06','0000-00-00',3633,0,3736,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 11:50:26','','0000-00-00 00:00:00',0),(6387,0,0,5377,'2526','H','O',5922,'',0,'2025-12-06','0000-00-00',2887,0,2964,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 5948','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-06 11:51:09','reception','2025-12-06 13:06:05',0),(6388,0,0,5363,'2526','H','O',5923,'',0,'2025-12-06','0000-00-00',3630,0,3733,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 11:57:03','','0000-00-00 00:00:00',0),(6389,0,0,5378,'2526','H','O',5924,'',0,'2025-12-06','0000-00-00',3634,0,3737,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 11:59:29','','0000-00-00 00:00:00',0),(6390,0,0,5358,'2526','H','O',5925,'',0,'2025-12-06','0000-00-00',3627,0,3730,0,'D06','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-12-06','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 5899','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 12:00:18','urvashi','2025-12-06 12:00:32',0),(6391,0,0,5379,'2526','H','O',5926,'',0,'2025-12-06','0000-00-00',3301,0,3390,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 12:01:15','','0000-00-00 00:00:00',0),(6392,0,0,5148,'2526','H','D',245,'',0,'2025-12-06','0000-00-00',0,244,3621,0,'D27','',0,10600.00,0.00,0.00,10600.00,2700.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',7900.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-06 12:19:23','riya','2025-12-06 12:22:07',0),(6393,0,0,5380,'2526','H','O',5927,'',0,'2025-12-06','0000-00-00',3635,0,3738,0,'D03','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','AXIS BANK','','56565','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-06 12:20:04','','0000-00-00 00:00:00',0),(6394,0,0,5382,'2526','H','O',5928,'',0,'2025-12-06','0000-00-00',1019,0,1053,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-06 12:22:24','','0000-00-00 00:00:00',0),(6395,0,0,5381,'2526','H','O',5929,'',0,'2025-12-06','0000-00-00',3636,0,3739,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','induslnd bank','','95803','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 12:23:27','','0000-00-00 00:00:00',0),(6396,0,0,5148,'2526','H','I',222,'',0,'2025-12-06','0000-00-00',0,244,3621,0,'D27','',0,10600.00,0.00,0.00,10600.00,2700.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7900,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-06 12:23:59','','0000-00-00 00:00:00',0),(6397,0,0,5383,'2526','H','O',5930,'',0,'2025-12-06','0000-00-00',3637,0,3740,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-06 12:24:11','','0000-00-00 00:00:00',0),(6398,0,0,5384,'2526','H','O',5931,'',0,'2025-12-06','0000-00-00',1256,0,1297,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 12:24:18','','0000-00-00 00:00:00',0),(6399,0,0,5385,'2526','H','O',5932,'',0,'2025-12-06','0000-00-00',2122,0,2173,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 12:24:36','','0000-00-00 00:00:00',0),(6400,0,0,5386,'2526','H','O',5933,'',0,'2025-12-06','0000-00-00',3292,0,3381,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-06 12:26:09','','0000-00-00 00:00:00',0),(6401,0,0,5387,'2526','H','O',5934,'',0,'2025-12-06','0000-00-00',3638,0,3741,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC BANK','','71229','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 12:26:59','','0000-00-00 00:00:00',0),(6402,0,0,5388,'2526','H','O',5935,'',0,'2025-12-06','0000-00-00',2738,0,2808,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-06 12:27:36','','0000-00-00 00:00:00',0),(6403,0,0,5389,'2526','H','O',5936,'',0,'2025-12-06','0000-00-00',3639,0,3742,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 12:28:30','','0000-00-00 00:00:00',0),(6404,0,0,5390,'2526','H','O',5937,'',0,'2025-12-06','0000-00-00',3640,0,3743,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','93447','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 12:29:49','','0000-00-00 00:00:00',0),(6405,0,0,5391,'2526','H','O',5938,'',0,'2025-12-06','0000-00-00',3305,0,3394,0,'D02','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-06 12:30:47','','0000-00-00 00:00:00',0),(6406,0,0,5387,'2526','H','O',5939,'',0,'2025-12-06','0000-00-00',3638,0,3741,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','07503','','scan ',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-06 12:33:20','','0000-00-00 00:00:00',0),(6407,0,0,5392,'2526','H','O',5940,'',0,'2025-12-06','0000-00-00',3641,0,3744,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 12:33:27','','0000-00-00 00:00:00',0),(6408,0,0,5393,'2526','H','O',5941,'',0,'2025-12-06','0000-00-00',3642,0,3745,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','90756','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 12:38:26','','0000-00-00 00:00:00',0),(6409,0,0,5394,'2526','H','O',5942,'',0,'2025-12-06','0000-00-00',3643,0,3746,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','UNION BANK','','97465','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 12:45:26','','0000-00-00 00:00:00',0),(6410,0,0,4751,'2526','H','D',246,'',0,'2025-12-06','0000-00-00',0,224,3383,0,'D27','',0,66000.00,0.00,0.00,66000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-66000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(6411,0,0,4751,'2526','H','I',223,'',0,'2025-12-06','0000-00-00',0,224,3383,0,'D27','',0,66000.00,0.00,0.00,66000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-66000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(6412,0,0,5395,'2526','H','O',5943,'',0,'2025-12-06','0000-00-00',3644,0,3747,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-06 12:57:18','','0000-00-00 00:00:00',0),(6413,0,0,5381,'2526','H','O',5944,'',0,'2025-12-06','0000-00-00',3636,0,3739,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','induslnd bank','','91171','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 12:59:43','','0000-00-00 00:00:00',0),(6414,0,0,5397,'2526','H','O',5945,'',0,'2025-12-06','0000-00-00',3018,0,3098,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI BANK','','15219','','scan',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 13:03:06','','0000-00-00 00:00:00',0),(6415,0,0,5398,'2526','H','O',5946,'',0,'2025-12-06','0000-00-00',3646,0,3749,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 13:04:53','','0000-00-00 00:00:00',0),(6416,0,0,5399,'2526','H','O',5947,'',0,'2025-12-06','0000-00-00',3647,0,3750,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI BANK','','26890','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 13:05:21','','0000-00-00 00:00:00',0),(6417,0,0,5377,'2526','H','O',5948,'',0,'2025-12-06','0000-00-00',2887,0,2964,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-06','Y','N','N','','N',0.00,'','Y','FOC','','HO 5922','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 13:06:05','reception','2025-12-06 13:07:36',0),(6418,0,0,5357,'2526','H','O',5949,'',0,'2025-12-06','0000-00-00',3626,0,3729,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 13:07:03','','0000-00-00 00:00:00',0),(6419,0,0,5301,'2526','H','D',247,'',0,'2025-12-06','0000-00-00',0,249,3698,0,'D27','',0,6500.00,0.00,0.00,6500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',-500.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-06 13:09:13','','0000-00-00 00:00:00',0),(6420,0,0,5398,'2526','H','O',5950,'',0,'2025-12-06','0000-00-00',3646,0,3749,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-06 13:09:42','','0000-00-00 00:00:00',0),(6421,0,0,5400,'2526','H','O',5951,'',0,'2025-12-06','0000-00-00',1248,0,1289,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 13:16:54','','0000-00-00 00:00:00',0),(6422,0,0,5401,'2526','H','O',5952,'',0,'2025-12-06','0000-00-00',2856,0,2928,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 13:23:19','','0000-00-00 00:00:00',0),(6423,0,0,5301,'2526','H','I',224,'',0,'2025-12-06','0000-00-00',0,249,3698,0,'D27','',0,6500.00,0.00,0.00,6500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-500.00,-7000,0,'2025-12-06','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-06 13:37:39','riya','2025-12-06 14:06:24',0),(6424,0,0,5393,'2526','H','O',5953,'',0,'2025-12-06','0000-00-00',3642,0,3745,0,'D06','',0,4400.00,0.00,0.00,4400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','25616','','scan',4200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 13:43:59','','0000-00-00 00:00:00',0),(6425,0,0,5402,'2526','H','O',5954,'',0,'2025-12-06','0000-00-00',3648,0,3751,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 14:03:13','','0000-00-00 00:00:00',0),(6426,0,0,5403,'2526','H','O',5955,'',0,'2025-12-06','0000-00-00',3649,0,3752,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 14:04:07','','0000-00-00 00:00:00',0),(6427,0,0,5404,'2526','H','O',5956,'',0,'2025-12-06','0000-00-00',3650,0,3753,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-06 15:04:46','','0000-00-00 00:00:00',0),(6428,0,0,5405,'2526','H','O',5957,'',0,'2025-12-06','0000-00-00',3651,0,3754,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-06 16:59:26','','0000-00-00 00:00:00',0),(6429,0,0,5406,'2526','H','O',5958,'',0,'2025-12-06','0000-00-00',1102,0,1140,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-06 17:37:30','','0000-00-00 00:00:00',0),(6430,0,0,5407,'2526','H','O',5959,'',0,'2025-12-06','0000-00-00',3044,0,3125,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 17:37:58','','0000-00-00 00:00:00',0),(6431,0,0,5408,'2526','H','O',5960,'',0,'2025-12-06','0000-00-00',3652,0,3755,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-06 17:46:37','','0000-00-00 00:00:00',0),(6432,0,0,5408,'2526','H','O',5961,'',0,'2025-12-06','0000-00-00',3652,0,3755,0,'D03','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','RETURN','HO 5965','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-06 18:05:38','manshi','2025-12-06 18:40:36',0),(6433,0,0,5410,'2526','H','O',5962,'',0,'2025-12-06','0000-00-00',2903,0,2980,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 18:08:00','','0000-00-00 00:00:00',0),(6434,0,0,5411,'2526','H','O',5963,'',0,'2025-12-06','0000-00-00',2585,0,2646,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','ZAPP WALLET','','70942','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-06 18:14:02','','0000-00-00 00:00:00',0),(6435,0,0,5412,'2526','H','O',5964,'',0,'2025-12-06','0000-00-00',3654,0,3757,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-06 18:26:00','','0000-00-00 00:00:00',0),(6436,0,0,5408,'2526','H','O',5965,'',0,'2025-12-06','0000-00-00',3652,0,3755,0,'D03','',0,-1200.00,0.00,0.00,-1200.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-1200.00,0,0,'2025-12-06','Y','N','N','','N',0.00,'','Y','RETURN','','HO 5961','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-06 18:40:36','manshi','2025-12-06 18:40:52',0),(6437,0,0,5413,'2526','H','O',5966,'',0,'2025-12-06','0000-00-00',3655,0,3758,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','KOTAK MAHINDRA','','57691','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-06 19:22:55','','0000-00-00 00:00:00',0),(6438,0,0,5414,'2526','H','O',5967,'',0,'2025-12-06','0000-00-00',3656,0,3759,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','KOTAK MAHINDRA','','57691','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-06 19:23:16','','0000-00-00 00:00:00',0),(6439,0,0,5113,'2526','H','D',248,'',0,'2025-12-06','0000-00-00',0,242,3598,0,'D27','',0,18600.00,0.00,0.00,18600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-18000,0,'0000-00-00','','N','N','F','N',600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-06 19:24:10','riya','2025-12-06 19:30:25',0),(6440,0,0,5415,'2526','H','O',5968,'',0,'2025-12-06','0000-00-00',3657,0,3760,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-06 19:25:09','','0000-00-00 00:00:00',0),(6441,0,0,5416,'2526','H','O',5969,'',0,'2025-12-06','0000-00-00',3658,0,3761,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 19:29:05','','0000-00-00 00:00:00',0),(6442,0,0,5113,'2526','H','I',225,'',0,'2025-12-06','0000-00-00',0,242,3598,0,'D27','',0,18600.00,0.00,0.00,18600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-18600,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(6443,0,0,5417,'2526','H','O',5970,'',0,'2025-12-06','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 19:35:10','','0000-00-00 00:00:00',0),(6444,0,0,5418,'2526','H','O',5971,'',0,'2025-12-06','0000-00-00',3310,0,3399,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 19:41:22','','0000-00-00 00:00:00',0),(6445,0,0,5372,'2526','H','O',5972,'',0,'2025-12-06','0000-00-00',3265,0,3353,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-06 20:16:53','','0000-00-00 00:00:00',0),(6446,0,0,5419,'2526','H','O',5973,'',0,'2025-12-07','0000-00-00',3659,0,3762,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-07 09:33:30','','0000-00-00 00:00:00',0),(6447,0,0,5420,'2526','H','O',5974,'',0,'2025-12-07','0000-00-00',3660,0,3598,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-07 09:34:38','','0000-00-00 00:00:00',0),(6448,0,0,5421,'2526','H','O',5975,'',0,'2025-12-07','0000-00-00',3661,0,3763,0,'D06','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-07 11:21:55','','0000-00-00 00:00:00',0),(6449,0,0,5422,'2526','H','O',5976,'',0,'2025-12-07','0000-00-00',3021,0,3101,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-07 11:38:53','','0000-00-00 00:00:00',0),(6450,0,0,5423,'2526','H','O',5977,'',0,'2025-12-07','0000-00-00',1029,0,1063,0,'D02','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-07 12:18:45','','0000-00-00 00:00:00',0),(6451,0,0,5424,'2526','H','O',5978,'',0,'2025-12-07','0000-00-00',2118,0,1763,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-07 12:46:03','','0000-00-00 00:00:00',0),(6452,0,0,5341,'2526','H','D',249,'',0,'2025-12-07','0000-00-00',0,254,3721,0,'D02','',0,32900.00,0.00,0.00,32900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','','N','N','F','N',12900.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-07 19:28:37','vishal','2025-12-07 19:42:33',0),(6453,0,0,5341,'2526','H','I',226,'',0,'2025-12-07','0000-00-00',0,254,3721,0,'D02','',0,32900.00,0.00,0.00,32900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-32900,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-07 19:45:14','','0000-00-00 00:00:00',0),(6454,0,0,5427,'2526','H','O',5979,'',0,'2025-12-08','0000-00-00',3662,0,3766,0,'D03','',0,1600.00,0.00,0.00,1600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-08 08:48:30','','0000-00-00 00:00:00',0),(6455,0,0,5428,'2526','H','O',5980,'',0,'2025-12-08','0000-00-00',3663,0,3767,0,'D03','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-08 08:49:56','','0000-00-00 00:00:00',0),(6456,0,0,5429,'2526','H','O',5981,'',0,'2025-12-08','0000-00-00',3310,0,3399,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 08:50:09','','0000-00-00 00:00:00',0),(6457,0,0,5430,'2526','H','O',5982,'',0,'2025-12-08','0000-00-00',3664,0,3768,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-08 08:51:04','','0000-00-00 00:00:00',0),(6458,0,0,5431,'2526','H','O',5983,'',0,'2025-12-08','0000-00-00',3660,0,3598,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-08 08:51:54','','0000-00-00 00:00:00',0),(6459,0,0,5432,'2526','H','O',5984,'',0,'2025-12-08','0000-00-00',3665,0,3769,0,'D27','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-08 08:53:50','','0000-00-00 00:00:00',0),(6460,0,0,5433,'2526','H','O',5985,'',0,'2025-12-08','0000-00-00',3305,0,3394,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-08 08:55:03','','0000-00-00 00:00:00',0),(6461,0,0,5434,'2526','H','O',5986,'',0,'2025-12-08','0000-00-00',3666,0,3770,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-08 08:56:26','','0000-00-00 00:00:00',0),(6462,0,0,5435,'2526','H','O',5987,'',0,'2025-12-08','0000-00-00',3667,0,3771,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-08 08:58:18','','0000-00-00 00:00:00',0),(6463,0,0,5436,'2526','H','O',5988,'',0,'2025-12-08','0000-00-00',3668,0,3772,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-08 09:00:03','','0000-00-00 00:00:00',0),(6464,0,0,5437,'2526','H','O',5989,'',0,'2025-12-08','0000-00-00',3669,0,3773,0,'D02','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC BANK','','37781','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-08 09:02:31','','0000-00-00 00:00:00',0),(6465,0,0,5438,'2526','H','O',5990,'',0,'2025-12-08','0000-00-00',3670,0,3774,0,'D27','',0,1450.00,0.00,0.00,1450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BANK','','94648','','scan',1450.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-08 09:05:12','','0000-00-00 00:00:00',0),(6466,0,0,5439,'2526','H','O',5991,'',0,'2025-12-08','0000-00-00',1149,0,1189,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 09:15:45','','0000-00-00 00:00:00',0),(6467,0,0,5441,'2526','H','O',5992,'',0,'2025-12-08','0000-00-00',3672,0,3776,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 09:28:52','','0000-00-00 00:00:00',0),(6468,0,0,5440,'2526','H','O',5993,'',0,'2025-12-08','0000-00-00',3671,0,3775,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 09:30:50','','0000-00-00 00:00:00',0),(6469,0,0,5442,'2526','H','O',5994,'',0,'2025-12-08','0000-00-00',3673,0,3777,0,'D03','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOI','','94671','','scan  ',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 09:35:29','','0000-00-00 00:00:00',0),(6470,0,0,5444,'2526','H','O',5995,'',0,'2025-12-08','0000-00-00',3674,0,3779,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 09:43:39','','0000-00-00 00:00:00',0),(6471,0,0,5446,'2526','H','O',5996,'',0,'2025-12-08','0000-00-00',3675,0,3781,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 09:48:30','','0000-00-00 00:00:00',0),(6472,0,0,5447,'2526','H','O',5997,'',0,'2025-12-08','0000-00-00',3676,0,3782,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 09:51:27','','0000-00-00 00:00:00',0),(6473,0,0,5448,'2526','H','O',5998,'',0,'2025-12-08','0000-00-00',3510,0,3085,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 09:58:04','','0000-00-00 00:00:00',0),(6474,0,0,5449,'2526','H','O',5999,'',0,'2025-12-08','0000-00-00',792,0,823,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 09:58:15','','0000-00-00 00:00:00',0),(6475,0,0,5450,'2526','H','O',6000,'',0,'2025-12-08','0000-00-00',1735,0,1779,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 09:59:14','','0000-00-00 00:00:00',0),(6476,0,0,5453,'2526','H','O',6001,'',0,'2025-12-08','0000-00-00',3678,0,3783,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','54456','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 10:07:50','','0000-00-00 00:00:00',0),(6477,0,0,5454,'2526','H','O',6002,'',0,'2025-12-08','0000-00-00',2040,0,2095,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 10:09:25','','0000-00-00 00:00:00',0),(6478,0,0,5455,'2526','H','O',6003,'',0,'2025-12-08','0000-00-00',3679,0,3784,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 10:13:54','','0000-00-00 00:00:00',0),(6479,0,0,5456,'2526','H','O',6004,'',0,'2025-12-08','0000-00-00',3680,0,3785,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 10:20:26','','0000-00-00 00:00:00',0),(6480,0,0,5457,'2526','H','O',6005,'',0,'2025-12-08','0000-00-00',3681,0,3786,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 10:21:41','','0000-00-00 00:00:00',0),(6481,0,0,5458,'2526','H','O',6006,'',0,'2025-12-08','0000-00-00',3682,0,3787,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 10:28:02','','0000-00-00 00:00:00',0),(6482,0,0,5459,'2526','H','O',6007,'',0,'2025-12-08','0000-00-00',3683,0,3788,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 10:32:17','','0000-00-00 00:00:00',0),(6483,0,0,5452,'2526','H','O',6008,'',0,'2025-12-08','0000-00-00',3677,0,3401,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','idbi','','79939','','scan                          ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 10:33:00','','0000-00-00 00:00:00',0),(6484,0,0,5460,'2526','H','O',6009,'',0,'2025-12-08','0000-00-00',3684,0,3789,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 10:43:22','','0000-00-00 00:00:00',0),(6485,0,0,5461,'2526','H','O',6010,'',0,'2025-12-08','0000-00-00',3685,0,3790,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 10:44:04','','0000-00-00 00:00:00',0),(6486,0,0,5462,'2526','H','O',6011,'',0,'2025-12-08','0000-00-00',3686,0,3791,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 10:45:15','','0000-00-00 00:00:00',0),(6487,0,0,5463,'2526','H','O',6012,'',0,'2025-12-08','0000-00-00',3687,0,3792,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 10:50:05','','0000-00-00 00:00:00',0),(6488,0,0,5464,'2526','H','O',6013,'',0,'2025-12-08','0000-00-00',78,0,89,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 10:50:09','','0000-00-00 00:00:00',0),(6489,0,0,5465,'2526','H','O',6014,'',0,'2025-12-08','0000-00-00',1535,0,1576,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 10:51:23','','0000-00-00 00:00:00',0),(6490,0,0,5466,'2526','H','O',6015,'',0,'2025-12-08','0000-00-00',3688,0,3793,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 10:55:00','','0000-00-00 00:00:00',0),(6491,0,0,5467,'2526','H','O',6016,'',0,'2025-12-08','0000-00-00',3689,0,3794,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','33924','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 10:56:39','','0000-00-00 00:00:00',0),(6492,0,0,5469,'2526','H','O',6017,'',0,'2025-12-08','0000-00-00',2610,0,2672,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 10:57:56','','0000-00-00 00:00:00',0),(6493,0,0,5468,'2526','H','O',6018,'',0,'2025-12-08','0000-00-00',2542,0,2599,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','33924','','scan ',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 6019','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 10:58:12','janvi','2025-12-08 10:59:08',0),(6494,0,0,5468,'2526','H','O',6019,'',0,'2025-12-08','0000-00-00',2542,0,2599,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','hdfc','','33924','','SCAN                          ',-300.00,0,0,'2025-12-08','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6018','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 10:59:08','janvi','2025-12-08 11:00:01',0),(6495,0,0,5470,'2526','H','O',6020,'',0,'2025-12-08','0000-00-00',3690,0,3795,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 10:59:53','','0000-00-00 00:00:00',0),(6496,0,0,5468,'2526','H','O',6021,'',0,'2025-12-08','0000-00-00',2542,0,2599,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','53755','','scan                          ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 11:02:40','','0000-00-00 00:00:00',0),(6497,0,0,5471,'2526','H','O',6022,'',0,'2025-12-08','0000-00-00',2128,0,2179,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 11:04:52','','0000-00-00 00:00:00',0),(6498,0,0,5472,'2526','H','O',6023,'',0,'2025-12-08','0000-00-00',3691,0,3796,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','85069','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 11:06:51','','0000-00-00 00:00:00',0),(6499,0,0,5473,'2526','H','O',6024,'',0,'2025-12-08','0000-00-00',3692,0,3797,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 11:08:52','','0000-00-00 00:00:00',0),(6500,0,0,5474,'2526','H','O',6025,'',0,'2025-12-08','0000-00-00',3693,0,3798,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 11:11:57','','0000-00-00 00:00:00',0),(6501,0,0,5476,'2526','H','O',6026,'',0,'2025-12-08','0000-00-00',3695,0,3347,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 11:13:18','','0000-00-00 00:00:00',0),(6502,0,0,5475,'2526','H','O',6027,'',0,'2025-12-08','0000-00-00',3694,0,3799,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','05123','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 11:13:49','','0000-00-00 00:00:00',0),(6503,0,0,5462,'2526','H','O',6028,'',0,'2025-12-08','0000-00-00',3686,0,3791,0,'D03','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 11:16:05','','0000-00-00 00:00:00',0),(6504,0,0,5441,'2526','H','O',6029,'',0,'2025-12-08','0000-00-00',3672,0,3776,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 11:16:58','','0000-00-00 00:00:00',0),(6505,0,0,5478,'2526','H','O',6030,'',0,'2025-12-08','0000-00-00',3565,0,3665,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 11:18:03','','0000-00-00 00:00:00',0),(6506,0,0,5457,'2526','H','O',6031,'',0,'2025-12-08','0000-00-00',3681,0,3786,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 11:18:52','','0000-00-00 00:00:00',0),(6507,0,0,5479,'2526','H','O',6032,'',0,'2025-12-08','0000-00-00',3696,0,3800,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 11:22:13','','0000-00-00 00:00:00',0),(6508,0,0,5440,'2526','H','O',6033,'',0,'2025-12-08','0000-00-00',3671,0,3775,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 11:23:23','','0000-00-00 00:00:00',0),(6509,0,0,5480,'2526','H','O',6034,'',0,'2025-12-08','0000-00-00',3697,0,2834,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 11:23:56','','0000-00-00 00:00:00',0),(6510,0,0,5481,'2526','H','O',6035,'',0,'2025-12-08','0000-00-00',3698,0,3801,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 11:25:30','','0000-00-00 00:00:00',0),(6511,0,0,5483,'2526','H','O',6036,'',0,'2025-12-08','0000-00-00',3700,0,3803,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 11:27:43','','0000-00-00 00:00:00',0),(6512,0,0,5482,'2526','H','O',6037,'',0,'2025-12-08','0000-00-00',3699,0,3802,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 11:27:51','','0000-00-00 00:00:00',0),(6513,0,0,5466,'2526','H','O',6038,'',0,'2025-12-08','0000-00-00',3688,0,3793,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 11:29:22','','0000-00-00 00:00:00',0),(6514,0,0,5484,'2526','H','O',6039,'',0,'2025-12-08','0000-00-00',2343,0,2399,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 11:29:36','','0000-00-00 00:00:00',0),(6515,0,0,5477,'2526','H','O',6040,'',0,'2025-12-08','0000-00-00',2738,0,2808,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 11:30:30','','0000-00-00 00:00:00',0),(6516,0,0,5486,'2526','H','O',6041,'',0,'2025-12-08','0000-00-00',3702,0,3805,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 11:30:57','','0000-00-00 00:00:00',0),(6517,0,0,5487,'2526','H','O',6042,'',0,'2025-12-08','0000-00-00',3703,0,3806,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','16514','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 11:32:00','','0000-00-00 00:00:00',0),(6518,0,0,5488,'2526','H','O',6043,'',0,'2025-12-08','0000-00-00',3704,0,3807,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 11:32:27','','0000-00-00 00:00:00',0),(6519,0,0,5490,'2526','H','O',6044,'',0,'2025-12-08','0000-00-00',1134,0,1174,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 11:33:10','','0000-00-00 00:00:00',0),(6520,0,0,5489,'2526','H','O',6045,'',0,'2025-12-08','0000-00-00',3705,0,3808,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','16514','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 11:33:52','','0000-00-00 00:00:00',0),(6521,0,0,5492,'2526','H','O',6046,'',0,'2025-12-08','0000-00-00',3706,0,3809,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 11:36:05','','0000-00-00 00:00:00',0),(6522,0,0,5485,'2526','H','O',6047,'',0,'2025-12-08','0000-00-00',3701,0,3804,0,'D14','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 11:36:18','','0000-00-00 00:00:00',0),(6523,0,0,5493,'2526','H','O',6048,'',0,'2025-12-08','0000-00-00',2045,0,2100,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 11:36:55','','0000-00-00 00:00:00',0),(6524,0,0,5491,'2526','H','O',6049,'',0,'2025-12-08','0000-00-00',3445,0,3542,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 11:41:48','','0000-00-00 00:00:00',0),(6525,0,0,5494,'2526','H','O',6050,'',0,'2025-12-08','0000-00-00',3707,0,3810,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 11:42:36','','0000-00-00 00:00:00',0),(6526,0,0,5495,'2526','H','O',6051,'',0,'2025-12-08','0000-00-00',3708,0,3811,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 11:44:04','','0000-00-00 00:00:00',0),(6527,0,0,5496,'2526','H','O',6052,'',0,'2025-12-08','0000-00-00',3709,0,3812,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','44110','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 11:45:59','','0000-00-00 00:00:00',0),(6528,0,0,5497,'2526','H','O',6053,'',0,'2025-12-08','0000-00-00',3710,0,3813,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 11:49:03','','0000-00-00 00:00:00',0),(6529,0,0,5500,'2526','H','O',6054,'',0,'2025-12-08','0000-00-00',298,0,314,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 11:52:36','','0000-00-00 00:00:00',0),(6530,0,0,5498,'2526','H','O',6055,'',0,'2025-12-08','0000-00-00',3711,0,2866,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','CRD','ICICI BANK','','18','','CARD',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 11:53:54','','0000-00-00 00:00:00',0),(6531,0,0,5472,'2526','H','O',6056,'',0,'2025-12-08','0000-00-00',3691,0,3796,0,'D06','',0,4700.00,0.00,0.00,4700.00,700.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','87370','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 11:54:59','','0000-00-00 00:00:00',0),(6532,0,0,5501,'2526','H','O',6057,'',0,'2025-12-08','0000-00-00',3712,0,3814,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 11:58:10','','0000-00-00 00:00:00',0),(6533,0,0,5502,'2526','H','O',6058,'',0,'2025-12-08','0000-00-00',3713,0,3815,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 11:58:12','','0000-00-00 00:00:00',0),(6534,0,0,5503,'2526','H','O',6059,'',0,'2025-12-08','0000-00-00',3714,0,3816,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','84895','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 11:59:45','','0000-00-00 00:00:00',0),(6535,0,0,5504,'2526','H','O',6060,'',0,'2025-12-08','0000-00-00',3715,0,3817,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','987081','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 12:00:12','','0000-00-00 00:00:00',0),(6536,0,0,5505,'2526','H','O',6061,'',0,'2025-12-08','0000-00-00',2393,0,392,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 12:00:42','','0000-00-00 00:00:00',0),(6537,0,0,5453,'2526','H','O',6062,'',0,'2025-12-08','0000-00-00',3678,0,3783,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','85685','','scan',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 12:01:52','','0000-00-00 00:00:00',0),(6538,0,0,5442,'2526','H','O',6063,'',0,'2025-12-08','0000-00-00',3673,0,3777,0,'D03','',0,4000.00,0.00,0.00,4000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bank of india','','10135','','SCAN',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 12:02:53','','0000-00-00 00:00:00',0),(6539,0,0,5446,'2526','H','O',6064,'',0,'2025-12-08','0000-00-00',3675,0,3781,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 12:04:48','','0000-00-00 00:00:00',0),(6540,0,0,5507,'2526','H','O',6065,'',0,'2025-12-08','0000-00-00',3716,0,3818,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 12:05:20','','0000-00-00 00:00:00',0),(6541,0,0,5508,'2526','H','O',6066,'',0,'2025-12-08','0000-00-00',2245,0,2301,0,'D03','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 12:12:52','','0000-00-00 00:00:00',0),(6542,0,0,5509,'2526','H','O',6067,'',0,'2025-12-08','0000-00-00',990,0,1022,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 12:13:33','','0000-00-00 00:00:00',0),(6543,0,0,5504,'2526','H','O',6068,'',0,'2025-12-08','0000-00-00',3715,0,3817,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','72004','','SCAN',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 12:16:20','','0000-00-00 00:00:00',0),(6544,0,0,4977,'2526','H','D',250,'',0,'2025-12-08','0000-00-00',0,238,3510,0,'D27','',0,58300.00,0.00,0.00,58300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-45000,0,'0000-00-00','','N','N','F','N',13300.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-08 12:17:00','riya','2025-12-08 12:30:56',0),(6545,0,0,5511,'2526','H','O',6069,'',0,'2025-12-08','0000-00-00',3718,0,3820,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 12:18:05','','0000-00-00 00:00:00',0),(6546,0,0,5512,'2526','H','O',6070,'',0,'2025-12-08','0000-00-00',2451,0,2510,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 12:19:10','','0000-00-00 00:00:00',0),(6547,0,0,5510,'2526','H','O',6071,'',0,'2025-12-08','0000-00-00',3717,0,3819,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','IDFC BANK','','19','','scan ',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 12:20:23','','0000-00-00 00:00:00',0),(6548,0,0,5506,'2526','H','O',6072,'',0,'2025-12-08','0000-00-00',3406,0,3501,0,'D27','',0,800.00,0.00,0.00,800.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 12:20:31','','0000-00-00 00:00:00',0),(6549,0,0,5513,'2526','H','O',6073,'',0,'2025-12-08','0000-00-00',1928,0,1976,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','INDIA POST PAY','','85175','','SCAN',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 12:22:13','','0000-00-00 00:00:00',0),(6550,0,0,5514,'2526','H','O',6074,'',0,'2025-12-08','0000-00-00',2946,0,3025,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','28388','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 12:24:44','','0000-00-00 00:00:00',0),(6551,0,0,5481,'2526','H','O',6075,'',0,'2025-12-08','0000-00-00',3698,0,3801,0,'D06','',0,5500.00,0.00,0.00,5500.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 12:25:03','','0000-00-00 00:00:00',0),(6552,0,0,5515,'2526','H','O',6076,'',0,'2025-12-08','0000-00-00',254,0,269,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 12:29:49','','0000-00-00 00:00:00',0),(6553,0,0,5516,'2526','H','O',6077,'',0,'2025-12-08','0000-00-00',3434,0,3531,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 12:33:24','','0000-00-00 00:00:00',0),(6554,0,0,5517,'2526','H','O',6078,'',0,'2025-12-08','0000-00-00',3719,0,3821,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 12:33:54','','0000-00-00 00:00:00',0),(6555,0,0,5519,'2526','H','O',6079,'',0,'2025-12-08','0000-00-00',3721,0,3822,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 12:37:05','','0000-00-00 00:00:00',0),(6556,0,0,5520,'2526','H','O',6080,'',0,'2025-12-08','0000-00-00',3722,0,3823,0,'D27','',0,1250.00,0.00,0.00,1250.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','05425','','scan ',1250.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 12:39:39','','0000-00-00 00:00:00',0),(6557,0,0,5523,'2526','H','O',6081,'',0,'2025-12-08','0000-00-00',3723,0,3825,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 12:40:39','','0000-00-00 00:00:00',0),(6558,0,0,5522,'2526','H','O',6082,'',0,'2025-12-08','0000-00-00',676,0,705,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 12:40:55','','0000-00-00 00:00:00',0),(6559,0,0,5441,'2526','H','O',6083,'',0,'2025-12-08','0000-00-00',3672,0,3776,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 12:42:14','','0000-00-00 00:00:00',0),(6560,0,0,5524,'2526','H','O',6084,'',0,'2025-12-08','0000-00-00',3724,0,3826,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 12:42:52','','0000-00-00 00:00:00',0),(6561,0,0,5486,'2526','H','O',6085,'',0,'2025-12-08','0000-00-00',3702,0,3805,0,'D06','',0,4800.00,0.00,0.00,4800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 12:48:23','','0000-00-00 00:00:00',0),(6562,0,0,4977,'2526','H','I',227,'',0,'2025-12-08','0000-00-00',0,238,3510,0,'D27','',0,58300.00,0.00,0.00,58300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-58300,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(6563,0,0,5518,'2526','H','O',6086,'',0,'2025-12-08','0000-00-00',3720,0,3721,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 13:01:15','','0000-00-00 00:00:00',0),(6564,0,0,5525,'2526','H','O',6087,'',0,'2025-12-08','0000-00-00',3018,0,3098,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','56399','','scan',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 13:04:54','','0000-00-00 00:00:00',0),(6565,0,0,5482,'2526','H','O',6088,'',0,'2025-12-08','0000-00-00',3699,0,3802,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','44694','','scan',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 13:06:12','','0000-00-00 00:00:00',0),(6566,0,0,5528,'2526','H','O',6089,'',0,'2025-12-08','0000-00-00',3725,0,3828,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 6092','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 13:08:37','manshi','2025-12-08 13:21:28',0),(6567,0,0,5529,'2526','H','O',6090,'',0,'2025-12-08','0000-00-00',3726,0,3829,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 13:18:05','','0000-00-00 00:00:00',0),(6568,0,0,5530,'2526','H','O',6091,'',0,'2025-12-08','0000-00-00',3727,0,3830,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 13:19:44','','0000-00-00 00:00:00',0),(6569,0,0,5528,'2526','H','O',6092,'',0,'2025-12-08','0000-00-00',3725,0,3828,0,'D14','',0,-800.00,0.00,0.00,-800.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-800.00,0,0,'2025-12-08','Y','N','N','','N',0.00,'','Y','FOC','','HO 6089','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 13:21:28','manshi','2025-12-08 13:21:49',0),(6570,0,0,5337,'2526','H','D',251,'',0,'2025-12-08','0000-00-00',0,252,3719,0,'D02','',0,44000.00,0.00,0.00,44000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',29000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-08 13:23:55','riya','2025-12-08 13:48:40',0),(6571,0,0,5483,'2526','H','O',6093,'',0,'2025-12-08','0000-00-00',3700,0,3803,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 13:29:58','','0000-00-00 00:00:00',0),(6572,0,0,5531,'2526','H','O',6094,'',0,'2025-12-08','0000-00-00',3728,0,3831,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 13:32:48','','0000-00-00 00:00:00',0),(6573,0,0,5532,'2526','H','O',6095,'',0,'2025-12-08','0000-00-00',3729,0,3832,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 13:33:50','','0000-00-00 00:00:00',0),(6574,0,0,5442,'2526','H','O',6096,'',0,'2025-12-08','0000-00-00',3673,0,3777,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','boi','','96547','','scan  ',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 13:44:26','','0000-00-00 00:00:00',0),(6575,0,0,5337,'2526','H','I',228,'',0,'2025-12-08','0000-00-00',0,252,3719,0,'D02','',0,44000.00,0.00,0.00,44000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-44000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(6576,0,0,5524,'2526','H','O',6097,'',0,'2025-12-08','0000-00-00',3724,0,3826,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 14:18:02','','0000-00-00 00:00:00',0),(6577,0,0,5533,'2526','H','O',6098,'',0,'2025-12-08','0000-00-00',3730,0,3833,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 14:29:33','','0000-00-00 00:00:00',0),(6578,0,0,5534,'2526','H','O',6099,'',0,'2025-12-08','0000-00-00',3731,0,3834,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-08 15:59:49','','0000-00-00 00:00:00',0),(6579,0,0,5535,'2526','H','O',6100,'',0,'2025-12-08','0000-00-00',2575,0,2636,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 16:37:32','','0000-00-00 00:00:00',0),(6580,0,0,5531,'2526','H','O',6101,'',0,'2025-12-08','0000-00-00',3728,0,3831,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 16:47:42','','0000-00-00 00:00:00',0),(6581,0,0,5537,'2526','H','O',6102,'',0,'2025-12-08','0000-00-00',2189,0,2246,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-08 16:48:54','','0000-00-00 00:00:00',0),(6582,0,0,5538,'2526','H','O',6103,'',0,'2025-12-08','0000-00-00',3732,0,3835,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 16:54:52','','0000-00-00 00:00:00',0),(6583,0,0,5539,'2526','H','O',6104,'',0,'2025-12-08','0000-00-00',3733,0,3836,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 16:57:11','','0000-00-00 00:00:00',0),(6584,0,0,5540,'2526','H','O',6105,'',0,'2025-12-08','0000-00-00',3734,0,3837,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 17:00:12','','0000-00-00 00:00:00',0),(6585,0,0,5541,'2526','H','O',6106,'',0,'2025-12-08','0000-00-00',3735,0,3838,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 17:03:53','','0000-00-00 00:00:00',0),(6586,0,0,5543,'2526','H','O',6107,'',0,'2025-12-08','0000-00-00',3737,0,3840,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-08 17:05:44','','0000-00-00 00:00:00',0),(6587,0,0,5544,'2526','H','O',6108,'',0,'2025-12-08','0000-00-00',3738,0,3841,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','25100','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 17:08:14','','0000-00-00 00:00:00',0),(6588,0,0,5542,'2526','H','O',6109,'',0,'2025-12-08','0000-00-00',3736,0,3839,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','25100','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 17:08:39','','0000-00-00 00:00:00',0),(6589,0,0,5545,'2526','H','O',6110,'',0,'2025-12-08','0000-00-00',3739,0,3842,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 17:10:11','','0000-00-00 00:00:00',0),(6590,0,0,5547,'2526','H','O',6111,'',0,'2025-12-08','0000-00-00',3741,0,3844,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 17:15:33','','0000-00-00 00:00:00',0),(6591,0,0,5546,'2526','H','O',6112,'',0,'2025-12-08','0000-00-00',3740,0,3843,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 17:15:38','','0000-00-00 00:00:00',0),(6592,0,0,5549,'2526','H','O',6113,'',0,'2025-12-08','0000-00-00',3074,0,3160,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 17:20:45','','0000-00-00 00:00:00',0),(6593,0,0,5550,'2526','H','O',6114,'',0,'2025-12-08','0000-00-00',3122,0,3208,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','97262','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-08 17:20:48','','0000-00-00 00:00:00',0),(6594,0,0,5548,'2526','H','O',6115,'',0,'2025-12-08','0000-00-00',3742,0,3845,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','2','axis','25865','25865','','card',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 17:23:29','','0000-00-00 00:00:00',0),(6595,0,0,5551,'2526','H','O',6116,'',0,'2025-12-08','0000-00-00',3743,0,3846,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-08 17:24:02','','0000-00-00 00:00:00',0),(6596,0,0,5540,'2526','H','O',6117,'',0,'2025-12-08','0000-00-00',3734,0,3837,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 17:24:59','','0000-00-00 00:00:00',0),(6597,0,0,5553,'2526','H','O',6118,'',0,'2025-12-08','0000-00-00',3745,0,3848,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-08 17:27:20','','0000-00-00 00:00:00',0),(6598,0,0,5552,'2526','H','O',6119,'',0,'2025-12-08','0000-00-00',3744,0,3847,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-08 17:27:32','','0000-00-00 00:00:00',0),(6599,0,0,5538,'2526','H','O',6120,'',0,'2025-12-08','0000-00-00',3732,0,3835,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 17:28:38','','0000-00-00 00:00:00',0),(6600,0,0,5554,'2526','H','O',6121,'',0,'2025-12-08','0000-00-00',1694,0,1740,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 17:42:49','','0000-00-00 00:00:00',0),(6601,0,0,5555,'2526','H','O',6122,'',0,'2025-12-08','0000-00-00',3746,0,3849,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 17:43:57','','0000-00-00 00:00:00',0),(6602,0,0,5545,'2526','H','O',6123,'',0,'2025-12-08','0000-00-00',3739,0,3842,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 17:44:05','','0000-00-00 00:00:00',0),(6603,0,0,5556,'2526','H','O',6124,'',0,'2025-12-08','0000-00-00',3727,0,3830,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 17:53:09','','0000-00-00 00:00:00',0),(6604,0,0,5557,'2526','H','O',6125,'',0,'2025-12-08','0000-00-00',3747,0,3850,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 17:55:16','','0000-00-00 00:00:00',0),(6605,0,0,5558,'2526','H','O',6126,'',0,'2025-12-08','0000-00-00',3429,0,3526,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 18:07:25','','0000-00-00 00:00:00',0),(6606,0,0,5560,'2526','H','O',6127,'',0,'2025-12-08','0000-00-00',3378,0,3473,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 18:10:44','','0000-00-00 00:00:00',0),(6607,0,0,5561,'2526','H','O',6128,'',0,'2025-12-08','0000-00-00',3748,0,3851,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 18:11:49','','0000-00-00 00:00:00',0),(6608,0,0,5562,'2526','H','O',6129,'',0,'2025-12-08','0000-00-00',3749,0,3852,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','boi','','01277','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 18:13:36','','0000-00-00 00:00:00',0),(6609,0,0,5563,'2526','H','O',6130,'',0,'2025-12-08','0000-00-00',367,0,383,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 18:16:30','','0000-00-00 00:00:00',0),(6610,0,0,5564,'2526','H','O',6131,'',0,'2025-12-08','0000-00-00',3750,0,3853,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 18:21:38','','0000-00-00 00:00:00',0),(6611,0,0,5565,'2526','H','O',6132,'',0,'2025-12-08','0000-00-00',3751,0,3854,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 18:22:29','','0000-00-00 00:00:00',0),(6612,0,0,5566,'2526','H','O',6133,'',0,'2025-12-08','0000-00-00',3752,0,3855,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 18:24:01','','0000-00-00 00:00:00',0),(6613,0,0,5559,'2526','H','O',6134,'',0,'2025-12-08','0000-00-00',3332,0,3424,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','AXIS BANK','','31929','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 18:25:58','','0000-00-00 00:00:00',0),(6614,0,0,5567,'2526','H','O',6135,'',0,'2025-12-08','0000-00-00',2217,0,2273,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 6144','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 18:28:14','manshi','2025-12-08 18:46:06',0),(6615,0,0,5569,'2526','H','O',6136,'',0,'2025-12-08','0000-00-00',3753,0,3856,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 18:29:46','','0000-00-00 00:00:00',0),(6616,0,0,5568,'2526','H','O',6137,'',0,'2025-12-08','0000-00-00',995,0,1027,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','indian bank','','33401','','scan',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 6150','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 18:30:14','reception','2025-12-08 18:55:13',0),(6617,0,0,5570,'2526','H','O',6138,'',0,'2025-12-08','0000-00-00',3754,0,3857,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','AXIS BANK','','32090','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 18:31:00','','0000-00-00 00:00:00',0),(6618,0,0,5571,'2526','H','O',6139,'',0,'2025-12-08','0000-00-00',2995,0,3073,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 18:34:02','','0000-00-00 00:00:00',0),(6619,0,0,5572,'2526','H','O',6140,'',0,'2025-12-08','0000-00-00',943,0,974,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','40740','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 18:39:42','','0000-00-00 00:00:00',0),(6620,0,0,5573,'2526','H','O',6141,'',0,'2025-12-08','0000-00-00',3170,0,3256,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 18:40:53','','0000-00-00 00:00:00',0),(6621,0,0,5574,'2526','H','O',6142,'',0,'2025-12-08','0000-00-00',3755,0,3858,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 18:42:47','','0000-00-00 00:00:00',0),(6622,0,0,5575,'2526','H','O',6143,'',0,'2025-12-08','0000-00-00',3194,0,3280,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 18:43:23','','0000-00-00 00:00:00',0),(6623,0,0,5567,'2526','H','O',6144,'',0,'2025-12-08','0000-00-00',2217,0,2273,0,'D03','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-12-08','Y','N','N','','N',0.00,'','Y','FOC','','HO 6135','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 18:46:06','manshi','2025-12-08 18:46:26',0),(6624,0,0,5578,'2526','H','O',6145,'',0,'2025-12-08','0000-00-00',3758,0,3861,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 18:46:16','','0000-00-00 00:00:00',0),(6625,0,0,5577,'2526','H','O',6146,'',0,'2025-12-08','0000-00-00',3757,0,3860,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','02911','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 18:46:21','','0000-00-00 00:00:00',0),(6626,0,0,5579,'2526','H','O',6147,'',0,'2025-12-08','0000-00-00',1464,0,1505,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 18:52:11','','0000-00-00 00:00:00',0),(6627,0,0,5580,'2526','H','O',6148,'',0,'2025-12-08','0000-00-00',3759,0,3862,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 6157','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 18:52:30','drashti','2025-12-08 19:09:26',0),(6628,0,0,5581,'2526','H','O',6149,'',0,'2025-12-08','0000-00-00',89,0,100,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 18:53:13','','0000-00-00 00:00:00',0),(6629,0,0,5568,'2526','H','O',6150,'',0,'2025-12-08','0000-00-00',995,0,1027,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','indian bank','','33401','','SCAN',-500.00,0,0,'2025-12-08','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 6137','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 18:55:13','reception','2025-12-08 18:55:58',0),(6630,0,0,5582,'2526','H','O',6151,'',0,'2025-12-08','0000-00-00',2711,0,2782,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 18:56:05','','0000-00-00 00:00:00',0),(6631,0,0,5568,'2526','H','O',6152,'',0,'2025-12-08','0000-00-00',995,0,1027,0,'D06','',0,500.00,0.00,0.00,500.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','indian bank','','33401','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 18:56:43','','0000-00-00 00:00:00',0),(6632,0,0,5584,'2526','H','O',6153,'',0,'2025-12-08','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 19:00:12','','0000-00-00 00:00:00',0),(6633,0,0,5559,'2526','H','O',6154,'',0,'2025-12-08','0000-00-00',3332,0,3424,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','AXIS BANK','','43077','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 19:01:59','','0000-00-00 00:00:00',0),(6634,0,0,5586,'2526','H','O',6155,'',0,'2025-12-08','0000-00-00',3329,0,3421,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 19:06:41','','0000-00-00 00:00:00',0),(6635,0,0,5570,'2526','H','O',6156,'',0,'2025-12-08','0000-00-00',3754,0,3857,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','AXIS BANK','','38463','','SCAN',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 19:06:46','','0000-00-00 00:00:00',0),(6636,0,0,5580,'2526','H','O',6157,'',0,'2025-12-08','0000-00-00',3759,0,3862,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-12-08','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6148','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 19:09:26','drashti','2025-12-08 19:10:24',0),(6637,0,0,5587,'2526','H','O',6158,'',0,'2025-12-08','0000-00-00',2607,0,2669,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 19:10:51','','0000-00-00 00:00:00',0),(6638,0,0,5591,'2526','H','O',6159,'',0,'2025-12-08','0000-00-00',3761,0,3865,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','37448','','scan  ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 19:19:23','','0000-00-00 00:00:00',0),(6639,0,0,5594,'2526','H','O',6160,'',0,'2025-12-08','0000-00-00',2261,0,2318,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 19:24:41','','0000-00-00 00:00:00',0),(6640,0,0,5593,'2526','H','O',6161,'',0,'2025-12-08','0000-00-00',3762,0,3866,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','ICICI BANK','','23368','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 19:26:07','','0000-00-00 00:00:00',0),(6641,0,0,5595,'2526','H','O',6162,'',0,'2025-12-08','0000-00-00',3763,0,3867,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 19:29:28','','0000-00-00 00:00:00',0),(6642,0,0,5589,'2526','H','O',6163,'',0,'2025-12-08','0000-00-00',3760,0,3864,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 19:31:55','','0000-00-00 00:00:00',0),(6643,0,0,5596,'2526','H','O',6164,'',0,'2025-12-08','0000-00-00',3525,0,3627,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 19:33:23','','0000-00-00 00:00:00',0),(6644,0,0,5597,'2526','H','O',6165,'',0,'2025-12-08','0000-00-00',3310,0,3399,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-08 19:39:11','','0000-00-00 00:00:00',0),(6645,0,0,5598,'2526','H','O',6166,'',0,'2025-12-08','0000-00-00',2659,0,2729,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 19:46:52','','0000-00-00 00:00:00',0),(6646,0,0,5593,'2526','H','O',6167,'',0,'2025-12-08','0000-00-00',3762,0,3866,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-08 19:53:49','','0000-00-00 00:00:00',0),(6647,0,0,3641,'2526','H','I',229,'',0,'2025-12-08','0000-00-00',0,175,2705,0,'D02','',0,70006.00,0.00,0.00,70006.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','7','other bank','','175','','',70006.00,0,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-08 20:09:45','','0000-00-00 00:00:00',0),(6648,0,0,3114,'2526','H','I',230,'',0,'2025-12-08','0000-00-00',2310,151,2367,0,'D02','',0,75941.00,0.00,0.00,75941.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','1','HDFC ERGO','','151','','',75941.00,0,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-08 20:11:18','','0000-00-00 00:00:00',0),(6649,0,0,1369,'2526','H','I',231,'',0,'2025-12-08','0000-00-00',0,87,1158,0,'D02','',0,101655.00,0.00,0.00,101655.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','1','HDFC ERGO','','87','','',101655.00,0,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(6650,0,0,1443,'2526','H','I',232,'',0,'2025-12-08','0000-00-00',1149,92,1189,0,'D02','',0,125169.00,0.00,0.00,125169.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','1','HDFC ERGO','','92','','',125169.00,0,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(6651,0,0,5600,'2526','H','O',6168,'',0,'2025-12-08','0000-00-00',3764,0,3868,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-08 20:14:36','','0000-00-00 00:00:00',0),(6652,0,0,2395,'2526','H','I',233,'',0,'2025-12-08','0000-00-00',0,129,1920,0,'D03','',0,215075.00,0.00,0.00,215075.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','7','HDFC ERGO','','129','','',215075.00,0,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(6653,0,0,2825,'2526','H','I',234,'',0,'2025-12-08','0000-00-00',0,144,2209,0,'D02','',0,80491.00,0.00,0.00,80491.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','1','HDFC ERGO','','144','','',80491.00,0,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-08 20:17:35','','0000-00-00 00:00:00',0),(6654,0,0,687,'2526','H','I',235,'',0,'2025-12-08','0000-00-00',482,54,508,0,'D02','',0,48913.00,0.00,0.00,48913.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','1','BAJAJ ALLIANZ','','54','','',48913.00,0,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-08 20:19:07','','0000-00-00 00:00:00',0),(6655,0,0,2556,'2526','H','I',236,'',0,'2025-12-08','0000-00-00',0,132,2031,0,'D02','',0,59467.00,0.00,0.00,59467.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','1','BAJAJ ALLIANZ','','132','','',59467.00,0,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-08 20:20:19','','0000-00-00 00:00:00',0),(6656,0,0,5601,'2526','H','O',6169,'',0,'2025-12-08','0000-00-00',3765,0,3869,0,'D03','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-08 20:21:35','','0000-00-00 00:00:00',0),(6657,0,0,5601,'2526','H','O',6170,'',0,'2025-12-08','0000-00-00',3765,0,3869,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-08 20:59:04','','0000-00-00 00:00:00',0),(6658,0,0,5338,'2526','H','D',252,'',0,'2025-12-08','0000-00-00',0,253,3720,0,'D27','',0,21300.00,0.00,0.00,21300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6000,0,'0000-00-00','','N','N','F','N',15300.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-08 20:59:15','vishal','2025-12-08 21:05:18',0),(6659,0,0,5338,'2526','H','I',237,'',0,'2025-12-08','0000-00-00',0,253,3720,0,'D27','',0,21300.00,0.00,0.00,21300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-21300,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(6660,0,0,5602,'2526','H','O',6171,'',0,'2025-12-09','0000-00-00',3766,0,3870,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 08:57:44','','0000-00-00 00:00:00',0),(6661,0,0,5605,'2526','H','O',6172,'',0,'2025-12-09','0000-00-00',351,0,367,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','idfc bank','','34035','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 09:51:21','','0000-00-00 00:00:00',0),(6662,0,0,5606,'2526','H','O',6173,'',0,'2025-12-09','0000-00-00',3718,0,3820,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 09:55:09','','0000-00-00 00:00:00',0),(6663,0,0,5607,'2526','H','O',6174,'',0,'2025-12-09','0000-00-00',3767,0,3720,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 10:04:20','','0000-00-00 00:00:00',0),(6664,0,0,5609,'2526','H','O',6175,'',0,'2025-12-09','0000-00-00',3768,0,3872,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 10:06:20','','0000-00-00 00:00:00',0),(6665,0,0,5608,'2526','H','O',6176,'',0,'2025-12-09','0000-00-00',3720,0,3721,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 10:06:25','','0000-00-00 00:00:00',0),(6666,0,0,5610,'2526','H','O',6177,'',0,'2025-12-09','0000-00-00',3769,0,3873,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 10:10:31','','0000-00-00 00:00:00',0),(6667,0,0,5611,'2526','H','O',6178,'',0,'2025-12-09','0000-00-00',2913,0,2950,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-09 10:10:53','','0000-00-00 00:00:00',0),(6668,0,0,5612,'2526','H','O',6179,'',0,'2025-12-09','0000-00-00',2628,0,2696,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 10:11:28','','0000-00-00 00:00:00',0),(6669,0,0,5175,'2526','H','D',253,'',0,'2025-12-09','0000-00-00',0,247,3636,0,'D02','',0,38650.00,0.00,0.00,38650.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',23650.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-09 10:12:30','vishal','2025-12-09 10:37:12',0),(6670,0,0,5613,'2526','H','O',6180,'',0,'2025-12-09','0000-00-00',3243,0,3325,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 6214','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 10:13:08','reception','2025-12-09 11:40:41',0),(6671,0,0,5614,'2526','H','O',6181,'',0,'2025-12-09','0000-00-00',3770,0,3874,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 10:14:37','','0000-00-00 00:00:00',0),(6672,0,0,5615,'2526','H','O',6182,'',0,'2025-12-09','0000-00-00',3771,0,3875,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 10:17:03','','0000-00-00 00:00:00',0),(6673,0,0,5616,'2526','H','O',6183,'',0,'2025-12-09','0000-00-00',3772,0,3876,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 10:17:22','','0000-00-00 00:00:00',0),(6674,0,0,5617,'2526','H','O',6184,'',0,'2025-12-09','0000-00-00',3773,0,3877,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 10:19:36','','0000-00-00 00:00:00',0),(6675,0,0,5618,'2526','H','O',6185,'',0,'2025-12-09','0000-00-00',865,0,897,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 10:26:42','','0000-00-00 00:00:00',0),(6676,0,0,5619,'2526','H','O',6186,'',0,'2025-12-09','0000-00-00',3774,0,3878,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 10:29:16','','0000-00-00 00:00:00',0),(6677,0,0,5620,'2526','H','O',6187,'',0,'2025-12-09','0000-00-00',3775,0,3879,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 10:35:33','','0000-00-00 00:00:00',0),(6678,0,0,5622,'2526','H','O',6188,'',0,'2025-12-09','0000-00-00',3776,0,3880,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 10:42:06','','0000-00-00 00:00:00',0),(6679,0,0,5623,'2526','H','O',6189,'',0,'2025-12-09','0000-00-00',2392,0,2449,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','47773','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 10:44:20','','0000-00-00 00:00:00',0),(6680,0,0,5625,'2526','H','O',6190,'',0,'2025-12-09','0000-00-00',273,0,289,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 10:47:52','','0000-00-00 00:00:00',0),(6681,0,0,5626,'2526','H','O',6191,'',0,'2025-12-09','0000-00-00',3777,0,3881,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 10:50:59','','0000-00-00 00:00:00',0),(6682,0,0,5627,'2526','H','O',6192,'',0,'2025-12-09','0000-00-00',3778,0,3882,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 10:51:56','','0000-00-00 00:00:00',0),(6683,0,0,5628,'2526','H','O',6193,'',0,'2025-12-09','0000-00-00',3779,0,3883,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-09 10:52:19','','0000-00-00 00:00:00',0),(6684,0,0,5629,'2526','H','O',6194,'',0,'2025-12-09','0000-00-00',3780,0,3884,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 10:53:16','','0000-00-00 00:00:00',0),(6685,0,0,5630,'2526','H','O',6195,'',0,'2025-12-09','0000-00-00',3781,0,3885,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 10:58:04','','0000-00-00 00:00:00',0),(6686,0,0,5631,'2526','H','O',6196,'',0,'2025-12-09','0000-00-00',3782,0,3886,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOI BANK','','41442','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 10:59:29','','0000-00-00 00:00:00',0),(6687,0,0,5632,'2526','H','O',6197,'',0,'2025-12-09','0000-00-00',3783,0,3887,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 10:59:54','','0000-00-00 00:00:00',0),(6688,0,0,5634,'2526','H','O',6198,'',0,'2025-12-09','0000-00-00',3785,0,3889,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 11:01:34','','0000-00-00 00:00:00',0),(6689,0,0,5633,'2526','H','O',6199,'',0,'2025-12-09','0000-00-00',3784,0,3888,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 11:03:14','','0000-00-00 00:00:00',0),(6690,0,0,5605,'2526','H','O',6200,'',0,'2025-12-09','0000-00-00',351,0,367,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','02572','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 11:04:28','','0000-00-00 00:00:00',0),(6691,0,0,5635,'2526','H','O',6201,'',0,'2025-12-09','0000-00-00',489,0,514,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-09 11:04:50','','0000-00-00 00:00:00',0),(6692,0,0,5636,'2526','H','O',6202,'',0,'2025-12-09','0000-00-00',3786,0,3890,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 11:06:24','','0000-00-00 00:00:00',0),(6693,0,0,5637,'2526','H','O',6203,'',0,'2025-12-09','0000-00-00',294,0,310,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 11:06:52','','0000-00-00 00:00:00',0),(6694,0,0,5639,'2526','H','O',6204,'',0,'2025-12-09','0000-00-00',3787,0,3891,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 11:17:55','','0000-00-00 00:00:00',0),(6695,0,0,5640,'2526','H','O',6205,'',0,'2025-12-09','0000-00-00',3788,0,3892,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 6211','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-09 11:18:57','manshi','2025-12-09 11:37:27',0),(6696,0,0,5622,'2526','H','O',6206,'',0,'2025-12-09','0000-00-00',3776,0,3880,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 11:21:35','','0000-00-00 00:00:00',0),(6697,0,0,5641,'2526','H','O',6207,'',0,'2025-12-09','0000-00-00',3789,0,3893,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','89089','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 11:27:09','','0000-00-00 00:00:00',0),(6698,0,0,5642,'2526','H','O',6208,'',0,'2025-12-09','0000-00-00',156,0,169,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 11:28:09','','0000-00-00 00:00:00',0),(6699,0,0,5631,'2526','H','O',6209,'',0,'2025-12-09','0000-00-00',3782,0,3886,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOI','','50178','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 11:30:45','','0000-00-00 00:00:00',0),(6700,0,0,5640,'2526','H','O',6210,'',0,'2025-12-09','0000-00-00',3788,0,3892,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-09 11:36:55','','0000-00-00 00:00:00',0),(6701,0,0,5640,'2526','H','O',6211,'',0,'2025-12-09','0000-00-00',3788,0,3892,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-09','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6205','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-09 11:37:27','manshi','2025-12-09 11:37:45',0),(6702,0,0,5609,'2526','H','O',6212,'',0,'2025-12-09','0000-00-00',3768,0,3872,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 11:38:20','','0000-00-00 00:00:00',0),(6703,0,0,5640,'2526','H','O',6213,'',0,'2025-12-09','0000-00-00',3788,0,3892,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-09 11:38:45','','0000-00-00 00:00:00',0),(6704,0,0,5613,'2526','H','O',6214,'',0,'2025-12-09','0000-00-00',3243,0,3325,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-09','Y','N','N','','N',0.00,'','Y','FOC','','HO 6180','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 11:40:41','reception','2025-12-09 11:41:02',0),(6705,0,0,5643,'2526','H','O',6215,'',0,'2025-12-09','0000-00-00',2645,0,2715,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','50458','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-09 11:44:30','','0000-00-00 00:00:00',0),(6706,0,0,5644,'2526','H','O',6216,'',0,'2025-12-09','0000-00-00',3790,0,3894,0,'D27','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOI BANK','','09947','','scan ',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 11:47:51','','0000-00-00 00:00:00',0),(6707,0,0,5645,'2526','H','O',6217,'',0,'2025-12-09','0000-00-00',3791,0,3895,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 11:48:06','','0000-00-00 00:00:00',0),(6708,0,0,5175,'2526','H','I',238,'',0,'2025-12-09','0000-00-00',0,247,3636,0,'D02','',0,38650.00,0.00,0.00,38650.00,3650.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-35000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(6709,0,0,5639,'2526','H','O',6218,'',0,'2025-12-09','0000-00-00',3787,0,3891,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 11:50:02','','0000-00-00 00:00:00',0),(6710,0,0,5646,'2526','H','O',6219,'',0,'2025-12-09','0000-00-00',3792,0,3896,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 11:51:37','','0000-00-00 00:00:00',0),(6711,0,0,5647,'2526','H','O',6220,'',0,'2025-12-09','0000-00-00',3793,0,3897,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 11:57:08','','0000-00-00 00:00:00',0),(6712,0,0,5648,'2526','H','O',6221,'',0,'2025-12-09','0000-00-00',3794,0,3898,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','53521','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 11:58:17','','0000-00-00 00:00:00',0),(6713,0,0,5649,'2526','H','O',6222,'',0,'2025-12-09','0000-00-00',1168,0,1207,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 11:59:50','','0000-00-00 00:00:00',0),(6714,0,0,5650,'2526','H','O',6223,'',0,'2025-12-09','0000-00-00',3795,0,3899,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 12:00:15','','0000-00-00 00:00:00',0),(6715,0,0,5627,'2526','H','O',6224,'',0,'2025-12-09','0000-00-00',3778,0,3882,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 12:01:35','','0000-00-00 00:00:00',0),(6716,0,0,5651,'2526','H','O',6225,'',0,'2025-12-09','0000-00-00',3174,0,3260,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 12:02:47','','0000-00-00 00:00:00',0),(6717,0,0,5614,'2526','H','O',6226,'',0,'2025-12-09','0000-00-00',3770,0,3874,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 12:07:53','','0000-00-00 00:00:00',0),(6718,0,0,5652,'2526','H','O',6227,'',0,'2025-12-09','0000-00-00',3796,0,3900,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 12:16:39','','0000-00-00 00:00:00',0),(6719,0,0,5624,'2526','H','O',6228,'',0,'2025-12-09','0000-00-00',3593,0,3691,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 12:18:00','','0000-00-00 00:00:00',0),(6720,0,0,5624,'2526','H','O',6229,'',0,'2025-12-09','0000-00-00',3593,0,3691,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 6233','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 12:18:02','janvi','2025-12-09 12:32:14',0),(6721,0,0,5638,'2526','H','O',6230,'',0,'2025-12-09','0000-00-00',2874,0,2201,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 12:21:50','','0000-00-00 00:00:00',0),(6722,0,0,5654,'2526','H','O',6231,'',0,'2025-12-09','0000-00-00',3797,0,3901,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-09 12:29:23','','0000-00-00 00:00:00',0),(6723,0,0,5653,'2526','H','O',6232,'',0,'2025-12-09','0000-00-00',2603,0,2665,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-09 12:29:38','','0000-00-00 00:00:00',0),(6724,0,0,5624,'2526','H','O',6233,'',0,'2025-12-09','0000-00-00',3593,0,3691,0,'D02','',0,-100.00,0.00,0.00,-100.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-100.00,0,0,'2025-12-09','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6229','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 12:32:14','janvi','2025-12-09 12:33:14',0),(6725,0,0,5655,'2526','H','O',6234,'',0,'2025-12-09','0000-00-00',3798,0,3902,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 12:32:46','','0000-00-00 00:00:00',0),(6726,0,0,5617,'2526','H','O',6235,'',0,'2025-12-09','0000-00-00',3773,0,3877,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 12:35:16','','0000-00-00 00:00:00',0),(6727,0,0,5656,'2526','H','O',6236,'',0,'2025-12-09','0000-00-00',2606,0,2668,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 12:46:54','','0000-00-00 00:00:00',0),(6728,0,0,5648,'2526','H','O',6237,'',0,'2025-12-09','0000-00-00',3794,0,3898,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','97502','','scan',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 12:53:44','','0000-00-00 00:00:00',0),(6729,0,0,5658,'2526','H','O',6238,'',0,'2025-12-09','0000-00-00',3799,0,3903,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','32397','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 12:58:51','','0000-00-00 00:00:00',0),(6730,0,0,5611,'2526','H','O',6239,'',0,'2025-12-09','0000-00-00',2913,0,2950,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-09 12:59:57','','0000-00-00 00:00:00',0),(6731,0,0,5604,'2526','H','D',254,'',0,'2025-12-09','0000-00-00',594,264,624,0,'D27','',0,12600.00,0.00,0.00,12600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',12600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-09 13:09:09','','0000-00-00 00:00:00',0),(6732,0,0,5659,'2526','H','O',6240,'',0,'2025-12-09','0000-00-00',3800,0,3904,0,'D14','',0,850.00,0.00,0.00,850.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',850.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-09 13:12:28','','0000-00-00 00:00:00',0),(6733,0,0,5604,'2526','H','I',239,'',0,'2025-12-09','0000-00-00',594,264,624,0,'D27','',0,12600.00,0.00,0.00,12600.00,1500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-11100,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-09 13:19:23','','0000-00-00 00:00:00',0),(6734,0,0,5641,'2526','H','O',6241,'',0,'2025-12-09','0000-00-00',3789,0,3893,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','96826','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 13:49:43','','0000-00-00 00:00:00',0),(6735,0,0,5661,'2526','H','O',6242,'',0,'2025-12-09','0000-00-00',2659,0,2729,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 13:49:50','','0000-00-00 00:00:00',0),(6736,0,0,5443,'2526','H','D',255,'',0,'2025-12-09','0000-00-00',0,257,3778,0,'D02','',0,50000.00,0.00,0.00,50000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-50000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-09 13:52:52','vishal','2025-12-09 13:53:00',0),(6737,0,0,5443,'2526','H','I',240,'',0,'2025-12-09','0000-00-00',0,257,3778,0,'D02','',0,50000.00,0.00,0.00,50000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-50000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-09 13:53:12','','0000-00-00 00:00:00',0),(6738,0,0,5662,'2526','H','O',6243,'',0,'2025-12-09','0000-00-00',3801,0,3905,0,'D27','',0,1900.00,0.00,0.00,1900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','icici bank','','92082','','scan',1900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 14:55:55','','0000-00-00 00:00:00',0),(6739,0,0,5664,'2526','H','O',6244,'',0,'2025-12-09','0000-00-00',1544,0,1587,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 16:36:26','','0000-00-00 00:00:00',0),(6740,0,0,5665,'2526','H','O',6245,'',0,'2025-12-09','0000-00-00',3781,0,3885,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 16:41:53','','0000-00-00 00:00:00',0),(6741,0,0,5666,'2526','H','O',6246,'',0,'2025-12-09','0000-00-00',3121,0,3207,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','CRD','icici','','81427','','card',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 16:50:48','','0000-00-00 00:00:00',0),(6742,0,0,5667,'2526','H','O',6247,'',0,'2025-12-09','0000-00-00',3772,0,3876,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 16:53:20','','0000-00-00 00:00:00',0),(6743,0,0,5669,'2526','H','O',6248,'',0,'2025-12-09','0000-00-00',3792,0,3896,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 17:01:18','','0000-00-00 00:00:00',0),(6744,0,0,5670,'2526','H','O',6249,'',0,'2025-12-09','0000-00-00',3650,0,3753,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 17:03:25','','0000-00-00 00:00:00',0),(6745,0,0,5668,'2526','H','O',6250,'',0,'2025-12-09','0000-00-00',3802,0,3907,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 17:04:09','','0000-00-00 00:00:00',0),(6746,0,0,5671,'2526','H','O',6251,'',0,'2025-12-09','0000-00-00',3803,0,3908,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 17:07:13','','0000-00-00 00:00:00',0),(6747,0,0,5672,'2526','H','O',6252,'',0,'2025-12-09','0000-00-00',3804,0,3909,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','47204','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 17:11:38','','0000-00-00 00:00:00',0),(6748,0,0,5673,'2526','H','O',6253,'',0,'2025-12-09','0000-00-00',2803,0,2872,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 17:12:36','','0000-00-00 00:00:00',0),(6749,0,0,5674,'2526','H','O',6254,'',0,'2025-12-09','0000-00-00',2925,0,3002,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 17:17:15','','0000-00-00 00:00:00',0),(6750,0,0,5668,'2526','H','O',6255,'',0,'2025-12-09','0000-00-00',3802,0,3907,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 17:21:58','','0000-00-00 00:00:00',0),(6751,0,0,5676,'2526','H','O',6256,'',0,'2025-12-09','0000-00-00',3805,0,3910,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 17:26:17','','0000-00-00 00:00:00',0),(6752,0,0,5677,'2526','H','O',6257,'',0,'2025-12-09','0000-00-00',3806,0,3911,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 17:37:22','','0000-00-00 00:00:00',0),(6753,0,0,5679,'2526','H','O',6258,'',0,'2025-12-09','0000-00-00',3807,0,3913,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 17:47:28','','0000-00-00 00:00:00',0),(6754,0,0,5680,'2526','H','O',6259,'',0,'2025-12-09','0000-00-00',3808,0,3914,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 17:51:50','','0000-00-00 00:00:00',0),(6755,0,0,5681,'2526','H','O',6260,'',0,'2025-12-09','0000-00-00',3809,0,3915,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 17:55:39','','0000-00-00 00:00:00',0),(6756,0,0,5682,'2526','H','O',6261,'',0,'2025-12-09','0000-00-00',3324,0,3416,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 17:59:53','','0000-00-00 00:00:00',0),(6757,0,0,5683,'2526','H','O',6262,'',0,'2025-12-09','0000-00-00',1827,0,1873,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 18:00:12','','0000-00-00 00:00:00',0),(6758,0,0,5675,'2526','H','O',6263,'',0,'2025-12-09','0000-00-00',2919,0,2996,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 18:00:32','','0000-00-00 00:00:00',0),(6759,0,0,5684,'2526','H','O',6264,'',0,'2025-12-09','0000-00-00',2101,0,1788,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 18:02:44','','0000-00-00 00:00:00',0),(6760,0,0,5685,'2526','H','O',6265,'',0,'2025-12-09','0000-00-00',3810,0,3916,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 18:04:12','','0000-00-00 00:00:00',0),(6761,0,0,5686,'2526','H','O',6266,'',0,'2025-12-09','0000-00-00',3811,0,3917,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 18:04:42','','0000-00-00 00:00:00',0),(6762,0,0,5687,'2526','H','O',6267,'',0,'2025-12-09','0000-00-00',3812,0,3918,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 18:04:50','','0000-00-00 00:00:00',0),(6763,0,0,5688,'2526','H','O',6268,'',0,'2025-12-09','0000-00-00',3813,0,3919,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 18:05:50','','0000-00-00 00:00:00',0),(6764,0,0,5689,'2526','H','O',6269,'',0,'2025-12-09','0000-00-00',3814,0,3920,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 18:08:04','','0000-00-00 00:00:00',0),(6765,0,0,5691,'2526','H','O',6270,'',0,'2025-12-09','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 18:14:33','','0000-00-00 00:00:00',0),(6766,0,0,5690,'2526','H','O',6271,'',0,'2025-12-09','0000-00-00',3815,0,3921,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 18:14:56','','0000-00-00 00:00:00',0),(6767,0,0,5692,'2526','H','O',6272,'',0,'2025-12-09','0000-00-00',3816,0,3922,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 18:17:55','','0000-00-00 00:00:00',0),(6768,0,0,5694,'2526','H','O',6273,'',0,'2025-12-09','0000-00-00',1676,0,1721,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 18:18:29','','0000-00-00 00:00:00',0),(6769,0,0,5693,'2526','H','O',6274,'',0,'2025-12-09','0000-00-00',3817,0,3923,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','79509','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 18:19:42','','0000-00-00 00:00:00',0),(6770,0,0,5695,'2526','H','O',6275,'',0,'2025-12-09','0000-00-00',3818,0,3924,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','84680','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 18:22:38','','0000-00-00 00:00:00',0),(6771,0,0,5697,'2526','H','O',6276,'',0,'2025-12-09','0000-00-00',3820,0,3925,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 18:25:00','','0000-00-00 00:00:00',0),(6772,0,0,5698,'2526','H','O',6277,'',0,'2025-12-09','0000-00-00',3821,0,3926,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 18:28:33','','0000-00-00 00:00:00',0),(6773,0,0,5699,'2526','H','O',6278,'',0,'2025-12-09','0000-00-00',3822,0,3927,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','69506','','scan                          ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 18:33:53','','0000-00-00 00:00:00',0),(6774,0,0,5700,'2526','H','O',6279,'',0,'2025-12-09','0000-00-00',1257,0,1298,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 18:34:46','','0000-00-00 00:00:00',0),(6775,0,0,5687,'2526','H','O',6280,'',0,'2025-12-09','0000-00-00',3812,0,3918,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 18:38:31','','0000-00-00 00:00:00',0),(6776,0,0,5701,'2526','H','O',6281,'',0,'2025-12-09','0000-00-00',3823,0,3928,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','central bank','','48731','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 18:40:28','','0000-00-00 00:00:00',0),(6777,0,0,5702,'2526','H','O',6282,'',0,'2025-12-09','0000-00-00',890,0,922,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 18:41:12','','0000-00-00 00:00:00',0),(6778,0,0,5688,'2526','H','O',6283,'',0,'2025-12-09','0000-00-00',3813,0,3919,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 18:44:15','','0000-00-00 00:00:00',0),(6779,0,0,5703,'2526','H','O',6284,'',0,'2025-12-09','0000-00-00',3824,0,3929,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 18:47:53','','0000-00-00 00:00:00',0),(6780,0,0,5696,'2526','H','O',6285,'',0,'2025-12-09','0000-00-00',3819,0,3349,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 18:48:42','','0000-00-00 00:00:00',0),(6781,0,0,5704,'2526','H','O',6286,'',0,'2025-12-09','0000-00-00',3825,0,3930,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 18:48:58','','0000-00-00 00:00:00',0),(6782,0,0,5705,'2526','H','O',6287,'',0,'2025-12-09','0000-00-00',1312,0,1351,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 18:50:49','','0000-00-00 00:00:00',0),(6783,0,0,5682,'2526','H','O',6288,'',0,'2025-12-09','0000-00-00',3324,0,3416,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 18:51:29','','0000-00-00 00:00:00',0),(6784,0,0,5706,'2526','H','O',6289,'',0,'2025-12-09','0000-00-00',1000,0,1032,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 18:55:18','','0000-00-00 00:00:00',0),(6785,0,0,5707,'2526','H','O',6290,'',0,'2025-12-09','0000-00-00',3305,0,3394,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 18:56:16','','0000-00-00 00:00:00',0),(6786,0,0,5708,'2526','H','O',6291,'',0,'2025-12-09','0000-00-00',3319,0,3411,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 18:57:31','','0000-00-00 00:00:00',0),(6787,0,0,5710,'2526','H','O',6292,'',0,'2025-12-09','0000-00-00',3826,0,3931,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','20024','','scan ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 19:01:53','','0000-00-00 00:00:00',0),(6788,0,0,5685,'2526','H','O',6293,'',0,'2025-12-09','0000-00-00',3810,0,3916,0,'D06','',0,4900.00,0.00,0.00,4900.00,900.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','79802','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 19:06:07','','0000-00-00 00:00:00',0),(6789,0,0,5712,'2526','H','O',6294,'',0,'2025-12-09','0000-00-00',3278,0,3367,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 19:11:49','','0000-00-00 00:00:00',0),(6790,0,0,5713,'2526','H','O',6295,'',0,'2025-12-09','0000-00-00',3828,0,3933,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 19:13:04','','0000-00-00 00:00:00',0),(6791,0,0,5714,'2526','H','O',6296,'',0,'2025-12-09','0000-00-00',3310,0,3399,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 19:14:08','','0000-00-00 00:00:00',0),(6792,0,0,5702,'2526','H','O',6297,'',0,'2025-12-09','0000-00-00',890,0,922,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-09 19:14:36','','0000-00-00 00:00:00',0),(6793,0,0,5716,'2526','H','O',6298,'',0,'2025-12-09','0000-00-00',3829,0,3934,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-09 19:16:06','','0000-00-00 00:00:00',0),(6794,0,0,5717,'2526','H','O',6299,'',0,'2025-12-09','0000-00-00',3830,0,3935,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 19:27:17','','0000-00-00 00:00:00',0),(6795,0,0,5709,'2526','H','O',6300,'',0,'2025-12-09','0000-00-00',1976,0,2024,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 19:30:50','','0000-00-00 00:00:00',0),(6796,0,0,5718,'2526','H','O',6301,'',0,'2025-12-09','0000-00-00',3660,0,3598,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-09 19:32:54','','0000-00-00 00:00:00',0),(6797,0,0,5719,'2526','H','O',6302,'',0,'2025-12-09','0000-00-00',3831,0,3936,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','  hdfc','','10613','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-09 19:42:58','','0000-00-00 00:00:00',0),(6798,0,0,5720,'2526','H','O',6303,'',0,'2025-12-09','0000-00-00',3832,0,3937,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','14299','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-09 19:53:49','','0000-00-00 00:00:00',0),(6799,0,0,5711,'2526','H','O',6304,'',0,'2025-12-09','0000-00-00',3827,0,3932,0,'D06','',0,700.00,0.00,0.00,700.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 20:00:16','','0000-00-00 00:00:00',0),(6800,0,0,5713,'2526','H','O',6305,'',0,'2025-12-09','0000-00-00',3828,0,3933,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 20:05:21','','0000-00-00 00:00:00',0),(6801,0,0,5721,'2526','H','O',6306,'',0,'2025-12-09','0000-00-00',3767,0,3720,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-09 20:16:59','','0000-00-00 00:00:00',0),(6802,0,0,5724,'2526','H','O',6307,'',0,'2025-12-10','0000-00-00',3001,0,3080,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 08:51:43','','0000-00-00 00:00:00',0),(6803,0,0,5725,'2526','H','O',6308,'',0,'2025-12-10','0000-00-00',3831,0,3936,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-10 08:53:48','','0000-00-00 00:00:00',0),(6804,0,0,5726,'2526','H','O',6309,'',0,'2025-12-10','0000-00-00',3833,0,3940,0,'D02','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-10 08:55:44','','0000-00-00 00:00:00',0),(6805,0,0,5727,'2526','H','O',6310,'',0,'2025-12-10','0000-00-00',3832,0,3937,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 6312','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-10 08:56:53','urvashi','2025-12-10 09:00:28',0),(6806,0,0,5726,'2526','H','O',6311,'',0,'2025-12-10','0000-00-00',3833,0,3940,0,'D02','',0,450.00,0.00,0.00,450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BANK','','25901','','scan',450.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-10 08:59:08','','0000-00-00 00:00:00',0),(6807,0,0,5727,'2526','H','O',6312,'',0,'2025-12-10','0000-00-00',3832,0,3937,0,'D02','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','BOB BANK','','14427','','',-500.00,0,0,'2025-12-10','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6310','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-10 09:00:28','urvashi','2025-12-10 09:01:05',0),(6808,0,0,5727,'2526','H','O',6313,'',0,'2025-12-10','0000-00-00',3832,0,3937,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB BANK','','14427','','scan',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 6315','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-10 09:01:56','janvi','2025-12-10 09:46:38',0),(6809,0,0,5725,'2526','H','O',6314,'',0,'2025-12-10','0000-00-00',3831,0,3936,0,'D27','',0,450.00,0.00,0.00,450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',450.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 09:09:21','','0000-00-00 00:00:00',0),(6810,0,0,5727,'2526','H','O',6315,'',0,'2025-12-10','0000-00-00',3832,0,3937,0,'D02','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','bob','','14427','','SCAN                          ',-500.00,0,0,'2025-12-10','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6313','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 09:46:38','janvi','2025-12-10 09:47:05',0),(6811,0,0,5729,'2526','H','O',6316,'',0,'2025-12-10','0000-00-00',2022,0,2075,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-10 09:47:15','','0000-00-00 00:00:00',0),(6812,0,0,5730,'2526','H','O',6317,'',0,'2025-12-10','0000-00-00',3834,0,3942,0,'D27','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','52663','','scan ',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-10 09:53:38','','0000-00-00 00:00:00',0),(6813,0,0,5731,'2526','H','O',6318,'',0,'2025-12-10','0000-00-00',1622,0,1667,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 09:57:02','','0000-00-00 00:00:00',0),(6814,0,0,5733,'2526','H','O',6319,'',0,'2025-12-10','0000-00-00',3835,0,3944,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','57970','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-10 10:11:35','','0000-00-00 00:00:00',0),(6815,0,0,5735,'2526','H','O',6320,'',0,'2025-12-10','0000-00-00',3836,0,3945,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-10 10:11:49','','0000-00-00 00:00:00',0),(6816,0,0,5736,'2526','H','O',6321,'',0,'2025-12-10','0000-00-00',3198,0,3284,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 10:11:56','','0000-00-00 00:00:00',0),(6817,0,0,5738,'2526','H','O',6322,'',0,'2025-12-10','0000-00-00',3837,0,3946,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 10:19:33','','0000-00-00 00:00:00',0),(6818,0,0,5739,'2526','H','O',6323,'',0,'2025-12-10','0000-00-00',3720,0,3721,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 10:22:45','','0000-00-00 00:00:00',0),(6819,0,0,5740,'2526','H','O',6324,'',0,'2025-12-10','0000-00-00',2176,0,2231,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 10:23:06','','0000-00-00 00:00:00',0),(6820,0,0,5741,'2526','H','O',6325,'',0,'2025-12-10','0000-00-00',3838,0,3947,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 10:24:47','','0000-00-00 00:00:00',0),(6821,0,0,5742,'2526','H','O',6326,'',0,'2025-12-10','0000-00-00',3839,0,3948,0,'D27','',0,1350.00,0.00,0.00,1350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','51566','','scan     ',1350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 10:30:08','','0000-00-00 00:00:00',0),(6822,0,0,5743,'2526','H','O',6327,'',0,'2025-12-10','0000-00-00',3840,0,3949,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 10:30:22','','0000-00-00 00:00:00',0),(6823,0,0,5746,'2526','H','O',6328,'',0,'2025-12-10','0000-00-00',3841,0,3950,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-10 10:33:35','','0000-00-00 00:00:00',0),(6824,0,0,5747,'2526','H','O',6329,'',0,'2025-12-10','0000-00-00',862,0,894,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 10:34:06','','0000-00-00 00:00:00',0),(6825,0,0,5745,'2526','H','O',6330,'',0,'2025-12-10','0000-00-00',860,0,892,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 10:34:27','','0000-00-00 00:00:00',0),(6826,0,0,5749,'2526','H','O',6331,'',0,'2025-12-10','0000-00-00',3842,0,3951,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 10:43:11','','0000-00-00 00:00:00',0),(6827,0,0,5750,'2526','H','O',6332,'',0,'2025-12-10','0000-00-00',3249,0,3331,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-10 10:46:22','','0000-00-00 00:00:00',0),(6828,0,0,5734,'2526','H','O',6333,'',0,'2025-12-10','0000-00-00',3208,0,3295,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 10:47:03','','0000-00-00 00:00:00',0),(6829,0,0,5737,'2526','H','O',6334,'',0,'2025-12-10','0000-00-00',3605,0,3705,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 10:50:16','','0000-00-00 00:00:00',0),(6830,0,0,5751,'2526','H','O',6335,'',0,'2025-12-10','0000-00-00',3843,0,3952,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','77873','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 10:53:16','','0000-00-00 00:00:00',0),(6831,0,0,5752,'2526','H','O',6336,'',0,'2025-12-10','0000-00-00',3844,0,3953,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 10:59:14','','0000-00-00 00:00:00',0),(6832,0,0,5729,'2526','H','O',6337,'',0,'2025-12-10','0000-00-00',2022,0,2075,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 11:02:16','','0000-00-00 00:00:00',0),(6833,0,0,5754,'2526','H','O',6338,'',0,'2025-12-10','0000-00-00',3845,0,3954,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-10 11:03:33','','0000-00-00 00:00:00',0),(6834,0,0,5755,'2526','H','O',6339,'',0,'2025-12-10','0000-00-00',2061,0,2115,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 11:07:05','','0000-00-00 00:00:00',0),(6835,0,0,5756,'2526','H','O',6340,'',0,'2025-12-10','0000-00-00',3846,0,3955,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-10 11:07:22','','0000-00-00 00:00:00',0),(6836,0,0,5757,'2526','H','O',6341,'',0,'2025-12-10','0000-00-00',3847,0,3956,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 11:08:27','','0000-00-00 00:00:00',0),(6837,0,0,5758,'2526','H','O',6342,'',0,'2025-12-10','0000-00-00',3308,0,3397,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 11:09:47','','0000-00-00 00:00:00',0),(6838,0,0,5759,'2526','H','O',6343,'',0,'2025-12-10','0000-00-00',520,0,546,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 11:11:47','','0000-00-00 00:00:00',0),(6839,0,0,5760,'2526','H','O',6344,'',0,'2025-12-10','0000-00-00',3848,0,3957,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-10 11:12:53','','0000-00-00 00:00:00',0),(6840,0,0,5727,'2526','H','O',6345,'',0,'2025-12-10','0000-00-00',3832,0,3937,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','14427','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 11:14:03','','0000-00-00 00:00:00',0),(6841,0,0,5761,'2526','H','O',6346,'',0,'2025-12-10','0000-00-00',3849,0,3958,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 11:14:42','','0000-00-00 00:00:00',0),(6842,0,0,5762,'2526','H','O',6347,'',0,'2025-12-10','0000-00-00',3305,0,3394,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-10 11:17:02','','0000-00-00 00:00:00',0),(6843,0,0,5763,'2526','H','O',6348,'',0,'2025-12-10','0000-00-00',2738,0,2808,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 11:25:51','','0000-00-00 00:00:00',0),(6844,0,0,5764,'2526','H','O',6349,'',0,'2025-12-10','0000-00-00',3850,0,3959,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','rajkot nagrik','','48010','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-10 11:29:11','','0000-00-00 00:00:00',0),(6845,0,0,5749,'2526','H','O',6350,'',0,'2025-12-10','0000-00-00',3842,0,3951,0,'D06','',0,5700.00,0.00,0.00,5700.00,1200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 11:30:17','','0000-00-00 00:00:00',0),(6846,0,0,5765,'2526','H','O',6351,'',0,'2025-12-10','0000-00-00',3851,0,3960,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','39235','','scan  ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 11:31:06','','0000-00-00 00:00:00',0),(6847,0,0,5766,'2526','H','O',6352,'',0,'2025-12-10','0000-00-00',2294,0,2351,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 11:32:23','','0000-00-00 00:00:00',0),(6848,0,0,5767,'2526','H','O',6353,'',0,'2025-12-10','0000-00-00',1261,0,1302,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','IDFC BANK','','33346','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-10 11:34:27','','0000-00-00 00:00:00',0),(6849,0,0,5768,'2526','H','O',6354,'',0,'2025-12-10','0000-00-00',3852,0,3961,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 11:37:16','','0000-00-00 00:00:00',0),(6850,0,0,5769,'2526','H','O',6355,'',0,'2025-12-10','0000-00-00',3853,0,3962,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 11:37:45','','0000-00-00 00:00:00',0),(6851,0,0,5770,'2526','H','O',6356,'',0,'2025-12-10','0000-00-00',1386,0,1427,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 11:40:03','','0000-00-00 00:00:00',0),(6852,0,0,5771,'2526','H','O',6357,'',0,'2025-12-10','0000-00-00',3854,0,3963,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-10 11:40:43','','0000-00-00 00:00:00',0),(6853,0,0,5772,'2526','H','O',6358,'',0,'2025-12-10','0000-00-00',3855,0,3964,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','41188','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 11:43:40','','0000-00-00 00:00:00',0),(6854,0,0,5773,'2526','H','O',6359,'',0,'2025-12-10','0000-00-00',3856,0,3965,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 11:46:39','','0000-00-00 00:00:00',0),(6855,0,0,5775,'2526','H','O',6360,'',0,'2025-12-10','0000-00-00',3858,0,3967,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 11:51:52','','0000-00-00 00:00:00',0),(6856,0,0,5316,'2526','H','D',256,'',0,'2025-12-10','0000-00-00',0,251,3706,0,'D02','',0,63100.00,0.00,0.00,63100.00,3000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-40000,0,'0000-00-00','','N','N','F','N',20100.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-10 12:00:18','riya','2025-12-10 13:32:39',0),(6857,0,0,5776,'2526','H','O',6361,'',0,'2025-12-10','0000-00-00',3859,0,3968,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','71069','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-10 12:02:16','','0000-00-00 00:00:00',0),(6858,0,0,5760,'2526','H','O',6362,'',0,'2025-12-10','0000-00-00',3848,0,3957,0,'D06','',0,6900.00,0.00,0.00,6900.00,1300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 12:02:46','','0000-00-00 00:00:00',0),(6859,0,0,5777,'2526','H','O',6363,'',0,'2025-12-10','0000-00-00',3265,0,3353,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-10 12:02:51','','0000-00-00 00:00:00',0),(6860,0,0,5778,'2526','H','O',6364,'',0,'2025-12-10','0000-00-00',3860,0,3969,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-10 12:07:55','','0000-00-00 00:00:00',0),(6861,0,0,5779,'2526','H','O',6365,'',0,'2025-12-10','0000-00-00',3861,0,3343,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 12:07:59','','0000-00-00 00:00:00',0),(6862,0,0,5780,'2526','H','O',6366,'',0,'2025-12-10','0000-00-00',1226,0,1267,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 12:08:50','','0000-00-00 00:00:00',0),(6863,0,0,5781,'2526','H','O',6367,'',0,'2025-12-10','0000-00-00',3862,0,3970,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-10 12:09:49','','0000-00-00 00:00:00',0),(6864,0,0,5782,'2526','H','O',6368,'',0,'2025-12-10','0000-00-00',3516,0,3617,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-10 12:12:34','','0000-00-00 00:00:00',0),(6865,0,0,5783,'2526','H','O',6369,'',0,'2025-12-10','0000-00-00',193,0,206,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 12:17:14','','0000-00-00 00:00:00',0),(6866,0,0,5784,'2526','H','O',6370,'',0,'2025-12-10','0000-00-00',3863,0,3971,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-10 12:21:30','','0000-00-00 00:00:00',0),(6867,0,0,5768,'2526','H','O',6371,'',0,'2025-12-10','0000-00-00',3852,0,3961,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','46922','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 12:24:53','','0000-00-00 00:00:00',0),(6868,0,0,5786,'2526','H','O',6372,'',0,'2025-12-10','0000-00-00',3865,0,3973,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','42617','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-10 12:25:09','','0000-00-00 00:00:00',0),(6869,0,0,5785,'2526','H','O',6373,'',0,'2025-12-10','0000-00-00',3864,0,3972,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','42617','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 12:25:19','','0000-00-00 00:00:00',0),(6870,0,0,5787,'2526','H','O',6374,'',0,'2025-12-10','0000-00-00',3866,0,3974,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-10 12:27:27','','0000-00-00 00:00:00',0),(6871,0,0,5788,'2526','H','O',6375,'',0,'2025-12-10','0000-00-00',3867,0,3975,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 12:27:30','','0000-00-00 00:00:00',0),(6872,0,0,5789,'2526','H','O',6376,'',0,'2025-12-10','0000-00-00',2240,0,2296,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 12:28:49','','0000-00-00 00:00:00',0),(6873,0,0,5790,'2526','H','O',6377,'',0,'2025-12-10','0000-00-00',3868,0,3976,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-10 12:29:48','','0000-00-00 00:00:00',0),(6874,0,0,5773,'2526','H','O',6378,'',0,'2025-12-10','0000-00-00',3856,0,3965,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 12:32:22','','0000-00-00 00:00:00',0),(6875,0,0,5757,'2526','H','O',6379,'',0,'2025-12-10','0000-00-00',3847,0,3956,0,'D06','',0,4900.00,0.00,0.00,4900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 12:32:33','','0000-00-00 00:00:00',0),(6876,0,0,5790,'2526','H','O',6380,'',0,'2025-12-10','0000-00-00',3868,0,3976,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-10 12:50:44','','0000-00-00 00:00:00',0),(6877,0,0,5788,'2526','H','O',6381,'',0,'2025-12-10','0000-00-00',3867,0,3975,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','12880','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 13:02:19','','0000-00-00 00:00:00',0),(6878,0,0,5792,'2526','H','O',6382,'',0,'2025-12-10','0000-00-00',2740,0,2810,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 13:06:19','','0000-00-00 00:00:00',0),(6879,0,0,5660,'2526','H','D',257,'',0,'2025-12-10','0000-00-00',3790,265,3894,0,'D27','',0,15400.00,0.00,0.00,15400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',400.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-10 13:11:52','riya','2025-12-10 13:15:59',0),(6880,0,0,5660,'2526','H','I',241,'',0,'2025-12-10','0000-00-00',3790,265,3894,0,'D27','',0,15400.00,0.00,0.00,15400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15400,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-10 13:19:44','','0000-00-00 00:00:00',0),(6881,0,0,5772,'2526','H','O',6383,'',0,'2025-12-10','0000-00-00',3855,0,3964,0,'D06','',0,6900.00,0.00,0.00,6900.00,1300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','31999','','scan',5600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 13:22:27','','0000-00-00 00:00:00',0),(6882,0,0,5793,'2526','H','O',6384,'',0,'2025-12-10','0000-00-00',3869,0,3978,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 13:29:20','','0000-00-00 00:00:00',0),(6883,0,0,5316,'2526','H','I',242,'',0,'2025-12-10','0000-00-00',0,251,3706,0,'D02','',0,63100.00,0.00,0.00,63100.00,3000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-60100,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(6884,0,0,5795,'2526','H','O',6385,'',0,'2025-12-10','0000-00-00',939,0,970,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 13:44:56','','0000-00-00 00:00:00',0),(6885,0,0,5796,'2526','H','O',6386,'',0,'2025-12-10','0000-00-00',3871,0,3980,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 14:29:29','','0000-00-00 00:00:00',0),(6886,0,0,5797,'2526','H','O',6387,'',0,'2025-12-10','0000-00-00',3872,0,3981,0,'D27','',0,1350.00,0.00,0.00,1350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','fedral bank','','37394','','scan',1350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-10 14:55:09','','0000-00-00 00:00:00',0),(6887,0,0,5798,'2526','H','O',6388,'',0,'2025-12-10','0000-00-00',3873,0,3982,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-10 15:01:04','','0000-00-00 00:00:00',0),(6888,0,0,5800,'2526','H','O',6389,'',0,'2025-12-10','0000-00-00',524,0,550,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 16:13:51','','0000-00-00 00:00:00',0),(6889,0,0,5801,'2526','H','O',6390,'',0,'2025-12-10','0000-00-00',3875,0,3984,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-10 16:14:18','','0000-00-00 00:00:00',0),(6890,0,0,5802,'2526','H','O',6391,'',0,'2025-12-10','0000-00-00',1613,0,1658,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 16:24:56','','0000-00-00 00:00:00',0),(6891,0,0,5799,'2526','H','O',6392,'',0,'2025-12-10','0000-00-00',3874,0,3983,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 16:32:01','','0000-00-00 00:00:00',0),(6892,0,0,5806,'2526','H','O',6393,'',0,'2025-12-10','0000-00-00',3876,0,3985,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','13044','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 16:54:36','','0000-00-00 00:00:00',0),(6893,0,0,5807,'2526','H','O',6394,'',0,'2025-12-10','0000-00-00',1133,0,1173,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 16:56:01','','0000-00-00 00:00:00',0),(6894,0,0,5808,'2526','H','O',6395,'',0,'2025-12-10','0000-00-00',3877,0,3986,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-10 16:58:15','','0000-00-00 00:00:00',0),(6895,0,0,5809,'2526','H','O',6396,'',0,'2025-12-10','0000-00-00',3878,0,3987,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 16:58:36','','0000-00-00 00:00:00',0),(6896,0,0,5810,'2526','H','O',6397,'',0,'2025-12-10','0000-00-00',3053,0,3134,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-10 17:03:46','','0000-00-00 00:00:00',0),(6897,0,0,5812,'2526','H','O',6398,'',0,'2025-12-10','0000-00-00',3880,0,3989,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 17:09:55','','0000-00-00 00:00:00',0),(6898,0,0,5813,'2526','H','O',6399,'',0,'2025-12-10','0000-00-00',3881,0,3990,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-10 17:16:46','','0000-00-00 00:00:00',0),(6899,0,0,5814,'2526','H','O',6400,'',0,'2025-12-10','0000-00-00',3210,0,3297,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 17:18:28','','0000-00-00 00:00:00',0),(6900,0,0,5816,'2526','H','O',6401,'',0,'2025-12-10','0000-00-00',3883,0,3992,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','84022','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 17:34:38','','0000-00-00 00:00:00',0),(6901,0,0,5817,'2526','H','O',6402,'',0,'2025-12-10','0000-00-00',3884,0,3993,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 17:36:17','','0000-00-00 00:00:00',0),(6902,0,0,5801,'2526','H','O',6403,'',0,'2025-12-10','0000-00-00',3875,0,3984,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 17:42:51','','0000-00-00 00:00:00',0),(6903,0,0,5723,'2526','H','D',258,'',0,'2025-12-10','0000-00-00',0,269,3939,0,'D27','',0,16200.00,0.00,0.00,16200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',1200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-10 17:47:11','','0000-00-00 00:00:00',0),(6904,0,0,5723,'2526','H','I',243,'',0,'2025-12-10','0000-00-00',0,269,3939,0,'D27','',0,16200.00,0.00,0.00,16200.00,3000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-1800.00,-15000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-10 17:49:52','','0000-00-00 00:00:00',0),(6905,0,0,5818,'2526','H','O',6404,'',0,'2025-12-10','0000-00-00',1587,0,1631,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','icici bank','','84868','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-10 17:51:51','','0000-00-00 00:00:00',0),(6906,0,0,5819,'2526','H','O',6405,'',0,'2025-12-10','0000-00-00',3885,0,3994,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','INDIAN BANK','','08629','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-10 17:55:19','','0000-00-00 00:00:00',0),(6907,0,0,5799,'2526','H','O',6406,'',0,'2025-12-10','0000-00-00',3874,0,3983,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','65750','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 17:55:56','','0000-00-00 00:00:00',0),(6908,0,0,5820,'2526','H','O',6407,'',0,'2025-12-10','0000-00-00',3886,0,3995,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 17:58:12','','0000-00-00 00:00:00',0),(6909,0,0,5821,'2526','H','O',6408,'',0,'2025-12-10','0000-00-00',3887,0,3996,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 18:00:32','','0000-00-00 00:00:00',0),(6910,0,0,5822,'2526','H','O',6409,'',0,'2025-12-10','0000-00-00',994,0,1026,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 18:00:55','','0000-00-00 00:00:00',0),(6911,0,0,5824,'2526','H','O',6410,'',0,'2025-12-10','0000-00-00',1864,0,1909,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 18:01:52','','0000-00-00 00:00:00',0),(6912,0,0,5825,'2526','H','O',6411,'',0,'2025-12-10','0000-00-00',3889,0,3998,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 18:03:11','','0000-00-00 00:00:00',0),(6913,0,0,5823,'2526','H','O',6412,'',0,'2025-12-10','0000-00-00',3888,0,3997,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','11479','','scan ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-10 18:04:24','','0000-00-00 00:00:00',0),(6914,0,0,5826,'2526','H','O',6413,'',0,'2025-12-10','0000-00-00',2444,0,2501,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 18:16:45','','0000-00-00 00:00:00',0),(6915,0,0,5817,'2526','H','O',6414,'',0,'2025-12-10','0000-00-00',3884,0,3993,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 18:24:24','','0000-00-00 00:00:00',0),(6916,0,0,5820,'2526','H','O',6415,'',0,'2025-12-10','0000-00-00',3886,0,3995,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','27734','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 18:26:46','','0000-00-00 00:00:00',0),(6917,0,0,5827,'2526','H','O',6416,'',0,'2025-12-10','0000-00-00',2484,0,2542,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 18:29:21','','0000-00-00 00:00:00',0),(6918,0,0,5828,'2526','H','O',6417,'',0,'2025-12-10','0000-00-00',2279,0,2336,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','REFUND BY DR AR','HO 6423','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-10 18:32:47','priyanshi','2025-12-10 19:10:12',0),(6919,0,0,5830,'2526','H','O',6418,'',0,'2025-12-10','0000-00-00',3891,0,4000,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 18:35:35','','0000-00-00 00:00:00',0),(6920,0,0,5832,'2526','H','O',6419,'',0,'2025-12-10','0000-00-00',3892,0,4002,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-10 18:39:53','','0000-00-00 00:00:00',0),(6921,0,0,5833,'2526','H','O',6420,'',0,'2025-12-10','0000-00-00',1796,0,1841,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 18:47:35','','0000-00-00 00:00:00',0),(6922,0,0,5835,'2526','H','O',6421,'',0,'2025-12-10','0000-00-00',1531,0,1572,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-10 18:54:15','','0000-00-00 00:00:00',0),(6923,0,0,5836,'2526','H','O',6422,'',0,'2025-12-10','0000-00-00',3894,0,4004,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 18:58:12','','0000-00-00 00:00:00',0),(6924,0,0,5828,'2526','H','O',6423,'',0,'2025-12-10','0000-00-00',2279,0,2336,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-12-10','Y','N','N','','N',0.00,'','Y','REFUND BY DR AR','','HO 6417','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-10 19:10:12','priyanshi','2025-12-10 19:10:28',0),(6925,0,0,5837,'2526','H','O',6424,'',0,'2025-12-10','0000-00-00',3895,0,4005,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-10 19:16:42','','0000-00-00 00:00:00',0),(6926,0,0,5840,'2526','H','O',6425,'',0,'2025-12-10','0000-00-00',3538,0,3640,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 19:23:40','','0000-00-00 00:00:00',0),(6927,0,0,5838,'2526','H','O',6426,'',0,'2025-12-10','0000-00-00',2636,0,2706,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-10 19:28:39','','0000-00-00 00:00:00',0),(6928,0,0,5842,'2526','H','O',6427,'',0,'2025-12-10','0000-00-00',3897,0,3543,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 19:31:47','','0000-00-00 00:00:00',0),(6929,0,0,5843,'2526','H','O',6428,'',0,'2025-12-10','0000-00-00',3898,0,3440,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-10 19:32:04','','0000-00-00 00:00:00',0),(6930,0,0,5844,'2526','H','O',6429,'',0,'2025-12-10','0000-00-00',3899,0,4007,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','jivan comm','','75505','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-10 19:35:11','','0000-00-00 00:00:00',0),(6931,0,0,5845,'2526','H','O',6430,'',0,'2025-12-10','0000-00-00',3900,0,4008,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-10 19:40:15','','0000-00-00 00:00:00',0),(6932,0,0,5846,'2526','H','O',6431,'',0,'2025-12-10','0000-00-00',3901,0,4009,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-10 20:11:42','','0000-00-00 00:00:00',0),(6933,0,0,5847,'2526','H','O',6432,'',0,'2025-12-10','0000-00-00',3310,0,3399,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-10 20:17:23','','0000-00-00 00:00:00',0),(6934,0,0,5732,'2526','H','D',259,'',0,'2025-12-10','0000-00-00',0,271,3943,0,'D02','',0,4200.00,0.00,0.00,4200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-8000,0,'0000-00-00','','N','N','F','N',-3800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-10 20:25:09','vishal','2025-12-10 20:35:50',0),(6935,0,0,5728,'2526','H','D',260,'',0,'2025-12-10','0000-00-00',0,270,3941,0,'D02','',0,2200.00,0.00,0.00,2200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10000,0,'0000-00-00','','N','N','F','N',-7800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-10 20:29:05','','0000-00-00 00:00:00',0),(6936,0,0,5728,'2526','H','I',244,'',0,'2025-12-10','0000-00-00',0,270,3941,0,'D02','',0,10000.00,0.00,0.00,10000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10000,0,'0000-00-00','','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-10 20:33:52','','0000-00-00 00:00:00',0),(6937,0,0,5732,'2526','H','I',245,'',0,'2025-12-10','0000-00-00',0,271,3943,0,'D02','',0,10000.00,0.00,0.00,10000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-10 20:38:54','','0000-00-00 00:00:00',0),(6938,0,0,5846,'2526','H','O',6433,'',0,'2025-12-10','0000-00-00',3901,0,4009,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-10 20:45:01','','0000-00-00 00:00:00',0),(6939,0,0,5426,'2526','H','D',261,'',0,'2025-12-10','0000-00-00',0,256,3765,0,'D27','',0,29200.00,0.00,0.00,29200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-26000,0,'0000-00-00','','N','N','F','N',3200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-10 20:55:20','vishal','2025-12-10 20:59:42',0),(6940,0,0,5603,'2526','H','D',262,'',0,'2025-12-10','0000-00-00',0,263,3871,0,'D27','',0,18100.00,0.00,0.00,18100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10000,0,'0000-00-00','','N','N','F','N',8100.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-10 21:05:03','','0000-00-00 00:00:00',0),(6941,0,0,5603,'2526','H','I',246,'',0,'2025-12-10','0000-00-00',0,263,3871,0,'D27','',0,18100.00,0.00,0.00,18100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-18100,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-10 21:25:32','','0000-00-00 00:00:00',0),(6942,0,0,5426,'2526','H','I',247,'',0,'2025-12-10','0000-00-00',0,256,3765,0,'D27','',0,29200.00,0.00,0.00,29200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-29200,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(6943,0,0,5849,'2526','H','O',6434,'',0,'2025-12-11','0000-00-00',3902,0,4011,0,'D02','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','93080','','scan',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 08:42:23','','0000-00-00 00:00:00',0),(6944,0,0,5850,'2526','H','O',6435,'',0,'2025-12-11','0000-00-00',3903,0,4012,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 10:02:02','','0000-00-00 00:00:00',0),(6945,0,0,5851,'2526','H','O',6436,'',0,'2025-12-11','0000-00-00',3904,0,4013,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 10:19:54','','0000-00-00 00:00:00',0),(6946,0,0,5853,'2526','H','O',6437,'',0,'2025-12-11','0000-00-00',3905,0,4014,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 10:23:01','','0000-00-00 00:00:00',0),(6947,0,0,5852,'2526','H','O',6438,'',0,'2025-12-11','0000-00-00',1118,0,1159,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','99165','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 10:23:15','','0000-00-00 00:00:00',0),(6948,0,0,5854,'2526','H','O',6439,'',0,'2025-12-11','0000-00-00',3906,0,4015,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 10:33:39','','0000-00-00 00:00:00',0),(6949,0,0,5856,'2526','H','O',6440,'',0,'2025-12-11','0000-00-00',3907,0,4016,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 10:36:57','','0000-00-00 00:00:00',0),(6950,0,0,5857,'2526','H','O',6441,'',0,'2025-12-11','0000-00-00',3908,0,4017,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 10:45:31','','0000-00-00 00:00:00',0),(6951,0,0,5858,'2526','H','O',6442,'',0,'2025-12-11','0000-00-00',1784,0,1829,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','85539','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 10:48:36','','0000-00-00 00:00:00',0),(6952,0,0,5859,'2526','H','O',6443,'',0,'2025-12-11','0000-00-00',2220,0,2276,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-11 10:52:09','','0000-00-00 00:00:00',0),(6953,0,0,5860,'2526','H','O',6444,'',0,'2025-12-11','0000-00-00',3909,0,4018,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 10:53:58','','0000-00-00 00:00:00',0),(6954,0,0,5861,'2526','H','O',6445,'',0,'2025-12-11','0000-00-00',3910,0,4019,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 10:57:58','','0000-00-00 00:00:00',0),(6955,0,0,5862,'2526','H','O',6446,'',0,'2025-12-11','0000-00-00',2639,0,2709,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 10:58:59','','0000-00-00 00:00:00',0),(6956,0,0,5863,'2526','H','O',6447,'',0,'2025-12-11','0000-00-00',2782,0,2851,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 10:59:31','','0000-00-00 00:00:00',0),(6957,0,0,5864,'2526','H','O',6448,'',0,'2025-12-11','0000-00-00',3231,0,2893,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 11:02:02','','0000-00-00 00:00:00',0),(6958,0,0,5865,'2526','H','O',6449,'',0,'2025-12-11','0000-00-00',2218,0,2274,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','588517','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 11:03:52','','0000-00-00 00:00:00',0),(6959,0,0,5854,'2526','H','O',6450,'',0,'2025-12-11','0000-00-00',3906,0,4015,0,'D06','',0,4400.00,0.00,0.00,4400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 11:05:59','','0000-00-00 00:00:00',0),(6960,0,0,5866,'2526','H','O',6451,'',0,'2025-12-11','0000-00-00',3500,0,3602,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 11:08:52','','0000-00-00 00:00:00',0),(6961,0,0,5859,'2526','H','O',6452,'',0,'2025-12-11','0000-00-00',2220,0,2276,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-11 11:19:09','','0000-00-00 00:00:00',0),(6962,0,0,5868,'2526','H','O',6453,'',0,'2025-12-11','0000-00-00',3382,0,3477,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 11:19:13','','0000-00-00 00:00:00',0),(6963,0,0,5867,'2526','H','O',6454,'',0,'2025-12-11','0000-00-00',3911,0,4020,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-11 11:19:39','','0000-00-00 00:00:00',0),(6964,0,0,5870,'2526','H','O',6455,'',0,'2025-12-11','0000-00-00',1530,0,1571,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 11:21:44','','0000-00-00 00:00:00',0),(6965,0,0,5869,'2526','H','O',6456,'',0,'2025-12-11','0000-00-00',3912,0,4021,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 11:22:04','','0000-00-00 00:00:00',0),(6966,0,0,5855,'2526','H','O',6457,'',0,'2025-12-11','0000-00-00',3693,0,3798,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 11:23:41','','0000-00-00 00:00:00',0),(6967,0,0,5871,'2526','H','O',6458,'',0,'2025-12-11','0000-00-00',3913,0,3583,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 11:23:53','','0000-00-00 00:00:00',0),(6968,0,0,5872,'2526','H','O',6459,'',0,'2025-12-11','0000-00-00',2118,0,1763,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 11:25:00','','0000-00-00 00:00:00',0),(6969,0,0,5856,'2526','H','O',6460,'',0,'2025-12-11','0000-00-00',3907,0,4016,0,'D06','',0,5700.00,0.00,0.00,5700.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 11:25:07','','0000-00-00 00:00:00',0),(6970,0,0,5873,'2526','H','O',6461,'',0,'2025-12-11','0000-00-00',3914,0,4022,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 11:26:33','','0000-00-00 00:00:00',0),(6971,0,0,5874,'2526','H','O',6462,'',0,'2025-12-11','0000-00-00',3915,0,4023,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 11:28:01','','0000-00-00 00:00:00',0),(6972,0,0,5875,'2526','H','O',6463,'',0,'2025-12-11','0000-00-00',3306,0,3395,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 11:33:27','','0000-00-00 00:00:00',0),(6973,0,0,5864,'2526','H','O',6464,'',0,'2025-12-11','0000-00-00',3231,0,2893,0,'D27','',0,350.00,0.00,0.00,350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK BANK','','61473','','scan ',350.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 11:41:45','','0000-00-00 00:00:00',0),(6974,0,0,5878,'2526','H','O',6465,'',0,'2025-12-11','0000-00-00',3917,0,4025,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 11:42:18','','0000-00-00 00:00:00',0),(6975,0,0,5879,'2526','H','O',6466,'',0,'2025-12-11','0000-00-00',3918,0,4026,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 11:43:59','','0000-00-00 00:00:00',0),(6976,0,0,5880,'2526','H','O',6467,'',0,'2025-12-11','0000-00-00',629,0,659,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 11:44:23','','0000-00-00 00:00:00',0),(6977,0,0,5877,'2526','H','O',6468,'',0,'2025-12-11','0000-00-00',185,0,198,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 11:45:32','','0000-00-00 00:00:00',0),(6978,0,0,5882,'2526','H','O',6469,'',0,'2025-12-11','0000-00-00',3920,0,4028,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 11:50:04','','0000-00-00 00:00:00',0),(6979,0,0,5881,'2526','H','O',6470,'',0,'2025-12-11','0000-00-00',3919,0,4027,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-11 11:50:29','','0000-00-00 00:00:00',0),(6980,0,0,5883,'2526','H','O',6471,'',0,'2025-12-11','0000-00-00',2738,0,2808,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 11:55:08','','0000-00-00 00:00:00',0),(6981,0,0,5884,'2526','H','O',6472,'',0,'2025-12-11','0000-00-00',3037,0,3118,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','19166','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 12:03:36','','0000-00-00 00:00:00',0),(6982,0,0,5885,'2526','H','O',6473,'',0,'2025-12-11','0000-00-00',3921,0,4029,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 12:05:12','','0000-00-00 00:00:00',0),(6983,0,0,5886,'2526','H','O',6474,'',0,'2025-12-11','0000-00-00',3922,0,4030,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 12:08:21','','0000-00-00 00:00:00',0),(6984,0,0,5887,'2526','H','O',6475,'',0,'2025-12-11','0000-00-00',3923,0,4031,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 12:09:47','','0000-00-00 00:00:00',0),(6985,0,0,5888,'2526','H','O',6476,'',0,'2025-12-11','0000-00-00',3924,0,4032,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 12:17:40','','0000-00-00 00:00:00',0),(6986,0,0,5889,'2526','H','O',6477,'',0,'2025-12-11','0000-00-00',3605,0,3705,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 12:17:41','','0000-00-00 00:00:00',0),(6987,0,0,5890,'2526','H','O',6478,'',0,'2025-12-11','0000-00-00',3925,0,4033,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','09618','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 12:20:27','','0000-00-00 00:00:00',0),(6988,0,0,5891,'2526','H','O',6479,'',0,'2025-12-11','0000-00-00',3926,0,4034,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 12:25:10','','0000-00-00 00:00:00',0),(6989,0,0,5892,'2526','H','O',6480,'',0,'2025-12-11','0000-00-00',3927,0,4035,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 12:30:20','','0000-00-00 00:00:00',0),(6990,0,0,5893,'2526','H','O',6481,'',0,'2025-12-11','0000-00-00',399,0,421,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 12:34:49','','0000-00-00 00:00:00',0),(6991,0,0,5894,'2526','H','O',6482,'',0,'2025-12-11','0000-00-00',3069,0,3155,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 12:36:06','','0000-00-00 00:00:00',0),(6992,0,0,5895,'2526','H','O',6483,'',0,'2025-12-11','0000-00-00',3928,0,4036,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','97967','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 12:37:30','','0000-00-00 00:00:00',0),(6993,0,0,5896,'2526','H','O',6484,'',0,'2025-12-11','0000-00-00',3305,0,3394,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 12:39:42','','0000-00-00 00:00:00',0),(6994,0,0,5897,'2526','H','O',6485,'',0,'2025-12-11','0000-00-00',3929,0,4037,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 12:44:09','','0000-00-00 00:00:00',0),(6995,0,0,5899,'2526','H','O',6486,'',0,'2025-12-11','0000-00-00',1369,0,1409,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 12:45:15','','0000-00-00 00:00:00',0),(6996,0,0,5898,'2526','H','O',6487,'',0,'2025-12-11','0000-00-00',3673,0,3777,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bank of india','','59353','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-11 12:45:35','','0000-00-00 00:00:00',0),(6997,0,0,5900,'2526','H','O',6488,'',0,'2025-12-11','0000-00-00',3930,0,4038,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 12:46:22','','0000-00-00 00:00:00',0),(6998,0,0,5901,'2526','H','O',6489,'',0,'2025-12-11','0000-00-00',3931,0,4039,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','94499','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 12:48:36','','0000-00-00 00:00:00',0),(6999,0,0,5902,'2526','H','O',6490,'',0,'2025-12-11','0000-00-00',3932,0,4040,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 12:55:12','','0000-00-00 00:00:00',0),(7000,0,0,5722,'2526','H','D',263,'',0,'2025-12-11','0000-00-00',0,268,3938,0,'D27','',0,10800.00,0.00,0.00,10800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6000,0,'0000-00-00','','N','N','F','N',4800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-11 12:57:24','','0000-00-00 00:00:00',0),(7001,0,0,5897,'2526','H','O',6491,'',0,'2025-12-11','0000-00-00',3929,0,4037,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 12:57:42','','0000-00-00 00:00:00',0),(7002,0,0,5722,'2526','H','I',248,'',0,'2025-12-11','0000-00-00',0,268,3938,0,'D27','',0,10800.00,0.00,0.00,10800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10800,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-11 12:59:46','','0000-00-00 00:00:00',0),(7003,0,0,5588,'2526','H','D',264,'',0,'2025-12-11','0000-00-00',3730,262,3833,0,'D02','',0,80800.00,0.00,0.00,80800.00,2000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-60000,0,'0000-00-00','','N','N','F','N',18800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-11 13:02:31','riya','2025-12-11 13:03:11',0),(7004,0,0,5588,'2526','H','I',249,'',0,'2025-12-11','0000-00-00',3730,262,3833,0,'D02','',0,80800.00,0.00,0.00,80800.00,2000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-78800,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(7005,0,0,5903,'2526','H','O',6492,'',0,'2025-12-11','0000-00-00',1235,0,1276,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 13:10:59','','0000-00-00 00:00:00',0),(7006,0,0,5904,'2526','H','O',6493,'',0,'2025-12-11','0000-00-00',3933,0,4041,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 13:12:13','','0000-00-00 00:00:00',0),(7007,0,0,5895,'2526','H','O',6494,'',0,'2025-12-11','0000-00-00',3928,0,4036,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','00304','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 13:13:08','','0000-00-00 00:00:00',0),(7008,0,0,5445,'2526','H','D',265,'',0,'2025-12-11','0000-00-00',0,258,3780,0,'D27','',0,34750.00,0.00,0.00,34750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-27000,0,'0000-00-00','','N','N','F','N',7750.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-11 13:14:27','riya','2025-12-11 13:29:50',0),(7009,0,0,5905,'2526','H','O',6495,'',0,'2025-12-11','0000-00-00',3934,0,4042,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 13:20:31','','0000-00-00 00:00:00',0),(7010,0,0,5425,'2526','H','D',266,'',0,'2025-12-11','0000-00-00',0,255,3764,0,'D27','',0,43600.00,0.00,0.00,43600.00,10600.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-35000,0,'0000-00-00','','N','N','F','N',-2000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-11 13:23:35','riya','2025-12-11 14:13:21',0),(7011,0,0,5445,'2526','H','I',250,'',0,'2025-12-11','0000-00-00',0,258,3780,0,'D27','',0,34750.00,0.00,0.00,34750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-34750,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(7012,0,0,5874,'2526','H','O',6496,'',0,'2025-12-11','0000-00-00',3915,0,4023,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','09036','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 13:35:27','','0000-00-00 00:00:00',0),(7013,0,0,5307,'2526','H','D',267,'',0,'2025-12-11','0000-00-00',0,250,3700,0,'D27','',0,70150.00,0.00,0.00,70150.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-54000,0,'0000-00-00','','N','N','F','N',16150.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-11 13:40:38','riya','2025-12-11 15:02:26',0),(7014,0,0,5901,'2526','H','O',6497,'',0,'2025-12-11','0000-00-00',3931,0,4039,0,'D06','',0,4400.00,0.00,0.00,4400.00,900.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','30310','','scan',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 13:47:26','','0000-00-00 00:00:00',0),(7015,0,0,4688,'2526','H','D',268,'',0,'2025-12-11','0000-00-00',0,218,3345,0,'D27','',0,91600.00,0.00,0.00,91600.00,1600.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-86000,0,'0000-00-00','','N','N','F','N',4000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-11 13:56:07','riya','2025-12-11 14:25:38',0),(7016,0,0,5425,'2526','H','I',251,'',0,'2025-12-11','0000-00-00',0,255,3764,0,'D27','',0,43600.00,0.00,0.00,43600.00,10600.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-2000.00,-35000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(7017,0,0,5906,'2526','H','O',6498,'',0,'2025-12-11','0000-00-00',3935,0,4043,0,'D03','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 14:18:05','','0000-00-00 00:00:00',0),(7018,0,0,4688,'2526','H','I',252,'',0,'2025-12-11','0000-00-00',0,218,3345,0,'D27','',0,91600.00,0.00,0.00,91600.00,1600.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-90000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(7019,0,0,5307,'2526','H','I',253,'',0,'2025-12-11','0000-00-00',0,250,3700,0,'D27','',0,70150.00,0.00,0.00,70150.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-70150,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(7020,0,0,5907,'2526','H','O',6499,'',0,'2025-12-11','0000-00-00',3936,0,4044,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 16:03:09','','0000-00-00 00:00:00',0),(7022,0,0,5791,'2526','H','D',270,'',0,'2025-12-11','0000-00-00',0,272,3977,0,'D27','',0,14300.00,0.00,0.00,14300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-13000,0,'0000-00-00','','N','N','F','N',1300.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-11 16:10:54','riya','2025-12-11 16:13:35',0),(7023,0,0,5791,'2526','H','I',254,'',0,'2025-12-11','0000-00-00',0,272,3977,0,'D27','',0,14300.00,0.00,0.00,14300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-14300,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-11 16:18:41','','0000-00-00 00:00:00',0),(7024,0,0,5908,'2526','H','O',6500,'',0,'2025-12-11','0000-00-00',3937,0,4045,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 16:32:25','','0000-00-00 00:00:00',0),(7025,0,0,5909,'2526','H','O',6501,'',0,'2025-12-11','0000-00-00',3938,0,4046,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 16:33:53','','0000-00-00 00:00:00',0),(7026,0,0,5910,'2526','H','O',6502,'',0,'2025-12-11','0000-00-00',1286,0,1325,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 16:38:13','','0000-00-00 00:00:00',0),(7027,0,0,5911,'2526','H','O',6503,'',0,'2025-12-11','0000-00-00',3939,0,4047,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 16:39:36','','0000-00-00 00:00:00',0),(7028,0,0,5912,'2526','H','O',6504,'',0,'2025-12-11','0000-00-00',3891,0,4000,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 16:44:19','','0000-00-00 00:00:00',0),(7029,0,0,5913,'2526','H','O',6505,'',0,'2025-12-11','0000-00-00',3940,0,4048,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 16:45:13','','0000-00-00 00:00:00',0),(7030,0,0,5914,'2526','H','O',6506,'',0,'2025-12-11','0000-00-00',3923,0,4031,0,'D06','',0,5500.00,0.00,0.00,5500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 16:58:39','','0000-00-00 00:00:00',0),(7031,0,0,5915,'2526','H','O',6507,'',0,'2025-12-11','0000-00-00',2670,0,2739,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 17:00:26','','0000-00-00 00:00:00',0),(7032,0,0,5907,'2526','H','O',6508,'',0,'2025-12-11','0000-00-00',3936,0,4044,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 17:04:27','','0000-00-00 00:00:00',0),(7033,0,0,5917,'2526','H','O',6509,'',0,'2025-12-11','0000-00-00',3347,0,3442,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 17:20:13','','0000-00-00 00:00:00',0),(7034,0,0,5918,'2526','H','O',6510,'',0,'2025-12-11','0000-00-00',3942,0,4050,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-11 17:25:08','','0000-00-00 00:00:00',0),(7035,0,0,5913,'2526','H','O',6511,'',0,'2025-12-11','0000-00-00',3940,0,4048,0,'D06','',0,5500.00,0.00,0.00,5500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 17:27:31','','0000-00-00 00:00:00',0),(7036,0,0,5919,'2526','H','O',6512,'',0,'2025-12-11','0000-00-00',3317,0,3409,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 17:29:36','','0000-00-00 00:00:00',0),(7037,0,0,5920,'2526','H','O',6513,'',0,'2025-12-11','0000-00-00',3943,0,4051,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-11 17:38:54','','0000-00-00 00:00:00',0),(7038,0,0,5909,'2526','H','O',6514,'',0,'2025-12-11','0000-00-00',3938,0,4046,0,'D06','',0,5200.00,0.00,0.00,5200.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','46344','','scan',4900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 17:39:53','','0000-00-00 00:00:00',0),(7039,0,0,5921,'2526','H','O',6515,'',0,'2025-12-11','0000-00-00',3310,0,3399,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 17:46:11','','0000-00-00 00:00:00',0),(7040,0,0,5922,'2526','H','O',6516,'',0,'2025-12-11','0000-00-00',3944,0,4052,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 18:03:32','','0000-00-00 00:00:00',0),(7041,0,0,5923,'2526','H','O',6517,'',0,'2025-12-11','0000-00-00',1549,0,1592,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 18:05:50','','0000-00-00 00:00:00',0),(7042,0,0,5916,'2526','H','O',6518,'',0,'2025-12-11','0000-00-00',3941,0,4049,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','18881','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-11 18:10:21','','0000-00-00 00:00:00',0),(7043,0,0,5924,'2526','H','O',6519,'',0,'2025-12-11','0000-00-00',68,0,79,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','35586','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 18:10:51','','0000-00-00 00:00:00',0),(7044,0,0,4777,'2526','H','D',271,'',0,'2025-12-11','0000-00-00',0,225,3400,0,'D27','',0,134550.00,0.00,0.00,134550.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-5056,0,'0000-00-00','','N','N','D','N',129494.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(7045,0,0,5925,'2526','H','O',6520,'',0,'2025-12-11','0000-00-00',3945,0,4053,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 18:15:34','','0000-00-00 00:00:00',0),(7046,0,0,5927,'2526','H','O',6521,'',0,'2025-12-11','0000-00-00',3947,0,4055,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 18:23:31','','0000-00-00 00:00:00',0),(7047,0,0,5928,'2526','H','O',6522,'',0,'2025-12-11','0000-00-00',1883,0,1930,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 18:24:24','','0000-00-00 00:00:00',0),(7048,0,0,5929,'2526','H','O',6523,'',0,'2025-12-11','0000-00-00',3178,0,3264,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-11 18:27:33','','0000-00-00 00:00:00',0),(7049,0,0,5931,'2526','H','O',6524,'',0,'2025-12-11','0000-00-00',3949,0,4057,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 6547','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 18:29:07','drashti','2025-12-11 19:36:51',0),(7050,0,0,5930,'2526','H','O',6525,'',0,'2025-12-11','0000-00-00',3948,0,4056,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 18:29:26','','0000-00-00 00:00:00',0),(7051,0,0,5932,'2526','H','O',6526,'',0,'2025-12-11','0000-00-00',3950,0,4058,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 18:30:25','','0000-00-00 00:00:00',0),(7052,0,0,5916,'2526','H','O',6527,'',0,'2025-12-11','0000-00-00',3941,0,4049,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','27378','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-11 18:34:05','','0000-00-00 00:00:00',0),(7053,0,0,5935,'2526','H','O',6528,'',0,'2025-12-11','0000-00-00',1658,0,1703,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 18:35:37','','0000-00-00 00:00:00',0),(7054,0,0,5934,'2526','H','O',6529,'',0,'2025-12-11','0000-00-00',3951,0,4059,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 18:36:01','','0000-00-00 00:00:00',0),(7055,0,0,5933,'2526','H','O',6530,'',0,'2025-12-11','0000-00-00',2812,0,2881,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 18:36:25','','0000-00-00 00:00:00',0),(7056,0,0,5926,'2526','H','O',6531,'',0,'2025-12-11','0000-00-00',3946,0,4054,0,'D03','',0,400.00,0.00,0.00,400.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-11 18:36:59','','0000-00-00 00:00:00',0),(7057,0,0,5936,'2526','H','O',6532,'',0,'2025-12-11','0000-00-00',3952,0,4060,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 18:41:56','','0000-00-00 00:00:00',0),(7058,0,0,5937,'2526','H','O',6533,'',0,'2025-12-11','0000-00-00',3953,0,4061,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 18:44:04','','0000-00-00 00:00:00',0),(7059,0,0,5939,'2526','H','O',6534,'',0,'2025-12-11','0000-00-00',3954,0,4062,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 18:47:08','','0000-00-00 00:00:00',0),(7060,0,0,5929,'2526','H','O',6535,'',0,'2025-12-11','0000-00-00',3178,0,3264,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-11 18:49:12','','0000-00-00 00:00:00',0),(7061,0,0,5940,'2526','H','O',6536,'',0,'2025-12-11','0000-00-00',3637,0,3740,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','REFUNDED','HO 6549','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 18:50:09','drashti','2025-12-11 19:42:44',0),(7062,0,0,5941,'2526','H','O',6537,'',0,'2025-12-11','0000-00-00',1975,0,2023,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 6550','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 18:51:21','reception','2025-12-11 19:44:44',0),(7063,0,0,5942,'2526','H','O',6538,'',0,'2025-12-11','0000-00-00',3955,0,4063,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 18:54:12','','0000-00-00 00:00:00',0),(7064,0,0,5943,'2526','H','O',6539,'',0,'2025-12-11','0000-00-00',3956,0,4064,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 19:00:07','','0000-00-00 00:00:00',0),(7065,0,0,5944,'2526','H','O',6540,'',0,'2025-12-11','0000-00-00',3957,0,4065,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','35616','','scan ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 19:09:26','','0000-00-00 00:00:00',0),(7066,0,0,5945,'2526','H','O',6541,'',0,'2025-12-11','0000-00-00',3958,0,4066,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 19:13:41','','0000-00-00 00:00:00',0),(7067,0,0,5876,'2526','H','O',6542,'',0,'2025-12-11','0000-00-00',3916,0,4024,0,'D27','',0,750.00,0.00,0.00,750.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',550.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 19:15:00','','0000-00-00 00:00:00',0),(7068,0,0,5946,'2526','H','O',6543,'',0,'2025-12-11','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 19:19:39','','0000-00-00 00:00:00',0),(7069,0,0,5939,'2526','H','O',6544,'',0,'2025-12-11','0000-00-00',3954,0,4062,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 19:19:44','','0000-00-00 00:00:00',0),(7070,0,0,5947,'2526','H','O',6545,'',0,'2025-12-11','0000-00-00',622,0,652,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 19:22:21','','0000-00-00 00:00:00',0),(7071,0,0,5935,'2526','H','O',6546,'',0,'2025-12-11','0000-00-00',1658,0,1703,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 19:25:19','','0000-00-00 00:00:00',0),(7072,0,0,5931,'2526','H','O',6547,'',0,'2025-12-11','0000-00-00',3949,0,4057,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-12-11','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6524','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 19:36:51','drashti','2025-12-11 19:37:08',0),(7073,0,0,5931,'2526','H','O',6548,'',0,'2025-12-11','0000-00-00',3949,0,4057,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 19:38:19','','0000-00-00 00:00:00',0),(7074,0,0,5940,'2526','H','O',6549,'',0,'2025-12-11','0000-00-00',3637,0,3740,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-12-11','Y','N','N','','N',0.00,'','Y','REFUNDED','','HO 6536','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-11 19:42:44','drashti','2025-12-11 19:43:06',0),(7075,0,0,5941,'2526','H','O',6550,'',0,'2025-12-11','0000-00-00',1975,0,2023,0,'D06','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-12-11','Y','N','N','','N',0.00,'','Y','FOC','','HO 6537','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-11 19:44:44','reception','2025-12-11 19:45:03',0),(7076,0,0,5948,'2526','H','O',6551,'',0,'2025-12-11','0000-00-00',3959,0,3943,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 20:06:01','','0000-00-00 00:00:00',0),(7077,0,0,5947,'2526','H','O',6552,'',0,'2025-12-11','0000-00-00',622,0,652,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-11 20:21:43','','0000-00-00 00:00:00',0),(7078,0,0,5949,'2526','H','O',6553,'',0,'2025-12-12','0000-00-00',3960,0,4067,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 6616','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 08:37:07','drashti','2025-12-12 13:03:16',0),(7079,0,0,5950,'2526','H','O',6554,'',0,'2025-12-12','0000-00-00',3961,0,4068,0,'D27','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 08:40:31','','0000-00-00 00:00:00',0),(7080,0,0,5951,'2526','H','O',6555,'',0,'2025-12-12','0000-00-00',3413,0,3509,0,'D06','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 08:54:40','','0000-00-00 00:00:00',0),(7081,0,0,5953,'2526','H','O',6556,'',0,'2025-12-12','0000-00-00',905,0,937,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 09:31:43','','0000-00-00 00:00:00',0),(7082,0,0,5954,'2526','H','O',6557,'',0,'2025-12-12','0000-00-00',3298,0,3388,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 09:48:07','','0000-00-00 00:00:00',0),(7083,0,0,5955,'2526','H','O',6558,'',0,'2025-12-12','0000-00-00',3343,0,3436,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 09:49:33','','0000-00-00 00:00:00',0),(7084,0,0,5956,'2526','H','O',6559,'',0,'2025-12-12','0000-00-00',3437,0,3534,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 10:15:53','','0000-00-00 00:00:00',0),(7085,0,0,5957,'2526','H','O',6560,'',0,'2025-12-12','0000-00-00',3962,0,4069,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 10:25:16','','0000-00-00 00:00:00',0),(7086,0,0,5959,'2526','H','O',6561,'',0,'2025-12-12','0000-00-00',3963,0,4070,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 10:33:41','','0000-00-00 00:00:00',0),(7087,0,0,5960,'2526','H','O',6562,'',0,'2025-12-12','0000-00-00',3964,0,4071,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 10:33:49','','0000-00-00 00:00:00',0),(7088,0,0,5958,'2526','H','O',6563,'',0,'2025-12-12','0000-00-00',3590,0,3447,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 10:46:25','','0000-00-00 00:00:00',0),(7089,0,0,5963,'2526','H','O',6564,'',0,'2025-12-12','0000-00-00',3280,0,3369,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','N','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 10:48:12','','0000-00-00 00:00:00',0),(7090,0,0,5963,'2526','H','O',6565,'',0,'2025-12-12','0000-00-00',3280,0,3369,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 6612','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 10:48:19','reception','2025-12-12 12:33:05',0),(7091,0,0,5964,'2526','H','O',6566,'',0,'2025-12-12','0000-00-00',3965,0,4072,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 10:52:00','','0000-00-00 00:00:00',0),(7092,0,0,5965,'2526','H','O',6567,'',0,'2025-12-12','0000-00-00',3966,0,4073,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 10:52:30','','0000-00-00 00:00:00',0),(7093,0,0,5966,'2526','H','O',6568,'',0,'2025-12-12','0000-00-00',3967,0,4074,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 10:53:19','','0000-00-00 00:00:00',0),(7094,0,0,5952,'2526','H','O',6569,'',0,'2025-12-12','0000-00-00',2408,0,2464,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 10:59:20','','0000-00-00 00:00:00',0),(7095,0,0,5967,'2526','H','O',6570,'',0,'2025-12-12','0000-00-00',1841,0,1887,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 6604','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 11:04:47','reception','2025-12-12 12:19:04',0),(7096,0,0,5968,'2526','H','O',6571,'',0,'2025-12-12','0000-00-00',3360,0,3457,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 11:06:01','','0000-00-00 00:00:00',0),(7097,0,0,5969,'2526','H','O',6572,'',0,'2025-12-12','0000-00-00',3968,0,4075,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','INDIAN OVERSEA','','24707','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-12 11:06:34','','0000-00-00 00:00:00',0),(7098,0,0,5970,'2526','H','O',6573,'',0,'2025-12-12','0000-00-00',1832,0,1878,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 11:10:54','','0000-00-00 00:00:00',0),(7099,0,0,5971,'2526','H','O',6574,'',0,'2025-12-12','0000-00-00',283,0,299,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 11:12:20','','0000-00-00 00:00:00',0),(7100,0,0,5972,'2526','H','O',6575,'',0,'2025-12-12','0000-00-00',757,0,56,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 11:15:10','','0000-00-00 00:00:00',0),(7101,0,0,5960,'2526','H','O',6576,'',0,'2025-12-12','0000-00-00',3964,0,4071,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','57420','','scan',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 11:15:46','','0000-00-00 00:00:00',0),(7102,0,0,5971,'2526','H','O',6577,'',0,'2025-12-12','0000-00-00',283,0,299,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 11:18:52','','0000-00-00 00:00:00',0),(7103,0,0,5951,'2526','H','O',6578,'',0,'2025-12-12','0000-00-00',3413,0,3509,0,'D06','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 11:20:37','','0000-00-00 00:00:00',0),(7104,0,0,5970,'2526','H','O',6579,'',0,'2025-12-12','0000-00-00',1832,0,1878,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 11:24:54','','0000-00-00 00:00:00',0),(7105,0,0,5974,'2526','H','O',6580,'',0,'2025-12-12','0000-00-00',3970,0,4077,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100  DISCOUNT','HO 6608','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 11:25:13','reception','2025-12-12 12:26:08',0),(7106,0,0,5975,'2526','H','O',6581,'',0,'2025-12-12','0000-00-00',3971,0,4078,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 11:25:52','','0000-00-00 00:00:00',0),(7107,0,0,5976,'2526','H','O',6582,'',0,'2025-12-12','0000-00-00',3972,0,4079,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 11:27:19','','0000-00-00 00:00:00',0),(7108,0,0,5978,'2526','H','O',6583,'',0,'2025-12-12','0000-00-00',3973,0,4080,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 11:28:18','','0000-00-00 00:00:00',0),(7109,0,0,5977,'2526','H','O',6584,'',0,'2025-12-12','0000-00-00',488,0,513,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','83077','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 11:28:45','','0000-00-00 00:00:00',0),(7110,0,0,5979,'2526','H','O',6585,'',0,'2025-12-12','0000-00-00',1096,0,1134,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 11:32:59','','0000-00-00 00:00:00',0),(7111,0,0,5980,'2526','H','O',6586,'',0,'2025-12-12','0000-00-00',3974,0,4081,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 11:34:10','','0000-00-00 00:00:00',0),(7112,0,0,5964,'2526','H','O',6587,'',0,'2025-12-12','0000-00-00',3965,0,4072,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','87053','','scan',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 11:35:13','','0000-00-00 00:00:00',0),(7113,0,0,5981,'2526','H','O',6588,'',0,'2025-12-12','0000-00-00',3377,0,3472,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 11:37:53','','0000-00-00 00:00:00',0),(7114,0,0,5982,'2526','H','O',6589,'',0,'2025-12-12','0000-00-00',2843,0,2915,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 11:40:30','','0000-00-00 00:00:00',0),(7115,0,0,5973,'2526','H','O',6590,'',0,'2025-12-12','0000-00-00',3969,0,4076,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 6595','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-12 11:42:05','manshi','2025-12-12 11:54:05',0),(7116,0,0,5983,'2526','H','O',6591,'',0,'2025-12-12','0000-00-00',3975,0,4082,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 11:42:29','','0000-00-00 00:00:00',0),(7117,0,0,5984,'2526','H','O',6592,'',0,'2025-12-12','0000-00-00',3976,0,4083,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 11:44:44','','0000-00-00 00:00:00',0),(7118,0,0,5957,'2526','H','O',6593,'',0,'2025-12-12','0000-00-00',3962,0,4069,0,'D06','',0,5500.00,0.00,0.00,5500.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 11:48:01','','0000-00-00 00:00:00',0),(7119,0,0,5985,'2526','H','O',6594,'',0,'2025-12-12','0000-00-00',1384,0,1425,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 11:52:25','','0000-00-00 00:00:00',0),(7120,0,0,5973,'2526','H','O',6595,'',0,'2025-12-12','0000-00-00',3969,0,4076,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-12','Y','N','N','','N',0.00,'','Y','FOC','','HO 6590','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-12 11:54:05','manshi','2025-12-12 11:54:28',0),(7121,0,0,5986,'2526','H','O',6596,'',0,'2025-12-12','0000-00-00',3977,0,4084,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','12560','','scan                          ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 11:59:28','','0000-00-00 00:00:00',0),(7122,0,0,5975,'2526','H','O',6597,'',0,'2025-12-12','0000-00-00',3971,0,4078,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 12:00:09','','0000-00-00 00:00:00',0),(7123,0,0,5961,'2526','H','O',6598,'',0,'2025-12-12','0000-00-00',1506,0,1547,0,'D06','',0,500.00,0.00,0.00,500.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 12:03:29','','0000-00-00 00:00:00',0),(7124,0,0,5987,'2526','H','O',6599,'',0,'2025-12-12','0000-00-00',2738,0,2808,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 12:03:41','','0000-00-00 00:00:00',0),(7125,0,0,5988,'2526','H','O',6600,'',0,'2025-12-12','0000-00-00',2251,0,2308,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 12:06:32','','0000-00-00 00:00:00',0),(7126,0,0,5989,'2526','H','O',6601,'',0,'2025-12-12','0000-00-00',3978,0,4085,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 12:15:26','','0000-00-00 00:00:00',0),(7127,0,0,5990,'2526','H','O',6602,'',0,'2025-12-12','0000-00-00',3054,0,3135,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 12:16:37','','0000-00-00 00:00:00',0),(7128,0,0,5967,'2526','H','O',6603,'',0,'2025-12-12','0000-00-00',1841,0,1887,0,'D06','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-12-12','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 6570','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 12:18:53','reception','2025-12-12 12:21:40',0),(7129,0,0,5967,'2526','H','O',6604,'',0,'2025-12-12','0000-00-00',1841,0,1887,0,'D06','',0,0.00,0.00,0.00,0.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',0.00,0,0,'2025-12-12','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 6570','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 12:19:04','drashti','2025-12-12 19:42:38',0),(7130,0,0,5991,'2526','H','O',6605,'',0,'2025-12-12','0000-00-00',3979,0,4086,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','82707','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 12:20:02','','0000-00-00 00:00:00',0),(7131,0,0,5962,'2526','H','O',6606,'',0,'2025-12-12','0000-00-00',1511,0,1552,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 12:21:54','','0000-00-00 00:00:00',0),(7132,0,0,5967,'2526','H','O',6607,'',0,'2025-12-12','0000-00-00',1841,0,1887,0,'D06','',0,400.00,0.00,0.00,400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 6696','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 12:22:54','reception','2025-12-12 20:10:01',0),(7133,0,0,5974,'2526','H','O',6608,'',0,'2025-12-12','0000-00-00',3970,0,4077,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-12','Y','N','N','','N',0.00,'','Y','100  DISCOUNT','','HO 6580','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 12:26:08','reception','2025-12-12 12:26:34',0),(7134,0,0,5974,'2526','H','O',6609,'',0,'2025-12-12','0000-00-00',3970,0,4077,0,'D06','',0,500.00,0.00,0.00,500.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 12:27:06','','0000-00-00 00:00:00',0),(7135,0,0,5992,'2526','H','O',6610,'',0,'2025-12-12','0000-00-00',3980,0,4087,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 12:27:43','','0000-00-00 00:00:00',0),(7136,0,0,5993,'2526','H','O',6611,'',0,'2025-12-10','0000-00-00',3018,0,3098,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','14700','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-12 12:29:00','','0000-00-00 00:00:00',0),(7137,0,0,5963,'2526','H','O',6612,'',0,'2025-12-12','0000-00-00',3280,0,3369,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-12','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6565','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 12:33:05','reception','2025-12-12 12:33:26',0),(7138,0,0,5994,'2526','H','O',6613,'',0,'2025-12-12','0000-00-00',3981,0,4088,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','69681','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 12:40:25','','0000-00-00 00:00:00',0),(7139,0,0,5995,'2526','H','O',6614,'',0,'2025-12-12','0000-00-00',3982,0,4089,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','KOTAK BANK','','88923','','scan ',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 6619','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 12:43:46','drashti','2025-12-12 13:06:40',0),(7140,0,0,5996,'2526','H','O',6615,'',0,'2025-12-12','0000-00-00',3983,0,4090,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 12:53:37','','0000-00-00 00:00:00',0),(7141,0,0,5949,'2526','H','O',6616,'',0,'2025-12-12','0000-00-00',3960,0,4067,0,'D27','',0,-1000.00,0.00,0.00,-1000.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-1000.00,0,0,'2025-12-12','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6553','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 13:03:16','drashti','2025-12-12 13:04:07',0),(7142,0,0,5949,'2526','H','O',6617,'',0,'2025-12-12','0000-00-00',3960,0,4067,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 13:05:15','','0000-00-00 00:00:00',0),(7143,0,0,5975,'2526','H','O',6618,'',0,'2025-12-12','0000-00-00',3971,0,4078,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 13:06:16','','0000-00-00 00:00:00',0),(7144,0,0,5995,'2526','H','O',6619,'',0,'2025-12-12','0000-00-00',3982,0,4089,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','KOTAK BANK','','88923','','',-400.00,0,0,'2025-12-12','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6614','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 13:06:40','drashti','2025-12-12 13:07:10',0),(7145,0,0,5995,'2526','H','O',6620,'',0,'2025-12-12','0000-00-00',3982,0,4089,0,'D27','',0,750.00,0.00,0.00,750.00,350.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','7','KOTAK BANK','','88923','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 13:11:26','','0000-00-00 00:00:00',0),(7146,0,0,5998,'2526','H','O',6621,'',0,'2025-12-12','0000-00-00',3417,0,3514,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','N','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 13:15:25','','0000-00-00 00:00:00',0),(7147,0,0,5998,'2526','H','O',6622,'',0,'2025-12-12','0000-00-00',3417,0,3514,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 6624','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 13:15:32','reception','2025-12-12 13:18:34',0),(7148,0,0,5997,'2526','H','O',6623,'',0,'2025-12-12','0000-00-00',3955,0,4063,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 13:16:59','','0000-00-00 00:00:00',0),(7149,0,0,5998,'2526','H','O',6624,'',0,'2025-12-12','0000-00-00',3417,0,3514,0,'D27','',0,-1000.00,0.00,0.00,-1000.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-1000.00,0,0,'2025-12-12','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6622','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 13:18:34','reception','2025-12-12 13:18:53',0),(7150,0,0,5996,'2526','H','O',6625,'',0,'2025-12-12','0000-00-00',3983,0,4090,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','','N','N','','N',0.00,'','Y','CANCEL','HO 6627','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 13:28:56','reception','2025-12-12 13:32:52',0),(7151,0,0,5996,'2526','H','O',6626,'',0,'2025-12-12','0000-00-00',3983,0,4090,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 13:28:59','','0000-00-00 00:00:00',0),(7152,0,0,5996,'2526','H','O',6627,'',0,'2025-12-12','0000-00-00',3983,0,4090,0,'D06','',0,-4900.00,0.00,0.00,-4900.00,-300.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-4600.00,0,0,'2025-12-12','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6625','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 13:32:52','reception','2025-12-12 13:34:23',0),(7153,0,0,5999,'2526','H','O',6628,'',0,'2025-12-12','0000-00-00',3984,0,4091,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 13:33:44','','0000-00-00 00:00:00',0),(7154,0,0,6000,'2526','H','O',6629,'',0,'2025-12-12','0000-00-00',622,0,652,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 13:48:35','','0000-00-00 00:00:00',0),(7155,0,0,5663,'2526','H','D',272,'',0,'2025-12-12','0000-00-00',0,266,3906,0,'D27','',0,62650.00,0.00,0.00,62650.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-30000,0,'0000-00-00','','N','N','F','N',32650.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-12 14:53:28','riya','2025-12-12 15:04:27',0),(7156,0,0,5663,'2526','H','I',255,'',0,'2025-12-12','0000-00-00',0,266,3906,0,'D27','',0,62650.00,0.00,0.00,62650.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-62650,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(7157,0,0,6001,'2526','H','O',6630,'',0,'2025-12-12','0000-00-00',3985,0,4092,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 16:19:11','','0000-00-00 00:00:00',0),(7158,0,0,6002,'2526','H','O',6631,'',0,'2025-12-12','0000-00-00',3986,0,4093,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 16:24:36','','0000-00-00 00:00:00',0),(7159,0,0,6003,'2526','H','O',6632,'',0,'2025-12-12','0000-00-00',1028,0,1062,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 16:26:01','','0000-00-00 00:00:00',0),(7160,0,0,6005,'2526','H','O',6633,'',0,'2025-12-12','0000-00-00',1698,0,1744,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 16:33:01','','0000-00-00 00:00:00',0),(7161,0,0,6006,'2526','H','O',6634,'',0,'2025-12-12','0000-00-00',1652,0,1697,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 16:36:02','','0000-00-00 00:00:00',0),(7162,0,0,6007,'2526','H','O',6635,'',0,'2025-12-12','0000-00-00',958,0,991,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 6638','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 16:36:54','reception','2025-12-12 17:01:59',0),(7163,0,0,6009,'2526','H','O',6636,'',0,'2025-12-12','0000-00-00',3987,0,4094,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 16:45:47','','0000-00-00 00:00:00',0),(7164,0,0,6010,'2526','H','O',6637,'',0,'2025-12-12','0000-00-00',3565,0,3665,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 16:53:50','','0000-00-00 00:00:00',0),(7165,0,0,6007,'2526','H','O',6638,'',0,'2025-12-12','0000-00-00',958,0,991,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-12','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6635','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 17:01:59','reception','2025-12-12 17:02:16',0),(7166,0,0,6013,'2526','H','O',6639,'',0,'2025-12-12','0000-00-00',3989,0,4096,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 17:08:29','','0000-00-00 00:00:00',0),(7167,0,0,6014,'2526','H','O',6640,'',0,'2025-12-12','0000-00-00',3990,0,4097,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 17:10:21','','0000-00-00 00:00:00',0),(7168,0,0,6016,'2526','H','O',6641,'',0,'2025-12-12','0000-00-00',3992,0,4099,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 17:13:30','','0000-00-00 00:00:00',0),(7169,0,0,6018,'2526','H','O',6642,'',0,'2025-12-12','0000-00-00',2919,0,2996,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 17:21:21','','0000-00-00 00:00:00',0),(7170,0,0,6017,'2526','H','O',6643,'',0,'2025-12-12','0000-00-00',3993,0,4100,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','76777','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 17:24:12','','0000-00-00 00:00:00',0),(7171,0,0,6002,'2526','H','O',6644,'',0,'2025-12-12','0000-00-00',3986,0,4093,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 17:27:10','','0000-00-00 00:00:00',0),(7172,0,0,6019,'2526','H','O',6645,'',0,'2025-12-12','0000-00-00',3994,0,4101,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 17:29:59','','0000-00-00 00:00:00',0),(7173,0,0,6020,'2526','H','O',6646,'',0,'2025-12-12','0000-00-00',3995,0,4102,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 17:34:04','','0000-00-00 00:00:00',0),(7174,0,0,6021,'2526','H','O',6647,'',0,'2025-12-12','0000-00-00',3996,0,4103,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 17:47:33','','0000-00-00 00:00:00',0),(7175,0,0,6022,'2526','H','O',6648,'',0,'2025-12-12','0000-00-00',2345,0,2401,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 17:48:43','','0000-00-00 00:00:00',0),(7176,0,0,6023,'2526','H','O',6649,'',0,'2025-12-12','0000-00-00',3997,0,4104,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 17:56:24','','0000-00-00 00:00:00',0),(7177,0,0,6024,'2526','H','O',6650,'',0,'2025-12-12','0000-00-00',3998,0,4105,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 17:58:33','','0000-00-00 00:00:00',0),(7178,0,0,6025,'2526','H','O',6651,'',0,'2025-12-12','0000-00-00',1089,0,1128,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 17:59:56','','0000-00-00 00:00:00',0),(7179,0,0,5993,'2526','H','O',6652,'',0,'2025-12-12','0000-00-00',3018,0,3098,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','14700','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 18:00:08','','0000-00-00 00:00:00',0),(7180,0,0,6016,'2526','H','O',6653,'',0,'2025-12-12','0000-00-00',3992,0,4099,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 18:02:03','','0000-00-00 00:00:00',0),(7181,0,0,6026,'2526','H','O',6654,'',0,'2025-12-12','0000-00-00',3999,0,4106,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 18:06:09','','0000-00-00 00:00:00',0),(7182,0,0,6028,'2526','H','O',6655,'',0,'2025-12-12','0000-00-00',4001,0,4108,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 18:12:40','','0000-00-00 00:00:00',0),(7183,0,0,6029,'2526','H','O',6656,'',0,'2025-12-12','0000-00-00',4002,0,4109,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 18:14:40','','0000-00-00 00:00:00',0),(7184,0,0,6027,'2526','H','O',6657,'',0,'2025-12-12','0000-00-00',4000,0,4107,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','12621','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-12 18:16:09','','0000-00-00 00:00:00',0),(7185,0,0,6030,'2526','H','O',6658,'',0,'2025-12-12','0000-00-00',306,0,322,0,'D27','',0,450.00,0.00,0.00,450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',450.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 18:16:19','','0000-00-00 00:00:00',0),(7186,0,0,6031,'2526','H','O',6659,'',0,'2025-12-12','0000-00-00',4003,0,4110,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 18:17:26','','0000-00-00 00:00:00',0),(7187,0,0,6034,'2526','H','O',6660,'',0,'2025-12-12','0000-00-00',4005,0,4112,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','12279','','scan                          ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 18:19:38','','0000-00-00 00:00:00',0),(7188,0,0,6033,'2526','H','O',6661,'',0,'2025-12-12','0000-00-00',4004,0,4111,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 18:20:02','','0000-00-00 00:00:00',0),(7189,0,0,6032,'2526','H','O',6662,'',0,'2025-12-12','0000-00-00',3735,0,3838,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-12 18:20:24','','0000-00-00 00:00:00',0),(7190,0,0,6035,'2526','H','O',6663,'',0,'2025-12-12','0000-00-00',4006,0,4113,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 18:21:34','','0000-00-00 00:00:00',0),(7191,0,0,6036,'2526','H','O',6664,'',0,'2025-12-12','0000-00-00',3605,0,3705,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 18:21:50','','0000-00-00 00:00:00',0),(7192,0,0,6037,'2526','H','O',6665,'',0,'2025-12-12','0000-00-00',4007,0,4114,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 18:23:41','','0000-00-00 00:00:00',0),(7193,0,0,6038,'2526','H','O',6666,'',0,'2025-12-12','0000-00-00',4008,0,4115,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 18:24:25','','0000-00-00 00:00:00',0),(7194,0,0,5163,'2526','H','D',273,'',0,'2025-12-12','0000-00-00',0,245,3630,0,'D27','',0,79100.00,0.00,0.00,79100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-57000,0,'0000-00-00','','N','N','F','N',22100.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-12 18:30:16','vishal','2025-12-12 19:32:42',0),(7195,0,0,6040,'2526','H','O',6667,'',0,'2025-12-12','0000-00-00',4010,0,4117,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-12 18:35:04','','0000-00-00 00:00:00',0),(7196,0,0,6020,'2526','H','O',6668,'',0,'2025-12-12','0000-00-00',3995,0,4102,0,'D06','',0,5500.00,0.00,0.00,5500.00,1100.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','45482','','scan',4400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 18:35:25','','0000-00-00 00:00:00',0),(7197,0,0,6039,'2526','H','O',6669,'',0,'2025-12-12','0000-00-00',4009,0,4116,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 6684','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 18:41:48','drashti','2025-12-12 19:05:56',0),(7198,0,0,6032,'2526','H','O',6670,'',0,'2025-12-12','0000-00-00',3735,0,3838,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-12 18:42:46','','0000-00-00 00:00:00',0),(7199,0,0,6041,'2526','H','O',6671,'',0,'2025-12-12','0000-00-00',4011,0,4118,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','42848','','scan                          ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 18:47:17','','0000-00-00 00:00:00',0),(7200,0,0,6043,'2526','H','O',6672,'',0,'2025-12-12','0000-00-00',4013,0,4120,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 18:48:05','','0000-00-00 00:00:00',0),(7201,0,0,6044,'2526','H','O',6673,'',0,'2025-12-12','0000-00-00',2368,0,2423,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 18:48:30','','0000-00-00 00:00:00',0),(7202,0,0,6017,'2526','H','O',6674,'',0,'2025-12-12','0000-00-00',3993,0,4100,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 18:49:16','','0000-00-00 00:00:00',0),(7203,0,0,6045,'2526','H','O',6675,'',0,'2025-12-12','0000-00-00',3598,0,3696,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 6692','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 18:49:38','janvi','2025-12-12 19:44:38',0),(7204,0,0,6042,'2526','H','O',6676,'',0,'2025-12-12','0000-00-00',4012,0,4119,0,'D27','',0,1850.00,0.00,0.00,1850.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1850.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 18:49:50','','0000-00-00 00:00:00',0),(7205,0,0,6046,'2526','H','O',6677,'',0,'2025-12-12','0000-00-00',536,0,562,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 18:50:28','','0000-00-00 00:00:00',0),(7206,0,0,6048,'2526','H','O',6678,'',0,'2025-12-12','0000-00-00',2269,0,2326,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-12 18:54:51','','0000-00-00 00:00:00',0),(7207,0,0,6049,'2526','H','O',6679,'',0,'2025-12-12','0000-00-00',2174,0,2229,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 18:56:12','','0000-00-00 00:00:00',0),(7208,0,0,6050,'2526','H','O',6680,'',0,'2025-12-12','0000-00-00',2673,0,2742,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 18:59:57','','0000-00-00 00:00:00',0),(7209,0,0,6052,'2526','H','O',6681,'',0,'2025-12-12','0000-00-00',4014,0,4121,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 19:00:33','','0000-00-00 00:00:00',0),(7210,0,0,6051,'2526','H','O',6682,'',0,'2025-12-12','0000-00-00',1156,0,1195,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','RNB','','79797','','scan                          ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 19:01:39','','0000-00-00 00:00:00',0),(7211,0,0,6053,'2526','H','O',6683,'',0,'2025-12-12','0000-00-00',2495,0,2553,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','74486','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 19:03:41','','0000-00-00 00:00:00',0),(7212,0,0,6039,'2526','H','O',6684,'',0,'2025-12-12','0000-00-00',4009,0,4116,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-12-12','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6669','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 19:05:56','drashti','2025-12-12 19:06:20',0),(7213,0,0,6054,'2526','H','O',6685,'',0,'2025-12-12','0000-00-00',4015,0,4122,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 19:08:49','','0000-00-00 00:00:00',0),(7214,0,0,6055,'2526','H','O',6686,'',0,'2025-12-12','0000-00-00',3310,0,3399,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 19:13:30','','0000-00-00 00:00:00',0),(7215,0,0,5994,'2526','H','O',6687,'',0,'2025-12-12','0000-00-00',3981,0,4088,0,'D27','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','icici bank','','46466','','scan ',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 19:15:50','','0000-00-00 00:00:00',0),(7216,0,0,6057,'2526','H','O',6688,'',0,'2025-12-12','0000-00-00',372,0,390,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 19:16:32','','0000-00-00 00:00:00',0),(7217,0,0,2599,'2526','H','D',274,'',0,'2025-12-12','0000-00-00',0,134,2063,0,'D27','',0,30398.00,0.00,0.00,30398.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',30398.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-12 19:27:12','vishal','2025-12-12 19:27:50',0),(7218,0,0,6058,'2526','H','O',6689,'',0,'2025-12-12','0000-00-00',4016,0,4124,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','79577','','scan ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 19:27:42','','0000-00-00 00:00:00',0),(7219,0,0,2599,'2526','H','I',256,'',0,'2025-12-12','0000-00-00',0,134,2063,0,'D27','',0,30398.00,0.00,0.00,30398.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','1','HDFC ERGO','','134','','',30398.00,0,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(7220,0,0,6059,'2526','H','O',6690,'',0,'2025-12-12','0000-00-00',348,0,364,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-12 19:29:23','','0000-00-00 00:00:00',0),(7221,0,0,6060,'2526','H','O',6691,'',0,'2025-12-12','0000-00-00',4017,0,4125,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 19:36:23','','0000-00-00 00:00:00',0),(7222,0,0,5163,'2526','H','I',257,'',0,'2025-12-12','0000-00-00',0,245,3630,0,'D27','',0,79100.00,0.00,0.00,79100.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-79000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(7223,0,0,6045,'2526','H','O',6692,'',0,'2025-12-12','0000-00-00',3598,0,3696,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-12-12','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6675','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-12 19:44:38','janvi','2025-12-12 19:44:53',0),(7224,0,0,6062,'2526','H','O',6693,'',0,'2025-12-12','0000-00-00',4018,0,4126,0,'D03','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BANK OF MAHARA','','43740','','SCAN',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-12 19:52:48','','0000-00-00 00:00:00',0),(7225,0,0,6063,'2526','H','O',6694,'',0,'2025-12-12','0000-00-00',4019,0,4127,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','44651','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 19:54:37','','0000-00-00 00:00:00',0),(7226,0,0,6064,'2526','H','O',6695,'',0,'2025-12-12','0000-00-00',4020,0,4128,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-12 20:06:29','','0000-00-00 00:00:00',0),(7227,0,0,5967,'2526','H','O',6696,'',0,'2025-12-12','0000-00-00',1841,0,1887,0,'D06','',0,-400.00,0.00,0.00,-400.00,-200.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-200.00,0,0,'2025-12-12','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6607','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 20:10:01','reception','2025-12-12 20:10:29',0),(7228,0,0,5967,'2526','H','O',6697,'',0,'2025-12-12','0000-00-00',1841,0,1887,0,'D06','',0,400.00,0.00,0.00,400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-12 20:13:15','','0000-00-00 00:00:00',0),(7229,0,0,6065,'2526','H','O',6698,'',0,'2025-12-12','0000-00-00',4021,0,4129,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-12 20:26:24','','0000-00-00 00:00:00',0),(7230,0,0,6066,'2526','H','O',6699,'',0,'2025-12-12','0000-00-00',4022,0,4130,0,'D27','',0,1550.00,0.00,0.00,1550.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1550.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-12 20:29:13','','0000-00-00 00:00:00',0),(7231,0,0,6067,'2526','H','O',6700,'',0,'2025-12-13','0000-00-00',4023,0,3780,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 08:39:18','','0000-00-00 00:00:00',0),(7232,0,0,6068,'2526','H','O',6701,'',0,'2025-12-13','0000-00-00',4018,0,4126,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 08:40:16','','0000-00-00 00:00:00',0),(7233,0,0,6069,'2526','H','O',6702,'',0,'2025-12-13','0000-00-00',155,0,168,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 09:37:52','','0000-00-00 00:00:00',0),(7234,0,0,6072,'2526','H','O',6703,'',0,'2025-12-13','0000-00-00',4024,0,4131,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 09:58:26','','0000-00-00 00:00:00',0),(7235,0,0,6073,'2526','H','O',6704,'',0,'2025-12-13','0000-00-00',4025,0,4132,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-13 10:02:04','','0000-00-00 00:00:00',0),(7236,0,0,6076,'2526','H','O',6705,'',0,'2025-12-13','0000-00-00',1130,0,1170,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','union bank','','75317','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 10:06:35','','0000-00-00 00:00:00',0),(7237,0,0,6077,'2526','H','O',6706,'',0,'2025-12-13','0000-00-00',3457,0,3556,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-13 10:07:11','','0000-00-00 00:00:00',0),(7238,0,0,6074,'2526','H','O',6707,'',0,'2025-12-13','0000-00-00',4026,0,4133,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-13 10:07:59','','0000-00-00 00:00:00',0),(7239,0,0,6078,'2526','H','O',6708,'',0,'2025-12-13','0000-00-00',2503,0,2560,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','96084','','scan                          ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-13 10:08:55','','0000-00-00 00:00:00',0),(7240,0,0,6079,'2526','H','O',6709,'',0,'2025-12-13','0000-00-00',594,0,624,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-13 10:09:25','','0000-00-00 00:00:00',0),(7241,0,0,6080,'2526','H','O',6710,'',0,'2025-12-13','0000-00-00',4027,0,4134,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 10:10:36','','0000-00-00 00:00:00',0),(7242,0,0,6083,'2526','H','O',6711,'',0,'2025-12-13','0000-00-00',3462,0,3561,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100 DISCOUNT','HO 6743','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 10:26:49','reception','2025-12-13 11:21:38',0),(7243,0,0,6086,'2526','H','O',6712,'',0,'2025-12-13','0000-00-00',3869,0,3978,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-13 10:30:15','','0000-00-00 00:00:00',0),(7244,0,0,6089,'2526','H','O',6713,'',0,'2025-12-13','0000-00-00',4031,0,4138,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 10:34:46','','0000-00-00 00:00:00',0),(7245,0,0,6087,'2526','H','O',6714,'',0,'2025-12-13','0000-00-00',4029,0,4136,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','64562','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-13 10:35:35','','0000-00-00 00:00:00',0),(7246,0,0,6088,'2526','H','O',6715,'',0,'2025-12-13','0000-00-00',4030,0,4137,0,'D03','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','55139','','SCAN',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-13 10:36:35','','0000-00-00 00:00:00',0),(7247,0,0,6091,'2526','H','O',6716,'',0,'2025-12-13','0000-00-00',3386,0,3482,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-13 10:37:21','','0000-00-00 00:00:00',0),(7248,0,0,6092,'2526','H','O',6717,'',0,'2025-12-13','0000-00-00',2235,0,2291,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 10:37:32','','0000-00-00 00:00:00',0),(7249,0,0,6090,'2526','H','O',6718,'',0,'2025-12-13','0000-00-00',4032,0,4139,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 10:39:53','','0000-00-00 00:00:00',0),(7250,0,0,6094,'2526','H','O',6719,'',0,'2025-12-13','0000-00-00',4033,0,4140,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-13 10:40:28','','0000-00-00 00:00:00',0),(7251,0,0,6093,'2526','H','O',6720,'',0,'2025-12-13','0000-00-00',1476,0,1517,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','81244','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-13 10:40:40','','0000-00-00 00:00:00',0),(7252,0,0,6095,'2526','H','O',6721,'',0,'2025-12-13','0000-00-00',308,0,324,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 10:40:42','','0000-00-00 00:00:00',0),(7253,0,0,6096,'2526','H','O',6722,'',0,'2025-12-13','0000-00-00',3568,0,3668,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-13 10:41:42','','0000-00-00 00:00:00',0),(7254,0,0,6081,'2526','H','O',6723,'',0,'2025-12-13','0000-00-00',2711,0,2782,0,'D02','',0,300.00,0.00,0.00,300.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-13 10:45:50','','0000-00-00 00:00:00',0),(7255,0,0,6098,'2526','H','O',6724,'',0,'2025-12-13','0000-00-00',4034,0,4141,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-13 10:47:30','','0000-00-00 00:00:00',0),(7256,0,0,6099,'2526','H','O',6725,'',0,'2025-12-13','0000-00-00',4035,0,4142,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 10:52:54','','0000-00-00 00:00:00',0),(7257,0,0,6085,'2526','H','O',6726,'',0,'2025-12-13','0000-00-00',4028,0,4135,0,'D02','',0,500.00,0.00,0.00,500.00,250.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','55100','','scan     ',250.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-13 10:53:10','','0000-00-00 00:00:00',0),(7258,0,0,6100,'2526','H','O',6727,'',0,'2025-12-13','0000-00-00',1624,0,1669,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 10:54:38','','0000-00-00 00:00:00',0),(7259,0,0,6102,'2526','H','O',6728,'',0,'2025-12-13','0000-00-00',2474,0,2532,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-13 10:58:26','','0000-00-00 00:00:00',0),(7260,0,0,6105,'2526','H','O',6729,'',0,'2025-12-13','0000-00-00',466,0,492,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 11:02:14','','0000-00-00 00:00:00',0),(7261,0,0,6102,'2526','H','O',6730,'',0,'2025-12-13','0000-00-00',2474,0,2532,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-13 11:04:40','','0000-00-00 00:00:00',0),(7262,0,0,6107,'2526','H','O',6731,'',0,'2025-12-13','0000-00-00',4038,0,4145,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-13 11:04:50','','0000-00-00 00:00:00',0),(7263,0,0,6106,'2526','H','O',6732,'',0,'2025-12-13','0000-00-00',4037,0,4144,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(7264,0,0,5678,'2526','H','D',275,'',0,'2025-12-13','0000-00-00',0,267,3912,0,'D14','',0,22400.00,0.00,0.00,22400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-22400,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(7265,0,0,5678,'2526','H','I',258,'',0,'2025-12-13','0000-00-00',0,267,3912,0,'D14','',0,22400.00,0.00,0.00,22400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-22400,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(7266,0,0,6108,'2526','H','O',6733,'',0,'2025-12-13','0000-00-00',4039,0,4146,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-13 11:06:32','','0000-00-00 00:00:00',0),(7267,0,0,6109,'2526','H','O',6734,'',0,'2025-12-13','0000-00-00',4040,0,4147,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','13596','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 11:10:34','','0000-00-00 00:00:00',0),(7268,0,0,6111,'2526','H','O',6735,'',0,'2025-12-13','0000-00-00',4041,0,4148,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 11:13:44','','0000-00-00 00:00:00',0),(7269,0,0,6110,'2526','H','O',6736,'',0,'2025-12-13','0000-00-00',3704,0,3807,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 6753','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-13 11:13:49','janvi','2025-12-13 11:39:18',0),(7270,0,0,6112,'2526','H','O',6737,'',0,'2025-12-13','0000-00-00',2960,0,3039,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 11:15:01','','0000-00-00 00:00:00',0),(7271,0,0,6097,'2526','H','O',6738,'',0,'2025-12-13','0000-00-00',3254,0,3337,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','29503','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-13 11:15:20','','0000-00-00 00:00:00',0),(7272,0,0,6101,'2526','H','O',6739,'',0,'2025-12-13','0000-00-00',4036,0,4143,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-13 11:16:47','','0000-00-00 00:00:00',0),(7273,0,0,6113,'2526','H','O',6740,'',0,'2025-12-13','0000-00-00',3508,0,3610,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 11:18:44','','0000-00-00 00:00:00',0),(7274,0,0,6114,'2526','H','O',6741,'',0,'2025-12-13','0000-00-00',1280,0,1319,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','icici bank','','72166','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-13 11:19:17','','0000-00-00 00:00:00',0),(7275,0,0,6072,'2526','H','O',6742,'',0,'2025-12-13','0000-00-00',4024,0,4131,0,'D06','',0,6900.00,0.00,0.00,6900.00,900.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 11:20:30','','0000-00-00 00:00:00',0),(7276,0,0,6083,'2526','H','O',6743,'',0,'2025-12-13','0000-00-00',3462,0,3561,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-13','Y','N','N','','N',0.00,'','Y','100 DISCOUNT','','HO 6711','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 11:21:38','reception','2025-12-13 11:23:00',0),(7277,0,0,6083,'2526','H','O',6744,'',0,'2025-12-13','0000-00-00',3462,0,3561,0,'D06','',0,500.00,0.00,0.00,500.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 11:23:46','','0000-00-00 00:00:00',0),(7278,0,0,6094,'2526','H','O',6745,'',0,'2025-12-13','0000-00-00',4033,0,4140,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-13 11:26:49','','0000-00-00 00:00:00',0),(7279,0,0,6115,'2526','H','O',6746,'',0,'2025-12-13','0000-00-00',4042,0,4149,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','canara bank','','86679','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 11:28:51','','0000-00-00 00:00:00',0),(7280,0,0,6116,'2526','H','O',6747,'',0,'2025-12-13','0000-00-00',3305,0,3394,0,'D02','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-13 11:29:36','','0000-00-00 00:00:00',0),(7281,0,0,6117,'2526','H','O',6748,'',0,'2025-12-13','0000-00-00',4043,0,4150,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 11:30:41','','0000-00-00 00:00:00',0),(7282,0,0,6119,'2526','H','O',6749,'',0,'2025-12-13','0000-00-00',3523,0,3625,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','70015','','scan  ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-13 11:33:00','','0000-00-00 00:00:00',0),(7283,0,0,6120,'2526','H','O',6750,'',0,'2025-12-13','0000-00-00',4045,0,4152,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','77424','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 11:36:42','','0000-00-00 00:00:00',0),(7284,0,0,6099,'2526','H','O',6751,'',0,'2025-12-13','0000-00-00',4035,0,4142,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 11:37:09','','0000-00-00 00:00:00',0),(7285,0,0,6087,'2526','H','O',6752,'',0,'2025-12-13','0000-00-00',4029,0,4136,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','75021','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-13 11:38:27','','0000-00-00 00:00:00',0),(7286,0,0,6110,'2526','H','O',6753,'',0,'2025-12-13','0000-00-00',3704,0,3807,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-12-13','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6736','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-13 11:39:18','janvi','2025-12-13 11:39:43',0),(7287,0,0,6109,'2526','H','O',6754,'',0,'2025-12-13','0000-00-00',4040,0,4147,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','10861','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 11:52:44','','0000-00-00 00:00:00',0),(7288,0,0,6121,'2526','H','O',6755,'',0,'2025-12-13','0000-00-00',3517,0,3618,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','CENTRAL BANK','','72997','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-13 11:58:01','','0000-00-00 00:00:00',0),(7289,0,0,6122,'2526','H','O',6756,'',0,'2025-12-13','0000-00-00',237,0,252,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 12:03:56','','0000-00-00 00:00:00',0),(7290,0,0,6117,'2526','H','O',6757,'',0,'2025-12-13','0000-00-00',4043,0,4150,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','union bank','','74504','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 12:07:25','','0000-00-00 00:00:00',0),(7291,0,0,6071,'2526','H','O',6758,'',0,'2025-12-13','0000-00-00',3973,0,4080,0,'D02','',0,5000.00,0.00,0.00,5000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOI','','65177','','scan ',5000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-13 12:13:35','','0000-00-00 00:00:00',0),(7292,0,0,6123,'2526','H','O',6759,'',0,'2025-12-13','0000-00-00',4046,0,4153,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 12:14:42','','0000-00-00 00:00:00',0),(7293,0,0,6124,'2526','H','O',6760,'',0,'2025-12-13','0000-00-00',4047,0,4154,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','37567','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-13 12:15:56','','0000-00-00 00:00:00',0),(7294,0,0,6125,'2526','H','O',6761,'',0,'2025-12-13','0000-00-00',4048,0,4155,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 12:17:58','','0000-00-00 00:00:00',0),(7295,0,0,6126,'2526','H','O',6762,'',0,'2025-12-13','0000-00-00',4049,0,4156,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-13 12:20:00','','0000-00-00 00:00:00',0),(7296,0,0,6106,'2526','H','O',6763,'',0,'2025-12-13','0000-00-00',4037,0,4144,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 12:21:30','','0000-00-00 00:00:00',0),(7297,0,0,6128,'2526','H','O',6764,'',0,'2025-12-13','0000-00-00',1253,0,1294,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','central bank','','70405','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 12:26:50','','0000-00-00 00:00:00',0),(7298,0,0,6129,'2526','H','O',6765,'',0,'2025-12-13','0000-00-00',4050,0,3510,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-13 12:31:38','','0000-00-00 00:00:00',0),(7299,0,0,6130,'2526','H','O',6766,'',0,'2025-12-13','0000-00-00',2738,0,2808,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-13 12:31:44','','0000-00-00 00:00:00',0),(7300,0,0,6132,'2526','H','O',6767,'',0,'2025-12-13','0000-00-00',4051,0,4158,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','76794','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 12:34:00','','0000-00-00 00:00:00',0),(7301,0,0,6134,'2526','H','O',6768,'',0,'2025-12-13','0000-00-00',4053,0,4160,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-13 12:37:04','','0000-00-00 00:00:00',0),(7302,0,0,6133,'2526','H','O',6769,'',0,'2025-12-13','0000-00-00',4052,0,4159,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-13 12:37:23','','0000-00-00 00:00:00',0),(7303,0,0,6135,'2526','H','O',6770,'',0,'2025-12-13','0000-00-00',1053,0,1086,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','98375','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 12:38:59','','0000-00-00 00:00:00',0),(7304,0,0,6108,'2526','H','O',6771,'',0,'2025-12-13','0000-00-00',4039,0,4146,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 12:41:18','','0000-00-00 00:00:00',0),(7305,0,0,6136,'2526','H','O',6772,'',0,'2025-12-13','0000-00-00',240,0,255,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-13 12:45:24','','0000-00-00 00:00:00',0),(7306,0,0,6111,'2526','H','O',6773,'',0,'2025-12-13','0000-00-00',4041,0,4148,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 12:51:45','','0000-00-00 00:00:00',0),(7307,0,0,6137,'2526','H','O',6774,'',0,'2025-12-13','0000-00-00',2193,0,2250,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 13:10:56','','0000-00-00 00:00:00',0),(7309,0,0,5527,'2526','H','I',259,'',0,'2025-12-13','0000-00-00',0,260,3827,0,'D27','',0,41600.00,0.00,0.00,41600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-18400,0,'0000-00-00','','N','Y','F','N',0.00,'','Y','RECEIPT ISSUE','HI 260','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(7310,0,0,6138,'2526','H','O',6775,'',0,'2025-12-13','0000-00-00',4054,0,4161,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-13 13:13:20','','0000-00-00 00:00:00',0),(7311,0,0,6139,'2526','H','O',6776,'',0,'2025-12-13','0000-00-00',2765,0,2835,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','HDFC BANK','','29467','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-13 13:15:29','','0000-00-00 00:00:00',0),(7312,0,0,6123,'2526','H','O',6777,'',0,'2025-12-13','0000-00-00',4046,0,4153,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','union bank','','81222','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 13:16:58','','0000-00-00 00:00:00',0),(7313,0,0,6138,'2526','H','O',6778,'',0,'2025-12-13','0000-00-00',4054,0,4161,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-13 13:35:54','','0000-00-00 00:00:00',0),(7314,0,0,6089,'2526','H','O',6779,'',0,'2025-12-13','0000-00-00',4031,0,4138,0,'D06','',0,4400.00,0.00,0.00,4400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','utkarsh bank','','81559','','scan',4200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 13:54:52','','0000-00-00 00:00:00',0),(7315,0,0,5527,'2526','H','I',260,'',0,'2025-12-13','0000-00-00',0,260,3827,0,'D27','',0,-41600.00,0.00,0.00,-41600.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',0.00,'','Y','RECEIPT ISSUE','','HI 259','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-13 14:08:10','','0000-00-00 00:00:00',0),(7316,0,0,5527,'2526','H','D',277,'',0,'2025-12-13','0000-00-00',0,260,3827,0,'D27','',0,41600.00,0.00,0.00,41600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-18400,0,'0000-00-00','','N','N','F','N',23200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(7317,0,0,5527,'2526','H','I',261,'',0,'2025-12-13','0000-00-00',0,260,3827,0,'D27','',0,41600.00,0.00,0.00,41600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-41600,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(7318,0,0,4694,'2526','H','D',278,'',0,'2025-12-13','0000-00-00',0,222,3350,0,'D02','',0,169550.00,0.00,0.00,169550.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-132000,0,'0000-00-00','','N','N','F','N',37550.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(7319,0,0,4694,'2526','H','I',262,'',0,'2025-12-13','0000-00-00',0,222,3350,0,'D02','',0,169550.00,0.00,0.00,169550.00,5550.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-164000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(7320,0,0,6131,'2526','H','D',279,'',0,'2025-12-13','0000-00-00',0,281,4157,0,'D27','',0,5400.00,0.00,0.00,5400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-5400,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-13 15:05:28','','0000-00-00 00:00:00',0),(7321,0,0,6131,'2526','H','I',263,'',0,'2025-12-13','0000-00-00',0,281,4157,0,'D27','',0,5400.00,0.00,0.00,5400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-5400,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-13 15:05:52','','0000-00-00 00:00:00',0),(7322,0,0,6140,'2526','H','O',6780,'',0,'2025-12-13','0000-00-00',1019,0,1053,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 17:12:40','','0000-00-00 00:00:00',0),(7323,0,0,6141,'2526','H','O',6781,'',0,'2025-12-13','0000-00-00',809,0,840,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 17:14:12','','0000-00-00 00:00:00',0),(7324,0,0,6142,'2526','H','O',6782,'',0,'2025-12-13','0000-00-00',4055,0,4162,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-13 17:34:56','','0000-00-00 00:00:00',0),(7325,0,0,6143,'2526','H','O',6783,'',0,'2025-12-13','0000-00-00',4056,0,4163,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 17:48:33','','0000-00-00 00:00:00',0),(7326,0,0,6145,'2526','H','O',6784,'',0,'2025-12-13','0000-00-00',4057,0,4164,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 17:58:18','','0000-00-00 00:00:00',0),(7327,0,0,6147,'2526','H','O',6785,'',0,'2025-12-13','0000-00-00',3901,0,4009,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','06345','','scan     ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-13 18:03:28','','0000-00-00 00:00:00',0),(7328,0,0,6146,'2526','H','O',6786,'',0,'2025-12-13','0000-00-00',4058,0,4165,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-13 18:04:33','','0000-00-00 00:00:00',0),(7330,0,0,6056,'2526','H','I',264,'',0,'2025-12-13','0000-00-00',0,276,4123,0,'D27','',0,6600.00,0.00,0.00,6600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6600,0,'0000-00-00','','N','Y','F','N',0.00,'','Y','-','HI 265','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-13 18:23:40','riya','2025-12-13 18:31:14',0),(7331,0,0,6148,'2526','H','O',6787,'',0,'2025-12-13','0000-00-00',3605,0,3705,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-13 18:30:53','','0000-00-00 00:00:00',0),(7332,0,0,6056,'2526','H','I',265,'',0,'2025-12-13','0000-00-00',0,276,4123,0,'D27','',0,-6600.00,0.00,0.00,-6600.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',0.00,'','Y','-','','HI 264','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-13 18:31:14','','0000-00-00 00:00:00',0),(7333,0,0,6056,'2526','H','D',281,'',0,'2025-12-13','0000-00-00',0,276,4123,0,'D27','',0,7800.00,0.00,0.00,7800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6600,0,'0000-00-00','','N','N','F','N',1200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-13 18:32:07','','0000-00-00 00:00:00',0),(7334,0,0,6056,'2526','H','I',266,'',0,'2025-12-13','0000-00-00',0,276,4123,0,'D27','',0,7800.00,0.00,0.00,7800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7800,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-13 18:33:00','','0000-00-00 00:00:00',0),(7335,0,0,6149,'2526','H','O',6788,'',0,'2025-12-13','0000-00-00',3031,0,3112,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','south bank','','01799','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 18:36:03','','0000-00-00 00:00:00',0),(7336,0,0,6150,'2526','H','O',6789,'',0,'2025-12-13','0000-00-00',4059,0,4166,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','12866','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-13 18:47:10','','0000-00-00 00:00:00',0),(7337,0,0,6150,'2526','H','O',6790,'',0,'2025-12-13','0000-00-00',4059,0,4166,0,'D14','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-13 18:55:56','','0000-00-00 00:00:00',0),(7338,0,0,6151,'2526','H','O',6791,'',0,'2025-12-13','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','20759','','scan                          ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-13 18:59:54','','0000-00-00 00:00:00',0),(7339,0,0,6152,'2526','H','O',6792,'',0,'2025-12-13','0000-00-00',3310,0,3399,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-13 19:03:58','','0000-00-00 00:00:00',0),(7340,0,0,6153,'2526','H','O',6793,'',0,'2025-12-13','0000-00-00',4060,0,4167,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-13 19:28:22','','0000-00-00 00:00:00',0),(7341,0,0,6154,'2526','H','O',6794,'',0,'2025-12-13','0000-00-00',1476,0,1517,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','45812','','scan',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-13 20:12:26','','0000-00-00 00:00:00',0),(7342,0,0,6156,'2526','H','O',6795,'',0,'2025-12-14','0000-00-00',3264,0,3352,0,'D03','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','38627','','scan ',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-14 09:26:55','','0000-00-00 00:00:00',0),(7343,0,0,6157,'2526','H','O',6796,'',0,'2025-12-14','0000-00-00',4061,0,4168,0,'D02','',0,1700.00,0.00,0.00,1700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-14 09:36:24','','0000-00-00 00:00:00',0),(7344,0,0,6158,'2526','H','O',6797,'',0,'2025-12-14','0000-00-00',4062,0,3765,0,'D27','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','32201','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-14 09:52:05','','0000-00-00 00:00:00',0),(7345,0,0,6159,'2526','H','O',6798,'',0,'2025-12-14','0000-00-00',4063,0,4169,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-14 10:02:02','','0000-00-00 00:00:00',0),(7346,0,0,6160,'2526','H','O',6799,'',0,'2025-12-14','0000-00-00',4064,0,4170,0,'D02','',0,1600.00,0.00,0.00,1600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-14 10:42:15','','0000-00-00 00:00:00',0),(7347,0,0,5583,'2526','H','D',282,'',0,'2025-12-14','0000-00-00',0,261,3863,0,'D27','',0,30600.00,0.00,0.00,30600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',15600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-14 11:15:04','riya','2025-12-14 12:31:43',0),(7348,0,0,6162,'2526','H','O',6800,'',0,'2025-12-14','0000-00-00',3305,0,3394,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-14 11:20:58','','0000-00-00 00:00:00',0),(7349,0,0,6047,'2526','H','D',283,'',0,'2025-12-14','0000-00-00',4002,275,4109,0,'D02','',0,20200.00,0.00,0.00,20200.00,3000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-8000,0,'0000-00-00','','N','N','F','N',9200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-14 12:17:19','riya','2025-12-14 13:25:29',0),(7350,0,0,6070,'2526','H','D',284,'',0,'2025-12-14','0000-00-00',3980,278,4087,0,'D27','',0,11700.00,0.00,0.00,11700.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-5000,0,'0000-00-00','','N','N','F','N',5700.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-14 12:41:07','riya','2025-12-14 12:45:43',0),(7351,0,0,6164,'2526','H','O',6801,'',0,'2025-12-14','0000-00-00',2738,0,2808,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-14 12:57:45','','0000-00-00 00:00:00',0),(7352,0,0,5583,'2526','H','I',267,'',0,'2025-12-14','0000-00-00',0,261,3863,0,'D27','',0,30600.00,0.00,0.00,30600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-30600,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(7353,0,0,6070,'2526','H','I',268,'',0,'2025-12-14','0000-00-00',3980,278,4087,0,'D27','',0,11700.00,0.00,0.00,11700.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10700,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-14 13:22:49','','0000-00-00 00:00:00',0),(7354,0,0,6047,'2526','H','I',269,'',0,'2025-12-14','0000-00-00',4002,275,4109,0,'D02','',0,20200.00,0.00,0.00,20200.00,3000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-17200,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(7355,0,0,5831,'2526','H','D',285,'',0,'2025-12-15','0000-00-00',0,273,4001,0,'D27','',0,21700.00,0.00,0.00,21700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',14700.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-14 15:02:04','riya','2025-12-15 10:48:24',0),(7356,0,0,6082,'2526','H','D',286,'',0,'2025-12-14','0000-00-00',3053,279,3134,0,'D02','',0,7500.00,0.00,0.00,7500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','D','N',7500.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-14 15:16:21','','0000-00-00 00:00:00',0),(7357,0,0,6161,'2526','H','D',287,'',0,'2025-12-14','0000-00-00',0,283,4171,0,'D02','',0,6700.00,0.00,0.00,6700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10000,0,'0000-00-00','','N','N','F','N',-3300.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-14 16:41:40','vishal','2025-12-14 16:49:34',0),(7358,0,0,6161,'2526','H','I',270,'',0,'2025-12-14','0000-00-00',0,283,4171,0,'D02','',0,6700.00,0.00,0.00,6700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-3300.00,-10000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-14 16:52:21','','0000-00-00 00:00:00',0),(7359,0,0,6084,'2526','H','D',288,'',0,'2025-12-14','0000-00-00',3999,280,4106,0,'D27','',0,10000.00,0.00,0.00,10000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-5000,0,'0000-00-00','','N','N','F','N',5000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-14 17:30:34','vishal','2025-12-14 17:32:35',0),(7360,0,0,6084,'2526','H','I',271,'',0,'2025-12-14','0000-00-00',3999,280,4106,0,'D27','',0,10000.00,0.00,0.00,10000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-14 17:34:17','','0000-00-00 00:00:00',0),(7361,0,0,674,'2526','H','I',272,'',0,'2025-12-14','0000-00-00',0,50,606,0,'D27','',0,17500.00,0.00,0.00,17500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','1','AXIS BANK','','1234','','',-7000.00,-7000,0,'0000-00-00','','N','N','F','N',0.00,'','Y','SET KARVANU BAKI','HI 274','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(7362,0,0,6168,'2526','H','O',6802,'',0,'2025-12-15','0000-00-00',3378,0,3473,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 08:49:17','','0000-00-00 00:00:00',0),(7363,0,0,6169,'2526','H','O',6803,'',0,'2025-12-15','0000-00-00',4065,0,4175,0,'D03','',0,3100.00,0.00,0.00,3100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 09:10:50','','0000-00-00 00:00:00',0),(7364,0,0,6170,'2526','H','O',6804,'',0,'2025-12-15','0000-00-00',4066,0,4176,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-15 09:16:07','','0000-00-00 00:00:00',0),(7365,0,0,6171,'2526','H','O',6805,'',0,'2025-12-15','0000-00-00',4067,0,4177,0,'D02','',0,2600.00,0.00,0.00,2600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 09:17:27','','0000-00-00 00:00:00',0),(7366,0,0,6172,'2526','H','O',6806,'',0,'2025-12-15','0000-00-00',1227,0,1268,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 10:06:33','','0000-00-00 00:00:00',0),(7367,0,0,6173,'2526','H','O',6807,'',0,'2025-12-15','0000-00-00',4068,0,4178,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 10:11:21','','0000-00-00 00:00:00',0),(7368,0,0,6175,'2526','H','O',6808,'',0,'2025-12-15','0000-00-00',4069,0,4179,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 10:16:37','','0000-00-00 00:00:00',0),(7369,0,0,6177,'2526','H','O',6809,'',0,'2025-12-15','0000-00-00',3514,0,3615,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 10:18:03','','0000-00-00 00:00:00',0),(7370,0,0,6178,'2526','H','O',6810,'',0,'2025-12-15','0000-00-00',4070,0,4180,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 10:26:01','','0000-00-00 00:00:00',0),(7371,0,0,6174,'2526','H','O',6811,'',0,'2025-12-15','0000-00-00',3366,0,3463,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 10:28:31','','0000-00-00 00:00:00',0),(7372,0,0,6179,'2526','H','O',6812,'',0,'2025-12-15','0000-00-00',4071,0,4181,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 10:30:58','','0000-00-00 00:00:00',0),(7373,0,0,6180,'2526','H','O',6813,'',0,'2025-12-15','0000-00-00',2850,0,2922,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 10:31:11','','0000-00-00 00:00:00',0),(7374,0,0,6181,'2526','H','O',6814,'',0,'2025-12-15','0000-00-00',3712,0,3814,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 10:32:42','','0000-00-00 00:00:00',0),(7375,0,0,6182,'2526','H','O',6815,'',0,'2025-12-15','0000-00-00',4072,0,4182,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','28200','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 10:34:11','','0000-00-00 00:00:00',0),(7376,0,0,6183,'2526','H','O',6816,'',0,'2025-12-15','0000-00-00',2239,0,2295,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','70205','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 10:35:46','','0000-00-00 00:00:00',0),(7377,0,0,6184,'2526','H','O',6817,'',0,'2025-12-15','0000-00-00',2277,0,2334,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SARASWAT BANK','','92458','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 10:38:14','','0000-00-00 00:00:00',0),(7378,0,0,6185,'2526','H','O',6818,'',0,'2025-12-15','0000-00-00',4073,0,4183,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 10:40:08','','0000-00-00 00:00:00',0),(7379,0,0,6187,'2526','H','O',6819,'',0,'2025-12-15','0000-00-00',1965,0,2013,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 10:46:13','','0000-00-00 00:00:00',0),(7380,0,0,6188,'2526','H','O',6820,'',0,'2025-12-15','0000-00-00',3695,0,3347,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 10:48:28','','0000-00-00 00:00:00',0),(7381,0,0,6189,'2526','H','O',6821,'',0,'2025-12-15','0000-00-00',4075,0,4184,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 10:48:46','','0000-00-00 00:00:00',0),(7382,0,0,6190,'2526','H','O',6822,'',0,'2025-12-15','0000-00-00',4076,0,4185,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 10:51:27','','0000-00-00 00:00:00',0),(7383,0,0,6191,'2526','H','O',6823,'',0,'2025-12-15','0000-00-00',3720,0,3721,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-15 10:52:35','','0000-00-00 00:00:00',0),(7384,0,0,6192,'2526','H','O',6824,'',0,'2025-12-15','0000-00-00',4077,0,4186,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 10:54:04','','0000-00-00 00:00:00',0),(7385,0,0,6193,'2526','H','O',6825,'',0,'2025-12-15','0000-00-00',811,0,842,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 10:54:54','','0000-00-00 00:00:00',0),(7386,0,0,6194,'2526','H','O',6826,'',0,'2025-12-15','0000-00-00',4078,0,4187,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-15 10:55:23','','0000-00-00 00:00:00',0),(7387,0,0,6196,'2526','H','O',6827,'',0,'2025-12-15','0000-00-00',4079,0,4188,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 10:56:59','','0000-00-00 00:00:00',0),(7388,0,0,6195,'2526','H','O',6828,'',0,'2025-12-15','0000-00-00',3755,0,3858,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 10:57:40','','0000-00-00 00:00:00',0),(7389,0,0,6197,'2526','H','O',6829,'',0,'2025-12-15','0000-00-00',3148,0,3234,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 10:58:22','','0000-00-00 00:00:00',0),(7390,0,0,6173,'2526','H','O',6830,'',0,'2025-12-15','0000-00-00',4068,0,4178,0,'D06','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 11:01:34','','0000-00-00 00:00:00',0),(7391,0,0,6199,'2526','H','O',6831,'',0,'2025-12-15','0000-00-00',3589,0,3688,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 11:02:46','','0000-00-00 00:00:00',0),(7392,0,0,6202,'2526','H','O',6832,'',0,'2025-12-15','0000-00-00',4080,0,4190,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 11:08:12','','0000-00-00 00:00:00',0),(7393,0,0,6176,'2526','H','O',6833,'',0,'2025-12-15','0000-00-00',3902,0,4011,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-15 11:10:37','','0000-00-00 00:00:00',0),(7394,0,0,6203,'2526','H','O',6834,'',0,'2025-12-15','0000-00-00',3305,0,3394,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 11:10:56','','0000-00-00 00:00:00',0),(7395,0,0,6204,'2526','H','O',6835,'',0,'2025-12-15','0000-00-00',4081,0,4191,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 11:11:44','','0000-00-00 00:00:00',0),(7396,0,0,6205,'2526','H','O',6836,'',0,'2025-12-15','0000-00-00',1508,0,1549,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 11:12:28','','0000-00-00 00:00:00',0),(7397,0,0,6207,'2526','H','O',6837,'',0,'2025-12-15','0000-00-00',4083,0,4193,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-15 11:13:36','','0000-00-00 00:00:00',0),(7398,0,0,6206,'2526','H','O',6838,'',0,'2025-12-15','0000-00-00',4082,0,4192,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-15 11:13:48','','0000-00-00 00:00:00',0),(7399,0,0,6209,'2526','H','O',6839,'',0,'2025-12-15','0000-00-00',4085,0,4195,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 11:14:41','','0000-00-00 00:00:00',0),(7400,0,0,6210,'2526','H','O',6840,'',0,'2025-12-15','0000-00-00',4086,0,4196,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-15 11:15:11','','0000-00-00 00:00:00',0),(7401,0,0,6212,'2526','H','O',6841,'',0,'2025-12-15','0000-00-00',4088,0,4198,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 11:18:22','','0000-00-00 00:00:00',0),(7402,0,0,6213,'2526','H','O',6842,'',0,'2025-12-15','0000-00-00',4089,0,4199,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-15 11:19:53','','0000-00-00 00:00:00',0),(7403,0,0,6214,'2526','H','O',6843,'',0,'2025-12-15','0000-00-00',4090,0,4200,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 11:20:10','','0000-00-00 00:00:00',0),(7404,0,0,6211,'2526','H','O',6844,'',0,'2025-12-15','0000-00-00',4087,0,4197,0,'D27','',0,750.00,0.00,0.00,750.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',550.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 11:21:06','','0000-00-00 00:00:00',0),(7405,0,0,6215,'2526','H','O',6845,'',0,'2025-12-15','0000-00-00',4091,0,4201,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 11:21:46','','0000-00-00 00:00:00',0),(7406,0,0,6216,'2526','H','O',6846,'',0,'2025-12-15','0000-00-00',3358,0,3455,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 11:22:08','','0000-00-00 00:00:00',0),(7407,0,0,6217,'2526','H','O',6847,'',0,'2025-12-15','0000-00-00',2590,0,2650,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','53747','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 11:25:45','','0000-00-00 00:00:00',0),(7408,0,0,6218,'2526','H','O',6848,'',0,'2025-12-15','0000-00-00',4092,0,4202,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 11:26:54','','0000-00-00 00:00:00',0),(7409,0,0,6219,'2526','H','O',6849,'',0,'2025-12-15','0000-00-00',4093,0,4203,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 11:28:52','','0000-00-00 00:00:00',0),(7410,0,0,6200,'2526','H','O',6850,'',0,'2025-12-15','0000-00-00',3382,0,3477,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 11:30:36','','0000-00-00 00:00:00',0),(7411,0,0,6186,'2526','H','O',6851,'',0,'2025-12-15','0000-00-00',4074,0,3778,0,'D02','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 6853','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-15 11:30:55','priyanshi','2025-12-15 11:31:44',0),(7412,0,0,6221,'2526','H','O',6852,'',0,'2025-12-15','0000-00-00',2733,0,2803,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 6854','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-15 11:31:10','drashti','2025-12-15 11:32:11',0),(7413,0,0,6186,'2526','H','O',6853,'',0,'2025-12-15','0000-00-00',4074,0,3778,0,'D02','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-12-15','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6851','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-15 11:31:44','priyanshi','2025-12-15 11:32:31',0),(7414,0,0,6221,'2526','H','O',6854,'',0,'2025-12-15','0000-00-00',2733,0,2803,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-12-15','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 6852','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 11:32:11','drashti','2025-12-15 11:33:06',0),(7415,0,0,6186,'2526','H','O',6855,'',0,'2025-12-15','0000-00-00',4074,0,3778,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','84322','','scan     ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-15 11:33:06','','0000-00-00 00:00:00',0),(7416,0,0,6222,'2526','H','O',6856,'',0,'2025-12-15','0000-00-00',4094,0,4204,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','AXIS','','27182','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 11:33:49','','0000-00-00 00:00:00',0),(7417,0,0,6220,'2526','H','O',6857,'',0,'2025-12-15','0000-00-00',2733,0,2803,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 11:33:57','','0000-00-00 00:00:00',0),(7418,0,0,6178,'2526','H','O',6858,'',0,'2025-12-15','0000-00-00',4070,0,4180,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 11:36:09','','0000-00-00 00:00:00',0),(7419,0,0,6224,'2526','H','O',6859,'',0,'2025-12-15','0000-00-00',4096,0,4206,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 11:38:12','','0000-00-00 00:00:00',0),(7420,0,0,6225,'2526','H','O',6860,'',0,'2025-12-15','0000-00-00',4097,0,4207,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 11:38:27','','0000-00-00 00:00:00',0),(7421,0,0,6208,'2526','H','O',6861,'',0,'2025-12-15','0000-00-00',4084,0,4194,0,'D14','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','25436','','scan',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 11:41:38','','0000-00-00 00:00:00',0),(7422,0,0,6226,'2526','H','O',6862,'',0,'2025-12-15','0000-00-00',4098,0,4208,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOI BANK','','90922','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 11:43:10','','0000-00-00 00:00:00',0),(7423,0,0,6228,'2526','H','O',6863,'',0,'2025-12-15','0000-00-00',4099,0,4209,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 11:44:05','','0000-00-00 00:00:00',0),(7424,0,0,6223,'2526','H','O',6864,'',0,'2025-12-15','0000-00-00',4095,0,4205,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 11:44:08','','0000-00-00 00:00:00',0),(7425,0,0,6230,'2526','H','O',6865,'',0,'2025-12-15','0000-00-00',4100,0,4210,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 11:47:34','','0000-00-00 00:00:00',0),(7426,0,0,6212,'2526','H','O',6866,'',0,'2025-12-15','0000-00-00',4088,0,4198,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-15 11:47:53','','0000-00-00 00:00:00',0),(7427,0,0,6231,'2526','H','O',6867,'',0,'2025-12-15','0000-00-00',2075,0,2129,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 11:48:11','','0000-00-00 00:00:00',0),(7428,0,0,6232,'2526','H','O',6868,'',0,'2025-12-15','0000-00-00',3725,0,3828,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 6901','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 11:48:45','shweta','2025-12-15 12:44:19',0),(7429,0,0,6233,'2526','H','O',6869,'',0,'2025-12-15','0000-00-00',1715,0,1759,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-15 11:49:27','','0000-00-00 00:00:00',0),(7430,0,0,6234,'2526','H','O',6870,'',0,'2025-12-15','0000-00-00',4101,0,4211,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 11:52:21','','0000-00-00 00:00:00',0),(7431,0,0,6189,'2526','H','O',6871,'',0,'2025-12-15','0000-00-00',4075,0,4184,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','25349','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 11:52:47','','0000-00-00 00:00:00',0),(7432,0,0,6213,'2526','H','O',6872,'',0,'2025-12-15','0000-00-00',4089,0,4199,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 11:55:26','','0000-00-00 00:00:00',0),(7433,0,0,6235,'2526','H','O',6873,'',0,'2025-12-15','0000-00-00',4102,0,4212,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 11:55:34','','0000-00-00 00:00:00',0),(7434,0,0,6237,'2526','H','O',6874,'',0,'2025-12-15','0000-00-00',4103,0,4213,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-15 11:57:56','','0000-00-00 00:00:00',0),(7435,0,0,6238,'2526','H','O',6875,'',0,'2025-12-15','0000-00-00',3854,0,3963,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 11:58:22','','0000-00-00 00:00:00',0),(7436,0,0,6223,'2526','H','O',6876,'',0,'2025-12-15','0000-00-00',4095,0,4205,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','03640','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 12:01:47','','0000-00-00 00:00:00',0),(7437,0,0,6239,'2526','H','O',6877,'',0,'2025-12-15','0000-00-00',3520,0,3622,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 12:03:10','','0000-00-00 00:00:00',0),(7438,0,0,6240,'2526','H','O',6878,'',0,'2025-12-15','0000-00-00',4104,0,4214,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 12:05:36','','0000-00-00 00:00:00',0),(7439,0,0,6242,'2526','H','O',6879,'',0,'2025-12-15','0000-00-00',2917,0,2994,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 12:06:44','','0000-00-00 00:00:00',0),(7440,0,0,6241,'2526','H','O',6880,'',0,'2025-12-15','0000-00-00',4105,0,3871,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 12:06:59','','0000-00-00 00:00:00',0),(7441,0,0,6228,'2526','H','O',6881,'',0,'2025-12-15','0000-00-00',4099,0,4209,0,'D03','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 12:07:08','','0000-00-00 00:00:00',0),(7442,0,0,6243,'2526','H','O',6882,'',0,'2025-12-15','0000-00-00',4106,0,4215,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 12:09:23','','0000-00-00 00:00:00',0),(7443,0,0,6244,'2526','H','O',6883,'',0,'2025-12-15','0000-00-00',2532,0,2589,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','federal bank','','50933','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 12:10:38','','0000-00-00 00:00:00',0),(7444,0,0,6245,'2526','H','O',6884,'',0,'2025-12-15','0000-00-00',4107,0,4216,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 12:12:07','','0000-00-00 00:00:00',0),(7445,0,0,6246,'2526','H','O',6885,'',0,'2025-12-15','0000-00-00',4108,0,4217,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 12:13:11','','0000-00-00 00:00:00',0),(7446,0,0,6224,'2526','H','O',6886,'',0,'2025-12-15','0000-00-00',4096,0,4206,0,'D06','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 12:14:00','','0000-00-00 00:00:00',0),(7447,0,0,6196,'2526','H','O',6887,'',0,'2025-12-15','0000-00-00',4079,0,4188,0,'D06','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 12:16:02','','0000-00-00 00:00:00',0),(7448,0,0,6248,'2526','H','O',6888,'',0,'2025-12-15','0000-00-00',4110,0,4219,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 12:16:29','','0000-00-00 00:00:00',0),(7449,0,0,6249,'2526','H','O',6889,'',0,'2025-12-15','0000-00-00',4111,0,4220,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 12:18:02','','0000-00-00 00:00:00',0),(7450,0,0,6250,'2526','H','O',6890,'',0,'2025-12-15','0000-00-00',4112,0,4221,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 12:18:50','','0000-00-00 00:00:00',0),(7451,0,0,6236,'2526','H','O',6891,'',0,'2025-12-15','0000-00-00',3673,0,3777,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 12:20:25','','0000-00-00 00:00:00',0),(7452,0,0,6251,'2526','H','O',6892,'',0,'2025-12-15','0000-00-00',3265,0,3353,0,'D03','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 12:25:33','','0000-00-00 00:00:00',0),(7453,0,0,6227,'2526','H','O',6893,'',0,'2025-12-15','0000-00-00',3887,0,3996,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 12:31:03','','0000-00-00 00:00:00',0),(7454,0,0,6252,'2526','H','O',6894,'',0,'2025-12-15','0000-00-00',4044,0,4151,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','14700','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 12:32:52','','0000-00-00 00:00:00',0),(7455,0,0,6253,'2526','H','O',6895,'',0,'2025-12-15','0000-00-00',3859,0,3968,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','idfc','','14314','','scan  ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 12:34:32','','0000-00-00 00:00:00',0),(7456,0,0,6204,'2526','H','O',6896,'',0,'2025-12-15','0000-00-00',4081,0,4191,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 12:36:35','','0000-00-00 00:00:00',0),(7457,0,0,6214,'2526','H','O',6897,'',0,'2025-12-15','0000-00-00',4090,0,4200,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 12:38:43','','0000-00-00 00:00:00',0),(7458,0,0,6229,'2526','H','O',6898,'',0,'2025-12-15','0000-00-00',3303,0,3392,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 12:40:27','','0000-00-00 00:00:00',0),(7459,0,0,6255,'2526','H','O',6899,'',0,'2025-12-15','0000-00-00',4113,0,4223,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 12:40:43','','0000-00-00 00:00:00',0),(7460,0,0,6256,'2526','H','O',6900,'',0,'2025-12-15','0000-00-00',4114,0,4224,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 12:42:55','','0000-00-00 00:00:00',0),(7461,0,0,6232,'2526','H','O',6901,'',0,'2025-12-15','0000-00-00',3725,0,3828,0,'D14','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-15','Y','N','N','','N',0.00,'','Y','FOC','','HO 6868','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 12:44:19','shweta','2025-12-15 12:44:50',0),(7462,0,0,6245,'2526','H','O',6902,'',0,'2025-12-15','0000-00-00',4107,0,4216,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 12:51:17','','0000-00-00 00:00:00',0),(7463,0,0,6256,'2526','H','O',6903,'',0,'2025-12-15','0000-00-00',4114,0,4224,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 12:51:36','','0000-00-00 00:00:00',0),(7464,0,0,6246,'2526','H','O',6904,'',0,'2025-12-15','0000-00-00',4108,0,4217,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 12:56:29','','0000-00-00 00:00:00',0),(7465,0,0,6257,'2526','H','O',6905,'',0,'2025-12-15','0000-00-00',1051,0,1085,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 13:00:05','','0000-00-00 00:00:00',0),(7466,0,0,6259,'2526','H','O',6906,'',0,'2025-12-15','0000-00-00',3605,0,3705,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 13:08:54','','0000-00-00 00:00:00',0),(7467,0,0,6260,'2526','H','O',6907,'',0,'2025-12-15','0000-00-00',4116,0,4226,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','59541','','scan     ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 13:27:45','','0000-00-00 00:00:00',0),(7468,0,0,6258,'2526','H','O',6908,'',0,'2025-12-15','0000-00-00',4115,0,4225,0,'D02','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 13:28:56','','0000-00-00 00:00:00',0),(7469,0,0,6261,'2526','H','O',6909,'',0,'2025-12-15','0000-00-00',2738,0,2808,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 13:30:26','','0000-00-00 00:00:00',0),(7470,0,0,6255,'2526','H','O',6910,'',0,'2025-12-15','0000-00-00',4113,0,4223,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 13:32:01','','0000-00-00 00:00:00',0),(7471,0,0,6250,'2526','H','O',6911,'',0,'2025-12-15','0000-00-00',4112,0,4221,0,'D06','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','idfc','','66050','','scan',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 13:43:42','','0000-00-00 00:00:00',0),(7472,0,0,6250,'2526','H','O',6912,'',0,'2025-12-15','0000-00-00',4112,0,4221,0,'D06','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 13:44:25','','0000-00-00 00:00:00',0),(7473,0,0,6198,'2526','H','O',6913,'',0,'2025-12-15','0000-00-00',3498,0,3599,0,'D02','',0,4000.00,0.00,0.00,4000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 14:06:15','','0000-00-00 00:00:00',0),(7474,0,0,6247,'2526','H','O',6914,'',0,'2025-12-15','0000-00-00',4109,0,4218,0,'D02','',0,500.00,0.00,0.00,500.00,250.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOI BANK','','67387','','scan ',250.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 14:08:14','','0000-00-00 00:00:00',0),(7476,0,0,5848,'2526','H','D',290,'',0,'2025-12-15','0000-00-00',0,274,4010,0,'D02','',0,47650.00,0.00,0.00,47650.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',32650.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-15 16:11:46','riya','2025-12-15 16:42:39',0),(7477,0,0,6265,'2526','H','O',6915,'',0,'2025-12-15','0000-00-00',4117,0,4230,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 16:28:30','','0000-00-00 00:00:00',0),(7478,0,0,6266,'2526','H','O',6916,'',0,'2025-12-15','0000-00-00',3182,0,3268,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 6929','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 16:36:20','reception','2025-12-15 17:31:41',0),(7479,0,0,6267,'2526','H','O',6917,'',0,'2025-12-15','0000-00-00',4118,0,4231,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 16:43:10','','0000-00-00 00:00:00',0),(7480,0,0,6268,'2526','H','O',6918,'',0,'2025-12-15','0000-00-00',3642,0,3745,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 16:49:33','','0000-00-00 00:00:00',0),(7481,0,0,5848,'2526','H','I',273,'',0,'2025-12-15','0000-00-00',0,274,4010,0,'D02','',0,47650.00,0.00,0.00,47650.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-47650,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(7482,0,0,6269,'2526','H','O',6919,'',0,'2025-12-15','0000-00-00',589,0,619,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 16:57:32','','0000-00-00 00:00:00',0),(7483,0,0,6270,'2526','H','O',6920,'',0,'2025-12-15','0000-00-00',2878,0,2953,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','30583','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 16:59:10','','0000-00-00 00:00:00',0),(7484,0,0,6272,'2526','H','O',6921,'',0,'2025-12-15','0000-00-00',4120,0,4232,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 17:07:42','','0000-00-00 00:00:00',0),(7485,0,0,6275,'2526','H','O',6922,'',0,'2025-12-15','0000-00-00',4121,0,4234,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 17:17:51','','0000-00-00 00:00:00',0),(7486,0,0,6276,'2526','H','O',6923,'',0,'2025-12-15','0000-00-00',4122,0,4235,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','53191','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 17:21:46','','0000-00-00 00:00:00',0),(7487,0,0,6277,'2526','H','O',6924,'',0,'2025-12-15','0000-00-00',3743,0,3846,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 17:22:10','','0000-00-00 00:00:00',0),(7488,0,0,6265,'2526','H','O',6925,'',0,'2025-12-15','0000-00-00',4117,0,4230,0,'D06','',0,5200.00,0.00,0.00,5200.00,700.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 17:24:23','','0000-00-00 00:00:00',0),(7489,0,0,6279,'2526','H','O',6926,'',0,'2025-12-15','0000-00-00',4123,0,4236,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 17:26:15','','0000-00-00 00:00:00',0),(7490,0,0,6280,'2526','H','O',6927,'',0,'2025-12-15','0000-00-00',2407,0,2463,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 17:27:05','','0000-00-00 00:00:00',0),(7491,0,0,6281,'2526','H','O',6928,'',0,'2025-12-15','0000-00-00',658,0,688,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 17:27:28','','0000-00-00 00:00:00',0),(7492,0,0,6266,'2526','H','O',6929,'',0,'2025-12-15','0000-00-00',3182,0,3268,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-15','Y','N','N','','N',0.00,'','Y','FOC','','HO 6916','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 17:31:41','reception','2025-12-15 17:32:10',0),(7493,0,0,6282,'2526','H','O',6930,'',0,'2025-12-15','0000-00-00',4124,0,4237,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 17:32:25','','0000-00-00 00:00:00',0),(7494,0,0,6283,'2526','H','O',6931,'',0,'2025-12-15','0000-00-00',4125,0,4238,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 17:33:44','','0000-00-00 00:00:00',0),(7495,0,0,6284,'2526','H','O',6932,'',0,'2025-12-15','0000-00-00',3819,0,3349,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 17:34:21','','0000-00-00 00:00:00',0),(7496,0,0,6285,'2526','H','O',6933,'',0,'2025-12-15','0000-00-00',4126,0,4239,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','48556','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 17:42:12','','0000-00-00 00:00:00',0),(7497,0,0,6278,'2526','H','O',6934,'',0,'2025-12-15','0000-00-00',4057,0,4164,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 17:43:55','','0000-00-00 00:00:00',0),(7498,0,0,674,'2526','H','I',274,'',0,'2025-12-15','0000-00-00',0,50,606,0,'D27','',0,-17500.00,0.00,0.00,-17500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','1','AXIS BANK','','1234','','',0.00,0,0,'0000-00-00','','N','N','F','N',7000.00,'','Y','SET KARVANU BAKI','','HI 272','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-15 17:45:47','','0000-00-00 00:00:00',0),(7499,0,0,6287,'2526','H','O',6935,'',0,'2025-12-15','0000-00-00',4127,0,4240,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 17:53:38','','0000-00-00 00:00:00',0),(7500,0,0,674,'2526','H','D',291,'',0,'2025-12-15','0000-00-00',0,50,606,0,'D27','',0,33546.00,0.00,0.00,33546.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',33546.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-15 17:54:38','vishal','2025-12-15 18:00:03',0),(7501,0,0,6288,'2526','H','O',6936,'',0,'2025-12-15','0000-00-00',4128,0,4241,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 17:59:52','','0000-00-00 00:00:00',0),(7502,0,0,674,'2526','H','I',275,'',0,'2025-12-15','0000-00-00',0,50,606,0,'D27','',0,33546.00,0.00,0.00,33546.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','1','hdfc argo','','50','','',33546.00,0,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(7503,0,0,6282,'2526','H','O',6937,'',0,'2025-12-15','0000-00-00',4124,0,4237,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 18:01:47','','0000-00-00 00:00:00',0),(7504,0,0,6289,'2526','H','O',6938,'',0,'2025-12-15','0000-00-00',4129,0,4242,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 18:03:48','','0000-00-00 00:00:00',0),(7505,0,0,6286,'2526','H','O',6939,'',0,'2025-12-15','0000-00-00',3973,0,4080,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 18:06:09','','0000-00-00 00:00:00',0),(7506,0,0,6291,'2526','H','O',6940,'',0,'2025-12-15','0000-00-00',4131,0,4244,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 18:07:50','','0000-00-00 00:00:00',0),(7507,0,0,6290,'2526','H','O',6941,'',0,'2025-12-15','0000-00-00',4130,0,4243,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','98000','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 18:08:29','','0000-00-00 00:00:00',0),(7508,0,0,6292,'2526','H','O',6942,'',0,'2025-12-15','0000-00-00',4132,0,4245,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 18:08:54','','0000-00-00 00:00:00',0),(7509,0,0,6293,'2526','H','O',6943,'',0,'2025-12-15','0000-00-00',2497,0,2555,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 18:11:22','','0000-00-00 00:00:00',0),(7510,0,0,6288,'2526','H','O',6944,'',0,'2025-12-15','0000-00-00',4128,0,4241,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 18:13:24','','0000-00-00 00:00:00',0),(7511,0,0,6275,'2526','H','O',6945,'',0,'2025-12-15','0000-00-00',4121,0,4234,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 18:13:30','','0000-00-00 00:00:00',0),(7512,0,0,6294,'2526','H','O',6946,'',0,'2025-12-15','0000-00-00',4133,0,4246,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','fedral bank','','91296','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 18:15:55','','0000-00-00 00:00:00',0),(7513,0,0,6290,'2526','H','O',6947,'',0,'2025-12-15','0000-00-00',4130,0,4243,0,'D14','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-15 18:16:37','','0000-00-00 00:00:00',0),(7514,0,0,6295,'2526','H','O',6948,'',0,'2025-12-15','0000-00-00',4134,0,4247,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','16914','','scan',900.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','300 DISCOUNT','HO 6978','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 18:16:38','reception','2025-12-15 19:58:53',0),(7515,0,0,6296,'2526','H','O',6949,'',0,'2025-12-15','0000-00-00',1305,0,1344,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 18:19:28','','0000-00-00 00:00:00',0),(7516,0,0,6283,'2526','H','O',6950,'',0,'2025-12-15','0000-00-00',4125,0,4238,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 18:22:40','','0000-00-00 00:00:00',0),(7517,0,0,6298,'2526','H','O',6951,'',0,'2025-12-15','0000-00-00',736,0,767,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 18:23:04','','0000-00-00 00:00:00',0),(7518,0,0,6300,'2526','H','O',6952,'',0,'2025-12-15','0000-00-00',4135,0,4248,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 18:29:35','','0000-00-00 00:00:00',0),(7519,0,0,6303,'2526','H','O',6953,'',0,'2025-12-15','0000-00-00',975,0,1008,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 18:30:19','','0000-00-00 00:00:00',0),(7520,0,0,6302,'2526','H','O',6954,'',0,'2025-12-15','0000-00-00',4137,0,3764,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 18:30:36','','0000-00-00 00:00:00',0),(7521,0,0,6301,'2526','H','O',6955,'',0,'2025-12-15','0000-00-00',4136,0,4249,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 18:30:39','','0000-00-00 00:00:00',0),(7522,0,0,6285,'2526','H','O',6956,'',0,'2025-12-15','0000-00-00',4126,0,4239,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','05617','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 18:41:02','','0000-00-00 00:00:00',0),(7523,0,0,6304,'2526','H','O',6957,'',0,'2025-12-15','0000-00-00',2755,0,2825,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','76048','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 18:41:11','','0000-00-00 00:00:00',0),(7524,0,0,6273,'2526','H','O',6958,'',0,'2025-12-15','0000-00-00',3730,0,3833,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 18:43:52','','0000-00-00 00:00:00',0),(7525,0,0,6305,'2526','H','O',6959,'',0,'2025-12-15','0000-00-00',4138,0,4250,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 18:44:15','','0000-00-00 00:00:00',0),(7526,0,0,6306,'2526','H','O',6960,'',0,'2025-12-15','0000-00-00',4139,0,4251,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','57990','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 18:48:19','','0000-00-00 00:00:00',0),(7527,0,0,6295,'2526','H','O',6961,'',0,'2025-12-15','0000-00-00',4134,0,4247,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','33010','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 18:52:03','','0000-00-00 00:00:00',0),(7528,0,0,6308,'2526','H','O',6962,'',0,'2025-12-15','0000-00-00',3319,0,3411,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 18:55:53','','0000-00-00 00:00:00',0),(7529,0,0,6309,'2526','H','O',6963,'',0,'2025-12-15','0000-00-00',4140,0,4252,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC','','34103','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 18:57:31','','0000-00-00 00:00:00',0),(7530,0,0,6310,'2526','H','O',6964,'',0,'2025-12-15','0000-00-00',4141,0,4253,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 18:59:48','','0000-00-00 00:00:00',0),(7531,0,0,6311,'2526','H','O',6965,'',0,'2025-12-15','0000-00-00',2027,0,2081,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 19:02:06','','0000-00-00 00:00:00',0),(7532,0,0,6312,'2526','H','O',6966,'',0,'2025-12-15','0000-00-00',280,0,296,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 19:03:23','','0000-00-00 00:00:00',0),(7533,0,0,6212,'2526','H','O',6967,'',0,'2025-12-15','0000-00-00',4088,0,4198,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 19:03:30','','0000-00-00 00:00:00',0),(7534,0,0,6314,'2526','H','O',6968,'',0,'2025-12-15','0000-00-00',1894,0,1941,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 19:17:13','','0000-00-00 00:00:00',0),(7535,0,0,6316,'2526','H','O',6969,'',0,'2025-12-15','0000-00-00',4142,0,4254,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 19:21:24','','0000-00-00 00:00:00',0),(7536,0,0,6317,'2526','H','O',6970,'',0,'2025-12-15','0000-00-00',3310,0,3399,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','60112','','scan',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 19:21:44','','0000-00-00 00:00:00',0),(7537,0,0,6300,'2526','H','O',6971,'',0,'2025-12-15','0000-00-00',4135,0,4248,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','YES BANK','','74783','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 19:23:41','','0000-00-00 00:00:00',0),(7538,0,0,6319,'2526','H','O',6972,'',0,'2025-12-15','0000-00-00',2685,0,2754,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BANK','','07301','','scan ',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 6977','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 19:23:47','drashti','2025-12-15 19:50:10',0),(7539,0,0,6271,'2526','H','O',6973,'',0,'2025-12-15','0000-00-00',4119,0,3350,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 19:26:50','','0000-00-00 00:00:00',0),(7540,0,0,5831,'2526','H','I',276,'',0,'2025-12-13','0000-00-00',0,273,4001,0,'D27','',0,21700.00,0.00,0.00,21700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-21700,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-15 19:34:00','','0000-00-00 00:00:00',0),(7541,0,0,6321,'2526','H','O',6974,'',0,'2025-12-15','0000-00-00',4144,0,4256,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 19:36:43','','0000-00-00 00:00:00',0),(7542,0,0,6322,'2526','H','O',6975,'',0,'2025-12-15','0000-00-00',3854,0,3963,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 19:38:41','','0000-00-00 00:00:00',0),(7543,0,0,6323,'2526','H','O',6976,'',0,'2025-12-15','0000-00-00',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','14919','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 19:48:58','','0000-00-00 00:00:00',0),(7544,0,0,6319,'2526','H','O',6977,'',0,'2025-12-15','0000-00-00',2685,0,2754,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','BANK','','07301','','',-400.00,0,0,'2025-12-15','Y','N','N','','N',0.00,'','Y','FOC','','HO 6972','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 19:50:10','drashti','2025-12-15 19:50:47',0),(7545,0,0,6295,'2526','H','O',6978,'',0,'2025-12-15','0000-00-00',4134,0,4247,0,'D06','',0,-900.00,0.00,0.00,-900.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','SBI','','16914','','SCAN',-900.00,0,0,'2025-12-15','Y','N','N','','N',0.00,'','Y','300 DISCOUNT','','HO 6948','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 19:58:53','reception','2025-12-15 19:59:23',0),(7546,0,0,6295,'2526','H','O',6979,'',0,'2025-12-15','0000-00-00',4134,0,4247,0,'D06','',0,900.00,0.00,0.00,900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI','','16914','','scan',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 20:01:11','','0000-00-00 00:00:00',0),(7547,0,0,6324,'2526','H','O',6980,'',0,'2025-12-15','0000-00-00',4145,0,4257,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-15 20:03:35','','0000-00-00 00:00:00',0),(7548,0,0,6325,'2526','H','O',6981,'',0,'2025-12-15','0000-00-00',4146,0,4258,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','69944','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 20:05:07','','0000-00-00 00:00:00',0),(7549,0,0,6326,'2526','H','O',6982,'',0,'2025-12-15','0000-00-00',3378,0,3473,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','08205','','scan     ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-15 20:09:32','','0000-00-00 00:00:00',0),(7550,0,0,6327,'2526','H','O',6983,'',0,'2025-12-15','0000-00-00',4147,0,4259,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 20:16:50','','0000-00-00 00:00:00',0),(7551,0,0,6328,'2526','H','O',6984,'',0,'2025-12-15','0000-00-00',3827,0,3932,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-15 20:18:51','','0000-00-00 00:00:00',0),(7552,0,0,6167,'2526','H','D',292,'',0,'2025-12-15','0000-00-00',0,287,4174,0,'D27','',0,7400.00,0.00,0.00,7400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',400.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-15 21:10:41','vishal','2025-12-15 21:10:55',0),(7553,0,0,6167,'2526','H','I',277,'',0,'2025-12-15','0000-00-00',0,287,4174,0,'D27','',0,7400.00,0.00,0.00,7400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7400,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-15 21:26:57','','0000-00-00 00:00:00',0),(7554,0,0,6331,'2526','H','O',6985,'',0,'2025-12-16','0000-00-00',2791,0,2859,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 10:00:13','','0000-00-00 00:00:00',0),(7555,0,0,6332,'2526','H','O',6986,'',0,'2025-12-16','0000-00-00',813,0,844,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','68502','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 10:01:28','','0000-00-00 00:00:00',0),(7556,0,0,6333,'2526','H','O',6987,'',0,'2025-12-16','0000-00-00',4148,0,4261,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 10:02:49','','0000-00-00 00:00:00',0),(7557,0,0,6335,'2526','H','O',6988,'',0,'2025-12-16','0000-00-00',4149,0,4263,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 10:06:52','','0000-00-00 00:00:00',0),(7558,0,0,6336,'2526','H','O',6989,'',0,'2025-12-16','0000-00-00',4150,0,4264,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','BOB BANK','','38581','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 10:10:04','','0000-00-00 00:00:00',0),(7559,0,0,6337,'2526','H','O',6990,'',0,'2025-12-16','0000-00-00',3619,0,3722,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 10:13:34','','0000-00-00 00:00:00',0),(7560,0,0,6338,'2526','H','O',6991,'',0,'2025-12-16','0000-00-00',3569,0,3669,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 10:17:58','','0000-00-00 00:00:00',0),(7561,0,0,6339,'2526','H','O',6992,'',0,'2025-12-16','0000-00-00',2579,0,2640,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 10:24:13','','0000-00-00 00:00:00',0),(7562,0,0,6340,'2526','H','O',6993,'',0,'2025-12-16','0000-00-00',4151,0,4265,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 10:25:41','','0000-00-00 00:00:00',0),(7563,0,0,6341,'2526','H','O',6994,'',0,'2025-12-16','0000-00-00',4152,0,4266,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 10:28:24','','0000-00-00 00:00:00',0),(7564,0,0,6342,'2526','H','O',6995,'',0,'2025-12-16','0000-00-00',267,0,283,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 10:30:14','','0000-00-00 00:00:00',0),(7565,0,0,6343,'2526','H','O',6996,'',0,'2025-12-16','0000-00-00',918,0,949,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 10:38:01','','0000-00-00 00:00:00',0),(7566,0,0,6344,'2526','H','O',6997,'',0,'2025-12-16','0000-00-00',4153,0,4267,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 10:38:56','','0000-00-00 00:00:00',0),(7567,0,0,6345,'2526','H','O',6998,'',0,'2025-12-16','0000-00-00',3571,0,3522,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-16 10:39:08','','0000-00-00 00:00:00',0),(7568,0,0,6347,'2526','H','O',6999,'',0,'2025-12-16','0000-00-00',1549,0,1592,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 10:41:07','','0000-00-00 00:00:00',0),(7569,0,0,6348,'2526','H','O',7000,'',0,'2025-12-16','0000-00-00',4154,0,4268,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 10:44:41','','0000-00-00 00:00:00',0),(7570,0,0,6349,'2526','H','O',7001,'',0,'2025-12-16','0000-00-00',1241,0,1282,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 10:48:38','','0000-00-00 00:00:00',0),(7571,0,0,6350,'2526','H','O',7002,'',0,'2025-12-16','0000-00-00',2908,0,2986,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 10:50:03','','0000-00-00 00:00:00',0),(7572,0,0,6351,'2526','H','O',7003,'',0,'2025-12-16','0000-00-00',4155,0,4269,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 10:53:09','','0000-00-00 00:00:00',0),(7573,0,0,6352,'2526','H','O',7004,'',0,'2025-12-16','0000-00-00',4156,0,4270,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 7009','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-16 11:01:59','shweta','2025-12-16 11:11:54',0),(7574,0,0,6353,'2526','H','O',7005,'',0,'2025-12-16','0000-00-00',4157,0,4271,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 11:06:22','','0000-00-00 00:00:00',0),(7575,0,0,6355,'2526','H','O',7006,'',0,'2025-12-16','0000-00-00',4159,0,4273,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 11:09:41','','0000-00-00 00:00:00',0),(7576,0,0,6357,'2526','H','O',7007,'',0,'2025-12-16','0000-00-00',716,0,747,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 11:10:42','','0000-00-00 00:00:00',0),(7577,0,0,6201,'2526','H','D',293,'',0,'2025-12-16','0000-00-00',0,288,4189,0,'D02','',0,20000.00,0.00,0.00,20000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-16 11:10:52','vishal','2025-12-16 11:15:47',0),(7578,0,0,6356,'2526','H','O',7008,'',0,'2025-12-16','0000-00-00',4160,0,4274,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','axis bank','','64219','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 11:11:37','','0000-00-00 00:00:00',0),(7579,0,0,6352,'2526','H','O',7009,'',0,'2025-12-16','0000-00-00',4156,0,4270,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-16','Y','N','N','','N',0.00,'','Y','200 DISCOUNT','','HO 7004','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-16 11:11:54','shweta','2025-12-16 11:12:36',0),(7580,0,0,6352,'2526','H','O',7010,'',0,'2025-12-16','0000-00-00',4156,0,4270,0,'D03','',0,500.00,0.00,0.00,500.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-16 11:13:20','','0000-00-00 00:00:00',0),(7581,0,0,6336,'2526','H','O',7011,'',0,'2025-12-16','0000-00-00',4150,0,4264,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','20751','','scan',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 11:15:52','','0000-00-00 00:00:00',0),(7582,0,0,6201,'2526','H','I',278,'',0,'2025-12-16','0000-00-00',0,288,4189,0,'D02','',0,20000.00,0.00,0.00,20000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-16 11:15:58','','0000-00-00 00:00:00',0),(7583,0,0,6359,'2526','H','O',7012,'',0,'2025-12-16','0000-00-00',633,0,663,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 11:18:20','','0000-00-00 00:00:00',0),(7584,0,0,6358,'2526','H','O',7013,'',0,'2025-12-16','0000-00-00',4161,0,4275,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 11:18:32','','0000-00-00 00:00:00',0),(7585,0,0,6352,'2526','H','O',7014,'',0,'2025-12-16','0000-00-00',4156,0,4270,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-16 11:19:31','','0000-00-00 00:00:00',0),(7586,0,0,6360,'2526','H','O',7015,'',0,'2025-12-16','0000-00-00',4162,0,4276,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 11:19:33','','0000-00-00 00:00:00',0),(7587,0,0,6331,'2526','H','O',7016,'',0,'2025-12-16','0000-00-00',2791,0,2859,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 11:20:42','','0000-00-00 00:00:00',0),(7588,0,0,6361,'2526','H','O',7017,'',0,'2025-12-16','0000-00-00',4163,0,4277,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 11:21:02','','0000-00-00 00:00:00',0),(7589,0,0,6363,'2526','H','O',7018,'',0,'2025-12-16','0000-00-00',4164,0,4278,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 11:27:47','','0000-00-00 00:00:00',0),(7590,0,0,6364,'2526','H','O',7019,'',0,'2025-12-16','0000-00-00',4165,0,4279,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 11:28:54','','0000-00-00 00:00:00',0),(7591,0,0,6365,'2526','H','O',7020,'',0,'2025-12-16','0000-00-00',4166,0,4280,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 11:29:34','','0000-00-00 00:00:00',0),(7592,0,0,6366,'2526','H','O',7021,'',0,'2025-12-16','0000-00-00',912,0,943,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 11:31:23','','0000-00-00 00:00:00',0),(7593,0,0,6367,'2526','H','O',7022,'',0,'2025-12-16','0000-00-00',2471,0,2529,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-16 11:32:23','','0000-00-00 00:00:00',0),(7594,0,0,6348,'2526','H','O',7023,'',0,'2025-12-16','0000-00-00',4154,0,4268,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 11:33:53','','0000-00-00 00:00:00',0),(7595,0,0,6335,'2526','H','O',7024,'',0,'2025-12-16','0000-00-00',4149,0,4263,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 11:34:43','','0000-00-00 00:00:00',0),(7596,0,0,6368,'2526','H','O',7025,'',0,'2025-12-16','0000-00-00',4167,0,4281,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 11:34:51','','0000-00-00 00:00:00',0),(7598,0,0,6369,'2526','H','O',7026,'',0,'2025-12-16','0000-00-00',3305,0,3394,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 11:40:05','','0000-00-00 00:00:00',0),(7599,0,0,6370,'2526','H','O',7027,'',0,'2025-12-16','0000-00-00',4168,0,4282,0,'D27','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 11:45:16','','0000-00-00 00:00:00',0),(7600,0,0,6371,'2526','H','O',7028,'',0,'2025-12-16','0000-00-00',4169,0,4283,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 11:45:36','','0000-00-00 00:00:00',0),(7601,0,0,6372,'2526','H','O',7029,'',0,'2025-12-16','0000-00-00',4170,0,4123,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 11:46:58','','0000-00-00 00:00:00',0),(7602,0,0,6274,'2526','H','I',279,'',0,'2025-12-16','0000-00-00',0,293,4233,0,'D14','',0,22450.00,0.00,0.00,22450.00,2450.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','','N','Y','F','N',0.00,'','Y','DEATH','HI 280','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(7603,0,0,6373,'2526','H','O',7030,'',0,'2025-12-16','0000-00-00',4171,0,4284,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 11:51:26','','0000-00-00 00:00:00',0),(7604,0,0,6374,'2526','H','O',7031,'',0,'2025-12-16','0000-00-00',4172,0,4285,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 7037','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 11:52:55','drashti','2025-12-16 12:11:35',0),(7605,0,0,6351,'2526','H','O',7032,'',0,'2025-12-16','0000-00-00',4155,0,4269,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 11:56:42','','0000-00-00 00:00:00',0),(7606,0,0,6375,'2526','H','O',7033,'',0,'2025-12-16','0000-00-00',4173,0,4286,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 11:58:43','','0000-00-00 00:00:00',0),(7607,0,0,6376,'2526','H','O',7034,'',0,'2025-12-16','0000-00-00',4174,0,4287,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 12:00:23','','0000-00-00 00:00:00',0),(7608,0,0,6377,'2526','H','O',7035,'',0,'2025-12-16','0000-00-00',2128,0,2179,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 7062','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 12:00:45','reception','2025-12-16 14:11:41',0),(7609,0,0,6341,'2526','H','O',7036,'',0,'2025-12-16','0000-00-00',4152,0,4266,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 12:05:45','','0000-00-00 00:00:00',0),(7610,0,0,6374,'2526','H','O',7037,'',0,'2025-12-16','0000-00-00',4172,0,4285,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-12-16','Y','N','N','','N',0.00,'','Y','CANCEL','','HO 7031','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 12:11:35','drashti','2025-12-16 12:12:02',0),(7611,0,0,6379,'2526','H','O',7038,'',0,'2025-12-16','0000-00-00',4176,0,4289,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 12:16:57','','0000-00-00 00:00:00',0),(7612,0,0,6380,'2526','H','O',7039,'',0,'2025-12-16','0000-00-00',4177,0,4290,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 12:21:53','','0000-00-00 00:00:00',0),(7613,0,0,6362,'2526','H','O',7040,'',0,'2025-12-16','0000-00-00',3538,0,3640,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 12:25:25','','0000-00-00 00:00:00',0),(7614,0,0,6373,'2526','H','O',7041,'',0,'2025-12-16','0000-00-00',4171,0,4284,0,'D06','',0,6900.00,0.00,0.00,6900.00,1300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','boi','','90467','','scan',5600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 12:36:06','','0000-00-00 00:00:00',0),(7615,0,0,6380,'2526','H','O',7042,'',0,'2025-12-16','0000-00-00',4177,0,4290,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 12:37:26','','0000-00-00 00:00:00',0),(7616,0,0,6155,'2526','H','D',295,'',0,'2025-12-16','0000-00-00',4033,282,4140,0,'D02','',0,65800.00,0.00,0.00,65800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-45000,0,'0000-00-00','','N','N','F','N',20800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-16 12:39:17','vishal','2025-12-16 13:58:49',0),(7617,0,0,6382,'2526','H','O',7043,'',0,'2025-12-16','0000-00-00',4116,0,4226,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 12:41:47','','0000-00-00 00:00:00',0),(7618,0,0,6383,'2526','H','O',7044,'',0,'2025-12-16','0000-00-00',4179,0,4292,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 12:45:29','','0000-00-00 00:00:00',0),(7619,0,0,6384,'2526','H','O',7045,'',0,'2025-12-16','0000-00-00',4065,0,4175,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-16 12:48:04','','0000-00-00 00:00:00',0),(7620,0,0,6385,'2526','H','O',7046,'',0,'2025-12-16','0000-00-00',3246,0,3328,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 12:51:38','','0000-00-00 00:00:00',0),(7621,0,0,6386,'2526','H','O',7047,'',0,'2025-12-16','0000-00-00',4180,0,4293,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 7054','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 12:55:48','drashti','2025-12-16 13:15:07',0),(7622,0,0,6383,'2526','H','O',7048,'',0,'2025-12-16','0000-00-00',4179,0,4292,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 12:58:35','','0000-00-00 00:00:00',0),(7623,0,0,6387,'2526','H','O',7049,'',0,'2025-12-16','0000-00-00',4181,0,4294,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','federal bank','','54572','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 13:01:15','','0000-00-00 00:00:00',0),(7624,0,0,6274,'2526','H','I',280,'',0,'2025-12-16','0000-00-00',0,293,4233,0,'D14','',0,-22450.00,0.00,0.00,-22450.00,-2450.00,0.00,'',0.00,'0000-00-00','','','',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',0.00,'','Y','DEATH','','HI 279','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-16 13:08:32','','0000-00-00 00:00:00',0),(7625,0,0,6388,'2526','H','O',7050,'',0,'2025-12-16','0000-00-00',4182,0,4295,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 13:09:09','','0000-00-00 00:00:00',0),(7626,0,0,6274,'2526','H','D',296,'',0,'2025-12-16','0000-00-00',0,293,4233,0,'D14','',0,22450.00,0.00,0.00,22450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','','N','N','F','N',2450.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-16 13:10:21','riya','2025-12-16 13:10:54',0),(7627,0,0,6390,'2526','H','O',7051,'',0,'2025-12-16','0000-00-00',4184,0,4297,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 13:10:32','','0000-00-00 00:00:00',0),(7628,0,0,6389,'2526','H','O',7052,'',0,'2025-12-16','0000-00-00',4183,0,4296,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','SBI BANK','','32331','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 13:10:47','','0000-00-00 00:00:00',0),(7629,0,0,6274,'2526','H','I',281,'',0,'2025-12-16','0000-00-00',0,293,4233,0,'D14','',0,22450.00,0.00,0.00,22450.00,2450.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','Y','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(7630,0,0,6392,'2526','H','O',7053,'',0,'2025-12-16','0000-00-00',4185,0,4298,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 13:14:20','','0000-00-00 00:00:00',0),(7631,0,0,6386,'2526','H','O',7054,'',0,'2025-12-16','0000-00-00',4180,0,4293,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-12-16','Y','N','N','','N',0.00,'','Y','FOC','','HO 7047','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 13:15:07','drashti','2025-12-16 13:15:25',0),(7632,0,0,6394,'2526','H','O',7055,'',0,'2025-12-16','0000-00-00',4186,0,4299,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 13:17:05','','0000-00-00 00:00:00',0),(7633,0,0,6393,'2526','H','O',7056,'',0,'2025-12-16','0000-00-00',3841,0,3950,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 13:17:14','','0000-00-00 00:00:00',0),(7634,0,0,6387,'2526','H','O',7057,'',0,'2025-12-16','0000-00-00',4181,0,4294,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','fedral bank','','84489','','scan ',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-16 13:21:10','','0000-00-00 00:00:00',0),(7635,0,0,6378,'2526','H','O',7058,'',0,'2025-12-16','0000-00-00',4175,0,4288,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','CRD','sbi','','58542','','card',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 13:45:15','','0000-00-00 00:00:00',0),(7636,0,0,6378,'2526','H','O',7059,'',0,'2025-12-16','0000-00-00',4175,0,4288,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','CRD','sbi','','64030','','card',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 13:49:40','','0000-00-00 00:00:00',0),(7637,0,0,6381,'2526','H','O',7060,'',0,'2025-12-16','0000-00-00',4178,0,4291,0,'D02','',0,1000.00,0.00,0.00,1000.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','sbi','','33693','','scan                          ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 14:04:34','','0000-00-00 00:00:00',0),(7638,0,0,6155,'2526','H','I',282,'',0,'2025-12-16','0000-00-00',4033,282,4140,0,'D02','',0,65800.00,0.00,0.00,65800.00,5800.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-60000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(7639,0,0,6395,'2526','H','O',7061,'',0,'2025-12-16','0000-00-00',2738,0,2808,2808,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 14:09:42','','0000-00-00 00:00:00',0),(7640,0,0,6377,'2526','H','O',7062,'',0,'2025-12-16','0000-00-00',2128,0,2179,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-16','Y','N','Y','','N',0.00,'','Y','FOC','','HO 7035','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 14:11:41','reception','2025-12-16 14:12:06',0),(7641,0,0,6396,'2526','H','O',7063,'',0,'2025-12-16','0000-00-00',4187,0,4300,4300,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','nagrik bank','','94292','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 14:24:14','','0000-00-00 00:00:00',0),(7642,0,0,6396,'2526','H','O',7064,'',0,'2025-12-16','0000-00-00',4187,0,4300,4300,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','nagrik bank','','92719','','scan',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 14:36:22','','0000-00-00 00:00:00',0),(7645,0,0,6264,'2526','H','I',283,'CR',0,'2025-12-16','0000-00-00',0,292,4229,0,'D27','',0,8100.00,0.00,0.00,8100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-8100,0,'0000-00-00','','N','Y','F','N',0.00,'','Y','VISIT MISMATCH','HI 284','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-16 15:24:30','riya','2025-12-16 15:32:13',0),(7646,0,0,6264,'2526','H','I',284,'',0,'2025-12-16','0000-00-00',0,292,4229,0,'D27','',0,-8100.00,0.00,0.00,-8100.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',0.00,'','Y','VISIT MISMATCH','','HI 283','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-16 15:32:13','','0000-00-00 00:00:00',0),(7647,0,0,6264,'2526','H','D',299,'',0,'2025-12-16','0000-00-00',0,292,4229,0,'D27','',0,7300.00,0.00,0.00,7300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-8100,0,'0000-00-00','','N','N','F','N',-800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-16 15:32:48','','0000-00-00 00:00:00',0),(7648,0,0,6264,'2526','H','I',285,'CR',0,'2025-12-16','0000-00-00',0,292,4229,0,'D27','',0,7300.00,0.00,0.00,7300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-800.00,-8100,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-16 15:33:06','','0000-00-00 00:00:00',0),(7649,0,0,6398,'2526','H','O',7065,'CSH',0,'2025-12-16','2025-12-16',4188,0,4302,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 16:21:02','','0000-00-00 00:00:00',0),(7650,0,0,6374,'2526','H','O',7066,'CSH',0,'2025-12-16','2025-12-16',4172,0,4285,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 16:38:32','','0000-00-00 00:00:00',0),(7651,0,0,6399,'2526','H','O',7067,'CSH',0,'2025-12-16','2025-12-16',4189,0,4303,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 16:40:04','','0000-00-00 00:00:00',0),(7652,0,0,6400,'2526','H','O',7068,'CSH',0,'2025-12-16','2025-12-16',284,0,300,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-16 16:40:25','','0000-00-00 00:00:00',0),(7653,0,0,6401,'2526','H','O',7069,'CSH',0,'2025-12-16','2025-12-16',4190,0,4304,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 16:46:59','','0000-00-00 00:00:00',0),(7654,0,0,6402,'2526','H','O',7070,'CSH',0,'2025-12-16','2025-12-16',4140,0,4252,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','hdfc','','46500','','SCAN',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 16:57:29','','0000-00-00 00:00:00',0),(7655,0,0,6403,'2526','H','O',7071,'CSH',0,'2025-12-16','2025-12-16',1459,0,1500,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 17:11:18','','0000-00-00 00:00:00',0),(7656,0,0,6404,'2526','H','O',7072,'CSH',0,'2025-12-16','2025-12-16',4191,0,4305,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 17:24:20','','0000-00-00 00:00:00',0),(7657,0,0,6405,'2526','H','O',7073,'CSH',0,'2025-12-16','2025-12-16',4192,0,4306,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 17:27:51','','0000-00-00 00:00:00',0),(7658,0,0,6401,'2526','H','O',7074,'CSH',0,'2025-12-16','2025-12-16',4190,0,4304,0,'D06','',0,5200.00,0.00,0.00,5200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','68870','','SCAN',5200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 17:40:35','','0000-00-00 00:00:00',0),(7659,0,0,6407,'2526','H','O',7075,'CSH',0,'2025-12-16','2025-12-16',4193,0,4307,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 17:43:21','','0000-00-00 00:00:00',0),(7660,0,0,6408,'2526','H','O',7076,'CSH',0,'2025-12-16','2025-12-16',4194,0,4308,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-16 17:44:05','','0000-00-00 00:00:00',0),(7661,0,0,6409,'2526','H','O',7077,'CSH',0,'2025-12-16','2025-12-16',964,0,997,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 17:45:50','','0000-00-00 00:00:00',0),(7662,0,0,6329,'2526','H','D',300,'',0,'2025-12-16','0000-00-00',0,294,3719,0,'D02','',0,4800.00,0.00,0.00,4800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',4800.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-16 17:49:28','','0000-00-00 00:00:00',0),(7663,0,0,6410,'2526','H','O',7078,'CSH',0,'2025-12-16','2025-12-16',4195,0,4309,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','nagrik bank','','88119','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 17:51:18','','0000-00-00 00:00:00',0),(7664,0,0,6411,'2526','H','O',7079,'CSH',0,'2025-12-16','2025-12-16',4023,0,3780,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 17:55:15','','0000-00-00 00:00:00',0),(7665,0,0,6329,'2526','H','I',286,'CR',0,'2025-12-16','0000-00-00',0,294,3719,0,'D02','',0,4800.00,0.00,0.00,4800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-4800,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-16 17:56:44','','0000-00-00 00:00:00',0),(7666,0,0,6398,'2526','H','O',7080,'CSH',0,'2025-12-16','2025-12-16',4188,0,4302,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 17:57:14','','0000-00-00 00:00:00',0),(7667,0,0,6412,'2526','H','O',7081,'CSH',0,'2025-12-16','2025-12-16',852,0,884,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 17:58:24','','0000-00-00 00:00:00',0),(7668,0,0,6413,'2526','H','O',7082,'CSH',0,'2025-12-16','2025-12-16',4196,0,4310,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 18:00:05','','0000-00-00 00:00:00',0),(7669,0,0,6414,'2526','H','O',7083,'CSH',0,'2025-12-16','2025-12-16',4197,0,4311,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 18:01:54','','0000-00-00 00:00:00',0),(7670,0,0,6416,'2526','H','O',7084,'CSH',0,'2025-12-16','2025-12-16',4198,0,4312,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-16 18:05:34','','0000-00-00 00:00:00',0),(7671,0,0,6417,'2526','H','O',7085,'CSH',0,'2025-12-16','2025-12-16',4199,0,4313,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','F.O.C','HO 7093','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 18:06:10','urvashi','2025-12-16 18:22:30',0),(7672,0,0,6418,'2526','H','O',7086,'CSH',0,'2025-12-16','2025-12-16',3332,0,3424,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS','','96104','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-16 18:10:49','','0000-00-00 00:00:00',0),(7673,0,0,6416,'2526','H','O',7087,'CSH',0,'2025-12-16','2025-12-16',4198,0,4312,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-16 18:16:28','','0000-00-00 00:00:00',0),(7674,0,0,6419,'2526','H','O',7088,'CSH',0,'2025-12-16','2025-12-16',3310,0,3399,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 18:18:24','','0000-00-00 00:00:00',0),(7675,0,0,6421,'2526','H','O',7089,'CSH',0,'2025-12-16','2025-12-16',4172,0,4285,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 18:19:43','','0000-00-00 00:00:00',0),(7676,0,0,6420,'2526','H','O',7090,'CSH',0,'2025-12-16','2025-12-16',4200,0,4314,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 18:19:58','','0000-00-00 00:00:00',0),(7677,0,0,6423,'2526','H','O',7091,'CSH',0,'2025-12-16','2025-12-16',2241,0,2297,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 18:21:39','','0000-00-00 00:00:00',0),(7678,0,0,6422,'2526','H','O',7092,'CSH',0,'2025-12-16','2025-12-16',2930,0,3007,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 18:21:42','','0000-00-00 00:00:00',0),(7679,0,0,6417,'2526','H','O',7093,'',0,'2025-12-16','0000-00-00',4199,0,4313,0,'D27','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-12-16','Y','N','Y','','N',0.00,'','Y','F.O.C','','HO 7085','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 18:22:30','urvashi','2025-12-16 18:22:58',0),(7680,0,0,6415,'2526','H','O',7094,'CSH',0,'2025-12-16','2025-12-16',2542,0,2599,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 18:23:36','','0000-00-00 00:00:00',0),(7681,0,0,6424,'2526','H','O',7095,'CSH',0,'2025-12-16','2025-12-16',4201,0,4315,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 18:24:44','','0000-00-00 00:00:00',0),(7682,0,0,6425,'2526','H','O',7096,'CSH',0,'2025-12-16','2025-12-16',3694,0,3799,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI BANK','','11547','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 18:27:27','','0000-00-00 00:00:00',0),(7683,0,0,6426,'2526','H','O',7097,'CSH',0,'2025-12-16','2025-12-16',4202,0,4316,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 18:29:34','','0000-00-00 00:00:00',0),(7684,0,0,6427,'2526','H','O',7098,'CSH',0,'2025-12-16','2025-12-16',3593,0,3691,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 18:33:51','','0000-00-00 00:00:00',0),(7685,0,0,6428,'2526','H','O',7099,'CSH',0,'2025-12-16','2025-12-16',4203,0,4317,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 18:34:15','','0000-00-00 00:00:00',0),(7686,0,0,6430,'2526','H','O',7100,'CSH',0,'2025-12-16','2025-12-16',676,0,705,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','REF DR D B','HO 7121','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 18:44:12','urvashi','2025-12-16 19:37:36',0),(7687,0,0,6431,'2526','H','O',7101,'CSH',0,'2025-12-16','2025-12-16',4204,0,4318,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 18:45:38','','0000-00-00 00:00:00',0),(7688,0,0,6432,'2526','H','O',7102,'CSH',0,'2025-12-16','2025-12-16',2914,0,2991,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 18:46:19','','0000-00-00 00:00:00',0),(7689,0,0,6433,'2526','H','O',7103,'CSH',0,'2025-12-16','2025-12-16',4205,0,4319,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 18:48:33','','0000-00-00 00:00:00',0),(7690,0,0,6434,'2526','H','O',7104,'CSH',0,'2025-12-16','2025-12-16',3099,0,3185,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 18:50:24','','0000-00-00 00:00:00',0),(7691,0,0,6405,'2526','H','O',7105,'CSH',0,'2025-12-16','2025-12-16',4192,0,4306,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','hdfc','','48228','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 18:50:31','','0000-00-00 00:00:00',0),(7692,0,0,6435,'2526','H','O',7106,'CSH',0,'2025-12-16','2025-12-16',3814,0,3920,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 18:52:11','','0000-00-00 00:00:00',0),(7693,0,0,6437,'2526','H','O',7107,'CSH',0,'2025-12-16','2025-12-16',245,0,260,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 18:54:10','','0000-00-00 00:00:00',0),(7694,0,0,6436,'2526','H','O',7108,'CSH',0,'2025-12-16','2025-12-16',2992,0,3070,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI BANK','','99984','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 18:55:49','','0000-00-00 00:00:00',0),(7695,0,0,6438,'2526','H','O',7109,'CSH',0,'2025-12-16','2025-12-16',4206,0,4320,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB BANK','','71390','','scan ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 18:57:37','','0000-00-00 00:00:00',0),(7696,0,0,6439,'2526','H','O',7110,'CSH',0,'2025-12-16','2025-12-16',3599,0,3697,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 18:59:49','','0000-00-00 00:00:00',0),(7697,0,0,6440,'2526','H','O',7111,'CSH',0,'2025-12-16','2025-12-16',4207,0,4321,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 19:04:50','','0000-00-00 00:00:00',0),(7698,0,0,6438,'2526','H','O',7112,'CSH',0,'2025-12-16','2025-12-16',4206,0,4320,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB BANK','','95584','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 19:08:13','','0000-00-00 00:00:00',0),(7699,0,0,6441,'2526','H','O',7113,'CSH',0,'2025-12-16','2025-12-16',4208,0,4322,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 19:08:27','','0000-00-00 00:00:00',0),(7700,0,0,6442,'2526','H','O',7114,'CSH',0,'2025-12-16','2025-12-16',4209,0,4323,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 19:10:46','','0000-00-00 00:00:00',0),(7701,0,0,6443,'2526','H','O',7115,'CSH',0,'2025-12-16','2025-12-16',3829,0,3934,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 19:15:09','','0000-00-00 00:00:00',0),(7702,0,0,6442,'2526','H','O',7116,'CSH',0,'2025-12-16','2025-12-16',4209,0,4323,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 19:17:22','','0000-00-00 00:00:00',0),(7703,0,0,6406,'2526','H','O',7117,'CSH',0,'2025-12-16','2025-12-16',4057,0,4164,0,'D02','',0,4000.00,0.00,0.00,4000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-16 19:17:30','','0000-00-00 00:00:00',0),(7704,0,0,6408,'2526','H','O',7118,'CSH',0,'2025-12-16','2025-12-16',4194,0,4308,0,'D14','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-16 19:30:18','','0000-00-00 00:00:00',0),(7705,0,0,6330,'2526','H','D',301,'',0,'2025-12-16','0000-00-00',0,295,4260,0,'D27','',0,6600.00,0.00,0.00,6600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6000,0,'0000-00-00','','N','N','F','N',600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-16 19:32:17','vishal','2025-12-16 19:34:26',0),(7706,0,0,6334,'2526','H','D',302,'',0,'2025-12-16','0000-00-00',0,296,4262,0,'D27','',0,13300.00,0.00,0.00,13300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',-1700.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-16 19:34:19','','0000-00-00 00:00:00',0),(7707,0,0,6444,'2526','H','O',7119,'CSH',0,'2025-12-16','2025-12-16',4210,0,4324,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 19:36:41','','0000-00-00 00:00:00',0),(7708,0,0,6440,'2526','H','O',7120,'CSH',0,'2025-12-16','2025-12-16',4207,0,4321,0,'D06','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 19:37:14','','0000-00-00 00:00:00',0),(7709,0,0,6430,'2526','H','O',7121,'',0,'2025-12-16','0000-00-00',676,0,705,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-12-16','Y','N','Y','','N',0.00,'','Y','REF DR D B','','HO 7100','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 19:37:36','urvashi','2025-12-16 19:37:58',0),(7710,0,0,6440,'2526','H','O',7122,'CSH',0,'2025-12-16','2025-12-16',4207,0,4321,0,'D06','',0,2500.00,0.00,0.00,2500.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','71823','','scan',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-16 19:42:12','','0000-00-00 00:00:00',0),(7711,0,0,6330,'2526','H','I',287,'CR',0,'2025-12-16','0000-00-00',0,295,4260,0,'D27','',0,6600.00,0.00,0.00,6600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-6600,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-16 19:44:36','','0000-00-00 00:00:00',0),(7712,0,0,6446,'2526','H','O',7123,'CSH',0,'2025-12-16','2025-12-16',3957,0,4065,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','IDFC BANK','','24399','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-16 19:48:33','','0000-00-00 00:00:00',0),(7713,0,0,6334,'2526','H','I',288,'CR',0,'2025-12-16','0000-00-00',0,296,4262,0,'D27','',0,13300.00,0.00,0.00,13300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-1700.00,-15000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-16 19:54:45','','0000-00-00 00:00:00',0),(7714,0,0,6408,'2526','H','O',7124,'CSH',0,'2025-12-16','2025-12-16',4194,0,4308,0,'D14','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-16 20:04:02','','0000-00-00 00:00:00',0),(7715,0,0,6449,'2526','H','O',7125,'CSH',0,'2025-12-17','2025-12-17',4211,0,4326,0,'D27','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','88927','','scan',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 08:43:30','','0000-00-00 00:00:00',0),(7716,0,0,6450,'2526','H','O',7126,'CSH',0,'2025-12-17','2025-12-17',4212,0,4327,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','57631','','scan',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 08:46:57','','0000-00-00 00:00:00',0),(7717,0,0,6451,'2526','H','O',7127,'CSH',0,'2025-12-17','2025-12-17',4185,0,4298,0,'D27','',0,550.00,0.00,0.00,550.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOM','','81424','','scan',550.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 08:49:19','','0000-00-00 00:00:00',0),(7718,0,0,6452,'2526','H','O',7128,'CSH',0,'2025-12-17','2025-12-17',4213,0,4328,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 09:50:39','','0000-00-00 00:00:00',0),(7719,0,0,6453,'2526','H','O',7129,'CSH',0,'2025-12-17','2025-12-17',4214,0,4329,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 09:56:17','','0000-00-00 00:00:00',0),(7720,0,0,6455,'2526','H','O',7130,'CSH',0,'2025-12-17','2025-12-17',2291,0,2348,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 10:06:39','','0000-00-00 00:00:00',0),(7721,0,0,6456,'2526','H','O',7131,'CSH',0,'2025-12-17','2025-12-17',1844,0,1890,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 10:13:02','','0000-00-00 00:00:00',0),(7722,0,0,6457,'2526','H','O',7132,'CSH',0,'2025-12-17','2025-12-17',3350,0,3446,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 10:13:42','','0000-00-00 00:00:00',0),(7723,0,0,6458,'2526','H','O',7133,'CSH',0,'2025-12-17','2025-12-17',3205,0,3292,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 10:15:27','','0000-00-00 00:00:00',0),(7724,0,0,6459,'2526','H','O',7134,'CSH',0,'2025-12-17','2025-12-17',4215,0,4330,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 10:17:46','','0000-00-00 00:00:00',0),(7725,0,0,6460,'2526','H','O',7135,'CSH',0,'2025-12-17','2025-12-17',3075,0,3161,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 10:18:46','','0000-00-00 00:00:00',0),(7726,0,0,6462,'2526','H','O',7136,'CSH',0,'2025-12-17','2025-12-17',3091,0,3177,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 10:35:16','','0000-00-00 00:00:00',0),(7727,0,0,6463,'2526','H','O',7137,'CSH',0,'2025-12-17','2025-12-17',4216,0,4331,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 10:39:38','','0000-00-00 00:00:00',0),(7728,0,0,6464,'2526','H','O',7138,'CSH',0,'2025-12-17','2025-12-17',4217,0,4332,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','union bank','','48617','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-17 10:48:34','','0000-00-00 00:00:00',0),(7729,0,0,6465,'2526','H','O',7139,'CSH',0,'2025-12-17','2025-12-17',2853,0,2925,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 10:49:58','','0000-00-00 00:00:00',0),(7730,0,0,6466,'2526','H','O',7140,'CSH',0,'2025-12-17','2025-12-17',4218,0,4333,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 7169','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 10:52:00','reception','2025-12-17 12:00:08',0),(7731,0,0,6454,'2526','H','O',7141,'CSH',0,'2025-12-17','2025-12-17',4057,0,4164,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-17 10:53:10','','0000-00-00 00:00:00',0),(7732,0,0,6467,'2526','H','O',7142,'CSH',0,'2025-12-17','2025-12-17',3973,0,4080,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 10:56:01','','0000-00-00 00:00:00',0),(7733,0,0,6468,'2526','H','O',7143,'CSH',0,'2025-12-17','2025-12-17',4219,0,4334,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-17 10:56:17','','0000-00-00 00:00:00',0),(7734,0,0,6469,'2526','H','O',7144,'CSH',0,'2025-12-17','2025-12-17',4220,0,4335,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 10:58:25','','0000-00-00 00:00:00',0),(7735,0,0,6471,'2526','H','O',7145,'CSH',0,'2025-12-17','2025-12-17',541,0,567,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 11:03:20','','0000-00-00 00:00:00',0),(7736,0,0,6472,'2526','H','O',7146,'CSH',0,'2025-12-17','2025-12-17',4221,0,4336,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 11:03:32','','0000-00-00 00:00:00',0),(7737,0,0,6473,'2526','H','O',7147,'CSH',0,'2025-12-17','2025-12-17',715,0,746,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 11:08:36','','0000-00-00 00:00:00',0),(7738,0,0,6475,'2526','H','O',7148,'CSH',0,'2025-12-17','2025-12-17',25,0,26,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 11:10:16','','0000-00-00 00:00:00',0),(7739,0,0,6474,'2526','H','O',7149,'CSH',0,'2025-12-17','2025-12-17',4222,0,4337,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-17 11:10:38','','0000-00-00 00:00:00',0),(7740,0,0,6476,'2526','H','O',7150,'CSH',0,'2025-12-17','2025-12-17',3369,0,1481,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-17 11:12:00','','0000-00-00 00:00:00',0),(7741,0,0,6477,'2526','H','O',7151,'CSH',0,'2025-12-17','2025-12-17',4223,0,4338,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 7162','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-17 11:13:40','shweta','2025-12-17 11:45:29',0),(7742,0,0,6478,'2526','H','O',7152,'CSH',0,'2025-12-17','2025-12-17',479,0,505,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-17 11:14:23','','0000-00-00 00:00:00',0),(7743,0,0,6479,'2526','H','O',7153,'CSH',0,'2025-12-17','2025-12-17',2531,0,2588,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 11:21:34','','0000-00-00 00:00:00',0),(7744,0,0,6452,'2526','H','O',7154,'CSH',0,'2025-12-17','2025-12-17',4213,0,4328,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 11:22:42','','0000-00-00 00:00:00',0),(7745,0,0,6480,'2526','H','O',7155,'CSH',0,'2025-12-17','2025-12-17',4224,0,4339,0,'D03','',0,850.00,0.00,0.00,850.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',850.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-17 11:22:51','','0000-00-00 00:00:00',0),(7746,0,0,6482,'2526','H','O',7156,'CSH',0,'2025-12-17','2025-12-17',4225,0,4340,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 11:27:56','','0000-00-00 00:00:00',0),(7747,0,0,6483,'2526','H','O',7157,'CSH',0,'2025-12-17','2025-12-17',2214,0,2270,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-17 11:29:02','','0000-00-00 00:00:00',0),(7748,0,0,6484,'2526','H','O',7158,'CSH',0,'2025-12-17','2025-12-17',4226,0,4341,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-17 11:30:27','','0000-00-00 00:00:00',0),(7749,0,0,6463,'2526','H','O',7159,'CSH',0,'2025-12-17','2025-12-17',4216,0,4331,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 11:30:39','','0000-00-00 00:00:00',0),(7750,0,0,6485,'2526','H','O',7160,'CSH',0,'2025-12-17','2025-12-17',2001,0,2052,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 11:37:40','','0000-00-00 00:00:00',0),(7751,0,0,6453,'2526','H','O',7161,'CSH',0,'2025-12-17','2025-12-17',4214,0,4329,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 11:42:54','','0000-00-00 00:00:00',0),(7752,0,0,6477,'2526','H','O',7162,'',0,'2025-12-17','0000-00-00',4223,0,4338,0,'D03','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-17','Y','N','Y','','N',0.00,'','Y','FOC','','HO 7151','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-17 11:45:29','shweta','2025-12-17 11:46:57',0),(7753,0,0,6486,'2526','H','O',7163,'CSH',0,'2025-12-17','2025-12-17',4227,0,4342,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-17 11:48:48','','0000-00-00 00:00:00',0),(7754,0,0,6488,'2526','H','O',7164,'CSH',0,'2025-12-17','2025-12-17',4229,0,4344,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 11:51:52','','0000-00-00 00:00:00',0),(7755,0,0,6487,'2526','H','O',7165,'CSH',0,'2025-12-17','2025-12-17',4228,0,4343,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 11:52:10','','0000-00-00 00:00:00',0),(7756,0,0,6478,'2526','H','O',7166,'CSH',0,'2025-12-17','2025-12-17',479,0,505,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','union','','44650','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-17 11:53:41','','0000-00-00 00:00:00',0),(7757,0,0,6489,'2526','H','O',7167,'CSH',0,'2025-12-17','2025-12-17',4230,0,4345,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 11:54:04','','0000-00-00 00:00:00',0),(7758,0,0,6486,'2526','H','O',7168,'CSH',0,'2025-12-17','2025-12-17',4227,0,4342,0,'D14','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-17 11:57:41','','0000-00-00 00:00:00',0),(7759,0,0,6466,'2526','H','O',7169,'',0,'2025-12-17','0000-00-00',4218,0,4333,0,'D06','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-12-17','Y','N','Y','','N',0.00,'','Y','FOC','','HO 7140','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 12:00:08','reception','2025-12-17 12:00:56',0),(7760,0,0,6469,'2526','H','O',7170,'CSH',0,'2025-12-17','2025-12-17',4220,0,4335,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','CENTRAL BANK','','80038','','SCAN',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 12:13:40','','0000-00-00 00:00:00',0),(7761,0,0,6488,'2526','H','O',7171,'CSH',0,'2025-12-17','2025-12-17',4229,0,4344,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 12:15:44','','0000-00-00 00:00:00',0),(7762,0,0,6489,'2526','H','O',7172,'CSH',0,'2025-12-17','2025-12-17',4230,0,4345,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 12:18:06','','0000-00-00 00:00:00',0),(7763,0,0,6451,'2526','H','O',7173,'CSH',0,'2025-12-17','2025-12-17',4185,0,4298,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','ICICI BANK','','41157','','scan ',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 12:26:54','','0000-00-00 00:00:00',0),(7764,0,0,6472,'2526','H','O',7174,'CSH',0,'2025-12-17','2025-12-17',4221,0,4336,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 12:27:52','','0000-00-00 00:00:00',0),(7765,0,0,6491,'2526','H','O',7175,'CSH',0,'2025-12-17','2025-12-17',3080,0,3166,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 12:32:00','','0000-00-00 00:00:00',0),(7766,0,0,6061,'2526','H','D',303,'',0,'2025-12-17','0000-00-00',4016,277,4124,0,'D27','',0,26000.00,0.00,0.00,26000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-11000,0,'0000-00-00','','N','N','F','N',15000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-17 12:33:40','vishal','2025-12-17 12:39:41',0),(7767,0,0,6493,'2526','H','O',7176,'CSH',0,'2025-12-17','2025-12-17',3772,0,3876,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 12:38:28','','0000-00-00 00:00:00',0),(7768,0,0,6492,'2526','H','O',7177,'CSH',0,'2025-12-17','2025-12-17',4106,0,4215,0,'D02','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-17 12:43:22','','0000-00-00 00:00:00',0),(7769,0,0,6495,'2526','H','O',7178,'CSH',0,'2025-12-17','2025-12-17',4232,0,4347,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 12:43:40','','0000-00-00 00:00:00',0),(7770,0,0,6496,'2526','H','O',7179,'CSH',0,'2025-12-17','2025-12-17',4233,0,4348,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 12:47:28','','0000-00-00 00:00:00',0),(7771,0,0,6494,'2526','H','O',7180,'CSH',0,'2025-12-17','2025-12-17',4231,0,4346,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 13:00:44','','0000-00-00 00:00:00',0),(7772,0,0,6499,'2526','H','O',7181,'CSH',0,'2025-12-17','2025-12-17',3166,0,3252,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','sbi','','92022','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 13:03:36','','0000-00-00 00:00:00',0),(7773,0,0,6501,'2526','H','O',7182,'CSH',0,'2025-12-17','2025-12-17',3378,0,3473,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-17 13:04:45','','0000-00-00 00:00:00',0),(7774,0,0,6497,'2526','H','O',7183,'CSH',0,'2025-12-17','2025-12-17',1005,0,1037,0,'D14','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-17 13:07:21','','0000-00-00 00:00:00',0),(7775,0,0,6500,'2526','H','O',7184,'CSH',0,'2025-12-17','2025-12-17',4234,0,4349,0,'D14','',0,1700.00,0.00,0.00,1700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-17 13:08:49','','0000-00-00 00:00:00',0),(7776,0,0,6502,'2526','H','O',7185,'CSH',0,'2025-12-17','2025-12-17',4235,0,4350,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 13:18:59','','0000-00-00 00:00:00',0),(7777,0,0,6503,'2526','H','O',7186,'CSH',0,'2025-12-17','2025-12-17',2907,0,2984,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-17 13:19:42','','0000-00-00 00:00:00',0),(7778,0,0,6061,'2526','H','I',289,'CR',0,'2025-12-17','0000-00-00',4016,277,4124,0,'D27','',0,26000.00,0.00,0.00,26000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-26000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(7779,0,0,6489,'2526','H','O',7187,'CSH',0,'2025-12-17','2025-12-17',4230,0,4345,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','N','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 13:22:25','','0000-00-00 00:00:00',0),(7780,0,0,6504,'2526','H','O',7188,'CSH',0,'2025-12-17','2025-12-17',280,0,296,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 13:27:29','','0000-00-00 00:00:00',0),(7781,0,0,6505,'2526','H','O',7189,'CSH',0,'2025-12-17','2025-12-17',3018,0,3098,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI BANK','','14700','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 13:36:03','','0000-00-00 00:00:00',0),(7782,0,0,5521,'2526','H','D',304,'',0,'2025-12-17','0000-00-00',0,259,3824,0,'D27','',0,107350.00,0.00,0.00,107350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-97000,0,'0000-00-00','','N','N','F','N',10350.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(7783,0,0,6262,'2526','H','D',305,'',0,'2025-12-17','0000-00-00',0,290,4227,0,'D03','',0,27300.00,0.00,0.00,27300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-15000,0,'0000-00-00','','N','N','F','N',12300.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-17 13:44:20','vishal','2025-12-17 13:56:32',0),(7784,0,0,6502,'2526','H','O',7190,'CSH',0,'2025-12-17','2025-12-17',4235,0,4350,0,'D06','',0,4400.00,0.00,0.00,4400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 13:56:23','','0000-00-00 00:00:00',0),(7785,0,0,6254,'2526','H','D',306,'',0,'2025-12-17','0000-00-00',0,289,4222,0,'D02','',0,25600.00,0.00,0.00,25600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-4000,0,'0000-00-00','','N','N','F','N',21600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-17 14:03:45','vishal','2025-12-17 14:21:59',0),(7786,0,0,5521,'2526','H','I',290,'CR',0,'2025-12-17','0000-00-00',0,259,3824,0,'D27','',0,107350.00,0.00,0.00,107350.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-107350,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(7787,0,0,6262,'2526','H','I',291,'CR',0,'2025-12-17','0000-00-00',0,290,4227,0,'D03','',0,27300.00,0.00,0.00,27300.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-27000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-17 14:27:22','','0000-00-00 00:00:00',0),(7788,0,0,6254,'2526','H','I',292,'CR',0,'2025-12-17','0000-00-00',0,289,4222,0,'D02','',0,25600.00,0.00,0.00,25600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25600,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(7789,0,0,6504,'2526','H','O',7191,'CSH',0,'2025-12-17','2025-12-17',280,0,296,0,'D27','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici bank','','04787','','scan ',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-17 14:51:51','','0000-00-00 00:00:00',0),(7790,0,0,6508,'2526','H','O',7192,'CSH',0,'2025-12-17','2025-12-17',3327,0,3419,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 7208','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 16:24:54','reception','2025-12-17 17:51:04',0),(7791,0,0,6510,'2526','H','O',7193,'CSH',0,'2025-12-17','2025-12-17',4237,0,4352,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 16:48:22','','0000-00-00 00:00:00',0),(7792,0,0,6511,'2526','H','O',7194,'CSH',0,'2025-12-17','2025-12-17',1479,0,1520,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 16:49:37','','0000-00-00 00:00:00',0),(7793,0,0,6514,'2526','H','O',7195,'CSH',0,'2025-12-17','2025-12-17',888,0,920,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 17:00:35','','0000-00-00 00:00:00',0),(7794,0,0,6515,'2526','H','O',7196,'CSH',0,'2025-12-17','2025-12-17',4238,0,4353,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 17:04:51','','0000-00-00 00:00:00',0),(7795,0,0,6516,'2526','H','O',7197,'CSH',0,'2025-12-17','2025-12-17',4239,0,4354,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 17:11:31','','0000-00-00 00:00:00',0),(7796,0,0,6517,'2526','H','O',7198,'CSH',0,'2025-12-17','2025-12-17',4240,0,4355,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 17:20:04','','0000-00-00 00:00:00',0),(7797,0,0,6518,'2526','H','O',7199,'CSH',0,'2025-12-17','2025-12-17',3753,0,3856,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 17:23:14','','0000-00-00 00:00:00',0),(7798,0,0,6519,'2526','H','O',7200,'CSH',0,'2025-12-17','2025-12-17',4241,0,4356,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 17:24:12','','0000-00-00 00:00:00',0),(7799,0,0,6166,'2526','H','D',307,'',0,'2025-12-17','0000-00-00',4000,286,4107,0,'D03','',0,23100.00,0.00,0.00,23100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','D','N',23100.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-17 17:27:17','vishal','2025-12-17 17:31:22',0),(7800,0,0,6520,'2526','H','O',7201,'CSH',0,'2025-12-17','2025-12-17',4242,0,4357,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-17 17:32:48','','0000-00-00 00:00:00',0),(7801,0,0,6521,'2526','H','O',7202,'CSH',0,'2025-12-17','2025-12-17',4243,0,4358,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 17:34:02','','0000-00-00 00:00:00',0),(7802,0,0,6522,'2526','H','O',7203,'CSH',0,'2025-12-17','2025-12-17',2333,0,2389,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 17:35:31','','0000-00-00 00:00:00',0),(7803,0,0,6523,'2526','H','O',7204,'CSH',0,'2025-12-17','2025-12-17',1811,0,1857,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 17:40:47','','0000-00-00 00:00:00',0),(7804,0,0,6524,'2526','H','O',7205,'CSH',0,'2025-12-17','2025-12-17',2775,0,2844,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 17:41:34','','0000-00-00 00:00:00',0),(7805,0,0,6525,'2526','H','O',7206,'CSH',0,'2025-12-17','2025-12-17',4244,0,4359,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-17 17:42:40','','0000-00-00 00:00:00',0),(7806,0,0,6526,'2526','H','O',7207,'CSH',0,'2025-12-17','2025-12-17',4245,0,4360,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 17:49:21','','0000-00-00 00:00:00',0),(7807,0,0,6508,'2526','H','O',7208,'',0,'2025-12-17','0000-00-00',3327,0,3419,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-17','Y','N','Y','','N',0.00,'','Y','200 DISCOUNT','','HO 7192','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 17:51:04','reception','2025-12-17 17:51:23',0),(7808,0,0,6508,'2526','H','O',7209,'CSH',0,'2025-12-17','2025-12-17',3327,0,3419,0,'D06','',0,500.00,0.00,0.00,500.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 17:52:36','','0000-00-00 00:00:00',0),(7809,0,0,6527,'2526','H','O',7210,'CSH',0,'2025-12-17','2025-12-17',4246,0,4361,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100 DISCOUNT','HO 7241','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 18:00:45','reception','2025-12-17 18:49:37',0),(7810,0,0,6528,'2526','H','O',7211,'CSH',0,'2025-12-17','2025-12-17',4247,0,4362,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 18:03:02','','0000-00-00 00:00:00',0),(7811,0,0,6529,'2526','H','O',7212,'CSH',0,'2025-12-17','2025-12-17',2732,0,2802,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 18:04:16','','0000-00-00 00:00:00',0),(7812,0,0,6530,'2526','H','O',7213,'CSH',0,'2025-12-17','2025-12-17',4248,0,4363,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 18:07:07','','0000-00-00 00:00:00',0),(7813,0,0,6531,'2526','H','O',7214,'CSH',0,'2025-12-17','2025-12-17',4249,0,4364,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','PUNJAB BANK','','73898','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 18:09:33','','0000-00-00 00:00:00',0),(7814,0,0,6532,'2526','H','O',7215,'CSH',0,'2025-12-17','2025-12-17',4250,0,4365,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-17 18:10:24','','0000-00-00 00:00:00',0),(7815,0,0,6533,'2526','H','O',7216,'CSH',0,'2025-12-17','2025-12-17',4251,0,4366,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 18:10:45','','0000-00-00 00:00:00',0),(7816,0,0,6534,'2526','H','O',7217,'CSH',0,'2025-12-17','2025-12-17',4252,0,4367,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 18:14:49','','0000-00-00 00:00:00',0),(7817,0,0,6536,'2526','H','O',7218,'CSH',0,'2025-12-17','2025-12-17',4253,0,4368,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 18:15:44','','0000-00-00 00:00:00',0),(7818,0,0,6535,'2526','H','O',7219,'CSH',0,'2025-12-17','2025-12-17',3704,0,3807,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-17 18:15:46','','0000-00-00 00:00:00',0),(7819,0,0,6537,'2526','H','O',7220,'CSH',0,'2025-12-17','2025-12-17',2580,0,2641,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 18:16:15','','0000-00-00 00:00:00',0),(7820,0,0,6538,'2526','H','O',7221,'CSH',0,'2025-12-17','2025-12-17',3720,0,3721,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-17 18:17:51','','0000-00-00 00:00:00',0),(7821,0,0,6539,'2526','H','O',7222,'CSH',0,'2025-12-17','2025-12-17',3052,0,3133,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 18:18:24','','0000-00-00 00:00:00',0),(7822,0,0,6540,'2526','H','O',7223,'CSH',0,'2025-12-17','2025-12-17',4254,0,4369,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 18:20:00','','0000-00-00 00:00:00',0),(7823,0,0,6521,'2526','H','O',7224,'CSH',0,'2025-12-17','2025-12-17',4243,0,4358,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK','','18706','','scan',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 18:20:11','','0000-00-00 00:00:00',0),(7824,0,0,6516,'2526','H','O',7225,'CSH',0,'2025-12-17','2025-12-17',4239,0,4354,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 18:22:19','','0000-00-00 00:00:00',0),(7825,0,0,6541,'2526','H','O',7226,'CSH',0,'2025-12-17','2025-12-17',4255,0,4370,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-17 18:22:34','','0000-00-00 00:00:00',0),(7826,0,0,6517,'2526','H','O',7227,'CSH',0,'2025-12-17','2025-12-17',4240,0,4355,0,'D06','',0,4700.00,0.00,0.00,4700.00,700.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 18:23:14','','0000-00-00 00:00:00',0),(7827,0,0,6542,'2526','H','O',7228,'CSH',0,'2025-12-17','2025-12-17',2738,0,2808,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-17 18:27:13','','0000-00-00 00:00:00',0),(7828,0,0,6543,'2526','H','O',7229,'CSH',0,'2025-12-17','2025-12-17',4256,0,4371,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 18:28:25','','0000-00-00 00:00:00',0),(7829,0,0,6544,'2526','H','O',7230,'CSH',0,'2025-12-17','2025-12-17',3605,0,3705,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-17 18:29:31','','0000-00-00 00:00:00',0),(7830,0,0,6545,'2526','H','O',7231,'CSH',0,'2025-12-17','2025-12-17',4257,0,4372,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 18:30:32','','0000-00-00 00:00:00',0),(7831,0,0,6546,'2526','H','O',7232,'CSH',0,'2025-12-17','2025-12-17',4258,0,4373,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100 DISCOUNT','HO 7259','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 18:33:46','reception','2025-12-17 19:46:24',0),(7832,0,0,6504,'2526','H','O',7233,'CSH',0,'2025-12-17','2025-12-17',280,0,296,0,'D27','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 18:34:34','','0000-00-00 00:00:00',0),(7833,0,0,6526,'2526','H','O',7234,'CSH',0,'2025-12-17','2025-12-17',4245,0,4360,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 18:36:07','','0000-00-00 00:00:00',0),(7834,0,0,6548,'2526','H','O',7235,'CSH',0,'2025-12-17','2025-12-17',3305,0,3394,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-17 18:36:40','','0000-00-00 00:00:00',0),(7835,0,0,6549,'2526','H','O',7236,'CSH',0,'2025-12-17','2025-12-17',1497,0,1538,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 7263','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 18:38:37','reception','2025-12-17 19:56:19',0),(7836,0,0,6550,'2526','H','O',7237,'CSH',0,'2025-12-17','2025-12-17',4003,0,4110,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 18:40:30','','0000-00-00 00:00:00',0),(7837,0,0,6552,'2526','H','O',7238,'CSH',0,'2025-12-17','2025-12-17',3741,0,3844,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-17 18:43:55','','0000-00-00 00:00:00',0),(7838,0,0,6551,'2526','H','O',7239,'CSH',0,'2025-12-17','2025-12-17',4259,0,4374,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI BANK','','99841','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 18:44:01','','0000-00-00 00:00:00',0),(7839,0,0,6553,'2526','H','O',7240,'CSH',0,'2025-12-17','2025-12-17',127,0,138,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 18:48:41','','0000-00-00 00:00:00',0),(7840,0,0,6527,'2526','H','O',7241,'',0,'2025-12-17','0000-00-00',4246,0,4361,0,'D06','',0,-800.00,0.00,0.00,-800.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-800.00,0,0,'2025-12-17','Y','N','Y','','N',0.00,'','Y','100 DISCOUNT','','HO 7210','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 18:49:37','reception','2025-12-17 18:49:57',0),(7841,0,0,6554,'2526','H','O',7242,'CSH',0,'2025-12-17','2025-12-17',696,0,727,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-17 18:50:13','','0000-00-00 00:00:00',0),(7842,0,0,6527,'2526','H','O',7243,'CSH',0,'2025-12-17','2025-12-17',4246,0,4361,0,'D06','',0,800.00,0.00,0.00,800.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 18:50:38','','0000-00-00 00:00:00',0),(7843,0,0,6556,'2526','H','O',7244,'CSH',0,'2025-12-17','2025-12-17',4260,0,4375,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','98628','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 18:53:14','','0000-00-00 00:00:00',0),(7844,0,0,6557,'2526','H','O',7245,'CSH',0,'2025-12-17','2025-12-17',3715,0,3817,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-17 18:56:04','','0000-00-00 00:00:00',0),(7845,0,0,6560,'2526','H','O',7246,'CSH',0,'2025-12-17','2025-12-17',4262,0,4377,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-17 18:57:36','','0000-00-00 00:00:00',0),(7846,0,0,6559,'2526','H','O',7247,'CSH',0,'2025-12-17','2025-12-17',4261,0,4376,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BANK','','85368','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 18:57:53','','0000-00-00 00:00:00',0),(7847,0,0,6448,'2526','H','D',308,'',0,'2025-12-17','0000-00-00',0,300,4325,0,'D27','',0,6600.00,0.00,0.00,6600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',-400.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-17 18:58:02','','0000-00-00 00:00:00',0),(7848,0,0,6561,'2526','H','O',7248,'CSH',0,'2025-12-17','2025-12-17',3319,0,3411,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-17 19:00:00','','0000-00-00 00:00:00',0),(7849,0,0,6550,'2526','H','O',7249,'CSH',0,'2025-12-17','2025-12-17',4003,0,4110,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 19:01:02','','0000-00-00 00:00:00',0),(7850,0,0,6563,'2526','H','O',7250,'CSH',0,'2025-12-17','2025-12-17',2794,0,2863,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 19:05:28','','0000-00-00 00:00:00',0),(7851,0,0,6562,'2526','H','O',7251,'CSH',0,'2025-12-17','2025-12-17',3486,0,3586,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-17 19:05:47','','0000-00-00 00:00:00',0),(7852,0,0,6564,'2526','H','O',7252,'CSH',0,'2025-12-17','2025-12-17',4263,0,4378,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','16816','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-17 19:08:46','','0000-00-00 00:00:00',0),(7853,0,0,6566,'2526','H','O',7253,'CSH',0,'2025-12-17','2025-12-17',940,0,971,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 19:13:28','','0000-00-00 00:00:00',0),(7854,0,0,6448,'2526','H','I',293,'CR',0,'2025-12-17','0000-00-00',0,300,4325,0,'D27','',0,6600.00,0.00,0.00,6600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-400.00,-7000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-17 19:16:02','','0000-00-00 00:00:00',0),(7855,0,0,6567,'2526','H','O',7254,'CSH',0,'2025-12-17','2025-12-17',4264,0,4379,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 19:17:16','','0000-00-00 00:00:00',0),(7856,0,0,6568,'2526','H','O',7255,'CSH',0,'2025-12-17','2025-12-17',3901,0,4009,0,'D27','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 19:18:33','','0000-00-00 00:00:00',0),(7857,0,0,6569,'2526','H','O',7256,'CSH',0,'2025-12-17','2025-12-17',4265,0,4380,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','01134','','scan  ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-17 19:32:06','','0000-00-00 00:00:00',0),(7858,0,0,6555,'2526','H','O',7257,'CSH',0,'2025-12-17','2025-12-17',1976,0,2024,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-17 19:39:52','','0000-00-00 00:00:00',0),(7859,0,0,6571,'2526','H','O',7258,'CSH',0,'2025-12-17','2025-12-17',4266,0,4381,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI BANK','','19464','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 19:40:41','','0000-00-00 00:00:00',0),(7860,0,0,6546,'2526','H','O',7259,'',0,'2025-12-17','0000-00-00',4258,0,4373,0,'D06','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-12-17','Y','N','Y','','N',0.00,'','Y','100 DISCOUNT','','HO 7232','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 19:46:24','reception','2025-12-17 19:46:44',0),(7861,0,0,6546,'2526','H','O',7260,'CSH',0,'2025-12-17','2025-12-17',4258,0,4373,0,'D06','',0,700.00,0.00,0.00,700.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 19:47:34','','0000-00-00 00:00:00',0),(7862,0,0,6572,'2526','H','O',7261,'CSH',0,'2025-12-17','2025-12-17',4267,0,4382,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 19:51:09','','0000-00-00 00:00:00',0),(7863,0,0,6541,'2526','H','O',7262,'CSH',0,'2025-12-17','2025-12-17',4255,0,4370,0,'D03','',0,12000.00,0.00,0.00,12000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','sbi','','68507','','scan',12000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-17 19:54:57','','0000-00-00 00:00:00',0),(7864,0,0,6549,'2526','H','O',7263,'',0,'2025-12-17','0000-00-00',1497,0,1538,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-17','Y','N','Y','','N',0.00,'','Y','200 DISCOUNT','','HO 7236','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 19:56:19','reception','2025-12-17 19:56:43',0),(7865,0,0,6549,'2526','H','O',7264,'CSH',0,'2025-12-17','2025-12-17',1497,0,1538,0,'D06','',0,500.00,0.00,0.00,500.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 19:57:17','','0000-00-00 00:00:00',0),(7866,0,0,6573,'2526','H','O',7265,'CSH',0,'2025-12-17','2025-12-17',4268,0,4383,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-17 20:00:08','','0000-00-00 00:00:00',0),(7867,0,0,6574,'2526','H','O',7266,'CSH',0,'2025-12-17','2025-12-17',4269,0,4384,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-17 20:12:16','','0000-00-00 00:00:00',0),(7868,0,0,6575,'2526','H','O',7267,'CSH',0,'2025-12-17','2025-12-17',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-17 20:20:05','','0000-00-00 00:00:00',0),(7869,0,0,6577,'2526','H','O',7268,'CSH',0,'2025-12-18','2025-12-18',4270,0,4385,0,'D02','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 08:48:01','','0000-00-00 00:00:00',0),(7870,0,0,6578,'2526','H','O',7269,'CSH',0,'2025-12-18','2025-12-18',4271,0,4386,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 08:51:16','','0000-00-00 00:00:00',0),(7871,0,0,6579,'2526','H','O',7270,'CSH',0,'2025-12-18','2025-12-18',4272,0,4387,0,'D27','',0,1600.00,0.00,0.00,1600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','19473','','scan',1600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 08:53:51','','0000-00-00 00:00:00',0),(7872,0,0,6580,'2526','H','O',7271,'CSH',0,'2025-12-18','2025-12-18',4273,0,4388,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 09:50:30','','0000-00-00 00:00:00',0),(7873,0,0,6582,'2526','H','O',7272,'CSH',0,'2025-12-18','2025-12-18',3225,0,3311,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 09:57:53','','0000-00-00 00:00:00',0),(7874,0,0,6583,'2526','H','O',7273,'CSH',0,'2025-12-18','2025-12-18',3274,0,3363,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 10:08:51','','0000-00-00 00:00:00',0),(7875,0,0,6584,'2526','H','O',7274,'CSH',0,'2025-12-18','2025-12-18',3691,0,3796,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','41159','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 10:11:22','','0000-00-00 00:00:00',0),(7876,0,0,6585,'2526','H','O',7275,'CSH',0,'2025-12-18','2025-12-18',315,0,331,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 10:15:03','','0000-00-00 00:00:00',0),(7877,0,0,6586,'2526','H','O',7276,'CSH',0,'2025-12-18','2025-12-18',3209,0,3296,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','sbi','','87390','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 10:27:53','','0000-00-00 00:00:00',0),(7878,0,0,6587,'2526','H','O',7277,'CSH',0,'2025-12-18','2025-12-18',3737,0,3840,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 10:31:15','','0000-00-00 00:00:00',0),(7879,0,0,6588,'2526','H','O',7278,'CSH',0,'2025-12-18','2025-12-18',4275,0,4390,0,'D14','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','sbi','','36740','','scan',1300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 7333','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-18 10:37:23','priyanshi','2025-12-18 14:09:00',0),(7880,0,0,6589,'2526','H','O',7279,'CSH',0,'2025-12-18','2025-12-18',4276,0,4391,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 10:40:36','','0000-00-00 00:00:00',0),(7881,0,0,6591,'2526','H','O',7280,'CSH',0,'2025-12-18','2025-12-18',4278,0,4393,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 10:44:13','','0000-00-00 00:00:00',0),(7882,0,0,6592,'2526','H','O',7281,'CSH',0,'2025-12-18','2025-12-18',4279,0,4394,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','53336','','scan ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-18 10:46:11','','0000-00-00 00:00:00',0),(7883,0,0,6593,'2526','H','O',7282,'CSH',0,'2025-12-18','2025-12-18',1373,0,1414,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 10:46:30','','0000-00-00 00:00:00',0),(7884,0,0,6595,'2526','H','O',7283,'CSH',0,'2025-12-18','2025-12-18',4281,0,4396,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 10:48:37','','0000-00-00 00:00:00',0),(7885,0,0,6594,'2526','H','O',7284,'CSH',0,'2025-12-18','2025-12-18',4280,0,4395,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 10:48:52','','0000-00-00 00:00:00',0),(7886,0,0,6596,'2526','H','O',7285,'CSH',0,'2025-12-18','2025-12-18',3679,0,3784,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 10:49:57','','0000-00-00 00:00:00',0),(7887,0,0,6597,'2526','H','O',7286,'CSH',0,'2025-12-18','2025-12-18',4129,0,4242,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 7290','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-18 10:52:04','janvi','2025-12-18 11:01:15',0),(7888,0,0,6598,'2526','H','O',7287,'CSH',0,'2025-12-18','2025-12-18',4282,0,4397,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 10:52:37','','0000-00-00 00:00:00',0),(7889,0,0,6599,'2526','H','O',7288,'CSH',0,'2025-12-18','2025-12-18',4283,0,4398,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 10:55:59','','0000-00-00 00:00:00',0),(7890,0,0,6600,'2526','H','O',7289,'CSH',0,'2025-12-18','2025-12-18',4284,0,4399,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 11:01:04','','0000-00-00 00:00:00',0),(7891,0,0,6597,'2526','H','O',7290,'',0,'2025-12-18','0000-00-00',4129,0,4242,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-12-18','Y','N','Y','','N',0.00,'','Y','CANCEL','','HO 7286','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-18 11:01:15','janvi','2025-12-18 11:01:59',0),(7892,0,0,6601,'2526','H','O',7291,'CSH',0,'2025-12-18','2025-12-18',4285,0,4400,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 11:02:43','','0000-00-00 00:00:00',0),(7893,0,0,6581,'2526','H','O',7292,'CSH',0,'2025-12-18','2025-12-18',4274,0,4389,0,'D27','',0,750.00,0.00,0.00,750.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',550.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 11:05:44','','0000-00-00 00:00:00',0),(7894,0,0,6602,'2526','H','O',7293,'CSH',0,'2025-12-18','2025-12-18',1790,0,1835,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 11:06:46','','0000-00-00 00:00:00',0),(7895,0,0,6605,'2526','H','O',7294,'CSH',0,'2025-12-18','2025-12-18',2092,0,2146,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'San',0,'','7','indian bank','','37631','','scan  ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-18 11:08:57','','0000-00-00 00:00:00',0),(7896,0,0,6606,'2526','H','O',7295,'CSH',0,'2025-12-18','2025-12-18',4286,0,4401,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','UNION BANK','','76217','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 11:12:14','','0000-00-00 00:00:00',0),(7897,0,0,6607,'2526','H','O',7296,'CSH',0,'2025-12-18','2025-12-18',4287,0,4402,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 11:12:35','','0000-00-00 00:00:00',0),(7898,0,0,6608,'2526','H','O',7297,'CSH',0,'2025-12-18','2025-12-18',3079,0,3165,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 11:13:41','','0000-00-00 00:00:00',0),(7899,0,0,6609,'2526','H','O',7298,'CSH',0,'2025-12-18','2025-12-18',4288,0,4403,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-18 11:13:57','','0000-00-00 00:00:00',0),(7900,0,0,6580,'2526','H','O',7299,'CR',0,'2025-12-18','2025-12-18',4273,0,4388,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'1000 ONLINE',0,'','7','rajkot distric','','72573','','SCAN ',4600.00,0,0,'2025-12-18','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 11:18:51','drashti','2025-12-18 11:22:06',0),(7901,0,0,6589,'2526','H','O',7300,'CSH',0,'2025-12-18','2025-12-18',4276,0,4391,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 11:23:44','','0000-00-00 00:00:00',0),(7902,0,0,6611,'2526','H','O',7301,'CSH',0,'2025-12-18','2025-12-18',3154,0,3240,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 11:25:41','','0000-00-00 00:00:00',0),(7903,0,0,6612,'2526','H','O',7302,'CSH',0,'2025-12-18','2025-12-18',4289,0,4404,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 11:28:02','','0000-00-00 00:00:00',0),(7904,0,0,6614,'2526','H','O',7303,'CSH',0,'2025-12-18','2025-12-18',1125,0,1095,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','sbi','','38250','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-18 11:32:36','','0000-00-00 00:00:00',0),(7905,0,0,6602,'2526','H','O',7304,'CSH',0,'2025-12-18','2025-12-18',1790,0,1835,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 11:34:17','','0000-00-00 00:00:00',0),(7906,0,0,6616,'2526','H','O',7305,'CSH',0,'2025-12-18','2025-12-18',4291,0,4407,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 11:40:56','','0000-00-00 00:00:00',0),(7907,0,0,6617,'2526','H','O',7306,'CSH',0,'2025-12-18','2025-12-18',4292,0,4408,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 11:45:29','','0000-00-00 00:00:00',0),(7908,0,0,6618,'2526','H','O',7307,'CSH',0,'2025-12-18','2025-12-18',3328,0,3420,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-18 11:47:51','','0000-00-00 00:00:00',0),(7909,0,0,6619,'2526','H','O',7308,'CSH',0,'2025-12-18','2025-12-18',4293,0,4409,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-18 11:48:06','','0000-00-00 00:00:00',0),(7910,0,0,6620,'2526','H','O',7309,'CSH',0,'2025-12-18','2025-12-18',4294,0,4410,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 11:50:19','','0000-00-00 00:00:00',0),(7911,0,0,6606,'2526','H','O',7310,'CSH',0,'2025-12-18','2025-12-18',4286,0,4401,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','UNION BANK ','','82598','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 11:51:01','','0000-00-00 00:00:00',0),(7912,0,0,6615,'2526','H','O',7311,'CSH',0,'2025-12-18','2025-12-18',4290,0,4406,0,'D27','',0,750.00,0.00,0.00,750.00,350.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-18 11:52:34','','0000-00-00 00:00:00',0),(7913,0,0,6621,'2526','H','O',7312,'CSH',0,'2025-12-18','2025-12-18',2529,0,2586,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','61519','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-18 11:55:27','','0000-00-00 00:00:00',0),(7914,0,0,6622,'2526','H','O',7313,'CSH',0,'2025-12-18','2025-12-18',3135,0,3221,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 11:55:50','','0000-00-00 00:00:00',0),(7915,0,0,6623,'2526','H','O',7314,'CSH',0,'2025-12-18','2025-12-18',4295,0,3630,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-18 11:57:06','','0000-00-00 00:00:00',0),(7916,0,0,6624,'2526','H','O',7315,'CSH',0,'2025-12-18','2025-12-18',4032,0,4139,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 11:57:20','','0000-00-00 00:00:00',0),(7917,0,0,6625,'2526','H','O',7316,'CSH',0,'2025-12-18','2025-12-18',3305,0,3394,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 11:59:48','','0000-00-00 00:00:00',0),(7918,0,0,6619,'2526','H','O',7317,'CSH',0,'2025-12-18','2025-12-18',4293,0,4409,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-18 12:04:12','','0000-00-00 00:00:00',0),(7919,0,0,6601,'2526','H','O',7318,'CSH',0,'2025-12-18','2025-12-18',4285,0,4400,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 12:12:20','','0000-00-00 00:00:00',0),(7920,0,0,6595,'2526','H','O',7319,'CSH',0,'2025-12-18','2025-12-18',4281,0,4396,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 12:17:23','','0000-00-00 00:00:00',0),(7921,0,0,6627,'2526','H','O',7320,'CSH',0,'2025-12-17','2025-12-18',4277,0,4392,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-18 20:57:00','','0000-00-00 00:00:00',0),(7922,0,0,6628,'2526','H','O',7321,'CSH',0,'2025-12-18','2025-12-18',4297,0,4412,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-18 12:21:52','','0000-00-00 00:00:00',0),(7923,0,0,6629,'2526','H','O',7322,'CSH',0,'2025-12-18','2025-12-18',4298,0,4413,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 12:22:23','','0000-00-00 00:00:00',0),(7924,0,0,6626,'2526','H','O',7323,'CSH',0,'2025-12-18','2025-12-18',4296,0,4411,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','VIJAY COM','','60106','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-18 12:25:22','','0000-00-00 00:00:00',0),(7925,0,0,6626,'2526','H','O',7324,'CSH',0,'2025-12-18','2025-12-18',4296,0,4411,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-18 12:26:34','','0000-00-00 00:00:00',0),(7926,0,0,6630,'2526','H','O',7325,'CSH',0,'2025-12-18','2025-12-18',3310,0,3399,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-18 12:27:04','','0000-00-00 00:00:00',0),(7927,0,0,6631,'2526','H','O',7326,'CSH',0,'2025-12-18','2025-12-18',4299,0,4414,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 12:28:19','','0000-00-00 00:00:00',0),(7928,0,0,6632,'2526','H','O',7327,'CSH',0,'2025-12-18','2025-12-18',4300,0,4415,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 12:29:36','','0000-00-00 00:00:00',0),(7929,0,0,6633,'2526','H','O',7328,'CSH',0,'2025-12-18','2025-12-18',4301,0,4416,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-18 12:36:57','','0000-00-00 00:00:00',0),(7930,0,0,6634,'2526','H','O',7329,'CSH',0,'2025-12-18','2025-12-18',4302,0,3863,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 12:42:37','','0000-00-00 00:00:00',0),(7931,0,0,6635,'2526','H','O',7330,'CSH',0,'2025-12-18','2025-12-18',4303,0,4417,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 12:43:27','','0000-00-00 00:00:00',0),(7932,0,0,6636,'2526','H','O',7331,'CSH',0,'2025-12-18','2025-12-18',1653,0,1698,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','74593','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 12:53:10','','0000-00-00 00:00:00',0),(7933,0,0,6637,'2526','H','O',7332,'CSH',0,'2025-12-18','2025-12-18',4304,0,4418,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-18 13:46:23','','0000-00-00 00:00:00',0),(7934,0,0,6588,'2526','H','O',7333,'',0,'2025-12-18','0000-00-00',4275,0,4390,0,'D14','',0,-1300.00,0.00,0.00,-1300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','SBI BANK','','36740','','SCAN ',-1300.00,0,0,'2025-12-18','Y','N','Y','','N',0.00,'','Y','CANCEL','','HO 7278','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-18 14:09:00','priyanshi','2025-12-18 14:09:35',0),(7935,0,0,6588,'2526','H','O',7334,'CSH',0,'2025-12-18','2025-12-18',4275,0,4390,0,'D14','',0,1300.00,0.00,0.00,1300.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI BANK','','36740','','scan ',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-18 14:11:07','','0000-00-00 00:00:00',0),(7936,0,0,6637,'2526','H','O',7335,'CSH',0,'2025-12-18','2025-12-18',4304,0,4418,0,'D14','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-18 14:24:34','','0000-00-00 00:00:00',0),(7937,0,0,6638,'2526','H','O',7336,'CSH',0,'2025-12-18','2025-12-18',4305,0,4419,0,'D27','',0,1250.00,0.00,0.00,1250.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1250.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-18 14:45:54','','0000-00-00 00:00:00',0),(7938,0,0,6623,'2526','H','O',7337,'CSH',0,'2025-12-18','2025-12-18',4295,0,3630,0,'D27','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-18 14:56:02','','0000-00-00 00:00:00',0),(7939,0,0,6640,'2526','H','O',7338,'CSH',0,'2025-12-18','2025-12-18',4307,0,4421,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 16:24:10','','0000-00-00 00:00:00',0),(7940,0,0,6639,'2526','H','O',7339,'CSH',0,'2025-12-18','2025-12-18',4306,0,4420,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','baroda bank','','85577','','scan ',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-18 16:25:41','','0000-00-00 00:00:00',0),(7941,0,0,6641,'2526','H','O',7340,'CSH',0,'2025-12-18','2025-12-18',4308,0,4422,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 16:27:32','','0000-00-00 00:00:00',0),(7942,0,0,6642,'2526','H','O',7341,'CSH',0,'2025-12-18','2025-12-18',2623,0,2689,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 16:44:13','','0000-00-00 00:00:00',0),(7943,0,0,6639,'2526','H','O',7342,'CSH',0,'2025-12-18','2025-12-18',4306,0,4420,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BGGB','','86100','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 17:09:31','','0000-00-00 00:00:00',0),(7944,0,0,6643,'2526','H','O',7343,'CSH',0,'2025-12-18','2025-12-18',3682,0,3787,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 17:11:04','','0000-00-00 00:00:00',0),(7945,0,0,6644,'2526','H','O',7344,'CSH',0,'2025-12-18','2025-12-18',3739,0,3842,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 17:11:58','','0000-00-00 00:00:00',0),(7946,0,0,6645,'2526','H','O',7345,'CSH',0,'2025-12-18','2025-12-18',3900,0,4008,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 17:17:26','','0000-00-00 00:00:00',0),(7947,0,0,6646,'2526','H','O',7346,'CSH',0,'2025-12-18','2025-12-18',4309,0,4423,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 17:18:54','','0000-00-00 00:00:00',0),(7948,0,0,6641,'2526','H','O',7347,'CSH',0,'2025-12-18','2025-12-18',4308,0,4422,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 17:21:00','','0000-00-00 00:00:00',0),(7949,0,0,6648,'2526','H','O',7348,'CSH',0,'2025-12-18','2025-12-18',2589,0,2649,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100 DISCOUNT','HO 7362','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 17:23:13','reception','2025-12-18 18:00:28',0),(7950,0,0,6647,'2526','H','O',7349,'CSH',0,'2025-12-18','2025-12-18',4310,0,4424,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-18 17:23:33','','0000-00-00 00:00:00',0),(7951,0,0,6650,'2526','H','O',7350,'CSH',0,'2025-12-18','2025-12-18',883,0,915,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 17:32:40','','0000-00-00 00:00:00',0),(7952,0,0,6651,'2526','H','O',7351,'CSH',0,'2025-12-18','2025-12-18',4064,0,4170,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 17:37:30','','0000-00-00 00:00:00',0),(7953,0,0,6652,'2526','H','O',7352,'CSH',0,'2025-12-18','2025-12-18',3254,0,3337,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','INDUS BANK','','96802','','scan ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 17:39:27','','0000-00-00 00:00:00',0),(7954,0,0,6653,'2526','H','O',7353,'CSH',0,'2025-12-18','2025-12-18',4311,0,4425,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 17:41:08','','0000-00-00 00:00:00',0),(7955,0,0,6654,'2526','H','O',7354,'CSH',0,'2025-12-18','2025-12-18',3053,0,3134,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 17:41:28','','0000-00-00 00:00:00',0),(7956,0,0,6655,'2526','H','O',7355,'CSH',0,'2025-12-18','2025-12-18',4312,0,4426,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-18 17:46:18','','0000-00-00 00:00:00',0),(7957,0,0,6656,'2526','H','O',7356,'CSH',0,'2025-12-18','2025-12-18',4313,0,4427,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 17:47:15','','0000-00-00 00:00:00',0),(7958,0,0,6657,'2526','H','O',7357,'CSH',0,'2025-12-18','2025-12-18',2603,0,2665,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-18 17:47:28','','0000-00-00 00:00:00',0),(7959,0,0,6646,'2526','H','O',7358,'CSH',0,'2025-12-18','2025-12-18',4309,0,4423,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','66707','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 17:57:01','','0000-00-00 00:00:00',0),(7960,0,0,6658,'2526','H','O',7359,'CSH',0,'2025-12-18','2025-12-18',4314,0,4428,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-18 17:58:58','','0000-00-00 00:00:00',0),(7961,0,0,6659,'2526','H','O',7360,'CSH',0,'2025-12-18','2025-12-18',4315,0,4429,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 17:59:01','','0000-00-00 00:00:00',0),(7962,0,0,6660,'2526','H','O',7361,'CSH',0,'2025-12-18','2025-12-18',2710,0,2781,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-18 17:59:26','','0000-00-00 00:00:00',0),(7963,0,0,6648,'2526','H','O',7362,'',0,'2025-12-18','0000-00-00',2589,0,2649,0,'D06','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-18','Y','N','Y','','N',0.00,'','Y','100 DISCOUNT','','HO 7348','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 18:00:28','reception','2025-12-18 18:00:46',0),(7964,0,0,6648,'2526','H','O',7363,'CSH',0,'2025-12-18','2025-12-18',2589,0,2649,0,'D06','',0,500.00,0.00,0.00,500.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 18:02:17','','0000-00-00 00:00:00',0),(7965,0,0,6661,'2526','H','O',7364,'CSH',0,'2025-12-18','2025-12-18',4316,0,4430,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 18:04:09','','0000-00-00 00:00:00',0),(7966,0,0,6663,'2526','H','O',7365,'CSH',0,'2025-12-18','2025-12-18',1476,0,1517,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 18:05:47','','0000-00-00 00:00:00',0),(7967,0,0,6664,'2526','H','O',7366,'CSH',0,'2025-12-18','2025-12-18',4318,0,4432,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-18 18:06:04','','0000-00-00 00:00:00',0),(7968,0,0,6665,'2526','H','O',7367,'CSH',0,'2025-12-18','2025-12-18',4319,0,3345,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 18:07:07','','0000-00-00 00:00:00',0),(7969,0,0,6666,'2526','H','O',7368,'CSH',0,'2025-12-18','2025-12-18',4320,0,4433,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-18 18:07:41','','0000-00-00 00:00:00',0),(7970,0,0,6667,'2526','H','O',7369,'CSH',0,'2025-12-18','2025-12-18',4321,0,4434,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI BANK','','18409','','scan ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 18:13:38','','0000-00-00 00:00:00',0),(7971,0,0,6668,'2526','H','O',7370,'CSH',0,'2025-12-18','2025-12-18',4322,0,4435,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI','','18409','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 18:13:55','','0000-00-00 00:00:00',0),(7972,0,0,6669,'2526','H','O',7371,'CSH',0,'2025-12-18','2025-12-18',4323,0,4436,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','18409','','scan  ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-18 18:14:19','','0000-00-00 00:00:00',0),(7973,0,0,6670,'2526','H','O',7372,'CSH',0,'2025-12-18','2025-12-18',4324,0,4437,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','18409','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-18 18:14:45','','0000-00-00 00:00:00',0),(7974,0,0,6671,'2526','H','O',7373,'CSH',0,'2025-12-18','2025-12-18',4325,0,4438,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 18:16:49','','0000-00-00 00:00:00',0),(7975,0,0,6656,'2526','H','O',7374,'CSH',0,'2025-12-18','2025-12-18',4313,0,4427,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 18:17:39','','0000-00-00 00:00:00',0),(7976,0,0,6675,'2526','H','O',7375,'CSH',0,'2025-12-18','2025-12-18',756,0,788,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','YES BANK','','32913','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 18:21:26','','0000-00-00 00:00:00',0),(7977,0,0,6674,'2526','H','O',7376,'CSH',0,'2025-12-18','2025-12-18',4326,0,4439,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','yes bank','','32913','','scan  ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-18 18:21:30','','0000-00-00 00:00:00',0),(7978,0,0,6647,'2526','H','O',7377,'CSH',0,'2025-12-18','2025-12-18',4310,0,4424,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-18 18:21:34','','0000-00-00 00:00:00',0),(7979,0,0,6676,'2526','H','O',7378,'CSH',0,'2025-12-18','2025-12-18',4327,0,4440,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 18:22:02','','0000-00-00 00:00:00',0),(7980,0,0,6680,'2526','H','O',7379,'CSH',0,'2025-12-18','2025-12-18',4330,0,4443,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-18 18:25:37','','0000-00-00 00:00:00',0),(7981,0,0,6679,'2526','H','O',7380,'CSH',0,'2025-12-18','2025-12-18',4329,0,4442,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-18 18:25:47','','0000-00-00 00:00:00',0),(7982,0,0,6678,'2526','H','O',7381,'CSH',0,'2025-12-18','2025-12-18',4328,0,4441,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BANK','','11750','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 18:26:10','','0000-00-00 00:00:00',0),(7983,0,0,6672,'2526','H','O',7382,'CSH',0,'2025-12-18','2025-12-18',3498,0,3599,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-18 18:29:00','','0000-00-00 00:00:00',0),(7984,0,0,6681,'2526','H','O',7383,'CSH',0,'2025-12-18','2025-12-18',3116,0,3202,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','sbi','','92678','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 18:29:06','','0000-00-00 00:00:00',0),(7985,0,0,6682,'2526','H','O',7384,'CSH',0,'2025-12-18','2025-12-18',1797,0,1842,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 18:30:44','','0000-00-00 00:00:00',0),(7986,0,0,6683,'2526','H','O',7385,'CSH',0,'2025-12-18','2025-12-18',4331,0,4444,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 18:32:49','','0000-00-00 00:00:00',0),(7987,0,0,6686,'2526','H','O',7386,'CSH',0,'2025-12-18','2025-12-18',825,0,856,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 18:33:49','','0000-00-00 00:00:00',0),(7988,0,0,6684,'2526','H','O',7387,'CSH',0,'2025-12-18','2025-12-18',3854,0,3963,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-18 18:35:45','','0000-00-00 00:00:00',0),(7989,0,0,6659,'2526','H','O',7388,'CSH',0,'2025-12-18','2025-12-18',4315,0,4429,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','UNION BANK ','','88421','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 18:36:08','','0000-00-00 00:00:00',0),(7990,0,0,6688,'2526','H','O',7389,'CSH',0,'2025-12-18','2025-12-18',2604,0,2666,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 18:39:14','','0000-00-00 00:00:00',0),(7991,0,0,6685,'2526','H','O',7390,'CSH',0,'2025-12-18','2025-12-18',2919,0,2996,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-18 18:42:52','','0000-00-00 00:00:00',0),(7992,0,0,6690,'2526','H','O',7391,'CSH',0,'2025-12-18','2025-12-18',3584,0,3683,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 18:44:33','','0000-00-00 00:00:00',0),(7993,0,0,6691,'2526','H','O',7392,'CSH',0,'2025-12-18','2025-12-18',1301,0,1340,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 18:45:11','','0000-00-00 00:00:00',0),(7994,0,0,6692,'2526','H','O',7393,'CSH',0,'2025-12-18','2025-12-18',2738,0,2808,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-18 18:52:39','','0000-00-00 00:00:00',0),(7995,0,0,6678,'2526','H','O',7394,'CSH',0,'2025-12-18','2025-12-18',4328,0,4441,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BANK','','64117','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 18:52:56','','0000-00-00 00:00:00',0),(7996,0,0,6693,'2526','H','O',7395,'CSH',0,'2025-12-18','2025-12-18',4332,0,4445,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DIS','HO 7401','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-18 18:54:24','drashti','2025-12-18 19:21:27',0),(7997,0,0,6695,'2526','H','O',7396,'CSH',0,'2025-12-18','2025-12-18',3605,0,3705,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-18 18:57:33','','0000-00-00 00:00:00',0),(7998,0,0,6694,'2526','H','O',7397,'CSH',0,'2025-12-18','2025-12-18',3722,0,3823,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI','','11599','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 18:57:36','','0000-00-00 00:00:00',0),(7999,0,0,6680,'2526','H','O',7398,'CSH',0,'2025-12-18','2025-12-18',4330,0,4443,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-18 18:58:13','','0000-00-00 00:00:00',0),(8000,0,0,6696,'2526','H','O',7399,'CSH',0,'2025-12-18','2025-12-18',4333,0,4446,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'CARD',0,'','CRD','HDFC','96278','96278','','CARD',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 19:02:36','','0000-00-00 00:00:00',0),(8001,0,0,6697,'2526','H','O',7400,'CSH',0,'2025-12-18','2025-12-18',4334,0,4447,0,'D14','',0,1800.00,0.00,0.00,1800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','UJJIVAN SMALL','','41499','','SCAN',1800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-18 19:14:46','','0000-00-00 00:00:00',0),(8002,0,0,6693,'2526','H','O',7401,'',0,'2025-12-18','0000-00-00',4332,0,4445,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-12-18','Y','N','Y','','N',0.00,'','Y','200 DIS','','HO 7395','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 19:21:27','drashti','2025-12-18 19:21:49',0),(8003,0,0,6700,'2526','H','O',7402,'CSH',0,'2025-12-18','2025-12-18',4300,0,4415,0,'D02','',0,5000.00,0.00,0.00,5000.00,2000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-18 19:22:06','','0000-00-00 00:00:00',0),(8004,0,0,6693,'2526','H','O',7403,'CSH',0,'2025-12-18','2025-12-18',4332,0,4445,0,'D27','',0,400.00,0.00,0.00,400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 19:23:07','','0000-00-00 00:00:00',0),(8005,0,0,6701,'2526','H','O',7404,'CSH',0,'2025-12-18','2025-12-18',4337,0,4450,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-18 19:24:42','','0000-00-00 00:00:00',0),(8006,0,0,6704,'2526','H','O',7405,'CSH',0,'2025-12-18','2025-12-18',1660,0,1705,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 19:38:59','','0000-00-00 00:00:00',0),(8007,0,0,6705,'2526','H','O',7406,'CSH',0,'2025-12-18','2025-12-18',4338,0,4451,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-18 19:49:04','','0000-00-00 00:00:00',0),(8008,0,0,6656,'2526','H','O',7407,'CSH',0,'2025-12-18','2025-12-18',4313,0,4427,0,'D06','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-18 20:16:47','','0000-00-00 00:00:00',0),(8009,0,0,6610,'2526','H','D',309,'',0,'2025-12-18','0000-00-00',4268,303,4383,0,'D02','',0,5600.00,0.00,0.00,5600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',-1400.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-18 20:26:33','vishal','2025-12-18 20:27:51',0),(8010,0,0,6610,'2526','H','I',294,'CR',0,'2025-12-18','0000-00-00',4268,303,4383,0,'D02','',0,5600.00,0.00,0.00,5600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-1400.00,-7000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-18 20:28:18','','0000-00-00 00:00:00',0),(8011,0,0,6708,'2526','H','O',7408,'CSH',0,'2025-12-19','2025-12-19',4339,0,4454,0,'D27','',0,1600.00,0.00,0.00,1600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 08:53:32','','0000-00-00 00:00:00',0),(8012,0,0,6709,'2526','H','O',7409,'CSH',0,'2025-12-19','2025-12-19',2650,0,2720,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 09:25:09','','0000-00-00 00:00:00',0),(8013,0,0,6710,'2526','H','O',7410,'CSH',0,'2025-12-19','2025-12-19',1752,0,1798,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 09:48:33','','0000-00-00 00:00:00',0),(8014,0,0,6711,'2526','H','O',7411,'CSH',0,'2025-12-19','2025-12-19',1751,0,1797,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 09:49:17','','0000-00-00 00:00:00',0),(8015,0,0,6713,'2526','H','O',7412,'CSH',0,'2025-12-19','2025-12-19',4340,0,4455,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','20945','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 10:13:09','','0000-00-00 00:00:00',0),(8016,0,0,6714,'2526','H','O',7413,'CSH',0,'2025-12-19','2025-12-19',4341,0,4456,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 10:15:30','','0000-00-00 00:00:00',0),(8017,0,0,6715,'2526','H','O',7414,'CSH',0,'2025-12-19','2025-12-19',3773,0,3877,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 10:16:18','','0000-00-00 00:00:00',0),(8018,0,0,6716,'2526','H','O',7415,'CSH',0,'2025-12-19','2025-12-19',3136,0,3222,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 10:20:10','','0000-00-00 00:00:00',0),(8019,0,0,6717,'2526','H','O',7416,'CSH',0,'2025-12-19','2025-12-19',4342,0,4457,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 10:25:55','','0000-00-00 00:00:00',0),(8020,0,0,6718,'2526','H','O',7417,'CSH',0,'2025-12-19','2025-12-19',4343,0,4458,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 10:29:45','','0000-00-00 00:00:00',0),(8021,0,0,6719,'2526','H','O',7418,'CSH',0,'2025-12-19','2025-12-19',4344,0,4459,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 10:31:45','','0000-00-00 00:00:00',0),(8022,0,0,6720,'2526','H','O',7419,'CSH',0,'2025-12-19','2025-12-19',2718,0,2789,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','97672','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 10:38:36','','0000-00-00 00:00:00',0),(8023,0,0,6722,'2526','H','O',7420,'CSH',0,'2025-12-19','2025-12-19',4346,0,4461,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 10:42:22','','0000-00-00 00:00:00',0),(8024,0,0,6721,'2526','H','O',7421,'CSH',0,'2025-12-19','2025-12-19',4345,0,4460,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 10:42:25','','0000-00-00 00:00:00',0),(8025,0,0,6725,'2526','H','O',7422,'CSH',0,'2025-12-19','2025-12-19',4347,0,4462,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 10:46:03','','0000-00-00 00:00:00',0),(8026,0,0,6724,'2526','H','O',7423,'CSH',0,'2025-12-19','2025-12-19',1021,0,1055,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','union bank','','10735','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 10:46:15','','0000-00-00 00:00:00',0),(8027,0,0,6723,'2526','H','O',7424,'CSH',0,'2025-12-19','2025-12-19',1022,0,1056,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','union bank','','10735','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 10:47:00','','0000-00-00 00:00:00',0),(8028,0,0,6726,'2526','H','O',7425,'CSH',0,'2025-12-19','2025-12-19',313,0,329,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-19 10:47:05','','0000-00-00 00:00:00',0),(8029,0,0,6728,'2526','H','O',7426,'CSH',0,'2025-12-19','2025-12-19',3880,0,3989,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 10:50:33','','0000-00-00 00:00:00',0),(8030,0,0,6727,'2526','H','O',7427,'CSH',0,'2025-12-19','2025-12-19',4348,0,4463,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 10:50:47','','0000-00-00 00:00:00',0),(8031,0,0,6729,'2526','H','O',7428,'CSH',0,'2025-12-19','2025-12-19',1994,0,2045,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 10:53:22','','0000-00-00 00:00:00',0),(8032,0,0,6730,'2526','H','O',7429,'CSH',0,'2025-12-19','2025-12-19',4349,0,4464,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 10:57:01','','0000-00-00 00:00:00',0),(8033,0,0,6732,'2526','H','O',7430,'CSH',0,'2025-12-19','2025-12-19',1852,0,1898,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 10:57:53','','0000-00-00 00:00:00',0),(8034,0,0,6731,'2526','H','O',7431,'CSH',0,'2025-12-19','2025-12-19',4200,0,4314,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB BANK','','33933','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 10:57:53','','0000-00-00 00:00:00',0),(8035,0,0,6733,'2526','H','O',7432,'CSH',0,'2025-12-19','2025-12-19',2171,0,2226,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 11:04:09','','0000-00-00 00:00:00',0),(8036,0,0,6734,'2526','H','O',7433,'CSH',0,'2025-12-19','2025-12-19',4350,0,4465,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 11:09:14','','0000-00-00 00:00:00',0),(8037,0,0,6735,'2526','H','O',7434,'CSH',0,'2025-12-19','2025-12-19',1935,0,1983,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 11:11:59','','0000-00-00 00:00:00',0),(8038,0,0,6719,'2526','H','O',7435,'CSH',0,'2025-12-19','2025-12-19',4344,0,4459,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-19 11:13:27','','0000-00-00 00:00:00',0),(8039,0,0,6738,'2526','H','O',7436,'CSH',0,'2025-12-19','2025-12-19',3969,0,4076,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 7441','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-19 11:14:23','manshi','2025-12-19 11:23:30',0),(8040,0,0,6736,'2526','H','O',7437,'CSH',0,'2025-12-19','2025-12-19',4351,0,4466,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 11:15:15','','0000-00-00 00:00:00',0),(8041,0,0,6721,'2526','H','O',7438,'CSH',0,'2025-12-19','2025-12-19',4345,0,4460,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 11:18:10','','0000-00-00 00:00:00',0),(8042,0,0,6732,'2526','H','O',7439,'CSH',0,'2025-12-19','2025-12-19',1852,0,1898,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 11:22:05','','0000-00-00 00:00:00',0),(8043,0,0,6739,'2526','H','O',7440,'CSH',0,'2025-12-19','2025-12-19',4352,0,4468,0,'D27','',0,1250.00,0.00,0.00,1250.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1250.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 11:22:11','','0000-00-00 00:00:00',0),(8044,0,0,6738,'2526','H','O',7441,'',0,'2025-12-19','0000-00-00',3969,0,4076,0,'D03','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-12-19','Y','N','Y','','N',0.00,'','Y','FOC','','HO 7436','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-19 11:23:30','manshi','2025-12-19 11:23:57',0),(8045,0,0,6740,'2526','H','O',7442,'CSH',0,'2025-12-19','2025-12-19',4353,0,4469,0,'D06','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 11:24:26','','0000-00-00 00:00:00',0),(8046,0,0,6742,'2526','H','O',7443,'CSH',0,'2025-12-19','2025-12-19',4354,0,4470,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-19 11:25:49','','0000-00-00 00:00:00',0),(8047,0,0,6744,'2526','H','O',7444,'CSH',0,'2025-12-19','2025-12-19',9,0,9,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-19 11:27:11','','0000-00-00 00:00:00',0),(8048,0,0,6743,'2526','H','O',7445,'CSH',0,'2025-12-19','2025-12-19',4355,0,4471,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 11:27:21','','0000-00-00 00:00:00',0),(8049,0,0,6741,'2526','H','O',7446,'CSH',0,'2025-12-19','2025-12-19',3174,0,3260,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 11:28:49','','0000-00-00 00:00:00',0),(8050,0,0,6745,'2526','H','O',7447,'CSH',0,'2025-12-19','2025-12-19',4356,0,4472,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 11:31:11','','0000-00-00 00:00:00',0),(8051,0,0,6746,'2526','H','O',7448,'CSH',0,'2025-12-19','2025-12-19',3648,0,3751,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 11:32:15','','0000-00-00 00:00:00',0),(8052,0,0,6747,'2526','H','O',7449,'CSH',0,'2025-12-19','2025-12-19',3628,0,3731,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 11:32:54','','0000-00-00 00:00:00',0),(8053,0,0,6714,'2526','H','O',7450,'CSH',0,'2025-12-19','2025-12-19',4341,0,4456,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 11:35:08','','0000-00-00 00:00:00',0),(8054,0,0,6748,'2526','H','O',7451,'CSH',0,'2025-12-19','2025-12-19',2564,0,2624,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','28543','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 11:36:54','','0000-00-00 00:00:00',0),(8055,0,0,6750,'2526','H','O',7452,'CSH',0,'2025-12-19','2025-12-19',4358,0,4474,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 11:39:04','','0000-00-00 00:00:00',0),(8056,0,0,6751,'2526','H','O',7453,'CSH',0,'2025-12-19','2025-12-19',1037,0,1071,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 11:42:07','','0000-00-00 00:00:00',0),(8057,0,0,6752,'2526','H','O',7454,'CSH',0,'2025-12-19','2025-12-19',2936,0,3013,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','49121','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-19 11:44:28','','0000-00-00 00:00:00',0),(8058,0,0,6730,'2526','H','O',7455,'CSH',0,'2025-12-19','2025-12-19',4349,0,4464,0,'D06','',0,6900.00,0.00,0.00,6900.00,1300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',5600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 11:46:40','','0000-00-00 00:00:00',0),(8059,0,0,6754,'2526','H','O',7456,'CSH',0,'2025-12-19','2025-12-19',4359,0,4475,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-19 11:47:24','','0000-00-00 00:00:00',0),(8060,0,0,6755,'2526','H','O',7457,'CSH',0,'2025-12-19','2025-12-19',2830,0,2902,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 11:48:03','','0000-00-00 00:00:00',0),(8061,0,0,6753,'2526','H','O',7458,'CSH',0,'2025-12-19','2025-12-19',2744,0,2814,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','KOTAK BANK','','26591','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 11:48:08','','0000-00-00 00:00:00',0),(8062,0,0,6756,'2526','H','O',7459,'CSH',0,'2025-12-19','2025-12-19',4360,0,3731,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-19 11:48:33','','0000-00-00 00:00:00',0),(8063,0,0,6757,'2526','H','O',7460,'CSH',0,'2025-12-19','2025-12-19',4361,0,4476,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 11:50:43','','0000-00-00 00:00:00',0),(8064,0,0,6758,'2526','H','O',7461,'CSH',0,'2025-12-19','2025-12-19',2178,0,2233,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 11:52:52','','0000-00-00 00:00:00',0),(8065,0,0,6718,'2526','H','O',7462,'CSH',0,'2025-12-19','2025-12-19',4343,0,4458,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 11:54:48','','0000-00-00 00:00:00',0),(8066,0,0,6760,'2526','H','O',7463,'CSH',0,'2025-12-19','2025-12-19',4363,0,4478,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 11:56:04','','0000-00-00 00:00:00',0),(8067,0,0,6759,'2526','H','O',7464,'CSH',0,'2025-12-19','2025-12-19',4362,0,4477,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-19 11:56:07','','0000-00-00 00:00:00',0),(8068,0,0,6761,'2526','H','O',7465,'CSH',0,'2025-12-19','2025-12-19',893,0,925,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-19 11:56:55','','0000-00-00 00:00:00',0),(8069,0,0,6762,'2526','H','O',7466,'CSH',0,'2025-12-19','2025-12-19',4364,0,4479,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 11:58:57','','0000-00-00 00:00:00',0),(8070,0,0,6763,'2526','H','O',7467,'CSH',0,'2025-12-19','2025-12-19',4365,0,4480,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-19 12:01:29','','0000-00-00 00:00:00',0),(8071,0,0,6728,'2526','H','O',7468,'CSH',0,'2025-12-19','2025-12-19',3880,0,3989,0,'D06','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 12:13:50','','0000-00-00 00:00:00',0),(8072,0,0,6765,'2526','H','O',7469,'CSH',0,'2025-12-19','2025-12-19',4366,0,4481,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','boi','','55851','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 12:16:40','','0000-00-00 00:00:00',0),(8073,0,0,6766,'2526','H','O',7470,'CSH',0,'2025-12-19','2025-12-19',4367,0,4482,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','63922','','scan     ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-19 12:22:11','','0000-00-00 00:00:00',0),(8074,0,0,6767,'2526','H','O',7471,'CSH',0,'2025-12-19','2025-12-19',4368,0,4483,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 7484','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 12:23:53','reception','2025-12-19 13:14:42',0),(8075,0,0,6768,'2526','H','O',7472,'CSH',0,'2025-12-19','2025-12-19',2721,0,2792,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 12:25:57','','0000-00-00 00:00:00',0),(8076,0,0,6770,'2526','H','O',7473,'CSH',0,'2025-12-19','2025-12-19',4369,0,4485,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 12:28:39','','0000-00-00 00:00:00',0),(8077,0,0,6771,'2526','H','O',7474,'CSH',0,'2025-12-19','2025-12-19',3673,0,3777,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-19 12:29:24','','0000-00-00 00:00:00',0),(8078,0,0,6745,'2526','H','O',7475,'CSH',0,'2025-12-19','2025-12-19',4356,0,4472,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 12:33:00','','0000-00-00 00:00:00',0),(8079,0,0,6713,'2526','H','O',7476,'CSH',0,'2025-12-19','2025-12-19',4340,0,4455,0,'D02','',0,4000.00,0.00,0.00,4000.00,1000.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','31405','','scan ',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-19 12:40:09','','0000-00-00 00:00:00',0),(8080,0,0,6772,'2526','H','O',7477,'CSH',0,'2025-12-19','2025-12-19',4370,0,4486,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 12:42:48','','0000-00-00 00:00:00',0),(8081,0,0,6773,'2526','H','O',7478,'CSH',0,'2025-12-19','2025-12-19',4371,0,4487,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 12:43:54','','0000-00-00 00:00:00',0),(8082,0,0,6774,'2526','H','O',7479,'CSH',0,'2025-12-19','2025-12-19',4372,0,4488,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 12:49:01','','0000-00-00 00:00:00',0),(8083,0,0,6775,'2526','H','O',7480,'CSH',0,'2025-12-19','2025-12-19',4373,0,4489,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 12:53:42','','0000-00-00 00:00:00',0),(8084,0,0,6775,'2526','H','O',7481,'CSH',0,'2025-12-19','2025-12-19',4373,0,4489,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 12:58:33','','0000-00-00 00:00:00',0),(8085,0,0,6746,'2526','H','O',7482,'CSH',0,'2025-12-19','2025-12-19',3648,0,3751,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 13:03:00','','0000-00-00 00:00:00',0),(8086,0,0,6774,'2526','H','O',7483,'CSH',0,'2025-12-19','2025-12-19',4372,0,4488,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 13:03:15','','0000-00-00 00:00:00',0),(8087,0,0,6767,'2526','H','O',7484,'',0,'2025-12-19','0000-00-00',4368,0,4483,0,'D06','',0,-900.00,0.00,0.00,-900.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-900.00,0,0,'2025-12-19','Y','N','Y','','N',0.00,'','Y','FOC','','HO 7471','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 13:14:42','reception','2025-12-19 13:15:11',0),(8088,0,0,6776,'2526','H','O',7485,'CSH',0,'2025-12-19','2025-12-19',2577,0,2638,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 13:21:31','','0000-00-00 00:00:00',0),(8089,0,0,6772,'2526','H','O',7486,'CSH',0,'2025-12-19','2025-12-19',4370,0,4486,0,'D02','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-19 13:23:26','','0000-00-00 00:00:00',0),(8090,0,0,6773,'2526','H','O',7487,'CSH',0,'2025-12-19','2025-12-19',4371,0,4487,0,'D06','',0,4700.00,0.00,0.00,4700.00,500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 14:06:03','','0000-00-00 00:00:00',0),(8091,0,0,6163,'2526','H','D',310,'',0,'2025-12-19','0000-00-00',0,284,4172,0,'D02','',0,59250.00,0.00,0.00,59250.00,5250.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-50000,0,'0000-00-00','','N','N','F','N',4000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-19 14:22:36','riya','2025-12-19 14:46:07',0),(8092,0,0,6778,'2526','H','O',7488,'CSH',0,'2025-12-19','2025-12-19',1277,0,1316,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 14:26:54','','0000-00-00 00:00:00',0),(8093,0,0,6163,'2526','H','I',295,'CR',0,'2025-12-19','0000-00-00',0,284,4172,0,'D02','',0,59250.00,0.00,0.00,59250.00,5250.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-54000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(8094,0,0,6779,'2526','H','O',7489,'CSH',0,'2025-12-19','2025-12-19',2558,0,2618,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-19 15:44:30','','0000-00-00 00:00:00',0),(8095,0,0,6781,'2526','H','O',7490,'CSH',0,'2025-12-19','2025-12-19',4374,0,4491,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 16:17:00','','0000-00-00 00:00:00',0),(8096,0,0,6783,'2526','H','O',7491,'CSH',0,'2025-12-19','2025-12-19',4376,0,4493,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 16:31:24','','0000-00-00 00:00:00',0),(8097,0,0,6785,'2526','H','O',7492,'CSH',0,'2025-12-19','2025-12-19',4369,0,4485,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 16:40:53','','0000-00-00 00:00:00',0),(8098,0,0,6786,'2526','H','O',7493,'CSH',0,'2025-12-19','2025-12-19',865,0,897,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 16:47:25','','0000-00-00 00:00:00',0),(8099,0,0,6787,'2526','H','O',7494,'CSH',0,'2025-12-19','2025-12-19',4377,0,4494,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-19 16:48:07','','0000-00-00 00:00:00',0),(8100,0,0,6788,'2526','H','O',7495,'CSH',0,'2025-12-19','2025-12-19',3812,0,3918,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 16:51:52','','0000-00-00 00:00:00',0),(8101,0,0,6790,'2526','H','O',7496,'CSH',0,'2025-12-19','2025-12-19',3789,0,3893,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','60143','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 16:56:09','','0000-00-00 00:00:00',0),(8102,0,0,6792,'2526','H','O',7497,'CSH',0,'2025-12-19','2025-12-19',2627,0,2695,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 17:03:16','','0000-00-00 00:00:00',0),(8103,0,0,6793,'2526','H','O',7498,'CSH',0,'2025-12-19','2025-12-19',4378,0,4495,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 17:10:43','','0000-00-00 00:00:00',0),(8104,0,0,6795,'2526','H','O',7499,'CSH',0,'2025-12-19','2025-12-19',4380,0,4497,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-19 17:15:03','','0000-00-00 00:00:00',0),(8105,0,0,6796,'2526','H','O',7500,'CSH',0,'2025-12-19','2025-12-19',3770,0,3874,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 17:16:36','','0000-00-00 00:00:00',0),(8106,0,0,6797,'2526','H','O',7501,'CSH',0,'2025-12-19','2025-12-19',1765,0,1811,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 17:20:18','','0000-00-00 00:00:00',0),(8107,0,0,6799,'2526','H','O',7502,'CSH',0,'2025-12-19','2025-12-19',3813,0,3919,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 17:26:50','','0000-00-00 00:00:00',0),(8108,0,0,6787,'2526','H','O',7503,'CSH',0,'2025-12-19','2025-12-19',4377,0,4494,0,'D06','',0,2200.00,0.00,0.00,2200.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','00423','','scan',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 17:35:32','','0000-00-00 00:00:00',0),(8109,0,0,6787,'2526','H','O',7504,'CSH',0,'2025-12-19','2025-12-19',4377,0,4494,0,'D06','',0,2200.00,0.00,0.00,2200.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 17:36:27','','0000-00-00 00:00:00',0),(8110,0,0,6800,'2526','H','O',7505,'CSH',0,'2025-12-19','2025-12-19',449,0,475,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 17:37:58','','0000-00-00 00:00:00',0),(8111,0,0,6801,'2526','H','O',7506,'CSH',0,'2025-12-19','2025-12-19',2393,0,392,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 17:43:25','','0000-00-00 00:00:00',0),(8112,0,0,6798,'2526','H','O',7507,'CSH',0,'2025-12-19','2025-12-19',4381,0,4498,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-19 17:46:30','','0000-00-00 00:00:00',0),(8113,0,0,6804,'2526','H','O',7508,'CSH',0,'2025-12-19','2025-12-19',4383,0,4500,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 17:49:33','','0000-00-00 00:00:00',0),(8114,0,0,6805,'2526','H','O',7509,'CSH',0,'2025-12-19','2025-12-19',2656,0,2726,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 17:51:16','','0000-00-00 00:00:00',0),(8115,0,0,6807,'2526','H','O',7510,'CSH',0,'2025-12-19','2025-12-19',4385,0,4502,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 17:53:55','','0000-00-00 00:00:00',0),(8116,0,0,6806,'2526','H','O',7511,'CSH',0,'2025-12-19','2025-12-19',4384,0,4501,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','CRD','BANK','','39','','CARD',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 17:55:26','','0000-00-00 00:00:00',0),(8117,0,0,6809,'2526','H','O',7512,'CSH',0,'2025-12-19','2025-12-19',4387,0,4504,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 18:00:44','','0000-00-00 00:00:00',0),(8118,0,0,6808,'2526','H','O',7513,'CSH',0,'2025-12-19','2025-12-19',4386,0,4503,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 18:00:57','','0000-00-00 00:00:00',0),(8119,0,0,6783,'2526','H','O',7514,'CSH',0,'2025-12-19','2025-12-19',4376,0,4493,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 18:02:26','','0000-00-00 00:00:00',0),(8120,0,0,6810,'2526','H','O',7515,'CSH',0,'2025-12-19','2025-12-19',1329,0,1369,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-19 18:07:06','','0000-00-00 00:00:00',0),(8121,0,0,6811,'2526','H','O',7516,'CSH',0,'2025-12-19','2025-12-19',2684,0,2753,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-19 18:07:43','','0000-00-00 00:00:00',0),(8122,0,0,6781,'2526','H','O',7517,'CSH',0,'2025-12-19','2025-12-19',4374,0,4491,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','87379','','scan',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 18:07:51','','0000-00-00 00:00:00',0),(8123,0,0,6812,'2526','H','O',7518,'CSH',0,'2025-12-19','2025-12-19',3776,0,3880,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 18:10:40','','0000-00-00 00:00:00',0),(8124,0,0,6813,'2526','H','O',7519,'CSH',0,'2025-12-19','2025-12-19',3908,0,4017,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 18:19:11','','0000-00-00 00:00:00',0),(8125,0,0,6814,'2526','H','O',7520,'CSH',0,'2025-12-19','2025-12-19',4388,0,4505,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 18:23:01','','0000-00-00 00:00:00',0),(8126,0,0,6815,'2526','H','O',7521,'CSH',0,'2025-12-19','2025-12-19',3319,0,3411,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-19 18:24:35','','0000-00-00 00:00:00',0),(8127,0,0,6816,'2526','H','O',7522,'CSH',0,'2025-12-19','2025-12-19',3181,0,3267,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 18:25:59','','0000-00-00 00:00:00',0),(8128,0,0,6803,'2526','H','O',7523,'CSH',0,'2025-12-19','2025-12-19',4078,0,4187,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-19 18:26:49','','0000-00-00 00:00:00',0),(8129,0,0,6817,'2526','H','O',7524,'CSH',0,'2025-12-19','2025-12-19',3887,0,3996,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 18:29:16','','0000-00-00 00:00:00',0),(8130,0,0,6819,'2526','H','O',7525,'CSH',0,'2025-12-19','2025-12-19',221,0,234,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 18:32:53','','0000-00-00 00:00:00',0),(8131,0,0,6820,'2526','H','O',7526,'CSH',0,'2025-12-19','2025-12-19',3259,0,3342,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','rnsb','','64628','','scan     ',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-19 18:34:42','','0000-00-00 00:00:00',0),(8132,0,0,6821,'2526','H','O',7527,'CSH',0,'2025-12-19','2025-12-19',242,0,257,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 18:34:54','','0000-00-00 00:00:00',0),(8133,0,0,6823,'2526','H','O',7528,'CSH',0,'2025-12-19','2025-12-19',4389,0,4506,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','79285','','scan     ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-19 18:37:09','','0000-00-00 00:00:00',0),(8134,0,0,6824,'2526','H','O',7529,'CSH',0,'2025-12-19','2025-12-19',4390,0,4507,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-19 18:37:47','','0000-00-00 00:00:00',0),(8135,0,0,6807,'2526','H','O',7530,'CSH',0,'2025-12-19','2025-12-19',4385,0,4502,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 18:38:09','','0000-00-00 00:00:00',0),(8136,0,0,6825,'2526','H','O',7531,'CSH',0,'2025-12-19','2025-12-19',4391,0,4508,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 18:38:42','','0000-00-00 00:00:00',0),(8137,0,0,6826,'2526','H','O',7532,'CSH',0,'2025-12-19','2025-12-19',4065,0,4175,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-19 18:43:33','','0000-00-00 00:00:00',0),(8138,0,0,6827,'2526','H','O',7533,'CSH',0,'2025-12-19','2025-12-19',1070,0,1110,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-19 18:46:53','','0000-00-00 00:00:00',0),(8139,0,0,6828,'2526','H','O',7534,'CSH',0,'2025-12-19','2025-12-19',3848,0,3957,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 18:47:18','','0000-00-00 00:00:00',0),(8140,0,0,6829,'2526','H','O',7535,'CSH',0,'2025-12-19','2025-12-19',1049,0,1083,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 18:50:27','','0000-00-00 00:00:00',0),(8141,0,0,6832,'2526','H','O',7536,'CSH',0,'2025-12-19','2025-12-19',3188,0,3274,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 18:52:22','','0000-00-00 00:00:00',0),(8142,0,0,6833,'2526','H','O',7537,'CSH',0,'2025-12-19','2025-12-19',4392,0,4509,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-19 18:53:51','','0000-00-00 00:00:00',0),(8143,0,0,6834,'2526','H','O',7538,'CSH',0,'2025-12-19','2025-12-19',4393,0,4510,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-19 18:53:57','','0000-00-00 00:00:00',0),(8144,0,0,6804,'2526','H','O',7539,'CSH',0,'2025-12-19','2025-12-19',4383,0,4500,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 18:55:08','','0000-00-00 00:00:00',0),(8145,0,0,6830,'2526','H','O',7540,'CSH',0,'2025-12-19','2025-12-19',4334,0,4447,0,'D14','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-19 18:55:55','','0000-00-00 00:00:00',0),(8146,0,0,6835,'2526','H','O',7541,'CSH',0,'2025-12-19','2025-12-19',3310,0,3399,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-19 18:58:35','','0000-00-00 00:00:00',0),(8147,0,0,6822,'2526','H','O',7542,'CSH',0,'2025-12-19','2025-12-19',3476,0,3575,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 18:58:47','','0000-00-00 00:00:00',0),(8148,0,0,6836,'2526','H','O',7543,'CSH',0,'2025-12-19','2025-12-19',4394,0,4511,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','57759','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 19:01:18','','0000-00-00 00:00:00',0),(8149,0,0,6837,'2526','H','O',7544,'CSH',0,'2025-12-19','2025-12-19',4395,0,4512,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-19 19:02:49','','0000-00-00 00:00:00',0),(8150,0,0,6839,'2526','H','O',7545,'CSH',0,'2025-12-19','2025-12-19',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 19:10:15','','0000-00-00 00:00:00',0),(8151,0,0,6840,'2526','H','O',7546,'CSH',0,'2025-12-19','2025-12-19',4397,0,4514,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-19 19:14:48','','0000-00-00 00:00:00',0),(8152,0,0,6447,'2526','H','D',311,'',0,'2025-12-19','0000-00-00',4209,299,4323,0,'D27','',0,19400.00,0.00,0.00,19400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-16000,0,'0000-00-00','','N','N','F','N',3400.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(8153,0,0,6841,'2526','H','O',7547,'CSH',0,'2025-12-19','2025-12-19',3378,0,3473,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-19 19:20:47','','0000-00-00 00:00:00',0),(8154,0,0,6447,'2526','H','I',296,'CR',0,'2025-12-19','0000-00-00',4209,299,4323,0,'D27','',0,19400.00,0.00,0.00,19400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-19400,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(8155,0,0,6712,'2526','H','D',312,'',0,'2025-12-19','0000-00-00',2738,307,2808,0,'D02','',0,5200.00,0.00,0.00,5200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-3000,0,'0000-00-00','','N','N','F','N',2200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-19 19:34:41','vishal','2025-12-19 19:36:05',0),(8156,0,0,6712,'2526','H','I',297,'CR',0,'2025-12-19','0000-00-00',2738,307,2808,0,'D02','',0,5200.00,0.00,0.00,5200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-5200,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-19 19:42:15','','0000-00-00 00:00:00',0),(8157,0,0,6838,'2526','H','O',7548,'CSH',0,'2025-12-19','2025-12-19',4396,0,4513,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 19:45:29','','0000-00-00 00:00:00',0),(8158,0,0,6809,'2526','H','O',7549,'CSH',0,'2025-12-19','2025-12-19',4387,0,4504,0,'D06','',0,2000.00,0.00,0.00,2000.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','25330','','scan',1800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 19:52:56','','0000-00-00 00:00:00',0),(8159,0,0,6838,'2526','H','O',7550,'CSH',0,'2025-12-19','2025-12-19',4396,0,4513,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','CRD','kotak','11859','11859','','card',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-19 20:03:41','','0000-00-00 00:00:00',0),(8160,0,0,6707,'2526','H','D',313,'',0,'2025-12-19','0000-00-00',0,306,4453,0,'D27','',0,7600.00,0.00,0.00,7600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7000,0,'0000-00-00','','N','N','F','N',600.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-19 20:30:47','vishal','2025-12-19 20:32:47',0),(8161,0,0,6707,'2526','H','I',298,'CR',0,'2025-12-19','0000-00-00',0,306,4453,0,'D27','',0,7600.00,0.00,0.00,7600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-7600,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-19 20:36:48','','0000-00-00 00:00:00',0),(8162,0,0,6844,'2526','H','O',7551,'CSH',0,'2025-12-20','2025-12-20',3852,0,3961,0,'D06','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB BANK','','78164','','scan ',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-20 08:48:40','','0000-00-00 00:00:00',0),(8163,0,0,6845,'2526','H','O',7552,'CSH',0,'2025-12-20','2025-12-20',4398,0,4516,0,'D27','',0,1200.00,0.00,0.00,1200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-20 08:50:53','','0000-00-00 00:00:00',0),(8164,0,0,6846,'2526','H','O',7553,'CSH',0,'2025-12-20','2025-12-20',2680,0,2749,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-20 09:42:45','','0000-00-00 00:00:00',0),(8165,0,0,6847,'2526','H','O',7554,'CSH',0,'2025-12-20','2025-12-20',4399,0,4517,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','36145','','SCAN',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-20 10:20:47','','0000-00-00 00:00:00',0),(8166,0,0,6848,'2526','H','O',7555,'CSH',0,'2025-12-20','2025-12-20',3146,0,3232,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-20 10:26:29','','0000-00-00 00:00:00',0),(8167,0,0,6850,'2526','H','O',7556,'CSH',0,'2025-12-20','2025-12-20',4400,0,4518,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-20 10:35:06','','0000-00-00 00:00:00',0),(8168,0,0,6849,'2526','H','O',7557,'CSH',0,'2025-12-20','2025-12-20',3305,0,3394,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-20 10:55:35','','0000-00-00 00:00:00',0),(8169,0,0,6852,'2526','H','O',7558,'CSH',0,'2025-12-20','2025-12-20',4401,0,4519,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-20 11:01:29','','0000-00-00 00:00:00',0),(8170,0,0,6853,'2526','H','O',7559,'CSH',0,'2025-12-20','2025-12-20',4402,0,4520,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-20 11:02:36','','0000-00-00 00:00:00',0),(8171,0,0,6855,'2526','H','O',7560,'CSH',0,'2025-12-20','2025-12-20',4404,0,4522,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-20 11:10:37','','0000-00-00 00:00:00',0),(8172,0,0,6856,'2526','H','O',7561,'CSH',0,'2025-12-20','2025-12-20',4405,0,4523,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-20 11:12:10','','0000-00-00 00:00:00',0),(8173,0,0,6854,'2526','H','O',7562,'CSH',0,'2025-12-20','2025-12-20',4403,0,4521,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-20 11:15:19','','0000-00-00 00:00:00',0),(8174,0,0,6858,'2526','H','O',7563,'CSH',0,'2025-12-20','2025-12-20',4406,0,4524,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-20 11:16:08','','0000-00-00 00:00:00',0),(8175,0,0,6855,'2526','H','O',7564,'CSH',0,'2025-12-20','2025-12-20',4404,0,4522,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-20 11:18:17','','0000-00-00 00:00:00',0),(8176,0,0,6847,'2526','H','O',7565,'CSH',0,'2025-12-20','2025-12-20',4399,0,4517,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','34487','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-20 11:21:24','','0000-00-00 00:00:00',0),(8177,0,0,6850,'2526','H','O',7566,'CSH',0,'2025-12-20','2025-12-20',4400,0,4518,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-20 11:26:49','','0000-00-00 00:00:00',0),(8178,0,0,6861,'2526','H','O',7567,'CSH',0,'2025-12-20','2025-12-20',4407,0,4525,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-20 11:28:04','','0000-00-00 00:00:00',0),(8179,0,0,6853,'2526','H','O',7568,'CSH',0,'2025-12-20','2025-12-20',4402,0,4520,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-20 11:30:29','','0000-00-00 00:00:00',0),(8180,0,0,6862,'2526','H','O',7569,'CSH',0,'2025-12-20','2025-12-20',251,0,266,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-20 11:30:53','','0000-00-00 00:00:00',0),(8181,0,0,6851,'2526','H','O',7570,'CSH',0,'2025-12-20','2025-12-20',4047,0,4154,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','KOTAK BANK','','24493','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-20 11:36:50','','0000-00-00 00:00:00',0),(8182,0,0,6863,'2526','H','O',7571,'CSH',0,'2025-12-20','2025-12-20',4408,0,4526,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-20 11:38:48','','0000-00-00 00:00:00',0),(8183,0,0,6864,'2526','H','O',7572,'CSH',0,'2025-12-20','2025-12-20',4409,0,4527,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-20 11:45:19','','0000-00-00 00:00:00',0),(8184,0,0,6865,'2526','H','O',7573,'CSH',0,'2025-12-20','2025-12-20',4410,0,4325,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-20 11:46:24','','0000-00-00 00:00:00',0),(8185,0,0,6866,'2526','H','O',7574,'CSH',0,'2025-12-20','2025-12-20',2929,0,3006,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-20 11:48:20','','0000-00-00 00:00:00',0),(8186,0,0,6867,'2526','H','O',7575,'CSH',0,'2025-12-20','2025-12-20',3263,0,3351,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-20 11:48:25','','0000-00-00 00:00:00',0),(8187,0,0,6868,'2526','H','O',7576,'CSH',0,'2025-12-20','2025-12-20',4411,0,4528,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC BANK','','36747','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-20 11:50:12','','0000-00-00 00:00:00',0),(8188,0,0,6869,'2526','H','O',7577,'CSH',0,'2025-12-20','2025-12-20',4412,0,4529,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-20 11:53:41','','0000-00-00 00:00:00',0),(8189,0,0,6870,'2526','H','O',7578,'CSH',0,'2025-12-20','2025-12-20',4413,0,4530,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-20 12:04:08','','0000-00-00 00:00:00',0),(8190,0,0,6863,'2526','H','O',7579,'CSH',0,'2025-12-20','2025-12-20',4408,0,4526,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-20 12:14:14','','0000-00-00 00:00:00',0),(8191,0,0,6872,'2526','H','O',7580,'CSH',0,'2025-12-20','2025-12-20',4415,0,4532,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 7591','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-20 12:15:47','drashti','2025-12-20 12:50:55',0),(8192,0,0,6871,'2526','H','O',7581,'CSH',0,'2025-12-20','2025-12-20',4414,0,4531,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','65139','','scan',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-20 12:16:00','','0000-00-00 00:00:00',0),(8193,0,0,6873,'2526','H','O',7582,'CSH',0,'2025-12-20','2025-12-20',4416,0,4533,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-20 12:22:20','','0000-00-00 00:00:00',0),(8194,0,0,6874,'2526','H','O',7583,'CSH',0,'2025-12-20','2025-12-20',4417,0,4534,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-20 12:28:33','','0000-00-00 00:00:00',0),(8195,0,0,6847,'2526','H','O',7584,'CSH',0,'2025-12-20','2025-12-20',4399,0,4517,0,'D03','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI','','39475','','SCAN',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-20 12:29:11','','0000-00-00 00:00:00',0),(8196,0,0,6875,'2526','H','O',7585,'CSH',0,'2025-12-20','2025-12-20',4418,0,4535,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-20 12:29:29','','0000-00-00 00:00:00',0),(8197,0,0,6877,'2526','H','O',7586,'CSH',0,'2025-12-20','2025-12-20',2659,0,2729,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 7594','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-20 12:31:09','drashti','2025-12-20 13:06:56',0),(8198,0,0,6876,'2526','H','O',7587,'CSH',0,'2025-12-20','2025-12-20',4419,0,4536,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','7','SBI BANK','','18414','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-20 12:32:06','','0000-00-00 00:00:00',0),(8199,0,0,6878,'2526','H','O',7588,'CSH',0,'2025-12-20','2025-12-20',4420,0,4537,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-20 12:32:53','','0000-00-00 00:00:00',0),(8200,0,0,6879,'2526','H','O',7589,'CSH',0,'2025-12-20','2025-12-20',4421,0,4538,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','SBI BANK','','18414','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-20 12:33:46','','0000-00-00 00:00:00',0),(8201,0,0,6875,'2526','H','O',7590,'CSH',0,'2025-12-20','2025-12-20',4418,0,4535,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-20 12:42:19','','0000-00-00 00:00:00',0),(8202,0,0,6872,'2526','H','O',7591,'',0,'2025-12-20','0000-00-00',4415,0,4532,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-12-20','Y','N','Y','','N',0.00,'','Y','CANCEL','','HO 7580','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-20 12:50:55','drashti','2025-12-20 12:51:25',0),(8203,0,0,6872,'2526','H','O',7592,'CSH',0,'2025-12-20','2025-12-20',4415,0,4532,0,'D27','',0,750.00,0.00,0.00,750.00,350.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-20 12:53:02','','0000-00-00 00:00:00',0),(8204,0,0,6880,'2526','H','O',7593,'CSH',0,'2025-12-20','2025-12-20',4422,0,4539,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-20 13:05:39','','0000-00-00 00:00:00',0),(8205,0,0,6877,'2526','H','O',7594,'',0,'2025-12-20','0000-00-00',2659,0,2729,0,'D27','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-12-20','Y','N','Y','','N',0.00,'','Y','FOC','','HO 7586','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-20 13:06:56','drashti','2025-12-20 13:07:19',0),(8206,0,0,6860,'2526','H','O',7595,'CSH',0,'2025-12-20','2025-12-20',4317,0,4431,0,'D02','',0,3000.00,0.00,0.00,3000.00,2000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-20 13:08:44','','0000-00-00 00:00:00',0),(8207,0,0,6881,'2526','H','O',7596,'CSH',0,'2025-12-20','2025-12-20',4423,0,4540,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','47257','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-20 13:12:25','','0000-00-00 00:00:00',0),(8208,0,0,6706,'2526','H','D',314,'',0,'2025-12-20','0000-00-00',0,305,4452,0,'D27','',0,26250.00,0.00,0.00,26250.00,4250.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-22000,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-20 13:17:59','riya','2025-12-20 13:18:20',0),(8210,0,0,6576,'2526','H','I',299,'CR',0,'2025-12-20','0000-00-00',4269,302,4384,0,'D27','',0,19700.00,0.00,0.00,19700.00,700.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-19000,0,'0000-00-00','','N','Y','F','N',0.00,'','Y','-','HI 300','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(8211,0,0,6576,'2526','H','I',300,'',0,'2025-12-20','0000-00-00',4269,302,4384,0,'D27','',0,-19700.00,0.00,0.00,-19700.00,-700.00,0.00,'',0.00,'0000-00-00','','','',0,'','','','','','','',0.00,0,0,'0000-00-00','','N','N','F','N',0.00,'','Y','-','','HI 299','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-20 13:40:33','','0000-00-00 00:00:00',0),(8212,0,0,6576,'2526','H','D',316,'',0,'2025-12-20','0000-00-00',4269,302,4384,0,'D27','',0,19700.00,0.00,0.00,19700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-19000,0,'0000-00-00','','N','N','F','N',700.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(8213,0,0,6576,'2526','H','I',301,'CR',0,'2025-12-20','0000-00-00',4269,302,4384,0,'D27','',0,19700.00,0.00,0.00,19700.00,700.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-19000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(8214,0,0,6881,'2526','H','O',7597,'CSH',0,'2025-12-20','2025-12-20',4423,0,4540,0,'D02','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','axis','','62196','','scan',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-20 14:01:51','','0000-00-00 00:00:00',0),(8215,0,0,6461,'2526','H','D',317,'',0,'2025-12-20','0000-00-00',4206,301,4320,0,'D27','',0,25700.00,0.00,0.00,25700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25700,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(8216,0,0,6461,'2526','H','I',302,'CR',0,'2025-12-20','0000-00-00',4206,301,4320,0,'D27','',0,25700.00,0.00,0.00,25700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-25700,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(8217,0,0,6613,'2526','H','D',318,'',0,'2025-12-20','0000-00-00',0,304,4405,0,'D02','',0,101100.00,0.00,0.00,101100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-101100,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(8218,0,0,6613,'2526','H','I',303,'CR',0,'2025-12-20','0000-00-00',0,304,4405,0,'D02','',0,101100.00,0.00,0.00,101100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-101100,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(8219,0,0,6883,'2526','H','O',7598,'CSH',0,'2025-12-20','2025-12-20',957,0,990,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-20 15:37:57','','0000-00-00 00:00:00',0),(8220,0,0,6885,'2526','H','O',7599,'CSH',0,'2025-12-20','2025-12-20',4078,0,4187,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-20 17:41:56','','0000-00-00 00:00:00',0),(8221,0,0,6886,'2526','H','O',7600,'CSH',0,'2025-12-20','2025-12-20',4424,0,4542,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-20 17:57:27','','0000-00-00 00:00:00',0),(8222,0,0,6887,'2526','H','O',7601,'CSH',0,'2025-12-20','2025-12-20',4425,0,4543,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-20 18:08:24','','0000-00-00 00:00:00',0),(8223,0,0,6397,'2526','H','D',319,'',0,'2025-12-20','0000-00-00',0,298,4301,0,'D02','',0,36750.00,0.00,0.00,36750.00,750.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-35000,0,'0000-00-00','','N','N','F','N',1000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-20 18:09:25','riya','2025-12-20 18:09:46',0),(8224,0,0,6397,'2526','H','I',304,'CR',0,'2025-12-20','0000-00-00',0,298,4301,0,'D02','',0,36750.00,0.00,0.00,36750.00,750.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-36000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(8225,0,0,6888,'2526','H','O',7602,'CSH',0,'2025-12-20','2025-12-20',4426,0,4544,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','43618','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-20 19:10:05','','0000-00-00 00:00:00',0),(8226,0,0,6889,'2526','H','O',7603,'CSH',0,'2025-12-20','2025-12-20',4427,0,4545,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-20 19:13:11','','0000-00-00 00:00:00',0),(8227,0,0,6890,'2526','H','O',7604,'CSH',0,'2025-12-20','2025-12-20',4277,0,4392,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-20 19:25:06','','0000-00-00 00:00:00',0),(8228,0,0,6891,'2526','H','O',7605,'CSH',0,'2025-12-20','2025-12-20',4334,0,4447,0,'D14','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-20 19:31:00','','0000-00-00 00:00:00',0),(8229,0,0,6893,'2526','H','O',7606,'CSH',0,'2025-12-21','2025-12-21',4428,0,4546,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-21 09:14:43','','0000-00-00 00:00:00',0),(8230,0,0,6894,'2526','H','O',7607,'CSH',0,'2025-12-21','2025-12-21',4429,0,4547,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-21 09:18:04','','0000-00-00 00:00:00',0),(8231,0,0,6895,'2526','H','O',7608,'CSH',0,'2025-12-21','2025-12-21',4430,0,4548,0,'D03','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-21 09:20:57','','0000-00-00 00:00:00',0),(8232,0,0,6896,'2526','H','O',7609,'CSH',0,'2025-12-21','2025-12-21',3310,0,3399,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-21 11:26:11','','0000-00-00 00:00:00',0),(8233,0,0,6897,'2526','H','O',7610,'CSH',0,'2025-12-21','2025-12-21',4431,0,4549,0,'D27','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB BANK','','92291','','scan ',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-21 12:12:00','','0000-00-00 00:00:00',0),(8234,0,0,6901,'2526','H','O',7611,'CSH',0,'2025-12-22','2025-12-22',4432,0,4551,0,'D27','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Sacn',0,'','7','bank','','90419','','scan',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 08:59:24','','0000-00-00 00:00:00',0),(8235,0,0,6902,'2526','H','O',7612,'CSH',0,'2025-12-22','2025-12-22',4433,0,4552,0,'D27','',0,1500.00,0.00,0.00,1500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','47173','','scan',1500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 09:10:13','','0000-00-00 00:00:00',0),(8236,0,0,6903,'2526','H','O',7613,'CSH',0,'2025-12-22','2025-12-22',4419,0,4536,0,'D27','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 09:12:24','','0000-00-00 00:00:00',0),(8237,0,0,6904,'2526','H','O',7614,'CSH',0,'2025-12-22','2025-12-22',4434,0,4553,0,'D27','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 09:14:18','','0000-00-00 00:00:00',0),(8238,0,0,6905,'2526','H','O',7615,'CSH',0,'2025-12-22','2025-12-22',3755,0,3858,0,'D27','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 09:17:22','','0000-00-00 00:00:00',0),(8239,0,0,6906,'2526','H','O',7616,'CSH',0,'2025-12-22','2025-12-22',1288,0,1327,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 09:18:36','','0000-00-00 00:00:00',0),(8240,0,0,6907,'2526','H','O',7617,'CSH',0,'2025-12-22','2025-12-22',4334,0,4447,0,'D14','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 09:25:02','','0000-00-00 00:00:00',0),(8241,0,0,6908,'2526','H','O',7618,'CSH',0,'2025-12-22','2025-12-22',4435,0,4554,0,'D03','',0,6400.00,0.00,0.00,6400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',6400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 09:28:51','','0000-00-00 00:00:00',0),(8242,0,0,6910,'2526','H','O',7619,'CSH',0,'2025-12-22','2025-12-22',4437,0,4556,0,'D27','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 09:30:52','','0000-00-00 00:00:00',0),(8243,0,0,6909,'2526','H','O',7620,'CSH',0,'2025-12-22','2025-12-22',4436,0,4555,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','62030','','scan  ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 09:33:23','','0000-00-00 00:00:00',0),(8244,0,0,6912,'2526','H','O',7621,'CSH',0,'2025-12-22','2025-12-22',4438,0,4557,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','100 DISCOUNT','HO 7660','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 09:33:45','reception','2025-12-22 11:22:25',0),(8245,0,0,6914,'2526','H','O',7622,'CSH',0,'2025-12-22','2025-12-22',4439,0,4559,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 09:42:25','','0000-00-00 00:00:00',0),(8246,0,0,6915,'2526','H','O',7623,'CSH',0,'2025-12-22','2025-12-22',3302,0,3391,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 09:44:27','','0000-00-00 00:00:00',0),(8247,0,0,6916,'2526','H','O',7624,'CSH',0,'2025-12-22','2025-12-22',3803,0,3908,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 09:45:53','','0000-00-00 00:00:00',0),(8248,0,0,6918,'2526','H','O',7625,'CSH',0,'2025-12-22','2025-12-22',4440,0,4561,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 10:00:50','','0000-00-00 00:00:00',0),(8249,0,0,6919,'2526','H','O',7626,'CSH',0,'2025-12-20','2025-12-22',4441,0,4562,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI BANK','','82422','','scan ',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','urvashi','2025-12-22 21:00:00','','0000-00-00 00:00:00',0),(8250,0,0,6920,'2526','H','O',7627,'CSH',0,'2025-12-22','2025-12-22',4442,0,4563,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 10:05:38','','0000-00-00 00:00:00',0),(8251,0,0,6921,'2526','H','O',7628,'CSH',0,'2025-12-22','2025-12-22',2041,0,2096,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 10:06:46','','0000-00-00 00:00:00',0),(8252,0,0,6923,'2526','H','O',7629,'CSH',0,'2025-12-22','2025-12-22',4443,0,4565,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 10:14:55','','0000-00-00 00:00:00',0),(8253,0,0,6924,'2526','H','O',7630,'CSH',0,'2025-12-22','2025-12-22',3695,0,3347,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-22 10:17:17','','0000-00-00 00:00:00',0),(8254,0,0,6926,'2526','H','O',7631,'CSH',0,'2025-12-22','2025-12-22',4445,0,4567,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 10:21:27','','0000-00-00 00:00:00',0),(8255,0,0,6927,'2526','H','O',7632,'CSH',0,'2025-12-22','2025-12-22',4446,0,4568,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 10:23:46','','0000-00-00 00:00:00',0),(8256,0,0,6925,'2526','H','O',7633,'CSH',0,'2025-12-22','2025-12-22',4444,0,4566,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','CRD','hdfc','64782','64782','','card',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 10:25:12','','0000-00-00 00:00:00',0),(8257,0,0,6928,'2526','H','O',7634,'CSH',0,'2025-12-22','2025-12-22',4447,0,4569,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-22 10:27:53','','0000-00-00 00:00:00',0),(8258,0,0,6929,'2526','H','O',7635,'CSH',0,'2025-12-22','2025-12-22',4448,0,4570,0,'D27','',0,1650.00,0.00,0.00,1650.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1650.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-22 10:34:06','','0000-00-00 00:00:00',0),(8259,0,0,6930,'2526','H','O',7636,'CSH',0,'2025-12-22','2025-12-22',4449,0,4571,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 10:35:16','','0000-00-00 00:00:00',0),(8260,0,0,6932,'2526','H','O',7637,'CSH',0,'2025-12-22','2025-12-22',2119,0,2170,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 10:40:59','','0000-00-00 00:00:00',0),(8261,0,0,6933,'2526','H','O',7638,'CSH',0,'2025-12-22','2025-12-22',4450,0,4572,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-22 10:44:05','','0000-00-00 00:00:00',0),(8262,0,0,6934,'2526','H','O',7639,'CSH',0,'2025-12-22','2025-12-22',4451,0,4573,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 10:44:40','','0000-00-00 00:00:00',0),(8263,0,0,6936,'2526','H','O',7640,'CSH',0,'2025-12-22','2025-12-22',4025,0,4132,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 10:46:47','','0000-00-00 00:00:00',0),(8264,0,0,6938,'2526','H','O',7641,'CSH',0,'2025-12-22','2025-12-22',2133,0,2184,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 10:47:47','','0000-00-00 00:00:00',0),(8265,0,0,6939,'2526','H','O',7642,'CSH',0,'2025-12-22','2025-12-22',4453,0,4575,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bank','','21838','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 10:49:38','','0000-00-00 00:00:00',0),(8266,0,0,6937,'2526','H','O',7643,'CSH',0,'2025-12-22','2025-12-22',4452,0,4574,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bank','','21838','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 10:50:03','','0000-00-00 00:00:00',0),(8267,0,0,6940,'2526','H','O',7644,'CSH',0,'2025-12-22','2025-12-22',4120,0,4232,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 10:54:33','','0000-00-00 00:00:00',0),(8268,0,0,6942,'2526','H','O',7645,'CSH',0,'2025-12-22','2025-12-22',3928,0,4036,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','06942','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 10:56:11','','0000-00-00 00:00:00',0),(8269,0,0,6941,'2526','H','O',7646,'CSH',0,'2025-12-22','2025-12-22',4454,0,4576,0,'D27','',0,1650.00,0.00,0.00,1650.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1650.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 10:56:47','','0000-00-00 00:00:00',0),(8270,0,0,6943,'2526','H','O',7647,'CSH',0,'2025-12-22','2025-12-22',4455,0,4577,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 10:57:17','','0000-00-00 00:00:00',0),(8271,0,0,6944,'2526','H','O',7648,'CSH',0,'2025-12-22','2025-12-22',3140,0,3226,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 11:00:34','','0000-00-00 00:00:00',0),(8272,0,0,6945,'2526','H','O',7649,'CSH',0,'2025-12-22','2025-12-22',4088,0,4198,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 11:01:27','','0000-00-00 00:00:00',0),(8273,0,0,6927,'2526','H','O',7650,'CSH',0,'2025-12-22','2025-12-22',4446,0,4568,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 11:02:04','','0000-00-00 00:00:00',0),(8274,0,0,6946,'2526','H','O',7651,'CSH',0,'2025-12-22','2025-12-22',4456,0,4578,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 11:03:12','','0000-00-00 00:00:00',0),(8275,0,0,6947,'2526','H','O',7652,'CSH',0,'2025-12-22','2025-12-22',3228,0,3314,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 11:05:13','','0000-00-00 00:00:00',0),(8276,0,0,6948,'2526','H','O',7653,'CSH',0,'2025-12-22','2025-12-22',3891,0,4000,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 11:09:33','','0000-00-00 00:00:00',0),(8277,0,0,6949,'2526','H','O',7654,'CSH',0,'2025-12-22','2025-12-22',4457,0,4579,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 11:10:50','','0000-00-00 00:00:00',0),(8278,0,0,6950,'2526','H','O',7655,'CSH',0,'2025-12-22','2025-12-22',4458,0,4580,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 11:14:29','','0000-00-00 00:00:00',0),(8279,0,0,6952,'2526','H','O',7656,'CSH',0,'2025-12-22','2025-12-22',4459,0,4581,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 11:16:17','','0000-00-00 00:00:00',0),(8280,0,0,6953,'2526','H','O',7657,'CSH',0,'2025-12-22','2025-12-22',4460,0,4582,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 11:16:42','','0000-00-00 00:00:00',0),(8281,0,0,6954,'2526','H','O',7658,'CSH',0,'2025-12-22','2025-12-22',4461,0,4583,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 11:18:24','','0000-00-00 00:00:00',0),(8282,0,0,6918,'2526','H','O',7659,'CSH',0,'2025-12-22','2025-12-22',4440,0,4561,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 11:21:17','','0000-00-00 00:00:00',0),(8283,0,0,6912,'2526','H','O',7660,'',0,'2025-12-22','0000-00-00',4438,0,4557,0,'D06','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-12-22','Y','N','Y','','N',0.00,'','Y','100 DISCOUNT','','HO 7621','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 11:22:25','reception','2025-12-22 11:22:57',0),(8284,0,0,6951,'2526','H','O',7661,'CSH',0,'2025-12-22','2025-12-22',2994,0,3072,0,'D14','',0,1100.00,0.00,0.00,1100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-22 11:22:43','','0000-00-00 00:00:00',0),(8285,0,0,6909,'2526','H','O',7662,'CSH',0,'2025-12-22','2025-12-22',4436,0,4555,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','84774','','scan     ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 11:22:51','','0000-00-00 00:00:00',0),(8286,0,0,6912,'2526','H','O',7663,'CSH',0,'2025-12-22','2025-12-22',4438,0,4557,0,'D06','',0,700.00,0.00,0.00,700.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 11:23:34','','0000-00-00 00:00:00',0),(8287,0,0,6956,'2526','H','O',7664,'CSH',0,'2025-12-22','2025-12-22',2245,0,2301,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-22 11:23:45','','0000-00-00 00:00:00',0),(8288,0,0,6957,'2526','H','O',7665,'CSH',0,'2025-12-22','2025-12-22',208,0,221,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 11:25:51','','0000-00-00 00:00:00',0),(8289,0,0,6958,'2526','H','O',7666,'CSH',0,'2025-12-22','2025-12-22',4463,0,4585,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 11:26:46','','0000-00-00 00:00:00',0),(8290,0,0,6959,'2526','H','O',7667,'CSH',0,'2025-12-22','2025-12-22',4464,0,4586,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 11:27:50','','0000-00-00 00:00:00',0),(8291,0,0,6960,'2526','H','O',7668,'CSH',0,'2025-12-22','2025-12-22',4465,0,4587,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 11:28:22','','0000-00-00 00:00:00',0),(8292,0,0,6920,'2526','H','O',7669,'CSH',0,'2025-12-22','2025-12-22',4442,0,4563,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 11:28:41','','0000-00-00 00:00:00',0),(8293,0,0,6962,'2526','H','O',7670,'CSH',0,'2025-12-22','2025-12-22',4466,0,4589,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 11:35:11','','0000-00-00 00:00:00',0),(8294,0,0,6964,'2526','H','O',7671,'CSH',0,'2025-12-22','2025-12-22',3697,0,2834,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','7','baroda bank','','16924','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 11:37:43','','0000-00-00 00:00:00',0),(8295,0,0,6963,'2526','H','O',7672,'CSH',0,'2025-12-22','2025-12-22',4467,0,3824,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','45849','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 11:38:18','','0000-00-00 00:00:00',0),(8296,0,0,6965,'2526','H','O',7673,'CSH',0,'2025-12-22','2025-12-22',2880,0,2955,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 11:38:31','','0000-00-00 00:00:00',0),(8297,0,0,6956,'2526','H','O',7674,'CSH',0,'2025-12-22','2025-12-22',2245,0,2301,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-22 11:39:07','','0000-00-00 00:00:00',0),(8298,0,0,6931,'2526','H','O',7675,'CSH',0,'2025-12-22','2025-12-22',3975,0,4082,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 11:40:22','','0000-00-00 00:00:00',0),(8299,0,0,6966,'2526','H','O',7676,'CSH',0,'2025-12-22','2025-12-22',4468,0,4590,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 11:41:18','','0000-00-00 00:00:00',0),(8300,0,0,6967,'2526','H','O',7677,'CSH',0,'2025-12-22','2025-12-22',4469,0,4591,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-22 11:43:43','','0000-00-00 00:00:00',0),(8301,0,0,6968,'2526','H','O',7678,'CSH',0,'2025-12-22','2025-12-22',4470,0,4592,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 7680','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 11:49:42','drashti','2025-12-22 11:51:56',0),(8302,0,0,6934,'2526','H','O',7679,'CSH',0,'2025-12-22','2025-12-22',4451,0,4573,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 11:49:54','','0000-00-00 00:00:00',0),(8303,0,0,6968,'2526','H','O',7680,'',0,'2025-12-22','0000-00-00',4470,0,4592,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-750.00,0,0,'2025-12-22','Y','N','Y','','N',0.00,'','Y','CANCEL','','HO 7678','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 11:51:56','drashti','2025-12-22 11:52:23',0),(8304,0,0,6970,'2526','H','O',7681,'CSH',0,'2025-12-22','2025-12-22',4471,0,4594,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 11:56:57','','0000-00-00 00:00:00',0),(8305,0,0,6971,'2526','H','O',7682,'CSH',0,'2025-12-22','2025-12-22',4472,0,4595,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 11:59:11','','0000-00-00 00:00:00',0),(8306,0,0,6972,'2526','H','O',7683,'CSH',0,'2025-12-22','2025-12-22',4473,0,4596,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 12:01:01','','0000-00-00 00:00:00',0),(8307,0,0,6940,'2526','H','O',7684,'CSH',0,'2025-12-22','2025-12-22',4120,0,4232,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 12:05:47','','0000-00-00 00:00:00',0),(8308,0,0,6959,'2526','H','O',7685,'CSH',0,'2025-12-22','2025-12-22',4464,0,4586,0,'D06','',0,7400.00,0.00,0.00,7400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','39730','','scan',6000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 12:07:09','','0000-00-00 00:00:00',0),(8309,0,0,6973,'2526','H','O',7686,'CSH',0,'2025-12-22','2025-12-22',4474,0,4597,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 12:10:05','','0000-00-00 00:00:00',0),(8310,0,0,6975,'2526','H','O',7687,'CSH',0,'2025-12-22','2025-12-22',3819,0,3349,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','08798','','scan ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 12:16:26','','0000-00-00 00:00:00',0),(8311,0,0,6943,'2526','H','O',7688,'CSH',0,'2025-12-22','2025-12-22',4455,0,4577,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 12:19:15','','0000-00-00 00:00:00',0),(8312,0,0,6967,'2526','H','O',7689,'CSH',0,'2025-12-22','2025-12-22',4469,0,4591,0,'D03','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS BANK','','67683','','SCAN',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-22 12:19:42','','0000-00-00 00:00:00',0),(8313,0,0,6976,'2526','H','O',7690,'CSH',0,'2025-12-22','2025-12-22',4475,0,4599,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 12:19:44','','0000-00-00 00:00:00',0),(8314,0,0,6925,'2526','H','O',7691,'CSH',0,'2025-12-22','2025-12-22',4444,0,4566,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Card',0,'','CRD','hdfc','76343','76343','','card',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 12:30:00','','0000-00-00 00:00:00',0),(8315,0,0,6903,'2526','H','O',7692,'CSH',0,'2025-12-22','2025-12-22',4419,0,4536,0,'D27','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','15761','','scan ',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 12:33:32','','0000-00-00 00:00:00',0),(8316,0,0,6979,'2526','H','O',7693,'CSH',0,'2025-12-22','2025-12-22',4477,0,4601,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 12:35:42','','0000-00-00 00:00:00',0),(8317,0,0,6980,'2526','H','O',7694,'CSH',0,'2025-12-22','2025-12-22',4478,0,4602,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 12:37:39','','0000-00-00 00:00:00',0),(8318,0,0,6981,'2526','H','O',7695,'CSH',0,'2025-12-22','2025-12-22',4479,0,4603,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-22 12:40:36','','0000-00-00 00:00:00',0),(8319,0,0,6952,'2526','H','O',7696,'CSH',0,'2025-12-22','2025-12-22',4459,0,4581,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 12:59:56','','0000-00-00 00:00:00',0),(8320,0,0,6982,'2526','H','O',7697,'CSH',0,'2025-12-22','2025-12-22',4480,0,4604,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-22 13:00:52','','0000-00-00 00:00:00',0),(8321,0,0,6983,'2526','H','O',7698,'CSH',0,'2025-12-22','2025-12-22',4481,0,4605,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 13:07:41','','0000-00-00 00:00:00',0),(8322,0,0,6984,'2526','H','O',7699,'CSH',0,'2025-12-22','2025-12-22',4482,0,4606,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 7714','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 13:11:11','shweta','2025-12-22 15:08:58',0),(8323,0,0,6892,'2526','H','D',320,'',0,'2025-12-22','0000-00-00',4224,314,4339,0,'D03','',0,13400.00,0.00,0.00,13400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-3000,0,'0000-00-00','','N','N','F','N',9000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-22 13:16:57','riya','2025-12-22 13:17:30',0),(8324,0,0,6976,'2526','H','O',7700,'CSH',0,'2025-12-22','2025-12-22',4475,0,4599,0,'D02','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 13:18:49','','0000-00-00 00:00:00',0),(8325,0,0,6983,'2526','H','O',7701,'CSH',0,'2025-12-22','2025-12-22',4481,0,4605,0,'D27','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-22 13:20:39','','0000-00-00 00:00:00',0),(8326,0,0,6980,'2526','H','O',7702,'CSH',0,'2025-12-22','2025-12-22',4478,0,4602,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','11709','','scan',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 13:21:12','','0000-00-00 00:00:00',0),(8327,0,0,6985,'2526','H','O',7703,'CSH',0,'2025-12-22','2025-12-22',4483,0,4607,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-22 13:26:32','','0000-00-00 00:00:00',0),(8328,0,0,6882,'2526','H','D',321,'',0,'2025-12-22','0000-00-00',0,312,4541,0,'D27','',0,11750.00,0.00,0.00,11750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-11750,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-22 13:27:28','','0000-00-00 00:00:00',0),(8329,0,0,6882,'2526','H','I',305,'CR',0,'2025-12-22','0000-00-00',0,312,4541,0,'D27','',0,11750.00,0.00,0.00,11750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-11750,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-22 13:27:41','','0000-00-00 00:00:00',0),(8330,0,0,6986,'2526','H','O',7704,'CSH',0,'2025-12-22','2025-12-22',4484,0,4608,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','57156','','scan  ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 13:35:40','','0000-00-00 00:00:00',0),(8331,0,0,6962,'2526','H','O',7705,'CSH',0,'2025-12-22','2025-12-22',4466,0,4589,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 13:42:42','','0000-00-00 00:00:00',0),(8332,0,0,6987,'2526','H','O',7706,'CSH',0,'2025-12-22','2025-12-22',4485,0,4609,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','31064','','scan     ',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 13:56:50','','0000-00-00 00:00:00',0),(8333,0,0,6967,'2526','H','O',7707,'CSH',0,'2025-12-22','2025-12-22',4469,0,4591,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis bank','','39003','','scan                          ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 13:57:52','','0000-00-00 00:00:00',0),(8334,0,0,6966,'2526','H','O',7708,'CSH',0,'2025-12-22','2025-12-22',4468,0,4590,0,'D06','',0,4400.00,0.00,0.00,4400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 14:07:05','','0000-00-00 00:00:00',0),(8335,0,0,6983,'2526','H','O',7709,'CSH',0,'2025-12-22','2025-12-22',4481,0,4605,0,'D27','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-22 14:13:39','','0000-00-00 00:00:00',0),(8336,0,0,6988,'2526','H','O',7710,'CSH',0,'2025-12-22','2025-12-22',3791,0,3895,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-22 14:18:35','','0000-00-00 00:00:00',0),(8337,0,0,6989,'2526','H','O',7711,'CSH',0,'2025-12-22','2025-12-22',4486,0,4610,0,'D02','',0,1000.00,0.00,0.00,1000.00,600.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB','','15911','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 14:34:41','','0000-00-00 00:00:00',0),(8338,0,0,6986,'2526','H','O',7712,'CSH',0,'2025-12-22','2025-12-22',4484,0,4608,0,'D02','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB BANK','','51622','','scan ',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-22 14:37:41','','0000-00-00 00:00:00',0),(8339,0,0,6979,'2526','H','O',7713,'CSH',0,'2025-12-22','2025-12-22',4477,0,4601,0,'D06','',0,4900.00,0.00,0.00,4900.00,300.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 14:46:29','','0000-00-00 00:00:00',0),(8340,0,0,6984,'2526','H','O',7714,'',0,'2025-12-22','0000-00-00',4482,0,4606,0,'D06','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-700.00,0,0,'2025-12-22','Y','N','Y','','N',0.00,'','Y','FOC','','HO 7699','','N','N','N','N','0000-00-00','0000-00-00','N','shweta','2025-12-22 15:08:58','shweta','2025-12-22 15:13:49',0),(8341,0,0,6165,'2526','H','D',322,'',0,'2025-12-22','0000-00-00',0,285,4173,0,'D02','',0,99350.00,0.00,0.00,99350.00,1350.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-68000,0,'0000-00-00','','N','N','F','N',30000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-22 15:11:08','riya','2025-12-22 15:11:45',0),(8342,0,0,6892,'2526','H','I',306,'CR',0,'2025-12-22','0000-00-00',4224,314,4339,0,'D03','',0,13400.00,0.00,0.00,13400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-12000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-22 15:18:59','','0000-00-00 00:00:00',0),(8343,0,0,6165,'2526','H','I',307,'CR',0,'2025-12-22','0000-00-00',0,285,4173,0,'D02','',0,99350.00,0.00,0.00,99350.00,1350.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-98000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(8344,0,0,6990,'2526','H','O',7715,'CSH',0,'2025-12-22','2025-12-22',3962,0,4069,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 16:21:11','','0000-00-00 00:00:00',0),(8345,0,0,6992,'2526','H','O',7716,'CSH',0,'2025-12-22','2025-12-22',1969,0,2017,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 16:25:56','','0000-00-00 00:00:00',0),(8346,0,0,6706,'2526','H','I',308,'CR',0,'2025-12-22','0000-00-00',0,305,4452,0,'D27','',0,26250.00,0.00,0.00,26250.00,4250.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-22000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(8347,0,0,6993,'2526','H','O',7717,'CSH',0,'2025-12-22','2025-12-22',80,0,91,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 16:47:32','','0000-00-00 00:00:00',0),(8348,0,0,6994,'2526','H','O',7718,'CSH',0,'2025-12-22','2025-12-22',3992,0,4099,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 16:48:34','','0000-00-00 00:00:00',0),(8349,0,0,6995,'2526','H','O',7719,'CSH',0,'2025-12-22','2025-12-22',4480,0,4604,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 16:50:04','','0000-00-00 00:00:00',0),(8350,0,0,6996,'2526','H','O',7720,'CSH',0,'2025-12-22','2025-12-22',4456,0,4578,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 16:51:32','','0000-00-00 00:00:00',0),(8351,0,0,6997,'2526','H','O',7721,'CSH',0,'2025-12-22','2025-12-22',1929,0,1977,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 16:54:41','','0000-00-00 00:00:00',0),(8352,0,0,6998,'2526','H','O',7722,'CSH',0,'2025-12-22','2025-12-22',4229,0,4344,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 16:54:58','','0000-00-00 00:00:00',0),(8353,0,0,6999,'2526','H','O',7723,'CSH',0,'2025-12-22','2025-12-22',1841,0,1887,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','200 DISCOUNT','HO 7749','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 16:57:03','reception','2025-12-22 18:15:57',0),(8354,0,0,7000,'2526','H','O',7724,'CSH',0,'2025-12-22','2025-12-22',3995,0,4102,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 17:05:22','','0000-00-00 00:00:00',0),(8355,0,0,7001,'2526','H','O',7725,'CSH',0,'2025-12-22','2025-12-22',3850,0,3959,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','axis','','49017','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 17:08:45','','0000-00-00 00:00:00',0),(8356,0,0,5120,'2526','H','D',323,'',0,'2025-12-22','0000-00-00',0,243,3601,0,'D27','',0,347050.00,0.00,0.00,347050.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-260000,0,'0000-00-00','','N','N','F','N',87050.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-22 17:08:50','vishal','2025-12-22 21:49:14',0),(8357,0,0,7002,'2526','H','O',7726,'CSH',0,'2025-12-22','2025-12-22',4487,0,4612,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 17:10:16','','0000-00-00 00:00:00',0),(8358,0,0,7003,'2526','H','O',7727,'CSH',0,'2025-12-22','2025-12-22',3887,0,3996,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 17:14:55','','0000-00-00 00:00:00',0),(8359,0,0,7004,'2526','H','O',7728,'CSH',0,'2025-12-22','2025-12-22',3749,0,3852,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','boi','','06494','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 17:17:47','','0000-00-00 00:00:00',0),(8360,0,0,7005,'2526','H','O',7729,'CSH',0,'2025-12-22','2025-12-22',4488,0,4613,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 17:18:21','','0000-00-00 00:00:00',0),(8361,0,0,7006,'2526','H','O',7730,'CSH',0,'2025-12-22','2025-12-22',4489,0,4614,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 17:20:35','','0000-00-00 00:00:00',0),(8362,0,0,7007,'2526','H','O',7731,'CSH',0,'2025-12-22','2025-12-22',4490,0,4615,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 17:35:08','','0000-00-00 00:00:00',0),(8363,0,0,7008,'2526','H','O',7732,'CSH',0,'2025-12-22','2025-12-22',2302,0,2359,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 17:37:59','','0000-00-00 00:00:00',0),(8364,0,0,7002,'2526','H','O',7733,'CSH',0,'2025-12-22','2025-12-22',4487,0,4612,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','32940','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 17:38:01','','0000-00-00 00:00:00',0),(8365,0,0,7009,'2526','H','O',7734,'CSH',0,'2025-12-22','2025-12-22',4491,0,4616,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 17:41:05','','0000-00-00 00:00:00',0),(8366,0,0,7011,'2526','H','O',7735,'CSH',0,'2025-12-22','2025-12-22',4492,0,4618,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','74259','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-22 17:45:58','','0000-00-00 00:00:00',0),(8367,0,0,7012,'2526','H','O',7736,'CSH',0,'2025-12-22','2025-12-22',4016,0,4124,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','14326','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 17:48:30','','0000-00-00 00:00:00',0),(8368,0,0,7014,'2526','H','O',7737,'CSH',0,'2025-12-22','2025-12-22',4078,0,4187,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 17:50:02','','0000-00-00 00:00:00',0),(8369,0,0,7015,'2526','H','O',7738,'CSH',0,'2025-12-22','2025-12-22',4493,0,4619,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','IDFC BANK','','83378','','scan ',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 17:51:33','','0000-00-00 00:00:00',0),(8370,0,0,7016,'2526','H','O',7739,'CSH',0,'2025-12-22','2025-12-22',1916,0,1964,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 17:51:35','','0000-00-00 00:00:00',0),(8371,0,0,7017,'2526','H','O',7740,'CSH',0,'2025-12-22','2025-12-22',4494,0,4620,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 7754','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 17:52:08','janvi','2025-12-22 18:23:22',0),(8372,0,0,7006,'2526','H','O',7741,'CSH',0,'2025-12-22','2025-12-22',4489,0,4614,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 17:53:20','','0000-00-00 00:00:00',0),(8373,0,0,7018,'2526','H','O',7742,'CSH',0,'2025-12-22','2025-12-22',2542,0,2599,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 17:58:30','','0000-00-00 00:00:00',0),(8374,0,0,7020,'2526','H','O',7743,'CSH',0,'2025-12-22','2025-12-22',4495,0,4621,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 18:05:17','','0000-00-00 00:00:00',0),(8375,0,0,7021,'2526','H','O',7744,'CSH',0,'2025-12-22','2025-12-22',2367,0,2422,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-22 18:08:40','','0000-00-00 00:00:00',0),(8376,0,0,7011,'2526','H','O',7745,'CSH',0,'2025-12-22','2025-12-22',4492,0,4618,0,'D14','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','43120','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-22 18:11:52','','0000-00-00 00:00:00',0),(8377,0,0,7022,'2526','H','O',7746,'CSH',0,'2025-12-22','2025-12-22',4496,0,4622,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 18:12:38','','0000-00-00 00:00:00',0),(8378,0,0,7023,'2526','H','O',7747,'CSH',0,'2025-12-22','2025-12-22',3730,0,3833,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 18:13:50','','0000-00-00 00:00:00',0),(8379,0,0,7026,'2526','H','O',7748,'CSH',0,'2025-12-22','2025-12-22',3720,0,3721,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 18:15:53','','0000-00-00 00:00:00',0),(8380,0,0,6999,'2526','H','O',7749,'',0,'2025-12-22','0000-00-00',1841,0,1887,0,'D06','',0,-400.00,0.00,0.00,-400.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-400.00,0,0,'2025-12-22','Y','N','Y','','N',0.00,'','Y','200 DISCOUNT','','HO 7723','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 18:15:57','reception','2025-12-22 18:16:15',0),(8381,0,0,6999,'2526','H','O',7750,'CSH',0,'2025-12-22','2025-12-22',1841,0,1887,0,'D06','',0,400.00,0.00,0.00,400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 18:17:06','','0000-00-00 00:00:00',0),(8382,0,0,7027,'2526','H','O',7751,'CSH',0,'2025-12-22','2025-12-22',4498,0,4624,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 18:19:04','','0000-00-00 00:00:00',0),(8383,0,0,7028,'2526','H','O',7752,'CSH',0,'2025-12-22','2025-12-22',4065,0,4175,0,'D03','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-22 18:22:27','','0000-00-00 00:00:00',0),(8384,0,0,6922,'2526','H','D',324,'',0,'2025-12-22','0000-00-00',0,320,4564,0,'D02','',0,5200.00,0.00,0.00,5200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-3000,0,'0000-00-00','','N','N','F','N',2200.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-22 18:22:36','vishal','2025-12-22 18:24:04',0),(8385,0,0,7029,'2526','H','O',7753,'CSH',0,'2025-12-22','2025-12-22',4499,0,4625,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 18:22:44','','0000-00-00 00:00:00',0),(8386,0,0,7017,'2526','H','O',7754,'',0,'2025-12-22','0000-00-00',4494,0,4620,0,'D02','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-500.00,0,0,'2025-12-22','Y','N','Y','','N',0.00,'','Y','FOC','','HO 7740','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 18:23:22','janvi','2025-12-22 18:24:08',0),(8387,0,0,7030,'2526','H','O',7755,'CSH',0,'2025-12-22','2025-12-22',3732,0,3835,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 18:23:59','','0000-00-00 00:00:00',0),(8388,0,0,6922,'2526','H','I',309,'CR',1,'2025-12-22','0000-00-00',0,320,4564,0,'D02','',0,4400.00,0.00,0.00,4400.00,1400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-3000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-22 18:24:19','vishal','2025-12-22 19:55:09',0),(8389,0,0,7031,'2526','H','O',7756,'CSH',0,'2025-12-22','2025-12-22',3315,0,3407,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 18:24:59','','0000-00-00 00:00:00',0),(8390,0,0,7033,'2526','H','O',7757,'CSH',0,'2025-12-22','2025-12-22',3993,0,4100,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 18:27:01','','0000-00-00 00:00:00',0),(8391,0,0,7034,'2526','H','O',7758,'CSH',0,'2025-12-22','2025-12-22',4500,0,4626,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 18:33:09','','0000-00-00 00:00:00',0),(8392,0,0,7035,'2526','H','O',7759,'CSH',0,'2025-12-22','2025-12-22',4501,0,4627,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 18:33:21','','0000-00-00 00:00:00',0),(8393,0,0,7037,'2526','H','O',7760,'CSH',0,'2025-12-22','2025-12-22',4502,0,4628,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 18:35:37','','0000-00-00 00:00:00',0),(8394,0,0,7020,'2526','H','O',7761,'CSH',0,'2025-12-22','2025-12-22',4495,0,4621,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 18:35:38','','0000-00-00 00:00:00',0),(8395,0,0,7020,'2526','H','O',7762,'CSH',0,'2025-12-22','2025-12-22',4495,0,4621,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','union bank','','91867','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 18:37:03','','0000-00-00 00:00:00',0),(8396,0,0,7038,'2526','H','O',7763,'CSH',0,'2025-12-22','2025-12-22',4254,0,4369,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 18:38:36','','0000-00-00 00:00:00',0),(8397,0,0,7019,'2526','H','O',7764,'CSH',0,'2025-12-22','2025-12-22',2175,0,2230,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-22 18:39:22','','0000-00-00 00:00:00',0),(8398,0,0,7040,'2526','H','O',7765,'CSH',0,'2025-12-22','2025-12-22',4504,0,4630,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 18:41:12','','0000-00-00 00:00:00',0),(8399,0,0,7013,'2526','H','O',7766,'CSH',0,'2025-12-22','2025-12-22',2827,0,2898,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 18:42:44','','0000-00-00 00:00:00',0),(8400,0,0,7042,'2526','H','O',7767,'CSH',0,'2025-12-22','2025-12-22',3954,0,4062,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 18:44:49','','0000-00-00 00:00:00',0),(8401,0,0,7041,'2526','H','O',7768,'CSH',0,'2025-12-22','2025-12-22',4505,0,4631,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','61514','','scan  ',500.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','FOC','HO 7796','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 18:45:08','janvi','2025-12-22 20:04:28',0),(8402,0,0,7039,'2526','H','O',7769,'CSH',0,'2025-12-22','2025-12-22',4503,0,4629,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','ICICI','','208765','','SCAN',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-22 18:45:18','','0000-00-00 00:00:00',0),(8403,0,0,7043,'2526','H','O',7770,'CSH',0,'2025-12-22','2025-12-22',3319,0,3411,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 18:46:28','','0000-00-00 00:00:00',0),(8404,0,0,7024,'2526','H','O',7771,'CSH',0,'2025-12-22','2025-12-22',4497,0,4623,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','33174','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-22 18:48:52','','0000-00-00 00:00:00',0),(8405,0,0,7044,'2526','H','O',7772,'CSH',0,'2025-12-22','2025-12-22',2764,0,2241,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 18:49:36','','0000-00-00 00:00:00',0),(8406,0,0,6939,'2526','H','O',7773,'CSH',0,'2025-12-22','2025-12-22',4453,0,4575,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','federal bank','','77218','','scan',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 18:49:49','','0000-00-00 00:00:00',0),(8407,0,0,7046,'2526','H','O',7774,'CSH',0,'2025-12-22','2025-12-22',4507,0,4633,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI BANK','','99499','','scan ',750.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 7776','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 18:53:15','drashti','2025-12-22 18:55:26',0),(8408,0,0,7047,'2526','H','O',7775,'CSH',0,'2025-12-22','2025-12-22',4508,0,4634,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 18:54:35','','0000-00-00 00:00:00',0),(8409,0,0,7046,'2526','H','O',7776,'',0,'2025-12-22','0000-00-00',4507,0,4633,0,'D27','',0,-750.00,0.00,0.00,-750.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','SBI BANK','','99499','','',-750.00,0,0,'2025-12-22','Y','N','Y','','N',0.00,'','Y','CANCEL','','HO 7774','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 18:55:26','drashti','2025-12-22 18:56:14',0),(8410,0,0,6961,'2526','H','D',325,'',0,'2025-12-22','0000-00-00',0,321,4588,0,'D27','',0,5500.00,0.00,0.00,5500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-10000,0,'0000-00-00','','N','N','F','N',-4500.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-22 18:55:38','vishal','2025-12-22 19:41:54',0),(8411,0,0,7046,'2526','H','O',7777,'CSH',0,'2025-12-22','2025-12-22',4507,0,4633,0,'D27','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI BANK','','99499','','scan ',700.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCLE','HO 7781','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 18:57:31','reception','2025-12-22 19:10:15',0),(8412,0,0,7049,'2526','H','O',7778,'CSH',0,'2025-12-22','2025-12-22',4509,0,4635,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','82169','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 18:58:02','','0000-00-00 00:00:00',0),(8413,0,0,7051,'2526','H','O',7779,'CSH',0,'2025-12-22','2025-12-22',4510,0,4636,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC BANK','','13533','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 19:01:35','','0000-00-00 00:00:00',0),(8414,0,0,7052,'2526','H','O',7780,'CSH',0,'2025-12-22','2025-12-22',3433,0,3530,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 19:05:46','','0000-00-00 00:00:00',0),(8415,0,0,7046,'2526','H','O',7781,'',0,'2025-12-22','0000-00-00',4507,0,4633,0,'D27','',0,-700.00,0.00,0.00,-700.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','sbi','','99499','','SCAN',-700.00,0,0,'2025-12-22','Y','N','Y','','N',0.00,'','Y','CANCLE','','HO 7777','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 19:10:15','reception','2025-12-22 19:10:45',0),(8416,0,0,7053,'2526','H','O',7782,'CSH',0,'2025-12-22','2025-12-22',4511,0,4637,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC BANK','','13314','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 19:10:25','','0000-00-00 00:00:00',0),(8417,0,0,7046,'2526','H','O',7783,'CSH',0,'2025-12-22','2025-12-22',4507,0,4633,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','99499','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 19:12:48','','0000-00-00 00:00:00',0),(8418,0,0,7054,'2526','H','O',7784,'CSH',0,'2025-12-22','2025-12-22',3605,0,3705,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 19:13:59','','0000-00-00 00:00:00',0),(8419,0,0,7055,'2526','H','O',7785,'CSH',0,'2025-12-22','2025-12-22',4512,0,4638,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 19:17:06','','0000-00-00 00:00:00',0),(8420,0,0,7040,'2526','H','O',7786,'CSH',0,'2025-12-22','2025-12-22',4504,0,4630,0,'D06','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 19:18:18','','0000-00-00 00:00:00',0),(8421,0,0,7056,'2526','H','O',7787,'CSH',0,'2025-12-22','2025-12-22',3486,0,3586,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 19:19:05','','0000-00-00 00:00:00',0),(8422,0,0,7057,'2526','H','O',7788,'CSH',0,'2025-12-22','2025-12-22',4000,0,4107,0,'D03','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','HDFC','','44196','','SCAN',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-22 19:19:53','','0000-00-00 00:00:00',0),(8423,0,0,7058,'2526','H','O',7789,'CSH',0,'2025-12-22','2025-12-22',1399,0,1439,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 19:24:29','','0000-00-00 00:00:00',0),(8424,0,0,7049,'2526','H','O',7790,'CSH',0,'2025-12-22','2025-12-22',4509,0,4635,0,'D06','',0,3500.00,0.00,0.00,3500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','87610','','scan',3500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 19:26:33','','0000-00-00 00:00:00',0),(8425,0,0,7004,'2526','H','O',7791,'CSH',0,'2025-12-22','2025-12-22',3749,0,3852,0,'D02','',0,2000.00,0.00,0.00,2000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak','','68333','','scan     ',2000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 19:37:46','','0000-00-00 00:00:00',0),(8426,0,0,6961,'2526','H','I',310,'CR',0,'2025-12-22','0000-00-00',0,321,4588,0,'D27','',0,5500.00,0.00,0.00,5500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','1','AXIS BANK','','1234','','',-4500.00,-10000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-22 19:43:17','','0000-00-00 00:00:00',0),(8427,0,0,7059,'2526','H','O',7792,'CSH',0,'2025-12-22','2025-12-22',4513,0,4639,0,'D14','',0,1800.00,0.00,0.00,1800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','AXIS BANK','','66798','','SCAN',1800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-22 19:51:43','','0000-00-00 00:00:00',0),(8428,0,0,6978,'2526','H','D',326,'',0,'2025-12-22','0000-00-00',0,324,4600,0,'D02','',0,4500.00,0.00,0.00,4500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-3000,0,'0000-00-00','','N','N','F','N',1500.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-22 19:53:43','vishal','2025-12-22 19:54:16',0),(8429,0,0,7061,'2526','H','O',7793,'CSH',0,'2025-12-22','2025-12-22',4515,0,4641,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','','N','Y','','N',0.00,'','Y','CANCEL','HO 7798','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 19:56:38','reception','2025-12-22 20:26:11',0),(8430,0,0,6978,'2526','H','I',311,'CR',0,'2025-12-22','0000-00-00',0,324,4600,0,'D02','',0,4500.00,0.00,0.00,4500.00,1500.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-3000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-22 19:56:43','','0000-00-00 00:00:00',0),(8431,0,0,7048,'2526','H','O',7794,'CSH',0,'2025-12-22','2025-12-22',4300,0,4415,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 19:57:48','','0000-00-00 00:00:00',0),(8432,0,0,2879,'2526','H','D',327,'',0,'2025-12-22','0000-00-00',0,146,2243,0,'D27','',0,304850.00,0.00,0.00,304850.00,15000.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-235000,0,'0000-00-00','','N','N','D','N',54850.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-22 20:01:04','vishal','2025-12-22 20:09:01',0),(8433,0,0,7062,'2526','H','O',7795,'CSH',0,'2025-12-22','2025-12-22',4516,0,4642,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 20:02:54','','0000-00-00 00:00:00',0),(8434,0,0,7041,'2526','H','O',7796,'',0,'2025-12-22','0000-00-00',4505,0,4631,0,'D02','',0,-500.00,0.00,0.00,-500.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','7','sbi','','61514','','SCAN                          ',-500.00,0,0,'2025-12-22','Y','N','Y','','N',0.00,'','Y','FOC','','HO 7768','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-22 20:04:28','janvi','2025-12-22 20:05:43',0),(8435,0,0,7063,'2526','H','O',7797,'CSH',0,'2025-12-22','2025-12-22',4517,0,4643,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','HDFC BANK','','87719','','scan ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-22 20:17:24','','0000-00-00 00:00:00',0),(8436,0,0,7061,'2526','H','O',7798,'',0,'2025-12-22','0000-00-00',4515,0,4641,0,'D02','',0,-300.00,0.00,0.00,-300.00,0.00,0.00,'',0.00,'0000-00-00','','','',0,'','CSH','','','','','',-300.00,0,0,'2025-12-22','Y','N','Y','','N',0.00,'','Y','CANCEL','','HO 7793','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 20:26:11','reception','2025-12-22 20:26:36',0),(8437,0,0,7064,'2526','H','O',7799,'CSH',0,'2025-12-22','2025-12-22',4334,0,4447,0,'D14','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-22 20:40:24','','0000-00-00 00:00:00',0),(8438,0,0,6843,'2526','H','D',328,'',0,'2025-12-22','0000-00-00',0,311,4515,0,'D02','',0,28000.00,0.00,0.00,28000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-8000,0,'0000-00-00','','N','N','F','N',20000.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-22 21:00:02','vishal','2025-12-22 21:17:24',0),(8439,0,0,7065,'2526','H','O',7800,'CSH',0,'2025-12-22','2025-12-22',4518,0,4644,0,'D14','',0,1400.00,0.00,0.00,1400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','union bank','','27101','','scan',1400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','priyanshi','2025-12-22 21:02:05','','0000-00-00 00:00:00',0),(8440,0,0,6843,'2526','H','I',312,'CR',0,'2025-12-22','0000-00-00',0,311,4515,0,'D02','',0,28000.00,0.00,0.00,28000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-28000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(8441,0,0,5120,'2526','H','I',313,'CR',0,'2025-12-22','0000-00-00',0,243,3601,0,'D27','',0,347050.00,0.00,0.00,347050.00,6050.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-341000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(8442,0,0,7068,'2526','H','O',7801,'CSH',0,'2025-12-23','2025-12-23',4518,0,4644,0,'D14','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 08:42:30','','0000-00-00 00:00:00',0),(8443,0,0,7069,'2526','H','O',7802,'CSH',0,'2025-12-23','2025-12-23',4305,0,4419,0,'D27','',0,1800.00,0.00,0.00,1800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','84469','','scan',1800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 08:46:22','','0000-00-00 00:00:00',0),(8444,0,0,7070,'2526','H','O',7803,'CSH',0,'2025-12-23','2025-12-23',4519,0,4646,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-23 09:49:45','','0000-00-00 00:00:00',0),(8445,0,0,7071,'2526','H','O',7804,'CSH',0,'2025-12-23','2025-12-23',4277,0,4392,0,'D02','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','icici','','55060','','scan  ',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-23 09:55:34','','0000-00-00 00:00:00',0),(8446,0,0,7072,'2526','H','O',7805,'CSH',0,'2025-12-23','2025-12-23',4520,0,4647,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-23 10:08:21','','0000-00-00 00:00:00',0),(8447,0,0,7073,'2526','H','O',7806,'CSH',0,'2025-12-23','2025-12-23',4521,0,4648,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 10:09:02','','0000-00-00 00:00:00',0),(8448,0,0,7074,'2526','H','O',7807,'CSH',0,'2025-12-23','2025-12-23',653,0,683,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 10:12:39','','0000-00-00 00:00:00',0),(8449,0,0,7077,'2526','H','O',7808,'CSH',0,'2025-12-23','2025-12-23',1458,0,1499,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 10:18:03','','0000-00-00 00:00:00',0),(8450,0,0,7075,'2526','H','O',7809,'CSH',0,'2025-12-23','2025-12-23',4522,0,4649,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-23 10:18:15','','0000-00-00 00:00:00',0),(8451,0,0,7076,'2526','H','O',7810,'CSH',0,'2025-12-23','2025-12-23',4523,0,4650,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-23 10:18:34','','0000-00-00 00:00:00',0),(8452,0,0,7078,'2526','H','O',7811,'CSH',0,'2025-12-23','2025-12-23',157,0,170,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 10:22:09','','0000-00-00 00:00:00',0),(8453,0,0,7079,'2526','H','O',7812,'CSH',0,'2025-12-23','2025-12-23',4524,0,4651,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-23 10:23:03','','0000-00-00 00:00:00',0),(8454,0,0,7080,'2526','H','O',7813,'CSH',0,'2025-12-23','2025-12-23',4031,0,4138,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','utkarsh bank','','95768','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 10:26:00','','0000-00-00 00:00:00',0),(8455,0,0,7081,'2526','H','O',7814,'CSH',0,'2025-12-23','2025-12-23',4525,0,4652,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 10:27:55','','0000-00-00 00:00:00',0),(8456,0,0,7075,'2526','H','O',7815,'CSH',0,'2025-12-23','2025-12-23',4522,0,4649,0,'D14','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-23 10:41:18','','0000-00-00 00:00:00',0),(8457,0,0,7076,'2526','H','O',7816,'CSH',0,'2025-12-23','2025-12-23',4523,0,4650,0,'D14','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-23 10:49:54','','0000-00-00 00:00:00',0),(8458,0,0,7082,'2526','H','O',7817,'CSH',0,'2025-12-23','2025-12-23',4526,0,4653,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 10:51:10','','0000-00-00 00:00:00',0),(8459,0,0,7083,'2526','H','O',7818,'CSH',0,'2025-12-23','2025-12-23',927,0,958,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 10:58:55','','0000-00-00 00:00:00',0),(8460,0,0,7085,'2526','H','O',7819,'CSH',0,'2025-12-23','2025-12-23',4527,0,4654,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-23 11:00:27','','0000-00-00 00:00:00',0),(8461,0,0,7073,'2526','H','O',7820,'CSH',0,'2025-12-23','2025-12-23',4521,0,4648,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 11:00:32','','0000-00-00 00:00:00',0),(8462,0,0,7086,'2526','H','O',7821,'CSH',0,'2025-12-23','2025-12-23',4528,0,4655,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 11:05:00','','0000-00-00 00:00:00',0),(8463,0,0,7087,'2526','H','O',7822,'CSH',0,'2025-12-23','2025-12-23',4529,0,4656,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-23 11:06:53','','0000-00-00 00:00:00',0),(8464,0,0,7088,'2526','H','O',7823,'CSH',0,'2025-12-23','2025-12-23',4530,0,4657,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-23 11:08:16','','0000-00-00 00:00:00',0),(8465,0,0,7075,'2526','H','O',7824,'CSH',0,'2025-12-23','2025-12-23',4522,0,4649,0,'D14','',0,600.00,0.00,0.00,600.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',600.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-23 11:09:16','','0000-00-00 00:00:00',0),(8466,0,0,7089,'2526','H','O',7825,'CSH',0,'2025-12-23','2025-12-23',4531,0,4658,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-23 11:09:17','','0000-00-00 00:00:00',0),(8467,0,0,7090,'2526','H','O',7826,'CSH',0,'2025-12-23','2025-12-23',4532,0,4659,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 11:10:16','','0000-00-00 00:00:00',0),(8468,0,0,7091,'2526','H','O',7827,'CSH',0,'2025-12-23','2025-12-23',4533,0,4660,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 11:11:57','','0000-00-00 00:00:00',0),(8469,0,0,7094,'2526','H','O',7828,'CSH',0,'2025-12-23','2025-12-23',4534,0,4661,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-23 11:16:45','','0000-00-00 00:00:00',0),(8470,0,0,7095,'2526','H','O',7829,'CSH',0,'2025-12-23','2025-12-23',4535,0,4662,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-23 11:18:42','','0000-00-00 00:00:00',0),(8471,0,0,7096,'2526','H','O',7830,'CSH',0,'2025-12-23','2025-12-23',4536,0,4663,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-23 11:19:45','','0000-00-00 00:00:00',0),(8472,0,0,7097,'2526','H','O',7831,'CSH',0,'2025-12-23','2025-12-23',4537,0,4664,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 11:20:26','','0000-00-00 00:00:00',0),(8473,0,0,7098,'2526','H','O',7832,'CSH',0,'2025-12-23','2025-12-23',4538,0,4665,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','00827','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 11:23:05','','0000-00-00 00:00:00',0),(8474,0,0,7099,'2526','H','O',7833,'CSH',0,'2025-12-23','2025-12-23',4539,0,4666,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-23 11:25:06','','0000-00-00 00:00:00',0),(8475,0,0,7095,'2526','H','O',7834,'CSH',0,'2025-12-23','2025-12-23',4535,0,4662,0,'D27','',0,50.00,0.00,0.00,50.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',50.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-23 11:28:50','','0000-00-00 00:00:00',0),(8476,0,0,7100,'2526','H','O',7835,'CSH',0,'2025-12-23','2025-12-23',4540,0,4667,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 11:29:05','','0000-00-00 00:00:00',0),(8477,0,0,7102,'2526','H','O',7836,'CSH',0,'2025-12-23','2025-12-23',4541,0,4668,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-23 11:35:25','','0000-00-00 00:00:00',0),(8478,0,0,7103,'2526','H','O',7837,'CSH',0,'2025-12-23','2025-12-23',3101,0,3188,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 11:36:43','','0000-00-00 00:00:00',0),(8479,0,0,7104,'2526','H','O',7838,'CSH',0,'2025-12-23','2025-12-23',3462,0,3561,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 11:38:31','','0000-00-00 00:00:00',0),(8480,0,0,7105,'2526','H','O',7839,'CSH',0,'2025-12-23','2025-12-23',4542,0,4669,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-23 11:39:13','','0000-00-00 00:00:00',0),(8481,0,0,7107,'2526','H','O',7840,'CSH',0,'2025-12-23','2025-12-23',1432,0,1473,0,'D14','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-23 11:41:05','','0000-00-00 00:00:00',0),(8482,0,0,7106,'2526','H','O',7841,'CSH',0,'2025-12-23','2025-12-23',4543,0,4670,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','baroda gujrat ','','27764','','scan     ',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-23 11:41:37','','0000-00-00 00:00:00',0),(8483,0,0,7081,'2526','H','O',7842,'CSH',0,'2025-12-23','2025-12-23',4525,0,4652,0,'D06','',0,5200.00,0.00,0.00,5200.00,700.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','45431','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 11:42:14','','0000-00-00 00:00:00',0),(8484,0,0,7108,'2526','H','O',7843,'CSH',0,'2025-12-23','2025-12-23',4544,0,4671,0,'D27','',0,750.00,0.00,0.00,750.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','BOB BANK','','38024','','scan ',750.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-23 11:46:48','','0000-00-00 00:00:00',0),(8485,0,0,7109,'2526','H','O',7844,'CSH',0,'2025-12-23','2025-12-23',4545,0,4672,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-23 11:47:45','','0000-00-00 00:00:00',0),(8486,0,0,7110,'2526','H','O',7845,'CSH',0,'2025-12-23','2025-12-23',4546,0,4673,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 11:48:12','','0000-00-00 00:00:00',0),(8487,0,0,7111,'2526','H','O',7846,'CSH',0,'2025-12-23','2025-12-23',4547,0,4674,0,'D02','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-23 11:49:24','','0000-00-00 00:00:00',0),(8488,0,0,7113,'2526','H','O',7847,'CSH',0,'2025-12-23','2025-12-23',592,0,622,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-23 11:52:11','','0000-00-00 00:00:00',0),(8489,0,0,7114,'2526','H','O',7848,'CSH',0,'2025-12-23','2025-12-23',4548,0,4675,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 11:52:23','','0000-00-00 00:00:00',0),(8490,0,0,6898,'2526','H','D',329,'',0,'2025-12-23','0000-00-00',0,315,4550,0,'D02','',0,14450.00,0.00,0.00,14450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-14450,0,'0000-00-00','','N','N','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(8491,0,0,6898,'2526','H','I',314,'CR',0,'2025-12-23','0000-00-00',0,315,4550,0,'D02','',0,14450.00,0.00,0.00,14450.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-14450,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(8492,0,0,7115,'2526','H','O',7849,'CSH',0,'2025-12-23','2025-12-23',4549,0,4676,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','55616','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 11:55:36','','0000-00-00 00:00:00',0),(8493,0,0,7116,'2526','H','O',7850,'CSH',0,'2025-12-23','2025-12-23',3265,0,3353,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-23 11:57:59','','0000-00-00 00:00:00',0),(8494,0,0,7093,'2526','H','O',7851,'CSH',0,'2025-12-23','2025-12-23',2529,0,2586,0,'D03','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOB','','37827','','SCAN',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-23 12:00:00','','0000-00-00 00:00:00',0),(8495,0,0,7091,'2526','H','O',7852,'CSH',0,'2025-12-23','2025-12-23',4533,0,4660,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 12:00:49','','0000-00-00 00:00:00',0),(8496,0,0,7090,'2526','H','O',7853,'CSH',0,'2025-12-23','2025-12-23',4532,0,4659,0,'D06','',0,3000.00,0.00,0.00,3000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',3000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 12:01:36','','0000-00-00 00:00:00',0),(8497,0,0,7117,'2526','H','O',7854,'CSH',0,'2025-12-23','2025-12-23',4550,0,4677,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-23 12:10:07','','0000-00-00 00:00:00',0),(8498,0,0,7118,'2526','H','O',7855,'CSH',0,'2025-12-23','2025-12-23',4259,0,4374,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','sbi','','07331','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 12:11:37','','0000-00-00 00:00:00',0),(8499,0,0,7119,'2526','H','O',7856,'CSH',0,'2025-12-23','2025-12-23',4551,0,4678,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-23 12:12:43','','0000-00-00 00:00:00',0),(8500,0,0,7120,'2526','H','O',7857,'CSH',0,'2025-12-23','2025-12-23',4552,0,4679,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-23 12:14:57','','0000-00-00 00:00:00',0),(8501,0,0,7100,'2526','H','O',7858,'CSH',0,'2025-12-23','2025-12-23',4540,0,4667,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','bob','','07730','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 12:20:07','','0000-00-00 00:00:00',0),(8502,0,0,7072,'2526','H','O',7859,'CSH',0,'2025-12-23','2025-12-23',4520,0,4647,0,'D02','',0,2200.00,0.00,0.00,2200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',2200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-23 12:22:12','','0000-00-00 00:00:00',0),(8503,0,0,7118,'2526','H','O',7860,'CSH',0,'2025-12-23','2025-12-23',4259,0,4374,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','SBI BANK','','02180','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-23 12:25:30','','0000-00-00 00:00:00',0),(8504,0,0,7121,'2526','H','O',7861,'CSH',0,'2025-12-23','2025-12-23',4553,0,4680,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','kotak bank','','19347','','scan',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 12:31:39','','0000-00-00 00:00:00',0),(8505,0,0,7122,'2526','H','O',7862,'CSH',0,'2025-12-23','2025-12-23',3305,0,3394,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-23 12:35:09','','0000-00-00 00:00:00',0),(8506,0,0,7124,'2526','H','O',7863,'CSH',0,'2025-12-23','2025-12-23',4555,0,4682,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','95924','','scan',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 12:37:03','','0000-00-00 00:00:00',0),(8507,0,0,7094,'2526','H','O',7864,'CSH',0,'2025-12-23','2025-12-23',4534,0,4661,0,'D06','',0,4900.00,0.00,0.00,4900.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 12:39:33','','0000-00-00 00:00:00',0),(8508,0,0,7125,'2526','H','O',7865,'CSH',0,'2025-12-23','2025-12-23',4185,0,4298,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','ICICI BANK','','41157','','scan ',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-23 12:43:34','','0000-00-00 00:00:00',0),(8509,0,0,7126,'2526','H','O',7866,'CSH',0,'2025-12-23','2025-12-23',1317,0,1356,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 12:56:07','','0000-00-00 00:00:00',0),(8510,0,0,7123,'2526','H','O',7867,'CSH',0,'2025-12-23','2025-12-23',4554,0,4681,0,'D14','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-23 13:03:37','','0000-00-00 00:00:00',0),(8511,0,0,7126,'2526','H','O',7868,'CSH',0,'2025-12-23','2025-12-23',1317,0,1356,0,'D27','',0,300.00,0.00,0.00,300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-23 13:05:12','','0000-00-00 00:00:00',0),(8512,0,0,7098,'2526','H','O',7869,'CSH',0,'2025-12-23','2025-12-23',4538,0,4665,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 13:05:46','','0000-00-00 00:00:00',0),(8513,0,0,7115,'2526','H','O',7870,'CSH',0,'2025-12-23','2025-12-23',4549,0,4676,0,'D06','',0,4900.00,0.00,0.00,4900.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','35572','','scan',4500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 13:08:56','','0000-00-00 00:00:00',0),(8514,0,0,7128,'2526','H','O',7871,'CSH',0,'2025-12-23','2025-12-23',51,0,58,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 13:12:32','','0000-00-00 00:00:00',0),(8515,0,0,7129,'2526','H','O',7872,'CSH',0,'2025-12-23','2025-12-23',4556,0,4683,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 13:17:43','','0000-00-00 00:00:00',0),(8516,0,0,7119,'2526','H','O',7873,'CSH',0,'2025-12-23','2025-12-23',4551,0,4678,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 13:23:34','','0000-00-00 00:00:00',0),(8517,0,0,7124,'2526','H','O',7874,'CSH',0,'2025-12-23','2025-12-23',4555,0,4682,0,'D06','',0,600.00,0.00,0.00,600.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'Scan',0,'','7','hdfc','','64541','','scan',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 13:39:50','','0000-00-00 00:00:00',0),(8518,0,0,7130,'2526','H','O',7875,'CSH',0,'2025-12-23','2025-12-23',4557,0,4684,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 13:47:40','','0000-00-00 00:00:00',0),(8519,0,0,6780,'2526','H','D',330,'',0,'2025-12-23','0000-00-00',0,310,4490,0,'D02','',0,41550.00,0.00,0.00,41550.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-22000,0,'0000-00-00','','N','N','F','N',19550.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(8520,0,0,7131,'2526','H','O',7876,'CSH',0,'2025-12-23','2025-12-23',4558,0,4685,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 13:52:24','','0000-00-00 00:00:00',0),(8521,0,0,6780,'2526','H','I',315,'CR',0,'2025-12-23','0000-00-00',0,310,4490,0,'D02','',0,41550.00,0.00,0.00,41550.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-38500,0,'0000-00-00','','N','Y','F','N',3050.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(8522,0,0,7132,'2526','H','O',7877,'CSH',0,'2025-12-23','2025-12-23',2448,0,2507,0,'D06','',0,1000.00,0.00,0.00,1000.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 16:16:16','','0000-00-00 00:00:00',0),(8523,0,0,7133,'2526','H','O',7878,'CSH',0,'2025-12-23','2025-12-23',750,0,782,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 16:28:59','','0000-00-00 00:00:00',0),(8524,0,0,7134,'2526','H','O',7879,'CSH',0,'2025-12-23','2025-12-23',4559,0,4686,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 16:38:31','','0000-00-00 00:00:00',0),(8525,0,0,7135,'2526','H','O',7880,'CSH',0,'2025-12-23','2025-12-23',4560,0,4687,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 16:42:38','','0000-00-00 00:00:00',0),(8526,0,0,7136,'2526','H','O',7881,'CSH',0,'2025-12-23','2025-12-23',2004,0,2055,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 16:44:18','','0000-00-00 00:00:00',0),(8527,0,0,7137,'2526','H','O',7882,'CSH',0,'2025-12-23','2025-12-23',1501,0,1542,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 16:46:35','','0000-00-00 00:00:00',0),(8528,0,0,7138,'2526','H','O',7883,'CSH',0,'2025-12-23','2025-12-23',637,0,667,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 16:55:04','','0000-00-00 00:00:00',0),(8529,0,0,6899,'2526','H','D',331,'',0,'2025-12-23','0000-00-00',4172,316,4285,0,'D27','',0,78100.00,0.00,0.00,78100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-80000,0,'0000-00-00','','N','N','F','N',-1900.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-23 16:58:12','vishal','2025-12-23 17:04:54',0),(8530,0,0,7139,'2526','H','O',7884,'CSH',0,'2025-12-23','2025-12-23',2970,0,3048,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','BOI','','61111','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 17:00:59','','0000-00-00 00:00:00',0),(8531,0,0,6769,'2526','H','D',332,'',0,'2025-12-23','0000-00-00',0,309,4484,0,'D27','',0,42400.00,0.00,0.00,42400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','','','','','','',0.00,-20000,0,'0000-00-00','','N','N','D','N',22400.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-23 17:09:14','vishal','2025-12-23 17:54:47',0),(8532,0,0,7140,'2526','H','O',7885,'CSH',0,'2025-12-23','2025-12-23',4561,0,4688,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 17:16:12','','0000-00-00 00:00:00',0),(8533,0,0,7141,'2526','H','O',7886,'CSH',0,'2025-12-23','2025-12-23',4562,0,4689,0,'D14','',0,1300.00,0.00,0.00,1300.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',1300.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-23 17:21:41','','0000-00-00 00:00:00',0),(8534,0,0,7142,'2526','H','O',7887,'CSH',0,'2025-12-23','2025-12-23',1455,0,1496,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-23 17:22:59','','0000-00-00 00:00:00',0),(8535,0,0,7135,'2526','H','O',7888,'CSH',0,'2025-12-23','2025-12-23',4560,0,4687,0,'D06','',0,4400.00,0.00,0.00,4400.00,400.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','sbi','','29304','','scan',4000.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 17:26:42','','0000-00-00 00:00:00',0),(8536,0,0,7143,'2526','H','O',7889,'CSH',0,'2025-12-23','2025-12-23',2600,0,2662,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'SCAN',0,'','7','RNSB','','48157','','scan',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 17:31:19','','0000-00-00 00:00:00',0),(8537,0,0,7144,'2526','H','O',7890,'CSH',0,'2025-12-23','2025-12-23',4078,0,4187,0,'D02','',0,100.00,0.00,0.00,100.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',100.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-23 17:31:50','','0000-00-00 00:00:00',0),(8538,0,0,7145,'2526','H','O',7891,'CSH',0,'2025-12-23','2025-12-23',4327,0,4440,0,'D06','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 17:33:21','','0000-00-00 00:00:00',0),(8539,0,0,7146,'2526','H','O',7892,'CSH',0,'2025-12-23','2025-12-23',4563,0,4690,0,'D06','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 17:35:41','','0000-00-00 00:00:00',0),(8540,0,0,7147,'2526','H','O',7893,'CSH',0,'2025-12-23','2025-12-23',4564,0,4691,0,'D06','',0,900.00,0.00,0.00,900.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',900.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 17:36:48','','0000-00-00 00:00:00',0),(8541,0,0,7149,'2526','H','O',7894,'CSH',0,'2025-12-23','2025-12-23',4565,0,4692,0,'D03','',0,500.00,0.00,0.00,500.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',500.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','manshi','2025-12-23 17:42:52','','0000-00-00 00:00:00',0),(8542,0,0,7134,'2526','H','O',7895,'CSH',0,'2025-12-23','2025-12-23',4559,0,4686,0,'D06','',0,4400.00,0.00,0.00,4400.00,200.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',4200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 17:43:30','','0000-00-00 00:00:00',0),(8543,0,0,7150,'2526','H','O',7896,'CSH',0,'2025-12-23','2025-12-23',868,0,900,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-23 17:44:32','','0000-00-00 00:00:00',0),(8544,0,0,6899,'2526','H','I',316,'CR',0,'2025-12-23','0000-00-00',4172,316,4285,0,'D27','',0,78100.00,0.00,0.00,78100.00,100.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',-2000.00,-80000,0,'0000-00-00','Y','N','Y','F','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(8545,0,0,7151,'2526','H','O',7897,'CSH',0,'2025-12-23','2025-12-23',4566,0,4693,0,'D06','',0,800.00,0.00,0.00,800.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',800.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 17:46:01','','0000-00-00 00:00:00',0),(8546,0,0,7152,'2526','H','O',7898,'CSH',0,'2025-12-23','2025-12-23',3958,0,4066,0,'D27','',0,400.00,0.00,0.00,400.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',400.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','drashti','2025-12-23 17:46:39','','0000-00-00 00:00:00',0),(8547,0,0,7153,'2526','H','O',7899,'CSH',0,'2025-12-23','2025-12-23',2738,0,2808,0,'D02','',0,200.00,0.00,0.00,200.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',200.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','janvi','2025-12-23 17:47:00','','0000-00-00 00:00:00',0),(8548,0,0,7154,'2526','H','O',7900,'CSH',0,'2025-12-23','2025-12-23',4567,0,4694,0,'D06','',0,700.00,0.00,0.00,700.00,0.00,0.00,'',0.00,'0000-00-00','',NULL,'',0,'','CSH','','','','','',700.00,0,0,'0000-00-00','Y','N','Y','','N',0.00,'','N','','','','','N','N','N','N','0000-00-00','0000-00-00','N','reception','2025-12-23 17:47:11','','0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `receipt_header` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `receipt_header_amendment`
--

DROP TABLE IF EXISTS `receipt_header_amendment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `receipt_header_amendment` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `fyear` varchar(4) NOT NULL,
  `receipt_cat` char(1) NOT NULL,
  `ipd_opd` varchar(2) NOT NULL,
  `receipt_no` int(11) NOT NULL,
  `bill_amendment_no` tinyint(4) NOT NULL,
  `receipt_date` date NOT NULL,
  `bill_due_date` date NOT NULL,
  `patient_reg_id` bigint(20) NOT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `dept_id` varchar(5) NOT NULL,
  `package_service_code` varchar(4) NOT NULL,
  `ref_by` int(11) NOT NULL,
  `gross_amt` int(11) NOT NULL,
  `service_level_discount` int(11) NOT NULL,
  `gst_amount` float(9,2) NOT NULL,
  `receipt_amt` int(11) NOT NULL,
  `receipt_discount` int(11) NOT NULL,
  `adjustment` float NOT NULL,
  `write_off_amount` float(9,2) NOT NULL,
  `write_off_date` date NOT NULL,
  `write_off_by` varchar(20) NOT NULL,
  `write_off_remark` varchar(50) NOT NULL,
  `disc_remark` varchar(100) NOT NULL,
  `promo_no` int(11) NOT NULL,
  `discount_type` varchar(6) NOT NULL,
  `payment_mode` varchar(3) NOT NULL,
  `payment_agency` varchar(25) NOT NULL,
  `payment_number` varchar(25) NOT NULL,
  `payment_note` varchar(30) NOT NULL,
  `receipt_paid` int(11) NOT NULL,
  `advance` int(11) NOT NULL,
  `paid` varchar(1) NOT NULL,
  `is_credit_bill` enum('Y','N') NOT NULL DEFAULT 'N',
  `print_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `draft_bill` char(1) NOT NULL,
  `receipt_due` int(11) NOT NULL,
  `current_due` int(11) NOT NULL,
  `room_cat` varchar(11) NOT NULL,
  `cancellation_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `cancellation_remark` varchar(50) NOT NULL,
  `newreceipt_no` varchar(11) NOT NULL,
  `oldreceipt_no` varchar(11) NOT NULL,
  `receipt_flag` char(1) NOT NULL,
  `is_exported_to_xml` enum('N','Y') NOT NULL DEFAULT 'N',
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  `IsAdjusted` tinyint(1) DEFAULT '0' COMMENT 'Indicates whether revenue adjusted or not?',
  PRIMARY KEY (`id`,`company_id`,`branch_id`,`fyear`,`receipt_cat`,`ipd_opd`,`receipt_no`,`bill_amendment_no`),
  KEY `receipt_header_idx_id` (`visit_id`)
) ENGINE=InnoDB AUTO_INCREMENT=8389 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `receipt_header_amendment`
--

LOCK TABLES `receipt_header_amendment` WRITE;
/*!40000 ALTER TABLE `receipt_header_amendment` DISABLE KEYS */;
INSERT INTO `receipt_header_amendment` VALUES (1870,0,0,1504,'2526','H','I',77,0,'2025-10-27','0000-00-00',0,94,1253,'D27','',0,19300,0,0.00,19300,0,0,0.00,'0000-00-00','','','',0,'','','','','',0,-19300,'Y','N','Y','F',0,0,'','N','','','','','N','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(2011,0,0,1293,'2526','H','I',81,0,'2025-10-28','0000-00-00',0,78,1103,'D27','',0,74100,0,0.00,74100,4100,0,0.00,'0000-00-00','','','',0,'','','','','',0,-70000,'Y','N','Y','F',0,0,'','N','','','','','N','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(2139,0,0,1536,'2526','H','I',84,0,'2025-10-29','0000-00-00',1223,98,1264,'D02','',0,85000,0,0.00,85000,3000,0,0.00,'0000-00-00','','','',0,'','','','','',0,-82000,'Y','N','Y','F',0,0,'','N','','','','','N','riya','2025-10-29 12:12:09','','0000-00-00 00:00:00',0),(2154,0,0,1438,'2526','H','I',86,0,'2025-10-29','0000-00-00',1139,91,1179,'D02','',0,89450,0,0.00,89450,2450,0,0.00,'0000-00-00','','','',0,'','','','','',0,-87000,'Y','N','Y','F',0,0,'','N','','','','','N','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(2611,0,0,2198,'2526','H','O',2400,0,'2025-11-01','0000-00-00',1731,0,1775,'D06','',0,3000,0,0.00,3000,0,0,0.00,'0000-00-00','','','Sacn',0,'','7','ujjivan bank','71053','scan',3000,0,'Y','N','Y','',0,0,'','N','','','','','N','drashti','2025-11-01 14:37:09','','0000-00-00 00:00:00',0),(2635,0,0,2065,'2526','H','I',103,0,'2025-11-02','0000-00-00',1635,119,1680,'D02','',0,45730,0,0.00,45730,0,0,0.00,'0000-00-00','','','',0,'','','','','',0,-45730,'Y','N','N','F',0,0,'','N','','','','','N','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(2635,0,0,2065,'2526','H','I',103,1,'2025-11-02','0000-00-00',1635,119,1680,'D02','',0,45730,0,0.00,45730,0,0,0.00,'0000-00-00','','','',0,'','','','','',0,-45730,'Y','N','Y','F',0,0,'','N','','','','','N','riya','2025-11-02 10:37:55','riya','2025-11-02 10:39:02',0),(3011,0,0,2525,'2526','H','O',2769,0,'2025-11-05','0000-00-00',1962,0,2010,'D27','',0,700,0,0.00,700,0,0,0.00,'0000-00-00','','','Scan',0,'','7','kotak','57938','scan ',700,0,'Y','N','Y','',0,0,'','N','','','','','N','janvi','2025-11-05 18:01:55','','0000-00-00 00:00:00',0),(3682,0,0,2994,'2526','H','I',131,0,'2025-11-12','0000-00-00',0,148,2302,'D03','',0,10900,0,0.00,10900,0,0,0.00,'0000-00-00','','','',0,'','','','','',0,-10900,'Y','N','Y','F',0,0,'','N','','','','','N','vishal','2025-11-12 12:12:20','','0000-00-00 00:00:00',0),(5055,0,0,4271,'2526','H','O',4696,0,'2025-11-26','0000-00-00',1288,0,1327,'D02','',0,100,0,0.00,100,0,0,0.00,'0000-00-00','','','Scan',0,'','7','bob','91155','scan',100,0,'Y','N','Y','',0,0,'','N','','','','','N','janvi','2025-11-26 10:55:15','','0000-00-00 00:00:00',0),(5055,0,0,4271,'2526','H','O',4696,1,'2025-11-26','0000-00-00',1288,0,1327,'D02','',0,100,0,0.00,100,0,0,0.00,'0000-00-00','','','scan',0,'','7','bob','91155','scan',100,0,'Y','N','Y','',0,0,'','N','','','','','N','janvi','2025-11-26 10:55:15','urvashi','2025-11-26 11:06:37',0),(5575,0,0,4677,'2526','H','O',5176,0,'2025-11-29','0000-00-00',3254,0,3337,'D02','',0,500,0,0.00,500,0,0,0.00,'0000-00-00','','','Scan',0,'','7','sbi','30179','scan ',500,0,'Y','N','Y','',0,0,'','N','','','','','N','janvi','2025-11-29 18:08:32','','0000-00-00 00:00:00',0),(5920,0,0,4691,'2526','H','I',201,0,'2025-12-02','0000-00-00',0,220,3347,'D02','',0,40500,0,0.00,40500,0,0,0.00,'0000-00-00','','','',0,'','','','','',0,-40500,'Y','N','Y','F',0,0,'','N','','','','','N','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(5947,0,0,4711,'2526','H','I',202,0,'2025-12-03','0000-00-00',0,223,3361,'D02','',0,55000,0,0.00,55000,0,0,0.00,'0000-00-00','','','',0,'','','','','',0,-55000,'Y','N','N','F',0,0,'','N','','','','','N','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(8388,0,0,6922,'2526','H','I',309,0,'2025-12-22','0000-00-00',0,320,4564,'D02','',0,5200,0,0.00,5200,2200,0,0.00,'0000-00-00','','','',0,'','','','','',0,-3000,'Y','N','Y','F',0,0,'','N','','','','','N','vishal','2025-12-22 18:24:19','','0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `receipt_header_amendment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `receipt_header_backup`
--

DROP TABLE IF EXISTS `receipt_header_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `receipt_header_backup` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `visit_id` int(11) NOT NULL,
  `fyear` varchar(4) NOT NULL,
  `receipt_cat` char(1) NOT NULL,
  `ipd_opd` varchar(1) NOT NULL,
  `receipt_no` int(11) NOT NULL,
  `receipt_date` date NOT NULL,
  `patient_reg_id` int(11) NOT NULL,
  `ipd_reg_id` int(11) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `dept_id` varchar(5) NOT NULL,
  `receipt_amt` int(11) NOT NULL,
  `receipt_discount` int(11) NOT NULL,
  `adjustment` int(11) NOT NULL,
  `disc_remark` varchar(30) NOT NULL,
  `promo_no` int(11) NOT NULL,
  `discount_type` varchar(6) NOT NULL,
  `payment_mode` varchar(3) NOT NULL,
  `payment_agency` varchar(25) NOT NULL,
  `payment_number` varchar(20) NOT NULL,
  `payment_note` varchar(30) NOT NULL,
  `receipt_paid` int(11) NOT NULL,
  `advance` int(11) NOT NULL,
  `paid` varchar(1) NOT NULL,
  `draft_bill` char(1) NOT NULL,
  `receipt_due` int(11) NOT NULL,
  `current_due` int(11) NOT NULL,
  `room_cat` varchar(11) NOT NULL,
  `cancellation_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `cancellation_remark` varchar(30) NOT NULL,
  `newreceipt_no` varchar(11) NOT NULL,
  `oldreceipt_no` varchar(11) NOT NULL,
  `receipt_flag` char(1) NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  `IsAdjusted` tinyint(1) DEFAULT '0' COMMENT 'Indicates whether revenue adjusted or not?',
  PRIMARY KEY (`id`,`fyear`,`receipt_cat`,`ipd_opd`,`receipt_no`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `receipt_header_backup`
--

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

--
-- Table structure for table `receipt_on_account`
--

DROP TABLE IF EXISTS `receipt_on_account`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `receipt_on_account` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `receipt_branch` tinyint(4) NOT NULL,
  `receipt_id` int(11) NOT NULL COMMENT 'receipt_id of receipt table',
  `settlement_id` int(11) NOT NULL COMMENT 'store id of settlement table',
  `patient_id` int(11) NOT NULL,
  `billed_to` int(11) NOT NULL,
  `date` date NOT NULL,
  `on_account_amt` float(15,2) NOT NULL,
  `is_settle` enum('N','Y') NOT NULL DEFAULT 'N',
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `receipt_on_account`
--

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

--
-- Table structure for table `receipt_settlement`
--

DROP TABLE IF EXISTS `receipt_settlement`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `receipt_settlement` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `receipt_id` int(11) NOT NULL,
  `settlement_id` int(11) NOT NULL,
  `settlement_sr_no` int(11) NOT NULL,
  `settlement_date` date NOT NULL,
  `settlement_time` time NOT NULL,
  `outstanding_amt` float(15,2) NOT NULL,
  `settled_amt` float(15,2) NOT NULL,
  `is_settle` enum('N','Y') NOT NULL DEFAULT 'N',
  `bill_id` int(11) NOT NULL,
  `ref_id` int(11) NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `receipt_settlement`
--

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

--
-- Table structure for table `receipt_transaction`
--

DROP TABLE IF EXISTS `receipt_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `receipt_transaction` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `fyear` varchar(4) NOT NULL,
  `receipt_cat` varchar(1) NOT NULL,
  `ipd_opd` varchar(2) NOT NULL,
  `receipt_no` int(11) NOT NULL,
  `receipt_sr` int(11) NOT NULL,
  `bill_amendment_no` tinyint(4) NOT NULL,
  `service_date` date NOT NULL,
  `service_time` time NOT NULL,
  `service_cd` varchar(8) NOT NULL,
  `product_code` int(11) NOT NULL,
  `service_qty` float(9,2) NOT NULL,
  `service_rate` float NOT NULL,
  `service_gross_amt` float NOT NULL,
  `service_discount_type` enum('A','P') NOT NULL DEFAULT 'A',
  `service_discount_percent` float NOT NULL,
  `service_disc` float NOT NULL,
  `service_amt_before_gst` float(9,2) NOT NULL,
  `gst_percentage` float(9,2) NOT NULL,
  `gst_amount` float(9,2) NOT NULL,
  `service_amt` float(9,2) NOT NULL,
  `service_note` varchar(40) NOT NULL,
  `ref_id` int(11) NOT NULL,
  `provider_code` int(11) NOT NULL,
  `provider_code_for_hospital` int(11) NOT NULL COMMENT 'provider code for business entity',
  `ph_TrnType` char(6) NOT NULL,
  `ph_TrnID` int(11) NOT NULL,
  `room_cat` varchar(11) NOT NULL,
  `reverse_bill_no` varchar(15) NOT NULL,
  `remark` varchar(100) NOT NULL,
  `included_in_package` enum('Y','N') NOT NULL DEFAULT 'Y',
  `isAudited` enum('Y','N') NOT NULL DEFAULT 'N',
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  `IsAdjusted` tinyint(1) DEFAULT '0' COMMENT 'Indicates whether revenue adjusted or not?',
  PRIMARY KEY (`company_id`,`branch_id`,`fyear`,`receipt_cat`,`ipd_opd`,`receipt_no`,`receipt_sr`),
  KEY `fyear` (`fyear`,`receipt_cat`,`ipd_opd`,`receipt_no`),
  KEY `idx_rt_join` (`receipt_no`,`fyear`,`ipd_opd`,`receipt_cat`,`ph_TrnType`,`ph_TrnID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `receipt_transaction`
--

LOCK TABLES `receipt_transaction` WRITE;
/*!40000 ALTER TABLE `receipt_transaction` DISABLE KEYS */;
INSERT INTO `receipt_transaction` VALUES (0,0,'2526','H','D',1,1,0,'2025-09-30','19:48:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-10 19:50:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',1,2,0,'2025-09-30','19:49:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-10 19:50:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,1,0,'2025-10-07','12:30:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,2,0,'2025-10-07','12:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,3,0,'2025-10-07','12:30:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,4,0,'2025-10-07','12:32:00','ROOM0006',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,5,0,'2025-10-07','12:32:00','ROOM0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,6,0,'2025-10-07','12:40:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,7,0,'2025-10-08','12:32:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,8,0,'2025-10-08','12:35:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,9,0,'2025-10-08','12:35:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,10,0,'2025-10-08','12:35:00','ROOM0005',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,11,0,'2025-10-08','12:35:00','ROOM0006',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,12,0,'2025-10-08','12:41:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,13,0,'2025-10-09','12:36:00','ROOM0005',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,14,0,'2025-10-09','12:36:00','ROOM0006',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,15,0,'2025-10-09','12:36:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,16,0,'2025-10-09','12:36:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,17,0,'2025-10-09','12:36:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,18,0,'2025-10-09','12:41:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,19,0,'2025-10-10','12:37:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,20,0,'2025-10-10','12:37:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,21,0,'2025-10-10','12:37:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,22,0,'2025-10-10','12:37:00','ROOM0005',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,23,0,'2025-10-10','12:37:00','ROOM0006',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,24,0,'2025-10-10','12:44:00','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,25,0,'2025-10-11','12:37:00','ROOM0005',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',3,26,0,'2025-10-11','12:44:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 12:52:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,1,0,'2025-10-08','18:52:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,2,0,'2025-10-08','18:52:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,3,0,'2025-10-08','18:57:00','CARE0005',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,4,0,'2025-10-08','18:59:00','WPRC0077',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,5,0,'2025-10-08','18:59:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,6,0,'2025-10-08','19:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,7,0,'2025-10-08','19:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,8,0,'2025-10-08','19:20:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,9,0,'2025-10-09','18:53:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,10,0,'2025-10-09','18:57:00','CARE0005',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,11,0,'2025-10-09','18:59:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,12,0,'2025-10-09','19:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,13,0,'2025-10-09','19:20:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,14,0,'2025-10-09','19:20:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,15,0,'2025-10-09','19:20:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,16,0,'2025-10-10','18:57:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,17,0,'2025-10-10','19:01:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,18,0,'2025-10-10','19:01:00','XRY0009',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,19,0,'2025-10-10','19:20:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,20,0,'2025-10-10','19:20:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,21,0,'2025-10-10','19:20:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,22,0,'2025-10-10','19:20:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,23,0,'2025-10-11','18:58:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',4,24,0,'2025-10-11','19:02:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',5,1,0,'2025-10-11','09:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',5,2,0,'2025-10-11','09:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',5,3,0,'2025-10-11','19:46:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',5,4,0,'2025-10-11','19:46:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',5,5,0,'2025-10-11','19:46:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',5,6,0,'2025-10-11','19:46:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',5,7,0,'2025-10-11','19:49:00','SURG0014',0,1.00,7300,7300,'P',0,0,7300.00,0.00,0.00,7300.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-11 19:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',5,8,0,'2025-10-11','19:50:00','SURG0015',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-11 19:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,1,0,'2025-10-08','12:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,2,0,'2025-10-08','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,3,0,'2025-10-08','12:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,4,0,'2025-10-08','12:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,5,0,'2025-10-08','20:20:00','USG0092',0,1.00,1200,1200,'A',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,6,0,'2025-10-08','20:20:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,7,0,'2025-10-08','20:20:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,8,0,'2025-10-08','20:23:00','WPRC0080',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,9,0,'2025-10-08','20:26:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,10,0,'2025-10-08','20:26:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,11,0,'2025-10-09','12:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,12,0,'2025-10-09','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,13,0,'2025-10-09','12:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,14,0,'2025-10-09','12:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,15,0,'2025-10-09','20:25:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,16,0,'2025-10-10','12:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,17,0,'2025-10-10','12:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,18,0,'2025-10-10','12:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,19,0,'2025-10-10','12:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,20,0,'2025-10-10','12:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,21,0,'2025-10-11','20:19:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',6,22,0,'2025-10-11','20:19:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-11 20:29:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',7,1,0,'2025-10-09','12:07:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:07:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',7,2,0,'2025-10-09','12:07:00','ROOM0002',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:07:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',7,3,0,'2025-10-09','12:07:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:07:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',7,4,0,'2025-10-09','12:07:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:07:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',7,5,0,'2025-10-09','12:07:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:07:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',7,6,0,'2025-10-09','12:10:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:07:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',7,7,0,'2025-10-09','12:10:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:07:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',7,8,0,'2025-10-09','12:15:00','OPWD0019',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:07:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',7,9,0,'2025-10-09','12:16:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:07:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',7,10,0,'2025-10-10','12:13:00','ROOM0002',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:07:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',7,11,0,'2025-10-10','12:13:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:07:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',7,12,0,'2025-10-10','12:13:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:07:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',7,13,0,'2025-10-10','12:13:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:07:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',7,14,0,'2025-10-10','12:14:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:07:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',7,15,0,'2025-10-10','12:18:00','USG0091',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:07:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',7,16,0,'2025-10-11','12:15:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:07:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',8,1,0,'2025-10-11','13:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:59:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',8,2,0,'2025-10-11','13:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:59:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',8,3,0,'2025-10-11','13:30:00','AECO0008',0,0.50,300,150,'A',0,0,150.00,0.00,0.00,150.00,'311',0,4,0,'',0,'','','','','','vishal','2025-10-11 21:59:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',8,4,0,'2025-10-11','13:30:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:59:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',8,5,0,'2025-10-11','13:30:00','ROOM0009',0,0.50,2900,1450,'A',0,0,1450.00,0.00,0.00,1450.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:59:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',8,6,0,'2025-10-11','21:29:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,36,0,'',0,'','','','','','vishal','2025-10-11 21:59:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',8,7,0,'2025-10-11','21:32:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:59:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',8,8,0,'2025-10-11','21:33:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:59:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',9,1,0,'2025-10-11','09:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',9,2,0,'2025-10-11','09:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',9,3,0,'2025-10-11','09:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',9,4,0,'2025-10-11','09:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',9,5,0,'2025-10-11','09:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',9,6,0,'2025-10-11','09:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',9,7,0,'2025-10-11','09:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',9,8,0,'2025-10-12','10:02:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',9,9,0,'2025-10-11','10:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',9,10,0,'2025-10-11','10:05:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',9,11,0,'2025-10-12','10:06:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',9,12,0,'2025-10-11','10:07:00','SURG0014',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',9,13,0,'2025-10-11','10:07:00','SURG0015',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,1,0,'2025-10-10','10:58:00','ROOM0007',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,2,0,'2025-10-10','11:16:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,3,0,'2025-10-10','11:18:00','WPRC0083',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,4,0,'2025-10-10','11:19:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,5,0,'2025-10-10','11:20:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,6,0,'2025-10-10','11:20:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,7,0,'2025-10-10','11:20:00','WPRC0084',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,8,0,'2025-10-10','14:30:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,9,0,'2025-10-10','14:30:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,10,0,'2025-10-10','14:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,11,0,'2025-10-10','14:30:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,12,0,'2025-10-10','14:30:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,13,0,'2025-10-10','14:30:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,14,0,'2025-10-11','10:51:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,15,0,'2025-10-11','10:53:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,16,0,'2025-10-11','10:58:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,17,0,'2025-10-11','10:59:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,18,0,'2025-10-11','10:59:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,19,0,'2025-10-11','10:59:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,20,0,'2025-10-11','11:18:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,21,0,'2025-10-11','11:19:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,22,0,'2025-10-11','11:23:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,23,0,'2025-10-12','10:59:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,24,0,'2025-10-12','11:18:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,25,0,'2025-10-12','11:19:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',10,26,0,'2025-10-12','11:23:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',11,1,0,'2025-10-11','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:17:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',11,2,0,'2025-10-11','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:17:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',11,3,0,'2025-10-11','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:17:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',11,4,0,'2025-10-11','09:30:00','CARE0005',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:17:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',11,5,0,'2025-10-11','09:30:00','ROOM0003',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:17:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',11,6,0,'2025-10-11','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','vishal','2025-10-12 13:17:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',11,7,0,'2025-10-11','13:03:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:17:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',11,8,0,'2025-10-12','13:03:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 13:17:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',11,9,0,'2025-10-12','13:04:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:17:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',11,10,0,'2025-10-11','13:17:00','SURG0014',0,1.00,17500,17500,'P',0,0,17500.00,0.00,0.00,17500.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 13:17:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',11,11,0,'2025-10-11','13:17:00','SURG0015',0,1.00,5700,5700,'P',0,0,5700.00,0.00,0.00,5700.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 13:17:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',12,1,0,'2025-10-11','08:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:28:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',12,2,0,'2025-10-11','08:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:28:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',12,3,0,'2025-10-11','13:06:00','ROOM0002',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:28:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',12,4,0,'2025-10-11','13:07:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:28:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',12,5,0,'2025-10-11','13:07:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:28:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',12,6,0,'2025-10-11','13:07:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 13:28:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',12,7,0,'2025-10-11','13:08:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-12 13:28:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',12,8,0,'2025-10-11','13:08:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 13:28:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',12,9,0,'2025-10-11','13:10:00','SURG0014',0,1.00,20000,20000,'P',0,0,20000.00,0.00,0.00,20000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 13:28:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',12,10,0,'2025-10-11','13:10:00','SURG0015',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 13:28:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',12,11,0,'2025-10-12','13:08:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 13:28:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',12,12,0,'2025-10-12','13:09:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:28:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',12,13,0,'2025-10-12','13:09:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:28:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',12,14,0,'2025-10-12','13:09:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:28:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',12,15,0,'2025-10-12','13:14:00','ROOM0002',0,0.50,2900,1450,'P',0,0,1450.00,0.00,0.00,1450.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:28:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',12,16,0,'2025-10-12','13:14:00','CARE0006',0,0.50,300,150,'P',0,0,150.00,0.00,0.00,150.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:28:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',12,17,0,'2025-10-12','13:14:00','CARE0002',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:28:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',13,1,0,'2025-10-12','12:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 21:38:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',13,2,0,'2025-10-12','12:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 21:38:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',13,3,0,'2025-10-12','12:45:00','ROOM0009',0,0.50,2900,1450,'A',0,0,1450.00,0.00,0.00,1450.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-12 21:38:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',13,4,0,'2025-10-12','12:45:00','AECO0008',0,0.50,300,150,'A',0,0,150.00,0.00,0.00,150.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-12 21:38:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',13,5,0,'2025-10-12','12:45:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-12 21:38:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',13,6,0,'2025-10-12','12:45:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','vishal','2025-10-12 21:38:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',13,7,0,'2025-10-12','18:39:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 21:38:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',13,8,0,'2025-10-12','18:40:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 21:38:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',13,9,0,'2025-10-12','21:37:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-12 21:38:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,1,0,'2025-10-10','11:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,2,0,'2025-10-10','11:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,3,0,'2025-10-10','11:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,4,0,'2025-10-10','11:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,5,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,5,0,'2025-10-10','11:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,5,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,6,0,'2025-10-10','11:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,7,0,'2025-10-10','11:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,8,0,'2025-10-10','18:29:00','ROOM0004',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,9,0,'2025-10-10','18:30:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,10,0,'2025-10-10','18:30:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,11,0,'2025-10-11','11:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,12,0,'2025-10-11','11:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,13,0,'2025-10-11','11:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,14,0,'2025-10-11','11:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,15,0,'2025-10-11','11:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,16,0,'2025-10-11','18:28:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,41,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,17,0,'2025-10-11','18:30:00','ROOM0004',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,18,0,'2025-10-12','11:45:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,19,0,'2025-10-12','11:45:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,20,0,'2025-10-12','11:45:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,21,0,'2025-10-12','11:45:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,22,0,'2025-10-12','11:45:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,23,0,'2025-10-12','18:30:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,24,0,'2025-10-13','11:57:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,25,0,'2025-10-13','11:58:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',14,26,0,'2025-10-13','11:58:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','reception','2025-10-13 12:02:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,1,0,'2025-10-10','19:29:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,2,0,'2025-10-10','19:29:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,3,0,'2025-10-10','19:29:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,4,0,'2025-10-10','19:29:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,5,0,'2025-10-10','19:30:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,6,0,'2025-10-10','19:31:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,7,0,'2025-10-10','20:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,8,0,'2025-10-10','20:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,9,0,'2025-10-11','19:29:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,10,0,'2025-10-11','19:31:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,11,0,'2025-10-11','19:32:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,12,0,'2025-10-11','19:32:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,13,0,'2025-10-11','19:32:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,14,0,'2025-10-11','19:32:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,15,0,'2025-10-11','19:32:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,16,0,'2025-10-11','19:32:00','ROOM0004',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,17,0,'2025-10-11','19:32:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,18,0,'2025-10-12','13:09:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,19,0,'2025-10-12','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'310',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,20,0,'2025-10-12','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'310',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,21,0,'2025-10-12','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'310',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,22,0,'2025-10-12','20:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,23,0,'2025-10-12','20:30:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'310',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',15,24,0,'2025-10-13','13:10:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:13:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,1,0,'2025-10-07','10:55:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,2,0,'2025-10-07','10:55:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,3,0,'2025-10-07','10:55:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,4,0,'2025-10-07','10:55:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,5,0,'2025-10-07','17:16:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,6,0,'2025-10-07','17:16:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,7,0,'2025-10-07','17:59:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,8,0,'2025-10-08','10:55:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,9,0,'2025-10-08','10:55:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,10,0,'2025-10-08','10:55:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,11,0,'2025-10-08','10:55:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,12,0,'2025-10-08','10:55:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,13,0,'2025-10-08','19:17:00','SURG0014',0,1.00,20000,20000,'P',0,0,20000.00,0.00,0.00,20000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,14,0,'2025-10-08','19:17:00','SURG0015',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,15,0,'2025-10-09','10:55:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,16,0,'2025-10-09','10:55:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,17,0,'2025-10-09','10:55:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,18,0,'2025-10-09','10:55:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,19,0,'2025-10-09','10:55:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,20,0,'2025-10-10','10:55:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,21,0,'2025-10-10','10:55:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,22,0,'2025-10-10','10:55:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,23,0,'2025-10-10','10:55:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,24,0,'2025-10-10','10:55:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,25,0,'2025-10-11','10:55:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,26,0,'2025-10-11','10:55:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,27,0,'2025-10-11','10:55:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,28,0,'2025-10-11','10:55:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,29,0,'2025-10-11','10:55:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,30,0,'2025-10-11','17:58:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,46,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,31,0,'2025-10-12','10:55:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,32,0,'2025-10-12','10:55:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,33,0,'2025-10-12','10:55:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,34,0,'2025-10-12','10:55:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,35,0,'2025-10-12','10:55:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,36,0,'2025-10-12','17:58:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',16,37,0,'2025-10-13','10:55:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:45:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',17,1,0,'2025-10-04','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 16:58:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',17,2,0,'2025-10-04','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 16:58:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',17,3,0,'2025-10-04','09:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-13 16:58:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',17,4,0,'2025-10-04','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-13 16:58:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',17,5,0,'2025-10-04','09:30:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'408',0,42,0,'',0,'','','','','','vishal','2025-10-13 16:58:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',17,6,0,'2025-10-04','09:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-13 16:58:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',17,7,0,'2025-10-04','16:54:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 16:58:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',17,8,0,'2025-10-04','16:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 16:58:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',17,9,0,'2025-10-04','16:55:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 16:58:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',18,1,0,'2025-10-13','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 17:15:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',18,2,0,'2025-10-13','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 17:15:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',18,3,0,'2025-10-13','09:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-10-13 17:15:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',18,4,0,'2025-10-13','17:14:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 17:15:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',18,5,0,'2025-10-13','17:14:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 17:15:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',18,6,0,'2025-10-13','17:14:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-13 17:15:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',18,7,0,'2025-10-13','17:15:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 17:15:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',19,1,0,'2025-10-11','14:23:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',19,2,0,'2025-10-11','22:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',19,3,0,'2025-10-11','22:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',19,4,0,'2025-10-11','22:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'214',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',19,5,0,'2025-10-11','22:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'214',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',19,6,0,'2025-10-11','22:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'214',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',19,7,0,'2025-10-12','11:24:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',19,8,0,'2025-10-12','14:17:00','DRC0020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,37,0,'',0,'','','','','','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',19,9,0,'2025-10-12','14:20:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',19,10,0,'2025-10-12','14:20:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',19,11,0,'2025-10-12','22:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'214',0,5,0,'',0,'','','','','','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',19,12,0,'2025-10-12','22:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'214',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',19,13,0,'2025-10-12','22:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'214',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',19,14,0,'2025-10-12','22:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'214',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',19,15,0,'2025-10-12','22:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'214',0,5,0,'',0,'','','','','','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',19,16,0,'2025-10-13','11:24:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',19,17,0,'2025-10-13','19:55:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',19,18,0,'2025-10-13','19:57:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','riya','2025-10-13 20:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',20,1,0,'2025-10-09','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 21:48:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',20,2,0,'2025-10-09','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 21:48:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',20,3,0,'2025-10-09','09:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 21:48:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',20,4,0,'2025-10-09','09:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 21:48:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',20,5,0,'2025-10-09','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 21:48:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',20,6,0,'2025-10-09','09:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'309',0,3,0,'',0,'','','','','','riya','2025-10-13 21:48:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',20,7,0,'2025-10-09','09:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'309',0,3,0,'',0,'','','','','','riya','2025-10-13 21:48:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',20,8,0,'2025-10-09','21:37:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 21:48:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',20,9,0,'2025-10-09','21:38:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 21:48:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',20,10,0,'2025-10-09','21:38:00','SURG0014',0,1.00,15000,15000,'P',0,0,15000.00,0.00,0.00,15000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-13 21:48:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',20,11,0,'2025-10-09','21:39:00','SURG0014',0,1.00,40000,40000,'P',0,0,40000.00,0.00,0.00,40000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-13 21:48:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',20,12,0,'2025-10-09','21:40:00','SURG0015',0,1.00,10000,10000,'P',0,0,10000.00,0.00,0.00,10000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-13 21:48:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',20,13,0,'2025-10-09','21:43:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-13 21:48:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',20,14,0,'2025-10-10','09:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'309',0,3,0,'',0,'','','','','','riya','2025-10-13 21:48:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',20,15,0,'2025-10-10','21:41:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 21:48:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',20,16,0,'2025-10-10','21:41:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-13 21:48:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',21,1,0,'2025-10-06','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:13:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',21,2,0,'2025-10-06','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:13:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',21,3,0,'2025-10-06','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:13:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',21,4,0,'2025-10-06','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:13:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',21,5,0,'2025-10-06','10:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-10-13 22:13:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',21,6,0,'2025-10-06','10:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-10-13 22:13:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',21,7,0,'2025-10-06','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:13:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',21,8,0,'2025-10-06','22:02:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:13:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',21,9,0,'2025-10-06','22:03:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:13:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',21,10,0,'2025-10-06','22:04:00','SURG0014',0,1.00,12500,12500,'P',0,0,12500.00,0.00,0.00,12500.00,'',0,3,0,'',0,'','','','','','riya','2025-10-13 22:13:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',21,11,0,'2025-10-06','22:05:00','SURG0015',0,1.00,4200,4200,'P',0,0,4200.00,0.00,0.00,4200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-13 22:13:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',21,12,0,'2025-10-07','10:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-10-13 22:13:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',21,13,0,'2025-10-07','22:03:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:13:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',22,1,0,'2025-10-11','17:50:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:00:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',22,2,0,'2025-10-11','19:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:00:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',22,3,0,'2025-10-11','19:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:00:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',22,4,0,'2025-10-11','19:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:00:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',22,5,0,'2025-10-11','19:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:00:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',22,6,0,'2025-10-11','19:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:00:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',22,7,0,'2025-10-11','19:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,36,0,'',0,'','','','','','riya','2025-10-13 23:00:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',22,8,0,'2025-10-12','19:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:00:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',22,9,0,'2025-10-12','19:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:00:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',22,10,0,'2025-10-12','19:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:00:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',22,11,0,'2025-10-12','19:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-10-13 23:00:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',22,12,0,'2025-10-12','19:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-10-13 23:00:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',22,13,0,'2025-10-13','19:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-10-13 23:00:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',22,14,0,'2025-10-13','19:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-10-13 23:00:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',22,15,0,'2025-10-13','22:44:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:00:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,1,0,'2025-10-11','12:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,2,0,'2025-10-11','12:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,3,0,'2025-10-11','12:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,4,0,'2025-10-11','12:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,5,0,'2025-10-11','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,6,0,'2025-10-11','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,36,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,7,0,'2025-10-11','18:38:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,8,0,'2025-10-11','18:38:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,9,0,'2025-10-12','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,4,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,10,0,'2025-10-12','12:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,4,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,11,0,'2025-10-12','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,12,0,'2025-10-12','12:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,13,0,'2025-10-12','12:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,14,0,'2025-10-12','22:50:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,15,0,'2025-10-12','22:52:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,16,0,'2025-10-13','12:00:00','ROOM0009',0,0.50,2900,1450,'A',0,0,1450.00,0.00,0.00,1450.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,17,0,'2025-10-13','12:00:00','AECO0008',0,0.50,300,150,'A',0,0,150.00,0.00,0.00,150.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,18,0,'2025-10-13','12:00:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,19,0,'2025-10-13','12:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,4,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,20,0,'2025-10-13','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,4,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',23,21,0,'2025-10-13','22:51:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',24,1,0,'2025-09-25','12:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:25:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',24,2,0,'2025-09-25','12:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:25:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',24,3,0,'2025-09-25','12:15:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'405',0,4,0,'',0,'','','','','','riya','2025-10-14 09:25:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',24,4,0,'2025-09-25','12:15:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'405',0,4,0,'',0,'','','','','','riya','2025-10-14 09:25:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',24,5,0,'2025-09-25','12:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:25:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',24,6,0,'2025-09-25','19:29:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:25:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',24,7,0,'2025-09-25','19:29:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:25:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',24,8,0,'2025-09-25','20:41:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:25:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',24,9,0,'2025-09-25','20:42:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:25:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',24,10,0,'2025-09-25','20:43:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:25:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',24,11,0,'2025-09-26','20:40:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-10-14 09:25:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',25,1,0,'2025-09-30','09:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:44:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',25,2,0,'2025-09-30','09:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:44:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',25,3,0,'2025-09-30','09:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-10-14 09:44:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',25,4,0,'2025-09-30','09:42:00','OETR0001',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-14 09:44:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',25,5,0,'2025-09-30','09:43:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:44:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,1,0,'2025-10-11','09:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,2,0,'2025-10-11','09:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,3,0,'2025-10-11','09:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,4,0,'2025-10-11','09:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,5,0,'2025-10-11','09:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'401',0,3,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,6,0,'2025-10-11','09:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,7,0,'2025-10-11','09:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,8,0,'2025-10-11','10:35:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,9,0,'2025-10-11','10:35:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,10,0,'2025-10-11','10:36:00','WPRC0086',0,2.00,200,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,11,0,'2025-10-11','10:39:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,12,0,'2025-10-12','09:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,13,0,'2025-10-12','09:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,14,0,'2025-10-12','09:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,15,0,'2025-10-12','10:34:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,16,0,'2025-10-12','10:39:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,17,0,'2025-10-12','17:49:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,18,0,'2025-10-13','09:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,19,0,'2025-10-13','09:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,20,0,'2025-10-13','17:49:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,21,0,'2025-10-13','17:49:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,22,0,'2025-10-13','17:49:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',26,23,0,'2025-10-13','18:51:00','OETR0004',0,1.00,104570,104570,'P',0,0,104570.00,0.00,0.00,104570.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:00:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',27,1,0,'2025-10-12','11:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 12:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',27,2,0,'2025-10-12','11:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 12:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',27,3,0,'2025-10-12','11:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-14 12:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',27,4,0,'2025-10-12','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-14 12:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',27,5,0,'2025-10-12','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-14 12:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',27,6,0,'2025-10-12','11:00:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'411',0,5,0,'',0,'','','','','','riya','2025-10-14 12:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',27,7,0,'2025-10-12','11:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','riya','2025-10-14 12:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',27,8,0,'2025-10-12','18:02:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 12:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',27,9,0,'2025-10-13','11:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-14 12:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',27,10,0,'2025-10-13','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-14 12:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',27,11,0,'2025-10-13','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-14 12:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',27,12,0,'2025-10-13','11:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','riya','2025-10-14 12:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',27,13,0,'2025-10-13','11:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','riya','2025-10-14 12:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',27,14,0,'2025-10-14','12:09:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-14 12:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,1,0,'2025-10-10','18:03:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,2,0,'2025-10-10','18:03:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,3,0,'2025-10-10','18:04:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,4,0,'2025-10-10','18:05:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,5,0,'2025-10-10','19:20:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,6,0,'2025-10-10','19:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,7,0,'2025-10-10','19:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,8,0,'2025-10-10','19:20:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,9,0,'2025-10-11','13:03:00','SURG0015',0,1.00,7500,7500,'P',0,0,7500.00,0.00,0.00,7500.00,'',0,6,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,10,0,'2025-10-11','13:06:00','SURG0014',0,1.00,30000,30000,'P',0,0,30000.00,0.00,0.00,30000.00,'',0,50,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,11,0,'2025-10-11','18:05:00','WPRC0096',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,12,0,'2025-10-11','18:05:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,13,0,'2025-10-11','18:05:00','WPRC0080',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,14,0,'2025-10-11','19:20:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,15,0,'2025-10-11','19:20:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,16,0,'2025-10-11','19:20:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,17,0,'2025-10-11','19:20:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,18,0,'2025-10-11','19:20:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,19,0,'2025-10-12','19:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,20,0,'2025-10-12','19:20:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,21,0,'2025-10-12','19:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,22,0,'2025-10-12','19:20:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,23,0,'2025-10-12','19:20:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,24,0,'2025-10-13','12:53:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,25,0,'2025-10-13','19:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,26,0,'2025-10-13','19:20:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,27,0,'2025-10-13','19:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,28,0,'2025-10-13','19:20:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,29,0,'2025-10-13','19:20:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,30,0,'2025-10-14','12:53:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',28,31,0,'2025-10-14','12:53:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,6,0,'',0,'','','','','','riya','2025-10-14 13:56:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,1,0,'2025-10-06','11:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,2,0,'2025-10-06','11:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,3,0,'2025-10-06','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,4,0,'2025-10-06','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,5,0,'2025-10-06','15:25:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,6,0,'2025-10-06','15:25:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,7,0,'2025-10-06','15:33:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,8,0,'2025-10-06','15:33:00','USG0093',0,1.00,1200,1200,'A',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,9,0,'2025-10-06','15:33:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,10,0,'2025-10-06','15:36:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,11,0,'2025-10-07','11:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,12,0,'2025-10-07','11:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,13,0,'2025-10-07','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,14,0,'2025-10-07','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,15,0,'2025-10-07','11:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,16,0,'2025-10-07','15:36:00','WPRC0090',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,17,0,'2025-10-08','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,18,0,'2025-10-08','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,19,0,'2025-10-08','11:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,20,0,'2025-10-08','11:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,21,0,'2025-10-08','11:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,22,0,'2025-10-08','15:32:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,23,0,'2025-10-08','15:38:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,24,0,'2025-10-09','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,25,0,'2025-10-09','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,26,0,'2025-10-09','11:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,27,0,'2025-10-09','11:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,4,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,28,0,'2025-10-09','15:28:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,29,0,'2025-10-09','15:31:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,30,0,'2025-10-09','15:41:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,31,0,'2025-10-09','15:41:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,32,0,'2025-10-10','11:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,33,0,'2025-10-10','11:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,34,0,'2025-10-10','11:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,35,0,'2025-10-10','11:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,36,0,'2025-10-10','11:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,37,0,'2025-10-10','15:31:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,38,0,'2025-10-10','15:32:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,39,0,'2025-10-10','15:32:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,40,0,'2025-10-10','15:41:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,41,0,'2025-10-10','15:42:00','WPRC0078',0,2.00,300,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,42,0,'2025-10-11','11:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'210',0,36,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,43,0,'2025-10-11','11:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,44,0,'2025-10-11','11:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,45,0,'2025-10-11','11:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,46,0,'2025-10-11','11:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,47,0,'2025-10-11','15:32:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,48,0,'2025-10-11','15:33:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,49,0,'2025-10-11','15:42:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,50,0,'2025-10-11','15:42:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,51,0,'2025-10-12','11:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,52,0,'2025-10-12','11:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,53,0,'2025-10-12','11:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,54,0,'2025-10-12','11:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,55,0,'2025-10-12','11:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,56,0,'2025-10-12','15:32:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,57,0,'2025-10-12','15:33:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,58,0,'2025-10-12','15:42:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,59,0,'2025-10-13','11:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,60,0,'2025-10-13','11:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,61,0,'2025-10-13','11:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,62,0,'2025-10-13','11:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,63,0,'2025-10-13','11:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,64,0,'2025-10-13','12:20:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,65,0,'2025-10-13','12:20:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,66,0,'2025-10-13','12:21:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,67,0,'2025-10-13','14:47:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,68,0,'2025-10-14','11:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,69,0,'2025-10-14','14:41:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',29,70,0,'2025-10-14','14:41:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:25:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,1,0,'2025-10-10','12:40:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,2,0,'2025-10-10','12:40:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,3,0,'2025-10-10','12:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,4,0,'2025-10-10','12:40:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,5,0,'2025-10-10','12:40:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,6,0,'2025-10-10','12:40:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,7,0,'2025-10-10','19:11:00','WPRC0090',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,8,0,'2025-10-10','19:11:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,9,0,'2025-10-10','19:12:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,10,0,'2025-10-11','12:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,11,0,'2025-10-11','12:40:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,12,0,'2025-10-11','12:40:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,13,0,'2025-10-11','12:40:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,36,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,14,0,'2025-10-11','12:40:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,15,0,'2025-10-12','12:40:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,16,0,'2025-10-12','12:40:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,17,0,'2025-10-12','12:40:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,18,0,'2025-10-12','12:40:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,19,0,'2025-10-12','12:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,20,0,'2025-10-13','12:40:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,21,0,'2025-10-13','12:40:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,22,0,'2025-10-13','12:40:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,23,0,'2025-10-13','12:40:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,24,0,'2025-10-13','12:40:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,25,0,'2025-10-14','19:09:00','ROOM0009',0,0.50,2900,1450,'P',0,0,1450.00,0.00,0.00,1450.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,26,0,'2025-10-14','19:09:00','CARE0006',0,0.50,300,150,'P',0,0,150.00,0.00,0.00,150.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,27,0,'2025-10-14','19:10:00','CARE0002',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,28,0,'2025-10-14','19:10:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',31,29,0,'2025-10-14','19:10:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-14 19:21:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',32,1,0,'2025-10-14','09:03:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-14 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',32,2,0,'2025-10-14','09:03:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-14 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',32,3,0,'2025-10-14','09:03:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','vishal','2025-10-14 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',32,4,0,'2025-10-14','09:03:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','vishal','2025-10-14 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',32,5,0,'2025-10-14','19:03:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-14 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',32,6,0,'2025-10-14','19:03:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-14 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',32,7,0,'2025-10-14','19:04:00','SURG0014',0,1.00,10500,10500,'P',0,0,10500.00,0.00,0.00,10500.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-14 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',32,8,0,'2025-10-14','19:04:00','SURG0015',0,1.00,3300,3300,'P',0,0,3300.00,0.00,0.00,3300.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-14 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',33,1,0,'2025-10-13','21:07:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-14 21:08:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',33,2,0,'2025-10-13','22:34:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-14 21:08:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',33,3,0,'2025-10-13','22:34:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-14 21:08:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',33,4,0,'2025-10-13','22:34:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-14 21:08:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',33,5,0,'2025-10-13','22:34:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-14 21:08:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',33,6,0,'2025-10-13','22:34:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-14 21:08:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',33,7,0,'2025-10-14','21:06:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-14 21:08:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',33,8,0,'2025-10-14','22:34:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','vishal','2025-10-14 21:08:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',33,9,0,'2025-10-14','22:34:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','vishal','2025-10-14 21:08:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,1,0,'2025-10-11','11:51:00','ROOM0003',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,2,0,'2025-10-11','11:53:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,3,0,'2025-10-11','11:53:00','CARE0005',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,4,0,'2025-10-11','14:10:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,5,0,'2025-10-11','14:10:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,6,0,'2025-10-11','18:10:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,7,0,'2025-10-11','18:11:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,36,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,8,0,'2025-10-11','18:11:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,9,0,'2025-10-11','18:12:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,10,0,'2025-10-12','11:51:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,11,0,'2025-10-12','11:53:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,12,0,'2025-10-12','11:53:00','CARE0005',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,13,0,'2025-10-12','14:10:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'409',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,14,0,'2025-10-12','14:10:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'409',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,15,0,'2025-10-12','18:11:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,16,0,'2025-10-12','18:12:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,17,0,'2025-10-13','11:51:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,18,0,'2025-10-13','11:53:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,19,0,'2025-10-13','11:53:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,20,0,'2025-10-13','11:56:00','WPRC0090',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,21,0,'2025-10-13','14:10:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'409',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,22,0,'2025-10-13','14:10:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'409',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,23,0,'2025-10-13','16:25:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,24,0,'2025-10-13','16:25:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,25,0,'2025-10-14','11:51:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,26,0,'2025-10-14','11:53:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,27,0,'2025-10-14','11:53:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,28,0,'2025-10-14','11:55:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,29,0,'2025-10-14','11:57:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,30,0,'2025-10-14','14:10:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'409',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,31,0,'2025-10-14','14:10:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'409',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,32,0,'2025-10-15','11:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,33,0,'2025-10-15','11:57:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',34,34,0,'2025-10-15','11:58:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:09:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,1,0,'2025-10-09','12:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,2,0,'2025-10-09','12:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,3,0,'2025-10-09','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,4,0,'2025-10-09','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,5,0,'2025-10-09','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,6,0,'2025-10-09','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,7,0,'2025-10-09','17:53:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,8,0,'2025-10-10','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,9,0,'2025-10-10','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,10,0,'2025-10-10','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,11,0,'2025-10-10','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,12,0,'2025-10-10','12:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,13,0,'2025-10-11','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,36,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,14,0,'2025-10-11','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,15,0,'2025-10-11','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,16,0,'2025-10-11','12:30:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,17,0,'2025-10-11','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,18,0,'2025-10-12','12:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,19,0,'2025-10-12','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,20,0,'2025-10-12','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,21,0,'2025-10-12','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,22,0,'2025-10-12','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,23,0,'2025-10-13','12:03:00','WPRC0090',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,24,0,'2025-10-13','12:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,25,0,'2025-10-13','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,26,0,'2025-10-13','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,27,0,'2025-10-13','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,28,0,'2025-10-13','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,29,0,'2025-10-14','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,30,0,'2025-10-14','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,31,0,'2025-10-14','12:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,32,0,'2025-10-14','12:30:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,33,0,'2025-10-14','12:30:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',35,34,0,'2025-10-15','12:02:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',36,1,0,'2025-10-14','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-15 18:44:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',36,2,0,'2025-10-14','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-15 18:44:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',36,3,0,'2025-10-14','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-15 18:44:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',36,4,0,'2025-10-14','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-15 18:44:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',36,5,0,'2025-10-14','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-15 18:44:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',36,6,0,'2025-10-14','10:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-10-15 18:44:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',36,7,0,'2025-10-14','10:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-10-15 18:44:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',36,8,0,'2025-10-14','12:37:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-15 18:44:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',36,9,0,'2025-10-14','12:52:00','SURG0014',0,1.00,15000,15000,'P',0,0,15000.00,0.00,0.00,15000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-15 18:44:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',36,10,0,'2025-10-14','12:52:00','SURG0015',0,1.00,3750,3750,'P',0,0,3750.00,0.00,0.00,3750.00,'',0,3,0,'',0,'','','','','','riya','2025-10-15 18:44:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',36,11,0,'2025-10-15','10:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-10-15 18:44:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',36,12,0,'2025-10-15','12:37:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-15 18:44:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',37,1,0,'2025-10-14','13:27:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:05:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',37,2,0,'2025-10-14','13:27:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:05:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',37,3,0,'2025-10-14','13:27:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:05:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',37,4,0,'2025-10-14','13:27:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:05:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',37,5,0,'2025-10-14','13:27:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:05:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',37,6,0,'2025-10-14','13:27:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,3,0,'',0,'','','','','','vishal','2025-10-15 13:05:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',37,7,0,'2025-10-15','13:27:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,3,0,'',0,'','','','','','vishal','2025-10-15 13:05:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',37,8,0,'2025-10-14','13:03:00','SURG0014',0,1.00,8600,8600,'P',0,0,8600.00,0.00,0.00,8600.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-15 13:05:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',37,9,0,'2025-10-14','13:03:00','SURG0015',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-15 13:05:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',38,1,0,'2025-10-14','10:48:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',38,2,0,'2025-10-14','10:48:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',38,3,0,'2025-10-14','10:48:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',38,4,0,'2025-10-14','10:48:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',38,5,0,'2025-10-14','10:48:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',38,6,0,'2025-10-14','10:48:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-10-15 13:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',38,7,0,'2025-10-14','12:42:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',38,8,0,'2025-10-14','13:41:00','SURG0014',0,1.00,22000,22000,'A',0,0,22000.00,0.00,0.00,22000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-15 13:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',38,9,0,'2025-10-14','13:41:00','SURG0015',0,1.00,7200,7200,'P',0,0,7200.00,0.00,0.00,7200.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-15 13:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',38,10,0,'2025-10-15','10:48:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-10-15 13:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',38,11,0,'2025-10-15','12:42:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-15 13:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,1,0,'2025-10-13','11:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,2,0,'2025-10-13','11:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,3,0,'2025-10-13','11:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,4,0,'2025-10-13','11:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,5,0,'2025-10-13','11:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,6,0,'2025-10-13','11:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,7,0,'2025-10-13','18:14:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,8,0,'2025-10-13','18:14:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,9,0,'2025-10-14','11:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,10,0,'2025-10-14','11:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,11,0,'2025-10-14','11:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,12,0,'2025-10-14','11:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,13,0,'2025-10-14','11:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,14,0,'2025-10-14','18:14:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,15,0,'2025-10-15','11:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,16,0,'2025-10-15','11:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,17,0,'2025-10-15','11:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,18,0,'2025-10-15','11:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,19,0,'2025-10-15','11:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,20,0,'2025-10-15','18:14:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,21,0,'2025-10-16','08:55:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',39,22,0,'2025-10-16','08:55:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-16 08:57:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,1,0,'2025-10-13','18:09:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,2,0,'2025-10-13','18:40:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,3,0,'2025-10-13','18:40:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,4,0,'2025-10-13','18:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,5,0,'2025-10-13','18:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,6,0,'2025-10-13','18:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,7,0,'2025-10-14','18:09:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,8,0,'2025-10-14','18:40:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'405',0,8,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,9,0,'2025-10-14','18:40:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'405',0,8,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,10,0,'2025-10-14','18:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,11,0,'2025-10-14','18:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,12,0,'2025-10-14','18:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,13,0,'2025-10-15','11:26:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,62,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,14,0,'2025-10-15','18:10:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,15,0,'2025-10-15','18:10:00','WPRC0089',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,16,0,'2025-10-15','18:40:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,17,0,'2025-10-15','18:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,18,0,'2025-10-15','18:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,19,0,'2025-10-15','18:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,20,0,'2025-10-15','18:40:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,21,0,'2025-10-16','11:20:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,22,0,'2025-10-16','11:20:00','WPRC0089',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',40,23,0,'2025-10-16','18:40:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','vishal','2025-10-16 11:48:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,1,0,'2025-10-11','11:40:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,2,0,'2025-10-11','11:40:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,5,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,3,0,'2025-10-11','11:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,4,0,'2025-10-11','11:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,5,0,'2025-10-11','11:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,6,0,'2025-10-11','11:40:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,7,0,'2025-10-11','18:50:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,8,0,'2025-10-12','11:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,9,0,'2025-10-12','11:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,10,0,'2025-10-12','11:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,11,0,'2025-10-12','11:40:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,5,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,12,0,'2025-10-12','11:40:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'305',0,5,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,13,0,'2025-10-12','18:48:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,7,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,14,0,'2025-10-12','18:48:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,15,0,'2025-10-12','18:50:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,16,0,'2025-10-12','18:54:00','WPRC0079',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,17,0,'2025-10-13','11:40:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,18,0,'2025-10-13','11:40:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,19,0,'2025-10-13','11:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,20,0,'2025-10-13','11:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,21,0,'2025-10-13','11:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,22,0,'2025-10-13','12:01:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,7,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,23,0,'2025-10-13','18:16:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,24,0,'2025-10-13','18:17:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,25,0,'2025-10-14','11:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,26,0,'2025-10-14','11:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,27,0,'2025-10-14','11:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,28,0,'2025-10-14','11:40:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,29,0,'2025-10-14','12:01:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,7,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,30,0,'2025-10-14','18:16:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,31,0,'2025-10-14','18:17:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,32,0,'2025-10-15','11:40:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,33,0,'2025-10-15','11:40:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,34,0,'2025-10-15','11:40:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,35,0,'2025-10-15','11:40:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,36,0,'2025-10-15','12:01:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,7,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,37,0,'2025-10-15','18:16:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,38,0,'2025-10-16','12:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,39,0,'2025-10-16','12:02:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',41,40,0,'2025-10-11','12:12:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',42,1,0,'2025-10-14','18:07:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',42,2,0,'2025-10-14','18:07:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',42,3,0,'2025-10-14','21:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',42,4,0,'2025-10-14','21:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',42,5,0,'2025-10-14','21:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',42,6,0,'2025-10-14','21:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',42,7,0,'2025-10-14','21:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',42,8,0,'2025-10-15','12:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',42,9,0,'2025-10-15','12:31:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',42,10,0,'2025-10-15','12:31:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',42,11,0,'2025-10-15','12:33:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',42,12,0,'2025-10-15','18:07:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',42,13,0,'2025-10-15','18:07:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',42,14,0,'2025-10-14','18:08:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',42,15,0,'2025-10-15','21:30:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',42,16,0,'2025-10-16','21:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'207',0,4,0,'',0,'','','','','','vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',42,17,0,'2025-10-16','12:34:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',42,18,0,'2025-10-15','12:35:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',43,1,0,'2025-10-15','11:25:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:55:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',43,2,0,'2025-10-15','11:25:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:55:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',43,3,0,'2025-10-15','11:25:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:55:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',43,4,0,'2025-10-15','11:25:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:55:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',43,5,0,'2025-10-15','11:25:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:55:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',43,6,0,'2025-10-15','11:25:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','riya','2025-10-16 19:55:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',43,7,0,'2025-10-15','18:28:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:55:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',43,8,0,'2025-10-15','18:29:00','SURG0014',0,1.00,17700,17700,'P',0,0,17700.00,0.00,0.00,17700.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 19:55:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',43,9,0,'2025-10-15','18:30:00','SURG0015',0,1.00,5900,5900,'P',0,0,5900.00,0.00,0.00,5900.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 19:55:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',43,10,0,'2025-10-16','11:25:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','riya','2025-10-16 19:55:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',43,11,0,'2025-10-16','18:31:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 19:55:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',44,1,0,'2025-10-15','09:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 18:51:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',44,2,0,'2025-10-15','09:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 18:51:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',44,3,0,'2025-10-15','09:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-16 18:51:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',44,4,0,'2025-10-15','09:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-16 18:51:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',44,5,0,'2025-10-15','09:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-16 18:51:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',44,6,0,'2025-10-15','09:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-10-16 18:51:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',44,7,0,'2025-10-15','09:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-10-16 18:51:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',44,8,0,'2025-10-15','18:33:00','SURG0014',0,1.00,15600,15600,'P',0,0,15600.00,0.00,0.00,15600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 18:51:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',44,9,0,'2025-10-15','18:33:00','SURG0015',0,1.00,5200,5200,'P',0,0,5200.00,0.00,0.00,5200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 18:51:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',44,10,0,'2025-10-16','18:32:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 18:51:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',44,11,0,'2025-10-16','18:32:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 18:51:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',44,12,0,'2025-10-16','18:33:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 18:51:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,1,0,'2025-10-09','18:57:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,2,0,'2025-10-09','18:57:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,3,0,'2025-10-09','18:59:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,4,0,'2025-10-09','18:59:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,5,0,'2025-10-09','18:59:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,6,0,'2025-10-09','19:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,7,0,'2025-10-09','19:00:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,8,0,'2025-10-09','19:03:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,9,0,'2025-10-09','19:04:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,10,0,'2025-10-10','14:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,11,0,'2025-10-10','14:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,12,0,'2025-10-10','14:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,13,0,'2025-10-10','14:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,14,0,'2025-10-10','14:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,15,0,'2025-10-10','18:39:00','SURG0014',0,1.00,35000,35000,'P',0,0,35000.00,0.00,0.00,35000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,16,0,'2025-10-10','18:40:00','SURG0015',0,1.00,11700,11700,'P',0,0,11700.00,0.00,0.00,11700.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,17,0,'2025-10-10','19:01:00','WPRC0086',0,2.00,200,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,18,0,'2025-10-10','19:04:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,19,0,'2025-10-10','19:05:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,20,0,'2025-10-11','14:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,21,0,'2025-10-11','14:30:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,22,0,'2025-10-11','14:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,23,0,'2025-10-11','14:30:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,24,0,'2025-10-11','14:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,25,0,'2025-10-11','19:04:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,26,0,'2025-10-11','19:05:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,27,0,'2025-10-11','19:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,28,0,'2025-10-12','14:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,29,0,'2025-10-12','14:30:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,30,0,'2025-10-12','14:30:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,31,0,'2025-10-12','14:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,32,0,'2025-10-12','14:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,33,0,'2025-10-12','19:05:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,34,0,'2025-10-12','19:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,35,0,'2025-10-13','14:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,36,0,'2025-10-13','14:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,37,0,'2025-10-13','14:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,38,0,'2025-10-13','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,39,0,'2025-10-13','14:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,40,0,'2025-10-13','17:56:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,41,0,'2025-10-13','17:57:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,42,0,'2025-10-13','17:57:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,43,0,'2025-10-14','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,44,0,'2025-10-14','14:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,45,0,'2025-10-14','14:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,46,0,'2025-10-14','14:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,47,0,'2025-10-14','14:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,48,0,'2025-10-14','17:56:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,49,0,'2025-10-15','14:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,50,0,'2025-10-15','14:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,51,0,'2025-10-15','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,52,0,'2025-10-15','14:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,53,0,'2025-10-15','14:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,54,0,'2025-10-15','17:57:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,55,0,'2025-10-15','17:58:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,56,0,'2025-10-15','18:39:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,57,0,'2025-10-16','18:37:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,58,0,'2025-10-16','18:37:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,59,0,'2025-10-16','19:52:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',46,60,0,'2025-10-16','19:52:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',47,1,0,'2025-10-15','13:25:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-17 09:31:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',47,2,0,'2025-10-15','13:23:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-17 09:31:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',47,3,0,'2025-10-15','13:23:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-17 09:31:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',47,4,0,'2025-10-15','13:23:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-17 09:31:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',47,5,0,'2025-10-15','13:23:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-17 09:31:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',47,6,0,'2025-10-15','13:23:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-17 09:31:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',47,7,0,'2025-10-15','13:23:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-10-17 09:31:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',47,8,0,'2025-10-16','13:23:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-17 09:31:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',47,9,0,'2025-10-16','13:23:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-17 09:31:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',47,10,0,'2025-10-16','13:23:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-17 09:31:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',47,11,0,'2025-10-16','13:23:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-10-17 09:31:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',47,12,0,'2025-10-16','13:23:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-10-17 09:31:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',47,13,0,'2025-10-17','13:23:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-10-17 09:31:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,1,0,'2025-10-04','16:53:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,2,0,'2025-10-04','16:53:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,3,0,'2025-10-04','16:54:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,4,0,'2025-10-04','17:07:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,5,0,'2025-10-04','17:07:00','WPRC0090',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,6,0,'2025-10-04','17:07:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,8,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,7,0,'2025-10-04','17:07:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,8,0,'2025-10-04','18:00:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'208',0,8,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,9,0,'2025-10-04','18:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,10,0,'2025-10-04','18:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,11,0,'2025-10-04','18:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,12,0,'2025-10-05','16:59:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,13,0,'2025-10-05','16:59:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,14,0,'2025-10-05','17:08:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,15,0,'2025-10-05','17:08:00','WPRC0090',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,16,0,'2025-10-05','17:08:00','WPRC0097',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,8,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,17,0,'2025-10-05','17:09:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,18,0,'2025-10-05','17:09:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,19,0,'2025-10-05','17:09:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,20,0,'2025-10-05','18:00:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'208',0,8,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,21,0,'2025-10-05','18:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,22,0,'2025-10-05','18:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,23,0,'2025-10-05','18:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,24,0,'2025-10-06','17:09:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,25,0,'2025-10-06','17:09:00','USG0091',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,26,0,'2025-10-06','17:09:00','WPRC0092',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,4,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,27,0,'2025-10-06','17:10:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,28,0,'2025-10-06','17:10:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,29,0,'2025-10-06','18:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'208',0,8,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,30,0,'2025-10-06','18:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,31,0,'2025-10-06','18:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,32,0,'2025-10-06','18:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,33,0,'2025-10-06','18:00:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'208',0,8,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,34,0,'2025-10-07','17:10:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,35,0,'2025-10-07','18:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,36,0,'2025-10-07','18:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,37,0,'2025-10-07','18:00:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'208',0,8,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,38,0,'2025-10-07','18:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,39,0,'2025-10-07','18:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'208',0,8,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,40,0,'2025-10-08','17:10:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,41,0,'2025-10-08','18:00:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'208',0,8,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,42,0,'2025-10-08','18:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'208',0,8,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,43,0,'2025-10-08','18:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,44,0,'2025-10-08','18:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,45,0,'2025-10-08','18:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,46,0,'2025-10-09','17:01:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,65,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,47,0,'2025-10-09','17:02:00','DRC0020',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,66,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,48,0,'2025-10-09','17:10:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,49,0,'2025-10-09','18:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,8,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,50,0,'2025-10-09','18:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'208',0,8,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,51,0,'2025-10-09','18:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,52,0,'2025-10-09','18:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,53,0,'2025-10-09','18:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',49,54,0,'2025-10-10','18:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'208',0,8,0,'',0,'','','','','','riya','2025-10-17 17:13:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,1,0,'2025-10-15','17:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,2,0,'2025-10-15','17:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,3,0,'2025-10-15','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,4,0,'2025-10-15','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,5,0,'2025-10-15','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,6,0,'2025-10-15','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,7,0,'2025-10-15','20:28:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,8,0,'2025-10-15','20:28:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,9,0,'2025-10-15','20:28:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,10,0,'2025-10-15','20:29:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,11,0,'2025-10-16','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,12,0,'2025-10-16','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,13,0,'2025-10-16','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,14,0,'2025-10-16','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,15,0,'2025-10-16','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,16,0,'2025-10-16','20:28:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,17,0,'2025-10-16','20:29:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,18,0,'2025-10-16','20:29:00','WPRC0089',0,8.00,100,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,19,0,'2025-10-17','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,20,0,'2025-10-17','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,21,0,'2025-10-17','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,22,0,'2025-10-17','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,23,0,'2025-10-17','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,24,0,'2025-10-17','18:25:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,25,0,'2025-10-17','18:26:00','WPRC0089',0,8.00,100,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,26,0,'2025-10-17','18:26:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,27,0,'2025-10-18','11:17:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,28,0,'2025-10-18','11:17:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,29,0,'2025-10-18','11:19:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',50,30,0,'2025-10-18','11:19:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:09:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',51,1,0,'2025-10-16','17:50:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 12:49:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',51,2,0,'2025-10-16','17:51:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 12:49:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',51,3,0,'2025-10-16','21:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 12:49:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',51,4,0,'2025-10-16','21:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 12:49:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',51,5,0,'2025-10-16','21:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 12:49:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',51,6,0,'2025-10-16','21:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 12:49:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',51,7,0,'2025-10-16','21:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 12:49:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',51,8,0,'2025-10-17','17:50:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 12:49:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',51,9,0,'2025-10-17','17:51:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 12:49:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',51,10,0,'2025-10-17','17:51:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,2,0,'',0,'','','','','','riya','2025-10-18 12:49:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',51,11,0,'2025-10-17','21:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 12:49:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',51,12,0,'2025-10-17','21:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 12:49:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',51,13,0,'2025-10-17','21:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,5,0,'',0,'','','','','','riya','2025-10-18 12:49:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',51,14,0,'2025-10-17','21:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,5,0,'',0,'','','','','','riya','2025-10-18 12:49:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',51,15,0,'2025-10-17','21:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 12:49:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',51,16,0,'2025-10-18','12:23:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 12:49:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',51,17,0,'2025-10-18','12:24:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','riya','2025-10-18 12:49:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,1,0,'2025-10-09','15:47:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,2,0,'2025-10-09','15:47:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,3,0,'2025-10-09','16:06:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,4,0,'2025-10-09','16:08:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,5,0,'2025-10-09','16:09:00','ROOM0008',0,7.00,100,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,6,0,'2025-10-09','16:09:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,7,0,'2025-10-09','16:09:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,8,0,'2025-10-09','16:09:00','WPRC0093',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,9,0,'2025-10-09','16:23:00','SURG0014',0,1.00,15000,15000,'P',0,0,15000.00,0.00,0.00,15000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,10,0,'2025-10-09','16:23:00','SURG0015',0,1.00,3750,3750,'P',0,0,3750.00,0.00,0.00,3750.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,11,0,'2025-10-09','18:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,12,0,'2025-10-09','18:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,13,0,'2025-10-09','18:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,14,0,'2025-10-09','18:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,15,0,'2025-10-10','16:07:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,16,0,'2025-10-10','16:08:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,17,0,'2025-10-10','16:10:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,18,0,'2025-10-10','16:10:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,19,0,'2025-10-10','16:11:00','WPRC0093',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,20,0,'2025-10-10','16:12:00','WPRC0092',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,39,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,21,0,'2025-10-10','18:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,22,0,'2025-10-10','18:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,23,0,'2025-10-10','18:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,24,0,'2025-10-10','18:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,25,0,'2025-10-10','18:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,26,0,'2025-10-11','16:07:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,27,0,'2025-10-11','16:07:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,28,0,'2025-10-11','16:08:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,29,0,'2025-10-11','16:08:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,30,0,'2025-10-11','16:08:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,31,0,'2025-10-11','16:09:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,32,0,'2025-10-11','16:12:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,33,0,'2025-10-11','16:12:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,34,0,'2025-10-11','16:18:00','WPRC0095',0,1.00,2800,2800,'P',0,0,2800.00,0.00,0.00,2800.00,'',0,40,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,35,0,'2025-10-11','18:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,36,0,'2025-10-11','18:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,37,0,'2025-10-11','18:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,38,0,'2025-10-11','18:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,39,0,'2025-10-11','18:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,40,0,'2025-10-12','11:20:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,41,0,'2025-10-12','12:16:00','WPRC0093',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,42,0,'2025-10-12','12:16:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,43,0,'2025-10-12','12:18:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,44,0,'2025-10-12','16:07:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,45,0,'2025-10-12','16:09:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,46,0,'2025-10-12','16:18:00','ROOM0008',0,6.00,100,600,'A',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,47,0,'2025-10-12','18:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,48,0,'2025-10-12','18:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,49,0,'2025-10-12','18:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,50,0,'2025-10-12','18:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,51,0,'2025-10-12','18:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,52,0,'2025-10-13','11:20:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,53,0,'2025-10-13','11:22:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,38,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,54,0,'2025-10-13','12:16:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,55,0,'2025-10-13','12:16:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,56,0,'2025-10-13','12:17:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,57,0,'2025-10-13','12:17:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,58,0,'2025-10-13','12:18:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,59,0,'2025-10-13','18:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,60,0,'2025-10-13','18:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,61,0,'2025-10-13','18:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,62,0,'2025-10-13','18:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,63,0,'2025-10-13','18:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,64,0,'2025-10-13','20:00:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,65,0,'2025-10-14','11:00:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,66,0,'2025-10-14','11:21:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,67,0,'2025-10-14','11:21:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,68,0,'2025-10-14','11:23:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,69,0,'2025-10-14','11:23:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,70,0,'2025-10-14','11:24:00','ROOM0004',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,71,0,'2025-10-14','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'310',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,72,0,'2025-10-14','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'310',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,73,0,'2025-10-14','18:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,74,0,'2025-10-14','18:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,75,0,'2025-10-14','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'310',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,76,0,'2025-10-14','19:23:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,77,0,'2025-10-14','19:59:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,78,0,'2025-10-15','18:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,79,0,'2025-10-15','18:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,80,0,'2025-10-15','18:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,81,0,'2025-10-15','18:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,82,0,'2025-10-15','18:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,83,0,'2025-10-15','19:23:00','ROOM0008',0,7.00,100,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,84,0,'2025-10-15','19:24:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,85,0,'2025-10-15','19:24:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,86,0,'2025-10-15','19:25:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,87,0,'2025-10-15','19:29:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,88,0,'2025-10-15','19:30:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,89,0,'2025-10-15','20:00:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,90,0,'2025-10-15','20:01:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,91,0,'2025-10-16','10:50:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,92,0,'2025-10-16','12:09:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,93,0,'2025-10-16','17:30:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,94,0,'2025-10-16','17:30:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,95,0,'2025-10-16','18:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,96,0,'2025-10-16','18:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,97,0,'2025-10-16','18:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,98,0,'2025-10-16','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,99,0,'2025-10-16','21:12:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,100,0,'2025-10-16','21:13:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,101,0,'2025-10-16','21:13:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,102,0,'2025-10-16','21:14:00','ROOM0008',0,9.00,100,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,103,0,'2025-10-17','17:28:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,104,0,'2025-10-17','17:29:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,105,0,'2025-10-17','17:30:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,106,0,'2025-10-17','17:30:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,107,0,'2025-10-17','17:31:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,108,0,'2025-10-17','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,109,0,'2025-10-17','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,110,0,'2025-10-17','18:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,111,0,'2025-10-17','18:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,112,0,'2025-10-17','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,113,0,'2025-10-18','11:01:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,114,0,'2025-10-18','11:05:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,115,0,'2025-10-18','12:30:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',53,116,0,'2025-10-18','13:26:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:50:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,1,0,'2025-10-09','14:22:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,2,0,'2025-10-09','14:22:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,3,0,'2025-10-09','14:23:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,4,0,'2025-10-09','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,5,0,'2025-10-09','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,6,0,'2025-10-09','15:09:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,7,0,'2025-10-09','15:09:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,8,0,'2025-10-10','14:36:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,9,0,'2025-10-10','15:05:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,10,0,'2025-10-10','15:05:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,11,0,'2025-10-10','15:06:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,12,0,'2025-10-10','15:06:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,13,0,'2025-10-10','15:08:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,14,0,'2025-10-10','15:09:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,15,0,'2025-10-10','15:10:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,16,0,'2025-10-10','15:10:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,17,0,'2025-10-10','15:11:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,18,0,'2025-10-10','15:11:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,19,0,'2025-10-10','15:12:00','WPRC0091',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,20,0,'2025-10-10','15:14:00','WPRC0092',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,39,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,21,0,'2025-10-10','15:18:00','SURG0014',0,1.00,70000,70000,'P',0,0,70000.00,0.00,0.00,70000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,22,0,'2025-10-10','15:18:00','SURG0015',0,1.00,17500,17500,'P',0,0,17500.00,0.00,0.00,17500.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,23,0,'2025-10-10','23:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,24,0,'2025-10-10','23:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,25,0,'2025-10-10','23:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,26,0,'2025-10-11','14:36:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,27,0,'2025-10-11','14:45:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,28,0,'2025-10-11','15:06:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,29,0,'2025-10-11','15:06:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,30,0,'2025-10-11','15:08:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,31,0,'2025-10-11','15:08:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,32,0,'2025-10-11','15:16:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,33,0,'2025-10-11','15:16:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,34,0,'2025-10-11','15:17:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,35,0,'2025-10-11','23:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,36,0,'2025-10-11','23:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,37,0,'2025-10-11','23:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,38,0,'2025-10-11','23:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,39,0,'2025-10-11','23:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,36,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,40,0,'2025-10-12','11:31:00','WPRC0077',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,41,0,'2025-10-12','14:36:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,42,0,'2025-10-12','14:45:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,43,0,'2025-10-12','15:06:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,44,0,'2025-10-12','15:06:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,45,0,'2025-10-12','15:08:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,46,0,'2025-10-12','15:08:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,47,0,'2025-10-12','15:17:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,48,0,'2025-10-12','23:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,49,0,'2025-10-12','23:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,50,0,'2025-10-12','23:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,51,0,'2025-10-12','23:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,52,0,'2025-10-12','23:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,53,0,'2025-10-13','10:54:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,54,0,'2025-10-13','10:54:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,55,0,'2025-10-13','10:56:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,56,0,'2025-10-13','10:56:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,57,0,'2025-10-13','11:31:00','WPRC0077',0,3.00,500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,58,0,'2025-10-13','14:36:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,59,0,'2025-10-13','14:46:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,60,0,'2025-10-13','14:46:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,61,0,'2025-10-13','23:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,62,0,'2025-10-13','23:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,63,0,'2025-10-13','23:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,64,0,'2025-10-13','23:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,65,0,'2025-10-13','23:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,66,0,'2025-10-14','11:32:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,67,0,'2025-10-14','11:32:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,68,0,'2025-10-14','11:33:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,69,0,'2025-10-14','11:50:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,70,0,'2025-10-14','11:50:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,71,0,'2025-10-14','14:26:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,72,0,'2025-10-14','14:27:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,73,0,'2025-10-14','14:27:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,74,0,'2025-10-14','14:36:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,75,0,'2025-10-14','14:46:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,76,0,'2025-10-14','14:46:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,77,0,'2025-10-14','18:01:00','WPRC0077',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,78,0,'2025-10-14','23:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,79,0,'2025-10-14','23:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,80,0,'2025-10-15','18:00:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,81,0,'2025-10-15','18:01:00','WPRC0077',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,82,0,'2025-10-15','18:05:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,83,0,'2025-10-15','18:05:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,84,0,'2025-10-15','23:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,85,0,'2025-10-15','23:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,86,0,'2025-10-15','23:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,87,0,'2025-10-15','23:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,88,0,'2025-10-15','23:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,89,0,'2025-10-16','20:17:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,90,0,'2025-10-16','20:17:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,91,0,'2025-10-16','20:17:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,92,0,'2025-10-16','20:17:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,93,0,'2025-10-16','23:00:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,94,0,'2025-10-16','23:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,95,0,'2025-10-16','23:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,96,0,'2025-10-16','23:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,97,0,'2025-10-16','23:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,98,0,'2025-10-17','14:30:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,99,0,'2025-10-17','14:31:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,100,0,'2025-10-17','14:31:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,101,0,'2025-10-17','14:34:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,102,0,'2025-10-17','23:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,103,0,'2025-10-17','23:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,104,0,'2025-10-17','23:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,105,0,'2025-10-17','23:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,106,0,'2025-10-17','23:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',54,107,0,'2025-10-18','11:34:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:28:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,1,0,'2025-10-15','18:11:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,5,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,2,0,'2025-10-15','18:11:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,3,0,'2025-10-15','18:11:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,4,0,'2025-10-15','18:12:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,5,0,'2025-10-15','22:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,6,0,'2025-10-15','22:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,7,0,'2025-10-15','22:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,8,0,'2025-10-15','22:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,9,0,'2025-10-15','22:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,10,0,'2025-10-16','18:13:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,11,0,'2025-10-16','18:13:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,12,0,'2025-10-16','18:14:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,13,0,'2025-10-16','18:14:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,14,0,'2025-10-16','18:16:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,15,0,'2025-10-16','22:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,16,0,'2025-10-16','22:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,17,0,'2025-10-16','22:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,18,0,'2025-10-16','22:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,19,0,'2025-10-16','22:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,20,0,'2025-10-17','14:09:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,21,0,'2025-10-17','14:09:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,22,0,'2025-10-17','18:14:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,23,0,'2025-10-17','18:15:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,24,0,'2025-10-17','18:15:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,25,0,'2025-10-17','22:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,26,0,'2025-10-17','22:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,27,0,'2025-10-17','22:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,28,0,'2025-10-17','22:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,29,0,'2025-10-17','22:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,30,0,'2025-10-18','10:25:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,31,0,'2025-10-18','14:08:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,32,0,'2025-10-18','14:08:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,33,0,'2025-10-18','14:08:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,34,0,'2025-10-18','14:09:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,35,0,'2025-10-18','14:09:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',55,36,0,'2025-10-18','14:10:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','riya','2025-10-18 14:21:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',56,1,0,'2025-10-17','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 16:10:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',56,2,0,'2025-10-17','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 16:10:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',56,3,0,'2025-10-17','13:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-18 16:10:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',56,4,0,'2025-10-17','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-18 16:10:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',56,5,0,'2025-10-17','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-18 16:10:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',56,6,0,'2025-10-17','13:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','riya','2025-10-18 16:10:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',56,7,0,'2025-10-17','15:57:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 16:10:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',56,8,0,'2025-10-17','15:58:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 16:10:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',56,9,0,'2025-10-17','16:01:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 16:10:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',56,10,0,'2025-10-18','13:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','riya','2025-10-18 16:10:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,1,0,'2025-10-16','13:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,2,0,'2025-10-16','13:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,3,0,'2025-10-16','13:50:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,4,0,'2025-10-16','13:50:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,5,0,'2025-10-16','13:50:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,6,0,'2025-10-16','13:50:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,7,0,'2025-10-16','18:28:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,8,0,'2025-10-16','18:28:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,9,0,'2025-10-16','18:29:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,10,0,'2025-10-17','13:50:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,11,0,'2025-10-17','13:50:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,12,0,'2025-10-17','13:50:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,13,0,'2025-10-17','13:50:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,14,0,'2025-10-17','13:50:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,15,0,'2025-10-17','18:29:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,16,0,'2025-10-17','18:29:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,17,0,'2025-10-18','13:50:00','ROOM0009',0,0.50,5500,2750,'A',0,0,2750.00,0.00,0.00,2750.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,18,0,'2025-10-18','13:50:00','AECO0008',0,0.50,800,400,'A',0,0,400.00,0.00,0.00,400.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,19,0,'2025-10-18','13:50:00','CARE0001',0,0.50,600,300,'A',0,0,300.00,0.00,0.00,300.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,20,0,'2025-10-18','13:50:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,21,0,'2025-10-18','16:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,22,0,'2025-10-18','16:07:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',57,23,0,'2025-10-18','16:51:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','riya','2025-10-18 17:10:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',59,1,0,'2025-10-18','20:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 22:04:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',59,2,0,'2025-10-18','20:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 22:04:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',59,3,0,'2025-10-18','21:59:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,8,0,'',0,'','','','','','riya','2025-10-18 22:04:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',59,4,0,'2025-10-18','21:59:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 22:04:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',59,5,0,'2025-10-18','21:59:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 22:04:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',59,6,0,'2025-10-18','22:00:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 22:04:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',59,7,0,'2025-10-18','22:00:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 22:04:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',60,1,0,'2025-10-18','17:27:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',60,2,0,'2025-10-18','17:27:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',60,3,0,'2025-10-18','17:27:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',60,4,0,'2025-10-18','17:27:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',60,5,0,'2025-10-18','17:27:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',60,6,0,'2025-10-18','17:27:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,6,0,'',0,'','','','','','vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',60,7,0,'2025-10-19','17:27:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,6,0,'',0,'','','','','','vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',60,8,0,'2025-10-19','11:00:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',60,9,0,'2025-10-18','11:01:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',60,10,0,'2025-10-18','11:01:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',60,11,0,'2025-10-19','11:15:00','WPRC0099',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',60,12,0,'2025-10-19','11:20:00','SURG0014',0,1.00,13500,13500,'P',0,0,13500.00,0.00,0.00,13500.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',60,13,0,'2025-10-18','11:20:00','SURG0015',0,1.00,4400,4400,'P',0,0,4400.00,0.00,0.00,4400.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',61,1,0,'2025-10-18','11:44:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:46:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',61,2,0,'2025-10-18','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:46:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',61,3,0,'2025-10-18','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:46:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',61,4,0,'2025-10-18','15:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:46:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',61,5,0,'2025-10-18','15:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:46:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',61,6,0,'2025-10-18','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:46:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',61,7,0,'2025-10-18','15:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-10-19 11:46:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',61,8,0,'2025-10-19','11:44:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-19 11:46:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',61,9,0,'2025-10-18','11:45:00','SURG0014',0,1.00,38800,38800,'P',0,0,38800.00,0.00,0.00,38800.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-19 11:46:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',61,10,0,'2025-10-18','11:45:00','SURG0015',0,1.00,13000,13000,'P',0,0,13000.00,0.00,0.00,13000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-19 11:46:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',62,1,0,'2025-10-18','12:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 13:23:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',62,2,0,'2025-10-18','12:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 13:23:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',62,3,0,'2025-10-18','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,3,0,'',0,'','','','','','vishal','2025-10-19 13:23:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',62,4,0,'2025-10-18','18:13:00','CARE0007',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 13:23:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',62,5,0,'2025-10-18','18:14:00','SURG0015',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-19 13:23:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',62,6,0,'2025-10-18','18:15:00','SURG0014',0,1.00,2660,2660,'P',0,0,2660.00,0.00,0.00,2660.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-19 13:23:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,1,0,'2025-10-18','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,2,0,'2025-10-18','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,3,0,'2025-10-18','09:30:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'409',0,70,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,4,0,'2025-10-18','11:27:00','SURG0017',0,1.00,30000,30000,'P',0,0,30000.00,0.00,0.00,30000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,5,0,'2025-10-18','11:28:00','SURG0015',0,1.00,15000,15000,'P',0,0,15000.00,0.00,0.00,15000.00,'',0,70,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,6,0,'2025-10-18','11:31:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,7,0,'2025-10-18','11:31:00','ROOM0001',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,8,0,'2025-10-18','11:31:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,9,0,'2025-10-18','11:32:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,10,0,'2025-10-18','11:33:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,11,0,'2025-10-18','11:33:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,70,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,12,0,'2025-10-18','11:34:00','WPRC0086',0,4.00,200,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,13,0,'2025-10-18','11:34:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,14,0,'2025-10-18','11:50:00','SURG0014',0,1.00,30000,30000,'P',0,0,30000.00,0.00,0.00,30000.00,'',0,70,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,15,0,'2025-10-19','09:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'409',0,70,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,16,0,'2025-10-19','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,17,0,'2025-10-19','09:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,18,0,'2025-10-19','09:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,19,0,'2025-10-19','11:33:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,20,0,'2025-10-20','09:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'409',0,70,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',63,21,0,'2025-10-20','11:23:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:19:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,1,0,'2025-10-15','10:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,2,0,'2025-10-15','10:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,3,0,'2025-10-15','10:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,4,0,'2025-10-15','10:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,5,0,'2025-10-15','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,6,0,'2025-10-16','10:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,7,0,'2025-10-16','10:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,8,0,'2025-10-16','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,9,0,'2025-10-16','10:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,10,0,'2025-10-16','10:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,11,0,'2025-10-16','18:04:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,12,0,'2025-10-16','18:31:00','WPRC0100',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,13,0,'2025-10-17','10:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,14,0,'2025-10-17','10:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,15,0,'2025-10-17','10:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,16,0,'2025-10-17','10:30:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,17,0,'2025-10-17','10:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,18,0,'2025-10-17','17:57:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,19,0,'2025-10-17','18:05:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,20,0,'2025-10-18','10:11:00','XRY0045',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,21,0,'2025-10-18','18:30:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,22,0,'2025-10-18','18:30:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,8,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,23,0,'2025-10-18','18:33:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,24,0,'2025-10-18','22:30:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,25,0,'2025-10-18','22:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,26,0,'2025-10-18','22:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,27,0,'2025-10-18','22:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,28,0,'2025-10-19','11:35:00','WPRC0102',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,29,0,'2025-10-19','18:34:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,30,0,'2025-10-19','22:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,31,0,'2025-10-19','22:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,32,0,'2025-10-19','22:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,33,0,'2025-10-19','22:30:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,34,0,'2025-10-19','22:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,35,0,'2025-10-20','11:34:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',64,36,0,'2025-10-20','11:34:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:37:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',65,1,0,'2025-10-20','05:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-21 15:13:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',65,2,0,'2025-10-20','05:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-21 15:13:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',65,3,0,'2025-10-20','05:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-21 15:13:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',65,4,0,'2025-10-20','05:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-21 15:13:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',65,5,0,'2025-10-20','05:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-21 15:13:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',65,6,0,'2025-10-20','15:11:00','ROOM0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-21 15:13:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',65,7,0,'2025-10-20','15:12:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-21 15:13:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',65,8,0,'2025-10-21','05:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','vishal','2025-10-21 15:13:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',65,9,0,'2025-10-21','15:12:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-21 15:13:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,1,0,'2025-10-17','14:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,2,0,'2025-10-17','14:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,3,0,'2025-10-17','14:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,4,0,'2025-10-17','14:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,5,0,'2025-10-17','14:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,6,0,'2025-10-17','14:00:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'409',0,8,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,7,0,'2025-10-17','18:15:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,8,0,'2025-10-18','14:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,9,0,'2025-10-18','14:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,10,0,'2025-10-18','14:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'410',0,8,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,11,0,'2025-10-18','14:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'410',0,8,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,12,0,'2025-10-18','14:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,13,0,'2025-10-18','18:15:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,14,0,'2025-10-19','14:00:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,15,0,'2025-10-19','14:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,16,0,'2025-10-19','14:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'410',0,8,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,17,0,'2025-10-19','14:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'410',0,8,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,18,0,'2025-10-19','14:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,19,0,'2025-10-19','18:16:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,20,0,'2025-10-20','10:56:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,21,0,'2025-10-20','10:57:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,22,0,'2025-10-20','14:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,23,0,'2025-10-20','14:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'410',0,8,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,24,0,'2025-10-20','14:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,25,0,'2025-10-20','14:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,26,0,'2025-10-21','10:56:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,27,0,'2025-10-21','10:57:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,28,0,'2025-10-21','14:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,29,0,'2025-10-21','14:00:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,30,0,'2025-10-21','14:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,31,0,'2025-10-21','14:00:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'410',0,8,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,32,0,'2025-10-22','10:56:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,8,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',66,33,0,'2025-10-22','10:57:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 10:59:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,1,0,'2025-10-17','13:04:00','ROOM0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,2,0,'2025-10-17','18:10:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,3,0,'2025-10-17','20:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,4,0,'2025-10-17','20:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,5,0,'2025-10-17','20:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,6,0,'2025-10-17','20:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,7,0,'2025-10-17','20:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,8,0,'2025-10-18','18:12:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,8,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,9,0,'2025-10-18','20:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,10,0,'2025-10-18','20:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,11,0,'2025-10-18','20:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,12,0,'2025-10-18','20:50:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,13,0,'2025-10-19','20:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,14,0,'2025-10-19','20:50:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,15,0,'2025-10-19','20:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,16,0,'2025-10-19','20:50:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,17,0,'2025-10-19','20:50:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,18,0,'2025-10-20','20:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,19,0,'2025-10-20','20:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,20,0,'2025-10-20','20:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,21,0,'2025-10-20','20:50:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,22,0,'2025-10-20','20:50:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,23,0,'2025-10-21','20:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,24,0,'2025-10-21','20:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,25,0,'2025-10-21','20:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,26,0,'2025-10-21','20:50:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,27,0,'2025-10-21','20:50:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',67,28,0,'2025-10-22','13:10:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,8,0,'',0,'','','','','','vishal','2025-10-22 13:27:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,1,0,'2025-10-19','02:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,2,0,'2025-10-19','02:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,3,0,'2025-10-19','02:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,4,0,'2025-10-19','02:30:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'207',0,78,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,5,0,'2025-10-19','02:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,6,0,'2025-10-19','02:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,7,0,'2025-10-19','02:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,8,0,'2025-10-19','08:28:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,9,0,'2025-10-19','11:48:00','WPRC0090',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,10,0,'2025-10-19','14:25:00','ROOM0008',0,5.00,100,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,11,0,'2025-10-19','14:25:00','WPRC0103',0,1.00,5000,5000,'A',0,0,5000.00,0.00,0.00,5000.00,'',0,78,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,12,0,'2025-10-19','14:26:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,13,0,'2025-10-19','14:26:00','WPRC0104',0,1.00,6000,6000,'A',0,0,6000.00,0.00,0.00,6000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,14,0,'2025-10-19','14:27:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,15,0,'2025-10-19','14:28:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,16,0,'2025-10-20','02:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,17,0,'2025-10-20','02:30:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,18,0,'2025-10-20','02:30:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,19,0,'2025-10-20','02:30:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,20,0,'2025-10-20','02:30:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,21,0,'2025-10-20','08:21:00','WPRC0104',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,22,0,'2025-10-20','08:28:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,23,0,'2025-10-20','14:27:00','ROOM0008',0,7.00,100,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,24,0,'2025-10-20','14:27:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,25,0,'2025-10-20','14:28:00','WPRC0087',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,26,0,'2025-10-21','02:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,27,0,'2025-10-21','02:30:00','ROOM0009',0,0.50,5500,2750,'P',0,0,2750.00,0.00,0.00,2750.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,28,0,'2025-10-21','02:30:00','AECO0008',0,0.50,800,400,'P',0,0,400.00,0.00,0.00,400.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,29,0,'2025-10-21','02:30:00','CARE0001',0,0.50,600,300,'P',0,0,300.00,0.00,0.00,300.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,30,0,'2025-10-21','08:22:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,31,0,'2025-10-21','08:28:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,32,0,'2025-10-21','12:55:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,33,0,'2025-10-21','12:56:00','WPRC0087',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,34,0,'2025-10-21','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,35,0,'2025-10-21','13:01:00','ROOM0009',0,0.50,3200,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,36,0,'2025-10-21','13:02:00','CARE0005',0,0.50,400,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,37,0,'2025-10-21','13:02:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,38,0,'2025-10-22','02:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,39,0,'2025-10-22','02:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,40,0,'2025-10-22','02:30:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'406',0,8,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,41,0,'2025-10-22','02:30:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'406',0,8,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,42,0,'2025-10-22','02:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,43,0,'2025-10-22','08:20:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,44,0,'2025-10-22','08:23:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,45,0,'2025-10-22','08:24:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,46,0,'2025-10-23','02:30:00','CARE0001',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,47,0,'2025-10-23','02:30:00','AECO0008',0,0.50,400,200,'P',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,48,0,'2025-10-23','02:30:00','ROOM0009',0,0.50,3200,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,49,0,'2025-10-23','08:21:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',68,50,0,'2025-10-23','08:21:00','WPRC0104',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',69,1,0,'2025-10-07','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 12:53:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',69,2,0,'2025-10-07','13:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-23 12:53:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',69,3,0,'2025-10-07','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-23 12:53:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',69,4,0,'2025-10-07','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-23 12:53:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',69,5,0,'2025-10-08','13:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-10-23 12:53:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',69,6,0,'2025-10-07','13:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-10-23 12:53:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',69,7,0,'2025-10-07','12:53:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 12:53:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',69,8,0,'2025-10-07','12:53:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 12:53:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,1,0,'2025-10-20','08:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,2,0,'2025-10-20','08:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,3,0,'2025-10-20','08:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,4,0,'2025-10-20','08:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,5,0,'2025-10-20','08:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,6,0,'2025-10-20','08:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,7,0,'2025-10-20','08:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,8,0,'2025-10-20','12:39:00','WPRC0101',0,4.00,400,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,9,0,'2025-10-20','12:39:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,10,0,'2025-10-20','12:40:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,11,0,'2025-10-20','12:40:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,12,0,'2025-10-20','12:40:00','ROOM0008',0,9.00,100,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,13,0,'2025-10-20','12:40:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,14,0,'2025-10-20','12:40:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,15,0,'2025-10-20','19:49:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,16,0,'2025-10-20','19:50:00','WPRC0090',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,17,0,'2025-10-21','08:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,18,0,'2025-10-21','12:40:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,19,0,'2025-10-21','12:41:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,20,0,'2025-10-21','12:42:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,21,0,'2025-10-21','12:42:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,22,0,'2025-10-21','12:42:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,23,0,'2025-10-21','12:42:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,24,0,'2025-10-21','19:45:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,25,0,'2025-10-22','08:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,8,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,26,0,'2025-10-22','08:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,8,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,27,0,'2025-10-22','08:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,28,0,'2025-10-22','08:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,29,0,'2025-10-22','08:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,30,0,'2025-10-22','18:07:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,31,0,'2025-10-22','18:08:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,32,0,'2025-10-23','08:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,33,0,'2025-10-23','08:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,8,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,34,0,'2025-10-23','08:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,35,0,'2025-10-23','08:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,8,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,36,0,'2025-10-23','08:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,37,0,'2025-10-23','18:07:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',70,38,0,'2025-10-23','18:08:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:07:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',71,1,0,'2025-10-23','11:31:00','SURG0014',0,1.00,11000,11000,'P',0,0,11000.00,0.00,0.00,11000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-24 11:43:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',71,2,0,'2025-10-23','11:32:00','SURG0015',0,1.00,3500,3500,'P',0,0,3500.00,0.00,0.00,3500.00,'',0,3,0,'',0,'','','','','','riya','2025-10-24 11:43:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',71,3,0,'2025-10-23','13:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-24 11:43:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',71,4,0,'2025-10-23','13:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-24 11:43:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',71,5,0,'2025-10-23','13:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-24 11:43:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',71,6,0,'2025-10-23','13:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-24 11:43:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',71,7,0,'2025-10-23','13:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-24 11:43:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',71,8,0,'2025-10-23','13:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-10-24 11:43:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',71,9,0,'2025-10-24','13:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-10-24 11:43:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',72,1,0,'2025-10-23','11:35:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-24 12:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',72,2,0,'2025-10-23','11:35:00','SURG0014',0,1.00,14400,14400,'P',0,0,14400.00,0.00,0.00,14400.00,'',0,3,0,'',0,'','','','','','riya','2025-10-24 12:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',72,3,0,'2025-10-23','11:35:00','SURG0015',0,1.00,4800,4800,'P',0,0,4800.00,0.00,0.00,4800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-24 12:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',72,4,0,'2025-10-23','13:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-24 12:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',72,5,0,'2025-10-23','13:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-24 12:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',72,6,0,'2025-10-23','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-24 12:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',72,7,0,'2025-10-23','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-24 12:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',72,8,0,'2025-10-23','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-24 12:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',72,9,0,'2025-10-23','13:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-10-24 12:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',72,10,0,'2025-10-24','11:35:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-24 12:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',72,11,0,'2025-10-24','13:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-10-24 12:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',74,1,0,'2025-10-23','10:19:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:31:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',74,2,0,'2025-10-23','10:19:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:31:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',74,3,0,'2025-10-23','19:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:31:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',74,4,0,'2025-10-23','19:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:31:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',74,5,0,'2025-10-23','19:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:31:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',74,6,0,'2025-10-23','19:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:31:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',74,7,0,'2025-10-23','19:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:31:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',74,8,0,'2025-10-24','10:19:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:31:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',74,9,0,'2025-10-24','10:19:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:31:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',74,10,0,'2025-10-24','10:28:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-10-25 10:31:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',74,11,0,'2025-10-24','10:28:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-10-25 10:31:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',74,12,0,'2025-10-24','19:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:31:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',74,13,0,'2025-10-24','19:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:31:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',74,14,0,'2025-10-24','19:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:31:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',74,15,0,'2025-10-24','19:15:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'406',0,70,0,'',0,'','','','','','riya','2025-10-25 10:31:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',74,16,0,'2025-10-25','10:29:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-10-25 10:31:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',74,17,0,'2025-10-25','19:15:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'408',0,70,0,'',0,'','','','','','riya','2025-10-25 10:31:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,1,0,'2025-10-17','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,2,0,'2025-10-17','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,3,0,'2025-10-17','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,4,0,'2025-10-17','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,5,0,'2025-10-17','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,6,0,'2025-10-17','15:00:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,7,0,'2025-10-17','18:19:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,8,0,'2025-10-18','15:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,9,0,'2025-10-18','15:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,10,0,'2025-10-18','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,11,0,'2025-10-18','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,12,0,'2025-10-18','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,13,0,'2025-10-18','18:19:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,14,0,'2025-10-19','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,15,0,'2025-10-19','15:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,16,0,'2025-10-19','15:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,17,0,'2025-10-19','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,18,0,'2025-10-19','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,19,0,'2025-10-19','18:19:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,20,0,'2025-10-19','18:20:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,21,0,'2025-10-19','18:20:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,22,0,'2025-10-20','11:51:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,23,0,'2025-10-20','12:00:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,24,0,'2025-10-20','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,25,0,'2025-10-20','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,26,0,'2025-10-20','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,27,0,'2025-10-20','15:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,28,0,'2025-10-21','11:51:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,29,0,'2025-10-21','12:01:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,30,0,'2025-10-21','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,31,0,'2025-10-21','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,32,0,'2025-10-21','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,33,0,'2025-10-21','15:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,34,0,'2025-10-22','11:51:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,35,0,'2025-10-22','11:54:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,36,0,'2025-10-22','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,37,0,'2025-10-22','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,38,0,'2025-10-22','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,39,0,'2025-10-22','15:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,40,0,'2025-10-22','15:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,41,0,'2025-10-23','11:52:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,42,0,'2025-10-23','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,43,0,'2025-10-23','15:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,44,0,'2025-10-23','15:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,45,0,'2025-10-23','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,46,0,'2025-10-23','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,47,0,'2025-10-24','11:52:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,48,0,'2025-10-24','15:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,49,0,'2025-10-24','15:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,50,0,'2025-10-24','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,51,0,'2025-10-24','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,52,0,'2025-10-24','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,53,0,'2025-10-25','11:52:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',75,54,0,'2025-10-25','11:58:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,8,0,'',0,'','','','','','riya','2025-10-25 14:16:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',76,1,0,'2025-10-24','14:47:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-25 12:47:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',76,2,0,'2025-10-24','14:47:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-25 12:47:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',76,3,0,'2025-10-24','17:53:00','ROOM0006',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-25 12:47:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',76,4,0,'2025-10-24','23:10:00','DRC0021',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-25 12:47:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',76,5,0,'2025-10-24','23:11:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,84,0,'',0,'','','','','','vishal','2025-10-25 12:47:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',76,6,0,'2025-10-25','12:33:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-25 12:47:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',76,7,0,'2025-10-25','12:33:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-25 12:47:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',76,8,0,'2025-10-25','12:40:00','CARE0008',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-25 12:47:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',76,9,0,'2025-10-25','12:41:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-25 12:47:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',76,10,0,'2025-10-24','12:46:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-25 12:47:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',76,11,0,'2025-10-24','12:46:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-25 12:47:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',76,12,0,'2025-10-24','12:47:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-25 12:47:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,1,0,'2025-10-21','13:03:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,2,0,'2025-10-21','13:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,3,0,'2025-10-21','13:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,4,0,'2025-10-21','13:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,5,0,'2025-10-21','13:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,6,0,'2025-10-21','13:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,7,0,'2025-10-21','13:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,8,0,'2025-10-21','17:57:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,9,0,'2025-10-22','13:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,10,0,'2025-10-22','13:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,11,0,'2025-10-22','13:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,12,0,'2025-10-22','13:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,8,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,13,0,'2025-10-22','13:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,8,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,14,0,'2025-10-22','17:57:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,15,0,'2025-10-23','13:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,8,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,16,0,'2025-10-23','13:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,8,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,17,0,'2025-10-23','13:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,18,0,'2025-10-23','13:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,19,0,'2025-10-23','13:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,20,0,'2025-10-23','17:57:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,21,0,'2025-10-24','13:01:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,22,0,'2025-10-24','13:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,23,0,'2025-10-24','13:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,24,0,'2025-10-24','13:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,25,0,'2025-10-24','13:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,8,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,26,0,'2025-10-24','13:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,8,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,27,0,'2025-10-25','13:02:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',77,28,0,'2025-10-25','13:08:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,8,0,'',0,'','','','','','riya','2025-10-25 13:46:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,1,0,'2025-10-11','12:33:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,36,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,2,0,'2025-10-11','12:34:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,7,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,3,0,'2025-10-11','12:42:00','WPRC0085',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,4,0,'2025-10-11','12:43:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,5,0,'2025-10-11','12:43:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,6,0,'2025-10-11','12:44:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,7,0,'2025-10-11','12:44:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,8,0,'2025-10-11','12:44:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,9,0,'2025-10-11','12:44:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,10,0,'2025-10-11','12:44:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,39,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,11,0,'2025-10-11','17:00:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,12,0,'2025-10-11','17:00:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,13,0,'2025-10-11','17:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,14,0,'2025-10-11','17:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,15,0,'2025-10-11','17:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,16,0,'2025-10-12','12:43:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,17,0,'2025-10-12','12:43:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,18,0,'2025-10-12','12:43:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,19,0,'2025-10-12','12:44:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,20,0,'2025-10-12','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,21,0,'2025-10-12','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,22,0,'2025-10-12','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,23,0,'2025-10-12','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,24,0,'2025-10-12','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,25,0,'2025-10-13','10:38:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,26,0,'2025-10-13','10:38:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,27,0,'2025-10-13','10:39:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,28,0,'2025-10-13','10:39:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,29,0,'2025-10-13','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,30,0,'2025-10-13','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,31,0,'2025-10-13','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,32,0,'2025-10-13','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,33,0,'2025-10-13','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,34,0,'2025-10-13','17:59:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,35,0,'2025-10-14','14:38:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,36,0,'2025-10-14','14:38:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,37,0,'2025-10-14','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,38,0,'2025-10-14','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,39,0,'2025-10-14','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,40,0,'2025-10-14','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,41,0,'2025-10-14','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,42,0,'2025-10-14','19:12:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,43,0,'2025-10-14','20:56:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,44,0,'2025-10-14','20:57:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,45,0,'2025-10-15','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,46,0,'2025-10-15','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,47,0,'2025-10-15','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,48,0,'2025-10-15','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,49,0,'2025-10-15','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,50,0,'2025-10-15','19:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,51,0,'2025-10-15','19:07:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,52,0,'2025-10-15','19:13:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,53,0,'2025-10-15','20:56:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,54,0,'2025-10-16','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,55,0,'2025-10-16','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,56,0,'2025-10-16','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,57,0,'2025-10-16','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,58,0,'2025-10-16','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,59,0,'2025-10-16','20:55:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,60,0,'2025-10-16','20:55:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,61,0,'2025-10-16','20:56:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,62,0,'2025-10-16','20:57:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,63,0,'2025-10-17','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,64,0,'2025-10-17','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,65,0,'2025-10-17','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,66,0,'2025-10-17','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,67,0,'2025-10-17','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,68,0,'2025-10-17','17:56:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,69,0,'2025-10-17','18:00:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,70,0,'2025-10-17','18:01:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,71,0,'2025-10-17','18:01:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,72,0,'2025-10-17','18:01:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,73,0,'2025-10-18','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,74,0,'2025-10-18','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,75,0,'2025-10-18','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,76,0,'2025-10-18','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,77,0,'2025-10-18','17:55:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,78,0,'2025-10-18','17:55:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,79,0,'2025-10-18','17:55:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,80,0,'2025-10-18','17:56:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,81,0,'2025-10-18','18:45:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,8,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,82,0,'2025-10-19','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,83,0,'2025-10-19','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,84,0,'2025-10-19','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,85,0,'2025-10-19','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,86,0,'2025-10-19','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,87,0,'2025-10-19','18:43:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,88,0,'2025-10-19','18:45:00','WPRC0089',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,89,0,'2025-10-19','18:45:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,90,0,'2025-10-19','18:45:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,91,0,'2025-10-20','13:28:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,92,0,'2025-10-20','14:40:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,93,0,'2025-10-20','14:40:00','WPRC0089',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,94,0,'2025-10-20','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,95,0,'2025-10-20','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,96,0,'2025-10-20','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,97,0,'2025-10-20','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,98,0,'2025-10-20','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,99,0,'2025-10-21','13:27:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,100,0,'2025-10-21','13:28:00','WPRC0089',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,101,0,'2025-10-21','13:28:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,102,0,'2025-10-21','14:40:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,103,0,'2025-10-21','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,104,0,'2025-10-21','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,105,0,'2025-10-21','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,106,0,'2025-10-21','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,107,0,'2025-10-21','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,108,0,'2025-10-22','13:28:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,109,0,'2025-10-22','17:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,110,0,'2025-10-22','17:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,111,0,'2025-10-22','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,112,0,'2025-10-22','17:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,8,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,113,0,'2025-10-22','17:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,8,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,114,0,'2025-10-22','18:01:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,115,0,'2025-10-22','18:02:00','WPRC0089',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,116,0,'2025-10-22','18:03:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,117,0,'2025-10-23','14:42:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,118,0,'2025-10-23','17:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,119,0,'2025-10-23','17:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,120,0,'2025-10-23','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,121,0,'2025-10-23','17:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,8,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,122,0,'2025-10-23','17:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,8,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,123,0,'2025-10-23','18:01:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,124,0,'2025-10-23','18:02:00','WPRC0089',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,125,0,'2025-10-23','18:03:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,126,0,'2025-10-24','14:40:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,127,0,'2025-10-24','14:40:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,128,0,'2025-10-24','14:42:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,129,0,'2025-10-24','17:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,130,0,'2025-10-24','17:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,131,0,'2025-10-24','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,132,0,'2025-10-24','17:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,8,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,133,0,'2025-10-24','17:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,8,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,134,0,'2025-10-25','14:40:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,135,0,'2025-10-25','14:41:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,136,0,'2025-10-25','14:41:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,137,0,'2025-10-25','17:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,138,0,'2025-10-25','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,139,0,'2025-10-25','17:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,8,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,140,0,'2025-10-25','17:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,8,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',78,141,0,'2025-10-25','17:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 19:40:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,1,0,'2025-10-24','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,2,0,'2025-10-24','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,3,0,'2025-10-24','09:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,4,0,'2025-10-24','09:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,5,0,'2025-10-24','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,6,0,'2025-10-24','09:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,7,0,'2025-10-24','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,8,0,'2025-10-24','10:20:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,9,0,'2025-10-24','10:20:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,10,0,'2025-10-24','10:20:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,11,0,'2025-10-25','09:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,12,0,'2025-10-25','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,3,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,13,0,'2025-10-25','09:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,3,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,14,0,'2025-10-25','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,15,0,'2025-10-25','09:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,16,0,'2025-10-26','10:20:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,17,0,'2025-10-26','10:21:00','ROOM0005',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,18,0,'2025-10-24','17:32:00','SURG0014',0,1.00,0,0,'P',0,0,0.00,0.00,0.00,0.00,'',0,3,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',79,19,0,'2025-10-24','17:32:00','SURG0015',0,1.00,0,0,'P',0,0,0.00,0.00,0.00,0.00,'',0,3,0,'',0,'','','','','','riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',80,1,0,'2025-10-24','13:58:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-26 12:37:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',80,2,0,'2025-10-24','19:18:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-26 12:37:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',80,3,0,'2025-10-24','19:18:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-26 12:37:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',80,4,0,'2025-10-24','19:18:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-26 12:37:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',80,5,0,'2025-10-24','19:18:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-26 12:37:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',80,6,0,'2025-10-24','19:18:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-26 12:37:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',80,7,0,'2025-10-24','19:18:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,8,0,'',0,'','','','','','riya','2025-10-26 12:37:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',80,8,0,'2025-10-25','19:18:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-26 12:37:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',80,9,0,'2025-10-25','19:18:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-26 12:37:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',80,10,0,'2025-10-25','19:18:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-26 12:37:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',80,11,0,'2025-10-25','19:18:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,8,0,'',0,'','','','','','riya','2025-10-26 12:37:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',80,12,0,'2025-10-25','19:18:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,8,0,'',0,'','','','','','riya','2025-10-26 12:37:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',80,13,0,'2025-10-26','12:31:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,8,0,'',0,'','','','','','riya','2025-10-26 12:37:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',81,1,0,'2025-10-26','11:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 12:39:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',81,2,0,'2025-10-26','11:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 12:39:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',81,3,0,'2025-10-26','11:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-27 12:39:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',81,4,0,'2025-10-26','11:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-27 12:39:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',81,5,0,'2025-10-26','11:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-27 12:39:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',81,6,0,'2025-10-26','11:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,5,0,'',0,'','','','','','riya','2025-10-27 12:39:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',81,7,0,'2025-10-26','11:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 12:39:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',81,8,0,'2025-10-26','11:55:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 12:39:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',81,9,0,'2025-10-26','11:58:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 12:39:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',81,10,0,'2025-10-26','11:58:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 12:39:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',81,11,0,'2025-10-27','11:55:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','riya','2025-10-27 12:39:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',81,12,0,'2025-10-26','12:37:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','riya','2025-10-27 12:39:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,1,0,'2025-10-25','13:15:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,2,0,'2025-10-25','13:15:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,3,0,'2025-10-25','13:16:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,4,0,'2025-10-25','22:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,5,0,'2025-10-25','22:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,6,0,'2025-10-25','22:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,7,0,'2025-10-25','22:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,8,0,'2025-10-25','22:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,9,0,'2025-10-25','23:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,5,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,10,0,'2025-10-26','13:15:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,11,0,'2025-10-26','13:16:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,12,0,'2025-10-26','13:16:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,13,0,'2025-10-26','23:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'408',0,5,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,14,0,'2025-10-26','23:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'408',0,5,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,15,0,'2025-10-26','23:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,16,0,'2025-10-26','23:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,17,0,'2025-10-26','23:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,18,0,'2025-10-27','13:16:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',82,19,0,'2025-10-27','22:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'209',0,5,0,'',0,'','','','','','riya','2025-10-27 13:53:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,1,0,'2025-10-25','09:37:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,2,0,'2025-10-25','09:37:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,3,0,'2025-10-25','09:37:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,4,0,'2025-10-25','09:37:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,5,0,'2025-10-25','09:37:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,6,0,'2025-10-25','09:37:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,7,0,'2025-10-25','09:37:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,8,0,'2025-10-25','15:19:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,9,0,'2025-10-25','15:19:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,10,0,'2025-10-25','15:21:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,11,0,'2025-10-26','09:37:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,12,0,'2025-10-26','09:37:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,13,0,'2025-10-26','09:37:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,14,0,'2025-10-26','09:37:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,15,0,'2025-10-26','09:37:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,16,0,'2025-10-27','15:19:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,17,0,'2025-10-27','15:21:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,18,0,'2025-10-25','17:19:00','SURG0014',0,1.00,0,0,'P',0,0,0.00,0.00,0.00,0.00,'',0,3,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',83,19,0,'2025-10-25','17:19:00','SURG0015',0,1.00,0,0,'P',0,0,0.00,0.00,0.00,0.00,'',0,3,0,'',0,'','','','','','riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',84,1,0,'2025-10-27','09:57:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 16:44:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',84,2,0,'2025-10-27','09:57:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 16:44:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',84,3,0,'2025-10-27','09:57:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-27 16:44:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',84,4,0,'2025-10-27','09:57:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-27 16:44:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',84,5,0,'2025-10-27','09:57:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-27 16:44:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',84,6,0,'2025-10-27','09:57:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-10-27 16:44:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',84,7,0,'2025-10-27','16:34:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 16:44:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',84,8,0,'2025-10-27','16:34:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 16:44:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',84,9,0,'2025-10-27','16:34:00','SURG0015',0,1.00,11200,11200,'P',0,0,11200.00,0.00,0.00,11200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-27 16:44:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',84,10,0,'2025-10-27','16:35:00','SURG0014',0,1.00,3700,3700,'P',0,0,3700.00,0.00,0.00,3700.00,'',0,3,0,'',0,'','','','','','riya','2025-10-27 16:44:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,1,0,'2025-10-24','13:56:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,2,0,'2025-10-24','19:47:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,3,0,'2025-10-24','19:47:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,4,0,'2025-10-24','19:47:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,5,0,'2025-10-24','19:47:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,6,0,'2025-10-24','19:47:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,7,0,'2025-10-25','13:57:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,37,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,8,0,'2025-10-25','18:25:00','USG0094',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,5,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,9,0,'2025-10-25','19:47:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,10,0,'2025-10-25','19:47:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,11,0,'2025-10-25','19:47:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,12,0,'2025-10-25','19:47:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,13,0,'2025-10-25','19:47:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,14,0,'2025-10-26','19:47:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,15,0,'2025-10-26','19:47:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,16,0,'2025-10-26','19:47:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,17,0,'2025-10-26','19:47:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,18,0,'2025-10-26','19:47:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,19,0,'2025-10-27','19:47:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',85,20,0,'2025-10-27','19:47:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-10-27 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',86,1,0,'2025-10-09','09:30:00','REG0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-27 19:42:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',86,2,0,'2025-10-09','09:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-27 19:42:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',86,3,0,'2025-10-09','09:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-27 19:42:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',86,4,0,'2025-10-09','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-27 19:42:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',86,5,0,'2025-10-09','09:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','vishal','2025-10-27 19:42:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',86,6,0,'2025-10-09','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','vishal','2025-10-27 19:42:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',87,1,0,'2025-10-26','12:17:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-27 21:25:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',87,2,0,'2025-10-26','12:17:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-27 21:25:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',87,3,0,'2025-10-26','12:17:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-27 21:25:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',87,4,0,'2025-10-26','12:17:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-27 21:25:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',87,5,0,'2025-10-26','12:17:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-27 21:25:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',87,6,0,'2025-10-26','12:17:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,8,0,'',0,'','','','','','vishal','2025-10-27 21:25:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',87,7,0,'2025-10-26','21:19:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-27 21:25:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',87,8,0,'2025-10-27','12:17:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-27 21:25:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',87,9,0,'2025-10-27','12:17:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-27 21:25:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',87,10,0,'2025-10-27','12:17:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-27 21:25:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',87,11,0,'2025-10-27','12:17:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-10-27 21:25:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',87,12,0,'2025-10-27','12:17:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-10-27 21:25:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,1,0,'2025-10-19','10:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,2,0,'2025-10-19','10:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,3,0,'2025-10-19','10:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,4,0,'2025-10-19','10:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,5,0,'2025-10-19','10:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,6,0,'2025-10-19','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,7,0,'2025-10-19','10:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,8,0,'2025-10-19','11:51:00','WPRC0090',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,9,0,'2025-10-19','12:08:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,10,0,'2025-10-19','14:29:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,7,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,11,0,'2025-10-19','14:30:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,12,0,'2025-10-19','14:30:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,13,0,'2025-10-19','14:30:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,14,0,'2025-10-20','10:15:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,15,0,'2025-10-20','10:15:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,16,0,'2025-10-20','10:15:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,17,0,'2025-10-20','10:15:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,18,0,'2025-10-20','10:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,19,0,'2025-10-20','14:30:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,20,0,'2025-10-20','14:30:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,21,0,'2025-10-21','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,22,0,'2025-10-21','12:45:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,23,0,'2025-10-21','12:45:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,24,0,'2025-10-21','12:45:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,25,0,'2025-10-21','12:46:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,26,0,'2025-10-21','12:46:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,27,0,'2025-10-22','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,28,0,'2025-10-22','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,29,0,'2025-10-22','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,30,0,'2025-10-22','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,31,0,'2025-10-22','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,32,0,'2025-10-22','14:01:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,33,0,'2025-10-23','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,34,0,'2025-10-23','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,35,0,'2025-10-23','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,36,0,'2025-10-23','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,37,0,'2025-10-23','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,38,0,'2025-10-23','14:01:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,39,0,'2025-10-23','14:06:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,40,0,'2025-10-24','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,41,0,'2025-10-24','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,42,0,'2025-10-24','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,43,0,'2025-10-24','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,44,0,'2025-10-24','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,45,0,'2025-10-24','14:02:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,46,0,'2025-10-24','14:07:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,47,0,'2025-10-25','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,48,0,'2025-10-25','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,49,0,'2025-10-25','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,50,0,'2025-10-25','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,51,0,'2025-10-25','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,52,0,'2025-10-25','14:02:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,53,0,'2025-10-25','14:07:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,54,0,'2025-10-26','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,55,0,'2025-10-26','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,56,0,'2025-10-26','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,57,0,'2025-10-26','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,58,0,'2025-10-26','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,59,0,'2025-10-26','11:40:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,60,0,'2025-10-26','11:40:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,61,0,'2025-10-27','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,62,0,'2025-10-27','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,63,0,'2025-10-27','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,64,0,'2025-10-27','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,65,0,'2025-10-27','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,66,0,'2025-10-27','11:41:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,67,0,'2025-10-28','11:41:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',88,68,0,'2025-10-28','12:11:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-10-28 12:54:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,1,0,'2025-10-22','00:05:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,2,0,'2025-10-22','00:05:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,3,0,'2025-10-22','13:14:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,4,0,'2025-10-22','13:15:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,5,0,'2025-10-22','13:15:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,6,0,'2025-10-23','00:05:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,7,0,'2025-10-23','00:05:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,8,0,'2025-10-23','00:05:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,9,0,'2025-10-23','00:05:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,10,0,'2025-10-23','00:05:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,11,0,'2025-10-23','10:09:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,12,0,'2025-10-23','18:00:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,13,0,'2025-10-23','19:04:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,14,0,'2025-10-23','19:15:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,15,0,'2025-10-24','12:05:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,16,0,'2025-10-24','12:05:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,17,0,'2025-10-24','12:05:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,18,0,'2025-10-24','12:05:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,19,0,'2025-10-24','12:05:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,20,0,'2025-10-24','13:06:00','GENS0078',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,21,0,'2025-10-24','19:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,22,0,'2025-10-24','19:07:00','USG0095',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,23,0,'2025-10-24','19:16:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,24,0,'2025-10-25','00:05:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,25,0,'2025-10-25','00:05:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,26,0,'2025-10-25','00:05:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,27,0,'2025-10-25','00:05:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,28,0,'2025-10-25','00:05:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,29,0,'2025-10-26','00:05:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,30,0,'2025-10-26','00:05:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,31,0,'2025-10-26','00:05:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,32,0,'2025-10-26','00:05:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,33,0,'2025-10-26','00:05:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,34,0,'2025-10-27','00:05:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,35,0,'2025-10-27','00:05:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,36,0,'2025-10-27','00:05:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,37,0,'2025-10-27','00:05:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,38,0,'2025-10-27','00:05:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,39,0,'2025-10-27','13:18:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,40,0,'2025-10-27','13:18:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,41,0,'2025-10-28','13:02:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,42,0,'2025-10-28','13:24:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,43,0,'2025-10-28','13:24:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',89,44,0,'2025-10-28','13:24:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:14:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,1,0,'2025-10-27','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,2,0,'2025-10-27','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,3,0,'2025-10-27','09:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,4,0,'2025-10-27','09:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,5,0,'2025-10-27','09:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,6,0,'2025-10-27','09:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,7,0,'2025-10-27','09:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,8,0,'2025-10-27','12:16:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,9,0,'2025-10-27','12:17:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,10,0,'2025-10-27','12:18:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,11,0,'2025-10-27','12:18:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,12,0,'2025-10-27','12:19:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,13,0,'2025-10-27','12:19:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,14,0,'2025-10-28','09:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,15,0,'2025-10-28','09:30:00','CARE0001',0,0.50,600,300,'A',0,0,300.00,0.00,0.00,300.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,16,0,'2025-10-28','09:30:00','AECO0008',0,0.50,800,400,'A',0,0,400.00,0.00,0.00,400.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,17,0,'2025-10-28','09:30:00','ROOM0009',0,0.50,5500,2750,'A',0,0,2750.00,0.00,0.00,2750.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,18,0,'2025-10-28','12:16:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',90,19,0,'2025-10-28','12:19:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:38:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',91,1,0,'2025-10-27','10:48:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:09:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',91,2,0,'2025-10-27','10:48:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:09:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',91,3,0,'2025-10-27','10:48:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:09:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',91,4,0,'2025-10-27','10:48:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:09:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',91,5,0,'2025-10-27','10:48:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:09:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',91,6,0,'2025-10-27','10:48:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-10-29 12:09:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',91,7,0,'2025-10-27','10:48:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-10-29 12:09:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',91,8,0,'2025-10-27','10:53:00','SURG0014',0,1.00,55000,55000,'P',0,0,55000.00,0.00,0.00,55000.00,'',0,101,0,'',0,'','','','','','riya','2025-10-29 12:09:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',91,9,0,'2025-10-27','10:53:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:09:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',91,10,0,'2025-10-27','10:53:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:09:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',91,11,0,'2025-10-27','10:55:00','SURG0015',0,1.00,18300,18300,'P',0,0,18300.00,0.00,0.00,18300.00,'',0,3,0,'',0,'','','','','','riya','2025-10-29 12:09:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',91,12,0,'2025-10-28','10:48:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-10-29 12:09:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',91,13,0,'2025-10-28','10:48:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-10-29 12:09:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',91,14,0,'2025-10-28','10:48:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:09:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',91,15,0,'2025-10-28','10:48:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:09:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',91,16,0,'2025-10-28','10:48:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:09:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',91,17,0,'2025-10-29','10:48:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-10-29 12:09:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,1,0,'2025-10-24','14:19:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,8,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,2,0,'2025-10-24','20:16:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,3,0,'2025-10-24','20:16:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,4,0,'2025-10-24','20:16:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,3,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,5,0,'2025-10-24','20:16:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,6,0,'2025-10-24','20:16:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,7,0,'2025-10-24','20:16:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,8,0,'2025-10-25','14:19:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,41,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,9,0,'2025-10-25','14:20:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,10,0,'2025-10-25','14:20:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,11,0,'2025-10-25','19:28:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,12,0,'2025-10-25','20:16:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,13,0,'2025-10-25','20:16:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,14,0,'2025-10-25','20:16:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,3,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,15,0,'2025-10-25','20:16:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,3,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,16,0,'2025-10-25','20:16:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,17,0,'2025-10-26','19:24:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,41,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,18,0,'2025-10-26','19:25:00','NEPP0011',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,41,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,19,0,'2025-10-26','19:25:00','ROOM0008',0,7.00,100,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,20,0,'2025-10-26','19:27:00','WPRC0104',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,21,0,'2025-10-26','19:27:00','WPRC0097',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,3,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,22,0,'2025-10-26','19:27:00','XRY0045',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,23,0,'2025-10-26','19:28:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,24,0,'2025-10-26','19:28:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,25,0,'2025-10-26','19:28:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,26,0,'2025-10-26','19:32:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,88,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,27,0,'2025-10-26','20:16:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,28,0,'2025-10-26','20:16:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,3,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,29,0,'2025-10-26','20:16:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,3,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,30,0,'2025-10-26','20:16:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,31,0,'2025-10-26','20:16:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,32,0,'2025-10-27','11:18:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,33,0,'2025-10-27','15:17:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,34,0,'2025-10-27','15:17:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,35,0,'2025-10-27','15:18:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,36,0,'2025-10-27','20:16:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,37,0,'2025-10-27','20:16:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,38,0,'2025-10-27','20:16:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,39,0,'2025-10-27','20:16:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,40,0,'2025-10-27','20:16:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,41,0,'2025-10-28','10:29:00','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,42,0,'2025-10-28','10:29:00','WPRC0104',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,43,0,'2025-10-28','10:30:00','DRC0020',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,100,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,44,0,'2025-10-28','10:34:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,45,0,'2025-10-28','11:19:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,46,0,'2025-10-28','11:19:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,41,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,47,0,'2025-10-28','20:16:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,48,0,'2025-10-28','20:16:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,49,0,'2025-10-28','20:16:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,50,0,'2025-10-28','20:16:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,51,0,'2025-10-28','20:16:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,52,0,'2025-10-29','10:29:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,53,0,'2025-10-29','10:30:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,54,0,'2025-10-29','10:33:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,100,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,55,0,'2025-10-29','10:36:00','USG0097',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',92,56,0,'2025-10-29','11:55:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-10-29 12:34:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,1,0,'2025-10-27','11:43:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,2,0,'2025-10-27','11:43:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,3,0,'2025-10-27','11:43:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,4,0,'2025-10-27','11:43:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,5,0,'2025-10-27','11:43:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,6,0,'2025-10-27','11:43:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,7,0,'2025-10-27','12:50:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,8,0,'2025-10-27','12:50:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,9,0,'2025-10-27','12:50:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,10,0,'2025-10-27','12:51:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,11,0,'2025-10-28','11:43:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,12,0,'2025-10-28','11:43:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,13,0,'2025-10-28','11:43:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,14,0,'2025-10-28','11:43:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,15,0,'2025-10-28','11:43:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,16,0,'2025-10-28','12:51:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,17,0,'2025-10-28','12:51:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,18,0,'2025-10-29','12:38:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',93,19,0,'2025-10-29','12:39:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',94,1,0,'2025-10-28','14:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 15:02:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',94,2,0,'2025-10-28','14:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 15:02:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',94,3,0,'2025-10-28','14:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-29 15:02:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',94,4,0,'2025-10-28','14:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-29 15:02:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',94,5,0,'2025-10-28','14:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-29 15:02:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',94,6,0,'2025-10-28','14:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','riya','2025-10-29 15:02:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',94,7,0,'2025-10-28','21:22:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 15:02:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',94,8,0,'2025-10-28','21:23:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 15:02:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',94,9,0,'2025-10-28','21:23:00','DRC0021',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-10-29 15:02:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',94,10,0,'2025-10-29','14:48:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 15:02:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',94,11,0,'2025-10-29','14:48:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-10-29 15:02:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',94,12,0,'2025-10-29','14:49:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-29 15:02:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,1,0,'2025-10-23','13:54:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,2,0,'2025-10-23','20:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,3,0,'2025-10-23','20:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,4,0,'2025-10-23','20:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,5,0,'2025-10-23','20:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,6,0,'2025-10-23','20:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,7,0,'2025-10-24','13:55:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,8,0,'2025-10-24','20:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,9,0,'2025-10-24','20:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,10,0,'2025-10-24','20:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,11,0,'2025-10-24','20:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,12,0,'2025-10-24','20:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,13,0,'2025-10-25','12:21:00','USG0091',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,14,0,'2025-10-25','13:55:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,15,0,'2025-10-25','20:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,16,0,'2025-10-25','20:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,17,0,'2025-10-25','20:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,18,0,'2025-10-25','20:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,19,0,'2025-10-25','20:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,20,0,'2025-10-26','10:10:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,21,0,'2025-10-26','12:22:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,22,0,'2025-10-26','12:22:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,23,0,'2025-10-26','20:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,24,0,'2025-10-26','20:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,25,0,'2025-10-26','20:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,26,0,'2025-10-26','20:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,27,0,'2025-10-26','20:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,28,0,'2025-10-27','12:23:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,29,0,'2025-10-27','20:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,30,0,'2025-10-27','20:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,31,0,'2025-10-27','20:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,32,0,'2025-10-27','20:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,33,0,'2025-10-27','20:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,34,0,'2025-10-28','11:35:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,35,0,'2025-10-28','12:23:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,36,0,'2025-10-28','20:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,37,0,'2025-10-28','20:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,38,0,'2025-10-28','20:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,39,0,'2025-10-28','20:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,40,0,'2025-10-28','20:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,41,0,'2025-10-29','11:36:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,42,0,'2025-10-29','18:27:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,43,0,'2025-10-29','18:27:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',95,44,0,'2025-10-29','18:31:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:43:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,1,0,'2025-10-27','11:25:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,2,0,'2025-10-27','11:25:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,3,0,'2025-10-27','11:25:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,4,0,'2025-10-27','11:25:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,5,0,'2025-10-27','11:25:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,6,0,'2025-10-27','11:25:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,7,0,'2025-10-27','12:42:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,8,0,'2025-10-27','17:56:00','SURG0015',0,1.00,14000,14000,'A',0,0,14000.00,0.00,0.00,14000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,9,0,'2025-10-27','17:56:00','SURG0014',0,1.00,41500,41500,'A',0,0,41500.00,0.00,0.00,41500.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,10,0,'2025-10-28','11:25:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,11,0,'2025-10-28','11:25:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,12,0,'2025-10-28','11:25:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,13,0,'2025-10-28','11:25:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,14,0,'2025-10-28','11:25:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,15,0,'2025-10-28','12:43:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,16,0,'2025-10-28','12:43:00','WPRC0089',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,17,0,'2025-10-28','17:51:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,18,0,'2025-10-29','11:25:00','AECO0008',0,0.50,300,150,'A',0,0,150.00,0.00,0.00,150.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,19,0,'2025-10-29','11:25:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,20,0,'2025-10-29','11:25:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,21,0,'2025-10-29','11:25:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,22,0,'2025-10-29','11:25:00','ROOM0009',0,0.50,2900,1450,'P',0,0,1450.00,0.00,0.00,1450.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',96,23,0,'2025-10-29','17:50:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-29 19:04:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,1,0,'2025-10-25','11:10:00','DRC0020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,37,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,2,0,'2025-10-25','11:11:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,3,0,'2025-10-25','19:22:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,4,0,'2025-10-25','19:22:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,5,0,'2025-10-25','19:22:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,6,0,'2025-10-25','19:22:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,7,0,'2025-10-25','19:22:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,8,0,'2025-10-26','11:11:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,37,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,9,0,'2025-10-26','11:11:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,10,0,'2025-10-26','19:22:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,11,0,'2025-10-26','19:22:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,12,0,'2025-10-26','19:22:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,13,0,'2025-10-27','11:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,14,0,'2025-10-27','11:12:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,15,0,'2025-10-27','19:22:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,16,0,'2025-10-27','19:22:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,17,0,'2025-10-27','19:22:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,18,0,'2025-10-27','19:22:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,19,0,'2025-10-28','12:41:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,20,0,'2025-10-28','19:22:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,21,0,'2025-10-28','19:22:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,22,0,'2025-10-28','19:22:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,23,0,'2025-10-28','19:22:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,24,0,'2025-10-28','19:22:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,25,0,'2025-10-29','11:38:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,26,0,'2025-10-29','20:29:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',97,27,0,'2025-10-29','20:29:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-29 20:39:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',99,1,0,'2025-10-14','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 23:07:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',99,2,0,'2025-10-14','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 23:07:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',99,3,0,'2025-10-14','09:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'306',0,9999,0,'',0,'','','','','','vishal','2025-10-29 23:07:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',99,4,0,'2025-10-14','09:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'306',0,9999,0,'',0,'','','','','','vishal','2025-10-29 23:07:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',99,5,0,'2025-10-14','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'306',0,9999,0,'',0,'','','','','','vishal','2025-10-29 23:07:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',99,6,0,'2025-10-14','09:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'306',0,3,0,'',0,'','','','','','vishal','2025-10-29 23:07:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',99,7,0,'2025-10-14','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'306',0,3,0,'',0,'','','','','','vishal','2025-10-29 23:07:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',99,8,0,'2025-10-14','23:04:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 23:07:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',99,9,0,'2025-10-14','23:05:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 23:07:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',99,10,0,'2025-10-14','23:05:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-29 23:07:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',99,11,0,'2025-10-15','23:05:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 23:07:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',99,12,0,'2025-10-15','23:05:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-29 23:07:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,1,0,'2025-10-28','10:39:00','ROOM0008',0,9.00,100,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,2,0,'2025-10-28','10:39:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,3,0,'2025-10-28','10:39:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,4,0,'2025-10-28','10:40:00','SURG0015',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,5,0,'2025-10-28','10:41:00','SURG0014',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,6,0,'2025-10-28','11:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,7,0,'2025-10-28','11:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,8,0,'2025-10-28','11:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,9,0,'2025-10-28','11:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,10,0,'2025-10-28','11:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,11,0,'2025-10-28','11:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,12,0,'2025-10-28','11:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,13,0,'2025-10-29','10:39:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,14,0,'2025-10-29','11:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,15,0,'2025-10-29','11:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,16,0,'2025-10-29','11:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,17,0,'2025-10-29','11:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,18,0,'2025-10-29','11:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,19,0,'2025-10-29','11:58:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,20,0,'2025-10-29','11:58:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,21,0,'2025-10-29','11:59:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,22,0,'2025-10-29','12:00:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,23,0,'2025-10-29','12:02:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,78,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,24,0,'2025-10-30','11:58:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,25,0,'2025-10-30','11:59:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',100,26,0,'2025-10-30','11:59:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-10-30 12:26:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',101,1,0,'2025-10-09','09:15:00','REG0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 18:28:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',102,1,0,'2025-10-30','12:40:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 18:41:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',102,2,0,'2025-10-30','12:40:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 18:41:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',102,3,0,'2025-10-30','12:40:00','ROOM0009',0,0.50,5500,2750,'A',0,0,2750.00,0.00,0.00,2750.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-30 18:41:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',102,4,0,'2025-10-30','12:40:00','AECO0008',0,0.50,800,400,'A',0,0,400.00,0.00,0.00,400.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-30 18:41:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',102,5,0,'2025-10-30','12:40:00','CARE0001',0,0.50,600,300,'A',0,0,300.00,0.00,0.00,300.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-30 18:41:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',102,6,0,'2025-10-30','12:40:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,5,0,'',0,'','','','','','riya','2025-10-30 18:41:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',102,7,0,'2025-10-30','18:34:00','WPRC0078',0,1.00,350,350,'P',0,0,350.00,0.00,0.00,350.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 18:41:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',102,8,0,'2025-10-30','18:34:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 18:41:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',102,9,0,'2025-10-30','18:34:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','riya','2025-10-30 18:41:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',102,10,0,'2025-10-30','18:34:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 18:41:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',102,11,0,'2025-10-30','18:34:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','riya','2025-10-30 18:41:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',102,12,0,'2025-10-30','18:39:00','DRC0021',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','riya','2025-10-30 18:41:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',103,1,0,'2025-10-30','14:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:16:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',103,2,0,'2025-10-30','14:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:16:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',103,3,0,'2025-10-30','14:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:16:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',103,4,0,'2025-10-30','14:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:16:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',103,5,0,'2025-10-30','14:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:16:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',103,6,0,'2025-10-31','14:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:16:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',103,7,0,'2025-10-30','14:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:16:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',103,8,0,'2025-10-30','12:15:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:16:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',103,9,0,'2025-10-31','12:15:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:16:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,1,0,'2025-10-27','07:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,2,0,'2025-10-27','07:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,3,0,'2025-10-27','07:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,4,0,'2025-10-27','07:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,5,0,'2025-10-27','07:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,6,0,'2025-10-27','07:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,7,0,'2025-10-27','11:29:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,8,0,'2025-10-27','11:29:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,9,0,'2025-10-27','11:30:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,10,0,'2025-10-27','11:30:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,11,0,'2025-10-27','11:31:00','XRY0045',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,12,0,'2025-10-28','11:30:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,13,0,'2025-10-28','11:30:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,14,0,'2025-10-28','11:31:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,15,0,'2025-10-28','11:31:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,16,0,'2025-10-28','13:20:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,17,0,'2025-10-28','13:20:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,18,0,'2025-10-28','13:21:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,19,0,'2025-10-28','13:21:00','OTCG0003',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,20,0,'2025-10-28','19:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,21,0,'2025-10-28','19:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,22,0,'2025-10-28','19:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,23,0,'2025-10-28','19:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,24,0,'2025-10-28','19:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,25,0,'2025-10-29','11:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,26,0,'2025-10-29','11:30:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,27,0,'2025-10-29','13:19:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,28,0,'2025-10-29','13:19:00','WPRC0097',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,29,0,'2025-10-29','19:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,30,0,'2025-10-29','19:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,31,0,'2025-10-29','19:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,32,0,'2025-10-29','19:45:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,33,0,'2025-10-30','11:29:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,34,0,'2025-10-30','11:29:00','WPRC0080',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,35,0,'2025-10-30','19:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,36,0,'2025-10-30','19:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,37,0,'2025-10-30','19:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,38,0,'2025-10-30','19:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,39,0,'2025-10-30','19:45:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,40,0,'2025-10-31','12:09:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,41,0,'2025-10-31','12:10:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,42,0,'2025-10-31','12:10:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',104,43,0,'2025-10-31','12:11:00','OTCG0003',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-31 12:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',106,1,0,'2025-10-30','18:40:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 18:45:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',106,2,0,'2025-10-30','20:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 18:45:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',106,3,0,'2025-10-30','20:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 18:45:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',106,4,0,'2025-10-30','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-31 18:45:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',106,5,0,'2025-10-30','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-31 18:45:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',106,6,0,'2025-10-30','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-31 18:45:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',106,7,0,'2025-10-31','18:40:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-31 18:45:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',106,8,0,'2025-10-31','20:30:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'410',0,6,0,'',0,'','','','','','vishal','2025-10-31 18:45:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',106,9,0,'2025-10-30','18:44:00','SURG0014',0,1.00,21700,21700,'P',0,0,21700.00,0.00,0.00,21700.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-31 18:45:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',106,10,0,'2025-10-30','18:44:00','SURG0015',0,1.00,7300,7300,'P',0,0,7300.00,0.00,0.00,7300.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-31 18:45:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',107,1,0,'2025-10-30','09:40:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-31 21:15:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',107,2,0,'2025-10-30','09:40:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-31 21:15:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',107,3,0,'2025-10-30','09:40:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-31 21:15:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',107,4,0,'2025-10-30','09:40:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-31 21:15:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',107,5,0,'2025-10-30','09:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-31 21:15:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',107,6,0,'2025-10-30','09:40:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-10-31 21:15:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',107,7,0,'2025-10-30','09:40:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-10-31 21:15:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',107,8,0,'2025-10-30','11:28:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-31 21:15:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',107,9,0,'2025-10-30','11:28:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-31 21:15:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',107,10,0,'2025-10-31','09:40:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-31 21:15:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',107,11,0,'2025-10-31','09:40:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-31 21:15:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',107,12,0,'2025-10-31','09:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-31 21:15:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',107,13,0,'2025-10-31','09:40:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-10-31 21:15:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',107,14,0,'2025-10-31','09:40:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-10-31 21:15:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',107,15,0,'2025-10-31','21:14:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-31 21:15:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,1,0,'2025-10-29','06:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,2,0,'2025-10-29','06:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,3,0,'2025-10-29','06:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,4,0,'2025-10-29','06:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,5,0,'2025-10-29','06:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,6,0,'2025-10-29','06:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,7,0,'2025-10-29','06:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,8,0,'2025-10-29','11:42:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,9,0,'2025-10-29','11:42:00','USG0092',0,1.00,1200,1200,'A',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,10,0,'2025-10-30','06:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,11,0,'2025-10-30','06:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,12,0,'2025-10-30','06:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,13,0,'2025-10-30','06:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,14,0,'2025-10-30','06:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,15,0,'2025-10-30','11:43:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,16,0,'2025-10-31','06:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,17,0,'2025-10-31','06:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,18,0,'2025-10-31','06:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,19,0,'2025-10-31','06:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,20,0,'2025-10-31','06:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,21,0,'2025-11-01','12:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,22,0,'2025-11-01','12:02:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,23,0,'2025-11-01','12:02:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',108,24,0,'2025-11-01','12:03:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:07:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,1,0,'2025-10-28','11:41:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,2,0,'2025-10-28','15:26:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,3,0,'2025-10-28','15:26:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,4,0,'2025-10-28','15:26:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,5,0,'2025-10-28','15:26:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,6,0,'2025-10-28','15:26:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,7,0,'2025-10-28','15:26:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,8,0,'2025-10-29','11:32:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,9,0,'2025-10-29','11:33:00','USG0097',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,10,0,'2025-10-29','11:41:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,11,0,'2025-10-29','15:26:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,12,0,'2025-10-29','15:26:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,13,0,'2025-10-29','15:26:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,14,0,'2025-10-29','15:26:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,15,0,'2025-10-29','15:26:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,16,0,'2025-10-30','11:34:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,17,0,'2025-10-30','15:26:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,18,0,'2025-10-30','15:26:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,19,0,'2025-10-30','15:26:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,20,0,'2025-10-30','15:26:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,21,0,'2025-10-30','15:26:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,22,0,'2025-10-31','13:38:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,23,0,'2025-10-31','13:39:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,24,0,'2025-10-31','15:26:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,25,0,'2025-10-31','15:26:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,26,0,'2025-10-31','15:26:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,27,0,'2025-10-31','15:26:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,28,0,'2025-11-01','12:33:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,29,0,'2025-11-01','12:34:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,30,0,'2025-11-01','12:37:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,31,0,'2025-11-01','12:37:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',110,32,0,'2025-11-01','12:38:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,1,0,'2025-10-10','03:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,2,0,'2025-10-10','03:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,3,0,'2025-10-10','14:29:00','ROOM0001',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,4,0,'2025-10-10','14:29:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,5,0,'2025-10-10','14:29:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,6,0,'2025-10-10','14:30:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,7,0,'2025-10-10','14:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,8,0,'2025-10-10','14:32:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,9,0,'2025-10-10','14:33:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,10,0,'2025-10-10','14:33:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,11,0,'2025-10-10','14:34:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,12,0,'2025-10-10','14:38:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,13,0,'2025-10-10','14:38:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,14,0,'2025-10-10','14:38:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,15,0,'2025-10-10','14:38:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,16,0,'2025-10-10','14:55:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,17,0,'2025-10-10','14:57:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,18,0,'2025-10-11','14:30:00','ROOM0001',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,19,0,'2025-10-11','14:30:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,20,0,'2025-10-11','14:30:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,21,0,'2025-10-11','14:30:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,22,0,'2025-10-11','14:31:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,36,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,23,0,'2025-10-11','14:32:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,24,0,'2025-10-11','14:33:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,25,0,'2025-10-11','14:33:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,26,0,'2025-10-11','14:34:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,27,0,'2025-10-11','14:57:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,28,0,'2025-10-12','14:31:00','ROOM0001',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,29,0,'2025-10-12','14:32:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,30,0,'2025-10-12','14:32:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,31,0,'2025-10-12','14:32:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,32,0,'2025-10-12','14:32:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,33,0,'2025-10-12','14:33:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,34,0,'2025-10-12','14:33:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,35,0,'2025-10-12','14:34:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,36,0,'2025-10-12','14:57:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,37,0,'2025-10-13','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,38,0,'2025-10-13','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,39,0,'2025-10-13','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,40,0,'2025-10-13','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,41,0,'2025-10-13','03:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,42,0,'2025-10-13','11:14:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,43,0,'2025-10-13','12:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,44,0,'2025-10-13','12:06:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,45,0,'2025-10-13','12:06:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,46,0,'2025-10-13','12:07:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,47,0,'2025-10-13','12:29:00','WPRC0092',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,48,0,'2025-10-13','20:13:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,49,0,'2025-10-14','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,50,0,'2025-10-14','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,51,0,'2025-10-14','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,52,0,'2025-10-14','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,53,0,'2025-10-14','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,54,0,'2025-10-14','12:30:00','XRY0045',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,55,0,'2025-10-14','12:31:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,56,0,'2025-10-14','12:32:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,57,0,'2025-10-14','12:34:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,58,0,'2025-10-14','12:34:00','WPRC0089',0,8.00,100,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,59,0,'2025-10-14','12:35:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,60,0,'2025-10-14','12:35:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,61,0,'2025-10-14','12:36:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,62,0,'2025-10-14','20:13:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,63,0,'2025-10-15','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,64,0,'2025-10-15','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,65,0,'2025-10-15','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,66,0,'2025-10-15','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,67,0,'2025-10-15','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,68,0,'2025-10-15','20:12:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,69,0,'2025-10-15','20:12:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,70,0,'2025-10-15','20:13:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,71,0,'2025-10-15','20:14:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,72,0,'2025-10-15','20:14:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,73,0,'2025-10-15','20:42:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,74,0,'2025-10-16','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,75,0,'2025-10-16','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,76,0,'2025-10-16','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,77,0,'2025-10-16','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,78,0,'2025-10-16','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,79,0,'2025-10-16','20:40:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,80,0,'2025-10-16','20:41:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,81,0,'2025-10-16','20:42:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,82,0,'2025-10-16','20:42:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,83,0,'2025-10-16','20:42:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,84,0,'2025-10-17','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,85,0,'2025-10-17','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,86,0,'2025-10-17','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,87,0,'2025-10-17','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,88,0,'2025-10-17','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,89,0,'2025-10-17','18:32:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,90,0,'2025-10-17','18:32:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,91,0,'2025-10-17','18:32:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,92,0,'2025-10-17','18:33:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,93,0,'2025-10-17','18:38:00','WPRC0101',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,94,0,'2025-10-18','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,95,0,'2025-10-18','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,96,0,'2025-10-18','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,97,0,'2025-10-18','03:45:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,98,0,'2025-10-18','17:59:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,99,0,'2025-10-18','18:00:00','WPRC0089',0,5.00,100,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,100,0,'2025-10-18','18:39:00','WPRC0101',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,101,0,'2025-10-18','18:39:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,102,0,'2025-10-18','18:40:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,103,0,'2025-10-18','18:41:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,8,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,104,0,'2025-10-19','03:45:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,105,0,'2025-10-19','03:45:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,106,0,'2025-10-19','03:45:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,107,0,'2025-10-19','03:45:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,108,0,'2025-10-19','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,109,0,'2025-10-19','14:37:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,79,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,110,0,'2025-10-19','18:35:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,111,0,'2025-10-19','18:35:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,112,0,'2025-10-19','18:39:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,113,0,'2025-10-19','18:39:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,114,0,'2025-10-19','18:40:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,115,0,'2025-10-20','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,116,0,'2025-10-20','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,117,0,'2025-10-20','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,118,0,'2025-10-20','03:45:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,119,0,'2025-10-20','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,120,0,'2025-10-20','14:37:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,121,0,'2025-10-20','14:37:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,122,0,'2025-10-20','14:38:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,123,0,'2025-10-20','14:38:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,124,0,'2025-10-20','14:38:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,125,0,'2025-10-21','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,126,0,'2025-10-21','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,127,0,'2025-10-21','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,128,0,'2025-10-21','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,129,0,'2025-10-21','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,130,0,'2025-10-21','17:30:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,131,0,'2025-10-21','17:30:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,132,0,'2025-10-21','17:33:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,133,0,'2025-10-21','17:33:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,134,0,'2025-10-22','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,135,0,'2025-10-22','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,136,0,'2025-10-22','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,137,0,'2025-10-22','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,8,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,138,0,'2025-10-22','17:30:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,139,0,'2025-10-22','17:30:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,140,0,'2025-10-22','17:33:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,141,0,'2025-10-22','17:33:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,142,0,'2025-10-23','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,143,0,'2025-10-23','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,144,0,'2025-10-23','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,145,0,'2025-10-23','03:45:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,8,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,146,0,'2025-10-23','17:29:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,147,0,'2025-10-23','17:30:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,148,0,'2025-10-23','17:30:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,149,0,'2025-10-23','17:32:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,150,0,'2025-10-23','17:33:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,151,0,'2025-10-23','17:33:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,152,0,'2025-10-24','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,153,0,'2025-10-24','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,154,0,'2025-10-24','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,155,0,'2025-10-24','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,8,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,156,0,'2025-10-24','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,8,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,157,0,'2025-10-24','11:08:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,158,0,'2025-10-24','11:10:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,159,0,'2025-10-24','11:11:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,160,0,'2025-10-24','11:11:00','WPRC0101',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,161,0,'2025-10-24','11:15:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,162,0,'2025-10-24','19:31:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,163,0,'2025-10-24','19:33:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,164,0,'2025-10-24','20:00:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,2,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,165,0,'2025-10-25','03:45:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,166,0,'2025-10-25','03:45:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,167,0,'2025-10-25','03:45:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,168,0,'2025-10-25','03:45:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,8,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,169,0,'2025-10-25','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,8,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,170,0,'2025-10-25','11:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,171,0,'2025-10-25','11:10:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,172,0,'2025-10-25','11:10:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,173,0,'2025-10-25','11:11:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,174,0,'2025-10-25','11:12:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,175,0,'2025-10-26','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,176,0,'2025-10-26','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,177,0,'2025-10-26','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,178,0,'2025-10-26','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,8,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,179,0,'2025-10-26','03:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,8,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,180,0,'2025-10-26','15:10:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,181,0,'2025-10-26','15:10:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,182,0,'2025-10-26','15:13:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,183,0,'2025-10-26','15:14:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,184,0,'2025-10-26','15:14:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,185,0,'2025-10-26','15:15:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,186,0,'2025-10-26','15:15:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,187,0,'2025-10-27','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,188,0,'2025-10-27','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,189,0,'2025-10-27','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,190,0,'2025-10-27','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,191,0,'2025-10-27','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,192,0,'2025-10-27','15:10:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,193,0,'2025-10-27','15:11:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,194,0,'2025-10-27','15:13:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,195,0,'2025-10-27','15:14:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,196,0,'2025-10-27','15:15:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,197,0,'2025-10-27','15:15:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,198,0,'2025-10-27','15:15:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,199,0,'2025-10-28','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,200,0,'2025-10-28','11:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,201,0,'2025-10-28','11:01:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,202,0,'2025-10-28','11:01:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,203,0,'2025-10-28','11:06:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,204,0,'2025-10-28','11:07:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,205,0,'2025-10-28','11:23:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,206,0,'2025-10-28','11:23:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,207,0,'2025-10-28','11:23:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,208,0,'2025-10-28','14:21:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,209,0,'2025-10-28','14:31:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,210,0,'2025-10-28','14:32:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,211,0,'2025-10-28','14:35:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,212,0,'2025-10-29','03:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,213,0,'2025-10-29','03:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,214,0,'2025-10-29','03:45:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,215,0,'2025-10-29','03:45:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,216,0,'2025-10-29','03:45:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,217,0,'2025-10-29','11:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,218,0,'2025-10-29','11:06:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,219,0,'2025-10-29','11:07:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,220,0,'2025-10-29','11:07:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,221,0,'2025-10-29','11:45:00','USG0095',0,1.00,1200,1200,'A',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,222,0,'2025-10-29','11:51:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,37,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,223,0,'2025-10-29','14:31:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,224,0,'2025-10-29','14:32:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,225,0,'2025-10-29','14:35:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,226,0,'2025-10-30','03:45:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,227,0,'2025-10-30','03:45:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,228,0,'2025-10-30','03:45:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,229,0,'2025-10-30','03:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,230,0,'2025-10-30','03:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,231,0,'2025-10-30','11:45:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,232,0,'2025-10-30','11:46:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,233,0,'2025-10-30','11:46:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,234,0,'2025-10-30','14:31:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,235,0,'2025-10-30','14:32:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,236,0,'2025-10-31','03:45:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,237,0,'2025-10-31','03:45:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,238,0,'2025-10-31','03:45:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,239,0,'2025-10-31','03:45:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,240,0,'2025-10-31','03:45:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,241,0,'2025-10-31','14:27:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,242,0,'2025-10-31','14:32:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,243,0,'2025-10-31','14:38:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,244,0,'2025-10-31','14:41:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,245,0,'2025-11-01','13:45:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,246,0,'2025-11-01','13:46:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,247,0,'2025-11-01','13:46:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,248,0,'2025-11-01','14:22:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,249,0,'2025-11-01','14:32:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,250,0,'2025-11-01','14:38:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,251,0,'2025-11-01','14:41:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',111,252,0,'2025-11-01','14:43:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 14:45:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,1,0,'2025-10-30','12:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,2,0,'2025-10-30','12:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,3,0,'2025-10-30','12:50:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,4,0,'2025-10-30','12:50:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,5,0,'2025-10-30','12:50:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,6,0,'2025-10-30','12:50:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,7,0,'2025-10-30','12:50:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,8,0,'2025-10-30','18:23:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,9,0,'2025-10-30','18:24:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,10,0,'2025-10-30','18:24:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,11,0,'2025-10-30','18:24:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,12,0,'2025-10-30','18:24:00','WPRC0092',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,13,0,'2025-10-30','18:25:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,14,0,'2025-10-30','18:25:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,15,0,'2025-10-30','18:29:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,16,0,'2025-10-30','18:29:00','WPRC0101',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,17,0,'2025-10-30','18:30:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,18,0,'2025-10-30','18:30:00','WPRC0087',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,19,0,'2025-10-30','18:30:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,20,0,'2025-10-31','12:50:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,21,0,'2025-10-31','12:50:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,22,0,'2025-10-31','12:50:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,23,0,'2025-10-31','12:50:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,24,0,'2025-10-31','12:50:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,25,0,'2025-10-31','18:28:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,26,0,'2025-10-31','18:28:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,27,0,'2025-10-31','18:30:00','WPRC0087',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,28,0,'2025-10-31','18:30:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,29,0,'2025-10-31','18:30:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,30,0,'2025-10-31','18:31:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,31,0,'2025-11-01','12:50:00','ROOM0009',0,0.50,5500,2750,'A',0,0,2750.00,0.00,0.00,2750.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,32,0,'2025-11-01','12:50:00','AECO0008',0,0.50,800,400,'A',0,0,400.00,0.00,0.00,400.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,33,0,'2025-11-01','12:50:00','CARE0001',0,0.50,600,300,'A',0,0,300.00,0.00,0.00,300.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,34,0,'2025-11-01','12:50:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,35,0,'2025-11-01','15:20:00','WPRC0078',0,2.00,300,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,36,0,'2025-11-01','15:21:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,37,0,'2025-11-01','15:21:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,38,0,'2025-11-01','15:22:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,39,0,'2025-11-01','15:22:00','WPRC0087',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',112,40,0,'2025-11-01','15:25:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:30:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,1,0,'2025-10-31','09:40:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,2,0,'2025-10-31','09:45:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,124,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,3,0,'2025-10-31','14:34:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,4,0,'2025-10-31','14:34:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,5,0,'2025-10-31','14:34:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,6,0,'2025-10-31','14:34:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,7,0,'2025-10-31','14:34:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,8,0,'2025-10-31','14:34:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,9,0,'2025-11-01','09:40:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,10,0,'2025-11-01','09:41:00','SURG0014',0,1.00,24000,24000,'P',0,0,24000.00,0.00,0.00,24000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,11,0,'2025-11-01','09:42:00','SURG0015',0,1.00,7930,7930,'P',0,0,7930.00,0.00,0.00,7930.00,'',0,3,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,12,0,'2025-11-01','14:34:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,13,0,'2025-11-01','14:34:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,14,0,'2025-11-01','14:34:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,15,0,'2025-11-01','14:34:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,16,0,'2025-11-01','14:34:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,17,0,'2025-11-02','09:41:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,18,0,'2025-11-02','09:43:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',113,19,0,'2025-11-02','09:44:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-02 10:31:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,1,0,'2025-10-31','07:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,2,0,'2025-10-31','07:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,3,0,'2025-10-31','11:06:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,78,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,4,0,'2025-10-31','11:07:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,5,0,'2025-10-31','11:07:00','WPRC0097',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,6,0,'2025-10-31','11:07:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,7,0,'2025-10-31','11:07:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,8,0,'2025-10-31','11:07:00','ROOM0008',0,9.00,100,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,9,0,'2025-10-31','11:07:00','WPRC0084',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,10,0,'2025-10-31','11:07:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,11,0,'2025-10-31','11:08:00','WPRC0104',0,1.00,6000,6000,'A',0,0,6000.00,0.00,0.00,6000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,12,0,'2025-10-31','11:11:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,13,0,'2025-10-31','11:12:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,14,0,'2025-10-31','11:12:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,15,0,'2025-10-31','11:13:00','WPRC0087',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,16,0,'2025-10-31','11:17:00','OETR0002',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,17,0,'2025-10-31','17:57:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,18,0,'2025-10-31','17:57:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,19,0,'2025-10-31','17:57:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,20,0,'2025-10-31','17:58:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,21,0,'2025-10-31','17:58:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,22,0,'2025-11-01','07:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,23,0,'2025-11-01','07:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,24,0,'2025-11-01','07:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,25,0,'2025-11-01','07:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,26,0,'2025-11-01','07:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,27,0,'2025-11-01','11:06:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,28,0,'2025-11-01','11:10:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,29,0,'2025-11-01','11:11:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,30,0,'2025-11-01','11:12:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,31,0,'2025-11-01','11:12:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,32,0,'2025-11-01','11:13:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,33,0,'2025-11-02','07:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,34,0,'2025-11-02','11:10:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,35,0,'2025-11-02','11:11:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,36,0,'2025-11-02','11:12:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',114,37,0,'2025-11-02','11:14:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:20:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',117,1,0,'2025-11-01','17:35:00','SURG0015',0,1.00,7500,7500,'P',0,0,7500.00,0.00,0.00,7500.00,'',0,3,0,'',0,'','','','','','riya','2025-11-02 17:49:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',117,2,0,'2025-11-01','17:37:00','SURG0014',0,1.00,22000,22000,'P',0,0,22000.00,0.00,0.00,22000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-02 17:49:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',117,3,0,'2025-11-01','18:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 17:49:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',117,4,0,'2025-11-01','18:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 17:49:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',117,5,0,'2025-11-01','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-11-02 17:49:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',117,6,0,'2025-11-01','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-11-02 17:49:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',117,7,0,'2025-11-01','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-11-02 17:49:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',117,8,0,'2025-11-01','18:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-11-02 17:49:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',117,9,0,'2025-11-02','17:35:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-02 17:49:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,1,0,'2025-10-30','12:29:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,2,0,'2025-10-30','13:52:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,3,0,'2025-10-30','13:52:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,4,0,'2025-10-30','13:52:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,5,0,'2025-10-30','13:52:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,6,0,'2025-10-30','13:52:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,7,0,'2025-10-30','13:52:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,5,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,8,0,'2025-10-31','12:29:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,9,0,'2025-10-31','13:52:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,10,0,'2025-10-31','13:52:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,11,0,'2025-10-31','13:52:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,5,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,12,0,'2025-10-31','13:52:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,5,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,13,0,'2025-10-31','13:52:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,14,0,'2025-11-01','13:52:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,15,0,'2025-11-01','13:52:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,16,0,'2025-11-01','13:52:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,17,0,'2025-11-01','13:52:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,5,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,18,0,'2025-11-01','13:52:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,5,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,19,0,'2025-11-02','13:52:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,20,0,'2025-11-02','13:52:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,21,0,'2025-11-02','13:52:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,22,0,'2025-11-02','13:52:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,5,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,23,0,'2025-11-02','13:52:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,5,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',119,24,0,'2025-11-03','13:52:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,5,0,'',0,'','','','','','vishal','2025-11-03 12:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,1,0,'2025-10-30','12:15:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,2,0,'2025-10-30','12:15:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,3,0,'2025-10-30','12:22:00','DRC0021',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,4,0,'2025-10-30','13:56:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,5,0,'2025-10-30','13:56:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,6,0,'2025-10-30','13:56:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,7,0,'2025-10-30','13:56:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,8,0,'2025-10-30','13:56:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,9,0,'2025-10-30','13:56:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,10,0,'2025-10-31','12:15:00','USG0093',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,11,0,'2025-10-31','13:56:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,12,0,'2025-10-31','13:56:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,13,0,'2025-10-31','13:56:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,14,0,'2025-10-31','13:56:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,15,0,'2025-10-31','13:56:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,16,0,'2025-11-01','13:56:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,17,0,'2025-11-01','13:56:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,18,0,'2025-11-01','13:56:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,19,0,'2025-11-01','13:56:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,20,0,'2025-11-01','13:56:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,21,0,'2025-11-02','13:56:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,22,0,'2025-11-02','13:56:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,23,0,'2025-11-02','13:56:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,24,0,'2025-11-02','13:56:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,25,0,'2025-11-02','13:56:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',120,26,0,'2025-11-03','12:22:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-03 12:33:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,1,0,'2025-10-28','13:05:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,2,0,'2025-10-28','13:05:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,3,0,'2025-10-28','13:06:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,4,0,'2025-10-28','13:06:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,5,0,'2025-10-28','13:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,6,0,'2025-10-28','13:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,7,0,'2025-10-28','13:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,8,0,'2025-10-28','13:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,9,0,'2025-10-28','13:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,10,0,'2025-10-28','13:50:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'410',0,3,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,11,0,'2025-10-29','12:45:00','SURG0017',0,1.00,30000,30000,'P',0,0,30000.00,0.00,0.00,30000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,12,0,'2025-10-29','13:06:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,13,0,'2025-10-29','13:50:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,14,0,'2025-10-29','13:50:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,15,0,'2025-10-29','13:50:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,16,0,'2025-10-29','13:50:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,17,0,'2025-10-29','13:50:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,3,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,18,0,'2025-10-29','18:03:00','SURG0015',0,1.00,15000,15000,'A',0,0,15000.00,0.00,0.00,15000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,19,0,'2025-10-29','18:03:00','SURG0014',0,1.00,30000,30000,'A',0,0,30000.00,0.00,0.00,30000.00,'',0,70,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,20,0,'2025-10-29','19:14:00','WPRC0092',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,39,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,21,0,'2025-10-29','19:15:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,22,0,'2025-10-29','19:15:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,23,0,'2025-10-30','13:50:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,24,0,'2025-10-30','13:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,25,0,'2025-10-30','13:50:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,3,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,26,0,'2025-10-30','13:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,27,0,'2025-10-30','18:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,28,0,'2025-10-30','19:14:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,29,0,'2025-10-30','19:17:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,70,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,30,0,'2025-10-31','13:50:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,31,0,'2025-10-31','13:50:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,32,0,'2025-10-31','13:50:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,33,0,'2025-10-31','13:50:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,34,0,'2025-10-31','18:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,35,0,'2025-10-31','19:14:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,36,0,'2025-10-31','19:17:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,70,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,37,0,'2025-11-01','13:10:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,38,0,'2025-11-01','13:10:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,39,0,'2025-11-01','13:15:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,70,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,40,0,'2025-11-01','13:50:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,41,0,'2025-11-01','13:50:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,42,0,'2025-11-01','13:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,43,0,'2025-11-01','13:50:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,44,0,'2025-11-01','13:50:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,45,0,'2025-11-02','13:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,46,0,'2025-11-02','13:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,47,0,'2025-11-02','13:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,48,0,'2025-11-02','13:50:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,49,0,'2025-11-03','12:41:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',121,50,0,'2025-11-03','12:43:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 13:52:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,1,0,'2025-10-31','09:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,2,0,'2025-10-31','09:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,3,0,'2025-10-31','09:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,3,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,4,0,'2025-10-31','09:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,5,0,'2025-10-31','09:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,6,0,'2025-10-31','09:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,7,0,'2025-10-31','11:07:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,8,0,'2025-10-31','11:10:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,9,0,'2025-10-31','11:10:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,10,0,'2025-10-31','11:10:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,11,0,'2025-10-31','11:11:00','WPRC0086',0,3.00,200,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,12,0,'2025-10-31','17:29:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,13,0,'2025-10-31','17:31:00','SURG0014',0,1.00,51000,51000,'P',0,0,51000.00,0.00,0.00,51000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,14,0,'2025-10-31','17:31:00','SURG0015',0,1.00,16790,16790,'P',0,0,16790.00,0.00,0.00,16790.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,15,0,'2025-11-01','09:15:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'211',0,3,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,16,0,'2025-11-01','09:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,17,0,'2025-11-01','09:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,18,0,'2025-11-01','09:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,19,0,'2025-11-01','11:09:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,20,0,'2025-11-01','11:11:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,21,0,'2025-11-02','17:29:00','ROOM0009',0,0.50,3200,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,22,0,'2025-11-02','17:29:00','CARE0005',0,0.50,400,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,23,0,'2025-11-02','17:29:00','CARE0001',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',122,24,0,'2025-11-02','17:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 18:10:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',123,1,0,'2025-11-02','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:11:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',123,2,0,'2025-11-02','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:11:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',123,3,0,'2025-11-02','13:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:11:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',123,4,0,'2025-11-02','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:11:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',123,5,0,'2025-11-02','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:11:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',123,6,0,'2025-11-02','13:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,7,0,'',0,'','','','','','vishal','2025-11-03 19:11:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',123,7,0,'2025-11-02','13:39:00','ADMN0007',0,1.00,5000,5000,'A',0,0,5000.00,0.00,0.00,5000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:11:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',123,8,0,'2025-11-02','19:04:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:11:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',123,9,0,'2025-11-02','19:04:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:11:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',123,10,0,'2025-11-02','19:04:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:11:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',123,11,0,'2025-11-03','13:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'410',0,7,0,'',0,'','','','','','vishal','2025-11-03 19:11:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',123,12,0,'2025-11-03','19:02:00','ROOM0009',0,0.50,2900,1450,'P',0,0,1450.00,0.00,0.00,1450.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:11:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',123,13,0,'2025-11-03','19:02:00','CARE0001',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:11:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',123,14,0,'2025-11-03','19:02:00','AECO0008',0,0.50,300,150,'P',0,0,150.00,0.00,0.00,150.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:11:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',123,15,0,'2025-11-03','19:03:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-03 19:11:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',123,16,0,'2025-11-03','19:03:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','','','vishal','2025-11-03 19:11:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',123,17,0,'2025-11-03','19:08:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,7,0,'',0,'','','','','','vishal','2025-11-03 19:11:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',124,1,0,'2025-11-03','09:54:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 12:00:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',124,2,0,'2025-11-03','09:54:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 12:00:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',124,3,0,'2025-11-03','09:54:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-11-04 12:00:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',124,4,0,'2025-11-03','09:54:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-11-04 12:00:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',124,5,0,'2025-11-03','09:54:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-11-04 12:00:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',124,6,0,'2025-11-03','09:54:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','vishal','2025-11-04 12:00:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',124,7,0,'2025-11-03','11:57:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 12:00:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',124,8,0,'2025-11-03','11:57:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 12:00:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',124,9,0,'2025-11-03','11:58:00','SURG0014',0,1.00,9000,9000,'P',0,0,9000.00,0.00,0.00,9000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-04 12:00:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',124,10,0,'2025-11-03','11:58:00','SURG0015',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-04 12:00:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',124,11,0,'2025-11-04','09:54:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','vishal','2025-11-04 12:00:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',124,12,0,'2025-11-04','11:57:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 12:00:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',124,13,0,'2025-11-04','11:57:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-04 12:00:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,1,0,'2025-10-28','11:37:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,2,0,'2025-10-28','11:38:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,3,0,'2025-10-28','11:38:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,4,0,'2025-10-28','12:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,5,0,'2025-10-28','12:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,6,0,'2025-10-28','12:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,7,0,'2025-10-28','12:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,8,0,'2025-10-28','12:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,9,0,'2025-10-28','12:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,10,0,'2025-10-28','17:14:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,11,0,'2025-10-29','11:37:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,12,0,'2025-10-29','11:38:00','WPRC0087',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,13,0,'2025-10-29','12:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,14,0,'2025-10-29','12:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,15,0,'2025-10-29','17:11:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,16,0,'2025-10-29','17:12:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,17,0,'2025-10-29','17:12:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,18,0,'2025-10-30','11:35:00','WPRC0092',0,1.00,2500,2500,'A',0,0,2500.00,0.00,0.00,2500.00,'',0,39,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,19,0,'2025-10-30','11:37:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,20,0,'2025-10-30','11:39:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,21,0,'2025-10-30','11:39:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,22,0,'2025-10-30','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,23,0,'2025-10-30','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,24,0,'2025-10-30','12:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,25,0,'2025-10-30','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,26,0,'2025-10-30','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,27,0,'2025-10-31','12:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,28,0,'2025-10-31','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,29,0,'2025-10-31','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,30,0,'2025-10-31','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,31,0,'2025-10-31','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,32,0,'2025-10-31','17:16:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,33,0,'2025-10-31','17:17:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,34,0,'2025-11-01','12:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,35,0,'2025-11-01','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,36,0,'2025-11-01','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,37,0,'2025-11-01','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,38,0,'2025-11-01','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,39,0,'2025-11-01','17:14:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,40,0,'2025-11-01','17:15:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,41,0,'2025-11-01','17:16:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,42,0,'2025-11-01','17:18:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,43,0,'2025-11-01','17:19:00','WPRC0083',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,44,0,'2025-11-02','12:30:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,45,0,'2025-11-02','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,46,0,'2025-11-02','12:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,47,0,'2025-11-02','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,48,0,'2025-11-02','17:16:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,49,0,'2025-11-02','17:18:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,50,0,'2025-11-03','12:30:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,51,0,'2025-11-03','12:30:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,52,0,'2025-11-03','12:30:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,53,0,'2025-11-03','12:30:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,54,0,'2025-11-03','12:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,55,0,'2025-11-03','17:16:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,56,0,'2025-11-03','17:18:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,57,0,'2025-11-03','17:19:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,58,0,'2025-11-04','12:30:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,59,0,'2025-11-04','12:30:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,60,0,'2025-11-04','17:16:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,61,0,'2025-11-04','17:19:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,62,0,'2025-10-28','17:50:00','SURG0014',0,1.00,10200,10200,'P',0,0,10200.00,0.00,0.00,10200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',125,63,0,'2025-10-28','17:50:00','SURG0015',0,1.00,3400,3400,'P',0,0,3400.00,0.00,0.00,3400.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,1,0,'2025-11-02','19:30:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,2,0,'2025-11-02','19:31:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,3,0,'2025-11-02','19:31:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,4,0,'2025-11-02','19:32:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,5,0,'2025-11-02','23:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,6,0,'2025-11-02','23:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,7,0,'2025-11-02','23:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,8,0,'2025-11-02','23:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,9,0,'2025-11-02','23:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,10,0,'2025-11-03','19:31:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,11,0,'2025-11-03','19:31:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,12,0,'2025-11-03','19:31:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,13,0,'2025-11-03','19:32:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,14,0,'2025-11-03','19:32:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,15,0,'2025-11-03','23:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,16,0,'2025-11-03','23:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,17,0,'2025-11-03','23:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,18,0,'2025-11-03','23:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,19,0,'2025-11-03','23:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,20,0,'2025-11-04','19:02:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,21,0,'2025-11-04','19:02:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,22,0,'2025-11-04','23:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'207',0,5,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',126,23,0,'2025-11-04','23:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'207',0,5,0,'',0,'','','','','','vishal','2025-11-04 19:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,1,0,'2025-10-31','10:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,2,0,'2025-10-31','10:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,3,0,'2025-10-31','10:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,4,0,'2025-10-31','10:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,5,0,'2025-10-31','10:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,6,0,'2025-10-31','10:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,7,0,'2025-10-31','10:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,8,0,'2025-10-31','20:06:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,9,0,'2025-10-31','20:06:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,10,0,'2025-10-31','20:06:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,11,0,'2025-10-31','20:07:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,115,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,12,0,'2025-11-01','09:36:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,13,0,'2025-11-01','09:38:00','WPRC0100',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,14,0,'2025-11-01','09:45:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,135,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,15,0,'2025-11-01','20:16:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,16,0,'2025-11-01','20:16:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,17,0,'2025-11-01','20:16:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,18,0,'2025-11-01','20:17:00','ROOM0005',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,19,0,'2025-11-01','20:17:00','ROOM0006',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,20,0,'2025-11-02','09:36:00','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,21,0,'2025-11-02','09:48:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,22,0,'2025-11-02','10:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,23,0,'2025-11-02','10:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,24,0,'2025-11-02','10:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,25,0,'2025-11-02','10:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,26,0,'2025-11-02','10:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,27,0,'2025-11-03','09:37:00','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,28,0,'2025-11-03','10:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,29,0,'2025-11-03','10:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,30,0,'2025-11-03','10:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,36,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,31,0,'2025-11-03','10:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,32,0,'2025-11-03','10:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,33,0,'2025-11-04','09:37:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,34,0,'2025-11-04','10:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,35,0,'2025-11-04','10:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,36,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,36,0,'2025-11-04','10:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,36,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,37,0,'2025-11-04','10:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,38,0,'2025-11-04','10:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',127,39,0,'2025-11-05','09:37:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:10:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',128,1,0,'2025-11-04','12:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-05 20:01:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',128,2,0,'2025-11-04','12:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-05 20:01:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',128,3,0,'2025-11-04','12:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-05 20:01:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',128,4,0,'2025-11-04','12:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-05 20:01:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',128,5,0,'2025-11-04','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-05 20:01:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',128,6,0,'2025-11-04','12:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,5,0,'',0,'','','','','','vishal','2025-11-05 20:01:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',128,7,0,'2025-11-04','12:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,5,0,'',0,'','','','','','vishal','2025-11-05 20:01:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',128,8,0,'2025-11-04','19:57:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-05 20:01:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',128,9,0,'2025-11-05','12:00:00','ROOM0009',0,0.50,3200,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-05 20:01:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',128,10,0,'2025-11-05','12:00:00','AECO0008',0,0.50,400,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-05 20:01:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',128,11,0,'2025-11-05','12:00:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-05 20:01:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',128,12,0,'2025-11-05','12:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,5,0,'',0,'','','','','','vishal','2025-11-05 20:01:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',128,13,0,'2025-11-05','12:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,5,0,'',0,'','','','','','vishal','2025-11-05 20:01:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',129,1,0,'2025-11-05','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-05 21:06:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',129,2,0,'2025-11-05','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-05 21:06:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',129,3,0,'2025-11-05','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-11-05 21:06:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',129,4,0,'2025-11-05','21:01:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-05 21:06:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',129,5,0,'2025-11-05','21:03:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-05 21:06:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',129,6,0,'2025-11-05','21:04:00','SURG0014',0,1.00,12200,12200,'P',0,0,12200.00,0.00,0.00,12200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-05 21:06:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',129,7,0,'2025-11-05','21:04:00','SURG0015',0,1.00,4100,4100,'P',0,0,4100.00,0.00,0.00,4100.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-05 21:06:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',130,1,0,'2025-11-04','14:23:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 14:39:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',130,2,0,'2025-11-04','14:25:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-08 14:39:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',130,3,0,'2025-11-04','16:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 14:39:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',130,4,0,'2025-11-04','16:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 14:39:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',130,5,0,'2025-11-04','16:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-08 14:39:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',130,6,0,'2025-11-04','16:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-08 14:39:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',130,7,0,'2025-11-04','16:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-08 14:39:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',130,8,0,'2025-11-04','16:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','vishal','2025-11-08 14:39:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',130,9,0,'2025-11-04','16:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','vishal','2025-11-08 14:39:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',130,10,0,'2025-11-05','16:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-08 14:39:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',130,11,0,'2025-11-05','16:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-08 14:39:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',130,12,0,'2025-11-05','16:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-08 14:39:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',130,13,0,'2025-11-05','16:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','vishal','2025-11-08 14:39:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',130,14,0,'2025-11-05','16:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','vishal','2025-11-08 14:39:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',130,15,0,'2025-11-06','14:16:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,6,0,'',0,'','','','','','vishal','2025-11-08 14:39:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',130,16,0,'2025-11-04','14:32:00','OETR0005',0,2.00,1000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 14:39:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,1,0,'2025-09-28','09:57:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,2,0,'2025-09-28','09:57:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,3,0,'2025-09-28','09:57:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,4,0,'2025-09-28','09:57:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,5,0,'2025-09-28','09:57:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,6,0,'2025-09-28','09:57:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,7,0,'2025-09-28','09:57:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,8,0,'2025-09-28','19:23:00','ROOM0008',0,7.00,100,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,9,0,'2025-09-28','19:25:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,10,0,'2025-09-29','09:57:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,11,0,'2025-09-29','09:57:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,12,0,'2025-09-29','09:57:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,13,0,'2025-09-29','09:57:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,14,0,'2025-09-29','09:57:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,15,0,'2025-09-29','19:23:00','ROOM0008',0,7.00,100,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,16,0,'2025-09-29','19:23:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,17,0,'2025-09-29','19:24:00','WPRC0090',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,18,0,'2025-09-29','19:25:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,19,0,'2025-09-29','19:31:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,20,0,'2025-09-30','09:57:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,21,0,'2025-09-30','09:57:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,22,0,'2025-09-30','09:57:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,23,0,'2025-09-30','09:57:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,24,0,'2025-09-30','09:57:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,25,0,'2025-09-30','19:24:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,26,0,'2025-09-30','19:24:00','USG0092',0,1.00,1200,1200,'A',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,27,0,'2025-09-30','19:25:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,28,0,'2025-10-01','09:57:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,29,0,'2025-10-01','09:57:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,30,0,'2025-10-01','09:57:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,31,0,'2025-10-01','09:57:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,32,0,'2025-10-01','09:57:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,33,0,'2025-10-01','19:25:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,34,0,'2025-10-01','19:28:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,35,0,'2025-10-02','09:57:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,36,0,'2025-10-02','09:57:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,37,0,'2025-10-02','09:57:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,38,0,'2025-10-02','09:57:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,39,0,'2025-10-02','19:25:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,40,0,'2025-10-02','19:26:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',131,41,0,'2025-10-02','19:28:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,1,0,'2025-11-03','11:16:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,2,0,'2025-11-03','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,3,0,'2025-11-03','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,4,0,'2025-11-03','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,5,0,'2025-11-03','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,6,0,'2025-11-03','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,7,0,'2025-11-03','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,8,0,'2025-11-03','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,9,0,'2025-11-04','11:16:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,10,0,'2025-11-04','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,11,0,'2025-11-04','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,12,0,'2025-11-04','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,13,0,'2025-11-04','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,14,0,'2025-11-04','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,15,0,'2025-11-05','11:16:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,16,0,'2025-11-05','11:18:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,88,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,17,0,'2025-11-05','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,18,0,'2025-11-05','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,19,0,'2025-11-05','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,20,0,'2025-11-05','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,21,0,'2025-11-05','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,22,0,'2025-11-06','11:17:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,23,0,'2025-11-06','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,24,0,'2025-11-06','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,25,0,'2025-11-06','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,26,0,'2025-11-06','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,27,0,'2025-11-06','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,28,0,'2025-11-07','12:10:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',132,29,0,'2025-11-07','12:11:00','ROOM0005',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,1,0,'2025-10-31','15:42:00','ADMN0007',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,2,0,'2025-10-31','15:42:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,3,0,'2025-10-31','15:42:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,4,0,'2025-10-31','15:42:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,5,0,'2025-10-31','15:43:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,6,0,'2025-10-31','15:46:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,7,0,'2025-10-31','20:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,8,0,'2025-10-31','20:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,9,0,'2025-10-31','20:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,10,0,'2025-10-31','20:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,11,0,'2025-10-31','20:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,12,0,'2025-11-01','15:43:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,13,0,'2025-11-01','15:46:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,14,0,'2025-11-01','20:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,15,0,'2025-11-01','20:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,16,0,'2025-11-01','20:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,17,0,'2025-11-01','20:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,18,0,'2025-11-01','20:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,19,0,'2025-11-01','21:44:00','WPRC0106',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,20,0,'2025-11-02','12:32:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,21,0,'2025-11-02','15:43:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,22,0,'2025-11-02','20:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,23,0,'2025-11-02','20:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,24,0,'2025-11-02','20:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,25,0,'2025-11-02','20:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,26,0,'2025-11-02','20:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,27,0,'2025-11-03','20:08:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,28,0,'2025-11-03','20:09:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,29,0,'2025-11-03','20:09:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,20,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,30,0,'2025-11-03','20:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,31,0,'2025-11-03','20:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,32,0,'2025-11-03','20:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,33,0,'2025-11-03','20:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,36,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,34,0,'2025-11-03','20:45:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,35,0,'2025-11-04','20:08:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,36,0,'2025-11-04','20:09:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,37,0,'2025-11-04','20:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,38,0,'2025-11-04','20:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,36,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,39,0,'2025-11-04','20:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,40,0,'2025-11-04','20:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,41,0,'2025-11-04','20:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,36,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,42,0,'2025-11-05','13:46:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,43,0,'2025-11-05','13:46:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,44,0,'2025-11-05','20:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,45,0,'2025-11-05','20:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,36,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,46,0,'2025-11-05','20:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,36,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,47,0,'2025-11-05','20:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,48,0,'2025-11-05','20:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,49,0,'2025-11-06','11:14:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,50,0,'2025-11-06','20:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,51,0,'2025-11-06','20:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,52,0,'2025-11-06','20:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,36,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,53,0,'2025-11-06','20:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,36,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,54,0,'2025-11-06','20:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,55,0,'2025-11-07','12:13:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',134,56,0,'2025-11-07','12:15:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,36,0,'',0,'','','','','','riya','2025-11-07 12:51:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',135,1,0,'2025-11-06','09:20:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:03:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',135,2,0,'2025-11-06','09:20:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:03:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',135,3,0,'2025-11-06','09:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:03:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',135,4,0,'2025-11-06','09:20:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:03:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',135,5,0,'2025-11-06','09:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:03:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',135,6,0,'2025-11-06','09:20:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','riya','2025-11-07 19:03:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',135,7,0,'2025-11-06','09:20:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','riya','2025-11-07 19:03:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',135,8,0,'2025-11-06','18:58:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:03:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',135,9,0,'2025-11-07','09:20:00','ROOM0009',0,0.50,3200,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:03:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',135,10,0,'2025-11-07','09:20:00','AECO0008',0,0.50,400,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:03:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',135,11,0,'2025-11-07','09:20:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:03:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',135,12,0,'2025-11-07','09:20:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','riya','2025-11-07 19:03:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',135,13,0,'2025-11-07','09:20:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','riya','2025-11-07 19:03:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',135,14,0,'2025-11-06','19:02:00','SURG0014',0,1.00,37000,37000,'P',0,0,37000.00,0.00,0.00,37000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-07 19:03:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',135,15,0,'2025-11-06','19:02:00','SURG0015',0,1.00,12300,12300,'P',0,0,12300.00,0.00,0.00,12300.00,'',0,3,0,'',0,'','','','','','riya','2025-11-07 19:03:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',136,1,0,'2025-11-06','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:32:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',136,2,0,'2025-11-06','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:32:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',136,3,0,'2025-11-06','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:32:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',136,4,0,'2025-11-06','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:32:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',136,5,0,'2025-11-06','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:32:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',136,6,0,'2025-11-06','10:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-11-07 19:32:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',136,7,0,'2025-11-06','10:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-11-07 19:32:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',136,8,0,'2025-11-06','10:26:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:32:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',136,9,0,'2025-11-07','10:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-11-07 19:32:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',136,10,0,'2025-11-07','10:27:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-07 19:32:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',137,1,0,'2025-11-06','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:37:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',137,2,0,'2025-11-06','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:37:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',137,3,0,'2025-11-06','09:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:37:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',137,4,0,'2025-11-06','09:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:37:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',137,5,0,'2025-11-06','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:37:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',137,6,0,'2025-11-06','09:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-11-07 19:37:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',137,7,0,'2025-11-06','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-11-07 19:37:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',137,8,0,'2025-11-06','10:29:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:37:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',137,9,0,'2025-11-07','09:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-11-07 19:37:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',137,10,0,'2025-11-07','10:30:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-07 19:37:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,1,0,'2025-11-01','12:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,2,0,'2025-11-01','12:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,3,0,'2025-11-01','12:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,4,0,'2025-11-01','12:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,5,0,'2025-11-01','12:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,6,0,'2025-11-01','12:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,7,0,'2025-11-01','12:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,8,0,'2025-11-01','13:50:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,9,0,'2025-11-01','13:50:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,10,0,'2025-11-01','13:51:00','WPRC0101',0,2.00,400,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,11,0,'2025-11-01','13:51:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,12,0,'2025-11-01','13:51:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,13,0,'2025-11-02','08:59:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,14,0,'2025-11-02','08:59:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,15,0,'2025-11-02','08:59:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,16,0,'2025-11-02','09:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,17,0,'2025-11-02','12:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,18,0,'2025-11-02','13:51:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,19,0,'2025-11-02','13:52:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,20,0,'2025-11-03','11:23:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,21,0,'2025-11-03','11:24:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,22,0,'2025-11-03','11:25:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,23,0,'2025-11-03','11:25:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,24,0,'2025-11-03','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,36,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,25,0,'2025-11-03','12:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'310',0,5,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,26,0,'2025-11-03','12:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'310',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,27,0,'2025-11-03','12:00:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'310',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,28,0,'2025-11-03','12:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'310',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,29,0,'2025-11-04','11:23:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,30,0,'2025-11-04','11:25:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,31,0,'2025-11-04','11:25:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,32,0,'2025-11-04','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,36,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,33,0,'2025-11-04','12:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'410',0,36,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,34,0,'2025-11-04','12:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,35,0,'2025-11-04','12:00:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,36,0,'2025-11-04','12:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,37,0,'2025-11-05','11:24:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,38,0,'2025-11-05','11:24:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,39,0,'2025-11-05','11:25:00','WPRC0089',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,40,0,'2025-11-05','11:27:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,41,0,'2025-11-05','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,36,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,42,0,'2025-11-05','12:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,43,0,'2025-11-05','12:00:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,44,0,'2025-11-05','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,45,0,'2025-11-05','12:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,36,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,46,0,'2025-11-06','09:07:00','WPRC0107',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,47,0,'2025-11-06','11:24:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,48,0,'2025-11-06','11:26:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,49,0,'2025-11-06','12:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,50,0,'2025-11-06','12:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,51,0,'2025-11-06','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,52,0,'2025-11-06','12:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,36,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,53,0,'2025-11-06','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,36,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,54,0,'2025-11-06','15:24:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,55,0,'2025-11-07','12:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,56,0,'2025-11-07','12:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'410',0,36,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,57,0,'2025-11-07','12:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'410',0,36,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,58,0,'2025-11-07','12:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,59,0,'2025-11-07','12:00:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,60,0,'2025-11-07','15:11:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,61,0,'2025-11-07','15:20:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,62,0,'2025-11-07','15:20:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,63,0,'2025-11-08','09:05:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',138,64,0,'2025-11-08','09:05:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:22:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',139,1,0,'2025-11-06','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 11:52:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',139,2,0,'2025-11-06','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 11:52:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',139,3,0,'2025-11-06','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-08 11:52:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',139,4,0,'2025-11-06','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-08 11:52:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',139,5,0,'2025-11-06','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-08 11:52:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',139,6,0,'2025-11-06','15:00:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'305',0,42,0,'',0,'','','','','','vishal','2025-11-08 11:52:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',139,7,0,'2025-11-06','15:33:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 11:52:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',139,8,0,'2025-11-07','15:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','vishal','2025-11-08 11:52:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',139,9,0,'2025-11-07','15:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','vishal','2025-11-08 11:52:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',139,10,0,'2025-11-07','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-08 11:52:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',139,11,0,'2025-11-07','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-08 11:52:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',139,12,0,'2025-11-07','15:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-08 11:52:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',139,13,0,'2025-11-07','15:33:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 11:52:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',139,14,0,'2025-11-07','15:34:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-08 11:52:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',139,15,0,'2025-11-07','15:35:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,150,0,'',0,'','','','','','vishal','2025-11-08 11:52:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',139,16,0,'2025-11-08','11:48:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 11:52:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',139,17,0,'2025-11-08','11:49:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','vishal','2025-11-08 11:52:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',139,18,0,'2025-11-08','11:49:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-08 11:52:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',140,1,0,'2025-11-08','09:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:01:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',140,2,0,'2025-11-08','09:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:01:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',140,3,0,'2025-11-08','09:45:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:01:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',140,4,0,'2025-11-08','09:45:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:01:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',140,5,0,'2025-11-08','09:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:01:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',140,6,0,'2025-11-08','09:45:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','riya','2025-11-09 12:01:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',140,7,0,'2025-11-08','09:45:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','riya','2025-11-09 12:01:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',140,8,0,'2025-11-08','11:56:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:01:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',140,9,0,'2025-11-08','11:57:00','SURG0016',0,1.00,13800,13800,'P',0,0,13800.00,0.00,0.00,13800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-09 12:01:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',140,10,0,'2025-11-08','11:57:00','SURG0015',0,1.00,4600,4600,'P',0,0,4600.00,0.00,0.00,4600.00,'',0,3,0,'',0,'','','','','','riya','2025-11-09 12:01:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',140,11,0,'2025-11-09','11:57:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-09 12:01:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',140,12,0,'2025-11-09','11:58:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-09 12:01:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,1,0,'2025-11-06','12:05:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,2,0,'2025-11-06','12:05:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,3,0,'2025-11-06','12:05:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,4,0,'2025-11-06','12:09:00','ROOM0006',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,5,0,'2025-11-06','12:16:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,6,0,'2025-11-06','15:45:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,7,0,'2025-11-06','15:45:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,8,0,'2025-11-06','18:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,9,0,'2025-11-06','18:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,10,0,'2025-11-07','08:53:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,11,0,'2025-11-07','10:23:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,12,0,'2025-11-07','15:45:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,13,0,'2025-11-07','15:45:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,14,0,'2025-11-07','18:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,15,0,'2025-11-07','18:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,16,0,'2025-11-07','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,17,0,'2025-11-07','18:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,18,0,'2025-11-07','18:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,19,0,'2025-11-08','08:52:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,20,0,'2025-11-08','08:53:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,21,0,'2025-11-08','18:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,22,0,'2025-11-08','18:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,23,0,'2025-11-08','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,24,0,'2025-11-08','18:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,25,0,'2025-11-08','18:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,26,0,'2025-11-09','08:52:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',141,27,0,'2025-11-09','08:53:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','riya','2025-11-09 12:20:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',142,1,0,'2025-11-08','11:53:00','SURG0016',0,1.00,12600,12600,'P',0,0,12600.00,0.00,0.00,12600.00,'',0,6,0,'',0,'','','','','','riya','2025-11-09 18:25:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',142,2,0,'2025-11-08','11:53:00','SURG0015',0,1.00,4200,4200,'P',0,0,4200.00,0.00,0.00,4200.00,'',0,6,0,'',0,'','','','','','riya','2025-11-09 18:25:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',142,3,0,'2025-11-08','18:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:25:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',142,4,0,'2025-11-08','18:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:25:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',142,5,0,'2025-11-08','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:25:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',142,6,0,'2025-11-08','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:25:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',142,7,0,'2025-11-08','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:25:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',142,8,0,'2025-11-08','18:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,6,0,'',0,'','','','','','riya','2025-11-09 18:25:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',142,9,0,'2025-11-09','11:52:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','riya','2025-11-09 18:25:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',142,10,0,'2025-11-09','18:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,6,0,'',0,'','','','','','riya','2025-11-09 18:25:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',143,1,0,'2025-11-08','17:40:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,6,0,'',0,'','','','','','riya','2025-11-09 18:33:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',143,2,0,'2025-11-08','19:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:33:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',143,3,0,'2025-11-08','19:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:33:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',143,4,0,'2025-11-08','19:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:33:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',143,5,0,'2025-11-08','19:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:33:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',143,6,0,'2025-11-08','19:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:33:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',143,7,0,'2025-11-08','19:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,6,0,'',0,'','','','','','riya','2025-11-09 18:33:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',143,8,0,'2025-11-08','19:22:00','SURG0016',0,1.00,11000,11000,'P',0,0,11000.00,0.00,0.00,11000.00,'',0,6,0,'',0,'','','','','','riya','2025-11-09 18:33:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',143,9,0,'2025-11-09','11:49:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:33:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',143,10,0,'2025-11-09','17:39:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','riya','2025-11-09 18:33:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',143,11,0,'2025-11-09','17:41:00','SURG0015',0,1.00,2750,2750,'P',0,0,2750.00,0.00,0.00,2750.00,'',0,6,0,'',0,'','','','','','riya','2025-11-09 18:33:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',143,12,0,'2025-11-09','19:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,6,0,'',0,'','','','','','riya','2025-11-09 18:33:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',143,13,0,'2025-11-09','19:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,6,0,'',0,'','','','','','riya','2025-11-09 18:33:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,1,0,'2025-11-08','11:18:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,2,0,'2025-11-08','11:18:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,3,0,'2025-11-08','11:18:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,4,0,'2025-11-08','11:19:00','SURG0015',0,1.00,10700,10700,'P',0,0,10700.00,0.00,0.00,10700.00,'',0,3,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,5,0,'2025-11-08','11:19:00','SURG0014',0,1.00,32200,32200,'P',0,0,32200.00,0.00,0.00,32200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,6,0,'2025-11-08','11:20:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,7,0,'2025-11-08','13:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,8,0,'2025-11-08','13:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,9,0,'2025-11-08','13:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,10,0,'2025-11-08','13:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,11,0,'2025-11-08','13:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,12,0,'2025-11-08','13:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,13,0,'2025-11-09','13:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,14,0,'2025-11-09','13:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,15,0,'2025-11-09','13:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,16,0,'2025-11-09','13:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,17,0,'2025-11-09','13:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,18,0,'2025-11-10','11:18:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',144,19,0,'2025-11-10','11:21:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-10 11:49:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',145,1,0,'2025-11-10','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-11 16:32:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',145,2,0,'2025-11-10','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-11 16:32:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',145,3,0,'2025-11-10','09:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-11 16:32:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',145,4,0,'2025-11-10','09:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-11 16:32:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',145,5,0,'2025-11-10','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-11 16:32:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',145,6,0,'2025-11-10','09:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','riya','2025-11-11 16:32:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',145,7,0,'2025-11-10','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','riya','2025-11-11 16:32:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',145,8,0,'2025-11-11','10:16:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-11 16:32:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,1,0,'2025-11-07','13:33:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,2,0,'2025-11-07','13:33:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,3,0,'2025-11-07','13:33:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,4,0,'2025-11-07','13:33:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,5,0,'2025-11-07','13:33:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,6,0,'2025-11-07','13:33:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,7,0,'2025-11-08','11:56:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,8,0,'2025-11-08','11:58:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,8,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,9,0,'2025-11-08','13:33:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,10,0,'2025-11-08','13:33:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,11,0,'2025-11-08','13:33:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,12,0,'2025-11-08','13:33:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,13,0,'2025-11-08','13:33:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,14,0,'2025-11-08','18:41:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,15,0,'2025-11-09','11:48:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,16,0,'2025-11-09','13:33:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,17,0,'2025-11-09','13:33:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,18,0,'2025-11-09','13:33:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,19,0,'2025-11-09','13:33:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,20,0,'2025-11-09','13:33:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,21,0,'2025-11-10','11:58:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,8,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,22,0,'2025-11-10','13:33:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,23,0,'2025-11-10','13:33:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,24,0,'2025-11-10','13:33:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,25,0,'2025-11-10','13:33:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',146,26,0,'2025-11-11','11:57:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-11 12:46:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',148,1,0,'2025-11-11','10:23:00','WPRC0099',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-12 13:38:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',148,2,0,'2025-11-11','11:32:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-12 13:38:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',148,3,0,'2025-11-11','11:32:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-12 13:38:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',148,4,0,'2025-11-11','11:32:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-12 13:38:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',148,5,0,'2025-11-11','12:05:00','SURG0014',0,1.00,9800,9800,'P',0,0,9800.00,0.00,0.00,9800.00,'',0,6,0,'',0,'','','','','','vishal','2025-11-12 13:38:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',148,6,0,'2025-11-11','12:58:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-12 13:38:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',148,7,0,'2025-11-11','12:58:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-12 13:38:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',148,8,0,'2025-11-11','12:58:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-11-12 13:38:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',148,9,0,'2025-11-11','12:58:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-11-12 13:38:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',148,10,0,'2025-11-11','12:58:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-11-12 13:38:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',148,11,0,'2025-11-11','12:58:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,6,0,'',0,'','','','','','vishal','2025-11-12 13:38:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',148,12,0,'2025-11-11','12:58:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,6,0,'',0,'','','','','','vishal','2025-11-12 13:38:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',148,13,0,'2025-11-12','11:33:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-12 13:38:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',148,14,0,'2025-11-12','12:05:00','SURG0015',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,6,0,'',0,'','','','','','vishal','2025-11-12 13:38:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',148,15,0,'2025-11-12','12:58:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,6,0,'',0,'','','','','','vishal','2025-11-12 13:38:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',149,1,0,'2025-11-13','03:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 12:53:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',149,2,0,'2025-11-13','03:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 12:53:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',149,3,0,'2025-11-13','03:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-13 12:53:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',149,4,0,'2025-11-13','03:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-13 12:53:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',149,5,0,'2025-11-13','03:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-13 12:53:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',149,6,0,'2025-11-13','03:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-11-13 12:53:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',149,7,0,'2025-11-13','12:46:00','CARP0032',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-13 12:53:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',149,8,0,'2025-11-13','12:46:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 12:53:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',149,9,0,'2025-11-13','12:49:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 12:53:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',149,10,0,'2025-11-13','12:49:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 12:53:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',149,11,0,'2025-11-13','12:49:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 12:53:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,1,0,'2025-11-10','12:35:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,2,0,'2025-11-10','21:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,3,0,'2025-11-10','21:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,4,0,'2025-11-10','21:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,5,0,'2025-11-10','21:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,6,0,'2025-11-10','21:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,7,0,'2025-11-11','12:35:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,8,0,'2025-11-11','21:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,9,0,'2025-11-11','21:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,10,0,'2025-11-11','21:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,11,0,'2025-11-11','21:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,12,0,'2025-11-11','21:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,13,0,'2025-11-12','12:35:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,14,0,'2025-11-12','12:36:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,15,0,'2025-11-12','12:36:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,16,0,'2025-11-12','21:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,17,0,'2025-11-12','21:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,18,0,'2025-11-12','21:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,19,0,'2025-11-12','21:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,20,0,'2025-11-12','21:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,21,0,'2025-11-13','17:41:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,22,0,'2025-11-13','21:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',150,23,0,'2025-11-13','21:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-11-13 17:44:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',151,1,0,'2025-11-12','14:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-13 20:02:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',151,2,0,'2025-11-12','14:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-13 20:02:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',151,3,0,'2025-11-12','14:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-11-13 20:02:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',151,4,0,'2025-11-12','14:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-11-13 20:02:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',151,5,0,'2025-11-12','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-11-13 20:02:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',151,6,0,'2025-11-12','14:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','vishal','2025-11-13 20:02:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',151,7,0,'2025-11-13','12:32:00','WPRC0083',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-13 20:02:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',151,8,0,'2025-11-13','14:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','vishal','2025-11-13 20:02:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',151,9,0,'2025-11-13','20:01:00','OETR0004',0,1.00,70007,70007,'P',0,0,70007.00,0.00,0.00,70007.00,'',0,0,0,'',0,'','','','','','vishal','2025-11-13 20:02:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,1,0,'2025-11-10','11:20:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,2,0,'2025-11-10','11:21:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,3,0,'2025-11-10','11:21:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,4,0,'2025-11-10','11:21:00','WPRC0077',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,5,0,'2025-11-10','11:21:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,6,0,'2025-11-10','11:22:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,7,0,'2025-11-10','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,8,0,'2025-11-10','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,9,0,'2025-11-10','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,10,0,'2025-11-10','13:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,11,0,'2025-11-10','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,12,0,'2025-11-10','13:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,36,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,13,0,'2025-11-11','11:22:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,14,0,'2025-11-11','12:07:00','USG0092',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,15,0,'2025-11-11','12:07:00','WPRC0077',0,3.00,500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,16,0,'2025-11-11','12:08:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,17,0,'2025-11-11','13:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,18,0,'2025-11-11','13:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,19,0,'2025-11-11','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,20,0,'2025-11-11','13:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,21,0,'2025-11-11','13:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,22,0,'2025-11-11','20:54:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,23,0,'2025-11-12','12:08:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,24,0,'2025-11-12','12:08:00','WPRC0077',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,25,0,'2025-11-12','13:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,26,0,'2025-11-12','19:24:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,27,0,'2025-11-12','19:25:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,28,0,'2025-11-12','19:25:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,29,0,'2025-11-12','19:25:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,30,0,'2025-11-12','20:54:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,31,0,'2025-11-13','11:48:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,32,0,'2025-11-13','11:49:00','WPRC0077',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,33,0,'2025-11-13','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,34,0,'2025-11-13','13:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,35,0,'2025-11-13','13:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,36,0,'2025-11-13','13:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,37,0,'2025-11-13','13:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,38,0,'2025-11-13','20:54:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,39,0,'2025-11-14','11:45:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,40,0,'2025-11-14','11:45:00','WPRC0077',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,41,0,'2025-11-14','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,42,0,'2025-11-14','13:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,43,0,'2025-11-14','13:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,44,0,'2025-11-14','13:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',152,45,0,'2025-11-14','13:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:12:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,1,0,'2025-11-12','10:52:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,2,0,'2025-11-12','10:53:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,3,0,'2025-11-12','10:53:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,4,0,'2025-11-12','10:56:00','XRY0045',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,5,0,'2025-11-12','10:57:00','WPRC0101',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,6,0,'2025-11-12','10:58:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,7,0,'2025-11-12','10:58:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,8,0,'2025-11-12','17:23:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,9,0,'2025-11-12','19:00:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,10,0,'2025-11-12','19:00:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,11,0,'2025-11-12','19:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,12,0,'2025-11-12','19:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,13,0,'2025-11-12','19:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,14,0,'2025-11-12','19:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,15,0,'2025-11-13','10:56:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,16,0,'2025-11-13','10:58:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,17,0,'2025-11-13','10:58:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,18,0,'2025-11-13','10:58:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,19,0,'2025-11-13','17:21:00','WPRC0097',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,20,0,'2025-11-13','17:21:00','WPRC0092',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,21,0,'2025-11-13','17:23:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,22,0,'2025-11-13','19:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,23,0,'2025-11-13','19:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,24,0,'2025-11-13','19:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,25,0,'2025-11-13','19:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,26,0,'2025-11-13','19:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,27,0,'2025-11-14','17:22:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,28,0,'2025-11-14','17:22:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,29,0,'2025-11-14','17:22:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,30,0,'2025-11-14','17:22:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,31,0,'2025-11-14','17:23:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,32,0,'2025-11-14','19:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,33,0,'2025-11-14','19:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,34,0,'2025-11-14','19:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,35,0,'2025-11-14','19:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,36,0,'2025-11-14','19:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,37,0,'2025-11-15','09:23:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,38,0,'2025-11-15','09:24:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',153,39,0,'2025-11-15','09:31:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,1,0,'2025-11-12','20:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,2,0,'2025-11-12','20:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,3,0,'2025-11-12','20:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,4,0,'2025-11-12','20:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,5,0,'2025-11-12','20:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,6,0,'2025-11-13','11:13:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,7,0,'2025-11-13','11:14:00','SURG0015',0,1.00,7000,7000,'P',0,0,7000.00,0.00,0.00,7000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,8,0,'2025-11-13','11:14:00','SURG0014',0,1.00,21100,21100,'P',0,0,21100.00,0.00,0.00,21100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,9,0,'2025-11-13','20:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,10,0,'2025-11-13','20:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,11,0,'2025-11-13','20:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,12,0,'2025-11-13','20:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,13,0,'2025-11-13','20:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,14,0,'2025-11-14','20:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,15,0,'2025-11-14','20:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,16,0,'2025-11-14','20:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,17,0,'2025-11-14','20:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,18,0,'2025-11-14','20:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,19,0,'2025-11-15','11:13:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',154,20,0,'2025-11-15','20:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-15 13:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,1,0,'2025-11-12','10:47:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,2,0,'2025-11-12','10:48:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,7,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,3,0,'2025-11-12','10:48:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,88,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,4,0,'2025-11-12','10:49:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,5,0,'2025-11-12','10:50:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,6,0,'2025-11-12','11:26:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,88,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,7,0,'2025-11-12','12:22:00','SURG0014',0,1.00,45000,45000,'P',0,0,45000.00,0.00,0.00,45000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,8,0,'2025-11-12','12:23:00','SURG0015',0,1.00,14250,14250,'P',0,0,14250.00,0.00,0.00,14250.00,'',0,3,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,9,0,'2025-11-12','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,10,0,'2025-11-12','13:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,11,0,'2025-11-12','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,12,0,'2025-11-12','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,13,0,'2025-11-12','13:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,14,0,'2025-11-12','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,15,0,'2025-11-13','10:50:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,16,0,'2025-11-13','11:29:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,17,0,'2025-11-13','13:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,18,0,'2025-11-13','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,19,0,'2025-11-13','13:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,20,0,'2025-11-13','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,21,0,'2025-11-14','12:06:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,22,0,'2025-11-14','13:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,23,0,'2025-11-14','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,24,0,'2025-11-14','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,25,0,'2025-11-14','13:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,26,0,'2025-11-14','13:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,27,0,'2025-11-15','11:26:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,28,0,'2025-11-15','11:29:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',155,29,0,'2025-11-15','11:30:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','','','riya','2025-11-15 13:12:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,1,0,'2025-11-13','17:17:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,2,0,'2025-11-13','17:17:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,3,0,'2025-11-13','17:18:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,4,0,'2025-11-13','17:19:00','DRC0020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,37,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,5,0,'2025-11-13','19:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,6,0,'2025-11-13','19:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,7,0,'2025-11-13','19:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,8,0,'2025-11-13','19:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,9,0,'2025-11-13','19:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,10,0,'2025-11-13','19:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,11,0,'2025-11-14','16:50:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,12,0,'2025-11-14','17:17:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,13,0,'2025-11-14','17:17:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,14,0,'2025-11-14','17:18:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,15,0,'2025-11-14','17:18:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,16,0,'2025-11-14','19:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,17,0,'2025-11-14','19:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,18,0,'2025-11-14','19:03:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,19,0,'2025-11-14','19:03:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,20,0,'2025-11-14','19:04:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,21,0,'2025-11-14','20:44:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,37,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,22,0,'2025-11-15','16:48:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,23,0,'2025-11-15','19:01:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,24,0,'2025-11-15','19:02:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,25,0,'2025-11-15','19:04:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',156,26,0,'2025-11-15','19:04:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-15 19:06:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,1,0,'2025-11-14','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,2,0,'2025-11-14','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,3,0,'2025-11-14','09:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,4,0,'2025-11-14','09:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,5,0,'2025-11-14','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,6,0,'2025-11-14','09:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,7,0,'2025-11-14','09:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,8,0,'2025-11-14','10:42:00','SURG0015',0,1.00,12750,12750,'P',0,0,12750.00,0.00,0.00,12750.00,'',0,3,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,9,0,'2025-11-14','10:42:00','SURG0014',0,1.00,39000,39000,'P',0,0,39000.00,0.00,0.00,39000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,10,0,'2025-11-14','16:31:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,11,0,'2025-11-14','16:31:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,12,0,'2025-11-14','16:31:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,13,0,'2025-11-14','16:32:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,14,0,'2025-11-15','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,15,0,'2025-11-15','09:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,16,0,'2025-11-15','09:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,17,0,'2025-11-15','09:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,18,0,'2025-11-15','09:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',157,19,0,'2025-11-16','10:42:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-16 10:47:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,1,0,'2025-11-14','00:05:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,2,0,'2025-11-14','00:05:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,3,0,'2025-11-14','00:05:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,4,0,'2025-11-14','00:05:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,5,0,'2025-11-14','00:05:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,6,0,'2025-11-14','00:05:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,7,0,'2025-11-14','00:05:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,8,0,'2025-11-14','11:32:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,9,0,'2025-11-14','11:32:00','WPRC0078',0,2.00,300,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,10,0,'2025-11-14','11:32:00','XRY0045',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,11,0,'2025-11-14','11:33:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,12,0,'2025-11-14','12:51:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,13,0,'2025-11-15','00:05:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,14,0,'2025-11-15','00:05:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,15,0,'2025-11-15','00:05:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,4,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,16,0,'2025-11-15','00:05:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,17,0,'2025-11-15','00:05:00','ROOM0009',0,1.00,5000,5000,'A',0,0,5000.00,0.00,0.00,5000.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,18,0,'2025-11-15','10:46:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,19,0,'2025-11-15','10:46:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,20,0,'2025-11-15','10:47:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,21,0,'2025-11-15','14:40:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,22,0,'2025-11-16','00:05:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,23,0,'2025-11-16','00:05:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,24,0,'2025-11-16','00:05:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,25,0,'2025-11-16','00:05:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,26,0,'2025-11-16','00:05:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',158,27,0,'2025-11-16','14:40:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,1,0,'2025-11-11','12:33:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,2,0,'2025-11-11','14:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,3,0,'2025-11-11','14:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,4,0,'2025-11-11','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,5,0,'2025-11-11','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,6,0,'2025-11-11','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,7,0,'2025-11-11','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,8,0,'2025-11-12','11:34:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,9,0,'2025-11-12','11:35:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,10,0,'2025-11-12','12:33:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,11,0,'2025-11-12','12:33:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,12,0,'2025-11-12','12:34:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,13,0,'2025-11-12','12:59:00','SURG0014',0,1.00,45000,45000,'P',0,0,45000.00,0.00,0.00,45000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,14,0,'2025-11-12','12:59:00','SURG0015',0,1.00,11250,11250,'P',0,0,11250.00,0.00,0.00,11250.00,'',0,3,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,15,0,'2025-11-12','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,16,0,'2025-11-12','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,17,0,'2025-11-12','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,18,0,'2025-11-12','14:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,19,0,'2025-11-12','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,20,0,'2025-11-13','11:35:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,21,0,'2025-11-13','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,22,0,'2025-11-13','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,23,0,'2025-11-13','14:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,24,0,'2025-11-13','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,25,0,'2025-11-13','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,26,0,'2025-11-14','11:47:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,27,0,'2025-11-14','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,28,0,'2025-11-14','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,29,0,'2025-11-14','14:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,30,0,'2025-11-14','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,31,0,'2025-11-14','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,32,0,'2025-11-15','14:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,33,0,'2025-11-15','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,34,0,'2025-11-15','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,35,0,'2025-11-15','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,36,0,'2025-11-15','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,37,0,'2025-11-15','16:32:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,38,0,'2025-11-16','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,39,0,'2025-11-16','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,40,0,'2025-11-16','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,41,0,'2025-11-16','14:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,42,0,'2025-11-16','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,43,0,'2025-11-16','14:42:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,44,0,'2025-11-17','10:01:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',159,45,0,'2025-11-17','10:02:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-17 10:35:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',160,1,0,'2025-11-16','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 13:33:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',160,2,0,'2025-11-16','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 13:33:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',160,3,0,'2025-11-16','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-17 13:33:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',160,4,0,'2025-11-16','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-17 13:33:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',160,5,0,'2025-11-16','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-17 13:33:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',160,6,0,'2025-11-16','10:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-11-17 13:33:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',160,7,0,'2025-11-16','10:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-11-17 13:33:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',160,8,0,'2025-11-16','13:23:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 13:33:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',160,9,0,'2025-11-16','13:23:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 13:33:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',160,10,0,'2025-11-17','13:23:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 13:33:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',160,11,0,'2025-11-17','13:23:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 13:33:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',160,12,0,'2025-11-17','13:24:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,8,0,'',0,'','','','','','riya','2025-11-17 13:33:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,1,0,'2025-11-15','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,2,0,'2025-11-15','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,3,0,'2025-11-15','10:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,4,0,'2025-11-15','10:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,5,0,'2025-11-15','10:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,6,0,'2025-11-15','10:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,7,0,'2025-11-15','10:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,8,0,'2025-11-15','13:39:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,9,0,'2025-11-15','13:39:00','WPRC0091',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,10,0,'2025-11-15','13:39:00','WPRC0077',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,11,0,'2025-11-15','13:39:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,12,0,'2025-11-15','13:40:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,13,0,'2025-11-16','10:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,14,0,'2025-11-16','10:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,15,0,'2025-11-16','10:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,16,0,'2025-11-16','10:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,17,0,'2025-11-16','10:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,18,0,'2025-11-16','10:44:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,19,0,'2025-11-16','13:40:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,20,0,'2025-11-16','13:40:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,21,0,'2025-11-16','13:41:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,22,0,'2025-11-16','13:41:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,23,0,'2025-11-17','10:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,24,0,'2025-11-17','10:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,8,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,25,0,'2025-11-17','10:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,26,0,'2025-11-17','10:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,8,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,27,0,'2025-11-17','10:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,28,0,'2025-11-17','10:24:00','WPRC0080',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,29,0,'2025-11-17','10:25:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,30,0,'2025-11-17','10:26:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,31,0,'2025-11-17','10:44:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,32,0,'2025-11-17','10:44:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,33,0,'2025-11-18','10:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,34,0,'2025-11-18','10:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,35,0,'2025-11-18','10:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,36,0,'2025-11-18','10:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,8,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,37,0,'2025-11-18','10:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,8,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,38,0,'2025-11-18','10:24:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,39,0,'2025-11-18','10:25:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,40,0,'2025-11-18','23:08:00','WPRC0077',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,41,0,'2025-11-18','23:10:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,194,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,42,0,'2025-11-18','23:11:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,43,0,'2025-11-18','23:12:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',161,44,0,'2025-11-18','23:12:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',163,1,0,'2025-11-17','14:24:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-19 17:00:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',163,2,0,'2025-11-17','20:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-19 17:00:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',163,3,0,'2025-11-17','20:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-19 17:00:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',163,4,0,'2025-11-17','20:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-19 17:00:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',163,5,0,'2025-11-17','20:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-19 17:00:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',163,6,0,'2025-11-17','20:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-19 17:00:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',163,7,0,'2025-11-17','20:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,8,0,'',0,'','','','','','vishal','2025-11-19 17:00:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',163,8,0,'2025-11-18','20:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-19 17:00:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',163,9,0,'2025-11-18','20:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-19 17:00:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',163,10,0,'2025-11-18','20:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-19 17:00:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',163,11,0,'2025-11-18','20:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,8,0,'',0,'','','','','','vishal','2025-11-19 17:00:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',163,12,0,'2025-11-18','20:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,8,0,'',0,'','','','','','vishal','2025-11-19 17:00:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',163,13,0,'2025-11-19','16:56:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-19 17:00:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',163,14,0,'2025-11-19','16:56:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-19 17:00:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,1,0,'2025-11-09','01:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,2,0,'2025-11-09','01:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,3,0,'2025-11-09','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,4,0,'2025-11-09','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,5,0,'2025-11-09','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,6,0,'2025-11-09','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'404',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,7,0,'2025-11-09','01:00:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'404',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,8,0,'2025-11-09','12:40:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,9,0,'2025-11-09','12:42:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,10,0,'2025-11-10','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,11,0,'2025-11-10','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,12,0,'2025-11-10','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,13,0,'2025-11-10','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,14,0,'2025-11-10','01:00:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,15,0,'2025-11-10','12:40:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,16,0,'2025-11-10','12:41:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,17,0,'2025-11-10','12:42:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,18,0,'2025-11-10','12:42:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,19,0,'2025-11-11','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,20,0,'2025-11-11','01:00:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,21,0,'2025-11-11','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,22,0,'2025-11-11','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,23,0,'2025-11-11','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,24,0,'2025-11-11','10:21:00','WPRC0090',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,25,0,'2025-11-11','12:41:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,26,0,'2025-11-11','12:43:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,27,0,'2025-11-11','12:43:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,28,0,'2025-11-12','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,29,0,'2025-11-12','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,30,0,'2025-11-12','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,31,0,'2025-11-12','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,32,0,'2025-11-12','01:00:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,33,0,'2025-11-12','12:41:00','WPRC0091',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,34,0,'2025-11-12','12:43:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,35,0,'2025-11-12','12:44:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,36,0,'2025-11-12','18:21:00','USG0100',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,177,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,37,0,'2025-11-12','18:26:00','USG0101',0,1.00,5000,5000,'A',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,38,0,'2025-11-13','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,39,0,'2025-11-13','01:00:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,40,0,'2025-11-13','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,41,0,'2025-11-13','01:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,42,0,'2025-11-13','01:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,43,0,'2025-11-13','11:40:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,44,0,'2025-11-13','11:40:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,45,0,'2025-11-14','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,46,0,'2025-11-14','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,47,0,'2025-11-14','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,48,0,'2025-11-14','01:00:00','DRC0018',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,49,0,'2025-11-14','01:00:00','DRC0019',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,50,0,'2025-11-14','11:40:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,51,0,'2025-11-14','11:41:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,52,0,'2025-11-14','18:04:00','USG0099',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,53,0,'2025-11-15','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,54,0,'2025-11-15','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,55,0,'2025-11-15','01:00:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,56,0,'2025-11-15','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,57,0,'2025-11-15','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,58,0,'2025-11-15','11:50:00','SURG0014',0,1.00,50000,50000,'P',0,0,50000.00,0.00,0.00,50000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,59,0,'2025-11-15','11:50:00','SURG0015',0,1.00,12500,12500,'P',0,0,12500.00,0.00,0.00,12500.00,'',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,60,0,'2025-11-15','13:44:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,61,0,'2025-11-15','13:44:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,62,0,'2025-11-15','13:45:00','WPRC0091',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,63,0,'2025-11-15','13:46:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,64,0,'2025-11-15','13:50:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,65,0,'2025-11-15','13:50:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,66,0,'2025-11-15','13:53:00','WPRC0097',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,62,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,67,0,'2025-11-15','13:56:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,68,0,'2025-11-16','01:00:00','DRC0019',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'208',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,69,0,'2025-11-16','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'208',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,70,0,'2025-11-16','13:46:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,71,0,'2025-11-16','13:46:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,72,0,'2025-11-16','13:47:00','XRY0045',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,73,0,'2025-11-16','13:51:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,74,0,'2025-11-16','14:10:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,75,0,'2025-11-16','14:10:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,76,0,'2025-11-16','14:10:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,77,0,'2025-11-17','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,78,0,'2025-11-17','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,79,0,'2025-11-17','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,80,0,'2025-11-17','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,81,0,'2025-11-17','01:00:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,82,0,'2025-11-17','10:53:00','USG0095',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,83,0,'2025-11-17','14:10:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,84,0,'2025-11-18','01:00:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,85,0,'2025-11-18','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,86,0,'2025-11-18','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,87,0,'2025-11-18','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,88,0,'2025-11-18','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,89,0,'2025-11-18','09:46:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,90,0,'2025-11-18','10:52:00','WPRC0113',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,91,0,'2025-11-18','14:17:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,92,0,'2025-11-19','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,93,0,'2025-11-19','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,94,0,'2025-11-19','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,95,0,'2025-11-19','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,96,0,'2025-11-19','01:00:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,97,0,'2025-11-19','10:56:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,98,0,'2025-11-19','10:56:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',164,99,0,'2025-11-20','10:56:00','DRC0018',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,8,0,'',0,'','','','','','riya','2025-11-20 12:03:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',165,1,0,'2025-11-19','10:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 18:28:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',165,2,0,'2025-11-19','10:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 18:28:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',165,3,0,'2025-11-19','10:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-21 18:28:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',165,4,0,'2025-11-19','10:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-21 18:28:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',165,5,0,'2025-11-19','10:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-21 18:28:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',165,6,0,'2025-11-19','10:50:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,3,0,'',0,'','','','','','vishal','2025-11-21 18:28:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',165,7,0,'2025-11-19','10:50:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,3,0,'',0,'','','','','','vishal','2025-11-21 18:28:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',165,8,0,'2025-11-19','11:25:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 18:28:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',165,9,0,'2025-11-20','11:26:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-21 18:28:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',165,10,0,'2025-11-19','18:26:00','OETR0004',0,1.00,70870,70870,'P',0,0,70870.00,0.00,0.00,70870.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 18:28:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',166,1,0,'2025-11-19','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:07:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',166,2,0,'2025-11-19','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:07:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',166,3,0,'2025-11-19','09:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:07:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',166,4,0,'2025-11-19','09:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:07:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',166,5,0,'2025-11-19','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:07:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',166,6,0,'2025-11-19','09:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-11-20 12:07:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',166,7,0,'2025-11-19','09:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-11-20 12:07:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',166,8,0,'2025-11-19','11:34:00','SURG0014',0,1.00,21400,21400,'P',0,0,21400.00,0.00,0.00,21400.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:07:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',166,9,0,'2025-11-19','11:34:00','SURG0015',0,1.00,7100,7100,'P',0,0,7100.00,0.00,0.00,7100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:07:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',166,10,0,'2025-11-20','11:34:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:07:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',166,11,0,'2025-11-20','11:37:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:07:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',167,1,0,'2025-11-18','12:24:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:29:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',167,2,0,'2025-11-18','12:24:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:29:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',167,3,0,'2025-11-18','13:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:29:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',167,4,0,'2025-11-18','13:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:29:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',167,5,0,'2025-11-18','13:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'310',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:29:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',167,6,0,'2025-11-18','13:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'310',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:29:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',167,7,0,'2025-11-18','13:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'310',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:29:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',167,8,0,'2025-11-18','13:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,8,0,'',0,'','','','','','riya','2025-11-20 12:29:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',167,9,0,'2025-11-19','12:25:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:29:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',167,10,0,'2025-11-19','13:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'310',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:29:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',167,11,0,'2025-11-19','13:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'310',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:29:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',167,12,0,'2025-11-19','13:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'310',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:29:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',167,13,0,'2025-11-19','13:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,4,0,'',0,'','','','','','riya','2025-11-20 12:29:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',167,14,0,'2025-11-19','13:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,4,0,'',0,'','','','','','riya','2025-11-20 12:29:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',167,15,0,'2025-11-20','12:11:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:29:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',167,16,0,'2025-11-20','12:11:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-20 12:29:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,1,0,'2025-11-18','10:29:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,2,0,'2025-11-18','10:29:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,3,0,'2025-11-18','10:29:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,4,0,'2025-11-18','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,5,0,'2025-11-18','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,6,0,'2025-11-18','13:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,8,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,7,0,'2025-11-18','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,8,0,'2025-11-18','13:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,9,0,'2025-11-18','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,10,0,'2025-11-19','10:29:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,11,0,'2025-11-19','10:30:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,12,0,'2025-11-19','12:36:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,13,0,'2025-11-19','13:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,14,0,'2025-11-19','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,15,0,'2025-11-19','13:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,16,0,'2025-11-19','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,17,0,'2025-11-20','12:35:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,18,0,'2025-11-20','12:36:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',169,19,0,'2025-11-20','12:37:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:20:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,1,0,'2025-11-16','09:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,2,0,'2025-11-16','09:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,3,0,'2025-11-16','09:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,4,0,'2025-11-16','09:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,5,0,'2025-11-16','09:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,6,0,'2025-11-16','09:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,7,0,'2025-11-16','09:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,8,0,'2025-11-16','10:49:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,9,0,'2025-11-16','10:50:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,10,0,'2025-11-16','10:50:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,11,0,'2025-11-16','10:50:00','XRY0045',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,12,0,'2025-11-16','10:51:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,13,0,'2025-11-16','10:51:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,14,0,'2025-11-17','09:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,8,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,15,0,'2025-11-17','09:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'209',0,8,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,16,0,'2025-11-17','10:50:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,17,0,'2025-11-17','10:51:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,18,0,'2025-11-17','12:13:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,19,0,'2025-11-17','12:41:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,20,0,'2025-11-17','12:41:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,21,0,'2025-11-17','12:42:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,22,0,'2025-11-17','14:13:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,23,0,'2025-11-18','09:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,24,0,'2025-11-18','09:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,25,0,'2025-11-18','09:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,26,0,'2025-11-18','09:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,8,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,27,0,'2025-11-18','09:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,8,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,28,0,'2025-11-18','09:51:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,29,0,'2025-11-19','09:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,30,0,'2025-11-19','09:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,31,0,'2025-11-19','09:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,32,0,'2025-11-19','09:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,33,0,'2025-11-19','09:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,34,0,'2025-11-19','12:13:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,35,0,'2025-11-19','12:13:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,36,0,'2025-11-20','12:14:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',170,37,0,'2025-11-20','12:15:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-11-20 13:17:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,1,0,'2025-11-18','11:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,2,0,'2025-11-18','11:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,3,0,'2025-11-18','11:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,4,0,'2025-11-18','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,5,0,'2025-11-18','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,6,0,'2025-11-18','11:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,7,0,'2025-11-18','11:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,8,0,'2025-11-18','14:04:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,9,0,'2025-11-18','14:04:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,10,0,'2025-11-19','11:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,11,0,'2025-11-19','11:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'410',0,3,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,12,0,'2025-11-19','11:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,13,0,'2025-11-19','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,14,0,'2025-11-19','11:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,15,0,'2025-11-19','14:24:00','SURG0014',0,1.00,51220,51220,'P',0,0,51220.00,0.00,0.00,51220.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,16,0,'2025-11-19','14:24:00','SURG0015',0,1.00,17000,17000,'P',0,0,17000.00,0.00,0.00,17000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,17,0,'2025-11-20','14:04:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,18,0,'2025-11-20','14:05:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',171,19,0,'2025-11-20','14:07:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 15:06:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',172,1,0,'2025-11-20','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 19:13:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',172,2,0,'2025-11-20','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 19:13:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',172,3,0,'2025-11-20','09:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','vishal','2025-11-20 19:13:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',172,4,0,'2025-11-20','09:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','vishal','2025-11-20 19:13:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',172,5,0,'2025-11-20','17:03:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 19:13:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',172,6,0,'2025-11-20','17:03:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 19:13:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',172,7,0,'2025-11-20','19:11:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-20 19:13:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',172,8,0,'2025-11-20','19:12:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 19:13:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',172,9,0,'2025-11-20','19:12:00','SURG0014',0,1.00,11000,11000,'P',0,0,11000.00,0.00,0.00,11000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-20 19:13:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',172,10,0,'2025-11-20','19:12:00','SURG0015',0,1.00,3700,3700,'P',0,0,3700.00,0.00,0.00,3700.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-20 19:13:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,1,0,'2025-11-16','11:01:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,2,0,'2025-11-16','11:04:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,3,0,'2025-11-16','11:05:00','XRY0045',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,4,0,'2025-11-16','11:06:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,5,0,'2025-11-16','11:06:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,6,0,'2025-11-16','11:07:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,7,0,'2025-11-16','18:20:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,8,0,'2025-11-16','18:20:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,9,0,'2025-11-16','18:20:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,10,0,'2025-11-16','18:20:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,11,0,'2025-11-16','18:20:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,12,0,'2025-11-16','18:20:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,13,0,'2025-11-17','10:35:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,14,0,'2025-11-17','10:36:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,15,0,'2025-11-17','11:01:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,16,0,'2025-11-17','11:01:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,17,0,'2025-11-17','11:05:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,18,0,'2025-11-17','11:06:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,19,0,'2025-11-17','11:06:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,20,0,'2025-11-17','11:07:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,21,0,'2025-11-17','18:20:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,22,0,'2025-11-17','18:20:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,8,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,23,0,'2025-11-17','18:20:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,24,0,'2025-11-17','18:20:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,25,0,'2025-11-17','18:20:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,8,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,26,0,'2025-11-18','10:36:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,27,0,'2025-11-18','10:38:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,28,0,'2025-11-18','11:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,8,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,29,0,'2025-11-18','18:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,30,0,'2025-11-18','18:20:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,8,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,31,0,'2025-11-18','18:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,32,0,'2025-11-18','18:20:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,33,0,'2025-11-19','13:00:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,34,0,'2025-11-19','13:00:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,35,0,'2025-11-19','13:02:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,36,0,'2025-11-19','18:20:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,37,0,'2025-11-19','18:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,38,0,'2025-11-19','18:20:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,39,0,'2025-11-19','18:20:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,40,0,'2025-11-19','18:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,41,0,'2025-11-20','18:20:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,42,0,'2025-11-20','18:20:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,43,0,'2025-11-20','20:19:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',173,44,0,'2025-11-20','20:27:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',174,1,0,'2025-11-18','12:22:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 11:55:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',174,2,0,'2025-11-18','12:22:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 11:55:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',174,3,0,'2025-11-18','13:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 11:55:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',174,4,0,'2025-11-18','13:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 11:55:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',174,5,0,'2025-11-18','13:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-11-21 11:55:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',174,6,0,'2025-11-18','13:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-11-21 11:55:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',174,7,0,'2025-11-18','13:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-11-21 11:55:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',174,8,0,'2025-11-18','13:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,8,0,'',0,'','','','','','vishal','2025-11-21 11:55:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',174,9,0,'2025-11-19','12:22:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 11:55:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',174,10,0,'2025-11-19','13:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,4,0,'',0,'','','','','','vishal','2025-11-21 11:55:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',175,1,0,'2025-11-20','03:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',175,2,0,'2025-11-20','03:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',175,3,0,'2025-11-20','03:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',175,4,0,'2025-11-20','03:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',175,5,0,'2025-11-20','03:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',175,6,0,'2025-11-20','03:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-21 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',175,7,0,'2025-11-20','03:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-21 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',175,8,0,'2025-11-21','03:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',175,9,0,'2025-11-21','03:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',175,10,0,'2025-11-21','03:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',175,11,0,'2025-11-21','03:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','vishal','2025-11-21 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',175,12,0,'2025-11-21','03:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','vishal','2025-11-21 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',175,13,0,'2025-11-21','15:46:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',175,14,0,'2025-11-21','15:47:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',175,15,0,'2025-11-21','15:47:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,37,0,'',0,'','','','','','vishal','2025-11-21 19:42:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,1,0,'2025-11-14','13:36:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,2,0,'2025-11-14','13:36:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,3,0,'2025-11-14','13:36:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,4,0,'2025-11-14','13:36:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,5,0,'2025-11-14','13:36:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,6,0,'2025-11-14','13:36:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,7,0,'2025-11-14','13:36:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,8,0,'2025-11-14','16:29:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,9,0,'2025-11-14','16:29:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,10,0,'2025-11-14','16:29:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,11,0,'2025-11-15','13:36:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,12,0,'2025-11-15','13:36:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,13,0,'2025-11-15','13:36:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,14,0,'2025-11-15','13:36:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,15,0,'2025-11-15','13:36:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,16,0,'2025-11-15','14:12:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,17,0,'2025-11-15','14:36:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,18,0,'2025-11-15','14:39:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,19,0,'2025-11-16','13:36:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,20,0,'2025-11-16','13:36:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,21,0,'2025-11-16','13:36:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,22,0,'2025-11-16','13:36:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,23,0,'2025-11-16','13:36:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,24,0,'2025-11-16','14:36:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,25,0,'2025-11-16','14:39:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,26,0,'2025-11-17','13:36:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,27,0,'2025-11-17','13:36:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,28,0,'2025-11-17','13:36:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,29,0,'2025-11-17','13:36:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,8,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,30,0,'2025-11-17','13:36:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,8,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,31,0,'2025-11-17','14:05:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,32,0,'2025-11-17','14:06:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,33,0,'2025-11-18','09:53:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,34,0,'2025-11-18','09:53:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,35,0,'2025-11-18','12:58:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,37,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,36,0,'2025-11-18','13:36:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,37,0,'2025-11-18','13:36:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,38,0,'2025-11-18','13:36:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,8,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,39,0,'2025-11-18','13:36:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,8,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,40,0,'2025-11-18','13:36:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,41,0,'2025-11-19','12:57:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,42,0,'2025-11-19','12:57:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,43,0,'2025-11-19','13:36:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,44,0,'2025-11-19','13:36:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,45,0,'2025-11-19','13:36:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,46,0,'2025-11-19','13:36:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,47,0,'2025-11-19','13:36:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,48,0,'2025-11-20','13:36:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,49,0,'2025-11-20','13:36:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,50,0,'2025-11-20','13:36:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,51,0,'2025-11-20','13:36:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,52,0,'2025-11-20','13:36:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,53,0,'2025-11-20','15:49:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,54,0,'2025-11-20','15:49:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,55,0,'2025-11-20','15:50:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,56,0,'2025-11-21','13:21:00','XRY0017',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,57,0,'2025-11-21','13:36:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,58,0,'2025-11-21','13:36:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,59,0,'2025-11-21','13:36:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,60,0,'2025-11-21','13:36:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,61,0,'2025-11-21','13:36:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,62,0,'2025-11-21','15:49:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,63,0,'2025-11-21','15:49:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,64,0,'2025-11-21','15:50:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,20,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,65,0,'2025-11-22','13:03:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,66,0,'2025-11-22','13:05:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',176,67,0,'2025-11-22','13:09:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-22 13:18:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',177,1,0,'2025-11-21','11:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 15:19:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',177,2,0,'2025-11-21','11:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 15:19:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',177,3,0,'2025-11-21','11:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-22 15:19:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',177,4,0,'2025-11-21','11:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-22 15:19:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',177,5,0,'2025-11-21','11:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-22 15:19:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',177,6,0,'2025-11-21','11:00:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-22 15:19:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',177,7,0,'2025-11-21','11:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-22 15:19:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',177,8,0,'2025-11-21','12:15:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 15:19:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',177,9,0,'2025-11-21','12:15:00','ROOM0008',0,2.00,200,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 15:19:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',177,10,0,'2025-11-21','12:15:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','riya','2025-11-22 15:19:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',177,11,0,'2025-11-22','11:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-22 15:19:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',177,12,0,'2025-11-22','12:15:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 15:19:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,1,0,'2025-11-18','10:26:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,2,0,'2025-11-18','10:26:00','WPRC0106',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,3,0,'2025-11-18','10:26:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,4,0,'2025-11-18','10:26:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,5,0,'2025-11-18','10:27:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,6,0,'2025-11-18','10:28:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,37,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,7,0,'2025-11-18','21:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,8,0,'2025-11-18','21:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,9,0,'2025-11-18','21:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,10,0,'2025-11-18','21:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,11,0,'2025-11-18','21:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,12,0,'2025-11-19','10:27:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,13,0,'2025-11-19','10:27:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,14,0,'2025-11-19','10:27:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,15,0,'2025-11-19','11:40:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,16,0,'2025-11-19','11:41:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,17,0,'2025-11-19','21:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,18,0,'2025-11-19','21:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,19,0,'2025-11-19','21:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,20,0,'2025-11-19','21:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,21,0,'2025-11-19','21:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,22,0,'2025-11-20','11:41:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,23,0,'2025-11-20','11:42:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,24,0,'2025-11-20','15:43:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,25,0,'2025-11-20','21:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,26,0,'2025-11-20','21:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,27,0,'2025-11-20','21:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'407',0,4,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,28,0,'2025-11-20','21:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,29,0,'2025-11-20','21:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,30,0,'2025-11-21','15:44:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,31,0,'2025-11-21','21:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,32,0,'2025-11-21','21:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,33,0,'2025-11-21','21:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,34,0,'2025-11-21','21:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,35,0,'2025-11-21','21:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,36,0,'2025-11-22','16:19:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,37,0,'2025-11-22','21:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,38,0,'2025-11-22','21:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,39,0,'2025-11-22','21:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,40,0,'2025-11-22','21:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,41,0,'2025-11-22','21:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,42,0,'2025-11-23','10:29:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',178,43,0,'2025-11-23','10:31:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-11-23 10:45:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,1,0,'2025-11-16','14:15:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,2,0,'2025-11-16','14:15:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,3,0,'2025-11-16','14:16:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,188,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,4,0,'2025-11-16','17:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,5,0,'2025-11-16','17:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,6,0,'2025-11-16','17:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,7,0,'2025-11-16','17:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,8,0,'2025-11-16','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,9,0,'2025-11-17','17:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,10,0,'2025-11-17','17:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,11,0,'2025-11-17','17:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,12,0,'2025-11-17','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,13,0,'2025-11-17','17:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,14,0,'2025-11-18','11:52:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,15,0,'2025-11-18','17:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,16,0,'2025-11-18','17:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,17,0,'2025-11-18','17:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,18,0,'2025-11-18','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,19,0,'2025-11-18','17:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,20,0,'2025-11-18','21:22:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,188,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,21,0,'2025-11-18','21:23:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,22,0,'2025-11-19','11:23:00','SURG0014',0,1.00,60000,60000,'P',0,0,60000.00,0.00,0.00,60000.00,'',0,188,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,23,0,'2025-11-19','11:23:00','SURG0015',0,1.00,15000,15000,'P',0,0,15000.00,0.00,0.00,15000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,24,0,'2025-11-19','17:30:00','ROOM0009',0,0.50,3200,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,25,0,'2025-11-19','17:30:00','AECO0008',0,0.50,400,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,26,0,'2025-11-19','17:30:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,27,0,'2025-11-19','21:19:00','CARE0003',0,0.50,600,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,28,0,'2025-11-19','21:20:00','CARE0004',0,0.50,800,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,29,0,'2025-11-19','21:20:00','ROOM0009',0,0.50,5500,2750,'P',0,0,2750.00,0.00,0.00,2750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,30,0,'2025-11-19','21:21:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,31,0,'2025-11-19','21:21:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,32,0,'2025-11-19','21:23:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,33,0,'2025-11-19','21:24:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,34,0,'2025-11-19','21:24:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,35,0,'2025-11-20','16:00:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,36,0,'2025-11-20','16:03:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,188,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,37,0,'2025-11-20','17:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,38,0,'2025-11-20','17:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,39,0,'2025-11-20','17:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,40,0,'2025-11-20','17:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,41,0,'2025-11-20','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,42,0,'2025-11-21','16:00:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,43,0,'2025-11-21','16:01:00','WPRC0114',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,44,0,'2025-11-21','17:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,45,0,'2025-11-21','17:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,46,0,'2025-11-21','17:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,47,0,'2025-11-21','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,48,0,'2025-11-21','17:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,49,0,'2025-11-22','17:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,50,0,'2025-11-22','17:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,51,0,'2025-11-22','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,52,0,'2025-11-22','17:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,53,0,'2025-11-22','17:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,54,0,'2025-11-23','12:46:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',179,55,0,'2025-11-19','13:33:00','SURG0017',0,1.00,10000,10000,'P',0,0,10000.00,0.00,0.00,10000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,1,0,'2025-11-21','14:35:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,2,0,'2025-11-21','17:32:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,3,0,'2025-11-21','17:33:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,4,0,'2025-11-21','22:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,5,0,'2025-11-21','22:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,6,0,'2025-11-21','22:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,7,0,'2025-11-22','14:35:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,8,0,'2025-11-22','14:36:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,9,0,'2025-11-22','17:32:00','ROOM0008',0,9.00,100,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,10,0,'2025-11-22','22:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,11,0,'2025-11-22','22:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,12,0,'2025-11-22','22:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,13,0,'2025-11-22','22:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'305',0,4,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,14,0,'2025-11-22','22:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,15,0,'2025-11-22','22:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,16,0,'2025-11-22','22:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,17,0,'2025-11-23','17:33:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,18,0,'2025-11-23','22:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,19,0,'2025-11-23','22:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,20,0,'2025-11-23','22:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,21,0,'2025-11-23','22:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,22,0,'2025-11-23','22:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,23,0,'2025-11-24','10:00:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',180,24,0,'2025-11-24','12:13:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-11-24 12:49:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',181,1,0,'2025-11-23','01:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:21:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',181,2,0,'2025-11-23','01:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:21:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',181,3,0,'2025-11-23','01:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:21:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',181,4,0,'2025-11-23','01:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:21:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',181,5,0,'2025-11-23','01:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:21:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',181,6,0,'2025-11-23','01:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','riya','2025-11-24 12:21:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',181,7,0,'2025-11-23','01:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','riya','2025-11-24 12:21:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',181,8,0,'2025-11-23','09:46:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:21:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',181,9,0,'2025-11-24','01:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:21:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',181,10,0,'2025-11-24','01:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:21:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',181,11,0,'2025-11-24','01:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:21:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',181,12,0,'2025-11-24','01:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','riya','2025-11-24 12:21:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',183,1,0,'2025-11-23','11:15:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 19:10:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',183,2,0,'2025-11-23','11:15:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 19:10:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',183,3,0,'2025-11-23','18:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 19:10:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',183,4,0,'2025-11-23','18:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 19:10:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',183,5,0,'2025-11-23','18:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 19:10:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',183,6,0,'2025-11-23','18:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 19:10:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',183,7,0,'2025-11-23','18:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 19:10:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',183,8,0,'2025-11-23','18:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-11-24 19:10:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',183,9,0,'2025-11-24','11:15:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 19:10:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',183,10,0,'2025-11-24','18:49:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-24 19:10:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',184,1,0,'2025-09-30','18:51:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-25 18:59:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',184,2,0,'2025-09-30','18:51:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-25 18:59:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',184,3,0,'2025-09-30','18:52:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-25 18:59:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',184,4,0,'2025-09-30','18:53:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-25 18:59:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',184,5,0,'2025-09-30','18:53:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-25 18:59:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',184,6,0,'2025-09-30','18:53:00','SURG0014',0,1.00,6200,6200,'P',0,0,6200.00,0.00,0.00,6200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-25 18:59:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',184,7,0,'2025-09-30','18:54:00','SURG0015',0,1.00,2100,2100,'P',0,0,2100.00,0.00,0.00,2100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-25 18:59:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,1,0,'2025-11-23','03:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,2,0,'2025-11-23','03:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,3,0,'2025-11-23','03:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,4,0,'2025-11-23','03:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,5,0,'2025-11-23','03:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,6,0,'2025-11-23','03:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,7,0,'2025-11-23','03:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,8,0,'2025-11-23','09:50:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,9,0,'2025-11-23','09:50:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,10,0,'2025-11-23','09:52:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,11,0,'2025-11-23','09:57:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,213,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,12,0,'2025-11-23','09:59:00','XRY0045',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,13,0,'2025-11-23','21:13:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,14,0,'2025-11-23','21:13:00','USG0091',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,15,0,'2025-11-24','03:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,16,0,'2025-11-24','03:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,17,0,'2025-11-24','03:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,18,0,'2025-11-24','03:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,19,0,'2025-11-24','03:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,20,0,'2025-11-24','09:52:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',185,21,0,'2025-11-24','21:13:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:24:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,1,0,'2025-11-19','10:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,2,0,'2025-11-19','10:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,3,0,'2025-11-19','10:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,4,0,'2025-11-19','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,5,0,'2025-11-19','10:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,6,0,'2025-11-19','10:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,7,0,'2025-11-19','10:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,8,0,'2025-11-19','17:54:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,9,0,'2025-11-19','17:54:00','WPRC0079',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,10,0,'2025-11-20','10:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,11,0,'2025-11-20','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,12,0,'2025-11-20','10:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,13,0,'2025-11-20','10:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,14,0,'2025-11-20','10:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,15,0,'2025-11-20','17:53:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,16,0,'2025-11-20','17:54:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,17,0,'2025-11-20','17:54:00','WPRC0100',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,39,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,18,0,'2025-11-21','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,19,0,'2025-11-21','11:34:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,20,0,'2025-11-21','11:34:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,21,0,'2025-11-21','12:02:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,22,0,'2025-11-21','12:02:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,23,0,'2025-11-21','12:02:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,24,0,'2025-11-22','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,25,0,'2025-11-22','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,26,0,'2025-11-22','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,27,0,'2025-11-22','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,28,0,'2025-11-22','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,29,0,'2025-11-22','16:25:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,30,0,'2025-11-22','17:30:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,31,0,'2025-11-23','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,32,0,'2025-11-23','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,33,0,'2025-11-23','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,34,0,'2025-11-23','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,35,0,'2025-11-23','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,36,0,'2025-11-23','17:29:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,37,0,'2025-11-24','10:04:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,38,0,'2025-11-24','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,39,0,'2025-11-24','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,40,0,'2025-11-24','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,41,0,'2025-11-24','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',186,42,0,'2025-11-24','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:45:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',187,1,0,'2025-11-24','08:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:05:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',187,2,0,'2025-11-24','08:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:05:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',187,3,0,'2025-11-24','08:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:05:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',187,4,0,'2025-11-24','08:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:05:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',187,5,0,'2025-11-24','08:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:05:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',187,6,0,'2025-11-24','08:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','vishal','2025-11-25 12:05:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',187,7,0,'2025-11-24','08:50:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','vishal','2025-11-25 12:05:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',187,8,0,'2025-11-24','11:59:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:05:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',187,9,0,'2025-11-25','08:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','vishal','2025-11-25 12:05:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',187,10,0,'2025-11-25','11:59:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-25 12:05:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',187,11,0,'2025-11-24','12:04:00','SURG0014',0,1.00,14000,14000,'P',0,0,14000.00,0.00,0.00,14000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-25 12:05:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',187,12,0,'2025-11-24','12:04:00','SURG0015',0,1.00,4400,4400,'P',0,0,4400.00,0.00,0.00,4400.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-25 12:05:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,1,0,'2025-11-22','10:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,2,0,'2025-11-22','10:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,3,0,'2025-11-22','10:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,4,0,'2025-11-22','10:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,5,0,'2025-11-22','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,6,0,'2025-11-22','10:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,7,0,'2025-11-22','10:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,8,0,'2025-11-22','11:56:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,9,0,'2025-11-22','11:56:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,10,0,'2025-11-22','11:57:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,11,0,'2025-11-22','11:58:00','WPRC0086',0,2.00,200,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,12,0,'2025-11-22','11:58:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,13,0,'2025-11-22','11:59:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,14,0,'2025-11-23','10:06:00','XRY0045',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,15,0,'2025-11-23','10:07:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,212,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,16,0,'2025-11-23','10:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,17,0,'2025-11-23','10:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,18,0,'2025-11-23','10:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,19,0,'2025-11-23','10:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,20,0,'2025-11-23','10:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,21,0,'2025-11-23','11:57:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,22,0,'2025-11-23','11:58:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,23,0,'2025-11-23','11:58:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,24,0,'2025-11-24','10:06:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,25,0,'2025-11-24','10:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,26,0,'2025-11-24','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,27,0,'2025-11-24','10:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,28,0,'2025-11-24','10:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,29,0,'2025-11-24','10:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,30,0,'2025-11-24','12:28:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,31,0,'2025-11-25','12:14:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,32,0,'2025-11-25','12:24:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,33,0,'2025-11-25','12:27:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',188,34,0,'2025-11-24','12:30:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',189,1,0,'2025-11-24','01:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 14:02:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',189,2,0,'2025-11-24','01:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 14:02:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',189,3,0,'2025-11-24','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-25 14:02:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',189,4,0,'2025-11-24','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-25 14:02:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',189,5,0,'2025-11-24','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-25 14:02:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',189,6,0,'2025-11-24','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-25 14:02:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',189,7,0,'2025-11-24','01:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-25 14:02:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',189,8,0,'2025-11-24','14:00:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 14:02:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',189,9,0,'2025-11-24','14:00:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 14:02:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',189,10,0,'2025-11-25','14:00:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 14:02:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',189,11,0,'2025-11-25','14:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-25 14:02:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,1,0,'2025-11-23','12:01:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,2,0,'2025-11-23','16:59:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,3,0,'2025-11-23','17:00:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,4,0,'2025-11-23','20:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,5,0,'2025-11-23','20:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,6,0,'2025-11-23','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,7,0,'2025-11-23','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,8,0,'2025-11-23','20:30:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,9,0,'2025-11-24','17:00:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,10,0,'2025-11-24','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,11,0,'2025-11-24','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,12,0,'2025-11-24','20:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,13,0,'2025-11-24','20:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,14,0,'2025-11-24','20:30:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,15,0,'2025-11-25','17:00:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,16,0,'2025-11-25','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,17,0,'2025-11-25','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,18,0,'2025-11-25','20:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,19,0,'2025-11-25','20:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,20,0,'2025-11-25','20:30:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',190,21,0,'2025-11-26','11:58:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-26 12:04:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',191,1,0,'2025-11-25','05:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:29:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',191,2,0,'2025-11-25','05:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:29:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',191,3,0,'2025-11-25','05:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:29:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',191,4,0,'2025-11-25','05:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:29:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',191,5,0,'2025-11-25','05:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:29:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',191,6,0,'2025-11-25','05:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-26 12:29:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',191,7,0,'2025-11-25','05:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-26 12:29:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',191,8,0,'2025-11-25','12:06:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:29:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',191,9,0,'2025-11-25','12:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:29:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',191,10,0,'2025-11-26','12:06:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:29:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',191,11,0,'2025-11-26','12:07:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-26 12:29:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',191,12,0,'2025-11-26','12:08:00','ROOM0009',0,0.50,3200,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:29:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',191,13,0,'2025-11-26','12:08:00','AECO0008',0,0.50,400,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:29:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',191,14,0,'2025-11-26','12:08:00','CARE0001',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:29:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,1,0,'2025-11-24','11:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,2,0,'2025-11-24','11:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,3,0,'2025-11-24','11:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,4,0,'2025-11-24','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,5,0,'2025-11-24','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,6,0,'2025-11-24','11:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,7,0,'2025-11-24','11:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,8,0,'2025-11-24','16:36:00','WPRC0086',0,2.00,200,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,9,0,'2025-11-24','16:36:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,10,0,'2025-11-24','16:36:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,11,0,'2025-11-25','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,12,0,'2025-11-25','11:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,13,0,'2025-11-25','11:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,14,0,'2025-11-25','11:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,15,0,'2025-11-25','11:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,16,0,'2025-11-25','16:36:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,17,0,'2025-11-26','12:27:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,18,0,'2025-11-24','13:04:00','SURG0016',0,1.00,35000,35000,'P',0,0,35000.00,0.00,0.00,35000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',192,19,0,'2025-11-26','13:04:00','SURG0015',0,1.00,12100,12100,'P',0,0,12100.00,0.00,0.00,12100.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,1,0,'2025-11-17','09:45:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,2,0,'2025-11-17','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,3,0,'2025-11-17','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,4,0,'2025-11-17','13:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,5,0,'2025-11-17','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,6,0,'2025-11-17','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,7,0,'2025-11-17','13:00:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'402',0,70,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,8,0,'2025-11-18','11:51:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,9,0,'2025-11-18','13:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,10,0,'2025-11-18','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,11,0,'2025-11-18','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,12,0,'2025-11-18','13:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'402',0,70,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,13,0,'2025-11-18','13:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,14,0,'2025-11-18','17:55:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,70,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,15,0,'2025-11-18','17:56:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,16,0,'2025-11-18','18:07:00','USG0095',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,17,0,'2025-11-19','13:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,18,0,'2025-11-19','13:35:00','SURG0014',0,1.00,50000,50000,'P',0,0,50000.00,0.00,0.00,50000.00,'',0,70,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,19,0,'2025-11-19','13:36:00','SURG0017',0,1.00,50000,50000,'P',0,0,50000.00,0.00,0.00,50000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,20,0,'2025-11-19','13:37:00','SURG0015',0,1.00,25000,25000,'P',0,0,25000.00,0.00,0.00,25000.00,'',0,70,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,21,0,'2025-11-19','13:38:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,22,0,'2025-11-19','14:35:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,70,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,23,0,'2025-11-19','16:05:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,24,0,'2025-11-19','16:05:00','CARE0004',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,25,0,'2025-11-19','16:05:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,26,0,'2025-11-19','17:57:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,27,0,'2025-11-19','17:57:00','WPRC0092',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,224,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,28,0,'2025-11-19','17:57:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,29,0,'2025-11-19','17:58:00','WPRC0080',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,30,0,'2025-11-19','17:59:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,31,0,'2025-11-19','17:59:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,32,0,'2025-11-19','18:05:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,33,0,'2025-11-20','13:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,34,0,'2025-11-20','13:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,35,0,'2025-11-20','13:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,36,0,'2025-11-20','13:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'213',0,3,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,37,0,'2025-11-20','13:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'213',0,3,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,38,0,'2025-11-20','13:23:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,39,0,'2025-11-20','13:38:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,40,0,'2025-11-20','14:35:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,70,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,41,0,'2025-11-20','17:58:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,42,0,'2025-11-20','17:59:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,43,0,'2025-11-20','17:59:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,44,0,'2025-11-20','18:05:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,45,0,'2025-11-20','18:05:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,46,0,'2025-11-21','10:27:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,47,0,'2025-11-21','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,48,0,'2025-11-21','13:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,49,0,'2025-11-21','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,50,0,'2025-11-21','13:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,3,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,51,0,'2025-11-21','13:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,3,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,52,0,'2025-11-21','13:38:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,53,0,'2025-11-21','14:33:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,54,0,'2025-11-21','14:33:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,55,0,'2025-11-21','14:33:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,56,0,'2025-11-21','14:36:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,57,0,'2025-11-21','14:36:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,58,0,'2025-11-22','10:02:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,59,0,'2025-11-22','10:26:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,60,0,'2025-11-22','10:27:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,61,0,'2025-11-22','10:28:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,62,0,'2025-11-22','10:28:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,63,0,'2025-11-22','10:56:00','WPRC0091',0,4.00,500,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,64,0,'2025-11-22','10:56:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,65,0,'2025-11-22','10:57:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,66,0,'2025-11-22','13:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,67,0,'2025-11-22','13:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,68,0,'2025-11-22','13:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'208',0,70,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,69,0,'2025-11-22','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,70,0,'2025-11-22','13:22:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,71,0,'2025-11-22','13:38:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,72,0,'2025-11-23','10:55:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,73,0,'2025-11-23','10:56:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,74,0,'2025-11-23','10:58:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,75,0,'2025-11-23','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,76,0,'2025-11-23','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,77,0,'2025-11-23','13:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,78,0,'2025-11-23','13:39:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,79,0,'2025-11-24','10:01:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,80,0,'2025-11-24','13:00:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,81,0,'2025-11-24','13:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,82,0,'2025-11-24','13:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'402',0,70,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,83,0,'2025-11-24','13:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,84,0,'2025-11-24','16:43:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,85,0,'2025-11-24','16:43:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,86,0,'2025-11-24','16:46:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,87,0,'2025-11-24','16:46:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,88,0,'2025-11-24','16:48:00','USG0091',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,89,0,'2025-11-24','16:49:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,90,0,'2025-11-25','13:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,91,0,'2025-11-25','13:00:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,92,0,'2025-11-25','13:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,93,0,'2025-11-25','13:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,70,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,94,0,'2025-11-25','16:43:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,95,0,'2025-11-25','16:43:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,96,0,'2025-11-25','16:47:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,97,0,'2025-11-25','16:47:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,98,0,'2025-11-25','16:48:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,99,0,'2025-11-25','16:48:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,100,0,'2025-11-26','13:21:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,101,0,'2025-11-26','13:29:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',194,102,0,'2025-11-26','13:32:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 14:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',195,1,0,'2025-11-26','14:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:24:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',195,2,0,'2025-11-26','14:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:24:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',195,3,0,'2025-11-26','14:30:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'409',0,226,0,'',0,'','','','','','riya','2025-11-26 19:24:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',195,4,0,'2025-11-26','18:16:00','ADMN0007',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:24:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',195,5,0,'2025-11-26','18:51:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:24:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',195,6,0,'2025-11-26','18:51:00','SURG0018',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,226,0,'',0,'','','','','','riya','2025-11-26 19:24:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',195,7,0,'2025-11-26','18:53:00','XRY0045',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:24:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,1,0,'2025-11-25','09:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,2,0,'2025-11-25','09:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,3,0,'2025-11-25','09:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,4,0,'2025-11-25','09:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,5,0,'2025-11-25','09:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,6,0,'2025-11-25','09:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,3,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,7,0,'2025-11-25','09:50:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,3,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,8,0,'2025-11-25','18:42:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,9,0,'2025-11-25','18:42:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,10,0,'2025-11-25','18:43:00','SURG0015',0,1.00,3750,3750,'P',0,0,3750.00,0.00,0.00,3750.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,11,0,'2025-11-25','18:43:00','SURG0014',0,1.00,15000,15000,'P',0,0,15000.00,0.00,0.00,15000.00,'',0,124,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,12,0,'2025-11-25','18:44:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,13,0,'2025-11-25','18:44:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,124,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,14,0,'2025-11-26','09:50:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,3,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,15,0,'2025-11-26','09:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,3,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,16,0,'2025-11-26','09:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,17,0,'2025-11-26','09:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,18,0,'2025-11-26','09:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',196,19,0,'2025-11-26','18:42:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:06:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',197,1,0,'2025-11-26','20:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 09:22:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',197,2,0,'2025-11-26','20:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 09:22:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',197,3,0,'2025-11-26','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-27 09:22:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',197,4,0,'2025-11-26','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-27 09:22:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',197,5,0,'2025-11-26','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-27 09:22:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',197,6,0,'2025-11-26','09:21:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 09:22:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',197,7,0,'2025-11-26','09:21:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 09:22:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',197,8,0,'2025-11-27','09:22:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','riya','2025-11-27 09:22:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,1,0,'2025-11-24','10:39:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,2,0,'2025-11-24','10:39:00','WPRC0086',0,2.00,200,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,3,0,'2025-11-24','10:39:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,4,0,'2025-11-24','10:40:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,5,0,'2025-11-24','10:40:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,6,0,'2025-11-24','10:40:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,7,0,'2025-11-24','18:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,8,0,'2025-11-24','18:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,9,0,'2025-11-24','18:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,10,0,'2025-11-24','18:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,11,0,'2025-11-24','18:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,12,0,'2025-11-24','18:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,13,0,'2025-11-25','10:39:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,14,0,'2025-11-25','10:40:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,15,0,'2025-11-25','13:45:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,16,0,'2025-11-25','18:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,17,0,'2025-11-25','18:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,18,0,'2025-11-25','18:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'410',0,4,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,19,0,'2025-11-25','18:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'410',0,4,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,20,0,'2025-11-25','18:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,21,0,'2025-11-26','12:19:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,22,0,'2025-11-26','12:20:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,23,0,'2025-11-26','18:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'310',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,24,0,'2025-11-26','18:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'310',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,25,0,'2025-11-26','18:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'310',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,26,0,'2025-11-26','18:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,4,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,27,0,'2025-11-26','18:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,4,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,28,0,'2025-11-27','12:19:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,29,0,'2025-11-27','12:20:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',198,30,0,'2025-11-27','12:21:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 13:22:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',199,1,0,'2025-11-27','03:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 12:47:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',199,2,0,'2025-11-27','03:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 12:47:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',199,3,0,'2025-11-27','03:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-27 12:47:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',199,4,0,'2025-11-27','03:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-27 12:47:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',199,5,0,'2025-11-27','03:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-27 12:47:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',199,6,0,'2025-11-27','03:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'410',0,4,0,'',0,'','','','','','riya','2025-11-27 12:47:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',199,7,0,'2025-11-27','12:31:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 12:47:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',199,8,0,'2025-11-27','12:31:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 12:47:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',200,1,0,'2025-11-26','13:33:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:40:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',200,2,0,'2025-11-26','13:34:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:40:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',200,3,0,'2025-11-26','20:40:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:40:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',200,4,0,'2025-11-26','20:40:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:40:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',200,5,0,'2025-11-26','20:40:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:40:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',200,6,0,'2025-11-26','20:40:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:40:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',200,7,0,'2025-11-26','20:40:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:40:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',200,8,0,'2025-11-26','20:40:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-27 13:40:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',200,9,0,'2025-11-27','13:34:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:40:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',200,10,0,'2025-11-27','13:34:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:40:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',200,11,0,'2025-11-27','13:34:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:40:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',200,12,0,'2025-11-27','13:35:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 13:40:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,1,0,'2025-11-22','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,2,0,'2025-11-22','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,3,0,'2025-11-22','09:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,4,0,'2025-11-22','09:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,5,0,'2025-11-22','09:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,6,0,'2025-11-22','09:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,7,0,'2025-11-22','09:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,8,0,'2025-11-22','11:08:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,9,0,'2025-11-22','11:33:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,10,0,'2025-11-22','11:33:00','ROOM0008',0,8.00,100,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,11,0,'2025-11-22','11:34:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,12,0,'2025-11-22','11:44:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,13,0,'2025-11-22','11:45:00','WPRC0087',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,14,0,'2025-11-22','11:45:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,15,0,'2025-11-22','11:46:00','ROOM0004',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,16,0,'2025-11-22','11:46:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,17,0,'2025-11-22','11:51:00','DRC0020',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,212,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,18,0,'2025-11-22','12:07:00','WPRC0116',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,19,0,'2025-11-22','14:30:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,20,0,'2025-11-23','09:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,21,0,'2025-11-23','09:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,22,0,'2025-11-23','09:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,23,0,'2025-11-23','09:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,24,0,'2025-11-23','09:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,25,0,'2025-11-23','11:34:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,26,0,'2025-11-23','11:41:00','WPRC0115',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,78,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,27,0,'2025-11-23','11:44:00','ROOM0008',0,10.00,100,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,28,0,'2025-11-23','11:44:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,29,0,'2025-11-23','11:45:00','WPRC0087',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,30,0,'2025-11-23','11:46:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,31,0,'2025-11-23','11:50:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,78,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,32,0,'2025-11-23','12:03:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,33,0,'2025-11-23','12:07:00','WPRC0116',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,34,0,'2025-11-23','12:09:00','WPRC0117',0,1.00,1700,1700,'P',0,0,1700.00,0.00,0.00,1700.00,'',0,40,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,35,0,'2025-11-23','14:30:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,36,0,'2025-11-24','09:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,37,0,'2025-11-24','09:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,38,0,'2025-11-24','09:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,39,0,'2025-11-24','09:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,40,0,'2025-11-24','09:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,41,0,'2025-11-24','10:31:00','WPRC0116',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,42,0,'2025-11-24','10:34:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,43,0,'2025-11-24','12:00:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,44,0,'2025-11-24','12:01:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,45,0,'2025-11-24','12:01:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,46,0,'2025-11-24','12:01:00','WPRC0087',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,47,0,'2025-11-24','12:03:00','ROOM0008',0,9.00,100,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,48,0,'2025-11-24','14:31:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,49,0,'2025-11-25','09:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,50,0,'2025-11-25','10:31:00','ROOM0008',0,8.00,100,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,51,0,'2025-11-25','10:32:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,52,0,'2025-11-25','10:33:00','WPRC0087',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,53,0,'2025-11-25','10:33:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,54,0,'2025-11-25','10:34:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,55,0,'2025-11-25','14:31:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,56,0,'2025-11-25','16:24:00','WPRC0116',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,57,0,'2025-11-25','16:28:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,58,0,'2025-11-25','16:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,59,0,'2025-11-25','16:31:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,225,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,60,0,'2025-11-25','18:37:00','CARE0003',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,61,0,'2025-11-25','18:37:00','CARE0004',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,62,0,'2025-11-25','18:37:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,63,0,'2025-11-26','09:30:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,64,0,'2025-11-26','09:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,65,0,'2025-11-26','09:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,66,0,'2025-11-26','09:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,67,0,'2025-11-26','09:30:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,68,0,'2025-11-26','14:31:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,69,0,'2025-11-26','16:24:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,70,0,'2025-11-26','16:24:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,71,0,'2025-11-26','16:26:00','WPRC0116',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,72,0,'2025-11-26','16:27:00','USG0095',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,73,0,'2025-11-26','16:28:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,74,0,'2025-11-26','16:28:00','WPRC0087',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,75,0,'2025-11-26','16:28:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,76,0,'2025-11-26','16:29:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,77,0,'2025-11-26','16:32:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,78,0,'2025-11-27','14:01:00','CARE0003',0,0.50,600,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,79,0,'2025-11-27','14:01:00','CARE0004',0,0.50,800,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,80,0,'2025-11-27','14:01:00','ROOM0009',0,0.50,5500,2750,'P',0,0,2750.00,0.00,0.00,2750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,81,0,'2025-11-27','14:04:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,82,0,'2025-11-27','14:05:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,83,0,'2025-11-27','14:13:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,84,0,'2025-11-27','14:14:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,85,0,'2025-11-27','14:16:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,86,0,'2025-11-27','14:17:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',201,87,0,'2025-11-27','14:32:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:43:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,1,0,'2025-11-25','09:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,2,0,'2025-11-25','09:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,3,0,'2025-11-25','10:44:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,4,0,'2025-11-25','10:44:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,5,0,'2025-11-25','10:44:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,6,0,'2025-11-25','10:45:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,7,0,'2025-11-25','11:21:00','WPRC0086',0,4.00,200,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,8,0,'2025-11-25','11:21:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,9,0,'2025-11-25','11:21:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,10,0,'2025-11-25','11:22:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,11,0,'2025-11-25','11:22:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,12,0,'2025-11-25','20:22:00','SURG0015',0,1.00,16650,16650,'P',0,0,16650.00,0.00,0.00,16650.00,'',0,3,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,13,0,'2025-11-25','20:22:00','SURG0014',0,1.00,50000,50000,'P',0,0,50000.00,0.00,0.00,50000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,14,0,'2025-11-26','09:45:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'210',0,3,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,15,0,'2025-11-26','10:56:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,16,0,'2025-11-26','11:25:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,17,0,'2025-11-26','11:27:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,18,0,'2025-11-26','11:27:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,19,0,'2025-11-26','19:21:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,20,0,'2025-11-26','19:22:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,21,0,'2025-11-27','09:45:00','ROOM0009',0,0.50,3200,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,22,0,'2025-11-27','09:45:00','AECO0008',0,0.50,400,200,'P',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,23,0,'2025-11-27','09:45:00','CARE0001',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,24,0,'2025-11-27','09:45:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,25,0,'2025-11-27','09:45:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',202,26,0,'2025-11-27','19:22:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:45:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',203,1,0,'2025-11-26','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:41:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',203,2,0,'2025-11-26','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:41:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',203,3,0,'2025-11-26','10:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:41:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',203,4,0,'2025-11-26','10:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:41:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',203,5,0,'2025-11-26','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:41:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',203,6,0,'2025-11-26','10:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-27 19:41:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',203,7,0,'2025-11-26','10:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-27 19:41:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',203,8,0,'2025-11-26','11:18:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:41:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',203,9,0,'2025-11-26','11:19:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:41:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',203,10,0,'2025-11-26','19:38:00','SURG0015',0,1.00,30000,30000,'A',0,0,30000.00,0.00,0.00,30000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-27 19:41:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',203,11,0,'2025-11-26','19:38:00','SURG0014',0,1.00,9800,9800,'A',0,0,9800.00,0.00,0.00,9800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-27 19:41:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',203,12,0,'2025-11-27','10:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-27 19:41:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',203,13,0,'2025-11-27','10:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-27 19:41:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',203,14,0,'2025-11-27','10:00:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:41:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',203,15,0,'2025-11-27','10:00:00','AECO0008',0,0.50,300,150,'P',0,0,150.00,0.00,0.00,150.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:41:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',203,16,0,'2025-11-27','10:00:00','ROOM0009',0,0.50,2900,1450,'P',0,0,1450.00,0.00,0.00,1450.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:41:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',203,17,0,'2025-11-27','11:19:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 19:41:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',203,18,0,'2025-11-27','19:29:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-27 19:41:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',204,1,0,'2025-11-26','09:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:18:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',204,2,0,'2025-11-26','09:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:18:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',204,3,0,'2025-11-26','09:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:18:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',204,4,0,'2025-11-26','09:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:18:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',204,5,0,'2025-11-26','09:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:18:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',204,6,0,'2025-11-26','09:50:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-11-27 21:18:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',204,7,0,'2025-11-26','09:50:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-11-27 21:18:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',204,8,0,'2025-11-26','10:51:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:18:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',204,9,0,'2025-11-26','10:51:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:18:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',204,10,0,'2025-11-26','10:51:00','WPRC0080',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:18:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',204,11,0,'2025-11-26','10:52:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,88,0,'',0,'','','','','','riya','2025-11-27 21:18:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',204,12,0,'2025-11-27','09:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:18:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',204,13,0,'2025-11-27','09:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:18:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',204,14,0,'2025-11-27','09:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:18:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',204,15,0,'2025-11-27','09:50:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-11-27 21:18:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',204,16,0,'2025-11-27','09:50:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-11-27 21:18:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',205,1,0,'2025-11-27','02:26:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:41:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',205,2,0,'2025-11-27','02:28:00','WPRC0089',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:41:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',205,3,0,'2025-11-27','23:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:41:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',205,4,0,'2025-11-27','23:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:41:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',205,5,0,'2025-11-27','23:00:00','ROOM0009',0,0.50,5500,2750,'A',0,0,2750.00,0.00,0.00,2750.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:41:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',205,6,0,'2025-11-27','23:00:00','AECO0008',0,0.50,800,400,'P',0,0,400.00,0.00,0.00,400.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:41:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',205,7,0,'2025-11-27','23:00:00','CARE0001',0,0.50,600,300,'P',0,0,300.00,0.00,0.00,300.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:41:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',205,8,0,'2025-11-28','02:26:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-28 02:41:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',205,9,0,'2025-11-28','02:26:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-28 02:41:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',205,10,0,'2025-11-28','02:27:00','WPRC0101',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:41:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',205,11,0,'2025-11-28','02:27:00','WPRC0086',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:41:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',205,12,0,'2025-11-28','02:28:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:41:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',205,13,0,'2025-11-28','02:34:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:41:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,1,0,'2025-11-25','10:58:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,2,0,'2025-11-25','19:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,3,0,'2025-11-25','19:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,4,0,'2025-11-25','19:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,5,0,'2025-11-25','19:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,6,0,'2025-11-25','19:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,7,0,'2025-11-25','19:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,3,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,8,0,'2025-11-26','10:58:00','WPRC0086',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,9,0,'2025-11-26','11:01:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,10,0,'2025-11-26','11:01:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,188,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,11,0,'2025-11-26','11:04:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,227,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,12,0,'2025-11-26','19:08:00','SURG0014',0,1.00,45000,45000,'P',0,0,45000.00,0.00,0.00,45000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,13,0,'2025-11-26','19:08:00','SURG0015',0,1.00,11250,11250,'P',0,0,11250.00,0.00,0.00,11250.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,14,0,'2025-11-26','19:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,15,0,'2025-11-26','19:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,3,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,16,0,'2025-11-26','19:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,3,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,17,0,'2025-11-26','19:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,18,0,'2025-11-26','19:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,19,0,'2025-11-27','10:54:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,20,0,'2025-11-27','10:56:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,21,0,'2025-11-27','10:59:00','WPRC0086',0,3.00,200,600,'A',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,22,0,'2025-11-27','10:59:00','WPRC0089',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,23,0,'2025-11-27','11:02:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,24,0,'2025-11-27','11:02:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,25,0,'2025-11-27','19:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,26,0,'2025-11-27','19:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,27,0,'2025-11-27','19:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,3,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,28,0,'2025-11-27','19:30:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,3,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,29,0,'2025-11-27','19:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,30,0,'2025-11-28','10:54:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',206,31,0,'2025-11-28','11:01:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-28 11:07:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,1,0,'2025-11-24','11:20:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,2,0,'2025-11-24','11:20:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,3,0,'2025-11-24','11:22:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,4,0,'2025-11-24','22:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,5,0,'2025-11-24','22:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,6,0,'2025-11-24','22:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,7,0,'2025-11-24','22:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,8,0,'2025-11-24','22:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,9,0,'2025-11-25','11:21:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,10,0,'2025-11-25','11:21:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,11,0,'2025-11-25','11:22:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,12,0,'2025-11-25','11:28:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,13,0,'2025-11-25','11:33:00','WPRC0097',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,14,0,'2025-11-25','11:34:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,15,0,'2025-11-25','22:30:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,16,0,'2025-11-25','22:30:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,17,0,'2025-11-25','22:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,18,0,'2025-11-25','22:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,19,0,'2025-11-26','11:34:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,20,0,'2025-11-26','11:34:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,21,0,'2025-11-26','22:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,22,0,'2025-11-26','22:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,23,0,'2025-11-26','22:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,24,0,'2025-11-26','22:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,25,0,'2025-11-26','22:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,26,0,'2025-11-27','11:11:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,27,0,'2025-11-27','22:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,28,0,'2025-11-27','22:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,29,0,'2025-11-27','22:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,30,0,'2025-11-27','22:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,31,0,'2025-11-27','22:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,32,0,'2025-11-28','12:37:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,33,0,'2025-11-28','12:38:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',207,34,0,'2025-11-28','12:38:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',209,1,0,'2025-11-27','11:41:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 09:39:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',209,2,0,'2025-11-27','11:42:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 09:39:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',209,3,0,'2025-11-27','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 09:39:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',209,4,0,'2025-11-27','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 09:39:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',209,5,0,'2025-11-27','15:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-29 09:39:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',209,6,0,'2025-11-27','15:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-29 09:39:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',209,7,0,'2025-11-27','15:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-29 09:39:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',209,8,0,'2025-11-27','15:00:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'207',0,78,0,'',0,'','','','','','vishal','2025-11-29 09:39:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',209,9,0,'2025-11-28','09:36:00','USG0091',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 09:39:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',209,10,0,'2025-11-28','09:37:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-29 09:39:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',209,11,0,'2025-11-28','11:41:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 09:39:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',209,12,0,'2025-11-28','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-29 09:39:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',209,13,0,'2025-11-28','15:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'411',0,78,0,'',0,'','','','','','vishal','2025-11-29 09:39:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',209,14,0,'2025-11-28','15:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'411',0,78,0,'',0,'','','','','','vishal','2025-11-29 09:39:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',209,15,0,'2025-11-28','15:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-29 09:39:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',209,16,0,'2025-11-28','15:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-29 09:39:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',209,17,0,'2025-11-29','09:36:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 09:39:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',209,18,0,'2025-11-29','09:37:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-11-29 09:39:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',210,1,0,'2025-11-27','16:31:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',210,2,0,'2025-11-27','16:37:00','WPRC0090',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',210,3,0,'2025-11-27','17:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',210,4,0,'2025-11-27','17:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',210,5,0,'2025-11-27','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',210,6,0,'2025-11-27','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',210,7,0,'2025-11-27','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',210,8,0,'2025-11-27','17:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-29 12:17:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',210,9,0,'2025-11-28','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',210,10,0,'2025-11-28','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',210,11,0,'2025-11-28','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',210,12,0,'2025-11-28','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-29 12:17:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',210,13,0,'2025-11-28','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-29 12:17:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',210,14,0,'2025-11-29','11:22:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-29 12:17:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,1,0,'2025-11-26','21:20:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,2,0,'2025-11-26','21:20:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,3,0,'2025-11-26','21:20:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,4,0,'2025-11-26','21:20:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,5,0,'2025-11-26','21:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,6,0,'2025-11-26','21:20:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,7,0,'2025-11-26','21:20:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,8,0,'2025-11-26','21:51:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,9,0,'2025-11-27','21:20:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,10,0,'2025-11-27','21:20:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,11,0,'2025-11-27','21:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,12,0,'2025-11-27','21:20:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,13,0,'2025-11-27','21:20:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,14,0,'2025-11-27','21:52:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,15,0,'2025-11-28','21:20:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,16,0,'2025-11-28','21:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,17,0,'2025-11-28','21:20:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,18,0,'2025-11-28','21:20:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,19,0,'2025-11-28','21:20:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,20,0,'2025-11-28','21:52:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',211,21,0,'2025-11-28','21:52:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 21:25:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',212,1,0,'2025-11-29','11:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 21:02:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',212,2,0,'2025-11-29','11:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 21:02:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',212,3,0,'2025-11-29','11:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-29 21:02:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',212,4,0,'2025-11-29','11:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-29 21:02:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',212,5,0,'2025-11-29','11:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-29 21:02:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',212,6,0,'2025-11-29','20:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 21:02:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',212,7,0,'2025-11-29','21:02:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-29 21:02:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',212,8,0,'2025-11-29','21:02:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-29 21:02:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,1,0,'2025-11-20','12:02:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,2,0,'2025-11-20','15:01:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,3,0,'2025-11-20','15:01:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,4,0,'2025-11-20','15:02:00','WPRC0079',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,5,0,'2025-11-20','22:40:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,6,0,'2025-11-20','22:40:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,7,0,'2025-11-20','22:40:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,8,0,'2025-11-20','22:40:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,9,0,'2025-11-20','22:40:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,10,0,'2025-11-21','10:44:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,11,0,'2025-11-21','12:02:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,12,0,'2025-11-21','15:02:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,13,0,'2025-11-21','22:40:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,14,0,'2025-11-21','22:40:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,15,0,'2025-11-21','22:40:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,16,0,'2025-11-21','22:40:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,17,0,'2025-11-21','22:40:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,18,0,'2025-11-22','10:44:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,19,0,'2025-11-22','10:44:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,20,0,'2025-11-22','12:02:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,21,0,'2025-11-22','22:40:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,22,0,'2025-11-22','22:40:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,23,0,'2025-11-22','22:40:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,24,0,'2025-11-22','22:40:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,25,0,'2025-11-22','22:40:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,26,0,'2025-11-23','12:02:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,27,0,'2025-11-23','12:22:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,28,0,'2025-11-23','12:22:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,29,0,'2025-11-23','22:40:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,30,0,'2025-11-23','22:40:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,31,0,'2025-11-23','22:40:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,32,0,'2025-11-23','22:40:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,33,0,'2025-11-23','22:40:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,34,0,'2025-11-24','11:20:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,35,0,'2025-11-24','12:02:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,36,0,'2025-11-24','22:40:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,37,0,'2025-11-24','22:40:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,38,0,'2025-11-24','22:40:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,39,0,'2025-11-24','22:40:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,40,0,'2025-11-24','22:40:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,41,0,'2025-11-25','10:36:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,42,0,'2025-11-25','22:40:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,43,0,'2025-11-25','22:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,44,0,'2025-11-25','22:40:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,45,0,'2025-11-25','22:40:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,46,0,'2025-11-25','22:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,47,0,'2025-11-26','11:13:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,48,0,'2025-11-26','22:40:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,49,0,'2025-11-26','22:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,50,0,'2025-11-26','22:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,51,0,'2025-11-26','22:40:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,52,0,'2025-11-26','22:40:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,53,0,'2025-11-27','11:13:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,54,0,'2025-11-27','22:40:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,55,0,'2025-11-27','22:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,56,0,'2025-11-27','22:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,57,0,'2025-11-27','22:40:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,58,0,'2025-11-27','22:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,59,0,'2025-11-28','11:54:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,60,0,'2025-11-28','22:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,61,0,'2025-11-28','22:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,62,0,'2025-11-28','22:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,63,0,'2025-11-28','22:40:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,64,0,'2025-11-28','22:40:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,65,0,'2025-11-29','11:54:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,66,0,'2025-11-29','22:40:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,67,0,'2025-11-29','22:40:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,68,0,'2025-11-29','22:40:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,69,0,'2025-11-29','22:40:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,70,0,'2025-11-29','22:40:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,71,0,'2025-11-30','11:54:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',213,72,0,'2025-11-30','11:59:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:22:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,1,0,'2025-11-27','02:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,2,0,'2025-11-27','02:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,3,0,'2025-11-27','02:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,4,0,'2025-11-27','02:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,5,0,'2025-11-27','02:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,6,0,'2025-11-27','02:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,7,0,'2025-11-27','02:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,8,0,'2025-11-27','11:50:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,231,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,9,0,'2025-11-27','14:11:00','SURG0015',0,1.00,6250,6250,'P',0,0,6250.00,0.00,0.00,6250.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,10,0,'2025-11-27','14:11:00','SURG0016',0,1.00,25000,25000,'P',0,0,25000.00,0.00,0.00,25000.00,'',0,231,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,11,0,'2025-11-27','16:42:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,12,0,'2025-11-27','16:42:00','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,13,0,'2025-11-27','16:42:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,14,0,'2025-11-27','16:42:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,15,0,'2025-11-27','16:43:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,16,0,'2025-11-27','16:43:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,17,0,'2025-11-27','16:43:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,18,0,'2025-11-27','16:45:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,231,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,19,0,'2025-11-27','16:45:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,231,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,20,0,'2025-11-28','02:00:00','ROOM0009',0,0.50,5500,2750,'A',0,0,2750.00,0.00,0.00,2750.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,21,0,'2025-11-28','02:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,22,0,'2025-11-28','02:00:00','AECO0008',0,0.50,800,400,'P',0,0,400.00,0.00,0.00,400.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,23,0,'2025-11-28','02:00:00','CARE0001',0,0.50,600,300,'P',0,0,300.00,0.00,0.00,300.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,24,0,'2025-11-28','11:50:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,231,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,25,0,'2025-11-28','12:12:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,26,0,'2025-11-28','12:12:00','ROOM0009',0,0.50,3200,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,27,0,'2025-11-28','12:12:00','AECO0008',0,0.50,400,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,28,0,'2025-11-28','12:12:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,29,0,'2025-11-28','14:04:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,231,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,30,0,'2025-11-28','14:06:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,31,0,'2025-11-28','14:08:00','WPRC0077',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,32,0,'2025-11-29','02:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,33,0,'2025-11-29','02:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'407',0,8,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,34,0,'2025-11-29','02:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,35,0,'2025-11-29','02:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,36,0,'2025-11-29','02:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,37,0,'2025-11-29','14:04:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,231,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,38,0,'2025-11-29','14:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,39,0,'2025-11-29','14:07:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,231,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,40,0,'2025-11-30','14:02:00','ROOM0009',0,0.50,3200,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,41,0,'2025-11-30','14:02:00','AECO0008',0,0.50,400,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,42,0,'2025-11-30','14:02:00','CARE0001',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,43,0,'2025-11-30','14:03:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',214,44,0,'2025-11-30','14:07:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 14:15:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',215,1,0,'2025-11-29','14:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 18:07:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',215,2,0,'2025-11-29','14:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 18:07:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',215,3,0,'2025-11-29','14:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-30 18:07:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',215,4,0,'2025-11-29','14:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-30 18:07:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',215,5,0,'2025-11-29','14:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-30 18:07:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',215,6,0,'2025-11-29','14:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','vishal','2025-11-30 18:07:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',215,7,0,'2025-11-29','14:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','vishal','2025-11-30 18:07:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',215,8,0,'2025-11-29','18:04:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 18:07:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',215,9,0,'2025-11-30','18:04:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-30 18:07:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',215,10,0,'2025-11-30','18:04:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-30 18:07:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,1,0,'2025-11-24','10:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,2,0,'2025-11-24','10:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,3,0,'2025-11-24','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,4,0,'2025-11-24','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,5,0,'2025-11-24','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,6,0,'2025-11-24','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,7,0,'2025-11-24','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,8,0,'2025-11-24','17:13:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,9,0,'2025-11-24','17:13:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,10,0,'2025-11-24','17:14:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,11,0,'2025-11-25','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,12,0,'2025-11-25','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,13,0,'2025-11-25','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,14,0,'2025-11-25','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,15,0,'2025-11-25','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,16,0,'2025-11-25','11:17:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,17,0,'2025-11-26','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,18,0,'2025-11-26','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,19,0,'2025-11-26','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0);
INSERT INTO `receipt_transaction` VALUES (0,0,'2526','H','D',216,20,0,'2025-11-26','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,21,0,'2025-11-26','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,22,0,'2025-11-26','11:15:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,23,0,'2025-11-26','11:16:00','WPRC0086',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,24,0,'2025-11-26','11:16:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,25,0,'2025-11-26','11:16:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,26,0,'2025-11-26','11:44:00','SURG0014',0,1.00,86250,86250,'P',0,0,86250.00,0.00,0.00,86250.00,'',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,27,0,'2025-11-26','11:44:00','SURG0015',0,1.00,28740,28740,'P',0,0,28740.00,0.00,0.00,28740.00,'',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,28,0,'2025-11-27','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,29,0,'2025-11-27','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,30,0,'2025-11-27','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,31,0,'2025-11-27','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,32,0,'2025-11-27','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,33,0,'2025-11-28','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,34,0,'2025-11-28','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,35,0,'2025-11-28','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,36,0,'2025-11-28','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,37,0,'2025-11-28','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,38,0,'2025-11-29','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,39,0,'2025-11-29','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,40,0,'2025-11-29','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,41,0,'2025-11-29','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,42,0,'2025-11-29','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,43,0,'2025-11-30','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,44,0,'2025-11-30','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,45,0,'2025-11-30','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,46,0,'2025-11-30','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,47,0,'2025-11-30','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,48,0,'2025-11-30','11:42:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',216,49,0,'2025-12-01','11:44:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-12-01 14:21:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,1,0,'2025-11-28','11:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,2,0,'2025-11-28','21:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,3,0,'2025-11-28','21:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,4,0,'2025-11-28','21:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,5,0,'2025-11-28','21:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,6,0,'2025-11-28','21:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,7,0,'2025-11-29','11:53:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,8,0,'2025-11-29','11:55:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,9,0,'2025-11-29','11:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,10,0,'2025-11-29','11:56:00','WPRC0086',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,11,0,'2025-11-29','11:58:00','SURG0014',0,1.00,19000,19000,'P',0,0,19000.00,0.00,0.00,19000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,12,0,'2025-11-29','11:59:00','SURG0015',0,1.00,6200,6200,'P',0,0,6200.00,0.00,0.00,6200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,13,0,'2025-11-29','21:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,3,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,14,0,'2025-11-29','21:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,3,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,15,0,'2025-11-29','21:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,16,0,'2025-11-29','21:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,17,0,'2025-11-29','21:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,18,0,'2025-11-30','11:55:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,19,0,'2025-11-30','21:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,20,0,'2025-11-30','21:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'401',0,3,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,21,0,'2025-11-30','21:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,22,0,'2025-11-30','21:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,23,0,'2025-11-30','21:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,24,0,'2025-12-01','11:53:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,25,0,'2025-12-01','11:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',217,26,0,'2025-12-01','11:57:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-01 13:31:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',218,1,0,'2025-11-29','19:32:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',218,2,0,'2025-11-29','19:32:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',218,3,0,'2025-11-29','19:33:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',218,4,0,'2025-11-29','21:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',218,5,0,'2025-11-29','21:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',218,6,0,'2025-11-29','21:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',218,7,0,'2025-11-29','21:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',218,8,0,'2025-11-29','21:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',218,9,0,'2025-11-30','19:32:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',218,10,0,'2025-11-30','19:33:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',218,11,0,'2025-11-30','21:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-01 15:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',218,12,0,'2025-11-30','21:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-01 15:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',218,13,0,'2025-11-30','21:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',218,14,0,'2025-11-30','21:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',218,15,0,'2025-11-30','21:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',218,16,0,'2025-12-01','14:41:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',218,17,0,'2025-12-01','15:03:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',218,18,0,'2025-12-01','21:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-01 15:13:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,1,0,'2025-11-20','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,2,0,'2025-11-20','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,3,0,'2025-11-20','10:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'214',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,4,0,'2025-11-20','10:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'214',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,5,0,'2025-11-20','10:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'214',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,6,0,'2025-11-20','10:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'214',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,7,0,'2025-11-20','10:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'214',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,8,0,'2025-11-20','14:39:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,9,0,'2025-11-20','14:39:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,10,0,'2025-11-20','14:39:00','USG0091',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,11,0,'2025-11-20','14:39:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,12,0,'2025-11-20','14:44:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,13,0,'2025-11-21','10:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'214',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,14,0,'2025-11-21','13:23:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,15,0,'2025-11-21','14:39:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,16,0,'2025-11-21','14:42:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,17,0,'2025-11-21','14:43:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,18,0,'2025-11-21','14:43:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,19,0,'2025-11-21','14:43:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,20,0,'2025-11-21','14:44:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,21,0,'2025-11-21','16:04:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,22,0,'2025-11-21','16:07:00','DRC0020',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,187,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,23,0,'2025-11-21','16:28:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,24,0,'2025-11-22','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,25,0,'2025-11-22','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,26,0,'2025-11-22','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,27,0,'2025-11-22','10:00:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'406',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,28,0,'2025-11-22','16:04:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,29,0,'2025-11-22','16:04:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,30,0,'2025-11-22','16:07:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,31,0,'2025-11-22','16:08:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,32,0,'2025-11-22','17:07:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,33,0,'2025-11-23','10:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,34,0,'2025-11-23','10:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,35,0,'2025-11-23','10:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,36,0,'2025-11-23','12:14:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,37,0,'2025-11-23','12:14:00','WPRC0078',0,2.00,300,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,38,0,'2025-11-23','12:15:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,39,0,'2025-11-23','12:15:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,40,0,'2025-11-23','12:16:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,41,0,'2025-11-23','12:16:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,42,0,'2025-11-23','12:17:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,213,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,43,0,'2025-11-23','12:20:00','WPRC0097',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,213,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,44,0,'2025-11-23','17:07:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,45,0,'2025-11-24','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,46,0,'2025-11-24','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,47,0,'2025-11-24','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,48,0,'2025-11-24','10:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,49,0,'2025-11-24','10:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,50,0,'2025-11-24','16:31:00','DRC0020',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,66,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,51,0,'2025-11-24','16:32:00','DRC0020',0,1.00,2500,2500,'A',0,0,2500.00,0.00,0.00,2500.00,'',0,8,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,52,0,'2025-11-24','16:33:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,53,0,'2025-11-24','16:33:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,54,0,'2025-11-24','17:04:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,55,0,'2025-11-24','17:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,56,0,'2025-11-24','17:05:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,57,0,'2025-11-25','10:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,58,0,'2025-11-25','10:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,59,0,'2025-11-25','10:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,60,0,'2025-11-25','10:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,61,0,'2025-11-25','10:00:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,62,0,'2025-11-25','11:47:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,63,0,'2025-11-25','11:49:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,64,0,'2025-11-25','11:49:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,65,0,'2025-11-25','11:52:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,88,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,66,0,'2025-11-25','11:53:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,8,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,67,0,'2025-11-25','16:33:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,68,0,'2025-11-25','16:33:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,69,0,'2025-11-25','17:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,70,0,'2025-11-25','17:05:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,71,0,'2025-11-26','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,72,0,'2025-11-26','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,73,0,'2025-11-26','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,74,0,'2025-11-26','10:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,75,0,'2025-11-26','10:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,76,0,'2025-11-26','11:46:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,77,0,'2025-11-26','11:48:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,78,0,'2025-11-26','11:49:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,79,0,'2025-11-26','11:50:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,80,0,'2025-11-26','11:51:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,81,0,'2025-11-26','11:52:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,88,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,82,0,'2025-11-26','11:52:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,88,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,83,0,'2025-11-27','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,84,0,'2025-11-27','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,85,0,'2025-11-27','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,86,0,'2025-11-27','10:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,87,0,'2025-11-27','10:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,88,0,'2025-11-27','11:48:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,89,0,'2025-11-27','11:51:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,90,0,'2025-11-27','11:51:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,91,0,'2025-11-27','16:05:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,92,0,'2025-11-27','16:05:00','WPRC0080',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,93,0,'2025-11-28','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,94,0,'2025-11-28','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,95,0,'2025-11-28','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,96,0,'2025-11-28','10:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,97,0,'2025-11-28','10:00:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,98,0,'2025-11-28','16:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,99,0,'2025-11-28','16:06:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,100,0,'2025-11-28','16:08:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,101,0,'2025-11-28','16:08:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,102,0,'2025-11-29','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,103,0,'2025-11-29','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,104,0,'2025-11-29','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,105,0,'2025-11-29','10:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,106,0,'2025-11-29','10:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,107,0,'2025-11-29','19:23:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,108,0,'2025-11-29','19:24:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,109,0,'2025-11-29','20:31:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,110,0,'2025-11-29','20:32:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,8,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,111,0,'2025-11-30','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,112,0,'2025-11-30','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,113,0,'2025-11-30','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,114,0,'2025-11-30','10:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,115,0,'2025-11-30','10:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,116,0,'2025-11-30','20:28:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,117,0,'2025-11-30','20:28:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,118,0,'2025-11-30','20:29:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,119,0,'2025-11-30','20:32:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',219,120,0,'2025-11-30','20:32:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','thims','2025-12-01 16:42:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',220,1,0,'2025-11-29','22:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 18:51:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',220,2,0,'2025-11-29','22:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 18:51:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',220,3,0,'2025-11-29','22:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-01 18:51:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',220,4,0,'2025-11-29','22:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-01 18:51:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',220,5,0,'2025-11-29','22:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-01 18:51:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',220,6,0,'2025-11-30','22:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-12-01 18:51:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',220,7,0,'2025-11-30','22:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-12-01 18:51:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',220,8,0,'2025-11-30','22:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-01 18:51:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',220,9,0,'2025-11-30','22:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-01 18:51:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',220,10,0,'2025-11-30','22:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-01 18:51:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',220,11,0,'2025-12-01','22:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-12-01 18:51:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',220,12,0,'2025-12-01','22:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-12-01 18:51:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',220,13,0,'2025-11-30','18:50:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 18:51:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',222,1,0,'2025-12-01','14:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',222,2,0,'2025-12-01','14:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',222,3,0,'2025-12-01','14:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',222,4,0,'2025-12-01','14:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',222,5,0,'2025-12-01','14:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',222,6,0,'2025-12-01','14:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','riya','2025-12-02 14:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',222,7,0,'2025-12-01','14:03:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',222,8,0,'2025-12-02','14:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','riya','2025-12-02 14:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,1,0,'2025-11-29','12:38:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,2,0,'2025-11-29','12:42:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,8,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,3,0,'2025-11-29','12:42:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,4,0,'2025-11-29','13:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,5,0,'2025-11-29','13:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,6,0,'2025-11-29','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,7,0,'2025-11-29','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,8,0,'2025-11-29','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,9,0,'2025-11-30','12:38:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,10,0,'2025-11-30','12:43:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,78,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,11,0,'2025-11-30','13:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,12,0,'2025-11-30','13:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,13,0,'2025-11-30','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,14,0,'2025-11-30','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,15,0,'2025-11-30','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,16,0,'2025-12-01','12:39:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,17,0,'2025-12-01','12:41:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,18,0,'2025-12-01','12:42:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,19,0,'2025-12-01','12:43:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,20,0,'2025-12-01','12:44:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,21,0,'2025-12-01','13:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,22,0,'2025-12-01','13:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,23,0,'2025-12-01','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,24,0,'2025-12-01','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,25,0,'2025-12-01','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,26,0,'2025-12-02','12:40:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,27,0,'2025-12-02','12:40:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,28,0,'2025-12-02','12:43:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,29,0,'2025-11-30','12:44:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,30,0,'2025-12-02','14:45:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',223,31,0,'2025-12-02','14:47:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,1,0,'2025-11-18','11:19:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,2,0,'2025-11-18','11:19:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,3,0,'2025-11-18','11:21:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,4,0,'2025-11-18','11:22:00','WPRC0097',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,62,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,5,0,'2025-11-18','11:22:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,62,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,6,0,'2025-11-18','17:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,7,0,'2025-11-18','17:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,8,0,'2025-11-18','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,9,0,'2025-11-18','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,10,0,'2025-11-18','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,11,0,'2025-11-18','17:00:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'209',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,12,0,'2025-11-19','10:04:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,13,0,'2025-11-19','11:19:00','ROOM0008',0,8.00,100,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,14,0,'2025-11-19','11:20:00','USG0091',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,15,0,'2025-11-19','11:21:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,16,0,'2025-11-19','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,17,0,'2025-11-19','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,18,0,'2025-11-19','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,19,0,'2025-11-19','17:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'209',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,20,0,'2025-11-19','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'209',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,21,0,'2025-11-20','11:21:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,22,0,'2025-11-20','11:21:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,23,0,'2025-11-20','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,24,0,'2025-11-20','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,25,0,'2025-11-20','17:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,26,0,'2025-11-20','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,27,0,'2025-11-20','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,28,0,'2025-11-21','16:05:00','ROOM0008',0,10.00,100,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,29,0,'2025-11-21','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,30,0,'2025-11-21','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,31,0,'2025-11-21','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,32,0,'2025-11-21','17:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,33,0,'2025-11-21','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,34,0,'2025-11-22','16:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,35,0,'2025-11-22','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,36,0,'2025-11-22','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,37,0,'2025-11-22','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,38,0,'2025-11-22','17:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,39,0,'2025-11-22','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,40,0,'2025-11-23','16:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,41,0,'2025-11-23','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,42,0,'2025-11-23','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,43,0,'2025-11-23','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,44,0,'2025-11-23','17:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,45,0,'2025-11-23','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,46,0,'2025-11-24','15:21:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,47,0,'2025-11-24','15:21:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,48,0,'2025-11-24','15:21:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,49,0,'2025-11-24','15:56:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,62,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,50,0,'2025-11-24','15:56:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,62,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,51,0,'2025-11-24','16:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,52,0,'2025-11-24','17:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,53,0,'2025-11-24','17:00:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,54,0,'2025-11-25','15:56:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,62,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,55,0,'2025-11-25','16:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,56,0,'2025-11-25','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,57,0,'2025-11-25','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,58,0,'2025-11-25','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,59,0,'2025-11-25','17:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'209',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,60,0,'2025-11-25','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'209',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,61,0,'2025-11-26','15:59:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,62,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,62,0,'2025-11-26','16:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,63,0,'2025-11-26','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,64,0,'2025-11-26','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,65,0,'2025-11-26','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,66,0,'2025-11-26','17:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'209',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,67,0,'2025-11-26','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'209',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,68,0,'2025-11-27','15:59:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,62,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,69,0,'2025-11-27','16:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,70,0,'2025-11-27','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,71,0,'2025-11-27','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,72,0,'2025-11-27','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,73,0,'2025-11-27','17:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'209',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,74,0,'2025-11-27','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'209',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,75,0,'2025-11-28','16:00:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,62,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,76,0,'2025-11-28','16:00:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,77,0,'2025-11-28','16:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,78,0,'2025-11-28','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,79,0,'2025-11-28','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,80,0,'2025-11-28','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,81,0,'2025-11-28','17:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,82,0,'2025-11-28','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,83,0,'2025-11-29','16:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,84,0,'2025-11-29','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,85,0,'2025-11-29','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,86,0,'2025-11-29','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,87,0,'2025-11-29','17:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,88,0,'2025-11-29','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,89,0,'2025-11-30','16:07:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,90,0,'2025-11-30','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,91,0,'2025-11-30','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,92,0,'2025-11-30','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,93,0,'2025-11-30','17:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,94,0,'2025-11-30','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,95,0,'2025-12-01','16:01:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,62,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,96,0,'2025-12-01','16:07:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,97,0,'2025-12-01','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,98,0,'2025-12-01','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,99,0,'2025-12-01','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,100,0,'2025-12-01','17:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,101,0,'2025-12-01','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,102,0,'2025-12-02','16:01:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,62,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,103,0,'2025-12-02','16:02:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,104,0,'2025-12-02','16:07:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,105,0,'2025-11-21','16:09:00','WPRC0116',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,106,0,'2025-11-19','16:10:00','WPRC0116',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,78,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',224,107,0,'2025-11-24','16:10:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',225,1,0,'2025-12-02','10:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-02 17:16:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',225,2,0,'2025-12-02','10:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-02 17:16:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',225,3,0,'2025-12-02','10:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-02 17:16:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',225,4,0,'2025-12-02','10:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-02 17:16:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',225,5,0,'2025-12-02','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-02 17:16:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',225,6,0,'2025-12-02','10:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,3,0,'',0,'','','','','','vishal','2025-12-02 17:16:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',225,7,0,'2025-12-02','16:49:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-02 17:16:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',225,8,0,'2025-12-02','16:49:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-02 17:16:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',225,9,0,'2025-12-02','16:49:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-02 17:16:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',225,10,0,'2025-12-02','16:51:00','SURG0016',0,1.00,6500,6500,'P',0,0,6500.00,0.00,0.00,6500.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-02 17:16:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',225,11,0,'2025-12-02','16:51:00','SURG0015',0,1.00,1900,1900,'P',0,0,1900.00,0.00,0.00,1900.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-02 17:16:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,1,0,'2025-11-30','11:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,2,0,'2025-11-30','11:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,3,0,'2025-11-30','11:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,4,0,'2025-11-30','11:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,5,0,'2025-11-30','11:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,6,0,'2025-11-30','11:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,7,0,'2025-11-30','11:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,8,0,'2025-11-30','19:42:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,9,0,'2025-11-30','19:43:00','WPRC0080',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,10,0,'2025-11-30','19:44:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,11,0,'2025-12-01','11:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,12,0,'2025-12-01','11:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,13,0,'2025-12-01','11:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,14,0,'2025-12-01','11:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,15,0,'2025-12-01','11:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,16,0,'2025-12-01','19:43:00','WPRC0083',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,17,0,'2025-12-01','20:56:00','SURG0016',0,1.00,18500,18500,'A',0,0,18500.00,0.00,0.00,18500.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,18,0,'2025-12-01','20:56:00','SURG0015',0,1.00,5900,5900,'A',0,0,5900.00,0.00,0.00,5900.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,19,0,'2025-12-02','11:15:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,20,0,'2025-12-02','11:15:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,21,0,'2025-12-02','11:15:00','CARE0001',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,22,0,'2025-12-02','11:15:00','AECO0008',0,0.50,300,150,'P',0,0,150.00,0.00,0.00,150.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,23,0,'2025-12-02','11:15:00','ROOM0009',0,0.50,2900,1450,'P',0,0,1450.00,0.00,0.00,1450.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',226,24,0,'2025-12-02','19:43:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-02 20:58:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,1,0,'2025-12-01','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,2,0,'2025-12-01','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,3,0,'2025-12-01','09:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'310',0,9999,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,4,0,'2025-12-01','09:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'310',0,9999,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,5,0,'2025-12-01','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'310',0,9999,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,6,0,'2025-12-01','09:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,3,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,7,0,'2025-12-01','09:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,3,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,8,0,'2025-12-01','10:43:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,9,0,'2025-12-01','10:44:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,10,0,'2025-12-01','10:46:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,11,0,'2025-12-01','10:49:00','SURG0015',0,1.00,10500,10500,'P',0,0,10500.00,0.00,0.00,10500.00,'',0,3,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,12,0,'2025-12-02','09:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,3,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,13,0,'2025-12-02','09:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,3,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,14,0,'2025-12-02','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'310',0,9999,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,15,0,'2025-12-02','09:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'310',0,9999,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,16,0,'2025-12-02','09:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'310',0,9999,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,17,0,'2025-12-02','10:44:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,18,0,'2025-12-03','09:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,3,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,19,0,'2025-12-03','10:45:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',227,20,0,'2025-12-03','10:50:00','SURG0014',0,1.00,31600,31600,'P',0,0,31600.00,0.00,0.00,31600.00,'',0,3,0,'',0,'','','','','','riya','2025-12-03 10:54:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,1,0,'2025-11-21','10:52:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,2,0,'2025-11-21','10:52:00','WPRC0079',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,3,0,'2025-11-21','12:23:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,4,0,'2025-11-21','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,5,0,'2025-11-21','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,6,0,'2025-11-21','15:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,7,0,'2025-11-21','15:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,8,0,'2025-11-21','15:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,9,0,'2025-11-21','15:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,10,0,'2025-11-22','10:53:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,11,0,'2025-11-22','12:24:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,12,0,'2025-11-22','12:24:00','DRC0020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,8,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,13,0,'2025-11-22','15:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,14,0,'2025-11-22','15:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,15,0,'2025-11-22','15:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,16,0,'2025-11-22','15:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,17,0,'2025-11-22','15:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,18,0,'2025-11-23','12:23:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,19,0,'2025-11-23','15:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,20,0,'2025-11-23','15:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,21,0,'2025-11-23','16:18:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,22,0,'2025-11-23','16:22:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,23,0,'2025-11-23','16:23:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,24,0,'2025-11-23','16:23:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,25,0,'2025-11-24','12:13:00','DRC0020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,229,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,26,0,'2025-11-24','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,27,0,'2025-11-24','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,28,0,'2025-11-24','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,29,0,'2025-11-24','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,30,0,'2025-11-24','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,31,0,'2025-11-24','16:18:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,32,0,'2025-11-24','16:18:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,33,0,'2025-11-25','12:02:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,34,0,'2025-11-25','15:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,35,0,'2025-11-25','15:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,36,0,'2025-11-25','15:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,37,0,'2025-11-25','15:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,38,0,'2025-11-25','15:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,39,0,'2025-11-25','16:13:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,40,0,'2025-11-25','16:18:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,41,0,'2025-11-25','16:18:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,42,0,'2025-11-26','12:00:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,43,0,'2025-11-26','12:01:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,44,0,'2025-11-26','12:02:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,45,0,'2025-11-26','12:04:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,46,0,'2025-11-26','12:05:00','WPRC0092',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,47,0,'2025-11-26','12:13:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,229,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,48,0,'2025-11-26','15:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,49,0,'2025-11-26','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,50,0,'2025-11-26','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,51,0,'2025-11-26','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,52,0,'2025-11-26','15:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,53,0,'2025-11-26','16:13:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,54,0,'2025-11-27','12:00:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,55,0,'2025-11-27','12:03:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,56,0,'2025-11-27','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,57,0,'2025-11-27','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,58,0,'2025-11-27','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,59,0,'2025-11-27','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,60,0,'2025-11-27','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,61,0,'2025-11-27','16:10:00','WPRC0080',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,62,0,'2025-11-27','16:11:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,63,0,'2025-11-27','16:12:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,64,0,'2025-11-27','16:13:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,65,0,'2025-11-28','15:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,66,0,'2025-11-28','15:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,67,0,'2025-11-28','15:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,68,0,'2025-11-28','15:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,69,0,'2025-11-28','15:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,70,0,'2025-11-28','16:10:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,71,0,'2025-11-28','16:11:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,72,0,'2025-11-28','16:12:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,73,0,'2025-11-28','16:13:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,74,0,'2025-11-29','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,75,0,'2025-11-29','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,76,0,'2025-11-29','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,77,0,'2025-11-29','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,78,0,'2025-11-29','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,8,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,79,0,'2025-11-29','18:57:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,80,0,'2025-11-29','19:25:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,81,0,'2025-11-29','19:25:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,82,0,'2025-11-29','19:26:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,83,0,'2025-11-30','15:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,84,0,'2025-11-30','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,85,0,'2025-11-30','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,86,0,'2025-11-30','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,87,0,'2025-11-30','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,88,0,'2025-11-30','18:55:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,89,0,'2025-11-30','18:55:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,90,0,'2025-11-30','18:56:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,91,0,'2025-11-30','18:56:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,92,0,'2025-11-30','18:57:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,93,0,'2025-12-01','13:08:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,94,0,'2025-12-01','13:09:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,95,0,'2025-12-01','13:10:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,96,0,'2025-12-01','13:52:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,97,0,'2025-12-01','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,98,0,'2025-12-01','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,99,0,'2025-12-01','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,100,0,'2025-12-01','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,101,0,'2025-12-01','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,102,0,'2025-12-02','13:08:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,103,0,'2025-12-02','13:09:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,104,0,'2025-12-02','13:52:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,105,0,'2025-12-02','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,106,0,'2025-12-02','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,107,0,'2025-12-02','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,108,0,'2025-12-02','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,109,0,'2025-12-02','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,110,0,'2025-12-03','13:46:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,111,0,'2025-12-03','13:52:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,112,0,'2025-12-03','13:54:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',228,113,0,'2025-12-03','13:56:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-03 16:40:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,1,0,'2025-11-26','10:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,2,0,'2025-11-26','10:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,3,0,'2025-11-26','10:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,4,0,'2025-11-26','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,5,0,'2025-11-26','10:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,6,0,'2025-11-26','10:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,7,0,'2025-11-26','10:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,8,0,'2025-11-26','15:46:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,9,0,'2025-11-26','16:35:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,10,0,'2025-11-26','16:35:00','WPRC0088',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,11,0,'2025-11-26','16:35:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,12,0,'2025-11-26','16:35:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,13,0,'2025-11-26','16:37:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,14,0,'2025-11-26','16:37:00','WPRC0087',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,15,0,'2025-11-26','16:37:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,16,0,'2025-11-26','19:40:00','WPRC0098',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,17,0,'2025-11-27','10:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,18,0,'2025-11-27','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,19,0,'2025-11-27','10:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,20,0,'2025-11-27','10:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,21,0,'2025-11-27','10:15:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,22,0,'2025-11-27','15:46:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,23,0,'2025-11-27','15:48:00','WPRC0118',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,24,0,'2025-11-27','16:36:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,25,0,'2025-11-27','16:36:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,26,0,'2025-11-27','16:37:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,27,0,'2025-11-27','16:37:00','WPRC0087',0,3.00,500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,28,0,'2025-11-27','19:41:00','WPRC0098',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,29,0,'2025-11-28','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,30,0,'2025-11-28','10:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,31,0,'2025-11-28','10:15:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,32,0,'2025-11-28','10:15:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,33,0,'2025-11-28','10:15:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,34,0,'2025-11-28','15:45:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,35,0,'2025-11-28','15:46:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,36,0,'2025-11-28','15:46:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,37,0,'2025-11-28','15:48:00','WPRC0118',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,38,0,'2025-11-28','15:49:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,39,0,'2025-11-28','15:49:00','ROOM0004',0,3.00,500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,40,0,'2025-11-28','19:41:00','WPRC0098',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,41,0,'2025-11-29','10:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,8,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,42,0,'2025-11-29','10:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,43,0,'2025-11-29','10:15:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,44,0,'2025-11-29','10:15:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,45,0,'2025-11-29','10:15:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,46,0,'2025-11-29','18:20:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,47,0,'2025-11-29','18:20:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,48,0,'2025-11-29','18:21:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,49,0,'2025-11-29','18:21:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,50,0,'2025-11-29','18:21:00','WPRC0118',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,51,0,'2025-11-29','19:41:00','WPRC0098',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,52,0,'2025-11-30','10:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,53,0,'2025-11-30','10:15:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,54,0,'2025-11-30','10:15:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,55,0,'2025-11-30','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,56,0,'2025-11-30','10:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,57,0,'2025-11-30','12:10:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,58,0,'2025-11-30','12:10:00','WPRC0089',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,59,0,'2025-11-30','19:41:00','WPRC0098',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,60,0,'2025-12-01','10:15:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,61,0,'2025-12-01','10:15:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,62,0,'2025-12-01','10:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,63,0,'2025-12-01','10:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,64,0,'2025-12-01','10:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,65,0,'2025-12-01','11:15:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,66,0,'2025-12-01','11:18:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,67,0,'2025-12-01','19:42:00','WPRC0098',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,68,0,'2025-12-02','10:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,69,0,'2025-12-02','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,70,0,'2025-12-02','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,71,0,'2025-12-02','11:39:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,72,0,'2025-12-02','12:03:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,73,0,'2025-12-02','12:04:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,74,0,'2025-12-02','19:37:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,75,0,'2025-12-02','19:42:00','WPRC0098',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,76,0,'2025-12-03','10:15:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,77,0,'2025-12-03','10:15:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,78,0,'2025-12-03','10:15:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,79,0,'2025-12-03','10:15:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,80,0,'2025-12-03','10:15:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,81,0,'2025-12-03','14:14:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',229,82,0,'2025-12-03','14:14:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:02:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',230,1,0,'2025-12-01','17:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:47:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',230,2,0,'2025-12-01','17:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:47:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',230,3,0,'2025-12-01','17:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:47:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',230,4,0,'2025-12-01','17:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:47:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',230,5,0,'2025-12-01','17:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:47:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',230,6,0,'2025-12-01','17:50:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','vishal','2025-12-03 20:47:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',230,7,0,'2025-12-01','20:40:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:47:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',230,8,0,'2025-12-02','11:10:00','SURG0014',0,1.00,20000,20000,'P',0,0,20000.00,0.00,0.00,20000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-03 20:47:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',230,9,0,'2025-12-02','11:10:00','SURG0015',0,1.00,5000,5000,'A',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-03 20:47:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',230,10,0,'2025-12-02','17:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:47:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',230,11,0,'2025-12-02','17:50:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','vishal','2025-12-03 20:47:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',230,12,0,'2025-12-02','17:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','vishal','2025-12-03 20:47:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',230,13,0,'2025-12-02','17:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:47:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',230,14,0,'2025-12-02','17:50:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:47:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',230,15,0,'2025-12-03','20:40:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-03 20:47:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',230,16,0,'2025-12-03','20:41:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-03 20:47:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',230,17,0,'2025-12-03','20:41:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-03 20:47:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',231,1,0,'2025-12-01','12:51:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:01:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',231,2,0,'2025-12-01','18:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:01:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',231,3,0,'2025-12-01','18:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:01:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',231,4,0,'2025-12-01','18:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:01:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',231,5,0,'2025-12-01','18:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:01:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',231,6,0,'2025-12-01','18:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:01:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',231,7,0,'2025-12-01','18:30:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'405',0,42,0,'',0,'','','','','','vishal','2025-12-03 21:01:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',231,8,0,'2025-12-02','12:51:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:01:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',231,9,0,'2025-12-02','18:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:01:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',231,10,0,'2025-12-02','18:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:01:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',231,11,0,'2025-12-02','18:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'405',0,42,0,'',0,'','','','','','vishal','2025-12-03 21:01:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',231,12,0,'2025-12-02','18:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'405',0,42,0,'',0,'','','','','','vishal','2025-12-03 21:01:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',231,13,0,'2025-12-02','18:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:01:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',231,14,0,'2025-12-03','20:59:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:01:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',231,15,0,'2025-12-03','21:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','vishal','2025-12-03 21:01:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',231,16,0,'2025-12-03','21:00:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','vishal','2025-12-03 21:01:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',231,17,0,'2025-12-03','21:00:00','DRC0020',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,66,0,'',0,'','','','','','vishal','2025-12-03 21:01:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',233,1,0,'2025-12-03','06:57:00','DRC0021',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,7,0,'',0,'','','','','','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',233,2,0,'2025-12-03','06:57:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',233,3,0,'2025-12-03','06:58:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',233,4,0,'2025-12-03','06:58:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',233,5,0,'2025-12-03','06:59:00','WPRC0088',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,7,0,'',0,'','','','','','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',233,6,0,'2025-12-03','06:59:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,7,0,'',0,'','','','','','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',233,7,0,'2025-12-03','07:00:00','WPRC0087',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',233,8,0,'2025-12-03','07:00:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',233,9,0,'2025-12-03','07:00:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',233,10,0,'2025-12-03','15:45:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',233,11,0,'2025-12-03','15:45:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',233,12,0,'2025-12-03','15:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,7,0,'',0,'','','','','','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',233,13,0,'2025-12-03','15:45:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',233,14,0,'2025-12-03','15:45:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',233,15,0,'2025-12-03','15:45:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',233,16,0,'2025-12-03','16:20:00','ADMN0007',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',233,17,0,'2025-12-04','06:59:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',233,18,0,'2025-12-04','07:00:00','WPRC0087',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',234,1,0,'2025-12-02','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:32:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',234,2,0,'2025-12-02','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:32:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',234,3,0,'2025-12-02','10:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:32:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',234,4,0,'2025-12-02','10:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:32:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',234,5,0,'2025-12-02','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:32:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',234,6,0,'2025-12-02','10:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','riya','2025-12-04 12:32:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',234,7,0,'2025-12-02','10:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','riya','2025-12-04 12:32:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',234,8,0,'2025-12-02','11:26:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:32:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',234,9,0,'2025-12-02','12:25:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:32:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',234,10,0,'2025-12-03','10:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:32:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',234,11,0,'2025-12-03','10:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:32:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',234,12,0,'2025-12-03','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:32:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',234,13,0,'2025-12-03','10:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','riya','2025-12-04 12:32:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',234,14,0,'2025-12-03','10:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','riya','2025-12-04 12:32:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',234,15,0,'2025-12-03','11:27:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:32:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',234,16,0,'2025-12-04','11:27:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-04 12:32:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',235,1,0,'2025-12-03','11:48:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',235,2,0,'2025-12-03','11:48:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',235,3,0,'2025-12-03','11:49:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',235,4,0,'2025-12-03','11:53:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',235,5,0,'2025-12-03','15:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',235,6,0,'2025-12-03','15:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',235,7,0,'2025-12-03','15:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'306',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',235,8,0,'2025-12-03','15:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'306',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',235,9,0,'2025-12-03','15:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'306',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',235,10,0,'2025-12-03','15:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'306',0,4,0,'',0,'','','','','','riya','2025-12-04 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',235,11,0,'2025-12-04','11:48:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',235,12,0,'2025-12-04','11:52:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-04 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',235,13,0,'2025-12-04','11:53:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,1,0,'2025-12-02','13:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,2,0,'2025-12-02','13:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,3,0,'2025-12-02','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'302',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,4,0,'2025-12-02','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'302',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,5,0,'2025-12-02','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'302',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,6,0,'2025-12-02','13:30:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'302',0,8,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,7,0,'2025-12-02','13:41:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,8,0,'2025-12-02','14:01:00','WPRC0120',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,9,0,'2025-12-02','14:07:00','WPRC0121',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,10,0,'2025-12-03','13:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'308',0,8,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,11,0,'2025-12-03','13:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'308',0,4,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,12,0,'2025-12-03','13:41:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,13,0,'2025-12-03','13:42:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,14,0,'2025-12-03','13:42:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,15,0,'2025-12-03','13:42:00','WPRC0077',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,16,0,'2025-12-03','13:43:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,17,0,'2025-12-03','13:45:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,18,0,'2025-12-03','13:46:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,19,0,'2025-12-03','13:46:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,20,0,'2025-12-03','13:50:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,8,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,21,0,'2025-12-03','13:50:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,249,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,22,0,'2025-12-03','13:51:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,229,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,23,0,'2025-12-04','13:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'308',0,4,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,24,0,'2025-12-04','13:43:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',236,25,0,'2025-12-04','13:54:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,250,0,'',0,'','','','','','vishal','2025-12-04 17:39:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,1,0,'2025-11-30','13:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,2,0,'2025-11-30','13:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,3,0,'2025-11-30','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,4,0,'2025-11-30','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,5,0,'2025-11-30','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,6,0,'2025-12-01','12:59:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,7,0,'2025-12-01','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,8,0,'2025-12-01','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,9,0,'2025-12-01','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,10,0,'2025-12-01','13:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,11,0,'2025-12-01','13:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,12,0,'2025-12-01','14:01:00','SURG0014',0,1.00,45000,45000,'P',0,0,45000.00,0.00,0.00,45000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,13,0,'2025-12-01','14:03:00','SURG0015',0,1.00,11250,11250,'P',0,0,11250.00,0.00,0.00,11250.00,'',0,3,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,14,0,'2025-12-02','12:58:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,15,0,'2025-12-02','12:59:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,16,0,'2025-12-02','13:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,17,0,'2025-12-02','13:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,18,0,'2025-12-02','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,19,0,'2025-12-02','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,20,0,'2025-12-02','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,21,0,'2025-12-03','09:53:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,22,0,'2025-12-03','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,23,0,'2025-12-03','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,24,0,'2025-12-03','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,25,0,'2025-12-03','13:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,26,0,'2025-12-03','13:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,27,0,'2025-12-04','12:27:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,28,0,'2025-12-04','13:30:00','ROOM0009',0,0.50,2900,1450,'A',0,0,1450.00,0.00,0.00,1450.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,29,0,'2025-12-04','13:30:00','AECO0008',0,0.50,300,150,'A',0,0,150.00,0.00,0.00,150.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,30,0,'2025-12-04','13:30:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,31,0,'2025-12-04','13:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,32,0,'2025-12-04','13:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,33,0,'2025-12-04','20:12:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',237,34,0,'2025-12-30','12:58:00','WPRC0086',0,2.00,200,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',238,1,0,'2025-12-04','15:40:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 21:43:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',238,2,0,'2025-12-04','15:40:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 21:43:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',238,3,0,'2025-12-04','15:40:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','riya','2025-12-04 21:43:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',238,4,0,'2025-12-04','21:38:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 21:43:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',238,5,0,'2025-12-04','21:39:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 21:43:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',238,6,0,'2025-12-04','21:42:00','SURG0016',0,1.00,12500,12500,'P',0,0,12500.00,0.00,0.00,12500.00,'',0,3,0,'',0,'','','','','','riya','2025-12-04 21:43:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',238,7,0,'2025-12-04','21:42:00','SURG0015',0,1.00,4100,4100,'P',0,0,4100.00,0.00,0.00,4100.00,'',0,3,0,'',0,'','','','','','riya','2025-12-04 21:43:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,1,0,'2025-12-01','14:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,2,0,'2025-12-01','14:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,3,0,'2025-12-01','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,4,0,'2025-12-01','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,5,0,'2025-12-01','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,6,0,'2025-12-01','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,7,0,'2025-12-02','10:44:00','WPRC0079',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,8,0,'2025-12-02','11:17:00','SURG0015',0,1.00,21700,21700,'A',0,0,21700.00,0.00,0.00,21700.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,9,0,'2025-12-02','11:17:00','SURG0016',0,1.00,62000,62000,'A',0,0,62000.00,0.00,0.00,62000.00,'',0,188,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,10,0,'2025-12-02','14:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,11,0,'2025-12-02','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,12,0,'2025-12-02','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,13,0,'2025-12-02','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,14,0,'2025-12-02','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,15,0,'2025-12-03','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,16,0,'2025-12-03','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,17,0,'2025-12-03','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,18,0,'2025-12-03','14:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,19,0,'2025-12-03','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,20,0,'2025-12-04','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,21,0,'2025-12-04','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,22,0,'2025-12-04','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,23,0,'2025-12-04','14:30:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,24,0,'2025-12-04','14:30:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',239,25,0,'2025-12-05','11:14:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:52:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,1,0,'2025-12-02','11:23:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,2,0,'2025-12-02','11:23:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,3,0,'2025-12-02','19:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,4,0,'2025-12-02','19:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,5,0,'2025-12-02','19:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,6,0,'2025-12-02','19:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,7,0,'2025-12-02','19:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,8,0,'2025-12-03','11:23:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,9,0,'2025-12-03','19:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,4,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,10,0,'2025-12-03','19:50:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,4,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,11,0,'2025-12-03','19:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,12,0,'2025-12-03','19:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,13,0,'2025-12-03','19:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,14,0,'2025-12-04','11:23:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,15,0,'2025-12-04','19:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,4,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,16,0,'2025-12-04','19:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,17,0,'2025-12-04','19:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,18,0,'2025-12-04','19:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,19,0,'2025-12-04','19:50:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,4,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,20,0,'2025-12-05','11:23:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',240,21,0,'2025-12-05','19:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,4,0,'',0,'','','','','','vishal','2025-12-05 11:48:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,1,0,'2025-12-01','11:41:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,2,0,'2025-12-01','11:41:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,3,0,'2025-12-01','11:42:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,4,0,'2025-12-01','11:42:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,5,0,'2025-12-01','11:43:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,6,0,'2025-12-01','11:49:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,7,0,'2025-12-01','11:54:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,8,0,'2025-12-01','13:25:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,9,0,'2025-12-01','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,10,0,'2025-12-01','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,11,0,'2025-12-01','15:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,12,0,'2025-12-01','15:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,13,0,'2025-12-01','15:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,14,0,'2025-12-01','15:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,15,0,'2025-12-02','11:41:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,16,0,'2025-12-02','11:42:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,17,0,'2025-12-02','11:47:00','USG0091',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,18,0,'2025-12-02','11:48:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,19,0,'2025-12-02','11:49:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,20,0,'2025-12-02','13:25:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,21,0,'2025-12-02','15:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,22,0,'2025-12-02','15:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,23,0,'2025-12-02','15:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,24,0,'2025-12-02','15:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,25,0,'2025-12-02','15:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,26,0,'2025-12-03','11:48:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,27,0,'2025-12-03','11:49:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,28,0,'2025-12-03','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,29,0,'2025-12-03','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,30,0,'2025-12-03','15:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,31,0,'2025-12-03','15:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,32,0,'2025-12-03','15:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,33,0,'2025-12-04','11:54:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,34,0,'2025-12-04','11:55:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,35,0,'2025-12-04','12:41:00','WPRC0080',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,36,0,'2025-12-04','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,37,0,'2025-12-04','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,38,0,'2025-12-04','15:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,39,0,'2025-12-04','15:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,40,0,'2025-12-04','15:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,41,0,'2025-12-05','12:40:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,42,0,'2025-12-05','12:45:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',241,43,0,'2025-12-05','12:46:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:27:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,1,0,'2025-12-02','10:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,2,0,'2025-12-02','10:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,3,0,'2025-12-02','10:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,4,0,'2025-12-02','10:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,5,0,'2025-12-02','10:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,6,0,'2025-12-02','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,7,0,'2025-12-02','10:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,8,0,'2025-12-02','11:21:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,9,0,'2025-12-02','11:21:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,10,0,'2025-12-02','11:22:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,11,0,'2025-12-02','11:22:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,244,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,12,0,'2025-12-02','13:24:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,13,0,'2025-12-03','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,14,0,'2025-12-03','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,15,0,'2025-12-03','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,16,0,'2025-12-03','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,17,0,'2025-12-03','10:15:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'401',0,4,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,18,0,'2025-12-03','11:57:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,19,0,'2025-12-03','11:58:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,20,0,'2025-12-03','11:59:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,21,0,'2025-12-04','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,22,0,'2025-12-04','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,23,0,'2025-12-04','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,24,0,'2025-12-04','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,25,0,'2025-12-04','10:15:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,26,0,'2025-12-04','11:57:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,27,0,'2025-12-04','11:58:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,28,0,'2025-12-05','10:15:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',242,29,0,'2025-12-05','12:50:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 13:41:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',243,1,0,'2025-12-05','09:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 19:02:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',243,2,0,'2025-12-05','09:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 19:02:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',243,3,0,'2025-12-05','09:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','vishal','2025-12-05 19:02:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',243,4,0,'2025-12-05','09:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','vishal','2025-12-05 19:02:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',243,5,0,'2025-12-05','19:01:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 19:02:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',243,6,0,'2025-12-05','19:01:00','SURG0016',0,1.00,8200,8200,'P',0,0,8200.00,0.00,0.00,8200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-05 19:02:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',243,7,0,'2025-12-05','19:01:00','SURG0015',0,1.00,2700,2700,'P',0,0,2700.00,0.00,0.00,2700.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-05 19:02:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,1,0,'2025-12-02','15:12:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,2,0,'2025-12-02','15:12:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,3,0,'2025-12-02','15:12:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,4,0,'2025-12-02','20:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,5,0,'2025-12-02','20:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,6,0,'2025-12-02','20:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,7,0,'2025-12-02','20:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,8,0,'2025-12-02','20:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,9,0,'2025-12-02','20:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,10,0,'2025-12-03','15:13:00','WPRC0086',0,3.00,200,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,11,0,'2025-12-03','15:13:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,12,0,'2025-12-03','15:13:00','WPRC0080',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,13,0,'2025-12-03','20:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,14,0,'2025-12-03','20:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,15,0,'2025-12-03','20:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,16,0,'2025-12-03','20:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,17,0,'2025-12-03','20:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,18,0,'2025-12-04','10:16:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,19,0,'2025-12-04','15:13:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,20,0,'2025-12-04','15:14:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,21,0,'2025-12-04','20:00:00','AECO0008',0,0.50,800,400,'A',0,0,400.00,0.00,0.00,400.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,22,0,'2025-12-04','20:00:00','CARE0001',0,0.50,600,300,'A',0,0,300.00,0.00,0.00,300.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,23,0,'2025-12-04','20:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,24,0,'2025-12-04','20:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,25,0,'2025-12-04','20:00:00','ROOM0009',0,0.50,5500,2750,'A',0,0,2750.00,0.00,0.00,2750.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',244,26,0,'2025-12-04','21:55:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 10:34:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',245,1,0,'2025-12-04','12:18:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:22:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',245,2,0,'2025-12-04','12:20:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:22:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',245,3,0,'2025-12-04','12:20:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:22:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',245,4,0,'2025-12-04','12:20:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:22:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',245,5,0,'2025-12-04','12:20:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:22:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',245,6,0,'2025-12-04','12:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:22:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',245,7,0,'2025-12-04','12:20:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','riya','2025-12-06 12:22:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',245,8,0,'2025-12-05','12:20:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:22:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',245,9,0,'2025-12-05','12:20:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:22:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',245,10,0,'2025-12-05','12:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:22:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',245,11,0,'2025-12-05','12:20:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','riya','2025-12-06 12:22:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',245,12,0,'2025-12-05','12:20:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','riya','2025-12-06 12:22:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',245,13,0,'2025-12-06','12:20:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','riya','2025-12-06 12:22:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,1,0,'2025-12-01','11:25:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,2,0,'2025-12-01','11:25:00','ROOM0008',0,8.00,100,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,3,0,'2025-12-01','11:25:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,4,0,'2025-12-01','11:26:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,5,0,'2025-12-01','11:26:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,39,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,6,0,'2025-12-01','11:27:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,7,0,'2025-12-01','11:28:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,8,0,'2025-12-01','11:28:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,9,0,'2025-12-01','12:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,10,0,'2025-12-01','12:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,11,0,'2025-12-01','12:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,12,0,'2025-12-01','12:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,13,0,'2025-12-01','12:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,14,0,'2025-12-01','12:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,15,0,'2025-12-01','12:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,16,0,'2025-12-01','16:53:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,17,0,'2025-12-02','11:04:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,18,0,'2025-12-02','11:05:00','USG0091',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,19,0,'2025-12-02','11:27:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,20,0,'2025-12-02','11:28:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,21,0,'2025-12-02','12:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,22,0,'2025-12-02','12:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,23,0,'2025-12-02','12:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,24,0,'2025-12-02','12:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,25,0,'2025-12-02','12:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,26,0,'2025-12-03','11:04:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,27,0,'2025-12-03','11:06:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,28,0,'2025-12-03','12:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,29,0,'2025-12-03','12:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,30,0,'2025-12-03','12:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,31,0,'2025-12-03','12:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,32,0,'2025-12-03','12:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,33,0,'2025-12-04','11:04:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,34,0,'2025-12-04','11:06:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,35,0,'2025-12-04','12:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'406',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,36,0,'2025-12-04','12:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,37,0,'2025-12-04','12:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,38,0,'2025-12-04','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,39,0,'2025-12-04','12:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,40,0,'2025-12-05','12:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,41,0,'2025-12-05','12:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,42,0,'2025-12-05','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,43,0,'2025-12-05','12:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,44,0,'2025-12-05','12:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,45,0,'2025-12-05','12:27:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,46,0,'2025-12-06','12:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',246,47,0,'2025-12-06','12:28:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',247,1,0,'2025-12-05','17:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 13:09:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',247,2,0,'2025-12-05','17:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 13:09:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',247,3,0,'2025-12-05','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-06 13:09:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',247,4,0,'2025-12-05','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-06 13:09:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',247,5,0,'2025-12-05','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-06 13:09:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',247,6,0,'2025-12-06','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','riya','2025-12-06 13:09:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',247,7,0,'2025-12-05','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','riya','2025-12-06 13:09:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',248,1,0,'2025-12-04','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:30:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',248,2,0,'2025-12-04','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:30:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',248,3,0,'2025-12-04','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:30:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',248,4,0,'2025-12-04','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:30:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',248,5,0,'2025-12-04','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:30:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',248,6,0,'2025-12-04','10:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-12-06 19:30:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',248,7,0,'2025-12-04','10:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-12-06 19:30:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',248,8,0,'2025-12-04','17:00:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:30:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',248,9,0,'2025-12-05','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:30:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',248,10,0,'2025-12-05','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:30:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',248,11,0,'2025-12-05','10:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-12-06 19:30:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',248,12,0,'2025-12-05','10:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-12-06 19:30:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',248,13,0,'2025-12-05','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:30:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',248,14,0,'2025-12-06','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:30:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',248,15,0,'2025-12-06','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:30:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',248,16,0,'2025-12-06','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:30:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',248,17,0,'2025-12-06','10:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-12-06 19:30:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',248,18,0,'2025-12-06','10:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-12-06 19:30:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',249,1,0,'2025-12-06','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-07 19:42:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',249,2,0,'2025-12-06','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-07 19:42:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',249,3,0,'2025-12-06','19:24:00','SURG0014',0,1.00,20000,20000,'A',0,0,20000.00,0.00,0.00,20000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-07 19:42:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',249,4,0,'2025-12-06','19:24:00','SURG0015',0,1.00,5000,5000,'A',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-07 19:42:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',249,5,0,'2025-12-06','19:25:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-07 19:42:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',249,6,0,'2025-12-06','19:25:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-07 19:42:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',249,7,0,'2025-12-06','19:25:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-07 19:42:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',249,8,0,'2025-12-06','19:26:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-07 19:42:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',249,9,0,'2025-12-06','19:26:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-07 19:42:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',249,10,0,'2025-12-06','19:26:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-07 19:42:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',249,11,0,'2025-12-07','10:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-12-07 19:42:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',249,12,0,'2025-12-07','19:26:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-07 19:42:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,1,0,'2025-12-03','09:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,2,0,'2025-12-03','09:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,3,0,'2025-12-03','09:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'214',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,4,0,'2025-12-03','09:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'214',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,5,0,'2025-12-03','09:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'214',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,6,0,'2025-12-03','09:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'214',0,5,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,7,0,'2025-12-03','09:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'214',0,5,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,8,0,'2025-12-03','11:08:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,9,0,'2025-12-03','11:08:00','WPRC0107',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,10,0,'2025-12-03','11:08:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,11,0,'2025-12-03','11:08:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,12,0,'2025-12-03','11:10:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,13,0,'2025-12-03','11:10:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,14,0,'2025-12-03','11:11:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,15,0,'2025-12-03','11:12:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,41,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,16,0,'2025-12-04','09:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'214',0,5,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,17,0,'2025-12-04','09:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'214',0,5,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,18,0,'2025-12-04','09:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'214',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,19,0,'2025-12-04','09:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'214',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,20,0,'2025-12-04','09:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'214',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,21,0,'2025-12-04','11:09:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,22,0,'2025-12-04','11:10:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,23,0,'2025-12-04','11:57:00','USG0091',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,24,0,'2025-12-04','11:57:00','WPRC0092',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,5,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,25,0,'2025-12-04','11:58:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,26,0,'2025-12-05','09:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'214',0,5,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,27,0,'2025-12-05','09:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'214',0,5,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,28,0,'2025-12-05','11:57:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,29,0,'2025-12-05','12:05:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,30,0,'2025-12-05','12:05:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,31,0,'2025-12-05','12:05:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,32,0,'2025-12-06','09:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,33,0,'2025-12-06','09:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,34,0,'2025-12-06','09:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,35,0,'2025-12-06','09:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,36,0,'2025-12-06','09:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,37,0,'2025-12-06','16:43:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,38,0,'2025-12-07','09:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,39,0,'2025-12-07','09:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,40,0,'2025-12-07','09:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,41,0,'2025-12-07','09:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,42,0,'2025-12-07','09:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,43,0,'2025-12-07','11:26:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,44,0,'2025-12-08','09:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',250,45,0,'2025-12-08','11:26:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:30:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,1,0,'2025-12-05','16:50:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,2,0,'2025-12-05','20:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,3,0,'2025-12-05','20:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,4,0,'2025-12-05','20:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,5,0,'2025-12-05','20:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,6,0,'2025-12-05','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,7,0,'2025-12-06','12:20:00','SURG0014',0,1.00,20000,20000,'P',0,0,20000.00,0.00,0.00,20000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,8,0,'2025-12-06','12:21:00','SURG0015',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,9,0,'2025-12-06','16:50:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,10,0,'2025-12-06','16:50:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,11,0,'2025-12-06','16:50:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,12,0,'2025-12-06','20:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,3,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,13,0,'2025-12-06','20:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,14,0,'2025-12-06','20:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,3,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,15,0,'2025-12-06','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,16,0,'2025-12-06','20:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,17,0,'2025-12-07','12:19:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,18,0,'2025-12-07','12:20:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,19,0,'2025-12-07','20:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,20,0,'2025-12-07','20:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,21,0,'2025-12-07','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,22,0,'2025-12-07','20:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,3,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,23,0,'2025-12-08','12:19:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',251,24,0,'2025-12-08','13:23:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-12-08 13:48:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,1,0,'2025-12-05','16:39:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,2,0,'2025-12-05','16:40:00','WPRC0086',0,3.00,200,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,3,0,'2025-12-05','20:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,4,0,'2025-12-05','20:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,5,0,'2025-12-05','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,6,0,'2025-12-05','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,7,0,'2025-12-05','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,8,0,'2025-12-06','16:39:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,9,0,'2025-12-06','16:41:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,10,0,'2025-12-06','16:41:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,11,0,'2025-12-06','20:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,12,0,'2025-12-06','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,13,0,'2025-12-06','20:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,14,0,'2025-12-06','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,15,0,'2025-12-06','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,16,0,'2025-12-07','12:09:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,17,0,'2025-12-07','12:09:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,18,0,'2025-12-07','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,19,0,'2025-12-07','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,20,0,'2025-12-07','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,21,0,'2025-12-07','20:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,22,0,'2025-12-07','20:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,23,0,'2025-12-08','12:09:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,24,0,'2025-12-08','12:09:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,25,0,'2025-12-08','20:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,26,0,'2025-12-08','20:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',252,27,0,'2025-12-05','21:04:00','DRC0021',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,1,0,'2025-12-04','17:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,2,0,'2025-12-04','17:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,3,0,'2025-12-04','17:00:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'207',0,42,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,4,0,'2025-12-04','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,5,0,'2025-12-04','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,6,0,'2025-12-04','17:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,7,0,'2025-12-04','17:07:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,8,0,'2025-12-04','17:07:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,9,0,'2025-12-05','16:06:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,10,0,'2025-12-05','16:07:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,11,0,'2025-12-05','16:07:00','CARE0006',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,12,0,'2025-12-05','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'207',0,42,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,13,0,'2025-12-05','17:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'207',0,42,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,14,0,'2025-12-05','17:07:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,15,0,'2025-12-05','17:07:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,16,0,'2025-12-06','16:57:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,17,0,'2025-12-06','16:57:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,18,0,'2025-12-06','17:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,19,0,'2025-12-06','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,20,0,'2025-12-06','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'411',0,42,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,21,0,'2025-12-06','17:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,22,0,'2025-12-07','13:30:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,23,0,'2025-12-07','13:31:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,24,0,'2025-12-07','17:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,25,0,'2025-12-07','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'411',0,42,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,26,0,'2025-12-07','17:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'411',0,42,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,27,0,'2025-12-07','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,28,0,'2025-12-07','17:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,29,0,'2025-12-08','10:10:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,42,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,30,0,'2025-12-08','10:11:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,31,0,'2025-12-08','13:31:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,32,0,'2025-12-08','17:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,33,0,'2025-12-08','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,34,0,'2025-12-08','17:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'411',0,42,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,35,0,'2025-12-08','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'411',0,42,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,36,0,'2025-12-08','17:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,37,0,'2025-12-09','10:10:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,38,0,'2025-12-09','10:11:00','WPRC0089',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',253,39,0,'2025-12-09','17:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'411',0,42,0,'',0,'','','','','','vishal','2025-12-09 10:37:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',254,1,0,'2025-12-08','12:55:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:09:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',254,2,0,'2025-12-08','12:55:00','WPRC0087',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:09:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',254,3,0,'2025-12-08','12:55:00','WPRC0089',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:09:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',254,4,0,'2025-12-08','12:56:00','WPRC0089',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:09:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',254,5,0,'2025-12-08','12:56:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:09:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',254,6,0,'2025-12-08','12:56:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:09:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',254,7,0,'2025-12-08','22:15:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:09:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',254,8,0,'2025-12-08','22:15:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:09:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',254,9,0,'2025-12-08','22:15:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:09:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',254,10,0,'2025-12-08','22:15:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:09:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',254,11,0,'2025-12-08','22:15:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:09:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',254,12,0,'2025-12-08','22:15:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-12-09 13:09:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',254,13,0,'2025-12-09','12:55:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:09:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',255,1,0,'2025-12-08','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',255,2,0,'2025-12-08','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',255,3,0,'2025-12-08','09:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',255,4,0,'2025-12-08','09:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',255,5,0,'2025-12-08','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',255,6,0,'2025-12-08','09:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-12-09 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',255,7,0,'2025-12-08','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-12-09 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',255,8,0,'2025-12-08','13:36:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-09 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',255,9,0,'2025-12-08','13:37:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',255,10,0,'2025-12-08','13:37:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',255,11,0,'2025-12-08','13:46:00','SURG0016',0,1.00,30500,30500,'P',0,0,30500.00,0.00,0.00,30500.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-09 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',255,12,0,'2025-12-09','09:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-12-09 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',255,13,0,'2025-12-09','13:37:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-09 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',255,14,0,'2025-12-09','13:46:00','SURG0015',0,1.00,10200,10200,'P',0,0,10200.00,0.00,0.00,10200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-09 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,1,0,'2025-12-05','15:45:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,2,0,'2025-12-05','15:45:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,3,0,'2025-12-05','15:46:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,4,0,'2025-12-05','15:47:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,5,0,'2025-12-05','15:47:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,6,0,'2025-12-05','17:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,7,0,'2025-12-05','17:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,8,0,'2025-12-05','17:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,9,0,'2025-12-05','17:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,10,0,'2025-12-05','17:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,11,0,'2025-12-05','17:30:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'211',0,42,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,12,0,'2025-12-06','12:07:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,13,0,'2025-12-06','12:07:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,14,0,'2025-12-06','15:45:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,15,0,'2025-12-06','15:45:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,16,0,'2025-12-06','15:46:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,17,0,'2025-12-06','15:47:00','WPRC0114',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,42,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,18,0,'2025-12-06','17:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'211',0,42,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,19,0,'2025-12-06','17:30:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,20,0,'2025-12-06','17:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,21,0,'2025-12-06','17:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,22,0,'2025-12-06','19:58:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,23,0,'2025-12-07','12:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,24,0,'2025-12-07','12:05:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,25,0,'2025-12-07','13:40:00','WPRC0114',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,26,0,'2025-12-07','13:41:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,27,0,'2025-12-07','13:41:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,28,0,'2025-12-07','17:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'407',0,42,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,29,0,'2025-12-07','17:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,30,0,'2025-12-07','17:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'407',0,42,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,31,0,'2025-12-07','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,32,0,'2025-12-07','17:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,33,0,'2025-12-08','13:40:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,34,0,'2025-12-08','13:42:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,35,0,'2025-12-08','17:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,36,0,'2025-12-08','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,37,0,'2025-12-08','17:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'407',0,42,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,38,0,'2025-12-08','17:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'407',0,42,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,39,0,'2025-12-08','17:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,40,0,'2025-12-08','20:03:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,41,0,'2025-12-08','20:08:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,42,0,'2025-12-09','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,43,0,'2025-12-09','17:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'407',0,42,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,44,0,'2025-12-09','17:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'407',0,42,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,45,0,'2025-12-09','17:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,46,0,'2025-12-09','17:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,47,0,'2025-12-09','20:03:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,48,0,'2025-12-09','20:04:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,49,0,'2025-12-09','20:09:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,50,0,'2025-12-09','20:09:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,52,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,51,0,'2025-12-10','11:57:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,52,0,'2025-12-10','11:59:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',256,53,0,'2025-12-10','11:59:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-10 13:32:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',257,1,0,'2025-12-09','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:15:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',257,2,0,'2025-12-09','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:15:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',257,3,0,'2025-12-09','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:15:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',257,4,0,'2025-12-09','13:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:15:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',257,5,0,'2025-12-09','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:15:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',257,6,0,'2025-12-09','13:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-10 13:15:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',257,7,0,'2025-12-09','13:07:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:15:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',257,8,0,'2025-12-09','13:07:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:15:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',257,9,0,'2025-12-10','13:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-10 13:15:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',257,10,0,'2025-12-10','13:07:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:15:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',257,11,0,'2025-12-10','13:08:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:15:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',257,12,0,'2025-12-09','13:12:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,276,0,'',0,'','','','','','riya','2025-12-10 13:15:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',257,13,0,'2025-12-09','13:13:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,276,0,'',0,'','','','','','riya','2025-12-10 13:15:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',258,1,0,'2025-12-09','12:30:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',258,2,0,'2025-12-09','12:30:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',258,3,0,'2025-12-09','12:31:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',258,4,0,'2025-12-09','12:31:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',258,5,0,'2025-12-09','12:31:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',258,6,0,'2025-12-09','21:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',258,7,0,'2025-12-09','21:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',258,8,0,'2025-12-09','21:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',258,9,0,'2025-12-09','21:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',258,10,0,'2025-12-09','21:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',258,11,0,'2025-12-10','12:30:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',258,12,0,'2025-12-10','12:31:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',258,13,0,'2025-12-10','12:32:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',258,14,0,'2025-12-10','17:42:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-10 17:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',259,1,0,'2025-12-10','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:35:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',259,2,0,'2025-12-10','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:35:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',259,3,0,'2025-12-10','10:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'303',0,3,0,'',0,'','','','','','vishal','2025-12-10 20:35:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',259,4,0,'2025-12-10','10:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'303',0,3,0,'',0,'','','','','','vishal','2025-12-10 20:35:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',259,5,0,'2025-12-10','20:24:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:35:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',259,6,0,'2025-12-10','20:35:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:35:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',260,1,0,'2025-12-10','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:29:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',260,2,0,'2025-12-10','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:29:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',260,3,0,'2025-12-10','09:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'302',0,3,0,'',0,'','','','','','vishal','2025-12-10 20:29:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',260,4,0,'2025-12-10','09:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'302',0,3,0,'',0,'','','','','','vishal','2025-12-10 20:29:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',260,5,0,'2025-12-10','20:28:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:29:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,1,0,'2025-12-07','23:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,2,0,'2025-12-07','23:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,3,0,'2025-12-07','23:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,4,0,'2025-12-07','23:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,5,0,'2025-12-07','23:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,6,0,'2025-12-08','11:34:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,7,0,'2025-12-08','11:36:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,8,0,'2025-12-08','11:37:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,9,0,'2025-12-08','23:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,10,0,'2025-12-08','23:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,11,0,'2025-12-08','23:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,12,0,'2025-12-08','23:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,13,0,'2025-12-08','23:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,14,0,'2025-12-09','16:09:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,15,0,'2025-12-09','16:41:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,16,0,'2025-12-09','20:56:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,17,0,'2025-12-09','20:56:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,18,0,'2025-12-09','23:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,19,0,'2025-12-09','23:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,20,0,'2025-12-09','23:30:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,21,0,'2025-12-10','20:53:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,22,0,'2025-12-10','20:54:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',261,23,0,'2025-12-10','20:54:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-10 20:59:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',262,1,0,'2025-12-09','01:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:05:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',262,2,0,'2025-12-09','01:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:05:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',262,3,0,'2025-12-09','01:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:05:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',262,4,0,'2025-12-09','01:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:05:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',262,5,0,'2025-12-09','01:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:05:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',262,6,0,'2025-12-09','01:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','vishal','2025-12-10 21:05:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',262,7,0,'2025-12-09','01:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','vishal','2025-12-10 21:05:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',262,8,0,'2025-12-09','17:22:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:05:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',262,9,0,'2025-12-09','17:22:00','WPRC0078',0,2.00,300,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:05:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',262,10,0,'2025-12-09','17:23:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:05:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',262,11,0,'2025-12-10','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:05:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',262,12,0,'2025-12-10','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:05:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',262,13,0,'2025-12-10','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:05:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',262,14,0,'2025-12-10','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,5,0,'',0,'','','','','','vishal','2025-12-10 21:05:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',262,15,0,'2025-12-10','01:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,5,0,'',0,'','','','','','vishal','2025-12-10 21:05:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',263,1,0,'2025-12-09','12:02:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:57:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',263,2,0,'2025-12-09','19:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:57:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',263,3,0,'2025-12-09','19:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:57:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',263,4,0,'2025-12-09','19:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:57:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',263,5,0,'2025-12-09','19:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:57:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',263,6,0,'2025-12-09','19:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:57:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',263,7,0,'2025-12-10','12:02:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:57:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',263,8,0,'2025-12-10','19:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:57:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',263,9,0,'2025-12-10','19:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:57:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',263,10,0,'2025-12-10','19:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:57:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',263,11,0,'2025-12-10','19:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','riya','2025-12-11 12:57:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',263,12,0,'2025-12-10','19:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','riya','2025-12-11 12:57:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',263,13,0,'2025-12-11','12:02:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:57:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',263,14,0,'2025-12-11','12:03:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-11 12:57:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,1,0,'2025-12-08','16:27:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,2,0,'2025-12-08','16:27:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,3,0,'2025-12-08','16:27:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,4,0,'2025-12-08','16:30:00','SURG0016',0,1.00,50000,50000,'P',0,0,50000.00,0.00,0.00,50000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,5,0,'2025-12-08','16:30:00','SURG0015',0,1.00,12500,12500,'P',0,0,12500.00,0.00,0.00,12500.00,'',0,3,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,6,0,'2025-12-08','18:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,7,0,'2025-12-08','18:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,8,0,'2025-12-08','18:45:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,9,0,'2025-12-08','18:45:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,10,0,'2025-12-08','18:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,11,0,'2025-12-08','18:45:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,12,0,'2025-12-09','16:27:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,13,0,'2025-12-09','16:28:00','WPRC0086',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,14,0,'2025-12-09','18:45:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,15,0,'2025-12-09','18:45:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,16,0,'2025-12-09','18:45:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,17,0,'2025-12-09','18:45:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,18,0,'2025-12-09','18:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,19,0,'2025-12-10','16:35:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,20,0,'2025-12-10','18:45:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,21,0,'2025-12-10','18:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,22,0,'2025-12-10','18:45:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,23,0,'2025-12-10','18:45:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,24,0,'2025-12-10','18:45:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,25,0,'2025-12-11','12:16:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,26,0,'2025-12-11','12:25:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',264,27,0,'2025-12-11','12:39:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-12-11 13:03:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,1,0,'2025-12-08','03:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,2,0,'2025-12-08','03:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,3,0,'2025-12-08','03:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,4,0,'2025-12-08','03:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,5,0,'2025-12-08','03:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,6,0,'2025-12-08','03:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,7,0,'2025-12-08','03:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,8,0,'2025-12-08','10:36:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,9,0,'2025-12-08','11:08:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,10,0,'2025-12-08','11:08:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,11,0,'2025-12-08','11:09:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,12,0,'2025-12-08','11:09:00','WPRC0097',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,13,0,'2025-12-08','11:10:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,14,0,'2025-12-08','11:10:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,15,0,'2025-12-08','11:10:00','WPRC0101',0,5.00,400,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,16,0,'2025-12-08','11:11:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,17,0,'2025-12-09','03:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,18,0,'2025-12-09','03:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,19,0,'2025-12-09','11:09:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,20,0,'2025-12-09','11:10:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,21,0,'2025-12-09','11:11:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,22,0,'2025-12-09','11:14:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,23,0,'2025-12-09','11:15:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,24,0,'2025-12-09','11:15:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,25,0,'2025-12-10','03:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,26,0,'2025-12-10','03:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,27,0,'2025-12-10','03:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,28,0,'2025-12-10','03:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,29,0,'2025-12-10','03:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,30,0,'2025-12-10','17:24:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,31,0,'2025-12-10','17:25:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,32,0,'2025-12-11','13:12:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,33,0,'2025-12-11','13:13:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',265,34,0,'2025-12-11','13:13:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-11 13:29:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,1,0,'2025-12-07','10:21:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,2,0,'2025-12-07','10:26:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,3,0,'2025-12-07','10:26:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,4,0,'2025-12-07','10:26:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,5,0,'2025-12-07','16:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,6,0,'2025-12-07','16:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,7,0,'2025-12-07','16:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,8,0,'2025-12-07','16:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,9,0,'2025-12-07','16:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,10,0,'2025-12-07','16:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,11,0,'2025-12-08','10:25:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,12,0,'2025-12-08','10:26:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,13,0,'2025-12-08','10:26:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,14,0,'2025-12-08','10:26:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,15,0,'2025-12-08','10:26:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,16,0,'2025-12-08','13:20:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,17,0,'2025-12-08','16:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,18,0,'2025-12-08','16:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,19,0,'2025-12-08','16:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,20,0,'2025-12-08','16:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,21,0,'2025-12-08','16:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,22,0,'2025-12-09','13:21:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,23,0,'2025-12-09','13:22:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,24,0,'2025-12-09','13:22:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,25,0,'2025-12-09','16:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,26,0,'2025-12-09','16:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,27,0,'2025-12-09','16:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,28,0,'2025-12-09','16:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,29,0,'2025-12-09','16:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,30,0,'2025-12-09','17:10:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,31,0,'2025-12-10','13:20:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,32,0,'2025-12-10','13:21:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,33,0,'2025-12-10','13:22:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,34,0,'2025-12-10','16:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'310',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,35,0,'2025-12-10','16:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'310',0,4,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,36,0,'2025-12-10','16:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'310',0,4,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,37,0,'2025-12-10','16:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'310',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,38,0,'2025-12-10','16:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'310',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,39,0,'2025-12-11','13:20:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,40,0,'2025-12-11','13:20:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,41,0,'2025-12-11','13:21:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,42,0,'2025-12-11','13:22:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',266,43,0,'2025-12-11','13:23:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:13:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,1,0,'2025-12-05','16:17:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,2,0,'2025-12-05','16:18:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,5,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,3,0,'2025-12-05','16:18:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,4,0,'2025-12-05','16:18:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,5,0,'2025-12-05','16:19:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,6,0,'2025-12-05','17:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,7,0,'2025-12-05','17:30:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,8,0,'2025-12-05','17:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,5,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,9,0,'2025-12-05','17:30:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,10,0,'2025-12-05','17:30:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,11,0,'2025-12-05','17:30:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,12,0,'2025-12-06','11:56:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,13,0,'2025-12-06','11:57:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,14,0,'2025-12-06','13:17:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,15,0,'2025-12-06','16:18:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,6,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,16,0,'2025-12-06','16:19:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,17,0,'2025-12-06','17:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,5,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,18,0,'2025-12-06','17:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,5,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,19,0,'2025-12-06','17:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,20,0,'2025-12-06','17:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,21,0,'2025-12-06','17:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,22,0,'2025-12-07','10:39:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,78,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,23,0,'2025-12-07','11:56:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,24,0,'2025-12-07','11:57:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,25,0,'2025-12-07','11:58:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,26,0,'2025-12-07','17:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,27,0,'2025-12-07','17:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,5,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,28,0,'2025-12-07','17:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,29,0,'2025-12-07','17:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,30,0,'2025-12-07','17:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,5,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,31,0,'2025-12-08','10:38:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,32,0,'2025-12-08','10:41:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,33,0,'2025-12-08','16:16:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,34,0,'2025-12-08','16:18:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,35,0,'2025-12-08','16:18:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,36,0,'2025-12-08','17:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,37,0,'2025-12-08','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,38,0,'2025-12-08','17:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'402',0,5,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,39,0,'2025-12-08','17:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,5,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,40,0,'2025-12-08','17:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,41,0,'2025-12-09','16:16:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,42,0,'2025-12-09','16:19:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,43,0,'2025-12-09','17:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,44,0,'2025-12-09','17:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,5,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,45,0,'2025-12-09','17:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,5,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,46,0,'2025-12-09','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,47,0,'2025-12-09','17:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,48,0,'2025-12-10','13:39:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,49,0,'2025-12-10','16:16:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,50,0,'2025-12-10','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,51,0,'2025-12-10','17:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,5,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,52,0,'2025-12-10','17:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,5,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,53,0,'2025-12-10','17:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,54,0,'2025-12-10','17:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,55,0,'2025-12-11','13:37:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,56,0,'2025-12-11','13:38:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',267,57,0,'2025-12-11','13:39:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-12-11 15:02:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,1,0,'2025-11-30','10:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,2,0,'2025-11-30','10:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,3,0,'2025-11-30','10:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,4,0,'2025-11-30','10:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,5,0,'2025-11-30','10:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,6,0,'2025-11-30','10:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,7,0,'2025-11-30','10:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,8,0,'2025-11-30','11:22:00','ROOM0008',0,7.00,100,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,9,0,'2025-11-30','11:23:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,10,0,'2025-11-30','11:23:00','WPRC0093',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,11,0,'2025-11-30','11:23:00','WPRC0080',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,12,0,'2025-12-01','10:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,13,0,'2025-12-01','10:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,14,0,'2025-12-01','10:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,15,0,'2025-12-01','10:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,16,0,'2025-12-01','10:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,17,0,'2025-12-01','11:23:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,18,0,'2025-12-01','13:17:00','ROOM0008',0,9.00,100,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,19,0,'2025-12-02','10:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,20,0,'2025-12-02','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,21,0,'2025-12-02','12:01:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,22,0,'2025-12-02','12:01:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,23,0,'2025-12-02','12:01:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,24,0,'2025-12-02','13:18:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,25,0,'2025-12-02','13:18:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,26,0,'2025-12-03','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,27,0,'2025-12-03','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,28,0,'2025-12-03','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,29,0,'2025-12-03','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,30,0,'2025-12-03','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,31,0,'2025-12-03','13:18:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,32,0,'2025-12-03','13:33:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,248,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,33,0,'2025-12-04','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,34,0,'2025-12-04','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,35,0,'2025-12-04','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,36,0,'2025-12-04','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,37,0,'2025-12-04','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,38,0,'2025-12-04','13:18:00','ROOM0008',0,13.00,100,1300,'P',0,0,1300.00,0.00,0.00,1300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,39,0,'2025-12-04','16:52:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,40,0,'2025-12-04','16:53:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,248,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,41,0,'2025-12-05','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,42,0,'2025-12-05','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,43,0,'2025-12-05','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,44,0,'2025-12-05','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,45,0,'2025-12-05','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,46,0,'2025-12-05','16:52:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,47,0,'2025-12-05','16:52:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,48,0,'2025-12-06','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,49,0,'2025-12-06','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,50,0,'2025-12-06','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,51,0,'2025-12-06','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,52,0,'2025-12-06','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,53,0,'2025-12-06','12:27:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,54,0,'2025-12-06','16:52:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,55,0,'2025-12-07','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,56,0,'2025-12-07','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,57,0,'2025-12-07','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,58,0,'2025-12-07','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,59,0,'2025-12-07','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,60,0,'2025-12-07','12:26:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,61,0,'2025-12-07','12:27:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,62,0,'2025-12-08','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,63,0,'2025-12-08','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,64,0,'2025-12-08','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,65,0,'2025-12-08','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,66,0,'2025-12-08','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,67,0,'2025-12-08','12:26:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,68,0,'2025-12-08','12:27:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,69,0,'2025-12-08','17:21:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,248,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,70,0,'2025-12-09','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,71,0,'2025-12-09','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,72,0,'2025-12-09','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,73,0,'2025-12-09','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,74,0,'2025-12-09','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,75,0,'2025-12-09','17:18:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,76,0,'2025-12-09','17:19:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,77,0,'2025-12-10','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,78,0,'2025-12-10','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,79,0,'2025-12-10','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,80,0,'2025-12-10','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,81,0,'2025-12-10','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,82,0,'2025-12-10','13:51:00','ROOM0008',0,9.00,100,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,83,0,'2025-12-10','13:51:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,84,0,'2025-12-11','13:51:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',268,85,0,'2025-12-11','13:53:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','riya','2025-12-11 14:25:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',270,1,0,'2025-12-10','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:13:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',270,2,0,'2025-12-10','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:13:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',270,3,0,'2025-12-10','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:13:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',270,4,0,'2025-12-10','13:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:13:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',270,5,0,'2025-12-10','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:13:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',270,6,0,'2025-12-10','13:00:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'210',0,5,0,'',0,'','','','','','riya','2025-12-11 16:13:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',270,7,0,'2025-12-10','13:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','riya','2025-12-11 16:13:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',270,8,0,'2025-12-10','16:09:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:13:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',270,9,0,'2025-12-10','16:09:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:13:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',270,10,0,'2025-12-10','16:10:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:13:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',270,11,0,'2025-12-11','16:09:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:13:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',270,12,0,'2025-12-11','16:10:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:13:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',270,13,0,'2025-12-11','16:10:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','riya','2025-12-11 16:13:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,1,0,'2025-12-01','14:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,2,0,'2025-12-01','14:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,3,0,'2025-12-01','14:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,4,0,'2025-12-01','14:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,5,0,'2025-12-01','14:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,6,0,'2025-12-01','14:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,7,0,'2025-12-01','14:08:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,8,0,'2025-12-01','15:36:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,9,0,'2025-12-01','15:36:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,10,0,'2025-12-01','15:36:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,11,0,'2025-12-01','15:37:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,12,0,'2025-12-01','15:41:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,13,0,'2025-12-01','15:42:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,14,0,'2025-12-01','15:43:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,15,0,'2025-12-01','15:45:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,16,0,'2025-12-02','14:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,17,0,'2025-12-02','14:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,18,0,'2025-12-02','14:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,19,0,'2025-12-02','14:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,20,0,'2025-12-02','14:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,21,0,'2025-12-02','14:08:00','ROOM0008',0,10.00,100,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,22,0,'2025-12-02','15:36:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,23,0,'2025-12-02','15:42:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,24,0,'2025-12-02','15:43:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,25,0,'2025-12-02','15:44:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,26,0,'2025-12-02','15:45:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,27,0,'2025-12-03','14:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,28,0,'2025-12-03','14:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,29,0,'2025-12-03','14:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,30,0,'2025-12-03','14:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,31,0,'2025-12-03','14:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,32,0,'2025-12-03','15:33:00','ROOM0008',0,9.00,100,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,33,0,'2025-12-03','15:42:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,34,0,'2025-12-03','15:43:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,35,0,'2025-12-03','15:44:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,36,0,'2025-12-03','15:45:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,37,0,'2025-12-03','15:48:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,8,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,38,0,'2025-12-03','15:48:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,41,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,39,0,'2025-12-04','14:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,40,0,'2025-12-04','14:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,41,0,'2025-12-04','14:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,42,0,'2025-12-04','14:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,43,0,'2025-12-04','14:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,44,0,'2025-12-04','15:34:00','ROOM0008',0,9.00,100,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,45,0,'2025-12-04','15:40:00','WPRC0092',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,39,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,46,0,'2025-12-04','15:42:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,47,0,'2025-12-04','15:43:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,48,0,'2025-12-04','15:44:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,49,0,'2025-12-04','15:46:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,50,0,'2025-12-05','14:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,51,0,'2025-12-05','14:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,52,0,'2025-12-05','14:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,53,0,'2025-12-05','14:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,54,0,'2025-12-05','14:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,55,0,'2025-12-05','15:35:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,56,0,'2025-12-05','15:42:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,57,0,'2025-12-05','15:43:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,58,0,'2025-12-05','15:44:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,59,0,'2025-12-05','15:45:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,60,0,'2025-12-05','15:46:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,61,0,'2025-12-06','14:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,62,0,'2025-12-06','14:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,63,0,'2025-12-06','14:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,64,0,'2025-12-06','14:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,65,0,'2025-12-06','14:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,66,0,'2025-12-06','15:35:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,67,0,'2025-12-06','15:43:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,68,0,'2025-12-06','15:46:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,69,0,'2025-12-07','14:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,70,0,'2025-12-07','14:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,71,0,'2025-12-07','15:35:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,72,0,'2025-12-07','15:46:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,73,0,'2025-12-08','14:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,74,0,'2025-12-08','14:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,75,0,'2025-12-08','15:35:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,76,0,'2025-12-08','15:37:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,77,0,'2025-12-08','15:46:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,78,0,'2025-12-09','14:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,79,0,'2025-12-09','14:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,80,0,'2025-12-09','15:59:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,81,0,'2025-12-09','16:00:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,82,0,'2025-12-10','14:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,83,0,'2025-12-10','14:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,84,0,'2025-12-10','15:59:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,85,0,'2025-12-10','16:00:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,86,0,'2025-12-11','15:59:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,87,0,'2025-12-11','16:02:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,88,0,'2025-12-07','18:11:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,89,0,'2025-12-08','18:11:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,90,0,'2025-12-09','18:11:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,91,0,'2025-12-10','18:11:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,92,0,'2025-12-11','18:11:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,93,0,'2025-12-07','18:12:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,94,0,'2025-12-08','18:12:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,95,0,'2025-12-09','18:12:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,96,0,'2025-12-10','18:12:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,97,0,'2025-12-11','18:13:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,98,0,'2025-12-07','18:13:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,99,0,'2025-12-08','18:13:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,100,0,'2025-12-09','18:13:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,101,0,'2025-12-10','18:13:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',271,102,0,'2025-12-11','18:13:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,1,0,'2025-12-09','12:24:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,2,0,'2025-12-09','12:24:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,3,0,'2025-12-09','12:24:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,4,0,'2025-12-09','12:26:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,5,0,'2025-12-09','12:26:00','WPRC0092',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,4,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,6,0,'2025-12-09','12:27:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,7,0,'2025-12-09','12:28:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,8,0,'2025-12-09','12:28:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,9,0,'2025-12-09','16:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,10,0,'2025-12-09','16:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,11,0,'2025-12-09','16:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,12,0,'2025-12-09','16:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,13,0,'2025-12-09','16:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,14,0,'2025-12-09','16:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,15,0,'2025-12-10','12:26:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,16,0,'2025-12-10','12:27:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,17,0,'2025-12-10','12:28:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,18,0,'2025-12-10','12:28:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,19,0,'2025-12-10','12:28:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,20,0,'2025-12-10','14:51:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,21,0,'2025-12-10','16:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,22,0,'2025-12-10','16:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,23,0,'2025-12-10','16:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,24,0,'2025-12-10','16:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,25,0,'2025-12-10','16:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,26,0,'2025-12-10','20:52:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,212,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,27,0,'2025-12-11','14:51:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,28,0,'2025-12-11','16:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,29,0,'2025-12-11','16:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,30,0,'2025-12-11','16:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,31,0,'2025-12-11','16:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,32,0,'2025-12-11','16:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,33,0,'2025-12-11','20:48:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,34,0,'2025-12-11','20:49:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,35,0,'2025-12-11','20:49:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,36,0,'2025-12-11','20:51:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,37,0,'2025-12-11','20:51:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,38,0,'2025-12-11','20:52:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,39,0,'2025-12-12','12:11:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,40,0,'2025-12-12','12:11:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,41,0,'2025-12-12','12:12:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,4,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,42,0,'2025-12-12','12:12:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,43,0,'2025-12-12','12:14:00','WPRC0087',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',272,44,0,'2025-12-12','14:53:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-12 15:04:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,1,0,'2025-12-04','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,2,0,'2025-12-04','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,3,0,'2025-12-04','16:08:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,4,0,'2025-12-04','16:57:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,5,0,'2025-12-04','16:58:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,6,0,'2025-12-04','16:58:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,7,0,'2025-12-04','16:59:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,8,0,'2025-12-04','16:59:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,9,0,'2025-12-04','17:00:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,10,0,'2025-12-04','17:00:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,11,0,'2025-12-04','17:00:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,12,0,'2025-12-04','19:31:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,13,0,'2025-12-05','16:58:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,14,0,'2025-12-05','16:59:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,15,0,'2025-12-05','16:59:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,16,0,'2025-12-05','17:00:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,17,0,'2025-12-05','17:00:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,18,0,'2025-12-05','17:00:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,19,0,'2025-12-05','18:32:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,20,0,'2025-12-05','18:32:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,21,0,'2025-12-06','13:33:00','XRY0045',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,22,0,'2025-12-06','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,23,0,'2025-12-06','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,24,0,'2025-12-06','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,25,0,'2025-12-06','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,26,0,'2025-12-06','15:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,27,0,'2025-12-06','16:58:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,28,0,'2025-12-06','16:58:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,29,0,'2025-12-06','16:59:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,30,0,'2025-12-07','13:33:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,31,0,'2025-12-07','13:34:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,32,0,'2025-12-07','13:35:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,33,0,'2025-12-07','13:35:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,34,0,'2025-12-07','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,35,0,'2025-12-07','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,36,0,'2025-12-07','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,37,0,'2025-12-07','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,38,0,'2025-12-07','15:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,39,0,'2025-12-08','13:33:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,40,0,'2025-12-08','13:35:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,41,0,'2025-12-08','13:35:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,42,0,'2025-12-08','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,43,0,'2025-12-08','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,44,0,'2025-12-08','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,45,0,'2025-12-08','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,46,0,'2025-12-08','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,47,0,'2025-12-08','16:30:00','USG0095',0,1.00,1200,1200,'A',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,48,0,'2025-12-09','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,49,0,'2025-12-09','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,50,0,'2025-12-09','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,51,0,'2025-12-09','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,52,0,'2025-12-09','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,53,0,'2025-12-09','16:28:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,54,0,'2025-12-09','16:29:00','WPRC0097',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,55,0,'2025-12-09','16:29:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,56,0,'2025-12-09','16:32:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,57,0,'2025-12-09','16:32:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,58,0,'2025-12-09','16:33:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,59,0,'2025-12-10','15:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,60,0,'2025-12-10','15:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,61,0,'2025-12-10','15:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,62,0,'2025-12-10','15:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,63,0,'2025-12-10','15:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,64,0,'2025-12-10','16:29:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,65,0,'2025-12-10','16:32:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,66,0,'2025-12-10','16:32:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,67,0,'2025-12-10','18:22:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,68,0,'2025-12-11','10:47:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,69,0,'2025-12-11','10:47:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,70,0,'2025-12-11','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,71,0,'2025-12-11','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,72,0,'2025-12-11','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,73,0,'2025-12-11','15:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,74,0,'2025-12-11','15:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,75,0,'2025-12-11','18:22:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,76,0,'2025-12-12','10:47:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,77,0,'2025-12-12','10:48:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,78,0,'2025-12-12','18:22:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,79,0,'2025-12-12','18:29:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',273,80,0,'2025-12-12','18:29:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:32:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,1,0,'2025-11-06','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,2,0,'2025-11-06','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,3,0,'2025-11-06','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,4,0,'2025-11-06','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,5,0,'2025-11-06','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,6,0,'2025-11-06','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,7,0,'2025-11-06','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,8,0,'2025-11-06','15:32:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,9,0,'2025-11-07','08:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,10,0,'2025-11-07','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,11,0,'2025-11-07','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,12,0,'2025-11-07','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,13,0,'2025-11-07','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,14,0,'2025-11-07','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,15,0,'2025-11-08','08:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,16,0,'2025-11-08','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,17,0,'2025-11-08','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,18,0,'2025-11-08','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,19,0,'2025-11-08','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,20,0,'2025-11-08','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,21,0,'2025-11-09','08:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,22,0,'2025-11-09','08:55:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',274,23,0,'2025-11-09','19:27:00','OETR0004',0,1.00,10398,10398,'P',0,0,10398.00,0.00,0.00,10398.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,1,0,'2025-12-09','16:11:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,2,0,'2025-12-09','17:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,3,0,'2025-12-09','17:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,4,0,'2025-12-09','17:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,5,0,'2025-12-09','17:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,6,0,'2025-12-09','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,7,0,'2025-12-09','17:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,7,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,8,0,'2025-12-10','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,9,0,'2025-12-10','17:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,7,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,10,0,'2025-12-10','17:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,7,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,11,0,'2025-12-10','17:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,12,0,'2025-12-10','17:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,13,0,'2025-12-11','10:41:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,14,0,'2025-12-11','17:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,15,0,'2025-12-11','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,16,0,'2025-12-11','17:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,17,0,'2025-12-11','17:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,7,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,18,0,'2025-12-11','17:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,7,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,19,0,'2025-12-12','17:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,20,0,'2025-12-12','17:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,21,0,'2025-12-12','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,22,0,'2025-12-12','17:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,7,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',275,23,0,'2025-12-12','22:10:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,7,0,'',0,'','','','','','riya','2025-12-13 11:04:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,1,0,'2025-12-08','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,2,0,'2025-12-08','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,3,0,'2025-12-08','13:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,4,0,'2025-12-08','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,5,0,'2025-12-08','13:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,6,0,'2025-12-08','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,7,0,'2025-12-08','13:56:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,8,0,'2025-12-09','13:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,9,0,'2025-12-09','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'212',0,4,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,10,0,'2025-12-09','13:56:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,11,0,'2025-12-09','13:57:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,12,0,'2025-12-09','13:58:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,13,0,'2025-12-09','13:59:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,14,0,'2025-12-09','13:59:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,15,0,'2025-12-09','13:59:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,16,0,'2025-12-10','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,17,0,'2025-12-10','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,18,0,'2025-12-10','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,19,0,'2025-12-10','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,20,0,'2025-12-10','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,21,0,'2025-12-10','16:13:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,22,0,'2025-12-10','16:13:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,23,0,'2025-12-11','10:23:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,24,0,'2025-12-11','13:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,25,0,'2025-12-11','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,26,0,'2025-12-11','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,27,0,'2025-12-11','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,28,0,'2025-12-11','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,29,0,'2025-12-12','10:23:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,30,0,'2025-12-12','12:46:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,31,0,'2025-12-12','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,32,0,'2025-12-12','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,33,0,'2025-12-12','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,34,0,'2025-12-12','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,35,0,'2025-12-12','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',277,36,0,'2025-12-13','12:45:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','dharmishthaben','2025-12-13 14:10:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,1,0,'2025-11-30','12:47:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,2,0,'2025-11-30','17:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,3,0,'2025-11-30','17:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,4,0,'2025-11-30','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,5,0,'2025-11-30','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,6,0,'2025-11-30','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,7,0,'2025-11-30','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,8,0,'2025-12-01','12:47:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,9,0,'2025-12-01','12:47:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,10,0,'2025-12-01','13:07:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,11,0,'2025-12-01','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,12,0,'2025-12-01','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,13,0,'2025-12-01','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,14,0,'2025-12-01','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,15,0,'2025-12-02','12:02:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,16,0,'2025-12-02','12:47:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,17,0,'2025-12-02','12:48:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,18,0,'2025-12-02','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,19,0,'2025-12-02','19:02:00','SURG0016',0,1.00,45000,45000,'P',0,0,45000.00,0.00,0.00,45000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,20,0,'2025-12-02','19:02:00','SURG0015',0,1.00,11250,11250,'P',0,0,11250.00,0.00,0.00,11250.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,21,0,'2025-12-02','19:14:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,22,0,'2025-12-02','19:14:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,23,0,'2025-12-02','19:14:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,24,0,'2025-12-02','19:14:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,25,0,'2025-12-03','12:02:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,26,0,'2025-12-03','12:03:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,27,0,'2025-12-03','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,28,0,'2025-12-03','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,29,0,'2025-12-03','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,30,0,'2025-12-03','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,31,0,'2025-12-03','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,32,0,'2025-12-04','12:03:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,33,0,'2025-12-04','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,34,0,'2025-12-04','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,35,0,'2025-12-04','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,36,0,'2025-12-04','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,37,0,'2025-12-04','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,38,0,'2025-12-04','20:19:00','WPRC0092',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,39,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,39,0,'2025-12-04','20:19:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,40,0,'2025-12-05','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,41,0,'2025-12-05','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,42,0,'2025-12-05','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,43,0,'2025-12-05','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,44,0,'2025-12-05','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,45,0,'2025-12-05','20:19:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,46,0,'2025-12-05','20:20:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,47,0,'2025-12-06','13:17:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,48,0,'2025-12-06','16:55:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,49,0,'2025-12-06','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,50,0,'2025-12-06','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,51,0,'2025-12-06','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,52,0,'2025-12-06','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,53,0,'2025-12-06','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,54,0,'2025-12-07','13:15:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,55,0,'2025-12-07','13:16:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,56,0,'2025-12-07','13:17:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,57,0,'2025-12-07','13:18:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,58,0,'2025-12-07','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,59,0,'2025-12-07','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,60,0,'2025-12-07','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,61,0,'2025-12-07','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,62,0,'2025-12-07','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,63,0,'2025-12-08','13:16:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,64,0,'2025-12-08','13:47:00','SURG0015',0,1.00,7000,7000,'P',0,0,7000.00,0.00,0.00,7000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,65,0,'2025-12-08','16:52:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,66,0,'2025-12-08','16:53:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,67,0,'2025-12-08','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,68,0,'2025-12-08','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,69,0,'2025-12-08','20:06:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,70,0,'2025-12-08','20:06:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,71,0,'2025-12-08','20:06:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,72,0,'2025-12-09','16:52:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,73,0,'2025-12-09','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,74,0,'2025-12-09','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,75,0,'2025-12-09','19:56:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,76,0,'2025-12-09','19:56:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,77,0,'2025-12-09','19:56:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,78,0,'2025-12-10','10:34:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,79,0,'2025-12-10','16:25:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,80,0,'2025-12-10','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,81,0,'2025-12-10','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,82,0,'2025-12-10','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,83,0,'2025-12-10','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,84,0,'2025-12-10','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,85,0,'2025-12-11','10:33:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,86,0,'2025-12-11','10:36:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,87,0,'2025-12-11','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,88,0,'2025-12-11','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,89,0,'2025-12-11','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,90,0,'2025-12-11','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,91,0,'2025-12-11','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,92,0,'2025-12-12','10:33:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,93,0,'2025-12-12','10:36:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,94,0,'2025-12-12','13:52:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,95,0,'2025-12-12','13:54:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,96,0,'2025-12-12','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,97,0,'2025-12-12','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,98,0,'2025-12-12','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,99,0,'2025-12-12','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,100,0,'2025-12-12','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,101,0,'2025-12-13','13:53:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,102,0,'2025-12-13','13:54:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',278,103,0,'2025-12-13','13:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:23:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',279,1,0,'2025-12-13','01:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 15:05:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',279,2,0,'2025-12-13','01:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 15:05:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',279,3,0,'2025-12-13','01:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-13 15:05:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',279,4,0,'2025-12-13','01:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-13 15:05:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',279,5,0,'2025-12-13','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-13 15:05:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',279,6,0,'2025-12-13','01:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,4,0,'',0,'','','','','','riya','2025-12-13 15:05:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',279,7,0,'2025-12-13','14:39:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 15:05:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',279,8,0,'2025-12-13','14:40:00','WPRC0090',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 15:05:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',281,1,0,'2025-12-12','19:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:32:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',281,2,0,'2025-12-12','19:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:32:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',281,3,0,'2025-12-12','19:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:32:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',281,4,0,'2025-12-12','19:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:32:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',281,5,0,'2025-12-12','19:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:32:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',281,6,0,'2025-12-12','19:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-12-13 18:32:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',281,7,0,'2025-12-13','18:14:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:32:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',281,8,0,'2025-12-13','19:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-12-13 18:32:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',281,9,0,'2025-12-13','18:31:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:32:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,1,0,'2025-12-08','16:22:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,2,0,'2025-12-08','18:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,3,0,'2025-12-08','18:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,4,0,'2025-12-08','18:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,5,0,'2025-12-08','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,6,0,'2025-12-08','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,7,0,'2025-12-08','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,8,0,'2025-12-09','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,9,0,'2025-12-09','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,10,0,'2025-12-09','18:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,11,0,'2025-12-09','18:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,12,0,'2025-12-09','18:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,13,0,'2025-12-10','18:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,14,0,'2025-12-10','18:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,15,0,'2025-12-10','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,16,0,'2025-12-10','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,17,0,'2025-12-10','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,18,0,'2025-12-11','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,19,0,'2025-12-11','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,20,0,'2025-12-11','18:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,21,0,'2025-12-11','18:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,22,0,'2025-12-11','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,23,0,'2025-12-12','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,24,0,'2025-12-12','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,25,0,'2025-12-12','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,26,0,'2025-12-12','18:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,27,0,'2025-12-12','18:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,28,0,'2025-12-13','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,29,0,'2025-12-13','18:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,30,0,'2025-12-13','18:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,31,0,'2025-12-13','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,32,0,'2025-12-13','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',282,33,0,'2025-12-14','11:14:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','riya','2025-12-14 12:31:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,1,0,'2025-12-12','12:15:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,2,0,'2025-12-12','12:24:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,3,0,'2025-12-12','12:24:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,4,0,'2025-12-12','18:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,5,0,'2025-12-12','18:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,6,0,'2025-12-12','18:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,7,0,'2025-12-12','18:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,8,0,'2025-12-12','18:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,9,0,'2025-12-13','12:15:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,10,0,'2025-12-13','12:16:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,11,0,'2025-12-13','12:25:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,12,0,'2025-12-13','12:25:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,13,0,'2025-12-13','18:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'407',0,42,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,14,0,'2025-12-13','18:30:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'407',0,42,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,15,0,'2025-12-13','18:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,16,0,'2025-12-13','18:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,17,0,'2025-12-13','18:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,18,0,'2025-12-14','12:15:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,19,0,'2025-12-14','12:16:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',283,20,0,'2025-12-14','12:25:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:25:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',284,1,0,'2025-12-13','09:53:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:45:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',284,2,0,'2025-12-13','09:53:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:45:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',284,3,0,'2025-12-13','09:53:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'306',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:45:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',284,4,0,'2025-12-13','09:53:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'306',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:45:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',284,5,0,'2025-12-13','09:53:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'306',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:45:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',284,6,0,'2025-12-13','09:53:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'306',0,4,0,'',0,'','','','','','riya','2025-12-14 12:45:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',284,7,0,'2025-12-13','09:53:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'306',0,4,0,'',0,'','','','','','riya','2025-12-14 12:45:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',284,8,0,'2025-12-13','12:38:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:45:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',284,9,0,'2025-12-13','12:38:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:45:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',284,10,0,'2025-12-13','12:39:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-12-14 12:45:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',284,11,0,'2025-12-13','12:39:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:45:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',284,12,0,'2025-12-13','12:40:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:45:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',284,13,0,'2025-12-13','12:40:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:45:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',284,14,0,'2025-12-14','09:53:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'302',0,4,0,'',0,'','','','','','riya','2025-12-14 12:45:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',284,15,0,'2025-12-14','12:39:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 12:45:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,1,0,'2025-12-10','10:50:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,2,0,'2025-12-10','10:51:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,3,0,'2025-12-10','18:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,4,0,'2025-12-10','18:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,5,0,'2025-12-10','18:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,6,0,'2025-12-10','18:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,7,0,'2025-12-10','18:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,8,0,'2025-12-10','18:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,9,0,'2025-12-11','10:50:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,10,0,'2025-12-11','10:51:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,11,0,'2025-12-11','18:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,12,0,'2025-12-11','18:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,13,0,'2025-12-11','18:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,14,0,'2025-12-11','18:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,15,0,'2025-12-11','18:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,16,0,'2025-12-12','10:50:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,17,0,'2025-12-12','10:51:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,18,0,'2025-12-12','18:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,19,0,'2025-12-12','18:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,20,0,'2025-12-12','18:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,21,0,'2025-12-12','18:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,22,0,'2025-12-12','18:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,23,0,'2025-12-13','16:12:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,24,0,'2025-12-13','16:13:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,25,0,'2025-12-13','16:15:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',285,26,0,'2025-12-13','16:16:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 10:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',286,1,0,'2025-12-13','10:19:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 15:16:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',286,2,0,'2025-12-13','10:19:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 15:16:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',286,3,0,'2025-12-13','10:19:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'306',0,9999,0,'',0,'','','','','','riya','2025-12-14 15:16:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',286,4,0,'2025-12-13','10:19:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'306',0,9999,0,'',0,'','','','','','riya','2025-12-14 15:16:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',286,5,0,'2025-12-13','10:19:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'306',0,9999,0,'',0,'','','','','','riya','2025-12-14 15:16:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',286,6,0,'2025-12-13','10:19:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'306',0,3,0,'',0,'','','','','','riya','2025-12-14 15:16:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',286,7,0,'2025-12-13','10:19:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'306',0,3,0,'',0,'','','','','','riya','2025-12-14 15:16:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',286,8,0,'2025-12-13','15:13:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 15:16:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',286,9,0,'2025-12-13','15:13:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 15:16:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',286,10,0,'2025-12-14','15:13:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-12-14 15:16:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',286,11,0,'2025-12-13','15:14:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-14 15:16:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',287,1,0,'2025-12-14','01:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 16:49:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',287,2,0,'2025-12-14','01:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 16:49:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',287,3,0,'2025-12-14','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-14 16:49:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',287,4,0,'2025-12-14','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-14 16:49:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',287,5,0,'2025-12-14','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-14 16:49:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',287,6,0,'2025-12-14','01:00:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'405',0,42,0,'',0,'','','','','','vishal','2025-12-14 16:49:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',287,7,0,'2025-12-14','16:40:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 16:49:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',287,8,0,'2025-12-14','16:40:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 16:49:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',288,1,0,'2025-12-13','10:27:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:32:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',288,2,0,'2025-12-13','10:27:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:32:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',288,3,0,'2025-12-13','10:27:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:32:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',288,4,0,'2025-12-13','10:27:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:32:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',288,5,0,'2025-12-13','10:27:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:32:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',288,6,0,'2025-12-13','10:27:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-12-14 17:32:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',288,7,0,'2025-12-13','10:27:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-12-14 17:32:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',288,8,0,'2025-12-13','11:50:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:32:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',288,9,0,'2025-12-13','11:50:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:32:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',288,10,0,'2025-12-14','10:27:00','ROOM0009',0,0.50,2900,1450,'A',0,0,1450.00,0.00,0.00,1450.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:32:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',288,11,0,'2025-12-14','10:27:00','AECO0008',0,0.50,300,150,'A',0,0,150.00,0.00,0.00,150.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:32:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',288,12,0,'2025-12-14','10:27:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:32:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',288,13,0,'2025-12-14','10:27:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','vishal','2025-12-14 17:32:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',288,14,0,'2025-12-14','11:51:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:32:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',288,15,0,'2025-12-14','11:51:00','WPRC0078',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:32:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,1,0,'2025-12-10','20:06:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,2,0,'2025-12-10','20:06:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,3,0,'2025-12-10','20:07:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,78,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,4,0,'2025-12-10','20:07:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,5,0,'2025-12-10','22:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,6,0,'2025-12-10','22:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,7,0,'2025-12-10','22:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,8,0,'2025-12-10','22:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,9,0,'2025-12-10','22:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,10,0,'2025-12-10','22:15:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'207',0,78,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,11,0,'2025-12-11','11:54:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,12,0,'2025-12-11','11:55:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,13,0,'2025-12-11','16:00:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,14,0,'2025-12-11','20:07:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,15,0,'2025-12-11','22:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,16,0,'2025-12-11','22:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,17,0,'2025-12-11','22:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,18,0,'2025-12-11','22:15:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'207',0,78,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,19,0,'2025-12-12','11:54:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,20,0,'2025-12-12','11:56:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,21,0,'2025-12-12','21:12:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,22,0,'2025-12-12','22:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,23,0,'2025-12-12','22:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,24,0,'2025-12-12','22:15:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,78,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,25,0,'2025-12-12','22:15:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,78,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,26,0,'2025-12-12','22:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,27,0,'2025-12-13','15:59:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,28,0,'2025-12-13','16:03:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,29,0,'2025-12-13','22:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,30,0,'2025-12-13','22:15:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,78,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,31,0,'2025-12-13','22:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,32,0,'2025-12-13','22:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,33,0,'2025-12-14','15:59:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,34,0,'2025-12-14','16:04:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,35,0,'2025-12-14','22:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,36,0,'2025-12-14','22:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,37,0,'2025-12-14','22:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,38,0,'2025-12-14','22:15:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,78,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,39,0,'2025-12-15','16:00:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',290,40,0,'2025-12-15','16:01:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-12-15 16:42:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',291,1,0,'2025-10-13','22:24:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',291,2,0,'2025-10-13','22:24:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',291,3,0,'2025-10-13','22:24:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',291,4,0,'2025-10-13','22:24:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',291,5,0,'2025-10-13','22:24:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',291,6,0,'2025-10-13','22:49:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',291,7,0,'2025-10-14','22:24:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',291,8,0,'2025-10-14','22:24:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-12-15 18:00:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',291,9,0,'2025-10-14','22:24:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','vishal','2025-12-15 18:00:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',291,10,0,'2025-10-14','22:24:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',291,11,0,'2025-10-14','22:24:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',291,12,0,'2025-10-15','22:24:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',291,13,0,'2025-10-15','22:24:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',291,14,0,'2025-10-15','22:24:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',291,15,0,'2025-10-15','22:24:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','vishal','2025-12-15 18:00:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',291,16,0,'2025-10-15','22:46:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-15 18:00:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',291,17,0,'2025-10-16','17:06:00','OETR0004',0,1.00,16046,16046,'P',0,0,16046.00,0.00,0.00,16046.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',291,18,0,'2025-10-16','22:24:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','vishal','2025-12-15 18:00:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',292,1,0,'2025-12-14','21:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 21:10:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',292,2,0,'2025-12-14','21:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 21:10:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',292,3,0,'2025-12-14','21:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-15 21:10:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',292,4,0,'2025-12-14','21:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-15 21:10:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',292,5,0,'2025-12-14','21:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-15 21:10:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',292,6,0,'2025-12-14','21:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-15 21:10:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',292,7,0,'2025-12-14','21:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-15 21:10:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',292,8,0,'2025-12-14','21:09:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 21:10:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',292,9,0,'2025-12-14','21:10:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 21:10:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',292,10,0,'2025-12-14','21:10:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 21:10:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',293,1,0,'2025-12-15','11:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:15:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',293,2,0,'2025-12-15','11:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:15:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',293,3,0,'2025-12-15','11:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:15:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',293,4,0,'2025-12-15','11:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:15:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',293,5,0,'2025-12-15','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:15:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',293,6,0,'2025-12-15','11:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,3,0,'',0,'','','','','','vishal','2025-12-16 11:15:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',293,7,0,'2025-12-16','11:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,3,0,'',0,'','','','','','vishal','2025-12-16 11:15:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',293,8,0,'2025-12-16','11:10:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:15:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',293,9,0,'2025-12-16','11:10:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:15:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',293,10,0,'2025-12-15','11:15:00','SURG0014',0,1.00,10000,10000,'P',0,0,10000.00,0.00,0.00,10000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-16 11:15:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',293,11,0,'2025-12-15','11:15:00','SURG0015',0,1.00,3100,3100,'P',0,0,3100.00,0.00,0.00,3100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-16 11:15:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,1,0,'2025-12-13','11:59:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,2,0,'2025-12-13','21:19:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,3,0,'2025-12-13','21:19:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,4,0,'2025-12-13','21:19:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,5,0,'2025-12-13','21:19:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,6,0,'2025-12-13','21:19:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,7,0,'2025-12-14','11:59:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,8,0,'2025-12-14','12:39:00','SURG0015',0,1.00,12000,12000,'P',0,0,12000.00,0.00,0.00,12000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,9,0,'2025-12-14','12:39:00','SURG0014',0,1.00,36000,36000,'P',0,0,36000.00,0.00,0.00,36000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,10,0,'2025-12-14','21:19:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,11,0,'2025-12-14','21:19:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,12,0,'2025-12-14','21:19:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,13,0,'2025-12-14','21:19:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,14,0,'2025-12-14','21:19:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,15,0,'2025-12-15','21:19:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,16,0,'2025-12-15','21:19:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,17,0,'2025-12-15','21:19:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,18,0,'2025-12-15','21:19:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,19,0,'2025-12-15','21:19:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,20,0,'2025-12-16','12:00:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',295,21,0,'2025-12-16','21:19:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-12-16 13:58:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',296,1,0,'2025-12-15','11:34:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:10:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',296,2,0,'2025-12-15','11:35:00','WPRC0087',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:10:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',296,3,0,'2025-12-15','11:35:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:10:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',296,4,0,'2025-12-15','11:36:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,7,0,'',0,'','','','','','riya','2025-12-16 13:10:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',296,5,0,'2025-12-15','11:36:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:10:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',296,6,0,'2025-12-15','11:37:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,7,0,'',0,'','','','','','riya','2025-12-16 13:10:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',296,7,0,'2025-12-15','11:37:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:10:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',296,8,0,'2025-12-15','11:49:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:10:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',296,9,0,'2025-12-15','17:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:10:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',296,10,0,'2025-12-15','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:10:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',296,11,0,'2025-12-15','17:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:10:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',296,12,0,'2025-12-15','17:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:10:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',296,13,0,'2025-12-15','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,7,0,'',0,'','','','','','riya','2025-12-16 13:10:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',296,14,0,'2025-12-15','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:10:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',296,15,0,'2025-12-16','11:35:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:10:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',296,16,0,'2025-12-16','11:37:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:10:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',296,17,0,'2025-12-16','11:49:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:10:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',296,18,0,'2025-12-16','17:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,7,0,'',0,'','','','','','riya','2025-12-16 13:10:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',299,1,0,'2025-12-15','14:53:00','USG0092',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 15:32:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',299,2,0,'2025-12-15','14:56:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 15:32:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',299,3,0,'2025-12-15','14:57:00','WPRC0090',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 15:32:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',299,4,0,'2025-12-15','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 15:32:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',299,5,0,'2025-12-15','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 15:32:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',299,6,0,'2025-12-15','15:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-16 15:32:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',299,7,0,'2025-12-15','15:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-16 15:32:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',299,8,0,'2025-12-15','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-16 15:32:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',299,9,0,'2025-12-15','15:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,4,0,'',0,'','','','','','riya','2025-12-16 15:32:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',299,10,0,'2025-12-16','15:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,4,0,'',0,'','','','','','riya','2025-12-16 15:32:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',300,1,0,'2025-12-16','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 17:49:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',300,2,0,'2025-12-16','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 17:49:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',300,3,0,'2025-12-16','09:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','vishal','2025-12-16 17:49:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',300,4,0,'2025-12-16','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','vishal','2025-12-16 17:49:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',300,5,0,'2025-12-16','17:46:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 17:49:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',300,6,0,'2025-12-16','17:49:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 17:49:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',301,1,0,'2025-12-16','00:05:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:34:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',301,2,0,'2025-12-16','00:05:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:34:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',301,3,0,'2025-12-16','00:05:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:34:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',301,4,0,'2025-12-16','00:05:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','vishal','2025-12-16 19:34:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',301,5,0,'2025-12-16','00:05:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','vishal','2025-12-16 19:34:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',301,6,0,'2025-12-16','12:05:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:34:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',301,7,0,'2025-12-16','12:05:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:34:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',301,8,0,'2025-12-16','19:30:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:34:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',301,9,0,'2025-12-16','19:30:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:34:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',301,10,0,'2025-12-16','19:31:00','WPRC0090',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:34:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',301,11,0,'2025-12-16','19:32:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:34:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',302,1,0,'2025-12-16','02:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:34:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',302,2,0,'2025-12-16','02:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:34:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',302,3,0,'2025-12-16','02:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:34:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',302,4,0,'2025-12-16','02:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:34:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',302,5,0,'2025-12-16','02:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:34:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',302,6,0,'2025-12-16','02:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','vishal','2025-12-16 19:34:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',302,7,0,'2025-12-16','02:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'210',0,4,0,'',0,'','','','','','vishal','2025-12-16 19:34:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',302,8,0,'2025-12-16','19:19:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:34:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',302,9,0,'2025-12-16','19:19:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:34:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',302,10,0,'2025-12-16','19:20:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:34:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',302,11,0,'2025-12-16','19:20:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-16 19:34:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,1,0,'2025-12-12','14:17:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,2,0,'2025-12-12','19:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,3,0,'2025-12-12','19:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,4,0,'2025-12-12','19:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,5,0,'2025-12-12','19:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,6,0,'2025-12-12','19:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,7,0,'2025-12-13','12:33:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,8,0,'2025-12-13','14:17:00','USG0092',0,1.00,1200,1200,'A',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,9,0,'2025-12-13','19:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,10,0,'2025-12-13','19:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,11,0,'2025-12-13','19:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,12,0,'2025-12-13','19:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,13,0,'2025-12-13','19:50:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,14,0,'2025-12-14','19:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,15,0,'2025-12-14','19:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,16,0,'2025-12-14','19:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,17,0,'2025-12-14','19:50:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,18,0,'2025-12-14','21:26:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,19,0,'2025-12-15','19:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,20,0,'2025-12-15','19:50:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,21,0,'2025-12-15','19:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,22,0,'2025-12-15','19:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,23,0,'2025-12-15','19:50:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,24,0,'2025-12-15','21:26:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,25,0,'2025-12-16','19:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,26,0,'2025-12-16','19:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,27,0,'2025-12-16','19:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,28,0,'2025-12-16','19:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,29,0,'2025-12-16','19:50:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,30,0,'2025-12-16','21:26:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,31,0,'2025-12-17','12:33:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',303,32,0,'2025-12-17','12:35:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-17 12:39:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,1,0,'2025-12-08','12:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,2,0,'2025-12-08','12:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,3,0,'2025-12-08','12:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,4,0,'2025-12-08','12:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,5,0,'2025-12-08','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,6,0,'2025-12-08','12:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'409',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,7,0,'2025-12-08','13:02:00','DRC0021',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,8,0,'2025-12-08','16:02:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,9,0,'2025-12-08','16:03:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,10,0,'2025-12-08','16:05:00','USG0091',0,1.00,1200,1200,'A',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,11,0,'2025-12-09','12:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,12,0,'2025-12-09','12:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,13,0,'2025-12-09','12:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,14,0,'2025-12-09','12:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,15,0,'2025-12-09','12:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,16,0,'2025-12-09','16:02:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,17,0,'2025-12-09','16:03:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,18,0,'2025-12-09','16:06:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,19,0,'2025-12-10','12:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,20,0,'2025-12-10','12:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,21,0,'2025-12-10','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,22,0,'2025-12-10','12:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,23,0,'2025-12-10','12:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,24,0,'2025-12-10','16:02:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,25,0,'2025-12-10','16:03:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,26,0,'2025-12-10','16:05:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,27,0,'2025-12-11','12:31:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,28,0,'2025-12-11','12:32:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,29,0,'2025-12-11','12:32:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,30,0,'2025-12-11','12:32:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,31,0,'2025-12-11','12:33:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,32,0,'2025-12-11','12:35:00','SURG0014',0,1.00,20000,20000,'P',0,0,20000.00,0.00,0.00,20000.00,'',0,70,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,33,0,'2025-12-11','12:35:00','SURG0015',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,34,0,'2025-12-11','20:00:00','WPRC0092',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,39,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,35,0,'2025-12-11','20:00:00','ROOM0008',0,5.00,100,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,36,0,'2025-12-11','20:02:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,70,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,37,0,'2025-12-11','20:02:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,38,0,'2025-12-12','12:30:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,39,0,'2025-12-12','12:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,40,0,'2025-12-12','12:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,41,0,'2025-12-12','12:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,42,0,'2025-12-12','12:34:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,43,0,'2025-12-12','12:43:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,44,0,'2025-12-12','14:24:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,70,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,45,0,'2025-12-13','12:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,46,0,'2025-12-13','12:30:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,47,0,'2025-12-13','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,48,0,'2025-12-13','12:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,49,0,'2025-12-13','12:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,50,0,'2025-12-13','14:23:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,51,0,'2025-12-13','14:24:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,52,0,'2025-12-13','14:25:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,53,0,'2025-12-14','12:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,54,0,'2025-12-14','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,55,0,'2025-12-14','12:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,56,0,'2025-12-14','12:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,57,0,'2025-12-14','14:23:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,58,0,'2025-12-14','21:29:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,59,0,'2025-12-15','12:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,60,0,'2025-12-15','12:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,61,0,'2025-12-15','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,62,0,'2025-12-15','12:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,63,0,'2025-12-15','12:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,64,0,'2025-12-15','21:28:00','WPRC0083',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,65,0,'2025-12-15','21:28:00','ROOM0008',0,6.00,100,600,'A',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,66,0,'2025-12-16','12:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,67,0,'2025-12-16','12:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,68,0,'2025-12-16','12:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,69,0,'2025-12-16','12:30:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,70,0,'2025-12-16','12:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,71,0,'2025-12-16','21:28:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,72,0,'2025-12-16','21:28:00','WPRC0083',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,73,0,'2025-12-17','12:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,74,0,'2025-12-17','13:07:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',304,75,0,'2025-12-17','13:26:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:43:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',305,1,0,'2025-12-15','13:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:56:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',305,2,0,'2025-12-15','13:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:56:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',305,3,0,'2025-12-15','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:56:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',305,4,0,'2025-12-15','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:56:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',305,5,0,'2025-12-15','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:56:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',305,6,0,'2025-12-15','13:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,6,0,'',0,'','','','','','vishal','2025-12-17 13:56:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',305,7,0,'2025-12-15','13:37:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:56:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',305,8,0,'2025-12-16','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:56:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',305,9,0,'2025-12-16','13:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,6,0,'',0,'','','','','','vishal','2025-12-17 13:56:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',305,10,0,'2025-12-16','13:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,6,0,'',0,'','','','','','vishal','2025-12-17 13:56:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',305,11,0,'2025-12-16','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:56:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',305,12,0,'2025-12-16','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:56:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',305,13,0,'2025-12-16','13:46:00','SURG0016',0,1.00,11800,11800,'P',0,0,11800.00,0.00,0.00,11800.00,'',0,6,0,'',0,'','','','','','vishal','2025-12-17 13:56:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',305,14,0,'2025-12-16','13:46:00','SURG0015',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,6,0,'',0,'','','','','','vishal','2025-12-17 13:56:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',305,15,0,'2025-12-17','13:37:00','WPRC0123',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:56:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',305,16,0,'2025-12-17','13:40:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','vishal','2025-12-17 13:56:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',305,17,0,'2025-12-17','13:43:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','','','vishal','2025-12-17 13:56:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,1,0,'2025-12-15','12:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,2,0,'2025-12-15','12:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,3,0,'2025-12-15','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,4,0,'2025-12-15','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,5,0,'2025-12-15','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,6,0,'2025-12-15','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,7,0,'2025-12-15','14:01:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,8,0,'2025-12-15','14:12:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,9,0,'2025-12-16','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,10,0,'2025-12-16','12:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,11,0,'2025-12-16','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,12,0,'2025-12-16','12:30:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,13,0,'2025-12-16','12:30:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,14,0,'2025-12-16','14:02:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,15,0,'2025-12-16','14:11:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,16,0,'2025-12-16','14:20:00','SURG0016',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,17,0,'2025-12-16','14:21:00','SURG0015',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,18,0,'2025-12-17','14:02:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,19,0,'2025-12-17','14:12:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,20,0,'2025-12-17','14:15:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',306,21,0,'2025-12-17','14:16:00','DRC0020',0,1.00,3500,3500,'P',0,0,3500.00,0.00,0.00,3500.00,'',0,100,0,'',0,'','','','','','vishal','2025-12-17 14:21:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,1,0,'2025-12-14','17:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,2,0,'2025-12-14','17:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,3,0,'2025-12-14','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,4,0,'2025-12-14','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,5,0,'2025-12-14','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,6,0,'2025-12-14','17:23:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,7,0,'2025-12-15','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,6,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,8,0,'2025-12-15','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,6,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,9,0,'2025-12-15','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,10,0,'2025-12-15','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,11,0,'2025-12-15','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,12,0,'2025-12-15','17:24:00','WPRC0124',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,13,0,'2025-12-16','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,6,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,14,0,'2025-12-16','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,15,0,'2025-12-16','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,16,0,'2025-12-16','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,17,0,'2025-12-16','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,6,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,18,0,'2025-12-16','17:25:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,19,0,'2025-12-16','17:25:00','USG0091',0,1.00,1800,1800,'P',0,0,1800.00,0.00,0.00,1800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,20,0,'2025-12-16','17:26:00','WPRC0083',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,21,0,'2025-12-16','17:30:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,22,0,'2025-12-17','17:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'405',0,6,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',307,23,0,'2025-12-17','17:26:00','WPRC0083',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','','','vishal','2025-12-17 17:31:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',308,1,0,'2025-12-16','21:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 18:58:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',308,2,0,'2025-12-16','21:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 18:58:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',308,3,0,'2025-12-16','21:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-17 18:58:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',308,4,0,'2025-12-16','21:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-17 18:58:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',308,5,0,'2025-12-16','21:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-17 18:58:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',308,6,0,'2025-12-17','21:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-17 18:58:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',308,7,0,'2025-12-17','21:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-17 18:58:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',308,8,0,'2025-12-16','18:57:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 18:58:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',309,1,0,'2025-12-17','23:16:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-18 20:27:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',309,2,0,'2025-12-17','23:16:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-18 20:27:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',309,3,0,'2025-12-17','23:16:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-18 20:27:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',309,4,0,'2025-12-17','23:16:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-18 20:27:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',309,5,0,'2025-12-17','23:16:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-18 20:27:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',309,6,0,'2025-12-18','20:25:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-18 20:27:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',309,7,0,'2025-12-18','23:16:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','vishal','2025-12-18 20:27:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',309,8,0,'2025-12-18','23:16:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','vishal','2025-12-18 20:27:51','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,1,0,'2025-12-14','11:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,2,0,'2025-12-14','11:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,3,0,'2025-12-14','11:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'207',0,42,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,4,0,'2025-12-14','11:30:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'207',0,42,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,5,0,'2025-12-14','11:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,6,0,'2025-12-14','11:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,7,0,'2025-12-14','11:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,8,0,'2025-12-14','13:50:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,9,0,'2025-12-14','13:50:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,10,0,'2025-12-14','13:51:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,42,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,11,0,'2025-12-14','13:51:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,12,0,'2025-12-15','11:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'207',0,42,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,13,0,'2025-12-15','11:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'207',0,42,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,14,0,'2025-12-15','11:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,15,0,'2025-12-15','11:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,16,0,'2025-12-15','11:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,17,0,'2025-12-15','13:51:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,18,0,'2025-12-15','13:51:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,19,0,'2025-12-15','13:51:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,20,0,'2025-12-16','10:54:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,21,0,'2025-12-16','10:54:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,22,0,'2025-12-16','10:55:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,23,0,'2025-12-16','11:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,24,0,'2025-12-16','11:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,25,0,'2025-12-16','11:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,26,0,'2025-12-16','11:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,27,0,'2025-12-16','11:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,28,0,'2025-12-16','18:57:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,29,0,'2025-12-17','11:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,30,0,'2025-12-17','11:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,31,0,'2025-12-17','11:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,32,0,'2025-12-17','11:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,33,0,'2025-12-17','11:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,34,0,'2025-12-17','18:55:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,35,0,'2025-12-17','18:55:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,36,0,'2025-12-17','18:56:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,37,0,'2025-12-18','11:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,38,0,'2025-12-18','11:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,39,0,'2025-12-18','11:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,40,0,'2025-12-18','11:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,41,0,'2025-12-18','11:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,42,0,'2025-12-18','18:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,43,0,'2025-12-18','18:57:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,44,0,'2025-12-18','18:58:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,66,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,45,0,'2025-12-18','19:09:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,46,0,'2025-12-19','11:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,47,0,'2025-12-19','11:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,48,0,'2025-12-19','11:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,49,0,'2025-12-19','11:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',310,50,0,'2025-12-19','13:42:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:46:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,1,0,'2025-12-16','09:59:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,2,0,'2025-12-16','09:59:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,3,0,'2025-12-16','09:59:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,4,0,'2025-12-16','19:22:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,5,0,'2025-12-16','19:26:00','WPRC0089',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,6,0,'2025-12-16','20:20:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,7,0,'2025-12-16','20:20:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,8,0,'2025-12-17','19:26:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,9,0,'2025-12-17','20:20:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,10,0,'2025-12-17','20:20:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,11,0,'2025-12-17','20:20:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,12,0,'2025-12-17','20:20:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,13,0,'2025-12-17','20:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,14,0,'2025-12-18','19:26:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,15,0,'2025-12-18','20:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,16,0,'2025-12-18','20:20:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,17,0,'2025-12-18','20:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,18,0,'2025-12-18','20:20:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,19,0,'2025-12-18','20:20:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,20,0,'2025-12-19','19:08:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',311,21,0,'2025-12-19','19:08:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-19 19:18:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',312,1,0,'2025-12-19','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:36:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',312,2,0,'2025-12-19','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:36:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',312,3,0,'2025-12-19','10:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-12-19 19:36:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',312,4,0,'2025-12-19','10:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-12-19 19:36:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',312,5,0,'2025-12-19','19:31:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:36:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',312,6,0,'2025-12-19','19:33:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:36:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',312,7,0,'2025-12-19','19:35:00','WPRC0114',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-19 19:36:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',313,1,0,'2025-12-18','19:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 20:32:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',313,2,0,'2025-12-18','19:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 20:32:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',313,3,0,'2025-12-18','19:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-19 20:32:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',313,4,0,'2025-12-18','19:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-19 20:32:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',313,5,0,'2025-12-18','19:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-19 20:32:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',313,6,0,'2025-12-18','20:29:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-19 20:32:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',313,7,0,'2025-12-19','19:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-19 20:32:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',313,8,0,'2025-12-19','19:30:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-19 20:32:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,1,0,'2025-12-18','19:02:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,2,0,'2025-12-18','19:03:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,5,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,3,0,'2025-12-18','19:04:00','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,4,0,'2025-12-18','19:05:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,5,0,'2025-12-18','19:06:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,6,0,'2025-12-18','19:06:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,7,0,'2025-12-18','19:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,8,0,'2025-12-18','19:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,9,0,'2025-12-18','19:50:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,10,0,'2025-12-19','12:22:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,11,0,'2025-12-19','19:03:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,12,0,'2025-12-19','19:03:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,13,0,'2025-12-19','19:04:00','DRC0020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,41,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,14,0,'2025-12-19','19:50:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,15,0,'2025-12-19','19:50:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,16,0,'2025-12-19','19:50:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,17,0,'2025-12-19','19:50:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,18,0,'2025-12-19','19:50:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,19,0,'2025-12-20','12:07:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,20,0,'2025-12-20','12:08:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',314,21,0,'2025-12-20','12:09:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','riya','2025-12-20 13:18:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,1,0,'2025-12-17','20:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,2,0,'2025-12-17','20:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,3,0,'2025-12-17','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,4,0,'2025-12-17','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,5,0,'2025-12-17','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,6,0,'2025-12-17','20:52:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,7,0,'2025-12-17','20:53:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,8,0,'2025-12-18','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,9,0,'2025-12-18','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,10,0,'2025-12-18','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,11,0,'2025-12-18','20:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,12,0,'2025-12-18','20:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,13,0,'2025-12-18','20:52:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,14,0,'2025-12-18','20:52:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,15,0,'2025-12-18','20:53:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,16,0,'2025-12-19','20:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,17,0,'2025-12-19','20:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,18,0,'2025-12-19','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,19,0,'2025-12-19','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,20,0,'2025-12-19','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,21,0,'2025-12-19','20:52:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,22,0,'2025-12-19','20:52:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,23,0,'2025-12-19','20:53:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,24,0,'2025-12-20','13:19:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,25,0,'2025-12-20','13:20:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',316,26,0,'2025-12-20','13:26:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','riya','2025-12-20 13:41:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,1,0,'2025-12-17','10:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,2,0,'2025-12-17','10:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,3,0,'2025-12-17','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,4,0,'2025-12-17','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,5,0,'2025-12-17','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,6,0,'2025-12-17','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,7,0,'2025-12-17','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,8,0,'2025-12-17','13:34:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,9,0,'2025-12-17','13:36:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,10,0,'2025-12-17','13:36:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,11,0,'2025-12-18','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,12,0,'2025-12-18','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,13,0,'2025-12-18','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,14,0,'2025-12-18','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,15,0,'2025-12-18','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,16,0,'2025-12-18','13:35:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,17,0,'2025-12-18','13:36:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,18,0,'2025-12-19','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,19,0,'2025-12-19','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,20,0,'2025-12-19','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,21,0,'2025-12-19','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,22,0,'2025-12-19','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,23,0,'2025-12-19','13:31:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,302,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,24,0,'2025-12-19','13:35:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,25,0,'2025-12-20','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',317,26,0,'2025-12-20','13:36:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,1,0,'2025-12-18','09:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,2,0,'2025-12-18','09:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,3,0,'2025-12-18','09:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,4,0,'2025-12-18','09:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,5,0,'2025-12-18','09:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'408',0,3,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,6,0,'2025-12-18','09:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'408',0,3,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,7,0,'2025-12-18','11:48:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,8,0,'2025-12-18','11:53:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,9,0,'2025-12-18','11:54:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,10,0,'2025-12-18','11:56:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,11,0,'2025-12-18','11:56:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,12,0,'2025-12-18','11:57:00','WPRC0086',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,13,0,'2025-12-18','13:05:00','PKG0009',0,1.00,60000,60000,'P',0,0,60000.00,0.00,0.00,60000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,14,0,'2025-12-19','09:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,15,0,'2025-12-19','09:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,16,0,'2025-12-19','09:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,17,0,'2025-12-19','09:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,18,0,'2025-12-19','09:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,19,0,'2025-12-20','09:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,20,0,'2025-12-20','09:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,21,0,'2025-12-20','09:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,22,0,'2025-12-20','09:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,23,0,'2025-12-20','11:58:00','WPRC0114',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',318,24,0,'2025-12-20','13:13:00','SURG0015',0,1.00,15000,15000,'P',0,0,15000.00,0.00,0.00,15000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-20 14:22:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,1,0,'2025-12-16','15:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,2,0,'2025-12-16','15:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,3,0,'2025-12-16','15:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,4,0,'2025-12-16','15:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,5,0,'2025-12-16','15:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,6,0,'2025-12-16','15:30:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'207',0,42,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,7,0,'2025-12-16','19:00:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,8,0,'2025-12-16','19:00:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,9,0,'2025-12-16','19:01:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,42,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,10,0,'2025-12-17','15:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'207',0,42,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,11,0,'2025-12-17','15:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'207',0,42,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,12,0,'2025-12-17','15:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,13,0,'2025-12-17','15:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,14,0,'2025-12-17','15:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,15,0,'2025-12-17','19:01:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,16,0,'2025-12-18','15:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'207',0,42,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,17,0,'2025-12-18','15:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'207',0,42,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,18,0,'2025-12-18','17:42:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,19,0,'2025-12-18','17:43:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,20,0,'2025-12-18','17:43:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,21,0,'2025-12-18','19:01:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,22,0,'2025-12-19','15:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,23,0,'2025-12-19','15:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,24,0,'2025-12-19','15:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,25,0,'2025-12-19','15:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'405',0,42,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,26,0,'2025-12-19','15:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'405',0,42,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,27,0,'2025-12-19','20:54:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,28,0,'2025-12-20','10:44:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',319,29,0,'2025-12-20','15:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'405',0,42,0,'',0,'','','','','','riya','2025-12-20 18:09:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',320,1,0,'2025-12-20','20:54:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:17:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',320,2,0,'2025-12-20','20:54:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:17:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',320,3,0,'2025-12-20','20:54:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:17:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',320,4,0,'2025-12-20','20:54:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:17:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',320,5,0,'2025-12-20','20:54:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:17:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',320,6,0,'2025-12-20','20:54:00','DRC0019',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'408',0,6,0,'',0,'','','','','','riya','2025-12-22 13:17:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',320,7,0,'2025-12-21','20:54:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:17:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',320,8,0,'2025-12-21','20:54:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:17:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',320,9,0,'2025-12-21','20:54:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:17:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',320,10,0,'2025-12-21','20:54:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,6,0,'',0,'','','','','','riya','2025-12-22 13:17:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',320,11,0,'2025-12-21','20:54:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,6,0,'',0,'','','','','','riya','2025-12-22 13:17:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',320,12,0,'2025-12-22','12:40:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,6,0,'',0,'','','','','','riya','2025-12-22 13:17:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',321,1,0,'2025-12-20','12:04:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',321,2,0,'2025-12-20','12:04:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 13:27:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',321,3,0,'2025-12-20','14:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',321,4,0,'2025-12-20','14:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',321,5,0,'2025-12-20','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',321,6,0,'2025-12-20','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',321,7,0,'2025-12-20','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',321,8,0,'2025-12-20','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,8,0,'',0,'','','','','','riya','2025-12-22 13:27:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',321,9,0,'2025-12-21','12:04:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',321,10,0,'2025-12-21','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',321,11,0,'2025-12-21','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',321,12,0,'2025-12-21','14:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-12-22 13:27:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',321,13,0,'2025-12-21','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-12-22 13:27:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',321,14,0,'2025-12-21','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',321,15,0,'2025-12-22','12:44:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',321,16,0,'2025-12-22','12:45:00','ROOM0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,1,0,'2025-12-14','12:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,2,0,'2025-12-14','12:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,3,0,'2025-12-14','12:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,4,0,'2025-12-14','12:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,5,0,'2025-12-14','12:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,6,0,'2025-12-14','12:50:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,7,0,'2025-12-14','20:11:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,8,0,'2025-12-14','21:06:00','ROOM0008',0,9.00,100,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,9,0,'2025-12-14','21:06:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,10,0,'2025-12-14','21:10:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,11,0,'2025-12-14','21:10:00','WPRC0105',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,12,0,'2025-12-15','12:50:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'407',0,78,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,13,0,'2025-12-15','12:50:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,14,0,'2025-12-15','12:50:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,15,0,'2025-12-15','12:50:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,16,0,'2025-12-15','19:32:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,17,0,'2025-12-15','20:08:00','USG0102',0,1.00,4300,4300,'A',0,0,4300.00,0.00,0.00,4300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,18,0,'2025-12-15','20:11:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,19,0,'2025-12-15','20:12:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,6,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,20,0,'2025-12-15','20:12:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,6,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,21,0,'2025-12-15','21:06:00','WPRC0099',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,22,0,'2025-12-15','21:09:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,23,0,'2025-12-15','21:09:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,24,0,'2025-12-15','21:09:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,78,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,25,0,'2025-12-15','21:10:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,26,0,'2025-12-15','21:10:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,27,0,'2025-12-15','21:11:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,28,0,'2025-12-16','12:50:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,29,0,'2025-12-16','12:50:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,30,0,'2025-12-16','12:50:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,31,0,'2025-12-16','12:50:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'407',0,78,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,32,0,'2025-12-16','12:50:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'407',0,78,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,33,0,'2025-12-16','19:30:00','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,34,0,'2025-12-16','19:35:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,62,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,35,0,'2025-12-16','20:12:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,36,0,'2025-12-16','21:02:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,37,0,'2025-12-16','21:10:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,38,0,'2025-12-16','21:10:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,39,0,'2025-12-16','21:10:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,40,0,'2025-12-16','21:11:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,78,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,41,0,'2025-12-17','12:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,42,0,'2025-12-17','12:50:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'407',0,78,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,43,0,'2025-12-17','12:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,44,0,'2025-12-17','12:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,45,0,'2025-12-17','19:31:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,46,0,'2025-12-17','19:37:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,47,0,'2025-12-17','19:37:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,48,0,'2025-12-17','19:38:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,49,0,'2025-12-17','20:47:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,50,0,'2025-12-18','12:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,51,0,'2025-12-18','12:50:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'407',0,78,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,52,0,'2025-12-18','12:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,53,0,'2025-12-18','12:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,54,0,'2025-12-18','19:31:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,55,0,'2025-12-18','19:38:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,56,0,'2025-12-18','19:38:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,57,0,'2025-12-18','20:47:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,58,0,'2025-12-19','10:04:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,78,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,59,0,'2025-12-19','10:04:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,60,0,'2025-12-19','12:50:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,61,0,'2025-12-19','12:50:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,62,0,'2025-12-19','12:50:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,63,0,'2025-12-19','12:50:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,64,0,'2025-12-19','13:56:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,65,0,'2025-12-19','20:46:00','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,66,0,'2025-12-19','20:48:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,67,0,'2025-12-19','20:48:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,68,0,'2025-12-20','10:03:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,69,0,'2025-12-20','10:04:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,70,0,'2025-12-20','10:05:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,62,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,71,0,'2025-12-20','10:06:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,72,0,'2025-12-20','12:50:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,73,0,'2025-12-20','12:50:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,74,0,'2025-12-20','12:50:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,75,0,'2025-12-21','10:03:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,76,0,'2025-12-21','10:04:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,77,0,'2025-12-21','12:50:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,78,0,'2025-12-21','12:50:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,79,0,'2025-12-21','12:50:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,80,0,'2025-12-21','14:05:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,81,0,'2025-12-21','14:07:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,82,0,'2025-12-21','14:15:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,83,0,'2025-12-21','14:16:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,84,0,'2025-12-22','12:50:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,78,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,85,0,'2025-12-22','14:02:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,86,0,'2025-12-22','14:06:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',322,87,0,'2025-12-22','14:16:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:11:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,1,0,'2025-12-04','01:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,2,0,'2025-12-04','01:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,3,0,'2025-12-04','01:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,4,0,'2025-12-04','01:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,5,0,'2025-12-04','01:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,6,0,'2025-12-04','01:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,7,0,'2025-12-04','01:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,8,0,'2025-12-04','17:17:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,9,0,'2025-12-04','17:18:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,10,0,'2025-12-04','17:19:00','WPRC0093',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,11,0,'2025-12-04','17:19:00','USG0092',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,12,0,'2025-12-04','17:20:00','WPRC0097',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,13,0,'2025-12-04','17:20:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,14,0,'2025-12-04','17:21:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,15,0,'2025-12-04','17:21:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,16,0,'2025-12-04','17:21:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,17,0,'2025-12-04','17:22:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,88,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,18,0,'2025-12-04','17:23:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,174,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,19,0,'2025-12-04','19:36:00','SURG0016',0,1.00,21500,21500,'P',0,0,21500.00,0.00,0.00,21500.00,'',0,259,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,20,0,'2025-12-04','19:36:00','SURG0015',0,1.00,7050,7050,'P',0,0,7050.00,0.00,0.00,7050.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,21,0,'2025-12-05','01:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,22,0,'2025-12-05','01:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,23,0,'2025-12-05','01:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,24,0,'2025-12-05','01:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,25,0,'2025-12-05','01:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,26,0,'2025-12-05','15:49:00','WPRC0101',0,2.00,200,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,27,0,'2025-12-05','15:50:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,28,0,'2025-12-05','15:53:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,29,0,'2025-12-05','17:20:00','ROOM0008',0,7.00,100,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,30,0,'2025-12-05','17:20:00','WPRC0103',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,31,0,'2025-12-05','17:21:00','WPRC0104',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,32,0,'2025-12-05','17:21:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,33,0,'2025-12-05','17:21:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,34,0,'2025-12-05','17:21:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,35,0,'2025-12-06','01:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,36,0,'2025-12-06','01:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,37,0,'2025-12-06','01:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,38,0,'2025-12-06','01:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,39,0,'2025-12-06','01:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,40,0,'2025-12-06','11:42:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,41,0,'2025-12-06','11:43:00','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,42,0,'2025-12-06','11:43:00','WPRC0104',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,43,0,'2025-12-06','11:43:00','WPRC0093',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,44,0,'2025-12-06','11:44:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,45,0,'2025-12-06','15:50:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,46,0,'2025-12-06','15:50:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,47,0,'2025-12-06','15:50:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,48,0,'2025-12-07','01:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,49,0,'2025-12-07','01:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,50,0,'2025-12-07','01:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,51,0,'2025-12-07','01:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,52,0,'2025-12-07','01:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,53,0,'2025-12-07','10:48:00','WPRC0104',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,54,0,'2025-12-07','10:51:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,55,0,'2025-12-07','11:43:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,56,0,'2025-12-07','11:45:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,57,0,'2025-12-07','11:45:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,58,0,'2025-12-07','11:46:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,59,0,'2025-12-07','18:45:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,60,0,'2025-12-08','01:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,61,0,'2025-12-08','01:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,62,0,'2025-12-08','01:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,63,0,'2025-12-08','01:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,64,0,'2025-12-08','01:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,65,0,'2025-12-08','10:48:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,66,0,'2025-12-08','10:49:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,67,0,'2025-12-08','10:49:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,68,0,'2025-12-08','10:50:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,69,0,'2025-12-08','10:52:00','DRC0020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,124,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,70,0,'2025-12-08','16:35:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,71,0,'2025-12-08','16:36:00','WPRC0094',0,2.00,2625,5250,'P',0,0,5250.00,0.00,0.00,5250.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,72,0,'2025-12-08','16:38:00','WPRC0095',0,2.00,2625,5250,'A',0,0,5250.00,0.00,0.00,5250.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,73,0,'2025-12-09','01:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,74,0,'2025-12-09','01:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,75,0,'2025-12-09','01:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,76,0,'2025-12-09','01:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,77,0,'2025-12-09','01:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,78,0,'2025-12-09','12:36:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,174,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,79,0,'2025-12-09','15:39:00','WPRC0122',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,80,0,'2025-12-09','16:32:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,81,0,'2025-12-09','16:32:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,82,0,'2025-12-09','16:33:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,83,0,'2025-12-09','16:34:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,84,0,'2025-12-09','16:35:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,85,0,'2025-12-10','01:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,86,0,'2025-12-10','01:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,87,0,'2025-12-10','01:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,88,0,'2025-12-10','01:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,89,0,'2025-12-10','01:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,90,0,'2025-12-10','12:35:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,91,0,'2025-12-10','12:35:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,92,0,'2025-12-10','18:42:00','WPRC0122',0,1.00,6000,6000,'A',0,0,6000.00,0.00,0.00,6000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,93,0,'2025-12-10','18:46:00','WPRC0087',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,94,0,'2025-12-10','18:53:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,95,0,'2025-12-11','01:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,96,0,'2025-12-11','01:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,97,0,'2025-12-11','01:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,98,0,'2025-12-11','01:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,99,0,'2025-12-11','01:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,100,0,'2025-12-11','18:42:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,101,0,'2025-12-11','18:46:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,102,0,'2025-12-11','18:48:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,103,0,'2025-12-11','18:50:00','WPRC0122',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,104,0,'2025-12-11','18:53:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,105,0,'2025-12-12','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,106,0,'2025-12-12','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,107,0,'2025-12-12','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,108,0,'2025-12-12','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,109,0,'2025-12-12','01:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,110,0,'2025-12-12','10:57:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,111,0,'2025-12-12','14:27:00','WPRC0122',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,112,0,'2025-12-12','14:30:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,113,0,'2025-12-12','14:31:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,114,0,'2025-12-13','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,115,0,'2025-12-13','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,116,0,'2025-12-13','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,117,0,'2025-12-13','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,118,0,'2025-12-13','01:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,119,0,'2025-12-13','12:16:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,120,0,'2025-12-13','14:27:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,121,0,'2025-12-13','14:28:00','WPRC0122',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,122,0,'2025-12-13','14:30:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,123,0,'2025-12-14','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,124,0,'2025-12-14','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,125,0,'2025-12-14','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,126,0,'2025-12-14','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,127,0,'2025-12-14','01:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,128,0,'2025-12-14','12:04:00','WPRC0122',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,129,0,'2025-12-14','12:17:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,130,0,'2025-12-14','14:27:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,131,0,'2025-12-14','14:30:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,132,0,'2025-12-14','17:19:00','WPRC0082',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,133,0,'2025-12-15','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,134,0,'2025-12-15','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,135,0,'2025-12-15','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,136,0,'2025-12-15','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,137,0,'2025-12-15','01:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,138,0,'2025-12-15','12:11:00','ROOM0008',0,8.00,100,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,139,0,'2025-12-15','12:11:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,140,0,'2025-12-15','12:11:00','WPRC0104',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,141,0,'2025-12-15','12:13:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,142,0,'2025-12-15','12:15:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,143,0,'2025-12-15','12:17:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,144,0,'2025-12-15','12:17:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,174,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,145,0,'2025-12-15','17:19:00','WPRC0082',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,146,0,'2025-12-16','01:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,147,0,'2025-12-16','01:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,148,0,'2025-12-16','01:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,149,0,'2025-12-16','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,150,0,'2025-12-16','01:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,151,0,'2025-12-16','12:12:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,152,0,'2025-12-16','12:15:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,153,0,'2025-12-16','12:17:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,154,0,'2025-12-16','17:19:00','WPRC0082',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,155,0,'2025-12-16','19:14:00','WPRC0122',0,1.00,6000,6000,'A',0,0,6000.00,0.00,0.00,6000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,156,0,'2025-12-17','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,157,0,'2025-12-17','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,158,0,'2025-12-17','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,159,0,'2025-12-17','01:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,160,0,'2025-12-17','01:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,161,0,'2025-12-17','17:14:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,162,0,'2025-12-17','17:19:00','WPRC0082',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,163,0,'2025-12-17','19:04:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,164,0,'2025-12-17','19:05:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,165,0,'2025-12-17','19:13:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,166,0,'2025-12-17','19:14:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,167,0,'2025-12-17','19:15:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,168,0,'2025-12-18','01:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,169,0,'2025-12-18','01:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,170,0,'2025-12-18','01:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,171,0,'2025-12-18','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,172,0,'2025-12-18','01:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,173,0,'2025-12-18','17:19:00','WPRC0082',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,174,0,'2025-12-18','19:04:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,175,0,'2025-12-18','19:13:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,176,0,'2025-12-18','19:14:00','WPRC0122',0,1.00,6000,6000,'A',0,0,6000.00,0.00,0.00,6000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,177,0,'2025-12-19','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,178,0,'2025-12-19','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,179,0,'2025-12-19','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,180,0,'2025-12-19','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,181,0,'2025-12-19','01:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,182,0,'2025-12-19','12:13:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,183,0,'2025-12-19','17:19:00','WPRC0082',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,184,0,'2025-12-20','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,185,0,'2025-12-20','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,186,0,'2025-12-20','01:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,187,0,'2025-12-20','01:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,188,0,'2025-12-20','01:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,8,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,189,0,'2025-12-20','12:13:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,190,0,'2025-12-21','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,191,0,'2025-12-21','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,192,0,'2025-12-21','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,193,0,'2025-12-21','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,194,0,'2025-12-21','01:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,195,0,'2025-12-21','12:13:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,196,0,'2025-12-21','17:14:00','WPRC0084',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,197,0,'2025-12-21','17:19:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,198,0,'2025-12-21','17:20:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,199,0,'2025-12-22','01:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,200,0,'2025-12-22','01:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,201,0,'2025-12-22','01:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,202,0,'2025-12-22','01:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,203,0,'2025-12-22','17:08:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,204,0,'2025-12-22','17:19:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,205,0,'2025-12-22','17:20:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,206,0,'2025-12-22','17:35:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,174,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,207,0,'2025-12-22','17:54:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',323,208,0,'2025-12-22','21:27:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,37,0,'',0,'','','','','','vishal','2025-12-22 21:49:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',324,1,0,'2025-12-22','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 18:24:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',324,2,0,'2025-12-22','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 18:24:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',324,3,0,'2025-12-22','10:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','vishal','2025-12-22 18:24:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',324,4,0,'2025-12-22','10:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','vishal','2025-12-22 18:24:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',324,5,0,'2025-12-22','18:20:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 18:24:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',324,6,0,'2025-12-22','18:22:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 18:24:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',324,7,0,'2025-12-22','18:23:00','WPRC0114',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-22 18:24:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',325,1,0,'2025-12-21','11:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:41:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',325,2,0,'2025-12-21','11:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:41:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',325,3,0,'2025-12-21','11:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:41:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',325,4,0,'2025-12-21','11:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:41:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',325,5,0,'2025-12-21','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:41:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',325,6,0,'2025-12-21','18:54:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:41:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',325,7,0,'2025-12-22','11:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-12-22 19:41:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',326,1,0,'2025-12-22','12:19:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:54:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',326,2,0,'2025-12-22','12:19:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:54:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',326,3,0,'2025-12-22','12:19:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,3,0,'',0,'','','','','','vishal','2025-12-22 19:54:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',326,4,0,'2025-12-22','19:52:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:54:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',326,5,0,'2025-12-22','19:52:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:54:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',326,6,0,'2025-12-22','19:53:00','WPRC0114',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-22 19:54:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,1,0,'2025-11-10','11:14:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,2,0,'2025-11-10','11:14:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,3,0,'2025-11-10','11:14:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,4,0,'2025-11-10','11:15:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,36,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,5,0,'2025-11-10','11:16:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,6,0,'2025-11-10','11:16:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,7,0,'2025-11-10','11:16:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,8,0,'2025-11-10','11:17:00','DRC0020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,37,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,9,0,'2025-11-10','15:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,10,0,'2025-11-10','15:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,11,0,'2025-11-10','15:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,12,0,'2025-11-10','15:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,13,0,'2025-11-10','15:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,14,0,'2025-11-10','15:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,36,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,15,0,'2025-11-10','17:53:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,16,0,'2025-11-10','19:53:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,17,0,'2025-11-11','11:15:00','WPRC0092',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,39,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,18,0,'2025-11-11','11:15:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,19,0,'2025-11-11','11:16:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,20,0,'2025-11-11','11:16:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,21,0,'2025-11-11','11:17:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,22,0,'2025-11-11','11:46:00','USG0092',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,23,0,'2025-11-11','11:50:00','USG0098',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,24,0,'2025-11-11','11:51:00','WPRC0109',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,25,0,'2025-11-11','15:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,26,0,'2025-11-11','15:30:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,27,0,'2025-11-11','15:30:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,28,0,'2025-11-11','15:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,29,0,'2025-11-11','15:30:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,30,0,'2025-11-11','17:53:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,31,0,'2025-11-11','19:54:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,32,0,'2025-11-12','10:26:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,33,0,'2025-11-12','10:44:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,37,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,34,0,'2025-11-12','11:45:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,35,0,'2025-11-12','11:57:00','WPRC0110',0,1.00,10000,10000,'A',0,0,10000.00,0.00,0.00,10000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,36,0,'2025-11-12','11:59:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,37,0,'2025-11-12','11:59:00','WPRC0089',0,5.00,100,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,38,0,'2025-11-12','11:59:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,39,0,'2025-11-12','15:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,40,0,'2025-11-12','15:30:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,41,0,'2025-11-12','15:30:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,42,0,'2025-11-12','15:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,43,0,'2025-11-12','15:30:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,44,0,'2025-11-12','17:53:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,45,0,'2025-11-12','19:54:00','WPRC0085',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,46,0,'2025-11-13','10:42:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,47,0,'2025-11-13','10:43:00','WPRC0089',0,5.00,100,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,48,0,'2025-11-13','10:43:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,49,0,'2025-11-13','10:43:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,50,0,'2025-11-13','11:27:00','DRC0020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,174,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,51,0,'2025-11-13','15:30:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,52,0,'2025-11-13','15:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,53,0,'2025-11-13','15:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,54,0,'2025-11-13','15:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,55,0,'2025-11-13','15:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,56,0,'2025-11-13','17:53:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,57,0,'2025-11-14','11:30:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,58,0,'2025-11-14','11:30:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,59,0,'2025-11-14','15:30:00','AECO0008',0,0.50,800,400,'P',0,0,400.00,0.00,0.00,400.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,60,0,'2025-11-14','15:30:00','CARE0001',0,0.50,600,300,'P',0,0,300.00,0.00,0.00,300.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,61,0,'2025-11-14','15:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,62,0,'2025-11-14','15:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,63,0,'2025-11-14','15:30:00','ROOM0009',0,0.50,5500,2750,'A',0,0,2750.00,0.00,0.00,2750.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,64,0,'2025-11-14','17:53:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,65,0,'2025-11-14','19:11:00','ROOM0009',0,0.50,3200,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,66,0,'2025-11-14','19:11:00','AECO0008',0,0.50,400,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,67,0,'2025-11-14','19:12:00','CARE0001',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,68,0,'2025-11-14','20:43:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,69,0,'2025-11-14','20:43:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,70,0,'2025-11-15','10:32:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,71,0,'2025-11-15','14:02:00','DRC0020',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,187,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,72,0,'2025-11-15','15:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,73,0,'2025-11-15','15:30:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,74,0,'2025-11-15','15:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,75,0,'2025-11-15','15:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,76,0,'2025-11-15','15:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,77,0,'2025-11-15','16:36:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,78,0,'2025-11-15','16:37:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,79,0,'2025-11-15','16:37:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,80,0,'2025-11-15','16:37:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,81,0,'2025-11-16','10:57:00','USG0092',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,82,0,'2025-11-16','13:58:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,83,0,'2025-11-16','13:58:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,84,0,'2025-11-16','13:58:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,85,0,'2025-11-16','13:59:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,86,0,'2025-11-16','13:59:00','WPRC0089',0,5.00,100,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,87,0,'2025-11-16','14:00:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,88,0,'2025-11-16','14:00:00','XRY0045',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,89,0,'2025-11-16','15:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,90,0,'2025-11-16','15:30:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,91,0,'2025-11-16','15:30:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,92,0,'2025-11-16','15:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,93,0,'2025-11-16','15:30:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,94,0,'2025-11-16','16:01:00','WPRC0111',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,95,0,'2025-11-16','17:55:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,96,0,'2025-11-16','19:54:00','WPRC0085',0,3.00,300,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,97,0,'2025-11-17','10:55:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,98,0,'2025-11-17','10:58:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,99,0,'2025-11-17','10:58:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,100,0,'2025-11-17','10:59:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,101,0,'2025-11-17','15:30:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,102,0,'2025-11-17','15:30:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,103,0,'2025-11-17','15:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,8,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,104,0,'2025-11-17','15:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,8,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,105,0,'2025-11-17','15:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,106,0,'2025-11-17','17:55:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,107,0,'2025-11-18','10:09:00','WPRC0100',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,39,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,108,0,'2025-11-18','10:28:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,109,0,'2025-11-18','10:33:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,110,0,'2025-11-18','10:33:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,111,0,'2025-11-18','10:33:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,112,0,'2025-11-18','15:30:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,113,0,'2025-11-18','15:30:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,114,0,'2025-11-18','15:30:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'210',0,8,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,115,0,'2025-11-18','15:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'210',0,8,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,116,0,'2025-11-18','15:30:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,117,0,'2025-11-18','17:24:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,37,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,118,0,'2025-11-18','17:24:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,37,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,119,0,'2025-11-18','17:55:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,120,0,'2025-11-18','19:55:00','WPRC0085',0,4.00,300,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,121,0,'2025-11-19','10:09:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,122,0,'2025-11-19','10:10:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,123,0,'2025-11-19','10:11:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,124,0,'2025-11-19','15:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,125,0,'2025-11-19','15:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,126,0,'2025-11-19','15:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,127,0,'2025-11-19','15:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,128,0,'2025-11-19','15:30:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,129,0,'2025-11-19','17:17:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,130,0,'2025-11-19','17:26:00','DRC0020',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,187,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,131,0,'2025-11-19','17:55:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,132,0,'2025-11-19','19:55:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,133,0,'2025-11-19','19:56:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,134,0,'2025-11-20','15:30:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,135,0,'2025-11-20','15:54:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,37,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,136,0,'2025-11-20','15:56:00','WPRC0105',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,137,0,'2025-11-20','15:59:00','DRC0020',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,187,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,138,0,'2025-11-20','17:15:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,139,0,'2025-11-20','17:15:00','WPRC0111',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,140,0,'2025-11-20','17:16:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,141,0,'2025-11-20','17:16:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,142,0,'2025-11-20','17:34:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,143,0,'2025-11-20','17:34:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,144,0,'2025-11-20','17:35:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,145,0,'2025-11-20','17:35:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,146,0,'2025-11-21','15:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,147,0,'2025-11-21','15:30:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,148,0,'2025-11-21','15:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,149,0,'2025-11-21','15:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,150,0,'2025-11-21','15:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,151,0,'2025-11-21','15:53:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,152,0,'2025-11-21','15:53:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,153,0,'2025-11-21','15:57:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,154,0,'2025-11-21','16:13:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,155,0,'2025-11-21','16:15:00','DRC0020',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,187,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,156,0,'2025-11-22','12:31:00','WPRC0105',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,157,0,'2025-11-22','12:32:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,158,0,'2025-11-22','15:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,159,0,'2025-11-22','15:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,160,0,'2025-11-22','15:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,161,0,'2025-11-22','15:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,162,0,'2025-11-22','15:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,163,0,'2025-11-22','16:13:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,164,0,'2025-11-22','16:13:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,165,0,'2025-11-22','16:15:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,166,0,'2025-11-22','16:55:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,37,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,167,0,'2025-11-22','19:39:00','DRC0020',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,187,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,168,0,'2025-11-23','12:30:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,169,0,'2025-11-23','12:31:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,170,0,'2025-11-23','12:32:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,171,0,'2025-11-23','15:30:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,172,0,'2025-11-23','15:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,173,0,'2025-11-23','15:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,174,0,'2025-11-23','15:30:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,175,0,'2025-11-23','15:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,176,0,'2025-11-23','16:56:00','DRC0020',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,187,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,177,0,'2025-11-23','20:01:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,178,0,'2025-11-24','09:48:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,179,0,'2025-11-24','09:48:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,180,0,'2025-11-24','09:48:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,181,0,'2025-11-24','15:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,182,0,'2025-11-24','15:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,183,0,'2025-11-24','15:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,184,0,'2025-11-24','15:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,185,0,'2025-11-24','15:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,186,0,'2025-11-24','16:53:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,187,0,'2025-11-24','16:55:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,37,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,188,0,'2025-11-24','16:56:00','DRC0020',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,187,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,189,0,'2025-11-24','20:01:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,190,0,'2025-11-25','10:39:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,191,0,'2025-11-25','15:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,192,0,'2025-11-25','15:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,193,0,'2025-11-25','15:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,194,0,'2025-11-25','15:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,195,0,'2025-11-25','15:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,196,0,'2025-11-25','16:28:00','DRC0020',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,187,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,197,0,'2025-11-25','16:52:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,198,0,'2025-11-25','16:53:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,199,0,'2025-11-25','16:54:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,200,0,'2025-11-25','20:01:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,201,0,'2025-11-26','10:39:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,202,0,'2025-11-26','10:40:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,203,0,'2025-11-26','10:40:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,204,0,'2025-11-26','10:41:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,205,0,'2025-11-26','10:42:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,206,0,'2025-11-26','10:42:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,207,0,'2025-11-26','15:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,208,0,'2025-11-26','15:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,209,0,'2025-11-26','15:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,210,0,'2025-11-26','15:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,211,0,'2025-11-26','15:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,212,0,'2025-11-26','16:29:00','DRC0020',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,187,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,213,0,'2025-11-26','20:01:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,214,0,'2025-11-27','10:39:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,215,0,'2025-11-27','10:40:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,216,0,'2025-11-27','10:40:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,217,0,'2025-11-27','10:41:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,218,0,'2025-11-27','10:42:00','DRC0020',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,187,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,219,0,'2025-11-27','15:30:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,220,0,'2025-11-27','15:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,221,0,'2025-11-27','15:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,222,0,'2025-11-27','15:30:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,223,0,'2025-11-27','15:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,224,0,'2025-11-27','18:06:00','WPRC0100',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,39,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,225,0,'2025-11-27','20:01:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,226,0,'2025-11-28','15:30:00','ROOM0009',0,0.50,3200,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,227,0,'2025-11-28','15:30:00','AECO0008',0,0.50,400,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,228,0,'2025-11-28','15:30:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,229,0,'2025-11-28','15:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,230,0,'2025-11-28','15:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,231,0,'2025-11-28','16:26:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,232,0,'2025-11-28','16:26:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,233,0,'2025-11-28','16:27:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,234,0,'2025-11-28','16:27:00','DRC0020',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,187,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,235,0,'2025-11-28','16:30:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,236,0,'2025-11-28','19:51:00','WPRC0119',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,39,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,237,0,'2025-11-28','19:58:00','WPRC0085',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,238,0,'2025-11-28','20:01:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,239,0,'2025-11-28','20:06:00','ROOM0009',0,0.50,5500,2750,'P',0,0,2750.00,0.00,0.00,2750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,240,0,'2025-11-28','20:06:00','AECO0008',0,0.50,800,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,241,0,'2025-11-28','20:06:00','CARE0001',0,0.50,600,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,242,0,'2025-11-29','15:30:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,243,0,'2025-11-29','15:30:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'207',0,8,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,244,0,'2025-11-29','18:32:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,245,0,'2025-11-29','18:32:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,246,0,'2025-11-29','18:32:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,247,0,'2025-11-29','19:51:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,248,0,'2025-11-29','19:52:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,249,0,'2025-11-29','19:56:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,250,0,'2025-11-29','19:56:00','DRC0020',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,187,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,251,0,'2025-11-29','19:59:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,252,0,'2025-11-29','20:01:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,253,0,'2025-11-29','20:03:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,254,0,'2025-11-30','15:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,255,0,'2025-11-30','15:30:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,256,0,'2025-11-30','15:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,257,0,'2025-11-30','15:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,258,0,'2025-11-30','15:30:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,259,0,'2025-11-30','19:51:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,260,0,'2025-11-30','19:52:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,261,0,'2025-11-30','19:55:00','WPRC0085',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,262,0,'2025-11-30','20:01:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,263,0,'2025-11-30','20:03:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,264,0,'2025-12-01','15:30:00','ROOM0009',0,0.50,3200,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,265,0,'2025-12-01','15:30:00','AECO0008',0,0.50,400,200,'P',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,266,0,'2025-12-01','15:30:00','CARE0001',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,267,0,'2025-12-01','15:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,268,0,'2025-12-01','15:30:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,269,0,'2025-12-01','19:40:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,270,0,'2025-12-01','19:41:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,271,0,'2025-12-01','19:42:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',327,272,0,'2025-12-01','19:42:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 20:09:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,1,0,'2025-12-19','10:30:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,2,0,'2025-12-19','10:30:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,3,0,'2025-12-19','10:30:00','WPRC0079',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,42,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,4,0,'2025-12-19','21:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,5,0,'2025-12-19','21:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,6,0,'2025-12-19','21:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,7,0,'2025-12-19','21:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,8,0,'2025-12-19','21:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,9,0,'2025-12-20','12:18:00','WPRC0090',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,10,0,'2025-12-20','12:18:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,11,0,'2025-12-20','12:19:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,12,0,'2025-12-20','12:20:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,303,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,13,0,'2025-12-20','21:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'404',0,42,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,14,0,'2025-12-20','21:00:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'404',0,42,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,15,0,'2025-12-20','21:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,16,0,'2025-12-20','21:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,17,0,'2025-12-20','21:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,18,0,'2025-12-21','20:59:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,19,0,'2025-12-21','21:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,20,0,'2025-12-21','21:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,21,0,'2025-12-21','21:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,22,0,'2025-12-21','21:00:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'404',0,42,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,23,0,'2025-12-22','20:58:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',328,24,0,'2025-12-22','20:59:00','DRC0020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,8,0,'',0,'','','','','','vishal','2025-12-22 21:17:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',329,1,0,'2025-12-21','09:33:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',329,2,0,'2025-12-21','09:34:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',329,3,0,'2025-12-21','14:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',329,4,0,'2025-12-21','14:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',329,5,0,'2025-12-21','14:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',329,6,0,'2025-12-21','14:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',329,7,0,'2025-12-21','14:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',329,8,0,'2025-12-21','14:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',329,9,0,'2025-12-22','09:34:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',329,10,0,'2025-12-22','09:35:00','USG0097',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',329,11,0,'2025-12-22','09:36:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',329,12,0,'2025-12-22','09:40:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',329,13,0,'2025-12-22','14:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',329,14,0,'2025-12-22','14:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',329,15,0,'2025-12-22','14:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',329,16,0,'2025-12-22','14:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',329,17,0,'2025-12-22','14:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',329,18,0,'2025-12-23','11:17:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-12-23 11:52:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,1,0,'2025-12-19','10:27:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,2,0,'2025-12-19','10:28:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,3,0,'2025-12-19','15:38:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,4,0,'2025-12-19','15:38:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,5,0,'2025-12-19','15:38:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,6,0,'2025-12-19','15:38:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,7,0,'2025-12-19','15:38:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,8,0,'2025-12-19','15:38:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,9,0,'2025-12-20','09:48:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,10,0,'2025-12-20','12:01:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,11,0,'2025-12-20','12:02:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,12,0,'2025-12-20','12:41:00','PKG0009',0,1.00,15000,15000,'P',0,0,15000.00,0.00,0.00,15000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,13,0,'2025-12-20','15:38:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,14,0,'2025-12-20','15:38:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,15,0,'2025-12-20','15:38:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,16,0,'2025-12-20','15:38:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,17,0,'2025-12-20','15:38:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,18,0,'2025-12-21','09:49:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,19,0,'2025-12-21','15:38:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,20,0,'2025-12-21','15:38:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,21,0,'2025-12-21','15:38:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,22,0,'2025-12-21','15:38:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,23,0,'2025-12-21','15:38:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,24,0,'2025-12-22','09:48:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,25,0,'2025-12-22','09:49:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,26,0,'2025-12-22','15:38:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,27,0,'2025-12-22','15:38:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,28,0,'2025-12-22','15:38:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,29,0,'2025-12-22','15:38:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,30,0,'2025-12-22','15:38:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,31,0,'2025-12-23','12:39:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,32,0,'2025-12-23','12:40:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',330,33,0,'2025-12-23','12:43:00','SURG0015',0,1.00,3750,3750,'P',0,0,3750.00,0.00,0.00,3750.00,'',0,3,0,'',0,'','','','','','riya','2025-12-23 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,1,0,'2025-12-21','09:44:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,2,0,'2025-12-21','18:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,3,0,'2025-12-21','18:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,4,0,'2025-12-21','18:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,5,0,'2025-12-21','18:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,6,0,'2025-12-21','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,7,0,'2025-12-21','18:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,8,0,'2025-12-22','09:45:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,9,0,'2025-12-22','09:45:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,10,0,'2025-12-22','18:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,11,0,'2025-12-22','18:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,12,0,'2025-12-22','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,13,0,'2025-12-22','18:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,14,0,'2025-12-22','18:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,15,0,'2025-12-23','09:45:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,16,0,'2025-12-23','16:59:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,17,0,'2025-12-23','16:59:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,188,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,18,0,'2025-12-22','17:00:00','SURG0016',0,1.00,50000,50000,'P',0,0,50000.00,0.00,0.00,50000.00,'',0,188,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',331,19,0,'2025-12-22','17:01:00','SURG0015',0,1.00,12500,12500,'P',0,0,12500.00,0.00,0.00,12500.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:04:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,1,0,'2025-12-19','11:28:00','WPRC0090',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,2,0,'2025-12-19','11:28:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,3,0,'2025-12-19','11:50:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,4,0,'2025-12-19','11:51:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,5,0,'2025-12-19','12:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,6,0,'2025-12-19','12:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,7,0,'2025-12-19','12:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,8,0,'2025-12-19','12:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,9,0,'2025-12-19','12:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,10,0,'2025-12-19','12:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,11,0,'2025-12-19','12:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,12,0,'2025-12-20','11:49:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,13,0,'2025-12-20','11:50:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,14,0,'2025-12-20','11:50:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,15,0,'2025-12-20','11:51:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,16,0,'2025-12-20','12:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,17,0,'2025-12-20','12:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,18,0,'2025-12-20','12:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,19,0,'2025-12-20','12:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,20,0,'2025-12-20','12:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,8,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,21,0,'2025-12-21','11:50:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,22,0,'2025-12-21','11:50:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,23,0,'2025-12-21','11:51:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,24,0,'2025-12-21','12:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,25,0,'2025-12-21','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,26,0,'2025-12-21','13:24:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,27,0,'2025-12-21','13:24:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,28,0,'2025-12-21','13:25:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,29,0,'2025-12-22','12:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,30,0,'2025-12-22','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,31,0,'2025-12-22','12:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,32,0,'2025-12-22','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,33,0,'2025-12-22','12:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,34,0,'2025-12-22','16:39:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,35,0,'2025-12-22','16:41:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,36,0,'2025-12-23','12:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,37,0,'2025-12-23','16:40:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','D',332,38,0,'2025-12-23','16:41:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:54:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,1,0,'2025-10-07','12:30:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,2,0,'2025-10-07','12:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,3,0,'2025-10-07','12:30:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,4,0,'2025-10-07','12:32:00','ROOM0006',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,5,0,'2025-10-07','12:32:00','ROOM0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,6,0,'2025-10-07','12:40:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,7,0,'2025-10-08','12:32:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,8,0,'2025-10-08','12:35:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,9,0,'2025-10-08','12:35:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,10,0,'2025-10-08','12:35:00','ROOM0005',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,11,0,'2025-10-08','12:35:00','ROOM0006',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,12,0,'2025-10-08','12:41:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,13,0,'2025-10-09','12:36:00','ROOM0005',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,14,0,'2025-10-09','12:36:00','ROOM0006',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,15,0,'2025-10-09','12:36:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,16,0,'2025-10-09','12:36:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,17,0,'2025-10-09','12:36:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,18,0,'2025-10-09','12:41:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,19,0,'2025-10-10','12:37:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,20,0,'2025-10-10','12:37:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,21,0,'2025-10-10','12:37:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,22,0,'2025-10-10','12:37:00','ROOM0005',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,23,0,'2025-10-10','12:37:00','ROOM0006',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,24,0,'2025-10-10','12:44:00','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,25,0,'2025-10-11','12:37:00','ROOM0005',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',1,26,0,'2025-10-11','12:44:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:07:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',2,1,0,'2025-10-09','12:07:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:15:11','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',2,2,0,'2025-10-09','12:07:00','ROOM0002',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:15:11','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',2,3,0,'2025-10-09','12:07:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:15:11','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',2,4,0,'2025-10-09','12:07:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:15:11','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',2,5,0,'2025-10-09','12:07:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:15:11','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',2,6,0,'2025-10-09','12:10:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:15:11','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',2,7,0,'2025-10-09','12:10:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:15:11','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',2,8,0,'2025-10-09','12:15:00','OPWD0019',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:15:11','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',2,9,0,'2025-10-09','12:16:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:15:11','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',2,10,0,'2025-10-10','12:13:00','ROOM0002',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:15:11','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',2,11,0,'2025-10-10','12:13:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:15:11','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',2,12,0,'2025-10-10','12:13:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:15:11','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',2,13,0,'2025-10-10','12:13:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:15:11','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',2,14,0,'2025-10-10','12:14:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:15:11','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',2,15,0,'2025-10-10','12:18:00','USG0091',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:15:11','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',2,16,0,'2025-10-11','12:15:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 13:15:11','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',3,1,0,'2025-10-11','00:00:00','REG0001',0,-1.00,250,-250,'P',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-11 18:14:49','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',3,2,0,'2025-10-11','00:00:00','ROOM0002',0,-1.00,2900,-2900,'P',0,0,-2900.00,0.00,0.00,-2900.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-11 18:14:49','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',3,3,0,'2025-10-11','00:00:00','REG0002',0,-1.00,250,-250,'P',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-11 18:14:49','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',3,4,0,'2025-10-11','00:00:00','CARE0006',0,-1.00,300,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-11 18:14:49','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',3,5,0,'2025-10-11','00:00:00','CARE0002',0,-1.00,200,-200,'P',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-11 18:14:49','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',3,6,0,'2025-10-11','00:00:00','DRC0018',0,-1.00,800,-800,'P',0,0,-800.00,0.00,0.00,-800.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-11 18:14:49','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',3,7,0,'2025-10-11','00:00:00','DRC0019',0,-1.00,800,-800,'P',0,0,-800.00,0.00,0.00,-800.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-11 18:14:49','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',3,8,0,'2025-10-11','00:00:00','OPWD0019',0,-1.00,100,-100,'P',0,0,-100.00,0.00,0.00,-100.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-11 18:14:49','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',3,9,0,'2025-10-11','00:00:00','ROOM0004',0,-1.00,500,-500,'P',0,0,-500.00,0.00,0.00,-500.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-11 18:14:49','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',3,10,0,'2025-10-11','00:00:00','ROOM0002',0,-1.00,2900,-2900,'P',0,0,-2900.00,0.00,0.00,-2900.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-11 18:14:49','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',3,11,0,'2025-10-11','00:00:00','CARE0006',0,-1.00,300,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-11 18:14:49','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',3,12,0,'2025-10-11','00:00:00','CARE0002',0,-1.00,200,-200,'P',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-11 18:14:49','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',3,13,0,'2025-10-11','00:00:00','DRC0018',0,-1.00,800,-800,'P',0,0,-800.00,0.00,0.00,-800.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-11 18:14:49','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',3,14,0,'2025-10-11','00:00:00','DRC0019',0,-1.00,800,-800,'P',0,0,-800.00,0.00,0.00,-800.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-11 18:14:49','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',3,15,0,'2025-10-11','00:00:00','USG0091',0,-1.00,1200,-1200,'P',0,0,-1200.00,0.00,0.00,-1200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-11 18:14:49','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',3,16,0,'2025-10-11','00:00:00','DRC0018',0,-1.00,800,-800,'P',0,0,-800.00,0.00,0.00,-800.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-11 18:14:49','vishal','2025-10-11 18:14:49',0),(0,0,'2526','H','I',4,1,0,'2025-10-08','18:52:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,2,0,'2025-10-08','18:52:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,3,0,'2025-10-08','18:57:00','CARE0005',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,4,0,'2025-10-08','18:59:00','WPRC0077',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,5,0,'2025-10-08','18:59:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,6,0,'2025-10-08','19:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,7,0,'2025-10-08','19:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,8,0,'2025-10-08','19:20:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,9,0,'2025-10-09','18:53:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,10,0,'2025-10-09','18:57:00','CARE0005',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,11,0,'2025-10-09','18:59:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,12,0,'2025-10-09','19:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,13,0,'2025-10-09','19:20:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,14,0,'2025-10-09','19:20:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,15,0,'2025-10-09','19:20:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,16,0,'2025-10-10','18:57:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,17,0,'2025-10-10','19:01:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,18,0,'2025-10-10','19:01:00','XRY0009',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,19,0,'2025-10-10','19:20:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,20,0,'2025-10-10','19:20:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,21,0,'2025-10-10','19:20:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,22,0,'2025-10-10','19:20:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,23,0,'2025-10-11','18:58:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',4,24,0,'2025-10-11','19:02:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',5,1,0,'2025-10-11','09:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:53:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',5,2,0,'2025-10-11','09:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:53:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',5,3,0,'2025-10-11','19:46:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:53:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',5,4,0,'2025-10-11','19:46:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:53:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',5,5,0,'2025-10-11','19:46:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:53:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',5,6,0,'2025-10-11','19:46:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 19:53:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',5,7,0,'2025-10-11','19:49:00','SURG0014',0,1.00,7300,7300,'P',0,0,7300.00,0.00,0.00,7300.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-11 19:53:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',5,8,0,'2025-10-11','19:50:00','SURG0015',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-11 19:53:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',6,1,0,'2025-10-09','12:07:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:09:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',6,2,0,'2025-10-09','12:07:00','ROOM0002',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:09:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',6,3,0,'2025-10-09','12:07:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:09:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',6,4,0,'2025-10-09','12:07:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:09:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',6,5,0,'2025-10-09','12:07:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:09:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',6,6,0,'2025-10-09','12:10:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:09:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',6,7,0,'2025-10-09','12:10:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:09:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',6,8,0,'2025-10-09','12:15:00','OPWD0019',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:09:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',6,9,0,'2025-10-09','12:16:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:09:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',6,10,0,'2025-10-10','12:13:00','ROOM0002',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:09:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',6,11,0,'2025-10-10','12:13:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:09:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',6,12,0,'2025-10-10','12:13:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:09:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',6,13,0,'2025-10-10','12:13:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:09:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',6,14,0,'2025-10-10','12:14:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:09:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',6,15,0,'2025-10-10','12:18:00','USG0091',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:09:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',6,16,0,'2025-10-11','12:15:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-11 21:09:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',7,1,0,'2025-10-11','09:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',7,2,0,'2025-10-11','09:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',7,3,0,'2025-10-11','09:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',7,4,0,'2025-10-11','09:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',7,5,0,'2025-10-11','09:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',7,6,0,'2025-10-11','09:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',7,7,0,'2025-10-11','09:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',7,8,0,'2025-10-11','10:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',7,9,0,'2025-10-11','10:05:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',7,10,0,'2025-10-11','10:07:00','SURG0014',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 10:08:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',7,11,0,'2025-10-11','10:07:00','SURG0015',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 10:08:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',7,12,0,'2025-10-12','10:02:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-12 10:08:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',7,13,0,'2025-10-12','10:06:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 10:08:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,1,0,'2025-10-10','10:58:00','ROOM0007',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,2,0,'2025-10-10','11:16:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,3,0,'2025-10-10','11:18:00','WPRC0083',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,4,0,'2025-10-10','11:19:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,5,0,'2025-10-10','11:20:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,6,0,'2025-10-10','11:20:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,7,0,'2025-10-10','11:20:00','WPRC0084',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,8,0,'2025-10-10','14:30:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,9,0,'2025-10-10','14:30:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,10,0,'2025-10-10','14:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,11,0,'2025-10-10','14:30:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,12,0,'2025-10-10','14:30:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,13,0,'2025-10-10','14:30:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,14,0,'2025-10-11','10:51:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,15,0,'2025-10-11','10:53:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,16,0,'2025-10-11','10:58:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,17,0,'2025-10-11','10:59:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,18,0,'2025-10-11','10:59:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,19,0,'2025-10-11','10:59:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,20,0,'2025-10-11','11:18:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,21,0,'2025-10-11','11:19:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,22,0,'2025-10-11','11:23:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,23,0,'2025-10-12','10:59:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,24,0,'2025-10-12','11:18:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,25,0,'2025-10-12','11:19:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',8,26,0,'2025-10-12','11:23:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 12:03:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',9,1,0,'2025-10-11','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:20:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',9,2,0,'2025-10-11','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:20:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',9,3,0,'2025-10-11','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:20:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',9,4,0,'2025-10-11','09:30:00','CARE0005',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:20:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',9,5,0,'2025-10-11','09:30:00','ROOM0003',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:20:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',9,6,0,'2025-10-11','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','vishal','2025-10-12 13:20:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',9,7,0,'2025-10-11','13:03:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:20:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',9,8,0,'2025-10-11','13:17:00','SURG0014',0,1.00,17500,17500,'P',0,0,17500.00,0.00,0.00,17500.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 13:20:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',9,9,0,'2025-10-11','13:17:00','SURG0015',0,1.00,5700,5700,'P',0,0,5700.00,0.00,0.00,5700.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 13:20:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',9,10,0,'2025-10-12','13:03:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 13:20:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',9,11,0,'2025-10-12','13:04:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:20:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',10,1,0,'2025-10-11','08:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:42:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',10,2,0,'2025-10-11','08:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:42:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',10,3,0,'2025-10-11','13:06:00','ROOM0002',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:42:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',10,4,0,'2025-10-11','13:07:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:42:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',10,5,0,'2025-10-11','13:07:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:42:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',10,6,0,'2025-10-11','13:07:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 13:42:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',10,7,0,'2025-10-11','13:08:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-12 13:42:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',10,8,0,'2025-10-11','13:08:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 13:42:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',10,9,0,'2025-10-11','13:10:00','SURG0014',0,1.00,20000,20000,'P',0,0,20000.00,0.00,0.00,20000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 13:42:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',10,10,0,'2025-10-11','13:10:00','SURG0015',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 13:42:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',10,11,0,'2025-10-12','13:08:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-12 13:42:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',10,12,0,'2025-10-12','13:09:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:42:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',10,13,0,'2025-10-12','13:09:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:42:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',10,14,0,'2025-10-12','13:09:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:42:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',10,15,0,'2025-10-12','13:14:00','ROOM0002',0,0.50,2900,1450,'P',0,0,1450.00,0.00,0.00,1450.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:42:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',10,16,0,'2025-10-12','13:14:00','CARE0006',0,0.50,300,150,'P',0,0,150.00,0.00,0.00,150.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:42:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',10,17,0,'2025-10-12','13:14:00','CARE0002',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 13:42:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',11,1,0,'2025-10-11','13:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 20:24:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',11,2,0,'2025-10-11','13:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 20:24:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',11,3,0,'2025-10-11','13:30:00','AECO0008',0,0.50,300,150,'A',0,0,150.00,0.00,0.00,150.00,'311',0,4,0,'',0,'','','','','','vishal','2025-10-12 20:24:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',11,4,0,'2025-10-11','13:30:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-10-12 20:24:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',11,5,0,'2025-10-11','13:30:00','ROOM0009',0,0.50,2900,1450,'A',0,0,1450.00,0.00,0.00,1450.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-10-12 20:24:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',11,6,0,'2025-10-11','21:29:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,36,0,'',0,'','','','','','vishal','2025-10-12 20:24:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',11,7,0,'2025-10-11','21:32:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 20:24:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',11,8,0,'2025-10-11','21:33:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 20:24:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',12,1,0,'2025-10-12','12:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 21:40:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',12,2,0,'2025-10-12','12:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 21:40:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',12,3,0,'2025-10-12','12:45:00','ROOM0009',0,0.50,2900,1450,'A',0,0,1450.00,0.00,0.00,1450.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-12 21:40:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',12,4,0,'2025-10-12','12:45:00','AECO0008',0,0.50,300,150,'A',0,0,150.00,0.00,0.00,150.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-12 21:40:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',12,5,0,'2025-10-12','12:45:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-12 21:40:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',12,6,0,'2025-10-12','12:45:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','vishal','2025-10-12 21:40:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',12,7,0,'2025-10-12','18:39:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 21:40:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',12,8,0,'2025-10-12','18:40:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-12 21:40:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',12,9,0,'2025-10-12','21:37:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-12 21:40:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',13,1,0,'2025-09-30','19:48:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 10:09:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',13,2,0,'2025-09-30','19:49:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 10:09:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',13,3,0,'2025-09-30','10:05:00','OETR0001',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-13 10:09:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',13,4,0,'2025-09-30','10:05:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-13 10:09:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',13,5,0,'2025-09-30','10:05:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 10:09:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,1,0,'2025-10-08','12:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,2,0,'2025-10-08','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,3,0,'2025-10-08','12:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,4,0,'2025-10-08','12:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,5,0,'2025-10-08','20:20:00','USG0092',0,1.00,1200,1200,'A',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,6,0,'2025-10-08','20:20:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,7,0,'2025-10-08','20:20:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,8,0,'2025-10-08','20:23:00','WPRC0080',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,9,0,'2025-10-08','20:26:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,10,0,'2025-10-08','20:26:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,11,0,'2025-10-09','12:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,12,0,'2025-10-09','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,13,0,'2025-10-09','12:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,14,0,'2025-10-09','12:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,15,0,'2025-10-09','20:25:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,16,0,'2025-10-10','12:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,17,0,'2025-10-10','12:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,18,0,'2025-10-10','12:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,19,0,'2025-10-10','12:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,20,0,'2025-10-10','12:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,21,0,'2025-10-11','20:19:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',14,22,0,'2025-10-11','20:19:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','reception','2025-10-13 11:17:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,1,0,'2025-10-10','11:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,2,0,'2025-10-10','11:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,3,0,'2025-10-10','11:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,4,0,'2025-10-10','11:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,5,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,5,0,'2025-10-10','11:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,5,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,6,0,'2025-10-10','11:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,7,0,'2025-10-10','11:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,8,0,'2025-10-10','18:29:00','ROOM0004',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,9,0,'2025-10-10','18:30:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,10,0,'2025-10-10','18:30:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,11,0,'2025-10-11','11:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,12,0,'2025-10-11','11:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,13,0,'2025-10-11','11:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,14,0,'2025-10-11','11:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,15,0,'2025-10-11','11:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,16,0,'2025-10-11','18:28:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,41,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,17,0,'2025-10-11','18:30:00','ROOM0004',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,18,0,'2025-10-12','11:45:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,19,0,'2025-10-12','11:45:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,20,0,'2025-10-12','11:45:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,21,0,'2025-10-12','11:45:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,22,0,'2025-10-12','11:45:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,23,0,'2025-10-12','18:30:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,24,0,'2025-10-13','11:57:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,25,0,'2025-10-13','11:58:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',15,26,0,'2025-10-13','11:58:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','reception','2025-10-13 12:12:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,1,0,'2025-10-10','19:29:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,2,0,'2025-10-10','19:29:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,3,0,'2025-10-10','19:29:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,4,0,'2025-10-10','19:29:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,5,0,'2025-10-10','19:30:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,6,0,'2025-10-10','19:31:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,7,0,'2025-10-10','20:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,8,0,'2025-10-10','20:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,9,0,'2025-10-11','19:29:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,10,0,'2025-10-11','19:31:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,11,0,'2025-10-11','19:32:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,12,0,'2025-10-11','19:32:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,13,0,'2025-10-11','19:32:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,14,0,'2025-10-11','19:32:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,15,0,'2025-10-11','19:32:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,16,0,'2025-10-11','19:32:00','ROOM0004',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,17,0,'2025-10-11','19:32:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,18,0,'2025-10-12','13:09:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,19,0,'2025-10-12','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'310',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,20,0,'2025-10-12','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'310',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,21,0,'2025-10-12','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'310',0,9999,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,22,0,'2025-10-12','20:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,23,0,'2025-10-12','20:30:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'310',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',16,24,0,'2025-10-13','13:10:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-13 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,1,0,'2025-10-07','10:55:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,2,0,'2025-10-07','10:55:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,3,0,'2025-10-07','10:55:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,4,0,'2025-10-07','10:55:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,5,0,'2025-10-07','17:16:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,6,0,'2025-10-07','17:16:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,7,0,'2025-10-07','17:59:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,8,0,'2025-10-08','10:55:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,9,0,'2025-10-08','10:55:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,10,0,'2025-10-08','10:55:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,11,0,'2025-10-08','10:55:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,12,0,'2025-10-08','10:55:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,13,0,'2025-10-08','19:17:00','SURG0015',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,14,0,'2025-10-08','19:17:00','SURG0014',0,1.00,20000,20000,'P',0,0,20000.00,0.00,0.00,20000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,15,0,'2025-10-09','10:55:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,16,0,'2025-10-09','10:55:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,17,0,'2025-10-09','10:55:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,18,0,'2025-10-09','10:55:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,19,0,'2025-10-09','10:55:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,20,0,'2025-10-10','10:55:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,21,0,'2025-10-10','10:55:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,22,0,'2025-10-10','10:55:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,23,0,'2025-10-10','10:55:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,24,0,'2025-10-10','10:55:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,25,0,'2025-10-11','10:55:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,26,0,'2025-10-11','10:55:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,27,0,'2025-10-11','10:55:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,28,0,'2025-10-11','10:55:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,29,0,'2025-10-11','10:55:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,30,0,'2025-10-11','17:58:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,46,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,31,0,'2025-10-12','10:55:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,32,0,'2025-10-12','10:55:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,33,0,'2025-10-12','10:55:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,34,0,'2025-10-12','10:55:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,35,0,'2025-10-12','10:55:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,36,0,'2025-10-12','17:58:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',17,37,0,'2025-10-13','10:55:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','vishal','2025-10-13 14:18:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',18,1,0,'2025-10-04','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 16:58:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',18,2,0,'2025-10-04','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 16:58:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',18,3,0,'2025-10-04','09:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-13 16:58:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',18,4,0,'2025-10-04','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-13 16:58:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',18,5,0,'2025-10-04','09:30:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'408',0,42,0,'',0,'','','','','','vishal','2025-10-13 16:58:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',18,6,0,'2025-10-04','09:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-13 16:58:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',18,7,0,'2025-10-04','16:54:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 16:58:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',18,8,0,'2025-10-04','16:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 16:58:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',18,9,0,'2025-10-04','16:55:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 16:58:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',19,1,0,'2025-10-13','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 17:17:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',19,2,0,'2025-10-13','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 17:17:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',19,3,0,'2025-10-13','09:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-10-13 17:17:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',19,4,0,'2025-10-13','17:14:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 17:17:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',19,5,0,'2025-10-13','17:14:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 17:17:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',19,6,0,'2025-10-13','17:14:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-13 17:17:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',19,7,0,'2025-10-13','17:15:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-13 17:17:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',19,8,0,'2025-10-13','17:16:00','SURG0014',0,1.00,8900,8900,'P',0,0,8900.00,0.00,0.00,8900.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-13 17:17:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',19,9,0,'2025-10-13','17:16:00','SURG0015',0,1.00,1400,1400,'P',0,0,1400.00,0.00,0.00,1400.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-13 17:17:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',20,1,0,'2025-10-11','14:23:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',20,2,0,'2025-10-11','22:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',20,3,0,'2025-10-11','22:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',20,4,0,'2025-10-11','22:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'214',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',20,5,0,'2025-10-11','22:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'214',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',20,6,0,'2025-10-11','22:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'214',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',20,7,0,'2025-10-12','11:24:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',20,8,0,'2025-10-12','14:17:00','DRC0020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,37,0,'',0,'','','','','','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',20,9,0,'2025-10-12','14:20:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',20,10,0,'2025-10-12','14:20:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',20,11,0,'2025-10-12','22:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'214',0,5,0,'',0,'','','','','','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',20,12,0,'2025-10-12','22:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'214',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',20,13,0,'2025-10-12','22:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'214',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',20,14,0,'2025-10-12','22:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'214',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',20,15,0,'2025-10-12','22:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'214',0,5,0,'',0,'','','','','','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',20,16,0,'2025-10-13','11:24:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',20,17,0,'2025-10-13','19:55:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',20,18,0,'2025-10-13','19:57:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','riya','2025-10-13 20:15:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',21,1,0,'2025-10-09','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 21:49:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',21,2,0,'2025-10-09','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 21:49:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',21,3,0,'2025-10-09','09:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 21:49:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',21,4,0,'2025-10-09','09:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 21:49:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',21,5,0,'2025-10-09','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 21:49:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',21,6,0,'2025-10-09','09:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'309',0,3,0,'',0,'','','','','','riya','2025-10-13 21:49:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',21,7,0,'2025-10-09','09:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'309',0,3,0,'',0,'','','','','','riya','2025-10-13 21:49:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',21,8,0,'2025-10-09','21:37:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 21:49:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',21,9,0,'2025-10-09','21:38:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 21:49:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',21,10,0,'2025-10-09','21:38:00','SURG0014',0,1.00,15000,15000,'P',0,0,15000.00,0.00,0.00,15000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-13 21:49:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',21,11,0,'2025-10-09','21:39:00','SURG0014',0,1.00,40000,40000,'P',0,0,40000.00,0.00,0.00,40000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-13 21:49:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',21,12,0,'2025-10-09','21:40:00','SURG0015',0,1.00,10000,10000,'P',0,0,10000.00,0.00,0.00,10000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-13 21:49:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',21,13,0,'2025-10-09','21:43:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-13 21:49:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',21,14,0,'2025-10-10','09:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'309',0,3,0,'',0,'','','','','','riya','2025-10-13 21:49:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',21,15,0,'2025-10-10','21:41:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 21:49:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',21,16,0,'2025-10-10','21:41:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-13 21:49:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',22,1,0,'2025-10-06','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',22,2,0,'2025-10-06','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',22,3,0,'2025-10-06','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',22,4,0,'2025-10-06','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',22,5,0,'2025-10-06','10:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-10-13 22:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',22,6,0,'2025-10-06','10:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-10-13 22:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',22,7,0,'2025-10-06','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',22,8,0,'2025-10-06','22:02:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',22,9,0,'2025-10-06','22:03:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',22,10,0,'2025-10-06','22:04:00','SURG0014',0,1.00,12500,12500,'P',0,0,12500.00,0.00,0.00,12500.00,'',0,3,0,'',0,'','','','','','riya','2025-10-13 22:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',22,11,0,'2025-10-06','22:05:00','SURG0015',0,1.00,4200,4200,'P',0,0,4200.00,0.00,0.00,4200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-13 22:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',22,12,0,'2025-10-07','10:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-10-13 22:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',22,13,0,'2025-10-07','22:03:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,1,0,'2025-10-11','12:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,2,0,'2025-10-11','12:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,3,0,'2025-10-11','12:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,4,0,'2025-10-11','12:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,5,0,'2025-10-11','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,6,0,'2025-10-11','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,36,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,7,0,'2025-10-11','18:38:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,8,0,'2025-10-11','18:38:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,9,0,'2025-10-12','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,4,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,10,0,'2025-10-12','12:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,4,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,11,0,'2025-10-12','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,12,0,'2025-10-12','12:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,13,0,'2025-10-12','12:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,14,0,'2025-10-12','22:50:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,15,0,'2025-10-12','22:52:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,16,0,'2025-10-13','12:00:00','ROOM0009',0,0.50,2900,1450,'A',0,0,1450.00,0.00,0.00,1450.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,17,0,'2025-10-13','12:00:00','AECO0008',0,0.50,300,150,'A',0,0,150.00,0.00,0.00,150.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,18,0,'2025-10-13','12:00:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,19,0,'2025-10-13','12:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,4,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,20,0,'2025-10-13','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,4,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',23,21,0,'2025-10-13','22:51:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 22:58:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',24,1,0,'2025-10-11','17:50:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:03:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',24,2,0,'2025-10-11','19:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:03:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',24,3,0,'2025-10-11','19:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:03:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',24,4,0,'2025-10-11','19:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:03:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',24,5,0,'2025-10-11','19:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:03:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',24,6,0,'2025-10-11','19:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:03:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',24,7,0,'2025-10-11','19:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,36,0,'',0,'','','','','','riya','2025-10-13 23:03:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',24,8,0,'2025-10-12','19:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:03:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',24,9,0,'2025-10-12','19:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:03:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',24,10,0,'2025-10-12','19:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:03:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',24,11,0,'2025-10-12','19:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-10-13 23:03:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',24,12,0,'2025-10-12','19:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-10-13 23:03:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',24,13,0,'2025-10-13','19:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-10-13 23:03:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',24,14,0,'2025-10-13','19:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-10-13 23:03:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',24,15,0,'2025-10-13','22:44:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-13 23:03:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',25,1,0,'2025-09-25','12:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:30:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',25,2,0,'2025-09-25','12:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:30:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',25,3,0,'2025-09-25','12:15:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'405',0,4,0,'',0,'','','','','','riya','2025-10-14 09:30:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',25,4,0,'2025-09-25','12:15:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'405',0,4,0,'',0,'','','','','','riya','2025-10-14 09:30:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',25,5,0,'2025-09-25','12:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'405',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:30:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',25,6,0,'2025-09-25','19:29:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:30:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',25,7,0,'2025-09-25','19:29:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:30:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',25,8,0,'2025-09-25','20:41:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:30:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',25,9,0,'2025-09-25','20:42:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:30:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',25,10,0,'2025-09-25','20:43:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:30:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',25,11,0,'2025-09-26','20:40:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-10-14 09:30:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',26,1,0,'2025-09-30','09:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:49:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',26,2,0,'2025-09-30','09:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:49:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',26,3,0,'2025-09-30','09:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-10-14 09:49:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',26,4,0,'2025-09-30','09:42:00','OETR0001',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-14 09:49:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',26,5,0,'2025-09-30','09:43:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 09:49:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',27,1,0,'2025-10-12','11:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 12:16:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',27,2,0,'2025-10-12','11:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 12:16:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',27,3,0,'2025-10-12','11:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-14 12:16:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',27,4,0,'2025-10-12','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-14 12:16:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',27,5,0,'2025-10-12','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-14 12:16:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',27,6,0,'2025-10-12','11:00:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'411',0,5,0,'',0,'','','','','','riya','2025-10-14 12:16:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',27,7,0,'2025-10-12','11:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','riya','2025-10-14 12:16:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',27,8,0,'2025-10-12','18:02:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 12:16:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',27,9,0,'2025-10-13','11:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-14 12:16:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',27,10,0,'2025-10-13','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-14 12:16:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',27,11,0,'2025-10-13','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-14 12:16:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',27,12,0,'2025-10-13','11:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','riya','2025-10-14 12:16:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',27,13,0,'2025-10-13','11:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','riya','2025-10-14 12:16:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',27,14,0,'2025-10-14','12:09:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-14 12:16:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,1,0,'2025-10-10','18:03:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,2,0,'2025-10-10','18:03:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,3,0,'2025-10-10','18:04:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,4,0,'2025-10-10','18:05:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,5,0,'2025-10-10','19:20:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,6,0,'2025-10-10','19:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,7,0,'2025-10-10','19:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,8,0,'2025-10-10','19:20:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,9,0,'2025-10-11','13:03:00','SURG0015',0,1.00,7500,7500,'P',0,0,7500.00,0.00,0.00,7500.00,'',0,6,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,10,0,'2025-10-11','13:06:00','SURG0014',0,1.00,30000,30000,'P',0,0,30000.00,0.00,0.00,30000.00,'',0,50,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,11,0,'2025-10-11','18:05:00','WPRC0096',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,12,0,'2025-10-11','18:05:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,13,0,'2025-10-11','18:05:00','WPRC0080',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,14,0,'2025-10-11','19:20:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,15,0,'2025-10-11','19:20:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,16,0,'2025-10-11','19:20:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,17,0,'2025-10-11','19:20:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,18,0,'2025-10-11','19:20:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,19,0,'2025-10-12','19:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,20,0,'2025-10-12','19:20:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,21,0,'2025-10-12','19:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,22,0,'2025-10-12','19:20:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,23,0,'2025-10-12','19:20:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,24,0,'2025-10-13','12:53:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,25,0,'2025-10-13','19:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,26,0,'2025-10-13','19:20:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,27,0,'2025-10-13','19:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,28,0,'2025-10-13','19:20:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,29,0,'2025-10-13','19:20:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,30,0,'2025-10-14','12:53:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',28,31,0,'2025-10-14','12:53:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,6,0,'',0,'','','','','','riya','2025-10-14 14:00:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,1,0,'2025-10-06','11:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,2,0,'2025-10-06','11:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,3,0,'2025-10-06','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,4,0,'2025-10-06','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,5,0,'2025-10-06','15:25:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,6,0,'2025-10-06','15:25:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,7,0,'2025-10-06','15:33:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,8,0,'2025-10-06','15:33:00','USG0093',0,1.00,1200,1200,'A',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,9,0,'2025-10-06','15:33:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,10,0,'2025-10-06','15:36:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,11,0,'2025-10-07','11:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,12,0,'2025-10-07','11:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,13,0,'2025-10-07','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,14,0,'2025-10-07','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,15,0,'2025-10-07','11:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,16,0,'2025-10-07','15:36:00','WPRC0090',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,17,0,'2025-10-08','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,18,0,'2025-10-08','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,19,0,'2025-10-08','11:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,20,0,'2025-10-08','11:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,21,0,'2025-10-08','11:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,22,0,'2025-10-08','15:32:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,23,0,'2025-10-08','15:38:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,24,0,'2025-10-09','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,25,0,'2025-10-09','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,26,0,'2025-10-09','11:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,27,0,'2025-10-09','11:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,4,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,28,0,'2025-10-09','15:28:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,29,0,'2025-10-09','15:31:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,30,0,'2025-10-09','15:41:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,31,0,'2025-10-09','15:41:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,32,0,'2025-10-10','11:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,33,0,'2025-10-10','11:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,34,0,'2025-10-10','11:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,35,0,'2025-10-10','11:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,36,0,'2025-10-10','11:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,37,0,'2025-10-10','15:31:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,38,0,'2025-10-10','15:32:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,39,0,'2025-10-10','15:32:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,40,0,'2025-10-10','15:41:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,41,0,'2025-10-10','15:42:00','WPRC0078',0,2.00,300,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,42,0,'2025-10-11','11:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'210',0,36,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,43,0,'2025-10-11','11:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,44,0,'2025-10-11','11:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,45,0,'2025-10-11','11:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,46,0,'2025-10-11','11:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,47,0,'2025-10-11','15:32:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,48,0,'2025-10-11','15:33:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,49,0,'2025-10-11','15:42:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,50,0,'2025-10-11','15:42:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,51,0,'2025-10-12','11:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,52,0,'2025-10-12','11:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,53,0,'2025-10-12','11:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,54,0,'2025-10-12','11:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,55,0,'2025-10-12','11:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,56,0,'2025-10-12','15:32:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,57,0,'2025-10-12','15:33:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,58,0,'2025-10-12','15:42:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,59,0,'2025-10-13','11:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,60,0,'2025-10-13','11:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,61,0,'2025-10-13','11:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,62,0,'2025-10-13','11:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,63,0,'2025-10-13','11:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,64,0,'2025-10-13','12:20:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,65,0,'2025-10-13','12:20:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,66,0,'2025-10-13','12:21:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,67,0,'2025-10-13','14:47:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,68,0,'2025-10-14','11:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,69,0,'2025-10-14','14:41:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',29,70,0,'2025-10-14','14:41:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 15:27:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,1,0,'2025-10-10','12:40:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,2,0,'2025-10-10','12:40:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,3,0,'2025-10-10','12:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,4,0,'2025-10-10','12:40:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,5,0,'2025-10-10','12:40:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,6,0,'2025-10-10','12:40:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,7,0,'2025-10-10','19:11:00','WPRC0090',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,8,0,'2025-10-10','19:11:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,9,0,'2025-10-10','19:12:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,10,0,'2025-10-11','12:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,11,0,'2025-10-11','12:40:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,12,0,'2025-10-11','12:40:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,13,0,'2025-10-11','12:40:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,36,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,14,0,'2025-10-11','12:40:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,15,0,'2025-10-12','12:40:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,16,0,'2025-10-12','12:40:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,17,0,'2025-10-12','12:40:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,18,0,'2025-10-12','12:40:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,19,0,'2025-10-12','12:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,20,0,'2025-10-13','12:40:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,21,0,'2025-10-13','12:40:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,22,0,'2025-10-13','12:40:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,23,0,'2025-10-13','12:40:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,24,0,'2025-10-13','12:40:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,25,0,'2025-10-14','19:09:00','ROOM0009',0,0.50,2900,1450,'P',0,0,1450.00,0.00,0.00,1450.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,26,0,'2025-10-14','19:09:00','CARE0006',0,0.50,300,150,'P',0,0,150.00,0.00,0.00,150.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,27,0,'2025-10-14','19:10:00','CARE0002',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,28,0,'2025-10-14','19:10:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',30,29,0,'2025-10-14','19:10:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-14 19:23:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',31,1,0,'2025-10-14','09:03:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-14 19:43:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',31,2,0,'2025-10-14','09:03:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-14 19:43:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',31,3,0,'2025-10-14','09:03:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','vishal','2025-10-14 19:43:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',31,4,0,'2025-10-14','09:03:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','vishal','2025-10-14 19:43:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',31,5,0,'2025-10-14','19:03:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-14 19:43:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',31,6,0,'2025-10-14','19:03:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-14 19:43:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',31,7,0,'2025-10-14','19:04:00','SURG0014',0,1.00,10500,10500,'P',0,0,10500.00,0.00,0.00,10500.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-14 19:43:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',31,8,0,'2025-10-14','19:04:00','SURG0015',0,1.00,3300,3300,'P',0,0,3300.00,0.00,0.00,3300.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-14 19:43:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',32,1,0,'2025-10-13','21:07:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-14 21:13:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',32,2,0,'2025-10-13','22:34:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-14 21:13:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',32,3,0,'2025-10-13','22:34:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-14 21:13:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',32,4,0,'2025-10-13','22:34:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-14 21:13:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',32,5,0,'2025-10-13','22:34:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-14 21:13:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',32,6,0,'2025-10-13','22:34:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-14 21:13:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',32,7,0,'2025-10-14','21:06:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-14 21:13:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',32,8,0,'2025-10-14','22:34:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','vishal','2025-10-14 21:13:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',32,9,0,'2025-10-14','22:34:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','vishal','2025-10-14 21:13:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,1,0,'2025-10-11','11:51:00','ROOM0003',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,2,0,'2025-10-11','11:53:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,3,0,'2025-10-11','11:53:00','CARE0005',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,4,0,'2025-10-11','14:10:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,5,0,'2025-10-11','14:10:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,6,0,'2025-10-11','18:10:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,7,0,'2025-10-11','18:11:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,36,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,8,0,'2025-10-11','18:11:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,9,0,'2025-10-11','18:12:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,10,0,'2025-10-12','11:51:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,11,0,'2025-10-12','11:53:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,12,0,'2025-10-12','11:53:00','CARE0005',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,13,0,'2025-10-12','14:10:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'409',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,14,0,'2025-10-12','14:10:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'409',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,15,0,'2025-10-12','18:11:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,16,0,'2025-10-12','18:12:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,17,0,'2025-10-13','11:51:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,18,0,'2025-10-13','11:53:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,19,0,'2025-10-13','11:53:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,20,0,'2025-10-13','11:56:00','WPRC0090',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,21,0,'2025-10-13','14:10:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'409',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,22,0,'2025-10-13','14:10:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'409',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,23,0,'2025-10-13','16:25:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,24,0,'2025-10-13','16:25:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,25,0,'2025-10-14','11:51:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,26,0,'2025-10-14','11:53:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,27,0,'2025-10-14','11:53:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,28,0,'2025-10-14','11:55:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,29,0,'2025-10-14','11:57:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,30,0,'2025-10-14','14:10:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'409',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,31,0,'2025-10-14','14:10:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'409',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,32,0,'2025-10-15','11:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,33,0,'2025-10-15','11:57:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',33,34,0,'2025-10-15','11:58:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-15 12:13:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,1,0,'2025-10-09','12:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,2,0,'2025-10-09','12:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,3,0,'2025-10-09','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,4,0,'2025-10-09','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,5,0,'2025-10-09','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,6,0,'2025-10-09','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,7,0,'2025-10-09','17:53:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,8,0,'2025-10-10','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,9,0,'2025-10-10','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,10,0,'2025-10-10','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,11,0,'2025-10-10','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,12,0,'2025-10-10','12:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,13,0,'2025-10-11','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,36,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,14,0,'2025-10-11','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,15,0,'2025-10-11','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,16,0,'2025-10-11','12:30:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,17,0,'2025-10-11','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,18,0,'2025-10-12','12:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,19,0,'2025-10-12','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,20,0,'2025-10-12','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,21,0,'2025-10-12','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,22,0,'2025-10-12','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,23,0,'2025-10-13','12:03:00','WPRC0090',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,24,0,'2025-10-13','12:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,25,0,'2025-10-13','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,26,0,'2025-10-13','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,27,0,'2025-10-13','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,28,0,'2025-10-13','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,29,0,'2025-10-14','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,30,0,'2025-10-14','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,31,0,'2025-10-14','12:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,32,0,'2025-10-14','12:30:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,33,0,'2025-10-14','12:30:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',34,34,0,'2025-10-15','12:02:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-15 13:00:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',35,1,0,'2025-10-14','13:50:00','SURG0014',0,1.00,8600,8600,'P',0,0,8600.00,0.00,0.00,8600.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-15 13:32:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',35,2,0,'2025-10-14','13:50:00','SURG0015',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-15 13:32:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',35,3,0,'2025-10-14','13:27:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:32:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',35,4,0,'2025-10-14','13:27:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:32:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',35,5,0,'2025-10-14','13:27:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:32:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',35,6,0,'2025-10-14','13:27:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:32:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',35,7,0,'2025-10-14','13:27:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:32:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',35,8,0,'2025-10-14','13:27:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,3,0,'',0,'','','','','','vishal','2025-10-15 13:32:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',35,9,0,'2025-10-15','13:27:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,3,0,'',0,'','','','','','vishal','2025-10-15 13:32:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',36,1,0,'2025-10-14','10:48:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:43:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',36,2,0,'2025-10-14','10:48:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:43:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',36,3,0,'2025-10-14','10:48:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:43:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',36,4,0,'2025-10-14','10:48:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:43:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',36,5,0,'2025-10-14','10:48:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:43:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',36,6,0,'2025-10-14','10:48:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-10-15 13:43:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',36,7,0,'2025-10-14','12:42:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-15 13:43:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',36,8,0,'2025-10-14','13:41:00','SURG0014',0,1.00,22000,22000,'A',0,0,22000.00,0.00,0.00,22000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-15 13:43:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',36,9,0,'2025-10-14','13:41:00','SURG0015',0,1.00,7200,7200,'P',0,0,7200.00,0.00,0.00,7200.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-15 13:43:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',36,10,0,'2025-10-15','10:48:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-10-15 13:43:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',36,11,0,'2025-10-15','12:42:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-15 13:43:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,1,0,'2025-10-13','11:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,2,0,'2025-10-13','11:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,3,0,'2025-10-13','11:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,4,0,'2025-10-13','11:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,5,0,'2025-10-13','11:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,6,0,'2025-10-13','11:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,7,0,'2025-10-13','18:14:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,8,0,'2025-10-13','18:14:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,9,0,'2025-10-14','11:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,10,0,'2025-10-14','11:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,11,0,'2025-10-14','11:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,12,0,'2025-10-14','11:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,13,0,'2025-10-14','11:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,14,0,'2025-10-14','18:14:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,15,0,'2025-10-15','11:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,16,0,'2025-10-15','11:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,17,0,'2025-10-15','11:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,18,0,'2025-10-15','11:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,19,0,'2025-10-15','11:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,20,0,'2025-10-15','18:14:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,21,0,'2025-10-16','08:55:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',37,22,0,'2025-10-16','08:55:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-16 09:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',38,1,0,'2025-10-14','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:44:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',38,2,0,'2025-10-14','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:44:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',38,3,0,'2025-10-14','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:44:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',38,4,0,'2025-10-14','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:44:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',38,5,0,'2025-10-14','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:44:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',38,6,0,'2025-10-14','10:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','vishal','2025-10-16 11:44:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',38,7,0,'2025-10-14','10:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','vishal','2025-10-16 11:44:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',38,8,0,'2025-10-14','12:37:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:44:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',38,9,0,'2025-10-14','12:52:00','SURG0014',0,1.00,15000,15000,'P',0,0,15000.00,0.00,0.00,15000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-16 11:44:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',38,10,0,'2025-10-14','12:52:00','SURG0015',0,1.00,3750,3750,'P',0,0,3750.00,0.00,0.00,3750.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-16 11:44:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',38,11,0,'2025-10-15','10:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','vishal','2025-10-16 11:44:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',38,12,0,'2025-10-15','12:37:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-16 11:44:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,1,0,'2025-10-13','18:09:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,2,0,'2025-10-13','18:40:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,3,0,'2025-10-13','18:40:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,4,0,'2025-10-13','18:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,5,0,'2025-10-13','18:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,6,0,'2025-10-13','18:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,7,0,'2025-10-14','18:09:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,8,0,'2025-10-14','18:40:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'405',0,8,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,9,0,'2025-10-14','18:40:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'405',0,8,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,10,0,'2025-10-14','18:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,11,0,'2025-10-14','18:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,12,0,'2025-10-14','18:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,13,0,'2025-10-15','11:26:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,62,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,14,0,'2025-10-15','18:10:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,15,0,'2025-10-15','18:10:00','WPRC0089',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,16,0,'2025-10-15','18:40:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,17,0,'2025-10-15','18:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,18,0,'2025-10-15','18:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,19,0,'2025-10-15','18:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,20,0,'2025-10-15','18:40:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,21,0,'2025-10-16','11:20:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,22,0,'2025-10-16','11:20:00','WPRC0089',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',39,23,0,'2025-10-16','18:40:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','vishal','2025-10-16 11:51:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,1,0,'2025-10-11','11:40:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,2,0,'2025-10-11','11:40:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,3,0,'2025-10-11','11:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,4,0,'2025-10-11','11:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,5,0,'2025-10-11','11:40:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,5,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,6,0,'2025-10-11','11:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,7,0,'2025-10-11','12:12:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,8,0,'2025-10-11','18:50:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,9,0,'2025-10-12','11:40:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,5,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,10,0,'2025-10-12','11:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,11,0,'2025-10-12','11:40:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'305',0,5,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,12,0,'2025-10-12','11:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,13,0,'2025-10-12','11:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,14,0,'2025-10-12','18:48:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,7,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,15,0,'2025-10-12','18:48:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,16,0,'2025-10-12','18:50:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,17,0,'2025-10-12','18:54:00','WPRC0079',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,18,0,'2025-10-13','11:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,19,0,'2025-10-13','11:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,20,0,'2025-10-13','11:40:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,21,0,'2025-10-13','11:40:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,22,0,'2025-10-13','11:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,23,0,'2025-10-13','12:01:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,7,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,24,0,'2025-10-13','18:16:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,25,0,'2025-10-13','18:17:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,26,0,'2025-10-14','11:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,27,0,'2025-10-14','11:40:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,28,0,'2025-10-14','11:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,29,0,'2025-10-14','11:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,30,0,'2025-10-14','12:01:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,7,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,31,0,'2025-10-14','18:16:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,32,0,'2025-10-14','18:17:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,33,0,'2025-10-15','11:40:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,34,0,'2025-10-15','11:40:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,35,0,'2025-10-15','11:40:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,36,0,'2025-10-15','11:40:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,37,0,'2025-10-15','12:01:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,7,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,38,0,'2025-10-15','18:16:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,39,0,'2025-10-16','12:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',40,40,0,'2025-10-16','12:02:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:18:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',41,1,0,'2025-10-14','18:07:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',41,2,0,'2025-10-14','18:07:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',41,3,0,'2025-10-14','18:08:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',41,4,0,'2025-10-14','21:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',41,5,0,'2025-10-14','21:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',41,6,0,'2025-10-14','21:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',41,7,0,'2025-10-14','21:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',41,8,0,'2025-10-14','21:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',41,9,0,'2025-10-15','12:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',41,10,0,'2025-10-15','12:31:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',41,11,0,'2025-10-15','12:31:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',41,12,0,'2025-10-15','12:33:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',41,13,0,'2025-10-15','12:35:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',41,14,0,'2025-10-15','18:07:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',41,15,0,'2025-10-15','18:07:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',41,16,0,'2025-10-15','21:30:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',41,17,0,'2025-10-16','12:34:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',41,18,0,'2025-10-16','21:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'207',0,4,0,'',0,'','','','','','vishal','2025-10-16 12:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',42,1,0,'2025-10-15','09:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 18:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',42,2,0,'2025-10-15','09:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 18:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',42,3,0,'2025-10-15','09:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-16 18:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',42,4,0,'2025-10-15','09:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-16 18:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',42,5,0,'2025-10-15','09:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-16 18:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',42,6,0,'2025-10-15','09:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-10-16 18:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',42,7,0,'2025-10-15','09:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-10-16 18:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',42,8,0,'2025-10-15','18:33:00','SURG0014',0,1.00,15600,15600,'P',0,0,15600.00,0.00,0.00,15600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 18:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',42,9,0,'2025-10-15','18:33:00','SURG0015',0,1.00,5200,5200,'P',0,0,5200.00,0.00,0.00,5200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 18:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',42,10,0,'2025-10-16','18:32:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 18:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',42,11,0,'2025-10-16','18:32:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 18:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',42,12,0,'2025-10-16','18:33:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 18:55:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',43,1,0,'2025-10-15','11:25:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:57:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',43,2,0,'2025-10-15','11:25:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:57:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',43,3,0,'2025-10-15','11:25:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:57:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',43,4,0,'2025-10-15','11:25:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:57:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',43,5,0,'2025-10-15','11:25:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:57:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',43,6,0,'2025-10-15','11:25:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','riya','2025-10-16 19:57:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',43,7,0,'2025-10-15','18:28:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 19:57:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',43,8,0,'2025-10-15','18:29:00','SURG0014',0,1.00,17700,17700,'P',0,0,17700.00,0.00,0.00,17700.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 19:57:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',43,9,0,'2025-10-15','18:30:00','SURG0015',0,1.00,5900,5900,'P',0,0,5900.00,0.00,0.00,5900.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 19:57:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',43,10,0,'2025-10-16','11:25:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','riya','2025-10-16 19:57:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',43,11,0,'2025-10-16','18:31:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 19:57:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,1,0,'2025-10-09','18:57:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,2,0,'2025-10-09','18:57:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,3,0,'2025-10-09','18:59:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,4,0,'2025-10-09','18:59:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,5,0,'2025-10-09','18:59:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,6,0,'2025-10-09','19:00:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,7,0,'2025-10-09','19:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,8,0,'2025-10-09','19:03:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,9,0,'2025-10-09','19:04:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,10,0,'2025-10-10','14:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,11,0,'2025-10-10','14:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,12,0,'2025-10-10','14:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,13,0,'2025-10-10','14:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,14,0,'2025-10-10','14:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,15,0,'2025-10-10','18:39:00','SURG0014',0,1.00,35000,35000,'P',0,0,35000.00,0.00,0.00,35000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,16,0,'2025-10-10','18:40:00','SURG0015',0,1.00,11700,11700,'P',0,0,11700.00,0.00,0.00,11700.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,17,0,'2025-10-10','19:01:00','WPRC0086',0,2.00,200,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,18,0,'2025-10-10','19:04:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,19,0,'2025-10-10','19:05:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,20,0,'2025-10-11','14:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,21,0,'2025-10-11','14:30:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,22,0,'2025-10-11','14:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,23,0,'2025-10-11','14:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,24,0,'2025-10-11','14:30:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,25,0,'2025-10-11','19:04:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,26,0,'2025-10-11','19:05:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,27,0,'2025-10-11','19:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,28,0,'2025-10-12','14:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,29,0,'2025-10-12','14:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,30,0,'2025-10-12','14:30:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,31,0,'2025-10-12','14:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,32,0,'2025-10-12','14:30:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,33,0,'2025-10-12','19:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,34,0,'2025-10-12','19:05:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,35,0,'2025-10-13','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,36,0,'2025-10-13','14:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,37,0,'2025-10-13','14:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,38,0,'2025-10-13','14:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,39,0,'2025-10-13','14:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,40,0,'2025-10-13','17:56:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,41,0,'2025-10-13','17:57:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,42,0,'2025-10-13','17:57:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,43,0,'2025-10-14','14:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,44,0,'2025-10-14','14:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,45,0,'2025-10-14','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,46,0,'2025-10-14','14:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,47,0,'2025-10-14','14:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,48,0,'2025-10-14','17:56:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,49,0,'2025-10-15','14:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,50,0,'2025-10-15','14:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,51,0,'2025-10-15','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,52,0,'2025-10-15','14:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,53,0,'2025-10-15','14:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,54,0,'2025-10-15','17:57:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,55,0,'2025-10-15','17:58:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,56,0,'2025-10-15','18:39:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,57,0,'2025-10-16','18:37:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,58,0,'2025-10-16','18:37:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,59,0,'2025-10-16','19:52:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',44,60,0,'2025-10-16','19:52:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-10-16 20:02:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',45,1,0,'2025-10-15','13:23:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-17 11:46:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',45,2,0,'2025-10-15','13:23:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-17 11:46:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',45,3,0,'2025-10-15','13:23:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-17 11:46:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',45,4,0,'2025-10-15','13:23:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-17 11:46:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',45,5,0,'2025-10-15','13:23:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-17 11:46:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',45,6,0,'2025-10-15','13:23:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-10-17 11:46:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',45,7,0,'2025-10-15','13:25:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-17 11:46:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',45,8,0,'2025-10-16','13:23:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-17 11:46:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',45,9,0,'2025-10-16','13:23:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-17 11:46:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',45,10,0,'2025-10-16','13:23:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-17 11:46:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',45,11,0,'2025-10-16','13:23:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-10-17 11:46:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',45,12,0,'2025-10-16','13:23:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-10-17 11:46:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',45,13,0,'2025-10-17','13:23:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-10-17 11:46:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',46,1,0,'2025-10-04','18:00:00','REG0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,2,0,'2025-10-04','18:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,3,0,'2025-10-04','18:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,8,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,4,0,'2025-10-04','18:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,5,0,'2025-10-04','18:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,8,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,6,0,'2025-10-04','18:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,7,0,'2025-10-05','18:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,8,0,'2025-10-05','18:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,8,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,9,0,'2025-10-05','18:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,10,0,'2025-10-05','18:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,8,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,11,0,'2025-10-05','18:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,12,0,'2025-10-06','18:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,13,0,'2025-10-06','18:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,8,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,14,0,'2025-10-06','18:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,8,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,15,0,'2025-10-06','18:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,16,0,'2025-10-06','18:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,17,0,'2025-10-07','18:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,18,0,'2025-10-07','18:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,8,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,19,0,'2025-10-07','18:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,20,0,'2025-10-07','18:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,21,0,'2025-10-07','18:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,8,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,22,0,'2025-10-08','18:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,23,0,'2025-10-08','18:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,8,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,24,0,'2025-10-08','18:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,25,0,'2025-10-08','18:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,8,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,26,0,'2025-10-08','18:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,27,0,'2025-10-09','18:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,8,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,28,0,'2025-10-09','18:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,29,0,'2025-10-09','18:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,30,0,'2025-10-09','18:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',46,31,0,'2025-10-09','18:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,8,0,'',0,'','','','','','vishal','2025-10-17 16:46:10','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,1,0,'2025-10-17','00:00:00','REG0001',0,-1.00,200,-200,'A',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,2,0,'2025-10-17','00:00:00','ROOM0009',0,-1.00,5500,-5500,'A',0,0,-5500.00,0.00,0.00,-5500.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,3,0,'2025-10-17','00:00:00','DRC0019',0,-1.00,1600,-1600,'A',0,0,-1600.00,0.00,0.00,-1600.00,'',0,8,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,4,0,'2025-10-17','00:00:00','AECO0008',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,5,0,'2025-10-17','00:00:00','DRC0018',0,-1.00,1600,-1600,'A',0,0,-1600.00,0.00,0.00,-1600.00,'',0,8,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,6,0,'2025-10-17','00:00:00','CARE0001',0,-1.00,600,-600,'A',0,0,-600.00,0.00,0.00,-600.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,7,0,'2025-10-17','00:00:00','ROOM0009',0,-1.00,5500,-5500,'A',0,0,-5500.00,0.00,0.00,-5500.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,8,0,'2025-10-17','00:00:00','DRC0019',0,-1.00,1600,-1600,'A',0,0,-1600.00,0.00,0.00,-1600.00,'',0,8,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,9,0,'2025-10-17','00:00:00','AECO0008',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,10,0,'2025-10-17','00:00:00','DRC0018',0,-1.00,1600,-1600,'A',0,0,-1600.00,0.00,0.00,-1600.00,'',0,8,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,11,0,'2025-10-17','00:00:00','CARE0001',0,-1.00,600,-600,'A',0,0,-600.00,0.00,0.00,-600.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,12,0,'2025-10-17','00:00:00','CARE0001',0,-1.00,600,-600,'A',0,0,-600.00,0.00,0.00,-600.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,13,0,'2025-10-17','00:00:00','DRC0019',0,-1.00,1600,-1600,'A',0,0,-1600.00,0.00,0.00,-1600.00,'',0,8,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,14,0,'2025-10-17','00:00:00','DRC0018',0,-1.00,1600,-1600,'A',0,0,-1600.00,0.00,0.00,-1600.00,'',0,8,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,15,0,'2025-10-17','00:00:00','ROOM0009',0,-1.00,5500,-5500,'A',0,0,-5500.00,0.00,0.00,-5500.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,16,0,'2025-10-17','00:00:00','AECO0008',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,17,0,'2025-10-17','00:00:00','CARE0001',0,-1.00,600,-600,'A',0,0,-600.00,0.00,0.00,-600.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,18,0,'2025-10-17','00:00:00','DRC0019',0,-1.00,1600,-1600,'A',0,0,-1600.00,0.00,0.00,-1600.00,'',0,8,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,19,0,'2025-10-17','00:00:00','AECO0008',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,20,0,'2025-10-17','00:00:00','ROOM0009',0,-1.00,5500,-5500,'A',0,0,-5500.00,0.00,0.00,-5500.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,21,0,'2025-10-17','00:00:00','DRC0018',0,-1.00,1600,-1600,'A',0,0,-1600.00,0.00,0.00,-1600.00,'',0,8,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,22,0,'2025-10-17','00:00:00','AECO0008',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,23,0,'2025-10-17','00:00:00','DRC0019',0,-1.00,1600,-1600,'A',0,0,-1600.00,0.00,0.00,-1600.00,'',0,8,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,24,0,'2025-10-17','00:00:00','ROOM0009',0,-1.00,5500,-5500,'A',0,0,-5500.00,0.00,0.00,-5500.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,25,0,'2025-10-17','00:00:00','DRC0018',0,-1.00,1600,-1600,'A',0,0,-1600.00,0.00,0.00,-1600.00,'',0,8,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,26,0,'2025-10-17','00:00:00','CARE0001',0,-1.00,600,-600,'A',0,0,-600.00,0.00,0.00,-600.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,27,0,'2025-10-17','00:00:00','DRC0018',0,-1.00,1600,-1600,'A',0,0,-1600.00,0.00,0.00,-1600.00,'',0,8,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,28,0,'2025-10-17','00:00:00','ROOM0009',0,-1.00,5500,-5500,'A',0,0,-5500.00,0.00,0.00,-5500.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,29,0,'2025-10-17','00:00:00','CARE0001',0,-1.00,600,-600,'A',0,0,-600.00,0.00,0.00,-600.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,30,0,'2025-10-17','00:00:00','AECO0008',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',47,31,0,'2025-10-17','00:00:00','DRC0019',0,-1.00,1600,-1600,'A',0,0,-1600.00,0.00,0.00,-1600.00,'',0,8,0,'',0,'','','','Y','N','vishal','2025-10-17 16:47:14','vishal','2025-10-17 16:47:14',0),(0,0,'2526','H','I',48,1,0,'2025-10-16','17:50:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',48,2,0,'2025-10-16','17:51:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',48,3,0,'2025-10-16','21:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',48,4,0,'2025-10-16','21:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',48,5,0,'2025-10-16','21:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',48,6,0,'2025-10-16','21:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',48,7,0,'2025-10-16','21:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',48,8,0,'2025-10-17','17:50:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',48,9,0,'2025-10-17','17:51:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',48,10,0,'2025-10-17','17:51:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,2,0,'',0,'','','','','','riya','2025-10-18 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',48,11,0,'2025-10-17','21:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',48,12,0,'2025-10-17','21:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',48,13,0,'2025-10-17','21:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,5,0,'',0,'','','','','','riya','2025-10-18 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',48,14,0,'2025-10-17','21:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,5,0,'',0,'','','','','','riya','2025-10-18 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',48,15,0,'2025-10-17','21:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',48,16,0,'2025-10-18','12:23:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',48,17,0,'2025-10-18','12:24:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','riya','2025-10-18 13:04:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,1,0,'2025-10-15','17:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,2,0,'2025-10-15','17:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,3,0,'2025-10-15','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,4,0,'2025-10-15','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,5,0,'2025-10-15','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,6,0,'2025-10-15','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,7,0,'2025-10-15','20:28:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,8,0,'2025-10-15','20:28:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,9,0,'2025-10-15','20:28:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,10,0,'2025-10-15','20:29:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,11,0,'2025-10-16','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,12,0,'2025-10-16','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,13,0,'2025-10-16','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,14,0,'2025-10-16','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,15,0,'2025-10-16','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,16,0,'2025-10-16','20:28:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,17,0,'2025-10-16','20:29:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,18,0,'2025-10-16','20:29:00','WPRC0089',0,8.00,100,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,19,0,'2025-10-17','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,20,0,'2025-10-17','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,21,0,'2025-10-17','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,22,0,'2025-10-17','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,23,0,'2025-10-17','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,24,0,'2025-10-17','18:25:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,25,0,'2025-10-17','18:26:00','WPRC0089',0,8.00,100,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,26,0,'2025-10-17','18:26:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,27,0,'2025-10-18','11:17:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,28,0,'2025-10-18','11:17:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,29,0,'2025-10-18','11:19:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',49,30,0,'2025-10-18','11:19:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:15:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,1,0,'2025-10-09','14:22:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,2,0,'2025-10-09','14:22:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,3,0,'2025-10-09','14:23:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,4,0,'2025-10-09','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,5,0,'2025-10-09','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,6,0,'2025-10-09','15:09:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,7,0,'2025-10-09','15:09:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,8,0,'2025-10-10','14:36:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,9,0,'2025-10-10','15:05:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,10,0,'2025-10-10','15:05:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,11,0,'2025-10-10','15:06:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,12,0,'2025-10-10','15:06:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,13,0,'2025-10-10','15:08:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,14,0,'2025-10-10','15:09:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,15,0,'2025-10-10','15:10:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,16,0,'2025-10-10','15:10:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,17,0,'2025-10-10','15:11:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,18,0,'2025-10-10','15:11:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,19,0,'2025-10-10','15:12:00','WPRC0091',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,20,0,'2025-10-10','15:14:00','WPRC0092',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,39,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,21,0,'2025-10-10','15:18:00','SURG0014',0,1.00,70000,70000,'P',0,0,70000.00,0.00,0.00,70000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,22,0,'2025-10-10','15:18:00','SURG0015',0,1.00,17500,17500,'P',0,0,17500.00,0.00,0.00,17500.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,23,0,'2025-10-10','23:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,24,0,'2025-10-10','23:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,25,0,'2025-10-10','23:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,26,0,'2025-10-11','14:36:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,27,0,'2025-10-11','14:45:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,28,0,'2025-10-11','15:06:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,29,0,'2025-10-11','15:06:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,30,0,'2025-10-11','15:08:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,31,0,'2025-10-11','15:08:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,32,0,'2025-10-11','15:16:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,33,0,'2025-10-11','15:16:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,34,0,'2025-10-11','15:17:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,35,0,'2025-10-11','23:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,36,0,'2025-10-11','23:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,37,0,'2025-10-11','23:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,38,0,'2025-10-11','23:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,39,0,'2025-10-11','23:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,36,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,40,0,'2025-10-12','11:31:00','WPRC0077',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,41,0,'2025-10-12','14:36:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,42,0,'2025-10-12','14:45:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,43,0,'2025-10-12','15:06:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,44,0,'2025-10-12','15:06:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,45,0,'2025-10-12','15:08:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,46,0,'2025-10-12','15:08:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,47,0,'2025-10-12','15:17:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,48,0,'2025-10-12','23:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,49,0,'2025-10-12','23:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,50,0,'2025-10-12','23:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,51,0,'2025-10-12','23:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,52,0,'2025-10-12','23:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,53,0,'2025-10-13','10:54:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,54,0,'2025-10-13','10:54:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,55,0,'2025-10-13','10:56:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,56,0,'2025-10-13','10:56:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,57,0,'2025-10-13','11:31:00','WPRC0077',0,3.00,500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,58,0,'2025-10-13','14:36:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,59,0,'2025-10-13','14:46:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,60,0,'2025-10-13','14:46:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,61,0,'2025-10-13','23:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,62,0,'2025-10-13','23:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,63,0,'2025-10-13','23:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,64,0,'2025-10-13','23:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,65,0,'2025-10-13','23:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,66,0,'2025-10-14','11:32:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,67,0,'2025-10-14','11:32:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,68,0,'2025-10-14','11:33:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,69,0,'2025-10-14','11:50:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,70,0,'2025-10-14','11:50:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,71,0,'2025-10-14','14:26:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,72,0,'2025-10-14','14:27:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,73,0,'2025-10-14','14:27:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,74,0,'2025-10-14','14:36:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,75,0,'2025-10-14','14:46:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,76,0,'2025-10-14','14:46:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,77,0,'2025-10-14','18:01:00','WPRC0077',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,78,0,'2025-10-14','23:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,79,0,'2025-10-14','23:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,80,0,'2025-10-15','18:00:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,81,0,'2025-10-15','18:01:00','WPRC0077',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,82,0,'2025-10-15','18:05:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,83,0,'2025-10-15','18:05:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,84,0,'2025-10-15','23:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,85,0,'2025-10-15','23:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,86,0,'2025-10-15','23:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,87,0,'2025-10-15','23:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,88,0,'2025-10-15','23:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,89,0,'2025-10-16','20:17:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,90,0,'2025-10-16','20:17:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,91,0,'2025-10-16','20:17:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,92,0,'2025-10-16','20:17:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,93,0,'2025-10-16','23:00:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,94,0,'2025-10-16','23:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,95,0,'2025-10-16','23:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,96,0,'2025-10-16','23:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,97,0,'2025-10-16','23:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,98,0,'2025-10-17','14:30:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,99,0,'2025-10-17','14:31:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,100,0,'2025-10-17','14:31:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,101,0,'2025-10-17','14:34:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,102,0,'2025-10-17','23:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,103,0,'2025-10-17','23:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,104,0,'2025-10-17','23:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,105,0,'2025-10-17','23:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,106,0,'2025-10-17','23:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',50,107,0,'2025-10-18','11:34:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:42:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,1,0,'2025-10-09','15:47:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,2,0,'2025-10-09','15:47:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,3,0,'2025-10-09','16:06:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,4,0,'2025-10-09','16:08:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,5,0,'2025-10-09','16:09:00','ROOM0008',0,7.00,100,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,6,0,'2025-10-09','16:09:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,7,0,'2025-10-09','16:09:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,8,0,'2025-10-09','16:09:00','WPRC0093',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,9,0,'2025-10-09','16:23:00','SURG0014',0,1.00,15000,15000,'P',0,0,15000.00,0.00,0.00,15000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,10,0,'2025-10-09','16:23:00','SURG0015',0,1.00,3750,3750,'P',0,0,3750.00,0.00,0.00,3750.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,11,0,'2025-10-09','18:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,12,0,'2025-10-09','18:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,13,0,'2025-10-09','18:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,14,0,'2025-10-09','18:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,15,0,'2025-10-10','16:07:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,16,0,'2025-10-10','16:08:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,17,0,'2025-10-10','16:10:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,18,0,'2025-10-10','16:10:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,19,0,'2025-10-10','16:11:00','WPRC0093',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,20,0,'2025-10-10','16:12:00','WPRC0092',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,39,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,21,0,'2025-10-10','18:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,22,0,'2025-10-10','18:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,23,0,'2025-10-10','18:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,24,0,'2025-10-10','18:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,25,0,'2025-10-10','18:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,26,0,'2025-10-11','16:07:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,27,0,'2025-10-11','16:07:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,28,0,'2025-10-11','16:08:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,29,0,'2025-10-11','16:08:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,30,0,'2025-10-11','16:08:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,31,0,'2025-10-11','16:09:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,32,0,'2025-10-11','16:12:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,33,0,'2025-10-11','16:12:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,34,0,'2025-10-11','16:18:00','WPRC0095',0,1.00,2800,2800,'P',0,0,2800.00,0.00,0.00,2800.00,'',0,40,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,35,0,'2025-10-11','18:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,36,0,'2025-10-11','18:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,37,0,'2025-10-11','18:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,38,0,'2025-10-11','18:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,39,0,'2025-10-11','18:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,40,0,'2025-10-12','11:20:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,41,0,'2025-10-12','12:16:00','WPRC0093',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,42,0,'2025-10-12','12:16:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,43,0,'2025-10-12','12:18:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,44,0,'2025-10-12','16:07:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,45,0,'2025-10-12','16:09:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,46,0,'2025-10-12','16:18:00','ROOM0008',0,6.00,100,600,'A',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,47,0,'2025-10-12','18:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,48,0,'2025-10-12','18:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,49,0,'2025-10-12','18:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,50,0,'2025-10-12','18:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,51,0,'2025-10-12','18:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,52,0,'2025-10-13','11:20:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,53,0,'2025-10-13','11:22:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,38,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,54,0,'2025-10-13','12:16:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,55,0,'2025-10-13','12:16:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,56,0,'2025-10-13','12:17:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,57,0,'2025-10-13','12:17:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,58,0,'2025-10-13','12:18:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,59,0,'2025-10-13','18:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,60,0,'2025-10-13','18:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,61,0,'2025-10-13','18:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,62,0,'2025-10-13','18:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,63,0,'2025-10-13','18:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,64,0,'2025-10-13','20:00:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,65,0,'2025-10-14','11:00:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,66,0,'2025-10-14','11:21:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,67,0,'2025-10-14','11:21:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,68,0,'2025-10-14','11:23:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,69,0,'2025-10-14','11:23:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,70,0,'2025-10-14','11:24:00','ROOM0004',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,71,0,'2025-10-14','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'310',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,72,0,'2025-10-14','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'310',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,73,0,'2025-10-14','18:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,74,0,'2025-10-14','18:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,75,0,'2025-10-14','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'310',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,76,0,'2025-10-14','19:23:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,77,0,'2025-10-14','19:59:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,78,0,'2025-10-15','18:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,79,0,'2025-10-15','18:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,80,0,'2025-10-15','18:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,81,0,'2025-10-15','18:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,82,0,'2025-10-15','18:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,83,0,'2025-10-15','19:23:00','ROOM0008',0,7.00,100,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,84,0,'2025-10-15','19:24:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,85,0,'2025-10-15','19:24:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,86,0,'2025-10-15','19:25:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,87,0,'2025-10-15','19:29:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,88,0,'2025-10-15','19:30:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,89,0,'2025-10-15','20:00:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,90,0,'2025-10-15','20:01:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,91,0,'2025-10-16','10:50:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,92,0,'2025-10-16','12:09:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,93,0,'2025-10-16','17:30:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,94,0,'2025-10-16','17:30:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,95,0,'2025-10-16','18:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,96,0,'2025-10-16','18:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,97,0,'2025-10-16','18:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,98,0,'2025-10-16','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,99,0,'2025-10-16','21:12:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,100,0,'2025-10-16','21:13:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,101,0,'2025-10-16','21:13:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,102,0,'2025-10-16','21:14:00','ROOM0008',0,9.00,100,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,103,0,'2025-10-17','17:28:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,104,0,'2025-10-17','17:29:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,105,0,'2025-10-17','17:30:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,106,0,'2025-10-17','17:30:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,107,0,'2025-10-17','17:31:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,108,0,'2025-10-17','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,109,0,'2025-10-17','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,110,0,'2025-10-17','18:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,111,0,'2025-10-17','18:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,112,0,'2025-10-17','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,113,0,'2025-10-18','11:01:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,114,0,'2025-10-18','11:05:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,115,0,'2025-10-18','12:30:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',51,116,0,'2025-10-18','13:26:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 13:55:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,1,0,'2025-10-15','18:11:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,5,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,2,0,'2025-10-15','18:11:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,3,0,'2025-10-15','18:11:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,4,0,'2025-10-15','18:12:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,5,0,'2025-10-15','22:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,6,0,'2025-10-15','22:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,7,0,'2025-10-15','22:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,8,0,'2025-10-15','22:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,9,0,'2025-10-15','22:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,10,0,'2025-10-16','18:13:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,11,0,'2025-10-16','18:13:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,12,0,'2025-10-16','18:14:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,13,0,'2025-10-16','18:14:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,14,0,'2025-10-16','18:16:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,15,0,'2025-10-16','22:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,16,0,'2025-10-16','22:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,17,0,'2025-10-16','22:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,18,0,'2025-10-16','22:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,19,0,'2025-10-16','22:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,20,0,'2025-10-17','14:09:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,21,0,'2025-10-17','14:09:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,22,0,'2025-10-17','18:14:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,23,0,'2025-10-17','18:15:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,24,0,'2025-10-17','18:15:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,25,0,'2025-10-17','22:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,26,0,'2025-10-17','22:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,27,0,'2025-10-17','22:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,28,0,'2025-10-17','22:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,29,0,'2025-10-17','22:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,30,0,'2025-10-18','10:25:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,31,0,'2025-10-18','14:08:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,32,0,'2025-10-18','14:08:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,33,0,'2025-10-18','14:08:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,34,0,'2025-10-18','14:09:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,35,0,'2025-10-18','14:09:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',52,36,0,'2025-10-18','14:10:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','riya','2025-10-18 14:25:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',53,1,0,'2025-10-17','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 16:10:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',53,2,0,'2025-10-17','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 16:10:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',53,3,0,'2025-10-17','13:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-18 16:10:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',53,4,0,'2025-10-17','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-18 16:10:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',53,5,0,'2025-10-17','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-18 16:10:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',53,6,0,'2025-10-17','13:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','riya','2025-10-18 16:10:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',53,7,0,'2025-10-17','15:57:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 16:10:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',53,8,0,'2025-10-17','15:58:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 16:10:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',53,9,0,'2025-10-17','16:01:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-10-18 16:10:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',53,10,0,'2025-10-18','13:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','riya','2025-10-18 16:10:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,1,0,'2025-10-16','13:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,2,0,'2025-10-16','13:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,3,0,'2025-10-16','13:50:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,4,0,'2025-10-16','13:50:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,5,0,'2025-10-16','13:50:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,6,0,'2025-10-16','13:50:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,7,0,'2025-10-16','18:28:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,8,0,'2025-10-16','18:28:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,9,0,'2025-10-16','18:29:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,10,0,'2025-10-17','13:50:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,11,0,'2025-10-17','13:50:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,12,0,'2025-10-17','13:50:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,13,0,'2025-10-17','13:50:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,14,0,'2025-10-17','13:50:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,15,0,'2025-10-17','18:29:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,16,0,'2025-10-17','18:29:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,17,0,'2025-10-18','13:50:00','ROOM0009',0,0.50,5500,2750,'A',0,0,2750.00,0.00,0.00,2750.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,18,0,'2025-10-18','13:50:00','AECO0008',0,0.50,800,400,'A',0,0,400.00,0.00,0.00,400.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,19,0,'2025-10-18','13:50:00','CARE0001',0,0.50,600,300,'A',0,0,300.00,0.00,0.00,300.00,'207',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,20,0,'2025-10-18','13:50:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,21,0,'2025-10-18','16:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,22,0,'2025-10-18','16:07:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',54,23,0,'2025-10-18','16:51:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','riya','2025-10-18 17:51:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',55,1,0,'2025-10-18','12:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 19:13:54','vishal','2025-10-19 13:23:20',0),(0,0,'2526','H','I',55,2,0,'2025-10-18','12:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 19:13:54','vishal','2025-10-19 13:23:20',0),(0,0,'2526','H','I',55,3,0,'2025-10-18','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,3,0,'',0,'','','','','','riya','2025-10-18 19:13:54','vishal','2025-10-19 13:23:20',0),(0,0,'2526','H','I',55,4,0,'2025-10-18','18:13:00','CARE0007',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 19:13:54','vishal','2025-10-19 13:23:20',0),(0,0,'2526','H','I',55,5,0,'2025-10-18','18:14:00','SURG0015',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 19:13:54','vishal','2025-10-19 13:23:20',0),(0,0,'2526','H','I',55,6,0,'2025-10-18','18:15:00','SURG0014',0,1.00,2660,2660,'P',0,0,2660.00,0.00,0.00,2660.00,'',0,3,0,'',0,'','','','','','riya','2025-10-18 19:13:54','vishal','2025-10-19 13:23:20',0),(0,0,'2526','H','I',56,1,0,'2025-10-18','20:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 22:04:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',56,2,0,'2025-10-18','20:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 22:04:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',56,3,0,'2025-10-18','21:59:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,8,0,'',0,'','','','','','riya','2025-10-18 22:04:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',56,4,0,'2025-10-18','21:59:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 22:04:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',56,5,0,'2025-10-18','21:59:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 22:04:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',56,6,0,'2025-10-18','22:00:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 22:04:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',56,7,0,'2025-10-18','22:00:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-18 22:04:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',57,1,0,'2025-10-18','11:01:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:26:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',57,2,0,'2025-10-18','11:01:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:26:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',57,3,0,'2025-10-18','11:20:00','SURG0015',0,1.00,4400,4400,'P',0,0,4400.00,0.00,0.00,4400.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-19 11:26:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',57,4,0,'2025-10-18','17:27:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:26:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',57,5,0,'2025-10-18','17:27:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:26:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',57,6,0,'2025-10-18','17:27:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:26:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',57,7,0,'2025-10-18','17:27:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:26:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',57,8,0,'2025-10-18','17:27:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:26:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',57,9,0,'2025-10-18','17:27:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,6,0,'',0,'','','','','','vishal','2025-10-19 11:26:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',57,10,0,'2025-10-19','11:00:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-19 11:26:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',57,11,0,'2025-10-19','11:15:00','WPRC0099',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 11:26:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',57,12,0,'2025-10-19','11:20:00','SURG0014',0,1.00,13500,13500,'P',0,0,13500.00,0.00,0.00,13500.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-19 11:26:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',57,13,0,'2025-10-19','17:27:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,6,0,'',0,'','','','','','vishal','2025-10-19 11:26:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',58,1,0,'2025-10-18','11:44:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 12:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',58,2,0,'2025-10-18','11:45:00','SURG0014',0,1.00,38800,38800,'P',0,0,38800.00,0.00,0.00,38800.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-19 12:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',58,3,0,'2025-10-18','11:45:00','SURG0015',0,1.00,13000,13000,'P',0,0,13000.00,0.00,0.00,13000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-19 12:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',58,4,0,'2025-10-18','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 12:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',58,5,0,'2025-10-18','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 12:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',58,6,0,'2025-10-18','15:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-19 12:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',58,7,0,'2025-10-18','15:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-19 12:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',58,8,0,'2025-10-18','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-19 12:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',58,9,0,'2025-10-18','15:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-10-19 12:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',58,10,0,'2025-10-19','11:44:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-19 12:16:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',59,1,0,'2025-10-19','00:00:00','REG0001',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-19 13:23:20','vishal','2025-10-19 13:23:20',0),(0,0,'2526','H','I',59,2,0,'2025-10-19','00:00:00','REG0002',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-19 13:23:20','vishal','2025-10-19 13:23:20',0),(0,0,'2526','H','I',59,3,0,'2025-10-19','00:00:00','DRC0019',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,3,0,'',0,'','','','Y','N','vishal','2025-10-19 13:23:20','vishal','2025-10-19 13:23:20',0),(0,0,'2526','H','I',59,4,0,'2025-10-19','00:00:00','CARE0007',0,-1.00,2500,-2500,'P',0,0,-2500.00,0.00,0.00,-2500.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-10-19 13:23:20','vishal','2025-10-19 13:23:20',0),(0,0,'2526','H','I',59,5,0,'2025-10-19','00:00:00','SURG0015',0,-1.00,900,-900,'P',0,0,-900.00,0.00,0.00,-900.00,'',0,3,0,'',0,'','','','Y','N','vishal','2025-10-19 13:23:20','vishal','2025-10-19 13:23:20',0),(0,0,'2526','H','I',59,6,0,'2025-10-19','00:00:00','SURG0014',0,-1.00,2660,-2660,'P',0,0,-2660.00,0.00,0.00,-2660.00,'',0,3,0,'',0,'','','','Y','N','vishal','2025-10-19 13:23:20','vishal','2025-10-19 13:23:20',0),(0,0,'2526','H','I',60,1,0,'2025-10-18','12:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 13:49:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',60,2,0,'2025-10-18','12:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 13:49:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',60,3,0,'2025-10-18','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,3,0,'',0,'','','','','','vishal','2025-10-19 13:49:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',60,4,0,'2025-10-18','18:13:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-19 13:49:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',60,5,0,'2025-10-18','18:14:00','SURG0015',0,1.00,1060,1060,'P',0,0,1060.00,0.00,0.00,1060.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-19 13:49:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',60,6,0,'2025-10-18','18:15:00','SURG0014',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-19 13:49:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,1,0,'2025-10-18','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,2,0,'2025-10-18','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,3,0,'2025-10-18','09:30:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'409',0,70,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,4,0,'2025-10-18','11:27:00','SURG0017',0,1.00,30000,30000,'P',0,0,30000.00,0.00,0.00,30000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,5,0,'2025-10-18','11:28:00','SURG0015',0,1.00,15000,15000,'P',0,0,15000.00,0.00,0.00,15000.00,'',0,70,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,6,0,'2025-10-18','11:31:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,7,0,'2025-10-18','11:31:00','ROOM0001',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,8,0,'2025-10-18','11:31:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,9,0,'2025-10-18','11:32:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,10,0,'2025-10-18','11:33:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,11,0,'2025-10-18','11:33:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,70,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,12,0,'2025-10-18','11:34:00','WPRC0086',0,4.00,200,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,13,0,'2025-10-18','11:34:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,14,0,'2025-10-18','11:50:00','SURG0014',0,1.00,30000,30000,'P',0,0,30000.00,0.00,0.00,30000.00,'',0,70,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,15,0,'2025-10-19','09:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'409',0,70,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,16,0,'2025-10-19','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,17,0,'2025-10-19','09:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,18,0,'2025-10-19','09:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,19,0,'2025-10-19','11:33:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,20,0,'2025-10-20','09:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'409',0,70,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',61,21,0,'2025-10-20','11:23:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 12:20:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,1,0,'2025-10-15','10:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,2,0,'2025-10-15','10:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,3,0,'2025-10-15','10:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,4,0,'2025-10-15','10:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,5,0,'2025-10-15','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,6,0,'2025-10-16','10:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,7,0,'2025-10-16','10:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,8,0,'2025-10-16','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,9,0,'2025-10-16','10:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,10,0,'2025-10-16','10:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,11,0,'2025-10-16','18:04:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,12,0,'2025-10-16','18:31:00','WPRC0100',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,13,0,'2025-10-17','10:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,14,0,'2025-10-17','10:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,15,0,'2025-10-17','10:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,16,0,'2025-10-17','10:30:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,17,0,'2025-10-17','10:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,18,0,'2025-10-17','17:57:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,19,0,'2025-10-17','18:05:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,20,0,'2025-10-18','10:11:00','XRY0045',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,21,0,'2025-10-18','18:30:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,22,0,'2025-10-18','18:30:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,8,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,23,0,'2025-10-18','18:33:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,24,0,'2025-10-18','22:30:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,25,0,'2025-10-18','22:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,26,0,'2025-10-18','22:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,27,0,'2025-10-18','22:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,28,0,'2025-10-19','11:35:00','WPRC0102',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,29,0,'2025-10-19','18:34:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,30,0,'2025-10-19','22:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,31,0,'2025-10-19','22:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,32,0,'2025-10-19','22:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,33,0,'2025-10-19','22:30:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,34,0,'2025-10-19','22:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,35,0,'2025-10-20','11:34:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',62,36,0,'2025-10-20','11:34:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-20 13:24:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',63,1,0,'2025-10-20','05:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-21 15:20:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',63,2,0,'2025-10-20','05:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-21 15:20:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',63,3,0,'2025-10-20','05:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-21 15:20:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',63,4,0,'2025-10-20','05:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-21 15:20:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',63,5,0,'2025-10-20','05:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-10-21 15:20:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',63,6,0,'2025-10-20','15:11:00','ROOM0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-21 15:20:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',63,7,0,'2025-10-20','15:12:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-21 15:20:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',63,8,0,'2025-10-21','05:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','vishal','2025-10-21 15:20:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',63,9,0,'2025-10-21','15:12:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-21 15:20:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,1,0,'2025-10-17','14:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,2,0,'2025-10-17','14:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,3,0,'2025-10-17','14:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,4,0,'2025-10-17','14:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,5,0,'2025-10-17','14:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,6,0,'2025-10-17','14:00:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'409',0,8,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,7,0,'2025-10-17','18:15:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,8,0,'2025-10-18','14:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,9,0,'2025-10-18','14:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,10,0,'2025-10-18','14:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'410',0,8,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,11,0,'2025-10-18','14:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'410',0,8,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,12,0,'2025-10-18','14:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,13,0,'2025-10-18','18:15:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,14,0,'2025-10-19','14:00:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,15,0,'2025-10-19','14:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,16,0,'2025-10-19','14:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'410',0,8,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,17,0,'2025-10-19','14:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'410',0,8,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,18,0,'2025-10-19','14:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,19,0,'2025-10-19','18:16:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,20,0,'2025-10-20','10:56:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,21,0,'2025-10-20','10:57:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,22,0,'2025-10-20','14:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,23,0,'2025-10-20','14:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'410',0,8,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,24,0,'2025-10-20','14:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,25,0,'2025-10-20','14:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,26,0,'2025-10-21','10:56:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,27,0,'2025-10-21','10:57:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,28,0,'2025-10-21','14:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,29,0,'2025-10-21','14:00:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,30,0,'2025-10-21','14:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,31,0,'2025-10-21','14:00:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'410',0,8,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,32,0,'2025-10-22','10:56:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,8,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',64,33,0,'2025-10-22','10:57:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 12:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,1,0,'2025-10-17','13:04:00','ROOM0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,2,0,'2025-10-17','18:10:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,3,0,'2025-10-17','20:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,4,0,'2025-10-17','20:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,5,0,'2025-10-17','20:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,6,0,'2025-10-17','20:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,7,0,'2025-10-17','20:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,8,0,'2025-10-18','18:12:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,8,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,9,0,'2025-10-18','20:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,10,0,'2025-10-18','20:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,11,0,'2025-10-18','20:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,12,0,'2025-10-18','20:50:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,13,0,'2025-10-19','20:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,14,0,'2025-10-19','20:50:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,15,0,'2025-10-19','20:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,16,0,'2025-10-19','20:50:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,17,0,'2025-10-19','20:50:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,18,0,'2025-10-20','20:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,19,0,'2025-10-20','20:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,20,0,'2025-10-20','20:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,21,0,'2025-10-20','20:50:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,22,0,'2025-10-20','20:50:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,23,0,'2025-10-21','20:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,24,0,'2025-10-21','20:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,25,0,'2025-10-21','20:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,26,0,'2025-10-21','20:50:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,27,0,'2025-10-21','20:50:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',65,28,0,'2025-10-22','13:10:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,8,0,'',0,'','','','','','vishal','2025-10-22 13:32:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,1,0,'2025-10-19','02:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,2,0,'2025-10-19','02:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,3,0,'2025-10-19','02:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,4,0,'2025-10-19','02:30:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'207',0,78,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,5,0,'2025-10-19','02:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,6,0,'2025-10-19','02:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,7,0,'2025-10-19','02:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,8,0,'2025-10-19','08:28:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,9,0,'2025-10-19','11:48:00','WPRC0090',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,10,0,'2025-10-19','14:25:00','ROOM0008',0,5.00,100,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,11,0,'2025-10-19','14:25:00','WPRC0103',0,1.00,5000,5000,'A',0,0,5000.00,0.00,0.00,5000.00,'',0,78,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,12,0,'2025-10-19','14:26:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,13,0,'2025-10-19','14:26:00','WPRC0104',0,1.00,6000,6000,'A',0,0,6000.00,0.00,0.00,6000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,14,0,'2025-10-19','14:27:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,15,0,'2025-10-19','14:28:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,16,0,'2025-10-20','02:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,17,0,'2025-10-20','02:30:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,18,0,'2025-10-20','02:30:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,19,0,'2025-10-20','02:30:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,20,0,'2025-10-20','02:30:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,21,0,'2025-10-20','08:21:00','WPRC0104',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,22,0,'2025-10-20','08:28:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,23,0,'2025-10-20','14:27:00','ROOM0008',0,7.00,100,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,24,0,'2025-10-20','14:27:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,25,0,'2025-10-20','14:28:00','WPRC0087',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,26,0,'2025-10-21','02:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,27,0,'2025-10-21','02:30:00','ROOM0009',0,0.50,5500,2750,'P',0,0,2750.00,0.00,0.00,2750.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,28,0,'2025-10-21','02:30:00','AECO0008',0,0.50,800,400,'P',0,0,400.00,0.00,0.00,400.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,29,0,'2025-10-21','02:30:00','CARE0001',0,0.50,600,300,'P',0,0,300.00,0.00,0.00,300.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,30,0,'2025-10-21','08:22:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,31,0,'2025-10-21','08:28:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,32,0,'2025-10-21','12:55:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,33,0,'2025-10-21','12:56:00','WPRC0087',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,34,0,'2025-10-21','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,35,0,'2025-10-21','13:01:00','ROOM0009',0,0.50,3200,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,36,0,'2025-10-21','13:02:00','CARE0005',0,0.50,400,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,37,0,'2025-10-21','13:02:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,38,0,'2025-10-22','02:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,39,0,'2025-10-22','02:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,40,0,'2025-10-22','02:30:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'406',0,8,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,41,0,'2025-10-22','02:30:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'406',0,8,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,42,0,'2025-10-22','02:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,43,0,'2025-10-22','08:20:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,44,0,'2025-10-22','08:23:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,45,0,'2025-10-22','08:24:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,46,0,'2025-10-23','02:30:00','CARE0001',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,47,0,'2025-10-23','02:30:00','AECO0008',0,0.50,400,200,'P',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,48,0,'2025-10-23','02:30:00','ROOM0009',0,0.50,3200,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,49,0,'2025-10-23','08:21:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',66,50,0,'2025-10-23','08:21:00','WPRC0104',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 08:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,1,0,'2025-10-20','08:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,2,0,'2025-10-20','08:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,3,0,'2025-10-20','08:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,4,0,'2025-10-20','08:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,5,0,'2025-10-20','08:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,6,0,'2025-10-20','08:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,7,0,'2025-10-20','08:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,8,0,'2025-10-20','12:39:00','WPRC0101',0,4.00,400,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,9,0,'2025-10-20','12:39:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,10,0,'2025-10-20','12:40:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,11,0,'2025-10-20','12:40:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,12,0,'2025-10-20','12:40:00','ROOM0008',0,9.00,100,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,13,0,'2025-10-20','12:40:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,14,0,'2025-10-20','12:40:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,15,0,'2025-10-20','19:49:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,16,0,'2025-10-20','19:50:00','WPRC0090',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,17,0,'2025-10-21','08:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,18,0,'2025-10-21','12:40:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,19,0,'2025-10-21','12:41:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,20,0,'2025-10-21','12:42:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,21,0,'2025-10-21','12:42:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,22,0,'2025-10-21','12:42:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,23,0,'2025-10-21','12:42:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,24,0,'2025-10-21','19:45:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,25,0,'2025-10-22','08:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,8,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,26,0,'2025-10-22','08:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,8,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,27,0,'2025-10-22','08:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,28,0,'2025-10-22','08:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,29,0,'2025-10-22','08:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,30,0,'2025-10-22','18:07:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,31,0,'2025-10-22','18:08:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,32,0,'2025-10-23','08:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,33,0,'2025-10-23','08:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,8,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,34,0,'2025-10-23','08:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,35,0,'2025-10-23','08:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,8,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,36,0,'2025-10-23','08:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,37,0,'2025-10-23','18:07:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',67,38,0,'2025-10-23','18:08:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-23 20:08:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',68,1,0,'2025-10-23','11:31:00','SURG0014',0,1.00,11000,11000,'P',0,0,11000.00,0.00,0.00,11000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-24 11:44:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',68,2,0,'2025-10-23','11:32:00','SURG0015',0,1.00,3500,3500,'P',0,0,3500.00,0.00,0.00,3500.00,'',0,3,0,'',0,'','','','','','riya','2025-10-24 11:44:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',68,3,0,'2025-10-23','13:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-24 11:44:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',68,4,0,'2025-10-23','13:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-24 11:44:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',68,5,0,'2025-10-23','13:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-24 11:44:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',68,6,0,'2025-10-23','13:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-24 11:44:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',68,7,0,'2025-10-23','13:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-10-24 11:44:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',68,8,0,'2025-10-23','13:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-10-24 11:44:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',68,9,0,'2025-10-24','13:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-10-24 11:44:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',69,1,0,'2025-10-23','11:35:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-24 12:42:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',69,2,0,'2025-10-23','11:35:00','SURG0014',0,1.00,14400,14400,'P',0,0,14400.00,0.00,0.00,14400.00,'',0,3,0,'',0,'','','','','','riya','2025-10-24 12:42:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',69,3,0,'2025-10-23','11:35:00','SURG0015',0,1.00,4800,4800,'P',0,0,4800.00,0.00,0.00,4800.00,'',0,3,0,'',0,'','','','','','riya','2025-10-24 12:42:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',69,4,0,'2025-10-23','13:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-24 12:42:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',69,5,0,'2025-10-23','13:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-24 12:42:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',69,6,0,'2025-10-23','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-24 12:42:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',69,7,0,'2025-10-23','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-24 12:42:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',69,8,0,'2025-10-23','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-24 12:42:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',69,9,0,'2025-10-23','13:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-10-24 12:42:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',69,10,0,'2025-10-24','11:35:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-24 12:42:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',69,11,0,'2025-10-24','13:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-10-24 12:42:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',70,1,0,'2025-10-23','10:19:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:40:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',70,2,0,'2025-10-23','10:19:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:40:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',70,3,0,'2025-10-23','19:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:40:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',70,4,0,'2025-10-23','19:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:40:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',70,5,0,'2025-10-23','19:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:40:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',70,6,0,'2025-10-23','19:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:40:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',70,7,0,'2025-10-23','19:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:40:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',70,8,0,'2025-10-24','10:19:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:40:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',70,9,0,'2025-10-24','10:19:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:40:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',70,10,0,'2025-10-24','10:28:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-10-25 10:40:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',70,11,0,'2025-10-24','10:28:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-10-25 10:40:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',70,12,0,'2025-10-24','19:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:40:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',70,13,0,'2025-10-24','19:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:40:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',70,14,0,'2025-10-24','19:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-10-25 10:40:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',70,15,0,'2025-10-24','19:15:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'406',0,70,0,'',0,'','','','','','riya','2025-10-25 10:40:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',70,16,0,'2025-10-25','10:29:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-10-25 10:40:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',70,17,0,'2025-10-25','19:15:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'408',0,70,0,'',0,'','','','','','riya','2025-10-25 10:40:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',71,1,0,'2025-10-24','12:46:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-25 12:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',71,2,0,'2025-10-24','12:46:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-25 12:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',71,3,0,'2025-10-24','12:47:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-25 12:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',71,4,0,'2025-10-24','14:47:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-25 12:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',71,5,0,'2025-10-24','14:47:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-25 12:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',71,6,0,'2025-10-24','17:53:00','ROOM0006',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-25 12:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',71,7,0,'2025-10-24','23:10:00','DRC0021',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-25 12:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',71,8,0,'2025-10-24','23:11:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,84,0,'',0,'','','','','','vishal','2025-10-25 12:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',71,9,0,'2025-10-25','12:33:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-25 12:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',71,10,0,'2025-10-25','12:33:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-25 12:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',71,11,0,'2025-10-25','12:40:00','CARE0008',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-25 12:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',71,12,0,'2025-10-25','12:41:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-25 12:53:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,1,0,'2025-10-21','13:03:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,2,0,'2025-10-21','13:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,3,0,'2025-10-21','13:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,4,0,'2025-10-21','13:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,5,0,'2025-10-21','13:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,6,0,'2025-10-21','13:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,7,0,'2025-10-21','13:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,8,0,'2025-10-21','17:57:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,9,0,'2025-10-22','13:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,10,0,'2025-10-22','13:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,11,0,'2025-10-22','13:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,12,0,'2025-10-22','13:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,8,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,13,0,'2025-10-22','13:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,8,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,14,0,'2025-10-22','17:57:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,15,0,'2025-10-23','13:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,8,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,16,0,'2025-10-23','13:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,8,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,17,0,'2025-10-23','13:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,18,0,'2025-10-23','13:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,19,0,'2025-10-23','13:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,20,0,'2025-10-23','17:57:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,21,0,'2025-10-24','13:01:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,22,0,'2025-10-24','13:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,23,0,'2025-10-24','13:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,24,0,'2025-10-24','13:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,25,0,'2025-10-24','13:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,8,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,26,0,'2025-10-24','13:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,8,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,27,0,'2025-10-25','13:02:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',72,28,0,'2025-10-25','13:08:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,8,0,'',0,'','','','','','riya','2025-10-25 13:49:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,1,0,'2025-10-17','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,2,0,'2025-10-17','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,3,0,'2025-10-17','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,4,0,'2025-10-17','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,5,0,'2025-10-17','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,6,0,'2025-10-17','15:00:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,7,0,'2025-10-17','18:19:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,8,0,'2025-10-18','15:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,9,0,'2025-10-18','15:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,10,0,'2025-10-18','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,11,0,'2025-10-18','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,12,0,'2025-10-18','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,13,0,'2025-10-18','18:19:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,14,0,'2025-10-19','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,15,0,'2025-10-19','15:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,16,0,'2025-10-19','15:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,17,0,'2025-10-19','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,18,0,'2025-10-19','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,19,0,'2025-10-19','18:19:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,20,0,'2025-10-19','18:20:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,21,0,'2025-10-19','18:20:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,22,0,'2025-10-20','11:51:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,23,0,'2025-10-20','12:00:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,24,0,'2025-10-20','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,25,0,'2025-10-20','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,26,0,'2025-10-20','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,27,0,'2025-10-20','15:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,28,0,'2025-10-21','11:51:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,29,0,'2025-10-21','12:01:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,30,0,'2025-10-21','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,31,0,'2025-10-21','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,32,0,'2025-10-21','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,33,0,'2025-10-21','15:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,34,0,'2025-10-22','11:51:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,35,0,'2025-10-22','11:54:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,36,0,'2025-10-22','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,37,0,'2025-10-22','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,38,0,'2025-10-22','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,39,0,'2025-10-22','15:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,40,0,'2025-10-22','15:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,41,0,'2025-10-23','11:52:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,42,0,'2025-10-23','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,43,0,'2025-10-23','15:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,44,0,'2025-10-23','15:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,45,0,'2025-10-23','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,46,0,'2025-10-23','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,47,0,'2025-10-24','11:52:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,48,0,'2025-10-24','15:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,49,0,'2025-10-24','15:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'401',0,8,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,50,0,'2025-10-24','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,51,0,'2025-10-24','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,52,0,'2025-10-24','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,53,0,'2025-10-25','11:52:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',73,54,0,'2025-10-25','11:58:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,8,0,'',0,'','','','','','riya','2025-10-25 14:28:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,1,0,'2025-10-11','12:33:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,36,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,2,0,'2025-10-11','12:34:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,7,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,3,0,'2025-10-11','12:42:00','WPRC0085',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,4,0,'2025-10-11','12:43:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,5,0,'2025-10-11','12:43:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,6,0,'2025-10-11','12:44:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,7,0,'2025-10-11','12:44:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,8,0,'2025-10-11','12:44:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,9,0,'2025-10-11','12:44:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,10,0,'2025-10-11','12:44:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,39,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,11,0,'2025-10-11','17:00:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,12,0,'2025-10-11','17:00:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,13,0,'2025-10-11','17:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,14,0,'2025-10-11','17:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,15,0,'2025-10-11','17:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,16,0,'2025-10-12','12:43:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,17,0,'2025-10-12','12:43:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,18,0,'2025-10-12','12:43:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,19,0,'2025-10-12','12:44:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,20,0,'2025-10-12','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,21,0,'2025-10-12','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,22,0,'2025-10-12','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,23,0,'2025-10-12','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,24,0,'2025-10-12','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,25,0,'2025-10-13','10:38:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,26,0,'2025-10-13','10:38:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,27,0,'2025-10-13','10:39:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,28,0,'2025-10-13','10:39:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,29,0,'2025-10-13','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,30,0,'2025-10-13','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,31,0,'2025-10-13','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,32,0,'2025-10-13','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,33,0,'2025-10-13','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,34,0,'2025-10-13','17:59:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,35,0,'2025-10-14','14:38:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,36,0,'2025-10-14','14:38:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,37,0,'2025-10-14','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,38,0,'2025-10-14','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,39,0,'2025-10-14','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,40,0,'2025-10-14','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,41,0,'2025-10-14','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,42,0,'2025-10-14','19:12:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,43,0,'2025-10-14','20:56:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,44,0,'2025-10-14','20:57:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,45,0,'2025-10-15','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,46,0,'2025-10-15','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,47,0,'2025-10-15','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,48,0,'2025-10-15','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0);
INSERT INTO `receipt_transaction` VALUES (0,0,'2526','H','I',74,49,0,'2025-10-15','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,50,0,'2025-10-15','19:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,51,0,'2025-10-15','19:07:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,52,0,'2025-10-15','19:13:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,53,0,'2025-10-15','20:56:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,54,0,'2025-10-16','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,55,0,'2025-10-16','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,56,0,'2025-10-16','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,57,0,'2025-10-16','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,58,0,'2025-10-16','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,59,0,'2025-10-16','20:55:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,60,0,'2025-10-16','20:55:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,61,0,'2025-10-16','20:56:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,62,0,'2025-10-16','20:57:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,63,0,'2025-10-17','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,64,0,'2025-10-17','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,65,0,'2025-10-17','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,66,0,'2025-10-17','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,67,0,'2025-10-17','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,68,0,'2025-10-17','17:56:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,69,0,'2025-10-17','18:00:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,70,0,'2025-10-17','18:01:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,71,0,'2025-10-17','18:01:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,72,0,'2025-10-17','18:01:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,73,0,'2025-10-18','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,74,0,'2025-10-18','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,75,0,'2025-10-18','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,76,0,'2025-10-18','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,77,0,'2025-10-18','17:55:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,78,0,'2025-10-18','17:55:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,79,0,'2025-10-18','17:55:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,80,0,'2025-10-18','17:56:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,81,0,'2025-10-18','18:45:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,8,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,82,0,'2025-10-19','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,83,0,'2025-10-19','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,84,0,'2025-10-19','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,85,0,'2025-10-19','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,86,0,'2025-10-19','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,87,0,'2025-10-19','18:43:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,88,0,'2025-10-19','18:45:00','WPRC0089',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,89,0,'2025-10-19','18:45:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,90,0,'2025-10-19','18:45:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,91,0,'2025-10-20','13:28:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,92,0,'2025-10-20','14:40:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,93,0,'2025-10-20','14:40:00','WPRC0089',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,94,0,'2025-10-20','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,95,0,'2025-10-20','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,96,0,'2025-10-20','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,97,0,'2025-10-20','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,98,0,'2025-10-20','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,99,0,'2025-10-21','13:27:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,100,0,'2025-10-21','13:28:00','WPRC0089',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,101,0,'2025-10-21','13:28:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,102,0,'2025-10-21','14:40:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,103,0,'2025-10-21','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,104,0,'2025-10-21','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,105,0,'2025-10-21','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,106,0,'2025-10-21','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,107,0,'2025-10-21','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,108,0,'2025-10-22','13:28:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,109,0,'2025-10-22','17:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,110,0,'2025-10-22','17:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,111,0,'2025-10-22','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,112,0,'2025-10-22','17:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,8,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,113,0,'2025-10-22','17:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,8,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,114,0,'2025-10-22','18:01:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,115,0,'2025-10-22','18:02:00','WPRC0089',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,116,0,'2025-10-22','18:03:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,117,0,'2025-10-23','14:42:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,118,0,'2025-10-23','17:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,119,0,'2025-10-23','17:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,120,0,'2025-10-23','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,121,0,'2025-10-23','17:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,8,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,122,0,'2025-10-23','17:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,8,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,123,0,'2025-10-23','18:01:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,124,0,'2025-10-23','18:02:00','WPRC0089',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,125,0,'2025-10-23','18:03:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,126,0,'2025-10-24','14:40:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,127,0,'2025-10-24','14:40:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,128,0,'2025-10-24','14:42:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,129,0,'2025-10-24','17:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,130,0,'2025-10-24','17:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,131,0,'2025-10-24','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,132,0,'2025-10-24','17:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,8,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,133,0,'2025-10-24','17:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,8,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,134,0,'2025-10-25','14:40:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,135,0,'2025-10-25','14:41:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,136,0,'2025-10-25','14:41:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,137,0,'2025-10-25','17:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,138,0,'2025-10-25','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,139,0,'2025-10-25','17:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,8,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,140,0,'2025-10-25','17:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,8,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',74,141,0,'2025-10-25','17:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-25 21:05:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',75,1,0,'2025-10-24','13:58:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-26 12:43:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',75,2,0,'2025-10-24','19:18:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-26 12:43:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',75,3,0,'2025-10-24','19:18:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-26 12:43:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',75,4,0,'2025-10-24','19:18:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-26 12:43:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',75,5,0,'2025-10-24','19:18:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-26 12:43:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',75,6,0,'2025-10-24','19:18:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-26 12:43:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',75,7,0,'2025-10-24','19:18:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,8,0,'',0,'','','','','','riya','2025-10-26 12:43:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',75,8,0,'2025-10-25','19:18:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-26 12:43:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',75,9,0,'2025-10-25','19:18:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-26 12:43:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',75,10,0,'2025-10-25','19:18:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-26 12:43:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',75,11,0,'2025-10-25','19:18:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,8,0,'',0,'','','','','','riya','2025-10-26 12:43:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',75,12,0,'2025-10-25','19:18:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,8,0,'',0,'','','','','','riya','2025-10-26 12:43:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',75,13,0,'2025-10-26','12:31:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,8,0,'',0,'','','','','','riya','2025-10-26 12:43:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',76,1,0,'2025-10-26','11:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 12:42:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',76,2,0,'2025-10-26','11:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 12:42:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',76,3,0,'2025-10-26','11:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-27 12:42:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',76,4,0,'2025-10-26','11:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-27 12:42:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',76,5,0,'2025-10-26','11:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-10-27 12:42:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',76,6,0,'2025-10-26','11:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,5,0,'',0,'','','','','','riya','2025-10-27 12:42:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',76,7,0,'2025-10-26','11:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 12:42:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',76,8,0,'2025-10-26','11:55:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 12:42:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',76,9,0,'2025-10-26','11:58:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 12:42:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',76,10,0,'2025-10-26','11:58:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 12:42:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',76,11,0,'2025-10-26','12:37:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','riya','2025-10-27 12:42:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',76,12,0,'2025-10-27','11:55:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','riya','2025-10-27 12:42:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,1,1,'2025-10-25','13:15:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-27 14:21:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,2,1,'2025-10-25','13:15:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-27 14:21:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,3,1,'2025-10-25','13:16:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-27 14:21:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,4,1,'2025-10-25','22:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-27 14:21:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,5,1,'2025-10-25','22:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-27 14:21:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,6,1,'2025-10-25','22:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','N','riya','2025-10-27 14:21:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,7,1,'2025-10-25','22:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','N','riya','2025-10-27 14:21:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,8,1,'2025-10-25','22:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','N','riya','2025-10-27 14:21:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,9,1,'2025-10-26','13:15:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-27 14:21:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,10,1,'2025-10-26','13:16:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-27 14:21:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,11,1,'2025-10-26','13:16:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-27 14:21:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,12,1,'2025-10-26','23:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'408',0,5,0,'',0,'','','','','N','riya','2025-10-27 14:21:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,13,1,'2025-10-26','23:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'408',0,5,0,'',0,'','','','','N','riya','2025-10-27 14:21:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,14,1,'2025-10-26','23:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','N','riya','2025-10-27 14:21:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,15,1,'2025-10-26','23:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','N','riya','2025-10-27 14:21:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,16,1,'2025-10-26','23:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','N','riya','2025-10-27 14:21:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,17,1,'2025-10-27','13:16:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-27 14:21:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,18,1,'2025-10-27','22:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'209',0,5,0,'',0,'','','','','N','riya','2025-10-27 14:21:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',78,1,0,'2025-10-27','09:57:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 16:45:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',78,2,0,'2025-10-27','09:57:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 16:45:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',78,3,0,'2025-10-27','09:57:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-27 16:45:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',78,4,0,'2025-10-27','09:57:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-27 16:45:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',78,5,0,'2025-10-27','09:57:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-10-27 16:45:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',78,6,0,'2025-10-27','09:57:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-10-27 16:45:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',78,7,0,'2025-10-27','16:34:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 16:45:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',78,8,0,'2025-10-27','16:34:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-27 16:45:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',78,9,0,'2025-10-27','16:34:00','SURG0015',0,1.00,11200,11200,'P',0,0,11200.00,0.00,0.00,11200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-27 16:45:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',78,10,0,'2025-10-27','16:35:00','SURG0014',0,1.00,3700,3700,'P',0,0,3700.00,0.00,0.00,3700.00,'',0,3,0,'',0,'','','','','','riya','2025-10-27 16:45:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,1,0,'2025-10-24','13:56:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,2,0,'2025-10-24','19:47:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,3,0,'2025-10-24','19:47:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,4,0,'2025-10-24','19:47:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,5,0,'2025-10-24','19:47:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,6,0,'2025-10-24','19:47:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,7,0,'2025-10-25','13:57:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,37,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,8,0,'2025-10-25','18:25:00','USG0094',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,5,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,9,0,'2025-10-25','19:47:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,10,0,'2025-10-25','19:47:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,11,0,'2025-10-25','19:47:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,12,0,'2025-10-25','19:47:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,13,0,'2025-10-25','19:47:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,14,0,'2025-10-26','19:47:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,15,0,'2025-10-26','19:47:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,16,0,'2025-10-26','19:47:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,17,0,'2025-10-26','19:47:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,18,0,'2025-10-26','19:47:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,19,0,'2025-10-27','19:47:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',79,20,0,'2025-10-27','19:47:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-10-27 18:46:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',80,1,0,'2025-10-26','12:17:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-27 21:27:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',80,2,0,'2025-10-26','12:17:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-27 21:27:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',80,3,0,'2025-10-26','12:17:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-27 21:27:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',80,4,0,'2025-10-26','12:17:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-27 21:27:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',80,5,0,'2025-10-26','12:17:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-27 21:27:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',80,6,0,'2025-10-26','12:17:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,8,0,'',0,'','','','','','vishal','2025-10-27 21:27:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',80,7,0,'2025-10-26','21:19:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-27 21:27:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',80,8,0,'2025-10-27','12:17:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-27 21:27:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',80,9,0,'2025-10-27','12:17:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-27 21:27:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',80,10,0,'2025-10-27','12:17:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-10-27 21:27:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',80,11,0,'2025-10-27','12:17:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-10-27 21:27:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',80,12,0,'2025-10-27','12:17:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-10-27 21:27:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,1,1,'2025-10-19','10:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,2,1,'2025-10-19','10:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,3,1,'2025-10-19','10:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,4,1,'2025-10-19','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,5,1,'2025-10-19','10:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,6,1,'2025-10-19','10:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,7,1,'2025-10-19','10:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,8,1,'2025-10-19','11:51:00','WPRC0090',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,9,1,'2025-10-19','12:08:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,10,1,'2025-10-19','14:29:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,7,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,11,1,'2025-10-19','14:30:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,12,1,'2025-10-19','14:30:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,13,1,'2025-10-19','14:30:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,14,1,'2025-10-20','10:15:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,15,1,'2025-10-20','10:15:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,16,1,'2025-10-20','10:15:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,17,1,'2025-10-20','10:15:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,18,1,'2025-10-20','10:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,19,1,'2025-10-20','14:30:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,20,1,'2025-10-20','14:30:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,21,1,'2025-10-21','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,22,1,'2025-10-21','12:45:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,23,1,'2025-10-21','12:45:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,24,1,'2025-10-21','12:45:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,25,1,'2025-10-21','12:46:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,26,1,'2025-10-21','12:46:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,27,1,'2025-10-22','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,28,1,'2025-10-22','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,29,1,'2025-10-22','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,30,1,'2025-10-22','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,31,1,'2025-10-22','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,32,1,'2025-10-22','14:01:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,33,1,'2025-10-23','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,34,1,'2025-10-23','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,35,1,'2025-10-23','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,36,1,'2025-10-23','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,37,1,'2025-10-23','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,38,1,'2025-10-23','14:01:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,39,1,'2025-10-23','14:06:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,40,1,'2025-10-24','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,41,1,'2025-10-24','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,42,1,'2025-10-24','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,43,1,'2025-10-24','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,44,1,'2025-10-24','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,45,1,'2025-10-24','14:02:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,46,1,'2025-10-24','14:07:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,47,1,'2025-10-25','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,48,1,'2025-10-25','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,49,1,'2025-10-25','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,50,1,'2025-10-25','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,51,1,'2025-10-25','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,52,1,'2025-10-25','14:02:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,53,1,'2025-10-25','14:07:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,54,1,'2025-10-26','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,55,1,'2025-10-26','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,56,1,'2025-10-26','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,57,1,'2025-10-26','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,58,1,'2025-10-26','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,59,1,'2025-10-26','11:40:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,60,1,'2025-10-26','11:40:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,61,1,'2025-10-27','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,62,1,'2025-10-27','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,63,1,'2025-10-27','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,64,1,'2025-10-27','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,65,1,'2025-10-27','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,66,1,'2025-10-27','11:41:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,67,1,'2025-10-28','11:41:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,68,1,'2025-10-28','12:11:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','N','riya','2025-10-28 16:55:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,1,0,'2025-10-22','00:05:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,2,0,'2025-10-22','00:05:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,3,0,'2025-10-22','13:14:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,4,0,'2025-10-22','13:15:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,5,0,'2025-10-22','13:15:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,6,0,'2025-10-23','00:05:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,7,0,'2025-10-23','00:05:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,8,0,'2025-10-23','00:05:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,9,0,'2025-10-23','00:05:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,10,0,'2025-10-23','00:05:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,11,0,'2025-10-23','10:09:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,12,0,'2025-10-23','18:00:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,13,0,'2025-10-23','19:04:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,14,0,'2025-10-23','19:15:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,15,0,'2025-10-24','12:05:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,16,0,'2025-10-24','12:05:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,17,0,'2025-10-24','12:05:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,18,0,'2025-10-24','12:05:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,19,0,'2025-10-24','12:05:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,20,0,'2025-10-24','13:06:00','GENS0078',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,21,0,'2025-10-24','19:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,22,0,'2025-10-24','19:07:00','USG0095',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,23,0,'2025-10-24','19:16:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,24,0,'2025-10-25','00:05:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,25,0,'2025-10-25','00:05:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,26,0,'2025-10-25','00:05:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,27,0,'2025-10-25','00:05:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,28,0,'2025-10-25','00:05:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,29,0,'2025-10-26','00:05:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,30,0,'2025-10-26','00:05:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,31,0,'2025-10-26','00:05:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,32,0,'2025-10-26','00:05:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,33,0,'2025-10-26','00:05:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,34,0,'2025-10-27','00:05:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,35,0,'2025-10-27','00:05:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,36,0,'2025-10-27','00:05:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,37,0,'2025-10-27','00:05:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,38,0,'2025-10-27','00:05:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,39,0,'2025-10-27','13:18:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,40,0,'2025-10-27','13:18:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,41,0,'2025-10-28','13:02:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,42,0,'2025-10-28','13:24:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,43,0,'2025-10-28','13:24:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',82,44,0,'2025-10-28','13:24:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 14:17:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,1,0,'2025-10-27','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,2,0,'2025-10-27','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,3,0,'2025-10-27','09:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,4,0,'2025-10-27','09:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,5,0,'2025-10-27','09:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,6,0,'2025-10-27','09:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,7,0,'2025-10-27','09:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,8,0,'2025-10-27','12:16:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,9,0,'2025-10-27','12:17:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,10,0,'2025-10-27','12:18:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,11,0,'2025-10-27','12:18:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,12,0,'2025-10-27','12:19:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,13,0,'2025-10-27','12:19:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,14,0,'2025-10-28','09:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,15,0,'2025-10-28','09:30:00','CARE0001',0,0.50,600,300,'A',0,0,300.00,0.00,0.00,300.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,16,0,'2025-10-28','09:30:00','AECO0008',0,0.50,800,400,'A',0,0,400.00,0.00,0.00,400.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,17,0,'2025-10-28','09:30:00','ROOM0009',0,0.50,5500,2750,'A',0,0,2750.00,0.00,0.00,2750.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,18,0,'2025-10-28','12:16:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',83,19,0,'2025-10-28','12:19:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-28 15:41:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,1,1,'2025-10-27','10:48:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 12:18:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,2,1,'2025-10-27','10:48:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 12:18:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,3,1,'2025-10-27','10:48:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','N','riya','2025-10-29 12:18:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,4,1,'2025-10-27','10:48:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','N','riya','2025-10-29 12:18:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,5,1,'2025-10-27','10:48:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','N','riya','2025-10-29 12:18:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,6,1,'2025-10-27','10:48:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','N','riya','2025-10-29 12:18:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,7,1,'2025-10-27','10:48:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','N','riya','2025-10-29 12:18:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,8,1,'2025-10-27','10:53:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 12:18:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,9,1,'2025-10-27','10:53:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 12:18:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,10,1,'2025-10-27','10:53:00','SURG0014',0,1.00,27500,27500,'P',0,0,27500.00,0.00,0.00,27500.00,'',0,101,0,'',0,'','','','','N','riya','2025-10-29 12:18:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,11,1,'2025-10-27','10:55:00','SURG0015',0,1.00,18300,18300,'P',0,0,18300.00,0.00,0.00,18300.00,'',0,3,0,'',0,'','','','','N','riya','2025-10-29 12:18:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,12,1,'2025-10-28','10:48:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','N','riya','2025-10-29 12:18:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,13,1,'2025-10-28','10:48:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','N','riya','2025-10-29 12:18:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,14,1,'2025-10-28','10:48:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','N','riya','2025-10-29 12:18:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,15,1,'2025-10-28','10:48:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','N','riya','2025-10-29 12:18:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,16,1,'2025-10-28','10:48:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','N','riya','2025-10-29 12:18:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,17,1,'2025-10-29','10:48:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','N','riya','2025-10-29 12:18:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,18,1,'2025-10-27','12:13:00','SURG0014',0,1.00,27500,27500,'P',0,0,27500.00,0.00,0.00,27500.00,'',0,3,0,'',0,'','','','','N','riya','2025-10-29 12:18:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,1,0,'2025-10-27','11:43:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,2,0,'2025-10-27','11:43:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,3,0,'2025-10-27','11:43:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,4,0,'2025-10-27','11:43:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,5,0,'2025-10-27','11:43:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,6,0,'2025-10-27','11:43:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,7,0,'2025-10-27','12:50:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,8,0,'2025-10-27','12:50:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,9,0,'2025-10-27','12:50:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,10,0,'2025-10-27','12:51:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,11,0,'2025-10-28','11:43:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,12,0,'2025-10-28','11:43:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,13,0,'2025-10-28','11:43:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,14,0,'2025-10-28','11:43:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,15,0,'2025-10-28','11:43:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,16,0,'2025-10-28','12:51:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,17,0,'2025-10-28','12:51:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,18,0,'2025-10-29','12:38:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',85,19,0,'2025-10-29','12:39:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-10-29 12:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,1,1,'2025-10-24','14:19:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,8,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,2,1,'2025-10-24','20:16:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,3,1,'2025-10-24','20:16:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,3,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,4,1,'2025-10-24','20:16:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,5,1,'2025-10-24','20:16:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,6,1,'2025-10-24','20:16:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,7,1,'2025-10-24','20:16:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,8,1,'2025-10-25','14:19:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,41,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,9,1,'2025-10-25','14:20:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,10,1,'2025-10-25','14:20:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,11,1,'2025-10-25','19:28:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,12,1,'2025-10-25','20:16:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,13,1,'2025-10-25','20:16:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,3,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,14,1,'2025-10-25','20:16:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,3,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,15,1,'2025-10-25','20:16:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,16,1,'2025-10-25','20:16:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,17,1,'2025-10-26','19:24:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,41,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,18,1,'2025-10-26','19:25:00','NEPP0011',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,41,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,19,1,'2025-10-26','19:25:00','ROOM0008',0,7.00,100,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,20,1,'2025-10-26','19:27:00','WPRC0104',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,21,1,'2025-10-26','19:27:00','WPRC0097',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,3,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,22,1,'2025-10-26','19:27:00','XRY0045',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,23,1,'2025-10-26','19:28:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,24,1,'2025-10-26','19:28:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,25,1,'2025-10-26','19:28:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,26,1,'2025-10-26','19:32:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,88,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,27,1,'2025-10-26','20:16:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,28,1,'2025-10-26','20:16:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,29,1,'2025-10-26','20:16:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,3,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,30,1,'2025-10-26','20:16:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,31,1,'2025-10-26','20:16:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,3,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,32,1,'2025-10-27','11:18:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,33,1,'2025-10-27','15:17:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,34,1,'2025-10-27','15:17:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,35,1,'2025-10-27','15:18:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,36,1,'2025-10-27','20:16:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,37,1,'2025-10-27','20:16:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,38,1,'2025-10-27','20:16:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,39,1,'2025-10-27','20:16:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,40,1,'2025-10-27','20:16:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,41,1,'2025-10-28','10:29:00','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,42,1,'2025-10-28','10:29:00','WPRC0104',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,43,1,'2025-10-28','10:30:00','DRC0020',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,100,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,44,1,'2025-10-28','10:34:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,45,1,'2025-10-28','11:19:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,46,1,'2025-10-28','11:19:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,41,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,47,1,'2025-10-28','20:16:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,48,1,'2025-10-28','20:16:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,49,1,'2025-10-28','20:16:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,50,1,'2025-10-28','20:16:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,51,1,'2025-10-28','20:16:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,52,1,'2025-10-29','10:29:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,53,1,'2025-10-29','10:30:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,54,1,'2025-10-29','10:33:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,100,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,55,1,'2025-10-28','10:36:00','USG0097',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,56,1,'2025-10-29','11:55:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','N','riya','2025-10-29 13:00:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',87,1,0,'2025-10-28','14:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 15:19:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',87,2,0,'2025-10-28','14:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 15:19:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',87,3,0,'2025-10-28','14:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-29 15:19:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',87,4,0,'2025-10-28','14:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-29 15:19:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',87,5,0,'2025-10-28','14:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-10-29 15:19:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',87,6,0,'2025-10-28','14:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','riya','2025-10-29 15:19:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',87,7,0,'2025-10-28','21:22:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 15:19:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',87,8,0,'2025-10-28','21:23:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 15:19:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',87,9,0,'2025-10-28','21:23:00','DRC0021',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-10-29 15:19:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',87,10,0,'2025-10-29','14:48:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-29 15:19:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',87,11,0,'2025-10-29','14:48:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-10-29 15:19:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',87,12,0,'2025-10-29','14:49:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-10-29 15:19:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,1,0,'2025-10-23','13:54:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,2,0,'2025-10-23','20:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,3,0,'2025-10-23','20:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,4,0,'2025-10-23','20:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,5,0,'2025-10-23','20:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,6,0,'2025-10-23','20:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,7,0,'2025-10-24','13:55:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,8,0,'2025-10-24','20:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,9,0,'2025-10-24','20:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,10,0,'2025-10-24','20:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,11,0,'2025-10-24','20:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,12,0,'2025-10-24','20:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,13,0,'2025-10-25','12:21:00','USG0091',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,14,0,'2025-10-25','13:55:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,15,0,'2025-10-25','20:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,16,0,'2025-10-25','20:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,17,0,'2025-10-25','20:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,18,0,'2025-10-25','20:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,19,0,'2025-10-25','20:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,20,0,'2025-10-26','10:10:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,21,0,'2025-10-26','12:22:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,22,0,'2025-10-26','12:22:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,23,0,'2025-10-26','20:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,24,0,'2025-10-26','20:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,25,0,'2025-10-26','20:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,26,0,'2025-10-26','20:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,27,0,'2025-10-26','20:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,28,0,'2025-10-27','12:23:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,29,0,'2025-10-27','20:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,30,0,'2025-10-27','20:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,31,0,'2025-10-27','20:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,32,0,'2025-10-27','20:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,33,0,'2025-10-27','20:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,34,0,'2025-10-28','11:35:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,35,0,'2025-10-28','12:23:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,36,0,'2025-10-28','20:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,37,0,'2025-10-28','20:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,38,0,'2025-10-28','20:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,39,0,'2025-10-28','20:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,40,0,'2025-10-28','20:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,41,0,'2025-10-29','11:36:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,42,0,'2025-10-29','18:27:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,43,0,'2025-10-29','18:27:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',88,44,0,'2025-10-29','18:31:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 18:46:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,1,0,'2025-10-27','11:25:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,2,0,'2025-10-27','11:25:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,3,0,'2025-10-27','11:25:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,4,0,'2025-10-27','11:25:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,5,0,'2025-10-27','11:25:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,6,0,'2025-10-27','11:25:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,7,0,'2025-10-27','12:42:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,8,0,'2025-10-27','17:56:00','SURG0015',0,1.00,14000,14000,'A',0,0,14000.00,0.00,0.00,14000.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,9,0,'2025-10-27','17:56:00','SURG0014',0,1.00,41500,41500,'A',0,0,41500.00,0.00,0.00,41500.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,10,0,'2025-10-28','11:25:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,11,0,'2025-10-28','11:25:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,12,0,'2025-10-28','11:25:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,13,0,'2025-10-28','11:25:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,14,0,'2025-10-28','11:25:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,15,0,'2025-10-28','12:43:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,16,0,'2025-10-28','12:43:00','WPRC0089',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,17,0,'2025-10-28','17:51:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,18,0,'2025-10-29','11:25:00','AECO0008',0,0.50,300,150,'A',0,0,150.00,0.00,0.00,150.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,19,0,'2025-10-29','11:25:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,20,0,'2025-10-29','11:25:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,21,0,'2025-10-29','11:25:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,22,0,'2025-10-29','11:25:00','ROOM0009',0,0.50,2900,1450,'P',0,0,1450.00,0.00,0.00,1450.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',89,23,0,'2025-10-29','17:50:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-10-29 19:04:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,1,0,'2025-10-25','11:10:00','DRC0020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,37,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,2,0,'2025-10-25','11:11:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,3,0,'2025-10-25','19:22:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,4,0,'2025-10-25','19:22:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,5,0,'2025-10-25','19:22:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,6,0,'2025-10-25','19:22:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,7,0,'2025-10-25','19:22:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,8,0,'2025-10-26','11:11:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,37,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,9,0,'2025-10-26','11:11:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,10,0,'2025-10-26','19:22:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,11,0,'2025-10-26','19:22:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,12,0,'2025-10-26','19:22:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,13,0,'2025-10-27','11:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,14,0,'2025-10-27','11:12:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,15,0,'2025-10-27','19:22:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,16,0,'2025-10-27','19:22:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,17,0,'2025-10-27','19:22:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,18,0,'2025-10-27','19:22:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,19,0,'2025-10-28','12:41:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,20,0,'2025-10-28','19:22:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,21,0,'2025-10-28','19:22:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,22,0,'2025-10-28','19:22:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,23,0,'2025-10-28','19:22:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,24,0,'2025-10-28','19:22:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,25,0,'2025-10-29','11:38:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,26,0,'2025-10-29','20:29:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',90,27,0,'2025-10-29','20:29:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-29 20:42:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,1,0,'2025-10-28','10:39:00','ROOM0008',0,9.00,100,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,2,0,'2025-10-28','10:39:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,3,0,'2025-10-28','10:39:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,4,0,'2025-10-28','10:40:00','SURG0015',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,5,0,'2025-10-28','10:41:00','SURG0014',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,3,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,6,0,'2025-10-28','11:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,7,0,'2025-10-28','11:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,8,0,'2025-10-28','11:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,9,0,'2025-10-28','11:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,10,0,'2025-10-28','11:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,11,0,'2025-10-28','11:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,12,0,'2025-10-28','11:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,13,0,'2025-10-29','10:39:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,14,0,'2025-10-29','11:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,15,0,'2025-10-29','11:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,16,0,'2025-10-29','11:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,17,0,'2025-10-29','11:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,18,0,'2025-10-29','11:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,19,0,'2025-10-29','11:58:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,20,0,'2025-10-29','11:58:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,21,0,'2025-10-29','11:59:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,22,0,'2025-10-29','12:00:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,23,0,'2025-10-29','12:02:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,78,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,24,0,'2025-10-30','11:58:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,25,0,'2025-10-30','11:59:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',91,26,0,'2025-10-30','11:59:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-10-30 12:31:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',92,1,0,'2025-10-30','12:40:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 18:43:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',92,2,0,'2025-10-30','12:40:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 18:43:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',92,3,0,'2025-10-30','12:40:00','ROOM0009',0,0.50,5500,2750,'A',0,0,2750.00,0.00,0.00,2750.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-30 18:43:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',92,4,0,'2025-10-30','12:40:00','AECO0008',0,0.50,800,400,'A',0,0,400.00,0.00,0.00,400.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-30 18:43:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',92,5,0,'2025-10-30','12:40:00','CARE0001',0,0.50,600,300,'A',0,0,300.00,0.00,0.00,300.00,'208',0,9999,0,'',0,'','','','','','riya','2025-10-30 18:43:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',92,6,0,'2025-10-30','12:40:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,5,0,'',0,'','','','','','riya','2025-10-30 18:43:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',92,7,0,'2025-10-30','18:34:00','WPRC0078',0,1.00,350,350,'P',0,0,350.00,0.00,0.00,350.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 18:43:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',92,8,0,'2025-10-30','18:34:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 18:43:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',92,9,0,'2025-10-30','18:34:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','riya','2025-10-30 18:43:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',92,10,0,'2025-10-30','18:34:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-10-30 18:43:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',92,11,0,'2025-10-30','18:34:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','riya','2025-10-30 18:43:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',92,12,0,'2025-10-30','18:39:00','DRC0021',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','riya','2025-10-30 18:43:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,1,0,'2025-10-27','07:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,2,0,'2025-10-27','07:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,3,0,'2025-10-27','07:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,4,0,'2025-10-27','07:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,5,0,'2025-10-27','07:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,6,0,'2025-10-27','07:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,7,0,'2025-10-27','11:29:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,8,0,'2025-10-27','11:29:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,9,0,'2025-10-27','11:30:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,10,0,'2025-10-27','11:30:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,11,0,'2025-10-27','11:31:00','XRY0045',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,12,0,'2025-10-28','11:30:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,13,0,'2025-10-28','11:30:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,14,0,'2025-10-28','11:31:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,15,0,'2025-10-28','11:31:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,16,0,'2025-10-28','13:20:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,17,0,'2025-10-28','13:20:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,18,0,'2025-10-28','13:21:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,19,0,'2025-10-28','13:21:00','OTCG0003',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,20,0,'2025-10-28','19:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,21,0,'2025-10-28','19:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,22,0,'2025-10-28','19:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,23,0,'2025-10-28','19:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,24,0,'2025-10-28','19:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,25,0,'2025-10-29','11:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,26,0,'2025-10-29','11:30:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,27,0,'2025-10-29','13:19:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,28,0,'2025-10-29','13:19:00','WPRC0097',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,29,0,'2025-10-29','19:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,30,0,'2025-10-29','19:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,31,0,'2025-10-29','19:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,32,0,'2025-10-29','19:45:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,33,0,'2025-10-30','11:29:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,34,0,'2025-10-30','11:29:00','WPRC0080',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,35,0,'2025-10-30','19:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,36,0,'2025-10-30','19:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,37,0,'2025-10-30','19:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,38,0,'2025-10-30','19:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,39,0,'2025-10-30','19:45:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,40,0,'2025-10-31','12:09:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,41,0,'2025-10-31','12:10:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,42,0,'2025-10-31','12:10:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',93,43,0,'2025-10-31','12:11:00','OTCG0003',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-31 12:33:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',94,1,0,'2025-10-30','12:15:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 13:32:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',94,2,0,'2025-10-30','14:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 13:32:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',94,3,0,'2025-10-30','14:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 13:32:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',94,4,0,'2025-10-30','14:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-31 13:32:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',94,5,0,'2025-10-30','14:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-31 13:32:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',94,6,0,'2025-10-30','14:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-10-31 13:32:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',94,7,0,'2025-10-30','14:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-10-31 13:32:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',94,8,0,'2025-10-31','12:15:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 13:32:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',94,9,0,'2025-10-31','14:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-10-31 13:32:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',95,1,0,'2025-10-30','18:40:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 19:05:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',95,2,0,'2025-10-30','18:44:00','SURG0014',0,1.00,21700,21700,'P',0,0,21700.00,0.00,0.00,21700.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-31 19:05:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',95,3,0,'2025-10-30','18:44:00','SURG0015',0,1.00,7300,7300,'P',0,0,7300.00,0.00,0.00,7300.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-31 19:05:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',95,4,0,'2025-10-30','20:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 19:05:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',95,5,0,'2025-10-30','20:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 19:05:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',95,6,0,'2025-10-30','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-31 19:05:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',95,7,0,'2025-10-30','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-31 19:05:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',95,8,0,'2025-10-30','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-10-31 19:05:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',95,9,0,'2025-10-31','18:40:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','vishal','2025-10-31 19:05:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',95,10,0,'2025-10-31','20:30:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'410',0,6,0,'',0,'','','','','','vishal','2025-10-31 19:05:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',96,1,0,'2025-10-30','09:40:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 21:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',96,2,0,'2025-10-30','09:40:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 21:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',96,3,0,'2025-10-30','09:40:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-10-31 21:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',96,4,0,'2025-10-30','09:40:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-10-31 21:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',96,5,0,'2025-10-30','09:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-10-31 21:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',96,6,0,'2025-10-30','09:40:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','vishal','2025-10-31 21:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',96,7,0,'2025-10-30','09:40:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','vishal','2025-10-31 21:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',96,8,0,'2025-10-30','11:28:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 21:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',96,9,0,'2025-10-30','11:28:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 21:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',96,10,0,'2025-10-31','09:40:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-10-31 21:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',96,11,0,'2025-10-31','09:40:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-10-31 21:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',96,12,0,'2025-10-31','09:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-10-31 21:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',96,13,0,'2025-10-31','09:40:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','vishal','2025-10-31 21:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',96,14,0,'2025-10-31','09:40:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','vishal','2025-10-31 21:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',96,15,0,'2025-10-31','21:14:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-10-31 21:44:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,1,0,'2025-10-29','06:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,2,0,'2025-10-29','06:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,3,0,'2025-10-29','06:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,4,0,'2025-10-29','06:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,5,0,'2025-10-29','06:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,6,0,'2025-10-29','06:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,7,0,'2025-10-29','06:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,8,0,'2025-10-29','11:42:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,9,0,'2025-10-29','11:42:00','USG0092',0,1.00,1200,1200,'A',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,10,0,'2025-10-30','06:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,11,0,'2025-10-30','06:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,12,0,'2025-10-30','06:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,13,0,'2025-10-30','06:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,14,0,'2025-10-30','06:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,15,0,'2025-10-30','11:43:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,16,0,'2025-10-31','06:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,17,0,'2025-10-31','06:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,18,0,'2025-10-31','06:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,19,0,'2025-10-31','06:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,20,0,'2025-10-31','06:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,21,0,'2025-11-01','12:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,22,0,'2025-11-01','12:02:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,23,0,'2025-11-01','12:02:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',97,24,0,'2025-11-01','12:03:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',98,1,0,'2025-10-28','11:41:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,2,0,'2025-10-28','15:26:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,3,0,'2025-10-28','15:26:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,4,0,'2025-10-28','15:26:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,5,0,'2025-10-28','15:26:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,6,0,'2025-10-28','15:26:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,7,0,'2025-10-28','15:26:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,8,0,'2025-10-29','11:32:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,9,0,'2025-10-29','11:33:00','USG0097',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,10,0,'2025-10-29','11:41:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,11,0,'2025-10-29','15:26:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,12,0,'2025-10-29','15:26:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,13,0,'2025-10-29','15:26:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,14,0,'2025-10-29','15:26:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,15,0,'2025-10-29','15:26:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,16,0,'2025-10-30','11:34:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,17,0,'2025-10-30','15:26:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,18,0,'2025-10-30','15:26:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,19,0,'2025-10-30','15:26:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,20,0,'2025-10-30','15:26:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,21,0,'2025-10-30','15:26:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,22,0,'2025-10-31','13:38:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,23,0,'2025-10-31','13:39:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,24,0,'2025-10-31','15:26:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,25,0,'2025-10-31','15:26:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,26,0,'2025-10-31','15:26:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,27,0,'2025-10-31','15:26:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,28,0,'2025-11-01','12:33:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,29,0,'2025-11-01','12:34:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,30,0,'2025-11-01','12:37:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,31,0,'2025-11-01','12:37:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',98,32,0,'2025-11-01','12:38:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 12:49:44','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,1,0,'2025-11-01','00:00:00','ROOM0008',0,-2.00,100,-200,'P',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,2,0,'2025-11-01','00:00:00','REG0001',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,3,0,'2025-11-01','00:00:00','REG0002',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,4,0,'2025-11-01','00:00:00','ROOM0009',0,-1.00,3200,-3200,'A',0,0,-3200.00,0.00,0.00,-3200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,5,0,'2025-11-01','00:00:00','AECO0008',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,6,0,'2025-11-01','00:00:00','CARE0001',0,-1.00,200,-200,'A',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,7,0,'2025-11-01','00:00:00','DRC0019',0,-1.00,1100,-1100,'A',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,8,0,'2025-11-01','00:00:00','WPRC0097',0,-1.00,2000,-2000,'P',0,0,-2000.00,0.00,0.00,-2000.00,'',0,4,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,9,0,'2025-11-01','00:00:00','USG0097',0,-1.00,1200,-1200,'P',0,0,-1200.00,0.00,0.00,-1200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,10,0,'2025-11-01','00:00:00','ROOM0008',0,-3.00,100,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,11,0,'2025-11-01','00:00:00','CARE0001',0,-1.00,200,-200,'A',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,12,0,'2025-11-01','00:00:00','ROOM0009',0,-1.00,3200,-3200,'A',0,0,-3200.00,0.00,0.00,-3200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,13,0,'2025-11-01','00:00:00','DRC0019',0,-1.00,1100,-1100,'A',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,14,0,'2025-11-01','00:00:00','DRC0018',0,-1.00,1100,-1100,'A',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,15,0,'2025-11-01','00:00:00','AECO0008',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,16,0,'2025-11-01','00:00:00','ROOM0008',0,-3.00,100,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,17,0,'2025-11-01','00:00:00','AECO0008',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,18,0,'2025-11-01','00:00:00','ROOM0009',0,-1.00,3200,-3200,'A',0,0,-3200.00,0.00,0.00,-3200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,19,0,'2025-11-01','00:00:00','DRC0019',0,-1.00,1100,-1100,'A',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,20,0,'2025-11-01','00:00:00','DRC0018',0,-1.00,1100,-1100,'A',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,21,0,'2025-11-01','00:00:00','CARE0001',0,-1.00,200,-200,'A',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,22,0,'2025-11-01','00:00:00','ROOM0008',0,-3.00,100,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,23,0,'2025-11-01','00:00:00','DRC0018',0,-1.00,1100,-1100,'P',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,24,0,'2025-11-01','00:00:00','AECO0008',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,25,0,'2025-11-01','00:00:00','CARE0001',0,-1.00,200,-200,'A',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,26,0,'2025-11-01','00:00:00','DRC0019',0,-1.00,1100,-1100,'A',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,27,0,'2025-11-01','00:00:00','ROOM0009',0,-1.00,3200,-3200,'A',0,0,-3200.00,0.00,0.00,-3200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,28,0,'2025-11-01','00:00:00','DRC0018',0,-1.00,1100,-1100,'P',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,29,0,'2025-11-01','00:00:00','ROOM0008',0,-1.00,100,-100,'P',0,0,-100.00,0.00,0.00,-100.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,30,0,'2025-11-01','00:00:00','ROOM0009',0,-1.00,3200,-3200,'P',0,0,-3200.00,0.00,0.00,-3200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,31,0,'2025-11-01','00:00:00','AECO0008',0,-1.00,400,-400,'P',0,0,-400.00,0.00,0.00,-400.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',99,32,0,'2025-11-01','00:00:00','CARE0001',0,-1.00,200,-200,'P',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-01 12:57:28','vishal','2025-11-01 12:57:28',0),(0,0,'2526','H','I',100,1,0,'2025-10-28','11:41:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,2,0,'2025-10-28','15:26:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,3,0,'2025-10-28','15:26:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,4,0,'2025-10-28','15:26:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,5,0,'2025-10-28','15:26:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,6,0,'2025-10-28','15:26:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,7,0,'2025-10-28','15:26:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,8,0,'2025-10-29','11:32:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,9,0,'2025-10-29','11:33:00','USG0097',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,10,0,'2025-10-29','11:41:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,11,0,'2025-10-29','15:26:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,12,0,'2025-10-29','15:26:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,13,0,'2025-10-29','15:26:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,14,0,'2025-10-29','15:26:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,15,0,'2025-10-29','15:26:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,16,0,'2025-10-30','11:34:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,17,0,'2025-10-30','15:26:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,18,0,'2025-10-30','15:26:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,19,0,'2025-10-30','15:26:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,20,0,'2025-10-30','15:26:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,21,0,'2025-10-30','15:26:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,22,0,'2025-10-31','13:38:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,23,0,'2025-10-31','13:39:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,24,0,'2025-10-31','15:26:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,25,0,'2025-10-31','15:26:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,26,0,'2025-10-31','15:26:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,27,0,'2025-10-31','15:26:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,28,0,'2025-11-01','12:33:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,29,0,'2025-11-01','12:34:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,30,0,'2025-11-01','12:37:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,31,0,'2025-11-01','12:37:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',100,32,0,'2025-11-01','12:38:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 13:04:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,1,0,'2025-10-10','03:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,2,0,'2025-10-10','03:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,3,0,'2025-10-10','14:29:00','ROOM0001',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,4,0,'2025-10-10','14:29:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,5,0,'2025-10-10','14:29:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,6,0,'2025-10-10','14:30:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,7,0,'2025-10-10','14:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,8,0,'2025-10-10','14:32:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,9,0,'2025-10-10','14:33:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,10,0,'2025-10-10','14:33:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,11,0,'2025-10-10','14:34:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,12,0,'2025-10-10','14:38:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,13,0,'2025-10-10','14:38:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,14,0,'2025-10-10','14:38:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,15,0,'2025-10-10','14:38:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,16,0,'2025-10-10','14:55:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,17,0,'2025-10-10','14:57:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,18,0,'2025-10-11','14:30:00','ROOM0001',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,19,0,'2025-10-11','14:30:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,20,0,'2025-10-11','14:30:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,21,0,'2025-10-11','14:30:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,22,0,'2025-10-11','14:31:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,36,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,23,0,'2025-10-11','14:32:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,24,0,'2025-10-11','14:33:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,25,0,'2025-10-11','14:33:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,26,0,'2025-10-11','14:34:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,27,0,'2025-10-11','14:57:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,28,0,'2025-10-12','14:31:00','ROOM0001',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,29,0,'2025-10-12','14:32:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,30,0,'2025-10-12','14:32:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,31,0,'2025-10-12','14:32:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,32,0,'2025-10-12','14:32:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,33,0,'2025-10-12','14:33:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,34,0,'2025-10-12','14:33:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,35,0,'2025-10-12','14:34:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,36,0,'2025-10-12','14:57:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,37,0,'2025-10-13','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,38,0,'2025-10-13','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,39,0,'2025-10-13','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,40,0,'2025-10-13','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,41,0,'2025-10-13','03:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,42,0,'2025-10-13','11:14:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,43,0,'2025-10-13','12:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,44,0,'2025-10-13','12:06:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,45,0,'2025-10-13','12:06:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,46,0,'2025-10-13','12:07:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,47,0,'2025-10-13','12:29:00','WPRC0092',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,48,0,'2025-10-13','20:13:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,49,0,'2025-10-14','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,50,0,'2025-10-14','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,51,0,'2025-10-14','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,52,0,'2025-10-14','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,53,0,'2025-10-14','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,54,0,'2025-10-14','12:30:00','XRY0045',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,55,0,'2025-10-14','12:31:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,56,0,'2025-10-14','12:32:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,57,0,'2025-10-14','12:34:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,58,0,'2025-10-14','12:34:00','WPRC0089',0,8.00,100,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,59,0,'2025-10-14','12:35:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,60,0,'2025-10-14','12:35:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,61,0,'2025-10-14','12:36:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,62,0,'2025-10-14','20:13:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,63,0,'2025-10-15','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,64,0,'2025-10-15','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,65,0,'2025-10-15','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,66,0,'2025-10-15','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,67,0,'2025-10-15','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,68,0,'2025-10-15','20:12:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,69,0,'2025-10-15','20:12:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,70,0,'2025-10-15','20:13:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,71,0,'2025-10-15','20:14:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,72,0,'2025-10-15','20:14:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,73,0,'2025-10-15','20:42:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,74,0,'2025-10-16','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,75,0,'2025-10-16','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,76,0,'2025-10-16','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,77,0,'2025-10-16','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,78,0,'2025-10-16','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,79,0,'2025-10-16','20:40:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,80,0,'2025-10-16','20:41:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,81,0,'2025-10-16','20:42:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,82,0,'2025-10-16','20:42:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,83,0,'2025-10-16','20:42:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,84,0,'2025-10-17','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,85,0,'2025-10-17','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,86,0,'2025-10-17','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,87,0,'2025-10-17','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,88,0,'2025-10-17','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,89,0,'2025-10-17','18:32:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,90,0,'2025-10-17','18:32:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,91,0,'2025-10-17','18:32:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,92,0,'2025-10-17','18:33:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,93,0,'2025-10-17','18:38:00','WPRC0101',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,94,0,'2025-10-18','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,95,0,'2025-10-18','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,96,0,'2025-10-18','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,97,0,'2025-10-18','03:45:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,98,0,'2025-10-18','17:59:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,99,0,'2025-10-18','18:00:00','WPRC0089',0,5.00,100,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,100,0,'2025-10-18','18:39:00','WPRC0101',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,101,0,'2025-10-18','18:39:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,102,0,'2025-10-18','18:40:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,103,0,'2025-10-18','18:41:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,8,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,104,0,'2025-10-19','03:45:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,105,0,'2025-10-19','03:45:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,106,0,'2025-10-19','03:45:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,107,0,'2025-10-19','03:45:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,108,0,'2025-10-19','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,109,0,'2025-10-19','14:37:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,79,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,110,0,'2025-10-19','18:35:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,111,0,'2025-10-19','18:35:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,112,0,'2025-10-19','18:39:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,113,0,'2025-10-19','18:39:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,114,0,'2025-10-19','18:40:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,115,0,'2025-10-20','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,116,0,'2025-10-20','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,117,0,'2025-10-20','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,118,0,'2025-10-20','03:45:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,119,0,'2025-10-20','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,120,0,'2025-10-20','14:37:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,121,0,'2025-10-20','14:37:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,122,0,'2025-10-20','14:38:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,123,0,'2025-10-20','14:38:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,124,0,'2025-10-20','14:38:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,125,0,'2025-10-21','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,126,0,'2025-10-21','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,127,0,'2025-10-21','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,128,0,'2025-10-21','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,129,0,'2025-10-21','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,130,0,'2025-10-21','17:30:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,131,0,'2025-10-21','17:30:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,132,0,'2025-10-21','17:33:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,133,0,'2025-10-21','17:33:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,134,0,'2025-10-22','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,135,0,'2025-10-22','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,136,0,'2025-10-22','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,137,0,'2025-10-22','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,8,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,138,0,'2025-10-22','17:30:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,139,0,'2025-10-22','17:30:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,140,0,'2025-10-22','17:33:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,141,0,'2025-10-22','17:33:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,142,0,'2025-10-23','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,143,0,'2025-10-23','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,144,0,'2025-10-23','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,145,0,'2025-10-23','03:45:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,8,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,146,0,'2025-10-23','17:29:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,147,0,'2025-10-23','17:30:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,148,0,'2025-10-23','17:30:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,149,0,'2025-10-23','17:32:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,150,0,'2025-10-23','17:33:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,151,0,'2025-10-23','17:33:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,152,0,'2025-10-24','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,153,0,'2025-10-24','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,154,0,'2025-10-24','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,155,0,'2025-10-24','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,8,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,156,0,'2025-10-24','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,8,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,157,0,'2025-10-24','11:08:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,158,0,'2025-10-24','11:10:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,159,0,'2025-10-24','11:11:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,160,0,'2025-10-24','11:11:00','WPRC0101',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,161,0,'2025-10-24','11:15:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,162,0,'2025-10-24','19:31:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,163,0,'2025-10-24','19:33:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,164,0,'2025-10-24','20:00:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,2,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,165,0,'2025-10-25','03:45:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,166,0,'2025-10-25','03:45:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,167,0,'2025-10-25','03:45:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,168,0,'2025-10-25','03:45:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,8,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,169,0,'2025-10-25','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,8,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,170,0,'2025-10-25','11:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,171,0,'2025-10-25','11:10:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,172,0,'2025-10-25','11:10:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,173,0,'2025-10-25','11:11:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,174,0,'2025-10-25','11:12:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,175,0,'2025-10-26','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,176,0,'2025-10-26','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,177,0,'2025-10-26','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,178,0,'2025-10-26','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,8,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,179,0,'2025-10-26','03:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,8,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,180,0,'2025-10-26','15:10:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,181,0,'2025-10-26','15:10:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,182,0,'2025-10-26','15:13:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,183,0,'2025-10-26','15:14:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,184,0,'2025-10-26','15:14:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,185,0,'2025-10-26','15:15:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,186,0,'2025-10-26','15:15:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,187,0,'2025-10-27','03:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,188,0,'2025-10-27','03:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,189,0,'2025-10-27','03:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,190,0,'2025-10-27','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,191,0,'2025-10-27','03:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,192,0,'2025-10-27','15:10:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,193,0,'2025-10-27','15:11:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,194,0,'2025-10-27','15:13:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,195,0,'2025-10-27','15:14:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,196,0,'2025-10-27','15:15:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,197,0,'2025-10-27','15:15:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,198,0,'2025-10-27','15:15:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,199,0,'2025-10-28','03:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,200,0,'2025-10-28','11:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,201,0,'2025-10-28','11:01:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,202,0,'2025-10-28','11:01:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,203,0,'2025-10-28','11:06:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,204,0,'2025-10-28','11:07:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,205,0,'2025-10-28','11:23:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,206,0,'2025-10-28','11:23:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,207,0,'2025-10-28','11:23:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,208,0,'2025-10-28','14:21:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,209,0,'2025-10-28','14:31:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,210,0,'2025-10-28','14:32:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,211,0,'2025-10-28','14:35:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,212,0,'2025-10-29','03:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,213,0,'2025-10-29','03:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,214,0,'2025-10-29','03:45:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,215,0,'2025-10-29','03:45:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,216,0,'2025-10-29','03:45:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,217,0,'2025-10-29','11:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,218,0,'2025-10-29','11:06:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,219,0,'2025-10-29','11:07:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,220,0,'2025-10-29','11:07:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,221,0,'2025-10-29','11:45:00','USG0095',0,1.00,1200,1200,'A',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,222,0,'2025-10-29','11:51:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,37,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,223,0,'2025-10-29','14:31:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,224,0,'2025-10-29','14:32:00','WPRC0082',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,225,0,'2025-10-29','14:35:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,226,0,'2025-10-30','03:45:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,227,0,'2025-10-30','03:45:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,228,0,'2025-10-30','03:45:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,229,0,'2025-10-30','03:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,230,0,'2025-10-30','03:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,231,0,'2025-10-30','11:45:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,232,0,'2025-10-30','11:46:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,233,0,'2025-10-30','11:46:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,234,0,'2025-10-30','14:31:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,235,0,'2025-10-30','14:32:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,236,0,'2025-10-31','03:45:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,237,0,'2025-10-31','03:45:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,238,0,'2025-10-31','03:45:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,239,0,'2025-10-31','03:45:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,240,0,'2025-10-31','03:45:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,241,0,'2025-10-31','14:27:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,242,0,'2025-10-31','14:32:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,243,0,'2025-10-31','14:38:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,244,0,'2025-10-31','14:41:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,245,0,'2025-11-01','13:45:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,246,0,'2025-11-01','13:46:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,247,0,'2025-11-01','13:46:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,248,0,'2025-11-01','14:22:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,249,0,'2025-11-01','14:32:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,250,0,'2025-11-01','14:38:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,251,0,'2025-11-01','14:41:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',101,252,0,'2025-11-01','14:43:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:09:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,1,0,'2025-10-30','12:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,2,0,'2025-10-30','12:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,3,0,'2025-10-30','12:50:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,4,0,'2025-10-30','12:50:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,5,0,'2025-10-30','12:50:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,6,0,'2025-10-30','12:50:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,7,0,'2025-10-30','12:50:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,8,0,'2025-10-30','18:23:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,9,0,'2025-10-30','18:24:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,10,0,'2025-10-30','18:24:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,11,0,'2025-10-30','18:24:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,12,0,'2025-10-30','18:24:00','WPRC0092',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,13,0,'2025-10-30','18:25:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,14,0,'2025-10-30','18:25:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,15,0,'2025-10-30','18:29:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,16,0,'2025-10-30','18:29:00','WPRC0101',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,17,0,'2025-10-30','18:30:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,18,0,'2025-10-30','18:30:00','WPRC0087',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,19,0,'2025-10-30','18:30:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,20,0,'2025-10-31','12:50:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,21,0,'2025-10-31','12:50:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,22,0,'2025-10-31','12:50:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,23,0,'2025-10-31','12:50:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,24,0,'2025-10-31','12:50:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,25,0,'2025-10-31','18:28:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,26,0,'2025-10-31','18:28:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,27,0,'2025-10-31','18:30:00','WPRC0087',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,28,0,'2025-10-31','18:30:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,29,0,'2025-10-31','18:30:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,30,0,'2025-10-31','18:31:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,31,0,'2025-11-01','12:50:00','ROOM0009',0,0.50,5500,2750,'A',0,0,2750.00,0.00,0.00,2750.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,32,0,'2025-11-01','12:50:00','AECO0008',0,0.50,800,400,'A',0,0,400.00,0.00,0.00,400.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,33,0,'2025-11-01','12:50:00','CARE0001',0,0.50,600,300,'A',0,0,300.00,0.00,0.00,300.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,34,0,'2025-11-01','12:50:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,35,0,'2025-11-01','15:20:00','WPRC0078',0,2.00,300,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,36,0,'2025-11-01','15:21:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,37,0,'2025-11-01','15:21:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,38,0,'2025-11-01','15:22:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,39,0,'2025-11-01','15:22:00','WPRC0087',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',102,40,0,'2025-11-01','15:25:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-01 15:35:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,1,2,'2025-10-31','09:40:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,2,2,'2025-10-31','09:44:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,3,2,'2025-10-31','09:45:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,124,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,4,2,'2025-10-31','14:34:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,5,2,'2025-10-31','14:34:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,6,2,'2025-10-31','14:34:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,7,2,'2025-10-31','14:34:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,8,2,'2025-10-31','14:34:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,9,2,'2025-10-31','14:34:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,10,2,'2025-11-01','09:40:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,11,2,'2025-11-01','09:41:00','SURG0014',0,1.00,24000,24000,'P',0,0,24000.00,0.00,0.00,24000.00,'',0,124,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,12,2,'2025-11-01','09:42:00','SURG0015',0,1.00,7930,7930,'P',0,0,7930.00,0.00,0.00,7930.00,'',0,3,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,13,2,'2025-11-01','14:34:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,14,2,'2025-11-01','14:34:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,15,2,'2025-11-01','14:34:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,16,2,'2025-11-01','14:34:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,17,2,'2025-11-01','14:34:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,18,2,'2025-11-02','09:41:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,19,2,'2025-11-02','09:43:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','N','riya','2025-11-02 11:31:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,1,0,'2025-10-31','07:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,2,0,'2025-10-31','07:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,3,0,'2025-10-31','11:06:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,78,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,4,0,'2025-10-31','11:07:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,5,0,'2025-10-31','11:07:00','WPRC0097',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,6,0,'2025-10-31','11:07:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,7,0,'2025-10-31','11:07:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,8,0,'2025-10-31','11:07:00','ROOM0008',0,9.00,100,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,9,0,'2025-10-31','11:07:00','WPRC0084',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,10,0,'2025-10-31','11:07:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,11,0,'2025-10-31','11:08:00','WPRC0104',0,1.00,6000,6000,'A',0,0,6000.00,0.00,0.00,6000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,12,0,'2025-10-31','11:11:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,13,0,'2025-10-31','11:12:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,14,0,'2025-10-31','11:12:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,15,0,'2025-10-31','11:13:00','WPRC0087',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,16,0,'2025-10-31','11:17:00','OETR0002',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,17,0,'2025-10-31','17:57:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,18,0,'2025-10-31','17:57:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,19,0,'2025-10-31','17:57:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,20,0,'2025-10-31','17:58:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,21,0,'2025-10-31','17:58:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,22,0,'2025-11-01','07:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,23,0,'2025-11-01','07:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,24,0,'2025-11-01','07:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,25,0,'2025-11-01','07:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,26,0,'2025-11-01','07:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,27,0,'2025-11-01','11:06:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,28,0,'2025-11-01','11:10:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,29,0,'2025-11-01','11:11:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,30,0,'2025-11-01','11:12:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,31,0,'2025-11-01','11:12:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,32,0,'2025-11-01','11:13:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,33,0,'2025-11-02','07:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,34,0,'2025-11-02','11:10:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,35,0,'2025-11-02','11:11:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,36,0,'2025-11-02','11:12:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',104,37,0,'2025-11-02','11:14:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 11:26:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',106,1,0,'2025-11-01','17:35:00','SURG0015',0,1.00,7500,7500,'P',0,0,7500.00,0.00,0.00,7500.00,'',0,3,0,'',0,'','','','','','riya','2025-11-02 18:08:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',106,2,0,'2025-11-01','17:37:00','SURG0014',0,1.00,22000,22000,'P',0,0,22000.00,0.00,0.00,22000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-02 18:08:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',106,3,0,'2025-11-01','18:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 18:08:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',106,4,0,'2025-11-01','18:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-02 18:08:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',106,5,0,'2025-11-01','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-11-02 18:08:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',106,6,0,'2025-11-01','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-11-02 18:08:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',106,7,0,'2025-11-01','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-11-02 18:08:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',106,8,0,'2025-11-01','18:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-11-02 18:08:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',106,9,0,'2025-11-02','17:35:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-02 18:08:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,1,0,'2025-10-30','12:29:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,2,0,'2025-10-30','13:52:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,3,0,'2025-10-30','13:52:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,4,0,'2025-10-30','13:52:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,5,0,'2025-10-30','13:52:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,6,0,'2025-10-30','13:52:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,7,0,'2025-10-30','13:52:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,5,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,8,0,'2025-10-31','12:29:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,9,0,'2025-10-31','13:52:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,10,0,'2025-10-31','13:52:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,11,0,'2025-10-31','13:52:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,5,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,12,0,'2025-10-31','13:52:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,5,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,13,0,'2025-10-31','13:52:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,14,0,'2025-11-01','13:52:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,15,0,'2025-11-01','13:52:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,16,0,'2025-11-01','13:52:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,17,0,'2025-11-01','13:52:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,5,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,18,0,'2025-11-01','13:52:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,5,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,19,0,'2025-11-02','13:52:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,20,0,'2025-11-02','13:52:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,21,0,'2025-11-02','13:52:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,22,0,'2025-11-02','13:52:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,5,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,23,0,'2025-11-02','13:52:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,5,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',107,24,0,'2025-11-03','13:52:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,5,0,'',0,'','','','','','vishal','2025-11-03 13:19:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,1,0,'2025-10-30','12:15:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,2,0,'2025-10-30','12:15:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,3,0,'2025-10-30','12:22:00','DRC0021',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,4,0,'2025-10-30','13:56:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,5,0,'2025-10-30','13:56:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,6,0,'2025-10-30','13:56:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,7,0,'2025-10-30','13:56:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,8,0,'2025-10-30','13:56:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,9,0,'2025-10-30','13:56:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,10,0,'2025-10-31','12:15:00','USG0093',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,11,0,'2025-10-31','13:56:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,12,0,'2025-10-31','13:56:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,13,0,'2025-10-31','13:56:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,14,0,'2025-10-31','13:56:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,15,0,'2025-10-31','13:56:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,16,0,'2025-11-01','13:56:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,17,0,'2025-11-01','13:56:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,18,0,'2025-11-01','13:56:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,19,0,'2025-11-01','13:56:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,20,0,'2025-11-01','13:56:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,21,0,'2025-11-02','13:56:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,22,0,'2025-11-02','13:56:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,23,0,'2025-11-02','13:56:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,24,0,'2025-11-02','13:56:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,25,0,'2025-11-02','13:56:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',108,26,0,'2025-11-03','12:22:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-03 13:47:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,1,0,'2025-10-28','13:05:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,2,0,'2025-10-28','13:05:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,3,0,'2025-10-28','13:06:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,4,0,'2025-10-28','13:06:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,5,0,'2025-10-28','13:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,6,0,'2025-10-28','13:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,7,0,'2025-10-28','13:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,8,0,'2025-10-28','13:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,9,0,'2025-10-28','13:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,10,0,'2025-10-28','13:50:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'410',0,3,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,11,0,'2025-10-29','12:45:00','SURG0017',0,1.00,30000,30000,'P',0,0,30000.00,0.00,0.00,30000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,12,0,'2025-10-29','13:06:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,13,0,'2025-10-29','13:50:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,14,0,'2025-10-29','13:50:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,15,0,'2025-10-29','13:50:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,16,0,'2025-10-29','13:50:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,17,0,'2025-10-29','13:50:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,3,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,18,0,'2025-10-29','18:03:00','SURG0015',0,1.00,15000,15000,'A',0,0,15000.00,0.00,0.00,15000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,19,0,'2025-10-29','18:03:00','SURG0014',0,1.00,30000,30000,'A',0,0,30000.00,0.00,0.00,30000.00,'',0,70,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,20,0,'2025-10-29','19:14:00','WPRC0092',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,39,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,21,0,'2025-10-29','19:15:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,22,0,'2025-10-29','19:15:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,23,0,'2025-10-30','13:50:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,24,0,'2025-10-30','13:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,25,0,'2025-10-30','13:50:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,3,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,26,0,'2025-10-30','13:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,27,0,'2025-10-30','18:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,28,0,'2025-10-30','19:14:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,29,0,'2025-10-30','19:17:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,70,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,30,0,'2025-10-31','13:50:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,31,0,'2025-10-31','13:50:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,32,0,'2025-10-31','13:50:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,33,0,'2025-10-31','13:50:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,34,0,'2025-10-31','18:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,35,0,'2025-10-31','19:14:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,36,0,'2025-10-31','19:17:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,70,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,37,0,'2025-11-01','13:10:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,38,0,'2025-11-01','13:10:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,39,0,'2025-11-01','13:15:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,70,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,40,0,'2025-11-01','13:50:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,41,0,'2025-11-01','13:50:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,42,0,'2025-11-01','13:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,43,0,'2025-11-01','13:50:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,44,0,'2025-11-01','13:50:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,45,0,'2025-11-02','13:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,46,0,'2025-11-02','13:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,47,0,'2025-11-02','13:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,48,0,'2025-11-02','13:50:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'411',0,3,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,49,0,'2025-11-03','12:41:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',109,50,0,'2025-11-03','12:43:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 14:22:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,1,0,'2025-10-31','09:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,2,0,'2025-10-31','09:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,3,0,'2025-10-31','09:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,3,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,4,0,'2025-10-31','09:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,5,0,'2025-10-31','09:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,6,0,'2025-10-31','09:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,7,0,'2025-10-31','11:07:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,8,0,'2025-10-31','11:10:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,9,0,'2025-10-31','11:10:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,10,0,'2025-10-31','11:10:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,11,0,'2025-10-31','11:11:00','WPRC0086',0,3.00,200,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,12,0,'2025-10-31','17:29:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,13,0,'2025-10-31','17:31:00','SURG0014',0,1.00,51000,51000,'P',0,0,51000.00,0.00,0.00,51000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,14,0,'2025-10-31','17:31:00','SURG0015',0,1.00,16790,16790,'P',0,0,16790.00,0.00,0.00,16790.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,15,0,'2025-11-01','09:15:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'211',0,3,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,16,0,'2025-11-01','09:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,17,0,'2025-11-01','09:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,18,0,'2025-11-01','09:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,19,0,'2025-11-01','11:09:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,20,0,'2025-11-01','11:11:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,21,0,'2025-11-02','17:29:00','ROOM0009',0,0.50,3200,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,22,0,'2025-11-02','17:29:00','CARE0005',0,0.50,400,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,23,0,'2025-11-02','17:29:00','CARE0001',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',110,24,0,'2025-11-02','17:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-03 18:11:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',111,1,0,'2025-11-02','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:22:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',111,2,0,'2025-11-02','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:22:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',111,3,0,'2025-11-02','13:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:22:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',111,4,0,'2025-11-02','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:22:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',111,5,0,'2025-11-02','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:22:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',111,6,0,'2025-11-02','13:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,7,0,'',0,'','','','','','vishal','2025-11-03 19:22:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',111,7,0,'2025-11-02','13:39:00','ADMN0007',0,1.00,5000,5000,'A',0,0,5000.00,0.00,0.00,5000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:22:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',111,8,0,'2025-11-02','19:04:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:22:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',111,9,0,'2025-11-02','19:04:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:22:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',111,10,0,'2025-11-02','19:04:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:22:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',111,11,0,'2025-11-03','13:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'410',0,7,0,'',0,'','','','','','vishal','2025-11-03 19:22:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',111,12,0,'2025-11-03','19:02:00','ROOM0009',0,0.50,2900,1450,'P',0,0,1450.00,0.00,0.00,1450.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:22:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',111,13,0,'2025-11-03','19:02:00','CARE0001',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:22:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',111,14,0,'2025-11-03','19:02:00','AECO0008',0,0.50,300,150,'P',0,0,150.00,0.00,0.00,150.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-03 19:22:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',111,15,0,'2025-11-03','19:03:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-03 19:22:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',111,16,0,'2025-11-03','19:03:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','','','vishal','2025-11-03 19:22:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',111,17,0,'2025-11-03','19:08:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,7,0,'',0,'','','','','','vishal','2025-11-03 19:22:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',112,1,0,'2025-11-03','09:54:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 12:07:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',112,2,0,'2025-11-03','09:54:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 12:07:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',112,3,0,'2025-11-03','09:54:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-11-04 12:07:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',112,4,0,'2025-11-03','09:54:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-11-04 12:07:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',112,5,0,'2025-11-03','09:54:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-11-04 12:07:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',112,6,0,'2025-11-03','09:54:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','vishal','2025-11-04 12:07:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',112,7,0,'2025-11-03','11:57:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 12:07:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',112,8,0,'2025-11-03','11:57:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 12:07:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',112,9,0,'2025-11-03','11:58:00','SURG0014',0,1.00,9000,9000,'P',0,0,9000.00,0.00,0.00,9000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-04 12:07:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',112,10,0,'2025-11-03','11:58:00','SURG0015',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-04 12:07:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',112,11,0,'2025-11-04','09:54:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','vishal','2025-11-04 12:07:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',112,12,0,'2025-11-04','11:57:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 12:07:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',112,13,0,'2025-11-04','11:57:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-04 12:07:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,1,0,'2025-10-28','11:37:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,2,0,'2025-10-28','11:38:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,3,0,'2025-10-28','11:38:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,4,0,'2025-10-28','12:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,5,0,'2025-10-28','12:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,6,0,'2025-10-28','12:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,7,0,'2025-10-28','12:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,8,0,'2025-10-28','12:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,9,0,'2025-10-28','12:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,10,0,'2025-10-28','17:14:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,11,0,'2025-10-28','17:50:00','SURG0015',0,1.00,3400,3400,'P',0,0,3400.00,0.00,0.00,3400.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,12,0,'2025-10-28','17:50:00','SURG0014',0,1.00,10200,10200,'P',0,0,10200.00,0.00,0.00,10200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,13,0,'2025-10-29','11:37:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,14,0,'2025-10-29','11:38:00','WPRC0087',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,15,0,'2025-10-29','12:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,16,0,'2025-10-29','12:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,17,0,'2025-10-29','17:11:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,18,0,'2025-10-29','17:12:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,19,0,'2025-10-29','17:12:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,20,0,'2025-10-30','11:35:00','WPRC0092',0,1.00,2500,2500,'A',0,0,2500.00,0.00,0.00,2500.00,'',0,39,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,21,0,'2025-10-30','11:37:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,22,0,'2025-10-30','11:39:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,23,0,'2025-10-30','11:39:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,24,0,'2025-10-30','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,25,0,'2025-10-30','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,26,0,'2025-10-30','12:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,27,0,'2025-10-30','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,28,0,'2025-10-30','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,29,0,'2025-10-31','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,30,0,'2025-10-31','12:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,31,0,'2025-10-31','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,32,0,'2025-10-31','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,33,0,'2025-10-31','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,34,0,'2025-10-31','17:16:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,35,0,'2025-10-31','17:17:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,36,0,'2025-11-01','12:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,37,0,'2025-11-01','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,38,0,'2025-11-01','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,39,0,'2025-11-01','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,40,0,'2025-11-01','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,41,0,'2025-11-01','17:14:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,42,0,'2025-11-01','17:15:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,43,0,'2025-11-01','17:16:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,44,0,'2025-11-01','17:18:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,45,0,'2025-11-01','17:19:00','WPRC0083',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,46,0,'2025-11-02','12:30:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,47,0,'2025-11-02','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,48,0,'2025-11-02','12:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,49,0,'2025-11-02','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,50,0,'2025-11-02','17:16:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,51,0,'2025-11-02','17:18:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,52,0,'2025-11-03','12:30:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,53,0,'2025-11-03','12:30:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,54,0,'2025-11-03','12:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,55,0,'2025-11-03','12:30:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,56,0,'2025-11-03','12:30:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,57,0,'2025-11-03','17:16:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,58,0,'2025-11-03','17:18:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,59,0,'2025-11-03','17:19:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,60,0,'2025-11-04','12:30:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,61,0,'2025-11-04','12:30:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,62,0,'2025-11-04','17:16:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',113,63,0,'2025-11-04','17:19:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 17:55:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,1,0,'2025-11-02','19:30:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,2,0,'2025-11-02','19:31:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,3,0,'2025-11-02','19:31:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,4,0,'2025-11-02','19:32:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,5,0,'2025-11-02','23:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,6,0,'2025-11-02','23:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,7,0,'2025-11-02','23:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,8,0,'2025-11-02','23:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,9,0,'2025-11-02','23:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,10,0,'2025-11-03','19:31:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,11,0,'2025-11-03','19:31:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,12,0,'2025-11-03','19:31:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,13,0,'2025-11-03','19:32:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,14,0,'2025-11-03','19:32:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,15,0,'2025-11-03','23:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,16,0,'2025-11-03','23:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,17,0,'2025-11-03','23:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,18,0,'2025-11-03','23:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,19,0,'2025-11-03','23:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,20,0,'2025-11-04','19:02:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,21,0,'2025-11-04','19:02:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,22,0,'2025-11-04','23:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'207',0,5,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',114,23,0,'2025-11-04','23:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'207',0,5,0,'',0,'','','','','','vishal','2025-11-04 19:36:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,1,0,'2025-10-31','10:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,2,0,'2025-10-31','10:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,3,0,'2025-10-31','10:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,4,0,'2025-10-31','10:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,5,0,'2025-10-31','10:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,6,0,'2025-10-31','10:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,7,0,'2025-10-31','10:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,8,0,'2025-10-31','20:06:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,9,0,'2025-10-31','20:06:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,10,0,'2025-10-31','20:06:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,11,0,'2025-10-31','20:07:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,115,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,12,0,'2025-11-01','09:36:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,13,0,'2025-11-01','09:38:00','WPRC0100',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,14,0,'2025-11-01','09:45:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,135,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,15,0,'2025-11-01','20:16:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,16,0,'2025-11-01','20:16:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,17,0,'2025-11-01','20:16:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,18,0,'2025-11-01','20:17:00','ROOM0005',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,19,0,'2025-11-01','20:17:00','ROOM0006',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,20,0,'2025-11-02','09:36:00','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,21,0,'2025-11-02','09:48:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,22,0,'2025-11-02','10:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,23,0,'2025-11-02','10:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,24,0,'2025-11-02','10:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,25,0,'2025-11-02','10:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,26,0,'2025-11-02','10:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,27,0,'2025-11-03','09:37:00','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,28,0,'2025-11-03','10:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,29,0,'2025-11-03','10:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,30,0,'2025-11-03','10:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,36,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,31,0,'2025-11-03','10:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,32,0,'2025-11-03','10:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,33,0,'2025-11-04','09:37:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,34,0,'2025-11-04','10:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,35,0,'2025-11-04','10:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,36,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,36,0,'2025-11-04','10:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,36,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,37,0,'2025-11-04','10:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,38,0,'2025-11-04','10:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',115,39,0,'2025-11-05','09:37:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-05 11:15:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',116,1,0,'2025-11-04','12:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-05 20:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',116,2,0,'2025-11-04','12:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-05 20:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',116,3,0,'2025-11-04','12:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-05 20:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',116,4,0,'2025-11-04','12:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-05 20:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',116,5,0,'2025-11-04','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-05 20:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',116,6,0,'2025-11-04','12:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,5,0,'',0,'','','','','','vishal','2025-11-05 20:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',116,7,0,'2025-11-04','12:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,5,0,'',0,'','','','','','vishal','2025-11-05 20:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',116,8,0,'2025-11-04','19:57:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-05 20:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',116,9,0,'2025-11-05','12:00:00','ROOM0009',0,0.50,3200,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-05 20:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',116,10,0,'2025-11-05','12:00:00','AECO0008',0,0.50,400,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-05 20:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',116,11,0,'2025-11-05','12:00:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-05 20:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',116,12,0,'2025-11-05','12:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,5,0,'',0,'','','','','','vishal','2025-11-05 20:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',116,13,0,'2025-11-05','12:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,5,0,'',0,'','','','','','vishal','2025-11-05 20:05:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',117,1,0,'2025-11-05','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-05 21:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',117,2,0,'2025-11-05','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-05 21:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',117,3,0,'2025-11-05','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-11-05 21:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',117,4,0,'2025-11-05','21:01:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-05 21:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',117,5,0,'2025-11-05','21:03:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-05 21:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',117,6,0,'2025-11-05','21:04:00','SURG0014',0,1.00,12200,12200,'P',0,0,12200.00,0.00,0.00,12200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-05 21:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',117,7,0,'2025-11-05','21:04:00','SURG0015',0,1.00,4100,4100,'P',0,0,4100.00,0.00,0.00,4100.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-05 21:09:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,1,0,'2025-09-28','09:57:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,2,0,'2025-09-28','09:57:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,3,0,'2025-09-28','09:57:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,4,0,'2025-09-28','09:57:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,5,0,'2025-09-28','09:57:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,6,0,'2025-09-28','09:57:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,7,0,'2025-09-28','09:57:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,8,0,'2025-09-28','19:23:00','ROOM0008',0,7.00,100,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,9,0,'2025-09-28','19:25:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,10,0,'2025-09-29','09:57:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,11,0,'2025-09-29','09:57:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,12,0,'2025-09-29','09:57:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,13,0,'2025-09-29','09:57:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,14,0,'2025-09-29','09:57:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,15,0,'2025-09-29','19:23:00','ROOM0008',0,7.00,100,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,16,0,'2025-09-29','19:23:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,17,0,'2025-09-29','19:24:00','WPRC0090',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,18,0,'2025-09-29','19:25:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,19,0,'2025-09-29','19:31:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,20,0,'2025-09-30','09:57:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,21,0,'2025-09-30','09:57:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,22,0,'2025-09-30','09:57:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,23,0,'2025-09-30','09:57:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,24,0,'2025-09-30','09:57:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,25,0,'2025-09-30','19:24:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,26,0,'2025-09-30','19:24:00','USG0092',0,1.00,1200,1200,'A',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,27,0,'2025-09-30','19:25:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,28,0,'2025-10-01','09:57:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,29,0,'2025-10-01','09:57:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,30,0,'2025-10-01','09:57:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,31,0,'2025-10-01','09:57:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,32,0,'2025-10-01','09:57:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,33,0,'2025-10-01','19:25:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,34,0,'2025-10-01','19:28:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,35,0,'2025-10-02','09:57:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,36,0,'2025-10-02','09:57:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,37,0,'2025-10-02','09:57:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,38,0,'2025-10-02','09:57:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,39,0,'2025-10-02','19:25:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,40,0,'2025-10-02','19:26:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',118,41,0,'2025-10-02','19:28:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 19:38:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,1,0,'2025-10-11','09:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,2,0,'2025-10-11','09:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,3,0,'2025-10-11','09:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,4,0,'2025-10-11','09:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,5,0,'2025-10-11','09:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'401',0,3,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,6,0,'2025-10-11','09:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,7,0,'2025-10-11','09:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,8,0,'2025-10-11','10:35:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,9,0,'2025-10-11','10:35:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,10,0,'2025-10-11','10:36:00','WPRC0086',0,2.00,200,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,11,0,'2025-10-11','10:39:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,12,0,'2025-10-12','09:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,13,0,'2025-10-12','09:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,14,0,'2025-10-12','09:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,15,0,'2025-10-12','10:34:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,16,0,'2025-10-12','10:39:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,17,0,'2025-10-12','17:49:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,18,0,'2025-10-13','09:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,19,0,'2025-10-13','09:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,20,0,'2025-10-13','17:49:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,21,0,'2025-10-13','17:49:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,22,0,'2025-10-13','17:49:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',119,23,0,'2025-10-13','18:51:00','OETR0004',0,1.00,104570,104570,'P',0,0,104570.00,0.00,0.00,104570.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-06 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,1,0,'2025-11-03','11:16:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,2,0,'2025-11-03','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,3,0,'2025-11-03','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,4,0,'2025-11-03','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,5,0,'2025-11-03','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,6,0,'2025-11-03','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,7,0,'2025-11-03','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,8,0,'2025-11-03','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,9,0,'2025-11-04','11:16:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,10,0,'2025-11-04','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,11,0,'2025-11-04','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,12,0,'2025-11-04','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,13,0,'2025-11-04','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,14,0,'2025-11-04','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,15,0,'2025-11-05','11:16:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,16,0,'2025-11-05','11:18:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,88,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,17,0,'2025-11-05','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,18,0,'2025-11-05','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,19,0,'2025-11-05','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,20,0,'2025-11-05','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,21,0,'2025-11-05','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,22,0,'2025-11-06','11:17:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,23,0,'2025-11-06','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,24,0,'2025-11-06','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,25,0,'2025-11-06','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,26,0,'2025-11-06','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,27,0,'2025-11-06','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,28,0,'2025-11-07','12:10:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',120,29,0,'2025-11-07','12:11:00','ROOM0005',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 12:29:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,1,0,'2025-10-31','15:42:00','ADMN0007',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,2,0,'2025-10-31','15:42:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,3,0,'2025-10-31','15:42:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,4,0,'2025-10-31','15:42:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,5,0,'2025-10-31','15:43:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,6,0,'2025-10-31','15:46:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,7,0,'2025-10-31','20:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,8,0,'2025-10-31','20:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,9,0,'2025-10-31','20:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,10,0,'2025-10-31','20:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,11,0,'2025-10-31','20:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,12,0,'2025-11-01','15:43:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,13,0,'2025-11-01','15:46:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,14,0,'2025-11-01','20:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,15,0,'2025-11-01','20:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,16,0,'2025-11-01','20:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,17,0,'2025-11-01','20:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,18,0,'2025-11-01','20:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,19,0,'2025-11-01','21:44:00','WPRC0106',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,20,0,'2025-11-02','12:32:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,21,0,'2025-11-02','15:43:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,22,0,'2025-11-02','20:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,23,0,'2025-11-02','20:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,24,0,'2025-11-02','20:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,25,0,'2025-11-02','20:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,26,0,'2025-11-02','20:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,27,0,'2025-11-03','20:08:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,28,0,'2025-11-03','20:09:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,29,0,'2025-11-03','20:09:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,20,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,30,0,'2025-11-03','20:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,31,0,'2025-11-03','20:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,32,0,'2025-11-03','20:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,33,0,'2025-11-03','20:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,36,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,34,0,'2025-11-03','20:45:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,35,0,'2025-11-04','20:08:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,36,0,'2025-11-04','20:09:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,37,0,'2025-11-04','20:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,38,0,'2025-11-04','20:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,36,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,39,0,'2025-11-04','20:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,40,0,'2025-11-04','20:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,41,0,'2025-11-04','20:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,36,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,42,0,'2025-11-05','13:46:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,43,0,'2025-11-05','13:46:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,44,0,'2025-11-05','20:45:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,45,0,'2025-11-05','20:45:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,36,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,46,0,'2025-11-05','20:45:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,36,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,47,0,'2025-11-05','20:45:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,48,0,'2025-11-05','20:45:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,49,0,'2025-11-06','11:14:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,50,0,'2025-11-06','20:45:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,51,0,'2025-11-06','20:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,52,0,'2025-11-06','20:45:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,36,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,53,0,'2025-11-06','20:45:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,36,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,54,0,'2025-11-06','20:45:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,55,0,'2025-11-07','12:13:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',121,56,0,'2025-11-07','12:15:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,36,0,'',0,'','','','','','riya','2025-11-07 13:09:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',122,1,0,'2025-11-06','09:20:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:08:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',122,2,0,'2025-11-06','09:20:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:08:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',122,3,0,'2025-11-06','09:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:08:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',122,4,0,'2025-11-06','09:20:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:08:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',122,5,0,'2025-11-06','09:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:08:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',122,6,0,'2025-11-06','09:20:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','riya','2025-11-07 19:08:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',122,7,0,'2025-11-06','09:20:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','riya','2025-11-07 19:08:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',122,8,0,'2025-11-06','18:58:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:08:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',122,9,0,'2025-11-06','19:02:00','SURG0014',0,1.00,37000,37000,'P',0,0,37000.00,0.00,0.00,37000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-07 19:08:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',122,10,0,'2025-11-06','19:02:00','SURG0015',0,1.00,12300,12300,'P',0,0,12300.00,0.00,0.00,12300.00,'',0,3,0,'',0,'','','','','','riya','2025-11-07 19:08:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',122,11,0,'2025-11-07','09:20:00','ROOM0009',0,0.50,3200,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:08:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',122,12,0,'2025-11-07','09:20:00','AECO0008',0,0.50,400,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:08:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',122,13,0,'2025-11-07','09:20:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-07 19:08:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',122,14,0,'2025-11-07','09:20:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','riya','2025-11-07 19:08:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',122,15,0,'2025-11-07','09:20:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','riya','2025-11-07 19:08:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,1,0,'2025-11-01','12:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,2,0,'2025-11-01','12:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,3,0,'2025-11-01','12:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,4,0,'2025-11-01','12:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,5,0,'2025-11-01','12:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,6,0,'2025-11-01','12:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,7,0,'2025-11-01','12:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,8,0,'2025-11-01','13:50:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,9,0,'2025-11-01','13:50:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,10,0,'2025-11-01','13:51:00','WPRC0101',0,2.00,400,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,11,0,'2025-11-01','13:51:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,12,0,'2025-11-01','13:51:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,13,0,'2025-11-02','08:59:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,14,0,'2025-11-02','08:59:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,15,0,'2025-11-02','08:59:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,16,0,'2025-11-02','09:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,17,0,'2025-11-02','12:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,18,0,'2025-11-02','13:51:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,19,0,'2025-11-02','13:52:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,20,0,'2025-11-03','11:23:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,21,0,'2025-11-03','11:24:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,22,0,'2025-11-03','11:25:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,23,0,'2025-11-03','11:25:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,24,0,'2025-11-03','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,36,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,25,0,'2025-11-03','12:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'310',0,5,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,26,0,'2025-11-03','12:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'310',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,27,0,'2025-11-03','12:00:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'310',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,28,0,'2025-11-03','12:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'310',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,29,0,'2025-11-04','11:23:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,30,0,'2025-11-04','11:25:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,31,0,'2025-11-04','11:25:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,32,0,'2025-11-04','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,36,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,33,0,'2025-11-04','12:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'410',0,36,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,34,0,'2025-11-04','12:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,35,0,'2025-11-04','12:00:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,36,0,'2025-11-04','12:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,37,0,'2025-11-05','11:24:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,38,0,'2025-11-05','11:24:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,39,0,'2025-11-05','11:25:00','WPRC0089',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,40,0,'2025-11-05','11:27:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,41,0,'2025-11-05','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,36,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,42,0,'2025-11-05','12:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,43,0,'2025-11-05','12:00:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,44,0,'2025-11-05','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,45,0,'2025-11-05','12:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,36,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,46,0,'2025-11-06','09:07:00','WPRC0107',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,47,0,'2025-11-06','11:24:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,48,0,'2025-11-06','11:26:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,49,0,'2025-11-06','12:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,50,0,'2025-11-06','12:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,51,0,'2025-11-06','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,52,0,'2025-11-06','12:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,36,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,53,0,'2025-11-06','12:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,36,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,54,0,'2025-11-06','15:24:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,55,0,'2025-11-07','12:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,56,0,'2025-11-07','12:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'410',0,36,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,57,0,'2025-11-07','12:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'410',0,36,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,58,0,'2025-11-07','12:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,59,0,'2025-11-07','12:00:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,60,0,'2025-11-07','15:11:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,61,0,'2025-11-07','15:20:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,62,0,'2025-11-07','15:20:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,63,0,'2025-11-08','09:05:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',123,64,0,'2025-11-08','09:05:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 09:27:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',124,1,0,'2025-11-06','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',124,2,0,'2025-11-06','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',124,3,0,'2025-11-06','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',124,4,0,'2025-11-06','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',124,5,0,'2025-11-06','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',124,6,0,'2025-11-06','15:00:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'305',0,42,0,'',0,'','','','','','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',124,7,0,'2025-11-06','15:33:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',124,8,0,'2025-11-07','15:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',124,9,0,'2025-11-07','15:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',124,10,0,'2025-11-07','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',124,11,0,'2025-11-07','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',124,12,0,'2025-11-07','15:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',124,13,0,'2025-11-07','15:33:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',124,14,0,'2025-11-07','15:34:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',124,15,0,'2025-11-07','15:35:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,150,0,'',0,'','','','','','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',124,16,0,'2025-11-08','11:48:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',124,17,0,'2025-11-08','11:49:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',124,18,0,'2025-11-08','11:49:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-08 12:23:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',125,1,0,'2025-11-08','09:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',125,2,0,'2025-11-08','09:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',125,3,0,'2025-11-08','09:45:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',125,4,0,'2025-11-08','09:45:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',125,5,0,'2025-11-08','09:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',125,6,0,'2025-11-08','09:45:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','riya','2025-11-09 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',125,7,0,'2025-11-08','09:45:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','riya','2025-11-09 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',125,8,0,'2025-11-08','11:56:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',125,9,0,'2025-11-08','11:57:00','SURG0016',0,1.00,13800,13800,'P',0,0,13800.00,0.00,0.00,13800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-09 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',125,10,0,'2025-11-08','11:57:00','SURG0015',0,1.00,4600,4600,'P',0,0,4600.00,0.00,0.00,4600.00,'',0,3,0,'',0,'','','','','','riya','2025-11-09 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',125,11,0,'2025-11-09','11:57:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-09 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',125,12,0,'2025-11-09','11:58:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-09 12:01:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,1,0,'2025-11-06','12:05:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,2,0,'2025-11-06','12:05:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,3,0,'2025-11-06','12:05:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,4,0,'2025-11-06','12:09:00','ROOM0006',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,5,0,'2025-11-06','12:16:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,6,0,'2025-11-06','15:45:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,7,0,'2025-11-06','15:45:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,8,0,'2025-11-06','18:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,9,0,'2025-11-06','18:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,10,0,'2025-11-07','08:53:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,11,0,'2025-11-07','10:23:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,12,0,'2025-11-07','15:45:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,13,0,'2025-11-07','15:45:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,14,0,'2025-11-07','18:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,15,0,'2025-11-07','18:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,16,0,'2025-11-07','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,17,0,'2025-11-07','18:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,18,0,'2025-11-07','18:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,19,0,'2025-11-08','08:52:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,20,0,'2025-11-08','08:53:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,21,0,'2025-11-08','18:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,22,0,'2025-11-08','18:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,23,0,'2025-11-08','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,24,0,'2025-11-08','18:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,25,0,'2025-11-08','18:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,26,0,'2025-11-09','08:52:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',126,27,0,'2025-11-09','08:53:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','riya','2025-11-09 12:22:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',127,1,0,'2025-11-08','11:53:00','SURG0016',0,1.00,12600,12600,'P',0,0,12600.00,0.00,0.00,12600.00,'',0,6,0,'',0,'','','','','','riya','2025-11-09 18:28:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',127,2,0,'2025-11-08','11:53:00','SURG0015',0,1.00,4200,4200,'P',0,0,4200.00,0.00,0.00,4200.00,'',0,6,0,'',0,'','','','','','riya','2025-11-09 18:28:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',127,3,0,'2025-11-08','18:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:28:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',127,4,0,'2025-11-08','18:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:28:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',127,5,0,'2025-11-08','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:28:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',127,6,0,'2025-11-08','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:28:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',127,7,0,'2025-11-08','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:28:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',127,8,0,'2025-11-08','18:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,6,0,'',0,'','','','','','riya','2025-11-09 18:28:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',127,9,0,'2025-11-09','11:52:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','riya','2025-11-09 18:28:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',127,10,0,'2025-11-09','18:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,6,0,'',0,'','','','','','riya','2025-11-09 18:28:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',128,1,0,'2025-11-08','17:40:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,6,0,'',0,'','','','','','riya','2025-11-09 18:37:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',128,2,0,'2025-11-08','19:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:37:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',128,3,0,'2025-11-08','19:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:37:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',128,4,0,'2025-11-08','19:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:37:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',128,5,0,'2025-11-08','19:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:37:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',128,6,0,'2025-11-08','19:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:37:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',128,7,0,'2025-11-08','19:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,6,0,'',0,'','','','','','riya','2025-11-09 18:37:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',128,8,0,'2025-11-08','19:22:00','SURG0016',0,1.00,11000,11000,'P',0,0,11000.00,0.00,0.00,11000.00,'',0,6,0,'',0,'','','','','','riya','2025-11-09 18:37:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',128,9,0,'2025-11-09','11:49:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-09 18:37:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',128,10,0,'2025-11-09','17:39:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','riya','2025-11-09 18:37:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',128,11,0,'2025-11-08','17:41:00','SURG0015',0,1.00,2750,2750,'P',0,0,2750.00,0.00,0.00,2750.00,'',0,6,0,'',0,'','','','','','riya','2025-11-09 18:37:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',128,12,0,'2025-11-09','19:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,6,0,'',0,'','','','','','riya','2025-11-09 18:37:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',128,13,0,'2025-11-09','19:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,6,0,'',0,'','','','','','riya','2025-11-09 18:37:26','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,1,0,'2025-11-08','11:18:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,2,0,'2025-11-08','11:18:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,3,0,'2025-11-08','11:18:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,4,0,'2025-11-08','11:19:00','SURG0015',0,1.00,10700,10700,'P',0,0,10700.00,0.00,0.00,10700.00,'',0,3,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,5,0,'2025-11-08','11:19:00','SURG0014',0,1.00,32200,32200,'P',0,0,32200.00,0.00,0.00,32200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,6,0,'2025-11-08','11:20:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,7,0,'2025-11-08','13:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,8,0,'2025-11-08','13:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,9,0,'2025-11-08','13:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,10,0,'2025-11-08','13:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,11,0,'2025-11-08','13:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,12,0,'2025-11-08','13:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,13,0,'2025-11-09','13:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,14,0,'2025-11-09','13:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,15,0,'2025-11-09','13:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,16,0,'2025-11-09','13:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,17,0,'2025-11-09','13:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,18,0,'2025-11-10','11:18:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',129,19,0,'2025-11-10','11:21:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-10 12:01:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,1,0,'2025-11-07','13:33:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,2,0,'2025-11-07','13:33:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,3,0,'2025-11-07','13:33:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,4,0,'2025-11-07','13:33:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,5,0,'2025-11-07','13:33:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,6,0,'2025-11-07','13:33:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,7,0,'2025-11-08','11:56:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,8,0,'2025-11-08','11:58:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,8,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,9,0,'2025-11-08','13:33:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,10,0,'2025-11-08','13:33:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,11,0,'2025-11-08','13:33:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,12,0,'2025-11-08','13:33:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,13,0,'2025-11-08','13:33:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,14,0,'2025-11-08','18:41:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,15,0,'2025-11-09','11:48:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,16,0,'2025-11-09','13:33:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,17,0,'2025-11-09','13:33:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,18,0,'2025-11-09','13:33:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,19,0,'2025-11-09','13:33:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,20,0,'2025-11-09','13:33:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,21,0,'2025-11-10','11:58:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,8,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,22,0,'2025-11-10','13:33:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,23,0,'2025-11-10','13:33:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,24,0,'2025-11-10','13:33:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,25,0,'2025-11-10','13:33:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',130,26,0,'2025-11-11','11:57:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-11 12:55:05','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',131,1,1,'2025-11-11','10:23:00','WPRC0099',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','N','vishal','2025-11-12 13:31:20','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',131,2,1,'2025-11-11','11:32:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','N','vishal','2025-11-12 13:31:20','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',131,3,1,'2025-11-11','11:32:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','N','vishal','2025-11-12 13:31:20','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',131,4,1,'2025-11-11','11:32:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','N','vishal','2025-11-12 13:31:20','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',131,5,1,'2025-11-11','12:05:00','SURG0014',0,1.00,10300,10300,'P',0,0,10300.00,0.00,0.00,10300.00,'',0,6,0,'',0,'','','','','N','vishal','2025-11-12 13:31:20','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',131,6,1,'2025-11-11','12:58:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','N','vishal','2025-11-12 13:31:20','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',131,7,1,'2025-11-11','12:58:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','N','vishal','2025-11-12 13:31:20','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',131,8,1,'2025-11-11','12:58:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','N','vishal','2025-11-12 13:31:20','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',131,9,1,'2025-11-11','12:58:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','N','vishal','2025-11-12 13:31:20','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',131,10,1,'2025-11-11','12:58:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','N','vishal','2025-11-12 13:31:20','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',131,11,1,'2025-11-11','12:58:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,6,0,'',0,'','','','','N','vishal','2025-11-12 13:31:20','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',131,12,1,'2025-11-12','11:33:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','N','vishal','2025-11-12 13:31:20','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',131,13,1,'2025-11-12','12:05:00','SURG0015',0,1.00,3500,3500,'P',0,0,3500.00,0.00,0.00,3500.00,'',0,6,0,'',0,'','','','','N','vishal','2025-11-12 13:31:20','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',131,14,1,'2025-11-12','12:58:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,6,0,'',0,'','','','','N','vishal','2025-11-12 13:31:20','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',132,1,0,'2025-11-12','00:00:00','WPRC0099',0,-1.00,500,-500,'P',0,0,-500.00,0.00,0.00,-500.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-12 13:32:36','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',132,2,0,'2025-11-12','00:00:00','DRC0020',0,-1.00,800,-800,'P',0,0,-800.00,0.00,0.00,-800.00,'',0,4,0,'',0,'','','','Y','N','vishal','2025-11-12 13:32:36','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',132,3,0,'2025-11-12','00:00:00','ROOM0008',0,-2.00,100,-200,'P',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-12 13:32:36','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',132,4,0,'2025-11-12','00:00:00','WPRC0078',0,-1.00,300,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-12 13:32:36','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',132,5,0,'2025-11-12','00:00:00','SURG0014',0,-1.00,10300,-10300,'P',0,0,-10300.00,0.00,0.00,-10300.00,'',0,6,0,'',0,'','','','Y','N','vishal','2025-11-12 13:32:36','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',132,6,0,'2025-11-12','00:00:00','REG0001',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-12 13:32:36','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',132,7,0,'2025-11-12','00:00:00','REG0002',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-12 13:32:36','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',132,8,0,'2025-11-12','00:00:00','ROOM0009',0,-1.00,2900,-2900,'A',0,0,-2900.00,0.00,0.00,-2900.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-12 13:32:36','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',132,9,0,'2025-11-12','00:00:00','AECO0008',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-12 13:32:36','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',132,10,0,'2025-11-12','00:00:00','CARE0001',0,-1.00,200,-200,'A',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-12 13:32:36','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',132,11,0,'2025-11-12','00:00:00','DRC0019',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,6,0,'',0,'','','','Y','N','vishal','2025-11-12 13:32:36','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',132,12,0,'2025-11-12','00:00:00','ROOM0008',0,-1.00,100,-100,'P',0,0,-100.00,0.00,0.00,-100.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-12 13:32:36','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',132,13,0,'2025-11-12','00:00:00','SURG0015',0,-1.00,3500,-3500,'P',0,0,-3500.00,0.00,0.00,-3500.00,'',0,6,0,'',0,'','','','Y','N','vishal','2025-11-12 13:32:36','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',132,14,0,'2025-11-12','00:00:00','DRC0018',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,6,0,'',0,'','','','Y','N','vishal','2025-11-12 13:32:36','vishal','2025-11-12 13:32:36',0),(0,0,'2526','H','I',133,1,0,'2025-11-11','10:23:00','WPRC0099',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-12 19:46:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',133,2,0,'2025-11-11','11:32:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-12 19:46:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',133,3,0,'2025-11-11','11:32:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-12 19:46:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',133,4,0,'2025-11-11','11:32:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-12 19:46:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',133,5,0,'2025-11-11','12:05:00','SURG0014',0,1.00,9800,9800,'P',0,0,9800.00,0.00,0.00,9800.00,'',0,6,0,'',0,'','','','','','vishal','2025-11-12 19:46:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',133,6,0,'2025-11-11','12:58:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-12 19:46:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',133,7,0,'2025-11-11','12:58:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-12 19:46:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',133,8,0,'2025-11-11','12:58:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-11-12 19:46:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',133,9,0,'2025-11-11','12:58:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-11-12 19:46:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',133,10,0,'2025-11-11','12:58:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-11-12 19:46:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',133,11,0,'2025-11-11','12:58:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,6,0,'',0,'','','','','','vishal','2025-11-12 19:46:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',133,12,0,'2025-11-11','12:58:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,6,0,'',0,'','','','','','vishal','2025-11-12 19:46:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',133,13,0,'2025-11-12','11:33:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-12 19:46:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',133,14,0,'2025-11-12','12:05:00','SURG0015',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,6,0,'',0,'','','','','','vishal','2025-11-12 19:46:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',133,15,0,'2025-11-12','12:58:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,6,0,'',0,'','','','','','vishal','2025-11-12 19:46:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',134,1,0,'2025-11-13','03:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 12:57:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',134,2,0,'2025-11-13','03:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 12:57:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',134,3,0,'2025-11-13','03:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-13 12:57:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',134,4,0,'2025-11-13','03:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-13 12:57:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',134,5,0,'2025-11-13','03:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-13 12:57:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',134,6,0,'2025-11-13','03:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-11-13 12:57:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',134,7,0,'2025-11-13','12:46:00','CARP0032',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-13 12:57:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',134,8,0,'2025-11-13','12:46:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 12:57:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',134,9,0,'2025-11-13','12:49:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 12:57:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',134,10,0,'2025-11-13','12:49:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 12:57:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',134,11,0,'2025-11-13','12:49:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-13 12:57:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,1,0,'2025-11-10','12:35:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,2,0,'2025-11-10','21:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,3,0,'2025-11-10','21:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,4,0,'2025-11-10','21:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,5,0,'2025-11-10','21:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,6,0,'2025-11-10','21:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,7,0,'2025-11-11','12:35:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,8,0,'2025-11-11','21:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,9,0,'2025-11-11','21:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,10,0,'2025-11-11','21:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,11,0,'2025-11-11','21:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,12,0,'2025-11-11','21:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,13,0,'2025-11-12','12:35:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,14,0,'2025-11-12','12:36:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,15,0,'2025-11-12','12:36:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,16,0,'2025-11-12','21:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,17,0,'2025-11-12','21:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,18,0,'2025-11-12','21:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,19,0,'2025-11-12','21:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,20,0,'2025-11-12','21:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,21,0,'2025-11-13','17:41:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,22,0,'2025-11-13','21:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',135,23,0,'2025-11-13','21:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-11-13 19:42:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,1,0,'2025-11-10','11:20:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,2,0,'2025-11-10','11:21:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,3,0,'2025-11-10','11:21:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,4,0,'2025-11-10','11:21:00','WPRC0077',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,5,0,'2025-11-10','11:21:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,6,0,'2025-11-10','11:22:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,7,0,'2025-11-10','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,8,0,'2025-11-10','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,9,0,'2025-11-10','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,10,0,'2025-11-10','13:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,11,0,'2025-11-10','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,12,0,'2025-11-10','13:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,36,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,13,0,'2025-11-11','11:22:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,14,0,'2025-11-11','12:07:00','USG0092',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,15,0,'2025-11-11','12:07:00','WPRC0077',0,3.00,500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,16,0,'2025-11-11','12:08:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,17,0,'2025-11-11','13:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,18,0,'2025-11-11','13:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,19,0,'2025-11-11','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,20,0,'2025-11-11','13:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,21,0,'2025-11-11','13:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,22,0,'2025-11-11','20:54:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,23,0,'2025-11-12','12:08:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,24,0,'2025-11-12','12:08:00','WPRC0077',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,25,0,'2025-11-12','13:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,26,0,'2025-11-12','19:24:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,27,0,'2025-11-12','19:25:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,28,0,'2025-11-12','19:25:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,29,0,'2025-11-12','19:25:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,30,0,'2025-11-12','20:54:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,31,0,'2025-11-13','11:48:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,32,0,'2025-11-13','11:49:00','WPRC0077',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,33,0,'2025-11-13','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,34,0,'2025-11-13','13:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,35,0,'2025-11-13','13:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,36,0,'2025-11-13','13:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,37,0,'2025-11-13','13:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,38,0,'2025-11-13','20:54:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,39,0,'2025-11-14','11:45:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,40,0,'2025-11-14','11:45:00','WPRC0077',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,41,0,'2025-11-14','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,42,0,'2025-11-14','13:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,43,0,'2025-11-14','13:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,44,0,'2025-11-14','13:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',136,45,0,'2025-11-14','13:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-11-14 20:30:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,1,0,'2025-11-12','10:52:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,2,0,'2025-11-12','10:53:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,3,0,'2025-11-12','10:53:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,4,0,'2025-11-12','10:56:00','XRY0045',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,5,0,'2025-11-12','10:57:00','WPRC0101',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,6,0,'2025-11-12','10:58:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,7,0,'2025-11-12','10:58:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,8,0,'2025-11-12','17:23:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,9,0,'2025-11-12','19:00:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,10,0,'2025-11-12','19:00:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,11,0,'2025-11-12','19:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,12,0,'2025-11-12','19:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,13,0,'2025-11-12','19:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,14,0,'2025-11-12','19:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,15,0,'2025-11-13','10:56:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,16,0,'2025-11-13','10:58:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,17,0,'2025-11-13','10:58:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,18,0,'2025-11-13','10:58:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,19,0,'2025-11-13','17:21:00','WPRC0097',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,20,0,'2025-11-13','17:21:00','WPRC0092',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,21,0,'2025-11-13','17:23:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,22,0,'2025-11-13','19:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,23,0,'2025-11-13','19:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,24,0,'2025-11-13','19:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,25,0,'2025-11-13','19:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,26,0,'2025-11-13','19:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,27,0,'2025-11-14','17:22:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,28,0,'2025-11-14','17:22:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,29,0,'2025-11-14','17:22:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,30,0,'2025-11-14','17:22:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,31,0,'2025-11-14','17:23:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,32,0,'2025-11-14','19:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,33,0,'2025-11-14','19:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,34,0,'2025-11-14','19:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,35,0,'2025-11-14','19:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,36,0,'2025-11-14','19:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,37,0,'2025-11-15','09:23:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,38,0,'2025-11-15','09:24:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',137,39,0,'2025-11-15','09:31:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 09:46:42','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,1,0,'2025-11-12','20:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,2,0,'2025-11-12','20:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,3,0,'2025-11-12','20:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,4,0,'2025-11-12','20:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,5,0,'2025-11-12','20:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,6,0,'2025-11-13','11:13:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,7,0,'2025-11-13','11:14:00','SURG0015',0,1.00,7000,7000,'P',0,0,7000.00,0.00,0.00,7000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,8,0,'2025-11-13','11:14:00','SURG0014',0,1.00,21100,21100,'P',0,0,21100.00,0.00,0.00,21100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,9,0,'2025-11-13','20:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,10,0,'2025-11-13','20:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,11,0,'2025-11-13','20:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,12,0,'2025-11-13','20:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,13,0,'2025-11-13','20:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,14,0,'2025-11-14','20:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,15,0,'2025-11-14','20:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,16,0,'2025-11-14','20:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,17,0,'2025-11-14','20:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,18,0,'2025-11-14','20:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,19,0,'2025-11-15','11:13:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',138,20,0,'2025-11-15','20:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-15 13:08:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,1,0,'2025-11-12','10:47:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,2,0,'2025-11-12','10:48:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,7,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,3,0,'2025-11-12','10:48:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,88,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,4,0,'2025-11-12','10:49:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,5,0,'2025-11-12','10:50:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,6,0,'2025-11-12','11:26:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,88,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,7,0,'2025-11-12','12:22:00','SURG0014',0,1.00,45000,45000,'P',0,0,45000.00,0.00,0.00,45000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,8,0,'2025-11-12','12:23:00','SURG0015',0,1.00,14250,14250,'P',0,0,14250.00,0.00,0.00,14250.00,'',0,3,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,9,0,'2025-11-12','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,10,0,'2025-11-12','13:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,11,0,'2025-11-12','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,12,0,'2025-11-12','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,13,0,'2025-11-12','13:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,14,0,'2025-11-12','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,15,0,'2025-11-13','10:50:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,16,0,'2025-11-13','11:29:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,17,0,'2025-11-13','13:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,18,0,'2025-11-13','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,19,0,'2025-11-13','13:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,3,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,20,0,'2025-11-13','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,21,0,'2025-11-14','12:06:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,22,0,'2025-11-14','13:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,23,0,'2025-11-14','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,24,0,'2025-11-14','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,25,0,'2025-11-14','13:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,26,0,'2025-11-14','13:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,27,0,'2025-11-15','11:26:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,28,0,'2025-11-15','11:29:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',139,29,0,'2025-11-15','11:30:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','','','riya','2025-11-15 13:16:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,1,0,'2025-11-13','17:17:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,2,0,'2025-11-13','17:17:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,3,0,'2025-11-13','17:18:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,4,0,'2025-11-13','17:19:00','DRC0020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,37,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,5,0,'2025-11-13','19:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,6,0,'2025-11-13','19:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,7,0,'2025-11-13','19:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,8,0,'2025-11-13','19:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,9,0,'2025-11-13','19:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,10,0,'2025-11-13','19:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,11,0,'2025-11-14','16:50:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,12,0,'2025-11-14','17:17:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,13,0,'2025-11-14','17:17:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,14,0,'2025-11-14','17:18:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,15,0,'2025-11-14','17:18:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,16,0,'2025-11-14','19:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,17,0,'2025-11-14','19:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,18,0,'2025-11-14','19:03:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,19,0,'2025-11-14','19:03:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,20,0,'2025-11-14','19:04:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,21,0,'2025-11-14','20:44:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,37,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,22,0,'2025-11-15','16:48:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,23,0,'2025-11-15','19:01:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,24,0,'2025-11-15','19:02:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,25,0,'2025-11-15','19:04:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',140,26,0,'2025-11-15','19:04:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-15 20:12:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,1,0,'2025-11-14','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,2,0,'2025-11-14','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,3,0,'2025-11-14','09:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,4,0,'2025-11-14','09:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,5,0,'2025-11-14','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,6,0,'2025-11-14','09:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,7,0,'2025-11-14','09:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,8,0,'2025-11-14','10:42:00','SURG0015',0,1.00,12750,12750,'P',0,0,12750.00,0.00,0.00,12750.00,'',0,3,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,9,0,'2025-11-14','10:42:00','SURG0014',0,1.00,39000,39000,'P',0,0,39000.00,0.00,0.00,39000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,10,0,'2025-11-14','16:31:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,11,0,'2025-11-14','16:31:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,12,0,'2025-11-14','16:31:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,13,0,'2025-11-14','16:32:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,14,0,'2025-11-15','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,15,0,'2025-11-15','09:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,16,0,'2025-11-15','09:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,17,0,'2025-11-15','09:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,18,0,'2025-11-15','09:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',141,19,0,'2025-11-16','10:42:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-16 10:47:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,1,0,'2025-11-14','00:05:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,2,0,'2025-11-14','00:05:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,3,0,'2025-11-14','00:05:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,4,0,'2025-11-14','00:05:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,5,0,'2025-11-14','00:05:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,6,0,'2025-11-14','00:05:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,7,0,'2025-11-14','00:05:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,8,0,'2025-11-14','11:32:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,9,0,'2025-11-14','11:32:00','WPRC0078',0,2.00,300,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,10,0,'2025-11-14','11:32:00','XRY0045',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,11,0,'2025-11-14','11:33:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,12,0,'2025-11-14','12:51:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,13,0,'2025-11-15','00:05:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,14,0,'2025-11-15','00:05:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,15,0,'2025-11-15','00:05:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,4,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,16,0,'2025-11-15','00:05:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,17,0,'2025-11-15','00:05:00','ROOM0009',0,1.00,5000,5000,'A',0,0,5000.00,0.00,0.00,5000.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,18,0,'2025-11-15','10:46:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,19,0,'2025-11-15','10:46:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,20,0,'2025-11-15','10:47:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,21,0,'2025-11-15','14:40:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,22,0,'2025-11-16','00:05:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,23,0,'2025-11-16','00:05:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,24,0,'2025-11-16','00:05:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,25,0,'2025-11-16','00:05:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,26,0,'2025-11-16','00:05:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',142,27,0,'2025-11-16','14:40:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-16 20:21:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,1,0,'2025-11-11','12:33:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,2,0,'2025-11-11','14:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,3,0,'2025-11-11','14:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,4,0,'2025-11-11','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,5,0,'2025-11-11','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,6,0,'2025-11-11','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,7,0,'2025-11-11','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,8,0,'2025-11-12','11:34:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,9,0,'2025-11-12','11:35:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,10,0,'2025-11-12','12:33:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,11,0,'2025-11-12','12:33:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,12,0,'2025-11-12','12:34:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,13,0,'2025-11-12','12:59:00','SURG0014',0,1.00,45000,45000,'P',0,0,45000.00,0.00,0.00,45000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,14,0,'2025-11-12','12:59:00','SURG0015',0,1.00,11250,11250,'P',0,0,11250.00,0.00,0.00,11250.00,'',0,3,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,15,0,'2025-11-12','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,16,0,'2025-11-12','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,17,0,'2025-11-12','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,18,0,'2025-11-12','14:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,19,0,'2025-11-12','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,20,0,'2025-11-13','11:35:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,21,0,'2025-11-13','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,22,0,'2025-11-13','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,23,0,'2025-11-13','14:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,24,0,'2025-11-13','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,25,0,'2025-11-13','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,26,0,'2025-11-14','11:47:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,27,0,'2025-11-14','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,28,0,'2025-11-14','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,29,0,'2025-11-14','14:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,30,0,'2025-11-14','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,31,0,'2025-11-14','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,32,0,'2025-11-15','14:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,33,0,'2025-11-15','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,34,0,'2025-11-15','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,35,0,'2025-11-15','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,36,0,'2025-11-15','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,37,0,'2025-11-15','16:32:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,38,0,'2025-11-16','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,39,0,'2025-11-16','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,40,0,'2025-11-16','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,41,0,'2025-11-16','14:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,42,0,'2025-11-16','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,43,0,'2025-11-16','14:42:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,44,0,'2025-11-17','10:01:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',143,45,0,'2025-11-17','10:02:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-17 10:37:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',144,1,0,'2025-11-16','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 13:36:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',144,2,0,'2025-11-16','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 13:36:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',144,3,0,'2025-11-16','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-17 13:36:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',144,4,0,'2025-11-16','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-17 13:36:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',144,5,0,'2025-11-16','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-17 13:36:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',144,6,0,'2025-11-16','10:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-11-17 13:36:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',144,7,0,'2025-11-16','10:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-11-17 13:36:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',144,8,0,'2025-11-16','13:23:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 13:36:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',144,9,0,'2025-11-16','13:23:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 13:36:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',144,10,0,'2025-11-17','13:23:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 13:36:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',144,11,0,'2025-11-17','13:23:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-17 13:36:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',144,12,0,'2025-11-17','13:24:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,8,0,'',0,'','','','','','riya','2025-11-17 13:36:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,1,0,'2025-11-15','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,2,0,'2025-11-15','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,3,0,'2025-11-15','10:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,4,0,'2025-11-15','10:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,5,0,'2025-11-15','10:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,6,0,'2025-11-15','10:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,7,0,'2025-11-15','10:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,8,0,'2025-11-15','13:39:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,9,0,'2025-11-15','13:39:00','WPRC0091',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,10,0,'2025-11-15','13:39:00','WPRC0077',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,11,0,'2025-11-15','13:39:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,12,0,'2025-11-15','13:40:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,13,0,'2025-11-16','10:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,14,0,'2025-11-16','10:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,15,0,'2025-11-16','10:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,16,0,'2025-11-16','10:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,17,0,'2025-11-16','10:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,18,0,'2025-11-16','10:44:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,19,0,'2025-11-16','13:40:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,20,0,'2025-11-16','13:40:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,21,0,'2025-11-16','13:41:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,22,0,'2025-11-16','13:41:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,23,0,'2025-11-17','10:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,24,0,'2025-11-17','10:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,8,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,25,0,'2025-11-17','10:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,26,0,'2025-11-17','10:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,8,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,27,0,'2025-11-17','10:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,28,0,'2025-11-17','10:24:00','WPRC0080',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,29,0,'2025-11-17','10:25:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,30,0,'2025-11-17','10:26:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,31,0,'2025-11-17','10:44:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,32,0,'2025-11-17','10:44:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,33,0,'2025-11-18','10:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,34,0,'2025-11-18','10:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,35,0,'2025-11-18','10:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,36,0,'2025-11-18','10:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,8,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,37,0,'2025-11-18','10:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,8,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,38,0,'2025-11-18','10:24:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,39,0,'2025-11-18','10:25:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,40,0,'2025-11-18','23:08:00','WPRC0077',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,41,0,'2025-11-18','23:10:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,194,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,42,0,'2025-11-18','23:11:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,43,0,'2025-11-18','23:12:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',145,44,0,'2025-11-18','23:12:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-18 23:27:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',146,1,0,'2025-11-18','12:22:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-19 12:32:04','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',146,2,0,'2025-11-18','12:22:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-19 12:32:04','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',146,3,0,'2025-11-18','13:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-19 12:32:04','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',146,4,0,'2025-11-18','13:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-19 12:32:04','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',146,5,0,'2025-11-18','13:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'311',0,9999,0,'',0,'','','','','','riya','2025-11-19 12:32:04','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',146,6,0,'2025-11-18','13:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'311',0,9999,0,'',0,'','','','','','riya','2025-11-19 12:32:04','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',146,7,0,'2025-11-18','13:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'311',0,9999,0,'',0,'','','','','','riya','2025-11-19 12:32:04','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',146,8,0,'2025-11-18','13:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,8,0,'',0,'','','','','','riya','2025-11-19 12:32:04','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',146,9,0,'2025-11-19','12:22:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-19 12:32:04','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',146,10,0,'2025-11-19','13:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,4,0,'',0,'','','','','','riya','2025-11-19 12:32:04','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',147,1,0,'2025-11-09','01:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,2,0,'2025-11-09','01:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,3,0,'2025-11-09','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,4,0,'2025-11-09','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,5,0,'2025-11-09','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,6,0,'2025-11-09','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'404',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,7,0,'2025-11-09','01:00:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'404',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,8,0,'2025-11-09','12:40:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,9,0,'2025-11-09','12:42:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,10,0,'2025-11-10','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,11,0,'2025-11-10','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,12,0,'2025-11-10','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,13,0,'2025-11-10','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,14,0,'2025-11-10','01:00:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,15,0,'2025-11-10','12:40:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,16,0,'2025-11-10','12:41:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,17,0,'2025-11-10','12:42:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,18,0,'2025-11-10','12:42:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,19,0,'2025-11-11','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,20,0,'2025-11-11','01:00:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,21,0,'2025-11-11','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,22,0,'2025-11-11','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,23,0,'2025-11-11','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,24,0,'2025-11-11','10:21:00','WPRC0090',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,25,0,'2025-11-11','12:41:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,26,0,'2025-11-11','12:43:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,27,0,'2025-11-11','12:43:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,28,0,'2025-11-12','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,29,0,'2025-11-12','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,30,0,'2025-11-12','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,31,0,'2025-11-12','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,32,0,'2025-11-12','01:00:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,33,0,'2025-11-12','12:41:00','WPRC0091',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,34,0,'2025-11-12','12:43:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,35,0,'2025-11-12','12:44:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,36,0,'2025-11-12','18:21:00','USG0100',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,177,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,37,0,'2025-11-12','18:26:00','USG0101',0,1.00,5000,5000,'A',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,38,0,'2025-11-13','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,39,0,'2025-11-13','01:00:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,40,0,'2025-11-13','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,41,0,'2025-11-13','01:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,42,0,'2025-11-13','01:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,43,0,'2025-11-13','11:40:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,44,0,'2025-11-13','11:40:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,45,0,'2025-11-14','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,46,0,'2025-11-14','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,47,0,'2025-11-14','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,48,0,'2025-11-14','01:00:00','DRC0018',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,49,0,'2025-11-14','01:00:00','DRC0019',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,50,0,'2025-11-14','11:40:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,51,0,'2025-11-14','11:41:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,52,0,'2025-11-14','18:04:00','USG0099',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,53,0,'2025-11-15','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,54,0,'2025-11-15','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,55,0,'2025-11-15','01:00:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,56,0,'2025-11-15','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,57,0,'2025-11-15','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,58,0,'2025-11-15','11:50:00','SURG0014',0,1.00,50000,50000,'P',0,0,50000.00,0.00,0.00,50000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,59,0,'2025-11-15','11:50:00','SURG0015',0,1.00,12500,12500,'P',0,0,12500.00,0.00,0.00,12500.00,'',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,60,0,'2025-11-15','13:44:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,61,0,'2025-11-15','13:44:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,62,0,'2025-11-15','13:45:00','WPRC0091',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,63,0,'2025-11-15','13:46:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,64,0,'2025-11-15','13:50:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,65,0,'2025-11-15','13:50:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,66,0,'2025-11-15','13:53:00','WPRC0097',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,62,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,67,0,'2025-11-15','13:56:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,68,0,'2025-11-16','01:00:00','DRC0019',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'208',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,69,0,'2025-11-16','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'208',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,70,0,'2025-11-16','13:46:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,71,0,'2025-11-16','13:46:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,72,0,'2025-11-16','13:47:00','XRY0045',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,73,0,'2025-11-16','13:51:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,74,0,'2025-11-16','14:10:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,75,0,'2025-11-16','14:10:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,76,0,'2025-11-16','14:10:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,77,0,'2025-11-17','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,78,0,'2025-11-17','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,79,0,'2025-11-17','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,80,0,'2025-11-17','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,81,0,'2025-11-17','01:00:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,82,0,'2025-11-17','10:53:00','USG0095',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,83,0,'2025-11-17','14:10:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,84,0,'2025-11-18','01:00:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,85,0,'2025-11-18','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,86,0,'2025-11-18','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,87,0,'2025-11-18','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,88,0,'2025-11-18','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,89,0,'2025-11-18','09:46:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,90,0,'2025-11-18','10:52:00','WPRC0113',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,91,0,'2025-11-18','14:17:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,92,0,'2025-11-19','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,93,0,'2025-11-19','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,94,0,'2025-11-19','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,95,0,'2025-11-19','01:00:00','DRC0018',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,96,0,'2025-11-19','01:00:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'401',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,97,0,'2025-11-19','10:56:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,98,0,'2025-11-19','10:56:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',147,99,0,'2025-11-20','10:56:00','DRC0018',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,8,0,'',0,'','','','','','riya','2025-11-20 12:45:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',148,1,0,'2025-11-18','12:24:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:29:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',148,2,0,'2025-11-18','12:24:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:29:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',148,3,0,'2025-11-18','13:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:29:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',148,4,0,'2025-11-18','13:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:29:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',148,5,0,'2025-11-18','13:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'310',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:29:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',148,6,0,'2025-11-18','13:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'310',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:29:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',148,7,0,'2025-11-18','13:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'310',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:29:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',148,8,0,'2025-11-18','13:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,8,0,'',0,'','','','','','riya','2025-11-20 13:29:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',148,9,0,'2025-11-19','12:25:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:29:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',148,10,0,'2025-11-19','13:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'310',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:29:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',148,11,0,'2025-11-19','13:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'310',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:29:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',148,12,0,'2025-11-19','13:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'310',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:29:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',148,13,0,'2025-11-19','13:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,4,0,'',0,'','','','','','riya','2025-11-20 13:29:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',148,14,0,'2025-11-19','13:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,4,0,'',0,'','','','','','riya','2025-11-20 13:29:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',148,15,0,'2025-11-20','12:11:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:29:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',148,16,0,'2025-11-20','12:11:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-20 13:29:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',149,1,0,'2025-11-19','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:32:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',149,2,0,'2025-11-19','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:32:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',149,3,0,'2025-11-19','09:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:32:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',149,4,0,'2025-11-19','09:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:32:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',149,5,0,'2025-11-19','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:32:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',149,6,0,'2025-11-19','09:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-11-20 13:32:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',149,7,0,'2025-11-19','09:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-11-20 13:32:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',149,8,0,'2025-11-19','11:34:00','SURG0014',0,1.00,21400,21400,'P',0,0,21400.00,0.00,0.00,21400.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 13:32:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',149,9,0,'2025-11-19','11:34:00','SURG0015',0,1.00,7100,7100,'P',0,0,7100.00,0.00,0.00,7100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 13:32:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',149,10,0,'2025-11-20','11:34:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 13:32:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',149,11,0,'2025-11-20','11:37:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 13:32:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,1,0,'2025-11-18','10:29:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,2,0,'2025-11-18','10:29:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,3,0,'2025-11-18','10:29:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,4,0,'2025-11-18','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,5,0,'2025-11-18','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,6,0,'2025-11-18','13:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,8,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,7,0,'2025-11-18','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,8,0,'2025-11-18','13:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,9,0,'2025-11-18','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,10,0,'2025-11-19','10:29:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,11,0,'2025-11-19','10:30:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,12,0,'2025-11-19','12:36:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,13,0,'2025-11-19','13:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,14,0,'2025-11-19','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,15,0,'2025-11-19','13:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,16,0,'2025-11-19','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,17,0,'2025-11-20','12:35:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,18,0,'2025-11-20','12:36:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',150,19,0,'2025-11-20','12:37:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:34:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,1,0,'2025-11-16','09:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,2,0,'2025-11-16','09:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,3,0,'2025-11-16','09:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,4,0,'2025-11-16','09:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,5,0,'2025-11-16','09:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,6,0,'2025-11-16','09:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,7,0,'2025-11-16','09:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,8,0,'2025-11-16','10:49:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,9,0,'2025-11-16','10:50:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,10,0,'2025-11-16','10:50:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,11,0,'2025-11-16','10:50:00','XRY0045',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,12,0,'2025-11-16','10:51:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,13,0,'2025-11-16','10:51:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,14,0,'2025-11-17','09:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,8,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,15,0,'2025-11-17','09:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'209',0,8,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,16,0,'2025-11-17','10:50:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,17,0,'2025-11-17','10:51:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,18,0,'2025-11-17','12:13:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,19,0,'2025-11-17','12:41:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,20,0,'2025-11-17','12:41:00','ROOM0003',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,21,0,'2025-11-17','12:42:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,22,0,'2025-11-17','14:13:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,23,0,'2025-11-18','09:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,24,0,'2025-11-18','09:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,25,0,'2025-11-18','09:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,26,0,'2025-11-18','09:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,8,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,27,0,'2025-11-18','09:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,8,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,28,0,'2025-11-18','09:51:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,29,0,'2025-11-19','09:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,30,0,'2025-11-19','09:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,31,0,'2025-11-19','09:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,4,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,32,0,'2025-11-19','09:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,33,0,'2025-11-19','09:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,34,0,'2025-11-19','12:13:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,35,0,'2025-11-19','12:13:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,36,0,'2025-11-20','12:14:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',151,37,0,'2025-11-20','12:15:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-11-20 13:39:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,1,0,'2025-11-18','11:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,2,0,'2025-11-18','11:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,3,0,'2025-11-18','11:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,4,0,'2025-11-18','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,5,0,'2025-11-18','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,6,0,'2025-11-18','11:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,7,0,'2025-11-18','11:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,8,0,'2025-11-18','14:04:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,9,0,'2025-11-18','14:04:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,10,0,'2025-11-19','11:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,11,0,'2025-11-19','11:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'410',0,3,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,12,0,'2025-11-19','11:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,13,0,'2025-11-19','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,14,0,'2025-11-19','11:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,15,0,'2025-11-19','14:24:00','SURG0014',0,1.00,51220,51220,'P',0,0,51220.00,0.00,0.00,51220.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,16,0,'2025-11-19','14:24:00','SURG0015',0,1.00,17000,17000,'P',0,0,17000.00,0.00,0.00,17000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,17,0,'2025-11-20','14:04:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,18,0,'2025-11-20','14:05:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',152,19,0,'2025-11-20','14:07:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-20 15:10:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',153,1,0,'2025-11-20','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 19:13:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',153,2,0,'2025-11-20','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 19:13:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',153,3,0,'2025-11-20','09:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','vishal','2025-11-20 19:13:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',153,4,0,'2025-11-20','09:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','vishal','2025-11-20 19:13:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',153,5,0,'2025-11-20','17:03:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 19:13:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',153,6,0,'2025-11-20','17:03:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 19:13:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',153,7,0,'2025-11-20','19:11:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-20 19:13:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',153,8,0,'2025-11-20','19:12:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 19:13:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',153,9,0,'2025-11-20','19:12:00','SURG0014',0,1.00,11000,11000,'P',0,0,11000.00,0.00,0.00,11000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-20 19:13:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',153,10,0,'2025-11-20','19:12:00','SURG0015',0,1.00,3700,3700,'P',0,0,3700.00,0.00,0.00,3700.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-20 19:13:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,1,0,'2025-11-16','11:01:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,2,0,'2025-11-16','11:04:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,3,0,'2025-11-16','11:05:00','XRY0045',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,4,0,'2025-11-16','11:06:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,5,0,'2025-11-16','11:06:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,6,0,'2025-11-16','11:07:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,7,0,'2025-11-16','18:20:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,8,0,'2025-11-16','18:20:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,9,0,'2025-11-16','18:20:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,4,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,10,0,'2025-11-16','18:20:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,11,0,'2025-11-16','18:20:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,12,0,'2025-11-16','18:20:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,13,0,'2025-11-17','10:35:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,14,0,'2025-11-17','10:36:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,15,0,'2025-11-17','11:01:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,16,0,'2025-11-17','11:01:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,17,0,'2025-11-17','11:05:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,18,0,'2025-11-17','11:06:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,19,0,'2025-11-17','11:06:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,20,0,'2025-11-17','11:07:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,21,0,'2025-11-17','18:20:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,22,0,'2025-11-17','18:20:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,8,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,23,0,'2025-11-17','18:20:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,24,0,'2025-11-17','18:20:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,25,0,'2025-11-17','18:20:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'208',0,8,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,26,0,'2025-11-18','10:36:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,27,0,'2025-11-18','10:38:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,28,0,'2025-11-18','11:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,8,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,29,0,'2025-11-18','18:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,30,0,'2025-11-18','18:20:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,8,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,31,0,'2025-11-18','18:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,32,0,'2025-11-18','18:20:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,33,0,'2025-11-19','13:00:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,34,0,'2025-11-19','13:00:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,35,0,'2025-11-19','13:02:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,36,0,'2025-11-19','18:20:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,37,0,'2025-11-19','18:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,38,0,'2025-11-19','18:20:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,39,0,'2025-11-19','18:20:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,40,0,'2025-11-19','18:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,41,0,'2025-11-20','18:20:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,42,0,'2025-11-20','18:20:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,43,0,'2025-11-20','20:19:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',154,44,0,'2025-11-20','20:27:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-20 20:58:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',155,1,0,'2025-11-21','00:00:00','ROOM0008',0,-1.00,100,-100,'P',0,0,-100.00,0.00,0.00,-100.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-21 11:45:46','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',155,2,0,'2025-11-21','00:00:00','WPRC0089',0,-2.00,100,-200,'P',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-21 11:45:46','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',155,3,0,'2025-11-21','00:00:00','REG0001',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-21 11:45:46','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',155,4,0,'2025-11-21','00:00:00','REG0002',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-21 11:45:46','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',155,5,0,'2025-11-21','00:00:00','ROOM0009',0,-1.00,2900,-2900,'A',0,0,-2900.00,0.00,0.00,-2900.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-21 11:45:46','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',155,6,0,'2025-11-21','00:00:00','AECO0008',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-21 11:45:46','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',155,7,0,'2025-11-21','00:00:00','CARE0001',0,-1.00,200,-200,'A',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-21 11:45:46','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',155,8,0,'2025-11-21','00:00:00','DRC0019',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,8,0,'',0,'','','','Y','N','vishal','2025-11-21 11:45:46','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',155,9,0,'2025-11-21','00:00:00','WPRC0089',0,-2.00,100,-200,'P',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-11-21 11:45:46','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',155,10,0,'2025-11-21','00:00:00','DRC0018',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,4,0,'',0,'','','','Y','N','vishal','2025-11-21 11:45:46','vishal','2025-11-21 11:45:46',0),(0,0,'2526','H','I',156,1,0,'2025-11-18','12:22:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 11:56:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',156,2,0,'2025-11-18','12:22:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 11:56:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',156,3,0,'2025-11-18','13:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 11:56:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',156,4,0,'2025-11-18','13:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 11:56:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',156,5,0,'2025-11-18','13:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-11-21 11:56:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',156,6,0,'2025-11-18','13:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-11-21 11:56:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',156,7,0,'2025-11-18','13:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-11-21 11:56:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',156,8,0,'2025-11-18','13:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,8,0,'',0,'','','','','','vishal','2025-11-21 11:56:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',156,9,0,'2025-11-19','12:22:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 11:56:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',156,10,0,'2025-11-19','13:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,4,0,'',0,'','','','','','vishal','2025-11-21 11:56:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',157,1,0,'2025-11-20','03:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:47:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',157,2,0,'2025-11-20','03:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:47:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',157,3,0,'2025-11-20','03:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:47:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',157,4,0,'2025-11-20','03:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:47:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',157,5,0,'2025-11-20','03:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:47:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',157,6,0,'2025-11-20','03:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-21 19:47:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',157,7,0,'2025-11-20','03:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-11-21 19:47:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',157,8,0,'2025-11-21','03:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:47:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',157,9,0,'2025-11-21','03:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:47:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',157,10,0,'2025-11-21','03:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:47:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',157,11,0,'2025-11-21','03:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','vishal','2025-11-21 19:47:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',157,12,0,'2025-11-21','03:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','vishal','2025-11-21 19:47:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',157,13,0,'2025-11-21','15:46:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:47:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',157,14,0,'2025-11-21','15:47:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-21 19:47:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',157,15,0,'2025-11-21','15:47:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,37,0,'',0,'','','','','','vishal','2025-11-21 19:47:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,1,0,'2025-11-14','13:36:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,2,0,'2025-11-14','13:36:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,3,0,'2025-11-14','13:36:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,4,0,'2025-11-14','13:36:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,5,0,'2025-11-14','13:36:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,6,0,'2025-11-14','13:36:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,7,0,'2025-11-14','13:36:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,8,0,'2025-11-14','16:29:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,9,0,'2025-11-14','16:29:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,10,0,'2025-11-14','16:29:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,11,0,'2025-11-15','13:36:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,12,0,'2025-11-15','13:36:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,13,0,'2025-11-15','13:36:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,14,0,'2025-11-15','13:36:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,15,0,'2025-11-15','13:36:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,16,0,'2025-11-15','14:12:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,17,0,'2025-11-15','14:36:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,18,0,'2025-11-15','14:39:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,19,0,'2025-11-16','13:36:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,20,0,'2025-11-16','13:36:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,21,0,'2025-11-16','13:36:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,22,0,'2025-11-16','13:36:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,23,0,'2025-11-16','13:36:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,24,0,'2025-11-16','14:36:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,25,0,'2025-11-16','14:39:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,26,0,'2025-11-17','13:36:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,27,0,'2025-11-17','13:36:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,28,0,'2025-11-17','13:36:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,29,0,'2025-11-17','13:36:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,8,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,30,0,'2025-11-17','13:36:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,8,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,31,0,'2025-11-17','14:05:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,32,0,'2025-11-17','14:06:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,33,0,'2025-11-18','09:53:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,34,0,'2025-11-18','09:53:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,35,0,'2025-11-18','12:58:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,37,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,36,0,'2025-11-18','13:36:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,37,0,'2025-11-18','13:36:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,38,0,'2025-11-18','13:36:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,8,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,39,0,'2025-11-18','13:36:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,8,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,40,0,'2025-11-18','13:36:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,41,0,'2025-11-19','12:57:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,42,0,'2025-11-19','12:57:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,43,0,'2025-11-19','13:36:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,44,0,'2025-11-19','13:36:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,45,0,'2025-11-19','13:36:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,46,0,'2025-11-19','13:36:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,47,0,'2025-11-19','13:36:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,48,0,'2025-11-20','13:36:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,49,0,'2025-11-20','13:36:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,50,0,'2025-11-20','13:36:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,51,0,'2025-11-20','13:36:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,52,0,'2025-11-20','13:36:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,53,0,'2025-11-20','15:49:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,54,0,'2025-11-20','15:49:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,55,0,'2025-11-20','15:50:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,56,0,'2025-11-21','13:21:00','XRY0017',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,57,0,'2025-11-21','13:36:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,58,0,'2025-11-21','13:36:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,59,0,'2025-11-21','13:36:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,60,0,'2025-11-21','13:36:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,61,0,'2025-11-21','13:36:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,62,0,'2025-11-21','15:49:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,63,0,'2025-11-21','15:49:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,64,0,'2025-11-21','15:50:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,20,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,65,0,'2025-11-22','13:03:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,66,0,'2025-11-22','13:05:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',158,67,0,'2025-11-22','13:09:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-22 13:21:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',159,1,0,'2025-11-21','11:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 15:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',159,2,0,'2025-11-21','11:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 15:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',159,3,0,'2025-11-21','11:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-22 15:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',159,4,0,'2025-11-21','11:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-22 15:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',159,5,0,'2025-11-21','11:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-22 15:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',159,6,0,'2025-11-21','11:00:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-22 15:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',159,7,0,'2025-11-21','11:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-22 15:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',159,8,0,'2025-11-21','12:15:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 15:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',159,9,0,'2025-11-21','12:15:00','ROOM0008',0,2.00,200,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 15:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',159,10,0,'2025-11-21','12:15:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','riya','2025-11-22 15:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',159,11,0,'2025-11-22','11:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-22 15:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',159,12,0,'2025-11-22','12:15:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-22 15:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,1,0,'2025-11-18','10:26:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,2,0,'2025-11-18','10:26:00','WPRC0106',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,3,0,'2025-11-18','10:26:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,4,0,'2025-11-18','10:26:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,5,0,'2025-11-18','10:27:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,6,0,'2025-11-18','10:28:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,37,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,7,0,'2025-11-18','21:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,8,0,'2025-11-18','21:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,9,0,'2025-11-18','21:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,10,0,'2025-11-18','21:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,11,0,'2025-11-18','21:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,12,0,'2025-11-19','10:27:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,13,0,'2025-11-19','10:27:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,14,0,'2025-11-19','10:27:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,15,0,'2025-11-19','11:40:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,16,0,'2025-11-19','11:41:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,17,0,'2025-11-19','21:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,18,0,'2025-11-19','21:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,19,0,'2025-11-19','21:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,20,0,'2025-11-19','21:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,21,0,'2025-11-19','21:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,22,0,'2025-11-20','11:41:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,23,0,'2025-11-20','11:42:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,24,0,'2025-11-20','15:43:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,25,0,'2025-11-20','21:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,26,0,'2025-11-20','21:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,27,0,'2025-11-20','21:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'407',0,4,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,28,0,'2025-11-20','21:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,29,0,'2025-11-20','21:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,30,0,'2025-11-21','15:44:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,31,0,'2025-11-21','21:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,32,0,'2025-11-21','21:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,33,0,'2025-11-21','21:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,34,0,'2025-11-21','21:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,35,0,'2025-11-21','21:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,36,0,'2025-11-22','16:19:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,37,0,'2025-11-22','21:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,38,0,'2025-11-22','21:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,39,0,'2025-11-22','21:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,40,0,'2025-11-22','21:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,41,0,'2025-11-22','21:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,42,0,'2025-11-23','10:29:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',160,43,0,'2025-11-23','10:31:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-11-23 12:03:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,1,0,'2025-11-16','14:15:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,2,0,'2025-11-16','14:15:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,3,0,'2025-11-16','14:16:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,188,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,4,0,'2025-11-16','17:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,5,0,'2025-11-16','17:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,6,0,'2025-11-16','17:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,7,0,'2025-11-16','17:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,8,0,'2025-11-16','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,9,0,'2025-11-17','17:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,10,0,'2025-11-17','17:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,11,0,'2025-11-17','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,12,0,'2025-11-17','17:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,13,0,'2025-11-17','17:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,14,0,'2025-11-18','11:52:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,15,0,'2025-11-18','17:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,16,0,'2025-11-18','17:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,17,0,'2025-11-18','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,18,0,'2025-11-18','17:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,19,0,'2025-11-18','17:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,20,0,'2025-11-18','21:22:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,188,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,21,0,'2025-11-18','21:23:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,22,0,'2025-11-19','11:23:00','SURG0014',0,1.00,60000,60000,'P',0,0,60000.00,0.00,0.00,60000.00,'',0,188,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,23,0,'2025-11-19','11:23:00','SURG0015',0,1.00,15000,15000,'P',0,0,15000.00,0.00,0.00,15000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,24,0,'2025-11-19','13:33:00','SURG0017',0,1.00,10000,10000,'P',0,0,10000.00,0.00,0.00,10000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,25,0,'2025-11-19','17:30:00','ROOM0009',0,0.50,3200,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,26,0,'2025-11-19','17:30:00','AECO0008',0,0.50,400,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,27,0,'2025-11-19','17:30:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,28,0,'2025-11-19','21:19:00','CARE0003',0,0.50,600,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,29,0,'2025-11-19','21:20:00','CARE0004',0,0.50,800,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,30,0,'2025-11-19','21:20:00','ROOM0009',0,0.50,5500,2750,'P',0,0,2750.00,0.00,0.00,2750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,31,0,'2025-11-19','21:21:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,32,0,'2025-11-19','21:21:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,33,0,'2025-11-19','21:23:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,34,0,'2025-11-19','21:24:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,35,0,'2025-11-19','21:24:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,36,0,'2025-11-20','16:00:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,37,0,'2025-11-20','16:03:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,188,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,38,0,'2025-11-20','17:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,39,0,'2025-11-20','17:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,40,0,'2025-11-20','17:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,41,0,'2025-11-20','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,42,0,'2025-11-20','17:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,43,0,'2025-11-21','16:00:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,44,0,'2025-11-21','16:01:00','WPRC0114',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,45,0,'2025-11-21','17:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,46,0,'2025-11-21','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,47,0,'2025-11-21','17:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,48,0,'2025-11-21','17:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,49,0,'2025-11-21','17:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,50,0,'2025-11-22','17:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,51,0,'2025-11-22','17:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,52,0,'2025-11-22','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,53,0,'2025-11-22','17:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,54,0,'2025-11-22','17:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',161,55,0,'2025-11-23','12:46:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-11-23 13:52:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',162,1,0,'2025-11-23','01:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:23:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',162,2,0,'2025-11-23','01:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:23:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',162,3,0,'2025-11-23','01:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:23:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',162,4,0,'2025-11-23','01:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:23:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',162,5,0,'2025-11-23','01:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:23:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',162,6,0,'2025-11-23','01:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','riya','2025-11-24 12:23:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',162,7,0,'2025-11-23','01:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','riya','2025-11-24 12:23:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',162,8,0,'2025-11-23','09:46:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:23:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',162,9,0,'2025-11-24','01:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:23:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',162,10,0,'2025-11-24','01:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:23:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',162,11,0,'2025-11-24','01:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:23:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',162,12,0,'2025-11-24','01:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,4,0,'',0,'','','','','','riya','2025-11-24 12:23:56','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,1,0,'2025-11-21','14:35:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,2,0,'2025-11-21','17:32:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,3,0,'2025-11-21','17:33:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,4,0,'2025-11-21','22:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,5,0,'2025-11-21','22:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,6,0,'2025-11-21','22:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,7,0,'2025-11-22','14:35:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,8,0,'2025-11-22','14:36:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,9,0,'2025-11-22','17:32:00','ROOM0008',0,9.00,100,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,10,0,'2025-11-22','22:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,11,0,'2025-11-22','22:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,12,0,'2025-11-22','22:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,13,0,'2025-11-22','22:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,14,0,'2025-11-22','22:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'305',0,4,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,15,0,'2025-11-22','22:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,16,0,'2025-11-22','22:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,17,0,'2025-11-23','17:33:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,18,0,'2025-11-23','22:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,19,0,'2025-11-23','22:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,20,0,'2025-11-23','22:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,21,0,'2025-11-23','22:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,22,0,'2025-11-23','22:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,23,0,'2025-11-24','10:00:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',163,24,0,'2025-11-24','12:13:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-11-24 12:53:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',164,1,0,'2025-11-23','11:15:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 19:11:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',164,2,0,'2025-11-23','11:15:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 19:11:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',164,3,0,'2025-11-23','18:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 19:11:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',164,4,0,'2025-11-23','18:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 19:11:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',164,5,0,'2025-11-23','18:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 19:11:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',164,6,0,'2025-11-23','18:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 19:11:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',164,7,0,'2025-11-23','18:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 19:11:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',164,8,0,'2025-11-23','18:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-11-24 19:11:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',164,9,0,'2025-11-24','11:15:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 19:11:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',164,10,0,'2025-11-24','18:49:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-24 19:11:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,1,0,'2025-11-23','03:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,2,0,'2025-11-23','03:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,3,0,'2025-11-23','03:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,4,0,'2025-11-23','03:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,5,0,'2025-11-23','03:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,6,0,'2025-11-23','03:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,7,0,'2025-11-23','03:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,8,0,'2025-11-23','09:50:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,9,0,'2025-11-23','09:50:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,10,0,'2025-11-23','09:52:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,11,0,'2025-11-23','09:57:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,213,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,12,0,'2025-11-23','09:59:00','XRY0045',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,13,0,'2025-11-23','21:13:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,14,0,'2025-11-23','21:13:00','USG0091',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,15,0,'2025-11-24','03:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,16,0,'2025-11-24','03:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,17,0,'2025-11-24','03:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,18,0,'2025-11-24','03:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,19,0,'2025-11-24','03:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,20,0,'2025-11-24','09:52:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',165,21,0,'2025-11-24','21:13:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:29:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,1,0,'2025-11-19','10:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,2,0,'2025-11-19','10:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,3,0,'2025-11-19','10:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,4,0,'2025-11-19','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,5,0,'2025-11-19','10:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,6,0,'2025-11-19','10:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,7,0,'2025-11-19','10:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,8,0,'2025-11-19','17:54:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,9,0,'2025-11-19','17:54:00','WPRC0079',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,10,0,'2025-11-20','10:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,11,0,'2025-11-20','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,12,0,'2025-11-20','10:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,13,0,'2025-11-20','10:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,14,0,'2025-11-20','10:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,15,0,'2025-11-20','17:53:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,16,0,'2025-11-20','17:54:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,17,0,'2025-11-20','17:54:00','WPRC0100',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,39,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,18,0,'2025-11-21','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,19,0,'2025-11-21','11:34:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,20,0,'2025-11-21','11:34:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,21,0,'2025-11-21','12:02:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,22,0,'2025-11-21','12:02:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,23,0,'2025-11-21','12:02:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,24,0,'2025-11-22','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,25,0,'2025-11-22','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,26,0,'2025-11-22','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,27,0,'2025-11-22','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,28,0,'2025-11-22','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,29,0,'2025-11-22','16:25:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,30,0,'2025-11-22','17:30:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,31,0,'2025-11-23','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,32,0,'2025-11-23','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,33,0,'2025-11-23','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,34,0,'2025-11-23','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,35,0,'2025-11-23','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,36,0,'2025-11-23','17:29:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,37,0,'2025-11-24','10:04:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,38,0,'2025-11-24','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,39,0,'2025-11-24','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,40,0,'2025-11-24','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,41,0,'2025-11-24','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',166,42,0,'2025-11-24','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-24 21:47:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',167,1,0,'2025-11-24','08:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:06:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',167,2,0,'2025-11-24','08:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:06:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',167,3,0,'2025-11-24','08:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:06:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',167,4,0,'2025-11-24','08:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:06:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',167,5,0,'2025-11-24','08:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:06:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',167,6,0,'2025-11-24','08:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','vishal','2025-11-25 12:06:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',167,7,0,'2025-11-24','08:50:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','vishal','2025-11-25 12:06:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',167,8,0,'2025-11-24','11:59:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:06:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',167,9,0,'2025-11-24','12:04:00','SURG0014',0,1.00,14000,14000,'P',0,0,14000.00,0.00,0.00,14000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-25 12:06:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',167,10,0,'2025-11-24','12:04:00','SURG0015',0,1.00,4400,4400,'P',0,0,4400.00,0.00,0.00,4400.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-25 12:06:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',167,11,0,'2025-11-25','08:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','vishal','2025-11-25 12:06:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',167,12,0,'2025-11-25','11:59:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-25 12:06:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,1,0,'2025-11-22','10:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,2,0,'2025-11-22','10:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,3,0,'2025-11-22','10:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,4,0,'2025-11-22','10:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,5,0,'2025-11-22','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,6,0,'2025-11-22','10:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,7,0,'2025-11-22','10:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,8,0,'2025-11-22','11:56:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,9,0,'2025-11-22','11:56:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,10,0,'2025-11-22','11:57:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,11,0,'2025-11-22','11:58:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,12,0,'2025-11-22','11:58:00','WPRC0086',0,2.00,200,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,13,0,'2025-11-22','11:59:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,14,0,'2025-11-23','10:06:00','XRY0045',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,15,0,'2025-11-23','10:07:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,212,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,16,0,'2025-11-23','10:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,17,0,'2025-11-23','10:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,18,0,'2025-11-23','10:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,19,0,'2025-11-23','10:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,20,0,'2025-11-23','10:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,21,0,'2025-11-23','11:57:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,22,0,'2025-11-23','11:58:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,23,0,'2025-11-23','11:58:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,24,0,'2025-11-24','10:06:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,25,0,'2025-11-24','10:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,26,0,'2025-11-24','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,27,0,'2025-11-24','10:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,28,0,'2025-11-24','10:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,29,0,'2025-11-24','10:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,30,0,'2025-11-24','12:28:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,31,0,'2025-11-24','12:30:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,32,0,'2025-11-25','12:14:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,33,0,'2025-11-25','12:24:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',168,34,0,'2025-11-25','12:27:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-25 12:59:38','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',169,1,0,'2025-11-24','01:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 14:11:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',169,2,0,'2025-11-24','01:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 14:11:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',169,3,0,'2025-11-24','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-25 14:11:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',169,4,0,'2025-11-24','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-25 14:11:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',169,5,0,'2025-11-24','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-25 14:11:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',169,6,0,'2025-11-24','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-25 14:11:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',169,7,0,'2025-11-24','01:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-11-25 14:11:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',169,8,0,'2025-11-24','14:00:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 14:11:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',169,9,0,'2025-11-24','14:00:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 14:11:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',169,10,0,'2025-11-25','14:00:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-25 14:11:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',169,11,0,'2025-11-25','14:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-25 14:11:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',170,1,0,'2025-09-30','18:51:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-25 19:01:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',170,2,0,'2025-09-30','18:51:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-25 19:01:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',170,3,0,'2025-09-30','18:52:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-25 19:01:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',170,4,0,'2025-09-30','18:53:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-25 19:01:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',170,5,0,'2025-09-30','18:53:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-25 19:01:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',170,6,0,'2025-09-30','18:53:00','SURG0014',0,1.00,6200,6200,'P',0,0,6200.00,0.00,0.00,6200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-25 19:01:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',170,7,0,'2025-09-30','18:54:00','SURG0015',0,1.00,2100,2100,'P',0,0,2100.00,0.00,0.00,2100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-25 19:01:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,1,0,'2025-11-23','12:01:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,2,0,'2025-11-23','16:59:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,3,0,'2025-11-23','17:00:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,4,0,'2025-11-23','20:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,5,0,'2025-11-23','20:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,6,0,'2025-11-23','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,7,0,'2025-11-23','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,8,0,'2025-11-23','20:30:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,9,0,'2025-11-24','17:00:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,10,0,'2025-11-24','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,11,0,'2025-11-24','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,12,0,'2025-11-24','20:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,13,0,'2025-11-24','20:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,14,0,'2025-11-24','20:30:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,15,0,'2025-11-25','17:00:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,16,0,'2025-11-25','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,17,0,'2025-11-25','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,18,0,'2025-11-25','20:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,19,0,'2025-11-25','20:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,20,0,'2025-11-25','20:30:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',171,21,0,'2025-11-26','11:58:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-26 12:13:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',172,1,0,'2025-11-25','05:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:33:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',172,2,0,'2025-11-25','05:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:33:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',172,3,0,'2025-11-25','05:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:33:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',172,4,0,'2025-11-25','05:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:33:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',172,5,0,'2025-11-25','05:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:33:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',172,6,0,'2025-11-25','05:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-26 12:33:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',172,7,0,'2025-11-25','05:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-26 12:33:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',172,8,0,'2025-11-25','12:06:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:33:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',172,9,0,'2025-11-25','12:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:33:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',172,10,0,'2025-11-26','12:06:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:33:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',172,11,0,'2025-11-26','12:07:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-26 12:33:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',172,12,0,'2025-11-26','12:08:00','ROOM0009',0,0.50,3200,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:33:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',172,13,0,'2025-11-26','12:08:00','AECO0008',0,0.50,400,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:33:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',172,14,0,'2025-11-26','12:08:00','CARE0001',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 12:33:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,1,0,'2025-11-24','11:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,2,0,'2025-11-24','11:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,3,0,'2025-11-24','11:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,4,0,'2025-11-24','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,5,0,'2025-11-24','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,6,0,'2025-11-24','11:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,7,0,'2025-11-24','11:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,8,0,'2025-11-24','13:04:00','SURG0016',0,1.00,35000,35000,'P',0,0,35000.00,0.00,0.00,35000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,9,0,'2025-11-24','16:36:00','WPRC0086',0,2.00,200,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,10,0,'2025-11-24','16:36:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,11,0,'2025-11-24','16:36:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,12,0,'2025-11-25','11:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,13,0,'2025-11-25','11:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,14,0,'2025-11-25','11:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,15,0,'2025-11-25','11:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,16,0,'2025-11-25','11:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,17,0,'2025-11-25','16:36:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,18,0,'2025-11-26','12:27:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',173,19,0,'2025-11-26','13:04:00','SURG0015',0,1.00,12100,12100,'P',0,0,12100.00,0.00,0.00,12100.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-26 13:05:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,1,0,'2025-11-17','09:45:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,2,0,'2025-11-17','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,3,0,'2025-11-17','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,4,0,'2025-11-17','13:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,5,0,'2025-11-17','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,6,0,'2025-11-17','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,7,0,'2025-11-17','13:00:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'402',0,70,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,8,0,'2025-11-18','11:51:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,9,0,'2025-11-18','13:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,10,0,'2025-11-18','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,11,0,'2025-11-18','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,12,0,'2025-11-18','13:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'402',0,70,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,13,0,'2025-11-18','13:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,14,0,'2025-11-18','17:55:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,70,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,15,0,'2025-11-18','17:56:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,16,0,'2025-11-18','18:07:00','USG0095',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,17,0,'2025-11-19','13:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'402',0,3,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,18,0,'2025-11-19','13:35:00','SURG0014',0,1.00,50000,50000,'P',0,0,50000.00,0.00,0.00,50000.00,'',0,70,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,19,0,'2025-11-19','13:36:00','SURG0017',0,1.00,50000,50000,'P',0,0,50000.00,0.00,0.00,50000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,20,0,'2025-11-19','13:37:00','SURG0015',0,1.00,25000,25000,'P',0,0,25000.00,0.00,0.00,25000.00,'',0,70,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,21,0,'2025-11-19','13:38:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,22,0,'2025-11-19','14:35:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,70,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,23,0,'2025-11-19','16:05:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,24,0,'2025-11-19','16:05:00','CARE0004',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,25,0,'2025-11-19','16:05:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,26,0,'2025-11-19','17:57:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,27,0,'2025-11-19','17:57:00','WPRC0092',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,224,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,28,0,'2025-11-19','17:57:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,29,0,'2025-11-19','17:58:00','WPRC0080',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,30,0,'2025-11-19','17:59:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,31,0,'2025-11-19','17:59:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,32,0,'2025-11-19','18:05:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,33,0,'2025-11-20','13:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,34,0,'2025-11-20','13:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,35,0,'2025-11-20','13:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,36,0,'2025-11-20','13:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'213',0,3,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,37,0,'2025-11-20','13:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'213',0,3,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,38,0,'2025-11-20','13:23:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,39,0,'2025-11-20','13:38:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,40,0,'2025-11-20','14:35:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,70,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,41,0,'2025-11-20','17:58:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,42,0,'2025-11-20','17:59:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,43,0,'2025-11-20','17:59:00','ROOM0004',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,44,0,'2025-11-20','18:05:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,45,0,'2025-11-20','18:05:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,46,0,'2025-11-21','10:27:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,47,0,'2025-11-21','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,48,0,'2025-11-21','13:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,49,0,'2025-11-21','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,50,0,'2025-11-21','13:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,3,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,51,0,'2025-11-21','13:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'208',0,3,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,52,0,'2025-11-21','13:38:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,53,0,'2025-11-21','14:33:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,54,0,'2025-11-21','14:33:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,55,0,'2025-11-21','14:33:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,56,0,'2025-11-21','14:36:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,57,0,'2025-11-21','14:36:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,58,0,'2025-11-22','10:02:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,59,0,'2025-11-22','10:26:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,60,0,'2025-11-22','10:27:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,61,0,'2025-11-22','10:28:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,62,0,'2025-11-22','10:28:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,63,0,'2025-11-22','10:56:00','WPRC0091',0,4.00,500,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,64,0,'2025-11-22','10:56:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,65,0,'2025-11-22','10:57:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,66,0,'2025-11-22','13:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,67,0,'2025-11-22','13:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,68,0,'2025-11-22','13:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'208',0,70,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,69,0,'2025-11-22','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'208',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,70,0,'2025-11-22','13:22:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,71,0,'2025-11-22','13:38:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,72,0,'2025-11-23','10:55:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,73,0,'2025-11-23','10:56:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,74,0,'2025-11-23','10:58:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,75,0,'2025-11-23','13:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,76,0,'2025-11-23','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,77,0,'2025-11-23','13:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,78,0,'2025-11-23','13:39:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,79,0,'2025-11-24','10:01:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,80,0,'2025-11-24','13:00:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,81,0,'2025-11-24','13:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,82,0,'2025-11-24','13:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'402',0,70,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,83,0,'2025-11-24','13:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,84,0,'2025-11-24','16:43:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,85,0,'2025-11-24','16:43:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,86,0,'2025-11-24','16:46:00','DRC0020',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,87,0,'2025-11-24','16:46:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,88,0,'2025-11-24','16:48:00','USG0091',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,89,0,'2025-11-24','16:49:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,90,0,'2025-11-25','13:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,91,0,'2025-11-25','13:00:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,92,0,'2025-11-25','13:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,93,0,'2025-11-25','13:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,70,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,94,0,'2025-11-25','16:43:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,95,0,'2025-11-25','16:43:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,96,0,'2025-11-25','16:47:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,97,0,'2025-11-25','16:47:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,98,0,'2025-11-25','16:48:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,99,0,'2025-11-25','16:48:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,100,0,'2025-11-26','13:21:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,101,0,'2025-11-26','13:29:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',174,102,0,'2025-11-26','13:32:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 15:00:29','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',175,1,0,'2025-11-26','14:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:27:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',175,2,0,'2025-11-26','14:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:27:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',175,3,0,'2025-11-26','14:30:00','DRC0019',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'409',0,226,0,'',0,'','','','','','riya','2025-11-26 19:27:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',175,4,0,'2025-11-26','18:16:00','ADMN0007',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:27:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',175,5,0,'2025-11-26','18:51:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:27:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',175,6,0,'2025-11-26','18:51:00','SURG0018',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,226,0,'',0,'','','','','','riya','2025-11-26 19:27:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',175,7,0,'2025-11-26','18:53:00','XRY0045',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 19:27:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,1,0,'2025-11-25','09:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,2,0,'2025-11-25','09:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,3,0,'2025-11-25','09:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,4,0,'2025-11-25','09:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,5,0,'2025-11-25','09:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,6,0,'2025-11-25','09:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,3,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,7,0,'2025-11-25','09:50:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,3,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,8,0,'2025-11-25','18:42:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,9,0,'2025-11-25','18:42:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,10,0,'2025-11-25','18:43:00','SURG0015',0,1.00,3750,3750,'P',0,0,3750.00,0.00,0.00,3750.00,'',0,3,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,11,0,'2025-11-25','18:43:00','SURG0014',0,1.00,15000,15000,'P',0,0,15000.00,0.00,0.00,15000.00,'',0,124,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,12,0,'2025-11-25','18:44:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,13,0,'2025-11-25','18:44:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,124,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,14,0,'2025-11-26','09:50:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,3,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,15,0,'2025-11-26','09:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,3,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,16,0,'2025-11-26','09:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,17,0,'2025-11-26','09:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,18,0,'2025-11-26','09:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',176,19,0,'2025-11-26','18:42:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-26 20:27:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',177,1,0,'2025-11-26','09:21:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 09:28:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',177,2,0,'2025-11-26','09:21:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 09:28:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',177,3,0,'2025-11-26','20:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 09:28:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',177,4,0,'2025-11-26','20:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 09:28:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',177,5,0,'2025-11-26','20:30:00','ROOM0009',0,0.50,2900,1450,'A',0,0,1450.00,0.00,0.00,1450.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-27 09:28:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',177,6,0,'2025-11-26','20:30:00','AECO0008',0,0.50,300,150,'A',0,0,150.00,0.00,0.00,150.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-27 09:28:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',177,7,0,'2025-11-26','20:30:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'402',0,9999,0,'',0,'','','','','','riya','2025-11-27 09:28:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',177,8,0,'2025-11-27','09:22:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','riya','2025-11-27 09:28:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',178,1,0,'2025-11-27','03:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 12:50:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',178,2,0,'2025-11-27','03:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 12:50:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',178,3,0,'2025-11-27','03:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-27 12:50:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',178,4,0,'2025-11-27','03:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-27 12:50:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',178,5,0,'2025-11-27','03:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-27 12:50:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',178,6,0,'2025-11-27','03:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'410',0,4,0,'',0,'','','','','','riya','2025-11-27 12:50:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',178,7,0,'2025-11-27','12:31:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 12:50:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',178,8,0,'2025-11-27','12:31:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 12:50:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,1,0,'2025-11-24','10:39:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,2,0,'2025-11-24','10:39:00','WPRC0086',0,2.00,200,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,3,0,'2025-11-24','10:39:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,4,0,'2025-11-24','10:40:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,5,0,'2025-11-24','10:40:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,6,0,'2025-11-24','10:40:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,7,0,'2025-11-24','18:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,8,0,'2025-11-24','18:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,9,0,'2025-11-24','18:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,10,0,'2025-11-24','18:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,11,0,'2025-11-24','18:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,12,0,'2025-11-24','18:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,13,0,'2025-11-25','10:39:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,14,0,'2025-11-25','10:40:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,15,0,'2025-11-25','13:45:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,16,0,'2025-11-25','18:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,17,0,'2025-11-25','18:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,18,0,'2025-11-25','18:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'410',0,4,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,19,0,'2025-11-25','18:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'410',0,4,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,20,0,'2025-11-25','18:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,21,0,'2025-11-26','12:19:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,22,0,'2025-11-26','12:20:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,23,0,'2025-11-26','18:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'310',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,24,0,'2025-11-26','18:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'310',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,25,0,'2025-11-26','18:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'310',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,26,0,'2025-11-26','18:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,4,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,27,0,'2025-11-26','18:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,4,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,28,0,'2025-11-27','12:19:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,29,0,'2025-11-27','12:20:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',179,30,0,'2025-11-27','12:21:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 13:28:25','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',180,1,0,'2025-11-26','13:33:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:41:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',180,2,0,'2025-11-26','13:34:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:41:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',180,3,0,'2025-11-26','20:40:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:41:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',180,4,0,'2025-11-26','20:40:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:41:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',180,5,0,'2025-11-26','20:40:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:41:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',180,6,0,'2025-11-26','20:40:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:41:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',180,7,0,'2025-11-26','20:40:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:41:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',180,8,0,'2025-11-26','20:40:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-11-27 13:41:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',180,9,0,'2025-11-27','13:34:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:41:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',180,10,0,'2025-11-27','13:34:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:41:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',180,11,0,'2025-11-27','13:34:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 13:41:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',180,12,0,'2025-11-27','13:35:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 13:41:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,1,0,'2025-11-22','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,2,0,'2025-11-22','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,3,0,'2025-11-22','09:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,4,0,'2025-11-22','09:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,5,0,'2025-11-22','09:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,6,0,'2025-11-22','09:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,7,0,'2025-11-22','09:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,8,0,'2025-11-22','11:08:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,9,0,'2025-11-22','11:33:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,10,0,'2025-11-22','11:33:00','ROOM0008',0,8.00,100,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,11,0,'2025-11-22','11:34:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,12,0,'2025-11-22','11:44:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,13,0,'2025-11-22','11:45:00','WPRC0087',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,14,0,'2025-11-22','11:45:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,15,0,'2025-11-22','11:46:00','ROOM0004',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,16,0,'2025-11-22','11:46:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,17,0,'2025-11-22','11:51:00','DRC0020',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,212,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,18,0,'2025-11-22','12:07:00','WPRC0116',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,19,0,'2025-11-22','14:30:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,20,0,'2025-11-23','09:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,21,0,'2025-11-23','09:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,22,0,'2025-11-23','09:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,23,0,'2025-11-23','09:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,24,0,'2025-11-23','09:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,25,0,'2025-11-23','11:34:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,26,0,'2025-11-23','11:41:00','WPRC0115',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,78,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,27,0,'2025-11-23','11:44:00','ROOM0008',0,10.00,100,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,28,0,'2025-11-23','11:44:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,29,0,'2025-11-23','11:45:00','WPRC0087',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,30,0,'2025-11-23','11:46:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,31,0,'2025-11-23','11:50:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,78,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,32,0,'2025-11-23','12:03:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,33,0,'2025-11-23','12:07:00','WPRC0116',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,34,0,'2025-11-23','12:09:00','WPRC0117',0,1.00,1700,1700,'P',0,0,1700.00,0.00,0.00,1700.00,'',0,40,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,35,0,'2025-11-23','14:30:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,36,0,'2025-11-24','09:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,37,0,'2025-11-24','09:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,38,0,'2025-11-24','09:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,39,0,'2025-11-24','09:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,40,0,'2025-11-24','09:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,41,0,'2025-11-24','10:31:00','WPRC0116',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,42,0,'2025-11-24','10:34:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,43,0,'2025-11-24','12:00:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,44,0,'2025-11-24','12:01:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,45,0,'2025-11-24','12:01:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,46,0,'2025-11-24','12:01:00','WPRC0087',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,47,0,'2025-11-24','12:03:00','ROOM0008',0,9.00,100,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,48,0,'2025-11-24','14:31:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,49,0,'2025-11-25','09:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,50,0,'2025-11-25','10:31:00','ROOM0008',0,8.00,100,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,51,0,'2025-11-25','10:32:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,52,0,'2025-11-25','10:33:00','WPRC0087',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,53,0,'2025-11-25','10:33:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,54,0,'2025-11-25','10:34:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,55,0,'2025-11-25','14:31:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,56,0,'2025-11-25','16:24:00','WPRC0116',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,57,0,'2025-11-25','16:28:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,58,0,'2025-11-25','16:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,59,0,'2025-11-25','16:31:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,225,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,60,0,'2025-11-25','18:37:00','CARE0003',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,61,0,'2025-11-25','18:37:00','CARE0004',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,62,0,'2025-11-25','18:37:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,63,0,'2025-11-26','09:30:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,64,0,'2025-11-26','09:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,65,0,'2025-11-26','09:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,66,0,'2025-11-26','09:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,67,0,'2025-11-26','09:30:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,68,0,'2025-11-26','14:31:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,69,0,'2025-11-26','16:24:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,70,0,'2025-11-26','16:24:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,71,0,'2025-11-26','16:26:00','WPRC0116',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,72,0,'2025-11-26','16:27:00','USG0095',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,73,0,'2025-11-26','16:28:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,74,0,'2025-11-26','16:28:00','WPRC0087',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,75,0,'2025-11-26','16:28:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,76,0,'2025-11-26','16:29:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,77,0,'2025-11-26','16:32:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,78,0,'2025-11-27','14:01:00','CARE0003',0,0.50,600,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,79,0,'2025-11-27','14:01:00','CARE0004',0,0.50,800,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,80,0,'2025-11-27','14:01:00','ROOM0009',0,0.50,5500,2750,'P',0,0,2750.00,0.00,0.00,2750.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,81,0,'2025-11-27','14:04:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,82,0,'2025-11-27','14:05:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,83,0,'2025-11-27','14:13:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,84,0,'2025-11-27','14:14:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,85,0,'2025-11-27','14:16:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,86,0,'2025-11-27','14:17:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',181,87,0,'2025-11-27','14:32:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 14:50:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',182,1,0,'2025-11-26','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',182,2,0,'2025-11-26','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',182,3,0,'2025-11-26','10:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',182,4,0,'2025-11-26','10:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',182,5,0,'2025-11-26','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',182,6,0,'2025-11-26','10:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',182,7,0,'2025-11-26','10:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',182,8,0,'2025-11-26','11:18:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',182,9,0,'2025-11-26','11:19:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',182,10,0,'2025-11-26','19:38:00','SURG0015',0,1.00,9800,9800,'A',0,0,9800.00,0.00,0.00,9800.00,'',0,3,0,'',0,'','','','','','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',182,11,0,'2025-11-26','19:38:00','SURG0014',0,1.00,30000,30000,'A',0,0,30000.00,0.00,0.00,30000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',182,12,0,'2025-11-27','10:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',182,13,0,'2025-11-27','10:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',182,14,0,'2025-11-27','10:00:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',182,15,0,'2025-11-27','10:00:00','AECO0008',0,0.50,300,150,'P',0,0,150.00,0.00,0.00,150.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',182,16,0,'2025-11-27','10:00:00','ROOM0009',0,0.50,2900,1450,'P',0,0,1450.00,0.00,0.00,1450.00,'411',0,9999,0,'',0,'','','','','','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',182,17,0,'2025-11-27','11:19:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',182,18,0,'2025-11-27','19:29:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-11-27 19:46:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,1,0,'2025-11-25','09:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,2,0,'2025-11-25','09:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,3,0,'2025-11-25','10:44:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,4,0,'2025-11-25','10:44:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,5,0,'2025-11-25','10:44:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,6,0,'2025-11-25','10:45:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,7,0,'2025-11-25','11:21:00','WPRC0086',0,4.00,200,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,8,0,'2025-11-25','11:21:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,9,0,'2025-11-25','11:21:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,10,0,'2025-11-25','11:22:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,11,0,'2025-11-25','11:22:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,12,0,'2025-11-25','20:22:00','SURG0015',0,1.00,16650,16650,'P',0,0,16650.00,0.00,0.00,16650.00,'',0,3,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,13,0,'2025-11-25','20:22:00','SURG0014',0,1.00,50000,50000,'P',0,0,50000.00,0.00,0.00,50000.00,'',0,3,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,14,0,'2025-11-26','09:45:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'210',0,3,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,15,0,'2025-11-26','10:56:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,16,0,'2025-11-26','11:25:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,17,0,'2025-11-26','11:27:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,18,0,'2025-11-26','11:27:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,19,0,'2025-11-26','19:21:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,20,0,'2025-11-26','19:22:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,21,0,'2025-11-27','09:45:00','ROOM0009',0,0.50,3200,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,22,0,'2025-11-27','09:45:00','AECO0008',0,0.50,400,200,'P',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,23,0,'2025-11-27','09:45:00','CARE0001',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'407',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,24,0,'2025-11-27','09:45:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,25,0,'2025-11-27','09:45:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',183,26,0,'2025-11-27','19:22:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 20:46:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',184,1,0,'2025-11-26','09:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:23:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',184,2,0,'2025-11-26','09:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:23:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',184,3,0,'2025-11-26','09:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:23:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',184,4,0,'2025-11-26','09:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:23:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',184,5,0,'2025-11-26','09:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:23:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',184,6,0,'2025-11-26','09:50:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-11-27 21:23:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',184,7,0,'2025-11-26','09:50:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-11-27 21:23:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',184,8,0,'2025-11-26','10:51:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:23:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',184,9,0,'2025-11-26','10:51:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:23:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',184,10,0,'2025-11-26','10:51:00','WPRC0080',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:23:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',184,11,0,'2025-11-26','10:52:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,88,0,'',0,'','','','','','riya','2025-11-27 21:23:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',184,12,0,'2025-11-27','09:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:23:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',184,13,0,'2025-11-27','09:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:23:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',184,14,0,'2025-11-27','09:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-11-27 21:23:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',184,15,0,'2025-11-27','09:50:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-11-27 21:23:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',184,16,0,'2025-11-27','09:50:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-11-27 21:23:33','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',185,1,0,'2025-11-27','02:26:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:43:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',185,2,0,'2025-11-27','02:28:00','WPRC0089',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:43:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',185,3,0,'2025-11-27','23:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:43:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',185,4,0,'2025-11-27','23:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:43:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',185,5,0,'2025-11-27','23:00:00','ROOM0009',0,0.50,5500,2750,'A',0,0,2750.00,0.00,0.00,2750.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:43:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',185,6,0,'2025-11-27','23:00:00','AECO0008',0,0.50,800,400,'P',0,0,400.00,0.00,0.00,400.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:43:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',185,7,0,'2025-11-27','23:00:00','CARE0001',0,0.50,600,300,'P',0,0,300.00,0.00,0.00,300.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:43:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',185,8,0,'2025-11-28','02:26:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-28 02:43:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',185,9,0,'2025-11-28','02:26:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-28 02:43:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',185,10,0,'2025-11-28','02:27:00','WPRC0101',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:43:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',185,11,0,'2025-11-28','02:27:00','WPRC0086',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:43:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',185,12,0,'2025-11-28','02:28:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:43:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',185,13,0,'2025-11-28','02:34:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 02:43:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,1,0,'2025-11-25','10:58:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,2,0,'2025-11-25','19:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,3,0,'2025-11-25','19:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,4,0,'2025-11-25','19:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,5,0,'2025-11-25','19:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,6,0,'2025-11-25','19:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,7,0,'2025-11-25','19:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,3,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,8,0,'2025-11-26','10:58:00','WPRC0086',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,9,0,'2025-11-26','11:01:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,10,0,'2025-11-26','11:01:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,188,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,11,0,'2025-11-26','11:04:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,227,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,12,0,'2025-11-26','19:08:00','SURG0014',0,1.00,45000,45000,'P',0,0,45000.00,0.00,0.00,45000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,13,0,'2025-11-26','19:08:00','SURG0015',0,1.00,11250,11250,'P',0,0,11250.00,0.00,0.00,11250.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,14,0,'2025-11-26','19:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,15,0,'2025-11-26','19:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,3,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,16,0,'2025-11-26','19:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,3,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,17,0,'2025-11-26','19:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,18,0,'2025-11-26','19:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,19,0,'2025-11-27','10:54:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,20,0,'2025-11-27','10:56:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,21,0,'2025-11-27','10:59:00','WPRC0086',0,3.00,200,600,'A',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,22,0,'2025-11-27','10:59:00','WPRC0089',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,23,0,'2025-11-27','11:02:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,24,0,'2025-11-27','11:02:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,25,0,'2025-11-27','19:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,26,0,'2025-11-27','19:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,27,0,'2025-11-27','19:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,3,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,28,0,'2025-11-27','19:30:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,3,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,29,0,'2025-11-27','19:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,30,0,'2025-11-28','10:54:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',186,31,0,'2025-11-28','11:01:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-28 11:21:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,1,0,'2025-11-24','11:20:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,2,0,'2025-11-24','11:20:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,3,0,'2025-11-24','11:22:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,4,0,'2025-11-24','22:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,5,0,'2025-11-24','22:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,6,0,'2025-11-24','22:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,7,0,'2025-11-24','22:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,8,0,'2025-11-24','22:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,9,0,'2025-11-25','11:21:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,10,0,'2025-11-25','11:21:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,11,0,'2025-11-25','11:22:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,12,0,'2025-11-25','11:28:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,13,0,'2025-11-25','11:33:00','WPRC0097',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,14,0,'2025-11-25','11:34:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,15,0,'2025-11-25','22:30:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,16,0,'2025-11-25','22:30:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,17,0,'2025-11-25','22:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,18,0,'2025-11-25','22:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,19,0,'2025-11-26','11:34:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,20,0,'2025-11-26','11:34:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,21,0,'2025-11-26','22:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,22,0,'2025-11-26','22:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,23,0,'2025-11-26','22:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'401',0,4,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,24,0,'2025-11-26','22:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,25,0,'2025-11-26','22:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,26,0,'2025-11-27','11:11:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,27,0,'2025-11-27','22:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,28,0,'2025-11-27','22:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,29,0,'2025-11-27','22:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,30,0,'2025-11-27','22:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,31,0,'2025-11-27','22:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,32,0,'2025-11-28','12:37:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,33,0,'2025-11-28','12:38:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',187,34,0,'2025-11-28','12:38:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-28 12:48:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',188,1,0,'2025-11-27','11:41:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',188,2,0,'2025-11-27','11:42:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',188,3,0,'2025-11-27','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',188,4,0,'2025-11-27','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',188,5,0,'2025-11-27','15:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',188,6,0,'2025-11-27','15:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',188,7,0,'2025-11-27','15:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',188,8,0,'2025-11-27','15:00:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'207',0,78,0,'',0,'','','','','','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',188,9,0,'2025-11-28','09:36:00','USG0091',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',188,10,0,'2025-11-28','09:37:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',188,11,0,'2025-11-28','11:41:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',188,12,0,'2025-11-28','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',188,13,0,'2025-11-28','15:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'411',0,78,0,'',0,'','','','','','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',188,14,0,'2025-11-28','15:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'411',0,78,0,'',0,'','','','','','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',188,15,0,'2025-11-28','15:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',188,16,0,'2025-11-28','15:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',188,17,0,'2025-11-29','09:36:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',188,18,0,'2025-11-29','09:37:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-11-29 11:54:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',189,1,0,'2025-11-27','16:31:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',189,2,0,'2025-11-27','16:37:00','WPRC0090',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',189,3,0,'2025-11-27','17:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',189,4,0,'2025-11-27','17:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',189,5,0,'2025-11-27','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',189,6,0,'2025-11-27','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',189,7,0,'2025-11-27','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',189,8,0,'2025-11-27','17:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-29 12:17:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',189,9,0,'2025-11-28','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',189,10,0,'2025-11-28','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',189,11,0,'2025-11-28','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-29 12:17:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',189,12,0,'2025-11-28','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-29 12:17:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',189,13,0,'2025-11-28','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'409',0,4,0,'',0,'','','','','','vishal','2025-11-29 12:17:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',189,14,0,'2025-11-29','11:22:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-29 12:17:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',190,1,0,'2025-11-29','11:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 21:08:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',190,2,0,'2025-11-29','11:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 21:08:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',190,3,0,'2025-11-29','11:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-29 21:08:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',190,4,0,'2025-11-29','11:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-29 21:08:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',190,5,0,'2025-11-29','11:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-11-29 21:08:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',190,6,0,'2025-11-29','20:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-29 21:08:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',190,7,0,'2025-11-29','21:02:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-29 21:08:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',190,8,0,'2025-11-29','21:02:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-11-29 21:08:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,1,0,'2025-11-20','12:02:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,2,0,'2025-11-20','15:01:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,3,0,'2025-11-20','15:01:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,4,0,'2025-11-20','15:02:00','WPRC0079',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,5,0,'2025-11-20','22:40:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,6,0,'2025-11-20','22:40:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,7,0,'2025-11-20','22:40:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,8,0,'2025-11-20','22:40:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,9,0,'2025-11-20','22:40:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,10,0,'2025-11-21','10:44:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,11,0,'2025-11-21','12:02:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,12,0,'2025-11-21','15:02:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,13,0,'2025-11-21','22:40:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,14,0,'2025-11-21','22:40:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,15,0,'2025-11-21','22:40:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,16,0,'2025-11-21','22:40:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,17,0,'2025-11-21','22:40:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,18,0,'2025-11-22','10:44:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,19,0,'2025-11-22','10:44:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,20,0,'2025-11-22','12:02:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,21,0,'2025-11-22','22:40:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,22,0,'2025-11-22','22:40:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,23,0,'2025-11-22','22:40:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,24,0,'2025-11-22','22:40:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,25,0,'2025-11-22','22:40:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,26,0,'2025-11-23','12:02:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,27,0,'2025-11-23','12:22:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,28,0,'2025-11-23','12:22:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,29,0,'2025-11-23','22:40:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,30,0,'2025-11-23','22:40:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,31,0,'2025-11-23','22:40:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,32,0,'2025-11-23','22:40:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,33,0,'2025-11-23','22:40:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,34,0,'2025-11-24','11:20:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,35,0,'2025-11-24','12:02:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,36,0,'2025-11-24','22:40:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,37,0,'2025-11-24','22:40:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,38,0,'2025-11-24','22:40:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,39,0,'2025-11-24','22:40:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,40,0,'2025-11-24','22:40:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,41,0,'2025-11-25','10:36:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,42,0,'2025-11-25','22:40:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,43,0,'2025-11-25','22:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,44,0,'2025-11-25','22:40:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,45,0,'2025-11-25','22:40:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,46,0,'2025-11-25','22:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,47,0,'2025-11-26','11:13:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,48,0,'2025-11-26','22:40:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,49,0,'2025-11-26','22:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,50,0,'2025-11-26','22:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,51,0,'2025-11-26','22:40:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,52,0,'2025-11-26','22:40:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,53,0,'2025-11-27','11:13:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,54,0,'2025-11-27','22:40:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,55,0,'2025-11-27','22:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,56,0,'2025-11-27','22:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,57,0,'2025-11-27','22:40:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,58,0,'2025-11-27','22:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,59,0,'2025-11-28','11:54:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,60,0,'2025-11-28','22:40:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,61,0,'2025-11-28','22:40:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,62,0,'2025-11-28','22:40:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,63,0,'2025-11-28','22:40:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,64,0,'2025-11-28','22:40:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,65,0,'2025-11-29','11:54:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,66,0,'2025-11-29','22:40:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,67,0,'2025-11-29','22:40:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,68,0,'2025-11-29','22:40:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,69,0,'2025-11-29','22:40:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'405',0,8,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,70,0,'2025-11-29','22:40:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,71,0,'2025-11-30','11:54:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',191,72,0,'2025-11-30','11:59:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-30 13:51:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,1,0,'2025-11-27','02:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,2,0,'2025-11-27','02:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,3,0,'2025-11-27','02:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,4,0,'2025-11-27','02:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,5,0,'2025-11-27','02:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,6,0,'2025-11-27','02:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,7,0,'2025-11-27','02:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,8,0,'2025-11-27','11:50:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,231,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,9,0,'2025-11-27','14:11:00','SURG0015',0,1.00,6250,6250,'P',0,0,6250.00,0.00,0.00,6250.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,10,0,'2025-11-27','14:11:00','SURG0016',0,1.00,25000,25000,'P',0,0,25000.00,0.00,0.00,25000.00,'',0,231,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,11,0,'2025-11-27','16:42:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,12,0,'2025-11-27','16:42:00','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,13,0,'2025-11-27','16:42:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,14,0,'2025-11-27','16:42:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,15,0,'2025-11-27','16:43:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,16,0,'2025-11-27','16:43:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,17,0,'2025-11-27','16:43:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,18,0,'2025-11-27','16:45:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,231,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,19,0,'2025-11-27','16:45:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,231,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,20,0,'2025-11-28','02:00:00','ROOM0009',0,0.50,5500,2750,'A',0,0,2750.00,0.00,0.00,2750.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,21,0,'2025-11-28','02:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,22,0,'2025-11-28','02:00:00','AECO0008',0,0.50,800,400,'P',0,0,400.00,0.00,0.00,400.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,23,0,'2025-11-28','02:00:00','CARE0001',0,0.50,600,300,'P',0,0,300.00,0.00,0.00,300.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,24,0,'2025-11-28','11:50:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,231,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,25,0,'2025-11-28','12:12:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,26,0,'2025-11-28','12:12:00','ROOM0009',0,0.50,3200,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,27,0,'2025-11-28','12:12:00','AECO0008',0,0.50,400,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,28,0,'2025-11-28','12:12:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,29,0,'2025-11-28','14:04:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,231,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,30,0,'2025-11-28','14:06:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,31,0,'2025-11-28','14:08:00','WPRC0077',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,32,0,'2025-11-29','02:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,33,0,'2025-11-29','02:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'407',0,8,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,34,0,'2025-11-29','02:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,35,0,'2025-11-29','02:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,36,0,'2025-11-29','02:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,37,0,'2025-11-29','14:04:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,231,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,38,0,'2025-11-29','14:06:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,39,0,'2025-11-29','14:07:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,231,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,40,0,'2025-11-30','14:02:00','ROOM0009',0,0.50,3200,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,41,0,'2025-11-30','14:02:00','AECO0008',0,0.50,400,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,42,0,'2025-11-30','14:02:00','CARE0001',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,43,0,'2025-11-30','14:03:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',192,44,0,'2025-11-30','14:07:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 15:26:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',193,1,0,'2025-11-29','14:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 18:15:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',193,2,0,'2025-11-29','14:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 18:15:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',193,3,0,'2025-11-29','14:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-30 18:15:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',193,4,0,'2025-11-29','14:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-30 18:15:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',193,5,0,'2025-11-29','14:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-11-30 18:15:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',193,6,0,'2025-11-29','14:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','vishal','2025-11-30 18:15:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',193,7,0,'2025-11-29','14:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','vishal','2025-11-30 18:15:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',193,8,0,'2025-11-29','18:04:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-11-30 18:15:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',193,9,0,'2025-11-30','18:04:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-30 18:15:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',193,10,0,'2025-11-30','18:04:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-30 18:15:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',193,11,0,'2025-11-29','18:14:00','SURG0016',0,1.00,17000,17000,'P',0,0,17000.00,0.00,0.00,17000.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-30 18:15:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',193,12,0,'2025-11-29','18:14:00','SURG0015',0,1.00,5800,5800,'P',0,0,5800.00,0.00,0.00,5800.00,'',0,3,0,'',0,'','','','','','vishal','2025-11-30 18:15:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,1,0,'2025-11-28','11:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,2,0,'2025-11-28','21:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,3,0,'2025-11-28','21:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,4,0,'2025-11-28','21:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,5,0,'2025-11-28','21:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,6,0,'2025-11-28','21:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,7,0,'2025-11-29','11:53:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,8,0,'2025-11-29','11:55:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,9,0,'2025-11-29','11:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,10,0,'2025-11-29','11:56:00','WPRC0086',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,11,0,'2025-11-29','11:58:00','SURG0014',0,1.00,19000,19000,'P',0,0,19000.00,0.00,0.00,19000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,12,0,'2025-11-29','11:59:00','SURG0015',0,1.00,6200,6200,'P',0,0,6200.00,0.00,0.00,6200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,13,0,'2025-11-29','21:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,3,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,14,0,'2025-11-29','21:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,3,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,15,0,'2025-11-29','21:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,16,0,'2025-11-29','21:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,17,0,'2025-11-29','21:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,18,0,'2025-11-30','11:55:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,19,0,'2025-11-30','21:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,20,0,'2025-11-30','21:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'401',0,3,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,21,0,'2025-11-30','21:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,22,0,'2025-11-30','21:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,23,0,'2025-11-30','21:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,24,0,'2025-12-01','11:53:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,25,0,'2025-12-01','11:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',194,26,0,'2025-12-01','11:57:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-01 13:33:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,1,0,'2025-11-24','10:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,2,0,'2025-11-24','10:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,3,0,'2025-11-24','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,4,0,'2025-11-24','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,5,0,'2025-11-24','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,6,0,'2025-11-24','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,7,0,'2025-11-24','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,8,0,'2025-11-24','17:13:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,9,0,'2025-11-24','17:13:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,10,0,'2025-11-24','17:14:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,11,0,'2025-11-25','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,12,0,'2025-11-25','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,13,0,'2025-11-25','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,14,0,'2025-11-25','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,15,0,'2025-11-25','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,16,0,'2025-11-25','11:17:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,17,0,'2025-11-26','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,18,0,'2025-11-26','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,19,0,'2025-11-26','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,20,0,'2025-11-26','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,21,0,'2025-11-26','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,22,0,'2025-11-26','11:15:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,23,0,'2025-11-26','11:16:00','WPRC0086',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,24,0,'2025-11-26','11:16:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,25,0,'2025-11-26','11:16:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,26,0,'2025-11-26','11:44:00','SURG0014',0,1.00,86250,86250,'P',0,0,86250.00,0.00,0.00,86250.00,'',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,27,0,'2025-11-26','11:44:00','SURG0015',0,1.00,28740,28740,'P',0,0,28740.00,0.00,0.00,28740.00,'',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,28,0,'2025-11-27','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,29,0,'2025-11-27','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,30,0,'2025-11-27','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,31,0,'2025-11-27','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,32,0,'2025-11-27','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,33,0,'2025-11-28','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,34,0,'2025-11-28','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,35,0,'2025-11-28','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,36,0,'2025-11-28','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,37,0,'2025-11-28','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,38,0,'2025-11-29','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,39,0,'2025-11-29','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,40,0,'2025-11-29','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,41,0,'2025-11-29','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,42,0,'2025-11-29','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,43,0,'2025-11-30','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,44,0,'2025-11-30','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,45,0,'2025-11-30','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,46,0,'2025-11-30','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,47,0,'2025-11-30','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,48,0,'2025-11-30','11:42:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',195,49,0,'2025-12-01','11:44:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-12-01 14:33:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',196,1,0,'2025-11-29','19:32:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',196,2,0,'2025-11-29','19:32:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',196,3,0,'2025-11-29','19:33:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',196,4,0,'2025-11-29','21:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',196,5,0,'2025-11-29','21:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',196,6,0,'2025-11-29','21:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',196,7,0,'2025-11-29','21:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',196,8,0,'2025-11-29','21:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',196,9,0,'2025-11-30','19:32:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',196,10,0,'2025-11-30','19:33:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',196,11,0,'2025-11-30','21:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',196,12,0,'2025-11-30','21:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',196,13,0,'2025-11-30','21:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',196,14,0,'2025-11-30','21:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',196,15,0,'2025-11-30','21:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',196,16,0,'2025-12-01','14:41:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',196,17,0,'2025-12-01','15:03:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',196,18,0,'2025-12-01','21:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-01 15:28:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',197,1,0,'2025-11-29','22:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 19:03:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',197,2,0,'2025-11-29','22:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 19:03:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',197,3,0,'2025-11-29','22:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-01 19:03:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',197,4,0,'2025-11-29','22:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-01 19:03:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',197,5,0,'2025-11-29','22:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-01 19:03:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',197,6,0,'2025-11-30','18:50:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-01 19:03:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',197,7,0,'2025-11-30','22:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-12-01 19:03:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',197,8,0,'2025-11-30','22:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-12-01 19:03:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',197,9,0,'2025-11-30','22:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-01 19:03:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',197,10,0,'2025-11-30','22:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-01 19:03:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',197,11,0,'2025-11-30','22:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-01 19:03:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',197,12,0,'2025-12-01','22:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-12-01 19:03:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',197,13,0,'2025-12-01','22:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-12-01 19:03:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',198,1,0,'2025-12-01','14:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:21:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',198,2,0,'2025-12-01','14:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:21:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',198,3,0,'2025-12-01','14:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:21:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',198,4,0,'2025-12-01','14:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:21:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',198,5,0,'2025-12-01','14:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:21:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',198,6,0,'2025-12-01','14:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','riya','2025-12-02 14:21:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',198,7,0,'2025-12-01','14:03:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:21:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',198,8,0,'2025-12-02','14:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','riya','2025-12-02 14:21:28','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,1,0,'2025-11-29','12:38:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,2,0,'2025-11-29','12:42:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,8,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,3,0,'2025-11-29','12:42:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,4,0,'2025-11-29','13:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,5,0,'2025-11-29','13:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,6,0,'2025-11-29','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,7,0,'2025-11-29','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,8,0,'2025-11-29','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,9,0,'2025-11-30','12:38:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,10,0,'2025-11-30','12:43:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,78,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,11,0,'2025-11-30','12:44:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,12,0,'2025-11-30','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,13,0,'2025-11-30','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,14,0,'2025-11-30','13:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,15,0,'2025-11-30','13:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,16,0,'2025-11-30','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,17,0,'2025-12-01','12:39:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,18,0,'2025-12-01','12:41:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,19,0,'2025-12-01','12:42:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,20,0,'2025-12-01','12:43:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,21,0,'2025-12-01','12:44:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,22,0,'2025-12-01','13:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,23,0,'2025-12-01','13:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,24,0,'2025-12-01','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,25,0,'2025-12-01','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,26,0,'2025-12-01','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,27,0,'2025-12-02','12:40:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,28,0,'2025-12-02','12:40:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,29,0,'2025-12-02','12:43:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,30,0,'2025-12-02','14:45:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',199,31,0,'2025-12-02','14:47:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-02 14:51:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',200,1,0,'2025-12-02','10:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-02 17:18:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',200,2,0,'2025-12-02','10:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-02 17:18:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',200,3,0,'2025-12-02','10:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-02 17:18:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',200,4,0,'2025-12-02','10:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-02 17:18:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',200,5,0,'2025-12-02','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-02 17:18:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',200,6,0,'2025-12-02','10:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,3,0,'',0,'','','','','','vishal','2025-12-02 17:18:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',200,7,0,'2025-12-02','16:49:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-02 17:18:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',200,8,0,'2025-12-02','16:49:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-02 17:18:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',200,9,0,'2025-12-02','16:49:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-02 17:18:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',200,10,0,'2025-12-02','16:51:00','SURG0016',0,1.00,6500,6500,'P',0,0,6500.00,0.00,0.00,6500.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-02 17:18:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',200,11,0,'2025-12-02','16:51:00','SURG0015',0,1.00,1900,1900,'P',0,0,1900.00,0.00,0.00,1900.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-02 17:18:01','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,1,1,'2025-11-30','11:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,2,1,'2025-11-30','11:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,3,1,'2025-11-30','11:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,4,1,'2025-11-30','11:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,5,1,'2025-11-30','11:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,6,1,'2025-11-30','11:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,7,1,'2025-11-30','11:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,8,1,'2025-11-30','19:42:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,9,1,'2025-11-30','19:43:00','WPRC0080',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,10,1,'2025-11-30','19:44:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,11,1,'2025-12-01','11:15:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,12,1,'2025-12-01','11:15:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,13,1,'2025-12-01','11:15:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,14,1,'2025-12-01','11:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,15,1,'2025-12-01','11:15:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,16,1,'2025-12-01','19:43:00','WPRC0083',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,17,1,'2025-12-01','20:56:00','SURG0016',0,1.00,18500,18500,'A',0,0,18500.00,0.00,0.00,18500.00,'',0,3,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,18,1,'2025-12-01','20:56:00','SURG0015',0,1.00,5900,5900,'A',0,0,5900.00,0.00,0.00,5900.00,'',0,3,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,19,1,'2025-12-02','11:15:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,20,1,'2025-12-02','11:15:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,21,1,'2025-12-02','11:15:00','CARE0001',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100.00,'402',0,9999,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,22,1,'2025-12-02','11:15:00','AECO0008',0,0.50,300,150,'P',0,0,150.00,0.00,0.00,150.00,'402',0,9999,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,23,1,'2025-12-02','11:15:00','ROOM0009',0,0.50,2900,1450,'P',0,0,1450.00,0.00,0.00,1450.00,'402',0,9999,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,24,1,'2025-12-02','19:43:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','N','vishal','2025-12-02 21:01:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,1,1,'2025-12-01','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,2,1,'2025-12-01','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,3,1,'2025-12-01','09:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'310',0,9999,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,4,1,'2025-12-01','09:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'310',0,9999,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,5,1,'2025-12-01','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'310',0,9999,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,6,1,'2025-12-01','09:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,3,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,7,1,'2025-12-01','09:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,3,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,8,1,'2025-12-01','10:43:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,9,1,'2025-12-01','10:44:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,10,1,'2025-12-01','10:46:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,11,1,'2025-12-01','10:49:00','SURG0015',0,1.00,10500,10500,'P',0,0,10500.00,0.00,0.00,10500.00,'',0,3,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,12,1,'2025-12-02','09:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,3,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,13,1,'2025-12-02','09:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,3,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,14,1,'2025-12-02','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'310',0,9999,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,15,1,'2025-12-02','09:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'310',0,9999,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,16,1,'2025-12-02','09:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'310',0,9999,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,17,1,'2025-12-02','10:44:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,18,1,'2025-12-03','09:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'310',0,3,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,19,1,'2025-12-03','10:45:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,20,1,'2025-12-01','10:50:00','SURG0014',0,1.00,31600,31600,'P',0,0,31600.00,0.00,0.00,31600.00,'',0,3,0,'',0,'','','','','N','riya','2025-12-03 11:03:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,1,0,'2025-11-21','10:52:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,2,0,'2025-11-21','10:52:00','WPRC0079',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,3,0,'2025-11-21','12:23:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,4,0,'2025-11-21','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,5,0,'2025-11-21','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,6,0,'2025-11-21','15:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,7,0,'2025-11-21','15:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,8,0,'2025-11-21','15:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,9,0,'2025-11-21','15:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,10,0,'2025-11-22','10:53:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,11,0,'2025-11-22','12:24:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,12,0,'2025-11-22','12:24:00','DRC0020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,8,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,13,0,'2025-11-22','15:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,14,0,'2025-11-22','15:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,15,0,'2025-11-22','15:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,16,0,'2025-11-22','15:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,17,0,'2025-11-22','15:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,18,0,'2025-11-23','12:23:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,19,0,'2025-11-23','15:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,20,0,'2025-11-23','15:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,21,0,'2025-11-23','16:18:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,22,0,'2025-11-23','16:22:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,23,0,'2025-11-23','16:23:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,24,0,'2025-11-23','16:23:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,25,0,'2025-11-24','12:13:00','DRC0020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,229,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,26,0,'2025-11-24','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,27,0,'2025-11-24','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,28,0,'2025-11-24','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,29,0,'2025-11-24','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,30,0,'2025-11-24','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,31,0,'2025-11-24','16:18:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,32,0,'2025-11-24','16:18:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,33,0,'2025-11-25','12:02:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,34,0,'2025-11-25','15:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,35,0,'2025-11-25','15:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,36,0,'2025-11-25','15:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,37,0,'2025-11-25','15:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,38,0,'2025-11-25','15:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,39,0,'2025-11-25','16:13:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,40,0,'2025-11-25','16:18:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,41,0,'2025-11-25','16:18:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,42,0,'2025-11-26','12:00:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,43,0,'2025-11-26','12:01:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,44,0,'2025-11-26','12:02:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,45,0,'2025-11-26','12:04:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,46,0,'2025-11-26','12:05:00','WPRC0092',0,1.00,3000,3000,'A',0,0,3000.00,0.00,0.00,3000.00,'',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,47,0,'2025-11-26','12:13:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,229,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,48,0,'2025-11-26','15:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,49,0,'2025-11-26','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,50,0,'2025-11-26','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,51,0,'2025-11-26','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,52,0,'2025-11-26','15:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,53,0,'2025-11-26','16:13:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,54,0,'2025-11-27','12:00:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,55,0,'2025-11-27','12:03:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,56,0,'2025-11-27','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,57,0,'2025-11-27','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,58,0,'2025-11-27','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,59,0,'2025-11-27','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,60,0,'2025-11-27','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,61,0,'2025-11-27','16:10:00','WPRC0080',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,62,0,'2025-11-27','16:11:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,63,0,'2025-11-27','16:12:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,64,0,'2025-11-27','16:13:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,65,0,'2025-11-28','15:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,66,0,'2025-11-28','15:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,67,0,'2025-11-28','15:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,68,0,'2025-11-28','15:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,69,0,'2025-11-28','15:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,70,0,'2025-11-28','16:10:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,71,0,'2025-11-28','16:11:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,72,0,'2025-11-28','16:12:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,73,0,'2025-11-28','16:13:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,74,0,'2025-11-29','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,75,0,'2025-11-29','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,76,0,'2025-11-29','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,77,0,'2025-11-29','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,78,0,'2025-11-29','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,8,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,79,0,'2025-11-29','18:57:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,80,0,'2025-11-29','19:25:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,81,0,'2025-11-29','19:25:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,82,0,'2025-11-29','19:26:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,83,0,'2025-11-30','15:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,84,0,'2025-11-30','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,85,0,'2025-11-30','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,86,0,'2025-11-30','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,87,0,'2025-11-30','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,88,0,'2025-11-30','18:55:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,89,0,'2025-11-30','18:55:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,90,0,'2025-11-30','18:56:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,91,0,'2025-11-30','18:56:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,92,0,'2025-11-30','18:57:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,93,0,'2025-12-01','13:08:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,94,0,'2025-12-01','13:09:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,95,0,'2025-12-01','13:10:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,96,0,'2025-12-01','13:52:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,97,0,'2025-12-01','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,98,0,'2025-12-01','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,99,0,'2025-12-01','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,100,0,'2025-12-01','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,101,0,'2025-12-01','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,102,0,'2025-12-02','13:08:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,103,0,'2025-12-02','13:09:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,104,0,'2025-12-02','13:52:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,105,0,'2025-12-02','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,106,0,'2025-12-02','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,107,0,'2025-12-02','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,108,0,'2025-12-02','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,109,0,'2025-12-02','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,110,0,'2025-12-03','13:46:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,111,0,'2025-12-03','13:52:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,112,0,'2025-12-03','13:54:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',203,113,0,'2025-12-03','13:56:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-03 16:54:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,1,0,'2025-11-26','10:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,2,0,'2025-11-26','10:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,3,0,'2025-11-26','10:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,4,0,'2025-11-26','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,5,0,'2025-11-26','10:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,6,0,'2025-11-26','10:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,7,0,'2025-11-26','10:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,8,0,'2025-11-26','15:46:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,9,0,'2025-11-26','16:35:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,10,0,'2025-11-26','16:35:00','WPRC0088',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,11,0,'2025-11-26','16:35:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,12,0,'2025-11-26','16:35:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,13,0,'2025-11-26','16:37:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,14,0,'2025-11-26','16:37:00','WPRC0087',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,15,0,'2025-11-26','16:37:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,16,0,'2025-11-26','19:40:00','WPRC0098',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,17,0,'2025-11-27','10:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,18,0,'2025-11-27','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,19,0,'2025-11-27','10:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,20,0,'2025-11-27','10:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,21,0,'2025-11-27','10:15:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,22,0,'2025-11-27','15:46:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,23,0,'2025-11-27','15:48:00','WPRC0118',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,24,0,'2025-11-27','16:36:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,25,0,'2025-11-27','16:36:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,26,0,'2025-11-27','16:37:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,27,0,'2025-11-27','16:37:00','WPRC0087',0,3.00,500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,28,0,'2025-11-27','19:41:00','WPRC0098',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,29,0,'2025-11-28','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,30,0,'2025-11-28','10:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,31,0,'2025-11-28','10:15:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,32,0,'2025-11-28','10:15:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,33,0,'2025-11-28','10:15:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,34,0,'2025-11-28','15:45:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,35,0,'2025-11-28','15:46:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,36,0,'2025-11-28','15:46:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,37,0,'2025-11-28','15:48:00','WPRC0118',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,38,0,'2025-11-28','15:49:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,39,0,'2025-11-28','15:49:00','ROOM0004',0,3.00,500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,40,0,'2025-11-28','19:41:00','WPRC0098',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,41,0,'2025-11-29','10:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,8,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,42,0,'2025-11-29','10:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,43,0,'2025-11-29','10:15:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,44,0,'2025-11-29','10:15:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,45,0,'2025-11-29','10:15:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,46,0,'2025-11-29','18:20:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,47,0,'2025-11-29','18:20:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,48,0,'2025-11-29','18:21:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,49,0,'2025-11-29','18:21:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,50,0,'2025-11-29','18:21:00','WPRC0118',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,51,0,'2025-11-29','19:41:00','WPRC0098',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,52,0,'2025-11-30','10:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,53,0,'2025-11-30','10:15:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,54,0,'2025-11-30','10:15:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,55,0,'2025-11-30','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,56,0,'2025-11-30','10:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,57,0,'2025-11-30','12:10:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,58,0,'2025-11-30','12:10:00','WPRC0089',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,59,0,'2025-11-30','19:41:00','WPRC0098',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,60,0,'2025-12-01','10:15:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,61,0,'2025-12-01','10:15:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,62,0,'2025-12-01','10:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,63,0,'2025-12-01','10:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,64,0,'2025-12-01','10:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,65,0,'2025-12-01','11:15:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,66,0,'2025-12-01','11:18:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,67,0,'2025-12-01','19:42:00','WPRC0098',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,68,0,'2025-12-02','10:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,69,0,'2025-12-02','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,70,0,'2025-12-02','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,71,0,'2025-12-02','11:39:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,72,0,'2025-12-02','12:03:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,73,0,'2025-12-02','12:04:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,74,0,'2025-12-02','19:37:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,75,0,'2025-12-02','19:42:00','WPRC0098',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,76,0,'2025-12-03','10:15:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,77,0,'2025-12-03','10:15:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,78,0,'2025-12-03','10:15:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,79,0,'2025-12-03','10:15:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,80,0,'2025-12-03','10:15:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,81,0,'2025-12-03','14:14:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',204,82,0,'2025-12-03','14:14:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:03:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',205,1,0,'2025-12-01','17:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:52:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',205,2,0,'2025-12-01','17:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:52:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',205,3,0,'2025-12-01','17:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:52:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',205,4,0,'2025-12-01','17:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:52:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',205,5,0,'2025-12-01','17:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:52:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',205,6,0,'2025-12-01','17:50:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','vishal','2025-12-03 20:52:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',205,7,0,'2025-12-01','20:40:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:52:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',205,8,0,'2025-12-02','11:10:00','SURG0014',0,1.00,20000,20000,'P',0,0,20000.00,0.00,0.00,20000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-03 20:52:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',205,9,0,'2025-12-02','11:10:00','SURG0015',0,1.00,5000,5000,'A',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-03 20:52:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',205,10,0,'2025-12-02','17:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:52:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',205,11,0,'2025-12-02','17:50:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','vishal','2025-12-03 20:52:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',205,12,0,'2025-12-02','17:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','vishal','2025-12-03 20:52:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',205,13,0,'2025-12-02','17:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:52:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',205,14,0,'2025-12-02','17:50:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-03 20:52:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',205,15,0,'2025-12-03','20:40:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-03 20:52:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',205,16,0,'2025-12-03','20:41:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-03 20:52:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',205,17,0,'2025-12-03','20:41:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-03 20:52:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',206,1,0,'2025-12-01','12:51:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:28:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',206,2,0,'2025-12-01','18:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:28:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',206,3,0,'2025-12-01','18:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:28:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',206,4,0,'2025-12-01','18:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:28:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',206,5,0,'2025-12-01','18:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:28:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',206,6,0,'2025-12-01','18:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:28:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',206,7,0,'2025-12-01','18:30:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'405',0,42,0,'',0,'','','','','','vishal','2025-12-03 21:28:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',206,8,0,'2025-12-02','12:51:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:28:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',206,9,0,'2025-12-02','18:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:28:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',206,10,0,'2025-12-02','18:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:28:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',206,11,0,'2025-12-02','18:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'405',0,42,0,'',0,'','','','','','vishal','2025-12-03 21:28:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',206,12,0,'2025-12-02','18:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'405',0,42,0,'',0,'','','','','','vishal','2025-12-03 21:28:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',206,13,0,'2025-12-02','18:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:28:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',206,14,0,'2025-12-03','20:59:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-03 21:28:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',206,15,0,'2025-12-03','21:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','vishal','2025-12-03 21:28:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',206,16,0,'2025-12-03','21:00:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','vishal','2025-12-03 21:28:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',206,17,0,'2025-12-03','21:00:00','DRC0020',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,66,0,'',0,'','','','','','vishal','2025-12-03 21:28:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',207,1,0,'2025-12-03','06:57:00','DRC0021',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,7,0,'',0,'','','','','','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',207,2,0,'2025-12-03','06:57:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',207,3,0,'2025-12-03','06:58:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',207,4,0,'2025-12-03','06:58:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',207,5,0,'2025-12-03','06:59:00','WPRC0088',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,7,0,'',0,'','','','','','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',207,6,0,'2025-12-03','06:59:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,7,0,'',0,'','','','','','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',207,7,0,'2025-12-03','07:00:00','WPRC0087',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',207,8,0,'2025-12-03','07:00:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',207,9,0,'2025-12-03','07:00:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',207,10,0,'2025-12-03','15:45:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',207,11,0,'2025-12-03','15:45:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',207,12,0,'2025-12-03','15:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,7,0,'',0,'','','','','','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',207,13,0,'2025-12-03','15:45:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',207,14,0,'2025-12-03','15:45:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',207,15,0,'2025-12-03','15:45:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',207,16,0,'2025-12-03','16:20:00','ADMN0007',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',207,17,0,'2025-12-04','06:59:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',207,18,0,'2025-12-04','07:00:00','WPRC0087',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:12:37','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',208,1,0,'2025-12-04','00:00:00','DRC0021',0,-1.00,2000,-2000,'A',0,0,-2000.00,0.00,0.00,-2000.00,'',0,7,0,'',0,'','','','Y','N','vishal','2025-12-04 07:14:58','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',208,2,0,'2025-12-04','00:00:00','DRC0020',0,-1.00,1600,-1600,'A',0,0,-1600.00,0.00,0.00,-1600.00,'',0,5,0,'',0,'','','','Y','N','vishal','2025-12-04 07:14:58','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',208,3,0,'2025-12-04','00:00:00','ROOM0008',0,-4.00,100,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-12-04 07:14:58','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',208,4,0,'2025-12-04','00:00:00','WPRC0078',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-12-04 07:14:58','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',208,5,0,'2025-12-04','00:00:00','WPRC0088',0,-1.00,1500,-1500,'A',0,0,-1500.00,0.00,0.00,-1500.00,'',0,7,0,'',0,'','','','Y','N','vishal','2025-12-04 07:14:58','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',208,6,0,'2025-12-04','00:00:00','WPRC0079',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,7,0,'',0,'','','','Y','N','vishal','2025-12-04 07:14:58','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',208,7,0,'2025-12-04','00:00:00','WPRC0087',0,-3.00,500,-1500,'P',0,0,-1500.00,0.00,0.00,-1500.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-12-04 07:14:58','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',208,8,0,'2025-12-04','00:00:00','WPRC0086',0,-1.00,1500,-1500,'P',0,0,-1500.00,0.00,0.00,-1500.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-12-04 07:14:58','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',208,9,0,'2025-12-04','00:00:00','WPRC0085',0,-1.00,3000,-3000,'P',0,0,-3000.00,0.00,0.00,-3000.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-12-04 07:14:58','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',208,10,0,'2025-12-04','00:00:00','REG0001',0,-1.00,250,-250,'P',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-12-04 07:14:58','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',208,11,0,'2025-12-04','00:00:00','REG0002',0,-1.00,250,-250,'P',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-12-04 07:14:58','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',208,12,0,'2025-12-04','00:00:00','DRC0019',0,-1.00,1600,-1600,'P',0,0,-1600.00,0.00,0.00,-1600.00,'',0,7,0,'',0,'','','','Y','N','vishal','2025-12-04 07:14:58','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',208,13,0,'2025-12-04','00:00:00','CARE0001',0,-1.00,600,-600,'P',0,0,-600.00,0.00,0.00,-600.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-12-04 07:14:58','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',208,14,0,'2025-12-04','00:00:00','AECO0008',0,-1.00,800,-800,'P',0,0,-800.00,0.00,0.00,-800.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-12-04 07:14:58','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',208,15,0,'2025-12-04','00:00:00','ROOM0009',0,-1.00,5500,-5500,'P',0,0,-5500.00,0.00,0.00,-5500.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-12-04 07:14:58','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',208,16,0,'2025-12-04','00:00:00','ADMN0007',0,-1.00,5000,-5000,'P',0,0,-5000.00,0.00,0.00,-5000.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-12-04 07:14:58','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',208,17,0,'2025-12-04','00:00:00','ROOM0008',0,-1.00,100,-100,'P',0,0,-100.00,0.00,0.00,-100.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-12-04 07:14:58','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',208,18,0,'2025-12-04','00:00:00','WPRC0087',0,-4.00,500,-2000,'P',0,0,-2000.00,0.00,0.00,-2000.00,'',0,9999,0,'',0,'','','','Y','N','vishal','2025-12-04 07:14:58','vishal','2025-12-04 07:14:58',0),(0,0,'2526','H','I',209,1,0,'2025-12-03','06:57:00','DRC0021',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,7,0,'',0,'','','','','','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',209,2,0,'2025-12-03','06:57:00','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',209,3,0,'2025-12-03','06:58:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',209,4,0,'2025-12-03','06:58:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',209,5,0,'2025-12-03','06:59:00','WPRC0088',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,7,0,'',0,'','','','','','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',209,6,0,'2025-12-03','06:59:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,7,0,'',0,'','','','','','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',209,7,0,'2025-12-03','07:00:00','WPRC0087',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',209,8,0,'2025-12-03','07:00:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',209,9,0,'2025-12-03','07:00:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',209,10,0,'2025-12-03','15:45:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',209,11,0,'2025-12-03','15:45:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',209,12,0,'2025-12-03','15:45:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,7,0,'',0,'','','','','','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',209,13,0,'2025-12-03','15:45:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',209,14,0,'2025-12-03','15:45:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',209,15,0,'2025-12-03','15:45:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',209,16,0,'2025-12-03','16:20:00','ADMN0007',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',209,17,0,'2025-12-04','06:59:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',209,18,0,'2025-12-04','07:00:00','WPRC0087',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 07:16:11','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',210,1,0,'2025-12-02','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:36:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',210,2,0,'2025-12-02','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:36:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',210,3,0,'2025-12-02','10:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:36:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',210,4,0,'2025-12-02','10:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:36:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',210,5,0,'2025-12-02','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:36:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',210,6,0,'2025-12-02','10:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','riya','2025-12-04 12:36:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',210,7,0,'2025-12-02','10:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','riya','2025-12-04 12:36:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',210,8,0,'2025-12-02','11:26:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:36:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',210,9,0,'2025-12-02','12:25:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:36:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',210,10,0,'2025-12-03','10:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:36:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',210,11,0,'2025-12-03','10:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:36:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',210,12,0,'2025-12-03','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:36:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',210,13,0,'2025-12-03','10:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','riya','2025-12-04 12:36:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',210,14,0,'2025-12-03','10:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','riya','2025-12-04 12:36:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',210,15,0,'2025-12-03','11:27:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:36:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',210,16,0,'2025-12-04','11:27:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-04 12:36:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',211,1,0,'2025-12-03','11:48:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:39:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',211,2,0,'2025-12-03','11:48:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:39:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',211,3,0,'2025-12-03','11:49:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:39:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',211,4,0,'2025-12-03','11:53:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:39:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',211,5,0,'2025-12-03','15:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:39:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',211,6,0,'2025-12-03','15:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:39:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',211,7,0,'2025-12-03','15:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'306',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:39:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',211,8,0,'2025-12-03','15:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'306',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:39:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',211,9,0,'2025-12-03','15:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'306',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:39:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',211,10,0,'2025-12-03','15:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'306',0,4,0,'',0,'','','','','','riya','2025-12-04 12:39:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',211,11,0,'2025-12-04','11:48:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:39:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',211,12,0,'2025-12-04','11:52:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-04 12:39:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',211,13,0,'2025-12-04','11:53:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 12:39:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,1,0,'2025-12-02','13:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,2,0,'2025-12-02','13:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,3,0,'2025-12-02','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'302',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,4,0,'2025-12-02','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'302',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,5,0,'2025-12-02','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'302',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,6,0,'2025-12-02','13:30:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'302',0,8,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,7,0,'2025-12-02','13:41:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,8,0,'2025-12-02','14:01:00','WPRC0120',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,9,0,'2025-12-02','14:07:00','WPRC0121',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,10,0,'2025-12-03','13:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'308',0,4,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,11,0,'2025-12-03','13:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'308',0,8,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,12,0,'2025-12-03','13:41:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,13,0,'2025-12-03','13:42:00','WPRC0077',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,14,0,'2025-12-03','13:42:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,15,0,'2025-12-03','13:42:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,16,0,'2025-12-03','13:43:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,17,0,'2025-12-03','13:45:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,18,0,'2025-12-03','13:46:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,19,0,'2025-12-03','13:46:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,20,0,'2025-12-03','13:50:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,8,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,21,0,'2025-12-03','13:50:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,249,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,22,0,'2025-12-03','13:51:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,229,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,23,0,'2025-12-04','13:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'308',0,4,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,24,0,'2025-12-04','13:43:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',212,25,0,'2025-12-04','13:54:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,250,0,'',0,'','','','','','vishal','2025-12-04 17:45:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,1,0,'2025-11-30','13:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,2,0,'2025-11-30','13:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,3,0,'2025-11-30','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,4,0,'2025-11-30','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,5,0,'2025-11-30','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,6,0,'2025-12-01','12:59:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,7,0,'2025-12-01','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,8,0,'2025-12-01','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,9,0,'2025-12-01','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,10,0,'2025-12-01','13:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,11,0,'2025-12-01','13:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,12,0,'2025-12-01','14:01:00','SURG0014',0,1.00,45000,45000,'P',0,0,45000.00,0.00,0.00,45000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,13,0,'2025-12-01','14:03:00','SURG0015',0,1.00,11250,11250,'P',0,0,11250.00,0.00,0.00,11250.00,'',0,3,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,14,0,'2025-12-02','12:58:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,15,0,'2025-12-02','12:59:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,16,0,'2025-12-02','13:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,17,0,'2025-12-02','13:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,18,0,'2025-12-02','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,19,0,'2025-12-02','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,20,0,'2025-12-02','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,21,0,'2025-12-03','09:53:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,22,0,'2025-12-03','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,23,0,'2025-12-03','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,24,0,'2025-12-03','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,25,0,'2025-12-03','13:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,26,0,'2025-12-03','13:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,27,0,'2025-12-04','12:27:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,28,0,'2025-12-04','13:30:00','ROOM0009',0,0.50,2900,1450,'A',0,0,1450.00,0.00,0.00,1450.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,29,0,'2025-12-04','13:30:00','AECO0008',0,0.50,300,150,'A',0,0,150.00,0.00,0.00,150.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,30,0,'2025-12-04','13:30:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,31,0,'2025-12-04','13:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,32,0,'2025-12-04','13:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,33,0,'2025-12-04','20:12:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',213,34,0,'2025-12-30','12:58:00','WPRC0086',0,2.00,200,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 20:45:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',214,1,0,'2025-12-04','15:40:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 21:49:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',214,2,0,'2025-12-04','15:40:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 21:49:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',214,3,0,'2025-12-04','15:40:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,3,0,'',0,'','','','','','riya','2025-12-04 21:49:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',214,4,0,'2025-12-04','21:38:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 21:49:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',214,5,0,'2025-12-04','21:39:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-04 21:49:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',214,6,0,'2025-12-04','21:42:00','SURG0016',0,1.00,12500,12500,'P',0,0,12500.00,0.00,0.00,12500.00,'',0,3,0,'',0,'','','','','','riya','2025-12-04 21:49:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',214,7,0,'2025-12-04','21:42:00','SURG0015',0,1.00,4100,4100,'P',0,0,4100.00,0.00,0.00,4100.00,'',0,3,0,'',0,'','','','','','riya','2025-12-04 21:49:34','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,1,0,'2025-12-02','11:23:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,2,0,'2025-12-02','11:23:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,3,0,'2025-12-02','19:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,4,0,'2025-12-02','19:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,5,0,'2025-12-02','19:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,6,0,'2025-12-02','19:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,7,0,'2025-12-02','19:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,8,0,'2025-12-03','11:23:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,9,0,'2025-12-03','19:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,4,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,10,0,'2025-12-03','19:50:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,4,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,11,0,'2025-12-03','19:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,12,0,'2025-12-03','19:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,13,0,'2025-12-03','19:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,14,0,'2025-12-04','11:23:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,15,0,'2025-12-04','19:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,4,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,16,0,'2025-12-04','19:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,17,0,'2025-12-04','19:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,18,0,'2025-12-04','19:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'311',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,19,0,'2025-12-04','19:50:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,4,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,20,0,'2025-12-05','11:23:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',215,21,0,'2025-12-05','19:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,4,0,'',0,'','','','','','vishal','2025-12-05 11:49:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,1,0,'2025-12-01','14:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,2,0,'2025-12-01','14:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,3,0,'2025-12-01','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,4,0,'2025-12-01','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,5,0,'2025-12-01','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,6,0,'2025-12-01','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,7,0,'2025-12-02','10:44:00','WPRC0079',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,8,0,'2025-12-02','11:17:00','SURG0015',0,1.00,21700,21700,'A',0,0,21700.00,0.00,0.00,21700.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,9,0,'2025-12-02','11:17:00','SURG0016',0,1.00,62000,62000,'A',0,0,62000.00,0.00,0.00,62000.00,'',0,188,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,10,0,'2025-12-02','14:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,11,0,'2025-12-02','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,12,0,'2025-12-02','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,13,0,'2025-12-02','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,14,0,'2025-12-02','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,15,0,'2025-12-03','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,16,0,'2025-12-03','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,17,0,'2025-12-03','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,18,0,'2025-12-03','14:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,19,0,'2025-12-03','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,20,0,'2025-12-04','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,21,0,'2025-12-04','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,22,0,'2025-12-04','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,23,0,'2025-12-04','14:30:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,24,0,'2025-12-04','14:30:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',216,25,0,'2025-12-05','11:14:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-05 11:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,1,0,'2025-12-01','11:41:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,2,0,'2025-12-01','11:41:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,3,0,'2025-12-01','11:42:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,4,0,'2025-12-01','11:42:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,5,0,'2025-12-01','11:43:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,6,0,'2025-12-01','11:49:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,7,0,'2025-12-01','11:54:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,8,0,'2025-12-01','13:25:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,9,0,'2025-12-01','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,10,0,'2025-12-01','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,11,0,'2025-12-01','15:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,12,0,'2025-12-01','15:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,13,0,'2025-12-01','15:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,14,0,'2025-12-01','15:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,15,0,'2025-12-02','11:41:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,16,0,'2025-12-02','11:42:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,17,0,'2025-12-02','11:47:00','USG0091',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,18,0,'2025-12-02','11:48:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,19,0,'2025-12-02','11:49:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,20,0,'2025-12-02','13:25:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,21,0,'2025-12-02','15:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,22,0,'2025-12-02','15:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,23,0,'2025-12-02','15:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,24,0,'2025-12-02','15:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,25,0,'2025-12-02','15:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,26,0,'2025-12-03','11:48:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,27,0,'2025-12-03','11:49:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,28,0,'2025-12-03','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,29,0,'2025-12-03','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,30,0,'2025-12-03','15:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,31,0,'2025-12-03','15:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,32,0,'2025-12-03','15:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,33,0,'2025-12-04','11:54:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,34,0,'2025-12-04','11:55:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,35,0,'2025-12-04','12:41:00','WPRC0080',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,36,0,'2025-12-04','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,37,0,'2025-12-04','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,38,0,'2025-12-04','15:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,39,0,'2025-12-04','15:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,40,0,'2025-12-04','15:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,41,0,'2025-12-05','12:40:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,42,0,'2025-12-05','12:45:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',217,43,0,'2025-12-05','12:46:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-05 14:40:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,1,0,'2025-12-02','10:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,2,0,'2025-12-02','10:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,3,0,'2025-12-02','10:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,4,0,'2025-12-02','10:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,5,0,'2025-12-02','10:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,6,0,'2025-12-02','10:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,7,0,'2025-12-02','10:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,4,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,8,0,'2025-12-02','11:21:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,9,0,'2025-12-02','11:21:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,10,0,'2025-12-02','11:22:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,11,0,'2025-12-02','11:22:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,244,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,12,0,'2025-12-02','13:24:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,13,0,'2025-12-03','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,14,0,'2025-12-03','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,15,0,'2025-12-03','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,16,0,'2025-12-03','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,17,0,'2025-12-03','10:15:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'401',0,4,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,18,0,'2025-12-03','11:57:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,19,0,'2025-12-03','11:58:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,20,0,'2025-12-03','11:59:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,21,0,'2025-12-04','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,22,0,'2025-12-04','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,23,0,'2025-12-04','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,24,0,'2025-12-04','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,25,0,'2025-12-04','10:15:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,26,0,'2025-12-04','11:57:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,27,0,'2025-12-04','11:58:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,28,0,'2025-12-05','10:15:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',218,29,0,'2025-12-05','12:50:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 15:13:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',219,1,0,'2025-12-05','09:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 19:03:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',219,2,0,'2025-12-05','09:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 19:03:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',219,3,0,'2025-12-05','09:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','vishal','2025-12-05 19:03:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',219,4,0,'2025-12-05','09:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','vishal','2025-12-05 19:03:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',219,5,0,'2025-12-05','19:01:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-05 19:03:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',219,6,0,'2025-12-05','19:01:00','SURG0016',0,1.00,8200,8200,'P',0,0,8200.00,0.00,0.00,8200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-05 19:03:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',219,7,0,'2025-12-05','19:01:00','SURG0015',0,1.00,2700,2700,'P',0,0,2700.00,0.00,0.00,2700.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-05 19:03:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,1,0,'2025-11-20','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,2,0,'2025-11-20','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,3,0,'2025-11-20','10:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'214',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,4,0,'2025-11-20','10:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'214',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,5,0,'2025-11-20','10:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'214',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,6,0,'2025-11-20','10:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'214',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,7,0,'2025-11-20','10:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'214',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,8,0,'2025-11-20','14:39:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,9,0,'2025-11-20','14:39:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,10,0,'2025-11-20','14:39:00','USG0091',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,11,0,'2025-11-20','14:39:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,12,0,'2025-11-20','14:44:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,13,0,'2025-11-21','10:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'214',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,14,0,'2025-11-21','13:23:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,15,0,'2025-11-21','14:39:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,16,0,'2025-11-21','14:42:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,17,0,'2025-11-21','14:43:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,18,0,'2025-11-21','14:43:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,19,0,'2025-11-21','14:43:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,20,0,'2025-11-21','14:44:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,21,0,'2025-11-21','16:04:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,22,0,'2025-11-21','16:07:00','DRC0020',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,187,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,23,0,'2025-11-21','16:28:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,24,0,'2025-11-22','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,25,0,'2025-11-22','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,26,0,'2025-11-22','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,27,0,'2025-11-22','10:00:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'406',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,28,0,'2025-11-22','16:04:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,29,0,'2025-11-22','16:04:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,30,0,'2025-11-22','16:07:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,31,0,'2025-11-22','16:08:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,32,0,'2025-11-22','17:07:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,33,0,'2025-11-23','10:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'213',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,34,0,'2025-11-23','10:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'213',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,35,0,'2025-11-23','10:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'213',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,36,0,'2025-11-23','12:14:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,37,0,'2025-11-23','12:14:00','WPRC0078',0,2.00,300,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,38,0,'2025-11-23','12:15:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,39,0,'2025-11-23','12:15:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,40,0,'2025-11-23','12:16:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,41,0,'2025-11-23','12:16:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,42,0,'2025-11-23','12:17:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,213,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,43,0,'2025-11-23','12:20:00','WPRC0097',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,213,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,44,0,'2025-11-23','17:07:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,45,0,'2025-11-24','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,46,0,'2025-11-24','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,47,0,'2025-11-24','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,48,0,'2025-11-24','10:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,49,0,'2025-11-24','10:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,50,0,'2025-11-24','16:31:00','DRC0020',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,66,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,51,0,'2025-11-24','16:32:00','DRC0020',0,1.00,2500,2500,'A',0,0,2500.00,0.00,0.00,2500.00,'',0,8,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,52,0,'2025-11-24','16:33:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,53,0,'2025-11-24','16:33:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,54,0,'2025-11-24','17:04:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,55,0,'2025-11-24','17:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,56,0,'2025-11-24','17:05:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,57,0,'2025-11-25','10:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,58,0,'2025-11-25','10:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,59,0,'2025-11-25','10:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,60,0,'2025-11-25','10:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,61,0,'2025-11-25','10:00:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,62,0,'2025-11-25','11:47:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,63,0,'2025-11-25','11:49:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,64,0,'2025-11-25','11:49:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,65,0,'2025-11-25','11:52:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,88,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,66,0,'2025-11-25','11:53:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,8,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,67,0,'2025-11-25','16:33:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,68,0,'2025-11-25','16:33:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,69,0,'2025-11-25','17:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,70,0,'2025-11-25','17:05:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,71,0,'2025-11-26','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,72,0,'2025-11-26','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,73,0,'2025-11-26','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,74,0,'2025-11-26','10:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,75,0,'2025-11-26','10:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,76,0,'2025-11-26','11:46:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,77,0,'2025-11-26','11:48:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,78,0,'2025-11-26','11:49:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,79,0,'2025-11-26','11:50:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,80,0,'2025-11-26','11:51:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,81,0,'2025-11-26','11:52:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,88,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,82,0,'2025-11-26','11:52:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,88,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,83,0,'2025-11-27','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,84,0,'2025-11-27','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,85,0,'2025-11-27','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,86,0,'2025-11-27','10:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,87,0,'2025-11-27','10:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,88,0,'2025-11-27','11:48:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,89,0,'2025-11-27','11:51:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,90,0,'2025-11-27','11:51:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,91,0,'2025-11-27','16:05:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,92,0,'2025-11-27','16:05:00','WPRC0080',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,93,0,'2025-11-28','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,94,0,'2025-11-28','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,95,0,'2025-11-28','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,96,0,'2025-11-28','10:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,97,0,'2025-11-28','10:00:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,98,0,'2025-11-28','16:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,99,0,'2025-11-28','16:06:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,100,0,'2025-11-28','16:08:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,101,0,'2025-11-28','16:08:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,102,0,'2025-11-29','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,103,0,'2025-11-29','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,104,0,'2025-11-29','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,105,0,'2025-11-29','10:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,106,0,'2025-11-29','10:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,107,0,'2025-11-29','19:23:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,108,0,'2025-11-29','19:24:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,109,0,'2025-11-29','20:31:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,110,0,'2025-11-29','20:32:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,8,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,111,0,'2025-11-30','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,112,0,'2025-11-30','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,113,0,'2025-11-30','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,114,0,'2025-11-30','10:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,115,0,'2025-11-30','10:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,116,0,'2025-11-30','20:28:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,117,0,'2025-11-30','20:28:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,118,0,'2025-11-30','20:29:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,119,0,'2025-11-30','20:32:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,120,0,'2025-11-30','20:32:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,121,0,'2025-12-01','09:24:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,122,0,'2025-12-01','09:24:00','WPRC0082',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,123,0,'2025-12-01','09:25:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',220,124,0,'2025-12-01','09:25:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,1,0,'2025-12-02','15:12:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,2,0,'2025-12-02','15:12:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,3,0,'2025-12-02','15:12:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,4,0,'2025-12-02','20:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,5,0,'2025-12-02','20:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,6,0,'2025-12-02','20:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,7,0,'2025-12-02','20:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,8,0,'2025-12-02','20:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,9,0,'2025-12-02','20:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,10,0,'2025-12-03','15:13:00','WPRC0086',0,3.00,200,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,11,0,'2025-12-03','15:13:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,12,0,'2025-12-03','15:13:00','WPRC0080',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,13,0,'2025-12-03','20:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,14,0,'2025-12-03','20:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,15,0,'2025-12-03','20:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,16,0,'2025-12-03','20:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,17,0,'2025-12-03','20:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,18,0,'2025-12-04','10:16:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,19,0,'2025-12-04','15:13:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,20,0,'2025-12-04','15:14:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,21,0,'2025-12-04','20:00:00','AECO0008',0,0.50,800,400,'A',0,0,400.00,0.00,0.00,400.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,22,0,'2025-12-04','20:00:00','CARE0001',0,0.50,600,300,'A',0,0,300.00,0.00,0.00,300.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,23,0,'2025-12-04','20:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,24,0,'2025-12-04','20:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,25,0,'2025-12-04','20:00:00','ROOM0009',0,0.50,5500,2750,'A',0,0,2750.00,0.00,0.00,2750.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',221,26,0,'2025-12-04','21:55:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 10:35:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',222,1,0,'2025-12-04','12:18:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',222,2,0,'2025-12-04','12:20:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',222,3,0,'2025-12-04','12:20:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',222,4,0,'2025-12-04','12:20:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',222,5,0,'2025-12-04','12:20:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',222,6,0,'2025-12-04','12:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',222,7,0,'2025-12-04','12:20:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','riya','2025-12-06 12:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',222,8,0,'2025-12-05','12:20:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',222,9,0,'2025-12-05','12:20:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',222,10,0,'2025-12-05','12:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',222,11,0,'2025-12-05','12:20:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','riya','2025-12-06 12:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',222,12,0,'2025-12-05','12:20:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','riya','2025-12-06 12:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',222,13,0,'2025-12-06','12:20:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','riya','2025-12-06 12:23:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,1,0,'2025-12-01','11:25:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,2,0,'2025-12-01','11:25:00','ROOM0008',0,8.00,100,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,3,0,'2025-12-01','11:25:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,4,0,'2025-12-01','11:26:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,5,0,'2025-12-01','11:26:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,39,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,6,0,'2025-12-01','11:27:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,7,0,'2025-12-01','11:28:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,8,0,'2025-12-01','11:28:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,9,0,'2025-12-01','12:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,10,0,'2025-12-01','12:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,11,0,'2025-12-01','12:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,12,0,'2025-12-01','12:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,13,0,'2025-12-01','12:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,14,0,'2025-12-01','12:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,15,0,'2025-12-01','12:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,16,0,'2025-12-01','16:53:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,17,0,'2025-12-02','11:04:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,18,0,'2025-12-02','11:05:00','USG0091',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,19,0,'2025-12-02','11:27:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,20,0,'2025-12-02','11:28:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,21,0,'2025-12-02','12:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,22,0,'2025-12-02','12:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,23,0,'2025-12-02','12:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,24,0,'2025-12-02','12:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,25,0,'2025-12-02','12:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,26,0,'2025-12-03','11:04:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,27,0,'2025-12-03','11:06:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,28,0,'2025-12-03','12:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,29,0,'2025-12-03','12:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,30,0,'2025-12-03','12:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,31,0,'2025-12-03','12:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,32,0,'2025-12-03','12:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,33,0,'2025-12-04','11:04:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,34,0,'2025-12-04','11:06:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,35,0,'2025-12-04','12:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'406',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,36,0,'2025-12-04','12:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,37,0,'2025-12-04','12:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,38,0,'2025-12-04','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,39,0,'2025-12-04','12:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,40,0,'2025-12-05','12:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,41,0,'2025-12-05','12:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,42,0,'2025-12-05','12:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,43,0,'2025-12-05','12:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,44,0,'2025-12-05','12:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,45,0,'2025-12-05','12:27:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,46,0,'2025-12-06','12:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',223,47,0,'2025-12-06','12:28:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 12:53:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',224,1,0,'2025-12-05','17:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 13:37:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',224,2,0,'2025-12-05','17:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 13:37:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',224,3,0,'2025-12-05','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-06 13:37:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',224,4,0,'2025-12-05','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-06 13:37:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',224,5,0,'2025-12-05','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-06 13:37:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',224,6,0,'2025-12-05','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','riya','2025-12-06 13:37:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',224,7,0,'2025-12-06','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','riya','2025-12-06 13:37:39','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',225,1,0,'2025-12-04','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',225,2,0,'2025-12-04','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',225,3,0,'2025-12-04','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',225,4,0,'2025-12-04','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',225,5,0,'2025-12-04','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',225,6,0,'2025-12-04','10:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',225,7,0,'2025-12-04','10:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',225,8,0,'2025-12-04','17:00:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',225,9,0,'2025-12-05','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',225,10,0,'2025-12-05','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',225,11,0,'2025-12-05','10:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',225,12,0,'2025-12-05','10:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',225,13,0,'2025-12-05','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',225,14,0,'2025-12-06','10:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',225,15,0,'2025-12-06','10:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',225,16,0,'2025-12-06','10:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',225,17,0,'2025-12-06','10:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',225,18,0,'2025-12-06','10:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','riya','2025-12-06 19:32:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',226,1,0,'2025-12-06','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-07 19:45:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',226,2,0,'2025-12-06','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-07 19:45:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',226,3,0,'2025-12-06','19:24:00','SURG0014',0,1.00,20000,20000,'A',0,0,20000.00,0.00,0.00,20000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-07 19:45:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',226,4,0,'2025-12-06','19:24:00','SURG0015',0,1.00,5000,5000,'A',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-07 19:45:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',226,5,0,'2025-12-06','19:25:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-07 19:45:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',226,6,0,'2025-12-06','19:25:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-07 19:45:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',226,7,0,'2025-12-06','19:25:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-07 19:45:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',226,8,0,'2025-12-06','19:26:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-07 19:45:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',226,9,0,'2025-12-06','19:26:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-07 19:45:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',226,10,0,'2025-12-06','19:26:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-07 19:45:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',226,11,0,'2025-12-07','10:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-12-07 19:45:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',226,12,0,'2025-12-07','19:26:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-07 19:45:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,1,0,'2025-12-03','09:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,2,0,'2025-12-03','09:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,3,0,'2025-12-03','09:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'214',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,4,0,'2025-12-03','09:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'214',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,5,0,'2025-12-03','09:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'214',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,6,0,'2025-12-03','09:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'214',0,5,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,7,0,'2025-12-03','09:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'214',0,5,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,8,0,'2025-12-03','11:08:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,9,0,'2025-12-03','11:08:00','WPRC0107',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,10,0,'2025-12-03','11:08:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,11,0,'2025-12-03','11:08:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,12,0,'2025-12-03','11:10:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,13,0,'2025-12-03','11:10:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,14,0,'2025-12-03','11:11:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,15,0,'2025-12-03','11:12:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,41,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,16,0,'2025-12-04','09:15:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'214',0,5,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,17,0,'2025-12-04','09:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'214',0,5,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,18,0,'2025-12-04','09:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'214',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,19,0,'2025-12-04','09:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'214',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,20,0,'2025-12-04','09:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'214',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,21,0,'2025-12-04','11:09:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,22,0,'2025-12-04','11:10:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,23,0,'2025-12-04','11:57:00','USG0091',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,24,0,'2025-12-04','11:57:00','WPRC0092',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,5,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,25,0,'2025-12-04','11:58:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,26,0,'2025-12-05','09:15:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'214',0,5,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,27,0,'2025-12-05','09:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'214',0,5,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,28,0,'2025-12-05','11:57:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,29,0,'2025-12-05','12:05:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,30,0,'2025-12-05','12:05:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,31,0,'2025-12-05','12:05:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,32,0,'2025-12-06','09:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,33,0,'2025-12-06','09:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,34,0,'2025-12-06','09:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,35,0,'2025-12-06','09:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,36,0,'2025-12-06','09:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,37,0,'2025-12-06','16:43:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,38,0,'2025-12-07','09:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,39,0,'2025-12-07','09:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,40,0,'2025-12-07','09:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,41,0,'2025-12-07','09:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,42,0,'2025-12-07','09:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,43,0,'2025-12-07','11:26:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,44,0,'2025-12-08','09:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',227,45,0,'2025-12-08','11:26:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 12:52:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,1,0,'2025-12-05','16:50:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,2,0,'2025-12-05','20:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,3,0,'2025-12-05','20:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,4,0,'2025-12-05','20:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,5,0,'2025-12-05','20:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,6,0,'2025-12-05','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,7,0,'2025-12-06','12:20:00','SURG0014',0,1.00,20000,20000,'P',0,0,20000.00,0.00,0.00,20000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,8,0,'2025-12-06','12:21:00','SURG0015',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,9,0,'2025-12-06','16:50:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,10,0,'2025-12-06','16:50:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,11,0,'2025-12-06','16:50:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,12,0,'2025-12-06','20:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,3,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,13,0,'2025-12-06','20:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,14,0,'2025-12-06','20:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,3,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,15,0,'2025-12-06','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,16,0,'2025-12-06','20:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,17,0,'2025-12-07','12:19:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,18,0,'2025-12-07','12:20:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,19,0,'2025-12-07','20:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,20,0,'2025-12-07','20:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,21,0,'2025-12-07','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,22,0,'2025-12-07','20:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,3,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,23,0,'2025-12-08','12:19:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',228,24,0,'2025-12-08','13:23:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-12-08 13:54:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',229,1,0,'2025-11-19','10:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:09:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',229,2,0,'2025-11-19','10:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:09:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',229,3,0,'2025-11-19','10:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:09:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',229,4,0,'2025-11-19','10:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:09:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',229,5,0,'2025-11-19','10:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:09:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',229,6,0,'2025-11-19','10:50:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:09:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',229,7,0,'2025-11-19','10:50:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:09:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',229,8,0,'2025-11-19','11:25:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:09:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',229,9,0,'2025-11-20','18:26:00','OETR0004',0,1.00,62306,62306,'P',0,0,62306.00,0.00,0.00,62306.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:09:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',229,10,0,'2025-11-20','11:26:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:09:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',230,1,0,'2025-11-12','14:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:11:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',230,2,0,'2025-11-12','14:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:11:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',230,3,0,'2025-11-12','14:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:11:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',230,4,0,'2025-11-12','14:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:11:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',230,5,0,'2025-11-12','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:11:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',230,6,0,'2025-11-12','14:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:11:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',230,7,0,'2025-11-13','12:32:00','WPRC0083',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:11:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',230,8,0,'2025-11-13','14:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:11:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',230,9,0,'2025-11-13','20:01:00','OETR0004',0,1.00,69241,69241,'P',0,0,69241.00,0.00,0.00,69241.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:11:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,1,0,'2025-10-24','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,2,0,'2025-10-24','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,3,0,'2025-10-24','09:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,4,0,'2025-10-24','09:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,5,0,'2025-10-24','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,6,0,'2025-10-24','09:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,7,0,'2025-10-24','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,8,0,'2025-10-24','10:20:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,9,0,'2025-10-24','10:20:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,10,0,'2025-10-24','10:20:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,11,0,'2025-10-24','17:32:00','SURG0015',0,1.00,0,0,'P',0,0,0.00,0.00,0.00,0.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,12,0,'2025-10-24','17:32:00','SURG0014',0,1.00,0,0,'P',0,0,0.00,0.00,0.00,0.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,13,0,'2025-10-25','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,14,0,'2025-10-25','09:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,15,0,'2025-10-25','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,16,0,'2025-10-25','09:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,17,0,'2025-10-25','09:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,18,0,'2025-10-26','10:20:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,19,0,'2025-10-26','10:21:00','ROOM0005',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',231,20,0,'2025-10-26','20:11:00','OETR0004',0,1.00,86705,86705,'P',0,0,86705.00,0.00,0.00,86705.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,1,0,'2025-10-25','09:37:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,2,0,'2025-10-25','09:37:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,3,0,'2025-10-25','09:37:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,4,0,'2025-10-25','09:37:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,5,0,'2025-10-25','09:37:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,6,0,'2025-10-25','09:37:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,7,0,'2025-10-25','09:37:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,8,0,'2025-10-25','15:19:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,9,0,'2025-10-25','15:19:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,10,0,'2025-10-25','15:21:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,11,0,'2025-10-25','17:19:00','SURG0015',0,1.00,0,0,'P',0,0,0.00,0.00,0.00,0.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,12,0,'2025-10-25','17:19:00','SURG0014',0,1.00,0,0,'P',0,0,0.00,0.00,0.00,0.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,13,0,'2025-10-26','09:37:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,14,0,'2025-10-26','09:37:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,15,0,'2025-10-26','09:37:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,16,0,'2025-10-26','09:37:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,17,0,'2025-10-26','09:37:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,18,0,'2025-10-27','15:19:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,19,0,'2025-10-27','15:21:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',232,20,0,'2025-10-27','20:13:00','OETR0004',0,1.00,109219,109219,'P',0,0,109219.00,0.00,0.00,109219.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',233,1,0,'2025-11-04','14:23:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',233,2,0,'2025-11-04','14:25:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',233,3,0,'2025-11-04','14:32:00','OETR0005',0,2.00,1000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',233,4,0,'2025-11-04','16:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',233,5,0,'2025-11-04','16:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',233,6,0,'2025-11-04','16:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',233,7,0,'2025-11-04','16:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',233,8,0,'2025-11-04','16:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',233,9,0,'2025-11-04','16:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',233,10,0,'2025-11-04','16:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',233,11,0,'2025-11-05','16:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',233,12,0,'2025-11-05','16:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',233,13,0,'2025-11-05','16:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',233,14,0,'2025-11-05','16:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',233,15,0,'2025-11-05','16:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,6,0,'',0,'','','','','','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',233,16,0,'2025-11-06','14:16:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,6,0,'',0,'','','','','','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',233,17,0,'2025-11-06','20:14:00','OETR0004',0,1.00,198275,198275,'P',0,0,198275.00,0.00,0.00,198275.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',234,1,0,'2025-11-10','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:17:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',234,2,0,'2025-11-10','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:17:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',234,3,0,'2025-11-10','09:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:17:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',234,4,0,'2025-11-10','09:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:17:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',234,5,0,'2025-11-10','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:17:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',234,6,0,'2025-11-10','09:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:17:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',234,7,0,'2025-11-10','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:17:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',234,8,0,'2025-11-11','10:16:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:17:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',234,9,0,'2025-11-11','20:16:00','OETR0004',0,1.00,72891,72891,'P',0,0,72891.00,0.00,0.00,72891.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:17:35','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',235,1,0,'2025-10-14','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:19:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',235,2,0,'2025-10-14','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:19:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',235,3,0,'2025-10-14','09:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'306',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:19:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',235,4,0,'2025-10-14','09:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'306',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:19:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',235,5,0,'2025-10-14','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'306',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:19:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',235,6,0,'2025-10-14','09:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'306',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:19:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',235,7,0,'2025-10-14','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'306',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:19:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',235,8,0,'2025-10-14','23:04:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:19:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',235,9,0,'2025-10-14','23:05:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:19:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',235,10,0,'2025-10-14','23:05:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-08 20:19:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',235,11,0,'2025-10-15','23:05:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:19:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',235,12,0,'2025-10-15','23:05:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:19:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',235,13,0,'2025-10-15','20:17:00','OETR0004',0,1.00,39313,39313,'P',0,0,39313.00,0.00,0.00,39313.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:19:07','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',236,1,0,'2025-11-06','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:20:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',236,2,0,'2025-11-06','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:20:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',236,3,0,'2025-11-06','09:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:20:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',236,4,0,'2025-11-06','09:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:20:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',236,5,0,'2025-11-06','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:20:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',236,6,0,'2025-11-06','09:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:20:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',236,7,0,'2025-11-06','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:20:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',236,8,0,'2025-11-06','10:29:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:20:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',236,9,0,'2025-11-07','09:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:20:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',236,10,0,'2025-11-07','10:30:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-08 20:20:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',236,11,0,'2025-11-07','20:19:00','OETR0004',0,1.00,51567,51567,'P',0,0,51567.00,0.00,0.00,51567.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 20:20:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,1,0,'2025-12-05','16:39:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,2,0,'2025-12-05','16:40:00','WPRC0086',0,3.00,200,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,3,0,'2025-12-05','20:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,4,0,'2025-12-05','20:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,5,0,'2025-12-05','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,6,0,'2025-12-05','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,7,0,'2025-12-05','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,8,0,'2025-12-05','21:04:00','DRC0021',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,9,0,'2025-12-06','16:39:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,10,0,'2025-12-06','16:41:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,11,0,'2025-12-06','16:41:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,12,0,'2025-12-06','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,13,0,'2025-12-06','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,14,0,'2025-12-06','20:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,15,0,'2025-12-06','20:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,16,0,'2025-12-06','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,17,0,'2025-12-07','12:09:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,18,0,'2025-12-07','12:09:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,19,0,'2025-12-07','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,20,0,'2025-12-07','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,21,0,'2025-12-07','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,22,0,'2025-12-07','20:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,23,0,'2025-12-07','20:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,24,0,'2025-12-08','12:09:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,25,0,'2025-12-08','12:09:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,26,0,'2025-12-08','20:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',237,27,0,'2025-12-08','20:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','vishal','2025-12-08 21:18:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,1,0,'2025-12-04','17:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,2,0,'2025-12-04','17:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,3,0,'2025-12-04','17:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,4,0,'2025-12-04','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,5,0,'2025-12-04','17:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,6,0,'2025-12-04','17:00:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'207',0,42,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,7,0,'2025-12-04','17:07:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,8,0,'2025-12-04','17:07:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,9,0,'2025-12-05','16:06:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,10,0,'2025-12-05','16:07:00','CARE0006',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,11,0,'2025-12-05','16:07:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,12,0,'2025-12-05','17:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'207',0,42,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,13,0,'2025-12-05','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'207',0,42,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,14,0,'2025-12-05','17:07:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,15,0,'2025-12-05','17:07:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,16,0,'2025-12-06','16:57:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,17,0,'2025-12-06','16:57:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,18,0,'2025-12-06','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,19,0,'2025-12-06','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'411',0,42,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,20,0,'2025-12-06','17:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,21,0,'2025-12-06','17:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,22,0,'2025-12-07','13:30:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,23,0,'2025-12-07','13:31:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,24,0,'2025-12-07','17:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,25,0,'2025-12-07','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'411',0,42,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,26,0,'2025-12-07','17:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'411',0,42,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,27,0,'2025-12-07','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,28,0,'2025-12-07','17:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,29,0,'2025-12-08','10:10:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,42,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,30,0,'2025-12-08','10:11:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,31,0,'2025-12-08','13:31:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,32,0,'2025-12-08','17:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,33,0,'2025-12-08','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,34,0,'2025-12-08','17:00:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'411',0,42,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,35,0,'2025-12-08','17:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'411',0,42,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,36,0,'2025-12-08','17:00:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,37,0,'2025-12-09','10:10:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,38,0,'2025-12-09','10:11:00','WPRC0089',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',238,39,0,'2025-12-09','17:00:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'411',0,42,0,'',0,'','','','','','vishal','2025-12-09 11:48:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',239,1,0,'2025-12-08','12:55:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:19:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',239,2,0,'2025-12-08','12:55:00','WPRC0087',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:19:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',239,3,0,'2025-12-08','12:55:00','WPRC0089',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:19:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',239,4,0,'2025-12-08','12:56:00','WPRC0089',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:19:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',239,5,0,'2025-12-08','12:56:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:19:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',239,6,0,'2025-12-08','12:56:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:19:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',239,7,0,'2025-12-08','22:15:00','REG0001',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:19:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',239,8,0,'2025-12-08','22:15:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:19:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',239,9,0,'2025-12-08','22:15:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:19:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',239,10,0,'2025-12-08','22:15:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:19:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',239,11,0,'2025-12-08','22:15:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:19:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',239,12,0,'2025-12-08','22:15:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','vishal','2025-12-09 13:19:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',239,13,0,'2025-12-09','12:55:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:19:23','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',240,1,0,'2025-12-08','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:53:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',240,2,0,'2025-12-08','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:53:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',240,3,0,'2025-12-08','09:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:53:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',240,4,0,'2025-12-08','09:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:53:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',240,5,0,'2025-12-08','09:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:53:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',240,6,0,'2025-12-08','09:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-12-09 13:53:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',240,7,0,'2025-12-08','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-12-09 13:53:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',240,8,0,'2025-12-08','13:36:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-09 13:53:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',240,9,0,'2025-12-08','13:37:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:53:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',240,10,0,'2025-12-08','13:37:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-09 13:53:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',240,11,0,'2025-12-08','13:46:00','SURG0016',0,1.00,30500,30500,'P',0,0,30500.00,0.00,0.00,30500.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-09 13:53:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',240,12,0,'2025-12-09','09:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-12-09 13:53:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',240,13,0,'2025-12-09','13:37:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-09 13:53:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',240,14,0,'2025-12-09','13:46:00','SURG0015',0,1.00,10200,10200,'P',0,0,10200.00,0.00,0.00,10200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-09 13:53:12','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',241,1,0,'2025-12-09','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:19:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',241,2,0,'2025-12-09','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:19:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',241,3,0,'2025-12-09','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:19:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',241,4,0,'2025-12-09','13:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:19:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',241,5,0,'2025-12-09','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:19:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',241,6,0,'2025-12-09','13:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-10 13:19:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',241,7,0,'2025-12-09','13:07:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:19:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',241,8,0,'2025-12-09','13:07:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:19:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',241,9,0,'2025-12-09','13:12:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,276,0,'',0,'','','','','','riya','2025-12-10 13:19:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',241,10,0,'2025-12-09','13:13:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,276,0,'',0,'','','','','','riya','2025-12-10 13:19:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',241,11,0,'2025-12-10','13:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-10 13:19:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',241,12,0,'2025-12-10','13:07:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:19:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',241,13,0,'2025-12-10','13:08:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:19:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,1,0,'2025-12-05','15:45:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,2,0,'2025-12-05','15:45:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,3,0,'2025-12-05','15:46:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,4,0,'2025-12-05','15:47:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,5,0,'2025-12-05','15:47:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,6,0,'2025-12-05','17:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,7,0,'2025-12-05','17:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,8,0,'2025-12-05','17:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,9,0,'2025-12-05','17:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,10,0,'2025-12-05','17:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,11,0,'2025-12-05','17:30:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'211',0,42,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,12,0,'2025-12-06','12:07:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,13,0,'2025-12-06','12:07:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,14,0,'2025-12-06','15:45:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,15,0,'2025-12-06','15:45:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,16,0,'2025-12-06','15:46:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,17,0,'2025-12-06','15:47:00','WPRC0114',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,42,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,18,0,'2025-12-06','17:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'211',0,42,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,19,0,'2025-12-06','17:30:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,20,0,'2025-12-06','17:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,21,0,'2025-12-06','17:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,22,0,'2025-12-06','19:58:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,23,0,'2025-12-07','12:05:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,24,0,'2025-12-07','12:05:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,25,0,'2025-12-07','13:40:00','WPRC0114',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,26,0,'2025-12-07','13:41:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,27,0,'2025-12-07','13:41:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,28,0,'2025-12-07','17:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'407',0,42,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,29,0,'2025-12-07','17:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,30,0,'2025-12-07','17:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'407',0,42,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,31,0,'2025-12-07','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,32,0,'2025-12-07','17:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,33,0,'2025-12-08','13:40:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,34,0,'2025-12-08','13:42:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,35,0,'2025-12-08','17:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,36,0,'2025-12-08','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,37,0,'2025-12-08','17:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'407',0,42,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,38,0,'2025-12-08','17:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'407',0,42,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,39,0,'2025-12-08','17:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,40,0,'2025-12-08','20:03:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,41,0,'2025-12-08','20:08:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,42,0,'2025-12-09','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,43,0,'2025-12-09','17:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'407',0,42,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,44,0,'2025-12-09','17:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'407',0,42,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,45,0,'2025-12-09','17:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,46,0,'2025-12-09','17:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,47,0,'2025-12-09','20:03:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,48,0,'2025-12-09','20:04:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,49,0,'2025-12-09','20:09:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,50,0,'2025-12-09','20:09:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,52,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,51,0,'2025-12-10','11:57:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,52,0,'2025-12-10','11:59:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',242,53,0,'2025-12-10','11:59:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-10 13:41:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',243,1,0,'2025-12-09','12:30:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',243,2,0,'2025-12-09','12:30:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',243,3,0,'2025-12-09','12:31:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',243,4,0,'2025-12-09','12:31:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',243,5,0,'2025-12-09','12:31:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',243,6,0,'2025-12-09','21:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',243,7,0,'2025-12-09','21:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',243,8,0,'2025-12-09','21:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',243,9,0,'2025-12-09','21:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',243,10,0,'2025-12-09','21:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',243,11,0,'2025-12-10','12:30:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',243,12,0,'2025-12-10','12:31:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',243,13,0,'2025-12-10','12:32:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-10 17:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',243,14,0,'2025-12-10','17:42:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-10 17:49:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',244,1,0,'2025-12-10','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',244,2,0,'2025-12-10','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',244,3,0,'2025-12-10','09:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'302',0,3,0,'',0,'','','','','','vishal','2025-12-10 20:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',244,4,0,'2025-12-10','09:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'302',0,3,0,'',0,'','','','','','vishal','2025-12-10 20:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',244,5,0,'2025-12-10','20:28:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',244,6,0,'2025-12-10','20:31:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',244,7,0,'2025-12-10','20:31:00','SURG0016',0,1.00,4350,4350,'P',0,0,4350.00,0.00,0.00,4350.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-10 20:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',244,8,0,'2025-12-10','20:32:00','SURG0015',0,1.00,1450,1450,'P',0,0,1450.00,0.00,0.00,1450.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-10 20:33:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',245,1,0,'2025-12-10','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',245,2,0,'2025-12-10','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',245,3,0,'2025-12-10','10:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'303',0,3,0,'',0,'','','','','','vishal','2025-12-10 20:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',245,4,0,'2025-12-10','10:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'303',0,3,0,'',0,'','','','','','vishal','2025-12-10 20:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',245,5,0,'2025-12-10','20:24:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',245,6,0,'2025-12-10','20:35:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 20:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',245,7,0,'2025-12-10','20:37:00','SURG0014',0,1.00,4350,4350,'P',0,0,4350.00,0.00,0.00,4350.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-10 20:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',245,8,0,'2025-12-10','20:37:00','SURG0015',0,1.00,1450,1450,'P',0,0,1450.00,0.00,0.00,1450.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-10 20:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',246,1,0,'2025-12-09','01:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:25:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',246,2,0,'2025-12-09','01:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:25:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',246,3,0,'2025-12-09','01:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:25:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',246,4,0,'2025-12-09','01:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:25:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',246,5,0,'2025-12-09','01:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:25:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',246,6,0,'2025-12-09','01:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','vishal','2025-12-10 21:25:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',246,7,0,'2025-12-09','01:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','vishal','2025-12-10 21:25:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',246,8,0,'2025-12-09','17:22:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:25:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',246,9,0,'2025-12-09','17:22:00','WPRC0078',0,2.00,300,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:25:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',246,10,0,'2025-12-09','17:23:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:25:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',246,11,0,'2025-12-10','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:25:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',246,12,0,'2025-12-10','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:25:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',246,13,0,'2025-12-10','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:25:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',246,14,0,'2025-12-10','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,5,0,'',0,'','','','','','vishal','2025-12-10 21:25:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',246,15,0,'2025-12-10','01:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,5,0,'',0,'','','','','','vishal','2025-12-10 21:25:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,1,0,'2025-12-07','23:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,2,0,'2025-12-07','23:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,3,0,'2025-12-07','23:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,4,0,'2025-12-07','23:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,5,0,'2025-12-07','23:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,6,0,'2025-12-08','11:34:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,7,0,'2025-12-08','11:36:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,8,0,'2025-12-08','11:37:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,9,0,'2025-12-08','23:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,10,0,'2025-12-08','23:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,11,0,'2025-12-08','23:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,12,0,'2025-12-08','23:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,13,0,'2025-12-08','23:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,14,0,'2025-12-09','16:09:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,15,0,'2025-12-09','16:41:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,16,0,'2025-12-09','20:56:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,17,0,'2025-12-09','20:56:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,18,0,'2025-12-09','23:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,19,0,'2025-12-09','23:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,20,0,'2025-12-09','23:30:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,21,0,'2025-12-10','20:53:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,22,0,'2025-12-10','20:54:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',247,23,0,'2025-12-10','20:54:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-10 21:31:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',248,1,0,'2025-12-09','12:02:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:59:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',248,2,0,'2025-12-09','19:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:59:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',248,3,0,'2025-12-09','19:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:59:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',248,4,0,'2025-12-09','19:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:59:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',248,5,0,'2025-12-09','19:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:59:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',248,6,0,'2025-12-09','19:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:59:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',248,7,0,'2025-12-10','12:02:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:59:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',248,8,0,'2025-12-10','19:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:59:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',248,9,0,'2025-12-10','19:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:59:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',248,10,0,'2025-12-10','19:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'308',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:59:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',248,11,0,'2025-12-10','19:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','riya','2025-12-11 12:59:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',248,12,0,'2025-12-10','19:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','riya','2025-12-11 12:59:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',248,13,0,'2025-12-11','12:02:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 12:59:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',248,14,0,'2025-12-11','12:03:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-11 12:59:46','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,1,0,'2025-12-08','16:27:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,2,0,'2025-12-08','16:27:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,3,0,'2025-12-08','16:27:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,4,0,'2025-12-08','16:30:00','SURG0016',0,1.00,50000,50000,'P',0,0,50000.00,0.00,0.00,50000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,5,0,'2025-12-08','16:30:00','SURG0015',0,1.00,12500,12500,'P',0,0,12500.00,0.00,0.00,12500.00,'',0,3,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,6,0,'2025-12-08','18:45:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,7,0,'2025-12-08','18:45:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,8,0,'2025-12-08','18:45:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,9,0,'2025-12-08','18:45:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,10,0,'2025-12-08','18:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,11,0,'2025-12-08','18:45:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,12,0,'2025-12-09','16:27:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,13,0,'2025-12-09','16:28:00','WPRC0086',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,14,0,'2025-12-09','18:45:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,15,0,'2025-12-09','18:45:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,16,0,'2025-12-09','18:45:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,17,0,'2025-12-09','18:45:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,3,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,18,0,'2025-12-09','18:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,19,0,'2025-12-10','16:35:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,20,0,'2025-12-10','18:45:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,21,0,'2025-12-10','18:45:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,22,0,'2025-12-10','18:45:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,23,0,'2025-12-10','18:45:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,24,0,'2025-12-10','18:45:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,25,0,'2025-12-11','12:16:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,26,0,'2025-12-11','12:25:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',249,27,0,'2025-12-11','12:39:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-12-11 13:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,1,0,'2025-12-08','03:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,2,0,'2025-12-08','03:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,3,0,'2025-12-08','03:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,4,0,'2025-12-08','03:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,5,0,'2025-12-08','03:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'211',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,6,0,'2025-12-08','03:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,7,0,'2025-12-08','03:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,8,0,'2025-12-08','10:36:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,9,0,'2025-12-08','11:08:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,10,0,'2025-12-08','11:08:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,11,0,'2025-12-08','11:09:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,12,0,'2025-12-08','11:09:00','WPRC0097',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,13,0,'2025-12-08','11:10:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,14,0,'2025-12-08','11:10:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,15,0,'2025-12-08','11:10:00','WPRC0101',0,5.00,400,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,16,0,'2025-12-08','11:11:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,17,0,'2025-12-09','03:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,18,0,'2025-12-09','03:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'211',0,4,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,19,0,'2025-12-09','11:09:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,20,0,'2025-12-09','11:10:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,21,0,'2025-12-09','11:11:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,22,0,'2025-12-09','11:14:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,23,0,'2025-12-09','11:15:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,24,0,'2025-12-09','11:15:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,25,0,'2025-12-10','03:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,26,0,'2025-12-10','03:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,27,0,'2025-12-10','03:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,4,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,28,0,'2025-12-10','03:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,29,0,'2025-12-10','03:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,30,0,'2025-12-10','17:24:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,31,0,'2025-12-10','17:25:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,32,0,'2025-12-11','13:12:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,33,0,'2025-12-11','13:13:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',250,34,0,'2025-12-11','13:13:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-11 13:32:03','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,1,0,'2025-12-07','10:21:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,2,0,'2025-12-07','10:26:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,3,0,'2025-12-07','10:26:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,4,0,'2025-12-07','10:26:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,5,0,'2025-12-07','16:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,6,0,'2025-12-07','16:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,7,0,'2025-12-07','16:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,8,0,'2025-12-07','16:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,9,0,'2025-12-07','16:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,10,0,'2025-12-07','16:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,11,0,'2025-12-08','10:25:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,12,0,'2025-12-08','10:26:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,13,0,'2025-12-08','10:26:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,14,0,'2025-12-08','10:26:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,15,0,'2025-12-08','10:26:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,16,0,'2025-12-08','13:20:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,17,0,'2025-12-08','16:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,18,0,'2025-12-08','16:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,19,0,'2025-12-08','16:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,20,0,'2025-12-08','16:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,4,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,21,0,'2025-12-08','16:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,22,0,'2025-12-09','13:21:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,23,0,'2025-12-09','13:22:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,24,0,'2025-12-09','13:22:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,25,0,'2025-12-09','16:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,26,0,'2025-12-09','16:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,27,0,'2025-12-09','16:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,28,0,'2025-12-09','16:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,29,0,'2025-12-09','16:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,30,0,'2025-12-09','17:10:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,31,0,'2025-12-10','13:20:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,32,0,'2025-12-10','13:21:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,33,0,'2025-12-10','13:22:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,34,0,'2025-12-10','16:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'310',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,35,0,'2025-12-10','16:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'310',0,4,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,36,0,'2025-12-10','16:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'310',0,4,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,37,0,'2025-12-10','16:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'310',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,38,0,'2025-12-10','16:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'310',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,39,0,'2025-12-11','13:20:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,40,0,'2025-12-11','13:20:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,41,0,'2025-12-11','13:21:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,42,0,'2025-12-11','13:22:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',251,43,0,'2025-12-11','13:23:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:14:08','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,1,0,'2025-11-30','10:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,2,0,'2025-11-30','10:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,3,0,'2025-11-30','10:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,4,0,'2025-11-30','10:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,5,0,'2025-11-30','10:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,6,0,'2025-11-30','10:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,7,0,'2025-11-30','10:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,8,0,'2025-11-30','11:22:00','ROOM0008',0,7.00,100,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,9,0,'2025-11-30','11:23:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,10,0,'2025-11-30','11:23:00','WPRC0093',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,11,0,'2025-11-30','11:23:00','WPRC0080',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,12,0,'2025-12-01','10:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,13,0,'2025-12-01','10:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,14,0,'2025-12-01','10:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,15,0,'2025-12-01','10:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,16,0,'2025-12-01','10:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,17,0,'2025-12-01','11:23:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,18,0,'2025-12-01','13:17:00','ROOM0008',0,9.00,100,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,19,0,'2025-12-02','10:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,20,0,'2025-12-02','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,21,0,'2025-12-02','12:01:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,22,0,'2025-12-02','12:01:00','CARE0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,23,0,'2025-12-02','12:01:00','CARE0002',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,24,0,'2025-12-02','13:18:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,25,0,'2025-12-02','13:18:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,26,0,'2025-12-03','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,27,0,'2025-12-03','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,28,0,'2025-12-03','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,29,0,'2025-12-03','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,30,0,'2025-12-03','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,31,0,'2025-12-03','13:18:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,32,0,'2025-12-03','13:33:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,248,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,33,0,'2025-12-04','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,34,0,'2025-12-04','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,35,0,'2025-12-04','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,36,0,'2025-12-04','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,37,0,'2025-12-04','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,38,0,'2025-12-04','13:18:00','ROOM0008',0,13.00,100,1300,'P',0,0,1300.00,0.00,0.00,1300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,39,0,'2025-12-04','16:52:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,40,0,'2025-12-04','16:53:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,248,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,41,0,'2025-12-05','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,42,0,'2025-12-05','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,43,0,'2025-12-05','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,44,0,'2025-12-05','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,45,0,'2025-12-05','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,46,0,'2025-12-05','16:52:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,47,0,'2025-12-05','16:52:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,48,0,'2025-12-06','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,49,0,'2025-12-06','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,50,0,'2025-12-06','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,51,0,'2025-12-06','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,52,0,'2025-12-06','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,53,0,'2025-12-06','12:27:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,54,0,'2025-12-06','16:52:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,55,0,'2025-12-07','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,56,0,'2025-12-07','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,57,0,'2025-12-07','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,58,0,'2025-12-07','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,59,0,'2025-12-07','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,60,0,'2025-12-07','12:26:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,61,0,'2025-12-07','12:27:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,62,0,'2025-12-08','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,63,0,'2025-12-08','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,64,0,'2025-12-08','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,65,0,'2025-12-08','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,66,0,'2025-12-08','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,67,0,'2025-12-08','12:26:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,68,0,'2025-12-08','12:27:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,69,0,'2025-12-08','17:21:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,248,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,70,0,'2025-12-09','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,71,0,'2025-12-09','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,72,0,'2025-12-09','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,73,0,'2025-12-09','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,74,0,'2025-12-09','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,75,0,'2025-12-09','17:18:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,76,0,'2025-12-09','17:19:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,77,0,'2025-12-10','10:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,78,0,'2025-12-10','10:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,79,0,'2025-12-10','10:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'309',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,80,0,'2025-12-10','10:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,81,0,'2025-12-10','10:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'309',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,82,0,'2025-12-10','13:51:00','ROOM0008',0,9.00,100,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,83,0,'2025-12-10','13:51:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,84,0,'2025-12-11','13:51:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',252,85,0,'2025-12-11','13:53:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','riya','2025-12-11 14:46:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,1,0,'2025-12-05','16:17:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,2,0,'2025-12-05','16:18:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,5,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,3,0,'2025-12-05','16:18:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,4,0,'2025-12-05','16:18:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,5,0,'2025-12-05','16:19:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,6,0,'2025-12-05','17:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,7,0,'2025-12-05','17:30:00','REG0002',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,8,0,'2025-12-05','17:30:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'212',0,5,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,9,0,'2025-12-05','17:30:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,10,0,'2025-12-05','17:30:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,11,0,'2025-12-05','17:30:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,12,0,'2025-12-06','11:56:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,13,0,'2025-12-06','11:57:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,14,0,'2025-12-06','13:17:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,15,0,'2025-12-06','16:18:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,6,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,16,0,'2025-12-06','16:19:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,17,0,'2025-12-06','17:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,5,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,18,0,'2025-12-06','17:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,5,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,19,0,'2025-12-06','17:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,20,0,'2025-12-06','17:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,21,0,'2025-12-06','17:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,22,0,'2025-12-07','10:39:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,78,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,23,0,'2025-12-07','11:56:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,24,0,'2025-12-07','11:57:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,25,0,'2025-12-07','11:58:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,26,0,'2025-12-07','17:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,27,0,'2025-12-07','17:30:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,5,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,28,0,'2025-12-07','17:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,29,0,'2025-12-07','17:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,30,0,'2025-12-07','17:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,5,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,31,0,'2025-12-08','10:38:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,32,0,'2025-12-08','10:41:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,33,0,'2025-12-08','16:16:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,34,0,'2025-12-08','16:18:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,35,0,'2025-12-08','16:18:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,36,0,'2025-12-08','17:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,37,0,'2025-12-08','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,38,0,'2025-12-08','17:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'402',0,5,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,39,0,'2025-12-08','17:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,5,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,40,0,'2025-12-08','17:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,41,0,'2025-12-09','16:16:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,42,0,'2025-12-09','16:19:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,43,0,'2025-12-09','17:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,44,0,'2025-12-09','17:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,5,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,45,0,'2025-12-09','17:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,5,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,46,0,'2025-12-09','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,47,0,'2025-12-09','17:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,48,0,'2025-12-10','13:39:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,49,0,'2025-12-10','16:16:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,50,0,'2025-12-10','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,51,0,'2025-12-10','17:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,5,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,52,0,'2025-12-10','17:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,5,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,53,0,'2025-12-10','17:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,54,0,'2025-12-10','17:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,55,0,'2025-12-11','13:37:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,56,0,'2025-12-11','13:38:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',253,57,0,'2025-12-11','13:39:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-12-11 15:06:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',254,1,0,'2025-12-10','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:18:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',254,2,0,'2025-12-10','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:18:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',254,3,0,'2025-12-10','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:18:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',254,4,0,'2025-12-10','13:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:18:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',254,5,0,'2025-12-10','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:18:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',254,6,0,'2025-12-10','13:00:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'210',0,5,0,'',0,'','','','','','riya','2025-12-11 16:18:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',254,7,0,'2025-12-10','13:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,5,0,'',0,'','','','','','riya','2025-12-11 16:18:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',254,8,0,'2025-12-10','16:09:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:18:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',254,9,0,'2025-12-10','16:09:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:18:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',254,10,0,'2025-12-10','16:10:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:18:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',254,11,0,'2025-12-11','16:09:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:18:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',254,12,0,'2025-12-11','16:10:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-11 16:18:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',254,13,0,'2025-12-11','16:10:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','riya','2025-12-11 16:18:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,1,0,'2025-12-09','12:24:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,2,0,'2025-12-09','12:24:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,3,0,'2025-12-09','12:24:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,4,0,'2025-12-09','12:26:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,5,0,'2025-12-09','12:26:00','WPRC0092',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,4,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,6,0,'2025-12-09','12:27:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,7,0,'2025-12-09','12:28:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,8,0,'2025-12-09','12:28:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,9,0,'2025-12-09','16:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,10,0,'2025-12-09','16:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,11,0,'2025-12-09','16:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,12,0,'2025-12-09','16:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,13,0,'2025-12-09','16:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,14,0,'2025-12-09','16:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,15,0,'2025-12-10','12:26:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,16,0,'2025-12-10','12:27:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,17,0,'2025-12-10','12:28:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,18,0,'2025-12-10','12:28:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,19,0,'2025-12-10','12:28:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,20,0,'2025-12-10','14:51:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,21,0,'2025-12-10','16:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,22,0,'2025-12-10','16:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,23,0,'2025-12-10','16:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,24,0,'2025-12-10','16:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,25,0,'2025-12-10','16:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,26,0,'2025-12-10','20:52:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,212,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,27,0,'2025-12-11','14:51:00','WPRC0101',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,28,0,'2025-12-11','16:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,29,0,'2025-12-11','16:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,30,0,'2025-12-11','16:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,31,0,'2025-12-11','16:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,32,0,'2025-12-11','16:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,33,0,'2025-12-11','20:48:00','USG0092',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,34,0,'2025-12-11','20:49:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,35,0,'2025-12-11','20:49:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,36,0,'2025-12-11','20:51:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,37,0,'2025-12-11','20:51:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,38,0,'2025-12-11','20:52:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,39,0,'2025-12-12','12:11:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,40,0,'2025-12-12','12:11:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,41,0,'2025-12-12','12:12:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,4,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,42,0,'2025-12-12','12:12:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,43,0,'2025-12-12','12:14:00','WPRC0087',0,4.00,500,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',255,44,0,'2025-12-12','14:53:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-12 15:10:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,1,0,'2025-11-06','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,2,0,'2025-11-06','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,3,0,'2025-11-06','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,4,0,'2025-11-06','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,5,0,'2025-11-06','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,6,0,'2025-11-06','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,7,0,'2025-11-06','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,8,0,'2025-11-06','15:32:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,9,0,'2025-11-07','08:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,10,0,'2025-11-07','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,11,0,'2025-11-07','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,12,0,'2025-11-07','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,13,0,'2025-11-07','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,14,0,'2025-11-07','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,15,0,'2025-11-08','08:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,16,0,'2025-11-08','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,17,0,'2025-11-08','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,18,0,'2025-11-08','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,19,0,'2025-11-08','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,20,0,'2025-11-08','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,5,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,21,0,'2025-11-09','08:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,22,0,'2025-11-09','08:55:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',256,23,0,'2025-11-09','19:27:00','OETR0004',0,1.00,10398,10398,'P',0,0,10398.00,0.00,0.00,10398.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:28:40','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,1,0,'2025-12-04','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,2,0,'2025-12-04','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,3,0,'2025-12-04','16:08:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,4,0,'2025-12-04','16:57:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,5,0,'2025-12-04','16:58:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,6,0,'2025-12-04','16:58:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,7,0,'2025-12-04','16:59:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,8,0,'2025-12-04','16:59:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,9,0,'2025-12-04','17:00:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,10,0,'2025-12-04','17:00:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,11,0,'2025-12-04','17:00:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,12,0,'2025-12-04','19:31:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,13,0,'2025-12-05','16:58:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,14,0,'2025-12-05','16:59:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,15,0,'2025-12-05','16:59:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,16,0,'2025-12-05','17:00:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,17,0,'2025-12-05','17:00:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,18,0,'2025-12-05','17:00:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,19,0,'2025-12-05','18:32:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,20,0,'2025-12-05','18:32:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,21,0,'2025-12-06','13:33:00','XRY0045',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,22,0,'2025-12-06','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,23,0,'2025-12-06','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,24,0,'2025-12-06','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,25,0,'2025-12-06','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0);
INSERT INTO `receipt_transaction` VALUES (0,0,'2526','H','I',257,26,0,'2025-12-06','15:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,27,0,'2025-12-06','16:58:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,28,0,'2025-12-06','16:58:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,29,0,'2025-12-06','16:59:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,30,0,'2025-12-07','13:33:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,31,0,'2025-12-07','13:34:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,32,0,'2025-12-07','13:35:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,33,0,'2025-12-07','13:35:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,34,0,'2025-12-07','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,35,0,'2025-12-07','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,36,0,'2025-12-07','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,37,0,'2025-12-07','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,38,0,'2025-12-07','15:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,39,0,'2025-12-08','13:33:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,40,0,'2025-12-08','13:35:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,41,0,'2025-12-08','13:35:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,42,0,'2025-12-08','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,43,0,'2025-12-08','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,44,0,'2025-12-08','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,45,0,'2025-12-08','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,46,0,'2025-12-08','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,47,0,'2025-12-08','16:30:00','USG0095',0,1.00,1200,1200,'A',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,48,0,'2025-12-09','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,49,0,'2025-12-09','15:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,50,0,'2025-12-09','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,51,0,'2025-12-09','15:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,52,0,'2025-12-09','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,53,0,'2025-12-09','16:28:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,54,0,'2025-12-09','16:29:00','WPRC0097',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,55,0,'2025-12-09','16:29:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,56,0,'2025-12-09','16:32:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,57,0,'2025-12-09','16:32:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,58,0,'2025-12-09','16:33:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,59,0,'2025-12-10','15:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,60,0,'2025-12-10','15:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,61,0,'2025-12-10','15:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,62,0,'2025-12-10','15:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,63,0,'2025-12-10','15:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,64,0,'2025-12-10','16:29:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,65,0,'2025-12-10','16:32:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,66,0,'2025-12-10','16:32:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,67,0,'2025-12-10','18:22:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,68,0,'2025-12-11','10:47:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,69,0,'2025-12-11','10:47:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,70,0,'2025-12-11','15:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,71,0,'2025-12-11','15:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,72,0,'2025-12-11','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,73,0,'2025-12-11','15:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,74,0,'2025-12-11','15:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,75,0,'2025-12-11','18:22:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,76,0,'2025-12-12','10:47:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,77,0,'2025-12-12','10:48:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,78,0,'2025-12-12','18:22:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,79,0,'2025-12-12','18:29:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',257,80,0,'2025-12-12','18:29:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-12 19:36:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,1,0,'2025-12-09','16:11:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,52,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,2,0,'2025-12-09','17:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,3,0,'2025-12-09','17:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,4,0,'2025-12-09','17:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,5,0,'2025-12-09','17:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,6,0,'2025-12-09','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,7,0,'2025-12-09','17:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,7,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,8,0,'2025-12-10','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,9,0,'2025-12-10','17:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,7,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,10,0,'2025-12-10','17:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,7,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,11,0,'2025-12-10','17:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,12,0,'2025-12-10','17:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,13,0,'2025-12-11','10:41:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,14,0,'2025-12-11','17:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,15,0,'2025-12-11','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,16,0,'2025-12-11','17:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,17,0,'2025-12-11','17:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,7,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,18,0,'2025-12-11','17:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,7,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,19,0,'2025-12-12','17:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,20,0,'2025-12-12','17:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,21,0,'2025-12-12','17:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,22,0,'2025-12-12','17:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,7,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',258,23,0,'2025-12-12','22:10:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,7,0,'',0,'','','','','','riya','2025-12-13 11:05:31','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',259,1,0,'2025-12-08','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,2,0,'2025-12-08','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,3,0,'2025-12-08','13:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,4,0,'2025-12-08','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,5,0,'2025-12-08','13:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,6,0,'2025-12-08','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,7,0,'2025-12-08','13:56:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,8,0,'2025-12-09','13:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,9,0,'2025-12-09','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'212',0,4,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,10,0,'2025-12-09','13:56:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,11,0,'2025-12-09','13:57:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,12,0,'2025-12-09','13:58:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,13,0,'2025-12-09','13:59:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,14,0,'2025-12-09','13:59:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,15,0,'2025-12-09','13:59:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,16,0,'2025-12-10','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,17,0,'2025-12-10','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,18,0,'2025-12-10','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,19,0,'2025-12-10','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,20,0,'2025-12-10','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,21,0,'2025-12-10','16:13:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,22,0,'2025-12-10','16:13:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,23,0,'2025-12-11','10:23:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,24,0,'2025-12-11','13:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,25,0,'2025-12-11','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,26,0,'2025-12-11','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,27,0,'2025-12-11','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,28,0,'2025-12-11','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,29,0,'2025-12-12','10:23:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,30,0,'2025-12-12','12:46:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,31,0,'2025-12-12','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,32,0,'2025-12-12','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,33,0,'2025-12-12','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,34,0,'2025-12-12','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,35,0,'2025-12-12','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',259,36,0,'2025-12-13','12:45:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-13 13:12:13','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,1,0,'2025-12-13','00:00:00','REG0001',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,2,0,'2025-12-13','00:00:00','REG0002',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,3,0,'2025-12-13','00:00:00','DRC0019',0,-1.00,1600,-1600,'A',0,0,-1600.00,0.00,0.00,-1600.00,'',0,4,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,4,0,'2025-12-13','00:00:00','CARE0001',0,-1.00,600,-600,'A',0,0,-600.00,0.00,0.00,-600.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,5,0,'2025-12-13','00:00:00','AECO0008',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,6,0,'2025-12-13','00:00:00','ROOM0009',0,-1.00,5500,-5500,'A',0,0,-5500.00,0.00,0.00,-5500.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,7,0,'2025-12-13','00:00:00','ROOM0008',0,-2.00,100,-200,'P',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,8,0,'2025-12-13','00:00:00','DRC0018',0,-1.00,1600,-1600,'A',0,0,-1600.00,0.00,0.00,-1600.00,'',0,4,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,9,0,'2025-12-13','00:00:00','DRC0019',0,-1.00,1100,-1100,'A',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,10,0,'2025-12-13','00:00:00','ROOM0008',0,-3.00,100,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,11,0,'2025-12-13','00:00:00','WPRC0097',0,-1.00,2000,-2000,'P',0,0,-2000.00,0.00,0.00,-2000.00,'',0,4,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,12,0,'2025-12-13','00:00:00','DRC0020',0,-1.00,2000,-2000,'P',0,0,-2000.00,0.00,0.00,-2000.00,'',0,42,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,13,0,'2025-12-13','00:00:00','ROOM0009',0,-1.00,3200,-3200,'P',0,0,-3200.00,0.00,0.00,-3200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,14,0,'2025-12-13','00:00:00','AECO0008',0,-1.00,400,-400,'P',0,0,-400.00,0.00,0.00,-400.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,15,0,'2025-12-13','00:00:00','CARE0001',0,-1.00,200,-200,'P',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,16,0,'2025-12-13','00:00:00','DRC0019',0,-1.00,1100,-1100,'A',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,17,0,'2025-12-13','00:00:00','DRC0018',0,-1.00,1100,-1100,'A',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,18,0,'2025-12-13','00:00:00','AECO0008',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,19,0,'2025-12-13','00:00:00','ROOM0009',0,-1.00,3200,-3200,'A',0,0,-3200.00,0.00,0.00,-3200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,20,0,'2025-12-13','00:00:00','CARE0001',0,-1.00,200,-200,'A',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,21,0,'2025-12-13','00:00:00','ROOM0008',0,-3.00,100,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,22,0,'2025-12-13','00:00:00','DRC0020',0,-1.00,1500,-1500,'P',0,0,-1500.00,0.00,0.00,-1500.00,'',0,42,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,23,0,'2025-12-13','00:00:00','ROOM0008',0,-3.00,100,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,24,0,'2025-12-13','00:00:00','DRC0019',0,-1.00,1100,-1100,'P',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,25,0,'2025-12-13','00:00:00','DRC0018',0,-1.00,1100,-1100,'A',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,26,0,'2025-12-13','00:00:00','CARE0001',0,-1.00,200,-200,'A',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,27,0,'2025-12-13','00:00:00','AECO0008',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,28,0,'2025-12-13','00:00:00','ROOM0009',0,-1.00,3200,-3200,'A',0,0,-3200.00,0.00,0.00,-3200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,29,0,'2025-12-13','00:00:00','ROOM0008',0,-3.00,100,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,30,0,'2025-12-13','00:00:00','ROOM0008',0,-1.00,100,-100,'P',0,0,-100.00,0.00,0.00,-100.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,31,0,'2025-12-13','00:00:00','AECO0008',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,32,0,'2025-12-13','00:00:00','CARE0001',0,-1.00,200,-200,'A',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,33,0,'2025-12-13','00:00:00','DRC0018',0,-1.00,1100,-1100,'A',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,34,0,'2025-12-13','00:00:00','DRC0019',0,-1.00,1100,-1100,'A',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,35,0,'2025-12-13','00:00:00','ROOM0009',0,-1.00,3200,-3200,'A',0,0,-3200.00,0.00,0.00,-3200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',260,36,0,'2025-12-13','00:00:00','DRC0018',0,-1.00,1100,-1100,'P',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','riya','2025-12-13 14:08:10','riya','2025-12-13 14:08:10',0),(0,0,'2526','H','I',261,1,0,'2025-12-08','13:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,2,0,'2025-12-08','13:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,3,0,'2025-12-08','13:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,4,0,'2025-12-08','13:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,5,0,'2025-12-08','13:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,6,0,'2025-12-08','13:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'212',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,7,0,'2025-12-08','13:56:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,8,0,'2025-12-09','13:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'212',0,4,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,9,0,'2025-12-09','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'212',0,4,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,10,0,'2025-12-09','13:56:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,11,0,'2025-12-09','13:57:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,12,0,'2025-12-09','13:58:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,13,0,'2025-12-09','13:59:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,14,0,'2025-12-09','13:59:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,15,0,'2025-12-09','13:59:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,16,0,'2025-12-10','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,17,0,'2025-12-10','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,18,0,'2025-12-10','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,19,0,'2025-12-10','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,20,0,'2025-12-10','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,21,0,'2025-12-10','16:13:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,22,0,'2025-12-10','16:13:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,23,0,'2025-12-11','10:23:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,24,0,'2025-12-11','13:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,25,0,'2025-12-11','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,26,0,'2025-12-11','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,27,0,'2025-12-11','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,28,0,'2025-12-11','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,29,0,'2025-12-12','10:23:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,30,0,'2025-12-12','12:46:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,31,0,'2025-12-12','13:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,32,0,'2025-12-12','13:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,33,0,'2025-12-12','13:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,34,0,'2025-12-12','13:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,4,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,35,0,'2025-12-12','13:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',261,36,0,'2025-12-13','12:45:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-13 14:12:13','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,1,0,'2025-11-30','12:47:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,2,0,'2025-11-30','17:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,3,0,'2025-11-30','17:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,4,0,'2025-11-30','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,5,0,'2025-11-30','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,6,0,'2025-11-30','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,7,0,'2025-11-30','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,8,0,'2025-12-01','12:47:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,9,0,'2025-12-01','12:47:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,10,0,'2025-12-01','13:07:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,11,0,'2025-12-01','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,12,0,'2025-12-01','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,13,0,'2025-12-01','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,14,0,'2025-12-01','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,15,0,'2025-12-02','12:02:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,16,0,'2025-12-02','12:47:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,17,0,'2025-12-02','12:48:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,18,0,'2025-12-02','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,19,0,'2025-12-02','19:02:00','SURG0016',0,1.00,45000,45000,'P',0,0,45000.00,0.00,0.00,45000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,20,0,'2025-12-02','19:02:00','SURG0015',0,1.00,11250,11250,'P',0,0,11250.00,0.00,0.00,11250.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,21,0,'2025-12-02','19:14:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,22,0,'2025-12-02','19:14:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,23,0,'2025-12-02','19:14:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,24,0,'2025-12-02','19:14:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,25,0,'2025-12-03','12:02:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,26,0,'2025-12-03','12:03:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,27,0,'2025-12-03','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,28,0,'2025-12-03','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,29,0,'2025-12-03','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,30,0,'2025-12-03','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,31,0,'2025-12-03','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,32,0,'2025-12-04','12:03:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,33,0,'2025-12-04','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,34,0,'2025-12-04','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,35,0,'2025-12-04','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,36,0,'2025-12-04','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,37,0,'2025-12-04','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,38,0,'2025-12-04','20:19:00','WPRC0092',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,39,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,39,0,'2025-12-04','20:19:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,40,0,'2025-12-05','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,41,0,'2025-12-05','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,42,0,'2025-12-05','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,43,0,'2025-12-05','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,44,0,'2025-12-05','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,45,0,'2025-12-05','20:19:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,46,0,'2025-12-05','20:20:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,47,0,'2025-12-06','13:17:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,48,0,'2025-12-06','16:55:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,49,0,'2025-12-06','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,50,0,'2025-12-06','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,51,0,'2025-12-06','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,52,0,'2025-12-06','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,53,0,'2025-12-06','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,54,0,'2025-12-07','13:15:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,55,0,'2025-12-07','13:16:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,56,0,'2025-12-07','13:17:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,57,0,'2025-12-07','13:18:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,58,0,'2025-12-07','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,59,0,'2025-12-07','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,60,0,'2025-12-07','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,61,0,'2025-12-07','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,62,0,'2025-12-07','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,63,0,'2025-12-08','13:16:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,64,0,'2025-12-08','13:47:00','SURG0015',0,1.00,7000,7000,'P',0,0,7000.00,0.00,0.00,7000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,65,0,'2025-12-08','16:52:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,66,0,'2025-12-08','16:53:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,67,0,'2025-12-08','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,68,0,'2025-12-08','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,69,0,'2025-12-08','20:06:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,70,0,'2025-12-08','20:06:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,71,0,'2025-12-08','20:06:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,72,0,'2025-12-09','16:52:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,73,0,'2025-12-09','17:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,74,0,'2025-12-09','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'213',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,75,0,'2025-12-09','19:56:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,76,0,'2025-12-09','19:56:00','CARE0005',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,77,0,'2025-12-09','19:56:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,78,0,'2025-12-10','10:34:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,79,0,'2025-12-10','16:25:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,80,0,'2025-12-10','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,81,0,'2025-12-10','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,82,0,'2025-12-10','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,83,0,'2025-12-10','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,84,0,'2025-12-10','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,85,0,'2025-12-11','10:33:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,86,0,'2025-12-11','10:36:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,87,0,'2025-12-11','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,88,0,'2025-12-11','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,89,0,'2025-12-11','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,90,0,'2025-12-11','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,91,0,'2025-12-11','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,92,0,'2025-12-12','10:33:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,93,0,'2025-12-12','10:36:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,94,0,'2025-12-12','13:52:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,95,0,'2025-12-12','13:54:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,96,0,'2025-12-12','17:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,97,0,'2025-12-12','17:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,98,0,'2025-12-12','17:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,99,0,'2025-12-12','17:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,100,0,'2025-12-12','17:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,101,0,'2025-12-13','13:53:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,102,0,'2025-12-13','13:54:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',262,103,0,'2025-12-13','13:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 14:24:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',263,1,0,'2025-12-13','01:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 15:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',263,2,0,'2025-12-13','01:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 15:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',263,3,0,'2025-12-13','01:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-13 15:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',263,4,0,'2025-12-13','01:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-13 15:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',263,5,0,'2025-12-13','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-13 15:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',263,6,0,'2025-12-13','01:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,4,0,'',0,'','','','','','riya','2025-12-13 15:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',263,7,0,'2025-12-13','14:39:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 15:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',263,8,0,'2025-12-13','14:40:00','WPRC0090',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 15:05:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',264,1,0,'2025-12-12','19:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:23:40','riya','2025-12-13 18:31:14',0),(0,0,'2526','H','I',264,2,0,'2025-12-12','19:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:23:40','riya','2025-12-13 18:31:14',0),(0,0,'2526','H','I',264,3,0,'2025-12-12','19:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:23:40','riya','2025-12-13 18:31:14',0),(0,0,'2526','H','I',264,4,0,'2025-12-12','19:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:23:40','riya','2025-12-13 18:31:14',0),(0,0,'2526','H','I',264,5,0,'2025-12-12','19:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:23:40','riya','2025-12-13 18:31:14',0),(0,0,'2526','H','I',264,6,0,'2025-12-12','19:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-12-13 18:23:40','riya','2025-12-13 18:31:14',0),(0,0,'2526','H','I',264,7,0,'2025-12-13','18:14:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:23:40','riya','2025-12-13 18:31:14',0),(0,0,'2526','H','I',264,8,0,'2025-12-13','19:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-12-13 18:23:40','riya','2025-12-13 18:31:14',0),(0,0,'2526','H','I',265,1,0,'2025-12-13','00:00:00','REG0001',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 18:31:14','riya','2025-12-13 18:31:14',0),(0,0,'2526','H','I',265,2,0,'2025-12-13','00:00:00','REG0002',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 18:31:14','riya','2025-12-13 18:31:14',0),(0,0,'2526','H','I',265,3,0,'2025-12-13','00:00:00','ROOM0009',0,-1.00,3200,-3200,'A',0,0,-3200.00,0.00,0.00,-3200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 18:31:14','riya','2025-12-13 18:31:14',0),(0,0,'2526','H','I',265,4,0,'2025-12-13','00:00:00','AECO0008',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 18:31:14','riya','2025-12-13 18:31:14',0),(0,0,'2526','H','I',265,5,0,'2025-12-13','00:00:00','CARE0001',0,-1.00,200,-200,'A',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 18:31:14','riya','2025-12-13 18:31:14',0),(0,0,'2526','H','I',265,6,0,'2025-12-13','00:00:00','DRC0018',0,-1.00,1100,-1100,'A',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','riya','2025-12-13 18:31:14','riya','2025-12-13 18:31:14',0),(0,0,'2526','H','I',265,7,0,'2025-12-13','00:00:00','ROOM0008',0,-1.00,100,-100,'P',0,0,-100.00,0.00,0.00,-100.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-13 18:31:14','riya','2025-12-13 18:31:14',0),(0,0,'2526','H','I',265,8,0,'2025-12-13','00:00:00','DRC0018',0,-1.00,1100,-1100,'P',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','riya','2025-12-13 18:31:14','riya','2025-12-13 18:31:14',0),(0,0,'2526','H','I',266,1,0,'2025-12-12','19:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',266,2,0,'2025-12-12','19:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',266,3,0,'2025-12-12','19:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',266,4,0,'2025-12-12','19:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',266,5,0,'2025-12-12','19:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',266,6,0,'2025-12-12','19:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-12-13 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',266,7,0,'2025-12-13','18:14:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',266,8,0,'2025-12-13','18:31:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-13 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',266,9,0,'2025-12-13','19:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-12-13 18:33:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,1,0,'2025-12-08','16:22:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,2,0,'2025-12-08','18:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,3,0,'2025-12-08','18:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,4,0,'2025-12-08','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,5,0,'2025-12-08','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,6,0,'2025-12-08','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,7,0,'2025-12-08','18:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,8,0,'2025-12-09','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,9,0,'2025-12-09','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,10,0,'2025-12-09','18:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,11,0,'2025-12-09','18:00:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,12,0,'2025-12-09','18:00:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,13,0,'2025-12-10','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,14,0,'2025-12-10','18:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,15,0,'2025-12-10','18:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,16,0,'2025-12-10','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,17,0,'2025-12-10','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,18,0,'2025-12-11','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,19,0,'2025-12-11','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,20,0,'2025-12-11','18:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,21,0,'2025-12-11','18:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,22,0,'2025-12-11','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,23,0,'2025-12-12','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,24,0,'2025-12-12','18:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,25,0,'2025-12-12','18:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,26,0,'2025-12-12','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,27,0,'2025-12-12','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,28,0,'2025-12-13','18:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,29,0,'2025-12-13','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,30,0,'2025-12-13','18:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,31,0,'2025-12-13','18:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,32,0,'2025-12-13','18:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,5,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',267,33,0,'2025-12-14','11:14:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','riya','2025-12-14 13:19:53','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',268,1,0,'2025-12-13','09:53:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:22:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',268,2,0,'2025-12-13','09:53:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:22:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',268,3,0,'2025-12-13','09:53:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'306',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:22:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',268,4,0,'2025-12-13','09:53:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'306',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:22:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',268,5,0,'2025-12-13','09:53:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'306',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:22:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',268,6,0,'2025-12-13','09:53:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'306',0,4,0,'',0,'','','','','','riya','2025-12-14 13:22:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',268,7,0,'2025-12-13','09:53:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'306',0,4,0,'',0,'','','','','','riya','2025-12-14 13:22:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',268,8,0,'2025-12-13','12:38:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:22:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',268,9,0,'2025-12-13','12:38:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:22:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',268,10,0,'2025-12-13','12:39:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','riya','2025-12-14 13:22:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',268,11,0,'2025-12-13','12:39:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:22:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',268,12,0,'2025-12-13','12:40:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:22:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',268,13,0,'2025-12-13','12:40:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:22:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',268,14,0,'2025-12-14','09:53:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'302',0,4,0,'',0,'','','','','','riya','2025-12-14 13:22:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',268,15,0,'2025-12-14','12:39:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:22:49','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,1,0,'2025-12-12','12:15:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,2,0,'2025-12-12','12:24:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,3,0,'2025-12-12','12:24:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,4,0,'2025-12-12','18:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,5,0,'2025-12-12','18:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,6,0,'2025-12-12','18:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,7,0,'2025-12-12','18:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,8,0,'2025-12-12','18:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,9,0,'2025-12-13','12:15:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,10,0,'2025-12-13','12:16:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,11,0,'2025-12-13','12:25:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,12,0,'2025-12-13','12:25:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,13,0,'2025-12-13','18:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'407',0,42,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,14,0,'2025-12-13','18:30:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'407',0,42,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,15,0,'2025-12-13','18:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,16,0,'2025-12-13','18:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,17,0,'2025-12-13','18:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,18,0,'2025-12-14','12:15:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,19,0,'2025-12-14','12:16:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',269,20,0,'2025-12-14','12:25:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-14 13:38:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',270,1,0,'2025-12-14','01:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 16:52:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',270,2,0,'2025-12-14','01:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 16:52:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',270,3,0,'2025-12-14','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-14 16:52:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',270,4,0,'2025-12-14','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-14 16:52:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',270,5,0,'2025-12-14','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-14 16:52:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',270,6,0,'2025-12-14','01:00:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'405',0,42,0,'',0,'','','','','','vishal','2025-12-14 16:52:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',270,7,0,'2025-12-14','16:40:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 16:52:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',270,8,0,'2025-12-14','16:40:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 16:52:21','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',271,1,0,'2025-12-13','10:27:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:34:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',271,2,0,'2025-12-13','10:27:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:34:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',271,3,0,'2025-12-13','10:27:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:34:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',271,4,0,'2025-12-13','10:27:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:34:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',271,5,0,'2025-12-13','10:27:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:34:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',271,6,0,'2025-12-13','10:27:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-12-14 17:34:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',271,7,0,'2025-12-13','10:27:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,4,0,'',0,'','','','','','vishal','2025-12-14 17:34:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',271,8,0,'2025-12-13','11:50:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:34:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',271,9,0,'2025-12-13','11:50:00','WPRC0080',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:34:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',271,10,0,'2025-12-14','10:27:00','ROOM0009',0,0.50,2900,1450,'A',0,0,1450.00,0.00,0.00,1450.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:34:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',271,11,0,'2025-12-14','10:27:00','AECO0008',0,0.50,300,150,'A',0,0,150.00,0.00,0.00,150.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:34:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',271,12,0,'2025-12-14','10:27:00','CARE0001',0,0.50,200,100,'A',0,0,100.00,0.00,0.00,100.00,'308',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:34:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',271,13,0,'2025-12-14','10:27:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'308',0,4,0,'',0,'','','','','','vishal','2025-12-14 17:34:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',271,14,0,'2025-12-14','11:51:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:34:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',271,15,0,'2025-12-14','11:51:00','WPRC0078',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 17:34:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',272,1,0,'2025-10-13','22:24:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',272,2,0,'2025-10-13','22:24:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',272,3,0,'2025-10-13','22:24:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',272,4,0,'2025-10-13','22:24:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',272,5,0,'2025-10-13','22:24:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',272,6,0,'2025-10-13','22:49:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',272,7,0,'2025-10-14','22:24:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',272,8,0,'2025-10-14','22:24:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',272,9,0,'2025-10-14','22:24:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',272,10,0,'2025-10-14','22:24:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',272,11,0,'2025-10-14','22:24:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',272,12,0,'2025-10-15','22:24:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',272,13,0,'2025-10-15','22:24:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',272,14,0,'2025-10-15','22:24:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',272,15,0,'2025-10-15','22:24:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',272,16,0,'2025-10-15','22:46:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',272,17,0,'2025-10-16','17:06:00','OETR0004',0,1.00,0,0,'P',0,0,0.00,0.00,0.00,0.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',272,18,0,'2025-10-16','22:24:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','vishal','2025-12-14 21:27:15','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',273,1,0,'2025-12-10','20:06:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,2,0,'2025-12-10','20:06:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,3,0,'2025-12-10','20:07:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,78,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,4,0,'2025-12-10','20:07:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,5,0,'2025-12-10','22:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,6,0,'2025-12-10','22:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,7,0,'2025-12-10','22:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,8,0,'2025-12-10','22:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,9,0,'2025-12-10','22:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,10,0,'2025-12-10','22:15:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'207',0,78,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,11,0,'2025-12-11','11:54:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,12,0,'2025-12-11','11:55:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,13,0,'2025-12-11','16:00:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,14,0,'2025-12-11','20:07:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,15,0,'2025-12-11','22:15:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,16,0,'2025-12-11','22:15:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,17,0,'2025-12-11','22:15:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,18,0,'2025-12-11','22:15:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'207',0,78,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,19,0,'2025-12-12','11:54:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,20,0,'2025-12-12','11:56:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,21,0,'2025-12-12','21:12:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,22,0,'2025-12-12','22:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,23,0,'2025-12-12','22:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,24,0,'2025-12-12','22:15:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,78,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,25,0,'2025-12-12','22:15:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,78,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,26,0,'2025-12-12','22:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,27,0,'2025-12-13','15:59:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,28,0,'2025-12-13','16:03:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,29,0,'2025-12-13','22:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,30,0,'2025-12-13','22:15:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,78,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,31,0,'2025-12-13','22:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,32,0,'2025-12-13','22:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,33,0,'2025-12-14','15:59:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,34,0,'2025-12-14','16:04:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,35,0,'2025-12-14','22:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,36,0,'2025-12-14','22:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,37,0,'2025-12-14','22:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,38,0,'2025-12-14','22:15:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,78,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,39,0,'2025-12-15','16:00:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',273,40,0,'2025-12-15','16:01:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','riya','2025-12-15 16:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',274,1,0,'2025-12-15','00:00:00','REG0001',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-15 17:45:47','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',274,2,0,'2025-12-15','00:00:00','REG0002',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-15 17:45:47','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',274,3,0,'2025-12-15','00:00:00','ROOM0009',0,-1.00,3200,-3200,'A',0,0,-3200.00,0.00,0.00,-3200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-15 17:45:47','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',274,4,0,'2025-12-15','00:00:00','AECO0008',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-15 17:45:47','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',274,5,0,'2025-12-15','00:00:00','CARE0001',0,-1.00,200,-200,'A',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-15 17:45:47','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',274,6,0,'2025-12-15','00:00:00','ROOM0008',0,-1.00,100,-100,'P',0,0,-100.00,0.00,0.00,-100.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-15 17:45:47','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',274,7,0,'2025-12-15','00:00:00','CARE0001',0,-1.00,200,-200,'A',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-15 17:45:47','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',274,8,0,'2025-12-15','00:00:00','DRC0019',0,-1.00,1100,-1100,'A',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','riya','2025-12-15 17:45:47','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',274,9,0,'2025-12-15','00:00:00','DRC0018',0,-1.00,1100,-1100,'A',0,0,-1100.00,0.00,0.00,-1100.00,'',0,5,0,'',0,'','','','Y','N','riya','2025-12-15 17:45:47','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',274,10,0,'2025-12-15','00:00:00','AECO0008',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-15 17:45:47','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',274,11,0,'2025-12-15','00:00:00','ROOM0009',0,-1.00,3200,-3200,'A',0,0,-3200.00,0.00,0.00,-3200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-15 17:45:47','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',274,12,0,'2025-12-15','00:00:00','AECO0008',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-15 17:45:47','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',274,13,0,'2025-12-15','00:00:00','CARE0001',0,-1.00,200,-200,'A',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-15 17:45:47','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',274,14,0,'2025-12-15','00:00:00','ROOM0009',0,-1.00,3200,-3200,'A',0,0,-3200.00,0.00,0.00,-3200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-15 17:45:47','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',274,15,0,'2025-12-15','00:00:00','DRC0019',0,-1.00,1100,-1100,'A',0,0,-1100.00,0.00,0.00,-1100.00,'',0,5,0,'',0,'','','','Y','N','riya','2025-12-15 17:45:47','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',274,16,0,'2025-12-15','00:00:00','DRC0018',0,-1.00,1100,-1100,'A',0,0,-1100.00,0.00,0.00,-1100.00,'',0,4,0,'',0,'','','','Y','N','riya','2025-12-15 17:45:47','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',274,17,0,'2025-12-15','00:00:00','OETR0004',0,-1.00,0,0,'P',0,0,0.00,0.00,0.00,0.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-15 17:45:47','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',274,18,0,'2025-12-15','00:00:00','DRC0018',0,-1.00,1100,-1100,'P',0,0,-1100.00,0.00,0.00,-1100.00,'',0,5,0,'',0,'','','','Y','N','riya','2025-12-15 17:45:47','riya','2025-12-15 17:45:47',0),(0,0,'2526','H','I',275,1,0,'2025-10-13','22:24:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',275,2,0,'2025-10-13','22:24:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',275,3,0,'2025-10-13','22:24:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',275,4,0,'2025-10-13','22:24:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',275,5,0,'2025-10-13','22:24:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',275,6,0,'2025-10-13','22:49:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',275,7,0,'2025-10-14','22:24:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',275,8,0,'2025-10-14','22:24:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',275,9,0,'2025-10-14','22:24:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',275,10,0,'2025-10-14','22:24:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',275,11,0,'2025-10-14','22:24:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',275,12,0,'2025-10-15','22:24:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',275,13,0,'2025-10-15','22:24:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',275,14,0,'2025-10-15','22:24:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',275,15,0,'2025-10-15','22:24:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',275,16,0,'2025-10-15','22:46:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',275,17,0,'2025-10-16','17:06:00','OETR0004',0,1.00,16046,16046,'P',0,0,16046.00,0.00,0.00,16046.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',275,18,0,'2025-10-16','22:24:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'405',0,5,0,'',0,'','','','','','vishal','2025-12-15 18:00:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,1,0,'2025-12-10','10:50:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,2,0,'2025-12-10','10:51:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,3,0,'2025-12-10','18:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,4,0,'2025-12-10','18:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,5,0,'2025-12-10','18:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,6,0,'2025-12-10','18:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,7,0,'2025-12-10','18:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,8,0,'2025-12-10','18:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,9,0,'2025-12-11','10:50:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,10,0,'2025-12-11','10:51:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,11,0,'2025-12-11','18:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,12,0,'2025-12-11','18:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,13,0,'2025-12-11','18:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,14,0,'2025-12-11','18:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,15,0,'2025-12-11','18:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,16,0,'2025-12-12','10:50:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,17,0,'2025-12-12','10:51:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,18,0,'2025-12-12','18:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,19,0,'2025-12-12','18:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,20,0,'2025-12-12','18:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,21,0,'2025-12-12','18:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'407',0,4,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,22,0,'2025-12-12','18:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,23,0,'2025-12-13','16:12:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,24,0,'2025-12-13','16:13:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,25,0,'2025-12-13','16:15:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',276,26,0,'2025-12-13','16:16:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-15 19:34:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',277,1,0,'2025-12-14','21:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 21:26:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',277,2,0,'2025-12-14','21:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 21:26:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',277,3,0,'2025-12-14','21:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-15 21:26:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',277,4,0,'2025-12-14','21:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-15 21:26:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',277,5,0,'2025-12-14','21:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-15 21:26:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',277,6,0,'2025-12-14','21:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-12-15 21:26:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',277,7,0,'2025-12-14','21:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','riya','2025-12-15 21:26:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',277,8,0,'2025-12-14','21:09:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 21:26:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',277,9,0,'2025-12-14','21:10:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 21:26:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',277,10,0,'2025-12-14','21:10:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-15 21:26:57','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',278,1,0,'2025-12-15','11:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:15:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',278,2,0,'2025-12-15','11:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:15:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',278,3,0,'2025-12-15','11:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:15:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',278,4,0,'2025-12-15','11:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:15:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',278,5,0,'2025-12-15','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:15:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',278,6,0,'2025-12-15','11:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,3,0,'',0,'','','','','','vishal','2025-12-16 11:15:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',278,7,0,'2025-12-15','11:15:00','SURG0014',0,1.00,10000,10000,'A',0,0,10000.00,0.00,0.00,10000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-16 11:15:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',278,8,0,'2025-12-15','11:15:00','SURG0015',0,1.00,3100,3100,'P',0,0,3100.00,0.00,0.00,3100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-16 11:15:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',278,9,0,'2025-12-16','11:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'304',0,3,0,'',0,'','','','','','vishal','2025-12-16 11:15:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',278,10,0,'2025-12-16','11:10:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:15:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',278,11,0,'2025-12-16','11:10:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:15:58','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',279,1,0,'2025-12-15','11:34:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',279,2,0,'2025-12-15','11:35:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',279,3,0,'2025-12-15','11:35:00','WPRC0087',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',279,4,0,'2025-12-15','11:36:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,7,0,'',0,'','','','','','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',279,5,0,'2025-12-15','11:36:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',279,6,0,'2025-12-15','11:37:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,7,0,'',0,'','','','','','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',279,7,0,'2025-12-15','11:37:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',279,8,0,'2025-12-15','11:49:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',279,9,0,'2025-12-15','17:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',279,10,0,'2025-12-15','17:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',279,11,0,'2025-12-15','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,7,0,'',0,'','','','','','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',279,12,0,'2025-12-15','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',279,13,0,'2025-12-15','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',279,14,0,'2025-12-15','17:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',279,15,0,'2025-12-16','11:35:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',279,16,0,'2025-12-16','11:37:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',279,17,0,'2025-12-16','11:49:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',279,18,0,'2025-12-16','17:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,7,0,'',0,'','','','','','vishal','2025-12-16 11:50:12','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',280,1,0,'2025-12-16','00:00:00','WPRC0085',0,-1.00,3000,-3000,'P',0,0,-3000.00,0.00,0.00,-3000.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 13:08:32','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',280,2,0,'2025-12-16','00:00:00','WPRC0086',0,-1.00,1500,-1500,'P',0,0,-1500.00,0.00,0.00,-1500.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 13:08:32','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',280,3,0,'2025-12-16','00:00:00','WPRC0087',0,-3.00,500,-1500,'P',0,0,-1500.00,0.00,0.00,-1500.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 13:08:32','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',280,4,0,'2025-12-16','00:00:00','WPRC0088',0,-1.00,1500,-1500,'P',0,0,-1500.00,0.00,0.00,-1500.00,'',0,7,0,'',0,'','','','Y','N','riya','2025-12-16 13:08:32','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',280,5,0,'2025-12-16','00:00:00','ROOM0008',0,-2.00,100,-200,'P',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 13:08:32','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',280,6,0,'2025-12-16','00:00:00','WPRC0079',0,-1.00,750,-750,'P',0,0,-750.00,0.00,0.00,-750.00,'',0,7,0,'',0,'','','','Y','N','riya','2025-12-16 13:08:32','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',280,7,0,'2025-12-16','00:00:00','WPRC0078',0,-1.00,300,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 13:08:32','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',280,8,0,'2025-12-16','00:00:00','WPRC0098',0,-1.00,1000,-1000,'A',0,0,-1000.00,0.00,0.00,-1000.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 13:08:32','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',280,9,0,'2025-12-16','00:00:00','REG0001',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 13:08:32','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',280,10,0,'2025-12-16','00:00:00','REG0002',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 13:08:32','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',280,11,0,'2025-12-16','00:00:00','DRC0019',0,-1.00,1600,-1600,'A',0,0,-1600.00,0.00,0.00,-1600.00,'',0,7,0,'',0,'','','','Y','N','riya','2025-12-16 13:08:32','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',280,12,0,'2025-12-16','00:00:00','CARE0001',0,-1.00,600,-600,'A',0,0,-600.00,0.00,0.00,-600.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 13:08:32','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',280,13,0,'2025-12-16','00:00:00','AECO0008',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 13:08:32','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',280,14,0,'2025-12-16','00:00:00','ROOM0009',0,-1.00,5500,-5500,'P',0,0,-5500.00,0.00,0.00,-5500.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 13:08:32','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',280,15,0,'2025-12-16','00:00:00','WPRC0087',0,-2.00,500,-1000,'P',0,0,-1000.00,0.00,0.00,-1000.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 13:08:32','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',280,16,0,'2025-12-16','00:00:00','ROOM0008',0,-1.00,100,-100,'A',0,0,-100.00,0.00,0.00,-100.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 13:08:32','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',280,17,0,'2025-12-16','00:00:00','WPRC0098',0,-1.00,1000,-1000,'P',0,0,-1000.00,0.00,0.00,-1000.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 13:08:32','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',280,18,0,'2025-12-16','00:00:00','DRC0018',0,-1.00,1600,-1600,'P',0,0,-1600.00,0.00,0.00,-1600.00,'',0,7,0,'',0,'','','','Y','N','riya','2025-12-16 13:08:32','riya','2025-12-16 13:08:32',0),(0,0,'2526','H','I',281,1,0,'2025-12-15','11:34:00','WPRC0085',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',281,2,0,'2025-12-15','11:35:00','WPRC0087',0,3.00,500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',281,3,0,'2025-12-15','11:35:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',281,4,0,'2025-12-15','11:36:00','WPRC0088',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,7,0,'',0,'','','','','','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',281,5,0,'2025-12-15','11:36:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',281,6,0,'2025-12-15','11:37:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,7,0,'',0,'','','','','','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',281,7,0,'2025-12-15','11:37:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',281,8,0,'2025-12-15','11:49:00','WPRC0098',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',281,9,0,'2025-12-15','17:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',281,10,0,'2025-12-15','17:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',281,11,0,'2025-12-15','17:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',281,12,0,'2025-12-15','17:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',281,13,0,'2025-12-15','17:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,7,0,'',0,'','','','','','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',281,14,0,'2025-12-15','17:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',281,15,0,'2025-12-16','11:35:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',281,16,0,'2025-12-16','11:37:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',281,17,0,'2025-12-16','11:49:00','WPRC0098',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',281,18,0,'2025-12-16','17:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,7,0,'',0,'','','','','','riya','2025-12-16 13:11:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,1,0,'2025-12-13','11:59:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,2,0,'2025-12-13','21:19:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,3,0,'2025-12-13','21:19:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,4,0,'2025-12-13','21:19:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,5,0,'2025-12-13','21:19:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,6,0,'2025-12-13','21:19:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,7,0,'2025-12-14','11:59:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,8,0,'2025-12-14','12:39:00','SURG0015',0,1.00,12000,12000,'P',0,0,12000.00,0.00,0.00,12000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,9,0,'2025-12-14','12:39:00','SURG0014',0,1.00,36000,36000,'P',0,0,36000.00,0.00,0.00,36000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,10,0,'2025-12-14','21:19:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,11,0,'2025-12-14','21:19:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,12,0,'2025-12-14','21:19:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,13,0,'2025-12-14','21:19:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,14,0,'2025-12-14','21:19:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,15,0,'2025-12-15','21:19:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,16,0,'2025-12-15','21:19:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,17,0,'2025-12-15','21:19:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,18,0,'2025-12-15','21:19:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,19,0,'2025-12-15','21:19:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,20,0,'2025-12-16','12:00:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',282,21,0,'2025-12-16','21:19:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,3,0,'',0,'','','','','','vishal','2025-12-16 14:08:52','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',283,1,0,'2025-12-15','14:53:00','USG0092',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 15:24:30','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',283,2,0,'2025-12-15','14:56:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 15:24:30','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',283,3,0,'2025-12-15','14:57:00','WPRC0090',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 15:24:30','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',283,4,0,'2025-12-15','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 15:24:30','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',283,5,0,'2025-12-15','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 15:24:30','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',283,6,0,'2025-12-15','15:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-12-16 15:24:30','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',283,7,0,'2025-12-15','15:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-12-16 15:24:30','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',283,8,0,'2025-12-15','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','vishal','2025-12-16 15:24:30','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',283,9,0,'2025-12-15','15:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,4,0,'',0,'','','','','','vishal','2025-12-16 15:24:30','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',283,10,0,'2025-12-15','15:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,4,0,'',0,'','','','','','vishal','2025-12-16 15:24:30','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',283,11,0,'2025-12-16','15:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,4,0,'',0,'','','','','','vishal','2025-12-16 15:24:30','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',284,1,0,'2025-12-16','00:00:00','USG0092',0,-1.00,1000,-1000,'P',0,0,-1000.00,0.00,0.00,-1000.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 15:32:13','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',284,2,0,'2025-12-16','00:00:00','WPRC0078',0,-1.00,300,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 15:32:13','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',284,3,0,'2025-12-16','00:00:00','WPRC0090',0,-1.00,500,-500,'P',0,0,-500.00,0.00,0.00,-500.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 15:32:13','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',284,4,0,'2025-12-16','00:00:00','REG0001',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 15:32:13','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',284,5,0,'2025-12-16','00:00:00','REG0002',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 15:32:13','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',284,6,0,'2025-12-16','00:00:00','ROOM0009',0,-1.00,2900,-2900,'A',0,0,-2900.00,0.00,0.00,-2900.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 15:32:13','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',284,7,0,'2025-12-16','00:00:00','AECO0008',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 15:32:13','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',284,8,0,'2025-12-16','00:00:00','CARE0001',0,-1.00,200,-200,'A',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-16 15:32:13','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',284,9,0,'2025-12-16','00:00:00','DRC0019',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,4,0,'',0,'','','','Y','N','riya','2025-12-16 15:32:13','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',284,10,0,'2025-12-16','00:00:00','DRC0018',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,4,0,'',0,'','','','Y','N','riya','2025-12-16 15:32:13','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',284,11,0,'2025-12-16','00:00:00','DRC0018',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,4,0,'',0,'','','','Y','N','riya','2025-12-16 15:32:13','riya','2025-12-16 15:32:13',0),(0,0,'2526','H','I',285,1,0,'2025-12-15','14:53:00','USG0092',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 15:33:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',285,2,0,'2025-12-15','14:56:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 15:33:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',285,3,0,'2025-12-15','14:57:00','WPRC0090',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 15:33:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',285,4,0,'2025-12-15','15:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 15:33:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',285,5,0,'2025-12-15','15:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-16 15:33:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',285,6,0,'2025-12-15','15:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-16 15:33:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',285,7,0,'2025-12-15','15:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-16 15:33:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',285,8,0,'2025-12-15','15:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'410',0,9999,0,'',0,'','','','','','riya','2025-12-16 15:33:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',285,9,0,'2025-12-15','15:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,4,0,'',0,'','','','','','riya','2025-12-16 15:33:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',285,10,0,'2025-12-16','15:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'410',0,4,0,'',0,'','','','','','riya','2025-12-16 15:33:06','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',286,1,0,'2025-12-16','09:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 17:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',286,2,0,'2025-12-16','09:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 17:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',286,3,0,'2025-12-16','09:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','vishal','2025-12-16 17:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',286,4,0,'2025-12-16','09:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,3,0,'',0,'','','','','','vishal','2025-12-16 17:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',286,5,0,'2025-12-16','17:46:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 17:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',286,6,0,'2025-12-16','17:49:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 17:56:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',287,1,0,'2025-12-16','00:05:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',287,2,0,'2025-12-16','00:05:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',287,3,0,'2025-12-16','00:05:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',287,4,0,'2025-12-16','00:05:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','vishal','2025-12-16 19:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',287,5,0,'2025-12-16','00:05:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,4,0,'',0,'','','','','','vishal','2025-12-16 19:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',287,6,0,'2025-12-16','12:05:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',287,7,0,'2025-12-16','12:05:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',287,8,0,'2025-12-16','19:30:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',287,9,0,'2025-12-16','19:30:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',287,10,0,'2025-12-16','19:31:00','WPRC0090',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',287,11,0,'2025-12-16','19:32:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',288,1,0,'2025-12-16','02:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:54:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',288,2,0,'2025-12-16','02:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:54:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',288,3,0,'2025-12-16','02:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:54:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',288,4,0,'2025-12-16','02:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:54:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',288,5,0,'2025-12-16','02:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:54:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',288,6,0,'2025-12-16','02:30:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,4,0,'',0,'','','','','','vishal','2025-12-16 19:54:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',288,7,0,'2025-12-16','02:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'210',0,4,0,'',0,'','','','','','vishal','2025-12-16 19:54:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',288,8,0,'2025-12-16','19:19:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:54:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',288,9,0,'2025-12-16','19:19:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:54:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',288,10,0,'2025-12-16','19:20:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-16 19:54:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',288,11,0,'2025-12-16','19:20:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-16 19:54:45','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,1,0,'2025-12-12','14:17:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,2,0,'2025-12-12','19:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,3,0,'2025-12-12','19:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,4,0,'2025-12-12','19:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,5,0,'2025-12-12','19:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,6,0,'2025-12-12','19:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,7,0,'2025-12-13','12:33:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,8,0,'2025-12-13','14:17:00','USG0092',0,1.00,1200,1200,'A',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,9,0,'2025-12-13','19:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,10,0,'2025-12-13','19:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,11,0,'2025-12-13','19:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,12,0,'2025-12-13','19:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,13,0,'2025-12-13','19:50:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,14,0,'2025-12-14','19:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,15,0,'2025-12-14','19:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,16,0,'2025-12-14','19:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,17,0,'2025-12-14','19:50:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,18,0,'2025-12-14','21:26:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,19,0,'2025-12-15','19:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,20,0,'2025-12-15','19:50:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,21,0,'2025-12-15','19:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,22,0,'2025-12-15','19:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,23,0,'2025-12-15','19:50:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,24,0,'2025-12-15','21:26:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,25,0,'2025-12-16','19:50:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,26,0,'2025-12-16','19:50:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,27,0,'2025-12-16','19:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'411',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,28,0,'2025-12-16','19:50:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,29,0,'2025-12-16','19:50:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,30,0,'2025-12-16','21:26:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,31,0,'2025-12-17','12:33:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',289,32,0,'2025-12-17','12:35:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-17 13:20:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,1,0,'2025-12-08','12:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,2,0,'2025-12-08','12:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,3,0,'2025-12-08','12:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,4,0,'2025-12-08','12:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,5,0,'2025-12-08','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,6,0,'2025-12-08','12:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'409',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,7,0,'2025-12-08','13:02:00','DRC0021',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,8,0,'2025-12-08','16:02:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,9,0,'2025-12-08','16:03:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,10,0,'2025-12-08','16:05:00','USG0091',0,1.00,1200,1200,'A',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,11,0,'2025-12-09','12:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,12,0,'2025-12-09','12:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,13,0,'2025-12-09','12:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,14,0,'2025-12-09','12:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,15,0,'2025-12-09','12:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,16,0,'2025-12-09','16:02:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,17,0,'2025-12-09','16:03:00','XRY0045',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,18,0,'2025-12-09','16:06:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,19,0,'2025-12-10','12:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,20,0,'2025-12-10','12:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,21,0,'2025-12-10','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,22,0,'2025-12-10','12:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,23,0,'2025-12-10','12:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,24,0,'2025-12-10','16:02:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,25,0,'2025-12-10','16:03:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,26,0,'2025-12-10','16:05:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,27,0,'2025-12-11','12:31:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,28,0,'2025-12-11','12:32:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,29,0,'2025-12-11','12:32:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,30,0,'2025-12-11','12:32:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,31,0,'2025-12-11','12:33:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,32,0,'2025-12-11','12:35:00','SURG0014',0,1.00,20000,20000,'P',0,0,20000.00,0.00,0.00,20000.00,'',0,70,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,33,0,'2025-12-11','12:35:00','SURG0015',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,34,0,'2025-12-11','20:00:00','WPRC0092',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,39,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,35,0,'2025-12-11','20:00:00','ROOM0008',0,5.00,100,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,36,0,'2025-12-11','20:02:00','DRC0020',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,70,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,37,0,'2025-12-11','20:02:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,38,0,'2025-12-12','12:30:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,39,0,'2025-12-12','12:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,40,0,'2025-12-12','12:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,41,0,'2025-12-12','12:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,42,0,'2025-12-12','12:34:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,43,0,'2025-12-12','12:43:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,44,0,'2025-12-12','14:24:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,70,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,45,0,'2025-12-13','12:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,46,0,'2025-12-13','12:30:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,47,0,'2025-12-13','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,48,0,'2025-12-13','12:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,49,0,'2025-12-13','12:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,50,0,'2025-12-13','14:23:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,51,0,'2025-12-13','14:24:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,52,0,'2025-12-13','14:25:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,53,0,'2025-12-14','12:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,54,0,'2025-12-14','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,55,0,'2025-12-14','12:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,56,0,'2025-12-14','12:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,57,0,'2025-12-14','14:23:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,58,0,'2025-12-14','21:29:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,59,0,'2025-12-15','12:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,60,0,'2025-12-15','12:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,61,0,'2025-12-15','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,62,0,'2025-12-15','12:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,63,0,'2025-12-15','12:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,64,0,'2025-12-15','21:28:00','WPRC0083',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,65,0,'2025-12-15','21:28:00','ROOM0008',0,6.00,100,600,'A',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,66,0,'2025-12-16','12:30:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,67,0,'2025-12-16','12:30:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,68,0,'2025-12-16','12:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,69,0,'2025-12-16','12:30:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,70,0,'2025-12-16','12:30:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,71,0,'2025-12-16','21:28:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,72,0,'2025-12-16','21:28:00','WPRC0083',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,73,0,'2025-12-17','12:30:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'408',0,5,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,74,0,'2025-12-17','13:07:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',290,75,0,'2025-12-17','13:26:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:05:14','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',291,1,0,'2025-12-15','13:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:27:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',291,2,0,'2025-12-15','13:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:27:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',291,3,0,'2025-12-15','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:27:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',291,4,0,'2025-12-15','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:27:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',291,5,0,'2025-12-15','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:27:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',291,6,0,'2025-12-15','13:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,6,0,'',0,'','','','','','vishal','2025-12-17 14:27:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',291,7,0,'2025-12-15','13:37:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:27:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',291,8,0,'2025-12-16','13:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:27:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',291,9,0,'2025-12-16','13:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,6,0,'',0,'','','','','','vishal','2025-12-17 14:27:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',291,10,0,'2025-12-16','13:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,6,0,'',0,'','','','','','vishal','2025-12-17 14:27:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',291,11,0,'2025-12-16','13:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:27:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',291,12,0,'2025-12-16','13:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:27:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',291,13,0,'2025-12-16','13:46:00','SURG0016',0,1.00,11800,11800,'P',0,0,11800.00,0.00,0.00,11800.00,'',0,6,0,'',0,'','','','','','vishal','2025-12-17 14:27:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',291,14,0,'2025-12-16','13:46:00','SURG0015',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,6,0,'',0,'','','','','','vishal','2025-12-17 14:27:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',291,15,0,'2025-12-17','13:37:00','WPRC0123',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:27:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',291,16,0,'2025-12-17','13:40:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','vishal','2025-12-17 14:27:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',291,17,0,'2025-12-17','13:43:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','','','vishal','2025-12-17 14:27:22','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,1,0,'2025-12-15','12:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,2,0,'2025-12-15','12:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,3,0,'2025-12-15','12:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,4,0,'2025-12-15','12:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,5,0,'2025-12-15','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,6,0,'2025-12-15','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,7,0,'2025-12-15','14:01:00','ROOM0008',0,2.00,100,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,8,0,'2025-12-15','14:12:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,9,0,'2025-12-16','12:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,10,0,'2025-12-16','12:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,11,0,'2025-12-16','12:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,12,0,'2025-12-16','12:30:00','AECO0008',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,13,0,'2025-12-16','12:30:00','ROOM0009',0,1.00,2900,2900,'P',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,14,0,'2025-12-16','14:02:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,15,0,'2025-12-16','14:11:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,16,0,'2025-12-16','14:20:00','SURG0016',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,17,0,'2025-12-16','14:21:00','SURG0015',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,18,0,'2025-12-17','14:02:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,19,0,'2025-12-17','14:12:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,20,0,'2025-12-17','14:15:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',292,21,0,'2025-12-17','14:16:00','DRC0020',0,1.00,3500,3500,'P',0,0,3500.00,0.00,0.00,3500.00,'',0,100,0,'',0,'','','','','','vishal','2025-12-17 14:48:24','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',293,1,0,'2025-12-16','18:57:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 19:16:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',293,2,0,'2025-12-16','21:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 19:16:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',293,3,0,'2025-12-16','21:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-17 19:16:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',293,4,0,'2025-12-16','21:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-17 19:16:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',293,5,0,'2025-12-16','21:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-17 19:16:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',293,6,0,'2025-12-16','21:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-17 19:16:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',293,7,0,'2025-12-17','21:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-17 19:16:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',293,8,0,'2025-12-17','21:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-17 19:16:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',294,1,0,'2025-12-17','23:16:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-18 20:28:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',294,2,0,'2025-12-17','23:16:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-18 20:28:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',294,3,0,'2025-12-17','23:16:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-18 20:28:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',294,4,0,'2025-12-17','23:16:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-18 20:28:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',294,5,0,'2025-12-17','23:16:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','vishal','2025-12-18 20:28:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',294,6,0,'2025-12-18','20:25:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-18 20:28:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',294,7,0,'2025-12-18','23:16:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','vishal','2025-12-18 20:28:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',294,8,0,'2025-12-18','23:16:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','vishal','2025-12-18 20:28:18','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,1,0,'2025-12-14','11:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,2,0,'2025-12-14','11:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,3,0,'2025-12-14','11:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'207',0,42,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,4,0,'2025-12-14','11:30:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'207',0,42,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,5,0,'2025-12-14','11:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,6,0,'2025-12-14','11:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,7,0,'2025-12-14','11:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,8,0,'2025-12-14','13:50:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,9,0,'2025-12-14','13:50:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,10,0,'2025-12-14','13:51:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,42,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,11,0,'2025-12-14','13:51:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,12,0,'2025-12-15','11:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'207',0,42,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,13,0,'2025-12-15','11:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'207',0,42,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,14,0,'2025-12-15','11:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,15,0,'2025-12-15','11:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,16,0,'2025-12-15','11:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,17,0,'2025-12-15','13:51:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,18,0,'2025-12-15','13:51:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,19,0,'2025-12-15','13:51:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,20,0,'2025-12-16','10:54:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,21,0,'2025-12-16','10:54:00','WPRC0090',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,22,0,'2025-12-16','10:55:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,23,0,'2025-12-16','11:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,24,0,'2025-12-16','11:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,25,0,'2025-12-16','11:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,26,0,'2025-12-16','11:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,27,0,'2025-12-16','11:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,28,0,'2025-12-16','18:57:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,29,0,'2025-12-17','11:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,30,0,'2025-12-17','11:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,31,0,'2025-12-17','11:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,32,0,'2025-12-17','11:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,33,0,'2025-12-17','11:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,34,0,'2025-12-17','18:55:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,35,0,'2025-12-17','18:55:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,42,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,36,0,'2025-12-17','18:56:00','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,37,0,'2025-12-18','11:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,38,0,'2025-12-18','11:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,39,0,'2025-12-18','11:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,40,0,'2025-12-18','11:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,41,0,'2025-12-18','11:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,42,0,'2025-12-18','18:55:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,43,0,'2025-12-18','18:57:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,44,0,'2025-12-18','18:58:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,66,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,45,0,'2025-12-18','19:09:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,46,0,'2025-12-19','11:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,47,0,'2025-12-19','11:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,48,0,'2025-12-19','11:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,49,0,'2025-12-19','11:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,42,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',295,50,0,'2025-12-19','13:42:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-19 14:49:10','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,1,0,'2025-12-16','09:59:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,2,0,'2025-12-16','09:59:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,3,0,'2025-12-16','09:59:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,4,0,'2025-12-16','19:22:00','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,5,0,'2025-12-16','19:26:00','WPRC0089',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,6,0,'2025-12-16','20:20:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,7,0,'2025-12-16','20:20:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,8,0,'2025-12-17','19:26:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,9,0,'2025-12-17','20:20:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,10,0,'2025-12-17','20:20:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,11,0,'2025-12-17','20:20:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,12,0,'2025-12-17','20:20:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,13,0,'2025-12-17','20:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,14,0,'2025-12-18','19:26:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,15,0,'2025-12-18','20:20:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,16,0,'2025-12-18','20:20:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,17,0,'2025-12-18','20:20:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,18,0,'2025-12-18','20:20:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,19,0,'2025-12-18','20:20:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,20,0,'2025-12-19','19:08:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',296,21,0,'2025-12-19','19:08:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,5,0,'',0,'','','','','','vishal','2025-12-19 19:24:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',297,1,0,'2025-12-19','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:42:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',297,2,0,'2025-12-19','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:42:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',297,3,0,'2025-12-19','10:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-12-19 19:42:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',297,4,0,'2025-12-19','10:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','vishal','2025-12-19 19:42:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',297,5,0,'2025-12-19','19:31:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:42:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',297,6,0,'2025-12-19','19:33:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 19:42:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',297,7,0,'2025-12-19','19:35:00','WPRC0114',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-19 19:42:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',298,1,0,'2025-12-18','19:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 20:36:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',298,2,0,'2025-12-18','19:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-19 20:36:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',298,3,0,'2025-12-18','19:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-19 20:36:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',298,4,0,'2025-12-18','19:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-19 20:36:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',298,5,0,'2025-12-18','19:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-19 20:36:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',298,6,0,'2025-12-18','20:29:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-19 20:36:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',298,7,0,'2025-12-19','19:30:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-19 20:36:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',298,8,0,'2025-12-19','19:30:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'404',0,4,0,'',0,'','','','','','vishal','2025-12-19 20:36:48','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',299,1,0,'2025-12-17','20:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,2,0,'2025-12-17','20:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,3,0,'2025-12-17','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,4,0,'2025-12-17','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,5,0,'2025-12-17','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,6,0,'2025-12-17','20:52:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,7,0,'2025-12-17','20:53:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,8,0,'2025-12-18','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,9,0,'2025-12-18','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,10,0,'2025-12-18','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,11,0,'2025-12-18','20:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,12,0,'2025-12-18','20:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,13,0,'2025-12-18','20:52:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,14,0,'2025-12-18','20:52:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,15,0,'2025-12-18','20:53:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,16,0,'2025-12-19','20:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,17,0,'2025-12-19','20:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,18,0,'2025-12-19','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,19,0,'2025-12-19','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,20,0,'2025-12-19','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,21,0,'2025-12-19','20:52:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,22,0,'2025-12-19','20:52:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,23,0,'2025-12-19','20:53:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,24,0,'2025-12-20','13:19:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,25,0,'2025-12-20','13:20:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',299,26,0,'2025-12-20','13:26:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','riya','2025-12-20 13:38:47','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,1,0,'2025-12-20','00:00:00','REG0001',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,2,0,'2025-12-20','00:00:00','REG0002',0,-1.00,250,-250,'A',0,0,-250.00,0.00,0.00,-250.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,3,0,'2025-12-20','00:00:00','ROOM0009',0,-1.00,2900,-2900,'A',0,0,-2900.00,0.00,0.00,-2900.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,4,0,'2025-12-20','00:00:00','AECO0008',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,5,0,'2025-12-20','00:00:00','CARE0001',0,-1.00,200,-200,'A',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,6,0,'2025-12-20','00:00:00','ROOM0008',0,-1.00,100,-100,'P',0,0,-100.00,0.00,0.00,-100.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,7,0,'2025-12-20','00:00:00','WPRC0089',0,-1.00,100,-100,'P',0,0,-100.00,0.00,0.00,-100.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,8,0,'2025-12-20','00:00:00','ROOM0009',0,-1.00,2900,-2900,'A',0,0,-2900.00,0.00,0.00,-2900.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,9,0,'2025-12-20','00:00:00','AECO0008',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,10,0,'2025-12-20','00:00:00','CARE0001',0,-1.00,200,-200,'A',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,11,0,'2025-12-20','00:00:00','DRC0018',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,5,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,12,0,'2025-12-20','00:00:00','DRC0019',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,5,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,13,0,'2025-12-20','00:00:00','WPRC0086',0,-1.00,1500,-1500,'P',0,0,-1500.00,0.00,0.00,-1500.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,14,0,'2025-12-20','00:00:00','ROOM0008',0,-3.00,100,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,15,0,'2025-12-20','00:00:00','WPRC0089',0,-4.00,100,-400,'P',0,0,-400.00,0.00,0.00,-400.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,16,0,'2025-12-20','00:00:00','DRC0018',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,5,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,17,0,'2025-12-20','00:00:00','DRC0019',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,5,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,18,0,'2025-12-20','00:00:00','CARE0001',0,-1.00,200,-200,'A',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,19,0,'2025-12-20','00:00:00','AECO0008',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,20,0,'2025-12-20','00:00:00','ROOM0009',0,-1.00,2900,-2900,'A',0,0,-2900.00,0.00,0.00,-2900.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,21,0,'2025-12-20','00:00:00','ROOM0008',0,-3.00,100,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,22,0,'2025-12-20','00:00:00','WPRC0086',0,-1.00,1500,-1500,'P',0,0,-1500.00,0.00,0.00,-1500.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,23,0,'2025-12-20','00:00:00','WPRC0089',0,-5.00,100,-500,'P',0,0,-500.00,0.00,0.00,-500.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,24,0,'2025-12-20','00:00:00','ROOM0008',0,-1.00,100,-100,'P',0,0,-100.00,0.00,0.00,-100.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,25,0,'2025-12-20','00:00:00','WPRC0089',0,-2.00,100,-200,'P',0,0,-200.00,0.00,0.00,-200.00,'',0,9999,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',300,26,0,'2025-12-20','00:00:00','DRC0018',0,-1.00,800,-800,'P',0,0,-800.00,0.00,0.00,-800.00,'',0,5,0,'',0,'','','','Y','N','riya','2025-12-20 13:40:33','riya','2025-12-20 13:40:33',0),(0,0,'2526','H','I',301,1,0,'2025-12-17','20:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,2,0,'2025-12-17','20:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,3,0,'2025-12-17','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,4,0,'2025-12-17','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,5,0,'2025-12-17','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,6,0,'2025-12-17','20:52:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,7,0,'2025-12-17','20:53:00','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,8,0,'2025-12-18','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,9,0,'2025-12-18','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,10,0,'2025-12-18','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,11,0,'2025-12-18','20:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,12,0,'2025-12-18','20:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,13,0,'2025-12-18','20:52:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,14,0,'2025-12-18','20:52:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,15,0,'2025-12-18','20:53:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,16,0,'2025-12-19','20:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,17,0,'2025-12-19','20:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'409',0,5,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,18,0,'2025-12-19','20:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,19,0,'2025-12-19','20:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,20,0,'2025-12-19','20:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'409',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,21,0,'2025-12-19','20:52:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,22,0,'2025-12-19','20:52:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,23,0,'2025-12-19','20:53:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,24,0,'2025-12-20','13:19:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,25,0,'2025-12-20','13:20:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',301,26,0,'2025-12-20','13:26:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','','','riya','2025-12-20 13:41:47','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,1,0,'2025-12-17','10:15:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,2,0,'2025-12-17','10:15:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,3,0,'2025-12-17','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,4,0,'2025-12-17','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,5,0,'2025-12-17','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,6,0,'2025-12-17','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,7,0,'2025-12-17','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,8,0,'2025-12-17','13:34:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,9,0,'2025-12-17','13:36:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,10,0,'2025-12-17','13:36:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,11,0,'2025-12-18','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,12,0,'2025-12-18','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,13,0,'2025-12-18','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,14,0,'2025-12-18','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'304',0,5,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,15,0,'2025-12-18','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'304',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,16,0,'2025-12-18','13:35:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,17,0,'2025-12-18','13:36:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,5,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,18,0,'2025-12-19','10:15:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,19,0,'2025-12-19','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,20,0,'2025-12-19','10:15:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,21,0,'2025-12-19','10:15:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,22,0,'2025-12-19','10:15:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'401',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,23,0,'2025-12-19','13:31:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,302,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,24,0,'2025-12-19','13:35:00','WPRC0089',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,25,0,'2025-12-20','10:15:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'401',0,5,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',302,26,0,'2025-12-20','13:36:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:09:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,1,0,'2025-12-18','09:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,2,0,'2025-12-18','09:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,3,0,'2025-12-18','09:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,4,0,'2025-12-18','09:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,5,0,'2025-12-18','09:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'408',0,3,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,6,0,'2025-12-18','09:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'408',0,3,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,7,0,'2025-12-18','11:48:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,8,0,'2025-12-18','11:53:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,9,0,'2025-12-18','11:54:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,10,0,'2025-12-18','11:56:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,11,0,'2025-12-18','11:56:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,12,0,'2025-12-18','11:57:00','WPRC0086',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,13,0,'2025-12-18','13:05:00','PKG0009',0,1.00,60000,60000,'P',0,0,60000.00,0.00,0.00,60000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,14,0,'2025-12-19','09:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,15,0,'2025-12-19','09:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,16,0,'2025-12-19','09:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,17,0,'2025-12-19','09:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,18,0,'2025-12-19','09:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,19,0,'2025-12-20','09:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,20,0,'2025-12-20','09:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,3,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,21,0,'2025-12-20','09:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,22,0,'2025-12-20','09:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,23,0,'2025-12-20','11:58:00','WPRC0114',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',303,24,0,'2025-12-20','13:13:00','SURG0015',0,1.00,15000,15000,'P',0,0,15000.00,0.00,0.00,15000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-20 14:23:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,1,0,'2025-12-16','15:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,2,0,'2025-12-16','15:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,3,0,'2025-12-16','15:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,4,0,'2025-12-16','15:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,5,0,'2025-12-16','15:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,6,0,'2025-12-16','15:30:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'207',0,42,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,7,0,'2025-12-16','19:00:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,8,0,'2025-12-16','19:00:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,9,0,'2025-12-16','19:01:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,42,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,10,0,'2025-12-17','15:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'207',0,42,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,11,0,'2025-12-17','15:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'207',0,42,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,12,0,'2025-12-17','15:30:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,13,0,'2025-12-17','15:30:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,14,0,'2025-12-17','15:30:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,15,0,'2025-12-17','19:01:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,16,0,'2025-12-18','15:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'207',0,42,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,17,0,'2025-12-18','15:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'207',0,42,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,18,0,'2025-12-18','17:42:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,19,0,'2025-12-18','17:43:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,20,0,'2025-12-18','17:43:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,21,0,'2025-12-18','19:01:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,22,0,'2025-12-19','15:30:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,23,0,'2025-12-19','15:30:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,24,0,'2025-12-19','15:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,25,0,'2025-12-19','15:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'405',0,42,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,26,0,'2025-12-19','15:30:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'405',0,42,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,27,0,'2025-12-19','20:54:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,28,0,'2025-12-20','10:44:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',304,29,0,'2025-12-20','15:30:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'405',0,42,0,'',0,'','','','','','riya','2025-12-20 18:26:16','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',305,1,0,'2025-12-20','12:04:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',305,2,0,'2025-12-20','12:04:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',305,3,0,'2025-12-20','14:30:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',305,4,0,'2025-12-20','14:30:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',305,5,0,'2025-12-20','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',305,6,0,'2025-12-20','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',305,7,0,'2025-12-20','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',305,8,0,'2025-12-20','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,8,0,'',0,'','','','','','riya','2025-12-22 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',305,9,0,'2025-12-21','12:04:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',305,10,0,'2025-12-21','14:30:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',305,11,0,'2025-12-21','14:30:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',305,12,0,'2025-12-21','14:30:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-12-22 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',305,13,0,'2025-12-21','14:30:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'412',0,4,0,'',0,'','','','','','riya','2025-12-22 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',305,14,0,'2025-12-21','14:30:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'412',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',305,15,0,'2025-12-22','12:44:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',305,16,0,'2025-12-22','12:45:00','ROOM0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 13:27:41','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',306,1,0,'2025-12-20','20:54:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:18:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',306,2,0,'2025-12-20','20:54:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:18:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',306,3,0,'2025-12-20','20:54:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:18:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',306,4,0,'2025-12-20','20:54:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:18:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',306,5,0,'2025-12-20','20:54:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:18:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',306,6,0,'2025-12-20','20:54:00','DRC0019',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'408',0,6,0,'',0,'','','','','','riya','2025-12-22 15:18:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',306,7,0,'2025-12-21','20:54:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:18:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',306,8,0,'2025-12-21','20:54:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:18:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',306,9,0,'2025-12-21','20:54:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'408',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:18:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',306,10,0,'2025-12-21','20:54:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,6,0,'',0,'','','','','','riya','2025-12-22 15:18:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',306,11,0,'2025-12-21','20:54:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'408',0,6,0,'',0,'','','','','','riya','2025-12-22 15:18:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',306,12,0,'2025-12-22','12:40:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,6,0,'',0,'','','','','','riya','2025-12-22 15:18:59','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,1,0,'2025-12-14','12:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,2,0,'2025-12-14','12:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,3,0,'2025-12-14','12:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,4,0,'2025-12-14','12:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,5,0,'2025-12-14','12:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,6,0,'2025-12-14','12:50:00','DRC0019',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'404',0,78,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,7,0,'2025-12-14','20:11:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,8,0,'2025-12-14','21:06:00','ROOM0008',0,9.00,100,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,9,0,'2025-12-14','21:06:00','WPRC0078',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,10,0,'2025-12-14','21:10:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,11,0,'2025-12-14','21:10:00','WPRC0105',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,12,0,'2025-12-15','12:50:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'407',0,78,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,13,0,'2025-12-15','12:50:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,14,0,'2025-12-15','12:50:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,15,0,'2025-12-15','12:50:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,16,0,'2025-12-15','19:32:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,17,0,'2025-12-15','20:08:00','USG0102',0,1.00,4300,4300,'A',0,0,4300.00,0.00,0.00,4300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,18,0,'2025-12-15','20:11:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,19,0,'2025-12-15','20:12:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,6,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,20,0,'2025-12-15','20:12:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,6,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,21,0,'2025-12-15','21:06:00','WPRC0099',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,22,0,'2025-12-15','21:09:00','ROOM0008',0,12.00,100,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,23,0,'2025-12-15','21:09:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,24,0,'2025-12-15','21:09:00','WPRC0097',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,78,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,25,0,'2025-12-15','21:10:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,26,0,'2025-12-15','21:10:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,27,0,'2025-12-15','21:11:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,28,0,'2025-12-16','12:50:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,29,0,'2025-12-16','12:50:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,30,0,'2025-12-16','12:50:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,31,0,'2025-12-16','12:50:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'407',0,78,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,32,0,'2025-12-16','12:50:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'407',0,78,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,33,0,'2025-12-16','19:30:00','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,34,0,'2025-12-16','19:35:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,62,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,35,0,'2025-12-16','20:12:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,36,0,'2025-12-16','21:02:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,37,0,'2025-12-16','21:10:00','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,38,0,'2025-12-16','21:10:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,39,0,'2025-12-16','21:10:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,40,0,'2025-12-16','21:11:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,78,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,41,0,'2025-12-17','12:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,42,0,'2025-12-17','12:50:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'407',0,78,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,43,0,'2025-12-17','12:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,44,0,'2025-12-17','12:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,45,0,'2025-12-17','19:31:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,46,0,'2025-12-17','19:37:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,47,0,'2025-12-17','19:37:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,38,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,48,0,'2025-12-17','19:38:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,49,0,'2025-12-17','20:47:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,50,0,'2025-12-18','12:50:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,51,0,'2025-12-18','12:50:00','DRC0018',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'407',0,78,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,52,0,'2025-12-18','12:50:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,53,0,'2025-12-18','12:50:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,54,0,'2025-12-18','19:31:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,55,0,'2025-12-18','19:38:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,56,0,'2025-12-18','19:38:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,57,0,'2025-12-18','20:47:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,58,0,'2025-12-19','10:04:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,78,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,59,0,'2025-12-19','10:04:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,60,0,'2025-12-19','12:50:00','CARE0004',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,61,0,'2025-12-19','12:50:00','CARE0003',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'407',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,62,0,'2025-12-19','12:50:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,63,0,'2025-12-19','12:50:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,64,0,'2025-12-19','13:56:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,65,0,'2025-12-19','20:46:00','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,66,0,'2025-12-19','20:48:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,67,0,'2025-12-19','20:48:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,68,0,'2025-12-20','10:03:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,69,0,'2025-12-20','10:04:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,70,0,'2025-12-20','10:05:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,62,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,71,0,'2025-12-20','10:06:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,72,0,'2025-12-20','12:50:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,73,0,'2025-12-20','12:50:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,74,0,'2025-12-20','12:50:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,75,0,'2025-12-21','10:03:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,76,0,'2025-12-21','10:04:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,77,0,'2025-12-21','12:50:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,78,0,'2025-12-21','12:50:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,79,0,'2025-12-21','12:50:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'210',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,80,0,'2025-12-21','14:05:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,81,0,'2025-12-21','14:07:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,82,0,'2025-12-21','14:15:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,83,0,'2025-12-21','14:16:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,84,0,'2025-12-22','12:50:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'210',0,78,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,85,0,'2025-12-22','14:02:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,86,0,'2025-12-22','14:06:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',307,87,0,'2025-12-22','14:16:00','DRC0020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,4,0,'',0,'','','','','','riya','2025-12-22 15:21:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,1,0,'2025-12-18','19:02:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,2,0,'2025-12-18','19:03:00','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,5,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,3,0,'2025-12-18','19:04:00','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,4,0,'2025-12-18','19:05:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,5,0,'2025-12-18','19:06:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,6,0,'2025-12-18','19:06:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,7,0,'2025-12-18','19:50:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,8,0,'2025-12-18','19:50:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,9,0,'2025-12-18','19:50:00','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'411',0,5,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,10,0,'2025-12-19','12:22:00','ROOM0008',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,11,0,'2025-12-19','19:03:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,12,0,'2025-12-19','19:03:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,13,0,'2025-12-19','19:04:00','DRC0020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,41,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,14,0,'2025-12-19','19:50:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,15,0,'2025-12-19','19:50:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,16,0,'2025-12-19','19:50:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,17,0,'2025-12-19','19:50:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'207',0,5,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,18,0,'2025-12-19','19:50:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'207',0,9999,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,19,0,'2025-12-20','12:07:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,20,0,'2025-12-20','12:08:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',308,21,0,'2025-12-20','12:09:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,5,0,'',0,'','','','','','riya','2025-12-22 16:44:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',309,1,1,'2025-12-22','10:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','N','vishal','2025-12-22 19:55:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',309,2,1,'2025-12-22','10:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','N','vishal','2025-12-22 19:55:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',309,3,1,'2025-12-22','10:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'411',0,3,0,'',0,'','','','','N','vishal','2025-12-22 19:55:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',309,4,1,'2025-12-22','18:20:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','N','vishal','2025-12-22 19:55:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',309,5,1,'2025-12-22','18:22:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','N','vishal','2025-12-22 19:55:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',309,6,1,'2025-12-22','18:23:00','WPRC0114',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','','N','vishal','2025-12-22 19:55:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',310,1,0,'2025-12-21','11:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:43:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',310,2,0,'2025-12-21','11:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:43:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',310,3,0,'2025-12-21','11:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:43:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',310,4,0,'2025-12-21','11:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:43:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',310,5,0,'2025-12-21','11:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'305',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:43:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',310,6,0,'2025-12-21','18:54:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:43:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',310,7,0,'2025-12-22','11:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'305',0,4,0,'',0,'','','','','','vishal','2025-12-22 19:43:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',311,1,0,'2025-12-22','12:19:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',311,2,0,'2025-12-22','12:19:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',311,3,0,'2025-12-22','12:19:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'311',0,3,0,'',0,'','','','','','vishal','2025-12-22 19:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',311,4,0,'2025-12-22','19:52:00','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',311,5,0,'2025-12-22','19:52:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 19:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',311,6,0,'2025-12-22','19:53:00','WPRC0114',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-22 19:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,1,0,'2025-12-19','10:30:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,2,0,'2025-12-19','10:30:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,3,0,'2025-12-19','10:30:00','WPRC0079',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,42,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,4,0,'2025-12-19','21:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,5,0,'2025-12-19','21:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,6,0,'2025-12-19','21:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,7,0,'2025-12-19','21:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,8,0,'2025-12-19','21:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,9,0,'2025-12-20','12:18:00','WPRC0090',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,10,0,'2025-12-20','12:18:00','USG0092',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,11,0,'2025-12-20','12:19:00','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,12,0,'2025-12-20','12:20:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,303,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,13,0,'2025-12-20','21:00:00','DRC0019',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'404',0,42,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,14,0,'2025-12-20','21:00:00','DRC0018',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'404',0,42,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,15,0,'2025-12-20','21:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,16,0,'2025-12-20','21:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,17,0,'2025-12-20','21:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,18,0,'2025-12-21','20:59:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,19,0,'2025-12-21','21:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,20,0,'2025-12-21','21:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,21,0,'2025-12-21','21:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'404',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,22,0,'2025-12-21','21:00:00','DRC0019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'404',0,42,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,23,0,'2025-12-22','20:58:00','DRC0018',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,42,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',312,24,0,'2025-12-22','20:59:00','DRC0020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,8,0,'',0,'','','','','','vishal','2025-12-22 21:20:44','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,1,0,'2025-12-04','01:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,2,0,'2025-12-04','01:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,3,0,'2025-12-04','01:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,4,0,'2025-12-04','01:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,5,0,'2025-12-04','01:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,6,0,'2025-12-04','01:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,7,0,'2025-12-04','01:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,8,0,'2025-12-04','17:17:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,9,0,'2025-12-04','17:18:00','ROOM0008',0,4.00,100,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,10,0,'2025-12-04','17:19:00','WPRC0093',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,11,0,'2025-12-04','17:19:00','USG0092',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,12,0,'2025-12-04','17:20:00','WPRC0097',0,1.00,2000,2000,'A',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,13,0,'2025-12-04','17:20:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,14,0,'2025-12-04','17:21:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,15,0,'2025-12-04','17:21:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,16,0,'2025-12-04','17:21:00','WPRC0089',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,17,0,'2025-12-04','17:22:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,88,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,18,0,'2025-12-04','17:23:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,174,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,19,0,'2025-12-04','19:36:00','SURG0016',0,1.00,21500,21500,'P',0,0,21500.00,0.00,0.00,21500.00,'',0,259,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,20,0,'2025-12-04','19:36:00','SURG0015',0,1.00,7050,7050,'P',0,0,7050.00,0.00,0.00,7050.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,21,0,'2025-12-05','01:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,22,0,'2025-12-05','01:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,23,0,'2025-12-05','01:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,24,0,'2025-12-05','01:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,25,0,'2025-12-05','01:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,26,0,'2025-12-05','15:49:00','WPRC0101',0,2.00,200,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,27,0,'2025-12-05','15:50:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,28,0,'2025-12-05','15:53:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,29,0,'2025-12-05','17:20:00','ROOM0008',0,7.00,100,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,30,0,'2025-12-05','17:20:00','WPRC0103',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,31,0,'2025-12-05','17:21:00','WPRC0104',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,32,0,'2025-12-05','17:21:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,33,0,'2025-12-05','17:21:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,34,0,'2025-12-05','17:21:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,35,0,'2025-12-06','01:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,36,0,'2025-12-06','01:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,37,0,'2025-12-06','01:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,38,0,'2025-12-06','01:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,39,0,'2025-12-06','01:00:00','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,40,0,'2025-12-06','11:42:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,41,0,'2025-12-06','11:43:00','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,42,0,'2025-12-06','11:43:00','WPRC0104',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,43,0,'2025-12-06','11:43:00','WPRC0093',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,44,0,'2025-12-06','11:44:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,45,0,'2025-12-06','15:50:00','WPRC0087',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,46,0,'2025-12-06','15:50:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,47,0,'2025-12-06','15:50:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,48,0,'2025-12-07','01:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,49,0,'2025-12-07','01:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,50,0,'2025-12-07','01:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,51,0,'2025-12-07','01:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,52,0,'2025-12-07','01:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,53,0,'2025-12-07','10:48:00','WPRC0104',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,54,0,'2025-12-07','10:51:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,55,0,'2025-12-07','11:43:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,56,0,'2025-12-07','11:45:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,57,0,'2025-12-07','11:45:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,58,0,'2025-12-07','11:46:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,59,0,'2025-12-07','18:45:00','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,60,0,'2025-12-08','01:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,61,0,'2025-12-08','01:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,62,0,'2025-12-08','01:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,63,0,'2025-12-08','01:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,64,0,'2025-12-08','01:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,65,0,'2025-12-08','10:48:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,66,0,'2025-12-08','10:49:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,67,0,'2025-12-08','10:49:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,68,0,'2025-12-08','10:50:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,69,0,'2025-12-08','10:52:00','DRC0020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,124,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,70,0,'2025-12-08','16:35:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,71,0,'2025-12-08','16:36:00','WPRC0094',0,2.00,2625,5250,'P',0,0,5250.00,0.00,0.00,5250.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,72,0,'2025-12-08','16:38:00','WPRC0095',0,2.00,2625,5250,'A',0,0,5250.00,0.00,0.00,5250.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,73,0,'2025-12-09','01:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,74,0,'2025-12-09','01:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,75,0,'2025-12-09','01:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,76,0,'2025-12-09','01:00:00','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,77,0,'2025-12-09','01:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,78,0,'2025-12-09','12:36:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,174,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,79,0,'2025-12-09','15:39:00','WPRC0122',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,80,0,'2025-12-09','16:32:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,81,0,'2025-12-09','16:32:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,82,0,'2025-12-09','16:33:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,83,0,'2025-12-09','16:34:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,84,0,'2025-12-09','16:35:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,85,0,'2025-12-10','01:00:00','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,86,0,'2025-12-10','01:00:00','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,87,0,'2025-12-10','01:00:00','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,88,0,'2025-12-10','01:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,89,0,'2025-12-10','01:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,90,0,'2025-12-10','12:35:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,91,0,'2025-12-10','12:35:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,92,0,'2025-12-10','18:42:00','WPRC0122',0,1.00,6000,6000,'A',0,0,6000.00,0.00,0.00,6000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,93,0,'2025-12-10','18:46:00','WPRC0087',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,94,0,'2025-12-10','18:53:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,95,0,'2025-12-11','01:00:00','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,96,0,'2025-12-11','01:00:00','AECO0008',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,97,0,'2025-12-11','01:00:00','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'209',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,98,0,'2025-12-11','01:00:00','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,99,0,'2025-12-11','01:00:00','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'209',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,100,0,'2025-12-11','18:42:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,101,0,'2025-12-11','18:46:00','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,102,0,'2025-12-11','18:48:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,103,0,'2025-12-11','18:50:00','WPRC0122',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,104,0,'2025-12-11','18:53:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,105,0,'2025-12-12','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,106,0,'2025-12-12','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,107,0,'2025-12-12','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,108,0,'2025-12-12','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,109,0,'2025-12-12','01:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,110,0,'2025-12-12','10:57:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,111,0,'2025-12-12','14:27:00','WPRC0122',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,112,0,'2025-12-12','14:30:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,113,0,'2025-12-12','14:31:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,114,0,'2025-12-13','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,115,0,'2025-12-13','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,116,0,'2025-12-13','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,117,0,'2025-12-13','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,118,0,'2025-12-13','01:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,119,0,'2025-12-13','12:16:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,120,0,'2025-12-13','14:27:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,121,0,'2025-12-13','14:28:00','WPRC0122',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,122,0,'2025-12-13','14:30:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,123,0,'2025-12-14','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,124,0,'2025-12-14','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,125,0,'2025-12-14','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,126,0,'2025-12-14','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,127,0,'2025-12-14','01:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,128,0,'2025-12-14','12:04:00','WPRC0122',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,129,0,'2025-12-14','12:17:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,130,0,'2025-12-14','14:27:00','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,131,0,'2025-12-14','14:30:00','WPRC0089',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,132,0,'2025-12-14','17:19:00','WPRC0082',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,133,0,'2025-12-15','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,134,0,'2025-12-15','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,135,0,'2025-12-15','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,136,0,'2025-12-15','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,137,0,'2025-12-15','01:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,138,0,'2025-12-15','12:11:00','ROOM0008',0,8.00,100,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,139,0,'2025-12-15','12:11:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,140,0,'2025-12-15','12:11:00','WPRC0104',0,1.00,8000,8000,'P',0,0,8000.00,0.00,0.00,8000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,141,0,'2025-12-15','12:13:00','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,142,0,'2025-12-15','12:15:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,143,0,'2025-12-15','12:17:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,144,0,'2025-12-15','12:17:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,174,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,145,0,'2025-12-15','17:19:00','WPRC0082',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,146,0,'2025-12-16','01:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,147,0,'2025-12-16','01:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,148,0,'2025-12-16','01:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,149,0,'2025-12-16','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,150,0,'2025-12-16','01:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,151,0,'2025-12-16','12:12:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,152,0,'2025-12-16','12:15:00','WPRC0089',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,153,0,'2025-12-16','12:17:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,154,0,'2025-12-16','17:19:00','WPRC0082',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,155,0,'2025-12-16','19:14:00','WPRC0122',0,1.00,6000,6000,'A',0,0,6000.00,0.00,0.00,6000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,156,0,'2025-12-17','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,157,0,'2025-12-17','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,158,0,'2025-12-17','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,159,0,'2025-12-17','01:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,160,0,'2025-12-17','01:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,161,0,'2025-12-17','17:14:00','WPRC0080',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,162,0,'2025-12-17','17:19:00','WPRC0082',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,163,0,'2025-12-17','19:04:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,164,0,'2025-12-17','19:05:00','DRC0020',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'',0,3,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,165,0,'2025-12-17','19:13:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,166,0,'2025-12-17','19:14:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,167,0,'2025-12-17','19:15:00','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,168,0,'2025-12-18','01:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,169,0,'2025-12-18','01:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,170,0,'2025-12-18','01:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,171,0,'2025-12-18','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,172,0,'2025-12-18','01:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,173,0,'2025-12-18','17:19:00','WPRC0082',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,174,0,'2025-12-18','19:04:00','DRC0020',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,175,0,'2025-12-18','19:13:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,176,0,'2025-12-18','19:14:00','WPRC0122',0,1.00,6000,6000,'A',0,0,6000.00,0.00,0.00,6000.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,177,0,'2025-12-19','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,178,0,'2025-12-19','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,179,0,'2025-12-19','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,180,0,'2025-12-19','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,181,0,'2025-12-19','01:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,182,0,'2025-12-19','12:13:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,183,0,'2025-12-19','17:19:00','WPRC0082',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,184,0,'2025-12-20','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,185,0,'2025-12-20','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,186,0,'2025-12-20','01:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,187,0,'2025-12-20','01:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,188,0,'2025-12-20','01:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,8,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,189,0,'2025-12-20','12:13:00','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,190,0,'2025-12-21','01:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,191,0,'2025-12-21','01:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,192,0,'2025-12-21','01:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,193,0,'2025-12-21','01:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,194,0,'2025-12-21','01:00:00','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,195,0,'2025-12-21','12:13:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,196,0,'2025-12-21','17:14:00','WPRC0084',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,197,0,'2025-12-21','17:19:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,198,0,'2025-12-21','17:20:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,199,0,'2025-12-22','01:00:00','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,200,0,'2025-12-22','01:00:00','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,201,0,'2025-12-22','01:00:00','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'406',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,202,0,'2025-12-22','01:00:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'406',0,4,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,203,0,'2025-12-22','17:08:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,204,0,'2025-12-22','17:19:00','ROOM0004',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,205,0,'2025-12-22','17:20:00','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,206,0,'2025-12-22','17:35:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,174,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,207,0,'2025-12-22','17:54:00','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,78,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',313,208,0,'2025-12-22','21:27:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,37,0,'',0,'','','','','','vishal','2025-12-22 21:57:17','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',314,1,0,'2025-12-21','09:33:00','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,3,0,'',0,'','','','','','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',314,2,0,'2025-12-21','09:34:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',314,3,0,'2025-12-21','14:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',314,4,0,'2025-12-21','14:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',314,5,0,'2025-12-21','14:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',314,6,0,'2025-12-21','14:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',314,7,0,'2025-12-21','14:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',314,8,0,'2025-12-21','14:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',314,9,0,'2025-12-22','09:34:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',314,10,0,'2025-12-22','09:35:00','USG0097',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',314,11,0,'2025-12-22','09:36:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',314,12,0,'2025-12-22','09:40:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',314,13,0,'2025-12-22','14:00:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',314,14,0,'2025-12-22','14:00:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'402',0,3,0,'',0,'','','','','','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',314,15,0,'2025-12-22','14:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',314,16,0,'2025-12-22','14:00:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',314,17,0,'2025-12-22','14:00:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'402',0,9999,0,'',0,'','','','','','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',314,18,0,'2025-12-23','11:17:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-12-23 11:53:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,1,0,'2025-12-19','10:27:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,2,0,'2025-12-19','10:28:00','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,3,0,'2025-12-19','15:38:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,4,0,'2025-12-19','15:38:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,5,0,'2025-12-19','15:38:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,6,0,'2025-12-19','15:38:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,7,0,'2025-12-19','15:38:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,8,0,'2025-12-19','15:38:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,9,0,'2025-12-20','09:48:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,10,0,'2025-12-20','12:01:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,11,0,'2025-12-20','12:02:00','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,12,0,'2025-12-20','12:41:00','PKG0009',0,1.00,15000,15000,'P',0,0,15000.00,0.00,0.00,15000.00,'',0,3,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,13,0,'2025-12-20','15:38:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,14,0,'2025-12-20','15:38:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,15,0,'2025-12-20','15:38:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,16,0,'2025-12-20','15:38:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,17,0,'2025-12-20','15:38:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,18,0,'2025-12-21','09:49:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,19,0,'2025-12-21','15:38:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,20,0,'2025-12-21','15:38:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,21,0,'2025-12-21','15:38:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,22,0,'2025-12-21','15:38:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,23,0,'2025-12-21','15:38:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,24,0,'2025-12-22','09:48:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,25,0,'2025-12-22','09:49:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,26,0,'2025-12-22','15:38:00','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,27,0,'2025-12-22','15:38:00','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,28,0,'2025-12-22','15:38:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'403',0,9999,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,29,0,'2025-12-22','15:38:00','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,30,0,'2025-12-22','15:38:00','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'403',0,3,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,31,0,'2025-12-23','12:39:00','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,32,0,'2025-12-23','12:40:00','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',315,33,0,'2025-12-23','12:43:00','SURG0015',0,1.00,3750,3750,'P',0,0,3750.00,0.00,0.00,3750.00,'',0,3,0,'',0,'','','','','','riya','2025-12-23 13:53:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,1,0,'2025-12-21','09:44:00','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,2,0,'2025-12-21','18:00:00','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,3,0,'2025-12-21','18:00:00','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,4,0,'2025-12-21','18:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,5,0,'2025-12-21','18:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,6,0,'2025-12-21','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,7,0,'2025-12-21','18:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,8,0,'2025-12-22','09:45:00','WPRC0105',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,9,0,'2025-12-22','09:45:00','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,10,0,'2025-12-22','17:00:00','SURG0016',0,1.00,50000,50000,'P',0,0,50000.00,0.00,0.00,50000.00,'',0,188,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,11,0,'2025-12-22','17:01:00','SURG0015',0,1.00,12500,12500,'P',0,0,12500.00,0.00,0.00,12500.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,12,0,'2025-12-22','18:00:00','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,13,0,'2025-12-22','18:00:00','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100.00,'405',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,14,0,'2025-12-22','18:00:00','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,15,0,'2025-12-22','18:00:00','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,16,0,'2025-12-22','18:00:00','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200.00,'405',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,17,0,'2025-12-23','09:45:00','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,18,0,'2025-12-23','16:59:00','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,4,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',316,19,0,'2025-12-23','16:59:00','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,188,0,'',0,'','','','','','vishal','2025-12-23 17:44:36','','0000-00-00 00:00:00',0),(0,0,'2526','H','O',1,1,0,'2025-10-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 10:04:25','janvi','2025-10-08 10:04:25',0),(0,0,'2526','H','O',2,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 10:10:20','janvi','2025-10-08 10:10:20',0),(0,0,'2526','H','O',3,1,0,'2025-10-08','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 10:15:12','janvi','2025-10-08 10:15:12',0),(0,0,'2526','H','O',3,2,0,'2025-10-08','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 10:15:12','janvi','2025-10-08 10:15:12',0),(0,0,'2526','H','O',4,1,0,'2025-10-08','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-08 10:16:17','janvi','2025-10-08 10:16:17',0),(0,0,'2526','H','O',5,1,0,'2025-10-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 10:17:33','shweta','2025-10-08 10:17:33',0),(0,0,'2526','H','O',6,1,0,'2025-10-08','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-08 10:21:28','drashti','2025-10-08 10:21:28',0),(0,0,'2526','H','O',7,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 10:22:20','shweta','2025-10-08 10:22:20',0),(0,0,'2526','H','O',8,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-08 10:22:55','janvi','2025-10-08 10:22:55',0),(0,0,'2526','H','O',9,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-08 10:24:23','drashti','2025-10-08 10:24:23',0),(0,0,'2526','H','O',10,1,0,'2025-10-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 10:25:42','janvi','2025-10-08 10:25:42',0),(0,0,'2526','H','O',11,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-08 10:25:53','drashti','2025-10-08 10:25:53',0),(0,0,'2526','H','O',12,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 10:27:21','shweta','2025-10-08 10:27:21',0),(0,0,'2526','H','O',13,1,0,'2025-10-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-08 10:27:31','janvi','2025-10-08 10:27:31',0),(0,0,'2526','H','O',14,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,0,0,'',0,'','','','Y','N','shweta','2025-10-08 10:32:24','shweta','2025-10-08 10:32:24',0),(0,0,'2526','H','O',15,1,0,'2025-10-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-08 10:34:22','drashti','2025-10-08 10:34:22',0),(0,0,'2526','H','O',16,1,0,'2025-10-08','00:00:00','XRY0019',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-08 10:51:12','manshi','2025-10-08 10:51:12',0),(0,0,'2526','H','O',17,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 10:53:29','shweta','2025-10-08 10:53:29',0),(0,0,'2526','H','O',18,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-08 10:56:01','drashti','2025-10-08 10:56:01',0),(0,0,'2526','H','O',19,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-08 10:57:19','janvi','2025-10-08 10:57:19',0),(0,0,'2526','H','O',20,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','riya','2025-10-08 11:09:02','riya','2025-10-08 11:09:02',0),(0,0,'2526','H','O',21,1,0,'2025-10-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','riya','2025-10-08 11:10:57','riya','2025-10-08 11:10:57',0),(0,0,'2526','H','O',22,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-08 11:11:55','janvi','2025-10-08 11:11:55',0),(0,0,'2526','H','O',23,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 11:14:30','shweta','2025-10-08 11:14:30',0),(0,0,'2526','H','O',24,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-08 11:17:05','shweta','2025-10-08 12:47:10',0),(0,0,'2526','H','O',25,1,0,'2025-10-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 11:19:05','shweta','2025-10-08 11:19:05',0),(0,0,'2526','H','O',26,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-08 11:19:18','janvi','2025-10-08 11:19:18',0),(0,0,'2526','H','O',27,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-08 11:22:25','manshi','2025-10-08 11:22:25',0),(0,0,'2526','H','O',28,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-08 11:25:41','drashti','2025-10-08 11:25:41',0),(0,0,'2526','H','O',29,1,0,'2025-10-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 11:31:02','shweta','2025-10-08 11:31:02',0),(0,0,'2526','H','O',30,1,0,'2025-10-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 11:32:51','janvi','2025-10-08 11:32:51',0),(0,0,'2526','H','O',31,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-08 11:33:19','drashti','2025-10-08 11:33:19',0),(0,0,'2526','H','O',32,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-08 11:40:15','janvi','2025-10-08 11:40:15',0),(0,0,'2526','H','O',33,1,0,'2025-10-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 11:41:52','janvi','2025-10-08 11:41:52',0),(0,0,'2526','H','O',34,1,0,'2025-10-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 11:42:47','shweta','2025-10-08 11:42:47',0),(0,0,'2526','H','O',35,1,0,'2025-10-08','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-08 11:43:11','manshi','2025-10-08 11:43:11',0),(0,0,'2526','H','O',36,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-08 11:43:54','drashti','2025-10-08 11:43:54',0),(0,0,'2526','H','O',37,1,0,'2025-10-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-08 11:44:04','janvi','2025-10-08 11:44:04',0),(0,0,'2526','H','O',38,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 11:46:35','shweta','2025-10-08 11:46:35',0),(0,0,'2526','H','O',39,1,0,'2025-10-08','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 11:48:12','shweta','2025-10-08 11:48:12',0),(0,0,'2526','H','O',39,2,0,'2025-10-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 11:48:12','shweta','2025-10-08 11:48:12',0),(0,0,'2526','H','O',40,1,0,'2025-10-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-08 11:49:44','drashti','2025-10-08 11:49:44',0),(0,0,'2526','H','O',41,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 11:52:13','shweta','2025-10-08 11:52:13',0),(0,0,'2526','H','O',42,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-08 11:54:03','drashti','2025-10-08 11:54:03',0),(0,0,'2526','H','O',43,1,0,'2025-10-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 11:55:12','shweta','2025-10-08 11:55:12',0),(0,0,'2526','H','O',43,2,0,'2025-10-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 11:55:12','shweta','2025-10-08 11:55:12',0),(0,0,'2526','H','O',44,1,0,'2025-10-08','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 11:58:24','janvi','2025-10-08 11:58:24',0),(0,0,'2526','H','O',45,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-08 12:00:59','drashti','2025-10-08 12:00:59',0),(0,0,'2526','H','O',46,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 12:02:31','shweta','2025-10-08 13:03:16',0),(0,0,'2526','H','O',47,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-08 12:02:50','drashti','2025-10-08 12:02:50',0),(0,0,'2526','H','O',48,1,0,'2025-10-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 12:04:53','shweta','2025-10-08 12:04:53',0),(0,0,'2526','H','O',49,1,0,'2025-10-08','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-08 12:05:36','drashti','2025-10-08 12:05:36',0),(0,0,'2526','H','O',50,1,0,'2025-10-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 12:06:15','shweta','2025-10-08 12:06:15',0),(0,0,'2526','H','O',50,2,0,'2025-10-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 12:06:15','shweta','2025-10-08 12:06:15',0),(0,0,'2526','H','O',50,3,0,'2025-10-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 12:06:15','shweta','2025-10-08 12:06:15',0),(0,0,'2526','H','O',51,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 12:08:56','shweta','2025-10-08 12:08:56',0),(0,0,'2526','H','O',52,1,0,'2025-10-08','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,0,0,'',0,'','','','Y','N','drashti','2025-10-08 12:09:44','drashti','2025-10-08 12:09:44',0),(0,0,'2526','H','O',53,1,0,'2025-10-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-08 12:09:51','manshi','2025-10-08 12:09:51',0),(0,0,'2526','H','O',54,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-08 12:16:53','shweta','2025-10-08 12:54:52',0),(0,0,'2526','H','O',55,1,0,'2025-10-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 12:23:13','shweta','2025-10-08 12:23:13',0),(0,0,'2526','H','O',55,2,0,'2025-10-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 12:23:13','shweta','2025-10-08 12:23:13',0),(0,0,'2526','H','O',55,3,0,'2025-10-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 12:23:13','shweta','2025-10-08 12:23:13',0),(0,0,'2526','H','O',56,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-08 12:24:15','janvi','2025-10-08 12:24:15',0),(0,0,'2526','H','O',57,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-08 12:26:12','drashti','2025-10-08 12:26:12',0),(0,0,'2526','H','O',58,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 12:26:23','janvi','2025-10-08 12:26:23',0),(0,0,'2526','H','O',59,1,0,'2025-10-08','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 12:27:55','shweta','2025-10-08 12:27:55',0),(0,0,'2526','H','O',60,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-08 12:31:35','janvi','2025-10-08 12:31:35',0),(0,0,'2526','H','O',61,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-08 12:32:19','drashti','2025-10-08 12:32:19',0),(0,0,'2526','H','O',62,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 12:37:32','janvi','2025-10-08 12:37:32',0),(0,0,'2526','H','O',63,1,0,'2025-10-08','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 12:44:06','janvi','2025-10-08 12:44:06',0),(0,0,'2526','H','O',64,1,0,'2025-10-08','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 12:47:10','shweta','2025-10-08 12:47:10',0),(0,0,'2526','H','O',65,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 12:49:26','shweta','2025-10-08 12:49:26',0),(0,0,'2526','H','O',66,1,0,'2025-10-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 12:50:35','shweta','2025-10-08 12:50:35',0),(0,0,'2526','H','O',66,2,0,'2025-10-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 12:50:35','shweta','2025-10-08 12:50:35',0),(0,0,'2526','H','O',67,1,0,'2025-10-08','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-08 12:52:03','drashti','2025-10-08 12:52:03',0),(0,0,'2526','H','O',68,1,0,'2025-10-08','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-10-08 12:54:52','shweta','2025-10-08 12:54:52',0),(0,0,'2526','H','O',69,1,0,'2025-10-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-08 13:01:09','shweta','2025-10-08 13:14:50',0),(0,0,'2526','H','O',70,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-10-08 13:02:31','janvi','2025-10-08 13:02:31',0),(0,0,'2526','H','O',71,1,0,'2025-10-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 13:02:32','shweta','2025-10-08 13:02:32',0),(0,0,'2526','H','O',72,1,0,'2025-10-08','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-08 13:03:16','shweta','2025-10-08 13:03:16',0),(0,0,'2526','H','O',73,1,0,'2025-10-08','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-08 13:14:50','shweta','2025-10-08 13:14:50',0),(0,0,'2526','H','O',74,1,0,'2025-10-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-08 13:15:08','drashti','2025-10-08 13:15:08',0),(0,0,'2526','H','O',75,1,0,'2025-10-08','00:00:00','CASE',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-08 13:17:03','janvi','2025-10-08 13:17:03',0),(0,0,'2526','H','O',75,2,0,'2025-10-08','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-08 13:17:03','janvi','2025-10-08 13:17:03',0),(0,0,'2526','H','O',76,1,0,'2025-10-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-08 13:19:56','drashti','2025-10-08 13:19:56',0),(0,0,'2526','H','O',77,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-08 13:23:25','priyanshi','2025-10-08 14:27:56',0),(0,0,'2526','H','O',78,1,0,'2025-10-08','00:00:00','CARP0024',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 13:26:24','janvi','2025-10-08 13:26:24',0),(0,0,'2526','H','O',79,1,0,'2025-10-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 13:35:52','janvi','2025-10-08 13:35:52',0),(0,0,'2526','H','O',79,2,0,'2025-10-08','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 13:35:52','janvi','2025-10-08 13:35:52',0),(0,0,'2526','H','O',80,1,0,'2025-10-08','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 13:49:57','shweta','2025-10-08 13:49:57',0),(0,0,'2526','H','O',81,1,0,'2025-10-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 14:19:27','shweta','2025-10-08 14:19:27',0),(0,0,'2526','H','O',81,2,0,'2025-10-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 14:19:27','shweta','2025-10-08 14:19:27',0),(0,0,'2526','H','O',82,1,0,'2025-10-08','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-08 14:27:56','priyanshi','2025-10-08 14:27:56',0),(0,0,'2526','H','O',83,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-08 14:28:44','priyanshi','2025-10-08 14:28:44',0),(0,0,'2526','H','O',84,1,0,'2025-10-08','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','priyanshi','2025-10-08 15:48:02','priyanshi','2025-10-08 15:48:02',0),(0,0,'2526','H','O',84,2,0,'2025-10-08','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','priyanshi','2025-10-08 15:48:02','priyanshi','2025-10-08 15:48:02',0),(0,0,'2526','H','O',84,3,0,'2025-10-08','00:00:00','XRY0134',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-10-08 15:48:02','priyanshi','2025-10-08 15:48:02',0),(0,0,'2526','H','O',84,4,0,'2025-10-08','00:00:00','XRY0184',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-10-08 15:48:02','priyanshi','2025-10-08 15:48:02',0),(0,0,'2526','H','O',85,1,0,'2025-10-08','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','priyanshi','2025-10-08 15:48:39','priyanshi','2025-10-08 15:48:39',0),(0,0,'2526','H','O',85,2,0,'2025-10-08','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','priyanshi','2025-10-08 15:48:39','priyanshi','2025-10-08 15:48:39',0),(0,0,'2526','H','O',85,3,0,'2025-10-08','00:00:00','WPRC0046',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,6,0,'',0,'','','','Y','N','priyanshi','2025-10-08 15:48:39','priyanshi','2025-10-08 15:48:39',0),(0,0,'2526','H','O',85,4,0,'2025-10-08','00:00:00','XRY0353',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-10-08 15:48:39','priyanshi','2025-10-08 15:48:39',0),(0,0,'2526','H','O',86,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-10-08 15:51:01','priyanshi','2025-10-08 15:51:01',0),(0,0,'2526','H','O',87,1,0,'2025-10-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 16:42:55','shweta','2025-10-08 16:42:55',0),(0,0,'2526','H','O',88,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 16:51:37','shweta','2025-10-08 16:51:37',0),(0,0,'2526','H','O',89,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 17:01:23','shweta','2025-10-08 17:01:23',0),(0,0,'2526','H','O',90,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-08 17:05:38','janvi','2025-10-08 17:05:38',0),(0,0,'2526','H','O',91,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 17:07:09','shweta','2025-10-08 17:07:09',0),(0,0,'2526','H','O',92,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 17:08:06','shweta','2025-10-08 17:08:06',0),(0,0,'2526','H','O',93,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 17:12:07','shweta','2025-10-08 17:12:07',0),(0,0,'2526','H','O',94,1,0,'2025-10-08','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 17:15:27','shweta','2025-10-08 17:15:27',0),(0,0,'2526','H','O',95,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-08 17:16:34','shweta','2025-10-08 17:16:34',0),(0,0,'2526','H','O',96,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 17:17:11','janvi','2025-10-08 17:17:11',0),(0,0,'2526','H','O',97,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-08 17:20:35','shweta','2025-10-08 17:20:35',0),(0,0,'2526','H','O',98,1,0,'2025-10-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 17:26:32','shweta','2025-10-08 17:26:32',0),(0,0,'2526','H','O',99,1,0,'2025-10-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 17:27:00','shweta','2025-10-08 17:27:00',0),(0,0,'2526','H','O',100,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 17:28:39','shweta','2025-10-08 17:28:39',0),(0,0,'2526','H','O',101,1,0,'2025-10-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 17:29:44','shweta','2025-10-08 17:29:44',0),(0,0,'2526','H','O',101,2,0,'2025-10-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 17:29:44','shweta','2025-10-08 17:29:44',0),(0,0,'2526','H','O',101,3,0,'2025-10-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 17:29:44','shweta','2025-10-08 17:29:44',0),(0,0,'2526','H','O',102,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 17:30:30','shweta','2025-10-08 17:30:30',0),(0,0,'2526','H','O',103,1,0,'2025-10-08','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-08 17:32:35','janvi','2025-10-08 17:32:35',0),(0,0,'2526','H','O',104,1,0,'2025-10-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 17:37:08','shweta','2025-10-08 17:37:08',0),(0,0,'2526','H','O',105,1,0,'2025-10-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 17:39:08','shweta','2025-10-08 17:39:08',0),(0,0,'2526','H','O',106,1,0,'2025-10-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-08 17:39:26','shweta','2025-10-08 19:55:07',0),(0,0,'2526','H','O',107,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 17:42:24','shweta','2025-10-08 17:42:24',0),(0,0,'2526','H','O',108,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 17:43:35','shweta','2025-10-08 17:43:35',0),(0,0,'2526','H','O',109,1,0,'2025-10-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-08 17:45:45','urvashi','2025-10-08 17:45:45',0),(0,0,'2526','H','O',110,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 17:46:41','shweta','2025-10-08 17:46:41',0),(0,0,'2526','H','O',111,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-08 17:50:14','janvi','2025-10-08 17:50:14',0),(0,0,'2526','H','O',112,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-08 17:54:36','urvashi','2025-10-08 17:54:36',0),(0,0,'2526','H','O',113,1,0,'2025-10-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 17:55:47','shweta','2025-10-08 17:55:47',0),(0,0,'2526','H','O',114,1,0,'2025-10-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 17:58:15','shweta','2025-10-08 17:58:15',0),(0,0,'2526','H','O',115,1,0,'2025-10-08','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-08 18:06:25','urvashi','2025-10-08 18:06:25',0),(0,0,'2526','H','O',116,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-08 18:06:34','manshi','2025-10-08 18:06:34',0),(0,0,'2526','H','O',117,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-08 18:07:50','urvashi','2025-10-08 18:07:50',0),(0,0,'2526','H','O',118,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-08 18:11:47','janvi','2025-10-08 18:11:47',0),(0,0,'2526','H','O',118,2,0,'2025-10-08','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-08 18:11:47','janvi','2025-10-08 18:11:47',0),(0,0,'2526','H','O',119,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-08 18:12:16','janvi','2025-10-08 18:12:16',0),(0,0,'2526','H','O',119,2,0,'2025-10-08','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-08 18:12:16','janvi','2025-10-08 18:12:16',0),(0,0,'2526','H','O',120,1,0,'2025-10-08','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 18:13:29','shweta','2025-10-08 18:13:29',0),(0,0,'2526','H','O',121,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-08 18:15:14','urvashi','2025-10-08 18:15:14',0),(0,0,'2526','H','O',122,1,0,'2025-10-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-08 18:15:23','manshi','2025-10-08 18:15:23',0),(0,0,'2526','H','O',123,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 18:16:18','janvi','2025-10-08 18:16:18',0),(0,0,'2526','H','O',124,1,0,'2025-10-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 18:16:22','shweta','2025-10-08 18:16:22',0),(0,0,'2526','H','O',124,2,0,'2025-10-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 18:16:22','shweta','2025-10-08 18:16:22',0),(0,0,'2526','H','O',124,3,0,'2025-10-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 18:16:22','shweta','2025-10-08 18:16:22',0),(0,0,'2526','H','O',125,1,0,'2025-10-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-08 18:24:28','urvashi','2025-10-08 18:24:28',0),(0,0,'2526','H','O',126,1,0,'2025-10-08','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 18:26:09','janvi','2025-10-08 18:26:09',0),(0,0,'2526','H','O',127,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-08 18:29:43','janvi','2025-10-08 18:29:43',0),(0,0,'2526','H','O',128,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 18:30:11','shweta','2025-10-08 18:30:11',0),(0,0,'2526','H','O',129,1,0,'2025-10-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-08 18:33:54','manshi','2025-10-08 18:33:54',0),(0,0,'2526','H','O',130,1,0,'2025-10-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 18:35:11','shweta','2025-10-08 18:35:11',0),(0,0,'2526','H','O',130,2,0,'2025-10-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 18:35:11','shweta','2025-10-08 18:35:11',0),(0,0,'2526','H','O',130,3,0,'2025-10-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 18:35:11','shweta','2025-10-08 18:35:11',0),(0,0,'2526','H','O',131,1,0,'2025-10-08','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 18:40:11','shweta','2025-10-08 18:40:11',0),(0,0,'2526','H','O',132,1,0,'2025-10-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-08 18:42:49','shweta','2025-10-08 18:42:49',0),(0,0,'2526','H','O',133,1,0,'2025-10-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 18:43:52','janvi','2025-10-08 18:43:52',0),(0,0,'2526','H','O',134,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-08 18:44:11','urvashi','2025-10-08 18:44:11',0),(0,0,'2526','H','O',135,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-08 18:46:56','janvi','2025-10-08 18:46:56',0),(0,0,'2526','H','O',136,1,0,'2025-10-08','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-08 18:47:58','urvashi','2025-10-08 18:47:58',0),(0,0,'2526','H','O',137,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-08 18:48:55','shweta','2025-10-08 18:48:55',0),(0,0,'2526','H','O',138,1,0,'2025-10-08','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 18:50:46','janvi','2025-10-08 18:50:46',0),(0,0,'2526','H','O',139,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-08 18:52:21','janvi','2025-10-08 18:52:21',0),(0,0,'2526','H','O',140,1,0,'2025-10-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 18:54:31','shweta','2025-10-08 18:54:31',0),(0,0,'2526','H','O',140,2,0,'2025-10-08','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 18:54:31','shweta','2025-10-08 18:54:31',0),(0,0,'2526','H','O',141,1,0,'2025-10-08','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-08 18:56:49','janvi','2025-10-08 18:56:49',0),(0,0,'2526','H','O',142,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-08 18:57:22','urvashi','2025-10-08 18:57:22',0),(0,0,'2526','H','O',143,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-08 18:57:42','urvashi','2025-10-08 18:57:42',0),(0,0,'2526','H','O',144,1,0,'2025-10-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 18:58:01','shweta','2025-10-08 18:58:01',0),(0,0,'2526','H','O',144,2,0,'2025-10-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-08 18:58:01','shweta','2025-10-08 18:58:01',0),(0,0,'2526','H','O',145,1,0,'2025-10-08','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 19:02:48','shweta','2025-10-08 19:02:48',0),(0,0,'2526','H','O',146,1,0,'2025-10-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-08 19:08:08','manshi','2025-10-08 19:08:08',0),(0,0,'2526','H','O',147,1,0,'2025-10-08','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 19:08:47','shweta','2025-10-08 19:08:47',0),(0,0,'2526','H','O',148,1,0,'2025-10-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-08 19:14:36','urvashi','2025-10-08 19:14:36',0),(0,0,'2526','H','O',149,1,0,'2025-10-08','00:00:00','XRY0157',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-08 19:16:00','manshi','2025-10-08 19:16:00',0),(0,0,'2526','H','O',150,1,0,'2025-10-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-08 19:17:26','urvashi','2025-10-08 19:17:26',0),(0,0,'2526','H','O',151,1,0,'2025-10-08','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-08 19:18:12','janvi','2025-10-08 19:18:12',0),(0,0,'2526','H','O',152,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-08 19:18:29','manshi','2025-10-08 19:18:29',0),(0,0,'2526','H','O',153,1,0,'2025-10-08','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-08 19:21:20','janvi','2025-10-08 19:21:20',0),(0,0,'2526','H','O',154,1,0,'2025-10-08','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-08 19:33:19','janvi','2025-10-08 19:33:19',0),(0,0,'2526','H','O',155,1,0,'2025-10-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-08 19:35:58','urvashi','2025-10-08 19:35:58',0),(0,0,'2526','H','O',156,1,0,'2025-10-08','00:00:00','WPRC0046',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-08 19:37:23','manshi','2025-10-08 19:37:23',0),(0,0,'2526','H','O',157,1,0,'2025-10-08','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-08 19:43:36','urvashi','2025-10-08 19:43:36',0),(0,0,'2526','H','O',158,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-08 19:46:41','manshi','2025-10-08 19:46:41',0),(0,0,'2526','H','O',159,1,0,'2025-10-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-08 19:52:34','urvashi','2025-10-08 19:52:34',0),(0,0,'2526','H','O',160,1,0,'2025-10-08','00:00:00','CASE',0,-1.00,900,-900,'A',0,0,-900.00,0.00,0.00,-900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 19:55:07','shweta','2025-10-08 19:55:07',0),(0,0,'2526','H','O',161,1,0,'2025-10-08','00:00:00','XRY0151',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-08 19:56:06','manshi','2025-10-08 19:56:06',0),(0,0,'2526','H','O',162,1,0,'2025-10-08','00:00:00','CASE',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 20:00:08','shweta','2025-10-08 20:00:08',0),(0,0,'2526','H','O',163,1,0,'2025-10-08','00:00:00','XRY0151',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-08 20:00:57','manshi','2025-10-08 20:00:57',0),(0,0,'2526','H','O',164,1,0,'2025-10-08','00:00:00','WPRC0046',0,1.00,7000,7000,'P',0,0,7000.00,0.00,0.00,7000.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-08 20:08:25','manshi','2025-10-08 20:08:25',0),(0,0,'2526','H','O',165,1,0,'2025-10-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-08 20:11:19','shweta','2025-10-08 20:11:19',0),(0,0,'2526','H','O',166,1,0,'2025-10-09','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-09 09:02:39','shweta','2025-10-09 09:02:39',0),(0,0,'2526','H','O',167,1,0,'2025-10-09','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-09 09:05:56','shweta','2025-10-09 09:05:56',0),(0,0,'2526','H','O',168,1,0,'2025-10-09','00:00:00','SURG0005',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 09:08:50','shweta','2025-10-09 09:08:50',0),(0,0,'2526','H','O',168,2,0,'2025-10-09','00:00:00','WPRC0046',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 09:08:50','shweta','2025-10-09 09:08:50',0),(0,0,'2526','H','O',169,1,0,'2025-10-09','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-09 09:12:55','shweta','2025-10-09 09:12:55',0),(0,0,'2526','H','O',169,2,0,'2025-10-09','00:00:00','OPWD0012',0,6.00,100,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-09 09:12:55','shweta','2025-10-09 09:12:55',0),(0,0,'2526','H','O',169,3,0,'2025-10-09','00:00:00','WPRC0049',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 09:12:55','shweta','2025-10-09 09:12:55',0),(0,0,'2526','H','O',169,4,0,'2025-10-09','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 09:12:55','shweta','2025-10-09 09:12:55',0),(0,0,'2526','H','O',170,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-09 09:28:54','urvashi','2025-10-09 10:58:33',0),(0,0,'2526','H','O',171,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 09:44:17','shweta','2025-10-09 09:44:17',0),(0,0,'2526','H','O',172,1,0,'2025-10-09','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 09:48:17','janvi','2025-10-09 09:48:17',0),(0,0,'2526','H','O',173,1,0,'2025-10-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 09:48:31','shweta','2025-10-09 09:48:31',0),(0,0,'2526','H','O',174,1,0,'2025-10-09','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 10:11:59','janvi','2025-10-09 10:11:59',0),(0,0,'2526','H','O',175,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-09 10:18:30','shweta','2025-10-09 10:18:30',0),(0,0,'2526','H','O',176,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-10-09 10:27:58','shweta','2025-10-09 10:27:58',0),(0,0,'2526','H','O',177,1,0,'2025-10-09','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 10:34:36','janvi','2025-10-09 10:34:36',0),(0,0,'2526','H','O',178,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 10:35:26','shweta','2025-10-09 10:35:26',0),(0,0,'2526','H','O',179,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 10:36:51','shweta','2025-10-09 10:36:51',0),(0,0,'2526','H','O',180,1,0,'2025-10-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 10:39:25','shweta','2025-10-09 10:39:25',0),(0,0,'2526','H','O',181,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 10:40:35','urvashi','2025-10-09 10:40:35',0),(0,0,'2526','H','O',182,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 10:43:09','shweta','2025-10-09 10:43:09',0),(0,0,'2526','H','O',183,1,0,'2025-10-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 10:44:57','shweta','2025-10-09 10:44:57',0),(0,0,'2526','H','O',184,1,0,'2025-10-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 10:47:29','urvashi','2025-10-09 10:47:29',0),(0,0,'2526','H','O',185,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-09 10:48:56','manshi','2025-10-09 10:48:56',0),(0,0,'2526','H','O',186,1,0,'2025-10-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 10:50:44','shweta','2025-10-09 10:50:44',0),(0,0,'2526','H','O',187,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 10:52:33','urvashi','2025-10-09 10:52:33',0),(0,0,'2526','H','O',188,1,0,'2025-10-09','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 10:53:11','shweta','2025-10-09 10:53:11',0),(0,0,'2526','H','O',189,1,0,'2025-10-09','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 10:53:42','janvi','2025-10-09 10:53:42',0),(0,0,'2526','H','O',190,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 10:54:03','janvi','2025-10-09 10:54:03',0),(0,0,'2526','H','O',191,1,0,'2025-10-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 10:55:19','shweta','2025-10-09 10:55:19',0),(0,0,'2526','H','O',192,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 10:58:07','shweta','2025-10-09 10:58:07',0),(0,0,'2526','H','O',193,1,0,'2025-10-09','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 10:58:33','urvashi','2025-10-09 10:58:33',0),(0,0,'2526','H','O',194,1,0,'2025-10-09','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 10:59:34','shweta','2025-10-09 10:59:34',0),(0,0,'2526','H','O',195,1,0,'2025-10-09','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 11:01:51','urvashi','2025-10-09 11:01:51',0),(0,0,'2526','H','O',196,1,0,'2025-10-09','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 11:02:48','urvashi','2025-10-09 11:02:48',0),(0,0,'2526','H','O',196,2,0,'2025-10-09','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-09 11:02:48','urvashi','2025-10-09 11:02:48',0),(0,0,'2526','H','O',196,3,0,'2025-10-09','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-09 11:02:48','urvashi','2025-10-09 11:02:48',0),(0,0,'2526','H','O',196,4,0,'2025-10-09','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 11:02:48','urvashi','2025-10-09 11:02:48',0),(0,0,'2526','H','O',197,1,0,'2025-10-09','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 11:03:25','shweta','2025-10-09 11:03:25',0),(0,0,'2526','H','O',197,2,0,'2025-10-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 11:03:25','shweta','2025-10-09 11:03:25',0),(0,0,'2526','H','O',198,1,0,'2025-10-09','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-09 11:04:14','janvi','2025-10-09 11:04:14',0),(0,0,'2526','H','O',198,2,0,'2025-10-09','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-09 11:04:14','janvi','2025-10-09 11:04:14',0),(0,0,'2526','H','O',198,3,0,'2025-10-09','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-09 11:04:14','janvi','2025-10-09 11:04:14',0),(0,0,'2526','H','O',198,4,0,'2025-10-09','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-09 11:04:14','janvi','2025-10-09 11:04:14',0),(0,0,'2526','H','O',198,5,0,'2025-10-09','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-09 11:04:14','janvi','2025-10-09 11:04:14',0),(0,0,'2526','H','O',199,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 11:07:30','urvashi','2025-10-09 11:07:30',0),(0,0,'2526','H','O',200,1,0,'2025-10-09','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 11:10:17','janvi','2025-10-09 11:10:17',0),(0,0,'2526','H','O',201,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-09 11:12:57','urvashi','2025-10-09 11:12:57',0),(0,0,'2526','H','O',202,1,0,'2025-10-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 11:14:09','urvashi','2025-10-09 11:14:09',0),(0,0,'2526','H','O',203,1,0,'2025-10-09','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-09 11:19:35','janvi','2025-10-09 11:19:35',0),(0,0,'2526','H','O',204,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 11:21:55','shweta','2025-10-09 11:21:55',0),(0,0,'2526','H','O',205,1,0,'2025-10-09','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-09 11:22:11','urvashi','2025-10-09 11:22:11',0),(0,0,'2526','H','O',206,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 11:25:29','shweta','2025-10-09 11:25:29',0),(0,0,'2526','H','O',207,1,0,'2025-10-09','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-09 11:28:03','manshi','2025-10-09 11:28:03',0),(0,0,'2526','H','O',207,2,0,'2025-10-09','00:00:00','XRY0308',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-09 11:28:03','manshi','2025-10-09 11:28:03',0),(0,0,'2526','H','O',208,1,0,'2025-10-09','00:00:00','LAB0817',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-09 11:30:46','urvashi','2025-10-09 11:30:46',0),(0,0,'2526','H','O',209,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-09 11:34:50','janvi','2025-10-09 11:34:50',0),(0,0,'2526','H','O',210,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 11:37:38','shweta','2025-10-09 11:37:38',0),(0,0,'2526','H','O',211,1,0,'2025-10-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 11:40:02','urvashi','2025-10-09 11:40:02',0),(0,0,'2526','H','O',212,1,0,'2025-10-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 11:43:49','shweta','2025-10-09 11:43:49',0),(0,0,'2526','H','O',213,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-09 11:44:52','janvi','2025-10-09 11:44:52',0),(0,0,'2526','H','O',214,1,0,'2025-10-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 11:45:41','shweta','2025-10-09 11:45:41',0),(0,0,'2526','H','O',214,2,0,'2025-10-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 11:45:41','shweta','2025-10-09 11:45:41',0),(0,0,'2526','H','O',214,3,0,'2025-10-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 11:45:41','shweta','2025-10-09 11:45:41',0),(0,0,'2526','H','O',215,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 11:46:32','shweta','2025-10-09 11:46:32',0),(0,0,'2526','H','O',216,1,0,'2025-10-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 11:46:44','urvashi','2025-10-09 11:46:44',0),(0,0,'2526','H','O',217,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 11:50:36','shweta','2025-10-09 11:50:36',0),(0,0,'2526','H','O',218,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 11:53:08','shweta','2025-10-09 11:53:08',0),(0,0,'2526','H','O',219,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 11:56:03','urvashi','2025-10-09 11:56:03',0),(0,0,'2526','H','O',220,1,0,'2025-10-09','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-09 11:57:49','janvi','2025-10-09 11:57:49',0),(0,0,'2526','H','O',221,1,0,'2025-10-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 12:02:55','shweta','2025-10-09 12:02:55',0),(0,0,'2526','H','O',221,2,0,'2025-10-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 12:02:55','shweta','2025-10-09 12:02:55',0),(0,0,'2526','H','O',221,3,0,'2025-10-09','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 12:02:55','shweta','2025-10-09 12:02:55',0),(0,0,'2526','H','O',221,4,0,'2025-10-09','00:00:00','NEU10019',0,1.00,1800,1800,'P',0,0,1800.00,0.00,0.00,1800.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 12:02:55','shweta','2025-10-09 12:02:55',0),(0,0,'2526','H','O',222,1,0,'2025-10-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 12:04:58','urvashi','2025-10-09 12:04:58',0),(0,0,'2526','H','O',223,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 12:07:59','shweta','2025-10-09 12:07:59',0),(0,0,'2526','H','O',224,1,0,'2025-10-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 12:09:21','shweta','2025-10-09 12:09:21',0),(0,0,'2526','H','O',224,2,0,'2025-10-09','00:00:00','NEU10020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 12:09:21','shweta','2025-10-09 12:09:21',0),(0,0,'2526','H','O',225,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 12:13:03','shweta','2025-10-09 12:13:03',0),(0,0,'2526','H','O',226,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-09 12:17:10','janvi','2025-10-09 12:17:10',0),(0,0,'2526','H','O',227,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-09 12:18:36','manshi','2025-10-09 12:18:36',0),(0,0,'2526','H','O',228,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 12:20:05','shweta','2025-10-09 12:20:05',0),(0,0,'2526','H','O',229,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 12:23:10','urvashi','2025-10-09 12:23:10',0),(0,0,'2526','H','O',230,1,0,'2025-10-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 12:28:01','shweta','2025-10-09 12:28:01',0),(0,0,'2526','H','O',230,2,0,'2025-10-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 12:28:01','shweta','2025-10-09 12:28:01',0),(0,0,'2526','H','O',230,3,0,'2025-10-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 12:28:01','shweta','2025-10-09 12:28:01',0),(0,0,'2526','H','O',231,1,0,'2025-10-09','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 12:31:42','janvi','2025-10-09 12:31:42',0),(0,0,'2526','H','O',232,1,0,'2025-10-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 12:43:43','urvashi','2025-10-09 12:43:43',0),(0,0,'2526','H','O',233,1,0,'2025-10-09','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 12:46:12','janvi','2025-10-09 12:46:12',0),(0,0,'2526','H','O',234,1,0,'2025-10-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 12:54:57','shweta','2025-10-09 12:54:57',0),(0,0,'2526','H','O',235,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-09 13:03:05','janvi','2025-10-09 13:03:05',0),(0,0,'2526','H','O',236,1,0,'2025-10-09','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 13:07:00','janvi','2025-10-09 13:42:46',0),(0,0,'2526','H','O',237,1,0,'2025-10-09','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 13:42:46','janvi','2025-10-09 13:42:46',0),(0,0,'2526','H','O',238,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 13:43:50','shweta','2025-10-09 13:43:50',0),(0,0,'2526','H','O',239,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 13:46:53','shweta','2025-10-09 13:46:53',0),(0,0,'2526','H','O',240,1,0,'2025-10-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 13:54:15','shweta','2025-10-09 13:54:15',0),(0,0,'2526','H','O',240,2,0,'2025-10-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 13:54:15','shweta','2025-10-09 13:54:15',0),(0,0,'2526','H','O',241,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-09 16:29:52','janvi','2025-10-09 18:05:36',0),(0,0,'2526','H','O',242,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 16:42:13','shweta','2025-10-09 16:42:13',0),(0,0,'2526','H','O',243,1,0,'2025-10-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 16:42:17','shweta','2025-10-09 16:42:17',0),(0,0,'2526','H','O',244,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 16:45:49','shweta','2025-10-09 16:45:49',0),(0,0,'2526','H','O',245,1,0,'2025-10-09','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 16:54:46','shweta','2025-10-09 16:54:46',0),(0,0,'2526','H','O',246,1,0,'2025-10-09','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-09 16:55:07','shweta','2025-10-09 16:55:07',0),(0,0,'2526','H','O',247,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 17:02:02','shweta','2025-10-09 17:02:02',0),(0,0,'2526','H','O',248,1,0,'2025-10-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 17:11:47','shweta','2025-10-09 17:11:47',0),(0,0,'2526','H','O',249,1,0,'2025-10-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 17:16:02','shweta','2025-10-09 17:16:02',0),(0,0,'2526','H','O',250,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 17:19:50','shweta','2025-10-09 17:19:50',0),(0,0,'2526','H','O',251,1,0,'2025-10-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 17:19:54','shweta','2025-10-09 17:19:54',0),(0,0,'2526','H','O',251,2,0,'2025-10-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 17:19:54','shweta','2025-10-09 17:19:54',0),(0,0,'2526','H','O',251,3,0,'2025-10-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 17:19:54','shweta','2025-10-09 17:19:54',0),(0,0,'2526','H','O',252,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 17:24:27','shweta','2025-10-09 17:24:27',0),(0,0,'2526','H','O',253,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 17:28:14','janvi','2025-10-09 17:28:14',0),(0,0,'2526','H','O',254,1,0,'2025-10-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 17:29:13','shweta','2025-10-09 17:29:13',0),(0,0,'2526','H','O',255,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 17:33:16','shweta','2025-10-09 17:33:16',0),(0,0,'2526','H','O',256,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 17:43:17','shweta','2025-10-09 17:43:17',0),(0,0,'2526','H','O',257,1,0,'2025-10-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 17:50:37','shweta','2025-10-09 17:50:37',0),(0,0,'2526','H','O',257,2,0,'2025-10-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 17:50:37','shweta','2025-10-09 17:50:37',0),(0,0,'2526','H','O',257,3,0,'2025-10-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 17:50:37','shweta','2025-10-09 17:50:37',0),(0,0,'2526','H','O',258,1,0,'2025-10-09','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-09 17:50:55','janvi','2025-10-09 17:50:55',0),(0,0,'2526','H','O',259,1,0,'2025-10-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-09 17:51:58','shweta','2025-10-09 17:51:58',0),(0,0,'2526','H','O',260,1,0,'2025-10-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 17:56:12','shweta','2025-10-09 17:56:12',0),(0,0,'2526','H','O',260,2,0,'2025-10-09','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 17:56:12','shweta','2025-10-09 17:56:12',0),(0,0,'2526','H','O',261,1,0,'2025-10-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 17:56:56','shweta','2025-10-09 17:56:56',0),(0,0,'2526','H','O',262,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 18:01:21','urvashi','2025-10-09 18:01:21',0),(0,0,'2526','H','O',263,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 18:02:23','shweta','2025-10-09 18:02:23',0),(0,0,'2526','H','O',264,1,0,'2025-10-09','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 18:04:26','janvi','2025-10-09 18:04:26',0),(0,0,'2526','H','O',265,1,0,'2025-10-09','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 18:05:36','janvi','2025-10-09 18:05:36',0),(0,0,'2526','H','O',266,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 18:06:07','shweta','2025-10-09 18:57:59',0),(0,0,'2526','H','O',267,1,0,'2025-10-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 18:06:18','urvashi','2025-10-09 18:06:18',0),(0,0,'2526','H','O',268,1,0,'2025-10-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 18:07:51','shweta','2025-10-09 18:58:53',0),(0,0,'2526','H','O',269,1,0,'2025-10-09','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-09 18:12:09','urvashi','2025-10-09 18:12:09',0),(0,0,'2526','H','O',270,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 18:12:21','janvi','2025-10-09 18:12:21',0),(0,0,'2526','H','O',271,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-09 18:13:10','shweta','2025-10-09 18:13:10',0),(0,0,'2526','H','O',272,1,0,'2025-10-09','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-09 18:15:14','urvashi','2025-10-09 18:15:14',0),(0,0,'2526','H','O',273,1,0,'2025-10-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 18:16:47','shweta','2025-10-09 18:16:47',0),(0,0,'2526','H','O',273,2,0,'2025-10-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 18:16:47','shweta','2025-10-09 18:16:47',0),(0,0,'2526','H','O',273,3,0,'2025-10-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 18:16:47','shweta','2025-10-09 18:16:47',0),(0,0,'2526','H','O',274,1,0,'2025-10-09','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-09 18:18:44','janvi','2025-10-09 18:18:44',0),(0,0,'2526','H','O',275,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-09 18:24:16','janvi','2025-10-09 18:24:16',0),(0,0,'2526','H','O',276,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 18:24:43','shweta','2025-10-09 18:24:43',0),(0,0,'2526','H','O',277,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 18:29:23','urvashi','2025-10-09 18:29:23',0),(0,0,'2526','H','O',278,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 18:32:56','urvashi','2025-10-09 18:32:56',0),(0,0,'2526','H','O',279,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-09 18:34:20','janvi','2025-10-09 18:34:20',0),(0,0,'2526','H','O',280,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 18:34:44','urvashi','2025-10-09 18:34:44',0),(0,0,'2526','H','O',281,1,0,'2025-10-09','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-09 18:38:49','janvi','2025-10-09 18:38:49',0),(0,0,'2526','H','O',281,2,0,'2025-10-09','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-09 18:38:49','janvi','2025-10-09 18:38:49',0),(0,0,'2526','H','O',282,1,0,'2025-10-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 18:48:49','urvashi','2025-10-09 18:48:49',0),(0,0,'2526','H','O',283,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-09 18:49:18','janvi','2025-10-09 18:49:18',0),(0,0,'2526','H','O',284,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 18:51:03','urvashi','2025-10-09 18:51:03',0),(0,0,'2526','H','O',285,1,0,'2025-10-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 18:57:03','urvashi','2025-10-09 18:57:03',0),(0,0,'2526','H','O',286,1,0,'2025-10-09','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 18:57:59','shweta','2025-10-09 18:57:59',0),(0,0,'2526','H','O',287,1,0,'2025-10-09','00:00:00','CASE',0,-1.00,900,-900,'A',0,0,-900.00,0.00,0.00,-900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 18:58:53','shweta','2025-10-09 18:58:53',0),(0,0,'2526','H','O',288,1,0,'2025-10-09','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 19:00:10','janvi','2025-10-09 19:00:10',0),(0,0,'2526','H','O',289,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-09 19:01:17','janvi','2025-10-09 19:01:17',0),(0,0,'2526','H','O',290,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-09 19:01:37','urvashi','2025-10-09 19:01:37',0),(0,0,'2526','H','O',291,1,0,'2025-10-09','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 19:02:13','janvi','2025-10-09 19:02:13',0),(0,0,'2526','H','O',292,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 19:11:55','urvashi','2025-10-09 19:11:55',0),(0,0,'2526','H','O',293,1,0,'2025-10-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-09 19:13:12','shweta','2025-10-09 19:13:12',0),(0,0,'2526','H','O',294,1,0,'2025-10-09','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 19:13:48','janvi','2025-10-09 19:13:48',0),(0,0,'2526','H','O',295,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 19:15:50','urvashi','2025-10-09 19:35:38',0),(0,0,'2526','H','O',296,1,0,'2025-10-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-09 19:19:15','shweta','2025-10-09 19:19:15',0),(0,0,'2526','H','O',297,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 19:26:41','janvi','2025-10-09 19:26:41',0),(0,0,'2526','H','O',298,1,0,'2025-10-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 19:27:17','shweta','2025-10-09 19:27:17',0),(0,0,'2526','H','O',298,2,0,'2025-10-09','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 19:27:17','shweta','2025-10-09 19:27:17',0),(0,0,'2526','H','O',299,1,0,'2025-10-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 19:28:12','urvashi','2025-10-09 19:28:12',0),(0,0,'2526','H','O',300,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 19:32:58','urvashi','2025-10-09 19:32:58',0),(0,0,'2526','H','O',301,1,0,'2025-10-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 19:35:02','urvashi','2025-10-09 19:35:02',0),(0,0,'2526','H','O',302,1,0,'2025-10-09','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-09 19:35:38','urvashi','2025-10-09 19:35:38',0),(0,0,'2526','H','O',303,1,0,'2025-10-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-09 19:41:09','shweta','2025-10-09 19:41:09',0),(0,0,'2526','H','O',304,1,0,'2025-10-09','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 19:51:15','janvi','2025-10-09 19:51:15',0),(0,0,'2526','H','O',305,1,0,'2025-10-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-09 19:52:58','janvi','2025-10-09 19:52:58',0),(0,0,'2526','H','O',306,1,0,'2025-10-09','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-09 20:24:44','urvashi','2025-10-09 20:24:44',0),(0,0,'2526','H','O',306,2,0,'2025-10-09','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-09 20:24:44','urvashi','2025-10-09 20:24:44',0),(0,0,'2526','H','O',307,1,0,'2025-10-10','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-10 09:04:09','drashti','2025-10-10 09:04:09',0),(0,0,'2526','H','O',308,1,0,'2025-10-10','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-10-10 09:07:58','janvi','2025-10-10 09:21:07',0),(0,0,'2526','H','O',309,1,0,'2025-10-10','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-10-10 09:10:38','priyanshi','2025-10-10 09:10:38',0),(0,0,'2526','H','O',309,2,0,'2025-10-10','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-10-10 09:10:38','priyanshi','2025-10-10 09:10:38',0),(0,0,'2526','H','O',309,3,0,'2025-10-10','00:00:00','WPRC0037',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-10-10 09:10:38','priyanshi','2025-10-10 09:10:38',0),(0,0,'2526','H','O',310,1,0,'2025-10-10','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-10-10 09:12:16','priyanshi','2025-10-10 09:12:16',0),(0,0,'2526','H','O',311,1,0,'2025-10-10','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-10-10 09:13:05','priyanshi','2025-10-10 09:13:05',0),(0,0,'2526','H','O',312,1,0,'2025-10-10','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-10-10 09:18:11','priyanshi','2025-10-10 09:18:11',0),(0,0,'2526','H','O',312,2,0,'2025-10-10','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-10-10 09:18:11','priyanshi','2025-10-10 09:18:11',0),(0,0,'2526','H','O',312,3,0,'2025-10-10','00:00:00','OPWD0015',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-10-10 09:18:11','priyanshi','2025-10-10 09:18:11',0),(0,0,'2526','H','O',313,1,0,'2025-10-10','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-10 09:18:20','janvi','2025-10-10 09:18:20',0),(0,0,'2526','H','O',314,1,0,'2025-10-10','00:00:00','WPRC0037',0,-1.00,100,-100,'P',0,0,-100.00,0.00,0.00,-100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-10 09:21:07','janvi','2025-10-10 09:21:07',0),(0,0,'2526','H','O',315,1,0,'2025-10-10','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-10 09:22:42','janvi','2025-10-10 09:22:42',0),(0,0,'2526','H','O',316,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-10 09:26:26','priyanshi','2025-10-10 09:26:26',0),(0,0,'2526','H','O',317,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-10 09:56:22','priyanshi','2025-10-10 09:56:22',0),(0,0,'2526','H','O',318,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-10 10:01:31','drashti','2025-10-10 10:01:31',0),(0,0,'2526','H','O',319,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 10:08:56','reception','2025-10-10 10:08:56',0),(0,0,'2526','H','O',320,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 10:11:29','reception','2025-10-10 10:11:29',0),(0,0,'2526','H','O',321,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 10:15:36','reception','2025-10-10 10:15:36',0),(0,0,'2526','H','O',322,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 10:19:14','reception','2025-10-10 10:19:14',0),(0,0,'2526','H','O',323,1,0,'2025-10-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-10 10:28:52','drashti','2025-10-10 10:28:52',0),(0,0,'2526','H','O',324,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-10 10:29:23','janvi','2025-10-10 10:29:23',0),(0,0,'2526','H','O',325,1,0,'2025-10-10','00:00:00','GASS0038',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 10:38:01','reception','2025-10-10 10:38:01',0),(0,0,'2526','H','O',326,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 10:41:20','reception','2025-10-10 10:41:20',0),(0,0,'2526','H','O',327,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 10:48:26','reception','2025-10-10 10:48:26',0),(0,0,'2526','H','O',328,1,0,'2025-10-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-10 10:55:55','janvi','2025-10-10 10:55:55',0),(0,0,'2526','H','O',329,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-10 11:01:58','janvi','2025-10-10 11:01:58',0),(0,0,'2526','H','O',330,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 11:04:21','reception','2025-10-10 11:04:21',0),(0,0,'2526','H','O',331,1,0,'2025-10-10','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 11:05:30','reception','2025-10-10 11:05:30',0),(0,0,'2526','H','O',332,1,0,'2025-10-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-10 11:06:18','janvi','2025-10-10 11:06:18',0),(0,0,'2526','H','O',333,1,0,'2025-10-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-10 11:14:05','drashti','2025-10-10 11:14:05',0),(0,0,'2526','H','O',334,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-10 11:14:06','janvi','2025-10-10 11:14:06',0),(0,0,'2526','H','O',335,1,0,'2025-10-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-10-10 11:16:29','reception','2025-10-10 11:16:29',0),(0,0,'2526','H','O',336,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 11:18:17','reception','2025-10-10 11:18:17',0),(0,0,'2526','H','O',337,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-10 11:19:13','drashti','2025-10-10 11:19:13',0),(0,0,'2526','H','O',338,1,0,'2025-10-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-10 11:19:16','manshi','2025-10-10 11:19:16',0),(0,0,'2526','H','O',339,1,0,'2025-10-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-10 11:20:52','manshi','2025-10-10 11:20:52',0),(0,0,'2526','H','O',340,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 11:22:55','reception','2025-10-10 11:22:55',0),(0,0,'2526','H','O',341,1,0,'2025-10-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-10 11:22:57','drashti','2025-10-10 11:22:57',0),(0,0,'2526','H','O',342,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-10 11:25:58','reception','2025-10-10 11:25:58',0),(0,0,'2526','H','O',343,1,0,'2025-10-10','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-10 11:26:14','drashti','2025-10-10 11:26:14',0),(0,0,'2526','H','O',344,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-10 11:27:29','reception','2025-10-10 11:27:29',0),(0,0,'2526','H','O',345,1,0,'2025-10-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 11:35:17','reception','2025-10-10 11:35:17',0),(0,0,'2526','H','O',346,1,0,'2025-10-10','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-10 11:40:02','drashti','2025-10-10 11:40:02',0),(0,0,'2526','H','O',347,1,0,'2025-10-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 11:46:20','reception','2025-10-10 11:46:20',0),(0,0,'2526','H','O',348,1,0,'2025-10-10','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-10 11:49:24','drashti','2025-10-10 11:49:24',0),(0,0,'2526','H','O',349,1,0,'2025-10-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-10 11:51:42','drashti','2025-10-10 11:51:42',0),(0,0,'2526','H','O',349,2,0,'2025-10-10','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-10 11:51:42','drashti','2025-10-10 11:51:42',0),(0,0,'2526','H','O',350,1,0,'2025-10-10','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 11:53:49','reception','2025-10-10 11:53:49',0),(0,0,'2526','H','O',351,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 12:03:07','reception','2025-10-10 12:03:07',0),(0,0,'2526','H','O',352,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 12:04:50','reception','2025-10-10 12:04:50',0),(0,0,'2526','H','O',353,1,0,'2025-10-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 12:08:28','reception','2025-10-10 12:08:28',0),(0,0,'2526','H','O',354,1,0,'2025-10-10','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-10 12:09:34','drashti','2025-10-10 12:09:34',0),(0,0,'2526','H','O',355,1,0,'2025-10-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-10 12:09:48','manshi','2025-10-10 12:09:48',0),(0,0,'2526','H','O',356,1,0,'2025-10-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-10 12:13:19','manshi','2025-10-10 12:13:19',0),(0,0,'2526','H','O',356,2,0,'2025-10-10','00:00:00','XRY0151',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-10 12:13:19','manshi','2025-10-10 12:13:19',0),(0,0,'2526','H','O',357,1,0,'2025-10-10','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-10 12:27:25','janvi','2025-10-10 12:27:25',0),(0,0,'2526','H','O',358,1,0,'2025-10-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 12:37:41','reception','2025-10-10 12:37:41',0),(0,0,'2526','H','O',358,2,0,'2025-10-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 12:37:41','reception','2025-10-10 12:37:41',0),(0,0,'2526','H','O',358,3,0,'2025-10-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 12:37:41','reception','2025-10-10 12:37:41',0),(0,0,'2526','H','O',359,1,0,'2025-10-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-10 12:46:47','drashti','2025-10-10 12:46:47',0),(0,0,'2526','H','O',360,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-10 12:56:54','drashti','2025-10-10 12:56:54',0),(0,0,'2526','H','O',361,1,0,'2025-10-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-10 12:58:31','janvi','2025-10-10 12:58:31',0),(0,0,'2526','H','O',361,2,0,'2025-10-10','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-10 12:58:31','janvi','2025-10-10 12:58:31',0),(0,0,'2526','H','O',362,1,0,'2025-10-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 13:07:49','reception','2025-10-10 13:07:49',0),(0,0,'2526','H','O',362,2,0,'2025-10-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 13:07:49','reception','2025-10-10 13:07:49',0),(0,0,'2526','H','O',363,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 13:10:30','reception','2025-10-10 13:10:30',0),(0,0,'2526','H','O',364,1,0,'2025-10-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 13:18:35','reception','2025-10-10 13:18:35',0),(0,0,'2526','H','O',365,1,0,'2025-10-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 13:20:29','reception','2025-10-10 13:20:29',0),(0,0,'2526','H','O',365,2,0,'2025-10-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 13:20:29','reception','2025-10-10 13:20:29',0),(0,0,'2526','H','O',365,3,0,'2025-10-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 13:20:29','reception','2025-10-10 13:20:29',0),(0,0,'2526','H','O',366,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-10 13:20:50','janvi','2025-10-10 13:20:50',0),(0,0,'2526','H','O',367,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-10 13:44:21','manshi','2025-10-10 13:44:21',0),(0,0,'2526','H','O',367,2,0,'2025-10-10','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-10 13:44:21','manshi','2025-10-10 13:44:21',0),(0,0,'2526','H','O',367,3,0,'2025-10-10','00:00:00','XRY0390',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-10 13:44:21','manshi','2025-10-10 13:44:21',0),(0,0,'2526','H','O',367,4,0,'2025-10-10','00:00:00','XRY0426',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-10 13:44:21','manshi','2025-10-10 13:44:21',0),(0,0,'2526','H','O',368,1,0,'2025-10-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 13:44:47','reception','2025-10-10 13:44:47',0),(0,0,'2526','H','O',368,2,0,'2025-10-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 13:44:47','reception','2025-10-10 13:44:47',0),(0,0,'2526','H','O',368,3,0,'2025-10-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 13:44:47','reception','2025-10-10 13:44:47',0),(0,0,'2526','H','O',369,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-10 13:51:36','manshi','2025-10-10 13:51:36',0),(0,0,'2526','H','O',370,1,0,'2025-10-10','00:00:00','LAB0817',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-10 14:01:28','drashti','2025-10-10 14:01:28',0),(0,0,'2526','H','O',371,1,0,'2025-10-10','00:00:00','DTPR0061',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-10-10 15:24:37','priyanshi','2025-10-10 15:24:37',0),(0,0,'2526','H','O',372,1,0,'2025-10-10','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-10-10 16:02:18','priyanshi','2025-10-10 16:02:18',0),(0,0,'2526','H','O',372,2,0,'2025-10-10','00:00:00','WPRC0037',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-10-10 16:02:18','priyanshi','2025-10-10 16:02:18',0),(0,0,'2526','H','O',373,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-10 16:21:44','priyanshi','2025-10-10 16:21:44',0),(0,0,'2526','H','O',374,1,0,'2025-10-10','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 16:37:13','reception','2025-10-10 16:37:13',0),(0,0,'2526','H','O',375,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-10 16:37:34','janvi','2025-10-10 16:37:34',0),(0,0,'2526','H','O',376,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 16:40:24','reception','2025-10-10 16:40:24',0),(0,0,'2526','H','O',377,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-10 16:41:09','drashti','2025-10-10 16:41:09',0),(0,0,'2526','H','O',378,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 16:50:51','reception','2025-10-10 16:50:51',0),(0,0,'2526','H','O',379,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-10 16:51:09','drashti','2025-10-10 16:51:09',0),(0,0,'2526','H','O',380,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-10 17:02:49','manshi','2025-10-10 17:02:49',0),(0,0,'2526','H','O',381,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 17:05:13','reception','2025-10-10 17:05:13',0),(0,0,'2526','H','O',382,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-10 17:06:03','manshi','2025-10-10 17:06:03',0),(0,0,'2526','H','O',383,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 17:10:30','reception','2025-10-10 17:10:30',0),(0,0,'2526','H','O',384,1,0,'2025-10-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 17:14:15','reception','2025-10-10 17:14:15',0),(0,0,'2526','H','O',385,1,0,'2025-10-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-10 17:25:30','drashti','2025-10-10 17:25:30',0),(0,0,'2526','H','O',386,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 17:26:12','reception','2025-10-10 17:26:12',0),(0,0,'2526','H','O',387,1,0,'2025-10-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-10 17:33:33','reception','2025-10-10 17:33:33',0),(0,0,'2526','H','O',388,1,0,'2025-10-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-10 17:36:11','janvi','2025-10-10 17:36:11',0),(0,0,'2526','H','O',389,1,0,'2025-10-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 17:39:02','reception','2025-10-10 17:39:02',0),(0,0,'2526','H','O',390,1,0,'2025-10-10','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 17:41:41','reception','2025-10-10 17:41:41',0),(0,0,'2526','H','O',391,1,0,'2025-10-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-10 17:48:12','reception','2025-10-10 17:48:12',0),(0,0,'2526','H','O',392,1,0,'2025-10-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 17:50:30','reception','2025-10-10 17:50:30',0),(0,0,'2526','H','O',393,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-10 17:52:31','janvi','2025-10-10 17:52:31',0),(0,0,'2526','H','O',394,1,0,'2025-10-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-10 17:52:45','janvi','2025-10-10 17:52:45',0),(0,0,'2526','H','O',395,1,0,'2025-10-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-10 17:52:59','janvi','2025-10-10 17:52:59',0),(0,0,'2526','H','O',396,1,0,'2025-10-10','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-10 17:54:47','janvi','2025-10-10 17:54:47',0),(0,0,'2526','H','O',397,1,0,'2025-10-10','00:00:00','LAB0817',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-10 17:54:59','drashti','2025-10-10 17:54:59',0),(0,0,'2526','H','O',398,1,0,'2025-10-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 17:55:03','reception','2025-10-10 17:55:03',0),(0,0,'2526','H','O',399,1,0,'2025-10-10','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-10 17:57:48','janvi','2025-10-10 17:57:48',0),(0,0,'2526','H','O',400,1,0,'2025-10-10','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-10 17:59:38','manshi','2025-10-10 17:59:38',0),(0,0,'2526','H','O',401,1,0,'2025-10-10','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-10 17:59:51','manshi','2025-10-10 17:59:51',0),(0,0,'2526','H','O',402,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-10 18:02:21','drashti','2025-10-10 18:02:21',0),(0,0,'2526','H','O',403,1,0,'2025-10-10','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 18:04:12','reception','2025-10-10 18:04:12',0),(0,0,'2526','H','O',404,1,0,'2025-10-10','00:00:00','NEU10019',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-10 18:05:21','drashti','2025-10-10 18:05:21',0),(0,0,'2526','H','O',404,2,0,'2025-10-10','00:00:00','NEU10017',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-10 18:05:21','drashti','2025-10-10 18:05:21',0),(0,0,'2526','H','O',405,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 18:11:20','reception','2025-10-10 18:11:20',0),(0,0,'2526','H','O',406,1,0,'2025-10-10','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-10 18:11:35','janvi','2025-10-10 18:11:35',0),(0,0,'2526','H','O',407,1,0,'2025-10-10','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-10 18:15:18','janvi','2025-10-10 18:15:18',0),(0,0,'2526','H','O',408,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-10 18:19:18','manshi','2025-10-10 19:18:52',0),(0,0,'2526','H','O',409,1,0,'2025-10-10','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-10 18:21:19','drashti','2025-10-10 18:21:19',0),(0,0,'2526','H','O',410,1,0,'2025-10-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-10 18:22:08','janvi','2025-10-10 18:22:08',0),(0,0,'2526','H','O',411,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 18:23:54','reception','2025-10-10 18:23:54',0),(0,0,'2526','H','O',412,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-10 18:24:56','drashti','2025-10-10 18:24:56',0),(0,0,'2526','H','O',413,1,0,'2025-10-10','00:00:00','XRY0292',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-10 18:26:01','manshi','2025-10-10 18:26:01',0),(0,0,'2526','H','O',413,2,0,'2025-10-10','00:00:00','XRY0189',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-10 18:26:01','manshi','2025-10-10 18:26:01',0),(0,0,'2526','H','O',414,1,0,'2025-10-10','00:00:00','XRY0390',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-10 18:26:50','manshi','2025-10-10 18:26:50',0),(0,0,'2526','H','O',415,1,0,'2025-10-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 18:30:51','reception','2025-10-10 18:30:51',0),(0,0,'2526','H','O',415,2,0,'2025-10-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 18:30:51','reception','2025-10-10 18:30:51',0),(0,0,'2526','H','O',415,3,0,'2025-10-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 18:30:51','reception','2025-10-10 18:30:51',0),(0,0,'2526','H','O',416,1,0,'2025-10-10','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-10 18:31:42','janvi','2025-10-10 18:31:42',0),(0,0,'2526','H','O',417,1,0,'2025-10-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-10 18:32:25','drashti','2025-10-10 18:32:25',0),(0,0,'2526','H','O',418,1,0,'2025-10-10','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-10 18:32:46','reception','2025-10-10 18:32:46',0),(0,0,'2526','H','O',419,1,0,'2025-10-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-10 18:33:55','drashti','2025-10-10 18:33:55',0),(0,0,'2526','H','O',420,1,0,'2025-10-10','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-10 18:34:05','janvi','2025-10-10 18:34:05',0),(0,0,'2526','H','O',421,1,0,'2025-10-10','00:00:00','XRY0254',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-10 18:34:11','manshi','2025-10-10 18:34:11',0),(0,0,'2526','H','O',422,1,0,'2025-10-10','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 18:37:43','reception','2025-10-10 18:37:43',0),(0,0,'2526','H','O',423,1,0,'2025-10-10','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-10 18:41:13','reception','2025-10-10 18:41:13',0),(0,0,'2526','H','O',424,1,0,'2025-10-10','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-10 18:46:53','drashti','2025-10-10 18:46:53',0),(0,0,'2526','H','O',425,1,0,'2025-10-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 18:51:14','drashti','2025-10-10 18:53:53',0),(0,0,'2526','H','O',425,2,0,'2025-10-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 18:51:14','drashti','2025-10-10 18:53:53',0),(0,0,'2526','H','O',426,1,0,'2025-10-10','00:00:00','NEU10019',0,-1.00,2200,-2200,'P',0,0,-2200.00,0.00,0.00,-2200.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-10 18:53:53','drashti','2025-10-10 18:53:53',0),(0,0,'2526','H','O',426,2,0,'2025-10-10','00:00:00','NEU10017',0,-1.00,2200,-2200,'P',0,0,-2200.00,0.00,0.00,-2200.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-10 18:53:53','drashti','2025-10-10 18:53:53',0),(0,0,'2526','H','O',427,1,0,'2025-10-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 18:54:32','reception','2025-10-10 18:54:32',0),(0,0,'2526','H','O',427,2,0,'2025-10-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 18:54:32','reception','2025-10-10 18:54:32',0),(0,0,'2526','H','O',428,1,0,'2025-10-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 18:58:58','reception','2025-10-10 18:58:58',0),(0,0,'2526','H','O',428,2,0,'2025-10-10','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-10 18:58:58','reception','2025-10-10 18:58:58',0),(0,0,'2526','H','O',429,1,0,'2025-10-10','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-10 18:59:46','manshi','2025-10-10 18:59:46',0),(0,0,'2526','H','O',430,1,0,'2025-10-10','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-10 19:06:47','reception','2025-10-10 19:06:47',0),(0,0,'2526','H','O',431,1,0,'2025-10-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-10 19:07:28','drashti','2025-10-10 19:07:28',0),(0,0,'2526','H','O',432,1,0,'2025-10-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-10 19:09:14','drashti','2025-10-10 19:09:14',0),(0,0,'2526','H','O',433,1,0,'2025-10-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-10 19:10:35','janvi','2025-10-10 19:10:35',0),(0,0,'2526','H','O',434,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-10 19:12:20','drashti','2025-10-10 19:12:20',0),(0,0,'2526','H','O',435,1,0,'2025-10-10','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-10 19:17:58','janvi','2025-10-10 19:17:58',0),(0,0,'2526','H','O',436,1,0,'2025-10-10','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-10 19:18:52','manshi','2025-10-10 19:18:52',0),(0,0,'2526','H','O',437,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-10 19:28:39','drashti','2025-10-10 19:28:39',0),(0,0,'2526','H','O',438,1,0,'2025-10-10','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-10 19:29:02','janvi','2025-10-10 19:29:02',0),(0,0,'2526','H','O',439,1,0,'2025-10-10','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-10 19:37:19','janvi','2025-10-10 19:37:19',0),(0,0,'2526','H','O',440,1,0,'2025-10-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-10 19:44:50','drashti','2025-10-10 19:44:50',0),(0,0,'2526','H','O',441,1,0,'2025-10-10','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-10 19:50:37','drashti','2025-10-10 19:50:37',0),(0,0,'2526','H','O',442,1,0,'2025-10-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-10 19:58:24','manshi','2025-10-10 19:58:24',0),(0,0,'2526','H','O',442,2,0,'2025-10-10','00:00:00','XRY0371',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-10 19:58:24','manshi','2025-10-10 19:58:24',0),(0,0,'2526','H','O',442,3,0,'2025-10-10','00:00:00','XRY0244',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-10 19:58:24','manshi','2025-10-10 19:58:24',0),(0,0,'2526','H','O',443,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-10-11 08:58:21','priyanshi','2025-10-11 08:58:21',0),(0,0,'2526','H','O',444,1,0,'2025-10-11','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-11 09:15:43','reception','2025-10-11 09:15:43',0),(0,0,'2526','H','O',445,1,0,'2025-10-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-11 09:17:40','priyanshi','2025-10-11 09:17:40',0),(0,0,'2526','H','O',446,1,0,'2025-10-11','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-10-11 09:18:36','reception','2025-10-11 09:18:36',0),(0,0,'2526','H','O',446,2,0,'2025-10-11','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-10-11 09:18:36','reception','2025-10-11 09:18:36',0),(0,0,'2526','H','O',447,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-10-11 09:30:17','priyanshi','2025-10-11 09:30:17',0),(0,0,'2526','H','O',448,1,0,'2025-10-11','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-11 09:31:10','janvi','2025-10-11 09:31:10',0),(0,0,'2526','H','O',449,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-11 09:36:28','reception','2025-10-11 09:36:28',0),(0,0,'2526','H','O',450,1,0,'2025-10-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-11 09:37:17','janvi','2025-10-11 09:37:17',0),(0,0,'2526','H','O',451,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-11 09:48:06','reception','2025-10-11 09:48:06',0),(0,0,'2526','H','O',452,1,0,'2025-10-11','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-11 10:10:17','janvi','2025-10-11 10:10:17',0),(0,0,'2526','H','O',453,1,0,'2025-10-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-11 10:10:33','reception','2025-10-11 10:10:33',0),(0,0,'2526','H','O',453,2,0,'2025-10-11','00:00:00','NEU10017',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-11 10:10:33','reception','2025-10-11 10:10:33',0),(0,0,'2526','H','O',454,1,0,'2025-10-11','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-11 10:12:24','reception','2025-10-11 10:12:24',0),(0,0,'2526','H','O',455,1,0,'2025-10-11','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-11 10:12:51','manshi','2025-10-11 10:12:51',0),(0,0,'2526','H','O',456,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-11 10:18:52','reception','2025-10-11 10:18:52',0),(0,0,'2526','H','O',457,1,0,'2025-10-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-11 10:21:47','reception','2025-10-11 10:21:47',0),(0,0,'2526','H','O',457,2,0,'2025-10-11','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-11 10:21:47','reception','2025-10-11 10:21:47',0),(0,0,'2526','H','O',457,3,0,'2025-10-11','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-11 10:21:47','reception','2025-10-11 10:21:47',0),(0,0,'2526','H','O',458,1,0,'2025-10-11','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-11 10:24:21','drashti','2025-10-11 10:24:21',0),(0,0,'2526','H','O',459,1,0,'2025-10-11','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-11 10:27:17','janvi','2025-10-11 10:27:17',0),(0,0,'2526','H','O',460,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-11 10:29:10','reception','2025-10-11 10:29:10',0),(0,0,'2526','H','O',461,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-11 10:31:34','reception','2025-10-11 10:31:34',0),(0,0,'2526','H','O',462,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-11 10:33:18','drashti','2025-10-11 10:33:18',0),(0,0,'2526','H','O',463,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-11 10:36:54','reception','2025-10-11 10:36:54',0),(0,0,'2526','H','O',464,1,0,'2025-10-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-11 10:39:24','reception','2025-10-11 10:39:24',0),(0,0,'2526','H','O',465,1,0,'2025-10-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-11 10:44:05','reception','2025-10-11 10:44:05',0),(0,0,'2526','H','O',466,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-11 10:47:03','reception','2025-10-11 10:47:03',0),(0,0,'2526','H','O',467,1,0,'2025-10-11','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-11 11:01:22','reception','2025-10-11 11:01:22',0),(0,0,'2526','H','O',468,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-11 11:02:08','drashti','2025-10-11 11:02:08',0),(0,0,'2526','H','O',469,1,0,'2025-10-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-11 11:10:49','janvi','2025-10-11 11:10:49',0),(0,0,'2526','H','O',469,2,0,'2025-10-11','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-11 11:10:49','janvi','2025-10-11 11:10:49',0),(0,0,'2526','H','O',470,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-11 11:13:11','janvi','2025-10-11 11:13:11',0),(0,0,'2526','H','O',471,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-11 11:14:25','reception','2025-10-11 11:14:25',0),(0,0,'2526','H','O',472,1,0,'2025-10-11','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-11 11:15:05','janvi','2025-10-11 11:15:05',0),(0,0,'2526','H','O',473,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-11 11:16:35','drashti','2025-10-11 11:16:35',0),(0,0,'2526','H','O',474,1,0,'2025-10-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-11 11:17:04','reception','2025-10-11 12:39:22',0),(0,0,'2526','H','O',475,1,0,'2025-10-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-11 11:18:17','reception','2025-10-11 11:18:17',0),(0,0,'2526','H','O',476,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-11 11:19:18','janvi','2025-10-11 11:19:18',0),(0,0,'2526','H','O',477,1,0,'2025-10-11','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-11 11:20:03','reception','2025-10-11 11:20:03',0),(0,0,'2526','H','O',478,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-11 11:20:14','drashti','2025-10-11 11:20:14',0),(0,0,'2526','H','O',479,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-11 11:21:25','janvi','2025-10-11 13:01:42',0),(0,0,'2526','H','O',480,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-11 11:21:55','drashti','2025-10-11 11:21:55',0),(0,0,'2526','H','O',481,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-11 11:22:55','janvi','2025-10-11 11:22:55',0),(0,0,'2526','H','O',482,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-11 11:24:05','drashti','2025-10-11 11:24:05',0),(0,0,'2526','H','O',483,1,0,'2025-10-11','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-11 11:26:19','manshi','2025-10-11 11:26:19',0),(0,0,'2526','H','O',484,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-11 11:26:29','janvi','2025-10-11 11:26:29',0),(0,0,'2526','H','O',485,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-11 11:28:27','reception','2025-10-11 11:28:27',0),(0,0,'2526','H','O',486,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-11 11:31:14','drashti','2025-10-11 11:31:14',0),(0,0,'2526','H','O',487,1,0,'2025-10-11','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-11 11:37:46','drashti','2025-10-11 11:37:46',0),(0,0,'2526','H','O',488,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-11 11:39:03','janvi','2025-10-11 11:39:03',0),(0,0,'2526','H','O',489,1,0,'2025-10-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-11 11:39:17','janvi','2025-10-11 11:39:17',0),(0,0,'2526','H','O',490,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-11 11:40:28','manshi','2025-10-11 11:40:28',0),(0,0,'2526','H','O',491,1,0,'2025-10-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-11 11:40:29','reception','2025-10-11 11:40:29',0),(0,0,'2526','H','O',492,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-11 11:41:32','drashti','2025-10-11 11:41:32',0),(0,0,'2526','H','O',493,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-11 11:45:19','reception','2025-10-11 11:45:19',0),(0,0,'2526','H','O',494,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-11 11:47:33','reception','2025-10-11 11:47:33',0),(0,0,'2526','H','O',495,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-11 11:48:36','drashti','2025-10-11 11:48:36',0),(0,0,'2526','H','O',496,1,0,'2025-10-11','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-11 11:52:59','drashti','2025-10-11 11:52:59',0),(0,0,'2526','H','O',497,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-11 11:57:19','drashti','2025-10-11 11:57:19',0),(0,0,'2526','H','O',498,1,0,'2025-10-11','00:00:00','XRY0189',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-11 12:01:59','manshi','2025-10-11 12:01:59',0),(0,0,'2526','H','O',499,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-11 12:05:55','reception','2025-10-11 12:05:55',0),(0,0,'2526','H','O',500,1,0,'2025-10-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-11 12:07:22','reception','2025-10-11 12:07:22',0),(0,0,'2526','H','O',500,2,0,'2025-10-11','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-11 12:07:22','reception','2025-10-11 12:07:22',0),(0,0,'2526','H','O',500,3,0,'2025-10-11','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-11 12:07:22','reception','2025-10-11 12:07:22',0),(0,0,'2526','H','O',501,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-11 12:11:27','drashti','2025-10-11 12:11:27',0),(0,0,'2526','H','O',502,1,0,'2025-10-11','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-11 12:12:59','manshi','2025-10-11 12:12:59',0),(0,0,'2526','H','O',503,1,0,'2025-10-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-11 12:13:57','reception','2025-10-11 12:13:57',0),(0,0,'2526','H','O',503,2,0,'2025-10-11','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-11 12:13:57','reception','2025-10-11 12:13:57',0),(0,0,'2526','H','O',503,3,0,'2025-10-11','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-11 12:13:57','reception','2025-10-11 12:13:57',0),(0,0,'2526','H','O',504,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-11 12:15:17','drashti','2025-10-11 12:15:17',0),(0,0,'2526','H','O',505,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-11 12:21:03','reception','2025-10-11 12:21:03',0),(0,0,'2526','H','O',506,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-11 12:22:51','janvi','2025-10-11 12:22:51',0),(0,0,'2526','H','O',507,1,0,'2025-10-11','00:00:00','CASE',0,-1.00,900,-900,'A',0,0,-900.00,0.00,0.00,-900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-11 12:39:22','reception','2025-10-11 12:39:22',0),(0,0,'2526','H','O',508,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-11 12:43:07','drashti','2025-10-11 12:43:07',0),(0,0,'2526','H','O',509,1,0,'2025-10-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-11 12:51:21','drashti','2025-10-11 12:51:21',0),(0,0,'2526','H','O',510,1,0,'2025-10-11','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-11 12:57:46','janvi','2025-10-11 12:57:46',0),(0,0,'2526','H','O',511,1,0,'2025-10-11','00:00:00','CASE',0,-1.00,400,-400,'P',0,0,-400.00,0.00,0.00,-400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-11 13:01:42','janvi','2025-10-11 13:01:42',0),(0,0,'2526','H','O',512,1,0,'2025-10-11','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-11 13:03:58','drashti','2025-10-11 13:03:58',0),(0,0,'2526','H','O',512,2,0,'2025-10-11','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-11 13:03:58','drashti','2025-10-11 13:03:58',0),(0,0,'2526','H','O',513,1,0,'2025-10-11','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-11 13:11:31','manshi','2025-10-11 13:11:31',0),(0,0,'2526','H','O',514,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-11 17:51:48','reception','2025-10-11 17:51:48',0),(0,0,'2526','H','O',515,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-11 17:54:05','reception','2025-10-11 19:32:09',0),(0,0,'2526','H','O',516,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-11 18:10:33','manshi','2025-10-11 18:25:20',0),(0,0,'2526','H','O',517,1,0,'2025-10-11','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-11 18:15:02','urvashi','2025-10-11 18:15:02',0),(0,0,'2526','H','O',518,1,0,'2025-10-11','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-11 18:16:36','manshi','2025-10-11 18:16:36',0),(0,0,'2526','H','O',519,1,0,'2025-10-11','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-11 18:21:36','manshi','2025-10-11 18:21:36',0),(0,0,'2526','H','O',520,1,0,'2025-10-11','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-11 18:25:20','manshi','2025-10-11 18:25:20',0),(0,0,'2526','H','O',521,1,0,'2025-10-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-11 18:25:27','drashti','2025-10-11 18:25:27',0),(0,0,'2526','H','O',522,1,0,'2025-10-11','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-11 18:41:57','urvashi','2025-10-11 18:41:57',0),(0,0,'2526','H','O',523,1,0,'2025-10-11','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-11 18:47:38','reception','2025-10-11 18:47:38',0),(0,0,'2526','H','O',524,1,0,'2025-10-11','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-11 18:48:23','urvashi','2025-10-11 18:48:23',0),(0,0,'2526','H','O',525,1,0,'2025-10-11','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-11 19:28:37','drashti','2025-10-11 19:28:37',0),(0,0,'2526','H','O',526,1,0,'2025-10-11','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-11 19:32:09','reception','2025-10-11 19:32:09',0),(0,0,'2526','H','O',527,1,0,'2025-10-11','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-11 19:48:42','reception','2025-10-11 19:48:42',0),(0,0,'2526','H','O',528,1,0,'2025-10-12','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-12 09:19:28','janvi','2025-10-12 09:19:28',0),(0,0,'2526','H','O',529,1,0,'2025-10-12','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,7,0,'',0,'','','','Y','N','janvi','2025-10-12 09:21:41','janvi','2025-10-12 09:21:41',0),(0,0,'2526','H','O',530,1,0,'2025-10-13','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-13 09:13:43','shweta','2025-10-13 09:13:43',0),(0,0,'2526','H','O',530,2,0,'2025-10-13','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-13 09:13:43','shweta','2025-10-13 09:13:43',0),(0,0,'2526','H','O',530,3,0,'2025-10-13','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-13 09:13:43','shweta','2025-10-13 09:13:43',0),(0,0,'2526','H','O',530,4,0,'2025-10-13','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-13 09:13:43','shweta','2025-10-13 09:13:43',0),(0,0,'2526','H','O',531,1,0,'2025-10-13','00:00:00','SURG0005',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-13 09:15:08','shweta','2025-10-13 09:15:08',0),(0,0,'2526','H','O',532,1,0,'2025-10-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-13 09:19:24','janvi','2025-10-13 09:19:24',0),(0,0,'2526','H','O',533,1,0,'2025-10-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-13 09:19:40','janvi','2025-10-13 09:19:40',0),(0,0,'2526','H','O',534,1,0,'2025-10-13','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-13 09:20:47','shweta','2025-10-13 09:20:47',0),(0,0,'2526','H','O',535,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 09:21:07','reception','2025-10-13 09:21:07',0),(0,0,'2526','H','O',536,1,0,'2025-10-13','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-13 09:22:09','shweta','2025-10-13 09:22:09',0),(0,0,'2526','H','O',537,1,0,'2025-10-13','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-13 09:22:54','shweta','2025-10-13 09:22:54',0),(0,0,'2526','H','O',538,1,0,'2025-10-13','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-13 09:24:39','shweta','2025-10-13 09:24:39',0),(0,0,'2526','H','O',539,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 09:24:57','reception','2025-10-13 09:24:57',0),(0,0,'2526','H','O',540,1,0,'2025-10-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-13 09:25:42','janvi','2025-10-13 09:25:42',0),(0,0,'2526','H','O',541,1,0,'2025-10-13','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-13 09:26:55','shweta','2025-10-13 09:26:55',0),(0,0,'2526','H','O',541,2,0,'2025-10-13','00:00:00','OPWD0012',0,1.00,550,550,'P',0,0,550.00,0.00,0.00,550.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-13 09:26:55','shweta','2025-10-13 09:26:55',0),(0,0,'2526','H','O',542,1,0,'2025-10-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-13 09:28:41','janvi','2025-10-13 09:28:41',0),(0,0,'2526','H','O',543,1,0,'2025-10-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 09:29:49','reception','2025-10-13 09:29:49',0),(0,0,'2526','H','O',544,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 09:38:43','reception','2025-10-13 09:38:43',0),(0,0,'2526','H','O',545,1,0,'2025-10-13','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-10-13 09:44:51','shweta','2025-10-13 09:44:51',0),(0,0,'2526','H','O',545,2,0,'2025-10-13','00:00:00','OPWD0013',0,1.00,350,350,'P',0,0,350.00,0.00,0.00,350.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-10-13 09:44:51','shweta','2025-10-13 09:44:51',0),(0,0,'2526','H','O',545,3,0,'2025-10-13','00:00:00','XRY0045',0,3.00,600,1800,'P',0,0,1800.00,0.00,0.00,1800.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-13 09:44:51','shweta','2025-10-13 09:44:51',0),(0,0,'2526','H','O',546,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-13 09:55:23','janvi','2025-10-13 09:55:23',0),(0,0,'2526','H','O',547,1,0,'2025-10-13','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 09:55:59','reception','2025-10-13 09:55:59',0),(0,0,'2526','H','O',548,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 09:58:06','reception','2025-10-13 09:58:06',0),(0,0,'2526','H','O',549,1,0,'2025-10-13','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 10:01:32','reception','2025-10-13 10:01:32',0),(0,0,'2526','H','O',550,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 10:06:20','reception','2025-10-13 10:06:20',0),(0,0,'2526','H','O',551,1,0,'2025-10-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 10:11:30','reception','2025-10-13 10:11:30',0),(0,0,'2526','H','O',552,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-13 10:14:11','shweta','2025-10-13 10:14:11',0),(0,0,'2526','H','O',553,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 10:14:17','reception','2025-10-13 10:14:17',0),(0,0,'2526','H','O',554,1,0,'2025-10-13','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-13 10:15:07','manshi','2025-10-13 10:15:07',0),(0,0,'2526','H','O',555,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 10:16:44','reception','2025-10-13 10:16:44',0),(0,0,'2526','H','O',556,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-13 10:16:56','janvi','2025-10-13 10:16:56',0),(0,0,'2526','H','O',557,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-13 10:17:14','shweta','2025-10-13 10:17:14',0),(0,0,'2526','H','O',558,1,0,'2025-10-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-13 10:19:22','janvi','2025-10-13 10:19:22',0),(0,0,'2526','H','O',559,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-13 10:20:36','reception','2025-10-13 10:20:36',0),(0,0,'2526','H','O',560,1,0,'2025-10-13','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-13 10:28:08','manshi','2025-10-13 10:28:08',0),(0,0,'2526','H','O',561,1,0,'2025-10-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 10:28:35','reception','2025-10-13 10:28:35',0),(0,0,'2526','H','O',562,1,0,'2025-10-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-13 10:30:50','drashti','2025-10-13 10:30:50',0),(0,0,'2526','H','O',563,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 10:33:05','reception','2025-10-13 10:33:05',0),(0,0,'2526','H','O',564,1,0,'2025-10-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-13 10:33:41','drashti','2025-10-13 10:33:41',0),(0,0,'2526','H','O',565,1,0,'2025-10-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 10:39:14','reception','2025-10-13 10:39:14',0),(0,0,'2526','H','O',566,1,0,'2025-10-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 10:44:13','reception','2025-10-13 10:44:13',0),(0,0,'2526','H','O',566,2,0,'2025-10-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 10:44:13','reception','2025-10-13 10:44:13',0),(0,0,'2526','H','O',566,3,0,'2025-10-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 10:44:13','reception','2025-10-13 10:44:13',0),(0,0,'2526','H','O',567,1,0,'2025-10-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 10:50:01','reception','2025-10-13 10:50:01',0),(0,0,'2526','H','O',567,2,0,'2025-10-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 10:50:01','reception','2025-10-13 10:50:01',0),(0,0,'2526','H','O',568,1,0,'2025-10-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 10:52:24','drashti','2025-10-13 10:52:24',0),(0,0,'2526','H','O',569,1,0,'2025-10-13','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-13 11:01:29','manshi','2025-10-13 11:01:29',0),(0,0,'2526','H','O',570,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-13 11:04:29','manshi','2025-10-13 11:04:29',0),(0,0,'2526','H','O',571,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 11:09:30','reception','2025-10-13 11:09:30',0),(0,0,'2526','H','O',572,1,0,'2025-10-13','00:00:00','XRY0449',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-13 11:09:45','manshi','2025-10-13 11:09:45',0),(0,0,'2526','H','O',573,1,0,'2025-10-13','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-13 11:10:55','drashti','2025-10-13 11:10:55',0),(0,0,'2526','H','O',573,2,0,'2025-10-13','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-13 11:10:55','drashti','2025-10-13 11:10:55',0),(0,0,'2526','H','O',574,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 11:14:07','drashti','2025-10-13 11:14:07',0),(0,0,'2526','H','O',575,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-10-13 11:15:53','reception','2025-10-13 11:15:53',0),(0,0,'2526','H','O',576,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 11:16:05','janvi','2025-10-13 11:28:09',0),(0,0,'2526','H','O',577,1,0,'2025-10-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 11:19:27','reception','2025-10-13 11:19:27',0),(0,0,'2526','H','O',577,2,0,'2025-10-13','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 11:19:27','reception','2025-10-13 11:19:27',0),(0,0,'2526','H','O',577,3,0,'2025-10-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 11:19:27','reception','2025-10-13 11:19:27',0),(0,0,'2526','H','O',578,1,0,'2025-10-13','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 11:19:52','janvi','2025-10-13 11:19:52',0),(0,0,'2526','H','O',579,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-13 11:22:09','manshi','2025-10-13 11:22:09',0),(0,0,'2526','H','O',580,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 11:23:49','janvi','2025-10-13 11:23:49',0),(0,0,'2526','H','O',581,1,0,'2025-10-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 11:26:06','drashti','2025-10-13 11:26:06',0),(0,0,'2526','H','O',582,1,0,'2025-10-13','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 11:28:09','janvi','2025-10-13 11:28:09',0),(0,0,'2526','H','O',583,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-13 11:29:39','manshi','2025-10-13 11:29:39',0),(0,0,'2526','H','O',584,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 11:30:33','reception','2025-10-13 11:30:33',0),(0,0,'2526','H','O',585,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 11:32:04','drashti','2025-10-13 11:32:04',0),(0,0,'2526','H','O',586,1,0,'2025-10-13','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-13 11:33:36','janvi','2025-10-13 11:33:36',0),(0,0,'2526','H','O',587,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-13 11:33:50','manshi','2025-10-13 11:33:50',0),(0,0,'2526','H','O',588,1,0,'2025-10-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 11:34:35','drashti','2025-10-13 11:34:35',0),(0,0,'2526','H','O',589,1,0,'2025-10-13','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-13 11:36:43','drashti','2025-10-13 11:36:43',0),(0,0,'2526','H','O',589,2,0,'2025-10-13','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-13 11:36:43','drashti','2025-10-13 11:36:43',0),(0,0,'2526','H','O',590,1,0,'2025-10-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 11:40:02','reception','2025-10-13 11:40:02',0),(0,0,'2526','H','O',590,2,0,'2025-10-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 11:40:02','reception','2025-10-13 11:40:02',0),(0,0,'2526','H','O',591,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 11:40:10','drashti','2025-10-13 11:40:10',0),(0,0,'2526','H','O',592,1,0,'2025-10-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-13 11:45:11','janvi','2025-10-13 11:45:11',0),(0,0,'2526','H','O',593,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 11:46:00','reception','2025-10-13 11:46:00',0),(0,0,'2526','H','O',594,1,0,'2025-10-13','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-13 11:47:47','janvi','2025-10-13 11:47:47',0),(0,0,'2526','H','O',595,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-13 11:48:05','manshi','2025-10-13 11:48:05',0),(0,0,'2526','H','O',596,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 11:49:11','drashti','2025-10-13 11:49:11',0),(0,0,'2526','H','O',597,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-13 11:51:16','reception','2025-10-13 11:51:16',0),(0,0,'2526','H','O',598,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-13 11:54:18','janvi','2025-10-13 11:54:18',0),(0,0,'2526','H','O',599,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 11:54:48','drashti','2025-10-13 11:54:48',0),(0,0,'2526','H','O',600,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 11:55:21','janvi','2025-10-13 11:55:21',0),(0,0,'2526','H','O',601,1,0,'2025-10-13','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-13 11:55:58','manshi','2025-10-13 12:12:40',0),(0,0,'2526','H','O',602,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 11:56:35','reception','2025-10-13 11:56:35',0),(0,0,'2526','H','O',603,1,0,'2025-10-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 11:59:41','drashti','2025-10-13 11:59:41',0),(0,0,'2526','H','O',604,1,0,'2025-10-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 12:01:25','reception','2025-10-13 12:01:25',0),(0,0,'2526','H','O',604,2,0,'2025-10-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 12:01:25','reception','2025-10-13 12:01:25',0),(0,0,'2526','H','O',604,3,0,'2025-10-13','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 12:01:25','reception','2025-10-13 12:01:25',0),(0,0,'2526','H','O',605,1,0,'2025-10-13','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-13 12:02:05','drashti','2025-10-13 12:02:05',0),(0,0,'2526','H','O',606,1,0,'2025-10-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 12:07:50','reception','2025-10-13 12:07:50',0),(0,0,'2526','H','O',607,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-13 12:09:16','drashti','2025-10-13 12:09:16',0),(0,0,'2526','H','O',608,1,0,'2025-10-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 12:09:49','reception','2025-10-13 12:09:49',0),(0,0,'2526','H','O',608,2,0,'2025-10-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 12:09:49','reception','2025-10-13 12:09:49',0),(0,0,'2526','H','O',609,1,0,'2025-10-13','00:00:00','CASE',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-13 12:12:40','manshi','2025-10-13 12:12:40',0),(0,0,'2526','H','O',610,1,0,'2025-10-13','00:00:00','WPRC0046',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-13 12:16:37','manshi','2025-10-13 12:16:37',0),(0,0,'2526','H','O',611,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-13 12:18:26','janvi','2025-10-13 12:18:26',0),(0,0,'2526','H','O',612,1,0,'2025-10-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-13 12:19:43','janvi','2025-10-13 12:19:43',0),(0,0,'2526','H','O',613,1,0,'2025-10-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 12:20:01','reception','2025-10-13 12:20:01',0),(0,0,'2526','H','O',613,2,0,'2025-10-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 12:20:01','reception','2025-10-13 12:20:01',0),(0,0,'2526','H','O',613,3,0,'2025-10-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 12:20:01','reception','2025-10-13 12:20:01',0),(0,0,'2526','H','O',614,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-13 12:22:49','janvi','2025-10-13 12:22:49',0),(0,0,'2526','H','O',615,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-13 12:23:41','drashti','2025-10-13 12:23:41',0),(0,0,'2526','H','O',616,1,0,'2025-10-13','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 12:25:59','reception','2025-10-13 12:25:59',0),(0,0,'2526','H','O',617,1,0,'2025-10-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 12:29:48','reception','2025-10-13 12:29:48',0),(0,0,'2526','H','O',618,1,0,'2025-10-13','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-13 12:36:31','drashti','2025-10-13 12:36:31',0),(0,0,'2526','H','O',619,1,0,'2025-10-13','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-13 12:42:02','drashti','2025-10-13 12:42:02',0),(0,0,'2526','H','O',620,1,0,'2025-10-13','00:00:00','WPRC0046',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 12:43:42','janvi','2025-10-13 12:43:42',0),(0,0,'2526','H','O',621,1,0,'2025-10-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-13 12:43:58','drashti','2025-10-13 14:23:35',0),(0,0,'2526','H','O',622,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 12:45:16','shweta','2025-10-13 15:28:07',0),(0,0,'2526','H','O',623,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-13 13:04:14','janvi','2025-10-13 13:04:14',0),(0,0,'2526','H','O',624,1,0,'2025-10-13','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-13 13:07:14','drashti','2025-10-13 14:16:48',0),(0,0,'2526','H','O',625,1,0,'2025-10-13','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-13 13:08:42','manshi','2025-10-13 13:08:42',0),(0,0,'2526','H','O',625,2,0,'2025-10-13','00:00:00','XRY0428',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-13 13:08:42','manshi','2025-10-13 13:08:42',0),(0,0,'2526','H','O',625,3,0,'2025-10-13','00:00:00','WPRC0046',0,1.00,3550,3550,'P',0,0,3550.00,0.00,0.00,3550.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-13 13:08:42','manshi','2025-10-13 13:08:42',0),(0,0,'2526','H','O',625,4,0,'2025-10-13','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-13 13:08:42','manshi','2025-10-13 13:08:42',0),(0,0,'2526','H','O',626,1,0,'2025-10-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 13:36:39','reception','2025-10-13 13:36:39',0),(0,0,'2526','H','O',626,2,0,'2025-10-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 13:36:39','reception','2025-10-13 13:36:39',0),(0,0,'2526','H','O',627,1,0,'2025-10-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 13:38:07','janvi','2025-10-13 14:02:30',0),(0,0,'2526','H','O',628,1,0,'2025-10-13','00:00:00','WPRC0037',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-13 13:43:33','manshi','2025-10-13 13:43:33',0),(0,0,'2526','H','O',629,1,0,'2025-10-13','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-13 14:02:30','janvi','2025-10-13 14:02:30',0),(0,0,'2526','H','O',630,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-13 14:05:27','janvi','2025-10-13 14:05:27',0),(0,0,'2526','H','O',631,1,0,'2025-10-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-13 14:08:06','drashti','2025-10-13 14:08:06',0),(0,0,'2526','H','O',631,2,0,'2025-10-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-13 14:08:06','drashti','2025-10-13 14:08:06',0),(0,0,'2526','H','O',632,1,0,'2025-10-13','00:00:00','CASE',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-13 14:16:48','drashti','2025-10-13 14:16:48',0),(0,0,'2526','H','O',633,1,0,'2025-10-13','00:00:00','CASE',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-13 14:19:18','drashti','2025-10-13 14:19:18',0),(0,0,'2526','H','O',634,1,0,'2025-10-13','00:00:00','CASE',0,-1.00,900,-900,'A',0,0,-900.00,0.00,0.00,-900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-13 14:23:35','drashti','2025-10-13 14:23:35',0),(0,0,'2526','H','O',635,1,0,'2025-10-13','00:00:00','CASE',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-13 14:24:47','drashti','2025-10-13 14:24:47',0),(0,0,'2526','H','O',636,1,0,'2025-10-13','00:00:00','NEU10019',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-13 15:15:15','shweta','2025-10-13 15:15:15',0),(0,0,'2526','H','O',636,2,0,'2025-10-13','00:00:00','NEU10015',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-13 15:15:15','shweta','2025-10-13 15:15:15',0),(0,0,'2526','H','O',637,1,0,'2025-10-13','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-13 15:28:07','shweta','2025-10-13 15:28:07',0),(0,0,'2526','H','O',638,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-13 15:29:03','shweta','2025-10-13 15:29:03',0),(0,0,'2526','H','O',639,1,0,'2025-10-13','00:00:00','WPRC0037',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-10-13 15:35:35','shweta','2025-10-13 15:35:35',0),(0,0,'2526','H','O',640,1,0,'2025-10-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 16:33:25','reception','2025-10-13 16:33:25',0),(0,0,'2526','H','O',641,1,0,'2025-10-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-13 16:45:28','shweta','2025-10-13 16:45:28',0),(0,0,'2526','H','O',642,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-13 16:47:26','shweta','2025-10-13 16:49:30',0),(0,0,'2526','H','O',643,1,0,'2025-10-13','00:00:00','CASE',0,-1.00,500,-500,'P',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-13 16:49:30','shweta','2025-10-13 16:49:30',0),(0,0,'2526','H','O',644,1,0,'2025-10-13','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 16:50:46','reception','2025-10-13 16:50:46',0),(0,0,'2526','H','O',645,1,0,'2025-10-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-13 16:50:47','shweta','2025-10-13 16:50:47',0),(0,0,'2526','H','O',645,2,0,'2025-10-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-13 16:50:47','shweta','2025-10-13 16:50:47',0),(0,0,'2526','H','O',646,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-13 16:57:47','reception','2025-10-13 17:29:01',0),(0,0,'2526','H','O',647,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-13 16:59:47','shweta','2025-10-13 16:59:47',0),(0,0,'2526','H','O',648,1,0,'2025-10-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-13 17:06:10','shweta','2025-10-13 17:06:10',0),(0,0,'2526','H','O',648,2,0,'2025-10-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-13 17:06:10','shweta','2025-10-13 17:06:10',0),(0,0,'2526','H','O',648,3,0,'2025-10-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-13 17:06:10','shweta','2025-10-13 17:06:10',0),(0,0,'2526','H','O',649,1,0,'2025-10-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-13 17:10:42','shweta','2025-10-13 17:10:42',0),(0,0,'2526','H','O',649,2,0,'2025-10-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-13 17:10:42','shweta','2025-10-13 17:10:42',0),(0,0,'2526','H','O',650,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 17:15:55','janvi','2025-10-13 17:15:55',0),(0,0,'2526','H','O',651,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 17:18:44','reception','2025-10-13 17:18:44',0),(0,0,'2526','H','O',652,1,0,'2025-10-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 17:19:19','reception','2025-10-13 17:19:19',0),(0,0,'2526','H','O',653,1,0,'2025-10-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-13 17:21:08','janvi','2025-10-13 17:21:08',0),(0,0,'2526','H','O',654,1,0,'2025-10-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 17:22:12','reception','2025-10-13 17:22:12',0),(0,0,'2526','H','O',654,2,0,'2025-10-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 17:22:12','reception','2025-10-13 17:22:12',0),(0,0,'2526','H','O',654,3,0,'2025-10-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 17:22:12','reception','2025-10-13 17:22:12',0),(0,0,'2526','H','O',655,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 17:26:24','reception','2025-10-13 17:26:24',0),(0,0,'2526','H','O',656,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-13 17:27:03','drashti','2025-10-13 17:27:03',0),(0,0,'2526','H','O',657,1,0,'2025-10-13','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 17:29:01','reception','2025-10-13 17:29:01',0),(0,0,'2526','H','O',658,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-13 17:29:11','reception','2025-10-13 17:59:58',0),(0,0,'2526','H','O',659,1,0,'2025-10-13','00:00:00','CASE',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 17:30:12','reception','2025-10-13 17:30:12',0),(0,0,'2526','H','O',660,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 17:42:56','reception','2025-10-13 17:42:56',0),(0,0,'2526','H','O',661,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 17:44:23','reception','2025-10-13 17:44:23',0),(0,0,'2526','H','O',662,1,0,'2025-10-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 17:44:44','drashti','2025-10-13 17:44:44',0),(0,0,'2526','H','O',663,1,0,'2025-10-13','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 17:47:36','janvi','2025-10-13 17:47:36',0),(0,0,'2526','H','O',664,1,0,'2025-10-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 17:49:28','reception','2025-10-13 17:49:28',0),(0,0,'2526','H','O',664,2,0,'2025-10-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 17:49:28','reception','2025-10-13 17:49:28',0),(0,0,'2526','H','O',664,3,0,'2025-10-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 17:49:28','reception','2025-10-13 17:49:28',0),(0,0,'2526','H','O',665,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 17:50:52','drashti','2025-10-13 17:50:52',0),(0,0,'2526','H','O',666,1,0,'2025-10-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 17:52:42','reception','2025-10-13 17:52:42',0),(0,0,'2526','H','O',667,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-13 17:54:28','drashti','2025-10-13 17:54:28',0),(0,0,'2526','H','O',668,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-13 17:55:43','drashti','2025-10-13 19:00:40',0),(0,0,'2526','H','O',669,1,0,'2025-10-13','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 17:59:58','reception','2025-10-13 17:59:58',0),(0,0,'2526','H','O',670,1,0,'2025-10-13','00:00:00','CASE',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 18:00:57','reception','2025-10-13 18:00:57',0),(0,0,'2526','H','O',671,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 18:03:43','reception','2025-10-13 18:03:43',0),(0,0,'2526','H','O',672,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-13 18:05:27','drashti','2025-10-13 18:05:27',0),(0,0,'2526','H','O',673,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-13 18:06:19','janvi','2025-10-13 18:06:19',0),(0,0,'2526','H','O',674,1,0,'2025-10-13','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 18:07:05','reception','2025-10-13 18:07:05',0),(0,0,'2526','H','O',675,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 18:09:27','drashti','2025-10-13 18:09:27',0),(0,0,'2526','H','O',676,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 18:09:49','janvi','2025-10-13 18:09:49',0),(0,0,'2526','H','O',677,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-13 18:09:56','manshi','2025-10-13 18:09:56',0),(0,0,'2526','H','O',678,1,0,'2025-10-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 18:10:59','drashti','2025-10-13 18:10:59',0),(0,0,'2526','H','O',679,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 18:12:11','reception','2025-10-13 18:51:16',0),(0,0,'2526','H','O',680,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 18:14:59','drashti','2025-10-13 18:14:59',0),(0,0,'2526','H','O',681,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 18:15:57','janvi','2025-10-13 18:15:57',0),(0,0,'2526','H','O',682,1,0,'2025-10-13','00:00:00','WPRC0046',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 18:17:00','janvi','2025-10-13 18:17:00',0),(0,0,'2526','H','O',683,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-13 18:18:52','reception','2025-10-13 18:18:52',0),(0,0,'2526','H','O',684,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-13 18:19:19','drashti','2025-10-13 18:19:19',0),(0,0,'2526','H','O',685,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-13 18:19:47','janvi','2025-10-13 18:19:47',0),(0,0,'2526','H','O',686,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 18:21:35','janvi','2025-10-13 18:21:35',0),(0,0,'2526','H','O',687,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-13 18:23:07','manshi','2025-10-13 18:23:07',0),(0,0,'2526','H','O',688,1,0,'2025-10-13','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-13 18:23:17','drashti','2025-10-13 18:23:17',0),(0,0,'2526','H','O',689,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 18:23:56','reception','2025-10-13 18:23:56',0),(0,0,'2526','H','O',690,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-13 18:24:56','manshi','2025-10-13 18:24:56',0),(0,0,'2526','H','O',691,1,0,'2025-10-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 18:30:51','reception','2025-10-13 18:30:51',0),(0,0,'2526','H','O',691,2,0,'2025-10-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 18:30:51','reception','2025-10-13 18:30:51',0),(0,0,'2526','H','O',691,3,0,'2025-10-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 18:30:51','reception','2025-10-13 18:30:51',0),(0,0,'2526','H','O',692,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 18:32:41','janvi','2025-10-13 18:32:41',0),(0,0,'2526','H','O',693,1,0,'2025-10-13','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 18:37:01','janvi','2025-10-13 18:37:01',0),(0,0,'2526','H','O',694,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-13 18:39:24','manshi','2025-10-13 18:39:24',0),(0,0,'2526','H','O',695,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-13 18:42:09','drashti','2025-10-13 18:42:09',0),(0,0,'2526','H','O',696,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 18:44:20','drashti','2025-10-13 18:44:20',0),(0,0,'2526','H','O',697,1,0,'2025-10-13','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-13 18:47:09','drashti','2025-10-13 18:47:09',0),(0,0,'2526','H','O',698,1,0,'2025-10-13','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-13 18:48:19','janvi','2025-10-13 18:48:19',0),(0,0,'2526','H','O',699,1,0,'2025-10-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 18:49:27','reception','2025-10-13 18:49:27',0),(0,0,'2526','H','O',700,1,0,'2025-10-13','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 18:49:37','janvi','2025-10-13 18:49:37',0),(0,0,'2526','H','O',701,1,0,'2025-10-13','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 18:51:16','reception','2025-10-13 18:51:16',0),(0,0,'2526','H','O',702,1,0,'2025-10-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-13 18:52:14','janvi','2025-10-13 18:52:14',0),(0,0,'2526','H','O',703,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 18:52:58','reception','2025-10-13 18:52:58',0),(0,0,'2526','H','O',704,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 18:53:50','janvi','2025-10-13 18:53:50',0),(0,0,'2526','H','O',705,1,0,'2025-10-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 18:54:35','drashti','2025-10-13 18:54:35',0),(0,0,'2526','H','O',706,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 18:54:55','reception','2025-10-13 18:54:55',0),(0,0,'2526','H','O',707,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-13 18:57:14','janvi','2025-10-13 18:57:14',0),(0,0,'2526','H','O',708,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 18:59:21','reception','2025-10-13 18:59:21',0),(0,0,'2526','H','O',709,1,0,'2025-10-13','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 19:00:40','drashti','2025-10-13 19:00:40',0),(0,0,'2526','H','O',710,1,0,'2025-10-13','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-13 19:07:17','janvi','2025-10-13 19:07:17',0),(0,0,'2526','H','O',711,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-13 19:08:01','reception','2025-10-13 19:08:01',0),(0,0,'2526','H','O',712,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-13 19:11:31','drashti','2025-10-13 19:11:31',0),(0,0,'2526','H','O',713,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-13 19:18:34','manshi','2025-10-13 19:18:34',0),(0,0,'2526','H','O',714,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-13 19:19:17','reception','2025-10-13 19:19:17',0),(0,0,'2526','H','O',715,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 19:21:25','janvi','2025-10-13 19:21:25',0),(0,0,'2526','H','O',716,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-13 19:24:06','janvi','2025-10-13 19:24:06',0),(0,0,'2526','H','O',717,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 19:26:29','drashti','2025-10-13 19:26:29',0),(0,0,'2526','H','O',718,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-13 19:27:17','manshi','2025-10-13 19:27:17',0),(0,0,'2526','H','O',719,1,0,'2025-10-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 19:29:11','reception','2025-10-13 19:29:11',0),(0,0,'2526','H','O',719,2,0,'2025-10-13','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-13 19:29:11','reception','2025-10-13 19:29:11',0),(0,0,'2526','H','O',720,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-13 19:29:51','manshi','2025-10-13 19:29:51',0),(0,0,'2526','H','O',721,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 19:36:19','janvi','2025-10-13 19:36:19',0),(0,0,'2526','H','O',722,1,0,'2025-10-13','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-13 19:41:24','janvi','2025-10-13 19:41:24',0),(0,0,'2526','H','O',723,1,0,'2025-10-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-13 19:45:11','drashti','2025-10-13 19:45:11',0),(0,0,'2526','H','O',724,1,0,'2025-10-13','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-13 19:49:36','drashti','2025-10-13 19:49:36',0),(0,0,'2526','H','O',725,1,0,'2025-10-13','00:00:00','WPRC0046',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-13 20:07:55','manshi','2025-10-13 20:07:55',0),(0,0,'2526','H','O',726,1,0,'2025-10-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-13 20:14:33','drashti','2025-10-13 20:14:33',0),(0,0,'2526','H','O',727,1,0,'2025-10-14','00:00:00','WPRC0046',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-14 08:50:03','shweta','2025-10-14 08:50:03',0),(0,0,'2526','H','O',727,2,0,'2025-10-14','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-14 08:50:03','shweta','2025-10-14 08:50:03',0),(0,0,'2526','H','O',728,1,0,'2025-10-14','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-14 08:52:23','shweta','2025-10-14 08:52:23',0),(0,0,'2526','H','O',728,2,0,'2025-10-14','00:00:00','OPWD0012',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-14 08:52:23','shweta','2025-10-14 08:52:23',0),(0,0,'2526','H','O',728,3,0,'2025-10-14','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-14 08:52:23','shweta','2025-10-14 08:52:23',0),(0,0,'2526','H','O',728,4,0,'2025-10-14','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-14 08:52:23','shweta','2025-10-14 08:52:23',0),(0,0,'2526','H','O',729,1,0,'2025-10-14','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-10-14 08:54:48','shweta','2025-10-14 08:54:48',0),(0,0,'2526','H','O',729,2,0,'2025-10-14','00:00:00','OPWD0012',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-10-14 08:54:48','shweta','2025-10-14 08:54:48',0),(0,0,'2526','H','O',729,3,0,'2025-10-14','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-14 08:54:48','shweta','2025-10-14 08:54:48',0),(0,0,'2526','H','O',729,4,0,'2025-10-14','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-10-14 08:54:48','shweta','2025-10-14 08:54:48',0),(0,0,'2526','H','O',730,1,0,'2025-10-14','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-10-14 08:56:17','shweta','2025-10-14 08:56:17',0),(0,0,'2526','H','O',730,2,0,'2025-10-14','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-10-14 08:56:17','shweta','2025-10-14 08:56:17',0),(0,0,'2526','H','O',731,1,0,'2025-10-14','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-10-14 08:58:45','shweta','2025-10-14 08:58:45',0),(0,0,'2526','H','O',731,2,0,'2025-10-14','00:00:00','OPWD0013',0,3.00,150,450,'P',0,0,450.00,0.00,0.00,450.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-10-14 08:58:45','shweta','2025-10-14 08:58:45',0),(0,0,'2526','H','O',731,3,0,'2025-10-14','00:00:00','XRY0045',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-14 08:58:45','shweta','2025-10-14 08:58:45',0),(0,0,'2526','H','O',732,1,0,'2025-10-14','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-10-14 09:00:09','shweta','2025-10-14 09:00:09',0),(0,0,'2526','H','O',732,2,0,'2025-10-14','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-14 09:00:09','shweta','2025-10-14 09:00:09',0),(0,0,'2526','H','O',732,3,0,'2025-10-14','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-14 09:00:09','shweta','2025-10-14 09:00:09',0),(0,0,'2526','H','O',733,1,0,'2025-10-14','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-14 09:01:58','shweta','2025-10-14 09:01:58',0),(0,0,'2526','H','O',733,2,0,'2025-10-14','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-14 09:01:58','shweta','2025-10-14 09:01:58',0),(0,0,'2526','H','O',733,3,0,'2025-10-14','00:00:00','WPRC0049',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-14 09:01:58','shweta','2025-10-14 09:01:58',0),(0,0,'2526','H','O',734,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-14 09:32:56','shweta','2025-10-14 09:32:56',0),(0,0,'2526','H','O',735,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 09:46:29','reception','2025-10-14 09:46:29',0),(0,0,'2526','H','O',736,1,0,'2025-10-14','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 10:06:48','reception','2025-10-14 10:06:48',0),(0,0,'2526','H','O',737,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-14 10:16:28','reception','2025-10-14 10:16:28',0),(0,0,'2526','H','O',738,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 10:21:04','reception','2025-10-14 10:21:04',0),(0,0,'2526','H','O',739,1,0,'2025-10-14','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-14 10:32:53','drashti','2025-10-14 10:32:53',0),(0,0,'2526','H','O',740,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 10:33:07','reception','2025-10-14 10:33:07',0),(0,0,'2526','H','O',741,1,0,'2025-10-14','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-14 10:36:23','drashti','2025-10-14 10:36:23',0),(0,0,'2526','H','O',742,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 10:36:51','reception','2025-10-14 10:36:51',0),(0,0,'2526','H','O',743,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 10:39:02','drashti','2025-10-14 10:39:02',0),(0,0,'2526','H','O',744,1,0,'2025-10-14','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-14 10:41:13','janvi','2025-10-14 10:41:13',0),(0,0,'2526','H','O',745,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 10:48:47','reception','2025-10-14 10:48:47',0),(0,0,'2526','H','O',746,1,0,'2025-10-14','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-14 10:49:42','janvi','2025-10-14 10:49:42',0),(0,0,'2526','H','O',747,1,0,'2025-10-14','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 10:56:10','reception','2025-10-14 10:56:10',0),(0,0,'2526','H','O',748,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 10:58:14','drashti','2025-10-14 10:58:14',0),(0,0,'2526','H','O',749,1,0,'2025-10-14','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-14 10:59:28','janvi','2025-10-14 10:59:28',0),(0,0,'2526','H','O',750,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 11:03:30','reception','2025-10-14 11:03:30',0),(0,0,'2526','H','O',751,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-14 11:05:31','drashti','2025-10-14 11:05:31',0),(0,0,'2526','H','O',752,1,0,'2025-10-14','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-14 11:07:01','janvi','2025-10-14 11:07:01',0),(0,0,'2526','H','O',752,2,0,'2025-10-14','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-14 11:07:01','janvi','2025-10-14 11:07:01',0),(0,0,'2526','H','O',752,3,0,'2025-10-14','00:00:00','OPWD0013',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-14 11:07:01','janvi','2025-10-14 11:07:01',0),(0,0,'2526','H','O',753,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 11:07:47','drashti','2025-10-14 11:07:47',0),(0,0,'2526','H','O',754,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 11:12:49','reception','2025-10-14 11:12:49',0),(0,0,'2526','H','O',755,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-14 11:13:46','manshi','2025-10-14 11:13:46',0),(0,0,'2526','H','O',756,1,0,'2025-10-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 11:16:39','drashti','2025-10-14 11:16:39',0),(0,0,'2526','H','O',757,1,0,'2025-10-14','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 11:17:48','reception','2025-10-14 11:17:48',0),(0,0,'2526','H','O',758,1,0,'2025-10-14','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 11:19:11','reception','2025-10-14 11:19:11',0),(0,0,'2526','H','O',759,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 11:22:01','reception','2025-10-14 11:22:01',0),(0,0,'2526','H','O',760,1,0,'2025-10-14','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-14 11:22:12','reception','2025-10-14 11:22:12',0),(0,0,'2526','H','O',761,1,0,'2025-10-14','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-14 11:25:12','reception','2025-10-14 11:25:12',0),(0,0,'2526','H','O',761,2,0,'2025-10-14','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-14 11:25:12','reception','2025-10-14 11:25:12',0),(0,0,'2526','H','O',761,3,0,'2025-10-14','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-14 11:25:12','reception','2025-10-14 11:25:12',0),(0,0,'2526','H','O',762,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-14 11:28:44','manshi','2025-10-14 11:28:44',0),(0,0,'2526','H','O',763,1,0,'2025-10-14','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 11:40:22','reception','2025-10-14 11:40:22',0),(0,0,'2526','H','O',764,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 11:40:57','drashti','2025-10-14 11:40:57',0),(0,0,'2526','H','O',765,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-14 11:41:14','janvi','2025-10-14 11:41:14',0),(0,0,'2526','H','O',766,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 11:42:38','reception','2025-10-14 11:42:38',0),(0,0,'2526','H','O',767,1,0,'2025-10-14','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-14 11:44:17','reception','2025-10-14 11:44:17',0),(0,0,'2526','H','O',767,2,0,'2025-10-14','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-14 11:44:17','reception','2025-10-14 11:44:17',0),(0,0,'2526','H','O',768,1,0,'2025-10-14','00:00:00','XRY0353',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-14 11:47:17','manshi','2025-10-14 11:47:17',0),(0,0,'2526','H','O',769,1,0,'2025-10-14','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-14 11:48:58','manshi','2025-10-14 11:48:58',0),(0,0,'2526','H','O',770,1,0,'2025-10-14','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 11:51:24','reception','2025-10-14 11:51:24',0),(0,0,'2526','H','O',771,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 12:00:03','reception','2025-10-14 12:00:03',0),(0,0,'2526','H','O',772,1,0,'2025-10-14','00:00:00','XRY0390',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-14 12:05:14','manshi','2025-10-14 12:05:14',0),(0,0,'2526','H','O',773,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-14 12:10:49','janvi','2025-10-14 12:10:49',0),(0,0,'2526','H','O',774,1,0,'2025-10-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 12:13:45','drashti','2025-10-14 12:13:45',0),(0,0,'2526','H','O',775,1,0,'2025-10-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 12:18:15','drashti','2025-10-14 12:18:15',0),(0,0,'2526','H','O',776,1,0,'2025-10-14','00:00:00','XRY0151',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-14 12:18:39','manshi','2025-10-14 12:18:39',0),(0,0,'2526','H','O',777,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 12:19:28','reception','2025-10-14 12:19:28',0),(0,0,'2526','H','O',778,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-14 12:19:45','janvi','2025-10-14 12:19:45',0),(0,0,'2526','H','O',779,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 12:28:39','drashti','2025-10-14 12:28:39',0),(0,0,'2526','H','O',780,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 12:32:48','drashti','2025-10-14 12:32:48',0),(0,0,'2526','H','O',781,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 12:36:23','reception','2025-10-14 12:36:23',0),(0,0,'2526','H','O',782,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-14 12:36:49','janvi','2025-10-14 12:36:49',0),(0,0,'2526','H','O',783,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-14 12:37:03','drashti','2025-10-14 12:37:03',0),(0,0,'2526','H','O',784,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-14 12:38:46','janvi','2025-10-14 12:38:46',0),(0,0,'2526','H','O',785,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 12:43:25','drashti','2025-10-14 12:43:25',0),(0,0,'2526','H','O',786,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 12:44:51','reception','2025-10-14 12:44:51',0),(0,0,'2526','H','O',787,1,0,'2025-10-14','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 12:47:44','reception','2025-10-14 12:47:44',0),(0,0,'2526','H','O',788,1,0,'2025-10-14','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-14 12:50:42','reception','2025-10-14 12:50:42',0),(0,0,'2526','H','O',788,2,0,'2025-10-14','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-14 12:50:42','reception','2025-10-14 12:50:42',0),(0,0,'2526','H','O',788,3,0,'2025-10-14','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-14 12:50:42','reception','2025-10-14 12:50:42',0),(0,0,'2526','H','O',789,1,0,'2025-10-14','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-14 12:54:21','drashti','2025-10-14 12:54:21',0),(0,0,'2526','H','O',789,2,0,'2025-10-14','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-14 12:54:21','drashti','2025-10-14 12:54:21',0),(0,0,'2526','H','O',790,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-14 12:56:10','janvi','2025-10-14 12:56:10',0),(0,0,'2526','H','O',791,1,0,'2025-10-14','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-14 13:01:06','reception','2025-10-14 13:01:06',0),(0,0,'2526','H','O',791,2,0,'2025-10-14','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-14 13:01:06','reception','2025-10-14 13:01:06',0),(0,0,'2526','H','O',791,3,0,'2025-10-14','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-14 13:01:06','reception','2025-10-14 13:01:06',0),(0,0,'2526','H','O',792,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-14 13:06:47','urvashi','2025-10-14 13:06:47',0),(0,0,'2526','H','O',793,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-14 13:12:54','urvashi','2025-10-14 13:12:54',0),(0,0,'2526','H','O',794,1,0,'2025-10-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 13:14:30','drashti','2025-10-14 13:14:30',0),(0,0,'2526','H','O',795,1,0,'2025-10-14','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-14 13:16:28','urvashi','2025-10-14 13:16:28',0),(0,0,'2526','H','O',795,2,0,'2025-10-14','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-14 13:16:28','urvashi','2025-10-14 13:16:28',0),(0,0,'2526','H','O',795,3,0,'2025-10-14','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-14 13:16:28','urvashi','2025-10-14 13:16:28',0),(0,0,'2526','H','O',796,1,0,'2025-10-14','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-14 13:39:07','drashti','2025-10-14 13:39:07',0),(0,0,'2526','H','O',796,2,0,'2025-10-14','00:00:00','NEU10017',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-14 13:39:07','drashti','2025-10-14 13:39:07',0),(0,0,'2526','H','O',797,1,0,'2025-10-14','00:00:00','USG0009',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 13:51:10','drashti','2025-10-14 13:51:10',0),(0,0,'2526','H','O',798,1,0,'2025-10-14','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-14 16:42:32','reception','2025-10-14 16:42:32',0),(0,0,'2526','H','O',798,2,0,'2025-10-14','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-14 16:42:32','reception','2025-10-14 16:42:32',0),(0,0,'2526','H','O',798,3,0,'2025-10-14','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-14 16:42:32','reception','2025-10-14 16:42:32',0),(0,0,'2526','H','O',799,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 16:51:48','reception','2025-10-14 16:51:48',0),(0,0,'2526','H','O',800,1,0,'2025-10-14','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-14 16:52:10','shweta','2025-10-14 16:52:10',0),(0,0,'2526','H','O',801,1,0,'2025-10-14','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 16:53:39','reception','2025-10-14 16:53:39',0),(0,0,'2526','H','O',802,1,0,'2025-10-14','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 16:58:36','reception','2025-10-14 16:58:36',0),(0,0,'2526','H','O',803,1,0,'2025-10-14','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-14 17:13:18','reception','2025-10-14 17:13:18',0),(0,0,'2526','H','O',804,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-14 17:15:09','drashti','2025-10-14 17:15:09',0),(0,0,'2526','H','O',805,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-14 17:17:57','urvashi','2025-10-14 17:17:57',0),(0,0,'2526','H','O',806,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-14 17:18:54','drashti','2025-10-14 17:18:54',0),(0,0,'2526','H','O',807,1,0,'2025-10-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 17:28:52','drashti','2025-10-14 17:28:52',0),(0,0,'2526','H','O',808,1,0,'2025-10-14','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-14 17:37:37','urvashi','2025-10-14 17:37:37',0),(0,0,'2526','H','O',808,2,0,'2025-10-14','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-14 17:37:37','urvashi','2025-10-14 17:37:37',0),(0,0,'2526','H','O',808,3,0,'2025-10-14','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-14 17:37:37','urvashi','2025-10-14 17:37:37',0),(0,0,'2526','H','O',808,4,0,'2025-10-14','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-14 17:37:37','urvashi','2025-10-14 17:37:37',0),(0,0,'2526','H','O',809,1,0,'2025-10-14','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-14 17:39:15','manshi','2025-10-14 17:39:15',0),(0,0,'2526','H','O',810,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-14 17:41:07','urvashi','2025-10-14 17:41:07',0),(0,0,'2526','H','O',811,1,0,'2025-10-14','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-14 17:44:53','janvi','2025-10-14 17:44:53',0),(0,0,'2526','H','O',812,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 17:44:55','drashti','2025-10-14 17:44:55',0),(0,0,'2526','H','O',813,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-14 17:46:16','urvashi','2025-10-14 17:46:16',0),(0,0,'2526','H','O',814,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-14 17:46:40','urvashi','2025-10-14 17:46:40',0),(0,0,'2526','H','O',815,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-14 17:47:53','urvashi','2025-10-14 19:19:02',0),(0,0,'2526','H','O',816,1,0,'2025-10-14','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-14 17:48:33','janvi','2025-10-14 17:48:33',0),(0,0,'2526','H','O',817,1,0,'2025-10-14','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-14 17:51:46','urvashi','2025-10-14 17:51:46',0),(0,0,'2526','H','O',818,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-14 17:52:06','drashti','2025-10-14 17:52:06',0),(0,0,'2526','H','O',819,1,0,'2025-10-14','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-14 17:56:09','urvashi','2025-10-14 17:56:09',0),(0,0,'2526','H','O',819,2,0,'2025-10-14','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-14 17:56:09','urvashi','2025-10-14 17:56:09',0),(0,0,'2526','H','O',819,3,0,'2025-10-14','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-14 17:56:09','urvashi','2025-10-14 17:56:09',0),(0,0,'2526','H','O',820,1,0,'2025-10-14','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-14 17:57:03','manshi','2025-10-14 17:57:03',0),(0,0,'2526','H','O',821,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-14 17:57:23','drashti','2025-10-14 17:57:23',0),(0,0,'2526','H','O',822,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-14 17:57:57','janvi','2025-10-14 17:57:57',0),(0,0,'2526','H','O',823,1,0,'2025-10-14','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-14 17:58:10','urvashi','2025-10-14 17:58:10',0),(0,0,'2526','H','O',824,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 17:59:52','drashti','2025-10-14 17:59:52',0),(0,0,'2526','H','O',825,1,0,'2025-10-14','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-14 18:00:42','janvi','2025-10-14 18:00:42',0),(0,0,'2526','H','O',826,1,0,'2025-10-14','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-14 18:00:58','urvashi','2025-10-14 18:00:58',0),(0,0,'2526','H','O',826,2,0,'2025-10-14','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-14 18:00:58','urvashi','2025-10-14 18:00:58',0),(0,0,'2526','H','O',826,3,0,'2025-10-14','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-14 18:00:58','urvashi','2025-10-14 18:00:58',0),(0,0,'2526','H','O',827,1,0,'2025-10-14','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-14 18:03:32','janvi','2025-10-14 18:03:32',0),(0,0,'2526','H','O',828,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-14 18:04:50','urvashi','2025-10-14 18:04:50',0),(0,0,'2526','H','O',829,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-14 18:11:56','urvashi','2025-10-14 18:11:56',0),(0,0,'2526','H','O',830,1,0,'2025-10-14','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-14 18:12:28','drashti','2025-10-14 18:12:28',0),(0,0,'2526','H','O',831,1,0,'2025-10-14','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-14 18:19:28','urvashi','2025-10-14 18:19:28',0),(0,0,'2526','H','O',832,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 18:21:01','drashti','2025-10-14 18:21:01',0),(0,0,'2526','H','O',833,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-14 18:22:08','urvashi','2025-10-14 18:22:08',0),(0,0,'2526','H','O',834,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-14 18:23:25','janvi','2025-10-14 18:28:12',0),(0,0,'2526','H','O',835,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-14 18:24:59','drashti','2025-10-14 18:24:59',0),(0,0,'2526','H','O',836,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-14 18:27:21','janvi','2025-10-14 18:27:21',0),(0,0,'2526','H','O',837,1,0,'2025-10-14','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-14 18:28:12','janvi','2025-10-14 18:28:12',0),(0,0,'2526','H','O',838,1,0,'2025-10-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 18:28:40','drashti','2025-10-14 18:28:40',0),(0,0,'2526','H','O',839,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-14 18:29:37','urvashi','2025-10-14 18:29:37',0),(0,0,'2526','H','O',840,1,0,'2025-10-14','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-14 18:31:50','janvi','2025-10-14 18:31:50',0),(0,0,'2526','H','O',841,1,0,'2025-10-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-14 18:31:58','janvi','2025-10-14 18:31:58',0),(0,0,'2526','H','O',841,2,0,'2025-10-14','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-14 18:31:58','janvi','2025-10-14 18:31:58',0),(0,0,'2526','H','O',842,1,0,'2025-10-14','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-14 18:32:15','urvashi','2025-10-14 18:32:15',0),(0,0,'2526','H','O',842,2,0,'2025-10-14','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-14 18:32:15','urvashi','2025-10-14 18:32:15',0),(0,0,'2526','H','O',843,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 18:32:42','drashti','2025-10-14 18:32:42',0),(0,0,'2526','H','O',844,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-14 18:35:10','drashti','2025-10-14 18:35:10',0),(0,0,'2526','H','O',845,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 18:37:02','drashti','2025-10-14 18:37:02',0),(0,0,'2526','H','O',846,1,0,'2025-10-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 18:47:48','drashti','2025-10-14 18:47:48',0),(0,0,'2526','H','O',847,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 18:58:39','drashti','2025-10-14 18:58:39',0),(0,0,'2526','H','O',848,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-14 19:04:20','urvashi','2025-10-14 19:04:20',0),(0,0,'2526','H','O',849,1,0,'2025-10-14','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-14 19:05:35','urvashi','2025-10-14 19:05:35',0),(0,0,'2526','H','O',850,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 19:06:17','drashti','2025-10-14 19:06:17',0),(0,0,'2526','H','O',851,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-14 19:06:22','janvi','2025-10-14 19:06:22',0),(0,0,'2526','H','O',852,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 19:16:57','drashti','2025-10-14 19:16:57',0),(0,0,'2526','H','O',853,1,0,'2025-10-14','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-14 19:18:32','manshi','2025-10-14 19:18:32',0),(0,0,'2526','H','O',854,1,0,'2025-10-14','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-14 19:19:02','urvashi','2025-10-14 19:19:02',0),(0,0,'2526','H','O',855,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 19:19:34','drashti','2025-10-14 19:19:34',0),(0,0,'2526','H','O',856,1,0,'2025-10-14','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-14 19:19:58','urvashi','2025-10-14 19:19:58',0),(0,0,'2526','H','O',857,1,0,'2025-10-14','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-14 19:27:38','janvi','2025-10-14 19:27:38',0),(0,0,'2526','H','O',858,1,0,'2025-10-14','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 19:32:28','drashti','2025-10-14 19:32:28',0),(0,0,'2526','H','O',859,1,0,'2025-10-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-14 19:41:30','drashti','2025-10-14 19:41:30',0),(0,0,'2526','H','O',860,1,0,'2025-10-14','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-14 19:47:52','janvi','2025-10-14 19:47:52',0),(0,0,'2526','H','O',861,1,0,'2025-10-14','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-14 19:49:15','urvashi','2025-10-14 19:49:15',0),(0,0,'2526','H','O',862,1,0,'2025-10-14','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-14 19:54:15','janvi','2025-10-14 19:54:15',0),(0,0,'2526','H','O',863,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 09:11:34','reception','2025-10-15 09:11:34',0),(0,0,'2526','H','O',864,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-15 09:13:00','janvi','2025-10-15 09:13:00',0),(0,0,'2526','H','O',865,1,0,'2025-10-15','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-10-15 09:13:09','priyanshi','2025-10-15 09:13:09',0),(0,0,'2526','H','O',865,2,0,'2025-10-15','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-10-15 09:13:09','priyanshi','2025-10-15 09:13:09',0),(0,0,'2526','H','O',865,3,0,'2025-10-15','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-10-15 09:13:09','priyanshi','2025-10-15 09:13:09',0),(0,0,'2526','H','O',865,4,0,'2025-10-15','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-10-15 09:13:09','priyanshi','2025-10-15 09:13:09',0),(0,0,'2526','H','O',866,1,0,'2025-10-15','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-10-15 09:15:48','priyanshi','2025-10-15 09:15:48',0),(0,0,'2526','H','O',866,2,0,'2025-10-15','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-10-15 09:15:48','priyanshi','2025-10-15 09:15:48',0),(0,0,'2526','H','O',866,3,0,'2025-10-15','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-10-15 09:15:48','priyanshi','2025-10-15 09:15:48',0),(0,0,'2526','H','O',866,4,0,'2025-10-15','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-10-15 09:15:48','priyanshi','2025-10-15 09:15:48',0),(0,0,'2526','H','O',866,5,0,'2025-10-15','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-10-15 09:15:48','priyanshi','2025-10-15 09:15:48',0),(0,0,'2526','H','O',867,1,0,'2025-10-15','00:00:00','SURG0005',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-15 09:18:29','priyanshi','2025-10-15 09:18:29',0),(0,0,'2526','H','O',868,1,0,'2025-10-15','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-10-15 09:29:07','priyanshi','2025-10-15 09:29:07',0),(0,0,'2526','H','O',869,1,0,'2025-10-15','00:00:00','LAB0817',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-10-15 09:39:51','priyanshi','2025-10-15 09:39:51',0),(0,0,'2526','H','O',870,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 09:42:07','reception','2025-10-15 09:42:07',0),(0,0,'2526','H','O',871,1,0,'2025-10-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 09:53:48','reception','2025-10-15 09:53:48',0),(0,0,'2526','H','O',872,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-15 09:57:39','janvi','2025-10-15 09:57:39',0),(0,0,'2526','H','O',873,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-10-15 10:03:27','janvi','2025-10-15 10:19:35',0),(0,0,'2526','H','O',874,1,0,'2025-10-15','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-15 10:19:35','janvi','2025-10-15 10:19:35',0),(0,0,'2526','H','O',875,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-15 10:27:05','reception','2025-10-15 10:27:05',0),(0,0,'2526','H','O',876,1,0,'2025-10-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-15 10:34:41','drashti','2025-10-15 10:34:41',0),(0,0,'2526','H','O',877,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 10:37:44','reception','2025-10-15 10:37:44',0),(0,0,'2526','H','O',878,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 10:39:35','reception','2025-10-15 10:39:35',0),(0,0,'2526','H','O',879,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 10:47:15','drashti','2025-10-15 10:47:15',0),(0,0,'2526','H','O',880,1,0,'2025-10-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 10:47:19','reception','2025-10-15 10:47:19',0),(0,0,'2526','H','O',881,1,0,'2025-10-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 10:49:09','reception','2025-10-15 10:49:09',0),(0,0,'2526','H','O',882,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-15 10:51:34','manshi','2025-10-15 10:51:34',0),(0,0,'2526','H','O',882,2,0,'2025-10-15','00:00:00','XRY0370',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-15 10:51:34','manshi','2025-10-15 10:51:34',0),(0,0,'2526','H','O',883,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-15 10:52:12','janvi','2025-10-15 10:52:12',0),(0,0,'2526','H','O',884,1,0,'2025-10-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-15 10:57:25','manshi','2025-10-15 10:57:25',0),(0,0,'2526','H','O',885,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-15 10:59:13','manshi','2025-10-15 10:59:13',0),(0,0,'2526','H','O',886,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 11:00:07','drashti','2025-10-15 11:00:07',0),(0,0,'2526','H','O',887,1,0,'2025-10-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-15 11:01:16','manshi','2025-10-15 11:13:54',0),(0,0,'2526','H','O',888,1,0,'2025-10-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-15 11:01:54','drashti','2025-10-15 11:01:54',0),(0,0,'2526','H','O',889,1,0,'2025-10-15','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-15 11:04:07','drashti','2025-10-15 11:04:07',0),(0,0,'2526','H','O',890,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 11:07:06','reception','2025-10-15 11:07:06',0),(0,0,'2526','H','O',891,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 11:12:07','drashti','2025-10-15 11:12:07',0),(0,0,'2526','H','O',892,1,0,'2025-10-15','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-15 11:13:54','manshi','2025-10-15 11:13:54',0),(0,0,'2526','H','O',893,1,0,'2025-10-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-15 11:20:59','manshi','2025-10-15 11:20:59',0),(0,0,'2526','H','O',894,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 11:21:04','reception','2025-10-15 11:21:04',0),(0,0,'2526','H','O',895,1,0,'2025-10-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 11:24:01','drashti','2025-10-15 11:24:01',0),(0,0,'2526','H','O',896,1,0,'2025-10-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 11:24:09','reception','2025-10-15 11:24:09',0),(0,0,'2526','H','O',897,1,0,'2025-10-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-15 11:24:26','janvi','2025-10-15 11:24:26',0),(0,0,'2526','H','O',898,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-15 11:25:40','janvi','2025-10-15 11:25:40',0),(0,0,'2526','H','O',899,1,0,'2025-10-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 11:30:01','drashti','2025-10-15 11:30:01',0),(0,0,'2526','H','O',900,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 11:31:21','reception','2025-10-15 11:31:21',0),(0,0,'2526','H','O',901,1,0,'2025-10-15','00:00:00','OPWD0012',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-15 11:33:34','manshi','2025-10-15 11:33:34',0),(0,0,'2526','H','O',902,1,0,'2025-10-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 11:35:14','reception','2025-10-15 11:35:14',0),(0,0,'2526','H','O',902,2,0,'2025-10-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 11:35:14','reception','2025-10-15 11:35:14',0),(0,0,'2526','H','O',902,3,0,'2025-10-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 11:35:14','reception','2025-10-15 11:35:14',0),(0,0,'2526','H','O',903,1,0,'2025-10-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 11:39:27','reception','2025-10-15 11:39:27',0),(0,0,'2526','H','O',904,1,0,'2025-10-15','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 11:43:19','reception','2025-10-15 11:43:19',0),(0,0,'2526','H','O',904,2,0,'2025-10-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 11:43:19','reception','2025-10-15 11:43:19',0),(0,0,'2526','H','O',904,3,0,'2025-10-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 11:43:19','reception','2025-10-15 11:43:19',0),(0,0,'2526','H','O',905,1,0,'2025-10-15','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-15 11:45:24','janvi','2025-10-15 11:45:24',0),(0,0,'2526','H','O',906,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 11:50:09','drashti','2025-10-15 11:50:09',0),(0,0,'2526','H','O',907,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 11:52:28','drashti','2025-10-15 11:52:28',0),(0,0,'2526','H','O',908,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-15 11:52:48','janvi','2025-10-15 11:52:48',0),(0,0,'2526','H','O',909,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 11:53:27','reception','2025-10-15 11:53:27',0),(0,0,'2526','H','O',910,1,0,'2025-10-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 11:54:36','drashti','2025-10-15 11:54:36',0),(0,0,'2526','H','O',911,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 11:54:45','reception','2025-10-15 11:54:45',0),(0,0,'2526','H','O',912,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 12:08:38','drashti','2025-10-15 12:08:38',0),(0,0,'2526','H','O',913,1,0,'2025-10-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 12:10:21','reception','2025-10-15 12:10:21',0),(0,0,'2526','H','O',914,1,0,'2025-10-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 12:10:28','drashti','2025-10-15 12:10:28',0),(0,0,'2526','H','O',915,1,0,'2025-10-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-15 12:12:07','janvi','2025-10-15 12:12:07',0),(0,0,'2526','H','O',916,1,0,'2025-10-15','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-15 12:12:48','janvi','2025-10-15 12:12:48',0),(0,0,'2526','H','O',916,2,0,'2025-10-15','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-15 12:12:48','janvi','2025-10-15 12:12:48',0),(0,0,'2526','H','O',917,1,0,'2025-10-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 12:13:46','reception','2025-10-15 12:13:46',0),(0,0,'2526','H','O',918,1,0,'2025-10-15','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-15 12:15:12','drashti','2025-10-15 12:15:12',0),(0,0,'2526','H','O',919,1,0,'2025-10-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-15 12:21:26','janvi','2025-10-15 12:21:26',0),(0,0,'2526','H','O',920,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-15 12:21:33','drashti','2025-10-15 12:21:33',0),(0,0,'2526','H','O',921,1,0,'2025-10-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-15 12:25:01','manshi','2025-10-15 12:25:01',0),(0,0,'2526','H','O',922,1,0,'2025-10-15','00:00:00','NEU10020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 12:27:36','reception','2025-10-15 12:27:36',0),(0,0,'2526','H','O',922,2,0,'2025-10-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 12:27:36','reception','2025-10-15 12:27:36',0),(0,0,'2526','H','O',923,1,0,'2025-10-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-15 12:28:18','janvi','2025-10-15 12:28:18',0),(0,0,'2526','H','O',924,1,0,'2025-10-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 12:30:40','reception','2025-10-15 12:30:40',0),(0,0,'2526','H','O',925,1,0,'2025-10-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 12:32:06','drashti','2025-10-15 12:32:06',0),(0,0,'2526','H','O',926,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 12:35:52','reception','2025-10-15 12:35:52',0),(0,0,'2526','H','O',927,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-15 12:40:43','reception','2025-10-15 12:40:43',0),(0,0,'2526','H','O',928,1,0,'2025-10-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 12:52:23','drashti','2025-10-15 12:52:23',0),(0,0,'2526','H','O',929,1,0,'2025-10-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-15 13:00:18','reception','2025-10-15 13:00:18',0),(0,0,'2526','H','O',930,1,0,'2025-10-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 13:05:03','reception','2025-10-15 13:05:03',0),(0,0,'2526','H','O',930,2,0,'2025-10-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 13:05:03','reception','2025-10-15 13:05:03',0),(0,0,'2526','H','O',930,3,0,'2025-10-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 13:05:03','reception','2025-10-15 13:05:03',0),(0,0,'2526','H','O',931,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 13:07:05','drashti','2025-10-15 13:07:05',0),(0,0,'2526','H','O',932,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-15 13:23:55','reception','2025-10-15 13:23:55',0),(0,0,'2526','H','O',933,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 13:26:34','reception','2025-10-15 14:08:52',0),(0,0,'2526','H','O',934,1,0,'2025-10-15','00:00:00','OPWD0012',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-15 13:30:20','manshi','2025-10-15 13:30:20',0),(0,0,'2526','H','O',935,1,0,'2025-10-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 13:48:40','reception','2025-10-15 13:48:40',0),(0,0,'2526','H','O',935,2,0,'2025-10-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 13:48:40','reception','2025-10-15 13:48:40',0),(0,0,'2526','H','O',935,3,0,'2025-10-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 13:48:40','reception','2025-10-15 13:48:40',0),(0,0,'2526','H','O',936,1,0,'2025-10-15','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-15 13:50:20','drashti','2025-10-15 13:50:20',0),(0,0,'2526','H','O',937,1,0,'2025-10-15','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-15 14:03:09','reception','2025-10-15 14:03:09',0),(0,0,'2526','H','O',938,1,0,'2025-10-15','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 14:08:52','reception','2025-10-15 14:08:52',0),(0,0,'2526','H','O',939,1,0,'2025-10-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-15 16:04:22','priyanshi','2025-10-15 16:04:22',0),(0,0,'2526','H','O',940,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 16:31:33','reception','2025-10-15 16:31:33',0),(0,0,'2526','H','O',941,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-15 16:33:47','priyanshi','2025-10-15 16:33:47',0),(0,0,'2526','H','O',942,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 17:01:20','reception','2025-10-15 17:01:20',0),(0,0,'2526','H','O',943,1,0,'2025-10-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-15 17:02:57','priyanshi','2025-10-15 17:02:57',0),(0,0,'2526','H','O',944,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 17:07:49','reception','2025-10-15 17:07:49',0),(0,0,'2526','H','O',945,1,0,'2025-10-15','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 17:19:49','reception','2025-10-15 18:06:42',0),(0,0,'2526','H','O',946,1,0,'2025-10-15','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 17:29:39','reception','2025-10-15 17:29:39',0),(0,0,'2526','H','O',946,2,0,'2025-10-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 17:29:39','reception','2025-10-15 17:29:39',0),(0,0,'2526','H','O',947,1,0,'2025-10-15','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-15 17:32:41','janvi','2025-10-15 18:44:16',0),(0,0,'2526','H','O',948,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 17:36:16','reception','2025-10-15 17:36:16',0),(0,0,'2526','H','O',949,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-15 17:41:31','drashti','2025-10-15 17:41:31',0),(0,0,'2526','H','O',950,1,0,'2025-10-15','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-15 17:44:36','janvi','2025-10-15 17:44:36',0),(0,0,'2526','H','O',951,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-15 17:45:48','drashti','2025-10-15 17:45:48',0),(0,0,'2526','H','O',952,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-15 17:46:40','janvi','2025-10-15 17:46:40',0),(0,0,'2526','H','O',953,1,0,'2025-10-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 17:48:06','reception','2025-10-15 17:48:06',0),(0,0,'2526','H','O',953,2,0,'2025-10-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 17:48:06','reception','2025-10-15 17:48:06',0),(0,0,'2526','H','O',953,3,0,'2025-10-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 17:48:06','reception','2025-10-15 17:48:06',0),(0,0,'2526','H','O',954,1,0,'2025-10-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 17:50:38','reception','2025-10-15 17:50:38',0),(0,0,'2526','H','O',955,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-15 17:50:58','drashti','2025-10-15 17:50:58',0),(0,0,'2526','H','O',956,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 17:52:37','drashti','2025-10-15 17:52:37',0),(0,0,'2526','H','O',957,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-15 17:55:13','janvi','2025-10-15 17:55:13',0),(0,0,'2526','H','O',958,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 17:59:23','reception','2025-10-15 17:59:23',0),(0,0,'2526','H','O',959,1,0,'2025-10-15','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 18:06:42','reception','2025-10-15 18:06:42',0),(0,0,'2526','H','O',960,1,0,'2025-10-15','00:00:00','CASE',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 18:08:23','reception','2025-10-15 18:08:23',0),(0,0,'2526','H','O',961,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 18:08:55','drashti','2025-10-15 18:08:55',0),(0,0,'2526','H','O',962,1,0,'2025-10-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-15 18:09:08','manshi','2025-10-15 18:09:08',0),(0,0,'2526','H','O',963,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 18:12:38','reception','2025-10-15 18:12:38',0),(0,0,'2526','H','O',964,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 18:13:21','drashti','2025-10-15 18:13:21',0),(0,0,'2526','H','O',965,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-15 18:15:35','janvi','2025-10-15 18:15:35',0),(0,0,'2526','H','O',966,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-15 18:16:01','reception','2025-10-15 18:16:01',0),(0,0,'2526','H','O',967,1,0,'2025-10-15','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-15 18:17:30','janvi','2025-10-15 18:17:30',0),(0,0,'2526','H','O',968,1,0,'2025-10-15','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-15 18:22:01','janvi','2025-10-15 18:22:01',0),(0,0,'2526','H','O',969,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 18:23:53','reception','2025-10-15 18:23:53',0),(0,0,'2526','H','O',970,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 18:26:42','drashti','2025-10-15 18:26:42',0),(0,0,'2526','H','O',971,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 18:30:06','reception','2025-10-15 18:30:06',0),(0,0,'2526','H','O',972,1,0,'2025-10-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 18:31:30','reception','2025-10-15 18:31:30',0),(0,0,'2526','H','O',973,1,0,'2025-10-15','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-15 18:31:47','janvi','2025-10-15 18:31:47',0),(0,0,'2526','H','O',974,1,0,'2025-10-15','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-15 18:32:36','janvi','2025-10-15 18:32:36',0),(0,0,'2526','H','O',975,1,0,'2025-10-15','00:00:00','XRY0244',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-15 18:33:18','manshi','2025-10-15 18:33:18',0),(0,0,'2526','H','O',976,1,0,'2025-10-15','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 18:33:25','reception','2025-10-15 18:33:25',0),(0,0,'2526','H','O',976,2,0,'2025-10-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 18:33:25','reception','2025-10-15 18:33:25',0),(0,0,'2526','H','O',976,3,0,'2025-10-15','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 18:33:25','reception','2025-10-15 18:33:25',0),(0,0,'2526','H','O',977,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-15 18:35:08','drashti','2025-10-15 18:35:08',0),(0,0,'2526','H','O',978,1,0,'2025-10-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-15 18:35:40','janvi','2025-10-15 18:35:40',0),(0,0,'2526','H','O',979,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 18:35:51','reception','2025-10-15 18:35:51',0),(0,0,'2526','H','O',980,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-15 18:40:04','janvi','2025-10-15 18:40:04',0),(0,0,'2526','H','O',981,1,0,'2025-10-15','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-15 18:40:09','janvi','2025-10-15 18:40:09',0),(0,0,'2526','H','O',981,2,0,'2025-10-15','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-15 18:40:09','janvi','2025-10-15 18:40:09',0),(0,0,'2526','H','O',982,1,0,'2025-10-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 18:41:36','drashti','2025-10-15 18:41:36',0),(0,0,'2526','H','O',983,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-15 18:41:44','manshi','2025-10-15 18:41:44',0),(0,0,'2526','H','O',984,1,0,'2025-10-15','00:00:00','CASE',0,-1.00,300,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-15 18:44:16','janvi','2025-10-15 18:44:16',0),(0,0,'2526','H','O',985,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 18:44:39','drashti','2025-10-15 18:44:39',0),(0,0,'2526','H','O',986,1,0,'2025-10-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 18:50:12','reception','2025-10-15 18:50:12',0),(0,0,'2526','H','O',987,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-15 18:51:48','janvi','2025-10-15 18:52:48',0),(0,0,'2526','H','O',988,1,0,'2025-10-15','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-15 18:52:48','janvi','2025-10-15 18:52:48',0),(0,0,'2526','H','O',989,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-15 18:53:56','janvi','2025-10-15 18:53:56',0),(0,0,'2526','H','O',990,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 18:54:34','reception','2025-10-15 18:54:34',0),(0,0,'2526','H','O',991,1,0,'2025-10-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 18:57:54','reception','2025-10-15 18:57:54',0),(0,0,'2526','H','O',991,2,0,'2025-10-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 18:57:54','reception','2025-10-15 18:57:54',0),(0,0,'2526','H','O',992,1,0,'2025-10-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 19:08:35','reception','2025-10-15 19:08:35',0),(0,0,'2526','H','O',993,1,0,'2025-10-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-15 19:10:29','janvi','2025-10-15 19:10:29',0),(0,0,'2526','H','O',994,1,0,'2025-10-15','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-15 19:14:13','janvi','2025-10-15 19:14:13',0),(0,0,'2526','H','O',995,1,0,'2025-10-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 19:14:50','reception','2025-10-15 19:14:50',0),(0,0,'2526','H','O',995,2,0,'2025-10-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 19:14:50','reception','2025-10-15 19:14:50',0),(0,0,'2526','H','O',995,3,0,'2025-10-15','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-15 19:14:50','reception','2025-10-15 19:14:50',0),(0,0,'2526','H','O',996,1,0,'2025-10-15','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-15 19:19:49','janvi','2025-10-15 19:19:49',0),(0,0,'2526','H','O',997,1,0,'2025-10-15','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 19:21:58','reception','2025-10-15 19:21:58',0),(0,0,'2526','H','O',998,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-15 19:25:18','janvi','2025-10-15 19:25:18',0),(0,0,'2526','H','O',999,1,0,'2025-10-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 19:25:48','drashti','2025-10-15 19:25:48',0),(0,0,'2526','H','O',1000,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-15 19:38:03','janvi','2025-10-15 19:38:03',0),(0,0,'2526','H','O',1001,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-15 19:39:05','janvi','2025-10-15 20:04:02',0),(0,0,'2526','H','O',1002,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-15 19:43:56','reception','2025-10-15 19:43:56',0),(0,0,'2526','H','O',1003,1,0,'2025-10-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-15 19:45:09','janvi','2025-10-15 19:45:09',0),(0,0,'2526','H','O',1004,1,0,'2025-10-15','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-15 19:53:50','janvi','2025-10-15 19:53:50',0),(0,0,'2526','H','O',1005,1,0,'2025-10-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-15 20:00:40','reception','2025-10-15 20:00:40',0),(0,0,'2526','H','O',1006,1,0,'2025-10-15','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-15 20:04:02','janvi','2025-10-15 20:04:02',0),(0,0,'2526','H','O',1007,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-15 20:04:40','reception','2025-10-15 20:04:40',0),(0,0,'2526','H','O',1008,1,0,'2025-10-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-15 20:05:44','reception','2025-10-15 20:05:44',0),(0,0,'2526','H','O',1009,1,0,'2025-10-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-15 20:08:41','janvi','2025-10-15 20:08:41',0),(0,0,'2526','H','O',1010,1,0,'2025-10-15','00:00:00','WPRC0046',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-15 20:11:10','janvi','2025-10-15 20:11:10',0),(0,0,'2526','H','O',1011,1,0,'2025-10-15','00:00:00','OPWD0013',0,2.00,250,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-15 20:17:50','drashti','2025-10-15 20:17:50',0),(0,0,'2526','H','O',1012,1,0,'2025-10-15','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-15 20:53:26','reception','2025-10-15 20:53:26',0),(0,0,'2526','H','O',1013,1,0,'2025-10-16','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-16 09:01:19','shweta','2025-10-16 09:01:19',0),(0,0,'2526','H','O',1013,2,0,'2025-10-16','00:00:00','WPRC0037',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-16 09:01:19','shweta','2025-10-16 09:01:19',0),(0,0,'2526','H','O',1014,1,0,'2025-10-16','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-16 09:04:38','shweta','2025-10-16 09:04:38',0),(0,0,'2526','H','O',1014,2,0,'2025-10-16','00:00:00','WPRC0037',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-16 09:04:38','shweta','2025-10-16 09:04:38',0),(0,0,'2526','H','O',1015,1,0,'2025-10-16','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-16 09:24:02','shweta','2025-10-16 09:24:02',0),(0,0,'2526','H','O',1016,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 09:29:13','reception','2025-10-16 09:29:13',0),(0,0,'2526','H','O',1017,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 09:34:39','reception','2025-10-16 09:34:39',0),(0,0,'2526','H','O',1018,1,0,'2025-10-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 09:37:20','reception','2025-10-16 09:37:20',0),(0,0,'2526','H','O',1019,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 09:49:27','reception','2025-10-16 09:49:27',0),(0,0,'2526','H','O',1020,1,0,'2025-10-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 10:11:56','reception','2025-10-16 10:11:56',0),(0,0,'2526','H','O',1021,1,0,'2025-10-16','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-16 10:17:11','drashti','2025-10-16 10:17:11',0),(0,0,'2526','H','O',1022,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 10:20:10','reception','2025-10-16 10:20:10',0),(0,0,'2526','H','O',1023,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 10:22:24','reception','2025-10-16 10:22:24',0),(0,0,'2526','H','O',1024,1,0,'2025-10-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 10:24:40','reception','2025-10-16 10:24:40',0),(0,0,'2526','H','O',1025,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 10:30:44','reception','2025-10-16 10:30:44',0),(0,0,'2526','H','O',1026,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-16 10:32:46','drashti','2025-10-16 10:32:46',0),(0,0,'2526','H','O',1027,1,0,'2025-10-16','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 10:34:08','reception','2025-10-16 10:34:08',0),(0,0,'2526','H','O',1028,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-16 10:35:01','drashti','2025-10-16 10:35:01',0),(0,0,'2526','H','O',1029,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 10:40:00','reception','2025-10-16 10:40:00',0),(0,0,'2526','H','O',1030,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-16 10:43:40','janvi','2025-10-16 10:43:40',0),(0,0,'2526','H','O',1031,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 10:44:51','reception','2025-10-16 10:44:51',0),(0,0,'2526','H','O',1032,1,0,'2025-10-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 10:47:56','drashti','2025-10-16 10:47:56',0),(0,0,'2526','H','O',1033,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-16 10:49:33','janvi','2025-10-16 10:49:33',0),(0,0,'2526','H','O',1034,1,0,'2025-10-16','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-16 10:51:37','janvi','2025-10-16 10:51:37',0),(0,0,'2526','H','O',1035,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 10:52:13','reception','2025-10-16 10:52:13',0),(0,0,'2526','H','O',1036,1,0,'2025-10-16','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-16 10:56:54','janvi','2025-10-16 10:56:54',0),(0,0,'2526','H','O',1037,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 10:59:01','reception','2025-10-16 10:59:01',0),(0,0,'2526','H','O',1038,1,0,'2025-10-16','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 11:05:01','reception','2025-10-16 11:05:01',0),(0,0,'2526','H','O',1039,1,0,'2025-10-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 11:07:42','reception','2025-10-16 11:07:42',0),(0,0,'2526','H','O',1040,1,0,'2025-10-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 11:09:00','drashti','2025-10-16 11:09:00',0),(0,0,'2526','H','O',1041,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 11:13:23','drashti','2025-10-16 11:13:23',0),(0,0,'2526','H','O',1042,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 11:14:47','drashti','2025-10-16 11:14:47',0),(0,0,'2526','H','O',1043,1,0,'2025-10-16','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-16 11:17:37','drashti','2025-10-16 11:17:37',0),(0,0,'2526','H','O',1044,1,0,'2025-10-16','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 11:25:44','reception','2025-10-16 11:25:44',0),(0,0,'2526','H','O',1045,1,0,'2025-10-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 11:26:17','drashti','2025-10-16 11:26:17',0),(0,0,'2526','H','O',1046,1,0,'2025-10-16','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 11:27:20','reception','2025-10-16 11:27:20',0),(0,0,'2526','H','O',1046,2,0,'2025-10-16','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 11:27:20','reception','2025-10-16 11:27:20',0),(0,0,'2526','H','O',1046,3,0,'2025-10-16','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 11:27:20','reception','2025-10-16 11:27:20',0),(0,0,'2526','H','O',1047,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 11:28:26','drashti','2025-10-16 11:28:26',0),(0,0,'2526','H','O',1048,1,0,'2025-10-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-16 11:28:32','janvi','2025-10-16 11:28:32',0),(0,0,'2526','H','O',1049,1,0,'2025-10-16','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-16 11:29:07','janvi','2025-10-16 11:29:07',0),(0,0,'2526','H','O',1050,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 11:30:48','drashti','2025-10-16 11:30:48',0),(0,0,'2526','H','O',1051,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 11:32:04','reception','2025-10-16 11:32:04',0),(0,0,'2526','H','O',1052,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 11:35:26','reception','2025-10-16 11:35:26',0),(0,0,'2526','H','O',1053,1,0,'2025-10-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 11:37:22','drashti','2025-10-16 11:37:22',0),(0,0,'2526','H','O',1054,1,0,'2025-10-16','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-16 11:39:07','janvi','2025-10-16 11:39:07',0),(0,0,'2526','H','O',1055,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-16 11:42:47','reception','2025-10-16 11:42:47',0),(0,0,'2526','H','O',1056,1,0,'2025-10-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-16 11:43:36','janvi','2025-10-16 11:43:36',0),(0,0,'2526','H','O',1057,1,0,'2025-10-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 11:43:57','reception','2025-10-16 11:43:57',0),(0,0,'2526','H','O',1058,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 11:45:41','reception','2025-10-16 11:45:41',0),(0,0,'2526','H','O',1059,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-16 11:47:32','drashti','2025-10-16 11:47:32',0),(0,0,'2526','H','O',1060,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 11:48:24','reception','2025-10-16 11:48:24',0),(0,0,'2526','H','O',1061,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 11:54:48','drashti','2025-10-16 11:54:48',0),(0,0,'2526','H','O',1062,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 12:00:51','drashti','2025-10-16 12:00:51',0),(0,0,'2526','H','O',1063,1,0,'2025-10-16','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 12:03:22','reception','2025-10-16 12:03:22',0),(0,0,'2526','H','O',1063,2,0,'2025-10-16','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 12:03:22','reception','2025-10-16 12:03:22',0),(0,0,'2526','H','O',1063,3,0,'2025-10-16','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 12:03:22','reception','2025-10-16 12:03:22',0),(0,0,'2526','H','O',1064,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-16 12:13:46','janvi','2025-10-16 12:13:46',0),(0,0,'2526','H','O',1065,1,0,'2025-10-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 12:14:08','reception','2025-10-16 12:14:08',0),(0,0,'2526','H','O',1066,1,0,'2025-10-16','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-16 12:14:59','drashti','2025-10-16 12:14:59',0),(0,0,'2526','H','O',1067,1,0,'2025-10-16','00:00:00','NEU10020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 12:16:28','reception','2025-10-16 12:16:28',0),(0,0,'2526','H','O',1068,1,0,'2025-10-16','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-16 12:17:25','manshi','2025-10-16 12:17:25',0),(0,0,'2526','H','O',1069,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 12:20:02','drashti','2025-10-16 12:20:02',0),(0,0,'2526','H','O',1070,1,0,'2025-10-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 12:24:16','reception','2025-10-16 12:24:16',0),(0,0,'2526','H','O',1071,1,0,'2025-10-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 12:28:27','drashti','2025-10-16 12:28:27',0),(0,0,'2526','H','O',1072,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 12:33:48','reception','2025-10-16 12:33:48',0),(0,0,'2526','H','O',1073,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-16 12:34:02','manshi','2025-10-16 12:34:02',0),(0,0,'2526','H','O',1074,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 12:51:34','drashti','2025-10-16 12:51:34',0),(0,0,'2526','H','O',1075,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-16 12:54:23','janvi','2025-10-16 12:54:23',0),(0,0,'2526','H','O',1076,1,0,'2025-10-16','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 12:55:37','reception','2025-10-16 12:55:37',0),(0,0,'2526','H','O',1076,2,0,'2025-10-16','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 12:55:37','reception','2025-10-16 12:55:37',0),(0,0,'2526','H','O',1077,1,0,'2025-10-16','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-16 13:12:13','manshi','2025-10-16 13:12:13',0),(0,0,'2526','H','O',1078,1,0,'2025-10-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-16 13:14:22','janvi','2025-10-16 13:14:22',0),(0,0,'2526','H','O',1079,1,0,'2025-10-16','00:00:00','OPWD0012',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 13:25:21','drashti','2025-10-16 13:26:20',0),(0,0,'2526','H','O',1080,1,0,'2025-10-16','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 13:25:57','reception','2025-10-16 13:25:57',0),(0,0,'2526','H','O',1080,2,0,'2025-10-16','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 13:25:57','reception','2025-10-16 13:25:57',0),(0,0,'2526','H','O',1080,3,0,'2025-10-16','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 13:25:57','reception','2025-10-16 13:25:57',0),(0,0,'2526','H','O',1081,1,0,'2025-10-16','00:00:00','OPWD0012',0,-1.00,500,-500,'P',0,0,-500.00,0.00,0.00,-500.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 13:26:20','drashti','2025-10-16 13:26:20',0),(0,0,'2526','H','O',1082,1,0,'2025-10-16','00:00:00','OPWD0013',0,2.00,250,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 13:27:41','drashti','2025-10-16 13:27:41',0),(0,0,'2526','H','O',1083,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-16 13:28:21','janvi','2025-10-16 13:28:21',0),(0,0,'2526','H','O',1084,1,0,'2025-10-16','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 13:32:56','reception','2025-10-16 13:32:56',0),(0,0,'2526','H','O',1084,2,0,'2025-10-16','00:00:00','NEU10019',0,1.00,1800,1800,'P',0,0,1800.00,0.00,0.00,1800.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 13:32:56','reception','2025-10-16 13:32:56',0),(0,0,'2526','H','O',1084,3,0,'2025-10-16','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 13:32:56','reception','2025-10-16 13:32:56',0),(0,0,'2526','H','O',1084,4,0,'2025-10-16','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 13:32:56','reception','2025-10-16 13:32:56',0),(0,0,'2526','H','O',1085,1,0,'2025-10-16','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 14:02:30','reception','2025-10-16 14:02:30',0),(0,0,'2526','H','O',1085,2,0,'2025-10-16','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 14:02:30','reception','2025-10-16 14:02:30',0),(0,0,'2526','H','O',1085,3,0,'2025-10-16','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 14:02:30','reception','2025-10-16 14:02:30',0),(0,0,'2526','H','O',1086,1,0,'2025-10-16','00:00:00','WPRC0046',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-16 14:13:04','drashti','2025-10-16 14:13:04',0),(0,0,'2526','H','O',1087,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 14:40:47','reception','2025-10-16 14:40:47',0),(0,0,'2526','H','O',1088,1,0,'2025-10-16','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 14:45:19','reception','2025-10-16 14:45:19',0),(0,0,'2526','H','O',1088,2,0,'2025-10-16','00:00:00','NEU10020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 14:45:19','reception','2025-10-16 14:45:19',0),(0,0,'2526','H','O',1089,1,0,'2025-10-16','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-16 15:02:45','reception','2025-10-16 15:02:45',0),(0,0,'2526','H','O',1089,2,0,'2025-10-16','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-16 15:02:45','reception','2025-10-16 15:02:45',0),(0,0,'2526','H','O',1090,1,0,'2025-10-16','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 15:04:10','reception','2025-10-16 15:04:10',0),(0,0,'2526','H','O',1091,1,0,'2025-10-16','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-16 15:31:04','shweta','2025-10-16 15:31:04',0),(0,0,'2526','H','O',1092,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-16 16:37:19','drashti','2025-10-16 16:37:19',0),(0,0,'2526','H','O',1093,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-16 16:48:56','reception','2025-10-16 16:48:56',0),(0,0,'2526','H','O',1094,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 16:54:44','reception','2025-10-16 16:54:44',0),(0,0,'2526','H','O',1095,1,0,'2025-10-16','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-16 17:00:26','reception','2025-10-16 17:00:26',0),(0,0,'2526','H','O',1096,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 17:11:19','reception','2025-10-16 17:11:19',0),(0,0,'2526','H','O',1097,1,0,'2025-10-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-16 17:21:10','drashti','2025-10-16 17:21:10',0),(0,0,'2526','H','O',1098,1,0,'2025-10-16','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 17:24:08','reception','2025-10-16 17:24:08',0),(0,0,'2526','H','O',1099,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-16 17:35:12','manshi','2025-10-16 18:28:36',0),(0,0,'2526','H','O',1100,1,0,'2025-10-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 17:36:38','reception','2025-10-16 17:36:38',0),(0,0,'2526','H','O',1101,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-16 17:36:44','janvi','2025-10-16 17:36:44',0),(0,0,'2526','H','O',1102,1,0,'2025-10-16','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 17:38:16','reception','2025-10-16 17:38:16',0),(0,0,'2526','H','O',1102,2,0,'2025-10-16','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 17:38:16','reception','2025-10-16 17:38:16',0),(0,0,'2526','H','O',1103,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 17:40:59','reception','2025-10-16 17:40:59',0),(0,0,'2526','H','O',1104,1,0,'2025-10-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-16 17:44:05','janvi','2025-10-16 17:44:05',0),(0,0,'2526','H','O',1105,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-16 17:46:54','drashti','2025-10-16 17:46:54',0),(0,0,'2526','H','O',1106,1,0,'2025-10-16','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-16 17:47:41','janvi','2025-10-16 17:47:41',0),(0,0,'2526','H','O',1107,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-16 17:50:14','drashti','2025-10-16 17:50:14',0),(0,0,'2526','H','O',1108,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-16 17:52:23','drashti','2025-10-16 17:52:23',0),(0,0,'2526','H','O',1109,1,0,'2025-10-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 17:52:38','reception','2025-10-16 17:52:38',0),(0,0,'2526','H','O',1110,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-16 17:53:29','janvi','2025-10-16 17:53:29',0),(0,0,'2526','H','O',1111,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 17:54:59','reception','2025-10-16 17:54:59',0),(0,0,'2526','H','O',1112,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 17:57:57','drashti','2025-10-16 17:57:57',0),(0,0,'2526','H','O',1113,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-16 17:58:19','manshi','2025-10-16 17:58:19',0),(0,0,'2526','H','O',1114,1,0,'2025-10-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 18:00:24','drashti','2025-10-16 18:00:24',0),(0,0,'2526','H','O',1115,1,0,'2025-10-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 18:00:27','reception','2025-10-16 18:00:27',0),(0,0,'2526','H','O',1116,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 18:03:06','drashti','2025-10-16 18:03:06',0),(0,0,'2526','H','O',1117,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-16 18:06:01','drashti','2025-10-16 18:06:01',0),(0,0,'2526','H','O',1118,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-16 18:08:01','janvi','2025-10-16 18:08:01',0),(0,0,'2526','H','O',1119,1,0,'2025-10-16','00:00:00','XRY0151',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-16 18:08:21','manshi','2025-10-16 18:08:21',0),(0,0,'2526','H','O',1119,2,0,'2025-10-16','00:00:00','XRY0100',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-16 18:08:21','manshi','2025-10-16 18:08:21',0),(0,0,'2526','H','O',1120,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 18:08:41','reception','2025-10-16 18:08:41',0),(0,0,'2526','H','O',1121,1,0,'2025-10-16','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 18:11:39','reception','2025-10-16 18:11:39',0),(0,0,'2526','H','O',1122,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 18:13:05','drashti','2025-10-16 18:13:05',0),(0,0,'2526','H','O',1123,1,0,'2025-10-16','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-16 18:15:54','janvi','2025-10-16 18:15:54',0),(0,0,'2526','H','O',1124,1,0,'2025-10-16','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 18:18:15','reception','2025-10-16 18:18:15',0),(0,0,'2526','H','O',1125,1,0,'2025-10-16','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-16 18:27:00','manshi','2025-10-16 18:27:00',0),(0,0,'2526','H','O',1126,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-16 18:27:42','drashti','2025-10-16 18:27:42',0),(0,0,'2526','H','O',1127,1,0,'2025-10-16','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-16 18:28:36','manshi','2025-10-16 18:28:36',0),(0,0,'2526','H','O',1128,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 18:29:58','reception','2025-10-16 18:29:58',0),(0,0,'2526','H','O',1129,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 18:33:10','reception','2025-10-16 18:33:10',0),(0,0,'2526','H','O',1130,1,0,'2025-10-16','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 18:35:43','reception','2025-10-16 18:35:43',0),(0,0,'2526','H','O',1130,2,0,'2025-10-16','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-16 18:35:43','reception','2025-10-16 18:35:43',0),(0,0,'2526','H','O',1131,1,0,'2025-10-16','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-16 18:39:05','janvi','2025-10-16 18:39:05',0),(0,0,'2526','H','O',1132,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 18:41:46','reception','2025-10-16 18:41:46',0),(0,0,'2526','H','O',1133,1,0,'2025-10-16','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-16 18:44:13','janvi','2025-10-16 18:44:13',0),(0,0,'2526','H','O',1134,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 18:51:39','drashti','2025-10-16 18:51:39',0),(0,0,'2526','H','O',1135,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-16 18:51:42','janvi','2025-10-16 18:51:42',0),(0,0,'2526','H','O',1136,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 18:52:55','reception','2025-10-16 18:52:55',0),(0,0,'2526','H','O',1137,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-16 18:54:13','janvi','2025-10-16 18:54:13',0),(0,0,'2526','H','O',1138,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 18:55:28','reception','2025-10-16 18:55:28',0),(0,0,'2526','H','O',1139,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-16 18:56:25','drashti','2025-10-16 18:56:25',0),(0,0,'2526','H','O',1140,1,0,'2025-10-16','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-16 18:57:32','janvi','2025-10-16 18:57:32',0),(0,0,'2526','H','O',1141,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 18:58:52','drashti','2025-10-16 18:58:52',0),(0,0,'2526','H','O',1142,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 19:02:21','drashti','2025-10-16 19:02:21',0),(0,0,'2526','H','O',1143,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-16 19:03:12','janvi','2025-10-16 19:03:12',0),(0,0,'2526','H','O',1144,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 19:03:32','reception','2025-10-16 19:03:32',0),(0,0,'2526','H','O',1145,1,0,'2025-10-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-16 19:07:37','janvi','2025-10-16 19:07:37',0),(0,0,'2526','H','O',1146,1,0,'2025-10-16','00:00:00','OPWD0013',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-16 19:17:25','janvi','2025-10-16 19:17:25',0),(0,0,'2526','H','O',1147,1,0,'2025-10-16','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-16 19:25:46','janvi','2025-10-16 19:25:46',0),(0,0,'2526','H','O',1148,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 19:32:31','drashti','2025-10-16 19:32:31',0),(0,0,'2526','H','O',1149,1,0,'2025-10-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-16 19:36:37','drashti','2025-10-16 19:36:37',0),(0,0,'2526','H','O',1150,1,0,'2025-10-16','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-16 19:46:42','janvi','2025-10-16 19:46:42',0),(0,0,'2526','H','O',1151,1,0,'2025-10-16','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-16 19:47:17','janvi','2025-10-16 19:47:17',0),(0,0,'2526','H','O',1152,1,0,'2025-10-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-16 19:50:26','reception','2025-10-16 19:50:26',0),(0,0,'2526','H','O',1153,1,0,'2025-10-16','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-16 19:54:52','manshi','2025-10-16 19:54:52',0),(0,0,'2526','H','O',1154,1,0,'2025-10-16','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-16 20:02:34','janvi','2025-10-16 20:02:34',0),(0,0,'2526','H','O',1155,1,0,'2025-10-16','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-16 20:10:43','manshi','2025-10-16 20:10:43',0),(0,0,'2526','H','O',1156,1,0,'2025-10-17','00:00:00','XRY0045',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-17 09:03:57','shweta','2025-10-17 09:03:57',0),(0,0,'2526','H','O',1156,2,0,'2025-10-17','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-10-17 09:03:57','shweta','2025-10-17 09:03:57',0),(0,0,'2526','H','O',1156,3,0,'2025-10-17','00:00:00','WPRC0046',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-10-17 09:03:57','shweta','2025-10-17 09:03:57',0),(0,0,'2526','H','O',1157,1,0,'2025-10-17','00:00:00','WPRC0037',0,3.00,250,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-17 09:09:19','shweta','2025-10-17 09:09:19',0),(0,0,'2526','H','O',1158,1,0,'2025-10-17','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-17 09:11:26','shweta','2025-10-17 09:11:26',0),(0,0,'2526','H','O',1158,2,0,'2025-10-17','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-17 09:11:26','shweta','2025-10-17 09:11:26',0),(0,0,'2526','H','O',1158,3,0,'2025-10-17','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-17 09:11:26','shweta','2025-10-17 09:11:26',0),(0,0,'2526','H','O',1159,1,0,'2025-10-17','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-17 09:13:08','shweta','2025-10-17 09:13:08',0),(0,0,'2526','H','O',1159,2,0,'2025-10-17','00:00:00','WPRC0037',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-17 09:13:08','shweta','2025-10-17 09:13:08',0),(0,0,'2526','H','O',1160,1,0,'2025-10-17','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-17 09:17:01','shweta','2025-10-17 09:17:01',0),(0,0,'2526','H','O',1161,1,0,'2025-10-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-17 09:19:51','janvi','2025-10-17 09:19:51',0),(0,0,'2526','H','O',1162,1,0,'2025-10-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 09:23:29','janvi','2025-10-17 11:28:32',0),(0,0,'2526','H','O',1163,1,0,'2025-10-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-17 09:31:01','janvi','2025-10-17 09:31:01',0),(0,0,'2526','H','O',1164,1,0,'2025-10-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-17 09:45:29','janvi','2025-10-17 09:45:29',0),(0,0,'2526','H','O',1165,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 09:48:36','reception','2025-10-17 09:48:36',0),(0,0,'2526','H','O',1166,1,0,'2025-10-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 09:50:33','janvi','2025-10-17 09:50:33',0),(0,0,'2526','H','O',1167,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 09:55:16','reception','2025-10-17 09:55:16',0),(0,0,'2526','H','O',1168,1,0,'2025-10-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 10:02:34','reception','2025-10-17 10:02:34',0),(0,0,'2526','H','O',1169,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 10:05:55','reception','2025-10-17 10:05:55',0),(0,0,'2526','H','O',1170,1,0,'2025-10-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-17 10:13:35','manshi','2025-10-17 11:25:35',0),(0,0,'2526','H','O',1171,1,0,'2025-10-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 10:13:44','reception','2025-10-17 10:13:44',0),(0,0,'2526','H','O',1172,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 10:23:15','janvi','2025-10-17 10:23:15',0),(0,0,'2526','H','O',1173,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 10:23:22','janvi','2025-10-17 10:23:22',0),(0,0,'2526','H','O',1174,1,0,'2025-10-17','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 10:25:14','janvi','2025-10-17 10:25:14',0),(0,0,'2526','H','O',1175,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 10:32:35','reception','2025-10-17 10:32:35',0),(0,0,'2526','H','O',1176,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 10:48:20','reception','2025-10-17 10:48:20',0),(0,0,'2526','H','O',1177,1,0,'2025-10-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-17 10:51:35','drashti','2025-10-17 10:51:35',0),(0,0,'2526','H','O',1178,1,0,'2025-10-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 10:51:58','reception','2025-10-17 10:51:58',0),(0,0,'2526','H','O',1179,1,0,'2025-10-17','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-17 10:52:07','janvi','2025-10-17 10:52:07',0),(0,0,'2526','H','O',1180,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 10:54:06','reception','2025-10-17 10:54:06',0),(0,0,'2526','H','O',1181,1,0,'2025-10-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-17 10:55:15','drashti','2025-10-17 10:55:15',0),(0,0,'2526','H','O',1182,1,0,'2025-10-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 10:57:30','reception','2025-10-17 10:57:30',0),(0,0,'2526','H','O',1183,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-17 10:59:16','drashti','2025-10-17 10:59:16',0),(0,0,'2526','H','O',1184,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 11:00:20','reception','2025-10-17 11:00:20',0),(0,0,'2526','H','O',1185,1,0,'2025-10-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 11:11:21','reception','2025-10-17 11:11:21',0),(0,0,'2526','H','O',1185,2,0,'2025-10-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 11:11:21','reception','2025-10-17 11:11:21',0),(0,0,'2526','H','O',1185,3,0,'2025-10-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 11:11:21','reception','2025-10-17 11:11:21',0),(0,0,'2526','H','O',1186,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-17 11:12:50','drashti','2025-10-17 11:12:50',0),(0,0,'2526','H','O',1187,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 11:14:38','reception','2025-10-17 11:14:38',0),(0,0,'2526','H','O',1188,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 11:18:34','reception','2025-10-17 11:18:34',0),(0,0,'2526','H','O',1189,1,0,'2025-10-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-17 11:19:33','manshi','2025-10-17 11:19:33',0),(0,0,'2526','H','O',1190,1,0,'2025-10-17','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 11:19:45','janvi','2025-10-17 11:19:45',0),(0,0,'2526','H','O',1191,1,0,'2025-10-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-17 11:21:31','janvi','2025-10-17 11:21:31',0),(0,0,'2526','H','O',1192,1,0,'2025-10-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-17 11:21:41','drashti','2025-10-17 11:21:41',0),(0,0,'2526','H','O',1193,1,0,'2025-10-17','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-17 11:23:26','janvi','2025-10-17 11:23:26',0),(0,0,'2526','H','O',1194,1,0,'2025-10-17','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-17 11:24:20','drashti','2025-10-17 11:24:20',0),(0,0,'2526','H','O',1195,1,0,'2025-10-17','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-17 11:25:35','manshi','2025-10-17 11:25:35',0),(0,0,'2526','H','O',1196,1,0,'2025-10-17','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 11:28:32','janvi','2025-10-17 11:28:32',0),(0,0,'2526','H','O',1197,1,0,'2025-10-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-17 11:34:06','drashti','2025-10-17 11:34:06',0),(0,0,'2526','H','O',1198,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 11:34:39','reception','2025-10-17 11:34:39',0),(0,0,'2526','H','O',1199,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 11:38:05','reception','2025-10-17 11:38:05',0),(0,0,'2526','H','O',1200,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 11:40:49','reception','2025-10-17 11:40:49',0),(0,0,'2526','H','O',1201,1,0,'2025-10-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-17 11:42:14','drashti','2025-10-17 11:42:14',0),(0,0,'2526','H','O',1202,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 11:42:36','reception','2025-10-17 11:42:36',0),(0,0,'2526','H','O',1203,1,0,'2025-10-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-17 11:45:27','janvi','2025-10-17 11:45:27',0),(0,0,'2526','H','O',1204,1,0,'2025-10-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 11:49:58','reception','2025-10-17 11:49:58',0),(0,0,'2526','H','O',1204,2,0,'2025-10-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 11:49:58','reception','2025-10-17 11:49:58',0),(0,0,'2526','H','O',1204,3,0,'2025-10-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 11:49:58','reception','2025-10-17 11:49:58',0),(0,0,'2526','H','O',1205,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 11:53:06','reception','2025-10-17 11:53:06',0),(0,0,'2526','H','O',1206,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-17 11:53:40','manshi','2025-10-17 11:53:40',0),(0,0,'2526','H','O',1207,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 11:59:23','janvi','2025-10-17 11:59:23',0),(0,0,'2526','H','O',1208,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 12:02:09','reception','2025-10-17 12:02:09',0),(0,0,'2526','H','O',1209,1,0,'2025-10-17','00:00:00','XRY0352',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-17 12:03:59','manshi','2025-10-17 12:03:59',0),(0,0,'2526','H','O',1210,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-17 12:04:05','drashti','2025-10-17 12:04:05',0),(0,0,'2526','H','O',1211,1,0,'2025-10-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 12:04:34','reception','2025-10-17 12:04:34',0),(0,0,'2526','H','O',1212,1,0,'2025-10-17','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-17 12:08:37','manshi','2025-10-17 12:08:37',0),(0,0,'2526','H','O',1213,1,0,'2025-10-17','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-17 12:09:34','manshi','2025-10-17 12:09:34',0),(0,0,'2526','H','O',1214,1,0,'2025-10-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-17 12:09:53','janvi','2025-10-17 12:09:53',0),(0,0,'2526','H','O',1215,1,0,'2025-10-17','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-17 12:11:51','drashti','2025-10-17 12:11:51',0),(0,0,'2526','H','O',1216,1,0,'2025-10-17','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-17 12:12:07','janvi','2025-10-17 12:12:07',0),(0,0,'2526','H','O',1217,1,0,'2025-10-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 12:12:53','reception','2025-10-17 12:12:53',0),(0,0,'2526','H','O',1218,1,0,'2025-10-17','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-17 12:15:47','janvi','2025-10-17 12:35:40',0),(0,0,'2526','H','O',1219,1,0,'2025-10-17','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-17 12:18:28','janvi','2025-10-17 12:18:28',0),(0,0,'2526','H','O',1220,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-17 12:20:44','drashti','2025-10-17 12:20:44',0),(0,0,'2526','H','O',1221,1,0,'2025-10-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-17 12:30:53','drashti','2025-10-17 12:30:53',0),(0,0,'2526','H','O',1222,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 12:31:57','reception','2025-10-17 12:31:57',0),(0,0,'2526','H','O',1223,1,0,'2025-10-17','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-17 12:35:40','janvi','2025-10-17 12:35:40',0),(0,0,'2526','H','O',1224,1,0,'2025-10-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-17 12:37:53','drashti','2025-10-17 12:37:53',0),(0,0,'2526','H','O',1225,1,0,'2025-10-17','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 12:38:52','janvi','2025-10-17 12:38:52',0),(0,0,'2526','H','O',1226,1,0,'2025-10-17','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-17 12:40:21','janvi','2025-10-17 12:40:21',0),(0,0,'2526','H','O',1226,2,0,'2025-10-17','00:00:00','CASE',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-17 12:40:21','janvi','2025-10-17 12:40:21',0),(0,0,'2526','H','O',1227,1,0,'2025-10-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 12:41:39','reception','2025-10-17 12:41:39',0),(0,0,'2526','H','O',1228,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-17 12:43:53','drashti','2025-10-17 12:43:53',0),(0,0,'2526','H','O',1229,1,0,'2025-10-17','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-17 12:43:56','janvi','2025-10-17 12:43:56',0),(0,0,'2526','H','O',1230,1,0,'2025-10-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-17 12:44:44','reception','2025-10-17 12:44:44',0),(0,0,'2526','H','O',1231,1,0,'2025-10-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 12:53:51','reception','2025-10-17 12:53:51',0),(0,0,'2526','H','O',1231,2,0,'2025-10-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 12:53:51','reception','2025-10-17 12:53:51',0),(0,0,'2526','H','O',1231,3,0,'2025-10-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 12:53:51','reception','2025-10-17 12:53:51',0),(0,0,'2526','H','O',1232,1,0,'2025-10-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-17 13:05:57','drashti','2025-10-17 13:05:57',0),(0,0,'2526','H','O',1233,1,0,'2025-10-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 13:08:11','reception','2025-10-17 13:08:11',0),(0,0,'2526','H','O',1233,2,0,'2025-10-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 13:08:11','reception','2025-10-17 13:08:11',0),(0,0,'2526','H','O',1233,3,0,'2025-10-17','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 13:08:11','reception','2025-10-17 13:08:11',0),(0,0,'2526','H','O',1234,1,0,'2025-10-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 13:14:43','reception','2025-10-17 13:14:43',0),(0,0,'2526','H','O',1234,2,0,'2025-10-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 13:14:43','reception','2025-10-17 13:14:43',0),(0,0,'2526','H','O',1235,1,0,'2025-10-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-17 13:22:14','reception','2025-10-17 13:22:14',0),(0,0,'2526','H','O',1236,1,0,'2025-10-17','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 13:22:53','janvi','2025-10-17 13:22:53',0),(0,0,'2526','H','O',1237,1,0,'2025-10-17','00:00:00','WPRC0046',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 13:59:51','janvi','2025-10-17 13:59:51',0),(0,0,'2526','H','O',1238,1,0,'2025-10-17','00:00:00','OTCG0033',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-17 14:26:26','shweta','2025-10-17 14:26:26',0),(0,0,'2526','H','O',1239,1,0,'2025-10-17','00:00:00','NEU10019',0,1.00,1800,1800,'P',0,0,1800.00,0.00,0.00,1800.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 14:32:56','reception','2025-10-17 14:32:56',0),(0,0,'2526','H','O',1239,2,0,'2025-10-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 14:32:56','reception','2025-10-17 14:32:56',0),(0,0,'2526','H','O',1239,3,0,'2025-10-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 14:32:56','reception','2025-10-17 14:32:56',0),(0,0,'2526','H','O',1239,4,0,'2025-10-17','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 14:32:56','reception','2025-10-17 14:32:56',0),(0,0,'2526','H','O',1240,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-10-17 14:56:23','shweta','2025-10-17 14:56:23',0),(0,0,'2526','H','O',1241,1,0,'2025-10-17','00:00:00','OPWD0016',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-17 15:47:41','shweta','2025-10-17 15:47:41',0),(0,0,'2526','H','O',1242,1,0,'2025-10-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 16:48:18','reception','2025-10-17 16:48:18',0),(0,0,'2526','H','O',1243,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-17 16:51:53','reception','2025-10-17 16:51:53',0),(0,0,'2526','H','O',1244,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 16:59:54','reception','2025-10-17 16:59:54',0),(0,0,'2526','H','O',1245,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-17 17:00:42','drashti','2025-10-17 17:00:42',0),(0,0,'2526','H','O',1246,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-17 17:02:47','drashti','2025-10-17 17:02:47',0),(0,0,'2526','H','O',1247,1,0,'2025-10-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-17 17:03:37','drashti','2025-10-17 17:03:37',0),(0,0,'2526','H','O',1248,1,0,'2025-10-17','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-17 17:07:29','janvi','2025-10-17 18:17:10',0),(0,0,'2526','H','O',1249,1,0,'2025-10-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-17 17:17:20','manshi','2025-10-17 17:17:20',0),(0,0,'2526','H','O',1250,1,0,'2025-10-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 17:17:57','reception','2025-10-17 17:17:57',0),(0,0,'2526','H','O',1250,2,0,'2025-10-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 17:17:57','reception','2025-10-17 17:17:57',0),(0,0,'2526','H','O',1250,3,0,'2025-10-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 17:17:57','reception','2025-10-17 17:17:57',0),(0,0,'2526','H','O',1251,1,0,'2025-10-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 17:20:49','reception','2025-10-17 17:20:49',0),(0,0,'2526','H','O',1251,2,0,'2025-10-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 17:20:49','reception','2025-10-17 17:20:49',0),(0,0,'2526','H','O',1251,3,0,'2025-10-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 17:20:49','reception','2025-10-17 17:20:49',0),(0,0,'2526','H','O',1252,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 17:25:20','janvi','2025-10-17 17:25:20',0),(0,0,'2526','H','O',1253,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 17:26:01','reception','2025-10-17 17:26:01',0),(0,0,'2526','H','O',1254,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 17:31:14','reception','2025-10-17 17:31:14',0),(0,0,'2526','H','O',1255,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 17:32:06','janvi','2025-10-17 17:32:06',0),(0,0,'2526','H','O',1256,1,0,'2025-10-17','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 17:38:06','janvi','2025-10-17 17:38:06',0),(0,0,'2526','H','O',1257,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 17:39:04','reception','2025-10-17 17:39:04',0),(0,0,'2526','H','O',1258,1,0,'2025-10-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-17 17:39:47','janvi','2025-10-17 17:39:47',0),(0,0,'2526','H','O',1259,1,0,'2025-10-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 17:41:52','reception','2025-10-17 17:41:52',0),(0,0,'2526','H','O',1259,2,0,'2025-10-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 17:41:52','reception','2025-10-17 17:41:52',0),(0,0,'2526','H','O',1260,1,0,'2025-10-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-17 17:42:40','drashti','2025-10-17 17:42:40',0),(0,0,'2526','H','O',1261,1,0,'2025-10-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-17 17:43:48','janvi','2025-10-17 17:43:48',0),(0,0,'2526','H','O',1262,1,0,'2025-10-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 17:44:12','reception','2025-10-17 17:44:12',0),(0,0,'2526','H','O',1263,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 17:46:37','reception','2025-10-17 17:46:37',0),(0,0,'2526','H','O',1264,1,0,'2025-10-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 17:48:59','reception','2025-10-17 17:48:59',0),(0,0,'2526','H','O',1265,1,0,'2025-10-17','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-17 17:49:33','janvi','2025-10-17 17:49:33',0),(0,0,'2526','H','O',1266,1,0,'2025-10-17','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-17 17:49:48','drashti','2025-10-17 17:49:48',0),(0,0,'2526','H','O',1266,2,0,'2025-10-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-17 17:49:48','drashti','2025-10-17 17:49:48',0),(0,0,'2526','H','O',1267,1,0,'2025-10-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 17:51:56','reception','2025-10-17 17:51:56',0),(0,0,'2526','H','O',1268,1,0,'2025-10-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 17:52:11','janvi','2025-10-17 17:52:11',0),(0,0,'2526','H','O',1269,1,0,'2025-10-17','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 17:55:28','reception','2025-10-17 17:55:28',0),(0,0,'2526','H','O',1270,1,0,'2025-10-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 17:57:56','reception','2025-10-17 17:57:56',0),(0,0,'2526','H','O',1271,1,0,'2025-10-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-17 18:02:35','reception','2025-10-17 18:02:35',0),(0,0,'2526','H','O',1272,1,0,'2025-10-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-17 18:02:43','janvi','2025-10-17 18:02:43',0),(0,0,'2526','H','O',1273,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 18:05:33','reception','2025-10-17 18:05:33',0),(0,0,'2526','H','O',1274,1,0,'2025-10-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 18:06:07','janvi','2025-10-17 18:06:07',0),(0,0,'2526','H','O',1275,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-17 18:06:35','drashti','2025-10-17 18:06:35',0),(0,0,'2526','H','O',1276,1,0,'2025-10-17','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 18:10:35','janvi','2025-10-17 18:10:35',0),(0,0,'2526','H','O',1277,1,0,'2025-10-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 18:11:45','reception','2025-10-17 18:11:45',0),(0,0,'2526','H','O',1277,2,0,'2025-10-17','00:00:00','NEU10016',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 18:11:45','reception','2025-10-17 18:11:45',0),(0,0,'2526','H','O',1278,1,0,'2025-10-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-17 18:11:55','drashti','2025-10-17 18:38:55',0),(0,0,'2526','H','O',1279,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-17 18:12:17','manshi','2025-10-17 18:12:17',0),(0,0,'2526','H','O',1280,1,0,'2025-10-17','00:00:00','XRY0145',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-17 18:13:49','manshi','2025-10-17 18:13:49',0),(0,0,'2526','H','O',1281,1,0,'2025-10-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-17 18:14:39','drashti','2025-10-17 18:14:39',0),(0,0,'2526','H','O',1282,1,0,'2025-10-17','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-17 18:15:01','manshi','2025-10-17 18:15:01',0),(0,0,'2526','H','O',1283,1,0,'2025-10-17','00:00:00','CASE',0,-1.00,300,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 18:17:10','janvi','2025-10-17 18:17:10',0),(0,0,'2526','H','O',1284,1,0,'2025-10-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-17 18:22:18','manshi','2025-10-17 18:22:18',0),(0,0,'2526','H','O',1285,1,0,'2025-10-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 18:26:38','reception','2025-10-17 18:26:38',0),(0,0,'2526','H','O',1286,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 18:29:36','reception','2025-10-17 18:29:36',0),(0,0,'2526','H','O',1287,1,0,'2025-10-17','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 18:35:09','janvi','2025-10-17 18:35:09',0),(0,0,'2526','H','O',1288,1,0,'2025-10-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-17 18:36:56','drashti','2025-10-17 18:36:56',0),(0,0,'2526','H','O',1289,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 18:37:30','reception','2025-10-17 18:37:30',0),(0,0,'2526','H','O',1290,1,0,'2025-10-17','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-17 18:38:55','drashti','2025-10-17 18:38:55',0),(0,0,'2526','H','O',1291,1,0,'2025-10-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 18:40:17','reception','2025-10-17 18:40:17',0),(0,0,'2526','H','O',1291,2,0,'2025-10-17','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 18:40:17','reception','2025-10-17 18:40:17',0),(0,0,'2526','H','O',1292,1,0,'2025-10-17','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-17 18:49:03','drashti','2025-10-17 18:49:03',0),(0,0,'2526','H','O',1293,1,0,'2025-10-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-17 18:50:32','janvi','2025-10-17 18:50:32',0),(0,0,'2526','H','O',1294,1,0,'2025-10-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-17 18:51:04','janvi','2025-10-17 18:51:04',0),(0,0,'2526','H','O',1295,1,0,'2025-10-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 18:55:08','reception','2025-10-17 18:55:08',0),(0,0,'2526','H','O',1295,2,0,'2025-10-17','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 18:55:08','reception','2025-10-17 18:55:08',0),(0,0,'2526','H','O',1296,1,0,'2025-10-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 18:59:03','janvi','2025-10-17 18:59:03',0),(0,0,'2526','H','O',1297,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-17 19:02:44','reception','2025-10-17 19:02:44',0),(0,0,'2526','H','O',1298,1,0,'2025-10-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-17 19:11:32','drashti','2025-10-17 19:11:32',0),(0,0,'2526','H','O',1299,1,0,'2025-10-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-17 19:12:28','janvi','2025-10-17 19:12:28',0),(0,0,'2526','H','O',1300,1,0,'2025-10-17','00:00:00','CASE',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 19:28:24','janvi','2025-10-17 19:28:24',0),(0,0,'2526','H','O',1301,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-17 19:34:20','janvi','2025-10-17 19:34:20',0),(0,0,'2526','H','O',1302,1,0,'2025-10-17','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-17 19:38:44','manshi','2025-10-17 19:38:44',0),(0,0,'2526','H','O',1303,1,0,'2025-10-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-17 19:39:02','manshi','2025-10-17 19:39:02',0),(0,0,'2526','H','O',1304,1,0,'2025-10-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 19:40:12','reception','2025-10-17 19:40:12',0),(0,0,'2526','H','O',1304,2,0,'2025-10-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 19:40:12','reception','2025-10-17 19:40:12',0),(0,0,'2526','H','O',1305,1,0,'2025-10-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-10-17 20:05:47','reception','2025-10-17 20:05:47',0),(0,0,'2526','H','O',1305,2,0,'2025-10-17','00:00:00','XRY0390',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-17 20:05:47','reception','2025-10-17 20:05:47',0),(0,0,'2526','H','O',1306,1,0,'2025-10-17','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-17 20:08:17','drashti','2025-10-17 20:08:17',0),(0,0,'2526','H','O',1307,1,0,'2025-10-18','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-10-18 09:04:37','shweta','2025-10-18 09:04:37',0),(0,0,'2526','H','O',1307,2,0,'2025-10-18','00:00:00','OPWD0012',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-10-18 09:04:37','shweta','2025-10-18 09:04:37',0),(0,0,'2526','H','O',1307,3,0,'2025-10-18','00:00:00','WPRC0046',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-10-18 09:04:37','shweta','2025-10-18 09:04:37',0),(0,0,'2526','H','O',1308,1,0,'2025-10-18','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-10-18 09:06:58','shweta','2025-10-18 09:06:58',0),(0,0,'2526','H','O',1308,2,0,'2025-10-18','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-10-18 09:06:58','shweta','2025-10-18 09:06:58',0),(0,0,'2526','H','O',1308,3,0,'2025-10-18','00:00:00','OPWD0016',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-10-18 09:06:58','shweta','2025-10-18 09:06:58',0),(0,0,'2526','H','O',1309,1,0,'2025-10-18','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-10-18 09:09:48','shweta','2025-10-18 09:09:48',0),(0,0,'2526','H','O',1309,2,0,'2025-10-18','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-10-18 09:09:48','shweta','2025-10-18 09:09:48',0),(0,0,'2526','H','O',1309,3,0,'2025-10-18','00:00:00','BMED0032',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-18 09:09:48','shweta','2025-10-18 09:09:48',0),(0,0,'2526','H','O',1310,1,0,'2025-10-18','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 09:41:49','reception','2025-10-18 09:41:49',0),(0,0,'2526','H','O',1311,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 09:43:11','reception','2025-10-18 09:43:11',0),(0,0,'2526','H','O',1312,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 09:48:38','reception','2025-10-18 09:48:38',0),(0,0,'2526','H','O',1313,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 09:50:42','reception','2025-10-18 09:50:42',0),(0,0,'2526','H','O',1314,1,0,'2025-10-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-18 09:54:52','janvi','2025-10-18 09:54:52',0),(0,0,'2526','H','O',1315,1,0,'2025-10-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 10:02:50','reception','2025-10-18 10:02:50',0),(0,0,'2526','H','O',1316,1,0,'2025-10-18','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-18 10:09:44','janvi','2025-10-18 10:09:44',0),(0,0,'2526','H','O',1317,1,0,'2025-10-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 10:12:22','reception','2025-10-18 10:12:22',0),(0,0,'2526','H','O',1318,1,0,'2025-10-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-18 10:15:34','janvi','2025-10-18 10:15:34',0),(0,0,'2526','H','O',1319,1,0,'2025-10-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 10:18:39','reception','2025-10-18 10:18:39',0),(0,0,'2526','H','O',1319,2,0,'2025-10-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 10:18:39','reception','2025-10-18 10:18:39',0),(0,0,'2526','H','O',1320,1,0,'2025-10-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-18 10:25:07','reception','2025-10-18 10:25:07',0),(0,0,'2526','H','O',1321,1,0,'2025-10-18','00:00:00','LAB0792',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-18 10:34:07','janvi','2025-10-18 10:34:07',0),(0,0,'2526','H','O',1321,2,0,'2025-10-18','00:00:00','WPRC0021',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-18 10:34:07','janvi','2025-10-18 10:34:07',0),(0,0,'2526','H','O',1322,1,0,'2025-10-18','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-18 10:37:41','reception','2025-10-18 10:37:41',0),(0,0,'2526','H','O',1323,1,0,'2025-10-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-18 10:41:01','janvi','2025-10-18 10:41:01',0),(0,0,'2526','H','O',1324,1,0,'2025-10-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-18 10:45:33','manshi','2025-10-18 10:45:33',0),(0,0,'2526','H','O',1325,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 10:54:03','reception','2025-10-18 10:54:03',0),(0,0,'2526','H','O',1326,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 10:55:38','reception','2025-10-18 10:55:38',0),(0,0,'2526','H','O',1327,1,0,'2025-10-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-18 10:57:38','drashti','2025-10-18 10:57:38',0),(0,0,'2526','H','O',1328,1,0,'2025-10-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 11:06:59','reception','2025-10-18 11:06:59',0),(0,0,'2526','H','O',1329,1,0,'2025-10-18','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-18 11:08:57','manshi','2025-10-18 11:08:57',0),(0,0,'2526','H','O',1330,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 11:11:00','reception','2025-10-18 11:11:00',0),(0,0,'2526','H','O',1331,1,0,'2025-10-18','00:00:00','XRY0390',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-18 11:11:37','manshi','2025-10-18 11:11:37',0),(0,0,'2526','H','O',1332,1,0,'2025-10-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-18 11:12:06','drashti','2025-10-18 11:12:06',0),(0,0,'2526','H','O',1333,1,0,'2025-10-18','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 11:13:51','reception','2025-10-18 11:13:51',0),(0,0,'2526','H','O',1333,2,0,'2025-10-18','00:00:00','NEU10020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 11:13:51','reception','2025-10-18 11:13:51',0),(0,0,'2526','H','O',1334,1,0,'2025-10-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-18 11:17:38','drashti','2025-10-18 11:17:38',0),(0,0,'2526','H','O',1335,1,0,'2025-10-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 11:19:12','reception','2025-10-18 11:19:12',0),(0,0,'2526','H','O',1336,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 11:22:33','reception','2025-10-18 11:22:33',0),(0,0,'2526','H','O',1337,1,0,'2025-10-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-18 11:24:21','drashti','2025-10-18 11:24:21',0),(0,0,'2526','H','O',1338,1,0,'2025-10-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-18 11:25:36','janvi','2025-10-18 11:25:36',0),(0,0,'2526','H','O',1339,1,0,'2025-10-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-18 11:26:24','reception','2025-10-18 11:26:24',0),(0,0,'2526','H','O',1340,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 11:29:38','reception','2025-10-18 11:29:38',0),(0,0,'2526','H','O',1341,1,0,'2025-10-18','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-18 11:30:44','janvi','2025-10-18 11:30:44',0),(0,0,'2526','H','O',1342,1,0,'2025-10-18','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-18 11:31:12','manshi','2025-10-18 11:31:12',0),(0,0,'2526','H','O',1343,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 11:32:42','reception','2025-10-18 11:32:42',0),(0,0,'2526','H','O',1344,1,0,'2025-10-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-18 11:33:32','manshi','2025-10-18 11:33:32',0),(0,0,'2526','H','O',1345,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-18 11:35:28','janvi','2025-10-18 11:35:28',0),(0,0,'2526','H','O',1346,1,0,'2025-10-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-18 11:35:55','drashti','2025-10-18 11:35:55',0),(0,0,'2526','H','O',1347,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 11:36:29','reception','2025-10-18 11:36:29',0),(0,0,'2526','H','O',1348,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 11:39:09','reception','2025-10-18 11:39:09',0),(0,0,'2526','H','O',1349,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 11:40:34','reception','2025-10-18 11:40:34',0),(0,0,'2526','H','O',1350,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-18 11:41:16','janvi','2025-10-18 11:41:16',0),(0,0,'2526','H','O',1351,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-18 11:42:20','drashti','2025-10-18 11:42:20',0),(0,0,'2526','H','O',1352,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 11:43:11','reception','2025-10-18 11:43:11',0),(0,0,'2526','H','O',1353,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 11:45:16','reception','2025-10-18 11:45:16',0),(0,0,'2526','H','O',1354,1,0,'2025-10-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-18 11:46:25','janvi','2025-10-18 11:46:25',0),(0,0,'2526','H','O',1355,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-18 11:48:05','drashti','2025-10-18 11:48:05',0),(0,0,'2526','H','O',1356,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-18 11:50:56','drashti','2025-10-18 11:50:56',0),(0,0,'2526','H','O',1357,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-18 11:53:15','drashti','2025-10-18 11:53:15',0),(0,0,'2526','H','O',1358,1,0,'2025-10-18','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 11:54:36','reception','2025-10-18 11:54:36',0),(0,0,'2526','H','O',1358,2,0,'2025-10-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 11:54:36','reception','2025-10-18 11:54:36',0),(0,0,'2526','H','O',1358,3,0,'2025-10-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 11:54:36','reception','2025-10-18 11:54:36',0),(0,0,'2526','H','O',1358,4,0,'2025-10-18','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 11:54:36','reception','2025-10-18 11:54:36',0),(0,0,'2526','H','O',1359,1,0,'2025-10-18','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 11:58:55','reception','2025-10-18 11:58:55',0),(0,0,'2526','H','O',1359,2,0,'2025-10-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 11:58:55','reception','2025-10-18 11:58:55',0),(0,0,'2526','H','O',1359,3,0,'2025-10-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 11:58:55','reception','2025-10-18 11:58:55',0),(0,0,'2526','H','O',1360,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-18 11:59:22','manshi','2025-10-18 11:59:22',0),(0,0,'2526','H','O',1361,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 12:03:03','reception','2025-10-18 12:03:03',0),(0,0,'2526','H','O',1362,1,0,'2025-10-18','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 12:06:01','reception','2025-10-18 12:06:01',0),(0,0,'2526','H','O',1362,2,0,'2025-10-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 12:06:01','reception','2025-10-18 12:06:01',0),(0,0,'2526','H','O',1362,3,0,'2025-10-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 12:06:01','reception','2025-10-18 12:06:01',0),(0,0,'2526','H','O',1363,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-18 12:06:11','janvi','2025-10-18 12:06:11',0),(0,0,'2526','H','O',1364,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 12:09:43','reception','2025-10-18 12:09:43',0),(0,0,'2526','H','O',1365,1,0,'2025-10-18','00:00:00','XRY0390',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-18 12:11:35','manshi','2025-10-18 12:11:35',0),(0,0,'2526','H','O',1366,1,0,'2025-10-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-18 12:15:35','drashti','2025-10-18 12:15:35',0),(0,0,'2526','H','O',1367,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 12:16:51','reception','2025-10-18 12:16:51',0),(0,0,'2526','H','O',1368,1,0,'2025-10-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-18 12:25:59','janvi','2025-10-18 12:25:59',0),(0,0,'2526','H','O',1369,1,0,'2025-10-18','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 12:26:48','reception','2025-10-18 12:26:48',0),(0,0,'2526','H','O',1369,2,0,'2025-10-18','00:00:00','NEU10019',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 12:26:48','reception','2025-10-18 12:26:48',0),(0,0,'2526','H','O',1369,3,0,'2025-10-18','00:00:00','NEU10018',0,1.00,3500,3500,'P',0,0,3500.00,0.00,0.00,3500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 12:26:48','reception','2025-10-18 12:26:48',0),(0,0,'2526','H','O',1370,1,0,'2025-10-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-18 12:28:49','drashti','2025-10-18 12:28:49',0),(0,0,'2526','H','O',1371,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 12:41:26','reception','2025-10-18 12:41:26',0),(0,0,'2526','H','O',1372,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 12:45:35','reception','2025-10-18 12:45:35',0),(0,0,'2526','H','O',1373,1,0,'2025-10-18','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-18 12:59:01','drashti','2025-10-18 12:59:01',0),(0,0,'2526','H','O',1374,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-18 13:03:31','janvi','2025-10-18 13:03:31',0),(0,0,'2526','H','O',1375,1,0,'2025-10-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-18 13:08:25','reception','2025-10-18 13:08:25',0),(0,0,'2526','H','O',1376,1,0,'2025-10-18','00:00:00','WPRC0046',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-18 13:14:29','manshi','2025-10-18 13:14:29',0),(0,0,'2526','H','O',1377,1,0,'2025-10-18','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-18 13:25:43','manshi','2025-10-18 13:25:43',0),(0,0,'2526','H','O',1378,1,0,'2025-10-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 13:52:17','reception','2025-10-18 13:52:17',0),(0,0,'2526','H','O',1379,1,0,'2025-10-18','00:00:00','NEU10019',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 14:04:14','reception','2025-10-18 14:04:14',0),(0,0,'2526','H','O',1379,2,0,'2025-10-18','00:00:00','NEU10017',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-18 14:04:14','reception','2025-10-18 14:04:14',0),(0,0,'2526','H','O',1380,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-18 14:13:15','janvi','2025-10-18 14:13:15',0),(0,0,'2526','H','O',1381,1,0,'2025-10-18','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','drashti','2025-10-18 16:22:40','drashti','2025-10-18 16:22:40',0),(0,0,'2526','H','O',1382,1,0,'2025-10-18','00:00:00','WPRC0046',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','drashti','2025-10-18 17:18:19','drashti','2025-10-18 17:18:19',0),(0,0,'2526','H','O',1383,1,0,'2025-10-18','00:00:00','SURG0005',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-18 17:33:55','reception','2025-10-18 17:33:55',0),(0,0,'2526','H','O',1384,1,0,'2025-10-18','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-18 18:17:34','janvi','2025-10-18 18:17:34',0),(0,0,'2526','H','O',1385,1,0,'2025-10-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-18 18:25:07','janvi','2025-10-18 18:25:07',0),(0,0,'2526','H','O',1386,1,0,'2025-10-18','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-18 18:25:13','manshi','2025-10-18 18:25:13',0),(0,0,'2526','H','O',1387,1,0,'2025-10-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-18 18:31:37','manshi','2025-10-18 18:31:37',0),(0,0,'2526','H','O',1388,1,0,'2025-10-18','00:00:00','XRY0254',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-18 18:32:27','manshi','2025-10-18 18:32:27',0),(0,0,'2526','H','O',1389,1,0,'2025-10-18','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-18 19:14:57','janvi','2025-10-18 19:14:57',0),(0,0,'2526','H','O',1390,1,0,'2025-10-18','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-18 19:15:29','manshi','2025-10-18 19:15:29',0),(0,0,'2526','H','O',1391,1,0,'2025-10-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-18 19:17:50','manshi','2025-10-18 19:24:36',0),(0,0,'2526','H','O',1392,1,0,'2025-10-18','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-18 19:24:36','manshi','2025-10-18 19:24:36',0),(0,0,'2526','H','O',1393,1,0,'2025-10-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-18 19:48:07','manshi','2025-10-18 19:48:07',0),(0,0,'2526','H','O',1394,1,0,'2025-10-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-23 09:56:44','drashti','2025-10-23 09:56:44',0),(0,0,'2526','H','O',1395,1,0,'2025-10-23','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-23 11:29:25','drashti','2025-10-23 11:29:25',0),(0,0,'2526','H','O',1396,1,0,'2025-10-23','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-23 11:34:42','drashti','2025-10-23 11:34:42',0),(0,0,'2526','H','O',1397,1,0,'2025-10-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-23 11:42:13','drashti','2025-10-23 11:42:13',0),(0,0,'2526','H','O',1398,1,0,'2025-10-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-23 11:45:28','drashti','2025-10-23 11:45:28',0),(0,0,'2526','H','O',1399,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 11:46:36','shweta','2025-10-23 11:46:36',0),(0,0,'2526','H','O',1399,2,0,'2025-10-23','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 11:46:36','shweta','2025-10-23 11:46:36',0),(0,0,'2526','H','O',1399,3,0,'2025-10-23','00:00:00','OPWD0016',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 11:46:36','shweta','2025-10-23 11:46:36',0),(0,0,'2526','H','O',1400,1,0,'2025-10-23','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-23 11:50:16','shweta','2025-10-23 11:50:16',0),(0,0,'2526','H','O',1401,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 11:54:41','shweta','2025-10-23 11:54:41',0),(0,0,'2526','H','O',1401,2,0,'2025-10-23','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 11:54:41','shweta','2025-10-23 11:54:41',0),(0,0,'2526','H','O',1401,3,0,'2025-10-23','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-23 11:54:41','shweta','2025-10-23 11:54:41',0),(0,0,'2526','H','O',1401,4,0,'2025-10-23','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 11:54:41','shweta','2025-10-23 11:54:41',0),(0,0,'2526','H','O',1402,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 11:55:21','drashti','2025-10-23 11:55:21',0),(0,0,'2526','H','O',1402,2,0,'2025-10-23','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 11:55:21','drashti','2025-10-23 11:55:21',0),(0,0,'2526','H','O',1403,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 11:58:37','shweta','2025-10-23 11:58:37',0),(0,0,'2526','H','O',1403,2,0,'2025-10-23','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-23 11:58:37','shweta','2025-10-23 11:58:37',0),(0,0,'2526','H','O',1403,3,0,'2025-10-23','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 11:58:37','shweta','2025-10-23 11:58:37',0),(0,0,'2526','H','O',1403,4,0,'2025-10-23','00:00:00','OPWD0016',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 11:58:37','shweta','2025-10-23 11:58:37',0),(0,0,'2526','H','O',1404,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-23 12:01:31','shweta','2025-10-23 12:01:31',0),(0,0,'2526','H','O',1405,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 12:02:07','drashti','2025-10-23 12:02:07',0),(0,0,'2526','H','O',1405,2,0,'2025-10-23','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 12:02:07','drashti','2025-10-23 12:02:07',0),(0,0,'2526','H','O',1406,1,0,'2025-10-23','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 12:06:31','shweta','2025-10-23 12:06:31',0),(0,0,'2526','H','O',1407,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 12:08:22','drashti','2025-10-23 12:08:22',0),(0,0,'2526','H','O',1407,2,0,'2025-10-23','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 12:08:22','drashti','2025-10-23 12:08:22',0),(0,0,'2526','H','O',1407,3,0,'2025-10-23','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 12:08:22','drashti','2025-10-23 12:08:22',0),(0,0,'2526','H','O',1407,4,0,'2025-10-23','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-23 12:08:22','drashti','2025-10-23 12:08:22',0),(0,0,'2526','H','O',1408,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-23 12:12:43','drashti','2025-10-23 12:12:43',0),(0,0,'2526','H','O',1408,2,0,'2025-10-23','00:00:00','OPWD0019',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-23 12:12:43','drashti','2025-10-23 12:12:43',0),(0,0,'2526','H','O',1409,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 12:14:51','shweta','2025-10-23 12:14:51',0),(0,0,'2526','H','O',1410,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 12:17:33','shweta','2025-10-23 12:17:33',0),(0,0,'2526','H','O',1410,2,0,'2025-10-23','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 12:17:33','shweta','2025-10-23 12:17:33',0),(0,0,'2526','H','O',1411,1,0,'2025-10-23','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 12:18:39','shweta','2025-10-23 12:18:39',0),(0,0,'2526','H','O',1412,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 12:22:31','drashti','2025-10-23 12:22:31',0),(0,0,'2526','H','O',1412,2,0,'2025-10-23','00:00:00','OPWD0013',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 12:22:31','drashti','2025-10-23 12:22:31',0),(0,0,'2526','H','O',1412,3,0,'2025-10-23','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-23 12:22:31','drashti','2025-10-23 12:22:31',0),(0,0,'2526','H','O',1412,4,0,'2025-10-23','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-23 12:22:31','drashti','2025-10-23 12:22:31',0),(0,0,'2526','H','O',1413,1,0,'2025-10-23','00:00:00','WPRC0037',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 12:22:53','shweta','2025-10-23 12:22:53',0),(0,0,'2526','H','O',1414,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 12:25:40','drashti','2025-10-23 12:25:40',0),(0,0,'2526','H','O',1414,2,0,'2025-10-23','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 12:25:40','drashti','2025-10-23 12:25:40',0),(0,0,'2526','H','O',1415,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-23 12:26:00','shweta','2025-10-23 12:26:00',0),(0,0,'2526','H','O',1416,1,0,'2025-10-23','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-23 12:28:03','shweta','2025-10-23 12:28:03',0),(0,0,'2526','H','O',1417,1,0,'2025-10-23','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-10-23 12:28:58','shweta','2025-10-23 12:28:58',0),(0,0,'2526','H','O',1418,1,0,'2025-10-23','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-23 12:29:22','drashti','2025-10-23 12:29:22',0),(0,0,'2526','H','O',1419,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 12:30:44','shweta','2025-10-23 12:30:44',0),(0,0,'2526','H','O',1420,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-23 12:31:51','drashti','2025-10-23 12:31:51',0),(0,0,'2526','H','O',1421,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 12:34:14','drashti','2025-10-23 12:34:14',0),(0,0,'2526','H','O',1421,2,0,'2025-10-23','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 12:34:14','drashti','2025-10-23 12:34:14',0),(0,0,'2526','H','O',1422,1,0,'2025-10-23','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-23 12:35:49','shweta','2025-10-23 12:35:49',0),(0,0,'2526','H','O',1423,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 12:37:15','drashti','2025-10-23 12:37:15',0),(0,0,'2526','H','O',1423,2,0,'2025-10-23','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 12:37:15','drashti','2025-10-23 12:37:15',0),(0,0,'2526','H','O',1423,3,0,'2025-10-23','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 12:37:15','drashti','2025-10-23 12:37:15',0),(0,0,'2526','H','O',1424,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 12:38:03','shweta','2025-10-23 12:38:03',0),(0,0,'2526','H','O',1425,1,0,'2025-10-23','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-23 12:41:45','shweta','2025-10-23 12:41:45',0),(0,0,'2526','H','O',1426,1,0,'2025-10-23','00:00:00','XRY0045',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-23 12:44:06','shweta','2025-10-23 12:44:06',0),(0,0,'2526','H','O',1427,1,0,'2025-10-23','00:00:00','OTCG0001',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-23 12:48:22','drashti','2025-10-23 12:48:22',0),(0,0,'2526','H','O',1427,2,0,'2025-10-23','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-23 12:48:22','drashti','2025-10-23 12:48:22',0),(0,0,'2526','H','O',1428,1,0,'2025-10-23','00:00:00','LAB0817',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-10-23 12:50:47','shweta','2025-10-23 12:50:47',0),(0,0,'2526','H','O',1429,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 12:54:07','drashti','2025-10-23 12:54:07',0),(0,0,'2526','H','O',1429,2,0,'2025-10-23','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 12:54:07','drashti','2025-10-23 12:54:07',0),(0,0,'2526','H','O',1430,1,0,'2025-10-23','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-23 12:58:31','shweta','2025-10-23 12:58:31',0),(0,0,'2526','H','O',1431,1,0,'2025-10-23','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-23 12:58:40','drashti','2025-10-23 12:58:40',0),(0,0,'2526','H','O',1432,1,0,'2025-10-23','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-23 13:00:24','shweta','2025-10-23 13:00:24',0),(0,0,'2526','H','O',1433,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 13:01:14','drashti','2025-10-23 13:01:14',0),(0,0,'2526','H','O',1433,2,0,'2025-10-23','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 13:01:14','drashti','2025-10-23 13:01:14',0),(0,0,'2526','H','O',1433,3,0,'2025-10-23','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-23 13:01:14','drashti','2025-10-23 13:01:14',0),(0,0,'2526','H','O',1434,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 13:07:14','shweta','2025-10-23 13:07:14',0),(0,0,'2526','H','O',1434,2,0,'2025-10-23','00:00:00','WPRC0046',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 13:07:14','shweta','2025-10-23 13:07:14',0),(0,0,'2526','H','O',1435,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 13:19:33','shweta','2025-10-23 13:19:33',0),(0,0,'2526','H','O',1435,2,0,'2025-10-23','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 13:19:33','shweta','2025-10-23 13:19:33',0),(0,0,'2526','H','O',1435,3,0,'2025-10-23','00:00:00','OPWD0015',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-23 13:19:33','shweta','2025-10-23 13:19:33',0),(0,0,'2526','H','O',1436,1,0,'2025-10-23','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-23 17:28:39','urvashi','2025-10-23 17:28:39',0),(0,0,'2526','H','O',1437,1,0,'2025-10-23','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-23 17:29:50','urvashi','2025-10-23 17:29:50',0),(0,0,'2526','H','O',1438,1,0,'2025-10-23','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-23 17:31:10','urvashi','2025-10-23 17:31:10',0),(0,0,'2526','H','O',1439,1,0,'2025-10-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-23 17:35:05','urvashi','2025-10-23 17:35:05',0),(0,0,'2526','H','O',1440,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-23 17:45:18','urvashi','2025-10-23 17:45:18',0),(0,0,'2526','H','O',1440,2,0,'2025-10-23','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-23 17:45:18','urvashi','2025-10-23 17:45:18',0),(0,0,'2526','H','O',1440,3,0,'2025-10-23','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 17:45:18','urvashi','2025-10-23 17:45:18',0),(0,0,'2526','H','O',1440,4,0,'2025-10-23','00:00:00','WPRC0037',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-23 17:45:18','urvashi','2025-10-23 17:45:18',0),(0,0,'2526','H','O',1441,1,0,'2025-10-23','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-23 17:47:17','urvashi','2025-10-23 17:47:17',0),(0,0,'2526','H','O',1442,1,0,'2025-10-23','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 17:49:24','urvashi','2025-10-23 17:49:24',0),(0,0,'2526','H','O',1442,2,0,'2025-10-23','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 17:49:24','urvashi','2025-10-23 17:49:24',0),(0,0,'2526','H','O',1442,3,0,'2025-10-23','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 17:49:24','urvashi','2025-10-23 17:49:24',0),(0,0,'2526','H','O',1443,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:01:58','urvashi','2025-10-23 18:01:58',0),(0,0,'2526','H','O',1443,2,0,'2025-10-23','00:00:00','XRY0252',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:01:58','urvashi','2025-10-23 18:01:58',0),(0,0,'2526','H','O',1443,3,0,'2025-10-23','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:01:58','urvashi','2025-10-23 18:01:58',0),(0,0,'2526','H','O',1444,1,0,'2025-10-23','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:06:41','urvashi','2025-10-23 18:06:41',0),(0,0,'2526','H','O',1444,2,0,'2025-10-23','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:06:41','urvashi','2025-10-23 18:06:41',0),(0,0,'2526','H','O',1445,1,0,'2025-10-23','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:08:38','urvashi','2025-10-23 18:08:38',0),(0,0,'2526','H','O',1445,2,0,'2025-10-23','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:08:38','urvashi','2025-10-23 18:08:38',0),(0,0,'2526','H','O',1445,3,0,'2025-10-23','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:08:38','urvashi','2025-10-23 18:08:38',0),(0,0,'2526','H','O',1446,1,0,'2025-10-23','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:24:43','urvashi','2025-10-23 18:24:43',0),(0,0,'2526','H','O',1446,2,0,'2025-10-23','00:00:00','NEU10020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:24:43','urvashi','2025-10-23 18:24:43',0),(0,0,'2526','H','O',1447,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:41:38','urvashi','2025-10-23 18:41:38',0),(0,0,'2526','H','O',1447,2,0,'2025-10-23','00:00:00','WPRC0037',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:41:38','urvashi','2025-10-23 18:41:38',0),(0,0,'2526','H','O',1447,3,0,'2025-10-23','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:41:38','urvashi','2025-10-23 18:41:38',0),(0,0,'2526','H','O',1448,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:43:36','urvashi','2025-10-23 18:43:36',0),(0,0,'2526','H','O',1448,2,0,'2025-10-23','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:43:36','urvashi','2025-10-23 18:43:36',0),(0,0,'2526','H','O',1449,1,0,'2025-10-23','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:44:28','urvashi','2025-10-23 18:44:28',0),(0,0,'2526','H','O',1450,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:46:14','urvashi','2025-10-23 18:46:14',0),(0,0,'2526','H','O',1450,2,0,'2025-10-23','00:00:00','WPRC0042',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:46:14','urvashi','2025-10-23 18:46:14',0),(0,0,'2526','H','O',1451,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:48:11','urvashi','2025-10-23 18:48:11',0),(0,0,'2526','H','O',1451,2,0,'2025-10-23','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:48:11','urvashi','2025-10-23 18:48:11',0),(0,0,'2526','H','O',1451,3,0,'2025-10-23','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:48:11','urvashi','2025-10-23 18:48:11',0),(0,0,'2526','H','O',1451,4,0,'2025-10-23','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:48:11','urvashi','2025-10-23 18:48:11',0),(0,0,'2526','H','O',1452,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:51:10','urvashi','2025-10-23 18:51:10',0),(0,0,'2526','H','O',1452,2,0,'2025-10-23','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:51:10','urvashi','2025-10-23 18:51:10',0),(0,0,'2526','H','O',1453,1,0,'2025-10-23','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:52:22','urvashi','2025-10-23 18:52:22',0),(0,0,'2526','H','O',1454,1,0,'2025-10-23','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:54:04','urvashi','2025-10-23 18:54:04',0),(0,0,'2526','H','O',1455,1,0,'2025-10-23','00:00:00','MOPR0006',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:54:56','urvashi','2025-10-23 18:54:56',0),(0,0,'2526','H','O',1456,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-23 18:56:15','urvashi','2025-10-23 18:56:15',0),(0,0,'2526','H','O',1457,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-10-23 19:00:37','urvashi','2025-10-23 19:00:37',0),(0,0,'2526','H','O',1457,2,0,'2025-10-23','00:00:00','XRY0184',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 19:00:37','urvashi','2025-10-23 19:00:37',0),(0,0,'2526','H','O',1457,3,0,'2025-10-23','00:00:00','XRY0147',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 19:00:37','urvashi','2025-10-23 19:00:37',0),(0,0,'2526','H','O',1457,4,0,'2025-10-23','00:00:00','XRY0102',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 19:00:37','urvashi','2025-10-23 19:00:37',0),(0,0,'2526','H','O',1457,5,0,'2025-10-23','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-10-23 19:00:37','urvashi','2025-10-23 19:00:37',0),(0,0,'2526','H','O',1458,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-23 19:09:32','urvashi','2025-10-23 19:09:32',0),(0,0,'2526','H','O',1458,2,0,'2025-10-23','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-23 19:09:32','urvashi','2025-10-23 19:09:32',0),(0,0,'2526','H','O',1458,3,0,'2025-10-23','00:00:00','OPWD0013',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-23 19:09:32','urvashi','2025-10-23 19:09:32',0),(0,0,'2526','H','O',1458,4,0,'2025-10-23','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 19:09:32','urvashi','2025-10-23 19:09:32',0),(0,0,'2526','H','O',1459,1,0,'2025-10-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-23 19:15:15','urvashi','2025-10-23 19:15:15',0),(0,0,'2526','H','O',1459,2,0,'2025-10-23','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-23 19:15:15','urvashi','2025-10-23 19:15:15',0),(0,0,'2526','H','O',1459,3,0,'2025-10-23','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 19:15:15','urvashi','2025-10-23 19:15:15',0),(0,0,'2526','H','O',1459,4,0,'2025-10-23','00:00:00','WPRC0049',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 19:15:15','urvashi','2025-10-23 19:15:15',0),(0,0,'2526','H','O',1459,5,0,'2025-10-23','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-23 19:15:15','urvashi','2025-10-23 19:15:15',0),(0,0,'2526','H','O',1460,1,0,'2025-10-23','00:00:00','XRY0045',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-23 19:43:09','urvashi','2025-10-23 19:43:09',0),(0,0,'2526','H','O',1461,1,0,'2025-10-24','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-24 08:56:41','urvashi','2025-10-24 08:56:41',0),(0,0,'2526','H','O',1461,2,0,'2025-10-24','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-24 08:56:41','urvashi','2025-10-24 08:56:41',0),(0,0,'2526','H','O',1461,3,0,'2025-10-24','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-24 08:56:41','urvashi','2025-10-24 08:56:41',0),(0,0,'2526','H','O',1461,4,0,'2025-10-24','00:00:00','OPWD0013',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-24 08:56:41','urvashi','2025-10-24 08:56:41',0),(0,0,'2526','H','O',1462,1,0,'2025-10-24','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-24 08:59:52','urvashi','2025-10-24 08:59:52',0),(0,0,'2526','H','O',1462,2,0,'2025-10-24','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-24 08:59:52','urvashi','2025-10-24 08:59:52',0),(0,0,'2526','H','O',1463,1,0,'2025-10-24','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-24 09:02:32','urvashi','2025-10-24 09:02:32',0),(0,0,'2526','H','O',1463,2,0,'2025-10-24','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-24 09:02:32','urvashi','2025-10-24 09:02:32',0),(0,0,'2526','H','O',1464,1,0,'2025-10-24','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-24 09:04:05','urvashi','2025-10-24 09:04:05',0),(0,0,'2526','H','O',1465,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-24 09:31:56','reception','2025-10-24 09:31:56',0),(0,0,'2526','H','O',1466,1,0,'2025-10-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-24 10:07:28','drashti','2025-10-24 10:07:28',0),(0,0,'2526','H','O',1467,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-24 10:10:58','drashti','2025-10-24 10:10:58',0),(0,0,'2526','H','O',1468,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-24 10:14:23','urvashi','2025-10-24 10:14:23',0),(0,0,'2526','H','O',1469,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-24 10:16:02','drashti','2025-10-24 10:16:02',0),(0,0,'2526','H','O',1470,1,0,'2025-10-24','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-24 10:17:18','janvi','2025-10-24 10:17:18',0),(0,0,'2526','H','O',1471,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-24 10:27:05','drashti','2025-10-24 10:27:05',0),(0,0,'2526','H','O',1472,1,0,'2025-10-24','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-24 10:42:04','drashti','2025-10-24 10:42:04',0),(0,0,'2526','H','O',1473,1,0,'2025-10-24','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-24 10:44:13','drashti','2025-10-24 10:44:13',0),(0,0,'2526','H','O',1474,1,0,'2025-10-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-24 10:52:05','manshi','2025-10-24 10:52:05',0),(0,0,'2526','H','O',1475,1,0,'2025-10-24','00:00:00','XRY0062',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-24 11:11:46','drashti','2025-10-24 11:11:46',0),(0,0,'2526','H','O',1476,1,0,'2025-10-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-24 11:12:23','manshi','2025-10-24 11:20:40',0),(0,0,'2526','H','O',1477,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-10-24 11:12:44','priyanshi','2025-10-24 11:12:44',0),(0,0,'2526','H','O',1478,1,0,'2025-10-24','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-24 11:17:34','drashti','2025-10-24 11:17:34',0),(0,0,'2526','H','O',1479,1,0,'2025-10-24','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-24 11:20:40','manshi','2025-10-24 11:20:40',0),(0,0,'2526','H','O',1480,1,0,'2025-10-24','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-24 11:26:08','drashti','2025-10-24 11:26:08',0),(0,0,'2526','H','O',1480,2,0,'2025-10-24','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-24 11:26:08','drashti','2025-10-24 11:26:08',0),(0,0,'2526','H','O',1481,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-24 11:31:47','priyanshi','2025-10-24 11:31:47',0),(0,0,'2526','H','O',1482,1,0,'2025-10-24','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-24 11:33:25','priyanshi','2025-10-24 11:33:25',0),(0,0,'2526','H','O',1483,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-24 11:34:32','priyanshi','2025-10-24 11:34:32',0),(0,0,'2526','H','O',1484,1,0,'2025-10-24','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-24 11:36:54','janvi','2025-10-24 11:36:54',0),(0,0,'2526','H','O',1485,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-24 11:40:17','drashti','2025-10-24 11:40:17',0),(0,0,'2526','H','O',1486,1,0,'2025-10-24','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-24 11:41:16','janvi','2025-10-24 11:41:16',0),(0,0,'2526','H','O',1487,1,0,'2025-10-24','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-24 11:42:13','janvi','2025-10-24 11:42:13',0),(0,0,'2526','H','O',1488,1,0,'2025-10-24','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-10-24 11:44:40','priyanshi','2025-10-24 11:44:40',0),(0,0,'2526','H','O',1489,1,0,'2025-10-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-24 11:46:10','manshi','2025-10-24 11:46:10',0),(0,0,'2526','H','O',1490,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-10-24 11:51:17','priyanshi','2025-10-24 11:51:17',0),(0,0,'2526','H','O',1491,1,0,'2025-10-24','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-24 11:53:21','drashti','2025-10-24 11:53:21',0),(0,0,'2526','H','O',1492,1,0,'2025-10-24','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-24 11:59:29','priyanshi','2025-10-24 11:59:29',0),(0,0,'2526','H','O',1493,1,0,'2025-10-24','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-24 12:04:54','priyanshi','2025-10-24 12:04:54',0),(0,0,'2526','H','O',1494,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-24 12:06:45','priyanshi','2025-10-24 12:06:45',0),(0,0,'2526','H','O',1495,1,0,'2025-10-24','00:00:00','NEU10020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-10-24 12:07:58','priyanshi','2025-10-24 12:07:58',0),(0,0,'2526','H','O',1496,1,0,'2025-10-24','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-10-24 12:23:02','priyanshi','2025-10-24 12:23:02',0),(0,0,'2526','H','O',1496,2,0,'2025-10-24','00:00:00','NEU10019',0,1.00,1800,1800,'P',0,0,1800.00,0.00,0.00,1800.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-10-24 12:23:02','priyanshi','2025-10-24 12:23:02',0),(0,0,'2526','H','O',1496,3,0,'2025-10-24','00:00:00','NEU10017',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-10-24 12:23:02','priyanshi','2025-10-24 12:23:02',0),(0,0,'2526','H','O',1497,1,0,'2025-10-24','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-24 12:24:17','janvi','2025-10-24 12:24:17',0),(0,0,'2526','H','O',1498,1,0,'2025-10-24','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-24 12:26:06','drashti','2025-10-24 12:26:06',0),(0,0,'2526','H','O',1499,1,0,'2025-10-24','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-24 12:35:05','drashti','2025-10-24 12:35:05',0),(0,0,'2526','H','O',1500,1,0,'2025-10-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-24 12:37:11','drashti','2025-10-24 12:37:11',0),(0,0,'2526','H','O',1501,1,0,'2025-10-24','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-10-24 12:38:59','priyanshi','2025-10-24 12:38:59',0),(0,0,'2526','H','O',1501,2,0,'2025-10-24','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-10-24 12:38:59','priyanshi','2025-10-24 12:38:59',0),(0,0,'2526','H','O',1501,3,0,'2025-10-24','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-10-24 12:38:59','priyanshi','2025-10-24 12:38:59',0),(0,0,'2526','H','O',1502,1,0,'2025-10-24','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-10-24 12:41:08','priyanshi','2025-10-24 12:41:08',0),(0,0,'2526','H','O',1502,2,0,'2025-10-24','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-10-24 12:41:08','priyanshi','2025-10-24 12:41:08',0),(0,0,'2526','H','O',1503,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-24 13:15:59','priyanshi','2025-10-24 13:15:59',0),(0,0,'2526','H','O',1504,1,0,'2025-10-24','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-24 16:37:45','drashti','2025-10-24 16:37:45',0),(0,0,'2526','H','O',1505,1,0,'2025-10-24','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-24 16:45:46','drashti','2025-10-24 16:45:46',0),(0,0,'2526','H','O',1506,1,0,'2025-10-24','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-24 16:50:20','reception','2025-10-24 16:50:20',0),(0,0,'2526','H','O',1507,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-24 17:03:06','reception','2025-10-24 17:03:06',0),(0,0,'2526','H','O',1508,1,0,'2025-10-24','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-24 17:05:13','drashti','2025-10-24 17:05:13',0),(0,0,'2526','H','O',1509,1,0,'2025-10-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-24 17:07:52','reception','2025-10-24 17:07:52',0),(0,0,'2526','H','O',1510,1,0,'2025-10-24','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-24 17:31:30','reception','2025-10-24 17:31:30',0),(0,0,'2526','H','O',1510,2,0,'2025-10-24','00:00:00','NEU10020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-24 17:31:30','reception','2025-10-24 17:31:30',0),(0,0,'2526','H','O',1511,1,0,'2025-10-24','00:00:00','OPWD0007',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-24 17:45:02','drashti','2025-10-24 17:45:02',0),(0,0,'2526','H','O',1512,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-24 17:45:23','janvi','2025-10-24 17:45:23',0),(0,0,'2526','H','O',1513,1,0,'2025-10-24','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-24 17:48:55','reception','2025-10-24 17:48:55',0),(0,0,'2526','H','O',1514,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-24 18:01:03','reception','2025-10-24 18:01:03',0),(0,0,'2526','H','O',1515,1,0,'2025-10-24','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-24 18:04:25','reception','2025-10-24 18:04:25',0),(0,0,'2526','H','O',1516,1,0,'2025-10-24','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-24 18:07:53','janvi','2025-10-24 18:07:53',0),(0,0,'2526','H','O',1517,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-24 18:08:38','drashti','2025-10-24 18:08:38',0),(0,0,'2526','H','O',1518,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-24 18:10:48','janvi','2025-10-24 19:07:34',0),(0,0,'2526','H','O',1519,1,0,'2025-10-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-24 18:10:56','drashti','2025-10-24 18:10:56',0),(0,0,'2526','H','O',1520,1,0,'2025-10-24','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-24 18:11:19','janvi','2025-10-24 18:11:19',0),(0,0,'2526','H','O',1521,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-24 18:12:35','reception','2025-10-24 18:12:35',0),(0,0,'2526','H','O',1522,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-24 18:13:10','drashti','2025-10-24 18:13:10',0),(0,0,'2526','H','O',1523,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-24 18:15:56','drashti','2025-10-24 18:15:56',0),(0,0,'2526','H','O',1524,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-24 18:25:00','reception','2025-10-24 18:25:00',0),(0,0,'2526','H','O',1525,1,0,'2025-10-24','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-24 18:48:44','drashti','2025-10-24 18:48:44',0),(0,0,'2526','H','O',1526,1,0,'2025-10-24','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-24 18:48:53','reception','2025-10-24 18:48:53',0),(0,0,'2526','H','O',1526,2,0,'2025-10-24','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-24 18:48:53','reception','2025-10-24 18:48:53',0),(0,0,'2526','H','O',1526,3,0,'2025-10-24','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-24 18:48:53','reception','2025-10-24 18:48:53',0),(0,0,'2526','H','O',1527,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-24 18:51:56','drashti','2025-10-24 18:51:56',0),(0,0,'2526','H','O',1528,1,0,'2025-10-24','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-24 19:03:31','drashti','2025-10-24 19:03:31',0),(0,0,'2526','H','O',1529,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-24 19:06:01','drashti','2025-10-24 19:06:01',0),(0,0,'2526','H','O',1530,1,0,'2025-10-24','00:00:00','CASE',0,-1.00,500,-500,'P',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-24 19:07:34','janvi','2025-10-24 19:07:34',0),(0,0,'2526','H','O',1531,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-24 19:09:05','drashti','2025-10-24 19:09:05',0),(0,0,'2526','H','O',1532,1,0,'2025-10-24','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-24 19:10:20','reception','2025-10-24 19:10:20',0),(0,0,'2526','H','O',1532,2,0,'2025-10-24','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-24 19:10:20','reception','2025-10-24 19:10:20',0),(0,0,'2526','H','O',1532,3,0,'2025-10-24','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-24 19:10:20','reception','2025-10-24 19:10:20',0),(0,0,'2526','H','O',1533,1,0,'2025-10-24','00:00:00','CASE',0,1.00,1000,1000,'A',0,0,1000.00,0.00,0.00,1000.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-24 19:19:15','reception','2025-10-24 19:19:15',0),(0,0,'2526','H','O',1533,2,0,'2025-10-24','00:00:00','WPRC0046',0,1.00,1700,1700,'P',0,0,1700.00,0.00,0.00,1700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-24 19:19:15','reception','2025-10-24 19:19:15',0),(0,0,'2526','H','O',1534,1,0,'2025-10-24','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-24 19:21:34','drashti','2025-10-24 19:21:34',0),(0,0,'2526','H','O',1535,1,0,'2025-10-24','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-24 19:27:17','janvi','2025-10-24 19:27:17',0),(0,0,'2526','H','O',1536,1,0,'2025-10-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-24 19:50:52','janvi','2025-10-24 19:50:52',0),(0,0,'2526','H','O',1537,1,0,'2025-10-24','00:00:00','WPRC0046',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,3,0,'',0,'','','','Y','N','manshi','2025-10-24 20:40:20','manshi','2025-10-24 20:40:20',0),(0,0,'2526','H','O',1538,1,0,'2025-10-25','00:00:00','OTCG0033',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-10-25 09:00:52','priyanshi','2025-10-25 09:00:52',0),(0,0,'2526','H','O',1538,2,0,'2025-10-25','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-10-25 09:00:52','priyanshi','2025-10-25 09:00:52',0),(0,0,'2526','H','O',1539,1,0,'2025-10-25','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-10-25 09:02:04','priyanshi','2025-10-25 09:02:04',0),(0,0,'2526','H','O',1540,1,0,'2025-10-25','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-10-25 09:04:17','priyanshi','2025-10-25 09:04:17',0),(0,0,'2526','H','O',1540,2,0,'2025-10-25','00:00:00','WPRC0049',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-10-25 09:04:17','priyanshi','2025-10-25 09:04:17',0),(0,0,'2526','H','O',1541,1,0,'2025-10-25','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-10-25 09:07:36','priyanshi','2025-10-25 09:07:36',0),(0,0,'2526','H','O',1541,2,0,'2025-10-25','00:00:00','OPWD0015',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-10-25 09:07:36','priyanshi','2025-10-25 09:07:36',0),(0,0,'2526','H','O',1541,3,0,'2025-10-25','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-10-25 09:07:36','priyanshi','2025-10-25 09:07:36',0),(0,0,'2526','H','O',1542,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','priyanshi','2025-10-25 09:47:39','priyanshi','2025-10-25 09:47:39',0),(0,0,'2526','H','O',1542,2,0,'2025-10-25','00:00:00','XRY0151',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-10-25 09:47:39','priyanshi','2025-10-25 09:47:39',0),(0,0,'2526','H','O',1543,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-25 09:49:56','reception','2025-10-25 09:49:56',0),(0,0,'2526','H','O',1544,1,0,'2025-10-25','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-25 09:51:16','reception','2025-10-25 09:51:16',0),(0,0,'2526','H','O',1545,1,0,'2025-10-25','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-25 09:56:49','reception','2025-10-25 09:56:49',0),(0,0,'2526','H','O',1546,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-25 10:01:25','reception','2025-10-25 10:01:25',0),(0,0,'2526','H','O',1547,1,0,'2025-10-25','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-25 10:03:21','priyanshi','2025-10-25 10:03:21',0),(0,0,'2526','H','O',1548,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-25 10:08:30','manshi','2025-10-25 10:08:30',0),(0,0,'2526','H','O',1549,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-25 10:17:42','reception','2025-10-25 10:17:42',0),(0,0,'2526','H','O',1550,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-25 10:33:43','reception','2025-10-25 10:33:43',0),(0,0,'2526','H','O',1551,1,0,'2025-10-25','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-25 10:46:18','priyanshi','2025-10-25 10:46:18',0),(0,0,'2526','H','O',1552,1,0,'2025-10-25','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-25 10:51:01','reception','2025-10-25 10:51:01',0),(0,0,'2526','H','O',1552,2,0,'2025-10-25','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-25 10:51:01','reception','2025-10-25 10:51:01',0),(0,0,'2526','H','O',1553,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-25 11:00:07','reception','2025-10-25 11:00:07',0),(0,0,'2526','H','O',1554,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-25 11:00:25','drashti','2025-10-25 11:00:25',0),(0,0,'2526','H','O',1555,1,0,'2025-10-25','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-25 11:04:24','reception','2025-10-25 11:04:24',0),(0,0,'2526','H','O',1555,2,0,'2025-10-25','00:00:00','NEU10019',0,1.00,1800,1800,'P',0,0,1800.00,0.00,0.00,1800.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-25 11:04:24','reception','2025-10-25 11:04:24',0),(0,0,'2526','H','O',1555,3,0,'2025-10-25','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-25 11:04:24','reception','2025-10-25 11:04:24',0),(0,0,'2526','H','O',1555,4,0,'2025-10-25','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-25 11:04:24','reception','2025-10-25 11:04:24',0),(0,0,'2526','H','O',1556,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-25 11:04:33','manshi','2025-10-25 11:04:33',0),(0,0,'2526','H','O',1557,1,0,'2025-10-25','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-10-25 11:07:04','priyanshi','2025-10-25 11:07:04',0),(0,0,'2526','H','O',1558,1,0,'2025-10-25','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-25 11:16:11','drashti','2025-10-25 11:16:11',0),(0,0,'2526','H','O',1558,2,0,'2025-10-25','00:00:00','OPWD0019',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-25 11:16:11','drashti','2025-10-25 11:16:11',0),(0,0,'2526','H','O',1558,3,0,'2025-10-25','00:00:00','OPWD0016',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-25 11:16:11','drashti','2025-10-25 11:16:11',0),(0,0,'2526','H','O',1558,4,0,'2025-10-25','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-25 11:16:11','drashti','2025-10-25 11:16:11',0),(0,0,'2526','H','O',1558,5,0,'2025-10-25','00:00:00','OPHP0022',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-25 11:16:11','drashti','2025-10-25 11:16:11',0),(0,0,'2526','H','O',1559,1,0,'2025-10-25','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-10-25 11:20:53','reception','2025-10-25 11:20:53',0),(0,0,'2526','H','O',1560,1,0,'2025-10-25','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-25 11:23:54','drashti','2025-10-25 11:23:54',0),(0,0,'2526','H','O',1561,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-25 11:23:54','reception','2025-10-25 11:23:54',0),(0,0,'2526','H','O',1562,1,0,'2025-10-25','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-25 11:25:33','drashti','2025-10-25 11:25:33',0),(0,0,'2526','H','O',1563,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-25 11:26:34','reception','2025-10-25 11:26:34',0),(0,0,'2526','H','O',1564,1,0,'2025-10-25','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-25 11:28:15','janvi','2025-10-25 11:28:15',0),(0,0,'2526','H','O',1565,1,0,'2025-10-25','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-25 11:35:54','reception','2025-10-25 11:35:54',0),(0,0,'2526','H','O',1565,2,0,'2025-10-25','00:00:00','NEU10019',0,1.00,2300,2300,'P',0,0,2300.00,0.00,0.00,2300.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-25 11:35:54','reception','2025-10-25 11:35:54',0),(0,0,'2526','H','O',1565,3,0,'2025-10-25','00:00:00','NEU10017',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-25 11:35:54','reception','2025-10-25 11:35:54',0),(0,0,'2526','H','O',1566,1,0,'2025-10-25','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-25 11:41:00','janvi','2025-10-25 11:41:00',0),(0,0,'2526','H','O',1567,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-25 11:41:56','reception','2025-10-25 11:41:56',0),(0,0,'2526','H','O',1568,1,0,'2025-10-25','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-25 11:43:50','janvi','2025-10-25 11:43:50',0),(0,0,'2526','H','O',1569,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-25 11:44:02','reception','2025-10-25 11:44:02',0),(0,0,'2526','H','O',1570,1,0,'2025-10-25','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-25 11:45:08','drashti','2025-10-25 11:45:08',0),(0,0,'2526','H','O',1571,1,0,'2025-10-25','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-25 11:45:59','janvi','2025-10-25 11:45:59',0),(0,0,'2526','H','O',1572,1,0,'2025-10-25','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-25 11:47:08','drashti','2025-10-25 11:47:08',0),(0,0,'2526','H','O',1573,1,0,'2025-10-25','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-25 11:47:26','reception','2025-10-25 11:47:26',0),(0,0,'2526','H','O',1573,2,0,'2025-10-25','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-25 11:47:26','reception','2025-10-25 11:47:26',0),(0,0,'2526','H','O',1574,1,0,'2025-10-25','00:00:00','XRY0390',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-25 11:49:36','manshi','2025-10-25 11:49:36',0),(0,0,'2526','H','O',1575,1,0,'2025-10-25','00:00:00','XRY0223',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-25 11:52:07','manshi','2025-10-25 11:52:07',0),(0,0,'2526','H','O',1575,2,0,'2025-10-25','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-25 11:52:07','manshi','2025-10-25 11:52:07',0),(0,0,'2526','H','O',1576,1,0,'2025-10-25','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-25 11:53:47','janvi','2025-10-25 11:53:47',0),(0,0,'2526','H','O',1577,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-25 12:02:41','reception','2025-10-25 12:02:41',0),(0,0,'2526','H','O',1578,1,0,'2025-10-25','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-25 12:15:03','reception','2025-10-25 12:15:03',0),(0,0,'2526','H','O',1578,2,0,'2025-10-25','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-25 12:15:03','reception','2025-10-25 12:15:03',0),(0,0,'2526','H','O',1578,3,0,'2025-10-25','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-25 12:15:03','reception','2025-10-25 12:15:03',0),(0,0,'2526','H','O',1579,1,0,'2025-10-25','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-25 12:25:09','janvi','2025-10-25 12:25:09',0),(0,0,'2526','H','O',1580,1,0,'2025-10-25','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-25 12:26:28','manshi','2025-10-25 12:26:28',0),(0,0,'2526','H','O',1581,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-25 12:28:33','reception','2025-10-25 12:28:33',0),(0,0,'2526','H','O',1582,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-25 12:35:48','janvi','2025-10-25 12:35:48',0),(0,0,'2526','H','O',1583,1,0,'2025-10-25','00:00:00','DTPR0061',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-25 12:37:38','drashti','2025-10-25 12:37:38',0),(0,0,'2526','H','O',1584,1,0,'2025-10-25','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-25 12:41:33','reception','2025-10-25 12:41:33',0),(0,0,'2526','H','O',1584,2,0,'2025-10-25','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-25 12:41:33','reception','2025-10-25 12:41:33',0),(0,0,'2526','H','O',1585,1,0,'2025-10-25','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-25 12:42:55','drashti','2025-10-25 12:42:55',0),(0,0,'2526','H','O',1586,1,0,'2025-10-25','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-25 12:47:00','reception','2025-10-25 12:47:00',0),(0,0,'2526','H','O',1586,2,0,'2025-10-25','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-25 12:47:00','reception','2025-10-25 12:47:00',0),(0,0,'2526','H','O',1587,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-25 12:50:06','janvi','2025-10-25 12:50:06',0),(0,0,'2526','H','O',1588,1,0,'2025-10-25','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-10-25 12:54:48','reception','2025-10-25 12:54:48',0),(0,0,'2526','H','O',1589,1,0,'2025-10-25','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-25 13:03:31','drashti','2025-10-25 13:03:31',0),(0,0,'2526','H','O',1590,1,0,'2025-10-25','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-25 13:10:08','reception','2025-10-25 13:10:08',0),(0,0,'2526','H','O',1591,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-25 13:17:23','janvi','2025-10-25 13:17:23',0),(0,0,'2526','H','O',1592,1,0,'2025-10-25','00:00:00','OPWD0007',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-25 13:51:12','reception','2025-10-25 13:51:12',0),(0,0,'2526','H','O',1593,1,0,'2025-10-25','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-10-25 16:38:12','priyanshi','2025-10-25 16:38:12',0),(0,0,'2526','H','O',1594,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-25 16:39:43','drashti','2025-10-25 16:39:43',0),(0,0,'2526','H','O',1595,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-25 17:41:02','drashti','2025-10-25 17:41:02',0),(0,0,'2526','H','O',1596,1,0,'2025-10-25','00:00:00','MOPR0006',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-25 17:41:29','janvi','2025-10-25 17:41:29',0),(0,0,'2526','H','O',1597,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-25 17:46:16','drashti','2025-10-25 17:46:16',0),(0,0,'2526','H','O',1598,1,0,'2025-10-25','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-25 18:42:07','janvi','2025-10-25 18:42:07',0),(0,0,'2526','H','O',1599,1,0,'2025-10-25','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-25 18:48:20','manshi','2025-10-25 18:48:20',0),(0,0,'2526','H','O',1600,1,0,'2025-10-25','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-25 18:53:07','janvi','2025-10-25 18:53:07',0),(0,0,'2526','H','O',1600,2,0,'2025-10-25','00:00:00','WPRC0042',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-25 18:53:07','janvi','2025-10-25 18:53:07',0),(0,0,'2526','H','O',1601,1,0,'2025-10-25','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-25 18:56:53','drashti','2025-10-25 18:56:53',0),(0,0,'2526','H','O',1602,1,0,'2025-10-25','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-25 19:03:27','janvi','2025-10-25 19:03:27',0),(0,0,'2526','H','O',1603,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-25 19:06:58','janvi','2025-10-25 19:06:58',0),(0,0,'2526','H','O',1604,1,0,'2025-10-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-25 19:39:18','drashti','2025-10-25 19:39:18',0),(0,0,'2526','H','O',1605,1,0,'2025-10-26','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-26 10:05:07','urvashi','2025-10-26 10:05:07',0),(0,0,'2526','H','O',1605,2,0,'2025-10-26','00:00:00','WPRC0042',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-26 10:05:07','urvashi','2025-10-26 10:05:07',0),(0,0,'2526','H','O',1606,1,0,'2025-10-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 08:51:41','urvashi','2025-10-27 08:51:41',0),(0,0,'2526','H','O',1607,1,0,'2025-10-27','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-27 08:52:50','urvashi','2025-10-27 08:52:50',0),(0,0,'2526','H','O',1608,1,0,'2025-10-27','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 08:56:20','urvashi','2025-10-27 08:56:20',0),(0,0,'2526','H','O',1608,2,0,'2025-10-27','00:00:00','WPRC0042',0,1.00,650,650,'P',0,0,650.00,0.00,0.00,650.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 08:56:20','urvashi','2025-10-27 08:56:20',0),(0,0,'2526','H','O',1609,1,0,'2025-10-27','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 09:03:47','urvashi','2025-10-27 09:03:47',0),(0,0,'2526','H','O',1609,2,0,'2025-10-27','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 09:03:47','urvashi','2025-10-27 09:03:47',0),(0,0,'2526','H','O',1609,3,0,'2025-10-27','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-27 09:03:47','urvashi','2025-10-27 09:03:47',0),(0,0,'2526','H','O',1610,1,0,'2025-10-27','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-27 09:08:57','urvashi','2025-10-27 09:08:57',0),(0,0,'2526','H','O',1610,2,0,'2025-10-27','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-27 09:08:57','urvashi','2025-10-27 09:08:57',0),(0,0,'2526','H','O',1611,1,0,'2025-10-27','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 09:20:11','urvashi','2025-10-27 09:20:11',0),(0,0,'2526','H','O',1611,2,0,'2025-10-27','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-27 09:20:11','urvashi','2025-10-27 09:20:11',0),(0,0,'2526','H','O',1611,3,0,'2025-10-27','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 09:20:11','urvashi','2025-10-27 09:20:11',0),(0,0,'2526','H','O',1612,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-27 09:26:51','janvi','2025-10-27 09:26:51',0),(0,0,'2526','H','O',1613,1,0,'2025-10-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 09:29:11','reception','2025-10-27 09:29:11',0),(0,0,'2526','H','O',1614,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 09:41:09','urvashi','2025-10-27 09:41:09',0),(0,0,'2526','H','O',1615,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-27 10:14:17','manshi','2025-10-27 10:14:17',0),(0,0,'2526','H','O',1616,1,0,'2025-10-27','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-27 10:18:35','manshi','2025-10-27 10:18:35',0),(0,0,'2526','H','O',1617,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 10:21:03','reception','2025-10-27 10:21:03',0),(0,0,'2526','H','O',1618,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-27 10:21:31','janvi','2025-10-27 10:21:31',0),(0,0,'2526','H','O',1619,1,0,'2025-10-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-27 10:21:40','manshi','2025-10-27 10:21:40',0),(0,0,'2526','H','O',1620,1,0,'2025-10-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 10:22:36','reception','2025-10-27 10:22:36',0),(0,0,'2526','H','O',1621,1,0,'2025-10-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 10:24:51','reception','2025-10-27 10:24:51',0),(0,0,'2526','H','O',1622,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-27 10:30:32','janvi','2025-10-27 10:30:32',0),(0,0,'2526','H','O',1623,1,0,'2025-10-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 10:30:44','reception','2025-10-27 10:30:44',0),(0,0,'2526','H','O',1624,1,0,'2025-10-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 10:32:56','reception','2025-10-27 10:32:56',0),(0,0,'2526','H','O',1625,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 10:34:54','reception','2025-10-27 10:34:54',0),(0,0,'2526','H','O',1626,1,0,'2025-10-27','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-27 10:36:31','manshi','2025-10-27 10:36:31',0),(0,0,'2526','H','O',1627,1,0,'2025-10-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 10:38:36','reception','2025-10-27 10:38:36',0),(0,0,'2526','H','O',1628,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-27 10:45:55','urvashi','2025-10-27 10:45:55',0),(0,0,'2526','H','O',1629,1,0,'2025-10-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 10:48:54','urvashi','2025-10-27 10:48:54',0),(0,0,'2526','H','O',1630,1,0,'2025-10-27','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-27 10:50:58','janvi','2025-10-27 10:50:58',0),(0,0,'2526','H','O',1631,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 10:51:11','reception','2025-10-27 10:51:11',0),(0,0,'2526','H','O',1632,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 10:54:10','urvashi','2025-10-27 10:54:10',0),(0,0,'2526','H','O',1633,1,0,'2025-10-27','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 10:54:17','reception','2025-10-27 10:54:17',0),(0,0,'2526','H','O',1634,1,0,'2025-10-27','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 10:56:14','reception','2025-10-27 10:56:14',0),(0,0,'2526','H','O',1635,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-27 10:57:00','janvi','2025-10-27 10:58:40',0),(0,0,'2526','H','O',1636,1,0,'2025-10-27','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 10:58:29','reception','2025-10-27 10:58:29',0),(0,0,'2526','H','O',1637,1,0,'2025-10-27','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-27 10:58:40','janvi','2025-10-27 10:58:40',0),(0,0,'2526','H','O',1638,1,0,'2025-10-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 10:58:54','urvashi','2025-10-27 10:58:54',0),(0,0,'2526','H','O',1639,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-27 10:59:53','janvi','2025-10-27 10:59:53',0),(0,0,'2526','H','O',1640,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-27 11:00:36','janvi','2025-10-27 11:00:36',0),(0,0,'2526','H','O',1641,1,0,'2025-10-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-27 11:03:01','janvi','2025-10-27 11:03:01',0),(0,0,'2526','H','O',1642,1,0,'2025-10-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 11:03:24','urvashi','2025-10-27 11:03:24',0),(0,0,'2526','H','O',1643,1,0,'2025-10-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-27 11:07:17','manshi','2025-10-27 11:07:17',0),(0,0,'2526','H','O',1644,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-27 11:07:54','janvi','2025-10-27 11:07:54',0),(0,0,'2526','H','O',1645,1,0,'2025-10-27','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-27 11:08:06','urvashi','2025-10-27 11:08:06',0),(0,0,'2526','H','O',1646,1,0,'2025-10-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 11:10:37','reception','2025-10-27 11:10:37',0),(0,0,'2526','H','O',1647,1,0,'2025-10-27','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-27 11:14:33','urvashi','2025-10-27 11:14:33',0),(0,0,'2526','H','O',1648,1,0,'2025-10-27','00:00:00','XRY0449',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-27 11:15:14','manshi','2025-10-27 11:15:14',0),(0,0,'2526','H','O',1649,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 11:17:55','reception','2025-10-27 11:17:55',0),(0,0,'2526','H','O',1650,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 11:20:42','reception','2025-10-27 11:20:42',0),(0,0,'2526','H','O',1651,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 11:21:51','urvashi','2025-10-27 11:21:51',0),(0,0,'2526','H','O',1652,1,0,'2025-10-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-27 11:23:31','janvi','2025-10-27 11:23:31',0),(0,0,'2526','H','O',1653,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 11:25:21','reception','2025-10-27 11:25:21',0),(0,0,'2526','H','O',1654,1,0,'2025-10-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-27 11:25:42','manshi','2025-10-27 11:25:42',0),(0,0,'2526','H','O',1655,1,0,'2025-10-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-27 11:28:01','manshi','2025-10-27 11:28:01',0),(0,0,'2526','H','O',1656,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-27 11:28:02','janvi','2025-10-27 11:28:02',0),(0,0,'2526','H','O',1657,1,0,'2025-10-27','00:00:00','XRY0308',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-27 11:30:05','manshi','2025-10-27 11:30:05',0),(0,0,'2526','H','O',1658,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-27 11:32:53','manshi','2025-10-27 11:32:53',0),(0,0,'2526','H','O',1659,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-27 11:35:38','janvi','2025-10-27 11:35:38',0),(0,0,'2526','H','O',1660,1,0,'2025-10-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-27 11:36:38','janvi','2025-10-27 11:36:38',0),(0,0,'2526','H','O',1661,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 11:38:57','reception','2025-10-27 11:38:57',0),(0,0,'2526','H','O',1662,1,0,'2025-10-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 11:39:43','urvashi','2025-10-27 11:39:43',0),(0,0,'2526','H','O',1663,1,0,'2025-10-27','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-27 11:39:58','janvi','2025-10-27 11:39:58',0),(0,0,'2526','H','O',1663,2,0,'2025-10-27','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-27 11:39:58','janvi','2025-10-27 11:39:58',0),(0,0,'2526','H','O',1664,1,0,'2025-10-27','00:00:00','XRY0189',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-27 11:40:29','manshi','2025-10-27 11:40:29',0),(0,0,'2526','H','O',1665,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 11:41:52','urvashi','2025-10-27 11:41:52',0),(0,0,'2526','H','O',1666,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 11:42:03','reception','2025-10-27 11:42:03',0),(0,0,'2526','H','O',1667,1,0,'2025-10-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-27 11:42:12','janvi','2025-10-27 11:42:12',0),(0,0,'2526','H','O',1668,1,0,'2025-10-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 11:45:41','reception','2025-10-27 11:45:41',0),(0,0,'2526','H','O',1668,2,0,'2025-10-27','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 11:45:41','reception','2025-10-27 11:45:41',0),(0,0,'2526','H','O',1668,3,0,'2025-10-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 11:45:41','reception','2025-10-27 11:45:41',0),(0,0,'2526','H','O',1669,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 11:49:04','urvashi','2025-10-27 11:49:04',0),(0,0,'2526','H','O',1670,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-27 11:49:29','manshi','2025-10-27 11:49:29',0),(0,0,'2526','H','O',1671,1,0,'2025-10-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 11:51:22','urvashi','2025-10-27 11:51:22',0),(0,0,'2526','H','O',1672,1,0,'2025-10-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-27 11:51:26','manshi','2025-10-27 12:19:52',0),(0,0,'2526','H','O',1673,1,0,'2025-10-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 11:51:31','reception','2025-10-27 11:51:31',0),(0,0,'2526','H','O',1673,2,0,'2025-10-27','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 11:51:31','reception','2025-10-27 11:51:31',0),(0,0,'2526','H','O',1674,1,0,'2025-10-27','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-27 11:51:54','janvi','2025-10-27 11:51:54',0),(0,0,'2526','H','O',1675,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 11:53:19','urvashi','2025-10-27 11:53:19',0),(0,0,'2526','H','O',1676,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 11:55:10','urvashi','2025-10-27 11:55:10',0),(0,0,'2526','H','O',1677,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 12:02:10','urvashi','2025-10-27 12:02:10',0),(0,0,'2526','H','O',1678,1,0,'2025-10-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-27 12:04:55','urvashi','2025-10-27 12:04:55',0),(0,0,'2526','H','O',1679,1,0,'2025-10-27','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 12:09:42','reception','2025-10-27 12:09:42',0),(0,0,'2526','H','O',1679,2,0,'2025-10-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 12:09:42','reception','2025-10-27 12:09:42',0),(0,0,'2526','H','O',1680,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-27 12:10:06','manshi','2025-10-27 12:10:06',0),(0,0,'2526','H','O',1681,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-27 12:10:36','janvi','2025-10-27 12:59:03',0),(0,0,'2526','H','O',1682,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-27 12:10:40','urvashi','2025-10-27 12:10:40',0),(0,0,'2526','H','O',1683,1,0,'2025-10-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-27 12:14:07','drashti','2025-10-27 12:14:07',0),(0,0,'2526','H','O',1684,1,0,'2025-10-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 12:14:12','reception','2025-10-27 12:14:12',0),(0,0,'2526','H','O',1685,1,0,'2025-10-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-27 12:17:54','manshi','2025-10-27 12:17:54',0),(0,0,'2526','H','O',1686,1,0,'2025-10-27','00:00:00','WPRC0046',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-27 12:18:12','janvi','2025-10-27 12:18:12',0),(0,0,'2526','H','O',1687,1,0,'2025-10-27','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-27 12:19:52','manshi','2025-10-27 12:19:52',0),(0,0,'2526','H','O',1688,1,0,'2025-10-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 12:22:59','reception','2025-10-27 12:22:59',0),(0,0,'2526','H','O',1689,1,0,'2025-10-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 12:23:37','reception','2025-10-27 12:23:37',0),(0,0,'2526','H','O',1689,2,0,'2025-10-27','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 12:23:37','reception','2025-10-27 12:23:37',0),(0,0,'2526','H','O',1689,3,0,'2025-10-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 12:23:37','reception','2025-10-27 12:23:37',0),(0,0,'2526','H','O',1690,1,0,'2025-10-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 12:28:11','reception','2025-10-27 12:28:11',0),(0,0,'2526','H','O',1690,2,0,'2025-10-27','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 12:28:11','reception','2025-10-27 12:28:11',0),(0,0,'2526','H','O',1691,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 12:32:28','reception','2025-10-27 12:32:28',0),(0,0,'2526','H','O',1692,1,0,'2025-10-27','00:00:00','WPRC0046',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-27 12:35:26','manshi','2025-10-27 12:35:26',0),(0,0,'2526','H','O',1692,2,0,'2025-10-27','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-27 12:35:26','manshi','2025-10-27 12:35:26',0),(0,0,'2526','H','O',1693,1,0,'2025-10-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-27 12:37:36','drashti','2025-10-27 12:37:36',0),(0,0,'2526','H','O',1694,1,0,'2025-10-27','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 12:39:38','reception','2025-10-27 12:39:38',0),(0,0,'2526','H','O',1694,2,0,'2025-10-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 12:39:38','reception','2025-10-27 12:39:38',0),(0,0,'2526','H','O',1695,1,0,'2025-10-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 12:47:37','reception','2025-10-27 12:47:37',0),(0,0,'2526','H','O',1695,2,0,'2025-10-27','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 12:47:37','reception','2025-10-27 12:47:37',0),(0,0,'2526','H','O',1695,3,0,'2025-10-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 12:47:37','reception','2025-10-27 12:47:37',0),(0,0,'2526','H','O',1696,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-27 12:49:58','drashti','2025-10-27 12:49:58',0),(0,0,'2526','H','O',1697,1,0,'2025-10-27','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-27 12:50:08','janvi','2025-10-27 12:55:57',0),(0,0,'2526','H','O',1698,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-27 12:52:48','drashti','2025-10-27 12:52:48',0),(0,0,'2526','H','O',1699,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-27 12:53:05','janvi','2025-10-27 12:53:05',0),(0,0,'2526','H','O',1700,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 12:54:27','reception','2025-10-27 12:54:27',0),(0,0,'2526','H','O',1701,1,0,'2025-10-27','00:00:00','CASE',0,-1.00,300,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-27 12:55:57','janvi','2025-10-27 12:55:57',0),(0,0,'2526','H','O',1702,1,0,'2025-10-27','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-27 12:57:42','drashti','2025-10-27 12:57:42',0),(0,0,'2526','H','O',1703,1,0,'2025-10-27','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-27 12:59:03','janvi','2025-10-27 12:59:03',0),(0,0,'2526','H','O',1704,1,0,'2025-10-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 12:59:44','reception','2025-10-27 12:59:44',0),(0,0,'2526','H','O',1704,2,0,'2025-10-27','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 12:59:44','reception','2025-10-27 12:59:44',0),(0,0,'2526','H','O',1704,3,0,'2025-10-27','00:00:00','NEU10019',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 12:59:44','reception','2025-10-27 12:59:44',0),(0,0,'2526','H','O',1705,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-27 13:08:33','janvi','2025-10-27 13:08:33',0),(0,0,'2526','H','O',1706,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 13:09:19','reception','2025-10-27 13:09:19',0),(0,0,'2526','H','O',1707,1,0,'2025-10-27','00:00:00','NEU10020',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 13:13:42','reception','2025-10-27 13:13:42',0),(0,0,'2526','H','O',1708,1,0,'2025-10-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 13:21:47','reception','2025-10-27 13:21:47',0),(0,0,'2526','H','O',1709,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-27 13:24:29','drashti','2025-10-27 13:24:29',0),(0,0,'2526','H','O',1710,1,0,'2025-10-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-27 13:51:42','janvi','2025-10-27 13:51:42',0),(0,0,'2526','H','O',1711,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-27 13:55:55','janvi','2025-10-27 13:55:55',0),(0,0,'2526','H','O',1712,1,0,'2025-10-27','00:00:00','WPRC0046',0,1.00,7000,7000,'P',0,0,7000.00,0.00,0.00,7000.00,'',0,7,0,'',0,'','','','Y','N','drashti','2025-10-27 14:13:12','drashti','2025-10-27 14:13:12',0),(0,0,'2526','H','O',1713,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-27 16:25:14','drashti','2025-10-27 16:25:14',0),(0,0,'2526','H','O',1714,1,0,'2025-10-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-27 16:25:37','drashti','2025-10-27 16:25:37',0),(0,0,'2526','H','O',1715,1,0,'2025-10-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 16:35:56','reception','2025-10-27 16:35:56',0),(0,0,'2526','H','O',1716,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 16:43:32','reception','2025-10-27 16:43:32',0),(0,0,'2526','H','O',1717,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 16:46:41','reception','2025-10-27 16:46:41',0),(0,0,'2526','H','O',1718,1,0,'2025-10-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 17:12:58','reception','2025-10-27 17:12:58',0),(0,0,'2526','H','O',1718,2,0,'2025-10-27','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 17:12:58','reception','2025-10-27 17:12:58',0),(0,0,'2526','H','O',1718,3,0,'2025-10-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 17:12:58','reception','2025-10-27 17:12:58',0),(0,0,'2526','H','O',1719,1,0,'2025-10-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 17:16:27','reception','2025-10-27 17:16:27',0),(0,0,'2526','H','O',1719,2,0,'2025-10-27','00:00:00','NEU10017',0,1.00,3100,3100,'P',0,0,3100.00,0.00,0.00,3100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 17:16:27','reception','2025-10-27 17:16:27',0),(0,0,'2526','H','O',1720,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 17:19:32','reception','2025-10-27 17:19:32',0),(0,0,'2526','H','O',1721,1,0,'2025-10-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 17:21:24','reception','2025-10-27 17:21:24',0),(0,0,'2526','H','O',1722,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 17:23:00','reception','2025-10-27 17:23:00',0),(0,0,'2526','H','O',1723,1,0,'2025-10-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 17:25:05','reception','2025-10-27 17:25:05',0),(0,0,'2526','H','O',1723,2,0,'2025-10-27','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 17:25:05','reception','2025-10-27 17:25:05',0),(0,0,'2526','H','O',1723,3,0,'2025-10-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 17:25:05','reception','2025-10-27 17:25:05',0),(0,0,'2526','H','O',1724,1,0,'2025-10-27','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-27 17:27:50','janvi','2025-10-27 17:27:50',0),(0,0,'2526','H','O',1725,1,0,'2025-10-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 17:34:34','reception','2025-10-27 17:34:34',0),(0,0,'2526','H','O',1726,1,0,'2025-10-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-27 17:42:57','drashti','2025-10-27 17:42:57',0),(0,0,'2526','H','O',1727,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-27 17:44:27','manshi','2025-10-27 17:44:27',0),(0,0,'2526','H','O',1728,1,0,'2025-10-27','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 17:47:39','reception','2025-10-27 17:47:39',0),(0,0,'2526','H','O',1729,1,0,'2025-10-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 17:47:48','reception','2025-10-27 17:47:48',0),(0,0,'2526','H','O',1730,1,0,'2025-10-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 17:52:05','reception','2025-10-27 17:52:05',0),(0,0,'2526','H','O',1730,2,0,'2025-10-27','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 17:52:05','reception','2025-10-27 17:52:05',0),(0,0,'2526','H','O',1730,3,0,'2025-10-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 17:52:05','reception','2025-10-27 17:52:05',0),(0,0,'2526','H','O',1731,1,0,'2025-10-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-27 17:52:14','janvi','2025-10-27 17:52:14',0),(0,0,'2526','H','O',1732,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 17:57:46','reception','2025-10-27 17:57:46',0),(0,0,'2526','H','O',1733,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-27 17:58:01','janvi','2025-10-27 17:58:01',0),(0,0,'2526','H','O',1734,1,0,'2025-10-27','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-27 18:01:02','janvi','2025-10-27 18:01:02',0),(0,0,'2526','H','O',1735,1,0,'2025-10-27','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-27 18:01:43','janvi','2025-10-27 18:01:43',0),(0,0,'2526','H','O',1736,1,0,'2025-10-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-27 18:02:30','manshi','2025-10-27 18:02:30',0),(0,0,'2526','H','O',1737,1,0,'2025-10-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 18:05:56','reception','2025-10-27 18:05:56',0),(0,0,'2526','H','O',1737,2,0,'2025-10-27','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 18:05:56','reception','2025-10-27 18:05:56',0),(0,0,'2526','H','O',1737,3,0,'2025-10-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 18:05:56','reception','2025-10-27 18:05:56',0),(0,0,'2526','H','O',1738,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-27 18:10:23','janvi','2025-10-27 18:10:23',0),(0,0,'2526','H','O',1739,1,0,'2025-10-27','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 18:10:45','reception','2025-10-27 18:10:45',0),(0,0,'2526','H','O',1740,1,0,'2025-10-27','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-27 18:11:48','janvi','2025-10-27 18:11:48',0),(0,0,'2526','H','O',1741,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-27 18:21:10','janvi','2025-10-27 18:21:10',0),(0,0,'2526','H','O',1742,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-27 18:23:41','janvi','2025-10-27 18:23:41',0),(0,0,'2526','H','O',1743,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 18:24:23','reception','2025-10-27 18:24:23',0),(0,0,'2526','H','O',1744,1,0,'2025-10-27','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 18:28:24','reception','2025-10-27 18:28:24',0),(0,0,'2526','H','O',1745,1,0,'2025-10-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 18:29:48','reception','2025-10-27 18:29:48',0),(0,0,'2526','H','O',1745,2,0,'2025-10-27','00:00:00','NEU10020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 18:29:48','reception','2025-10-27 18:29:48',0),(0,0,'2526','H','O',1746,1,0,'2025-10-27','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-27 18:30:00','janvi','2025-10-27 18:30:00',0),(0,0,'2526','H','O',1747,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-27 18:33:20','manshi','2025-10-27 18:33:20',0),(0,0,'2526','H','O',1748,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-27 18:37:18','reception','2025-10-27 18:37:18',0),(0,0,'2526','H','O',1749,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-27 18:37:34','janvi','2025-10-27 18:37:34',0),(0,0,'2526','H','O',1750,1,0,'2025-10-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 18:40:49','reception','2025-10-27 18:40:49',0),(0,0,'2526','H','O',1751,1,0,'2025-10-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-27 18:41:16','manshi','2025-10-27 18:41:16',0),(0,0,'2526','H','O',1752,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-27 18:41:17','janvi','2025-10-27 18:41:17',0),(0,0,'2526','H','O',1753,1,0,'2025-10-27','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-27 18:42:01','janvi','2025-10-27 18:42:01',0),(0,0,'2526','H','O',1754,1,0,'2025-10-27','00:00:00','XRY0358',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-27 18:44:43','manshi','2025-10-27 18:44:43',0),(0,0,'2526','H','O',1754,2,0,'2025-10-27','00:00:00','XRY0390',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-27 18:44:43','manshi','2025-10-27 18:44:43',0),(0,0,'2526','H','O',1755,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-10-27 18:45:10','shweta','2025-10-27 18:45:10',0),(0,0,'2526','H','O',1756,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 18:48:29','reception','2025-10-27 18:48:29',0),(0,0,'2526','H','O',1757,1,0,'2025-10-27','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 18:52:12','reception','2025-10-27 18:52:12',0),(0,0,'2526','H','O',1758,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-27 18:52:26','janvi','2025-10-27 18:52:26',0),(0,0,'2526','H','O',1759,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-27 18:52:49','shweta','2025-10-27 18:52:49',0),(0,0,'2526','H','O',1760,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-27 18:55:00','janvi','2025-10-27 18:55:00',0),(0,0,'2526','H','O',1761,1,0,'2025-10-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-27 18:55:43','manshi','2025-10-27 18:55:43',0),(0,0,'2526','H','O',1762,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 18:57:54','reception','2025-10-27 18:57:54',0),(0,0,'2526','H','O',1763,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 19:05:39','reception','2025-10-27 19:05:39',0),(0,0,'2526','H','O',1764,1,0,'2025-10-27','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-10-27 19:08:38','shweta','2025-10-27 19:08:38',0),(0,0,'2526','H','O',1765,1,0,'2025-10-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 19:14:13','reception','2025-10-27 20:46:12',0),(0,0,'2526','H','O',1766,1,0,'2025-10-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 19:19:06','reception','2025-10-27 19:19:06',0),(0,0,'2526','H','O',1766,2,0,'2025-10-27','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 19:19:06','reception','2025-10-27 19:19:06',0),(0,0,'2526','H','O',1766,3,0,'2025-10-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-27 19:19:06','reception','2025-10-27 19:19:06',0),(0,0,'2526','H','O',1767,1,0,'2025-10-27','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-10-27 19:20:38','shweta','2025-10-27 19:20:38',0),(0,0,'2526','H','O',1768,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-27 19:20:45','janvi','2025-10-27 19:20:45',0),(0,0,'2526','H','O',1769,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-27 19:32:27','janvi','2025-10-27 19:32:27',0),(0,0,'2526','H','O',1770,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-27 19:44:16','shweta','2025-10-27 19:44:16',0),(0,0,'2526','H','O',1771,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-27 19:46:12','shweta','2025-10-27 19:46:12',0),(0,0,'2526','H','O',1772,1,0,'2025-10-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-27 19:49:58','shweta','2025-10-27 19:49:58',0),(0,0,'2526','H','O',1773,1,0,'2025-10-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-27 20:10:36','shweta','2025-10-27 20:10:36',0),(0,0,'2526','H','O',1774,1,0,'2025-10-27','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-27 20:22:32','shweta','2025-10-27 20:22:32',0),(0,0,'2526','H','O',1775,1,0,'2025-10-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-27 20:41:10','reception','2025-10-27 20:41:10',0),(0,0,'2526','H','O',1776,1,0,'2025-10-27','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-27 20:45:42','reception','2025-10-27 20:45:42',0),(0,0,'2526','H','O',1777,1,0,'2025-10-27','00:00:00','CASE',0,-1.00,900,-900,'A',0,0,-900.00,0.00,0.00,-900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 20:46:12','reception','2025-10-27 20:46:12',0),(0,0,'2526','H','O',1778,1,0,'2025-10-27','00:00:00','CASE',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-27 20:47:01','reception','2025-10-27 20:47:01',0),(0,0,'2526','H','O',1779,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-28 09:09:15','urvashi','2025-10-28 09:09:15',0),(0,0,'2526','H','O',1780,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 09:30:09','reception','2025-10-28 09:30:09',0),(0,0,'2526','H','O',1781,1,0,'2025-10-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 09:45:12','reception','2025-10-28 09:45:12',0),(0,0,'2526','H','O',1782,1,0,'2025-10-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 09:50:22','reception','2025-10-28 09:50:22',0),(0,0,'2526','H','O',1783,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-28 10:05:34','reception','2025-10-28 10:05:34',0),(0,0,'2526','H','O',1784,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-28 10:06:22','janvi','2025-10-28 10:06:22',0),(0,0,'2526','H','O',1785,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-28 10:08:30','drashti','2025-10-28 10:08:30',0),(0,0,'2526','H','O',1786,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-28 10:09:27','janvi','2025-10-28 10:09:27',0),(0,0,'2526','H','O',1787,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-28 10:22:02','janvi','2025-10-28 10:22:02',0),(0,0,'2526','H','O',1788,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-28 10:27:15','reception','2025-10-28 10:27:15',0),(0,0,'2526','H','O',1789,1,0,'2025-10-28','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-28 10:30:57','janvi','2025-10-28 10:30:57',0),(0,0,'2526','H','O',1790,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-28 10:44:36','janvi','2025-10-28 10:44:36',0),(0,0,'2526','H','O',1791,1,0,'2025-10-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 10:48:30','reception','2025-10-28 10:48:30',0),(0,0,'2526','H','O',1792,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-28 10:58:11','drashti','2025-10-28 10:58:11',0),(0,0,'2526','H','O',1793,1,0,'2025-10-28','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-28 10:58:31','janvi','2025-10-28 10:58:31',0),(0,0,'2526','H','O',1794,1,0,'2025-10-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 10:59:04','reception','2025-10-28 10:59:04',0),(0,0,'2526','H','O',1794,2,0,'2025-10-28','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 10:59:04','reception','2025-10-28 10:59:04',0),(0,0,'2526','H','O',1794,3,0,'2025-10-28','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 10:59:04','reception','2025-10-28 10:59:04',0),(0,0,'2526','H','O',1795,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-28 11:00:32','janvi','2025-10-28 11:00:32',0),(0,0,'2526','H','O',1796,1,0,'2025-10-28','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-28 11:01:28','manshi','2025-10-28 11:01:28',0),(0,0,'2526','H','O',1797,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 11:02:15','reception','2025-10-28 11:02:15',0),(0,0,'2526','H','O',1798,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 11:05:56','drashti','2025-10-28 11:05:56',0),(0,0,'2526','H','O',1799,1,0,'2025-10-28','00:00:00','WPRC0046',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-28 11:07:15','janvi','2025-10-28 11:07:15',0),(0,0,'2526','H','O',1800,1,0,'2025-10-28','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 11:07:22','reception','2025-10-28 11:07:22',0),(0,0,'2526','H','O',1800,2,0,'2025-10-28','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 11:07:22','reception','2025-10-28 11:07:22',0),(0,0,'2526','H','O',1801,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 11:10:54','reception','2025-10-28 11:10:54',0),(0,0,'2526','H','O',1802,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 11:12:10','reception','2025-10-28 11:12:10',0),(0,0,'2526','H','O',1803,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-28 11:16:12','manshi','2025-10-28 11:16:12',0),(0,0,'2526','H','O',1804,1,0,'2025-10-28','00:00:00','XRY0449',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-28 11:23:33','manshi','2025-10-28 11:23:33',0),(0,0,'2526','H','O',1805,1,0,'2025-10-28','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-28 11:26:56','drashti','2025-10-28 11:26:56',0),(0,0,'2526','H','O',1806,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-28 11:27:10','janvi','2025-10-28 11:27:10',0),(0,0,'2526','H','O',1807,1,0,'2025-10-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 11:27:18','reception','2025-10-28 11:27:18',0),(0,0,'2526','H','O',1807,2,0,'2025-10-28','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 11:27:18','reception','2025-10-28 11:27:18',0),(0,0,'2526','H','O',1808,1,0,'2025-10-28','00:00:00','XRY0100',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-28 11:29:23','manshi','2025-10-28 11:29:23',0),(0,0,'2526','H','O',1809,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 11:29:40','drashti','2025-10-28 11:29:40',0),(0,0,'2526','H','O',1810,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 11:30:26','reception','2025-10-28 11:30:26',0),(0,0,'2526','H','O',1811,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 11:31:55','drashti','2025-10-28 11:31:55',0),(0,0,'2526','H','O',1812,1,0,'2025-10-28','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 11:32:17','reception','2025-10-28 11:32:17',0),(0,0,'2526','H','O',1813,1,0,'2025-10-28','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-28 11:33:08','janvi','2025-10-28 11:33:08',0),(0,0,'2526','H','O',1814,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 11:36:15','reception','2025-10-28 11:36:15',0),(0,0,'2526','H','O',1815,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 11:38:26','reception','2025-10-28 11:38:26',0),(0,0,'2526','H','O',1816,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 11:40:29','reception','2025-10-28 11:40:29',0),(0,0,'2526','H','O',1817,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 11:43:55','drashti','2025-10-28 11:43:55',0),(0,0,'2526','H','O',1818,1,0,'2025-10-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 11:51:18','reception','2025-10-28 11:51:18',0),(0,0,'2526','H','O',1819,1,0,'2025-10-28','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-28 11:51:36','janvi','2025-10-28 11:51:36',0),(0,0,'2526','H','O',1820,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 11:54:03','drashti','2025-10-28 11:54:03',0),(0,0,'2526','H','O',1821,1,0,'2025-10-28','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 11:55:16','reception','2025-10-28 11:55:16',0),(0,0,'2526','H','O',1821,2,0,'2025-10-28','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 11:55:16','reception','2025-10-28 11:55:16',0),(0,0,'2526','H','O',1822,1,0,'2025-10-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 11:59:23','reception','2025-10-28 11:59:23',0),(0,0,'2526','H','O',1823,1,0,'2025-10-28','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 12:00:20','drashti','2025-10-28 12:00:20',0),(0,0,'2526','H','O',1824,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 12:05:38','drashti','2025-10-28 12:05:38',0),(0,0,'2526','H','O',1825,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-28 12:06:22','janvi','2025-10-28 12:06:22',0),(0,0,'2526','H','O',1826,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 12:14:35','reception','2025-10-28 12:14:35',0),(0,0,'2526','H','O',1827,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-28 12:18:16','drashti','2025-10-28 12:18:16',0),(0,0,'2526','H','O',1828,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-28 12:22:19','manshi','2025-10-28 12:22:19',0),(0,0,'2526','H','O',1829,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 12:26:40','drashti','2025-10-28 12:26:40',0),(0,0,'2526','H','O',1830,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 12:29:01','reception','2025-10-28 12:29:01',0),(0,0,'2526','H','O',1831,1,0,'2025-10-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 12:32:02','reception','2025-10-28 12:32:02',0),(0,0,'2526','H','O',1832,1,0,'2025-10-28','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-28 12:33:21','janvi','2025-10-28 12:33:21',0),(0,0,'2526','H','O',1833,1,0,'2025-10-28','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 12:33:37','drashti','2025-10-28 12:33:37',0),(0,0,'2526','H','O',1834,1,0,'2025-10-28','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 12:34:21','reception','2025-10-28 12:34:21',0),(0,0,'2526','H','O',1834,2,0,'2025-10-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 12:34:21','reception','2025-10-28 12:34:21',0),(0,0,'2526','H','O',1834,3,0,'2025-10-28','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 12:34:21','reception','2025-10-28 12:34:21',0),(0,0,'2526','H','O',1834,4,0,'2025-10-28','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 12:34:21','reception','2025-10-28 12:34:21',0),(0,0,'2526','H','O',1835,1,0,'2025-10-28','00:00:00','XRY0358',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-28 12:35:29','manshi','2025-10-28 12:35:29',0),(0,0,'2526','H','O',1836,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 12:36:12','reception','2025-10-28 12:36:12',0),(0,0,'2526','H','O',1837,1,0,'2025-10-28','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-28 12:40:43','janvi','2025-10-28 12:40:43',0),(0,0,'2526','H','O',1838,1,0,'2025-10-28','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 12:40:48','reception','2025-10-28 12:40:48',0),(0,0,'2526','H','O',1838,2,0,'2025-10-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 12:40:48','reception','2025-10-28 12:40:48',0),(0,0,'2526','H','O',1838,3,0,'2025-10-28','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 12:40:48','reception','2025-10-28 12:40:48',0),(0,0,'2526','H','O',1839,1,0,'2025-10-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 12:43:25','reception','2025-10-28 12:43:25',0),(0,0,'2526','H','O',1840,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-28 12:44:45','janvi','2025-10-28 12:44:45',0),(0,0,'2526','H','O',1841,1,0,'2025-10-28','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 12:47:57','drashti','2025-10-28 12:47:57',0),(0,0,'2526','H','O',1842,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 12:53:45','drashti','2025-10-28 12:53:45',0),(0,0,'2526','H','O',1843,1,0,'2025-10-28','00:00:00','WPRC0046',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-28 13:01:33','janvi','2025-10-28 13:01:33',0),(0,0,'2526','H','O',1844,1,0,'2025-10-28','00:00:00','CASE',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-28 13:01:44','drashti','2025-10-28 13:01:44',0),(0,0,'2526','H','O',1845,1,0,'2025-10-28','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-28 13:03:28','janvi','2025-10-28 13:03:28',0),(0,0,'2526','H','O',1846,1,0,'2025-10-28','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-28 13:06:06','reception','2025-10-28 13:06:06',0),(0,0,'2526','H','O',1847,1,0,'2025-10-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 13:09:10','reception','2025-10-28 13:09:10',0),(0,0,'2526','H','O',1848,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 13:12:30','reception','2025-10-28 13:12:30',0),(0,0,'2526','H','O',1849,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-28 13:18:01','janvi','2025-10-28 13:18:01',0),(0,0,'2526','H','O',1850,1,0,'2025-10-28','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 13:43:08','reception','2025-10-28 13:43:08',0),(0,0,'2526','H','O',1850,2,0,'2025-10-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 13:43:08','reception','2025-10-28 13:43:08',0),(0,0,'2526','H','O',1850,3,0,'2025-10-28','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 13:43:08','reception','2025-10-28 13:43:08',0),(0,0,'2526','H','O',1851,1,0,'2025-10-28','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 13:54:44','reception','2025-10-28 13:54:44',0),(0,0,'2526','H','O',1851,2,0,'2025-10-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 13:54:44','reception','2025-10-28 13:54:44',0),(0,0,'2526','H','O',1851,3,0,'2025-10-28','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 13:54:44','reception','2025-10-28 13:54:44',0),(0,0,'2526','H','O',1852,1,0,'2025-10-28','00:00:00','WPRC0046',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-28 14:10:31','drashti','2025-10-28 14:10:31',0),(0,0,'2526','H','O',1853,1,0,'2025-10-28','00:00:00','WPRC0046',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-28 14:12:35','drashti','2025-10-28 14:12:35',0),(0,0,'2526','H','O',1854,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-28 14:34:28','drashti','2025-10-28 14:34:28',0),(0,0,'2526','H','O',1855,1,0,'2025-10-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 16:52:02','reception','2025-10-28 16:52:02',0),(0,0,'2526','H','O',1856,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 17:08:33','reception','2025-10-28 17:08:33',0),(0,0,'2526','H','O',1857,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 17:16:01','reception','2025-10-28 17:16:01',0),(0,0,'2526','H','O',1858,1,0,'2025-10-28','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 17:23:55','reception','2025-10-28 17:23:55',0),(0,0,'2526','H','O',1858,2,0,'2025-10-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 17:23:55','reception','2025-10-28 17:23:55',0),(0,0,'2526','H','O',1858,3,0,'2025-10-28','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-28 17:23:55','reception','2025-10-28 17:23:55',0),(0,0,'2526','H','O',1859,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 17:26:21','reception','2025-10-28 17:26:21',0),(0,0,'2526','H','O',1860,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 17:35:27','drashti','2025-10-28 17:35:27',0),(0,0,'2526','H','O',1861,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 17:36:40','reception','2025-10-28 17:36:40',0),(0,0,'2526','H','O',1862,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-28 17:38:43','drashti','2025-10-28 17:38:43',0),(0,0,'2526','H','O',1863,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 17:39:08','reception','2025-10-28 17:39:08',0),(0,0,'2526','H','O',1864,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 17:40:48','reception','2025-10-28 17:40:48',0),(0,0,'2526','H','O',1865,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-28 17:51:23','janvi','2025-10-28 17:51:23',0),(0,0,'2526','H','O',1866,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 17:51:25','drashti','2025-10-28 17:51:25',0),(0,0,'2526','H','O',1867,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 17:52:29','drashti','2025-10-28 17:52:29',0),(0,0,'2526','H','O',1868,1,0,'2025-10-28','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 17:52:50','reception','2025-10-28 17:52:50',0),(0,0,'2526','H','O',1869,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-28 17:53:51','janvi','2025-10-28 17:53:51',0),(0,0,'2526','H','O',1870,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-28 17:53:57','janvi','2025-10-28 17:53:57',0),(0,0,'2526','H','O',1871,1,0,'2025-10-28','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 17:54:06','reception','2025-10-28 17:54:06',0),(0,0,'2526','H','O',1872,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 17:56:11','reception','2025-10-28 17:56:11',0),(0,0,'2526','H','O',1873,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-28 17:59:29','drashti','2025-10-28 17:59:29',0),(0,0,'2526','H','O',1874,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-28 18:03:11','manshi','2025-10-28 18:03:11',0),(0,0,'2526','H','O',1875,1,0,'2025-10-28','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 18:03:15','reception','2025-10-28 18:03:15',0),(0,0,'2526','H','O',1876,1,0,'2025-10-28','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-28 18:04:10','janvi','2025-10-28 18:04:10',0),(0,0,'2526','H','O',1877,1,0,'2025-10-28','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-28 18:04:29','janvi','2025-10-28 18:04:29',0),(0,0,'2526','H','O',1878,1,0,'2025-10-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 18:05:38','reception','2025-10-28 18:05:38',0),(0,0,'2526','H','O',1879,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 18:06:33','drashti','2025-10-28 18:06:33',0),(0,0,'2526','H','O',1880,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 18:07:07','reception','2025-10-28 18:07:07',0),(0,0,'2526','H','O',1881,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-28 18:11:00','manshi','2025-10-28 18:11:00',0),(0,0,'2526','H','O',1882,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 18:14:46','drashti','2025-10-28 18:14:46',0),(0,0,'2526','H','O',1883,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 18:16:21','drashti','2025-10-28 18:16:21',0),(0,0,'2526','H','O',1884,1,0,'2025-10-28','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-28 18:16:57','janvi','2025-10-28 18:16:57',0),(0,0,'2526','H','O',1885,1,0,'2025-10-28','00:00:00','XRY0254',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-28 18:21:51','manshi','2025-10-28 18:21:51',0),(0,0,'2526','H','O',1886,1,0,'2025-10-28','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-28 18:25:11','janvi','2025-10-28 18:25:11',0),(0,0,'2526','H','O',1886,2,0,'2025-10-28','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-28 18:25:11','janvi','2025-10-28 18:25:11',0),(0,0,'2526','H','O',1887,1,0,'2025-10-28','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-28 18:25:48','manshi','2025-10-28 18:25:48',0),(0,0,'2526','H','O',1888,1,0,'2025-10-28','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-28 18:26:03','reception','2025-10-28 18:26:03',0),(0,0,'2526','H','O',1889,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-28 18:29:03','drashti','2025-10-28 18:29:03',0),(0,0,'2526','H','O',1890,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-28 18:31:42','manshi','2025-10-28 18:31:42',0),(0,0,'2526','H','O',1891,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 18:34:24','drashti','2025-10-28 18:34:24',0),(0,0,'2526','H','O',1892,1,0,'2025-10-28','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-28 18:36:50','manshi','2025-10-28 18:36:50',0),(0,0,'2526','H','O',1893,1,0,'2025-10-28','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-28 18:43:22','drashti','2025-10-28 18:43:22',0),(0,0,'2526','H','O',1894,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-28 18:45:15','janvi','2025-10-28 19:59:07',0),(0,0,'2526','H','O',1895,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-28 18:45:21','janvi','2025-10-28 18:45:21',0),(0,0,'2526','H','O',1896,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-28 18:52:05','janvi','2025-10-28 18:52:05',0),(0,0,'2526','H','O',1897,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 18:59:35','drashti','2025-10-28 18:59:35',0),(0,0,'2526','H','O',1898,1,0,'2025-10-28','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 19:01:12','drashti','2025-10-28 19:01:12',0),(0,0,'2526','H','O',1899,1,0,'2025-10-28','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-28 19:01:40','janvi','2025-10-28 19:01:40',0),(0,0,'2526','H','O',1899,2,0,'2025-10-28','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-28 19:01:40','janvi','2025-10-28 19:01:40',0),(0,0,'2526','H','O',1899,3,0,'2025-10-28','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-28 19:01:40','janvi','2025-10-28 19:01:40',0),(0,0,'2526','H','O',1899,4,0,'2025-10-28','00:00:00','OPWD0015',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-28 19:01:40','janvi','2025-10-28 19:01:40',0),(0,0,'2526','H','O',1900,1,0,'2025-10-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-28 19:12:43','drashti','2025-10-28 19:12:43',0),(0,0,'2526','H','O',1901,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-10-28 19:12:49','janvi','2025-10-28 19:12:49',0),(0,0,'2526','H','O',1902,1,0,'2025-10-28','00:00:00','XRY0449',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-28 19:14:48','manshi','2025-10-28 19:14:48',0),(0,0,'2526','H','O',1903,1,0,'2025-10-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-28 19:17:31','drashti','2025-10-28 19:17:31',0),(0,0,'2526','H','O',1904,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 19:36:58','drashti','2025-10-28 19:36:58',0),(0,0,'2526','H','O',1905,1,0,'2025-10-28','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-28 19:38:52','janvi','2025-10-28 19:38:52',0),(0,0,'2526','H','O',1905,2,0,'2025-10-28','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-28 19:38:52','janvi','2025-10-28 19:38:52',0),(0,0,'2526','H','O',1906,1,0,'2025-10-28','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-28 19:45:14','janvi','2025-10-28 19:45:14',0),(0,0,'2526','H','O',1907,1,0,'2025-10-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-28 19:46:48','drashti','2025-10-28 19:46:48',0),(0,0,'2526','H','O',1908,1,0,'2025-10-28','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-28 19:59:07','janvi','2025-10-28 19:59:07',0),(0,0,'2526','H','O',1909,1,0,'2025-10-28','00:00:00','WPRC0046',0,1.00,7000,7000,'P',0,0,7000.00,0.00,0.00,7000.00,'',0,7,0,'',0,'','','','Y','N','drashti','2025-10-28 20:18:39','drashti','2025-10-28 20:18:39',0),(0,0,'2526','H','O',1910,1,0,'2025-10-29','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-29 08:52:35','urvashi','2025-10-29 08:52:35',0),(0,0,'2526','H','O',1911,1,0,'2025-10-29','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-29 08:54:08','urvashi','2025-10-29 08:54:08',0),(0,0,'2526','H','O',1911,2,0,'2025-10-29','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-29 08:54:08','urvashi','2025-10-29 08:54:08',0),(0,0,'2526','H','O',1912,1,0,'2025-10-29','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-29 08:56:48','urvashi','2025-10-29 08:56:48',0),(0,0,'2526','H','O',1912,2,0,'2025-10-29','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-29 08:56:48','urvashi','2025-10-29 08:56:48',0),(0,0,'2526','H','O',1912,3,0,'2025-10-29','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-10-29 08:56:48','urvashi','2025-10-29 08:56:48',0),(0,0,'2526','H','O',1913,1,0,'2025-10-29','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-29 08:59:20','urvashi','2025-10-29 08:59:20',0),(0,0,'2526','H','O',1913,2,0,'2025-10-29','00:00:00','OPWD0015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-29 08:59:20','urvashi','2025-10-29 08:59:20',0),(0,0,'2526','H','O',1913,3,0,'2025-10-29','00:00:00','OPWD0013',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-29 08:59:20','urvashi','2025-10-29 08:59:20',0),(0,0,'2526','H','O',1913,4,0,'2025-10-29','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-29 08:59:20','urvashi','2025-10-29 08:59:20',0),(0,0,'2526','H','O',1913,5,0,'2025-10-29','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-29 08:59:20','urvashi','2025-10-29 08:59:20',0),(0,0,'2526','H','O',1914,1,0,'2025-10-29','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-29 09:02:18','urvashi','2025-10-29 09:02:18',0),(0,0,'2526','H','O',1914,2,0,'2025-10-29','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-29 09:02:18','urvashi','2025-10-29 09:02:18',0),(0,0,'2526','H','O',1914,3,0,'2025-10-29','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-29 09:02:18','urvashi','2025-10-29 09:02:18',0),(0,0,'2526','H','O',1914,4,0,'2025-10-29','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-29 09:02:18','urvashi','2025-10-29 09:02:18',0),(0,0,'2526','H','O',1914,5,0,'2025-10-29','00:00:00','OTCG0033',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-29 09:02:18','urvashi','2025-10-29 09:02:18',0),(0,0,'2526','H','O',1915,1,0,'2025-10-29','00:00:00','WPRC0049',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-29 09:03:20','urvashi','2025-10-29 09:03:20',0),(0,0,'2526','H','O',1916,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 10:05:44','reception','2025-10-29 10:05:44',0),(0,0,'2526','H','O',1917,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 10:09:02','reception','2025-10-29 10:09:02',0),(0,0,'2526','H','O',1918,1,0,'2025-10-29','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 10:13:38','reception','2025-10-29 10:13:38',0),(0,0,'2526','H','O',1919,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 10:20:58','reception','2025-10-29 10:20:58',0),(0,0,'2526','H','O',1920,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 10:22:35','reception','2025-10-29 10:22:35',0),(0,0,'2526','H','O',1921,1,0,'2025-10-29','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-29 10:23:42','drashti','2025-10-29 10:23:42',0),(0,0,'2526','H','O',1922,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-29 10:25:33','janvi','2025-10-29 10:25:33',0),(0,0,'2526','H','O',1923,1,0,'2025-10-29','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 10:48:53','reception','2025-10-29 10:48:53',0),(0,0,'2526','H','O',1923,2,0,'2025-10-29','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 10:48:53','reception','2025-10-29 10:48:53',0),(0,0,'2526','H','O',1923,3,0,'2025-10-29','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 10:48:53','reception','2025-10-29 10:48:53',0),(0,0,'2526','H','O',1923,4,0,'2025-10-29','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 10:48:53','reception','2025-10-29 10:48:53',0),(0,0,'2526','H','O',1924,1,0,'2025-10-29','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-29 10:51:00','manshi','2025-10-29 10:51:00',0),(0,0,'2526','H','O',1925,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 10:52:37','reception','2025-10-29 10:52:37',0),(0,0,'2526','H','O',1926,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 10:53:25','reception','2025-10-29 10:53:25',0),(0,0,'2526','H','O',1927,1,0,'2025-10-29','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-29 10:54:18','drashti','2025-10-29 10:54:18',0),(0,0,'2526','H','O',1928,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 10:55:55','reception','2025-10-29 10:55:55',0),(0,0,'2526','H','O',1929,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-29 10:56:19','drashti','2025-10-29 10:56:19',0),(0,0,'2526','H','O',1930,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 10:59:08','reception','2025-10-29 10:59:08',0),(0,0,'2526','H','O',1931,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-29 11:00:14','drashti','2025-10-29 11:00:14',0),(0,0,'2526','H','O',1932,1,0,'2025-10-29','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-29 11:01:48','manshi','2025-10-29 11:01:48',0),(0,0,'2526','H','O',1932,2,0,'2025-10-29','00:00:00','XRY0254',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-29 11:01:48','manshi','2025-10-29 11:01:48',0),(0,0,'2526','H','O',1932,3,0,'2025-10-29','00:00:00','XRY0292',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-29 11:01:48','manshi','2025-10-29 11:01:48',0),(0,0,'2526','H','O',1933,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-29 11:03:06','drashti','2025-10-29 11:03:06',0),(0,0,'2526','H','O',1934,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-29 11:04:05','janvi','2025-10-29 11:04:05',0),(0,0,'2526','H','O',1935,1,0,'2025-10-29','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-29 11:04:39','manshi','2025-10-29 11:04:39',0),(0,0,'2526','H','O',1936,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 11:05:25','reception','2025-10-29 11:26:36',0),(0,0,'2526','H','O',1937,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-29 11:06:13','janvi','2025-10-29 11:06:13',0),(0,0,'2526','H','O',1938,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-29 11:08:12','janvi','2025-10-29 11:08:12',0),(0,0,'2526','H','O',1939,1,0,'2025-10-29','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-29 11:15:52','drashti','2025-10-29 11:15:52',0),(0,0,'2526','H','O',1940,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 11:17:56','reception','2025-10-29 11:17:56',0),(0,0,'2526','H','O',1941,1,0,'2025-10-29','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-29 11:18:15','manshi','2025-10-29 11:18:15',0),(0,0,'2526','H','O',1942,1,0,'2025-10-29','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-29 11:25:15','drashti','2025-10-29 11:25:15',0),(0,0,'2526','H','O',1943,1,0,'2025-10-29','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 11:25:37','reception','2025-10-29 11:25:37',0),(0,0,'2526','H','O',1944,1,0,'2025-10-29','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 11:26:36','reception','2025-10-29 11:26:36',0),(0,0,'2526','H','O',1945,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-29 11:27:39','drashti','2025-10-29 11:27:39',0),(0,0,'2526','H','O',1946,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 11:28:07','reception','2025-10-29 11:28:07',0),(0,0,'2526','H','O',1947,1,0,'2025-10-29','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-29 11:28:57','drashti','2025-10-29 11:28:57',0),(0,0,'2526','H','O',1948,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-29 11:32:37','janvi','2025-10-29 11:32:37',0),(0,0,'2526','H','O',1949,1,0,'2025-10-29','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-29 11:32:47','drashti','2025-10-29 11:32:47',0),(0,0,'2526','H','O',1949,2,0,'2025-10-29','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-29 11:32:47','drashti','2025-10-29 11:32:47',0),(0,0,'2526','H','O',1950,1,0,'2025-10-29','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-29 11:43:53','drashti','2025-10-29 11:43:53',0),(0,0,'2526','H','O',1951,1,0,'2025-10-29','00:00:00','XRY0189',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-29 11:45:14','manshi','2025-10-29 11:45:14',0),(0,0,'2526','H','O',1952,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-29 11:45:31','janvi','2025-10-29 11:45:31',0),(0,0,'2526','H','O',1953,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-29 11:45:47','janvi','2025-10-29 11:45:47',0),(0,0,'2526','H','O',1954,1,0,'2025-10-29','00:00:00','XRY0294',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-29 11:46:01','manshi','2025-10-29 11:46:01',0),(0,0,'2526','H','O',1955,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-29 11:47:22','drashti','2025-10-29 11:47:22',0),(0,0,'2526','H','O',1956,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-29 11:48:11','reception','2025-10-29 11:48:11',0),(0,0,'2526','H','O',1957,1,0,'2025-10-29','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-29 11:48:17','drashti','2025-10-29 11:48:17',0),(0,0,'2526','H','O',1958,1,0,'2025-10-29','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-29 11:57:10','janvi','2025-10-29 12:13:02',0),(0,0,'2526','H','O',1959,1,0,'2025-10-29','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-29 11:58:37','janvi','2025-10-29 11:58:37',0),(0,0,'2526','H','O',1960,1,0,'2025-10-29','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-29 11:59:43','drashti','2025-10-29 11:59:43',0),(0,0,'2526','H','O',1961,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 12:00:02','reception','2025-10-29 12:00:02',0),(0,0,'2526','H','O',1962,1,0,'2025-10-29','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-29 12:01:54','drashti','2025-10-29 12:01:54',0),(0,0,'2526','H','O',1963,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-29 12:05:33','drashti','2025-10-29 12:05:33',0),(0,0,'2526','H','O',1964,1,0,'2025-10-29','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-29 12:06:47','janvi','2025-10-29 12:06:47',0),(0,0,'2526','H','O',1965,1,0,'2025-10-29','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-29 12:13:02','janvi','2025-10-29 12:13:02',0),(0,0,'2526','H','O',1966,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 12:18:29','reception','2025-10-29 12:18:29',0),(0,0,'2526','H','O',1967,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-29 12:22:13','manshi','2025-10-29 12:22:13',0),(0,0,'2526','H','O',1968,1,0,'2025-10-29','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-29 12:22:38','manshi','2025-10-29 12:22:38',0),(0,0,'2526','H','O',1969,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-29 12:23:50','janvi','2025-10-29 12:23:50',0),(0,0,'2526','H','O',1970,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-29 12:33:18','drashti','2025-10-29 12:33:18',0),(0,0,'2526','H','O',1971,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-29 12:36:37','drashti','2025-10-29 12:36:37',0),(0,0,'2526','H','O',1972,1,0,'2025-10-29','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 12:38:53','reception','2025-10-29 12:38:53',0),(0,0,'2526','H','O',1972,2,0,'2025-10-29','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 12:38:53','reception','2025-10-29 12:38:53',0),(0,0,'2526','H','O',1972,3,0,'2025-10-29','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 12:38:53','reception','2025-10-29 12:38:53',0),(0,0,'2526','H','O',1973,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-29 12:40:16','manshi','2025-10-29 12:40:16',0),(0,0,'2526','H','O',1974,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 12:41:55','reception','2025-10-29 12:41:55',0),(0,0,'2526','H','O',1975,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 12:43:26','reception','2025-10-29 12:43:26',0),(0,0,'2526','H','O',1976,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 13:07:58','reception','2025-10-29 13:07:58',0),(0,0,'2526','H','O',1977,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-29 13:18:47','janvi','2025-10-29 13:18:47',0),(0,0,'2526','H','O',1978,1,0,'2025-10-29','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-29 13:22:41','drashti','2025-10-29 13:22:41',0),(0,0,'2526','H','O',1979,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 13:58:01','reception','2025-10-29 13:58:01',0),(0,0,'2526','H','O',1980,1,0,'2025-10-29','00:00:00','SURG0005',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 15:38:48','reception','2025-10-29 15:38:48',0),(0,0,'2526','H','O',1980,2,0,'2025-10-29','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 15:38:48','reception','2025-10-29 15:38:48',0),(0,0,'2526','H','O',1981,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 16:35:17','reception','2025-10-29 16:35:17',0),(0,0,'2526','H','O',1982,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 16:38:58','reception','2025-10-29 16:38:58',0),(0,0,'2526','H','O',1983,1,0,'2025-10-29','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 17:10:08','reception','2025-10-29 17:10:08',0),(0,0,'2526','H','O',1984,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 17:21:14','reception','2025-10-29 17:21:14',0),(0,0,'2526','H','O',1985,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 17:27:30','reception','2025-10-29 17:27:30',0),(0,0,'2526','H','O',1986,1,0,'2025-10-29','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 17:30:58','reception','2025-10-29 17:30:58',0),(0,0,'2526','H','O',1987,1,0,'2025-10-29','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 17:33:10','reception','2025-10-29 17:33:10',0),(0,0,'2526','H','O',1988,1,0,'2025-10-29','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 17:36:14','reception','2025-10-29 17:36:14',0),(0,0,'2526','H','O',1989,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-10-29 17:43:06','priyanshi','2025-10-29 17:43:06',0),(0,0,'2526','H','O',1990,1,0,'2025-10-29','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 17:44:15','reception','2025-10-29 17:44:15',0),(0,0,'2526','H','O',1991,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 17:45:25','reception','2025-10-29 17:45:25',0),(0,0,'2526','H','O',1992,1,0,'2025-10-29','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 17:52:32','reception','2025-10-29 17:52:32',0),(0,0,'2526','H','O',1993,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-29 17:57:34','janvi','2025-10-29 17:57:34',0),(0,0,'2526','H','O',1994,1,0,'2025-10-29','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 17:57:43','reception','2025-10-29 17:57:43',0),(0,0,'2526','H','O',1994,2,0,'2025-10-29','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 17:57:43','reception','2025-10-29 17:57:43',0),(0,0,'2526','H','O',1994,3,0,'2025-10-29','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 17:57:43','reception','2025-10-29 17:57:43',0),(0,0,'2526','H','O',1995,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 18:00:28','reception','2025-10-29 18:00:28',0),(0,0,'2526','H','O',1996,1,0,'2025-10-29','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-29 18:04:38','janvi','2025-10-29 18:04:38',0),(0,0,'2526','H','O',1997,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 18:05:22','reception','2025-10-29 18:05:22',0),(0,0,'2526','H','O',1998,1,0,'2025-10-29','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 18:08:50','reception','2025-10-29 18:08:50',0),(0,0,'2526','H','O',1999,1,0,'2025-10-29','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-29 18:15:40','janvi','2025-10-29 18:20:37',0),(0,0,'2526','H','O',2000,1,0,'2025-10-29','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-29 18:17:06','janvi','2025-10-29 18:17:06',0),(0,0,'2526','H','O',2001,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-29 18:17:26','manshi','2025-10-29 19:08:52',0),(0,0,'2526','H','O',2002,1,0,'2025-10-29','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 18:19:23','reception','2025-10-29 18:19:23',0),(0,0,'2526','H','O',2002,2,0,'2025-10-29','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 18:19:23','reception','2025-10-29 18:19:23',0),(0,0,'2526','H','O',2002,3,0,'2025-10-29','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 18:19:23','reception','2025-10-29 18:19:23',0),(0,0,'2526','H','O',2003,1,0,'2025-10-29','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-29 18:19:49','manshi','2025-10-29 18:19:49',0),(0,0,'2526','H','O',2004,1,0,'2025-10-29','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-29 18:20:06','janvi','2025-10-29 18:20:06',0),(0,0,'2526','H','O',2005,1,0,'2025-10-29','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-29 18:20:37','janvi','2025-10-29 18:20:37',0),(0,0,'2526','H','O',2006,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-10-29 18:22:00','shweta','2025-10-29 18:22:00',0),(0,0,'2526','H','O',2007,1,0,'2025-10-29','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-29 18:24:19','janvi','2025-10-29 18:24:19',0),(0,0,'2526','H','O',2008,1,0,'2025-10-29','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 18:27:21','reception','2025-10-29 18:27:21',0),(0,0,'2526','H','O',2008,2,0,'2025-10-29','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 18:27:21','reception','2025-10-29 18:27:21',0),(0,0,'2526','H','O',2008,3,0,'2025-10-29','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 18:27:21','reception','2025-10-29 18:27:21',0),(0,0,'2526','H','O',2009,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-29 18:30:35','janvi','2025-10-29 18:30:35',0),(0,0,'2526','H','O',2010,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-29 18:33:51','janvi','2025-10-29 18:33:51',0),(0,0,'2526','H','O',2011,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-29 18:33:58','shweta','2025-10-29 18:33:58',0),(0,0,'2526','H','O',2012,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-29 18:34:06','drashti','2025-10-29 19:12:04',0),(0,0,'2526','H','O',2013,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-29 18:36:27','janvi','2025-10-29 18:36:27',0),(0,0,'2526','H','O',2014,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-29 18:36:53','shweta','2025-10-29 18:36:53',0),(0,0,'2526','H','O',2015,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-29 18:37:35','shweta','2025-10-29 18:37:35',0),(0,0,'2526','H','O',2016,1,0,'2025-10-29','00:00:00','XRY0254',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-29 18:39:03','manshi','2025-10-29 18:39:03',0),(0,0,'2526','H','O',2017,1,0,'2025-10-29','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-10-29 18:41:44','shweta','2025-10-29 18:41:44',0),(0,0,'2526','H','O',2018,1,0,'2025-10-29','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-29 18:42:12','reception','2025-10-29 18:42:12',0),(0,0,'2526','H','O',2019,1,0,'2025-10-29','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 18:43:13','reception','2025-10-29 18:43:13',0),(0,0,'2526','H','O',2019,2,0,'2025-10-29','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 18:43:13','reception','2025-10-29 18:43:13',0),(0,0,'2526','H','O',2019,3,0,'2025-10-29','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 18:43:13','reception','2025-10-29 18:43:13',0),(0,0,'2526','H','O',2020,1,0,'2025-10-29','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-29 18:49:35','janvi','2025-10-29 18:49:35',0),(0,0,'2526','H','O',2021,1,0,'2025-10-29','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 18:52:16','reception','2025-10-29 18:52:16',0),(0,0,'2526','H','O',2021,2,0,'2025-10-29','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 18:52:16','reception','2025-10-29 18:52:16',0),(0,0,'2526','H','O',2021,3,0,'2025-10-29','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-29 18:52:16','reception','2025-10-29 18:52:16',0),(0,0,'2526','H','O',2022,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 19:03:52','reception','2025-10-29 19:03:52',0),(0,0,'2526','H','O',2023,1,0,'2025-10-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-29 19:07:25','drashti','2025-10-29 19:07:25',0),(0,0,'2526','H','O',2024,1,0,'2025-10-29','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-29 19:08:52','manshi','2025-10-29 19:08:52',0),(0,0,'2526','H','O',2025,1,0,'2025-10-29','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-29 19:12:04','drashti','2025-10-29 19:12:04',0),(0,0,'2526','H','O',2026,1,0,'2025-10-29','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-29 19:13:19','manshi','2025-10-29 19:13:19',0),(0,0,'2526','H','O',2027,1,0,'2025-10-29','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-10-29 19:15:42','reception','2025-10-29 19:15:42',0),(0,0,'2526','H','O',2028,1,0,'2025-10-29','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-29 19:37:17','janvi','2025-10-29 19:37:17',0),(0,0,'2526','H','O',2029,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 19:38:09','reception','2025-10-29 19:38:09',0),(0,0,'2526','H','O',2030,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-29 19:41:27','janvi','2025-10-29 19:41:27',0),(0,0,'2526','H','O',2031,1,0,'2025-10-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-29 19:55:33','reception','2025-10-29 19:55:33',0),(0,0,'2526','H','O',2032,1,0,'2025-10-29','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-29 20:12:27','janvi','2025-10-29 20:12:27',0),(0,0,'2526','H','O',2033,1,0,'2025-10-30','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-30 09:04:14','urvashi','2025-10-30 09:04:14',0),(0,0,'2526','H','O',2033,2,0,'2025-10-30','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-30 09:04:14','urvashi','2025-10-30 09:04:14',0),(0,0,'2526','H','O',2034,1,0,'2025-10-30','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-30 09:07:08','urvashi','2025-10-30 09:07:08',0),(0,0,'2526','H','O',2034,2,0,'2025-10-30','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-10-30 09:07:08','urvashi','2025-10-30 09:07:08',0),(0,0,'2526','H','O',2034,3,0,'2025-10-30','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-10-30 09:07:08','urvashi','2025-10-30 09:07:08',0),(0,0,'2526','H','O',2035,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 09:31:56','reception','2025-10-30 09:31:56',0),(0,0,'2526','H','O',2036,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 09:34:28','reception','2025-10-30 09:34:28',0),(0,0,'2526','H','O',2037,1,0,'2025-10-30','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 10:18:46','reception','2025-10-30 10:18:46',0),(0,0,'2526','H','O',2038,1,0,'2025-10-30','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 10:28:31','drashti','2025-10-30 10:28:31',0),(0,0,'2526','H','O',2039,1,0,'2025-10-30','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 10:30:56','reception','2025-10-30 10:30:56',0),(0,0,'2526','H','O',2040,1,0,'2025-10-30','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 10:40:31','reception','2025-10-30 10:40:31',0),(0,0,'2526','H','O',2041,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 10:41:41','reception','2025-10-30 10:41:41',0),(0,0,'2526','H','O',2042,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 10:43:44','reception','2025-10-30 10:43:44',0),(0,0,'2526','H','O',2043,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 10:45:34','reception','2025-10-30 10:45:34',0),(0,0,'2526','H','O',2044,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 10:47:36','reception','2025-10-30 11:45:51',0),(0,0,'2526','H','O',2045,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 10:57:29','reception','2025-10-30 10:57:29',0),(0,0,'2526','H','O',2046,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 11:02:48','reception','2025-10-30 11:02:48',0),(0,0,'2526','H','O',2047,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-30 11:04:39','drashti','2025-10-30 11:04:39',0),(0,0,'2526','H','O',2048,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 11:04:49','reception','2025-10-30 11:04:49',0),(0,0,'2526','H','O',2049,1,0,'2025-10-30','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-30 11:06:35','janvi','2025-10-30 11:06:35',0),(0,0,'2526','H','O',2050,1,0,'2025-10-30','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 11:06:48','reception','2025-10-30 11:06:48',0),(0,0,'2526','H','O',2051,1,0,'2025-10-30','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-30 11:07:38','janvi','2025-10-30 11:07:38',0),(0,0,'2526','H','O',2052,1,0,'2025-10-30','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 11:10:19','drashti','2025-10-30 11:10:19',0),(0,0,'2526','H','O',2053,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 11:12:51','drashti','2025-10-30 11:12:51',0),(0,0,'2526','H','O',2054,1,0,'2025-10-30','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 11:14:35','reception','2025-10-30 11:14:35',0),(0,0,'2526','H','O',2054,2,0,'2025-10-30','00:00:00','NEU10019',0,1.00,1800,1800,'P',0,0,1800.00,0.00,0.00,1800.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 11:14:35','reception','2025-10-30 11:14:35',0),(0,0,'2526','H','O',2054,3,0,'2025-10-30','00:00:00','NEU10017',0,1.00,1800,1800,'P',0,0,1800.00,0.00,0.00,1800.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 11:14:35','reception','2025-10-30 11:14:35',0),(0,0,'2526','H','O',2054,4,0,'2025-10-30','00:00:00','NEU10024',0,1.00,1900,1900,'P',0,0,1900.00,0.00,0.00,1900.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 11:14:35','reception','2025-10-30 11:14:35',0),(0,0,'2526','H','O',2055,1,0,'2025-10-30','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-30 11:18:35','janvi','2025-10-30 11:18:35',0),(0,0,'2526','H','O',2056,1,0,'2025-10-30','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 11:22:32','drashti','2025-10-30 11:22:32',0),(0,0,'2526','H','O',2057,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 11:29:00','reception','2025-10-30 11:29:00',0),(0,0,'2526','H','O',2058,1,0,'2025-10-30','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 11:34:31','drashti','2025-10-30 11:34:31',0),(0,0,'2526','H','O',2059,1,0,'2025-10-30','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-30 11:35:56','janvi','2025-10-30 11:35:56',0),(0,0,'2526','H','O',2060,1,0,'2025-10-30','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 11:36:24','reception','2025-10-30 11:36:24',0),(0,0,'2526','H','O',2061,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-30 11:37:30','janvi','2025-10-30 11:37:30',0),(0,0,'2526','H','O',2062,1,0,'2025-10-30','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 11:40:22','reception','2025-10-30 11:40:22',0),(0,0,'2526','H','O',2062,2,0,'2025-10-30','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 11:40:22','reception','2025-10-30 11:40:22',0),(0,0,'2526','H','O',2062,3,0,'2025-10-30','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 11:40:22','reception','2025-10-30 11:40:22',0),(0,0,'2526','H','O',2063,1,0,'2025-10-30','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 11:43:14','reception','2025-10-30 11:43:14',0),(0,0,'2526','H','O',2064,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 11:44:21','drashti','2025-10-30 11:44:21',0),(0,0,'2526','H','O',2065,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 11:45:46','drashti','2025-10-30 11:45:46',0),(0,0,'2526','H','O',2066,1,0,'2025-10-30','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 11:45:51','reception','2025-10-30 11:45:51',0),(0,0,'2526','H','O',2067,1,0,'2025-10-30','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-30 11:46:59','drashti','2025-10-30 11:46:59',0),(0,0,'2526','H','O',2068,1,0,'2025-10-30','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-30 11:47:11','janvi','2025-10-30 11:47:11',0),(0,0,'2526','H','O',2069,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 11:48:20','reception','2025-10-30 11:48:20',0),(0,0,'2526','H','O',2070,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 11:48:52','drashti','2025-10-30 11:48:52',0),(0,0,'2526','H','O',2071,1,0,'2025-10-30','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 11:50:53','reception','2025-10-30 11:50:53',0),(0,0,'2526','H','O',2072,1,0,'2025-10-30','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 11:52:32','reception','2025-10-30 11:52:32',0),(0,0,'2526','H','O',2073,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 11:52:59','drashti','2025-10-30 11:52:59',0),(0,0,'2526','H','O',2074,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 11:55:01','drashti','2025-10-30 11:55:01',0),(0,0,'2526','H','O',2075,1,0,'2025-10-30','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 11:56:07','reception','2025-10-30 11:56:07',0),(0,0,'2526','H','O',2075,2,0,'2025-10-30','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 11:56:07','reception','2025-10-30 11:56:07',0),(0,0,'2526','H','O',2075,3,0,'2025-10-30','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 11:56:07','reception','2025-10-30 11:56:07',0),(0,0,'2526','H','O',2076,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-30 11:59:33','drashti','2025-10-30 11:59:33',0),(0,0,'2526','H','O',2077,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-30 12:06:43','janvi','2025-10-30 12:06:43',0),(0,0,'2526','H','O',2078,1,0,'2025-10-30','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-30 12:07:44','drashti','2025-10-30 12:07:44',0),(0,0,'2526','H','O',2079,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-30 12:11:21','manshi','2025-10-30 12:11:21',0),(0,0,'2526','H','O',2080,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 12:11:23','drashti','2025-10-30 12:11:23',0),(0,0,'2526','H','O',2081,1,0,'2025-10-30','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-30 12:15:38','drashti','2025-10-30 12:15:38',0),(0,0,'2526','H','O',2082,1,0,'2025-10-30','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-30 12:16:09','drashti','2025-10-30 12:16:09',0),(0,0,'2526','H','O',2083,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 12:17:56','reception','2025-10-30 12:17:56',0),(0,0,'2526','H','O',2084,1,0,'2025-10-30','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 12:23:19','reception','2025-10-30 12:23:19',0),(0,0,'2526','H','O',2084,2,0,'2025-10-30','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 12:23:19','reception','2025-10-30 12:23:19',0),(0,0,'2526','H','O',2084,3,0,'2025-10-30','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 12:23:19','reception','2025-10-30 12:23:19',0),(0,0,'2526','H','O',2085,1,0,'2025-10-30','00:00:00','WPRC0046',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-30 12:24:19','janvi','2025-10-30 12:24:19',0),(0,0,'2526','H','O',2086,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 12:26:31','reception','2025-10-30 12:26:31',0),(0,0,'2526','H','O',2087,1,0,'2025-10-30','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-30 12:34:19','janvi','2025-10-30 12:34:19',0),(0,0,'2526','H','O',2088,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 12:44:13','reception','2025-10-30 12:44:13',0),(0,0,'2526','H','O',2089,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-30 12:48:19','janvi','2025-10-30 12:48:19',0),(0,0,'2526','H','O',2090,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 13:05:48','drashti','2025-10-30 13:05:48',0),(0,0,'2526','H','O',2091,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-30 13:06:04','janvi','2025-10-30 13:06:04',0),(0,0,'2526','H','O',2092,1,0,'2025-10-30','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-30 13:42:30','janvi','2025-10-30 13:42:30',0),(0,0,'2526','H','O',2093,1,0,'2025-10-30','00:00:00','WPRC0046',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-30 14:01:21','janvi','2025-10-30 14:01:21',0),(0,0,'2526','H','O',2094,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 16:05:41','reception','2025-10-30 16:05:41',0),(0,0,'2526','H','O',2095,1,0,'2025-10-30','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 16:47:47','reception','2025-10-30 16:47:47',0),(0,0,'2526','H','O',2096,1,0,'2025-10-30','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-10-30 16:50:32','priyanshi','2025-10-30 16:50:32',0),(0,0,'2526','H','O',2097,1,0,'2025-10-30','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 16:52:57','reception','2025-10-30 16:52:57',0),(0,0,'2526','H','O',2098,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 17:00:33','reception','2025-10-30 17:00:33',0),(0,0,'2526','H','O',2099,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 17:03:02','reception','2025-10-30 17:03:02',0),(0,0,'2526','H','O',2100,1,0,'2025-10-30','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 17:06:33','reception','2025-10-30 17:06:33',0),(0,0,'2526','H','O',2101,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 17:08:13','reception','2025-10-30 17:08:13',0),(0,0,'2526','H','O',2102,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 17:09:58','reception','2025-10-30 17:09:58',0),(0,0,'2526','H','O',2103,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 17:12:57','reception','2025-10-30 17:12:57',0),(0,0,'2526','H','O',2104,1,0,'2025-10-30','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 17:15:16','reception','2025-10-30 17:15:16',0),(0,0,'2526','H','O',2104,2,0,'2025-10-30','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 17:15:16','reception','2025-10-30 17:15:16',0),(0,0,'2526','H','O',2105,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 17:17:20','reception','2025-10-30 17:17:20',0),(0,0,'2526','H','O',2106,1,0,'2025-10-30','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 17:21:01','reception','2025-10-30 17:21:01',0),(0,0,'2526','H','O',2107,1,0,'2025-10-30','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 17:31:47','reception','2025-10-30 17:31:47',0),(0,0,'2526','H','O',2107,2,0,'2025-10-30','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 17:31:47','reception','2025-10-30 17:31:47',0),(0,0,'2526','H','O',2107,3,0,'2025-10-30','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 17:31:47','reception','2025-10-30 17:31:47',0),(0,0,'2526','H','O',2107,4,0,'2025-10-30','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 17:31:47','reception','2025-10-30 17:31:47',0),(0,0,'2526','H','O',2108,1,0,'2025-10-30','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 17:34:49','reception','2025-10-30 17:34:49',0),(0,0,'2526','H','O',2109,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 17:37:12','reception','2025-10-30 17:37:12',0),(0,0,'2526','H','O',2110,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 17:40:54','reception','2025-10-30 17:40:54',0),(0,0,'2526','H','O',2111,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-30 17:43:33','drashti','2025-10-30 17:43:33',0),(0,0,'2526','H','O',2112,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 17:45:35','drashti','2025-10-30 17:45:35',0),(0,0,'2526','H','O',2113,1,0,'2025-10-30','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 17:49:52','reception','2025-10-30 17:49:52',0),(0,0,'2526','H','O',2114,1,0,'2025-10-30','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 17:55:32','reception','2025-10-30 17:55:32',0),(0,0,'2526','H','O',2114,2,0,'2025-10-30','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 17:55:32','reception','2025-10-30 17:55:32',0),(0,0,'2526','H','O',2115,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-30 17:58:48','janvi','2025-10-30 17:58:48',0),(0,0,'2526','H','O',2116,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 18:02:55','reception','2025-10-30 18:02:55',0),(0,0,'2526','H','O',2117,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 18:04:25','reception','2025-10-30 18:04:25',0),(0,0,'2526','H','O',2118,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 18:15:08','drashti','2025-10-30 18:15:08',0),(0,0,'2526','H','O',2119,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 18:15:58','reception','2025-10-30 18:15:58',0),(0,0,'2526','H','O',2120,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 18:17:25','drashti','2025-10-30 18:17:25',0),(0,0,'2526','H','O',2121,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-30 18:18:17','janvi','2025-10-30 18:18:17',0),(0,0,'2526','H','O',2122,1,0,'2025-10-30','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 18:19:58','reception','2025-10-30 18:19:58',0),(0,0,'2526','H','O',2123,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 18:20:20','drashti','2025-10-30 18:20:20',0),(0,0,'2526','H','O',2124,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-30 18:30:35','drashti','2025-10-30 18:30:35',0),(0,0,'2526','H','O',2125,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-30 18:34:37','janvi','2025-10-30 18:34:37',0),(0,0,'2526','H','O',2126,1,0,'2025-10-30','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-30 18:37:49','drashti','2025-10-30 18:37:49',0),(0,0,'2526','H','O',2127,1,0,'2025-10-30','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 18:41:18','drashti','2025-10-30 18:41:18',0),(0,0,'2526','H','O',2128,1,0,'2025-10-30','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-30 18:43:30','manshi','2025-10-30 18:43:30',0),(0,0,'2526','H','O',2129,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 18:44:03','drashti','2025-10-30 18:44:03',0),(0,0,'2526','H','O',2130,1,0,'2025-10-30','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-30 18:46:42','drashti','2025-10-30 18:46:42',0),(0,0,'2526','H','O',2131,1,0,'2025-10-30','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 18:50:24','reception','2025-10-30 18:50:24',0),(0,0,'2526','H','O',2131,2,0,'2025-10-30','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 18:50:24','reception','2025-10-30 18:50:24',0),(0,0,'2526','H','O',2131,3,0,'2025-10-30','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-30 18:50:24','reception','2025-10-30 18:50:24',0),(0,0,'2526','H','O',2132,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-30 18:53:04','janvi','2025-10-30 18:53:04',0),(0,0,'2526','H','O',2133,1,0,'2025-10-30','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 18:53:39','drashti','2025-10-30 18:53:39',0),(0,0,'2526','H','O',2134,1,0,'2025-10-30','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-30 19:16:27','reception','2025-10-30 19:16:27',0),(0,0,'2526','H','O',2135,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-30 19:19:29','drashti','2025-10-30 19:19:29',0),(0,0,'2526','H','O',2136,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-30 19:20:01','janvi','2025-10-30 19:20:01',0),(0,0,'2526','H','O',2137,1,0,'2025-10-30','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-30 19:25:16','manshi','2025-10-30 19:25:16',0),(0,0,'2526','H','O',2138,1,0,'2025-10-30','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-30 19:28:02','drashti','2025-10-30 19:28:02',0),(0,0,'2526','H','O',2139,1,0,'2025-10-30','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 19:37:19','drashti','2025-10-30 19:37:19',0),(0,0,'2526','H','O',2139,2,0,'2025-10-30','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 19:37:19','drashti','2025-10-30 19:37:19',0),(0,0,'2526','H','O',2139,3,0,'2025-10-30','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-30 19:37:19','drashti','2025-10-30 19:37:19',0),(0,0,'2526','H','O',2140,1,0,'2025-10-30','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,7,0,'',0,'','','','Y','N','drashti','2025-10-30 20:02:38','drashti','2025-10-30 20:02:38',0),(0,0,'2526','H','O',2141,1,0,'2025-10-30','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-30 20:10:15','janvi','2025-10-30 20:10:15',0),(0,0,'2526','H','O',2142,1,0,'2025-10-31','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-31 08:57:46','urvashi','2025-10-31 08:57:46',0),(0,0,'2526','H','O',2142,2,0,'2025-10-31','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-10-31 08:57:46','urvashi','2025-10-31 08:57:46',0),(0,0,'2526','H','O',2143,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 09:03:02','reception','2025-10-31 09:03:02',0),(0,0,'2526','H','O',2144,1,0,'2025-10-31','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-10-31 09:03:28','urvashi','2025-10-31 09:03:28',0),(0,0,'2526','H','O',2144,2,0,'2025-10-31','00:00:00','DTPR0067',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-10-31 09:03:28','urvashi','2025-10-31 09:03:28',0),(0,0,'2526','H','O',2144,3,0,'2025-10-31','00:00:00','OPWD0013',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-10-31 09:03:28','urvashi','2025-10-31 09:03:28',0),(0,0,'2526','H','O',2145,1,0,'2025-10-31','00:00:00','SURG0005',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-31 09:08:51','urvashi','2025-10-31 09:08:51',0),(0,0,'2526','H','O',2145,2,0,'2025-10-31','00:00:00','WPRC0046',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-10-31 09:08:51','urvashi','2025-10-31 09:08:51',0),(0,0,'2526','H','O',2146,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-31 09:20:04','reception','2025-10-31 09:20:04',0),(0,0,'2526','H','O',2147,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 09:47:08','reception','2025-10-31 09:47:08',0),(0,0,'2526','H','O',2148,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 09:52:25','reception','2025-10-31 09:52:25',0),(0,0,'2526','H','O',2149,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 09:53:48','reception','2025-10-31 09:53:48',0),(0,0,'2526','H','O',2150,1,0,'2025-10-31','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 10:00:41','reception','2025-10-31 10:00:41',0),(0,0,'2526','H','O',2151,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 10:01:42','reception','2025-10-31 10:01:42',0),(0,0,'2526','H','O',2152,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 10:03:07','reception','2025-10-31 10:03:07',0),(0,0,'2526','H','O',2153,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-31 10:05:13','janvi','2025-10-31 10:05:13',0),(0,0,'2526','H','O',2154,1,0,'2025-10-31','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-31 10:12:54','reception','2025-10-31 10:12:54',0),(0,0,'2526','H','O',2155,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 10:17:34','reception','2025-10-31 10:17:34',0),(0,0,'2526','H','O',2156,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-10-31 10:20:33','reception','2025-10-31 10:20:33',0),(0,0,'2526','H','O',2157,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-31 10:35:01','drashti','2025-10-31 10:35:01',0),(0,0,'2526','H','O',2158,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-10-31 10:37:08','reception','2025-10-31 10:37:08',0),(0,0,'2526','H','O',2159,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-31 10:37:41','drashti','2025-10-31 10:37:41',0),(0,0,'2526','H','O',2160,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 10:39:03','reception','2025-10-31 10:39:03',0),(0,0,'2526','H','O',2161,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-31 10:40:34','reception','2025-10-31 11:16:04',0),(0,0,'2526','H','O',2162,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 10:50:03','reception','2025-10-31 10:50:03',0),(0,0,'2526','H','O',2163,1,0,'2025-10-31','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-31 10:50:34','janvi','2025-10-31 10:50:34',0),(0,0,'2526','H','O',2164,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-31 10:53:42','janvi','2025-10-31 10:53:42',0),(0,0,'2526','H','O',2165,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 10:54:00','reception','2025-10-31 10:54:00',0),(0,0,'2526','H','O',2166,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-31 10:58:10','janvi','2025-10-31 10:58:10',0),(0,0,'2526','H','O',2167,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 10:59:34','reception','2025-10-31 10:59:34',0),(0,0,'2526','H','O',2168,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 11:02:29','reception','2025-10-31 11:02:29',0),(0,0,'2526','H','O',2169,1,0,'2025-10-31','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 11:08:52','reception','2025-10-31 11:08:52',0),(0,0,'2526','H','O',2170,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-31 11:11:01','janvi','2025-10-31 11:11:01',0),(0,0,'2526','H','O',2171,1,0,'2025-10-31','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 11:13:43','reception','2025-10-31 11:13:43',0),(0,0,'2526','H','O',2171,2,0,'2025-10-31','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 11:13:43','reception','2025-10-31 11:13:43',0),(0,0,'2526','H','O',2171,3,0,'2025-10-31','00:00:00','NEU10019',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 11:13:43','reception','2025-10-31 11:13:43',0),(0,0,'2526','H','O',2171,4,0,'2025-10-31','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 11:13:43','reception','2025-10-31 11:13:43',0),(0,0,'2526','H','O',2172,1,0,'2025-10-31','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 11:16:04','reception','2025-10-31 11:16:04',0),(0,0,'2526','H','O',2173,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 11:19:45','reception','2025-10-31 11:19:45',0),(0,0,'2526','H','O',2174,1,0,'2025-10-31','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-31 11:21:09','drashti','2025-10-31 11:21:09',0),(0,0,'2526','H','O',2175,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-31 11:23:09','janvi','2025-10-31 11:23:09',0),(0,0,'2526','H','O',2176,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 11:23:17','reception','2025-10-31 11:23:17',0),(0,0,'2526','H','O',2177,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-31 11:26:02','drashti','2025-10-31 11:26:02',0),(0,0,'2526','H','O',2178,1,0,'2025-10-31','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-31 11:27:02','janvi','2025-10-31 11:27:02',0),(0,0,'2526','H','O',2179,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-31 11:33:10','janvi','2025-10-31 11:33:10',0),(0,0,'2526','H','O',2180,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-31 11:33:15','drashti','2025-10-31 11:33:15',0),(0,0,'2526','H','O',2181,1,0,'2025-10-31','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 11:37:45','reception','2025-10-31 11:37:45',0),(0,0,'2526','H','O',2181,2,0,'2025-10-31','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 11:37:45','reception','2025-10-31 11:37:45',0),(0,0,'2526','H','O',2181,3,0,'2025-10-31','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 11:37:45','reception','2025-10-31 11:37:45',0),(0,0,'2526','H','O',2182,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-31 11:38:12','drashti','2025-10-31 11:38:12',0),(0,0,'2526','H','O',2183,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-31 11:40:17','drashti','2025-10-31 11:40:17',0),(0,0,'2526','H','O',2184,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 11:41:08','reception','2025-10-31 11:41:08',0),(0,0,'2526','H','O',2185,1,0,'2025-10-31','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-31 11:41:55','janvi','2025-10-31 11:41:55',0),(0,0,'2526','H','O',2186,1,0,'2025-10-31','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-31 11:42:00','janvi','2025-10-31 11:42:00',0),(0,0,'2526','H','O',2187,1,0,'2025-10-31','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-31 11:42:26','drashti','2025-10-31 11:42:26',0),(0,0,'2526','H','O',2187,2,0,'2025-10-31','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-31 11:42:26','drashti','2025-10-31 11:42:26',0),(0,0,'2526','H','O',2188,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 11:45:44','reception','2025-10-31 11:45:44',0),(0,0,'2526','H','O',2189,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 11:47:30','reception','2025-10-31 11:47:30',0),(0,0,'2526','H','O',2190,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-31 11:51:50','drashti','2025-10-31 11:51:50',0),(0,0,'2526','H','O',2191,1,0,'2025-10-31','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-31 11:56:39','drashti','2025-10-31 11:56:39',0),(0,0,'2526','H','O',2191,2,0,'2025-10-31','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-31 11:56:39','drashti','2025-10-31 11:56:39',0),(0,0,'2526','H','O',2192,1,0,'2025-10-31','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 11:56:43','reception','2025-10-31 11:56:43',0),(0,0,'2526','H','O',2192,2,0,'2025-10-31','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 11:56:43','reception','2025-10-31 11:56:43',0),(0,0,'2526','H','O',2192,3,0,'2025-10-31','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 11:56:43','reception','2025-10-31 11:56:43',0),(0,0,'2526','H','O',2193,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 11:59:28','reception','2025-10-31 11:59:28',0),(0,0,'2526','H','O',2194,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 12:00:02','reception','2025-10-31 12:00:02',0),(0,0,'2526','H','O',2195,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-31 12:03:26','manshi','2025-10-31 12:14:46',0),(0,0,'2526','H','O',2196,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-31 12:05:41','drashti','2025-10-31 12:05:41',0),(0,0,'2526','H','O',2197,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-31 12:06:33','janvi','2025-10-31 12:06:33',0),(0,0,'2526','H','O',2198,1,0,'2025-10-31','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 12:07:40','reception','2025-10-31 12:07:40',0),(0,0,'2526','H','O',2198,2,0,'2025-10-31','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 12:07:40','reception','2025-10-31 12:07:40',0),(0,0,'2526','H','O',2199,1,0,'2025-10-31','00:00:00','XRY0189',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-31 12:13:43','manshi','2025-10-31 12:13:43',0),(0,0,'2526','H','O',2200,1,0,'2025-10-31','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-31 12:14:46','manshi','2025-10-31 12:14:46',0),(0,0,'2526','H','O',2201,1,0,'2025-10-31','00:00:00','XRY0062',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-31 12:15:19','drashti','2025-10-31 12:15:19',0),(0,0,'2526','H','O',2202,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-31 12:16:34','drashti','2025-10-31 12:16:34',0),(0,0,'2526','H','O',2203,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-31 12:16:35','janvi','2025-10-31 12:16:35',0),(0,0,'2526','H','O',2204,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 12:17:05','reception','2025-10-31 12:17:05',0),(0,0,'2526','H','O',2205,1,0,'2025-10-31','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-31 12:17:12','manshi','2025-10-31 12:17:12',0),(0,0,'2526','H','O',2206,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-31 12:19:43','janvi','2025-10-31 12:19:43',0),(0,0,'2526','H','O',2207,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 12:19:53','reception','2025-10-31 12:19:53',0),(0,0,'2526','H','O',2208,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 12:20:45','reception','2025-10-31 12:20:45',0),(0,0,'2526','H','O',2209,1,0,'2025-10-31','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 12:27:58','reception','2025-10-31 12:27:58',0),(0,0,'2526','H','O',2209,2,0,'2025-10-31','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 12:27:58','reception','2025-10-31 12:27:58',0),(0,0,'2526','H','O',2210,1,0,'2025-10-31','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 12:29:16','reception','2025-10-31 12:29:16',0),(0,0,'2526','H','O',2210,2,0,'2025-10-31','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 12:29:16','reception','2025-10-31 12:29:16',0),(0,0,'2526','H','O',2210,3,0,'2025-10-31','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 12:29:16','reception','2025-10-31 12:29:16',0),(0,0,'2526','H','O',2211,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-31 12:31:43','janvi','2025-10-31 12:31:43',0),(0,0,'2526','H','O',2212,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 12:32:12','reception','2025-10-31 12:32:12',0),(0,0,'2526','H','O',2213,1,0,'2025-10-31','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 12:35:30','reception','2025-10-31 12:35:30',0),(0,0,'2526','H','O',2213,2,0,'2025-10-31','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 12:35:30','reception','2025-10-31 12:35:30',0),(0,0,'2526','H','O',2213,3,0,'2025-10-31','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 12:35:30','reception','2025-10-31 12:35:30',0),(0,0,'2526','H','O',2214,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-31 12:36:47','manshi','2025-10-31 12:36:47',0),(0,0,'2526','H','O',2215,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 12:46:36','reception','2025-10-31 12:46:36',0),(0,0,'2526','H','O',2216,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 12:49:14','reception','2025-10-31 12:49:14',0),(0,0,'2526','H','O',2217,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 12:50:32','reception','2025-10-31 12:50:32',0),(0,0,'2526','H','O',2218,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 12:57:37','drashti','2025-10-31 14:46:46',0),(0,0,'2526','H','O',2219,1,0,'2025-10-31','00:00:00','WPRC0046',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-31 13:01:22','janvi','2025-10-31 13:01:22',0),(0,0,'2526','H','O',2220,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-31 13:04:40','drashti','2025-10-31 13:04:40',0),(0,0,'2526','H','O',2221,1,0,'2025-10-31','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-31 13:09:52','drashti','2025-10-31 13:09:52',0),(0,0,'2526','H','O',2222,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 13:12:15','reception','2025-10-31 13:12:15',0),(0,0,'2526','H','O',2223,1,0,'2025-10-31','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-31 13:14:35','drashti','2025-10-31 13:14:35',0),(0,0,'2526','H','O',2224,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-31 13:16:12','drashti','2025-10-31 13:16:12',0),(0,0,'2526','H','O',2225,1,0,'2025-10-31','00:00:00','WPRC0046',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-31 13:26:20','manshi','2025-10-31 13:26:20',0),(0,0,'2526','H','O',2226,1,0,'2025-10-31','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-31 13:28:17','janvi','2025-10-31 13:28:17',0),(0,0,'2526','H','O',2227,1,0,'2025-10-31','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 13:28:18','reception','2025-10-31 13:28:18',0),(0,0,'2526','H','O',2227,2,0,'2025-10-31','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 13:28:18','reception','2025-10-31 13:28:18',0),(0,0,'2526','H','O',2228,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-31 13:51:33','drashti','2025-10-31 13:51:33',0),(0,0,'2526','H','O',2229,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-31 14:11:18','drashti','2025-10-31 14:11:18',0),(0,0,'2526','H','O',2230,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 14:25:16','reception','2025-10-31 14:25:16',0),(0,0,'2526','H','O',2231,1,0,'2025-10-31','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-31 14:46:46','drashti','2025-10-31 14:46:46',0),(0,0,'2526','H','O',2232,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-31 14:47:48','drashti','2025-10-31 14:47:48',0),(0,0,'2526','H','O',2233,1,0,'2025-10-31','00:00:00','WPRC0046',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-31 15:23:09','drashti','2025-10-31 15:23:09',0),(0,0,'2526','H','O',2234,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 16:12:09','reception','2025-10-31 16:12:09',0),(0,0,'2526','H','O',2235,1,0,'2025-10-31','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-31 16:12:57','drashti','2025-10-31 16:12:57',0),(0,0,'2526','H','O',2235,2,0,'2025-10-31','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-31 16:12:57','drashti','2025-10-31 16:12:57',0),(0,0,'2526','H','O',2236,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 16:24:28','reception','2025-10-31 16:24:28',0),(0,0,'2526','H','O',2237,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 16:43:51','reception','2025-10-31 16:43:51',0),(0,0,'2526','H','O',2238,1,0,'2025-10-31','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 17:00:57','reception','2025-10-31 17:00:57',0),(0,0,'2526','H','O',2238,2,0,'2025-10-31','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 17:00:57','reception','2025-10-31 17:00:57',0),(0,0,'2526','H','O',2239,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 17:03:15','reception','2025-10-31 17:03:15',0),(0,0,'2526','H','O',2240,1,0,'2025-10-31','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 17:04:55','reception','2025-10-31 17:04:55',0),(0,0,'2526','H','O',2240,2,0,'2025-10-31','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 17:04:55','reception','2025-10-31 17:04:55',0),(0,0,'2526','H','O',2240,3,0,'2025-10-31','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 17:04:55','reception','2025-10-31 17:04:55',0),(0,0,'2526','H','O',2241,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 17:08:18','reception','2025-10-31 17:08:18',0),(0,0,'2526','H','O',2242,1,0,'2025-10-31','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 17:10:51','reception','2025-10-31 17:10:51',0),(0,0,'2526','H','O',2242,2,0,'2025-10-31','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 17:10:51','reception','2025-10-31 17:10:51',0),(0,0,'2526','H','O',2242,3,0,'2025-10-31','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 17:10:51','reception','2025-10-31 17:10:51',0),(0,0,'2526','H','O',2243,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 17:15:13','reception','2025-10-31 17:15:13',0),(0,0,'2526','H','O',2244,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 17:15:29','reception','2025-10-31 17:15:29',0),(0,0,'2526','H','O',2245,1,0,'2025-10-31','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 17:16:43','reception','2025-10-31 17:57:57',0),(0,0,'2526','H','O',2246,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 17:20:59','reception','2025-10-31 17:20:59',0),(0,0,'2526','H','O',2247,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 17:24:17','reception','2025-10-31 17:24:17',0),(0,0,'2526','H','O',2248,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-31 17:27:17','manshi','2025-10-31 18:19:09',0),(0,0,'2526','H','O',2249,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 17:28:03','reception','2025-10-31 17:28:03',0),(0,0,'2526','H','O',2250,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-31 17:38:45','drashti','2025-10-31 17:38:45',0),(0,0,'2526','H','O',2251,1,0,'2025-10-31','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 17:40:56','reception','2025-10-31 17:40:56',0),(0,0,'2526','H','O',2251,2,0,'2025-10-31','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 17:40:56','reception','2025-10-31 17:40:56',0),(0,0,'2526','H','O',2251,3,0,'2025-10-31','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 17:40:56','reception','2025-10-31 17:40:56',0),(0,0,'2526','H','O',2252,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 17:43:28','reception','2025-10-31 17:43:28',0),(0,0,'2526','H','O',2253,1,0,'2025-10-31','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-31 17:45:15','drashti','2025-10-31 17:45:15',0),(0,0,'2526','H','O',2254,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 17:47:10','reception','2025-10-31 17:47:10',0),(0,0,'2526','H','O',2255,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 17:48:47','reception','2025-10-31 17:48:47',0),(0,0,'2526','H','O',2256,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-10-31 17:49:05','drashti','2025-10-31 17:49:05',0),(0,0,'2526','H','O',2257,1,0,'2025-10-31','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-31 17:50:04','janvi','2025-10-31 17:50:04',0),(0,0,'2526','H','O',2258,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-31 17:51:52','drashti','2025-10-31 17:51:52',0),(0,0,'2526','H','O',2259,1,0,'2025-10-31','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-10-31 17:52:04','drashti','2025-10-31 18:26:45',0),(0,0,'2526','H','O',2260,1,0,'2025-10-31','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-31 17:53:26','janvi','2025-10-31 17:53:26',0),(0,0,'2526','H','O',2261,1,0,'2025-10-31','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-31 17:54:48','janvi','2025-10-31 17:54:48',0),(0,0,'2526','H','O',2262,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 17:56:17','reception','2025-10-31 17:56:17',0),(0,0,'2526','H','O',2263,1,0,'2025-10-31','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 17:57:57','reception','2025-10-31 17:57:57',0),(0,0,'2526','H','O',2264,1,0,'2025-10-31','00:00:00','NEU10015',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 17:59:11','reception','2025-10-31 17:59:11',0),(0,0,'2526','H','O',2265,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 18:02:39','reception','2025-10-31 20:28:36',0),(0,0,'2526','H','O',2266,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-31 18:04:17','manshi','2025-10-31 18:28:25',0),(0,0,'2526','H','O',2267,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 18:07:04','reception','2025-10-31 18:07:04',0),(0,0,'2526','H','O',2268,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-31 18:09:45','janvi','2025-10-31 18:09:45',0),(0,0,'2526','H','O',2269,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 18:10:45','reception','2025-10-31 18:10:45',0),(0,0,'2526','H','O',2270,1,0,'2025-10-31','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-31 18:12:23','janvi','2025-10-31 18:12:23',0),(0,0,'2526','H','O',2271,1,0,'2025-10-31','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-31 18:13:43','janvi','2025-10-31 18:13:43',0),(0,0,'2526','H','O',2272,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 18:14:01','reception','2025-10-31 18:14:01',0),(0,0,'2526','H','O',2273,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-31 18:14:28','janvi','2025-10-31 18:14:28',0),(0,0,'2526','H','O',2274,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 18:15:59','reception','2025-10-31 18:15:59',0),(0,0,'2526','H','O',2275,1,0,'2025-10-31','00:00:00','XRY0189',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-10-31 18:17:35','manshi','2025-10-31 18:17:35',0),(0,0,'2526','H','O',2276,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-10-31 18:19:01','janvi','2025-10-31 18:19:01',0),(0,0,'2526','H','O',2277,1,0,'2025-10-31','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-31 18:19:09','manshi','2025-10-31 18:19:09',0),(0,0,'2526','H','O',2278,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-31 18:19:25','drashti','2025-10-31 18:19:25',0),(0,0,'2526','H','O',2279,1,0,'2025-10-31','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 18:19:45','reception','2025-10-31 18:19:45',0),(0,0,'2526','H','O',2279,2,0,'2025-10-31','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 18:19:45','reception','2025-10-31 18:19:45',0),(0,0,'2526','H','O',2279,3,0,'2025-10-31','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 18:19:45','reception','2025-10-31 18:19:45',0),(0,0,'2526','H','O',2280,1,0,'2025-10-31','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-31 18:20:23','manshi','2025-10-31 18:20:23',0),(0,0,'2526','H','O',2281,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-31 18:21:30','drashti','2025-10-31 18:21:30',0),(0,0,'2526','H','O',2282,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 18:22:43','reception','2025-10-31 18:22:43',0),(0,0,'2526','H','O',2283,1,0,'2025-10-31','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-10-31 18:24:09','drashti','2025-10-31 18:24:09',0),(0,0,'2526','H','O',2284,1,0,'2025-10-31','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-31 18:26:45','drashti','2025-10-31 18:26:45',0),(0,0,'2526','H','O',2285,1,0,'2025-10-31','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-31 18:28:25','manshi','2025-10-31 18:28:25',0),(0,0,'2526','H','O',2286,1,0,'2025-10-31','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-31 18:30:18','drashti','2025-10-31 18:30:18',0),(0,0,'2526','H','O',2287,1,0,'2025-10-31','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-31 18:32:07','janvi','2025-10-31 18:32:07',0),(0,0,'2526','H','O',2288,1,0,'2025-10-31','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-31 18:33:04','drashti','2025-10-31 18:33:04',0),(0,0,'2526','H','O',2289,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 18:33:39','reception','2025-10-31 18:33:39',0),(0,0,'2526','H','O',2290,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-10-31 18:35:34','drashti','2025-10-31 18:35:34',0),(0,0,'2526','H','O',2291,1,0,'2025-10-31','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-31 18:37:54','janvi','2025-10-31 18:37:54',0),(0,0,'2526','H','O',2292,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 18:38:16','reception','2025-10-31 18:38:16',0),(0,0,'2526','H','O',2293,1,0,'2025-10-31','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-31 18:40:21','drashti','2025-10-31 18:40:21',0),(0,0,'2526','H','O',2294,1,0,'2025-10-31','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 18:41:20','reception','2025-10-31 18:41:20',0),(0,0,'2526','H','O',2295,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 18:42:53','reception','2025-10-31 18:42:53',0),(0,0,'2526','H','O',2296,1,0,'2025-10-31','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-10-31 18:43:08','manshi','2025-10-31 18:43:08',0),(0,0,'2526','H','O',2297,1,0,'2025-10-31','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-31 18:49:59','drashti','2025-10-31 18:49:59',0),(0,0,'2526','H','O',2297,2,0,'2025-10-31','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-31 18:49:59','drashti','2025-10-31 18:49:59',0),(0,0,'2526','H','O',2298,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 18:52:11','reception','2025-10-31 18:52:11',0),(0,0,'2526','H','O',2299,1,0,'2025-10-31','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-10-31 18:56:45','janvi','2025-10-31 18:56:45',0),(0,0,'2526','H','O',2300,1,0,'2025-10-31','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 18:57:26','reception','2025-10-31 18:57:26',0),(0,0,'2526','H','O',2300,2,0,'2025-10-31','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 18:57:26','reception','2025-10-31 18:57:26',0),(0,0,'2526','H','O',2301,1,0,'2025-10-31','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-10-31 19:03:50','drashti','2025-10-31 19:03:50',0),(0,0,'2526','H','O',2302,1,0,'2025-10-31','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-31 19:15:05','manshi','2025-10-31 19:15:05',0),(0,0,'2526','H','O',2303,1,0,'2025-10-31','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 19:23:28','reception','2025-10-31 19:23:28',0),(0,0,'2526','H','O',2303,2,0,'2025-10-31','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 19:23:28','reception','2025-10-31 19:23:28',0),(0,0,'2526','H','O',2304,1,0,'2025-10-31','00:00:00','OPWD0012',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-31 19:30:22','drashti','2025-10-31 19:30:22',0),(0,0,'2526','H','O',2305,1,0,'2025-10-31','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-31 19:40:47','manshi','2025-10-31 19:40:47',0),(0,0,'2526','H','O',2306,1,0,'2025-10-31','00:00:00','OPWD0013',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-10-31 20:06:05','manshi','2025-10-31 20:06:05',0),(0,0,'2526','H','O',2307,1,0,'2025-10-31','00:00:00','MOPR0006',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-10-31 20:07:25','janvi','2025-10-31 20:07:25',0),(0,0,'2526','H','O',2308,1,0,'2025-10-31','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-10-31 20:19:17','drashti','2025-10-31 20:19:17',0),(0,0,'2526','H','O',2309,1,0,'2025-10-31','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 20:28:36','reception','2025-10-31 20:28:36',0),(0,0,'2526','H','O',2310,1,0,'2025-10-31','00:00:00','CASE',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 20:31:27','reception','2025-10-31 20:31:27',0),(0,0,'2526','H','O',2311,1,0,'2025-10-31','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-10-31 21:21:08','reception','2025-10-31 21:21:08',0),(0,0,'2526','H','O',2311,2,0,'2025-10-31','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 21:21:08','reception','2025-10-31 21:21:08',0),(0,0,'2526','H','O',2311,3,0,'2025-10-31','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-10-31 21:21:08','reception','2025-10-31 21:21:08',0),(0,0,'2526','H','O',2312,1,0,'2025-11-01','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-01 09:13:08','urvashi','2025-11-01 09:13:08',0),(0,0,'2526','H','O',2312,2,0,'2025-11-01','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-01 09:13:08','urvashi','2025-11-01 09:13:08',0),(0,0,'2526','H','O',2313,1,0,'2025-11-01','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 09:14:46','reception','2025-11-01 09:14:46',0),(0,0,'2526','H','O',2314,1,0,'2025-11-01','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-01 09:15:32','urvashi','2025-11-01 09:15:32',0),(0,0,'2526','H','O',2314,2,0,'2025-11-01','00:00:00','OPWD0013',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-01 09:15:32','urvashi','2025-11-01 09:15:32',0),(0,0,'2526','H','O',2314,3,0,'2025-11-01','00:00:00','WPRC0049',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-01 09:15:32','urvashi','2025-11-01 09:15:32',0),(0,0,'2526','H','O',2315,1,0,'2025-11-01','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 09:17:06','reception','2025-11-01 09:17:06',0),(0,0,'2526','H','O',2316,1,0,'2025-11-01','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-11-01 09:18:06','urvashi','2025-11-01 09:18:06',0),(0,0,'2526','H','O',2317,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-01 09:47:51','urvashi','2025-11-01 09:47:51',0),(0,0,'2526','H','O',2318,1,0,'2025-11-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 09:49:05','reception','2025-11-01 09:49:05',0),(0,0,'2526','H','O',2319,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 10:00:19','reception','2025-11-01 10:00:19',0),(0,0,'2526','H','O',2320,1,0,'2025-11-01','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 10:05:24','reception','2025-11-01 10:05:24',0),(0,0,'2526','H','O',2320,2,0,'2025-11-01','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 10:05:24','reception','2025-11-01 10:05:24',0),(0,0,'2526','H','O',2320,3,0,'2025-11-01','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 10:05:24','reception','2025-11-01 10:05:24',0),(0,0,'2526','H','O',2321,1,0,'2025-11-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 10:13:52','reception','2025-11-01 10:13:52',0),(0,0,'2526','H','O',2322,1,0,'2025-11-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-01 10:20:26','drashti','2025-11-01 10:20:26',0),(0,0,'2526','H','O',2323,1,0,'2025-11-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 10:23:53','reception','2025-11-01 10:23:53',0),(0,0,'2526','H','O',2324,1,0,'2025-11-01','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-01 10:24:38','manshi','2025-11-01 10:24:38',0),(0,0,'2526','H','O',2325,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-01 10:26:56','drashti','2025-11-01 10:26:56',0),(0,0,'2526','H','O',2326,1,0,'2025-11-01','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 10:31:38','reception','2025-11-01 10:31:38',0),(0,0,'2526','H','O',2326,2,0,'2025-11-01','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 10:31:38','reception','2025-11-01 10:31:38',0),(0,0,'2526','H','O',2326,3,0,'2025-11-01','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 10:31:38','reception','2025-11-01 10:31:38',0),(0,0,'2526','H','O',2327,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 10:34:16','reception','2025-11-01 10:34:16',0),(0,0,'2526','H','O',2328,1,0,'2025-11-01','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-01 10:37:11','manshi','2025-11-01 10:37:11',0),(0,0,'2526','H','O',2329,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 10:37:18','reception','2025-11-01 10:37:18',0),(0,0,'2526','H','O',2330,1,0,'2025-11-01','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-01 10:38:05','manshi','2025-11-01 10:38:05',0),(0,0,'2526','H','O',2331,1,0,'2025-11-01','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-01 10:39:12','janvi','2025-11-01 10:39:12',0),(0,0,'2526','H','O',2332,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 10:39:22','reception','2025-11-01 10:39:22',0),(0,0,'2526','H','O',2333,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 10:47:01','reception','2025-11-01 10:47:01',0),(0,0,'2526','H','O',2334,1,0,'2025-11-01','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-01 10:48:52','manshi','2025-11-01 10:48:52',0),(0,0,'2526','H','O',2335,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-01 10:49:02','janvi','2025-11-01 10:49:02',0),(0,0,'2526','H','O',2336,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 10:49:08','reception','2025-11-01 10:49:08',0),(0,0,'2526','H','O',2337,1,0,'2025-11-01','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-01 10:50:21','drashti','2025-11-01 11:01:43',0),(0,0,'2526','H','O',2338,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-01 10:52:03','drashti','2025-11-01 10:52:03',0),(0,0,'2526','H','O',2339,1,0,'2025-11-01','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-01 10:52:18','janvi','2025-11-01 10:52:18',0),(0,0,'2526','H','O',2340,1,0,'2025-11-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-01 10:56:38','drashti','2025-11-01 10:56:38',0),(0,0,'2526','H','O',2341,1,0,'2025-11-01','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-01 10:58:44','janvi','2025-11-01 10:58:44',0),(0,0,'2526','H','O',2342,1,0,'2025-11-01','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 10:59:08','reception','2025-11-01 10:59:08',0),(0,0,'2526','H','O',2342,2,0,'2025-11-01','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 10:59:08','reception','2025-11-01 10:59:08',0),(0,0,'2526','H','O',2342,3,0,'2025-11-01','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 10:59:08','reception','2025-11-01 10:59:08',0),(0,0,'2526','H','O',2343,1,0,'2025-11-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-01 11:00:15','drashti','2025-11-01 11:00:15',0),(0,0,'2526','H','O',2344,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 11:01:25','reception','2025-11-01 11:01:25',0),(0,0,'2526','H','O',2345,1,0,'2025-11-01','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-01 11:01:43','drashti','2025-11-01 11:01:43',0),(0,0,'2526','H','O',2346,1,0,'2025-11-01','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-01 11:02:58','drashti','2025-11-01 11:02:58',0),(0,0,'2526','H','O',2347,1,0,'2025-11-01','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 11:04:42','reception','2025-11-01 11:04:42',0),(0,0,'2526','H','O',2347,2,0,'2025-11-01','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 11:04:42','reception','2025-11-01 11:04:42',0),(0,0,'2526','H','O',2348,1,0,'2025-11-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-01 11:05:37','janvi','2025-11-01 11:05:37',0),(0,0,'2526','H','O',2349,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 11:09:31','reception','2025-11-01 13:46:10',0),(0,0,'2526','H','O',2350,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-01 11:12:39','janvi','2025-11-01 11:12:39',0),(0,0,'2526','H','O',2351,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 11:12:55','reception','2025-11-01 11:12:55',0),(0,0,'2526','H','O',2352,1,0,'2025-11-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-01 11:13:08','drashti','2025-11-01 11:13:08',0),(0,0,'2526','H','O',2353,1,0,'2025-11-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-01 11:14:42','janvi','2025-11-01 11:14:42',0),(0,0,'2526','H','O',2354,1,0,'2025-11-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-01 11:16:20','reception','2025-11-01 11:16:20',0),(0,0,'2526','H','O',2355,1,0,'2025-11-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-01 11:17:51','drashti','2025-11-01 11:17:51',0),(0,0,'2526','H','O',2356,1,0,'2025-11-01','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-01 11:18:21','janvi','2025-11-01 11:18:21',0),(0,0,'2526','H','O',2357,1,0,'2025-11-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 11:18:35','reception','2025-11-01 11:18:35',0),(0,0,'2526','H','O',2358,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-01 11:20:25','drashti','2025-11-01 11:20:25',0),(0,0,'2526','H','O',2359,1,0,'2025-11-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 11:21:13','reception','2025-11-01 11:21:13',0),(0,0,'2526','H','O',2360,1,0,'2025-11-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-01 11:23:21','janvi','2025-11-01 11:23:21',0),(0,0,'2526','H','O',2361,1,0,'2025-11-01','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 11:25:21','reception','2025-11-01 11:25:21',0),(0,0,'2526','H','O',2361,2,0,'2025-11-01','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 11:25:21','reception','2025-11-01 11:25:21',0),(0,0,'2526','H','O',2361,3,0,'2025-11-01','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 11:25:21','reception','2025-11-01 11:25:21',0),(0,0,'2526','H','O',2362,1,0,'2025-11-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-01 11:26:26','drashti','2025-11-01 11:26:26',0),(0,0,'2526','H','O',2363,1,0,'2025-11-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-01 11:32:13','drashti','2025-11-01 11:32:13',0),(0,0,'2526','H','O',2364,1,0,'2025-11-01','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-01 11:33:15','drashti','2025-11-01 11:33:15',0),(0,0,'2526','H','O',2365,1,0,'2025-11-01','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-01 11:34:09','janvi','2025-11-01 11:34:09',0),(0,0,'2526','H','O',2366,1,0,'2025-11-01','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-01 11:38:03','janvi','2025-11-01 11:38:03',0),(0,0,'2526','H','O',2367,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 11:43:11','reception','2025-11-01 11:43:11',0),(0,0,'2526','H','O',2368,1,0,'2025-11-01','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 11:46:20','reception','2025-11-01 11:46:20',0),(0,0,'2526','H','O',2369,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-01 11:47:02','janvi','2025-11-01 11:47:02',0),(0,0,'2526','H','O',2370,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 11:49:16','reception','2025-11-01 11:49:16',0),(0,0,'2526','H','O',2371,1,0,'2025-11-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-01 11:57:17','janvi','2025-11-01 11:57:17',0),(0,0,'2526','H','O',2372,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 12:00:39','reception','2025-11-01 12:00:39',0),(0,0,'2526','H','O',2373,1,0,'2025-11-01','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 12:04:27','reception','2025-11-01 12:04:27',0),(0,0,'2526','H','O',2374,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 12:08:41','reception','2025-11-01 12:08:41',0),(0,0,'2526','H','O',2375,1,0,'2025-11-01','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-01 12:09:08','janvi','2025-11-01 12:09:08',0),(0,0,'2526','H','O',2376,1,0,'2025-11-01','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-01 12:11:22','janvi','2025-11-01 12:11:22',0),(0,0,'2526','H','O',2377,1,0,'2025-11-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-01 12:17:38','drashti','2025-11-01 12:17:38',0),(0,0,'2526','H','O',2378,1,0,'2025-11-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-01 12:18:08','janvi','2025-11-01 12:18:08',0),(0,0,'2526','H','O',2379,1,0,'2025-11-01','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-01 12:22:05','manshi','2025-11-01 12:22:05',0),(0,0,'2526','H','O',2380,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 12:23:48','reception','2025-11-01 12:23:48',0),(0,0,'2526','H','O',2381,1,0,'2025-11-01','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-01 12:28:25','drashti','2025-11-01 12:28:25',0),(0,0,'2526','H','O',2381,2,0,'2025-11-01','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-01 12:28:25','drashti','2025-11-01 12:28:25',0),(0,0,'2526','H','O',2382,1,0,'2025-11-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 12:29:14','reception','2025-11-01 12:29:14',0),(0,0,'2526','H','O',2383,1,0,'2025-11-01','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 12:34:25','reception','2025-11-01 12:34:25',0),(0,0,'2526','H','O',2383,2,0,'2025-11-01','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 12:34:25','reception','2025-11-01 12:34:25',0),(0,0,'2526','H','O',2383,3,0,'2025-11-01','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 12:34:25','reception','2025-11-01 12:34:25',0),(0,0,'2526','H','O',2384,1,0,'2025-11-01','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-01 12:35:22','janvi','2025-11-01 12:35:22',0),(0,0,'2526','H','O',2385,1,0,'2025-11-01','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-01 12:35:52','janvi','2025-11-01 12:35:52',0),(0,0,'2526','H','O',2386,1,0,'2025-11-01','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-01 12:35:56','drashti','2025-11-01 12:35:56',0),(0,0,'2526','H','O',2387,1,0,'2025-11-01','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 12:44:38','reception','2025-11-01 12:44:38',0),(0,0,'2526','H','O',2387,2,0,'2025-11-01','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 12:44:38','reception','2025-11-01 12:44:38',0),(0,0,'2526','H','O',2387,3,0,'2025-11-01','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 12:44:38','reception','2025-11-01 12:44:38',0),(0,0,'2526','H','O',2388,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-01 12:46:57','janvi','2025-11-01 12:46:57',0),(0,0,'2526','H','O',2388,2,0,'2025-11-01','00:00:00','OPWD0007',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-01 12:46:57','janvi','2025-11-01 12:46:57',0),(0,0,'2526','H','O',2389,1,0,'2025-11-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-01 12:47:15','drashti','2025-11-01 12:47:15',0),(0,0,'2526','H','O',2390,1,0,'2025-11-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 12:49:35','reception','2025-11-01 12:49:35',0),(0,0,'2526','H','O',2391,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 12:53:20','reception','2025-11-01 12:53:20',0),(0,0,'2526','H','O',2392,1,0,'2025-11-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 12:56:27','reception','2025-11-01 12:56:27',0),(0,0,'2526','H','O',2393,1,0,'2025-11-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-01 12:58:07','drashti','2025-11-01 12:58:07',0),(0,0,'2526','H','O',2394,1,0,'2025-11-01','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-01 12:59:18','janvi','2025-11-01 12:59:18',0),(0,0,'2526','H','O',2395,1,0,'2025-11-01','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 13:46:10','reception','2025-11-01 13:46:10',0),(0,0,'2526','H','O',2396,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 13:47:34','reception','2025-11-01 13:47:34',0),(0,0,'2526','H','O',2397,1,0,'2025-11-01','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 13:53:53','reception','2025-11-01 13:53:53',0),(0,0,'2526','H','O',2397,2,0,'2025-11-01','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 13:53:53','reception','2025-11-01 13:53:53',0),(0,0,'2526','H','O',2398,1,0,'2025-11-01','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 13:56:11','reception','2025-11-01 13:56:11',0),(0,0,'2526','H','O',2398,2,0,'2025-11-01','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-01 13:56:11','reception','2025-11-01 13:56:11',0),(0,0,'2526','H','O',2399,1,0,'2025-11-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-01 14:20:00','urvashi','2025-11-01 15:01:34',0),(0,0,'2526','H','O',2400,1,1,'2025-11-01','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','','N','urvashi','2025-11-20 12:57:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','O',2400,2,1,'2025-11-01','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','','N','urvashi','2025-11-20 12:57:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','O',2401,1,0,'2025-11-01','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-01 15:01:34','urvashi','2025-11-01 15:01:34',0),(0,0,'2526','H','O',2402,1,0,'2025-11-01','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-01 15:02:36','urvashi','2025-11-01 15:02:36',0),(0,0,'2526','H','O',2403,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-01 16:27:11','reception','2025-11-01 16:27:11',0),(0,0,'2526','H','O',2404,1,0,'2025-11-01','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-01 17:12:21','manshi','2025-11-01 17:12:21',0),(0,0,'2526','H','O',2404,2,0,'2025-11-01','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-01 17:12:21','manshi','2025-11-01 17:12:21',0),(0,0,'2526','H','O',2404,3,0,'2025-11-01','00:00:00','XRY0056',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-01 17:12:21','manshi','2025-11-01 17:12:21',0),(0,0,'2526','H','O',2404,4,0,'2025-11-01','00:00:00','XRY0390',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-01 17:12:21','manshi','2025-11-01 17:12:21',0),(0,0,'2526','H','O',2405,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-01 17:36:12','janvi','2025-11-01 17:36:12',0),(0,0,'2526','H','O',2406,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-01 18:09:01','drashti','2025-11-01 18:09:01',0),(0,0,'2526','H','O',2407,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-01 18:09:21','reception','2025-11-01 18:09:21',0),(0,0,'2526','H','O',2408,1,0,'2025-11-01','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-01 18:20:52','reception','2025-11-01 18:20:52',0),(0,0,'2526','H','O',2409,1,0,'2025-11-01','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-01 18:25:04','reception','2025-11-01 18:25:04',0),(0,0,'2526','H','O',2410,1,0,'2025-11-01','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-01 18:41:02','manshi','2025-11-01 18:41:02',0),(0,0,'2526','H','O',2411,1,0,'2025-11-01','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','manshi','2025-11-01 19:16:08','manshi','2025-11-01 19:16:08',0),(0,0,'2526','H','O',2412,1,0,'2025-11-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-01 19:19:44','manshi','2025-11-01 19:19:44',0),(0,0,'2526','H','O',2413,1,0,'2025-11-01','00:00:00','OPWD0007',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-01 19:47:39','manshi','2025-11-01 19:47:39',0),(0,0,'2526','H','O',2414,1,0,'2025-11-01','00:00:00','XRY0151',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-01 20:10:07','manshi','2025-11-01 20:10:07',0),(0,0,'2526','H','O',2415,1,0,'2025-11-01','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-01 20:36:36','janvi','2025-11-01 20:36:36',0),(0,0,'2526','H','O',2415,2,0,'2025-11-01','00:00:00','OPWD0007',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-01 20:36:36','janvi','2025-11-01 20:36:36',0),(0,0,'2526','H','O',2416,1,0,'2025-11-01','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-11-01 20:38:40','janvi','2025-11-01 20:38:40',0),(0,0,'2526','H','O',2417,1,0,'2025-11-01','00:00:00','WPRC0050',0,2.00,250,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-01 20:50:24','janvi','2025-11-01 20:50:24',0),(0,0,'2526','H','O',2417,2,0,'2025-11-01','00:00:00','WPRC0037',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-01 20:50:24','janvi','2025-11-01 20:50:24',0),(0,0,'2526','H','O',2418,1,0,'2025-11-02','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-11-02 09:40:41','shweta','2025-11-02 09:40:41',0),(0,0,'2526','H','O',2419,1,0,'2025-11-02','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-11-02 09:41:41','shweta','2025-11-02 09:41:41',0),(0,0,'2526','H','O',2420,1,0,'2025-11-02','00:00:00','MOPR0005',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-11-02 11:33:50','shweta','2025-11-02 11:33:50',0),(0,0,'2526','H','O',2421,1,0,'2025-11-02','00:00:00','WPRC0046',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-11-02 12:45:54','shweta','2025-11-02 12:45:54',0),(0,0,'2526','H','O',2422,1,0,'2025-11-02','00:00:00','SURG0005',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-11-02 12:56:46','shweta','2025-11-02 12:56:46',0),(0,0,'2526','H','O',2422,2,0,'2025-11-02','00:00:00','WPRC0037',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-11-02 12:56:46','shweta','2025-11-02 12:56:46',0),(0,0,'2526','H','O',2422,3,0,'2025-11-02','00:00:00','OPWD0016',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-11-02 12:56:46','shweta','2025-11-02 12:56:46',0),(0,0,'2526','H','O',2423,1,0,'2025-11-03','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-03 09:06:35','priyanshi','2025-11-03 09:06:35',0),(0,0,'2526','H','O',2423,2,0,'2025-11-03','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-03 09:06:35','priyanshi','2025-11-03 09:06:35',0),(0,0,'2526','H','O',2424,1,0,'2025-11-03','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-03 09:10:02','priyanshi','2025-11-03 09:10:02',0),(0,0,'2526','H','O',2424,2,0,'2025-11-03','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-03 09:10:02','priyanshi','2025-11-03 09:10:02',0),(0,0,'2526','H','O',2425,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 09:10:10','reception','2025-11-03 09:10:10',0),(0,0,'2526','H','O',2426,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 09:11:44','reception','2025-11-03 09:11:44',0),(0,0,'2526','H','O',2427,1,0,'2025-11-03','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-11-03 09:15:28','priyanshi','2025-11-03 09:15:28',0),(0,0,'2526','H','O',2427,2,0,'2025-11-03','00:00:00','WPRC0046',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-11-03 09:15:28','priyanshi','2025-11-03 09:15:28',0),(0,0,'2526','H','O',2427,3,0,'2025-11-03','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-11-03 09:15:28','priyanshi','2025-11-03 09:15:28',0),(0,0,'2526','H','O',2428,1,0,'2025-11-03','00:00:00','OPWD0007',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-03 09:17:20','priyanshi','2025-11-03 09:17:20',0),(0,0,'2526','H','O',2429,1,0,'2025-11-03','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-03 09:18:46','priyanshi','2025-11-03 09:18:46',0),(0,0,'2526','H','O',2429,2,0,'2025-11-03','00:00:00','WPRC0042',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-03 09:18:46','priyanshi','2025-11-03 09:18:46',0),(0,0,'2526','H','O',2430,1,0,'2025-11-03','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-03 09:19:36','priyanshi','2025-11-03 09:19:36',0),(0,0,'2526','H','O',2431,1,0,'2025-11-03','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-03 09:24:08','janvi','2025-11-03 09:24:08',0),(0,0,'2526','H','O',2432,1,0,'2025-11-03','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-11-03 09:24:18','priyanshi','2025-11-03 09:24:18',0),(0,0,'2526','H','O',2432,2,0,'2025-11-03','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-11-03 09:24:18','priyanshi','2025-11-03 09:24:18',0),(0,0,'2526','H','O',2432,3,0,'2025-11-03','00:00:00','OPWD0015',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-11-03 09:24:18','priyanshi','2025-11-03 09:24:18',0),(0,0,'2526','H','O',2432,4,0,'2025-11-03','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-11-03 09:24:18','priyanshi','2025-11-03 09:24:18',0),(0,0,'2526','H','O',2433,1,0,'2025-11-03','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-03 09:24:55','reception','2025-11-03 09:24:55',0),(0,0,'2526','H','O',2433,2,0,'2025-11-03','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-03 09:24:55','reception','2025-11-03 09:24:55',0),(0,0,'2526','H','O',2434,1,0,'2025-11-03','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-03 09:27:09','priyanshi','2025-11-03 09:27:09',0),(0,0,'2526','H','O',2434,2,0,'2025-11-03','00:00:00','WPRC0042',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-03 09:27:09','priyanshi','2025-11-03 09:27:09',0),(0,0,'2526','H','O',2435,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-03 09:52:37','janvi','2025-11-03 09:52:37',0),(0,0,'2526','H','O',2436,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 09:53:04','reception','2025-11-03 09:53:04',0),(0,0,'2526','H','O',2437,1,0,'2025-11-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 10:00:50','reception','2025-11-03 10:00:50',0),(0,0,'2526','H','O',2438,1,0,'2025-11-03','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-03 10:12:32','manshi','2025-11-03 10:12:32',0),(0,0,'2526','H','O',2439,1,0,'2025-11-03','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-03 10:12:50','janvi','2025-11-03 10:12:50',0),(0,0,'2526','H','O',2440,1,0,'2025-11-03','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-03 10:16:31','drashti','2025-11-03 10:16:31',0),(0,0,'2526','H','O',2441,1,0,'2025-11-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 10:21:20','reception','2025-11-03 10:21:20',0),(0,0,'2526','H','O',2442,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-03 10:36:59','janvi','2025-11-03 10:48:27',0),(0,0,'2526','H','O',2443,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 10:39:01','reception','2025-11-03 10:39:01',0),(0,0,'2526','H','O',2444,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 10:44:54','reception','2025-11-03 10:44:54',0),(0,0,'2526','H','O',2445,1,0,'2025-11-03','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-03 10:48:27','janvi','2025-11-03 10:48:27',0),(0,0,'2526','H','O',2446,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 10:48:47','reception','2025-11-03 10:48:47',0),(0,0,'2526','H','O',2447,1,0,'2025-11-03','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-03 10:49:16','drashti','2025-11-03 11:12:58',0),(0,0,'2526','H','O',2448,1,0,'2025-11-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 10:51:22','reception','2025-11-03 10:51:22',0),(0,0,'2526','H','O',2449,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 10:56:45','reception','2025-11-03 10:56:45',0),(0,0,'2526','H','O',2450,1,0,'2025-11-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 10:58:23','reception','2025-11-03 12:18:28',0),(0,0,'2526','H','O',2451,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 10:59:48','reception','2025-11-03 10:59:48',0),(0,0,'2526','H','O',2452,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-03 11:01:17','drashti','2025-11-03 11:01:17',0),(0,0,'2526','H','O',2453,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 11:01:43','reception','2025-11-03 11:01:43',0),(0,0,'2526','H','O',2454,1,0,'2025-11-03','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 11:03:30','reception','2025-11-03 11:03:30',0),(0,0,'2526','H','O',2455,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-11-03 11:06:15','shweta','2025-11-03 11:06:15',0),(0,0,'2526','H','O',2456,1,0,'2025-11-03','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-03 11:06:40','drashti','2025-11-03 11:06:40',0),(0,0,'2526','H','O',2457,1,0,'2025-11-03','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-11-03 11:08:57','shweta','2025-11-03 11:08:57',0),(0,0,'2526','H','O',2458,1,0,'2025-11-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-03 11:09:21','drashti','2025-11-03 11:09:21',0),(0,0,'2526','H','O',2459,1,0,'2025-11-03','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-03 11:12:58','drashti','2025-11-03 11:12:58',0),(0,0,'2526','H','O',2460,1,0,'2025-11-03','00:00:00','CASE',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-03 11:15:34','drashti','2025-11-03 11:15:34',0),(0,0,'2526','H','O',2461,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-11-03 11:16:01','shweta','2025-11-03 11:16:01',0),(0,0,'2526','H','O',2462,1,0,'2025-11-03','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 11:16:03','reception','2025-11-03 11:16:03',0),(0,0,'2526','H','O',2463,1,0,'2025-11-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-03 11:16:38','drashti','2025-11-03 11:16:38',0),(0,0,'2526','H','O',2463,2,0,'2025-11-03','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-03 11:16:38','drashti','2025-11-03 11:16:38',0),(0,0,'2526','H','O',2464,1,0,'2025-11-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 11:18:15','reception','2025-11-03 11:18:15',0),(0,0,'2526','H','O',2465,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 11:21:29','reception','2025-11-03 11:21:29',0),(0,0,'2526','H','O',2466,1,0,'2025-11-03','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-11-03 11:23:49','shweta','2025-11-03 11:23:49',0),(0,0,'2526','H','O',2467,1,0,'2025-11-03','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 11:24:39','reception','2025-11-03 11:24:39',0),(0,0,'2526','H','O',2467,2,0,'2025-11-03','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 11:24:39','reception','2025-11-03 11:24:39',0),(0,0,'2526','H','O',2467,3,0,'2025-11-03','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 11:24:39','reception','2025-11-03 11:24:39',0),(0,0,'2526','H','O',2468,1,0,'2025-11-03','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-11-03 11:27:16','shweta','2025-11-03 11:27:16',0),(0,0,'2526','H','O',2469,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 11:30:27','reception','2025-11-03 11:30:27',0),(0,0,'2526','H','O',2470,1,0,'2025-11-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-03 11:35:31','drashti','2025-11-03 11:35:31',0),(0,0,'2526','H','O',2471,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 11:36:28','reception','2025-11-03 11:36:28',0),(0,0,'2526','H','O',2472,1,0,'2025-11-03','00:00:00','PLAS0017',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-03 11:47:14','drashti','2025-11-03 11:47:14',0),(0,0,'2526','H','O',2473,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 11:54:10','reception','2025-11-03 11:54:10',0),(0,0,'2526','H','O',2474,1,0,'2025-11-03','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 11:56:01','reception','2025-11-03 11:56:01',0),(0,0,'2526','H','O',2474,2,0,'2025-11-03','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 11:56:01','reception','2025-11-03 11:56:01',0),(0,0,'2526','H','O',2474,3,0,'2025-11-03','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 11:56:01','reception','2025-11-03 11:56:01',0),(0,0,'2526','H','O',2475,1,0,'2025-11-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 11:59:02','reception','2025-11-03 12:43:54',0),(0,0,'2526','H','O',2476,1,0,'2025-11-03','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 12:03:00','reception','2025-11-03 12:03:00',0),(0,0,'2526','H','O',2476,2,0,'2025-11-03','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 12:03:00','reception','2025-11-03 12:03:00',0),(0,0,'2526','H','O',2476,3,0,'2025-11-03','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 12:03:00','reception','2025-11-03 12:03:00',0),(0,0,'2526','H','O',2477,1,0,'2025-11-03','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-03 12:04:44','drashti','2025-11-03 12:22:14',0),(0,0,'2526','H','O',2478,1,0,'2025-11-03','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-03 12:05:58','manshi','2025-11-03 12:05:58',0),(0,0,'2526','H','O',2479,1,0,'2025-11-03','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 12:06:23','reception','2025-11-03 12:06:23',0),(0,0,'2526','H','O',2480,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 12:08:10','reception','2025-11-03 12:08:10',0),(0,0,'2526','H','O',2481,1,0,'2025-11-03','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-03 12:09:49','manshi','2025-11-03 12:09:49',0),(0,0,'2526','H','O',2481,2,0,'2025-11-03','00:00:00','XRY0428',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-03 12:09:49','manshi','2025-11-03 12:09:49',0),(0,0,'2526','H','O',2482,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 12:14:11','reception','2025-11-03 12:14:11',0),(0,0,'2526','H','O',2483,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 12:17:26','reception','2025-11-03 12:17:26',0),(0,0,'2526','H','O',2484,1,0,'2025-11-03','00:00:00','CASE',0,-1.00,900,-900,'A',0,0,-900.00,0.00,0.00,-900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 12:18:28','reception','2025-11-03 12:18:28',0),(0,0,'2526','H','O',2485,1,0,'2025-11-03','00:00:00','XRY0151',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-03 12:18:42','manshi','2025-11-03 12:18:42',0),(0,0,'2526','H','O',2486,1,0,'2025-11-03','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-03 12:22:14','drashti','2025-11-03 12:22:14',0),(0,0,'2526','H','O',2487,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-03 12:23:17','manshi','2025-11-03 12:23:17',0),(0,0,'2526','H','O',2488,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-11-03 12:28:39','shweta','2025-11-03 12:28:39',0),(0,0,'2526','H','O',2489,1,0,'2025-11-03','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-11-03 12:30:00','shweta','2025-11-03 12:30:00',0),(0,0,'2526','H','O',2490,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 12:30:07','reception','2025-11-03 12:30:07',0),(0,0,'2526','H','O',2491,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-03 12:34:30','manshi','2025-11-03 12:34:30',0),(0,0,'2526','H','O',2492,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 12:34:58','reception','2025-11-03 12:34:58',0),(0,0,'2526','H','O',2493,1,0,'2025-11-03','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 12:37:26','reception','2025-11-03 12:37:26',0),(0,0,'2526','H','O',2494,1,0,'2025-11-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-11-03 12:38:44','shweta','2025-11-03 12:38:44',0),(0,0,'2526','H','O',2495,1,0,'2025-11-03','00:00:00','CASE',0,-1.00,900,-900,'A',0,0,-900.00,0.00,0.00,-900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 12:43:54','reception','2025-11-03 12:43:54',0),(0,0,'2526','H','O',2496,1,0,'2025-11-03','00:00:00','CASE',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 12:44:48','reception','2025-11-03 12:44:48',0),(0,0,'2526','H','O',2497,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 12:46:21','reception','2025-11-03 12:46:21',0),(0,0,'2526','H','O',2498,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 12:58:48','reception','2025-11-03 12:58:48',0),(0,0,'2526','H','O',2499,1,0,'2025-11-03','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 13:00:59','reception','2025-11-03 13:00:59',0),(0,0,'2526','H','O',2499,2,0,'2025-11-03','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 13:00:59','reception','2025-11-03 13:00:59',0),(0,0,'2526','H','O',2499,3,0,'2025-11-03','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 13:00:59','reception','2025-11-03 13:00:59',0),(0,0,'2526','H','O',2500,1,0,'2025-11-03','00:00:00','XRY0100',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-03 13:01:36','manshi','2025-11-03 13:01:36',0),(0,0,'2526','H','O',2501,1,0,'2025-11-03','00:00:00','WPRC0046',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-03 13:08:56','drashti','2025-11-03 13:08:56',0),(0,0,'2526','H','O',2502,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-03 13:29:30','manshi','2025-11-03 13:29:30',0),(0,0,'2526','H','O',2503,1,0,'2025-11-03','00:00:00','XRY0449',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-03 13:33:18','manshi','2025-11-03 13:33:18',0),(0,0,'2526','H','O',2504,1,0,'2025-11-03','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-11-03 14:05:46','shweta','2025-11-03 14:05:46',0),(0,0,'2526','H','O',2505,1,0,'2025-11-03','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 14:18:47','reception','2025-11-03 14:18:47',0),(0,0,'2526','H','O',2505,2,0,'2025-11-03','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 14:18:47','reception','2025-11-03 14:18:47',0),(0,0,'2526','H','O',2506,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-03 14:29:02','priyanshi','2025-11-03 14:29:02',0),(0,0,'2526','H','O',2507,1,0,'2025-11-03','00:00:00','WPRC0046',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-03 15:01:22','priyanshi','2025-11-03 15:01:22',0),(0,0,'2526','H','O',2508,1,0,'2025-11-03','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-03 15:10:08','priyanshi','2025-11-03 15:10:08',0),(0,0,'2526','H','O',2508,2,0,'2025-11-03','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-03 15:10:08','priyanshi','2025-11-03 15:10:08',0),(0,0,'2526','H','O',2509,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 16:15:40','reception','2025-11-03 16:15:40',0),(0,0,'2526','H','O',2510,1,0,'2025-11-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 16:23:33','reception','2025-11-03 16:23:33',0),(0,0,'2526','H','O',2511,1,0,'2025-11-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 16:27:35','reception','2025-11-03 16:27:35',0),(0,0,'2526','H','O',2512,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 16:46:31','reception','2025-11-03 16:46:31',0),(0,0,'2526','H','O',2513,1,0,'2025-11-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-03 17:04:10','drashti','2025-11-03 17:04:10',0),(0,0,'2526','H','O',2514,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 17:08:08','reception','2025-11-03 17:08:08',0),(0,0,'2526','H','O',2515,1,0,'2025-11-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-03 17:09:26','drashti','2025-11-03 17:09:26',0),(0,0,'2526','H','O',2516,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 17:12:34','reception','2025-11-03 17:12:34',0),(0,0,'2526','H','O',2517,1,0,'2025-11-03','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 17:15:08','reception','2025-11-03 17:46:22',0),(0,0,'2526','H','O',2518,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 17:18:44','reception','2025-11-03 17:18:44',0),(0,0,'2526','H','O',2519,1,0,'2025-11-03','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 17:21:44','reception','2025-11-03 17:21:44',0),(0,0,'2526','H','O',2519,2,0,'2025-11-03','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 17:21:44','reception','2025-11-03 17:21:44',0),(0,0,'2526','H','O',2520,1,0,'2025-11-03','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-03 17:24:41','janvi','2025-11-03 17:24:41',0),(0,0,'2526','H','O',2521,1,0,'2025-11-03','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 17:26:57','reception','2025-11-03 17:26:57',0),(0,0,'2526','H','O',2521,2,0,'2025-11-03','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 17:26:57','reception','2025-11-03 17:26:57',0),(0,0,'2526','H','O',2522,1,0,'2025-11-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 17:45:45','reception','2025-11-03 17:45:45',0),(0,0,'2526','H','O',2523,1,0,'2025-11-03','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 17:46:22','reception','2025-11-03 17:46:22',0),(0,0,'2526','H','O',2524,1,0,'2025-11-03','00:00:00','CASE',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 17:48:26','reception','2025-11-03 17:48:26',0),(0,0,'2526','H','O',2525,1,0,'2025-11-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 17:52:25','reception','2025-11-03 17:52:25',0),(0,0,'2526','H','O',2526,1,0,'2025-11-03','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-03 17:56:23','janvi','2025-11-03 17:56:23',0),(0,0,'2526','H','O',2527,1,0,'2025-11-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-03 18:02:46','drashti','2025-11-03 18:02:46',0),(0,0,'2526','H','O',2528,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 18:03:19','reception','2025-11-03 18:03:19',0),(0,0,'2526','H','O',2529,1,0,'2025-11-03','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-03 18:04:41','drashti','2025-11-03 18:04:41',0),(0,0,'2526','H','O',2530,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 18:06:01','reception','2025-11-03 18:06:01',0),(0,0,'2526','H','O',2531,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 18:08:37','reception','2025-11-03 18:08:37',0),(0,0,'2526','H','O',2532,1,0,'2025-11-03','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-03 18:09:57','manshi','2025-11-03 18:09:57',0),(0,0,'2526','H','O',2533,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 18:10:15','reception','2025-11-03 18:10:15',0),(0,0,'2526','H','O',2534,1,0,'2025-11-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-03 18:12:24','drashti','2025-11-03 18:12:24',0),(0,0,'2526','H','O',2535,1,0,'2025-11-03','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 18:12:32','reception','2025-11-03 18:12:32',0),(0,0,'2526','H','O',2536,1,0,'2025-11-03','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-03 18:14:04','drashti','2025-11-03 18:14:04',0),(0,0,'2526','H','O',2537,1,0,'2025-11-03','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-03 18:14:42','drashti','2025-11-03 18:14:42',0),(0,0,'2526','H','O',2538,1,0,'2025-11-03','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 18:15:28','reception','2025-11-03 18:15:28',0),(0,0,'2526','H','O',2538,2,0,'2025-11-03','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 18:15:28','reception','2025-11-03 18:15:28',0),(0,0,'2526','H','O',2539,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 18:19:17','reception','2025-11-03 18:19:17',0),(0,0,'2526','H','O',2540,1,0,'2025-11-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 18:21:15','reception','2025-11-03 18:21:15',0),(0,0,'2526','H','O',2541,1,0,'2025-11-03','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-11-03 18:22:21','shweta','2025-11-03 18:22:21',0),(0,0,'2526','H','O',2542,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-03 18:22:38','manshi','2025-11-03 18:51:54',0),(0,0,'2526','H','O',2543,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 18:23:52','reception','2025-11-03 18:23:52',0),(0,0,'2526','H','O',2544,1,0,'2025-11-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-03 18:25:23','janvi','2025-11-03 18:56:41',0),(0,0,'2526','H','O',2545,1,0,'2025-11-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-03 18:28:38','janvi','2025-11-03 18:28:38',0),(0,0,'2526','H','O',2546,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 18:31:30','reception','2025-11-03 18:31:30',0),(0,0,'2526','H','O',2547,1,0,'2025-11-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-03 18:32:20','janvi','2025-11-03 18:32:20',0),(0,0,'2526','H','O',2548,1,0,'2025-11-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-03 18:32:30','janvi','2025-11-03 18:32:30',0),(0,0,'2526','H','O',2549,1,0,'2025-11-03','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-03 18:33:56','janvi','2025-11-03 18:33:56',0),(0,0,'2526','H','O',2550,1,0,'2025-11-03','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-03 18:42:29','janvi','2025-11-03 18:42:29',0),(0,0,'2526','H','O',2551,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 18:46:29','reception','2025-11-03 18:46:29',0),(0,0,'2526','H','O',2552,1,0,'2025-11-03','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 18:49:24','reception','2025-11-03 18:49:24',0),(0,0,'2526','H','O',2552,2,0,'2025-11-03','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 18:49:24','reception','2025-11-03 18:49:24',0),(0,0,'2526','H','O',2552,3,0,'2025-11-03','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 18:49:24','reception','2025-11-03 18:49:24',0),(0,0,'2526','H','O',2553,1,0,'2025-11-03','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-03 18:51:54','manshi','2025-11-03 18:51:54',0),(0,0,'2526','H','O',2554,1,0,'2025-11-03','00:00:00','OTCG0033',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-03 18:53:25','janvi','2025-11-03 18:53:25',0),(0,0,'2526','H','O',2555,1,0,'2025-11-03','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-03 18:56:41','janvi','2025-11-03 18:56:41',0),(0,0,'2526','H','O',2556,1,0,'2025-11-03','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-03 18:59:54','janvi','2025-11-03 18:59:54',0),(0,0,'2526','H','O',2557,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-03 19:02:24','janvi','2025-11-03 19:02:24',0),(0,0,'2526','H','O',2558,1,0,'2025-11-03','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-03 19:03:37','janvi','2025-11-03 19:03:37',0),(0,0,'2526','H','O',2559,1,0,'2025-11-03','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-03 19:09:31','drashti','2025-11-03 19:09:31',0),(0,0,'2526','H','O',2560,1,0,'2025-11-03','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-03 19:19:15','janvi','2025-11-03 19:19:15',0),(0,0,'2526','H','O',2561,1,0,'2025-11-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 19:20:28','reception','2025-11-03 19:20:28',0),(0,0,'2526','H','O',2562,1,0,'2025-11-03','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 19:21:28','reception','2025-11-03 19:21:28',0),(0,0,'2526','H','O',2562,2,0,'2025-11-03','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-03 19:21:28','reception','2025-11-03 19:21:28',0),(0,0,'2526','H','O',2563,1,0,'2025-11-03','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-03 19:24:02','janvi','2025-11-03 19:24:02',0),(0,0,'2526','H','O',2564,1,0,'2025-11-03','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-03 19:27:43','janvi','2025-11-03 19:27:43',0),(0,0,'2526','H','O',2565,1,0,'2025-11-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-03 19:30:23','janvi','2025-11-03 19:30:23',0),(0,0,'2526','H','O',2565,2,0,'2025-11-03','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-03 19:30:23','janvi','2025-11-03 19:30:23',0),(0,0,'2526','H','O',2566,1,0,'2025-11-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-03 19:41:20','manshi','2025-11-03 19:41:20',0),(0,0,'2526','H','O',2567,1,0,'2025-11-03','00:00:00','XRY0052',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-03 19:53:39','manshi','2025-11-03 19:53:39',0),(0,0,'2526','H','O',2568,1,0,'2025-11-03','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 19:53:41','reception','2025-11-03 20:15:15',0),(0,0,'2526','H','O',2569,1,0,'2025-11-03','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-03 19:53:53','manshi','2025-11-03 19:53:53',0),(0,0,'2526','H','O',2570,1,0,'2025-11-03','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 20:15:15','reception','2025-11-03 20:15:15',0),(0,0,'2526','H','O',2571,1,0,'2025-11-03','00:00:00','CASE',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-03 20:18:42','reception','2025-11-03 20:18:42',0),(0,0,'2526','H','O',2572,1,0,'2025-11-04','00:00:00','WPRC0037',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-04 09:09:16','priyanshi','2025-11-04 09:29:35',0),(0,0,'2526','H','O',2573,1,0,'2025-11-04','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-04 09:12:56','reception','2025-11-04 09:12:56',0),(0,0,'2526','H','O',2573,2,0,'2025-11-04','00:00:00','OPWD0010',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-04 09:12:56','reception','2025-11-04 09:12:56',0),(0,0,'2526','H','O',2574,1,0,'2025-11-04','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-04 09:26:29','priyanshi','2025-11-04 09:26:29',0),(0,0,'2526','H','O',2575,1,0,'2025-11-04','00:00:00','WPRC0037',0,-1.00,200,-200,'P',0,0,-200.00,0.00,0.00,-200.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-04 09:29:35','priyanshi','2025-11-04 09:29:35',0),(0,0,'2526','H','O',2576,1,0,'2025-11-04','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-04 09:30:32','priyanshi','2025-11-04 09:30:32',0),(0,0,'2526','H','O',2577,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 09:30:35','reception','2025-11-04 09:30:35',0),(0,0,'2526','H','O',2578,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 09:33:28','reception','2025-11-04 09:33:28',0),(0,0,'2526','H','O',2579,1,0,'2025-11-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 10:08:31','reception','2025-11-04 10:08:31',0),(0,0,'2526','H','O',2580,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-04 10:12:48','janvi','2025-11-04 10:12:48',0),(0,0,'2526','H','O',2581,1,0,'2025-11-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-04 10:20:10','janvi','2025-11-04 10:20:10',0),(0,0,'2526','H','O',2582,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-04 10:21:09','reception','2025-11-04 10:21:09',0),(0,0,'2526','H','O',2583,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 10:22:10','reception','2025-11-04 10:22:10',0),(0,0,'2526','H','O',2584,1,0,'2025-11-04','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 10:23:48','reception','2025-11-04 10:23:48',0),(0,0,'2526','H','O',2585,1,0,'2025-11-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 10:25:26','reception','2025-11-04 10:25:26',0),(0,0,'2526','H','O',2586,1,0,'2025-11-04','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 10:27:04','reception','2025-11-04 10:27:04',0),(0,0,'2526','H','O',2587,1,0,'2025-11-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 10:33:51','reception','2025-11-04 10:33:51',0),(0,0,'2526','H','O',2588,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 10:38:35','reception','2025-11-04 10:38:35',0),(0,0,'2526','H','O',2589,1,0,'2025-11-04','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-04 10:57:31','janvi','2025-11-04 10:57:31',0),(0,0,'2526','H','O',2590,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 10:57:49','reception','2025-11-04 10:57:49',0),(0,0,'2526','H','O',2591,1,0,'2025-11-04','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-04 10:58:30','drashti','2025-11-04 10:58:30',0),(0,0,'2526','H','O',2592,1,0,'2025-11-04','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 11:00:39','reception','2025-11-04 11:00:39',0),(0,0,'2526','H','O',2592,2,0,'2025-11-04','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 11:00:39','reception','2025-11-04 11:00:39',0),(0,0,'2526','H','O',2592,3,0,'2025-11-04','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 11:00:39','reception','2025-11-04 11:00:39',0),(0,0,'2526','H','O',2592,4,0,'2025-11-04','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 11:00:39','reception','2025-11-04 11:00:39',0),(0,0,'2526','H','O',2593,1,0,'2025-11-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 11:02:21','reception','2025-11-04 11:02:21',0),(0,0,'2526','H','O',2594,1,0,'2025-11-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-04 11:04:16','drashti','2025-11-04 11:04:16',0),(0,0,'2526','H','O',2595,1,0,'2025-11-04','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-04 11:07:41','drashti','2025-11-04 11:07:41',0),(0,0,'2526','H','O',2596,1,0,'2025-11-04','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 11:11:28','reception','2025-11-04 11:11:28',0),(0,0,'2526','H','O',2596,2,0,'2025-11-04','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 11:11:28','reception','2025-11-04 11:11:28',0),(0,0,'2526','H','O',2596,3,0,'2025-11-04','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 11:11:28','reception','2025-11-04 11:11:28',0),(0,0,'2526','H','O',2597,1,0,'2025-11-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-11-04 11:13:45','janvi','2025-11-04 11:13:45',0),(0,0,'2526','H','O',2598,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 11:15:32','reception','2025-11-04 11:15:32',0),(0,0,'2526','H','O',2599,1,0,'2025-11-04','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-04 11:17:28','drashti','2025-11-04 11:17:28',0),(0,0,'2526','H','O',2600,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 11:17:45','reception','2025-11-04 11:17:45',0),(0,0,'2526','H','O',2601,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-04 11:22:39','manshi','2025-11-04 11:22:39',0),(0,0,'2526','H','O',2602,1,0,'2025-11-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 11:22:44','reception','2025-11-04 11:22:44',0),(0,0,'2526','H','O',2603,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 11:24:40','reception','2025-11-04 11:24:40',0),(0,0,'2526','H','O',2604,1,0,'2025-11-04','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-04 11:29:04','drashti','2025-11-04 11:29:04',0),(0,0,'2526','H','O',2605,1,0,'2025-11-04','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 11:31:32','reception','2025-11-04 11:31:32',0),(0,0,'2526','H','O',2605,2,0,'2025-11-04','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 11:31:32','reception','2025-11-04 11:31:32',0),(0,0,'2526','H','O',2605,3,0,'2025-11-04','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 11:31:32','reception','2025-11-04 11:31:32',0),(0,0,'2526','H','O',2606,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-04 11:34:20','manshi','2025-11-04 11:34:20',0),(0,0,'2526','H','O',2607,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-04 11:39:28','manshi','2025-11-04 11:39:28',0),(0,0,'2526','H','O',2608,1,0,'2025-11-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 11:42:28','reception','2025-11-04 11:42:28',0),(0,0,'2526','H','O',2609,1,0,'2025-11-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 11:44:59','reception','2025-11-04 11:44:59',0),(0,0,'2526','H','O',2610,1,0,'2025-11-04','00:00:00','XRY0390',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-04 11:51:14','manshi','2025-11-04 11:51:14',0),(0,0,'2526','H','O',2611,1,0,'2025-11-04','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 11:51:16','reception','2025-11-04 11:51:16',0),(0,0,'2526','H','O',2611,2,0,'2025-11-04','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 11:51:16','reception','2025-11-04 11:51:16',0),(0,0,'2526','H','O',2611,3,0,'2025-11-04','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 11:51:16','reception','2025-11-04 11:51:16',0),(0,0,'2526','H','O',2612,1,0,'2025-11-04','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 11:55:58','reception','2025-11-04 11:55:58',0),(0,0,'2526','H','O',2613,1,0,'2025-11-04','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 11:59:08','reception','2025-11-04 11:59:08',0),(0,0,'2526','H','O',2613,2,0,'2025-11-04','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 11:59:08','reception','2025-11-04 11:59:08',0),(0,0,'2526','H','O',2614,1,0,'2025-11-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-04 12:07:11','janvi','2025-11-04 12:07:11',0),(0,0,'2526','H','O',2615,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 12:14:55','reception','2025-11-04 12:14:55',0),(0,0,'2526','H','O',2616,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 12:23:15','reception','2025-11-04 12:23:15',0),(0,0,'2526','H','O',2617,1,0,'2025-11-04','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 12:26:10','reception','2025-11-04 12:26:10',0),(0,0,'2526','H','O',2617,2,0,'2025-11-04','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 12:26:10','reception','2025-11-04 12:26:10',0),(0,0,'2526','H','O',2618,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-04 12:27:08','janvi','2025-11-04 12:27:08',0),(0,0,'2526','H','O',2619,1,0,'2025-11-04','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-04 12:33:41','drashti','2025-11-04 12:33:41',0),(0,0,'2526','H','O',2620,1,0,'2025-11-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 12:34:18','reception','2025-11-04 12:34:18',0),(0,0,'2526','H','O',2621,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 12:36:53','reception','2025-11-04 12:36:53',0),(0,0,'2526','H','O',2622,1,0,'2025-11-04','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 13:06:31','reception','2025-11-04 13:06:31',0),(0,0,'2526','H','O',2622,2,0,'2025-11-04','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 13:06:31','reception','2025-11-04 13:06:31',0),(0,0,'2526','H','O',2622,3,0,'2025-11-04','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 13:06:31','reception','2025-11-04 13:06:31',0),(0,0,'2526','H','O',2623,1,0,'2025-11-04','00:00:00','OETR0003',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 13:42:31','reception','2025-11-04 13:42:31',0),(0,0,'2526','H','O',2624,1,0,'2025-11-04','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-04 16:43:22','janvi','2025-11-04 16:43:22',0),(0,0,'2526','H','O',2625,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 16:50:46','reception','2025-11-04 16:50:46',0),(0,0,'2526','H','O',2626,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 16:51:57','reception','2025-11-04 16:51:57',0),(0,0,'2526','H','O',2627,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 16:56:22','reception','2025-11-04 16:56:22',0),(0,0,'2526','H','O',2628,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 17:04:45','reception','2025-11-04 17:48:19',0),(0,0,'2526','H','O',2629,1,0,'2025-11-04','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 17:09:01','reception','2025-11-04 17:09:01',0),(0,0,'2526','H','O',2629,2,0,'2025-11-04','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 17:09:01','reception','2025-11-04 17:09:01',0),(0,0,'2526','H','O',2629,3,0,'2025-11-04','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 17:09:01','reception','2025-11-04 17:09:01',0),(0,0,'2526','H','O',2630,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 17:12:09','reception','2025-11-04 17:12:09',0),(0,0,'2526','H','O',2631,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 17:21:04','reception','2025-11-04 17:21:04',0),(0,0,'2526','H','O',2632,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 17:36:11','reception','2025-11-04 17:36:11',0),(0,0,'2526','H','O',2633,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 17:38:34','reception','2025-11-04 17:38:34',0),(0,0,'2526','H','O',2634,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-04 17:42:09','janvi','2025-11-04 17:42:09',0),(0,0,'2526','H','O',2635,1,0,'2025-11-04','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-04 17:42:43','drashti','2025-11-04 17:42:43',0),(0,0,'2526','H','O',2636,1,0,'2025-11-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 17:43:40','reception','2025-11-04 17:43:40',0),(0,0,'2526','H','O',2637,1,0,'2025-11-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 17:44:36','reception','2025-11-04 17:44:36',0),(0,0,'2526','H','O',2638,1,0,'2025-11-04','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 17:48:19','reception','2025-11-04 17:48:19',0),(0,0,'2526','H','O',2639,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 17:49:14','reception','2025-11-04 17:49:14',0),(0,0,'2526','H','O',2640,1,0,'2025-11-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-04 17:56:25','janvi','2025-11-04 17:56:25',0),(0,0,'2526','H','O',2641,1,0,'2025-11-04','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-04 17:57:17','reception','2025-11-04 17:57:17',0),(0,0,'2526','H','O',2642,1,0,'2025-11-04','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-04 18:05:12','drashti','2025-11-04 18:05:12',0),(0,0,'2526','H','O',2643,1,0,'2025-11-04','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-04 18:07:43','janvi','2025-11-04 18:07:43',0),(0,0,'2526','H','O',2644,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 18:09:20','reception','2025-11-04 18:09:20',0),(0,0,'2526','H','O',2645,1,0,'2025-11-04','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-04 18:15:31','drashti','2025-11-04 18:15:31',0),(0,0,'2526','H','O',2646,1,0,'2025-11-04','00:00:00','NEU10015',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 18:17:15','reception','2025-11-04 18:17:15',0),(0,0,'2526','H','O',2647,1,0,'2025-11-04','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-04 18:19:24','manshi','2025-11-04 18:19:24',0),(0,0,'2526','H','O',2648,1,0,'2025-11-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 18:19:35','reception','2025-11-04 18:19:35',0),(0,0,'2526','H','O',2649,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 18:23:57','reception','2025-11-04 18:23:57',0),(0,0,'2526','H','O',2650,1,0,'2025-11-04','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-04 18:27:32','janvi','2025-11-04 18:27:32',0),(0,0,'2526','H','O',2651,1,0,'2025-11-04','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-04 18:29:24','drashti','2025-11-04 18:29:24',0),(0,0,'2526','H','O',2652,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 18:31:03','reception','2025-11-04 18:31:03',0),(0,0,'2526','H','O',2653,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 18:31:41','reception','2025-11-04 18:31:41',0),(0,0,'2526','H','O',2654,1,0,'2025-11-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-04 18:34:50','janvi','2025-11-04 18:34:50',0),(0,0,'2526','H','O',2655,1,0,'2025-11-04','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 18:38:04','reception','2025-11-04 18:38:04',0),(0,0,'2526','H','O',2656,1,0,'2025-11-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 18:44:03','reception','2025-11-04 18:44:03',0),(0,0,'2526','H','O',2657,1,0,'2025-11-04','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-04 18:47:42','manshi','2025-11-04 18:47:42',0),(0,0,'2526','H','O',2658,1,0,'2025-11-04','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 18:48:23','reception','2025-11-04 18:48:23',0),(0,0,'2526','H','O',2658,2,0,'2025-11-04','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 18:48:23','reception','2025-11-04 18:48:23',0),(0,0,'2526','H','O',2658,3,0,'2025-11-04','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 18:48:23','reception','2025-11-04 18:48:23',0),(0,0,'2526','H','O',2659,1,0,'2025-11-04','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-04 18:48:38','janvi','2025-11-04 18:48:38',0),(0,0,'2526','H','O',2660,1,0,'2025-11-04','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-04 18:49:54','janvi','2025-11-04 18:49:54',0),(0,0,'2526','H','O',2661,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 18:51:15','reception','2025-11-04 18:51:15',0),(0,0,'2526','H','O',2662,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-04 18:52:44','manshi','2025-11-04 18:52:44',0),(0,0,'2526','H','O',2663,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-04 18:58:05','drashti','2025-11-04 18:58:05',0),(0,0,'2526','H','O',2664,1,0,'2025-11-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-04 18:58:21','reception','2025-11-04 18:58:21',0),(0,0,'2526','H','O',2665,1,0,'2025-11-04','00:00:00','XRY0189',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-04 19:01:07','manshi','2025-11-04 19:01:07',0),(0,0,'2526','H','O',2666,1,0,'2025-11-04','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-04 19:04:08','janvi','2025-11-04 19:04:08',0),(0,0,'2526','H','O',2667,1,0,'2025-11-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-04 19:29:50','drashti','2025-11-04 19:29:50',0),(0,0,'2526','H','O',2668,1,0,'2025-11-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-04 19:38:42','drashti','2025-11-04 19:38:42',0),(0,0,'2526','H','O',2669,1,0,'2025-11-04','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 19:41:37','reception','2025-11-04 19:41:37',0),(0,0,'2526','H','O',2669,2,0,'2025-11-04','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 19:41:37','reception','2025-11-04 19:41:37',0),(0,0,'2526','H','O',2669,3,0,'2025-11-04','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 19:41:37','reception','2025-11-04 19:41:37',0),(0,0,'2526','H','O',2670,1,0,'2025-11-04','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 19:57:49','reception','2025-11-04 19:57:49',0),(0,0,'2526','H','O',2670,2,0,'2025-11-04','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 19:57:49','reception','2025-11-04 19:57:49',0),(0,0,'2526','H','O',2670,3,0,'2025-11-04','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-04 19:57:49','reception','2025-11-04 19:57:49',0),(0,0,'2526','H','O',2671,1,0,'2025-11-05','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-05 09:00:08','reception','2025-11-05 09:00:08',0),(0,0,'2526','H','O',2672,1,0,'2025-11-05','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-05 09:01:47','reception','2025-11-05 09:01:47',0),(0,0,'2526','H','O',2673,1,0,'2025-11-05','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-05 09:08:32','reception','2025-11-05 09:08:32',0),(0,0,'2526','H','O',2673,2,0,'2025-11-05','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-05 09:08:32','reception','2025-11-05 09:08:32',0),(0,0,'2526','H','O',2674,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 09:50:56','reception','2025-11-05 09:50:56',0),(0,0,'2526','H','O',2675,1,0,'2025-11-05','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-05 09:51:10','drashti','2025-11-05 09:51:10',0),(0,0,'2526','H','O',2676,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 09:55:14','reception','2025-11-05 09:55:14',0),(0,0,'2526','H','O',2677,1,0,'2025-11-05','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 09:56:34','reception','2025-11-05 09:56:34',0),(0,0,'2526','H','O',2678,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 10:03:35','reception','2025-11-05 10:03:35',0),(0,0,'2526','H','O',2679,1,0,'2025-11-05','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 10:09:10','reception','2025-11-05 10:09:10',0),(0,0,'2526','H','O',2680,1,0,'2025-11-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-05 10:16:46','drashti','2025-11-05 10:16:46',0),(0,0,'2526','H','O',2681,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 10:18:03','reception','2025-11-05 10:18:03',0),(0,0,'2526','H','O',2682,1,0,'2025-11-05','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-05 10:28:19','janvi','2025-11-05 10:28:19',0),(0,0,'2526','H','O',2683,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 10:34:03','reception','2025-11-05 10:34:03',0),(0,0,'2526','H','O',2684,1,0,'2025-11-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-05 10:38:37','janvi','2025-11-05 10:38:37',0),(0,0,'2526','H','O',2685,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 10:43:26','reception','2025-11-05 10:43:26',0),(0,0,'2526','H','O',2686,1,0,'2025-11-05','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-05 10:44:01','reception','2025-11-05 10:44:01',0),(0,0,'2526','H','O',2687,1,0,'2025-11-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-05 10:44:03','drashti','2025-11-05 10:44:03',0),(0,0,'2526','H','O',2688,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 10:48:44','reception','2025-11-05 10:48:44',0),(0,0,'2526','H','O',2689,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 10:51:02','reception','2025-11-05 10:51:02',0),(0,0,'2526','H','O',2690,1,0,'2025-11-05','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','HO2697','','Y','N','manshi','2025-11-05 10:54:20','manshi','2025-11-05 10:54:20',0),(0,0,'2526','H','O',2691,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 10:56:50','reception','2025-11-05 10:56:50',0),(0,0,'2526','H','O',2692,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 10:58:43','reception','2025-11-05 10:58:43',0),(0,0,'2526','H','O',2693,1,0,'2025-11-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 11:01:48','reception','2025-11-05 11:01:48',0),(0,0,'2526','H','O',2694,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-05 11:04:51','drashti','2025-11-05 11:04:51',0),(0,0,'2526','H','O',2695,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 11:05:12','reception','2025-11-05 13:01:20',0),(0,0,'2526','H','O',2696,1,0,'2025-11-05','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-05 11:11:33','reception','2025-11-05 11:11:33',0),(0,0,'2526','H','O',2696,2,0,'2025-11-05','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-05 11:11:33','reception','2025-11-05 11:11:33',0),(0,0,'2526','H','O',2696,3,0,'2025-11-05','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-05 11:11:33','reception','2025-11-05 11:11:33',0),(0,0,'2526','H','O',2697,1,0,'2025-11-05','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,3,0,'',0,'','HO2690','','Y','N','janvi','2025-11-05 11:13:46','janvi','2025-11-05 11:13:46',0),(0,0,'2526','H','O',2698,1,0,'2025-11-05','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-11-05 11:14:00','janvi','2025-11-05 11:14:00',0),(0,0,'2526','H','O',2699,1,0,'2025-11-05','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 11:14:32','reception','2025-11-05 13:36:23',0),(0,0,'2526','H','O',2700,1,0,'2025-11-05','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 11:17:13','reception','2025-11-05 11:17:13',0),(0,0,'2526','H','O',2701,1,0,'2025-11-05','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 11:18:14','reception','2025-11-05 11:18:14',0),(0,0,'2526','H','O',2702,1,0,'2025-11-05','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-05 11:19:47','janvi','2025-11-05 11:19:47',0),(0,0,'2526','H','O',2702,2,0,'2025-11-05','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-05 11:19:47','janvi','2025-11-05 11:19:47',0),(0,0,'2526','H','O',2703,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 11:21:05','reception','2025-11-05 11:21:05',0),(0,0,'2526','H','O',2704,1,0,'2025-11-05','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-05 11:21:20','manshi','2025-11-05 11:21:20',0),(0,0,'2526','H','O',2705,1,0,'2025-11-05','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-05 11:22:48','reception','2025-11-05 11:22:48',0),(0,0,'2526','H','O',2706,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 11:26:33','reception','2025-11-05 11:26:33',0),(0,0,'2526','H','O',2707,1,0,'2025-11-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-05 11:28:22','janvi','2025-11-05 11:28:22',0),(0,0,'2526','H','O',2708,1,0,'2025-11-05','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-05 11:32:17','manshi','2025-11-05 11:32:17',0),(0,0,'2526','H','O',2709,1,0,'2025-11-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-05 11:33:04','drashti','2025-11-05 11:33:04',0),(0,0,'2526','H','O',2710,1,0,'2025-11-05','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-05 11:34:12','drashti','2025-11-05 11:34:12',0),(0,0,'2526','H','O',2711,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-05 11:36:50','janvi','2025-11-05 11:36:50',0),(0,0,'2526','H','O',2712,1,0,'2025-11-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-05 11:37:03','drashti','2025-11-05 11:37:03',0),(0,0,'2526','H','O',2713,1,0,'2025-11-05','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-05 11:50:54','reception','2025-11-05 11:50:54',0),(0,0,'2526','H','O',2713,2,0,'2025-11-05','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-05 11:50:54','reception','2025-11-05 11:50:54',0),(0,0,'2526','H','O',2713,3,0,'2025-11-05','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-05 11:50:54','reception','2025-11-05 11:50:54',0),(0,0,'2526','H','O',2714,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-05 11:58:30','manshi','2025-11-05 12:11:34',0),(0,0,'2526','H','O',2715,1,0,'2025-11-05','00:00:00','OPWD0007',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-05 11:58:43','janvi','2025-11-05 11:58:43',0),(0,0,'2526','H','O',2716,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-05 11:59:00','janvi','2025-11-05 11:59:00',0),(0,0,'2526','H','O',2717,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 12:00:36','reception','2025-11-05 12:00:36',0),(0,0,'2526','H','O',2718,1,0,'2025-11-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-05 12:00:50','drashti','2025-11-05 12:00:50',0),(0,0,'2526','H','O',2719,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-05 12:00:52','janvi','2025-11-05 12:00:52',0),(0,0,'2526','H','O',2720,1,0,'2025-11-05','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-05 12:01:52','drashti','2025-11-05 12:01:52',0),(0,0,'2526','H','O',2721,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 12:02:27','reception','2025-11-05 12:02:27',0),(0,0,'2526','H','O',2722,1,0,'2025-11-05','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-05 12:02:34','drashti','2025-11-05 12:02:34',0),(0,0,'2526','H','O',2723,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 12:05:36','reception','2025-11-05 12:05:36',0),(0,0,'2526','H','O',2724,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 12:07:22','reception','2025-11-05 12:07:22',0),(0,0,'2526','H','O',2725,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-05 12:07:37','manshi','2025-11-05 12:07:37',0),(0,0,'2526','H','O',2725,2,0,'2025-11-05','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-05 12:07:37','manshi','2025-11-05 12:07:37',0),(0,0,'2526','H','O',2725,3,0,'2025-11-05','00:00:00','XRY0146',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-05 12:07:37','manshi','2025-11-05 12:07:37',0),(0,0,'2526','H','O',2726,1,0,'2025-11-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-05 12:07:39','drashti','2025-11-05 12:07:39',0),(0,0,'2526','H','O',2727,1,0,'2025-11-05','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-05 12:09:26','janvi','2025-11-05 12:09:26',0),(0,0,'2526','H','O',2728,1,0,'2025-11-05','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-05 12:11:34','manshi','2025-11-05 12:11:34',0),(0,0,'2526','H','O',2729,1,0,'2025-11-05','00:00:00','NEU10020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-05 12:14:56','reception','2025-11-05 12:14:56',0),(0,0,'2526','H','O',2729,2,0,'2025-11-05','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-05 12:14:56','reception','2025-11-05 12:14:56',0),(0,0,'2526','H','O',2730,1,0,'2025-11-05','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 12:37:14','reception','2025-11-05 12:37:14',0),(0,0,'2526','H','O',2731,1,0,'2025-11-05','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-05 12:40:50','manshi','2025-11-05 12:40:50',0),(0,0,'2526','H','O',2732,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 12:41:07','reception','2025-11-05 12:41:07',0),(0,0,'2526','H','O',2733,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 12:42:36','reception','2025-11-05 12:42:36',0),(0,0,'2526','H','O',2734,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-05 12:44:24','manshi','2025-11-05 12:44:24',0),(0,0,'2526','H','O',2735,1,0,'2025-11-05','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 13:01:20','reception','2025-11-05 13:01:20',0),(0,0,'2526','H','O',2736,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 13:04:25','reception','2025-11-05 13:04:25',0),(0,0,'2526','H','O',2737,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-05 13:23:12','manshi','2025-11-05 13:23:12',0),(0,0,'2526','H','O',2737,2,0,'2025-11-05','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-05 13:23:12','manshi','2025-11-05 13:23:12',0),(0,0,'2526','H','O',2737,3,0,'2025-11-05','00:00:00','XRY0370',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-05 13:23:12','manshi','2025-11-05 13:23:12',0),(0,0,'2526','H','O',2738,1,0,'2025-11-05','00:00:00','CASE',0,-1.00,900,-900,'A',0,0,-900.00,0.00,0.00,-900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 13:36:23','reception','2025-11-05 13:36:23',0),(0,0,'2526','H','O',2739,1,0,'2025-11-05','00:00:00','CASE',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 13:40:28','reception','2025-11-05 13:40:28',0),(0,0,'2526','H','O',2740,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 13:46:36','reception','2025-11-05 13:46:36',0),(0,0,'2526','H','O',2741,1,0,'2025-11-05','00:00:00','WPRC0046',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-05 13:58:55','manshi','2025-11-05 13:58:55',0),(0,0,'2526','H','O',2742,1,0,'2025-11-05','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-05 14:33:30','priyanshi','2025-11-05 14:33:30',0),(0,0,'2526','H','O',2743,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-05 16:53:56','priyanshi','2025-11-05 16:53:56',0),(0,0,'2526','H','O',2744,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 16:57:48','reception','2025-11-05 16:57:48',0),(0,0,'2526','H','O',2745,1,0,'2025-11-05','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-05 17:01:35','drashti','2025-11-05 17:01:35',0),(0,0,'2526','H','O',2745,2,0,'2025-11-05','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-05 17:01:35','drashti','2025-11-05 17:01:35',0),(0,0,'2526','H','O',2745,3,0,'2025-11-05','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-05 17:01:35','drashti','2025-11-05 17:01:35',0),(0,0,'2526','H','O',2745,4,0,'2025-11-05','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-05 17:01:35','drashti','2025-11-05 17:01:35',0),(0,0,'2526','H','O',2746,1,0,'2025-11-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-05 17:04:47','reception','2025-11-05 18:06:51',0),(0,0,'2526','H','O',2747,1,0,'2025-11-05','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-05 17:11:23','drashti','2025-11-05 17:11:23',0),(0,0,'2526','H','O',2748,1,0,'2025-11-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 17:11:50','reception','2025-11-05 17:28:03',0),(0,0,'2526','H','O',2749,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 17:14:10','reception','2025-11-05 17:14:10',0),(0,0,'2526','H','O',2750,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 17:21:03','reception','2025-11-05 17:21:03',0),(0,0,'2526','H','O',2751,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 17:24:06','reception','2025-11-05 17:24:06',0),(0,0,'2526','H','O',2752,1,0,'2025-11-05','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 17:28:03','reception','2025-11-05 17:28:03',0),(0,0,'2526','H','O',2753,1,0,'2025-11-05','00:00:00','CASE',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 17:29:08','reception','2025-11-05 17:29:08',0),(0,0,'2526','H','O',2754,1,0,'2025-11-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-05 17:30:03','drashti','2025-11-05 17:30:03',0),(0,0,'2526','H','O',2755,1,0,'2025-11-05','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 17:32:24','reception','2025-11-05 17:32:24',0),(0,0,'2526','H','O',2756,1,0,'2025-11-05','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-05 17:33:23','drashti','2025-11-05 17:33:23',0),(0,0,'2526','H','O',2757,1,0,'2025-11-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-05 17:33:28','janvi','2025-11-05 17:33:28',0),(0,0,'2526','H','O',2758,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-05 17:40:26','drashti','2025-11-05 17:40:26',0),(0,0,'2526','H','O',2759,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 17:41:02','reception','2025-11-05 17:41:02',0),(0,0,'2526','H','O',2760,1,0,'2025-11-05','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-05 17:45:14','drashti','2025-11-05 17:45:14',0),(0,0,'2526','H','O',2761,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-05 17:47:09','janvi','2025-11-05 17:47:09',0),(0,0,'2526','H','O',2762,1,0,'2025-11-05','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-05 17:49:17','drashti','2025-11-05 17:49:17',0),(0,0,'2526','H','O',2763,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 17:50:08','reception','2025-11-05 17:50:08',0),(0,0,'2526','H','O',2764,1,0,'2025-11-05','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-05 17:52:05','reception','2025-11-05 17:52:05',0),(0,0,'2526','H','O',2764,2,0,'2025-11-05','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-05 17:52:05','reception','2025-11-05 17:52:05',0),(0,0,'2526','H','O',2764,3,0,'2025-11-05','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-05 17:52:05','reception','2025-11-05 17:52:05',0),(0,0,'2526','H','O',2765,1,0,'2025-11-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-05 17:53:53','janvi','2025-11-05 17:53:53',0),(0,0,'2526','H','O',2766,1,0,'2025-11-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-05 17:53:59','drashti','2025-11-05 17:53:59',0),(0,0,'2526','H','O',2767,1,0,'2025-11-05','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-05 17:55:34','manshi','2025-11-05 17:55:34',0),(0,0,'2526','H','O',2768,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-05 17:58:03','manshi','2025-11-05 18:32:18',0),(0,0,'2526','H','O',2769,1,1,'2025-11-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','','N','urvashi','2025-11-20 12:51:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','O',2769,2,1,'2025-11-05','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,0,0,'',0,'','','','','N','urvashi','2025-11-20 12:51:50','','0000-00-00 00:00:00',0),(0,0,'2526','H','O',2770,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-05 18:03:14','janvi','2025-11-05 18:03:14',0),(0,0,'2526','H','O',2771,1,0,'2025-11-05','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 18:06:23','reception','2025-11-05 18:06:23',0),(0,0,'2526','H','O',2772,1,0,'2025-11-05','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 18:06:51','reception','2025-11-05 18:06:51',0),(0,0,'2526','H','O',2773,1,0,'2025-11-05','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 18:08:23','reception','2025-11-05 18:08:23',0),(0,0,'2526','H','O',2774,1,0,'2025-11-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-05 18:11:06','janvi','2025-11-05 18:11:06',0),(0,0,'2526','H','O',2775,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 18:11:31','reception','2025-11-05 18:11:31',0),(0,0,'2526','H','O',2776,1,0,'2025-11-05','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-05 18:13:02','janvi','2025-11-05 18:13:02',0),(0,0,'2526','H','O',2777,1,0,'2025-11-05','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-05 18:16:30','reception','2025-11-05 18:16:30',0),(0,0,'2526','H','O',2777,2,0,'2025-11-05','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-05 18:16:30','reception','2025-11-05 18:16:30',0),(0,0,'2526','H','O',2777,3,0,'2025-11-05','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-05 18:16:30','reception','2025-11-05 18:16:30',0),(0,0,'2526','H','O',2778,1,0,'2025-11-05','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-05 18:25:22','janvi','2025-11-05 18:25:22',0),(0,0,'2526','H','O',2779,1,0,'2025-11-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-05 18:26:41','drashti','2025-11-05 18:26:41',0),(0,0,'2526','H','O',2780,1,0,'2025-11-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-05 18:28:59','janvi','2025-11-05 18:28:59',0),(0,0,'2526','H','O',2781,1,0,'2025-11-05','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-05 18:32:18','manshi','2025-11-05 18:32:18',0),(0,0,'2526','H','O',2782,1,0,'2025-11-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-05 18:35:02','drashti','2025-11-05 18:35:02',0),(0,0,'2526','H','O',2783,1,0,'2025-11-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 18:37:22','reception','2025-11-05 18:37:22',0),(0,0,'2526','H','O',2784,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-05 18:39:21','drashti','2025-11-05 18:39:21',0),(0,0,'2526','H','O',2785,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 18:40:40','reception','2025-11-05 18:40:40',0),(0,0,'2526','H','O',2786,1,0,'2025-11-05','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-05 18:41:15','drashti','2025-11-05 18:41:15',0),(0,0,'2526','H','O',2787,1,0,'2025-11-05','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-05 18:41:24','janvi','2025-11-05 18:41:24',0),(0,0,'2526','H','O',2788,1,0,'2025-11-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-05 18:45:17','drashti','2025-11-05 18:45:17',0),(0,0,'2526','H','O',2789,1,0,'2025-11-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 18:48:51','reception','2025-11-05 18:48:51',0),(0,0,'2526','H','O',2790,1,0,'2025-11-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-05 18:52:37','janvi','2025-11-05 19:15:59',0),(0,0,'2526','H','O',2791,1,0,'2025-11-05','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-05 18:55:31','manshi','2025-11-05 18:55:31',0),(0,0,'2526','H','O',2792,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 18:57:35','reception','2025-11-05 18:57:35',0),(0,0,'2526','H','O',2793,1,0,'2025-11-05','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-05 19:02:33','drashti','2025-11-05 19:02:33',0),(0,0,'2526','H','O',2794,1,0,'2025-11-05','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 19:05:24','reception','2025-11-05 19:05:24',0),(0,0,'2526','H','O',2795,1,0,'2025-11-05','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-05 19:15:00','janvi','2025-11-05 19:15:00',0),(0,0,'2526','H','O',2796,1,0,'2025-11-05','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-05 19:15:59','janvi','2025-11-05 19:15:59',0),(0,0,'2526','H','O',2797,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-05 19:20:56','reception','2025-11-05 19:20:56',0),(0,0,'2526','H','O',2798,1,0,'2025-11-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 19:23:47','reception','2025-11-05 19:36:00',0),(0,0,'2526','H','O',2799,1,0,'2025-11-05','00:00:00','NEU10015',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-05 19:27:18','reception','2025-11-05 19:27:18',0),(0,0,'2526','H','O',2799,2,0,'2025-11-05','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-05 19:27:18','reception','2025-11-05 19:27:18',0),(0,0,'2526','H','O',2800,1,0,'2025-11-05','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-05 19:36:00','reception','2025-11-05 19:36:00',0),(0,0,'2526','H','O',2801,1,0,'2025-11-05','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-05 19:38:14','drashti','2025-11-05 19:38:14',0),(0,0,'2526','H','O',2802,1,0,'2025-11-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-05 19:39:53','janvi','2025-11-05 19:39:53',0),(0,0,'2526','H','O',2802,2,0,'2025-11-05','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-05 19:39:53','janvi','2025-11-05 19:39:53',0),(0,0,'2526','H','O',2803,1,0,'2025-11-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-05 19:40:01','janvi','2025-11-05 19:40:01',0),(0,0,'2526','H','O',2803,2,0,'2025-11-05','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-05 19:40:01','janvi','2025-11-05 19:40:01',0),(0,0,'2526','H','O',2804,1,0,'2025-11-05','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-05 20:02:03','manshi','2025-11-05 20:02:03',0),(0,0,'2526','H','O',2805,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-05 20:04:39','janvi','2025-11-05 20:04:39',0),(0,0,'2526','H','O',2806,1,0,'2025-11-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-05 20:13:22','janvi','2025-11-05 20:13:22',0),(0,0,'2526','H','O',2807,1,0,'2025-11-05','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-05 20:27:42','reception','2025-11-05 20:27:42',0),(0,0,'2526','H','O',2808,1,0,'2025-11-06','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-11-06 08:36:20','reception','2025-11-06 08:36:20',0),(0,0,'2526','H','O',2808,2,0,'2025-11-06','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-11-06 08:36:20','reception','2025-11-06 08:36:20',0),(0,0,'2526','H','O',2808,3,0,'2025-11-06','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-11-06 08:36:20','reception','2025-11-06 08:36:20',0),(0,0,'2526','H','O',2809,1,0,'2025-11-06','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-06 09:12:14','reception','2025-11-06 09:12:14',0),(0,0,'2526','H','O',2809,2,0,'2025-11-06','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-06 09:12:14','reception','2025-11-06 09:12:14',0),(0,0,'2526','H','O',2809,3,0,'2025-11-06','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-06 09:12:14','reception','2025-11-06 09:12:14',0),(0,0,'2526','H','O',2810,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 09:39:15','reception','2025-11-06 09:39:15',0),(0,0,'2526','H','O',2811,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 09:48:52','reception','2025-11-06 09:48:52',0),(0,0,'2526','H','O',2812,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 09:50:36','reception','2025-11-06 09:50:36',0),(0,0,'2526','H','O',2813,1,0,'2025-11-06','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 10:02:25','reception','2025-11-06 10:02:25',0),(0,0,'2526','H','O',2814,1,0,'2025-11-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-11-06 10:20:47','priyanshi','2025-11-06 10:20:47',0),(0,0,'2526','H','O',2815,1,0,'2025-11-06','00:00:00','XRY0372',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-06 10:21:47','manshi','2025-11-06 10:21:47',0),(0,0,'2526','H','O',2816,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 10:26:13','reception','2025-11-06 10:26:13',0),(0,0,'2526','H','O',2817,1,0,'2025-11-06','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 10:30:06','reception','2025-11-06 10:30:06',0),(0,0,'2526','H','O',2818,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 10:32:51','reception','2025-11-06 10:32:51',0),(0,0,'2526','H','O',2819,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 10:49:31','reception','2025-11-06 10:49:31',0),(0,0,'2526','H','O',2820,1,0,'2025-11-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-11-06 11:01:59','priyanshi','2025-11-06 11:01:59',0),(0,0,'2526','H','O',2821,1,0,'2025-11-06','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 11:02:16','reception','2025-11-06 11:02:16',0),(0,0,'2526','H','O',2822,1,0,'2025-11-06','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 11:03:44','reception','2025-11-06 11:03:44',0),(0,0,'2526','H','O',2823,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 11:05:43','reception','2025-11-06 11:05:43',0),(0,0,'2526','H','O',2824,1,0,'2025-11-06','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-06 11:12:43','drashti','2025-11-06 11:12:43',0),(0,0,'2526','H','O',2825,1,0,'2025-11-06','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-06 11:18:29','janvi','2025-11-06 11:18:29',0),(0,0,'2526','H','O',2826,1,0,'2025-11-06','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 11:19:30','reception','2025-11-06 11:19:30',0),(0,0,'2526','H','O',2827,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-06 11:19:41','drashti','2025-11-06 11:19:41',0),(0,0,'2526','H','O',2828,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 11:22:43','reception','2025-11-06 11:22:43',0),(0,0,'2526','H','O',2829,1,0,'2025-11-06','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 11:26:03','reception','2025-11-06 11:26:03',0),(0,0,'2526','H','O',2830,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 11:27:44','reception','2025-11-06 11:27:44',0),(0,0,'2526','H','O',2831,1,0,'2025-11-06','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-06 11:28:54','drashti','2025-11-06 11:28:54',0),(0,0,'2526','H','O',2832,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 11:31:17','reception','2025-11-06 11:31:17',0),(0,0,'2526','H','O',2833,1,0,'2025-11-06','00:00:00','WPRC0046',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-06 11:33:00','manshi','2025-11-06 11:33:00',0),(0,0,'2526','H','O',2834,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 11:39:41','reception','2025-11-06 11:39:41',0),(0,0,'2526','H','O',2835,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-06 11:39:43','drashti','2025-11-06 11:39:43',0),(0,0,'2526','H','O',2836,1,0,'2025-11-06','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-06 11:41:44','reception','2025-11-06 11:41:44',0),(0,0,'2526','H','O',2837,1,0,'2025-11-06','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 11:48:50','reception','2025-11-06 11:48:50',0),(0,0,'2526','H','O',2837,2,0,'2025-11-06','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 11:48:50','reception','2025-11-06 11:48:50',0),(0,0,'2526','H','O',2837,3,0,'2025-11-06','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 11:48:50','reception','2025-11-06 11:48:50',0),(0,0,'2526','H','O',2838,1,0,'2025-11-06','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 11:52:49','reception','2025-11-06 11:52:49',0),(0,0,'2526','H','O',2838,2,0,'2025-11-06','00:00:00','NEU10016',0,1.00,2700,2700,'P',0,0,2700.00,0.00,0.00,2700.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 11:52:49','reception','2025-11-06 11:52:49',0),(0,0,'2526','H','O',2839,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 11:55:11','reception','2025-11-06 11:55:11',0),(0,0,'2526','H','O',2840,1,0,'2025-11-06','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-06 11:59:32','drashti','2025-11-06 11:59:32',0),(0,0,'2526','H','O',2841,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-06 12:02:35','manshi','2025-11-06 12:02:35',0),(0,0,'2526','H','O',2842,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-06 12:02:47','reception','2025-11-06 12:02:47',0),(0,0,'2526','H','O',2843,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 12:04:55','reception','2025-11-06 12:04:55',0),(0,0,'2526','H','O',2844,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-06 12:17:21','reception','2025-11-06 12:17:21',0),(0,0,'2526','H','O',2845,1,0,'2025-11-06','00:00:00','WPRC0046',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-06 12:18:31','drashti','2025-11-06 12:18:31',0),(0,0,'2526','H','O',2846,1,0,'2025-11-06','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 12:36:52','reception','2025-11-06 12:36:52',0),(0,0,'2526','H','O',2847,1,0,'2025-11-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-06 12:38:02','drashti','2025-11-06 12:38:02',0),(0,0,'2526','H','O',2848,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-06 12:43:15','drashti','2025-11-06 12:43:15',0),(0,0,'2526','H','O',2849,1,0,'2025-11-06','00:00:00','WPRC0046',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-06 12:43:49','janvi','2025-11-06 12:43:49',0),(0,0,'2526','H','O',2850,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 12:47:26','reception','2025-11-06 12:47:26',0),(0,0,'2526','H','O',2851,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 12:54:49','reception','2025-11-06 12:54:49',0),(0,0,'2526','H','O',2852,1,0,'2025-11-06','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-06 12:56:26','janvi','2025-11-06 12:56:26',0),(0,0,'2526','H','O',2853,1,0,'2025-11-06','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 13:01:53','reception','2025-11-06 13:01:53',0),(0,0,'2526','H','O',2853,2,0,'2025-11-06','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 13:01:53','reception','2025-11-06 13:01:53',0),(0,0,'2526','H','O',2853,3,0,'2025-11-06','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 13:01:53','reception','2025-11-06 13:01:53',0),(0,0,'2526','H','O',2854,1,0,'2025-11-06','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 13:12:37','reception','2025-11-06 13:12:37',0),(0,0,'2526','H','O',2854,2,0,'2025-11-06','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 13:12:37','reception','2025-11-06 13:12:37',0),(0,0,'2526','H','O',2854,3,0,'2025-11-06','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 13:12:37','reception','2025-11-06 13:12:37',0),(0,0,'2526','H','O',2855,1,0,'2025-11-06','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 13:14:35','reception','2025-11-06 13:14:35',0),(0,0,'2526','H','O',2856,1,0,'2025-11-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-06 13:14:47','drashti','2025-11-06 13:14:47',0),(0,0,'2526','H','O',2857,1,0,'2025-11-06','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 13:47:05','reception','2025-11-06 13:47:05',0),(0,0,'2526','H','O',2857,2,0,'2025-11-06','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 13:47:05','reception','2025-11-06 13:47:05',0),(0,0,'2526','H','O',2858,1,0,'2025-11-06','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-06 13:57:39','drashti','2025-11-06 13:57:39',0),(0,0,'2526','H','O',2859,1,0,'2025-11-06','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-06 14:05:35','priyanshi','2025-11-06 14:05:35',0),(0,0,'2526','H','O',2860,1,0,'2025-11-06','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 16:10:25','reception','2025-11-06 16:10:25',0),(0,0,'2526','H','O',2861,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-11-06 16:33:11','janvi','2025-11-06 16:33:11',0),(0,0,'2526','H','O',2862,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 16:55:25','reception','2025-11-18 17:59:31',0),(0,0,'2526','H','O',2863,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 17:00:08','reception','2025-11-06 17:00:08',0),(0,0,'2526','H','O',2864,1,0,'2025-11-06','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 17:17:57','reception','2025-11-06 17:17:57',0),(0,0,'2526','H','O',2864,2,0,'2025-11-06','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 17:17:57','reception','2025-11-06 17:17:57',0),(0,0,'2526','H','O',2864,3,0,'2025-11-06','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 17:17:57','reception','2025-11-06 17:17:57',0),(0,0,'2526','H','O',2865,1,0,'2025-11-06','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-06 17:21:03','drashti','2025-11-06 17:21:03',0),(0,0,'2526','H','O',2866,1,0,'2025-11-06','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 17:21:18','reception','2025-11-06 17:21:18',0),(0,0,'2526','H','O',2866,2,0,'2025-11-06','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 17:21:18','reception','2025-11-06 17:21:18',0),(0,0,'2526','H','O',2866,3,0,'2025-11-06','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 17:21:18','reception','2025-11-06 17:21:18',0),(0,0,'2526','H','O',2867,1,0,'2025-11-06','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 17:28:40','reception','2025-11-06 17:28:40',0),(0,0,'2526','H','O',2868,1,0,'2025-11-06','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 17:37:04','reception','2025-11-06 17:37:04',0),(0,0,'2526','H','O',2869,1,0,'2025-11-06','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-06 17:38:00','janvi','2025-11-06 17:38:00',0),(0,0,'2526','H','O',2870,1,0,'2025-11-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 17:42:37','reception','2025-11-06 17:42:37',0);
INSERT INTO `receipt_transaction` VALUES (0,0,'2526','H','O',2871,1,0,'2025-11-06','00:00:00','OPWD0007',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-06 17:47:22','drashti','2025-11-06 17:47:22',0),(0,0,'2526','H','O',2872,1,0,'2025-11-06','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-06 17:48:58','janvi','2025-11-06 17:48:58',0),(0,0,'2526','H','O',2873,1,0,'2025-11-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-06 17:51:22','drashti','2025-11-06 17:51:22',0),(0,0,'2526','H','O',2874,1,0,'2025-11-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-06 17:52:56','reception','2025-11-06 17:52:56',0),(0,0,'2526','H','O',2875,1,0,'2025-11-06','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-06 17:53:44','drashti','2025-11-06 17:53:44',0),(0,0,'2526','H','O',2876,1,0,'2025-11-06','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 17:55:24','reception','2025-11-06 17:55:24',0),(0,0,'2526','H','O',2876,2,0,'2025-11-06','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 17:55:24','reception','2025-11-06 17:55:24',0),(0,0,'2526','H','O',2876,3,0,'2025-11-06','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 17:55:24','reception','2025-11-06 17:55:24',0),(0,0,'2526','H','O',2877,1,0,'2025-11-06','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-06 17:59:03','janvi','2025-11-06 17:59:03',0),(0,0,'2526','H','O',2878,1,0,'2025-11-06','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-06 18:00:36','drashti','2025-11-06 18:00:36',0),(0,0,'2526','H','O',2879,1,0,'2025-11-06','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-06 18:03:30','drashti','2025-11-06 18:03:30',0),(0,0,'2526','H','O',2880,1,0,'2025-11-06','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-06 18:07:12','janvi','2025-11-06 18:07:12',0),(0,0,'2526','H','O',2881,1,0,'2025-11-06','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 18:12:20','reception','2025-11-06 18:12:20',0),(0,0,'2526','H','O',2881,2,0,'2025-11-06','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-06 18:12:20','reception','2025-11-06 18:12:20',0),(0,0,'2526','H','O',2882,1,0,'2025-11-06','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-06 18:21:17','drashti','2025-11-06 18:21:17',0),(0,0,'2526','H','O',2883,1,0,'2025-11-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-06 18:24:21','drashti','2025-11-06 18:24:21',0),(0,0,'2526','H','O',2884,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 18:26:51','reception','2025-11-06 18:26:51',0),(0,0,'2526','H','O',2885,1,0,'2025-11-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-06 18:27:31','drashti','2025-11-06 18:27:31',0),(0,0,'2526','H','O',2886,1,0,'2025-11-06','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-06 18:31:43','drashti','2025-11-06 18:31:43',0),(0,0,'2526','H','O',2887,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 18:37:05','reception','2025-11-06 18:37:05',0),(0,0,'2526','H','O',2888,1,0,'2025-11-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-06 18:42:32','drashti','2025-11-06 18:42:32',0),(0,0,'2526','H','O',2889,1,0,'2025-11-06','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-06 18:48:13','janvi','2025-11-06 18:48:13',0),(0,0,'2526','H','O',2890,1,0,'2025-11-06','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-06 18:49:15','janvi','2025-11-06 18:49:15',0),(0,0,'2526','H','O',2891,1,0,'2025-11-06','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 18:49:46','reception','2025-11-06 18:49:46',0),(0,0,'2526','H','O',2892,1,0,'2025-11-06','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-06 18:50:46','janvi','2025-11-06 18:50:46',0),(0,0,'2526','H','O',2893,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 18:52:18','reception','2025-11-06 18:52:18',0),(0,0,'2526','H','O',2894,1,0,'2025-11-06','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-06 18:54:45','drashti','2025-11-06 18:54:45',0),(0,0,'2526','H','O',2895,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-06 18:56:13','drashti','2025-11-06 18:56:13',0),(0,0,'2526','H','O',2896,1,0,'2025-11-06','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-06 18:59:12','janvi','2025-11-06 18:59:12',0),(0,0,'2526','H','O',2897,1,0,'2025-11-06','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-06 19:00:17','reception','2025-11-06 19:00:17',0),(0,0,'2526','H','O',2898,1,0,'2025-11-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-06 19:13:31','manshi','2025-11-06 19:13:31',0),(0,0,'2526','H','O',2899,1,0,'2025-11-06','00:00:00','XRY0254',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-06 19:20:46','manshi','2025-11-06 19:20:46',0),(0,0,'2526','H','O',2900,1,0,'2025-11-06','00:00:00','XRY0017',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-06 19:20:56','manshi','2025-11-06 19:20:56',0),(0,0,'2526','H','O',2900,2,0,'2025-11-06','00:00:00','XRY0254',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-06 19:20:56','manshi','2025-11-06 19:20:56',0),(0,0,'2526','H','O',2901,1,0,'2025-11-06','00:00:00','OTCG0033',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-06 19:59:08','janvi','2025-11-06 19:59:08',0),(0,0,'2526','H','O',2901,2,0,'2025-11-06','00:00:00','WPRC0046',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-06 19:59:08','janvi','2025-11-06 19:59:08',0),(0,0,'2526','H','O',2902,1,0,'2025-11-07','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-07 08:54:39','reception','2025-11-07 08:54:39',0),(0,0,'2526','H','O',2902,2,0,'2025-11-07','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-07 08:54:39','reception','2025-11-07 08:54:39',0),(0,0,'2526','H','O',2903,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-07 09:03:34','reception','2025-11-07 09:03:34',0),(0,0,'2526','H','O',2904,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 09:32:30','reception','2025-11-07 09:32:30',0),(0,0,'2526','H','O',2905,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-07 09:44:01','drashti','2025-11-07 09:44:01',0),(0,0,'2526','H','O',2906,1,0,'2025-11-07','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 09:45:01','reception','2025-11-07 09:45:01',0),(0,0,'2526','H','O',2907,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 09:48:23','reception','2025-11-07 09:48:23',0),(0,0,'2526','H','O',2908,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 09:57:37','reception','2025-11-07 09:57:37',0),(0,0,'2526','H','O',2909,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 09:59:04','reception','2025-11-07 09:59:04',0),(0,0,'2526','H','O',2910,1,0,'2025-11-07','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-07 10:07:32','drashti','2025-11-07 10:07:32',0),(0,0,'2526','H','O',2911,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-07 10:14:03','manshi','2025-11-07 10:14:03',0),(0,0,'2526','H','O',2911,2,0,'2025-11-07','00:00:00','XRY0045',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-07 10:14:03','manshi','2025-11-07 10:14:03',0),(0,0,'2526','H','O',2912,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 10:30:17','reception','2025-11-07 10:30:17',0),(0,0,'2526','H','O',2913,1,0,'2025-11-07','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 10:34:09','reception','2025-11-07 10:34:09',0),(0,0,'2526','H','O',2914,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 10:36:59','reception','2025-11-07 10:36:59',0),(0,0,'2526','H','O',2915,1,0,'2025-11-07','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-07 10:40:00','drashti','2025-11-07 10:40:00',0),(0,0,'2526','H','O',2916,1,0,'2025-11-07','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 10:55:40','reception','2025-11-07 10:55:40',0),(0,0,'2526','H','O',2917,1,0,'2025-11-07','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-07 10:58:15','janvi','2025-11-07 10:58:15',0),(0,0,'2526','H','O',2918,1,0,'2025-11-07','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-07 11:00:35','drashti','2025-11-07 11:00:35',0),(0,0,'2526','H','O',2919,1,0,'2025-11-07','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 11:01:39','reception','2025-11-07 11:01:39',0),(0,0,'2526','H','O',2919,2,0,'2025-11-07','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 11:01:39','reception','2025-11-07 11:01:39',0),(0,0,'2526','H','O',2919,3,0,'2025-11-07','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 11:01:39','reception','2025-11-07 11:01:39',0),(0,0,'2526','H','O',2920,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-07 11:02:55','drashti','2025-11-07 11:02:55',0),(0,0,'2526','H','O',2921,1,0,'2025-11-07','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-07 11:07:11','drashti','2025-11-07 11:07:11',0),(0,0,'2526','H','O',2922,1,0,'2025-11-07','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-07 11:07:24','reception','2025-11-07 11:07:24',0),(0,0,'2526','H','O',2923,1,0,'2025-11-07','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-07 11:13:51','drashti','2025-11-07 11:13:51',0),(0,0,'2526','H','O',2924,1,0,'2025-11-07','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 11:14:43','reception','2025-11-07 11:14:43',0),(0,0,'2526','H','O',2924,2,0,'2025-11-07','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 11:14:43','reception','2025-11-07 11:14:43',0),(0,0,'2526','H','O',2925,1,0,'2025-11-07','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-07 11:17:30','drashti','2025-11-07 11:17:30',0),(0,0,'2526','H','O',2926,1,0,'2025-11-07','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-07 11:20:03','janvi','2025-11-07 11:20:03',0),(0,0,'2526','H','O',2927,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-07 11:20:16','drashti','2025-11-07 11:20:16',0),(0,0,'2526','H','O',2928,1,0,'2025-11-07','00:00:00','NEU10015',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 11:26:42','reception','2025-11-07 11:26:42',0),(0,0,'2526','H','O',2929,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-11-07 11:27:21','janvi','2025-11-07 11:27:21',0),(0,0,'2526','H','O',2930,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-07 11:27:46','drashti','2025-11-07 11:27:46',0),(0,0,'2526','H','O',2931,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-07 11:32:50','drashti','2025-11-07 11:32:50',0),(0,0,'2526','H','O',2932,1,0,'2025-11-07','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 11:33:03','reception','2025-11-07 11:33:03',0),(0,0,'2526','H','O',2933,1,0,'2025-11-07','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-07 11:35:40','manshi','2025-11-07 11:35:40',0),(0,0,'2526','H','O',2934,1,0,'2025-11-07','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 11:37:38','reception','2025-11-07 11:37:38',0),(0,0,'2526','H','O',2935,1,0,'2025-11-07','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 11:39:53','reception','2025-11-07 11:39:53',0),(0,0,'2526','H','O',2936,1,0,'2025-11-07','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 11:46:47','reception','2025-11-07 11:46:47',0),(0,0,'2526','H','O',2937,1,0,'2025-11-07','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-07 11:55:27','drashti','2025-11-07 11:55:27',0),(0,0,'2526','H','O',2938,1,0,'2025-11-07','00:00:00','NEU10015',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 11:55:41','reception','2025-11-07 11:55:41',0),(0,0,'2526','H','O',2939,1,0,'2025-11-07','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-07 11:59:07','drashti','2025-11-07 11:59:07',0),(0,0,'2526','H','O',2940,1,0,'2025-11-07','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 11:59:46','reception','2025-11-07 11:59:46',0),(0,0,'2526','H','O',2940,2,0,'2025-11-07','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 11:59:46','reception','2025-11-07 11:59:46',0),(0,0,'2526','H','O',2940,3,0,'2025-11-07','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 11:59:46','reception','2025-11-07 11:59:46',0),(0,0,'2526','H','O',2941,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 12:01:00','reception','2025-11-07 12:01:00',0),(0,0,'2526','H','O',2942,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-07 12:02:25','manshi','2025-11-07 12:02:25',0),(0,0,'2526','H','O',2943,1,0,'2025-11-07','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 12:03:47','reception','2025-11-07 12:03:47',0),(0,0,'2526','H','O',2944,1,0,'2025-11-07','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-07 12:06:09','janvi','2025-11-07 12:06:09',0),(0,0,'2526','H','O',2945,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 12:06:14','reception','2025-11-07 12:06:14',0),(0,0,'2526','H','O',2946,1,0,'2025-11-07','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-07 12:08:01','drashti','2025-11-07 12:08:01',0),(0,0,'2526','H','O',2947,1,0,'2025-11-07','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 12:09:48','reception','2025-11-07 12:09:48',0),(0,0,'2526','H','O',2948,1,0,'2025-11-07','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-07 12:11:04','drashti','2025-11-07 12:11:04',0),(0,0,'2526','H','O',2949,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 12:11:52','reception','2025-11-07 12:11:52',0),(0,0,'2526','H','O',2950,1,0,'2025-11-07','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 12:15:08','reception','2025-11-07 12:15:08',0),(0,0,'2526','H','O',2950,2,0,'2025-11-07','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 12:15:08','reception','2025-11-07 12:15:08',0),(0,0,'2526','H','O',2951,1,0,'2025-11-07','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 12:28:50','reception','2025-11-07 12:28:50',0),(0,0,'2526','H','O',2951,2,0,'2025-11-07','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 12:28:50','reception','2025-11-07 12:28:50',0),(0,0,'2526','H','O',2952,1,0,'2025-11-07','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-07 12:41:42','janvi','2025-11-07 12:41:42',0),(0,0,'2526','H','O',2953,1,0,'2025-11-07','00:00:00','WPRC0046',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-07 12:50:49','janvi','2025-11-07 12:50:49',0),(0,0,'2526','H','O',2954,1,0,'2025-11-07','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-07 13:01:22','janvi','2025-11-07 13:01:22',0),(0,0,'2526','H','O',2955,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-07 13:24:43','drashti','2025-11-07 13:24:43',0),(0,0,'2526','H','O',2956,1,0,'2025-11-07','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 13:34:22','reception','2025-11-07 13:34:22',0),(0,0,'2526','H','O',2957,1,0,'2025-11-07','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 13:50:16','reception','2025-11-07 13:50:16',0),(0,0,'2526','H','O',2958,1,0,'2025-11-07','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 13:54:32','reception','2025-11-07 13:54:32',0),(0,0,'2526','H','O',2958,2,0,'2025-11-07','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 13:54:32','reception','2025-11-07 13:54:32',0),(0,0,'2526','H','O',2959,1,0,'2025-11-07','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 14:05:56','reception','2025-11-07 14:05:56',0),(0,0,'2526','H','O',2959,2,0,'2025-11-07','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 14:05:56','reception','2025-11-07 14:05:56',0),(0,0,'2526','H','O',2960,1,0,'2025-11-07','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-07 14:53:40','priyanshi','2025-11-07 14:53:40',0),(0,0,'2526','H','O',2961,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 16:06:00','reception','2025-11-07 16:06:00',0),(0,0,'2526','H','O',2962,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 16:35:54','reception','2025-11-07 16:35:54',0),(0,0,'2526','H','O',2963,1,0,'2025-11-07','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-07 16:41:17','priyanshi','2025-11-07 16:41:17',0),(0,0,'2526','H','O',2964,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 16:58:12','reception','2025-11-07 16:58:12',0),(0,0,'2526','H','O',2965,1,0,'2025-11-07','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-07 17:05:24','drashti','2025-11-07 17:05:24',0),(0,0,'2526','H','O',2966,1,0,'2025-11-07','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 17:08:17','reception','2025-11-07 17:08:17',0),(0,0,'2526','H','O',2967,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 17:10:22','reception','2025-11-07 17:10:22',0),(0,0,'2526','H','O',2968,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-07 17:14:34','drashti','2025-11-07 17:14:34',0),(0,0,'2526','H','O',2969,1,0,'2025-11-07','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 17:28:04','reception','2025-11-07 17:28:04',0),(0,0,'2526','H','O',2970,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 17:29:22','reception','2025-11-07 17:29:22',0),(0,0,'2526','H','O',2971,1,0,'2025-11-07','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-07 17:30:31','drashti','2025-11-07 17:30:31',0),(0,0,'2526','H','O',2972,1,0,'2025-11-07','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-07 17:33:35','drashti','2025-11-07 17:33:35',0),(0,0,'2526','H','O',2973,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 17:35:38','reception','2025-11-07 17:35:38',0),(0,0,'2526','H','O',2974,1,0,'2025-11-07','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-07 17:39:03','janvi','2025-11-07 17:39:03',0),(0,0,'2526','H','O',2975,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-07 17:39:19','drashti','2025-11-07 17:39:19',0),(0,0,'2526','H','O',2976,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 17:39:32','reception','2025-11-07 17:39:32',0),(0,0,'2526','H','O',2977,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-07 17:42:06','drashti','2025-11-07 17:42:06',0),(0,0,'2526','H','O',2978,1,0,'2025-11-07','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 17:42:57','reception','2025-11-07 17:42:57',0),(0,0,'2526','H','O',2979,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-07 17:43:35','drashti','2025-11-07 17:43:35',0),(0,0,'2526','H','O',2980,1,0,'2025-11-07','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 17:47:30','reception','2025-11-07 17:47:30',0),(0,0,'2526','H','O',2980,2,0,'2025-11-07','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 17:47:30','reception','2025-11-07 17:47:30',0),(0,0,'2526','H','O',2981,1,0,'2025-11-07','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-07 17:52:37','janvi','2025-11-07 17:52:37',0),(0,0,'2526','H','O',2982,1,0,'2025-11-07','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-07 17:57:32','drashti','2025-11-07 17:57:32',0),(0,0,'2526','H','O',2983,1,0,'2025-11-07','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-07 18:07:54','janvi','2025-11-07 18:07:54',0),(0,0,'2526','H','O',2984,1,0,'2025-11-07','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-07 18:10:20','manshi','2025-11-07 18:10:20',0),(0,0,'2526','H','O',2985,1,0,'2025-11-07','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-07 18:11:21','janvi','2025-11-07 18:11:21',0),(0,0,'2526','H','O',2986,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 18:12:28','reception','2025-11-07 18:12:28',0),(0,0,'2526','H','O',2987,1,0,'2025-11-07','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-07 18:16:53','janvi','2025-11-07 18:16:53',0),(0,0,'2526','H','O',2988,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-07 18:20:34','manshi','2025-11-07 18:20:34',0),(0,0,'2526','H','O',2989,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 18:21:06','reception','2025-11-07 18:21:06',0),(0,0,'2526','H','O',2990,1,0,'2025-11-07','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-07 18:22:52','janvi','2025-11-07 18:22:52',0),(0,0,'2526','H','O',2991,1,0,'2025-11-07','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-07 18:25:16','drashti','2025-11-07 19:08:41',0),(0,0,'2526','H','O',2992,1,0,'2025-11-07','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 18:27:55','reception','2025-11-07 18:27:55',0),(0,0,'2526','H','O',2992,2,0,'2025-11-07','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 18:27:55','reception','2025-11-07 18:27:55',0),(0,0,'2526','H','O',2993,1,0,'2025-11-07','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-07 18:30:20','reception','2025-11-07 18:30:20',0),(0,0,'2526','H','O',2994,1,0,'2025-11-07','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-07 18:33:17','drashti','2025-11-07 18:33:17',0),(0,0,'2526','H','O',2995,1,0,'2025-11-07','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 18:33:46','reception','2025-11-07 18:33:46',0),(0,0,'2526','H','O',2996,1,0,'2025-11-07','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-07 18:36:03','drashti','2025-11-07 18:36:03',0),(0,0,'2526','H','O',2997,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 18:44:49','reception','2025-11-07 18:44:49',0),(0,0,'2526','H','O',2998,1,0,'2025-11-07','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-07 18:49:01','reception','2025-11-07 18:49:01',0),(0,0,'2526','H','O',2999,1,0,'2025-11-07','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-07 18:57:52','janvi','2025-11-07 18:57:52',0),(0,0,'2526','H','O',3000,1,0,'2025-11-07','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-07 19:04:21','manshi','2025-11-07 19:04:21',0),(0,0,'2526','H','O',3001,1,0,'2025-11-07','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-07 19:08:41','drashti','2025-11-07 19:08:41',0),(0,0,'2526','H','O',3002,1,0,'2025-11-07','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-07 19:10:12','manshi','2025-11-07 19:10:12',0),(0,0,'2526','H','O',3003,1,0,'2025-11-07','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-07 19:10:59','janvi','2025-11-07 19:10:59',0),(0,0,'2526','H','O',3004,1,0,'2025-11-07','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-07 19:16:33','manshi','2025-11-07 19:16:33',0),(0,0,'2526','H','O',3005,1,0,'2025-11-07','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-07 19:20:11','janvi','2025-11-07 19:20:11',0),(0,0,'2526','H','O',3006,1,0,'2025-11-07','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-07 19:32:20','drashti','2025-11-07 19:32:20',0),(0,0,'2526','H','O',3006,2,0,'2025-11-07','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-07 19:32:20','drashti','2025-11-07 19:32:20',0),(0,0,'2526','H','O',3007,1,0,'2025-11-08','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-08 09:05:45','reception','2025-11-08 09:05:45',0),(0,0,'2526','H','O',3007,2,0,'2025-11-08','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-08 09:05:45','reception','2025-11-08 09:05:45',0),(0,0,'2526','H','O',3008,1,0,'2025-11-08','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-08 09:09:18','reception','2025-11-08 09:09:18',0),(0,0,'2526','H','O',3009,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-08 09:16:52','reception','2025-11-08 09:16:52',0),(0,0,'2526','H','O',3009,2,0,'2025-11-08','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-08 09:16:52','reception','2025-11-08 09:16:52',0),(0,0,'2526','H','O',3010,1,0,'2025-11-08','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-08 09:20:53','reception','2025-11-08 09:20:53',0),(0,0,'2526','H','O',3010,2,0,'2025-11-08','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-08 09:20:53','reception','2025-11-08 09:20:53',0),(0,0,'2526','H','O',3010,3,0,'2025-11-08','00:00:00','OPWD0013',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-08 09:20:53','reception','2025-11-08 09:20:53',0),(0,0,'2526','H','O',3011,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 09:25:44','reception','2025-11-08 09:25:44',0),(0,0,'2526','H','O',3012,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 09:51:33','reception','2025-11-08 09:51:33',0),(0,0,'2526','H','O',3013,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 10:02:19','reception','2025-11-08 10:02:19',0),(0,0,'2526','H','O',3014,1,0,'2025-11-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 10:20:11','reception','2025-11-08 10:20:11',0),(0,0,'2526','H','O',3015,1,0,'2025-11-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 10:23:36','reception','2025-11-08 14:01:47',0),(0,0,'2526','H','O',3016,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-08 10:25:11','drashti','2025-11-08 10:25:11',0),(0,0,'2526','H','O',3017,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-08 10:26:26','reception','2025-11-08 10:26:26',0),(0,0,'2526','H','O',3018,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 10:37:36','reception','2025-11-08 10:37:36',0),(0,0,'2526','H','O',3019,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-08 10:42:10','drashti','2025-11-08 10:42:10',0),(0,0,'2526','H','O',3020,1,0,'2025-11-08','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-08 10:43:31','reception','2025-11-08 10:43:31',0),(0,0,'2526','H','O',3021,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-11-08 10:44:01','janvi','2025-11-08 10:44:01',0),(0,0,'2526','H','O',3022,1,0,'2025-11-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-08 10:44:52','drashti','2025-11-08 10:44:52',0),(0,0,'2526','H','O',3023,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 10:45:21','reception','2025-11-08 10:45:21',0),(0,0,'2526','H','O',3024,1,0,'2025-11-08','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-08 10:49:47','janvi','2025-11-08 10:49:47',0),(0,0,'2526','H','O',3025,1,0,'2025-11-08','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-08 10:52:08','janvi','2025-11-08 10:52:08',0),(0,0,'2526','H','O',3026,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 10:57:53','reception','2025-11-08 10:57:53',0),(0,0,'2526','H','O',3027,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-08 11:00:25','drashti','2025-11-08 11:00:25',0),(0,0,'2526','H','O',3028,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 11:02:31','reception','2025-11-08 11:02:31',0),(0,0,'2526','H','O',3029,1,0,'2025-11-08','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-08 11:06:18','janvi','2025-11-08 11:06:18',0),(0,0,'2526','H','O',3030,1,0,'2025-11-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-08 11:07:09','manshi','2025-11-08 11:07:09',0),(0,0,'2526','H','O',3031,1,0,'2025-11-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 11:07:18','reception','2025-11-08 11:07:18',0),(0,0,'2526','H','O',3031,2,0,'2025-11-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 11:07:18','reception','2025-11-08 11:07:18',0),(0,0,'2526','H','O',3031,3,0,'2025-11-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 11:07:18','reception','2025-11-08 11:07:18',0),(0,0,'2526','H','O',3032,1,0,'2025-11-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-08 11:08:04','drashti','2025-11-08 11:08:04',0),(0,0,'2526','H','O',3033,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-08 11:13:44','manshi','2025-11-08 11:13:44',0),(0,0,'2526','H','O',3034,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-08 11:16:22','manshi','2025-11-08 11:16:22',0),(0,0,'2526','H','O',3035,1,0,'2025-11-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-08 11:21:22','manshi','2025-11-08 11:21:22',0),(0,0,'2526','H','O',3036,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 11:23:48','reception','2025-11-08 11:23:48',0),(0,0,'2526','H','O',3037,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-08 11:26:32','reception','2025-11-08 11:26:32',0),(0,0,'2526','H','O',3038,1,0,'2025-11-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 11:30:28','reception','2025-11-08 11:30:28',0),(0,0,'2526','H','O',3039,1,0,'2025-11-08','00:00:00','XRY0151',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-08 11:30:40','manshi','2025-11-08 11:30:40',0),(0,0,'2526','H','O',3040,1,0,'2025-11-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 11:32:23','reception','2025-11-08 11:32:23',0),(0,0,'2526','H','O',3041,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 11:34:18','reception','2025-11-08 11:34:18',0),(0,0,'2526','H','O',3042,1,0,'2025-11-08','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-08 11:37:16','janvi','2025-11-08 11:37:16',0),(0,0,'2526','H','O',3043,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 11:38:07','reception','2025-11-08 11:38:07',0),(0,0,'2526','H','O',3044,1,0,'2025-11-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 11:41:15','reception','2025-11-08 11:41:15',0),(0,0,'2526','H','O',3044,2,0,'2025-11-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 11:41:15','reception','2025-11-08 11:41:15',0),(0,0,'2526','H','O',3044,3,0,'2025-11-08','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 11:41:15','reception','2025-11-08 11:41:15',0),(0,0,'2526','H','O',3045,1,0,'2025-11-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-08 11:42:40','drashti','2025-11-08 11:42:40',0),(0,0,'2526','H','O',3046,1,0,'2025-11-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 11:42:55','reception','2025-11-08 11:42:55',0),(0,0,'2526','H','O',3047,1,0,'2025-11-08','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-08 11:45:00','janvi','2025-11-08 11:45:00',0),(0,0,'2526','H','O',3048,1,0,'2025-11-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 11:47:10','reception','2025-11-08 11:47:10',0),(0,0,'2526','H','O',3049,1,0,'2025-11-08','00:00:00','XRY0013',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-08 11:49:23','manshi','2025-11-08 12:03:34',0),(0,0,'2526','H','O',3050,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 11:51:25','reception','2025-11-08 11:51:25',0),(0,0,'2526','H','O',3051,1,0,'2025-11-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 11:57:14','reception','2025-11-08 11:57:14',0),(0,0,'2526','H','O',3051,2,0,'2025-11-08','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 11:57:14','reception','2025-11-08 11:57:14',0),(0,0,'2526','H','O',3052,1,0,'2025-11-08','00:00:00','XRY0013',0,-1.00,600,-600,'P',0,0,-600.00,0.00,0.00,-600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-08 12:03:34','manshi','2025-11-08 12:03:34',0),(0,0,'2526','H','O',3053,1,0,'2025-11-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 12:07:15','reception','2025-11-08 12:07:15',0),(0,0,'2526','H','O',3054,1,0,'2025-11-08','00:00:00','XRY0013',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-08 12:07:50','manshi','2025-11-08 12:07:50',0),(0,0,'2526','H','O',3055,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 12:23:32','reception','2025-11-08 12:23:32',0),(0,0,'2526','H','O',3056,1,0,'2025-11-08','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-08 12:28:20','drashti','2025-11-08 12:28:20',0),(0,0,'2526','H','O',3057,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 12:30:21','reception','2025-11-08 12:30:21',0),(0,0,'2526','H','O',3058,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 12:35:18','reception','2025-11-08 12:35:18',0),(0,0,'2526','H','O',3059,1,0,'2025-11-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-08 12:39:51','drashti','2025-11-08 12:39:51',0),(0,0,'2526','H','O',3060,1,0,'2025-11-08','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-08 12:43:58','drashti','2025-11-08 12:43:58',0),(0,0,'2526','H','O',3061,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-08 12:44:29','janvi','2025-11-08 12:44:29',0),(0,0,'2526','H','O',3062,1,0,'2025-11-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 12:46:06','reception','2025-11-08 12:46:06',0),(0,0,'2526','H','O',3063,1,0,'2025-11-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 12:50:00','reception','2025-11-08 12:50:00',0),(0,0,'2526','H','O',3063,2,0,'2025-11-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 12:50:00','reception','2025-11-08 12:50:00',0),(0,0,'2526','H','O',3063,3,0,'2025-11-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 12:50:00','reception','2025-11-08 12:50:00',0),(0,0,'2526','H','O',3064,1,0,'2025-11-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 12:56:53','reception','2025-11-08 12:56:53',0),(0,0,'2526','H','O',3064,2,0,'2025-11-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 12:56:53','reception','2025-11-08 12:56:53',0),(0,0,'2526','H','O',3065,1,0,'2025-11-08','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 13:04:19','reception','2025-11-08 13:04:19',0),(0,0,'2526','H','O',3065,2,0,'2025-11-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 13:04:19','reception','2025-11-08 13:04:19',0),(0,0,'2526','H','O',3065,3,0,'2025-11-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 13:04:19','reception','2025-11-08 13:04:19',0),(0,0,'2526','H','O',3066,1,0,'2025-11-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-08 13:04:22','janvi','2025-11-08 13:04:22',0),(0,0,'2526','H','O',3067,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-08 13:09:41','drashti','2025-11-08 13:09:41',0),(0,0,'2526','H','O',3068,1,0,'2025-11-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 13:28:40','reception','2025-11-08 13:28:40',0),(0,0,'2526','H','O',3068,2,0,'2025-11-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 13:28:40','reception','2025-11-08 13:28:40',0),(0,0,'2526','H','O',3069,1,0,'2025-11-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 13:35:14','reception','2025-11-08 13:35:14',0),(0,0,'2526','H','O',3070,1,0,'2025-11-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 13:46:28','reception','2025-11-08 13:46:28',0),(0,0,'2526','H','O',3070,2,0,'2025-11-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 13:46:28','reception','2025-11-08 13:46:28',0),(0,0,'2526','H','O',3070,3,0,'2025-11-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-08 13:46:28','reception','2025-11-08 13:46:28',0),(0,0,'2526','H','O',3071,1,0,'2025-11-08','00:00:00','CASE',0,-1.00,900,-900,'A',0,0,-900.00,0.00,0.00,-900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 14:01:47','reception','2025-11-08 14:01:47',0),(0,0,'2526','H','O',3072,1,0,'2025-11-08','00:00:00','CASE',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-08 14:07:14','reception','2025-11-08 14:07:14',0),(0,0,'2526','H','O',3073,1,0,'2025-11-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-11-08 14:42:07','shweta','2025-11-08 14:42:07',0),(0,0,'2526','H','O',3074,1,0,'2025-11-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-11-08 15:13:46','shweta','2025-11-08 15:13:46',0),(0,0,'2526','H','O',3074,2,0,'2025-11-08','00:00:00','NEU10017',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-11-08 15:13:46','shweta','2025-11-08 15:13:46',0),(0,0,'2526','H','O',3075,1,0,'2025-11-08','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-08 16:42:46','janvi','2025-11-08 16:42:46',0),(0,0,'2526','H','O',3076,1,0,'2025-11-08','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-08 16:50:09','manshi','2025-11-08 16:50:09',0),(0,0,'2526','H','O',3076,2,0,'2025-11-08','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-08 16:50:09','manshi','2025-11-08 16:50:09',0),(0,0,'2526','H','O',3076,3,0,'2025-11-08','00:00:00','XRY0045',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-08 16:50:09','manshi','2025-11-08 16:50:09',0),(0,0,'2526','H','O',3077,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-08 17:51:24','manshi','2025-11-08 17:51:24',0),(0,0,'2526','H','O',3077,2,0,'2025-11-08','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-08 17:51:24','manshi','2025-11-08 17:51:24',0),(0,0,'2526','H','O',3077,3,0,'2025-11-08','00:00:00','XRY0358',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-08 17:51:24','manshi','2025-11-08 17:51:24',0),(0,0,'2526','H','O',3078,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-08 18:07:13','manshi','2025-11-08 18:07:13',0),(0,0,'2526','H','O',3078,2,0,'2025-11-08','00:00:00','XRY0045',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-08 18:07:13','manshi','2025-11-08 18:07:13',0),(0,0,'2526','H','O',3078,3,0,'2025-11-08','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-08 18:07:13','manshi','2025-11-08 18:07:13',0),(0,0,'2526','H','O',3079,1,0,'2025-11-08','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-08 18:50:30','janvi','2025-11-08 18:50:30',0),(0,0,'2526','H','O',3080,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-08 18:54:30','priyanshi','2025-11-08 18:54:30',0),(0,0,'2526','H','O',3081,1,0,'2025-11-08','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-08 19:22:11','janvi','2025-11-08 19:22:11',0),(0,0,'2526','H','O',3082,1,0,'2025-11-08','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-08 19:26:35','janvi','2025-11-08 19:26:35',0),(0,0,'2526','H','O',3083,1,0,'2025-11-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-08 19:31:07','manshi','2025-11-08 19:31:07',0),(0,0,'2526','H','O',3084,1,0,'2025-11-08','00:00:00','XRY0244',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-08 19:37:37','manshi','2025-11-08 19:37:37',0),(0,0,'2526','H','O',3085,1,0,'2025-11-08','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-08 19:51:02','janvi','2025-11-08 19:51:02',0),(0,0,'2526','H','O',3085,2,0,'2025-11-08','00:00:00','OPWD0015',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-08 19:51:02','janvi','2025-11-08 19:51:02',0),(0,0,'2526','H','O',3085,3,0,'2025-11-08','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-08 19:51:02','janvi','2025-11-08 19:51:02',0),(0,0,'2526','H','O',3085,4,0,'2025-11-08','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-08 19:51:02','janvi','2025-11-08 19:51:02',0),(0,0,'2526','H','O',3086,1,0,'2025-11-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-08 19:56:43','janvi','2025-11-08 19:56:43',0),(0,0,'2526','H','O',3087,1,0,'2025-11-09','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-09 10:18:12','reception','2025-11-09 10:18:12',0),(0,0,'2526','H','O',3087,2,0,'2025-11-09','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-09 10:18:12','reception','2025-11-09 10:18:12',0),(0,0,'2526','H','O',3088,1,0,'2025-11-09','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-11-09 11:53:23','reception','2025-11-09 11:53:23',0),(0,0,'2526','H','O',3089,1,0,'2025-11-09','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-09 11:59:34','reception','2025-11-09 11:59:34',0),(0,0,'2526','H','O',3089,2,0,'2025-11-09','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-09 11:59:34','reception','2025-11-09 11:59:34',0),(0,0,'2526','H','O',3089,3,0,'2025-11-09','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-09 11:59:34','reception','2025-11-09 11:59:34',0),(0,0,'2526','H','O',3089,4,0,'2025-11-09','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-09 11:59:34','reception','2025-11-09 11:59:34',0),(0,0,'2526','H','O',3089,5,0,'2025-11-09','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-09 11:59:34','reception','2025-11-09 11:59:34',0),(0,0,'2526','H','O',3090,1,0,'2025-11-10','00:00:00','SURG0005',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 09:11:56','reception','2025-11-10 09:11:56',0),(0,0,'2526','H','O',3091,1,0,'2025-11-10','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-10 09:14:03','reception','2025-11-10 09:14:03',0),(0,0,'2526','H','O',3092,1,0,'2025-11-10','00:00:00','SURG0005',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,7,0,'',0,'','','','Y','N','reception','2025-11-10 09:16:10','reception','2025-11-10 09:16:10',0),(0,0,'2526','H','O',3093,1,0,'2025-11-10','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-10 09:19:24','reception','2025-11-10 09:19:24',0),(0,0,'2526','H','O',3094,1,0,'2025-11-10','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-10 09:31:08','janvi','2025-11-10 09:40:36',0),(0,0,'2526','H','O',3095,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 09:34:11','reception','2025-11-10 09:34:11',0),(0,0,'2526','H','O',3096,1,0,'2025-11-10','00:00:00','WPRC0024',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-10 09:38:15','reception','2025-11-10 09:38:15',0),(0,0,'2526','H','O',3096,2,0,'2025-11-10','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-10 09:38:15','reception','2025-11-10 09:38:15',0),(0,0,'2526','H','O',3097,1,0,'2025-11-10','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-10 09:40:25','drashti','2025-11-10 09:40:25',0),(0,0,'2526','H','O',3097,2,0,'2025-11-10','00:00:00','OPWD0013',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-10 09:40:25','drashti','2025-11-10 09:40:25',0),(0,0,'2526','H','O',3098,1,0,'2025-11-10','00:00:00','CASE',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-10 09:40:36','janvi','2025-11-10 09:40:36',0),(0,0,'2526','H','O',3099,1,0,'2025-11-10','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-10 09:43:10','drashti','2025-11-10 09:43:10',0),(0,0,'2526','H','O',3099,2,0,'2025-11-10','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-10 09:43:10','drashti','2025-11-10 09:43:10',0),(0,0,'2526','H','O',3100,1,0,'2025-11-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 09:47:42','reception','2025-11-10 09:47:42',0),(0,0,'2526','H','O',3101,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 09:52:22','reception','2025-11-10 09:52:22',0),(0,0,'2526','H','O',3102,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-10 09:53:25','drashti','2025-11-10 09:53:25',0),(0,0,'2526','H','O',3103,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 10:04:49','reception','2025-11-10 10:04:49',0),(0,0,'2526','H','O',3104,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 10:13:03','reception','2025-11-10 10:13:03',0),(0,0,'2526','H','O',3105,1,0,'2025-11-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-10 10:19:39','janvi','2025-11-10 10:19:39',0),(0,0,'2526','H','O',3106,1,0,'2025-11-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 10:30:20','reception','2025-11-10 10:30:20',0),(0,0,'2526','H','O',3107,1,0,'2025-11-10','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-10 10:32:09','drashti','2025-11-10 10:32:09',0),(0,0,'2526','H','O',3108,1,0,'2025-11-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 10:32:49','reception','2025-11-10 10:32:49',0),(0,0,'2526','H','O',3109,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-10 10:37:08','manshi','2025-11-10 10:37:08',0),(0,0,'2526','H','O',3110,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 10:40:37','reception','2025-11-10 10:40:37',0),(0,0,'2526','H','O',3111,1,0,'2025-11-10','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-10 10:41:08','drashti','2025-11-10 10:41:08',0),(0,0,'2526','H','O',3111,2,0,'2025-11-10','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-10 10:41:08','drashti','2025-11-10 10:41:08',0),(0,0,'2526','H','O',3111,3,0,'2025-11-10','00:00:00','OPWD0019',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-10 10:41:08','drashti','2025-11-10 10:41:08',0),(0,0,'2526','H','O',3112,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-10 10:47:49','drashti','2025-11-10 10:47:49',0),(0,0,'2526','H','O',3113,1,0,'2025-11-10','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-10 10:47:55','janvi','2025-11-10 10:47:55',0),(0,0,'2526','H','O',3114,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 10:48:22','reception','2025-11-10 10:48:22',0),(0,0,'2526','H','O',3115,1,0,'2025-11-10','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-10 10:57:09','manshi','2025-11-10 10:57:09',0),(0,0,'2526','H','O',3116,1,0,'2025-11-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-10 10:57:45','drashti','2025-11-10 10:57:45',0),(0,0,'2526','H','O',3117,1,0,'2025-11-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-10 11:00:42','manshi','2025-11-10 11:00:42',0),(0,0,'2526','H','O',3118,1,0,'2025-11-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 11:01:07','reception','2025-11-10 11:01:07',0),(0,0,'2526','H','O',3119,1,0,'2025-11-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-10 11:04:24','drashti','2025-11-10 11:04:24',0),(0,0,'2526','H','O',3120,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-10 11:12:53','manshi','2025-11-10 11:12:53',0),(0,0,'2526','H','O',3121,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-10 11:16:59','drashti','2025-11-10 11:16:59',0),(0,0,'2526','H','O',3122,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-10 11:17:39','manshi','2025-11-10 12:10:59',0),(0,0,'2526','H','O',3123,1,0,'2025-11-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 11:19:21','reception','2025-11-10 11:19:21',0),(0,0,'2526','H','O',3124,1,0,'2025-11-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-10 11:22:02','manshi','2025-11-10 11:22:02',0),(0,0,'2526','H','O',3125,1,0,'2025-11-10','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-10 11:24:40','drashti','2025-11-10 11:24:40',0),(0,0,'2526','H','O',3126,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 11:27:38','reception','2025-11-10 11:27:38',0),(0,0,'2526','H','O',3127,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 11:36:09','reception','2025-11-10 11:36:09',0),(0,0,'2526','H','O',3128,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-10 11:37:21','drashti','2025-11-10 11:37:21',0),(0,0,'2526','H','O',3129,1,0,'2025-11-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 11:40:24','reception','2025-11-10 11:40:24',0),(0,0,'2526','H','O',3129,2,0,'2025-11-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 11:40:24','reception','2025-11-10 11:40:24',0),(0,0,'2526','H','O',3129,3,0,'2025-11-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 11:40:24','reception','2025-11-10 11:40:24',0),(0,0,'2526','H','O',3130,1,0,'2025-11-10','00:00:00','OPWD0023',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-10 11:41:19','janvi','2025-11-10 11:41:19',0),(0,0,'2526','H','O',3131,1,0,'2025-11-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 11:41:28','reception','2025-11-10 11:41:28',0),(0,0,'2526','H','O',3131,2,0,'2025-11-10','00:00:00','NEU10020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 11:41:28','reception','2025-11-10 11:41:28',0),(0,0,'2526','H','O',3132,1,0,'2025-11-10','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-10 11:42:31','manshi','2025-11-10 11:42:31',0),(0,0,'2526','H','O',3133,1,0,'2025-11-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-10 11:44:15','drashti','2025-11-10 11:44:15',0),(0,0,'2526','H','O',3134,1,0,'2025-11-10','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-10 11:44:26','manshi','2025-11-10 11:44:26',0),(0,0,'2526','H','O',3135,1,0,'2025-11-10','00:00:00','XRY0254',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-10 11:45:30','manshi','2025-11-10 11:45:30',0),(0,0,'2526','H','O',3135,2,0,'2025-11-10','00:00:00','XRY0390',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-10 11:45:30','manshi','2025-11-10 11:45:30',0),(0,0,'2526','H','O',3136,1,0,'2025-11-10','00:00:00','XRY0244',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-10 11:46:20','manshi','2025-11-10 11:46:20',0),(0,0,'2526','H','O',3137,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-10 11:48:14','drashti','2025-11-10 11:48:14',0),(0,0,'2526','H','O',3138,1,0,'2025-11-10','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-10 11:49:45','manshi','2025-11-10 11:49:45',0),(0,0,'2526','H','O',3139,1,0,'2025-11-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 11:52:54','reception','2025-11-10 11:52:54',0),(0,0,'2526','H','O',3140,1,0,'2025-11-10','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-10 11:56:57','manshi','2025-11-10 12:54:25',0),(0,0,'2526','H','O',3141,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 11:58:29','reception','2025-11-10 11:58:29',0),(0,0,'2526','H','O',3142,1,0,'2025-11-10','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-10 12:01:05','janvi','2025-11-10 12:01:05',0),(0,0,'2526','H','O',3143,1,0,'2025-11-10','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-10 12:01:29','manshi','2025-11-10 12:01:29',0),(0,0,'2526','H','O',3144,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 12:03:07','reception','2025-11-10 12:03:07',0),(0,0,'2526','H','O',3145,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-10 12:09:00','janvi','2025-11-10 12:09:00',0),(0,0,'2526','H','O',3146,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-10 12:09:33','drashti','2025-11-10 12:09:33',0),(0,0,'2526','H','O',3147,1,0,'2025-11-10','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-10 12:10:59','manshi','2025-11-10 12:10:59',0),(0,0,'2526','H','O',3148,1,0,'2025-11-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 12:18:17','reception','2025-11-10 12:18:17',0),(0,0,'2526','H','O',3149,1,0,'2025-11-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 12:21:55','reception','2025-11-10 12:21:55',0),(0,0,'2526','H','O',3149,2,0,'2025-11-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 12:21:55','reception','2025-11-10 12:21:55',0),(0,0,'2526','H','O',3149,3,0,'2025-11-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 12:21:55','reception','2025-11-10 12:21:55',0),(0,0,'2526','H','O',3150,1,0,'2025-11-10','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-10 12:26:26','janvi','2025-11-10 12:26:26',0),(0,0,'2526','H','O',3151,1,0,'2025-11-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 12:31:01','reception','2025-11-10 12:31:01',0),(0,0,'2526','H','O',3151,2,0,'2025-11-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 12:31:01','reception','2025-11-10 12:31:01',0),(0,0,'2526','H','O',3151,3,0,'2025-11-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 12:31:01','reception','2025-11-10 12:31:01',0),(0,0,'2526','H','O',3152,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-10 12:33:45','reception','2025-11-10 12:33:45',0),(0,0,'2526','H','O',3153,1,0,'2025-11-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-10 12:40:03','manshi','2025-11-10 12:40:03',0),(0,0,'2526','H','O',3154,1,0,'2025-11-10','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 12:49:49','reception','2025-11-10 12:49:49',0),(0,0,'2526','H','O',3155,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 12:51:10','reception','2025-11-10 12:51:10',0),(0,0,'2526','H','O',3156,1,0,'2025-11-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 12:53:10','reception','2025-11-10 12:53:10',0),(0,0,'2526','H','O',3156,2,0,'2025-11-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 12:53:10','reception','2025-11-10 12:53:10',0),(0,0,'2526','H','O',3157,1,0,'2025-11-10','00:00:00','CASE',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-10 12:54:25','manshi','2025-11-10 12:54:25',0),(0,0,'2526','H','O',3158,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 12:57:35','reception','2025-11-10 12:57:35',0),(0,0,'2526','H','O',3159,1,0,'2025-11-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 13:04:06','reception','2025-11-10 13:04:06',0),(0,0,'2526','H','O',3159,2,0,'2025-11-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 13:04:06','reception','2025-11-10 13:04:06',0),(0,0,'2526','H','O',3160,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 13:15:41','reception','2025-11-10 13:15:41',0),(0,0,'2526','H','O',3161,1,0,'2025-11-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 13:28:13','reception','2025-11-10 13:28:13',0),(0,0,'2526','H','O',3161,2,0,'2025-11-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 13:28:13','reception','2025-11-10 13:28:13',0),(0,0,'2526','H','O',3161,3,0,'2025-11-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 13:28:13','reception','2025-11-10 13:28:13',0),(0,0,'2526','H','O',3162,1,0,'2025-11-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 14:29:42','reception','2025-11-10 14:29:42',0),(0,0,'2526','H','O',3163,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 16:18:18','reception','2025-11-10 16:18:18',0),(0,0,'2526','H','O',3164,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 16:57:45','reception','2025-11-10 16:57:45',0),(0,0,'2526','H','O',3165,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 17:00:51','reception','2025-11-10 17:00:51',0),(0,0,'2526','H','O',3166,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 17:02:36','reception','2025-11-10 17:02:36',0),(0,0,'2526','H','O',3167,1,0,'2025-11-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-10 17:03:39','drashti','2025-11-10 17:03:39',0),(0,0,'2526','H','O',3168,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 17:13:07','reception','2025-11-10 17:13:07',0),(0,0,'2526','H','O',3169,1,0,'2025-11-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-10 17:23:21','drashti','2025-11-10 17:23:21',0),(0,0,'2526','H','O',3170,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-10 17:27:59','janvi','2025-11-10 17:49:14',0),(0,0,'2526','H','O',3171,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-10 17:33:31','reception','2025-11-10 17:33:31',0),(0,0,'2526','H','O',3172,1,0,'2025-11-10','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-10 17:38:19','janvi','2025-11-10 17:38:19',0),(0,0,'2526','H','O',3173,1,0,'2025-11-10','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-10 17:43:42','janvi','2025-11-10 17:43:42',0),(0,0,'2526','H','O',3174,1,0,'2025-11-10','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 17:46:44','reception','2025-11-10 17:46:44',0),(0,0,'2526','H','O',3175,1,0,'2025-11-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 17:48:40','reception','2025-11-10 17:48:40',0),(0,0,'2526','H','O',3175,2,0,'2025-11-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 17:48:40','reception','2025-11-10 17:48:40',0),(0,0,'2526','H','O',3175,3,0,'2025-11-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 17:48:40','reception','2025-11-10 17:48:40',0),(0,0,'2526','H','O',3176,1,0,'2025-11-10','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-10 17:49:14','janvi','2025-11-10 17:49:14',0),(0,0,'2526','H','O',3177,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-10 17:51:32','drashti','2025-11-10 17:51:32',0),(0,0,'2526','H','O',3178,1,0,'2025-11-10','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 17:53:05','reception','2025-11-10 17:53:05',0),(0,0,'2526','H','O',3178,2,0,'2025-11-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 17:53:05','reception','2025-11-10 17:53:05',0),(0,0,'2526','H','O',3179,1,0,'2025-11-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-10 17:58:39','janvi','2025-11-10 17:58:39',0),(0,0,'2526','H','O',3180,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-10 18:05:35','janvi','2025-11-10 18:08:31',0),(0,0,'2526','H','O',3181,1,0,'2025-11-10','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-10 18:08:31','janvi','2025-11-10 18:08:31',0),(0,0,'2526','H','O',3182,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-10 18:12:14','manshi','2025-11-10 18:12:14',0),(0,0,'2526','H','O',3183,1,0,'2025-11-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 18:15:24','reception','2025-11-10 18:15:24',0),(0,0,'2526','H','O',3183,2,0,'2025-11-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 18:15:24','reception','2025-11-10 18:15:24',0),(0,0,'2526','H','O',3183,3,0,'2025-11-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 18:15:24','reception','2025-11-10 18:15:24',0),(0,0,'2526','H','O',3184,1,0,'2025-11-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-10 18:17:39','janvi','2025-11-10 18:17:39',0),(0,0,'2526','H','O',3185,1,0,'2025-11-10','00:00:00','XRY0308',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-10 18:19:43','manshi','2025-11-10 18:19:43',0),(0,0,'2526','H','O',3186,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 18:21:53','reception','2025-11-10 18:21:53',0),(0,0,'2526','H','O',3187,1,0,'2025-11-10','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-10 18:23:10','drashti','2025-11-10 18:23:10',0),(0,0,'2526','H','O',3188,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 18:24:51','reception','2025-11-10 18:24:51',0),(0,0,'2526','H','O',3189,1,0,'2025-11-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 18:26:00','reception','2025-11-10 18:26:00',0),(0,0,'2526','H','O',3190,1,0,'2025-11-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-10 18:31:46','drashti','2025-11-10 18:31:46',0),(0,0,'2526','H','O',3191,1,0,'2025-11-10','00:00:00','MOPR0006',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-10 18:33:08','drashti','2025-11-10 18:33:08',0),(0,0,'2526','H','O',3192,1,0,'2025-11-10','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-10 18:35:24','drashti','2025-11-10 18:35:24',0),(0,0,'2526','H','O',3193,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-10 18:55:10','manshi','2025-11-10 18:55:10',0),(0,0,'2526','H','O',3194,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-10 18:57:56','manshi','2025-11-10 19:23:38',0),(0,0,'2526','H','O',3195,1,0,'2025-11-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 18:59:13','reception','2025-11-10 18:59:13',0),(0,0,'2526','H','O',3195,2,0,'2025-11-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-10 18:59:13','reception','2025-11-10 18:59:13',0),(0,0,'2526','H','O',3196,1,0,'2025-11-10','00:00:00','XRY0189',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-10 18:59:52','manshi','2025-11-10 18:59:52',0),(0,0,'2526','H','O',3197,1,0,'2025-11-10','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 19:06:53','reception','2025-11-10 19:06:53',0),(0,0,'2526','H','O',3198,1,0,'2025-11-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-10 19:17:20','manshi','2025-11-10 19:17:20',0),(0,0,'2526','H','O',3199,1,0,'2025-11-10','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-10 19:23:38','manshi','2025-11-10 19:23:38',0),(0,0,'2526','H','O',3200,1,0,'2025-11-10','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-10 19:29:26','manshi','2025-11-10 19:29:26',0),(0,0,'2526','H','O',3201,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-10 19:30:44','reception','2025-11-10 19:30:44',0),(0,0,'2526','H','O',3202,1,0,'2025-11-10','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-10 19:35:35','drashti','2025-11-10 19:35:35',0),(0,0,'2526','H','O',3203,1,0,'2025-11-10','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-10 19:46:58','drashti','2025-11-10 19:46:58',0),(0,0,'2526','H','O',3204,1,0,'2025-11-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-10 19:49:21','drashti','2025-11-10 19:49:21',0),(0,0,'2526','H','O',3205,1,0,'2025-11-10','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-10 19:53:14','manshi','2025-11-10 19:53:14',0),(0,0,'2526','H','O',3206,1,0,'2025-11-10','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 20:34:20','reception','2025-11-10 20:34:20',0),(0,0,'2526','H','O',3206,2,0,'2025-11-10','00:00:00','OPWD0023',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-10 20:34:20','reception','2025-11-10 20:34:20',0),(0,0,'2526','H','O',3207,1,0,'2025-11-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 09:14:47','reception','2025-11-11 09:14:47',0),(0,0,'2526','H','O',3208,1,0,'2025-11-11','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-11 09:23:53','reception','2025-11-11 09:23:53',0),(0,0,'2526','H','O',3208,2,0,'2025-11-11','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-11 09:23:53','reception','2025-11-11 09:23:53',0),(0,0,'2526','H','O',3208,3,0,'2025-11-11','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-11 09:23:53','reception','2025-11-11 09:23:53',0),(0,0,'2526','H','O',3209,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 09:52:38','reception','2025-11-11 09:52:38',0),(0,0,'2526','H','O',3210,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 10:03:53','reception','2025-11-11 10:03:53',0),(0,0,'2526','H','O',3211,1,0,'2025-11-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 10:06:13','reception','2025-11-11 10:06:13',0),(0,0,'2526','H','O',3212,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 10:10:52','drashti','2025-11-11 10:10:52',0),(0,0,'2526','H','O',3213,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 10:13:05','drashti','2025-11-11 10:13:05',0),(0,0,'2526','H','O',3214,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-11 10:29:05','janvi','2025-11-11 10:29:05',0),(0,0,'2526','H','O',3215,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 10:30:10','drashti','2025-11-11 10:30:10',0),(0,0,'2526','H','O',3216,1,0,'2025-11-11','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-11 10:38:52','manshi','2025-11-11 10:38:52',0),(0,0,'2526','H','O',3217,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 10:41:21','reception','2025-11-11 10:41:21',0),(0,0,'2526','H','O',3218,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 10:45:23','drashti','2025-11-11 10:45:23',0),(0,0,'2526','H','O',3219,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 10:48:07','reception','2025-11-11 10:48:07',0),(0,0,'2526','H','O',3220,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 10:51:08','reception','2025-11-11 10:51:08',0),(0,0,'2526','H','O',3221,1,0,'2025-11-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 10:52:08','reception','2025-11-11 10:52:08',0),(0,0,'2526','H','O',3222,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 10:55:50','drashti','2025-11-11 10:55:50',0),(0,0,'2526','H','O',3223,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 10:57:22','drashti','2025-11-11 10:57:22',0),(0,0,'2526','H','O',3224,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-11 10:58:57','manshi','2025-11-11 11:18:09',0),(0,0,'2526','H','O',3225,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 11:03:47','reception','2025-11-11 11:03:47',0),(0,0,'2526','H','O',3225,2,0,'2025-11-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-11 11:03:47','reception','2025-11-11 11:03:47',0),(0,0,'2526','H','O',3226,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-11-11 11:04:06','janvi','2025-11-11 11:04:06',0),(0,0,'2526','H','O',3227,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 11:05:23','drashti','2025-11-11 11:05:23',0),(0,0,'2526','H','O',3228,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 11:08:38','reception','2025-11-11 11:08:38',0),(0,0,'2526','H','O',3229,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 11:09:32','drashti','2025-11-11 13:03:59',0),(0,0,'2526','H','O',3230,1,0,'2025-11-11','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-11 11:10:58','janvi','2025-11-11 11:10:58',0),(0,0,'2526','H','O',3231,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-11 11:11:11','manshi','2025-11-11 11:11:11',0),(0,0,'2526','H','O',3232,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 11:12:21','drashti','2025-11-11 11:12:21',0),(0,0,'2526','H','O',3233,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 11:13:16','reception','2025-11-11 11:13:16',0),(0,0,'2526','H','O',3234,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 11:13:59','reception','2025-11-11 11:13:59',0),(0,0,'2526','H','O',3235,1,0,'2025-11-11','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-11 11:16:21','manshi','2025-11-11 11:16:21',0),(0,0,'2526','H','O',3236,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 11:16:24','reception','2025-11-11 11:16:24',0),(0,0,'2526','H','O',3237,1,0,'2025-11-11','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-11 11:18:09','manshi','2025-11-11 11:18:09',0),(0,0,'2526','H','O',3238,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 11:19:11','drashti','2025-11-11 11:19:11',0),(0,0,'2526','H','O',3239,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 11:19:16','reception','2025-11-11 11:19:16',0),(0,0,'2526','H','O',3240,1,0,'2025-11-11','00:00:00','NEU10020',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-11 11:20:52','reception','2025-11-11 11:20:52',0),(0,0,'2526','H','O',3241,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-11 11:22:59','janvi','2025-11-11 11:22:59',0),(0,0,'2526','H','O',3242,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-11 11:23:10','janvi','2025-11-11 11:23:10',0),(0,0,'2526','H','O',3243,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-11 11:31:42','janvi','2025-11-11 11:31:42',0),(0,0,'2526','H','O',3244,1,0,'2025-11-11','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-11 11:33:22','manshi','2025-11-11 11:33:22',0),(0,0,'2526','H','O',3245,1,0,'2025-11-11','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 11:33:38','reception','2025-11-11 12:50:33',0),(0,0,'2526','H','O',3246,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-11 11:37:06','janvi','2025-11-11 11:37:06',0),(0,0,'2526','H','O',3247,1,0,'2025-11-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-11 11:38:19','reception','2025-11-11 11:38:19',0),(0,0,'2526','H','O',3247,2,0,'2025-11-11','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-11 11:38:19','reception','2025-11-11 11:38:19',0),(0,0,'2526','H','O',3247,3,0,'2025-11-11','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-11 11:38:19','reception','2025-11-11 11:38:19',0),(0,0,'2526','H','O',3248,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 11:40:06','drashti','2025-11-11 11:40:06',0),(0,0,'2526','H','O',3249,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-11 11:40:23','janvi','2025-11-11 11:40:23',0),(0,0,'2526','H','O',3250,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-11 11:40:28','janvi','2025-11-11 11:40:28',0),(0,0,'2526','H','O',3251,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 11:41:48','reception','2025-11-11 11:41:48',0),(0,0,'2526','H','O',3252,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 11:42:34','drashti','2025-11-11 11:42:34',0),(0,0,'2526','H','O',3253,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-11 11:42:38','janvi','2025-11-11 11:42:38',0),(0,0,'2526','H','O',3254,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 11:43:19','reception','2025-11-11 11:43:19',0),(0,0,'2526','H','O',3255,1,0,'2025-11-11','00:00:00','XRY0390',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-11 11:44:28','manshi','2025-11-11 11:44:28',0),(0,0,'2526','H','O',3256,1,0,'2025-11-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-11 11:46:27','reception','2025-11-11 11:46:27',0),(0,0,'2526','H','O',3256,2,0,'2025-11-11','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-11 11:46:27','reception','2025-11-11 11:46:27',0),(0,0,'2526','H','O',3256,3,0,'2025-11-11','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-11 11:46:27','reception','2025-11-11 11:46:27',0),(0,0,'2526','H','O',3257,1,0,'2025-11-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 11:49:28','reception','2025-11-11 11:49:28',0),(0,0,'2526','H','O',3258,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 11:51:12','drashti','2025-11-11 11:51:12',0),(0,0,'2526','H','O',3259,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 11:55:21','drashti','2025-11-11 11:55:21',0),(0,0,'2526','H','O',3260,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-11 11:56:22','reception','2025-11-11 11:56:22',0),(0,0,'2526','H','O',3261,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 12:02:01','reception','2025-11-11 12:02:01',0),(0,0,'2526','H','O',3262,1,0,'2025-11-11','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-11 12:03:40','manshi','2025-11-11 12:03:40',0),(0,0,'2526','H','O',3263,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 12:05:52','drashti','2025-11-11 12:05:52',0),(0,0,'2526','H','O',3264,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-11 12:09:54','janvi','2025-11-11 12:09:54',0),(0,0,'2526','H','O',3265,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 12:10:19','drashti','2025-11-11 12:10:19',0),(0,0,'2526','H','O',3266,1,0,'2025-11-11','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-11 12:13:56','manshi','2025-11-11 12:13:56',0),(0,0,'2526','H','O',3266,2,0,'2025-11-11','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-11 12:13:56','manshi','2025-11-11 12:13:56',0),(0,0,'2526','H','O',3267,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 12:17:53','reception','2025-11-11 12:17:53',0),(0,0,'2526','H','O',3268,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-11-11 12:19:00','janvi','2025-11-11 12:19:00',0),(0,0,'2526','H','O',3269,1,0,'2025-11-11','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 12:20:25','reception','2025-11-11 12:20:25',0),(0,0,'2526','H','O',3270,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 12:23:00','drashti','2025-11-11 12:23:00',0),(0,0,'2526','H','O',3271,1,0,'2025-11-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 12:23:05','reception','2025-11-11 12:23:05',0),(0,0,'2526','H','O',3272,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 12:23:15','drashti','2025-11-11 12:23:15',0),(0,0,'2526','H','O',3273,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-11 12:23:27','janvi','2025-11-11 12:23:27',0),(0,0,'2526','H','O',3274,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-11 12:23:39','janvi','2025-11-11 12:23:39',0),(0,0,'2526','H','O',3275,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 12:24:58','reception','2025-11-11 12:24:58',0),(0,0,'2526','H','O',3276,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 12:25:24','drashti','2025-11-11 12:25:24',0),(0,0,'2526','H','O',3277,1,0,'2025-11-11','00:00:00','OPWD0023',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-11 12:30:27','janvi','2025-11-11 12:30:27',0),(0,0,'2526','H','O',3278,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 12:30:39','drashti','2025-11-11 12:30:39',0),(0,0,'2526','H','O',3279,1,0,'2025-11-11','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 12:31:50','drashti','2025-11-11 12:31:50',0),(0,0,'2526','H','O',3280,1,0,'2025-11-11','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-11 12:34:39','manshi','2025-11-11 12:34:39',0),(0,0,'2526','H','O',3280,2,0,'2025-11-11','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-11 12:34:39','manshi','2025-11-11 12:34:39',0),(0,0,'2526','H','O',3280,3,0,'2025-11-11','00:00:00','XRY0244',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-11 12:34:39','manshi','2025-11-11 12:34:39',0),(0,0,'2526','H','O',3281,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-11 12:36:35','janvi','2025-11-11 12:36:35',0),(0,0,'2526','H','O',3282,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 12:38:40','reception','2025-11-11 12:38:40',0),(0,0,'2526','H','O',3283,1,0,'2025-11-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-11 12:44:33','reception','2025-11-11 12:44:33',0),(0,0,'2526','H','O',3283,2,0,'2025-11-11','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-11 12:44:33','reception','2025-11-11 12:44:33',0),(0,0,'2526','H','O',3283,3,0,'2025-11-11','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-11 12:44:33','reception','2025-11-11 12:44:33',0),(0,0,'2526','H','O',3284,1,0,'2025-11-11','00:00:00','OPWD0023',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-11 12:44:34','janvi','2025-11-11 12:44:34',0),(0,0,'2526','H','O',3285,1,0,'2025-11-11','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-11 12:50:33','reception','2025-11-11 12:50:33',0),(0,0,'2526','H','O',3286,1,0,'2025-11-11','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 13:03:59','drashti','2025-11-11 13:03:59',0),(0,0,'2526','H','O',3287,1,0,'2025-11-11','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-11 13:49:11','janvi','2025-11-11 13:49:11',0),(0,0,'2526','H','O',3288,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 13:50:58','drashti','2025-11-11 13:50:58',0),(0,0,'2526','H','O',3289,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-11 14:10:15','janvi','2025-11-11 14:13:13',0),(0,0,'2526','H','O',3290,1,0,'2025-11-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-11-11 14:13:07','shweta','2025-11-11 14:13:07',0),(0,0,'2526','H','O',3291,1,0,'2025-11-11','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-11 14:13:13','janvi','2025-11-11 14:13:13',0),(0,0,'2526','H','O',3292,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-11-11 16:42:11','shweta','2025-11-11 16:42:11',0),(0,0,'2526','H','O',3293,1,0,'2025-11-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-11 16:43:55','drashti','2025-11-11 16:43:55',0),(0,0,'2526','H','O',3294,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-11-11 16:49:08','shweta','2025-11-11 16:49:08',0),(0,0,'2526','H','O',3295,1,0,'2025-11-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-11 17:07:41','priyanshi','2025-11-11 17:07:41',0),(0,0,'2526','H','O',3296,1,0,'2025-11-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-11 17:10:21','priyanshi','2025-11-11 17:10:21',0),(0,0,'2526','H','O',3296,2,0,'2025-11-11','00:00:00','NEU10019',0,1.00,1800,1800,'P',0,0,1800.00,0.00,0.00,1800.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-11 17:10:21','priyanshi','2025-11-11 17:10:21',0),(0,0,'2526','H','O',3296,3,0,'2025-11-11','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-11 17:10:21','priyanshi','2025-11-11 17:10:21',0),(0,0,'2526','H','O',3297,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-11 17:16:21','priyanshi','2025-11-11 17:16:21',0),(0,0,'2526','H','O',3298,1,0,'2025-11-11','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-11 17:17:51','priyanshi','2025-11-11 17:17:51',0),(0,0,'2526','H','O',3299,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 17:21:01','drashti','2025-11-11 17:21:01',0),(0,0,'2526','H','O',3300,1,0,'2025-11-11','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-11 17:24:36','priyanshi','2025-11-11 17:24:36',0),(0,0,'2526','H','O',3300,2,0,'2025-11-11','00:00:00','NEU10017',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-11 17:24:36','priyanshi','2025-11-11 17:24:36',0),(0,0,'2526','H','O',3301,1,0,'2025-11-11','00:00:00','OTCG0003',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-11 17:33:53','drashti','2025-11-11 17:33:53',0),(0,0,'2526','H','O',3302,1,0,'2025-11-11','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-11 17:33:55','priyanshi','2025-11-11 17:33:55',0),(0,0,'2526','H','O',3302,2,0,'2025-11-11','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-11 17:33:55','priyanshi','2025-11-11 17:33:55',0),(0,0,'2526','H','O',3303,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-11 17:39:51','priyanshi','2025-11-11 17:39:51',0),(0,0,'2526','H','O',3304,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 17:42:11','drashti','2025-11-11 17:42:11',0),(0,0,'2526','H','O',3305,1,0,'2025-11-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-11 17:43:06','priyanshi','2025-11-11 17:43:06',0),(0,0,'2526','H','O',3305,2,0,'2025-11-11','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-11 17:43:06','priyanshi','2025-11-11 17:43:06',0),(0,0,'2526','H','O',3306,1,0,'2025-11-11','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-11 17:46:07','manshi','2025-11-11 17:46:07',0),(0,0,'2526','H','O',3307,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-11 17:51:39','priyanshi','2025-11-11 17:51:39',0),(0,0,'2526','H','O',3308,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 17:52:28','drashti','2025-11-11 17:52:28',0),(0,0,'2526','H','O',3309,1,0,'2025-11-11','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-11 17:53:21','priyanshi','2025-11-11 17:53:21',0),(0,0,'2526','H','O',3310,1,0,'2025-11-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-11 17:56:40','priyanshi','2025-11-11 17:56:40',0),(0,0,'2526','H','O',3311,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 18:01:21','drashti','2025-11-11 18:01:21',0),(0,0,'2526','H','O',3312,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-11 18:02:39','priyanshi','2025-11-11 18:02:39',0),(0,0,'2526','H','O',3313,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-11 18:03:42','janvi','2025-11-11 18:03:42',0),(0,0,'2526','H','O',3314,1,0,'2025-11-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-11 18:04:32','drashti','2025-11-11 18:04:32',0),(0,0,'2526','H','O',3315,1,0,'2025-11-11','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-11 18:05:06','janvi','2025-11-11 18:05:06',0),(0,0,'2526','H','O',3316,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 18:11:11','drashti','2025-11-11 18:11:11',0),(0,0,'2526','H','O',3317,1,0,'2025-11-11','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-11 18:11:16','priyanshi','2025-11-11 18:11:16',0),(0,0,'2526','H','O',3318,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-11 18:11:55','janvi','2025-11-11 18:11:55',0),(0,0,'2526','H','O',3319,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-11 18:14:20','priyanshi','2025-11-11 18:14:20',0),(0,0,'2526','H','O',3320,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 18:14:48','drashti','2025-11-11 18:14:48',0),(0,0,'2526','H','O',3321,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-11 18:15:28','priyanshi','2025-11-11 18:15:28',0),(0,0,'2526','H','O',3322,1,0,'2025-11-11','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-11 18:17:23','priyanshi','2025-11-11 18:17:23',0),(0,0,'2526','H','O',3323,1,0,'2025-11-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-11 18:21:04','priyanshi','2025-11-11 18:21:04',0),(0,0,'2526','H','O',3323,2,0,'2025-11-11','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-11 18:21:04','priyanshi','2025-11-11 18:21:04',0),(0,0,'2526','H','O',3324,1,0,'2025-11-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-11 18:23:13','drashti','2025-11-11 18:23:13',0),(0,0,'2526','H','O',3325,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-11 18:26:30','manshi','2025-11-11 18:26:30',0),(0,0,'2526','H','O',3326,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 18:32:28','drashti','2025-11-11 18:32:28',0),(0,0,'2526','H','O',3327,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-11 18:35:13','priyanshi','2025-11-11 18:35:13',0),(0,0,'2526','H','O',3328,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 18:35:32','drashti','2025-11-11 18:35:32',0),(0,0,'2526','H','O',3329,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-11 18:37:40','priyanshi','2025-11-11 18:37:40',0),(0,0,'2526','H','O',3330,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 18:39:00','drashti','2025-11-11 18:39:00',0),(0,0,'2526','H','O',3331,1,0,'2025-11-11','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-11 18:40:06','janvi','2025-11-11 18:40:06',0),(0,0,'2526','H','O',3332,1,0,'2025-11-11','00:00:00','XRY0390',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-11 18:42:21','manshi','2025-11-11 18:42:21',0),(0,0,'2526','H','O',3333,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-11 18:43:58','priyanshi','2025-11-11 18:43:58',0),(0,0,'2526','H','O',3334,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-11 18:44:07','janvi','2025-11-11 18:44:07',0),(0,0,'2526','H','O',3335,1,0,'2025-11-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-11 18:47:53','drashti','2025-11-11 18:47:53',0),(0,0,'2526','H','O',3336,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-11 18:48:36','priyanshi','2025-11-11 18:48:36',0),(0,0,'2526','H','O',3337,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-11 18:49:24','priyanshi','2025-11-11 18:49:24',0),(0,0,'2526','H','O',3338,1,0,'2025-11-11','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-11 18:50:08','drashti','2025-11-11 18:50:08',0),(0,0,'2526','H','O',3339,1,0,'2025-11-11','00:00:00','NEU10015',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-11 18:50:24','priyanshi','2025-11-11 18:50:24',0),(0,0,'2526','H','O',3340,1,0,'2025-11-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-11 18:52:36','priyanshi','2025-11-11 18:52:36',0),(0,0,'2526','H','O',3341,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 18:55:04','drashti','2025-11-11 18:55:04',0),(0,0,'2526','H','O',3342,1,0,'2025-11-11','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-11 18:56:24','janvi','2025-11-11 18:56:24',0),(0,0,'2526','H','O',3343,1,0,'2025-11-11','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-11 18:58:47','priyanshi','2025-11-11 18:58:47',0),(0,0,'2526','H','O',3343,2,0,'2025-11-11','00:00:00','NEU10017',0,1.00,2400,2400,'P',0,0,2400.00,0.00,0.00,2400.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-11 18:58:47','priyanshi','2025-11-11 18:58:47',0),(0,0,'2526','H','O',3344,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 19:02:33','drashti','2025-11-11 19:02:33',0),(0,0,'2526','H','O',3345,1,0,'2025-11-11','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-11 19:03:05','priyanshi','2025-11-11 19:03:05',0),(0,0,'2526','H','O',3346,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 19:07:02','drashti','2025-11-11 19:07:02',0),(0,0,'2526','H','O',3347,1,0,'2025-11-11','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-11 19:10:34','janvi','2025-11-11 19:10:34',0),(0,0,'2526','H','O',3348,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 19:11:05','drashti','2025-11-11 19:11:05',0),(0,0,'2526','H','O',3349,1,0,'2025-11-11','00:00:00','NEU10019',0,1.00,1800,1800,'P',0,0,1800.00,0.00,0.00,1800.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-11 19:22:15','priyanshi','2025-11-11 19:22:15',0),(0,0,'2526','H','O',3349,2,0,'2025-11-11','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-11 19:22:15','priyanshi','2025-11-11 19:22:15',0),(0,0,'2526','H','O',3349,3,0,'2025-11-11','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-11 19:22:15','priyanshi','2025-11-11 19:22:15',0),(0,0,'2526','H','O',3350,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 19:26:15','drashti','2025-11-11 19:26:15',0),(0,0,'2526','H','O',3351,1,0,'2025-11-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 19:27:02','drashti','2025-11-11 19:27:02',0),(0,0,'2526','H','O',3352,1,0,'2025-11-11','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-11 19:27:17','manshi','2025-11-11 19:27:17',0),(0,0,'2526','H','O',3353,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-11 19:27:37','priyanshi','2025-11-11 19:27:37',0),(0,0,'2526','H','O',3354,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 19:29:25','drashti','2025-11-11 19:29:25',0),(0,0,'2526','H','O',3355,1,0,'2025-11-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-11 19:32:01','priyanshi','2025-11-11 19:32:01',0),(0,0,'2526','H','O',3356,1,0,'2025-11-11','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-11 19:45:28','janvi','2025-11-11 19:45:28',0),(0,0,'2526','H','O',3357,1,0,'2025-11-11','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 20:58:46','drashti','2025-11-11 20:58:46',0),(0,0,'2526','H','O',3357,2,0,'2025-11-11','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 20:58:46','drashti','2025-11-11 20:58:46',0),(0,0,'2526','H','O',3357,3,0,'2025-11-11','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 20:58:46','drashti','2025-11-11 20:58:46',0),(0,0,'2526','H','O',3357,4,0,'2025-11-11','00:00:00','OPWD0015',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 20:58:46','drashti','2025-11-11 20:58:46',0),(0,0,'2526','H','O',3357,5,0,'2025-11-11','00:00:00','OTCG0033',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-11 20:58:46','drashti','2025-11-11 20:58:46',0),(0,0,'2526','H','O',3358,1,0,'2025-11-12','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-12 08:49:42','reception','2025-11-12 08:49:42',0),(0,0,'2526','H','O',3358,2,0,'2025-11-12','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 08:49:42','reception','2025-11-12 08:49:42',0),(0,0,'2526','H','O',3358,3,0,'2025-11-12','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 08:49:42','reception','2025-11-12 08:49:42',0),(0,0,'2526','H','O',3358,4,0,'2025-11-12','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-12 08:49:42','reception','2025-11-12 08:49:42',0),(0,0,'2526','H','O',3359,1,0,'2025-11-12','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-12 09:08:08','reception','2025-11-12 09:08:08',0),(0,0,'2526','H','O',3359,2,0,'2025-11-12','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-12 09:08:08','reception','2025-11-12 09:08:08',0),(0,0,'2526','H','O',3359,3,0,'2025-11-12','00:00:00','WPRC0049',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 09:08:08','reception','2025-11-12 09:08:08',0),(0,0,'2526','H','O',3360,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-12 09:49:24','janvi','2025-11-12 09:49:24',0),(0,0,'2526','H','O',3361,1,0,'2025-11-12','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 09:50:37','reception','2025-11-12 09:50:37',0),(0,0,'2526','H','O',3362,1,0,'2025-11-12','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-12 10:11:56','reception','2025-11-12 10:11:56',0),(0,0,'2526','H','O',3363,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 10:12:25','drashti','2025-11-12 10:12:25',0),(0,0,'2526','H','O',3364,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 10:35:02','reception','2025-11-12 10:35:02',0),(0,0,'2526','H','O',3365,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 10:36:01','drashti','2025-11-12 10:36:01',0),(0,0,'2526','H','O',3366,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 10:39:26','reception','2025-11-12 10:39:26',0),(0,0,'2526','H','O',3367,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 10:42:26','drashti','2025-11-12 10:42:26',0),(0,0,'2526','H','O',3368,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 10:45:49','reception','2025-11-12 10:45:49',0),(0,0,'2526','H','O',3369,1,0,'2025-11-12','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 10:55:17','reception','2025-11-12 10:55:17',0),(0,0,'2526','H','O',3370,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-12 10:56:46','janvi','2025-11-12 10:56:46',0),(0,0,'2526','H','O',3371,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 11:00:23','reception','2025-11-12 11:00:23',0),(0,0,'2526','H','O',3372,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 11:06:16','reception','2025-11-12 11:06:16',0),(0,0,'2526','H','O',3373,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 11:09:07','reception','2025-11-12 11:09:07',0),(0,0,'2526','H','O',3374,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 11:10:45','reception','2025-11-12 11:10:45',0),(0,0,'2526','H','O',3375,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-12 11:11:43','manshi','2025-11-12 11:11:43',0),(0,0,'2526','H','O',3376,1,0,'2025-11-12','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-11-12 11:12:12','janvi','2025-11-12 11:12:12',0),(0,0,'2526','H','O',3377,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-12 11:12:44','reception','2025-11-12 11:12:44',0),(0,0,'2526','H','O',3378,1,0,'2025-11-12','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 11:15:51','reception','2025-11-12 11:15:51',0),(0,0,'2526','H','O',3379,1,0,'2025-11-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-11-12 11:17:24','shweta','2025-11-12 11:17:24',0),(0,0,'2526','H','O',3380,1,0,'2025-11-12','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 11:17:57','reception','2025-11-12 11:17:57',0),(0,0,'2526','H','O',3381,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-11-12 11:20:51','shweta','2025-11-12 11:20:51',0),(0,0,'2526','H','O',3382,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-12 11:21:44','janvi','2025-11-12 11:21:44',0),(0,0,'2526','H','O',3383,1,0,'2025-11-12','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-12 11:27:48','janvi','2025-11-12 11:27:48',0),(0,0,'2526','H','O',3384,1,0,'2025-11-12','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 11:28:01','reception','2025-11-12 11:28:01',0),(0,0,'2526','H','O',3385,1,0,'2025-11-12','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-11-12 11:31:23','shweta','2025-11-12 11:31:23',0),(0,0,'2526','H','O',3386,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 11:31:33','reception','2025-11-12 11:31:33',0),(0,0,'2526','H','O',3387,1,0,'2025-11-12','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 11:34:56','reception','2025-11-12 11:34:56',0),(0,0,'2526','H','O',3387,2,0,'2025-11-12','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 11:34:56','reception','2025-11-12 11:34:56',0),(0,0,'2526','H','O',3387,3,0,'2025-11-12','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 11:34:56','reception','2025-11-12 11:34:56',0),(0,0,'2526','H','O',3388,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-12 11:36:40','janvi','2025-11-12 11:36:40',0),(0,0,'2526','H','O',3389,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-12 11:39:54','manshi','2025-11-12 11:39:54',0),(0,0,'2526','H','O',3390,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 11:41:25','reception','2025-11-12 11:41:25',0),(0,0,'2526','H','O',3391,1,0,'2025-11-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-12 11:42:15','janvi','2025-11-12 11:42:15',0),(0,0,'2526','H','O',3392,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 11:46:31','reception','2025-11-12 11:46:31',0),(0,0,'2526','H','O',3393,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 11:48:23','reception','2025-11-12 11:48:23',0),(0,0,'2526','H','O',3394,1,0,'2025-11-12','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 11:51:17','reception','2025-11-12 11:51:17',0),(0,0,'2526','H','O',3394,2,0,'2025-11-12','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 11:51:17','reception','2025-11-12 11:51:17',0),(0,0,'2526','H','O',3395,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 11:51:49','drashti','2025-11-12 11:51:49',0),(0,0,'2526','H','O',3396,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-12 11:52:02','manshi','2025-11-12 11:52:02',0),(0,0,'2526','H','O',3397,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 11:56:00','reception','2025-11-12 11:56:00',0),(0,0,'2526','H','O',3398,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 11:57:49','reception','2025-11-12 11:57:49',0),(0,0,'2526','H','O',3399,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-12 12:01:19','manshi','2025-11-12 12:01:19',0),(0,0,'2526','H','O',3400,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 12:02:44','reception','2025-11-12 12:02:44',0),(0,0,'2526','H','O',3401,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 12:05:32','drashti','2025-11-12 12:05:32',0),(0,0,'2526','H','O',3402,1,0,'2025-11-12','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 12:06:46','reception','2025-11-12 13:16:30',0),(0,0,'2526','H','O',3403,1,0,'2025-11-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 12:11:15','drashti','2025-11-12 12:11:15',0),(0,0,'2526','H','O',3404,1,0,'2025-11-12','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 12:11:17','reception','2025-11-12 12:11:17',0),(0,0,'2526','H','O',3405,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 12:25:29','drashti','2025-11-12 12:25:29',0),(0,0,'2526','H','O',3406,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-12 12:25:44','janvi','2025-11-12 12:25:44',0),(0,0,'2526','H','O',3407,1,0,'2025-11-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-12 12:27:09','reception','2025-11-12 12:27:09',0),(0,0,'2526','H','O',3408,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 12:28:47','reception','2025-11-12 12:28:47',0),(0,0,'2526','H','O',3409,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-12 12:40:41','janvi','2025-11-12 12:40:41',0),(0,0,'2526','H','O',3410,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-12 12:43:17','drashti','2025-11-12 12:43:17',0),(0,0,'2526','H','O',3411,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-12 12:43:51','janvi','2025-11-12 12:43:51',0),(0,0,'2526','H','O',3412,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 12:50:40','drashti','2025-11-12 12:50:40',0),(0,0,'2526','H','O',3413,1,0,'2025-11-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 12:54:27','drashti','2025-11-12 12:54:27',0),(0,0,'2526','H','O',3414,1,0,'2025-11-12','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-12 12:59:08','janvi','2025-11-12 12:59:08',0),(0,0,'2526','H','O',3415,1,0,'2025-11-12','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 13:00:29','drashti','2025-11-12 13:00:29',0),(0,0,'2526','H','O',3415,2,0,'2025-11-12','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 13:00:29','drashti','2025-11-12 13:00:29',0),(0,0,'2526','H','O',3415,3,0,'2025-11-12','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 13:00:29','drashti','2025-11-12 13:00:29',0),(0,0,'2526','H','O',3416,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-12 13:11:53','manshi','2025-11-12 13:11:53',0),(0,0,'2526','H','O',3417,1,0,'2025-11-12','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 13:16:30','reception','2025-11-12 13:16:30',0),(0,0,'2526','H','O',3418,1,0,'2025-11-12','00:00:00','CASE',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 13:19:28','reception','2025-11-12 13:19:28',0),(0,0,'2526','H','O',3419,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-12 13:19:46','manshi','2025-11-12 13:19:46',0),(0,0,'2526','H','O',3420,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-12 16:01:33','reception','2025-11-12 16:01:33',0),(0,0,'2526','H','O',3421,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 16:14:29','reception','2025-11-12 16:14:29',0),(0,0,'2526','H','O',3422,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 16:48:55','reception','2025-11-12 16:48:55',0),(0,0,'2526','H','O',3423,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-12 16:59:49','reception','2025-11-12 16:59:49',0),(0,0,'2526','H','O',3424,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 17:06:24','reception','2025-11-12 17:06:24',0),(0,0,'2526','H','O',3425,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-12 17:07:04','drashti','2025-11-12 17:07:04',0),(0,0,'2526','H','O',3426,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 17:08:20','reception','2025-11-12 17:08:20',0),(0,0,'2526','H','O',3427,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 17:12:25','reception','2025-11-12 17:41:51',0),(0,0,'2526','H','O',3428,1,0,'2025-11-12','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 17:19:09','reception','2025-11-12 17:19:09',0),(0,0,'2526','H','O',3429,1,0,'2025-11-12','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 17:20:41','reception','2025-11-12 17:20:41',0),(0,0,'2526','H','O',3430,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 17:24:54','drashti','2025-11-12 17:24:54',0),(0,0,'2526','H','O',3431,1,0,'2025-11-12','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 17:26:19','reception','2025-11-12 17:26:19',0),(0,0,'2526','H','O',3432,1,0,'2025-11-12','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-12 17:27:34','drashti','2025-11-12 17:27:34',0),(0,0,'2526','H','O',3433,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-12 17:29:33','janvi','2025-11-12 17:29:33',0),(0,0,'2526','H','O',3434,1,0,'2025-11-12','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 17:29:44','reception','2025-11-12 17:29:44',0),(0,0,'2526','H','O',3435,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 17:32:23','reception','2025-11-12 17:32:23',0),(0,0,'2526','H','O',3436,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 17:34:14','reception','2025-11-12 17:34:14',0),(0,0,'2526','H','O',3437,1,0,'2025-11-12','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-12 17:34:51','drashti','2025-11-12 17:34:51',0),(0,0,'2526','H','O',3438,1,0,'2025-11-12','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-12 17:36:17','janvi','2025-11-12 17:36:17',0),(0,0,'2526','H','O',3439,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 17:38:22','reception','2025-11-12 17:38:22',0),(0,0,'2526','H','O',3440,1,0,'2025-11-12','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-12 17:40:34','janvi','2025-11-12 17:40:34',0),(0,0,'2526','H','O',3441,1,0,'2025-11-12','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-12 17:40:54','drashti','2025-11-12 17:40:54',0),(0,0,'2526','H','O',3442,1,0,'2025-11-12','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 17:41:51','reception','2025-11-12 17:41:51',0),(0,0,'2526','H','O',3443,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 17:42:55','drashti','2025-11-12 17:42:55',0),(0,0,'2526','H','O',3444,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 17:43:09','reception','2025-11-12 17:43:09',0),(0,0,'2526','H','O',3445,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 17:49:44','reception','2025-11-12 17:49:44',0),(0,0,'2526','H','O',3446,1,0,'2025-11-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-12 17:50:16','janvi','2025-11-12 17:50:16',0),(0,0,'2526','H','O',3447,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-12 17:53:54','drashti','2025-11-12 17:53:54',0),(0,0,'2526','H','O',3448,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-12 17:54:56','reception','2025-11-12 17:54:56',0),(0,0,'2526','H','O',3449,1,0,'2025-11-12','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 17:55:39','reception','2025-11-12 17:55:39',0),(0,0,'2526','H','O',3450,1,0,'2025-11-12','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-12 17:57:21','manshi','2025-11-12 17:57:21',0),(0,0,'2526','H','O',3451,1,0,'2025-11-12','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 17:58:25','reception','2025-11-12 17:58:25',0),(0,0,'2526','H','O',3452,1,0,'2025-11-12','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-12 18:00:03','manshi','2025-11-12 18:00:03',0),(0,0,'2526','H','O',3453,1,0,'2025-11-12','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 18:00:30','reception','2025-11-12 18:00:30',0),(0,0,'2526','H','O',3453,2,0,'2025-11-12','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 18:00:30','reception','2025-11-12 18:00:30',0),(0,0,'2526','H','O',3453,3,0,'2025-11-12','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 18:00:30','reception','2025-11-12 18:00:30',0),(0,0,'2526','H','O',3454,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 18:00:48','drashti','2025-11-12 18:00:48',0),(0,0,'2526','H','O',3455,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 18:05:21','reception','2025-11-12 18:05:21',0),(0,0,'2526','H','O',3456,1,0,'2025-11-12','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-12 18:09:29','janvi','2025-11-12 18:09:29',0),(0,0,'2526','H','O',3457,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 18:10:03','reception','2025-11-12 18:10:03',0),(0,0,'2526','H','O',3458,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 18:10:29','drashti','2025-11-12 18:10:29',0),(0,0,'2526','H','O',3459,1,0,'2025-11-12','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 18:14:00','reception','2025-11-12 18:14:00',0),(0,0,'2526','H','O',3460,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-12 18:15:22','janvi','2025-11-12 18:15:22',0),(0,0,'2526','H','O',3461,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 18:16:29','drashti','2025-11-12 18:16:29',0),(0,0,'2526','H','O',3462,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-12 18:18:21','reception','2025-11-12 18:18:21',0),(0,0,'2526','H','O',3463,1,0,'2025-11-12','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-12 18:19:55','drashti','2025-11-12 18:19:55',0),(0,0,'2526','H','O',3464,1,0,'2025-11-12','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-12 18:21:01','janvi','2025-11-12 18:21:01',0),(0,0,'2526','H','O',3465,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 18:24:09','drashti','2025-11-12 18:24:09',0),(0,0,'2526','H','O',3466,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 18:28:36','drashti','2025-11-12 18:28:36',0),(0,0,'2526','H','O',3467,1,0,'2025-11-12','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 18:29:18','reception','2025-11-12 18:29:18',0),(0,0,'2526','H','O',3467,2,0,'2025-11-12','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 18:29:18','reception','2025-11-12 18:29:18',0),(0,0,'2526','H','O',3467,3,0,'2025-11-12','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 18:29:18','reception','2025-11-12 18:29:18',0),(0,0,'2526','H','O',3468,1,0,'2025-11-12','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-12 18:29:25','janvi','2025-11-12 18:29:25',0),(0,0,'2526','H','O',3469,1,0,'2025-11-12','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-12 18:38:51','drashti','2025-11-12 18:38:51',0),(0,0,'2526','H','O',3470,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-12 18:40:04','janvi','2025-11-12 18:40:04',0),(0,0,'2526','H','O',3471,1,0,'2025-11-12','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 18:46:36','reception','2025-11-12 18:46:36',0),(0,0,'2526','H','O',3472,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 18:50:14','drashti','2025-11-12 18:50:14',0),(0,0,'2526','H','O',3473,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 18:54:04','drashti','2025-11-12 18:54:04',0),(0,0,'2526','H','O',3474,1,0,'2025-11-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-12 18:54:54','reception','2025-11-12 18:54:54',0),(0,0,'2526','H','O',3475,1,0,'2025-11-12','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 18:55:55','reception','2025-11-12 18:55:55',0),(0,0,'2526','H','O',3476,1,0,'2025-11-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 18:58:12','drashti','2025-11-12 18:58:12',0),(0,0,'2526','H','O',3477,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-12 18:59:16','reception','2025-11-12 18:59:16',0),(0,0,'2526','H','O',3478,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-12 19:01:18','manshi','2025-11-12 19:57:27',0),(0,0,'2526','H','O',3479,1,0,'2025-11-12','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 19:02:07','reception','2025-11-12 19:02:07',0),(0,0,'2526','H','O',3479,2,0,'2025-11-12','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 19:02:07','reception','2025-11-12 19:02:07',0),(0,0,'2526','H','O',3479,3,0,'2025-11-12','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 19:02:07','reception','2025-11-12 19:02:07',0),(0,0,'2526','H','O',3480,1,0,'2025-11-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 19:05:01','drashti','2025-11-12 19:05:01',0),(0,0,'2526','H','O',3481,1,0,'2025-11-12','00:00:00','XRY0017',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-12 19:09:52','manshi','2025-11-12 19:09:52',0),(0,0,'2526','H','O',3482,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-12 19:13:37','janvi','2025-11-12 19:13:37',0),(0,0,'2526','H','O',3483,1,0,'2025-11-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 19:14:14','drashti','2025-11-12 19:14:14',0),(0,0,'2526','H','O',3484,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-12 19:14:15','janvi','2025-11-12 19:14:15',0),(0,0,'2526','H','O',3485,1,0,'2025-11-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 19:17:41','drashti','2025-11-12 20:57:23',0),(0,0,'2526','H','O',3486,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 19:27:23','reception','2025-11-12 19:27:23',0),(0,0,'2526','H','O',3487,1,0,'2025-11-12','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 19:28:47','reception','2025-11-12 19:28:47',0),(0,0,'2526','H','O',3488,1,0,'2025-11-12','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 19:36:37','reception','2025-11-12 19:36:37',0),(0,0,'2526','H','O',3489,1,0,'2025-11-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 19:37:34','drashti','2025-11-12 20:31:02',0),(0,0,'2526','H','O',3490,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-12 19:38:34','manshi','2025-11-12 19:49:01',0),(0,0,'2526','H','O',3491,1,0,'2025-11-12','00:00:00','XRY0244',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-12 19:48:34','manshi','2025-11-12 19:48:34',0),(0,0,'2526','H','O',3492,1,0,'2025-11-12','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-12 19:49:01','manshi','2025-11-12 19:49:01',0),(0,0,'2526','H','O',3493,1,0,'2025-11-12','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-12 19:53:06','reception','2025-11-12 19:53:06',0),(0,0,'2526','H','O',3494,1,0,'2025-11-12','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-12 19:57:27','manshi','2025-11-12 19:57:27',0),(0,0,'2526','H','O',3495,1,0,'2025-11-12','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-12 19:58:35','manshi','2025-11-12 19:58:35',0),(0,0,'2526','H','O',3496,1,0,'2025-11-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-12 19:59:04','drashti','2025-11-12 19:59:04',0),(0,0,'2526','H','O',3497,1,0,'2025-11-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 20:00:55','drashti','2025-11-12 20:00:55',0),(0,0,'2526','H','O',3498,1,0,'2025-11-12','00:00:00','OPWD0023',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-12 20:08:35','janvi','2025-11-12 20:08:35',0),(0,0,'2526','H','O',3499,1,0,'2025-11-12','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 20:16:44','reception','2025-11-12 20:16:44',0),(0,0,'2526','H','O',3499,2,0,'2025-11-12','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 20:16:44','reception','2025-11-12 20:16:44',0),(0,0,'2526','H','O',3499,3,0,'2025-11-12','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-12 20:16:44','reception','2025-11-12 20:16:44',0),(0,0,'2526','H','O',3500,1,0,'2025-11-12','00:00:00','OPWD0023',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-12 20:28:53','janvi','2025-11-12 20:28:53',0),(0,0,'2526','H','O',3501,1,0,'2025-11-12','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-12 20:30:14','drashti','2025-11-12 20:30:14',0),(0,0,'2526','H','O',3502,1,0,'2025-11-12','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-12 20:30:17','janvi','2025-11-12 20:30:17',0),(0,0,'2526','H','O',3503,1,0,'2025-11-12','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 20:31:02','drashti','2025-11-12 20:31:02',0),(0,0,'2526','H','O',3504,1,0,'2025-11-12','00:00:00','CASE',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 20:32:32','drashti','2025-11-12 20:32:32',0),(0,0,'2526','H','O',3505,1,0,'2025-11-12','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-12 20:57:23','drashti','2025-11-12 20:57:23',0),(0,0,'2526','H','O',3506,1,0,'2025-11-13','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 09:00:23','reception','2025-11-13 09:00:23',0),(0,0,'2526','H','O',3507,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-13 09:13:05','janvi','2025-11-13 09:13:05',0),(0,0,'2526','H','O',3508,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-13 09:13:15','janvi','2025-11-13 09:13:15',0),(0,0,'2526','H','O',3509,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-13 09:35:44','janvi','2025-11-13 09:35:44',0),(0,0,'2526','H','O',3510,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 10:00:49','reception','2025-11-13 10:00:49',0),(0,0,'2526','H','O',3511,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 10:08:06','reception','2025-11-13 10:08:06',0),(0,0,'2526','H','O',3512,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 10:18:22','reception','2025-11-13 10:18:22',0),(0,0,'2526','H','O',3513,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 10:24:42','reception','2025-11-13 10:24:42',0),(0,0,'2526','H','O',3514,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 10:26:11','reception','2025-11-13 10:26:11',0),(0,0,'2526','H','O',3515,1,0,'2025-11-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 10:26:50','priyanshi','2025-11-13 10:26:50',0),(0,0,'2526','H','O',3516,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 10:29:21','reception','2025-11-13 10:29:21',0),(0,0,'2526','H','O',3517,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 10:34:12','reception','2025-11-13 10:34:12',0),(0,0,'2526','H','O',3518,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 10:37:44','reception','2025-11-13 10:37:44',0),(0,0,'2526','H','O',3519,1,0,'2025-11-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 10:38:43','priyanshi','2025-11-13 10:38:43',0),(0,0,'2526','H','O',3520,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 10:42:39','reception','2025-11-13 10:42:39',0),(0,0,'2526','H','O',3521,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 10:46:26','reception','2025-11-13 10:46:26',0),(0,0,'2526','H','O',3522,1,0,'2025-11-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 10:48:42','reception','2025-11-13 10:48:42',0),(0,0,'2526','H','O',3523,1,0,'2025-11-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-13 10:54:44','priyanshi','2025-11-13 10:54:44',0),(0,0,'2526','H','O',3524,1,0,'2025-11-13','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 11:02:56','reception','2025-11-13 11:02:56',0),(0,0,'2526','H','O',3525,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 11:04:20','priyanshi','2025-11-13 11:04:20',0),(0,0,'2526','H','O',3526,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 11:07:31','priyanshi','2025-11-13 11:07:31',0),(0,0,'2526','H','O',3527,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 11:08:23','reception','2025-11-13 11:08:23',0),(0,0,'2526','H','O',3528,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-13 11:09:31','janvi','2025-11-13 11:09:31',0),(0,0,'2526','H','O',3529,1,0,'2025-11-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 11:12:43','priyanshi','2025-11-13 11:12:43',0),(0,0,'2526','H','O',3530,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 11:12:57','reception','2025-11-13 11:12:57',0),(0,0,'2526','H','O',3531,1,0,'2025-11-13','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 11:15:35','reception','2025-11-13 11:15:35',0),(0,0,'2526','H','O',3532,1,0,'2025-11-13','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 11:19:07','reception','2025-11-13 11:19:07',0),(0,0,'2526','H','O',3533,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 11:22:59','priyanshi','2025-11-13 11:22:59',0),(0,0,'2526','H','O',3534,1,0,'2025-11-13','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-11-13 11:24:56','shweta','2025-11-13 11:24:56',0),(0,0,'2526','H','O',3534,2,0,'2025-11-13','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-11-13 11:24:56','shweta','2025-11-13 11:24:56',0),(0,0,'2526','H','O',3535,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-11-13 11:26:09','shweta','2025-11-13 11:26:09',0),(0,0,'2526','H','O',3536,1,0,'2025-11-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 11:26:52','reception','2025-11-13 11:26:52',0),(0,0,'2526','H','O',3536,2,0,'2025-11-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 11:26:52','reception','2025-11-13 11:26:52',0),(0,0,'2526','H','O',3536,3,0,'2025-11-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 11:26:52','reception','2025-11-13 11:26:52',0),(0,0,'2526','H','O',3537,1,0,'2025-11-13','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-11-13 11:27:21','shweta','2025-11-13 11:27:21',0),(0,0,'2526','H','O',3538,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-13 11:29:11','janvi','2025-11-13 11:29:11',0),(0,0,'2526','H','O',3539,1,0,'2025-11-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-13 11:35:20','reception','2025-11-13 11:35:20',0),(0,0,'2526','H','O',3540,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-13 11:38:20','janvi','2025-11-13 11:38:20',0),(0,0,'2526','H','O',3541,1,0,'2025-11-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-13 11:38:29','manshi','2025-11-13 11:38:29',0),(0,0,'2526','H','O',3542,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-13 11:43:03','reception','2025-11-13 11:43:03',0),(0,0,'2526','H','O',3543,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 11:44:42','reception','2025-11-13 11:44:42',0),(0,0,'2526','H','O',3544,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 11:47:31','reception','2025-11-13 11:47:31',0),(0,0,'2526','H','O',3545,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 11:48:23','priyanshi','2025-11-13 11:48:23',0),(0,0,'2526','H','O',3546,1,0,'2025-11-13','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 11:55:34','reception','2025-11-13 11:55:34',0),(0,0,'2526','H','O',3547,1,0,'2025-11-13','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-13 11:57:32','janvi','2025-11-13 11:57:32',0),(0,0,'2526','H','O',3548,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 12:10:22','reception','2025-11-13 12:10:22',0),(0,0,'2526','H','O',3549,1,0,'2025-11-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 12:29:12','reception','2025-11-13 12:29:12',0),(0,0,'2526','H','O',3550,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 12:30:22','priyanshi','2025-11-13 12:30:22',0),(0,0,'2526','H','O',3551,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-13 12:35:26','janvi','2025-11-13 12:35:26',0),(0,0,'2526','H','O',3552,1,0,'2025-11-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 12:38:38','reception','2025-11-13 12:38:38',0),(0,0,'2526','H','O',3552,2,0,'2025-11-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 12:38:38','reception','2025-11-13 12:38:38',0),(0,0,'2526','H','O',3553,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 12:43:12','priyanshi','2025-11-13 12:43:12',0),(0,0,'2526','H','O',3554,1,0,'2025-11-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 12:44:51','priyanshi','2025-11-13 12:44:51',0),(0,0,'2526','H','O',3554,2,0,'2025-11-13','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 12:44:51','priyanshi','2025-11-13 12:44:51',0),(0,0,'2526','H','O',3555,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 12:47:06','priyanshi','2025-11-13 12:47:06',0),(0,0,'2526','H','O',3556,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-13 12:47:07','janvi','2025-11-13 12:47:07',0),(0,0,'2526','H','O',3557,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 12:52:37','reception','2025-11-13 12:52:37',0),(0,0,'2526','H','O',3558,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 12:58:59','reception','2025-11-13 12:58:59',0),(0,0,'2526','H','O',3559,1,0,'2025-11-13','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 13:07:14','reception','2025-11-13 13:07:14',0),(0,0,'2526','H','O',3560,1,0,'2025-11-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 13:13:08','reception','2025-11-13 13:13:08',0),(0,0,'2526','H','O',3560,2,0,'2025-11-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 13:13:08','reception','2025-11-13 13:13:08',0),(0,0,'2526','H','O',3560,3,0,'2025-11-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 13:13:08','reception','2025-11-13 13:13:08',0),(0,0,'2526','H','O',3561,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 13:21:16','priyanshi','2025-11-13 13:21:16',0),(0,0,'2526','H','O',3562,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 13:26:30','reception','2025-11-13 13:26:30',0),(0,0,'2526','H','O',3563,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 13:29:41','reception','2025-11-13 13:29:41',0),(0,0,'2526','H','O',3564,1,0,'2025-11-13','00:00:00','OPWD0033',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-13 13:30:03','janvi','2025-11-13 13:30:03',0),(0,0,'2526','H','O',3565,1,0,'2025-11-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 13:34:55','priyanshi','2025-11-13 13:34:55',0),(0,0,'2526','H','O',3566,1,0,'2025-11-13','00:00:00','OPWD0034',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 13:36:47','priyanshi','2025-11-13 13:36:47',0),(0,0,'2526','H','O',3567,1,0,'2025-11-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 13:44:42','reception','2025-11-13 13:44:42',0),(0,0,'2526','H','O',3568,1,0,'2025-11-13','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-13 13:54:09','priyanshi','2025-11-13 13:54:09',0),(0,0,'2526','H','O',3568,2,0,'2025-11-13','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 13:54:09','priyanshi','2025-11-13 13:54:09',0),(0,0,'2526','H','O',3568,3,0,'2025-11-13','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-13 13:54:09','priyanshi','2025-11-13 13:54:09',0),(0,0,'2526','H','O',3569,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 14:02:10','reception','2025-11-13 14:02:10',0),(0,0,'2526','H','O',3570,1,0,'2025-11-13','00:00:00','OPWD0034',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-11-13 14:03:32','shweta','2025-11-13 14:03:32',0),(0,0,'2526','H','O',3570,2,0,'2025-11-13','00:00:00','OPWD0033',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-11-13 14:03:32','shweta','2025-11-13 14:03:32',0),(0,0,'2526','H','O',3571,1,0,'2025-11-13','00:00:00','OPWD0034',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-11-13 14:17:15','shweta','2025-11-13 14:17:15',0),(0,0,'2526','H','O',3571,2,0,'2025-11-13','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-11-13 14:17:15','shweta','2025-11-13 14:17:15',0),(0,0,'2526','H','O',3572,1,0,'2025-11-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-11-13 15:00:16','shweta','2025-11-13 15:00:16',0),(0,0,'2526','H','O',3573,1,0,'2025-11-13','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-11-13 15:51:29','shweta','2025-11-13 15:51:29',0),(0,0,'2526','H','O',3573,2,0,'2025-11-13','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-11-13 15:51:29','shweta','2025-11-13 15:51:29',0),(0,0,'2526','H','O',3574,1,0,'2025-11-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 16:30:25','reception','2025-11-13 16:30:25',0),(0,0,'2526','H','O',3575,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 16:38:13','reception','2025-11-13 16:38:13',0),(0,0,'2526','H','O',3576,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 16:39:16','reception','2025-11-13 16:39:16',0),(0,0,'2526','H','O',3577,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 16:40:43','reception','2025-11-13 16:40:43',0),(0,0,'2526','H','O',3578,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 16:59:20','reception','2025-11-13 16:59:20',0),(0,0,'2526','H','O',3579,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 17:11:47','reception','2025-11-13 17:11:47',0),(0,0,'2526','H','O',3580,1,0,'2025-11-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 17:15:30','reception','2025-11-13 17:15:30',0),(0,0,'2526','H','O',3581,1,0,'2025-11-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 17:17:55','reception','2025-11-13 17:17:55',0),(0,0,'2526','H','O',3581,2,0,'2025-11-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 17:17:55','reception','2025-11-13 17:17:55',0),(0,0,'2526','H','O',3581,3,0,'2025-11-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 17:17:55','reception','2025-11-13 17:17:55',0),(0,0,'2526','H','O',3582,1,0,'2025-11-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-13 17:18:37','priyanshi','2025-11-13 17:18:37',0),(0,0,'2526','H','O',3583,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 17:26:21','reception','2025-11-13 17:26:21',0),(0,0,'2526','H','O',3584,1,0,'2025-11-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 17:32:44','reception','2025-11-13 17:32:44',0),(0,0,'2526','H','O',3585,1,0,'2025-11-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 17:40:34','reception','2025-11-13 17:40:34',0),(0,0,'2526','H','O',3585,2,0,'2025-11-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 17:40:34','reception','2025-11-13 17:40:34',0),(0,0,'2526','H','O',3585,3,0,'2025-11-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 17:40:34','reception','2025-11-13 17:40:34',0),(0,0,'2526','H','O',3586,1,0,'2025-11-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-13 17:48:05','reception','2025-11-13 17:48:05',0),(0,0,'2526','H','O',3587,1,0,'2025-11-13','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-11-13 17:48:13','shweta','2025-11-13 17:48:13',0),(0,0,'2526','H','O',3588,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 17:49:19','reception','2025-11-13 17:49:19',0),(0,0,'2526','H','O',3589,1,0,'2025-11-13','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 17:52:47','reception','2025-11-13 17:52:47',0),(0,0,'2526','H','O',3590,1,0,'2025-11-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 17:55:15','priyanshi','2025-11-13 17:55:15',0),(0,0,'2526','H','O',3591,1,0,'2025-11-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 17:56:11','reception','2025-11-13 17:56:11',0),(0,0,'2526','H','O',3591,2,0,'2025-11-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 17:56:11','reception','2025-11-13 17:56:11',0),(0,0,'2526','H','O',3591,3,0,'2025-11-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 17:56:11','reception','2025-11-13 17:56:11',0),(0,0,'2526','H','O',3592,1,0,'2025-11-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-13 18:01:15','manshi','2025-11-13 18:01:15',0),(0,0,'2526','H','O',3593,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-13 18:01:32','priyanshi','2025-11-13 18:01:32',0),(0,0,'2526','H','O',3594,1,0,'2025-11-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-11-13 18:05:43','shweta','2025-11-13 18:05:43',0),(0,0,'2526','H','O',3595,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-13 18:05:46','manshi','2025-11-13 18:05:46',0),(0,0,'2526','H','O',3596,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 18:05:58','priyanshi','2025-11-13 18:05:58',0),(0,0,'2526','H','O',3597,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 18:06:43','reception','2025-11-13 18:06:43',0),(0,0,'2526','H','O',3598,1,0,'2025-11-13','00:00:00','XRY0189',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-13 18:09:25','manshi','2025-11-13 18:09:25',0),(0,0,'2526','H','O',3599,1,0,'2025-11-13','00:00:00','OTCG0003',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-13 18:10:34','priyanshi','2025-11-13 18:10:34',0),(0,0,'2526','H','O',3600,1,0,'2025-11-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-13 18:11:00','reception','2025-11-13 18:11:00',0),(0,0,'2526','H','O',3601,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 18:12:12','priyanshi','2025-11-13 18:12:12',0),(0,0,'2526','H','O',3602,1,0,'2025-11-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 18:12:43','reception','2025-11-13 18:12:43',0),(0,0,'2526','H','O',3602,2,0,'2025-11-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 18:12:43','reception','2025-11-13 18:12:43',0),(0,0,'2526','H','O',3602,3,0,'2025-11-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-13 18:12:43','reception','2025-11-13 18:12:43',0),(0,0,'2526','H','O',3603,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-13 18:25:52','priyanshi','2025-11-13 18:25:52',0),(0,0,'2526','H','O',3604,1,0,'2025-11-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 18:26:12','priyanshi','2025-11-13 18:26:12',0),(0,0,'2526','H','O',3605,1,0,'2025-11-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-13 18:35:21','reception','2025-11-13 18:35:21',0),(0,0,'2526','H','O',3606,1,0,'2025-11-13','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 18:36:58','priyanshi','2025-11-13 18:36:58',0),(0,0,'2526','H','O',3606,2,0,'2025-11-13','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-13 18:36:58','priyanshi','2025-11-13 18:36:58',0),(0,0,'2526','H','O',3607,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-13 18:38:47','priyanshi','2025-11-13 18:38:47',0),(0,0,'2526','H','O',3608,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 18:38:48','reception','2025-11-13 18:38:48',0),(0,0,'2526','H','O',3609,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 18:39:48','priyanshi','2025-11-13 18:39:48',0),(0,0,'2526','H','O',3610,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-11-13 18:40:55','shweta','2025-11-13 18:40:55',0),(0,0,'2526','H','O',3611,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 18:45:16','priyanshi','2025-11-13 18:45:16',0),(0,0,'2526','H','O',3612,1,0,'2025-11-13','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 18:48:15','priyanshi','2025-11-13 18:48:15',0),(0,0,'2526','H','O',3613,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 18:56:01','priyanshi','2025-11-13 18:56:01',0),(0,0,'2526','H','O',3614,1,0,'2025-11-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-13 18:56:05','manshi','2025-11-13 18:56:05',0),(0,0,'2526','H','O',3615,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-13 18:59:11','reception','2025-11-13 18:59:11',0),(0,0,'2526','H','O',3616,1,0,'2025-11-13','00:00:00','OTCG0003',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-11-13 19:24:27','shweta','2025-11-13 19:24:27',0),(0,0,'2526','H','O',3617,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 19:25:21','priyanshi','2025-11-13 19:25:21',0),(0,0,'2526','H','O',3618,1,0,'2025-11-13','00:00:00','OPWD0023',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-11-13 19:25:34','shweta','2025-11-13 19:25:34',0),(0,0,'2526','H','O',3619,1,0,'2025-11-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 19:26:36','priyanshi','2025-11-13 19:26:36',0),(0,0,'2526','H','O',3620,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 19:31:13','priyanshi','2025-11-13 19:31:13',0),(0,0,'2526','H','O',3621,1,0,'2025-11-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-13 19:33:57','priyanshi','2025-11-13 19:33:57',0),(0,0,'2526','H','O',3622,1,0,'2025-11-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-11-13 19:59:14','shweta','2025-11-13 19:59:14',0),(0,0,'2526','H','O',3623,1,0,'2025-11-14','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-14 08:47:11','reception','2025-11-14 08:47:11',0),(0,0,'2526','H','O',3624,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-14 09:15:42','janvi','2025-11-14 09:15:42',0),(0,0,'2526','H','O',3625,1,0,'2025-11-14','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 09:51:50','reception','2025-11-14 09:51:50',0),(0,0,'2526','H','O',3626,1,0,'2025-11-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-14 10:18:29','reception','2025-11-14 10:18:29',0),(0,0,'2526','H','O',3627,1,0,'2025-11-14','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 10:19:58','reception','2025-11-14 10:19:58',0),(0,0,'2526','H','O',3628,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-14 10:20:06','janvi','2025-11-14 10:20:06',0),(0,0,'2526','H','O',3629,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 10:22:24','reception','2025-11-14 10:22:24',0),(0,0,'2526','H','O',3630,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 10:24:00','reception','2025-11-14 10:24:00',0),(0,0,'2526','H','O',3631,1,0,'2025-11-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-14 10:30:04','janvi','2025-11-14 10:30:04',0),(0,0,'2526','H','O',3632,1,0,'2025-11-14','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 10:32:32','reception','2025-11-14 10:32:32',0),(0,0,'2526','H','O',3633,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 10:34:44','reception','2025-11-14 10:34:44',0),(0,0,'2526','H','O',3634,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 10:36:50','reception','2025-11-14 10:36:50',0),(0,0,'2526','H','O',3635,1,0,'2025-11-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-14 10:42:35','janvi','2025-11-14 10:42:35',0),(0,0,'2526','H','O',3636,1,0,'2025-11-14','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 10:43:23','reception','2025-11-14 10:43:23',0),(0,0,'2526','H','O',3637,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 10:45:23','reception','2025-11-14 10:45:23',0),(0,0,'2526','H','O',3638,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-14 10:45:30','janvi','2025-11-14 10:45:30',0),(0,0,'2526','H','O',3639,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 10:49:32','reception','2025-11-14 10:49:32',0),(0,0,'2526','H','O',3640,1,0,'2025-11-14','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-14 10:51:28','janvi','2025-11-14 10:51:28',0),(0,0,'2526','H','O',3641,1,0,'2025-11-14','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-14 11:05:12','janvi','2025-11-14 11:05:12',0),(0,0,'2526','H','O',3642,1,0,'2025-11-14','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-14 11:06:04','urvashi','2025-11-14 11:06:04',0),(0,0,'2526','H','O',3643,1,0,'2025-11-14','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-14 11:06:57','reception','2025-11-14 11:06:57',0),(0,0,'2526','H','O',3644,1,0,'2025-11-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-14 11:09:31','janvi','2025-11-14 11:09:31',0),(0,0,'2526','H','O',3645,1,0,'2025-11-14','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-14 11:09:55','urvashi','2025-11-14 11:09:55',0),(0,0,'2526','H','O',3646,1,0,'2025-11-14','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-14 11:11:03','reception','2025-11-14 11:11:03',0),(0,0,'2526','H','O',3646,2,0,'2025-11-14','00:00:00','NEU10020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-14 11:11:03','reception','2025-11-14 11:11:03',0),(0,0,'2526','H','O',3647,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 11:18:00','reception','2025-11-14 11:18:00',0),(0,0,'2526','H','O',3648,1,0,'2025-11-14','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-14 11:21:44','reception','2025-11-14 11:21:44',0),(0,0,'2526','H','O',3648,2,0,'2025-11-14','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-14 11:21:44','reception','2025-11-14 11:21:44',0),(0,0,'2526','H','O',3648,3,0,'2025-11-14','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-14 11:21:44','reception','2025-11-14 11:21:44',0),(0,0,'2526','H','O',3648,4,0,'2025-11-14','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-14 11:21:44','reception','2025-11-14 11:21:44',0),(0,0,'2526','H','O',3649,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 11:26:48','reception','2025-11-14 11:26:48',0),(0,0,'2526','H','O',3650,1,0,'2025-11-14','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-14 11:27:17','janvi','2025-11-14 11:27:17',0),(0,0,'2526','H','O',3651,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-14 11:28:14','urvashi','2025-11-14 11:28:14',0),(0,0,'2526','H','O',3652,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-14 11:29:27','janvi','2025-11-14 11:29:27',0),(0,0,'2526','H','O',3653,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-14 11:34:54','urvashi','2025-11-14 13:00:43',0),(0,0,'2526','H','O',3654,1,0,'2025-11-14','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 11:38:53','reception','2025-11-14 11:38:53',0),(0,0,'2526','H','O',3655,1,0,'2025-11-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-14 11:39:11','urvashi','2025-11-14 11:39:11',0),(0,0,'2526','H','O',3656,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 11:42:19','reception','2025-11-14 11:42:19',0),(0,0,'2526','H','O',3657,1,0,'2025-11-14','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-14 11:46:54','reception','2025-11-14 11:46:54',0),(0,0,'2526','H','O',3658,1,0,'2025-11-14','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-14 11:47:11','janvi','2025-11-14 11:47:11',0),(0,0,'2526','H','O',3659,1,0,'2025-11-14','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-14 11:51:19','urvashi','2025-11-14 11:51:19',0),(0,0,'2526','H','O',3660,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-14 11:52:27','janvi','2025-11-14 11:52:27',0),(0,0,'2526','H','O',3661,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-14 11:54:22','urvashi','2025-11-14 11:54:22',0),(0,0,'2526','H','O',3662,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 11:57:05','reception','2025-11-14 11:57:05',0),(0,0,'2526','H','O',3663,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-14 12:02:48','janvi','2025-11-14 12:02:48',0),(0,0,'2526','H','O',3664,1,0,'2025-11-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-14 12:03:07','reception','2025-11-14 12:03:07',0),(0,0,'2526','H','O',3665,1,0,'2025-11-14','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-14 12:04:09','manshi','2025-11-14 12:04:09',0),(0,0,'2526','H','O',3666,1,0,'2025-11-14','00:00:00','EDPR0016',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-14 12:08:03','reception','2025-11-14 12:08:03',0),(0,0,'2526','H','O',3667,1,0,'2025-11-14','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-14 12:09:01','janvi','2025-11-14 12:09:01',0),(0,0,'2526','H','O',3668,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-11-14 12:09:17','shweta','2025-11-14 12:09:17',0),(0,0,'2526','H','O',3669,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-14 12:09:29','manshi','2025-11-14 12:09:29',0),(0,0,'2526','H','O',3670,1,0,'2025-11-14','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-14 12:14:06','manshi','2025-11-14 12:14:06',0),(0,0,'2526','H','O',3671,1,0,'2025-11-14','00:00:00','OETR0003',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-14 12:20:46','reception','2025-11-14 12:20:46',0),(0,0,'2526','H','O',3672,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-14 12:21:53','janvi','2025-11-14 12:21:53',0),(0,0,'2526','H','O',3673,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-14 12:33:14','manshi','2025-11-14 12:33:14',0),(0,0,'2526','H','O',3674,1,0,'2025-11-14','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-14 12:36:32','reception','2025-11-14 12:36:32',0),(0,0,'2526','H','O',3675,1,0,'2025-11-14','00:00:00','OPWD0023',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-14 12:37:50','janvi','2025-11-14 12:37:50',0),(0,0,'2526','H','O',3676,1,0,'2025-11-14','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-14 12:42:11','manshi','2025-11-14 12:42:11',0),(0,0,'2526','H','O',3677,1,0,'2025-11-14','00:00:00','OPWD0030',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-14 12:46:24','janvi','2025-11-14 12:47:38',0),(0,0,'2526','H','O',3678,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 12:47:35','reception','2025-11-14 12:47:35',0),(0,0,'2526','H','O',3679,1,0,'2025-11-14','00:00:00','OPWD0030',0,-1.00,1000,-1000,'P',0,0,-1000.00,0.00,0.00,-1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-14 12:47:38','janvi','2025-11-14 12:47:38',0),(0,0,'2526','H','O',3680,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-14 12:50:20','urvashi','2025-11-14 12:50:20',0),(0,0,'2526','H','O',3681,1,0,'2025-11-14','00:00:00','OPWD0030',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-14 12:51:39','janvi','2025-11-14 12:51:39',0),(0,0,'2526','H','O',3682,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-14 12:52:38','manshi','2025-11-14 12:52:38',0),(0,0,'2526','H','O',3683,1,0,'2025-11-14','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-14 13:00:43','urvashi','2025-11-14 13:00:43',0),(0,0,'2526','H','O',3684,1,0,'2025-11-14','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-14 13:10:00','manshi','2025-11-14 13:10:00',0),(0,0,'2526','H','O',3685,1,0,'2025-11-14','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-14 13:13:41','manshi','2025-11-14 13:13:41',0),(0,0,'2526','H','O',3686,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-14 13:28:35','reception','2025-11-14 13:28:35',0),(0,0,'2526','H','O',3687,1,0,'2025-11-14','00:00:00','LAB0817',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-11-14 14:28:32','shweta','2025-11-14 14:28:32',0),(0,0,'2526','H','O',3688,1,0,'2025-11-14','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-11-14 15:30:13','shweta','2025-11-14 15:30:13',0),(0,0,'2526','H','O',3688,2,0,'2025-11-14','00:00:00','XRY0056',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-11-14 15:30:13','shweta','2025-11-14 15:30:13',0),(0,0,'2526','H','O',3688,3,0,'2025-11-14','00:00:00','WPRC0037',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-11-14 15:30:13','shweta','2025-11-14 15:30:13',0),(0,0,'2526','H','O',3689,1,0,'2025-11-14','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 16:26:14','reception','2025-11-14 16:26:14',0),(0,0,'2526','H','O',3690,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 16:33:51','reception','2025-11-14 16:33:51',0),(0,0,'2526','H','O',3691,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 16:36:48','reception','2025-11-14 16:36:48',0),(0,0,'2526','H','O',3692,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 16:40:11','reception','2025-11-14 16:40:11',0),(0,0,'2526','H','O',3693,1,0,'2025-11-14','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 16:44:09','reception','2025-11-14 16:44:09',0),(0,0,'2526','H','O',3694,1,0,'2025-11-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-14 17:03:21','drashti','2025-11-14 17:03:21',0),(0,0,'2526','H','O',3695,1,0,'2025-11-14','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 17:07:52','reception','2025-11-14 17:07:52',0),(0,0,'2526','H','O',3696,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 17:12:21','reception','2025-11-14 17:12:21',0),(0,0,'2526','H','O',3697,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-14 17:23:14','reception','2025-11-14 17:23:14',0),(0,0,'2526','H','O',3698,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 17:30:18','reception','2025-11-14 17:30:18',0),(0,0,'2526','H','O',3699,1,0,'2025-11-14','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-14 17:34:27','priyanshi','2025-11-14 17:34:27',0),(0,0,'2526','H','O',3700,1,0,'2025-11-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-14 17:36:46','drashti','2025-11-14 17:36:46',0),(0,0,'2526','H','O',3701,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 17:39:19','reception','2025-11-14 17:39:19',0),(0,0,'2526','H','O',3702,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-14 17:42:29','drashti','2025-11-14 17:42:29',0),(0,0,'2526','H','O',3703,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-14 17:42:33','janvi','2025-11-14 17:42:33',0),(0,0,'2526','H','O',3704,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 17:44:03','reception','2025-11-14 17:44:03',0),(0,0,'2526','H','O',3705,1,0,'2025-11-14','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-14 17:57:59','reception','2025-11-14 17:57:59',0),(0,0,'2526','H','O',3705,2,0,'2025-11-14','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-14 17:57:59','reception','2025-11-14 17:57:59',0),(0,0,'2526','H','O',3705,3,0,'2025-11-14','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-14 17:57:59','reception','2025-11-14 17:57:59',0),(0,0,'2526','H','O',3706,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 18:00:47','reception','2025-11-14 18:00:47',0),(0,0,'2526','H','O',3707,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-14 18:00:57','drashti','2025-11-14 18:00:57',0),(0,0,'2526','H','O',3708,1,0,'2025-11-14','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-14 18:02:36','reception','2025-11-14 18:02:36',0),(0,0,'2526','H','O',3708,2,0,'2025-11-14','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-14 18:02:36','reception','2025-11-14 18:02:36',0),(0,0,'2526','H','O',3709,1,0,'2025-11-14','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-14 18:10:33','reception','2025-11-14 18:10:33',0),(0,0,'2526','H','O',3709,2,0,'2025-11-14','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-14 18:10:33','reception','2025-11-14 18:10:33',0),(0,0,'2526','H','O',3709,3,0,'2025-11-14','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-14 18:10:33','reception','2025-11-14 18:10:33',0),(0,0,'2526','H','O',3710,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-14 18:10:37','janvi','2025-11-14 18:10:37',0),(0,0,'2526','H','O',3711,1,0,'2025-11-14','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-14 18:11:01','manshi','2025-11-14 18:11:01',0),(0,0,'2526','H','O',3712,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 18:15:20','reception','2025-11-14 18:15:20',0),(0,0,'2526','H','O',3713,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 18:22:15','reception','2025-11-14 18:22:15',0),(0,0,'2526','H','O',3714,1,0,'2025-11-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-14 18:22:57','janvi','2025-11-14 18:22:57',0),(0,0,'2526','H','O',3715,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-14 18:24:42','reception','2025-11-14 18:24:42',0),(0,0,'2526','H','O',3716,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-14 18:25:03','manshi','2025-11-14 18:25:03',0),(0,0,'2526','H','O',3717,1,0,'2025-11-14','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-14 18:25:44','manshi','2025-11-14 18:25:44',0),(0,0,'2526','H','O',3718,1,0,'2025-11-14','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-14 18:26:20','manshi','2025-11-14 18:26:20',0),(0,0,'2526','H','O',3719,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-14 18:26:55','reception','2025-11-14 18:26:55',0),(0,0,'2526','H','O',3720,1,0,'2025-11-14','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-14 18:31:11','manshi','2025-11-14 18:31:11',0),(0,0,'2526','H','O',3721,1,0,'2025-11-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-14 18:32:14','drashti','2025-11-14 18:32:14',0),(0,0,'2526','H','O',3721,2,0,'2025-11-14','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-14 18:32:14','drashti','2025-11-14 18:32:14',0),(0,0,'2526','H','O',3722,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-14 18:39:21','drashti','2025-11-14 18:39:21',0),(0,0,'2526','H','O',3723,1,0,'2025-11-14','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-14 18:47:27','janvi','2025-11-14 18:47:27',0),(0,0,'2526','H','O',3724,1,0,'2025-11-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-14 18:48:31','drashti','2025-11-14 18:48:31',0),(0,0,'2526','H','O',3725,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-14 18:51:21','drashti','2025-11-14 18:51:21',0),(0,0,'2526','H','O',3726,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-14 18:52:14','reception','2025-11-14 18:52:14',0),(0,0,'2526','H','O',3727,1,0,'2025-11-14','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-14 18:52:28','manshi','2025-11-14 18:52:28',0),(0,0,'2526','H','O',3728,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-14 18:53:30','janvi','2025-11-14 18:53:30',0),(0,0,'2526','H','O',3729,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-14 18:54:00','drashti','2025-11-14 18:54:00',0),(0,0,'2526','H','O',3730,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-14 19:06:30','drashti','2025-11-14 19:06:30',0),(0,0,'2526','H','O',3731,1,0,'2025-11-14','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-14 19:13:12','drashti','2025-11-14 19:13:12',0),(0,0,'2526','H','O',3732,1,0,'2025-11-14','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-14 19:28:38','manshi','2025-11-14 19:28:38',0),(0,0,'2526','H','O',3733,1,0,'2025-11-14','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-14 19:37:27','janvi','2025-11-14 19:37:27',0),(0,0,'2526','H','O',3734,1,0,'2025-11-14','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-14 20:13:41','drashti','2025-11-14 20:13:41',0),(0,0,'2526','H','O',3735,1,0,'2025-11-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-15 09:36:34','janvi','2025-11-15 09:36:34',0),(0,0,'2526','H','O',3736,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 09:52:00','reception','2025-11-15 09:52:00',0),(0,0,'2526','H','O',3737,1,0,'2025-11-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-15 10:12:34','drashti','2025-11-15 10:12:34',0),(0,0,'2526','H','O',3738,1,0,'2025-11-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 10:25:11','reception','2025-11-15 10:25:11',0),(0,0,'2526','H','O',3739,1,0,'2025-11-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-15 10:26:20','drashti','2025-11-15 10:26:20',0),(0,0,'2526','H','O',3740,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-15 10:28:54','manshi','2025-11-15 10:28:54',0),(0,0,'2526','H','O',3741,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 10:29:19','reception','2025-11-15 10:29:19',0),(0,0,'2526','H','O',3742,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-15 10:30:48','janvi','2025-11-15 10:30:48',0),(0,0,'2526','H','O',3743,1,0,'2025-11-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 10:37:12','reception','2025-11-15 10:37:12',0),(0,0,'2526','H','O',3744,1,0,'2025-11-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 10:37:23','reception','2025-11-15 11:34:43',0),(0,0,'2526','H','O',3745,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-15 10:37:51','drashti','2025-11-15 10:37:51',0),(0,0,'2526','H','O',3746,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 10:49:36','reception','2025-11-15 10:49:36',0),(0,0,'2526','H','O',3747,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 10:55:22','reception','2025-11-15 10:55:22',0),(0,0,'2526','H','O',3748,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 10:58:58','reception','2025-11-15 10:58:58',0),(0,0,'2526','H','O',3749,1,0,'2025-11-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-15 11:04:56','drashti','2025-11-15 11:04:56',0),(0,0,'2526','H','O',3750,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 11:04:57','reception','2025-11-15 11:04:57',0),(0,0,'2526','H','O',3751,1,0,'2025-11-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 11:09:03','reception','2025-11-15 11:09:03',0),(0,0,'2526','H','O',3751,2,0,'2025-11-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 11:09:03','reception','2025-11-15 11:09:03',0),(0,0,'2526','H','O',3751,3,0,'2025-11-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 11:09:03','reception','2025-11-15 11:09:03',0),(0,0,'2526','H','O',3752,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 11:19:33','reception','2025-11-15 11:19:33',0),(0,0,'2526','H','O',3753,1,0,'2025-11-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 11:21:59','reception','2025-11-15 11:24:24',0),(0,0,'2526','H','O',3754,1,0,'2025-11-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 11:22:05','reception','2025-11-15 11:22:05',0),(0,0,'2526','H','O',3755,1,0,'2025-11-15','00:00:00','CASE',0,-1.00,900,-900,'A',0,0,-900.00,0.00,0.00,-900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 11:24:24','reception','2025-11-15 11:24:24',0),(0,0,'2526','H','O',3756,1,0,'2025-11-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 11:25:51','reception','2025-11-15 11:25:51',0),(0,0,'2526','H','O',3757,1,0,'2025-11-15','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-11-15 11:28:08','janvi','2025-11-15 11:28:08',0),(0,0,'2526','H','O',3758,1,0,'2025-11-15','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-15 11:30:26','janvi','2025-11-15 11:30:26',0),(0,0,'2526','H','O',3759,1,0,'2025-11-15','00:00:00','XRY0145',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-15 11:31:47','manshi','2025-11-15 11:31:47',0),(0,0,'2526','H','O',3760,1,0,'2025-11-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-15 11:32:32','manshi','2025-11-15 11:32:32',0),(0,0,'2526','H','O',3761,1,0,'2025-11-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-15 11:32:36','drashti','2025-11-15 11:32:36',0),(0,0,'2526','H','O',3762,1,0,'2025-11-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-15 11:34:04','manshi','2025-11-15 11:34:04',0),(0,0,'2526','H','O',3763,1,0,'2025-11-15','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 11:34:43','reception','2025-11-15 11:34:43',0),(0,0,'2526','H','O',3764,1,0,'2025-11-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-15 11:35:16','drashti','2025-11-15 11:35:16',0),(0,0,'2526','H','O',3765,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 11:42:32','reception','2025-11-15 11:54:47',0),(0,0,'2526','H','O',3766,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-15 11:42:35','manshi','2025-11-15 11:42:35',0),(0,0,'2526','H','O',3767,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 11:42:37','reception','2025-11-15 11:42:37',0),(0,0,'2526','H','O',3768,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-15 11:44:41','janvi','2025-11-15 11:44:41',0),(0,0,'2526','H','O',3769,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 11:46:03','reception','2025-11-15 11:46:03',0),(0,0,'2526','H','O',3770,1,0,'2025-11-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-15 11:46:29','drashti','2025-11-15 11:46:29',0),(0,0,'2526','H','O',3771,1,0,'2025-11-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 11:51:32','reception','2025-11-15 11:51:32',0),(0,0,'2526','H','O',3771,2,0,'2025-11-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 11:51:32','reception','2025-11-15 11:51:32',0),(0,0,'2526','H','O',3771,3,0,'2025-11-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 11:51:32','reception','2025-11-15 11:51:32',0),(0,0,'2526','H','O',3772,1,0,'2025-11-15','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 11:54:47','reception','2025-11-15 11:54:47',0),(0,0,'2526','H','O',3773,1,0,'2025-11-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 12:01:11','reception','2025-11-15 12:01:11',0),(0,0,'2526','H','O',3774,1,0,'2025-11-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 12:07:24','reception','2025-11-15 12:07:24',0),(0,0,'2526','H','O',3775,1,0,'2025-11-15','00:00:00','OPWD0023',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-15 12:19:31','janvi','2025-11-15 12:19:31',0),(0,0,'2526','H','O',3776,1,0,'2025-11-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 12:21:29','reception','2025-11-15 12:21:29',0),(0,0,'2526','H','O',3776,2,0,'2025-11-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 12:21:29','reception','2025-11-15 12:21:29',0),(0,0,'2526','H','O',3776,3,0,'2025-11-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 12:21:29','reception','2025-11-15 12:21:29',0),(0,0,'2526','H','O',3776,4,0,'2025-11-15','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 12:21:29','reception','2025-11-15 12:21:29',0),(0,0,'2526','H','O',3777,1,0,'2025-11-15','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-15 12:22:15','drashti','2025-11-15 12:22:15',0),(0,0,'2526','H','O',3778,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 12:23:46','reception','2025-11-15 12:23:46',0),(0,0,'2526','H','O',3779,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-15 12:26:10','janvi','2025-11-15 12:26:10',0),(0,0,'2526','H','O',3780,1,0,'2025-11-15','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 12:26:22','reception','2025-11-15 12:26:22',0),(0,0,'2526','H','O',3781,1,0,'2025-11-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 12:28:41','reception','2025-11-15 12:30:49',0),(0,0,'2526','H','O',3782,1,0,'2025-11-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 12:28:52','reception','2025-11-15 12:28:52',0),(0,0,'2526','H','O',3783,1,0,'2025-11-15','00:00:00','CASE',0,-1.00,900,-900,'A',0,0,-900.00,0.00,0.00,-900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 12:30:49','reception','2025-11-15 12:30:49',0),(0,0,'2526','H','O',3784,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-15 12:31:23','drashti','2025-11-15 12:31:23',0),(0,0,'2526','H','O',3785,1,0,'2025-11-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 12:36:14','reception','2025-11-15 12:36:14',0),(0,0,'2526','H','O',3785,2,0,'2025-11-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 12:36:14','reception','2025-11-15 12:36:14',0),(0,0,'2526','H','O',3785,3,0,'2025-11-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 12:36:14','reception','2025-11-15 12:36:14',0),(0,0,'2526','H','O',3786,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 12:39:30','reception','2025-11-15 12:39:30',0),(0,0,'2526','H','O',3787,1,0,'2025-11-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 12:53:39','reception','2025-11-15 13:45:06',0),(0,0,'2526','H','O',3788,1,0,'2025-11-15','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 13:02:47','reception','2025-11-15 13:06:03',0),(0,0,'2526','H','O',3789,1,0,'2025-11-15','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 13:03:33','reception','2025-11-15 13:42:45',0),(0,0,'2526','H','O',3790,1,0,'2025-11-15','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 13:05:52','reception','2025-11-15 13:05:52',0),(0,0,'2526','H','O',3791,1,0,'2025-11-15','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 13:06:03','reception','2025-11-15 13:06:03',0),(0,0,'2526','H','O',3792,1,0,'2025-11-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 13:08:48','reception','2025-11-15 13:08:48',0),(0,0,'2526','H','O',3792,2,0,'2025-11-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 13:08:48','reception','2025-11-15 13:08:48',0),(0,0,'2526','H','O',3792,3,0,'2025-11-15','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 13:08:48','reception','2025-11-15 13:08:48',0),(0,0,'2526','H','O',3793,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-15 13:26:52','reception','2025-11-15 13:26:52',0),(0,0,'2526','H','O',3794,1,0,'2025-11-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-15 13:39:29','drashti','2025-11-15 13:39:29',0),(0,0,'2526','H','O',3795,1,0,'2025-11-15','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 13:42:45','reception','2025-11-15 13:42:45',0),(0,0,'2526','H','O',3796,1,0,'2025-11-15','00:00:00','CASE',0,-1.00,900,-900,'A',0,0,-900.00,0.00,0.00,-900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 13:44:59','reception','2025-11-15 13:44:59',0),(0,0,'2526','H','O',3797,1,0,'2025-11-15','00:00:00','CASE',0,-1.00,900,-900,'A',0,0,-900.00,0.00,0.00,-900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 13:45:06','reception','2025-11-15 13:45:06',0),(0,0,'2526','H','O',3798,1,0,'2025-11-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 13:51:21','reception','2025-11-15 13:51:21',0),(0,0,'2526','H','O',3798,2,0,'2025-11-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 13:51:21','reception','2025-11-15 13:51:21',0),(0,0,'2526','H','O',3798,3,0,'2025-11-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 13:51:21','reception','2025-11-15 13:51:21',0),(0,0,'2526','H','O',3799,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-15 14:14:12','reception','2025-11-15 14:14:12',0),(0,0,'2526','H','O',3800,1,0,'2025-11-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-15 17:45:56','janvi','2025-11-15 17:45:56',0),(0,0,'2526','H','O',3801,1,0,'2025-11-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-15 17:58:52','janvi','2025-11-15 17:58:52',0),(0,0,'2526','H','O',3802,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-15 17:59:17','priyanshi','2025-11-15 17:59:17',0),(0,0,'2526','H','O',3803,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-15 18:00:31','priyanshi','2025-11-15 18:00:31',0),(0,0,'2526','H','O',3804,1,0,'2025-11-15','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-15 18:19:03','janvi','2025-11-15 18:19:03',0),(0,0,'2526','H','O',3805,1,0,'2025-11-15','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-15 18:22:11','janvi','2025-11-15 18:22:11',0),(0,0,'2526','H','O',3806,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-15 18:27:47','priyanshi','2025-11-15 18:27:47',0),(0,0,'2526','H','O',3807,1,0,'2025-11-15','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-15 18:29:46','janvi','2025-11-15 18:29:46',0),(0,0,'2526','H','O',3808,1,0,'2025-11-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-11-15 18:47:18','reception','2025-11-15 18:47:18',0),(0,0,'2526','H','O',3809,1,0,'2025-11-15','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-15 18:49:02','priyanshi','2025-11-15 18:49:02',0),(0,0,'2526','H','O',3810,1,0,'2025-11-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-11-15 19:02:06','reception','2025-11-15 19:02:06',0),(0,0,'2526','H','O',3811,1,0,'2025-11-15','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-11-15 19:10:59','reception','2025-11-15 19:10:59',0),(0,0,'2526','H','O',3812,1,0,'2025-11-15','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-15 19:24:06','manshi','2025-11-16 11:11:22',0),(0,0,'2526','H','O',3812,2,0,'2025-11-15','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-15 19:24:06','manshi','2025-11-16 11:11:22',0),(0,0,'2526','H','O',3813,1,0,'2025-11-15','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-15 19:24:15','manshi','2025-11-16 11:14:32',0),(0,0,'2526','H','O',3813,2,0,'2025-11-15','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-15 19:24:15','manshi','2025-11-16 11:14:32',0),(0,0,'2526','H','O',3814,1,0,'2025-11-15','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-15 19:33:55','priyanshi','2025-11-15 19:33:55',0),(0,0,'2526','H','O',3815,1,0,'2025-11-15','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-15 19:41:20','reception','2025-11-15 19:41:20',0),(0,0,'2526','H','O',3816,1,0,'2025-11-15','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-15 20:00:58','reception','2025-11-15 20:00:58',0),(0,0,'2526','H','O',3817,1,0,'2025-11-16','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','manshi','2025-11-16 09:06:11','manshi','2025-11-16 09:06:11',0),(0,0,'2526','H','O',3817,2,0,'2025-11-16','00:00:00','WPRC0037',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','manshi','2025-11-16 09:06:11','manshi','2025-11-16 09:06:11',0),(0,0,'2526','H','O',3818,1,0,'2025-11-16','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','manshi','2025-11-16 09:08:38','manshi','2025-11-16 09:08:38',0),(0,0,'2526','H','O',3818,2,0,'2025-11-16','00:00:00','WPRC0037',0,1.00,550,550,'P',0,0,550.00,0.00,0.00,550.00,'',0,3,0,'',0,'','','','Y','N','manshi','2025-11-16 09:08:38','manshi','2025-11-16 09:08:38',0),(0,0,'2526','H','O',3819,1,0,'2025-11-16','00:00:00','SURG0005',0,-1.00,800,-800,'P',0,0,-800.00,0.00,0.00,-800.00,'',0,4,0,'',0,'','','','Y','N','manshi','2025-11-16 11:11:22','manshi','2025-11-16 11:11:22',0),(0,0,'2526','H','O',3819,2,0,'2025-11-16','00:00:00','WPRC0042',0,-2.00,100,-200,'P',0,0,-200.00,0.00,0.00,-200.00,'',0,4,0,'',0,'','','','Y','N','manshi','2025-11-16 11:11:22','manshi','2025-11-16 11:11:22',0),(0,0,'2526','H','O',3820,1,0,'2025-11-16','00:00:00','SURG0005',0,-1.00,800,-800,'P',0,0,-800.00,0.00,0.00,-800.00,'',0,4,0,'',0,'','','','Y','N','manshi','2025-11-16 11:14:32','manshi','2025-11-16 11:14:32',0),(0,0,'2526','H','O',3820,2,0,'2025-11-16','00:00:00','WPRC0042',0,-2.00,100,-200,'P',0,0,-200.00,0.00,0.00,-200.00,'',0,4,0,'',0,'','','','Y','N','manshi','2025-11-16 11:14:32','manshi','2025-11-16 11:14:32',0),(0,0,'2526','H','O',3821,1,0,'2025-11-16','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','manshi','2025-11-16 11:51:08','manshi','2025-11-16 11:51:08',0),(0,0,'2526','H','O',3821,2,0,'2025-11-16','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','manshi','2025-11-16 11:51:08','manshi','2025-11-16 11:51:08',0),(0,0,'2526','H','O',3821,3,0,'2025-11-16','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','manshi','2025-11-16 11:51:08','manshi','2025-11-16 11:51:08',0),(0,0,'2526','H','O',3822,1,0,'2025-11-16','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-16 12:19:06','manshi','2025-11-16 12:19:06',0),(0,0,'2526','H','O',3822,2,0,'2025-11-16','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-16 12:19:06','manshi','2025-11-16 12:19:06',0),(0,0,'2526','H','O',3822,3,0,'2025-11-16','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-16 12:19:06','manshi','2025-11-16 12:19:06',0),(0,0,'2526','H','O',3823,1,0,'2025-11-17','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-17 08:57:39','reception','2025-11-17 08:57:39',0),(0,0,'2526','H','O',3824,1,0,'2025-11-17','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-17 09:01:42','reception','2025-11-17 09:01:42',0),(0,0,'2526','H','O',3825,1,0,'2025-11-17','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-17 09:15:26','reception','2025-11-17 09:15:26',0),(0,0,'2526','H','O',3825,2,0,'2025-11-17','00:00:00','OPWD0013',0,1.00,150,150,'P',0,0,150.00,0.00,0.00,150.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-17 09:15:26','reception','2025-11-17 09:15:26',0),(0,0,'2526','H','O',3825,3,0,'2025-11-17','00:00:00','OPWD0013',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-17 09:15:26','reception','2025-11-17 09:15:26',0),(0,0,'2526','H','O',3826,1,0,'2025-11-17','00:00:00','SURG0005',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,7,0,'',0,'','','','Y','N','reception','2025-11-17 09:42:09','reception','2025-11-17 09:42:09',0),(0,0,'2526','H','O',3826,2,0,'2025-11-17','00:00:00','OPWD0013',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,7,0,'',0,'','','','Y','N','reception','2025-11-17 09:42:09','reception','2025-11-17 09:42:09',0),(0,0,'2526','H','O',3826,3,0,'2025-11-17','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,7,0,'',0,'','','','Y','N','reception','2025-11-17 09:42:09','reception','2025-11-17 09:42:09',0),(0,0,'2526','H','O',3826,4,0,'2025-11-17','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 09:42:09','reception','2025-11-17 09:42:09',0),(0,0,'2526','H','O',3827,1,0,'2025-11-17','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-17 09:43:22','reception','2025-11-17 09:43:22',0),(0,0,'2526','H','O',3828,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 10:01:42','reception','2025-11-17 10:01:42',0),(0,0,'2526','H','O',3829,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 10:15:34','reception','2025-11-17 10:15:34',0),(0,0,'2526','H','O',3830,1,0,'2025-11-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-17 10:16:57','drashti','2025-11-17 10:16:57',0),(0,0,'2526','H','O',3831,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 10:18:58','reception','2025-11-17 10:18:58',0),(0,0,'2526','H','O',3832,1,0,'2025-11-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 10:36:45','reception','2025-11-17 10:36:45',0),(0,0,'2526','H','O',3833,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 10:40:17','reception','2025-11-17 10:40:17',0),(0,0,'2526','H','O',3834,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 10:46:32','reception','2025-11-17 10:46:32',0),(0,0,'2526','H','O',3835,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 10:54:52','reception','2025-11-17 10:54:52',0),(0,0,'2526','H','O',3836,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 10:58:01','reception','2025-11-17 10:58:01',0),(0,0,'2526','H','O',3837,1,0,'2025-11-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-11-17 11:03:52','shweta','2025-11-17 11:03:52',0),(0,0,'2526','H','O',3838,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 11:16:28','reception','2025-11-17 11:16:28',0),(0,0,'2526','H','O',3839,1,0,'2025-11-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-11-17 11:20:02','urvashi','2025-11-17 11:20:02',0),(0,0,'2526','H','O',3840,1,0,'2025-11-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-11-17 11:20:34','urvashi','2025-11-17 11:20:34',0),(0,0,'2526','H','O',3841,1,0,'2025-11-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-11-17 11:22:21','shweta','2025-11-17 11:22:21',0),(0,0,'2526','H','O',3842,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,500,0.00,0.00,0.00,0.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-11-17 11:23:58','urvashi','2025-11-17 11:23:58',0),(0,0,'2526','H','O',3842,2,0,'2025-11-17','00:00:00','XRY0074',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-17 11:23:58','urvashi','2025-11-17 11:23:58',0),(0,0,'2526','H','O',3843,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 11:25:14','reception','2025-11-17 11:25:14',0),(0,0,'2526','H','O',3844,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 11:26:17','reception','2025-11-17 11:26:17',0),(0,0,'2526','H','O',3845,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 11:29:22','reception','2025-11-17 11:29:22',0),(0,0,'2526','H','O',3846,1,0,'2025-11-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 11:30:10','reception','2025-11-17 11:30:10',0),(0,0,'2526','H','O',3847,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 11:31:56','reception','2025-11-17 11:31:56',0),(0,0,'2526','H','O',3848,1,0,'2025-11-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 11:36:26','reception','2025-11-17 11:36:26',0),(0,0,'2526','H','O',3849,1,0,'2025-11-17','00:00:00','XRY0242',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-17 11:37:30','urvashi','2025-11-17 11:37:30',0),(0,0,'2526','H','O',3850,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','urvashi','2025-11-17 11:38:30','urvashi','2025-11-17 11:38:30',0),(0,0,'2526','H','O',3851,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 11:38:40','reception','2025-11-17 11:38:40',0),(0,0,'2526','H','O',3852,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 11:39:24','reception','2025-11-17 11:39:24',0),(0,0,'2526','H','O',3853,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 11:40:53','reception','2025-11-17 11:40:53',0),(0,0,'2526','H','O',3854,1,0,'2025-11-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-17 11:46:25','drashti','2025-11-17 11:46:25',0),(0,0,'2526','H','O',3855,1,0,'2025-11-17','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-11-17 11:51:40','urvashi','2025-11-17 11:51:40',0),(0,0,'2526','H','O',3855,2,0,'2025-11-17','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-11-17 11:51:40','urvashi','2025-11-17 11:51:40',0),(0,0,'2526','H','O',3856,1,0,'2025-11-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-17 11:56:09','drashti','2025-11-17 11:56:09',0),(0,0,'2526','H','O',3857,1,0,'2025-11-17','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-11-17 11:57:48','janvi','2025-11-17 11:57:48',0),(0,0,'2526','H','O',3858,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-11-17 12:02:37','janvi','2025-11-17 12:02:37',0),(0,0,'2526','H','O',3859,1,0,'2025-11-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-11-17 12:04:00','janvi','2025-11-17 12:04:00',0),(0,0,'2526','H','O',3860,1,0,'2025-11-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 12:04:10','reception','2025-11-17 12:04:10',0),(0,0,'2526','H','O',3860,2,0,'2025-11-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 12:04:10','reception','2025-11-17 12:04:10',0),(0,0,'2526','H','O',3861,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-17 12:10:37','drashti','2025-11-17 12:10:37',0),(0,0,'2526','H','O',3862,1,0,'2025-11-17','00:00:00','NEU10020',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 12:11:20','reception','2025-11-17 12:11:20',0),(0,0,'2526','H','O',3863,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 12:13:39','reception','2025-11-17 12:13:39',0),(0,0,'2526','H','O',3864,1,0,'2025-11-17','00:00:00','OPWD0023',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-11-17 12:32:41','janvi','2025-11-17 12:32:41',0),(0,0,'2526','H','O',3865,1,0,'2025-11-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 12:35:14','reception','2025-11-17 12:35:14',0),(0,0,'2526','H','O',3865,2,0,'2025-11-17','00:00:00','NEU10017',0,1.00,2400,2400,'P',0,0,2400.00,0.00,0.00,2400.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 12:35:14','reception','2025-11-17 12:35:14',0),(0,0,'2526','H','O',3866,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 12:38:08','reception','2025-11-17 12:38:08',0),(0,0,'2526','H','O',3867,1,0,'2025-11-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-17 12:45:40','drashti','2025-11-17 12:45:40',0),(0,0,'2526','H','O',3868,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 12:46:58','reception','2025-11-17 12:46:58',0),(0,0,'2526','H','O',3869,1,0,'2025-11-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 12:55:37','reception','2025-11-17 12:55:37',0),(0,0,'2526','H','O',3869,2,0,'2025-11-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 12:55:37','reception','2025-11-17 12:55:37',0),(0,0,'2526','H','O',3869,3,0,'2025-11-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 12:55:37','reception','2025-11-17 12:55:37',0),(0,0,'2526','H','O',3870,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 12:58:14','reception','2025-11-17 12:58:14',0),(0,0,'2526','H','O',3871,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 13:04:27','reception','2025-11-17 13:04:27',0),(0,0,'2526','H','O',3872,1,0,'2025-11-17','00:00:00','OPWD0034',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-17 13:15:59','drashti','2025-11-17 13:15:59',0),(0,0,'2526','H','O',3873,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 13:19:05','reception','2025-11-17 13:19:05',0),(0,0,'2526','H','O',3874,1,0,'2025-11-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 13:37:21','reception','2025-11-17 13:37:21',0),(0,0,'2526','H','O',3874,2,0,'2025-11-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 13:37:21','reception','2025-11-17 13:37:21',0),(0,0,'2526','H','O',3874,3,0,'2025-11-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 13:37:21','reception','2025-11-17 13:37:21',0),(0,0,'2526','H','O',3875,1,0,'2025-11-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-11-17 14:09:57','shweta','2025-11-17 14:09:57',0),(0,0,'2526','H','O',3875,2,0,'2025-11-17','00:00:00','WPRC0046',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-11-17 14:09:57','shweta','2025-11-17 14:09:57',0),(0,0,'2526','H','O',3876,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 14:15:22','reception','2025-11-17 14:15:22',0),(0,0,'2526','H','O',3877,1,0,'2025-11-17','00:00:00','OPWD0016',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-11-17 14:49:16','shweta','2025-11-17 14:49:16',0),(0,0,'2526','H','O',3878,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 16:40:27','reception','2025-11-17 16:40:27',0),(0,0,'2526','H','O',3879,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 16:47:01','reception','2025-11-17 16:47:01',0),(0,0,'2526','H','O',3880,1,0,'2025-11-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 16:49:32','reception','2025-11-17 16:49:32',0),(0,0,'2526','H','O',3881,1,0,'2025-11-17','00:00:00','OPWD0013',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-17 16:50:53','janvi','2025-11-17 16:50:53',0),(0,0,'2526','H','O',3882,1,0,'2025-11-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 16:54:44','reception','2025-11-17 16:54:44',0),(0,0,'2526','H','O',3883,1,0,'2025-11-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 16:57:17','reception','2025-11-17 16:57:17',0),(0,0,'2526','H','O',3884,1,0,'2025-11-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 17:01:51','reception','2025-11-17 17:01:51',0),(0,0,'2526','H','O',3885,1,0,'2025-11-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 17:05:03','reception','2025-11-17 17:05:03',0),(0,0,'2526','H','O',3886,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 17:12:38','reception','2025-11-17 17:12:38',0),(0,0,'2526','H','O',3887,1,0,'2025-11-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-17 17:25:09','manshi','2025-11-17 17:46:57',0),(0,0,'2526','H','O',3888,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 17:25:09','reception','2025-11-17 17:25:09',0),(0,0,'2526','H','O',3889,1,0,'2025-11-17','00:00:00','XRY0151',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-17 17:25:27','manshi','2025-11-17 17:25:27',0),(0,0,'2526','H','O',3890,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 17:37:13','reception','2025-11-17 17:37:13',0),(0,0,'2526','H','O',3891,1,0,'2025-11-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 17:40:01','reception','2025-11-17 17:40:01',0),(0,0,'2526','H','O',3891,2,0,'2025-11-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 17:40:01','reception','2025-11-17 17:40:01',0),(0,0,'2526','H','O',3891,3,0,'2025-11-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 17:40:01','reception','2025-11-17 17:40:01',0),(0,0,'2526','H','O',3892,1,0,'2025-11-17','00:00:00','CASE',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-17 17:46:57','manshi','2025-11-17 17:46:57',0),(0,0,'2526','H','O',3893,1,0,'2025-11-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-17 17:51:13','drashti','2025-11-17 17:51:13',0),(0,0,'2526','H','O',3894,1,0,'2025-11-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 17:58:27','reception','2025-11-17 17:58:27',0),(0,0,'2526','H','O',3894,2,0,'2025-11-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 17:58:27','reception','2025-11-17 17:58:27',0),(0,0,'2526','H','O',3894,3,0,'2025-11-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 17:58:27','reception','2025-11-17 17:58:27',0),(0,0,'2526','H','O',3895,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 18:02:58','reception','2025-11-17 18:02:58',0),(0,0,'2526','H','O',3896,1,0,'2025-11-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 18:04:46','reception','2025-11-17 18:04:46',0),(0,0,'2526','H','O',3897,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 18:11:57','reception','2025-11-17 18:11:57',0),(0,0,'2526','H','O',3898,1,0,'2025-11-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-17 18:12:47','manshi','2025-11-17 18:12:47',0),(0,0,'2526','H','O',3899,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-17 18:17:24','manshi','2025-11-17 18:17:24',0),(0,0,'2526','H','O',3900,1,0,'2025-11-17','00:00:00','NEU10015',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 18:17:59','reception','2025-11-17 18:17:59',0),(0,0,'2526','H','O',3900,2,0,'2025-11-17','00:00:00','NEU10019',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 18:17:59','reception','2025-11-17 18:17:59',0),(0,0,'2526','H','O',3900,3,0,'2025-11-17','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 18:17:59','reception','2025-11-17 18:17:59',0),(0,0,'2526','H','O',3901,1,0,'2025-11-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 18:20:50','reception','2025-11-17 18:20:50',0),(0,0,'2526','H','O',3902,1,0,'2025-11-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 18:25:36','reception','2025-11-17 18:25:36',0),(0,0,'2526','H','O',3902,2,0,'2025-11-17','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 18:25:36','reception','2025-11-17 18:25:36',0),(0,0,'2526','H','O',3903,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 18:43:33','reception','2025-11-17 18:43:33',0),(0,0,'2526','H','O',3904,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-17 18:45:24','manshi','2025-11-17 18:58:53',0),(0,0,'2526','H','O',3905,1,0,'2025-11-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 18:46:36','reception','2025-11-17 18:46:36',0),(0,0,'2526','H','O',3905,2,0,'2025-11-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 18:46:36','reception','2025-11-17 18:46:36',0),(0,0,'2526','H','O',3905,3,0,'2025-11-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 18:46:36','reception','2025-11-17 18:46:36',0),(0,0,'2526','H','O',3906,1,0,'2025-11-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-17 18:49:34','drashti','2025-11-17 18:49:34',0),(0,0,'2526','H','O',3907,1,0,'2025-11-17','00:00:00','WPRC0046',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-17 18:50:40','manshi','2025-11-17 18:50:40',0),(0,0,'2526','H','O',3908,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 18:56:59','reception','2025-11-17 19:57:59',0),(0,0,'2526','H','O',3909,1,0,'2025-11-17','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-17 18:58:53','manshi','2025-11-17 18:58:53',0),(0,0,'2526','H','O',3910,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 19:01:53','reception','2025-11-17 19:01:53',0),(0,0,'2526','H','O',3911,1,0,'2025-11-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 19:03:39','reception','2025-11-17 19:03:39',0),(0,0,'2526','H','O',3911,2,0,'2025-11-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-17 19:03:39','reception','2025-11-17 19:03:39',0),(0,0,'2526','H','O',3912,1,0,'2025-11-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-17 19:07:14','manshi','2025-11-17 19:07:14',0),(0,0,'2526','H','O',3913,1,0,'2025-11-17','00:00:00','OPWD0012',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-17 19:35:59','manshi','2025-11-17 19:35:59',0),(0,0,'2526','H','O',3914,1,0,'2025-11-17','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-17 19:55:47','janvi','2025-11-17 19:55:47',0),(0,0,'2526','H','O',3915,1,0,'2025-11-17','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 19:57:59','reception','2025-11-17 19:57:59',0),(0,0,'2526','H','O',3916,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-17 19:59:02','reception','2025-11-17 19:59:02',0),(0,0,'2526','H','O',3917,1,0,'2025-11-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','janvi','2025-11-17 20:00:27','janvi','2025-11-17 20:00:27',0),(0,0,'2526','H','O',3918,1,0,'2025-11-18','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-18 09:09:22','reception','2025-11-18 09:09:22',0),(0,0,'2526','H','O',3918,2,0,'2025-11-18','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 09:09:22','reception','2025-11-18 09:09:22',0),(0,0,'2526','H','O',3918,3,0,'2025-11-18','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 09:09:22','reception','2025-11-18 09:09:22',0),(0,0,'2526','H','O',3918,4,0,'2025-11-18','00:00:00','OPWD0015',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-18 09:09:22','reception','2025-11-18 09:09:22',0),(0,0,'2526','H','O',3918,5,0,'2025-11-18','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-18 09:09:22','reception','2025-11-18 09:09:22',0),(0,0,'2526','H','O',3919,1,0,'2025-11-18','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-18 09:11:54','reception','2025-11-18 09:11:54',0),(0,0,'2526','H','O',3919,2,0,'2025-11-18','00:00:00','OPWD0013',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-18 09:11:54','reception','2025-11-18 09:11:54',0),(0,0,'2526','H','O',3920,1,0,'2025-11-18','00:00:00','AECO0001',0,1.00,3500,3500,'P',0,0,3500.00,0.00,0.00,3500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 09:15:07','reception','2025-11-18 09:15:07',0),(0,0,'2526','H','O',3920,2,0,'2025-11-18','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-18 09:15:07','reception','2025-11-18 09:15:07',0),(0,0,'2526','H','O',3921,1,0,'2025-11-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-18 09:43:36','drashti','2025-11-18 09:43:36',0),(0,0,'2526','H','O',3922,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 10:05:59','reception','2025-11-18 10:05:59',0),(0,0,'2526','H','O',3923,1,0,'2025-11-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 10:13:17','reception','2025-11-18 10:13:17',0),(0,0,'2526','H','O',3924,1,0,'2025-11-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-18 10:14:13','manshi','2025-11-18 10:14:13',0),(0,0,'2526','H','O',3925,1,0,'2025-11-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-18 10:21:55','drashti','2025-11-18 10:21:55',0),(0,0,'2526','H','O',3926,1,0,'2025-11-18','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 10:27:37','reception','2025-11-18 10:27:37',0),(0,0,'2526','H','O',3927,1,0,'2025-11-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-18 10:37:54','drashti','2025-11-18 10:37:54',0),(0,0,'2526','H','O',3928,1,0,'2025-11-18','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-18 10:40:09','manshi','2025-11-18 10:40:09',0),(0,0,'2526','H','O',3929,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 10:46:23','reception','2025-11-18 10:46:23',0),(0,0,'2526','H','O',3930,1,0,'2025-11-18','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-18 11:02:56','drashti','2025-11-18 11:02:56',0),(0,0,'2526','H','O',3931,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 11:04:19','reception','2025-11-18 11:04:19',0),(0,0,'2526','H','O',3932,1,0,'2025-11-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-18 11:06:00','drashti','2025-11-18 11:06:00',0),(0,0,'2526','H','O',3933,1,0,'2025-11-18','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 11:10:52','reception','2025-11-18 11:10:52',0),(0,0,'2526','H','O',3933,2,0,'2025-11-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 11:10:52','reception','2025-11-18 11:10:52',0),(0,0,'2526','H','O',3933,3,0,'2025-11-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 11:10:52','reception','2025-11-18 11:10:52',0),(0,0,'2526','H','O',3934,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 11:20:07','reception','2025-11-18 11:20:07',0),(0,0,'2526','H','O',3935,1,0,'2025-11-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 11:31:20','reception','2025-11-18 11:31:20',0),(0,0,'2526','H','O',3936,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 11:34:31','reception','2025-11-18 11:34:31',0),(0,0,'2526','H','O',3937,1,0,'2025-11-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-18 11:39:15','manshi','2025-11-18 11:39:15',0),(0,0,'2526','H','O',3938,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 11:43:59','reception','2025-11-18 11:43:59',0),(0,0,'2526','H','O',3939,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-18 11:50:34','drashti','2025-11-18 11:50:34',0),(0,0,'2526','H','O',3940,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 11:52:12','reception','2025-11-18 11:52:12',0),(0,0,'2526','H','O',3941,1,0,'2025-11-18','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-18 11:55:19','reception','2025-11-18 11:55:19',0),(0,0,'2526','H','O',3942,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-18 12:06:48','manshi','2025-11-18 12:06:48',0),(0,0,'2526','H','O',3943,1,0,'2025-11-18','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-18 12:16:54','janvi','2025-11-18 12:16:54',0),(0,0,'2526','H','O',3943,2,0,'2025-11-18','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-18 12:16:54','janvi','2025-11-18 12:16:54',0),(0,0,'2526','H','O',3944,1,0,'2025-11-18','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-18 12:16:56','drashti','2025-11-18 12:16:56',0),(0,0,'2526','H','O',3944,2,0,'2025-11-18','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-18 12:16:56','drashti','2025-11-18 12:16:56',0),(0,0,'2526','H','O',3945,1,0,'2025-11-18','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-18 12:22:17','reception','2025-11-18 12:22:17',0),(0,0,'2526','H','O',3946,1,0,'2025-11-18','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-18 12:29:20','manshi','2025-11-18 12:29:20',0),(0,0,'2526','H','O',3947,1,0,'2025-11-18','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 12:29:40','reception','2025-11-18 12:29:40',0),(0,0,'2526','H','O',3948,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 12:36:07','reception','2025-11-18 12:36:07',0),(0,0,'2526','H','O',3949,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-18 12:36:34','drashti','2025-11-18 12:36:34',0),(0,0,'2526','H','O',3950,1,0,'2025-11-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 12:37:47','reception','2025-11-18 12:37:47',0),(0,0,'2526','H','O',3951,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 12:38:58','reception','2025-11-18 12:38:58',0),(0,0,'2526','H','O',3952,1,0,'2025-11-18','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-18 12:42:34','drashti','2025-11-18 12:42:34',0),(0,0,'2526','H','O',3953,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 12:42:53','reception','2025-11-18 12:42:53',0),(0,0,'2526','H','O',3954,1,0,'2025-11-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 12:51:25','reception','2025-11-18 12:51:25',0),(0,0,'2526','H','O',3955,1,0,'2025-11-18','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 12:54:46','reception','2025-11-18 12:54:46',0),(0,0,'2526','H','O',3955,2,0,'2025-11-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 12:54:46','reception','2025-11-18 12:54:46',0),(0,0,'2526','H','O',3955,3,0,'2025-11-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 12:54:46','reception','2025-11-18 12:54:46',0),(0,0,'2526','H','O',3956,1,0,'2025-11-18','00:00:00','NEU10019',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 13:10:09','reception','2025-11-18 13:10:09',0),(0,0,'2526','H','O',3956,2,0,'2025-11-18','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 13:10:09','reception','2025-11-18 13:10:09',0),(0,0,'2526','H','O',3957,1,0,'2025-11-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-18 13:10:40','drashti','2025-11-18 13:10:40',0),(0,0,'2526','H','O',3958,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 13:12:12','reception','2025-11-18 13:12:12',0),(0,0,'2526','H','O',3959,1,0,'2025-11-18','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 13:27:39','reception','2025-11-18 13:27:39',0),(0,0,'2526','H','O',3959,2,0,'2025-11-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 13:27:39','reception','2025-11-18 13:27:39',0),(0,0,'2526','H','O',3959,3,0,'2025-11-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 13:27:39','reception','2025-11-18 13:27:39',0),(0,0,'2526','H','O',3960,1,0,'2025-11-18','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 13:47:42','reception','2025-11-18 13:47:42',0),(0,0,'2526','H','O',3960,2,0,'2025-11-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 13:47:42','reception','2025-11-18 13:47:42',0),(0,0,'2526','H','O',3960,3,0,'2025-11-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 13:47:42','reception','2025-11-18 13:47:42',0),(0,0,'2526','H','O',3961,1,0,'2025-11-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 13:57:20','reception','2025-11-18 13:57:20',0),(0,0,'2526','H','O',3962,1,0,'2025-11-18','00:00:00','OPWD0034',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-18 14:02:17','drashti','2025-11-18 14:02:17',0),(0,0,'2526','H','O',3963,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 16:26:01','reception','2025-11-18 16:26:01',0),(0,0,'2526','H','O',3964,1,0,'2025-11-18','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-18 16:47:57','drashti','2025-11-18 16:47:57',0),(0,0,'2526','H','O',3964,2,0,'2025-11-18','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-18 16:47:57','drashti','2025-11-18 16:47:57',0),(0,0,'2526','H','O',3965,1,0,'2025-11-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 16:54:48','reception','2025-11-18 16:54:48',0),(0,0,'2526','H','O',3966,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 16:58:20','reception','2025-11-18 16:58:20',0),(0,0,'2526','H','O',3967,1,0,'2025-11-18','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 17:01:39','reception','2025-11-18 17:01:39',0),(0,0,'2526','H','O',3968,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 17:03:31','reception','2025-11-18 17:03:31',0),(0,0,'2526','H','O',3969,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 17:07:29','reception','2025-11-18 17:07:29',0),(0,0,'2526','H','O',3970,1,0,'2025-11-18','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 17:19:54','reception','2025-11-18 17:19:54',0),(0,0,'2526','H','O',3970,2,0,'2025-11-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 17:19:54','reception','2025-11-18 17:19:54',0),(0,0,'2526','H','O',3970,3,0,'2025-11-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 17:19:54','reception','2025-11-18 17:19:54',0),(0,0,'2526','H','O',3971,1,0,'2025-11-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-18 17:27:49','drashti','2025-11-18 17:27:49',0),(0,0,'2526','H','O',3972,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 17:31:13','reception','2025-11-18 17:31:13',0),(0,0,'2526','H','O',3973,1,0,'2025-11-18','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-18 17:49:13','janvi','2025-11-18 17:49:13',0),(0,0,'2526','H','O',3974,1,0,'2025-11-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 17:55:24','reception','2025-11-18 17:55:24',0),(0,0,'2526','H','O',3975,1,0,'2025-11-18','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 17:59:31','reception','2025-11-18 17:59:31',0),(0,0,'2526','H','O',3976,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 18:01:00','reception','2025-11-18 18:01:00',0),(0,0,'2526','H','O',3977,1,0,'2025-11-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-18 18:06:43','janvi','2025-11-18 18:16:29',0),(0,0,'2526','H','O',3978,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 18:15:09','reception','2025-11-18 18:15:09',0),(0,0,'2526','H','O',3979,1,0,'2025-11-18','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-18 18:16:29','janvi','2025-11-18 18:16:29',0),(0,0,'2526','H','O',3980,1,0,'2025-11-18','00:00:00','OPWD0025',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-18 18:22:37','janvi','2025-11-18 18:22:37',0),(0,0,'2526','H','O',3981,1,0,'2025-11-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-18 18:28:22','manshi','2025-11-18 18:28:22',0),(0,0,'2526','H','O',3982,1,0,'2025-11-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 18:28:37','reception','2025-11-18 18:28:37',0),(0,0,'2526','H','O',3982,2,0,'2025-11-18','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 18:28:37','reception','2025-11-18 18:28:37',0),(0,0,'2526','H','O',3982,3,0,'2025-11-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 18:28:37','reception','2025-11-18 18:28:37',0),(0,0,'2526','H','O',3983,1,0,'2025-11-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 18:30:40','reception','2025-11-18 18:30:40',0),(0,0,'2526','H','O',3984,1,0,'2025-11-18','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 18:35:25','reception','2025-11-18 18:35:25',0),(0,0,'2526','H','O',3984,2,0,'2025-11-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 18:35:25','reception','2025-11-18 18:35:25',0),(0,0,'2526','H','O',3984,3,0,'2025-11-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 18:35:25','reception','2025-11-18 18:35:25',0),(0,0,'2526','H','O',3985,1,0,'2025-11-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-18 18:45:52','reception','2025-11-18 18:45:52',0),(0,0,'2526','H','O',3986,1,0,'2025-11-18','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 18:55:24','reception','2025-11-18 18:55:24',0),(0,0,'2526','H','O',3986,2,0,'2025-11-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 18:55:24','reception','2025-11-18 18:55:24',0),(0,0,'2526','H','O',3986,3,0,'2025-11-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 18:55:24','reception','2025-11-18 18:55:24',0),(0,0,'2526','H','O',3986,4,0,'2025-11-18','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-18 18:55:24','reception','2025-11-18 18:55:24',0),(0,0,'2526','H','O',3987,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 09:33:22','reception','2025-11-19 09:33:22',0),(0,0,'2526','H','O',3988,1,0,'2025-11-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 10:05:46','reception','2025-11-19 10:05:46',0),(0,0,'2526','H','O',3989,1,0,'2025-11-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 10:12:10','reception','2025-11-19 10:12:10',0),(0,0,'2526','H','O',3990,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 10:12:57','reception','2025-11-19 10:12:57',0),(0,0,'2526','H','O',3991,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-19 10:13:47','urvashi','2025-11-19 10:13:47',0),(0,0,'2526','H','O',3992,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 10:17:42','reception','2025-11-19 10:17:42',0),(0,0,'2526','H','O',3993,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 10:21:04','reception','2025-11-19 10:21:04',0),(0,0,'2526','H','O',3994,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-19 10:23:44','janvi','2025-11-19 10:23:44',0),(0,0,'2526','H','O',3995,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 10:28:49','reception','2025-11-19 10:28:49',0),(0,0,'2526','H','O',3996,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 10:30:15','reception','2025-11-19 10:30:15',0),(0,0,'2526','H','O',3997,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-19 10:33:02','urvashi','2025-11-19 10:33:02',0),(0,0,'2526','H','O',3998,1,0,'2025-11-19','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-19 10:37:31','janvi','2025-11-19 10:37:31',0),(0,0,'2526','H','O',3999,1,0,'2025-11-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-19 10:47:01','janvi','2025-11-19 10:47:01',0),(0,0,'2526','H','O',4000,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 10:49:18','reception','2025-11-19 10:49:18',0),(0,0,'2526','H','O',4001,1,0,'2025-11-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-19 10:58:17','urvashi','2025-11-19 10:58:17',0),(0,0,'2526','H','O',4002,1,0,'2025-11-19','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-19 11:03:29','urvashi','2025-11-19 11:03:29',0),(0,0,'2526','H','O',4003,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 11:03:39','reception','2025-11-19 11:03:39',0),(0,0,'2526','H','O',4004,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 11:04:18','reception','2025-11-19 11:04:18',0),(0,0,'2526','H','O',4005,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 11:05:20','reception','2025-11-19 11:05:20',0),(0,0,'2526','H','O',4006,1,0,'2025-11-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-19 11:05:44','urvashi','2025-11-19 11:05:44',0),(0,0,'2526','H','O',4007,1,0,'2025-11-19','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 11:07:53','reception','2025-11-19 11:07:53',0),(0,0,'2526','H','O',4007,2,0,'2025-11-19','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 11:07:53','reception','2025-11-19 11:07:53',0),(0,0,'2526','H','O',4007,3,0,'2025-11-19','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 11:07:53','reception','2025-11-19 11:07:53',0),(0,0,'2526','H','O',4008,1,0,'2025-11-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-19 11:11:42','urvashi','2025-11-19 11:11:42',0),(0,0,'2526','H','O',4009,1,0,'2025-11-19','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 11:18:26','reception','2025-11-19 11:18:26',0),(0,0,'2526','H','O',4009,2,0,'2025-11-19','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 11:18:26','reception','2025-11-19 11:18:26',0),(0,0,'2526','H','O',4009,3,0,'2025-11-19','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 11:18:26','reception','2025-11-19 11:18:26',0),(0,0,'2526','H','O',4010,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 11:22:59','reception','2025-11-19 11:22:59',0),(0,0,'2526','H','O',4011,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-19 11:24:53','urvashi','2025-11-19 11:24:53',0),(0,0,'2526','H','O',4012,1,0,'2025-11-19','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-19 11:26:49','manshi','2025-11-19 11:26:49',0),(0,0,'2526','H','O',4012,2,0,'2025-11-19','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-19 11:26:49','manshi','2025-11-19 11:26:49',0),(0,0,'2526','H','O',4012,3,0,'2025-11-19','00:00:00','XRY0308',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-19 11:26:49','manshi','2025-11-19 11:26:49',0),(0,0,'2526','H','O',4012,4,0,'2025-11-19','00:00:00','XRY0356',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-19 11:26:49','manshi','2025-11-19 11:26:49',0),(0,0,'2526','H','O',4012,5,0,'2025-11-19','00:00:00','OPWD0023',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-19 11:26:49','manshi','2025-11-19 11:26:49',0),(0,0,'2526','H','O',4013,1,0,'2025-11-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 11:30:02','reception','2025-11-19 11:30:02',0),(0,0,'2526','H','O',4014,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-19 11:30:19','janvi','2025-11-19 11:30:19',0),(0,0,'2526','H','O',4015,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 11:32:04','reception','2025-11-19 11:32:04',0),(0,0,'2526','H','O',4016,1,0,'2025-11-19','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-19 11:33:06','manshi','2025-11-19 11:33:06',0),(0,0,'2526','H','O',4017,1,0,'2025-11-19','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-19 11:35:27','janvi','2025-11-19 11:35:27',0),(0,0,'2526','H','O',4018,1,0,'2025-11-19','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 11:36:08','reception','2025-11-19 11:36:08',0),(0,0,'2526','H','O',4019,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-19 11:41:16','manshi','2025-11-19 11:41:16',0),(0,0,'2526','H','O',4020,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-19 11:45:27','urvashi','2025-11-19 11:45:27',0),(0,0,'2526','H','O',4021,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-19 11:50:46','urvashi','2025-11-19 11:50:46',0),(0,0,'2526','H','O',4022,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-19 11:52:43','urvashi','2025-11-19 11:52:43',0),(0,0,'2526','H','O',4023,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-19 11:54:31','urvashi','2025-11-19 11:54:31',0),(0,0,'2526','H','O',4024,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 11:55:10','reception','2025-11-19 11:55:10',0),(0,0,'2526','H','O',4025,1,0,'2025-11-19','00:00:00','XRY0018',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-19 11:56:21','manshi','2025-11-19 11:56:21',0),(0,0,'2526','H','O',4026,1,0,'2025-11-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 11:56:55','reception','2025-11-19 11:56:55',0),(0,0,'2526','H','O',4027,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 12:00:49','reception','2025-11-19 12:00:49',0),(0,0,'2526','H','O',4028,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-19 12:01:40','janvi','2025-11-19 12:01:40',0),(0,0,'2526','H','O',4029,1,0,'2025-11-19','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 12:02:55','reception','2025-11-19 12:02:55',0),(0,0,'2526','H','O',4029,2,0,'2025-11-19','00:00:00','NEU10018',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 12:02:55','reception','2025-11-19 12:02:55',0),(0,0,'2526','H','O',4029,3,0,'2025-11-19','00:00:00','NEU10017',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 12:02:55','reception','2025-11-19 12:02:55',0),(0,0,'2526','H','O',4030,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-19 12:04:42','manshi','2025-11-19 12:04:42',0),(0,0,'2526','H','O',4031,1,0,'2025-11-19','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-19 12:05:02','reception','2025-11-19 12:53:21',0),(0,0,'2526','H','O',4032,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 12:09:51','reception','2025-11-19 12:09:51',0),(0,0,'2526','H','O',4033,1,0,'2025-11-19','00:00:00','XRY0223',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-19 12:10:53','manshi','2025-11-19 12:10:53',0),(0,0,'2526','H','O',4034,1,0,'2025-11-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 12:12:13','reception','2025-11-19 12:12:13',0),(0,0,'2526','H','O',4035,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 12:13:11','reception','2025-11-19 12:13:11',0),(0,0,'2526','H','O',4036,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-19 12:31:06','janvi','2025-11-19 12:31:06',0),(0,0,'2526','H','O',4037,1,0,'2025-11-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-19 12:34:55','reception','2025-11-19 12:34:55',0),(0,0,'2526','H','O',4038,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-19 12:35:20','urvashi','2025-11-19 12:35:20',0),(0,0,'2526','H','O',4039,1,0,'2025-11-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 12:40:32','reception','2025-11-19 13:58:13',0),(0,0,'2526','H','O',4040,1,0,'2025-11-19','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-19 12:43:59','manshi','2025-11-19 12:43:59',0),(0,0,'2526','H','O',4041,1,0,'2025-11-19','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 12:47:13','reception','2025-11-19 12:47:13',0),(0,0,'2526','H','O',4041,2,0,'2025-11-19','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 12:47:13','reception','2025-11-19 12:47:13',0),(0,0,'2526','H','O',4041,3,0,'2025-11-19','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 12:47:13','reception','2025-11-19 12:47:13',0),(0,0,'2526','H','O',4042,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 12:49:59','reception','2025-11-19 12:49:59',0),(0,0,'2526','H','O',4043,1,0,'2025-11-19','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 12:53:21','reception','2025-11-19 12:53:21',0),(0,0,'2526','H','O',4044,1,0,'2025-11-19','00:00:00','CASE',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 12:54:53','reception','2025-11-19 12:54:53',0),(0,0,'2526','H','O',4045,1,0,'2025-11-19','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-19 13:09:05','urvashi','2025-11-19 13:09:05',0),(0,0,'2526','H','O',4046,1,0,'2025-11-19','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-19 13:14:13','janvi','2025-11-19 13:14:13',0),(0,0,'2526','H','O',4047,1,0,'2025-11-19','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 13:14:22','reception','2025-11-19 13:14:22',0),(0,0,'2526','H','O',4047,2,0,'2025-11-19','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 13:14:22','reception','2025-11-19 13:14:22',0),(0,0,'2526','H','O',4048,1,0,'2025-11-19','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-19 13:18:58','janvi','2025-11-19 13:18:58',0),(0,0,'2526','H','O',4049,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-19 13:32:04','urvashi','2025-11-19 13:32:04',0),(0,0,'2526','H','O',4050,1,0,'2025-11-19','00:00:00','OPWD0034',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-19 13:33:16','urvashi','2025-11-19 13:33:16',0),(0,0,'2526','H','O',4050,2,0,'2025-11-19','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-19 13:33:16','urvashi','2025-11-19 13:33:16',0),(0,0,'2526','H','O',4051,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-19 13:51:18','urvashi','2025-11-19 13:51:18',0),(0,0,'2526','H','O',4052,1,0,'2025-11-19','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-11-19 13:56:00','urvashi','2025-11-19 13:56:00',0),(0,0,'2526','H','O',4053,1,0,'2025-11-19','00:00:00','CASE',0,-1.00,900,-900,'A',0,0,-900.00,0.00,0.00,-900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 13:58:13','reception','2025-11-19 13:58:13',0),(0,0,'2526','H','O',4054,1,0,'2025-11-19','00:00:00','CASE',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 14:00:04','reception','2025-11-19 14:00:04',0),(0,0,'2526','H','O',4055,1,0,'2025-11-19','00:00:00','OPWD0023',0,1.00,7000,7000,'P',0,0,7000.00,0.00,0.00,7000.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-11-19 14:51:18','shweta','2025-11-19 14:51:18',0),(0,0,'2526','H','O',4056,1,0,'2025-11-19','00:00:00','OPWD0023',0,1.00,7000,7000,'P',0,0,7000.00,0.00,0.00,7000.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-11-19 14:52:15','shweta','2025-11-19 14:52:15',0),(0,0,'2526','H','O',4057,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 15:55:16','reception','2025-11-19 15:55:16',0),(0,0,'2526','H','O',4058,1,0,'2025-11-19','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-11-19 16:36:50','shweta','2025-11-19 16:36:50',0),(0,0,'2526','H','O',4059,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 16:58:19','reception','2025-11-19 16:58:19',0),(0,0,'2526','H','O',4060,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 17:10:05','reception','2025-11-19 17:19:49',0),(0,0,'2526','H','O',4061,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 17:12:20','reception','2025-11-19 17:12:20',0),(0,0,'2526','H','O',4061,2,0,'2025-11-19','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 17:12:20','reception','2025-11-19 17:12:20',0),(0,0,'2526','H','O',4062,1,0,'2025-11-19','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-19 17:16:08','reception','2025-11-19 17:16:08',0),(0,0,'2526','H','O',4063,1,0,'2025-11-19','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 17:17:50','reception','2025-11-19 17:17:50',0),(0,0,'2526','H','O',4064,1,0,'2025-11-19','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 17:19:49','reception','2025-11-19 17:19:49',0),(0,0,'2526','H','O',4065,1,0,'2025-11-19','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 17:21:55','reception','2025-11-19 17:21:55',0),(0,0,'2526','H','O',4066,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 17:23:06','reception','2025-11-19 17:23:06',0),(0,0,'2526','H','O',4067,1,0,'2025-11-19','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 17:25:48','reception','2025-11-19 17:25:48',0),(0,0,'2526','H','O',4068,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 17:27:07','reception','2025-11-19 17:27:07',0),(0,0,'2526','H','O',4069,1,0,'2025-11-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 17:27:29','drashti','2025-11-19 17:27:29',0),(0,0,'2526','H','O',4070,1,0,'2025-11-19','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 17:30:48','reception','2025-11-19 17:30:48',0),(0,0,'2526','H','O',4070,2,0,'2025-11-19','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 17:30:48','reception','2025-11-19 17:30:48',0),(0,0,'2526','H','O',4070,3,0,'2025-11-19','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 17:30:48','reception','2025-11-19 17:30:48',0),(0,0,'2526','H','O',4071,1,0,'2025-11-19','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-19 17:31:47','drashti','2025-11-19 17:31:47',0),(0,0,'2526','H','O',4072,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-19 17:32:51','urvashi','2025-11-19 17:32:51',0),(0,0,'2526','H','O',4073,1,0,'2025-11-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 17:35:16','drashti','2025-11-19 17:35:16',0),(0,0,'2526','H','O',4074,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 17:38:41','drashti','2025-11-19 17:38:41',0),(0,0,'2526','H','O',4075,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 17:40:09','reception','2025-11-19 17:40:09',0),(0,0,'2526','H','O',4076,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-19 17:40:35','urvashi','2025-11-19 17:40:35',0),(0,0,'2526','H','O',4077,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 17:43:52','drashti','2025-11-19 17:43:52',0),(0,0,'2526','H','O',4078,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-19 17:44:29','reception','2025-11-19 17:44:29',0),(0,0,'2526','H','O',4079,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-19 17:51:00','urvashi','2025-11-19 17:51:00',0),(0,0,'2526','H','O',4080,1,0,'2025-11-19','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 17:52:26','reception','2025-11-19 17:52:26',0),(0,0,'2526','H','O',4081,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 17:53:31','reception','2025-11-19 17:53:31',0),(0,0,'2526','H','O',4082,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-19 17:55:55','reception','2025-11-19 17:55:55',0),(0,0,'2526','H','O',4083,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 17:56:17','drashti','2025-11-19 17:56:17',0),(0,0,'2526','H','O',4084,1,0,'2025-11-19','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-19 17:57:23','drashti','2025-11-19 17:57:23',0),(0,0,'2526','H','O',4085,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-19 17:57:59','manshi','2025-11-19 17:57:59',0),(0,0,'2526','H','O',4086,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-19 17:58:01','urvashi','2025-11-19 17:58:01',0),(0,0,'2526','H','O',4087,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-19 17:59:09','urvashi','2025-11-19 17:59:09',0),(0,0,'2526','H','O',4088,1,0,'2025-11-19','00:00:00','XRY0235',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-19 18:00:39','manshi','2025-11-19 18:00:39',0),(0,0,'2526','H','O',4089,1,0,'2025-11-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 18:03:30','drashti','2025-11-19 18:03:30',0),(0,0,'2526','H','O',4090,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-19 18:03:32','urvashi','2025-11-19 18:03:32',0),(0,0,'2526','H','O',4091,1,0,'2025-11-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-19 18:04:49','drashti','2025-11-19 19:33:12',0),(0,0,'2526','H','O',4092,1,0,'2025-11-19','00:00:00','NEU10017',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-19 18:06:29','reception','2025-11-19 18:06:29',0),(0,0,'2526','H','O',4093,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-19 18:10:32','drashti','2025-11-19 18:10:32',0),(0,0,'2526','H','O',4093,2,0,'2025-11-19','00:00:00','ENTP0001',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-19 18:10:32','drashti','2025-11-19 18:10:32',0),(0,0,'2526','H','O',4094,1,0,'2025-11-19','00:00:00','XRY0052',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-19 18:11:02','manshi','2025-11-19 18:11:02',0),(0,0,'2526','H','O',4095,1,0,'2025-11-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 18:13:04','drashti','2025-11-19 18:13:04',0),(0,0,'2526','H','O',4096,1,0,'2025-11-19','00:00:00','MOPR0006',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-19 18:13:08','urvashi','2025-11-19 18:13:41',0),(0,0,'2526','H','O',4097,1,0,'2025-11-19','00:00:00','MOPR0006',0,-1.00,100,-100,'P',0,0,-100.00,0.00,0.00,-100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-19 18:13:41','urvashi','2025-11-19 18:13:41',0),(0,0,'2526','H','O',4098,1,0,'2025-11-19','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-19 18:14:41','urvashi','2025-11-19 18:14:41',0),(0,0,'2526','H','O',4099,1,0,'2025-11-19','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-19 18:15:57','manshi','2025-11-19 18:15:57',0),(0,0,'2526','H','O',4100,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 18:17:36','drashti','2025-11-19 18:17:36',0),(0,0,'2526','H','O',4101,1,0,'2025-11-19','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-19 18:20:40','urvashi','2025-11-19 18:20:40',0),(0,0,'2526','H','O',4102,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-19 18:23:07','drashti','2025-11-19 18:23:07',0),(0,0,'2526','H','O',4103,1,0,'2025-11-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 18:27:10','drashti','2025-11-19 18:27:10',0),(0,0,'2526','H','O',4104,1,0,'2025-11-19','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-19 18:28:26','reception','2025-11-19 18:28:26',0),(0,0,'2526','H','O',4105,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-19 18:28:49','urvashi','2025-11-19 18:28:49',0),(0,0,'2526','H','O',4106,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 18:29:37','drashti','2025-11-19 18:29:37',0),(0,0,'2526','H','O',4107,1,0,'2025-11-19','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-19 18:32:45','reception','2025-11-19 18:32:45',0),(0,0,'2526','H','O',4108,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 18:33:12','drashti','2025-11-19 18:33:12',0),(0,0,'2526','H','O',4109,1,0,'2025-11-19','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-19 18:33:31','urvashi','2025-11-19 18:33:31',0),(0,0,'2526','H','O',4110,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 18:40:30','reception','2025-11-19 18:40:30',0),(0,0,'2526','H','O',4111,1,0,'2025-11-19','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 18:42:57','reception','2025-11-19 19:18:37',0),(0,0,'2526','H','O',4112,1,0,'2025-11-19','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-19 18:45:17','drashti','2025-11-19 18:45:17',0),(0,0,'2526','H','O',4113,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 18:48:13','drashti','2025-11-19 18:48:13',0),(0,0,'2526','H','O',4114,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-19 18:50:41','urvashi','2025-11-19 18:50:41',0),(0,0,'2526','H','O',4115,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 18:55:24','drashti','2025-11-19 18:55:24',0),(0,0,'2526','H','O',4116,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-19 18:56:50','urvashi','2025-11-19 18:56:50',0),(0,0,'2526','H','O',4117,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 18:57:02','drashti','2025-11-19 18:57:02',0),(0,0,'2526','H','O',4118,1,0,'2025-11-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-19 19:01:24','urvashi','2025-11-19 19:01:24',0),(0,0,'2526','H','O',4119,1,0,'2025-11-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 19:02:10','drashti','2025-11-19 19:02:10',0),(0,0,'2526','H','O',4120,1,0,'2025-11-19','00:00:00','WPRC0037',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-19 19:02:34','manshi','2025-11-19 19:02:34',0),(0,0,'2526','H','O',4120,2,0,'2025-11-19','00:00:00','WPRC0050',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-19 19:02:34','manshi','2025-11-19 19:02:34',0),(0,0,'2526','H','O',4121,1,0,'2025-11-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-19 19:13:38','manshi','2025-11-19 19:13:38',0),(0,0,'2526','H','O',4122,1,0,'2025-11-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 19:17:18','drashti','2025-11-19 19:17:18',0),(0,0,'2526','H','O',4123,1,0,'2025-11-19','00:00:00','CASE',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 19:18:37','reception','2025-11-19 19:18:37',0),(0,0,'2526','H','O',4124,1,0,'2025-11-19','00:00:00','CASE',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-19 19:19:36','reception','2025-11-19 19:19:36',0),(0,0,'2526','H','O',4125,1,0,'2025-11-19','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-19 19:27:10','manshi','2025-11-19 19:27:10',0),(0,0,'2526','H','O',4126,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 19:28:35','drashti','2025-11-19 19:28:35',0),(0,0,'2526','H','O',4127,1,0,'2025-11-19','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 19:33:12','drashti','2025-11-19 19:33:12',0),(0,0,'2526','H','O',4128,1,0,'2025-11-19','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 19:35:10','drashti','2025-11-19 19:35:10',0),(0,0,'2526','H','O',4129,1,0,'2025-11-19','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-19 19:50:38','drashti','2025-11-19 19:50:38',0),(0,0,'2526','H','O',4130,1,0,'2025-11-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-19 19:52:34','drashti','2025-11-19 19:52:34',0),(0,0,'2526','H','O',4131,1,0,'2025-11-19','00:00:00','OPWD0023',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-19 20:14:10','urvashi','2025-11-19 20:14:10',0),(0,0,'2526','H','O',4132,1,0,'2025-11-20','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-20 08:49:21','reception','2025-11-20 08:49:21',0),(0,0,'2526','H','O',4132,2,0,'2025-11-20','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-20 08:49:21','reception','2025-11-20 08:49:21',0),(0,0,'2526','H','O',4133,1,0,'2025-11-20','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-20 09:25:08','reception','2025-11-20 09:25:08',0),(0,0,'2526','H','O',4134,1,0,'2025-11-20','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 09:28:01','drashti','2025-11-20 09:28:01',0),(0,0,'2526','H','O',4134,2,0,'2025-11-20','00:00:00','OPWD0019',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-20 09:28:01','drashti','2025-11-20 09:28:01',0),(0,0,'2526','H','O',4134,3,0,'2025-11-20','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 09:28:01','drashti','2025-11-20 09:28:01',0),(0,0,'2526','H','O',4135,1,0,'2025-11-20','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 09:45:49','drashti','2025-11-20 09:45:49',0),(0,0,'2526','H','O',4136,1,0,'2025-11-20','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 09:51:24','reception','2025-11-20 09:51:24',0),(0,0,'2526','H','O',4137,1,0,'2025-11-20','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-20 10:10:05','janvi','2025-11-20 10:10:05',0),(0,0,'2526','H','O',4138,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-20 10:10:28','manshi','2025-11-20 10:10:28',0),(0,0,'2526','H','O',4139,1,0,'2025-11-20','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 10:12:24','reception','2025-11-20 10:12:24',0),(0,0,'2526','H','O',4140,1,0,'2025-11-20','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 10:19:32','reception','2025-11-20 10:19:32',0),(0,0,'2526','H','O',4141,1,0,'2025-11-20','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-20 10:20:14','drashti','2025-11-20 10:20:14',0),(0,0,'2526','H','O',4142,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 10:33:14','reception','2025-11-20 10:33:14',0),(0,0,'2526','H','O',4143,1,0,'2025-11-20','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 10:37:58','reception','2025-11-20 10:37:58',0),(0,0,'2526','H','O',4144,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 10:38:53','reception','2025-11-20 10:38:53',0),(0,0,'2526','H','O',4145,1,0,'2025-11-20','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 10:43:46','reception','2025-11-20 10:43:46',0),(0,0,'2526','H','O',4146,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-20 10:48:29','janvi','2025-11-20 10:48:29',0),(0,0,'2526','H','O',4147,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 10:48:47','reception','2025-11-20 10:48:47',0),(0,0,'2526','H','O',4148,1,0,'2025-11-20','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 10:54:03','reception','2025-11-20 10:54:03',0),(0,0,'2526','H','O',4149,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-20 10:55:55','janvi','2025-11-20 10:55:55',0),(0,0,'2526','H','O',4150,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-20 10:57:10','janvi','2025-11-20 10:57:10',0),(0,0,'2526','H','O',4151,1,0,'2025-11-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 10:58:10','drashti','2025-11-20 10:58:10',0),(0,0,'2526','H','O',4152,1,0,'2025-11-20','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 10:58:22','reception','2025-11-20 10:58:22',0),(0,0,'2526','H','O',4152,2,0,'2025-11-20','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 10:58:22','reception','2025-11-20 10:58:22',0),(0,0,'2526','H','O',4153,1,0,'2025-11-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 11:05:26','drashti','2025-11-20 11:05:26',0),(0,0,'2526','H','O',4154,1,0,'2025-11-20','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-20 11:07:08','janvi','2025-11-20 11:07:08',0),(0,0,'2526','H','O',4155,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 11:07:36','reception','2025-11-20 11:07:36',0),(0,0,'2526','H','O',4156,1,0,'2025-11-20','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-20 11:10:15','janvi','2025-11-20 11:10:15',0),(0,0,'2526','H','O',4157,1,0,'2025-11-20','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-20 11:13:05','janvi','2025-11-20 11:13:05',0),(0,0,'2526','H','O',4158,1,0,'2025-11-20','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 11:13:51','reception','2025-11-20 11:13:51',0),(0,0,'2526','H','O',4158,2,0,'2025-11-20','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 11:13:51','reception','2025-11-20 11:13:51',0),(0,0,'2526','H','O',4158,3,0,'2025-11-20','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 11:13:51','reception','2025-11-20 11:13:51',0),(0,0,'2526','H','O',4159,1,0,'2025-11-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 11:14:26','drashti','2025-11-20 11:14:26',0),(0,0,'2526','H','O',4160,1,0,'2025-11-20','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-20 11:15:43','janvi','2025-11-20 11:15:43',0),(0,0,'2526','H','O',4161,1,0,'2025-11-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 11:16:47','drashti','2025-11-20 11:16:47',0),(0,0,'2526','H','O',4162,1,0,'2025-11-20','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 11:20:23','drashti','2025-11-20 11:20:23',0),(0,0,'2526','H','O',4163,1,0,'2025-11-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 11:25:25','drashti','2025-11-20 11:25:25',0),(0,0,'2526','H','O',4164,1,0,'2025-11-20','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 11:31:04','reception','2025-11-20 11:31:04',0),(0,0,'2526','H','O',4164,2,0,'2025-11-20','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 11:31:04','reception','2025-11-20 11:31:04',0),(0,0,'2526','H','O',4164,3,0,'2025-11-20','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 11:31:04','reception','2025-11-20 11:31:04',0),(0,0,'2526','H','O',4165,1,0,'2025-11-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 11:31:12','drashti','2025-11-20 11:31:12',0),(0,0,'2526','H','O',4166,1,0,'2025-11-20','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 11:33:32','reception','2025-11-20 11:33:32',0),(0,0,'2526','H','O',4167,1,0,'2025-11-20','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-20 11:35:20','janvi','2025-11-20 11:35:20',0),(0,0,'2526','H','O',4167,2,0,'2025-11-20','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-20 11:35:20','janvi','2025-11-20 11:35:20',0),(0,0,'2526','H','O',4168,1,0,'2025-11-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-20 11:39:42','janvi','2025-11-20 11:39:42',0),(0,0,'2526','H','O',4169,1,0,'2025-11-20','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 11:40:01','reception','2025-11-20 11:40:01',0),(0,0,'2526','H','O',4169,2,0,'2025-11-20','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 11:40:01','reception','2025-11-20 11:40:01',0),(0,0,'2526','H','O',4170,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 11:46:33','reception','2025-11-20 11:46:33',0),(0,0,'2526','H','O',4171,1,0,'2025-11-20','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-20 11:47:40','manshi','2025-11-20 11:47:40',0),(0,0,'2526','H','O',4172,1,0,'2025-11-20','00:00:00','XRY0072',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-20 11:47:57','manshi','2025-11-20 11:47:57',0),(0,0,'2526','H','O',4173,1,0,'2025-11-20','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 11:54:27','drashti','2025-11-20 11:54:27',0),(0,0,'2526','H','O',4174,1,0,'2025-11-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-20 11:54:59','janvi','2025-11-20 11:54:59',0),(0,0,'2526','H','O',4175,1,0,'2025-11-20','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 12:00:05','drashti','2025-11-20 12:00:05',0),(0,0,'2526','H','O',4176,1,0,'2025-11-20','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 12:01:56','reception','2025-11-20 12:01:56',0),(0,0,'2526','H','O',4177,1,0,'2025-11-20','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 12:07:30','drashti','2025-11-20 12:07:30',0),(0,0,'2526','H','O',4178,1,0,'2025-11-20','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 12:10:02','reception','2025-11-20 12:10:02',0),(0,0,'2526','H','O',4178,2,0,'2025-11-20','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 12:10:02','reception','2025-11-20 12:10:02',0),(0,0,'2526','H','O',4178,3,0,'2025-11-20','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 12:10:02','reception','2025-11-20 12:10:02',0),(0,0,'2526','H','O',4178,4,0,'2025-11-20','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 12:10:02','reception','2025-11-20 12:10:02',0),(0,0,'2526','H','O',4179,1,0,'2025-11-20','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-20 12:12:38','drashti','2025-11-20 12:12:38',0),(0,0,'2526','H','O',4180,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-20 12:13:02','janvi','2025-11-20 12:13:02',0),(0,0,'2526','H','O',4181,1,0,'2025-11-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 12:15:26','drashti','2025-11-20 12:15:26',0),(0,0,'2526','H','O',4182,1,0,'2025-11-20','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 12:22:48','reception','2025-11-20 12:22:48',0),(0,0,'2526','H','O',4183,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-20 12:24:12','janvi','2025-11-20 12:24:12',0),(0,0,'2526','H','O',4184,1,0,'2025-11-20','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 12:26:54','drashti','2025-11-20 12:26:54',0),(0,0,'2526','H','O',4185,1,0,'2025-11-20','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 12:27:52','reception','2025-11-20 12:27:52',0),(0,0,'2526','H','O',4185,2,0,'2025-11-20','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 12:27:52','reception','2025-11-20 12:27:52',0),(0,0,'2526','H','O',4185,3,0,'2025-11-20','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 12:27:52','reception','2025-11-20 12:27:52',0),(0,0,'2526','H','O',4186,1,0,'2025-11-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 12:27:58','drashti','2025-11-20 12:27:58',0),(0,0,'2526','H','O',4187,1,0,'2025-11-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-20 12:29:22','janvi','2025-11-20 12:29:22',0),(0,0,'2526','H','O',4188,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 12:29:43','reception','2025-11-20 12:29:43',0),(0,0,'2526','H','O',4189,1,0,'2025-11-20','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 12:30:15','drashti','2025-11-20 12:30:15',0),(0,0,'2526','H','O',4190,1,0,'2025-11-20','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-20 12:31:27','manshi','2025-11-20 12:31:27',0),(0,0,'2526','H','O',4191,1,0,'2025-11-20','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 12:32:10','reception','2025-11-20 12:32:10',0),(0,0,'2526','H','O',4191,2,0,'2025-11-20','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 12:32:10','reception','2025-11-20 12:32:10',0),(0,0,'2526','H','O',4192,1,0,'2025-11-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 12:38:53','drashti','2025-11-20 12:38:53',0),(0,0,'2526','H','O',4193,1,0,'2025-11-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-20 12:44:03','janvi','2025-11-20 12:44:03',0),(0,0,'2526','H','O',4194,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 12:44:03','reception','2025-11-20 12:44:03',0),(0,0,'2526','H','O',4195,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 12:59:20','reception','2025-11-20 12:59:20',0),(0,0,'2526','H','O',4196,1,0,'2025-11-20','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-20 13:04:34','urvashi','2025-11-20 13:04:34',0),(0,0,'2526','H','O',4197,1,0,'2025-11-20','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 13:06:41','reception','2025-11-20 13:06:41',0),(0,0,'2526','H','O',4197,2,0,'2025-11-20','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 13:06:41','reception','2025-11-20 13:06:41',0),(0,0,'2526','H','O',4197,3,0,'2025-11-20','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 13:06:41','reception','2025-11-20 13:06:41',0),(0,0,'2526','H','O',4198,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 13:12:51','reception','2025-11-20 13:12:51',0),(0,0,'2526','H','O',4199,1,0,'2025-11-20','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 13:36:36','reception','2025-11-20 13:36:36',0),(0,0,'2526','H','O',4199,2,0,'2025-11-20','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 13:36:36','reception','2025-11-20 13:36:36',0),(0,0,'2526','H','O',4200,1,0,'2025-11-20','00:00:00','OPWD0025',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-20 13:38:03','urvashi','2025-11-20 13:38:03',0),(0,0,'2526','H','O',4201,1,0,'2025-11-20','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 13:50:56','reception','2025-11-20 13:50:56',0),(0,0,'2526','H','O',4201,2,0,'2025-11-20','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 13:50:56','reception','2025-11-20 13:50:56',0),(0,0,'2526','H','O',4201,3,0,'2025-11-20','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 13:50:56','reception','2025-11-20 13:50:56',0),(0,0,'2526','H','O',4202,1,0,'2025-11-20','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-20 16:33:45','priyanshi','2025-11-20 16:33:45',0),(0,0,'2526','H','O',4203,1,0,'2025-11-20','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-20 16:38:43','priyanshi','2025-11-20 16:38:43',0),(0,0,'2526','H','O',4203,2,0,'2025-11-20','00:00:00','NEU10019',0,1.00,1800,1800,'P',0,0,1800.00,0.00,0.00,1800.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-20 16:38:43','priyanshi','2025-11-20 16:38:43',0),(0,0,'2526','H','O',4203,3,0,'2025-11-20','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-20 16:38:43','priyanshi','2025-11-20 16:38:43',0),(0,0,'2526','H','O',4204,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-20 16:47:52','priyanshi','2025-11-20 16:47:52',0),(0,0,'2526','H','O',4205,1,0,'2025-11-20','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 16:52:24','reception','2025-11-20 16:52:24',0),(0,0,'2526','H','O',4206,1,0,'2025-11-20','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-20 16:54:51','drashti','2025-11-20 16:54:51',0),(0,0,'2526','H','O',4207,1,0,'2025-11-20','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 17:16:01','reception','2025-11-20 17:16:01',0),(0,0,'2526','H','O',4208,1,0,'2025-11-20','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-20 17:16:02','drashti','2025-11-20 17:16:02',0),(0,0,'2526','H','O',4209,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 17:18:28','reception','2025-11-20 17:18:28',0),(0,0,'2526','H','O',4210,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 17:21:03','reception','2025-11-20 17:21:03',0),(0,0,'2526','H','O',4211,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 17:24:57','reception','2025-11-20 18:29:50',0),(0,0,'2526','H','O',4212,1,0,'2025-11-20','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 17:26:46','reception','2025-11-20 17:26:46',0),(0,0,'2526','H','O',4212,2,0,'2025-11-20','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 17:26:46','reception','2025-11-20 17:26:46',0),(0,0,'2526','H','O',4212,3,0,'2025-11-20','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 17:26:46','reception','2025-11-20 17:26:46',0),(0,0,'2526','H','O',4213,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-20 17:28:07','manshi','2025-11-20 17:28:07',0),(0,0,'2526','H','O',4214,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 17:33:25','reception','2025-11-20 17:33:25',0),(0,0,'2526','H','O',4215,1,0,'2025-11-20','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 17:39:59','reception','2025-11-20 17:39:59',0),(0,0,'2526','H','O',4216,1,0,'2025-11-20','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 17:43:25','reception','2025-11-20 17:43:25',0),(0,0,'2526','H','O',4216,2,0,'2025-11-20','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 17:43:25','reception','2025-11-20 17:43:25',0),(0,0,'2526','H','O',4216,3,0,'2025-11-20','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 17:43:25','reception','2025-11-20 17:43:25',0),(0,0,'2526','H','O',4217,1,0,'2025-11-20','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 17:45:50','reception','2025-11-20 17:45:50',0),(0,0,'2526','H','O',4218,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 17:46:50','reception','2025-11-20 17:46:50',0),(0,0,'2526','H','O',4219,1,0,'2025-11-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 17:47:54','drashti','2025-11-20 17:47:54',0),(0,0,'2526','H','O',4220,1,0,'2025-11-20','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 17:56:04','reception','2025-11-20 17:56:04',0),(0,0,'2526','H','O',4220,2,0,'2025-11-20','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 17:56:04','reception','2025-11-20 17:56:04',0),(0,0,'2526','H','O',4221,1,0,'2025-11-20','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-20 18:05:09','janvi','2025-11-20 18:05:09',0),(0,0,'2526','H','O',4222,1,0,'2025-11-20','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-20 18:12:08','janvi','2025-11-20 18:12:08',0),(0,0,'2526','H','O',4223,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-20 18:16:59','manshi','2025-11-20 18:16:59',0),(0,0,'2526','H','O',4224,1,0,'2025-11-20','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-20 18:18:20','reception','2025-11-20 18:18:20',0),(0,0,'2526','H','O',4225,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-20 18:19:49','drashti','2025-11-20 18:19:49',0),(0,0,'2526','H','O',4226,1,0,'2025-11-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 18:20:52','reception','2025-11-20 18:20:52',0),(0,0,'2526','H','O',4227,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 18:26:16','reception','2025-11-20 18:26:16',0),(0,0,'2526','H','O',4228,1,0,'2025-11-20','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-20 18:27:00','janvi','2025-11-20 18:27:00',0),(0,0,'2526','H','O',4229,1,0,'2025-11-20','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 18:28:26','drashti','2025-11-20 18:28:26',0),(0,0,'2526','H','O',4230,1,0,'2025-11-20','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 18:29:50','reception','2025-11-20 18:29:50',0),(0,0,'2526','H','O',4231,1,0,'2025-11-20','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 18:32:41','drashti','2025-11-20 18:32:41',0),(0,0,'2526','H','O',4232,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 18:33:01','reception','2025-11-20 18:33:01',0),(0,0,'2526','H','O',4233,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 18:36:32','reception','2025-11-20 18:36:32',0),(0,0,'2526','H','O',4234,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 18:38:18','reception','2025-11-20 18:38:18',0),(0,0,'2526','H','O',4235,1,0,'2025-11-20','00:00:00','XRY0246',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-20 18:38:21','manshi','2025-11-20 18:38:21',0),(0,0,'2526','H','O',4236,1,0,'2025-11-20','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-20 18:39:22','janvi','2025-11-20 18:39:22',0),(0,0,'2526','H','O',4237,1,0,'2025-11-20','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-20 18:40:48','manshi','2025-11-20 18:40:48',0),(0,0,'2526','H','O',4238,1,0,'2025-11-20','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 18:44:27','drashti','2025-11-20 18:44:27',0),(0,0,'2526','H','O',4239,1,0,'2025-11-20','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-20 18:50:59','drashti','2025-11-20 18:50:59',0),(0,0,'2526','H','O',4240,1,0,'2025-11-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 18:56:43','drashti','2025-11-20 18:56:43',0),(0,0,'2526','H','O',4241,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-20 19:17:36','reception','2025-11-20 19:17:36',0),(0,0,'2526','H','O',4242,1,0,'2025-11-20','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-20 19:20:01','manshi','2025-11-20 19:20:01',0),(0,0,'2526','H','O',4243,1,0,'2025-11-20','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-20 19:20:44','manshi','2025-11-20 19:20:44',0),(0,0,'2526','H','O',4244,1,0,'2025-11-20','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-20 19:23:08','janvi','2025-11-20 19:23:08',0),(0,0,'2526','H','O',4245,1,0,'2025-11-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-20 19:27:00','janvi','2025-11-20 19:27:00',0),(0,0,'2526','H','O',4246,1,0,'2025-11-20','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-20 19:32:48','manshi','2025-11-20 19:32:48',0),(0,0,'2526','H','O',4247,1,0,'2025-11-20','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-20 19:36:24','janvi','2025-11-20 19:36:24',0),(0,0,'2526','H','O',4248,1,0,'2025-11-20','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-20 19:53:39','janvi','2025-11-20 19:53:39',0),(0,0,'2526','H','O',4249,1,0,'2025-11-20','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-20 20:43:17','drashti','2025-11-20 20:43:17',0),(0,0,'2526','H','O',4250,1,0,'2025-11-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-20 20:49:15','drashti','2025-11-20 20:49:15',0),(0,0,'2526','H','O',4251,1,0,'2025-11-21','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-21 09:00:17','priyanshi','2025-11-21 09:00:17',0),(0,0,'2526','H','O',4251,2,0,'2025-11-21','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-21 09:00:17','priyanshi','2025-11-21 09:00:17',0),(0,0,'2526','H','O',4252,1,0,'2025-11-21','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-21 09:00:55','priyanshi','2025-11-21 09:00:55',0),(0,0,'2526','H','O',4253,1,0,'2025-11-21','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-21 09:02:09','priyanshi','2025-11-21 09:02:09',0),(0,0,'2526','H','O',4254,1,0,'2025-11-21','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-21 09:27:20','priyanshi','2025-11-21 09:27:20',0),(0,0,'2526','H','O',4255,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-21 09:39:35','priyanshi','2025-11-21 09:39:35',0),(0,0,'2526','H','O',4256,1,0,'2025-11-21','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 09:44:09','drashti','2025-11-21 09:44:09',0),(0,0,'2526','H','O',4257,1,0,'2025-11-21','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-21 10:04:58','janvi','2025-11-21 10:04:58',0),(0,0,'2526','H','O',4258,1,0,'2025-11-21','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 10:07:46','drashti','2025-11-21 10:07:46',0),(0,0,'2526','H','O',4259,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 10:17:53','urvashi','2025-11-21 10:17:53',0),(0,0,'2526','H','O',4260,1,0,'2025-11-21','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 10:30:51','urvashi','2025-11-21 10:30:51',0),(0,0,'2526','H','O',4261,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-21 10:31:38','janvi','2025-11-21 10:31:38',0),(0,0,'2526','H','O',4262,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-21 10:32:24','drashti','2025-11-21 10:32:24',0),(0,0,'2526','H','O',4263,1,0,'2025-11-21','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-21 10:39:00','manshi','2025-11-21 10:39:00',0),(0,0,'2526','H','O',4264,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-21 10:39:06','drashti','2025-11-21 10:39:06',0),(0,0,'2526','H','O',4265,1,0,'2025-11-21','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 10:40:08','urvashi','2025-11-21 10:40:08',0),(0,0,'2526','H','O',4266,1,0,'2025-11-21','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-21 10:45:40','janvi','2025-11-21 10:45:40',0),(0,0,'2526','H','O',4267,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 10:55:09','urvashi','2025-11-21 10:55:09',0),(0,0,'2526','H','O',4268,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 10:55:19','urvashi','2025-11-21 10:55:19',0),(0,0,'2526','H','O',4269,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 10:57:06','urvashi','2025-11-21 10:57:06',0),(0,0,'2526','H','O',4270,1,0,'2025-11-21','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 11:04:26','drashti','2025-11-21 11:04:26',0),(0,0,'2526','H','O',4271,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-21 11:12:04','janvi','2025-11-21 11:12:04',0),(0,0,'2526','H','O',4272,1,0,'2025-11-21','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-21 11:13:17','urvashi','2025-11-21 11:13:17',0),(0,0,'2526','H','O',4273,1,0,'2025-11-21','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-21 11:14:05','drashti','2025-11-21 11:14:05',0),(0,0,'2526','H','O',4274,1,0,'2025-11-21','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 11:21:14','urvashi','2025-11-21 11:21:14',0),(0,0,'2526','H','O',4274,2,0,'2025-11-21','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 11:21:14','urvashi','2025-11-21 11:21:14',0),(0,0,'2526','H','O',4274,3,0,'2025-11-21','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 11:21:14','urvashi','2025-11-21 11:21:14',0),(0,0,'2526','H','O',4275,1,0,'2025-11-21','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 11:21:34','urvashi','2025-11-21 11:21:34',0),(0,0,'2526','H','O',4276,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-21 11:25:11','manshi','2025-11-21 11:25:11',0),(0,0,'2526','H','O',4277,1,0,'2025-11-21','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 11:31:36','urvashi','2025-11-21 11:31:36',0),(0,0,'2526','H','O',4278,1,0,'2025-11-21','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 11:35:16','drashti','2025-11-21 11:35:16',0),(0,0,'2526','H','O',4279,1,0,'2025-11-21','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 11:35:57','drashti','2025-11-21 11:35:57',0),(0,0,'2526','H','O',4280,1,0,'2025-11-21','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-21 11:43:25','manshi','2025-11-21 11:43:25',0),(0,0,'2526','H','O',4281,1,0,'2025-11-21','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 11:45:14','urvashi','2025-11-21 11:45:14',0),(0,0,'2526','H','O',4281,2,0,'2025-11-21','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 11:45:14','urvashi','2025-11-21 11:45:14',0),(0,0,'2526','H','O',4282,1,0,'2025-11-21','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-21 11:45:46','drashti','2025-11-21 11:45:46',0),(0,0,'2526','H','O',4283,1,0,'2025-11-21','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 11:47:21','urvashi','2025-11-21 11:47:21',0),(0,0,'2526','H','O',4283,2,0,'2025-11-21','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 11:47:21','urvashi','2025-11-21 11:47:21',0),(0,0,'2526','H','O',4284,1,0,'2025-11-21','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 11:48:49','drashti','2025-11-21 11:48:49',0),(0,0,'2526','H','O',4285,1,0,'2025-11-21','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 11:53:10','drashti','2025-11-21 11:53:10',0),(0,0,'2526','H','O',4286,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 11:57:41','urvashi','2025-11-21 11:57:41',0),(0,0,'2526','H','O',4287,1,0,'2025-11-21','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 12:03:55','drashti','2025-11-21 12:03:55',0),(0,0,'2526','H','O',4288,1,0,'2025-11-21','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-21 12:04:29','manshi','2025-11-21 12:04:29',0),(0,0,'2526','H','O',4289,1,0,'2025-11-21','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 12:05:02','urvashi','2025-11-21 12:05:02',0),(0,0,'2526','H','O',4289,2,0,'2025-11-21','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 12:05:02','urvashi','2025-11-21 12:05:02',0),(0,0,'2526','H','O',4289,3,0,'2025-11-21','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 12:05:02','urvashi','2025-11-21 12:05:02',0),(0,0,'2526','H','O',4290,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-21 12:05:54','drashti','2025-11-21 12:05:54',0),(0,0,'2526','H','O',4291,1,0,'2025-11-21','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 12:11:08','drashti','2025-11-21 12:11:08',0),(0,0,'2526','H','O',4292,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 12:12:04','urvashi','2025-11-21 12:12:04',0),(0,0,'2526','H','O',4293,1,0,'2025-11-21','00:00:00','XRY0100',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-21 12:13:46','manshi','2025-11-21 12:13:46',0),(0,0,'2526','H','O',4294,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 12:13:59','urvashi','2025-11-21 12:13:59',0),(0,0,'2526','H','O',4295,1,0,'2025-11-21','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 12:22:21','urvashi','2025-11-21 12:22:21',0),(0,0,'2526','H','O',4296,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-21 12:28:49','drashti','2025-11-21 12:28:49',0),(0,0,'2526','H','O',4297,1,0,'2025-11-21','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 12:32:10','urvashi','2025-11-21 12:32:10',0),(0,0,'2526','H','O',4298,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 12:37:32','urvashi','2025-11-21 12:37:32',0),(0,0,'2526','H','O',4299,1,0,'2025-11-21','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 12:46:47','drashti','2025-11-21 12:46:47',0),(0,0,'2526','H','O',4300,1,0,'2025-11-21','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 12:59:52','urvashi','2025-11-21 12:59:52',0),(0,0,'2526','H','O',4300,2,0,'2025-11-21','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 12:59:52','urvashi','2025-11-21 12:59:52',0),(0,0,'2526','H','O',4300,3,0,'2025-11-21','00:00:00','NEU10017',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 12:59:52','urvashi','2025-11-21 12:59:52',0),(0,0,'2526','H','O',4301,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-21 13:03:12','manshi','2025-11-21 13:03:12',0),(0,0,'2526','H','O',4302,1,0,'2025-11-21','00:00:00','OPWD0030',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-21 13:14:08','janvi','2025-11-21 13:14:08',0),(0,0,'2526','H','O',4303,1,0,'2025-11-21','00:00:00','MOPR0006',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-11-21 13:34:03','urvashi','2025-11-21 13:34:03',0),(0,0,'2526','H','O',4304,1,0,'2025-11-21','00:00:00','OPWD0025',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 13:41:38','drashti','2025-11-21 13:41:38',0),(0,0,'2526','H','O',4305,1,0,'2025-11-21','00:00:00','LAB0817',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-21 14:10:54','janvi','2025-11-21 14:10:54',0),(0,0,'2526','H','O',4306,1,0,'2025-11-21','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-21 16:51:49','janvi','2025-11-21 16:51:49',0),(0,0,'2526','H','O',4307,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-21 16:51:55','priyanshi','2025-11-21 16:51:55',0),(0,0,'2526','H','O',4308,1,0,'2025-11-21','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 17:08:14','urvashi','2025-11-21 17:08:14',0),(0,0,'2526','H','O',4309,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-21 17:10:28','drashti','2025-11-21 17:10:28',0),(0,0,'2526','H','O',4310,1,0,'2025-11-21','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 17:22:45','drashti','2025-11-21 17:22:45',0),(0,0,'2526','H','O',4311,1,0,'2025-11-21','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 17:32:01','urvashi','2025-11-21 17:32:01',0),(0,0,'2526','H','O',4311,2,0,'2025-11-21','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 17:32:01','urvashi','2025-11-21 17:32:01',0),(0,0,'2526','H','O',4311,3,0,'2025-11-21','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 17:32:01','urvashi','2025-11-21 17:32:01',0),(0,0,'2526','H','O',4312,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 17:35:42','urvashi','2025-11-21 17:35:42',0),(0,0,'2526','H','O',4313,1,0,'2025-11-21','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 17:41:50','drashti','2025-11-21 17:41:50',0),(0,0,'2526','H','O',4314,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-21 17:42:29','janvi','2025-11-21 17:42:29',0),(0,0,'2526','H','O',4315,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-11-21 17:48:34','janvi','2025-11-21 17:48:34',0),(0,0,'2526','H','O',4316,1,0,'2025-11-21','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-21 17:51:05','janvi','2025-11-21 17:51:05',0),(0,0,'2526','H','O',4317,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-21 17:56:00','drashti','2025-11-21 17:56:00',0),(0,0,'2526','H','O',4318,1,0,'2025-11-21','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 17:56:28','drashti','2025-11-21 17:56:28',0),(0,0,'2526','H','O',4319,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 17:57:43','urvashi','2025-11-21 17:57:43',0),(0,0,'2526','H','O',4320,1,0,'2025-11-21','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 18:04:15','urvashi','2025-11-21 18:04:15',0),(0,0,'2526','H','O',4321,1,0,'2025-11-21','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-21 18:05:08','manshi','2025-11-21 18:05:08',0),(0,0,'2526','H','O',4322,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-21 18:05:52','drashti','2025-11-21 18:05:52',0),(0,0,'2526','H','O',4323,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-21 18:08:56','drashti','2025-11-21 18:08:56',0),(0,0,'2526','H','O',4324,1,0,'2025-11-21','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-21 18:10:14','janvi','2025-11-21 18:10:14',0),(0,0,'2526','H','O',4325,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 18:11:39','urvashi','2025-11-21 18:11:39',0),(0,0,'2526','H','O',4326,1,0,'2025-11-21','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-21 18:20:02','drashti','2025-11-21 18:20:02',0),(0,0,'2526','H','O',4327,1,0,'2025-11-21','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 18:31:44','urvashi','2025-11-21 18:31:44',0),(0,0,'2526','H','O',4327,2,0,'2025-11-21','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 18:31:44','urvashi','2025-11-21 18:31:44',0),(0,0,'2526','H','O',4328,1,0,'2025-11-21','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 18:34:52','drashti','2025-11-21 18:34:52',0),(0,0,'2526','H','O',4329,1,0,'2025-11-21','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-21 18:35:56','urvashi','2025-11-21 18:35:56',0),(0,0,'2526','H','O',4330,1,0,'2025-11-21','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 18:36:57','urvashi','2025-11-21 18:36:57',0),(0,0,'2526','H','O',4331,1,0,'2025-11-21','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-21 18:41:05','janvi','2025-11-21 18:41:05',0),(0,0,'2526','H','O',4332,1,0,'2025-11-21','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 18:45:44','drashti','2025-11-21 18:45:44',0),(0,0,'2526','H','O',4333,1,0,'2025-11-21','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 18:48:07','urvashi','2025-11-21 18:48:07',0),(0,0,'2526','H','O',4333,2,0,'2025-11-21','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 18:48:07','urvashi','2025-11-21 18:48:07',0),(0,0,'2526','H','O',4333,3,0,'2025-11-21','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-21 18:48:07','urvashi','2025-11-21 18:48:07',0),(0,0,'2526','H','O',4334,1,0,'2025-11-21','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 18:50:47','drashti','2025-11-21 18:50:47',0),(0,0,'2526','H','O',4335,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-21 18:54:18','manshi','2025-11-21 18:54:18',0),(0,0,'2526','H','O',4336,1,0,'2025-11-21','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 18:55:01','drashti','2025-11-21 18:55:01',0),(0,0,'2526','H','O',4337,1,0,'2025-11-21','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-21 18:57:12','drashti','2025-11-21 18:57:12',0),(0,0,'2526','H','O',4338,1,0,'2025-11-21','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 19:03:02','drashti','2025-11-21 19:05:34',0),(0,0,'2526','H','O',4339,1,0,'2025-11-21','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 19:05:34','drashti','2025-11-21 19:05:34',0),(0,0,'2526','H','O',4340,1,0,'2025-11-21','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-21 19:29:36','urvashi','2025-11-21 19:29:36',0),(0,0,'2526','H','O',4341,1,0,'2025-11-21','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-21 19:41:49','janvi','2025-11-21 19:41:49',0),(0,0,'2526','H','O',4342,1,0,'2025-11-21','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 20:20:52','drashti','2025-11-21 20:20:52',0),(0,0,'2526','H','O',4343,1,0,'2025-11-21','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-21 20:30:47','drashti','2025-11-21 20:30:47',0),(0,0,'2526','H','O',4344,1,0,'2025-11-22','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-22 09:15:17','priyanshi','2025-11-22 09:15:17',0),(0,0,'2526','H','O',4344,2,0,'2025-11-22','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-22 09:15:17','priyanshi','2025-11-22 09:15:17',0),(0,0,'2526','H','O',4344,3,0,'2025-11-22','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-22 09:15:17','priyanshi','2025-11-22 09:15:17',0),(0,0,'2526','H','O',4345,1,0,'2025-11-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-22 09:23:47','priyanshi','2025-11-22 09:23:47',0),(0,0,'2526','H','O',4346,1,0,'2025-11-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-22 09:50:44','priyanshi','2025-11-22 09:50:44',0),(0,0,'2526','H','O',4347,1,0,'2025-11-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-22 09:51:33','janvi','2025-11-22 09:51:33',0),(0,0,'2526','H','O',4348,1,0,'2025-11-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-22 10:02:56','priyanshi','2025-11-22 10:02:56',0),(0,0,'2526','H','O',4349,1,0,'2025-11-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-22 10:05:29','priyanshi','2025-11-22 10:05:29',0),(0,0,'2526','H','O',4350,1,0,'2025-11-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-22 10:16:34','drashti','2025-11-22 10:16:34',0),(0,0,'2526','H','O',4351,1,0,'2025-11-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-22 10:35:47','drashti','2025-11-22 10:35:47',0),(0,0,'2526','H','O',4352,1,0,'2025-11-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-22 10:37:42','urvashi','2025-11-22 10:37:42',0),(0,0,'2526','H','O',4353,1,0,'2025-11-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-22 10:40:16','priyanshi','2025-11-22 10:40:16',0),(0,0,'2526','H','O',4354,1,0,'2025-11-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-11-22 10:40:18','janvi','2025-11-22 10:40:18',0),(0,0,'2526','H','O',4354,2,0,'2025-11-22','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-11-22 10:40:18','janvi','2025-11-22 10:40:18',0),(0,0,'2526','H','O',4354,3,0,'2025-11-22','00:00:00','XRY0223',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-22 10:40:18','janvi','2025-11-22 10:40:18',0),(0,0,'2526','H','O',4354,4,0,'2025-11-22','00:00:00','XRY0045',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-22 10:40:18','janvi','2025-11-22 10:40:18',0),(0,0,'2526','H','O',4355,1,0,'2025-11-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-22 10:48:39','priyanshi','2025-11-22 10:48:39',0),(0,0,'2526','H','O',4356,1,0,'2025-11-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-22 10:57:02','drashti','2025-11-22 10:57:02',0),(0,0,'2526','H','O',4357,1,0,'2025-11-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-22 10:57:36','priyanshi','2025-11-22 10:57:36',0),(0,0,'2526','H','O',4358,1,0,'2025-11-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-22 10:59:46','priyanshi','2025-11-22 10:59:46',0),(0,0,'2526','H','O',4359,1,0,'2025-11-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-22 11:04:46','priyanshi','2025-11-22 11:04:46',0),(0,0,'2526','H','O',4360,1,0,'2025-11-22','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-22 11:05:27','drashti','2025-11-22 11:05:27',0),(0,0,'2526','H','O',4361,1,0,'2025-11-22','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-22 11:16:15','drashti','2025-11-22 11:16:15',0),(0,0,'2526','H','O',4362,1,0,'2025-11-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-22 11:18:15','urvashi','2025-11-22 11:18:15',0),(0,0,'2526','H','O',4363,1,0,'2025-11-22','00:00:00','MOPR0006',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-22 11:23:50','urvashi','2025-11-22 11:23:50',0),(0,0,'2526','H','O',4364,1,0,'2025-11-22','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-22 11:26:11','priyanshi','2025-11-22 11:26:11',0),(0,0,'2526','H','O',4365,1,0,'2025-11-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-22 11:27:01','urvashi','2025-11-22 11:27:01',0),(0,0,'2526','H','O',4366,1,0,'2025-11-22','00:00:00','NEU10019',0,1.00,1800,1800,'P',0,0,1800.00,0.00,0.00,1800.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-22 11:27:08','priyanshi','2025-11-22 11:27:08',0),(0,0,'2526','H','O',4366,2,0,'2025-11-22','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-22 11:27:08','priyanshi','2025-11-22 11:27:08',0),(0,0,'2526','H','O',4366,3,0,'2025-11-22','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-22 11:27:08','priyanshi','2025-11-22 11:27:08',0),(0,0,'2526','H','O',4367,1,0,'2025-11-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-22 11:29:15','priyanshi','2025-11-22 11:29:15',0),(0,0,'2526','H','O',4368,1,0,'2025-11-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-11-22 11:30:54','janvi','2025-11-22 11:30:54',0),(0,0,'2526','H','O',4369,1,0,'2025-11-22','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-22 11:34:49','urvashi','2025-11-22 12:48:39',0),(0,0,'2526','H','O',4370,1,0,'2025-11-22','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-22 11:37:15','priyanshi','2025-11-22 11:37:15',0),(0,0,'2526','H','O',4371,1,0,'2025-11-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-22 11:37:39','drashti','2025-11-22 11:37:39',0),(0,0,'2526','H','O',4372,1,0,'2025-11-22','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-22 11:39:25','urvashi','2025-11-22 11:39:25',0),(0,0,'2526','H','O',4373,1,0,'2025-11-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-22 11:42:29','drashti','2025-11-22 11:42:29',0),(0,0,'2526','H','O',4374,1,0,'2025-11-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-22 11:44:05','urvashi','2025-11-22 11:44:05',0),(0,0,'2526','H','O',4375,1,0,'2025-11-22','00:00:00','OPWD0029',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-22 11:48:56','urvashi','2025-11-22 11:48:56',0),(0,0,'2526','H','O',4376,1,0,'2025-11-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-22 11:52:19','priyanshi','2025-11-22 11:52:19',0),(0,0,'2526','H','O',4377,1,0,'2025-11-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-22 11:55:25','priyanshi','2025-11-22 11:55:25',0),(0,0,'2526','H','O',4378,1,0,'2025-11-22','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-22 11:56:20','drashti','2025-11-22 11:56:20',0),(0,0,'2526','H','O',4379,1,0,'2025-11-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-22 12:00:33','drashti','2025-11-22 12:00:33',0),(0,0,'2526','H','O',4380,1,0,'2025-11-22','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-22 12:02:46','drashti','2025-11-22 12:02:46',0),(0,0,'2526','H','O',4381,1,0,'2025-11-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-22 12:05:32','priyanshi','2025-11-22 12:05:32',0),(0,0,'2526','H','O',4382,1,0,'2025-11-22','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-22 12:06:32','drashti','2025-11-22 12:06:32',0),(0,0,'2526','H','O',4383,1,0,'2025-11-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-22 12:07:25','priyanshi','2025-11-22 12:07:25',0),(0,0,'2526','H','O',4384,1,0,'2025-11-22','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-22 12:08:06','urvashi','2025-11-22 12:08:06',0),(0,0,'2526','H','O',4385,1,0,'2025-11-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-22 12:10:28','priyanshi','2025-11-22 12:10:28',0),(0,0,'2526','H','O',4386,1,0,'2025-11-22','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-22 12:11:25','drashti','2025-11-22 12:11:25',0),(0,0,'2526','H','O',4387,1,0,'2025-11-22','00:00:00','NEU10019',0,1.00,1800,1800,'P',0,0,1800.00,0.00,0.00,1800.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-22 12:17:21','priyanshi','2025-11-22 12:17:21',0),(0,0,'2526','H','O',4387,2,0,'2025-11-22','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-22 12:17:21','priyanshi','2025-11-22 12:17:21',0),(0,0,'2526','H','O',4387,3,0,'2025-11-22','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-22 12:17:21','priyanshi','2025-11-22 12:17:21',0),(0,0,'2526','H','O',4388,1,0,'2025-11-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-22 12:21:13','urvashi','2025-11-22 12:21:13',0),(0,0,'2526','H','O',4389,1,0,'2025-11-22','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-22 12:23:03','priyanshi','2025-11-22 12:23:03',0),(0,0,'2526','H','O',4389,2,0,'2025-11-22','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-22 12:23:03','priyanshi','2025-11-22 12:23:03',0),(0,0,'2526','H','O',4389,3,0,'2025-11-22','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-22 12:23:03','priyanshi','2025-11-22 12:23:03',0),(0,0,'2526','H','O',4390,1,0,'2025-11-22','00:00:00','XRY0358',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-22 12:27:11','urvashi','2025-11-22 12:27:11',0),(0,0,'2526','H','O',4390,2,0,'2025-11-22','00:00:00','OPWD0023',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-22 12:27:11','urvashi','2025-11-22 12:27:11',0),(0,0,'2526','H','O',4391,1,0,'2025-11-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-22 12:28:21','drashti','2025-11-22 12:28:21',0),(0,0,'2526','H','O',4392,1,0,'2025-11-22','00:00:00','XRY0244',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-22 12:30:27','janvi','2025-11-22 12:30:27',0),(0,0,'2526','H','O',4393,1,0,'2025-11-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-22 12:31:05','drashti','2025-11-22 12:31:05',0),(0,0,'2526','H','O',4394,1,0,'2025-11-22','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-22 12:38:05','urvashi','2025-11-22 12:38:05',0),(0,0,'2526','H','O',4395,1,0,'2025-11-22','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-22 12:44:47','priyanshi','2025-11-22 12:44:47',0),(0,0,'2526','H','O',4396,1,0,'2025-11-22','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-22 12:45:53','drashti','2025-11-22 12:45:53',0),(0,0,'2526','H','O',4397,1,0,'2025-11-22','00:00:00','OPWD0024',0,-1.00,1000,-1000,'P',0,0,-1000.00,0.00,0.00,-1000.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-22 12:48:39','urvashi','2025-11-22 12:48:39',0),(0,0,'2526','H','O',4398,1,0,'2025-11-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-22 12:49:02','drashti','2025-11-22 12:49:02',0),(0,0,'2526','H','O',4399,1,0,'2025-11-22','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-22 12:50:04','urvashi','2025-11-22 12:50:04',0),(0,0,'2526','H','O',4400,1,0,'2025-11-22','00:00:00','OPWD0015',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-22 12:57:15','drashti','2025-11-22 12:57:15',0),(0,0,'2526','H','O',4401,1,0,'2025-11-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-22 13:03:59','drashti','2025-11-22 13:03:59',0),(0,0,'2526','H','O',4402,1,0,'2025-11-22','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-22 13:05:53','priyanshi','2025-11-22 13:05:53',0),(0,0,'2526','H','O',4402,2,0,'2025-11-22','00:00:00','NEU10019',0,1.00,1800,1800,'P',0,0,1800.00,0.00,0.00,1800.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-22 13:05:53','priyanshi','2025-11-22 13:05:53',0),(0,0,'2526','H','O',4402,3,0,'2025-11-22','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-22 13:05:53','priyanshi','2025-11-22 13:05:53',0),(0,0,'2526','H','O',4403,1,0,'2025-11-22','00:00:00','OPWD0023',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-22 13:07:17','urvashi','2025-11-22 13:07:17',0),(0,0,'2526','H','O',4404,1,0,'2025-11-22','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-22 13:11:13','priyanshi','2025-11-22 13:11:13',0),(0,0,'2526','H','O',4405,1,0,'2025-11-22','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-22 13:20:08','priyanshi','2025-11-22 13:20:08',0),(0,0,'2526','H','O',4406,1,0,'2025-11-22','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-22 13:25:34','priyanshi','2025-11-22 13:25:34',0),(0,0,'2526','H','O',4407,1,0,'2025-11-22','00:00:00','SURG0005',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-22 17:36:49','urvashi','2025-11-22 17:36:49',0),(0,0,'2526','H','O',4407,2,0,'2025-11-22','00:00:00','OPWD0013',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-22 17:36:49','urvashi','2025-11-22 17:36:49',0),(0,0,'2526','H','O',4408,1,0,'2025-11-22','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-11-22 17:59:09','urvashi','2025-11-22 17:59:09',0),(0,0,'2526','H','O',4409,1,0,'2025-11-22','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-22 18:32:24','urvashi','2025-11-22 18:34:36',0),(0,0,'2526','H','O',4410,1,0,'2025-11-22','00:00:00','OTCG0003',0,-1.00,100,-100,'P',0,0,-100.00,0.00,0.00,-100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-22 18:34:36','urvashi','2025-11-22 18:34:36',0),(0,0,'2526','H','O',4411,1,0,'2025-11-22','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-11-22 18:55:58','janvi','2025-11-22 18:55:58',0),(0,0,'2526','H','O',4412,1,0,'2025-11-22','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-11-22 19:00:13','urvashi','2025-11-22 19:00:13',0),(0,0,'2526','H','O',4413,1,0,'2025-11-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-11-22 19:07:06','janvi','2025-11-22 19:40:20',0),(0,0,'2526','H','O',4414,1,0,'2025-11-22','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-11-22 19:40:20','janvi','2025-11-22 19:40:20',0),(0,0,'2526','H','O',4415,1,0,'2025-11-22','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-11-22 19:51:52','urvashi','2025-11-22 19:51:52',0),(0,0,'2526','H','O',4416,1,0,'2025-11-23','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-23 09:03:17','drashti','2025-11-23 09:03:17',0),(0,0,'2526','H','O',4417,1,0,'2025-11-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-23 09:05:46','drashti','2025-11-23 09:05:46',0),(0,0,'2526','H','O',4417,2,0,'2025-11-23','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-23 09:05:46','drashti','2025-11-23 09:05:46',0),(0,0,'2526','H','O',4418,1,0,'2025-11-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-23 10:23:07','drashti','2025-11-23 10:23:07',0),(0,0,'2526','H','O',4418,2,0,'2025-11-23','00:00:00','WPRC0042',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-23 10:23:07','drashti','2025-11-23 10:23:07',0),(0,0,'2526','H','O',4418,3,0,'2025-11-23','00:00:00','OPWD0019',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-23 10:23:07','drashti','2025-11-23 10:23:07',0),(0,0,'2526','H','O',4419,1,0,'2025-11-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-23 10:29:10','drashti','2025-11-23 10:29:10',0),(0,0,'2526','H','O',4419,2,0,'2025-11-23','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-23 10:29:10','drashti','2025-11-23 10:29:10',0),(0,0,'2526','H','O',4419,3,0,'2025-11-23','00:00:00','OPWD0019',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-23 10:29:10','drashti','2025-11-23 10:29:10',0),(0,0,'2526','H','O',4419,4,0,'2025-11-23','00:00:00','XRY0045',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-23 10:29:10','drashti','2025-11-23 10:29:10',0),(0,0,'2526','H','O',4420,1,0,'2025-11-23','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-23 10:42:32','drashti','2025-11-23 10:42:32',0),(0,0,'2526','H','O',4421,1,0,'2025-11-23','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-23 11:20:21','drashti','2025-11-23 11:20:21',0),(0,0,'2526','H','O',4422,1,0,'2025-11-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-23 11:29:15','drashti','2025-11-23 11:29:15',0),(0,0,'2526','H','O',4422,2,0,'2025-11-23','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-23 11:29:15','drashti','2025-11-23 11:29:15',0),(0,0,'2526','H','O',4423,1,0,'2025-11-23','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-23 12:33:43','drashti','2025-11-23 12:33:43',0),(0,0,'2526','H','O',4423,2,0,'2025-11-23','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-23 12:33:43','drashti','2025-11-23 12:33:43',0),(0,0,'2526','H','O',4423,3,0,'2025-11-23','00:00:00','OTCG0033',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-23 12:33:43','drashti','2025-11-23 12:33:43',0),(0,0,'2526','H','O',4424,1,0,'2025-11-24','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-24 09:13:53','reception','2025-11-24 09:13:53',0),(0,0,'2526','H','O',4425,1,0,'2025-11-24','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-24 09:22:39','reception','2025-11-24 09:22:39',0),(0,0,'2526','H','O',4425,2,0,'2025-11-24','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-24 09:22:39','reception','2025-11-24 09:22:39',0),(0,0,'2526','H','O',4425,3,0,'2025-11-24','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 09:22:39','reception','2025-11-24 09:22:39',0),(0,0,'2526','H','O',4425,4,0,'2025-11-24','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-24 09:22:39','reception','2025-11-24 09:22:39',0),(0,0,'2526','H','O',4426,1,0,'2025-11-24','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-24 09:24:02','reception','2025-11-24 09:24:02',0),(0,0,'2526','H','O',4427,1,0,'2025-11-24','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-24 09:26:51','reception','2025-11-24 09:26:51',0),(0,0,'2526','H','O',4427,2,0,'2025-11-24','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-24 09:26:51','reception','2025-11-24 09:26:51',0),(0,0,'2526','H','O',4428,1,0,'2025-11-24','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-24 09:30:16','reception','2025-11-24 09:30:16',0),(0,0,'2526','H','O',4428,2,0,'2025-11-24','00:00:00','OPWD0013',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-24 09:30:16','reception','2025-11-24 09:30:16',0),(0,0,'2526','H','O',4429,1,0,'2025-11-24','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-24 09:33:07','reception','2025-11-24 09:33:07',0),(0,0,'2526','H','O',4430,1,0,'2025-11-24','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-24 09:36:40','reception','2025-11-24 09:36:40',0),(0,0,'2526','H','O',4431,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 09:47:19','reception','2025-11-24 09:47:19',0),(0,0,'2526','H','O',4432,1,0,'2025-11-24','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-24 09:49:05','reception','2025-11-24 09:49:05',0),(0,0,'2526','H','O',4432,2,0,'2025-11-24','00:00:00','OPWD0032',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-24 09:49:05','reception','2025-11-24 09:49:05',0),(0,0,'2526','H','O',4433,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 09:54:22','reception','2025-11-24 09:54:22',0),(0,0,'2526','H','O',4434,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 09:57:10','reception','2025-11-24 09:57:10',0),(0,0,'2526','H','O',4435,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 09:59:03','reception','2025-11-24 09:59:03',0),(0,0,'2526','H','O',4436,1,0,'2025-11-24','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-24 10:15:02','reception','2025-11-24 10:15:02',0),(0,0,'2526','H','O',4437,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 10:17:04','drashti','2025-11-24 10:17:04',0),(0,0,'2526','H','O',4438,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 10:17:11','reception','2025-11-24 10:17:11',0),(0,0,'2526','H','O',4439,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 10:17:33','drashti','2025-11-24 10:17:33',0),(0,0,'2526','H','O',4440,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 10:21:25','reception','2025-11-24 10:21:25',0),(0,0,'2526','H','O',4441,1,0,'2025-11-24','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 10:22:55','reception','2025-11-24 10:22:55',0),(0,0,'2526','H','O',4442,1,0,'2025-11-24','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-24 10:29:10','drashti','2025-11-24 10:29:10',0),(0,0,'2526','H','O',4443,1,0,'2025-11-24','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 10:31:21','reception','2025-11-24 10:31:21',0),(0,0,'2526','H','O',4444,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-24 10:33:38','drashti','2025-11-24 10:33:38',0),(0,0,'2526','H','O',4445,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 10:33:44','reception','2025-11-24 10:33:44',0),(0,0,'2526','H','O',4446,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 10:35:56','reception','2025-11-24 10:35:56',0),(0,0,'2526','H','O',4447,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 10:39:31','reception','2025-11-24 10:39:31',0),(0,0,'2526','H','O',4448,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-24 10:42:03','janvi','2025-11-24 10:42:03',0),(0,0,'2526','H','O',4449,1,0,'2025-11-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-24 10:48:18','janvi','2025-11-24 10:50:31',0),(0,0,'2526','H','O',4450,1,0,'2025-11-24','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-24 10:50:31','janvi','2025-11-24 10:50:31',0),(0,0,'2526','H','O',4451,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 10:54:21','reception','2025-11-24 10:54:21',0),(0,0,'2526','H','O',4452,1,0,'2025-11-24','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-24 10:55:25','janvi','2025-11-24 10:55:25',0),(0,0,'2526','H','O',4453,1,0,'2025-11-24','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 10:58:42','reception','2025-11-24 10:58:42',0),(0,0,'2526','H','O',4454,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 10:59:47','reception','2025-11-24 10:59:47',0),(0,0,'2526','H','O',4455,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-24 11:07:43','drashti','2025-11-24 11:07:43',0),(0,0,'2526','H','O',4456,1,0,'2025-11-24','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 11:10:14','reception','2025-11-24 11:10:14',0),(0,0,'2526','H','O',4456,2,0,'2025-11-24','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 11:10:14','reception','2025-11-24 11:10:14',0),(0,0,'2526','H','O',4456,3,0,'2025-11-24','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 11:10:14','reception','2025-11-24 11:10:14',0),(0,0,'2526','H','O',4457,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 11:15:59','drashti','2025-11-24 11:15:59',0),(0,0,'2526','H','O',4458,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 11:23:38','drashti','2025-11-24 11:23:38',0),(0,0,'2526','H','O',4459,1,0,'2025-11-24','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 11:24:14','reception','2025-11-24 11:24:14',0),(0,0,'2526','H','O',4460,1,0,'2025-11-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-24 11:24:53','janvi','2025-11-24 11:24:53',0),(0,0,'2526','H','O',4461,1,0,'2025-11-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-24 11:25:59','drashti','2025-11-24 11:25:59',0),(0,0,'2526','H','O',4462,1,0,'2025-11-24','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-24 11:26:13','janvi','2025-11-24 11:26:13',0),(0,0,'2526','H','O',4463,1,0,'2025-11-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-24 11:26:23','reception','2025-11-24 11:26:23',0),(0,0,'2526','H','O',4464,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-24 11:29:14','reception','2025-11-24 11:29:14',0),(0,0,'2526','H','O',4465,1,0,'2025-11-24','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 11:30:18','drashti','2025-11-24 11:30:18',0),(0,0,'2526','H','O',4466,1,0,'2025-11-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-24 11:32:17','manshi','2025-11-24 11:32:17',0),(0,0,'2526','H','O',4467,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 11:32:34','reception','2025-11-24 11:32:34',0),(0,0,'2526','H','O',4468,1,0,'2025-11-24','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 11:34:28','drashti','2025-11-24 11:34:28',0),(0,0,'2526','H','O',4469,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 11:36:37','reception','2025-11-24 11:36:37',0),(0,0,'2526','H','O',4470,1,0,'2025-11-24','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 11:36:52','drashti','2025-11-24 11:36:52',0),(0,0,'2526','H','O',4471,1,0,'2025-11-24','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 11:38:16','drashti','2025-11-24 11:38:16',0),(0,0,'2526','H','O',4471,2,0,'2025-11-24','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-24 11:38:16','drashti','2025-11-24 11:38:16',0),(0,0,'2526','H','O',4472,1,0,'2025-11-24','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 11:41:30','reception','2025-11-24 11:41:30',0),(0,0,'2526','H','O',4473,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-24 11:41:55','janvi','2025-11-24 11:41:55',0),(0,0,'2526','H','O',4474,1,0,'2025-11-24','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 11:44:58','reception','2025-11-24 11:44:58',0),(0,0,'2526','H','O',4474,2,0,'2025-11-24','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 11:44:58','reception','2025-11-24 11:44:58',0),(0,0,'2526','H','O',4474,3,0,'2025-11-24','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 11:44:58','reception','2025-11-24 11:44:58',0),(0,0,'2526','H','O',4475,1,0,'2025-11-24','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 11:50:14','drashti','2025-11-24 11:50:14',0),(0,0,'2526','H','O',4476,1,0,'2025-11-24','00:00:00','XRY0390',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-24 11:50:37','manshi','2025-11-24 11:50:37',0),(0,0,'2526','H','O',4477,1,0,'2025-11-24','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 11:53:26','drashti','2025-11-24 11:53:26',0),(0,0,'2526','H','O',4478,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-24 11:54:01','janvi','2025-11-24 11:54:01',0),(0,0,'2526','H','O',4479,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-24 11:56:48','manshi','2025-11-24 11:56:48',0),(0,0,'2526','H','O',4480,1,0,'2025-11-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-24 12:00:41','janvi','2025-11-24 12:00:41',0),(0,0,'2526','H','O',4481,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 12:01:41','drashti','2025-11-24 12:01:41',0),(0,0,'2526','H','O',4482,1,0,'2025-11-24','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 12:01:43','reception','2025-11-24 12:01:43',0),(0,0,'2526','H','O',4482,2,0,'2025-11-24','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 12:01:43','reception','2025-11-24 12:01:43',0),(0,0,'2526','H','O',4482,3,0,'2025-11-24','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 12:01:43','reception','2025-11-24 12:01:43',0),(0,0,'2526','H','O',4483,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 12:07:25','reception','2025-11-24 12:07:25',0),(0,0,'2526','H','O',4484,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-24 12:07:41','drashti','2025-11-24 12:07:41',0),(0,0,'2526','H','O',4485,1,0,'2025-11-24','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 12:12:51','reception','2025-11-24 12:12:51',0),(0,0,'2526','H','O',4486,1,0,'2025-11-24','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 12:18:34','drashti','2025-11-24 12:18:34',0),(0,0,'2526','H','O',4487,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-24 12:20:31','janvi','2025-11-24 12:20:31',0),(0,0,'2526','H','O',4488,1,0,'2025-11-24','00:00:00','XRY0356',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-24 12:23:21','janvi','2025-11-24 12:23:21',0),(0,0,'2526','H','O',4489,1,0,'2025-11-24','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-24 12:23:37','drashti','2025-11-24 12:23:37',0),(0,0,'2526','H','O',4490,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 12:24:35','reception','2025-11-24 12:24:35',0),(0,0,'2526','H','O',4491,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 12:25:08','drashti','2025-11-24 12:25:08',0),(0,0,'2526','H','O',4492,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-11-24 12:30:44','janvi','2025-11-24 12:30:44',0),(0,0,'2526','H','O',4493,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-24 12:35:38','janvi','2025-11-24 12:35:38',0),(0,0,'2526','H','O',4494,1,0,'2025-11-24','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 12:52:03','reception','2025-11-24 12:52:03',0),(0,0,'2526','H','O',4494,2,0,'2025-11-24','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 12:52:03','reception','2025-11-24 12:52:03',0),(0,0,'2526','H','O',4494,3,0,'2025-11-24','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 12:52:03','reception','2025-11-24 12:52:03',0),(0,0,'2526','H','O',4495,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 12:56:46','reception','2025-11-24 12:56:46',0),(0,0,'2526','H','O',4496,1,0,'2025-11-24','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 13:00:34','reception','2025-11-24 13:00:34',0),(0,0,'2526','H','O',4497,1,0,'2025-11-24','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 13:03:40','reception','2025-11-24 13:03:40',0),(0,0,'2526','H','O',4497,2,0,'2025-11-24','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 13:03:40','reception','2025-11-24 13:03:40',0),(0,0,'2526','H','O',4497,3,0,'2025-11-24','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 13:03:40','reception','2025-11-24 13:03:40',0),(0,0,'2526','H','O',4498,1,0,'2025-11-24','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 13:05:34','drashti','2025-11-24 13:05:34',0),(0,0,'2526','H','O',4499,1,0,'2025-11-24','00:00:00','XRY0017',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-24 13:06:52','manshi','2025-11-24 13:06:52',0),(0,0,'2526','H','O',4500,1,0,'2025-11-24','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 13:14:45','drashti','2025-11-24 13:14:45',0),(0,0,'2526','H','O',4500,2,0,'2025-11-24','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-24 13:14:45','drashti','2025-11-24 13:14:45',0),(0,0,'2526','H','O',4501,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-24 13:16:05','janvi','2025-11-24 13:16:05',0),(0,0,'2526','H','O',4502,1,0,'2025-11-24','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 13:18:18','reception','2025-11-24 13:18:18',0),(0,0,'2526','H','O',4502,2,0,'2025-11-24','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 13:18:18','reception','2025-11-24 13:18:18',0),(0,0,'2526','H','O',4502,3,0,'2025-11-24','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 13:18:18','reception','2025-11-24 13:18:18',0),(0,0,'2526','H','O',4503,1,0,'2025-11-24','00:00:00','USG0056',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-24 13:18:19','janvi','2025-11-24 13:18:19',0),(0,0,'2526','H','O',4504,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-24 13:23:54','janvi','2025-11-24 13:23:54',0),(0,0,'2526','H','O',4505,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 13:26:04','reception','2025-11-24 13:26:04',0),(0,0,'2526','H','O',4506,1,0,'2025-11-24','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 13:40:43','drashti','2025-11-24 13:40:43',0),(0,0,'2526','H','O',4507,1,0,'2025-11-24','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 13:44:00','reception','2025-11-24 13:44:00',0),(0,0,'2526','H','O',4507,2,0,'2025-11-24','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 13:44:00','reception','2025-11-24 13:44:00',0),(0,0,'2526','H','O',4507,3,0,'2025-11-24','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 13:44:00','reception','2025-11-24 13:44:00',0),(0,0,'2526','H','O',4508,1,0,'2025-11-24','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-24 13:47:27','drashti','2025-11-24 13:47:27',0),(0,0,'2526','H','O',4509,1,0,'2025-11-24','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 13:52:41','reception','2025-11-24 13:52:41',0),(0,0,'2526','H','O',4509,2,0,'2025-11-24','00:00:00','NEU10016',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 13:52:41','reception','2025-11-24 13:52:41',0),(0,0,'2526','H','O',4510,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-24 13:53:42','manshi','2025-11-24 13:53:42',0),(0,0,'2526','H','O',4511,1,0,'2025-11-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-24 15:20:13','priyanshi','2025-11-24 15:20:13',0),(0,0,'2526','H','O',4511,2,0,'2025-11-24','00:00:00','OPWD0031',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-24 15:20:13','priyanshi','2025-11-24 15:20:13',0),(0,0,'2526','H','O',4512,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 16:19:18','reception','2025-11-24 16:19:18',0),(0,0,'2526','H','O',4513,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 16:38:33','reception','2025-11-24 16:38:33',0),(0,0,'2526','H','O',4514,1,0,'2025-11-24','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 16:48:44','reception','2025-11-24 16:48:44',0),(0,0,'2526','H','O',4515,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 17:15:00','reception','2025-11-24 17:15:00',0),(0,0,'2526','H','O',4516,1,0,'2025-11-24','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 17:19:28','reception','2025-11-24 17:19:28',0),(0,0,'2526','H','O',4517,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-24 17:21:23','janvi','2025-11-24 17:21:23',0),(0,0,'2526','H','O',4518,1,0,'2025-11-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-24 17:36:03','manshi','2025-11-24 17:36:03',0),(0,0,'2526','H','O',4519,1,0,'2025-11-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-24 17:38:27','drashti','2025-11-24 17:38:27',0),(0,0,'2526','H','O',4520,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 17:42:58','reception','2025-11-24 17:42:58',0),(0,0,'2526','H','O',4521,1,0,'2025-11-24','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 17:46:57','reception','2025-11-24 17:46:57',0),(0,0,'2526','H','O',4521,2,0,'2025-11-24','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 17:46:57','reception','2025-11-24 17:46:57',0),(0,0,'2526','H','O',4521,3,0,'2025-11-24','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 17:46:57','reception','2025-11-24 17:46:57',0),(0,0,'2526','H','O',4521,4,0,'2025-11-24','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 17:46:57','reception','2025-11-24 17:46:57',0),(0,0,'2526','H','O',4522,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 17:49:20','reception','2025-11-24 17:49:20',0),(0,0,'2526','H','O',4523,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 17:52:42','drashti','2025-11-24 17:52:42',0),(0,0,'2526','H','O',4524,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 17:54:06','drashti','2025-11-24 17:54:06',0),(0,0,'2526','H','O',4525,1,0,'2025-11-24','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 17:58:34','reception','2025-11-24 17:58:34',0),(0,0,'2526','H','O',4525,2,0,'2025-11-24','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 17:58:34','reception','2025-11-24 17:58:34',0),(0,0,'2526','H','O',4525,3,0,'2025-11-24','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 17:58:34','reception','2025-11-24 17:58:34',0),(0,0,'2526','H','O',4526,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 18:03:56','drashti','2025-11-24 18:03:56',0),(0,0,'2526','H','O',4527,1,0,'2025-11-24','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 18:10:12','reception','2025-11-24 18:27:37',0),(0,0,'2526','H','O',4528,1,0,'2025-11-24','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-24 18:11:10','janvi','2025-11-24 18:11:10',0),(0,0,'2526','H','O',4529,1,0,'2025-11-24','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-24 18:15:59','janvi','2025-11-24 18:15:59',0),(0,0,'2526','H','O',4530,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-24 18:22:01','janvi','2025-11-24 18:22:01',0),(0,0,'2526','H','O',4531,1,0,'2025-11-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-24 18:23:44','manshi','2025-11-24 18:23:44',0),(0,0,'2526','H','O',4532,1,0,'2025-11-24','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 18:23:51','reception','2025-11-24 18:23:51',0),(0,0,'2526','H','O',4533,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-24 18:25:31','manshi','2025-11-24 18:25:31',0),(0,0,'2526','H','O',4534,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-24 18:25:45','drashti','2025-11-24 18:45:59',0),(0,0,'2526','H','O',4535,1,0,'2025-11-24','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 18:27:37','reception','2025-11-24 18:27:37',0),(0,0,'2526','H','O',4536,1,0,'2025-11-24','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-24 18:27:48','janvi','2025-11-24 18:27:48',0),(0,0,'2526','H','O',4537,1,0,'2025-11-24','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-24 18:28:17','manshi','2025-11-24 18:28:17',0),(0,0,'2526','H','O',4538,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 18:29:39','drashti','2025-11-24 18:29:39',0),(0,0,'2526','H','O',4539,1,0,'2025-11-24','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-24 18:30:20','manshi','2025-11-24 18:30:20',0),(0,0,'2526','H','O',4540,1,0,'2025-11-24','00:00:00','CASE',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 18:30:34','reception','2025-11-24 18:30:34',0),(0,0,'2526','H','O',4541,1,0,'2025-11-24','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 18:37:07','drashti','2025-11-24 18:37:07',0),(0,0,'2526','H','O',4542,1,0,'2025-11-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-24 18:42:47','manshi','2025-11-24 18:42:47',0),(0,0,'2526','H','O',4543,1,0,'2025-11-24','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 18:43:08','drashti','2025-11-24 18:43:08',0),(0,0,'2526','H','O',4544,1,0,'2025-11-24','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-24 18:45:43','reception','2025-11-24 18:45:43',0),(0,0,'2526','H','O',4545,1,0,'2025-11-24','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 18:45:59','drashti','2025-11-24 18:45:59',0),(0,0,'2526','H','O',4546,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 18:46:29','reception','2025-11-24 18:46:29',0),(0,0,'2526','H','O',4547,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-24 18:46:44','janvi','2025-11-24 18:46:44',0),(0,0,'2526','H','O',4548,1,0,'2025-11-24','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 18:49:08','reception','2025-11-24 18:49:08',0),(0,0,'2526','H','O',4548,2,0,'2025-11-24','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 18:49:08','reception','2025-11-24 18:49:08',0),(0,0,'2526','H','O',4548,3,0,'2025-11-24','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-24 18:49:08','reception','2025-11-24 18:49:08',0),(0,0,'2526','H','O',4549,1,0,'2025-11-24','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 18:52:15','drashti','2025-11-24 18:52:15',0),(0,0,'2526','H','O',4550,1,0,'2025-11-24','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-24 18:58:01','reception','2025-11-24 18:58:01',0),(0,0,'2526','H','O',4551,1,0,'2025-11-24','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-24 19:00:38','drashti','2025-11-24 19:00:38',0),(0,0,'2526','H','O',4552,1,0,'2025-11-24','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-24 19:04:58','manshi','2025-11-24 19:04:58',0),(0,0,'2526','H','O',4553,1,0,'2025-11-24','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 19:16:34','drashti','2025-11-24 19:16:34',0),(0,0,'2526','H','O',4554,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-24 19:19:30','janvi','2025-11-24 19:19:30',0),(0,0,'2526','H','O',4555,1,0,'2025-11-24','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 19:21:36','drashti','2025-11-24 19:21:36',0),(0,0,'2526','H','O',4556,1,0,'2025-11-24','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-24 19:25:55','manshi','2025-11-24 19:25:55',0),(0,0,'2526','H','O',4557,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-24 19:30:49','janvi','2025-11-24 19:30:49',0),(0,0,'2526','H','O',4558,1,0,'2025-11-24','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-24 19:33:24','drashti','2025-11-24 19:33:24',0),(0,0,'2526','H','O',4559,1,0,'2025-11-24','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-24 19:36:23','janvi','2025-11-24 19:36:23',0),(0,0,'2526','H','O',4560,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-24 19:52:17','manshi','2025-11-24 19:52:17',0),(0,0,'2526','H','O',4560,2,0,'2025-11-24','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-24 19:52:17','manshi','2025-11-24 19:52:17',0),(0,0,'2526','H','O',4561,1,0,'2025-11-24','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-24 19:53:18','reception','2025-11-24 19:53:18',0),(0,0,'2526','H','O',4562,1,0,'2025-11-24','00:00:00','OPWD0013',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-24 19:57:43','janvi','2025-11-24 19:57:43',0),(0,0,'2526','H','O',4563,1,0,'2025-11-24','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-24 20:52:07','drashti','2025-11-24 20:52:07',0),(0,0,'2526','H','O',4564,1,0,'2025-11-25','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 08:48:19','reception','2025-11-25 08:48:19',0),(0,0,'2526','H','O',4565,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 09:06:08','reception','2025-11-25 09:06:08',0),(0,0,'2526','H','O',4566,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 09:52:46','reception','2025-11-25 09:52:46',0),(0,0,'2526','H','O',4567,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 10:04:36','reception','2025-11-25 10:04:36',0),(0,0,'2526','H','O',4568,1,0,'2025-11-25','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 10:07:57','drashti','2025-11-25 10:07:57',0),(0,0,'2526','H','O',4569,1,0,'2025-11-25','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-25 10:08:26','reception','2025-11-25 10:08:26',0),(0,0,'2526','H','O',4570,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 10:12:53','reception','2025-11-25 10:12:53',0),(0,0,'2526','H','O',4570,2,0,'2025-11-25','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 10:12:53','reception','2025-11-25 10:12:53',0),(0,0,'2526','H','O',4571,1,0,'2025-11-25','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-25 10:23:12','manshi','2025-11-25 10:23:12',0),(0,0,'2526','H','O',4572,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-25 10:27:44','drashti','2025-11-25 10:27:44',0),(0,0,'2526','H','O',4573,1,0,'2025-11-25','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-25 10:32:49','drashti','2025-11-25 10:32:49',0),(0,0,'2526','H','O',4574,1,0,'2025-11-25','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 10:35:57','drashti','2025-11-25 10:35:57',0),(0,0,'2526','H','O',4575,1,0,'2025-11-25','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-25 10:41:37','janvi','2025-11-25 10:41:37',0),(0,0,'2526','H','O',4576,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-25 10:45:03','janvi','2025-11-25 10:45:03',0),(0,0,'2526','H','O',4577,1,0,'2025-11-25','00:00:00','XRY0254',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-25 11:02:43','manshi','2025-11-25 11:02:43',0),(0,0,'2526','H','O',4578,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 11:05:19','reception','2025-11-25 11:05:19',0),(0,0,'2526','H','O',4579,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-25 11:06:02','drashti','2025-11-25 11:06:02',0),(0,0,'2526','H','O',4580,1,0,'2025-11-25','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 11:09:46','janvi','2025-11-25 11:47:12',0),(0,0,'2526','H','O',4581,1,0,'2025-11-25','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 11:10:51','janvi','2025-11-25 11:48:28',0),(0,0,'2526','H','O',4582,1,0,'2025-11-25','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-25 11:12:16','janvi','2025-11-25 11:12:16',0),(0,0,'2526','H','O',4583,1,0,'2025-11-25','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-25 11:12:35','janvi','2025-11-25 11:12:35',0),(0,0,'2526','H','O',4584,1,0,'2025-11-25','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 11:14:03','drashti','2025-11-25 11:14:03',0),(0,0,'2526','H','O',4585,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 11:14:05','reception','2025-11-25 11:14:05',0),(0,0,'2526','H','O',4586,1,0,'2025-11-25','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-25 11:14:48','janvi','2025-11-25 11:14:48',0),(0,0,'2526','H','O',4587,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 11:17:09','reception','2025-11-25 11:17:09',0),(0,0,'2526','H','O',4588,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-25 11:21:09','janvi','2025-11-25 11:21:09',0),(0,0,'2526','H','O',4589,1,0,'2025-11-25','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-25 11:22:17','reception','2025-11-25 11:22:17',0),(0,0,'2526','H','O',4590,1,0,'2025-11-25','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-25 11:22:38','janvi','2025-11-25 11:22:38',0),(0,0,'2526','H','O',4591,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 11:23:01','reception','2025-11-25 11:23:01',0),(0,0,'2526','H','O',4592,1,0,'2025-11-25','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 11:24:10','reception','2025-11-25 11:24:10',0),(0,0,'2526','H','O',4593,1,0,'2025-11-25','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 11:26:54','reception','2025-11-25 11:26:54',0),(0,0,'2526','H','O',4593,2,0,'2025-11-25','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 11:26:54','reception','2025-11-25 11:26:54',0),(0,0,'2526','H','O',4593,3,0,'2025-11-25','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 11:26:54','reception','2025-11-25 11:26:54',0),(0,0,'2526','H','O',4594,1,0,'2025-11-25','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 11:30:55','drashti','2025-11-25 13:05:37',0),(0,0,'2526','H','O',4595,1,0,'2025-11-25','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-25 11:35:29','reception','2025-11-25 11:35:29',0),(0,0,'2526','H','O',4596,1,0,'2025-11-25','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 11:36:57','reception','2025-11-25 11:36:57',0),(0,0,'2526','H','O',4597,1,0,'2025-11-25','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 11:37:52','drashti','2025-11-25 11:37:52',0),(0,0,'2526','H','O',4598,1,0,'2025-11-25','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-25 11:38:48','janvi','2025-11-25 11:38:48',0),(0,0,'2526','H','O',4599,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 11:39:38','reception','2025-11-25 11:39:38',0),(0,0,'2526','H','O',4600,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 11:41:39','reception','2025-11-25 11:41:39',0),(0,0,'2526','H','O',4601,1,0,'2025-11-25','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 11:43:15','reception','2025-11-25 11:43:15',0),(0,0,'2526','H','O',4602,1,0,'2025-11-25','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-25 11:47:12','janvi','2025-11-25 11:47:12',0),(0,0,'2526','H','O',4603,1,0,'2025-11-25','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 11:47:22','drashti','2025-11-25 11:47:22',0),(0,0,'2526','H','O',4604,1,0,'2025-11-25','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-25 11:48:28','janvi','2025-11-25 11:48:28',0),(0,0,'2526','H','O',4605,1,0,'2025-11-25','00:00:00','CASE',0,1.00,750,750,'A',0,250,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 11:49:24','drashti','2025-11-25 11:49:24',0),(0,0,'2526','H','O',4605,2,0,'2025-11-25','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 11:49:24','drashti','2025-11-25 11:49:24',0),(0,0,'2526','H','O',4606,1,0,'2025-11-25','00:00:00','CASE',0,1.00,750,750,'A',0,250,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 11:50:57','drashti','2025-11-25 11:50:57',0),(0,0,'2526','H','O',4606,2,0,'2025-11-25','00:00:00','WPRC0021',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 11:50:57','drashti','2025-11-25 11:50:57',0),(0,0,'2526','H','O',4607,1,0,'2025-11-25','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 11:58:58','drashti','2025-11-25 13:02:35',0),(0,0,'2526','H','O',4608,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-25 12:04:49','reception','2025-11-25 12:04:49',0),(0,0,'2526','H','O',4609,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-25 12:07:08','manshi','2025-11-25 12:24:37',0),(0,0,'2526','H','O',4610,1,0,'2025-11-25','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-25 12:11:43','janvi','2025-11-25 12:11:43',0),(0,0,'2526','H','O',4611,1,0,'2025-11-25','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 12:20:09','reception','2025-11-25 12:20:09',0),(0,0,'2526','H','O',4611,2,0,'2025-11-25','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 12:20:09','reception','2025-11-25 12:20:09',0),(0,0,'2526','H','O',4611,3,0,'2025-11-25','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 12:20:09','reception','2025-11-25 12:20:09',0),(0,0,'2526','H','O',4612,1,0,'2025-11-25','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-25 12:22:19','manshi','2025-11-25 12:22:19',0),(0,0,'2526','H','O',4613,1,0,'2025-11-25','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-25 12:24:37','manshi','2025-11-25 12:24:37',0),(0,0,'2526','H','O',4614,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 12:27:07','reception','2025-11-25 12:27:07',0),(0,0,'2526','H','O',4615,1,0,'2025-11-25','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 12:29:15','reception','2025-11-25 12:29:15',0),(0,0,'2526','H','O',4616,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 12:32:22','reception','2025-11-25 12:32:22',0),(0,0,'2526','H','O',4617,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 12:40:43','reception','2025-11-25 12:40:43',0),(0,0,'2526','H','O',4618,1,0,'2025-11-25','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 12:50:54','reception','2025-11-25 12:50:54',0),(0,0,'2526','H','O',4618,2,0,'2025-11-25','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 12:50:54','reception','2025-11-25 12:50:54',0),(0,0,'2526','H','O',4619,1,0,'2025-11-25','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-25 12:51:03','drashti','2025-11-25 12:51:03',0),(0,0,'2526','H','O',4620,1,0,'2025-11-25','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-25 12:56:15','drashti','2025-11-25 13:16:30',0),(0,0,'2526','H','O',4620,2,0,'2025-11-25','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 12:56:15','drashti','2025-11-25 13:16:30',0),(0,0,'2526','H','O',4621,1,0,'2025-11-25','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-25 12:59:43','manshi','2025-11-25 12:59:43',0),(0,0,'2526','H','O',4622,1,0,'2025-11-25','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 13:02:35','drashti','2025-11-25 13:02:35',0),(0,0,'2526','H','O',4623,1,0,'2025-11-25','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 13:05:37','drashti','2025-11-25 13:05:37',0),(0,0,'2526','H','O',4624,1,0,'2025-11-25','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 13:16:30','drashti','2025-11-25 13:16:30',0),(0,0,'2526','H','O',4624,2,0,'2025-11-25','00:00:00','XRY0056',0,-1.00,400,-400,'P',0,0,-400.00,0.00,0.00,-400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-25 13:16:30','drashti','2025-11-25 13:16:30',0),(0,0,'2526','H','O',4625,1,0,'2025-11-25','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 13:18:03','drashti','2025-11-25 13:18:03',0),(0,0,'2526','H','O',4625,2,0,'2025-11-25','00:00:00','XRY0045',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-25 13:18:03','drashti','2025-11-25 13:18:03',0),(0,0,'2526','H','O',4626,1,0,'2025-11-25','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-25 13:27:40','reception','2025-11-25 13:27:40',0),(0,0,'2526','H','O',4627,1,0,'2025-11-25','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-25 16:47:58','priyanshi','2025-11-25 16:47:58',0),(0,0,'2526','H','O',4628,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 17:05:29','reception','2025-11-25 17:05:29',0),(0,0,'2526','H','O',4629,1,0,'2025-11-25','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 17:07:56','drashti','2025-11-25 17:07:56',0),(0,0,'2526','H','O',4630,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 17:08:31','reception','2025-11-25 17:08:31',0),(0,0,'2526','H','O',4631,1,0,'2025-11-25','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-25 17:19:41','reception','2025-11-25 17:19:41',0),(0,0,'2526','H','O',4632,1,0,'2025-11-25','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 17:27:56','reception','2025-11-25 17:27:56',0),(0,0,'2526','H','O',4632,2,0,'2025-11-25','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 17:27:56','reception','2025-11-25 17:27:56',0),(0,0,'2526','H','O',4633,1,0,'2025-11-25','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-25 17:36:23','janvi','2025-11-25 17:36:23',0),(0,0,'2526','H','O',4634,1,0,'2025-11-25','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 17:41:24','reception','2025-11-25 17:41:24',0),(0,0,'2526','H','O',4635,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-25 17:42:35','drashti','2025-11-25 17:42:35',0),(0,0,'2526','H','O',4636,1,0,'2025-11-25','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 17:49:54','reception','2025-11-25 17:49:54',0),(0,0,'2526','H','O',4637,1,0,'2025-11-25','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-25 17:50:51','janvi','2025-11-25 17:50:51',0),(0,0,'2526','H','O',4638,1,0,'2025-11-25','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-25 17:51:01','janvi','2025-11-25 17:51:01',0),(0,0,'2526','H','O',4639,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-25 17:51:16','drashti','2025-11-25 17:51:16',0),(0,0,'2526','H','O',4640,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 17:54:07','reception','2025-11-25 17:54:07',0),(0,0,'2526','H','O',4641,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-25 17:58:21','manshi','2025-11-25 17:58:21',0),(0,0,'2526','H','O',4642,1,0,'2025-11-25','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-25 17:59:11','reception','2025-11-25 17:59:11',0),(0,0,'2526','H','O',4643,1,0,'2025-11-25','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 18:00:33','drashti','2025-11-25 18:00:33',0),(0,0,'2526','H','O',4644,1,0,'2025-11-25','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 18:00:55','reception','2025-11-25 18:00:55',0),(0,0,'2526','H','O',4644,2,0,'2025-11-25','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 18:00:55','reception','2025-11-25 18:00:55',0),(0,0,'2526','H','O',4644,3,0,'2025-11-25','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 18:00:55','reception','2025-11-25 18:00:55',0),(0,0,'2526','H','O',4645,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-25 18:02:04','drashti','2025-11-25 18:02:04',0),(0,0,'2526','H','O',4646,1,0,'2025-11-25','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-25 18:04:35','reception','2025-11-25 18:04:35',0),(0,0,'2526','H','O',4647,1,0,'2025-11-25','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 18:05:17','drashti','2025-11-25 18:05:17',0),(0,0,'2526','H','O',4648,1,0,'2025-11-25','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 18:05:50','reception','2025-11-25 18:05:50',0),(0,0,'2526','H','O',4649,1,0,'2025-11-25','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 18:08:18','reception','2025-11-25 18:08:18',0),(0,0,'2526','H','O',4650,1,0,'2025-11-25','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 18:11:20','reception','2025-11-25 18:11:20',0),(0,0,'2526','H','O',4651,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-25 18:11:33','manshi','2025-11-25 18:11:33',0),(0,0,'2526','H','O',4652,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 18:14:18','reception','2025-11-25 19:06:31',0),(0,0,'2526','H','O',4653,1,0,'2025-11-25','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 18:16:36','reception','2025-11-25 18:16:36',0),(0,0,'2526','H','O',4653,2,0,'2025-11-25','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 18:16:36','reception','2025-11-25 18:16:36',0),(0,0,'2526','H','O',4654,1,0,'2025-11-25','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 18:18:23','drashti','2025-11-25 18:18:23',0),(0,0,'2526','H','O',4654,2,0,'2025-11-25','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 18:18:23','drashti','2025-11-25 18:18:23',0),(0,0,'2526','H','O',4654,3,0,'2025-11-25','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 18:18:23','drashti','2025-11-25 18:18:23',0),(0,0,'2526','H','O',4655,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-25 18:30:47','janvi','2025-11-25 18:30:47',0),(0,0,'2526','H','O',4656,1,0,'2025-11-25','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 18:31:06','reception','2025-11-25 18:31:06',0),(0,0,'2526','H','O',4657,1,0,'2025-11-25','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-25 18:32:39','janvi','2025-11-25 18:32:39',0),(0,0,'2526','H','O',4658,1,0,'2025-11-25','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 18:32:42','drashti','2025-11-25 18:32:42',0),(0,0,'2526','H','O',4659,1,0,'2025-11-25','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-25 18:33:17','reception','2025-11-25 18:33:17',0),(0,0,'2526','H','O',4660,1,0,'2025-11-25','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 18:35:16','reception','2025-11-25 18:35:16',0),(0,0,'2526','H','O',4661,1,0,'2025-11-25','00:00:00','OPWD0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-25 18:39:22','janvi','2025-11-25 18:39:22',0),(0,0,'2526','H','O',4662,1,0,'2025-11-25','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-25 18:43:23','manshi','2025-11-25 18:43:23',0),(0,0,'2526','H','O',4663,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-25 18:46:06','manshi','2025-11-25 18:46:06',0),(0,0,'2526','H','O',4664,1,0,'2025-11-25','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 18:48:24','reception','2025-11-25 18:48:24',0),(0,0,'2526','H','O',4664,2,0,'2025-11-25','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 18:48:24','reception','2025-11-25 18:48:24',0),(0,0,'2526','H','O',4665,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-25 18:54:41','reception','2025-11-25 18:54:41',0),(0,0,'2526','H','O',4666,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 18:56:50','reception','2025-11-25 18:56:50',0),(0,0,'2526','H','O',4667,1,0,'2025-11-25','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 18:59:13','reception','2025-11-25 18:59:13',0),(0,0,'2526','H','O',4667,2,0,'2025-11-25','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 18:59:13','reception','2025-11-25 18:59:13',0),(0,0,'2526','H','O',4668,1,0,'2025-11-25','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-25 19:00:29','janvi','2025-11-25 19:00:29',0),(0,0,'2526','H','O',4669,1,0,'2025-11-25','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-25 19:03:17','manshi','2025-11-25 19:03:17',0),(0,0,'2526','H','O',4670,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 19:03:47','reception','2025-11-25 19:03:47',0),(0,0,'2526','H','O',4671,1,0,'2025-11-25','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 19:05:50','reception','2025-11-25 19:05:50',0),(0,0,'2526','H','O',4672,1,0,'2025-11-25','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-25 19:06:31','reception','2025-11-25 19:06:31',0),(0,0,'2526','H','O',4673,1,0,'2025-11-25','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 19:16:34','drashti','2025-11-25 19:16:34',0),(0,0,'2526','H','O',4673,2,0,'2025-11-25','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-25 19:16:34','drashti','2025-11-25 19:16:34',0),(0,0,'2526','H','O',4674,1,0,'2025-11-25','00:00:00','OPWD0023',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-25 19:35:28','janvi','2025-11-25 19:35:28',0),(0,0,'2526','H','O',4675,1,0,'2025-11-25','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-25 19:44:28','reception','2025-11-25 19:44:28',0),(0,0,'2526','H','O',4676,1,0,'2025-11-25','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-25 19:48:54','drashti','2025-11-25 19:48:54',0),(0,0,'2526','H','O',4677,1,0,'2025-11-25','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-25 19:50:33','janvi','2025-11-25 19:51:03',0),(0,0,'2526','H','O',4678,1,0,'2025-11-25','00:00:00','CASE',0,-1.00,300,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-25 19:51:03','janvi','2025-11-25 19:51:03',0),(0,0,'2526','H','O',4679,1,0,'2025-11-25','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-25 19:52:47','janvi','2025-11-25 19:52:47',0),(0,0,'2526','H','O',4680,1,0,'2025-11-25','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-25 20:03:37','janvi','2025-11-25 20:03:37',0),(0,0,'2526','H','O',4681,1,0,'2025-11-25','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-25 20:05:56','janvi','2025-11-25 20:05:56',0),(0,0,'2526','H','O',4682,1,0,'2025-11-25','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-25 20:35:33','janvi','2025-11-25 20:35:33',0),(0,0,'2526','H','O',4683,1,0,'2025-11-25','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-25 20:36:36','manshi','2025-11-25 20:36:36',0),(0,0,'2526','H','O',4684,1,0,'2025-11-26','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','reception','2025-11-26 08:54:03','reception','2025-11-26 08:54:03',0),(0,0,'2526','H','O',4684,2,0,'2025-11-26','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,7,0,'',0,'','','','Y','N','reception','2025-11-26 08:54:03','reception','2025-11-26 08:54:03',0),(0,0,'2526','H','O',4684,3,0,'2025-11-26','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,7,0,'',0,'','','','Y','N','reception','2025-11-26 08:54:03','reception','2025-11-26 08:54:03',0),(0,0,'2526','H','O',4685,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-26 08:57:24','reception','2025-11-26 08:57:24',0),(0,0,'2526','H','O',4686,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-26 09:37:14','reception','2025-11-26 09:37:14',0),(0,0,'2526','H','O',4687,1,0,'2025-11-26','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 09:42:40','reception','2025-11-26 09:42:40',0),(0,0,'2526','H','O',4688,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 09:44:41','reception','2025-11-26 09:44:41',0),(0,0,'2526','H','O',4689,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 10:03:45','reception','2025-11-26 10:03:45',0),(0,0,'2526','H','O',4690,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-26 10:05:15','janvi','2025-11-26 10:05:15',0),(0,0,'2526','H','O',4691,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 10:06:17','reception','2025-11-26 10:06:17',0),(0,0,'2526','H','O',4692,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 10:38:46','reception','2025-11-26 10:38:46',0),(0,0,'2526','H','O',4693,1,0,'2025-11-26','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-26 10:41:13','drashti','2025-11-26 10:41:13',0),(0,0,'2526','H','O',4694,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 10:48:22','reception','2025-11-26 10:48:22',0),(0,0,'2526','H','O',4695,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-26 10:54:23','drashti','2025-11-26 10:54:23',0),(0,0,'2526','H','O',4696,1,2,'2025-11-26','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','','N','urvashi','2025-11-26 11:08:16','janvi','2025-11-26 11:16:15',0),(0,0,'2526','H','O',4696,2,2,'2025-11-26','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','','N','urvashi','2025-11-26 11:08:16','janvi','2025-11-26 11:16:15',0),(0,0,'2526','H','O',4697,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-26 10:55:38','reception','2025-11-26 10:55:38',0),(0,0,'2526','H','O',4698,1,0,'2025-11-26','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 10:59:27','drashti','2025-11-26 10:59:27',0),(0,0,'2526','H','O',4699,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 11:02:12','reception','2025-11-26 11:02:12',0),(0,0,'2526','H','O',4700,1,0,'2025-11-26','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-26 11:10:07','reception','2025-11-26 11:10:07',0),(0,0,'2526','H','O',4701,1,0,'2025-11-26','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 11:14:32','reception','2025-11-26 11:14:32',0),(0,0,'2526','H','O',4702,1,0,'2025-11-26','00:00:00','OPWD0008',0,-1.00,100,-100,'P',0,0,-100.00,0.00,0.00,-100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-26 11:16:15','janvi','2025-11-26 11:16:15',0),(0,0,'2526','H','O',4702,2,0,'2025-11-26','00:00:00','OPWD0008',0,-1.00,100,-100,'P',0,0,-100.00,0.00,0.00,-100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-26 11:16:15','janvi','2025-11-26 11:16:15',0),(0,0,'2526','H','O',4703,1,0,'2025-11-26','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 11:19:23','drashti','2025-11-26 11:19:23',0),(0,0,'2526','H','O',4704,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-26 11:19:57','reception','2025-11-26 11:19:57',0),(0,0,'2526','H','O',4705,1,0,'2025-11-26','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-26 11:20:55','janvi','2025-11-26 11:20:55',0),(0,0,'2526','H','O',4706,1,0,'2025-11-26','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 11:24:40','drashti','2025-11-26 11:24:40',0),(0,0,'2526','H','O',4707,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 11:27:18','reception','2025-11-26 11:27:18',0),(0,0,'2526','H','O',4708,1,0,'2025-11-26','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 11:33:46','drashti','2025-11-26 11:33:46',0),(0,0,'2526','H','O',4708,2,0,'2025-11-26','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-26 11:33:46','drashti','2025-11-26 11:33:46',0),(0,0,'2526','H','O',4709,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 11:37:57','reception','2025-11-26 11:37:57',0),(0,0,'2526','H','O',4710,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-26 11:40:02','reception','2025-11-26 11:40:02',0),(0,0,'2526','H','O',4711,1,0,'2025-11-26','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-26 11:40:30','janvi','2025-11-26 11:40:30',0),(0,0,'2526','H','O',4712,1,0,'2025-11-26','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-26 11:43:57','reception','2025-11-26 11:43:57',0),(0,0,'2526','H','O',4713,1,0,'2025-11-26','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-26 11:45:43','janvi','2025-11-26 11:45:43',0),(0,0,'2526','H','O',4714,1,0,'2025-11-26','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-26 11:47:23','reception','2025-11-26 11:47:23',0),(0,0,'2526','H','O',4715,1,0,'2025-11-26','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 11:47:30','drashti','2025-11-26 11:47:30',0),(0,0,'2526','H','O',4716,1,0,'2025-11-26','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 11:48:48','drashti','2025-11-26 11:48:48',0),(0,0,'2526','H','O',4717,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-26 11:51:47','janvi','2025-11-26 11:51:47',0),(0,0,'2526','H','O',4718,1,0,'2025-11-26','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 11:53:26','reception','2025-11-26 11:53:26',0),(0,0,'2526','H','O',4719,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 11:55:54','reception','2025-11-26 11:55:54',0),(0,0,'2526','H','O',4720,1,0,'2025-11-26','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-26 11:56:59','janvi','2025-11-26 11:56:59',0),(0,0,'2526','H','O',4721,1,0,'2025-11-26','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 12:01:03','drashti','2025-11-26 12:01:03',0),(0,0,'2526','H','O',4722,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 12:03:21','reception','2025-11-26 12:03:21',0),(0,0,'2526','H','O',4723,1,0,'2025-11-26','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-26 12:08:09','reception','2025-11-26 12:08:09',0),(0,0,'2526','H','O',4723,2,0,'2025-11-26','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-26 12:08:09','reception','2025-11-26 12:08:09',0),(0,0,'2526','H','O',4723,3,0,'2025-11-26','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-26 12:08:09','reception','2025-11-26 12:08:09',0),(0,0,'2526','H','O',4724,1,0,'2025-11-26','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 12:14:14','drashti','2025-11-26 12:14:14',0),(0,0,'2526','H','O',4725,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-26 12:16:23','janvi','2025-11-26 12:16:23',0),(0,0,'2526','H','O',4726,1,0,'2025-11-26','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-26 12:20:04','janvi','2025-11-26 12:20:04',0),(0,0,'2526','H','O',4727,1,0,'2025-11-26','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 12:20:50','drashti','2025-11-26 12:20:50',0),(0,0,'2526','H','O',4728,1,0,'2025-11-26','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-26 12:23:06','janvi','2025-11-26 12:23:06',0),(0,0,'2526','H','O',4729,1,0,'2025-11-26','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 12:26:26','drashti','2025-11-26 12:26:26',0),(0,0,'2526','H','O',4730,1,0,'2025-11-26','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-26 12:28:48','reception','2025-11-26 12:28:48',0),(0,0,'2526','H','O',4730,2,0,'2025-11-26','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-26 12:28:48','reception','2025-11-26 12:28:48',0),(0,0,'2526','H','O',4730,3,0,'2025-11-26','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-26 12:28:48','reception','2025-11-26 12:28:48',0),(0,0,'2526','H','O',4731,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-26 12:31:29','drashti','2025-11-26 12:31:29',0),(0,0,'2526','H','O',4732,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 12:36:09','reception','2025-11-26 12:36:09',0),(0,0,'2526','H','O',4733,1,0,'2025-11-26','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 12:46:30','drashti','2025-11-26 12:46:30',0),(0,0,'2526','H','O',4734,1,0,'2025-11-26','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 12:47:13','drashti','2025-11-26 12:47:13',0),(0,0,'2526','H','O',4735,1,0,'2025-11-26','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 12:48:49','reception','2025-11-26 12:48:49',0),(0,0,'2526','H','O',4736,1,0,'2025-11-26','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 12:53:20','drashti','2025-11-26 12:53:20',0),(0,0,'2526','H','O',4737,1,0,'2025-11-26','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-26 13:12:08','reception','2025-11-26 13:12:08',0),(0,0,'2526','H','O',4737,2,0,'2025-11-26','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-26 13:12:08','reception','2025-11-26 13:12:08',0),(0,0,'2526','H','O',4737,3,0,'2025-11-26','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-26 13:12:08','reception','2025-11-26 13:12:08',0),(0,0,'2526','H','O',4738,1,0,'2025-11-26','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 13:17:18','drashti','2025-11-26 13:17:18',0),(0,0,'2526','H','O',4739,1,0,'2025-11-26','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-26 13:51:35','janvi','2025-11-26 13:51:35',0),(0,0,'2526','H','O',4740,1,0,'2025-11-26','00:00:00','OPWD0032',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-26 14:50:37','priyanshi','2025-11-26 14:50:37',0),(0,0,'2526','H','O',4741,1,0,'2025-11-26','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-26 15:28:06','priyanshi','2025-11-26 15:28:06',0),(0,0,'2526','H','O',4741,2,0,'2025-11-26','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-26 15:28:06','priyanshi','2025-11-26 15:28:06',0),(0,0,'2526','H','O',4741,3,0,'2025-11-26','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-11-26 15:28:06','priyanshi','2025-11-26 15:28:06',0),(0,0,'2526','H','O',4742,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 16:34:30','reception','2025-11-26 16:34:30',0),(0,0,'2526','H','O',4743,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 16:39:10','reception','2025-11-26 16:39:10',0),(0,0,'2526','H','O',4744,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 16:47:34','reception','2025-11-26 16:47:34',0),(0,0,'2526','H','O',4745,1,0,'2025-11-26','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 17:09:02','reception','2025-11-26 17:09:02',0),(0,0,'2526','H','O',4746,1,0,'2025-11-26','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-26 17:30:37','reception','2025-11-26 17:30:37',0),(0,0,'2526','H','O',4746,2,0,'2025-11-26','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-26 17:30:37','reception','2025-11-26 17:30:37',0),(0,0,'2526','H','O',4747,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-26 17:32:42','janvi','2025-11-26 17:32:42',0),(0,0,'2526','H','O',4748,1,0,'2025-11-26','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 17:36:44','reception','2025-11-26 17:36:44',0),(0,0,'2526','H','O',4749,1,0,'2025-11-26','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-26 17:43:43','janvi','2025-11-26 17:43:43',0),(0,0,'2526','H','O',4750,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-26 17:46:48','janvi','2025-11-26 17:46:48',0),(0,0,'2526','H','O',4751,1,0,'2025-11-26','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-26 17:53:01','janvi','2025-11-26 17:53:01',0),(0,0,'2526','H','O',4752,1,0,'2025-11-26','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-26 17:55:17','reception','2025-11-26 17:55:17',0),(0,0,'2526','H','O',4753,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 17:58:02','reception','2025-11-26 17:58:02',0),(0,0,'2526','H','O',4754,1,0,'2025-11-26','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-26 18:09:51','janvi','2025-11-26 18:09:51',0),(0,0,'2526','H','O',4755,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 18:11:53','reception','2025-11-26 18:11:53',0),(0,0,'2526','H','O',4756,1,0,'2025-11-26','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-26 18:15:29','janvi','2025-11-26 18:15:29',0),(0,0,'2526','H','O',4757,1,0,'2025-11-26','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-26 18:17:11','janvi','2025-11-26 18:17:11',0),(0,0,'2526','H','O',4757,2,0,'2025-11-26','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-26 18:17:11','janvi','2025-11-26 18:17:11',0),(0,0,'2526','H','O',4758,1,0,'2025-11-26','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 18:20:48','reception','2025-11-26 18:20:48',0),(0,0,'2526','H','O',4759,1,0,'2025-11-26','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 18:25:15','drashti','2025-11-26 18:25:15',0),(0,0,'2526','H','O',4760,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 18:27:32','reception','2025-11-26 18:50:00',0),(0,0,'2526','H','O',4761,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-26 18:32:43','janvi','2025-11-26 18:32:43',0),(0,0,'2526','H','O',4762,1,0,'2025-11-26','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-26 18:34:31','reception','2025-11-26 18:34:31',0),(0,0,'2526','H','O',4763,1,0,'2025-11-26','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 18:49:17','drashti','2025-11-26 18:49:17',0),(0,0,'2526','H','O',4764,1,0,'2025-11-26','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 18:50:00','reception','2025-11-26 18:50:00',0),(0,0,'2526','H','O',4765,1,0,'2025-11-26','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-26 18:52:31','reception','2025-11-26 18:52:31',0),(0,0,'2526','H','O',4766,1,0,'2025-11-26','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 18:55:28','drashti','2025-11-26 18:55:28',0),(0,0,'2526','H','O',4767,1,0,'2025-11-26','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-26 18:56:01','janvi','2025-11-26 18:56:01',0),(0,0,'2526','H','O',4768,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 18:56:39','reception','2025-11-26 18:56:39',0),(0,0,'2526','H','O',4769,1,0,'2025-11-26','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 18:57:00','drashti','2025-11-26 18:57:00',0),(0,0,'2526','H','O',4770,1,0,'2025-11-26','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 19:00:41','drashti','2025-11-26 19:00:41',0),(0,0,'2526','H','O',4771,1,0,'2025-11-26','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-26 19:02:04','janvi','2025-11-26 19:02:04',0),(0,0,'2526','H','O',4772,1,0,'2025-11-26','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 19:02:13','reception','2025-11-26 19:19:06',0),(0,0,'2526','H','O',4773,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-26 19:05:52','janvi','2025-11-26 19:05:52',0),(0,0,'2526','H','O',4774,1,0,'2025-11-26','00:00:00','OPWD0023',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-26 19:12:47','janvi','2025-11-26 19:12:47',0),(0,0,'2526','H','O',4775,1,0,'2025-11-26','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-26 19:13:22','reception','2025-11-26 19:13:22',0),(0,0,'2526','H','O',4776,1,0,'2025-11-26','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 19:13:39','drashti','2025-11-26 19:13:39',0),(0,0,'2526','H','O',4777,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-26 19:17:44','janvi','2025-11-26 19:17:44',0),(0,0,'2526','H','O',4778,1,0,'2025-11-26','00:00:00','CASE',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 19:19:06','reception','2025-11-26 19:19:06',0),(0,0,'2526','H','O',4779,1,0,'2025-11-26','00:00:00','CASE',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-26 19:23:28','reception','2025-11-26 19:23:28',0),(0,0,'2526','H','O',4780,1,0,'2025-11-26','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-26 19:25:23','janvi','2025-11-26 19:25:23',0),(0,0,'2526','H','O',4781,1,0,'2025-11-26','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-26 19:29:49','manshi','2025-11-26 19:29:49',0),(0,0,'2526','H','O',4781,2,0,'2025-11-26','00:00:00','XRY0165',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-26 19:29:49','manshi','2025-11-26 19:29:49',0),(0,0,'2526','H','O',4782,1,0,'2025-11-26','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 19:30:26','drashti','2025-11-26 19:30:26',0),(0,0,'2526','H','O',4783,1,0,'2025-11-26','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 19:49:04','drashti','2025-11-26 20:13:18',0),(0,0,'2526','H','O',4784,1,0,'2025-11-26','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-26 19:53:32','janvi','2025-11-26 19:53:32',0),(0,0,'2526','H','O',4785,1,0,'2025-11-26','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-26 19:55:10','manshi','2025-11-26 19:55:10',0),(0,0,'2526','H','O',4786,1,0,'2025-11-26','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 19:56:07','drashti','2025-11-26 19:56:07',0),(0,0,'2526','H','O',4787,1,0,'2025-11-26','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-26 19:59:22','reception','2025-11-26 19:59:22',0),(0,0,'2526','H','O',4788,1,0,'2025-11-26','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-26 20:13:18','drashti','2025-11-26 20:13:18',0),(0,0,'2526','H','O',4789,1,0,'2025-11-27','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-27 08:46:36','reception','2025-11-27 08:46:36',0),(0,0,'2526','H','O',4789,2,0,'2025-11-27','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-27 08:46:36','reception','2025-11-27 08:46:36',0),(0,0,'2526','H','O',4790,1,0,'2025-11-27','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-27 08:49:19','reception','2025-11-27 08:49:19',0),(0,0,'2526','H','O',4790,2,0,'2025-11-27','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-27 08:49:19','reception','2025-11-27 08:49:19',0),(0,0,'2526','H','O',4791,1,0,'2025-11-27','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-27 08:51:35','reception','2025-11-27 08:51:35',0),(0,0,'2526','H','O',4791,2,0,'2025-11-27','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-27 08:51:35','reception','2025-11-27 08:51:35',0),(0,0,'2526','H','O',4791,3,0,'2025-11-27','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-27 08:51:35','reception','2025-11-27 08:51:35',0),(0,0,'2526','H','O',4792,1,0,'2025-11-27','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-11-27 08:53:35','reception','2025-11-27 08:53:35',0),(0,0,'2526','H','O',4792,2,0,'2025-11-27','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-11-27 08:53:35','reception','2025-11-27 08:53:35',0),(0,0,'2526','H','O',4793,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 09:13:49','reception','2025-11-27 09:13:49',0),(0,0,'2526','H','O',4794,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-27 09:44:56','drashti','2025-11-27 09:44:56',0),(0,0,'2526','H','O',4795,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 09:48:43','reception','2025-11-27 09:48:43',0),(0,0,'2526','H','O',4796,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 09:53:44','reception','2025-11-27 09:53:44',0),(0,0,'2526','H','O',4797,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-27 09:55:42','drashti','2025-11-27 09:55:42',0),(0,0,'2526','H','O',4798,1,0,'2025-11-27','00:00:00','CASE',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 10:04:26','reception','2025-11-27 10:04:26',0),(0,0,'2526','H','O',4799,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 10:07:51','reception','2025-11-27 10:07:51',0),(0,0,'2526','H','O',4800,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,3,0,'',0,'','HO4803','','Y','N','janvi','2025-11-27 10:16:50','janvi','2025-11-27 10:16:50',0),(0,0,'2526','H','O',4801,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 10:20:11','reception','2025-11-27 10:20:11',0),(0,0,'2526','H','O',4802,1,0,'2025-11-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-27 10:20:17','drashti','2025-11-27 10:20:17',0),(0,0,'2526','H','O',4803,1,0,'2025-11-27','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,3,0,'',0,'','HO4800','','Y','N','janvi','2025-11-27 10:21:37','janvi','2025-11-27 10:21:37',0),(0,0,'2526','H','O',4804,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-27 10:21:48','janvi','2025-11-27 10:21:48',0),(0,0,'2526','H','O',4805,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-27 10:34:26','priyanshi','2025-11-27 11:39:42',0),(0,0,'2526','H','O',4806,1,0,'2025-11-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 10:36:10','reception','2025-11-27 10:36:10',0),(0,0,'2526','H','O',4807,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 10:38:07','reception','2025-11-27 10:38:07',0),(0,0,'2526','H','O',4808,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-27 10:38:27','janvi','2025-11-27 10:38:27',0),(0,0,'2526','H','O',4809,1,0,'2025-11-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-27 10:38:39','drashti','2025-11-27 10:38:39',0),(0,0,'2526','H','O',4810,1,0,'2025-11-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 10:39:49','reception','2025-11-27 10:39:49',0),(0,0,'2526','H','O',4811,1,0,'2025-11-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-27 10:41:59','reception','2025-11-27 10:41:59',0),(0,0,'2526','H','O',4812,1,0,'2025-11-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-27 10:44:49','drashti','2025-11-27 10:44:49',0),(0,0,'2526','H','O',4813,1,0,'2025-11-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 10:45:12','reception','2025-11-27 10:45:12',0),(0,0,'2526','H','O',4814,1,0,'2025-11-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-27 10:45:17','drashti','2025-11-27 10:45:17',0),(0,0,'2526','H','O',4815,1,0,'2025-11-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 10:50:04','reception','2025-11-27 10:50:04',0),(0,0,'2526','H','O',4816,1,0,'2025-11-27','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-27 10:51:28','priyanshi','2025-11-27 11:42:17',0),(0,0,'2526','H','O',4817,1,0,'2025-11-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-27 10:52:11','reception','2025-11-27 10:52:11',0),(0,0,'2526','H','O',4818,1,0,'2025-11-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-27 10:54:26','janvi','2025-11-27 10:54:26',0),(0,0,'2526','H','O',4819,1,0,'2025-11-27','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-27 10:55:10','janvi','2025-11-27 10:55:10',0),(0,0,'2526','H','O',4820,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-11-27 11:04:25','priyanshi','2025-11-27 11:04:25',0),(0,0,'2526','H','O',4821,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 11:06:26','reception','2025-11-27 11:06:26',0),(0,0,'2526','H','O',4822,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 11:14:47','reception','2025-11-27 11:14:47',0),(0,0,'2526','H','O',4823,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 11:17:25','reception','2025-11-27 11:17:25',0),(0,0,'2526','H','O',4824,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 11:20:02','reception','2025-11-27 11:20:02',0),(0,0,'2526','H','O',4825,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 11:22:10','reception','2025-11-27 11:22:10',0),(0,0,'2526','H','O',4826,1,0,'2025-11-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 11:24:26','reception','2025-11-27 11:24:26',0),(0,0,'2526','H','O',4826,2,0,'2025-11-27','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 11:24:26','reception','2025-11-27 11:24:26',0),(0,0,'2526','H','O',4826,3,0,'2025-11-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 11:24:26','reception','2025-11-27 11:24:26',0),(0,0,'2526','H','O',4827,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-27 11:24:49','janvi','2025-11-27 11:24:49',0),(0,0,'2526','H','O',4827,2,0,'2025-11-27','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-27 11:24:49','janvi','2025-11-27 11:24:49',0),(0,0,'2526','H','O',4828,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-27 11:29:02','reception','2025-11-27 11:29:02',0),(0,0,'2526','H','O',4829,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 11:32:16','reception','2025-11-27 11:32:16',0),(0,0,'2526','H','O',4830,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-27 11:37:07','priyanshi','2025-11-27 11:37:07',0),(0,0,'2526','H','O',4831,1,0,'2025-11-27','00:00:00','CASE',0,-1.00,400,-400,'P',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-11-27 11:39:42','priyanshi','2025-11-27 11:39:42',0),(0,0,'2526','H','O',4832,1,0,'2025-11-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 11:40:33','reception','2025-11-27 11:40:33',0),(0,0,'2526','H','O',4832,2,0,'2025-11-27','00:00:00','NEU10019',0,1.00,1800,1800,'P',0,0,1800.00,0.00,0.00,1800.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 11:40:33','reception','2025-11-27 11:40:33',0),(0,0,'2526','H','O',4832,3,0,'2025-11-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 11:40:33','reception','2025-11-27 11:40:33',0),(0,0,'2526','H','O',4832,4,0,'2025-11-27','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 11:40:33','reception','2025-11-27 11:40:33',0),(0,0,'2526','H','O',4833,1,0,'2025-11-27','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-11-27 11:42:17','priyanshi','2025-11-27 11:42:17',0),(0,0,'2526','H','O',4834,1,0,'2025-11-27','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-27 11:42:54','janvi','2025-11-27 11:42:54',0),(0,0,'2526','H','O',4835,1,0,'2025-11-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 11:42:55','reception','2025-11-27 11:42:55',0),(0,0,'2526','H','O',4835,2,0,'2025-11-27','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 11:42:55','reception','2025-11-27 11:42:55',0),(0,0,'2526','H','O',4835,3,0,'2025-11-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 11:42:55','reception','2025-11-27 11:42:55',0),(0,0,'2526','H','O',4836,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-11-27 11:44:19','priyanshi','2025-11-27 11:44:19',0),(0,0,'2526','H','O',4837,1,0,'2025-11-27','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-11-27 11:54:02','priyanshi','2025-11-27 11:54:02',0),(0,0,'2526','H','O',4838,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-27 11:58:26','manshi','2025-11-27 11:58:26',0),(0,0,'2526','H','O',4839,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 12:02:30','reception','2025-11-27 12:02:30',0),(0,0,'2526','H','O',4840,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-11-27 12:03:04','priyanshi','2025-11-27 12:03:04',0),(0,0,'2526','H','O',4840,2,0,'2025-11-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-11-27 12:03:04','priyanshi','2025-11-27 12:03:04',0),(0,0,'2526','H','O',4841,1,0,'2025-11-27','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-27 12:12:30','janvi','2025-11-27 12:12:30',0),(0,0,'2526','H','O',4842,1,0,'2025-11-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 12:12:44','reception','2025-11-27 12:12:44',0),(0,0,'2526','H','O',4842,2,0,'2025-11-27','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 12:12:44','reception','2025-11-27 12:12:44',0),(0,0,'2526','H','O',4842,3,0,'2025-11-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 12:12:44','reception','2025-11-27 12:12:44',0),(0,0,'2526','H','O',4843,1,0,'2025-11-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 12:18:51','reception','2025-11-27 12:18:51',0),(0,0,'2526','H','O',4844,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-27 12:22:05','reception','2025-11-27 12:22:05',0),(0,0,'2526','H','O',4845,1,0,'2025-11-27','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-27 12:22:10','janvi','2025-11-27 12:22:10',0),(0,0,'2526','H','O',4845,2,0,'2025-11-27','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-27 12:22:10','janvi','2025-11-27 12:22:10',0),(0,0,'2526','H','O',4846,1,0,'2025-11-27','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-27 12:27:27','janvi','2025-11-27 12:27:27',0),(0,0,'2526','H','O',4847,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-11-27 12:36:34','priyanshi','2025-11-27 12:36:34',0),(0,0,'2526','H','O',4848,1,0,'2025-11-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 12:45:00','reception','2025-11-27 12:45:00',0),(0,0,'2526','H','O',4848,2,0,'2025-11-27','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 12:45:00','reception','2025-11-27 12:45:00',0),(0,0,'2526','H','O',4848,3,0,'2025-11-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 12:45:00','reception','2025-11-27 12:45:00',0),(0,0,'2526','H','O',4849,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 12:47:49','reception','2025-11-27 12:47:49',0),(0,0,'2526','H','O',4850,1,0,'2025-11-27','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-11-27 12:51:58','priyanshi','2025-11-27 12:51:58',0),(0,0,'2526','H','O',4851,1,0,'2025-11-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 12:56:28','reception','2025-11-27 12:56:28',0),(0,0,'2526','H','O',4851,2,0,'2025-11-27','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 12:56:28','reception','2025-11-27 12:56:28',0),(0,0,'2526','H','O',4851,3,0,'2025-11-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 12:56:28','reception','2025-11-27 12:56:28',0),(0,0,'2526','H','O',4852,1,0,'2025-11-27','00:00:00','OPWD0034',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-11-27 13:01:36','priyanshi','2025-11-27 13:01:36',0),(0,0,'2526','H','O',4853,1,0,'2025-11-27','00:00:00','OPWD0023',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-27 13:12:33','janvi','2025-11-27 13:12:33',0),(0,0,'2526','H','O',4854,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 13:16:18','reception','2025-11-27 13:16:18',0),(0,0,'2526','H','O',4855,1,0,'2025-11-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 13:20:30','reception','2025-11-27 13:20:30',0),(0,0,'2526','H','O',4856,1,0,'2025-11-27','00:00:00','OPWD0023',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-27 13:26:30','janvi','2025-11-27 13:26:30',0),(0,0,'2526','H','O',4857,1,0,'2025-11-27','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 13:54:19','reception','2025-11-27 13:54:19',0),(0,0,'2526','H','O',4857,2,0,'2025-11-27','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 13:54:19','reception','2025-11-27 13:54:19',0),(0,0,'2526','H','O',4857,3,0,'2025-11-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 13:54:19','reception','2025-11-27 13:54:19',0),(0,0,'2526','H','O',4858,1,0,'2025-11-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 14:32:25','reception','2025-11-27 14:32:25',0),(0,0,'2526','H','O',4859,1,0,'2025-11-27','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-27 14:51:27','drashti','2025-11-27 14:51:27',0),(0,0,'2526','H','O',4860,1,0,'2025-11-27','00:00:00','OPWD0036',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-27 14:57:13','reception','2025-11-27 14:57:13',0),(0,0,'2526','H','O',4861,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 16:26:29','reception','2025-11-27 16:26:29',0),(0,0,'2526','H','O',4862,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-27 16:27:03','drashti','2025-11-27 16:27:03',0),(0,0,'2526','H','O',4863,1,0,'2025-11-27','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-27 16:41:40','drashti','2025-11-27 16:41:40',0),(0,0,'2526','H','O',4863,2,0,'2025-11-27','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-27 16:41:40','drashti','2025-11-27 16:41:40',0),(0,0,'2526','H','O',4863,3,0,'2025-11-27','00:00:00','OPWD0019',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-27 16:41:40','drashti','2025-11-27 16:41:40',0),(0,0,'2526','H','O',4863,4,0,'2025-11-27','00:00:00','OPWD0015',0,4.00,250,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-27 16:41:40','drashti','2025-11-27 16:41:40',0),(0,0,'2526','H','O',4863,5,0,'2025-11-27','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-27 16:41:40','drashti','2025-11-27 16:41:40',0),(0,0,'2526','H','O',4864,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 16:45:11','reception','2025-11-27 16:45:11',0),(0,0,'2526','H','O',4865,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-27 16:55:04','drashti','2025-11-27 16:55:04',0),(0,0,'2526','H','O',4866,1,0,'2025-11-27','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-27 17:03:48','manshi','2025-11-27 17:03:48',0),(0,0,'2526','H','O',4867,1,0,'2025-11-27','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-27 17:04:18','reception','2025-11-27 17:04:18',0),(0,0,'2526','H','O',4867,2,0,'2025-11-27','00:00:00','OPWD0015',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-27 17:04:18','reception','2025-11-27 17:04:18',0),(0,0,'2526','H','O',4867,3,0,'2025-11-27','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-27 17:04:18','reception','2025-11-27 17:04:18',0),(0,0,'2526','H','O',4868,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 17:12:35','reception','2025-11-27 17:12:35',0),(0,0,'2526','H','O',4869,1,0,'2025-11-27','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 17:27:20','reception','2025-11-27 17:27:20',0),(0,0,'2526','H','O',4870,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 17:35:46','reception','2025-11-27 17:35:46',0),(0,0,'2526','H','O',4871,1,0,'2025-11-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-27 17:40:13','reception','2025-11-27 17:40:13',0),(0,0,'2526','H','O',4872,1,0,'2025-11-27','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-27 17:40:23','manshi','2025-11-27 17:40:23',0),(0,0,'2526','H','O',4873,1,0,'2025-11-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-27 17:40:23','janvi','2025-11-27 17:40:23',0),(0,0,'2526','H','O',4874,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-27 17:45:22','drashti','2025-11-27 17:45:22',0),(0,0,'2526','H','O',4875,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-27 17:45:34','drashti','2025-11-27 17:45:34',0),(0,0,'2526','H','O',4876,1,0,'2025-11-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-27 17:50:18','manshi','2025-11-27 17:50:18',0),(0,0,'2526','H','O',4877,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 17:52:22','reception','2025-11-27 17:52:22',0),(0,0,'2526','H','O',4878,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 17:59:54','reception','2025-11-27 17:59:54',0),(0,0,'2526','H','O',4879,1,0,'2025-11-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-27 18:04:20','janvi','2025-11-27 18:04:20',0),(0,0,'2526','H','O',4880,1,0,'2025-11-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-27 18:08:11','reception','2025-11-27 18:08:11',0),(0,0,'2526','H','O',4881,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-27 18:08:29','manshi','2025-11-27 18:08:29',0),(0,0,'2526','H','O',4882,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-27 18:10:21','janvi','2025-11-27 18:10:21',0),(0,0,'2526','H','O',4883,1,0,'2025-11-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 18:13:02','reception','2025-11-27 18:13:02',0),(0,0,'2526','H','O',4884,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-27 18:15:08','manshi','2025-11-27 18:31:16',0),(0,0,'2526','H','O',4885,1,0,'2025-11-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-27 18:17:14','manshi','2025-11-27 18:17:14',0),(0,0,'2526','H','O',4886,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-27 18:17:21','reception','2025-11-27 18:17:21',0),(0,0,'2526','H','O',4887,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-27 18:18:52','manshi','2025-11-27 18:54:18',0),(0,0,'2526','H','O',4888,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-27 18:20:33','manshi','2025-11-27 18:59:26',0),(0,0,'2526','H','O',4889,1,0,'2025-11-27','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-27 18:20:58','janvi','2025-11-27 18:20:58',0),(0,0,'2526','H','O',4890,1,0,'2025-11-27','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-27 18:21:24','drashti','2025-11-27 18:21:24',0),(0,0,'2526','H','O',4891,1,0,'2025-11-27','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-27 18:21:52','drashti','2025-11-27 18:21:52',0),(0,0,'2526','H','O',4892,1,0,'2025-11-27','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-27 18:23:23','janvi','2025-11-27 18:23:23',0),(0,0,'2526','H','O',4893,1,0,'2025-11-27','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-27 18:23:48','drashti','2025-11-27 18:23:48',0),(0,0,'2526','H','O',4894,1,0,'2025-11-27','00:00:00','XRY0292',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-27 18:25:31','manshi','2025-11-27 18:25:31',0),(0,0,'2526','H','O',4895,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-27 18:25:48','drashti','2025-11-27 18:25:48',0),(0,0,'2526','H','O',4896,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-27 18:27:39','drashti','2025-11-27 18:50:04',0),(0,0,'2526','H','O',4897,1,0,'2025-11-27','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 18:29:50','reception','2025-11-27 18:29:50',0),(0,0,'2526','H','O',4898,1,0,'2025-11-27','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-27 18:30:18','manshi','2025-11-27 18:30:18',0),(0,0,'2526','H','O',4899,1,0,'2025-11-27','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-27 18:31:16','manshi','2025-11-27 18:31:16',0),(0,0,'2526','H','O',4900,1,0,'2025-11-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-27 18:31:36','drashti','2025-11-27 18:31:36',0),(0,0,'2526','H','O',4901,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-27 18:32:23','janvi','2025-11-27 18:32:23',0),(0,0,'2526','H','O',4902,1,0,'2025-11-27','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-27 18:33:03','janvi','2025-11-27 18:33:03',0),(0,0,'2526','H','O',4903,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-27 18:33:14','drashti','2025-11-27 18:56:14',0),(0,0,'2526','H','O',4904,1,0,'2025-11-27','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-27 18:35:17','drashti','2025-11-27 18:35:17',0),(0,0,'2526','H','O',4905,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-27 18:36:45','drashti','2025-11-27 18:36:45',0),(0,0,'2526','H','O',4906,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-27 18:46:45','janvi','2025-11-27 18:46:45',0),(0,0,'2526','H','O',4907,1,0,'2025-11-27','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 18:47:24','reception','2025-11-27 18:47:24',0),(0,0,'2526','H','O',4907,2,0,'2025-11-27','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 18:47:24','reception','2025-11-27 18:47:24',0),(0,0,'2526','H','O',4907,3,0,'2025-11-27','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-27 18:47:24','reception','2025-11-27 18:47:24',0),(0,0,'2526','H','O',4908,1,0,'2025-11-27','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-27 18:47:43','janvi','2025-11-27 18:47:43',0),(0,0,'2526','H','O',4909,1,0,'2025-11-27','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-27 18:50:04','drashti','2025-11-27 18:50:04',0),(0,0,'2526','H','O',4910,1,0,'2025-11-27','00:00:00','XRY0254',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-27 18:53:40','manshi','2025-11-27 18:53:40',0),(0,0,'2526','H','O',4911,1,0,'2025-11-27','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-27 18:54:18','manshi','2025-11-27 18:54:18',0),(0,0,'2526','H','O',4912,1,0,'2025-11-27','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-27 18:56:14','drashti','2025-11-27 18:56:14',0),(0,0,'2526','H','O',4913,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-27 18:58:13','drashti','2025-11-27 18:58:13',0),(0,0,'2526','H','O',4914,1,0,'2025-11-27','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-27 18:59:26','manshi','2025-11-27 18:59:26',0),(0,0,'2526','H','O',4915,1,0,'2025-11-27','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-11-27 18:59:47','janvi','2025-11-27 18:59:47',0),(0,0,'2526','H','O',4916,1,0,'2025-11-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-27 19:00:55','reception','2025-11-27 19:00:55',0),(0,0,'2526','H','O',4917,1,0,'2025-11-27','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-27 19:01:38','drashti','2025-11-27 19:01:38',0),(0,0,'2526','H','O',4918,1,0,'2025-11-27','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-27 19:01:50','reception','2025-11-27 19:01:50',0),(0,0,'2526','H','O',4919,1,0,'2025-11-27','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-27 19:04:20','manshi','2025-11-27 19:04:20',0),(0,0,'2526','H','O',4920,1,0,'2025-11-27','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-27 19:09:20','drashti','2025-11-27 19:09:20',0),(0,0,'2526','H','O',4921,1,0,'2025-11-27','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-27 19:10:01','reception','2025-11-27 19:10:01',0),(0,0,'2526','H','O',4922,1,0,'2025-11-27','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-27 19:26:20','janvi','2025-11-27 19:26:20',0),(0,0,'2526','H','O',4923,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-27 20:14:28','drashti','2025-11-27 20:14:28',0),(0,0,'2526','H','O',4924,1,0,'2025-11-27','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-27 20:39:46','drashti','2025-11-27 20:39:46',0),(0,0,'2526','H','O',4925,1,0,'2025-11-27','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-27 20:45:50','drashti','2025-11-27 20:45:50',0),(0,0,'2526','H','O',4925,2,0,'2025-11-27','00:00:00','OPWD0023',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-27 20:45:50','drashti','2025-11-27 20:45:50',0),(0,0,'2526','H','O',4925,3,0,'2025-11-27','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-27 20:45:50','drashti','2025-11-27 20:45:50',0),(0,0,'2526','H','O',4926,1,0,'2025-11-28','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-28 08:52:37','reception','2025-11-28 08:52:37',0),(0,0,'2526','H','O',4926,2,0,'2025-11-28','00:00:00','OPWD0015',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-28 08:52:37','reception','2025-11-28 08:52:37',0),(0,0,'2526','H','O',4926,3,0,'2025-11-28','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 08:52:37','reception','2025-11-28 08:52:37',0),(0,0,'2526','H','O',4926,4,0,'2025-11-28','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-28 08:52:37','reception','2025-11-28 08:52:37',0),(0,0,'2526','H','O',4927,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-11-28 08:56:53','urvashi','2025-11-28 08:56:53',0),(0,0,'2526','H','O',4928,1,0,'2025-11-28','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-28 09:04:19','reception','2025-11-28 09:04:19',0),(0,0,'2526','H','O',4928,2,0,'2025-11-28','00:00:00','AECO0001',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 09:04:19','reception','2025-11-28 09:04:19',0),(0,0,'2526','H','O',4929,1,0,'2025-11-28','00:00:00','CASE',0,1.00,0,0,'A',0,0,0.00,0.00,0.00,0.00,'',0,5,0,'',0,'','HO4937','','Y','N','reception','2025-11-28 09:22:20','reception','2025-11-28 09:22:20',0),(0,0,'2526','H','O',4930,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 09:45:51','reception','2025-11-28 09:45:51',0),(0,0,'2526','H','O',4931,1,0,'2025-11-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 10:05:17','reception','2025-11-28 10:05:17',0),(0,0,'2526','H','O',4932,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-11-28 10:07:42','janvi','2025-11-28 10:07:42',0),(0,0,'2526','H','O',4933,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 10:09:26','reception','2025-11-28 10:09:26',0),(0,0,'2526','H','O',4934,1,0,'2025-11-28','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-28 10:14:01','manshi','2025-11-28 10:14:01',0),(0,0,'2526','H','O',4935,1,0,'2025-11-28','00:00:00','CASE',0,1.00,0,0,'A',0,0,0.00,0.00,0.00,0.00,'',0,5,0,'',0,'','HO4939','','Y','N','drashti','2025-11-28 10:15:56','janvi','2025-11-28 10:20:17',0),(0,0,'2526','H','O',4936,1,0,'2025-11-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 10:17:02','reception','2025-11-28 10:17:02',0),(0,0,'2526','H','O',4937,1,0,'2025-11-28','00:00:00','CASE',0,-1.00,0,0,'A',0,0,0.00,0.00,0.00,0.00,'',0,5,0,'',0,'','HO4929','','Y','N','drashti','2025-11-28 10:17:25','drashti','2025-11-28 10:17:25',0),(0,0,'2526','H','O',4938,1,0,'2025-11-28','00:00:00','CASE',0,1.00,0,0,'A',0,0,0.00,0.00,0.00,0.00,'',0,4,0,'',0,'','HO4942','','Y','N','drashti','2025-11-28 10:17:44','drashti','2025-11-28 10:17:44',0),(0,0,'2526','H','O',4939,1,0,'2025-11-28','00:00:00','CASE',0,-1.00,0,0,'A',0,0,0.00,0.00,0.00,0.00,'',0,5,0,'',0,'','HO4935','','Y','N','janvi','2025-11-28 10:19:07','janvi','2025-11-28 10:19:07',0),(0,0,'2526','H','O',4940,1,0,'2025-11-28','00:00:00','CASE',0,1.00,0,0,'A',0,0,0.00,0.00,0.00,0.00,'',0,4,0,'',0,'','HO4944','','Y','N','janvi','2025-11-28 10:19:16','janvi','2025-11-28 10:19:16',0),(0,0,'2526','H','O',4941,1,0,'2025-11-28','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-28 10:20:17','janvi','2025-11-28 10:20:17',0),(0,0,'2526','H','O',4942,1,0,'2025-11-28','00:00:00','CASE',0,-1.00,0,0,'A',0,0,0.00,0.00,0.00,0.00,'',0,4,0,'',0,'','HO4938','','Y','N','drashti','2025-11-28 10:25:12','drashti','2025-11-28 10:25:12',0),(0,0,'2526','H','O',4943,1,0,'2025-11-28','00:00:00','CASE',0,1.00,0,0,'A',0,0,0.00,0.00,0.00,0.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-28 10:25:23','drashti','2025-11-28 10:25:23',0),(0,0,'2526','H','O',4944,1,0,'2025-11-28','00:00:00','CASE',0,-1.00,0,0,'A',0,0,0.00,0.00,0.00,0.00,'',0,4,0,'',0,'','HO4940','','Y','N','reception','2025-11-28 10:26:16','reception','2025-11-28 10:26:16',0),(0,0,'2526','H','O',4945,1,0,'2025-11-28','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','HO4946','','Y','N','reception','2025-11-28 10:26:28','drashti','2025-11-28 10:29:44',0),(0,0,'2526','H','O',4946,1,0,'2025-11-28','00:00:00','CASE',0,-1.00,0,0,'A',0,0,0.00,0.00,0.00,0.00,'',0,5,0,'',0,'','HO4945','','Y','N','reception','2025-11-28 10:26:52','reception','2025-11-28 10:26:52',0),(0,0,'2526','H','O',4947,1,0,'2025-11-28','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-28 10:27:01','drashti','2025-11-28 10:28:04',0),(0,0,'2526','H','O',4948,1,0,'2025-11-28','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-28 10:28:04','drashti','2025-11-28 10:28:04',0),(0,0,'2526','H','O',4949,1,0,'2025-11-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 10:28:45','reception','2025-11-28 10:28:45',0),(0,0,'2526','H','O',4950,1,0,'2025-11-28','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-28 10:29:44','drashti','2025-11-28 10:29:44',0),(0,0,'2526','H','O',4951,1,0,'2025-11-28','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-28 10:31:05','janvi','2025-11-28 10:31:05',0),(0,0,'2526','H','O',4952,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-28 10:32:48','janvi','2025-11-28 10:32:48',0),(0,0,'2526','H','O',4953,1,0,'2025-11-28','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-28 10:42:09','janvi','2025-11-28 10:42:09',0),(0,0,'2526','H','O',4954,1,0,'2025-11-28','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-28 10:43:03','drashti','2025-11-28 10:43:03',0),(0,0,'2526','H','O',4955,1,0,'2025-11-28','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-28 10:45:18','janvi','2025-11-28 10:45:18',0),(0,0,'2526','H','O',4956,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 10:46:30','reception','2025-11-28 10:46:30',0),(0,0,'2526','H','O',4957,1,0,'2025-11-28','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-28 10:52:59','janvi','2025-11-28 10:52:59',0),(0,0,'2526','H','O',4958,1,0,'2025-11-28','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-28 11:01:36','janvi','2025-11-28 11:01:36',0),(0,0,'2526','H','O',4959,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 11:04:34','reception','2025-11-28 11:04:34',0),(0,0,'2526','H','O',4960,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-28 11:06:55','reception','2025-11-28 11:06:55',0),(0,0,'2526','H','O',4961,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-28 11:06:55','janvi','2025-11-28 11:06:55',0),(0,0,'2526','H','O',4962,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 11:14:39','reception','2025-11-28 11:14:39',0),(0,0,'2526','H','O',4963,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 11:19:00','reception','2025-11-28 11:19:00',0),(0,0,'2526','H','O',4964,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-28 11:19:35','drashti','2025-11-28 11:19:35',0),(0,0,'2526','H','O',4965,1,0,'2025-11-28','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-28 11:21:08','manshi','2025-11-28 11:21:08',0),(0,0,'2526','H','O',4966,1,0,'2025-11-28','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 11:23:00','reception','2025-11-28 11:23:00',0),(0,0,'2526','H','O',4966,2,0,'2025-11-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 11:23:00','reception','2025-11-28 11:23:00',0),(0,0,'2526','H','O',4966,3,0,'2025-11-28','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 11:23:00','reception','2025-11-28 11:23:00',0),(0,0,'2526','H','O',4967,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-28 11:23:29','drashti','2025-11-28 11:23:29',0),(0,0,'2526','H','O',4968,1,0,'2025-11-28','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-28 11:25:28','manshi','2025-11-28 11:25:28',0),(0,0,'2526','H','O',4968,2,0,'2025-11-28','00:00:00','XRY0100',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-28 11:25:28','manshi','2025-11-28 11:25:28',0),(0,0,'2526','H','O',4969,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 11:28:11','reception','2025-11-28 11:28:11',0),(0,0,'2526','H','O',4970,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-28 11:28:50','janvi','2025-11-28 11:28:50',0),(0,0,'2526','H','O',4971,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-28 11:29:37','drashti','2025-11-28 11:29:37',0),(0,0,'2526','H','O',4972,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-28 11:30:59','drashti','2025-11-28 11:30:59',0),(0,0,'2526','H','O',4973,1,0,'2025-11-28','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-28 11:31:35','janvi','2025-11-28 11:31:35',0),(0,0,'2526','H','O',4974,1,0,'2025-11-28','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-28 11:32:14','janvi','2025-11-28 11:32:14',0),(0,0,'2526','H','O',4975,1,0,'2025-11-28','00:00:00','WPRC0021',0,1.00,0,0,'P',0,0,0.00,0.00,0.00,0.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-28 11:33:21','drashti','2025-11-28 11:33:21',0),(0,0,'2526','H','O',4976,1,0,'2025-11-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 11:34:35','reception','2025-11-28 11:34:35',0),(0,0,'2526','H','O',4977,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 11:36:12','reception','2025-11-28 11:36:12',0),(0,0,'2526','H','O',4978,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-28 11:36:13','drashti','2025-11-28 11:36:13',0),(0,0,'2526','H','O',4979,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 11:37:43','reception','2025-11-28 11:37:43',0),(0,0,'2526','H','O',4980,1,0,'2025-11-28','00:00:00','XRY0449',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-28 11:38:24','manshi','2025-11-28 11:38:24',0),(0,0,'2526','H','O',4981,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-28 11:40:22','reception','2025-11-28 11:40:22',0),(0,0,'2526','H','O',4982,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-28 11:41:06','janvi','2025-11-28 11:41:06',0),(0,0,'2526','H','O',4983,1,0,'2025-11-28','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-28 11:41:23','janvi','2025-11-28 11:41:23',0),(0,0,'2526','H','O',4984,1,0,'2025-11-28','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-28 11:41:34','drashti','2025-11-28 11:41:34',0),(0,0,'2526','H','O',4985,1,0,'2025-11-28','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-28 11:43:24','janvi','2025-11-28 11:43:24',0),(0,0,'2526','H','O',4986,1,0,'2025-11-28','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 11:44:13','reception','2025-11-28 11:44:13',0),(0,0,'2526','H','O',4986,2,0,'2025-11-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 11:44:13','reception','2025-11-28 11:44:13',0),(0,0,'2526','H','O',4986,3,0,'2025-11-28','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 11:44:13','reception','2025-11-28 11:44:13',0),(0,0,'2526','H','O',4987,1,0,'2025-11-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 11:48:15','reception','2025-11-28 11:48:15',0),(0,0,'2526','H','O',4988,1,0,'2025-11-28','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 11:51:43','reception','2025-11-28 11:51:43',0),(0,0,'2526','H','O',4989,1,0,'2025-11-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 11:51:59','reception','2025-11-28 11:51:59',0),(0,0,'2526','H','O',4990,1,0,'2025-11-28','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-28 11:54:46','janvi','2025-11-28 11:54:46',0),(0,0,'2526','H','O',4991,1,0,'2025-11-28','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 11:54:56','reception','2025-11-28 11:54:56',0),(0,0,'2526','H','O',4992,1,0,'2025-11-28','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-28 11:55:19','janvi','2025-11-28 11:55:19',0),(0,0,'2526','H','O',4993,1,0,'2025-11-28','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 11:57:20','reception','2025-11-28 11:57:20',0),(0,0,'2526','H','O',4994,1,0,'2025-11-28','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-28 11:58:38','janvi','2025-11-28 11:58:38',0),(0,0,'2526','H','O',4995,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-28 12:00:26','manshi','2025-11-28 12:00:26',0),(0,0,'2526','H','O',4996,1,0,'2025-11-28','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 12:02:37','reception','2025-11-28 12:02:37',0),(0,0,'2526','H','O',4996,2,0,'2025-11-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 12:02:37','reception','2025-11-28 12:02:37',0),(0,0,'2526','H','O',4996,3,0,'2025-11-28','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 12:02:37','reception','2025-11-28 12:02:37',0),(0,0,'2526','H','O',4997,1,0,'2025-11-28','00:00:00','CASE',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-28 12:05:48','drashti','2025-11-28 12:05:48',0),(0,0,'2526','H','O',4998,1,0,'2025-11-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 12:07:18','reception','2025-11-28 12:07:18',0),(0,0,'2526','H','O',4999,1,0,'2025-11-28','00:00:00','CASE',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-28 12:07:21','drashti','2025-11-28 12:07:21',0),(0,0,'2526','H','O',4999,2,0,'2025-11-28','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-28 12:07:21','drashti','2025-11-28 12:07:21',0),(0,0,'2526','H','O',5000,1,0,'2025-11-28','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-28 12:11:09','drashti','2025-11-28 12:11:09',0),(0,0,'2526','H','O',5001,1,0,'2025-11-28','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 12:11:11','reception','2025-11-28 12:11:11',0),(0,0,'2526','H','O',5002,1,0,'2025-11-28','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 12:15:27','reception','2025-11-28 12:15:27',0),(0,0,'2526','H','O',5002,2,0,'2025-11-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 12:15:27','reception','2025-11-28 12:15:27',0),(0,0,'2526','H','O',5002,3,0,'2025-11-28','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 12:15:27','reception','2025-11-28 12:15:27',0),(0,0,'2526','H','O',5003,1,0,'2025-11-28','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-28 12:18:15','drashti','2025-11-28 12:18:15',0),(0,0,'2526','H','O',5004,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-28 12:19:52','reception','2025-11-28 12:19:52',0),(0,0,'2526','H','O',5005,1,0,'2025-11-28','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-28 12:32:31','manshi','2025-11-28 12:32:31',0),(0,0,'2526','H','O',5006,1,0,'2025-11-28','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 12:42:18','reception','2025-11-28 13:57:15',0),(0,0,'2526','H','O',5006,2,0,'2025-11-28','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 12:42:18','reception','2025-11-28 13:57:15',0),(0,0,'2526','H','O',5007,1,0,'2025-11-28','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-28 12:46:10','drashti','2025-11-28 12:46:10',0),(0,0,'2526','H','O',5008,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-28 12:48:37','drashti','2025-11-28 12:48:37',0),(0,0,'2526','H','O',5009,1,0,'2025-11-28','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-28 13:50:29','manshi','2025-11-28 13:50:29',0),(0,0,'2526','H','O',5009,2,0,'2025-11-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-28 13:50:29','manshi','2025-11-28 13:50:29',0),(0,0,'2526','H','O',5009,3,0,'2025-11-28','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-28 13:50:29','manshi','2025-11-28 13:50:29',0),(0,0,'2526','H','O',5010,1,0,'2025-11-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','manshi','2025-11-28 13:51:21','manshi','2025-11-28 13:51:21',0),(0,0,'2526','H','O',5011,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','manshi','2025-11-28 13:52:09','manshi','2025-11-28 13:52:09',0),(0,0,'2526','H','O',5012,1,0,'2025-11-28','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-28 13:54:15','manshi','2025-11-28 13:54:15',0),(0,0,'2526','H','O',5012,2,0,'2025-11-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-28 13:54:15','manshi','2025-11-28 13:54:15',0),(0,0,'2526','H','O',5012,3,0,'2025-11-28','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-28 13:54:15','manshi','2025-11-28 13:54:15',0),(0,0,'2526','H','O',5013,1,0,'2025-11-28','00:00:00','NEU10015',0,-1.00,500,-500,'P',0,0,-500.00,0.00,0.00,-500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 13:57:15','reception','2025-11-28 13:57:15',0),(0,0,'2526','H','O',5013,2,0,'2025-11-28','00:00:00','NEU10017',0,-1.00,3000,-3000,'P',0,0,-3000.00,0.00,0.00,-3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 13:57:15','reception','2025-11-28 13:57:15',0),(0,0,'2526','H','O',5014,1,0,'2025-11-28','00:00:00','XRY0184',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 14:02:46','reception','2025-11-28 14:02:46',0),(0,0,'2526','H','O',5015,1,0,'2025-11-28','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 14:10:39','reception','2025-11-28 14:10:39',0),(0,0,'2526','H','O',5015,2,0,'2025-11-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 14:10:39','reception','2025-11-28 14:10:39',0),(0,0,'2526','H','O',5015,3,0,'2025-11-28','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 14:10:39','reception','2025-11-28 14:10:39',0),(0,0,'2526','H','O',5016,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-28 14:24:11','reception','2025-11-28 14:24:11',0),(0,0,'2526','H','O',5017,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-28 14:25:40','reception','2025-11-28 14:25:40',0),(0,0,'2526','H','O',5017,2,0,'2025-11-28','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 14:25:40','reception','2025-11-28 14:25:40',0),(0,0,'2526','H','O',5018,1,0,'2025-11-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 16:20:45','reception','2025-11-28 16:20:45',0),(0,0,'2526','H','O',5019,1,0,'2025-11-28','00:00:00','OPWD0035',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 16:29:27','reception','2025-11-28 16:29:27',0),(0,0,'2526','H','O',5020,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 16:32:26','reception','2025-11-28 16:32:26',0),(0,0,'2526','H','O',5021,1,0,'2025-11-28','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-28 16:52:49','reception','2025-11-28 16:52:49',0),(0,0,'2526','H','O',5022,1,0,'2025-11-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 16:59:35','reception','2025-11-28 16:59:35',0),(0,0,'2526','H','O',5023,1,0,'2025-11-28','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-28 17:13:11','drashti','2025-11-28 17:13:11',0),(0,0,'2526','H','O',5024,1,0,'2025-11-28','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-28 17:16:10','manshi','2025-11-28 17:16:10',0),(0,0,'2526','H','O',5025,1,0,'2025-11-28','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-28 17:16:35','manshi','2025-11-28 17:16:35',0),(0,0,'2526','H','O',5026,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-28 17:17:49','manshi','2025-11-28 17:17:49',0),(0,0,'2526','H','O',5027,1,0,'2025-11-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 17:28:57','reception','2025-11-28 17:28:57',0),(0,0,'2526','H','O',5027,2,0,'2025-11-28','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 17:28:57','reception','2025-11-28 17:28:57',0),(0,0,'2526','H','O',5027,3,0,'2025-11-28','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 17:28:57','reception','2025-11-28 17:28:57',0),(0,0,'2526','H','O',5028,1,0,'2025-11-28','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 17:32:24','reception','2025-11-28 17:32:24',0),(0,0,'2526','H','O',5028,2,0,'2025-11-28','00:00:00','NEU10019',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 17:32:24','reception','2025-11-28 17:32:24',0),(0,0,'2526','H','O',5029,1,0,'2025-11-28','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 17:36:23','reception','2025-11-28 17:36:23',0),(0,0,'2526','H','O',5030,1,0,'2025-11-28','00:00:00','DRC0018',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 17:40:36','reception','2025-11-28 17:40:36',0),(0,0,'2526','H','O',5031,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 17:43:12','reception','2025-11-28 17:43:12',0),(0,0,'2526','H','O',5032,1,0,'2025-11-28','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-28 17:45:13','drashti','2025-11-28 17:45:13',0),(0,0,'2526','H','O',5033,1,0,'2025-11-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 17:48:06','reception','2025-11-28 17:48:06',0),(0,0,'2526','H','O',5033,2,0,'2025-11-28','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 17:48:06','reception','2025-11-28 17:48:06',0),(0,0,'2526','H','O',5033,3,0,'2025-11-28','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 17:48:06','reception','2025-11-28 17:48:06',0),(0,0,'2526','H','O',5034,1,0,'2025-11-28','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 17:50:56','reception','2025-11-28 18:31:45',0),(0,0,'2526','H','O',5035,1,0,'2025-11-28','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-28 17:51:01','manshi','2025-11-28 17:51:01',0),(0,0,'2526','H','O',5036,1,0,'2025-11-28','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-28 17:51:20','janvi','2025-11-28 17:51:20',0),(0,0,'2526','H','O',5037,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-28 17:53:39','drashti','2025-11-28 17:53:39',0),(0,0,'2526','H','O',5038,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-28 17:58:45','drashti','2025-11-28 17:58:45',0),(0,0,'2526','H','O',5039,1,0,'2025-11-28','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-28 18:07:53','manshi','2025-11-28 18:07:53',0),(0,0,'2526','H','O',5040,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-28 18:09:03','drashti','2025-11-28 18:09:03',0),(0,0,'2526','H','O',5041,1,0,'2025-11-28','00:00:00','XRY0495',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-28 18:10:39','manshi','2025-11-28 18:10:39',0),(0,0,'2526','H','O',5042,1,0,'2025-11-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 18:12:14','reception','2025-11-28 18:12:14',0),(0,0,'2526','H','O',5043,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-28 18:13:02','janvi','2025-11-28 18:13:02',0),(0,0,'2526','H','O',5044,1,0,'2025-11-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-28 18:14:50','drashti','2025-11-28 18:14:50',0),(0,0,'2526','H','O',5045,1,0,'2025-11-28','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-28 18:15:22','janvi','2025-11-28 18:15:22',0),(0,0,'2526','H','O',5046,1,0,'2025-11-28','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-11-28 18:17:25','drashti','2025-11-28 18:17:25',0),(0,0,'2526','H','O',5047,1,0,'2025-11-28','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 18:18:55','reception','2025-11-28 18:18:55',0),(0,0,'2526','H','O',5047,2,0,'2025-11-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 18:18:55','reception','2025-11-28 18:18:55',0),(0,0,'2526','H','O',5047,3,0,'2025-11-28','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 18:18:55','reception','2025-11-28 18:18:55',0),(0,0,'2526','H','O',5048,1,0,'2025-11-28','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-28 18:21:05','manshi','2025-11-28 18:21:05',0),(0,0,'2526','H','O',5049,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-28 18:21:14','janvi','2025-11-28 18:21:14',0),(0,0,'2526','H','O',5050,1,0,'2025-11-28','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-28 18:22:15','drashti','2025-11-28 18:22:15',0),(0,0,'2526','H','O',5051,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-28 18:25:35','janvi','2025-11-28 18:25:35',0),(0,0,'2526','H','O',5052,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 18:29:36','reception','2025-11-28 18:29:36',0),(0,0,'2526','H','O',5053,1,0,'2025-11-28','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-28 18:29:38','drashti','2025-11-28 18:29:38',0),(0,0,'2526','H','O',5054,1,0,'2025-11-28','00:00:00','CASE',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 18:31:45','reception','2025-11-28 18:31:45',0),(0,0,'2526','H','O',5055,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-28 18:33:14','drashti','2025-11-28 18:33:14',0),(0,0,'2526','H','O',5056,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-28 18:33:59','janvi','2025-11-28 18:33:59',0),(0,0,'2526','H','O',5056,2,0,'2025-11-28','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-28 18:33:59','janvi','2025-11-28 18:33:59',0),(0,0,'2526','H','O',5057,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-28 18:34:08','janvi','2025-11-28 18:34:08',0),(0,0,'2526','H','O',5058,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-28 18:35:48','drashti','2025-11-28 18:35:48',0),(0,0,'2526','H','O',5059,1,0,'2025-11-28','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-28 18:37:18','janvi','2025-11-28 18:37:18',0),(0,0,'2526','H','O',5060,1,0,'2025-11-28','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-28 18:37:51','manshi','2025-11-28 18:37:51',0),(0,0,'2526','H','O',5061,1,0,'2025-11-28','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 18:39:14','reception','2025-11-28 18:39:14',0),(0,0,'2526','H','O',5061,2,0,'2025-11-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 18:39:14','reception','2025-11-28 18:39:14',0),(0,0,'2526','H','O',5061,3,0,'2025-11-28','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 18:39:14','reception','2025-11-28 18:39:14',0),(0,0,'2526','H','O',5062,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 18:41:22','reception','2025-11-28 18:41:22',0),(0,0,'2526','H','O',5063,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 18:45:08','reception','2025-11-28 18:45:08',0),(0,0,'2526','H','O',5064,1,0,'2025-11-28','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-28 18:45:44','janvi','2025-11-28 18:45:44',0),(0,0,'2526','H','O',5065,1,0,'2025-11-28','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-11-28 18:47:39','manshi','2025-11-28 18:47:39',0),(0,0,'2526','H','O',5066,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-28 18:49:52','manshi','2025-11-28 18:49:52',0),(0,0,'2526','H','O',5067,1,0,'2025-11-28','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-28 18:50:03','manshi','2025-11-28 18:50:03',0),(0,0,'2526','H','O',5068,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-28 18:50:42','drashti','2025-11-28 18:50:42',0),(0,0,'2526','H','O',5069,1,0,'2025-11-28','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 18:55:12','reception','2025-11-28 18:55:12',0),(0,0,'2526','H','O',5070,1,0,'2025-11-28','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-28 18:56:06','drashti','2025-11-28 18:56:06',0),(0,0,'2526','H','O',5071,1,0,'2025-11-28','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 18:58:14','reception','2025-11-28 18:58:14',0),(0,0,'2526','H','O',5072,1,0,'2025-11-28','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-28 18:59:19','manshi','2025-11-28 18:59:19',0),(0,0,'2526','H','O',5073,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-28 19:05:06','drashti','2025-11-28 19:05:06',0),(0,0,'2526','H','O',5074,1,0,'2025-11-28','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 19:07:02','reception','2025-11-28 19:07:02',0),(0,0,'2526','H','O',5074,2,0,'2025-11-28','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-28 19:07:02','reception','2025-11-28 19:07:02',0),(0,0,'2526','H','O',5075,1,0,'2025-11-28','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-28 19:17:36','janvi','2025-11-28 19:17:36',0),(0,0,'2526','H','O',5076,1,0,'2025-11-28','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-28 19:18:06','drashti','2025-11-28 19:18:06',0),(0,0,'2526','H','O',5077,1,0,'2025-11-28','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-28 19:23:49','drashti','2025-11-28 19:23:49',0),(0,0,'2526','H','O',5078,1,0,'2025-11-28','00:00:00','OPWD0036',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-28 19:26:09','drashti','2025-11-28 19:26:09',0),(0,0,'2526','H','O',5079,1,0,'2025-11-28','00:00:00','CASE',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-28 20:21:10','reception','2025-11-28 20:21:10',0),(0,0,'2526','H','O',5080,1,0,'2025-11-29','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-29 09:06:17','reception','2025-11-29 09:06:17',0),(0,0,'2526','H','O',5080,2,0,'2025-11-29','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-29 09:06:17','reception','2025-11-29 09:06:17',0),(0,0,'2526','H','O',5080,3,0,'2025-11-29','00:00:00','OPWD0013',0,1.00,150,150,'P',0,0,150.00,0.00,0.00,150.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-29 09:06:17','reception','2025-11-29 09:06:17',0),(0,0,'2526','H','O',5081,1,0,'2025-11-29','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-11-29 09:07:43','reception','2025-11-29 09:07:43',0),(0,0,'2526','H','O',5082,1,0,'2025-11-29','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-29 09:09:27','reception','2025-11-29 09:09:27',0),(0,0,'2526','H','O',5082,2,0,'2025-11-29','00:00:00','WPRC0049',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 09:09:27','reception','2025-11-29 09:09:27',0),(0,0,'2526','H','O',5083,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 09:28:03','reception','2025-11-29 09:28:03',0),(0,0,'2526','H','O',5084,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 09:56:17','reception','2025-11-29 10:33:57',0),(0,0,'2526','H','O',5085,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 09:58:02','reception','2025-11-29 09:58:02',0),(0,0,'2526','H','O',5086,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-29 09:59:35','drashti','2025-11-29 09:59:35',0),(0,0,'2526','H','O',5087,1,0,'2025-11-29','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-29 10:02:28','drashti','2025-11-29 10:02:28',0),(0,0,'2526','H','O',5088,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 10:09:31','reception','2025-11-29 10:09:31',0),(0,0,'2526','H','O',5089,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-11-29 10:14:29','reception','2025-11-29 10:14:29',0),(0,0,'2526','H','O',5090,1,0,'2025-11-29','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 10:15:52','reception','2025-11-29 10:15:52',0),(0,0,'2526','H','O',5091,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-29 10:27:59','drashti','2025-11-29 10:27:59',0),(0,0,'2526','H','O',5092,1,0,'2025-11-29','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 10:33:57','reception','2025-11-29 10:33:57',0),(0,0,'2526','H','O',5093,1,0,'2025-11-29','00:00:00','CASE',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 10:35:12','reception','2025-11-29 10:35:12',0),(0,0,'2526','H','O',5094,1,0,'2025-11-29','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 10:37:55','reception','2025-11-29 10:37:55',0),(0,0,'2526','H','O',5095,1,0,'2025-11-29','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 10:53:45','reception','2025-11-29 10:53:45',0),(0,0,'2526','H','O',5096,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-29 10:54:30','janvi','2025-11-29 10:54:30',0),(0,0,'2526','H','O',5097,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 10:56:23','reception','2025-11-29 10:56:23',0),(0,0,'2526','H','O',5098,1,0,'2025-11-29','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 10:58:34','reception','2025-11-29 10:58:34',0),(0,0,'2526','H','O',5098,2,0,'2025-11-29','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 10:58:34','reception','2025-11-29 10:58:34',0),(0,0,'2526','H','O',5099,1,0,'2025-11-29','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-29 10:59:15','drashti','2025-11-29 10:59:15',0),(0,0,'2526','H','O',5100,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-29 11:05:30','drashti','2025-11-29 11:05:30',0),(0,0,'2526','H','O',5101,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 11:05:48','reception','2025-11-29 11:05:48',0),(0,0,'2526','H','O',5102,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-29 11:06:59','drashti','2025-11-29 11:06:59',0),(0,0,'2526','H','O',5103,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-29 11:07:51','janvi','2025-11-29 11:09:09',0),(0,0,'2526','H','O',5104,1,0,'2025-11-29','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 11:07:54','reception','2025-11-29 11:07:54',0),(0,0,'2526','H','O',5104,2,0,'2025-11-29','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 11:07:54','reception','2025-11-29 11:07:54',0),(0,0,'2526','H','O',5104,3,0,'2025-11-29','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 11:07:54','reception','2025-11-29 11:07:54',0),(0,0,'2526','H','O',5104,4,0,'2025-11-29','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 11:07:54','reception','2025-11-29 11:07:54',0),(0,0,'2526','H','O',5105,1,0,'2025-11-29','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-29 11:09:09','janvi','2025-11-29 11:09:09',0),(0,0,'2526','H','O',5106,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 11:09:24','reception','2025-11-29 11:09:24',0),(0,0,'2526','H','O',5107,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-29 11:10:37','janvi','2025-11-29 11:10:37',0),(0,0,'2526','H','O',5108,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 11:18:01','reception','2025-11-29 11:18:01',0),(0,0,'2526','H','O',5109,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-11-29 11:20:04','reception','2025-11-29 12:57:20',0),(0,0,'2526','H','O',5110,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 11:22:03','reception','2025-11-29 11:22:03',0),(0,0,'2526','H','O',5111,1,0,'2025-11-29','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 11:27:22','reception','2025-11-29 11:27:22',0),(0,0,'2526','H','O',5112,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-29 11:28:59','drashti','2025-11-29 11:28:59',0),(0,0,'2526','H','O',5113,1,0,'2025-11-29','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-29 11:31:09','manshi','2025-11-29 11:31:09',0),(0,0,'2526','H','O',5114,1,0,'2025-11-29','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-29 11:33:20','drashti','2025-11-29 11:33:20',0),(0,0,'2526','H','O',5115,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-29 11:33:39','janvi','2025-11-29 11:33:39',0),(0,0,'2526','H','O',5116,1,0,'2025-11-29','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 11:34:00','reception','2025-11-29 11:34:00',0),(0,0,'2526','H','O',5116,2,0,'2025-11-29','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 11:34:00','reception','2025-11-29 11:34:00',0),(0,0,'2526','H','O',5116,3,0,'2025-11-29','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 11:34:00','reception','2025-11-29 11:34:00',0),(0,0,'2526','H','O',5117,1,0,'2025-11-29','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-29 11:35:06','janvi','2025-11-29 11:35:06',0),(0,0,'2526','H','O',5118,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-11-29 11:36:59','reception','2025-11-29 11:36:59',0),(0,0,'2526','H','O',5119,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-29 11:37:27','drashti','2025-11-29 11:37:27',0),(0,0,'2526','H','O',5120,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 11:52:53','reception','2025-11-29 11:52:53',0),(0,0,'2526','H','O',5121,1,0,'2025-11-29','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-29 11:53:04','drashti','2025-11-29 11:53:04',0),(0,0,'2526','H','O',5122,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 11:54:37','reception','2025-11-29 11:54:37',0),(0,0,'2526','H','O',5123,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-29 11:54:41','janvi','2025-11-29 11:54:41',0),(0,0,'2526','H','O',5124,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-29 11:55:14','drashti','2025-11-29 11:55:14',0),(0,0,'2526','H','O',5125,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-29 11:55:24','janvi','2025-11-29 11:55:24',0),(0,0,'2526','H','O',5126,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-11-29 11:56:08','urvashi','2025-11-29 11:56:08',0),(0,0,'2526','H','O',5127,1,0,'2025-11-29','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-29 11:56:18','drashti','2025-11-29 11:56:18',0),(0,0,'2526','H','O',5128,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-29 11:57:54','janvi','2025-11-29 11:57:54',0),(0,0,'2526','H','O',5129,1,0,'2025-11-29','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-11-29 11:58:05','urvashi','2025-11-29 11:58:05',0),(0,0,'2526','H','O',5130,1,0,'2025-11-29','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-11-29 11:59:21','janvi','2025-11-29 11:59:21',0),(0,0,'2526','H','O',5131,1,0,'2025-11-29','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 11:59:31','reception','2025-11-29 11:59:31',0),(0,0,'2526','H','O',5131,2,0,'2025-11-29','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 11:59:31','reception','2025-11-29 11:59:31',0),(0,0,'2526','H','O',5131,3,0,'2025-11-29','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 11:59:31','reception','2025-11-29 11:59:31',0),(0,0,'2526','H','O',5132,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-11-29 12:00:03','urvashi','2025-11-29 12:00:03',0),(0,0,'2526','H','O',5133,1,0,'2025-11-29','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-29 12:01:13','drashti','2025-11-29 12:01:13',0),(0,0,'2526','H','O',5134,1,0,'2025-11-29','00:00:00','XRY0151',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-29 12:01:54','urvashi','2025-11-29 12:01:54',0),(0,0,'2526','H','O',5135,1,0,'2025-11-29','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-29 12:03:07','drashti','2025-11-29 12:03:07',0),(0,0,'2526','H','O',5136,1,0,'2025-11-29','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-11-29 12:03:17','urvashi','2025-11-29 12:03:17',0),(0,0,'2526','H','O',5137,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-11-29 12:03:32','janvi','2025-11-29 12:03:32',0),(0,0,'2526','H','O',5138,1,0,'2025-11-29','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-29 12:04:50','janvi','2025-11-29 12:04:50',0),(0,0,'2526','H','O',5138,2,0,'2025-11-29','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-29 12:04:50','janvi','2025-11-29 12:04:50',0),(0,0,'2526','H','O',5139,1,0,'2025-11-29','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 12:05:09','reception','2025-11-29 12:05:09',0),(0,0,'2526','H','O',5140,1,0,'2025-11-29','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 12:07:22','reception','2025-11-29 12:07:22',0),(0,0,'2526','H','O',5140,2,0,'2025-11-29','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 12:07:22','reception','2025-11-29 12:07:22',0),(0,0,'2526','H','O',5140,3,0,'2025-11-29','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 12:07:22','reception','2025-11-29 12:07:22',0),(0,0,'2526','H','O',5141,1,0,'2025-11-29','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 12:10:42','reception','2025-11-29 12:10:42',0),(0,0,'2526','H','O',5142,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-29 12:11:26','drashti','2025-11-29 12:11:26',0),(0,0,'2526','H','O',5143,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-29 12:13:36','drashti','2025-11-29 12:13:36',0),(0,0,'2526','H','O',5144,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-11-29 12:13:44','janvi','2025-11-29 12:13:44',0),(0,0,'2526','H','O',5145,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 12:17:12','reception','2025-11-29 12:17:12',0),(0,0,'2526','H','O',5146,1,0,'2025-11-29','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-29 12:18:22','drashti','2025-11-29 12:18:22',0),(0,0,'2526','H','O',5147,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 12:20:32','reception','2025-11-29 12:20:32',0),(0,0,'2526','H','O',5148,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 12:21:46','reception','2025-11-29 12:21:46',0),(0,0,'2526','H','O',5149,1,0,'2025-11-29','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-29 12:25:02','janvi','2025-11-29 12:25:02',0),(0,0,'2526','H','O',5150,1,0,'2025-11-29','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-29 12:27:33','janvi','2025-11-29 12:27:33',0),(0,0,'2526','H','O',5151,1,0,'2025-11-29','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-29 12:27:42','janvi','2025-11-29 12:27:42',0),(0,0,'2526','H','O',5152,1,0,'2025-11-29','00:00:00','OPWD0034',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-11-29 12:31:04','drashti','2025-11-29 12:31:04',0),(0,0,'2526','H','O',5153,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 12:32:26','reception','2025-11-29 12:32:26',0),(0,0,'2526','H','O',5154,1,0,'2025-11-29','00:00:00','WPRC0037',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-11-29 12:33:50','urvashi','2025-11-29 12:33:50',0),(0,0,'2526','H','O',5155,1,0,'2025-11-29','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 12:33:52','reception','2025-11-29 12:33:52',0),(0,0,'2526','H','O',5156,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-11-29 12:34:38','drashti','2025-11-29 12:34:38',0),(0,0,'2526','H','O',5157,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 12:35:14','reception','2025-11-29 12:35:14',0),(0,0,'2526','H','O',5158,1,0,'2025-11-29','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 12:36:26','reception','2025-11-29 13:59:48',0),(0,0,'2526','H','O',5159,1,0,'2025-11-29','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 12:38:46','reception','2025-11-29 12:38:46',0),(0,0,'2526','H','O',5160,1,0,'2025-11-29','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-11-29 12:41:24','janvi','2025-11-29 12:41:24',0),(0,0,'2526','H','O',5161,1,0,'2025-11-29','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 12:41:55','reception','2025-11-29 12:41:55',0),(0,0,'2526','H','O',5161,2,0,'2025-11-29','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 12:41:55','reception','2025-11-29 12:41:55',0),(0,0,'2526','H','O',5161,3,0,'2025-11-29','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 12:41:55','reception','2025-11-29 12:41:55',0),(0,0,'2526','H','O',5162,1,0,'2025-11-29','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 12:47:08','reception','2025-11-29 12:47:08',0),(0,0,'2526','H','O',5162,2,0,'2025-11-29','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 12:47:08','reception','2025-11-29 12:47:08',0),(0,0,'2526','H','O',5162,3,0,'2025-11-29','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 12:47:08','reception','2025-11-29 12:47:08',0),(0,0,'2526','H','O',5163,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 12:49:04','reception','2025-11-29 12:49:04',0),(0,0,'2526','H','O',5164,1,0,'2025-11-29','00:00:00','XRY0254',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-29 12:53:35','urvashi','2025-11-29 12:53:35',0),(0,0,'2526','H','O',5165,1,0,'2025-11-29','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 12:57:20','reception','2025-11-29 12:57:20',0),(0,0,'2526','H','O',5166,1,0,'2025-11-29','00:00:00','CASE',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 12:59:11','reception','2025-11-29 12:59:11',0),(0,0,'2526','H','O',5167,1,0,'2025-11-29','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 13:15:12','reception','2025-11-29 13:15:12',0),(0,0,'2526','H','O',5168,1,0,'2025-11-29','00:00:00','OPWD0034',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-29 13:17:32','drashti','2025-11-29 13:17:32',0),(0,0,'2526','H','O',5169,1,0,'2025-11-29','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-11-29 13:21:48','drashti','2025-11-29 13:21:48',0),(0,0,'2526','H','O',5170,1,0,'2025-11-29','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 13:32:14','reception','2025-11-29 13:32:14',0),(0,0,'2526','H','O',5170,2,0,'2025-11-29','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 13:32:14','reception','2025-11-29 13:32:14',0),(0,0,'2526','H','O',5171,1,0,'2025-11-29','00:00:00','CASE',0,-1.00,900,-900,'A',0,0,-900.00,0.00,0.00,-900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-11-29 13:59:48','reception','2025-11-29 13:59:48',0),(0,0,'2526','H','O',5172,1,0,'2025-11-29','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 14:45:42','reception','2025-11-29 14:45:42',0),(0,0,'2526','H','O',5172,2,0,'2025-11-29','00:00:00','NEU10017',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 14:45:42','reception','2025-11-29 14:45:42',0),(0,0,'2526','H','O',5172,3,0,'2025-11-29','00:00:00','NEU10020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-11-29 14:45:42','reception','2025-11-29 14:45:42',0),(0,0,'2526','H','O',5173,1,0,'2025-11-29','00:00:00','OTCG0033',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-11-29 15:11:46','shweta','2025-11-29 15:11:46',0),(0,0,'2526','H','O',5174,1,0,'2025-11-29','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-29 17:56:33','janvi','2025-11-29 18:06:08',0),(0,0,'2526','H','O',5175,1,0,'2025-11-29','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-29 18:06:08','janvi','2025-11-29 18:06:08',0),(0,0,'2526','H','O',5176,1,1,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','','N','thims','2025-12-10 11:11:27','','0000-00-00 00:00:00',0),(0,0,'2526','H','O',5177,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-29 18:10:33','manshi','2025-11-29 18:10:33',0),(0,0,'2526','H','O',5178,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-29 18:14:47','janvi','2025-11-29 18:14:47',0),(0,0,'2526','H','O',5179,1,0,'2025-11-29','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-29 18:27:51','janvi','2025-11-29 18:27:51',0),(0,0,'2526','H','O',5180,1,0,'2025-11-29','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-29 18:32:26','janvi','2025-11-29 18:32:26',0),(0,0,'2526','H','O',5181,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-29 18:40:35','manshi','2025-11-29 19:01:00',0),(0,0,'2526','H','O',5182,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-29 18:51:48','janvi','2025-11-29 18:51:48',0),(0,0,'2526','H','O',5183,1,0,'2025-11-29','00:00:00','XRY0151',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-11-29 19:00:17','manshi','2025-11-29 19:00:17',0),(0,0,'2526','H','O',5184,1,0,'2025-11-29','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-11-29 19:01:00','manshi','2025-11-29 19:01:00',0),(0,0,'2526','H','O',5185,1,0,'2025-11-29','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-11-29 19:27:38','janvi','2025-11-29 19:27:38',0),(0,0,'2526','H','O',5186,1,0,'2025-11-30','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-30 09:28:24','urvashi','2025-11-30 09:28:24',0),(0,0,'2526','H','O',5186,2,0,'2025-11-30','00:00:00','WPRC0021',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-30 09:28:24','urvashi','2025-11-30 09:28:24',0),(0,0,'2526','H','O',5187,1,0,'2025-11-30','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-30 11:05:44','urvashi','2025-11-30 11:05:44',0),(0,0,'2526','H','O',5188,1,0,'2025-11-30','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-30 12:05:37','urvashi','2025-11-30 12:05:37',0),(0,0,'2526','H','O',5188,2,0,'2025-11-30','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-30 12:05:37','urvashi','2025-11-30 12:05:37',0),(0,0,'2526','H','O',5188,3,0,'2025-11-30','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-11-30 12:05:37','urvashi','2025-11-30 12:05:37',0),(0,0,'2526','H','O',5188,4,0,'2025-11-30','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-11-30 12:05:37','urvashi','2025-11-30 12:05:37',0),(0,0,'2526','H','O',5189,1,0,'2025-12-01','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-01 08:42:38','reception','2025-12-01 08:42:38',0),(0,0,'2526','H','O',5189,2,0,'2025-12-01','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-01 08:42:38','reception','2025-12-01 08:42:38',0),(0,0,'2526','H','O',5189,3,0,'2025-12-01','00:00:00','OPWD0013',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-01 08:42:38','reception','2025-12-01 08:42:38',0),(0,0,'2526','H','O',5190,1,0,'2025-12-01','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-01 09:06:37','reception','2025-12-01 09:06:37',0),(0,0,'2526','H','O',5191,1,0,'2025-12-01','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-12-01 09:11:09','reception','2025-12-01 09:11:09',0),(0,0,'2526','H','O',5191,2,0,'2025-12-01','00:00:00','XRY0045',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 09:11:09','reception','2025-12-01 09:11:09',0),(0,0,'2526','H','O',5191,3,0,'2025-12-01','00:00:00','OPWD0013',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-12-01 09:11:09','reception','2025-12-01 09:11:09',0),(0,0,'2526','H','O',5192,1,0,'2025-12-01','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-12-01 09:20:33','reception','2025-12-01 09:20:33',0),(0,0,'2526','H','O',5192,2,0,'2025-12-01','00:00:00','XRY0045',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 09:20:33','reception','2025-12-01 09:20:33',0),(0,0,'2526','H','O',5192,3,0,'2025-12-01','00:00:00','OPWD0023',0,1.00,1300,1300,'P',0,0,1300.00,0.00,0.00,1300.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-12-01 09:20:33','reception','2025-12-01 09:20:33',0),(0,0,'2526','H','O',5192,4,0,'2025-12-01','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-12-01 09:20:33','reception','2025-12-01 09:20:33',0),(0,0,'2526','H','O',5193,1,0,'2025-12-01','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-01 09:26:52','reception','2025-12-01 09:26:52',0),(0,0,'2526','H','O',5193,2,0,'2025-12-01','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 09:26:52','reception','2025-12-01 09:26:52',0),(0,0,'2526','H','O',5193,3,0,'2025-12-01','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 09:26:52','reception','2025-12-01 09:26:52',0),(0,0,'2526','H','O',5193,4,0,'2025-12-01','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-01 09:26:52','reception','2025-12-01 09:26:52',0),(0,0,'2526','H','O',5194,1,0,'2025-12-01','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-01 09:31:59','reception','2025-12-01 09:31:59',0),(0,0,'2526','H','O',5194,2,0,'2025-12-01','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-01 09:31:59','reception','2025-12-01 09:31:59',0),(0,0,'2526','H','O',5194,3,0,'2025-12-01','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-01 09:31:59','reception','2025-12-01 09:31:59',0),(0,0,'2526','H','O',5195,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 09:49:21','reception','2025-12-01 09:49:21',0),(0,0,'2526','H','O',5196,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 09:49:42','drashti','2025-12-01 09:49:42',0),(0,0,'2526','H','O',5197,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 09:51:18','reception','2025-12-01 09:51:18',0),(0,0,'2526','H','O',5198,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 09:58:16','reception','2025-12-01 09:58:16',0),(0,0,'2526','H','O',5199,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 10:01:20','reception','2025-12-01 10:01:20',0),(0,0,'2526','H','O',5200,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 10:03:11','reception','2025-12-01 10:03:11',0),(0,0,'2526','H','O',5201,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 10:04:36','drashti','2025-12-01 10:04:36',0),(0,0,'2526','H','O',5202,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 10:08:05','reception','2025-12-01 10:08:05',0),(0,0,'2526','H','O',5203,1,0,'2025-12-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 10:15:31','reception','2025-12-01 10:15:31',0),(0,0,'2526','H','O',5204,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-01 10:17:19','manshi','2025-12-01 10:17:19',0),(0,0,'2526','H','O',5205,1,0,'2025-12-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-01 10:21:46','janvi','2025-12-01 10:21:46',0),(0,0,'2526','H','O',5206,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-01 10:25:32','drashti','2025-12-01 10:25:32',0),(0,0,'2526','H','O',5207,1,0,'2025-12-01','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 10:33:37','reception','2025-12-01 10:33:37',0),(0,0,'2526','H','O',5208,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 10:35:27','reception','2025-12-01 10:35:27',0),(0,0,'2526','H','O',5209,1,0,'2025-12-01','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 10:37:58','reception','2025-12-01 10:37:58',0),(0,0,'2526','H','O',5210,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 10:39:41','reception','2025-12-01 10:39:41',0),(0,0,'2526','H','O',5211,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 10:41:46','drashti','2025-12-01 10:41:46',0),(0,0,'2526','H','O',5212,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-01 10:42:15','janvi','2025-12-01 10:42:15',0),(0,0,'2526','H','O',5213,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-01 10:45:36','drashti','2025-12-01 10:45:36',0),(0,0,'2526','H','O',5214,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-01 10:47:15','reception','2025-12-01 10:47:15',0),(0,0,'2526','H','O',5215,1,0,'2025-12-01','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-01 10:47:32','janvi','2025-12-01 10:47:32',0),(0,0,'2526','H','O',5216,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-01 10:48:15','drashti','2025-12-01 10:48:15',0),(0,0,'2526','H','O',5217,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 10:51:08','reception','2025-12-01 13:38:05',0),(0,0,'2526','H','O',5218,1,0,'2025-12-01','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-01 10:56:07','janvi','2025-12-01 10:56:07',0),(0,0,'2526','H','O',5219,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 10:56:12','drashti','2025-12-01 10:56:12',0),(0,0,'2526','H','O',5220,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 10:58:36','drashti','2025-12-01 10:58:36',0),(0,0,'2526','H','O',5221,1,0,'2025-12-01','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 10:59:09','reception','2025-12-01 10:59:09',0),(0,0,'2526','H','O',5221,2,0,'2025-12-01','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 10:59:09','reception','2025-12-01 10:59:09',0),(0,0,'2526','H','O',5221,3,0,'2025-12-01','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 10:59:09','reception','2025-12-01 10:59:09',0),(0,0,'2526','H','O',5222,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-01 11:01:27','janvi','2025-12-01 11:01:27',0),(0,0,'2526','H','O',5223,1,0,'2025-12-01','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-01 11:04:20','drashti','2025-12-01 11:04:20',0),(0,0,'2526','H','O',5224,1,0,'2025-12-01','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 11:04:45','reception','2025-12-01 11:04:45',0),(0,0,'2526','H','O',5225,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-01 11:05:46','janvi','2025-12-01 11:05:46',0),(0,0,'2526','H','O',5226,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-01 11:06:06','janvi','2025-12-01 11:06:06',0),(0,0,'2526','H','O',5227,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 11:07:43','drashti','2025-12-01 11:07:43',0),(0,0,'2526','H','O',5228,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 11:09:41','drashti','2025-12-01 12:27:15',0),(0,0,'2526','H','O',5229,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 11:12:56','reception','2025-12-01 11:14:21',0),(0,0,'2526','H','O',5230,1,0,'2025-12-01','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 11:14:21','reception','2025-12-01 11:14:21',0),(0,0,'2526','H','O',5231,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 11:17:13','drashti','2025-12-01 11:17:13',0),(0,0,'2526','H','O',5232,1,0,'2025-12-01','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 11:23:39','reception','2025-12-01 11:23:39',0),(0,0,'2526','H','O',5232,2,0,'2025-12-01','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 11:23:39','reception','2025-12-01 11:23:39',0),(0,0,'2526','H','O',5232,3,0,'2025-12-01','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 11:23:39','reception','2025-12-01 11:23:39',0),(0,0,'2526','H','O',5232,4,0,'2025-12-01','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 11:23:39','reception','2025-12-01 11:23:39',0),(0,0,'2526','H','O',5233,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 11:25:11','drashti','2025-12-01 11:25:11',0),(0,0,'2526','H','O',5234,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-01 11:26:14','manshi','2025-12-01 11:26:14',0),(0,0,'2526','H','O',5235,1,0,'2025-12-01','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-01 11:26:55','manshi','2025-12-01 11:26:55',0),(0,0,'2526','H','O',5236,1,0,'2025-12-01','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-01 11:33:15','janvi','2025-12-01 11:33:15',0),(0,0,'2526','H','O',5237,1,0,'2025-12-01','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 11:37:07','reception','2025-12-01 11:37:07',0),(0,0,'2526','H','O',5237,2,0,'2025-12-01','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 11:37:07','reception','2025-12-01 11:37:07',0),(0,0,'2526','H','O',5238,1,0,'2025-12-01','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-01 11:39:39','drashti','2025-12-01 11:39:39',0),(0,0,'2526','H','O',5239,1,0,'2025-12-01','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-01 11:44:26','drashti','2025-12-01 11:44:26',0),(0,0,'2526','H','O',5240,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-01 11:44:40','reception','2025-12-01 11:44:40',0),(0,0,'2526','H','O',5241,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-01 11:46:09','janvi','2025-12-01 11:46:09',0),(0,0,'2526','H','O',5242,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 11:46:37','reception','2025-12-01 11:46:37',0),(0,0,'2526','H','O',5243,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-01 11:47:36','janvi','2025-12-01 11:47:36',0),(0,0,'2526','H','O',5244,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 11:50:26','reception','2025-12-01 11:50:26',0),(0,0,'2526','H','O',5245,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 11:54:39','drashti','2025-12-01 11:54:39',0),(0,0,'2526','H','O',5246,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 11:56:39','reception','2025-12-01 11:56:39',0),(0,0,'2526','H','O',5247,1,0,'2025-12-01','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-01 11:58:59','drashti','2025-12-01 11:58:59',0),(0,0,'2526','H','O',5248,1,0,'2025-12-01','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-01 12:04:07','drashti','2025-12-01 12:04:07',0),(0,0,'2526','H','O',5249,1,0,'2025-12-01','00:00:00','OPWD0037',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 12:05:39','reception','2025-12-01 12:05:39',0),(0,0,'2526','H','O',5250,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-01 12:07:26','drashti','2025-12-01 12:07:26',0),(0,0,'2526','H','O',5251,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 12:13:46','drashti','2025-12-01 12:13:46',0),(0,0,'2526','H','O',5252,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-01 12:14:18','janvi','2025-12-01 12:14:18',0),(0,0,'2526','H','O',5253,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-01 12:14:47','reception','2025-12-01 12:14:47',0),(0,0,'2526','H','O',5254,1,0,'2025-12-01','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-01 12:21:50','manshi','2025-12-01 12:21:50',0),(0,0,'2526','H','O',5255,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 12:26:18','reception','2025-12-01 12:26:18',0),(0,0,'2526','H','O',5256,1,0,'2025-12-01','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 12:27:15','drashti','2025-12-01 12:27:15',0),(0,0,'2526','H','O',5257,1,0,'2025-12-01','00:00:00','XRY0308',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-01 12:27:23','manshi','2025-12-01 12:27:23',0),(0,0,'2526','H','O',5258,1,0,'2025-12-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 12:28:11','reception','2025-12-01 12:28:11',0),(0,0,'2526','H','O',5259,1,0,'2025-12-01','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 12:30:59','reception','2025-12-01 12:30:59',0),(0,0,'2526','H','O',5259,2,0,'2025-12-01','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 12:30:59','reception','2025-12-01 12:30:59',0),(0,0,'2526','H','O',5260,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 12:31:01','drashti','2025-12-01 12:31:01',0),(0,0,'2526','H','O',5261,1,0,'2025-12-01','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-01 12:31:51','janvi','2025-12-01 12:31:51',0),(0,0,'2526','H','O',5262,1,0,'2025-12-01','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 12:33:56','drashti','2025-12-01 12:33:56',0),(0,0,'2526','H','O',5263,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-01 12:36:31','manshi','2025-12-01 12:36:31',0),(0,0,'2526','H','O',5264,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 12:38:40','drashti','2025-12-01 12:38:40',0),(0,0,'2526','H','O',5265,1,0,'2025-12-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 12:45:15','reception','2025-12-01 12:45:15',0),(0,0,'2526','H','O',5266,1,0,'2025-12-01','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 12:49:34','reception','2025-12-01 12:49:34',0),(0,0,'2526','H','O',5267,1,0,'2025-12-01','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-01 12:50:10','janvi','2025-12-01 12:51:10',0),(0,0,'2526','H','O',5268,1,0,'2025-12-01','00:00:00','XRY0358',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-01 12:50:47','manshi','2025-12-01 12:50:47',0),(0,0,'2526','H','O',5268,2,0,'2025-12-01','00:00:00','XRY0308',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-01 12:50:47','manshi','2025-12-01 12:50:47',0),(0,0,'2526','H','O',5269,1,0,'2025-12-01','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-01 12:51:10','janvi','2025-12-01 12:51:10',0),(0,0,'2526','H','O',5270,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-01 12:51:37','reception','2025-12-01 12:51:37',0),(0,0,'2526','H','O',5271,1,0,'2025-12-01','00:00:00','CASE',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-01 12:52:48','janvi','2025-12-01 12:52:48',0),(0,0,'2526','H','O',5272,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-01 12:54:11','janvi','2025-12-01 12:54:11',0),(0,0,'2526','H','O',5273,1,0,'2025-12-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 12:57:09','reception','2025-12-01 12:57:09',0),(0,0,'2526','H','O',5274,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-01 12:59:56','janvi','2025-12-01 12:59:56',0),(0,0,'2526','H','O',5275,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 13:00:52','reception','2025-12-01 13:00:52',0),(0,0,'2526','H','O',5276,1,0,'2025-12-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 13:04:16','reception','2025-12-01 13:04:16',0),(0,0,'2526','H','O',5277,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 13:05:28','reception','2025-12-01 13:05:28',0),(0,0,'2526','H','O',5278,1,0,'2025-12-01','00:00:00','OPWD0034',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-01 13:09:36','drashti','2025-12-01 13:09:36',0),(0,0,'2526','H','O',5279,1,0,'2025-12-01','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 13:12:32','reception','2025-12-01 13:12:32',0),(0,0,'2526','H','O',5279,2,0,'2025-12-01','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 13:12:32','reception','2025-12-01 13:12:32',0),(0,0,'2526','H','O',5279,3,0,'2025-12-01','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 13:12:32','reception','2025-12-01 13:12:32',0),(0,0,'2526','H','O',5280,1,0,'2025-12-01','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-01 13:16:34','janvi','2025-12-01 13:16:34',0),(0,0,'2526','H','O',5281,1,0,'2025-12-01','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 13:21:14','reception','2025-12-01 13:21:14',0),(0,0,'2526','H','O',5281,2,0,'2025-12-01','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 13:21:14','reception','2025-12-01 13:21:14',0),(0,0,'2526','H','O',5281,3,0,'2025-12-01','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 13:21:14','reception','2025-12-01 13:21:14',0),(0,0,'2526','H','O',5282,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 13:30:25','reception','2025-12-01 13:30:25',0),(0,0,'2526','H','O',5283,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 13:30:46','drashti','2025-12-01 13:30:46',0),(0,0,'2526','H','O',5284,1,0,'2025-12-01','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 13:38:05','reception','2025-12-01 13:38:05',0),(0,0,'2526','H','O',5285,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 13:41:09','reception','2025-12-01 13:41:09',0),(0,0,'2526','H','O',5286,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-01 13:54:31','janvi','2025-12-01 13:54:31',0),(0,0,'2526','H','O',5287,1,0,'2025-12-01','00:00:00','OPWD0023',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-01 14:16:45','janvi','2025-12-01 14:16:45',0),(0,0,'2526','H','O',5288,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-01 14:33:03','reception','2025-12-01 14:33:03',0),(0,0,'2526','H','O',5289,1,0,'2025-12-01','00:00:00','OTCG0033',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-01 14:33:45','shweta','2025-12-01 14:33:45',0),(0,0,'2526','H','O',5290,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 16:27:36','reception','2025-12-01 17:09:58',0),(0,0,'2526','H','O',5291,1,0,'2025-12-01','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-12-01 16:51:14','shweta','2025-12-01 16:51:14',0),(0,0,'2526','H','O',5292,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 16:52:23','reception','2025-12-01 16:52:23',0),(0,0,'2526','H','O',5293,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-01 16:55:41','drashti','2025-12-01 16:55:41',0),(0,0,'2526','H','O',5294,1,0,'2025-12-01','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 17:09:58','reception','2025-12-01 17:09:58',0),(0,0,'2526','H','O',5295,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 17:13:04','reception','2025-12-01 17:13:04',0),(0,0,'2526','H','O',5296,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 17:15:27','reception','2025-12-01 17:15:27',0),(0,0,'2526','H','O',5297,1,0,'2025-12-01','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 17:18:49','reception','2025-12-01 17:18:49',0),(0,0,'2526','H','O',5297,2,0,'2025-12-01','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 17:18:49','reception','2025-12-01 17:18:49',0),(0,0,'2526','H','O',5297,3,0,'2025-12-01','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 17:18:49','reception','2025-12-01 17:18:49',0),(0,0,'2526','H','O',5298,1,0,'2025-12-01','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-01 17:20:34','drashti','2025-12-01 17:20:34',0),(0,0,'2526','H','O',5299,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-01 17:22:32','shweta','2025-12-01 17:22:32',0),(0,0,'2526','H','O',5300,1,0,'2025-12-01','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-12-01 17:23:49','reception','2025-12-01 19:28:38',0),(0,0,'2526','H','O',5301,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 17:27:52','reception','2025-12-01 17:27:52',0),(0,0,'2526','H','O',5302,1,0,'2025-12-01','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-01 17:30:57','manshi','2025-12-01 17:30:57',0),(0,0,'2526','H','O',5303,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 17:31:56','drashti','2025-12-01 17:31:56',0),(0,0,'2526','H','O',5304,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-01 17:31:59','janvi','2025-12-01 17:31:59',0),(0,0,'2526','H','O',5305,1,0,'2025-12-01','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 17:33:01','reception','2025-12-01 17:33:01',0),(0,0,'2526','H','O',5306,1,0,'2025-12-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 17:34:37','reception','2025-12-01 17:34:37',0),(0,0,'2526','H','O',5307,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-01 17:35:49','janvi','2025-12-01 17:35:49',0),(0,0,'2526','H','O',5308,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 17:37:17','reception','2025-12-01 17:37:17',0),(0,0,'2526','H','O',5309,1,0,'2025-12-01','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 17:40:06','reception','2025-12-01 17:40:06',0),(0,0,'2526','H','O',5309,2,0,'2025-12-01','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 17:40:06','reception','2025-12-01 17:40:06',0),(0,0,'2526','H','O',5309,3,0,'2025-12-01','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 17:40:06','reception','2025-12-01 17:40:06',0),(0,0,'2526','H','O',5310,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-01 17:46:47','janvi','2025-12-01 17:46:47',0),(0,0,'2526','H','O',5311,1,0,'2025-12-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 17:49:54','reception','2025-12-01 17:49:54',0),(0,0,'2526','H','O',5312,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 17:51:19','reception','2025-12-01 17:51:19',0),(0,0,'2526','H','O',5313,1,0,'2025-12-01','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-01 17:51:41','manshi','2025-12-01 17:51:41',0),(0,0,'2526','H','O',5314,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 17:52:45','drashti','2025-12-01 18:55:38',0),(0,0,'2526','H','O',5315,1,0,'2025-12-01','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-01 17:59:49','manshi','2025-12-01 17:59:49',0),(0,0,'2526','H','O',5316,1,0,'2025-12-01','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-01 18:00:00','manshi','2025-12-01 18:00:00',0),(0,0,'2526','H','O',5317,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 18:02:56','drashti','2025-12-01 18:02:56',0),(0,0,'2526','H','O',5318,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-01 18:02:57','janvi','2025-12-01 18:02:57',0),(0,0,'2526','H','O',5319,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 18:05:16','reception','2025-12-01 18:05:16',0),(0,0,'2526','H','O',5320,1,0,'2025-12-01','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-01 18:05:38','janvi','2025-12-01 18:05:38',0),(0,0,'2526','H','O',5321,1,0,'2025-12-01','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-01 18:08:29','janvi','2025-12-01 18:08:29',0),(0,0,'2526','H','O',5322,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 18:09:16','reception','2025-12-01 18:09:16',0),(0,0,'2526','H','O',5323,1,0,'2025-12-01','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 18:09:55','reception','2025-12-01 18:09:55',0),(0,0,'2526','H','O',5323,2,0,'2025-12-01','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 18:09:55','reception','2025-12-01 18:09:55',0),(0,0,'2526','H','O',5324,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-01 18:11:34','drashti','2025-12-01 18:11:34',0),(0,0,'2526','H','O',5325,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 18:11:51','reception','2025-12-01 18:11:51',0),(0,0,'2526','H','O',5326,1,0,'2025-12-01','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-01 18:13:23','drashti','2025-12-01 18:13:23',0),(0,0,'2526','H','O',5327,1,0,'2025-12-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 18:13:27','reception','2025-12-01 18:13:27',0),(0,0,'2526','H','O',5328,1,0,'2025-12-01','00:00:00','XRY0017',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-01 18:13:31','manshi','2025-12-01 18:13:31',0),(0,0,'2526','H','O',5329,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 18:14:51','reception','2025-12-01 18:14:51',0),(0,0,'2526','H','O',5330,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 18:16:25','drashti','2025-12-01 18:16:25',0),(0,0,'2526','H','O',5331,1,0,'2025-12-01','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 18:16:39','reception','2025-12-01 18:16:39',0),(0,0,'2526','H','O',5332,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-01 18:19:21','janvi','2025-12-01 18:19:21',0),(0,0,'2526','H','O',5333,1,0,'2025-12-01','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 18:23:37','reception','2025-12-01 18:23:37',0),(0,0,'2526','H','O',5333,2,0,'2025-12-01','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 18:23:37','reception','2025-12-01 18:23:37',0),(0,0,'2526','H','O',5333,3,0,'2025-12-01','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-01 18:23:37','reception','2025-12-01 18:23:37',0),(0,0,'2526','H','O',5334,1,0,'2025-12-01','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-01 18:25:59','janvi','2025-12-01 18:25:59',0),(0,0,'2526','H','O',5335,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 18:26:45','drashti','2025-12-01 18:26:45',0),(0,0,'2526','H','O',5336,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 18:28:58','drashti','2025-12-01 18:28:58',0),(0,0,'2526','H','O',5337,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-01 18:30:40','janvi','2025-12-01 18:30:40',0),(0,0,'2526','H','O',5338,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 18:32:15','drashti','2025-12-01 18:32:15',0),(0,0,'2526','H','O',5339,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 18:34:35','reception','2025-12-01 18:34:35',0),(0,0,'2526','H','O',5340,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-01 18:36:26','janvi','2025-12-01 18:36:26',0),(0,0,'2526','H','O',5341,1,0,'2025-12-01','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-01 18:36:57','drashti','2025-12-01 18:36:57',0),(0,0,'2526','H','O',5342,1,0,'2025-12-01','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-01 18:38:32','janvi','2025-12-01 18:38:32',0),(0,0,'2526','H','O',5343,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 18:40:52','reception','2025-12-01 18:40:52',0),(0,0,'2526','H','O',5344,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 18:41:35','reception','2025-12-01 18:41:35',0),(0,0,'2526','H','O',5345,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-01 18:46:52','drashti','2025-12-01 18:54:14',0),(0,0,'2526','H','O',5346,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-01 18:47:06','janvi','2025-12-01 18:47:06',0),(0,0,'2526','H','O',5347,1,0,'2025-12-01','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-01 18:49:30','janvi','2025-12-01 18:49:30',0),(0,0,'2526','H','O',5348,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 18:50:01','drashti','2025-12-01 18:50:01',0),(0,0,'2526','H','O',5349,1,0,'2025-12-01','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 18:54:14','drashti','2025-12-01 18:54:14',0),(0,0,'2526','H','O',5350,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-01 18:54:23','janvi','2025-12-01 18:54:23',0),(0,0,'2526','H','O',5351,1,0,'2025-12-01','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-01 18:55:01','manshi','2025-12-01 18:55:01',0),(0,0,'2526','H','O',5352,1,0,'2025-12-01','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 18:55:38','drashti','2025-12-01 18:55:38',0),(0,0,'2526','H','O',5353,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 18:57:22','drashti','2025-12-01 18:57:22',0),(0,0,'2526','H','O',5354,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 18:57:40','reception','2025-12-01 18:57:40',0),(0,0,'2526','H','O',5355,1,0,'2025-12-01','00:00:00','CASE',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 18:58:58','drashti','2025-12-01 18:58:58',0),(0,0,'2526','H','O',5356,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 19:09:50','reception','2025-12-01 19:09:50',0),(0,0,'2526','H','O',5357,1,0,'2025-12-01','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-01 19:10:57','drashti','2025-12-01 19:10:57',0),(0,0,'2526','H','O',5358,1,0,'2025-12-01','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-01 19:11:12','janvi','2025-12-01 19:11:12',0),(0,0,'2526','H','O',5359,1,0,'2025-12-01','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-01 19:12:46','janvi','2025-12-01 19:12:46',0),(0,0,'2526','H','O',5360,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-01 19:13:57','janvi','2025-12-01 19:13:57',0),(0,0,'2526','H','O',5361,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-01 19:16:16','shweta','2025-12-01 20:22:18',0),(0,0,'2526','H','O',5362,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-01 19:17:40','reception','2025-12-01 19:17:40',0),(0,0,'2526','H','O',5363,1,0,'2025-12-01','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 19:28:38','reception','2025-12-01 19:28:38',0),(0,0,'2526','H','O',5364,1,0,'2025-12-01','00:00:00','CASE',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 19:32:23','reception','2025-12-01 19:32:23',0),(0,0,'2526','H','O',5365,1,0,'2025-12-01','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-01 19:38:34','reception','2025-12-01 19:38:34',0),(0,0,'2526','H','O',5366,1,0,'2025-12-01','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-01 19:38:36','drashti','2025-12-01 19:38:36',0),(0,0,'2526','H','O',5367,1,0,'2025-12-01','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-01 19:46:33','drashti','2025-12-01 19:46:33',0),(0,0,'2526','H','O',5368,1,0,'2025-12-01','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-01 19:56:53','reception','2025-12-01 19:56:53',0),(0,0,'2526','H','O',5369,1,0,'2025-12-01','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-01 20:21:53','reception','2025-12-01 20:21:53',0),(0,0,'2526','H','O',5370,1,0,'2025-12-01','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-01 20:22:18','shweta','2025-12-01 20:22:18',0),(0,0,'2526','H','O',5371,1,0,'2025-12-02','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 09:06:30','reception','2025-12-02 09:06:30',0),(0,0,'2526','H','O',5372,1,0,'2025-12-02','00:00:00','SURG0005',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 09:22:03','reception','2025-12-02 09:22:03',0),(0,0,'2526','H','O',5373,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-12-02 09:59:44','shweta','2025-12-02 09:59:44',0),(0,0,'2526','H','O',5374,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 10:04:54','reception','2025-12-02 10:04:54',0),(0,0,'2526','H','O',5375,1,0,'2025-12-02','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 10:06:42','reception','2025-12-02 10:06:42',0),(0,0,'2526','H','O',5376,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 10:08:47','reception','2025-12-02 10:08:47',0),(0,0,'2526','H','O',5377,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-02 10:09:01','janvi','2025-12-02 10:09:01',0),(0,0,'2526','H','O',5378,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-02 10:16:48','janvi','2025-12-02 10:16:48',0),(0,0,'2526','H','O',5379,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-02 10:23:53','reception','2025-12-02 10:23:53',0),(0,0,'2526','H','O',5380,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 10:28:49','reception','2025-12-02 10:28:49',0),(0,0,'2526','H','O',5381,1,0,'2025-12-02','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-02 10:29:07','janvi','2025-12-02 10:29:07',0),(0,0,'2526','H','O',5382,1,0,'2025-12-02','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 10:33:23','reception','2025-12-02 10:33:23',0),(0,0,'2526','H','O',5383,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-02 10:42:33','shweta','2025-12-02 10:59:30',0),(0,0,'2526','H','O',5384,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 10:42:44','reception','2025-12-02 10:42:44',0),(0,0,'2526','H','O',5385,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 10:43:17','reception','2025-12-02 10:43:17',0),(0,0,'2526','H','O',5386,1,0,'2025-12-02','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-02 10:45:44','janvi','2025-12-02 10:45:44',0),(0,0,'2526','H','O',5387,1,0,'2025-12-02','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-02 10:47:14','reception','2025-12-02 10:47:14',0),(0,0,'2526','H','O',5388,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 10:49:45','reception','2025-12-02 10:49:45',0),(0,0,'2526','H','O',5389,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-02 10:51:04','reception','2025-12-02 10:51:04',0),(0,0,'2526','H','O',5390,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 10:52:38','shweta','2025-12-02 10:52:38',0),(0,0,'2526','H','O',5391,1,0,'2025-12-02','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-12-02 10:59:30','shweta','2025-12-02 10:59:30',0),(0,0,'2526','H','O',5392,1,0,'2025-12-02','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 11:00:19','reception','2025-12-02 11:00:19',0),(0,0,'2526','H','O',5392,2,0,'2025-12-02','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 11:00:19','reception','2025-12-02 11:00:19',0),(0,0,'2526','H','O',5392,3,0,'2025-12-02','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 11:00:19','reception','2025-12-02 11:00:19',0),(0,0,'2526','H','O',5393,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 11:04:48','reception','2025-12-02 11:04:48',0),(0,0,'2526','H','O',5394,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 11:06:07','shweta','2025-12-02 11:06:07',0),(0,0,'2526','H','O',5395,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 11:07:02','shweta','2025-12-02 11:07:02',0),(0,0,'2526','H','O',5396,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-02 11:08:28','reception','2025-12-02 11:08:28',0),(0,0,'2526','H','O',5397,1,0,'2025-12-02','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-02 11:10:24','janvi','2025-12-02 11:10:24',0),(0,0,'2526','H','O',5398,1,0,'2025-12-02','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 11:11:18','reception','2025-12-02 11:11:18',0),(0,0,'2526','H','O',5398,2,0,'2025-12-02','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 11:11:18','reception','2025-12-02 11:11:18',0),(0,0,'2526','H','O',5398,3,0,'2025-12-02','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 11:11:18','reception','2025-12-02 11:11:18',0),(0,0,'2526','H','O',5399,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-02 11:13:29','janvi','2025-12-02 11:13:29',0),(0,0,'2526','H','O',5400,1,0,'2025-12-02','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 11:14:52','reception','2025-12-02 11:14:52',0),(0,0,'2526','H','O',5401,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 11:21:55','reception','2025-12-02 11:21:55',0),(0,0,'2526','H','O',5402,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 11:23:34','reception','2025-12-02 11:23:34',0),(0,0,'2526','H','O',5403,1,0,'2025-12-02','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-02 11:25:06','janvi','2025-12-02 11:25:06',0),(0,0,'2526','H','O',5404,1,0,'2025-12-02','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 11:26:08','reception','2025-12-02 11:26:08',0),(0,0,'2526','H','O',5405,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-02 11:28:13','manshi','2025-12-02 11:28:13',0),(0,0,'2526','H','O',5406,1,0,'2025-12-02','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 11:28:29','reception','2025-12-02 11:28:29',0),(0,0,'2526','H','O',5407,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-02 11:31:44','manshi','2025-12-02 11:31:44',0),(0,0,'2526','H','O',5408,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 11:34:49','reception','2025-12-02 11:34:49',0),(0,0,'2526','H','O',5409,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-02 11:35:09','janvi','2025-12-02 11:35:09',0),(0,0,'2526','H','O',5410,1,0,'2025-12-02','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 11:36:12','shweta','2025-12-02 11:36:12',0),(0,0,'2526','H','O',5411,1,0,'2025-12-02','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 11:37:11','reception','2025-12-02 11:37:11',0),(0,0,'2526','H','O',5412,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-12-02 11:41:37','shweta','2025-12-02 11:41:37',0),(0,0,'2526','H','O',5413,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-02 11:42:03','reception','2025-12-02 11:42:03',0),(0,0,'2526','H','O',5414,1,0,'2025-12-02','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-02 11:46:37','manshi','2025-12-02 11:46:37',0),(0,0,'2526','H','O',5415,1,0,'2025-12-02','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-02 11:50:13','reception','2025-12-02 11:50:13',0),(0,0,'2526','H','O',5416,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-02 11:55:20','manshi','2025-12-02 11:55:20',0),(0,0,'2526','H','O',5417,1,0,'2025-12-02','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 11:56:12','reception','2025-12-02 11:56:12',0),(0,0,'2526','H','O',5417,2,0,'2025-12-02','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 11:56:12','reception','2025-12-02 11:56:12',0),(0,0,'2526','H','O',5418,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 11:56:41','shweta','2025-12-02 11:56:41',0),(0,0,'2526','H','O',5419,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 12:00:36','reception','2025-12-02 12:00:36',0),(0,0,'2526','H','O',5420,1,0,'2025-12-02','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 12:00:50','shweta','2025-12-02 12:00:50',0),(0,0,'2526','H','O',5421,1,0,'2025-12-02','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 12:04:27','reception','2025-12-02 12:04:27',0),(0,0,'2526','H','O',5422,1,0,'2025-12-02','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-02 12:08:15','janvi','2025-12-02 12:08:15',0),(0,0,'2526','H','O',5423,1,0,'2025-12-02','00:00:00','NEU10019',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 12:09:51','reception','2025-12-02 12:09:51',0),(0,0,'2526','H','O',5423,2,0,'2025-12-02','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 12:09:51','reception','2025-12-02 12:09:51',0),(0,0,'2526','H','O',5424,1,0,'2025-12-02','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 12:13:26','reception','2025-12-02 12:13:26',0),(0,0,'2526','H','O',5425,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-02 12:20:55','reception','2025-12-02 12:20:55',0),(0,0,'2526','H','O',5426,1,0,'2025-12-02','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 12:24:44','shweta','2025-12-02 12:24:44',0),(0,0,'2526','H','O',5427,1,0,'2025-12-02','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 12:25:28','reception','2025-12-02 12:25:28',0),(0,0,'2526','H','O',5427,2,0,'2025-12-02','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 12:25:28','reception','2025-12-02 12:25:28',0),(0,0,'2526','H','O',5428,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 12:31:23','reception','2025-12-02 12:31:23',0),(0,0,'2526','H','O',5429,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-02 12:34:26','janvi','2025-12-02 12:34:26',0),(0,0,'2526','H','O',5430,1,0,'2025-12-02','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 12:38:34','reception','2025-12-02 12:38:34',0),(0,0,'2526','H','O',5431,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-02 12:50:08','reception','2025-12-02 12:50:08',0),(0,0,'2526','H','O',5432,1,0,'2025-12-02','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-02 12:50:31','janvi','2025-12-02 13:06:44',0),(0,0,'2526','H','O',5433,1,0,'2025-12-02','00:00:00','OPWD0034',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-02 12:54:11','janvi','2025-12-02 12:54:11',0),(0,0,'2526','H','O',5434,1,0,'2025-12-02','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-02 12:56:08','manshi','2025-12-02 12:56:08',0),(0,0,'2526','H','O',5435,1,0,'2025-12-02','00:00:00','XRY0045',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-02 12:58:36','manshi','2025-12-02 12:58:36',0),(0,0,'2526','H','O',5435,2,0,'2025-12-02','00:00:00','OPWD0023',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-02 12:58:36','manshi','2025-12-02 12:58:36',0),(0,0,'2526','H','O',5436,1,0,'2025-12-02','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-02 13:00:27','manshi','2025-12-02 13:00:27',0),(0,0,'2526','H','O',5437,1,0,'2025-12-02','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 13:02:09','reception','2025-12-02 13:02:09',0),(0,0,'2526','H','O',5437,2,0,'2025-12-02','00:00:00','NEU10020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 13:02:09','reception','2025-12-02 13:02:09',0),(0,0,'2526','H','O',5438,1,0,'2025-12-02','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-02 13:06:44','janvi','2025-12-02 13:06:44',0),(0,0,'2526','H','O',5439,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-02 13:08:24','janvi','2025-12-02 13:08:24',0),(0,0,'2526','H','O',5440,1,0,'2025-12-02','00:00:00','OPWD0029',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-02 13:13:03','janvi','2025-12-02 13:13:03',0),(0,0,'2526','H','O',5441,1,0,'2025-12-02','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 13:23:29','reception','2025-12-02 13:23:29',0),(0,0,'2526','H','O',5441,2,0,'2025-12-02','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 13:23:29','reception','2025-12-02 13:23:29',0),(0,0,'2526','H','O',5442,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 13:35:02','reception','2025-12-02 13:35:02',0),(0,0,'2526','H','O',5443,1,0,'2025-12-02','00:00:00','OPWD0030',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-02 13:36:30','janvi','2025-12-02 13:36:30',0),(0,0,'2526','H','O',5444,1,0,'2025-12-02','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 13:48:46','reception','2025-12-02 13:48:46',0),(0,0,'2526','H','O',5445,1,0,'2025-12-02','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-12-02 13:53:05','shweta','2025-12-02 13:53:05',0),(0,0,'2526','H','O',5446,1,0,'2025-12-02','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-02 16:15:43','reception','2025-12-02 16:15:43',0),(0,0,'2526','H','O',5446,2,0,'2025-12-02','00:00:00','OPWD0023',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-02 16:15:43','reception','2025-12-02 16:15:43',0),(0,0,'2526','H','O',5446,3,0,'2025-12-02','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-02 16:15:43','reception','2025-12-02 16:15:43',0),(0,0,'2526','H','O',5447,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-12-02 16:25:40','shweta','2025-12-02 16:25:40',0),(0,0,'2526','H','O',5448,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-02 16:51:43','reception','2025-12-02 16:51:43',0),(0,0,'2526','H','O',5449,1,0,'2025-12-02','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-02 16:54:25','reception','2025-12-02 16:54:25',0),(0,0,'2526','H','O',5450,1,0,'2025-12-02','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-02 16:55:19','reception','2025-12-02 16:55:19',0),(0,0,'2526','H','O',5451,1,0,'2025-12-02','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-12-02 17:07:10','shweta','2025-12-02 17:07:10',0),(0,0,'2526','H','O',5452,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 17:19:21','reception','2025-12-02 17:19:21',0),(0,0,'2526','H','O',5453,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 17:22:46','reception','2025-12-02 17:22:46',0),(0,0,'2526','H','O',5454,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 17:25:01','reception','2025-12-02 17:25:01',0),(0,0,'2526','H','O',5455,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-02 17:32:32','janvi','2025-12-02 17:32:32',0),(0,0,'2526','H','O',5456,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 17:34:17','shweta','2025-12-02 17:34:17',0),(0,0,'2526','H','O',5457,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 17:35:44','reception','2025-12-02 17:35:44',0),(0,0,'2526','H','O',5458,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-02 17:41:53','reception','2025-12-02 17:41:53',0),(0,0,'2526','H','O',5459,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-12-02 17:43:33','shweta','2025-12-02 17:43:33',0),(0,0,'2526','H','O',5460,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 17:47:12','reception','2025-12-02 17:47:12',0),(0,0,'2526','H','O',5461,1,0,'2025-12-02','00:00:00','OPWD0036',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 17:49:33','shweta','2025-12-02 17:49:33',0),(0,0,'2526','H','O',5462,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 17:50:35','reception','2025-12-02 17:50:35',0),(0,0,'2526','H','O',5463,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-02 17:50:37','janvi','2025-12-02 17:50:37',0),(0,0,'2526','H','O',5464,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 17:58:53','reception','2025-12-02 17:58:53',0),(0,0,'2526','H','O',5465,1,0,'2025-12-02','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 18:05:54','reception','2025-12-02 18:05:54',0),(0,0,'2526','H','O',5466,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 18:06:51','shweta','2025-12-02 18:06:51',0),(0,0,'2526','H','O',5467,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 18:07:35','reception','2025-12-02 18:07:35',0),(0,0,'2526','H','O',5468,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-02 18:09:36','janvi','2025-12-02 18:09:36',0),(0,0,'2526','H','O',5469,1,0,'2025-12-02','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-02 18:10:36','reception','2025-12-02 18:10:36',0),(0,0,'2526','H','O',5470,1,0,'2025-12-02','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 18:12:15','shweta','2025-12-02 18:12:15',0),(0,0,'2526','H','O',5470,2,0,'2025-12-02','00:00:00','OPWD0012',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 18:12:15','shweta','2025-12-02 18:12:15',0),(0,0,'2526','H','O',5471,1,0,'2025-12-02','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-02 18:19:26','reception','2025-12-02 18:19:26',0),(0,0,'2526','H','O',5472,1,0,'2025-12-02','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-02 18:21:00','janvi','2025-12-02 18:21:00',0),(0,0,'2526','H','O',5473,1,0,'2025-12-02','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-02 18:26:59','janvi','2025-12-02 18:26:59',0),(0,0,'2526','H','O',5474,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 18:34:40','shweta','2025-12-02 18:34:40',0),(0,0,'2526','H','O',5475,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 18:34:48','shweta','2025-12-02 18:34:48',0),(0,0,'2526','H','O',5476,1,0,'2025-12-02','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-02 18:37:42','janvi','2025-12-02 18:37:42',0),(0,0,'2526','H','O',5477,1,0,'2025-12-02','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 18:42:09','shweta','2025-12-02 18:42:09',0),(0,0,'2526','H','O',5478,1,0,'2025-12-02','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-02 18:44:21','janvi','2025-12-02 18:44:21',0),(0,0,'2526','H','O',5479,1,0,'2025-12-02','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 18:48:49','reception','2025-12-02 18:48:49',0),(0,0,'2526','H','O',5479,2,0,'2025-12-02','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-02 18:48:49','reception','2025-12-02 18:48:49',0),(0,0,'2526','H','O',5480,1,0,'2025-12-02','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-02 18:51:23','reception','2025-12-02 18:51:23',0),(0,0,'2526','H','O',5481,1,0,'2025-12-02','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 18:52:50','shweta','2025-12-02 18:52:50',0),(0,0,'2526','H','O',5482,1,0,'2025-12-02','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-02 18:55:34','janvi','2025-12-02 18:55:34',0),(0,0,'2526','H','O',5483,1,0,'2025-12-02','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-12-02 19:06:04','shweta','2025-12-02 19:06:04',0),(0,0,'2526','H','O',5484,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-02 19:07:12','reception','2025-12-02 19:07:12',0),(0,0,'2526','H','O',5485,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-02 19:09:42','reception','2025-12-02 19:09:42',0),(0,0,'2526','H','O',5486,1,0,'2025-12-02','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-02 19:17:54','shweta','2025-12-02 19:17:54',0),(0,0,'2526','H','O',5487,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 19:21:42','shweta','2025-12-02 19:21:42',0),(0,0,'2526','H','O',5488,1,0,'2025-12-02','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-02 19:25:14','reception','2025-12-02 19:25:14',0),(0,0,'2526','H','O',5489,1,0,'2025-12-02','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 19:30:13','shweta','2025-12-02 19:30:13',0),(0,0,'2526','H','O',5490,1,0,'2025-12-02','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 19:34:18','shweta','2025-12-02 19:34:18',0),(0,0,'2526','H','O',5491,1,0,'2025-12-02','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-02 19:45:16','shweta','2025-12-02 19:45:16',0),(0,0,'2526','H','O',5492,1,0,'2025-12-02','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-02 19:48:06','reception','2025-12-02 19:48:06',0),(0,0,'2526','H','O',5493,1,0,'2025-12-02','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-02 20:24:27','reception','2025-12-02 20:24:27',0),(0,0,'2526','H','O',5494,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 08:41:58','reception','2025-12-03 08:41:58',0),(0,0,'2526','H','O',5495,1,0,'2025-12-03','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-12-03 08:44:18','reception','2025-12-03 08:44:18',0),(0,0,'2526','H','O',5496,1,0,'2025-12-03','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-03 08:48:11','reception','2025-12-03 08:48:11',0),(0,0,'2526','H','O',5497,1,0,'2025-12-03','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 09:11:48','reception','2025-12-03 09:11:48',0),(0,0,'2526','H','O',5498,1,0,'2025-12-03','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 09:23:30','reception','2025-12-03 09:23:30',0),(0,0,'2526','H','O',5499,1,0,'2025-12-03','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-03 09:35:18','janvi','2025-12-03 09:35:18',0),(0,0,'2526','H','O',5500,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-03 09:50:27','janvi','2025-12-03 09:50:27',0),(0,0,'2526','H','O',5501,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-03 09:50:37','janvi','2025-12-03 09:50:37',0),(0,0,'2526','H','O',5502,1,0,'2025-12-03','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-03 10:09:51','janvi','2025-12-03 10:09:51',0),(0,0,'2526','H','O',5503,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 10:11:49','reception','2025-12-03 10:11:49',0),(0,0,'2526','H','O',5504,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-03 10:14:47','janvi','2025-12-03 10:14:47',0),(0,0,'2526','H','O',5505,1,0,'2025-12-03','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','manshi','2025-12-03 10:17:58','janvi','2025-12-03 10:34:10',0),(0,0,'2526','H','O',5506,1,0,'2025-12-03','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 10:24:37','reception','2025-12-03 10:24:37',0),(0,0,'2526','H','O',5507,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 10:27:08','urvashi','2025-12-03 10:27:08',0),(0,0,'2526','H','O',5508,1,0,'2025-12-03','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 10:30:29','urvashi','2025-12-03 10:30:29',0),(0,0,'2526','H','O',5509,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 10:32:21','urvashi','2025-12-03 10:32:21',0),(0,0,'2526','H','O',5510,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 10:32:37','reception','2025-12-03 10:32:37',0),(0,0,'2526','H','O',5511,1,0,'2025-12-03','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-03 10:34:10','janvi','2025-12-03 10:34:10',0),(0,0,'2526','H','O',5512,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 10:35:33','reception','2025-12-03 10:35:33',0),(0,0,'2526','H','O',5513,1,0,'2025-12-03','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-12-03 10:36:20','janvi','2025-12-03 10:36:20',0),(0,0,'2526','H','O',5514,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 10:37:29','reception','2025-12-03 10:37:29',0),(0,0,'2526','H','O',5515,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-03 10:37:53','urvashi','2025-12-03 10:37:53',0),(0,0,'2526','H','O',5516,1,0,'2025-12-03','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 10:41:29','reception','2025-12-03 10:41:29',0),(0,0,'2526','H','O',5517,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 10:42:14','urvashi','2025-12-03 10:42:14',0),(0,0,'2526','H','O',5518,1,0,'2025-12-03','00:00:00','CASE',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-03 10:59:41','janvi','2025-12-03 10:59:41',0),(0,0,'2526','H','O',5519,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-03 11:02:16','reception','2025-12-03 11:02:16',0),(0,0,'2526','H','O',5520,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-03 11:02:58','janvi','2025-12-03 11:02:58',0),(0,0,'2526','H','O',5521,1,0,'2025-12-03','00:00:00','NEU10020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 11:04:53','reception','2025-12-03 11:04:53',0),(0,0,'2526','H','O',5522,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 11:11:09','reception','2025-12-03 11:11:09',0),(0,0,'2526','H','O',5523,1,0,'2025-12-03','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-03 11:13:29','janvi','2025-12-03 11:13:29',0),(0,0,'2526','H','O',5524,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 11:13:41','urvashi','2025-12-03 11:13:41',0),(0,0,'2526','H','O',5525,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 11:14:04','reception','2025-12-03 11:14:04',0),(0,0,'2526','H','O',5526,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 11:15:10','reception','2025-12-03 11:15:10',0),(0,0,'2526','H','O',5527,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 11:16:45','urvashi','2025-12-03 11:16:45',0),(0,0,'2526','H','O',5528,1,0,'2025-12-03','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-03 11:20:30','janvi','2025-12-03 11:20:30',0),(0,0,'2526','H','O',5529,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 11:34:25','reception','2025-12-03 11:34:25',0),(0,0,'2526','H','O',5530,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-03 11:35:55','urvashi','2025-12-03 11:35:55',0),(0,0,'2526','H','O',5531,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 11:36:34','urvashi','2025-12-03 11:36:34',0),(0,0,'2526','H','O',5532,1,0,'2025-12-03','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 11:37:16','reception','2025-12-03 11:37:16',0),(0,0,'2526','H','O',5533,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 11:39:06','urvashi','2025-12-03 11:39:06',0),(0,0,'2526','H','O',5534,1,0,'2025-12-03','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 11:39:21','reception','2025-12-03 12:45:45',0),(0,0,'2526','H','O',5535,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-03 11:41:55','janvi','2025-12-03 11:41:55',0),(0,0,'2526','H','O',5536,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 11:42:48','urvashi','2025-12-03 11:42:48',0),(0,0,'2526','H','O',5537,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 11:47:32','urvashi','2025-12-03 11:47:32',0),(0,0,'2526','H','O',5538,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 11:49:51','reception','2025-12-03 11:49:51',0),(0,0,'2526','H','O',5539,1,0,'2025-12-03','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 11:52:15','reception','2025-12-03 11:52:15',0),(0,0,'2526','H','O',5540,1,0,'2025-12-03','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 11:55:37','reception','2025-12-03 11:55:37',0),(0,0,'2526','H','O',5540,2,0,'2025-12-03','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 11:55:37','reception','2025-12-03 11:55:37',0),(0,0,'2526','H','O',5540,3,0,'2025-12-03','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 11:55:37','reception','2025-12-03 11:55:37',0),(0,0,'2526','H','O',5541,1,0,'2025-12-03','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-03 11:55:55','manshi','2025-12-03 11:55:55',0),(0,0,'2526','H','O',5542,1,0,'2025-12-03','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-12-03 11:56:16','urvashi','2025-12-03 11:56:16',0),(0,0,'2526','H','O',5543,1,0,'2025-12-03','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-03 11:58:42','janvi','2025-12-03 11:58:42',0),(0,0,'2526','H','O',5544,1,0,'2025-12-03','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 11:59:58','reception','2025-12-03 11:59:58',0),(0,0,'2526','H','O',5544,2,0,'2025-12-03','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 11:59:58','reception','2025-12-03 11:59:58',0),(0,0,'2526','H','O',5544,3,0,'2025-12-03','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 11:59:58','reception','2025-12-03 11:59:58',0),(0,0,'2526','H','O',5545,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-03 12:01:08','janvi','2025-12-03 12:01:08',0),(0,0,'2526','H','O',5546,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 12:10:40','urvashi','2025-12-03 12:10:40',0),(0,0,'2526','H','O',5547,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 12:13:32','reception','2025-12-03 12:13:32',0),(0,0,'2526','H','O',5548,1,0,'2025-12-03','00:00:00','OPWD0023',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-03 12:14:24','manshi','2025-12-03 12:14:24',0),(0,0,'2526','H','O',5549,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 12:18:29','urvashi','2025-12-03 12:18:29',0),(0,0,'2526','H','O',5550,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 12:19:33','urvashi','2025-12-03 12:19:33',0),(0,0,'2526','H','O',5551,1,0,'2025-12-03','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-03 12:31:44','janvi','2025-12-03 12:31:44',0),(0,0,'2526','H','O',5552,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 12:37:30','urvashi','2025-12-03 12:37:30',0),(0,0,'2526','H','O',5553,1,0,'2025-12-03','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 12:39:27','reception','2025-12-03 12:39:27',0),(0,0,'2526','H','O',5553,2,0,'2025-12-03','00:00:00','NEU10016',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 12:39:27','reception','2025-12-03 12:39:27',0),(0,0,'2526','H','O',5554,1,0,'2025-12-03','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 12:42:40','urvashi','2025-12-03 12:42:40',0),(0,0,'2526','H','O',5555,1,0,'2025-12-03','00:00:00','CASE',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 12:45:45','reception','2025-12-03 12:45:45',0),(0,0,'2526','H','O',5556,1,0,'2025-12-03','00:00:00','CASE',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 12:46:38','reception','2025-12-03 12:46:38',0),(0,0,'2526','H','O',5557,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-03 12:47:39','janvi','2025-12-03 12:47:39',0),(0,0,'2526','H','O',5558,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 13:22:27','reception','2025-12-03 13:22:27',0),(0,0,'2526','H','O',5559,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 13:29:40','reception','2025-12-03 13:29:40',0),(0,0,'2526','H','O',5560,1,0,'2025-12-03','00:00:00','OPWD0012',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-12-03 14:05:10','shweta','2025-12-03 14:05:10',0),(0,0,'2526','H','O',5561,1,0,'2025-12-03','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-03 16:31:06','reception','2025-12-03 16:31:06',0),(0,0,'2526','H','O',5561,2,0,'2025-12-03','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-03 16:31:06','reception','2025-12-03 16:31:06',0),(0,0,'2526','H','O',5561,3,0,'2025-12-03','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 16:31:06','reception','2025-12-03 16:31:06',0),(0,0,'2526','H','O',5561,4,0,'2025-12-03','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-03 16:31:06','reception','2025-12-03 16:31:06',0),(0,0,'2526','H','O',5562,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 16:32:08','reception','2025-12-03 16:32:08',0),(0,0,'2526','H','O',5563,1,0,'2025-12-03','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-12-03 16:38:47','shweta','2025-12-03 16:38:47',0),(0,0,'2526','H','O',5564,1,0,'2025-12-03','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-03 16:39:12','reception','2025-12-03 16:39:12',0),(0,0,'2526','H','O',5565,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 17:13:32','reception','2025-12-03 17:13:32',0),(0,0,'2526','H','O',5566,1,0,'2025-12-03','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 17:15:04','reception','2025-12-03 17:15:04',0),(0,0,'2526','H','O',5566,2,0,'2025-12-03','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 17:15:04','reception','2025-12-03 17:15:04',0),(0,0,'2526','H','O',5567,1,0,'2025-12-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 17:19:32','reception','2025-12-03 17:19:32',0),(0,0,'2526','H','O',5568,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 17:21:31','reception','2025-12-03 17:21:31',0),(0,0,'2526','H','O',5569,1,0,'2025-12-03','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-03 17:23:46','urvashi','2025-12-03 17:23:46',0),(0,0,'2526','H','O',5570,1,0,'2025-12-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 17:25:22','reception','2025-12-03 17:25:22',0),(0,0,'2526','H','O',5571,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-03 17:29:21','reception','2025-12-03 17:29:21',0),(0,0,'2526','H','O',5572,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 17:30:52','reception','2025-12-03 17:30:52',0),(0,0,'2526','H','O',5573,1,0,'2025-12-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 17:33:21','reception','2025-12-03 17:33:21',0),(0,0,'2526','H','O',5574,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 17:39:19','reception','2025-12-03 17:39:19',0),(0,0,'2526','H','O',5575,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-03 17:44:09','urvashi','2025-12-03 17:44:09',0),(0,0,'2526','H','O',5576,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-03 17:49:27','manshi','2025-12-03 18:32:57',0),(0,0,'2526','H','O',5577,1,0,'2025-12-03','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 17:54:17','reception','2025-12-03 17:54:17',0),(0,0,'2526','H','O',5577,2,0,'2025-12-03','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 17:54:17','reception','2025-12-03 17:54:17',0),(0,0,'2526','H','O',5577,3,0,'2025-12-03','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 17:54:17','reception','2025-12-03 17:54:17',0),(0,0,'2526','H','O',5578,1,0,'2025-12-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 18:02:05','reception','2025-12-03 18:02:05',0),(0,0,'2526','H','O',5579,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 18:04:04','reception','2025-12-03 18:04:04',0),(0,0,'2526','H','O',5580,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 18:04:25','urvashi','2025-12-03 18:04:25',0),(0,0,'2526','H','O',5581,1,0,'2025-12-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 18:05:16','reception','2025-12-03 18:05:16',0),(0,0,'2526','H','O',5582,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-03 18:05:49','janvi','2025-12-03 18:05:49',0),(0,0,'2526','H','O',5583,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 18:06:44','urvashi','2025-12-03 18:06:44',0),(0,0,'2526','H','O',5584,1,0,'2025-12-03','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 18:08:14','urvashi','2025-12-03 18:08:14',0),(0,0,'2526','H','O',5585,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-03 18:08:32','reception','2025-12-03 18:08:32',0),(0,0,'2526','H','O',5586,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-03 18:10:25','reception','2025-12-03 18:10:25',0),(0,0,'2526','H','O',5587,1,0,'2025-12-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-03 18:11:53','urvashi','2025-12-03 18:11:53',0),(0,0,'2526','H','O',5588,1,0,'2025-12-03','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 18:13:59','reception','2025-12-03 18:13:59',0),(0,0,'2526','H','O',5588,2,0,'2025-12-03','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 18:13:59','reception','2025-12-03 18:13:59',0),(0,0,'2526','H','O',5589,1,0,'2025-12-03','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-03 18:14:40','janvi','2025-12-03 18:14:40',0),(0,0,'2526','H','O',5590,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-03 18:15:18','urvashi','2025-12-03 18:15:18',0),(0,0,'2526','H','O',5591,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-03 18:15:31','urvashi','2025-12-03 18:15:31',0),(0,0,'2526','H','O',5592,1,0,'2025-12-03','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-03 18:17:07','janvi','2025-12-03 18:17:07',0),(0,0,'2526','H','O',5593,1,0,'2025-12-03','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 18:17:31','urvashi','2025-12-03 18:17:31',0),(0,0,'2526','H','O',5594,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 18:18:58','reception','2025-12-03 18:18:58',0),(0,0,'2526','H','O',5595,1,0,'2025-12-03','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 18:20:07','urvashi','2025-12-03 18:20:07',0),(0,0,'2526','H','O',5596,1,0,'2025-12-03','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 18:20:47','reception','2025-12-03 18:20:47',0),(0,0,'2526','H','O',5596,2,0,'2025-12-03','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 18:20:47','reception','2025-12-03 18:20:47',0),(0,0,'2526','H','O',5597,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 18:21:44','urvashi','2025-12-03 18:21:44',0),(0,0,'2526','H','O',5598,1,0,'2025-12-03','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 18:27:44','reception','2025-12-03 18:27:44',0),(0,0,'2526','H','O',5598,2,0,'2025-12-03','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 18:27:44','reception','2025-12-03 18:27:44',0),(0,0,'2526','H','O',5598,3,0,'2025-12-03','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 18:27:44','reception','2025-12-03 18:27:44',0),(0,0,'2526','H','O',5599,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-03 18:28:19','janvi','2025-12-03 18:28:19',0),(0,0,'2526','H','O',5600,1,0,'2025-12-03','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-03 18:28:47','janvi','2025-12-03 18:28:47',0),(0,0,'2526','H','O',5601,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-03 18:29:20','urvashi','2025-12-03 18:29:20',0),(0,0,'2526','H','O',5602,1,0,'2025-12-03','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 18:30:16','reception','2025-12-03 18:30:16',0),(0,0,'2526','H','O',5603,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-03 18:30:35','janvi','2025-12-03 18:30:35',0),(0,0,'2526','H','O',5604,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-03 18:31:11','urvashi','2025-12-03 18:31:11',0),(0,0,'2526','H','O',5605,1,0,'2025-12-03','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-03 18:32:57','manshi','2025-12-03 18:32:57',0),(0,0,'2526','H','O',5606,1,0,'2025-12-03','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-03 18:34:13','manshi','2025-12-03 18:34:13',0),(0,0,'2526','H','O',5607,1,0,'2025-12-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 18:45:08','reception','2025-12-03 18:45:08',0),(0,0,'2526','H','O',5608,1,0,'2025-12-03','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-03 18:49:27','reception','2025-12-03 18:49:27',0),(0,0,'2526','H','O',5609,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-03 18:49:49','janvi','2025-12-03 18:49:49',0),(0,0,'2526','H','O',5610,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 18:49:55','urvashi','2025-12-03 18:58:16',0),(0,0,'2526','H','O',5611,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-03 18:51:41','urvashi','2025-12-03 18:51:41',0),(0,0,'2526','H','O',5612,1,0,'2025-12-03','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 18:55:14','reception','2025-12-03 18:55:14',0),(0,0,'2526','H','O',5613,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-03 18:56:23','janvi','2025-12-03 18:56:23',0),(0,0,'2526','H','O',5614,1,0,'2025-12-03','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-03 18:58:16','urvashi','2025-12-03 18:58:16',0),(0,0,'2526','H','O',5615,1,0,'2025-12-03','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-03 18:59:05','reception','2025-12-03 18:59:05',0),(0,0,'2526','H','O',5616,1,0,'2025-12-03','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-03 18:59:31','janvi','2025-12-03 18:59:31',0),(0,0,'2526','H','O',5617,1,0,'2025-12-03','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-03 19:01:09','urvashi','2025-12-03 19:01:09',0),(0,0,'2526','H','O',5618,1,0,'2025-12-03','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-03 19:01:11','janvi','2025-12-03 19:01:11',0),(0,0,'2526','H','O',5619,1,0,'2025-12-03','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-03 19:02:32','janvi','2025-12-03 19:02:32',0),(0,0,'2526','H','O',5620,1,0,'2025-12-03','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 19:02:56','reception','2025-12-03 19:02:56',0),(0,0,'2526','H','O',5620,2,0,'2025-12-03','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 19:02:56','reception','2025-12-03 19:02:56',0),(0,0,'2526','H','O',5620,3,0,'2025-12-03','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 19:02:56','reception','2025-12-03 19:02:56',0),(0,0,'2526','H','O',5621,1,0,'2025-12-03','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-03 19:04:00','janvi','2025-12-03 19:04:00',0),(0,0,'2526','H','O',5622,1,0,'2025-12-03','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-03 19:05:13','janvi','2025-12-03 19:05:13',0),(0,0,'2526','H','O',5623,1,0,'2025-12-03','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 19:11:59','reception','2025-12-03 19:11:59',0),(0,0,'2526','H','O',5623,2,0,'2025-12-03','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-03 19:11:59','reception','2025-12-03 19:11:59',0),(0,0,'2526','H','O',5624,1,0,'2025-12-03','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-03 19:12:22','urvashi','2025-12-03 19:12:22',0),(0,0,'2526','H','O',5625,1,0,'2025-12-03','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-12-03 19:13:18','urvashi','2025-12-03 19:13:18',0),(0,0,'2526','H','O',5626,1,0,'2025-12-03','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-03 19:15:50','manshi','2025-12-03 19:15:50',0),(0,0,'2526','H','O',5627,1,0,'2025-12-03','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-03 19:41:25','janvi','2025-12-03 19:41:25',0),(0,0,'2526','H','O',5628,1,0,'2025-12-04','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-04 08:42:34','reception','2025-12-04 08:42:34',0),(0,0,'2526','H','O',5628,2,0,'2025-12-04','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-04 08:42:34','reception','2025-12-04 08:42:34',0),(0,0,'2526','H','O',5628,3,0,'2025-12-04','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-04 08:42:34','reception','2025-12-04 08:42:34',0),(0,0,'2526','H','O',5629,1,0,'2025-12-04','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-04 08:46:13','reception','2025-12-04 08:46:13',0),(0,0,'2526','H','O',5629,2,0,'2025-12-04','00:00:00','OPWD0013',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-04 08:46:13','reception','2025-12-04 08:46:13',0),(0,0,'2526','H','O',5630,1,0,'2025-12-04','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-04 08:49:02','reception','2025-12-04 08:49:02',0),(0,0,'2526','H','O',5630,2,0,'2025-12-04','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-04 08:49:02','reception','2025-12-04 08:49:02',0),(0,0,'2526','H','O',5630,3,0,'2025-12-04','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-04 08:49:02','reception','2025-12-04 08:49:02',0),(0,0,'2526','H','O',5631,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 09:35:52','reception','2025-12-04 09:35:52',0),(0,0,'2526','H','O',5632,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-04 10:03:18','janvi','2025-12-04 10:03:18',0),(0,0,'2526','H','O',5633,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 10:19:38','reception','2025-12-04 10:19:38',0),(0,0,'2526','H','O',5634,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-12-04 10:22:53','shweta','2025-12-04 10:22:53',0),(0,0,'2526','H','O',5635,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-12-04 10:29:27','shweta','2025-12-04 10:29:27',0),(0,0,'2526','H','O',5636,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-04 10:46:49','shweta','2025-12-04 10:46:49',0),(0,0,'2526','H','O',5637,1,0,'2025-12-04','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-04 10:48:21','janvi','2025-12-04 10:48:21',0),(0,0,'2526','H','O',5638,1,0,'2025-12-04','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 10:56:32','reception','2025-12-04 10:56:32',0),(0,0,'2526','H','O',5639,1,0,'2025-12-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 11:00:12','reception','2025-12-04 11:00:12',0),(0,0,'2526','H','O',5640,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 11:02:43','reception','2025-12-04 11:02:43',0),(0,0,'2526','H','O',5641,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 11:04:59','reception','2025-12-04 11:04:59',0),(0,0,'2526','H','O',5642,1,0,'2025-12-04','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-04 11:12:50','reception','2025-12-04 11:12:50',0),(0,0,'2526','H','O',5643,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-04 11:13:07','urvashi','2025-12-04 11:13:07',0),(0,0,'2526','H','O',5644,1,0,'2025-12-04','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-04 11:16:47','urvashi','2025-12-04 12:00:05',0),(0,0,'2526','H','O',5645,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 11:17:22','reception','2025-12-04 11:17:22',0),(0,0,'2526','H','O',5646,1,0,'2025-12-04','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-04 11:19:15','janvi','2025-12-04 11:19:15',0),(0,0,'2526','H','O',5647,1,0,'2025-12-04','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 11:20:24','urvashi','2025-12-04 11:20:24',0),(0,0,'2526','H','O',5648,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 11:22:42','reception','2025-12-04 11:22:42',0),(0,0,'2526','H','O',5649,1,0,'2025-12-04','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-04 11:25:40','janvi','2025-12-04 11:25:40',0),(0,0,'2526','H','O',5650,1,0,'2025-12-04','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-04 11:31:29','urvashi','2025-12-04 11:31:29',0),(0,0,'2526','H','O',5651,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 11:33:58','urvashi','2025-12-04 11:33:58',0),(0,0,'2526','H','O',5652,1,0,'2025-12-04','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-04 11:40:24','urvashi','2025-12-04 11:40:24',0),(0,0,'2526','H','O',5653,1,0,'2025-12-04','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 11:42:16','reception','2025-12-04 11:42:16',0),(0,0,'2526','H','O',5654,1,0,'2025-12-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 11:46:48','reception','2025-12-04 11:46:48',0),(0,0,'2526','H','O',5655,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-04 11:47:57','urvashi','2025-12-04 11:47:57',0),(0,0,'2526','H','O',5656,1,0,'2025-12-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 11:49:17','reception','2025-12-04 11:49:17',0),(0,0,'2526','H','O',5657,1,0,'2025-12-04','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 11:49:24','urvashi','2025-12-04 11:49:24',0),(0,0,'2526','H','O',5658,1,0,'2025-12-04','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-04 11:51:00','manshi','2025-12-04 11:51:00',0),(0,0,'2526','H','O',5659,1,0,'2025-12-04','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-04 11:52:39','urvashi','2025-12-04 12:24:35',0),(0,0,'2526','H','O',5660,1,0,'2025-12-04','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 12:00:05','urvashi','2025-12-04 12:00:05',0),(0,0,'2526','H','O',5661,1,0,'2025-12-04','00:00:00','CASE',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 12:01:04','urvashi','2025-12-04 12:01:04',0),(0,0,'2526','H','O',5662,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 12:02:19','reception','2025-12-04 13:56:42',0),(0,0,'2526','H','O',5663,1,0,'2025-12-04','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 12:07:44','urvashi','2025-12-04 12:07:44',0),(0,0,'2526','H','O',5664,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 12:16:13','urvashi','2025-12-04 12:16:13',0),(0,0,'2526','H','O',5665,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 12:16:55','reception','2025-12-04 12:16:55',0),(0,0,'2526','H','O',5666,1,0,'2025-12-04','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 12:20:33','urvashi','2025-12-04 12:20:33',0),(0,0,'2526','H','O',5667,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 12:22:23','urvashi','2025-12-04 12:22:23',0),(0,0,'2526','H','O',5668,1,0,'2025-12-04','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-04 12:23:54','janvi','2025-12-04 12:23:54',0),(0,0,'2526','H','O',5669,1,0,'2025-12-04','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-04 12:24:35','urvashi','2025-12-04 12:24:35',0),(0,0,'2526','H','O',5670,1,0,'2025-12-04','00:00:00','OTCG0001',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-04 12:25:31','urvashi','2025-12-04 12:25:31',0),(0,0,'2526','H','O',5671,1,0,'2025-12-04','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-04 12:26:41','urvashi','2025-12-04 12:26:41',0),(0,0,'2526','H','O',5672,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 12:28:22','reception','2025-12-04 12:28:22',0),(0,0,'2526','H','O',5673,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 12:29:10','urvashi','2025-12-04 12:29:10',0),(0,0,'2526','H','O',5674,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 12:30:21','reception','2025-12-04 12:30:21',0),(0,0,'2526','H','O',5675,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-04 12:36:24','urvashi','2025-12-04 12:36:24',0),(0,0,'2526','H','O',5676,1,0,'2025-12-04','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-04 12:40:35','janvi','2025-12-04 12:40:35',0),(0,0,'2526','H','O',5677,1,0,'2025-12-04','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 12:45:00','urvashi','2025-12-04 12:51:22',0),(0,0,'2526','H','O',5678,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-04 12:47:23','janvi','2025-12-04 12:47:23',0),(0,0,'2526','H','O',5679,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-04 12:48:16','urvashi','2025-12-04 12:48:16',0),(0,0,'2526','H','O',5680,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 12:49:36','reception','2025-12-04 12:49:36',0),(0,0,'2526','H','O',5681,1,0,'2025-12-04','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 12:51:22','urvashi','2025-12-04 12:51:22',0),(0,0,'2526','H','O',5682,1,0,'2025-12-04','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-04 12:52:07','reception','2025-12-04 12:52:07',0),(0,0,'2526','H','O',5682,2,0,'2025-12-04','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-04 12:52:07','reception','2025-12-04 12:52:07',0),(0,0,'2526','H','O',5682,3,0,'2025-12-04','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-04 12:52:07','reception','2025-12-04 12:52:07',0),(0,0,'2526','H','O',5683,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 12:52:10','urvashi','2025-12-04 12:52:10',0),(0,0,'2526','H','O',5684,1,0,'2025-12-04','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 13:02:35','urvashi','2025-12-04 13:02:35',0),(0,0,'2526','H','O',5685,1,0,'2025-12-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 13:06:32','reception','2025-12-04 13:06:32',0),(0,0,'2526','H','O',5686,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-04 13:06:59','urvashi','2025-12-04 13:06:59',0),(0,0,'2526','H','O',5687,1,0,'2025-12-04','00:00:00','USG0059',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-04 13:50:14','janvi','2025-12-04 13:50:14',0),(0,0,'2526','H','O',5688,1,0,'2025-12-04','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-04 13:52:12','janvi','2025-12-04 13:52:12',0),(0,0,'2526','H','O',5689,1,0,'2025-12-04','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 13:56:42','reception','2025-12-04 13:56:42',0),(0,0,'2526','H','O',5690,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 13:58:11','reception','2025-12-04 13:58:11',0),(0,0,'2526','H','O',5691,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-04 16:09:06','reception','2025-12-04 16:09:06',0),(0,0,'2526','H','O',5692,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-12-04 16:35:31','shweta','2025-12-04 16:35:31',0),(0,0,'2526','H','O',5693,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-12-04 16:37:43','shweta','2025-12-04 16:37:43',0),(0,0,'2526','H','O',5694,1,0,'2025-12-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 16:48:57','reception','2025-12-04 16:48:57',0),(0,0,'2526','H','O',5695,1,0,'2025-12-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 16:54:40','reception','2025-12-04 16:54:40',0),(0,0,'2526','H','O',5696,1,0,'2025-12-04','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-04 17:04:56','reception','2025-12-04 17:04:56',0),(0,0,'2526','H','O',5696,2,0,'2025-12-04','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-04 17:04:56','reception','2025-12-04 17:04:56',0),(0,0,'2526','H','O',5697,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-04 17:11:32','reception','2025-12-04 17:11:32',0),(0,0,'2526','H','O',5698,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 17:24:31','reception','2025-12-04 17:24:31',0),(0,0,'2526','H','O',5699,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 17:32:06','reception','2025-12-04 17:32:06',0),(0,0,'2526','H','O',5700,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 17:34:18','reception','2025-12-04 17:34:18',0),(0,0,'2526','H','O',5701,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 17:38:31','reception','2025-12-04 17:38:31',0),(0,0,'2526','H','O',5702,1,0,'2025-12-04','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-04 17:39:14','reception','2025-12-04 17:39:14',0),(0,0,'2526','H','O',5702,2,0,'2025-12-04','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-04 17:39:14','reception','2025-12-04 17:39:14',0),(0,0,'2526','H','O',5703,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-04 17:40:04','urvashi','2025-12-04 17:40:04',0),(0,0,'2526','H','O',5704,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','HO5706','','Y','N','manshi','2025-12-04 17:40:28','manshi','2025-12-04 17:40:28',0),(0,0,'2526','H','O',5705,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 17:43:35','urvashi','2025-12-04 17:43:35',0),(0,0,'2526','H','O',5706,1,0,'2025-12-04','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','HO5704','','Y','N','manshi','2025-12-04 17:43:36','manshi','2025-12-04 17:43:36',0),(0,0,'2526','H','O',5707,1,0,'2025-12-04','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-04 17:43:45','manshi','2025-12-04 17:43:45',0),(0,0,'2526','H','O',5708,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-04 17:49:58','janvi','2025-12-04 17:49:58',0),(0,0,'2526','H','O',5709,1,0,'2025-12-04','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-04 17:53:45','reception','2025-12-04 17:53:45',0),(0,0,'2526','H','O',5709,2,0,'2025-12-04','00:00:00','NEU10020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-04 17:53:45','reception','2025-12-04 17:53:45',0),(0,0,'2526','H','O',5710,1,0,'2025-12-04','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-04 17:55:34','janvi','2025-12-04 17:55:34',0),(0,0,'2526','H','O',5710,2,0,'2025-12-04','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-04 17:55:34','janvi','2025-12-04 17:55:34',0),(0,0,'2526','H','O',5711,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 17:56:39','reception','2025-12-04 17:56:39',0),(0,0,'2526','H','O',5712,1,0,'2025-12-04','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 18:00:26','urvashi','2025-12-04 18:00:26',0),(0,0,'2526','H','O',5713,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 18:01:46','reception','2025-12-04 18:01:46',0),(0,0,'2526','H','O',5714,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-04 18:06:05','urvashi','2025-12-04 18:06:05',0),(0,0,'2526','H','O',5715,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-04 18:08:57','reception','2025-12-04 18:08:57',0),(0,0,'2526','H','O',5716,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 18:10:21','reception','2025-12-04 18:10:21',0),(0,0,'2526','H','O',5717,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 18:12:03','urvashi','2025-12-04 18:12:03',0),(0,0,'2526','H','O',5718,1,0,'2025-12-04','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-04 18:12:26','janvi','2025-12-04 18:12:26',0),(0,0,'2526','H','O',5719,1,0,'2025-12-04','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-04 18:15:42','manshi','2025-12-04 18:15:42',0),(0,0,'2526','H','O',5720,1,0,'2025-12-04','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-04 18:16:51','urvashi','2025-12-04 18:16:51',0),(0,0,'2526','H','O',5721,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-04 18:16:55','manshi','2025-12-04 18:16:55',0),(0,0,'2526','H','O',5722,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 18:23:58','urvashi','2025-12-04 18:23:58',0),(0,0,'2526','H','O',5723,1,0,'2025-12-04','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-04 18:24:17','manshi','2025-12-04 18:24:17',0),(0,0,'2526','H','O',5724,1,0,'2025-12-04','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-12-04 18:25:32','urvashi','2025-12-04 18:25:32',0),(0,0,'2526','H','O',5725,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 18:26:25','reception','2025-12-04 18:26:25',0),(0,0,'2526','H','O',5726,1,0,'2025-12-04','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-12-04 18:29:05','urvashi','2025-12-04 18:29:05',0),(0,0,'2526','H','O',5727,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-04 18:31:13','janvi','2025-12-04 18:31:13',0),(0,0,'2526','H','O',5728,1,0,'2025-12-04','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-12-04 18:34:44','urvashi','2025-12-04 18:34:44',0),(0,0,'2526','H','O',5729,1,0,'2025-12-04','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-04 18:34:45','reception','2025-12-04 18:34:45',0),(0,0,'2526','H','O',5730,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 18:36:31','urvashi','2025-12-04 18:36:31',0),(0,0,'2526','H','O',5731,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 18:42:38','reception','2025-12-04 18:42:38',0),(0,0,'2526','H','O',5732,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-04 18:45:58','reception','2025-12-04 18:45:58',0),(0,0,'2526','H','O',5733,1,0,'2025-12-04','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-04 18:46:36','janvi','2025-12-04 18:46:36',0),(0,0,'2526','H','O',5734,1,0,'2025-12-04','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-04 18:47:22','janvi','2025-12-04 18:47:22',0),(0,0,'2526','H','O',5735,1,0,'2025-12-04','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-04 18:48:29','reception','2025-12-04 18:48:29',0),(0,0,'2526','H','O',5736,1,0,'2025-12-04','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 18:58:11','reception','2025-12-04 18:58:11',0),(0,0,'2526','H','O',5737,1,0,'2025-12-04','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 18:58:24','reception','2025-12-04 18:58:24',0),(0,0,'2526','H','O',5738,1,0,'2025-12-04','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-04 18:58:44','urvashi','2025-12-04 18:58:44',0),(0,0,'2526','H','O',5739,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 19:04:02','reception','2025-12-04 19:04:02',0),(0,0,'2526','H','O',5740,1,0,'2025-12-04','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-12-04 19:07:52','urvashi','2025-12-04 19:07:52',0),(0,0,'2526','H','O',5741,1,0,'2025-12-04','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-04 19:17:59','reception','2025-12-04 19:17:59',0),(0,0,'2526','H','O',5742,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-04 19:21:19','janvi','2025-12-04 19:21:19',0),(0,0,'2526','H','O',5743,1,0,'2025-12-04','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-04 19:24:31','urvashi','2025-12-04 19:24:31',0),(0,0,'2526','H','O',5744,1,0,'2025-12-05','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-05 08:40:40','reception','2025-12-05 08:40:40',0),(0,0,'2526','H','O',5744,2,0,'2025-12-05','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-05 08:40:40','reception','2025-12-05 08:40:40',0),(0,0,'2526','H','O',5744,3,0,'2025-12-05','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 08:40:40','reception','2025-12-05 08:40:40',0),(0,0,'2526','H','O',5744,4,0,'2025-12-05','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-05 08:40:40','reception','2025-12-05 08:40:40',0),(0,0,'2526','H','O',5745,1,0,'2025-12-05','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-05 08:42:22','reception','2025-12-05 08:42:22',0),(0,0,'2526','H','O',5746,1,0,'2025-12-05','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-05 08:48:53','reception','2025-12-05 09:04:34',0),(0,0,'2526','H','O',5746,2,0,'2025-12-05','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-05 08:48:53','reception','2025-12-05 09:04:34',0),(0,0,'2526','H','O',5747,1,0,'2025-12-05','00:00:00','SURG0005',0,-1.00,800,-800,'P',0,0,-800.00,0.00,0.00,-800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-05 09:04:34','reception','2025-12-05 09:04:34',0),(0,0,'2526','H','O',5747,2,0,'2025-12-05','00:00:00','WPRC0021',0,-1.00,300,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-05 09:04:34','reception','2025-12-05 09:04:34',0),(0,0,'2526','H','O',5748,1,0,'2025-12-05','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-05 09:06:27','reception','2025-12-05 09:06:27',0),(0,0,'2526','H','O',5748,2,0,'2025-12-05','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-05 09:06:27','reception','2025-12-05 09:06:27',0),(0,0,'2526','H','O',5749,1,0,'2025-12-05','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 09:20:18','janvi','2025-12-05 09:20:18',0),(0,0,'2526','H','O',5750,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 09:39:31','reception','2025-12-05 09:39:31',0),(0,0,'2526','H','O',5751,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 09:43:32','reception','2025-12-05 09:43:32',0),(0,0,'2526','H','O',5752,1,0,'2025-12-05','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 09:50:48','reception','2025-12-05 09:50:48',0),(0,0,'2526','H','O',5753,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 09:58:23','reception','2025-12-05 09:58:23',0),(0,0,'2526','H','O',5754,1,0,'2025-12-05','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 10:08:07','janvi','2025-12-05 10:08:07',0),(0,0,'2526','H','O',5755,1,0,'2025-12-05','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 10:16:47','reception','2025-12-05 10:16:47',0),(0,0,'2526','H','O',5756,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 10:18:58','reception','2025-12-05 10:18:58',0),(0,0,'2526','H','O',5757,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 10:20:36','reception','2025-12-05 10:20:36',0),(0,0,'2526','H','O',5758,1,0,'2025-12-05','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 10:45:57','reception','2025-12-05 10:45:57',0),(0,0,'2526','H','O',5759,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-05 10:49:08','janvi','2025-12-05 10:49:08',0),(0,0,'2526','H','O',5760,1,0,'2025-12-05','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-05 10:52:10','janvi','2025-12-05 10:52:10',0),(0,0,'2526','H','O',5761,1,0,'2025-12-05','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 10:54:54','reception','2025-12-05 10:54:54',0),(0,0,'2526','H','O',5762,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-05 11:02:18','urvashi','2025-12-05 11:02:18',0),(0,0,'2526','H','O',5763,1,0,'2025-12-05','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 11:05:17','reception','2025-12-05 11:05:17',0),(0,0,'2526','H','O',5764,1,0,'2025-12-05','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-05 11:05:27','urvashi','2025-12-05 11:05:27',0),(0,0,'2526','H','O',5765,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 11:07:39','reception','2025-12-05 11:07:39',0),(0,0,'2526','H','O',5766,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-05 11:08:35','urvashi','2025-12-05 11:08:35',0),(0,0,'2526','H','O',5767,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 11:09:29','janvi','2025-12-05 11:09:29',0),(0,0,'2526','H','O',5768,1,0,'2025-12-05','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 11:09:47','reception','2025-12-05 11:09:47',0),(0,0,'2526','H','O',5769,1,0,'2025-12-05','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-05 11:10:22','urvashi','2025-12-05 11:10:22',0),(0,0,'2526','H','O',5770,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 11:11:07','reception','2025-12-05 11:11:07',0),(0,0,'2526','H','O',5771,1,0,'2025-12-05','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-05 11:11:59','urvashi','2025-12-05 11:54:58',0),(0,0,'2526','H','O',5772,1,0,'2025-12-05','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 11:18:21','reception','2025-12-05 11:18:21',0),(0,0,'2526','H','O',5772,2,0,'2025-12-05','00:00:00','NEU10020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 11:18:21','reception','2025-12-05 11:18:21',0),(0,0,'2526','H','O',5772,3,0,'2025-12-05','00:00:00','NEU10017',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 11:18:21','reception','2025-12-05 11:18:21',0),(0,0,'2526','H','O',5773,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-05 11:20:38','manshi','2025-12-05 11:20:38',0),(0,0,'2526','H','O',5774,1,0,'2025-12-05','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 11:27:17','reception','2025-12-05 11:27:17',0),(0,0,'2526','H','O',5775,1,0,'2025-12-05','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 11:28:09','janvi','2025-12-05 11:28:09',0),(0,0,'2526','H','O',5776,1,0,'2025-12-05','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-05 11:32:49','urvashi','2025-12-05 11:32:49',0),(0,0,'2526','H','O',5777,1,0,'2025-12-05','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 11:35:06','reception','2025-12-05 11:35:06',0),(0,0,'2526','H','O',5777,2,0,'2025-12-05','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 11:35:06','reception','2025-12-05 11:35:06',0),(0,0,'2526','H','O',5778,1,0,'2025-12-05','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 11:39:48','reception','2025-12-05 11:39:48',0),(0,0,'2526','H','O',5778,2,0,'2025-12-05','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 11:39:48','reception','2025-12-05 11:39:48',0),(0,0,'2526','H','O',5778,3,0,'2025-12-05','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 11:39:48','reception','2025-12-05 11:39:48',0),(0,0,'2526','H','O',5779,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-05 11:42:03','urvashi','2025-12-05 11:42:03',0),(0,0,'2526','H','O',5780,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-05 11:44:46','manshi','2025-12-05 11:44:46',0),(0,0,'2526','H','O',5781,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-05 11:44:56','manshi','2025-12-05 11:44:56',0),(0,0,'2526','H','O',5782,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-05 11:45:14','urvashi','2025-12-05 11:45:14',0),(0,0,'2526','H','O',5783,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 11:47:05','reception','2025-12-05 11:47:05',0),(0,0,'2526','H','O',5784,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 11:50:15','reception','2025-12-05 11:50:15',0),(0,0,'2526','H','O',5785,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 11:53:03','reception','2025-12-05 11:53:03',0),(0,0,'2526','H','O',5786,1,0,'2025-12-05','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-05 11:54:12','urvashi','2025-12-05 11:54:12',0),(0,0,'2526','H','O',5787,1,0,'2025-12-05','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-05 11:54:58','urvashi','2025-12-05 11:54:58',0),(0,0,'2526','H','O',5788,1,0,'2025-12-05','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 11:55:18','reception','2025-12-05 11:55:18',0),(0,0,'2526','H','O',5788,2,0,'2025-12-05','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 11:55:18','reception','2025-12-05 11:55:18',0),(0,0,'2526','H','O',5788,3,0,'2025-12-05','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 11:55:18','reception','2025-12-05 11:55:18',0),(0,0,'2526','H','O',5789,1,0,'2025-12-05','00:00:00','CASE',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-05 11:55:56','urvashi','2025-12-05 11:55:56',0),(0,0,'2526','H','O',5790,1,0,'2025-12-05','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-05 12:00:43','janvi','2025-12-05 12:00:43',0),(0,0,'2526','H','O',5791,1,0,'2025-12-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 12:07:21','reception','2025-12-05 12:07:21',0),(0,0,'2526','H','O',5792,1,0,'2025-12-05','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 12:15:22','reception','2025-12-05 12:15:22',0),(0,0,'2526','H','O',5792,2,0,'2025-12-05','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 12:15:22','reception','2025-12-05 12:15:22',0),(0,0,'2526','H','O',5792,3,0,'2025-12-05','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 12:15:22','reception','2025-12-05 12:15:22',0),(0,0,'2526','H','O',5793,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-05 12:18:41','janvi','2025-12-05 12:18:41',0),(0,0,'2526','H','O',5794,1,0,'2025-12-05','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 12:23:39','reception','2025-12-05 12:23:39',0),(0,0,'2526','H','O',5795,1,0,'2025-12-05','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 12:26:34','reception','2025-12-05 12:26:34',0),(0,0,'2526','H','O',5795,2,0,'2025-12-05','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 12:26:34','reception','2025-12-05 12:26:34',0),(0,0,'2526','H','O',5796,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-05 12:26:50','janvi','2025-12-05 12:26:50',0),(0,0,'2526','H','O',5797,1,0,'2025-12-05','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-05 12:34:13','urvashi','2025-12-05 12:34:13',0),(0,0,'2526','H','O',5798,1,0,'2025-12-05','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-05 12:37:53','urvashi','2025-12-05 12:37:53',0),(0,0,'2526','H','O',5799,1,0,'2025-12-05','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 12:43:30','reception','2025-12-05 13:13:00',0),(0,0,'2526','H','O',5800,1,0,'2025-12-05','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-05 12:47:11','urvashi','2025-12-05 12:47:11',0),(0,0,'2526','H','O',5801,1,0,'2025-12-05','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-05 12:52:13','reception','2025-12-05 12:52:13',0),(0,0,'2526','H','O',5802,1,0,'2025-12-05','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-05 12:52:20','manshi','2025-12-05 12:52:20',0),(0,0,'2526','H','O',5803,1,0,'2025-12-05','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-05 12:56:46','urvashi','2025-12-05 12:56:46',0),(0,0,'2526','H','O',5804,1,0,'2025-12-05','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 13:01:45','reception','2025-12-05 13:01:45',0),(0,0,'2526','H','O',5804,2,0,'2025-12-05','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 13:01:45','reception','2025-12-05 13:01:45',0),(0,0,'2526','H','O',5805,1,0,'2025-12-05','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-05 13:05:03','urvashi','2025-12-05 13:05:03',0),(0,0,'2526','H','O',5806,1,0,'2025-12-05','00:00:00','OPWD0023',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 13:10:41','janvi','2025-12-05 13:10:41',0),(0,0,'2526','H','O',5807,1,0,'2025-12-05','00:00:00','CASE',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 13:13:00','reception','2025-12-05 13:13:00',0),(0,0,'2526','H','O',5808,1,0,'2025-12-05','00:00:00','CASE',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 13:14:09','reception','2025-12-05 13:14:09',0),(0,0,'2526','H','O',5809,1,0,'2025-12-05','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 13:30:12','reception','2025-12-05 13:30:12',0),(0,0,'2526','H','O',5809,2,0,'2025-12-05','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 13:30:12','reception','2025-12-05 13:30:12',0),(0,0,'2526','H','O',5809,3,0,'2025-12-05','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 13:30:12','reception','2025-12-05 13:30:12',0),(0,0,'2526','H','O',5810,1,0,'2025-12-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 13:38:27','reception','2025-12-05 13:38:27',0),(0,0,'2526','H','O',5811,1,0,'2025-12-05','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 14:03:26','reception','2025-12-05 14:03:26',0),(0,0,'2526','H','O',5812,1,0,'2025-12-05','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 16:31:25','reception','2025-12-05 16:31:25',0),(0,0,'2526','H','O',5813,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-12-05 16:36:35','shweta','2025-12-05 16:36:35',0),(0,0,'2526','H','O',5814,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 16:54:40','reception','2025-12-05 16:54:40',0),(0,0,'2526','H','O',5815,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 16:57:51','janvi','2025-12-05 16:58:52',0),(0,0,'2526','H','O',5816,1,0,'2025-12-05','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 16:58:52','janvi','2025-12-05 16:58:52',0),(0,0,'2526','H','O',5817,1,0,'2025-12-05','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-12-05 17:00:27','janvi','2025-12-05 18:22:10',0),(0,0,'2526','H','O',5818,1,0,'2025-12-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 17:03:50','reception','2025-12-05 17:03:50',0),(0,0,'2526','H','O',5819,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 17:10:20','reception','2025-12-05 17:10:20',0),(0,0,'2526','H','O',5820,1,0,'2025-12-05','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 17:13:52','reception','2025-12-05 17:13:52',0),(0,0,'2526','H','O',5820,2,0,'2025-12-05','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 17:13:52','reception','2025-12-05 17:13:52',0),(0,0,'2526','H','O',5820,3,0,'2025-12-05','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 17:13:52','reception','2025-12-05 17:13:52',0),(0,0,'2526','H','O',5821,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 17:17:20','reception','2025-12-05 17:17:20',0),(0,0,'2526','H','O',5822,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 17:18:30','reception','2025-12-05 17:18:30',0),(0,0,'2526','H','O',5823,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 17:19:39','reception','2025-12-05 17:19:39',0),(0,0,'2526','H','O',5824,1,0,'2025-12-05','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 17:22:24','reception','2025-12-05 17:22:24',0),(0,0,'2526','H','O',5824,2,0,'2025-12-05','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 17:22:24','reception','2025-12-05 17:22:24',0),(0,0,'2526','H','O',5825,1,0,'2025-12-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 17:29:13','reception','2025-12-05 17:29:13',0),(0,0,'2526','H','O',5826,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-12-05 17:31:41','reception','2025-12-05 18:34:11',0),(0,0,'2526','H','O',5827,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 17:32:44','janvi','2025-12-05 17:32:44',0),(0,0,'2526','H','O',5828,1,0,'2025-12-05','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 17:35:11','reception','2025-12-05 17:35:11',0),(0,0,'2526','H','O',5829,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 17:38:29','reception','2025-12-05 17:38:29',0),(0,0,'2526','H','O',5830,1,0,'2025-12-05','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-05 17:40:39','manshi','2025-12-05 17:40:39',0),(0,0,'2526','H','O',5831,1,0,'2025-12-05','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 17:46:22','janvi','2025-12-05 17:46:22',0),(0,0,'2526','H','O',5832,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 17:54:21','reception','2025-12-05 17:54:21',0),(0,0,'2526','H','O',5833,1,0,'2025-12-05','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 17:57:04','janvi','2025-12-05 18:50:08',0),(0,0,'2526','H','O',5834,1,0,'2025-12-05','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 17:58:07','reception','2025-12-05 17:58:07',0),(0,0,'2526','H','O',5835,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-05 18:04:03','reception','2025-12-05 18:04:03',0),(0,0,'2526','H','O',5836,1,0,'2025-12-05','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-05 18:04:20','manshi','2025-12-05 18:04:20',0),(0,0,'2526','H','O',5837,1,0,'2025-12-05','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 18:12:12','reception','2025-12-05 18:12:12',0),(0,0,'2526','H','O',5838,1,0,'2025-12-05','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-05 18:12:44','manshi','2025-12-05 18:12:44',0),(0,0,'2526','H','O',5839,1,0,'2025-12-05','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-05 18:16:18','urvashi','2025-12-05 18:16:18',0),(0,0,'2526','H','O',5840,1,0,'2025-12-05','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 18:16:31','janvi','2025-12-05 18:16:31',0),(0,0,'2526','H','O',5841,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 18:17:02','reception','2025-12-05 18:17:02',0),(0,0,'2526','H','O',5842,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-05 18:19:03','urvashi','2025-12-05 18:19:03',0),(0,0,'2526','H','O',5843,1,0,'2025-12-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 18:21:18','reception','2025-12-05 18:21:18',0),(0,0,'2526','H','O',5844,1,0,'2025-12-05','00:00:00','CASE',0,-1.00,300,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-12-05 18:22:10','janvi','2025-12-05 18:22:10',0),(0,0,'2526','H','O',5845,1,0,'2025-12-05','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-05 18:23:58','urvashi','2025-12-05 18:23:58',0),(0,0,'2526','H','O',5846,1,0,'2025-12-05','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 18:26:59','janvi','2025-12-05 18:26:59',0),(0,0,'2526','H','O',5847,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-05 18:27:42','urvashi','2025-12-05 18:27:42',0),(0,0,'2526','H','O',5848,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 18:27:50','janvi','2025-12-05 18:27:50',0),(0,0,'2526','H','O',5849,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-05 18:29:17','reception','2025-12-05 18:29:17',0),(0,0,'2526','H','O',5850,1,0,'2025-12-05','00:00:00','OPWD0023',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 18:30:55','reception','2025-12-05 18:30:55',0),(0,0,'2526','H','O',5851,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 18:31:07','janvi','2025-12-05 18:31:07',0),(0,0,'2526','H','O',5852,1,0,'2025-12-05','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 18:34:11','reception','2025-12-05 18:34:11',0),(0,0,'2526','H','O',5853,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-05 18:36:55','janvi','2025-12-05 18:36:55',0),(0,0,'2526','H','O',5854,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 18:39:05','janvi','2025-12-05 18:39:05',0),(0,0,'2526','H','O',5855,1,0,'2025-12-05','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 18:41:40','janvi','2025-12-05 18:41:40',0),(0,0,'2526','H','O',5856,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-05 18:47:40','reception','2025-12-05 18:47:40',0),(0,0,'2526','H','O',5857,1,0,'2025-12-05','00:00:00','CASE',0,-1.00,300,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 18:50:08','janvi','2025-12-05 18:50:08',0),(0,0,'2526','H','O',5858,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 18:51:21','reception','2025-12-05 18:51:21',0),(0,0,'2526','H','O',5859,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-05 18:52:13','urvashi','2025-12-05 18:52:13',0),(0,0,'2526','H','O',5860,1,0,'2025-12-05','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-05 18:53:14','janvi','2025-12-05 18:53:14',0),(0,0,'2526','H','O',5861,1,0,'2025-12-05','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 18:56:13','reception','2025-12-05 18:56:13',0),(0,0,'2526','H','O',5862,1,0,'2025-12-05','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 18:58:55','reception','2025-12-05 18:58:55',0),(0,0,'2526','H','O',5862,2,0,'2025-12-05','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-05 18:58:55','reception','2025-12-05 18:58:55',0),(0,0,'2526','H','O',5863,1,0,'2025-12-05','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-05 19:05:14','urvashi','2025-12-05 19:05:14',0),(0,0,'2526','H','O',5864,1,0,'2025-12-05','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 19:06:35','janvi','2025-12-05 19:06:35',0),(0,0,'2526','H','O',5865,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-05 19:14:34','urvashi','2025-12-05 19:14:34',0),(0,0,'2526','H','O',5866,1,0,'2025-12-05','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 19:15:24','janvi','2025-12-05 19:15:24',0),(0,0,'2526','H','O',5867,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-05 19:19:42','reception','2025-12-05 19:19:42',0),(0,0,'2526','H','O',5868,1,0,'2025-12-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-05 19:22:08','reception','2025-12-05 19:45:43',0),(0,0,'2526','H','O',5869,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-05 19:23:16','reception','2025-12-05 19:23:16',0),(0,0,'2526','H','O',5870,1,0,'2025-12-05','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-05 19:27:16','urvashi','2025-12-05 19:27:16',0),(0,0,'2526','H','O',5870,2,0,'2025-12-05','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-12-05 19:27:16','urvashi','2025-12-05 19:27:16',0),(0,0,'2526','H','O',5871,1,0,'2025-12-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-05 19:27:18','urvashi','2025-12-05 19:27:18',0),(0,0,'2526','H','O',5872,1,0,'2025-12-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 19:34:54','reception','2025-12-05 19:34:54',0),(0,0,'2526','H','O',5873,1,0,'2025-12-05','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 19:36:51','janvi','2025-12-05 19:36:51',0),(0,0,'2526','H','O',5874,1,0,'2025-12-05','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 19:42:20','reception','2025-12-05 19:42:20',0),(0,0,'2526','H','O',5875,1,0,'2025-12-05','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 19:45:43','reception','2025-12-05 19:45:43',0),(0,0,'2526','H','O',5876,1,0,'2025-12-05','00:00:00','CASE',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-05 19:47:22','reception','2025-12-05 19:47:22',0),(0,0,'2526','H','O',5877,1,0,'2025-12-05','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-05 19:52:54','urvashi','2025-12-05 19:52:54',0),(0,0,'2526','H','O',5878,1,0,'2025-12-05','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 20:04:01','janvi','2025-12-05 20:04:01',0),(0,0,'2526','H','O',5879,1,0,'2025-12-05','00:00:00','OPWD0023',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-05 20:05:13','janvi','2025-12-05 20:05:13',0),(0,0,'2526','H','O',5880,1,0,'2025-12-05','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-05 20:52:29','urvashi','2025-12-05 20:52:29',0),(0,0,'2526','H','O',5880,2,0,'2025-12-05','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-05 20:52:29','urvashi','2025-12-05 20:52:29',0),(0,0,'2526','H','O',5881,1,0,'2025-12-06','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-06 08:47:29','reception','2025-12-06 08:47:29',0),(0,0,'2526','H','O',5881,2,0,'2025-12-06','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-06 08:47:29','reception','2025-12-06 08:47:29',0),(0,0,'2526','H','O',5881,3,0,'2025-12-06','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-06 08:47:29','reception','2025-12-06 08:47:29',0),(0,0,'2526','H','O',5882,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 10:01:20','reception','2025-12-06 10:01:20',0),(0,0,'2526','H','O',5883,1,0,'2025-12-06','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-12-06 10:02:36','shweta','2025-12-06 10:02:36',0),(0,0,'2526','H','O',5884,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 10:07:51','reception','2025-12-06 10:07:51',0),(0,0,'2526','H','O',5885,1,0,'2025-12-06','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-06 10:08:04','shweta','2025-12-06 10:08:04',0),(0,0,'2526','H','O',5886,1,0,'2025-12-06','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-06 10:11:49','reception','2025-12-06 10:11:49',0),(0,0,'2526','H','O',5887,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 10:19:16','reception','2025-12-06 10:19:16',0),(0,0,'2526','H','O',5888,1,0,'2025-12-06','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-06 10:26:07','janvi','2025-12-06 10:26:07',0),(0,0,'2526','H','O',5889,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 10:28:34','reception','2025-12-06 10:28:34',0),(0,0,'2526','H','O',5890,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 10:30:53','reception','2025-12-06 10:30:53',0),(0,0,'2526','H','O',5891,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 10:33:53','reception','2025-12-06 10:33:53',0),(0,0,'2526','H','O',5892,1,0,'2025-12-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-06 10:34:44','urvashi','2025-12-06 10:34:44',0),(0,0,'2526','H','O',5893,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 10:35:50','reception','2025-12-06 10:35:50',0),(0,0,'2526','H','O',5894,1,0,'2025-12-06','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-06 10:37:40','urvashi','2025-12-06 10:37:40',0),(0,0,'2526','H','O',5895,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 10:39:13','reception','2025-12-06 10:39:13',0),(0,0,'2526','H','O',5896,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 10:43:31','reception','2025-12-06 10:43:31',0),(0,0,'2526','H','O',5897,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 10:47:22','reception','2025-12-06 10:47:22',0),(0,0,'2526','H','O',5898,1,0,'2025-12-06','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-06 10:50:24','urvashi','2025-12-06 10:50:24',0),(0,0,'2526','H','O',5899,1,0,'2025-12-06','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 10:50:43','urvashi','2025-12-06 12:00:18',0),(0,0,'2526','H','O',5900,1,0,'2025-12-06','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-06 10:54:06','urvashi','2025-12-06 10:54:06',0),(0,0,'2526','H','O',5901,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 10:59:46','reception','2025-12-06 10:59:46',0),(0,0,'2526','H','O',5902,1,0,'2025-12-06','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-06 11:03:09','urvashi','2025-12-06 11:46:48',0),(0,0,'2526','H','O',5903,1,0,'2025-12-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-06 11:05:30','janvi','2025-12-06 11:05:30',0),(0,0,'2526','H','O',5904,1,0,'2025-12-06','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 11:12:40','reception','2025-12-06 11:12:40',0),(0,0,'2526','H','O',5905,1,0,'2025-12-06','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-06 11:20:57','janvi','2025-12-06 11:20:57',0),(0,0,'2526','H','O',5906,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 11:24:35','reception','2025-12-06 11:24:35',0),(0,0,'2526','H','O',5907,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 11:26:24','reception','2025-12-06 11:26:24',0),(0,0,'2526','H','O',5908,1,0,'2025-12-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-06 11:27:36','urvashi','2025-12-06 11:27:36',0),(0,0,'2526','H','O',5909,1,0,'2025-12-06','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-06 11:29:25','reception','2025-12-06 11:29:25',0),(0,0,'2526','H','O',5909,2,0,'2025-12-06','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-06 11:29:25','reception','2025-12-06 11:29:25',0),(0,0,'2526','H','O',5909,3,0,'2025-12-06','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-06 11:29:25','reception','2025-12-06 11:29:25',0),(0,0,'2526','H','O',5910,1,0,'2025-12-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-06 11:33:40','urvashi','2025-12-06 11:33:40',0),(0,0,'2526','H','O',5911,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 11:36:10','reception','2025-12-06 11:36:10',0),(0,0,'2526','H','O',5912,1,0,'2025-12-06','00:00:00','OTCG0001',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-06 11:36:51','urvashi','2025-12-06 11:36:51',0),(0,0,'2526','H','O',5913,1,0,'2025-12-06','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-06 11:37:42','reception','2025-12-06 11:37:42',0),(0,0,'2526','H','O',5913,2,0,'2025-12-06','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-06 11:37:42','reception','2025-12-06 11:37:42',0),(0,0,'2526','H','O',5914,1,0,'2025-12-06','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-06 11:40:32','janvi','2025-12-06 11:40:32',0),(0,0,'2526','H','O',5915,1,0,'2025-12-06','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-06 11:41:23','manshi','2025-12-06 11:41:23',0),(0,0,'2526','H','O',5915,2,0,'2025-12-06','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-06 11:41:23','manshi','2025-12-06 11:41:23',0),(0,0,'2526','H','O',5916,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 11:43:11','reception','2025-12-06 11:43:11',0),(0,0,'2526','H','O',5917,1,0,'2025-12-06','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-06 11:45:02','urvashi','2025-12-06 11:45:02',0),(0,0,'2526','H','O',5917,2,0,'2025-12-06','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-12-06 11:45:02','urvashi','2025-12-06 11:45:02',0),(0,0,'2526','H','O',5918,1,0,'2025-12-06','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-06 11:46:48','urvashi','2025-12-06 11:46:48',0),(0,0,'2526','H','O',5919,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-06 11:47:02','janvi','2025-12-06 11:47:02',0),(0,0,'2526','H','O',5920,1,0,'2025-12-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-06 11:48:51','urvashi','2025-12-06 11:48:51',0),(0,0,'2526','H','O',5921,1,0,'2025-12-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-06 11:50:26','urvashi','2025-12-06 11:50:26',0),(0,0,'2526','H','O',5922,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-06 11:51:09','reception','2025-12-06 13:06:05',0),(0,0,'2526','H','O',5923,1,0,'2025-12-06','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-06 11:57:03','reception','2025-12-06 11:57:03',0),(0,0,'2526','H','O',5923,2,0,'2025-12-06','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-06 11:57:03','reception','2025-12-06 11:57:03',0),(0,0,'2526','H','O',5924,1,0,'2025-12-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-06 11:59:29','urvashi','2025-12-06 11:59:29',0),(0,0,'2526','H','O',5925,1,0,'2025-12-06','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-06 12:00:18','urvashi','2025-12-06 12:00:18',0),(0,0,'2526','H','O',5926,1,0,'2025-12-06','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-06 12:01:15','reception','2025-12-06 12:01:15',0),(0,0,'2526','H','O',5927,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-06 12:20:04','manshi','2025-12-06 12:20:04',0),(0,0,'2526','H','O',5927,2,0,'2025-12-06','00:00:00','XRY0244',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-06 12:20:04','manshi','2025-12-06 12:20:04',0),(0,0,'2526','H','O',5928,1,0,'2025-12-06','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-06 12:22:24','janvi','2025-12-06 12:22:24',0),(0,0,'2526','H','O',5929,1,0,'2025-12-06','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 12:23:27','reception','2025-12-06 12:23:27',0),(0,0,'2526','H','O',5930,1,0,'2025-12-06','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-06 12:24:11','janvi','2025-12-06 12:24:11',0),(0,0,'2526','H','O',5931,1,0,'2025-12-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-06 12:24:18','urvashi','2025-12-06 12:24:18',0),(0,0,'2526','H','O',5932,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 12:24:36','reception','2025-12-06 12:24:36',0),(0,0,'2526','H','O',5933,1,0,'2025-12-06','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-06 12:26:09','janvi','2025-12-06 12:26:09',0),(0,0,'2526','H','O',5934,1,0,'2025-12-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-06 12:26:59','urvashi','2025-12-06 12:26:59',0),(0,0,'2526','H','O',5935,1,0,'2025-12-06','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-06 12:27:36','janvi','2025-12-06 12:27:36',0),(0,0,'2526','H','O',5936,1,0,'2025-12-06','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-06 12:28:30','urvashi','2025-12-06 12:28:30',0),(0,0,'2526','H','O',5937,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 12:29:49','reception','2025-12-06 12:29:49',0),(0,0,'2526','H','O',5938,1,0,'2025-12-06','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-06 12:30:47','janvi','2025-12-06 12:30:47',0),(0,0,'2526','H','O',5938,2,0,'2025-12-06','00:00:00','OPWD0013',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-06 12:30:47','janvi','2025-12-06 12:30:47',0),(0,0,'2526','H','O',5939,1,0,'2025-12-06','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-06 12:33:20','janvi','2025-12-06 12:33:20',0),(0,0,'2526','H','O',5939,2,0,'2025-12-06','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-06 12:33:20','janvi','2025-12-06 12:33:20',0),(0,0,'2526','H','O',5940,1,0,'2025-12-06','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-06 12:33:27','urvashi','2025-12-06 12:33:27',0),(0,0,'2526','H','O',5941,1,0,'2025-12-06','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 12:38:26','reception','2025-12-06 12:38:26',0),(0,0,'2526','H','O',5942,1,0,'2025-12-06','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-06 12:45:26','urvashi','2025-12-06 12:45:26',0),(0,0,'2526','H','O',5943,1,0,'2025-12-06','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-06 12:57:18','manshi','2025-12-06 12:57:18',0),(0,0,'2526','H','O',5944,1,0,'2025-12-06','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-06 12:59:43','reception','2025-12-06 12:59:43',0),(0,0,'2526','H','O',5944,2,0,'2025-12-06','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-06 12:59:43','reception','2025-12-06 12:59:43',0),(0,0,'2526','H','O',5944,3,0,'2025-12-06','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-06 12:59:43','reception','2025-12-06 12:59:43',0),(0,0,'2526','H','O',5945,1,0,'2025-12-06','00:00:00','MOPR0006',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-06 13:03:06','urvashi','2025-12-06 13:03:06',0),(0,0,'2526','H','O',5946,1,0,'2025-12-06','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-06 13:04:53','reception','2025-12-06 13:04:53',0),(0,0,'2526','H','O',5947,1,0,'2025-12-06','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-06 13:05:21','urvashi','2025-12-06 13:05:21',0),(0,0,'2526','H','O',5948,1,0,'2025-12-06','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 13:06:05','reception','2025-12-06 13:06:05',0),(0,0,'2526','H','O',5949,1,0,'2025-12-06','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-06 13:07:03','urvashi','2025-12-06 13:07:03',0),(0,0,'2526','H','O',5950,1,0,'2025-12-06','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-06 13:09:42','janvi','2025-12-06 13:09:42',0),(0,0,'2526','H','O',5950,2,0,'2025-12-06','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-06 13:09:42','janvi','2025-12-06 13:09:42',0),(0,0,'2526','H','O',5951,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 13:16:54','reception','2025-12-06 13:16:54',0),(0,0,'2526','H','O',5952,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 13:23:19','reception','2025-12-06 13:23:19',0),(0,0,'2526','H','O',5953,1,0,'2025-12-06','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-06 13:43:59','reception','2025-12-06 13:43:59',0),(0,0,'2526','H','O',5953,2,0,'2025-12-06','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-06 13:43:59','reception','2025-12-06 13:43:59',0),(0,0,'2526','H','O',5954,1,0,'2025-12-06','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 14:03:13','reception','2025-12-06 14:03:13',0),(0,0,'2526','H','O',5955,1,0,'2025-12-06','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-06 14:04:07','reception','2025-12-06 14:04:07',0),(0,0,'2526','H','O',5956,1,0,'2025-12-06','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-12-06 15:04:46','shweta','2025-12-06 15:04:46',0),(0,0,'2526','H','O',5957,1,0,'2025-12-06','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-06 16:59:26','manshi','2025-12-06 16:59:26',0),(0,0,'2526','H','O',5958,1,0,'2025-12-06','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-06 17:37:30','manshi','2025-12-06 17:37:30',0),(0,0,'2526','H','O',5959,1,0,'2025-12-06','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-06 17:37:58','reception','2025-12-06 17:37:58',0),(0,0,'2526','H','O',5960,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-06 17:46:37','manshi','2025-12-06 17:46:37',0),(0,0,'2526','H','O',5961,1,0,'2025-12-06','00:00:00','XRY0254',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-06 18:05:38','manshi','2025-12-06 18:40:36',0),(0,0,'2526','H','O',5961,2,0,'2025-12-06','00:00:00','XRY0074',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-06 18:05:38','manshi','2025-12-06 18:40:36',0),(0,0,'2526','H','O',5962,1,0,'2025-12-06','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-06 18:08:00','reception','2025-12-06 18:08:00',0),(0,0,'2526','H','O',5963,1,0,'2025-12-06','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-06 18:14:02','manshi','2025-12-06 18:14:02',0),(0,0,'2526','H','O',5964,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-06 18:26:00','manshi','2025-12-06 18:26:00',0),(0,0,'2526','H','O',5965,1,0,'2025-12-06','00:00:00','XRY0254',0,-1.00,600,-600,'P',0,0,-600.00,0.00,0.00,-600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-06 18:40:36','manshi','2025-12-06 18:40:36',0),(0,0,'2526','H','O',5965,2,0,'2025-12-06','00:00:00','XRY0074',0,-1.00,600,-600,'P',0,0,-600.00,0.00,0.00,-600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-06 18:40:36','manshi','2025-12-06 18:40:36',0),(0,0,'2526','H','O',5966,1,0,'2025-12-06','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-06 19:22:55','manshi','2025-12-06 19:22:55',0),(0,0,'2526','H','O',5967,1,0,'2025-12-06','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-06 19:23:16','manshi','2025-12-06 19:23:16',0),(0,0,'2526','H','O',5968,1,0,'2025-12-06','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-06 19:25:09','reception','2025-12-06 19:25:09',0),(0,0,'2526','H','O',5969,1,0,'2025-12-06','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-06 19:29:05','urvashi','2025-12-06 19:29:05',0),(0,0,'2526','H','O',5969,2,0,'2025-12-06','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-06 19:29:05','urvashi','2025-12-06 19:29:05',0),(0,0,'2526','H','O',5970,1,0,'2025-12-06','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-06 19:35:10','urvashi','2025-12-06 19:35:10',0),(0,0,'2526','H','O',5971,1,0,'2025-12-06','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-06 19:41:22','urvashi','2025-12-06 19:41:22',0),(0,0,'2526','H','O',5972,1,0,'2025-12-06','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-12-06 20:16:53','urvashi','2025-12-06 20:16:53',0),(0,0,'2526','H','O',5973,1,0,'2025-12-07','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-07 09:33:30','janvi','2025-12-07 09:33:30',0),(0,0,'2526','H','O',5974,1,0,'2025-12-07','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-07 09:34:38','janvi','2025-12-07 09:34:38',0),(0,0,'2526','H','O',5975,1,0,'2025-12-07','00:00:00','SURG0005',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-07 11:21:55','janvi','2025-12-07 11:21:55',0),(0,0,'2526','H','O',5976,1,0,'2025-12-07','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-07 11:38:53','janvi','2025-12-07 11:38:53',0),(0,0,'2526','H','O',5977,1,0,'2025-12-07','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-07 12:18:45','janvi','2025-12-07 12:18:45',0),(0,0,'2526','H','O',5977,2,0,'2025-12-07','00:00:00','WPRC0024',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-07 12:18:45','janvi','2025-12-07 12:18:45',0),(0,0,'2526','H','O',5978,1,0,'2025-12-07','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-07 12:46:03','janvi','2025-12-07 12:46:03',0),(0,0,'2526','H','O',5979,1,0,'2025-12-08','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-12-08 08:48:30','urvashi','2025-12-08 08:48:30',0),(0,0,'2526','H','O',5979,2,0,'2025-12-08','00:00:00','XRY0045',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-12-08 08:48:30','urvashi','2025-12-08 08:48:30',0),(0,0,'2526','H','O',5979,3,0,'2025-12-08','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-12-08 08:48:30','urvashi','2025-12-08 08:48:30',0),(0,0,'2526','H','O',5980,1,0,'2025-12-08','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-12-08 08:49:56','urvashi','2025-12-08 08:49:56',0),(0,0,'2526','H','O',5980,2,0,'2025-12-08','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','urvashi','2025-12-08 08:49:56','urvashi','2025-12-08 08:49:56',0),(0,0,'2526','H','O',5981,1,0,'2025-12-08','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-08 08:50:09','reception','2025-12-08 08:50:09',0),(0,0,'2526','H','O',5982,1,0,'2025-12-08','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-08 08:51:04','urvashi','2025-12-08 08:51:04',0),(0,0,'2526','H','O',5982,2,0,'2025-12-08','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-08 08:51:04','urvashi','2025-12-08 08:51:04',0),(0,0,'2526','H','O',5983,1,0,'2025-12-08','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-08 08:51:54','urvashi','2025-12-08 08:51:54',0),(0,0,'2526','H','O',5984,1,0,'2025-12-08','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-08 08:53:50','urvashi','2025-12-08 08:53:50',0),(0,0,'2526','H','O',5984,2,0,'2025-12-08','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-08 08:53:50','urvashi','2025-12-08 08:53:50',0),(0,0,'2526','H','O',5984,3,0,'2025-12-08','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-08 08:53:50','urvashi','2025-12-08 08:53:50',0),(0,0,'2526','H','O',5984,4,0,'2025-12-08','00:00:00','OPWD0019',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-12-08 08:53:50','urvashi','2025-12-08 08:53:50',0),(0,0,'2526','H','O',5985,1,0,'2025-12-08','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-08 08:55:03','urvashi','2025-12-08 08:55:03',0),(0,0,'2526','H','O',5986,1,0,'2025-12-08','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-08 08:56:26','urvashi','2025-12-08 08:56:26',0),(0,0,'2526','H','O',5986,2,0,'2025-12-08','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-08 08:56:26','urvashi','2025-12-08 08:56:26',0),(0,0,'2526','H','O',5987,1,0,'2025-12-08','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-08 08:58:18','urvashi','2025-12-08 08:58:18',0),(0,0,'2526','H','O',5987,2,0,'2025-12-08','00:00:00','OPWD0013',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-08 08:58:18','urvashi','2025-12-08 08:58:18',0),(0,0,'2526','H','O',5988,1,0,'2025-12-08','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-08 09:00:03','urvashi','2025-12-08 09:00:03',0),(0,0,'2526','H','O',5988,2,0,'2025-12-08','00:00:00','WPRC0049',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-12-08 09:00:03','urvashi','2025-12-08 09:00:03',0),(0,0,'2526','H','O',5988,3,0,'2025-12-08','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-08 09:00:03','urvashi','2025-12-08 09:00:03',0),(0,0,'2526','H','O',5988,4,0,'2025-12-08','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-12-08 09:00:03','urvashi','2025-12-08 09:00:03',0),(0,0,'2526','H','O',5989,1,0,'2025-12-08','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-08 09:02:31','urvashi','2025-12-08 09:02:31',0),(0,0,'2526','H','O',5989,2,0,'2025-12-08','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-08 09:02:31','urvashi','2025-12-08 09:02:31',0),(0,0,'2526','H','O',5990,1,0,'2025-12-08','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-08 09:05:12','urvashi','2025-12-08 09:05:12',0),(0,0,'2526','H','O',5990,2,0,'2025-12-08','00:00:00','OPWD0013',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-08 09:05:12','urvashi','2025-12-08 09:05:12',0),(0,0,'2526','H','O',5990,3,0,'2025-12-08','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-08 09:05:12','urvashi','2025-12-08 09:05:12',0),(0,0,'2526','H','O',5990,4,0,'2025-12-08','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-12-08 09:05:12','urvashi','2025-12-08 09:05:12',0),(0,0,'2526','H','O',5991,1,0,'2025-12-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-08 09:15:45','reception','2025-12-08 09:15:45',0),(0,0,'2526','H','O',5992,1,0,'2025-12-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-08 09:28:52','janvi','2025-12-08 09:28:52',0),(0,0,'2526','H','O',5993,1,0,'2025-12-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 09:30:50','reception','2025-12-08 09:30:50',0),(0,0,'2526','H','O',5994,1,0,'2025-12-08','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-12-08 09:35:29','janvi','2025-12-08 09:35:29',0),(0,0,'2526','H','O',5994,2,0,'2025-12-08','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-12-08 09:35:29','janvi','2025-12-08 09:35:29',0),(0,0,'2526','H','O',5995,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 09:43:39','reception','2025-12-08 09:43:39',0),(0,0,'2526','H','O',5996,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-08 09:48:30','reception','2025-12-08 09:48:30',0),(0,0,'2526','H','O',5997,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-08 09:51:27','reception','2025-12-08 09:51:27',0),(0,0,'2526','H','O',5998,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 09:58:04','drashti','2025-12-08 09:58:04',0),(0,0,'2526','H','O',5999,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 09:58:15','reception','2025-12-08 09:58:15',0),(0,0,'2526','H','O',6000,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 09:59:14','reception','2025-12-08 09:59:14',0),(0,0,'2526','H','O',6001,1,0,'2025-12-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 10:07:50','reception','2025-12-08 10:07:50',0),(0,0,'2526','H','O',6002,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 10:09:25','reception','2025-12-08 10:09:25',0),(0,0,'2526','H','O',6003,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 10:13:54','janvi','2025-12-08 10:13:54',0),(0,0,'2526','H','O',6004,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 10:20:26','reception','2025-12-08 10:20:26',0),(0,0,'2526','H','O',6005,1,0,'2025-12-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 10:21:41','reception','2025-12-08 10:21:41',0),(0,0,'2526','H','O',6006,1,0,'2025-12-08','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 10:28:02','reception','2025-12-08 10:28:02',0),(0,0,'2526','H','O',6007,1,0,'2025-12-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-08 10:32:17','reception','2025-12-08 10:32:17',0),(0,0,'2526','H','O',6008,1,0,'2025-12-08','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 10:33:00','janvi','2025-12-08 10:33:00',0),(0,0,'2526','H','O',6009,1,0,'2025-12-08','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-08 10:43:22','manshi','2025-12-08 10:43:22',0),(0,0,'2526','H','O',6010,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-08 10:44:04','drashti','2025-12-08 10:44:04',0),(0,0,'2526','H','O',6011,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-08 10:45:15','manshi','2025-12-08 10:45:15',0),(0,0,'2526','H','O',6012,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 10:50:05','drashti','2025-12-08 10:50:05',0),(0,0,'2526','H','O',6013,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 10:50:09','reception','2025-12-08 10:50:09',0),(0,0,'2526','H','O',6014,1,0,'2025-12-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-08 10:51:23','reception','2025-12-08 10:51:23',0),(0,0,'2526','H','O',6015,1,0,'2025-12-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 10:55:00','drashti','2025-12-08 10:55:00',0),(0,0,'2526','H','O',6016,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 10:56:39','reception','2025-12-08 10:56:39',0),(0,0,'2526','H','O',6017,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 10:57:56','reception','2025-12-08 10:57:56',0),(0,0,'2526','H','O',6018,1,0,'2025-12-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 10:58:12','janvi','2025-12-08 10:59:08',0),(0,0,'2526','H','O',6019,1,0,'2025-12-08','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 10:59:08','janvi','2025-12-08 10:59:08',0),(0,0,'2526','H','O',6020,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-08 10:59:53','drashti','2025-12-08 10:59:53',0),(0,0,'2526','H','O',6021,1,0,'2025-12-08','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 11:02:40','janvi','2025-12-08 11:02:40',0),(0,0,'2526','H','O',6022,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 11:04:52','reception','2025-12-08 11:04:52',0),(0,0,'2526','H','O',6023,1,0,'2025-12-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-08 11:06:51','drashti','2025-12-08 11:06:51',0),(0,0,'2526','H','O',6024,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 11:08:52','janvi','2025-12-08 11:08:52',0),(0,0,'2526','H','O',6025,1,0,'2025-12-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 11:11:57','drashti','2025-12-08 11:11:57',0),(0,0,'2526','H','O',6026,1,0,'2025-12-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-08 11:13:18','drashti','2025-12-08 11:13:18',0),(0,0,'2526','H','O',6027,1,0,'2025-12-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-08 11:13:49','reception','2025-12-08 11:13:49',0),(0,0,'2526','H','O',6028,1,0,'2025-12-08','00:00:00','XRY0370',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-08 11:16:05','manshi','2025-12-08 11:16:05',0),(0,0,'2526','H','O',6028,2,0,'2025-12-08','00:00:00','XRY0428',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-08 11:16:05','manshi','2025-12-08 11:16:05',0),(0,0,'2526','H','O',6029,1,0,'2025-12-08','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-08 11:16:58','reception','2025-12-08 11:16:58',0),(0,0,'2526','H','O',6030,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 11:18:03','reception','2025-12-08 11:18:03',0),(0,0,'2526','H','O',6031,1,0,'2025-12-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 11:18:52','reception','2025-12-08 11:18:52',0),(0,0,'2526','H','O',6031,2,0,'2025-12-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 11:18:52','reception','2025-12-08 11:18:52',0),(0,0,'2526','H','O',6031,3,0,'2025-12-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 11:18:52','reception','2025-12-08 11:18:52',0),(0,0,'2526','H','O',6032,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 11:22:13','janvi','2025-12-08 11:22:13',0),(0,0,'2526','H','O',6033,1,0,'2025-12-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 11:23:23','reception','2025-12-08 11:23:23',0),(0,0,'2526','H','O',6033,2,0,'2025-12-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 11:23:23','reception','2025-12-08 11:23:23',0),(0,0,'2526','H','O',6033,3,0,'2025-12-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 11:23:23','reception','2025-12-08 11:23:23',0),(0,0,'2526','H','O',6034,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 11:23:56','drashti','2025-12-08 11:23:56',0),(0,0,'2526','H','O',6035,1,0,'2025-12-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 11:25:30','reception','2025-12-08 11:25:30',0),(0,0,'2526','H','O',6036,1,0,'2025-12-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-08 11:27:43','drashti','2025-12-08 11:27:43',0),(0,0,'2526','H','O',6037,1,0,'2025-12-08','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 11:27:51','reception','2025-12-08 11:27:51',0),(0,0,'2526','H','O',6038,1,0,'2025-12-08','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-08 11:29:22','drashti','2025-12-08 11:29:22',0),(0,0,'2526','H','O',6039,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 11:29:36','reception','2025-12-08 11:29:36',0),(0,0,'2526','H','O',6040,1,0,'2025-12-08','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 11:30:30','janvi','2025-12-08 11:30:30',0),(0,0,'2526','H','O',6041,1,0,'2025-12-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 11:30:57','reception','2025-12-08 11:30:57',0),(0,0,'2526','H','O',6042,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 11:32:00','drashti','2025-12-08 11:32:00',0),(0,0,'2526','H','O',6043,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 11:32:27','janvi','2025-12-08 11:32:27',0),(0,0,'2526','H','O',6044,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-08 11:33:10','janvi','2025-12-08 11:33:10',0),(0,0,'2526','H','O',6045,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 11:33:52','drashti','2025-12-08 11:33:52',0),(0,0,'2526','H','O',6046,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 11:36:05','reception','2025-12-08 11:36:05',0),(0,0,'2526','H','O',6047,1,0,'2025-12-08','00:00:00','XRY0254',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-08 11:36:18','manshi','2025-12-08 11:36:18',0),(0,0,'2526','H','O',6048,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 11:36:55','reception','2025-12-08 11:36:55',0),(0,0,'2526','H','O',6049,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 11:41:48','reception','2025-12-08 11:41:48',0),(0,0,'2526','H','O',6050,1,0,'2025-12-08','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-08 11:42:36','manshi','2025-12-08 11:42:36',0),(0,0,'2526','H','O',6051,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 11:44:04','reception','2025-12-08 11:44:04',0),(0,0,'2526','H','O',6052,1,0,'2025-12-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 11:45:59','drashti','2025-12-08 11:45:59',0),(0,0,'2526','H','O',6053,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 11:49:03','reception','2025-12-08 11:49:03',0),(0,0,'2526','H','O',6054,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 11:52:36','reception','2025-12-08 11:52:36',0),(0,0,'2526','H','O',6055,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 11:53:54','drashti','2025-12-08 11:53:54',0),(0,0,'2526','H','O',6056,1,0,'2025-12-08','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 11:54:59','reception','2025-12-08 11:54:59',0),(0,0,'2526','H','O',6056,2,0,'2025-12-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 11:54:59','reception','2025-12-08 11:54:59',0),(0,0,'2526','H','O',6057,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 11:58:10','janvi','2025-12-08 11:58:10',0),(0,0,'2526','H','O',6058,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 11:58:12','drashti','2025-12-08 11:58:12',0),(0,0,'2526','H','O',6059,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-08 11:59:45','reception','2025-12-08 11:59:45',0),(0,0,'2526','H','O',6060,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-08 12:00:12','manshi','2025-12-08 12:00:12',0),(0,0,'2526','H','O',6061,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 12:00:42','drashti','2025-12-08 12:00:42',0),(0,0,'2526','H','O',6062,1,0,'2025-12-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 12:01:52','reception','2025-12-08 12:01:52',0),(0,0,'2526','H','O',6062,2,0,'2025-12-08','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 12:01:52','reception','2025-12-08 12:01:52',0),(0,0,'2526','H','O',6063,1,0,'2025-12-08','00:00:00','OPWD0023',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-08 12:02:53','manshi','2025-12-08 12:02:53',0),(0,0,'2526','H','O',6064,1,0,'2025-12-08','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-08 12:04:48','drashti','2025-12-08 12:04:48',0),(0,0,'2526','H','O',6065,1,0,'2025-12-08','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 12:05:20','reception','2025-12-08 12:05:20',0),(0,0,'2526','H','O',6066,1,0,'2025-12-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-08 12:12:52','manshi','2025-12-08 12:12:52',0),(0,0,'2526','H','O',6066,2,0,'2025-12-08','00:00:00','XRY0244',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-08 12:12:52','manshi','2025-12-08 12:12:52',0),(0,0,'2526','H','O',6067,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 12:13:33','reception','2025-12-08 12:13:33',0),(0,0,'2526','H','O',6068,1,0,'2025-12-08','00:00:00','XRY0390',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-08 12:16:20','manshi','2025-12-08 12:16:20',0),(0,0,'2526','H','O',6069,1,0,'2025-12-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 12:18:05','reception','2025-12-08 12:18:05',0),(0,0,'2526','H','O',6070,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 12:19:10','reception','2025-12-08 12:19:10',0),(0,0,'2526','H','O',6071,1,0,'2025-12-08','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-08 12:20:23','drashti','2025-12-08 12:20:23',0),(0,0,'2526','H','O',6071,2,0,'2025-12-08','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-08 12:20:23','drashti','2025-12-08 12:20:23',0),(0,0,'2526','H','O',6071,3,0,'2025-12-08','00:00:00','OPWD0019',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-08 12:20:23','drashti','2025-12-08 12:20:23',0),(0,0,'2526','H','O',6071,4,0,'2025-12-08','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-08 12:20:23','drashti','2025-12-08 12:20:23',0),(0,0,'2526','H','O',6072,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-08 12:20:31','janvi','2025-12-08 12:20:31',0),(0,0,'2526','H','O',6072,2,0,'2025-12-08','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-08 12:20:31','janvi','2025-12-08 12:20:31',0),(0,0,'2526','H','O',6073,1,0,'2025-12-08','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-08 12:22:13','manshi','2025-12-08 12:22:13',0),(0,0,'2526','H','O',6074,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 12:24:44','drashti','2025-12-08 12:24:44',0),(0,0,'2526','H','O',6075,1,0,'2025-12-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 12:25:03','reception','2025-12-08 12:25:03',0),(0,0,'2526','H','O',6075,2,0,'2025-12-08','00:00:00','NEU10019',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 12:25:03','reception','2025-12-08 12:25:03',0),(0,0,'2526','H','O',6075,3,0,'2025-12-08','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 12:25:03','reception','2025-12-08 12:25:03',0),(0,0,'2526','H','O',6076,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 12:29:49','drashti','2025-12-08 12:29:49',0),(0,0,'2526','H','O',6077,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 12:33:24','reception','2025-12-08 12:33:24',0),(0,0,'2526','H','O',6078,1,0,'2025-12-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 12:33:54','drashti','2025-12-08 12:33:54',0),(0,0,'2526','H','O',6079,1,0,'2025-12-08','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 12:37:05','reception','2025-12-08 12:37:05',0),(0,0,'2526','H','O',6080,1,0,'2025-12-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 12:39:39','drashti','2025-12-08 12:39:39',0),(0,0,'2526','H','O',6080,2,0,'2025-12-08','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 12:39:39','drashti','2025-12-08 12:39:39',0),(0,0,'2526','H','O',6080,3,0,'2025-12-08','00:00:00','OPWD0019',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-08 12:39:39','drashti','2025-12-08 12:39:39',0),(0,0,'2526','H','O',6080,4,0,'2025-12-08','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 12:39:39','drashti','2025-12-08 12:39:39',0),(0,0,'2526','H','O',6081,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-08 12:40:39','janvi','2025-12-08 12:40:39',0),(0,0,'2526','H','O',6082,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-08 12:40:55','janvi','2025-12-08 12:40:55',0),(0,0,'2526','H','O',6083,1,0,'2025-12-08','00:00:00','OTCG0033',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 12:42:14','drashti','2025-12-08 12:42:14',0),(0,0,'2526','H','O',6084,1,0,'2025-12-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-08 12:42:52','janvi','2025-12-08 12:42:52',0),(0,0,'2526','H','O',6085,1,0,'2025-12-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 12:48:23','reception','2025-12-08 12:48:23',0),(0,0,'2526','H','O',6085,2,0,'2025-12-08','00:00:00','NEU10019',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 12:48:23','reception','2025-12-08 12:48:23',0),(0,0,'2526','H','O',6085,3,0,'2025-12-08','00:00:00','NEU10020',0,1.00,1800,1800,'P',0,0,1800.00,0.00,0.00,1800.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 12:48:23','reception','2025-12-08 12:48:23',0),(0,0,'2526','H','O',6086,1,0,'2025-12-08','00:00:00','MOPR0006',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 13:01:15','janvi','2025-12-08 13:01:15',0),(0,0,'2526','H','O',6087,1,0,'2025-12-08','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-08 13:04:54','janvi','2025-12-08 13:04:54',0),(0,0,'2526','H','O',6088,1,0,'2025-12-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 13:06:12','reception','2025-12-08 13:06:12',0),(0,0,'2526','H','O',6088,2,0,'2025-12-08','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 13:06:12','reception','2025-12-08 13:06:12',0),(0,0,'2526','H','O',6089,1,0,'2025-12-08','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-08 13:08:37','manshi','2025-12-08 13:21:28',0),(0,0,'2526','H','O',6090,1,0,'2025-12-08','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-08 13:18:05','manshi','2025-12-08 13:18:05',0),(0,0,'2526','H','O',6091,1,0,'2025-12-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-08 13:19:44','drashti','2025-12-08 13:19:44',0),(0,0,'2526','H','O',6092,1,0,'2025-12-08','00:00:00','CASE',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-08 13:21:28','manshi','2025-12-08 13:21:28',0),(0,0,'2526','H','O',6093,1,0,'2025-12-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 13:29:58','reception','2025-12-08 13:29:58',0),(0,0,'2526','H','O',6093,2,0,'2025-12-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 13:29:58','reception','2025-12-08 13:29:58',0),(0,0,'2526','H','O',6093,3,0,'2025-12-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 13:29:58','reception','2025-12-08 13:29:58',0),(0,0,'2526','H','O',6094,1,0,'2025-12-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-08 13:32:48','drashti','2025-12-08 13:32:48',0),(0,0,'2526','H','O',6095,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 13:33:50','reception','2025-12-08 13:33:50',0),(0,0,'2526','H','O',6096,1,0,'2025-12-08','00:00:00','XRY0145',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-08 13:44:26','janvi','2025-12-08 13:44:26',0),(0,0,'2526','H','O',6097,1,0,'2025-12-08','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-08 14:18:02','janvi','2025-12-08 14:18:02',0),(0,0,'2526','H','O',6097,2,0,'2025-12-08','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-08 14:18:02','janvi','2025-12-08 14:18:02',0),(0,0,'2526','H','O',6098,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 14:29:33','janvi','2025-12-08 14:29:33',0),(0,0,'2526','H','O',6099,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-08 15:59:49','urvashi','2025-12-08 15:59:49',0),(0,0,'2526','H','O',6100,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 16:37:32','reception','2025-12-08 16:37:32',0),(0,0,'2526','H','O',6101,1,0,'2025-12-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 16:47:42','reception','2025-12-08 16:47:42',0),(0,0,'2526','H','O',6101,2,0,'2025-12-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 16:47:42','reception','2025-12-08 16:47:42',0),(0,0,'2526','H','O',6101,3,0,'2025-12-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 16:47:42','reception','2025-12-08 16:47:42',0),(0,0,'2526','H','O',6102,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-08 16:48:54','urvashi','2025-12-08 16:48:54',0),(0,0,'2526','H','O',6103,1,0,'2025-12-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 16:54:52','reception','2025-12-08 16:54:52',0),(0,0,'2526','H','O',6104,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-08 16:57:11','reception','2025-12-08 16:57:11',0),(0,0,'2526','H','O',6105,1,0,'2025-12-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 17:00:12','reception','2025-12-08 17:00:12',0),(0,0,'2526','H','O',6106,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-08 17:03:53','manshi','2025-12-08 17:03:53',0),(0,0,'2526','H','O',6107,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-12-08 17:05:44','priyanshi','2025-12-08 17:05:44',0),(0,0,'2526','H','O',6108,1,0,'2025-12-08','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 17:08:14','reception','2025-12-08 17:08:14',0),(0,0,'2526','H','O',6109,1,0,'2025-12-08','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 17:08:39','reception','2025-12-08 17:08:39',0),(0,0,'2526','H','O',6110,1,0,'2025-12-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 17:10:11','reception','2025-12-08 17:10:11',0),(0,0,'2526','H','O',6111,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-08 17:15:33','reception','2025-12-08 17:15:33',0),(0,0,'2526','H','O',6112,1,0,'2025-12-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 17:15:38','drashti','2025-12-08 17:15:38',0),(0,0,'2526','H','O',6113,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 17:20:45','reception','2025-12-08 17:20:45',0),(0,0,'2526','H','O',6114,1,0,'2025-12-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-08 17:20:48','priyanshi','2025-12-08 17:20:48',0),(0,0,'2526','H','O',6115,1,0,'2025-12-08','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 17:23:29','reception','2025-12-08 17:23:29',0),(0,0,'2526','H','O',6116,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-08 17:24:02','priyanshi','2025-12-08 17:24:02',0),(0,0,'2526','H','O',6117,1,0,'2025-12-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 17:24:59','reception','2025-12-08 17:24:59',0),(0,0,'2526','H','O',6117,2,0,'2025-12-08','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 17:24:59','reception','2025-12-08 17:24:59',0),(0,0,'2526','H','O',6118,1,0,'2025-12-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-08 17:27:20','priyanshi','2025-12-08 17:27:20',0),(0,0,'2526','H','O',6119,1,0,'2025-12-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-08 17:27:32','priyanshi','2025-12-08 17:27:32',0),(0,0,'2526','H','O',6120,1,0,'2025-12-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 17:28:38','reception','2025-12-08 17:28:38',0),(0,0,'2526','H','O',6120,2,0,'2025-12-08','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 17:28:38','reception','2025-12-08 17:28:38',0),(0,0,'2526','H','O',6121,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-08 17:42:49','manshi','2025-12-08 17:42:49',0),(0,0,'2526','H','O',6122,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 17:43:57','janvi','2025-12-08 17:43:57',0),(0,0,'2526','H','O',6123,1,0,'2025-12-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 17:44:05','reception','2025-12-08 17:44:05',0),(0,0,'2526','H','O',6123,2,0,'2025-12-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 17:44:05','reception','2025-12-08 17:44:05',0),(0,0,'2526','H','O',6124,1,0,'2025-12-08','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 17:53:09','reception','2025-12-08 17:53:09',0),(0,0,'2526','H','O',6124,2,0,'2025-12-08','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 17:53:09','reception','2025-12-08 17:53:09',0),(0,0,'2526','H','O',6124,3,0,'2025-12-08','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-08 17:53:09','reception','2025-12-08 17:53:09',0),(0,0,'2526','H','O',6125,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 17:55:16','drashti','2025-12-08 17:55:16',0),(0,0,'2526','H','O',6126,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 18:07:25','drashti','2025-12-08 18:07:25',0),(0,0,'2526','H','O',6127,1,0,'2025-12-08','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 18:10:44','janvi','2025-12-08 18:10:44',0),(0,0,'2526','H','O',6128,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 18:11:49','drashti','2025-12-08 18:11:49',0),(0,0,'2526','H','O',6129,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 18:13:36','janvi','2025-12-08 18:13:36',0),(0,0,'2526','H','O',6130,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 18:16:30','drashti','2025-12-08 18:16:30',0),(0,0,'2526','H','O',6131,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 18:21:38','reception','2025-12-08 18:21:38',0),(0,0,'2526','H','O',6132,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 18:22:29','janvi','2025-12-08 18:22:29',0),(0,0,'2526','H','O',6133,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 18:24:01','drashti','2025-12-08 18:24:01',0),(0,0,'2526','H','O',6134,1,0,'2025-12-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-08 18:25:58','manshi','2025-12-08 18:25:58',0),(0,0,'2526','H','O',6135,1,0,'2025-12-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-08 18:28:14','manshi','2025-12-08 18:46:06',0),(0,0,'2526','H','O',6136,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 18:29:46','janvi','2025-12-08 18:29:46',0),(0,0,'2526','H','O',6137,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 18:30:14','reception','2025-12-08 18:55:13',0),(0,0,'2526','H','O',6138,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-08 18:31:00','manshi','2025-12-08 18:31:00',0),(0,0,'2526','H','O',6139,1,0,'2025-12-08','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 18:34:02','janvi','2025-12-08 18:34:02',0),(0,0,'2526','H','O',6140,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 18:39:42','reception','2025-12-08 18:39:42',0),(0,0,'2526','H','O',6141,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 18:40:53','reception','2025-12-08 18:40:53',0),(0,0,'2526','H','O',6142,1,0,'2025-12-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-08 18:42:47','janvi','2025-12-08 18:42:47',0),(0,0,'2526','H','O',6143,1,0,'2025-12-08','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-08 18:43:23','manshi','2025-12-08 18:43:23',0),(0,0,'2526','H','O',6144,1,0,'2025-12-08','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-08 18:46:06','manshi','2025-12-08 18:46:06',0),(0,0,'2526','H','O',6145,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 18:46:16','reception','2025-12-08 18:46:16',0),(0,0,'2526','H','O',6146,1,0,'2025-12-08','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-08 18:46:21','drashti','2025-12-08 18:46:21',0),(0,0,'2526','H','O',6147,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 18:52:11','reception','2025-12-08 18:52:11',0),(0,0,'2526','H','O',6148,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 18:52:30','drashti','2025-12-08 19:09:26',0),(0,0,'2526','H','O',6149,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 18:53:13','reception','2025-12-08 18:53:13',0),(0,0,'2526','H','O',6150,1,0,'2025-12-08','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 18:55:13','reception','2025-12-08 18:55:13',0),(0,0,'2526','H','O',6151,1,0,'2025-12-08','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 18:56:05','janvi','2025-12-08 18:56:05',0),(0,0,'2526','H','O',6152,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 18:56:43','reception','2025-12-08 18:56:43',0),(0,0,'2526','H','O',6153,1,0,'2025-12-08','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-08 19:00:12','drashti','2025-12-08 19:00:12',0),(0,0,'2526','H','O',6154,1,0,'2025-12-08','00:00:00','OPWD0023',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-08 19:01:59','manshi','2025-12-08 19:01:59',0),(0,0,'2526','H','O',6155,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 19:06:41','drashti','2025-12-08 19:06:41',0),(0,0,'2526','H','O',6156,1,0,'2025-12-08','00:00:00','XRY0390',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-08 19:06:46','manshi','2025-12-08 19:06:46',0),(0,0,'2526','H','O',6157,1,0,'2025-12-08','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 19:09:26','drashti','2025-12-08 19:09:26',0),(0,0,'2526','H','O',6158,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 19:10:51','reception','2025-12-08 19:10:51',0),(0,0,'2526','H','O',6159,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-08 19:19:23','janvi','2025-12-08 19:19:23',0),(0,0,'2526','H','O',6160,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 19:24:41','reception','2025-12-08 19:24:41',0),(0,0,'2526','H','O',6161,1,0,'2025-12-08','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-08 19:26:07','manshi','2025-12-08 19:26:07',0),(0,0,'2526','H','O',6162,1,0,'2025-12-08','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-08 19:29:28','manshi','2025-12-08 19:29:28',0),(0,0,'2526','H','O',6163,1,0,'2025-12-08','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 19:31:55','drashti','2025-12-08 19:31:55',0),(0,0,'2526','H','O',6164,1,0,'2025-12-08','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 19:33:23','janvi','2025-12-08 19:33:23',0),(0,0,'2526','H','O',6165,1,0,'2025-12-08','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-08 19:39:11','janvi','2025-12-08 19:39:11',0),(0,0,'2526','H','O',6166,1,0,'2025-12-08','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-08 19:46:52','drashti','2025-12-08 19:46:52',0),(0,0,'2526','H','O',6167,1,0,'2025-12-08','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-08 19:53:49','manshi','2025-12-08 19:53:49',0),(0,0,'2526','H','O',6168,1,0,'2025-12-08','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-08 20:14:36','reception','2025-12-08 20:14:36',0),(0,0,'2526','H','O',6169,1,0,'2025-12-08','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','drashti','2025-12-08 20:21:35','drashti','2025-12-08 20:21:35',0),(0,0,'2526','H','O',6169,2,0,'2025-12-08','00:00:00','XRY0449',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-08 20:21:35','drashti','2025-12-08 20:21:35',0),(0,0,'2526','H','O',6169,3,0,'2025-12-08','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','drashti','2025-12-08 20:21:35','drashti','2025-12-08 20:21:35',0),(0,0,'2526','H','O',6170,1,0,'2025-12-08','00:00:00','WPRC0046',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-08 20:59:04','shweta','2025-12-08 20:59:04',0),(0,0,'2526','H','O',6171,1,0,'2025-12-09','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-09 08:57:44','reception','2025-12-09 08:57:44',0),(0,0,'2526','H','O',6171,2,0,'2025-12-09','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-09 08:57:44','reception','2025-12-09 08:57:44',0),(0,0,'2526','H','O',6171,3,0,'2025-12-09','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-09 08:57:44','reception','2025-12-09 08:57:44',0),(0,0,'2526','H','O',6172,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 09:51:21','reception','2025-12-09 09:51:21',0),(0,0,'2526','H','O',6173,1,0,'2025-12-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 09:55:09','reception','2025-12-09 09:55:09',0),(0,0,'2526','H','O',6173,2,0,'2025-12-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 09:55:09','reception','2025-12-09 09:55:09',0),(0,0,'2526','H','O',6173,3,0,'2025-12-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 09:55:09','reception','2025-12-09 09:55:09',0),(0,0,'2526','H','O',6174,1,0,'2025-12-09','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-09 10:04:20','reception','2025-12-09 10:04:20',0),(0,0,'2526','H','O',6175,1,0,'2025-12-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 10:06:20','reception','2025-12-09 10:06:20',0),(0,0,'2526','H','O',6176,1,0,'2025-12-09','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-09 10:06:25','janvi','2025-12-09 10:06:25',0),(0,0,'2526','H','O',6177,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 10:10:31','reception','2025-12-09 10:10:31',0),(0,0,'2526','H','O',6178,1,0,'2025-12-09','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-09 10:10:53','manshi','2025-12-09 10:10:53',0),(0,0,'2526','H','O',6179,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 10:11:28','reception','2025-12-09 10:11:28',0),(0,0,'2526','H','O',6180,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 10:13:08','reception','2025-12-09 11:40:41',0),(0,0,'2526','H','O',6181,1,0,'2025-12-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 10:14:37','reception','2025-12-09 10:14:37',0),(0,0,'2526','H','O',6182,1,0,'2025-12-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 10:17:03','drashti','2025-12-09 10:17:03',0),(0,0,'2526','H','O',6183,1,0,'2025-12-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 10:17:22','reception','2025-12-09 10:17:22',0),(0,0,'2526','H','O',6184,1,0,'2025-12-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 10:19:36','reception','2025-12-09 10:19:36',0),(0,0,'2526','H','O',6185,1,0,'2025-12-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 10:26:42','reception','2025-12-09 10:26:42',0),(0,0,'2526','H','O',6186,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 10:29:16','reception','2025-12-09 10:29:16',0),(0,0,'2526','H','O',6187,1,0,'2025-12-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 10:35:33','drashti','2025-12-09 10:35:33',0),(0,0,'2526','H','O',6188,1,0,'2025-12-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 10:42:06','reception','2025-12-09 10:42:06',0),(0,0,'2526','H','O',6189,1,0,'2025-12-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 10:44:20','reception','2025-12-09 10:44:20',0),(0,0,'2526','H','O',6190,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 10:47:52','reception','2025-12-09 10:47:52',0),(0,0,'2526','H','O',6191,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 10:50:59','reception','2025-12-09 10:50:59',0),(0,0,'2526','H','O',6192,1,0,'2025-12-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-09 10:51:56','drashti','2025-12-09 10:51:56',0),(0,0,'2526','H','O',6193,1,0,'2025-12-09','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-09 10:52:19','manshi','2025-12-09 10:52:19',0),(0,0,'2526','H','O',6194,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 10:53:16','reception','2025-12-09 10:53:16',0),(0,0,'2526','H','O',6195,1,0,'2025-12-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 10:58:04','reception','2025-12-09 10:58:04',0),(0,0,'2526','H','O',6196,1,0,'2025-12-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 10:59:29','drashti','2025-12-09 10:59:29',0),(0,0,'2526','H','O',6197,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 10:59:54','reception','2025-12-09 10:59:54',0),(0,0,'2526','H','O',6198,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 11:01:34','reception','2025-12-09 11:01:34',0),(0,0,'2526','H','O',6199,1,0,'2025-12-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 11:03:14','drashti','2025-12-09 11:03:14',0),(0,0,'2526','H','O',6200,1,0,'2025-12-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 11:04:28','reception','2025-12-09 11:04:28',0),(0,0,'2526','H','O',6201,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-09 11:04:50','manshi','2025-12-09 11:04:50',0),(0,0,'2526','H','O',6202,1,0,'2025-12-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 11:06:24','drashti','2025-12-09 11:06:24',0),(0,0,'2526','H','O',6203,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 11:06:52','reception','2025-12-09 11:06:52',0),(0,0,'2526','H','O',6204,1,0,'2025-12-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 11:17:55','drashti','2025-12-09 11:17:55',0),(0,0,'2526','H','O',6205,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-09 11:18:57','manshi','2025-12-09 11:37:27',0),(0,0,'2526','H','O',6206,1,0,'2025-12-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 11:21:35','reception','2025-12-09 11:21:35',0),(0,0,'2526','H','O',6206,2,0,'2025-12-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 11:21:35','reception','2025-12-09 11:21:35',0),(0,0,'2526','H','O',6206,3,0,'2025-12-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 11:21:35','reception','2025-12-09 11:21:35',0),(0,0,'2526','H','O',6207,1,0,'2025-12-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 11:27:09','reception','2025-12-09 11:27:09',0),(0,0,'2526','H','O',6208,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 11:28:09','reception','2025-12-09 11:28:09',0),(0,0,'2526','H','O',6209,1,0,'2025-12-09','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-09 11:30:45','janvi','2025-12-09 11:30:45',0),(0,0,'2526','H','O',6210,1,0,'2025-12-09','00:00:00','XRY0390',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-09 11:36:55','manshi','2025-12-09 11:36:55',0),(0,0,'2526','H','O',6211,1,0,'2025-12-09','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-09 11:37:27','manshi','2025-12-09 11:37:27',0),(0,0,'2526','H','O',6212,1,0,'2025-12-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 11:38:20','reception','2025-12-09 11:38:20',0),(0,0,'2526','H','O',6212,2,0,'2025-12-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 11:38:20','reception','2025-12-09 11:38:20',0),(0,0,'2526','H','O',6212,3,0,'2025-12-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 11:38:20','reception','2025-12-09 11:38:20',0),(0,0,'2526','H','O',6212,4,0,'2025-12-09','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 11:38:20','reception','2025-12-09 11:38:20',0),(0,0,'2526','H','O',6213,1,0,'2025-12-09','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-09 11:38:45','manshi','2025-12-09 11:38:45',0),(0,0,'2526','H','O',6214,1,0,'2025-12-09','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 11:40:41','reception','2025-12-09 11:40:41',0),(0,0,'2526','H','O',6215,1,0,'2025-12-09','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-09 11:44:30','manshi','2025-12-09 11:44:30',0),(0,0,'2526','H','O',6216,1,0,'2025-12-09','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 11:47:51','drashti','2025-12-09 11:47:51',0),(0,0,'2526','H','O',6216,2,0,'2025-12-09','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 11:47:51','drashti','2025-12-09 11:47:51',0),(0,0,'2526','H','O',6216,3,0,'2025-12-09','00:00:00','OPWD0019',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-09 11:47:51','drashti','2025-12-09 11:47:51',0),(0,0,'2526','H','O',6216,4,0,'2025-12-09','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 11:47:51','drashti','2025-12-09 11:47:51',0),(0,0,'2526','H','O',6217,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-09 11:48:06','janvi','2025-12-09 11:48:06',0),(0,0,'2526','H','O',6218,1,0,'2025-12-09','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 11:50:02','drashti','2025-12-09 11:50:02',0),(0,0,'2526','H','O',6219,1,0,'2025-12-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 11:51:37','reception','2025-12-09 11:51:37',0),(0,0,'2526','H','O',6220,1,0,'2025-12-09','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-09 11:57:08','janvi','2025-12-09 11:57:08',0),(0,0,'2526','H','O',6221,1,0,'2025-12-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 11:58:17','reception','2025-12-09 11:58:17',0),(0,0,'2526','H','O',6222,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-09 11:59:50','janvi','2025-12-09 11:59:50',0),(0,0,'2526','H','O',6223,1,0,'2025-12-09','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 12:00:15','reception','2025-12-09 12:00:15',0),(0,0,'2526','H','O',6224,1,0,'2025-12-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 12:01:35','reception','2025-12-09 12:01:35',0),(0,0,'2526','H','O',6224,2,0,'2025-12-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 12:01:35','reception','2025-12-09 12:01:35',0),(0,0,'2526','H','O',6224,3,0,'2025-12-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 12:01:35','reception','2025-12-09 12:01:35',0),(0,0,'2526','H','O',6224,4,0,'2025-12-09','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 12:01:35','reception','2025-12-09 12:01:35',0),(0,0,'2526','H','O',6225,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-09 12:02:47','janvi','2025-12-09 12:02:47',0),(0,0,'2526','H','O',6226,1,0,'2025-12-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 12:07:53','reception','2025-12-09 12:07:53',0),(0,0,'2526','H','O',6226,2,0,'2025-12-09','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 12:07:53','reception','2025-12-09 12:07:53',0),(0,0,'2526','H','O',6227,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 12:16:39','reception','2025-12-09 12:16:39',0),(0,0,'2526','H','O',6228,1,0,'2025-12-09','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-09 12:18:00','drashti','2025-12-09 12:18:00',0),(0,0,'2526','H','O',6229,1,0,'2025-12-09','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-09 12:18:02','janvi','2025-12-09 12:32:14',0),(0,0,'2526','H','O',6230,1,0,'2025-12-09','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-09 12:21:50','janvi','2025-12-09 12:21:50',0),(0,0,'2526','H','O',6231,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-09 12:29:23','manshi','2025-12-09 12:29:23',0),(0,0,'2526','H','O',6232,1,0,'2025-12-09','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-09 12:29:38','manshi','2025-12-09 12:29:38',0),(0,0,'2526','H','O',6233,1,0,'2025-12-09','00:00:00','OTCG0003',0,-1.00,100,-100,'P',0,0,-100.00,0.00,0.00,-100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-09 12:32:14','janvi','2025-12-09 12:32:14',0),(0,0,'2526','H','O',6234,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-09 12:32:46','drashti','2025-12-09 12:32:46',0),(0,0,'2526','H','O',6235,1,0,'2025-12-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 12:35:16','reception','2025-12-09 12:35:16',0),(0,0,'2526','H','O',6235,2,0,'2025-12-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 12:35:16','reception','2025-12-09 12:35:16',0),(0,0,'2526','H','O',6236,1,0,'2025-12-09','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-09 12:46:54','drashti','2025-12-09 12:46:54',0),(0,0,'2526','H','O',6237,1,0,'2025-12-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 12:53:44','reception','2025-12-09 12:53:44',0),(0,0,'2526','H','O',6237,2,0,'2025-12-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 12:53:44','reception','2025-12-09 12:53:44',0),(0,0,'2526','H','O',6237,3,0,'2025-12-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 12:53:44','reception','2025-12-09 12:53:44',0),(0,0,'2526','H','O',6237,4,0,'2025-12-09','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 12:53:44','reception','2025-12-09 12:53:44',0),(0,0,'2526','H','O',6238,1,0,'2025-12-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 12:58:51','drashti','2025-12-09 12:58:51',0),(0,0,'2526','H','O',6239,1,0,'2025-12-09','00:00:00','OPWD0023',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-09 12:59:57','manshi','2025-12-09 12:59:57',0),(0,0,'2526','H','O',6240,1,0,'2025-12-09','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-09 13:12:28','manshi','2025-12-09 13:12:28',0),(0,0,'2526','H','O',6240,2,0,'2025-12-09','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-09 13:12:28','manshi','2025-12-09 13:12:28',0),(0,0,'2526','H','O',6241,1,0,'2025-12-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 13:49:43','reception','2025-12-09 13:49:43',0),(0,0,'2526','H','O',6241,2,0,'2025-12-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 13:49:43','reception','2025-12-09 13:49:43',0),(0,0,'2526','H','O',6241,3,0,'2025-12-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 13:49:43','reception','2025-12-09 13:49:43',0),(0,0,'2526','H','O',6242,1,0,'2025-12-09','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-09 13:49:50','drashti','2025-12-09 13:49:50',0),(0,0,'2526','H','O',6242,2,0,'2025-12-09','00:00:00','OPWD0034',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 13:49:50','drashti','2025-12-09 13:49:50',0),(0,0,'2526','H','O',6243,1,0,'2025-12-09','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 14:55:55','drashti','2025-12-09 14:55:55',0),(0,0,'2526','H','O',6243,2,0,'2025-12-09','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 14:55:55','drashti','2025-12-09 14:55:55',0),(0,0,'2526','H','O',6243,3,0,'2025-12-09','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 14:55:55','drashti','2025-12-09 14:55:55',0),(0,0,'2526','H','O',6243,4,0,'2025-12-09','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 14:55:55','drashti','2025-12-09 14:55:55',0),(0,0,'2526','H','O',6244,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 16:36:26','reception','2025-12-09 16:36:26',0),(0,0,'2526','H','O',6245,1,0,'2025-12-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 16:41:53','reception','2025-12-09 16:41:53',0),(0,0,'2526','H','O',6245,2,0,'2025-12-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 16:41:53','reception','2025-12-09 16:41:53',0),(0,0,'2526','H','O',6246,1,0,'2025-12-09','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 16:50:48','reception','2025-12-09 16:50:48',0),(0,0,'2526','H','O',6247,1,0,'2025-12-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 16:53:20','reception','2025-12-09 16:53:20',0),(0,0,'2526','H','O',6247,2,0,'2025-12-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 16:53:20','reception','2025-12-09 16:53:20',0),(0,0,'2526','H','O',6247,3,0,'2025-12-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 16:53:20','reception','2025-12-09 16:53:20',0),(0,0,'2526','H','O',6248,1,0,'2025-12-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 17:01:18','reception','2025-12-09 17:01:18',0),(0,0,'2526','H','O',6248,2,0,'2025-12-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 17:01:18','reception','2025-12-09 17:01:18',0),(0,0,'2526','H','O',6248,3,0,'2025-12-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 17:01:18','reception','2025-12-09 17:01:18',0),(0,0,'2526','H','O',6249,1,0,'2025-12-09','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 17:03:25','reception','2025-12-09 17:03:25',0),(0,0,'2526','H','O',6249,2,0,'2025-12-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 17:03:25','reception','2025-12-09 17:03:25',0),(0,0,'2526','H','O',6250,1,0,'2025-12-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 17:04:09','reception','2025-12-09 17:04:09',0),(0,0,'2526','H','O',6251,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 17:07:13','reception','2025-12-09 17:07:13',0),(0,0,'2526','H','O',6252,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 17:11:38','reception','2025-12-09 17:11:38',0),(0,0,'2526','H','O',6253,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 17:12:36','reception','2025-12-09 17:12:36',0),(0,0,'2526','H','O',6254,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 17:17:15','reception','2025-12-09 17:17:15',0),(0,0,'2526','H','O',6255,1,0,'2025-12-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 17:21:58','reception','2025-12-09 17:21:58',0),(0,0,'2526','H','O',6255,2,0,'2025-12-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 17:21:58','reception','2025-12-09 17:21:58',0),(0,0,'2526','H','O',6255,3,0,'2025-12-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 17:21:58','reception','2025-12-09 17:21:58',0),(0,0,'2526','H','O',6256,1,0,'2025-12-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 17:26:17','drashti','2025-12-09 17:26:17',0),(0,0,'2526','H','O',6257,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 17:37:22','reception','2025-12-09 17:37:22',0),(0,0,'2526','H','O',6258,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 17:47:28','reception','2025-12-09 17:47:28',0),(0,0,'2526','H','O',6259,1,0,'2025-12-09','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-09 17:51:50','janvi','2025-12-09 17:51:50',0),(0,0,'2526','H','O',6260,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-09 17:55:39','janvi','2025-12-09 17:55:39',0),(0,0,'2526','H','O',6261,1,0,'2025-12-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 17:59:53','drashti','2025-12-09 17:59:53',0),(0,0,'2526','H','O',6262,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 18:00:12','reception','2025-12-09 18:00:12',0),(0,0,'2526','H','O',6263,1,0,'2025-12-09','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-09 18:00:32','janvi','2025-12-09 18:00:32',0),(0,0,'2526','H','O',6264,1,0,'2025-12-09','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-09 18:02:44','janvi','2025-12-09 18:02:44',0),(0,0,'2526','H','O',6265,1,0,'2025-12-09','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 18:04:12','reception','2025-12-09 18:04:12',0),(0,0,'2526','H','O',6266,1,0,'2025-12-09','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-09 18:04:42','drashti','2025-12-09 18:04:42',0),(0,0,'2526','H','O',6267,1,0,'2025-12-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-09 18:04:50','janvi','2025-12-09 18:04:50',0),(0,0,'2526','H','O',6268,1,0,'2025-12-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 18:05:50','reception','2025-12-09 18:05:50',0),(0,0,'2526','H','O',6269,1,0,'2025-12-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-09 18:08:04','janvi','2025-12-09 18:08:04',0),(0,0,'2526','H','O',6270,1,0,'2025-12-09','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-09 18:14:33','reception','2025-12-09 18:14:33',0),(0,0,'2526','H','O',6271,1,0,'2025-12-09','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-09 18:14:56','drashti','2025-12-09 18:14:56',0),(0,0,'2526','H','O',6272,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-09 18:17:55','janvi','2025-12-09 18:17:55',0),(0,0,'2526','H','O',6273,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 18:18:29','reception','2025-12-09 18:18:29',0),(0,0,'2526','H','O',6274,1,0,'2025-12-09','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 18:19:42','drashti','2025-12-09 18:19:42',0),(0,0,'2526','H','O',6275,1,0,'2025-12-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 18:22:38','drashti','2025-12-09 18:22:38',0),(0,0,'2526','H','O',6276,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 18:25:00','reception','2025-12-09 18:25:00',0),(0,0,'2526','H','O',6277,1,0,'2025-12-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-09 18:28:33','janvi','2025-12-09 18:28:33',0),(0,0,'2526','H','O',6278,1,0,'2025-12-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-09 18:33:53','janvi','2025-12-09 18:33:53',0),(0,0,'2526','H','O',6279,1,0,'2025-12-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 18:34:46','reception','2025-12-09 18:34:46',0),(0,0,'2526','H','O',6280,1,0,'2025-12-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 18:38:31','reception','2025-12-09 18:38:31',0),(0,0,'2526','H','O',6280,2,0,'2025-12-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 18:38:31','reception','2025-12-09 18:38:31',0),(0,0,'2526','H','O',6281,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-09 18:40:28','janvi','2025-12-09 18:40:28',0),(0,0,'2526','H','O',6282,1,0,'2025-12-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-09 18:41:12','janvi','2025-12-09 18:41:12',0),(0,0,'2526','H','O',6283,1,0,'2025-12-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 18:44:15','reception','2025-12-09 18:44:15',0),(0,0,'2526','H','O',6283,2,0,'2025-12-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 18:44:15','reception','2025-12-09 18:44:15',0),(0,0,'2526','H','O',6284,1,0,'2025-12-09','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 18:47:53','reception','2025-12-09 18:47:53',0),(0,0,'2526','H','O',6285,1,0,'2025-12-09','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-09 18:48:42','janvi','2025-12-09 18:48:42',0),(0,0,'2526','H','O',6286,1,0,'2025-12-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-09 18:48:58','drashti','2025-12-09 18:48:58',0),(0,0,'2526','H','O',6287,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 18:50:49','reception','2025-12-09 18:50:49',0),(0,0,'2526','H','O',6288,1,0,'2025-12-09','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-09 18:51:29','drashti','2025-12-09 18:51:29',0),(0,0,'2526','H','O',6289,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 18:55:18','reception','2025-12-09 18:55:18',0),(0,0,'2526','H','O',6290,1,0,'2025-12-09','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-09 18:56:16','janvi','2025-12-09 18:56:16',0),(0,0,'2526','H','O',6291,1,0,'2025-12-09','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-09 18:57:31','janvi','2025-12-09 18:57:31',0),(0,0,'2526','H','O',6292,1,0,'2025-12-09','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-09 19:01:53','drashti','2025-12-09 19:01:53',0),(0,0,'2526','H','O',6293,1,0,'2025-12-09','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 19:06:07','reception','2025-12-09 19:06:07',0),(0,0,'2526','H','O',6293,2,0,'2025-12-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 19:06:07','reception','2025-12-09 19:06:07',0),(0,0,'2526','H','O',6293,3,0,'2025-12-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 19:06:07','reception','2025-12-09 19:06:07',0),(0,0,'2526','H','O',6294,1,0,'2025-12-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 19:11:49','reception','2025-12-09 19:11:49',0),(0,0,'2526','H','O',6295,1,0,'2025-12-09','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 19:13:04','reception','2025-12-09 19:13:04',0),(0,0,'2526','H','O',6296,1,0,'2025-12-09','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-09 19:14:08','janvi','2025-12-09 19:14:08',0),(0,0,'2526','H','O',6297,1,0,'2025-12-09','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-09 19:14:36','drashti','2025-12-09 19:14:36',0),(0,0,'2526','H','O',6298,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-09 19:16:06','priyanshi','2025-12-09 19:16:06',0),(0,0,'2526','H','O',6299,1,0,'2025-12-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-09 19:27:17','reception','2025-12-09 19:27:17',0),(0,0,'2526','H','O',6300,1,0,'2025-12-09','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-09 19:30:50','janvi','2025-12-09 19:30:50',0),(0,0,'2526','H','O',6301,1,0,'2025-12-09','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-09 19:32:54','priyanshi','2025-12-09 19:32:54',0),(0,0,'2526','H','O',6302,1,0,'2025-12-09','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-09 19:42:58','priyanshi','2025-12-09 19:42:58',0),(0,0,'2526','H','O',6303,1,0,'2025-12-09','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-09 19:53:49','janvi','2025-12-09 19:53:49',0),(0,0,'2526','H','O',6304,1,0,'2025-12-09','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-09 20:00:16','reception','2025-12-09 20:00:16',0),(0,0,'2526','H','O',6305,1,0,'2025-12-09','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 20:05:21','reception','2025-12-09 20:05:21',0),(0,0,'2526','H','O',6305,2,0,'2025-12-09','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-09 20:05:21','reception','2025-12-09 20:05:21',0),(0,0,'2526','H','O',6306,1,0,'2025-12-09','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-09 20:16:59','reception','2025-12-09 20:16:59',0),(0,0,'2526','H','O',6307,1,0,'2025-12-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-10 08:51:43','reception','2025-12-10 08:51:43',0),(0,0,'2526','H','O',6308,1,0,'2025-12-10','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-10 08:53:48','urvashi','2025-12-10 08:53:48',0),(0,0,'2526','H','O',6309,1,0,'2025-12-10','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-10 08:55:44','urvashi','2025-12-10 08:55:44',0),(0,0,'2526','H','O',6309,2,0,'2025-12-10','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-10 08:55:44','urvashi','2025-12-10 08:55:44',0),(0,0,'2526','H','O',6310,1,0,'2025-12-10','00:00:00','OPWD0031',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-10 08:56:53','urvashi','2025-12-10 09:00:28',0),(0,0,'2526','H','O',6311,1,0,'2025-12-10','00:00:00','OPWD0013',0,1.00,450,450,'P',0,0,450.00,0.00,0.00,450.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-10 08:59:08','urvashi','2025-12-10 08:59:08',0),(0,0,'2526','H','O',6312,1,0,'2025-12-10','00:00:00','OPWD0031',0,-1.00,500,-500,'P',0,0,-500.00,0.00,0.00,-500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-10 09:00:28','urvashi','2025-12-10 09:00:28',0),(0,0,'2526','H','O',6313,1,0,'2025-12-10','00:00:00','OPWD0031',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-10 09:01:56','janvi','2025-12-10 09:46:38',0),(0,0,'2526','H','O',6314,1,0,'2025-12-10','00:00:00','OPWD0013',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-10 09:09:21','reception','2025-12-10 09:09:21',0),(0,0,'2526','H','O',6314,2,0,'2025-12-10','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-10 09:09:21','reception','2025-12-10 09:09:21',0),(0,0,'2526','H','O',6315,1,0,'2025-12-10','00:00:00','OPWD0031',0,-1.00,500,-500,'P',0,0,-500.00,0.00,0.00,-500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-10 09:46:38','janvi','2025-12-10 09:46:38',0),(0,0,'2526','H','O',6316,1,0,'2025-12-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-10 09:47:15','drashti','2025-12-10 09:47:15',0),(0,0,'2526','H','O',6317,1,0,'2025-12-10','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-10 09:53:38','drashti','2025-12-10 09:53:38',0),(0,0,'2526','H','O',6317,2,0,'2025-12-10','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-10 09:53:38','drashti','2025-12-10 09:53:38',0),(0,0,'2526','H','O',6317,3,0,'2025-12-10','00:00:00','OPWD0019',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-10 09:53:38','drashti','2025-12-10 09:53:38',0),(0,0,'2526','H','O',6317,4,0,'2025-12-10','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-10 09:53:38','drashti','2025-12-10 09:53:38',0),(0,0,'2526','H','O',6318,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 09:57:02','reception','2025-12-10 09:57:02',0),(0,0,'2526','H','O',6319,1,0,'2025-12-10','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-10 10:11:35','manshi','2025-12-10 10:11:35',0),(0,0,'2526','H','O',6320,1,0,'2025-12-10','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-10 10:11:49','manshi','2025-12-10 10:11:49',0),(0,0,'2526','H','O',6321,1,0,'2025-12-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 10:11:56','reception','2025-12-10 10:11:56',0),(0,0,'2526','H','O',6322,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 10:19:33','reception','2025-12-10 10:19:33',0),(0,0,'2526','H','O',6323,1,0,'2025-12-10','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-10 10:22:45','janvi','2025-12-10 10:22:45',0),(0,0,'2526','H','O',6324,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 10:23:06','reception','2025-12-10 10:23:06',0),(0,0,'2526','H','O',6325,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-10 10:24:47','janvi','2025-12-10 10:24:47',0),(0,0,'2526','H','O',6326,1,0,'2025-12-10','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-10 10:30:08','janvi','2025-12-10 10:30:08',0),(0,0,'2526','H','O',6326,2,0,'2025-12-10','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-10 10:30:08','janvi','2025-12-10 10:30:08',0),(0,0,'2526','H','O',6326,3,0,'2025-12-10','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-10 10:30:08','janvi','2025-12-10 10:30:08',0),(0,0,'2526','H','O',6326,4,0,'2025-12-10','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-10 10:30:08','janvi','2025-12-10 10:30:08',0),(0,0,'2526','H','O',6327,1,0,'2025-12-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-10 10:30:22','reception','2025-12-10 10:30:22',0),(0,0,'2526','H','O',6328,1,0,'2025-12-10','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-10 10:33:35','drashti','2025-12-10 10:33:35',0),(0,0,'2526','H','O',6329,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 10:34:06','reception','2025-12-10 10:34:06',0),(0,0,'2526','H','O',6330,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 10:34:27','reception','2025-12-10 10:34:27',0),(0,0,'2526','H','O',6331,1,0,'2025-12-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 10:43:11','reception','2025-12-10 10:43:11',0),(0,0,'2526','H','O',6332,1,0,'2025-12-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-10 10:46:22','drashti','2025-12-10 10:46:22',0),(0,0,'2526','H','O',6333,1,0,'2025-12-10','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-10 10:47:03','janvi','2025-12-10 10:47:03',0),(0,0,'2526','H','O',6334,1,0,'2025-12-10','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-10 10:50:16','janvi','2025-12-10 10:50:16',0),(0,0,'2526','H','O',6335,1,0,'2025-12-10','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 10:53:16','reception','2025-12-10 10:53:16',0),(0,0,'2526','H','O',6336,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 10:59:14','reception','2025-12-10 10:59:14',0),(0,0,'2526','H','O',6337,1,0,'2025-12-10','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-10 11:02:16','janvi','2025-12-10 11:02:16',0),(0,0,'2526','H','O',6338,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-10 11:03:33','drashti','2025-12-10 11:03:33',0),(0,0,'2526','H','O',6339,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 11:07:05','reception','2025-12-10 11:07:05',0),(0,0,'2526','H','O',6340,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-10 11:07:22','manshi','2025-12-10 11:07:22',0),(0,0,'2526','H','O',6341,1,0,'2025-12-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 11:08:27','reception','2025-12-10 11:08:27',0),(0,0,'2526','H','O',6342,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 11:09:47','reception','2025-12-10 11:09:47',0),(0,0,'2526','H','O',6343,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 11:11:47','reception','2025-12-10 11:11:47',0),(0,0,'2526','H','O',6344,1,0,'2025-12-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-10 11:12:53','drashti','2025-12-10 11:12:53',0),(0,0,'2526','H','O',6345,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-10 11:14:03','janvi','2025-12-10 11:14:03',0),(0,0,'2526','H','O',6346,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 11:14:42','reception','2025-12-10 11:14:42',0),(0,0,'2526','H','O',6347,1,0,'2025-12-10','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-10 11:17:02','drashti','2025-12-10 11:17:02',0),(0,0,'2526','H','O',6348,1,0,'2025-12-10','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-10 11:25:51','janvi','2025-12-10 11:25:51',0),(0,0,'2526','H','O',6349,1,0,'2025-12-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-10 11:29:11','drashti','2025-12-10 11:29:11',0),(0,0,'2526','H','O',6350,1,0,'2025-12-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 11:30:17','reception','2025-12-10 11:30:17',0),(0,0,'2526','H','O',6350,2,0,'2025-12-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 11:30:17','reception','2025-12-10 11:30:17',0),(0,0,'2526','H','O',6350,3,0,'2025-12-10','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 11:30:17','reception','2025-12-10 11:30:17',0),(0,0,'2526','H','O',6351,1,0,'2025-12-10','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-10 11:31:06','janvi','2025-12-10 11:31:06',0),(0,0,'2526','H','O',6352,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 11:32:23','reception','2025-12-10 11:32:23',0),(0,0,'2526','H','O',6353,1,0,'2025-12-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-10 11:34:27','drashti','2025-12-10 11:34:27',0),(0,0,'2526','H','O',6354,1,0,'2025-12-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 11:37:16','reception','2025-12-10 11:37:16',0),(0,0,'2526','H','O',6355,1,0,'2025-12-10','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-10 11:37:45','janvi','2025-12-10 11:37:45',0),(0,0,'2526','H','O',6356,1,0,'2025-12-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 11:40:03','reception','2025-12-10 11:40:03',0),(0,0,'2526','H','O',6357,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-10 11:40:43','drashti','2025-12-10 11:40:43',0),(0,0,'2526','H','O',6358,1,0,'2025-12-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 11:43:40','reception','2025-12-10 11:43:40',0),(0,0,'2526','H','O',6359,1,0,'2025-12-10','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-10 11:46:39','reception','2025-12-10 11:46:39',0),(0,0,'2526','H','O',6360,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-10 11:51:52','janvi','2025-12-10 11:51:52',0),(0,0,'2526','H','O',6361,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-10 12:02:16','drashti','2025-12-10 12:02:16',0),(0,0,'2526','H','O',6362,1,0,'2025-12-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 12:02:46','reception','2025-12-10 12:02:46',0),(0,0,'2526','H','O',6362,2,0,'2025-12-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 12:02:46','reception','2025-12-10 12:02:46',0),(0,0,'2526','H','O',6362,3,0,'2025-12-10','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 12:02:46','reception','2025-12-10 12:02:46',0),(0,0,'2526','H','O',6363,1,0,'2025-12-10','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-10 12:02:51','manshi','2025-12-10 12:02:51',0),(0,0,'2526','H','O',6364,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-10 12:07:55','manshi','2025-12-10 12:07:55',0),(0,0,'2526','H','O',6365,1,0,'2025-12-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-10 12:07:59','reception','2025-12-10 12:07:59',0),(0,0,'2526','H','O',6366,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 12:08:50','reception','2025-12-10 12:08:50',0),(0,0,'2526','H','O',6367,1,0,'2025-12-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-10 12:09:49','drashti','2025-12-10 12:09:49',0),(0,0,'2526','H','O',6368,1,0,'2025-12-10','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-10 12:12:34','drashti','2025-12-10 12:12:34',0),(0,0,'2526','H','O',6369,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 12:17:14','reception','2025-12-10 12:17:14',0),(0,0,'2526','H','O',6370,1,0,'2025-12-10','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-10 12:21:30','drashti','2025-12-10 12:21:30',0),(0,0,'2526','H','O',6371,1,0,'2025-12-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 12:24:53','reception','2025-12-10 12:24:53',0),(0,0,'2526','H','O',6371,2,0,'2025-12-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 12:24:53','reception','2025-12-10 12:24:53',0),(0,0,'2526','H','O',6371,3,0,'2025-12-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 12:24:53','reception','2025-12-10 12:24:53',0),(0,0,'2526','H','O',6372,1,0,'2025-12-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-10 12:25:09','drashti','2025-12-10 12:25:09',0),(0,0,'2526','H','O',6373,1,0,'2025-12-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-10 12:25:19','janvi','2025-12-10 12:25:19',0),(0,0,'2526','H','O',6374,1,0,'2025-12-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-10 12:27:27','drashti','2025-12-10 12:27:27',0),(0,0,'2526','H','O',6375,1,0,'2025-12-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 12:27:30','reception','2025-12-10 12:27:30',0),(0,0,'2526','H','O',6376,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 12:28:49','reception','2025-12-10 12:28:49',0),(0,0,'2526','H','O',6377,1,0,'2025-12-10','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-10 12:29:48','drashti','2025-12-10 12:29:48',0),(0,0,'2526','H','O',6378,1,0,'2025-12-10','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-10 12:32:22','janvi','2025-12-10 12:32:22',0),(0,0,'2526','H','O',6379,1,0,'2025-12-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 12:32:33','reception','2025-12-10 12:32:33',0),(0,0,'2526','H','O',6379,2,0,'2025-12-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 12:32:33','reception','2025-12-10 12:32:33',0),(0,0,'2526','H','O',6379,3,0,'2025-12-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 12:32:33','reception','2025-12-10 12:32:33',0),(0,0,'2526','H','O',6380,1,0,'2025-12-10','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-10 12:50:44','drashti','2025-12-10 12:50:44',0),(0,0,'2526','H','O',6380,2,0,'2025-12-10','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-10 12:50:44','drashti','2025-12-10 12:50:44',0),(0,0,'2526','H','O',6381,1,0,'2025-12-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 13:02:19','reception','2025-12-10 13:02:19',0),(0,0,'2526','H','O',6381,2,0,'2025-12-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 13:02:19','reception','2025-12-10 13:02:19',0),(0,0,'2526','H','O',6381,3,0,'2025-12-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 13:02:19','reception','2025-12-10 13:02:19',0),(0,0,'2526','H','O',6382,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 13:06:19','reception','2025-12-10 13:06:19',0),(0,0,'2526','H','O',6383,1,0,'2025-12-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 13:22:27','reception','2025-12-10 13:22:27',0),(0,0,'2526','H','O',6383,2,0,'2025-12-10','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 13:22:27','reception','2025-12-10 13:22:27',0),(0,0,'2526','H','O',6383,3,0,'2025-12-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 13:22:27','reception','2025-12-10 13:22:27',0),(0,0,'2526','H','O',6384,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-10 13:29:20','janvi','2025-12-10 13:29:20',0),(0,0,'2526','H','O',6385,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 13:44:56','reception','2025-12-10 13:44:56',0),(0,0,'2526','H','O',6386,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 14:29:29','reception','2025-12-10 14:29:29',0),(0,0,'2526','H','O',6387,1,0,'2025-12-10','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-10 14:55:09','urvashi','2025-12-10 14:55:09',0),(0,0,'2526','H','O',6387,2,0,'2025-12-10','00:00:00','OPWD0013',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-10 14:55:09','urvashi','2025-12-10 14:55:09',0),(0,0,'2526','H','O',6387,3,0,'2025-12-10','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-12-10 14:55:09','urvashi','2025-12-10 14:55:09',0),(0,0,'2526','H','O',6388,1,0,'2025-12-10','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-10 15:01:04','urvashi','2025-12-10 15:01:04',0),(0,0,'2526','H','O',6388,2,0,'2025-12-10','00:00:00','OPWD0015',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-10 15:01:04','urvashi','2025-12-10 15:01:04',0),(0,0,'2526','H','O',6388,3,0,'2025-12-10','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-10 15:01:04','urvashi','2025-12-10 15:01:04',0),(0,0,'2526','H','O',6388,4,0,'2025-12-10','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-12-10 15:01:04','urvashi','2025-12-10 15:01:04',0),(0,0,'2526','H','O',6389,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 16:13:51','reception','2025-12-10 16:13:51',0),(0,0,'2526','H','O',6390,1,0,'2025-12-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-10 16:14:18','urvashi','2025-12-10 16:14:18',0),(0,0,'2526','H','O',6391,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 16:24:56','reception','2025-12-10 16:24:56',0),(0,0,'2526','H','O',6392,1,0,'2025-12-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-10 16:32:01','janvi','2025-12-10 16:32:01',0),(0,0,'2526','H','O',6393,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-10 16:54:36','reception','2025-12-10 16:54:36',0),(0,0,'2526','H','O',6394,1,0,'2025-12-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-10 16:56:01','reception','2025-12-10 16:56:01',0),(0,0,'2526','H','O',6395,1,0,'2025-12-10','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-10 16:58:15','manshi','2025-12-10 16:58:15',0),(0,0,'2526','H','O',6396,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-10 16:58:36','reception','2025-12-10 16:58:36',0),(0,0,'2526','H','O',6397,1,0,'2025-12-10','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-10 17:03:46','priyanshi','2025-12-10 17:03:46',0),(0,0,'2526','H','O',6398,1,0,'2025-12-10','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 17:09:55','reception','2025-12-10 17:09:55',0),(0,0,'2526','H','O',6399,1,0,'2025-12-10','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-10 17:16:46','priyanshi','2025-12-10 17:16:46',0),(0,0,'2526','H','O',6400,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 17:18:28','reception','2025-12-10 17:18:28',0),(0,0,'2526','H','O',6401,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 17:34:38','reception','2025-12-10 17:34:38',0),(0,0,'2526','H','O',6402,1,0,'2025-12-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 17:36:17','reception','2025-12-10 17:36:17',0),(0,0,'2526','H','O',6403,1,0,'2025-12-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 17:42:51','reception','2025-12-10 17:42:51',0),(0,0,'2526','H','O',6403,2,0,'2025-12-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 17:42:51','reception','2025-12-10 17:42:51',0),(0,0,'2526','H','O',6403,3,0,'2025-12-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 17:42:51','reception','2025-12-10 17:42:51',0),(0,0,'2526','H','O',6404,1,0,'2025-12-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-10 17:51:51','priyanshi','2025-12-10 17:51:51',0),(0,0,'2526','H','O',6405,1,0,'2025-12-10','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-10 17:55:19','priyanshi','2025-12-10 17:55:19',0),(0,0,'2526','H','O',6406,1,0,'2025-12-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 17:55:56','reception','2025-12-10 17:55:56',0),(0,0,'2526','H','O',6406,2,0,'2025-12-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 17:55:56','reception','2025-12-10 17:55:56',0),(0,0,'2526','H','O',6406,3,0,'2025-12-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 17:55:56','reception','2025-12-10 17:55:56',0),(0,0,'2526','H','O',6407,1,0,'2025-12-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 17:58:12','reception','2025-12-10 17:58:12',0),(0,0,'2526','H','O',6408,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-10 18:00:32','janvi','2025-12-10 18:00:32',0),(0,0,'2526','H','O',6409,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 18:00:55','reception','2025-12-10 18:00:55',0),(0,0,'2526','H','O',6410,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 18:01:52','reception','2025-12-10 18:01:52',0),(0,0,'2526','H','O',6411,1,0,'2025-12-10','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-10 18:03:11','janvi','2025-12-10 18:03:11',0),(0,0,'2526','H','O',6412,1,0,'2025-12-10','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-10 18:04:24','priyanshi','2025-12-10 18:04:24',0),(0,0,'2526','H','O',6413,1,0,'2025-12-10','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-10 18:16:45','reception','2025-12-10 18:16:45',0),(0,0,'2526','H','O',6414,1,0,'2025-12-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 18:24:24','reception','2025-12-10 18:24:24',0),(0,0,'2526','H','O',6414,2,0,'2025-12-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 18:24:24','reception','2025-12-10 18:24:24',0),(0,0,'2526','H','O',6414,3,0,'2025-12-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 18:24:24','reception','2025-12-10 18:24:24',0),(0,0,'2526','H','O',6415,1,0,'2025-12-10','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 18:26:46','reception','2025-12-10 18:26:46',0),(0,0,'2526','H','O',6415,2,0,'2025-12-10','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 18:26:46','reception','2025-12-10 18:26:46',0),(0,0,'2526','H','O',6415,3,0,'2025-12-10','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-10 18:26:46','reception','2025-12-10 18:26:46',0),(0,0,'2526','H','O',6416,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 18:29:21','reception','2025-12-10 18:29:21',0),(0,0,'2526','H','O',6417,1,0,'2025-12-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-10 18:32:47','priyanshi','2025-12-10 19:10:12',0),(0,0,'2526','H','O',6418,1,0,'2025-12-10','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 18:35:35','reception','2025-12-10 18:35:35',0),(0,0,'2526','H','O',6419,1,0,'2025-12-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-10 18:39:53','priyanshi','2025-12-10 18:39:53',0),(0,0,'2526','H','O',6420,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 18:47:35','reception','2025-12-10 18:47:35',0),(0,0,'2526','H','O',6421,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-10 18:54:15','reception','2025-12-10 18:54:15',0),(0,0,'2526','H','O',6422,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-10 18:58:12','janvi','2025-12-10 18:58:12',0),(0,0,'2526','H','O',6423,1,0,'2025-12-10','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-10 19:10:12','priyanshi','2025-12-10 19:10:12',0),(0,0,'2526','H','O',6424,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-10 19:16:42','manshi','2025-12-10 19:16:42',0),(0,0,'2526','H','O',6425,1,0,'2025-12-10','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-10 19:23:40','janvi','2025-12-10 19:23:40',0),(0,0,'2526','H','O',6426,1,0,'2025-12-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-10 19:28:39','shweta','2025-12-10 19:28:39',0),(0,0,'2526','H','O',6427,1,0,'2025-12-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-10 19:31:47','janvi','2025-12-10 19:31:47',0),(0,0,'2526','H','O',6428,1,0,'2025-12-10','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-10 19:32:04','shweta','2025-12-10 19:32:04',0),(0,0,'2526','H','O',6429,1,0,'2025-12-10','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-10 19:35:11','shweta','2025-12-10 19:35:11',0),(0,0,'2526','H','O',6430,1,0,'2025-12-10','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-10 19:40:15','janvi','2025-12-10 19:40:15',0),(0,0,'2526','H','O',6431,1,0,'2025-12-10','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-10 20:11:42','shweta','2025-12-10 20:11:42',0),(0,0,'2526','H','O',6432,1,0,'2025-12-10','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-12-10 20:17:23','shweta','2025-12-10 20:17:23',0),(0,0,'2526','H','O',6433,1,0,'2025-12-10','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-10 20:45:01','shweta','2025-12-10 20:45:01',0),(0,0,'2526','H','O',6434,1,0,'2025-12-11','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-11 08:42:23','reception','2025-12-11 08:42:23',0),(0,0,'2526','H','O',6434,2,0,'2025-12-11','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-11 08:42:23','reception','2025-12-11 08:42:23',0),(0,0,'2526','H','O',6434,3,0,'2025-12-11','00:00:00','OPWD0023',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-11 08:42:23','reception','2025-12-11 08:42:23',0),(0,0,'2526','H','O',6435,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-11 10:02:02','drashti','2025-12-11 10:02:02',0),(0,0,'2526','H','O',6436,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-11 10:19:54','janvi','2025-12-11 10:19:54',0),(0,0,'2526','H','O',6437,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-11 10:23:01','janvi','2025-12-11 10:23:01',0),(0,0,'2526','H','O',6438,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-11 10:23:15','drashti','2025-12-11 10:23:15',0),(0,0,'2526','H','O',6439,1,0,'2025-12-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 10:33:39','reception','2025-12-11 10:33:39',0),(0,0,'2526','H','O',6440,1,0,'2025-12-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 10:36:57','reception','2025-12-11 10:36:57',0),(0,0,'2526','H','O',6441,1,0,'2025-12-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 10:45:31','reception','2025-12-11 10:45:31',0),(0,0,'2526','H','O',6442,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 10:48:36','reception','2025-12-11 10:48:36',0),(0,0,'2526','H','O',6443,1,0,'2025-12-11','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-11 10:52:09','manshi','2025-12-11 10:52:09',0),(0,0,'2526','H','O',6444,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-11 10:53:58','drashti','2025-12-11 10:53:58',0),(0,0,'2526','H','O',6445,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 10:57:58','reception','2025-12-11 10:57:58',0),(0,0,'2526','H','O',6446,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 10:58:59','reception','2025-12-11 10:58:59',0),(0,0,'2526','H','O',6447,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 10:59:31','reception','2025-12-11 10:59:31',0),(0,0,'2526','H','O',6448,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-11 11:02:02','reception','2025-12-11 11:02:02',0),(0,0,'2526','H','O',6449,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 11:03:52','reception','2025-12-11 11:03:52',0),(0,0,'2526','H','O',6450,1,0,'2025-12-11','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 11:05:59','reception','2025-12-11 11:05:59',0),(0,0,'2526','H','O',6450,2,0,'2025-12-11','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 11:05:59','reception','2025-12-11 11:05:59',0),(0,0,'2526','H','O',6451,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 11:08:52','reception','2025-12-11 11:08:52',0),(0,0,'2526','H','O',6452,1,0,'2025-12-11','00:00:00','XRY0390',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-11 11:19:09','manshi','2025-12-11 11:19:09',0),(0,0,'2526','H','O',6453,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 11:19:13','drashti','2025-12-11 11:19:13',0),(0,0,'2526','H','O',6454,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-11 11:19:39','manshi','2025-12-11 11:19:39',0),(0,0,'2526','H','O',6455,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-11 11:21:44','drashti','2025-12-11 11:21:44',0),(0,0,'2526','H','O',6456,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-11 11:22:04','janvi','2025-12-11 11:22:04',0),(0,0,'2526','H','O',6457,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-11 11:23:41','janvi','2025-12-11 11:23:41',0),(0,0,'2526','H','O',6458,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-11 11:23:53','drashti','2025-12-11 11:23:53',0),(0,0,'2526','H','O',6459,1,0,'2025-12-11','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-11 11:25:00','janvi','2025-12-11 11:25:00',0),(0,0,'2526','H','O',6460,1,0,'2025-12-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 11:25:07','reception','2025-12-11 11:25:07',0),(0,0,'2526','H','O',6460,2,0,'2025-12-11','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 11:25:07','reception','2025-12-11 11:25:07',0),(0,0,'2526','H','O',6460,3,0,'2025-12-11','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 11:25:07','reception','2025-12-11 11:25:07',0),(0,0,'2526','H','O',6461,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 11:26:33','drashti','2025-12-11 11:26:33',0),(0,0,'2526','H','O',6462,1,0,'2025-12-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 11:28:01','reception','2025-12-11 11:28:01',0),(0,0,'2526','H','O',6463,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 11:33:27','reception','2025-12-11 11:33:27',0),(0,0,'2526','H','O',6464,1,0,'2025-12-11','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 11:41:45','drashti','2025-12-11 11:41:45',0),(0,0,'2526','H','O',6464,2,0,'2025-12-11','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-11 11:41:45','drashti','2025-12-11 11:41:45',0),(0,0,'2526','H','O',6465,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 11:42:18','reception','2025-12-11 11:42:18',0),(0,0,'2526','H','O',6466,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 11:43:59','reception','2025-12-11 11:43:59',0),(0,0,'2526','H','O',6467,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-11 11:44:23','drashti','2025-12-11 11:44:23',0),(0,0,'2526','H','O',6468,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 11:45:32','reception','2025-12-11 11:45:32',0),(0,0,'2526','H','O',6469,1,0,'2025-12-11','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-11 11:50:04','reception','2025-12-11 11:50:04',0),(0,0,'2526','H','O',6470,1,0,'2025-12-11','00:00:00','XRY0189',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-11 11:50:29','manshi','2025-12-11 11:50:29',0),(0,0,'2526','H','O',6471,1,0,'2025-12-11','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-11 11:55:08','drashti','2025-12-11 11:55:08',0),(0,0,'2526','H','O',6472,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 12:03:36','drashti','2025-12-11 12:03:36',0),(0,0,'2526','H','O',6473,1,0,'2025-12-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 12:05:12','drashti','2025-12-11 12:05:12',0),(0,0,'2526','H','O',6474,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 12:08:21','drashti','2025-12-11 12:08:21',0),(0,0,'2526','H','O',6475,1,0,'2025-12-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 12:09:47','reception','2025-12-11 12:09:47',0),(0,0,'2526','H','O',6476,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-11 12:17:40','drashti','2025-12-11 12:17:40',0),(0,0,'2526','H','O',6477,1,0,'2025-12-11','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-11 12:17:41','janvi','2025-12-11 12:17:41',0),(0,0,'2526','H','O',6478,1,0,'2025-12-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-11 12:20:27','reception','2025-12-11 12:20:27',0),(0,0,'2526','H','O',6479,1,0,'2025-12-11','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-11 12:25:10','janvi','2025-12-11 12:25:10',0),(0,0,'2526','H','O',6480,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 12:30:20','drashti','2025-12-11 12:30:20',0),(0,0,'2526','H','O',6481,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 12:34:49','drashti','2025-12-11 12:34:49',0),(0,0,'2526','H','O',6482,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 12:36:06','drashti','2025-12-11 12:36:06',0),(0,0,'2526','H','O',6483,1,0,'2025-12-11','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 12:37:30','reception','2025-12-11 12:37:30',0),(0,0,'2526','H','O',6484,1,0,'2025-12-11','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-11 12:39:42','reception','2025-12-11 12:39:42',0),(0,0,'2526','H','O',6485,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 12:44:09','drashti','2025-12-11 12:44:09',0),(0,0,'2526','H','O',6486,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 12:45:15','reception','2025-12-11 12:45:15',0),(0,0,'2526','H','O',6487,1,0,'2025-12-11','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-11 12:45:35','manshi','2025-12-11 12:45:35',0),(0,0,'2526','H','O',6488,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 12:46:22','drashti','2025-12-11 12:46:22',0),(0,0,'2526','H','O',6489,1,0,'2025-12-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 12:48:36','reception','2025-12-11 12:48:36',0),(0,0,'2526','H','O',6490,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 12:55:12','reception','2025-12-11 12:55:12',0),(0,0,'2526','H','O',6491,1,0,'2025-12-11','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-11 12:57:42','janvi','2025-12-11 12:57:42',0),(0,0,'2526','H','O',6492,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 13:10:59','drashti','2025-12-11 13:10:59',0),(0,0,'2526','H','O',6493,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-11 13:12:13','janvi','2025-12-11 13:12:13',0),(0,0,'2526','H','O',6494,1,0,'2025-12-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 13:13:08','reception','2025-12-11 13:13:08',0),(0,0,'2526','H','O',6495,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-11 13:20:31','drashti','2025-12-11 13:20:31',0),(0,0,'2526','H','O',6496,1,0,'2025-12-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 13:35:27','reception','2025-12-11 13:35:27',0),(0,0,'2526','H','O',6496,2,0,'2025-12-11','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 13:35:27','reception','2025-12-11 13:35:27',0),(0,0,'2526','H','O',6496,3,0,'2025-12-11','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 13:35:27','reception','2025-12-11 13:35:27',0),(0,0,'2526','H','O',6497,1,0,'2025-12-11','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 13:47:26','reception','2025-12-11 13:47:26',0),(0,0,'2526','H','O',6497,2,0,'2025-12-11','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 13:47:26','reception','2025-12-11 13:47:26',0),(0,0,'2526','H','O',6498,1,0,'2025-12-11','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-12-11 14:18:05','reception','2025-12-11 14:18:05',0),(0,0,'2526','H','O',6498,2,0,'2025-12-11','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-12-11 14:18:05','reception','2025-12-11 14:18:05',0),(0,0,'2526','H','O',6499,1,0,'2025-12-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 16:03:09','reception','2025-12-11 16:03:09',0),(0,0,'2526','H','O',6500,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 16:32:25','reception','2025-12-11 16:32:25',0),(0,0,'2526','H','O',6501,1,0,'2025-12-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 16:33:53','reception','2025-12-11 16:33:53',0),(0,0,'2526','H','O',6502,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 16:38:13','reception','2025-12-11 16:38:13',0),(0,0,'2526','H','O',6503,1,0,'2025-12-11','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 16:39:36','reception','2025-12-11 16:39:36',0),(0,0,'2526','H','O',6504,1,0,'2025-12-11','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 16:44:19','reception','2025-12-11 16:44:19',0),(0,0,'2526','H','O',6504,2,0,'2025-12-11','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 16:44:19','reception','2025-12-11 16:44:19',0),(0,0,'2526','H','O',6505,1,0,'2025-12-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-11 16:45:13','drashti','2025-12-11 16:45:13',0),(0,0,'2526','H','O',6506,1,0,'2025-12-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 16:58:39','reception','2025-12-11 16:58:39',0),(0,0,'2526','H','O',6506,2,0,'2025-12-11','00:00:00','NEU10019',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 16:58:39','reception','2025-12-11 16:58:39',0),(0,0,'2526','H','O',6506,3,0,'2025-12-11','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 16:58:39','reception','2025-12-11 16:58:39',0),(0,0,'2526','H','O',6507,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 17:00:26','reception','2025-12-11 17:00:26',0),(0,0,'2526','H','O',6508,1,0,'2025-12-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 17:04:27','reception','2025-12-11 17:04:27',0),(0,0,'2526','H','O',6508,2,0,'2025-12-11','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 17:04:27','reception','2025-12-11 17:04:27',0),(0,0,'2526','H','O',6508,3,0,'2025-12-11','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 17:04:27','reception','2025-12-11 17:04:27',0),(0,0,'2526','H','O',6509,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 17:20:13','reception','2025-12-11 17:20:13',0),(0,0,'2526','H','O',6510,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-11 17:25:08','manshi','2025-12-11 17:25:08',0),(0,0,'2526','H','O',6511,1,0,'2025-12-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 17:27:31','reception','2025-12-11 17:27:31',0),(0,0,'2526','H','O',6511,2,0,'2025-12-11','00:00:00','NEU10019',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 17:27:31','reception','2025-12-11 17:27:31',0),(0,0,'2526','H','O',6511,3,0,'2025-12-11','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 17:27:31','reception','2025-12-11 17:27:31',0),(0,0,'2526','H','O',6512,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 17:29:36','reception','2025-12-11 17:29:36',0),(0,0,'2526','H','O',6513,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-11 17:38:54','manshi','2025-12-11 17:38:54',0),(0,0,'2526','H','O',6514,1,0,'2025-12-11','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 17:39:53','reception','2025-12-11 17:39:53',0),(0,0,'2526','H','O',6514,2,0,'2025-12-11','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 17:39:53','reception','2025-12-11 17:39:53',0),(0,0,'2526','H','O',6514,3,0,'2025-12-11','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 17:39:53','reception','2025-12-11 17:39:53',0),(0,0,'2526','H','O',6515,1,0,'2025-12-11','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-11 17:46:11','janvi','2025-12-11 17:46:11',0),(0,0,'2526','H','O',6516,1,0,'2025-12-11','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 18:03:32','reception','2025-12-11 18:03:32',0),(0,0,'2526','H','O',6517,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 18:05:50','reception','2025-12-11 18:05:50',0),(0,0,'2526','H','O',6518,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-11 18:10:21','manshi','2025-12-11 18:10:21',0),(0,0,'2526','H','O',6519,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 18:10:51','reception','2025-12-11 18:10:51',0),(0,0,'2526','H','O',6520,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-11 18:15:34','drashti','2025-12-11 18:15:34',0),(0,0,'2526','H','O',6521,1,0,'2025-12-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 18:23:31','drashti','2025-12-11 18:23:31',0),(0,0,'2526','H','O',6522,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-11 18:24:24','janvi','2025-12-11 18:24:24',0),(0,0,'2526','H','O',6523,1,0,'2025-12-11','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-11 18:27:33','manshi','2025-12-11 18:27:33',0),(0,0,'2526','H','O',6524,1,0,'2025-12-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-11 18:29:07','drashti','2025-12-11 19:36:51',0),(0,0,'2526','H','O',6525,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 18:29:26','drashti','2025-12-11 18:29:26',0),(0,0,'2526','H','O',6526,1,0,'2025-12-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-11 18:30:25','janvi','2025-12-11 18:30:25',0),(0,0,'2526','H','O',6527,1,0,'2025-12-11','00:00:00','XRY0390',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-11 18:34:05','manshi','2025-12-11 18:34:05',0),(0,0,'2526','H','O',6528,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 18:35:37','drashti','2025-12-11 18:35:37',0),(0,0,'2526','H','O',6529,1,0,'2025-12-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-11 18:36:01','janvi','2025-12-11 18:36:01',0),(0,0,'2526','H','O',6530,1,0,'2025-12-11','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 18:36:25','reception','2025-12-11 18:36:25',0),(0,0,'2526','H','O',6531,1,0,'2025-12-11','00:00:00','XRY0145',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-11 18:36:59','manshi','2025-12-11 18:36:59',0),(0,0,'2526','H','O',6532,1,0,'2025-12-11','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-11 18:41:56','reception','2025-12-11 18:41:56',0),(0,0,'2526','H','O',6533,1,0,'2025-12-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 18:44:04','reception','2025-12-11 18:44:04',0),(0,0,'2526','H','O',6534,1,0,'2025-12-11','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 18:47:08','reception','2025-12-11 18:47:08',0),(0,0,'2526','H','O',6535,1,0,'2025-12-11','00:00:00','XRY0254',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-11 18:49:12','manshi','2025-12-11 18:49:12',0),(0,0,'2526','H','O',6536,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 18:50:09','drashti','2025-12-11 19:42:44',0),(0,0,'2526','H','O',6537,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 18:51:21','reception','2025-12-11 19:44:44',0),(0,0,'2526','H','O',6538,1,0,'2025-12-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 18:54:12','drashti','2025-12-11 18:54:12',0),(0,0,'2526','H','O',6539,1,0,'2025-12-11','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 19:00:07','reception','2025-12-11 19:00:07',0),(0,0,'2526','H','O',6540,1,0,'2025-12-11','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-11 19:09:26','drashti','2025-12-11 19:09:26',0),(0,0,'2526','H','O',6541,1,0,'2025-12-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-11 19:13:41','janvi','2025-12-11 19:13:41',0),(0,0,'2526','H','O',6542,1,0,'2025-12-11','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 19:15:00','drashti','2025-12-11 19:15:00',0),(0,0,'2526','H','O',6543,1,0,'2025-12-11','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-11 19:19:39','janvi','2025-12-11 19:19:39',0),(0,0,'2526','H','O',6544,1,0,'2025-12-11','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 19:19:44','reception','2025-12-11 19:19:44',0),(0,0,'2526','H','O',6544,2,0,'2025-12-11','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-11 19:19:44','reception','2025-12-11 19:19:44',0),(0,0,'2526','H','O',6545,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 19:22:21','drashti','2025-12-11 19:22:21',0),(0,0,'2526','H','O',6546,1,0,'2025-12-11','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-11 19:25:19','janvi','2025-12-11 19:25:19',0),(0,0,'2526','H','O',6547,1,0,'2025-12-11','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 19:36:51','drashti','2025-12-11 19:36:51',0),(0,0,'2526','H','O',6548,1,0,'2025-12-11','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 19:38:19','drashti','2025-12-11 19:38:19',0),(0,0,'2526','H','O',6549,1,0,'2025-12-11','00:00:00','CASE',0,-1.00,400,-400,'P',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-11 19:42:44','drashti','2025-12-11 19:42:44',0),(0,0,'2526','H','O',6550,1,0,'2025-12-11','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-11 19:44:44','reception','2025-12-11 19:44:44',0),(0,0,'2526','H','O',6551,1,0,'2025-12-11','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-11 20:06:01','janvi','2025-12-11 20:06:01',0),(0,0,'2526','H','O',6552,1,0,'2025-12-11','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-11 20:21:43','janvi','2025-12-11 20:21:43',0),(0,0,'2526','H','O',6553,1,0,'2025-12-12','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-12 08:37:07','drashti','2025-12-12 13:03:16',0),(0,0,'2526','H','O',6553,2,0,'2025-12-12','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-12 08:37:07','drashti','2025-12-12 13:03:16',0),(0,0,'2526','H','O',6554,1,0,'2025-12-12','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-12 08:40:31','reception','2025-12-12 08:40:31',0),(0,0,'2526','H','O',6554,2,0,'2025-12-12','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-12 08:40:31','reception','2025-12-12 08:40:31',0),(0,0,'2526','H','O',6554,3,0,'2025-12-12','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 08:40:31','reception','2025-12-12 08:40:31',0),(0,0,'2526','H','O',6554,4,0,'2025-12-12','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-12 08:40:31','reception','2025-12-12 08:40:31',0),(0,0,'2526','H','O',6555,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 08:54:40','reception','2025-12-12 08:54:40',0),(0,0,'2526','H','O',6555,2,0,'2025-12-12','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 08:54:40','reception','2025-12-12 08:54:40',0),(0,0,'2526','H','O',6556,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-12 09:31:43','janvi','2025-12-12 09:31:43',0),(0,0,'2526','H','O',6557,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 09:48:07','reception','2025-12-12 09:48:07',0),(0,0,'2526','H','O',6558,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 09:49:33','reception','2025-12-12 09:49:33',0),(0,0,'2526','H','O',6559,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 10:15:53','reception','2025-12-12 10:15:53',0),(0,0,'2526','H','O',6560,1,0,'2025-12-12','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 10:25:16','reception','2025-12-12 10:25:16',0),(0,0,'2526','H','O',6561,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 10:33:41','reception','2025-12-12 10:33:41',0),(0,0,'2526','H','O',6562,1,0,'2025-12-12','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-12 10:33:49','drashti','2025-12-12 10:33:49',0),(0,0,'2526','H','O',6563,1,0,'2025-12-12','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-12 10:46:25','janvi','2025-12-12 10:46:25',0),(0,0,'2526','H','O',6564,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 10:48:12','reception','2025-12-12 10:48:12',0),(0,0,'2526','H','O',6565,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 10:48:19','reception','2025-12-12 12:33:05',0),(0,0,'2526','H','O',6566,1,0,'2025-12-12','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 10:52:00','reception','2025-12-12 10:52:00',0),(0,0,'2526','H','O',6567,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-12 10:52:30','janvi','2025-12-12 10:52:30',0),(0,0,'2526','H','O',6568,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 10:53:19','drashti','2025-12-12 10:53:19',0),(0,0,'2526','H','O',6569,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 10:59:20','drashti','2025-12-12 10:59:20',0),(0,0,'2526','H','O',6570,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 11:04:47','reception','2025-12-12 12:19:04',0),(0,0,'2526','H','O',6571,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 11:06:01','reception','2025-12-12 11:06:01',0),(0,0,'2526','H','O',6572,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-12 11:06:34','manshi','2025-12-12 11:06:34',0),(0,0,'2526','H','O',6573,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-12 11:10:54','janvi','2025-12-12 11:10:54',0),(0,0,'2526','H','O',6574,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-12 11:12:20','reception','2025-12-12 11:12:20',0),(0,0,'2526','H','O',6575,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-12 11:15:10','janvi','2025-12-12 11:15:10',0),(0,0,'2526','H','O',6576,1,0,'2025-12-12','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 11:15:46','reception','2025-12-12 11:15:46',0),(0,0,'2526','H','O',6576,2,0,'2025-12-12','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 11:15:46','reception','2025-12-12 11:15:46',0),(0,0,'2526','H','O',6576,3,0,'2025-12-12','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 11:15:46','reception','2025-12-12 11:15:46',0),(0,0,'2526','H','O',6576,4,0,'2025-12-12','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 11:15:46','reception','2025-12-12 11:15:46',0),(0,0,'2526','H','O',6577,1,0,'2025-12-12','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-12 11:18:52','drashti','2025-12-12 11:18:52',0),(0,0,'2526','H','O',6578,1,0,'2025-12-12','00:00:00','OETR0003',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 11:20:37','reception','2025-12-12 11:20:37',0),(0,0,'2526','H','O',6579,1,0,'2025-12-12','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-12 11:24:54','janvi','2025-12-12 11:24:54',0),(0,0,'2526','H','O',6580,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 11:25:13','reception','2025-12-12 12:26:08',0),(0,0,'2526','H','O',6581,1,0,'2025-12-12','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-12 11:25:52','drashti','2025-12-12 11:25:52',0),(0,0,'2526','H','O',6582,1,0,'2025-12-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 11:27:19','drashti','2025-12-12 11:27:19',0),(0,0,'2526','H','O',6583,1,0,'2025-12-12','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-12 11:28:18','janvi','2025-12-12 11:28:18',0),(0,0,'2526','H','O',6584,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 11:28:45','reception','2025-12-12 11:28:45',0),(0,0,'2526','H','O',6585,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 11:32:59','reception','2025-12-12 11:32:59',0),(0,0,'2526','H','O',6586,1,0,'2025-12-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 11:34:10','drashti','2025-12-12 11:34:10',0),(0,0,'2526','H','O',6587,1,0,'2025-12-12','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 11:35:13','reception','2025-12-12 11:35:13',0),(0,0,'2526','H','O',6587,2,0,'2025-12-12','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 11:35:13','reception','2025-12-12 11:35:13',0),(0,0,'2526','H','O',6587,3,0,'2025-12-12','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 11:35:13','reception','2025-12-12 11:35:13',0),(0,0,'2526','H','O',6588,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 11:37:53','reception','2025-12-12 11:37:53',0),(0,0,'2526','H','O',6589,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 11:40:30','reception','2025-12-12 11:40:30',0),(0,0,'2526','H','O',6590,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-12 11:42:05','manshi','2025-12-12 11:54:05',0),(0,0,'2526','H','O',6591,1,0,'2025-12-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-12 11:42:29','janvi','2025-12-12 11:42:29',0),(0,0,'2526','H','O',6592,1,0,'2025-12-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 11:44:44','drashti','2025-12-12 11:44:44',0),(0,0,'2526','H','O',6593,1,0,'2025-12-12','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 11:48:01','reception','2025-12-12 11:48:01',0),(0,0,'2526','H','O',6593,2,0,'2025-12-12','00:00:00','NEU10019',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 11:48:01','reception','2025-12-12 11:48:01',0),(0,0,'2526','H','O',6593,3,0,'2025-12-12','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 11:48:01','reception','2025-12-12 11:48:01',0),(0,0,'2526','H','O',6594,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-12 11:52:25','janvi','2025-12-12 11:52:25',0),(0,0,'2526','H','O',6595,1,0,'2025-12-12','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-12 11:54:05','manshi','2025-12-12 11:54:05',0),(0,0,'2526','H','O',6596,1,0,'2025-12-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-12 11:59:28','janvi','2025-12-12 11:59:28',0),(0,0,'2526','H','O',6597,1,0,'2025-12-12','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-12 12:00:09','drashti','2025-12-12 12:00:09',0),(0,0,'2526','H','O',6597,2,0,'2025-12-12','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-12 12:00:09','drashti','2025-12-12 12:00:09',0),(0,0,'2526','H','O',6598,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 12:03:29','reception','2025-12-12 12:03:29',0),(0,0,'2526','H','O',6599,1,0,'2025-12-12','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-12 12:03:41','janvi','2025-12-12 12:03:41',0),(0,0,'2526','H','O',6600,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 12:06:32','reception','2025-12-12 12:06:32',0),(0,0,'2526','H','O',6601,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 12:15:26','reception','2025-12-12 12:15:26',0),(0,0,'2526','H','O',6602,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 12:16:37','reception','2025-12-12 12:16:37',0),(0,0,'2526','H','O',6603,1,0,'2025-12-12','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 12:18:53','reception','2025-12-12 12:18:53',0),(0,0,'2526','H','O',6604,1,0,'2025-12-12','00:00:00','CASE',0,0.00,0,0,'A',0,0,0.00,0.00,0.00,0.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 12:19:04','reception','2025-12-12 12:19:04',0),(0,0,'2526','H','O',6605,1,0,'2025-12-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 12:20:02','drashti','2025-12-12 12:20:02',0),(0,0,'2526','H','O',6606,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 12:21:54','drashti','2025-12-12 12:21:54',0),(0,0,'2526','H','O',6607,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 12:22:54','reception','2025-12-12 20:10:01',0),(0,0,'2526','H','O',6608,1,0,'2025-12-12','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 12:26:08','reception','2025-12-12 12:26:08',0),(0,0,'2526','H','O',6609,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 12:27:06','reception','2025-12-12 12:27:06',0),(0,0,'2526','H','O',6610,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 12:27:43','drashti','2025-12-12 12:27:43',0),(0,0,'2526','H','O',6611,1,0,'2025-12-12','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-12 12:31:56','priyanshi','2025-12-12 12:31:56',0),(0,0,'2526','H','O',6612,1,0,'2025-12-12','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 12:33:05','reception','2025-12-12 12:33:05',0),(0,0,'2526','H','O',6613,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 12:40:25','drashti','2025-12-12 12:40:25',0),(0,0,'2526','H','O',6614,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 12:43:46','drashti','2025-12-12 13:06:40',0),(0,0,'2526','H','O',6615,1,0,'2025-12-12','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 12:53:37','reception','2025-12-12 12:53:37',0),(0,0,'2526','H','O',6616,1,0,'2025-12-12','00:00:00','SURG0005',0,-1.00,800,-800,'P',0,0,-800.00,0.00,0.00,-800.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-12 13:03:16','drashti','2025-12-12 13:03:16',0),(0,0,'2526','H','O',6616,2,0,'2025-12-12','00:00:00','OPWD0013',0,-2.00,100,-200,'P',0,0,-200.00,0.00,0.00,-200.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-12 13:03:16','drashti','2025-12-12 13:03:16',0),(0,0,'2526','H','O',6617,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-12 13:05:15','drashti','2025-12-12 13:05:15',0),(0,0,'2526','H','O',6618,1,0,'2025-12-12','00:00:00','OPWD0034',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-12 13:06:16','reception','2025-12-12 13:06:16',0),(0,0,'2526','H','O',6619,1,0,'2025-12-12','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 13:06:40','drashti','2025-12-12 13:06:40',0),(0,0,'2526','H','O',6620,1,0,'2025-12-12','00:00:00','CASE',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 13:11:26','drashti','2025-12-12 13:11:26',0),(0,0,'2526','H','O',6621,1,0,'2025-12-12','00:00:00','OPWD0034',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-12 13:15:25','reception','2025-12-12 13:15:25',0),(0,0,'2526','H','O',6622,1,0,'2025-12-12','00:00:00','OPWD0034',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-12 13:15:32','reception','2025-12-12 13:18:34',0),(0,0,'2526','H','O',6623,1,0,'2025-12-12','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 13:16:59','drashti','2025-12-12 13:16:59',0),(0,0,'2526','H','O',6623,2,0,'2025-12-12','00:00:00','OPWD0034',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 13:16:59','drashti','2025-12-12 13:16:59',0),(0,0,'2526','H','O',6624,1,0,'2025-12-12','00:00:00','OPWD0034',0,-1.00,1000,-1000,'P',0,0,-1000.00,0.00,0.00,-1000.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-12 13:18:34','reception','2025-12-12 13:18:34',0),(0,0,'2526','H','O',6625,1,0,'2025-12-12','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 13:28:56','reception','2025-12-12 13:32:52',0),(0,0,'2526','H','O',6625,2,0,'2025-12-12','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 13:28:56','reception','2025-12-12 13:32:52',0),(0,0,'2526','H','O',6625,3,0,'2025-12-12','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 13:28:56','reception','2025-12-12 13:32:52',0),(0,0,'2526','H','O',6626,1,0,'2025-12-12','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 13:28:59','reception','2025-12-12 13:28:59',0),(0,0,'2526','H','O',6626,2,0,'2025-12-12','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 13:28:59','reception','2025-12-12 13:28:59',0),(0,0,'2526','H','O',6626,3,0,'2025-12-12','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 13:28:59','reception','2025-12-12 13:28:59',0),(0,0,'2526','H','O',6627,1,0,'2025-12-12','00:00:00','NEU10015',0,-1.00,500,-500,'P',0,0,-500.00,0.00,0.00,-500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 13:32:52','reception','2025-12-12 13:32:52',0),(0,0,'2526','H','O',6627,2,0,'2025-12-12','00:00:00','NEU10019',0,-1.00,2200,-2200,'P',0,0,-2200.00,0.00,0.00,-2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 13:32:52','reception','2025-12-12 13:32:52',0),(0,0,'2526','H','O',6627,3,0,'2025-12-12','00:00:00','NEU10017',0,-1.00,2200,-2200,'P',0,0,-2200.00,0.00,0.00,-2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 13:32:52','reception','2025-12-12 13:32:52',0),(0,0,'2526','H','O',6628,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-12 13:33:44','janvi','2025-12-12 13:33:44',0),(0,0,'2526','H','O',6629,1,0,'2025-12-12','00:00:00','OPWD0025',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 13:48:35','drashti','2025-12-12 13:48:35',0),(0,0,'2526','H','O',6630,1,0,'2025-12-12','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 16:19:11','reception','2025-12-12 16:19:11',0),(0,0,'2526','H','O',6631,1,0,'2025-12-12','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 16:24:36','reception','2025-12-12 16:24:36',0),(0,0,'2526','H','O',6632,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 16:26:01','reception','2025-12-12 16:26:01',0),(0,0,'2526','H','O',6633,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 16:33:01','reception','2025-12-12 16:33:01',0),(0,0,'2526','H','O',6634,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 16:36:02','reception','2025-12-12 16:36:02',0),(0,0,'2526','H','O',6635,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 16:36:54','reception','2025-12-12 17:01:59',0),(0,0,'2526','H','O',6636,1,0,'2025-12-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 16:45:47','drashti','2025-12-12 16:45:47',0),(0,0,'2526','H','O',6637,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 16:53:50','reception','2025-12-12 16:53:50',0),(0,0,'2526','H','O',6638,1,0,'2025-12-12','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 17:01:59','reception','2025-12-12 17:01:59',0),(0,0,'2526','H','O',6639,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 17:08:29','reception','2025-12-12 17:08:29',0),(0,0,'2526','H','O',6640,1,0,'2025-12-12','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-12 17:10:21','drashti','2025-12-12 17:10:21',0),(0,0,'2526','H','O',6641,1,0,'2025-12-12','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 17:13:30','reception','2025-12-12 17:13:30',0),(0,0,'2526','H','O',6642,1,0,'2025-12-12','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-12 17:21:21','drashti','2025-12-12 17:21:21',0),(0,0,'2526','H','O',6643,1,0,'2025-12-12','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 17:24:12','reception','2025-12-12 17:24:12',0),(0,0,'2526','H','O',6644,1,0,'2025-12-12','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 17:27:10','reception','2025-12-12 17:27:10',0),(0,0,'2526','H','O',6644,2,0,'2025-12-12','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 17:27:10','reception','2025-12-12 17:27:10',0),(0,0,'2526','H','O',6645,1,0,'2025-12-12','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 17:29:59','reception','2025-12-12 17:29:59',0),(0,0,'2526','H','O',6646,1,0,'2025-12-12','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 17:34:04','reception','2025-12-12 17:34:04',0),(0,0,'2526','H','O',6647,1,0,'2025-12-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 17:47:33','drashti','2025-12-12 17:47:33',0),(0,0,'2526','H','O',6648,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 17:48:43','reception','2025-12-12 17:48:43',0),(0,0,'2526','H','O',6649,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 17:56:24','reception','2025-12-12 17:56:24',0),(0,0,'2526','H','O',6650,1,0,'2025-12-12','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 17:58:33','reception','2025-12-12 17:58:33',0),(0,0,'2526','H','O',6651,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 17:59:56','reception','2025-12-12 17:59:56',0),(0,0,'2526','H','O',6652,1,0,'2025-12-12','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 18:00:08','drashti','2025-12-12 18:00:08',0),(0,0,'2526','H','O',6653,1,0,'2025-12-12','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 18:02:03','reception','2025-12-12 18:02:03',0),(0,0,'2526','H','O',6653,2,0,'2025-12-12','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 18:02:03','reception','2025-12-12 18:02:03',0),(0,0,'2526','H','O',6654,1,0,'2025-12-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-12 18:06:09','reception','2025-12-12 18:06:09',0),(0,0,'2526','H','O',6655,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 18:12:40','reception','2025-12-12 18:12:40',0),(0,0,'2526','H','O',6656,1,0,'2025-12-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-12 18:14:40','reception','2025-12-12 18:14:40',0),(0,0,'2526','H','O',6657,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-12 18:16:09','manshi','2025-12-12 18:16:09',0),(0,0,'2526','H','O',6658,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-12 18:16:19','janvi','2025-12-12 18:16:19',0),(0,0,'2526','H','O',6658,2,0,'2025-12-12','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-12 18:16:19','janvi','2025-12-12 18:16:19',0),(0,0,'2526','H','O',6659,1,0,'2025-12-12','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-12 18:17:26','reception','2025-12-12 18:17:26',0),(0,0,'2526','H','O',6660,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-12 18:19:38','janvi','2025-12-12 18:19:38',0),(0,0,'2526','H','O',6661,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 18:20:02','drashti','2025-12-12 18:20:02',0),(0,0,'2526','H','O',6662,1,0,'2025-12-12','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-12 18:20:24','manshi','2025-12-12 18:20:24',0),(0,0,'2526','H','O',6663,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 18:21:34','drashti','2025-12-12 18:21:34',0),(0,0,'2526','H','O',6664,1,0,'2025-12-12','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-12 18:21:50','janvi','2025-12-12 18:21:50',0),(0,0,'2526','H','O',6665,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 18:23:41','drashti','2025-12-12 18:23:41',0),(0,0,'2526','H','O',6666,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-12 18:24:25','janvi','2025-12-12 18:24:25',0),(0,0,'2526','H','O',6667,1,0,'2025-12-12','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-12 18:35:04','manshi','2025-12-12 18:35:04',0),(0,0,'2526','H','O',6668,1,0,'2025-12-12','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 18:35:25','reception','2025-12-12 18:35:25',0),(0,0,'2526','H','O',6668,2,0,'2025-12-12','00:00:00','NEU10019',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 18:35:25','reception','2025-12-12 18:35:25',0),(0,0,'2526','H','O',6668,3,0,'2025-12-12','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 18:35:25','reception','2025-12-12 18:35:25',0),(0,0,'2526','H','O',6669,1,0,'2025-12-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 18:41:48','drashti','2025-12-12 19:05:56',0),(0,0,'2526','H','O',6670,1,0,'2025-12-12','00:00:00','XRY0308',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-12 18:42:46','manshi','2025-12-12 18:42:46',0),(0,0,'2526','H','O',6671,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-12 18:47:17','janvi','2025-12-12 18:47:17',0),(0,0,'2526','H','O',6672,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 18:48:05','reception','2025-12-12 18:48:05',0),(0,0,'2526','H','O',6673,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-12 18:48:30','janvi','2025-12-12 18:48:30',0),(0,0,'2526','H','O',6674,1,0,'2025-12-12','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 18:49:16','reception','2025-12-12 18:49:16',0),(0,0,'2526','H','O',6674,2,0,'2025-12-12','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-12 18:49:16','reception','2025-12-12 18:49:16',0),(0,0,'2526','H','O',6675,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-12 18:49:38','janvi','2025-12-12 19:44:38',0),(0,0,'2526','H','O',6676,1,0,'2025-12-12','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 18:49:50','drashti','2025-12-12 18:49:50',0),(0,0,'2526','H','O',6676,2,0,'2025-12-12','00:00:00','OPWD0015',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 18:49:50','drashti','2025-12-12 18:49:50',0),(0,0,'2526','H','O',6676,3,0,'2025-12-12','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 18:49:50','drashti','2025-12-12 18:49:50',0),(0,0,'2526','H','O',6676,4,0,'2025-12-12','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 18:49:50','drashti','2025-12-12 18:49:50',0),(0,0,'2526','H','O',6677,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 18:50:28','reception','2025-12-12 18:50:28',0),(0,0,'2526','H','O',6678,1,0,'2025-12-12','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-12 18:54:51','manshi','2025-12-12 18:54:51',0),(0,0,'2526','H','O',6679,1,0,'2025-12-12','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-12 18:56:12','janvi','2025-12-12 18:56:12',0),(0,0,'2526','H','O',6680,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 18:59:57','drashti','2025-12-12 18:59:57',0),(0,0,'2526','H','O',6681,1,0,'2025-12-12','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-12 19:00:33','reception','2025-12-12 19:00:33',0),(0,0,'2526','H','O',6682,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-12 19:01:39','janvi','2025-12-12 19:01:39',0),(0,0,'2526','H','O',6683,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 19:03:41','drashti','2025-12-12 19:03:41',0),(0,0,'2526','H','O',6684,1,0,'2025-12-12','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 19:05:56','drashti','2025-12-12 19:05:56',0),(0,0,'2526','H','O',6685,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 19:08:49','drashti','2025-12-12 19:08:49',0),(0,0,'2526','H','O',6686,1,0,'2025-12-12','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-12 19:13:30','janvi','2025-12-12 19:13:30',0),(0,0,'2526','H','O',6687,1,0,'2025-12-12','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 19:15:50','drashti','2025-12-12 19:15:50',0),(0,0,'2526','H','O',6687,2,0,'2025-12-12','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 19:15:50','drashti','2025-12-12 19:15:50',0),(0,0,'2526','H','O',6688,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-12 19:16:32','janvi','2025-12-12 19:16:32',0),(0,0,'2526','H','O',6689,1,0,'2025-12-12','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-12 19:27:42','drashti','2025-12-12 19:27:42',0),(0,0,'2526','H','O',6690,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-12 19:29:23','drashti','2025-12-12 19:29:23',0),(0,0,'2526','H','O',6691,1,0,'2025-12-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-12 19:36:23','reception','2025-12-12 19:36:23',0),(0,0,'2526','H','O',6692,1,0,'2025-12-12','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-12 19:44:38','janvi','2025-12-12 19:44:38',0),(0,0,'2526','H','O',6693,1,0,'2025-12-12','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-12 19:52:48','manshi','2025-12-12 19:52:48',0),(0,0,'2526','H','O',6693,2,0,'2025-12-12','00:00:00','XRY0449',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-12 19:52:48','manshi','2025-12-12 19:52:48',0),(0,0,'2526','H','O',6694,1,0,'2025-12-12','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 19:54:37','reception','2025-12-12 19:54:37',0),(0,0,'2526','H','O',6695,1,0,'2025-12-12','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-12-12 20:06:29','shweta','2025-12-12 20:06:29',0),(0,0,'2526','H','O',6696,1,0,'2025-12-12','00:00:00','CASE',0,-1.00,400,-400,'P',0,0,-400.00,0.00,0.00,-400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 20:10:01','reception','2025-12-12 20:10:01',0),(0,0,'2526','H','O',6697,1,0,'2025-12-12','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-12 20:13:15','reception','2025-12-12 20:13:15',0),(0,0,'2526','H','O',6698,1,0,'2025-12-12','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-12 20:26:24','shweta','2025-12-12 20:26:24',0),(0,0,'2526','H','O',6699,1,0,'2025-12-12','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-12 20:29:13','priyanshi','2025-12-12 20:29:13',0),(0,0,'2526','H','O',6699,2,0,'2025-12-12','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-12-12 20:29:13','priyanshi','2025-12-12 20:29:13',0),(0,0,'2526','H','O',6699,3,0,'2025-12-12','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-12 20:29:13','priyanshi','2025-12-12 20:29:13',0),(0,0,'2526','H','O',6699,4,0,'2025-12-12','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-12 20:29:13','priyanshi','2025-12-12 20:29:13',0),(0,0,'2526','H','O',6700,1,0,'2025-12-13','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-13 08:39:18','reception','2025-12-13 08:39:18',0),(0,0,'2526','H','O',6700,2,0,'2025-12-13','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 08:39:18','reception','2025-12-13 08:39:18',0),(0,0,'2526','H','O',6701,1,0,'2025-12-13','00:00:00','OPWD0023',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-12-13 08:40:16','reception','2025-12-13 08:40:16',0),(0,0,'2526','H','O',6702,1,0,'2025-12-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-13 09:37:52','reception','2025-12-13 09:37:52',0),(0,0,'2526','H','O',6703,1,0,'2025-12-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 09:58:26','reception','2025-12-13 09:58:26',0),(0,0,'2526','H','O',6704,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-13 10:02:04','priyanshi','2025-12-13 10:02:04',0),(0,0,'2526','H','O',6705,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 10:06:35','reception','2025-12-13 10:06:35',0),(0,0,'2526','H','O',6706,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-12-13 10:07:11','priyanshi','2025-12-13 10:07:11',0),(0,0,'2526','H','O',6707,1,0,'2025-12-13','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-13 10:07:59','drashti','2025-12-13 10:07:59',0),(0,0,'2526','H','O',6708,1,0,'2025-12-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-13 10:08:55','priyanshi','2025-12-13 10:08:55',0),(0,0,'2526','H','O',6709,1,0,'2025-12-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-13 10:09:25','drashti','2025-12-13 10:09:25',0),(0,0,'2526','H','O',6710,1,0,'2025-12-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 10:10:36','reception','2025-12-13 10:10:36',0),(0,0,'2526','H','O',6711,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 10:26:49','reception','2025-12-13 11:21:38',0),(0,0,'2526','H','O',6712,1,0,'2025-12-13','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-13 10:30:15','drashti','2025-12-13 10:30:15',0),(0,0,'2526','H','O',6713,1,0,'2025-12-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 10:34:46','reception','2025-12-13 10:34:46',0),(0,0,'2526','H','O',6714,1,0,'2025-12-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-13 10:35:35','drashti','2025-12-13 10:35:35',0),(0,0,'2526','H','O',6715,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','priyanshi','2025-12-13 10:36:35','priyanshi','2025-12-13 10:36:35',0),(0,0,'2526','H','O',6715,2,0,'2025-12-13','00:00:00','XRY0308',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-12-13 10:36:35','priyanshi','2025-12-13 10:36:35',0),(0,0,'2526','H','O',6716,1,0,'2025-12-13','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-13 10:37:21','priyanshi','2025-12-13 10:37:21',0),(0,0,'2526','H','O',6717,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 10:37:32','reception','2025-12-13 10:37:32',0),(0,0,'2526','H','O',6718,1,0,'2025-12-13','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 10:39:53','reception','2025-12-13 10:39:53',0),(0,0,'2526','H','O',6719,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-13 10:40:28','priyanshi','2025-12-13 10:40:28',0),(0,0,'2526','H','O',6720,1,0,'2025-12-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-13 10:40:40','drashti','2025-12-13 10:40:40',0),(0,0,'2526','H','O',6721,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 10:40:42','reception','2025-12-13 10:40:42',0),(0,0,'2526','H','O',6722,1,0,'2025-12-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-13 10:41:42','drashti','2025-12-13 10:41:42',0),(0,0,'2526','H','O',6723,1,0,'2025-12-13','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-13 10:45:50','priyanshi','2025-12-13 10:45:50',0),(0,0,'2526','H','O',6724,1,0,'2025-12-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-13 10:47:30','drashti','2025-12-13 10:47:30',0),(0,0,'2526','H','O',6725,1,0,'2025-12-13','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 10:52:54','reception','2025-12-13 10:52:54',0),(0,0,'2526','H','O',6726,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-13 10:53:10','priyanshi','2025-12-13 10:53:10',0),(0,0,'2526','H','O',6727,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 10:54:38','reception','2025-12-13 10:54:38',0),(0,0,'2526','H','O',6728,1,0,'2025-12-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','priyanshi','2025-12-13 10:58:26','priyanshi','2025-12-13 10:58:26',0),(0,0,'2526','H','O',6729,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 11:02:14','reception','2025-12-13 11:02:14',0),(0,0,'2526','H','O',6730,1,0,'2025-12-13','00:00:00','XRY0388',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-12-13 11:04:40','priyanshi','2025-12-13 11:04:40',0),(0,0,'2526','H','O',6731,1,0,'2025-12-13','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-13 11:04:50','drashti','2025-12-13 11:04:50',0),(0,0,'2526','H','O',6732,1,0,'2025-12-13','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 11:04:55','reception','2025-12-13 11:04:55',0),(0,0,'2526','H','O',6733,1,0,'2025-12-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-12-13 11:06:32','priyanshi','2025-12-13 11:06:32',0),(0,0,'2526','H','O',6734,1,0,'2025-12-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 11:10:34','reception','2025-12-13 11:10:34',0),(0,0,'2526','H','O',6735,1,0,'2025-12-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 11:13:44','reception','2025-12-13 11:13:44',0),(0,0,'2526','H','O',6736,1,0,'2025-12-13','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-13 11:13:49','janvi','2025-12-13 11:39:18',0),(0,0,'2526','H','O',6737,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 11:15:01','reception','2025-12-13 11:15:01',0),(0,0,'2526','H','O',6738,1,0,'2025-12-13','00:00:00','OPWD0007',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-13 11:15:20','drashti','2025-12-13 11:15:20',0),(0,0,'2526','H','O',6739,1,0,'2025-12-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-13 11:16:47','priyanshi','2025-12-13 11:16:47',0),(0,0,'2526','H','O',6740,1,0,'2025-12-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 11:18:44','reception','2025-12-13 11:18:44',0),(0,0,'2526','H','O',6741,1,0,'2025-12-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-13 11:19:17','drashti','2025-12-13 11:19:17',0),(0,0,'2526','H','O',6742,1,0,'2025-12-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 11:20:30','reception','2025-12-13 11:20:30',0),(0,0,'2526','H','O',6742,2,0,'2025-12-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 11:20:30','reception','2025-12-13 11:20:30',0),(0,0,'2526','H','O',6742,3,0,'2025-12-13','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 11:20:30','reception','2025-12-13 11:20:30',0),(0,0,'2526','H','O',6743,1,0,'2025-12-13','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 11:21:38','reception','2025-12-13 11:21:38',0),(0,0,'2526','H','O',6744,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 11:23:46','reception','2025-12-13 11:23:46',0),(0,0,'2526','H','O',6745,1,0,'2025-12-13','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-13 11:26:49','priyanshi','2025-12-13 11:26:49',0),(0,0,'2526','H','O',6746,1,0,'2025-12-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-13 11:28:51','reception','2025-12-13 11:28:51',0),(0,0,'2526','H','O',6747,1,0,'2025-12-13','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-13 11:29:36','priyanshi','2025-12-13 11:29:36',0),(0,0,'2526','H','O',6747,2,0,'2025-12-13','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-13 11:29:36','priyanshi','2025-12-13 11:29:36',0),(0,0,'2526','H','O',6748,1,0,'2025-12-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 11:30:41','reception','2025-12-13 11:30:41',0),(0,0,'2526','H','O',6749,1,0,'2025-12-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-13 11:33:00','priyanshi','2025-12-13 11:33:00',0),(0,0,'2526','H','O',6750,1,0,'2025-12-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 11:36:42','reception','2025-12-13 11:36:42',0),(0,0,'2526','H','O',6751,1,0,'2025-12-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 11:37:09','reception','2025-12-13 11:37:09',0),(0,0,'2526','H','O',6751,2,0,'2025-12-13','00:00:00','NEU10016',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 11:37:09','reception','2025-12-13 11:37:09',0),(0,0,'2526','H','O',6752,1,0,'2025-12-13','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-13 11:38:27','drashti','2025-12-13 11:38:27',0),(0,0,'2526','H','O',6753,1,0,'2025-12-13','00:00:00','CASE',0,-1.00,300,-300,'P',0,0,-300.00,0.00,0.00,-300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-13 11:39:18','janvi','2025-12-13 11:39:18',0),(0,0,'2526','H','O',6754,1,0,'2025-12-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 11:52:44','reception','2025-12-13 11:52:44',0),(0,0,'2526','H','O',6754,2,0,'2025-12-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 11:52:44','reception','2025-12-13 11:52:44',0),(0,0,'2526','H','O',6754,3,0,'2025-12-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 11:52:44','reception','2025-12-13 11:52:44',0),(0,0,'2526','H','O',6755,1,0,'2025-12-13','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-13 11:58:01','drashti','2025-12-13 11:58:01',0),(0,0,'2526','H','O',6756,1,0,'2025-12-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-13 12:03:56','reception','2025-12-13 12:03:56',0),(0,0,'2526','H','O',6757,1,0,'2025-12-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 12:07:25','reception','2025-12-13 12:07:25',0),(0,0,'2526','H','O',6757,2,0,'2025-12-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 12:07:25','reception','2025-12-13 12:07:25',0),(0,0,'2526','H','O',6757,3,0,'2025-12-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 12:07:25','reception','2025-12-13 12:07:25',0),(0,0,'2526','H','O',6758,1,0,'2025-12-13','00:00:00','OPWD0023',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-13 12:13:35','janvi','2025-12-13 12:13:35',0),(0,0,'2526','H','O',6759,1,0,'2025-12-13','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 12:14:42','reception','2025-12-13 12:14:42',0),(0,0,'2526','H','O',6760,1,0,'2025-12-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-13 12:15:56','drashti','2025-12-13 12:15:56',0),(0,0,'2526','H','O',6761,1,0,'2025-12-13','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 12:17:58','reception','2025-12-13 12:17:58',0),(0,0,'2526','H','O',6762,1,0,'2025-12-13','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-13 12:20:00','janvi','2025-12-13 12:20:00',0),(0,0,'2526','H','O',6763,1,0,'2025-12-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 12:21:30','reception','2025-12-13 12:21:30',0),(0,0,'2526','H','O',6763,2,0,'2025-12-13','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 12:21:30','reception','2025-12-13 12:21:30',0),(0,0,'2526','H','O',6764,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 12:26:50','reception','2025-12-13 12:26:50',0),(0,0,'2526','H','O',6765,1,0,'2025-12-13','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-13 12:31:38','drashti','2025-12-13 12:31:38',0),(0,0,'2526','H','O',6766,1,0,'2025-12-13','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-13 12:31:44','janvi','2025-12-13 12:31:44',0),(0,0,'2526','H','O',6767,1,0,'2025-12-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-13 12:34:00','reception','2025-12-13 12:34:00',0),(0,0,'2526','H','O',6768,1,0,'2025-12-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-13 12:37:04','drashti','2025-12-13 12:37:04',0),(0,0,'2526','H','O',6769,1,0,'2025-12-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-13 12:37:23','drashti','2025-12-13 12:37:23',0),(0,0,'2526','H','O',6770,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 12:38:59','reception','2025-12-13 12:38:59',0),(0,0,'2526','H','O',6771,1,0,'2025-12-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 12:41:18','reception','2025-12-13 12:41:18',0),(0,0,'2526','H','O',6771,2,0,'2025-12-13','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 12:41:18','reception','2025-12-13 12:41:18',0),(0,0,'2526','H','O',6772,1,0,'2025-12-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-13 12:45:24','janvi','2025-12-13 12:45:24',0),(0,0,'2526','H','O',6773,1,0,'2025-12-13','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 12:51:45','reception','2025-12-13 12:51:45',0),(0,0,'2526','H','O',6773,2,0,'2025-12-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 12:51:45','reception','2025-12-13 12:51:45',0),(0,0,'2526','H','O',6773,3,0,'2025-12-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 12:51:45','reception','2025-12-13 12:51:45',0),(0,0,'2526','H','O',6774,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-13 13:10:56','reception','2025-12-13 13:10:56',0),(0,0,'2526','H','O',6775,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-13 13:13:20','shweta','2025-12-13 13:13:20',0),(0,0,'2526','H','O',6776,1,0,'2025-12-13','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-13 13:15:29','drashti','2025-12-13 13:15:29',0),(0,0,'2526','H','O',6777,1,0,'2025-12-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 13:16:58','reception','2025-12-13 13:16:58',0),(0,0,'2526','H','O',6777,2,0,'2025-12-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 13:16:58','reception','2025-12-13 13:16:58',0),(0,0,'2526','H','O',6778,1,0,'2025-12-13','00:00:00','XRY0292',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-12-13 13:35:54','shweta','2025-12-13 13:35:54',0),(0,0,'2526','H','O',6779,1,0,'2025-12-13','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 13:54:52','reception','2025-12-13 13:54:52',0),(0,0,'2526','H','O',6779,2,0,'2025-12-13','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-13 13:54:52','reception','2025-12-13 13:54:52',0),(0,0,'2526','H','O',6780,1,0,'2025-12-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-13 17:12:40','reception','2025-12-13 17:12:40',0),(0,0,'2526','H','O',6781,1,0,'2025-12-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-13 17:14:12','reception','2025-12-13 17:14:12',0),(0,0,'2526','H','O',6782,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-13 17:34:56','janvi','2025-12-13 17:34:56',0),(0,0,'2526','H','O',6783,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-13 17:48:33','reception','2025-12-13 17:48:33',0),(0,0,'2526','H','O',6784,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-13 17:58:18','reception','2025-12-13 17:58:18',0),(0,0,'2526','H','O',6785,1,0,'2025-12-13','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-13 18:03:28','janvi','2025-12-13 18:03:28',0),(0,0,'2526','H','O',6786,1,0,'2025-12-13','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-13 18:04:33','shweta','2025-12-13 18:04:33',0),(0,0,'2526','H','O',6787,1,0,'2025-12-13','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-13 18:30:53','janvi','2025-12-13 18:30:53',0),(0,0,'2526','H','O',6788,1,0,'2025-12-13','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-13 18:36:03','reception','2025-12-13 18:36:03',0),(0,0,'2526','H','O',6789,1,0,'2025-12-13','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-13 18:47:10','shweta','2025-12-13 18:47:10',0),(0,0,'2526','H','O',6790,1,0,'2025-12-13','00:00:00','WPRC0037',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-13 18:55:56','shweta','2025-12-13 18:55:56',0),(0,0,'2526','H','O',6791,1,0,'2025-12-13','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-13 18:59:54','janvi','2025-12-13 18:59:54',0),(0,0,'2526','H','O',6792,1,0,'2025-12-13','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-13 19:03:58','janvi','2025-12-13 19:03:58',0),(0,0,'2526','H','O',6793,1,0,'2025-12-13','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-13 19:28:22','shweta','2025-12-13 19:28:22',0),(0,0,'2526','H','O',6793,2,0,'2025-12-13','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-13 19:28:22','shweta','2025-12-13 19:28:22',0),(0,0,'2526','H','O',6794,1,0,'2025-12-13','00:00:00','OPWD0023',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-13 20:12:26','reception','2025-12-13 20:12:26',0),(0,0,'2526','H','O',6795,1,0,'2025-12-14','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','priyanshi','2025-12-14 09:26:55','priyanshi','2025-12-14 09:26:55',0),(0,0,'2526','H','O',6795,2,0,'2025-12-14','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','priyanshi','2025-12-14 09:26:55','priyanshi','2025-12-14 09:26:55',0),(0,0,'2526','H','O',6796,1,0,'2025-12-14','00:00:00','SURG0005',0,1.00,1700,1700,'P',0,0,1700.00,0.00,0.00,1700.00,'',0,42,0,'',0,'','','','Y','N','priyanshi','2025-12-14 09:36:24','priyanshi','2025-12-14 09:36:24',0),(0,0,'2526','H','O',6797,1,0,'2025-12-14','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-14 09:52:05','priyanshi','2025-12-14 09:52:05',0),(0,0,'2526','H','O',6797,2,0,'2025-12-14','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-14 09:52:05','priyanshi','2025-12-14 09:52:05',0),(0,0,'2526','H','O',6798,1,0,'2025-12-14','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,286,0,'',0,'','','','Y','N','priyanshi','2025-12-14 10:02:02','priyanshi','2025-12-14 10:02:02',0),(0,0,'2526','H','O',6799,1,0,'2025-12-14','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-14 10:42:15','priyanshi','2025-12-14 10:42:15',0),(0,0,'2526','H','O',6799,2,0,'2025-12-14','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-14 10:42:15','priyanshi','2025-12-14 10:42:15',0),(0,0,'2526','H','O',6799,3,0,'2025-12-14','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-14 10:42:15','priyanshi','2025-12-14 10:42:15',0),(0,0,'2526','H','O',6800,1,0,'2025-12-14','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-14 11:20:58','priyanshi','2025-12-14 11:20:58',0),(0,0,'2526','H','O',6801,1,0,'2025-12-14','00:00:00','OTCG0003',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-14 12:57:45','priyanshi','2025-12-14 12:57:45',0),(0,0,'2526','H','O',6802,1,0,'2025-12-15','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-15 08:49:17','reception','2025-12-15 08:49:17',0),(0,0,'2526','H','O',6803,1,0,'2025-12-15','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-12-15 09:10:50','reception','2025-12-15 09:10:50',0),(0,0,'2526','H','O',6803,2,0,'2025-12-15','00:00:00','XRY0017',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 09:10:50','reception','2025-12-15 09:10:50',0),(0,0,'2526','H','O',6803,3,0,'2025-12-15','00:00:00','XRY0428',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 09:10:50','reception','2025-12-15 09:10:50',0),(0,0,'2526','H','O',6803,4,0,'2025-12-15','00:00:00','OPWD0013',0,7.00,100,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-12-15 09:10:50','reception','2025-12-15 09:10:50',0),(0,0,'2526','H','O',6804,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-15 09:16:07','priyanshi','2025-12-15 09:16:07',0),(0,0,'2526','H','O',6805,1,0,'2025-12-15','00:00:00','SURG0005',0,1.00,1700,1700,'P',0,0,1700.00,0.00,0.00,1700.00,'',0,42,0,'',0,'','','','Y','N','reception','2025-12-15 09:17:27','reception','2025-12-15 09:17:27',0),(0,0,'2526','H','O',6805,2,0,'2025-12-15','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,42,0,'',0,'','','','Y','N','reception','2025-12-15 09:17:27','reception','2025-12-15 09:17:27',0),(0,0,'2526','H','O',6805,3,0,'2025-12-15','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 09:17:27','reception','2025-12-15 09:17:27',0),(0,0,'2526','H','O',6805,4,0,'2025-12-15','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,42,0,'',0,'','','','Y','N','reception','2025-12-15 09:17:27','reception','2025-12-15 09:17:27',0),(0,0,'2526','H','O',6806,1,0,'2025-12-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-15 10:06:33','reception','2025-12-15 10:06:33',0),(0,0,'2526','H','O',6807,1,0,'2025-12-15','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 10:11:21','reception','2025-12-15 10:11:21',0),(0,0,'2526','H','O',6808,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-15 10:16:37','drashti','2025-12-15 10:16:37',0),(0,0,'2526','H','O',6809,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 10:18:03','reception','2025-12-15 10:18:03',0),(0,0,'2526','H','O',6810,1,0,'2025-12-15','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 10:26:01','reception','2025-12-15 10:26:01',0),(0,0,'2526','H','O',6811,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 10:28:31','reception','2025-12-15 10:28:31',0),(0,0,'2526','H','O',6812,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-15 10:30:58','reception','2025-12-15 10:30:58',0),(0,0,'2526','H','O',6813,1,0,'2025-12-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-15 10:31:11','drashti','2025-12-15 10:31:11',0),(0,0,'2526','H','O',6814,1,0,'2025-12-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-15 10:32:42','reception','2025-12-15 10:32:42',0),(0,0,'2526','H','O',6815,1,0,'2025-12-15','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-15 10:34:11','shweta','2025-12-15 10:34:11',0),(0,0,'2526','H','O',6816,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 10:35:46','reception','2025-12-15 10:35:46',0),(0,0,'2526','H','O',6817,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-15 10:38:14','drashti','2025-12-15 10:38:14',0),(0,0,'2526','H','O',6818,1,0,'2025-12-15','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-15 10:40:08','shweta','2025-12-15 10:40:08',0),(0,0,'2526','H','O',6819,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 10:46:13','reception','2025-12-15 10:46:13',0),(0,0,'2526','H','O',6820,1,0,'2025-12-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-15 10:48:28','drashti','2025-12-15 10:48:28',0),(0,0,'2526','H','O',6821,1,0,'2025-12-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 10:48:46','reception','2025-12-15 10:48:46',0),(0,0,'2526','H','O',6822,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-15 10:51:27','reception','2025-12-15 10:51:27',0),(0,0,'2526','H','O',6823,1,0,'2025-12-15','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-15 10:52:35','priyanshi','2025-12-15 10:52:35',0),(0,0,'2526','H','O',6824,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-15 10:54:04','reception','2025-12-15 10:54:04',0),(0,0,'2526','H','O',6825,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-15 10:54:54','drashti','2025-12-15 10:54:54',0),(0,0,'2526','H','O',6826,1,0,'2025-12-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-15 10:55:23','priyanshi','2025-12-15 10:55:23',0),(0,0,'2526','H','O',6827,1,0,'2025-12-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 10:56:59','reception','2025-12-15 10:56:59',0),(0,0,'2526','H','O',6828,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 10:57:40','drashti','2025-12-15 10:57:40',0),(0,0,'2526','H','O',6829,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-15 10:58:22','reception','2025-12-15 10:58:22',0),(0,0,'2526','H','O',6830,1,0,'2025-12-15','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 11:01:34','reception','2025-12-15 11:01:34',0),(0,0,'2526','H','O',6831,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 11:02:46','reception','2025-12-15 11:02:46',0),(0,0,'2526','H','O',6832,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-15 11:08:12','shweta','2025-12-15 11:08:12',0),(0,0,'2526','H','O',6833,1,0,'2025-12-15','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-15 11:10:37','priyanshi','2025-12-15 11:10:37',0),(0,0,'2526','H','O',6834,1,0,'2025-12-15','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-15 11:10:56','drashti','2025-12-15 11:10:56',0),(0,0,'2526','H','O',6835,1,0,'2025-12-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 11:11:44','reception','2025-12-15 11:11:44',0),(0,0,'2526','H','O',6836,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 11:12:28','reception','2025-12-15 11:12:28',0),(0,0,'2526','H','O',6837,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-15 11:13:36','priyanshi','2025-12-15 11:13:36',0),(0,0,'2526','H','O',6838,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-15 11:13:48','priyanshi','2025-12-15 11:13:48',0),(0,0,'2526','H','O',6839,1,0,'2025-12-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 11:14:41','drashti','2025-12-15 11:14:41',0),(0,0,'2526','H','O',6840,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-15 11:15:11','priyanshi','2025-12-15 11:15:11',0),(0,0,'2526','H','O',6841,1,0,'2025-12-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-15 11:18:22','reception','2025-12-15 11:18:22',0),(0,0,'2526','H','O',6842,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-15 11:19:53','priyanshi','2025-12-15 11:19:53',0),(0,0,'2526','H','O',6843,1,0,'2025-12-15','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 11:20:10','reception','2025-12-15 11:20:10',0),(0,0,'2526','H','O',6844,1,0,'2025-12-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 11:21:06','drashti','2025-12-15 11:21:06',0),(0,0,'2526','H','O',6845,1,0,'2025-12-15','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-15 11:21:46','shweta','2025-12-15 11:21:46',0),(0,0,'2526','H','O',6846,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 11:22:08','reception','2025-12-15 11:22:08',0),(0,0,'2526','H','O',6847,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-15 11:25:45','shweta','2025-12-15 11:25:45',0),(0,0,'2526','H','O',6848,1,0,'2025-12-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 11:26:54','drashti','2025-12-15 11:26:54',0),(0,0,'2526','H','O',6849,1,0,'2025-12-15','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-15 11:28:52','shweta','2025-12-15 11:28:52',0),(0,0,'2526','H','O',6850,1,0,'2025-12-15','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-15 11:30:36','drashti','2025-12-15 11:30:36',0),(0,0,'2526','H','O',6851,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-15 11:30:55','priyanshi','2025-12-15 11:31:44',0),(0,0,'2526','H','O',6852,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-15 11:31:10','drashti','2025-12-15 11:32:11',0),(0,0,'2526','H','O',6853,1,0,'2025-12-15','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-15 11:31:44','priyanshi','2025-12-15 11:31:44',0),(0,0,'2526','H','O',6854,1,0,'2025-12-15','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-15 11:32:11','drashti','2025-12-15 11:32:11',0),(0,0,'2526','H','O',6855,1,0,'2025-12-15','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-15 11:33:06','priyanshi','2025-12-15 11:33:06',0),(0,0,'2526','H','O',6856,1,0,'2025-12-15','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-15 11:33:49','shweta','2025-12-15 11:33:49',0),(0,0,'2526','H','O',6857,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-15 11:33:57','drashti','2025-12-15 11:33:57',0),(0,0,'2526','H','O',6858,1,0,'2025-12-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 11:36:09','reception','2025-12-15 11:36:09',0),(0,0,'2526','H','O',6858,2,0,'2025-12-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 11:36:09','reception','2025-12-15 11:36:09',0),(0,0,'2526','H','O',6859,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 11:38:12','reception','2025-12-15 11:38:12',0),(0,0,'2526','H','O',6860,1,0,'2025-12-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 11:38:27','drashti','2025-12-15 11:38:27',0),(0,0,'2526','H','O',6861,1,0,'2025-12-15','00:00:00','OPWD0023',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-15 11:41:38','shweta','2025-12-15 11:41:38',0),(0,0,'2526','H','O',6862,1,0,'2025-12-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 11:43:10','drashti','2025-12-15 11:43:10',0),(0,0,'2526','H','O',6863,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-15 11:44:05','shweta','2025-12-15 11:44:05',0),(0,0,'2526','H','O',6864,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-15 11:44:08','shweta','2025-12-15 11:44:08',0),(0,0,'2526','H','O',6865,1,0,'2025-12-15','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 11:47:34','reception','2025-12-15 11:47:34',0),(0,0,'2526','H','O',6866,1,0,'2025-12-15','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-15 11:47:53','priyanshi','2025-12-15 11:47:53',0),(0,0,'2526','H','O',6866,2,0,'2025-12-15','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-12-15 11:47:53','priyanshi','2025-12-15 11:47:53',0),(0,0,'2526','H','O',6867,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 11:48:11','reception','2025-12-15 11:48:11',0),(0,0,'2526','H','O',6868,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-15 11:48:45','shweta','2025-12-15 12:44:19',0),(0,0,'2526','H','O',6869,1,0,'2025-12-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-15 11:49:27','priyanshi','2025-12-15 11:49:27',0),(0,0,'2526','H','O',6870,1,0,'2025-12-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 11:52:21','drashti','2025-12-15 11:52:21',0),(0,0,'2526','H','O',6871,1,0,'2025-12-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 11:52:47','reception','2025-12-15 11:52:47',0),(0,0,'2526','H','O',6871,2,0,'2025-12-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 11:52:47','reception','2025-12-15 11:52:47',0),(0,0,'2526','H','O',6871,3,0,'2025-12-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 11:52:47','reception','2025-12-15 11:52:47',0),(0,0,'2526','H','O',6872,1,0,'2025-12-15','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-15 11:55:26','drashti','2025-12-15 11:55:26',0),(0,0,'2526','H','O',6873,1,0,'2025-12-15','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-15 11:55:34','shweta','2025-12-15 11:55:34',0),(0,0,'2526','H','O',6874,1,0,'2025-12-15','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-15 11:57:56','priyanshi','2025-12-15 11:57:56',0),(0,0,'2526','H','O',6875,1,0,'2025-12-15','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-15 11:58:22','reception','2025-12-15 11:58:22',0),(0,0,'2526','H','O',6876,1,0,'2025-12-15','00:00:00','XRY0426',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-12-15 12:01:47','shweta','2025-12-15 12:01:47',0),(0,0,'2526','H','O',6877,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-15 12:03:10','drashti','2025-12-15 12:03:10',0),(0,0,'2526','H','O',6878,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-15 12:05:36','shweta','2025-12-15 12:05:36',0),(0,0,'2526','H','O',6879,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 12:06:44','reception','2025-12-15 12:06:44',0),(0,0,'2526','H','O',6880,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-15 12:06:59','drashti','2025-12-15 12:06:59',0),(0,0,'2526','H','O',6881,1,0,'2025-12-15','00:00:00','XRY0019',0,2.00,400,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-12-15 12:07:08','shweta','2025-12-15 12:07:08',0),(0,0,'2526','H','O',6882,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-15 12:09:23','urvashi','2025-12-15 12:09:23',0),(0,0,'2526','H','O',6883,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 12:10:38','reception','2025-12-15 12:10:38',0),(0,0,'2526','H','O',6884,1,0,'2025-12-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 12:12:07','reception','2025-12-15 12:12:07',0),(0,0,'2526','H','O',6885,1,0,'2025-12-15','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-15 12:13:11','urvashi','2025-12-15 12:13:11',0),(0,0,'2526','H','O',6886,1,0,'2025-12-15','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 12:14:00','reception','2025-12-15 12:14:00',0),(0,0,'2526','H','O',6887,1,0,'2025-12-15','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 12:16:02','reception','2025-12-15 12:16:02',0),(0,0,'2526','H','O',6888,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-15 12:16:29','shweta','2025-12-15 12:16:29',0),(0,0,'2526','H','O',6889,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-15 12:18:02','drashti','2025-12-15 12:18:02',0),(0,0,'2526','H','O',6890,1,0,'2025-12-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 12:18:50','reception','2025-12-15 12:18:50',0),(0,0,'2526','H','O',6891,1,0,'2025-12-15','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-15 12:20:25','shweta','2025-12-15 12:20:25',0),(0,0,'2526','H','O',6892,1,0,'2025-12-15','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-15 12:25:33','shweta','2025-12-15 12:25:33',0),(0,0,'2526','H','O',6892,2,0,'2025-12-15','00:00:00','XRY0019',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-12-15 12:25:33','shweta','2025-12-15 12:25:33',0),(0,0,'2526','H','O',6893,1,0,'2025-12-15','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-15 12:31:03','urvashi','2025-12-15 12:31:03',0),(0,0,'2526','H','O',6894,1,0,'2025-12-15','00:00:00','OPWD0007',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 12:32:52','drashti','2025-12-15 12:32:52',0),(0,0,'2526','H','O',6895,1,0,'2025-12-15','00:00:00','OTCG0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-15 12:34:32','urvashi','2025-12-15 12:34:32',0),(0,0,'2526','H','O',6896,1,0,'2025-12-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 12:36:35','reception','2025-12-15 12:36:35',0),(0,0,'2526','H','O',6896,2,0,'2025-12-15','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 12:36:35','reception','2025-12-15 12:36:35',0),(0,0,'2526','H','O',6897,1,0,'2025-12-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 12:38:43','reception','2025-12-15 12:38:43',0),(0,0,'2526','H','O',6898,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 12:40:27','reception','2025-12-15 12:40:27',0),(0,0,'2526','H','O',6899,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-15 12:40:43','drashti','2025-12-15 12:40:43',0),(0,0,'2526','H','O',6900,1,0,'2025-12-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-15 12:42:55','reception','2025-12-15 12:42:55',0),(0,0,'2526','H','O',6901,1,0,'2025-12-15','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-15 12:44:19','shweta','2025-12-15 12:44:19',0),(0,0,'2526','H','O',6902,1,0,'2025-12-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 12:51:17','reception','2025-12-15 12:51:17',0),(0,0,'2526','H','O',6902,2,0,'2025-12-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 12:51:17','reception','2025-12-15 12:51:17',0),(0,0,'2526','H','O',6902,3,0,'2025-12-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 12:51:17','reception','2025-12-15 12:51:17',0),(0,0,'2526','H','O',6902,4,0,'2025-12-15','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 12:51:17','reception','2025-12-15 12:51:17',0),(0,0,'2526','H','O',6903,1,0,'2025-12-15','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 12:51:36','drashti','2025-12-15 12:51:36',0),(0,0,'2526','H','O',6904,1,0,'2025-12-15','00:00:00','OPWD0034',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-15 12:56:29','urvashi','2025-12-15 12:56:29',0),(0,0,'2526','H','O',6905,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 13:00:05','reception','2025-12-15 13:00:05',0),(0,0,'2526','H','O',6906,1,0,'2025-12-15','00:00:00','OTCG0003',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-15 13:08:54','drashti','2025-12-15 13:08:54',0),(0,0,'2526','H','O',6907,1,0,'2025-12-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-15 13:27:45','urvashi','2025-12-15 13:27:45',0),(0,0,'2526','H','O',6908,1,0,'2025-12-15','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-15 13:28:56','drashti','2025-12-15 13:28:56',0),(0,0,'2526','H','O',6908,2,0,'2025-12-15','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-15 13:28:56','drashti','2025-12-15 13:28:56',0),(0,0,'2526','H','O',6909,1,0,'2025-12-15','00:00:00','MOPR0006',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-15 13:30:26','urvashi','2025-12-15 13:30:26',0),(0,0,'2526','H','O',6910,1,0,'2025-12-15','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-12-15 13:32:01','urvashi','2025-12-15 13:32:01',0),(0,0,'2526','H','O',6911,1,0,'2025-12-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 13:43:42','reception','2025-12-15 13:43:42',0),(0,0,'2526','H','O',6911,2,0,'2025-12-15','00:00:00','NEU10017',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 13:43:42','reception','2025-12-15 13:43:42',0),(0,0,'2526','H','O',6912,1,0,'2025-12-15','00:00:00','NEU10019',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 13:44:25','reception','2025-12-15 13:44:25',0),(0,0,'2526','H','O',6913,1,0,'2025-12-15','00:00:00','OPWD0023',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-15 14:06:15','drashti','2025-12-15 14:06:15',0),(0,0,'2526','H','O',6914,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-15 14:08:14','drashti','2025-12-15 14:08:14',0),(0,0,'2526','H','O',6915,1,0,'2025-12-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 16:28:30','reception','2025-12-15 16:28:30',0),(0,0,'2526','H','O',6916,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 16:36:20','reception','2025-12-15 17:31:41',0),(0,0,'2526','H','O',6917,1,0,'2025-12-15','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-15 16:43:10','drashti','2025-12-15 16:43:10',0),(0,0,'2526','H','O',6918,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 16:49:33','reception','2025-12-15 16:49:33',0),(0,0,'2526','H','O',6919,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 16:57:32','reception','2025-12-15 16:57:32',0),(0,0,'2526','H','O',6920,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 16:59:10','reception','2025-12-15 16:59:10',0),(0,0,'2526','H','O',6921,1,0,'2025-12-15','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 17:07:42','reception','2025-12-15 17:07:42',0),(0,0,'2526','H','O',6922,1,0,'2025-12-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 17:17:51','reception','2025-12-15 17:17:51',0),(0,0,'2526','H','O',6923,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-15 17:21:46','urvashi','2025-12-15 17:21:46',0),(0,0,'2526','H','O',6924,1,0,'2025-12-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-15 17:22:10','reception','2025-12-15 17:22:10',0),(0,0,'2526','H','O',6925,1,0,'2025-12-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 17:24:23','reception','2025-12-15 17:24:23',0),(0,0,'2526','H','O',6925,2,0,'2025-12-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 17:24:23','reception','2025-12-15 17:24:23',0),(0,0,'2526','H','O',6925,3,0,'2025-12-15','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 17:24:23','reception','2025-12-15 17:24:23',0),(0,0,'2526','H','O',6926,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-15 17:26:15','drashti','2025-12-15 17:26:15',0),(0,0,'2526','H','O',6927,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 17:27:05','reception','2025-12-15 17:27:05',0),(0,0,'2526','H','O',6928,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-15 17:27:28','urvashi','2025-12-15 17:27:28',0),(0,0,'2526','H','O',6929,1,0,'2025-12-15','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 17:31:41','reception','2025-12-15 17:31:41',0),(0,0,'2526','H','O',6930,1,0,'2025-12-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-15 17:32:25','urvashi','2025-12-15 17:32:25',0),(0,0,'2526','H','O',6931,1,0,'2025-12-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 17:33:44','reception','2025-12-15 17:33:44',0),(0,0,'2526','H','O',6932,1,0,'2025-12-15','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-15 17:34:21','drashti','2025-12-15 17:34:21',0),(0,0,'2526','H','O',6933,1,0,'2025-12-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 17:42:12','reception','2025-12-15 17:42:12',0),(0,0,'2526','H','O',6934,1,0,'2025-12-15','00:00:00','MOPR0006',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-15 17:43:55','urvashi','2025-12-15 17:43:55',0),(0,0,'2526','H','O',6935,1,0,'2025-12-15','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-15 17:53:38','drashti','2025-12-15 17:53:38',0),(0,0,'2526','H','O',6936,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-15 17:59:52','shweta','2025-12-15 17:59:52',0),(0,0,'2526','H','O',6937,1,0,'2025-12-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 18:01:47','reception','2025-12-15 18:01:47',0),(0,0,'2526','H','O',6937,2,0,'2025-12-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 18:01:47','reception','2025-12-15 18:01:47',0),(0,0,'2526','H','O',6938,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-15 18:03:48','urvashi','2025-12-15 18:03:48',0),(0,0,'2526','H','O',6939,1,0,'2025-12-15','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-15 18:06:09','urvashi','2025-12-15 18:06:09',0),(0,0,'2526','H','O',6940,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 18:07:50','drashti','2025-12-15 18:07:50',0),(0,0,'2526','H','O',6941,1,0,'2025-12-15','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-15 18:08:29','shweta','2025-12-15 18:08:29',0),(0,0,'2526','H','O',6942,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-15 18:08:54','reception','2025-12-15 18:08:54',0),(0,0,'2526','H','O',6943,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 18:11:22','reception','2025-12-15 18:11:22',0),(0,0,'2526','H','O',6944,1,0,'2025-12-15','00:00:00','XRY0186',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-12-15 18:13:24','shweta','2025-12-15 18:13:24',0),(0,0,'2526','H','O',6945,1,0,'2025-12-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 18:13:30','reception','2025-12-15 18:13:30',0),(0,0,'2526','H','O',6945,2,0,'2025-12-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 18:13:30','reception','2025-12-15 18:13:30',0),(0,0,'2526','H','O',6945,3,0,'2025-12-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 18:13:30','reception','2025-12-15 18:13:30',0),(0,0,'2526','H','O',6946,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-15 18:15:55','drashti','2025-12-15 18:15:55',0),(0,0,'2526','H','O',6947,1,0,'2025-12-15','00:00:00','XRY0050',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-12-15 18:16:37','shweta','2025-12-15 18:16:37',0),(0,0,'2526','H','O',6948,1,0,'2025-12-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 18:16:38','reception','2025-12-15 19:58:53',0),(0,0,'2526','H','O',6949,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 18:19:28','drashti','2025-12-15 18:19:28',0),(0,0,'2526','H','O',6950,1,0,'2025-12-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 18:22:40','reception','2025-12-15 18:22:40',0),(0,0,'2526','H','O',6950,2,0,'2025-12-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 18:22:40','reception','2025-12-15 18:22:40',0),(0,0,'2526','H','O',6950,3,0,'2025-12-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 18:22:40','reception','2025-12-15 18:22:40',0),(0,0,'2526','H','O',6951,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 18:23:04','drashti','2025-12-15 18:23:04',0),(0,0,'2526','H','O',6952,1,0,'2025-12-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 18:29:35','reception','2025-12-15 18:29:35',0),(0,0,'2526','H','O',6953,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 18:30:19','reception','2025-12-15 18:30:19',0),(0,0,'2526','H','O',6954,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 18:30:36','drashti','2025-12-15 18:30:36',0),(0,0,'2526','H','O',6955,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-15 18:30:39','urvashi','2025-12-15 18:30:39',0),(0,0,'2526','H','O',6956,1,0,'2025-12-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 18:41:02','reception','2025-12-15 18:41:02',0),(0,0,'2526','H','O',6956,2,0,'2025-12-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 18:41:02','reception','2025-12-15 18:41:02',0),(0,0,'2526','H','O',6957,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 18:41:11','drashti','2025-12-15 18:41:11',0),(0,0,'2526','H','O',6958,1,0,'2025-12-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-15 18:43:52','urvashi','2025-12-15 18:43:52',0),(0,0,'2526','H','O',6959,1,0,'2025-12-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 18:44:15','drashti','2025-12-15 18:44:15',0),(0,0,'2526','H','O',6960,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-15 18:48:19','reception','2025-12-15 18:48:19',0),(0,0,'2526','H','O',6961,1,0,'2025-12-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 18:52:03','reception','2025-12-15 18:52:03',0),(0,0,'2526','H','O',6961,2,0,'2025-12-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 18:52:03','reception','2025-12-15 18:52:03',0),(0,0,'2526','H','O',6962,1,0,'2025-12-15','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-15 18:55:53','urvashi','2025-12-15 18:55:53',0),(0,0,'2526','H','O',6963,1,0,'2025-12-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 18:57:31','reception','2025-12-15 18:57:31',0),(0,0,'2526','H','O',6964,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 18:59:48','drashti','2025-12-15 18:59:48',0),(0,0,'2526','H','O',6965,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 19:02:06','reception','2025-12-15 19:02:06',0),(0,0,'2526','H','O',6966,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-15 19:03:23','urvashi','2025-12-15 19:03:23',0),(0,0,'2526','H','O',6967,1,0,'2025-12-15','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 19:03:30','drashti','2025-12-15 19:03:30',0),(0,0,'2526','H','O',6968,1,0,'2025-12-15','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 19:17:13','reception','2025-12-15 19:17:13',0),(0,0,'2526','H','O',6969,1,0,'2025-12-15','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-15 19:21:24','drashti','2025-12-15 19:21:24',0),(0,0,'2526','H','O',6970,1,0,'2025-12-15','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-15 19:21:44','urvashi','2025-12-15 19:21:44',0),(0,0,'2526','H','O',6971,1,0,'2025-12-15','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 19:23:41','reception','2025-12-15 19:23:41',0),(0,0,'2526','H','O',6971,2,0,'2025-12-15','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 19:23:41','reception','2025-12-15 19:23:41',0),(0,0,'2526','H','O',6971,3,0,'2025-12-15','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-15 19:23:41','reception','2025-12-15 19:23:41',0),(0,0,'2526','H','O',6972,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 19:23:47','drashti','2025-12-15 19:50:10',0),(0,0,'2526','H','O',6973,1,0,'2025-12-15','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-15 19:26:50','urvashi','2025-12-15 19:26:50',0),(0,0,'2526','H','O',6974,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-15 19:36:43','urvashi','2025-12-15 19:36:43',0),(0,0,'2526','H','O',6975,1,0,'2025-12-15','00:00:00','OPWD0023',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-15 19:38:41','urvashi','2025-12-15 19:38:41',0),(0,0,'2526','H','O',6976,1,0,'2025-12-15','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-15 19:48:58','urvashi','2025-12-15 19:48:58',0),(0,0,'2526','H','O',6977,1,0,'2025-12-15','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 19:50:10','drashti','2025-12-15 19:50:10',0),(0,0,'2526','H','O',6978,1,0,'2025-12-15','00:00:00','CASE',0,-1.00,900,-900,'A',0,0,-900.00,0.00,0.00,-900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 19:58:53','reception','2025-12-15 19:58:53',0),(0,0,'2526','H','O',6979,1,0,'2025-12-15','00:00:00','CASE',0,1.00,900,900,'P',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 20:01:11','reception','2025-12-15 20:01:11',0),(0,0,'2526','H','O',6980,1,0,'2025-12-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-15 20:03:35','drashti','2025-12-15 20:03:35',0),(0,0,'2526','H','O',6981,1,0,'2025-12-15','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-15 20:05:07','urvashi','2025-12-15 20:05:07',0),(0,0,'2526','H','O',6982,1,0,'2025-12-15','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-15 20:09:32','urvashi','2025-12-15 20:09:32',0),(0,0,'2526','H','O',6983,1,0,'2025-12-15','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 20:16:50','reception','2025-12-15 20:16:50',0),(0,0,'2526','H','O',6984,1,0,'2025-12-15','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-15 20:18:51','reception','2025-12-15 20:18:51',0),(0,0,'2526','H','O',6985,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-16 10:00:13','drashti','2025-12-16 10:00:13',0),(0,0,'2526','H','O',6986,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 10:01:28','reception','2025-12-16 10:01:28',0),(0,0,'2526','H','O',6987,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-16 10:02:49','janvi','2025-12-16 10:02:49',0),(0,0,'2526','H','O',6988,1,0,'2025-12-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 10:06:52','drashti','2025-12-16 10:06:52',0),(0,0,'2526','H','O',6989,1,0,'2025-12-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-16 10:10:04','drashti','2025-12-16 10:10:04',0),(0,0,'2526','H','O',6990,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 10:13:34','reception','2025-12-16 10:13:34',0),(0,0,'2526','H','O',6991,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 10:17:58','reception','2025-12-16 10:17:58',0),(0,0,'2526','H','O',6992,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 10:24:13','reception','2025-12-16 10:24:13',0),(0,0,'2526','H','O',6993,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 10:25:41','drashti','2025-12-16 10:25:41',0),(0,0,'2526','H','O',6994,1,0,'2025-12-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 10:28:24','reception','2025-12-16 10:28:24',0),(0,0,'2526','H','O',6995,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 10:30:14','reception','2025-12-16 10:30:14',0),(0,0,'2526','H','O',6996,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 10:38:01','reception','2025-12-16 10:38:01',0),(0,0,'2526','H','O',6997,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 10:38:56','drashti','2025-12-16 10:38:56',0),(0,0,'2526','H','O',6998,1,0,'2025-12-16','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-16 10:39:08','shweta','2025-12-16 10:39:08',0),(0,0,'2526','H','O',6999,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 10:41:07','reception','2025-12-16 10:41:07',0),(0,0,'2526','H','O',7000,1,0,'2025-12-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 10:44:41','reception','2025-12-16 10:44:41',0),(0,0,'2526','H','O',7001,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 10:48:38','drashti','2025-12-16 10:48:38',0),(0,0,'2526','H','O',7002,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 10:50:03','reception','2025-12-16 10:50:03',0),(0,0,'2526','H','O',7003,1,0,'2025-12-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 10:53:09','reception','2025-12-16 10:53:09',0),(0,0,'2526','H','O',7004,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-16 11:01:59','shweta','2025-12-16 11:11:54',0),(0,0,'2526','H','O',7005,1,0,'2025-12-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 11:06:22','reception','2025-12-16 11:06:22',0),(0,0,'2526','H','O',7006,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-16 11:09:41','reception','2025-12-16 11:09:41',0),(0,0,'2526','H','O',7007,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 11:10:42','reception','2025-12-16 11:10:42',0),(0,0,'2526','H','O',7008,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 11:11:37','drashti','2025-12-16 11:11:37',0),(0,0,'2526','H','O',7009,1,0,'2025-12-16','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-16 11:11:54','shweta','2025-12-16 11:11:54',0),(0,0,'2526','H','O',7010,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-16 11:13:20','shweta','2025-12-16 11:13:20',0),(0,0,'2526','H','O',7011,1,0,'2025-12-16','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 11:15:52','reception','2025-12-16 11:15:52',0),(0,0,'2526','H','O',7011,2,0,'2025-12-16','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 11:15:52','reception','2025-12-16 11:15:52',0),(0,0,'2526','H','O',7011,3,0,'2025-12-16','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 11:15:52','reception','2025-12-16 11:15:52',0),(0,0,'2526','H','O',7011,4,0,'2025-12-16','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 11:15:52','reception','2025-12-16 11:15:52',0),(0,0,'2526','H','O',7012,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 11:18:20','drashti','2025-12-16 11:18:20',0),(0,0,'2526','H','O',7013,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 11:18:32','drashti','2025-12-16 11:18:32',0),(0,0,'2526','H','O',7014,1,0,'2025-12-16','00:00:00','OPWD0023',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-16 11:19:31','shweta','2025-12-16 11:19:31',0),(0,0,'2526','H','O',7015,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-16 11:19:33','janvi','2025-12-16 11:19:33',0),(0,0,'2526','H','O',7016,1,0,'2025-12-16','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 11:20:42','reception','2025-12-16 11:20:42',0),(0,0,'2526','H','O',7016,2,0,'2025-12-16','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 11:20:42','reception','2025-12-16 11:20:42',0),(0,0,'2526','H','O',7017,1,0,'2025-12-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 11:21:02','drashti','2025-12-16 11:21:02',0),(0,0,'2526','H','O',7018,1,0,'2025-12-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-16 11:27:47','janvi','2025-12-16 11:27:47',0),(0,0,'2526','H','O',7019,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-16 11:28:54','drashti','2025-12-16 11:28:54',0),(0,0,'2526','H','O',7020,1,0,'2025-12-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-16 11:29:34','reception','2025-12-16 11:29:34',0),(0,0,'2526','H','O',7021,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 11:31:23','reception','2025-12-16 11:31:23',0),(0,0,'2526','H','O',7022,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-16 11:32:23','shweta','2025-12-16 11:32:23',0),(0,0,'2526','H','O',7023,1,0,'2025-12-16','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 11:33:53','reception','2025-12-16 11:33:53',0),(0,0,'2526','H','O',7023,2,0,'2025-12-16','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 11:33:53','reception','2025-12-16 11:33:53',0),(0,0,'2526','H','O',7024,1,0,'2025-12-16','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 11:34:43','drashti','2025-12-16 11:34:43',0),(0,0,'2526','H','O',7025,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-16 11:34:51','janvi','2025-12-16 11:34:51',0),(0,0,'2526','H','O',7026,1,0,'2025-12-16','00:00:00','OTCG0003',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-16 11:40:05','drashti','2025-12-16 11:40:05',0),(0,0,'2526','H','O',7027,1,0,'2025-12-16','00:00:00','LAB0446',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-16 11:45:16','drashti','2025-12-16 11:45:16',0),(0,0,'2526','H','O',7028,1,0,'2025-12-16','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-16 11:45:36','janvi','2025-12-16 11:45:36',0),(0,0,'2526','H','O',7028,2,0,'2025-12-16','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-16 11:45:36','janvi','2025-12-16 11:45:36',0),(0,0,'2526','H','O',7029,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 11:46:58','drashti','2025-12-16 11:46:58',0),(0,0,'2526','H','O',7030,1,0,'2025-12-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 11:51:26','reception','2025-12-16 11:51:26',0),(0,0,'2526','H','O',7031,1,0,'2025-12-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 11:52:55','drashti','2025-12-16 12:11:35',0);
INSERT INTO `receipt_transaction` VALUES (0,0,'2526','H','O',7032,1,0,'2025-12-16','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 11:56:42','reception','2025-12-16 11:56:42',0),(0,0,'2526','H','O',7032,2,0,'2025-12-16','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 11:56:42','reception','2025-12-16 11:56:42',0),(0,0,'2526','H','O',7032,3,0,'2025-12-16','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 11:56:42','reception','2025-12-16 11:56:42',0),(0,0,'2526','H','O',7033,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-16 11:58:43','drashti','2025-12-16 11:58:43',0),(0,0,'2526','H','O',7034,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-16 12:00:23','drashti','2025-12-16 12:00:23',0),(0,0,'2526','H','O',7035,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 12:00:45','reception','2025-12-16 14:11:41',0),(0,0,'2526','H','O',7036,1,0,'2025-12-16','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 12:05:45','reception','2025-12-16 12:05:45',0),(0,0,'2526','H','O',7036,2,0,'2025-12-16','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 12:05:45','reception','2025-12-16 12:05:45',0),(0,0,'2526','H','O',7036,3,0,'2025-12-16','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 12:05:45','reception','2025-12-16 12:05:45',0),(0,0,'2526','H','O',7037,1,0,'2025-12-16','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 12:11:35','drashti','2025-12-16 12:11:35',0),(0,0,'2526','H','O',7038,1,0,'2025-12-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 12:16:57','drashti','2025-12-16 12:16:57',0),(0,0,'2526','H','O',7039,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-16 12:21:53','drashti','2025-12-16 12:21:53',0),(0,0,'2526','H','O',7040,1,0,'2025-12-16','00:00:00','CASE',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-16 12:25:25','janvi','2025-12-16 12:25:25',0),(0,0,'2526','H','O',7041,1,0,'2025-12-16','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 12:36:06','reception','2025-12-16 12:36:06',0),(0,0,'2526','H','O',7041,2,0,'2025-12-16','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 12:36:06','reception','2025-12-16 12:36:06',0),(0,0,'2526','H','O',7041,3,0,'2025-12-16','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 12:36:06','reception','2025-12-16 12:36:06',0),(0,0,'2526','H','O',7042,1,0,'2025-12-16','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-16 12:37:26','drashti','2025-12-16 12:37:26',0),(0,0,'2526','H','O',7043,1,0,'2025-12-16','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 12:41:47','drashti','2025-12-16 12:41:47',0),(0,0,'2526','H','O',7044,1,0,'2025-12-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 12:45:29','drashti','2025-12-16 12:45:29',0),(0,0,'2526','H','O',7045,1,0,'2025-12-16','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-16 12:48:04','shweta','2025-12-16 12:48:04',0),(0,0,'2526','H','O',7046,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 12:51:38','reception','2025-12-16 12:51:38',0),(0,0,'2526','H','O',7047,1,0,'2025-12-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 12:55:48','drashti','2025-12-16 13:15:07',0),(0,0,'2526','H','O',7048,1,0,'2025-12-16','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 12:58:35','drashti','2025-12-16 12:58:35',0),(0,0,'2526','H','O',7049,1,0,'2025-12-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-16 13:01:15','reception','2025-12-16 13:01:15',0),(0,0,'2526','H','O',7050,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-16 13:09:09','janvi','2025-12-16 13:09:09',0),(0,0,'2526','H','O',7051,1,0,'2025-12-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 13:10:32','reception','2025-12-16 13:10:32',0),(0,0,'2526','H','O',7052,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 13:10:47','drashti','2025-12-16 13:10:47',0),(0,0,'2526','H','O',7053,1,0,'2025-12-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 13:14:20','drashti','2025-12-16 13:14:20',0),(0,0,'2526','H','O',7054,1,0,'2025-12-16','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-16 13:15:07','drashti','2025-12-16 13:15:07',0),(0,0,'2526','H','O',7055,1,0,'2025-12-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-16 13:17:05','reception','2025-12-16 13:17:05',0),(0,0,'2526','H','O',7056,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-16 13:17:14','reception','2025-12-16 13:17:14',0),(0,0,'2526','H','O',7057,1,0,'2025-12-16','00:00:00','USG0056',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-16 13:21:10','drashti','2025-12-16 13:21:10',0),(0,0,'2526','H','O',7057,2,0,'2025-12-16','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-16 13:21:10','drashti','2025-12-16 13:21:10',0),(0,0,'2526','H','O',7058,1,0,'2025-12-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 13:45:15','reception','2025-12-16 13:45:15',0),(0,0,'2526','H','O',7059,1,0,'2025-12-16','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 13:49:40','reception','2025-12-16 13:49:40',0),(0,0,'2526','H','O',7059,2,0,'2025-12-16','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 13:49:40','reception','2025-12-16 13:49:40',0),(0,0,'2526','H','O',7060,1,0,'2025-12-16','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-16 14:04:34','janvi','2025-12-16 14:04:34',0),(0,0,'2526','H','O',7061,1,0,'2025-12-16','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-16 14:09:42','janvi','2025-12-16 14:09:42',0),(0,0,'2526','H','O',7062,1,0,'2025-12-16','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 14:11:41','reception','2025-12-16 14:11:41',0),(0,0,'2526','H','O',7063,1,0,'2025-12-16','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 14:24:14','reception','2025-12-16 14:24:14',0),(0,0,'2526','H','O',7064,1,0,'2025-12-16','00:00:00','OPWD0023',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 14:36:22','reception','2025-12-16 14:36:22',0),(0,0,'2526','H','O',7065,1,0,'2025-12-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 16:21:02','reception','2025-12-16 16:21:02',0),(0,0,'2526','H','O',7066,1,0,'2025-12-16','00:00:00','CASE',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-16 16:38:32','reception','2025-12-16 16:38:32',0),(0,0,'2526','H','O',7067,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 16:40:04','reception','2025-12-16 16:40:04',0),(0,0,'2526','H','O',7068,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-12-16 16:40:25','priyanshi','2025-12-16 16:40:25',0),(0,0,'2526','H','O',7069,1,0,'2025-12-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 16:46:59','reception','2025-12-16 16:46:59',0),(0,0,'2526','H','O',7070,1,0,'2025-12-16','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 16:57:29','reception','2025-12-16 16:57:29',0),(0,0,'2526','H','O',7070,2,0,'2025-12-16','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 16:57:29','reception','2025-12-16 16:57:29',0),(0,0,'2526','H','O',7070,3,0,'2025-12-16','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 16:57:29','reception','2025-12-16 16:57:29',0),(0,0,'2526','H','O',7071,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 17:11:18','reception','2025-12-16 17:11:18',0),(0,0,'2526','H','O',7072,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-16 17:24:20','reception','2025-12-16 17:24:20',0),(0,0,'2526','H','O',7073,1,0,'2025-12-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-16 17:27:51','urvashi','2025-12-16 17:27:51',0),(0,0,'2526','H','O',7074,1,0,'2025-12-16','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 17:40:35','reception','2025-12-16 17:40:35',0),(0,0,'2526','H','O',7074,2,0,'2025-12-16','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 17:40:35','reception','2025-12-16 17:40:35',0),(0,0,'2526','H','O',7074,3,0,'2025-12-16','00:00:00','NEU10017',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 17:40:35','reception','2025-12-16 17:40:35',0),(0,0,'2526','H','O',7075,1,0,'2025-12-16','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-16 17:43:21','urvashi','2025-12-16 17:43:21',0),(0,0,'2526','H','O',7076,1,0,'2025-12-16','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-16 17:44:05','shweta','2025-12-16 17:44:05',0),(0,0,'2526','H','O',7077,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-16 17:45:50','urvashi','2025-12-16 17:45:50',0),(0,0,'2526','H','O',7078,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 17:51:18','reception','2025-12-16 17:51:18',0),(0,0,'2526','H','O',7079,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-16 17:55:15','janvi','2025-12-16 17:55:15',0),(0,0,'2526','H','O',7080,1,0,'2025-12-16','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 17:57:14','reception','2025-12-16 17:57:14',0),(0,0,'2526','H','O',7080,2,0,'2025-12-16','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 17:57:14','reception','2025-12-16 17:57:14',0),(0,0,'2526','H','O',7081,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-16 17:58:24','urvashi','2025-12-16 17:58:24',0),(0,0,'2526','H','O',7082,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-16 18:00:05','urvashi','2025-12-16 18:00:05',0),(0,0,'2526','H','O',7083,1,0,'2025-12-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-16 18:01:54','janvi','2025-12-16 18:01:54',0),(0,0,'2526','H','O',7084,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-16 18:05:34','shweta','2025-12-16 18:05:34',0),(0,0,'2526','H','O',7085,1,0,'2025-12-16','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-16 18:06:10','urvashi','2025-12-16 18:22:30',0),(0,0,'2526','H','O',7086,1,0,'2025-12-16','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-16 18:10:49','shweta','2025-12-16 18:10:49',0),(0,0,'2526','H','O',7087,1,0,'2025-12-16','00:00:00','XRY0342',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-12-16 18:16:28','shweta','2025-12-16 18:16:28',0),(0,0,'2526','H','O',7088,1,0,'2025-12-16','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-16 18:18:24','janvi','2025-12-16 18:18:24',0),(0,0,'2526','H','O',7089,1,0,'2025-12-16','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-16 18:19:43','janvi','2025-12-16 18:19:43',0),(0,0,'2526','H','O',7090,1,0,'2025-12-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-16 18:19:58','urvashi','2025-12-16 18:19:58',0),(0,0,'2526','H','O',7091,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-16 18:21:39','urvashi','2025-12-16 18:21:39',0),(0,0,'2526','H','O',7092,1,0,'2025-12-16','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-16 18:21:42','janvi','2025-12-16 18:21:42',0),(0,0,'2526','H','O',7093,1,0,'2025-12-16','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-16 18:22:30','urvashi','2025-12-16 18:22:30',0),(0,0,'2526','H','O',7094,1,0,'2025-12-16','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-16 18:23:36','janvi','2025-12-16 18:23:36',0),(0,0,'2526','H','O',7095,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-16 18:24:44','reception','2025-12-16 18:24:44',0),(0,0,'2526','H','O',7096,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-16 18:27:27','urvashi','2025-12-16 18:27:27',0),(0,0,'2526','H','O',7097,1,0,'2025-12-16','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 18:29:34','reception','2025-12-16 18:29:34',0),(0,0,'2526','H','O',7098,1,0,'2025-12-16','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-16 18:33:51','janvi','2025-12-16 18:33:51',0),(0,0,'2526','H','O',7099,1,0,'2025-12-16','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-16 18:34:15','urvashi','2025-12-16 18:34:15',0),(0,0,'2526','H','O',7100,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-16 18:44:12','urvashi','2025-12-16 19:37:36',0),(0,0,'2526','H','O',7101,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-16 18:45:38','urvashi','2025-12-16 18:45:38',0),(0,0,'2526','H','O',7102,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 18:46:19','reception','2025-12-16 18:46:19',0),(0,0,'2526','H','O',7103,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-16 18:48:33','janvi','2025-12-16 18:48:33',0),(0,0,'2526','H','O',7104,1,0,'2025-12-16','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-16 18:50:24','janvi','2025-12-16 18:50:24',0),(0,0,'2526','H','O',7105,1,0,'2025-12-16','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 18:50:31','reception','2025-12-16 18:50:31',0),(0,0,'2526','H','O',7105,2,0,'2025-12-16','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 18:50:31','reception','2025-12-16 18:50:31',0),(0,0,'2526','H','O',7105,3,0,'2025-12-16','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 18:50:31','reception','2025-12-16 18:50:31',0),(0,0,'2526','H','O',7106,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-16 18:52:11','urvashi','2025-12-16 18:52:11',0),(0,0,'2526','H','O',7107,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-16 18:54:10','urvashi','2025-12-16 18:54:10',0),(0,0,'2526','H','O',7108,1,0,'2025-12-16','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-16 18:55:49','urvashi','2025-12-16 18:55:49',0),(0,0,'2526','H','O',7109,1,0,'2025-12-16','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-16 18:57:37','urvashi','2025-12-16 18:57:37',0),(0,0,'2526','H','O',7110,1,0,'2025-12-16','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 18:59:49','reception','2025-12-16 18:59:49',0),(0,0,'2526','H','O',7111,1,0,'2025-12-16','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-16 19:04:50','urvashi','2025-12-16 19:04:50',0),(0,0,'2526','H','O',7112,1,0,'2025-12-16','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-12-16 19:08:13','urvashi','2025-12-16 19:08:13',0),(0,0,'2526','H','O',7113,1,0,'2025-12-16','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-16 19:08:27','reception','2025-12-16 19:08:27',0),(0,0,'2526','H','O',7114,1,0,'2025-12-16','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-16 19:10:46','urvashi','2025-12-16 19:10:46',0),(0,0,'2526','H','O',7115,1,0,'2025-12-16','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-16 19:15:09','janvi','2025-12-16 19:15:09',0),(0,0,'2526','H','O',7116,1,0,'2025-12-16','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','urvashi','2025-12-16 19:17:22','urvashi','2025-12-16 19:17:22',0),(0,0,'2526','H','O',7117,1,0,'2025-12-16','00:00:00','OPWD0023',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-16 19:17:30','janvi','2025-12-16 19:17:30',0),(0,0,'2526','H','O',7118,1,0,'2025-12-16','00:00:00','XRY0008',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-12-16 19:30:18','shweta','2025-12-16 19:30:18',0),(0,0,'2526','H','O',7119,1,0,'2025-12-16','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-16 19:36:41','urvashi','2025-12-16 19:36:41',0),(0,0,'2526','H','O',7120,1,0,'2025-12-16','00:00:00','NEU10019',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 19:37:14','reception','2025-12-16 19:37:14',0),(0,0,'2526','H','O',7121,1,0,'2025-12-16','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-16 19:37:36','urvashi','2025-12-16 19:37:36',0),(0,0,'2526','H','O',7122,1,0,'2025-12-16','00:00:00','NEU10017',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-16 19:42:12','reception','2025-12-16 19:42:12',0),(0,0,'2526','H','O',7123,1,0,'2025-12-16','00:00:00','OTCG0001',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-16 19:48:33','urvashi','2025-12-16 19:48:33',0),(0,0,'2526','H','O',7124,1,0,'2025-12-16','00:00:00','XRY0008',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-12-16 20:04:02','shweta','2025-12-16 20:04:02',0),(0,0,'2526','H','O',7125,1,0,'2025-12-17','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-17 08:43:30','reception','2025-12-17 08:43:30',0),(0,0,'2526','H','O',7125,2,0,'2025-12-17','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-17 08:43:30','reception','2025-12-17 08:43:30',0),(0,0,'2526','H','O',7125,3,0,'2025-12-17','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-17 08:43:30','reception','2025-12-17 08:43:30',0),(0,0,'2526','H','O',7126,1,0,'2025-12-17','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-17 08:46:57','reception','2025-12-17 08:46:57',0),(0,0,'2526','H','O',7126,2,0,'2025-12-17','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-17 08:46:57','reception','2025-12-17 08:46:57',0),(0,0,'2526','H','O',7127,1,0,'2025-12-17','00:00:00','OPWD0013',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-17 08:49:19','reception','2025-12-17 08:49:19',0),(0,0,'2526','H','O',7127,2,0,'2025-12-17','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-17 08:49:19','reception','2025-12-17 08:49:19',0),(0,0,'2526','H','O',7128,1,0,'2025-12-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 09:50:39','reception','2025-12-17 09:50:39',0),(0,0,'2526','H','O',7129,1,0,'2025-12-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 09:56:17','reception','2025-12-17 09:56:17',0),(0,0,'2526','H','O',7130,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 10:06:39','reception','2025-12-17 10:06:39',0),(0,0,'2526','H','O',7131,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 10:13:02','reception','2025-12-17 10:13:02',0),(0,0,'2526','H','O',7132,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 10:13:42','reception','2025-12-17 10:13:42',0),(0,0,'2526','H','O',7133,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 10:15:27','reception','2025-12-17 10:15:27',0),(0,0,'2526','H','O',7134,1,0,'2025-12-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 10:17:46','reception','2025-12-17 10:17:46',0),(0,0,'2526','H','O',7135,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 10:18:46','reception','2025-12-17 10:18:46',0),(0,0,'2526','H','O',7136,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 10:35:16','reception','2025-12-17 10:35:16',0),(0,0,'2526','H','O',7137,1,0,'2025-12-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 10:39:38','reception','2025-12-17 10:39:38',0),(0,0,'2526','H','O',7138,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-17 10:48:34','priyanshi','2025-12-17 10:48:34',0),(0,0,'2526','H','O',7139,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 10:49:58','reception','2025-12-17 10:49:58',0),(0,0,'2526','H','O',7140,1,0,'2025-12-17','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 10:52:00','reception','2025-12-17 12:00:08',0),(0,0,'2526','H','O',7141,1,0,'2025-12-17','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-17 10:53:10','priyanshi','2025-12-17 10:53:10',0),(0,0,'2526','H','O',7142,1,0,'2025-12-17','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-17 10:56:01','drashti','2025-12-17 10:56:01',0),(0,0,'2526','H','O',7143,1,0,'2025-12-17','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-17 10:56:17','priyanshi','2025-12-17 10:56:17',0),(0,0,'2526','H','O',7144,1,0,'2025-12-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 10:58:25','reception','2025-12-17 10:58:25',0),(0,0,'2526','H','O',7145,1,0,'2025-12-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-17 11:03:20','drashti','2025-12-17 11:03:20',0),(0,0,'2526','H','O',7146,1,0,'2025-12-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 11:03:32','reception','2025-12-17 11:03:32',0),(0,0,'2526','H','O',7147,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 11:08:36','reception','2025-12-17 11:08:36',0),(0,0,'2526','H','O',7148,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 11:10:16','reception','2025-12-17 11:10:16',0),(0,0,'2526','H','O',7149,1,0,'2025-12-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-17 11:10:38','shweta','2025-12-17 11:10:38',0),(0,0,'2526','H','O',7150,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-17 11:12:00','shweta','2025-12-17 11:12:00',0),(0,0,'2526','H','O',7151,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-17 11:13:40','shweta','2025-12-17 11:45:29',0),(0,0,'2526','H','O',7152,1,0,'2025-12-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-17 11:14:23','shweta','2025-12-17 11:14:23',0),(0,0,'2526','H','O',7153,1,0,'2025-12-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-17 11:21:34','drashti','2025-12-17 11:21:34',0),(0,0,'2526','H','O',7154,1,0,'2025-12-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 11:22:42','reception','2025-12-17 11:22:42',0),(0,0,'2526','H','O',7154,2,0,'2025-12-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 11:22:42','reception','2025-12-17 11:22:42',0),(0,0,'2526','H','O',7155,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-17 11:22:51','shweta','2025-12-17 11:22:51',0),(0,0,'2526','H','O',7155,2,0,'2025-12-17','00:00:00','WPRC0037',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-17 11:22:51','shweta','2025-12-17 11:22:51',0),(0,0,'2526','H','O',7155,3,0,'2025-12-17','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-12-17 11:22:51','shweta','2025-12-17 11:22:51',0),(0,0,'2526','H','O',7156,1,0,'2025-12-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-17 11:27:56','drashti','2025-12-17 11:27:56',0),(0,0,'2526','H','O',7157,1,0,'2025-12-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-17 11:29:02','priyanshi','2025-12-17 11:29:02',0),(0,0,'2526','H','O',7158,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-17 11:30:27','priyanshi','2025-12-17 11:30:27',0),(0,0,'2526','H','O',7159,1,0,'2025-12-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 11:30:39','reception','2025-12-17 11:30:39',0),(0,0,'2526','H','O',7159,2,0,'2025-12-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 11:30:39','reception','2025-12-17 11:30:39',0),(0,0,'2526','H','O',7159,3,0,'2025-12-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 11:30:39','reception','2025-12-17 11:30:39',0),(0,0,'2526','H','O',7159,4,0,'2025-12-17','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 11:30:39','reception','2025-12-17 11:30:39',0),(0,0,'2526','H','O',7160,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 11:37:40','reception','2025-12-17 11:37:40',0),(0,0,'2526','H','O',7161,1,0,'2025-12-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 11:42:54','reception','2025-12-17 11:42:54',0),(0,0,'2526','H','O',7161,2,0,'2025-12-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 11:42:54','reception','2025-12-17 11:42:54',0),(0,0,'2526','H','O',7162,1,0,'2025-12-17','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-17 11:45:29','shweta','2025-12-17 11:45:29',0),(0,0,'2526','H','O',7163,1,0,'2025-12-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-17 11:48:48','shweta','2025-12-17 11:48:48',0),(0,0,'2526','H','O',7164,1,0,'2025-12-17','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-17 11:51:52','drashti','2025-12-17 11:51:52',0),(0,0,'2526','H','O',7165,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 11:52:10','reception','2025-12-17 11:52:10',0),(0,0,'2526','H','O',7166,1,0,'2025-12-17','00:00:00','XRY0306',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-12-17 11:53:41','shweta','2025-12-17 11:53:41',0),(0,0,'2526','H','O',7167,1,0,'2025-12-17','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-17 11:54:04','drashti','2025-12-17 11:54:04',0),(0,0,'2526','H','O',7168,1,0,'2025-12-17','00:00:00','XRY0075',0,2.00,600,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-12-17 11:57:41','shweta','2025-12-17 11:57:41',0),(0,0,'2526','H','O',7169,1,0,'2025-12-17','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 12:00:08','reception','2025-12-17 12:00:08',0),(0,0,'2526','H','O',7170,1,0,'2025-12-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 12:13:40','reception','2025-12-17 12:13:40',0),(0,0,'2526','H','O',7170,2,0,'2025-12-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 12:13:40','reception','2025-12-17 12:13:40',0),(0,0,'2526','H','O',7170,3,0,'2025-12-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 12:13:40','reception','2025-12-17 12:13:40',0),(0,0,'2526','H','O',7171,1,0,'2025-12-17','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-17 12:15:44','drashti','2025-12-17 12:15:44',0),(0,0,'2526','H','O',7172,1,0,'2025-12-17','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-17 12:18:06','drashti','2025-12-17 12:18:06',0),(0,0,'2526','H','O',7173,1,0,'2025-12-17','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-17 12:26:54','drashti','2025-12-17 12:26:54',0),(0,0,'2526','H','O',7174,1,0,'2025-12-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 12:27:52','reception','2025-12-17 12:27:52',0),(0,0,'2526','H','O',7174,2,0,'2025-12-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 12:27:52','reception','2025-12-17 12:27:52',0),(0,0,'2526','H','O',7175,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 12:32:00','reception','2025-12-17 12:32:00',0),(0,0,'2526','H','O',7176,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 12:38:28','reception','2025-12-17 12:38:28',0),(0,0,'2526','H','O',7177,1,0,'2025-12-17','00:00:00','OPWD0023',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-17 12:43:22','janvi','2025-12-17 12:43:22',0),(0,0,'2526','H','O',7178,1,0,'2025-12-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-17 12:43:40','drashti','2025-12-17 12:43:40',0),(0,0,'2526','H','O',7179,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 12:47:28','reception','2025-12-17 12:47:28',0),(0,0,'2526','H','O',7180,1,0,'2025-12-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-17 13:00:44','drashti','2025-12-17 13:00:44',0),(0,0,'2526','H','O',7181,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 13:03:36','reception','2025-12-17 13:03:36',0),(0,0,'2526','H','O',7182,1,0,'2025-12-17','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-17 13:04:45','janvi','2025-12-17 13:04:45',0),(0,0,'2526','H','O',7183,1,0,'2025-12-17','00:00:00','XRY0434',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-12-17 13:07:21','shweta','2025-12-17 13:07:21',0),(0,0,'2526','H','O',7184,1,0,'2025-12-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-17 13:08:49','shweta','2025-12-17 13:08:49',0),(0,0,'2526','H','O',7184,2,0,'2025-12-17','00:00:00','OPWD0023',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-17 13:08:49','shweta','2025-12-17 13:08:49',0),(0,0,'2526','H','O',7184,3,0,'2025-12-17','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-17 13:08:49','shweta','2025-12-17 13:08:49',0),(0,0,'2526','H','O',7184,4,0,'2025-12-17','00:00:00','OPWD0016',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-17 13:08:49','shweta','2025-12-17 13:08:49',0),(0,0,'2526','H','O',7185,1,0,'2025-12-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 13:18:59','reception','2025-12-17 13:18:59',0),(0,0,'2526','H','O',7186,1,0,'2025-12-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-17 13:19:42','shweta','2025-12-17 13:19:42',0),(0,0,'2526','H','O',7187,1,0,'2025-12-17','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-17 13:22:25','reception','2025-12-17 13:22:25',0),(0,0,'2526','H','O',7188,1,0,'2025-12-17','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-17 13:27:29','reception','2025-12-17 13:27:29',0),(0,0,'2526','H','O',7189,1,0,'2025-12-17','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-17 13:36:03','drashti','2025-12-17 13:36:03',0),(0,0,'2526','H','O',7190,1,0,'2025-12-17','00:00:00','NEU10016',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-17 13:56:23','drashti','2025-12-17 13:56:23',0),(0,0,'2526','H','O',7190,2,0,'2025-12-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-17 13:56:23','drashti','2025-12-17 13:56:23',0),(0,0,'2526','H','O',7191,1,0,'2025-12-17','00:00:00','XRY0056',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-12-17 14:51:51','priyanshi','2025-12-17 14:51:51',0),(0,0,'2526','H','O',7192,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 16:24:54','reception','2025-12-17 17:51:04',0),(0,0,'2526','H','O',7193,1,0,'2025-12-17','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 16:48:22','reception','2025-12-17 16:48:22',0),(0,0,'2526','H','O',7194,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 16:49:37','reception','2025-12-17 16:49:37',0),(0,0,'2526','H','O',7195,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-17 17:00:35','drashti','2025-12-17 17:00:35',0),(0,0,'2526','H','O',7196,1,0,'2025-12-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-17 17:04:51','reception','2025-12-17 17:04:51',0),(0,0,'2526','H','O',7197,1,0,'2025-12-17','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-17 17:11:31','reception','2025-12-17 17:11:31',0),(0,0,'2526','H','O',7198,1,0,'2025-12-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 17:20:04','reception','2025-12-17 17:20:04',0),(0,0,'2526','H','O',7199,1,0,'2025-12-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-17 17:23:14','drashti','2025-12-17 17:23:14',0),(0,0,'2526','H','O',7200,1,0,'2025-12-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-17 17:24:12','reception','2025-12-17 17:24:12',0),(0,0,'2526','H','O',7201,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-17 17:32:48','priyanshi','2025-12-17 17:32:48',0),(0,0,'2526','H','O',7202,1,0,'2025-12-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 17:34:02','reception','2025-12-17 17:34:02',0),(0,0,'2526','H','O',7203,1,0,'2025-12-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-17 17:35:31','reception','2025-12-17 17:35:31',0),(0,0,'2526','H','O',7204,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 17:40:47','reception','2025-12-17 17:40:47',0),(0,0,'2526','H','O',7205,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 17:41:34','reception','2025-12-17 17:41:34',0),(0,0,'2526','H','O',7206,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-17 17:42:40','priyanshi','2025-12-17 17:42:40',0),(0,0,'2526','H','O',7207,1,0,'2025-12-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 17:49:21','reception','2025-12-17 17:49:21',0),(0,0,'2526','H','O',7208,1,0,'2025-12-17','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 17:51:04','reception','2025-12-17 17:51:04',0),(0,0,'2526','H','O',7209,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 17:52:36','reception','2025-12-17 17:52:36',0),(0,0,'2526','H','O',7210,1,0,'2025-12-17','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 18:00:45','reception','2025-12-17 18:49:37',0),(0,0,'2526','H','O',7211,1,0,'2025-12-17','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 18:03:02','reception','2025-12-17 18:03:02',0),(0,0,'2526','H','O',7212,1,0,'2025-12-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-17 18:04:16','drashti','2025-12-17 18:04:16',0),(0,0,'2526','H','O',7213,1,0,'2025-12-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-17 18:07:07','drashti','2025-12-17 18:07:07',0),(0,0,'2526','H','O',7214,1,0,'2025-12-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-17 18:09:33','reception','2025-12-17 18:09:33',0),(0,0,'2526','H','O',7215,1,0,'2025-12-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-17 18:10:24','priyanshi','2025-12-17 18:10:24',0),(0,0,'2526','H','O',7216,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-17 18:10:45','drashti','2025-12-17 18:10:45',0),(0,0,'2526','H','O',7217,1,0,'2025-12-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-17 18:14:49','drashti','2025-12-17 18:14:49',0),(0,0,'2526','H','O',7218,1,0,'2025-12-17','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 18:15:44','reception','2025-12-17 18:15:44',0),(0,0,'2526','H','O',7219,1,0,'2025-12-17','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-17 18:15:46','priyanshi','2025-12-17 18:15:46',0),(0,0,'2526','H','O',7220,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-17 18:16:15','drashti','2025-12-17 18:16:15',0),(0,0,'2526','H','O',7221,1,0,'2025-12-17','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-17 18:17:51','priyanshi','2025-12-17 18:17:51',0),(0,0,'2526','H','O',7222,1,0,'2025-12-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-17 18:18:24','drashti','2025-12-17 18:18:24',0),(0,0,'2526','H','O',7223,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-17 18:20:00','drashti','2025-12-17 18:20:00',0),(0,0,'2526','H','O',7224,1,0,'2025-12-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 18:20:11','reception','2025-12-17 18:20:11',0),(0,0,'2526','H','O',7224,2,0,'2025-12-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 18:20:11','reception','2025-12-17 18:20:11',0),(0,0,'2526','H','O',7224,3,0,'2025-12-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 18:20:11','reception','2025-12-17 18:20:11',0),(0,0,'2526','H','O',7225,1,0,'2025-12-17','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-17 18:22:19','drashti','2025-12-17 18:22:19',0),(0,0,'2526','H','O',7226,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-17 18:22:34','shweta','2025-12-17 18:22:34',0),(0,0,'2526','H','O',7227,1,0,'2025-12-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 18:23:14','reception','2025-12-17 18:23:14',0),(0,0,'2526','H','O',7227,2,0,'2025-12-17','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 18:23:14','reception','2025-12-17 18:23:14',0),(0,0,'2526','H','O',7228,1,0,'2025-12-17','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-17 18:27:13','janvi','2025-12-17 18:27:13',0),(0,0,'2526','H','O',7229,1,0,'2025-12-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-17 18:28:25','drashti','2025-12-17 18:28:25',0),(0,0,'2526','H','O',7230,1,0,'2025-12-17','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-17 18:29:31','janvi','2025-12-17 18:29:31',0),(0,0,'2526','H','O',7231,1,0,'2025-12-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-17 18:30:32','reception','2025-12-17 18:30:32',0),(0,0,'2526','H','O',7232,1,0,'2025-12-17','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 18:33:46','reception','2025-12-17 19:46:24',0),(0,0,'2526','H','O',7233,1,0,'2025-12-17','00:00:00','OTCG0033',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-17 18:34:34','drashti','2025-12-17 18:34:34',0),(0,0,'2526','H','O',7234,1,0,'2025-12-17','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 18:36:07','reception','2025-12-17 18:36:07',0),(0,0,'2526','H','O',7234,2,0,'2025-12-17','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 18:36:07','reception','2025-12-17 18:36:07',0),(0,0,'2526','H','O',7234,3,0,'2025-12-17','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-17 18:36:07','reception','2025-12-17 18:36:07',0),(0,0,'2526','H','O',7235,1,0,'2025-12-17','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-17 18:36:40','janvi','2025-12-17 18:36:40',0),(0,0,'2526','H','O',7236,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 18:38:37','reception','2025-12-17 19:56:19',0),(0,0,'2526','H','O',7237,1,0,'2025-12-17','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-17 18:40:30','drashti','2025-12-17 18:40:30',0),(0,0,'2526','H','O',7238,1,0,'2025-12-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-17 18:43:55','janvi','2025-12-17 18:43:55',0),(0,0,'2526','H','O',7239,1,0,'2025-12-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-17 18:44:01','drashti','2025-12-17 18:44:01',0),(0,0,'2526','H','O',7240,1,0,'2025-12-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-17 18:48:41','drashti','2025-12-17 18:48:41',0),(0,0,'2526','H','O',7241,1,0,'2025-12-17','00:00:00','CASE',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 18:49:37','reception','2025-12-17 18:49:37',0),(0,0,'2526','H','O',7242,1,0,'2025-12-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-17 18:50:13','janvi','2025-12-17 18:50:13',0),(0,0,'2526','H','O',7243,1,0,'2025-12-17','00:00:00','CASE',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 18:50:38','reception','2025-12-17 18:50:38',0),(0,0,'2526','H','O',7244,1,0,'2025-12-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-17 18:53:14','drashti','2025-12-17 18:53:14',0),(0,0,'2526','H','O',7245,1,0,'2025-12-17','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-17 18:56:04','shweta','2025-12-17 18:56:04',0),(0,0,'2526','H','O',7246,1,0,'2025-12-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-17 18:57:36','janvi','2025-12-17 18:57:36',0),(0,0,'2526','H','O',7247,1,0,'2025-12-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-17 18:57:53','drashti','2025-12-17 18:57:53',0),(0,0,'2526','H','O',7248,1,0,'2025-12-17','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-17 19:00:00','janvi','2025-12-17 19:00:00',0),(0,0,'2526','H','O',7249,1,0,'2025-12-17','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-17 19:01:02','drashti','2025-12-17 19:01:02',0),(0,0,'2526','H','O',7250,1,0,'2025-12-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-17 19:05:28','reception','2025-12-17 19:05:28',0),(0,0,'2526','H','O',7251,1,0,'2025-12-17','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-17 19:05:47','janvi','2025-12-17 19:05:47',0),(0,0,'2526','H','O',7252,1,0,'2025-12-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-17 19:08:46','janvi','2025-12-17 19:08:46',0),(0,0,'2526','H','O',7253,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-17 19:13:28','drashti','2025-12-17 19:13:28',0),(0,0,'2526','H','O',7254,1,0,'2025-12-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-17 19:17:16','drashti','2025-12-17 19:17:16',0),(0,0,'2526','H','O',7255,1,0,'2025-12-17','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-17 19:18:33','drashti','2025-12-17 19:18:33',0),(0,0,'2526','H','O',7256,1,0,'2025-12-17','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-17 19:32:06','janvi','2025-12-17 19:32:06',0),(0,0,'2526','H','O',7257,1,0,'2025-12-17','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-17 19:39:52','janvi','2025-12-17 19:39:52',0),(0,0,'2526','H','O',7258,1,0,'2025-12-17','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-17 19:40:41','drashti','2025-12-17 19:40:41',0),(0,0,'2526','H','O',7259,1,0,'2025-12-17','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 19:46:24','reception','2025-12-17 19:46:24',0),(0,0,'2526','H','O',7260,1,0,'2025-12-17','00:00:00','CASE',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 19:47:34','reception','2025-12-17 19:47:34',0),(0,0,'2526','H','O',7261,1,0,'2025-12-17','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-17 19:51:09','drashti','2025-12-17 19:51:09',0),(0,0,'2526','H','O',7262,1,0,'2025-12-17','00:00:00','OPWD0023',0,1.00,12000,12000,'P',0,0,12000.00,0.00,0.00,12000.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-17 19:54:57','shweta','2025-12-17 19:54:57',0),(0,0,'2526','H','O',7263,1,0,'2025-12-17','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 19:56:19','reception','2025-12-17 19:56:19',0),(0,0,'2526','H','O',7264,1,0,'2025-12-17','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-17 19:57:17','reception','2025-12-17 19:57:17',0),(0,0,'2526','H','O',7265,1,0,'2025-12-17','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-17 20:00:08','janvi','2025-12-17 20:00:08',0),(0,0,'2526','H','O',7266,1,0,'2025-12-17','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-17 20:12:16','reception','2025-12-17 20:12:16',0),(0,0,'2526','H','O',7267,1,0,'2025-12-17','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-17 20:20:05','drashti','2025-12-17 20:20:05',0),(0,0,'2526','H','O',7268,1,0,'2025-12-18','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-18 08:48:01','reception','2025-12-18 08:48:01',0),(0,0,'2526','H','O',7269,1,0,'2025-12-18','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-18 08:51:16','reception','2025-12-18 08:51:16',0),(0,0,'2526','H','O',7270,1,0,'2025-12-18','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-18 08:53:51','reception','2025-12-18 08:53:51',0),(0,0,'2526','H','O',7270,2,0,'2025-12-18','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-18 08:53:51','reception','2025-12-18 08:53:51',0),(0,0,'2526','H','O',7270,3,0,'2025-12-18','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-18 08:53:51','reception','2025-12-18 08:53:51',0),(0,0,'2526','H','O',7271,1,0,'2025-12-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-18 09:50:30','drashti','2025-12-18 09:50:30',0),(0,0,'2526','H','O',7272,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 09:57:53','reception','2025-12-18 09:57:53',0),(0,0,'2526','H','O',7273,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 10:08:51','reception','2025-12-18 10:08:51',0),(0,0,'2526','H','O',7274,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 10:11:22','reception','2025-12-18 10:11:22',0),(0,0,'2526','H','O',7275,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 10:15:03','reception','2025-12-18 10:15:03',0),(0,0,'2526','H','O',7276,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 10:27:53','reception','2025-12-18 10:27:53',0),(0,0,'2526','H','O',7277,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 10:31:15','reception','2025-12-18 10:31:15',0),(0,0,'2526','H','O',7278,1,0,'2025-12-18','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-18 10:37:23','priyanshi','2025-12-18 14:09:00',0),(0,0,'2526','H','O',7278,2,0,'2025-12-18','00:00:00','OPWD0023',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-18 10:37:23','priyanshi','2025-12-18 14:09:00',0),(0,0,'2526','H','O',7279,1,0,'2025-12-18','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 10:40:36','reception','2025-12-18 10:40:36',0),(0,0,'2526','H','O',7280,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 10:44:13','reception','2025-12-18 10:44:13',0),(0,0,'2526','H','O',7281,1,0,'2025-12-18','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-18 10:46:11','janvi','2025-12-18 10:46:11',0),(0,0,'2526','H','O',7282,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 10:46:30','reception','2025-12-18 10:46:30',0),(0,0,'2526','H','O',7283,1,0,'2025-12-18','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 10:48:37','reception','2025-12-18 10:48:37',0),(0,0,'2526','H','O',7284,1,0,'2025-12-18','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-18 10:48:52','drashti','2025-12-18 10:48:52',0),(0,0,'2526','H','O',7285,1,0,'2025-12-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-18 10:49:57','drashti','2025-12-18 10:49:57',0),(0,0,'2526','H','O',7286,1,0,'2025-12-18','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-18 10:52:04','janvi','2025-12-18 11:01:15',0),(0,0,'2526','H','O',7287,1,0,'2025-12-18','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-18 10:52:37','drashti','2025-12-18 10:52:37',0),(0,0,'2526','H','O',7288,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-18 10:55:59','reception','2025-12-18 10:55:59',0),(0,0,'2526','H','O',7289,1,0,'2025-12-18','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-18 11:01:04','drashti','2025-12-18 11:01:04',0),(0,0,'2526','H','O',7290,1,0,'2025-12-18','00:00:00','CASE',0,-1.00,400,-400,'P',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-18 11:01:15','janvi','2025-12-18 11:01:15',0),(0,0,'2526','H','O',7291,1,0,'2025-12-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 11:02:43','reception','2025-12-18 11:02:43',0),(0,0,'2526','H','O',7292,1,0,'2025-12-18','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-18 11:05:44','drashti','2025-12-18 11:05:44',0),(0,0,'2526','H','O',7293,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 11:06:46','reception','2025-12-18 11:06:46',0),(0,0,'2526','H','O',7294,1,0,'2025-12-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-18 11:08:57','janvi','2025-12-18 11:08:57',0),(0,0,'2526','H','O',7295,1,0,'2025-12-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-18 11:12:14','drashti','2025-12-18 11:12:14',0),(0,0,'2526','H','O',7296,1,0,'2025-12-18','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-18 11:12:35','reception','2025-12-18 11:12:35',0),(0,0,'2526','H','O',7297,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 11:13:41','reception','2025-12-18 11:13:41',0),(0,0,'2526','H','O',7298,1,0,'2025-12-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-18 11:13:57','janvi','2025-12-18 11:13:57',0),(0,0,'2526','H','O',7299,1,0,'2025-12-18','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 11:18:51','reception','2025-12-18 11:18:51',0),(0,0,'2526','H','O',7299,2,0,'2025-12-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 11:18:51','reception','2025-12-18 11:18:51',0),(0,0,'2526','H','O',7299,3,0,'2025-12-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 11:18:51','reception','2025-12-18 11:18:51',0),(0,0,'2526','H','O',7300,1,0,'2025-12-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 11:23:44','reception','2025-12-18 11:23:44',0),(0,0,'2526','H','O',7300,2,0,'2025-12-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 11:23:44','reception','2025-12-18 11:23:44',0),(0,0,'2526','H','O',7301,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 11:25:41','reception','2025-12-18 11:25:41',0),(0,0,'2526','H','O',7302,1,0,'2025-12-18','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-18 11:28:02','reception','2025-12-18 11:28:02',0),(0,0,'2526','H','O',7303,1,0,'2025-12-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-18 11:32:36','shweta','2025-12-18 11:32:36',0),(0,0,'2526','H','O',7304,1,0,'2025-12-18','00:00:00','NEU10018',0,1.00,3500,3500,'P',0,0,3500.00,0.00,0.00,3500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 11:34:17','reception','2025-12-18 11:34:17',0),(0,0,'2526','H','O',7305,1,0,'2025-12-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-18 11:40:56','drashti','2025-12-18 11:40:56',0),(0,0,'2526','H','O',7306,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-18 11:45:29','drashti','2025-12-18 11:45:29',0),(0,0,'2526','H','O',7307,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-18 11:47:51','janvi','2025-12-18 11:47:51',0),(0,0,'2526','H','O',7308,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-18 11:48:06','shweta','2025-12-18 11:48:06',0),(0,0,'2526','H','O',7309,1,0,'2025-12-18','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-18 11:50:19','drashti','2025-12-18 11:50:19',0),(0,0,'2526','H','O',7310,1,0,'2025-12-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 11:51:01','reception','2025-12-18 11:51:01',0),(0,0,'2526','H','O',7310,2,0,'2025-12-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 11:51:01','reception','2025-12-18 11:51:01',0),(0,0,'2526','H','O',7311,1,0,'2025-12-18','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-18 11:52:34','janvi','2025-12-18 11:52:34',0),(0,0,'2526','H','O',7312,1,0,'2025-12-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','shweta','2025-12-18 11:55:27','shweta','2025-12-18 11:55:27',0),(0,0,'2526','H','O',7313,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 11:55:50','reception','2025-12-18 11:55:50',0),(0,0,'2526','H','O',7314,1,0,'2025-12-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-18 11:57:06','janvi','2025-12-18 11:57:06',0),(0,0,'2526','H','O',7315,1,0,'2025-12-18','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 11:57:20','reception','2025-12-18 11:57:20',0),(0,0,'2526','H','O',7316,1,0,'2025-12-18','00:00:00','OTCG0003',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-18 11:59:48','drashti','2025-12-18 11:59:48',0),(0,0,'2526','H','O',7317,1,0,'2025-12-18','00:00:00','XRY0151',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-12-18 12:04:12','shweta','2025-12-18 12:04:12',0),(0,0,'2526','H','O',7318,1,0,'2025-12-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 12:12:20','reception','2025-12-18 12:12:20',0),(0,0,'2526','H','O',7318,2,0,'2025-12-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 12:12:20','reception','2025-12-18 12:12:20',0),(0,0,'2526','H','O',7319,1,0,'2025-12-18','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 12:17:23','reception','2025-12-18 12:17:23',0),(0,0,'2526','H','O',7320,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-18 12:20:20','priyanshi','2025-12-18 12:20:20',0),(0,0,'2526','H','O',7321,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-18 12:21:52','janvi','2025-12-18 12:21:52',0),(0,0,'2526','H','O',7322,1,0,'2025-12-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-18 12:22:23','drashti','2025-12-18 12:22:23',0),(0,0,'2526','H','O',7323,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','priyanshi','2025-12-18 12:25:22','priyanshi','2025-12-18 12:25:22',0),(0,0,'2526','H','O',7324,1,0,'2025-12-18','00:00:00','XRY0169',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-12-18 12:26:34','priyanshi','2025-12-18 12:26:34',0),(0,0,'2526','H','O',7325,1,0,'2025-12-18','00:00:00','CASE',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-18 12:27:04','janvi','2025-12-18 12:27:04',0),(0,0,'2526','H','O',7326,1,0,'2025-12-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-18 12:28:19','reception','2025-12-18 12:28:19',0),(0,0,'2526','H','O',7327,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-18 12:29:36','reception','2025-12-18 12:29:36',0),(0,0,'2526','H','O',7328,1,0,'2025-12-18','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-18 12:36:57','janvi','2025-12-18 12:36:57',0),(0,0,'2526','H','O',7329,1,0,'2025-12-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-18 12:42:37','drashti','2025-12-18 12:42:37',0),(0,0,'2526','H','O',7330,1,0,'2025-12-18','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 12:43:27','reception','2025-12-18 12:43:27',0),(0,0,'2526','H','O',7331,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 12:53:10','reception','2025-12-18 12:53:10',0),(0,0,'2526','H','O',7332,1,0,'2025-12-18','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','shweta','2025-12-18 13:46:23','shweta','2025-12-18 13:46:23',0),(0,0,'2526','H','O',7333,1,0,'2025-12-18','00:00:00','CASE',0,-1.00,800,-800,'A',0,0,-800.00,0.00,0.00,-800.00,'',0,7,0,'',0,'','','','Y','N','priyanshi','2025-12-18 14:09:00','priyanshi','2025-12-18 14:09:00',0),(0,0,'2526','H','O',7333,2,0,'2025-12-18','00:00:00','OPWD0023',0,-1.00,500,-500,'P',0,0,-500.00,0.00,0.00,-500.00,'',0,7,0,'',0,'','','','Y','N','priyanshi','2025-12-18 14:09:00','priyanshi','2025-12-18 14:09:00',0),(0,0,'2526','H','O',7334,1,0,'2025-12-18','00:00:00','CASE',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','priyanshi','2025-12-18 14:11:07','priyanshi','2025-12-18 14:11:07',0),(0,0,'2526','H','O',7334,2,0,'2025-12-18','00:00:00','OPWD0023',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','priyanshi','2025-12-18 14:11:07','priyanshi','2025-12-18 14:11:07',0),(0,0,'2526','H','O',7335,1,0,'2025-12-18','00:00:00','OPWD0023',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','priyanshi','2025-12-18 14:24:34','priyanshi','2025-12-18 14:24:34',0),(0,0,'2526','H','O',7335,2,0,'2025-12-18','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,7,0,'',0,'','','','Y','N','priyanshi','2025-12-18 14:24:34','priyanshi','2025-12-18 14:24:34',0),(0,0,'2526','H','O',7336,1,0,'2025-12-18','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-18 14:45:54','priyanshi','2025-12-18 14:45:54',0),(0,0,'2526','H','O',7336,2,0,'2025-12-18','00:00:00','OPWD0015',0,1.00,250,250,'P',0,0,250.00,0.00,0.00,250.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-18 14:45:54','priyanshi','2025-12-18 14:45:54',0),(0,0,'2526','H','O',7336,3,0,'2025-12-18','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-18 14:45:54','priyanshi','2025-12-18 14:45:54',0),(0,0,'2526','H','O',7337,1,0,'2025-12-18','00:00:00','OPWD0036',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-18 14:56:02','priyanshi','2025-12-18 14:56:02',0),(0,0,'2526','H','O',7338,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 16:24:10','reception','2025-12-18 16:24:10',0),(0,0,'2526','H','O',7339,1,0,'2025-12-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-12-18 16:25:41','priyanshi','2025-12-18 16:25:41',0),(0,0,'2526','H','O',7340,1,0,'2025-12-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 16:27:32','reception','2025-12-18 16:27:32',0),(0,0,'2526','H','O',7341,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 16:44:13','reception','2025-12-18 16:44:13',0),(0,0,'2526','H','O',7342,1,0,'2025-12-18','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 17:09:31','reception','2025-12-18 17:09:31',0),(0,0,'2526','H','O',7343,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 17:11:04','reception','2025-12-18 17:11:04',0),(0,0,'2526','H','O',7344,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 17:11:58','reception','2025-12-18 17:11:58',0),(0,0,'2526','H','O',7345,1,0,'2025-12-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-18 17:17:26','drashti','2025-12-18 17:17:26',0),(0,0,'2526','H','O',7346,1,0,'2025-12-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 17:18:54','reception','2025-12-18 17:18:54',0),(0,0,'2526','H','O',7347,1,0,'2025-12-18','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 17:21:00','reception','2025-12-18 17:21:00',0),(0,0,'2526','H','O',7347,2,0,'2025-12-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 17:21:00','reception','2025-12-18 17:21:00',0),(0,0,'2526','H','O',7347,3,0,'2025-12-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 17:21:00','reception','2025-12-18 17:21:00',0),(0,0,'2526','H','O',7347,4,0,'2025-12-18','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 17:21:00','reception','2025-12-18 17:21:00',0),(0,0,'2526','H','O',7348,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 17:23:13','reception','2025-12-18 18:00:28',0),(0,0,'2526','H','O',7349,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-18 17:23:33','manshi','2025-12-18 17:23:33',0),(0,0,'2526','H','O',7350,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 17:32:40','reception','2025-12-18 17:32:40',0),(0,0,'2526','H','O',7351,1,0,'2025-12-18','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-18 17:37:30','drashti','2025-12-18 17:37:30',0),(0,0,'2526','H','O',7352,1,0,'2025-12-18','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-18 17:39:27','drashti','2025-12-18 17:39:27',0),(0,0,'2526','H','O',7353,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 17:41:08','reception','2025-12-18 17:41:08',0),(0,0,'2526','H','O',7354,1,0,'2025-12-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-18 17:41:28','drashti','2025-12-18 17:41:28',0),(0,0,'2526','H','O',7355,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-18 17:46:18','manshi','2025-12-18 17:46:18',0),(0,0,'2526','H','O',7356,1,0,'2025-12-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 17:47:15','reception','2025-12-18 17:47:15',0),(0,0,'2526','H','O',7357,1,0,'2025-12-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-18 17:47:28','manshi','2025-12-18 17:47:28',0),(0,0,'2526','H','O',7358,1,0,'2025-12-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 17:57:01','reception','2025-12-18 17:57:01',0),(0,0,'2526','H','O',7358,2,0,'2025-12-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 17:57:01','reception','2025-12-18 17:57:01',0),(0,0,'2526','H','O',7359,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','urvashi','2025-12-18 17:58:58','urvashi','2025-12-18 17:58:58',0),(0,0,'2526','H','O',7360,1,0,'2025-12-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 17:59:01','reception','2025-12-18 17:59:01',0),(0,0,'2526','H','O',7361,1,0,'2025-12-18','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-18 17:59:26','manshi','2025-12-18 17:59:26',0),(0,0,'2526','H','O',7362,1,0,'2025-12-18','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 18:00:28','reception','2025-12-18 18:00:28',0),(0,0,'2526','H','O',7363,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 18:02:17','reception','2025-12-18 18:02:17',0),(0,0,'2526','H','O',7364,1,0,'2025-12-18','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-18 18:04:09','drashti','2025-12-18 18:04:09',0),(0,0,'2526','H','O',7365,1,0,'2025-12-18','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-18 18:05:47','drashti','2025-12-18 18:05:47',0),(0,0,'2526','H','O',7366,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-18 18:06:04','urvashi','2025-12-18 18:06:04',0),(0,0,'2526','H','O',7367,1,0,'2025-12-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-18 18:07:07','drashti','2025-12-18 18:07:07',0),(0,0,'2526','H','O',7368,1,0,'2025-12-18','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-18 18:07:41','manshi','2025-12-18 18:07:41',0),(0,0,'2526','H','O',7369,1,0,'2025-12-18','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-18 18:13:38','drashti','2025-12-18 18:13:38',0),(0,0,'2526','H','O',7370,1,0,'2025-12-18','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-18 18:13:55','reception','2025-12-18 18:13:55',0),(0,0,'2526','H','O',7371,1,0,'2025-12-18','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-18 18:14:19','urvashi','2025-12-18 18:14:19',0),(0,0,'2526','H','O',7372,1,0,'2025-12-18','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','urvashi','2025-12-18 18:14:45','urvashi','2025-12-18 18:14:45',0),(0,0,'2526','H','O',7373,1,0,'2025-12-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-18 18:16:49','drashti','2025-12-18 18:16:49',0),(0,0,'2526','H','O',7374,1,0,'2025-12-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 18:17:39','reception','2025-12-18 18:17:39',0),(0,0,'2526','H','O',7374,2,0,'2025-12-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 18:17:39','reception','2025-12-18 18:17:39',0),(0,0,'2526','H','O',7374,3,0,'2025-12-18','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 18:17:39','reception','2025-12-18 18:17:39',0),(0,0,'2526','H','O',7375,1,0,'2025-12-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-18 18:21:26','drashti','2025-12-18 18:21:26',0),(0,0,'2526','H','O',7376,1,0,'2025-12-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-18 18:21:30','urvashi','2025-12-18 18:21:30',0),(0,0,'2526','H','O',7377,1,0,'2025-12-18','00:00:00','XRY0358',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-18 18:21:34','manshi','2025-12-18 18:21:34',0),(0,0,'2526','H','O',7378,1,0,'2025-12-18','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 18:22:02','reception','2025-12-18 18:22:02',0),(0,0,'2526','H','O',7379,1,0,'2025-12-18','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-18 18:25:37','urvashi','2025-12-18 18:25:37',0),(0,0,'2526','H','O',7380,1,0,'2025-12-18','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','urvashi','2025-12-18 18:25:47','urvashi','2025-12-18 18:25:47',0),(0,0,'2526','H','O',7381,1,0,'2025-12-18','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-18 18:26:10','drashti','2025-12-18 18:26:10',0),(0,0,'2526','H','O',7382,1,0,'2025-12-18','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-18 18:29:00','urvashi','2025-12-18 18:29:00',0),(0,0,'2526','H','O',7383,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 18:29:06','reception','2025-12-18 18:29:06',0),(0,0,'2526','H','O',7384,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 18:30:44','reception','2025-12-18 18:30:44',0),(0,0,'2526','H','O',7385,1,0,'2025-12-18','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-18 18:32:49','drashti','2025-12-18 18:32:49',0),(0,0,'2526','H','O',7386,1,0,'2025-12-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-18 18:33:49','reception','2025-12-18 18:33:49',0),(0,0,'2526','H','O',7387,1,0,'2025-12-18','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','urvashi','2025-12-18 18:35:45','urvashi','2025-12-18 18:35:45',0),(0,0,'2526','H','O',7388,1,0,'2025-12-18','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 18:36:08','reception','2025-12-18 18:36:08',0),(0,0,'2526','H','O',7388,2,0,'2025-12-18','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-18 18:36:08','reception','2025-12-18 18:36:08',0),(0,0,'2526','H','O',7389,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 18:39:14','reception','2025-12-18 18:39:14',0),(0,0,'2526','H','O',7390,1,0,'2025-12-18','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-18 18:42:52','janvi','2025-12-18 18:42:52',0),(0,0,'2526','H','O',7391,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 18:44:33','reception','2025-12-18 18:44:33',0),(0,0,'2526','H','O',7392,1,0,'2025-12-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-18 18:45:11','drashti','2025-12-18 18:45:11',0),(0,0,'2526','H','O',7393,1,0,'2025-12-18','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-18 18:52:39','janvi','2025-12-18 18:52:39',0),(0,0,'2526','H','O',7394,1,0,'2025-12-18','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-18 18:52:56','drashti','2025-12-18 18:52:56',0),(0,0,'2526','H','O',7395,1,0,'2025-12-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-18 18:54:24','drashti','2025-12-18 19:21:27',0),(0,0,'2526','H','O',7396,1,0,'2025-12-18','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-18 18:57:33','janvi','2025-12-18 18:57:33',0),(0,0,'2526','H','O',7397,1,0,'2025-12-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-18 18:57:36','reception','2025-12-18 18:57:36',0),(0,0,'2526','H','O',7398,1,0,'2025-12-18','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-18 18:58:13','janvi','2025-12-18 18:58:13',0),(0,0,'2526','H','O',7399,1,0,'2025-12-18','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 19:02:36','reception','2025-12-18 19:02:36',0),(0,0,'2526','H','O',7400,1,0,'2025-12-18','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-18 19:14:46','manshi','2025-12-18 19:14:46',0),(0,0,'2526','H','O',7400,2,0,'2025-12-18','00:00:00','OPWD0023',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-18 19:14:46','manshi','2025-12-18 19:14:46',0),(0,0,'2526','H','O',7401,1,0,'2025-12-18','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-18 19:21:27','drashti','2025-12-18 19:21:27',0),(0,0,'2526','H','O',7402,1,0,'2025-12-18','00:00:00','OPWD0023',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-18 19:22:06','janvi','2025-12-18 19:22:06',0),(0,0,'2526','H','O',7403,1,0,'2025-12-18','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-18 19:23:07','drashti','2025-12-18 19:23:07',0),(0,0,'2526','H','O',7404,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-18 19:24:42','janvi','2025-12-18 19:24:42',0),(0,0,'2526','H','O',7405,1,0,'2025-12-18','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 19:38:59','reception','2025-12-18 19:38:59',0),(0,0,'2526','H','O',7406,1,0,'2025-12-18','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-18 19:49:04','drashti','2025-12-18 19:49:04',0),(0,0,'2526','H','O',7407,1,0,'2025-12-18','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-18 20:16:47','reception','2025-12-18 20:16:47',0),(0,0,'2526','H','O',7408,1,0,'2025-12-19','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-19 08:53:32','reception','2025-12-19 08:53:32',0),(0,0,'2526','H','O',7408,2,0,'2025-12-19','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 08:53:32','reception','2025-12-19 08:53:32',0),(0,0,'2526','H','O',7408,3,0,'2025-12-19','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-19 08:53:32','reception','2025-12-19 08:53:32',0),(0,0,'2526','H','O',7408,4,0,'2025-12-19','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-19 08:53:32','reception','2025-12-19 08:53:32',0),(0,0,'2526','H','O',7409,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 09:25:09','reception','2025-12-19 09:25:09',0),(0,0,'2526','H','O',7410,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 09:48:33','reception','2025-12-19 09:48:33',0),(0,0,'2526','H','O',7411,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 09:49:17','reception','2025-12-19 09:49:17',0),(0,0,'2526','H','O',7412,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-19 10:13:09','reception','2025-12-19 10:13:09',0),(0,0,'2526','H','O',7413,1,0,'2025-12-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 10:15:30','reception','2025-12-19 10:15:30',0),(0,0,'2526','H','O',7414,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 10:16:18','reception','2025-12-19 10:16:18',0),(0,0,'2526','H','O',7415,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 10:20:10','reception','2025-12-19 10:20:10',0),(0,0,'2526','H','O',7416,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-19 10:25:55','drashti','2025-12-19 10:25:55',0),(0,0,'2526','H','O',7417,1,0,'2025-12-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-19 10:29:45','drashti','2025-12-19 10:29:45',0),(0,0,'2526','H','O',7418,1,0,'2025-12-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-19 10:31:45','drashti','2025-12-19 10:31:45',0),(0,0,'2526','H','O',7419,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 10:38:36','reception','2025-12-19 10:38:36',0),(0,0,'2526','H','O',7420,1,0,'2025-12-19','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-19 10:42:22','drashti','2025-12-19 10:42:22',0),(0,0,'2526','H','O',7421,1,0,'2025-12-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 10:42:25','reception','2025-12-19 10:42:25',0),(0,0,'2526','H','O',7422,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-19 10:46:03','drashti','2025-12-19 10:46:03',0),(0,0,'2526','H','O',7423,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 10:46:15','reception','2025-12-19 10:46:15',0),(0,0,'2526','H','O',7424,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 10:47:00','reception','2025-12-19 10:47:00',0),(0,0,'2526','H','O',7425,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-19 10:47:05','janvi','2025-12-19 10:47:05',0),(0,0,'2526','H','O',7426,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 10:50:33','reception','2025-12-19 10:50:33',0),(0,0,'2526','H','O',7427,1,0,'2025-12-19','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-19 10:50:47','drashti','2025-12-19 10:50:47',0),(0,0,'2526','H','O',7428,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 10:53:22','reception','2025-12-19 10:53:22',0),(0,0,'2526','H','O',7429,1,0,'2025-12-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 10:57:01','reception','2025-12-19 10:57:01',0),(0,0,'2526','H','O',7430,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 10:57:53','reception','2025-12-19 10:57:53',0),(0,0,'2526','H','O',7431,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-19 10:57:53','drashti','2025-12-19 10:57:53',0),(0,0,'2526','H','O',7432,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 11:04:09','reception','2025-12-19 11:04:09',0),(0,0,'2526','H','O',7433,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-19 11:09:14','drashti','2025-12-19 11:09:14',0),(0,0,'2526','H','O',7434,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 11:11:59','reception','2025-12-19 11:11:59',0),(0,0,'2526','H','O',7435,1,0,'2025-12-19','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-19 11:13:27','janvi','2025-12-19 11:13:27',0),(0,0,'2526','H','O',7436,1,0,'2025-12-19','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-19 11:14:23','manshi','2025-12-19 11:23:30',0),(0,0,'2526','H','O',7437,1,0,'2025-12-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-19 11:15:15','drashti','2025-12-19 11:15:15',0),(0,0,'2526','H','O',7438,1,0,'2025-12-19','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 11:18:10','reception','2025-12-19 11:18:10',0),(0,0,'2526','H','O',7438,2,0,'2025-12-19','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 11:18:10','reception','2025-12-19 11:18:10',0),(0,0,'2526','H','O',7438,3,0,'2025-12-19','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 11:18:10','reception','2025-12-19 11:18:10',0),(0,0,'2526','H','O',7439,1,0,'2025-12-19','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 11:22:05','reception','2025-12-19 11:22:05',0),(0,0,'2526','H','O',7440,1,0,'2025-12-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-19 11:22:11','drashti','2025-12-19 11:22:11',0),(0,0,'2526','H','O',7440,2,0,'2025-12-19','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-19 11:22:11','drashti','2025-12-19 11:22:11',0),(0,0,'2526','H','O',7440,3,0,'2025-12-19','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-19 11:22:11','drashti','2025-12-19 11:22:11',0),(0,0,'2526','H','O',7441,1,0,'2025-12-19','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-19 11:23:30','manshi','2025-12-19 11:23:30',0),(0,0,'2526','H','O',7442,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 11:24:26','reception','2025-12-19 11:24:26',0),(0,0,'2526','H','O',7442,2,0,'2025-12-19','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 11:24:26','reception','2025-12-19 11:24:26',0),(0,0,'2526','H','O',7443,1,0,'2025-12-19','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-19 11:25:49','janvi','2025-12-19 11:25:49',0),(0,0,'2526','H','O',7444,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-19 11:27:11','janvi','2025-12-19 11:27:11',0),(0,0,'2526','H','O',7445,1,0,'2025-12-19','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 11:27:21','reception','2025-12-19 11:27:21',0),(0,0,'2526','H','O',7446,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 11:28:49','reception','2025-12-19 11:28:49',0),(0,0,'2526','H','O',7447,1,0,'2025-12-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 11:31:11','reception','2025-12-19 11:31:11',0),(0,0,'2526','H','O',7448,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 11:32:15','reception','2025-12-19 11:32:15',0),(0,0,'2526','H','O',7449,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-19 11:32:54','drashti','2025-12-19 11:32:54',0),(0,0,'2526','H','O',7450,1,0,'2025-12-19','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 11:35:08','reception','2025-12-19 11:35:08',0),(0,0,'2526','H','O',7450,2,0,'2025-12-19','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 11:35:08','reception','2025-12-19 11:35:08',0),(0,0,'2526','H','O',7450,3,0,'2025-12-19','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 11:35:08','reception','2025-12-19 11:35:08',0),(0,0,'2526','H','O',7451,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 11:36:54','reception','2025-12-19 11:36:54',0),(0,0,'2526','H','O',7452,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-19 11:39:04','drashti','2025-12-19 11:39:04',0),(0,0,'2526','H','O',7453,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 11:42:07','reception','2025-12-19 11:42:07',0),(0,0,'2526','H','O',7454,1,0,'2025-12-19','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-19 11:44:28','janvi','2025-12-19 11:44:28',0),(0,0,'2526','H','O',7455,1,0,'2025-12-19','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 11:46:40','reception','2025-12-19 11:46:40',0),(0,0,'2526','H','O',7455,2,0,'2025-12-19','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 11:46:40','reception','2025-12-19 11:46:40',0),(0,0,'2526','H','O',7455,3,0,'2025-12-19','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 11:46:40','reception','2025-12-19 11:46:40',0),(0,0,'2526','H','O',7456,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-19 11:47:24','janvi','2025-12-19 11:47:24',0),(0,0,'2526','H','O',7457,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 11:48:03','reception','2025-12-19 11:48:03',0),(0,0,'2526','H','O',7458,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-19 11:48:08','drashti','2025-12-19 11:48:08',0),(0,0,'2526','H','O',7459,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-19 11:48:33','manshi','2025-12-19 11:48:33',0),(0,0,'2526','H','O',7460,1,0,'2025-12-19','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 11:50:43','reception','2025-12-19 11:50:43',0),(0,0,'2526','H','O',7461,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 11:52:52','reception','2025-12-19 11:52:52',0),(0,0,'2526','H','O',7462,1,0,'2025-12-19','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 11:54:48','reception','2025-12-19 11:54:48',0),(0,0,'2526','H','O',7462,2,0,'2025-12-19','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 11:54:48','reception','2025-12-19 11:54:48',0),(0,0,'2526','H','O',7463,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-19 11:56:04','drashti','2025-12-19 11:56:04',0),(0,0,'2526','H','O',7464,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-19 11:56:07','janvi','2025-12-19 11:56:07',0),(0,0,'2526','H','O',7465,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-19 11:56:55','janvi','2025-12-19 11:56:55',0),(0,0,'2526','H','O',7466,1,0,'2025-12-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-19 11:58:57','reception','2025-12-19 11:58:57',0),(0,0,'2526','H','O',7467,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-19 12:01:29','janvi','2025-12-19 12:01:29',0),(0,0,'2526','H','O',7468,1,0,'2025-12-19','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 12:13:50','reception','2025-12-19 12:13:50',0),(0,0,'2526','H','O',7469,1,0,'2025-12-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 12:16:40','reception','2025-12-19 12:16:40',0),(0,0,'2526','H','O',7470,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-19 12:22:11','janvi','2025-12-19 12:22:11',0),(0,0,'2526','H','O',7471,1,0,'2025-12-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 12:23:53','reception','2025-12-19 13:14:42',0),(0,0,'2526','H','O',7472,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-19 12:25:57','drashti','2025-12-19 12:25:57',0),(0,0,'2526','H','O',7473,1,0,'2025-12-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-19 12:28:39','drashti','2025-12-19 12:28:39',0),(0,0,'2526','H','O',7474,1,0,'2025-12-19','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-19 12:29:24','manshi','2025-12-19 12:29:24',0),(0,0,'2526','H','O',7475,1,0,'2025-12-19','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 12:33:00','reception','2025-12-19 12:33:00',0),(0,0,'2526','H','O',7475,2,0,'2025-12-19','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 12:33:00','reception','2025-12-19 12:33:00',0),(0,0,'2526','H','O',7475,3,0,'2025-12-19','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 12:33:00','reception','2025-12-19 12:33:00',0),(0,0,'2526','H','O',7476,1,0,'2025-12-19','00:00:00','OPWD0023',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-19 12:40:09','janvi','2025-12-19 12:40:09',0),(0,0,'2526','H','O',7477,1,0,'2025-12-19','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-19 12:42:48','drashti','2025-12-19 12:42:48',0),(0,0,'2526','H','O',7478,1,0,'2025-12-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 12:43:54','reception','2025-12-19 12:43:54',0),(0,0,'2526','H','O',7479,1,0,'2025-12-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-19 12:49:01','drashti','2025-12-19 12:49:01',0),(0,0,'2526','H','O',7480,1,0,'2025-12-19','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-19 12:53:42','reception','2025-12-19 12:53:42',0),(0,0,'2526','H','O',7481,1,0,'2025-12-19','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-19 12:58:33','drashti','2025-12-19 12:58:33',0),(0,0,'2526','H','O',7482,1,0,'2025-12-19','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 13:03:00','reception','2025-12-19 13:03:00',0),(0,0,'2526','H','O',7482,2,0,'2025-12-19','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 13:03:00','reception','2025-12-19 13:03:00',0),(0,0,'2526','H','O',7483,1,0,'2025-12-19','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-19 13:03:15','drashti','2025-12-19 13:03:15',0),(0,0,'2526','H','O',7484,1,0,'2025-12-19','00:00:00','CASE',0,-1.00,900,-900,'A',0,0,-900.00,0.00,0.00,-900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 13:14:42','reception','2025-12-19 13:14:42',0),(0,0,'2526','H','O',7485,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 13:21:31','reception','2025-12-19 13:21:31',0),(0,0,'2526','H','O',7486,1,0,'2025-12-19','00:00:00','OPWD0024',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-19 13:23:26','janvi','2025-12-19 13:23:26',0),(0,0,'2526','H','O',7486,2,0,'2025-12-19','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-19 13:23:26','janvi','2025-12-19 13:23:26',0),(0,0,'2526','H','O',7487,1,0,'2025-12-19','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 14:06:03','reception','2025-12-19 14:06:03',0),(0,0,'2526','H','O',7487,2,0,'2025-12-19','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 14:06:03','reception','2025-12-19 14:06:03',0),(0,0,'2526','H','O',7488,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 14:26:54','reception','2025-12-19 14:26:54',0),(0,0,'2526','H','O',7489,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-12-19 15:44:30','priyanshi','2025-12-19 15:44:30',0),(0,0,'2526','H','O',7490,1,0,'2025-12-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 16:17:00','reception','2025-12-19 16:17:00',0),(0,0,'2526','H','O',7491,1,0,'2025-12-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 16:31:24','reception','2025-12-19 16:31:24',0),(0,0,'2526','H','O',7492,1,0,'2025-12-19','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 16:40:53','reception','2025-12-19 16:40:53',0),(0,0,'2526','H','O',7492,2,0,'2025-12-19','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 16:40:53','reception','2025-12-19 16:40:53',0),(0,0,'2526','H','O',7493,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 16:47:25','reception','2025-12-19 16:47:25',0),(0,0,'2526','H','O',7494,1,0,'2025-12-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-12-19 16:48:07','priyanshi','2025-12-19 16:48:07',0),(0,0,'2526','H','O',7495,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 16:51:52','reception','2025-12-19 16:51:52',0),(0,0,'2526','H','O',7496,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 16:56:09','reception','2025-12-19 16:56:09',0),(0,0,'2526','H','O',7497,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 17:03:16','reception','2025-12-19 17:03:16',0),(0,0,'2526','H','O',7498,1,0,'2025-12-19','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 17:10:43','reception','2025-12-19 17:10:43',0),(0,0,'2526','H','O',7499,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-19 17:15:03','priyanshi','2025-12-19 17:15:03',0),(0,0,'2526','H','O',7500,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 17:16:36','reception','2025-12-19 17:16:36',0),(0,0,'2526','H','O',7501,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 17:20:18','reception','2025-12-19 17:20:18',0),(0,0,'2526','H','O',7502,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 17:26:50','reception','2025-12-19 17:26:50',0),(0,0,'2526','H','O',7503,1,0,'2025-12-19','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 17:35:32','reception','2025-12-19 17:35:32',0),(0,0,'2526','H','O',7504,1,0,'2025-12-19','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 17:36:27','reception','2025-12-19 17:36:27',0),(0,0,'2526','H','O',7505,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-19 17:37:58','drashti','2025-12-19 17:37:58',0),(0,0,'2526','H','O',7506,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-19 17:43:25','drashti','2025-12-19 17:43:25',0),(0,0,'2526','H','O',7507,1,0,'2025-12-19','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-19 17:46:30','manshi','2025-12-19 17:46:30',0),(0,0,'2526','H','O',7508,1,0,'2025-12-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 17:49:33','reception','2025-12-19 17:49:33',0),(0,0,'2526','H','O',7509,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 17:51:16','reception','2025-12-19 17:51:16',0),(0,0,'2526','H','O',7510,1,0,'2025-12-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 17:53:55','reception','2025-12-19 17:53:55',0),(0,0,'2526','H','O',7511,1,0,'2025-12-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-19 17:55:26','drashti','2025-12-19 17:55:26',0),(0,0,'2526','H','O',7512,1,0,'2025-12-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 18:00:44','reception','2025-12-19 18:00:44',0),(0,0,'2526','H','O',7513,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-19 18:00:57','drashti','2025-12-19 18:00:57',0),(0,0,'2526','H','O',7514,1,0,'2025-12-19','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 18:02:26','reception','2025-12-19 18:02:26',0),(0,0,'2526','H','O',7514,2,0,'2025-12-19','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 18:02:26','reception','2025-12-19 18:02:26',0),(0,0,'2526','H','O',7514,3,0,'2025-12-19','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 18:02:26','reception','2025-12-19 18:02:26',0),(0,0,'2526','H','O',7515,1,0,'2025-12-19','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-19 18:07:06','priyanshi','2025-12-19 18:07:06',0),(0,0,'2526','H','O',7516,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-19 18:07:43','priyanshi','2025-12-19 18:07:43',0),(0,0,'2526','H','O',7517,1,0,'2025-12-19','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 18:07:51','reception','2025-12-19 18:07:51',0),(0,0,'2526','H','O',7517,2,0,'2025-12-19','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 18:07:51','reception','2025-12-19 18:07:51',0),(0,0,'2526','H','O',7517,3,0,'2025-12-19','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 18:07:51','reception','2025-12-19 18:07:51',0),(0,0,'2526','H','O',7518,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 18:10:40','reception','2025-12-19 18:10:40',0),(0,0,'2526','H','O',7519,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 18:19:11','reception','2025-12-19 18:19:11',0),(0,0,'2526','H','O',7520,1,0,'2025-12-19','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-19 18:23:01','reception','2025-12-19 18:23:01',0),(0,0,'2526','H','O',7521,1,0,'2025-12-19','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-19 18:24:35','priyanshi','2025-12-19 18:24:35',0),(0,0,'2526','H','O',7522,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 18:25:59','reception','2025-12-19 18:25:59',0),(0,0,'2526','H','O',7523,1,0,'2025-12-19','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-19 18:26:49','priyanshi','2025-12-19 18:26:49',0),(0,0,'2526','H','O',7524,1,0,'2025-12-19','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-19 18:29:16','drashti','2025-12-19 18:29:16',0),(0,0,'2526','H','O',7525,1,0,'2025-12-19','00:00:00','CASE',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-19 18:32:53','drashti','2025-12-19 18:32:53',0),(0,0,'2526','H','O',7526,1,0,'2025-12-19','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-19 18:34:42','priyanshi','2025-12-19 18:34:42',0),(0,0,'2526','H','O',7527,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-19 18:34:54','drashti','2025-12-19 18:34:54',0),(0,0,'2526','H','O',7528,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-19 18:37:09','priyanshi','2025-12-19 18:37:09',0),(0,0,'2526','H','O',7529,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-19 18:37:47','manshi','2025-12-19 18:37:47',0),(0,0,'2526','H','O',7530,1,0,'2025-12-19','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 18:38:09','reception','2025-12-19 18:38:09',0),(0,0,'2526','H','O',7530,2,0,'2025-12-19','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 18:38:09','reception','2025-12-19 18:38:09',0),(0,0,'2526','H','O',7531,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-19 18:38:42','drashti','2025-12-19 18:38:42',0),(0,0,'2526','H','O',7532,1,0,'2025-12-19','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-19 18:43:33','manshi','2025-12-19 18:43:33',0),(0,0,'2526','H','O',7533,1,0,'2025-12-19','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-19 18:46:53','priyanshi','2025-12-19 18:46:53',0),(0,0,'2526','H','O',7534,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 18:47:18','reception','2025-12-19 18:47:18',0),(0,0,'2526','H','O',7535,1,0,'2025-12-19','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-19 18:50:27','drashti','2025-12-19 18:50:27',0),(0,0,'2526','H','O',7536,1,0,'2025-12-19','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 18:52:22','reception','2025-12-19 18:52:22',0),(0,0,'2526','H','O',7537,1,0,'2025-12-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-19 18:53:51','priyanshi','2025-12-19 18:53:51',0),(0,0,'2526','H','O',7538,1,0,'2025-12-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-19 18:53:57','priyanshi','2025-12-19 18:53:57',0),(0,0,'2526','H','O',7539,1,0,'2025-12-19','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 18:55:08','reception','2025-12-19 18:55:08',0),(0,0,'2526','H','O',7539,2,0,'2025-12-19','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 18:55:08','reception','2025-12-19 18:55:08',0),(0,0,'2526','H','O',7540,1,0,'2025-12-19','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-19 18:55:55','manshi','2025-12-19 18:55:55',0),(0,0,'2526','H','O',7541,1,0,'2025-12-19','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-19 18:58:35','priyanshi','2025-12-19 18:58:35',0),(0,0,'2526','H','O',7542,1,0,'2025-12-19','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-19 18:58:47','drashti','2025-12-19 18:58:47',0),(0,0,'2526','H','O',7543,1,0,'2025-12-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-19 19:01:18','reception','2025-12-19 19:01:18',0),(0,0,'2526','H','O',7544,1,0,'2025-12-19','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-19 19:02:49','manshi','2025-12-19 19:02:49',0),(0,0,'2526','H','O',7545,1,0,'2025-12-19','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-19 19:10:15','drashti','2025-12-19 19:10:15',0),(0,0,'2526','H','O',7546,1,0,'2025-12-19','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-19 19:14:48','drashti','2025-12-19 19:14:48',0),(0,0,'2526','H','O',7547,1,0,'2025-12-19','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-19 19:20:47','priyanshi','2025-12-19 19:20:47',0),(0,0,'2526','H','O',7548,1,0,'2025-12-19','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-19 19:45:29','reception','2025-12-19 19:45:29',0),(0,0,'2526','H','O',7549,1,0,'2025-12-19','00:00:00','NEU10020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 19:52:56','reception','2025-12-19 19:52:56',0),(0,0,'2526','H','O',7550,1,0,'2025-12-19','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-19 20:03:41','reception','2025-12-19 20:03:41',0),(0,0,'2526','H','O',7551,1,0,'2025-12-20','00:00:00','SURG0005',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-12-20 08:48:40','priyanshi','2025-12-20 08:48:40',0),(0,0,'2526','H','O',7551,2,0,'2025-12-20','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-12-20 08:48:40','priyanshi','2025-12-20 08:48:40',0),(0,0,'2526','H','O',7552,1,0,'2025-12-20','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-20 08:50:53','priyanshi','2025-12-20 08:50:53',0),(0,0,'2526','H','O',7552,2,0,'2025-12-20','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-20 08:50:53','priyanshi','2025-12-20 08:50:53',0),(0,0,'2526','H','O',7552,3,0,'2025-12-20','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-12-20 08:50:53','priyanshi','2025-12-20 08:50:53',0),(0,0,'2526','H','O',7553,1,0,'2025-12-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-20 09:42:45','drashti','2025-12-20 09:42:45',0),(0,0,'2526','H','O',7554,1,0,'2025-12-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-20 10:20:47','manshi','2025-12-20 10:20:47',0),(0,0,'2526','H','O',7555,1,0,'2025-12-20','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-20 10:26:29','janvi','2025-12-20 10:26:29',0),(0,0,'2526','H','O',7556,1,0,'2025-12-20','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-20 10:35:06','drashti','2025-12-20 10:35:06',0),(0,0,'2526','H','O',7557,1,0,'2025-12-20','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-20 10:55:35','janvi','2025-12-20 10:55:35',0),(0,0,'2526','H','O',7558,1,0,'2025-12-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-20 11:01:29','manshi','2025-12-20 11:01:29',0),(0,0,'2526','H','O',7559,1,0,'2025-12-20','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-20 11:02:36','drashti','2025-12-20 11:02:36',0),(0,0,'2526','H','O',7560,1,0,'2025-12-20','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-20 11:10:37','drashti','2025-12-20 11:10:37',0),(0,0,'2526','H','O',7561,1,0,'2025-12-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-20 11:12:10','priyanshi','2025-12-20 11:12:10',0),(0,0,'2526','H','O',7562,1,0,'2025-12-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-20 11:15:19','manshi','2025-12-20 11:15:19',0),(0,0,'2526','H','O',7563,1,0,'2025-12-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-20 11:16:08','priyanshi','2025-12-20 11:16:08',0),(0,0,'2526','H','O',7564,1,0,'2025-12-20','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-12-20 11:18:17','priyanshi','2025-12-20 11:18:17',0),(0,0,'2526','H','O',7565,1,0,'2025-12-20','00:00:00','XRY0045',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-20 11:21:24','manshi','2025-12-20 11:21:24',0),(0,0,'2526','H','O',7566,1,0,'2025-12-20','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-20 11:26:49','drashti','2025-12-20 11:26:49',0),(0,0,'2526','H','O',7567,1,0,'2025-12-20','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-20 11:28:04','priyanshi','2025-12-20 11:28:04',0),(0,0,'2526','H','O',7568,1,0,'2025-12-20','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-20 11:30:29','drashti','2025-12-20 11:30:29',0),(0,0,'2526','H','O',7569,1,0,'2025-12-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-20 11:30:53','drashti','2025-12-20 11:30:53',0),(0,0,'2526','H','O',7570,1,0,'2025-12-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-20 11:36:50','drashti','2025-12-20 11:36:50',0),(0,0,'2526','H','O',7571,1,0,'2025-12-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-20 11:38:48','janvi','2025-12-20 11:38:48',0),(0,0,'2526','H','O',7572,1,0,'2025-12-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-20 11:45:19','manshi','2025-12-20 11:45:19',0),(0,0,'2526','H','O',7573,1,0,'2025-12-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-20 11:46:24','drashti','2025-12-20 11:46:24',0),(0,0,'2526','H','O',7574,1,0,'2025-12-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-20 11:48:20','priyanshi','2025-12-20 11:48:20',0),(0,0,'2526','H','O',7575,1,0,'2025-12-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-20 11:48:25','priyanshi','2025-12-20 11:48:25',0),(0,0,'2526','H','O',7576,1,0,'2025-12-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-20 11:50:12','drashti','2025-12-20 11:50:12',0),(0,0,'2526','H','O',7577,1,0,'2025-12-20','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-20 11:53:41','priyanshi','2025-12-20 11:53:41',0),(0,0,'2526','H','O',7578,1,0,'2025-12-20','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-20 12:04:08','priyanshi','2025-12-20 12:04:08',0),(0,0,'2526','H','O',7579,1,0,'2025-12-20','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-20 12:14:14','janvi','2025-12-20 12:14:14',0),(0,0,'2526','H','O',7580,1,0,'2025-12-20','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-20 12:15:47','drashti','2025-12-20 12:50:55',0),(0,0,'2526','H','O',7581,1,0,'2025-12-20','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-20 12:16:00','priyanshi','2025-12-20 12:16:00',0),(0,0,'2526','H','O',7582,1,0,'2025-12-20','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-20 12:22:20','manshi','2025-12-20 12:22:20',0),(0,0,'2526','H','O',7583,1,0,'2025-12-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-20 12:28:33','drashti','2025-12-20 12:28:33',0),(0,0,'2526','H','O',7584,1,0,'2025-12-20','00:00:00','OPWD0023',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-20 12:29:11','manshi','2025-12-20 12:29:11',0),(0,0,'2526','H','O',7585,1,0,'2025-12-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','shweta','2025-12-20 12:29:29','shweta','2025-12-20 12:29:29',0),(0,0,'2526','H','O',7586,1,0,'2025-12-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-20 12:31:09','drashti','2025-12-20 13:06:56',0),(0,0,'2526','H','O',7587,1,0,'2025-12-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-20 12:32:06','drashti','2025-12-20 12:32:06',0),(0,0,'2526','H','O',7588,1,0,'2025-12-20','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-20 12:32:53','janvi','2025-12-20 12:32:53',0),(0,0,'2526','H','O',7589,1,0,'2025-12-20','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-20 12:33:46','drashti','2025-12-20 12:33:46',0),(0,0,'2526','H','O',7590,1,0,'2025-12-20','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-20 12:42:19','janvi','2025-12-20 12:42:19',0),(0,0,'2526','H','O',7591,1,0,'2025-12-20','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-20 12:50:55','drashti','2025-12-20 12:50:55',0),(0,0,'2526','H','O',7592,1,0,'2025-12-20','00:00:00','CASE',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-20 12:53:02','drashti','2025-12-20 12:53:02',0),(0,0,'2526','H','O',7593,1,0,'2025-12-20','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-20 13:05:39','manshi','2025-12-20 13:05:39',0),(0,0,'2526','H','O',7594,1,0,'2025-12-20','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-20 13:06:56','drashti','2025-12-20 13:06:56',0),(0,0,'2526','H','O',7595,1,0,'2025-12-20','00:00:00','OPWD0023',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-20 13:08:44','janvi','2025-12-20 13:08:44',0),(0,0,'2526','H','O',7596,1,0,'2025-12-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-12-20 13:12:25','shweta','2025-12-20 13:12:25',0),(0,0,'2526','H','O',7597,1,0,'2025-12-20','00:00:00','OPWD0029',0,2.00,1000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-12-20 14:01:51','shweta','2025-12-20 14:01:51',0),(0,0,'2526','H','O',7598,1,0,'2025-12-20','00:00:00','OPWD0016',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-20 15:37:57','priyanshi','2025-12-20 15:37:57',0),(0,0,'2526','H','O',7599,1,0,'2025-12-20','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-20 17:41:56','janvi','2025-12-20 17:41:56',0),(0,0,'2526','H','O',7600,1,0,'2025-12-20','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-20 17:57:27','janvi','2025-12-20 17:57:27',0),(0,0,'2526','H','O',7601,1,0,'2025-12-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-20 18:08:24','janvi','2025-12-20 18:08:24',0),(0,0,'2526','H','O',7602,1,0,'2025-12-20','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-20 19:10:05','manshi','2025-12-20 19:10:05',0),(0,0,'2526','H','O',7603,1,0,'2025-12-20','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-20 19:13:11','janvi','2025-12-20 19:13:11',0),(0,0,'2526','H','O',7604,1,0,'2025-12-20','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-20 19:25:06','janvi','2025-12-20 19:25:06',0),(0,0,'2526','H','O',7605,1,0,'2025-12-20','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-20 19:31:00','manshi','2025-12-20 19:31:00',0),(0,0,'2526','H','O',7606,1,0,'2025-12-21','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-21 09:14:43','drashti','2025-12-21 09:14:43',0),(0,0,'2526','H','O',7606,2,0,'2025-12-21','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-21 09:14:43','drashti','2025-12-21 09:14:43',0),(0,0,'2526','H','O',7606,3,0,'2025-12-21','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-21 09:14:43','drashti','2025-12-21 09:14:43',0),(0,0,'2526','H','O',7607,1,0,'2025-12-21','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-21 09:18:04','drashti','2025-12-21 09:18:04',0),(0,0,'2526','H','O',7607,2,0,'2025-12-21','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-21 09:18:04','drashti','2025-12-21 09:18:04',0),(0,0,'2526','H','O',7608,1,0,'2025-12-21','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','drashti','2025-12-21 09:20:57','drashti','2025-12-21 09:20:57',0),(0,0,'2526','H','O',7608,2,0,'2025-12-21','00:00:00','WPRC0042',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','drashti','2025-12-21 09:20:57','drashti','2025-12-21 09:20:57',0),(0,0,'2526','H','O',7609,1,0,'2025-12-21','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-21 11:26:11','drashti','2025-12-21 11:26:11',0),(0,0,'2526','H','O',7610,1,0,'2025-12-21','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-21 12:12:00','drashti','2025-12-21 12:12:00',0),(0,0,'2526','H','O',7610,2,0,'2025-12-21','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-21 12:12:00','drashti','2025-12-21 12:12:00',0),(0,0,'2526','H','O',7610,3,0,'2025-12-21','00:00:00','OPWD0019',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-21 12:12:00','drashti','2025-12-21 12:12:00',0),(0,0,'2526','H','O',7610,4,0,'2025-12-21','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-21 12:12:00','drashti','2025-12-21 12:12:00',0),(0,0,'2526','H','O',7611,1,0,'2025-12-22','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-22 08:59:24','reception','2025-12-22 08:59:24',0),(0,0,'2526','H','O',7611,2,0,'2025-12-22','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-22 08:59:24','reception','2025-12-22 08:59:24',0),(0,0,'2526','H','O',7612,1,0,'2025-12-22','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-22 09:10:13','reception','2025-12-22 09:10:13',0),(0,0,'2526','H','O',7612,2,0,'2025-12-22','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 09:10:13','reception','2025-12-22 09:10:13',0),(0,0,'2526','H','O',7612,3,0,'2025-12-22','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-22 09:10:13','reception','2025-12-22 09:10:13',0),(0,0,'2526','H','O',7612,4,0,'2025-12-22','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-22 09:10:13','reception','2025-12-22 09:10:13',0),(0,0,'2526','H','O',7613,1,0,'2025-12-22','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-22 09:12:24','reception','2025-12-22 09:12:24',0),(0,0,'2526','H','O',7613,2,0,'2025-12-22','00:00:00','OPWD0013',0,7.00,100,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-22 09:12:24','reception','2025-12-22 09:12:24',0),(0,0,'2526','H','O',7614,1,0,'2025-12-22','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-22 09:14:18','reception','2025-12-22 09:14:18',0),(0,0,'2526','H','O',7614,2,0,'2025-12-22','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-22 09:14:18','reception','2025-12-22 09:14:18',0),(0,0,'2526','H','O',7614,3,0,'2025-12-22','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 09:14:18','reception','2025-12-22 09:14:18',0),(0,0,'2526','H','O',7614,4,0,'2025-12-22','00:00:00','OPWD0013',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-22 09:14:18','reception','2025-12-22 09:14:18',0),(0,0,'2526','H','O',7615,1,0,'2025-12-22','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-22 09:17:22','reception','2025-12-22 09:17:22',0),(0,0,'2526','H','O',7615,2,0,'2025-12-22','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-22 09:17:22','reception','2025-12-22 09:17:22',0),(0,0,'2526','H','O',7615,3,0,'2025-12-22','00:00:00','LAB0792',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 09:17:22','reception','2025-12-22 09:17:22',0),(0,0,'2526','H','O',7615,4,0,'2025-12-22','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-22 09:17:22','reception','2025-12-22 09:17:22',0),(0,0,'2526','H','O',7616,1,0,'2025-12-22','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-22 09:18:36','reception','2025-12-22 09:18:36',0),(0,0,'2526','H','O',7617,1,0,'2025-12-22','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,7,0,'',0,'','','','Y','N','reception','2025-12-22 09:25:02','reception','2025-12-22 09:25:02',0),(0,0,'2526','H','O',7618,1,0,'2025-12-22','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-12-22 09:28:51','reception','2025-12-22 09:28:51',0),(0,0,'2526','H','O',7618,2,0,'2025-12-22','00:00:00','XRY0045',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 09:28:51','reception','2025-12-22 09:28:51',0),(0,0,'2526','H','O',7618,3,0,'2025-12-22','00:00:00','OPWD0023',0,1.00,5000,5000,'P',0,0,5000.00,0.00,0.00,5000.00,'',0,6,0,'',0,'','','','Y','N','reception','2025-12-22 09:28:51','reception','2025-12-22 09:28:51',0),(0,0,'2526','H','O',7619,1,0,'2025-12-22','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-22 09:30:52','reception','2025-12-22 09:30:52',0),(0,0,'2526','H','O',7619,2,0,'2025-12-22','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-22 09:30:52','reception','2025-12-22 09:30:52',0),(0,0,'2526','H','O',7619,3,0,'2025-12-22','00:00:00','XRY0045',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 09:30:52','reception','2025-12-22 09:30:52',0),(0,0,'2526','H','O',7619,4,0,'2025-12-22','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-22 09:30:52','reception','2025-12-22 09:30:52',0),(0,0,'2526','H','O',7620,1,0,'2025-12-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-22 09:33:23','janvi','2025-12-22 09:33:23',0),(0,0,'2526','H','O',7621,1,0,'2025-12-22','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 09:33:45','reception','2025-12-22 11:22:25',0),(0,0,'2526','H','O',7622,1,0,'2025-12-22','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 09:42:25','reception','2025-12-22 09:42:25',0),(0,0,'2526','H','O',7623,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 09:44:27','reception','2025-12-22 09:44:27',0),(0,0,'2526','H','O',7624,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 09:45:53','reception','2025-12-22 09:45:53',0),(0,0,'2526','H','O',7625,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 10:00:50','reception','2025-12-22 10:00:50',0),(0,0,'2526','H','O',7626,1,0,'2025-12-22','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','urvashi','2025-12-22 10:04:40','urvashi','2025-12-22 10:04:40',0),(0,0,'2526','H','O',7627,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 10:05:38','reception','2025-12-22 10:05:38',0),(0,0,'2526','H','O',7628,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 10:06:46','reception','2025-12-22 10:06:46',0),(0,0,'2526','H','O',7629,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 10:14:55','janvi','2025-12-22 10:14:55',0),(0,0,'2526','H','O',7630,1,0,'2025-12-22','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-22 10:17:17','priyanshi','2025-12-22 10:17:17',0),(0,0,'2526','H','O',7631,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-22 10:21:27','janvi','2025-12-22 10:21:27',0),(0,0,'2526','H','O',7632,1,0,'2025-12-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-22 10:23:46','janvi','2025-12-22 10:23:46',0),(0,0,'2526','H','O',7633,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 10:25:12','reception','2025-12-22 10:25:12',0),(0,0,'2526','H','O',7634,1,0,'2025-12-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-22 10:27:53','priyanshi','2025-12-22 10:27:53',0),(0,0,'2526','H','O',7635,1,0,'2025-12-22','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-22 10:34:06','priyanshi','2025-12-22 10:34:06',0),(0,0,'2526','H','O',7635,2,0,'2025-12-22','00:00:00','OPWD0019',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-12-22 10:34:06','priyanshi','2025-12-22 10:34:06',0),(0,0,'2526','H','O',7635,3,0,'2025-12-22','00:00:00','WPRC0042',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-22 10:34:06','priyanshi','2025-12-22 10:34:06',0),(0,0,'2526','H','O',7635,4,0,'2025-12-22','00:00:00','WPRC0049',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-12-22 10:34:06','priyanshi','2025-12-22 10:34:06',0),(0,0,'2526','H','O',7635,5,0,'2025-12-22','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-12-22 10:34:06','priyanshi','2025-12-22 10:34:06',0),(0,0,'2526','H','O',7636,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-22 10:35:16','janvi','2025-12-22 10:35:16',0),(0,0,'2526','H','O',7637,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 10:40:59','reception','2025-12-22 10:40:59',0),(0,0,'2526','H','O',7638,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','priyanshi','2025-12-22 10:44:05','priyanshi','2025-12-22 10:44:05',0),(0,0,'2526','H','O',7639,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 10:44:40','reception','2025-12-22 10:44:40',0),(0,0,'2526','H','O',7640,1,0,'2025-12-22','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-22 10:46:47','reception','2025-12-22 10:46:47',0),(0,0,'2526','H','O',7641,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 10:47:47','reception','2025-12-22 10:47:47',0),(0,0,'2526','H','O',7642,1,0,'2025-12-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-22 10:49:38','drashti','2025-12-22 10:49:38',0),(0,0,'2526','H','O',7643,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-22 10:50:03','drashti','2025-12-22 10:50:03',0),(0,0,'2526','H','O',7644,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 10:54:33','reception','2025-12-22 10:54:33',0),(0,0,'2526','H','O',7645,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 10:56:11','reception','2025-12-22 10:56:11',0),(0,0,'2526','H','O',7646,1,0,'2025-12-22','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-22 10:56:47','janvi','2025-12-22 10:56:47',0),(0,0,'2526','H','O',7646,2,0,'2025-12-22','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-22 10:56:47','janvi','2025-12-22 10:56:47',0),(0,0,'2526','H','O',7646,3,0,'2025-12-22','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-22 10:56:47','janvi','2025-12-22 10:56:47',0),(0,0,'2526','H','O',7646,4,0,'2025-12-22','00:00:00','LAB0792',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','janvi','2025-12-22 10:56:47','janvi','2025-12-22 10:56:47',0),(0,0,'2526','H','O',7647,1,0,'2025-12-22','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-22 10:57:17','drashti','2025-12-22 10:57:17',0),(0,0,'2526','H','O',7648,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-22 11:00:34','drashti','2025-12-22 11:00:34',0),(0,0,'2526','H','O',7649,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-22 11:01:27','reception','2025-12-22 11:01:27',0),(0,0,'2526','H','O',7650,1,0,'2025-12-22','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-22 11:02:04','janvi','2025-12-22 11:02:04',0),(0,0,'2526','H','O',7651,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 11:03:12','reception','2025-12-22 11:03:12',0),(0,0,'2526','H','O',7652,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-22 11:05:13','drashti','2025-12-22 11:05:13',0),(0,0,'2526','H','O',7653,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-22 11:09:33','drashti','2025-12-22 11:09:33',0),(0,0,'2526','H','O',7654,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 11:10:50','reception','2025-12-22 11:10:50',0),(0,0,'2526','H','O',7655,1,0,'2025-12-22','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 11:14:29','reception','2025-12-22 11:14:29',0),(0,0,'2526','H','O',7656,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-22 11:16:17','drashti','2025-12-22 11:16:17',0),(0,0,'2526','H','O',7657,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-22 11:16:42','janvi','2025-12-22 11:16:42',0),(0,0,'2526','H','O',7658,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 11:18:24','reception','2025-12-22 11:18:24',0),(0,0,'2526','H','O',7659,1,0,'2025-12-22','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 11:21:17','reception','2025-12-22 11:21:17',0),(0,0,'2526','H','O',7659,2,0,'2025-12-22','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 11:21:17','reception','2025-12-22 11:21:17',0),(0,0,'2526','H','O',7659,3,0,'2025-12-22','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 11:21:17','reception','2025-12-22 11:21:17',0),(0,0,'2526','H','O',7660,1,0,'2025-12-22','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 11:22:25','reception','2025-12-22 11:22:25',0),(0,0,'2526','H','O',7661,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-22 11:22:43','manshi','2025-12-22 11:22:43',0),(0,0,'2526','H','O',7661,2,0,'2025-12-22','00:00:00','XRY0254',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-22 11:22:43','manshi','2025-12-22 11:22:43',0),(0,0,'2526','H','O',7662,1,0,'2025-12-22','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-22 11:22:51','janvi','2025-12-22 11:22:51',0),(0,0,'2526','H','O',7663,1,0,'2025-12-22','00:00:00','CASE',0,1.00,700,700,'P',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 11:23:34','reception','2025-12-22 11:23:34',0),(0,0,'2526','H','O',7664,1,0,'2025-12-22','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-22 11:23:45','manshi','2025-12-22 11:23:45',0),(0,0,'2526','H','O',7665,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 11:25:51','reception','2025-12-22 11:25:51',0),(0,0,'2526','H','O',7666,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-22 11:26:46','drashti','2025-12-22 11:26:46',0),(0,0,'2526','H','O',7667,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 11:27:50','reception','2025-12-22 11:27:50',0),(0,0,'2526','H','O',7668,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-22 11:28:22','janvi','2025-12-22 11:28:22',0),(0,0,'2526','H','O',7669,1,0,'2025-12-22','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 11:28:41','reception','2025-12-22 11:28:41',0),(0,0,'2526','H','O',7669,2,0,'2025-12-22','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 11:28:41','reception','2025-12-22 11:28:41',0),(0,0,'2526','H','O',7670,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-22 11:35:11','drashti','2025-12-22 11:35:11',0),(0,0,'2526','H','O',7671,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-22 11:37:43','drashti','2025-12-22 11:37:43',0),(0,0,'2526','H','O',7672,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-22 11:38:18','janvi','2025-12-22 11:38:18',0),(0,0,'2526','H','O',7673,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 11:38:31','reception','2025-12-22 11:38:31',0),(0,0,'2526','H','O',7674,1,0,'2025-12-22','00:00:00','XRY0244',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-22 11:39:07','manshi','2025-12-22 11:39:07',0),(0,0,'2526','H','O',7675,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-22 11:40:22','drashti','2025-12-22 11:40:22',0),(0,0,'2526','H','O',7676,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 11:41:18','reception','2025-12-22 11:41:18',0),(0,0,'2526','H','O',7677,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-22 11:43:43','manshi','2025-12-22 11:43:43',0),(0,0,'2526','H','O',7678,1,0,'2025-12-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-22 11:49:42','drashti','2025-12-22 11:51:56',0),(0,0,'2526','H','O',7679,1,0,'2025-12-22','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 11:49:54','reception','2025-12-22 11:49:54',0),(0,0,'2526','H','O',7679,2,0,'2025-12-22','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 11:49:54','reception','2025-12-22 11:49:54',0),(0,0,'2526','H','O',7679,3,0,'2025-12-22','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 11:49:54','reception','2025-12-22 11:49:54',0),(0,0,'2526','H','O',7680,1,0,'2025-12-22','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-22 11:51:56','drashti','2025-12-22 11:51:56',0),(0,0,'2526','H','O',7681,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 11:56:57','reception','2025-12-22 11:56:57',0),(0,0,'2526','H','O',7682,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-22 11:59:11','reception','2025-12-22 11:59:11',0),(0,0,'2526','H','O',7683,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 12:01:01','reception','2025-12-22 12:01:01',0),(0,0,'2526','H','O',7684,1,0,'2025-12-22','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 12:05:47','reception','2025-12-22 12:05:47',0),(0,0,'2526','H','O',7685,1,0,'2025-12-22','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 12:07:09','reception','2025-12-22 12:07:09',0),(0,0,'2526','H','O',7685,2,0,'2025-12-22','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 12:07:09','reception','2025-12-22 12:07:09',0),(0,0,'2526','H','O',7685,3,0,'2025-12-22','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 12:07:09','reception','2025-12-22 12:07:09',0),(0,0,'2526','H','O',7685,4,0,'2025-12-22','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 12:07:09','reception','2025-12-22 12:07:09',0),(0,0,'2526','H','O',7686,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 12:10:05','reception','2025-12-22 12:10:05',0),(0,0,'2526','H','O',7687,1,0,'2025-12-22','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 12:16:26','janvi','2025-12-22 12:16:26',0),(0,0,'2526','H','O',7688,1,0,'2025-12-22','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-22 12:19:15','drashti','2025-12-22 12:19:15',0),(0,0,'2526','H','O',7689,1,0,'2025-12-22','00:00:00','XRY0254',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-22 12:19:42','manshi','2025-12-22 12:19:42',0),(0,0,'2526','H','O',7690,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 12:19:44','janvi','2025-12-22 12:19:44',0),(0,0,'2526','H','O',7691,1,0,'2025-12-22','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 12:30:00','reception','2025-12-22 12:30:00',0),(0,0,'2526','H','O',7691,2,0,'2025-12-22','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 12:30:00','reception','2025-12-22 12:30:00',0),(0,0,'2526','H','O',7691,3,0,'2025-12-22','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 12:30:00','reception','2025-12-22 12:30:00',0),(0,0,'2526','H','O',7692,1,0,'2025-12-22','00:00:00','OPWD0025',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-22 12:33:32','janvi','2025-12-22 12:33:32',0),(0,0,'2526','H','O',7693,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 12:35:42','reception','2025-12-22 12:35:42',0),(0,0,'2526','H','O',7694,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 12:37:39','reception','2025-12-22 12:37:39',0),(0,0,'2526','H','O',7695,1,0,'2025-12-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','priyanshi','2025-12-22 12:40:36','priyanshi','2025-12-22 12:40:36',0),(0,0,'2526','H','O',7696,1,0,'2025-12-22','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 12:59:56','reception','2025-12-22 12:59:56',0),(0,0,'2526','H','O',7696,2,0,'2025-12-22','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 12:59:56','reception','2025-12-22 12:59:56',0),(0,0,'2526','H','O',7696,3,0,'2025-12-22','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 12:59:56','reception','2025-12-22 12:59:56',0),(0,0,'2526','H','O',7697,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','priyanshi','2025-12-22 13:00:52','priyanshi','2025-12-22 13:00:52',0),(0,0,'2526','H','O',7698,1,0,'2025-12-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-22 13:07:41','reception','2025-12-22 13:07:41',0),(0,0,'2526','H','O',7699,1,0,'2025-12-22','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 13:11:11','shweta','2025-12-22 15:08:58',0),(0,0,'2526','H','O',7700,1,0,'2025-12-22','00:00:00','OPWD0029',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 13:18:49','janvi','2025-12-22 13:18:49',0),(0,0,'2526','H','O',7701,1,0,'2025-12-22','00:00:00','USG0079',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,9999,0,'',0,'','','','Y','N','priyanshi','2025-12-22 13:20:39','priyanshi','2025-12-22 13:20:39',0),(0,0,'2526','H','O',7702,1,0,'2025-12-22','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 13:21:12','reception','2025-12-22 13:21:12',0),(0,0,'2526','H','O',7702,2,0,'2025-12-22','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 13:21:12','reception','2025-12-22 13:21:12',0),(0,0,'2526','H','O',7703,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','priyanshi','2025-12-22 13:26:32','priyanshi','2025-12-22 13:26:32',0),(0,0,'2526','H','O',7704,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 13:35:40','janvi','2025-12-22 13:35:40',0),(0,0,'2526','H','O',7705,1,0,'2025-12-22','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 13:42:42','reception','2025-12-22 13:42:42',0),(0,0,'2526','H','O',7705,2,0,'2025-12-22','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 13:42:42','reception','2025-12-22 13:42:42',0),(0,0,'2526','H','O',7706,1,0,'2025-12-22','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 13:56:50','janvi','2025-12-22 13:56:50',0),(0,0,'2526','H','O',7707,1,0,'2025-12-22','00:00:00','OPWD0013',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','janvi','2025-12-22 13:57:52','janvi','2025-12-22 13:57:52',0),(0,0,'2526','H','O',7708,1,0,'2025-12-22','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 14:07:05','reception','2025-12-22 14:07:05',0),(0,0,'2526','H','O',7708,2,0,'2025-12-22','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 14:07:05','reception','2025-12-22 14:07:05',0),(0,0,'2526','H','O',7709,1,0,'2025-12-22','00:00:00','WPRC0037',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,4,0,'',0,'','','','Y','N','shweta','2025-12-22 14:13:39','shweta','2025-12-22 14:13:39',0),(0,0,'2526','H','O',7710,1,0,'2025-12-22','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','shweta','2025-12-22 14:18:35','shweta','2025-12-22 14:18:35',0),(0,0,'2526','H','O',7711,1,0,'2025-12-22','00:00:00','OPWD0030',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-22 14:34:41','drashti','2025-12-22 14:34:41',0),(0,0,'2526','H','O',7712,1,0,'2025-12-22','00:00:00','XRY0354',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','shweta','2025-12-22 14:37:41','shweta','2025-12-22 14:37:41',0),(0,0,'2526','H','O',7713,1,0,'2025-12-22','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 14:46:29','reception','2025-12-22 14:46:29',0),(0,0,'2526','H','O',7713,2,0,'2025-12-22','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 14:46:29','reception','2025-12-22 14:46:29',0),(0,0,'2526','H','O',7713,3,0,'2025-12-22','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 14:46:29','reception','2025-12-22 14:46:29',0),(0,0,'2526','H','O',7714,1,0,'2025-12-22','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,2,0,'',0,'','','','Y','N','shweta','2025-12-22 15:08:58','shweta','2025-12-22 15:08:58',0),(0,0,'2526','H','O',7715,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 16:21:11','reception','2025-12-22 16:21:11',0),(0,0,'2526','H','O',7716,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 16:25:56','reception','2025-12-22 16:25:56',0),(0,0,'2526','H','O',7717,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 16:47:32','reception','2025-12-22 16:47:32',0),(0,0,'2526','H','O',7718,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 16:48:34','reception','2025-12-22 16:48:34',0),(0,0,'2526','H','O',7719,1,0,'2025-12-22','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 16:50:04','reception','2025-12-22 16:50:04',0),(0,0,'2526','H','O',7719,2,0,'2025-12-22','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 16:50:04','reception','2025-12-22 16:50:04',0),(0,0,'2526','H','O',7720,1,0,'2025-12-22','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 16:51:32','reception','2025-12-22 16:51:32',0),(0,0,'2526','H','O',7720,2,0,'2025-12-22','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 16:51:32','reception','2025-12-22 16:51:32',0),(0,0,'2526','H','O',7721,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 16:54:41','reception','2025-12-22 16:54:41',0),(0,0,'2526','H','O',7722,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-22 16:54:58','drashti','2025-12-22 16:54:58',0),(0,0,'2526','H','O',7723,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 16:57:03','reception','2025-12-22 18:15:57',0),(0,0,'2526','H','O',7724,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 17:05:22','reception','2025-12-22 17:05:22',0),(0,0,'2526','H','O',7725,1,0,'2025-12-22','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-22 17:08:45','reception','2025-12-22 17:08:45',0),(0,0,'2526','H','O',7726,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 17:10:16','reception','2025-12-22 17:10:16',0),(0,0,'2526','H','O',7727,1,0,'2025-12-22','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-22 17:14:55','drashti','2025-12-22 17:14:55',0),(0,0,'2526','H','O',7728,1,0,'2025-12-22','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-22 17:17:47','reception','2025-12-22 17:17:47',0),(0,0,'2526','H','O',7729,1,0,'2025-12-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-22 17:18:21','drashti','2025-12-22 17:18:21',0),(0,0,'2526','H','O',7730,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 17:20:35','reception','2025-12-22 17:20:35',0),(0,0,'2526','H','O',7731,1,0,'2025-12-22','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 17:35:08','reception','2025-12-22 17:35:08',0),(0,0,'2526','H','O',7732,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-22 17:37:59','janvi','2025-12-22 17:37:59',0),(0,0,'2526','H','O',7733,1,0,'2025-12-22','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 17:38:01','reception','2025-12-22 17:38:01',0),(0,0,'2526','H','O',7733,2,0,'2025-12-22','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 17:38:01','reception','2025-12-22 17:38:01',0),(0,0,'2526','H','O',7734,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 17:41:05','reception','2025-12-22 17:41:05',0),(0,0,'2526','H','O',7735,1,0,'2025-12-22','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-22 17:45:58','manshi','2025-12-22 17:45:58',0),(0,0,'2526','H','O',7736,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-22 17:48:30','reception','2025-12-22 17:48:30',0),(0,0,'2526','H','O',7737,1,0,'2025-12-22','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 17:50:02','janvi','2025-12-22 17:50:02',0),(0,0,'2526','H','O',7738,1,0,'2025-12-22','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-22 17:51:33','drashti','2025-12-22 17:51:33',0),(0,0,'2526','H','O',7739,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 17:51:35','reception','2025-12-22 17:51:35',0),(0,0,'2526','H','O',7740,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 17:52:08','janvi','2025-12-22 18:23:22',0),(0,0,'2526','H','O',7741,1,0,'2025-12-22','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 17:53:20','reception','2025-12-22 17:53:20',0),(0,0,'2526','H','O',7741,2,0,'2025-12-22','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 17:53:20','reception','2025-12-22 17:53:20',0),(0,0,'2526','H','O',7742,1,0,'2025-12-22','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 17:58:30','janvi','2025-12-22 17:58:30',0),(0,0,'2526','H','O',7743,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 18:05:17','reception','2025-12-22 18:05:17',0),(0,0,'2526','H','O',7744,1,0,'2025-12-22','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-22 18:08:40','manshi','2025-12-22 18:08:40',0),(0,0,'2526','H','O',7745,1,0,'2025-12-22','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-22 18:11:52','manshi','2025-12-22 18:11:52',0),(0,0,'2526','H','O',7746,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-22 18:12:38','reception','2025-12-22 18:12:38',0),(0,0,'2526','H','O',7747,1,0,'2025-12-22','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-22 18:13:50','drashti','2025-12-22 18:13:50',0),(0,0,'2526','H','O',7748,1,0,'2025-12-22','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 18:15:53','janvi','2025-12-22 18:15:53',0),(0,0,'2526','H','O',7749,1,0,'2025-12-22','00:00:00','CASE',0,-1.00,400,-400,'A',0,0,-400.00,0.00,0.00,-400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 18:15:57','reception','2025-12-22 18:15:57',0),(0,0,'2526','H','O',7750,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 18:17:06','reception','2025-12-22 18:17:06',0),(0,0,'2526','H','O',7751,1,0,'2025-12-22','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-22 18:19:04','drashti','2025-12-22 18:19:04',0),(0,0,'2526','H','O',7752,1,0,'2025-12-22','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-22 18:22:27','manshi','2025-12-22 18:22:27',0),(0,0,'2526','H','O',7753,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-22 18:22:44','drashti','2025-12-22 18:22:44',0),(0,0,'2526','H','O',7754,1,0,'2025-12-22','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 18:23:22','janvi','2025-12-22 18:23:22',0),(0,0,'2526','H','O',7755,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 18:23:59','reception','2025-12-22 18:23:59',0),(0,0,'2526','H','O',7756,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-22 18:24:59','drashti','2025-12-22 18:24:59',0),(0,0,'2526','H','O',7757,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 18:27:01','reception','2025-12-22 18:27:01',0),(0,0,'2526','H','O',7758,1,0,'2025-12-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-22 18:33:09','drashti','2025-12-22 18:33:09',0),(0,0,'2526','H','O',7759,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 18:33:21','janvi','2025-12-22 18:33:21',0),(0,0,'2526','H','O',7760,1,0,'2025-12-22','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-22 18:35:37','drashti','2025-12-22 18:35:37',0),(0,0,'2526','H','O',7761,1,0,'2025-12-22','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 18:35:38','reception','2025-12-22 18:35:38',0),(0,0,'2526','H','O',7761,2,0,'2025-12-22','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 18:35:38','reception','2025-12-22 18:35:38',0),(0,0,'2526','H','O',7762,1,0,'2025-12-22','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 18:37:03','reception','2025-12-22 18:37:03',0),(0,0,'2526','H','O',7763,1,0,'2025-12-22','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 18:38:36','janvi','2025-12-22 18:38:36',0),(0,0,'2526','H','O',7764,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-22 18:39:22','manshi','2025-12-22 18:39:22',0),(0,0,'2526','H','O',7765,1,0,'2025-12-22','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 18:41:12','reception','2025-12-22 18:41:12',0),(0,0,'2526','H','O',7766,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-22 18:42:44','drashti','2025-12-22 18:42:44',0),(0,0,'2526','H','O',7767,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 18:44:49','reception','2025-12-22 18:44:49',0),(0,0,'2526','H','O',7768,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 18:45:08','janvi','2025-12-22 20:04:28',0),(0,0,'2526','H','O',7769,1,0,'2025-12-22','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-22 18:45:18','manshi','2025-12-22 18:45:18',0),(0,0,'2526','H','O',7770,1,0,'2025-12-22','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 18:46:28','janvi','2025-12-22 18:46:28',0),(0,0,'2526','H','O',7771,1,0,'2025-12-22','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-22 18:48:52','manshi','2025-12-22 18:48:52',0),(0,0,'2526','H','O',7772,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-22 18:49:36','drashti','2025-12-22 18:49:36',0),(0,0,'2526','H','O',7773,1,0,'2025-12-22','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-22 18:49:49','reception','2025-12-22 18:49:49',0),(0,0,'2526','H','O',7774,1,0,'2025-12-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-22 18:53:15','drashti','2025-12-22 18:55:26',0),(0,0,'2526','H','O',7775,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-22 18:54:35','janvi','2025-12-22 18:54:35',0),(0,0,'2526','H','O',7776,1,0,'2025-12-22','00:00:00','CASE',0,-1.00,750,-750,'A',0,0,-750.00,0.00,0.00,-750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-22 18:55:26','drashti','2025-12-22 18:55:26',0),(0,0,'2526','H','O',7777,1,0,'2025-12-22','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-22 18:57:31','reception','2025-12-22 19:10:15',0),(0,0,'2526','H','O',7778,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 18:58:02','reception','2025-12-22 18:58:02',0),(0,0,'2526','H','O',7779,1,0,'2025-12-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-22 19:01:35','drashti','2025-12-22 19:01:35',0),(0,0,'2526','H','O',7780,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 19:05:46','reception','2025-12-22 19:05:46',0),(0,0,'2526','H','O',7781,1,0,'2025-12-22','00:00:00','CASE',0,-1.00,700,-700,'A',0,0,-700.00,0.00,0.00,-700.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-22 19:10:15','reception','2025-12-22 19:10:15',0),(0,0,'2526','H','O',7782,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-22 19:10:25','drashti','2025-12-22 19:10:25',0),(0,0,'2526','H','O',7783,1,0,'2025-12-22','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 19:12:48','reception','2025-12-22 19:12:48',0),(0,0,'2526','H','O',7784,1,0,'2025-12-22','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-22 19:13:59','drashti','2025-12-22 19:13:59',0),(0,0,'2526','H','O',7785,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-22 19:17:06','drashti','2025-12-22 19:17:06',0),(0,0,'2526','H','O',7786,1,0,'2025-12-22','00:00:00','OPWD0013',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-22 19:18:18','reception','2025-12-22 19:18:18',0),(0,0,'2526','H','O',7787,1,0,'2025-12-22','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 19:19:05','janvi','2025-12-22 19:19:05',0),(0,0,'2526','H','O',7788,1,0,'2025-12-22','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-22 19:19:53','manshi','2025-12-22 19:19:53',0),(0,0,'2526','H','O',7788,2,0,'2025-12-22','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-22 19:19:53','manshi','2025-12-22 19:19:53',0),(0,0,'2526','H','O',7789,1,0,'2025-12-22','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-22 19:24:29','janvi','2025-12-22 19:24:29',0),(0,0,'2526','H','O',7790,1,0,'2025-12-22','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 19:26:33','reception','2025-12-22 19:26:33',0),(0,0,'2526','H','O',7790,2,0,'2025-12-22','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-22 19:26:33','reception','2025-12-22 19:26:33',0),(0,0,'2526','H','O',7791,1,0,'2025-12-22','00:00:00','OPWD0023',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 19:37:46','janvi','2025-12-22 19:37:46',0),(0,0,'2526','H','O',7792,1,0,'2025-12-22','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-22 19:51:43','manshi','2025-12-22 19:51:43',0),(0,0,'2526','H','O',7792,2,0,'2025-12-22','00:00:00','OPWD0023',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-22 19:51:43','manshi','2025-12-22 19:51:43',0),(0,0,'2526','H','O',7793,1,0,'2025-12-22','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 19:56:38','reception','2025-12-22 20:26:11',0),(0,0,'2526','H','O',7794,1,0,'2025-12-22','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 19:57:48','janvi','2025-12-22 19:57:48',0),(0,0,'2526','H','O',7795,1,0,'2025-12-22','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-22 20:02:54','drashti','2025-12-22 20:02:54',0),(0,0,'2526','H','O',7796,1,0,'2025-12-22','00:00:00','CASE',0,-1.00,500,-500,'A',0,0,-500.00,0.00,0.00,-500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-22 20:04:28','janvi','2025-12-22 20:04:28',0),(0,0,'2526','H','O',7797,1,0,'2025-12-22','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-22 20:17:24','drashti','2025-12-22 20:17:24',0),(0,0,'2526','H','O',7798,1,0,'2025-12-22','00:00:00','CASE',0,-1.00,300,-300,'A',0,0,-300.00,0.00,0.00,-300.00,'',0,3,0,'',0,'','','','Y','N','reception','2025-12-22 20:26:11','reception','2025-12-22 20:26:11',0),(0,0,'2526','H','O',7799,1,0,'2025-12-22','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,7,0,'',0,'','','','Y','N','reception','2025-12-22 20:40:24','reception','2025-12-22 20:40:24',0),(0,0,'2526','H','O',7800,1,0,'2025-12-22','00:00:00','SURG0005',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,7,0,'',0,'','','','Y','N','priyanshi','2025-12-22 21:02:05','priyanshi','2025-12-22 21:02:05',0),(0,0,'2526','H','O',7800,2,0,'2025-12-22','00:00:00','WPRC0042',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,7,0,'',0,'','','','Y','N','priyanshi','2025-12-22 21:02:05','priyanshi','2025-12-22 21:02:05',0),(0,0,'2526','H','O',7801,1,0,'2025-12-23','00:00:00','OPWD0023',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,7,0,'',0,'','','','Y','N','reception','2025-12-23 08:42:30','reception','2025-12-23 08:42:30',0),(0,0,'2526','H','O',7802,1,0,'2025-12-23','00:00:00','SURG0005',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-23 08:46:22','reception','2025-12-23 08:46:22',0),(0,0,'2526','H','O',7802,2,0,'2025-12-23','00:00:00','OPWD0016',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-23 08:46:22','reception','2025-12-23 08:46:22',0),(0,0,'2526','H','O',7802,3,0,'2025-12-23','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-23 08:46:22','reception','2025-12-23 08:46:22',0),(0,0,'2526','H','O',7802,4,0,'2025-12-23','00:00:00','OPWD0013',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-23 08:46:22','reception','2025-12-23 08:46:22',0),(0,0,'2526','H','O',7803,1,0,'2025-12-23','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-23 09:49:45','drashti','2025-12-23 09:49:45',0),(0,0,'2526','H','O',7804,1,0,'2025-12-23','00:00:00','CASE',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-23 09:55:34','janvi','2025-12-23 09:55:34',0),(0,0,'2526','H','O',7805,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-23 10:08:21','drashti','2025-12-23 10:08:21',0),(0,0,'2526','H','O',7806,1,0,'2025-12-23','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 10:09:02','reception','2025-12-23 10:09:02',0),(0,0,'2526','H','O',7807,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 10:12:39','reception','2025-12-23 10:12:39',0),(0,0,'2526','H','O',7808,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 10:18:03','reception','2025-12-23 10:18:03',0),(0,0,'2526','H','O',7809,1,0,'2025-12-23','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-23 10:18:15','manshi','2025-12-23 10:18:15',0),(0,0,'2526','H','O',7810,1,0,'2025-12-23','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-23 10:18:34','manshi','2025-12-23 10:18:34',0),(0,0,'2526','H','O',7811,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 10:22:09','reception','2025-12-23 10:22:09',0),(0,0,'2526','H','O',7812,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-23 10:23:03','drashti','2025-12-23 10:23:03',0),(0,0,'2526','H','O',7813,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 10:26:00','reception','2025-12-23 10:26:00',0),(0,0,'2526','H','O',7814,1,0,'2025-12-23','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 10:27:55','reception','2025-12-23 10:27:55',0),(0,0,'2526','H','O',7815,1,0,'2025-12-23','00:00:00','XRY0254',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-23 10:41:18','manshi','2025-12-23 10:41:18',0),(0,0,'2526','H','O',7816,1,0,'2025-12-23','00:00:00','XRY0254',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-23 10:49:54','manshi','2025-12-23 10:49:54',0),(0,0,'2526','H','O',7817,1,0,'2025-12-23','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 10:51:10','reception','2025-12-23 10:51:10',0),(0,0,'2526','H','O',7818,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 10:58:55','reception','2025-12-23 10:58:55',0),(0,0,'2526','H','O',7819,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-23 11:00:27','janvi','2025-12-23 11:00:27',0),(0,0,'2526','H','O',7820,1,0,'2025-12-23','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 11:00:32','reception','2025-12-23 11:00:32',0),(0,0,'2526','H','O',7820,2,0,'2025-12-23','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 11:00:32','reception','2025-12-23 11:00:32',0),(0,0,'2526','H','O',7820,3,0,'2025-12-23','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 11:00:32','reception','2025-12-23 11:00:32',0),(0,0,'2526','H','O',7821,1,0,'2025-12-23','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 11:05:00','reception','2025-12-23 11:05:00',0),(0,0,'2526','H','O',7822,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-23 11:06:53','janvi','2025-12-23 11:06:53',0),(0,0,'2526','H','O',7823,1,0,'2025-12-23','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-23 11:08:16','drashti','2025-12-23 11:08:16',0),(0,0,'2526','H','O',7824,1,0,'2025-12-23','00:00:00','XRY0256',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-23 11:09:16','manshi','2025-12-23 11:09:16',0),(0,0,'2526','H','O',7825,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-23 11:09:17','janvi','2025-12-23 11:09:17',0),(0,0,'2526','H','O',7826,1,0,'2025-12-23','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 11:10:16','reception','2025-12-23 11:10:16',0),(0,0,'2526','H','O',7827,1,0,'2025-12-23','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 11:11:57','reception','2025-12-23 11:11:57',0),(0,0,'2526','H','O',7828,1,0,'2025-12-23','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-23 11:16:45','drashti','2025-12-23 11:16:45',0),(0,0,'2526','H','O',7829,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-23 11:18:42','janvi','2025-12-23 11:18:42',0),(0,0,'2526','H','O',7830,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','drashti','2025-12-23 11:19:45','drashti','2025-12-23 11:19:45',0),(0,0,'2526','H','O',7831,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-23 11:20:26','reception','2025-12-23 11:20:26',0),(0,0,'2526','H','O',7832,1,0,'2025-12-23','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 11:23:05','reception','2025-12-23 11:23:05',0),(0,0,'2526','H','O',7833,1,0,'2025-12-23','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-23 11:25:06','drashti','2025-12-23 11:25:06',0),(0,0,'2526','H','O',7834,1,0,'2025-12-23','00:00:00','OPWD0019',0,1.00,50,50,'P',0,0,50.00,0.00,0.00,50.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-23 11:28:50','drashti','2025-12-23 11:28:50',0),(0,0,'2526','H','O',7835,1,0,'2025-12-23','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 11:29:05','reception','2025-12-23 11:29:05',0),(0,0,'2526','H','O',7836,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-23 11:35:25','drashti','2025-12-23 11:35:25',0),(0,0,'2526','H','O',7837,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 11:36:43','reception','2025-12-23 11:36:43',0),(0,0,'2526','H','O',7838,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 11:38:31','reception','2025-12-23 11:38:31',0),(0,0,'2526','H','O',7839,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-23 11:39:13','drashti','2025-12-23 11:39:13',0),(0,0,'2526','H','O',7840,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-23 11:41:05','manshi','2025-12-23 11:41:05',0),(0,0,'2526','H','O',7841,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-23 11:41:37','janvi','2025-12-23 11:41:37',0),(0,0,'2526','H','O',7842,1,0,'2025-12-23','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 11:42:14','reception','2025-12-23 11:42:14',0),(0,0,'2526','H','O',7842,2,0,'2025-12-23','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 11:42:14','reception','2025-12-23 11:42:14',0),(0,0,'2526','H','O',7842,3,0,'2025-12-23','00:00:00','NEU10024',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 11:42:14','reception','2025-12-23 11:42:14',0),(0,0,'2526','H','O',7843,1,0,'2025-12-23','00:00:00','CASE',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-23 11:46:48','drashti','2025-12-23 11:46:48',0),(0,0,'2526','H','O',7844,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-23 11:47:45','janvi','2025-12-23 11:47:45',0),(0,0,'2526','H','O',7845,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','reception','2025-12-23 11:48:12','reception','2025-12-23 11:48:12',0),(0,0,'2526','H','O',7846,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-23 11:49:24','janvi','2025-12-23 11:49:24',0),(0,0,'2526','H','O',7847,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','drashti','2025-12-23 11:52:11','drashti','2025-12-23 11:52:11',0),(0,0,'2526','H','O',7848,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 11:52:23','reception','2025-12-23 11:52:23',0),(0,0,'2526','H','O',7849,1,0,'2025-12-23','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 11:55:36','reception','2025-12-23 11:55:36',0),(0,0,'2526','H','O',7850,1,0,'2025-12-23','00:00:00','CASE',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-23 11:57:59','manshi','2025-12-23 11:57:59',0),(0,0,'2526','H','O',7851,1,0,'2025-12-23','00:00:00','CRIP0001',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,9999,0,'',0,'','','','Y','N','manshi','2025-12-23 12:00:00','manshi','2025-12-23 12:00:00',0),(0,0,'2526','H','O',7852,1,0,'2025-12-23','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 12:00:49','reception','2025-12-23 12:00:49',0),(0,0,'2526','H','O',7852,2,0,'2025-12-23','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 12:00:49','reception','2025-12-23 12:00:49',0),(0,0,'2526','H','O',7852,3,0,'2025-12-23','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 12:00:49','reception','2025-12-23 12:00:49',0),(0,0,'2526','H','O',7853,1,0,'2025-12-23','00:00:00','NEU10017',0,1.00,3000,3000,'P',0,0,3000.00,0.00,0.00,3000.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 12:01:36','reception','2025-12-23 12:01:36',0),(0,0,'2526','H','O',7854,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-23 12:10:07','drashti','2025-12-23 12:10:07',0),(0,0,'2526','H','O',7855,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-23 12:11:37','reception','2025-12-23 12:11:37',0),(0,0,'2526','H','O',7856,1,0,'2025-12-23','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','janvi','2025-12-23 12:12:43','janvi','2025-12-23 12:12:43',0),(0,0,'2526','H','O',7857,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-23 12:14:57','janvi','2025-12-23 12:14:57',0),(0,0,'2526','H','O',7858,1,0,'2025-12-23','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 12:20:07','reception','2025-12-23 12:20:07',0),(0,0,'2526','H','O',7858,2,0,'2025-12-23','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 12:20:07','reception','2025-12-23 12:20:07',0),(0,0,'2526','H','O',7859,1,0,'2025-12-23','00:00:00','OPWD0034',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-23 12:22:12','janvi','2025-12-23 12:22:12',0),(0,0,'2526','H','O',7859,2,0,'2025-12-23','00:00:00','OPWD0024',0,1.00,1200,1200,'P',0,0,1200.00,0.00,0.00,1200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-23 12:22:12','janvi','2025-12-23 12:22:12',0),(0,0,'2526','H','O',7860,1,0,'2025-12-23','00:00:00','XRY0056',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,9999,0,'',0,'','','','Y','N','drashti','2025-12-23 12:25:30','drashti','2025-12-23 12:25:30',0),(0,0,'2526','H','O',7861,1,0,'2025-12-23','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 12:31:39','reception','2025-12-23 12:31:39',0),(0,0,'2526','H','O',7862,1,0,'2025-12-23','00:00:00','OTCG0003',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','drashti','2025-12-23 12:35:09','drashti','2025-12-23 12:35:09',0),(0,0,'2526','H','O',7863,1,0,'2025-12-23','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 12:37:03','reception','2025-12-23 12:37:03',0),(0,0,'2526','H','O',7864,1,0,'2025-12-23','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 12:39:33','reception','2025-12-23 12:39:33',0),(0,0,'2526','H','O',7864,2,0,'2025-12-23','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 12:39:33','reception','2025-12-23 12:39:33',0),(0,0,'2526','H','O',7864,3,0,'2025-12-23','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 12:39:33','reception','2025-12-23 12:39:33',0),(0,0,'2526','H','O',7865,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-23 12:43:34','drashti','2025-12-23 12:43:34',0),(0,0,'2526','H','O',7866,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','reception','2025-12-23 12:56:07','reception','2025-12-23 12:56:07',0),(0,0,'2526','H','O',7867,1,0,'2025-12-23','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-23 13:03:37','manshi','2025-12-23 13:03:37',0),(0,0,'2526','H','O',7868,1,0,'2025-12-23','00:00:00','WPRC0021',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300.00,'',0,4,0,'',0,'','','','Y','N','janvi','2025-12-23 13:05:12','janvi','2025-12-23 13:05:12',0),(0,0,'2526','H','O',7869,1,0,'2025-12-23','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 13:05:46','reception','2025-12-23 13:05:46',0),(0,0,'2526','H','O',7869,2,0,'2025-12-23','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 13:05:46','reception','2025-12-23 13:05:46',0),(0,0,'2526','H','O',7869,3,0,'2025-12-23','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 13:05:46','reception','2025-12-23 13:05:46',0),(0,0,'2526','H','O',7870,1,0,'2025-12-23','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 13:08:56','reception','2025-12-23 13:08:56',0),(0,0,'2526','H','O',7870,2,0,'2025-12-23','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 13:08:56','reception','2025-12-23 13:08:56',0),(0,0,'2526','H','O',7870,3,0,'2025-12-23','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 13:08:56','reception','2025-12-23 13:08:56',0),(0,0,'2526','H','O',7871,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 13:12:32','reception','2025-12-23 13:12:32',0),(0,0,'2526','H','O',7872,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 13:17:43','reception','2025-12-23 13:17:43',0),(0,0,'2526','H','O',7873,1,0,'2025-12-23','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 13:23:34','reception','2025-12-23 13:23:34',0),(0,0,'2526','H','O',7873,2,0,'2025-12-23','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 13:23:34','reception','2025-12-23 13:23:34',0),(0,0,'2526','H','O',7874,1,0,'2025-12-23','00:00:00','NEU10015',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 13:39:50','reception','2025-12-23 13:39:50',0),(0,0,'2526','H','O',7875,1,0,'2025-12-23','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 13:47:40','reception','2025-12-23 13:47:40',0),(0,0,'2526','H','O',7876,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 13:52:24','reception','2025-12-23 13:52:24',0),(0,0,'2526','H','O',7877,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 16:16:16','reception','2025-12-23 16:16:16',0),(0,0,'2526','H','O',7877,2,0,'2025-12-23','00:00:00','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 16:16:16','reception','2025-12-23 16:16:16',0),(0,0,'2526','H','O',7878,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 16:28:59','reception','2025-12-23 16:28:59',0),(0,0,'2526','H','O',7879,1,0,'2025-12-23','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 16:38:31','reception','2025-12-23 16:38:31',0),(0,0,'2526','H','O',7880,1,0,'2025-12-23','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 16:42:38','reception','2025-12-23 16:42:38',0),(0,0,'2526','H','O',7881,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 16:44:18','reception','2025-12-23 16:44:18',0),(0,0,'2526','H','O',7882,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 16:46:35','reception','2025-12-23 16:46:35',0),(0,0,'2526','H','O',7883,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 16:55:04','reception','2025-12-23 16:55:04',0),(0,0,'2526','H','O',7884,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 17:00:59','reception','2025-12-23 17:00:59',0),(0,0,'2526','H','O',7885,1,0,'2025-12-23','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 17:16:12','reception','2025-12-23 17:16:12',0),(0,0,'2526','H','O',7886,1,0,'2025-12-23','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-23 17:21:41','manshi','2025-12-23 17:21:41',0),(0,0,'2526','H','O',7886,2,0,'2025-12-23','00:00:00','OPWD0023',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500.00,'',0,7,0,'',0,'','','','Y','N','manshi','2025-12-23 17:21:41','manshi','2025-12-23 17:21:41',0),(0,0,'2526','H','O',7887,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-23 17:22:59','drashti','2025-12-23 17:22:59',0),(0,0,'2526','H','O',7888,1,0,'2025-12-23','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 17:26:42','reception','2025-12-23 17:26:42',0),(0,0,'2526','H','O',7888,2,0,'2025-12-23','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 17:26:42','reception','2025-12-23 17:26:42',0),(0,0,'2526','H','O',7889,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 17:31:19','reception','2025-12-23 17:31:19',0),(0,0,'2526','H','O',7890,1,0,'2025-12-23','00:00:00','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-23 17:31:50','janvi','2025-12-23 17:31:50',0),(0,0,'2526','H','O',7891,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 17:33:21','reception','2025-12-23 17:33:21',0),(0,0,'2526','H','O',7892,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 17:35:41','reception','2025-12-23 17:35:41',0),(0,0,'2526','H','O',7893,1,0,'2025-12-23','00:00:00','CASE',0,1.00,900,900,'A',0,0,900.00,0.00,0.00,900.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 17:36:48','reception','2025-12-23 17:36:48',0),(0,0,'2526','H','O',7894,1,0,'2025-12-23','00:00:00','CASE',0,1.00,500,500,'A',0,0,500.00,0.00,0.00,500.00,'',0,6,0,'',0,'','','','Y','N','manshi','2025-12-23 17:42:52','manshi','2025-12-23 17:42:52',0),(0,0,'2526','H','O',7895,1,0,'2025-12-23','00:00:00','NEU10019',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 17:43:30','reception','2025-12-23 17:43:30',0),(0,0,'2526','H','O',7895,2,0,'2025-12-23','00:00:00','NEU10017',0,1.00,2200,2200,'P',0,0,2200.00,0.00,0.00,2200.00,'',0,9999,0,'',0,'','','','Y','N','reception','2025-12-23 17:43:30','reception','2025-12-23 17:43:30',0),(0,0,'2526','H','O',7896,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,5,0,'',0,'','','','Y','N','janvi','2025-12-23 17:44:32','janvi','2025-12-23 17:44:32',0),(0,0,'2526','H','O',7897,1,0,'2025-12-23','00:00:00','CASE',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 17:46:01','reception','2025-12-23 17:46:01',0),(0,0,'2526','H','O',7898,1,0,'2025-12-23','00:00:00','CASE',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400.00,'',0,4,0,'',0,'','','','Y','N','drashti','2025-12-23 17:46:39','drashti','2025-12-23 17:46:39',0),(0,0,'2526','H','O',7899,1,0,'2025-12-23','00:00:00','OPWD0008',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200.00,'',0,3,0,'',0,'','','','Y','N','janvi','2025-12-23 17:47:00','janvi','2025-12-23 17:47:00',0),(0,0,'2526','H','O',7900,1,0,'2025-12-23','00:00:00','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700.00,'',0,2,0,'',0,'','','','Y','N','reception','2025-12-23 17:47:11','reception','2025-12-23 17:47:11',0);
/*!40000 ALTER TABLE `receipt_transaction` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `receipt_transaction_amendment`
--

DROP TABLE IF EXISTS `receipt_transaction_amendment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `receipt_transaction_amendment` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `fyear` varchar(4) NOT NULL,
  `receipt_cat` varchar(1) NOT NULL,
  `ipd_opd` varchar(2) NOT NULL,
  `receipt_no` int(11) NOT NULL,
  `receipt_sr` int(11) NOT NULL,
  `bill_amendment_no` tinyint(4) NOT NULL,
  `service_date` date NOT NULL,
  `service_cd` varchar(8) NOT NULL,
  `product_code` int(11) NOT NULL,
  `service_qty` float(9,2) NOT NULL,
  `service_rate` float NOT NULL,
  `service_gross_amt` float NOT NULL,
  `service_discount_type` enum('A','P') NOT NULL DEFAULT 'A',
  `service_discount_percent` float NOT NULL,
  `service_disc` float NOT NULL,
  `service_amt_before_gst` float(9,2) NOT NULL,
  `gst_percentage` float(9,2) NOT NULL,
  `gst_amount` float(9,2) NOT NULL,
  `service_amt` float NOT NULL,
  `service_note` varchar(10) NOT NULL,
  `ref_id` int(11) NOT NULL,
  `provider_code` int(11) NOT NULL,
  `provider_code_for_hospital` int(11) NOT NULL COMMENT 'provider code for business entity',
  `ph_TrnType` varchar(6) NOT NULL,
  `ph_TrnID` int(11) NOT NULL,
  `room_cat` varchar(11) NOT NULL,
  `reverse_bill_no` varchar(15) NOT NULL,
  `isAudited` enum('Y','N') NOT NULL DEFAULT 'N',
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  `IsAdjusted` tinyint(1) DEFAULT '0' COMMENT 'Indicates whether revenue adjusted or not?',
  PRIMARY KEY (`company_id`,`branch_id`,`fyear`,`receipt_cat`,`ipd_opd`,`receipt_no`,`receipt_sr`,`bill_amendment_no`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `receipt_transaction_amendment`
--

LOCK TABLES `receipt_transaction_amendment` WRITE;
/*!40000 ALTER TABLE `receipt_transaction_amendment` DISABLE KEYS */;
INSERT INTO `receipt_transaction_amendment` VALUES (0,0,'2526','H','I',77,1,0,'2025-10-25','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100,'',0,9999,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,2,0,'2025-10-25','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300,'',0,9999,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,3,0,'2025-10-25','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500,'',0,9999,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,4,0,'2025-10-25','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,5,0,'2025-10-25','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,6,0,'2025-10-25','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500,'209',0,9999,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,7,0,'2025-10-25','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'209',0,9999,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,8,0,'2025-10-25','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600,'209',0,9999,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,9,0,'2025-10-25','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600,'209',0,5,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,10,0,'2025-10-26','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300,'',0,9999,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,11,0,'2025-10-26','WPRC0087',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500,'',0,9999,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,12,0,'2025-10-26','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300,'',0,9999,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,13,0,'2025-10-26','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600,'408',0,5,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,14,0,'2025-10-26','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600,'408',0,5,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,15,0,'2025-10-26','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'408',0,9999,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,16,0,'2025-10-26','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400,'408',0,9999,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,17,0,'2025-10-26','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200,'408',0,9999,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,18,0,'2025-10-27','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200,'',0,9999,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',77,19,0,'2025-10-27','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100,'209',0,5,0,'',0,'','','','riya','2025-10-27 13:59:00','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,1,0,'2025-10-19','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,2,0,'2025-10-19','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,3,0,'2025-10-19','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500,'208',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,4,0,'2025-10-19','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'208',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,5,0,'2025-10-19','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600,'208',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,6,0,'2025-10-19','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600,'208',0,4,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,7,0,'2025-10-19','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600,'208',0,4,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,8,0,'2025-10-19','WPRC0090',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,9,0,'2025-10-19','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,10,0,'2025-10-19','DRC0020',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600,'',0,7,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,11,0,'2025-10-19','ROOM0008',0,3.00,100,300,'A',0,0,300.00,0.00,0.00,300,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,12,0,'2025-10-19','WPRC0079',0,1.00,750,750,'A',0,0,750.00,0.00,0.00,750,'',0,4,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,13,0,'2025-10-19','WPRC0086',0,1.00,1500,1500,'A',0,0,1500.00,0.00,0.00,1500,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,14,0,'2025-10-20','DRC0018',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600,'208',0,4,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,15,0,'2025-10-20','CARE0001',0,1.00,600,600,'P',0,0,600.00,0.00,0.00,600,'208',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,16,0,'2025-10-20','ROOM0009',0,1.00,5500,5500,'P',0,0,5500.00,0.00,0.00,5500,'208',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,17,0,'2025-10-20','DRC0019',0,1.00,1600,1600,'P',0,0,1600.00,0.00,0.00,1600,'208',0,4,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,18,0,'2025-10-20','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'208',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,19,0,'2025-10-20','WPRC0084',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,20,0,'2025-10-20','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,21,0,'2025-10-21','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600,'208',0,4,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,22,0,'2025-10-21','ROOM0009',0,1.00,3200,3200,'P',0,0,3200.00,0.00,0.00,3200,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,23,0,'2025-10-21','AECO0008',0,1.00,400,400,'P',0,0,400.00,0.00,0.00,400,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,24,0,'2025-10-21','CARE0001',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,25,0,'2025-10-21','DRC0019',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100,'',0,4,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,26,0,'2025-10-21','ROOM0008',0,4.00,100,400,'P',0,0,400.00,0.00,0.00,400,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,27,0,'2025-10-22','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200,'405',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,28,0,'2025-10-22','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400,'405',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,29,0,'2025-10-22','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'405',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,30,0,'2025-10-22','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100,'405',0,8,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,31,0,'2025-10-22','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100,'405',0,8,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,32,0,'2025-10-22','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,33,0,'2025-10-23','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100,'405',0,8,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,34,0,'2025-10-23','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'405',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,35,0,'2025-10-23','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200,'405',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,36,0,'2025-10-23','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100,'405',0,8,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,37,0,'2025-10-23','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400,'405',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,38,0,'2025-10-23','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,39,0,'2025-10-23','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,40,0,'2025-10-24','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200,'405',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,41,0,'2025-10-24','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400,'405',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,42,0,'2025-10-24','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'405',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,43,0,'2025-10-24','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100,'405',0,8,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,44,0,'2025-10-24','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100,'405',0,8,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,45,0,'2025-10-24','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,46,0,'2025-10-24','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,47,0,'2025-10-25','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100,'405',0,8,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,48,0,'2025-10-25','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'405',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,49,0,'2025-10-25','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400,'405',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,50,0,'2025-10-25','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200,'405',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,51,0,'2025-10-25','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100,'405',0,8,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,52,0,'2025-10-25','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,53,0,'2025-10-25','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,54,0,'2025-10-26','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200,'405',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,55,0,'2025-10-26','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400,'405',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,56,0,'2025-10-26','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'405',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,57,0,'2025-10-26','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100,'405',0,4,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,58,0,'2025-10-26','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100,'405',0,4,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,59,0,'2025-10-26','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,60,0,'2025-10-26','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,61,0,'2025-10-27','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'405',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,62,0,'2025-10-27','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100,'405',0,4,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,63,0,'2025-10-27','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100,'405',0,4,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,64,0,'2025-10-27','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400,'405',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,65,0,'2025-10-27','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200,'405',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,66,0,'2025-10-27','WPRC0089',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,67,0,'2025-10-28','WPRC0089',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100,'',0,9999,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',81,68,0,'2025-10-28','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100,'',0,4,0,'',0,'','','','riya','2025-10-28 12:56:43','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,1,0,'2025-10-27','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,2,0,'2025-10-27','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,3,0,'2025-10-27','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900,'403',0,9999,0,'',0,'','','','riya','2025-10-29 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,4,0,'2025-10-27','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300,'403',0,9999,0,'',0,'','','','riya','2025-10-29 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,5,0,'2025-10-27','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'403',0,9999,0,'',0,'','','','riya','2025-10-29 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,6,0,'2025-10-27','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'403',0,3,0,'',0,'','','','riya','2025-10-29 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,7,0,'2025-10-27','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'403',0,3,0,'',0,'','','','riya','2025-10-29 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,8,0,'2025-10-27','SURG0014',0,1.00,55000,55000,'P',0,0,55000.00,0.00,0.00,55000,'',0,101,0,'',0,'','','','riya','2025-10-29 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,9,0,'2025-10-27','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,10,0,'2025-10-27','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,11,0,'2025-10-27','SURG0015',0,1.00,18300,18300,'P',0,0,18300.00,0.00,0.00,18300,'',0,3,0,'',0,'','','','riya','2025-10-29 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,12,0,'2025-10-28','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'403',0,3,0,'',0,'','','','riya','2025-10-29 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,13,0,'2025-10-28','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'403',0,3,0,'',0,'','','','riya','2025-10-29 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,14,0,'2025-10-28','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'403',0,9999,0,'',0,'','','','riya','2025-10-29 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,15,0,'2025-10-28','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300,'403',0,9999,0,'',0,'','','','riya','2025-10-29 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,16,0,'2025-10-28','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900,'403',0,9999,0,'',0,'','','','riya','2025-10-29 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',84,17,0,'2025-10-29','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'403',0,3,0,'',0,'','','','riya','2025-10-29 12:12:09','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,1,0,'2025-10-24','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000,'',0,8,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,2,0,'2025-10-24','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,3,0,'2025-10-24','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,4,0,'2025-10-24','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100,'304',0,3,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,5,0,'2025-10-24','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400,'304',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,6,0,'2025-10-24','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200,'304',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,7,0,'2025-10-24','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'304',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,8,0,'2025-10-25','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000,'',0,41,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,9,0,'2025-10-25','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,10,0,'2025-10-25','WPRC0079',0,1.00,750,750,'P',0,0,750.00,0.00,0.00,750,'',0,3,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,11,0,'2025-10-25','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,12,0,'2025-10-25','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'207',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,13,0,'2025-10-25','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600,'207',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,14,0,'2025-10-25','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600,'207',0,3,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,15,0,'2025-10-25','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600,'207',0,3,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,16,0,'2025-10-25','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500,'207',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,17,0,'2025-10-26','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500,'',0,41,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,18,0,'2025-10-26','NEPP0011',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000,'',0,41,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,19,0,'2025-10-26','ROOM0008',0,7.00,100,700,'P',0,0,700.00,0.00,0.00,700,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,20,0,'2025-10-26','WPRC0104',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,21,0,'2025-10-26','WPRC0097',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500,'',0,3,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,22,0,'2025-10-26','XRY0045',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,23,0,'2025-10-26','WPRC0077',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,24,0,'2025-10-26','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,25,0,'2025-10-26','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,26,0,'2025-10-26','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000,'',0,88,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,27,0,'2025-10-26','ROOM0009',0,1.00,5500,5500,'A',0,0,5500.00,0.00,0.00,5500,'207',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,28,0,'2025-10-26','DRC0019',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600,'207',0,3,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,29,0,'2025-10-26','DRC0018',0,1.00,1600,1600,'A',0,0,1600.00,0.00,0.00,1600,'207',0,3,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,30,0,'2025-10-26','AECO0008',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'207',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,31,0,'2025-10-26','CARE0001',0,1.00,600,600,'A',0,0,600.00,0.00,0.00,600,'207',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,32,0,'2025-10-27','ROOM0008',0,3.00,100,300,'P',0,0,300.00,0.00,0.00,300,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,33,0,'2025-10-27','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,34,0,'2025-10-27','WPRC0087',0,2.00,500,1000,'P',0,0,1000.00,0.00,0.00,1000,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,35,0,'2025-10-27','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100,'',0,4,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,36,0,'2025-10-27','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100,'408',0,3,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,37,0,'2025-10-27','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100,'408',0,3,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,38,0,'2025-10-27','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'408',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,39,0,'2025-10-27','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400,'408',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,40,0,'2025-10-27','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200,'408',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,41,0,'2025-10-28','ROOM0008',0,5.00,100,500,'P',0,0,500.00,0.00,0.00,500,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,42,0,'2025-10-28','WPRC0104',0,1.00,6000,6000,'P',0,0,6000.00,0.00,0.00,6000,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,43,0,'2025-10-28','DRC0020',0,1.00,4000,4000,'P',0,0,4000.00,0.00,0.00,4000,'',0,100,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,44,0,'2025-10-28','DRC0020',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100,'',0,4,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,45,0,'2025-10-28','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,46,0,'2025-10-28','DRC0020',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500,'',0,41,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,47,0,'2025-10-28','ROOM0009',0,1.00,3200,3200,'A',0,0,3200.00,0.00,0.00,3200,'408',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,48,0,'2025-10-28','DRC0019',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100,'408',0,3,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,49,0,'2025-10-28','DRC0018',0,1.00,1100,1100,'A',0,0,1100.00,0.00,0.00,1100,'408',0,3,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,50,0,'2025-10-28','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'408',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,51,0,'2025-10-28','AECO0008',0,1.00,400,400,'A',0,0,400.00,0.00,0.00,400,'408',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,52,0,'2025-10-29','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,53,0,'2025-10-29','WPRC0086',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,54,0,'2025-10-29','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000,'',0,100,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,55,0,'2025-10-29','USG0097',0,1.00,1500,1500,'P',0,0,1500.00,0.00,0.00,1500,'',0,9999,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',86,56,0,'2025-10-29','DRC0018',0,1.00,1100,1100,'P',0,0,1100.00,0.00,0.00,1100,'',0,3,0,'',0,'','','','riya','2025-10-29 12:52:54','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,1,0,'2025-10-31','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200,'',0,9999,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,1,1,'2025-10-31','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200,'',0,9999,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,2,0,'2025-10-31','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000,'',0,124,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,2,1,'2025-10-31','DRC0020',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000,'',0,124,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,3,0,'2025-10-31','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,3,1,'2025-10-31','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,4,0,'2025-10-31','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,4,1,'2025-10-31','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,5,0,'2025-10-31','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'412',0,3,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,5,1,'2025-10-31','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'412',0,3,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,6,0,'2025-10-31','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'412',0,9999,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,6,1,'2025-10-31','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'412',0,9999,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,7,0,'2025-10-31','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300,'412',0,9999,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,7,1,'2025-10-31','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300,'412',0,9999,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,8,0,'2025-10-31','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900,'412',0,9999,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,8,1,'2025-10-31','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900,'412',0,9999,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,9,0,'2025-11-01','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100,'',0,9999,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,9,1,'2025-11-01','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100,'',0,9999,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,10,0,'2025-11-01','SURG0014',0,1.00,24000,24000,'P',0,0,24000.00,0.00,0.00,24000,'',0,3,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,10,1,'2025-11-01','SURG0014',0,1.00,24000,24000,'P',0,0,24000.00,0.00,0.00,24000,'',0,3,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,11,0,'2025-11-01','SURG0015',0,1.00,7930,7930,'P',0,0,7930.00,0.00,0.00,7930,'',0,3,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,11,1,'2025-11-01','SURG0015',0,1.00,7930,7930,'P',0,0,7930.00,0.00,0.00,7930,'',0,3,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,12,0,'2025-11-01','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900,'412',0,9999,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,12,1,'2025-11-01','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900,'412',0,9999,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,13,0,'2025-11-01','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300,'412',0,9999,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,13,1,'2025-11-01','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300,'412',0,9999,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,14,0,'2025-11-01','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'412',0,9999,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,14,1,'2025-11-01','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'412',0,9999,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,15,0,'2025-11-01','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'412',0,3,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,15,1,'2025-11-01','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'412',0,3,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,16,0,'2025-11-01','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'412',0,3,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,16,1,'2025-11-01','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'412',0,3,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,17,0,'2025-11-02','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200,'',0,3,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,17,1,'2025-11-02','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200,'',0,3,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,18,0,'2025-11-02','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800,'',0,3,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,18,1,'2025-11-02','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800,'',0,3,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,19,0,'2025-11-02','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800,'',0,4,0,'',0,'','','','riya','2025-11-02 10:37:55','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',103,19,1,'2025-10-31','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800,'',0,4,0,'',0,'','','N','riya','2025-11-02 10:39:02','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',131,1,0,'2025-11-11','WPRC0099',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500,'',0,9999,0,'',0,'','','','vishal','2025-11-12 12:12:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',131,2,0,'2025-11-11','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800,'',0,4,0,'',0,'','','','vishal','2025-11-12 12:12:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',131,3,0,'2025-11-11','ROOM0008',0,2.00,100,200,'P',0,0,200.00,0.00,0.00,200,'',0,9999,0,'',0,'','','','vishal','2025-11-12 12:12:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',131,4,0,'2025-11-11','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300,'',0,9999,0,'',0,'','','','vishal','2025-11-12 12:12:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',131,5,0,'2025-11-11','SURG0014',0,1.00,2700,2700,'P',0,0,2700.00,0.00,0.00,2700,'',0,6,0,'',0,'','','','vishal','2025-11-12 12:12:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',131,6,0,'2025-11-11','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','','vishal','2025-11-12 12:12:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',131,7,0,'2025-11-11','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','','vishal','2025-11-12 12:12:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',131,8,0,'2025-11-11','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900,'403',0,9999,0,'',0,'','','','vishal','2025-11-12 12:12:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',131,9,0,'2025-11-11','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300,'403',0,9999,0,'',0,'','','','vishal','2025-11-12 12:12:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',131,10,0,'2025-11-11','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'403',0,9999,0,'',0,'','','','vishal','2025-11-12 12:12:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',131,11,0,'2025-11-11','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'403',0,6,0,'',0,'','','','vishal','2025-11-12 12:12:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',131,12,0,'2025-11-12','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100,'',0,9999,0,'',0,'','','','vishal','2025-11-12 12:12:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',131,13,0,'2025-11-12','SURG0015',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800,'',0,6,0,'',0,'','','','vishal','2025-11-12 12:12:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',131,14,0,'2025-11-12','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'403',0,6,0,'',0,'','','','vishal','2025-11-12 12:12:20','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,1,0,'2025-11-30','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,2,0,'2025-11-30','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,3,0,'2025-11-30','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900,'402',0,9999,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,4,0,'2025-11-30','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300,'402',0,9999,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,5,0,'2025-11-30','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'402',0,9999,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,6,0,'2025-11-30','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'402',0,3,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,7,0,'2025-11-30','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'402',0,3,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,8,0,'2025-11-30','ROOM0008',0,1.00,100,100,'A',0,0,100.00,0.00,0.00,100,'',0,9999,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,9,0,'2025-11-30','WPRC0080',0,2.00,500,1000,'A',0,0,1000.00,0.00,0.00,1000,'',0,9999,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,10,0,'2025-11-30','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800,'',0,3,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,11,0,'2025-12-01','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300,'402',0,9999,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,12,0,'2025-12-01','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'402',0,9999,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,13,0,'2025-12-01','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'402',0,3,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,14,0,'2025-12-01','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'402',0,3,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,15,0,'2025-12-01','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900,'402',0,9999,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,16,0,'2025-12-01','WPRC0083',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'',0,3,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,17,0,'2025-12-01','SURG0016',0,1.00,18500,18500,'A',0,0,18500.00,0.00,0.00,18500,'',0,3,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,18,0,'2025-12-01','SURG0015',0,1.00,5900,5900,'A',0,0,5900.00,0.00,0.00,5900,'',0,3,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,19,0,'2025-12-02','DRC0019',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800,'402',0,3,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,20,0,'2025-12-02','DRC0018',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800,'402',0,3,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,21,0,'2025-12-02','CARE0001',0,0.50,200,100,'P',0,0,100.00,0.00,0.00,100,'402',0,9999,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,22,0,'2025-12-02','AECO0008',0,0.50,300,150,'P',0,0,150.00,0.00,0.00,150,'402',0,9999,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,23,0,'2025-12-02','ROOM0009',0,0.50,2900,1450,'P',0,0,1450.00,0.00,0.00,1450,'402',0,9999,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',201,24,0,'2025-12-02','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200,'',0,3,0,'',0,'','','','vishal','2025-12-02 20:58:15','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,1,0,'2025-12-01','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,2,0,'2025-12-01','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,3,0,'2025-12-01','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900,'310',0,9999,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,4,0,'2025-12-01','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300,'310',0,9999,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,5,0,'2025-12-01','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'310',0,9999,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,6,0,'2025-12-01','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'310',0,3,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,7,0,'2025-12-01','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'310',0,3,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,8,0,'2025-12-01','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100,'',0,9999,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,9,0,'2025-12-01','WPRC0078',0,1.00,300,300,'P',0,0,300.00,0.00,0.00,300,'',0,9999,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,10,0,'2025-12-01','DRC0020',0,1.00,800,800,'P',0,0,800.00,0.00,0.00,800,'',0,4,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,11,0,'2025-12-01','SURG0015',0,1.00,10500,10500,'P',0,0,10500.00,0.00,0.00,10500,'',0,3,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,12,0,'2025-12-02','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'310',0,3,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,13,0,'2025-12-02','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'310',0,3,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,14,0,'2025-12-02','CARE0001',0,1.00,200,200,'A',0,0,200.00,0.00,0.00,200,'310',0,9999,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,15,0,'2025-12-02','AECO0008',0,1.00,300,300,'A',0,0,300.00,0.00,0.00,300,'310',0,9999,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,16,0,'2025-12-02','ROOM0009',0,1.00,2900,2900,'A',0,0,2900.00,0.00,0.00,2900,'310',0,9999,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,17,0,'2025-12-02','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200,'',0,3,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,18,0,'2025-12-03','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'310',0,3,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,19,0,'2025-12-03','WPRC0083',0,1.00,200,200,'P',0,0,200.00,0.00,0.00,200,'',0,3,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',202,20,0,'2025-12-03','SURG0014',0,1.00,31600,31600,'P',0,0,31600.00,0.00,0.00,31600,'',0,3,0,'',0,'','','','riya','2025-12-03 11:01:32','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',309,1,0,'2025-12-22','REG0001',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','','vishal','2025-12-22 18:24:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',309,2,0,'2025-12-22','REG0002',0,1.00,250,250,'A',0,0,250.00,0.00,0.00,250,'',0,9999,0,'',0,'','','','vishal','2025-12-22 18:24:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',309,3,0,'2025-12-22','DRC0018',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'411',0,3,0,'',0,'','','','vishal','2025-12-22 18:24:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',309,4,0,'2025-12-22','DRC0019',0,1.00,800,800,'A',0,0,800.00,0.00,0.00,800,'411',0,3,0,'',0,'','','','vishal','2025-12-22 18:24:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',309,5,0,'2025-12-22','ROOM0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100,'',0,9999,0,'',0,'','','','vishal','2025-12-22 18:24:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',309,6,0,'2025-12-22','CARE0007',0,1.00,2000,2000,'P',0,0,2000.00,0.00,0.00,2000,'',0,9999,0,'',0,'','','','vishal','2025-12-22 18:24:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','I',309,7,0,'2025-12-22','WPRC0114',0,1.00,1000,1000,'P',0,0,1000.00,0.00,0.00,1000,'',0,3,0,'',0,'','','','vishal','2025-12-22 18:24:19','','0000-00-00 00:00:00',0),(0,0,'2526','H','O',2400,1,0,'2025-11-01','NEU10015',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500,'',0,9999,0,'',0,'','','N','drashti','2025-11-01 14:37:09','drashti','2025-11-01 14:37:09',0),(0,0,'2526','H','O',2400,2,0,'2025-11-01','NEU10017',0,1.00,2500,2500,'P',0,0,2500.00,0.00,0.00,2500,'',0,9999,0,'',0,'','','N','drashti','2025-11-01 14:37:09','drashti','2025-11-01 14:37:09',0),(0,0,'2526','H','O',2769,1,0,'2025-11-05','CASE',0,1.00,700,700,'A',0,0,700.00,0.00,0.00,700,'',0,5,0,'',0,'','','N','janvi','2025-11-05 18:01:55','janvi','2025-11-05 18:01:55',0),(0,0,'2526','H','O',4696,1,0,'2025-11-26','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100,'',0,3,0,'',0,'','','N','janvi','2025-11-26 10:55:15','janvi','2025-11-26 10:55:15',0),(0,0,'2526','H','O',4696,1,1,'2025-11-26','OPWD0008',0,1.00,100,100,'P',0,0,100.00,0.00,0.00,100,'',0,3,0,'',0,'','','N','urvashi','2025-11-26 11:06:37','','0000-00-00 00:00:00',0),(0,0,'2526','H','O',5176,1,0,'2025-11-29','CASE',0,1.00,500,500,'P',0,0,500.00,0.00,0.00,500,'',0,3,0,'',0,'','','N','janvi','2025-11-29 18:08:32','janvi','2025-11-29 18:08:32',0);
/*!40000 ALTER TABLE `receipt_transaction_amendment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `receipt_transaction_backup`
--

DROP TABLE IF EXISTS `receipt_transaction_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `receipt_transaction_backup` (
  `fyear` varchar(4) NOT NULL,
  `receipt_cat` varchar(1) NOT NULL,
  `ipd_opd` varchar(1) NOT NULL,
  `receipt_no` int(11) NOT NULL,
  `receipt_sr` int(11) NOT NULL,
  `service_date` date NOT NULL,
  `service_cd` varchar(4) NOT NULL,
  `service_qty` int(11) NOT NULL,
  `service_disc` int(11) NOT NULL,
  `service_amt` int(11) NOT NULL,
  `service_note` varchar(10) NOT NULL,
  `ref_id` int(11) NOT NULL,
  `provider_code` int(11) NOT NULL,
  `room_cat` varchar(11) NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  `IsAdjusted` tinyint(1) DEFAULT '0' COMMENT 'Indicates whether revenue adjusted or not?',
  PRIMARY KEY (`fyear`,`receipt_cat`,`ipd_opd`,`receipt_no`,`receipt_sr`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `receipt_transaction_backup`
--

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

--
-- Table structure for table `registration_request_table`
--

DROP TABLE IF EXISTS `registration_request_table`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `registration_request_table` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `reg_req_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `doctor` varchar(50) NOT NULL,
  `status_flag` varchar(50) NOT NULL,
  `created_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `updated_by` varchar(50) NOT NULL,
  `updated_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `registration_request_table`
--

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

--
-- Table structure for table `release_note`
--

DROP TABLE IF EXISTS `release_note`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `release_note` (
  `ver_no` varchar(10) NOT NULL,
  `release_date` date NOT NULL,
  `module` varchar(15) NOT NULL,
  `line_no` int(11) NOT NULL,
  `release_note` varchar(200) NOT NULL,
  PRIMARY KEY (`ver_no`,`release_date`,`module`,`line_no`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `release_note`
--

LOCK TABLES `release_note` WRITE;
/*!40000 ALTER TABLE `release_note` DISABLE KEYS */;
INSERT INTO `release_note` VALUES ('3.01.13.70','2023-06-05','SP100',0,''),('3.01.13.71','2023-07-25','SP101',0,''),('3.01.13.72','2024-10-17','SP102',0,''),('3.01.13.73','2025-01-17','SP103',0,''),('3.01.13.74','2025-03-03','SP104',0,''),('3.01.13.75','2025-04-30','SP105',0,''),('3.01.13.76','2025-06-10','SP106',0,''),('3.01.13.77','2025-08-06','SP107',0,''),('3.01.13.78','2025-08-26','SP108',0,''),('3.01.13.79','2025-12-09','SP109',0,'');
/*!40000 ALTER TABLE `release_note` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `repair_transaction`
--

DROP TABLE IF EXISTS `repair_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `repair_transaction` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `Repair_id` int(11) NOT NULL AUTO_INCREMENT,
  `Ass_code` varchar(5) NOT NULL,
  `supplier_id` smallint(5) unsigned NOT NULL,
  `warranty_after_repair` int(11) NOT NULL COMMENT 'Warranty after for number of days',
  `Ass_type` varchar(15) NOT NULL,
  `Repair_type` text NOT NULL,
  `Repair_date` date NOT NULL,
  `Repair_amt` float(9,2) NOT NULL,
  `Repair_remark` varchar(35) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) DEFAULT NULL,
  `LastModifiedDate` datetime DEFAULT NULL,
  PRIMARY KEY (`Repair_id`),
  KEY `supplier_id` (`supplier_id`),
  KEY `Ass_code` (`Ass_code`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `repair_transaction`
--

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

--
-- Table structure for table `reporting_method_master`
--

DROP TABLE IF EXISTS `reporting_method_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `reporting_method_master` (
  `reporting_method_id` tinyint(4) NOT NULL AUTO_INCREMENT,
  `reporting_method_name` varchar(30) NOT NULL,
  `reporting_method_is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`reporting_method_id`),
  KEY `FK_reportingmethod_created_user` (`created_by`),
  KEY `FK_reportingmethod_lastmodified_user` (`lastmodified_by`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reporting_method_master`
--

LOCK TABLES `reporting_method_master` WRITE;
/*!40000 ALTER TABLE `reporting_method_master` DISABLE KEYS */;
INSERT INTO `reporting_method_master` VALUES (1,'Direct','Y','thims','2019-02-23 00:00:00',NULL,NULL),(2,'Indirect','Y','thims','2019-02-23 00:00:00',NULL,NULL),(3,'Other','Y','thims','2019-02-23 00:00:00',NULL,NULL);
/*!40000 ALTER TABLE `reporting_method_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `requests`
--

DROP TABLE IF EXISTS `requests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `requests` (
  `request_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `department_id` int(11) NOT NULL,
  `request_type` varchar(10) NOT NULL,
  `request_date` datetime NOT NULL,
  `requested_by` text NOT NULL,
  `request_department_id` int(11) NOT NULL,
  `ip_id` text NOT NULL,
  `asset_id` text NOT NULL,
  `request_description` text NOT NULL,
  `request_summary` varchar(80) DEFAULT NULL,
  `require_completion_date` datetime DEFAULT NULL,
  `actual_completion_date` datetime DEFAULT NULL,
  `resolution_remark` text NOT NULL,
  `resolution_status` enum('Open','Cancelled','In Progress','Completed','Rejected','Re-Open','Closed') NOT NULL,
  `resolution_by` varchar(10) NOT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) NOT NULL,
  `lastmodified_date` datetime NOT NULL,
  PRIMARY KEY (`request_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `requests`
--

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

--
-- Table structure for table `result`
--

DROP TABLE IF EXISTS `result`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `result` (
  `res_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `opd_reg_id` bigint(20) NOT NULL,
  `medi_exam` varchar(2) NOT NULL,
  `examin_grp_cd` varchar(5) NOT NULL,
  `examination_order` int(11) NOT NULL,
  `me_cd` varchar(11) NOT NULL,
  `r_id` int(11) NOT NULL,
  `me_date` date NOT NULL,
  `me_time` datetime NOT NULL,
  `me_inst` varchar(36) NOT NULL,
  `res_time` datetime NOT NULL,
  `actual_time` time NOT NULL,
  `res_date` date NOT NULL,
  `res_value` varchar(30) NOT NULL,
  `optional_medicine` enum('Y','N') NOT NULL DEFAULT 'N',
  `result_remark` varchar(40) NOT NULL,
  `charge` int(11) NOT NULL,
  `r_fyear` int(11) NOT NULL,
  `receipt_cat` varchar(1) NOT NULL,
  `ipd_opd` varchar(1) NOT NULL,
  `receipt_no` int(11) NOT NULL,
  `receipt_sr` int(11) NOT NULL,
  `active` varchar(1) NOT NULL,
  `user_id` varchar(10) NOT NULL,
  `last_updated_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`res_id`),
  KEY `visit_id` (`visit_id`,`me_date`,`r_id`) USING BTREE,
  KEY `medi_exam` (`medi_exam`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `result`
--

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

--
-- Table structure for table `revenue_sharing_transaction`
--

DROP TABLE IF EXISTS `revenue_sharing_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `revenue_sharing_transaction` (
  `fyear` varchar(4) CHARACTER SET latin1 NOT NULL,
  `receipt_cat` varchar(1) CHARACTER SET latin1 NOT NULL,
  `ipd_opd` varchar(1) CHARACTER SET latin1 NOT NULL,
  `receipt_no` int(11) NOT NULL,
  `receipt_sr` int(11) NOT NULL,
  `revenue_share_calculation_month_year` date NOT NULL,
  `bill_date` date NOT NULL,
  `admitting_business_entity` varchar(4) COLLATE utf8_unicode_ci NOT NULL,
  `short_stay_patient` enum('N','Y') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'N',
  `service_date` date NOT NULL,
  `service_time` time NOT NULL,
  `service_cd` varchar(8) CHARACTER SET latin1 NOT NULL,
  `service_qty` float(9,2) NOT NULL,
  `service_disc` float(10,2) NOT NULL,
  `service_amt` float(10,2) NOT NULL,
  `finalAdjustment` float(9,2) NOT NULL,
  `netServiceAmt` float(9,2) NOT NULL,
  `percent_share_doctor` float(5,2) NOT NULL,
  `amount_share_doctor` float(10,2) NOT NULL,
  `final_provider_code` int(11) NOT NULL,
  `percent_share_admitting_doctor` float(5,2) NOT NULL,
  `amount_share_admitting_doctor` float(10,2) NOT NULL,
  `primaryDoctor` int(11) NOT NULL,
  `percent_share_doctor_provider2` float(5,2) NOT NULL,
  `amount_share_doctor_provider2` float(10,2) NOT NULL,
  `final_provider_code_2` int(11) NOT NULL,
  `percent_share_hospital` float(5,2) NOT NULL,
  `amount_share_hospital` float(10,2) NOT NULL,
  `provider_code_for_hospital` int(11) NOT NULL,
  `service_note` varchar(10) CHARACTER SET latin1 NOT NULL,
  `provider_code` int(11) NOT NULL,
  `eligiblity_for_primary_doctor` char(1) CHARACTER SET latin1 NOT NULL,
  `final_provider_type` enum('P','S') CHARACTER SET latin1 NOT NULL,
  `room_cat` varchar(11) CHARACTER SET latin1 NOT NULL,
  `revenue_share_calculation_remark` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `CreatedBy` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`fyear`,`receipt_cat`,`ipd_opd`,`receipt_no`,`receipt_sr`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `revenue_sharing_transaction`
--

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

--
-- Table structure for table `revenue_sharing_transaction_amendment`
--

DROP TABLE IF EXISTS `revenue_sharing_transaction_amendment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `revenue_sharing_transaction_amendment` (
  `fyear` varchar(4) NOT NULL,
  `receipt_cat` varchar(1) NOT NULL,
  `ipd_opd` varchar(1) NOT NULL,
  `receipt_no` int(11) NOT NULL,
  `receipt_sr` int(11) NOT NULL,
  `revenue_amendment_no` tinyint(4) NOT NULL,
  `revenue_share_calculation_month_year` date NOT NULL,
  `bill_date` date NOT NULL,
  `service_date` date NOT NULL,
  `service_time` time NOT NULL,
  `service_cd` varchar(8) NOT NULL,
  `service_qty` float(9,2) NOT NULL,
  `service_disc` float(10,2) NOT NULL,
  `service_amt` float(10,2) NOT NULL,
  `finalAdjustment` float(9,2) NOT NULL,
  `netServiceAmt` float(9,2) NOT NULL,
  `percent_share_doctor` float(5,2) NOT NULL,
  `amount_share_doctor` float(10,2) NOT NULL,
  `percent_share_doctor_provider2` float(5,2) NOT NULL,
  `amount_share_doctor_provider2` float(10,2) NOT NULL,
  `percent_share_hospital` float(5,2) NOT NULL,
  `amount_share_hospital` float(10,2) NOT NULL,
  `service_note` varchar(10) NOT NULL,
  `primaryDoctor` int(11) NOT NULL,
  `provider_code` int(11) NOT NULL,
  `eligiblity_for_primary_doctor` char(1) NOT NULL,
  `final_provider_code` int(11) NOT NULL,
  `final_provider_code_2` int(11) NOT NULL,
  `final_provider_type` enum('P','S') NOT NULL,
  `room_cat` varchar(11) NOT NULL,
  `revenue_share_calculation_remark` varchar(100) NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`fyear`,`receipt_cat`,`ipd_opd`,`receipt_no`,`receipt_sr`,`revenue_amendment_no`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `revenue_sharing_transaction_amendment`
--

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

--
-- Table structure for table `revenueadjustmentsexcel`
--

DROP TABLE IF EXISTS `revenueadjustmentsexcel`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `revenueadjustmentsexcel` (
  `fyear` varchar(4) NOT NULL,
  `receipt_cat` varchar(1) NOT NULL,
  `ipd_opd` varchar(1) NOT NULL,
  `receipt_no` int(11) NOT NULL,
  `receipt_sr` int(11) NOT NULL,
  `service_date` date NOT NULL,
  `service_amt` int(11) NOT NULL,
  `HeaderId` int(11) NOT NULL,
  `ServiceCode` varchar(8) NOT NULL,
  PRIMARY KEY (`fyear`,`receipt_cat`,`ipd_opd`,`receipt_no`,`receipt_sr`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `revenueadjustmentsexcel`
--

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

--
-- Table structure for table `role_holder_master`
--

DROP TABLE IF EXISTS `role_holder_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `role_holder_master` (
  `role_holder_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `role_holder_fname` varchar(15) NOT NULL,
  `role_holder_mname` varchar(15) NOT NULL,
  `role_holder_lname` varchar(15) NOT NULL,
  `role_holder_shortname` varchar(5) NOT NULL,
  `role_holder_desg` varchar(30) NOT NULL,
  `role_holder_qualification` varchar(30) NOT NULL,
  `Reg_No` varchar(20) NOT NULL,
  `role_holder_dept_id` varchar(5) NOT NULL,
  `role_holder_category` char(2) NOT NULL,
  `role_holder_contact` varchar(10) NOT NULL,
  `role_holder_contact2` varchar(10) NOT NULL,
  `role_holder_email` varchar(50) NOT NULL,
  `role_holder_Religion` varchar(1) NOT NULL,
  `User_Signature` varchar(255) NOT NULL,
  `active` varchar(1) NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`role_holder_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_holder_master`
--

LOCK TABLES `role_holder_master` WRITE;
/*!40000 ALTER TABLE `role_holder_master` DISABLE KEYS */;
INSERT INTO `role_holder_master` VALUES (1,0,0,'Lab Technician','','','a','LAB Technician','','','D09','','','','','','','Y','thims','2020-04-03 14:57:53','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `role_holder_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `room_alocation`
--

DROP TABLE IF EXISTS `room_alocation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `room_alocation` (
  `alocation_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `opd_reg_id` bigint(20) NOT NULL,
  `admit_date` date NOT NULL,
  `admit_time` time NOT NULL,
  `discharge_date` date NOT NULL,
  `discharge_time` time NOT NULL,
  `room_availability` enum('Y','N') NOT NULL DEFAULT 'N',
  `room_id` varchar(6) NOT NULL,
  `room_cat_id` varchar(4) NOT NULL,
  `billing_room_cat_id` varchar(4) NOT NULL,
  `is_billing_room_cat_updated` enum('Y','N') NOT NULL DEFAULT 'N',
  `bed_no` int(11) NOT NULL,
  `rate` int(11) NOT NULL,
  `charges` int(11) NOT NULL,
  `room_releasedby` varchar(10) NOT NULL,
  `room_release_datetime` datetime NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`alocation_id`,`company_id`,`branch_id`,`ipd_reg_id`,`opd_reg_id`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`visit_id`,`ipd_reg_id`,`admit_date`,`admit_time`,`room_id`)
) ENGINE=InnoDB AUTO_INCREMENT=534 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `room_alocation`
--

LOCK TABLES `room_alocation` WRITE;
/*!40000 ALTER TABLE `room_alocation` DISABLE KEYS */;
INSERT INTO `room_alocation` VALUES (1,0,0,21,1,0,'2025-10-04','13:45:00','2025-10-09','09:50:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-10-10 21:36:36','reception','2025-10-08 10:57:38','vishal','2025-10-10 21:36:36'),(2,0,0,28,2,0,'2025-10-04','18:00:00','2025-10-10','11:00:00','Y','B0022','RC07','RC07','N',0,0,0,'vishal','2025-10-10 21:36:39','reception','2025-10-08 11:12:41','vishal','2025-10-10 21:36:39'),(3,0,0,34,3,0,'2025-10-03','10:00:00','2025-10-09','11:50:00','Y','B0004','RC04','RC04','N',0,0,0,'vishal','2025-10-10 21:37:01','reception','2025-10-08 11:24:24','vishal','2025-10-10 21:37:01'),(4,0,0,37,4,0,'2025-10-07','13:00:00','2025-10-08','11:25:00','Y','B0011','RC03','RC03','N',0,0,0,'vishal','2025-10-10 21:36:27','reception','2025-10-08 11:29:13','vishal','2025-10-10 21:36:27'),(5,0,0,48,5,0,'2025-10-06','11:00:00','2025-10-09','19:00:00','Y','B0016','RC03','RC03','N',0,0,0,'vishal','2025-10-10 21:36:51','riya','2025-10-08 11:50:36','vishal','2025-10-10 21:36:51'),(6,0,0,51,6,0,'2025-10-03','18:30:00','2025-10-08','18:00:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-10-10 21:36:36','riya','2025-10-08 11:56:05','vishal','2025-10-10 21:36:36'),(7,0,0,56,7,0,'2025-10-07','11:15:00','2025-10-11','12:15:00','Y','B0007','RC04','RC04','N',0,0,0,'vishal','2025-10-11 13:21:09','riya','2025-10-08 12:07:46','vishal','2025-10-11 13:21:09'),(8,0,0,60,8,0,'2025-10-06','13:30:00','2025-10-10','12:05:00','Y','B0013','RC03','RC03','N',0,0,0,'vishal','2025-10-10 21:36:48','riya','2025-10-08 12:11:01','vishal','2025-10-10 21:36:48'),(9,0,0,62,9,0,'2025-10-06','12:15:00','2025-10-10','11:30:00','Y','B0006','RC04','RC04','N',0,0,0,'vishal','2025-10-10 21:37:13','riya','2025-10-08 12:13:52','vishal','2025-10-10 21:37:13'),(10,0,0,63,10,0,'2025-10-07','10:55:00','2025-10-10','21:30:00','Y','B0015','RC03','RC03','N',0,0,0,'vishal','2025-10-10 21:43:06','riya','2025-10-08 12:20:02','vishal','2025-10-10 21:43:06'),(11,0,0,66,11,0,'2025-10-08','12:00:00','2025-10-11','12:30:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-10-11 14:37:03','riya','2025-10-08 12:23:43','vishal','2025-10-11 14:37:03'),(12,0,0,150,12,16,'2025-10-08','19:20:00','2025-10-11','18:30:00','Y','B0002','RC04','RC04','N',0,0,0,'vishal','2025-10-11 18:30:00','vishal','2025-10-08 19:24:21','vishal','2025-10-11 18:42:14'),(13,0,0,165,13,0,'2025-10-09','09:15:00','2025-10-09','19:15:00','Y','B0012','RC03','RC03','N',0,0,0,'vishal','2025-10-10 21:36:44','vishal','2025-10-09 09:35:58','vishal','2025-10-10 21:36:44'),(14,0,0,168,14,0,'2025-10-09','09:30:00','2025-10-10','11:15:00','Y','B0003','RC04','RC04','N',0,0,0,'vishal','2025-10-10 11:15:00','vishal','2025-10-09 09:49:18','vishal','2025-10-27 19:41:59'),(15,0,0,193,15,150,'2025-10-09','11:15:00','2025-10-10','21:30:00','Y','B0014','RC03','RC03','N',0,0,0,'vishal','2025-10-10 21:48:50','vishal','2025-10-09 11:18:34','vishal','2025-10-10 21:48:50'),(16,0,0,216,16,166,'2025-10-09','12:30:00','2025-10-10','21:30:00','Y','B0017','RC03','RC03','N',0,0,0,'vishal','2025-10-10 21:42:52','vishal','2025-10-09 12:33:11','vishal','2025-10-10 21:42:52'),(17,0,0,224,17,116,'2025-10-09','14:30:00','2025-10-10','21:30:00','Y','B0019','RC03','RC03','N',0,0,0,'vishal','2025-10-10 21:48:43','vishal','2025-10-09 14:36:28','vishal','2025-10-10 21:48:43'),(18,0,0,246,18,0,'2025-10-09','18:00:00','2025-10-14','11:45:00','Y','B0023','RC07','RC07','N',0,0,0,'riya','2025-10-14 11:45:00','vishal','2025-10-09 18:00:34','riya','2025-10-14 11:46:45'),(19,0,0,257,19,0,'2025-10-08','14:00:00','2025-10-10','11:30:00','Y','B0005','RC04','RC04','N',0,0,0,'vishal','2025-10-10 21:37:08','vishal','2025-10-09 18:19:11','vishal','2025-10-10 21:37:08'),(20,0,0,48,5,0,'2025-10-09','19:00:00','2025-10-14','15:30:00','Y','B0024','RC07','RC07','N',0,0,0,'riya','2025-10-14 15:30:00','vishal','2025-10-09 19:14:56','riya','2025-10-14 15:24:27'),(21,0,0,283,20,0,'2025-10-09','20:00:00','2025-10-11','10:00:00','Y','B0025','RC07','RC07','N',0,0,0,'vishal','2025-10-11 09:59:27','vishal','2025-10-09 20:04:52','vishal','2025-10-11 09:59:27'),(22,0,0,284,21,0,'2025-10-09','23:00:00','2025-10-10','21:45:00','Y','B0020','RC03','RC03','N',0,0,0,'vishal','2025-10-10 21:48:47','vishal','2025-10-09 23:06:49','vishal','2025-10-10 21:48:47'),(23,0,0,406,22,0,'2025-10-10','19:20:00','2025-10-10','21:30:00','Y','B0010','RC04','RC04','N',0,0,0,'vishal','2025-10-10 21:42:41','vishal','2025-10-10 19:21:47','vishal','2025-10-10 21:42:41'),(24,0,0,409,23,0,'2025-09-30','09:00:00','2025-09-30','04:36:00','Y','B0011','RC03','RC03','N',0,0,0,'vishal','2025-10-10 21:36:27','vishal','2025-10-10 19:36:40','vishal','2025-10-10 21:36:27'),(25,0,0,413,24,259,'2025-10-10','20:30:00','2025-10-10','21:45:00','Y','B0009','RC04','RC04','N',0,0,0,'vishal','2025-10-10 21:50:47','vishal','2025-10-10 20:35:54','vishal','2025-10-10 21:50:47'),(26,0,0,414,25,0,'2025-10-10','03:45:00','2025-10-28','12:00:00','Y','B0026','RC07','RC07','N',0,0,0,'riya','2025-10-28 12:00:00','vishal','2025-10-10 21:06:54','riya','2025-10-28 11:59:10'),(27,0,0,415,26,0,'2025-10-10','11:45:00','2025-10-11','16:30:00','Y','B0008','RC04','RC04','N',0,0,0,'vishal','2025-10-11 16:38:40','vishal','2025-10-10 21:10:26','vishal','2025-10-11 16:38:40'),(28,0,0,416,27,276,'2025-10-10','12:40:00','2025-10-10','21:30:00','Y','B0018','RC03','RC03','N',0,0,0,'vishal','2025-10-10 21:43:01','vishal','2025-10-10 21:14:01','vishal','2025-10-10 21:43:01'),(29,0,0,216,16,166,'2025-10-10','21:30:00','2025-10-15','11:30:00','Y','B0011','RC03','RC03','N',0,0,0,'vishal','2025-10-15 11:30:00','vishal','2025-10-10 21:38:28','vishal','2025-10-15 11:50:01'),(30,0,0,416,27,276,'2025-10-10','21:30:00','2025-10-14','19:10:00','Y','B0012','RC03','RC03','N',0,0,0,'riya','2025-10-14 19:10:00','vishal','2025-10-10 21:39:19','riya','2025-10-14 19:08:28'),(31,0,0,63,10,0,'2025-10-10','21:30:00','2025-10-13','12:10:00','Y','B0003','RC04','RC04','N',0,0,0,'vishal','2025-10-13 12:10:00','vishal','2025-10-10 21:40:43','vishal','2025-10-13 13:06:24'),(32,0,0,406,22,0,'2025-10-10','21:30:00','2025-10-14','12:45:00','Y','B0004','RC04','RC04','N',0,0,0,'riya','2025-10-14 12:45:00','vishal','2025-10-10 21:41:09','riya','2025-10-14 12:52:12'),(33,0,0,193,15,150,'2025-10-10','21:30:00','2025-10-11','11:10:00','Y','B0015','RC03','RC03','N',0,0,0,'vishal','2025-10-11 12:23:24','vishal','2025-10-10 21:43:57','vishal','2025-10-11 12:23:24'),(34,0,0,224,17,116,'2025-10-10','21:30:00','2025-10-11','16:00:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-10-11 16:35:56','vishal','2025-10-10 21:45:39','vishal','2025-10-11 16:35:56'),(35,0,0,284,21,0,'2025-10-10','21:45:00','2025-10-14','16:00:00','Y','B0022','RC07','RC07','N',0,0,0,'riya','2025-10-14 16:00:00','vishal','2025-10-10 21:46:47','riya','2025-10-15 18:04:56'),(36,0,0,413,24,259,'2025-10-10','21:45:00','2025-10-11','00:30:00','Y','B0005','RC04','RC04','N',0,0,0,'vishal','2025-10-11 10:00:20','vishal','2025-10-10 21:50:27','vishal','2025-10-11 10:00:20'),(37,0,0,417,28,0,'2025-10-10','14:30:00','2025-10-11','16:30:00','Y','B0009','RC04','RC04','N',0,0,0,'vishal','2025-10-11 16:37:34','vishal','2025-10-10 21:53:07','vishal','2025-10-11 16:37:34'),(38,0,0,422,29,305,'2025-10-11','09:00:00','2025-10-11','16:00:00','Y','B0013','RC03','RC03','N',0,0,0,'vishal','2025-10-11 16:02:43','vishal','2025-10-11 09:25:22','vishal','2025-10-11 16:02:43'),(39,0,0,426,30,221,'2025-10-11','08:00:00','2025-10-12','13:15:00','Y','B0016','RC03','RC03','N',0,0,0,'vishal','2025-10-12 13:15:00','vishal','2025-10-11 09:39:44','vishal','2025-10-12 12:59:23'),(40,0,0,428,31,211,'2025-10-11','09:15:00','2025-10-12','09:40:00','Y','B0017','RC03','RC03','N',0,0,0,'vishal','2025-10-12 09:40:00','vishal','2025-10-11 09:45:46','vishal','2025-10-12 09:57:36'),(41,0,0,413,24,259,'2025-10-11','00:30:00','2025-10-11','19:40:00','Y','B0025','RC07','RC07','N',0,0,0,'vishal','2025-10-11 19:40:00','vishal','2025-10-11 10:00:03','vishal','2025-10-11 19:39:36'),(42,0,0,430,32,0,'2025-10-11','09:00:00','2025-10-11','15:45:00','Y','B0005','RC04','RC04','N',0,0,0,'vishal','2025-10-11 15:59:39','vishal','2025-10-11 10:01:01','vishal','2025-10-11 15:59:39'),(43,0,0,434,33,270,'2025-10-11','09:30:00','2025-10-12','12:45:00','Y','B0006','RC04','RC04','N',0,0,0,'vishal','2025-10-12 12:45:00','vishal','2025-10-11 10:17:57','vishal','2025-10-12 13:00:01'),(44,0,0,470,34,131,'2025-10-11','11:40:00','2025-10-11','16:30:00','Y','B0019','RC03','RC03','N',0,0,0,'vishal','2025-10-11 16:40:30','vishal','2025-10-11 11:45:07','vishal','2025-10-11 16:40:30'),(45,0,0,477,35,21,'2025-10-11','12:00:00','2025-10-13','22:30:00','Y','B0018','RC03','RC03','N',0,0,0,'riya','2025-10-13 22:30:00','vishal','2025-10-11 12:02:49','riya','2025-10-13 22:49:19'),(46,0,0,487,36,60,'2025-10-11','14:10:00','2025-10-11','16:00:00','Y','B0015','RC03','RC03','N',0,0,0,'vishal','2025-10-11 16:06:11','vishal','2025-10-11 14:11:10','vishal','2025-10-11 16:06:11'),(47,0,0,488,37,407,'2025-10-11','13:30:00','2025-10-11','11:00:00','Y','B0020','RC03','RC03','N',0,0,0,'vishal','2025-10-11 11:00:00','vishal','2025-10-11 14:19:58','vishal','2025-10-11 21:17:25'),(48,0,0,430,32,0,'2025-10-11','15:45:00','2025-10-11','19:45:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-10-11 19:45:00','vishal','2025-10-11 15:59:11','vishal','2025-10-11 19:57:31'),(49,0,0,422,29,305,'2025-10-11','16:00:00','2025-10-11','16:00:00','Y','B0014','RC03','RC03','N',0,0,0,'vishal','2025-10-11 16:07:17','vishal','2025-10-11 16:02:10','vishal','2025-10-11 16:07:17'),(50,0,0,487,36,60,'2025-10-11','16:00:00','2025-10-15','11:25:00','Y','B0013','RC03','RC03','N',0,0,0,'vishal','2025-10-15 11:25:00','vishal','2025-10-11 16:04:50','vishal','2025-10-15 11:50:39'),(51,0,0,422,29,305,'2025-10-11','16:00:00','2025-10-11','19:15:00','Y','B0015','RC03','RC03','N',0,0,0,'vishal','2025-10-11 19:15:00','vishal','2025-10-11 16:06:44','vishal','2025-10-11 19:52:45'),(52,0,0,224,17,116,'2025-10-11','16:00:00','2025-10-16','18:06:00','Y','B0005','RC04','RC04','N',0,0,0,'riya','2025-10-16 18:06:00','vishal','2025-10-11 16:10:10','riya','2025-10-16 19:04:52'),(53,0,0,417,28,0,'2025-10-11','16:30:00','2025-10-12','11:30:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-10-12 11:30:00','vishal','2025-10-11 16:36:28','vishal','2025-10-12 10:46:02'),(54,0,0,415,26,0,'2025-10-11','16:30:00','2025-10-13','11:30:00','Y','B0007','RC04','RC04','N',0,0,0,'reception','2025-10-13 11:30:00','vishal','2025-10-11 16:38:22','reception','2025-10-13 11:21:26'),(55,0,0,470,34,131,'2025-10-11','16:30:00','2025-10-13','11:30:00','Y','B0008','RC04','RC04','N',0,0,0,'reception','2025-10-13 11:30:00','vishal','2025-10-11 16:40:05','reception','2025-10-13 11:45:10'),(56,0,0,489,38,0,'2025-10-11','17:00:00','2025-10-11','18:15:00','Y','B0010','RC04','RC04','N',0,0,0,'vishal','2025-10-11 18:15:00','vishal','2025-10-11 17:33:27','vishal','2025-10-11 18:25:32'),(57,0,0,489,38,0,'2025-10-11','18:15:00','2025-10-21','19:30:00','Y','B0027','RC07','RC07','N',0,0,0,'vishal','2025-10-21 19:30:00','vishal','2025-10-11 18:25:32','vishal','2025-10-21 19:31:56'),(58,0,0,505,39,0,'2025-10-11','19:15:00','2025-10-13','22:30:00','Y','B0002','RC04','RC04','N',0,0,0,'riya','2025-10-13 22:30:00','vishal','2025-10-11 19:21:56','riya','2025-10-13 22:43:37'),(59,0,0,413,24,259,'2025-10-11','19:40:00','2025-10-13','12:10:00','Y','B0019','RC03','RC03','N',0,0,0,'vishal','2025-10-13 12:10:00','vishal','2025-10-11 19:39:36','vishal','2025-10-13 13:07:08'),(60,0,0,430,32,0,'2025-10-11','19:45:00','2025-10-11','23:00:00','Y','B0025','RC07','RC07','N',0,0,0,'vishal','2025-10-11 23:00:00','vishal','2025-10-11 19:57:31','vishal','2025-10-12 10:15:46'),(61,0,0,506,40,0,'2025-10-11','22:00:00','2025-10-13','11:30:00','Y','B0028','RC07','RC07','N',0,0,0,'reception','2025-10-13 11:30:00','vishal','2025-10-11 22:22:07','reception','2025-10-13 11:29:35'),(62,0,0,430,32,0,'2025-10-11','23:00:00','2025-10-13','17:05:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-10-13 17:05:00','vishal','2025-10-12 10:15:46','vishal','2025-10-13 17:10:33'),(63,0,0,509,41,0,'2025-10-12','11:00:00','2025-10-14','12:00:00','Y','B0015','RC03','RC03','N',0,0,0,'riya','2025-10-14 12:00:00','vishal','2025-10-12 11:06:05','riya','2025-10-14 12:08:42'),(64,0,0,510,42,40,'2025-10-12','12:45:00','2025-10-12','21:30:00','Y','B0017','RC03','RC03','N',0,0,0,'vishal','2025-10-12 21:30:00','vishal','2025-10-12 12:54:14','vishal','2025-10-12 21:33:08'),(65,0,0,527,43,370,'2025-10-13','09:30:00','2025-10-13','17:05:00','Y','B0016','RC03','RC03','N',0,0,0,'vishal','2025-10-13 17:05:00','vishal','2025-10-13 09:38:44','vishal','2025-10-13 17:13:33'),(66,0,0,506,40,0,'2025-10-13','11:30:00','2025-10-13','20:05:00','Y','B0006','RC04','RC04','N',0,0,0,'riya','2025-10-13 20:05:00','reception','2025-10-13 11:29:35','riya','2025-10-13 20:12:11'),(67,0,0,470,34,131,'2025-10-13','11:30:00','2025-10-16','11:35:00','Y','B0007','RC04','RC04','N',0,0,0,'vishal','2025-10-16 11:35:00','reception','2025-10-13 11:45:10','vishal','2025-10-16 11:58:03'),(68,0,0,574,44,481,'2025-10-13','11:30:00','2025-10-16','09:00:00','Y','B0008','RC04','RC04','N',0,0,0,'vishal','2025-10-16 09:00:00','reception','2025-10-13 11:46:29','vishal','2025-10-16 08:53:29'),(69,0,0,598,45,0,'2025-10-04','09:30:00','2025-10-05','10:00:00','Y','B0006','RC04','RC04','N',0,0,0,'vishal','2025-10-05 10:00:00','vishal','2025-10-13 16:09:56','vishal','2025-10-13 16:57:57'),(70,0,0,645,46,0,'2025-10-13','18:40:00','2025-10-13','19:15:00','Y','B0003','RC04','RC04','N',0,0,0,'riya','2025-10-13 19:15:00','riya','2025-10-13 18:42:07','riya','2025-10-13 19:23:39'),(71,0,0,645,46,0,'2025-10-13','19:15:00','2025-10-16','11:10:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-10-16 11:10:00','riya','2025-10-13 19:23:39','vishal','2025-10-16 11:19:52'),(72,0,0,668,47,0,'2025-09-25','12:15:00','2025-09-26','11:15:00','Y','B0003','RC04','RC04','N',0,0,0,'riya','2025-10-13 20:50:00','riya','2025-10-13 19:32:07','riya','2025-10-13 20:50:53'),(73,0,0,672,48,0,'2025-10-09','09:30:00','2025-10-10','11:15:00','Y','B0018','RC03','RC03','N',0,0,0,'riya','2025-10-13 11:15:00','riya','2025-10-13 21:36:04','riya','2025-10-13 21:47:40'),(74,0,0,673,49,0,'2025-10-06','10:00:00','2025-10-07','13:00:00','Y','B0003','RC04','RC04','N',0,0,0,'riya','2025-10-13 13:00:00','riya','2025-10-13 21:58:40','riya','2025-10-13 22:12:39'),(75,0,0,674,50,0,'2025-10-13','22:24:00','2025-10-16','11:20:00','Y','B0003','RC04','RC04','N',0,0,0,'vishal','2025-10-16 11:20:00','riya','2025-10-13 22:26:30','vishal','2025-10-16 11:31:40'),(76,0,0,675,51,0,'2025-10-13','22:34:00','2025-10-14','20:30:00','Y','B0006','RC04','RC04','N',0,0,0,'vishal','2025-10-14 20:30:00','riya','2025-10-13 22:36:35','vishal','2025-10-14 21:06:08'),(77,0,0,683,52,431,'2025-10-14','09:03:00','2025-10-14','21:00:00','Y','B0017','RC03','RC03','N',0,0,0,'vishal','2025-10-14 21:00:00','riya','2025-10-14 09:05:16','vishal','2025-10-14 19:42:03'),(78,0,0,684,53,0,'2025-09-30','09:00:00','2025-09-30','04:36:00','Y','B0014','RC03','RC03','N',0,0,0,'riya','2025-10-14 09:36:00','riya','2025-10-14 09:20:50','riya','2025-10-14 09:40:39'),(79,0,0,687,54,482,'2025-10-14','09:30:00','2025-10-14','10:00:00','Y','B0009','RC04','RC04','N',0,0,0,'riya','2025-10-14 10:00:00','riya','2025-10-14 09:57:04','riya','2025-10-14 10:02:44'),(80,0,0,687,54,482,'2025-10-14','10:00:00','2025-10-14','20:00:00','Y','B0020','RC03','RC03','N',0,0,0,'vishal','2025-10-14 20:00:00','riya','2025-10-14 10:02:44','vishal','2025-10-15 09:15:30'),(81,0,0,690,55,0,'2025-10-14','10:00:00','2025-10-15','12:30:00','Y','B0002','RC04','RC04','N',0,0,0,'vishal','2025-10-15 12:30:00','riya','2025-10-14 10:13:28','vishal','2025-10-15 12:33:55'),(82,0,0,701,56,595,'2025-10-14','10:48:00','2025-10-15','12:00:00','Y','B0016','RC03','RC03','N',0,0,0,'vishal','2025-10-15 12:00:00','riya','2025-10-14 10:49:41','vishal','2025-10-15 12:42:05'),(83,0,0,246,18,0,'2025-10-14','11:45:00','2025-10-15','18:00:00','Y','B0019','RC03','RC03','N',0,0,0,'riya','2025-10-15 18:00:00','riya','2025-10-14 11:46:45','riya','2025-10-15 19:20:57'),(84,0,0,737,57,0,'2025-09-30','09:00:00','2025-09-30','16:36:00','Y','B0014','RC03','RC03','N',0,0,0,'riya','2025-10-14 12:49:00','riya','2025-10-14 12:49:00','riya','2025-10-14 12:50:55'),(85,0,0,743,58,619,'2025-10-14','13:27:00','2025-10-15','14:30:00','Y','B0004','RC04','RC04','N',0,0,0,'vishal','2025-10-15 14:30:00','riya','2025-10-14 13:35:47','vishal','2025-10-15 12:39:13'),(86,0,0,803,59,0,'2025-10-14','21:30:00','2025-10-15','15:30:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-10-15 15:30:00','vishal','2025-10-14 21:50:36','vishal','2025-10-16 12:29:39'),(87,0,0,687,54,482,'2025-10-14','20:00:00','2025-10-15','10:30:00','Y','B0006','RC04','RC04','N',0,0,0,'vishal','2025-10-15 10:30:00','vishal','2025-10-15 09:15:30','vishal','2025-10-15 10:38:09'),(88,0,0,809,60,0,'2025-10-15','09:00:00','2025-10-16','18:05:00','Y','B0012','RC03','RC03','N',0,0,0,'riya','2025-10-16 18:05:00','vishal','2025-10-15 09:25:23','riya','2025-10-16 18:11:16'),(89,0,0,841,61,451,'2025-10-15','11:25:00','2025-10-16','18:00:00','Y','B0017','RC03','RC03','N',0,0,0,'riya','2025-10-16 18:00:00','vishal','2025-10-15 11:28:12','riya','2025-10-16 18:15:20'),(90,0,0,871,62,721,'2025-10-15','13:23:00','2025-10-17','09:00:00','Y','B0004','RC04','RC04','N',0,0,0,'vishal','2025-10-17 09:00:00','vishal','2025-10-15 13:29:27','vishal','2025-10-17 09:29:21'),(91,0,0,882,63,0,'2025-10-15','17:00:00','2025-10-18','12:30:00','Y','B0023','RC07','RC07','N',0,0,0,'riya','2025-10-18 12:30:00','riya','2025-10-15 17:10:52','riya','2025-10-18 12:20:28'),(92,0,0,284,21,0,'2025-10-14','16:00:00','2025-10-18','11:15:00','Y','B0015','RC03','RC03','N',0,0,0,'riya','2025-10-18 11:15:00','riya','2025-10-15 18:04:56','riya','2025-10-18 11:42:09'),(93,0,0,246,18,0,'2025-10-15','18:00:00','2025-10-16','15:00:00','Y','B0022','RC07','RC07','N',0,0,0,'riya','2025-10-16 15:00:00','riya','2025-10-15 19:20:57','riya','2025-10-16 21:07:25'),(94,0,0,936,64,769,'2025-10-15','22:00:00','2025-10-18','15:00:00','Y','B0024','RC07','RC07','N',0,0,0,'riya','2025-10-18 15:00:00','vishal','2025-10-16 08:26:11','riya','2025-10-18 14:07:06'),(95,0,0,939,65,709,'2025-10-15','22:30:00','2025-10-20','11:30:00','Y','B0006','RC04','RC04','N',0,0,0,'vishal','2025-10-20 11:30:00','vishal','2025-10-16 09:07:59','vishal','2025-10-20 11:32:15'),(96,0,0,803,59,0,'2025-10-15','15:30:00','2025-10-15','15:30:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-10-15 15:30:00','vishal','2025-10-16 12:29:39','vishal','2025-10-16 12:30:01'),(97,0,0,803,59,0,'2025-10-15','15:30:00','2025-10-16','12:10:00','Y','B0002','RC04','RC04','N',0,0,0,'vishal','2025-10-16 12:10:00','vishal','2025-10-16 12:30:01','vishal','2025-10-16 12:30:35'),(98,0,0,1004,66,0,'2025-10-16','13:50:00','2025-10-18','17:30:00','Y','B0021','RC07','RC07','N',0,0,0,'riya','2025-10-18 17:30:00','vishal','2025-10-16 14:11:22','riya','2025-10-18 16:56:13'),(99,0,0,246,18,0,'2025-10-16','15:00:00','2025-10-18','12:30:00','Y','B0016','RC03','RC03','N',0,0,0,'riya','2025-10-18 12:30:00','riya','2025-10-16 21:07:25','riya','2025-10-18 13:25:11'),(100,0,0,1072,67,0,'2025-10-16','21:00:00','2025-10-18','13:00:00','Y','B0022','RC07','RC07','N',0,0,0,'riya','2025-10-18 13:00:00','riya','2025-10-16 21:50:22','riya','2025-10-18 12:23:22'),(101,0,0,1140,68,938,'2025-10-17','13:00:00','2025-10-18','03:45:00','Y','B0011','RC03','RC03','N',0,0,0,'riya','2025-10-18 03:45:00','vishal','2025-10-17 13:06:01','riya','2025-10-18 16:05:01'),(102,0,0,1144,69,0,'2025-10-17','14:00:00','2025-10-17','14:00:00','Y','B0013','RC03','RC03','N',0,0,0,'vishal','2025-10-17 14:00:00','vishal','2025-10-17 14:04:50','vishal','2025-10-17 14:15:19'),(103,0,0,1144,69,0,'2025-10-17','14:00:00','2025-10-22','11:00:00','Y','B0014','RC03','RC03','N',0,0,0,'vishal','2025-10-22 11:00:00','vishal','2025-10-17 14:15:19','vishal','2025-10-22 10:54:17'),(104,0,0,1147,70,0,'2025-10-17','15:00:00','2025-10-25','11:40:00','Y','B0001','RC04','RC04','N',0,0,0,'riya','2025-10-25 11:40:00','vishal','2025-10-17 15:08:19','riya','2025-10-25 11:49:49'),(105,0,0,1213,71,0,'2025-10-17','20:50:00','2025-10-22','13:00:00','Y','B0002','RC04','RC04','N',0,0,0,'vishal','2025-10-22 13:00:00','riya','2025-10-17 20:55:33','vishal','2025-10-22 13:20:21'),(106,0,0,1220,72,0,'2025-10-18','09:30:00','2025-10-18','19:00:00','Y','B0013','RC03','RC03','N',0,0,0,'vishal','2025-10-18 19:00:00','riya','2025-10-18 09:48:58','vishal','2025-10-19 11:40:36'),(107,0,0,1266,73,879,'2025-10-18','12:00:00','2025-10-18','18:00:00','Y','B0020','RC03','RC03','N',0,0,0,'riya','2025-10-18 18:00:00','riya','2025-10-18 12:12:56','riya','2025-10-18 18:13:35'),(108,0,0,1279,74,0,'2025-10-18','15:00:00','2025-10-19','10:40:00','Y','B0016','RC03','RC03','N',0,0,0,'reception','2025-10-19 10:40:00','riya','2025-10-18 15:49:26','reception','2025-10-19 10:40:34'),(109,0,0,1281,75,0,'2025-10-18','17:27:00','2025-10-19','10:40:00','Y','B0011','RC03','RC03','N',0,0,0,'reception','2025-10-19 10:40:00','riya','2025-10-18 17:30:22','reception','2025-10-19 10:43:16'),(110,0,0,1291,76,0,'2025-10-18','20:30:00','2025-10-18','22:00:00','Y','B0021','RC07','RC07','N',0,0,0,'riya','2025-10-18 22:00:00','riya','2025-10-18 20:31:43','riya','2025-10-18 22:01:58'),(111,0,0,1292,77,0,'2025-10-19','02:30:00','2025-10-21','12:45:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-10-21 12:45:00','reception','2025-10-19 10:14:48','vishal','2025-10-21 13:04:55'),(112,0,0,1293,78,0,'2025-10-19','10:15:00','2025-10-21','12:30:00','Y','B0022','RC07','RC07','N',0,0,0,'vishal','2025-10-21 12:30:00','reception','2025-10-19 10:35:30','vishal','2025-10-21 12:49:28'),(113,0,0,1220,72,0,'2025-10-18','19:00:00','2025-10-19','12:00:00','Y','B0023','RC07','RC07','N',0,0,0,'vishal','2025-10-19 12:00:00','vishal','2025-10-19 11:40:36','vishal','2025-10-19 11:41:23'),(114,0,0,1220,72,0,'2025-10-19','12:00:00','2025-10-20','11:00:00','Y','B0013','RC03','RC03','N',0,0,0,'vishal','2025-10-20 11:00:00','vishal','2025-10-19 11:41:23','vishal','2025-10-20 11:19:15'),(115,0,0,1294,79,0,'2025-10-20','08:00:00','2025-10-21','12:30:00','Y','B0023','RC07','RC07','N',0,0,0,'vishal','2025-10-21 12:30:00','vishal','2025-10-20 11:09:16','vishal','2025-10-21 12:44:22'),(116,0,0,1295,80,0,'2025-10-20','17:00:00','2025-10-21','15:00:00','Y','B0003','RC04','RC04','N',0,0,0,'vishal','2025-10-21 15:00:00','vishal','2025-10-20 19:39:00','vishal','2025-10-21 15:10:58'),(117,0,0,1294,79,0,'2025-10-21','12:30:00','2025-10-23','20:30:00','Y','B0006','RC04','RC04','N',0,0,0,'vishal','2025-10-23 20:30:00','vishal','2025-10-21 12:44:22','vishal','2025-10-23 20:06:32'),(118,0,0,1293,78,0,'2025-10-21','12:30:00','2025-10-21','13:00:00','Y','B0013','RC03','RC03','N',0,0,0,'vishal','2025-10-21 13:00:00','vishal','2025-10-21 12:49:28','vishal','2025-10-21 13:07:13'),(119,0,0,1292,77,0,'2025-10-21','12:45:00','2025-10-23','08:00:00','Y','B0004','RC04','RC04','N',0,0,0,'vishal','2025-10-23 08:00:00','vishal','2025-10-21 13:04:55','vishal','2025-10-23 08:43:26'),(120,0,0,1293,78,0,'2025-10-21','13:00:00','2025-10-21','18:45:00','Y','B0005','RC04','RC04','N',0,0,0,'vishal','2025-10-21 18:45:00','vishal','2025-10-21 13:07:13','vishal','2025-10-21 18:48:47'),(121,0,0,1296,81,951,'2025-10-21','13:45:00','2025-10-23','11:15:00','Y','B0007','RC04','RC04','N',0,0,0,'vishal','2025-10-23 11:15:00','vishal','2025-10-21 14:01:59','vishal','2025-10-23 11:25:52'),(122,0,0,1293,78,0,'2025-10-21','18:45:00','2025-10-28','11:30:00','Y','B0003','RC04','RC04','N',0,0,0,'riya','2025-10-28 11:30:00','vishal','2025-10-21 18:48:47','riya','2025-10-28 11:38:30'),(123,0,0,489,38,0,'2025-10-21','19:30:00','2025-10-25','19:00:00','Y','B0011','RC03','RC03','N',0,0,0,'riya','2025-10-25 19:00:00','vishal','2025-10-21 19:31:56','riya','2025-10-25 19:02:35'),(124,0,0,1298,82,0,'2025-10-22','23:30:00','2025-10-28','12:50:00','Y','B0013','RC03','RC03','N',0,0,0,'riya','2025-10-28 12:50:00','vishal','2025-10-23 10:39:29','riya','2025-10-28 13:13:59'),(125,0,0,1296,81,951,'2025-10-23','11:15:00','2025-10-25','13:00:00','Y','B0005','RC04','RC04','N',0,0,0,'vishal','2025-10-25 13:00:00','vishal','2025-10-23 11:25:52','vishal','2025-10-25 13:01:06'),(126,0,0,1339,83,1067,'2025-10-23','13:15:00','2025-10-24','11:30:00','Y','B0012','RC03','RC03','N',0,0,0,'riya','2025-10-24 11:30:00','vishal','2025-10-23 13:17:40','riya','2025-10-24 11:30:41'),(127,0,0,1341,84,1004,'2025-10-23','13:30:00','2025-10-24','11:30:00','Y','B0014','RC03','RC03','N',0,0,0,'riya','2025-10-24 11:30:00','vishal','2025-10-23 13:31:53','riya','2025-10-24 11:29:11'),(128,0,0,1362,85,0,'2025-10-23','19:15:00','2025-10-24','09:30:00','Y','B0004','RC04','RC04','N',0,0,0,'riya','2025-10-24 09:30:00','vishal','2025-10-23 19:30:53','riya','2025-10-24 09:35:28'),(129,0,0,1363,86,0,'2025-10-23','20:00:00','2025-10-24','09:30:00','Y','B0002','RC04','RC04','N',0,0,0,'riya','2025-10-24 09:30:00','vishal','2025-10-23 20:20:17','riya','2025-10-24 09:35:50'),(130,0,0,1362,85,0,'2025-10-24','09:30:00','2025-10-25','10:15:00','Y','B0006','RC04','RC04','N',0,0,0,'riya','2025-10-25 10:15:00','riya','2025-10-24 09:35:28','riya','2025-10-25 10:18:05'),(131,0,0,1363,86,0,'2025-10-24','09:30:00','2025-10-29','18:20:00','Y','B0004','RC04','RC04','N',0,0,0,'vishal','2025-10-29 18:20:00','riya','2025-10-24 09:35:50','vishal','2025-10-29 18:26:18'),(132,0,0,1369,87,0,'2025-10-24','09:30:00','2025-10-24','10:30:00','Y','B0002','RC04','RC04','N',0,0,0,'riya','2025-10-24 10:30:00','riya','2025-10-24 09:36:43','riya','2025-10-24 10:35:17'),(133,0,0,1369,87,0,'2025-10-24','10:30:00','2025-10-24','10:00:00','Y','B0007','RC04','RC04','N',0,0,0,'riya','2025-10-24 10:00:00','riya','2025-10-24 10:35:17','riya','2025-10-24 20:15:33'),(134,0,0,1405,88,1140,'2025-10-24','14:47:00','2025-10-24','17:45:00','Y','B0014','RC03','RC03','N',0,0,0,'riya','2025-10-24 17:45:00','riya','2025-10-24 14:48:00','riya','2025-10-24 17:51:27'),(135,0,0,1405,88,1140,'2025-10-24','17:45:00','2025-10-24','23:30:00','Y','B0002','RC04','RC04','N',0,0,0,'riya','2025-10-24 23:30:00','riya','2025-10-24 17:51:27','riya','2025-10-24 23:45:15'),(136,0,0,1434,89,1002,'2025-10-24','19:18:00','2025-10-26','12:05:00','Y','B0014','RC03','RC03','N',0,0,0,'riya','2025-10-26 12:05:00','riya','2025-10-24 19:18:55','riya','2025-10-26 12:29:54'),(137,0,0,1437,90,1134,'2025-10-24','19:47:00','2025-10-27','18:05:00','Y','B0015','RC03','RC03','N',0,0,0,'riya','2025-10-27 18:05:00','riya','2025-10-24 19:49:15','riya','2025-10-27 18:08:24'),(138,0,0,1369,87,0,'2025-10-24','10:00:00','2025-10-26','09:10:00','Y','B0008','RC04','RC04','N',0,0,0,'riya','2025-10-26 09:10:00','riya','2025-10-24 20:15:33','riya','2025-10-26 10:20:14'),(139,0,0,1438,91,1139,'2025-10-24','20:16:00','2025-10-24','22:00:00','Y','B0007','RC04','RC04','N',0,0,0,'riya','2025-10-24 22:00:00','riya','2025-10-24 20:17:57','riya','2025-10-25 09:57:47'),(140,0,0,1405,88,1140,'2025-10-24','23:30:00','2025-10-25','10:15:00','Y','B0021','RC07','RC07','N',0,0,0,'riya','2025-10-25 10:15:00','riya','2025-10-24 23:45:15','riya','2025-10-25 10:10:20'),(141,0,0,1443,92,1149,'2025-10-25','09:37:00','2025-10-27','12:30:00','Y','B0002','RC04','RC04','N',0,0,0,'riya','2025-10-27 12:30:00','riya','2025-10-25 09:39:47','riya','2025-10-27 13:11:28'),(142,0,0,1438,91,1139,'2025-10-24','22:00:00','2025-10-24','22:00:00','Y','B0012','RC03','RC03','N',0,0,0,'riya','2025-10-24 22:00:00','riya','2025-10-25 09:57:47','riya','2025-10-25 10:10:57'),(143,0,0,1405,88,1140,'2025-10-25','10:15:00','2025-10-25','14:45:00','Y','B0017','RC03','RC03','N',0,0,0,'riya','2025-10-25 14:45:00','riya','2025-10-25 10:10:20','riya','2025-10-25 12:31:24'),(144,0,0,1438,91,1139,'2025-10-24','22:00:00','2025-10-25','11:45:00','Y','B0019','RC03','RC03','N',0,0,0,'riya','2025-10-25 11:45:00','riya','2025-10-25 10:10:57','riya','2025-10-25 14:22:05'),(145,0,0,1438,91,1139,'2025-10-25','11:45:00','2025-10-27','14:45:00','Y','B0021','RC07','RC07','N',0,0,0,'riya','2025-10-27 14:45:00','riya','2025-10-25 14:22:05','riya','2025-10-27 14:48:00'),(146,0,0,1501,93,1156,'2025-10-25','19:22:00','2025-10-27','11:45:00','Y','B0022','RC07','RC07','N',0,0,0,'riya','2025-10-27 11:45:00','riya','2025-10-25 19:24:03','riya','2025-10-27 11:42:40'),(147,0,0,1504,94,0,'2025-10-25','23:00:00','2025-10-26','19:45:00','Y','B0023','RC07','RC07','N',0,0,0,'riya','2025-10-26 19:45:00','riya','2025-10-26 10:43:28','riya','2025-10-26 19:57:10'),(148,0,0,1505,95,0,'2025-10-26','11:15:00','2025-10-27','11:30:00','Y','B0011','RC03','RC03','N',0,0,0,'riya','2025-10-27 11:30:00','riya','2025-10-26 11:27:14','riya','2025-10-27 11:54:30'),(149,0,0,1506,96,184,'2025-10-26','12:17:00','2025-10-27','21:15:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-10-27 21:15:00','riya','2025-10-26 12:18:42','vishal','2025-10-27 21:17:31'),(150,0,0,1504,94,0,'2025-10-26','19:45:00','2025-10-27','12:45:00','Y','B0006','RC04','RC04','N',0,0,0,'riya','2025-10-27 12:45:00','riya','2025-10-26 19:57:10','riya','2025-10-27 13:07:57'),(151,0,0,1519,97,1133,'2025-10-27','09:57:00','2025-10-27','17:00:00','Y','B0014','RC03','RC03','N',0,0,0,'riya','2025-10-27 17:00:00','riya','2025-10-27 09:58:19','riya','2025-10-27 16:36:58'),(152,0,0,1536,98,1223,'2025-10-27','10:48:00','2025-10-29','11:00:00','Y','B0012','RC03','RC03','N',0,0,0,'riya','2025-10-29 11:00:00','riya','2025-10-27 10:49:47','riya','2025-10-29 11:17:57'),(153,0,0,1563,99,0,'2025-10-27','11:25:00','2025-10-29','17:45:00','Y','B0016','RC03','RC03','N',0,0,0,'vishal','2025-10-29 17:45:00','riya','2025-10-27 11:28:57','vishal','2025-10-29 18:06:39'),(154,0,0,1501,93,1156,'2025-10-27','11:45:00','2025-10-29','20:15:00','Y','B0005','RC04','RC04','N',0,0,0,'vishal','2025-10-29 20:15:00','riya','2025-10-27 11:42:40','vishal','2025-10-29 20:22:18'),(155,0,0,1572,100,1235,'2025-10-27','11:43:00','2025-10-27','12:30:00','Y','B0007','RC04','RC04','N',0,0,0,'riya','2025-10-27 12:30:00','riya','2025-10-27 11:44:28','riya','2025-10-27 12:31:51'),(156,0,0,1572,100,1235,'2025-10-27','12:30:00','2025-10-27','12:30:00','Y','B0008','RC04','RC04','N',0,0,0,'riya','2025-10-27 12:30:00','riya','2025-10-27 12:31:51','riya','2025-10-28 13:46:33'),(157,0,0,1601,101,627,'2025-10-27','09:30:00','2025-10-27','22:30:00','Y','B0022','RC07','RC07','N',0,0,0,'vishal','2025-10-27 22:30:00','riya','2025-10-27 13:19:46','vishal','2025-10-27 21:08:45'),(158,0,0,1438,91,1139,'2025-10-27','14:45:00','2025-10-29','11:30:00','Y','B0006','RC04','RC04','N',0,0,0,'riya','2025-10-29 11:30:00','riya','2025-10-27 14:48:00','riya','2025-10-29 12:02:04'),(159,0,0,1660,102,0,'2025-10-27','19:45:00','2025-10-29','15:00:00','Y','B0021','RC07','RC07','N',0,0,0,'riya','2025-10-29 15:00:00','vishal','2025-10-27 20:06:14','riya','2025-10-29 15:07:08'),(160,0,0,1601,101,627,'2025-10-27','22:30:00','2025-10-28','05:00:00','Y','B0002','RC04','RC04','N',0,0,0,'riya','2025-10-28 05:00:00','vishal','2025-10-27 21:08:45','riya','2025-10-28 11:50:37'),(161,0,0,1601,101,627,'2025-10-28','05:00:00','2025-10-28','15:30:00','Y','B0022','RC07','RC07','N',0,0,0,'riya','2025-10-28 15:30:00','riya','2025-10-28 11:50:37','riya','2025-10-28 15:15:40'),(162,0,0,1700,103,1307,'2025-10-28','11:45:00','2025-10-30','11:50:00','Y','B0002','RC04','RC04','N',0,0,0,'riya','2025-10-30 11:50:00','riya','2025-10-28 11:51:11','riya','2025-10-30 11:53:15'),(163,0,0,414,25,0,'2025-10-28','12:00:00','2025-11-01','12:15:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-11-01 12:15:00','riya','2025-10-28 11:59:10','vishal','2025-11-01 13:17:35'),(164,0,0,1711,104,1343,'2025-10-28','12:30:00','2025-10-28','19:00:00','Y','B0011','RC03','RC03','N',0,0,0,'riya','2025-10-28 19:00:00','riya','2025-10-28 12:28:35','riya','2025-10-29 10:25:20'),(165,0,0,1572,100,1235,'2025-10-27','12:30:00','2025-10-29','12:15:00','Y','B0007','RC04','RC04','N',0,0,0,'riya','2025-10-29 12:15:00','riya','2025-10-28 13:46:33','riya','2025-10-29 12:37:39'),(166,0,0,1723,105,1368,'2025-10-28','13:50:00','2025-10-28','18:00:00','Y','B0008','RC04','RC04','N',0,0,0,'riya','2025-10-28 18:00:00','riya','2025-10-28 13:48:54','riya','2025-10-29 09:39:41'),(167,0,0,1724,106,0,'2025-10-28','14:00:00','2025-10-29','14:40:00','Y','B0023','RC07','RC07','N',0,0,0,'riya','2025-10-29 14:40:00','riya','2025-10-28 14:05:20','riya','2025-10-29 14:46:17'),(168,0,0,1727,107,1363,'2025-10-28','15:26:00','2025-11-01','13:00:00','Y','B0003','RC04','RC04','N',0,0,0,'vishal','2025-11-01 13:00:00','riya','2025-10-28 15:29:16','vishal','2025-11-01 13:02:51'),(169,0,0,1723,105,1368,'2025-10-28','18:00:00','2025-10-29','18:00:00','Y','B0014','RC03','RC03','N',0,0,0,'vishal','2025-10-29 18:00:00','riya','2025-10-29 09:39:41','vishal','2025-10-29 18:14:17'),(170,0,0,1782,108,0,'2025-10-29','06:30:00','2025-10-29','20:45:00','Y','B0008','RC04','RC04','N',0,0,0,'vishal','2025-10-29 20:45:00','riya','2025-10-29 09:40:51','vishal','2025-10-29 20:46:37'),(171,0,0,1711,104,1343,'2025-10-28','19:00:00','2025-10-29','20:45:00','Y','B0022','RC07','RC07','N',0,0,0,'riya','2025-10-29 20:45:00','riya','2025-10-29 10:25:20','riya','2025-10-30 11:41:40'),(172,0,0,1660,102,0,'2025-10-29','15:00:00','2025-10-31','12:00:00','Y','B0006','RC04','RC04','N',0,0,0,'vishal','2025-10-31 12:00:00','riya','2025-10-29 15:07:08','vishal','2025-10-31 12:13:49'),(173,0,0,1723,105,1368,'2025-10-29','18:00:00','2025-10-30','15:45:00','Y','B0021','RC07','RC07','N',0,0,0,'riya','2025-10-30 15:45:00','vishal','2025-10-29 18:14:17','riya','2025-10-30 15:47:08'),(174,0,0,1782,108,0,'2025-10-29','20:45:00','2025-11-01','11:20:00','Y','B0004','RC04','RC04','N',0,0,0,'vishal','2025-11-01 11:20:00','vishal','2025-10-29 20:46:37','vishal','2025-11-01 11:58:02'),(175,0,0,1888,109,1454,'2025-10-30','09:40:00','2025-10-31','21:00:00','Y','B0012','RC03','RC03','N',0,0,0,'riya','2025-10-31 21:00:00','riya','2025-10-30 09:40:40','riya','2025-10-31 21:13:25'),(176,0,0,1711,104,1343,'2025-10-29','20:45:00','2025-11-04','17:00:00','Y','B0011','RC03','RC03','N',0,0,0,'vishal','2025-11-04 17:00:00','riya','2025-10-30 11:41:40','vishal','2025-11-04 17:09:01'),(177,0,0,1934,110,0,'2025-10-30','12:40:00','2025-10-30','18:30:00','Y','B0022','RC07','RC07','N',0,0,0,'riya','2025-10-30 18:30:00','riya','2025-10-30 12:43:19','riya','2025-10-30 18:33:36'),(178,0,0,1936,111,1514,'2025-10-30','12:50:00','2025-11-01','15:00:00','Y','B0023','RC07','RC07','N',0,0,0,'vishal','2025-11-01 15:00:00','riya','2025-10-30 12:55:32','vishal','2025-11-01 15:17:16'),(179,0,0,1940,112,1532,'2025-10-30','13:52:00','2025-11-01','19:30:00','Y','B0005','RC04','RC04','N',0,0,0,'riya','2025-11-01 19:30:00','riya','2025-10-30 13:55:03','riya','2025-11-01 19:43:30'),(180,0,0,1941,113,0,'2025-10-30','13:56:00','2025-11-03','12:00:00','Y','B0013','RC03','RC03','N',0,0,0,'vishal','2025-11-03 12:00:00','riya','2025-10-30 13:58:09','vishal','2025-11-03 12:23:58'),(181,0,0,1942,114,0,'2025-10-30','14:00:00','2025-10-31','14:30:00','Y','B0002','RC04','RC04','N',0,0,0,'vishal','2025-10-31 14:30:00','riya','2025-10-30 14:21:16','vishal','2025-10-31 12:14:59'),(182,0,0,1723,105,1368,'2025-10-30','15:45:00','2025-10-30','16:00:00','Y','B0008','RC04','RC04','N',0,0,0,'riya','2025-10-30 16:00:00','riya','2025-10-30 15:47:08','riya','2025-10-30 16:01:55'),(183,0,0,1723,105,1368,'2025-10-30','16:00:00','2025-11-03','12:00:00','Y','B0015','RC03','RC03','N',0,0,0,'vishal','2025-11-03 12:00:00','riya','2025-10-30 16:01:55','vishal','2025-11-03 12:35:03'),(184,0,0,1988,115,0,'2025-10-30','20:30:00','2025-10-31','17:30:00','Y','B0014','RC03','RC03','N',0,0,0,'vishal','2025-10-31 17:30:00','vishal','2025-10-30 22:22:38','vishal','2025-10-31 17:31:35'),(185,0,0,1995,116,1206,'2025-10-31','09:15:00','2025-10-31','20:00:00','Y','B0008','RC04','RC04','N',0,0,0,'vishal','2025-10-31 20:00:00','vishal','2025-10-31 09:47:33','vishal','2025-11-01 11:00:07'),(186,0,0,2018,117,0,'2025-10-31','10:45:00','2025-10-31','21:00:00','Y','B0021','RC07','RC07','N',0,0,0,'riya','2025-10-31 21:00:00','vishal','2025-10-31 11:04:58','riya','2025-11-02 20:15:07'),(187,0,0,2027,118,0,'2025-10-31','07:00:00','2025-10-31','10:30:00','Y','B0007','RC04','RC04','N',0,0,0,'vishal','2025-10-31 10:30:00','vishal','2025-10-31 11:30:00','vishal','2025-10-31 17:57:47'),(188,0,0,2065,119,1635,'2025-10-31','14:34:00','2025-11-02','09:45:00','Y','B0016','RC03','RC03','N',0,0,0,'riya','2025-11-02 09:45:00','vishal','2025-10-31 14:38:07','riya','2025-11-02 09:39:34'),(189,0,0,2027,118,0,'2025-10-31','10:30:00','2025-11-02','11:00:00','Y','B0022','RC07','RC07','N',0,0,0,'riya','2025-11-02 11:00:00','vishal','2025-10-31 17:57:47','riya','2025-11-02 11:04:19'),(190,0,0,2135,120,0,'2025-10-31','20:45:00','2025-11-05','19:00:00','Y','B0024','RC07','RC07','N',0,0,0,'vishal','2025-11-05 19:00:00','riya','2025-10-31 21:08:03','vishal','2025-11-06 14:43:01'),(191,0,0,1995,116,1206,'2025-10-31','20:00:00','2025-10-31','14:00:00','Y','B0025','RC07','RC07','N',0,0,0,'vishal','2025-10-31 14:00:00','vishal','2025-11-01 11:00:07','vishal','2025-11-01 11:02:34'),(192,0,0,1995,116,1206,'2025-10-31','14:00:00','2025-11-01','11:30:00','Y','B0026','RC07','RC07','N',0,0,0,'vishal','2025-11-01 11:30:00','vishal','2025-11-01 11:02:34','vishal','2025-11-01 11:03:50'),(193,0,0,1995,116,1206,'2025-11-01','11:30:00','2025-11-02','17:20:00','Y','B0008','RC04','RC04','N',0,0,0,'vishal','2025-11-02 17:20:00','vishal','2025-11-01 11:03:50','vishal','2025-11-03 18:09:49'),(194,0,0,2195,121,0,'2025-11-01','12:00:00','2025-11-02','16:00:00','Y','B0025','RC07','RC07','N',0,0,0,'riya','2025-11-02 16:00:00','vishal','2025-11-01 12:19:42','riya','2025-11-02 16:12:26'),(195,0,0,2214,122,0,'2025-11-01','18:00:00','2025-11-02','17:20:00','Y','B0012','RC03','RC03','N',0,0,0,'riya','2025-11-02 17:20:00','vishal','2025-11-01 18:17:46','riya','2025-11-02 17:33:19'),(196,0,0,1940,112,1532,'2025-11-01','19:30:00','2025-11-01','20:15:00','Y','B0001','RC04','RC04','N',0,0,0,'riya','2025-11-01 20:15:00','riya','2025-11-01 19:43:30','riya','2025-11-01 20:23:18'),(197,0,0,2219,123,0,'2025-11-01','20:00:00','2025-11-01','20:19:00','Y','B0005','RC04','RC04','N',0,0,0,'riya','2025-11-01 20:19:00','riya','2025-11-01 19:52:30','riya','2025-11-01 20:22:47'),(198,0,0,1940,112,1532,'2025-11-01','20:15:00','2025-11-03','12:00:00','Y','B0005','RC04','RC04','N',0,0,0,'vishal','2025-11-03 12:00:00','riya','2025-11-01 20:23:18','vishal','2025-11-03 12:30:06'),(199,0,0,2226,124,0,'2025-11-02','13:00:00','2025-11-03','18:55:00','Y','B0014','RC03','RC03','N',0,0,0,'vishal','2025-11-03 18:55:00','riya','2025-11-02 13:04:43','vishal','2025-11-03 19:01:30'),(200,0,0,2195,121,0,'2025-11-02','16:00:00','2025-11-04','13:00:00','Y','B0019','RC03','RC03','N',0,0,0,'vishal','2025-11-04 13:00:00','riya','2025-11-02 16:12:26','vishal','2025-11-04 13:03:14'),(201,0,0,2018,117,0,'2025-10-31','21:00:00','2025-11-05','09:00:00','Y','B0006','RC04','RC04','N',0,0,0,'riya','2025-11-05 09:00:00','riya','2025-11-02 20:15:07','riya','2025-11-05 09:26:03'),(202,0,0,2240,125,1719,'2025-11-03','09:54:00','2025-11-04','11:15:00','Y','B0017','RC03','RC03','N',0,0,0,'vishal','2025-11-04 11:15:00','vishal','2025-11-03 09:57:51','vishal','2025-11-04 11:16:02'),(203,0,0,2264,126,1658,'2025-11-02','23:00:00','2025-11-03','20:00:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-11-03 20:00:00','vishal','2025-11-03 11:07:01','vishal','2025-11-03 19:34:36'),(204,0,0,2298,127,0,'2025-11-03','13:00:00','2025-11-07','11:50:00','Y','B0003','RC04','RC04','N',0,0,0,'riya','2025-11-07 11:50:00','vishal','2025-11-03 13:04:41','riya','2025-11-07 12:09:36'),(205,0,0,2264,126,1658,'2025-11-03','20:00:00','2025-11-04','18:50:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-11-04 18:50:00','vishal','2025-11-03 19:34:36','vishal','2025-11-04 19:01:19'),(206,0,0,2392,128,0,'2025-11-04','12:00:00','2025-11-05','19:30:00','Y','B0002','RC04','RC04','N',0,0,0,'vishal','2025-11-05 19:30:00','vishal','2025-11-04 12:33:11','vishal','2025-11-05 19:56:18'),(207,0,0,2195,121,0,'2025-11-04','13:00:00','2025-11-08','09:00:00','Y','B0014','RC03','RC03','N',0,0,0,'vishal','2025-11-08 09:00:00','vishal','2025-11-04 13:03:14','vishal','2025-11-08 08:57:46'),(208,0,0,2395,129,0,'2025-11-04','16:15:00','2025-11-06','09:30:00','Y','B0004','RC04','RC04','N',0,0,0,'vishal','2025-11-06 09:30:00','vishal','2025-11-04 16:37:02','vishal','2025-11-06 12:41:07'),(209,0,0,2437,130,0,'2025-11-05','09:30:00','2025-11-05','21:00:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-11-05 21:00:00','riya','2025-11-05 09:29:10','vishal','2025-11-05 21:00:40'),(210,0,0,2555,131,0,'2025-11-06','09:20:00','2025-11-07','18:30:00','Y','B0001','RC04','RC04','N',0,0,0,'riya','2025-11-07 18:30:00','vishal','2025-11-06 09:26:01','riya','2025-11-07 18:55:10'),(211,0,0,2556,132,0,'2025-11-06','09:30:00','2025-11-07','10:15:00','Y','B0002','RC04','RC04','N',0,0,0,'riya','2025-11-07 10:15:00','vishal','2025-11-06 09:37:05','riya','2025-11-07 10:36:39'),(212,0,0,2561,133,0,'2025-11-06','10:00:00','2025-11-07','10:20:00','Y','B0005','RC04','RC04','N',0,0,0,'riya','2025-11-07 10:20:00','vishal','2025-11-06 10:07:28','riya','2025-11-07 10:35:46'),(213,0,0,2599,134,0,'2025-11-06','13:00:00','2025-11-09','10:30:00','Y','B0004','RC04','RC04','N',0,0,0,'riya','2025-11-09 10:30:00','vishal','2025-11-06 13:17:15','riya','2025-11-09 10:38:13'),(214,0,0,2135,120,0,'2025-11-05','19:00:00','2025-11-07','12:30:00','Y','B0006','RC04','RC04','N',0,0,0,'riya','2025-11-07 12:30:00','vishal','2025-11-06 14:43:01','riya','2025-11-07 12:50:45'),(215,0,0,2602,135,0,'2025-11-06','15:00:00','2025-11-08','11:35:00','Y','B0008','RC04','RC04','N',0,0,0,'vishal','2025-11-08 11:35:00','vishal','2025-11-06 15:10:23','vishal','2025-11-08 11:47:55'),(216,0,0,2624,136,0,'2025-11-06','18:00:00','2025-11-06','19:00:00','Y','B0013','RC03','RC03','N',0,0,0,'vishal','2025-11-06 19:00:00','vishal','2025-11-06 18:22:07','vishal','2025-11-06 19:04:24'),(217,0,0,2624,136,0,'2025-11-06','19:00:00','2025-11-07','18:30:00','Y','B0007','RC04','RC04','N',0,0,0,'riya','2025-11-07 18:30:00','vishal','2025-11-06 19:04:24','riya','2025-11-07 18:14:37'),(218,0,0,2640,137,0,'2025-09-28','09:57:00','2025-10-02','16:10:00','Y','B0013','RC03','RC03','N',0,0,0,'vishal','2025-10-02 16:10:00','vishal','2025-11-06 19:15:31','vishal','2025-11-06 19:34:41'),(219,0,0,2691,138,2073,'2025-11-07','13:33:00','2025-11-11','11:55:00','Y','B0011','RC03','RC03','N',0,0,0,'riya','2025-11-11 11:55:00','riya','2025-11-07 13:35:40','riya','2025-11-11 12:02:01'),(220,0,0,2624,136,0,'2025-11-07','18:30:00','2025-11-08','15:00:00','Y','B0006','RC04','RC04','N',0,0,0,'vishal','2025-11-08 15:00:00','riya','2025-11-07 18:14:37','vishal','2025-11-08 15:10:54'),(221,0,0,2747,139,1976,'2025-11-08','09:45:00','2025-11-09','11:15:00','Y','B0013','RC03','RC03','N',0,0,0,'riya','2025-11-09 11:15:00','vishal','2025-11-08 09:57:37','riya','2025-11-09 11:56:31'),(222,0,0,2793,140,2137,'2025-11-08','13:15:00','2025-11-08','19:00:00','Y','B0014','RC03','RC03','N',0,0,0,'riya','2025-11-08 19:00:00','vishal','2025-11-08 13:28:34','riya','2025-11-08 19:20:25'),(223,0,0,2624,136,0,'2025-11-08','15:00:00','2025-11-08','16:00:00','Y','B0007','RC04','RC04','N',0,0,0,'riya','2025-11-08 16:00:00','vishal','2025-11-08 15:10:54','riya','2025-11-08 19:21:03'),(224,0,0,2801,141,0,'2025-11-08','18:00:00','2025-11-09','11:45:00','Y','B0015','RC03','RC03','N',0,0,0,'riya','2025-11-09 11:45:00','vishal','2025-11-08 17:55:37','riya','2025-11-09 12:46:36'),(225,0,0,2806,142,0,'2025-11-08','19:00:00','2025-11-09','20:00:00','Y','B0006','RC04','RC04','N',0,0,0,'riya','2025-11-09 20:00:00','riya','2025-11-08 19:11:39','riya','2025-11-09 17:42:53'),(226,0,0,2793,140,2137,'2025-11-08','19:00:00','2025-11-08','23:00:00','Y','B0022','RC07','RC07','N',0,0,0,'riya','2025-11-08 23:00:00','riya','2025-11-08 19:20:25','riya','2025-11-09 10:03:33'),(227,0,0,2624,136,0,'2025-11-08','16:00:00','2025-11-09','10:35:00','Y','B0001','RC04','RC04','N',0,0,0,'riya','2025-11-09 10:35:00','riya','2025-11-08 19:21:03','riya','2025-11-09 10:38:58'),(228,0,0,2811,143,0,'2025-11-09','01:00:00','2025-11-09','12:45:00','Y','B0002','RC04','RC04','N',0,0,0,'riya','2025-11-09 12:45:00','riya','2025-11-09 08:43:20','riya','2025-11-09 12:51:53'),(229,0,0,2793,140,2137,'2025-11-08','23:00:00','2025-11-10','11:10:00','Y','B0014','RC03','RC03','N',0,0,0,'riya','2025-11-10 11:10:00','riya','2025-11-09 10:03:33','riya','2025-11-10 11:17:34'),(230,0,0,2811,143,0,'2025-11-09','12:45:00','2025-11-15','17:30:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-11-15 17:30:00','riya','2025-11-09 12:51:53','vishal','2025-11-15 17:30:53'),(231,0,0,2825,144,0,'2025-11-10','09:30:00','2025-11-11','10:15:00','Y','B0006','RC04','RC04','N',0,0,0,'riya','2025-11-11 10:15:00','riya','2025-11-10 09:46:33','riya','2025-11-11 10:01:39'),(232,0,0,2876,145,0,'2025-11-10','13:00:00','2025-11-12','14:00:00','Y','B0022','RC07','RC07','N',0,0,0,'vishal','2025-11-12 14:00:00','riya','2025-11-10 13:10:07','vishal','2025-11-12 13:50:45'),(233,0,0,2879,146,0,'2025-11-10','15:30:00','2025-11-14','21:00:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-11-14 21:00:00','riya','2025-11-10 15:31:27','vishal','2025-11-14 21:04:15'),(234,0,0,2919,147,951,'2025-11-10','21:00:00','2025-11-13','17:40:00','Y','B0002','RC04','RC04','N',0,0,0,'riya','2025-11-13 17:40:00','riya','2025-11-10 21:14:10','riya','2025-11-13 17:40:48'),(235,0,0,2994,148,0,'2025-11-11','12:58:00','2025-11-12','11:30:00','Y','B0012','RC03','RC03','N',0,0,0,'vishal','2025-11-12 11:30:00','riya','2025-11-11 12:59:46','vishal','2025-11-12 11:28:46'),(236,0,0,3027,149,2247,'2025-11-11','14:30:00','2025-11-17','10:00:00','Y','B0011','RC03','RC03','N',0,0,0,'riya','2025-11-17 10:00:00','vishal','2025-11-11 18:14:12','riya','2025-11-17 10:00:17'),(237,0,0,3113,150,0,'2025-11-12','13:00:00','2025-11-12','18:00:00','Y','B0013','RC03','RC03','N',0,0,0,'riya','2025-11-12 18:00:00','vishal','2025-11-12 13:44:51','riya','2025-11-13 09:08:50'),(238,0,0,2876,145,0,'2025-11-12','14:00:00','2025-11-14','19:15:00','Y','B0012','RC03','RC03','N',0,0,0,'vishal','2025-11-14 19:15:00','vishal','2025-11-12 13:50:45','vishal','2025-11-14 19:18:17'),(239,0,0,3114,151,2310,'2025-11-12','14:30:00','2025-11-13','15:30:00','Y','B0006','RC04','RC04','N',0,0,0,'riya','2025-11-13 15:30:00','vishal','2025-11-12 15:10:16','riya','2025-11-13 12:33:55'),(240,0,0,3176,152,0,'2025-11-12','19:00:00','2025-11-15','09:00:00','Y','B0022','RC07','RC07','N',0,0,0,'riya','2025-11-15 09:00:00','vishal','2025-11-12 19:12:44','riya','2025-11-15 09:21:34'),(241,0,0,3190,153,2329,'2025-11-12','20:15:00','2025-11-15','11:10:00','Y','B0015','RC03','RC03','N',0,0,0,'riya','2025-11-15 11:10:00','vishal','2025-11-12 20:29:31','riya','2025-11-15 11:12:26'),(242,0,0,3113,150,0,'2025-11-12','18:00:00','2025-11-13','14:30:00','Y','B0023','RC07','RC07','N',0,0,0,'riya','2025-11-13 14:30:00','riya','2025-11-13 09:08:50','riya','2025-11-13 14:37:38'),(244,0,0,3196,155,0,'2025-11-13','03:00:00','2025-11-13','13:00:00','Y','B0025','RC07','RC07','N',0,0,0,'riya','2025-11-13 01:00:00','riya','2025-11-13 09:43:44','riya','2025-11-13 13:18:52'),(245,0,0,3113,150,0,'2025-11-13','14:30:00','2025-11-15','11:20:00','Y','B0013','RC03','RC03','N',0,0,0,'riya','2025-11-15 11:20:00','riya','2025-11-13 14:37:38','riya','2025-11-15 11:25:24'),(246,0,0,3294,156,0,'2025-11-13','19:00:00','2025-11-14','21:00:00','Y','B0023','RC07','RC07','N',0,0,0,'vishal','2025-11-14 21:00:00','vishal','2025-11-13 19:35:15','vishal','2025-11-14 21:05:19'),(247,0,0,3299,157,0,'2025-11-14','09:30:00','2025-11-16','07:55:00','Y','B0014','RC03','RC03','N',0,0,0,'vishal','2025-11-16 07:55:00','riya','2025-11-14 09:53:21','vishal','2025-11-16 07:48:27'),(248,0,0,3301,158,0,'2025-11-14','00:05:00','2025-11-15','11:00:00','Y','B0024','RC07','RC07','N',0,0,0,'riya','2025-11-15 11:00:00','riya','2025-11-14 10:17:30','riya','2025-11-15 11:02:27'),(249,0,0,3348,159,0,'2025-11-14','13:36:00','2025-11-22','13:00:00','Y','B0016','RC03','RC03','N',0,0,0,'riya','2025-11-22 13:00:00','riya','2025-11-14 13:38:55','riya','2025-11-22 13:00:26'),(250,0,0,2879,146,0,'2025-11-14','21:00:00','2025-11-16','11:30:00','Y','B0006','RC04','RC04','N',0,0,0,'riya','2025-11-16 11:30:00','vishal','2025-11-14 21:04:15','riya','2025-11-16 11:37:33'),(251,0,0,3294,156,0,'2025-11-14','21:00:00','2025-11-15','19:00:00','Y','B0005','RC04','RC04','N',0,0,0,'vishal','2025-11-15 19:00:00','vishal','2025-11-14 21:05:19','vishal','2025-11-15 18:59:57'),(252,0,0,3405,160,0,'2025-11-15','10:00:00','2025-11-18','22:30:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-11-18 22:30:00','riya','2025-11-15 10:02:28','vishal','2025-11-18 23:05:53'),(253,0,0,3301,158,0,'2025-11-15','11:00:00','2025-11-16','19:35:00','Y','B0012','RC03','RC03','N',0,0,0,'riya','2025-11-16 19:35:00','riya','2025-11-15 11:02:27','riya','2025-11-16 19:41:00'),(254,0,0,2811,143,0,'2025-11-15','17:30:00','2025-11-16','14:00:00','Y','B0022','RC07','RC07','N',0,0,0,'riya','2025-11-16 14:00:00','vishal','2025-11-15 17:30:53','riya','2025-11-16 14:09:48'),(255,0,0,3468,161,0,'2025-11-16','09:00:00','2025-11-17','12:00:00','Y','B0023','RC07','RC07','N',0,0,0,'riya','2025-11-17 12:00:00','riya','2025-11-16 10:20:48','riya','2025-11-17 12:01:02'),(256,0,0,3470,162,0,'2025-11-16','10:00:00','2025-11-17','12:15:00','Y','B0002','RC04','RC04','N',0,0,0,'riya','2025-11-17 12:15:00','riya','2025-11-16 10:34:04','riya','2025-11-17 12:48:47'),(257,0,0,2879,146,0,'2025-11-16','11:30:00','2025-11-20','15:00:00','Y','B0024','RC07','RC07','N',0,0,0,'vishal','2025-11-20 15:00:00','riya','2025-11-16 11:37:33','vishal','2025-11-20 17:34:21'),(258,0,0,2811,143,0,'2025-11-16','14:00:00','2025-11-20','10:30:00','Y','B0001','RC04','RC04','N',0,0,0,'riya','2025-11-20 10:30:00','riya','2025-11-16 14:09:48','riya','2025-11-20 10:37:01'),(259,0,0,3473,163,0,'2025-11-16','17:30:00','2025-11-19','10:30:00','Y','B0003','RC04','RC04','N',0,0,0,'vishal','2025-11-19 10:30:00','riya','2025-11-16 17:32:45','vishal','2025-11-19 18:47:41'),(260,0,0,3474,164,0,'2025-11-16','18:20:00','2025-11-18','12:00:00','Y','B0022','RC07','RC07','N',0,0,0,'riya','2025-11-18 12:00:00','riya','2025-11-16 18:19:04','riya','2025-11-18 12:03:38'),(261,0,0,3468,161,0,'2025-11-17','12:00:00','2025-11-20','12:15:00','Y','B0006','RC04','RC04','N',0,0,0,'riya','2025-11-20 12:15:00','riya','2025-11-17 12:01:02','riya','2025-11-20 12:55:34'),(262,0,0,3517,165,0,'2025-11-17','13:00:00','2025-11-19','13:00:00','Y','B0011','RC03','RC03','N',0,0,0,'vishal','2025-11-19 13:00:00','riya','2025-11-17 12:59:52','vishal','2025-11-19 18:48:17'),(263,0,0,3553,166,0,'2025-11-17','20:15:00','2025-11-19','14:10:00','Y','B0002','RC04','RC04','N',0,0,0,'riya','2025-11-19 14:10:00','vishal','2025-11-17 20:35:53','riya','2025-11-19 14:24:09'),(264,0,0,3566,167,0,'2025-11-18','11:00:00','2025-11-18','17:00:00','Y','B0015','RC03','RC03','N',0,0,0,'vishal','2025-11-18 17:00:00','riya','2025-11-18 10:55:38','vishal','2025-11-18 17:02:11'),(265,0,0,3474,164,0,'2025-11-18','12:00:00','2025-11-20','20:20:00','Y','B0004','RC04','RC04','N',0,0,0,'vishal','2025-11-20 20:20:00','riya','2025-11-18 12:03:38','vishal','2025-11-20 20:55:43'),(266,0,0,3591,168,0,'2025-11-18','13:00:00','2025-11-20','12:30:00','Y','B0022','RC07','RC07','N',0,0,0,'riya','2025-11-20 12:30:00','riya','2025-11-18 13:08:49','riya','2025-11-20 12:35:24'),(267,0,0,3594,169,0,'2025-11-18','13:15:00','2025-11-20','12:10:00','Y','B0019','RC03','RC03','N',0,0,0,'riya','2025-11-20 12:10:00','riya','2025-11-18 13:20:17','riya','2025-11-20 12:10:50'),(268,0,0,3595,170,0,'2025-11-18','13:15:00','2025-11-19','14:20:00','Y','B0020','RC03','RC03','N',0,0,0,'vishal','2025-11-19 14:20:00','riya','2025-11-18 13:22:06','vishal','2025-11-21 11:49:01'),(269,0,0,3566,167,0,'2025-11-18','17:00:00','2025-11-20','12:50:00','Y','B0014','RC03','RC03','N',0,0,0,'riya','2025-11-20 12:50:00','vishal','2025-11-18 17:02:11','riya','2025-11-20 13:25:05'),(270,0,0,3611,171,0,'2025-11-18','17:00:00','2025-11-20','12:00:00','Y','B0023','RC07','RC07','N',0,0,0,'riya','2025-11-20 12:00:00','vishal','2025-11-18 18:01:03','riya','2025-11-20 12:05:44'),(271,0,0,3621,172,0,'2025-11-18','21:30:00','2025-11-20','12:00:00','Y','B0025','RC07','RC07','N',0,0,0,'riya','2025-11-20 12:00:00','vishal','2025-11-18 22:02:28','riya','2025-11-20 12:05:06'),(272,0,0,3623,173,0,'2025-11-19','09:30:00','2025-11-20','11:25:00','Y','B0012','RC03','RC03','N',0,0,0,'riya','2025-11-20 11:25:00','riya','2025-11-19 09:28:36','riya','2025-11-20 11:34:28'),(273,0,0,3630,174,0,'2025-11-19','10:15:00','2025-11-21','11:30:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-11-21 11:30:00','riya','2025-11-19 10:17:01','vishal','2025-11-21 12:01:53'),(274,0,0,3641,175,0,'2025-11-19','10:50:00','2025-11-20','11:15:00','Y','B0008','RC04','RC04','N',0,0,0,'riya','2025-11-20 11:15:00','riya','2025-11-19 10:51:11','riya','2025-11-20 10:22:36'),(275,0,0,3473,163,0,'2025-11-19','10:30:00','2025-11-19','22:00:00','Y','B0026','RC07','RC07','N',0,0,0,'vishal','2025-11-19 22:00:00','vishal','2025-11-19 18:47:41','vishal','2025-11-19 21:19:20'),(276,0,0,3517,165,0,'2025-11-19','13:00:00','2025-11-19','13:00:00','Y','B0027','RC07','RC07','N',0,0,0,'riya','2025-11-19 13:00:00','vishal','2025-11-19 18:48:17','riya','2025-11-20 15:56:01'),(277,0,0,3473,163,0,'2025-11-19','22:00:00','2025-11-19','10:30:00','Y','B0003','RC04','RC04','N',0,0,0,'riya','2025-11-19 10:30:00','vishal','2025-11-19 21:19:20','riya','2025-11-20 16:00:27'),(278,0,0,3759,176,0,'2025-11-20','09:30:00','2025-11-20','18:25:00','Y','B0013','RC03','RC03','N',0,0,0,'vishal','2025-11-20 18:25:00','riya','2025-11-20 09:33:43','vishal','2025-11-20 19:01:29'),(279,0,0,3763,177,0,'2025-11-20','03:00:00','2025-11-20','20:30:00','Y','B0026','RC07','RC07','N',0,0,0,'vishal','2025-11-20 20:30:00','riya','2025-11-20 09:55:22','vishal','2025-11-20 19:42:14'),(280,0,0,3764,178,0,'2025-11-20','10:00:00','2025-11-21','14:30:00','Y','B0028','RC07','RC07','N',0,0,0,'vishal','2025-11-21 14:30:00','riya','2025-11-20 10:07:37','vishal','2025-11-21 14:43:30'),(281,0,0,3621,172,0,'2025-11-20','12:00:00','2025-11-23','10:15:00','Y','B0005','RC04','RC04','N',0,0,0,'riya','2025-11-23 10:15:00','riya','2025-11-20 12:05:06','riya','2025-11-23 10:27:54'),(282,0,0,3611,171,0,'2025-11-20','12:00:00','2025-11-24','13:00:00','Y','B0002','RC04','RC04','N',0,0,0,'vishal','2025-11-24 13:00:00','riya','2025-11-20 12:05:44','vishal','2025-11-25 15:20:53'),(283,0,0,3517,165,0,'2025-11-19','13:00:00','2025-11-23','11:00:00','Y','B0022','RC07','RC07','N',0,0,0,'riya','2025-11-23 11:00:00','riya','2025-11-20 15:56:01','riya','2025-11-23 10:54:54'),(284,0,0,3473,163,0,'2025-11-19','10:30:00','2025-11-19','21:30:00','Y','B0023','RC07','RC07','N',0,0,0,'riya','2025-11-19 21:30:00','riya','2025-11-20 16:00:27','riya','2025-11-20 16:01:21'),(285,0,0,3473,163,0,'2025-11-19','21:30:00','2025-11-23','12:25:00','Y','B0003','RC04','RC04','N',0,0,0,'riya','2025-11-23 12:25:00','riya','2025-11-20 16:01:21','riya','2025-11-23 12:44:13'),(286,0,0,2879,146,0,'2025-11-20','15:00:00','2025-11-28','20:00:00','Y','B0006','RC04','RC04','N',0,0,0,'riya','2025-11-28 20:00:00','vishal','2025-11-20 17:34:21','riya','2025-11-28 21:09:33'),(287,0,0,3763,177,0,'2025-11-20','20:30:00','2025-11-20','20:30:00','Y','B0011','RC03','RC03','N',0,0,0,'vishal','2025-11-20 20:30:00','vishal','2025-11-20 19:42:14','vishal','2025-11-20 19:42:49'),(288,0,0,3763,177,0,'2025-11-20','20:30:00','2025-11-21','18:30:00','Y','B0015','RC03','RC03','N',0,0,0,'vishal','2025-11-21 18:30:00','vishal','2025-11-20 19:42:49','vishal','2025-11-21 18:30:33'),(289,0,0,3861,179,0,'2025-11-20','22:40:00','2025-11-25','14:00:00','Y','B0023','RC07','RC07','N',0,0,0,'vishal','2025-11-25 14:00:00','vishal','2025-11-20 22:58:44','vishal','2025-11-25 13:10:20'),(290,0,0,3630,174,0,'2025-11-21','11:30:00','2025-11-24','21:00:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-11-24 21:00:00','vishal','2025-11-21 12:01:53','vishal','2025-11-24 21:16:00'),(291,0,0,3902,180,0,'2025-11-21','11:00:00','2025-11-22','15:45:00','Y','B0021','RC07','RC07','N',0,0,0,'riya','2025-11-22 15:45:00','vishal','2025-11-21 12:31:00','riya','2025-11-22 15:12:29'),(292,0,0,3764,178,0,'2025-11-21','14:30:00','2025-11-22','23:00:00','Y','B0004','RC04','RC04','N',0,0,0,'riya','2025-11-22 23:00:00','vishal','2025-11-21 14:43:30','riya','2025-11-23 10:25:33'),(293,0,0,3909,181,0,'2025-11-21','15:00:00','2025-11-23','20:00:00','Y','B0024','RC07','RC07','N',0,0,0,'riya','2025-11-23 20:00:00','vishal','2025-11-21 15:17:16','riya','2025-11-23 20:14:40'),(294,0,0,3954,182,0,'2025-11-21','22:00:00','2025-11-22','14:30:00','Y','B0025','RC07','RC07','N',0,0,0,'riya','2025-11-22 14:30:00','riya','2025-11-22 09:47:41','riya','2025-11-22 14:39:00'),(295,0,0,3959,183,0,'2025-11-22','09:30:00','2025-11-27','13:30:00','Y','B0026','RC07','RC07','N',0,0,0,'riya','2025-11-27 13:30:00','riya','2025-11-22 10:05:48','riya','2025-11-27 13:58:06'),(296,0,0,3962,184,0,'2025-11-22','10:30:00','2025-11-22','23:15:00','Y','B0007','RC04','RC04','N',0,0,0,'riya','2025-11-22 23:15:00','riya','2025-11-22 10:34:30','riya','2025-11-23 10:22:45'),(297,0,0,3954,182,0,'2025-11-22','14:30:00','2025-11-23','14:00:00','Y','B0008','RC04','RC04','N',0,0,0,'riya','2025-11-23 14:00:00','riya','2025-11-22 14:39:00','riya','2025-11-23 14:02:04'),(298,0,0,4010,185,0,'2025-11-23','03:00:00','2025-11-23','20:15:00','Y','B0021','RC07','RC07','N',0,0,0,'riya','2025-11-23 20:15:00','riya','2025-11-23 09:56:29','riya','2025-11-23 20:26:07'),(299,0,0,4011,186,0,'2025-11-23','01:30:00','2025-11-24','12:00:00','Y','B0015','RC03','RC03','N',0,0,0,'riya','2025-11-24 12:00:00','riya','2025-11-23 10:09:37','riya','2025-11-24 12:11:29'),(300,0,0,3962,184,0,'2025-11-22','23:15:00','2025-11-23','20:15:00','Y','B0025','RC07','RC07','N',0,0,0,'riya','2025-11-23 20:15:00','riya','2025-11-23 10:22:45','riya','2025-11-23 20:29:50'),(301,0,0,3764,178,0,'2025-11-22','23:00:00','2025-11-23','20:00:00','Y','B0027','RC07','RC07','N',0,0,0,'riya','2025-11-23 20:00:00','riya','2025-11-23 10:25:33','riya','2025-11-23 20:16:49'),(302,0,0,3517,165,0,'2025-11-23','11:00:00','2025-11-26','13:15:00','Y','B0011','RC03','RC03','N',0,0,0,'riya','2025-11-26 13:15:00','riya','2025-11-23 10:54:54','riya','2025-11-26 13:30:13'),(303,0,0,3954,182,0,'2025-11-23','14:00:00','2025-11-24','12:00:00','Y','B0004','RC04','RC04','N',0,0,0,'riya','2025-11-24 12:00:00','riya','2025-11-23 14:02:04','riya','2025-11-24 12:12:13'),(304,0,0,4017,187,0,'2025-11-23','15:00:00','0000-00-00','00:00:00','N','B0022','RC07','RC07','N',0,0,0,'','0000-00-00 00:00:00','riya','2025-11-23 15:21:02','','0000-00-00 00:00:00'),(305,0,0,4018,188,0,'2025-11-23','18:30:00','2025-11-23','18:45:00','Y','B0003','RC04','RC04','N',0,0,0,'riya','2025-11-23 18:45:00','riya','2025-11-23 18:24:37','riya','2025-11-23 20:29:14'),(306,0,0,3909,181,0,'2025-11-23','20:00:00','2025-12-03','13:40:00','Y','B0007','RC04','RC04','N',0,0,0,'riya','2025-12-03 13:40:00','riya','2025-11-23 20:14:40','riya','2025-12-03 14:11:55'),(307,0,0,3764,178,0,'2025-11-23','20:00:00','2025-12-01','11:30:00','Y','B0008','RC04','RC04','N',0,0,0,'thims','2025-12-01 11:30:00','riya','2025-11-23 20:16:49','thims','2025-12-01 16:41:42'),(308,0,0,4010,185,0,'2025-11-23','20:15:00','2025-11-24','21:00:00','Y','B0005','RC04','RC04','N',0,0,0,'vishal','2025-11-24 21:00:00','riya','2025-11-23 20:26:07','vishal','2025-11-24 21:07:23'),(309,0,0,4018,188,0,'2025-11-23','18:45:00','2025-11-24','19:15:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-11-24 19:15:00','riya','2025-11-23 20:29:14','vishal','2025-11-24 19:08:31'),(310,0,0,3962,184,0,'2025-11-23','20:15:00','2025-11-25','12:00:00','Y','B0003','RC04','RC04','N',0,0,0,'vishal','2025-11-25 12:00:00','riya','2025-11-23 20:29:50','vishal','2025-11-25 12:13:54'),(311,0,0,4019,189,0,'2025-11-23','20:30:00','2025-11-26','11:25:00','Y','B0016','RC03','RC03','N',0,0,0,'vishal','2025-11-26 11:25:00','riya','2025-11-23 20:37:38','vishal','2025-11-26 11:57:05'),(312,0,0,4020,190,0,'2025-11-24','08:50:00','2025-11-25','12:00:00','Y','B0013','RC03','RC03','N',0,0,0,'vishal','2025-11-25 12:00:00','riya','2025-11-24 08:51:26','vishal','2025-11-25 11:58:56'),(313,0,0,4047,191,0,'2025-11-24','10:30:00','2025-12-01','11:30:00','Y','B0012','RC03','RC03','N',0,0,0,'riya','2025-12-01 11:30:00','riya','2025-11-24 10:38:56','riya','2025-12-01 11:40:14'),(314,0,0,4054,192,0,'2025-11-24','11:00:00','2025-11-26','12:15:00','Y','B0017','RC03','RC03','N',0,0,0,'vishal','2025-11-26 12:15:00','riya','2025-11-24 11:00:46','vishal','2025-11-26 12:22:34'),(315,0,0,4092,193,0,'2025-11-24','13:00:00','2025-11-25','14:00:00','Y','B0004','RC04','RC04','N',0,0,0,'vishal','2025-11-25 14:00:00','riya','2025-11-24 12:59:35','vishal','2025-11-25 14:00:07'),(316,0,0,4125,194,0,'2025-11-24','18:15:00','2025-11-25','14:00:00','Y','B0024','RC07','RC07','N',0,0,0,'vishal','2025-11-25 14:00:00','vishal','2025-11-24 18:23:14','vishal','2025-11-25 13:50:00'),(317,0,0,4154,195,0,'2025-09-30','09:00:00','2025-09-30','17:15:00','Y','B0017','RC03','RC03','N',0,0,0,'vishal','2025-09-30 17:15:00','vishal','2025-11-24 19:54:45','vishal','2025-11-24 19:58:47'),(318,0,0,4158,196,0,'2025-11-25','05:00:00','2025-11-26','11:25:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-11-26 11:25:00','vishal','2025-11-25 09:08:51','vishal','2025-11-26 11:56:37'),(319,0,0,4159,197,1388,'2025-11-24','22:30:00','2025-11-26','14:00:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-11-26 14:00:00','vishal','2025-11-25 09:43:42','vishal','2025-11-26 12:51:00'),(320,0,0,4161,198,2711,'2025-11-25','09:45:00','2025-11-25','10:30:00','Y','B0015','RC03','RC03','N',0,0,0,'vishal','2025-11-25 10:30:00','vishal','2025-11-25 09:58:58','vishal','2025-11-25 10:44:26'),(321,0,0,4166,199,2323,'2025-11-25','09:50:00','2025-11-26','18:30:00','Y','B0018','RC03','RC03','N',0,0,0,'riya','2025-11-26 18:30:00','vishal','2025-11-25 10:15:47','riya','2025-11-26 18:41:34'),(322,0,0,4161,198,2711,'2025-11-25','10:30:00','2025-11-25','19:30:00','Y','B0005','RC04','RC04','N',0,0,0,'riya','2025-11-25 19:30:00','vishal','2025-11-25 10:44:26','riya','2025-11-25 20:10:35'),(323,0,0,3861,179,0,'2025-11-25','14:00:00','2025-11-30','11:45:00','Y','B0003','RC04','RC04','N',0,0,0,'vishal','2025-11-30 11:45:00','vishal','2025-11-25 13:10:20','vishal','2025-11-30 11:52:57'),(324,0,0,4125,194,0,'2025-11-25','14:00:00','2025-11-25','14:30:00','Y','B0013','RC03','RC03','N',0,0,0,'riya','2025-11-25 14:30:00','vishal','2025-11-25 13:50:00','riya','2025-11-26 14:39:35'),(325,0,0,3611,171,0,'2025-11-24','13:00:00','2025-11-28','13:30:00','Y','B0023','RC07','RC07','N',0,0,0,'vishal','2025-11-28 13:30:00','vishal','2025-11-25 15:20:53','vishal','2025-11-28 17:32:07'),(326,0,0,4245,200,0,'2025-11-25','19:30:00','2025-11-28','10:30:00','Y','B0004','RC04','RC04','N',0,0,0,'vishal','2025-11-28 10:30:00','riya','2025-11-25 19:27:40','vishal','2025-11-28 11:03:28'),(327,0,0,4161,198,2711,'2025-11-25','19:30:00','2025-11-26','12:30:00','Y','B0024','RC07','RC07','N',0,0,0,'vishal','2025-11-26 12:30:00','riya','2025-11-25 20:10:35','vishal','2025-11-26 11:30:53'),(328,0,0,4261,201,2928,'2025-11-26','09:50:00','2025-11-27','20:30:00','Y','B0002','RC04','RC04','N',0,0,0,'riya','2025-11-27 20:30:00','vishal','2025-11-26 09:52:18','riya','2025-11-27 20:48:23'),(329,0,0,4265,202,2903,'2025-11-26','10:00:00','2025-11-27','19:00:00','Y','B0015','RC03','RC03','N',0,0,0,'riya','2025-11-27 19:00:00','vishal','2025-11-26 10:12:07','riya','2025-11-27 19:09:27'),(330,0,0,4266,203,0,'2025-11-26','10:15:00','2025-12-02','11:30:00','Y','B0025','RC07','RC07','N',0,0,0,'riya','2025-12-02 11:30:00','vishal','2025-11-26 10:29:44','riya','2025-12-02 11:40:21'),(331,0,0,4161,198,2711,'2025-11-26','12:30:00','2025-11-27','19:00:00','Y','B0005','RC04','RC04','N',0,0,0,'riya','2025-11-27 19:00:00','vishal','2025-11-26 11:30:53','riya','2025-11-27 19:10:17'),(332,0,0,4159,197,1388,'2025-11-26','14:00:00','2025-11-28','12:15:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-11-28 12:15:00','vishal','2025-11-26 12:51:00','vishal','2025-11-28 12:22:41'),(333,0,0,4125,194,0,'2025-11-25','14:30:00','2025-11-26','18:15:00','Y','B0014','RC03','RC03','N',0,0,0,'riya','2025-11-26 18:15:00','riya','2025-11-26 14:39:35','riya','2025-11-26 18:18:01'),(334,0,0,4305,204,0,'2025-11-26','14:30:00','2025-11-26','18:30:00','Y','B0013','RC03','RC03','N',0,0,0,'riya','2025-11-26 18:30:00','riya','2025-11-26 14:41:00','riya','2025-11-26 18:37:22'),(335,0,0,4125,194,0,'2025-11-26','18:15:00','2025-11-27','12:00:00','Y','B0019','RC03','RC03','N',0,0,0,'riya','2025-11-27 12:00:00','riya','2025-11-26 18:18:01','riya','2025-11-27 12:19:24'),(336,0,0,4349,205,0,'2025-11-26','20:30:00','2025-11-27','09:15:00','Y','B0011','RC03','RC03','N',0,0,0,'riya','2025-11-27 09:15:00','riya','2025-11-26 20:49:12','riya','2025-11-27 09:18:19'),(337,0,0,4350,206,0,'2025-11-26','20:40:00','2025-11-27','13:40:00','Y','B0021','RC07','RC07','N',0,0,0,'riya','2025-11-27 13:40:00','riya','2025-11-26 21:01:26','riya','2025-11-27 13:31:41'),(338,0,0,4351,207,0,'2025-11-26','21:20:00','2025-11-29','10:15:00','Y','B0016','RC03','RC03','N',0,0,0,'vishal','2025-11-29 10:15:00','riya','2025-11-26 21:30:29','vishal','2025-11-29 10:16:28'),(339,0,0,4357,208,0,'2025-11-27','03:00:00','2025-11-27','12:05:00','Y','B0014','RC03','RC03','N',0,0,0,'riya','2025-11-27 12:05:00','riya','2025-11-27 09:34:15','riya','2025-11-27 12:27:39'),(340,0,0,4359,209,0,'2025-11-27','02:00:00','2025-11-28','12:00:00','Y','B0024','RC07','RC07','N',0,0,0,'vishal','2025-11-28 12:00:00','riya','2025-11-27 09:44:06','vishal','2025-11-28 12:11:22'),(341,0,0,4409,210,0,'2025-11-27','15:00:00','2025-11-28','12:00:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-11-28 12:00:00','riya','2025-11-27 15:21:54','vishal','2025-11-28 11:46:59'),(342,0,0,4417,211,0,'2025-11-27','17:00:00','2025-11-29','11:15:00','Y','B0013','RC03','RC03','N',0,0,0,'vishal','2025-11-29 11:15:00','riya','2025-11-27 17:03:05','vishal','2025-11-29 11:21:50'),(343,0,0,4469,212,407,'2025-11-27','23:00:00','2025-11-28','02:10:00','Y','B0026','RC07','RC07','N',0,0,0,'vishal','2025-11-28 02:10:00','vishal','2025-11-27 23:20:25','vishal','2025-11-28 02:26:03'),(344,0,0,4409,210,0,'2025-11-28','12:00:00','2025-11-29','09:30:00','Y','B0015','RC03','RC03','N',0,0,0,'vishal','2025-11-29 09:30:00','vishal','2025-11-28 11:46:59','vishal','2025-11-29 09:35:54'),(345,0,0,4359,209,0,'2025-11-28','12:00:00','2025-11-28','13:30:00','Y','B0002','RC04','RC04','N',0,0,0,'vishal','2025-11-28 13:30:00','vishal','2025-11-28 12:11:22','vishal','2025-11-28 17:31:40'),(346,0,0,4359,209,0,'2025-11-28','13:30:00','2025-11-30','13:50:00','Y','B0005','RC04','RC04','N',0,0,0,'vishal','2025-11-30 13:50:00','vishal','2025-11-28 17:31:40','vishal','2025-11-30 13:57:14'),(347,0,0,3611,171,0,'2025-11-28','13:30:00','2025-12-02','15:30:00','Y','B0002','RC04','RC04','N',0,0,0,'riya','2025-12-02 15:30:00','vishal','2025-11-28 17:32:07','riya','2025-12-02 15:44:06'),(348,0,0,2879,146,0,'2025-11-28','20:00:00','2025-11-29','11:00:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-11-29 11:00:00','riya','2025-11-28 21:09:33','vishal','2025-11-29 18:31:47'),(349,0,0,4594,213,0,'2025-11-28','21:30:00','2025-11-29','16:30:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-11-29 16:30:00','riya','2025-11-28 21:35:42','vishal','2025-11-30 12:16:02'),(350,0,0,4630,214,3217,'2025-11-29','11:30:00','2025-11-29','20:40:00','Y','B0004','RC04','RC04','N',0,0,0,'vishal','2025-11-29 20:40:00','vishal','2025-11-29 11:32:29','vishal','2025-11-29 20:54:56'),(351,0,0,4674,215,0,'2025-11-29','13:30:00','2025-12-02','14:35:00','Y','B0017','RC03','RC03','N',0,0,0,'riya','2025-12-02 14:35:00','vishal','2025-11-29 13:36:49','riya','2025-12-02 14:44:18'),(352,0,0,4675,216,3208,'2025-11-29','14:00:00','2025-11-30','18:00:00','Y','B0013','RC03','RC03','N',0,0,0,'vishal','2025-11-30 18:00:00','vishal','2025-11-29 14:07:09','vishal','2025-11-30 18:04:09'),(353,0,0,2879,146,0,'2025-11-29','11:00:00','2025-12-01','22:00:00','Y','B0006','RC04','RC04','N',0,0,0,'riya','2025-12-01 22:00:00','vishal','2025-11-29 18:31:47','riya','2025-12-01 22:17:26'),(354,0,0,4686,217,0,'2025-11-29','21:00:00','2025-11-30','19:30:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-11-30 19:30:00','vishal','2025-11-29 21:12:18','vishal','2025-11-30 19:42:32'),(355,0,0,4688,218,0,'2025-11-30','10:30:00','2025-12-02','12:00:00','Y','B0023','RC07','RC07','N',0,0,0,'riya','2025-12-02 12:00:00','vishal','2025-11-30 11:04:41','riya','2025-12-02 12:00:45'),(356,0,0,4690,219,0,'2025-11-29','22:30:00','2025-12-01','18:45:00','Y','B0004','RC04','RC04','N',0,0,0,'riya','2025-12-01 18:45:00','vishal','2025-11-30 11:13:40','riya','2025-12-01 18:50:12'),(357,0,0,4691,220,0,'2025-11-30','11:15:00','2025-12-02','19:30:00','Y','B0011','RC03','RC03','N',0,0,0,'vishal','2025-12-02 19:30:00','vishal','2025-11-30 11:45:27','vishal','2025-12-02 19:47:20'),(358,0,0,4594,213,0,'2025-11-29','16:30:00','2025-11-30','12:30:00','Y','B0024','RC07','RC07','N',0,0,0,'vishal','2025-11-30 12:30:00','vishal','2025-11-30 12:16:02','vishal','2025-11-30 12:16:29'),(359,0,0,4594,213,0,'2025-11-30','12:30:00','2025-12-01','11:40:00','Y','B0001','RC04','RC04','N',0,0,0,'riya','2025-12-01 11:40:00','vishal','2025-11-30 12:16:29','riya','2025-12-01 11:50:49'),(360,0,0,4693,221,0,'2025-11-30','13:30:00','2025-12-04','20:05:00','Y','B0014','RC03','RC03','N',0,0,0,'riya','2025-12-04 20:05:00','vishal','2025-11-30 13:46:17','riya','2025-12-04 20:11:49'),(361,0,0,4694,222,0,'2025-11-30','17:00:00','2025-12-02','18:00:00','Y','B0005','RC04','RC04','N',0,0,0,'vishal','2025-12-02 18:00:00','vishal','2025-11-30 17:46:28','vishal','2025-12-02 19:02:08'),(362,0,0,4686,217,0,'2025-11-30','19:30:00','2025-12-01','13:30:00','Y','B0003','RC04','RC04','N',0,0,0,'riya','2025-12-01 13:30:00','vishal','2025-11-30 19:42:32','riya','2025-12-01 13:36:36'),(363,0,0,4711,223,0,'2025-12-01','09:30:00','2025-12-03','10:30:00','Y','B0019','RC03','RC03','N',0,0,0,'riya','2025-12-03 10:30:00','riya','2025-12-01 10:17:31','riya','2025-12-03 10:47:41'),(364,0,0,4751,224,0,'2025-12-01','12:00:00','2025-12-04','11:30:00','Y','B0021','RC07','RC07','N',0,0,0,'riya','2025-12-04 11:30:00','riya','2025-12-01 12:06:01','riya','2025-12-04 11:45:04'),(365,0,0,4777,225,0,'2025-12-01','14:00:00','2025-12-07','13:30:00','Y','B0024','RC07','RC07','N',0,0,0,'vishal','2025-12-07 13:30:00','riya','2025-12-01 14:06:40','vishal','2025-12-07 13:21:26'),(366,0,0,4778,226,0,'2025-12-01','14:30:00','2025-12-01','18:30:00','Y','B0013','RC03','RC03','N',0,0,0,'riya','2025-12-01 18:30:00','riya','2025-12-01 14:24:31','riya','2025-12-02 09:57:41'),(367,0,0,4780,227,0,'2025-12-01','14:00:00','2025-12-02','14:00:00','Y','B0001','RC04','RC04','N',0,0,0,'riya','2025-12-02 14:00:00','riya','2025-12-01 14:48:55','riya','2025-12-02 14:03:32'),(368,0,0,4781,228,0,'2025-12-01','15:00:00','2025-12-03','12:00:00','Y','B0026','RC07','RC07','N',0,0,0,'riya','2025-12-03 12:00:00','riya','2025-12-01 15:17:16','riya','2025-12-03 12:03:42'),(369,0,0,4802,229,3305,'2025-12-01','17:50:00','2025-12-03','20:30:00','Y','B0012','RC03','RC03','N',0,0,0,'vishal','2025-12-03 20:30:00','riya','2025-12-01 17:48:38','vishal','2025-12-03 20:40:06'),(370,0,0,4834,230,0,'2025-12-01','18:30:00','2025-12-03','20:45:00','Y','B0003','RC04','RC04','N',0,0,0,'vishal','2025-12-03 20:45:00','riya','2025-12-01 18:34:27','vishal','2025-12-03 20:54:38'),(371,0,0,4855,231,0,'2025-12-02','09:30:00','2025-12-03','10:15:00','Y','B0004','RC04','RC04','N',0,0,0,'riya','2025-12-03 10:15:00','riya','2025-12-02 09:39:14','riya','2025-12-03 10:29:49'),(372,0,0,4778,226,0,'2025-12-01','18:30:00','2025-12-05','10:35:00','Y','B0016','RC03','RC03','N',0,0,0,'vishal','2025-12-05 10:35:00','riya','2025-12-02 09:57:41','vishal','2025-12-05 11:12:07'),(373,0,0,4857,232,0,'2025-12-02','10:00:00','2025-12-03','15:30:00','Y','B0013','RC03','RC03','N',0,0,0,'riya','2025-12-03 15:30:00','riya','2025-12-02 10:00:10','riya','2025-12-03 15:38:35'),(374,0,0,4863,233,0,'2025-12-02','10:15:00','2025-12-03','11:15:00','Y','B0027','RC07','RC07','N',0,0,0,'riya','2025-12-03 11:15:00','riya','2025-12-02 10:22:43','riya','2025-12-03 11:18:50'),(375,0,0,4868,234,0,'2025-12-02','10:30:00','2025-12-02','10:30:00','Y','B0008','RC04','RC04','N',0,0,0,'riya','2025-12-02 10:30:00','riya','2025-12-02 10:33:56','riya','2025-12-02 10:40:22'),(376,0,0,4868,234,0,'2025-12-02','10:30:00','2025-12-02','16:45:00','Y','B0020','RC03','RC03','N',0,0,0,'riya','2025-12-02 16:45:00','riya','2025-12-02 10:40:22','riya','2025-12-02 16:48:34'),(377,0,0,4266,203,0,'2025-12-02','11:30:00','2025-12-03','19:30:00','Y','B0008','RC04','RC04','N',0,0,0,'vishal','2025-12-03 19:30:00','riya','2025-12-02 11:40:21','vishal','2025-12-03 19:32:09'),(378,0,0,4688,218,0,'2025-12-02','12:00:00','2025-12-11','12:45:00','Y','B0018','RC03','RC03','N',0,0,0,'riya','2025-12-11 12:45:00','riya','2025-12-02 12:00:45','riya','2025-12-11 13:46:50'),(379,0,0,4920,235,0,'2025-12-02','13:30:00','2025-12-02','15:45:00','Y','B0029','RC03','RC03','N',0,0,0,'riya','2025-12-02 15:45:00','riya','2025-12-02 13:43:38','riya','2025-12-02 15:50:06'),(380,0,0,4920,235,0,'2025-12-02','15:45:00','2025-12-03','18:30:00','Y','B0017','RC03','RC03','N',0,0,0,'riya','2025-12-03 18:30:00','riya','2025-12-02 15:50:06','riya','2025-12-04 13:45:00'),(381,0,0,4694,222,0,'2025-12-02','18:00:00','2025-12-03','11:30:00','Y','B0023','RC07','RC07','N',0,0,0,'riya','2025-12-03 11:30:00','vishal','2025-12-02 19:02:08','riya','2025-12-03 11:41:08'),(382,0,0,4968,236,3406,'2025-12-02','19:50:00','2025-12-05','11:15:00','Y','B0020','RC03','RC03','N',0,0,0,'vishal','2025-12-05 11:15:00','vishal','2025-12-02 19:58:07','vishal','2025-12-05 11:22:03'),(383,0,0,4970,237,0,'2025-12-02','20:00:00','2025-12-05','07:00:00','Y','B0025','RC07','RC07','N',0,0,0,'vishal','2025-12-05 07:00:00','vishal','2025-12-02 20:34:56','vishal','2025-12-05 12:49:55'),(384,0,0,4977,238,0,'2025-12-03','09:15:00','2025-12-05','12:00:00','Y','B0028','RC07','RC07','N',0,0,0,'vishal','2025-12-05 12:00:00','riya','2025-12-03 09:36:53','vishal','2025-12-05 12:05:07'),(385,0,0,4863,233,0,'2025-12-03','11:15:00','2025-12-05','12:30:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-12-05 12:30:00','riya','2025-12-03 11:18:50','vishal','2025-12-05 12:56:15'),(386,0,0,4694,222,0,'2025-12-03','11:30:00','2025-12-06','21:00:00','Y','B0005','RC04','RC04','N',0,0,0,'riya','2025-12-06 21:00:00','riya','2025-12-03 11:41:08','riya','2025-12-06 21:09:38'),(387,0,0,4781,228,0,'2025-12-03','12:00:00','2025-12-05','12:30:00','Y','B0002','RC04','RC04','N',0,0,0,'vishal','2025-12-05 12:30:00','riya','2025-12-03 12:03:42','vishal','2025-12-05 12:40:29'),(388,0,0,5036,239,0,'2025-12-03','15:30:00','2025-12-04','11:35:00','Y','B0009','RC03','RC03','N',0,0,0,'riya','2025-12-04 11:35:00','riya','2025-12-03 15:28:01','riya','2025-12-04 11:47:24'),(389,0,0,4857,232,0,'2025-12-03','15:30:00','2025-12-04','11:20:00','Y','B0010','RC03','RC03','N',0,0,0,'riya','2025-12-04 11:20:00','riya','2025-12-03 15:38:35','riya','2025-12-04 11:25:48'),(390,0,0,5038,240,0,'2025-12-03','15:45:00','2025-12-04','06:10:00','Y','B0023','RC07','RC07','N',0,0,0,'vishal','2025-12-04 06:10:00','riya','2025-12-03 16:13:30','vishal','2025-12-04 07:15:42'),(391,0,0,5089,241,0,'2025-12-03','18:30:00','2025-12-05','12:00:00','Y','B0026','RC07','RC07','N',0,0,0,'vishal','2025-12-05 12:00:00','vishal','2025-12-03 18:41:17','vishal','2025-12-05 11:47:59'),(392,0,0,5113,242,0,'2025-12-04','10:00:00','2025-12-06','19:00:00','Y','B0003','RC04','RC04','N',0,0,0,'riya','2025-12-06 19:00:00','riya','2025-12-04 10:06:46','riya','2025-12-06 19:22:50'),(393,0,0,5120,243,0,'2025-12-04','01:00:00','2025-12-11','20:00:00','Y','B0023','RC07','RC07','N',0,0,0,'vishal','2025-12-11 20:00:00','riya','2025-12-04 10:50:53','vishal','2025-12-11 19:49:40'),(394,0,0,4751,224,0,'2025-12-04','11:30:00','2025-12-06','12:05:00','Y','B0004','RC04','RC04','N',0,0,0,'riya','2025-12-06 12:05:00','riya','2025-12-04 11:45:04','riya','2025-12-06 12:52:44'),(395,0,0,5148,244,0,'2025-12-04','12:20:00','2025-12-06','12:00:00','Y','B0013','RC03','RC03','N',0,0,0,'riya','2025-12-06 12:00:00','riya','2025-12-04 12:21:58','riya','2025-12-06 12:08:01'),(396,0,0,4920,235,0,'2025-12-03','18:30:00','2025-12-04','16:15:00','Y','B0021','RC07','RC07','N',0,0,0,'riya','2025-12-04 16:15:00','riya','2025-12-04 13:45:00','riya','2025-12-04 16:39:26'),(397,0,0,5163,245,0,'2025-12-04','15:00:00','2025-12-04','17:00:00','Y','B0019','RC03','RC03','N',0,0,0,'vishal','2025-12-04 17:00:00','riya','2025-12-04 14:57:47','vishal','2025-12-05 16:57:32'),(398,0,0,5164,246,0,'2025-12-04','15:40:00','2025-12-04','21:30:00','Y','B0017','RC03','RC03','N',0,0,0,'riya','2025-12-04 21:30:00','riya','2025-12-04 15:42:49','riya','2025-12-04 21:38:53'),(399,0,0,5175,247,0,'2025-12-04','17:00:00','2025-12-05','22:00:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-12-05 22:00:00','vishal','2025-12-04 17:18:32','vishal','2025-12-05 22:02:33'),(400,0,0,5223,248,3525,'2025-12-05','09:00:00','2025-12-05','18:25:00','Y','B0014','RC03','RC03','N',0,0,0,'vishal','2025-12-05 18:25:00','vishal','2025-12-05 09:57:37','vishal','2025-12-05 18:37:34'),(401,0,0,5089,241,0,'2025-12-05','12:00:00','2025-12-08','11:50:00','Y','B0006','RC04','RC04','N',0,0,0,'riya','2025-12-08 11:50:00','vishal','2025-12-05 11:47:59','riya','2025-12-08 11:59:15'),(402,0,0,4977,238,0,'2025-12-05','12:00:00','2025-12-08','12:15:00','Y','B0007','RC04','RC04','N',0,0,0,'riya','2025-12-08 12:15:00','vishal','2025-12-05 12:05:07','riya','2025-12-08 12:14:30'),(403,0,0,5163,245,0,'2025-12-04','17:00:00','2025-12-05','18:30:00','Y','B0025','RC07','RC07','N',0,0,0,'vishal','2025-12-05 18:30:00','vishal','2025-12-05 16:57:32','vishal','2025-12-05 18:31:22'),(404,0,0,5301,249,0,'2025-12-05','17:00:00','2025-12-06','13:00:00','Y','B0001','RC04','RC04','N',0,0,0,'riya','2025-12-06 13:00:00','vishal','2025-12-05 18:12:44','riya','2025-12-06 13:08:29'),(405,0,0,5307,250,0,'2025-12-05','17:30:00','2025-12-08','11:00:00','Y','B0026','RC07','RC07','N',0,0,0,'riya','2025-12-08 11:00:00','vishal','2025-12-05 18:22:20','riya','2025-12-08 11:16:00'),(406,0,0,5163,245,0,'2025-12-05','18:30:00','2025-12-12','19:00:00','Y','B0002','RC04','RC04','N',0,0,0,'vishal','2025-12-12 19:00:00','vishal','2025-12-05 18:31:22','vishal','2025-12-12 18:21:23'),(407,0,0,5316,251,0,'2025-12-05','17:30:00','2025-12-07','13:00:00','Y','B0025','RC07','RC07','N',0,0,0,'vishal','2025-12-07 13:00:00','vishal','2025-12-05 18:44:36','vishal','2025-12-07 13:00:58'),(408,0,0,5337,252,0,'2025-12-05','20:30:00','2025-12-08','13:15:00','Y','B0008','RC04','RC04','N',0,0,0,'riya','2025-12-08 13:15:00','riya','2025-12-05 20:53:01','riya','2025-12-08 13:20:26'),(409,0,0,5338,253,0,'2025-12-05','20:30:00','2025-12-08','20:25:00','Y','B0017','RC03','RC03','N',0,0,0,'vishal','2025-12-08 20:25:00','riya','2025-12-05 21:04:00','vishal','2025-12-08 20:56:24'),(410,0,0,5175,247,0,'2025-12-05','22:00:00','2025-12-09','09:35:00','Y','B0015','RC03','RC03','N',0,0,0,'vishal','2025-12-09 09:35:00','vishal','2025-12-05 22:02:33','vishal','2025-12-09 09:52:46'),(411,0,0,5341,254,0,'2025-12-06','10:00:00','2025-12-06','14:30:00','Y','B0011','RC03','RC03','N',0,0,0,'riya','2025-12-06 14:30:00','riya','2025-12-06 10:02:14','riya','2025-12-06 15:44:06'),(412,0,0,5341,254,0,'2025-12-06','14:30:00','2025-12-07','20:00:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-12-07 20:00:00','riya','2025-12-06 15:44:06','vishal','2025-12-07 19:22:57'),(413,0,0,4694,222,0,'2025-12-06','21:00:00','2025-12-08','18:00:00','Y','B0003','RC04','RC04','N',0,0,0,'vishal','2025-12-08 18:00:00','riya','2025-12-06 21:09:38','vishal','2025-12-08 20:05:05'),(414,0,0,5316,251,0,'2025-12-07','13:00:00','2025-12-10','11:30:00','Y','B0005','RC04','RC04','N',0,0,0,'riya','2025-12-10 11:30:00','vishal','2025-12-07 13:00:58','riya','2025-12-10 11:54:50'),(415,0,0,4777,225,0,'2025-12-07','13:30:00','2025-12-07','18:30:00','Y','B0016','RC03','RC03','N',0,0,0,'vishal','2025-12-07 18:30:00','vishal','2025-12-07 13:21:26','vishal','2025-12-07 18:33:29'),(416,0,0,5425,255,0,'2025-12-07','16:30:00','2025-12-08','21:00:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-12-08 21:00:00','vishal','2025-12-07 16:48:26','vishal','2025-12-08 20:55:20'),(417,0,0,4777,225,0,'2025-12-07','18:30:00','2025-12-10','18:00:00','Y','B0004','RC04','RC04','N',0,0,0,'vishal','2025-12-10 18:00:00','vishal','2025-12-07 18:33:29','vishal','2025-12-11 18:09:13'),(418,0,0,5426,256,0,'2025-12-07','23:30:00','2025-12-09','19:15:00','Y','B0024','RC07','RC07','N',0,0,0,'riya','2025-12-09 19:15:00','vishal','2025-12-07 23:59:52','riya','2025-12-09 19:24:11'),(419,0,0,5443,257,0,'2025-12-08','09:30:00','2025-12-09','13:30:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-12-09 13:30:00','riya','2025-12-08 09:34:50','vishal','2025-12-09 13:52:18'),(420,0,0,5445,258,0,'2025-12-08','03:30:00','2025-12-09','11:00:00','Y','B0025','RC07','RC07','N',0,0,0,'vishal','2025-12-09 11:00:00','riya','2025-12-08 09:47:50','vishal','2025-12-09 11:14:03'),(421,0,0,5307,250,0,'2025-12-08','11:00:00','2025-12-11','12:55:00','Y','B0011','RC03','RC03','N',0,0,0,'riya','2025-12-11 12:55:00','riya','2025-12-08 11:16:00','riya','2025-12-11 13:35:43'),(422,0,0,5521,259,0,'2025-12-08','12:30:00','2025-12-08','17:45:00','Y','B0013','RC03','RC03','N',0,0,0,'vishal','2025-12-08 17:45:00','riya','2025-12-08 12:36:57','vishal','2025-12-09 12:53:42'),(423,0,0,5527,260,0,'2025-12-08','13:00:00','2025-12-09','13:45:00','Y','B0026','RC07','RC07','N',0,0,0,'vishal','2025-12-09 13:45:00','riya','2025-12-08 13:06:07','vishal','2025-12-09 13:59:21'),(424,0,0,5583,261,0,'2025-12-08','18:00:00','2025-12-14','11:00:00','Y','B0016','RC03','RC03','N',0,0,0,'riya','2025-12-14 11:00:00','vishal','2025-12-08 18:56:38','riya','2025-12-14 11:12:26'),(425,0,0,5588,262,3730,'2025-12-08','18:45:00','2025-12-09','00:45:00','Y','B0014','RC03','RC03','N',0,0,0,'riya','2025-12-09 00:45:00','vishal','2025-12-08 19:14:51','riya','2025-12-09 19:21:14'),(426,0,0,4694,222,0,'2025-12-08','18:00:00','2025-12-09','19:45:00','Y','B0027','RC07','RC07','N',0,0,0,'riya','2025-12-09 19:45:00','vishal','2025-12-08 20:05:05','riya','2025-12-09 19:56:33'),(427,0,0,5425,255,0,'2025-12-08','21:00:00','2025-12-08','21:00:00','Y','B0003','RC04','RC04','N',0,0,0,'vishal','2025-12-08 21:00:00','vishal','2025-12-08 20:55:20','vishal','2025-12-08 21:01:20'),(428,0,0,5425,255,0,'2025-12-08','21:00:00','2025-12-08','21:15:00','Y','B0008','RC04','RC04','N',0,0,0,'riya','2025-12-08 21:15:00','vishal','2025-12-08 21:01:20','riya','2025-12-09 19:16:52'),(429,0,0,5603,263,0,'2025-12-09','01:00:00','2025-12-09','19:15:00','Y','B0021','RC07','RC07','N',0,0,0,'riya','2025-12-09 19:15:00','vishal','2025-12-09 09:23:24','riya','2025-12-09 19:17:24'),(430,0,0,5604,264,594,'2025-12-08','22:15:00','2025-12-09','13:00:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-12-09 13:00:00','vishal','2025-12-09 09:33:35','vishal','2025-12-09 12:54:46'),(431,0,0,5445,258,0,'2025-12-09','11:00:00','2025-12-11','11:20:00','Y','B0007','RC04','RC04','N',0,0,0,'riya','2025-12-11 11:20:00','vishal','2025-12-09 11:14:03','riya','2025-12-11 13:11:11'),(432,0,0,5521,259,0,'2025-12-08','17:45:00','2025-12-11','11:00:00','Y','B0006','RC04','RC04','N',0,0,0,'vishal','2025-12-11 11:00:00','vishal','2025-12-09 12:53:42','vishal','2025-12-11 19:12:16'),(433,0,0,5660,265,3790,'2025-12-09','13:00:00','2025-12-10','13:00:00','Y','B0025','RC07','RC07','N',0,0,0,'riya','2025-12-10 13:00:00','vishal','2025-12-09 13:24:21','riya','2025-12-10 12:51:17'),(434,0,0,5527,260,0,'2025-12-09','13:45:00','2025-12-13','12:48:00','Y','B0001','RC04','RC04','N',0,0,0,'riya','2025-12-13 12:48:00','vishal','2025-12-09 13:59:21','riya','2025-12-13 12:48:34'),(435,0,0,5663,266,0,'2025-12-09','16:00:00','2025-12-12','14:41:00','Y','B0026','RC07','RC07','N',0,0,0,'riya','2025-12-12 14:41:00','riya','2025-12-09 16:15:02','riya','2025-12-12 14:49:10'),(436,0,0,5678,267,0,'2025-12-09','17:30:00','2025-12-13','10:59:00','Y','B0012','RC03','RC03','N',0,0,0,'riya','2025-12-13 10:59:00','riya','2025-12-09 17:39:45','riya','2025-12-13 11:00:00'),(437,0,0,5425,255,0,'2025-12-08','21:15:00','2025-12-11','11:20:00','Y','B0019','RC03','RC03','N',0,0,0,'riya','2025-12-11 11:20:00','riya','2025-12-09 19:16:52','riya','2025-12-11 13:19:19'),(438,0,0,5603,263,0,'2025-12-09','19:15:00','2025-12-10','20:45:00','Y','B0008','RC04','RC04','N',0,0,0,'vishal','2025-12-10 20:45:00','riya','2025-12-09 19:17:24','vishal','2025-12-10 21:01:18'),(439,0,0,5588,262,3730,'2025-12-09','00:45:00','2025-12-09','19:15:00','Y','B0021','RC07','RC07','N',0,0,0,'riya','2025-12-09 19:15:00','riya','2025-12-09 19:21:14','riya','2025-12-09 19:23:19'),(440,0,0,5588,262,3730,'2025-12-09','19:15:00','2025-12-11','11:30:00','Y','B0015','RC03','RC03','N',0,0,0,'riya','2025-12-11 11:30:00','riya','2025-12-09 19:23:19','riya','2025-12-11 12:53:45'),(441,0,0,5426,256,0,'2025-12-09','19:15:00','2025-12-10','20:00:00','Y','B0013','RC03','RC03','N',0,0,0,'vishal','2025-12-10 20:00:00','riya','2025-12-09 19:24:11','vishal','2025-12-10 20:44:14'),(442,0,0,4694,222,0,'2025-12-09','19:45:00','2025-12-13','14:20:00','Y','B0003','RC04','RC04','N',0,0,0,'riya','2025-12-13 14:20:00','riya','2025-12-09 19:56:33','riya','2025-12-13 14:20:56'),(443,0,0,5722,268,0,'2025-12-09','19:30:00','2025-12-11','11:30:00','Y','B0017','RC03','RC03','N',0,0,0,'riya','2025-12-11 11:30:00','riya','2025-12-09 20:28:36','riya','2025-12-11 12:55:44'),(444,0,0,5723,269,0,'2025-12-09','21:15:00','2025-12-10','17:00:00','Y','B0021','RC07','RC07','N',0,0,0,'riya','2025-12-10 17:00:00','riya','2025-12-09 21:16:04','riya','2025-12-10 17:44:40'),(445,0,0,5728,270,0,'2025-12-10','09:30:00','2025-12-10','09:30:00','Y','B0029','RC03','RC03','N',0,0,0,'riya','2025-12-10 09:30:00','riya','2025-12-10 09:36:35','riya','2025-12-10 09:46:14'),(446,0,0,5728,270,0,'2025-12-10','09:30:00','2025-12-10','10:00:00','Y','B0009','RC03','RC03','N',0,0,0,'riya','2025-12-10 10:00:00','riya','2025-12-10 09:46:14','riya','2025-12-10 10:05:57'),(447,0,0,5732,271,0,'2025-12-10','10:00:00','2025-12-10','20:00:00','Y','B0031','RC03','RC03','N',0,0,0,'vishal','2025-12-10 20:00:00','riya','2025-12-10 10:05:37','vishal','2025-12-10 20:23:49'),(448,0,0,5728,270,0,'2025-12-10','10:00:00','2025-12-10','20:00:00','Y','B0029','RC03','RC03','N',0,0,0,'vishal','2025-12-10 20:00:00','riya','2025-12-10 10:05:57','vishal','2025-12-10 20:28:19'),(449,0,0,5791,272,0,'2025-12-10','13:00:00','2025-12-11','16:00:00','Y','B0024','RC07','RC07','N',0,0,0,'riya','2025-12-11 16:00:00','riya','2025-12-10 12:56:33','riya','2025-12-11 16:09:24'),(450,0,0,5831,273,0,'2025-12-10','18:30:00','2025-12-13','10:15:00','Y','B0005','RC04','RC04','N',0,0,0,'riya','2025-12-13 10:15:00','vishal','2025-12-10 18:37:51','riya','2025-12-13 10:27:11'),(451,0,0,5848,274,0,'2025-12-10','22:15:00','2025-12-12','21:00:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-12-12 21:00:00','vishal','2025-12-10 22:51:18','vishal','2025-12-12 21:17:01'),(452,0,0,4777,225,0,'2025-12-10','18:00:00','2025-12-11','13:00:00','Y','B0009','RC03','RC03','N',0,0,0,'vishal','2025-12-11 13:00:00','vishal','2025-12-11 18:09:13','vishal','2025-12-11 18:09:23'),(453,0,0,5521,259,0,'2025-12-11','11:00:00','2025-12-12','12:30:00','Y','B0024','RC07','RC07','N',0,0,0,'riya','2025-12-12 12:30:00','vishal','2025-12-11 19:12:16','riya','2025-12-12 12:28:51'),(454,0,0,5120,243,0,'2025-12-11','20:00:00','2025-12-22','17:00:00','Y','B0004','RC04','RC04','N',0,0,0,'riya','2025-12-22 17:00:00','vishal','2025-12-11 19:49:40','riya','2025-12-22 16:53:26'),(455,0,0,5521,259,0,'2025-12-12','12:30:00','2025-12-17','12:15:00','Y','B0006','RC04','RC04','N',0,0,0,'vishal','2025-12-17 12:15:00','riya','2025-12-12 12:28:51','vishal','2025-12-17 13:30:46'),(456,0,0,6047,275,4002,'2025-12-12','18:30:00','2025-12-13','10:15:00','Y','B0011','RC03','RC03','N',0,0,0,'riya','2025-12-13 10:15:00','vishal','2025-12-12 18:52:09','riya','2025-12-13 10:27:37'),(457,0,0,6056,276,0,'2025-12-12','19:00:00','2025-12-13','20:00:00','Y','B0002','RC04','RC04','N',0,0,0,'riya','2025-12-13 20:00:00','vishal','2025-12-12 19:13:30','riya','2025-12-13 18:12:35'),(458,0,0,6061,277,4016,'2025-12-12','19:50:00','2025-12-17','12:10:00','Y','B0015','RC03','RC03','N',0,0,0,'vishal','2025-12-17 12:10:00','vishal','2025-12-12 19:48:35','vishal','2025-12-17 12:19:10'),(459,0,0,5848,274,0,'2025-12-12','21:00:00','2025-12-15','16:00:00','Y','B0008','RC04','RC04','N',0,0,0,'riya','2025-12-15 16:00:00','vishal','2025-12-12 21:17:01','riya','2025-12-15 16:08:23'),(460,0,0,6070,278,3980,'2025-12-13','09:53:00','2025-12-13','10:00:00','Y','B0009','RC03','RC03','N',0,0,0,'riya','2025-12-13 10:00:00','riya','2025-12-13 09:55:42','riya','2025-12-13 10:04:21'),(461,0,0,6070,278,3980,'2025-12-13','10:00:00','2025-12-14','12:00:00','Y','B0029','RC03','RC03','N',0,0,0,'riya','2025-12-14 12:00:00','riya','2025-12-13 10:04:21','riya','2025-12-14 12:38:05'),(462,0,0,6082,279,3053,'2025-12-13','10:19:00','2025-12-14','11:00:00','Y','B0009','RC03','RC03','N',0,0,0,'riya','2025-12-14 11:00:00','riya','2025-12-13 10:20:18','riya','2025-12-14 11:04:51'),(463,0,0,5831,273,0,'2025-12-13','10:15:00','2025-12-13','14:15:00','Y','B0007','RC04','RC04','N',0,0,0,'riya','2025-12-13 14:15:00','riya','2025-12-13 10:27:11','riya','2025-12-13 18:07:43'),(464,0,0,6047,275,4002,'2025-12-13','10:15:00','2025-12-14','11:30:00','Y','B0005','RC04','RC04','N',0,0,0,'riya','2025-12-14 11:30:00','riya','2025-12-13 10:27:37','riya','2025-12-14 12:09:33'),(465,0,0,6084,280,3999,'2025-12-13','10:27:00','2025-12-13','10:30:00','Y','B0011','RC03','RC03','N',0,0,0,'riya','2025-12-13 10:30:00','riya','2025-12-13 10:28:18','riya','2025-12-13 10:44:15'),(466,0,0,6084,280,3999,'2025-12-13','10:30:00','2025-12-14','17:00:00','Y','B0017','RC03','RC03','N',0,0,0,'vishal','2025-12-14 17:00:00','riya','2025-12-13 10:44:15','vishal','2025-12-14 17:28:20'),(467,0,0,6131,281,0,'2025-12-13','01:00:00','2025-12-13','12:00:00','Y','B0014','RC03','RC03','N',0,0,0,'riya','2025-12-13 12:00:00','riya','2025-12-13 12:32:09','riya','2025-12-13 14:44:39'),(468,0,0,6155,282,4033,'2025-12-13','21:19:00','2025-12-16','12:50:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-12-16 12:50:00','riya','2025-12-13 21:21:36','vishal','2025-12-16 12:19:24'),(469,0,0,6161,283,0,'2025-12-14','01:00:00','2025-12-14','17:00:00','Y','B0003','RC04','RC04','N',0,0,0,'vishal','2025-12-14 17:00:00','riya','2025-12-14 10:59:11','vishal','2025-12-14 16:39:22'),(470,0,0,6163,284,0,'2025-12-14','11:30:00','2025-12-16','10:45:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-12-16 10:45:00','riya','2025-12-14 11:30:38','vishal','2025-12-16 11:08:41'),(471,0,0,6165,285,0,'2025-12-14','12:50:00','2025-12-14','21:00:00','Y','B0002','RC04','RC04','N',0,0,0,'vishal','2025-12-14 21:00:00','riya','2025-12-14 12:58:31','vishal','2025-12-14 21:12:02'),(472,0,0,6166,286,4000,'2025-12-14','17:00:00','2025-12-17','14:00:00','Y','B0003','RC04','RC04','N',0,0,0,'vishal','2025-12-17 14:00:00','vishal','2025-12-14 17:21:28','vishal','2025-12-17 14:26:10'),(473,0,0,6165,285,0,'2025-12-14','21:00:00','2025-12-19','22:00:00','Y','B0005','RC04','RC04','N',0,0,0,'vishal','2025-12-19 22:00:00','vishal','2025-12-14 21:12:02','vishal','2025-12-19 22:22:12'),(474,0,0,6167,287,0,'2025-12-14','21:00:00','2025-12-15','21:45:00','Y','B0002','RC04','RC04','N',0,0,0,'vishal','2025-12-15 21:45:00','vishal','2025-12-14 21:17:46','vishal','2025-12-15 21:09:11'),(475,0,0,6201,288,0,'2025-12-15','11:00:00','2025-12-15','19:30:00','Y','B0007','RC04','RC04','N',0,0,0,'vishal','2025-12-15 19:30:00','riya','2025-12-15 11:04:38','vishal','2025-12-15 19:31:31'),(476,0,0,6254,289,0,'2025-12-15','12:30:00','2025-12-15','13:15:00','Y','B0011','RC03','RC03','N',0,0,0,'riya','2025-12-15 13:15:00','riya','2025-12-15 12:33:13','riya','2025-12-15 13:29:22'),(477,0,0,6254,289,0,'2025-12-15','13:15:00','2025-12-17','13:30:00','Y','B0016','RC03','RC03','N',0,0,0,'vishal','2025-12-17 13:30:00','riya','2025-12-15 13:29:22','vishal','2025-12-17 13:58:45'),(478,0,0,6262,290,0,'2025-12-15','13:30:00','2025-12-17','12:30:00','Y','B0011','RC03','RC03','N',0,0,0,'vishal','2025-12-17 12:30:00','riya','2025-12-15 13:30:36','vishal','2025-12-17 13:35:21'),(480,0,0,6264,292,0,'2025-12-15','15:00:00','2025-12-15','19:30:00','Y','B0014','RC03','RC03','N',0,0,0,'vishal','2025-12-15 19:30:00','riya','2025-12-15 15:26:43','vishal','2025-12-15 19:31:10'),(481,0,0,6274,293,0,'2025-12-15','17:00:00','2025-12-16','12:50:00','Y','B0023','RC07','RC07','N',0,0,0,'riya','2025-12-16 12:50:00','riya','2025-12-15 17:14:21','riya','2025-12-16 13:09:51'),(482,0,0,6264,292,0,'2025-12-15','19:30:00','2025-12-16','17:15:00','Y','B0013','RC03','RC03','N',0,0,0,'vishal','2025-12-16 17:15:00','vishal','2025-12-15 19:31:10','vishal','2025-12-16 15:06:59'),(483,0,0,6201,288,0,'2025-12-15','19:30:00','2025-12-16','11:30:00','Y','B0008','RC04','RC04','N',0,0,0,'vishal','2025-12-16 11:30:00','vishal','2025-12-15 19:31:31','vishal','2025-12-16 11:09:42'),(484,0,0,6329,294,0,'2025-12-16','09:30:00','2025-12-16','17:55:00','Y','B0002','RC04','RC04','N',0,0,0,'riya','2025-12-16 17:55:00','vishal','2025-12-16 09:35:42','riya','2025-12-16 17:45:48'),(485,0,0,6330,295,0,'2025-12-16','00:05:00','2025-12-16','07:10:00','Y','B0012','RC03','RC03','N',0,0,0,'vishal','2025-12-16 07:10:00','vishal','2025-12-16 09:56:42','vishal','2025-12-16 19:30:33'),(486,0,0,6334,296,0,'2025-12-16','02:30:00','2025-12-16','15:30:00','Y','B0024','RC07','RC07','N',0,0,0,'vishal','2025-12-16 15:30:00','vishal','2025-12-16 10:02:46','vishal','2025-12-16 15:21:55'),(487,0,0,6346,297,4056,'2025-12-16','10:40:00','0000-00-00','00:00:00','N','B0014','RC03','RC03','N',0,0,0,'','0000-00-00 00:00:00','vishal','2025-12-16 10:39:32','','0000-00-00 00:00:00'),(488,0,0,6163,284,0,'2025-12-16','10:45:00','2025-12-16','11:15:00','Y','B0007','RC04','RC04','N',0,0,0,'vishal','2025-12-16 11:15:00','vishal','2025-12-16 11:08:41','vishal','2025-12-16 11:26:39'),(489,0,0,6163,284,0,'2025-12-16','11:15:00','2025-12-19','14:21:00','Y','B0008','RC04','RC04','N',0,0,0,'riya','2025-12-19 14:21:00','vishal','2025-12-16 11:26:39','riya','2025-12-19 14:22:02'),(490,0,0,6334,296,0,'2025-12-16','15:30:00','2025-12-16','19:10:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-12-16 19:10:00','vishal','2025-12-16 15:21:55','vishal','2025-12-16 19:29:13'),(491,0,0,6397,298,0,'2025-12-16','15:30:00','2025-12-18','15:00:00','Y','B0021','RC07','RC07','N',0,0,0,'vishal','2025-12-18 15:00:00','riya','2025-12-16 15:45:00','vishal','2025-12-18 17:41:24'),(492,0,0,6447,299,4209,'2025-12-16','20:20:00','2025-12-16','21:00:00','Y','B0013','RC03','RC03','N',0,0,0,'vishal','2025-12-16 21:00:00','vishal','2025-12-16 20:21:25','vishal','2025-12-17 09:58:20'),(493,0,0,6448,300,0,'2025-12-16','21:00:00','2025-12-17','18:51:00','Y','B0002','RC04','RC04','N',0,0,0,'vishal','2025-12-17 18:51:00','vishal','2025-12-16 21:05:47','vishal','2025-12-17 18:54:56'),(494,0,0,6447,299,4209,'2025-12-16','21:00:00','2025-12-19','19:00:00','Y','B0001','RC04','RC04','N',0,0,0,'vishal','2025-12-19 19:00:00','vishal','2025-12-17 09:58:20','vishal','2025-12-19 19:09:27'),(495,0,0,6461,301,4206,'2025-12-17','10:15:00','2025-12-19','19:45:00','Y','B0007','RC04','RC04','N',0,0,0,'vishal','2025-12-19 19:45:00','vishal','2025-12-17 10:23:24','vishal','2025-12-19 19:54:22'),(496,0,0,6576,302,4269,'2025-12-17','20:30:00','2025-12-20','13:41:00','Y','B0013','RC03','RC03','N',0,0,0,'riya','2025-12-20 13:41:00','vishal','2025-12-17 20:35:24','riya','2025-12-20 13:41:25'),(497,0,0,6610,303,4268,'2025-12-17','23:16:00','2025-12-18','19:55:00','Y','B0012','RC03','RC03','N',0,0,0,'vishal','2025-12-18 19:55:00','riya','2025-12-18 11:18:17','vishal','2025-12-18 20:20:55'),(498,0,0,6613,304,0,'2025-12-18','09:00:00','2025-12-20','11:40:00','Y','B0006','RC04','RC04','N',0,0,0,'riya','2025-12-20 11:40:00','riya','2025-12-18 11:28:20','riya','2025-12-20 14:14:34'),(499,0,0,6397,298,0,'2025-12-18','15:00:00','2025-12-20','17:30:00','Y','B0003','RC04','RC04','N',0,0,0,'riya','2025-12-20 17:30:00','vishal','2025-12-18 17:41:24','riya','2025-12-20 18:02:19'),(500,0,0,6706,305,0,'2025-12-18','19:50:00','2025-12-19','01:00:00','Y','B0015','RC03','RC03','N',0,0,0,'riya','2025-12-19 01:00:00','vishal','2025-12-18 19:56:26','riya','2025-12-19 10:24:51'),(501,0,0,6707,306,0,'2025-12-18','19:30:00','2025-12-19','20:40:00','Y','B0002','RC04','RC04','N',0,0,0,'vishal','2025-12-19 20:40:00','vishal','2025-12-18 20:25:35','vishal','2025-12-19 20:30:03'),(502,0,0,6712,307,2738,'2025-12-19','10:00:00','2025-12-19','19:30:00','Y','B0011','RC03','RC03','N',0,0,0,'vishal','2025-12-19 19:30:00','riya','2025-12-19 10:08:08','vishal','2025-12-19 19:31:42'),(503,0,0,6706,305,0,'2025-12-19','01:00:00','2025-12-20','12:36:00','Y','B0021','RC07','RC07','N',0,0,0,'riya','2025-12-20 12:36:00','riya','2025-12-19 10:24:51','riya','2025-12-20 12:36:13'),(504,0,0,6737,308,0,'2025-12-19','10:00:00','2025-12-19','15:20:00','Y','B0009','RC03','RC03','N',0,0,0,'riya','2025-12-19 15:20:00','riya','2025-12-19 11:14:01','riya','2025-12-19 16:26:31'),(505,0,0,6769,309,0,'2025-12-19','12:00:00','2025-12-21','13:15:00','Y','B0023','RC07','RC07','N',0,0,0,'vishal','2025-12-21 13:15:00','riya','2025-12-19 12:26:03','vishal','2025-12-21 13:24:38'),(506,0,0,6780,310,0,'2025-12-19','15:38:00','2025-12-23','12:15:00','Y','B0012','RC03','RC03','N',0,0,0,'riya','2025-12-23 12:15:00','riya','2025-12-19 15:49:52','riya','2025-12-23 13:15:19'),(507,0,0,6461,301,4206,'2025-12-19','19:45:00','2025-12-20','12:25:00','Y','B0001','RC04','RC04','N',0,0,0,'riya','2025-12-20 12:25:00','vishal','2025-12-19 19:54:22','riya','2025-12-20 13:51:13'),(508,0,0,6843,311,0,'2025-12-19','21:00:00','2025-12-22','21:00:00','Y','B0002','RC04','RC04','N',0,0,0,'vishal','2025-12-22 21:00:00','vishal','2025-12-19 21:12:23','vishal','2025-12-22 20:57:43'),(509,0,0,6165,285,0,'2025-12-19','22:00:00','2025-12-22','13:50:00','Y','B0024','RC07','RC07','N',0,0,0,'riya','2025-12-22 13:50:00','vishal','2025-12-19 22:22:12','riya','2025-12-22 14:51:32'),(510,0,0,6882,312,0,'2025-12-20','14:30:00','2025-12-21','20:15:00','Y','B0016','RC03','RC03','N',0,0,0,'vishal','2025-12-21 20:15:00','riya','2025-12-20 14:42:00','vishal','2025-12-21 20:24:47'),(511,0,0,6884,313,2680,'2025-12-20','12:30:00','0000-00-00','00:00:00','N','B0001','RC04','RC04','N',0,0,0,'','0000-00-00 00:00:00','riya','2025-12-20 16:39:45','','0000-00-00 00:00:00'),(512,0,0,6892,314,4224,'2025-12-20','20:54:00','2025-12-22','12:20:00','Y','B0006','RC04','RC04','N',0,0,0,'riya','2025-12-22 12:20:00','riya','2025-12-20 20:56:14','riya','2025-12-22 13:16:11'),(513,0,0,6769,309,0,'2025-12-21','13:15:00','2025-12-21','20:15:00','Y','B0011','RC03','RC03','N',0,0,0,'vishal','2025-12-21 20:15:00','vishal','2025-12-21 13:24:38','vishal','2025-12-21 20:25:09'),(514,0,0,6882,312,0,'2025-12-21','20:15:00','2025-12-22','12:30:00','Y','B0013','RC03','RC03','N',0,0,0,'riya','2025-12-22 12:30:00','vishal','2025-12-21 20:24:47','riya','2025-12-22 13:25:23'),(515,0,0,6769,309,0,'2025-12-21','20:15:00','2025-12-23','16:30:00','Y','B0016','RC03','RC03','N',0,0,0,'vishal','2025-12-23 16:30:00','vishal','2025-12-21 20:25:09','vishal','2025-12-23 16:55:57'),(516,0,0,6898,315,0,'2025-12-21','14:00:00','2025-12-23','11:05:00','Y','B0011','RC03','RC03','N',0,0,0,'riya','2025-12-23 11:05:00','vishal','2025-12-21 20:26:45','riya','2025-12-23 11:43:16'),(517,0,0,6899,316,4172,'2025-12-21','18:00:00','2025-12-23','16:45:00','Y','B0003','RC04','RC04','N',0,0,0,'vishal','2025-12-23 16:45:00','vishal','2025-12-21 20:37:59','vishal','2025-12-23 16:56:43'),(518,0,0,6900,317,0,'2025-12-21','19:00:00','0000-00-00','00:00:00','N','B0007','RC04','RC04','N',0,0,0,'','0000-00-00 00:00:00','vishal','2025-12-21 20:52:07','','0000-00-00 00:00:00'),(519,0,0,6913,318,0,'2025-12-22','02:00:00','2025-12-23','10:45:00','Y','B0026','RC07','RC07','N',0,0,0,'riya','2025-12-23 10:45:00','riya','2025-12-22 09:37:42','riya','2025-12-23 10:51:08'),(520,0,0,6917,319,0,'2025-12-22','09:00:00','2025-12-23','12:30:00','Y','B0008','RC04','RC04','N',0,0,0,'riya','2025-12-23 12:30:00','riya','2025-12-22 09:55:05','riya','2025-12-23 12:33:33'),(521,0,0,6922,320,0,'2025-12-22','10:00:00','2025-12-22','18:15:00','Y','B0015','RC03','RC03','N',0,0,0,'vishal','2025-12-22 18:15:00','riya','2025-12-22 10:07:35','vishal','2025-12-22 18:20:57'),(522,0,0,6961,321,0,'2025-12-21','23:00:00','2025-12-22','18:45:00','Y','B0008','RC04','RC04','N',0,0,0,'vishal','2025-12-22 18:45:00','riya','2025-12-22 11:33:06','vishal','2025-12-22 18:55:09'),(523,0,0,6969,322,0,'2025-12-22','11:40:00','0000-00-00','00:00:00','N','B0019','RC03','RC03','N',0,0,0,'','0000-00-00 00:00:00','riya','2025-12-22 11:52:42','','0000-00-00 00:00:00'),(524,0,0,6974,323,0,'2025-12-22','12:02:00','2025-12-23','12:15:00','Y','B0023','RC07','RC07','N',0,0,0,'riya','2025-12-23 12:15:00','riya','2025-12-22 12:12:07','riya','2025-12-23 12:21:31'),(525,0,0,6978,324,0,'2025-12-22','12:19:00','2025-12-22','19:40:00','Y','B0020','RC03','RC03','N',0,0,0,'vishal','2025-12-22 19:40:00','riya','2025-12-22 12:22:55','vishal','2025-12-22 19:50:55'),(526,0,0,6991,325,0,'2025-12-22','16:20:00','0000-00-00','00:00:00','N','B0017','RC03','RC03','N',0,0,0,'','0000-00-00 00:00:00','riya','2025-12-22 16:25:05','','0000-00-00 00:00:00'),(527,0,0,7010,326,0,'2025-12-22','17:30:00','0000-00-00','00:00:00','N','B0006','RC04','RC04','N',0,0,0,'','0000-00-00 00:00:00','vishal','2025-12-22 17:40:16','','0000-00-00 00:00:00'),(528,0,0,7066,327,4496,'2025-12-22','21:30:00','0000-00-00','00:00:00','N','B0013','RC03','RC03','N',0,0,0,'','0000-00-00 00:00:00','vishal','2025-12-22 21:41:35','','0000-00-00 00:00:00'),(529,0,0,7067,328,0,'2025-12-22','22:00:00','0000-00-00','00:00:00','N','B0015','RC03','RC03','N',0,0,0,'','0000-00-00 00:00:00','vishal','2025-12-22 22:11:13','','0000-00-00 00:00:00'),(530,0,0,6913,318,0,'2025-12-23','10:45:00','2025-12-23','13:45:00','Y','B0020','RC03','RC03','N',0,0,0,'riya','2025-12-23 13:45:00','riya','2025-12-23 10:51:08','riya','2025-12-23 13:58:20'),(531,0,0,7084,329,0,'2025-12-23','02:00:00','0000-00-00','00:00:00','N','B0025','RC07','RC07','N',0,0,0,'','0000-00-00 00:00:00','riya','2025-12-23 10:59:04','riya','2025-12-23 11:26:43'),(532,0,0,6974,323,0,'2025-12-23','12:15:00','0000-00-00','00:00:00','N','B0005','RC04','RC04','N',0,0,0,'','0000-00-00 00:00:00','riya','2025-12-23 12:21:31','','0000-00-00 00:00:00'),(533,0,0,6913,318,0,'2025-12-23','13:45:00','0000-00-00','00:00:00','N','B0002','RC04','RC04','N',0,0,0,'','0000-00-00 00:00:00','riya','2025-12-23 13:58:20','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `room_alocation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `room_cat`
--

DROP TABLE IF EXISTS `room_cat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `room_cat` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `room_cat_id` varchar(4) NOT NULL,
  `room_cat_dis` varchar(30) NOT NULL,
  `category` varchar(4) NOT NULL COMMENT 'room category',
  `service_charge_category` char(1) NOT NULL,
  `sequence_no` tinyint(4) NOT NULL,
  `room_cat_color` varchar(15) NOT NULL,
  `room_cat_group` varchar(6) NOT NULL,
  `room_category_for_college` enum('Y','N') NOT NULL DEFAULT 'N',
  `is_reserve_allow` enum('Y','N') NOT NULL DEFAULT 'N',
  `is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`room_cat_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `room_cat`
--

LOCK TABLES `room_cat` WRITE;
/*!40000 ALTER TABLE `room_cat` DISABLE KEYS */;
INSERT INTO `room_cat` VALUES (0,0,'RC01','GENERAL WARD','','A',0,'#000000','0','N','N','N','thims','2018-12-31 13:03:27','thims','2025-10-03 15:40:18'),(0,0,'RC02','SEMI SPECIAL TRIPLE SHARING','','B',0,'#000000','0','N','N','N','thims','2018-12-31 13:03:54','thims','2025-10-03 15:40:25'),(0,0,'RC03','SEMI SPECIAL TWIN SHARING','','B',0,'','0','N','N','Y','thims','2018-12-31 13:04:27','thims','2023-01-11 19:40:09'),(0,0,'RC04','SPECIAL','','C',0,'','0','N','N','Y','thims','2018-12-31 13:04:48','thims','2023-01-11 19:40:22'),(0,0,'RC05','DELUXE','','D',0,'#000000','0','N','N','N','thims','2018-12-31 13:05:03','thims','2025-10-03 15:40:33'),(0,0,'RC06','SUITE','','E',0,'#000000','0','N','N','N','thims','2018-12-31 13:05:19','thims','2025-10-03 15:40:40'),(0,0,'RC07','ICU - 1','','C',0,'#FFFFFF','0','N','N','Y','thims','2018-12-31 13:05:37','vishal','2025-10-11 18:10:09'),(0,0,'RC08','ICU-ISOLATION','','C',0,'#000000','0','N','N','N','thims','2022-11-26 16:19:31','thims','2025-10-03 15:40:47'),(0,0,'RC09','NICU','','C',0,'#000000','0','N','N','N','thims','2019-03-12 22:47:41','thims','2025-10-03 15:40:55'),(0,0,'RC10','GENERAL WARD ISOLATION','','C',0,'#000000','0','N','N','N','thims','2019-03-12 22:47:41','thims','2025-10-03 15:41:03'),(0,0,'RC11','EMERGANCY BED','','C',0,'#000000','0','N','N','N','thims','2019-03-12 22:47:41','thims','2025-10-03 15:41:08'),(0,0,'RC12','ISOLATION WARD','','A',0,'#FFFFFF','','N','N','Y','vishal','2025-10-11 18:10:38','','0000-00-00 00:00:00'),(0,0,'RC13','DELUXE ROOM','','A',0,'#B4C6E7','','N','N','Y','riya','2025-12-02 13:57:34','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `room_cat` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `room_master`
--

DROP TABLE IF EXISTS `room_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `room_master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `room_id` varchar(6) NOT NULL,
  `room_dis` varchar(30) NOT NULL,
  `total_beds` int(11) NOT NULL,
  `room_cat_id` varchar(4) NOT NULL,
  `secondary_room_cat` varchar(4) NOT NULL,
  `block_undermaintenance` enum('Y','N') NOT NULL DEFAULT 'N',
  `floor` varchar(30) NOT NULL,
  `is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `block_by` varchar(50) NOT NULL,
  `block_datetime` datetime NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`room_id`),
  KEY `room_cat_id` (`room_cat_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `room_master`
--

LOCK TABLES `room_master` WRITE;
/*!40000 ALTER TABLE `room_master` DISABLE KEYS */;
INSERT INTO `room_master` VALUES (0,0,'B0001','401',1,'RC04','','N','4TH','Y','','0000-00-00 00:00:00','thims','2025-10-03 03:59:12','','0000-00-00 00:00:00'),(0,0,'B0002','404',1,'RC04','','N','4TH ','Y','','0000-00-00 00:00:00','thims','2025-10-03 03:59:47','','0000-00-00 00:00:00'),(0,0,'B0003','405',1,'RC04','','N','4TH','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:00:04','','0000-00-00 00:00:00'),(0,0,'B0004','406',1,'RC04','','N','4TH','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:00:16','','0000-00-00 00:00:00'),(0,0,'B0005','407',1,'RC04','','N','4TH','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:00:26','','0000-00-00 00:00:00'),(0,0,'B0006','408',1,'RC04','','N','4TH','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:00:35','','0000-00-00 00:00:00'),(0,0,'B0007','304',1,'RC04','','N','3RD','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:00:44','thims','2025-10-03 04:01:01'),(0,0,'B0008','305',1,'RC04','','N','3RD','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:01:14','','0000-00-00 00:00:00'),(0,0,'B0009','306',1,'RC03','RC03','N','3RD','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:01:29','riya','2025-12-02 01:22:53'),(0,0,'B0010','307',1,'RC03','RC03','N','3RD','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:01:39','riya','2025-12-02 01:23:07'),(0,0,'B0011','402',1,'RC03','','N','4TH','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:02:13','','0000-00-00 00:00:00'),(0,0,'B0012','403',1,'RC03','','N','4TH','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:02:27','','0000-00-00 00:00:00'),(0,0,'B0013','409',1,'RC03','','N','4TH','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:02:38','','0000-00-00 00:00:00'),(0,0,'B0014','410',1,'RC03','','N','4TH','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:02:50','','0000-00-00 00:00:00'),(0,0,'B0015','411',1,'RC03','','N','4TH','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:03:00','','0000-00-00 00:00:00'),(0,0,'B0016','412',1,'RC03','','N','4TH','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:03:11','','0000-00-00 00:00:00'),(0,0,'B0017','308',1,'RC03','','N','3RD','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:03:28','','0000-00-00 00:00:00'),(0,0,'B0018','309',1,'RC03','','N','3RD','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:03:37','','0000-00-00 00:00:00'),(0,0,'B0019','310',1,'RC03','','N','3RD','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:03:48','','0000-00-00 00:00:00'),(0,0,'B0020','311',1,'RC03','','N','3RD','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:03:59','','0000-00-00 00:00:00'),(0,0,'B0021','207',1,'RC07','','N','2ND','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:04:34','','0000-00-00 00:00:00'),(0,0,'B0022','208',1,'RC07','','N','2ND','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:04:47','','0000-00-00 00:00:00'),(0,0,'B0023','209',1,'RC07','','N','2ND','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:04:58','','0000-00-00 00:00:00'),(0,0,'B0024','210',1,'RC07','','N','2ND','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:05:08','','0000-00-00 00:00:00'),(0,0,'B0025','211',1,'RC07','','N','2ND','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:05:18','','0000-00-00 00:00:00'),(0,0,'B0026','212',1,'RC07','','N','2ND','Y','','0000-00-00 00:00:00','thims','2025-10-03 04:05:28','','0000-00-00 00:00:00'),(0,0,'B0027','213',1,'RC07','','N','2','Y','','0000-00-00 00:00:00','vishal','2025-10-11 06:41:45','','0000-00-00 00:00:00'),(0,0,'B0028','214',1,'RC07','','N','2','Y','','0000-00-00 00:00:00','vishal','2025-10-11 06:41:56','','0000-00-00 00:00:00'),(0,0,'B0029','302',1,'RC03','RC03','N','3RD','Y','','0000-00-00 00:00:00','riya','2025-12-02 01:12:51','riya','2025-12-03 02:54:04'),(0,0,'B0030','301',1,'RC04','RC04','N','3RD','Y','','0000-00-00 00:00:00','riya','2025-12-02 01:21:14','','0000-00-00 00:00:00'),(0,0,'B0031','303',1,'RC03','RC03','N','3RD','Y','','0000-00-00 00:00:00','riya','2025-12-02 01:22:20','','0000-00-00 00:00:00'),(0,0,'B0032','501',1,'RC13','RC13','N','5TH','Y','','0000-00-00 00:00:00','riya','2025-12-02 01:29:27','','0000-00-00 00:00:00'),(0,0,'B0033','502',1,'RC13','RC13','N','5TH','Y','','0000-00-00 00:00:00','riya','2025-12-02 01:29:44','','0000-00-00 00:00:00'),(0,0,'B0034','503',1,'RC13','RC13','N','5TH','Y','','0000-00-00 00:00:00','riya','2025-12-02 01:29:59','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `room_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `room_master_bgh`
--

DROP TABLE IF EXISTS `room_master_bgh`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `room_master_bgh` (
  `sr` int(11) NOT NULL AUTO_INCREMENT,
  `room_id` varchar(6) NOT NULL,
  `dept_id` varchar(6) NOT NULL,
  `gender` enum('M','F','B') NOT NULL,
  `unit` int(11) NOT NULL,
  PRIMARY KEY (`sr`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `room_master_bgh`
--

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

--
-- Table structure for table `room_reservation`
--

DROP TABLE IF EXISTS `room_reservation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `room_reservation` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `room_cat_id` varchar(4) NOT NULL,
  `room_id` varchar(6) NOT NULL,
  `room_dis` varchar(30) NOT NULL,
  `user_id` varchar(25) NOT NULL COMMENT 'reserve by user',
  `is_reserve` enum('Y','N') NOT NULL DEFAULT 'Y',
  `remark` varchar(200) NOT NULL,
  `reserve_datetime` datetime NOT NULL,
  `occupied_by` varchar(20) NOT NULL COMMENT 'register patient IP ID',
  `occupied_datetime` datetime NOT NULL,
  `unreserve_by` varchar(25) NOT NULL,
  `unreserve_datetime` datetime NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `room_reservation`
--

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

--
-- Table structure for table `room_transfer_request`
--

DROP TABLE IF EXISTS `room_transfer_request`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `room_transfer_request` (
  `req_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `req_date` datetime NOT NULL,
  `req_by` varchar(50) NOT NULL,
  `pat_id` int(11) NOT NULL,
  `ip_id` bigint(20) NOT NULL,
  `current_room_id` varchar(10) NOT NULL,
  `new_room_category` varchar(20) NOT NULL,
  `new_room_id` varchar(10) NOT NULL,
  `requesting_remark` text NOT NULL,
  `require_completion_date` datetime NOT NULL,
  `actual_completion_date` datetime NOT NULL,
  `resolution_remark` text NOT NULL,
  `resolution_status` enum('C','P') NOT NULL DEFAULT 'P',
  `resolution_by` varchar(50) NOT NULL,
  `CreatedBy` varchar(50) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(50) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`req_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `room_transfer_request`
--

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

--
-- Table structure for table `salary_type_master`
--

DROP TABLE IF EXISTS `salary_type_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salary_type_master` (
  `salary_type_id` int(11) NOT NULL AUTO_INCREMENT,
  `salary_type` varchar(15) NOT NULL,
  `is_active` enum('Y','N') NOT NULL,
  PRIMARY KEY (`salary_type_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salary_type_master`
--

LOCK TABLES `salary_type_master` WRITE;
/*!40000 ALTER TABLE `salary_type_master` DISABLE KEYS */;
INSERT INTO `salary_type_master` VALUES (1,'CTC','Y'),(2,'per_hour','Y'),(3,'stipend','Y');
/*!40000 ALTER TABLE `salary_type_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_return_barcode_reprint`
--

DROP TABLE IF EXISTS `sales_return_barcode_reprint`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_return_barcode_reprint` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `trn_type` char(6) NOT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return ',
  `trn_id` int(11) NOT NULL,
  `product_tracking_sr_no` varchar(25) NOT NULL,
  `barcode_quantity` int(11) NOT NULL DEFAULT '0',
  `barcode_source` enum('IR','CC','DCR','GINR') NOT NULL DEFAULT 'IR',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_return_barcode_reprint`
--

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

--
-- Table structure for table `service_cate_charges`
--

DROP TABLE IF EXISTS `service_cate_charges`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `service_cate_charges` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `category_id` int(11) NOT NULL AUTO_INCREMENT,
  `service_cd` varchar(8) NOT NULL,
  `rate_card_id` int(11) NOT NULL,
  `charge_amendment_no` smallint(6) NOT NULL,
  `room_service_charge_category` char(1) NOT NULL,
  `room_cat` varchar(4) NOT NULL,
  `Consultant_Level_Id` tinyint(3) unsigned NOT NULL,
  `percent_charges` float NOT NULL,
  `charge` float NOT NULL,
  `gst_percentage` float(9,2) NOT NULL,
  `emergency_charges` float NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`category_id`),
  KEY `service_cd` (`service_cd`,`rate_card_id`),
  KEY `service_cd_2` (`service_cd`,`rate_card_id`)
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_cate_charges`
--

LOCK TABLES `service_cate_charges` WRITE;
/*!40000 ALTER TABLE `service_cate_charges` DISABLE KEYS */;
INSERT INTO `service_cate_charges` VALUES (0,0,1,'ROOM0007',1,1,'','RC03',0,0,1500,0.00,0,'reception','2025-10-11 12:35:06','thims','2025-10-11 18:00:32'),(0,0,2,'ROOM0007',1,1,'','RC04',0,0,2000,0.00,0,'reception','2025-10-11 12:35:06','thims','2025-10-11 18:00:32'),(0,0,3,'ROOM0007',1,1,'','RC07',0,0,2000,0.00,0,'reception','2025-10-11 12:35:06','thims','2025-10-11 18:00:32'),(0,0,4,'ROOM0009',1,1,'','RC03',0,0,2900,0.00,0,'thims','2025-10-11 18:01:57','thims','2025-10-11 18:02:04'),(0,0,5,'ROOM0009',1,1,'','RC04',0,0,3200,0.00,0,'thims','2025-10-11 18:01:57','thims','2025-10-11 18:02:04'),(0,0,6,'ROOM0009',1,1,'','RC07',0,0,5500,0.00,0,'thims','2025-10-11 18:01:57','thims','2025-10-11 18:02:04'),(0,0,7,'DRC0019',1,3,'','RC03',0,0,800,0.00,0,'thims','2025-10-11 18:03:24','vishal','2025-10-12 12:34:24'),(0,0,8,'DRC0019',1,3,'','RC04',0,0,1100,0.00,0,'thims','2025-10-11 18:03:24','vishal','2025-10-12 12:34:24'),(0,0,9,'DRC0019',1,3,'','RC07',0,0,1600,0.00,0,'thims','2025-10-11 18:03:24','vishal','2025-10-12 12:34:24'),(0,0,10,'DRC0018',1,4,'','RC03',0,0,800,0.00,0,'thims','2025-10-11 18:03:47','vishal','2025-10-12 12:34:10'),(0,0,11,'DRC0018',1,4,'','RC04',0,0,1100,0.00,0,'thims','2025-10-11 18:03:47','vishal','2025-10-12 12:34:10'),(0,0,12,'DRC0018',1,4,'','RC07',0,0,1600,0.00,0,'thims','2025-10-11 18:03:47','vishal','2025-10-12 12:34:10'),(0,0,13,'AECO0008',1,5,'','RC03',0,0,300,0.00,0,'thims','2025-10-11 18:06:07','vishal','2025-10-11 18:51:48'),(0,0,14,'AECO0008',1,5,'','RC04',0,0,400,0.00,0,'thims','2025-10-11 18:06:07','vishal','2025-10-11 18:51:48'),(0,0,15,'AECO0008',1,5,'','RC07',0,0,800,0.00,0,'thims','2025-10-11 18:06:07','vishal','2025-10-11 18:51:48'),(0,0,16,'CARE0001',1,4,'','RC03',0,0,200,0.00,0,'thims','2025-10-11 18:07:29','thims','2025-10-11 18:08:16'),(0,0,17,'CARE0001',1,4,'','RC04',0,0,200,0.00,0,'thims','2025-10-11 18:07:29','thims','2025-10-11 18:08:16'),(0,0,18,'CARE0001',1,4,'','RC07',0,0,600,0.00,0,'thims','2025-10-11 18:07:29','thims','2025-10-11 18:08:16'),(0,0,19,'DRC0020',1,0,'','RC03',0,0,800,0.00,0,'vishal','2025-10-11 18:56:38','','0000-00-00 00:00:00'),(0,0,20,'DRC0020',1,0,'','RC04',0,0,1100,0.00,0,'vishal','2025-10-11 18:56:38','','0000-00-00 00:00:00'),(0,0,21,'DRC0020',1,0,'','RC07',0,0,1600,0.00,0,'vishal','2025-10-11 18:56:38','','0000-00-00 00:00:00'),(0,0,22,'DRC0021',1,2,'','RC03',0,0,1500,0.00,0,'vishal','2025-10-22 13:10:19','vishal','2025-10-22 13:21:32'),(0,0,23,'DRC0021',1,2,'','RC04',0,0,2000,0.00,0,'vishal','2025-10-22 13:10:19','vishal','2025-10-22 13:21:32'),(0,0,24,'DRC0021',1,2,'','RC07',0,0,2000,0.00,0,'vishal','2025-10-22 13:10:19','vishal','2025-10-22 13:21:32'),(0,0,25,'DRC0021',1,2,'','RC12',0,0,2000,0.00,0,'vishal','2025-10-22 13:10:19','vishal','2025-10-22 13:21:32');
/*!40000 ALTER TABLE `service_cate_charges` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `service_cate_charges_amendment`
--

DROP TABLE IF EXISTS `service_cate_charges_amendment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `service_cate_charges_amendment` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `category_id` int(11) NOT NULL AUTO_INCREMENT,
  `service_cd` varchar(8) NOT NULL,
  `rate_card_id` int(11) NOT NULL,
  `charge_amendment_no` smallint(6) NOT NULL,
  `room_service_charge_category` char(1) NOT NULL,
  `room_cat` varchar(4) NOT NULL,
  `Consultant_Level_Id` tinyint(3) unsigned NOT NULL,
  `percent_charges` float NOT NULL,
  `charge` float NOT NULL,
  `gst_percentage` float(9,2) NOT NULL,
  `emergency_charges` float NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`category_id`),
  UNIQUE KEY `service_cd_3` (`service_cd`,`rate_card_id`,`charge_amendment_no`,`room_service_charge_category`,`room_cat`,`Consultant_Level_Id`),
  KEY `service_cd` (`service_cd`,`rate_card_id`),
  KEY `service_cd_2` (`service_cd`,`rate_card_id`)
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_cate_charges_amendment`
--

LOCK TABLES `service_cate_charges_amendment` WRITE;
/*!40000 ALTER TABLE `service_cate_charges_amendment` DISABLE KEYS */;
INSERT INTO `service_cate_charges_amendment` VALUES (0,0,1,'ROOM0007',1,0,'','RC03',0,0,1500,0.00,0,'thims','2025-10-11 18:00:32','','0000-00-00 00:00:00'),(0,0,2,'ROOM0007',1,0,'','RC04',0,0,2000,0.00,0,'thims','2025-10-11 18:00:32','','0000-00-00 00:00:00'),(0,0,3,'ROOM0007',1,0,'','RC07',0,0,2000,0.00,0,'thims','2025-10-11 18:00:32','','0000-00-00 00:00:00'),(0,0,4,'ROOM0009',1,0,'','RC03',0,0,2900,0.00,0,'thims','2025-10-11 18:02:04','','0000-00-00 00:00:00'),(0,0,5,'ROOM0009',1,0,'','RC04',0,0,3200,0.00,0,'thims','2025-10-11 18:02:04','','0000-00-00 00:00:00'),(0,0,6,'ROOM0009',1,0,'','RC07',0,0,5500,0.00,0,'thims','2025-10-11 18:02:04','','0000-00-00 00:00:00'),(0,0,7,'AECO0008',1,2,'','RC03',0,0,300,0.00,0,'thims','2025-10-11 18:06:15','','0000-00-00 00:00:00'),(0,0,8,'AECO0008',1,2,'','RC04',0,0,400,0.00,0,'thims','2025-10-11 18:06:15','','0000-00-00 00:00:00'),(0,0,9,'AECO0008',1,2,'','RC07',0,0,800,0.00,0,'thims','2025-10-11 18:06:15','','0000-00-00 00:00:00'),(0,0,10,'CARE0001',1,3,'','RC03',0,0,200,0.00,0,'thims','2025-10-11 18:08:16','','0000-00-00 00:00:00'),(0,0,11,'CARE0001',1,3,'','RC04',0,0,200,0.00,0,'thims','2025-10-11 18:08:16','','0000-00-00 00:00:00'),(0,0,12,'CARE0001',1,3,'','RC07',0,0,600,0.00,0,'thims','2025-10-11 18:08:16','','0000-00-00 00:00:00'),(0,0,13,'DRC0018',1,2,'','RC03',0,0,800,0.00,0,'vishal','2025-10-11 18:27:29','','0000-00-00 00:00:00'),(0,0,14,'DRC0018',1,2,'','RC04',0,0,1100,0.00,0,'vishal','2025-10-11 18:27:29','','0000-00-00 00:00:00'),(0,0,15,'DRC0018',1,2,'','RC07',0,0,1600,0.00,0,'vishal','2025-10-11 18:27:29','','0000-00-00 00:00:00'),(0,0,16,'DRC0019',1,1,'','RC03',0,0,800,0.00,0,'vishal','2025-10-11 18:27:42','','0000-00-00 00:00:00'),(0,0,17,'DRC0019',1,1,'','RC04',0,0,1100,0.00,0,'vishal','2025-10-11 18:27:42','','0000-00-00 00:00:00'),(0,0,18,'DRC0019',1,1,'','RC07',0,0,1600,0.00,0,'vishal','2025-10-11 18:27:42','','0000-00-00 00:00:00'),(0,0,19,'AECO0008',1,3,'','RC03',0,0,300,0.00,0,'vishal','2025-10-11 18:50:15','thims','2025-10-11 18:06:15'),(0,0,20,'AECO0008',1,3,'','RC04',0,0,400,0.00,0,'vishal','2025-10-11 18:50:15','thims','2025-10-11 18:06:15'),(0,0,21,'AECO0008',1,3,'','RC07',0,0,800,0.00,0,'vishal','2025-10-11 18:50:15','thims','2025-10-11 18:06:15'),(0,0,22,'AECO0008',1,4,'','RC03',0,0,300,0.00,0,'vishal','2025-10-11 18:51:48','vishal','2025-10-11 18:50:15'),(0,0,23,'AECO0008',1,4,'','RC04',0,0,400,0.00,0,'vishal','2025-10-11 18:51:48','vishal','2025-10-11 18:50:15'),(0,0,24,'AECO0008',1,4,'','RC07',0,0,800,0.00,0,'vishal','2025-10-11 18:51:48','vishal','2025-10-11 18:50:15'),(0,0,25,'DRC0018',1,3,'','RC03',0,0,800,0.00,0,'vishal','2025-10-12 12:34:10','vishal','2025-10-11 18:27:29'),(0,0,26,'DRC0018',1,3,'','RC04',0,0,1100,0.00,0,'vishal','2025-10-12 12:34:10','vishal','2025-10-11 18:27:29'),(0,0,27,'DRC0018',1,3,'','RC07',0,0,1600,0.00,0,'vishal','2025-10-12 12:34:10','vishal','2025-10-11 18:27:29'),(0,0,28,'DRC0019',1,2,'','RC03',0,0,800,0.00,0,'vishal','2025-10-12 12:34:24','vishal','2025-10-11 18:27:42'),(0,0,29,'DRC0019',1,2,'','RC04',0,0,1100,0.00,0,'vishal','2025-10-12 12:34:24','vishal','2025-10-11 18:27:42'),(0,0,30,'DRC0019',1,2,'','RC07',0,0,1600,0.00,0,'vishal','2025-10-12 12:34:24','vishal','2025-10-11 18:27:42'),(0,0,31,'DRC0021',1,0,'','RC03',0,0,1500,0.00,0,'vishal','2025-10-22 13:19:36','','0000-00-00 00:00:00'),(0,0,32,'DRC0021',1,0,'','RC04',0,0,2000,0.00,0,'vishal','2025-10-22 13:19:36','','0000-00-00 00:00:00'),(0,0,33,'DRC0021',1,0,'','RC07',0,0,2000,0.00,0,'vishal','2025-10-22 13:19:36','','0000-00-00 00:00:00'),(0,0,34,'DRC0021',1,0,'','RC12',0,0,2000,0.00,0,'vishal','2025-10-22 13:19:36','','0000-00-00 00:00:00'),(0,0,38,'DRC0021',1,1,'','RC03',0,0,1500,0.00,0,'vishal','2025-10-22 13:21:32','vishal','2025-10-22 13:19:36'),(0,0,39,'DRC0021',1,1,'','RC04',0,0,2000,0.00,0,'vishal','2025-10-22 13:21:32','vishal','2025-10-22 13:19:36'),(0,0,40,'DRC0021',1,1,'','RC07',0,0,2000,0.00,0,'vishal','2025-10-22 13:21:32','vishal','2025-10-22 13:19:36'),(0,0,41,'DRC0021',1,1,'','RC12',0,0,2000,0.00,0,'vishal','2025-10-22 13:21:32','vishal','2025-10-22 13:19:36');
/*!40000 ALTER TABLE `service_cate_charges_amendment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `service_doctor_assignment`
--

DROP TABLE IF EXISTS `service_doctor_assignment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `service_doctor_assignment` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `service_cd` varchar(8) NOT NULL,
  `doctor_id` int(11) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(50) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(50) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `service_cd` (`service_cd`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`service_cd`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_doctor_assignment`
--

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

--
-- Table structure for table `service_group_master`
--

DROP TABLE IF EXISTS `service_group_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `service_group_master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `service_grp_cd` varchar(4) NOT NULL,
  `service_grp_name` varchar(30) NOT NULL,
  `dept_cat` varchar(10) NOT NULL,
  `order_in_bill` int(11) NOT NULL,
  `req` varchar(1) NOT NULL,
  `i_or_e` char(1) NOT NULL COMMENT 'I: Internal or E: External',
  `emergency_fee_percent` float(5,2) NOT NULL,
  `is_gst_applicable` enum('Y','N') NOT NULL DEFAULT 'N',
  `active` enum('Y','N') NOT NULL DEFAULT 'N',
  `CreatedBy` varchar(50) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(50) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`service_grp_cd`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_group_master`
--

LOCK TABLES `service_group_master` WRITE;
/*!40000 ALTER TABLE `service_group_master` DISABLE KEYS */;
INSERT INTO `service_group_master` VALUES (0,0,'ABCG','CGHS - ABDOMEN / GI\nSURGERY','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'ADMN','ADMINISTRATIVE CHARGES','Hospital',16,'N','I',0.00,'N','Y','thims','2019-06-01 00:00:00','','0000-00-00 00:00:00'),(0,0,'AECO','ACCIDENT & EMERGENCY - CONSULT','Hospital',0,'N','I',0.00,'N','Y','thims','2019-03-25 00:00:00','','0000-00-00 00:00:00'),(0,0,'AMBS','AMBULANCE SERVICES','',15,'N','I',0.00,'N','Y','thims','2019-06-01 00:00:00','','0000-00-00 00:00:00'),(0,0,'ANES','ANESTHESIOLOGIST PROCEDURE','Hospital',13,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'ANST','ANAESTHESIA CHARGES ','Hospital',13,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'ARTS','ARTHROSCOPY SURGERY','Hospital',0,'N','I',0.00,'N','Y','thims','2019-03-25 00:00:00','','0000-00-00 00:00:00'),(0,0,'AUTO','Auto Calculated Charges','Hospital',0,'N','I',0.00,'N','Y','thims','2018-07-14 00:00:00','','0000-00-00 00:00:00'),(0,0,'BARS','BARIATRIC SURGERY PACKAGE','Hospital',4,'N','I',0.00,'N','Y','thims','2019-07-10 00:00:00','','0000-00-00 00:00:00'),(0,0,'BBCG','CGHS - LABORATORY MEDICINE / B','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'BECG','CGHS - BREAST','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'BICG','CGHS - Biopsies','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'BMED','BIO MEDICAL EQUIPMENT CHARGES','Hospital',14,'N','I',0.00,'N','Y','thims','2019-06-01 00:00:00','','0000-00-00 00:00:00'),(0,0,'BMPM','PMJAY - Burns Management','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'BOCG','CGHS - BONE DENSITOMETRY (DEXA','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'BRCG','CGHS -  BURNS AND\nPLASTIC SURG','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'CANT','CANTEEN','Hospital',0,'N','I',0.00,'N','Y','rohit','2022-08-04 11:31:17','','0000-00-00 00:00:00'),(0,0,'CARE','Care Charges','Hospital',0,'N','I',0.00,'N','Y','thims','2018-07-17 00:00:00','','0000-00-00 00:00:00'),(0,0,'CARP','CARDIOLOGY PROCEDURE ','Hospital',0,'N','I',0.00,'N','Y','rohit','2022-08-26 10:44:28','jainil','2022-11-04 15:26:57'),(0,0,'CASP','CATARACT SURGERY PACKAGE','Hospital',4,'Y','I',0.00,'N','Y','thims','2021-06-28 20:35:34','','0000-00-00 00:00:00'),(0,0,'CDCG','CGHS - CARDIOVASCULAR AND CARD','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'CHEM','ONCOLOGY PROCEDURES','Hospital',13,'N','I',0.00,'N','Y','thims','2019-06-01 00:00:00','thims','2021-03-04 18:44:49'),(0,0,'CODC','COLOUR DOPPLER CHARGES','Hospital',7,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','thims','2021-03-04 18:54:36'),(0,0,'CPKG','CUSTOM PACKAGE','Hospital',0,'N','I',0.00,'N','Y','thims','2019-08-20 00:00:00','','0000-00-00 00:00:00'),(0,0,'CRIP','CARDIOLOGY INVESTIGATIONS','Hospital',8,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'CSCG','CGHS - CSF','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'CTCG','CGHS - CT','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'CTSN','CT SCAN','Hospital',7,'Y','I',50.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'DECG','CGHS - DENTAL','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'DRC','DOCTOR VISIT CHARGES','Hospital',3,'N','I',0.00,'N','Y','thims','2019-05-20 00:00:00','','0000-00-00 00:00:00'),(0,0,'DRPR','DERMATOLOGY','Hospital',13,'N','I',0.00,'N','Y','thims','2019-06-01 00:00:00','','0000-00-00 00:00:00'),(0,0,'DTPR','DENTAL PROCEDURE','Hospital',13,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'DYLS','DIALYSIS','Hospital',99,'Y','i',0.00,'N','Y','thims','2022-07-02 15:42:42','','0000-00-00 00:00:00'),(0,0,'EDPR','ENDOSCOPY PROCEDURE','Hospital',13,'N','I',0.00,'N','Y','thims','2019-06-01 00:00:00','','0000-00-00 00:00:00'),(0,0,'ENCG','CGHS -  ENDOCRINOLOGY   ( IN A','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'ENTP','ENT & THORACIC PROCEDURE','Hospital',13,'N','I',0.00,'N','Y','thims','2019-06-01 00:00:00','','0000-00-00 00:00:00'),(0,0,'ENTS','ENT SURGERY','Hospital',4,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'ERPM','PMJAY - Emergency Room Package','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'ETCG','CGHS - ENT','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'GASS','GASTRO-INTESTINAL SURGERY','Hospital',4,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'GECG','CGHS -  GASTRO-ENTEROLOGY','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'GENI','GENITO URINARY SURGERY - CL5','Hospital',13,'N','I',0.00,'N','Y','thims','2019-07-30 00:00:00','','0000-00-00 00:00:00'),(0,0,'GENS','GENERAL SURGERY','Hospital',4,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'GICG','CGHS -  INVESTIGATION /\nGENITO','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'GNCG','CGHS - GENERAL\nSURGERY','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'GSCG','CGHS - TESTS IN GASTROENTEROLO','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'GYNP','GYNECOLOGY PROCEDURES','Hospital',13,'N','I',0.00,'N','Y','thims','2019-06-01 00:00:00','parth','2021-10-22 13:34:50'),(0,0,'GYNS','GYNECOLOGY & OBS. SURGERY','Hospital',4,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'HACG','CGHS - HARMONES','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'HANS','HAND SURGERY','Hospital',4,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'HCCG','CGHS - Head and neck cancer','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'HDPM','PMJAY - High end Diagnostics','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'HMPM','PMJAY - High end Medicine','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'HNCG','CGHS - HEAD AND NECK','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'HPKG','HEALTH PACKAGE','Hospital',0,'N','I',0.00,'N','Y','thims','2020-08-22 12:01:27','','0000-00-00 00:00:00'),(0,0,'HPPM','PMJAY - High end procedures','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'ICCG','CGHS -  INVESTIGATION / CARDIO','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'IDCG','CGHS -  INVESTIGATION / DENTAL','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'IDPM','PMJAY - Infectious Diseases','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'IECG','CGHS -  INVESTIGATION /\nENDOCR','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'IGCG','CGHS -  INVESTIGATION / GASTRO','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'INCG','CGHS -  INVESTIGATION /  TUMOU','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','PMJAY - Interventional Neurora','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'IPCG','CGHS -  INVESTIGATION / PET SC','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'IRCG','CGHS -  INVESTIGATION / RADIO-','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'ITCG','CGHS -  INVESTIGATION / TUMOUR','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'JRPM','PMJAY - Joint Replacement ','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'KNHI','PROC FOR KNEE & HIP REPL CL14','Hospital',13,'N','I',0.00,'N','Y','thims','2019-07-30 00:00:00','','0000-00-00 00:00:00'),(0,0,'LAB','PATHOLOGY AND LABORATORY TEST ','Hospital',6,'Y','I',0.00,'N','Y','thims','2019-06-24 00:00:00','thims','2021-03-04 18:46:03'),(0,0,'LBCG','CGHS - LABORATORY MEDICINE / B','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'LCCG','CGHS - LABORATORY MEDICINE / C','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'LHCG','CGHS - LABORATORY MEDICINE /\nH','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'LMCG','CGHS - LABORATORY MEDICINE /\nH','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'LNCG','CGHS - LABORATORY MEDICINE / C','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'LYCG','CGHS - LABORATORY MEDICINE / C','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'MACG','CGHS - MAMMOGRAPHY','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','PMJAY - Cardiology','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','PMJAY - General Medicine','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'MISC','Miscellaneous Services And Cha','Hospital',0,'N','I',0.00,'N','Y','thims','2018-11-23 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','PMJAY - Mental Disorders Packa','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'MNPM','PMJAY - Neo-natal care Package','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','PMJAY - Medical Oncology','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPR','MINOR OPERATIVE PROCEDURE','Hospital',13,'N','I',0.00,'N','Y','thims','2019-05-20 00:00:00','yatin','2021-07-12 17:22:54'),(0,0,'MPPM','PMJAY - Paediatric Medical man','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRCG','CGHS - MRI','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRI','MRI','Hospital',0,'N','E',0.00,'N','Y','rohit','2022-10-19 09:52:52','','0000-00-00 00:00:00'),(0,0,'MRPM','PMJAY - Radiation Oncology','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'NACG','CGHS -  NEUROLOGICAL INVESTIGA','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'NARC','NARCOTIC MEDICATION CHARGE','Hospital',0,'N','I',0.00,'N','Y','parth','2020-07-25 12:54:41','','0000-00-00 00:00:00'),(0,0,'NBCG','CGHS - NUCLEAR MEDICINE / BRAC','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'NCCG','CGHS - NUCLEAR MEDICINE / CHEM','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'NECG','CGHS -  INVESTIGATION /\nNEUROS','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'NEPP','NEPHROLOGY PROCEDURE','Hospital',13,'N','I',0.00,'N','Y','thims','2019-06-01 00:00:00','','0000-00-00 00:00:00'),(0,0,'NEU1','NEUROLOGY INVESTIGATIONS','Hospital',9,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'NEUS','NEUROLOGY SURGERY','Hospital',4,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'NFCG','CGHS - NAME OF INVESTIGATION /','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'NPCG','CGHS -  NEPHROLOGY\nAND  UROLOG','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'NRCG','CGHS - NUCLEAR MEDICINE / RADI','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'NSCG','CGHS -  NEURO-\nSURGERY','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'NUCG','CGHS - Nutritional Markers','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'OECG','CGHS - OESOPHAGUS','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'OETR','OTHER CHARGES','Hospital',0,'N','I',0.00,'N','Y','thims','2025-10-11 17:49:13','','0000-00-00 00:00:00'),(0,0,'OGCG','CGHS - OBSTETRICS\nAND GYNAECOL','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'ONCS','ONCO SURGERY','Hospital',4,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'OPC','GRADE WISE OPERATION CHARGES','Hospital',0,'N','I',0.00,'N','Y','thims','2018-09-18 00:00:00','','0000-00-00 00:00:00'),(0,0,'OPCG','CGHS - OPTHALMOLOGY','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'OPHP','OPHTHALMOLOGY PROCEDURE','Hospital',13,'N','I',0.00,'N','Y','thims','2019-06-01 00:00:00','','0000-00-00 00:00:00'),(0,0,'OPTH','OPHTHALMOLOGY - CLUSTER-18 ','Hospital',13,'N','I',0.00,'N','Y','thims','2019-07-30 00:00:00','','0000-00-00 00:00:00'),(0,0,'OPTS','OPHTHALMOLOGY SURGERY','Hospital',4,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'OPWD','OPD & WARD PROCEDURE','Hospital',13,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'ORCG','CGHS -  ORTHOPEDICS','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'ORTP','ORTHOPEDIC PROCEDURES','Hospital',13,'N','I',0.00,'N','Y','thims','2019-06-01 00:00:00','','0000-00-00 00:00:00'),(0,0,'ORTS','ORTHOPADIC SURGERY','Hospital',4,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'OSCG','CGHS -  OSTEOLOGY','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTCG','CGHS - OTHERS','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTHO','ORTHOPEDICS - CLUSTER-26 ','Hospital',13,'N','I',0.00,'N','Y','thims','2019-07-30 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','PMJAY - Organ & Tissue transpl','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'PACG','CGHS -  PAEDIATRIC\nSURGERY','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'PAIN','PAIN MANAGEMENT','Hospital',4,'','I',0.00,'N','Y','thims','2024-06-25 12:37:59','','0000-00-00 00:00:00'),(0,0,'PEDP','PEDIATRIC PROCEDURE','Hospital',13,'N','I',0.00,'N','Y','thims','2019-06-01 00:00:00','','0000-00-00 00:00:00'),(0,0,'PEDS','PEDIATRIC SURGERY','Hospital',4,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'PHAR','PHARMACY CHARGES','Hospital',0,'N','I',0.00,'N','Y','thims','2021-03-02 16:55:02','','0000-00-00 00:00:00'),(0,0,'PHCG','CGHS - \nPHYSIOTHERAPY','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'PHYS','PHYSIOTHERAPY CHARGES','Hospital',13,'N','I',0.00,'N','Y','thims','2019-05-20 00:00:00','','0000-00-00 00:00:00'),(0,0,'PKG','OPD CONSULTATION CHARGES','Hospital',0,'N','I',0.00,'N','Y','thims','2019-05-20 00:00:00','thims','2021-03-04 18:47:49'),(0,0,'PKGC','PPN PACKAGES - CASHLESS','Hospital',0,'Y','I',0.00,'N','Y','thims','2021-08-02 18:58:38','','0000-00-00 00:00:00'),(0,0,'PLAS','PLASTIC SURGERY','Hospital',4,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','PMJAY - Palliative Medicine','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'POLY','POLY-TRAUMA CLUSTER-8','Hospital',13,'N','I',0.00,'N','Y','thims','2019-07-30 00:00:00','','0000-00-00 00:00:00'),(0,0,'PTES','PTERYGIUM SURGERY PACKAGE','Hospital',4,'Y','I',0.00,'N','Y','thims','2021-06-28 20:29:14','','0000-00-00 00:00:00'),(0,0,'PUCG','CGHS -  INVESTIGATION / PULMON','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'PULM','PULMONOLOGY','Hospital',13,'N','I',0.00,'N','Y','thims','2019-06-01 00:00:00','','0000-00-00 00:00:00'),(0,0,'PULP','PULMONARY INVESTIGATIONS & PRO','Hospital',13,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'REG','ADMISSION CHARGES (ONE TIME)','Hospital',1,'N','I',0.00,'N','Y','thims','2019-05-20 00:00:00','','0000-00-00 00:00:00'),(0,0,'ROOM','ROOM CHARGES','Hospital',2,'N','I',0.00,'N','Y','thims','2019-05-20 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','PMJAY - Orthopaedics','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','PMJAY - Surgical Oncology','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','PMJAY - Opthalmology','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','PMJAY - General Surgery','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'SKCG','CGHS - SKIN','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','PMJAY - Otorhinolaryngology','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','PMJAY - Oral and Maxillofacial','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','PMJAY - Neurosurgery','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','PMJAY - Obstetrics   Gynaecolo','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPCG','CGHS - ICU/CCU\nPROCEDURES (SPE','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPIS','SPINE SURGERY','Hospital',4,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','PMJAY - Plastic   reconstructi','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','PMJAY - Paediatric surgery','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','PMJAY - Polytrauma','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','PMJAY - Urology','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'SURG','SURGERY CHARGES ','Hospital',4,'N','I',0.00,'N','Y','thims','2019-05-20 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','PMJAY - Cardio-thoracic   Vasc','Hospital',0,'Y','I',0.00,'N','Y','thims','2024-04-08 00:00:00','','0000-00-00 00:00:00'),(0,0,'THOS','THORACIC SURGERY','Hospital',4,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'UCTC','USG / CT GUIDED PROCEDURE CHAR','Hospital',7,'Y','I',100.00,'N','Y','thims','2021-03-04 18:50:19','','0000-00-00 00:00:00'),(0,0,'UROP','UROLOGY MANAGEMENT PROCEDURE','Hospital',13,'N','I',0.00,'N','Y','thims','2019-06-01 00:00:00','','0000-00-00 00:00:00'),(0,0,'UROS','UROLOGY SURGERY','Hospital',4,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'USCG','CGHS - USG Charges','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'USG','USG','Hospital',7,'Y','I',100.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'VACC','VACCINE CHARGES ','Hospital',0,'N','I',0.00,'N','Y','THIMS','2019-03-26 00:00:00','','0000-00-00 00:00:00'),(0,0,'VASS','VASCULAR SURGERY','Hospital',4,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'WPRC','WARD/ICU PROCEDURES CHARGES','Hospital',13,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'XRCG','CGHS - X-Ray Charges','Hospital',0,'Y','I',0.00,'N','Y','thims','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(0,0,'XRY','X-RAY','Hospital',7,'N','I',0.00,'N','Y','thims','2019-06-24 00:00:00','','0000-00-00 00:00:00'),(0,0,'XRYP','X-RAY PROCEDURE CHARGES','Hospital',7,'Y','I',0.00,'N','Y','thims','2021-03-04 18:51:23','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `service_group_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `service_group_rate_ris`
--

DROP TABLE IF EXISTS `service_group_rate_ris`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `service_group_rate_ris` (
  `service_grp_cd` varchar(4) NOT NULL,
  `op_rate` float NOT NULL,
  `ip_rate` float NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(20) NOT NULL,
  `lastmodified_date` datetime NOT NULL,
  PRIMARY KEY (`service_grp_cd`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_group_rate_ris`
--

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

--
-- Table structure for table `service_master`
--

DROP TABLE IF EXISTS `service_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `service_master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `service_grp_cd` varchar(4) NOT NULL,
  `service_short_code` varchar(4) NOT NULL,
  `service_cd` varchar(8) NOT NULL,
  `hospital_mandal` enum('H','M') NOT NULL DEFAULT 'H' COMMENT 'Store H for Hospital service or M for Mandal service',
  `vendor_srv_cd` varchar(10) NOT NULL,
  `service_amendment_no` smallint(6) NOT NULL,
  `service_sequence_no` int(11) NOT NULL COMMENT 'service sequence number ',
  `service_type` varchar(2) NOT NULL COMMENT 'blank - Normal, HP - Health Package, SP - Surgery Package ',
  `film_size_cd` varchar(6) NOT NULL,
  `service_desc` varchar(200) NOT NULL,
  `test_cd` varchar(200) NOT NULL,
  `test_grp_cd` varchar(200) NOT NULL,
  `effective_from` date NOT NULL,
  `effective_to` date NOT NULL,
  `general_rate_min` int(11) NOT NULL,
  `general_rate_max` int(11) NOT NULL,
  `special_rate_min` int(11) NOT NULL,
  `special_rate_max` int(11) NOT NULL,
  `general_charge` int(11) NOT NULL,
  `special_charge` int(11) NOT NULL,
  `rate_unit` char(5) NOT NULL,
  `charges` float NOT NULL,
  `charges_for_ip_patient` float NOT NULL,
  `btob_charges` float DEFAULT NULL,
  `category` varchar(10) NOT NULL COMMENT 'store room category if service grp code = ''Room'' or ''DRM''',
  `procedure_grade_category` smallint(6) NOT NULL,
  `is_OT_usage_required` enum('Y','N') NOT NULL DEFAULT 'N',
  `category_charge` char(1) NOT NULL COMMENT 'Room category wise service charges. Y or N',
  `doctor_allocation_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `provider_code_for_business_entity` int(11) NOT NULL COMMENT 'provider code form business entity table',
  `hierarchy_level` char(3) NOT NULL,
  `visit_type` enum('R','X','U') NOT NULL DEFAULT 'U',
  `parentOrChild` char(1) NOT NULL COMMENT 'P for parent service and C for child service',
  `is_biopsy` enum('Y','N') NOT NULL DEFAULT 'N',
  `active_YN` char(1) NOT NULL,
  `is_approved` enum('N','Y') NOT NULL DEFAULT 'Y',
  `approved_by` varchar(20) NOT NULL,
  `approved_datetime` datetime NOT NULL,
  `i_or_e` char(1) NOT NULL COMMENT 'I: Internal or E: External',
  `over_night_charge_auto_include` enum('N','Y') NOT NULL DEFAULT 'N',
  `order_in_bill` int(11) NOT NULL DEFAULT '99',
  `sl_brand_cd` varchar(2) NOT NULL,
  `sl_grp_cd` varchar(2) NOT NULL,
  `sl_fmly_cd` varchar(2) NOT NULL,
  `sl_catg_cd` varchar(2) NOT NULL,
  `user_name` varchar(20) NOT NULL,
  `last_update_date` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`service_cd`),
  KEY `service_grp_cd` (`service_grp_cd`,`service_cd`),
  KEY `i_or_e` (`i_or_e`),
  KEY `service_grp_cd_2` (`service_grp_cd`,`service_cd`),
  KEY `i_or_e_2` (`i_or_e`),
  KEY `idx_sm` (`service_cd`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_master`
--

LOCK TABLES `service_master` WRITE;
/*!40000 ALTER TABLE `service_master` DISABLE KEYS */;
INSERT INTO `service_master` VALUES (0,0,'ABCG','','ABCG0001','H','',0,0,'','','Gastroscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1725,1725,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0002','H','',0,0,'','','Gastric & Duodenal Biopsy (Endoscopic)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1755,1755,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0003','H','',0,0,'','','Pyloromyotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2800,2800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0004','H','',0,0,'','','Gastrostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7763,7763,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0005','H','',0,0,'','','Simple Closure of Perforated peptic Ulcer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9775,9775,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0006','H','',0,0,'','','Vagotomy Pyleroplasty / Gastro Jejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12420,12420,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0007','H','',0,0,'','','Duodenojejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17055,17055,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0008','H','',0,0,'','','Partial/Subtotal Gastrectomy for Carcinoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20700,20700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0009','H','',0,0,'','','Partial/Subtotal Gastrectomy for Ulcer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',21000,21000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0010','H','',0,0,'','','Operation for Bleeding Peptic Ulcer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20976,20976,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0011','H','',0,0,'','','Operation for Gastrojejunal Ulcer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19780,19780,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0012','H','',0,0,'','','Total Gastrectomy for Cancer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22000,22000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0013','H','',0,0,'','','Highly Selective Vagotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18630,18630,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0014','H','',0,0,'','','Selective Vagotomy & Drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18630,18630,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0015','H','',0,0,'','','Congenital Diaphragmatic Hernia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17078,17078,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0016','H','',0,0,'','','Hiatus Hernia Repair- Abdominal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14490,14490,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0017','H','',0,0,'','','Hiatus Hernia Repair- Transthoracic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16100,16100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0018','H','',0,0,'','','Exploratory Laparotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11385,11385,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0019','H','',0,0,'','','Epigastric Hernia Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11385,11385,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0020','H','',0,0,'','','Umbilical Hernia Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11385,11385,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0021','H','',0,0,'','','Ventral /incisional  Hernia  Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9264,9264,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0022','H','',0,0,'','','Inguinal Hernia  Herniorraphy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14835,14835,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0023','H','',0,0,'','','Inguinal Hernia - Hernioplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16500,16500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0024','H','',0,0,'','','Femoral Hernia Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18285,18285,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0025','H','',0,0,'','','Rare Hernias Repair (Spigalion, Obturator,\nLumbar, Sciatic)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18975,18975,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0026','H','',0,0,'','','Splenectomy - For Trauma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18975,18975,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0027','H','',0,0,'','','Splenectomy - For Hypersplenism','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13041,13041,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0028','H','',0,0,'','','Splenorenal Anastomosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',23000,23000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0029','H','',0,0,'','','Portocaval Anastomosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',28750,28750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0030','H','',0,0,'','','Direct Operation on Oesophagus for Portal\nHypertension','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22885,22885,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0031','H','',0,0,'','','Mesentericocaval Anastomosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25450,25450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0032','H','',0,0,'','','Warren Shunt','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',28750,28750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0033','H','',0,0,'','','Pancerato Duodenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',21735,21735,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0034','H','',0,0,'','','By Pass Procedure for Inoperable Carcinoma of\nPancreas','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20700,20700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0035','H','',0,0,'','','Cystojejunostomy or Cystogastrostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14490,14490,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0036','H','',0,0,'','','Cholecystectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10292,10292,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0037','H','',0,0,'','','Cholecystectomy & Exploration of CBD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14375,14375,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0038','H','',0,0,'','','Repair of CBD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13600,13600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0039','H','',0,0,'','','Operation for Hydatid Cyst of Liver','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11902,11902,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0040','H','',0,0,'','','Cholecystostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10292,10292,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0041','H','',0,0,'','','Hepatic Resections (Lobectomy /Hepatectomy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14375,14375,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0042','H','',0,0,'','','Operation on Adrenal Glands - Bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',23495,23495,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0043','H','',0,0,'','','Operation on Adrenal Glands - Unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12420,12420,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0044','H','',0,0,'','','Appendicectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8108,8108,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0045','H','',0,0,'','','Appendicular Abscess ? Drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9775,9775,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0046','H','',0,0,'','','Mesenteric Cyst- Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9936,9936,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0047','H','',0,0,'','','Peritonioscopy/Laparoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4600,4600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0048','H','',0,0,'','','Jejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5175,5175,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0049','H','',0,0,'','','Ileostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13869,13869,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0050','H','',0,0,'','','Resection & Anastomosis of Small Intestine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18630,18630,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0051','H','',0,0,'','','Duodenal Diverticulum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18400,18400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0052','H','',0,0,'','','Operation for Intestinal Obstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9315,9315,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0053','H','',0,0,'','','Operation for Intestinal perforation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',34200,34200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0054','H','',0,0,'','','Benign Tumours of Small Intestine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17595,17595,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0055','H','',0,0,'','','Excision of Small Intestine Fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17595,17595,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0056','H','',0,0,'','','Operations for GI Bleed','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15900,15900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0057','H','',0,0,'','','Operations for Haemorrhage of Small Intestines','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19550,19550,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0058','H','',0,0,'','','Operations of the Duplication of the Intestines','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17825,17825,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0059','H','',0,0,'','','Operations for Recurrent Intestinal Obstruction (Noble Plication & Other Operations for\nAdhesions)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20700,20700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0060','H','',0,0,'','','Ilieosigmoidostomy and related resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15111,15111,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0061','H','',0,0,'','','Ilieotransverse Colostomy and related resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15111,15111,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0062','H','',0,0,'','','Caecostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3903,3903,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0063','H','',0,0,'','','Loop Colostomy Transverse Sigmoid','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11799,11799,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0064','H','',0,0,'','','Terminal Colostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15525,15525,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0065','H','',0,0,'','','Closure of Colostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15732,15732,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0066','H','',0,0,'','','Right Hemi-Colectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13200,13200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0067','H','',0,0,'','','Left Hemi-Colectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13200,13200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0068','H','',0,0,'','','Total Colectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17250,17250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0069','H','',0,0,'','','Operations for Volvulus of Large Bowel','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',24920,24920,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0070','H','',0,0,'','','Operations for Sigmoid Diverticulitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18630,18630,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0071','H','',0,0,'','','Fissure in Ano with Internal sphinctrectomy with\nfissurectomy.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13800,13800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0072','H','',0,0,'','','Fissure in Ano - Fissurectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5750,5750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0073','H','',0,0,'','','Rectal Polyp-Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5658,5658,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0074','H','',0,0,'','','Fistula in Ano  - High Fistulectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16780,16780,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0075','H','',0,0,'','','Fistula in Ano - Low Fistulectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9867,9867,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0076','H','',0,0,'','','Prolapse Rectum - Theirch Wiring','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10350,10350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0077','H','',0,0,'','','Prolapse Rectum - Rectopexy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5750,5750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0078','H','',0,0,'','','Prolapse Rectum -  Grahams Operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18400,18400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0079','H','',0,0,'','','Operations for Hirschsprungs Disease','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14260,14260,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0080','H','',0,0,'','','Excision of Pilonidal Sinus (open)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0081','H','',0,0,'','','Excision of Pilonidal Sinus with closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0082','H','',0,0,'','','Abdomino-Perineal Excision of Rectum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16470,16470,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0083','H','',0,0,'','','Anterior Resection of rectum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19665,19665,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0084','H','',0,0,'','','Pull Through Abdominal Resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17170,17170,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0085','H','',0,0,'','','Retro Peritoneal Tumor Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18000,18000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0086','H','',0,0,'','','Radio ablation of varicose veins','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0087','H','',0,0,'','','Laser ablation of varicose veins','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16800,16800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0088','H','',0,0,'','','Laproscopic Fundoplication','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19300,19300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0089','H','',0,0,'','','Laproscopic Spleenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',23420,23420,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0090','H','',0,0,'','','Laproscopic Removal of hydatid cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16500,16500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0091','H','',0,0,'','','Laproscopic treatment of Pseudo Pancreatic cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18000,18000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0092','H','',0,0,'','','Laproscopic whipples operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20000,20000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0093','H','',0,0,'','','Laproscopic GI bypass operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22000,22000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0094','H','',0,0,'','','Laproscopic Total Colectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25000,25000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0095','H','',0,0,'','','Laproscopic Hemi Colectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',23000,23000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0096','H','',0,0,'','','Laproscopic Anterior Resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',23000,23000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0097','H','',0,0,'','','Laproscopic Cholecystetomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18975,18975,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0098','H','',0,0,'','','Laproscopic Appedicectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18000,18000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0099','H','',0,0,'','','Laproscopic Hernia inguinal repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18000,18000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0100','H','',0,0,'','','Laproscopic ventral Hernia Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17500,17500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0101','H','',0,0,'','','Laproscopic Paraumblical Hernia Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12580,12580,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0102','H','',0,0,'','','Laproscopic Adrenelectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0103','H','',0,0,'','','Laproscopic Nephrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19870,19870,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0104','H','',0,0,'','','Other Major Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',34200,34200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ABCG','','ABCG0105','H','',0,0,'','','Other Minor Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6000,6000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ADMN','','ADMN0001','H','',0,0,'','','ATTENDANT PASS CHARGE (IN CASE OF MISSING PASS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ADMN','','ADMN0002','H','',0,0,'','','CD CHARGES - CT SCAN REPORT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ADMN','','ADMN0003','H','',0,0,'','','EXTRA CT SCAN PER FILM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ADMN','','ADMN0004','H','',0,0,'','','EXTRA X-RAY PER FILM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ADMN','','ADMN0005','H','',0,0,'','','MANAGEMENT CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ADMN','','ADMN0006','H','',0,0,'','','MEDICAL CERTIFICATE CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ADMN','','ADMN0007','H','',0,0,'','','MLC CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ADMN','','ADMN0008','H','',0,0,'','','MRD DOCUMENTS CHARGE / PAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5,5,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ADMN','','ADMN0009','H','',0,0,'','','PATIENT BED SHEET CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ADMN','','ADMN0010','H','',0,0,'','','PATIENT DRESS CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ADMN','','ADMN0011','H','',0,0,'','','PERSONAL PROTECTIVE EQUIPMENT (PPE) CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ADMN','','ADMN0012','H','',0,0,'','','PRIVATE ATTENDENT CHARGE FOR 12 HOURS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ADMN','','ADMN0013','H','',0,0,'','','PRIVATE NURSE CHARGE FOR 12 HOURS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ADMN','','ADMN0014','H','',0,0,'','','VISITOR PASS (IN CASE OF MISSING PASS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AECO','','AECO0001','H','',0,0,'','','DAY CARE CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AECO','','AECO0002','H','',0,0,'','','DAY EMERGENCY- SENIOR CONSULTATION (A&E)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'L03','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AECO','','AECO0003','H','',0,0,'','','DAY EMERGENCY- SPECIALIST CONSULTATION (A&E)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'L02','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AECO','','AECO0004','H','',0,0,'','','DAY EMERGENCY- SUPER SPECIALIST CONSULTATION (A&E)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,2000,NULL,'',0,'N','N','Y',0,'L04','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AECO','','AECO0005','H','',0,0,'','','NIGHT EMERGENCY- SENIOR CONSULTATION (A & E)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'L03','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AECO','','AECO0006','H','',0,0,'','','NIGHT EMERGENCY- SPECIALIST CONSULTATION (A&E)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,1500,NULL,'',0,'N','N','Y',0,'L02','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AECO','','AECO0007','H','',0,0,'','','NIGHT EMERGENCY- SUPER SPECIALIST CONSULTATION (A & E)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'L04','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AECO','','AECO0008','H','',5,0,'','','RMO CHARGES DAY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','Y','N',0,'','U','','N','Y','Y','vishal','2025-10-11 18:51:48','I','Y',99,'','','','','thims','2024-04-01 13:18:00','vishal','2025-10-11 18:51:48'),(0,0,'AECO','','AECO0009','H','',0,0,'','','RMO CHARGES NIGHT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AMBS','','AMBS0001','H','',0,0,'','','AMBULANCE (ICU ON WHEELS) CHARGE (TO AND FRO PER KM)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'km',30,30,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',25,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AMBS','','AMBS0002','H','',0,0,'','','AMBULANCE (ICU ON WHEELS) WAITING CHARGE (PER HOUR)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AMBS','','AMBS0003','H','',0,0,'','','AMBULANCE ADDITIONAL ATTENDENT CHARGE (PER HOUR) OR MINIMUM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AMBS','','AMBS0004','H','',0,0,'','','AMBULANCE ANESTHETIST CHARGE (PER HOUR) OR MIINIMUM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AMBS','','AMBS0005','H','',0,0,'','','AMBULANCE CHARGE (TO AND FRO PER KM)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',15,15,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AMBS','','AMBS0006','H','',0,0,'','','AMBULANCE INFUSION OR SYRINGE PUMP CHARGE (PER PUMP)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AMBS','','AMBS0007','H','',0,0,'','','AMBULANCE MEDICAL OFFICER CHARGE (PER HOUR) OR MINIMUM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AMBS','','AMBS0008','H','',0,0,'','','AMBULANCE OXYGEN CHARGE (PER KM)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',10,10,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AMBS','','AMBS0009','H','',0,0,'','','AMBULANCE STAFF NURSE CHARGE (PER HOUR) OR MINIMUM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AMBS','','AMBS0010','H','',0,0,'','','AMBULANCE VENTILATOR CHARGE (PER HOUR)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'AMBS','','AMBS0011','H','',0,0,'','','AMBULANCE WAITING CHARGE (PER HOUR)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0001','H','',0,0,'','','ANESTHESIOLOGIST CHARGES (PROCEDURE/ STAND BY) MAJOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0002','H','',0,0,'','','ANESTHESIOLOGIST CHARGES (PROCEDURE/ STAND BY) MINOR ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0003','H','',0,0,'','','ARTERIAL LINE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0004','H','',0,0,'','','CARDIO VERSION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0005','H','',0,0,'','','CPR (CARDIO PULMONARY RESUSCITATION)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0006','H','',0,0,'','','CSF MANOMETRY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',700,700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0007','H','',0,0,'','','CVP (CENTRAL VENUS PRESSURE) LINE INSERTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1920,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0008','H','',0,0,'','','EPIDURAL INECTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0009','H','',0,0,'','','EPIDURAL/ SIMPLE PAIN PROCEDURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3500,3500,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0010','H','',0,0,'','','Femoral Vein Catheterization','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0011','H','',0,0,'','','INTUBATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0012','H','',0,0,'','','INTUBATION CHARGE - COVID','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0013','H','',0,0,'','','IV CANNULA INSERTION (BY ANESTHETIST)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0014','H','',0,0,'','','LUMBAR PUNCTURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0015','H','',0,0,'','','LUMBER DRAINAGE CATHETOR PLACEMENT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0016','H','',0,0,'','','PICC (CAVA FIX) INSERTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0017','H','',0,0,'','','SWAN GANZ CATHETERIZATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0018','H','',0,0,'','','USG GUIDED POPLITEAL BLOCK','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'Y','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ANES','','ANES0019','H','',0,0,'','','USG/ IITV GUIDED PAIN MANAGEMENT PROCEDURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0001','H','',0,0,'','','Arthroscopic Bankart\'s repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0002','H','',0,0,'','','Arthroscopic lavage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0003','H','',0,0,'','','Arthroscopic rotator cuff repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0004','H','',0,0,'','','ARTHROSCOPIC SUBACROMIAL DECOMPRESSION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0005','H','',0,0,'','','Arthroscopy diagnostic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0006','H','',0,0,'','','Arthroscopy for ACL / MCL repair-reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0007','H','',0,0,'','','Arthroscopy for ACL / PCL reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0008','H','',0,0,'','','Arthroscopy for ACL reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0009','H','',0,0,'','','Arthroscopy for arthrolysis in stiff knee','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0010','H','',0,0,'','','Arthroscopy for complex meniscus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0011','H','',0,0,'','','Arthroscopy for Joint debridement / chondroplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0012','H','',0,0,'','','Arthroscopy for PCL reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0013','H','',0,0,'','','Arthroscopy for simple meniscus/ Loose body','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0014','H','',0,0,'','','Arthroscopy for Synovectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0015','H','',0,0,'','','MCL REPAIR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0016','H','',0,0,'','','Menisctomy Partial','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0017','H','',0,0,'','','Meniscus Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0018','H','',0,0,'','','MOSAICPLASTY(OSTEOTHENBRAL AUTOGRAFT TRANSFER)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20000,20000,NULL,'',9,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0019','H','',0,0,'','','PCL Reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0020','H','',0,0,'','','Q-Plasty arthroscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ARTS','','ARTS0021','H','',0,0,'','','Removal of loose bodies arthroscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BARS','','BARS0001','H','',0,0,'','','GASTRIC BYPASS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BARS','','BARS0002','H','',0,0,'','','R & Y GASTRIC BYPASS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BARS','','BARS0003','H','',0,0,'','','SLEEVE GASTRACTOMY SURGERY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BBCG','','BBCG0001','H','',0,0,'','','Blood Group & RH Type','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',30,30,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BBCG','','BBCG0002','H','',0,0,'','','Cross match','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BBCG','','BBCG0003','H','',0,0,'','','Coomb?s Test Direct','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',90,90,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BBCG','','BBCG0004','H','',0,0,'','','Coomb?s Test Indirect','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BBCG','','BBCG0005','H','',0,0,'','','3 cell panel- antibody screening for pregnant\nfemale','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',153,153,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BBCG','','BBCG0006','H','',0,0,'','','11 cells panel for antibody identification','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',170,170,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BBCG','','BBCG0007','H','',0,0,'','','HBs Ag','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',102,102,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BBCG','','BBCG0008','H','',0,0,'','','HCV','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',128,128,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BBCG','','BBCG0009','H','',0,0,'','','HIV I and II','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BBCG','','BBCG0010','H','',0,0,'','','VDRL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',43,43,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BBCG','','BBCG0011','H','',0,0,'','','RH Antibody titer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',72,72,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BBCG','','BBCG0012','H','',0,0,'','','Platelet Concentrate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',56,56,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BBCG','','BBCG0013','H','',0,0,'','','Random Donor Platelet(RDP)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',128,128,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BBCG','','BBCG0014','H','',0,0,'','','Single Donor Platelet (SDP- Aphresis)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BECG','','BECG0001','H','',0,0,'','','Drainage of abscess','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5400,5400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BECG','','BECG0002','H','',0,0,'','','Excision of lumps','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6272,6272,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BECG','','BECG0003','H','',0,0,'','','Local mastectomy-simple','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11385,11385,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BECG','','BECG0004','H','',0,0,'','','Radical mastectomy-formal  or modified.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25875,25875,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BECG','','BECG0005','H','',0,0,'','','Excision of mammary fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15525,15525,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BECG','','BECG0006','H','',0,0,'','','Segmental resection of breast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14490,14490,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BECG','','BECG0007','H','',0,0,'','','Other Major Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22500,22500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BECG','','BECG0008','H','',0,0,'','','Other Minor Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0001','H','',0,0,'','','Excision of Cervical Lymph Node','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1553,1553,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0002','H','',0,0,'','','Excision of Axillary Lymph Node','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2049,2049,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0003','H','',0,0,'','','Excision of Inguinal Lymph Node','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2049,2049,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0004','H','',0,0,'','','Excision Biopsy of Ulcers','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1323,1323,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0005','H','',0,0,'','','Excision Biopsy of Superficial Lumps','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2898,2898,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0006','H','',0,0,'','','Incision Biopsy of Growths/Ulcers','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1323,1323,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0007','H','',0,0,'','','Trucut Needle Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1395,1395,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0008','H','',0,0,'','','Percutaneous Kidney Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1470,1470,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0009','H','',0,0,'','','Marrow Biopsy (Open)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1060,1060,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0010','H','',0,0,'','','Muscle Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1323,1323,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0011','H','',0,0,'','','Scalene Node Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1320,1320,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0012','H','',0,0,'','','Excision of Sebaceous Cysts','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1118,1118,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0013','H','',0,0,'','','Excision of Superficial Lipoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1739,1739,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0014','H','',0,0,'','','Excision of Superficial Neurofibroma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2250,2250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0015','H','',0,0,'','','Excision of Dermoid Cysts','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2049,2049,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0016','H','',0,0,'','','Haemorrhoidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0017','H','',0,0,'','','Stappler haemorrhoidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4025,4025,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0018','H','',0,0,'','','keloid excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1150,1150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BICG','','BICG0019','H','',0,0,'','','Vericose vein surgery;Tendelenburg operation\nwith suturing or ligation.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7763,7763,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BMED','','BMED0001','H','',0,0,'','','AIR BED CHARGE (ALPHA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',750,750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0002','H','',0,0,'','','AIR BED CHARGE (RIPPLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0003','H','',0,0,'','','ARTHROSCOPE CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0004','H','',0,0,'','','ARTHROSCOPY SEVAR MACHINE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0005','H','',0,0,'','','BI-PAP VENTILATOR CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0006','H','',0,0,'','','BUBBLE C PAP VENTILATOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0007','H','',0,0,'','','CYSTOSCOPE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',700,700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0008','H','',0,0,'','','DVT PUMP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0009','H','',0,0,'','','ENT DRILL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0010','H','',0,0,'','','ENT MIRCROSCOPE - < 30 MINS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',700,700,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0011','H','',0,0,'','','ENT MIRCROSCOPE - >30 MINS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0012','H','',0,0,'','','EQUIPMENT CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',2200,2200,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0013','H','',0,0,'','','EQUIPMENT CHARGE FOR RF ABLATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20000,20000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0014','H','',0,0,'','','ERCP EQUIPMENT CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0015','H','',0,0,'','','ERCP EQUIPMENT CHARGE WITH BALOON','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6000,6000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0016','H','',0,0,'','','FEEDING PUMP (WITHOUT TUBE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0017','H','',0,0,'','','HARMONIC SCALPEL - < 1 HOUR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0018','H','',0,0,'','','HARMONIC SCALPEL - >1 HOUR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0019','H','',0,0,'','','HIGH FREQUENCY VENTILATOR (NEONATAL)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0020','H','',0,0,'','','IITV MAJOR SURGERY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0021','H','',0,0,'','','IITV MINOR SURGERY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0022','H','',0,0,'','','IITV SUPRAMAJOR SURGERY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0023','H','',0,0,'','','INCUBATOR CHARGES FOR ROOM (PER DAY)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0024','H','',0,0,'','','INFUSION PUMP CHARGE (PER DAY)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0025','H','',0,0,'','','ISOFLURANE / ML','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20,20,NULL,'',0,'Y','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0026','H','',0,0,'','','LAPAROSCOPY EQUIPMENT - ADVANCED LAPAROSCOPIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0027','H','',0,0,'','','LAPAROSCOPY EQUIPMENT - DIAGNOSTIC LAPAROSCOPY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0028','H','',0,0,'','','LAPAROSCOPY EQUIPMENT - THERAPEUTIC LAPAROSCOPIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0029','H','',0,0,'','','LASER SURGERY EQUIPMENT CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0030','H','',0,0,'','','MULTI PARA-MONITOR CHARGES PER DAY (WARDS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0031','H','',0,0,'','','MULTI PARA-MONITOR CHARGES PER DAY (WARDS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0032','H','',0,0,'','','NEBULIZER (PER SESSION)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0033','H','',0,0,'','','NEPHROSCOPE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0034','H','',0,0,'','','NEURO MICROSCOPE - < 1 HOUR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0035','H','',0,0,'','','NEURO MICROSCOPE - > 1 HOUR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0036','H','',0,0,'','','OPHTHAL MICROSCOPE - < 30 MINS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0037','H','',0,0,'','','OPHTHAL MICROSCOPE - >30 MINS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0038','H','',0,0,'','','OXYGEN CHARGE (MEDICAL GAS) - PER DAY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0039','H','',0,0,'','','PATIENT WARMER (PER DAY)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0040','H','',0,0,'','','PATIENT WARMER (PER HOUR)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0041','H','',0,0,'','','PHOTOTHERAPY DUEL MONITORING CHARGES (PER DAY)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',750,750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0042','H','',0,0,'','','POWER DRILL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0043','H','',0,0,'','','PROB CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0044','H','',0,0,'','','RESECTHOSCOPE CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0045','H','',0,0,'','','SEVOFLURANE / ML','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',40,40,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0046','H','',0,0,'','','SINOSCOPE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0047','H','',0,0,'','','SPINE SURGERY SPECIAL EQUIPMENT CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,0,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0048','H','',0,0,'','','URETROSCOPE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0049','H','',0,0,'','','USG MACHINE CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0050','H','',0,0,'','','VENTILATOR CHARGES (MORE THAN 6 HRS. TO 24 HRS.)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMED','','BMED0051','H','',0,0,'','','VENTILATOR CHARGES (UPTO 6 HRS.)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'BMPM','','BMPM0001','H','',0,0,'','','BM001A - Criteria 1: % Total Body Surface Area Burns (TBSA):less than 20% in adults and less than 10% in children younger  than 12 years. Dressing without anesthesia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'BMPM','','BMPM0002','H','',0,0,'','','BM001B - Criteria 2: % Total Body Surface Area Burns (TBSA): Upto 25%; Includes % TBSA skin grafted, flap cover, follow-up dressings etc. as deemed necessary; Surgical procedures are required for deep','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1,'N','N','Y',1,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:01'),(0,0,'BMPM','','BMPM0003','H','',0,0,'','','BM001C - Criteria 3: % Total Body Surface Area Burns (TBSA): 25-40 %; Includes % TBSA skin grafted, flap cover, follow-up dressings etc. as deemed necessary; Surgical procedures are required for deep ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',2,'N','N','Y',2,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:02'),(0,0,'BMPM','','BMPM0004','H','',0,0,'','','BM001D - Criteria 4: % Total Body Surface Area Burns (TBSA):40- 60 %; Includes % TBSA skin grafted, flap cover, follow-up dressings etc. as deemed necessary; Surgical procedures are required for deep ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,100000,NULL,'',3,'N','N','Y',3,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:03'),(0,0,'BMPM','','BMPM0005','H','',0,0,'','','BM001E - Criteria 5: % Total Body Surface Area Burns (TBSA):60-80 %; Includes % TBSA skin grafted, flap cover, follow-up dressings etc. as deemed necessary; Surgical procedures are required for deep b','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,100000,NULL,'',4,'N','N','Y',4,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:04'),(0,0,'BMPM','','BMPM0006','H','',0,0,'','','BM002A - Criteria 1:  % Total Body Surface Area Burns (TBSA): less than 20% in adults and less than 10% in children younger  than 12 years. Dressing without anesthesia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',5,'N','N','Y',5,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:05'),(0,0,'BMPM','','BMPM0007','H','',0,0,'','','BM002B - Criteria 2: % Total Body Surface Area Burns (TBSA): Upto 25%; Includes % TBSA skin grafted, flap cover, follow-up dressings etc. as deemed necessary; Surgical procedures are required for deep','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',6,'N','N','Y',6,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:06'),(0,0,'BMPM','','BMPM0008','H','',0,0,'','','BM002C - Criteria 3: % Total Body Surface Area Burns (TBSA): 25-40 %; Includes % TBSA skin grafted, flap cover, follow-up dressings etc. as deemed necessary; Surgical procedures are required for deep ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',7,'N','N','Y',7,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:07'),(0,0,'BMPM','','BMPM0009','H','',0,0,'','','BM002D - Criteria 4: % Total Body Surface Area Burns (TBSA):40- 60 %; Includes % TBSA skin grafted, flap cover, follow-up dressings etc. as deemed necessary; Surgical procedures are required for deep ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,100000,NULL,'',8,'N','N','Y',8,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:08'),(0,0,'BMPM','','BMPM0010','H','',0,0,'','','BM002E - Criteria 5: % Total Body Surface Area Burns (TBSA):60-80 %; Includes % TBSA skin grafted, flap cover, follow-up dressings etc. as deemed necessary; Surgical procedures are required for deep b','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,100000,NULL,'',9,'N','N','Y',9,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:09'),(0,0,'BMPM','','BMPM0011','H','',0,0,'','','BM003A - % Total Body Surface Area Burns (TBSA) - any % (not requiring admission). Needs at least 5-6 dressing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',10,'N','N','Y',10,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:10'),(0,0,'BMPM','','BMPM0012','H','',0,0,'','','BM003B - % Total Body Surface Area Burns (TBSA): Upto 40 %; Includes % TBSA skin grafted, flap cover, follow-up dressings etc. as deemed necessary; Surgical procedures are required for deep burns that','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',11,'N','N','Y',11,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:11'),(0,0,'BMPM','','BMPM0013','H','',0,0,'','','BM003C - % Total Body Surface Area Burns (TBSA): 40 % - 60 %; Includes % TBSA skin grafted, flap cover, follow-up dressings etc. as deemed necessary; Surgical procedures are required for deep burns th','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',12,'N','N','Y',12,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:12'),(0,0,'BMPM','','BMPM0014','H','',0,0,'','','BM003D - % Total Body Surface Area Burns (TBSA): >  60 %; Includes % TBSA skin grafted, flap cover, follow-up dressings etc. as deemed necessary; Surgical procedures are required for deep burns that a','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,100000,NULL,'',13,'N','N','Y',13,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:13'),(0,0,'BMPM','','BMPM0015','H','',0,0,'','','BM004A - Electrical contact burns: Low voltage - without part of limb / limb loss; Includes % TBSA skin grafted, flap cover, follow-up dressings etc. as deemed necessary; Surgical procedures are requi','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',14,'N','N','Y',14,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:14'),(0,0,'BMPM','','BMPM0016','H','',0,0,'','','BM004B - Electrical contact burns: Low voltage - with part of limb / limb loss; Includes % TBSA skin grafted, flap cover, follow-up dressings Amputation  etc. as deemed necessary; Surgical procedures ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',15,'N','N','Y',15,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:15'),(0,0,'BMPM','','BMPM0017','H','',0,0,'','','BM004C - Electrical contact burns: High voltage - with part of limb / limb loss; Includes % TBSA skin grafted, flap cover,fasciotomy +/- /amputation/Central IV Line/debridement/early skin grafting ped','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',16,'N','N','Y',16,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:16'),(0,0,'BMPM','','BMPM0018','H','',0,0,'','','BM004D - Electrical contact burns: High voltage - without part of limb / limb loss; Includes % TBSA skin grafted, flap cover, fasciotomy +/- /debridement/early skin grafting/flap cover: pedicle or fre','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',17,'N','N','Y',17,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:17'),(0,0,'BMPM','','BMPM0019','H','',0,0,'','','BM005A - Chemical burns: Without significant facial scarring and/or loss of function; Includes % TBSA skin grafted, flap cover, follow-up dressings etc. as deemed necessary; Surgical procedures are re','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',18,'N','N','Y',18,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:18'),(0,0,'BMPM','','BMPM0020','H','',0,0,'','','BM005B - Chemical burns: With significant facial scarring and/or loss of function; Includes % TBSA skin grafted, flap cover,debridement,skin grafting,follow-up dressings etc. as deemed necessary; Surg','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',19,'N','N','Y',19,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:19'),(0,0,'BMPM','','BMPM0021','H','',0,0,'','','BM006A - Post Burn Contracture surgeries for Functional Improvement (Package including splints, pressure garments, silicone - gel sheet and physiotherapy): Excluding Neck contracture; Contracture rele','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',20,'N','N','Y',20,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:20'),(0,0,'BMPM','','BMPM0022','H','',0,0,'','','BM006B - Post Burn Contracture surgeries for Functional Improvement (Package including splints, pressure garments,contracture release & split skin graft with or without flap reconstruction,silicone - ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',21,'N','N','Y',21,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:21'),(0,0,'BMPM','','BMPM0023','H','',0,0,'','','BMU100 - Unspecified Surgical Package','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',22,'N','N','Y',22,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:22'),(0,0,'BOCG','','BOCG0001','H','',0,0,'','','Dexa Scan Bone Densitometry - Two sites','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BOCG','','BOCG0002','H','',0,0,'','','Dexa Scan Bone Densitometry - Three sites\n(Spine, Hip & extremity)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BOCG','','BOCG0003','H','',0,0,'','','Dexa Scan Bone Densitometry Whole body','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2450,2450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0004','H','',0,0,'','','EEG/Video EEG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',298,298,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0005','H','',0,0,'','','EMG (Electro myography)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',638,638,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0006','H','',0,0,'','','Nerve condition velocity (at least 2 limbs)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',638,638,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0007','H','',0,0,'','','Decremental response (before and after neo\nstigmine)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',595,595,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0008','H','',0,0,'','','Incremental response','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',595,595,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0009','H','',0,0,'','','SSEP (Somato sensory evoked potentials)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',638,638,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0010','H','',0,0,'','','Poly somnography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',638,638,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0011','H','',0,0,'','','Brachial plexus study','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',638,638,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0012','H','',0,0,'','','Muscle biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',383,383,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0013','H','',0,0,'','','ACHR anti body titre','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1848,1848,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0014','H','',0,0,'','','Anti MUSK body titre','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2340,2340,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0015','H','',0,0,'','','Serum COPPER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0016','H','',0,0,'','','Serum ceruloplasmin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0017','H','',0,0,'','','Urinary copper','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0018','H','',0,0,'','','Serum homocystine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0019','H','',0,0,'','','Serum valproate level','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',315,315,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0020','H','',0,0,'','','Serum phenol barbitone level','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0021','H','',0,0,'','','Coagulation profile','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',553,553,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0022','H','',0,0,'','','Protein C, S anti thrombine ? III','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2400,2400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NACG','','BOCG0023','H','',0,0,'','','Serum lactate level','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0001','H','',0,0,'','','Primary Suturing  of Wound','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0002','H','',0,0,'','','Injection of Keloids -   Ganglion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1099,1099,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0003','H','',0,0,'','','Injection of Keloids -  Haemangioma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1150,1150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0004','H','',0,0,'','','Free Grafts - Wolfe Grafts','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1725,1725,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0005','H','',0,0,'','','Free Grafts - Theirech-  Small Area 5%','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6728,6728,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0006','H','',0,0,'','','Free Grafts -  Large Area 10%','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7200,7200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0007','H','',0,0,'','','Free Grafts - Very Large Area 20% and above.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9315,9315,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0008','H','',0,0,'','','Skin Flaps - Rotation Flaps','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8073,8073,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0009','H','',0,0,'','','Skin Flaps -  Advancement Flaps','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11250,11250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0010','H','',0,0,'','','Skin Flaps -  Direct- cross Leg Flaps- Cross Arm\nFlap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0011','H','',0,0,'','','Skin Flaps -   Cross Finger','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11250,11250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0012','H','',0,0,'','','Skin Flaps -   Abdominal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9350,9350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0013','H','',0,0,'','','Skin Flaps -   Thoracic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9350,9350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0014','H','',0,0,'','','Skin Flaps -   Arm Etc.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9900,9900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0015','H','',0,0,'','','Subcutaneous Pedicle Flaps Raising','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6600,6600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0016','H','',0,0,'','','Subcutaneous Pedicle Flaps Delay','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5950,5950,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0017','H','',0,0,'','','Subcutaneous Pedicle Flaps Transfer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5950,5950,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0018','H','',0,0,'','','Cartilage  Grafting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8625,8625,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0019','H','',0,0,'','','Reduction of Facial Fractures of Nose','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1380,1380,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0020','H','',0,0,'','','Reduction of Facial Fractures of Maxilla','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8000,8000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0021','H','',0,0,'','','Reduction of Fractures of Mandible & Maxilla -\nEye Let Splinting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7475,7475,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0022','H','',0,0,'','','Reduction of Fractures of Mandible & Maxilla -\nCast Netal Splints','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6900,6900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0023','H','',0,0,'','','Reduction of Fractures of Mandible & Maxilla -\nGumming Splints','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7500,7500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0024','H','',0,0,'','','Internal Wire Fixation of Mandible & Maxilla','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0025','H','',0,0,'','','Cleft Lip - repair.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0026','H','',0,0,'','','Cleft Palate Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12650,12650,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0027','H','',0,0,'','','Primary Bone Grafting for alveolar cleft in Cleft\nLip','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0028','H','',0,0,'','','Secondary Surgery for Cleft Lip Deformity','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10000,10000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0029','H','',0,0,'','','Secondary Surgery for Cleft Palate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12650,12650,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0030','H','',0,0,'','','Reconstruction of Eyelid Defects - Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6325,6325,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0031','H','',0,0,'','','Reconstruction of Eyelid Defects - Major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8500,8500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0032','H','',0,0,'','','Plastic Surgery of Different Regions of the Ear -\nMinor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7245,7245,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0033','H','',0,0,'','','Plastic Surgery of Different Regions of the Ear -\nMajor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10350,10350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0034','H','',0,0,'','','Plastic Surgery of the Nose - Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7245,7245,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0035','H','',0,0,'','','Plastic Surgery of the Nose - Major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9500,9500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0036','H','',0,0,'','','Plastic Surgery for Facial Paralysis (Support with\nReanimation)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16100,16100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0037','H','',0,0,'','','Pendulous Breast - Mammoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13000,13000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0038','H','',0,0,'','','Underdeveloped Breast Mammoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0039','H','',0,0,'','','After Mastectomy (Reconstruction)Mammoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0040','H','',0,0,'','','Syndactyly Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12750,12750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0041','H','',0,0,'','','Dermabrasion Face','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13225,13225,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0042','H','',0,0,'','','upto 30% Burns 1st Dressing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',152,152,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0043','H','',0,0,'','','upto 30%  Burns Subsequent Dressing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',124,124,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0044','H','',0,0,'','','30% to 50% Burns 1st Dressing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',193,193,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0045','H','',0,0,'','','30% to 50%  Burns Subsequent Dressing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',152,152,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0046','H','',0,0,'','','Extensive Burn -above 50% Frist Dressing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',276,276,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'BRCG','','BRCG0047','H','',0,0,'','','Extensive Burn -above 50% Subsequent dressing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',193,193,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CANT','','CANT0001','H','',0,0,'','','BREAKFAST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CANT','','CANT0002','H','',0,0,'','','DINNER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CANT','','CANT0003','H','',0,0,'','','LUNCH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARE','','CARE0001','H','',4,0,'','','NURSING CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','Y','N',0,'','U','','N','Y','Y','thims','2025-10-11 18:08:16','I','Y',99,'','','','','reception','2025-10-10 19:37:08','thims','2025-10-11 18:08:16'),(0,0,'CARE','','CARE0002','H','',1,0,'','','NURSING CHARGES - SEMI ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-10-11 11:34:33','I','N',99,'','','','','reception','2025-10-10 19:38:31','reception','2025-10-11 11:34:33'),(0,0,'CARE','','CARE0003','H','',1,0,'','','NURSING CHARGES - ICU','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-10-11 11:34:39','I','N',99,'','','','','reception','2025-10-10 19:40:18','reception','2025-10-11 11:34:39'),(0,0,'CARE','','CARE0004','H','',1,0,'','','RMO CHARGES - ICU','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-10-11 11:34:45','I','N',99,'','','','','reception','2025-10-10 19:40:57','reception','2025-10-11 11:34:45'),(0,0,'CARE','','CARE0005','H','',1,0,'','','RMO CHARGE - SPECIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-10-11 11:34:52','I','N',99,'','','','','reception','2025-10-10 19:41:19','reception','2025-10-11 11:34:52'),(0,0,'CARE','','CARE0006','H','',1,0,'','','RMO CHARGES - SEMI','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-10-11 11:34:58','I','N',99,'','','','','reception','2025-10-10 19:41:47','reception','2025-10-11 11:34:58'),(0,0,'CARE','','CARE0007','H','',0,0,'','','DAY CARE CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-11 19:46:26','I','N',99,'','','','','vishal','2025-10-11 19:46:26','','0000-00-00 00:00:00'),(0,0,'CARE','','CARE0008','H','',0,0,'','','COLOSTOMY CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-25 12:40:35','I','N',99,'','','','','vishal','2025-10-25 12:40:35','','0000-00-00 00:00:00'),(0,0,'CARE','','CARE0009','H','',4,0,'','','STOOL REMOVEL CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','riya','2025-11-07 15:18:35','I','N',99,'','','','','riya','2025-11-07 15:13:59','riya','2025-11-07 15:18:35'),(0,0,'CARP','','CARP0001','H','',0,0,'','','ANGIOGRAPHY WITH ANGIOPLASTY(EXCLUDING BALLON,GUIDEWIRE AND CATHETER)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',86250,86250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0002','H','',0,0,'','','ANGIOGRAPHY, INCLUDES COST OF THE DYE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0003','H','',0,0,'','','BALLOON VALVULOPLASTY ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0004','H','',0,0,'','','BRONCHIAL ARTERY EMBOLISATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',60000,60000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0005','H','',0,0,'','','CAG (CORONARY ANGIOGRAPHY)(MC030GJA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0006','H','',0,0,'','','CORONARY ANGIOGRAPHY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0007','H','',0,0,'','','CORONARY ANGIOGRAPHY (CAG) PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0008','H','',0,0,'','','CORONARY ANGIOPLASTY  WITH FFR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,120000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0009','H','',0,0,'','','CORONARY ANGIOPLASTY (PTCA) (MORE THAN ONE VESSEL) PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,78800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0010','H','',0,0,'','','CORONARY ANGIOPLASTY (PTCA) (SINGLE VESSEL) PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,78800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0011','H','',0,0,'','','CRTD DEVICE PLACEMENT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0012','H','',0,0,'','','FISTULOPLASTY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,80000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0013','H','',0,0,'','','IABP BALLOON CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',20000,20000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0014','H','',0,0,'','','IABP CHARGE PER DAY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',25000,25000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0015','H','',0,0,'','','IABP PROCEDURE CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25000,25000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0016','H','',0,0,'','','IFR/FFR PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',70000,70000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0017','H','',0,0,'','','IVC FILTER PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',60000,60000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0018','H','',0,0,'','','IVUS PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',60000,60000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0019','H','',0,0,'','','PAG CORONARY ANGIOGRAPHY + PERIPHERAL ANGIOGRAPHY(MC030GJC)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0020','H','',0,0,'','','PERIPHERAL ANGIOGRAPHY PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0021','H','',0,0,'','','PERIPHERAL/ CAROTID/ ABDOMINAL ANGIOPLASTY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,80000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0022','H','',0,0,'','','PERIPHERAL/ CAROTID/ ABDOMINAL ANGIOPLASTY PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',49999,49999,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0023','H','',0,0,'','','PTCA,INCLUSIVE OF DIAGNOSTIC ANGIOGRAM(MC011A)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,66440,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0024','H','',0,0,'','','ROTA PROCEDURE CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',30000,30000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0025','H','',0,0,'','','STANDBY ANESTHETIST FOR CARDIAC PROCEDURE MAJOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',4000,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0026','H','',0,0,'','','STANDBY ANESTHETIST FOR CARDIAC PROCEDURE MINOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0027','H','',0,0,'','','STANDBY ANESTHETIST FOR EMERGENCY CARDIAC PROCEDURE ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',3000,3000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0028','H','',0,0,'','','TEMPARARY PACEMAKER (TPI)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10000,10000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0029','H','',0,0,'','','TRANS JUGULAR LIVER BIOPSY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',35000,35000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0030','H','',0,0,'','','UTERINE ARTERY EMBOLISM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',125000,125000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0031','H','',0,0,'','','VISIPAQUE DYE FOR ANGIOGRAPHY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CARP','','CARP0032','H','',0,0,'','','THROMBOLYSIS CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','riya','2025-11-13 12:45:53','I','N',99,'','','','','riya','2025-11-13 12:45:53','','0000-00-00 00:00:00'),(0,0,'PKG','','CASE','H','',0,0,'','','CONSULTATION CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CASP','','CASP0001','H','',0,0,'','','CATARACT PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',0,'Y','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CDCG','','CDCG0001','H','',0,0,'','','ASD Closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',51808,51808,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0002','H','',0,0,'','','VSD with graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',51808,51808,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0003','H','',0,0,'','','TOF/TAPVC/TCPC/REV/RSOV repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',127075,127075,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0004','H','',0,0,'','','B.D.Glenn/Left atrium myxoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80750,80750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0005','H','',0,0,'','','Senning/ASO with graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',122188,122188,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0006','H','',0,0,'','','DSO','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',103615,103615,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0007','H','',0,0,'','','AV Canal repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',161000,161000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0008','H','',0,0,'','','Fonten','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',169000,169000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0009','H','',0,0,'','','Conduit repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',169000,169000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0010','H','',0,0,'','','CABG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',127075,127075,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0011','H','',0,0,'','','CABG + IABP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',169000,169000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0012','H','',0,0,'','','CABG + Valve.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',169000,169000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0013','H','',0,0,'','','CABG without bypass.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140000,140000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0014','H','',0,0,'','','Ascending aorta replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',130000,130000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0015','H','',0,0,'','','DVR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',53000,53000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0016','H','',0,0,'','','MVR/AVR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',95000,95000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0017','H','',0,0,'','','MV repair + AV repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',103615,103615,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0018','H','',0,0,'','','Aorta femoral bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',52000,52000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0019','H','',0,0,'','','B.T Shunt/Coaractation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',51980,51980,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0020','H','',0,0,'','','P.A.Banding septostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',51980,51980,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0021','H','',0,0,'','','Pericardectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',42320,42320,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0022','H','',0,0,'','','CMV/PDA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',51980,51980,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0023','H','',0,0,'','','Gunshot injury','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',51980,51980,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0024','H','',0,0,'','','Heart transplant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',248400,248400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0025','H','',0,0,'','','Balloon coronary angioplasty/PTCA with VCD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',72540,72540,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0026','H','',0,0,'','','Balloon coronary angioplasty/PTCA without\nVCD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',72000,72000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0027','H','',0,0,'','','Rotablation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',48875,48875,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0028','H','',0,0,'','','balloon valvotomy/PTMC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10264,10264,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0029','H','',0,0,'','','CATH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10000,10000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0030','H','',0,0,'','','Arch Replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10350,10350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0031','H','',0,0,'','','Aortic Dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12650,12650,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0032','H','',0,0,'','','Thoraco Abdominal Aneurism Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0033','H','',0,0,'','','Embolectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',21000,21000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0034','H','',0,0,'','','Vascular Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',36000,36000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0035','H','',0,0,'','','Bentall Repair with Prosthetic Valve','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',30000,30000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0036','H','',0,0,'','','Bentall Repair with Biologic Valve','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',127500,127500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0037','H','',0,0,'','','Coaractation dilatation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14000,14000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0038','H','',0,0,'','','Coaractation dilatation with Stenting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18500,18500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0039','H','',0,0,'','','TPI Single Chamber','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6750,6750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0040','H','',0,0,'','','TPI Dual Chamber','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7344,7344,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0041','H','',0,0,'','','Permanent pacemaker implantation- Single\nChamber','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13800,13800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0042','H','',0,0,'','','Permanent pacemaker implantation- Dual\nChamber','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19320,19320,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0043','H','',0,0,'','','Permanent pacemaker implantation Biventricular','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',34500,34500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0044','H','',0,0,'','','AICD implantation Single Chamber','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',28750,28750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0045','H','',0,0,'','','AICD implantation Dual Chamber','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',40000,40000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0046','H','',0,0,'','','Combo device  implantation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',40000,40000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0047','H','',0,0,'','','Diagnostic Electrophysiological studies\nconventional','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4550,4550,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0048','H','',0,0,'','','Ambulatory BP monitoring','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',587,587,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0049','H','',0,0,'','','External Loop/event recording','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2563,2563,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0050','H','',0,0,'','','RF Ablation conventional','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',35000,35000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0051','H','',0,0,'','','RF Ablation Atrial Tachycardia/Carto','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',45000,45000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0052','H','',0,0,'','','Endomyocardial biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10000,10000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0053','H','',0,0,'','','IABP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7820,7820,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0054','H','',0,0,'','','Intra vascular coils','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',42750,42750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0055','H','',0,0,'','','Septostomy- Balloon','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16150,16150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0056','H','',0,0,'','','Septostomy- Blade','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17595,17595,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0057','H','',0,0,'','','AVBD/PVBD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',48300,48300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0058','H','',0,0,'','','Digital subtraction angiography-Peripheral artery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0059','H','',0,0,'','','Digital subtraction angiography- venogram','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0060','H','',0,0,'','','C.T Guided biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1265,1265,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0061','H','',0,0,'','','Sinogram','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',777,777,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0062','H','',0,0,'','','Peripheral Angioplasty with VCD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0063','H','',0,0,'','','Peripheral Angioplasty without VCD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0064','H','',0,0,'','','Renal Angioplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',54315,54315,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0065','H','',0,0,'','','IVUS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25000,25000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0066','H','',0,0,'','','FFR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12750,12750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0067','H','',0,0,'','','Holter analysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',850,850,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0068','H','',0,0,'','','Aortic stent grafting  for aortic aneurysm','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',78500,78500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0069','H','',0,0,'','','IVC Filter implantation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16129,16129,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0070','H','',0,0,'','','ASD/VSD/PDA device closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',36225,36225,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0071','H','',0,0,'','','ECG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0072','H','',0,0,'','','HUTT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2160,2160,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0073','H','',0,0,'','','2 D echocardiography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1080,1080,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0074','H','',0,0,'','','3 D echocardiography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1350,1350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0075','H','',0,0,'','','Fetal Echo','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0076','H','',0,0,'','','2 D TEE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1403,1403,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0077','H','',0,0,'','','3 D TEE(Transoesophageal echo )','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1403,1403,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0078','H','',0,0,'','','Stress Echo-  exercise','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0079','H','',0,0,'','','Stress Echo- pharmacological','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0080','H','',0,0,'','','Stress MPI- exercise','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1955,1955,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0081','H','',0,0,'','','Stress MPI - pharmacological','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0082','H','',0,0,'','','Coronary angiography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0083','H','',0,0,'','','CT coronary angiography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6030,6030,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0084','H','',0,0,'','','Cardiac CT scan','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2272,2272,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0085','H','',0,0,'','','Cardiac MRI','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2444,2444,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0086','H','',0,0,'','','Stress Cardiac MRI','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0087','H','',0,0,'','','MR angiography.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5072,5072,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0088','H','',0,0,'','','Cardiac PET','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0089','H','',0,0,'','','Pericardiocentesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3500,3500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0090','H','',0,0,'','','Other Major Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18000,18000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CDCG','','CDCG0091','H','',0,0,'','','Other Minor Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3825,3825,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CHEM','','CHEM0001','H','',0,0,'','','BONE MARROW PROCEDURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',7000,7000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CHEM','','CHEM0002','H','',0,0,'','','CHEMO ADMINISTRATION CHARGES - MAJOR CHEMO PLAN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CHEM','','CHEM0003','H','',0,0,'','','CHEMO ADMINISTRATION CHARGES - MINOR CHEMO PLAN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CHEM','','CHEM0004','H','',0,0,'','','CHEMO ADMINISTRATION CHARGES - SUPRA MAJOR CHEMO PLAN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CHEM','','CHEM0005','H','',0,0,'','','CONSULTATION CHARGES - MAJOR CHEMO PLAN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CHEM','','CHEM0006','H','',0,0,'','','CONSULTATION CHARGES - MINOR CHEMO PLAN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CHEM','','CHEM0007','H','',0,0,'','','CONSULTATION CHARGES - SUPRA MAJOR CHEMO PLAN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CHEM','','CHEM0008','H','',0,0,'','','HICKMAN CATHETERIZATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6500,6500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CHEM','','CHEM0009','H','',0,0,'','','INTRATHECAL CHEMOTHERAPY ADMINISTRATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CHEM','','CHEM0010','H','',0,0,'','','NEUTROPENIC CARE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CPKG','','CPKG0001','H','',0,0,'','','FEVER (UNKNOWN ORIGIN/OTHER CATEGORY)/ DENGUE/ VIRAL FEVER MALARIA/TYPHOID/ PARATYPHOID (ENTERIC FEVER)/PNEUMONIA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CRIP','','CRIP0001','H','',0,0,'','','ECG CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CRIP','','CRIP0002','H','',0,0,'','','HOLTER MONITORING CHARGES (UP TO 24 HOURS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CRIP','','CRIP0003','H','',0,0,'','','INTRA VASCULAR THROMBOLYSIS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10000,10000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CRIP','','CRIP0004','H','',0,0,'','','PERICARDIAL TAPPING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CRIP','','CRIP0005','H','',0,0,'','','TREAD MILL TEST (TMT)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CSCG','','CSCG0001','H','',0,0,'','','Basic studies including cell count, protein, sugar, gram stain, India Ink preparation and smear for\nAFP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',240,240,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CSCG','','CSCG0002','H','',0,0,'','','Special studies','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CSCG','','CSCG0003','H','',0,0,'','','PCR for tuberculosis/ Herpes simplex','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CSCG','','CSCG0004','H','',0,0,'','','Bacterial  culture and sensitivity','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CSCG','','CSCG0005','H','',0,0,'','','Mycobacterial culture and sensitivity','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CSCG','','CSCG0006','H','',0,0,'','','Fungal culture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',128,128,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CSCG','','CSCG0007','H','',0,0,'','','Malignant cells','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',64,64,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CSCG','','CSCG0008','H','',0,0,'','','Anti measles antibody titre (with serum antibody\ntitre)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',801,801,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CSCG','','CSCG0009','H','',0,0,'','','Viral culture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',255,255,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CSCG','','CSCG0010','H','',0,0,'','','Antibody titre (Herpes simplex, cytomegalo virus,\nflavivirus, zoster varicella virus)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',684,684,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CSCG','','CSCG0011','H','',0,0,'','','Oligoclonal band','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CSCG','','CSCG0012','H','',0,0,'','','Myelin Basic protein','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1871,1871,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CSCG','','CSCG0013','H','',0,0,'','','Lactate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',298,298,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CSCG','','CSCG0014','H','',0,0,'','','Crypto coccal antigen','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1024,1024,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0001','H','',0,0,'','','CT Head-Without Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',900,900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0002','H','',0,0,'','','CT Head- with Contrast  (+/- CT angiography)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1350,1350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0003','H','',0,0,'','','C. T. Chest  - without contrast (for lungs)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1700,1700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0004','H','',0,0,'','','C. T. Scan Lower Abdomen(incl. Pelvis) With\nContrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1700,1700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0005','H','',0,0,'','','C. T. Scan Lower Abdomen( Incl. Pelvis) Without\nContrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0006','H','',0,0,'','','C. T. Scan Whole Abdomen Without Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2700,2700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0007','H','',0,0,'','','C. T. Scan Whole Abdomen With Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4050,4050,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0008','H','',0,0,'','','Triple Phase CT abdomen','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4050,4050,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0009','H','',0,0,'','','CT angiography abdomen/ Chest','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4050,4050,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0010','H','',0,0,'','','CT Enteroclysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5400,5400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0011','H','',0,0,'','','C. T. Scan Neck ? Without Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0012','H','',0,0,'','','C. T. Scan Neck  ? With Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1870,1870,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0013','H','',0,0,'','','C. T. Scan Orbits - Without Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1190,1190,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0014','H','',0,0,'','','C. T. Scan Orbits - With Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1615,1615,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0015','H','',0,0,'','','C. T. Scan of Para  Nasal Sinuses- Without\nContrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',900,900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0016','H','',0,0,'','','C. T. Scan of Para  Nasal Sinuses - With Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0017','H','',0,0,'','','C. T. Spine (Cervical, Dorsal, Lumbar, Sacral)?\nwithout  contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0018','H','',0,0,'','','CT Temporal bone ? without contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',893,893,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0019','H','',0,0,'','','CT - Dental','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1275,1275,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0020','H','',0,0,'','','C. T. Scan Limbs  -Without Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1700,1700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0021','H','',0,0,'','','C. T. Scan Limbs  -With Contrast including CT\nangiography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2253,2253,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0022','H','',0,0,'','','C.T. Guided intervention ?FNAC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0023','H','',0,0,'','','C.T. Guided Trucut Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTCG','','CTCG0024','H','',0,0,'','','C. T. Guided intervention -percutaneous  catheter\ndrainage / tube placement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1305,1305,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'CTSN','','CTSN0001','H','',0,0,'','','ANESTH. CHARGES - RADIOLOGY PROCEDURE-STAND BY CHARGES (CT SCAN) - NIGHT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0002','H','',0,0,'','','ANESTH. CHARGES - RADIOLOGY PROCEDURE-STAND BY CHARGES (CT SCAN) -DAY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0003','H','',0,0,'','','CECTTEMPORALBONE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0004','H','',0,0,'','','CT ANGIOGRAPHY - ABDOMEN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4900,4900,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0005','H','',0,0,'','','CT ANGIOGRAPHY - BRAIN /CEREBRAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4900,4900,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0006','H','',0,0,'','','CT ANGIOGRAPHY - HEAD & NECK','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4900,4900,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0007','H','',0,0,'','','CT ANGIOGRAPHY - LOWER LIMB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4900,4900,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0008','H','',0,0,'','','CT ANGIOGRAPHY - PULMONARY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6300,6300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0009','H','',0,0,'','','CT ANGIOGRAPHY - RENAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6300,6300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0010','H','',0,0,'','','CT ANGIOGRAPHY - UPPER LIMB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4900,4900,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0011','H','',0,0,'','','CT ANTENATAL GROWTH SCAN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0012','H','',0,0,'','','CT BONE (AREA OF INTEREST)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2800,2800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0013','H','',0,0,'','','CT BONY PELVIS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2800,2800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0014','H','',0,0,'','','CT BOTH LOWER LIMB SCANOGRAM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0015','H','',0,0,'','','CT BRAIN CONTRAST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2100,2100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0016','H','',0,0,'','','CT BRAIN PLAIN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0017','H','',0,0,'','','CT BRAIN WITH FACE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2100,2100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0018','H','',0,0,'','','CT CALCIUM SCORE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2100,2100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0019','H','',0,0,'','','CT CERVICAL SPINE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2450,2450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0020','H','',0,0,'','','CT DORSAL SPINE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2450,2450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0021','H','',0,0,'','','CT FACIAL BONE WITH 3D','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2450,2450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0022','H','',0,0,'','','CT HEAD & NECK CONTRAST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',4500,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0023','H','',0,0,'','','CT HEAD & NECK PLAIN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',2800,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0024','H','',0,0,'','','CT HEAD NAD NECK CONTRAST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0025','H','',0,0,'','','CT HRCT CHEST/THORAX CONTRAST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3150,3150,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0026','H','',0,0,'','','CT HRCT CHEST/THORAX PLAIN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0027','H','',0,0,'','','CT IVP (WITH CONTRAST)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3150,3150,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0028','H','',0,0,'','','CT JOINT (ANY PART)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3400,3400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0029','H','',0,0,'','','CT KNEE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2450,2450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0030','H','',0,0,'','','CT KUB ( PLAIN )','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0031','H','',0,0,'','','CT KUB (UROGRAM)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2100,2100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0032','H','',0,0,'','','CT LOOPOGRAM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3500,3500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0033','H','',0,0,'','','CT LOWER ABDOMEN/PELVIS CONTRAST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3150,3150,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0034','H','',0,0,'','','CT LOWER ABDOMEN/PELVIS PLAIN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2100,2100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0035','H','',0,0,'','','CT LS SPINE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2450,2450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0036','H','',0,0,'','','CT MCU (MICTURATING CYSTO-URETHROGRAM)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0037','H','',0,0,'','','CT NECK','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2450,2450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0038','H','',0,0,'','','CT NECK CONTRAST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3500,3500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0039','H','',0,0,'','','CT ORBIT CONTRAST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2450,2450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0040','H','',0,0,'','','CT ORBIT PLAIN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0041','H','',0,0,'','','CT PNS (PARANASAL SINUS) CONTRAST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2100,2100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0042','H','',0,0,'','','CT PNS (PARANASAL SINUS) PLAIN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1750,1750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0043','H','',0,0,'','','CT UPPER ABDOMEN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2100,2100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0044','H','',0,0,'','','CT UPPER ABDOMEN CONTRAST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3150,3150,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0045','H','',0,0,'','','CT WHOLE ABDOMEN - CONTRAST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3850,3850,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0046','H','',0,0,'','','CT WHOLE ABDOMEN - PLAIN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2800,2800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0047','H','',0,0,'','','EXTRA SCREENING OF ANY PART (CT SCAN)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0048','H','',0,0,'','','HRCT CHEST/THORAX PLAIN SCREENING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0049','H','',0,0,'','','HRCT TEMPORAL BONE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1750,1750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0050','H','',0,0,'','','IONIC CONTRAST (DYE) 1 UNIT (50 ML) CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',750,750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'CTSN','','CTSN0051','H','',0,0,'','','NON-IONIC CONTRAST (DYE) 1 UNIT (50 ML) CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1250,1250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DECG','','DECG0001','H','',0,0,'','','Flap Operation per  quadrant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0002','H','',0,0,'','','Gingivectomy per quadrant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',211,211,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0003','H','',0,0,'','','Reduction & immobilization of fracture- Maxilla\nUnder LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',810,810,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0004','H','',0,0,'','','Reduction & immobilization of fracture-Mandible\nUnder LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3150,3150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0005','H','',0,0,'','','splints/Cirucum mandibular wiring under LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',459,459,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0006','H','',0,0,'','','splints/Cirucum mandibular wiring under GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',891,891,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0007','H','',0,0,'','','Internal wire fixation/plate fixation of  Maxilla\nunder LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2700,2700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0008','H','',0,0,'','','Internal wire fixation/plate fixation of Maxilla\nunder GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3600,3600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0009','H','',0,0,'','','Internal wire fixation/plate fixation of Mandible\nunder LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3150,3150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0010','H','',0,0,'','','Internal wire fixation/plate fixation of  Mandible\nunder GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3825,3825,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0011','H','',0,0,'','','Extraction per  tooth under LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80,80,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0012','H','',0,0,'','','Complicated Ext. per Tooth under LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0013','H','',0,0,'','','Extraction of impacted tooth under LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',160,160,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0014','H','',0,0,'','','Extraction in mentally retarded/patients with systemic diseases/patient with special needs under\nshort term GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',939,939,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0015','H','',0,0,'','','Cyst & tumour of Maxilla /mandible by enucleation/ excision/ marsupalisation upto 4 cms\nunder LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',244,244,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0016','H','',0,0,'','','Cyst & tumour of Maxilla/mandible by\nenucleation/ excision/ marsupalisation  size more than   4 cms under LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',406,406,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0017','H','',0,0,'','','Cyst & tumour of Maxilla/mandible by\nenucleation/excision/marsupalisation size more than 4 cms under GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0018','H','',0,0,'','','TM joint ankylosis- under GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6750,6750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0019','H','',0,0,'','','Biopsy Intraoral-Soft tissue','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',337,337,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0020','H','',0,0,'','','Biopsy Intraoral-Bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',374,374,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0021','H','',0,0,'','','Hemi-mandibulectomy with graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',21000,21000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0022','H','',0,0,'','','Hemi-mandibulectomy without  graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18900,18900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0023','H','',0,0,'','','Segmental-mandibulectomy with graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3400,3400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0024','H','',0,0,'','','Segmental-mandibulectomy without  graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',990,990,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0025','H','',0,0,'','','Maxillectomy- Total with graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0026','H','',0,0,'','','Maxillectomy- Total without graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1950,1950,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0027','H','',0,0,'','','Maxillectomy- partial with graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0028','H','',0,0,'','','Maxillectomy- partial  without graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0029','H','',0,0,'','','Release of fibrous bands & grafting -in (OSMF)\ntreatment under GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1350,1350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0030','H','',0,0,'','','Pre-prosthetic surgery- Alveoloplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0031','H','',0,0,'','','Pre-prosthetic surgery - ridge augmentation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1080,1080,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0032','H','',0,0,'','','Root canal Treatment(RCT) Anterior teeth(per\ntooth)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0033','H','',0,0,'','','Root canal Treatment(RCT) Posterior teeth (per\ntooth)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',700,700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0034','H','',0,0,'','','Apicoectomy- Single root','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0035','H','',0,0,'','','Apicoectomy-Multiple roots','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',650,650,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0036','H','',0,0,'','','Metal Crown-per unit','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0037','H','',0,0,'','','Metal Crown with Acrylic facing per unit','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',700,700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0038','H','',0,0,'','','Complete single denture-metal based','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0039','H','',0,0,'','','Complete denture- acrylic based per arch','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',855,855,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0040','H','',0,0,'','','Removable  partial denture-Metal based-upto 3\nteeth','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',700,700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0041','H','',0,0,'','','Removable partial denture-Metal based-more than\n3 teeth','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',900,900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0042','H','',0,0,'','','Removable partial denture-Acrylic based-upto 3\nteeth','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0043','H','',0,0,'','','Removable partial denture-Acrylic based-more\nthan 3 teeth','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',238,238,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0044','H','',0,0,'','','Amalgum restoration-per tooth','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',180,180,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0045','H','',0,0,'','','Composite Restoration-per tooth-anterior tooth','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0046','H','',0,0,'','','Glas Ionomer-per tooth','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0047','H','',0,0,'','','Scaling & polishing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0048','H','',0,0,'','','Removable Orthodontics appliance- per  Arch','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',630,630,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0049','H','',0,0,'','','Fixed Orhtodontics-per Arch','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1150,1150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0050','H','',0,0,'','','Space maintainers-Fixed','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0051','H','',0,0,'','','Habit breaking appliances-removable','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',720,720,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0052','H','',0,0,'','','Habit breaking appliances-Fixed','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1350,1350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0053','H','',0,0,'','','Expansion plate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0054','H','',0,0,'','','Feeding appliance for cleft palate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1350,1350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0055','H','',0,0,'','','Maxillo-facial prosthesis\n(sal/auricular/orbital/facial lost part)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3500,3500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0056','H','',0,0,'','','Functional orthodentic appliances','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2700,2700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0057','H','',0,0,'','','Obturator (Maxillo-facial)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1350,1350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DECG','','DECG0058','H','',0,0,'','','Occlusal night guard(splint)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',720,720,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'DRC','','DRC0001','H','',0,0,'','','CROSS REFERENCE ROUTINE - COVID','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0002','H','',0,0,'','','CROSS REFERENCE ROUTINE SENIOR CONSULTANT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,900,NULL,'',0,'N','N','Y',0,'L03','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0003','H','',0,0,'','','CROSS REFERENCE ROUTINE SPECIALIST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,350,NULL,'',0,'N','N','Y',0,'L02','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0004','H','',0,0,'','','DAY EMERGENCY / DAY CROSS REFERENCE EMERGENCY VISIT SENIOR CONSULTANT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1200,NULL,'',0,'N','N','Y',0,'L03','X','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0005','H','',0,0,'','','DAY EMERGENCY / DAY CROSS REFERENCE EMERGENCY VISIT SPECIALIST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','Y',0,'L02','X','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0006','H','',0,0,'','','DAY EMERGENCY / DAY CROSS REFERENCE EMERGENCY VISIT SUPER SPECIALIST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'L04','X','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0007','H','',0,0,'','','DOCTOR VISIT SPECIALIST/ VISIT -COVID','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',0,'N','N','Y',0,'L02','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0008','H','',0,0,'','','ID SPECIALIST VISIT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0009','H','',0,0,'','','NIGHT EMERGENCY / NIGHT CROSS REFERENCE EMERGENCY VISIT SENIOR CONSULTANT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1400,NULL,'',0,'N','N','Y',0,'L03','X','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0010','H','',0,0,'','','NIGHT EMERGENCY / NIGHT CROSS REFERENCE EMERGENCY VISIT SPECIALIST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'L02','X','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0011','H','',0,0,'','','NIGHT EMERGENCY / NIGHT CROSS REFERENCE EMERGENCY VISIT SUPER SPECIALIST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1400,NULL,'',0,'N','N','Y',0,'L04','X','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0012','H','',0,0,'','','PHYSIOTHERAPY ROUTINE VISIT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'L07','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0013','H','',0,0,'','','PRE-OPERATIVE CHECK UP VISIT - PHYSICIAN/ ANESTHETIST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0014','H','',0,0,'','','ROUTINE / CROSS REFERENCE VISIT SUPER SPECIALIST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,900,NULL,'',0,'N','N','Y',0,'L04','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0015','H','',0,0,'','','ROUTINE VISIT CHARGES SENIOR CONSULTANT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','Y',0,'L03','R','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0016','H','',0,0,'','','ROUTINE VISIT CHARGES SPECIALIST ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,800,NULL,'',0,'N','N','Y',0,'L02','R','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0017','H','',0,0,'','','SUPER SPECIALIST / VISIT - COVID','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','Y',0,'L04','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0018','H','',4,0,'','','CONSULTANT VISIT 1 ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',1,1,NULL,'',0,'N','Y','Y',0,'','U','','N','Y','Y','vishal','2025-10-12 12:34:10','I','Y',99,'','','','','reception','2025-10-11 12:12:59','vishal','2025-10-12 12:34:10'),(0,0,'DRC','','DRC0019','H','',3,0,'','','CONSULTANT VISIT 2','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1,NULL,'',0,'N','Y','Y',0,'','U','','N','Y','Y','vishal','2025-10-12 12:34:24','I','Y',99,'','','','','reception','2025-10-11 12:13:19','vishal','2025-10-12 12:34:24'),(0,0,'DRC','','DRC0020','H','',0,0,'','','OTHER CONSULTANT VISIT CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1,NULL,'',0,'N','Y','Y',0,'','U','','N','Y','Y','vishal','2025-10-11 18:56:38','I','N',99,'','','','','vishal','2025-10-11 18:56:38','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0021','H','',2,0,'','','EMERGENCY CONSULTANT CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,2000,NULL,'',0,'N','Y','Y',0,'','U','','N','Y','Y','vishal','2025-10-22 13:21:32','I','N',99,'','','','','vishal','2025-10-22 13:10:19','vishal','2025-10-22 13:21:32'),(0,0,'DRPR','','DRPR0001','H','',0,0,'','','ACNE SURGERY-COMEDONE MANAGEMENT-I','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0002','H','',0,0,'','','Acne Surgery-Subcision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0003','H','',0,0,'','','ANN REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0004','H','',0,0,'','','Callosity Removal- Large','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0005','H','',0,0,'','','Callosity Removal- Small','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0006','H','',0,0,'','','Chemical Cautery Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0007','H','',0,0,'','','Chemical Peeling For Acne','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0008','H','',0,0,'','','Chemical Peeling For Facial Site','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0009','H','',0,0,'','','Chemical Peeling For Non Facial Site','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0010','H','',0,0,'','','Chemical Peeling For Pigmentation & Dark Circle-I','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0011','H','',0,0,'','','Chemical Peeling For Pigmentation & Dark Circle-II','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0012','H','',0,0,'','','Corn Removal - Large','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0013','H','',0,0,'','','Corn Removal - Medium','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0014','H','',0,0,'','','Cryotherapy (Skin )','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0015','H','',0,0,'','','DERMAPEN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0016','H','',0,0,'','','DERMATOLOGY PROCEDURE INTERMEDIATE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0017','H','',0,0,'','','DERMATOLOGY PROCEDURE MAJOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0018','H','',0,0,'','','DERMATOLOGY PROCEDURE MINOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0019','H','',0,0,'','','INTERMEDIATE SKIN CAUTTERY PROCEDURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0020','H','',0,0,'','','lntradermal Steroid','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0021','H','',0,0,'','','MAJOR SKIN CAUTERY PROCEDURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0022','H','',0,0,'','','Microdermabrasion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0023','H','',0,0,'','','MINOR SKIN CAUTERY PROCEDURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0024','H','',0,0,'','','MODERATE SKIN CAUTERISATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0025','H','',0,0,'','','NILIA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0026','H','',0,0,'','','Removal Of Milia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0027','H','',0,0,'','','Removal Of Mole-Large','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0028','H','',0,0,'','','Removal Of Mole-Small','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0029','H','',0,0,'','','RF Catheterization For DPM > 25','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0030','H','',0,0,'','','RF Catheterization For DPM Upto 25','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0031','H','',0,0,'','','RF Catheterization For Molluscum Contagiosum 5-10','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0032','H','',0,0,'','','RF Catheterization For Molluscum Contagiosum Upto','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0033','H','',0,0,'','','RF Catheterization For Skin Tag 5-10','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0034','H','',0,0,'','','RF Catheterization For Skin Tag Upto 5','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0035','H','',0,0,'','','RF Catheterization For Warts Major with LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0036','H','',0,0,'','','RF Catheterization For Warts Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0037','H','',0,0,'','','RF Catheterization For Warts Moderate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0038','H','',0,0,'','','RF CAUTERIZATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0039','H','',0,0,'','','RF CAUTERY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0040','H','',0,0,'','','Skin Biopsy - Medium','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0041','H','',0,0,'','','Skin Biopsy - Small','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0042','H','',0,0,'','','TCA Application For Warts Major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0043','H','',0,0,'','','TCA Application For Warts Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0044','H','',0,0,'','','TCA Application For Xanthelasma (First Sitting)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0045','H','',0,0,'','','TCA Application For Xanthelasma (Second Sitting)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0046','H','',0,0,'','','VITILIGO','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DRPR','','DRPR0047','H','',0,0,'','','YELLOW PILLING AND LACTI PEELING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0001','H','',0,0,'','','2*4 APPLIANCE TREATMENT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0002','H','',0,0,'','','ACRYLIC FACING CROWN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0003','H','',0,0,'','','ACRYLIC TEMPORARY CROWN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0004','H','',0,0,'','','ALVELOPLASTY FULL MOUTH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0005','H','',0,0,'','','ALVELOPLASTY PER QUADRANT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0006','H','',0,0,'','','APICAL BARRIER CONSTRUCTION (APISECTOMY RETRO MTA APPROACH)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3200,3200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0007','H','',0,0,'','','Apical Barrier Construction Orthograde Approach','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0008','H','',0,0,'','','Apicectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0009','H','',0,0,'','','ARCHBAR SPLINTING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0010','H','',0,0,'','','Asthetic Dentistry Endodontics','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0011','H','',0,0,'','','ASTHETIC ZIRCONIA CROWN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8000,8000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0012','H','',0,0,'','','Ball & Socket Abutment','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0013','H','',0,0,'','','BLEACHING PER ARCH/SITTING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',480,480,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0014','H','',0,0,'','','BLEACHING PER TOOTH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',640,640,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0015','H','',0,0,'','','BLEACHING-NIGHT GUARD-TRAYS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0016','H','',0,0,'','','BONE GRAFTING (DENTAL PROCEDURE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8000,8000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0017','H','',0,0,'','','Bruxzier','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0018','H','',0,0,'','','CERAMETAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0019','H','',0,0,'','','CERAMIC CROWN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0020','H','',0,0,'','','CERAMIC CROWN REPAIR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0021','H','',0,0,'','','CERAMIC FACING CROWN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0022','H','',0,0,'','','COMPLETE ZIRCON IA CROWN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5600,5600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0023','H','',0,0,'','','COMPOSITE BLOCK','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0024','H','',0,0,'','','Composite Restoration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0025','H','',0,0,'','','Composite Restoration ANT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0026','H','',0,0,'','','CROWN IMPLANT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0027','H','',0,0,'','','CYST UNDER LA(DENTAL)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3200,3200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0028','H','',0,0,'','','CYST UNDER LA(DENTAL)(LARGE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0029','H','',0,0,'','','CYST UNDER LA(DENTAL)(SMALL)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2800,2800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0030','H','',0,0,'','','DEEP CURETTAGE PER SEGMENT.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',240,240,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0031','H','',0,0,'','','DEEP SCALING CURETTAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0032','H','',0,0,'','','DENTAL IMPLANT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13000,13000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0033','H','',0,0,'','','DENTURE LUCITONE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0034','H','',0,0,'','','DENTURE MELIODENT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0035','H','',0,0,'','','DENTURE NORMAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0036','H','',0,0,'','','DENTURE REPAIR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0037','H','',0,0,'','','Diamond Dental Jewellery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0038','H','',0,0,'','','Endo Apisectomy With Root Canal treatment(Dental)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0039','H','',0,0,'','','ENDO HEMI SECTION WITH ROOT CANAL TREATMENT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0040','H','',0,0,'','','ENDO REIMPLANTION(DENTAL)WITH ROOT CANAL TREATMENT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0041','H','',0,0,'','','ENDO REMOVAL ORTHODONTICS APPLIANCES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0042','H','',0,0,'','','FIXED APPLIANCE THERAPY I','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0043','H','',0,0,'','','FIXED APPLIANCE THERAPY II','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0044','H','',0,0,'','','FIXED APPLIANCE THERAPY ILL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3200,3200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0045','H','',0,0,'','','FIXED APPLIANCE THERAPY IV','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0046','H','',0,0,'','','FIXED APPLIANCE THERAPY V','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8000,8000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0047','H','',0,0,'','','FLAP SURGERY FULL MOUTH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7500,7500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0048','H','',0,0,'','','FLAP SURGERY PER QUADRANT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0049','H','',0,0,'','','FLAP SURGERY PER TEETH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0050','H','',0,0,'','','FLEXIBLE PARTIAL DENTURE PER TOOTH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0051','H','',0,0,'','','FRENECTOMY PROCEDURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0052','H','',0,0,'','','FRENECTOMY SURGICAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',2800,2800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0053','H','',0,0,'','','FULL ARCH IMPLANT SUPPORTED FIXED TEETH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',125000,125000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0054','H','',0,0,'','','GIC restoration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0055','H','',0,0,'','','GINGIVECTOMY PER SEGMENT.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',640,640,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0056','H','',0,0,'','','GINGIVECTOMY PER TOOTH.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',160,160,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0057','H','',0,0,'','','GOLD CROWN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0058','H','',0,0,'','','HABIT BREAKING APPLIANCE + PREVENTIVE ORTHODONTIC TREATMENT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8000,8000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0059','H','',0,0,'','','HEALING CAP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0060','H','',0,0,'','','I & D ORAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',240,240,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0061','H','',0,0,'','','I & D PROCEDURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',240,240,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0062','H','',0,0,'','','IMPLANT BIOCOM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0063','H','',0,0,'','','IMPLANT SEVEN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0064','H','',0,0,'','','INJ. MOULDING DENTURE LUCITONE U/L','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0065','H','',0,0,'','','INJ. MOULDING DENTURE MELIODENT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8800,8800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0066','H','',0,0,'','','INJ. MOULDING DENTURE NORMAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6400,6400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0067','H','',0,0,'','','IOPA X-RAY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80,80,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0068','H','',0,0,'','','LOWER WISDOM TOOTH DISTOANGULAR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0069','H','',0,0,'','','LOWER WISDOM TOOTH MESIOANGULAR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0070','H','',0,0,'','','METAL CROWN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',650,650,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0071','H','',0,0,'','','METAL HOUSING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1450,1450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0072','H','',0,0,'','','MINOR ORAL SURGERY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0073','H','',0,0,'','','MIRACLE MIX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',280,280,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0074','H','',0,0,'','','MIRACLE RESTORATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',280,280,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0075','H','',0,0,'','','MOBILE TOOTH EXTRACTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80,80,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0076','H','',0,0,'','','NORMAL ABUTMENT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0077','H','',0,0,'','','NORMAL LOWER WISDOM TOOTH REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0078','H','',0,0,'','','NORMAL UPPER WISDOM TOOTH REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0079','H','',0,0,'','','OBTURATOR LUCITON','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2800,2800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0080','H','',0,0,'','','OBTURATOR LUCITON WITH TEETH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3600,3600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0081','H','',0,0,'','','ORAL & MAXXILLOFACIAL Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0082','H','',0,0,'','','ORTHO.RETENTION OR SIMPLE CORRECTION(DENTAL)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0083','H','',0,0,'','','ORTHODONTIC BRACKET WIRE BREAKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0084','H','',0,0,'','','ORTHODONTIC BRACKET(CERAMIC) REPLACEMENT/TOOTH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0085','H','',0,0,'','','ORTHODONTIC BRACKETREPLACEMENT/TOOTH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',240,240,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0086','H','',0,0,'','','Orthodontic Extraction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0087','H','',0,0,'','','Orthodontic Myofunctional Appliance','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0088','H','',0,0,'','','Orthodontic Treat With Ceramic Braces','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0089','H','',0,0,'','','Orthodontic Treat.-Clear Aligners','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0090','H','',0,0,'','','ORTHODONTIC TREAT.WITH REMOVABLE APPLIANCES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0091','H','',0,0,'','','Orthodontic Treat-metal Brackets','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0092','H','',0,0,'','','ORTHODONTIC WIRING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0093','H','',0,0,'','','ORTHODONTICTREAT.-SURGICAL ORTHODONTICS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',56000,56000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0094','H','',0,0,'','','OSMF INJECTIONS PER SITTING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0095','H','',0,0,'','','PARTIAL DENTURE PER TOOTH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0096','H','',0,0,'','','Pedo Apical Barrier Construction (MTA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0097','H','',0,0,'','','PEDO APICAL BARRIER CONSTRUCTION (MTF)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3200,3200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0098','H','',0,0,'','','PEDO CAP DECIDUOUS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',900,900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0099','H','',0,0,'','','PEDO CAP PERMANENT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',900,900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0100','H','',0,0,'','','Pedo Composite Restoration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0101','H','',0,0,'','','PEDO GIC RESTORATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0102','H','',0,0,'','','PEDO ORTHO MYOFUNCTIONAL (APPLIANCE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3600,3600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0103','H','',0,0,'','','PEDO ORTHO SIMPLE PLATE (SCREW PLATE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2400,2400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0104','H','',0,0,'','','Pedo Pit & Fissure sealant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0105','H','',0,0,'','','PEDO PULPECTOMY/RCT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0106','H','',0,0,'','','Pedo Scaling Full Mouth','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0107','H','',0,0,'','','PEDO SILVER AMALGAM RESTORATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0108','H','',0,0,'','','Pedo Space Maintainer/Regainer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0109','H','',0,0,'','','PEDO STRIP CROWN PER TOOTH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0110','H','',0,0,'','','PERICORONAL FLAP REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0111','H','',0,0,'','','PERICORONAL FLAP SURGERY.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0112','H','',0,0,'','','PERIODONTIA BONE GRAFTING/QUADRANT (DENTAL)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8000,8000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0113','H','',0,0,'','','Periodontia Bone GraftingFull Mouth (Dental)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0114','H','',0,0,'','','Periodontia Crown Lengthening /Tooth','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0115','H','',0,0,'','','Periodontic Procedures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0116','H','',0,0,'','','POST ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',550,550,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0117','H','',0,0,'','','POST & CORE (CASTED)(DENTAL)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0118','H','',0,0,'','','POST (PREFABRICATED FIBRE)(DENTAL)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',720,720,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0119','H','',0,0,'','','PREFABRICATED FIBER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',720,720,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0120','H','',0,0,'','','PREVENTIVE ORTHODONTIC CERAMIC BRACES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',18000,18000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0121','H','',0,0,'','','PULPOTOMY (DENTAL)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',650,650,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0122','H','',0,0,'','','RECEMENTATION OF CROWN (DENTAL)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0123','H','',0,0,'','','Reimplantation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0124','H','',0,0,'','','RELING REBASING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0125','H','',0,0,'','','REMOVAL IMF WIRE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',480,480,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0126','H','',0,0,'','','REMOVAL OF WIRES/ ARCH BARS /SPLINTS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',240,240,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0127','H','',0,0,'','','RE-ROOT CANAL TREATMENT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0128','H','',0,0,'','','ROOT CANAL TREATMENT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0129','H','',0,0,'','','ROOT CANAL TREATMENT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1280,1280,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0130','H','',0,0,'','','ROOT PIECE EXTRACTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0131','H','',0,0,'','','Scaling+ Polishing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0132','H','',0,0,'','','SILVER AMALGAM RESTORATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0133','H','',0,0,'','','SIMPLE TOOTH EXTRACTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0134','H','',0,0,'','','SINUS LIFTING PROCEDURE DIRECT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10000,10000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0135','H','',0,0,'','','SINUS LIFTING PROCEDURE INDIRECT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8000,8000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0136','H','',0,0,'','','SOFT RELING (PER DENTURE ARCH)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0137','H','',0,0,'','','SPLINTING PER SEGMENT WITH COMPOSITE LIGHT CURE.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0138','H','',0,0,'','','SURGICAL DISIMPACTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0139','H','',0,0,'','','SURGICAL LOWER WISDOM TOOTH REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0140','H','',0,0,'','','SURGICAL ROOT PIECE EXTRACTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0141','H','',0,0,'','','SURGICAL TOOTH EXTRACTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0142','H','',0,0,'','','SURGICAL UPPER WISDOM TOOTH REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0143','H','',0,0,'','','Temporary Restoration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0144','H','',0,0,'','','TEMPOROMANDIBULAR INJ.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0145','H','',0,0,'','','Tilite','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0146','H','',0,0,'','','Titalnium (CAD/CAM) Frame','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0147','H','',0,0,'','','TOBACCO STAINS SCALING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0148','H','',0,0,'','','Total Office Bleeching Procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0149','H','',0,0,'','','VASTIBULAR EXTENSION SURGERY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0150','H','',0,0,'','','VENEER CERAMIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0151','H','',0,0,'','','VENEER COMPOSITE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'DTPR','','DTPR0152','H','',0,0,'','','ZIRCONIA CROWN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0001','H','',0,0,'','','COLONOSCOPY (CAMP)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2499,2499,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0002','H','',0,0,'','','Endoscopic - Sclerotherapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0003','H','',0,0,'','','ENDOSCOPIC BAND LIGATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6000,6000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0004','H','',0,0,'','','Endoscopic Colonic Stenting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0005','H','',0,0,'','','Endoscopic Dilation Achalasia Cardia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0006','H','',0,0,'','','Endoscopic Dilation- Silicon','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0007','H','',0,0,'','','Endoscopic Dilation-Bougie','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0008','H','',0,0,'','','ENDOSCOPIC ESOPHAGEAL STENTING (UNDER IITV)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7500,7500,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0009','H','',0,0,'','','ENDOSCOPIC FOREIGN BODY REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8000,8000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0010','H','',0,0,'','','Endoscopic Percutaneous Gastrostomy (PEG)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0011','H','',0,0,'','','Endoscopic Placement of N.J Tube','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0012','H','',0,0,'','','Endoscopic Polypectomy (Major/ Multiple)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0013','H','',0,0,'','','Endoscopic Polypectomy (Minor)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0014','H','',0,0,'','','ENDOSCOPIC SCLEROTHERAPY WITH GLUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8400,8400,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0015','H','',0,0,'','','Endoscopic Stent Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0016','H','',0,0,'','','ENDOSCOPY (CAMP)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1499,1499,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0017','H','',0,0,'','','ERCP - DIAGNOSTIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0018','H','',0,0,'','','ERCP BILLIARY STENTING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0019','H','',0,0,'','','ERCP PANCREATIC STENTING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0020','H','',0,0,'','','ERCP SPHINCTEROTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0021','H','',0,0,'','','ERCP STONE REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0022','H','',0,0,'','','Lower GI Endoscopy - Colonoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0023','H','',0,0,'','','Lower GI Endoscopy - Colonoscopy with Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0024','H','',0,0,'','','Nasal Endoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0025','H','',0,0,'','','Sigmoidoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0026','H','',0,0,'','','Sinus Endoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0027','H','',0,0,'','','Thoracoscopy (Diagnostic)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0028','H','',0,0,'','','Thoracoscopy (Therapeutic)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0029','H','',0,0,'','','THORACOSCOPY(DIAGNOSTIC)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13000,13000,NULL,'',0,'Y','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0030','H','',0,0,'','','UPPER GI ENDOSCOPY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',3000,3000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0031','H','',0,0,'','','Upper GI Endoscopy with Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'EDPR','','EDPR0032','H','',1,0,'','','ENDOSCOPY-LARYNX AND PHARYNX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','shweta','2025-10-10 16:27:09','I','N',99,'','','','','shweta','2025-10-10 16:25:40','shweta','2025-10-10 16:27:09'),(0,0,'ENCG','','ENCG0001','H','',0,0,'','','Urinary VMA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1350,1350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0002','H','',0,0,'','','Urinary metanephrine/Normetanephrine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1024,1024,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0003','H','',0,0,'','','Urinary free catecholamine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1690,1690,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0004','H','',0,0,'','','Serum catecholamine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3400,3400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0005','H','',0,0,'','','Serum aldosterone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1125,1125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0006','H','',0,0,'','','24 Hr urinary aldosterone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',920,920,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0007','H','',0,0,'','','Plasma renin activity','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0008','H','',0,0,'','','Serum aldosterone/renin ratio','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0009','H','',0,0,'','','Osmolality urine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',128,128,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0010','H','',0,0,'','','Osmolality serum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',128,128,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0011','H','',0,0,'','','Urinary sodium','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80,80,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0012','H','',0,0,'','','Urinary Chloride','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',43,43,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0013','H','',0,0,'','','Urinary potassium','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80,80,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0014','H','',0,0,'','','Urinary calcium','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80,80,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0015','H','',0,0,'','','Thyroid binding globulin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0016','H','',0,0,'','','24 hr. urinary free cotisole','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0017','H','',0,0,'','','Islet cell antebody','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',750,750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0018','H','',0,0,'','','GAD antibody','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1330,1330,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0019','H','',0,0,'','','Insulin associated antibody','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',449,449,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0020','H','',0,0,'','','IGF-1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0021','H','',0,0,'','','IGF-BP3','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1650,1650,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0022','H','',0,0,'','','Sex hormone binding globulin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1333,1333,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0023','H','',0,0,'','','USG guided FNAC thyroid gland','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',387,387,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0024','H','',0,0,'','','E2','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',208,208,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENCG','','ENCG0025','H','',0,0,'','','Thyro globulin antibody','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',587,587,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ENTP','','ENTP0001','H','',0,0,'','','AUDIOMETERY -PTA (ENT CONSULTATION)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0002','H','',0,0,'','','Audiometery -PTA (Pure Tone Audiometery)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0003','H','',0,0,'','','Audiometry Additional Test / Sisi.Tone Decay','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0004','H','',0,0,'','','Change of Tracheostomy Tube','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0005','H','',0,0,'','','DIRECT LARYNGOSCOPY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3500,3500,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0006','H','',0,0,'','','DIRECT LARYNGOSCOPY WITH BIOPSY (DLB)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0007','H','',0,0,'','','EAR LOBE REPAIR R\\L','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2400,2400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0008','H','',0,0,'','','EAR LOBE REPAIR U\\L','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0009','H','',0,0,'','','Ear Packing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0010','H','',0,0,'','','ENDOSCOPIC NASAL BIOPSY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0011','H','',0,0,'','','ENT Telescopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0012','H','',0,0,'','','Foreign Body Removal - Ear','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0013','H','',0,0,'','','Foreign Body Removal - Larynx','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0014','H','',0,0,'','','Foreign Body Removal - Nose','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0015','H','',0,0,'','','Hypopharyngoscopy Examination','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0016','H','',0,0,'','','MICROSCOPIC SUCTION AND CLEANING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0017','H','',0,0,'','','Nasal Cautery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0018','H','',0,0,'','','Nasal Packing Anterior','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0019','H','',0,0,'','','Nasal Packing Posterior','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0020','H','',0,0,'','','NASOPHARYNGEAL SWAB COLLECTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0021','H','',0,0,'','','NASOPHARYNGEAL SWAB COLLECTION - COVID','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0022','H','',0,0,'','','Nasopharyngoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0023','H','',0,0,'','','Nasopharynlaryngoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0024','H','',0,0,'','','POST SURGERY REEXPLORATION AND CAUTERIZATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0025','H','',0,0,'','','Pre Auricular Abscess','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0026','H','',0,0,'','','Removal of IMF (lntermaxillary Wire) Wire','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0027','H','',0,0,'','','Removal Of Impacted Wax Ears','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0028','H','',0,0,'','','Removal Of Impacted Wax Ears Under GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0029','H','',0,0,'','','Removal Of Nasal Pack','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0030','H','',0,0,'','','Removal of Tracheostomy Tube','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0031','H','',0,0,'','','Septal Abscess Incision & Drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0032','H','',0,0,'','','Speech Therapy (Per Session)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0033','H','',0,0,'','','TRACHEOSTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0034','H','',0,0,'','','VIDEO LARYNGOSCOPY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1250,1250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0035','H','',1,0,'','','STABILOMETRY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','shweta','2025-10-08 17:00:07','E','N',99,'','','','','shweta','2025-10-08 16:59:53','shweta','2025-10-08 17:00:07'),(0,0,'ENTS','','ENTS0001','H','',0,0,'','','ADENOIDECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0002','H','',0,0,'','','ADENO-TONSILLECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0003','H','',0,0,'','','Antral wash out under GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0004','H','',0,0,'','','Aspiration & drainage with pressure bandage of haematoma pinna','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0005','H','',0,0,'','','Aural polypectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0006','H','',0,0,'','','Bilateral Trans.Antral Ethmoidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0007','H','',0,0,'','','Caldwell Lucs operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0008','H','',0,0,'','','Choanal atresia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0009','H','',0,0,'','','Cortical mastoidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0010','H','',0,0,'','','ENDOLYMPHATIC SAC DECOMPRESSION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0011','H','',0,0,'','','Endoscopic CSF Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0012','H','',0,0,'','','Endoscopic DCR ( Dacyrocystorhinostomy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0013','H','',0,0,'','','Excision angiofibroma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0014','H','',0,0,'','','Excision branchial cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0015','H','',0,0,'','','Excision branchial fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0016','H','',0,0,'','','Excision branchial sinus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0017','H','',0,0,'','','EXCISION OF INTRAORAL SWELLING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0018','H','',0,0,'','','Excision pharyngeal diverticulum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0019','H','',0,0,'','','Excision submandibular gland','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0020','H','',0,0,'','','EXCISION TONGUE BIOPSY WITH LASER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0021','H','',0,0,'','','Facial nerve decompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0022','H','',0,0,'','','Foreign body hypopharynx','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0023','H','',0,0,'','','Fracture nasoethmoidal complex','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0024','H','',0,0,'','','FUNCTIONAL ENDOSCOPIC SINUS SURGERY B/L (FESS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0025','H','',0,0,'','','FUNCTIONAL ENDOSCOPIC SINUS SURGERY U/L (FESS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0026','H','',0,0,'','','Glomusjugulare tumor trans tympanic approach','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0027','H','',0,0,'','','INFERIOR TURBINATE REDUCTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0028','H','',0,0,'','','Laryngectomy conservative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0029','H','',0,0,'','','Laryngectomy total(block dissection)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0030','H','',0,0,'','','LARYNGOFISSURECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0031','H','',0,0,'','','Mastoidectomy modified Radical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0032','H','',0,0,'','','MAXILLECTOMY PARTIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0033','H','',0,0,'','','Microlaryngeal surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0034','H','',0,0,'','','MUCORMYCOSIS SURGERY BILATERAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',10,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0035','H','',0,0,'','','MUCORMYCOSIS SURGERY UNILATERAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',9,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0036','H','',0,0,'','','Myringoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0037','H','',0,0,'','','MYRINGOTOMY BILATERAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0038','H','',0,0,'','','MYRINGOTOMY BILATERAL WITH GROMETS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0039','H','',0,0,'','','MYRINGOTOMY UNILATERAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0040','H','',0,0,'','','MYRINGOTOMY UNILATERAL WITH GROMETS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0041','H','',0,0,'','','Nasal Cautery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0042','H','',0,0,'','','NASAL PACKING ANTERIOR & POSTERIOR (GA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0043','H','',0,0,'','','Nasal polypectomy bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0044','H','',0,0,'','','Nasal polypectomy unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0045','H','',0,0,'','','Nasal Sphenoidal vessel coagulation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0046','H','',0,0,'','','NASOLABIAL CYST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0047','H','',0,0,'','','Oroantral fistula repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0048','H','',0,0,'','','Ossiculoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0049','H','',0,0,'','','Parapharyngeal abscess incision & drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0050','H','',0,0,'','','PERITONSILLAR ABSCESS INCISION & DRAINAGE (WITH ANESTHESIA) - QUINSY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0051','H','',0,0,'','','Pre auricular sinus excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0052','H','',0,0,'','','REDUCTION MANIPULATION OF NASAL BONES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0053','H','',0,0,'','','Retropharyngeal abscess incision & drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0054','H','',0,0,'','','REVISION EXTENSIVE FESS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0055','H','',0,0,'','','Rhinoplasty augmented','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0056','H','',0,0,'','','Rhinoplasty corrective','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0057','H','',0,0,'','','SEPTAL ABSCESS INCISION & DRAINAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0058','H','',0,0,'','','SEPTOPLASTY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0059','H','',0,0,'','','STAPEDECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0060','H','',0,0,'','','Styloidectomy -bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0061','H','',0,0,'','','Styloidectomy -unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0062','H','',0,0,'','','Submucosal diathermy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0063','H','',0,0,'','','Suturing of small wounds neck','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0064','H','',0,0,'','','Thyroglossal cyst excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0065','H','',0,0,'','','Thyroglossal sinus excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0066','H','',0,0,'','','Thyroid surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0067','H','',0,0,'','','TONGUE TIE RELEASE & SUTURING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0068','H','',0,0,'','','TONSILLECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0069','H','',0,0,'','','Tracheal reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0070','H','',0,0,'','','TRACHEOSTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',5000,5000,NULL,'',1,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0071','H','',0,0,'','','Transantralethmoidectomy (horgans )(bilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0072','H','',0,0,'','','Tympanoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0073','H','',0,0,'','','Tympanoplasty with mastoidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0074','H','',0,0,'','','Tympanoplasty with ossiculoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0075','H','',0,0,'','','Younges Operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0076','H','',1,0,'','','STABILOMETRY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','shweta','2025-10-08 16:59:55','E','N',99,'','','','','shweta','2025-10-08 16:57:45','shweta','2025-10-08 16:59:55'),(0,0,'ERPM','','ERPM0001','H','',0,0,'','','ER001A - Laceration - Suturing / Dressing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',23,'N','N','Y',23,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:23'),(0,0,'ERPM','','ERPM0002','H','',0,0,'','','ER002A - Emergency with stablecardiopulmonary status','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',24,'N','N','Y',24,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:24'),(0,0,'ERPM','','ERPM0003','H','',0,0,'','','ER002B - Emergency with unstable cardiopulmonary status withresuccitation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11000,NULL,'',25,'N','N','Y',25,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:25'),(0,0,'ERPM','','ERPM0004','H','',0,0,'','','ER003A - Animal bites (Excluding Snake Bite)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1700,NULL,'',26,'N','N','Y',26,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:26'),(0,0,'ERPM','','ERPM0005','H','',0,0,'','','SB001A - Fracture - Conservative Management - Without plaster','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2300,NULL,'',27,'N','N','Y',27,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:27'),(0,0,'ERPM','','ERPM0006','H','',0,0,'','','SU073A - Emergency management of Hematuria(per  day) LOS-5','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2700,NULL,'',28,'N','N','Y',28,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:28'),(0,0,'ETCG','','ETCG0001','H','',0,0,'','','Pure Tone Audiogram','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',172,172,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0002','H','',0,0,'','','Impedence with stepedeal reflex','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',230,230,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0003','H','',0,0,'','','SISI Tone Decay','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',132,132,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0004','H','',0,0,'','','Multiple hearing assessment test to Adults','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',115,115,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0005','H','',0,0,'','','Speech Discrimination Score','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',90,90,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0006','H','',0,0,'','','Speech Assessment','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',120,120,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0007','H','',0,0,'','','Speech therapy per session of 30-40 minutes','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',131,131,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0008','H','',0,0,'','','Cold Calorie Test for Vestibular function','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',172,172,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0009','H','',0,0,'','','Removal of foreign body From Nose','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',345,345,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0010','H','',0,0,'','','Removal of foreign body From Ear','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',230,230,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0011','H','',0,0,'','','Syringing (Ear)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',166,166,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0012','H','',0,0,'','','Polyp removal under LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',575,575,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0013','H','',0,0,'','','Polyp removal under GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',850,850,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0014','H','',0,0,'','','Peritonsillar abscess Drainage under LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1449,1449,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0015','H','',0,0,'','','Myringoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6900,6900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0016','H','',0,0,'','','Staepedectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9200,9200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0017','H','',0,0,'','','Myringotomy with Grommet insertion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4600,4600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0018','H','',0,0,'','','Tympanotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7763,7763,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0019','H','',0,0,'','','Tympanoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13800,13800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0020','H','',0,0,'','','Mastoidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14950,14950,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0021','H','',0,0,'','','Otoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16100,16100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0022','H','',0,0,'','','Labyrinthectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13800,13800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0023','H','',0,0,'','','Skull Base surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25000,25000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0024','H','',0,0,'','','Facial Nerve Decompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17250,17250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0025','H','',0,0,'','','Septoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5750,5750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0026','H','',0,0,'','','Submucous Resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7314,7314,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0027','H','',0,0,'','','Septo-rhinoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16100,16100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0028','H','',0,0,'','','Rhinoplasty- Non-cosmetic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0029','H','',0,0,'','','Fracture Reduction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4250,4250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0030','H','',0,0,'','','Intra nasal Diathermy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1150,1150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0031','H','',0,0,'','','Turbinectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5750,5750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0032','H','',0,0,'','','Endoscopic DCR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13000,13000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0033','H','',0,0,'','','Endoscopic Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13800,13800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0034','H','',0,0,'','','Septal Perforation Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13800,13800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0035','H','',0,0,'','','Antrum Puncture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',950,950,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0036','H','',0,0,'','','Lateral Rhinotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0037','H','',0,0,'','','Cranio-facial resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22950,22950,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0038','H','',0,0,'','','Caldwell Luc Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10626,10626,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0039','H','',0,0,'','','Angiofibroma Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17000,17000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0040','H','',0,0,'','','Endoscopic Hypophysectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',21500,21500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0041','H','',0,0,'','','Endoscopic Optic Nerve Decompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',32775,32775,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0042','H','',0,0,'','','Decompression of Orbit','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25500,25500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0043','H','',0,0,'','','Punch/Wedge biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',607,607,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0044','H','',0,0,'','','Tonsillectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0045','H','',0,0,'','','Uvulo-palatoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13500,13500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0046','H','',0,0,'','','FESS for antrochoal polyp','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5750,5750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0047','H','',0,0,'','','FESS for ethmoidal polyp','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5750,5750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0048','H','',0,0,'','','Polyp removal ear','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',748,748,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0049','H','',0,0,'','','Polyp removal Nose(Septal polyp)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',748,748,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0050','H','',0,0,'','','Mastoidectomy plus Ossciculoplasty including\nTORP or PORP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2415,2415,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0051','H','',0,0,'','','Endolymphatic sac decompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2875,2875,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0052','H','',0,0,'','','Diagnostic endoscopy under GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2070,2070,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0053','H','',0,0,'','','Yonges operation for Atrophic rhinitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6900,6900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0054','H','',0,0,'','','Vidian neurectomy for vasomotor Rhinitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10350,10350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0055','H','',0,0,'','','Nasal Packing-anterior','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',345,345,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0056','H','',0,0,'','','Nasal Packing-posterior','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',805,805,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0057','H','',0,0,'','','Ranula Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6843,6843,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0058','H','',0,0,'','','Tongue Tie excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0059','H','',0,0,'','','Sub Mandibular Duct Lithotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',269,269,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0060','H','',0,0,'','','Adenoidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5640,5640,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0061','H','',0,0,'','','Palatopharyngoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8165,8165,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0062','H','',0,0,'','','Pharyngoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17193,17193,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0063','H','',0,0,'','','Styloidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9200,9200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0064','H','',0,0,'','','Direct laryngoscopy including Biopsy under GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0065','H','',0,0,'','','Oesophagoscopy/foreign body removal from','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0066','H','',0,0,'','','Bronchoscopy with F.B.removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2438,2438,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0067','H','',0,0,'','','Other Major Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13500,13500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ETCG','','ETCG0068','H','',0,0,'','','Other Minor Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7650,7650,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GASS','','GASS0001','H','',0,0,'','','Adhesiolysis Major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0002','H','',0,0,'','','Adhesiolysis minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0003','H','',0,0,'','','Ampullectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0004','H','',0,0,'','','Anterior Resection - High','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0005','H','',0,0,'','','Anterior Resection - Low with covering stoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0006','H','',0,0,'','','Antrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0007','H','',0,0,'','','Appendicectomy open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0008','H','',0,0,'','','Appendicular abscess drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0009','H','',0,0,'','','Band release','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0010','H','',0,0,'','','Cardiomyotomy -Hellers','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0011','H','',0,0,'','','Cardiomyotomy -Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0012','H','',0,0,'','','Cholangio - jejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0013','H','',0,0,'','','Cholecystectomy with CBD exploration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0014','H','',0,0,'','','Cholecystectomy, CBD exploration, choledocho - duodenostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0015','H','',0,0,'','','CHOLECYSTECTOMY-LA P','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0016','H','',0,0,'','','Cholecysto - jejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0017','H','',0,0,'','','Choledochal Cyst Excision, HepaticoJejunostomy (HJ)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0018','H','',0,0,'','','Choledocho - duodenostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0019','H','',0,0,'','','Colon Replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0020','H','',0,0,'','','Colonic Perforation Closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0021','H','',0,0,'','','Colonic Pull Through &Coloanal Anastomosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0022','H','',0,0,'','','Colonic Resection Anastomosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0023','H','',0,0,'','','Colonic Resection Anastomosis with covering stoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0024','H','',0,0,'','','Colorectal Stapled Anastomosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0025','H','',0,0,'','','Cystojejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0026','H','',0,0,'','','DEEP SEATED ABSCESS DRAINAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0027','H','',0,0,'','','Devascu la risation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0028','H','',0,0,'','','Devascularisation&Oesophageal Transection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0029','H','',0,0,'','','Diagnostic lap & biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0030','H','',0,0,'','','Diagnostic laparoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0031','H','',0,0,'','','Diaphragmatic Hernia Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0032','H','',0,0,'','','Dielafoy Bleed Suture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0033','H','',0,0,'','','Distal Pancreatectomy & Splenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0034','H','',0,0,'','','Diverticulectomy Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0035','H','',0,0,'','','Diverticulectomy open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0036','H','',0,0,'','','DU (Duodenal Ulcer) Bleed (suture+ TV+ Pyloroplasty)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0037','H','',0,0,'','','DU perforation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0038','H','',0,0,'','','DU perforation- endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0039','H','',0,0,'','','Duodenectomy -Pancreas Preserving','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0040','H','',0,0,'','','Duodenojejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0041','H','',0,0,'','','Esophageal exclusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0042','H','',0,0,'','','Esophageal reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0043','H','',0,0,'','','Esophageal transection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0044','H','',0,0,'','','Esophagectomy - Transhiatal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0045','H','',0,0,'','','Esophagectomy -Transthoracic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0046','H','',0,0,'','','Excision of anal papilla/sentinel piles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0047','H','',0,0,'','','EXPLORATORY LAPAROTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0048','H','',0,0,'','','Feeding jejunostomy / Gastrostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0049','H','',0,0,'','','Full Thickness Rectal Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0050','H','',0,0,'','','G ASTRECTOMY-SU B TOTA I','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0051','H','',0,0,'','','GASTRECTOMY-SUB TOTAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0052','H','',0,0,'','','GASTRECTOMY-TOTAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0053','H','',0,0,'','','Gastric pull -up','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0054','H','',0,0,'','','Gastric Ulcer Perforation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0055','H','',0,0,'','','Gastrojejunostomy (Roux-en-Y)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0056','H','',0,0,'','','Gastrojejunostomy-Loop','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0057','H','',0,0,'','','Gastrojejunostomy-Pouch','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0058','H','',0,0,'','','Hydatid cyst cysto - pericystectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0059','H','',0,0,'','','Hydatid cyst partial cystectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0060','H','',0,0,'','','Ilea Transverse Bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0061','H','',0,0,'','','ILEOSTOMY / JEJUNOSTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0062','H','',0,0,'','','Intestinal Resection Anastomosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0063','H','',0,0,'','','Lap abscess drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0064','H','',0,0,'','','Lap assisted enteroscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0065','H','',0,0,'','','LAP CBD EXPLORATION WITH LAP CHOLECYSTECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0066','H','',0,0,'','','Lap GJ (Gastro jejunostomy) + Lap. TV (Truncal Vagotomy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0067','H','',0,0,'','','Lap TV (Truncal Vagotomy) + Assisted GJ (Gastro jejunostomy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0068','H','',0,0,'','','Lap. Anterior Resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0069','H','',0,0,'','','Lap. APR (Abdominoperineal resection)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0070','H','',0,0,'','','Lap. Assisted Int. Resection, Anastomosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0071','H','',0,0,'','','Lap. Cardiomyotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0072','H','',0,0,'','','Lap. Closure of Intestinal Perforation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0073','H','',0,0,'','','Lap. Converted to open cholecystectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0074','H','',0,0,'','','Lap. Diaphragmatic Hernia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0075','H','',0,0,'','','LAP. DU PERFORATION CLOSURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0076','H','',0,0,'','','Lap. Fundoplication','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0077','H','',0,0,'','','Lap. Gastrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0078','H','',0,0,'','','Lap. Hydatid Cyst.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0079','H','',0,0,'','','Lap. lncisional Hernioplasty Large','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0080','H','',0,0,'','','Lap. lncisional Hernioplasty Small','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0081','H','',0,0,'','','Lap. Mesh Rectopexy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0082','H','',0,0,'','','Lap. Splenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0083','H','',0,0,'','','Lap.Inguinal Hernioplasty (bilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0084','H','',0,0,'','','Lap.Inguinal Hernioplasty (unilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0085','H','',0,0,'','','LAPAROSCOPIC ADHESINOLYSIS MAJOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0086','H','',0,0,'','','Laparoscopic Assisted Hemicolectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0087','H','',0,0,'','','Laparoscopic Assisted lleocaecal Resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0088','H','',0,0,'','','LAPAROSCOPIC CHOLECYSTECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0089','H','',0,0,'','','LAPAROSCOPIC GASTROJEJUNOSTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',10,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0090','H','',0,0,'','','Laparoscopic LN Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0091','H','',0,0,'','','Laparoscopic PancreaticoJejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0092','H','',0,0,'','','LAPAROSCOPIC PERITONEAL LAVAGE DRAINAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0093','H','',0,0,'','','Laparoscopic Whipples','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0094','H','',0,0,'','','Laparotomy Abscess Drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0095','H','',0,0,'','','Laparotomy Lavage, Drain','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0096','H','',0,0,'','','Laproscopic Adhesinolysis Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0097','H','',0,0,'','','Laproscopic Appendicectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0098','H','',0,0,'','','Laproscopic feeding jejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0099','H','',0,0,'','','Laproscopic liver abscess drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0100','H','',0,0,'','','Lateral anal sphincterotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0101','H','',0,0,'','','Lateral Pancreaticojejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0102','H','',0,0,'','','Lateral Pancreaticojejunostomy + Splenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0103','H','',0,0,'','','Left Hemicolectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0104','H','',0,0,'','','Left HepaticoJej. For benign Biliary Stricture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0105','H','',0,0,'','','Left Thoraco abdominal Oesophago gastrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0106','H','',0,0,'','','Leiomyoma Enucleation Open/ Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0107','H','',0,0,'','','Liver - Segmental resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0108','H','',0,0,'','','Liver biopsy (US) guided','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0109','H','',0,0,'','','Liver Tear Suture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0110','H','',0,0,'','','lleostomy / Jejunostomy closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0111','H','',0,0,'','','Major Liver Resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0112','H','',0,0,'','','Meckels Diverticulectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0113','H','',0,0,'','','Mesenteric cyst excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0114','H','',0,0,'','','Mesenteric lymphnode biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0115','H','',0,0,'','','Mesh Rectopexy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0116','H','',0,0,'','','Mesh removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0117','H','',0,0,'','','Mesocaval&Lieno Renal Shunt','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0118','H','',0,0,'','','Necrosectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0119','H','',0,0,'','','Nissens Fundoplication-lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0120','H','',0,0,'','','Nissens Fundoplication-open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0121','H','',0,0,'','','OFFER PACKAGE LAP CHOLECYSTECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',24999,24999,NULL,'',1,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0122','H','',0,0,'','','Omentectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0123','H','',0,0,'','','Open cholecystectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0124','H','',0,0,'','','Open cholecystectomy CBD (common bile duct) exploration, T Tube drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0125','H','',0,0,'','','Open cystogastrostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0126','H','',0,0,'','','Open hydatid cyst excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0127','H','',0,0,'','','Pancreatic Abscess drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0128','H','',0,0,'','','Pancreatic Cystoenterostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0129','H','',0,0,'','','Pancreatic -distal and splenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0130','H','',0,0,'','','Pancreatic head resection with duodenum preservation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0131','H','',0,0,'','','Pancreatic jejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0132','H','',0,0,'','','Pancreatic Total','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0133','H','',0,0,'','','PANCREATICECTOMY-DISTAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0134','H','',0,0,'','','Perforation Closure (Enteric, TB, Trauma)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0135','H','',0,0,'','','Peritoneovenous shunt','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0136','H','',0,0,'','','Porto - caval shunt','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0137','H','',0,0,'','','Post ERCP Bleeding management','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0138','H','',0,0,'','','Pseudo cyst Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0139','H','',0,0,'','','Pyloroplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0140','H','',0,0,'','','Pylorus preserving PancreaticoDuodenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0141','H','',0,0,'','','Radical Cholecystectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0142','H','',0,0,'','','Rectopexy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0143','H','',0,0,'','','Resection for HilarChollangioCa.HJ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0144','H','',0,0,'','','Restorative Protocolectomy, lleal J Pouch Anal Anastomosis, lleostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0145','H','',0,0,'','','Resuturing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0146','H','',0,0,'','','Retroperitoneal Tumor Resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0147','H','',0,0,'','','Right Hemicolectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0148','H','',0,0,'','','Sigmoid Colectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0149','H','',0,0,'','','Sinus excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0150','H','',0,0,'','','Small bowel resection anastomosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0151','H','',0,0,'','','Splenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0152','H','',0,0,'','','Splenectomy & Devascularisation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0153','H','',0,0,'','','Splenectomy & Lieno Renal Shunt','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0154','H','',0,0,'','','Splenectomy for Portal HT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0155','H','',0,0,'','','Spleno-Renal Shunt -distal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0156','H','',0,0,'','','Stricturoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0157','H','',0,0,'','','Thoraco/ Lap. Oesophagectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0158','H','',0,0,'','','Total Colectomy & lleorectal Anastomosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0159','H','',0,0,'','','Total Protocolectomy & lleostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0160','H','',0,0,'','','Transverse colostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0161','H','',0,0,'','','Triple bypass for carcinoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0162','H','',0,0,'','','TRUNCAL VAGOTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0163','H','',0,0,'','','TRUNCAL VAGOTOMY + GASTROJEJUNOSTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0164','H','',0,0,'','','TRUNCAL VAGOTOMY + PYLOROPLASTY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0165','H','',0,0,'','','USG GUIDED BIOPSY WITH TRACT EMBOLISATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0166','H','',0,0,'','','USG GUIDED PIGTAIL DRAINAGE WITH LIVER BIOPSY AND EMBOLISATION ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',10,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0167','H','',0,0,'','','Wedge Resection of Stomach','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GASS','','GASS0168','H','',0,0,'','','Whipples Pancreaticoduodenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GECG','','GECG0001','H','',0,0,'','','D-xylase test','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',765,765,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GECG','','GECG0002','H','',0,0,'','','Fecal fat test/ fecal chymotrypsin/ fecal elastase','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',850,850,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GECG','','GECG0003','H','',0,0,'','','Breath tests','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GECG','','GECG0004','H','',0,0,'','','H pylori serology for ciliac disease','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GECG','','GECG0005','H','',0,0,'','','HBV genotyping','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2250,2250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GECG','','GECG0006','H','',0,0,'','','HCV genotyping','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4388,4388,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GENS','','GENS0001','H','',0,0,'','','Anal Dilatation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0002','H','',0,0,'','','AV FISTULA - PACKAGE A- RADIOCEPHALIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11000,11000,NULL,'',1,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0003','H','',0,0,'','','Band Ligation of Piles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0004','H','',0,0,'','','Carbuncle Excision - Intermediate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0005','H','',0,0,'','','CARBUNCLE EXCISION - MAJOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0006','H','',0,0,'','','Carbuncle Excision - Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0007','H','',0,0,'','','CARBUNCLE EXCISION - SUPRA MAJOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0008','H','',0,0,'','','Corn Excision - Multiple','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0009','H','',0,0,'','','CORN EXCISION - SINGLE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1300,1300,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0010','H','',0,0,'','','DEBRIDEMENT INTERMEDIATE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0011','H','',0,0,'','','Ear Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0012','H','',0,0,'','','EPIDIDYMAL CYST EXCISION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',2,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0013','H','',0,0,'','','Epigastric Hernia Repair -( Mesh Hernioplasty)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0014','H','',0,0,'','','Femoral Hernia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0015','H','',0,0,'','','FIBROADENOMA LARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0016','H','',0,0,'','','FISSURECTOMY AND FISSURE-DILATATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',30600,30600,NULL,'',1,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0017','H','',0,0,'','','Fissurectomy-Anal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0018','H','',0,0,'','','FISTULA IN ANO ( HIGH)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0019','H','',0,0,'','','Fistula in Ano ( Low)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0020','H','',0,0,'','','FISTULA-HIGH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0021','H','',0,0,'','','FOREIGN BODY REMOVAL - LARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0022','H','',0,0,'','','FOREIGN BODY REMOVAL - MEDIUM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0023','H','',0,0,'','','FOREIGN BODY REMOVAL - SMALL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0024','H','',0,0,'','','FOREIGN BODY REMOVAL –  LARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',3,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0025','H','',0,0,'','','Haemmorhoidectomy / Piles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0026','H','',0,0,'','','Hernia-Spigelian, other rare','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0027','H','',0,0,'','','Hydrocele - Bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0028','H','',0,0,'','','Hydrocele - Unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0029','H','',0,0,'','','I & D Perianal Region/ Abscess - Intermediate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0030','H','',0,0,'','','I & D PERIANAL REGION/ ABSCESS - MAJOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',4,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0031','H','',0,0,'','','I & D Perianal Region/Abscess - Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0032','H','',0,0,'','','IMPLANT REMOVAL-FEMUR NAIL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0033','H','',0,0,'','','INCISION AND DRAINAGE MAJOR (I&D)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',2,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0034','H','',0,0,'','','INCISION AND DRANAGE MINOR (I&D)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0035','H','',0,0,'','','INGROWING TOE NAIL - SINGLE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1300,1300,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0036','H','',0,0,'','','Inguinal Hernia - Bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0037','H','',0,0,'','','Inguinal Hernia - Bilateral - Mesh Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0038','H','',0,0,'','','Inguinal Hernia - Unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0039','H','',0,0,'','','Inguinal Hernia - Unilateral - Mesh Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0040','H','',0,0,'','','Inguinal Hernia - with Orchiectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0041','H','',0,0,'','','Lap Umbilical Hernioplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0042','H','',0,0,'','','LASER EXCISION OF PILONIDAL SINUS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0043','H','',0,0,'','','LASER FISSURECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0044','H','',0,0,'','','LASER HEMORRHOIDOPLASTY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0045','H','',0,0,'','','Lipoma Excision - Intermediate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0046','H','',0,0,'','','Lipoma Excision - Major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0047','H','',0,0,'','','Lipoma Excision - Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0048','H','',0,0,'','','lncisional Hernia mesh repair - Major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0049','H','',0,0,'','','lncisional Hernia mesh repair - Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0050','H','',0,0,'','','lncisional Hernia Repair - Major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0051','H','',0,0,'','','lncisional Hernia Repair - Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0052','H','',0,0,'','','lschiorectal Abscess','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0053','H','',0,0,'','','Lymph Node Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0054','H','',0,0,'','','LYMPH NODE EXCISION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0055','H','',0,0,'','','MANUAL REMOVAL OF STOOL(MRS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',1,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0056','H','',0,0,'','','MINIMAL INVASIVE PROCEDURE FOR HEMORRHOIDS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0057','H','',0,0,'','','Pilonidal Sinus Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0058','H','',0,0,'','','Pilonidal Sinus Excision with Rotation Flap Cover','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0059','H','',0,0,'','','Rectal Polyp','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0060','H','',0,0,'','','Recurrent Inguinal Hernia - Mesh repair - Bilat','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0061','H','',0,0,'','','Recurrent Inguinal Hernia - Mesh repair - Uni lat','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0062','H','',0,0,'','','Repair of cut throat wounds','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0063','H','',0,0,'','','SEBACEOUS CYST - MAJOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0064','H','',0,0,'','','SEBACEOUS CYST - MINOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1300,1300,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0065','H','',0,0,'','','STAPPLER HEMORRHOIDECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0066','H','',0,0,'','','Sub mucous Cyst Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0067','H','',0,0,'','','Superficial Tumor Excision Large','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0068','H','',0,0,'','','Superficial Tumor Excision Small','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0069','H','',0,0,'','','Suture control of Anal Bleed','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0070','H','',0,0,'','','SUTURE OF LARGE CLW','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0071','H','',0,0,'','','SUTURE OF MEDIUM CLW','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0072','H','',0,0,'','','SUTURE OF SMALL CLW','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0073','H','',0,0,'','','Sympathectomy - Cervical/ Lumbar','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0074','H','',0,0,'','','Umbilical Hernia Mesh Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0075','H','',0,0,'','','Umbilical Hernia Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0076','H','',0,0,'','','USG Guided External Drainage of Infected Pseudo cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0077','H','',0,0,'','','Venesection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0078','H','',1,0,'','','THERAPUTIC PURAL TAPPING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','riya','2025-10-28 13:23:53','I','N',99,'','','','','riya','2025-10-28 13:05:58','riya','2025-10-28 13:23:53'),(0,0,'GENS','','GENS0079','H','',1,0,'','','TRECHOSTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',0,'N','N','N',0,'','U','','N','N','Y','vishal','2025-11-17 16:01:42','I','N',99,'','','','','riya','2025-11-16 14:49:36','vishal','2025-11-17 16:01:42'),(0,0,'GENS','','GENS0080','H','',1,0,'','','TRECHOSTOMY CHANGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1000,NULL,'',0,'N','N','N',0,'','U','','N','N','Y','vishal','2025-11-17 16:01:33','I','N',99,'','','','','riya','2025-11-16 14:52:17','vishal','2025-11-17 16:01:33'),(0,0,'GICG','','GICG0001','H','',0,0,'','','Renal Cortical Scintigraphy with Technetium 99m\nD.M.S.A.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3079,3079,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GICG','','GICG0002','H','',0,0,'','','Dynamic Renography.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3079,3079,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GICG','','GICG0003','H','',0,0,'','','Dynamic Renography with Diuretic.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3079,3079,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GICG','','GICG0004','H','',0,0,'','','Dynamic Renography with Captopril','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1960,1960,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GICG','','GICG0005','H','',0,0,'','','Testicular Scan','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1319,1319,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GNCG','','GNCG0001','H','',0,0,'','','Injury Of Superficial Soft Tissues','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',425,425,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GNCG','','GNCG0002','H','',0,0,'','','Suturing of small wounds','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',269,269,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GNCG','','GNCG0003','H','',0,0,'','','Secondary suture of wounds','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',290,290,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GNCG','','GNCG0004','H','',0,0,'','','Debridement of wounds','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GNCG','','GNCG0005','H','',0,0,'','','Removal Of Foreign Bodies','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0001','H','',0,0,'','','Upper G.I. Endoscopy + Lower G.I. Endoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1725,1725,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0002','H','',0,0,'','','Diagnostic endoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0003','H','',0,0,'','','Endoscopic biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',345,345,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0004','H','',0,0,'','','Endoscopic mucosal resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1543,1543,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0005','H','',0,0,'','','Oesophageal stricture dilatation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1725,1725,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0006','H','',0,0,'','','Balloon dilatation of achalasia  cardia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2875,2875,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0007','H','',0,0,'','','Foreign body removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1725,1725,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0008','H','',0,0,'','','Oesophageal stenting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0009','H','',0,0,'','','Band ligation of oesophageal varices','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0010','H','',0,0,'','','Sclerotherapy of oesophageal varices','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0011','H','',0,0,'','','Glue injection of varices','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0012','H','',0,0,'','','Argon plasma coagulation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4025,4025,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0013','H','',0,0,'','','Pyloric balloon dilatation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2415,2415,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0014','H','',0,0,'','','Enteranal stenting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3680,3680,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0015','H','',0,0,'','','Duodenal stricture dilation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',990,990,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0016','H','',0,0,'','','Single balloon enterocopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0017','H','',0,0,'','','Double balloon enteroscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3500,3500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0018','H','',0,0,'','','Capsule endoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4950,4950,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0019','H','',0,0,'','','Piles banding','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1099,1099,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0020','H','',0,0,'','','Colonic stricture dilatation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2737,2737,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0021','H','',0,0,'','','Hot biopsy forceps procedures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0022','H','',0,0,'','','Colonic stenting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2737,2737,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0023','H','',0,0,'','','Junction biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0024','H','',0,0,'','','Conjugal microscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0025','H','',0,0,'','','Endoscopic sphincterotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2415,2415,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0026','H','',0,0,'','','CBD stone extraction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2415,2415,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0027','H','',0,0,'','','CBD stricture dilatation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5850,5850,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0028','H','',0,0,'','','Biliary stenting (plastic and metallic)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4830,4830,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0029','H','',0,0,'','','Mechanical lithotripsy of CBD stones','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8000,8000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0030','H','',0,0,'','','Pancreatic sphincterotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6375,6375,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0031','H','',0,0,'','','Pancreatic stricture dilatation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5750,5750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0032','H','',0,0,'','','Pancreatic stone extraction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10098,10098,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0033','H','',0,0,'','','Mechanical lithotripsy of pancreatic stones','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11385,11385,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0034','H','',0,0,'','','Endoscopic cysto gastrostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7245,7245,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0035','H','',0,0,'','','Balloon dilatation of papilla','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6210,6210,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0036','H','',0,0,'','','Ultrasound guided FNAC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',550,550,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0037','H','',0,0,'','','Ultrasound guided abscess Drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',648,648,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0038','H','',0,0,'','','PTBD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1150,1150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0039','H','',0,0,'','','Diagnostic angiography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0040','H','',0,0,'','','Vascular embolization','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13590,13590,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0041','H','',0,0,'','','TIPS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4860,4860,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0042','H','',0,0,'','','IVC graphy + hepatic veinography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',30791,30791,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0043','H','',0,0,'','','Muscular stenting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',87975,87975,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0044','H','',0,0,'','','BRTO','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',51750,51750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0045','H','',0,0,'','','Portal haemodymic studies','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1913,1913,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0046','H','',0,0,'','','Manometry and PH metry','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1612,1612,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0047','H','',0,0,'','','Oesophageal PH metry','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0048','H','',0,0,'','','Oesophageal manometry','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0049','H','',0,0,'','','Small bowel manometry','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6120,6120,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0050','H','',0,0,'','','Anorectal manometry','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6120,6120,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0051','H','',0,0,'','','Colonic manometry','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6885,6885,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0052','H','',0,0,'','','Biliary manometry','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6885,6885,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0053','H','',0,0,'','','Sengstaken blackenesse tube tempode','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2588,2588,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0054','H','',0,0,'','','Lintas machles tube tempode','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2875,2875,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0055','H','',0,0,'','','Fecal fat test/ fecal chymotrypsin/ fecal elastase','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0056','H','',0,0,'','','Breath tests','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0057','H','',0,0,'','','Extra corporeal shortwave lithotripsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',37260,37260,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GSCG','','GSCG0058','H','',0,0,'','','Liver biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1242,1242,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'GYNP','','GYNP0001','H','',0,0,'','','AMNIO INFUSION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1900,1900,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0002','H','',0,0,'','','AMNIOCENTESIS PROCEDURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0003','H','',0,0,'','','ANTERIOR & POSTERIOR VAGINAL REPAIR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0004','H','',0,0,'','','ANTERIOR COLPORRAPHY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2400,2400,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0005','H','',0,0,'','','BIOPSY - ENDOMETRIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',850,850,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0006','H','',0,0,'','','BIOPSY OF CERVIX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',700,700,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0007','H','',0,0,'','','BIOPSY OF VAGINA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0008','H','',0,0,'','','BIOPSY OF VULVA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0009','H','',0,0,'','','CERVICAL DILATATION WITH LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',700,700,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0010','H','',0,0,'','','CERVICAL ENCIRCLAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2400,2400,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0011','H','',0,0,'','','COLPOTOMY & NEEDLING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0012','H','',0,0,'','','CONE BIOPSY OF CERVIX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0013','H','',0,0,'','','COPPER T REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',300,300,NULL,'',0,'Y','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0014','H','',0,0,'','','CRYOCAUTERY OF CERVIX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0015','H','',0,0,'','','CTG MONITING (ABOVE 2 HRS.)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0016','H','',0,0,'','','CTG MONITING (BELOW 2 HRS.)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0017','H','',0,0,'','','CULDOCENTESIS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0018','H','',0,0,'','','CU-T / IUCD INSERTION (COPPER T)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0019','H','',0,0,'','','DIATHERMY CAUTERISATION OF CERVIX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0020','H','',0,0,'','','DILATATION & CURETTAGE (D&C)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',1,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0021','H','',0,0,'','','DRAINAGE OF ABDOMINAL WALL HEMATOMA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0022','H','',0,0,'','','DRAINAGE OF VULVAL HEMATOMA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0023','H','',0,0,'','','EVACUATION OF UTERUS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0024','H','',0,0,'','','EXCISION OF LABIAL CYST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',850,850,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0025','H','',0,0,'','','EXCISION OF VAGINAL SEPTUM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0026','H','',0,0,'','','FIRST TRIMESTER MTP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0027','H','',0,0,'','','FOREIGN BODY REMOVAL FROM VAGINA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0028','H','',0,0,'','','HYDROTUBATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0029','H','',0,0,'','','HYSTEROSCOPIC REMOVAL OF IUCD/FOREIGN BODY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0030','H','',0,0,'','','HYSTEROSCOPY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0031','H','',0,0,'','','INCISION OF HYMEN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0032','H','',0,0,'','','MANUAL REMOVAL OF PLACENTA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',750,750,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0033','H','',0,0,'','','NYLON WIRE REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'Y','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0034','H','',0,0,'','','PELVIC PARACENTESIS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',850,850,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0035','H','',0,0,'','','REMOVAL OF BARTHOLIN CYST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0036','H','',0,0,'','','REPAIR OF CERVICAL TEAR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0037','H','',0,0,'','','SECOND TRIMESTER MTP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2400,2400,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0038','H','',0,0,'','','THREE SWABS TEST (FOR VAGINAL FISTULA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0039','H','',0,0,'','','TUBAL LIGATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2400,2400,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0040','H','',0,0,'','','TUBAL LNSUFFLATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNP','','GYNP0041','H','',0,0,'','','VAULT REPAIR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0001','H','',0,0,'','','ABDOMINAL HYSTERECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0002','H','',0,0,'','','Abdominal Myomectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0003','H','',0,0,'','','Abdominal operation for stress incontinence','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0004','H','',0,0,'','','Anterior & Posterior Vaginal Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0005','H','',0,0,'','','Anterior Colporraphy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0006','H','',0,0,'','','Bartholin Cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0007','H','',0,0,'','','Caesarian delivery (LSCS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0008','H','',0,0,'','','CAESARIAN DELIVERY (LSCS) (OFFER PACKAGE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',21998,21998,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0009','H','',0,0,'','','Caesarian delivery with tubal ligation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0010','H','',0,0,'','','Caesarian Hysterectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0011','H','',0,0,'','','Cervical Circlage (Shirodkar)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0012','H','',0,0,'','','Complex/High Risk Hysterectomy (TAH+BSO)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0013','H','',0,0,'','','Diagnostic Laparoscopy with/without chromotubation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0014','H','',0,0,'','','DILATATION & EVACUATION (D & E)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0015','H','',0,0,'','','Drainage of Abdominal Wall Hematoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0016','H','',0,0,'','','Evacuation of Uterus (Retain Product of Conception)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0017','H','',0,0,'','','Excision of Urethral Caruncle','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0018','H','',0,0,'','','Excision of Vaginal Septum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0019','H','',0,0,'','','Fenton\'s Operation for Reconstruction of Vagina','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0020','H','',0,0,'','','First Trimester MTP &Sterilisation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0021','H','',0,0,'','','Foreign Body Removal from Vagina','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0022','H','',0,0,'','','Fractional Curettage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0023','H','',0,0,'','','Gilliam\'s Ventrosuspension','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0024','H','',0,0,'','','Hysteroscopic dissection of Uterine Synechiae-mild','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0025','H','',0,0,'','','Hysteroscopic dissection of Uterine Synechiae-Severe','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0026','H','',0,0,'','','Hysteroscopic Myomectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0027','H','',0,0,'','','Hysteroscopic Polypectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0028','H','',0,0,'','','Hysteroscopic Removal of IUCD/Foreign Body','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0029','H','',0,0,'','','Hysteroscopic Resection of Uterine Septum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0030','H','',0,0,'','','HYSTEROSCOPIC TUBAL CANNULATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',4,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0031','H','',0,0,'','','Hysterostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0032','H','',0,0,'','','Hysterostomy with Tubal Ligation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0033','H','',0,0,'','','Instrumental Delivery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0034','H','',0,0,'','','Lap./ Vaginal Adhesiolysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0035','H','',0,0,'','','Laparoscopic Ablation of Endometriotic Spots','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0036','H','',0,0,'','','Laparoscopic Adhesiolysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0037','H','',0,0,'','','Laparoscopic Aspiration of Cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0038','H','',0,0,'','','Laparoscopic Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0039','H','',0,0,'','','Laparoscopic Burch','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0040','H','',0,0,'','','Laparoscopic Enterocele Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0041','H','',0,0,'','','Laparoscopic Fimbriolysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0042','H','',0,0,'','','Laparoscopic Multiple Ovarian Drilling/Puncture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0043','H','',0,0,'','','Laparoscopic Myomectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0044','H','',0,0,'','','Laparoscopic Oophorectomy(UL)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0045','H','',0,0,'','','Laparoscopic Ovarian Cystectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0046','H','',0,0,'','','Laparoscopic Ovarioplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0047','H','',0,0,'','','Laparoscopic Procedure for Ectopic Pregnancy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0048','H','',0,0,'','','Laparoscopic Radical Hysterectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0049','H','',0,0,'','','Laparoscopic Salpingostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0050','H','',0,0,'','','Laparoscopic Salpingostomy Oophorectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0051','H','',0,0,'','','Laparoscopic Sterilisation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0052','H','',0,0,'','','Laparoscopic Surgery for endometriosis (Mild)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0053','H','',0,0,'','','Laparoscopic Surgery for endometriosis (Severe)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0054','H','',0,0,'','','Laparoscopic Tuboplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0055','H','',0,0,'','','Laparoscopic Vault Suspension','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0056','H','',0,0,'','','Laparoscopic Wertheims Hysterectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0057','H','',0,0,'','','Laparoscopically Assisted Vaginal Hysterectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0058','H','',0,0,'','','Laparoscopy & Hysteroscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0059','H','',0,0,'','','Laparotomy for Ectopic Pregnancy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0060','H','',0,0,'','','LAPROSCOPY ONE DAY PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','thims','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0061','H','',0,0,'','','LAPROSCOPY ONEDAY PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0062','H','',0,0,'','','LAPROSCOPY TWO DAY PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0063','H','',0,0,'','','LAPROSCOPY TWO DAY PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0064','H','',0,0,'','','Large loop Excision of Transformation Zone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0065','H','',0,0,'','','Leforte\'s Operation for Genital Prolapse','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0066','H','',0,0,'','','Manchester Repair (Fothergill Operation)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0067','H','',0,0,'','','Marsupalisation of Bartholin Abscess','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0068','H','',0,0,'','','Mcindoe\'s operation for Reconstruction of Vagina','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0069','H','',0,0,'','','Multiple Pregnancy Reduction (MFPR)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0070','H','',0,0,'','','MYOMECTOMY (LAP /OPEN)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0071','H','',0,0,'','','Non Descent Vaginal Hysterectomy-Simple','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0072','H','',0,0,'','','NORMAL DELIVERY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0073','H','',0,0,'','','Normal Delivery-Forceps','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0074','H','',0,0,'','','Ovarian Cystectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0075','H','',0,0,'','','Ovariotomy (Oophorectomy for Benign Ovarian Tumor)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0076','H','',0,0,'','','Painless Delivery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0077','H','',0,0,'','','Pan Hysterectomy for Endometriosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0078','H','',0,0,'','','Plastic Repair for Uterus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0079','H','',0,0,'','','Polypectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0080','H','',0,0,'','','Posterior Colpoperineorraphy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0081','H','',0,0,'','','Radical Hysterectomy for Ca of Body of uterus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0082','H','',0,0,'','','Radical Hysterectomy+ Omentectomy for Ca Ovary','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0083','H','',0,0,'','','Radical Vulvectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0084','H','',0,0,'','','Removal of Barthol in Cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0085','H','',0,0,'','','REMOVAL OF MISPLACED COPPER T','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0086','H','',0,0,'','','Removal of Simple Vulval Tumor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0087','H','',0,0,'','','Repair of cervical Tear','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0088','H','',0,0,'','','REPAIR OF PERINEAI TEAR, POST COITAL OR TRAUMATIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0089','H','',0,0,'','','REPAIR OF PERINEAL TEAR, OLD SECOND DEGREE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0090','H','',0,0,'','','REPAIR OF PERINEAL TEAR, OLD THIRD DEGREE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0091','H','',0,0,'','','Repair of Rectovaginal Fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0092','H','',0,0,'','','Repair of Vesico Vaginal Fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0093','H','',0,0,'','','SACROCOLPOPEXY WITH CYSTOCELE REPAIR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',9,'Y','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0094','H','',0,0,'','','Salphingo-oophorectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0095','H','',0,0,'','','Second Trimester MTP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0096','H','',0,0,'','','Simple Vulvectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0097','H','',0,0,'','','Sling Operation for Urinary Stress Incontinence','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0098','H','',0,0,'','','Subtotal Hysterectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0099','H','',0,0,'','','Total Lap. Hysterectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0100','H','',0,0,'','','Trachelorraphy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0101','H','',0,0,'','','Trans cervical Rection of Endometrium','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0102','H','',0,0,'','','Tubal Ligation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0103','H','',0,0,'','','Tuboplasty Macro Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0104','H','',0,0,'','','Tuboplasty, Micro Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0105','H','',0,0,'','','V VF Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0106','H','',0,0,'','','Vaginal Bilateral Salpingectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0107','H','',0,0,'','','Vaginal Bilateral Salpingo-Oophorectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0108','H','',0,0,'','','Vaginal Hysterectomy (with or without ant. Repair)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0109','H','',0,0,'','','Vaginal Hysterectomy with Cervical Descent Complex','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0110','H','',0,0,'','','Vaginal Hysterectomy with Cervical Descent Simple','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0111','H','',0,0,'','','Vaginal Hysterectomy With Rectocystocele Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0112','H','',0,0,'','','Vaginal Myomectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0113','H','',0,0,'','','Vaginal Oophorectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0114','H','',0,0,'','','Vaginal Operation for Stress Incontinence of Urine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0115','H','',0,0,'','','Vaginal Ovarian Cystectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0116','H','',0,0,'','','Vaginal Ovarian Ovarioplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0117','H','',0,0,'','','Wedge Resection of Ovaries','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0118','H','',0,0,'','','Wertheim\'s Hysterectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'GYNS','','GYNS0119','H','',0,0,'','','Willam\'s Operation for Reconstruction of Vagina','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HACG','','HACG0001','H','',0,0,'','','T3, T4, TSH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0002','H','',0,0,'','','T3','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',64,64,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0003','H','',0,0,'','','T4','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',64,64,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0004','H','',0,0,'','','TSH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',90,90,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0005','H','',0,0,'','','LH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0006','H','',0,0,'','','FSH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0007','H','',0,0,'','','Prolactin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0008','H','',0,0,'','','Cortisol','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0009','H','',0,0,'','','PTH(Paratharmone)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0010','H','',0,0,'','','C-Peptide.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',330,330,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0011','H','',0,0,'','','Insulin.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0012','H','',0,0,'','','Progesterone.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',225,225,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0013','H','',0,0,'','','17-DH Progesterone.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0014','H','',0,0,'','','DHEAS.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0015','H','',0,0,'','','Androstendione.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0016','H','',0,0,'','','Growth Hormone.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0017','H','',0,0,'','','TPO.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0018','H','',0,0,'','','Throglobulin.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0019','H','',0,0,'','','Hydatic Serology.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',318,318,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0020','H','',0,0,'','','Anti Sperm Antibodies.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',380,380,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0021','H','',0,0,'','','Qualitative.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0022','H','',0,0,'','','Quantitative.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0023','H','',0,0,'','','Qualitative.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1691,1691,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0024','H','',0,0,'','','HPV serology','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',218,218,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0025','H','',0,0,'','','Rota Virus serology','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',130,130,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0026','H','',0,0,'','','PCR for TB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',900,900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0027','H','',0,0,'','','PCR for HIV','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0028','H','',0,0,'','','Chlamydae antigen','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0029','H','',0,0,'','','chlamydae antibody','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',238,238,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0030','H','',0,0,'','','Brucella serology','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',230,230,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HACG','','HACG0031','H','',0,0,'','','Influenza A serology','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',943,943,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HANS','','HANS0001','H','',0,0,'','','3 or more digit reimplantation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0002','H','',0,0,'','','Anterolateral thigh flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0003','H','',0,0,'','','Brachia! plexus injuries','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0004','H','',0,0,'','','Closed Reduction with/ without internal Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0005','H','',0,0,'','','Cross sheath nerve graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0006','H','',0,0,'','','DCIA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0007','H','',0,0,'','','Exploration & neurotisation of upto 2 nerves','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0008','H','',0,0,'','','Extensor Tendon repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0009','H','',0,0,'','','Flexor tendon injury in zone 2,3','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0010','H','',0,0,'','','Flow through flaps','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0011','H','',0,0,'','','Free fibula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0012','H','',0,0,'','','Free flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0013','H','',0,0,'','','Free functioning muscle transfer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0014','H','',0,0,'','','Gracilis ( muscle only)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0015','H','',0,0,'','','HAND CRUSH INJURY REPAIR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0016','H','',0,0,'','','Hand re-implantation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0017','H','',0,0,'','','Hand replantaiton ( above wrist)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0018','H','',0,0,'','','injury to more than one of tendon, bone nerve','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0019','H','',0,0,'','','Isolated Flexor tendon injury ( zone lor 5)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0020','H','',0,0,'','','Isolated Nerve Repair up to 2 nerves','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0021','H','',0,0,'','','Lat. Dorsi ( muscle only)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0022','H','',0,0,'','','lntercostals transfers','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0023','H','',0,0,'','','More than 3 digit re-implantation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0024','H','',0,0,'','','NERVE REPAIR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0025','H','',0,0,'','','NERVE REPAIR - LEFT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0026','H','',0,0,'','','NERVE REPAIR - RIGHT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0027','H','',0,0,'','','Nerve repair with nerve graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0028','H','',0,0,'','','Nerve transfer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0029','H','',0,0,'','','ORIF ( open Reduction with intenal Fixation) of fractures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0030','H','',0,0,'','','RAFF with/ without bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0031','H','',0,0,'','','Re-implantation of 2 digits without vein grafts','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0032','H','',0,0,'','','Re-implantation of upto 2 digits','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0033','H','',0,0,'','','Re-implantation through zone 3 and 4','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0034','H','',0,0,'','','Revascularization only','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0035','H','',0,0,'','','Scapular with upto 2 components','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0036','H','',0,0,'','','Single artery repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0037','H','',0,0,'','','Single toe to hand transfers','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0038','H','',0,0,'','','Skin loss with local/ pedicle flap coverage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0039','H','',0,0,'','','SUTURING OF 5-15 CMS OR MULTIPLE SUTURING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0040','H','',0,0,'','','Suturing up to 5 cm without tendon, nerve, or vessel repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0041','H','',0,0,'','','Tendon Graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0042','H','',0,0,'','','Tendon Pulley reconstruction with pulley repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0043','H','',0,0,'','','Tendon transfer more than 3 tendons','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0044','H','',0,0,'','','Vascularised nerve graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0045','H','',0,0,'','','VASCULARISED NERVE GRAFTS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0046','H','',0,0,'','','Vein graft for revascularisation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HANS','','HANS0047','H','',0,0,'','','VRAM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HDPM','','HDPM0001','H','',0,0,'','','HD001A - Lymphangiography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10920,NULL,'',29,'N','N','Y',29,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:29'),(0,0,'HDPM','','HDPM0002','H','',0,0,'','','HD002A - Diagnostic venography (DVA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5520,NULL,'',30,'N','N','Y',30,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:30'),(0,0,'HDPM','','HDPM0003','H','',0,0,'','','HD003A - IVUS(Intravascular Ultrasound)- peripheral vessels','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16560,NULL,'',31,'N','N','Y',31,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:31'),(0,0,'HDPM','','HDPM0004','H','',0,0,'','','HD004A - Diskography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5520,NULL,'',32,'N','N','Y',32,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:32'),(0,0,'HDPM','','HDPM0005','H','',0,0,'','','HD005A - USG guided percutaneous biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2520,NULL,'',33,'N','N','Y',33,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:33'),(0,0,'HDPM','','HDPM0006','H','',0,0,'','','HD006A - USG guided percutaneous FNAC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,720,NULL,'',34,'N','N','Y',34,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:34'),(0,0,'HDPM','','HDPM0007','H','',0,0,'','','HD007A - USG guided percutaneous needle aspiration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,720,NULL,'',35,'N','N','Y',35,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:35'),(0,0,'HDPM','','HDPM0008','H','',0,0,'','','HD008A - CT guided percutaneous biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3720,NULL,'',36,'N','N','Y',36,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:36'),(0,0,'HDPM','','HDPM0009','H','',0,0,'','','HD009A - CT guided percutaneous FNAC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3120,NULL,'',37,'N','N','Y',37,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:37'),(0,0,'HDPM','','HDPM0010','H','',0,0,'','','HD010A - CT guided percutaneous needle aspiration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3120,NULL,'',38,'N','N','Y',38,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:38'),(0,0,'HDPM','','HDPM0011','H','',0,0,'','','HD011A - Genetic workup','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',39,'N','N','Y',39,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:39'),(0,0,'HDPM','','HDPM0012','H','',0,0,'','','HD012A - Metabolic work up','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',40,'N','N','Y',40,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:40'),(0,0,'HDPM','','HDPM0013','H','',0,0,'','','HD013A - Vedio EEG Monitoring Test (VEEG)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3600,NULL,'',41,'N','N','Y',41,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:41'),(0,0,'HMPM','','HMPM0001','H','',0,0,'','','HM001A - Recombinant tissue plasminogen activator- 0.9 mg/kg (not to exceed 90 mg total treatment?dose) infused over 60 minutes.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,42000,NULL,'',42,'N','N','Y',42,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:42'),(0,0,'HMPM','','HMPM0002','H','',0,0,'','','HM002A - Tenecteplase - 0.2 mg/kg given as a bolus dose over 1-2min volume of TNK to be administered at a dilution of 2mg/ml','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24900,NULL,'',43,'N','N','Y',43,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:43'),(0,0,'HMPM','','HMPM0003','H','',0,0,'','','HM003A - Heparin - Based on weight and age of patient','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',44,'N','N','Y',44,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:44'),(0,0,'HMPM','','HMPM0004','H','',0,0,'','','HM004A - Methylprednisolone - 0.117-1.66 mg/kg/day orally divided every 6-8 hours','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',45,'N','N','Y',45,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:45'),(0,0,'HMPM','','HMPM0005','H','',0,0,'','','HM005A - Erythropoeitin - 5000 units-Rs70010000 units-Rs1000','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',46,'N','N','Y',46,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:46'),(0,0,'HMPM','','HMPM0006','H','',0,0,'','','HM006A - Liposomal amphotericin - for 2.5 Gm  dosage. @ 2500 per 50mg','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,125000,NULL,'',47,'N','N','Y',47,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:47'),(0,0,'HMPM','','HMPM0007','H','',0,0,'','','HM007A - IVIG - 3000 per GM @ 2 GM/Per Kg body weight. Almost 20 GM in adult dose.( Mx. Of 200000 , paid on actual utilization)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,200000,NULL,'',48,'N','N','Y',48,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:48'),(0,0,'HMPM','','HMPM0008','H','',0,0,'','','HM008A - IvIg for Kawasaki Disease - 0.4 gm/Kg body wt/day  ( price per gram)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',49,'N','N','Y',49,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:49'),(0,0,'HMPM','','HMPM0009','H','',0,0,'','','HM009A - IvIg for GB Syndrome - 2gm /Kg body weight ( price per gram)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',50,'N','N','Y',50,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:50'),(0,0,'HMPM','','HMPM0010','H','',0,0,'','','HM010A - IvIg for ITP - 1gm /Kg body weight                      ( price per gram)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',51,'N','N','Y',51,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:51'),(0,0,'HMPM','','HMPM0011','H','',0,0,'','','HM011A - ?Rituximab - 500mg to 1 gm ( Price per 500mg/50ml box)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7500,NULL,'',52,'N','N','Y',52,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:52'),(0,0,'HMPM','','HMPM0012','H','',0,0,'','','HM012A - Human Albumin 20% - 250-500ml (Price per 100ml infusion)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6000,NULL,'',53,'N','N','Y',53,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:53'),(0,0,'HMPM','','HMPM0013','H','',0,0,'','','HM013A - Albumin 5% - 250-500ml (Price per 100ml infusion)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',54,'N','N','Y',54,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:54'),(0,0,'HMPM','','HMPM0014','H','',0,0,'','','HM017A - Imipenem - 1gm147.57. 3 gm per day dose','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',55,'N','N','Y',55,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:55'),(0,0,'HMPM','','HMPM0015','H','',0,0,'','','HM018A - Meropenem - 1gm 159.93.  3 gm Per day dose','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',56,'N','N','Y',56,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:56'),(0,0,'HMPM','','HMPM0016','H','',0,0,'','','HM019A - Piperacillin-Tazobactem - 4.5gm 66.52. 4.5gm TDS per day dose','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',57,'N','N','Y',57,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:57'),(0,0,'HMPM','','HMPM0017','H','',0,0,'','','HM020A - Colistin - 1 MU 73.92. Dose 9 MU','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',58,'N','N','Y',58,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:58'),(0,0,'HMPM','','HMPM0018','H','',0,0,'','','HM021A - Vancomycin - 500mg 45.15. 2gm per day dose.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2100,NULL,'',59,'N','N','Y',59,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:59'),(0,0,'HMPM','','HMPM0019','H','',0,0,'','','HM022A - Amphotericin deoxycholate - 50mg 121.06.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1000,NULL,'',60,'N','N','Y',60,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'HNCG','','HNCG0001','H','',0,0,'','','Ear Lobe Repair one side','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0002','H','',0,0,'','','Excision of Pinna for Growth (Squamous/Basal/\nInjuries) Skin Only','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0003','H','',0,0,'','','Excision of Pinna for Growth (Squamous/Basal/\nInjuries) Skin and Cartilage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3800,3800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0004','H','',0,0,'','','Partial Amputation of Pinna','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0005','H','',0,0,'','','Total Amputation of Pinna','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6200,6200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0006','H','',0,0,'','','Total Amputation & Excision of External\nAuditory Meatus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0007','H','',0,0,'','','Excision of Cystic Hygroma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5175,5175,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0008','H','',0,0,'','','Excision of Cystic Hygroma Extensive','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7452,7452,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0009','H','',0,0,'','','Excision of Branchial Cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10350,10350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0010','H','',0,0,'','','Excision of Branchial Sinus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10350,10350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0011','H','',0,0,'','','Excision of Pharyngeal Diverticulum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10580,10580,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0012','H','',0,0,'','','Excision of Carotid Body-Tumours','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10454,10454,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0013','H','',0,0,'','','Operation for Cervical Rib','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12500,12500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0014','H','',0,0,'','','Block Dissection of Cervical Lymph Nodes','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13500,13500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0015','H','',0,0,'','','Pharyngectomy & Reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13500,13500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0016','H','',0,0,'','','Operation for Carcinoma Lip - Wedge-Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7245,7245,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0017','H','',0,0,'','','Operation for Carcinoma Lip - Vermilionectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5758,5758,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0018','H','',0,0,'','','Operation for Carcinoma Lip - Wedge Excision\nand Vermilonectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8800,8800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0019','H','',0,0,'','','Estlander Operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6728,6728,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0020','H','',0,0,'','','Abbe Operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8820,8820,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0021','H','',0,0,'','','Cheek Advancement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8798,8798,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0022','H','',0,0,'','','Excision of the Maxilla','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17388,17388,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0023','H','',0,0,'','','Excision of mandible-segmental','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13973,13973,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0024','H','',0,0,'','','Mandibulectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18900,18900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0025','H','',0,0,'','','Partial  Glossectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4968,4968,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0026','H','',0,0,'','','Hemiglossectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6300,6300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0027','H','',0,0,'','','Total Glossectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20597,20597,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0028','H','',0,0,'','','Commondo Operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19800,19800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0029','H','',0,0,'','','Parotidectomy - Superficial','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10868,10868,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0030','H','',0,0,'','','Parotidectomy -  Total','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13500,13500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0031','H','',0,0,'','','Parotidectomy -  Radical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19550,19550,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0032','H','',0,0,'','','Repair of Parotid Duct','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0033','H','',0,0,'','','Removal of Submandibular Salivary gland','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7763,7763,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0034','H','',0,0,'','','Hemithyroidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8550,8550,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0035','H','',0,0,'','','Partial Thyroidectomy (lobectomy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10350,10350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0036','H','',0,0,'','','Subtotal Thyroidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11748,11748,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0037','H','',0,0,'','','Total Thyroidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17100,17100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0038','H','',0,0,'','','Resection Enucleation of thyroid Adenoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9522,9522,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0039','H','',0,0,'','','Total Thyroidectomy and Block Dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',23805,23805,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0040','H','',0,0,'','','Excision of Lingual Thyroid','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16882,16882,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0041','H','',0,0,'','','Excision of Thyroglossal Cyst/Fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13225,13225,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0042','H','',0,0,'','','Excision of Parathyroid Adenoma/Carcinoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19148,19148,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0043','H','',0,0,'','','Laryngectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16043,16043,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0044','H','',0,0,'','','Laryngo Pharyngectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',27000,27000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0045','H','',0,0,'','','Hyoid Suspension','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10350,10350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0046','H','',0,0,'','','Genioplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0047','H','',0,0,'','','Direct Laryngoscopy including biopsy under GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4658,4658,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0048','H','',0,0,'','','Phonosurgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13800,13800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0049','H','',0,0,'','','Fibroptic examition of Larynx under LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1725,1725,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0050','H','',0,0,'','','Microlaryngeal Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10350,10350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0051','H','',0,0,'','','Laryngofissure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17250,17250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HNCG','','HNCG0052','H','',0,0,'','','Tracheal Stenosis Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17802,17802,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HCCG','','HNCG0053','H','',0,0,'','','Excisional Biopsies','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5175,5175,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HCCG','','HNCG0054','H','',0,0,'','','Benign Tumour Excisions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8550,8550,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HCCG','','HNCG0055','H','',0,0,'','','Temporal Bone  subtotal resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20700,20700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HCCG','','HNCG0056','H','',0,0,'','','Modified Radical Neck Dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22770,22770,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HCCG','','HNCG0057','H','',0,0,'','','Carotid Body Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',23400,23400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HCCG','','HNCG0058','H','',0,0,'','','Total Laryngectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',35273,35273,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HCCG','','HNCG0059','H','',0,0,'','','Flap Reconstructive Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',37260,37260,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HCCG','','HNCG0060','H','',0,0,'','','Parapharyngeal Tumour Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',35397,35397,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HCCG','','HNCG0061','H','',0,0,'','','Other Major Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19125,19125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HCCG','','HNCG0062','H','',0,0,'','','Other Minor Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'HPKG','','HPKG0001','H','',0,0,'','','AFTER COVID FULL CHECKUP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3999,3999,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPKG','','HPKG0002','H','',0,0,'','','AFTER COVID SCREENING PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1299,1299,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPKG','','HPKG0003','H','',0,0,'','','AV FISTULA - PACKAGE B- BRACHIOCEPHALIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPKG','','HPKG0004','H','',0,0,'','','CARDIAC SCREENING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1199,1199,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPKG','','HPKG0005','H','',0,0,'','','FEMALE DIAMOND PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1999,1999,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPKG','','HPKG0006','H','',0,0,'','','FEMALE DIAMOND PLUS PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4999,4999,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPKG','','HPKG0007','H','',0,0,'','','GOLD PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',599,599,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPKG','','HPKG0008','H','',0,0,'','','GOLD PLUS PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',899,899,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPKG','','HPKG0009','H','',0,0,'','','HEALTH PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',199,199,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPKG','','HPKG0010','H','',0,0,'','','MALE DIAMOND PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1999,1999,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPKG','','HPKG0011','H','',0,0,'','','MALE DIAMOND PLUS PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4999,4999,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPKG','','HPKG0012','H','',0,0,'','','MALE UNION BANK HEALTH PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1499,1499,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPKG','','HPKG0013','H','',0,0,'','','MOTHERS TEST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1999,1999,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPKG','','HPKG0014','H','',0,0,'','','PACKAGE FOR MAN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4360,4360,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPKG','','HPKG0015','H','',0,0,'','','PLATINUM PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1299,1299,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPKG','','HPKG0016','H','',0,0,'','','PLATINUM PLUS PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1799,1799,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPKG','','HPKG0017','H','',0,0,'','','SILVER PLUS PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',399,399,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPKG','','HPKG0018','H','',0,0,'','','WOMEN WELLNESS PLAN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1699,1699,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPKG','','HPKG0019','H','',0,0,'','','WOMEN WELLNESS PLUS PLAN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3399,3399,NULL,'',0,'','N','',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'HPPM','','HPPM0001','H','',0,0,'','','HP001A - USG guided percutaneous Radiofrequency Ablation (RFA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26640,NULL,'',61,'N','N','Y',61,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'HPPM','','HPPM0002','H','',0,0,'','','HP002A - USG guided percutaneous Microwave Ablation (MWA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30640,NULL,'',62,'N','N','Y',62,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'HPPM','','HPPM0003','H','',0,0,'','','HP003A - CT guided percutaneous Radiofrequency Ablation (RFA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,29040,NULL,'',63,'N','N','Y',63,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'HPPM','','HPPM0004','H','',0,0,'','','HP004A - CT guided percutaneous Microwave Ablation (MWA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33040,NULL,'',64,'N','N','Y',64,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'HPPM','','HPPM0005','H','',0,0,'','','HP005A - USG guided percutaneous catheter drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5820,NULL,'',65,'N','N','Y',65,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'HPPM','','HPPM0006','H','',0,0,'','','HP006A - CT guided percutaneous catheter drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5820,NULL,'',66,'N','N','Y',66,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'HPPM','','HPPM0007','H','',0,0,'','','HP007A - Cerebral angiogram under local anesthesia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5800,NULL,'',67,'N','N','Y',67,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'HPPM','','HPPM0008','H','',0,0,'','','HP008A - Cerebral angiogram under general anesthesia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18900,NULL,'',68,'N','N','Y',68,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'HPPM','','HPPM0009','H','',0,0,'','','HP009A - Spinal Angiogram under general anesthesia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18900,NULL,'',69,'N','N','Y',69,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'HPPM','','HPPM0010','H','',0,0,'','','HP010A - Plasmapheresis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,70000,NULL,'',70,'N','N','Y',70,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'ICCG','','ICCG0001','H','',0,0,'','','Stress thallium / Myocardial Perfusion\nScintigraphy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8505,8505,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ICCG','','ICCG0002','H','',0,0,'','','Rest thallium / Myocardial Perfusion Scintigraphy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7200,7200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ICCG','','ICCG0003','H','',0,0,'','','Venography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3300,3300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ICCG','','ICCG0004','H','',0,0,'','','TMT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',489,489,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ICCG','','ICCG0005','H','',0,0,'','','TEE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',489,489,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ICCG','','ICCG0006','H','',0,0,'','','Lymph angiography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1613,1613,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IDCG','','IDCG0001','H','',0,0,'','','Dental IOPA X-ray','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IDCG','','IDCG0002','H','',0,0,'','','Occlusal X-ray','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',78,78,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IDCG','','IDCG0003','H','',0,0,'','','OPG X-ray','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',196,196,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IDPM','','IDPM0001','H','',0,0,'','','ID001A - Screening Test for COVID-19 Infection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1500,NULL,'',71,'N','N','Y',71,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'IDPM','','IDPM0002','H','',0,0,'','','ID001A - Screening Test for COVID-19 Infection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1500,NULL,'',72,'N','N','Y',72,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'IDPM','','IDPM0003','H','',0,0,'','','ID001B - Test for Confirmation of COVID-19 Infection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',73,'N','N','Y',73,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'IDPM','','IDPM0004','H','',0,0,'','','ID001B - Test for Confirmation of COVID-19 Infection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',74,'N','N','Y',74,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'IDPM','','IDPM0005','H','',0,0,'','','ID002GJA - COVID-19 Investigation - (RT PCR TEST)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,400,NULL,'',75,'N','N','Y',75,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'IDPM','','IDPM0006','H','',0,0,'','','ID003A - Treatment of COVID-19 Infection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',76,'N','N','Y',76,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'IDPM','','IDPM0007','H','',0,0,'','','ID005A - Treatment of systemic fungal infections','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',77,'N','N','Y',77,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'IECG','','IECG0001','H','',0,0,'','','Thyroid Uptake measurements with 131-Iodine.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1408,1408,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IECG','','IECG0002','H','',0,0,'','','Thyroid Scan with Technetium 99m\nPertechnetate.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1319,1319,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IECG','','IECG0003','H','',0,0,'','','Lodine-131 Whole Body Scan.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2800,2800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IECG','','IECG0004','H','',0,0,'','','Whole Body Scan with M.I.B.G.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15836,15836,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IECG','','IECG0005','H','',0,0,'','','Parathyroid Scan','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4399,4399,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IGCG','','IGCG0001','H','',0,0,'','','Gastro esophageal Reflux Study (G.E.R. Study)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1955,1955,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IGCG','','IGCG0002','H','',0,0,'','','Gastro intestinal Bleed (GloB.) Study with\nTechnetium 99m labeled RBCs.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3079,3079,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IGCG','','IGCG0003','H','',0,0,'','','Hepatobiliary Scintigraphy.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IGCG','','IGCG0004','H','',0,0,'','','Meckel\'s Scan','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1955,1955,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IGCG','','IGCG0005','H','',0,0,'','','Hepatosplenic scintigraphy with Technetium-99m\nradiopharmaceuticals','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1870,1870,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IGCG','','IGCG0006','H','',0,0,'','','Gastric emptying','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1275,1275,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'INCG','','INCG0001','H','',0,0,'','','PSA- Total.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',312,312,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'INCG','','INCG0002','H','',0,0,'','','PSA- Free.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',375,375,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'INCG','','INCG0003','H','',0,0,'','','AFP.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'INCG','','INCG0004','H','',0,0,'','','HCG.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',275,275,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'INCG','','INCG0005','H','',0,0,'','','CA. 125.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',391,391,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'INCG','','INCG0006','H','',0,0,'','','CA 19,9.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',616,616,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'INCG','','INCG0007','H','',0,0,'','','CA 15.3.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'INCG','','INCG0008','H','',0,0,'','','Vinyl Mandelic Acid','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'INCG','','INCG0009','H','',0,0,'','','Calcitonin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'INCG','','INCG0010','H','',0,0,'','','Carcioembryonic antigen(CEA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'INPM','','INPM0001','H','',0,0,'','','IN001A - Carotico-cavernous Fistula (CCF) embolization with coils.[includes 5 coils, guide catheter, micro-catheter, micro-guidewire,general items]','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,187500,NULL,'',78,'N','N','Y',78,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0002','H','',0,0,'','','IN001B - Carotid-cavernous Fistula (CCF) embolization with balloon (includes one balloon, guide catheter, micro-catheter, micro-guidewire, general items)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,93800,NULL,'',79,'N','N','Y',79,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0003','H','',0,0,'','','IN001C - Dural AVMs (per sitting) with onyx','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,150000,NULL,'',80,'N','N','Y',80,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0004','H','',0,0,'','','IN001D - Dural AVFs (per sitting) with onyx','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,150000,NULL,'',81,'N','N','Y',81,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0005','H','',0,0,'','','IN002A - Intracranial balloon angioplasty withstenting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,200000,NULL,'',82,'N','N','Y',82,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0006','H','',0,0,'','','IN002B - Spinal AVM embolization - Using Histoacryl (per sitting)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,100000,NULL,'',83,'N','N','Y',83,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0007','H','',0,0,'','','IN003A - Intracranial thrombolysis / clotretrieval','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,200000,NULL,'',84,'N','N','Y',84,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0008','H','',0,0,'','','IN004A - Balloon test occlusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,87500,NULL,'',85,'N','N','Y',85,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0009','H','',0,0,'','','IN004B - Carotid-cavernous Fistula (CCF) embolization with balloon (includes one balloon, guide catheter, micro-catheter, micro-guidewire, general items)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,64000,NULL,'',86,'N','N','Y',86,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0010','H','',0,0,'','','IN005A - Parent vessel occlusion - Basic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',87,'N','N','Y',87,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0011','H','',0,0,'','','IN006A - Primary percutaneous transhepatic biliary stenting (SEMS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50700,NULL,'',88,'N','N','Y',88,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0012','H','',0,0,'','','IN006B - Percutaneous transhepatic biliary stenting (SEMS) after prior PTBD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35500,NULL,'',89,'N','N','Y',89,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0013','H','',0,0,'','','IN007A - Percutaneous cholangioplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15200,NULL,'',90,'N','N','Y',90,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0014','H','',0,0,'','','IN008A - Hepatic venous wedge pressure measurement (HVPG)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17400,NULL,'',91,'N','N','Y',91,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0015','H','',0,0,'','','IN009A - Tunnelled long-term venous catheter','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14600,NULL,'',92,'N','N','Y',92,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0016','H','',0,0,'','','IN010A - Tunelled longterm indwelling catheter for refractory ascites/pleural effusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16700,NULL,'',93,'N','N','Y',93,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0017','H','',0,0,'','','IN011A - Peripherally inserted central catheter (PICC)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8900,NULL,'',94,'N','N','Y',94,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0018','H','',0,0,'','','IN011GJA - Additonal coil for Parent Vessel Occlusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24000,NULL,'',95,'N','N','Y',95,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0019','H','',0,0,'','','IN012A - Chemoport/implantable lines','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14600,NULL,'',96,'N','N','Y',96,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0020','H','',0,0,'','','IN012GJA - Additonal balloon for Parent Vessel Occlusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11000,NULL,'',97,'N','N','Y',97,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0021','H','',0,0,'','','IN013A - Percutaneous nephrostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22100,NULL,'',98,'N','N','Y',98,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0022','H','',0,0,'','','IN013GJA - Additional coil for coil embolization for aneurysms ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24000,NULL,'',99,'N','N','Y',99,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0023','H','',0,0,'','','IN014A - Primary percutaneous antegrade uretric stenting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24200,NULL,'',100,'N','N','Y',100,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0024','H','',0,0,'','','IN014GJA - Additonal coil for Parent Vessel Occlusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24000,NULL,'',101,'N','N','Y',101,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0025','H','',0,0,'','','IN015A - Percutaneous antegrade uretric stenting after prior PCN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16600,NULL,'',102,'N','N','Y',102,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0026','H','',0,0,'','','IN015GJA - Additonal balloon for Parent Vessel Occlusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11000,NULL,'',103,'N','N','Y',103,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0027','H','',0,0,'','','IN016A - Lymphatic occlusion of chylous leak','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,21300,NULL,'',104,'N','N','Y',104,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0028','H','',0,0,'','','IN017A - PVA embolization (without microcatheter)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15800,NULL,'',105,'N','N','Y',105,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0029','H','',0,0,'','','IN017B - PVA embolization (with microcatheter)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38000,NULL,'',106,'N','N','Y',106,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0030','H','',0,0,'','','IN018A - Glue embolization (without microcatheter)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25200,NULL,'',107,'N','N','Y',107,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0031','H','',0,0,'','','IN018B - Glue embolization (with microcatheter)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40500,NULL,'',108,'N','N','Y',108,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0032','H','',0,0,'','','IN019A - Gelfoam embolization (without microcatheter)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14600,NULL,'',109,'N','N','Y',109,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0033','H','',0,0,'','','IN019B - Gelfoam embolization (with microcatheter)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,29400,NULL,'',110,'N','N','Y',110,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0034','H','',0,0,'','','IN020A - Coil embolization (without microcatheter)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',111,'N','N','Y',111,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0035','H','',0,0,'','','IN020B - Coil embolization (with microcatheter)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38000,NULL,'',112,'N','N','Y',112,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0036','H','',0,0,'','','IN021A - Alcohol embolisation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,29400,NULL,'',113,'N','N','Y',113,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0037','H','',0,0,'','','IN022A - Vascular plug assisted embolization','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49100,NULL,'',114,'N','N','Y',114,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0038','H','',0,0,'','','IN023A - Angioplasty (arterial)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35900,NULL,'',115,'N','N','Y',115,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0039','H','',0,0,'','','IN023B - Angioplasty (arterial) using microguidewire and guiding catheter','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,55700,NULL,'',116,'N','N','Y',116,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0040','H','',0,0,'','','IN023C - Angioplasty and bare metal stenting (arterial)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48200,NULL,'',117,'N','N','Y',117,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0041','H','',0,0,'','','IN023D - Angioplasty and bare metal stenting (arterial) CTO lesion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,76100,NULL,'',118,'N','N','Y',118,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0042','H','',0,0,'','','IN023E - Angioplasty and covered stent placement (arterial)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62700,NULL,'',119,'N','N','Y',119,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0043','H','',0,0,'','','IN024A - Catheter directed thrombolysis (arterial/venous)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44100,NULL,'',120,'N','N','Y',120,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0044','H','',0,0,'','','IN025A - Thrombectomy followed by thrombolysis (arterial/venous)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,54600,NULL,'',121,'N','N','Y',121,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0045','H','',0,0,'','','IN026A - Angioplasty (venous)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25100,NULL,'',122,'N','N','Y',122,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0046','H','',0,0,'','','IN026B - Angioplasty and stenting hepatic vein','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62800,NULL,'',123,'N','N','Y',123,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0047','H','',0,0,'','','IN026C - Angioplasty and bare metal stenting (venous)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44300,NULL,'',124,'N','N','Y',124,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0048','H','',0,0,'','','IN026D - Angioplasty (IVC/central vein) with high pressure balloon','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,58300,NULL,'',125,'N','N','Y',125,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0049','H','',0,0,'','','IN026E - Angioplasty and covered stent placement (venous)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,56400,NULL,'',126,'N','N','Y',126,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0050','H','',0,0,'','','IN027A - Angioplasty  Below knee angioplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,66600,NULL,'',127,'N','N','Y',127,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0051','H','',0,0,'','','IN028A - Angioplasty (complex): cutting balloon/drug coated balloon','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,66500,NULL,'',128,'N','N','Y',128,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0052','H','',0,0,'','','IN029A - Angioplasty with medicated SFA stent /Specialised stent  (arterial) CTO lesion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,297600,NULL,'',129,'N','N','Y',129,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0053','H','',0,0,'','','IN030A - Angioplasty (central vein/ CIV ) with high pressure balloon and specilaised venous stent','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,207800,NULL,'',130,'N','N','Y',130,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0054','H','',0,0,'','','IN031A - Fenestration of dissecting aneurysm','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37300,NULL,'',131,'N','N','Y',131,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0055','H','',0,0,'','','IN032A - TEVAR for aortic aneurysm/ dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,83800,NULL,'',132,'N','N','Y',132,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0056','H','',0,0,'','','IN033A - Post EVAR endoleak management','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27300,NULL,'',133,'N','N','Y',133,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0057','H','',0,0,'','','IN034A - IVC filter placement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19400,NULL,'',134,'N','N','Y',134,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0058','H','',0,0,'','','IN034B - IVC filter placement with Catheter directed thrombolysis (arterial/venous)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,36200,NULL,'',135,'N','N','Y',135,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0059','H','',0,0,'','','IN034C - IVC filter retrieval','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14400,NULL,'',136,'N','N','Y',136,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0060','H','',0,0,'','','IN035A - Retrieval of intravascular foreign body','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16900,NULL,'',137,'N','N','Y',137,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0061','H','',0,0,'','','IN036A - Joint/bursa intervention','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6900,NULL,'',138,'N','N','Y',138,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0062','H','',0,0,'','','IN037A - Sacroiliac joint denervation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18900,NULL,'',139,'N','N','Y',139,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0063','H','',0,0,'','','IN038A - Facet joint intra-articular intervention- CS/Thoracic/LS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6900,NULL,'',140,'N','N','Y',140,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0064','H','',0,0,'','','IN039A - Median branch rhizotomy- CS/Thoracic/LS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18900,NULL,'',141,'N','N','Y',141,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0065','H','',0,0,'','','IN040A - Radiofrequency ablation-Trigeminal nerve/genicular nerve /celiac plexus /stellate Ganglion/sympathetic nerve (any branch)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18900,NULL,'',142,'N','N','Y',142,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0066','H','',0,0,'','','IN041A - PRP -suprascapular /tennis elbow/other tendon','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6900,NULL,'',143,'N','N','Y',143,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0067','H','',0,0,'','','IN042A - Percutaneous Discotomy/nucleotomy using laser or nucleuotome','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16900,NULL,'',144,'N','N','Y',144,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0068','H','',0,0,'','','IN043A - Neural foraminal block','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6900,NULL,'',145,'N','N','Y',145,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0069','H','',0,0,'','','IN044A - Radiofrequency Ablation (RFA) of bone tumor /metastases/osteoid osteoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31800,NULL,'',146,'N','N','Y',146,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0070','H','',0,0,'','','IN045A - Microwave ablation of bone tumor /osteoid osteoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,39800,NULL,'',147,'N','N','Y',147,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0071','H','',0,0,'','','IN046A - Stroke-Stent Retreiver','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,291000,NULL,'',148,'N','N','Y',148,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0072','H','',0,0,'','','IN046B - Stroke-Aspiration Catheter','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,310300,NULL,'',149,'N','N','Y',149,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0073','H','',0,0,'','','IN047A - Intervention for Acute stroke (Aspiration & stent retrieval)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,393200,NULL,'',150,'N','N','Y',150,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0074','H','',0,0,'','','IN048A - Aneurysm-3 Coil','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,137300,NULL,'',151,'N','N','Y',151,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0075','H','',0,0,'','','IN048B - Aneurysm-5 Coil','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,270400,NULL,'',152,'N','N','Y',152,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0076','H','',0,0,'','','IN048C - Aneurysm-7 Coil','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,321700,NULL,'',153,'N','N','Y',153,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0077','H','',0,0,'','','IN048D - 3 Coil + Balloon','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,153400,NULL,'',154,'N','N','Y',154,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0078','H','',0,0,'','','IN048E - 5 Coil + Balloon','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,345400,NULL,'',155,'N','N','Y',155,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0079','H','',0,0,'','','IN048F - 3 Coil + Balloon+Stent','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,221400,NULL,'',156,'N','N','Y',156,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0080','H','',0,0,'','','IN048G - 5 Coil + Balloon+Stent','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,432300,NULL,'',157,'N','N','Y',157,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0081','H','',0,0,'','','IN048H - 7 Coil + Balloon+Stent','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,474300,NULL,'',158,'N','N','Y',158,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0082','H','',0,0,'','','IN049A - Pial AVF (Single hole)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,120400,NULL,'',159,'N','N','Y',159,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0083','H','',0,0,'','','IN049B - AVF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,130400,NULL,'',160,'N','N','Y',160,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0084','H','',0,0,'','','IN049C - AVM (nidus upto 3 cm)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,156700,NULL,'',161,'N','N','Y',161,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0085','H','',0,0,'','','IN050A - Carotid stenting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,125000,NULL,'',162,'N','N','Y',162,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0086','H','',0,0,'','','IN050B - Carotid stenting-membrane layered','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,176700,NULL,'',163,'N','N','Y',163,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0087','H','',0,0,'','','IN051A - Intracranial stenting for Intracranial atheroscelorosis disease (ICAD)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,364300,NULL,'',164,'N','N','Y',164,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0088','H','',0,0,'','','IN052A - Dural sinus stenting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,132900,NULL,'',165,'N','N','Y',165,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0089','H','',0,0,'','','IN053A - Carotid stenting with protection device','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,207900,NULL,'',166,'N','N','Y',166,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0090','H','',0,0,'','','IN054A - Vasospasm management-post coiling/clipping  (Cost per session)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,80900,NULL,'',167,'N','N','Y',167,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0091','H','',0,0,'','','IN055A - Retinoblastoma under GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,90200,NULL,'',168,'N','N','Y',168,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0092','H','',0,0,'','','IN056A - Percutaneous cholecystostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22100,NULL,'',169,'N','N','Y',169,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0093','H','',0,0,'','','IN057A - PAIR / percutaneous sclerotherapy for Hydatid cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9200,NULL,'',170,'N','N','Y',170,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0094','H','',0,0,'','','IN058A - Oesophageal /gastric / duodenal / colonic stenting/balloon dilatation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23900,NULL,'',171,'N','N','Y',171,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0095','H','',0,0,'','','IN059A - Transjugular Liver biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17600,NULL,'',172,'N','N','Y',172,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0096','H','',0,0,'','','IN060A - Percutaneous gastrostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7900,NULL,'',173,'N','N','Y',173,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0097','H','',0,0,'','','IN061A - Transarterial chemoembolization - conventional (cTACE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',174,'N','N','Y',174,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0098','H','',0,0,'','','IN061B - Transarterial chemoembolization - Drug eluting beads (DEB-TACE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,51500,NULL,'',175,'N','N','Y',175,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0099','H','',0,0,'','','IN062A - Transjugular intrahepatic portosystemic shunt creation (TIPSS)/Direct transjugular Intrahepatic Portosystemic shunt(DIPSS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,94700,NULL,'',176,'N','N','Y',176,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0100','H','',0,0,'','','IN063A - Balloon-occluded retrograde transvenous obliteration (BRTO)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,51000,NULL,'',177,'N','N','Y',177,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0101','H','',0,0,'','','IN064A - Plug-assisted retrograde transvenous obliteration (PARTO)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,57600,NULL,'',178,'N','N','Y',178,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0102','H','',0,0,'','','IN065A - Pre-operative portal vein embolization','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33400,NULL,'',179,'N','N','Y',179,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0103','H','',0,0,'','','IN066A - USG guided percutaneous ganglion/plexus block (Neuronolysis)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11400,NULL,'',180,'N','N','Y',180,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0104','H','',0,0,'','','IN067A - CT guided percutaneous ganglion/plexus block (Neuronolysis)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14400,NULL,'',181,'N','N','Y',181,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0105','H','',0,0,'','','IN068A - Vertebroplasty/Cementoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27600,NULL,'',182,'N','N','Y',182,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0106','H','',0,0,'','','IN069A - Kyphoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,39700,NULL,'',183,'N','N','Y',183,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0107','H','',0,0,'','','IN070A - Vaccum assisted breast biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10700,NULL,'',184,'N','N','Y',184,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0108','H','',0,0,'','','IN071A - USG guided percutaneous Microwave Ablation (MWA)- benign breast /thyroid tumor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,36800,NULL,'',185,'N','N','Y',185,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0109','H','',0,0,'','','IN072A - Diagnostic angiography (DSA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8700,NULL,'',186,'N','N','Y',186,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0110','H','',0,0,'','','IN073A - Varicose vein: endovenous treatment (for one limb)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15400,NULL,'',187,'N','N','Y',187,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0111','H','',0,0,'','','IN074A - Percutaneous Injection sclerotherapy for low flow vascular malformation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11400,NULL,'',188,'N','N','Y',188,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0112','H','',0,0,'','','IN075A - Varicocele embolization','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22700,NULL,'',189,'N','N','Y',189,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0113','H','',0,0,'','','IN076A - Fistuloplasty / Thrombectomy of dialysis fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40600,NULL,'',190,'N','N','Y',190,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0114','H','',0,0,'','','IN077A - AVM (1 vial)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,134200,NULL,'',191,'N','N','Y',191,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0115','H','',0,0,'','','IN077B - AVM (3 vial)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,134200,NULL,'',192,'N','N','Y',192,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0116','H','',0,0,'','','IN077C - AVM (5 vial)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,134200,NULL,'',193,'N','N','Y',193,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0117','H','',0,0,'','','IN078A - Tumor Embolization','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,90100,NULL,'',194,'N','N','Y',194,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0118','H','',0,0,'','','MC002A - For Deep vein thrombosis (DVT)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38500,NULL,'',195,'N','N','Y',195,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0119','H','',0,0,'','','MC002B - For Mesenteric Thrombosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38500,NULL,'',196,'N','N','Y',196,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0120','H','',0,0,'','','MC002C - For Peripheral vessels','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38500,NULL,'',197,'N','N','Y',197,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0121','H','',0,0,'','','MG0100A - Chronic PD catheter Insertion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4100,NULL,'',198,'N','N','Y',198,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0122','H','',0,0,'','','MG082A - Bone marrow aspiration of biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1200,NULL,'',199,'N','N','Y',199,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0123','H','',0,0,'','','MG082GJA - Conservative management (Ischemic stroke)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',200,'N','N','Y',200,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0124','H','',0,0,'','','MG083A - Lumbar puncture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,200,NULL,'',201,'N','N','Y',201,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0125','H','',0,0,'','','MG083GJA - By Intravenous immunoglobulin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,200000,NULL,'',202,'N','N','Y',202,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0126','H','',0,0,'','','MG083GJB - By plasmapheresis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,109627,NULL,'',203,'N','N','Y',203,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0127','H','',0,0,'','','MG084A - Joint Aspiration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,200,NULL,'',204,'N','N','Y',204,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0128','H','',0,0,'','','MG084GJA - Intraparenchymal / Subarachnoid Hemmorrhage (Conservative management)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',205,'N','N','Y',205,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0129','H','',0,0,'','','MG085A - DVT Pneumatic Compression Stockings (Add on package in ICU)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,900,NULL,'',206,'N','N','Y',206,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0130','H','',0,0,'','','MG085GJA - Meninfoencephalitis, or / and EVD / VP shunt (Consevative management)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,110000,NULL,'',207,'N','N','Y',207,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0131','H','',0,0,'','','MG086GJA - By Intravenous immunoglobulin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,200000,NULL,'',208,'N','N','Y',208,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0132','H','',0,0,'','','MG086GJB - By plasmapheresis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,110000,NULL,'',209,'N','N','Y',209,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0133','H','',0,0,'','','MG087GJA - Poisonings with unstable vitals (admission type: Routine ward )','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',210,'N','N','Y',210,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0134','H','',0,0,'','','MG088GJB - Thrombolysis with Actilyse for Ischemic stroke','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,120000,NULL,'',211,'N','N','Y',211,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0135','H','',0,0,'','','MG097A - Endobronchial Ultrasound guided fine needle biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15700,NULL,'',212,'N','N','Y',212,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'INPM','','INPM0136','H','',0,0,'','','SU008A - Nephrostomy - Percutaneous ultrasound guided','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',213,'N','N','Y',213,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'IPCG','','IPCG0001','H','',0,0,'','','FDG Whole body PET / CT Scan','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18475,18475,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IPCG','','IPCG0002','H','',0,0,'','','Brain I Heart FDG PET / CTScan,','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13197,13197,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IPCG','','IPCG0003','H','',0,0,'','','Gallium-68 Peptide PET / CT imaging for\nNeuroendocrine Tumor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IRCG','','IRCG0001','H','',0,0,'','','131-lodine Therapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1377,1377,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IRCG','','IRCG0002','H','',0,0,'','','131-lodine Therapy  <15mCi','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3854,3854,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IRCG','','IRCG0003','H','',0,0,'','','131-lodine Therapy 15-50mCi','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4956,4956,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IRCG','','IRCG0004','H','',0,0,'','','131-lodine Therapy 51-100mCi','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IRCG','','IRCG0005','H','',0,0,'','','131-lodine Therapy >100mCi','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IRCG','','IRCG0006','H','',0,0,'','','Phosphorus-32 therapy for metastatic bone pain\npalliation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IRCG','','IRCG0007','H','',0,0,'','','Samarium-153 therapy for metastatic bone pain\npalliation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9405,9405,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'IRCG','','IRCG0008','H','',0,0,'','','Radiosynovectomy with Yttrium','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19125,19125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ITCG','','ITCG0001','H','',0,0,'','','Scintimammography.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4320,4320,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ITCG','','ITCG0002','H','',0,0,'','','Indium lableled octeriotide Scan.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',65982,65982,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'JRPM','','JRPM0001','H','',0,0,'','','JRU100 - Unspecified Procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',214,'N','N','Y',214,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0001','H','',0,0,'','','17 HYDROXY PROGESTERON','','120','0000-00-00','0000-00-00',0,0,0,0,0,0,'',580,580,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0002','H','',0,0,'','','24 HOUR URINE ADRENALIN (EPINEPHRINE)','','121','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3400,3400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0003','H','',0,0,'','','24 HOUR URINE CHLORIDE (CL-)','','122','0000-00-00','0000-00-00',0,0,0,0,0,0,'',160,160,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0004','H','',0,0,'','','24 HOUR URINE CITRATE','','1006','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1100,1100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0005','H','',0,0,'','','24 HOUR URINE CITRATE','','1006','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0006','H','',0,0,'','','24 HOUR URINE COPPER','','123','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0007','H','',0,0,'','','24 HOUR URINE CORTISOL','','124','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0008','H','',0,0,'','','24 HOUR URINE CREATININE','','125','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0009','H','',0,0,'','','24 HOUR URINE CREATININE CLEARENC TEST(CCT)','','126','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0010','H','',0,0,'','','24 HOUR URINE MAGNESIUM','','127','0000-00-00','0000-00-00',0,0,0,0,0,0,'',180,180,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0011','H','',0,0,'','','24 HOUR URINE METANEPHRINE','','128','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2160,2160,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0012','H','',0,0,'','','24 HOUR URINE MICROALBUMIN','','129','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0013','H','',0,0,'','','24 HOUR URINE OXALATE','','1005','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2700,2700,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0014','H','',0,0,'','','24 HOUR URINE OXALATE','','1005','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0015','H','',0,0,'','','24 HOUR URINE PHOSPHOROUS','','130','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0016','H','',0,0,'','','24 HOUR URINE POTASSIUM(K+)','','131','0000-00-00','0000-00-00',0,0,0,0,0,0,'',160,160,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0017','H','',0,0,'','','24 HOUR URINE SODIUM (NA+)','','132','0000-00-00','0000-00-00',0,0,0,0,0,0,'',160,160,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0018','H','',0,0,'','','24 HOUR URINE UREA','','133','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0019','H','',0,0,'','','24 HOUR URINE UREA NITROGEN (BUN)','','134','0000-00-00','0000-00-00',0,0,0,0,0,0,'',180,180,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0020','H','',0,0,'','','24 HOUR URINE URIC ACID','','135','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0021','H','',0,0,'','','24 HOUR URINE VMA (WITH CREATININE RATIO)','','136','0000-00-00','0000-00-00',0,0,0,0,0,0,'',920,920,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0022','H','',0,0,'','','24 HOURS URINARY PROTEIN','','103','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,100,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0023','H','',0,0,'','','24 HOURS URINE PROTEIN','','103','0000-00-00','0000-00-00',0,0,0,0,0,0,'',175,175,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0024','H','',0,0,'','','24 URINE CALCIUM','','137','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0025','H','',0,0,'','','24HR URINE METABOLIC WORK UP','','975','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3750,3750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0026','H','',0,0,'','','25 HYDROXY VITAMIN D','','1010','0000-00-00','0000-00-00',0,0,0,0,0,0,'',770,770,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0027','H','',0,0,'','','25 HYDROXY VITAMIN D','','1010','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0028','H','',0,0,'','','ACE (ANGIOTENSIN CONVERTING ENZYME)','','139','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0029','H','',0,0,'','','ACETYLCHOLINE RECEPTOR AUTOANTIBODIES (ACHR AB)','','141','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3800,3800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0030','H','',0,0,'','','ACID FAST BACILLI (AFB) (ATYPICAL MYCOBACTERIA) SPECIES IDENTIFICATION','','142','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2680,2680,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0031','H','',0,0,'','','ACID FAST BACILLI (AFB) CULTURE','','143','0000-00-00','0000-00-00',0,0,0,0,0,0,'',720,720,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0032','H','',0,0,'','','ACID FAST BACILLI (AFB) CULTURE BONE MARROW','','144','0000-00-00','0000-00-00',0,0,0,0,0,0,'',720,720,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0033','H','',0,0,'','','ACID FAST BACILLI (AFB) SENSITIVITY (10 DRUGS)','','146','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6640,6640,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0034','H','',0,0,'','','ACID FAST BACILLI (AFB) SENSITIVITY (13 DRUGS)','','147','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8400,8400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0035','H','',0,0,'','','ACID FAST BACILLI (AFB) SENSITIVITY FIRST LINE DRUGS (SIREP)','','148','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0036','H','',0,0,'','','ACID FAST BACILLI (AFB) SENSITIVITY SECOND LINE DRUGS (5 DRUGS)','','149','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3800,3800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0037','H','',0,0,'','','ACID FAST BACILLI (AFB) SENSITIVITY SINGLE DRUG','','150','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1320,1320,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0038','H','',0,0,'','','ACID FAST BACILLI (AFB) STAIN','','151','0000-00-00','0000-00-00',0,0,0,0,0,0,'',120,120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0039','H','',0,0,'','','ACID FAST BACILLI (AFB) STAIN (3 SAMPLE)','','152','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0040','H','',0,0,'','','ACTIVATED PROTEIN C RESISTANCE (APCR)','','154','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2080,2080,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0041','H','',0,0,'','','ACTIVE B12 - HOLOTRANSCOBALAMIN','','72','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0042','H','',0,0,'','','ACTIVE B12 - HOLOTRANSCOBALAMIN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0043','H','',0,0,'','','ADA (ADENOSINE DEAMINASE)','','155','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0044','H','',0,0,'','','ADRENALIN (EPINEPHRINE)','','156','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3400,3400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0045','H','',0,0,'','','ADRENOCORTICOTROPIC HORMONE (ACTH)','','157','0000-00-00','0000-00-00',0,0,0,0,0,0,'',680,680,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0046','H','',0,0,'','','AEC (ABSOLUTE EOSINOPHIL COUNT)','','158','0000-00-00','0000-00-00',0,0,0,0,0,0,'',120,120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0047','H','',0,0,'','','AEROBIC BLOOD CULTURE','','159','0000-00-00','0000-00-00',0,0,0,0,0,0,'',550,550,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0048','H','',0,0,'','','AFB CULTURE BY BACTEC (MGIT) METHOD - FF ','','1015','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0049','H','',0,0,'','','AFB FLUID','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0050','H','',0,0,'','','AFB SENSITIVITY (LINE PROBE ASSAY) ( MDR-TB) (ISONIAZID AND RIFAMPICIN)','','160','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0051','H','',0,0,'','','AFB SENSITIVITY 10 1ST AND 2ND LINE DRUG SENSITIVITY BY BACTEC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6000,6000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0052','H','',0,0,'','','AFB SENSITIVITY FOR MOTT','','1042','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0053','H','',0,0,'','','AFB SENSITIVITY FOR MOTT','','1042','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0054','H','',0,0,'','','AFB SENSITIVITY(LINE PROBE ASSAY) (XDR-TB) (ETHAMBUTOL, FLUOROQUINOLONES, AMINOGLYCOSIDES, CAPREOMYCINS)','','162','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3600,3600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0055','H','',0,0,'','','AFB SENSITIVITY(LINE PROBE ASSAY)(MDR + XDR TB) (ISONIAZID, RIFAMPICIN, ETHAMBUTOL, FLUOROQUINOLONES, AMINOGLYCOSIDES, CAPREOMYCINS)','','161','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6750,6750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0056','H','',0,0,'','','AFB SMEAR BY IMMUNOFLUROSCENCE (3 SAMPLE)','','163','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0057','H','',0,0,'','','AFB SMEAR BY IMMUNOFLUROSCENCE (SINGLE SAMPLE)','','164','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0058','H','',0,0,'','','AFP - FLUID','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0059','H','',0,0,'','','AFP MOM (NEURAL TUBE DEFECT (NTD) ASSESMENT)','','165','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0060','H','',0,0,'','','AFTER COVID FULL CHECKUP','','978,8,873,388,70','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3999,3999,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0061','H','',0,0,'','','AFTER COVID SCREENING PACKAGE','','873,388,70,8','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1299,1299,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0062','H','',0,0,'','','ALBERTS STAIN','','166','0000-00-00','0000-00-00',0,0,0,0,0,0,'',210,210,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0063','H','',0,0,'','','ALBUMIN FLUID','','1012','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0064','H','',0,0,'','','ALDOSTERONE','','167','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0065','H','',0,0,'','','ALDOSTERONE(URINE)','','168','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0066','H','',0,0,'','','ALL PANEL CYTOGENETICS + FISH BCR/ABL, TEUAML, MLL GENE REARRANGEMENT AND PCR FOR T (1;19) OR E2A-PBX1','','170','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9600,9600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0067','H','',0,0,'','','ALLERGY TEST DRUG(ALLERGY PROFILE)','','980','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0068','H','',0,0,'','','ALLERGY TEST DRUGS','','980','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0069','H','',0,0,'','','ALPHA ANTITRYPSIN','','171','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0070','H','',0,0,'','','ALPHA FETOPROTEIN ( AFP)','','172','0000-00-00','0000-00-00',0,0,0,0,0,0,'',335,335,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0071','H','',0,0,'','','ALUMINIUM LEVEL FLUID','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2800,2800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0072','H','',0,0,'','','ALUMINIUM SERUM','','969','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2300,2300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0073','H','',0,0,'','','AMA BY ELISA (ANTI MITOCHONDRIAL ANTIBODIES)','','1019','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0074','H','',0,0,'','','AMA BY ELISA (ANTI MITOCHONDRIAL ANTIBODIES)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0075','H','',0,0,'','','AMA BY IFA (ANTI MITOCHONDRIAL ANTIBODIES)','','174','0000-00-00','0000-00-00',0,0,0,0,0,0,'',960,960,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0076','H','',0,0,'','','AMH (ANTI MULLERIAN HORMONE)/ MULLERIAN INHIBITING SUBSTANCE (MIS)','','893','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1160,1160,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0077','H','',0,0,'','','AML PANEL CYTOGENETICS + FISH FOR PMURARA, AMUETO,CBFL3/ MYH11, MLL GENE REARRANGEMENT','','175','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9600,9600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0078','H','',0,0,'','','AMMONIA','','881','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0079','H','',0,0,'','','AMOEBIASIS ANTIBODIES IGG','','176','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2300,2300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0080','H','',0,0,'','','AMYLASE FOR BODY FLUID','','931','0000-00-00','0000-00-00',0,0,0,0,0,0,'',325,325,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0081','H','',0,0,'','','ANA BY CLIA','','181','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0082','H','',0,0,'','','ANA BY ELISA','','173','0000-00-00','0000-00-00',0,0,0,0,0,0,'',960,960,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0083','H','',0,0,'','','ANA BY ELISA','','173','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0084','H','',0,0,'','','ANA BY IFA','','179','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0085','H','',0,0,'','','ANA PROFILE','','180','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0086','H','',0,0,'','','ANAEROBIC BLOOD CULTURE + AEROBIC BLOOD CULTURE','','182','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0087','H','',0,0,'','','ANCA C (PR3 ) BY ELISA','','183','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1020,1020,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0088','H','',0,0,'','','ANCA C AND P BY IFA','','184','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1280,1280,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0089','H','',0,0,'','','ANCA P (MPO) BY ELISA','','185','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1020,1020,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0090','H','',0,0,'','','ANDROSTENEDIONE','','186','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1680,1680,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0091','H','',0,0,'','','ANEMIA PROFILE MAXI (CBC, RETICULOSITE COUNT, IRON, TIBC, TRANSFERRIN SATURATION, B12, LDH, FERRITIN)','','8,85,26,87,75,78,57,28,00,000','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2100,2100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0092','H','',0,0,'','','ANEMIA PROFILE MINI (CBC, RETICULOSITE COUNT, IRON, TIBC, TRANSFERRIN SATURATION, B12)','','8,852,68,69,785,72','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1350,1350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0093','H','',0,0,'','','ANION GAP','','187','0000-00-00','0000-00-00',0,0,0,0,0,0,'',380,380,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0094','H','',0,0,'','','ANTENATAL PROFILE','','8,46,45,750,44,54,514,503,36,99,1','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0095','H','',0,0,'','','ANTI CARDIOLIPIN (ACA) IGM ANTIBODIES','','188','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0096','H','',0,0,'','','ANTI CARDIOLIPIN(ACA) IGG ANTIBODIES','','189','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0097','H','',0,0,'','','ANTI CCP','','190','0000-00-00','0000-00-00',0,0,0,0,0,0,'',520,520,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0098','H','',0,0,'','','ANTI DNASE B','','191','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0099','H','',0,0,'','','ANTI DS DNA BY IFA','','192','0000-00-00','0000-00-00',0,0,0,0,0,0,'',720,720,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0100','H','',0,0,'','','ANTI DS DNA ELISA','','193','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0101','H','',0,0,'','','ANTI GAD ANTIBODY FOR PARANEOPLASTIC SYNDROME','','945','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7000,7000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0102','H','',0,0,'','','ANTI GAD65 TEST','','194','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0103','H','',0,0,'','','ANTI GLOMERULAR BASEMENT MEMBRANE ANTIBODIES (ANTI GBM)','','195','0000-00-00','0000-00-00',0,0,0,0,0,0,'',860,860,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0104','H','',0,0,'','','ANTI HAV ANTIBODY (IGM)','','897','0000-00-00','0000-00-00',0,0,0,0,0,0,'',550,550,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0105','H','',0,0,'','','ANTI HBC IGM (CORE IGM)','','196','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0106','H','',0,0,'','','ANTI HBC TOTAL','','197','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0107','H','',0,0,'','','ANTI HBE','','198','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0108','H','',0,0,'','','ANTI HBS','','199','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0109','H','',0,0,'','','ANTI HCV AB BY CMIA','','200','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0110','H','',0,0,'','','ANTI HEV ANTIBODY (IGG)','','899','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1250,1250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0111','H','',0,0,'','','ANTI HEV ANTIBODY (IGM)','','898','0000-00-00','0000-00-00',0,0,0,0,0,0,'',650,650,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0112','H','',0,0,'','','ANTI INSULIN ANTIBODIES','','201','0000-00-00','0000-00-00',0,0,0,0,0,0,'',640,640,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0113','H','',0,0,'','','ANTI ISLET CELL ANTIBODY','','202','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2880,2880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0114','H','',0,0,'','','ANTI MAG AB','','203','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0115','H','',0,0,'','','ANTI MULLERIAL HORMONE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0116','H','',0,0,'','','ANTI MUSK AB','','891','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8500,8500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0117','H','',0,0,'','','ANTI NMO ANTIBODY CSF','','205','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4200,4200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0118','H','',0,0,'','','ANTI NMO ANTIBODY SERUM','','206','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4200,4200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0119','H','',0,0,'','','ANTI PARIETAL CELL ANTIBODY (APCA)','','207','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1880,1880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0120','H','',0,0,'','','ANTI PHOSPHDLIPID IGM (APA)','','208','0000-00-00','0000-00-00',0,0,0,0,0,0,'',270,270,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0121','H','',0,0,'','','ANTI PHOSPHOLIPID IGG (APA)','','209','0000-00-00','0000-00-00',0,0,0,0,0,0,'',270,270,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0122','H','',0,0,'','','ANTI SMOOTH MUSCLE ANTIBODIES (ASMA) WITH TITRE BY IFA','','210','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1040,1040,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0123','H','',0,0,'','','ANTI SPERM ANTIBODIES','','211','0000-00-00','0000-00-00',0,0,0,0,0,0,'',520,520,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0124','H','',0,0,'','','ANTI STREPTOLYSIN O ANTIBODIES ( ASO TITRE )','','101','0000-00-00','0000-00-00',0,0,0,0,0,0,'',280,280,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0125','H','',0,0,'','','ANTI THROMBIN III','','213','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0126','H','',0,0,'','','ANTI THYROGLOBULIN (ATG)','','214','0000-00-00','0000-00-00',0,0,0,0,0,0,'',320,320,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0127','H','',0,0,'','','ANTI THYROID ANTIBODY (ATG+ANTI TPO)','','215','0000-00-00','0000-00-00',0,0,0,0,0,0,'',640,640,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0128','H','',0,0,'','','ANTI TPO','','216','0000-00-00','0000-00-00',0,0,0,0,0,0,'',320,320,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0129','H','',0,0,'','','ANTI VGKC','','217','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5200,5200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0130','H','',0,0,'','','ANTIBIOTIC LEVEL BLOOD VANCOMYCIN LEVEL','','218','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2240,2240,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0131','H','',0,0,'','','ANTIBIOTIC SENSITIVITY REPORT','','1,14,113','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0132','H','',0,0,'','','ANTIEPILEPTIC DRUG PANEL ( PHENOBARBITONE, PHENYTOIN, CARBAMAZEPINE & ITS EPOXIDE, OXCARBAZEPINE & ITS MONO HYDROXY METABOLITE)','','219','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3080,3080,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0133','H','',0,0,'','','ANTIEPILEPTIC DRUG PANEL BLOOD LEVETIRACETAM','','220','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2800,2800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0134','H','',0,0,'','','ANTIEPILEPTIC DRUGS IN SERUM CARBAMAZEPINE AND ITS EPOXIDE','','221','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1960,1960,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0135','H','',0,0,'','','ANTIEPILEPTIC DRUGS IN SERUM OXCARBAZEPINE AND ITS MONO-HYDROXY METABOLITE','','222','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1960,1960,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0136','H','',0,0,'','','ANTIEPILEPTIC DRUGS IN SERUM PHENOBARBITONE','','223','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1750,1750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0137','H','',0,0,'','','ANTIEPILEPTIC DRUGS IN SERUM PHENYTOIN','','224','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0138','H','',0,0,'','','ANTIFUNGAL DRUGS BLOOD POSACONAZOLE LEVEL','','226','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5500,5500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0139','H','',0,0,'','','ANTIFUNGAL DRUGS BLOOD VORICONAZOLE LEVEL','','225','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2520,2520,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0140','H','',0,0,'','','ANTIFUNGAL SENSITIVITY BY VITAC','','966','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0141','H','',0,0,'','','ANTISACCHAROMYCES CEREVISIAE (ASCA), IGA','','227','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1180,1180,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0142','H','',0,0,'','','ANTISACCHAROMYCES CEREVISIAE (ASCA), IGG','','228','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1180,1180,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0143','H','',0,0,'','','ANY SPECIAL STAIN','','229','0000-00-00','0000-00-00',0,0,0,0,0,0,'',280,280,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0144','H','',0,0,'','','APLA (ANTIPHOSPHOLIPID ANTIBODY) PROFILE','','968','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0145','H','',0,0,'','','APOLIPOPROTEIN A1','','230','0000-00-00','0000-00-00',0,0,0,0,0,0,'',230,230,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0146','H','',0,0,'','','APOLIPOPROTEIN B','','231','0000-00-00','0000-00-00',0,0,0,0,0,0,'',230,230,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0147','H','',0,0,'','','APTT (ACTIVATED PARTIAL THROMBOPLASTIN TIME)','','232','0000-00-00','0000-00-00',0,0,0,0,0,0,'',220,220,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0148','H','',0,0,'','','AQUAPORIN 4 ANTIBODIES (NMO-IGG) CSF','','233','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4200,4200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0149','H','',0,0,'','','AQUAPORIN 4 ANTIBOOIES (NMO-IGG ) SERUM','','234','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4200,4200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0150','H','',0,0,'','','ARTERIAL BLOOD GAS ANALYSIS (ABGA)','','12','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0151','H','',0,0,'','','ARTERIAL BLOOD GAS ANALYSIS (ABGA) WITH LACTATE ','','1013','0000-00-00','0000-00-00',0,0,0,0,0,0,'',700,700,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0152','H','',0,0,'','','ASCITIC FLUID CYTOLOGY','','1000','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0153','H','',0,0,'','','ASCITIC FLUID CYTOLOGY WITH CELL BLOCK PREPARATION','','1001','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0154','H','',0,0,'','','ASCITIC FLUID ROUTINE MICRO EXAMINATION','','998','0000-00-00','0000-00-00',0,0,0,0,0,0,'',700,700,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0155','H','',0,0,'','','ASPERGILLUS (GALACTOMENON) AG','','236','0000-00-00','0000-00-00',0,0,0,0,0,0,'',880,880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0156','H','',0,0,'','','ASPERGILLUS IGG','','237','0000-00-00','0000-00-00',0,0,0,0,0,0,'',525,525,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0157','H','',0,0,'','','ASPERGILLUS IGM','','238','0000-00-00','0000-00-00',0,0,0,0,0,0,'',525,525,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0158','H','',0,0,'','','ATYPICAL MYCOBACTERIA SPECIES IDENTIFICATION-T0336','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3500,3500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0159','H','',0,0,'','','AUTO HEMOLYSIS TEST','','239','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0160','H','',0,0,'','','AUTOIMMUNE PANEL FOR ENCEPHALITIS','','906','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19000,19000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0161','H','',0,0,'','','AVIAN ANTIGEN PANEL FOR HP','','946','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0162','H','',0,0,'','','AVIDITY CMV IGG','','240','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1080,1080,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0163','H','',0,0,'','','AVIDITY T, RUB IGG','','241','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1080,1080,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0164','H','',0,0,'','','AVIDITY TOXO IGG','','242','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1080,1080,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0165','H','',0,0,'','','BAL FLUID CYTOLOGY','','984','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0166','H','',0,0,'','','BAL FLUID CYTOLOGY WITH BLOCK PREPRATION','','986','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0167','H','',0,0,'','','BAL FLUID ROUTINE MICRO EXAMINATION','','983','0000-00-00','0000-00-00',0,0,0,0,0,0,'',700,700,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0168','H','',0,0,'','','BAL ROUTINE EXAMINATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',325,325,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0169','H','',0,0,'','','BAND CELLS','','98','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0170','H','',0,0,'','','BENCE JONES PROTEIN (UBJ PROTEIN)','','244','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0171','H','',0,0,'','','BETA 2 GLYCOPROTEIN IGG','','245','0000-00-00','0000-00-00',0,0,0,0,0,0,'',675,675,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0172','H','',0,0,'','','BETA 2 GLYCOPROTEIN IGM','','246','0000-00-00','0000-00-00',0,0,0,0,0,0,'',675,675,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0173','H','',0,0,'','','BETA 2 MICROGLOBULIN SERUM','','247','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0174','H','',0,0,'','','BETA 2 MICROGLOBULINE URINE','','248','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0175','H','',0,0,'','','BETA D GLUCAN (BDG)','','974','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5500,5500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0176','H','',0,0,'','','BETA HCG','','249','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0177','H','',0,0,'','','BETA-TRACE PROTEIN (BTP) CSF LEAKAGE IN BODY FLUID ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6350,6350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0178','H','',0,0,'','','BETHESDA ASSAY','','250','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5200,5200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0179','H','',0,0,'','','BICARBONATE VENOUS(HCO3) ','','283','0000-00-00','0000-00-00',0,0,0,0,0,0,'',390,390,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0180','H','',0,0,'','','BILE ACID SERUM','','1041','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',1900,1900,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0181','H','',0,0,'','','BILE ACID SERUM ','','1041','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0182','H','',0,0,'','','BIO FIRE PANEL','','1031','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0183','H','',0,0,'','','BIO FIRE PANEL FROM BODY FLUID EXCEPT BLOOD','','1032','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0184','H','',0,0,'','','BIOAVAILABLE TESTOSTERONE','','252','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0185','H','',0,0,'','','BIOPSY ACETYLCHOLINESTERASE (ACHE STAIN)','','253','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0186','H','',0,0,'','','BIOPSY BREAST(MODIFIED RADICAL MASTECTOMY + ER-PR)','','263','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2520,2520,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0187','H','',0,0,'','','BIOPSY BREAST(MODIFIED RADICAL MASTECTOMY + ER-PR+HER2NEU)','','256','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3080,3080,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0188','H','',0,0,'','','BIOPSY BREAST(MODIFIED RADICAL MASTECTOMY + ER-PR+HER2NEU) + KI67','','254','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4760,4760,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0189','H','',0,0,'','','BIOPSY BREAST(MODIFIED RADICAL MASTECTOMY)','','257','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0190','H','',0,0,'','','BIOPSY ELECTRON MICROSCOPY','','258','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4480,4480,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0191','H','',0,0,'','','BIOPSY LARGE (1)','','260','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0192','H','',0,0,'','','BIOPSY LARGE (3) (EXTRA LARGE)','','261','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0193','H','',0,0,'','','BIOPSY LARGE(2) - ALL CANCER RESECTIONS','','262','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1960,1960,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0194','H','',0,0,'','','BIOPSY LARGE(4) - RADICAL PROSTATECTOMY, WHIPPLE\'S RESECTION','','263','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2520,2520,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0195','H','',0,0,'','','BIOPSY LARGE(5) -\n POST CHEMOTHERAPY BONE','','264','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2800,2800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0196','H','',0,0,'','','BIOPSY LARGE(6) - AMPUTATION','','265','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3080,3080,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0197','H','',0,0,'','','BIOPSY LIVER WITH SPECIAL STAINS','','266','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0198','H','',0,0,'','','BIOPSY MEDIUM (1) (SIZE - 1 TO 3 CM)','','267','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1050,1050,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0199','H','',0,0,'','','BIOPSY MEDIUM(2)(SIZE - 3 T0 5CM)','','268','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1120,1120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0200','H','',0,0,'','','BIOPSY MEDIUM(3)(SIZE - 5 T0 8CM)','','269','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1650,1650,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0201','H','',0,0,'','','BIOPSY MEDIUM(4)','','270','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1480,1480,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0202','H','',0,0,'','','BIOPSY MUSCLE WITH SPECIAL STAINS & IHC','','271','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3920,3920,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0203','H','',0,0,'','','BIOPSY NERVE WITH SPECIAL STAINS','','272','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0204','H','',0,0,'','','BIOPSY PROSTATE CORE','','273','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0205','H','',0,0,'','','BIOPSY RENAL 2 BOTTLE ( LM-HISTOPATHOLOGY, IF)','','1022','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3300,3300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0206','H','',0,0,'','','BIOPSY RENAL 3 BOTILE (PARAFFIN, IF AND EM)','','274','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6160,6160,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0207','H','',0,0,'','','BIOPSY RENAL TRANSPLANT WITH C4D (WITHOUT IF)','','275','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2520,2520,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0208','H','',0,0,'','','BIOPSY SKIN','','276','0000-00-00','0000-00-00',0,0,0,0,0,0,'',670,670,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0209','H','',0,0,'','','BIOPSY SKIN WITH IF','','277','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0210','H','',0,0,'','','BIOPSY SMALL (1) -1 CM PUNCH BIOPSY','','278','0000-00-00','0000-00-00',0,0,0,0,0,0,'',910,910,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0211','H','',0,0,'','','BIOPSY TURBT/BLADDER TUMOUR','','279','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1120,1120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0212','H','',0,0,'','','BIOPSY TURP/ PROSTATIC CHIPS','','280','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1008,1008,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0213','H','',0,0,'','','BIOPSY UTERUS WITH ADNEXA AND FIBROID','','281','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1120,1120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0214','H','',0,0,'','','BIOPSY UTERUS WITH CERVIX','','282','0000-00-00','0000-00-00',0,0,0,0,0,0,'',840,840,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0215','H','',0,0,'','','BLEEDING DISORDER SCREENING (CBC, PT, APTT , RIPA, CLOT RETRACTION, FACTOR XIII SCREEN)','','8,85,32,32,74,13,32,420','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1920,1920,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0216','H','',0,0,'','','BLEEDING TIME (BT)','','80','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0217','H','',0,0,'','','BLEEDING TIME (IVY\'S METHOD)','','80','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0218','H','',0,0,'','','BLOOD (SERUM) ALCOHOL LEVEL','','284','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0219','H','',0,0,'','','BLOOD GROUP','','46','0000-00-00','0000-00-00',0,0,0,0,0,0,'',30,30,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0220','H','',0,0,'','','BLOOD INDICES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0221','H','',0,0,'','','BLOOD LEAD LEVEL','','286','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2800,2800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0222','H','',0,0,'','','BLOOD METHEMOGLOBIN LEVEL','','287','0000-00-00','0000-00-00',0,0,0,0,0,0,'',730,730,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0223','H','',0,0,'','','BLOOD PARACETAMOL LEVEL','','288','0000-00-00','0000-00-00',0,0,0,0,0,0,'',840,840,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0224','H','',0,0,'','','BLOOD UREA','','796','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0225','H','',0,0,'','','BODY FLUID CULTURE','','292','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0226','H','',0,0,'','','BODY FLUID CYTOLOGY','','988','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0227','H','',0,0,'','','BODY FLUID CYTOLOGY ','','457','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0228','H','',0,0,'','','BODY FLUID CYTOLOGY WITH CELL BLOCK PREPARATION','','989','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0229','H','',0,0,'','','BODY FLUID EXAMINATION','','24','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0230','H','',0,0,'','','BODY FLUID ROUTINE MICRO EXAMINATION','','982','0000-00-00','0000-00-00',0,0,0,0,0,0,'',700,700,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0231','H','',0,0,'','','BODY FLUID ROUTINE MICRO EXAMINATION','','985','0000-00-00','0000-00-00',0,0,0,0,0,0,'',700,700,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0232','H','',0,0,'','','BONE CULTURE','','293','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0233','H','',0,0,'','','BONE MARROW ASPIRATION / BIOPSY REPORTING','','291','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0234','H','',0,0,'','','BONE MARROW IRON STAIN','','290','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0235','H','',0,0,'','','BRAF V600E MUTATION DETECTION','','294','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3800,3800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0236','H','',0,0,'','','BRCA1 & BRCA2','','951','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13500,13500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0237','H','',0,0,'','','BRUCELLA IGG','','295','0000-00-00','0000-00-00',0,0,0,0,0,0,'',380,380,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0238','H','',0,0,'','','BRUCELLA IGM','','296','0000-00-00','0000-00-00',0,0,0,0,0,0,'',380,380,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0239','H','',0,0,'','','BRUCELLOSIS(SERUM AGGLUTINATION TEST)','','297','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0240','H','',0,0,'','','BUN','','298','0000-00-00','0000-00-00',0,0,0,0,0,0,'',120,120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0241','H','',0,0,'','','BUN/ CREATININE RATIO SERUM','','299','0000-00-00','0000-00-00',0,0,0,0,0,0,'',180,180,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0242','H','',0,0,'','','C PEPTIDE 2 HOUR AFTER GLUCOSE','','300','0000-00-00','0000-00-00',0,0,0,0,0,0,'',615,615,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0243','H','',0,0,'','','C PEPTIDE FASTING','','301','0000-00-00','0000-00-00',0,0,0,0,0,0,'',615,615,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0244','H','',0,0,'','','C PEPTIDE POST PRANDIAL','','302','0000-00-00','0000-00-00',0,0,0,0,0,0,'',615,615,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0245','H','',0,0,'','','C PEPTIDE RANDOM','','303','0000-00-00','0000-00-00',0,0,0,0,0,0,'',615,615,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0246','H','',0,0,'','','C3 (COMPLEMENT PROTEIN CONCENTRATION)','','304','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0247','H','',0,0,'','','C4 (COMPLEMENT PROTEIN CONCENTRATION )','','305','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0248','H','',0,0,'','','CA 125','','887','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0249','H','',0,0,'','','CA 125 FLUID','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',700,700,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0250','H','',0,0,'','','CA 15.3','','306','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0251','H','',0,0,'','','CA 19.9','','922','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0252','H','',0,0,'','','CAG PROFILE','','8,46,44,502,514,99','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',700,700,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0253','H','',0,0,'','','CAG PROFILE','','84,44,69,95,02,514','0000-00-00','0000-00-00',0,0,0,0,0,0,'',700,700,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0254','H','',0,0,'','','CALCITONIN','','307','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0255','H','',0,0,'','','CALCIUM IONIZED(CA++)','','309','0000-00-00','0000-00-00',0,0,0,0,0,0,'',280,280,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0256','H','',0,0,'','','CALPROTECTINE STOOL','','310','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2300,2300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0257','H','',0,0,'','','CARBAMAZEPINE (TEGRETOL)','','311','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0258','H','',0,0,'','','CATECHOLAMINES FROM PLASMA','','1037','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0259','H','',0,0,'','','CATECHOLAMINES FROM PLASMA','','1037','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',1850,1850,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0260','H','',0,0,'','','CBC','','8','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','C','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0261','H','',0,0,'','','CBC WITH ESR','','8,95','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0262','H','',0,0,'','','CBC WITH PAP SMEAR','','8,105','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0263','H','',0,0,'','','CBC,AEC','','8,158','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0264','H','',0,0,'','','CD19 COUNT','','314','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0265','H','',0,0,'','','CD20 COUNT','','315','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0266','H','',0,0,'','','CD3 CD4 COB COUNT','','316','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1120,1120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0267','H','',0,0,'','','CD3 COUNT','','317','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0268','H','',0,0,'','','CD34 COUNT (ISHAGE PROTOCOL)','','318','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3400,3400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0269','H','',0,0,'','','CD4 CD8 COUNT','','319','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0270','H','',0,0,'','','CD8 COUNT','','882','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0271','H','',0,0,'','','CDS COUNT','','320','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0272','H','',0,0,'','','CEA (CARCINOEMBRYONIC ANTIGEN)','','321','0000-00-00','0000-00-00',0,0,0,0,0,0,'',390,390,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0273','H','',0,0,'','','CERULOPLASMIN','','322','0000-00-00','0000-00-00',0,0,0,0,0,0,'',380,380,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0274','H','',0,0,'','','CHIKUNGUNYA IGM RAPID','','323','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0275','H','',0,0,'','','CHLAMYDIA IGG ANTIBODIES','','324','0000-00-00','0000-00-00',0,0,0,0,0,0,'',380,380,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0276','H','',0,0,'','','CHLAMYDIA IGM ANTIBODIES','','325','0000-00-00','0000-00-00',0,0,0,0,0,0,'',380,380,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0277','H','',0,0,'','','CHLAMYDIAL ANTIBODIES(IGM&IGG)','','961','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0278','H','',0,0,'','','CHOLINESTERASE (PSEUDO) (SERUM CHOLINESTERASE)','','327','0000-00-00','0000-00-00',0,0,0,0,0,0,'',480,480,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0279','H','',0,0,'','','CHROMOGRANIN A','','328','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7500,7500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0280','H','',0,0,'','','CHRONIC PANCREATITIS PANEL-CASR CFTR CTRC PRSS1 SPINK','','1040','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18000,18000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0281','H','',0,0,'','','CHYLOMICRONS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',480,480,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0282','H','',0,0,'','','CK MM','','329','0000-00-00','0000-00-00',0,0,0,0,0,0,'',620,620,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0283','H','',0,0,'','','CK-MB','','66','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0284','H','',0,0,'','','CLL PANEL FISH FOR TRISOMY 12, DEL (17)(P), DEL (11)(Q), DEL (13)(Q)','','330','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8000,8000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0285','H','',0,0,'','','CLOSTRIDIUM DIFFICILE TOXIN DETECTION','','331','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0286','H','',0,0,'','','CLOT RETRACTION','','332','0000-00-00','0000-00-00',0,0,0,0,0,0,'',240,240,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0287','H','',0,0,'','','CLOTTING TIME (CT)','','81','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0288','H','',0,0,'','','CMV IGG','','333','0000-00-00','0000-00-00',0,0,0,0,0,0,'',195,195,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0289','H','',0,0,'','','CMV IGM','','334','0000-00-00','0000-00-00',0,0,0,0,0,0,'',195,195,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0290','H','',0,0,'','','COLD AGGLUTININ TITRE','','335','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0291','H','',0,0,'','','COPPER LEVEL SERUM','','336','0000-00-00','0000-00-00',0,0,0,0,0,0,'',520,520,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0292','H','',0,0,'','','CORTISOL AM','','337','0000-00-00','0000-00-00',0,0,0,0,0,0,'',310,310,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0293','H','',0,0,'','','CORTISOL PM','','338','0000-00-00','0000-00-00',0,0,0,0,0,0,'',310,310,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0294','H','',0,0,'','','COVID 19 (IGG)ANTIBODY TESTING','','978','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0295','H','',0,0,'','','COVID 19 TEST (BY RT PCR)','','967','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0296','H','',0,0,'','','CPK MB MASS','','339','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0297','H','',0,0,'','','CPK MM','','1053','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0298','H','',0,0,'','','CPK MM','','1053','0000-00-00','0000-00-00',0,0,0,0,0,0,'',850,850,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0299','H','',0,0,'','','CPK TOTAL','','65','0000-00-00','0000-00-00',0,0,0,0,0,0,'',335,335,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0300','H','',0,0,'','','CRP (C REACTIVE PROTIEN)','','873','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0301','H','',0,0,'','','CRP HS','','104','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0302','H','',0,0,'','','CRYOGLOBULIN','','342','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0303','H','',0,0,'','','CRYPTOCOCCAL ANTIGEN CSF','','343','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0304','H','',0,0,'','','CRYPTOCOCCAL ANTIGEN- CSF','','1018','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0305','H','',0,0,'','','CRYPTOCOCCAL ANTIGEN SERUM','','344','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0306','H','',0,0,'','','CRYPTOSPORIDIUM ANTIGEN FOR STOOL','','1046','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1700,1700,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0307','H','',0,0,'','','CRYPTOSPORIDUM ANTIGEN FOR STOOL','','1046','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0308','H','',0,0,'','','CS MOIT (MYCOBACTERIA OTHER THAN TUBERCULOSIS)','','345','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5720,5720,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0309','H','',0,0,'','','CSF CELL COUNTS','','346','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0310','H','',0,0,'','','CSF CYTOSPIN','','347','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0311','H','',0,0,'','','CSF HSV IGG','','348','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0312','H','',0,0,'','','CSF IGG','','349','0000-00-00','0000-00-00',0,0,0,0,0,0,'',280,280,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0313','H','',0,0,'','','CSF IGG INDEX','','350','0000-00-00','0000-00-00',0,0,0,0,0,0,'',720,720,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0314','H','',0,0,'','','CSF MANOMETRY','','351','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0315','H','',0,0,'','','CSF MEASELES (RUBEOLO) IGG AB','','352','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2400,2400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0316','H','',0,0,'','','CSF OLIGOCLONAL BAND','','353','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3600,3600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0317','H','',0,0,'','','CSF PROTEIN','','355','0000-00-00','0000-00-00',0,0,0,0,0,0,'',180,180,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0318','H','',0,0,'','','CSF ROUTINE & MICRO','','40','0000-00-00','0000-00-00',0,0,0,0,0,0,'',425,425,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0319','H','',0,0,'','','CSF ROUTINE & MICRO EXAMINATION','','40','0000-00-00','0000-00-00',0,0,0,0,0,0,'',425,425,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0320','H','',0,0,'','','CSF TPHA','','356','0000-00-00','0000-00-00',0,0,0,0,0,0,'',280,280,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0321','H','',0,0,'','','CSF VARICELLA IGG','','357','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3200,3200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0322','H','',0,0,'','','CULTURE AND SENSITIVITY','','1050','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0323','H','',0,0,'','','CULTURE AND SENSITIVITY (AEROBIC) (PUS)','','358','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0324','H','',0,0,'','','CULTURE AND SENSITIVITY (ANAEROBIC) PUS','','359','0000-00-00','0000-00-00',0,0,0,0,0,0,'',760,760,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0325','H','',0,0,'','','CULTURE AND SENSITIVITY AEROBIC CSF','','360','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0326','H','',0,0,'','','CULTURE AND SENSITIVITY ANAEROBIC BLOOD CULTURE','','1007','0000-00-00','0000-00-00',0,0,0,0,0,0,'',550,550,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0327','H','',0,0,'','','CULTURE AND SENSITIVITY ASCITIC FLUID ','','999','0000-00-00','0000-00-00',0,0,0,0,0,0,'',550,550,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0328','H','',0,0,'','','CULTURE AND SENSITIVITY BAL FLUID','','361','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0329','H','',0,0,'','','CULTURE AND SENSITIVITY BLOOD (AUTOMATED) AEROBIC(ADULT)','','362','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0330','H','',0,0,'','','CULTURE AND SENSITIVITY BLOOD (AUTOMATED) AEROBIC(PAEDIATRIC)','','377','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0331','H','',0,0,'','','CULTURE AND SENSITIVITY BLOOD (AUTOMATED) ANAEROBIC','','376','0000-00-00','0000-00-00',0,0,0,0,0,0,'',760,760,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0332','H','',0,0,'','','CULTURE AND SENSITIVITY BODY FLUID ','','987','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0333','H','',0,0,'','','CULTURE AND SENSITIVITY CSF FLUID','','1016','0000-00-00','0000-00-00',0,0,0,0,0,0,'',550,550,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0334','H','',0,0,'','','CULTURE AND SENSITIVITY CVP TIP ','','1003','0000-00-00','0000-00-00',0,0,0,0,0,0,'',550,550,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0335','H','',0,0,'','','CULTURE AND SENSITIVITY DRAIN FLUID ','','991','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0336','H','',0,0,'','','CULTURE AND SENSITIVITY EAR SWAB','','363','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0337','H','',0,0,'','','CULTURE AND SENSITIVITY ET (ENDOTRACHEAL ASPIRATE)','','378','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0338','H','',0,0,'','','CULTURE AND SENSITIVITY EYE SWAB','','364','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0339','H','',0,0,'','','CULTURE AND SENSITIVITY FLUID (EXCEPT CSF) AEROBIC','','365','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0340','H','',0,0,'','','CULTURE AND SENSITIVITY FLUID(CSF)(AUTOMATED)','','366','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0341','H','',0,0,'','','CULTURE AND SENSITIVITY FLUID(PERICARDIAL)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0342','H','',0,0,'','','CULTURE AND SENSITIVITY FLUID(PERICARDIAL)(AUTOMATED)','','367','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0343','H','',0,0,'','','CULTURE AND SENSITIVITY FLUID(PERITONEAL)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0344','H','',0,0,'','','CULTURE AND SENSITIVITY FLUID(PERITONEAL)(AUTOMATED)+A67','','368','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0345','H','',0,0,'','','CULTURE AND SENSITIVITY FLUID(PLEURAL)(AUTOMATED)','','369','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0346','H','',0,0,'','','CULTURE AND SENSITIVITY FLUID(SYNOVIAL)(AUTOMATED)','','370','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0347','H','',0,0,'','','CULTURE AND SENSITIVITY PLEURAL FLUID ','','995','0000-00-00','0000-00-00',0,0,0,0,0,0,'',550,550,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0348','H','',0,0,'','','CULTURE AND SENSITIVITY SEMEN','','371','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0349','H','',0,0,'','','CULTURE AND SENSITIVITY SPUTUM','','379','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0350','H','',0,0,'','','CULTURE AND SENSITIVITY STOOL','','380','0000-00-00','0000-00-00',0,0,0,0,0,0,'',553,553,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0351','H','',0,0,'','','CULTURE AND SENSITIVITY THROAT SWAB','','372','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0352','H','',0,0,'','','CULTURE AND SENSITIVITY TISSUE','','373','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0353','H','',0,0,'','','CULTURE AND SENSITIVITY URINE','','374','0000-00-00','0000-00-00',0,0,0,0,0,0,'',390,390,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0354','H','',0,0,'','','CULTURE AND SENSITIVITY URINE CATHETER TIP','','1027','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0355','H','',0,0,'','','CULTURE AND SENSITIVITY VAGINAL SWAB','','375','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0356','H','',0,0,'','','CULTURE AND SENSITIVITY WATER','','1004','0000-00-00','0000-00-00',0,0,0,0,0,0,'',550,550,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0357','H','',0,0,'','','CULTURE AND SENSITIVITY WOUND SWAB','','381','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0358','H','',0,0,'','','CULTURE AND SENSTIVITY TT ( TRACHEOSTOMY SECRETION','','981','0000-00-00','0000-00-00',0,0,0,0,0,0,'',550,550,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0359','H','',0,0,'','','CULTURE BLOOD/BONE MARROW FUNGUS','','382','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0360','H','',0,0,'','','CULTURE FOR NEISSERIA GONORRHOEAE','','383','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1040,1040,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0361','H','',0,0,'','','CYCLOSPORINE','','384','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1440,1440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0362','H','',0,0,'','','CYSTATIN C','','385','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1080,1080,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0363','H','',0,0,'','','CYSTICERCOSIS (TAENIA SOLIUM) ANTIBODY IGG SEROLOG','','1008','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1350,1350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0364','H','',0,0,'','','CYSTICERCOSIS (TAENIA SOLIUM) ANTIBODY IGG SEROLOG','','1009','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0365','H','',0,0,'','','CYTOLOGY PAP SMEAR (TWO SLIDES ONLY)','','386','0000-00-00','0000-00-00',0,0,0,0,0,0,'',280,280,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0366','H','',0,0,'','','D DIMER','','388','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0367','H','',0,0,'','','D3 HYDROXYBUTYRATE','','390','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0368','H','',0,0,'','','DCT (DIRECT COOMBS TEST)','','391','0000-00-00','0000-00-00',0,0,0,0,0,0,'',230,230,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0369','H','',0,0,'','','DENGUE IGG & IGM & NS1 BY CARD','','22','0000-00-00','0000-00-00',0,0,0,0,0,0,'',750,750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0370','H','',0,0,'','','DENGUE IGG BY CARD','','392','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0371','H','',0,0,'','','DENGUE IGG BY ELISA','','929','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0372','H','',0,0,'','','DENGUE IGG,IGM BY ELISA','','9,29,928','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0373','H','',0,0,'','','DENGUE IGM BY CARD','','393','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0374','H','',0,0,'','','DENGUE IGM BY ELISA','','928','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0375','H','',0,0,'','','DESMOGLEIN I & III ANTIBODY','','394','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0376','H','',0,0,'','','DETECTION OF COMMON STEROIDS IN UNKNOWN DRUG PREPARATION','','395','0000-00-00','0000-00-00',0,0,0,0,0,0,'',840,840,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0377','H','',0,0,'','','DGP IGA','','396','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0378','H','',0,0,'','','DGP IGG','','397','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0379','H','',0,0,'','','DHEA','','398','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0380','H','',0,0,'','','DHEAS (DEHYDROEPIANDRO STERONE SULFATE)','','399','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0381','H','',0,0,'','','DIC PROFILE MAXI (CBC, PT, APTT, FIBRINOGEN, FDP, D DIMER)','','8,85,32,32,42,84,26,380','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1560,1560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0382','H','',0,0,'','','DIC PROFILE MINI (FIBRINOGEN, FDP, D-DIMER)','','42,84,26,388','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1080,1080,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0383','H','',0,0,'','','DIGOXIN (LANOXIN)','','400','0000-00-00','0000-00-00',0,0,0,0,0,0,'',380,380,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0384','H','',0,0,'','','DIHYDROTESTOSTERONE(DHT)','','401','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0385','H','',0,0,'','','DNA EXTRACTION','','402','0000-00-00','0000-00-00',0,0,0,0,0,0,'',960,960,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0386','H','',0,0,'','','DRAIN FLUID CYTOLOGY','','992','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0387','H','',0,0,'','','DRAIN FLUID CYTOLOGY WITH CELL BLOCK PREPARATION','','993','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0388','H','',0,0,'','','DRAIN FLUID ROUTINE MICRO EXAMINATION','','990','0000-00-00','0000-00-00',0,0,0,0,0,0,'',700,700,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0389','H','',0,0,'','','DRUG OF ABUSE (9 DRUGS) IN URINE','','403','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1340,1340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0390','H','',0,0,'','','EBV ESNA IGG','','404','0000-00-00','0000-00-00',0,0,0,0,0,0,'',520,520,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0391','H','',0,0,'','','EBV PANEL','','405','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1560,1560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0392','H','',0,0,'','','EBV VCA IGM','','407','0000-00-00','0000-00-00',0,0,0,0,0,0,'',880,880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0393','H','',0,0,'','','EBV VGA / EA IGG','','406','0000-00-00','0000-00-00',0,0,0,0,0,0,'',520,520,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0394','H','',0,0,'','','ECHINOCOCCUS (HYDATID CYST) IGG','','408','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0395','H','',0,0,'','','ELT (EUGLOBULIN LYSIS TIME)','','410','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0396','H','',0,0,'','','EMA BINDING TEST FOR HEREDITARY SPHEROCYTOSIS','','411','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1080,1080,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0397','H','',0,0,'','','ENDOMYSIAL ANTIBODY SERUM','','412','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2040,2040,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0398','H','',0,0,'','','ERYTHROPOIETIN (EPO)','','413','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0399','H','',0,0,'','','ESR','','95','0000-00-00','0000-00-00',0,0,0,0,0,0,'',60,60,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0400','H','',0,0,'','','ESTRADIOL(E2)','','415','0000-00-00','0000-00-00',0,0,0,0,0,0,'',260,260,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0401','H','',0,0,'','','ESTRIOL(E3)','','416','0000-00-00','0000-00-00',0,0,0,0,0,0,'',480,480,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0402','H','',0,0,'','','FACTOR 10 ASSAY','','417','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0403','H','',0,0,'','','FACTOR 11 ASSAY','','418','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0404','H','',0,0,'','','FACTOR 12 ASSAY','','419','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0405','H','',0,0,'','','FACTOR 13 SCREEN','','420','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0406','H','',0,0,'','','FACTOR 2 ASSAY','','421','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0407','H','',0,0,'','','FACTOR 5 ASSAY','','422','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0408','H','',0,0,'','','FACTOR 7 ASSAY','','423','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0409','H','',0,0,'','','FACTOR 8 ASSAY','','424','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3200,3200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0410','H','',0,0,'','','FACTOR 9 ASSAY','','425','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0411','H','',0,0,'','','FASTING BLOOD SUGAR (FBS)','','117','0000-00-00','0000-00-00',0,0,0,0,0,0,'',30,30,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0412','H','',0,0,'','','FDP','','426','0000-00-00','0000-00-00',0,0,0,0,0,0,'',480,480,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0413','H','',0,0,'','','FEMALE INFERTILITY PROFILE (FSH, LH, PROLACTINE, TSH)','','87,88,90,84','0000-00-00','0000-00-00',0,0,0,0,0,0,'',870,870,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0414','H','',0,0,'','','FIBRINOGEN','','428','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0415','H','',0,0,'','','FILARIA  ANTIGEN','','1047','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1100,1100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0416','H','',0,0,'','','FILARIA  ANTIGEN','','1047','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0417','H','',0,0,'','','FILARIAL ANTIGEN DETECTION','','963','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1300,1300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0418','H','',0,0,'','','FINE NEEDLE ASPIRATION CYTOLOGY (FNAC)  PROCEDURE WITH REPORTING','','431','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0419','H','',0,0,'','','FINE NIDDLE ASPIRATION CYTOLOGY (FNAC) EFFUSION CYTOLOGY + CELL BLOCK','','429','0000-00-00','0000-00-00',0,0,0,0,0,0,'',900,900,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0420','H','',0,0,'','','FINE NIDDLE ASPIRATION CYTOLOGY (FNAC) ONLY REPORTING','','430','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0421','H','',0,0,'','','FISH 1P19Q','','432','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5800,5800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0422','H','',0,0,'','','FISH ALK MUTATION STUDY','','433','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5800,5800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0423','H','',0,0,'','','FISH AMUETO 1(8;21)','','434','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0424','H','',0,0,'','','FISH BCL1/IGH 1(11;14)','','435','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0425','H','',0,0,'','','FISH BCR-ABU 1(9:22) / (PHILADELPHIA CHROMOSOME)','','436','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0426','H','',0,0,'','','FISH CEP XV (CHIMERISM)','','437','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0427','H','',0,0,'','','FISH DEL 130','','439','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0428','H','',0,0,'','','FISH DEL 140','','440','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0429','H','',0,0,'','','FISH DEL 15011/15024 (PRADER WILLI SYNDROME)','','441','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3800,3800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0430','H','',0,0,'','','FISH DEL 17P / DEL 110','','442','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0431','H','',0,0,'','','FISH DEL 22011/22013 (DIGEORGE SYNDROME)','','443','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3800,3800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0432','H','',0,0,'','','FISH DEL 5Q','','444','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0433','H','',0,0,'','','FISH DEL 7Q','','445','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0434','H','',0,0,'','','FISH FGFR3/IGH 1(4;14)','','446','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0435','H','',0,0,'','','FISH HER 2 NEU','','447','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5800,5800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0436','H','',0,0,'','','FISH INV(16)','','448','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0437','H','',0,0,'','','FISH MAF/IGH 1(14;16)','','448','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0438','H','',0,0,'','','FISH MLL GENE REARRANGEMENT','','450','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0439','H','',0,0,'','','FISH ON ABORTUS MATERIAL ( 13,18,21,X &Y)','','451','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3800,3800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0440','H','',0,0,'','','FISH PMU RARA 1(15:17)','','456','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0441','H','',0,0,'','','FISH SEMEN (13,18,21,X& Y)','','452','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4750,4750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0442','H','',0,0,'','','FISH TEUAML 1(12;21)','','453','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0443','H','',0,0,'','','FISH TRISOMY 12','','454','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0444','H','',0,0,'','','FISH UNCULTURED AMNIOCYTES','','455','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5800,5800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0445','H','',0,0,'','','FLP (FSH,LH ,PRL)','','87,88,854','0000-00-00','0000-00-00',0,0,0,0,0,0,'',750,750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0446','H','',0,0,'','','FLUID ALBUMIN','','1012','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0447','H','',0,0,'','','FOLIC ACID','','458','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0448','H','',0,0,'','','FOLLICLE STIMULATING HORMONE (FSH)','','459','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0449','H','',0,0,'','','FREE ANDROGEN INDEX','','460','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0450','H','',0,0,'','','FREE BETA HCG (FBHCG)','','461','0000-00-00','0000-00-00',0,0,0,0,0,0,'',480,480,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0451','H','',0,0,'','','FREE KAPPA LITE CHAIN ASSAY','','462','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0452','H','',0,0,'','','FREE LAMBDA LITE CHAIN ASSAY','','463','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0453','H','',0,0,'','','FREE LITE CHAIN ASSAY','','464','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3600,3600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0454','H','',0,0,'','','FREE PROTEIN S','','465','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0455','H','',0,0,'','','FREE PSA','','466','0000-00-00','0000-00-00',0,0,0,0,0,0,'',420,420,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0456','H','',0,0,'','','FREE TESTOSTERONE','','467','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0457','H','',0,0,'','','FROZEN 1','','470','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5500,5500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0458','H','',0,0,'','','FROZEN 2','','468','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5500,5500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0459','H','',0,0,'','','FROZEN 3','','469','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5500,5500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0460','H','',0,0,'','','FT3 (FREE TRIIODOTHYRONINE)','','471','0000-00-00','0000-00-00',0,0,0,0,0,0,'',280,280,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0461','H','',0,0,'','','FT4 (FREE THYROXINE)','','472','0000-00-00','0000-00-00',0,0,0,0,0,0,'',175,175,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0462','H','',0,0,'','','FUNGAL CULTURE','','473','0000-00-00','0000-00-00',0,0,0,0,0,0,'',460,460,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0463','H','',0,0,'','','FUNGAL IDENTIFICATION','','474','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0464','H','',0,0,'','','FUNGAL IDENTIFICATION AND SENSITIVITY','','475','0000-00-00','0000-00-00',0,0,0,0,0,0,'',880,880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0465','H','',0,0,'','','FUNGAL SENSITIVITY','','476','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0466','H','',0,0,'','','FUNGAL STAIN(CALCOFLOUR WHITE)','','477','0000-00-00','0000-00-00',0,0,0,0,0,0,'',180,180,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0467','H','',0,0,'','','FUNGAL STAIN(KOH PREPARATION)','','478','0000-00-00','0000-00-00',0,0,0,0,0,0,'',120,120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0468','H','',0,0,'','','G6PD QUANTITATIVE','','30','0000-00-00','0000-00-00',0,0,0,0,0,0,'',280,280,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0469','H','',0,0,'','','GANGLIOSIDE GQ1B ANTIBODY, IGG','','889','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14550,14550,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0470','H','',0,0,'','','GASTRIC LAVAGE FOR DRUGS','','480','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1120,1120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0471','H','',0,0,'','','GASTRIC LAVAGE FOR HEMOSIDEROPHAGE','','481','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0472','H','',0,0,'','','GASTRIC LAVAGE FOR SUSPECTED PESTICIDES','','482','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0473','H','',0,0,'','','GASTRIN','','483','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0474','H','',0,0,'','','GFR','','484','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0475','H','',0,0,'','','GIEMSA STAIN','','955','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0476','H','',0,0,'','','GLIADIN IGA','','485','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0477','H','',0,0,'','','GLIADIN IGG','','486','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0478','H','',0,0,'','','GLUCOSE CHALLENGE TEST(GCT)','','1043','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80,80,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0479','H','',0,0,'','','GLUTAMIC ACID DECARBOXYLASE (GAD) IGG ANTIBODIES (ANTI GAD 65 AB)','','487','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0480','H','',0,0,'','','GONORRHOEA MICROSCOPY','','489','0000-00-00','0000-00-00',0,0,0,0,0,0,'',160,160,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0481','H','',0,0,'','','GRAM AND ZN STAIN','','490','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0482','H','',0,0,'','','GRAM STAIN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',120,120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0483','H','',0,0,'','','GROWTH HORMONE (GH)','','491','0000-00-00','0000-00-00',0,0,0,0,0,0,'',420,420,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0484','H','',0,0,'','','GTT','','913','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0485','H','',0,0,'','','H PYLORI ANTIGEN TEST','','494','0000-00-00','0000-00-00',0,0,0,0,0,0,'',920,920,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0486','H','',0,0,'','','H PYLORI IGA','','492','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0487','H','',0,0,'','','H PYLORI IGG','','493','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0488','H','',0,0,'','','H1N1 FOR SWINE FLU','','939','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0489','H','',0,0,'','','HAM TEST','','495','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0490','H','',0,0,'','','HAPTOGLOBIN','','496','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2240,2240,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0491','H','',0,0,'','','HAV IGG','','497','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0492','H','',0,0,'','','HAV IGM','','498','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0493','H','',0,0,'','','HB','','94','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80,80,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0494','H','',0,0,'','','HB ELECTROPHORESIS BY CE','','499','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0495','H','',0,0,'','','HB H PREPARATION','','500','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0496','H','',0,0,'','','HBA1C','','27','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0497','H','',0,0,'','','HBA2 (HEMOGLOBIN A2)','','885','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0498','H','',0,0,'','','HBEAG','','501','0000-00-00','0000-00-00',0,0,0,0,0,0,'',365,365,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0499','H','',0,0,'','','HBSAG BY CARD','','503','0000-00-00','0000-00-00',0,0,0,0,0,0,'',160,160,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0500','H','',0,0,'','','HBSAG BY CMIA','','910','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0501','H','',0,0,'','','HBSAG-ELISA','','878','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0502','H','',0,0,'','','HBV BY TAQMAN ','','504','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4400,4400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0503','H','',0,0,'','','HCV BY CARD','','99','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0504','H','',0,0,'','','HCV BY ELISA','','979','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0505','H','',0,0,'','','HCV RNA GENOTYPE ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8000,8000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0506','H','',0,0,'','','HDL CHOLESTEROL','','505','0000-00-00','0000-00-00',0,0,0,0,0,0,'',160,160,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0507','H','',0,0,'','','HE4 ROMA INDEX HUMAN EPIDIDYMIS PROTEIN-4 SERUM','','506','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0508','H','',0,0,'','','HEALTH_PACKAGE_FOR_LAB (INDIA INX (IFSC) ANNUAL HEALTH CHECK UP FEMALE)','','8,95,1,10,46,117,118,27,33,44,298,838,39,55,56,54,72,107','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0509','H','',0,0,'','','HEALTH_PACKAGE_FOR_LAB (INDIA INX (IFSC) ANNUAL HEALTH CHECK UP MALE)','','1,8,10,27,33,39,44,46,54,55,56,92,95,117,118,298,838,72,107','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0510','H','',0,0,'','','HEALTH_PACKAGE_FOR_LAB (INDIA INX (IFSC) PRE EMPLOYMENT MALE)','','8,95,46,117,1,503','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0511','H','',0,0,'','','HEALTH_PACKAGE_FOR_LAB (INDIA INX (IFSC)PRE EMPLOYMENT FEMALE)','','1,8,46,95,117,503,2','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0512','H','',0,0,'','','HEALTH_PACKAGE_FOR_LAB (UNION_BANK)','','1,33,44,56,95,117,118,134,503,750,796,8','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0513','H','',0,0,'','','HEALTH_PACKAGE_FOR_LAB_(	GOLD PLUS PACKAGE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0514','H','',0,0,'','','HEALTH_PACKAGE_FOR_LAB_(FEMALE DIAMOND PACKAGE)','','44,46,47,54,55,62,72,107,117,118,503,796,1,8,13,27,33,39','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0515','H','',0,0,'','','HEALTH_PACKAGE_FOR_LAB_(GOLD PACKAGE)','','8,46,45,44,55,33,1,62,54,53,39','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0516','H','',0,0,'','','HEALTH_PACKAGE_FOR_LAB_(MALE DIAMOND  PLUS PACKAGE)','','956,46,33,117,957,502,47,13,8,27,39,44,958,55,62,72,92,107,858,796,83','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0517','H','',0,0,'','','HEALTH_PACKAGE_FOR_LAB_(MALE DIAMOND PACKAGE)','','8,46,44,55,33,1,62,54,117,118,72,39,13,92,503,47,27,107,796','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0518','H','',0,0,'','','HEALTH_PACKAGE_FOR_LAB_(PLATINUM PACKAGE)','','1,8,33,39,46,47,62,72,117,118,796,44,54,55','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0519','H','',0,0,'','','HEALTH_PACKAGE_FOR_LAB_(PLATINUM PLUS PACKAGE)','','1,8,33,39,44,46,47,53,54,55,62,72,723,117','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0520','H','',0,0,'','','HEINZ BODIES','','507','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0521','H','',0,0,'','','HEMOLYTIC PROFILE ','','88,52,67,13,39,15,22,80,00,00,00,00,00,00,00,00,00,00,00,000','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4750,4750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0522','H','',0,0,'','','HERPES ZOSTER IGG','','508','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0523','H','',0,0,'','','HERPES ZOSTER IGM','','509','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0524','H','',0,0,'','','HEV IGG','','511','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1650,1650,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0525','H','',0,0,'','','HEV IGM','','510','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1050,1050,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0526','H','',0,0,'','','HIV 1 & 2 BY CARD','','514','0000-00-00','0000-00-00',0,0,0,0,0,0,'',240,240,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0527','H','',0,0,'','','HIV 1 & 2 BY CMIA','','909','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0528','H','',0,0,'','','HIV Ab/Ag combi(CLIA)','','914','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0529','H','',0,0,'','','HIV PVL QUANTITATIVE BY COBAS TEQMAN','','942','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0530','H','',0,0,'','','HIV WESTERN BLOT','','512','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1240,1240,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0531','H','',0,0,'','','HLA B 27 BY PCR','','1002','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0532','H','',0,0,'','','HLA B27 BY FLOWCYTOMETRY','','515','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0533','H','',0,0,'','','HOMA INDEX INSULIN RESISTANCE TEST','','516','0000-00-00','0000-00-00',0,0,0,0,0,0,'',700,700,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0534','H','',0,0,'','','HOMOCYSTEINE','','517','0000-00-00','0000-00-00',0,0,0,0,0,0,'',640,640,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0535','H','',0,0,'','','HSV 1 IGG','','521','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0536','H','',0,0,'','','HSV 1 IGM','','518','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0537','H','',0,0,'','','HSV 2 IGG','','519','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0538','H','',0,0,'','','HSV 2 IGM','','520','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0539','H','',0,0,'','','HYPERSENSITIVITY PNEUMONITIS PANEL','','1036','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0540','H','',0,0,'','','HYPERSENSITIVITY PNEUMONITIS PANEL ','','1036','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7800,7800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0541','H','',0,0,'','','ICT (INDIRECT COOMBS TEST)','','522','0000-00-00','0000-00-00',0,0,0,0,0,0,'',280,280,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0542','H','',0,0,'','','ICT (INDIRECT COOMBS TEST) TITRE','','523','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0543','H','',0,0,'','','IG E SPECIFIC FOR ASPERGILLUS','','904','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0544','H','',0,0,'','','IG G','','1044','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0545','H','',0,0,'','','IG G','','1045','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0546','H','',0,0,'','','IGF 1 (INSULIN LIKE GROWTH FACTOR 1)','','524','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0547','H','',0,0,'','','IGF 1 BP-3','','563','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2920,2920,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0548','H','',0,0,'','','IGG SPECIFIC FOR ASPERGILLUS','','954','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0549','H','',0,0,'','','IGG4','','566','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0550','H','',0,0,'','','IGG4 SUBCLASS','','965','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5300,5300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0551','H','',0,0,'','','IGM','','567','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0552','H','',0,0,'','','IHC ANY SINGLE MARKER (HER2NEU/C4D/EBER/KI67)','','525','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1680,1680,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0553','H','',0,0,'','','IHC ER PR','','526','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1120,1120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0554','H','',0,0,'','','IHC ER PR HER2NEU','','527','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1680,1680,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0555','H','',0,0,'','','IHC EXTENDED PANEL (MORE THAN 10 MARKERS) LYMPHOMA/ MUO/ MSI','','528','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6000,6000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0556','H','',0,0,'','','IHC PANEL UPTO 5 MARKERS','','529','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3360,3360,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0557','H','',0,0,'','','IMMATURE PLATELET FRACTION (IPF)','','940','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0558','H','',0,0,'','','IMMUNOFIXATION ELECTROPHORESIS','','530','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3120,3120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0559','H','',0,0,'','','IMMUNOGLOBULIN PROFILE IGG, IGM, IGA, AND IGE ','','1017','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0560','H','',0,0,'','','IMMUNOHISTOCHEMISTRY','','894','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7000,7000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0561','H','',0,0,'','','IMMUNOPHENOTYPING FOR AUTOIMMUNE LYMPHOPROLIFERATIVE DISORDER (ALPS)','','531','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3600,3600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0562','H','',0,0,'','','IMMUNOPHENOTYPING LEUKEMIA PANEL','','532','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7600,7600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0563','H','',0,0,'','','IMMUNOPHENOTYPING LYMPHOMA PANEL','','533','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7600,7600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0564','H','',0,0,'','','INDIA INK FOR CRYPTOCOCCUS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',160,160,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0565','H','',0,0,'','','INFECTIOUS MONONUCLEOSIS','','534','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0566','H','',0,0,'','','INHIBIN A','','535','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0567','H','',0,0,'','','INHIBIN B','','536','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1440,1440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0568','H','',0,0,'','','INHIBITOR SCREEN','','537','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0569','H','',0,0,'','','INSULIN 1 HOUR AFTER GLUCOSE','','538','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0570','H','',0,0,'','','INSULIN 2 HOUR AFTER GLUCOSE','','539','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0571','H','',0,0,'','','INSULIN FASTING','','540','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0572','H','',0,0,'','','INSULIN PP','','541','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0573','H','',0,0,'','','INSULIN RANDOM','','542','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0574','H','',0,0,'','','INTERLEUKIN 6(IL6)','','973','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0575','H','',0,0,'','','INTRINSIC FACTOR IGG','','542','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1750,1750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0576','H','',0,0,'','','IUI(SEMEN PREPARATION)','','933','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1250,1250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0577','H','',0,0,'','','KARYOTYPE AMNIOTIC FLUID','','550','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6000,6000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0578','H','',0,0,'','','KARYOTYPE BONE MARROW','','547','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3200,3200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0579','H','',0,0,'','','KARYOTYPE PERIPHERAL BLOOD (COUPLE)','','548','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3200,3200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0580','H','',0,0,'','','KARYOTYPE PERIPHERAL BLOOD (SINGLE)','','549','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0581','H','',0,0,'','','KARYOTYPING CHORIONIC VILU SAMPLE','','551','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6000,6000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0582','H','',0,0,'','','KARYOTYPING PRODUCT OF CONCEPTION','','552','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3800,3800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0583','H','',0,0,'','','KCT (KAOLIN CLOTTING TIME)','','553','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1150,1150,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0584','H','',0,0,'','','LACTATE LEVEL CSF','','554','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0585','H','',0,0,'','','LACTATE LEVEL PLASMA','','555','0000-00-00','0000-00-00',0,0,0,0,0,0,'',375,375,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0586','H','',0,0,'','','LAP SCORE','','556','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0587','H','',0,0,'','','LDH','','67','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0588','H','',0,0,'','','LDH FLUID','','557','0000-00-00','0000-00-00',0,0,0,0,0,0,'',240,240,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0589','H','',0,0,'','','LDL DIRECT','','558','0000-00-00','0000-00-00',0,0,0,0,0,0,'',180,180,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0590','H','',0,0,'','','LEGIONELLA PNEUMOPHILA AG URINE','','559','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0591','H','',0,0,'','','LEPTOSPIRA IGM','','560','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1300,1300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0592','H','',0,0,'','','LFT (LIVER FUNCTION TEST)','','860','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1080,1080,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0593','H','',0,0,'','','LH','','88','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0594','H','',0,0,'','','LIPASE(BODYFLUID)','','932','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0595','H','',0,0,'','','LIPID PROFILE','','33','0000-00-00','0000-00-00',0,0,0,0,0,0,'',220,220,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0596','H','',0,0,'','','LIPOPROTEIN A(LP(A))','','570','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0597','H','',0,0,'','','LITHIUM','','571','0000-00-00','0000-00-00',0,0,0,0,0,0,'',370,370,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0598','H','',0,0,'','','LKM 1 ANTIBODY','','572','0000-00-00','0000-00-00',0,0,0,0,0,0,'',880,880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0599','H','',0,0,'','','LUPUS ANTICOAGULANT','','573','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0600','H','',0,0,'','','LYME SEROLOGY FOR BORRELIA (IGM,IGG)','','949','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3200,3200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0601','H','',0,0,'','','LYMPHOCYTE SUBSET ANALYSIS','','574','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3400,3400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0602','H','',0,0,'','','MA YOJNA DIALYSIS LAB PACKAGE 1 MONTH','','8,44,48,53,74,75,87,89,00,000','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0603','H','',0,0,'','','MA YOJNA DIALYSIS LAB PACKAGE 3 MONTH','','8,44,53,68,70,775,878,914,979,74,75','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0604','H','',0,0,'','','MALDITOF TEST (NOCARDIA SPECIES IDENTIFICATION) ','','1034','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0605','H','',0,0,'','','MALDITOF TEST(NOCARDIA SPECIES IDENTIFICATION)','','1034','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0606','H','',0,0,'','','MANTOUX (TUBERCULIN) TEST','','100','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80,80,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0607','H','',0,0,'','','MATERNAL SCREEN TEST / DOUBLE MARKER TEST (FIRST TRIMESTER RISK ASSESSMENT 9-13 WKS AND 6 DAYS) (PAPA P, FREE B HCG)','','892','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0608','H','',0,0,'','','MATERNAL SCREEN TRIPLE MARKER TEST (2ND TRIMESTER RISK ASSESSMENT,15-21 + 6 DAY OF WEEKS). (AFP, HCG & E3UN)','','1,72,871','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0609','H','',0,0,'','','MATERNAL SCREEN/ OUADRUPAL MARKER 12ND TRIMESTER RISK ASSESSMENT,15-21 + 6 DAY OF WEEKS. (AFP, HCG E3UN, INHIBIN A)','','17,28,71,535','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0610','H','',0,0,'','','MDS PANEL : CYTOGENETICS\n + FISH','','577','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6600,6600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0611','H','',0,0,'','','MEASLES IGG','','578','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0612','H','',0,0,'','','MEASLES IGM','','579','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0613','H','',0,0,'','','METANEPHRINE FREE PLASMA','','580','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2800,2800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0614','H','',0,0,'','','METHAEMOGLOBIN','','581','0000-00-00','0000-00-00',0,0,0,0,0,0,'',880,880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0615','H','',0,0,'','','METHOTREXATE-T1897','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0616','H','',0,0,'','','MICROALBUMIN/CREATENINE RATIO URINE(ACR)','','582','0000-00-00','0000-00-00',0,0,0,0,0,0,'',320,320,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0617','H','',0,0,'','','MICROFILARIA ANTIBODY','','583','0000-00-00','0000-00-00',0,0,0,0,0,0,'',880,880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0618','H','',0,0,'','','MIX ALLERGY PROFILE','','890','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6000,6000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0619','H','',0,0,'','','MIXING STUDY (FACTOR 10)','','584','0000-00-00','0000-00-00',0,0,0,0,0,0,'',880,880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0620','H','',0,0,'','','MIXING STUDY (FACTOR 11)','','585','0000-00-00','0000-00-00',0,0,0,0,0,0,'',880,880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0621','H','',0,0,'','','MIXING STUDY (FACTOR 12)','','586','0000-00-00','0000-00-00',0,0,0,0,0,0,'',880,880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0622','H','',0,0,'','','MIXING STUDY (FACTOR 2)','','587','0000-00-00','0000-00-00',0,0,0,0,0,0,'',880,880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0623','H','',0,0,'','','MIXING STUDY (FACTOR 5)','','588','0000-00-00','0000-00-00',0,0,0,0,0,0,'',880,880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0624','H','',0,0,'','','MIXING STUDY (FACTOR 7)','','589','0000-00-00','0000-00-00',0,0,0,0,0,0,'',880,880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0625','H','',0,0,'','','MIXING STUDY (FACTOR 8)','','590','0000-00-00','0000-00-00',0,0,0,0,0,0,'',880,880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0626','H','',0,0,'','','MIXING STUDY (FACTOR 9)','','591','0000-00-00','0000-00-00',0,0,0,0,0,0,'',880,880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0627','H','',0,0,'','','MIXING STUDY FOR PROLONGED APTI (FACTOR 8,9,11, 12)','','592','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0628','H','',0,0,'','','MIXING STUDY FOR PROLONGED PT & APTI (FIBRINOGEN & FACTOR 2,5, 10)','','593','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3320,3320,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0629','H','',0,0,'','','MIXING STUDY FOR\n PROLONGED PT (FACTOR 2,5,7, 10)','','594','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0630','H','',0,0,'','','MIXING STUDY PT (CONTROL PLASMA)','','595','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0631','H','',0,0,'','','MODIFIED ZN STAIN FOR NOCARDIA','','596','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0632','H','',0,0,'','','MODIFIED ZN STAIN FOR STOOL','','597','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0633','H','',0,0,'','','MOTT PANNEL (SPECIES IDENTIFICATION AND DRUG SENS)','','944','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9000,9000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0634','H','',0,0,'','','MP BY CARD (MALARIA)','','97','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0635','H','',0,0,'','','MP BY QBC (MALARIA)','','599','0000-00-00','0000-00-00',0,0,0,0,0,0,'',260,260,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0636','H','',0,0,'','','MPD PANEL CYTOGENETICS + FISH FOR BCR/ABL + JAK2 MUTATION ANALYSIS','','600','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7200,7200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0637','H','',0,0,'','','MUMPS IGG','','601','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0638','H','',0,0,'','','MUMPS IGM','','602','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0639','H','',0,0,'','','MYCOPLASMA IGM','','603','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0640','H','',0,0,'','','MYELOMA PANEL DEL (13)(0), DEL (11)(0), DEL (17)(P), T(11;14), T(4;14), T(14;16)','','604','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11200,11200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0641','H','',0,0,'','','MYELOMA WORKUP ','','88,52,86,24,46,74,77,90,00,00,00,00,00,00,00,00,00,000','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15800,15800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0642','H','',0,0,'','','MYOGLOBIN','','605','0000-00-00','0000-00-00',0,0,0,0,0,0,'',320,320,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0643','H','',0,0,'','','NIPT (ALL CHROMOSOMES WITH MICRODELETIONS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',21000,21000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0644','H','',0,0,'','','NIPT (ALL CHROMOSOMES)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17000,17000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0645','H','',0,0,'','','NIPT (TRISOMY 21, 18, 13 & SEX CHROMOSOMAL ABNORMALITIES)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11000,11000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0646','H','',0,0,'','','Nitrite','','1011','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0647','H','',0,0,'','','NK CELL (CD16 + CD56)','','606','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0648','H','',0,0,'','','NMDA ANTIBODY CSF','','607','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5200,5200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0649','H','',0,0,'','','NMDA ANTIBODY SERUM','','608','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5200,5200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0650','H','',0,0,'','','NOCARDIA CULTURE','','609','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0651','H','',0,0,'','','NS1 AG BY CARD DENGUE','','611','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0652','H','',0,0,'','','NS1 AG BY ELISA DENGUE','','610','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0653','H','',0,0,'','','NT PRO BNP','','612','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0654','H','',0,0,'','','OPERATION THEATER MICROBIOLOGICAL SURVEILLANCE','','613','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0655','H','',0,0,'','','OSMOLALITY SERUM','','614','0000-00-00','0000-00-00',0,0,0,0,0,0,'',280,280,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0656','H','',0,0,'','','OSMOLALITY URINE','','615','0000-00-00','0000-00-00',0,0,0,0,0,0,'',280,280,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0657','H','',0,0,'','','PAP SMEAR (LBC) CYTOLOGY','','105','0000-00-00','0000-00-00',0,0,0,0,0,0,'',480,480,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0658','H','',0,0,'','','PARANEOPLASTIC (NEURONAL ANTIBODIES PROFILE)','','616','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3200,3200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0659','H','',0,0,'','','PARASITE IDENTIFICATION','','617','0000-00-00','0000-00-00',0,0,0,0,0,0,'',320,320,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0660','H','',0,0,'','','PARVOVIRUS 819 IGM','','618','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0661','H','',0,0,'','','PCR 5FU PANEL','','620','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10800,10800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0662','H','',0,0,'','','PCR ABL KINASE DIMAIN MUTATIONS FOR IMATINIB RESISTANCE','','621','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6800,6800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0663','H','',0,0,'','','PCR ADENO VIRUS QUALITAITVE','','622','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0664','H','',0,0,'','','PCR ADENO VIRUS QUANTITATIVE','','623','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4200,4200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0665','H','',0,0,'','','PCR APC GENE MUTATION FAMILY SCREENING','','624','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3400,3400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0666','H','',0,0,'','','PCR APC GENE MUTATION\n - PATIENT','','625','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6000,6000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0667','H','',0,0,'','','PCR BCR/ABL QUALITATIVE MAJOR (P210)','','627','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2880,2880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0668','H','',0,0,'','','PCR BCR/ABL QUALITATIVE MINOR (P190)','','628','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2880,2880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0669','H','',0,0,'','','PCR BK VIRUS QUANTITATIVE (IVD APPROVED)','','626','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4200,4200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0670','H','',0,0,'','','PCR C KIT MUTATION','','635','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6000,6000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0671','H','',0,0,'','','PCR CAL R MUTATION DETECTION','','629','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3800,3800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0672','H','',0,0,'','','PCR CBFB/MYH11 FOR INV 16','','630','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0673','H','',0,0,'','','PCR CEBPA MUTATION DETECTION','','631','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4600,4600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0674','H','',0,0,'','','PCR CHIKUNGUNIYA AND DENGUE - QUALITATIVE','','632','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0675','H','',0,0,'','','PCR CHIKUNGUNIYA\n -QUALITATIVE','','633','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0676','H','',0,0,'','','PCR CHIMERISM FOLLOW UP','','634','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2800,2800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0677','H','',0,0,'','','PCR CMV (QUALITATIVE)','','636','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1520,1520,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0678','H','',0,0,'','','PCR CMV QUANTITATIVE','','637','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3800,3800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0679','H','',0,0,'','','PCR COMPLET CHIMERISM BY VNTR','','638','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4600,4600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0680','H','',0,0,'','','PCR CYSTIC FIBROSIS','','639','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5200,5200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0681','H','',0,0,'','','PCR DENGUE QUALITATIVE','','641','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0682','H','',0,0,'','','PCR DENGUE TYPING','','640','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0683','H','',0,0,'','','PCR DPD GENE MUTATION DETECTION','','642','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6800,6800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0684','H','',0,0,'','','PCR E2/PBX1 1(1;19)','','643','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2880,2880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0685','H','',0,0,'','','PCR EBV (QUALITATIVE) PCR','','644','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2520,2520,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0686','H','',0,0,'','','PCR EBV (QUANTITATIVE) PCR','','645','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4400,4400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0687','H','',0,0,'','','PCR EGFR MUTATION','','646','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7500,7500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0688','H','',0,0,'','','PCR FACTOR V LEIDEN MUTATION (G1691A) DETECTION','','647','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0689','H','',0,0,'','','PCR FLT- 3 (ITD, D835Y) MUTATION','','648','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4400,4400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0690','H','',0,0,'','','PCR GAG REPEAT FOR HUNTINGTON DISEASE','','649','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4400,4400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0691','H','',0,0,'','','PCR GALT MUTATION','','650','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5200,5200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0692','H','',0,0,'','','PCR H RAS MUTATION DETECTION','','651','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3800,3800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0693','H','',0,0,'','','PCR HBV QUALITATIVE','','652','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0694','H','',0,0,'','','PCR HBV QUANTITATIVE','','653','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0695','H','',0,0,'','','PCR HCV GENOTYPING','','654','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7400,7400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0696','H','',0,0,'','','PCR HCV RNA QUALITATIVE','','655','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0697','H','',0,0,'','','PCR HCV RNA QUANTITATIVE (IVD APPROVED)','','656','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3800,3800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0698','H','',0,0,'','','PCR HIGH RESOLUTION HLA TYPING','','657','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16000,16000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0699','H','',0,0,'','','PCR HIV PROVIRAL DNA','','658','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0700','H','',0,0,'','','PCR HIV QUALITATIVE','','659','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0701','H','',0,0,'','','PCR HIV VIRAL LOAD (QUANTITATIVE) (IVD APPROVED)','','660','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0702','H','',0,0,'','','PCR HIV VIRAL LOAD (QUANTITATIVE) FDA APPROVED','','661','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3800,3800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0703','H','',0,0,'','','PCR HLA 8*5701','','662','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0704','H','',0,0,'','','PCR HLA A,B,DR TYPING','','663','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7600,7600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0705','H','',0,0,'','','PCR HLA B27','','664','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0706','H','',0,0,'','','PCR HLA TYPING - A , B','','665','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5600,5600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0707','H','',0,0,'','','PCR HLA TYPING DR','','666','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2400,2400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0708','H','',0,0,'','','PCR HPV DNA','','667','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0709','H','',0,0,'','','PCR HSV (1 & 2) QUALITATIVE','','668','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3250,3250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0710','H','',0,0,'','','PCR HSV (1 & 2) QUANTITATIVE','','668','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0711','H','',0,0,'','','PCR IDH 1/2 MUTATION DETECTION','','619','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6000,6000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0712','H','',0,0,'','','PCR IS BCR/ABL - QUANTITATIVE\n (PHILADELPHIA CHROMOSOME)','','669','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5400,5400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0713','H','',0,0,'','','PCR JAK 2 EXON 12 MUTATION DETECTION','','670','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3800,3800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0714','H','',0,0,'','','PCR JAK2 (V617F) MUTATION','','671','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0715','H','',0,0,'','','PCR JAPANES ENCEPHALITIS VIRUS- CSF','','672','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0716','H','',0,0,'','','PCR K RAS MUTATION','','673','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5400,5400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0717','H','',0,0,'','','PCR MICROSATELITE INSTABILITY IN COLON CANCER','','674','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10800,10800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0718','H','',0,0,'','','PCR MLUAF41(4:11)','','675','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2880,2880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0719','H','',0,0,'','','PCR MPL MUTATION DETECTION','','676','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4600,4600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0720','H','',0,0,'','','PCR MTHFR (C677T, A1298C) MUTATION DETECTION','','677','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0721','H','',0,0,'','','PCR MUTYH GENE MUTATION FAMILY SCREENING','','678','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3400,3400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0722','H','',0,0,'','','PCR MUTYH GENE MUTATION PATIENT','','679','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6000,6000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0723','H','',0,0,'','','PCR MYBPC3 (CARDIOMYOPATHY PREDISPOSITION)','','680','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3800,3800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0724','H','',0,0,'','','PCR N RAS MUTATION DETECTION','','681','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4600,4600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0725','H','',0,0,'','','PCR NPM-1','','682','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3800,3800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0726','H','',0,0,'','','PCR P53 MUTATION DETECTION','','683','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6800,6800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0727','H','',0,0,'','','PCR PAI 1 GENOTYPING','','684','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3400,3400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0728','H','',0,0,'','','PCR PARVOVIRUS B19 DNA','','685','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0729','H','',0,0,'','','PCR PIK3CA MUTATION DETECTION','','686','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5200,5200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0730','H','',0,0,'','','PCR PML RARA 1(15:17), QUALITATIVE\"','','687','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2880,2880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0731','H','',0,0,'','','PCR PML RARA 1(15:17), QUANTIATIVE','','688','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5400,5400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0732','H','',0,0,'','','PCR PROTHROMBINE MUTATION (G20210A)','','689','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0733','H','',0,0,'','','PCR PRSS1 GENOTYPING','','690','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5200,5200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0734','H','',0,0,'','','PCR PTEN MUTATION DETECTION','','691','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3800,3800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0735','H','',0,0,'','','PCR RET MUTATION DETECTION','','692','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5200,5200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0736','H','',0,0,'','','PCR RFC1 (REPLICATION FACTORC1) (80 G>A)','','693','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2880,2880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0737','H','',0,0,'','','PCR SIL/TAL1 FOR MICRODELETION 1P32','','694','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2880,2880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0738','H','',0,0,'','','PCR SLC01B1 (SIMVASTATIN) GENOTYPING','','695','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3400,3400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0739','H','',0,0,'','','PCR SPINK 1 GENOTYPING','','696','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3800,3800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0740','H','',0,0,'','','PCR T CELL GENE REARRANGEMENT','','697','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10800,10800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0741','H','',0,0,'','','PCR TB/NTM DETECTION','','698','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1320,1320,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0742','H','',0,0,'','','PCR THROMBOPHILIA MUTATION','','699','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6600,6600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0743','H','',0,0,'','','PCR TPMT GENOTYPING','','700','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4200,4200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0744','H','',0,0,'','','PCR UGTIA1 MUTATION DETECTION','','702','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4750,4750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0745','H','',0,0,'','','PCR VARICELLA ZOSTER VIRUS','','703','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0746','H','',0,0,'','','PCR VIRAL MENINGITIS QUALITATIVE','','704','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6000,6000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0747','H','',0,0,'','','PCR WARFARIN PANEL','','705','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5200,5200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0748','H','',0,0,'','','PCR Y CHROMOSOME MICRODELETION','','706','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5200,5200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0749','H','',0,0,'','','PCRTEUAML11(12:21)','','707','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2880,2880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0750','H','',0,0,'','','PDBS(POST DINNER BLOOD SUGAR)','','708','0000-00-00','0000-00-00',0,0,0,0,0,0,'',45,45,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0751','H','',0,0,'','','PERICARDIAL FLUID ROUTINE','','709','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0752','H','',0,0,'','','PERIPHERAL SMEAR STUDY','','48','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0753','H','',0,0,'','','PH FOR FLUID','','711','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0754','H','',0,0,'','','PHENYTOIN (DILANTIN,EPTOIN)','','713','0000-00-00','0000-00-00',0,0,0,0,0,0,'',320,320,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0755','H','',0,0,'','','PLA2 RECEPTOR ANTIBODY','','714','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0756','H','',0,0,'','','PLASMA ALDOSTERON/RENIN RATIO','','903','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0757','H','',0,0,'','','PLASMA CHOLINESTERASE ACTIVITY','','715','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0758','H','',0,0,'','','PLASMA RENIN','','716','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2160,2160,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0759','H','',0,0,'','','PLASMA RENIN ACTIVITY ','','901','0000-00-00','0000-00-00',0,0,0,0,0,0,'',900,900,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0760','H','',0,0,'','','PLATELET ANTIGEN (GPIIB/IIIA & GPIB) STUDY BY FLOWCYTOMETRY FOR GT AND BSS','','717','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2800,2800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0761','H','',0,0,'','','PLATELET COUNT','','925','0000-00-00','0000-00-00',0,0,0,0,0,0,'',110,110,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0762','H','',0,0,'','','PLEURAL FLUID CYTOLOGY WITH CELL BLOCK PREPARATION','','997','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0763','H','',0,0,'','','PLEURAL FLUID ROUTINE AND MICRO EXAMINATION','','994','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0764','H','',0,0,'','','PNEUMOSLIDE PANEL','','719','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2280,2280,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0765','H','',0,0,'','','PNEUMOSLIDE PANEL (ATYPICAL PNEUMONIA)','','719','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0766','H','',0,0,'','','PNH BY FLOW (WBC FLAER & CD157 AND RBC CD 59)','','720','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0767','H','',0,0,'','','PNH WORKUP(HAMTEST,SLT&\n URINE HEMOSIDERIN)','','721','0000-00-00','0000-00-00',0,0,0,0,0,0,'',920,920,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0768','H','',0,0,'','','PPBS','','118','0000-00-00','0000-00-00',0,0,0,0,0,0,'',30,30,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0769','H','',0,0,'','','PRE OP DAY CARE','','84,54,69,95,02,514','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0770','H','',0,0,'','','PRE OPERATIONS MAJOR','','1,8,13,34,35,44,45,46,82,99,232,750','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0771','H','',0,0,'','','PRE OPERATIONS MINOR','','1,8,34,35,44,45,46,99,750','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0772','H','',0,0,'','','PREGNANCY ASSOCIATED PLASMA PROTEIN A (PAPP A)','','724','0000-00-00','0000-00-00',0,0,0,0,0,0,'',680,680,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0773','H','',0,0,'','','PRENATAL KARYOTYPE AND FISH','','725','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8400,8400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0774','H','',0,0,'','','PROCALCITONIN','','726','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1470,1470,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0775','H','',0,0,'','','PROGESTERONE','','727','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0776','H','',0,0,'','','PROGRAMMED DEATH LIGAND (PDL 1)','','1035','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0777','H','',0,0,'','','PROGRAMMED DEATH LIGAND (PDL 1)','','1035','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7000,7000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0778','H','',0,0,'','','PROLACTIN','','90','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0779','H','',0,0,'','','PROTEIN C','','729','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0780','H','',0,0,'','','PROTEIN ELECTROPHORESIS','','730','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0781','H','',0,0,'','','PROTEIN WITH A/G RATIO','','731','0000-00-00','0000-00-00',0,0,0,0,0,0,'',110,110,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0782','H','',0,0,'','','PROTHROMBIN TIME (PT)','','82','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0783','H','',0,0,'','','PS FOR MP','','96','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80,80,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0784','H','',0,0,'','','PSA','','92','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0785','H','',0,0,'','','PSA PROFILE\n (PSA + FREE PSA+RATIO)','','734','0000-00-00','0000-00-00',0,0,0,0,0,0,'',740,740,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0786','H','',0,0,'','','PTH INTACT','','736','0000-00-00','0000-00-00',0,0,0,0,0,0,'',420,420,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0787','H','',0,0,'','','PUS ROUTINE EXAMINATION','','737','0000-00-00','0000-00-00',0,0,0,0,0,0,'',240,240,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0788','H','',0,0,'','','QUANTIFERON (TB GOLD)','','738','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1760,1760,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0789','H','',0,0,'','','QUANTITATIVE ANTIBODY TITER','','1048','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0790','H','',0,0,'','','RA FACTOR','','875','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0791','H','',0,0,'','','RBC CHOLINESTERASE ACTIVITY','','739','0000-00-00','0000-00-00',0,0,0,0,0,0,'',960,960,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0792','H','',0,0,'','','RBS','','45','0000-00-00','0000-00-00',0,0,0,0,0,0,'',70,70,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0793','H','',0,0,'','','RENAL BIOPSY FOR IF AND EF','','952','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0794','H','',0,0,'','','RESPIRATORY MULTIPLEX(RT-PCR)PANEL NEWG-0745','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0795','H','',0,0,'','','RESPIRATORY TRACT INFECTION PANAL BY RTPCR','','1051','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0796','H','',0,0,'','','RETICULOCYTE COUNT','','852','0000-00-00','0000-00-00',0,0,0,0,0,0,'',110,110,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0797','H','',0,0,'','','REVIEW OF 1 SLIDE AND BLOCK\n (200/ADDITIONAL BLOCK AND 100/ADDITIONAL SLIDE)','','740','0000-00-00','0000-00-00',0,0,0,0,0,0,'',840,840,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0798','H','',0,0,'','','RFT (RENAL FUNCTION TESTS)','','859','0000-00-00','0000-00-00',0,0,0,0,0,0,'',950,950,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0799','H','',0,0,'','','RIPA (RISTOCETIN INDUCED PLATELET AGGREGATION)','','741','0000-00-00','0000-00-00',0,0,0,0,0,0,'',720,720,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0800','H','',0,0,'','','RNA ISOLATION','','742','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0801','H','',0,0,'','','ROTA VIRUS STOOL','','743','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0802','H','',0,0,'','','RPR (RAPID PLASMA REAGIN TEST)','','744','0000-00-00','0000-00-00',0,0,0,0,0,0,'',160,160,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0803','H','',0,0,'','','RUBELLA (GERMAN MEASLES) AVIDITY, IGG','','1029','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0804','H','',0,0,'','','RUBELLA IGG','','908','0000-00-00','0000-00-00',0,0,0,0,0,0,'',210,210,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0805','H','',0,0,'','','RUBELLA IGM','','1033','0000-00-00','0000-00-00',0,0,0,0,0,0,'',210,210,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0806','H','',0,0,'','','RUBELLA IGM','','1033','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0807','H','',0,0,'','','S. ACETONE','','25','0000-00-00','0000-00-00',0,0,0,0,0,0,'',85,85,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0808','H','',0,0,'','','S. ACID PHOSPHATE','','63','0000-00-00','0000-00-00',0,0,0,0,0,0,'',375,375,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0809','H','',0,0,'','','S. ACID PHOSPHATE ','','63','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0810','H','',0,0,'','','S. ALKALINE PHOSPHATASE (ALP)','','57','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0811','H','',0,0,'','','S. BILIRUBIN','','54','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0812','H','',0,0,'','','S. CALCIUM (CA++)','','47','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0813','H','',0,0,'','','S. CHLORIDE (CL-)','','76','0000-00-00','0000-00-00',0,0,0,0,0,0,'',110,110,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0814','H','',0,0,'','','S. CREATININE','','44','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0815','H','',0,0,'','','S. FERRITIN','','70','0000-00-00','0000-00-00',0,0,0,0,0,0,'',570,570,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0816','H','',0,0,'','','S. GGT (GAMMA GLUTAMYL TRANSFERASE)','','71','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0817','H','',0,0,'','','S. IRON','','68','0000-00-00','0000-00-00',0,0,0,0,0,0,'',230,230,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0818','H','',0,0,'','','S. LIPASE','','38','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0819','H','',0,0,'','','S. MAGNESIUM','','79','0000-00-00','0000-00-00',0,0,0,0,0,0,'',230,230,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0820','H','',0,0,'','','S. PHOSPHATE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0821','H','',0,0,'','','S. PHOSPHORUS','','78','0000-00-00','0000-00-00',0,0,0,0,0,0,'',110,110,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0822','H','',0,0,'','','S. POTASSIUM (K+)','','75','0000-00-00','0000-00-00',0,0,0,0,0,0,'',110,110,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0823','H','',0,0,'','','S. PROTEIN WITH A/G RATIO','','58','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0824','H','',0,0,'','','S. SODIUM (NA+)','','74','0000-00-00','0000-00-00',0,0,0,0,0,0,'',110,110,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0825','H','',0,0,'','','S. TIBC (TOTAL IRON BINDING CAPACTIY)','','69','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0826','H','',0,0,'','','S. URIC ACID','','62','0000-00-00','0000-00-00',0,0,0,0,0,0,'',110,110,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0827','H','',0,0,'','','S.ALBUMIN','','888','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0828','H','',0,0,'','','S.B12 LEVEL','','243','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0829','H','',0,0,'','','SBB (SUDAN BLACK B) STAIN','','745','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0830','H','',0,0,'','','SCRUB TYPHUS ANTIBODY','','746','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0831','H','',0,0,'','','SEMEN R/M ANALYSIS ','','29','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0832','H','',0,0,'','','SERUM AMYLASE','','178','0000-00-00','0000-00-00',0,0,0,0,0,0,'',320,320,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0833','H','',0,0,'','','SERUM ASCITES ALBUMIN GRADIENT (SAAG)','','1014','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0834','H','',0,0,'','','SERUM ELECTROLYTES','','13','0000-00-00','0000-00-00',0,0,0,0,0,0,'',420,420,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0835','H','',0,0,'','','SERUM IGA TOTAL','','880','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0836','H','',0,0,'','','SERUM IGE TOTAL','','877','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0837','H','',0,0,'','','SERUM IGG TOTAL','','884','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0838','H','',0,0,'','','SERUM TOTAL PROTEIN','','874','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0839','H','',0,0,'','','SEX HORMONES BINDING GLOBULIN (SHBG)','','748','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0840','H','',0,0,'','','SGOT (AST)','','56','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80,80,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0841','H','',0,0,'','','SGPT (ALT)','','55','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0842','H','',0,0,'','','SICKLING TEST','','751','0000-00-00','0000-00-00',0,0,0,0,0,0,'',170,170,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0843','H','',0,0,'','','SILVER PACKAGE','','8,46,45,44,782,55,1','0000-00-00','0000-00-00',0,0,0,0,0,0,'',299,299,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0844','H','',0,0,'','','SPERM DNA FRAGMENTATION','','753','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0845','H','',0,0,'','','SPINO-CEREBELLAR ATAXIA PANEL','','916','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0846','H','',0,0,'','','SPUTUM AFB','','7','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0847','H','',0,0,'','','SPUTUM AFB','','7','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0848','H','',0,0,'','','SPUTUM EXAMINATION R/M','','111','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0849','H','',0,0,'','','STERILITY TEST FOR BIOLOGICAL INDICATOR','','754','0000-00-00','0000-00-00',0,0,0,0,0,0,'',260,260,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0850','H','',0,0,'','','STERILITY TEST FOR BLOOD PRODUCTS','','755','0000-00-00','0000-00-00',0,0,0,0,0,0,'',380,380,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0851','H','',0,0,'','','STERILITY TEST FOR WATER','','756','0000-00-00','0000-00-00',0,0,0,0,0,0,'',260,260,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0852','H','',0,0,'','','STONE ANALYSIS BY FTIR TECHNOLOGY','','757','0000-00-00','0000-00-00',0,0,0,0,0,0,'',670,670,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0853','H','',0,0,'','','STOOL FOR OCCULT BLOOD','','14','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0854','H','',0,0,'','','STOOL HANGING DROP FOR VIBRIO CHOLERAE','','758','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0855','H','',0,0,'','','STOOL R/M ANALYSIS','','10','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0856','H','',0,0,'','','STRESS CYTOGENETICS (FANCONI ANEMIA)','','760','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4320,4320,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0857','H','',0,0,'','','SUCROSE LYSIS TEST','','761','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0858','H','',0,0,'','','SYNOVIAL FLUID ROUTINE EXAMINATION','','41','0000-00-00','0000-00-00',0,0,0,0,0,0,'',320,320,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0859','H','',0,0,'','','SYPHILIS ANTIBODY BY CMIA','','762','0000-00-00','0000-00-00',0,0,0,0,0,0,'',840,840,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0860','H','',0,0,'','','T3 (TRIIODOTHYRONINE)','','86','0000-00-00','0000-00-00',0,0,0,0,0,0,'',110,110,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0861','H','',0,0,'','','T4 (THYROXINE)','','85','0000-00-00','0000-00-00',0,0,0,0,0,0,'',110,110,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0862','H','',0,0,'','','TACROLIMUS','','765','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0863','H','',0,0,'','','TB GOLD (GAMMA INTERFERON)','','766','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1760,1760,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0864','H','',0,0,'','','TB PCR','','767','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1120,1120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0865','H','',0,0,'','','TB PCR BY GENE EXPERT','','768','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0866','H','',0,0,'','','TEST FOR DMD(DUCHENNE MUSCULAR DYSTROPHY)(26 EXON)','','917','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5500,5500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0867','H','',0,0,'','','TEST FOR DMD(DUCHENNE MUSCULAR DYSTROPHY)(79 EXON)','','919','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8000,8000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0868','H','',0,0,'','','TESTOSTERONE TOTAL','','770','0000-00-00','0000-00-00',0,0,0,0,0,0,'',280,280,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0869','H','',0,0,'','','TETANUS TOXOID IGG ANTIBODIES ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4700,4700,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0870','H','',0,0,'','','Tetanus toxoid IgG antibodies (ELISA)','','1049','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0871','H','',0,0,'','','THIO T/ CONGO STAIN','','771','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0872','H','',0,0,'','','THROMBIN TIME','','772','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0873','H','',0,0,'','','THROMBOPHILIA  PROFILE','','950','0000-00-00','0000-00-00',0,0,0,0,0,0,'',29000,29000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0874','H','',0,0,'','','THROMBOTIC WORKUP ARTERIAL ','','88,66,45,33,75,15,17,40,00,00,00,00,00,00,00,00,00,00,00,00,00,00,000','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22000,22000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0875','H','',0,0,'','','THROMBOTIC WORKUP VENOUS ','','88,66,75,15,17,72,15,70,00,00,00,00,00,00,00,00,00,000','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18000,18000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0876','H','',0,0,'','','THYROGLOBULIN','','1052','0000-00-00','0000-00-00',0,0,0,0,0,0,'',750,750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0877','H','',0,0,'','','THYROGLOBULIN','','1052','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0878','H','',0,0,'','','THYROID FUNCTION TEST (T3, T4, TSH) (TFT)','','39','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0879','H','',0,0,'','','THYROID STIMULATING IMMUNOGLOBULIN (TSI)','','773','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2400,2400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0880','H','',0,0,'','','THYROXINE BINDING GLOBULIN (TBG) LEVEL','','774','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5600,5600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0881','H','',0,0,'','','TIG IGA','','776','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0882','H','',0,0,'','','TIG IGG','','777','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0883','H','',0,0,'','','TORCH COMPLEX IGG & IGM ANTIBODIES EVALUATION (10 PARAMETERS) (TOXO IGG/IGM , RUB IGG/IGM/CMV IGG/IGM, HSV1 IGG/IGM,HSV2 IGG/IGM)','','778','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0884','H','',0,0,'','','TORCH COMPLEX IGG & IGM ANTIBODIES EVALUATION (8 PARAMETERS) (TOXO IGG/IGM, RUB IGG/IGM/CMV IGG/IGM, HSV2 IGG/IGM)','','779','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0885','H','',0,0,'','','TORCH IGG (5 PARAMETERS) (TOXO IGG, RUB IGG,CMV IGG, HSV 1 IGG,HSV2 IGG)','','780','0000-00-00','0000-00-00',0,0,0,0,0,0,'',640,640,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0886','H','',0,0,'','','TORCH IGM ANTIBODIES (5PARAMETERS) (TOXO IGM, RUB IGM,CMV IGM ,HSV1 IGM, HSV2 IGM)','','781','0000-00-00','0000-00-00',0,0,0,0,0,0,'',756,756,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0887','H','',0,0,'','','TOTAL CHOLESTEROL','','782','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0888','H','',0,0,'','','TOTAL COUNT (WBC)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',70,70,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0889','H','',0,0,'','','TOXOPLASMA - IGG ( CSF )','','1025','0000-00-00','0000-00-00',0,0,0,0,0,0,'',245,245,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0890','H','',0,0,'','','TOXOPLASMA - IGM ( CSF )','','1026','0000-00-00','0000-00-00',0,0,0,0,0,0,'',245,245,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0891','H','',0,0,'','','TOXOPLASMA IGG','','1023','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0892','H','',0,0,'','','TOXOPLASMA IGM','','1024','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0893','H','',0,0,'','','TPHA','','783','0000-00-00','0000-00-00',0,0,0,0,0,0,'',320,320,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0894','H','',0,0,'','','TPHA BY CARD','','784','0000-00-00','0000-00-00',0,0,0,0,0,0,'',280,280,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0895','H','',0,0,'','','TPHA BY CLIA','','911','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0896','H','',0,0,'','','TRANSFERRIN SATURATION','','785','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0897','H','',0,0,'','','TRIGLYCERIDE','','786','0000-00-00','0000-00-00',0,0,0,0,0,0,'',120,120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0898','H','',0,0,'','','TRIPALE MARKER TEST','','962','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0899','H','',0,0,'','','TROPONIN I','','93','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0900','H','',0,0,'','','TROPONIN I - QUALITATIVE','','93','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0901','H','',0,0,'','','TROPONIN T BY CARD','','1021','0000-00-00','0000-00-00',0,0,0,0,0,0,'',750,750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0902','H','',0,0,'','','TROPONIN T QUANTITATIVE','','787','0000-00-00','0000-00-00',0,0,0,0,0,0,'',660,660,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0903','H','',0,0,'','','TSH (THYROID STIMULATING HORMONE)','','84','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0904','H','',0,0,'','','TSH RECEPTOR AB (TREAB)','','789','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0905','H','',0,0,'','','TT IGA (Tissue Transglutaminase-IGA)','','879','0000-00-00','0000-00-00',0,0,0,0,0,0,'',750,750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0906','H','',0,0,'','','TYPHIDOT','','790','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0907','H','',0,0,'','','UIBC','','793','0000-00-00','0000-00-00',0,0,0,0,0,0,'',280,280,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0908','H','',0,0,'','','UNCONJUGATED( E3)','','794','0000-00-00','0000-00-00',0,0,0,0,0,0,'',520,520,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0909','H','',0,0,'','','UNSTABLE HB','','795','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0910','H','',0,0,'','','URINE ACETONE','','50','0000-00-00','0000-00-00',0,0,0,0,0,0,'',85,85,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0911','H','',0,0,'','','URINE ALBUMIN','','798','0000-00-00','0000-00-00',0,0,0,0,0,0,'',110,110,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0912','H','',0,0,'','','URINE AMYLASE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',325,325,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0913','H','',0,0,'','','URINE BENCE JONES PROTEIN ','','49','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0914','H','',0,0,'','','URINE CALCIUM (RANDOM)','','799','0000-00-00','0000-00-00',0,0,0,0,0,0,'',120,120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0915','H','',0,0,'','','URINE CALCIUM / CREAT RATIO','','800','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0916','H','',0,0,'','','URINE CHLORIDE\n (WITH CREATININE RATIO)','','801','0000-00-00','0000-00-00',0,0,0,0,0,0,'',180,180,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0917','H','',0,0,'','','URINE COLOR TEST FOR COMMON DRUGS (SCREEN-1)','','802','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0918','H','',0,0,'','','URINE CREATININE','','803','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0919','H','',0,0,'','','URINE CYTOLOGY','','1038','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0920','H','',0,0,'','','URINE DELTA-AMINOLEVULINIC ACID (ALA)','','804','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0921','H','',0,0,'','','URINE DRUG (26 DRUGS) SCREENING (BY TOXILAB A)','','805','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1960,1960,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0922','H','',0,0,'','','URINE DRUG SCREEN (9 DRUGS)','','806','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1960,1960,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0923','H','',0,0,'','','URINE DRUG SCREEN AMPHETAMINE','','815','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0924','H','',0,0,'','','URINE DRUG SCREEN BARBITURATE','','816','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0925','H','',0,0,'','','URINE DRUG SCREEN BENZODIAZEPINE','','807','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0926','H','',0,0,'','','URINE DRUG SCREEN COCAINE/BENZOYLECGONINE','','808','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0927','H','',0,0,'','','URINE DRUG SCREEN MARIJUANA','','812','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0928','H','',0,0,'','','URINE DRUG SCREEN METHADONE','','809','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0929','H','',0,0,'','','URINE DRUG SCREEN METHAMPHETAMINE','','810','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0930','H','',0,0,'','','URINE DRUG SCREEN OPIATES/MORPHINE','','811','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0931','H','',0,0,'','','URINE DRUG SCREEN PHENCYCLIDINE','','814','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0932','H','',0,0,'','','URINE DRUG SCREEN TETRA HYDRO CANNABINOL','','813','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0933','H','',0,0,'','','URINE ELECTROLYTES (WITH CREATININE RATIO)','','817','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0934','H','',0,0,'','','URINE FLUID CYTOLOGY','','1028','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0935','H','',0,0,'','','URINE FOR AFB','','51','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0936','H','',0,0,'','','URINE FOR PHASE CONTRAST MICROSCOPY','','818','0000-00-00','0000-00-00',0,0,0,0,0,0,'',160,160,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0937','H','',0,0,'','','URINE FOR PROTEIN ELECTROPHORESIS','','819','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0938','H','',0,0,'','','URINE FOR REDUCING SUBSTANCES','','820','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80,80,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0939','H','',0,0,'','','URINE FOR SPECIFIC GRAVITY','','821','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0940','H','',0,0,'','','URINE GLUCOSE','','1030','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0941','H','',0,0,'','','URINE HCG (PREGNANCY) TEST','','2','0000-00-00','0000-00-00',0,0,0,0,0,0,'',70,70,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0942','H','',0,0,'','','URINE HEMOGLOBIN','','822','0000-00-00','0000-00-00',0,0,0,0,0,0,'',160,160,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0943','H','',0,0,'','','URINE HEMOSIDERIN','','823','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0944','H','',0,0,'','','URINE MAGNESIUM','','824','0000-00-00','0000-00-00',0,0,0,0,0,0,'',120,120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0945','H','',0,0,'','','URINE MICROALBUMIN (RANDOM)','','918','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0946','H','',0,0,'','','URINE MYOGLOBULIN','','825','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0947','H','',0,0,'','','URINE PH','','826','0000-00-00','0000-00-00',0,0,0,0,0,0,'',60,60,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0948','H','',0,0,'','','URINE PHENOL','','827','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0949','H','',0,0,'','','URINE PHOSPHORUS','','829','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0950','H','',0,0,'','','URINE PHOSPHORUS CREATININE RATIO','','828','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0951','H','',0,0,'','','URINE PORPHOBILINOGEN','','830','0000-00-00','0000-00-00',0,0,0,0,0,0,'',170,170,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0952','H','',0,0,'','','URINE POTASSIUM (WITH CREATININE RATIO)','','832','0000-00-00','0000-00-00',0,0,0,0,0,0,'',180,180,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0953','H','',0,0,'','','URINE PROTEIN','','833','0000-00-00','0000-00-00',0,0,0,0,0,0,'',130,130,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0954','H','',0,0,'','','URINE PROTEIN /CREAT RATIO','','834','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0955','H','',0,0,'','','URINE R/M','','1','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','N',0,'','U','C','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0956','H','',0,0,'','','URINE SODIUM (RANDOM)','','924','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0957','H','',0,0,'','','URINE SODIUM (WITH CREATININE RATIO)','','835','0000-00-00','0000-00-00',0,0,0,0,0,0,'',180,180,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0958','H','',0,0,'','','URINE TOXIN EXAMINATION','','977','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0959','H','',0,0,'','','URINE UREA','','836','0000-00-00','0000-00-00',0,0,0,0,0,0,'',120,120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0960','H','',0,0,'','','URINE UREA NITROGEN','','837','0000-00-00','0000-00-00',0,0,0,0,0,0,'',120,120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0961','H','',0,0,'','','URINE URIC ACID','','838','0000-00-00','0000-00-00',0,0,0,0,0,0,'',130,130,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0962','H','',0,0,'','','URINE UROBILINOGEN','','839','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0963','H','',0,0,'','','VALPROIC ACID (SODIUM VALPORATE)','','841','0000-00-00','0000-00-00',0,0,0,0,0,0,'',340,340,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0964','H','',0,0,'','','VARICELLA ZOSTER IGG','','842','0000-00-00','0000-00-00',0,0,0,0,0,0,'',480,480,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0965','H','',0,0,'','','VARICELLA ZOSTER IGM','','843','0000-00-00','0000-00-00',0,0,0,0,0,0,'',480,480,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0966','H','',0,0,'','','VDRL (RAPID)','','36','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0967','H','',0,0,'','','VITAMIN A','','941','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0968','H','',0,0,'','','VITAMIN B12','','72','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0969','H','',0,0,'','','VITAMIN D','','107','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0970','H','',0,0,'','','VITAMIN D GOLD (COVERS VITAMIN D2 VITAMIN D3 & D)','','1020','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2700,2700,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0971','H','',0,0,'','','VITAMIN E','','1039','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',4300,4300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0972','H','',0,0,'','','VITAMIN E ','','1039','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0973','H','',0,0,'','','VITEK IDENTIFICATION','','845','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0974','H','',0,0,'','','VITEK IDENTIFICATION AND SENSITIVITY','','846','0000-00-00','0000-00-00',0,0,0,0,0,0,'',740,740,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0975','H','',0,0,'','','VITEK SENSITIVITY','','847','0000-00-00','0000-00-00',0,0,0,0,0,0,'',380,380,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0976','H','',0,0,'','','VON WILLEBRAND FACTOR\n STUDY (AG, ACTIVITY, ACTIVITY/AG RATIO)','','848','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2800,2800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0977','H','',0,0,'','','WEIL FELIX TEST','','849','0000-00-00','0000-00-00',0,0,0,0,0,0,'',900,900,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0978','H','',0,0,'','','WIDAL TEST','','42','0000-00-00','0000-00-00',0,0,0,0,0,0,'',120,120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0979','H','',0,0,'','','ZINC (ZN)','','900','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LAB','','LAB0980','H','',0,0,'','','ZN STAIN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',120,120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'LBCG','','LBCG0001','H','',0,0,'','','Blood Glucose Random','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',24,24,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0002','H','',0,0,'','','24 hrs urine for Proteins,Sodium, creatinine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0003','H','',0,0,'','','Blood Urea Nitrogen','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',54,54,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0004','H','',0,0,'','','Serum Creatinine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',55,55,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0005','H','',0,0,'','','Urine Bile Pigment and Salt','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25,25,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0006','H','',0,0,'','','Urine Urobilinogen','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20,20,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0007','H','',0,0,'','','Urine Ketones','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',30,30,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0008','H','',0,0,'','','Urine Occult Blood','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',35,35,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0009','H','',0,0,'','','Urine total proteins','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18,18,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0010','H','',0,0,'','','Rheumatoid Factor test','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',90,90,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0011','H','',0,0,'','','Bence Jones protein','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',47,47,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0012','H','',0,0,'','','Serum Uric Acid','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',55,55,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0013','H','',0,0,'','','Serum Bilirubin total & direct','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80,80,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0014','H','',0,0,'','','Serum Iron','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',90,90,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0015','H','',0,0,'','','C.R.P.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0016','H','',0,0,'','','C.R.P Quantitative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',160,160,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0017','H','',0,0,'','','Body fluid  (CSF/Ascitic Fluid etc.)Sugar, Protein\netc.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',90,90,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0018','H','',0,0,'','','Albumin.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18,18,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0019','H','',0,0,'','','Creatinine clearance.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80,80,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0020','H','',0,0,'','','Serum Cholesterol','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',62,62,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0021','H','',0,0,'','','Total Iron Binding Capacity','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80,80,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0022','H','',0,0,'','','Glucose (Fasting & PP)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',47,47,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0023','H','',0,0,'','','Serum Calcium ?Total','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',60,60,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0024','H','',0,0,'','','Serum Calcium ?Ionic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',44,44,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0025','H','',0,0,'','','Serum Phosphorus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',60,60,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0026','H','',0,0,'','','Total Protein Alb/Glo Ratio','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0027','H','',0,0,'','','IgG.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0028','H','',0,0,'','','IgM.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0029','H','',0,0,'','','IgA.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0030','H','',0,0,'','','ANA.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0031','H','',0,0,'','','Ds DNA.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0032','H','',0,0,'','','S.G.P.T.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',55,55,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0033','H','',0,0,'','','S.G.O.T.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',55,55,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0034','H','',0,0,'','','Serum amylase','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',117,117,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0035','H','',0,0,'','','Serum Lipase','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',130,130,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0036','H','',0,0,'','','Serum Lactate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',72,72,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0037','H','',0,0,'','','Serum Magnesium','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0038','H','',0,0,'','','Serum Sodium','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0039','H','',0,0,'','','Serum Potassium','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0040','H','',0,0,'','','Serum Ammonia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0041','H','',0,0,'','','Anemia Profile','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',204,204,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0042','H','',0,0,'','','Serum Testosterone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0043','H','',0,0,'','','Imprint Smear From Endoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',216,216,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0044','H','',0,0,'','','Triglyceride','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',75,75,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0045','H','',0,0,'','','Glucose Tolerance Test (GTT)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',90,90,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0046','H','',0,0,'','','Triple Marker.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0047','H','',0,0,'','','C.P.K.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0048','H','',0,0,'','','Foetal Haemoglobin (HbF)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',85,85,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0049','H','',0,0,'','','Prothrombin Time (P.T.)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',110,110,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0050','H','',0,0,'','','L.D.H.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0051','H','',0,0,'','','Alkaline Phosphatase','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',60,60,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0052','H','',0,0,'','','Acid Phosphatase','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',78,78,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0053','H','',0,0,'','','CK MB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',190,190,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0054','H','',0,0,'','','CK MB Mass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0055','H','',0,0,'','','Troponin I','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0056','H','',0,0,'','','Troponin T','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0057','H','',0,0,'','','Glucose Phosphate Dehydrogenase (G, 6PD)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0058','H','',0,0,'','','Lithium.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',130,130,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0059','H','',0,0,'','','Dilantin (phenytoin).','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0060','H','',0,0,'','','Carbamazepine.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0061','H','',0,0,'','','Valproic acid.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0062','H','',0,0,'','','Feritin.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0063','H','',0,0,'','','Blood gas analysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',120,120,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0064','H','',0,0,'','','Blood gas analysis with electrolytes','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',414,414,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0065','H','',0,0,'','','Urine pregnancy test','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',65,65,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0066','H','',0,0,'','','Tests for Antiphospholipid antibodies syndrome.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',280,280,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0067','H','',0,0,'','','Hb A1 C','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',130,130,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0068','H','',0,0,'','','Hb Electrophoresis/ Hb HPLC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0069','H','',0,0,'','','Kidney Function Test.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',225,225,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0070','H','',0,0,'','','Liver Function Test.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',225,225,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LBCG','','LBCG0071','H','',0,0,'','','Lipid Profile.( Total\ncholesterol,LDL,HDL,treigylcerides)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LCCG','','LCCG0001','H','',0,0,'','','Karyotyping','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1539,1539,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LCCG','','LCCG0002','H','',0,0,'','','FISH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LHCG','','LHCG0001','H','',0,0,'','','Routine-H & E','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',90,90,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LHCG','','LHCG0002','H','',0,0,'','','special stain','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',65,65,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LHCG','','LHCG0003','H','',0,0,'','','Immunohistochemistry(IHC)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',750,750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LHCG','','LHCG0004','H','',0,0,'','','Frozen section','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',780,780,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LHCG','','LHCG0005','H','',0,0,'','','Paraffin section','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',343,343,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0001','H','',0,0,'','','Haemoglobin (Hb)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18,18,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0002','H','',0,0,'','','Total Leucocytic Count (TLC)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',31,31,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0003','H','',0,0,'','','Differential Leucocytic Count (DLC)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',31,31,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0004','H','',0,0,'','','E.S.R.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25,25,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0005','H','',0,0,'','','Total Red Cell count with\nMCV,MCH,MCHC,DRW','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',32,32,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0006','H','',0,0,'','','Complete Haemogram/CBC, Hb,RBC count and\nindices,  TLC, DLC, Platelet, ESR, Peripheral smear examination','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',135,135,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0007','H','',0,0,'','','Platelet count','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',48,48,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0008','H','',0,0,'','','Reticulocyte count','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',48,48,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0009','H','',0,0,'','','Absolute Eosinophil count','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',48,48,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0010','H','',0,0,'','','Packed Cell Volume (PCV)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13,13,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0011','H','',0,0,'','','Peripheral Smear Examination','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',43,43,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0012','H','',0,0,'','','Smear for Malaria parasite','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',41,41,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0013','H','',0,0,'','','Bleeding Time','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',35,35,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0014','H','',0,0,'','','Osmotic fragility Test','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0015','H','',0,0,'','','Bone Marrow Smear Examination','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',70,70,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0016','H','',0,0,'','','Bone Marrow Smear Examination with iron stain','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0017','H','',0,0,'','','Bone Marrow Smear Examination and\ncytochemistry','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0018','H','',0,0,'','','Activated partial ThromboplastinTime (APTT)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',102,102,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0019','H','',0,0,'','','Rapid test for malaria(card test)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',44,44,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0020','H','',0,0,'','','WBC cytochemistry for leukemia -Complete\npanel','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',110,110,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0021','H','',0,0,'','','Bleeding Disorder panel- PT, APTT, Thrombin\nTime Fibrinogen, D-Dimer/ FDP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0022','H','',0,0,'','','Factor Assays-Factor VIII','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',720,720,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0023','H','',0,0,'','','Factor Assays-Factor IX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',680,680,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0024','H','',0,0,'','','Platelet Function test','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0025','H','',0,0,'','','Tests for hypercoagulable states- Protein C,\nProtein S, Antithrombin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0026','H','',0,0,'','','Tests for lupus anticoagulant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0027','H','',0,0,'','','Tests for   Antiphospholipid antibody IgG, IgM (\nfor cardiolipin and B2 Glycoprotein 1)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0028','H','',0,0,'','','Thalassemia studies (Red Cell indices and Hb\nHPLC)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',560,560,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LMCG','','LMCG0029','H','',0,0,'','','Tests for Sickling / Hb HPLC)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',77,77,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LNCG','','LNCG0001','H','',0,0,'','','Urine routine- pH, Specific gravity, sugar, protein\nand microscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',35,35,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LNCG','','LNCG0002','H','',0,0,'','','Urine-Microalbumin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',70,70,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LNCG','','LNCG0003','H','',0,0,'','','Stool routine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',35,35,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LNCG','','LNCG0004','H','',0,0,'','','Stool occult blood','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',24,24,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LNCG','','LNCG0005','H','',0,0,'','','Post coital smear examination','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',30,30,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LNCG','','LNCG0006','H','',0,0,'','','Semen analysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',35,35,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LYCG','','LYCG0001','H','',0,0,'','','Pap Smear','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LYCG','','LYCG0002','H','',0,0,'','','Body fluid for Malignant cells','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'LYCG','','LYCG0003','H','',0,0,'','','FNAC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MACG','','MACG0001','H','',0,0,'','','X-ray Mammography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',315,315,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MACG','','MACG0002','H','',0,0,'','','MRI Mammography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2550,2550,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MCPM','','MCPM0001','H','',0,0,'','','MC001A - Right Heart Catheterization','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',215,'N','N','Y',215,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0002','H','',0,0,'','','MC001B - Left Heart Catheterization','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',216,'N','N','Y',216,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0003','H','',0,0,'','','MC002A - For Deep vein thrombosis (DVT)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38500,NULL,'',217,'N','N','Y',217,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0004','H','',0,0,'','','MC002B - For Mesenteric Thrombosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38500,NULL,'',218,'N','N','Y',218,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0005','H','',0,0,'','','MC002C - For Peripheral vessels','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38500,NULL,'',219,'N','N','Y',219,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0006','H','',0,0,'','','MC003A - Coarctation of Aorta','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48300,NULL,'',220,'N','N','Y',220,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0007','H','',0,0,'','','MC003B - Pulmonary Artery Stenosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48300,NULL,'',221,'N','N','Y',221,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0008','H','',0,0,'','','MC004A - Balloon Pulmonary Valvotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,29300,NULL,'',222,'N','N','Y',222,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0009','H','',0,0,'','','MC004B - Balloon Aortic Valvotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,29300,NULL,'',223,'N','N','Y',223,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0010','H','',0,0,'','','MC005A - Balloon Mitral Valvotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44700,NULL,'',224,'N','N','Y',224,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0011','H','',0,0,'','','MC006A - Balloon Atrial Septostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30500,NULL,'',225,'N','N','Y',225,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0012','H','',0,0,'','','MC007A - ASD Device Closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,46200,NULL,'',226,'N','N','Y',226,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0013','H','',0,0,'','','MC008A - VSD Device Closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,47400,NULL,'',227,'N','N','Y',227,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0014','H','',0,0,'','','MC009A - PDA Device Closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40800,NULL,'',228,'N','N','Y',228,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0015','H','',0,0,'','','MC010A - PDA stenting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50400,NULL,'',229,'N','N','Y',229,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0016','H','',0,0,'','','MC011A - PTCA, inclusive of diagnostic angiogram','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50800,NULL,'',230,'N','N','Y',230,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0017','H','',0,0,'','','MC012A - Electrophysiological Study','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34700,NULL,'',231,'N','N','Y',231,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0018','H','',0,0,'','','MC012B - Electrophysiological Study with Radio Frequency Ablation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34700,NULL,'',232,'N','N','Y',232,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0019','H','',0,0,'','','MC013A - Percutaneous Transluminal Septal Myocardial Ablation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,42500,NULL,'',233,'N','N','Y',233,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0020','H','',0,0,'','','MC014A - Temporary Pacemaker implantation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24000,NULL,'',234,'N','N','Y',234,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0021','H','',0,0,'','','MC015A - Permanent Pacemaker Implantation - Single Chamber','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30700,NULL,'',235,'N','N','Y',235,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0022','H','',0,0,'','','MC016A - Permanent Pacemaker Implantation - Double Chamber','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41300,NULL,'',236,'N','N','Y',236,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0023','H','',0,0,'','','MC017A - Peripheral Angioplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43200,NULL,'',237,'N','N','Y',237,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0024','H','',0,0,'','','MC018A - Bronchial artery Embolisation (for Haemoptysis)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41000,NULL,'',238,'N','N','Y',238,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0025','H','',0,0,'','','MC019A - Pericardiocentesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15200,NULL,'',239,'N','N','Y',239,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0026','H','',0,0,'','','MC020A - Systemic Thrombolysis (for MI)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22400,NULL,'',240,'N','N','Y',240,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0027','H','',0,0,'','','MC021A - Arteriovenous Malformation (AVM) in the Limbs','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50800,NULL,'',241,'N','N','Y',241,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0028','H','',0,0,'','','MC022A - First Follow-up-  2-4 weeks after discharge - AT NETWORK HOSPITAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',242,'N','N','Y',242,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0029','H','',0,0,'','','MC022B - Second Follow-up- After 3 months','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4400,NULL,'',243,'N','N','Y',243,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0030','H','',0,0,'','','MC022C - Third Follow-up- After 3 months','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2200,NULL,'',244,'N','N','Y',244,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0031','H','',0,0,'','','MC022D - fourth Follow-up- After 3 months','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2200,NULL,'',245,'N','N','Y',245,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0032','H','',0,0,'','','MC022E - FifthFollow-up - After 3 months','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2200,NULL,'',246,'N','N','Y',246,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0033','H','',0,0,'','','MC022GJA - Carotid angioplasty with stent (medicated)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',247,'N','N','Y',247,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0034','H','',0,0,'','','MC023GJA - Pseudoaneurysms of Abdomen','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,55000,NULL,'',248,'N','N','Y',248,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0035','H','',0,0,'','','MC023GJB - Coil clouser','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',249,'N','N','Y',249,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0036','H','',0,0,'','','MC024GJA - Arteriovenous Malformation (AVM) in the Limbs','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',250,'N','N','Y',250,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0037','H','',0,0,'','','MC025GJA - Percutaneous Transluminal Tricuspid Commissurotormy (PTTC)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',251,'N','N','Y',251,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0038','H','',0,0,'','','MC026GJA - Pulmonary artery stenting ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',252,'N','N','Y',252,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0039','H','',0,0,'','','MC027GJA - Right ventricular outflow tract (RVOT) stenting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',253,'N','N','Y',253,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0040','H','',0,0,'','','MC028GJA - 3D Maping + Ablation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27313,NULL,'',254,'N','N','Y',254,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0041','H','',0,0,'','','MC029GJA - Aortic Stenting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',255,'N','N','Y',255,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0042','H','',0,0,'','','MC030GJA - CAG (Coronary Angiography)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4025,NULL,'',256,'N','N','Y',256,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0043','H','',0,0,'','','MC030GJB - Check Angiography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3335,NULL,'',257,'N','N','Y',257,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0044','H','',0,0,'','','MC030GJC - Coronary Angiography + Peripheral Angiography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4025,NULL,'',258,'N','N','Y',258,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0045','H','',0,0,'','','MC030GJD - Coronary Angiography + Renal Angiography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4025,NULL,'',259,'N','N','Y',259,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0046','H','',0,0,'','','MC030GJE - Peripheral Angiography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4025,NULL,'',260,'N','N','Y',260,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0047','H','',0,0,'','','MC030GJF - Renal Angiography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4025,NULL,'',261,'N','N','Y',261,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0048','H','',0,0,'','','MC031GJA - IVC filter','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',262,'N','N','Y',262,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0049','H','',0,0,'','','MC032GJA - IVUS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4600,NULL,'',263,'N','N','Y',263,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0050','H','',0,0,'','','MC033GJA - PDA Coil (one) insertion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13800,NULL,'',264,'N','N','Y',264,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0051','H','',0,0,'','','MC034GJA - Post MI VSD closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,92000,NULL,'',265,'N','N','Y',265,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0052','H','',0,0,'','','MC035GJA - Rotablation + PTCA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34500,NULL,'',266,'N','N','Y',266,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0053','H','',0,0,'','','MC035GJB - Rotablation + PTCA + Stent','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,80500,NULL,'',267,'N','N','Y',267,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0054','H','',0,0,'','','MC036GJA - Bi Ventricular Pacing - CRT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,290000,NULL,'',268,'N','N','Y',268,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0055','H','',0,0,'','','MC037GJA - AICD - Automatic Implantable Cardiac Defibrillator (with device SingleChamber)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,310000,NULL,'',269,'N','N','Y',269,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0056','H','',0,0,'','','MC038GJA - AICD - Automatic Implantable Cardiac Defibrillator (with device DoubleChamber)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,412000,NULL,'',270,'N','N','Y',270,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0057','H','',0,0,'','','MC039GJA - Combo: AICD+Bi ventricular pacemaker (with device)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,597000,NULL,'',271,'N','N','Y',271,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0058','H','',0,0,'','','MG031A - Bacterial Endocarditis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',272,'N','N','Y',272,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0059','H','',0,0,'','','MG031B - Fungal Endocarditis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',273,'N','N','Y',273,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0060','H','',0,0,'','','MG036A - Atrial Fibrillation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',274,'N','N','Y',274,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0061','H','',0,0,'','','MG037A - Cardiac Tamponade','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',275,'N','N','Y',275,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0062','H','',0,0,'','','MG038A - Congestive heart failure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',276,'N','N','Y',276,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0063','H','',0,0,'','','MG075A - High end radiological diagnostic (CT, MRI, Imaging including nuclear imaging)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',277,'N','N','Y',277,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0064','H','',0,0,'','','MG076A - High end histopathology (Biopsies) and advanced serology investigations','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',278,'N','N','Y',278,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MCPM','','MCPM0065','H','',0,0,'','','MG098A - PET scan','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',279,'N','N','Y',279,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0001','H','',0,0,'','','ID001B - Test for Confirmation of COVID-19 Infection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',282,'N','N','Y',282,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0002','H','',0,0,'','','ID001B - Test for Confirmation of COVID-19 Infection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',283,'N','N','Y',283,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0003','H','',0,0,'','','ID003A - Treatment of COVID-19 Infection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',284,'N','N','Y',284,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0004','H','',0,0,'','','ID005A - Treatment of systemic fungal infections','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',285,'N','N','Y',285,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0005','H','',0,0,'','','MG001A - Acute febrile illness','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',286,'N','N','Y',286,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0006','H','',0,0,'','','MG002A - Severe sepsis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',287,'N','N','Y',287,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0007','H','',0,0,'','','MG002B - Septic shock','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',288,'N','N','Y',288,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0008','H','',0,0,'','','MG003A - Malaria','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',289,'N','N','Y',289,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0009','H','',0,0,'','','MG003B - Complicated malaria','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',290,'N','N','Y',290,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0010','H','',0,0,'','','MG004A - Dengue fever','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',291,'N','N','Y',291,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0011','H','',0,0,'','','MG004B - Dengue hemorrhagic fever','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',292,'N','N','Y',292,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0012','H','',0,0,'','','MG004C - Dengue shock syndrome','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',293,'N','N','Y',293,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0013','H','',0,0,'','','MG005A - Chikungunya fever','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',294,'N','N','Y',294,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0014','H','',0,0,'','','MG006A - Enteric fever','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',295,'N','N','Y',295,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0015','H','',0,0,'','','MG007A - HIV with complications','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',296,'N','N','Y',296,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0016','H','',0,0,'','','MG008A - Leptospirosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',297,'N','N','Y',297,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0017','H','',0,0,'','','MG009A - Acute gastroenteritis with moderate dehydration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',298,'N','N','Y',298,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0018','H','',0,0,'','','MG009B - Acute gastroenteritis with severe dehydration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',299,'N','N','Y',299,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0019','H','',0,0,'','','MG0100A - Chronic PD catheter Insertion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4100,NULL,'',300,'N','N','Y',300,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0020','H','',0,0,'','','MG0101A - Acute severe ulcerative colitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',301,'N','N','Y',301,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0021','H','',0,0,'','','MG0102A - Mesenteric Ischemia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',302,'N','N','Y',302,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0022','H','',0,0,'','','MG0103A - Intestinal obstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',303,'N','N','Y',303,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0023','H','',0,0,'','','MG0104A - Acute necrotizing severe pancreatitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',304,'N','N','Y',304,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0024','H','',0,0,'','','MG0105A - Pulmonary Thromboembolism - Add on','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',305,'N','N','Y',305,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0025','H','',0,0,'','','MG0106A - Diffuse alveolar Hemorrhage Associated with SLE/Vasculitis/GP Syndrome','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,136000,NULL,'',306,'N','N','Y',306,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0026','H','',0,0,'','','MG0107A - Severe/Refractory Vasculitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',307,'N','N','Y',307,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0027','H','',0,0,'','','MG0108A - Acute liver failure/Fulminant Hepatitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',308,'N','N','Y',308,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0028','H','',0,0,'','','MG0109A - Pulmonary thromboembolism','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',309,'N','N','Y',309,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0029','H','',0,0,'','','MG010A - Chronic diarrohea','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',310,'N','N','Y',310,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0030','H','',0,0,'','','MG010B - Persistent diarrohea','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',311,'N','N','Y',311,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0031','H','',0,0,'','','MG0110A - Acute liver failure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',312,'N','N','Y',312,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0032','H','',0,0,'','','MG0111A - Pleural Effusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',313,'N','N','Y',313,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0033','H','',0,0,'','','MG0112A - Hyberbilirubinemia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',314,'N','N','Y',314,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0034','H','',0,0,'','','MG0113A - Polytrauma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',315,'N','N','Y',315,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0035','H','',0,0,'','','MG0113B - Trauma- FacioMaxillary','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',316,'N','N','Y',316,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0036','H','',0,0,'','','MG0113C - Trauma Head injury','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',317,'N','N','Y',317,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0037','H','',0,0,'','','MG0113D - Trauma Rib fracture conservative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',318,'N','N','Y',318,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0038','H','',0,0,'','','MG0113E - Trauma Blunt injury conservative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',319,'N','N','Y',319,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0039','H','',0,0,'','','MG0113F - Trauma Contusion chest injury','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',320,'N','N','Y',320,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0040','H','',0,0,'','','MG0114A - Oesophageal Varices Banding','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',321,'N','N','Y',321,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0041','H','',0,0,'','','MG0115A - Inflammatory Myopathy/ Myaesthenic Crisis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',322,'N','N','Y',322,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0042','H','',0,0,'','','MG0116A - Guillain Barre syndrome (Plasmapheresis)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',323,'N','N','Y',323,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0043','H','',0,0,'','','MG0116B - Myasthenic crisis (Plasmapheresis)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',324,'N','N','Y',324,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0044','H','',0,0,'','','MG0117A - Moyamoya revascularization','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',325,'N','N','Y',325,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0045','H','',0,0,'','','MG0118A - Evaluation of drug resistant epilepsy-Phase-1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',326,'N','N','Y',326,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0046','H','',0,0,'','','MG0119A - Drug resistant epilepsy - per day','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',327,'N','N','Y',327,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0047','H','',0,0,'','','MG011A - Dysentery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',328,'N','N','Y',328,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0048','H','',0,0,'','','MG0120A - Comprehensive medical rehabilitation for spinal injury/ traumatic brain injury, CVA, Cerebral palsy with or without orthosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',329,'N','N','Y',329,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0049','H','',0,0,'','','MG0120B - Comprehensive medical rehabilitation for of complication secondary to specified disanility/multiple disability including procedures,  chemodenevaration with or with out orthosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35000,NULL,'',330,'N','N','Y',330,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0050','H','',0,0,'','','MG0120C - Single event multiple level surgery for spasticity management in cerebral palsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',331,'N','N','Y',331,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0051','H','',0,0,'','','MG0120D - Medical rehabilitation of muscular dystrophy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',332,'N','N','Y',332,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0052','H','',0,0,'','','MG0120E - Medical Rehabilitation intellectual dissability','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',333,'N','N','Y',333,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0053','H','',0,0,'','','MG0120F - Medical Rehabilitation  special learning  disability','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',334,'N','N','Y',334,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0054','H','',0,0,'','','MG0120G - Medical Rehabilitation multiple  disability','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',335,'N','N','Y',335,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0055','H','',0,0,'','','MG0121A - Admission for Packed cell blood transfusion (Daycare /Max. of One day) including 15 days Iron chelation Medicine(Deferasirox) on discharge and routine investigation -CBC ( Including hemoglob','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3200,NULL,'',336,'N','N','Y',336,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0056','H','',0,0,'','','MG0121B - Admission for Packed cell blood transfusion (Daycare /Max. of One day) inlcuding 15 days Iron chelation Medicine(Deferasirox) on discharge and routine investigation-CBC ( Including hemoglobi','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2600,NULL,'',337,'N','N','Y',337,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0057','H','',0,0,'','','MG0121C - Admission for Packed cell blood transfusion (Daycare /Max. of One day) inlcuding 15 days Iron chelation Medicine((Deferasirox) on discharge and routine investigation -CBC,(Including hemoglob','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',338,'N','N','Y',338,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0058','H','',0,0,'','','MG0121D - Admission for Packed cell blood transfusion (Daycare /Max. of One day) including 15 days Iron chelation Medicine(Deferiprone) on discharge and routine investigation -CBC ( Including hemoglob','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2900,NULL,'',339,'N','N','Y',339,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0059','H','',0,0,'','','MG0121E - Admission for Packed cell blood transfusion (Daycare /Max. of One day) inlcuding 15 days Iron chelation Medicine(Deferiprone) on discharge and routine investigation-CBC ( Including hemoglobi','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2300,NULL,'',340,'N','N','Y',340,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0060','H','',0,0,'','','MG0121F - Admission for Packed cell blood transfusion (Daycare /Max. of One day) including 15 days of Iron chelation Medicine(Deferiprone) on discharge and routine investigation -CBC (Including hemogl','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2700,NULL,'',341,'N','N','Y',341,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0061','H','',0,0,'','','MG012A - Acute viral hepatitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',342,'N','N','Y',342,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0062','H','',0,0,'','','MG013A - Chronic Hepatitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',343,'N','N','Y',343,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0063','H','',0,0,'','','MG014A - Liver abscess','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',344,'N','N','Y',344,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0064','H','',0,0,'','','MG015A - Visceral leishmaniasis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',345,'N','N','Y',345,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0065','H','',0,0,'','','MG016A - Pneumonia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',346,'N','N','Y',346,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0066','H','',0,0,'','','MG017A - Severe pneumonia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',347,'N','N','Y',347,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0067','H','',0,0,'','','MG018A - Empyema','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',348,'N','N','Y',348,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0068','H','',0,0,'','','MG019A - Lung abscess','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',349,'N','N','Y',349,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0069','H','',0,0,'','','MG020A - Pericardial tuberculosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',350,'N','N','Y',350,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0070','H','',0,0,'','','MG020B - Pleural tuberculosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',351,'N','N','Y',351,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0071','H','',0,0,'','','MG021A - Urinary Tract Infection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',352,'N','N','Y',352,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0072','H','',0,0,'','','MG022A - Viral Encephalitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',353,'N','N','Y',353,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0073','H','',0,0,'','','MG023A - Septic Arthritis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',354,'N','N','Y',354,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0074','H','',0,0,'','','MG024A - Skin and soft tissue infections','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',355,'N','N','Y',355,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0075','H','',0,0,'','','MG025A - Recurrent vomiting with dehydration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',356,'N','N','Y',356,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0076','H','',0,0,'','','MG026A - Pyrexia of unknown origin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',357,'N','N','Y',357,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0077','H','',0,0,'','','MG027A - Bronchiectasis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',358,'N','N','Y',358,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0078','H','',0,0,'','','MG028A - Acute bronchitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',359,'N','N','Y',359,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0079','H','',0,0,'','','MG029A - Acute excaberation of COPD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',360,'N','N','Y',360,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0080','H','',0,0,'','','MG030A - Acute excaberation of Interstitial Lung Disease','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',361,'N','N','Y',361,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0081','H','',0,0,'','','MG031A - Bacterial Endocarditis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',362,'N','N','Y',362,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0082','H','',0,0,'','','MG031B - Fungal Endocarditis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',363,'N','N','Y',363,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0083','H','',0,0,'','','MG032A - Vasculitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',364,'N','N','Y',364,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0084','H','',0,0,'','','MG033A - Acute pancreatitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',365,'N','N','Y',365,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0085','H','',0,0,'','','MG033B - Chronic pancreatitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',366,'N','N','Y',366,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0086','H','',0,0,'','','MG034A - Ascites','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',367,'N','N','Y',367,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0087','H','',0,0,'','','MG035A - Acute transverse myelitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',368,'N','N','Y',368,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0088','H','',0,0,'','','MG036A - Atrial Fibrillation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',369,'N','N','Y',369,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0089','H','',0,0,'','','MG037A - Cardiac Tamponade','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',370,'N','N','Y',370,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0090','H','',0,0,'','','MG038A - Congestive heart failure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',371,'N','N','Y',371,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0091','H','',0,0,'','','MG039A - Acute asthmatic attack','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',372,'N','N','Y',372,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0092','H','',0,0,'','','MG039B - Status asthmaticus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',373,'N','N','Y',373,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0093','H','',0,0,'','','MG040A - Type 1 respiratory failure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',374,'N','N','Y',374,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0094','H','',0,0,'','','MG040B - Type 2 respiratory failure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',375,'N','N','Y',375,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0095','H','',0,0,'','','MG040C - Due to any cause (pneumonia, asthma, COPD, ARDS, foreign body, poisoning, head injury etc.)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',376,'N','N','Y',376,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0096','H','',0,0,'','','MG041A - Upper GI bleeding (conservative)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',377,'N','N','Y',377,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0097','H','',0,0,'','','MG041B - Upper GI bleeding (endoscopic)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',378,'N','N','Y',378,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0098','H','',0,0,'','','MG042A - Lower GI hemorrhage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',379,'N','N','Y',379,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0099','H','',0,0,'','','MG043A - Addison?s disease','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',380,'N','N','Y',380,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0100','H','',0,0,'','','MG044A - Renal colic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',381,'N','N','Y',381,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0101','H','',0,0,'','','MG045A - AKI / Renal failure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',382,'N','N','Y',382,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0102','H','',0,0,'','','MG046A - Seizures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',383,'N','N','Y',383,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0103','H','',0,0,'','','MG047A - Status epilepticus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',384,'N','N','Y',384,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0104','H','',0,0,'','','MG048A - Cerebrovascular accident','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',385,'N','N','Y',385,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0105','H','',0,0,'','','MG049C - Acute ischemic stroke','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',386,'N','N','Y',386,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0106','H','',0,0,'','','MG049D - Acute hemorrhagic stroke','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',387,'N','N','Y',387,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0107','H','',0,0,'','','MG050A - Immune mediated CNS disorders','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',388,'N','N','Y',388,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0108','H','',0,0,'','','MG051A - Hydrocephalus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',389,'N','N','Y',389,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0109','H','',0,0,'','','MG052A - Myxedema coma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',390,'N','N','Y',390,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0110','H','',0,0,'','','MG053A - Thyrotoxic crisis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',391,'N','N','Y',391,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0111','H','',0,0,'','','MG054A - Gout','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',392,'N','N','Y',392,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0112','H','',0,0,'','','MG055A - Pneumothorax','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',393,'N','N','Y',393,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0113','H','',0,0,'','','MG056A - Neuromuscular Disorders','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',394,'N','N','Y',394,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0114','H','',0,0,'','','MG057A - Hypoglycemia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',395,'N','N','Y',395,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0115','H','',0,0,'','','MG058A - Diabetic Foot -- debridement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',396,'N','N','Y',396,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0116','H','',0,0,'','','MG059A - Diabetic ketoacidosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',397,'N','N','Y',397,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0117','H','',0,0,'','','MG060A - Hypercalcemia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',398,'N','N','Y',398,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0118','H','',0,0,'','','MG060B - Hypocalcemia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',399,'N','N','Y',399,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0119','H','',0,0,'','','MG060C - Hyponatremia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',400,'N','N','Y',400,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0120','H','',0,0,'','','MG060D - Hypernatremia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',401,'N','N','Y',401,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0121','H','',0,0,'','','MG060E - Hyperkalaemia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',402,'N','N','Y',402,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0122','H','',0,0,'','','MG060F - Hypokalaemia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',403,'N','N','Y',403,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0123','H','',0,0,'','','MG061A - Hyperosmolar Non-Ketotic coma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',404,'N','N','Y',404,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0124','H','',0,0,'','','MG062A - Accelerated hypertension','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',405,'N','N','Y',405,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0125','H','',0,0,'','','MG063A - Hypertensive emergencies','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',406,'N','N','Y',406,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0126','H','',0,0,'','','MG064A - Severe anemia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',407,'N','N','Y',407,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0127','H','',0,0,'','','MG065A - Sickle cell Anemia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',408,'N','N','Y',408,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0128','H','',0,0,'','','MG066A - Anaphylaxis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',409,'N','N','Y',409,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0129','H','',0,0,'','','MG067A - Heat stroke','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',410,'N','N','Y',410,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0130','H','',0,0,'','','MG068A - Systematic lupus erythematosus (SLE)/ Diffuse alveolar hemmorhage associated with SLE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',411,'N','N','Y',411,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0131','H','',0,0,'','','MG069A - Guillain Barre syndrome (IVIG)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',412,'N','N','Y',412,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0132','H','',0,0,'','','MG070A - Snake bite','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',413,'N','N','Y',413,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0133','H','',0,0,'','','MG071A - Acute organophosphorus poisoning','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',414,'N','N','Y',414,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0134','H','',0,0,'','','MG071B - Other poisonings','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',415,'N','N','Y',415,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0135','H','',0,0,'','','MG072B - Peritoneal Dialysis(catheter review )','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,700,NULL,'',416,'N','N','Y',416,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0136','H','',0,0,'','','MG072C - Acute Haemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2200,NULL,'',417,'N','N','Y',417,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0137','H','',0,0,'','','MG072D - Chronic Haemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22000,NULL,'',418,'N','N','Y',418,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0138','H','',0,0,'','','MG073A - Plasmapheresis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',419,'N','N','Y',419,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0139','H','',0,0,'','','MG074A - Whole Blood transfusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',420,'N','N','Y',420,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0140','H','',0,0,'','','MG074B - Blood component including platelet transfusion (RDP, PC, SDP)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',421,'N','N','Y',421,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0141','H','',0,0,'','','MG075A - High end radiological diagnostic (CT, MRI, Imaging including nuclear imaging)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',422,'N','N','Y',422,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0142','H','',0,0,'','','MG076A - High end histopathology (Biopsies) and advanced serology investigations','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',423,'N','N','Y',423,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0143','H','',0,0,'','','MG077A - Continuous renal replacement therapy in AKI (initiation cost for disposable)per day for maximum of 5 in one admission','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33000,NULL,'',424,'N','N','Y',424,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0144','H','',0,0,'','','MG078A - Alcoholic Liver Disease','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',425,'N','N','Y',425,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0145','H','',0,0,'','','MG079A - Peripheral Arterial Thrombosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',426,'N','N','Y',426,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0146','H','',0,0,'','','MG081A - Arrhythmia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',427,'N','N','Y',427,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0147','H','',0,0,'','','MG081B - CAD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',428,'N','N','Y',428,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0148','H','',0,0,'','','MG082A - Bone marrow aspiration of biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1200,NULL,'',429,'N','N','Y',429,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0149','H','',0,0,'','','MG082GJA - Conservative management (Ischemic stroke)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',430,'N','N','Y',430,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0150','H','',0,0,'','','MG083A - Lumbar puncture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,200,NULL,'',431,'N','N','Y',431,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0151','H','',0,0,'','','MG083GJA - By Intravenous immunoglobulin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,200000,NULL,'',432,'N','N','Y',432,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0152','H','',0,0,'','','MG083GJB - By plasmapheresis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,109627,NULL,'',433,'N','N','Y',433,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0153','H','',0,0,'','','MG084A - Joint Aspiration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,200,NULL,'',434,'N','N','Y',434,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0154','H','',0,0,'','','MG084GJA - Intraparenchymal / Subarachnoid Hemmorrhage (Conservative management)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',435,'N','N','Y',435,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0155','H','',0,0,'','','MG085A - DVT Pneumatic Compression Stockings (Add on package in ICU)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,900,NULL,'',436,'N','N','Y',436,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0156','H','',0,0,'','','MG085GJA - Meninfoencephalitis, or / and EVD / VP shunt (Consevative management)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,110000,NULL,'',437,'N','N','Y',437,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0157','H','',0,0,'','','MG086A - Acute Ischemic Stoke','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',438,'N','N','Y',438,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0158','H','',0,0,'','','MG086B - Acute ischemic stroke- intravenous thrombolysis -Recombinant tissue plasminogen activator','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',439,'N','N','Y',439,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0159','H','',0,0,'','','MG086C - Acute ischemic stroke- Intravenous thrombolysis-Tenecteplase','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',440,'N','N','Y',440,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0160','H','',0,0,'','','MG086GJA - By Intravenous immunoglobulin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,200000,NULL,'',441,'N','N','Y',441,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0161','H','',0,0,'','','MG086GJB - By plasmapheresis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,110000,NULL,'',442,'N','N','Y',442,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0162','H','',0,0,'','','MG087A - Venous sinus thrombosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',443,'N','N','Y',443,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0163','H','',0,0,'','','MG087GJA - Poisonings with unstable vitals (admission type: Routine ward )','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',444,'N','N','Y',444,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0164','H','',0,0,'','','MG088A - Pyogenic Meningitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',445,'N','N','Y',445,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0165','H','',0,0,'','','MG088GJA - Permanent tunnelled catheter placement as substitute for AV fistula in long term dialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',446,'N','N','Y',446,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0166','H','',0,0,'','','MG088GJB - Thrombolysis with Actilyse for Ischemic stroke','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,120000,NULL,'',447,'N','N','Y',447,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0167','H','',0,0,'','','MG089A - Fungal Meningitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',448,'N','N','Y',448,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0168','H','',0,0,'','','MG089GJA - Endovascular intervention for salvaging hemodialysis AV fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',449,'N','N','Y',449,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0169','H','',0,0,'','','MG090A - Autoimmune encephalitis - Plasmapheresis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',450,'N','N','Y',450,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0170','H','',0,0,'','','MG090B - Autoimmune encephalitis - Immunoglubulin (IVIG)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',451,'N','N','Y',451,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0171','H','',0,0,'','','MG090C - Acute transverse myelitis/ Acute demyelinating encephalitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',452,'N','N','Y',452,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0172','H','',0,0,'','','MG090GJA - Radiocephalic AV fistula for Hemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6440,NULL,'',453,'N','N','Y',453,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0173','H','',0,0,'','','MG091A - Acute hemorrhagic stroke- Hematoma evacuation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',454,'N','N','Y',454,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0174','H','',0,0,'','','MG091B - Acute hemorrhagic stroke- Extra ventricular drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',455,'N','N','Y',455,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0175','H','',0,0,'','','MG091GJA - Brachiocephalic AV fistula for Hemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8280,NULL,'',456,'N','N','Y',456,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0176','H','',0,0,'','','MG092B - Myasthenic crisis - Immunoglobulins (IVIG)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',457,'N','N','Y',457,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0177','H','',0,0,'','','MG093A - Myasthenic crisis - Plasmapheresis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',458,'N','N','Y',458,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0178','H','',0,0,'','','MG094A - Tuberculous meningitis (Hydrocephalus ? VP SHUNT/ EVD/Omaya)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',459,'N','N','Y',459,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0179','H','',0,0,'','','MG095A - Cholangitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',460,'N','N','Y',460,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0180','H','',0,0,'','','MG096A - Intercostal drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',461,'N','N','Y',461,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0181','H','',0,0,'','','MG096B - Bronchoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',462,'N','N','Y',462,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0182','H','',0,0,'','','MG097A - Endobronchial Ultrasound guided fine needle biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15700,NULL,'',463,'N','N','Y',463,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0183','H','',0,0,'','','MG098A - PET scan','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',464,'N','N','Y',464,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0184','H','',0,0,'','','MG099A - Platelet pheresis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11000,NULL,'',465,'N','N','Y',465,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0185','H','',0,0,'','','MP001D - Acute non-febrile seizures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',466,'N','N','Y',466,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0186','H','',0,0,'','','MP003A - Acute Febrile encephalopathy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',467,'N','N','Y',467,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0187','H','',0,0,'','','MP003B - Acute Disseminated Encephalomyelitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',468,'N','N','Y',468,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0188','H','',0,0,'','','MP004A - hypertensive/metabolic/febrile/hepatic encephalopathy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',469,'N','N','Y',469,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0189','H','',0,0,'','','MP005A - Acute meningo encephalitis pyogenic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',470,'N','N','Y',470,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0190','H','',0,0,'','','MP005B - Aseptic meningitis tubercular,','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',471,'N','N','Y',471,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0191','H','',0,0,'','','MP005D - Hypertensive encehalopathy viral,','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',472,'N','N','Y',472,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0192','H','',0,0,'','','MP005G - Brain abscess/Intracranial abscess/ Aseptic meningitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',473,'N','N','Y',473,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0193','H','',0,0,'','','MP006B - Partially treated pyogenic meningitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',474,'N','N','Y',474,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0194','H','',0,0,'','','MP006C - Neuro tuberculosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',475,'N','N','Y',475,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0195','H','',0,0,'','','MP006D - Complicated bacterial meningitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',476,'N','N','Y',476,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0196','H','',0,0,'','','MP006E - Acute meningitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',477,'N','N','Y',477,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0197','H','',0,0,'','','MP008A - Raised ICP due to neuro surgical procedures/due to trauma/malignancies/ meningo-encephalitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',478,'N','N','Y',478,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0198','H','',0,0,'','','MP011A - neurocysticercosis, brain tumours','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',479,'N','N','Y',479,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0199','H','',0,0,'','','MP013A - Acute neuroregression / Acute worsening in neuro metabolic and neurodegenerative conditions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',480,'N','N','Y',480,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0200','H','',0,0,'','','MP014A - Acute demyelinating myelopathy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',481,'N','N','Y',481,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0201','H','',0,0,'','','MP015A - Juvenile myasthenia- requiring admission for work-up or in-patient care','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',482,'N','N','Y',482,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0202','H','',0,0,'','','MP018A - Acute asthma/Status asthmaticus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',483,'N','N','Y',483,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0203','H','',0,0,'','','MP020B - Steven Johnson syndrome','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',484,'N','N','Y',484,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0204','H','',0,0,'','','MP021A - Acute abdomen pain','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',485,'N','N','Y',485,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0205','H','',0,0,'','','MP023A - Unexplained hepatosplenomegaly-requiring admission for Work Up and/or in-patient management','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',486,'N','N','Y',486,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0206','H','',0,0,'','','MP024A - Neonatal/infantile cholestasis / Choledochal cysts','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',487,'N','N','Y',487,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0207','H','',0,0,'','','MP026A - Nephrotic syndrome with peritonitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',488,'N','N','Y',488,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0208','H','',0,0,'','','MP026B - Steroid dependent or resistent','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',489,'N','N','Y',489,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0209','H','',0,0,'','','MP027A - Haemolytic uremic syndrome','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',490,'N','N','Y',490,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0210','H','',0,0,'','','MP039A - Acute rheumatic fever','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',491,'N','N','Y',491,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0211','H','',0,0,'','','MP039B - Rheumatic valvular heart disease','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',492,'N','N','Y',492,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0212','H','',0,0,'','','MP040A - Cyanotic spells without CHD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',493,'N','N','Y',493,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0213','H','',0,0,'','','MP043A - Kawasaki Disease','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',494,'N','N','Y',494,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0214','H','',0,0,'','','MP047A - Acute laryngotracheobronchitis/Acute epiglottitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',495,'N','N','Y',495,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0215','H','',0,0,'','','MP050A - Uncomplicated steroid sensitive','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',496,'N','N','Y',496,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0216','H','',0,0,'','','SE043A - Vision Refraction-IOP & Fundus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,800,NULL,'',497,'N','N','Y',497,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0217','H','',0,0,'','','SE043B - Vision Refraction-IOP & Fundus OCT & Visual Fields','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1500,NULL,'',498,'N','N','Y',498,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0218','H','',0,0,'','','SE044A - Vision refraction,fundus photo and OCT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1000,NULL,'',499,'N','N','Y',499,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0219','H','',0,0,'','','ID001A - Screening Test for COVID-19 Infection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1500,NULL,'',280,'N','N','Y',280,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MGPM','','MGPM0220','H','',0,0,'','','ID001A - Screening Test for COVID-19 Infection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1500,NULL,'',281,'N','N','Y',281,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0001','H','',0,0,'','','MM001A - Intellectual Disability (ID)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',500,'N','N','Y',500,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0002','H','',0,0,'','','MM002A - Mental disorders - Organic, including symptomatic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',501,'N','N','Y',501,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0003','H','',0,0,'','','MM003A - Schizophrenia, schizotypal and delusional disorders','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',502,'N','N','Y',502,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0004','H','',0,0,'','','MM004A - Neurotic, stress-related and somatoform disorders','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',503,'N','N','Y',503,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0005','H','',0,0,'','','MM005A - Mood (affective) disorders','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',504,'N','N','Y',504,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0006','H','',0,0,'','','MM006A - Behavioural syndromes associated with physiological disturbances and physical factors','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',505,'N','N','Y',505,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0007','H','',0,0,'','','MM007A - Mental and Behavioural disorders due to psychoactive substance use','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',506,'N','N','Y',506,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0008','H','',0,0,'','','MM008A - Package (Cognitive Tests, Complete Haemogram, Liver Function Test, Renal Function Test, Serum Electrolytes, Electro Cardiogram (ECG), CT / MRI Brain, Electroencephalogram, Thyroid Function Te','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6600,NULL,'',507,'N','N','Y',507,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0009','H','',0,0,'','','MM009A - Electro Convulsive Therapy (ECT) - per session','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3300,NULL,'',508,'N','N','Y',508,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0010','H','',0,0,'','','MM010A - Autism Spectrum Disorder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',509,'N','N','Y',509,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0011','H','',0,0,'','','MM010B - Mixed Developmental Disorder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',510,'N','N','Y',510,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0012','H','',0,0,'','','MM010C - Tourette Syndrome / Chronic Tic Disorder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',511,'N','N','Y',511,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0013','H','',0,0,'','','MM010D - Attention Deficit Hyperactivity Disorder (ADHD)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',512,'N','N','Y',512,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0014','H','',0,0,'','','MM010E - Specific Developmental Disorders','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',513,'N','N','Y',513,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0015','H','',0,0,'','','MM011A - Oppositional Defiant Disorder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',514,'N','N','Y',514,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0016','H','',0,0,'','','MM011B - Conduct Disorder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',515,'N','N','Y',515,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0017','H','',0,0,'','','MM011C - Mixed Disorder of Conduct and Emotions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',516,'N','N','Y',516,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0018','H','',0,0,'','','MM011D - Anxiety and Depressive Disorders','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',517,'N','N','Y',517,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0019','H','',0,0,'','','MM011E - Other Internalizing and Externalizing Disorders of Childhood and Adolescence','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',518,'N','N','Y',518,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0020','H','',0,0,'','','MM012A - Psychological, Behavioural and Developmental and Educational Interventions (Typically Includes Child Counselling / Psychotherapy, Family Counselling / Psychotherapy / Training Such As Parent ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3300,NULL,'',519,'N','N','Y',519,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0021','H','',0,0,'','','MM013A - Common Medications Used in Management of Child & Adult Psycholoigical DisordersiIncluding Anti-ADHD Medication','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2200,NULL,'',520,'N','N','Y',520,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MMPM','','MMPM0022','H','',0,0,'','','MM014A - Psychological Assessments (Includes IQ Testing, Specific Learning Disability Assessments, Assessments For Autism Spectrum Disorder, Developmental  Assessments, Projective Tests and Other Test','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2800,NULL,'',521,'N','N','Y',521,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MNPM','','MNPM0001','H','',0,0,'','','MN001A - Neonates 1800-2500g  OR Neonates of any weight requiring closer monitoring or short-term care on mothers','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1000,NULL,'',522,'N','N','Y',522,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MNPM','','MNPM0002','H','',0,0,'','','MN002A - Neonates  between 1500-1799g  OR Neonates of any weight with mild illness','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',523,'N','N','Y',523,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MNPM','','MNPM0003','H','',0,0,'','','MN003A - Neonates of  any birthweight  with moderate illness','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',524,'N','N','Y',524,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MNPM','','MNPM0004','H','',0,0,'','','MN004A - Neonates  between 1200-1499 g  OR Neonates of any weight with at least one of the following conditions:','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',525,'N','N','Y',525,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MNPM','','MNPM0005','H','',0,0,'','','MN005A - Neonates  <1200 g','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',526,'N','N','Y',526,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MNPM','','MNPM0006','H','',0,0,'','','MN006A - Neonates  in Special Neonatal Care, Special Neonatal Care-Plus, Intensive Neonatal Care or Critical Neonatal Care  packages  (MN002,MN003,MN004, MN005) who have not fully recovered and contin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',527,'N','N','Y',527,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MNPM','','MNPM0007','H','',0,0,'','','MN007A - Includes but not limited to minimum six follow-up visits at 40 weeks PMA,  and corrected ages of 3,6,9, 12  and 18 months for  Assessment and Management of growth and development. Neurosonogr','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1000,NULL,'',528,'N','N','Y',528,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MNPM','','MNPM0008','H','',0,0,'','','MN008A - Laser Therapy for Retinopathy of Prematurity(Irrespective of no. of eyes affected)per session','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1900,NULL,'',529,'N','N','Y',529,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MNPM','','MNPM0009','H','',0,0,'','','MN009A - Advanced Surgery for Retinopathy of Prematurity','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',530,'N','N','Y',530,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MNPM','','MNPM0010','H','',0,0,'','','MN010A - Ventriculoperitoneal Shunt Surgery (VP) or Omaya Reservoir or External Drainage forHydrocephalus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6300,NULL,'',531,'N','N','Y',531,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MNPM','','MNPM0011','H','',0,0,'','','MN011A - Neonates > 2.5 kg nursed with mother : Includes clinical monitoring, breastfeeding support, birth vaccination, thyroid screening, universal hearing screening and pre-discharge counselling','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',532,'N','N','Y',532,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MNPM','','MNPM0012','H','',0,0,'','','MN012A - ROP screening(per screening for both eyes(documentation of findingsto be  done in a structured format)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,550,NULL,'',533,'N','N','Y',533,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MNPM','','MNPM0013','H','',0,0,'','','MN013A - Brainstem Evoked Response Audiometry(BERA) per Bera','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1650,NULL,'',534,'N','N','Y',534,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0001','H','',0,0,'','','MO001A - Cyclophosphamide + EpirubcinCyclophosphamide - 600 mg /m2 D1Epirubicin -90mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8100,NULL,'',535,'N','N','Y',535,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0002','H','',0,0,'','','MO001B - Weekly Paclitaxel for Adjuvant TherapyPaclitaxel 80mg/m2 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6600,NULL,'',536,'N','N','Y',536,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0003','H','',0,0,'','','MO001C - Weekly Paclitaxel in metastatic settingPaclitaxel 80mg/m2 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6600,NULL,'',537,'N','N','Y',537,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0004','H','',0,0,'','','MO001D - Cyclophosphamide + Methotrexate + 5 - FUCyclophosphamide - 100mg/m2 orally D1-D14 Methotrexate 40mg/m2 IV D1D8 5FU 600 mg/m2 D1, D8 every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3900,NULL,'',538,'N','N','Y',538,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0005','H','',0,0,'','','MO001E - Docetaxel + CyclophosphamideDocetaxel 75mg/m2 D1Cyclophosphamide 600 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10200,NULL,'',539,'N','N','Y',539,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0006','H','',0,0,'','','MO001F - TrastuzumabTrastuzumab 8 mg/Kg in Cycle 1 D1Trastuzumab 6 mg/kg D1 from C2 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23400,NULL,'',540,'N','N','Y',540,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0007','H','',0,0,'','','MO001G - TamoxifenTamoxifem 20 mg orally daily','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1400,NULL,'',541,'N','N','Y',541,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0008','H','',0,0,'','','MO001H - LetrozoleLetrozole 2.5 mg orally daily','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4300,NULL,'',542,'N','N','Y',542,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0009','H','',0,0,'','','MO001I - Carboplatin + PaclitaxelPaclitaxel 175mg/m2 D1Carboplatin AUC 5-6 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16400,NULL,'',543,'N','N','Y',543,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0010','H','',0,0,'','','MO001J - CapecitabineCapecitabine - 1000mg/m2 orally twice daily D1-D14 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8200,NULL,'',544,'N','N','Y',544,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0011','H','',0,0,'','','MO001K - Carboplatin + GemcitabineGemcitabine - 1000mg/m2 D1 D8Carboplatin AUC 2 D1 D8Gemcitabine - 1000mg/m2 D1 D8 Carboplatin AUC 5-6 D1 only','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15300,NULL,'',545,'N','N','Y',545,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0012','H','',0,0,'','','MO001L - Cyclophosphamide + AdriamycinCyclophosphamide - 600 mg /m2 D1Adriamycin - 60mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',546,'N','N','Y',546,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0013','H','',0,0,'','','MO001M - FulvestrantFulvestrant 500 mg D1 D15 D28 then every 28 days.per dose13200  (39600 in cycle1 ) then 13200 per month','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13200,NULL,'',547,'N','N','Y',547,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0014','H','',0,0,'','','MO001N - PaclitaxelPaclitaxel 175 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13000,NULL,'',548,'N','N','Y',548,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0015','H','',0,0,'','','MO001O - ExemestaneExemestane 25 mg orally daily (q 3 monthsly)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4300,NULL,'',549,'N','N','Y',549,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0016','H','',0,0,'','','MO001P - LapatinibLapatinib 500 mg BD  orally , daily per month','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16600,NULL,'',550,'N','N','Y',550,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0017','H','',0,0,'','','MO002A - Zoledronic AcidZoledronic acid 4 mg IV Monthly','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3900,NULL,'',551,'N','N','Y',551,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0018','H','',0,0,'','','MO003A - Cisplatin + IrinotecanCisplatin 60mg/m2 D1Irinotecan 60 mg/m2 D1 D8 D15 every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14400,NULL,'',552,'N','N','Y',552,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0019','H','',0,0,'','','MO003B - Lipodox + CarboplatinLipopdox 30 mg/m2 D1Carboplatin AUC 5-6 D1 every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19000,NULL,'',553,'N','N','Y',553,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0020','H','',0,0,'','','MO003C - Etoposide 50 mg/m2 OD D1-D21 every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3800,NULL,'',554,'N','N','Y',554,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0021','H','',0,0,'','','MO003D - IrinotecanIrinotecan 60 -90 mg/m2 D1 D8 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12100,NULL,'',555,'N','N','Y',555,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0022','H','',0,0,'','','MO003E - LipodoxLipodox 40 mg/m2 IV every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19800,NULL,'',556,'N','N','Y',556,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0023','H','',0,0,'','','MO003F - Carboplatin + GemcitabineGemcitabine - 1000mg/m2 D1 D8 Carboplatin AUC 2 D1 D8Gemcitabine - 1000mg/m2 D1 D8Carboplatin AUC 5-6 D1 only','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15300,NULL,'',557,'N','N','Y',557,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0024','H','',0,0,'','','MO003G - Carboplatin + PaclitaxelPaclitaxel 175mg/m2 D1Carboplatin AUC 5-6 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16400,NULL,'',558,'N','N','Y',558,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0025','H','',0,0,'','','MO003GJH - Liposomal Doxorubicin  and Gemcitabine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13800,NULL,'',559,'N','N','Y',559,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0026','H','',0,0,'','','MO003H - Cyclophosphamide 50 mg/m2 OD D1-D21 every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3100,NULL,'',560,'N','N','Y',560,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0027','H','',0,0,'','','MO003I - TamoxifenTamoxifem 20 mg orally daily (3 months)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1400,NULL,'',561,'N','N','Y',561,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0028','H','',0,0,'','','MO003J - LetrozoleLetrozole 2.5 mg orally daily (3 months)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4300,NULL,'',562,'N','N','Y',562,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0029','H','',0,0,'','','MO003K - Single agent Carboplatin Carboplatin AUC 5-6 D1 every 21 days ( maximum -6 cycle)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7700,NULL,'',563,'N','N','Y',563,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0030','H','',0,0,'','','MO003L - CisplatinCisplatin 40 mg/m2 every week (maximum- 6 cycles)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4600,NULL,'',564,'N','N','Y',564,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0031','H','',0,0,'','','MO004A - Carboplatin (AUC 7)Carboplatin AUC 7 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8100,NULL,'',565,'N','N','Y',565,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0032','H','',0,0,'','','MO004B - Bleomycin + Etoposide + CisplatinBleomycin 30 units D1 D8 D15Cisplatin 20 mg/m2 IV D1-D5Etoposide 100mg/m2 D1-D5 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13600,NULL,'',566,'N','N','Y',566,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0033','H','',0,0,'','','MO004C - Etoposide + CisplatinCisplatin 20 mg/m2 IV D1-D5Etoposide 100mg/m2 D1-D5 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12000,NULL,'',567,'N','N','Y',567,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0034','H','',0,0,'','','MO004D - Gemcitabine + OxaliplatinGemcitabine 1000mg/m2 D1 D8Oxaiplatin 130mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19300,NULL,'',568,'N','N','Y',568,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0035','H','',0,0,'','','MO004E - Gemcitabine + PaclitaxelGemcitabine 1000mg/m2 D1 D8 D15Paclitaxel 100 mg/m2 D1 D8 D15 every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19300,NULL,'',569,'N','N','Y',569,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0036','H','',0,0,'','','MO004F - Paclitaxel + Ifosfamide + CisplatinPaclitaxel 240 mg/m2 D1Ifosfamide 1500mg/m2 D2-D5Mesna 300 mg/m2 0h 4h 8h D2-D5Cisplatin 25mg/m2 D2-D5 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26900,NULL,'',570,'N','N','Y',570,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0037','H','',0,0,'','','MO004G - Vinblastin + Ifosfamide + CisplatinVinblastine 0.11 mg/kg IV D1-D2Mesna 240mg/m2 0h 4h 8h D1-D5Ifosfamide 1200mg/m2 D1-D5Cisplatin 20 mg/m2 D1-D5 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',571,'N','N','Y',571,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0038','H','',0,0,'','','MO005A - Etoposide + Methotrexate + Dactinomycin- Cyclophosphamide + VincristineEtoposide 100mg/m2 IV D1 D2Dactinomycin 0.5 mg IV push D1 D2Methotrexate 300 mg /m2 D1Leucovorin 15 mg PO every 12 hrs f','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13300,NULL,'',572,'N','N','Y',572,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0039','H','',0,0,'','','MO005B - Etoposide + Methotrexate + Dactinomycin + CisplatinEtoposide 100mg/m2 IV D1 D2 D8Dactinomycin 0.5 mg IV push D1 D2 Methotrexate 300 mg /m2 D1Leucovorin 15 mg PO every 12 hrs for 4 doses Cispl','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14100,NULL,'',573,'N','N','Y',573,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0040','H','',0,0,'','','MO005C - MethotrexateMethotrexate 1/mg/kg IM every other day x 4 days D1 3 D5 D7Alternating every other day withLeucovorin 15 mg PO repeat every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1400,NULL,'',574,'N','N','Y',574,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0041','H','',0,0,'','','MO005D - DactinomycinInj Dactinomycin  0.5 mg D1- D5 every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7700,NULL,'',575,'N','N','Y',575,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0042','H','',0,0,'','','MO006A - Carboplatin + PaclitaxelPaclitaxel 175mg/m2 D1Carboplatin AUC 5-6 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16400,NULL,'',576,'N','N','Y',576,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0043','H','',0,0,'','','MO006B - CisplatinCisplatin 40 mg/m2 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2600,NULL,'',577,'N','N','Y',577,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0044','H','',0,0,'','','MO007A - Carboplatin + PaclitaxelPaclitaxel 175mg/m2 D1Carboplatin AUC 5 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16400,NULL,'',578,'N','N','Y',578,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0045','H','',0,0,'','','MO007B - Cisplatin + DoxorubicinDoxorubicin 60 mg/m2 D1Cisplatin 50mg/m2 every 3 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4900,NULL,'',579,'N','N','Y',579,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0046','H','',0,0,'','','MO007C - Lipodox + CarboplatinLipopdox 30 mg/m2 D1Carboplatin AUC 5 D1 every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19000,NULL,'',580,'N','N','Y',580,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0047','H','',0,0,'','','MO007D - Carboplatin + GemcitabineGemcitabine - 1000mg/m2 D1 D8Carboplatin AUC 2 D1 D8Gemcitabine - 1000mg/m2 D1 D8 Carboplatin AUC 5-6 D1 only every 3 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15300,NULL,'',581,'N','N','Y',581,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0048','H','',0,0,'','','MO007E - Anastrozole 1 mg orally daily (for 3 months)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4300,NULL,'',582,'N','N','Y',582,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0049','H','',0,0,'','','MO008A - Cisplatin + 5 FU5 FU 1000mg/m2 D1-D4Cisplatin 75mg/m2 D1 every 3 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9100,NULL,'',583,'N','N','Y',583,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0050','H','',0,0,'','','MO008B - CisplatinCisplatin 40 mg/m2 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2600,NULL,'',584,'N','N','Y',584,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0051','H','',0,0,'','','MO008C - Carboplatin + PaclitaxelPaclitaxel 175mg/m2 D1Carboplatin AUC 5 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16000,NULL,'',585,'N','N','Y',585,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0052','H','',0,0,'','','MO009A - Vincristine + Topotecan + Cyclophosphamide + Irinotecan + TemozolamideVincristine 1.5mg/m2( day 1)Topotecan 1.5mg/m2 (day 5)Cyclophosphamide 250mg/m2 (days 5)Given every 3 weeksIrinotecan 10-','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25500,NULL,'',586,'N','N','Y',586,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0053','H','',0,0,'','','MO009B - Vincristine + Ifosfamide + EtoposideVincristine + Doxorubicin + CyclophosphamideVincristine + Cyclophosphamide + Dactinomycin.4 cycles VIE, 6 cycles VAC, 4 cycles VCDVincristine 1.5mg/m2 (day','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10900,NULL,'',587,'N','N','Y',587,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0054','H','',0,0,'','','MO009C - Vincristine + Adriamycin + CyclophosphamideIfosfamide + EtoposideIfosfamide: 1800mg/m2 (days5)Etposide: 100mg/sq.m (days 5)Given every 3 weeklyVincristine 1.5mg/m2 (day 1 and 8)Adriamyicn: 75','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',588,'N','N','Y',588,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0055','H','',0,0,'','','MO010A - Doxorubicin + CisplatinCisplatin 100mg/m2Doxorubicin 75mg/m2 given every 3 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13200,NULL,'',589,'N','N','Y',589,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0056','H','',0,0,'','','MO010B - Methotrexate + Doxorubicin + Cisplatin for Relapsed Osteogenic SarcomaCisplatin 120mg/sq.mDoxorubicin 75mg/m2Methotrexate 8-12 gram/m2Each cycle for 5 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,29700,NULL,'',590,'N','N','Y',590,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0057','H','',0,0,'','','MO010C - OGS - 12Ifosfamide 1800 mg/m2 D1-D5Mesna 600mg/m2 0h 3h 6h 9h D1-D5Adriamycin 25mg/m2 D1- D3Cisplatin 33 mg/m2 D1-D3 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32600,NULL,'',591,'N','N','Y',591,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0058','H','',0,0,'','','MO010D - OGS - 12Ifosfamide 1800 mg/m2 D1-D5Mesna 600mg/m2 0h 3h 6h 9h D1-D5Cisplatin 33 mg/m2 D1-D3 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31500,NULL,'',592,'N','N','Y',592,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0059','H','',0,0,'','','MO011A - Gemcitabine + DocetaxelGemcitabine 900 mg/m2 D1 D8Docetaxel 100 mg/m2 D8 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26400,NULL,'',593,'N','N','Y',593,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0060','H','',0,0,'','','MO011B - Ifosfamide + AdriamycinDoxorubicin 30mg/m2 D1 D2Ifosfamide 2000 to 3000mg/m2Mesna 400 to 600 mg/m2 0h 4h 8h D1 - D3Every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15100,NULL,'',594,'N','N','Y',594,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0061','H','',0,0,'','','MO011C - Doxorubicin 60-75/m2, every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4400,NULL,'',595,'N','N','Y',595,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0062','H','',0,0,'','','MO012A - Dacarbazine + CisplatinDacarbazine 250mg/m2 D1-D5Cisplatin 75 mg/m2 Every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7900,NULL,'',596,'N','N','Y',596,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0063','H','',0,0,'','','MO012B - TemozolamideTemozolamide 200mg/m2 D1-D5 every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5500,NULL,'',597,'N','N','Y',597,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0064','H','',0,0,'','','MO012C - Imatinib Tab Imatinib 400/800 mg daily','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5500,NULL,'',598,'N','N','Y',598,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0065','H','',0,0,'','','MO013A - 5 Fluorouracil (FU)+ Mitomycin C5 Fluorouracil(FU) 1000mg/m2 D1-D4 D29-D32Mitomycin 10mg/m2 D1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12100,NULL,'',599,'N','N','Y',599,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0066','H','',0,0,'','','MO013B - Capecitabine + Mitomycin CCapecitabine 825mg/m2 PO twice daily till completion of RTMitomycin 10mg/2 D1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18600,NULL,'',600,'N','N','Y',600,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0067','H','',0,0,'','','MO013C - Cisplatin + 5 FU5 FU 1000mg/m2 D1-D4Cisplatin 75mg/m2 D1 every 4 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9000,NULL,'',601,'N','N','Y',601,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0068','H','',0,0,'','','MO013D - Carboplatin + PaclitaxelPaclitaxel 175mg/m2 D1Carboplatin AUC 5-6 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16400,NULL,'',602,'N','N','Y',602,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0069','H','',0,0,'','','MO013E - Cisplatin + PaclitaxelPaclitaxel 175 mg/m2 D1Cisplatin 75mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14700,NULL,'',603,'N','N','Y',603,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0070','H','',0,0,'','','MO014A - 5 FU + Leucovorin5 FU 1200mg/m2 D1 D2Leucovorin 400mg/m2 D1 every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6100,NULL,'',604,'N','N','Y',604,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0071','H','',0,0,'','','MO014B - Capecitabine + IrinotecanCapecitabine 1000mg/m2 D1-D14Irinotecan 200 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13800,NULL,'',605,'N','N','Y',605,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0072','H','',0,0,'','','MO014C - 5 FU + Leucovorin + Oxaliplatin5 FU 1200mg/m2 D1 D2Leucovorin 400mg/m2 D1Oxaliplatin 85 mg/m2 D1 every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15100,NULL,'',606,'N','N','Y',606,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0073','H','',0,0,'','','MO014D - 5FU + Leucovorin + Irinotecan5 FU 1200mg/m2 D1 D2Leucovorin 400mg/m2 D1Irinotecan 180mg/m2 85 mg/m2 D1 every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10600,NULL,'',607,'N','N','Y',607,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0074','H','',0,0,'','','MO014E - Capecitabine + OxaliplatinCapecitabine 1000mg/m2 D1-D14Oxaliplatin 130 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13800,NULL,'',608,'N','N','Y',608,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0075','H','',0,0,'','','MO014F - Capecitabine along with RTCapecitabine 825 mg/m2 twice daily','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8000,NULL,'',609,'N','N','Y',609,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0076','H','',0,0,'','','MO014G - CapecitabineCapecitabine 1000mg/m2 D1-D14 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8100,NULL,'',610,'N','N','Y',610,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0077','H','',0,0,'','','MO014GJI - Monthly 5-FU','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5750,NULL,'',611,'N','N','Y',611,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0078','H','',0,0,'','','MO014H - 5FU + Leucovorin + Oxaliplatin + Irinotecan5 FU 1200mg/m2 D1 D2Leucovorin 400mg/m2 D1Oxaliplatin 85 mg/m2 D1Irinotecan 180mg/m2 every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20700,NULL,'',612,'N','N','Y',612,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0079','H','',0,0,'','','MO015A - Carboplatin + PaclitaxelPaclitaxel 175mg/m2 D1Carboplatin AUC 5-6 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16400,NULL,'',613,'N','N','Y',613,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0080','H','',0,0,'','','MO015B - Cisplatin + 5 FU5 FU 1000mg/m2 D1-D4Cisplatin 75mg/m2 D1 every 4 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10700,NULL,'',614,'N','N','Y',614,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0081','H','',0,0,'','','MO015C - Cisplatin + 5 FUCisplatin 75mg/m2 D1 D295FU 1000mg/m2 D1-D4 D29 D32 every 35','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15600,NULL,'',615,'N','N','Y',615,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0082','H','',0,0,'','','MO015D - Paclitaxel + CarboplatinPaclitaxel 50mg/m2 D1Carboplatin AUC 2 D1 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,29900,NULL,'',616,'N','N','Y',616,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0083','H','',0,0,'','','MO015E - Paclitaxel + CarboplatinPaclitaxel 50mg/m2 D1Carboplatin AUC 2 D1 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,29900,NULL,'',617,'N','N','Y',617,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0084','H','',0,0,'','','MO016A - Cisplatin + DocetaxelDocetaxel 40mg/m2 D1Cisplatin 40 mg/m2 D1Leucovorin 400mg/m2 D15FU 1000mg/m2 D1 D2 every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15300,NULL,'',618,'N','N','Y',618,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0085','H','',0,0,'','','MO016B - IrinotecanIrinotecan 60- 90 mg/m2 D1 D8 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12100,NULL,'',619,'N','N','Y',619,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0086','H','',0,0,'','','MO016C - 5 FU5 FU 250 mg/m2 D1-D5 over 24 hrs every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10400,NULL,'',620,'N','N','Y',620,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0087','H','',0,0,'','','MO016D - CapecitabineCapecitabine 825 mg/m2 twice daily','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8000,NULL,'',621,'N','N','Y',621,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0088','H','',0,0,'','','MO016E - Capecitabine + OxaliplatinCapecitabine 1000mg/m2 D1-D14Oxaliplatin 130 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13800,NULL,'',622,'N','N','Y',622,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0089','H','',0,0,'','','MO016F - Docetaxel + Cisplatin + 5 FUDocetaxel 40mg/m2 D1Cisplatin 40 mg/m2 D1Leucovorin 400mg/m2 D15FU 1000mg/m2 D1 D2 every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16000,NULL,'',623,'N','N','Y',623,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0090','H','',0,0,'','','MO016G - Docetaxel + Cisplatin + CapecitabineDocetaxel 40mg/m2 D1Cisplatin 40 mg/m2 D1Capecitabine 825mg/m2 twice daily every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16000,NULL,'',624,'N','N','Y',624,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0091','H','',0,0,'','','MO016H - Docetaxel + Oxaliplatin + 5 FUDocetaxel 50mg/m2 D1Oxaliplatin 85 mg/m2 D1Leucovorin 400mg/m2 D15FU 1200mg/m2 D1 D2 every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20400,NULL,'',625,'N','N','Y',625,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0092','H','',0,0,'','','MO016I - Docetaxel + Oxaliplatin + CapecitabineDocetaxel 50mg/m2 D1Oxaliplatin 85 mg/m2 D1Capecitabine 825 mg/m2 Twice daily every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20400,NULL,'',626,'N','N','Y',626,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0093','H','',0,0,'','','MO016J - 5FU + Leucovorin + Irinotecan5 FU 1200mg/m2 D1 D2Leucovorin 400mg/m2 D1Irinotecan 180mg/m2 85 mg/m2 D1 every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10600,NULL,'',627,'N','N','Y',627,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0094','H','',0,0,'','','MO016K - 5FU + Leucovorin + Oxaliplatin5 FU 1200mg/m2 D1 D2Leucovorin 400mg/m2 D1Oxaliplatin 85 mg/m2 D1 every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15100,NULL,'',628,'N','N','Y',628,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0095','H','',0,0,'','','MO016L - PaclitaxelPaclitaxel 80mg/m2 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6600,NULL,'',629,'N','N','Y',629,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0096','H','',0,0,'','','MO017A - Doxorubicin (TACE)Doxorubicin 30-75 mg/m2 one course','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24800,NULL,'',630,'N','N','Y',630,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0097','H','',0,0,'','','MO017B - SorafenibSorafenib 400mg PO twice daily','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9900,NULL,'',631,'N','N','Y',631,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0098','H','',0,0,'','','MO017C - Lenvatinib 12 mg daily','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18700,NULL,'',632,'N','N','Y',632,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0099','H','',0,0,'','','MO018A - Gemcitabine + NanopaclitaxelGemcitabine 1000mg/m2 D1 D8 D16Albumin bound Paclitaxel 125mg/m2 D1 D8 D15 every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31300,NULL,'',633,'N','N','Y',633,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0100','H','',0,0,'','','MO018B - GemcitabineGemcitabine 1000mg /m2 D1 D8 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9900,NULL,'',634,'N','N','Y',634,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0101','H','',0,0,'','','MO018C - GemcitabineGemcitabine 300mg/m2 weekly','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4400,NULL,'',635,'N','N','Y',635,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0102','H','',0,0,'','','MO018D - 5FU + Leucovorin + Oxaliplatin + Irinotecan5 FU 1200mg/m2 D1 D2Leucovorin 400mg/m2 D1Oxaliplatin 85 mg/m2 D1Irinotecan 180mg/m2 every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20800,NULL,'',636,'N','N','Y',636,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0103','H','',0,0,'','','MO018E - CapecitabineCapecitabine 825 mg/m2 twice daily','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8000,NULL,'',637,'N','N','Y',637,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0104','H','',0,0,'','','MO018F - Capecitabine + GemcitabineGemcitabine 1000mg/m2 D1 D8 D15Capecitabine 830mg/m2 twice daily D1-D21 every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37600,NULL,'',638,'N','N','Y',638,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0105','H','',0,0,'','','MO019A - CapecitabineCapecitabine 1000 - 1250 mg/m2 twice daily D1 -D14 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8100,NULL,'',639,'N','N','Y',639,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0106','H','',0,0,'','','MO019B - Cisplatin + GemcitabineGemcitabine 1000 mg/m2 D1 D8Cisplatin 25 mg/m2 D1 D8 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13400,NULL,'',640,'N','N','Y',640,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0107','H','',0,0,'','','MO019C - 5FU + Leucovorin + Irinotecan5 FU 1200mg/m2 D1 D2Leucovorin 400mg/m2 D1Irinotecan 180mg/m2 85 mg/m2 D1 every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10600,NULL,'',641,'N','N','Y',641,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0108','H','',0,0,'','','MO019D - GemcitabineGemcitabine 300 mg/m2 D 1every week (till RT ends) - per week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4400,NULL,'',642,'N','N','Y',642,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0109','H','',0,0,'','','MO019E - GemcitabineGemcitabine 1000mg /m2 D1 D8 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9900,NULL,'',643,'N','N','Y',643,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0110','H','',0,0,'','','MO019F - Oxaliplatin + GemcitabineGemcitabine 1000 mg/m2 D1Oxaliplatin 100 mg/m2 D1 every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19200,NULL,'',644,'N','N','Y',644,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0111','H','',0,0,'','','MO019G - Capecitabine + IrinotecanCapecitabine 1000mg/m2 D1-D14Irinotecan 200 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13800,NULL,'',645,'N','N','Y',645,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0112','H','',0,0,'','','MO019H - 5FU + Leucovorin + Oxaliplatin5 FU 1200mg/m2 D1 D2Leucovorin 400mg/m2 D1Oxaliplatin 85 mg/m2 D1 every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15100,NULL,'',646,'N','N','Y',646,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0113','H','',0,0,'','','MO020A - ImatinibImatinib 400 mg once daily','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16500,NULL,'',647,'N','N','Y',647,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0114','H','',0,0,'','','MO020B - SunitinibSunitinb 37.5 mg once daily','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11000,NULL,'',648,'N','N','Y',648,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0115','H','',0,0,'','','MO021A - TemozolamideTemozolomide 150 - 200 mg/m2 D1-D5 every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5500,NULL,'',649,'N','N','Y',649,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0116','H','',0,0,'','','MO021B - TemozolamideTemozolomide 75mg/m2 once daily','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33000,NULL,'',650,'N','N','Y',650,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0117','H','',0,0,'','','MO021GJC - Tenozolamide, Procarbazine, CCNU, Vincristine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17480,NULL,'',651,'N','N','Y',651,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0118','H','',0,0,'','','MO022A - Gemcitabine + CisplatinGemcitabine 1000 mg/m2 D1 D8Cisplatin 75 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13400,NULL,'',652,'N','N','Y',652,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0119','H','',0,0,'','','MO022B - Pemetrexed + CisplatinPemetrexed 500mg/m2 D1Cisplatin 75 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10400,NULL,'',653,'N','N','Y',653,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0120','H','',0,0,'','','MO022C - Pemetrexed + CarboplatinPemetrexed 500mg/m2 D1Carboplatin AUC 5-6 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11200,NULL,'',654,'N','N','Y',654,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0121','H','',0,0,'','','MO023A - Cisplatin + EtoposideEtoposide 100mg/m2 D1 - D3Cisplatin 75-100 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7800,NULL,'',655,'N','N','Y',655,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0122','H','',0,0,'','','MO023B - Cisplatin + Adriamycin + CyclophosphamideCisplatin 50 mg/m2 D1Doxorubicin 50 mg/m2 D1Cyclophosphamide 500 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6500,NULL,'',656,'N','N','Y',656,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0123','H','',0,0,'','','MO024A - Cisplatin + DocetaxelDocetaxel 75 mg/m2 D1Cisplatin 75 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13700,NULL,'',657,'N','N','Y',657,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0124','H','',0,0,'','','MO024B - CisplatinCisplatin 100mg/m2 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10800,NULL,'',658,'N','N','Y',658,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0125','H','',0,0,'','','MO024C - Carboplatin + GemcitabineGemcitabine 1000 mg/m2 D1 D8Carboplatin AUC 5-6 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15300,NULL,'',659,'N','N','Y',659,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0126','H','',0,0,'','','MO024D - Docetaxel + Cisplatin + 5 FUDocetaxel 75 mg/m2 D1Cisplatin 75 mg/m2 D15 FU 750 mg/m2 D1- D5 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16000,NULL,'',660,'N','N','Y',660,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0127','H','',0,0,'','','MO024E - DocetaxelDocetaxel 20mg/m2 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3600,NULL,'',661,'N','N','Y',661,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0128','H','',0,0,'','','MO024F - DocetaxelDocetaxel 75 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9400,NULL,'',662,'N','N','Y',662,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0129','H','',0,0,'','','MO024G - Etoposide + CarboplatinEtoposide 100mg/m2 D1 - D3Carboplatin AUC 5-6 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8500,NULL,'',663,'N','N','Y',663,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0130','H','',0,0,'','','MO024GJQ - CISPLATIN + MTX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4600,NULL,'',664,'N','N','Y',664,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0131','H','',0,0,'','','MO024H - Etoposide + CisplatinEtoposide 100mg/m2 D1 - D3Cisplatin 75-100 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10200,NULL,'',665,'N','N','Y',665,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0132','H','',0,0,'','','MO024I - GemcitabineGemcitabine 1000 mg/m2 D1 D8 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9900,NULL,'',666,'N','N','Y',666,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0133','H','',0,0,'','','MO024J - Gemcitabine + CisplatinGemcitabine 1000 mg/m2 D1 D8Cisplatin 75 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13400,NULL,'',667,'N','N','Y',667,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0134','H','',0,0,'','','MO024K - Paclitaxel + CarboplatinPaclitaxel 80mg/m2 D1Carboplatin AUC 2 D1 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8500,NULL,'',668,'N','N','Y',668,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0135','H','',0,0,'','','MO024L - Paclitaxel + CarboplatinPaclitaxel 175mg/m2 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16000,NULL,'',669,'N','N','Y',669,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0136','H','',0,0,'','','MO024M - PaclitaxelPaclitaxel 80mg/m2 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6600,NULL,'',670,'N','N','Y',670,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0137','H','',0,0,'','','MO024N - PaclitaxelPaclitaxel 175mg/m2 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13000,NULL,'',671,'N','N','Y',671,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0138','H','',0,0,'','','MO024O - CarboplatinCarboplatin AUC 2 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',672,'N','N','Y',672,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0139','H','',0,0,'','','MO024P - CisplatinCisplatin 40mg/m2 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2600,NULL,'',673,'N','N','Y',673,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0140','H','',0,0,'','','MO025A - Sunitinib50 mg once daily 4 weeks on 2 weeks off','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11000,NULL,'',674,'N','N','Y',674,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0141','H','',0,0,'','','MO025B - Cabozantinib 60 mg od x 1 monthevery 4 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14300,NULL,'',675,'N','N','Y',675,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0142','H','',0,0,'','','MO026A - Cisplatin + Methotrexate + VinblastinMethotrexate 30mg/m2 D1 D8Vinblastine 4 mg/m2 D1 D8Doxorubicin 30 mg/m2 D2Cisplatin 100 mg/m2 D2Leucovorin 15 mg PO D2 D9 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7500,NULL,'',676,'N','N','Y',676,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0143','H','',0,0,'','','MO026B - Carboplatin + GemcitabineGemcitabine 1000 mg/m2 D1 D8Carboplatin AUC 5-6 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15300,NULL,'',677,'N','N','Y',677,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0144','H','',0,0,'','','MO026C - Cisplatin + GemcitabineGemcitabine 1000 mg/m2 D1 D8Cisplatin 75 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13400,NULL,'',678,'N','N','Y',678,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0145','H','',0,0,'','','MO026D - Cisplatin + 5 FU5 FU 1000mg/m2 D1-D4Cisplatin 75mg/m2 D1 every 4 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9000,NULL,'',679,'N','N','Y',679,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0146','H','',0,0,'','','MO026E - Cisplatin + PaclitaxelPaclitaxel 175 mg /m2 D1Cisplatin 75 mg /m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14700,NULL,'',680,'N','N','Y',680,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0147','H','',0,0,'','','MO026F - DocetaxelDocetaxel 75 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9400,NULL,'',681,'N','N','Y',681,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0148','H','',0,0,'','','MO026G - Gemcitabine + PaclitaxelGemcitabine 2500 mg/m2 D1Paclitaxel 150 mg/m2 D1 every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17100,NULL,'',682,'N','N','Y',682,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0149','H','',0,0,'','','MO026H - GemcitabineGemcitabine 1000mg /m2 D1 D8 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9900,NULL,'',683,'N','N','Y',683,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0150','H','',0,0,'','','MO026I - Methotrexate + Vinblastin + Doxorubicin + CisplatinMethotrexate 30mg/m2 D1Vinblastine 3 mg/m2 D2Doxorubicin 30 mg/m2 D2Cuisplatin 70 mg/m2 D2 every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8300,NULL,'',684,'N','N','Y',684,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0151','H','',0,0,'','','MO026J - Paclitaxel + CarboplatinPaclitaxel 175mg/m2 D1Carboplatin AUC 5-6 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16000,NULL,'',685,'N','N','Y',685,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0152','H','',0,0,'','','MO026K - PaclitaxelPaclitaxel 80 mg/m2 D1 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7100,NULL,'',686,'N','N','Y',686,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0153','H','',0,0,'','','MO027A - Cisplatin + PaclitaxelPaclitaxel 175 mg/m2 D1Cisplatin 75 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14700,NULL,'',687,'N','N','Y',687,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0154','H','',0,0,'','','MO027B - 5 FU + Cisplatin5 FU 1000mg/m2 D1-D4Cisplatin 75mg/m2 D1 every 4 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9000,NULL,'',688,'N','N','Y',688,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0155','H','',0,0,'','','MO027C - CapecitabineCapecitabine 1000-1250 mg/m2 PO twice daily D1 -D14 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8100,NULL,'',689,'N','N','Y',689,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0156','H','',0,0,'','','MO027D - Paclitaxel + CarboplatinPaclitaxel 175mg/m2 D1Carboplatin AUC 5-6 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16000,NULL,'',690,'N','N','Y',690,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0157','H','',0,0,'','','MO027E - PaclitaxelPaclitaxel 80 mg/m2 D1 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6600,NULL,'',691,'N','N','Y',691,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0158','H','',0,0,'','','MO027F - PaclitaxelPaclitaxel 175 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13000,NULL,'',692,'N','N','Y',692,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0159','H','',0,0,'','','MO027G - Paclitaxel + CarboplatinPaclitaxel 80 mg/m2 D1Carboplatin AUC 2 D1 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8500,NULL,'',693,'N','N','Y',693,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0160','H','',0,0,'','','MO028A - DocetaxelDocetaxel 60 mg/m2 D1 every 14 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8800,NULL,'',694,'N','N','Y',694,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0161','H','',0,0,'','','MO028B - DocetaxelDocetaxel 75 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9400,NULL,'',695,'N','N','Y',695,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0162','H','',0,0,'','','MO028C - Etoposide + CarboplatinEtoposide 100mg/m2 D1 - D3Carboplatin AUC 5-6 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8500,NULL,'',696,'N','N','Y',696,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0163','H','',0,0,'','','MO028D - LHRH AgonistLeuprolide 22.5 ug every 3 months','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16900,NULL,'',697,'N','N','Y',697,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0164','H','',0,0,'','','MO028E - Mitoxantrone + PrednisoloneMitoxantrone 12mg/m2 every 3 weeksPrednsiolone 10 mg daily','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4700,NULL,'',698,'N','N','Y',698,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0165','H','',0,0,'','','MO028F - Paclitaxel + CarboplatinPaclitaxel 80mg/m2 D1Carboplatin AUC 2 D1 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8500,NULL,'',699,'N','N','Y',699,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0166','H','',0,0,'','','MO028G - Paclitaxel + CarboplatinPaclitaxel 175mg/m2 D1Carboplatin AUC 5-6 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16000,NULL,'',700,'N','N','Y',700,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0167','H','',0,0,'','','MO028GJI - Docetaxol + steriods with G-CSF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18400,NULL,'',701,'N','N','Y',701,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0168','H','',0,0,'','','MO028H - DocetaxelDocetaxel 20mg/m2 D1 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3600,NULL,'',702,'N','N','Y',702,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0169','H','',0,0,'','','MO028I - Abiraterone 1000 mg + Prednisolone 10mg  daily Once every month','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14300,NULL,'',703,'N','N','Y',703,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0170','H','',0,0,'','','MO029A - Rituximab + Cyclophosphamide + Etoposide + PrednsioloneRituximab 375mg/m2Cyclophosphamide 750 mg/m2Vincristine 1.4 mg/m2, on Day1Etoposide 65mg/m2 Day 1 to 3Prednisolone 100 mg Day 5Total 6 c','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28900,NULL,'',704,'N','N','Y',704,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0171','H','',0,0,'','','MO029B - Rituximab + Cyclophosphamide + Doxorubicin + PrednsioloneRituximab 375mg/m2Cyclophosphamide 750 mg/m2Doxorubicin 50mg/m2Vincristine 1.4 mg/m2 on Day1Prednisolone 100 mg Day 5Total 6 cycles, r','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,29700,NULL,'',705,'N','N','Y',705,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0172','H','',0,0,'','','MO030A - Rituxmab + Dexamethasone + High Dose Cytarabine + CisplatinRituximab 375mg/m2 Day 1Cytarabine 2g/m2 BD on day 2Dexamethasone 40 mg Day 1 - 4Cisplatin 75mg/m2 or Carboplatin AUC-5 on day 1Cycl','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38400,NULL,'',706,'N','N','Y',706,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0173','H','',0,0,'','','MO031A - GDP - RRituximab 375mg/m2 Day 1Gemcitabine 1000mg/m2 on day 1 and 8Dexamethasone 40 mg Day 1 - 4Cisplatin 75mg/m2 on day 1Cycle to be repeated every 21daysTotal- 6 cycles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38900,NULL,'',707,'N','N','Y',707,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0174','H','',0,0,'','','MO031B - ICE - RRituximab 375mg/m2Ifosfamide 1.66g/m2 on day 1 - 3Mesna 1.66g/m2 day 1 - 3Carboplatin AUC 5 on day 1Etoposide 100mg/m2 on day 1 - 3Cycle every 21days for 6 cycles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35100,NULL,'',708,'N','N','Y',708,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0175','H','',0,0,'','','MO032A - Etoposide + Prednsiolone + Vincristine + Cyclophosphamide + DoxorubicinRituximab 375mg/m2 Day 1Etoposide 50mg/m2VCR 0.4mg/m2Doxorubicin 10mg/m2 Day1 - 4Cyclophosphamide 750mg/m2 on day 5 Pred','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34900,NULL,'',709,'N','N','Y',709,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0176','H','',0,0,'','','MO033A - Codox - M - IVAC- cyclophosphamide, vincristine, doxorubicin, high-dose methotrexate / ifosfamide, etoposide, high-dose cytarabine)GMALL (German multicenter acute lymphoblastic leukemia)Berli','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38000,NULL,'',710,'N','N','Y',710,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0177','H','',0,0,'','','MO034A - Bendamustine + RituximabBendamustine 90mg/m2 on day 1, 2Rituximab 375mg/m2 on day 1Repeat every 28 days, Total 6 cycles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27500,NULL,'',711,'N','N','Y',711,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0178','H','',0,0,'','','MO034B - Lenalidomide + RituximabRituximab 375mg/m2 Day 1Lenlidomide 25 mg D1-28, for 8 cycles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24800,NULL,'',712,'N','N','Y',712,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0179','H','',0,0,'','','MO035A - RituximabRituximab 375mg/m2 per week for 6 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17600,NULL,'',713,'N','N','Y',713,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0180','H','',0,0,'','','MO035B - Rituximab + Cyclophosphamide + Vincristine + PrednisoloneRituximab 375 mg/m2Cyclophosphamide 750mg/m2Vincristine 1.4mg/m2 Day 1Prednisolone 100 mg Day 1 - 5Repeat every 21days. Total 6 cycles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19300,NULL,'',714,'N','N','Y',714,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0181','H','',0,0,'','','MO036A - Fludarabine + CyclophosphamideFludarabine 25mg/m2 D1-3Cyclophosphamide 250 mg/m2 D1-3 every 28 days for 6 cycles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',715,'N','N','Y',715,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0182','H','',0,0,'','','MO036B - Rituxmab + ChlorambucilRituximab 375mg/m2 Day 1Chlorambucil 10 mg/m2 D1-7Repeat every 28 days for 12 cycles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18900,NULL,'',716,'N','N','Y',716,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0183','H','',0,0,'','','MO036C - Rituximab + Fludarabine + CyclophosphamideRituximab 375mg/m2 on day 1Fludarabine 25mg/m2 D1 - 3Cyclophosphamide 250 mg/m2 D1 - 3Every 28 days for 6 cycles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44800,NULL,'',717,'N','N','Y',717,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0184','H','',0,0,'','','MO036D - Lenalidomidelenalidomide-10-25 mg/day day 1 to 21 every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5300,NULL,'',718,'N','N','Y',718,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0185','H','',0,0,'','','MO036GJE - Bendamustine CLL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16387,NULL,'',719,'N','N','Y',719,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0186','H','',0,0,'','','MO036GJF - CVP - Cyclophosphamide, Vincristine, Steroids CLL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5463,NULL,'',720,'N','N','Y',720,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0187','H','',0,0,'','','MO036GJG - L + P -- Chlorambucil, Steroids CLL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5463,NULL,'',721,'N','N','Y',721,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0188','H','',0,0,'','','MO036GJH - Rituximab CLL ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5463,NULL,'',722,'N','N','Y',722,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0189','H','',0,0,'','','MO037A - CHOEPCyclophosphamide 750mg/m2 D1Vincristine 1.4mg/m2 D1Adriamycin 50 mg/m2 D1Etoposide 100mg/m2 D1-3Prednisolone 100 mg D5Every 21days. Total 6 cycles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5800,NULL,'',723,'N','N','Y',723,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0190','H','',0,0,'','','MO037B - CHOPCyclophosphamide 750mg/m2 D1Vincristine 1.4mg/m2 D1Adriamycin 50 mg/m2 D1Prednisolone 100 mg D5Every 21days. Total 6 cycles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5700,NULL,'',724,'N','N','Y',724,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0191','H','',0,0,'','','MO037C - SMILEMethotrexate 2gm/m2 D1Ifosfamide 1500mg/m2 D2-4Etoposide 100mg/m2 D2-4L-asparginase 6000U/m2 D8,10,12,14,16,18,20Dexamethasone 40mg D1-4 every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,21700,NULL,'',725,'N','N','Y',725,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0192','H','',0,0,'','','MO038A - GELOXGemcitabine 1000mg/m2 D1 and D8Oxaliplatin 130mg/m2 D1L- asparginase 6000 U/m2 D1-7Repeat every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,21300,NULL,'',726,'N','N','Y',726,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0193','H','',0,0,'','','MO038B - LVPL-asparginase 6000U/m2 D5Vincristine 1.4mg/m2 D1Prednisolone 100mg D5Repeat every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8800,NULL,'',727,'N','N','Y',727,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0194','H','',0,0,'','','MO039A - COPPCyclophosphamide 650mg/m2 D1, 8Vincristine 1.4mg/m2 D1, 8Procarbazine 100 mg/m2 D1-14Prednisolone 40mg/m2 D1-14Every 28days. Total 6 - 8 cycles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4300,NULL,'',728,'N','N','Y',728,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0195','H','',0,0,'','','MO039B - ABVDAdriamycin 25mg/m2Bleomycin 10unit/m2Vinblastine 6mg/m2Dacarbazine 375 mg/m2 Day 1,15Every 28 days for 6 cycles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11300,NULL,'',729,'N','N','Y',729,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0196','H','',0,0,'','','MO039C - AEVDAdriamycin 25mg/m2Vinblastine 6mg/m2Dacarbazine 375 mg/m2 Day 1,15Etoposide 65mg/m2 Day 1-3, 15-17Every 28 days for 6 cycles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11300,NULL,'',730,'N','N','Y',730,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0197','H','',0,0,'','','MO040A - ICEIfosfamide 1.5 mg/m2 D1-3Carboplatin AUC5 D2Etoposide 100mg/m2 D1-3Every 3 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11600,NULL,'',731,'N','N','Y',731,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0198','H','',0,0,'','','MO040B - MINEIfosfamide 4 gm/m2 over 3days (D1-3)Mitoxantrone 8mg/m2Etoposide 65mg/m2 D1-3Every 3 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11600,NULL,'',732,'N','N','Y',732,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0199','H','',0,0,'','','MO040C - PTCL - GDPGemcitabine 1000mg/m2 D1 and D8Dexamethasone 40mg D1-4Cisplatin 75mg/m2 D1 orCacrboplatin AUC-5Every 3 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16300,NULL,'',733,'N','N','Y',733,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0200','H','',0,0,'','','MO041A - DHAPDexamethasone 40mg D1-4Cisplatin 100mg/m2 or Carboplatin AUC-5D1Cytarabine 2 gm/m2 BD D2Repeat every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13800,NULL,'',734,'N','N','Y',734,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0201','H','',0,0,'','','MO042A - Lenalidomide + DexamethasoneLenalidomide 25 mg daily Day1-21Dexamethasone 40mg Day 1, 8, 15, 22Every 28days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5800,NULL,'',735,'N','N','Y',735,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0202','H','',0,0,'','','MO042B - Pomalidomide + DexamethasonePomalidomide 4 mg daily Day 1-21Dexamethasone 40mg Day 1, 8, 15, 22Every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7900,NULL,'',736,'N','N','Y',736,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0203','H','',0,0,'','','MO043A - Cyclophosphamide + Thalidomide + DexamethasoneCyclophosphamide 100mg D1-D14Thalidomide 100-200 mg daily Day 1-28Dexamethasone 40mg Day 1, 8, 15, 22Every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4500,NULL,'',737,'N','N','Y',737,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0204','H','',0,0,'','','MO043B - Melphalan + Thalidomide + PrednisoloneMelphalan 9mg/m2 D1-D4Thalidomide 100mg D1-28Prednisolone 100mg Day1-4Every 28days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4600,NULL,'',738,'N','N','Y',738,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0205','H','',0,0,'','','MO043C - Bortezomib + Cyclophosphamide + DexamethasoneCyclophosphamide - 300 mg/m2 day 1, 8, 15, 22Dexamethasone 40mg Day 1, 8, 15, 22Bortezomib 1.3 mg/m2 Day1, 8, 15, 22Every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16100,NULL,'',739,'N','N','Y',739,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0206','H','',0,0,'','','MO043D - Bortezomib + DexamethasoneBortezomib 1.3 mg/m2 Day1, 8, 15, 22Dexamethasone 40mg Day1, 8, 15, 22Every 28 day','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14700,NULL,'',740,'N','N','Y',740,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0207','H','',0,0,'','','MO043E - Bortezomib + Melphalan + PrednsioloneMelphalan 9mg/m2 D1-D4Prednisolone 100mg Day 1-4Bortezomib 1.3 mg/m2 Day 1, 8, 15, 22Every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13900,NULL,'',741,'N','N','Y',741,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0208','H','',0,0,'','','MO043F - Bortezomib + Lenalidomide + DexamethasoneLenalidomide 25 mg daily Day 1 - 21Dexamethasone 40mg Day 1, 8, 15, 22Bortezomib 1.3 mg/m2 Day 1, 8, 15, 22Every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19600,NULL,'',742,'N','N','Y',742,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0209','H','',0,0,'','','MO043G - Bortezomib + Thalidomide + DexamethasoneThalidomide 100 mg daily Day 1 - 28 Dexamethasone 40 mg Day 1, 8, 15, 22Bortezomib 1.3 mg/m2 Day 1, 8, 15, 22Every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16500,NULL,'',743,'N','N','Y',743,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0210','H','',0,0,'','','MO044A - ImatinibImatinib 400 mg, 600 mg, 800 mg(per month X 5 years)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16500,NULL,'',744,'N','N','Y',744,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0211','H','',0,0,'','','MO044B - Dasatinib 100 mg once a day','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5500,NULL,'',745,'N','N','Y',745,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00');
INSERT INTO `service_master` VALUES (0,0,'MOPM','','MOPM0212','H','',0,0,'','','MO044GJB - Imatinib, Nilotinib, Dasatinib Allogeneic stem cell Transplant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4600,NULL,'',746,'N','N','Y',746,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0213','H','',0,0,'','','MO045A - HydroxureaHydroxurea daily(Dose will be based on blood counts)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2500,NULL,'',747,'N','N','Y',747,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0214','H','',0,0,'','','MO046A - Cytarabine 2 gm / M2 BD for 5Every 21 days for 3 cycles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,78400,NULL,'',748,'N','N','Y',748,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0215','H','',0,0,'','','MO046B - Cytarabine 100 mg / M2 7 daysDaunomycin 60 mg / M2 3 ( this does not include antibiotics, antifungals, blood and platelets transfusion)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,116200,NULL,'',749,'N','N','Y',749,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0216','H','',0,0,'','','MO047A - Berlin- Frankfurt -Munster-90, Berlin- Frankfurt -Munster-95,  Berlin- Frankfurt -Munster-2000Hyper (cyclophosphamide, Vincristine, Adriamycin,Dexamethasone UKALL (United kingdom acute lympho','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,176000,NULL,'',750,'N','N','Y',750,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0217','H','',0,0,'','','MO047B - Berlin- Frankfurt -Munster-90Berlin- Frankfurt -Munster-95Berlin- Frankfurt -Munster-2000Hyper (cyclophosphamide, Vincristine, Adriamycin,DexamethasoneUKALL (United kingdom acute lymphoblasti','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,136200,NULL,'',751,'N','N','Y',751,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0218','H','',0,0,'','','MO047C - 6 Mercaptopurine 50 mg / M2 dailyMethotrexate 25 mg / M2 Weekly for 2 years','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4400,NULL,'',752,'N','N','Y',752,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0219','H','',0,0,'','','MO048A - Berlin- Frankfurt -Munster-90Berlin- Frankfurt -Munster- 95Berlin- Frankfurt -Munster- 2000Hyper CVAD (cyclophosphamide, Vincristine, Adriamycin,DexamethasoneUKALL (United kingdom acute lymph','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,176000,NULL,'',753,'N','N','Y',753,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0220','H','',0,0,'','','MO048B - Berlin- Frankfurt -Munster-90Berlin- Frankfurt -Munster-95 Berlin- Frankfurt -Munster-2000Hyper CVAD (cyclophosphamide, Vincristine, Adriamycin,DexamethasoneUKALL (United kingdom acute lympho','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,136200,NULL,'',754,'N','N','Y',754,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0221','H','',0,0,'','','MO048C - 6 Mercaptopurine 50 mg/M2 daily and Methotrexate 25 mg/M2 Weekly for 2 Years','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4400,NULL,'',755,'N','N','Y',755,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0222','H','',0,0,'','','MO049A - Arsenic trioxideATRADaunomycin or IdarubcinCytarabine - multiagent - vary in each protocol','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,79200,NULL,'',756,'N','N','Y',756,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0223','H','',0,0,'','','MO049B - Arsenic trioxideATRADaunomycin or IdarubcinCytarabine - multiagent - vary on protocol','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,106500,NULL,'',757,'N','N','Y',757,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0224','H','',0,0,'','','MO049C - 6 MP 50 mg / day dailyMethotrexate 15 mg WeeklyATRA 45 mg / M2 for 14 days Every three months for 18 Months','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8800,NULL,'',758,'N','N','Y',758,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0225','H','',0,0,'','','MO050A - ATO: Arsenic trioxide 0.15 mg / kg day 1-Day 5, day 8-12, day 15-19, day 22-26 every 56 days for 4 cyclesATRA : All trans retinoic acid  45 mg / M2 day 1-Day 14 and Day 29-43 every 56 days fo','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60500,NULL,'',759,'N','N','Y',759,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0226','H','',0,0,'','','MO050B - ATO: Arsenic trioxide 0.15 mg / kg day 1-45 or 60ATRA: All trans retinoic acid 45 mg / M2 - day 1-45 or 60','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,89100,NULL,'',760,'N','N','Y',760,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0227','H','',0,0,'','','MO051A - Cefoperazone + SulbactumPiperalicillin + TazobactumCefoperazonePiperacillinAmikacinGentamicinCefipimeLevofloxacinAmoxycillin and clavulanateTeicoplaninVancomycin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,36600,NULL,'',761,'N','N','Y',761,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0228','H','',0,0,'','','MO051B - MeropenemImipenemColistinTigecyclinLinezolidVoriconazoleCaspfunginAmphotericin - B','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,86700,NULL,'',762,'N','N','Y',762,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0229','H','',0,0,'','','MO052A - RasburicaseFebuxostatAllopurinolSevelamer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26400,NULL,'',763,'N','N','Y',763,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0230','H','',0,0,'','','MO053A - 5 microgram / kg / day(max 300 microgram per day) for 7 days orPEG - GCSF 6mg one single dose per chemotherapy cycle','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',764,'N','N','Y',764,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0231','H','',0,0,'','','MO054A - Langerhans Cell Histiocytosis(Histiocytosis Protocol - Induction)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27900,NULL,'',765,'N','N','Y',765,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0232','H','',0,0,'','','MO054B - Langerhans Cell Histiocytosis(Histiocytosis Protocol - Maintenance)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31800,NULL,'',766,'N','N','Y',766,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0233','H','',0,0,'','','MO055A - Vincristine + CarboplatinVincristine 1.5mg/m2 (day 1, 8 and 15 for first 4 cycles and then only day 1 from cycle 5 to 17)Carboplatin 550mg/m2 every 3 weeks (all cycles)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6500,NULL,'',767,'N','N','Y',767,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0234','H','',0,0,'','','MO055B - VinblastinVinblastine 6 mg/m2 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3700,NULL,'',768,'N','N','Y',768,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0235','H','',0,0,'','','MO056A - PACKER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',769,'N','N','Y',769,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0236','H','',0,0,'','','MO056B - Cisplatin + Cyclophosphamide + VincristineCyclophosphamide 1000mg/m2 (2 every cycles)Vincristine 1.5mg/m2 (days 1 and 8)Cisplatin 100mg/m2 (1 day per cycle)Cycles given every 3 weekly','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9200,NULL,'',770,'N','N','Y',770,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0237','H','',0,0,'','','MO057A - Cabroplatin + Etoposide + Cyclophosphamide + DoxorubicinCarboplatin 600mg/m2Etoposide 100mg/m2 (days 5)CyclophosphamideDoxorubicin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9500,NULL,'',771,'N','N','Y',771,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0238','H','',0,0,'','','MO057B - Carboplatin + Cisplatin + Cyclophosphamide + Vincristine + Etoposide','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8400,NULL,'',772,'N','N','Y',772,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0239','H','',0,0,'','','MO057C - 13-cis retinoic acid 160mg/m2 per day for 2 weeksEach cycle given 4 weekly','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2300,NULL,'',773,'N','N','Y',773,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0240','H','',0,0,'','','MO058A - Vincristine + Carboplatin + EtoposideCarboplatin 600mg/m2 day 1Etoposide 150mg/m2 1-3 Vincristine1.5mg/m2 day 1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8200,NULL,'',774,'N','N','Y',774,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0241','H','',0,0,'','','MO059A - Vincristine + Cyclophosphamide + DactinomycinVincristine 1.5mg/m2 (day 1, 8 and 15)Cyclophosphamie 1200 - 2200 mg/m2 (day 1)Dactinomycin 1.5mg / m2 (day 1)3 weekly cycle','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6300,NULL,'',775,'N','N','Y',775,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0242','H','',0,0,'','','MO059B - Vincristine + Ifosfamide + EtoposideVincristine 1.5mg/m2 (days 1, 8 and 15)Ifosfamide 1.8gm/m2 (days 5)Etoposide 100mg/m2 (days 5)Each cycle every 3 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17900,NULL,'',776,'N','N','Y',776,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0243','H','',0,0,'','','MO060A - Vincristine + Topotecan + Cyclophosphamide andVincristine + Adriamycin + CyclophosphamideVincristine 1.5mg/m2 (day 1)Topotecan 1.5mg/m2 (day 5)Cyclophosphamide 250mg/m2 (days 5)3 - weeklyVinc','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13700,NULL,'',777,'N','N','Y',777,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0244','H','',0,0,'','','MO061A - Vincristine + Actinomycin DVincristine 1.5 mg/m2 weekly for 12 weeks and then 3 weeklyActinomycin D 45 microgram / kg 3 weekly for 24 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4200,NULL,'',778,'N','N','Y',778,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0245','H','',0,0,'','','MO061B - Vincristine + Actinomycin D + DoxorubicinVincristine 1.5 mg/m2 weekly for 12 weeks and then 3 weeklyActinomycin D 45 microgram/kg 3 weeklyDoxorubicin 60mg/m2 for 24 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5500,NULL,'',779,'N','N','Y',779,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0246','H','',0,0,'','','MO061C - Cyclophosphamide + Doxorubicin + Etoposide + Vincristine + DactinomycinVincristine 1.5 mg/m2Dactinomycin 45 microgram/kgAdriamyicn 60mg/m2CyclophosphamideEtoposideWeekly chemotherapy - varyin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16800,NULL,'',780,'N','N','Y',780,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0247','H','',0,0,'','','MO062A - Consolidation (Phase II, CNS Therapy Reinduction)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,263700,NULL,'',781,'N','N','Y',781,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0248','H','',0,0,'','','MO062B - India collaborative childhood leukaemia group Berlin- Frankfurt -Munster Kill acute lymphocytic leukemia cells Mitroxantrone,Chlorambucil,Prednisolone: 841','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,95700,NULL,'',782,'N','N','Y',782,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0249','H','',0,0,'','','MO062C - 6 - Mercaptopurine 75mg/m2 dailyMethotrexate 20mg/m2 weeklyVincristine 1.5mg/m2 monthlyIntrathecal methotrexate 12 mg 3 monthly','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',783,'N','N','Y',783,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0250','H','',0,0,'','','MO062D - Dasatinib + chemo (to be used only with ALL therapy)- Permonth','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5500,NULL,'',784,'N','N','Y',784,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0251','H','',0,0,'','','MO062E - Imatinib + chemo ((to be used only with ALL therapy) -permonth','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5500,NULL,'',785,'N','N','Y',785,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0252','H','',0,0,'','','MO063A - Consolidation (Phase II, CNS Therapy Reinduction)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,263700,NULL,'',786,'N','N','Y',786,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0253','H','',0,0,'','','MO063B - India collaborative childhood leukaemia group Berlin- Frankfurt -Munster Kill acute lymphocytic leukemia cellsMitroxantrone,Chlorambucil,Prednisolone: 841','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,95700,NULL,'',787,'N','N','Y',787,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0254','H','',0,0,'','','MO063C - 6 - Mercaptopurine 75mg/m2 dailyMethotrexate 20mg/m2 weeklyVincristine 1.5mg/m2 monthlyIntrathecal methotrexate 12 mg 3 monthly','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',788,'N','N','Y',788,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0255','H','',0,0,'','','MO064A - Cytrabine 3 gram/m2 twice a dayDays 1, 3 and 5','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,63400,NULL,'',789,'N','N','Y',789,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0256','H','',0,0,'','','MO064B - Cytrabine 200mg/m2/day days 1-10 and Daunorubicin 50mg/m2 1, 3 and 5Etposide 100mg/m2 5','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,115800,NULL,'',790,'N','N','Y',790,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0257','H','',0,0,'','','MO064C - Cytrabine 100-200mg/m2/day days 1-7 and Daunorubicin 50mg/m2 1, 3 and 5','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,115400,NULL,'',791,'N','N','Y',791,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0258','H','',0,0,'','','MO065A - Consolidation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,64700,NULL,'',792,'N','N','Y',792,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0259','H','',0,0,'','','MO065B - Induction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,142400,NULL,'',793,'N','N','Y',793,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0260','H','',0,0,'','','MO065C - Maintenance (18 months total cost)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43300,NULL,'',794,'N','N','Y',794,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0261','H','',0,0,'','','MO066A - COPDAC: Cyclophosphamide, Vincristine sulfate,Prednisone,Dacarbazine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10400,NULL,'',795,'N','N','Y',795,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0262','H','',0,0,'','','MO066B - Oncovin,Etoposide,Prednisone,doxorubicin hydrochloride','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14300,NULL,'',796,'N','N','Y',796,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0263','H','',0,0,'','','MO067A - ifosfamide, carboplatin, etoposide','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15400,NULL,'',797,'N','N','Y',797,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0264','H','',0,0,'','','MO067B - DECA: Dexamethasone,Etoposide,Cytarabine,Cisplatin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15400,NULL,'',798,'N','N','Y',798,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0265','H','',0,0,'','','MO067C - IGVD: Need to check','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37400,NULL,'',799,'N','N','Y',799,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0266','H','',0,0,'','','MO068A - Lymphoma malign B 89-96 Consolidation (second month)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,46900,NULL,'',800,'N','N','Y',800,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0267','H','',0,0,'','','MO068B - Lymphoma malign B 89-96 Consolidation (First month)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,46700,NULL,'',801,'N','N','Y',801,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0268','H','',0,0,'','','MO068C - Lymphoma malign B 89-96 - Maintenance','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,72400,NULL,'',802,'N','N','Y',802,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0269','H','',0,0,'','','MO068D - Mitroxantrone,Chlorambucil,Prednisolone: 842','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,108600,NULL,'',803,'N','N','Y',803,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0270','H','',0,0,'','','MO069A - PEDIATRIC-GCT/JEB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11800,NULL,'',804,'N','N','Y',804,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0271','H','',0,0,'','','MO070A - Carboplatin + Cisplatin + Doxorubicin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6200,NULL,'',805,'N','N','Y',805,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0272','H','',0,0,'','','MO070B - Cisplatin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6200,NULL,'',806,'N','N','Y',806,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0273','H','',0,0,'','','MO071A - DocetaxelDocetaxel 75 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9400,NULL,'',807,'N','N','Y',807,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0274','H','',0,0,'','','MO071B - ErlotinibErlotinib 150 mg once daily','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',808,'N','N','Y',808,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0275','H','',0,0,'','','MO071C - GefitnibGefitinib 250 mg once daily','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2800,NULL,'',809,'N','N','Y',809,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0276','H','',0,0,'','','MO071D - Paclitaxel + CarboplatinPaclitaxel 175mg/m2 D1Carboplatin AUC 5-6 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16000,NULL,'',810,'N','N','Y',810,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0277','H','',0,0,'','','MO071E - Pemetrexed + CarboplatinPemetrexed 500mg/m2 D1Carboplatin AUC 5-6 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11200,NULL,'',811,'N','N','Y',811,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0278','H','',0,0,'','','MO071F - TopotecanTopotecan 1.5 mg/m2 D1-D5 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27100,NULL,'',812,'N','N','Y',812,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0279','H','',0,0,'','','MO071G - DocetaxelDocetaxel 20 mg/m2 D1 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3500,NULL,'',813,'N','N','Y',813,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0280','H','',0,0,'','','MO071H - Etoposide + CarboplatinEtoposide 100mg/m2 D1 - D3Carboplatin AUC 5-6 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8500,NULL,'',814,'N','N','Y',814,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0281','H','',0,0,'','','MO071I - Etoposide + CisplatinEtoposide 100mg/m2 D1 - D3Cisplatin 75-100 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7500,NULL,'',815,'N','N','Y',815,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0282','H','',0,0,'','','MO071J - GemcitabineGemcitabine 1000mg /m2 D1 D8 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9900,NULL,'',816,'N','N','Y',816,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0283','H','',0,0,'','','MO071K - Gemcitabine + CarboplatinGemcitabine 1000 mg/m2 D1 D8Carboplatin AUC 5-6 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15300,NULL,'',817,'N','N','Y',817,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0284','H','',0,0,'','','MO071L - Gemcitabine + CisplatinGemcitabine 1000 mg/m2 D1 D8Cisplatin 75 mg/m2 D1 D8 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13400,NULL,'',818,'N','N','Y',818,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0285','H','',0,0,'','','MO071M - PaclitaxelPaclitaxel 80mg/m2 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6600,NULL,'',819,'N','N','Y',819,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0286','H','',0,0,'','','MO071N - PaclitaxelPaclitaxel 175mg/m2 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13000,NULL,'',820,'N','N','Y',820,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0287','H','',0,0,'','','MO071O - Paclitaxel + CarboplatinPaclitaxel 50mg/m2 D1Carboplatin AUC 2 D1 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8500,NULL,'',821,'N','N','Y',821,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0288','H','',0,0,'','','MO071P - Paclitaxel + CisplatinPaclitaxel 175 mg/m2 D1Cisplatin 75mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14700,NULL,'',822,'N','N','Y',822,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0289','H','',0,0,'','','MO071Q - Pemetrexed + CisplatinPemetrexed 500mg/m2 D1Cisplatin 75 mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10400,NULL,'',823,'N','N','Y',823,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0290','H','',0,0,'','','MO071R - PemetrexedPemetrexed 500mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8400,NULL,'',824,'N','N','Y',824,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0291','H','',0,0,'','','MO071S - Vinorelbine + CarboplatinVinorelbine 25mg/m2 D1 D8CarboplatinAUC 5-6 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18700,NULL,'',825,'N','N','Y',825,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0292','H','',0,0,'','','MO071T - Vinorelbine + CisplatinVinorelbine 25mg/m2 D1 D8Cisplatin 75mg/m2 D1 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18700,NULL,'',826,'N','N','Y',826,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0293','H','',0,0,'','','MO072A - Carboplatin Carboplatin AUC 2 every week','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',827,'N','N','Y',827,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0294','H','',0,0,'','','MO073A - De-Angelis/Methotrexate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,39600,NULL,'',828,'N','N','Y',828,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0295','H','',0,0,'','','MO073GJA - Allogeneic stem cell Transplant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,780000,NULL,'',829,'N','N','Y',829,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0296','H','',0,0,'','','MO073GJB - Aplastic Anaemia - ATG + Cyclosporine + Steroid','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,320000,NULL,'',830,'N','N','Y',830,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0297','H','',0,0,'','','MO074A - SA Carboplatin AUC 7 once every 3 weeks - Max 4 cycles (price per cycle)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6600,NULL,'',831,'N','N','Y',831,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0298','H','',0,0,'','','MO074GJA - ATRA, Arsenic trioxide, Daunorubicin, Cytarabine 6 MP, methotrexate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,64400,NULL,'',832,'N','N','Y',832,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0299','H','',0,0,'','','MO075A - Denosumab Denosumab 120 mg s/c D1, 8, 15 then every 28 days- 19800 per dose. Max 6 dose','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19800,NULL,'',833,'N','N','Y',833,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0300','H','',0,0,'','','MO075GJA - Methotrexate Vinblastine Adriamycin Cyclophosphamide (MVAC)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7130,NULL,'',834,'N','N','Y',834,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0301','H','',0,0,'','','MO075GJB - Weekly Cisplatin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4140,NULL,'',835,'N','N','Y',835,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0302','H','',0,0,'','','MO076A - Temozolamide 150mg/m2 D9-14 + Capecitabine 1gm/me D1-14 every 28 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8800,NULL,'',836,'N','N','Y',836,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0303','H','',0,0,'','','MO076B - Carboplatin AUC 5 + Etoposide 100mg/m2 D1-D3 every 21 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14800,NULL,'',837,'N','N','Y',837,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0304','H','',0,0,'','','MO076GJA - Congenital condition amenable to BMT - Allogeneic stem cell Transplant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,780000,NULL,'',838,'N','N','Y',838,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0305','H','',0,0,'','','MO077GJA - Palliative and Supportive Therapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4830,NULL,'',839,'N','N','Y',839,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0306','H','',0,0,'','','MO078GJA - 5-FU -Leucovorin (McDonald Regimen), Epirubicin/Taxanes/Platin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17250,NULL,'',840,'N','N','Y',840,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0307','H','',0,0,'','','MO079GJA - Actinomycin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4370,NULL,'',841,'N','N','Y',841,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0308','H','',0,0,'','','MO080GJA - Gemcitabine/ Oxaliplatin/ Capecitabine/ 5 FU','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17480,NULL,'',842,'N','N','Y',842,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0309','H','',0,0,'','','MO081GJA - Bortezamib, Lenalinomide, Bisphosphonates, Autologus stem cell transplant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13800,NULL,'',843,'N','N','Y',843,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0310','H','',0,0,'','','MO081GJB - Melphalan -Prednisone (oral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2530,NULL,'',844,'N','N','Y',844,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0311','H','',0,0,'','','MO081GJC - Thalidomide+Dexamethasone(Oral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4830,NULL,'',845,'N','N','Y',845,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0312','H','',0,0,'','','MO081GJD - Vincristine, Adriamycin,Dexamethasone(VAD)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5750,NULL,'',846,'N','N','Y',846,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0313','H','',0,0,'','','MO082GJA -  Allogeneic stem cell Transplant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,780000,NULL,'',847,'N','N','Y',847,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0314','H','',0,0,'','','MO082GJB - Myelodysplastic syndrome - Lenalinomide Decitabine ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,200000,NULL,'',848,'N','N','Y',848,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0315','H','',0,0,'','','MO083GJA - Variable Regimen Variable regimens, Autologous Stem Cell','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16100,NULL,'',849,'N','N','Y',849,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0316','H','',0,0,'','','MO084GJA - All Cancer for all oncology cluster diagnostic or staging in proven cancer patient','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',850,'N','N','Y',850,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0317','H','',0,0,'','','MO085GJA - Cisplatin/Adriamycin + ifosmide (IAP)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13800,NULL,'',851,'N','N','Y',851,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0318','H','',0,0,'','','MO086GJA - Fixation of pathological fracture [Palliative package ^]','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31740,NULL,'',852,'N','N','Y',852,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0319','H','',0,0,'','','MO086GJB - Oesophageal Stenting /prosthesis- double [Palliative package ^]','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31750,NULL,'',853,'N','N','Y',853,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0320','H','',0,0,'','','MO086GJC - Pain killer /  G-CSF/  Drainage ? Biliary and urinary /  Stenting ? Biliary/  Stenting ? urinary /  Nutritional supplement [Palliative package ^]','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5290,NULL,'',854,'N','N','Y',854,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0321','H','',0,0,'','','MO087GJA - Relapsed Paediatric Solid Tumor - Autologus stem cell transplant -','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,780000,NULL,'',855,'N','N','Y',855,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0322','H','',0,0,'','','MO088GJA - Bleomycin-Etoposide-Cisplatin (BEP)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11040,NULL,'',856,'N','N','Y',856,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0323','H','',0,0,'','','MO088GJB - Taxanes, Ifosphamides, Vinblastine, Gemcitabine, Docetaxol, Platin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11040,NULL,'',857,'N','N','Y',857,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0324','H','',0,0,'','','MO089GJA - Thalassemia/Haemoglobinopat hies Sickle cell anaemia - Allogeneic Bone Marrow Transplant ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,780000,NULL,'',858,'N','N','Y',858,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0325','H','',0,0,'','','MO090GJA - Palliative Chemotherapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7130,NULL,'',859,'N','N','Y',859,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0326','H','',0,0,'','','MO091GJA - Cisplatin/5-FU','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9200,NULL,'',860,'N','N','Y',860,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0327','H','',0,0,'','','MO092GJA - SIOP/NWTS regimen(Stages I - IV)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13800,NULL,'',861,'N','N','Y',861,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPM','','MOPM0328','H','',0,0,'','','SU060A - Induction cycles (PC)Rate per dose -Rs 5000 max no- 06 (including drug)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3200,NULL,'',862,'N','N','Y',862,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0001','H','',0,0,'','','Aspiration of Abscess','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0002','H','',0,0,'','','BENIGN TUMOR REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0003','H','',0,0,'','','BREAST ABSCESS I& D','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0004','H','',0,0,'','','BURNS DRESSING - INTERMEDIATE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0005','H','',0,0,'','','BURNS DRESSING - LARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0006','H','',0,0,'','','BURNS DRESSING - MINOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0007','H','',0,0,'','','BURNS GRAFTING - SMALL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0008','H','',0,0,'','','CARBUNCLE EXCISION - INTERMEDIATE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0009','H','',0,0,'','','CARBUNCLE EXCISION - LARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0010','H','',0,0,'','','CARBUNCLE EXCISION - SMALL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0011','H','',0,0,'','','CIRCUMCISION PROCEDURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3900,3900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0012','H','',0,0,'','','CONTRACTURE RELEASE MILD (SINGLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0013','H','',0,0,'','','Corn Excision(Large/Multiple)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0014','H','',0,0,'','','Corn Excision(Small/Single )','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0015','H','',0,0,'','','CYST REMOVAL - LARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0016','H','',0,0,'','','CYST REMOVAL - SMALL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0017','H','',0,0,'','','DEBRIDEMENT - INTERMEDIATE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3900,3900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0018','H','',0,0,'','','DEBRIDEMENT - SMALL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0019','H','',0,0,'','','EXCISION CYST/MOLE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0020','H','',0,0,'','','EXCISION OF BREAST LUMP (SMALL)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0021','H','',0,0,'','','Excision Of Ingrowing Toe Nail','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0022','H','',0,0,'','','EXCISION OF SOFT TISSUE (LARGE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0023','H','',0,0,'','','EXCISION OF SOFT TISSUE (SMALL)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0024','H','',0,0,'','','FNAC LUNG/ PLEURAL BIOPSY (PROCEDURE CHARGE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0025','H','',0,0,'','','FNAC- RENAL (PROCEDURE CHARGE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0026','H','',0,0,'','','FNAC-ABDOMINAL MASS (PROCEDURE CHARGE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0027','H','',0,0,'','','FNAC-LIVER (PROCEDURE CHARGE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0028','H','',0,0,'','','GANGLION EXCISION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0029','H','',0,0,'','','Ganglion Suturing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0030','H','',0,0,'','','INCISION & DRAINAGE OF ABSCESS (I&D INTERMEDIATE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0031','H','',0,0,'','','INCISION & DRAINAGE OF ABSCESS (I&D MAJOR)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0032','H','',0,0,'','','Incision & Drainage Of Abscess (I&D Minor)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0033','H','',0,0,'','','LIPOMA EXCISION MAJOR PROCEDURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5800,5800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0034','H','',0,0,'','','Lymph Node Biopsy (Superficial)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0035','H','',0,0,'','','MANUAL REMOVAL OF STOOL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0036','H','',0,0,'','','NAIL BED REPAIR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0037','H','',0,0,'','','NEEDLE BIOPSY OF PROSTATE (TRUE CUT)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0038','H','',0,0,'','','Punch Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0039','H','',0,0,'','','Repair Of Cut Throat Wounds- Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0040','H','',0,0,'','','REPAIR OF CUT THROAT WOUNDS-MAJOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0041','H','',0,0,'','','Split Ear Lobule-One','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0042','H','',0,0,'','','SPLIT EAR LOBULE-TWO','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0043','H','',0,0,'','','Sternal Puncture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0044','H','',0,0,'','','Subdural Tapping','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0045','H','',0,0,'','','SUTURING/ CLW - LARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0046','H','',0,0,'','','SUTURING/ CLW - MEDIUM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MOPR','','MOPR0047','H','',0,0,'','','SUTURING/ CLW - SMALL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0001','H','',0,0,'','','MG001A - Acute febrile illness','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',863,'N','N','Y',863,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0002','H','',0,0,'','','MG002A - Severe sepsis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',864,'N','N','Y',864,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0003','H','',0,0,'','','MG002B - Septic shock','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',865,'N','N','Y',865,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0004','H','',0,0,'','','MG003A - Malaria','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',866,'N','N','Y',866,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0005','H','',0,0,'','','MG003B - Complicated malaria','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',867,'N','N','Y',867,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0006','H','',0,0,'','','MG004A - Dengue fever','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',868,'N','N','Y',868,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0007','H','',0,0,'','','MG004B - Dengue hemorrhagic fever','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',869,'N','N','Y',869,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0008','H','',0,0,'','','MG004C - Dengue shock syndrome','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',870,'N','N','Y',870,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0009','H','',0,0,'','','MG005A - Chikungunya fever','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',871,'N','N','Y',871,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0010','H','',0,0,'','','MG006A - Enteric fever','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',872,'N','N','Y',872,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0011','H','',0,0,'','','MG007A - HIV with complications','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',873,'N','N','Y',873,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0012','H','',0,0,'','','MG008A - Leptospirosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',874,'N','N','Y',874,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0013','H','',0,0,'','','MG009A - Acute gastroenteritis with moderate dehydration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',875,'N','N','Y',875,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0014','H','',0,0,'','','MG009B - Acute gastroenteritis with severe dehydration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',876,'N','N','Y',876,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0015','H','',0,0,'','','MG010A - Chronic diarrohea','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',877,'N','N','Y',877,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0016','H','',0,0,'','','MG010B - Persistent diarrohea','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',878,'N','N','Y',878,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0017','H','',0,0,'','','MG0115A - Inflammatory Myopathy/ Myaesthenic Crisis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',879,'N','N','Y',879,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0018','H','',0,0,'','','MG0116A - Guillain Barre syndrome (Plasmapheresis)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',880,'N','N','Y',880,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0019','H','',0,0,'','','MG0116B - Myasthenic crisis (Plasmapheresis)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',881,'N','N','Y',881,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0020','H','',0,0,'','','MG0117A - Moyamoya revascularization','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',882,'N','N','Y',882,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0021','H','',0,0,'','','MG0118A - Evaluation of drug resistant epilepsy-Phase-1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',883,'N','N','Y',883,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0022','H','',0,0,'','','MG0119A - Drug resistant epilepsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',884,'N','N','Y',884,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0023','H','',0,0,'','','MG011A - Dysentery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',885,'N','N','Y',885,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0024','H','',0,0,'','','MG0120A - Comprehensive medical rehabilitation for spinal injury/ traumatic brain injury, CVA, Cerebral palsy with or without orthosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',886,'N','N','Y',886,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0025','H','',0,0,'','','MG0120B - Comprehensive medical rehabilitation for of complication secondary to specified disanility/multiple disability including procedures,  chemodenevaration with or with out orthosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35000,NULL,'',887,'N','N','Y',887,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0026','H','',0,0,'','','MG0120C - Single event multiple level surgery for spasticity management in cerebral palsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',888,'N','N','Y',888,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0027','H','',0,0,'','','MG0120D - Medical rehabilitation of muscular dystrophy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',889,'N','N','Y',889,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0028','H','',0,0,'','','MG0120E - Medical Rehabilitation intellectual dissability','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',890,'N','N','Y',890,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0029','H','',0,0,'','','MG0120F - Medical Rehabilitation  special learning  disability','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',891,'N','N','Y',891,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0030','H','',0,0,'','','MG0120G - Medical Rehabilitation multiple  disability','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',892,'N','N','Y',892,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0031','H','',0,0,'','','MG012A - Acute viral hepatitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',893,'N','N','Y',893,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0032','H','',0,0,'','','MG013A - Chronic Hepatitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',894,'N','N','Y',894,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0033','H','',0,0,'','','MG014A - Liver abscess','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',895,'N','N','Y',895,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0034','H','',0,0,'','','MG015A - Visceral leishmaniasis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',896,'N','N','Y',896,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0035','H','',0,0,'','','MG016A - Pneumonia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',897,'N','N','Y',897,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0036','H','',0,0,'','','MG017A - Severe pneumonia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',898,'N','N','Y',898,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0037','H','',0,0,'','','MG018A - Empyema','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',899,'N','N','Y',899,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0038','H','',0,0,'','','MG019A - Lung abscess','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',900,'N','N','Y',900,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0039','H','',0,0,'','','MG020A - Pericardial tuberculosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',901,'N','N','Y',901,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0040','H','',0,0,'','','MG020B - Pleural tuberculosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',902,'N','N','Y',902,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0041','H','',0,0,'','','MG021A - Urinary Tract Infection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',903,'N','N','Y',903,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0042','H','',0,0,'','','MG022A - Viral Encephalitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',904,'N','N','Y',904,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0043','H','',0,0,'','','MG023A - Septic Arthritis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',905,'N','N','Y',905,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0044','H','',0,0,'','','MG024A - Skin and soft tissue infections','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',906,'N','N','Y',906,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0045','H','',0,0,'','','MG025A - Recurrent vomiting with dehydration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',907,'N','N','Y',907,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0046','H','',0,0,'','','MG026A - Pyrexia of unknown origin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',908,'N','N','Y',908,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0047','H','',0,0,'','','MG027A - Bronchiectasis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',909,'N','N','Y',909,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0048','H','',0,0,'','','MG028A - Acute bronchitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',910,'N','N','Y',910,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0049','H','',0,0,'','','MG030A - Acute excaberation of Interstitial Lung Disease','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',911,'N','N','Y',911,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0050','H','',0,0,'','','MG031A - Bacterial Endocarditis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',912,'N','N','Y',912,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0051','H','',0,0,'','','MG031B - Fungal Endocarditis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',913,'N','N','Y',913,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0052','H','',0,0,'','','MG032A - Vasculitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',914,'N','N','Y',914,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0053','H','',0,0,'','','MG033A - Acute pancreatitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',915,'N','N','Y',915,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0054','H','',0,0,'','','MG033B - Chronic pancreatitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',916,'N','N','Y',916,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0055','H','',0,0,'','','MG034A - Ascites','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',917,'N','N','Y',917,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0056','H','',0,0,'','','MG035A - Acute transverse myelitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',918,'N','N','Y',918,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0057','H','',0,0,'','','MG036A - Atrial Fibrillation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',919,'N','N','Y',919,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0058','H','',0,0,'','','MG038A - Congestive heart failure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',920,'N','N','Y',920,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0059','H','',0,0,'','','MG039A - Acute asthmatic attack','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',921,'N','N','Y',921,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0060','H','',0,0,'','','MG039B - Status asthmaticus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',922,'N','N','Y',922,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0061','H','',0,0,'','','MG040A - Type 1 respiratory failure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',923,'N','N','Y',923,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0062','H','',0,0,'','','MG040B - Type 2 respiratory failure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',924,'N','N','Y',924,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0063','H','',0,0,'','','MG040C - Due to any cause (pneumonia, asthma, COPD, ARDS, foreign body, poisoning, head injury etc.)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',925,'N','N','Y',925,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0064','H','',0,0,'','','MG041A - Upper GI bleeding (conservative)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',926,'N','N','Y',926,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0065','H','',0,0,'','','MG041B - Upper GI bleeding (endoscopic)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',927,'N','N','Y',927,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0066','H','',0,0,'','','MG042A - Lower GI hemorrhage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',928,'N','N','Y',928,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0067','H','',0,0,'','','MG043A - Addison?s disease','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',929,'N','N','Y',929,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0068','H','',0,0,'','','MG046A - Seizures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',930,'N','N','Y',930,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0069','H','',0,0,'','','MG050A - Immune mediated CNS disorders','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',931,'N','N','Y',931,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0070','H','',0,0,'','','MG051A - Hydrocephalus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',932,'N','N','Y',932,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0071','H','',0,0,'','','MG052A - Myxedema coma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',933,'N','N','Y',933,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0072','H','',0,0,'','','MG053A - Thyrotoxic crisis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',934,'N','N','Y',934,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0073','H','',0,0,'','','MG055A - Pneumothorax','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',935,'N','N','Y',935,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0074','H','',0,0,'','','MG056A - Neuromuscular Disorders','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',936,'N','N','Y',936,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0075','H','',0,0,'','','MG057A - Hypoglycemia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',937,'N','N','Y',937,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0076','H','',0,0,'','','MG059A - Diabetic ketoacidosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',938,'N','N','Y',938,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0077','H','',0,0,'','','MG060A - Hypercalcemia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',939,'N','N','Y',939,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0078','H','',0,0,'','','MG060B - Hypocalcemia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',940,'N','N','Y',940,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0079','H','',0,0,'','','MG060C - Hyponatremia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',941,'N','N','Y',941,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0080','H','',0,0,'','','MG060D - Hypernatremia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',942,'N','N','Y',942,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0081','H','',0,0,'','','MG061A - Hyperosmolar Non-Ketotic coma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',943,'N','N','Y',943,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0082','H','',0,0,'','','MG062A - Accelerated hypertension','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',944,'N','N','Y',944,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0083','H','',0,0,'','','MG063A - Hypertensive emergencies','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',945,'N','N','Y',945,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0084','H','',0,0,'','','MG064A - Severe anemia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',946,'N','N','Y',946,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0085','H','',0,0,'','','MG065A - Sickle cell Anemia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',947,'N','N','Y',947,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0086','H','',0,0,'','','MG066A - Anaphylaxis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',948,'N','N','Y',948,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0087','H','',0,0,'','','MG067A - Heat stroke','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',949,'N','N','Y',949,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0088','H','',0,0,'','','MG068A - Systematic lupus erythematosus (SLE)/ Diffuse alveolar hemmorhage associated with SLE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',950,'N','N','Y',950,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0089','H','',0,0,'','','MG069A - Guillain Barre syndrome (IVIG)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',951,'N','N','Y',951,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0090','H','',0,0,'','','MG070A - Snake bite','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',952,'N','N','Y',952,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0091','H','',0,0,'','','MG071A - Acute organophosphorus poisoning','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',953,'N','N','Y',953,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0092','H','',0,0,'','','MG071B - Other poisonings','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',954,'N','N','Y',954,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0093','H','',0,0,'','','MG073A - Plasmapheresis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',955,'N','N','Y',955,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0094','H','',0,0,'','','MG074A - Whole Blood transfusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',956,'N','N','Y',956,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0095','H','',0,0,'','','MG074B - Blood component including platelet transfusion (RDP, PC, SDP)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',957,'N','N','Y',957,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0096','H','',0,0,'','','MG075A - High end radiological diagnostic (CT, MRI, Imaging including nuclear imaging)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',958,'N','N','Y',958,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0097','H','',0,0,'','','MG076A - High end histopathology (Biopsies) and advanced serology investigations','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',959,'N','N','Y',959,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0098','H','',0,0,'','','MG083GJA - By Intravenous immunoglobulin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,200000,NULL,'',960,'N','N','Y',960,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0099','H','',0,0,'','','MG083GJB - By plasmapheresis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,109627,NULL,'',961,'N','N','Y',961,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0100','H','',0,0,'','','MG098A - PET scan','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',962,'N','N','Y',962,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0101','H','',0,0,'','','MG099A - Platelet pheresis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11000,NULL,'',963,'N','N','Y',963,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0102','H','',0,0,'','','MP001A - Febrile seizures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',964,'N','N','Y',964,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0103','H','',0,0,'','','MP001D - Acute non-febrile seizures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',965,'N','N','Y',965,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0104','H','',0,0,'','','MP002A - Epileptic encephalopathy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',966,'N','N','Y',966,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0105','H','',0,0,'','','MP003A - Acute Febrile encephalopathy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',967,'N','N','Y',967,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0106','H','',0,0,'','','MP003B - Acute Disseminated Encephalomyelitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',968,'N','N','Y',968,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0107','H','',0,0,'','','MP004A - hypertensive/metabolic/febrile/hepatic encephalopathy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',969,'N','N','Y',969,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0108','H','',0,0,'','','MP005A - Acute meningo encephalitis pyogenic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',970,'N','N','Y',970,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0109','H','',0,0,'','','MP005B - Aseptic meningitis tubercular,','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',971,'N','N','Y',971,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0110','H','',0,0,'','','MP005C - Febrile encephalopathy fungal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',972,'N','N','Y',972,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0111','H','',0,0,'','','MP005D - Hypertensive encehalopathy viral,','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',973,'N','N','Y',973,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0112','H','',0,0,'','','MP005E - Metabolic encephalopathy parasitic,','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',974,'N','N','Y',974,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0113','H','',0,0,'','','MP005G - Brain abscess/Intracranial abscess/ Aseptic meningitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',975,'N','N','Y',975,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0114','H','',0,0,'','','MP006A - Chronic meningitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',976,'N','N','Y',976,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0115','H','',0,0,'','','MP006B - Partially treated pyogenic meningitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',977,'N','N','Y',977,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0116','H','',0,0,'','','MP006C - Neuro tuberculosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',978,'N','N','Y',978,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0117','H','',0,0,'','','MP006D - Complicated bacterial meningitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',979,'N','N','Y',979,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0118','H','',0,0,'','','MP006E - Acute meningitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',980,'N','N','Y',980,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0119','H','',0,0,'','','MP008A - Raised ICP due to neuro surgical procedures/due to trauma/malignancies/ meningo-encephalitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',981,'N','N','Y',981,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0120','H','',0,0,'','','MP009A - Intracranial hemorrhage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',982,'N','N','Y',982,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0121','H','',0,0,'','','MP010A - Intracranial space occupying lesion tuberculoma,','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',983,'N','N','Y',983,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0122','H','',0,0,'','','MP011A - neurocysticercosis, brain tumours','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',984,'N','N','Y',984,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0123','H','',0,0,'','','MP013A - Acute neuroregression / Acute worsening in neuro metabolic and neurodegenerative conditions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',985,'N','N','Y',985,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0124','H','',0,0,'','','MP014A - Acute demyelinating myelopathy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',986,'N','N','Y',986,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0125','H','',0,0,'','','MP015A - Juvenile myasthenia- requiring admission for work-up or in-patient care','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',987,'N','N','Y',987,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0126','H','',0,0,'','','MP016A - Acute ataxia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',988,'N','N','Y',988,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0127','H','',0,0,'','','MP018A - Acute asthma/Status asthmaticus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',989,'N','N','Y',989,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0128','H','',0,0,'','','MP019A - Chronic cough','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',990,'N','N','Y',990,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0129','H','',0,0,'','','MP020A - Acute urticaria/anaphylaxis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',991,'N','N','Y',991,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0130','H','',0,0,'','','MP020B - Steven Johnson syndrome','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',992,'N','N','Y',992,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0131','H','',0,0,'','','MP021A - Acute abdomen pain','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',993,'N','N','Y',993,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0132','H','',0,0,'','','MP022A - Celiac disease-requiring admission for Work Up and/or in-patient management','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',994,'N','N','Y',994,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0133','H','',0,0,'','','MP023A - Unexplained hepatosplenomegaly-requiring admission for Work Up and/or in-patient management','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',995,'N','N','Y',995,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0134','H','',0,0,'','','MP024A - Neonatal/infantile cholestasis / Choledochal cysts','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',996,'N','N','Y',996,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0135','H','',0,0,'','','MP025A - Acute glomerulonephritis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',997,'N','N','Y',997,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0136','H','',0,0,'','','MP026A - Nephrotic syndrome with peritonitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',998,'N','N','Y',998,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0137','H','',0,0,'','','MP026B - Steroid dependent or resistent','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',999,'N','N','Y',999,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0138','H','',0,0,'','','MP027A - Haemolytic uremic syndrome','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1000,'N','N','Y',1000,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0139','H','',0,0,'','','MP029A - Global developmental delay/Intellectual disability-requiring admission for Work Up and/or in-patient management','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1001,'N','N','Y',1001,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0140','H','',0,0,'','','MP030A - Rickets - requiring admission for Work Up and/or in-patient management','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1002,'N','N','Y',1002,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0141','H','',0,0,'','','MP031A - Acute severe malnutrition','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1003,'N','N','Y',1003,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0142','H','',0,0,'','','MP032A - Developmental and behavioral disorders for Work Up and/or in-patient management','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1004,'N','N','Y',1004,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0143','H','',0,0,'','','MP033A - Short stature- requiring admission for Work Up','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1005,'N','N','Y',1005,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0144','H','',0,0,'','','MP034A - Children with dysmorphic features- requiring admission for work-up','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1006,'N','N','Y',1006,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0145','H','',0,0,'','','MP035A - Floppy infant syndrome requiring admission for work-up','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1007,'N','N','Y',1007,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0146','H','',0,0,'','','MP036A - Inborn errors of metabolism-requiring admission for work-up and/or inpatient care','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1008,'N','N','Y',1008,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0147','H','',0,0,'','','MP037A - Wilson?s disease-requiring admission for work-up and/or inpatient care','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1009,'N','N','Y',1009,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0148','H','',0,0,'','','MP038A - Juvenile Arthritis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1010,'N','N','Y',1010,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0149','H','',0,0,'','','MP039A - Acute rheumatic fever','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1011,'N','N','Y',1011,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0150','H','',0,0,'','','MP039B - Rheumatic valvular heart disease','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1012,'N','N','Y',1012,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0151','H','',0,0,'','','MP040A - Cyanotic spells without CHD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1013,'N','N','Y',1013,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0152','H','',0,0,'','','MP040B - Cyanotic spells with CHD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1014,'N','N','Y',1014,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0153','H','',0,0,'','','MP041A - Iron deficiency anemia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1015,'N','N','Y',1015,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0154','H','',0,0,'','','MP041B - Thalessmia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1016,'N','N','Y',1016,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0155','H','',0,0,'','','MP041C - Admission for Packed cell blood transfusion (Daycare /Max. of One day) inlcuding 15 days Iron chelation Medicine(Deferasirox) on discharge and routine investigation-CBC ( Including hemoglobin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2600,NULL,'',1017,'N','N','Y',1017,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0156','H','',0,0,'','','MP041D - Other anemias','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1018,'N','N','Y',1018,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0157','H','',0,0,'','','MP041E - Admission for Packed cell blood transfusion (Daycare /Max. of One day) inlcuding 15 days Iron chelation Medicine((Deferasirox) on discharge and routine investigation -CBC,(Including hemoglobi','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',1019,'N','N','Y',1019,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0158','H','',0,0,'','','MP041F - Admission for Packed cell blood transfusion (Daycare /Max. of One day) including 15 days Iron chelation Medicine(Deferiprone) on discharge and routine investigation -CBC ( Including hemoglobi','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2900,NULL,'',1020,'N','N','Y',1020,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0159','H','',0,0,'','','MP041G - Admission for Packed cell blood transfusion (Daycare /Max. of One day) inlcuding 15 days Iron chelation Medicine(Deferiprone) on discharge and routine investigation-CBC ( Including hemoglobin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2300,NULL,'',1021,'N','N','Y',1021,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0160','H','',0,0,'','','MP041H - Admission for Packed cell blood transfusion (Daycare /Max. of One day) including 15 days of Iron chelation Medicine(Deferiprone) on discharge and routine investigation -CBC (Including hemoglo','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2700,NULL,'',1022,'N','N','Y',1022,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0161','H','',0,0,'','','MP042A - Idiopathic Thrombocytopenic Purpura','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1023,'N','N','Y',1023,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0162','H','',0,0,'','','MP043A - Kawasaki Disease','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1024,'N','N','Y',1024,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0163','H','',0,0,'','','MP044A - Steve Johnson syndrome','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1025,'N','N','Y',1025,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0164','H','',0,0,'','','MP046A - Ketogenic diet initiation in refractory epilepsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1026,'N','N','Y',1026,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0165','H','',0,0,'','','MP047A - Acute laryngotracheobronchitis/Acute epiglottitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1027,'N','N','Y',1027,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0166','H','',0,0,'','','MP048A - Hemophilia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1028,'N','N','Y',1028,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0167','H','',0,0,'','','MP048B - Platelet disorders','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1029,'N','N','Y',1029,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0168','H','',0,0,'','','MP050A - Uncomplicated steroid sensitive','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1030,'N','N','Y',1030,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0169','H','',0,0,'','','MP051A - Staphylococcal scalded skin syndrome','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1031,'N','N','Y',1031,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MPPM','','MPPM0170','H','',0,0,'','','SE042A - Optic neuritis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2100,NULL,'',1032,'N','N','Y',1032,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRCG','','MRCG0001','H','',0,0,'','','MRI Head ? Without Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1998,1998,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0002','H','',0,0,'','','MRI Head ? With Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2848,2848,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0003','H','',0,0,'','','MRI Orbits ? Without Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1445,1445,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0004','H','',0,0,'','','MRI Orbits ? With Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0005','H','',0,0,'','','MRI Nasopharynx and PNS ? Without Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2450,2450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0006','H','',0,0,'','','MRI Nasopharynx and PNS ? With Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3500,3500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0007','H','',0,0,'','','MR for Salivary Glands with Sialography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2700,2700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0008','H','',0,0,'','','MRI Neck - Without Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0009','H','',0,0,'','','MRI Neck- with contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0010','H','',0,0,'','','MRI Shoulder ? Without contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0011','H','',0,0,'','','MRI Shoulder ? With conntrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0012','H','',0,0,'','','MRI shoulder both Joints - Without contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0013','H','',0,0,'','','MRI Shoulder both joints ? With  contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0014','H','',0,0,'','','MRI Wrist Single joint - Without contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2125,2125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0015','H','',0,0,'','','MRI Wrist Single joint - With contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0016','H','',0,0,'','','MRI Wrist both  joints - Without contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2125,2125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0017','H','',0,0,'','','MRI Wrist Both joints - With contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0018','H','',0,0,'','','MRI knee Single joint - Without contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2125,2125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0019','H','',0,0,'','','MRI knee Single joint - With contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0020','H','',0,0,'','','MRI knee both joints - Without contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2125,2125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0021','H','',0,0,'','','MRI knee both  joints - With contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0022','H','',0,0,'','','MRI Ankle Single joint - Without contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2125,2125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0023','H','',0,0,'','','MRI Ankle single  joint - With contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0024','H','',0,0,'','','MRI Ankle both  joints - With contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0025','H','',0,0,'','','MRI Ankle both  joints - Without contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0026','H','',0,0,'','','MRI Hip - With contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0027','H','',0,0,'','','MRI Hip ? without contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2125,2125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0028','H','',0,0,'','','MRI Pelvis ? Without Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2125,2125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0029','H','',0,0,'','','MRI  Pelvis ? with contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0030','H','',0,0,'','','MRI Extremities - With contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0031','H','',0,0,'','','MRI Extremities - Without contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2125,2125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0032','H','',0,0,'','','MRI Temporomandibular ? B/L  - With contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0033','H','',0,0,'','','MRI Temporomandibular ? B/L  - Without\ncontrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2125,2125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0034','H','',0,0,'','','MR Temporal Bone/ Inner ear with contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0035','H','',0,0,'','','MR Temporal Bone/ Inner ear without contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0036','H','',0,0,'','','MRI Abdomen ? Without Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2125,2125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0037','H','',0,0,'','','MRI Abdomen ? With Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0038','H','',0,0,'','','MRI Breast - With Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4250,4250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0039','H','',0,0,'','','MRI Breast - Without Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2125,2125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0040','H','',0,0,'','','MRI Spine Screening - Without Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0041','H','',0,0,'','','MRI Chest ? Without Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2125,2125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0042','H','',0,0,'','','MRI Chest ? With Contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0043','H','',0,0,'','','MRI Cervical/Cervico Dorsal Spine ? Without\nContrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2125,2125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0044','H','',0,0,'','','MRI Cervical/ Cervico Dorsal Spine ? With\nContrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0045','H','',0,0,'','','MRI Dorsal/ Dorso Lumbar Spine - Without\nContrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2125,2125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0046','H','',0,0,'','','MRI Dorsal/ Dorso Lumbar Spine ? With\nContrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0047','H','',0,0,'','','MRI Lumbar/ Lumbo-Sacral Spine  ? Without\nContrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2125,2125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0048','H','',0,0,'','','MRI Lumbar/ Lumbo-Sacral Spine ? With\nContrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0049','H','',0,0,'','','Whole body MRI (For oncological workup)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5100,5100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0050','H','',0,0,'','','MR cholecysto-pancreatography.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4950,4950,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0051','H','',0,0,'','','MRI Angiography - with contrast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRCG','','MRCG0052','H','',0,0,'','','MR Enteroclysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2125,2125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'MRI','','MRI0001','H','',0,0,'','','MRI CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0001','H','',0,0,'','','MG098A - PET scan','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1033,'N','N','Y',1033,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0002','H','',0,0,'','','MR001A - Radical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23100,NULL,'',1034,'N','N','Y',1034,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0003','H','',0,0,'','','MR001B - Adjuvant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12100,NULL,'',1035,'N','N','Y',1035,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0004','H','',0,0,'','','MR001C - Neoadjuvant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12100,NULL,'',1036,'N','N','Y',1036,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0005','H','',0,0,'','','MR001D - Additional fractions - 18 Max upto (Every additional fraction at Rs.500 per Fraction)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9900,NULL,'',1037,'N','N','Y',1037,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0006','H','',0,0,'','','MR002A - Palliative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11000,NULL,'',1038,'N','N','Y',1038,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0007','H','',0,0,'','','MR003A - Radical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22000,NULL,'',1039,'N','N','Y',1039,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0008','H','',0,0,'','','MR003B - Adjuvant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22000,NULL,'',1040,'N','N','Y',1040,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0009','H','',0,0,'','','MR003C - Neoadjuvant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22000,NULL,'',1041,'N','N','Y',1041,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0010','H','',0,0,'','','MR003D - Additional fractions - 10 Max upto (additional fraction at Rs.500 per Fraction upto a max)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5500,NULL,'',1042,'N','N','Y',1042,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0011','H','',0,0,'','','MR004A - Radical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12100,NULL,'',1043,'N','N','Y',1043,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0012','H','',0,0,'','','MR005A - Radical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44000,NULL,'',1044,'N','N','Y',1044,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0013','H','',0,0,'','','MR005B - Adjuvant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44000,NULL,'',1045,'N','N','Y',1045,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0014','H','',0,0,'','','MR005C - Neoadjuvant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44000,NULL,'',1046,'N','N','Y',1046,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0015','H','',0,0,'','','MR005D - Additional fractions - 10 Max upto (Every additional fraction at Rs.1000 per Fraction)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11000,NULL,'',1047,'N','N','Y',1047,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0016','H','',0,0,'','','MR006A - Radical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,77000,NULL,'',1048,'N','N','Y',1048,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0017','H','',0,0,'','','MR006B - Adjuvant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,77000,NULL,'',1049,'N','N','Y',1049,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0018','H','',0,0,'','','MR006C - Neoadjuvant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,77000,NULL,'',1050,'N','N','Y',1050,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0019','H','',0,0,'','','MR006D - Additional fractions - 15 (Every additional fraction at Rs.2000 per Fraction)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33000,NULL,'',1051,'N','N','Y',1051,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0020','H','',0,0,'','','MR008A - Radical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,99000,NULL,'',1052,'N','N','Y',1052,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0021','H','',0,0,'','','MR008B - Adjuvant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,99000,NULL,'',1053,'N','N','Y',1053,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0022','H','',0,0,'','','MR008C - Neoadjuvant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,99000,NULL,'',1054,'N','N','Y',1054,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0023','H','',0,0,'','','MR008D - Additional fractions - 15 Max upto(Every additional fraction at Rs.2500 per Fraction)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41300,NULL,'',1055,'N','N','Y',1055,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0024','H','',0,0,'','','MR010A - SRT / SBRT with IGRT (Stereotacatic radiotherapy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,90200,NULL,'',1056,'N','N','Y',1056,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0025','H','',0,0,'','','MR010B - Additional fractions - 4Every additional fraction at Rs.11000 per Fraction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48400,NULL,'',1057,'N','N','Y',1057,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0026','H','',0,0,'','','MR011A - SRS with IGRT (Stereotacatic radiotherapy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,77000,NULL,'',1058,'N','N','Y',1058,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0027','H','',0,0,'','','MR012A - Respiratory Gating along with Linear Accelerator planning','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,71500,NULL,'',1059,'N','N','Y',1059,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0028','H','',0,0,'','','MR012B - Additional fractions - 10 Max uptoEvery additional fraction at Rs.3500 per Fraction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38500,NULL,'',1060,'N','N','Y',1060,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0029','H','',0,0,'','','MR013A - Intracavitory','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3900,NULL,'',1061,'N','N','Y',1061,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0030','H','',0,0,'','','MR013B - Intraluminal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3900,NULL,'',1062,'N','N','Y',1062,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0031','H','',0,0,'','','MR013C - Endobiliary','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3900,NULL,'',1063,'N','N','Y',1063,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0032','H','',0,0,'','','MR013D - Endobronchial','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3900,NULL,'',1064,'N','N','Y',1064,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0033','H','',0,0,'','','MR013E - CVS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3900,NULL,'',1065,'N','N','Y',1065,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0034','H','',0,0,'','','MR014A - Interstitial / Intracavitary complex planning like CT or MR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,46200,NULL,'',1066,'N','N','Y',1066,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0035','H','',0,0,'','','MR014B - Surface Mould / Intracavitary complex planning like CT or MR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,46200,NULL,'',1067,'N','N','Y',1067,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0036','H','',0,0,'','','MR014C - Additional fractions - 11','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20700,NULL,'',1068,'N','N','Y',1068,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0037','H','',0,0,'','','MR015A - large Dose scan/ Pre Ablation - calculation of treatment','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11400,NULL,'',1069,'N','N','Y',1069,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0038','H','',0,0,'','','MR015B - Ablation of residual disease any risk','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16900,NULL,'',1070,'N','N','Y',1070,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0039','H','',0,0,'','','MR015GJA - CT guided ICR (Intra Cavitory RT)in addition to EBRT(For 2 weeks(weekly upto 66 Gray)) (Payment  fraction - 5750 rs per Week )','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11500,NULL,'',1071,'N','N','Y',1071,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0040','H','',0,0,'','','MR015GJB - CT guided Interstitial RT in addition to EBRT(For 2 to 3 days(6hourly two fraction per day for two days ) (Payment  fraction - 8250 rs if only 1 Day  given)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16500,NULL,'',1072,'N','N','Y',1072,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0041','H','',0,0,'','','MR015GJC - Intraluminal Brachytherapy in addition to EBRT (For 2 weeks(6.5 x 2 up to 55 Gray)) (Payment  fraction - 5750 rs per Week )','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11500,NULL,'',1073,'N','N','Y',1073,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0042','H','',0,0,'','','MR015GJD - MRI guided ICR in addition to EBRT(For 2 weeks (weekly upto 66 Gray)) (Payment  fraction - 8250 rs per Week )','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16500,NULL,'',1074,'N','N','Y',1074,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0043','H','',0,0,'','','MR015GJE - MRI guided Interstial RT in addition to EBRT(For 2 to 3 days(6hourly two fraction per day for two days ) (Payment  fraction - 8250 rs if only 1 Day  given)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16500,NULL,'',1075,'N','N','Y',1075,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0044','H','',0,0,'','','MR015GJF - Ii. Hdr - one application and multiple dose fractions (For 5 Days) (Payment  fraction - 2300 rs per Day )','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11500,NULL,'',1076,'N','N','Y',1076,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0045','H','',0,0,'','','MR015GJG - Ii. Hdr per application(Consider whole Package amount For 2 to 5 Weeks)(Payment  fraction - 2300 rs per Week if less than 2 weeks given)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11500,NULL,'',1077,'N','N','Y',1077,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0046','H','',0,0,'','','MR016A - Ablation of residual neck disease low/intermediate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18000,NULL,'',1078,'N','N','Y',1078,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0047','H','',0,0,'','','MR016GJA - Gamma Knife / Cyber Knife(Consider whole Package amount For 1 Day)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,115000,NULL,'',1079,'N','N','Y',1079,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0048','H','',0,0,'','','MR017A - Ablation for metastatic disease, High risk','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22400,NULL,'',1080,'N','N','Y',1080,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0049','H','',0,0,'','','MR017GJA - 3DCRT (3 Dimentional Conformal RT)(Consider whole Package amount For 6-7 Weeks) (Payment  fraction - 10000 rs per Week if less than 6 weeks given)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,70000,NULL,'',1081,'N','N','Y',1081,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0050','H','',0,0,'','','MR017GJB - Electron Boost(For 2 weeks) (Payment  fraction - 2500 rs per Week )','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1082,'N','N','Y',1082,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0051','H','',0,0,'','','MR017GJC - Electron treatment curative(Consider whole Package amount For 6-7 Weeks) (Payment  fraction - 7142 rs per Week if less than 6 weeks given)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1083,'N','N','Y',1083,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0052','H','',0,0,'','','MR017GJD - Rapidarc/VMAT(Consider whole Package amount For 6-7 Weeks) (Payment  fraction - 14285 rs per Week if less than 6 weeks given)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,100000,NULL,'',1084,'N','N','Y',1084,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0053','H','',0,0,'','','MR017GJE - SBRT (Sterotactic Beam RT)(Consider whole Package amount For 6-7 Weeks) (Payment  fraction - 15714 rs per Week if less than 6 weeks given)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,110000,NULL,'',1085,'N','N','Y',1085,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0054','H','',0,0,'','','MR018A - Ablation for metastatic disease, High risk','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30100,NULL,'',1086,'N','N','Y',1086,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0055','H','',0,0,'','','MR018GJA - Radio Iodine Therapy(Package amount per Dose)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1087,'N','N','Y',1087,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0056','H','',0,0,'','','MR019A - Ablation for metastatic disease, High risk','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34500,NULL,'',1088,'N','N','Y',1088,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0057','H','',0,0,'','','MR019GJA - SRS (Stereotactic Radiosurgery)(Consider whole Package amount For 1 Day)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,110000,NULL,'',1089,'N','N','Y',1089,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0058','H','',0,0,'','','MR019GJB - SRT (Stereotactic Radiotherapy)(For 6 weeks) (Payment  fraction - 18333 rs per Week )','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,110000,NULL,'',1090,'N','N','Y',1090,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0059','H','',0,0,'','','MR020A - Ablation for metastatic disease, High risk','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1091,'N','N','Y',1091,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0060','H','',0,0,'','','MR020GJA - Radical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',1092,'N','N','Y',1092,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0061','H','',0,0,'','','MR020GJB - Adjuvant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',1093,'N','N','Y',1093,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0062','H','',0,0,'','','MR020GJC - Neoadjuvant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',1094,'N','N','Y',1094,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0063','H','',0,0,'','','MR021GJA - Pre Bonemarrow/Stem Cell Transplant(Consider whole Package amount For 6-7 Weeks) (Payment  fraction - 9528 rs per Week if less than 6 weeks given)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,66700,NULL,'',1095,'N','N','Y',1095,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'MRPM','','MRPM0064','H','',0,0,'','','SE040A - GA / EUA separate add on package','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',1096,'N','N','Y',1096,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'NARC','','NARC0001','H','',0,0,'','','FENTANYL  CITRATE 10 ML INJ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NARC','','NARC0002','H','',0,0,'','','FENTANYL  CITRATE 2 ML INJ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NARC','','NARC0003','H','',0,0,'','','FENTANYL PATCH 25 MCG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',460,460,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NARC','','NARC0004','H','',0,0,'','','FENTANYL PATCH 50 MCG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',720,720,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NARC','','NARC0005','H','',0,0,'','','GASTROPAQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',925,925,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NARC','','NARC0006','H','',0,0,'','','INJ MORPHINE SULPHATE 10 MG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',26,26,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NARC','','NARC0007','H','',0,0,'','','KETAMIN 10 ML','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',120,120,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NARC','','NARC0008','H','',0,0,'','','PENTAZOCIN INJ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',40,40,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NARC','','NARC0009','H','',0,0,'','','TAB MORPHINE SULPHATE 10 MG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',56,56,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NARC','','NARC0010','H','',0,0,'','','TAB MORPHINE SULPHATE 30 MG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',118,118,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NECG','','NECG0001','H','',0,0,'','','Brain Perfusion SPECT Scan with Technetium\n99m radiopharmaceuticals.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8798,8798,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NECG','','NECG0002','H','',0,0,'','','Radionuclide Cisternography for CSF leak','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3366,3366,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NEPP','','NEPP0001','H','',0,0,'','','ACUTE PERITONEAL DIALYSIS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0002','H','',0,0,'','','AV FISTULA - PACKAGE B- BRACHIOCEPHALIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13000,13000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0003','H','',0,0,'','','Central/ IJV Catheterisation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0004','H','',0,0,'','','CRRT Therapy (12 HOURS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0005','H','',0,0,'','','DIALYSIS CHARGE - COVID','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0006','H','',0,0,'','','DIALYSIS CONSUMABLE CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0007','H','',0,0,'','','Exchange Transfusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0008','H','',0,0,'','','Femoral Vein Catheterization','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0009','H','',0,0,'','','HAEMODIALYSIS EMERGENCY PROCEDURE CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0010','H','',0,0,'','','HAEMODIALYSIS PROCEDURE CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',750,750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0011','H','',0,0,'','','HD CATHETER INSERTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',4400,4400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0012','H','',0,0,'','','HD CATHETER(PERM CATH INSERTION) GLIDE PATH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',38500,38500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0013','H','',0,0,'','','High Risk Haemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0014','H','',0,0,'','','ICU OPD DIALYSIS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6000,6000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0015','H','',0,0,'','','PERM CATH INSERTION GLIDE PATH HIGH RISK','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',46750,46750,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0016','H','',0,0,'','','PERM CATH INSERTION HIGH RISK (WITHOUT CATHETER)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',23000,23000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0017','H','',0,0,'','','PERMANENT CATHETER INSERTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',30000,30000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0018','H','',0,0,'','','PERMCATH REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0019','H','',0,0,'','','PLASMA PHERESIS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0020','H','',0,0,'','','RENAL BIOPSY ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7500,7500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0021','H','',0,0,'','','ROUTINE COVID DIALYSIS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0022','H','',0,0,'','','ROUTINE OPD DIALYSIS PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',1600,1600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0023','H','',0,0,'','','SLED DIALYSIS EMERGENCY UP TO 6 HOURS ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5500,5500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0024','H','',0,0,'','','SLED DIALYSIS PER HOUR (AFTER 6 HOURS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0025','H','',0,0,'','','SLED DIALYSIS UP TO 6 HOURS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEPP','','NEPP0026','H','',0,0,'','','USG Guided Renal Biopsy - Radiologist','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10001','H','',0,0,'','','EEG CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',900,900,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10002','H','',0,0,'','','EEG- PORTABLE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2400,2400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10003','H','',0,0,'','','EMG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10004','H','',0,0,'','','EMG- PORTABLE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2800,2800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10005','H','',0,0,'','','EVOKED POTENTIAL BEAR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10006','H','',0,0,'','','EVOKED POTENTIAL VER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10007','H','',0,0,'','','NCV - FOUR LIMBS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1600,1600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10008','H','',0,0,'','','NCV - ONE LIMB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10009','H','',0,0,'','','NCV - PORTABLE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2400,2400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10010','H','',0,0,'','','NCV - THREE LIMBS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1300,1300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10011','H','',0,0,'','','NCV -TWO LIMBS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10012','H','',0,0,'','','NEOSTIGMINE TEST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10013','H','',0,0,'','','REPETITIVE NERVE STIMULATION --BILATERAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10014','H','',0,0,'','','SSEP REPETITIVE NERVE STIMULATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10015','H','',0,0,'','','PURE TONE AUDIOMETRY (PTA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','thims','2025-10-08 11:41:44','I','N',99,'','','','','thims','2025-10-08 11:41:44','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10016','H','',0,0,'','','VEMP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','thims','2025-10-08 11:42:37','I','N',99,'','','','','thims','2025-10-08 11:42:37','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10017','H','',0,0,'','','VIDEONYSTAGMOGRAPHY (VNG)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','thims','2025-10-08 11:43:03','I','N',99,'','','','','thims','2025-10-08 11:43:03','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10018','H','',1,0,'','','VIDEO HEAD IMPULSE TEST (VHIT)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','thims','2025-10-08 11:47:07','I','N',99,'','','','','thims','2025-10-08 11:43:32','thims','2025-10-08 11:47:07'),(0,0,'NEU1','','NEU10019','H','',1,0,'','','STABILOMETRY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','shweta','2025-10-08 18:17:59','I','N',99,'','','','','thims','2025-10-08 11:43:56','shweta','2025-10-08 18:17:59'),(0,0,'NEU1','','NEU10020','H','',0,0,'','','OTOACOUSTIC EMISSIONS (OAE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','thims','2025-10-08 11:44:25','I','N',99,'','','','','thims','2025-10-08 11:44:25','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10021','H','',0,0,'','','CRANIO-CERVICAL-GRAPHY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','thims','2025-10-08 11:44:47','I','N',99,'','','','','thims','2025-10-08 11:44:47','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10022','H','',0,0,'','','ELECTROCOCHLEOGRAPHY (ECOG)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','thims','2025-10-08 11:45:15','I','N',99,'','','','','thims','2025-10-08 11:45:15','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10023','H','',0,0,'','','REFLEX/TYMP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','thims','2025-10-08 11:45:34','I','N',99,'','','','','thims','2025-10-08 11:45:34','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10024','H','',1,0,'','','CRANIOCORPOGRAPHY (CCG)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','thims','2025-10-08 14:16:24','I','N',99,'','','','','thims','2025-10-08 11:47:30','thims','2025-10-08 14:16:24'),(0,0,'NEUS','','NEUS0001','H','',0,0,'','','Anterior Cx Discodectomy & bone grafting+ fusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0002','H','',0,0,'','','Bilat Decompressive Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0003','H','',0,0,'','','BRACHIAL PLEXUS SURGERY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0004','H','',0,0,'','','BURR HOLE CRANIOTOMY FOR SDH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',1,1,NULL,'',8,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0005','H','',0,0,'','','Burr Holes for Ch SDH / Abscess','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0006','H','',0,0,'','','Corpectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0007','H','',0,0,'','','Cranioplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0008','H','',0,0,'','','Craniotomy - A.V.Malformation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0009','H','',0,0,'','','Craniotomy - Abscess/ Cysts','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0010','H','',0,0,'','','Craniotomy - Acoustic Neuroma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0011','H','',0,0,'','','Craniotomy - Aneurysm','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0012','H','',0,0,'','','Craniotomy - Brain Stem Tumor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0013','H','',0,0,'','','Craniotomy - Contusions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0014','H','',0,0,'','','Craniotomy - Craniopharyngioma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0015','H','',0,0,'','','Craniotomy - Extradural / Subdural','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0016','H','',0,0,'','','Craniotomy - for CSF Rhinorrhea','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0017','H','',0,0,'','','Craniotomy - lntracerebral Hematoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0018','H','',0,0,'','','Craniotomy - Pituitary Tumor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0019','H','',0,0,'','','Craniotomy - Post. Fossa Tumor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0020','H','',0,0,'','','Craniotomy - Tumor Glioma- Supratentorial','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0021','H','',0,0,'','','Craniotomy - Vascular Tumor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0022','H','',0,0,'','','Craniotomy -Chronic Subdural Hematoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0023','H','',0,0,'','','Craniotomy for Depressed Fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0024','H','',0,0,'','','Decompressive Craniotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0025','H','',0,0,'','','External Ventricular Drain (EVD)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0026','H','',0,0,'','','EXTERNAL VENTRICULAR DRAINAGE FOR IVH / HYDROCEPHALUS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0027','H','',0,0,'','','Meningioma - infradural','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0028','H','',0,0,'','','Meningioma - Supradural','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0029','H','',0,0,'','','Microdiscectomy - More than II Levels','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0030','H','',0,0,'','','Neuro-Endoscopic Skull Base Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0031','H','',0,0,'','','Operation for Canal Stenosis (Lumbar/ Cervical)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0032','H','',0,0,'','','Peripheral Nerve Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0033','H','',0,0,'','','POST FOSSA SURGERY WITH DUROPLASTY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0034','H','',0,0,'','','Repair of Encephalocele','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0035','H','',0,0,'','','Repair of Meningocele','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0036','H','',0,0,'','','Repair of Meningomyelocele','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0037','H','',0,0,'','','Revision of Shunt','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0038','H','',0,0,'','','Shunt for Hydro Cephalus(V.P.Shunt)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0039','H','',0,0,'','','Spinal cord tumour - extradural','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0040','H','',0,0,'','','Spinal cord tumour - intradural','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0041','H','',0,0,'','','Spinal Dysraphism','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0042','H','',0,0,'','','Spinal fusion anterior - 2 to 3 vertebral segments','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0043','H','',0,0,'','','Spinal fusion anterior - 4 to 7 vertebral segments','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0044','H','',0,0,'','','Spinal fusion anterior - 8 or more vertebral segments','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0045','H','',0,0,'','','Spinal fusion posterior - 13 or more vertebral segments','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0046','H','',0,0,'','','Spinal fusion posterior - 7 to 12 vertebral segments','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0047','H','',0,0,'','','Spinal fusion posterior - up to 6 vertebral segments','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0048','H','',0,0,'','','Spinal Instrumentation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0049','H','',0,0,'','','Spinal Tumor/ Hematoma / Abscess','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0050','H','',0,0,'','','STEREOTACTIC BIOPSY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0051','H','',0,0,'','','Trans Sphenoidal Pituitary / Sellar Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0052','H','',0,0,'','','Ventric Tap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0053','H','',0,0,'','','Ventriculo Auricular Shunt','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NEUS','','NEUS0054','H','',0,0,'','','Vertebroplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'NFCG','','NFCG0001','H','',0,0,'','','Leukemia panel /Lymphoma panel','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1536,1536,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NFCG','','NFCG0002','H','',0,0,'','','PNH Panel-CD55,CD59','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0001','H','',0,0,'','','Partial Nephrectomy -open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0002','H','',0,0,'','','Partial Nephrectomy-laproscopic/endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14490,14490,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0003','H','',0,0,'','','Nephrolithomy -open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0004','H','',0,0,'','','Nephrolithomy -laproscopic/endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14000,14000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0005','H','',0,0,'','','Pyelolithotomy-open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13000,13000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0006','H','',0,0,'','','Pyelolithotomy -laproscopic/endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10580,10580,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0007','H','',0,0,'','','Operations for Hydronephrosis -pyeloplasty open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18400,18400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0008','H','',0,0,'','','Operations for Hydronephrosis -pyeloplasty\nLap/endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19000,19000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0009','H','',0,0,'','','Operations for Hydronephrosis Endoplyelotomy\nantegrade','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20000,20000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0010','H','',0,0,'','','Operations for Hydronephrosis Endoplyelotomy\nretrograde','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20000,20000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0011','H','',0,0,'','','Operations for Hydronephrosis -\nureterocalicostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18000,18000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0012','H','',0,0,'','','Operations for Hydronephrosis-Ileal ureter','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18000,18000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0013','H','',0,0,'','','Open Drainage of Perinephric Abscess','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8000,8000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0014','H','',0,0,'','','Percutaneous Drainage of Perinephric Abscess -\nUltrasound guided','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5175,5175,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0015','H','',0,0,'','','Cavernostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9775,9775,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0016','H','',0,0,'','','Operations for Cyst of the Kidney -open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11960,11960,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0017','H','',0,0,'','','Operations for Cyst of the Kidney -\nLap/endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14030,14030,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0018','H','',0,0,'','','Ureterolithotomy -open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13248,13248,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0019','H','',0,0,'','','Ureterolithotomy-Lap/Endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10000,10000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0020','H','',0,0,'','','Nephroureterectomy open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16100,16100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0021','H','',0,0,'','','Nephroureterectomy -Lap/Endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16100,16100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0022','H','',0,0,'','','Operations for Ureter for -Double Ureters','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19000,19000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0023','H','',0,0,'','','Operations for Ureter -for Ectopia of Single\nUreter','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18000,18000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0024','H','',0,0,'','','Operations for Vesico- ureteric Reflux -Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18000,18000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0025','H','',0,0,'','','Operations for Vesico- ureteric Reflux-\nLap/Endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18000,18000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0026','H','',0,0,'','','Operations for Vesico- ureteric Reflux/ Urinary\nincontinence with bulking agents','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20700,20700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0027','H','',0,0,'','','Ureterostomy - Cutaneous','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0028','H','',0,0,'','','Uretero-Colic anastomosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16000,16000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0029','H','',0,0,'','','Formation of an Ileal Conduit','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17250,17250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0030','H','',0,0,'','','Ureteric Catheterisation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',690,690,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0031','H','',0,0,'','','Biopsy of Bladder (Cystoscopic)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0032','H','',0,0,'','','Cysto-Litholapaxy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10925,10925,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0033','H','',0,0,'','','Operations for Injuries of the Bladder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10000,10000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0034','H','',0,0,'','','Suprapubic Drainage (Cystostomy/vesicostomy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5400,5400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0035','H','',0,0,'','','Simple Cystectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15525,15525,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0036','H','',0,0,'','','Diverticulectomy -open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16000,16000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0037','H','',0,0,'','','Diverticulectomy- Lap/Endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18400,18400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0038','H','',0,0,'','','Diverticulectomy -Endoscopic incision of neck','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1725,1725,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0039','H','',0,0,'','','Augmentation Cystoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6670,6670,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0040','H','',0,0,'','','Operations for Extrophy of the Bladder- Single\nstage repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22300,22300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0041','H','',0,0,'','','Operations for Extrophy of the Bladder-\nMultistage repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20815,20815,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0042','H','',0,0,'','','Operations for Extrophy of the Bladder- simple\ncystectomy with urinary diversion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20250,20250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0043','H','',0,0,'','','Repair of Ureterocoel -Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13800,13800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0044','H','',0,0,'','','Repair of Ureterocoel -Lap/Endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14375,14375,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0045','H','',0,0,'','','Repair of Ureterocoel -Endoscopic incision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13000,13000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0046','H','',0,0,'','','Open Suprapubic Prostatectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20700,20700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0047','H','',0,0,'','','Open Retropubic Prostatectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20125,20125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0048','H','',0,0,'','','Transurethral Resection of Prostate (TURP)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16767,16767,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0049','H','',0,0,'','','Urethroscopy/ Cystopanendoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4140,4140,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0050','H','',0,0,'','','Internal urethrotomy -optical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5750,5750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0051','H','',0,0,'','','Internal urethrotomy -Core through urethroplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11040,11040,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0052','H','',0,0,'','','Urethral Reconstruction -End to end ansatamosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3450,3450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0053','H','',0,0,'','','Urethral Reconstruction - substitution\nurethroplasty (Transpubic urethroplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19550,19550,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0054','H','',0,0,'','','Abdomino Perineal urethroplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14000,14000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0055','H','',0,0,'','','Posterior Urethral Valve fulguration.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11270,11270,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0056','H','',0,0,'','','Operations for Incontinence of Urine - Male -\nOpen','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17250,17250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0057','H','',0,0,'','','Operations for Incontinence of Urine - Male -\nSling','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18400,18400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0058','H','',0,0,'','','Operations for Incontinence of Urine - Male-\nBulking agent','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19435,19435,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0059','H','',0,0,'','','Operations for Incontinence of Urine - Female -\nOpen','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17250,17250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0060','H','',0,0,'','','Operations for Incontinence of Urine - Female-\nSling','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18400,18400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0061','H','',0,0,'','','Operations for Incontinence of Urine - Female-\nBulking agent','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19435,19435,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0062','H','',0,0,'','','Reduction of Paraphimosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1725,1725,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0063','H','',0,0,'','','Circumcision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0064','H','',0,0,'','','Meatotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2346,2346,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0065','H','',0,0,'','','Meatoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3220,3220,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0066','H','',0,0,'','','Operations for Hypospadias + Chordee Correction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9200,9200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0067','H','',0,0,'','','Operations for Hypospadias - Second Stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0068','H','',0,0,'','','Operations for Hypospadias -  One Stage Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9200,9200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0069','H','',0,0,'','','Operations for Crippled Hypospadias','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0070','H','',0,0,'','','Operations for Epispadias _primary repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12593,12593,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0071','H','',0,0,'','','Operations for Epispadias-crippled epispadias','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11385,11385,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0072','H','',0,0,'','','Partial Amputation of the Penis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9688,9688,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0073','H','',0,0,'','','Total amputation of the Penis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10800,10800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0074','H','',0,0,'','','Orchidectomy-Simple','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8798,8798,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0075','H','',0,0,'','','Orchidectomy -Radical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10868,10868,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0076','H','',0,0,'','','Post Radical Orchidectomy retroperitoneal lymph\nnode dissection.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14000,14000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0077','H','',0,0,'','','Epididymectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8000,8000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0078','H','',0,0,'','','Adreneclectomy Unilateral/Bilateral for\nTumour/For Carcinoma- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22770,22770,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0079','H','',0,0,'','','Adreneclectomy Unilateral/Bilateral for\nTumour/For Carcinoma -Lap/Endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14375,14375,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0080','H','',0,0,'','','Operations for Hydrocele - Unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5865,5865,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0081','H','',0,0,'','','Operations for Hydrocele - Bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8556,8556,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0082','H','',0,0,'','','Operation for Torsion of Testis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0083','H','',0,0,'','','Micro-surgical Vasovasostomy /Vaso epidedymal\nansatamosis.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11040,11040,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0084','H','',0,0,'','','Operations for Varicocele Unilateral-\nMicrosurgical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7705,7705,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0085','H','',0,0,'','','Operations for Varicocele Palomo?s Unilateral -\nLap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9200,9200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0086','H','',0,0,'','','Operations for Varicocele Bilateral --\nMicrosurgical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12650,12650,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0087','H','',0,0,'','','Operations for Varicocele Bilateral ? Lap/ Palomo','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14950,14950,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0088','H','',0,0,'','','Block Dissection of ilio-inguinal Nodes - One\nSide (For Ca-Penis)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6325,6325,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0089','H','',0,0,'','','Block Dissection of ilio-inguinal Nodes - Both\nSides (For Ca-Penis)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20700,20700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0090','H','',0,0,'','','Excision of Filarial Scrotum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0091','H','',0,0,'','','Kidney Transplantation (related)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3500,3500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0092','H','',0,0,'','','Kidney Transplantation (Spousal/ unrelated)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',143000,143000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0093','H','',0,0,'','','ABO incompatible Transplantation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',441000,441000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0094','H','',0,0,'','','Swap Transplantation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',349200,349200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0095','H','',0,0,'','','Kidney Transplant Graft Nephrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',53550,53550,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0096','H','',0,0,'','','Donor Nephrectomy (open)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',28750,28750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0097','H','',0,0,'','','Donor Nephrectomy (Laproscopic)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',41400,41400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0098','H','',0,0,'','','Cadaver Transplantation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',83300,83300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0099','H','',0,0,'','','Kidney Transplant with Native Kidney\nNephrectomy (Related)/ Unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',28000,28000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0100','H','',0,0,'','','Kidney Transplant with Native Kidney\nNephrectomy (Related)/ Bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',85000,85000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0101','H','',0,0,'','','Kidney Transplant with Native Kidney\nNephrectomy  (Spousal/ Unrelated) Unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',85000,85000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0102','H','',0,0,'','','Kidney Transplant with Native Kidney\nNephrectomy  (Spousal/ Unrelated) Bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',85000,85000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0103','H','',0,0,'','','Post-Transplant Collection drainage for\nLymphocele (open)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6800,6800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0104','H','',0,0,'','','Post-Transplant Collection drainage for\nLymphocele (percutaneous)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6750,6750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0105','H','',0,0,'','','Post-Transplant Collection drainage for\nLymphocele (Laproscopic)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7650,7650,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0106','H','',0,0,'','','Arteriovenous Fistula for Haemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2300,2300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0107','H','',0,0,'','','Arteriovenous Shunt for Haemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3500,3500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0108','H','',0,0,'','','Jugular Catheterization for  Haemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0109','H','',0,0,'','','Subclavian Catheterization for  Haemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2100,2100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0110','H','',0,0,'','','One sided (single Lumen) Femoral\nCatheterization for  Haemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0111','H','',0,0,'','','Bilateral  (single Lumen) Femoral Catheterization\nfor  Haemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0112','H','',0,0,'','','Double  Lumen Femoral  Catheterization for\nHaemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1850,1850,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0113','H','',0,0,'','','Permcath Insertion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2520,2520,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0114','H','',0,0,'','','Arterio venous Prosthetic Graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1850,1850,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0115','H','',0,0,'','','Single lumen Jugular Catheterization','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0116','H','',0,0,'','','Single lumen Subclavian Catheterization','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1650,1650,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0117','H','',0,0,'','','Plasma Exchange/ Plasma phresis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1725,1725,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0118','H','',0,0,'','','Open method CAPD catheter insertion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3150,3150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0119','H','',0,0,'','','Schlendinger method CAPD catheter insertion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3150,3150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0120','H','',0,0,'','','Sustained low efficiency hemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1250,1250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0121','H','',0,0,'','','Continuous Veno venous/Arteriovenous\nHemofilteration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2250,2250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0122','H','',0,0,'','','Hemodialysis for Sero negative cases','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1350,1350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0123','H','',0,0,'','','Hemodialysis for Sero  Positive cases','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1650,1650,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0124','H','',0,0,'','','Acute Peritoneal Dialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1450,1450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0125','H','',0,0,'','','Fistologram for Arteriovenous Fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0126','H','',0,0,'','','Ultrasound guided kidney Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',765,765,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0127','H','',0,0,'','','Fistula stenosis dilation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2700,2700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0128','H','',0,0,'','','Slow continuous Ultrafilteration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2250,2250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0129','H','',0,0,'','','PCNL - Unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18000,18000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0130','H','',0,0,'','','PCNL - Bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22500,22500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0131','H','',0,0,'','','Endoscopic Bulking agent  Inject','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0132','H','',0,0,'','','Testicular Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1955,1955,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0133','H','',0,0,'','','Radical Nephrectomy -Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17250,17250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0134','H','',0,0,'','','Radical Nephrectomy -Lap/Endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20700,20700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0135','H','',0,0,'','','Radical Nephrectomy plus IV thrombus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',23000,23000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0136','H','',0,0,'','','Radical Nephrectomy plus IV thrombus plus cardiac bypass.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',23000,23000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0137','H','',0,0,'','','Vesico Vaginal Fistula  Repair (Open)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16000,16000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0138','H','',0,0,'','','Vesico Vaginal Fistula  Repair  (Laproscopic)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22000,22000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0139','H','',0,0,'','','Radical Cystectomy -Ileal conduit','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17000,17000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0140','H','',0,0,'','','Radical Cystectomy - continent diversion.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0141','H','',0,0,'','','Radical Cystectomy ? Neo bladder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18500,18500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0142','H','',0,0,'','','Nephrectomy Simple -Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9067,9067,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0143','H','',0,0,'','','Nephrectomy Simple-lap/Endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12593,12593,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0144','H','',0,0,'','','Nephrostomy -Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10000,10000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0145','H','',0,0,'','','Nephrostomy -Lap/Endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10704,10704,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0146','H','',0,0,'','','Ureteric Re- implant for\nMegaureter/Vesicoureteric reflex/ uterocele (open)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10494,10494,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0147','H','',0,0,'','','Ureteric Re -implant for\nMegaureter/Vesicoureteric reflex/ uterocele (Laproscopic)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10494,10494,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0148','H','',0,0,'','','Partial Cystectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12420,12420,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0149','H','',0,0,'','','TURP & TUR Bladder Tumour','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15525,15525,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0150','H','',0,0,'','','TURP  with Cystolithotripsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17000,17000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0151','H','',0,0,'','','Closure of Urethral Fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11000,11000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0152','H','',0,0,'','','Orchidopexy - Unilateral -Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9867,9867,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0153','H','',0,0,'','','Orchidopexy - Unilateral- Lap/Endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12334,12334,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0154','H','',0,0,'','','Orchidopexy - Bilateral -Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12282,12282,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0155','H','',0,0,'','','Orchidopexy - Bilateral -Lap/Endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14500,14500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0156','H','',0,0,'','','Cystolithotomy -Suprapubic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9775,9775,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0157','H','',0,0,'','','Endoscopic Removal of Stone in Bladder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3450,3450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0158','H','',0,0,'','','Resection Bladder Neck Endoscopic /Bladder\nneck incision/transurethral incision on prostrate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10925,10925,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0159','H','',0,0,'','','Ureteroscopic Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10350,10350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0160','H','',0,0,'','','Urethroplasty 1st Stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10925,10925,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0161','H','',0,0,'','','Scrotal Exploration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8556,8556,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0162','H','',0,0,'','','Perineal Urethrostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4715,4715,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0163','H','',0,0,'','','Dilatation of Stricture Urethra under G.A.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0164','H','',0,0,'','','Dilatation of Stricture Urethra under LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1725,1725,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0165','H','',0,0,'','','Laproscopic Nephrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',30015,30015,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0166','H','',0,0,'','','Laproscopic partial Nephrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10000,10000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0167','H','',0,0,'','','Laproscopic pyelolithotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12650,12650,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0168','H','',0,0,'','','Laproscopic Pyeloplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9775,9775,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0169','H','',0,0,'','','Laproscopic surgery for  Renal cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9775,9775,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0170','H','',0,0,'','','Laproscopic ureterolithotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0171','H','',0,0,'','','Laproscopic Nephro ureterotectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13225,13225,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0172','H','',0,0,'','','Lithotripsy Extra corporeal shock wave.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19000,19000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0173','H','',0,0,'','','Uroflow Study (Uroflometry)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0174','H','',0,0,'','','Urodynamic Study (Cystometry)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',480,480,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0175','H','',0,0,'','','Cystoscopy with Retrograde Catheter -Unilateral\n/RGP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2803,2803,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0176','H','',0,0,'','','Cystoscopy with Retrograde Catheter - Bilateral\n/RGP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4300,4300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0177','H','',0,0,'','','Cystoscopy with Bladder Biopsy (Cold Cup\nBiopsy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3043,3043,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0178','H','',0,0,'','','Voiding-cysto-urethrogram  and  retrograde\nurethrogram (Nephrostogram)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',414,414,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0179','H','',0,0,'','','Radical prostatectomy-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17825,17825,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0180','H','',0,0,'','','Radical prostatectomy-Laproscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20125,20125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0181','H','',0,0,'','','Radical prostatectomy- Robotic (Robotic Partial\nNephrectomy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20125,20125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0182','H','',0,0,'','','Hollmium YAG Prostate Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0183','H','',0,0,'','','Hollmium YAG OIU','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4600,4600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0184','H','',0,0,'','','Hollmium YAG Core Through','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17250,17250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0185','H','',0,0,'','','Hollmium YAG Stone Lithotripsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10200,10200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0186','H','',0,0,'','','Green Light laser for prostate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17250,17250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0187','H','',0,0,'','','RIRS/ Flexible Ureteroscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6120,6120,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0188','H','',0,0,'','','Microscopic VEA/ Vaso-Vasostomy (for\nInfertility)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13500,13500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0189','H','',0,0,'','','Cystoscopic Botulinum Toxin Injection ( Over\nactive bladder/ Neurogenic bladder)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6120,6120,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0190','H','',0,0,'','','Peyronie?s disease ? Plaque excision with grafting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3400,3400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0191','H','',0,0,'','','High Intensity Focus Ultrasound (HIFU) (Robotic) for Carcinoma prostrate and renal cell\ncarcinoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4600,4600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0192','H','',0,0,'','','Prosthetic surgery for urinary incontinence','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2300,2300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0193','H','',0,0,'','','TRUS guided prostate biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',550,550,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0194','H','',0,0,'','','Ultra sound guided PCN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',720,720,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0195','H','',0,0,'','','Other Major Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NPCG','','NPCG0196','H','',0,0,'','','Other Minor Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6120,6120,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0197','H','',0,0,'','','Craniotomy and Evacuation of Haematoma -\nSubdural','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',45644,45644,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0198','H','',0,0,'','','Craniotomy and Evacuation of Haematoma -\nExtradural','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',45000,45000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0199','H','',0,0,'','','Evacuation /Excision of Brain Abscess by\ncraniotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',36000,36000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0200','H','',0,0,'','','Excision of Lobe (Frontal Temporal Cerebellum\netc.)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',36900,36900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0201','H','',0,0,'','','Excision of Brain Tumours -Supratentorial','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',35211,35211,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0202','H','',0,0,'','','Excision of Brain Tumours -Infratentorial','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',40500,40500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0203','H','',0,0,'','','Surgery of spinal Cord Tumours','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',40500,40500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0204','H','',0,0,'','','Ventriculoatrial /Ventriculoperitoneal Shunt','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22500,22500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0205','H','',0,0,'','','Twist Drill Craniostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4250,4250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0206','H','',0,0,'','','Subdural Tapping','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2456,2456,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0207','H','',0,0,'','','Ventricular Tapping','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2967,2967,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0208','H','',0,0,'','','Abscess Tapping','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2875,2875,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0209','H','',0,0,'','','Placement of ICP Monitor -','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2875,2875,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0210','H','',0,0,'','','Skull Traction Application','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2300,2300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0211','H','',0,0,'','','Lumber Pressure Monitoring','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4250,4250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0212','H','',0,0,'','','Vascular Malformations','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22000,22000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0213','H','',0,0,'','','Meningo Encephalocoele excision and repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0214','H','',0,0,'','','Meningomyelocoel Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22496,22496,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0215','H','',0,0,'','','C.S.F. Rhinorrhaea  Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25875,25875,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0216','H','',0,0,'','','Cranioplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22000,22000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0217','H','',0,0,'','','Anterior Cervical Dissectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16600,16600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0218','H','',0,0,'','','Brachial Plexus Exploration and neurotization','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15525,15525,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0219','H','',0,0,'','','Median Nerve Decompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14000,14000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0220','H','',0,0,'','','Peripheral Nerve Surgery ? Major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17250,17250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0221','H','',0,0,'','','Peripheral Nerve Surgery  Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8280,8280,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0222','H','',0,0,'','','Ventriculo-Atrial Shunt','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11615,11615,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0223','H','',0,0,'','','Nerve Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6900,6900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0224','H','',0,0,'','','Brain Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5808,5808,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0225','H','',0,0,'','','Anterior Cervical Spine Surgery with fusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',28980,28980,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0226','H','',0,0,'','','Anterio Lateral Decompression  of spine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25875,25875,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0227','H','',0,0,'','','Brain Mapping','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',837,837,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0228','H','',0,0,'','','Cervical or Dorsal  or Lumbar Laminectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22000,22000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0229','H','',0,0,'','','Combined Trans-oral Surgery & CV Junction\nFusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',31050,31050,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0230','H','',0,0,'','','C.V. Junction Fusion procedures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',27000,27000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0231','H','',0,0,'','','Depressed Fracture Elevation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22500,22500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0232','H','',0,0,'','','Lumbar Discectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',24840,24840,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0233','H','',0,0,'','','Endarterectomy  (Carotid)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20000,20000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0234','H','',0,0,'','','R.F. Lesion for Trigeminal Neuralgia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0235','H','',0,0,'','','Spasticity Surgery -','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',35708,35708,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0236','H','',0,0,'','','Spinal Fusion Procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',27000,27000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0237','H','',0,0,'','','Spinal Intra Medullary Tumours','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',31050,31050,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0238','H','',0,0,'','','Spinal Bifida Surgery Major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18975,18975,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0239','H','',0,0,'','','Spinal Bifida Surgery Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0240','H','',0,0,'','','Stereotaxic Procedures- biopsy/aspiration of cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20700,20700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0241','H','',0,0,'','','Trans Sphenoidal Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',27000,27000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0242','H','',0,0,'','','Trans Oral Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',27000,27000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0243','H','',0,0,'','','Implantation of DBS -One electrode','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',34500,34500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0244','H','',0,0,'','','Implantation of DBS -two electrodes','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',40250,40250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0245','H','',0,0,'','','Endoscopic aqueductoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0246','H','',0,0,'','','Facial nerve reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',27000,27000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0247','H','',0,0,'','','Carotid stenting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',42263,42263,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0248','H','',0,0,'','','Cervical disc arthroplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',27600,27600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0249','H','',0,0,'','','Lumbar disc arthroplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13800,13800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0250','H','',0,0,'','','Corpus callostomy for Epilepsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',35000,35000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0251','H','',0,0,'','','Hemishpherotomy for Epilepsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',32200,32200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0252','H','',0,0,'','','Endoscopic CSF rhinorrhea repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',27000,27000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0253','H','',0,0,'','','Burr hole evacuation of chronic subdural\nhaematoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',21735,21735,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0254','H','',0,0,'','','Epilepsy surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',36225,36225,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0255','H','',0,0,'','','RF lesion for facet joint pain syndrome','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17250,17250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0256','H','',0,0,'','','Cervical laminoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',28800,28800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0257','H','',0,0,'','','Lateral mass C1-C2 screw fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22000,22000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0258','H','',0,0,'','','Microsurgical decompression for Trigeminal\nnerve','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',34200,34200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0259','H','',0,0,'','','Microsurgical decompression for hemifacial','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4646,4646,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0260','H','',0,0,'','','spasm','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0261','H','',0,0,'','','IC EC bypass procedures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',32000,32000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0262','H','',0,0,'','','Image guided craniotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',28980,28980,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0263','H','',0,0,'','','Baclofen pump implantation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',39000,39000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0264','H','',0,0,'','','Programmable VP shunt','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22500,22500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0265','H','',0,0,'','','Endoscopic sympathectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15396,15396,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0266','H','',0,0,'','','Lumber puncture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',207,207,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0267','H','',0,0,'','','External ventricular drainage (EVD)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4600,4600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0268','H','',0,0,'','','Endoscopic 3rd ventriculostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',36000,36000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0269','H','',0,0,'','','Endoscopic cranial surgery/Biopsy/aspiration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',28382,28382,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0270','H','',0,0,'','','Endoscopic discectomy (Lumbar, Cervical)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',35621,35621,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0271','H','',0,0,'','','Aneurysm coiling (Endovascular)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',34400,34400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0272','H','',0,0,'','','Surgery for skull fractures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',40000,40000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0273','H','',0,0,'','','Carpel Tunnel decompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0274','H','',0,0,'','','Clipping of intracranial aneurysm','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',24150,24150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0275','H','',0,0,'','','Surgery for intracranial Arteriovenous\nmalformarions(AVM)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',36000,36000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0276','H','',0,0,'','','Foramen magnum decompression for Chari\nMalformation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1100,1100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0277','H','',0,0,'','','Dorsal column stimulation for backache in failed\nback syndrome','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',28750,28750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0278','H','',0,0,'','','Surgery for recurrent disc prolapse/epidural\nfibrosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',28980,28980,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0279','H','',0,0,'','','Surgery for brain stem tumours','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',39589,39589,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0280','H','',0,0,'','','Decompressive craniotomy for hemishpherical\nacute subdural haematoma/brain swelling/large infarct','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',36000,36000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0281','H','',0,0,'','','Intra-arterial thrombolysis with TPA (for ischemic\nstroke )','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4600,4600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0282','H','',0,0,'','','Steriotactic aspiration of intracerebral haematoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',29291,29291,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0283','H','',0,0,'','','Endoscopic aspiration of intracerebellar\nhaematoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',36000,36000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0284','H','',0,0,'','','Steriotactic Radiosurgery for brain pathology(X\nknife/Gamma ) - ONE session','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',27560,27560,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0285','H','',0,0,'','','Steriotactic Radiosurgery for brain pathology(X\nknife / Gamma knife -Two  or  more sessions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',57500,57500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0286','H','',0,0,'','','Chemotheraphy wafers for malignant brain\ntumors','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14450,14450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0287','H','',0,0,'','','Battery Placement for DBS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22000,22000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0288','H','',0,0,'','','Baclofen pump implantation for spasticity','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17330,17330,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0289','H','',0,0,'','','Peripheral Nerve tumor surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',21600,21600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0290','H','',0,0,'','','Surgery Intra Cranial Meningioma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20000,20000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0291','H','',0,0,'','','Surgery for Intracranial Schwannoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',31500,31500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0292','H','',0,0,'','','Surgery for Gliomas','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',40500,40500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0293','H','',0,0,'','','Surgery for Orbital tumors','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',36000,36000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0294','H','',0,0,'','','Surgery for Cranial (Skull) tumors','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',34650,34650,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0295','H','',0,0,'','','Surgery for Scalp AVM?s','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22500,22500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0296','H','',0,0,'','','Kyphoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',40000,40000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0297','H','',0,0,'','','Balloon Kyphoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',40000,40000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0298','H','',0,0,'','','Lesioning procedures for Parkinson?s disease,\nDystonia etc.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',35000,35000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0299','H','',0,0,'','','Other Major Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',38250,38250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NSCG','','NPCG0300','H','',0,0,'','','Other Minor Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15400,15400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NRCG','','NRCG0001','H','',0,0,'','','Cobalt 60 therapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',57375,57375,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NRCG','','NRCG0002','H','',0,0,'','','Radical therapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',61583,61583,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NRCG','','NRCG0003','H','',0,0,'','','Palliative therapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',21994,21994,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NRCG','','NRCG0004','H','',0,0,'','','Linear accelerator','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',26775,26775,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NRCG','','NRCG0005','H','',0,0,'','','Radical therapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',52785,52785,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NRCG','','NRCG0006','H','',0,0,'','','Palliative therapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',30792,30792,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NRCG','','NRCG0007','H','',0,0,'','','3 D Planning','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4888,4888,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NRCG','','NRCG0008','H','',0,0,'','','2 D Planing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4888,4888,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NRCG','','NRCG0009','H','',0,0,'','','IMRT(Intensity  Modulated radiotherapy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',90790,90790,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NRCG','','NRCG0010','H','',0,0,'','','SRT (Stereotactic radiotherapy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',54896,54896,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NRCG','','NRCG0011','H','',0,0,'','','SRS(Stereotactic radio surgery)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',72491,72491,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NRCG','','NRCG0012','H','',0,0,'','','IGRT(Image guided radiotherapy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',147016,147016,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NRCG','','NRCG0013','H','',0,0,'','','Respiratory Gating-alongwith Linear accelerator\nplanning','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',99000,99000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NRCG','','NRCG0014','H','',0,0,'','','Electron beam with Linear  accelerator','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',60726,60726,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NRCG','','NRCG0015','H','',0,0,'','','Tomotherapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',71460,71460,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NBCG','','NRCG0016','H','',0,0,'','','Intracavitory','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10557,10557,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NBCG','','NRCG0017','H','',0,0,'','','Interstitial','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',52785,52785,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NBCG','','NRCG0018','H','',0,0,'','','Intraluminal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8798,8798,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NBCG','','NRCG0019','H','',0,0,'','','Surface mould','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4180,4180,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NBCG','','NRCG0020','H','',0,0,'','','GLIADAL  WAFER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',84510,84510,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NCCG','','NRCG0021','H','',0,0,'','','Neoadjuvant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',863,863,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NCCG','','NRCG0022','H','',0,0,'','','Adjuvant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',863,863,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NCCG','','NRCG0023','H','',0,0,'','','Concurrent-chemoadiation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',920,920,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NCCG','','NRCG0024','H','',0,0,'','','Single drug','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',552,552,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NCCG','','NRCG0025','H','',0,0,'','','Multiple drugs','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',897,897,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NCCG','','NRCG0026','H','',0,0,'','','Targeted therapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',920,920,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NCCG','','NRCG0027','H','',0,0,'','','Chemoport facility','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',920,920,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NCCG','','NRCG0028','H','',0,0,'','','PICC line (peripherally inserted Central\ncanulisation)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',920,920,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0001','H','',0,0,'','','Serum Iron','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',90,90,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0002','H','',0,0,'','','Total Iron Binding Capacity','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',90,90,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0003','H','',0,0,'','','Serum Ferritin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0004','H','',0,0,'','','Vitamin B12 assay.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0005','H','',0,0,'','','Folic Acid assay.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0006','H','',0,0,'','','Extended Lipid Profile.( Total cholesterol,LDL,HDL,treigylcerides,Apo A1,Apo\nB,Lp(a) )','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',595,595,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0007','H','',0,0,'','','Apo A1.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0008','H','',0,0,'','','Apo B.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',199,199,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0009','H','',0,0,'','','Lp (a).','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',401,401,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0010','H','',0,0,'','','CD 3,4 and 8 counts','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',170,170,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0011','H','',0,0,'','','CD 3,4 and 8 percentage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',170,170,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0012','H','',0,0,'','','LDL.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',62,62,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0013','H','',0,0,'','','Homocysteine.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0014','H','',0,0,'','','HB Electrophoresis.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0015','H','',0,0,'','','Serum Electrophoresis.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',220,220,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0016','H','',0,0,'','','Fibrinogen.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',165,165,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0017','H','',0,0,'','','Chloride.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',60,60,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0018','H','',0,0,'','','Magnesium.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0019','H','',0,0,'','','GGTP.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',90,90,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0020','H','',0,0,'','','Lipase.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',239,239,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0021','H','',0,0,'','','Fructosamine.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',180,180,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0022','H','',0,0,'','','?2 microglobulin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',90,90,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0023','H','',0,0,'','','Catecholamines.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1050,1050,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'NUCG','','NUCG0024','H','',0,0,'','','Creatinine clearance.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',120,120,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OECG','','OECG0001','H','',0,0,'','','Atresia of Oesophagus and Tracheo Oesophageal\nFistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',28750,28750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OECG','','OECG0002','H','',0,0,'','','Operations for Replacement of Oesophagus by\nColon','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25000,25000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OECG','','OECG0003','H','',0,0,'','','Oesophagectomy for Carcinoma Easophagus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22500,22500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OECG','','OECG0004','H','',0,0,'','','Oesophageal Intubation (Mausseau Barbin Tube)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OECG','','OECG0005','H','',0,0,'','','Achalasia Cardia Transthoracic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14950,14950,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OECG','','OECG0006','H','',0,0,'','','Achalasia Cardia Abdominal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12650,12650,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OECG','','OECG0007','H','',0,0,'','','Oesophago Gastrectomy for mid 1/3 lesion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22046,22046,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OECG','','OECG0008','H','',0,0,'','','Heller?s Operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19750,19750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OECG','','OECG0009','H','',0,0,'','','Colon-Inter position or Replacement of\nOesophagus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22000,22000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OECG','','OECG0010','H','',0,0,'','','Oesophago Gastrectomy ? Lower Corringers\nprocedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',21390,21390,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OECG','','OECG0011','H','',0,0,'','','Other Major Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',24863,24863,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OECG','','OECG0012','H','',0,0,'','','Other Minor Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OETR','','OETR0001','H','',1,0,'','','INTRA TYMPANIC INJECTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','reception','2025-11-04 13:39:28','I','N',99,'','','','','vishal','2025-10-13 10:04:49','reception','2025-11-04 13:39:28'),(0,0,'OETR','','OETR0002','H','',0,0,'','','DLC CHARGE ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','riya','2025-11-02 11:17:18','I','N',99,'','','','','riya','2025-11-02 11:17:18','','0000-00-00 00:00:00'),(0,0,'OETR','','OETR0003','H','',0,0,'','','INTRA TYMPANIC INJECTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-11-04 13:40:52','I','N',99,'','','','','reception','2025-11-04 13:40:52','','0000-00-00 00:00:00'),(0,0,'OETR','','OETR0004','H','',1,0,'','','CASHLESS PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-11-05 18:53:55','I','N',99,'','','','','vishal','2025-11-05 18:53:38','vishal','2025-11-05 18:53:55'),(0,0,'OETR','','OETR0005','H','',0,0,'','','X-RAY SHOULDER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-11-08 14:32:39','I','N',99,'','','','','vishal','2025-11-08 14:32:39','','0000-00-00 00:00:00'),(0,0,'OGCG','','OGCG0001','H','',0,0,'','','Normal delivery with or without Episiotomy & P.\nrepair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8000,8000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0002','H','',0,0,'','','vacuum delivery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8625,8625,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0003','H','',0,0,'','','Forceps Delivery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9200,9200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0004','H','',0,0,'','','Cesarean Section','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14050,14050,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0005','H','',0,0,'','','Cesarean Hysterectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18975,18975,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0006','H','',0,0,'','','Rupture Uterus closure & repair with Tubal\nLigation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17250,17250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0007','H','',0,0,'','','Perforation of Uterus after D/E Laparotomy &\nClosure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13200,13200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0008','H','',0,0,'','','Laparotomy for Ectopic pregnancy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13800,13800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0009','H','',0,0,'','','Laparotomy-peritonitis Lavage and Drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10350,10350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0010','H','',0,0,'','','Salphingo-Oophorectomy/ Oophorectomy\nLaproscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10000,10000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0011','H','',0,0,'','','Ovarian Cystectomy-laparoscopic.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10350,10350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0012','H','',0,0,'','','Ovarian Cystectomy -laparotomy.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13200,13200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0013','H','',0,0,'','','Salpingo-Oophorectomy-laparotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11520,11520,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0014','H','',0,0,'','','Laproscopic Broad Ligament Hematoma\nDrainage with repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6900,6900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0015','H','',0,0,'','','Exploration of perineal Haematoma & Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8000,8000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0016','H','',0,0,'','','Exploration of abdominal Haematoma  (after\nlaparotomy + LSCS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8050,8050,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0017','H','',0,0,'','','Manual Removal of Placenta','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3450,3450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0018','H','',0,0,'','','Examination under anesthesia (EUA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0019','H','',0,0,'','','Burst-abdomen Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9000,9000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0020','H','',0,0,'','','Gaping Perineal Wound Secondary Suturing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1490,1490,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0021','H','',0,0,'','','Gaping abdominal  wound Secondary Suturing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3105,3105,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0022','H','',0,0,'','','Complete perineal tear-repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2128,2128,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0023','H','',0,0,'','','Exploration of PPH-tear repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3500,3500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0024','H','',0,0,'','','Suction evacuation vesicular mole','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0025','H','',0,0,'','','Suction evacuation  Missed abortion/ incomplete\nabortion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5175,5175,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0026','H','',0,0,'','','Colpotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3450,3450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0027','H','',0,0,'','','Repair of post-coital tear/ perineal injury','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3508,3508,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0028','H','',0,0,'','','Excision of urethral caruncle','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3450,3450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0029','H','',0,0,'','','Shirodhkar/ Mc. Donald?s stitch','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3220,3220,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0030','H','',0,0,'','','Abdominal Hysterectomy with or without\nsalpingo-oophorectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15525,15525,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0031','H','',0,0,'','','Vaginal Hysterectomy (NDVH)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17250,17250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0032','H','',0,0,'','','Vaginal Hysterectomy with repairs (UV Prolapse)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16500,16500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0033','H','',0,0,'','','Myomectomy -laparotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14000,14000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0034','H','',0,0,'','','Myomectomy -laparoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6325,6325,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0035','H','',0,0,'','','Vaginoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14950,14950,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0036','H','',0,0,'','','Vulvectomy -Simple','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9200,9200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0037','H','',0,0,'','','Vulvectomy-Radical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9200,9200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0038','H','',0,0,'','','RVF  Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14000,14000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0039','H','',0,0,'','','Manchester Operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0040','H','',0,0,'','','Shirodkar?s  sling Operation or other sling\noperations for prolapse uterus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3450,3450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0041','H','',0,0,'','','Laparoscopic  sling operations for prolapse uterus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25200,25200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0042','H','',0,0,'','','Diagnostic Curettage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2236,2236,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0043','H','',0,0,'','','Cervical Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1620,1620,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0044','H','',0,0,'','','Polypectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1366,1366,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0045','H','',0,0,'','','Other-Minor Operation Endometrial','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2070,2070,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0046','H','',0,0,'','','Excision Vaginal Cyst/Bartholin Cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3105,3105,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0047','H','',0,0,'','','Excision Vaginal Septum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4600,4600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0048','H','',0,0,'','','Laparoscopy -Diagnostic with chromopertubation\nand or adhesiolysis and drilling','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4025,4025,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0049','H','',0,0,'','','Laparoscopy Sterilization','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3450,3450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0050','H','',0,0,'','','LAVH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22719,22719,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0051','H','',0,0,'','','Balloon  Temponade for PPH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2800,2800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0052','H','',0,0,'','','Total laparoscopic hysterectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22719,22719,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0053','H','',0,0,'','','Laparoscopic treatment of Ectopic pregnancy-\nsalpingectomy/salpinostomy conservative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9775,9775,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0054','H','',0,0,'','','Conisation of cervix','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3623,3623,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0055','H','',0,0,'','','Trachhelectomy of cervix for early CA cervix','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5500,5500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0056','H','',0,0,'','','Hysteroscopic cannulation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2875,2875,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0057','H','',0,0,'','','Laparotomy recannalization of Fallopian tubes-\n(Tubuloplasty)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22425,22425,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0058','H','',0,0,'','','Laparoscopic recannalization of Fallopian tubes-\n(Tubuloplasty)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19500,19500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0059','H','',0,0,'','','Colposcopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',862,862,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0060','H','',0,0,'','','Inversion of Uterus ? Vaginal Reposition','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0061','H','',0,0,'','','Inversion of Uterus ? Abdominal Reposition','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0062','H','',0,0,'','','Laparoscopic VVF Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25200,25200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0063','H','',0,0,'','','Abdominal VVF Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25200,25200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0064','H','',0,0,'','','Vaginal VVF Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25200,25200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0065','H','',0,0,'','','Interventional Ultrasonography (CVS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',792,792,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0066','H','',0,0,'','','Amniocentesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',880,880,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0067','H','',0,0,'','','Karyotyping','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0068','H','',0,0,'','','Thermal balloon ablation.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0069','H','',0,0,'','','Ultrasonographic myolysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10293,10293,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0070','H','',0,0,'','','Vaginal Myomectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10000,10000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0071','H','',0,0,'','','Intra Uterine Inseminition','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',920,920,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0072','H','',0,0,'','','ICSI','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0073','H','',0,0,'','','Laparotomy abdominal sacro-colpopexy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0074','H','',0,0,'','','Vaginal Colpopexy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19800,19800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0075','H','',0,0,'','','Laparoscopic abdominal sacro-colpopexy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18000,18000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0076','H','',0,0,'','','Laparotomy pelvic  Lymphadenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0077','H','',0,0,'','','Laparoscopic pelvic Lymphadenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3500,3500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0078','H','',0,0,'','','Endometrial aspiration cytology/biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',540,540,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0079','H','',0,0,'','','Transvaginal sonography (TVS for Follicular\nmonitioring /aspiration)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0080','H','',0,0,'','','laparoscopic treatment for stress incontinence','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0081','H','',0,0,'','','Transvaginal tapes for Stress incontinence','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13500,13500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0082','H','',0,0,'','','trans-obturator tapes for Stress incontinence','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11230,11230,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0083','H','',0,0,'','','Interventional radiographic  arterial embolization','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18000,18000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0084','H','',0,0,'','','Diagnostic cystoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2875,2875,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0085','H','',0,0,'','','Staging laparotomy surgery for CA Ovary','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6325,6325,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0086','H','',0,0,'','','Internal  Iliac ligation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3393,3393,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0087','H','',0,0,'','','stepwise devascularisation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9200,9200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0088','H','',0,0,'','','Assisted breech delivery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10925,10925,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0089','H','',0,0,'','','Intra-uterine fetal blood transfusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',21275,21275,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0090','H','',0,0,'','','Hysteroscopy TCRE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8500,8500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0091','H','',0,0,'','','Hysteroscopy Removal of IUCD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7500,7500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0092','H','',0,0,'','','Hysteroscopy Removal of Septum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11000,11000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0093','H','',0,0,'','','Hysteroscopy Diagnostic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7500,7500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0094','H','',0,0,'','','Radical  Hysterectomy for Cancer cervix with\npelvic lymphadenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8500,8500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0095','H','',0,0,'','','Radical  Hysterectomy for Cancer endometrium extending to cervix with pelvic and para aortic\nlymphadenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8500,8500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0096','H','',0,0,'','','Sterilization Post partum (minilap)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3750,3750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0097','H','',0,0,'','','Sterilization interval (minilap)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3750,3750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0098','H','',0,0,'','','Ultrasonography Level II scan/Anomaly Scan','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0099','H','',0,0,'','','Fetal nuchal Translucency','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0100','H','',0,0,'','','Fetal Doppler/Umblical Doppler/Uterine Vessel\nDoppler','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',850,850,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0101','H','',0,0,'','','MTP- 1st Trimester','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0102','H','',0,0,'','','MTP - 2nd Trimester','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4370,4370,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0103','H','',0,0,'','','Quadruple test','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0104','H','',0,0,'','','Biophysical score','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0105','H','',0,0,'','','Other Major Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',26800,26800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OGCG','','OGCG0106','H','',0,0,'','','Other Minor Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ONCS','','ONCS0001','H','',0,0,'','','Abdominal Wall Nodule Major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0002','H','',0,0,'','','Abdominal Wall nodule Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0003','H','',0,0,'','','AbdominoPerineal resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0004','H','',0,0,'','','Anastomosis with stapler','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0005','H','',0,0,'','','Anterior Pelvic Exenteration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0006','H','',0,0,'','','Axillary Node Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0007','H','',0,0,'','','Axillary Node Dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0008','H','',0,0,'','','Bilateral Groin Dissection Ilia - Inguinal Nodal Dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0009','H','',0,0,'','','Bilateral Partial Maxillectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0010','H','',0,0,'','','BILATERAL SOHND','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0011','H','',0,0,'','','Breast Conservation Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0012','H','',0,0,'','','Central Arch Mandibulectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0013','H','',0,0,'','','Central Compartment neck Dissection with Laryngopharyngectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0014','H','',0,0,'','','Colonic lnterpostion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0015','H','',0,0,'','','Colostomy Closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0016','H','',0,0,'','','Colostomy(Permanent)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0017','H','',0,0,'','','Colostomy(Temporary)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0018','H','',0,0,'','','Continent Diversion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0019','H','',0,0,'','','Craniofacial Resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0020','H','',0,0,'','','D.P FLAP (DELTOPECTORAL FLAP)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0021','H','',0,0,'','','Disarticulation (Shoulder)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0022','H','',0,0,'','','Disarticulation( Hip)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0023','H','',0,0,'','','Distal Mandibulectomy with RND / MRND','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0024','H','',0,0,'','','Distal Pancreatectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0025','H','',0,0,'','','Double Microvascular Flap Reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0026','H','',0,0,'','','Endoscopic Laser Excision major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0027','H','',0,0,'','','Endoscopic Laser Excision supra major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0028','H','',0,0,'','','Endoscopic Laser Excision VC nodule','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0029','H','',0,0,'','','EXPLORATORY LAPAROTOMY ONLY (INOPERABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0030','H','',0,0,'','','Fore head flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0031','H','',0,0,'','','Gastric Pullup','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0032','H','',0,0,'','','Hemi Glossectomy with RND / MRND','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0033','H','',0,0,'','','Hemi Thyroidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0034','H','',0,0,'','','Hemicolectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0035','H','',0,0,'','','Hemiglossectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0036','H','',0,0,'','','Hepatectomy Left','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0037','H','',0,0,'','','Hepatectomy Right','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0038','H','',0,0,'','','Hepaticojejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0039','H','',0,0,'','','High Inguinal Orchidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0040','H','',0,0,'','','Hindquarter/ Forequarter Amputation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0041','H','',0,0,'','','Hopkins Telescopic Examination','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0042','H','',0,0,'','','Ivor Lewis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0043','H','',0,0,'','','Lap. Radical Prostatectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0044','H','',0,0,'','','Laryngectomy with partial pharyngectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0045','H','',0,0,'','','LATISSIMUS DORSI FLAP/TRAM FLAP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0046','H','',0,0,'','','LLETZ (LARGE LOOP EXCISION OF THE TRANSFORMATION ZONE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0047','H','',0,0,'','','lncisional Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0048','H','',0,0,'','','Local Rotation flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0049','H','',0,0,'','','LUMPECTOMY - FROZEN SECTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0050','H','',0,0,'','','LUMPECTOMY(DEEP)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0051','H','',0,0,'','','Mandible Swing with excision of oral malignancy with/ without RND (Composite resection)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0052','H','',0,0,'','','Marginal Mandibulectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0053','H','',0,0,'','','Mediastinal Mass Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0054','H','',0,0,'','','Mediastinal Mass Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0055','H','',0,0,'','','Mesothelioma resection with Rib resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0056','H','',0,0,'','','Micro Dochectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0057','H','',0,0,'','','Micro Laryngoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0058','H','',0,0,'','','Modifed Radical Neck Dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0059','H','',0,0,'','','Modified Radical Mastectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0060','H','',0,0,'','','Multiple Rib Resection with reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0061','H','',0,0,'','','Near Total Laryngectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0062','H','',0,0,'','','Neck Dissection Bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0063','H','',0,0,'','','Neck node excision major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0064','H','',0,0,'','','Neck Node Excision Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0065','H','',0,0,'','','Nelson\'s Hystrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0066','H','',0,0,'','','Oral Cavity Laser 1 / Vapourization lesion < 2 cm','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0067','H','',0,0,'','','Oral Cavity Laser 2 / Vapourization lesion > 2 cm','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0068','H','',0,0,'','','Orbital Exenteration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0069','H','',0,0,'','','Palatal Flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0070','H','',0,0,'','','Parathyroid Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0071','H','',0,0,'','','Partial Cystectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0072','H','',0,0,'','','Partial Glossectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0073','H','',0,0,'','','PARTIAL MAXILLECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0074','H','',0,0,'','','Pectoralis Major Double island Flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0075','H','',0,0,'','','Pectoralis Major Single island Flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0076','H','',0,0,'','','Pelvic Exenteration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0077','H','',0,0,'','','Pelvic Node Dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0078','H','',0,0,'','','Pneumonectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0079','H','',0,0,'','','Port insertion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0080','H','',0,0,'','','Port removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0081','H','',0,0,'','','Posterior Pelvic Exenteration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0082','H','',0,0,'','','Radical Cholecystectomy (Seg. IV Liver Resection) and Segment V Liver Resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0083','H','',0,0,'','','Radical Excision STS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0084','H','',0,0,'','','Radical Mastectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0085','H','',0,0,'','','Radical Neck Dissection unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0086','H','',0,0,'','','Radical Ovarian Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0087','H','',0,0,'','','Radical Parotidectomy with/ without RND','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0088','H','',0,0,'','','Radical Vulvectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0089','H','',0,0,'','','Radical Vulvectomy + Bilateral Groin Dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0090','H','',0,0,'','','Rectosigmoid Colectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0091','H','',0,0,'','','Retroperitoneal Sarcoma Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0092','H','',0,0,'','','Scalp Flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0093','H','',0,0,'','','Sector Mastectomy/ wide excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0094','H','',0,0,'','','Simple Mastectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0095','H','',0,0,'','','Simple Vulvectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0096','H','',0,0,'','','Single Rib Resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0097','H','',0,0,'','','SPLENECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0098','H','',0,0,'','','Split thickness Skingrafting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0099','H','',0,0,'','','Submandibular Gland Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0100','H','',0,0,'','','Superficial Parotidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0101','H','',0,0,'','','Superior Mediastinal Dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0102','H','',0,0,'','','Supraomohyoid neck Dissection with/ without composite resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0103','H','',0,0,'','','TAH + BSO (Abdominal Hysterectomy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0104','H','',0,0,'','','Temporalis Flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0105','H','',0,0,'','','Thoracotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0106','H','',0,0,'','','THYROIDECTOMY WITH IPSILATERAL RADICAL NECK DISSECTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0107','H','',0,0,'','','Total 3 Field Oesophagectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0108','H','',0,0,'','','Total Amputation of Penis with groin dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0109','H','',0,0,'','','Total Colectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0110','H','',0,0,'','','TOTAL CYSTECTOMY WITH LLEAL CONDUITE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0111','H','',0,0,'','','Total Glossectomy with flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0112','H','',0,0,'','','Total Larygopharyngectomy with PMMC Flap and Stomach pull up','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0113','H','',0,0,'','','Total Maxillectomy / Radical Maxillectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0114','H','',0,0,'','','Total/ Near Total Thyroidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0115','H','',0,0,'','','TRANSHIATAL OESOPHAGECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0116','H','',0,0,'','','Trapezius Flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0117','H','',0,0,'','','Triple bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0118','H','',0,0,'','','TRUCUT BIOPSY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1300,1300,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0119','H','',0,0,'','','Unilateral Groin Dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0120','H','',0,0,'','','Uretrocolic diversion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0121','H','',0,0,'','','Wertheim\'s','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0122','H','',0,0,'','','Wide exision major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0123','H','',0,0,'','','Wide exision minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ONCS','','ONCS0124','H','',0,0,'','','Wide Field Laryngectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPCG','','OPCG0001','H','',0,0,'','','Subconjunctival/subtenon?s injections in one eyes','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',69,69,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0002','H','',0,0,'','','Subconjunctival/subtenon?s injections in both','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',138,138,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0003','H','',0,0,'','','eyes','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0004','H','',0,0,'','','Pterygium Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',86,86,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0005','H','',0,0,'','','Conjunctival Peritomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',58,58,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0006','H','',0,0,'','','Conjunctival wound repair or exploration\nfollowing blunt trauma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',115,115,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0007','H','',0,0,'','','Removal of corneal foreign body','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',115,115,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0008','H','',0,0,'','','Cauterization of ulcer/subconjunctival injection in\none eye','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',69,69,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0009','H','',0,0,'','','Cauterization of ulcer/subconjunctival injection in\nboth eyes','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',138,138,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0010','H','',0,0,'','','Corneal grafting?Penetrating keratoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5750,5750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0011','H','',0,0,'','','Corneal grafting?Lamellar keratoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0012','H','',0,0,'','','Cyanoacrylate /fibrin glue application for corneal\nperforation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',690,690,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0013','H','',0,0,'','','Bandage contact lenses for corneal perforation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',460,460,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0014','H','',0,0,'','','Scleral grafting or conjunctival flap for corneal\nperforation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2300,2300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0015','H','',0,0,'','','Keratoconus correction with therapeutic contact\nlenses','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0016','H','',0,0,'','','UV radiation for cross-linking for keratoconus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0017','H','',0,0,'','','EDTA for band shaped keratopathy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',777,777,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0018','H','',0,0,'','','Arcuate keratotomy for astigmatism','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2800,2800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0019','H','',0,0,'','','Re-suturing (Primary suturing) of corneal wound','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1150,1150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0020','H','',0,0,'','','Penetrating keratoplasty       with glaucoma\nsurgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12144,12144,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0021','H','',0,0,'','','Penetrating keratoplasty --- with vitrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10930,10930,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0022','H','',0,0,'','','Penetrating keratoplasty       with IOL\nimplantation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13656,13656,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0023','H','',0,0,'','','DALK- Deep anterior lamellar keratoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17250,17250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0024','H','',0,0,'','','Keratoprosthesis stage I and II','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10350,10350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0025','H','',0,0,'','','DSAEK- Descemet?s stripping automated\nendothelial keratoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16675,16675,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0026','H','',0,0,'','','ALTK- Automated lamellar therapeutic\nkeratoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16000,16000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0027','H','',0,0,'','','Probing and Syringing of lacrimal sac- in one eye','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',69,69,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0028','H','',0,0,'','','Probing and Syringing of lacrimal sac- in both eye','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',138,138,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0029','H','',0,0,'','','Dacryocystorhinostomy?Plain','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2875,2875,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0030','H','',0,0,'','','Dacryocystorhinostomy?Plain  with intubation\nand/or with lacrimal implants','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9500,9500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0031','H','',0,0,'','','Dacryocystorhinostomy?conjunctival with\nimplant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8280,8280,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0032','H','',0,0,'','','Caliculoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2070,2070,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0033','H','',0,0,'','','Dacryocystectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1725,1725,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0034','H','',0,0,'','','Punctal plugs for dry eyes','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',130,130,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0035','H','',0,0,'','','Refraction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',40,40,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0036','H','',0,0,'','','Indirect Ophthalmoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',67,67,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0037','H','',0,0,'','','Orthoptic check-up- with synoptophore','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',40,40,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0038','H','',0,0,'','','Lees? charting or Hess? charting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',90,90,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0039','H','',0,0,'','','Orthoptic exercises','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',45,45,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0040','H','',0,0,'','','Pleoptic exercises','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',45,45,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0041','H','',0,0,'','','Perimetry/field test?Goldman','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',144,144,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0042','H','',0,0,'','','Perimetry/field test? automated','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',144,144,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0043','H','',0,0,'','','Fluorescein angiography for fundus or iris','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',920,920,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0044','H','',0,0,'','','Ultrasound A- Scan','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',777,777,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0045','H','',0,0,'','','Ultrasound B- Scan','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',207,207,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0046','H','',0,0,'','','Fundus Photo Test','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',180,180,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0047','H','',0,0,'','','Indocyanin green angiography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',828,828,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0048','H','',0,0,'','','Corneal endothelial cell count with specular\nmicroscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',207,207,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0049','H','',0,0,'','','Corneal topography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',298,298,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0050','H','',0,0,'','','Corneal pachymetry','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',207,207,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0051','H','',0,0,'','','Auto-refraction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',35,35,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0052','H','',0,0,'','','Macular function tests','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',40,40,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0053','H','',0,0,'','','Potential acuity metry','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',90,90,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0054','H','',0,0,'','','Laser interferometry','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',156,156,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0055','H','',0,0,'','','OCT-Optical coherence tomography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1913,1913,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0056','H','',0,0,'','','HRT- Heidelberg?s retinal tomogram','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0057','H','',0,0,'','','GDX--- Nerve fibre layer analyzer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',79,79,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0058','H','',0,0,'','','UBM- Ultrasound bio microscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0059','H','',0,0,'','','Non Contact tonometry','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',45,45,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0060','H','',0,0,'','','IOP measurement with schiotz','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',30,30,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0061','H','',0,0,'','','IOP measurement with applation tonometry','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0062','H','',0,0,'','','Three mirror examination for reti','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',52,52,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0063','H','',0,0,'','','90 D lens examination','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0064','H','',0,0,'','','Gonioscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',58,58,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0065','H','',0,0,'','','Chalazion incision and curettage in one eye','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0066','H','',0,0,'','','Chalazion incision and curettage in both eyes','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',431,431,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0067','H','',0,0,'','','Ptosis surgery with fasanella servat procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2070,2070,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0068','H','',0,0,'','','Ptosis surgery with LPS resection one lid','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4950,4950,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0069','H','',0,0,'','','Ptosis surgery with Sling surgery one lid','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6670,6670,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0070','H','',0,0,'','','Ectropion surgery- one lid','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0071','H','',0,0,'','','Ectropion surgery- both lids','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0072','H','',0,0,'','','Epicanthus correction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1550,1550,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0073','H','',0,0,'','','Cantholysis and canthotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',518,518,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0074','H','',0,0,'','','Entropion surgery- one lid','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1380,1380,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0075','H','',0,0,'','','Entropion surgery- both lids','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0076','H','',0,0,'','','Tarsorraphy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',650,650,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0077','H','',0,0,'','','Suturing of lid lacerations','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1150,1150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0078','H','',0,0,'','','Lid retraction repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1700,1700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0079','H','',0,0,'','','Concretions removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',104,104,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0080','H','',0,0,'','','Bucket handle procedure for lid tumors','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',311,311,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0081','H','',0,0,'','','Cheek rotation flap for lid tumors','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6500,6500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0082','H','',0,0,'','','Orbitotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7245,7245,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0083','H','',0,0,'','','Enucleation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0084','H','',0,0,'','','Enucleation with orbital implants and artificial\nprosthesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0085','H','',0,0,'','','Evisceration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3450,3450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0086','H','',0,0,'','','Evisceration with orbital implants and artificial\nprosthesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5124,5124,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0087','H','',0,0,'','','Telecanthus correction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4658,4658,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0088','H','',0,0,'','','Orbital decompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5175,5175,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0089','H','',0,0,'','','Exenteration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5750,5750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0090','H','',0,0,'','','Exenteration with skin grafting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6500,6500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0091','H','',0,0,'','','Fracture orbital repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8280,8280,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0092','H','',0,0,'','','Retinal laser procedures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1350,1350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0093','H','',0,0,'','','Retinal detachment surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0094','H','',0,0,'','','Retinal detachment surgery with scleral buckling','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12420,12420,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0095','H','',0,0,'','','Buckle removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1035,1035,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0096','H','',0,0,'','','Silicone oil removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2520,2520,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0097','H','',0,0,'','','Anterior retinal cryopexy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1046,1046,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0098','H','',0,0,'','','Squint correction for one eye','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0099','H','',0,0,'','','Squint correction for both eyes','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6750,6750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0100','H','',0,0,'','','Trabeculectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6210,6210,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0101','H','',0,0,'','','Trabeculotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6210,6210,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0102','H','',0,0,'','','Trabeculectomy with Trabeculotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9315,9315,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0103','H','',0,0,'','','Trephition','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2070,2070,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0104','H','',0,0,'','','Goniotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',311,311,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0105','H','',0,0,'','','Glaucoma surgery with Glaucoma valves','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6900,6900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0106','H','',0,0,'','','Cyclocryotherapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1035,1035,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0107','H','',0,0,'','','YAG laser iridotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0108','H','',0,0,'','','YAG laser capsulotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0109','H','',0,0,'','','ALT-Argon laser trabeculoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1346,1346,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0110','H','',0,0,'','','PDT-Photodymic therapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3105,3105,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0111','H','',0,0,'','','TTT- Transpupillary thermal therapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2700,2700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0112','H','',0,0,'','','PTK- Phototherapeutic keratectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6750,6750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0113','H','',0,0,'','','Argon/diode laser for retinal detatchment','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1035,1035,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0114','H','',0,0,'','','Intralase application for keratoconus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5175,5175,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0115','H','',0,0,'','','EOG- electro-oculogram','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',810,810,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0116','H','',0,0,'','','ERG- Electro-retinogram','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',715,715,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0117','H','',0,0,'','','VEP- visually evoked potential','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',720,720,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0118','H','',0,0,'','','Vitrectomy- pars plana','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10350,10350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0119','H','',0,0,'','','Intravitreal injections- of antibiotics','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1035,1035,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0120','H','',0,0,'','','Intravitreal injections- of lucentis excluding cost\nof drug','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2700,2700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0121','H','',0,0,'','','X- Ray orbit','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',104,104,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0122','H','',0,0,'','','CT-orbit and brain','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',173,173,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0123','H','',0,0,'','','MRI- Orbit and brain','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3105,3105,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0124','H','',0,0,'','','Dacryocystography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',306,306,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0125','H','',0,0,'','','Orbital angio-graphical studies','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1350,1350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0126','H','',0,0,'','','ECCE with IOL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3450,3450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0127','H','',0,0,'','','SICS with IOL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0128','H','',0,0,'','','Phaco with foldable IOL (silicone and\nacrylic)/PMMA IOL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10781,10781,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0129','H','',0,0,'','','Pars plana  lensectomy with/without IOL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10000,10000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0130','H','',0,0,'','','Secondary IOL implantation- AC IOL PC IOL or\nscleral fixated IOL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6900,6900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0131','H','',0,0,'','','Cataract extraction with IOL with capsular\ntension rings (Cionni?s ring)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12150,12150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0132','H','',0,0,'','','Optic nerve sheathotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6750,6750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0133','H','',0,0,'','','Iridodialysis repair or papillary reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0134','H','',0,0,'','','Iris cyst removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',850,850,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0135','H','',0,0,'','','Lid Abscess incision and Drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1530,1530,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0136','H','',0,0,'','','Orbital Abscess incision and Drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2700,2700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0137','H','',0,0,'','','Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',440,440,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0138','H','',0,0,'','','Paracentesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',230,230,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0139','H','',0,0,'','','Scleral graft for scleral melting or perforation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2520,2520,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0140','H','',0,0,'','','Amniotic membrane grafting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1100,1100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0141','H','',0,0,'','','Cyclodiathermy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2070,2070,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0142','H','',0,0,'','','Intraocular foreign body removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',168,168,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0143','H','',0,0,'','','Electrolysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',207,207,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0144','H','',0,0,'','','Perforating injury repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPCG','','OPCG0145','H','',0,0,'','','Botulinum injection for blepharospasm or squint','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2250,2250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OPHP','','OPHP0001','H','',0,0,'','','(PRP) PAN RETINAL PHOTOCOAGULATION LASER BOTH EYE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25000,25000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0002','H','',0,0,'','','(PRP) PAN RETINAL PHOTOCOAGULATION LASER SINGLE EYE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0003','H','',0,0,'','','AC Wash','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0004','H','',0,0,'','','Capsulectomy - Yag','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0005','H','',0,0,'','','CATARACT SURGERY PACKAGE E','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20000,20000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0006','H','',0,0,'','','Cauterisation Of Ulcer Injection For Both Eyes','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0007','H','',0,0,'','','Cauterisation Of Ulcer Injection For One Eye','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0008','H','',0,0,'','','Epilation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0009','H','',0,0,'','','Extraction Of Chalazion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0010','H','',0,0,'','','Eye Dressing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0011','H','',0,0,'','','Eye Examination Under G.A.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0012','H','',0,0,'','','Eye Wash','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0013','H','',0,0,'','','FOREIGN BODY REMOVAL - EYE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0014','H','',0,0,'','','I/VIT ACCENTRIX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',32000,32000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0015','H','',0,0,'','','I/VIT AVASTIN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10000,10000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0016','H','',0,0,'','','I/VIT EYHA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',65000,65000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0017','H','',0,0,'','','I/VIT PAGENAX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',40000,40000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0018','H','',0,0,'','','I/VIT RANIEYES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22000,22000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0019','H','',0,0,'','','Multiple Chalazion With Wart','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0020','H','',0,0,'','','Retrobulbar lnj.For Both Eyes','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0021','H','',0,0,'','','Retrobulbar lnj.For One Eye','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0022','H','',0,0,'','','Sac Syringing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0023','H','',0,0,'','','Simple Lid Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0024','H','',0,0,'','','Tarsorrhaphy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPHP','','OPHP0025','H','',0,0,'','','Wart Removal (EYE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0001','H','',0,0,'','','AC Wash','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0002','H','',0,0,'','','Blepharoplasty, Upper or Lower Lid for Ectropion (without Grafting) ( Single Eye)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0003','H','',0,0,'','','Blepharoplasty, Upper or Lower Lid for Entropion (without Grafting) ( Single Eye)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0004','H','',0,0,'','','Blepharoplasty, with Grafting, Upper or Lower Lid for Ectropion (Single Eye)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0005','H','',0,0,'','','Capsulotomy - YAG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0006','H','',0,0,'','','CATARACT ( EXCLUDING LENS)-PHACO WITH UNIFOCAL LENS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0007','H','',0,0,'','','CATARACT EXTRACTION WITH IOL LMPLANTATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0008','H','',0,0,'','','Cataract Extraction/ Glaucoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0009','H','',0,0,'','','CATARACT SURGERY PACKAGE A','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0010','H','',0,0,'','','CATARACT SURGERY PACKAGE B','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8000,8000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0011','H','',0,0,'','','CATARACT SURGERY PACKAGE C','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0012','H','',0,0,'','','CATARACT SURGERY PACKAGE D','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18000,18000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0013','H','',0,0,'','','CATARACT SURGERY PACKAGE E','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',24000,24000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0014','H','',0,0,'','','CATARACT SURGERY PACKAGE F','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',28000,28000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0015','H','',0,0,'','','CATARACT SURGERY PACKAGE G','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',32000,32000,NULL,'',0,'Y','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0016','H','',0,0,'','','CATARACT SURGERY PACKAGE H - TRIFOCAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',40000,40000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0017','H','',0,0,'','','CATARACT SURGERY PACKAGE I - TRIFOCAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50000,50000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0018','H','',0,0,'','','CATARACT SURGERY-PHACOEMULSIFICATION-OPTHALMOLOGY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0019','H','',0,0,'','','CONJUNCTIVA TEAR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0020','H','',0,0,'','','Corneal grafting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0021','H','',0,0,'','','Cryopexy / Cyclocryo : Bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0022','H','',0,0,'','','Cryopexy / Cyclocryo : Unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0023','H','',0,0,'','','CYSTS LID CONJUNCTIVA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0024','H','',0,0,'','','Dacrocystorhinostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0025','H','',0,0,'','','Endoscopic Dacrocystorhinostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0026','H','',0,0,'','','Enucleation / Evisceration of Eye (without Implant)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0027','H','',0,0,'','','Enucleation / Evisceration with Implant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0028','H','',0,0,'','','Epicanthus + Telecanthus Correction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0029','H','',0,0,'','','Epicanthus Correction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0030','H','',0,0,'','','Exentration of Orbit+ Socket Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0031','H','',0,0,'','','Extraction of Chalazion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0032','H','',0,0,'','','Intra-Ocular foreign Body Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0033','H','',0,0,'','','LENSECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0034','H','',0,0,'','','Lid Injury Major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0035','H','',0,0,'','','Lid Tumors Excision & Repair (with Grafting or Flaps)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0036','H','',0,0,'','','Lid Tumors Excision & Repair (without Grafting or Flaps)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0037','H','',0,0,'','','Major Reconstructive Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0038','H','',0,0,'','','Needling & Aspiration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0039','H','',0,0,'','','Perforating Injury Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0040','H','',0,0,'','','PHACOEMULSIFICATION WITH IOL IMPLANTATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0041','H','',0,0,'','','PTERYGIUM SURGERY WITH AUTO GRAFTING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8000,8000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0042','H','',0,0,'','','PTERYGIUM SURGERY WITH GRAFTING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0043','H','',0,0,'','','Pterygium Surgery without Grafting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0044','H','',0,0,'','','Ptosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0045','H','',0,0,'','','Retinal Cryo','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0046','H','',0,0,'','','Retinal Detachment Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0047','H','',0,0,'','','Retinal Detachment with Vitrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0048','H','',0,0,'','','Simple corneal perforation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0049','H','',0,0,'','','Socket Reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0050','H','',0,0,'','','Squint Correction: More than 2-Muscles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0051','H','',0,0,'','','Squint Correction: upto 2-Muscles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0052','H','',0,0,'','','Tarsorrhaphy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0053','H','',0,0,'','','Tumor of Iris','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPTS','','OPTS0054','H','',0,0,'','','Vitrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0001','H','',0,0,'','','ASCITIC ABDOMINAL TAPPING DIAGNOSTIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0002','H','',0,0,'','','ASCITIC ABDOMINAL TAPPING THERAPEUTIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0003','H','',0,0,'','','BLOOD COMPONENT TRANSFUSION CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0004','H','',0,0,'','','BLOOD PRODUCT - PCV','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1100,1100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0005','H','',0,0,'','','BLOOD PRODUCT - SDP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10000,10000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0006','H','',0,0,'','','Dressing - Intermediate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0007','H','',0,0,'','','DRESSING - MAJOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0008','H','',0,0,'','','DRESSING - MINOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0009','H','',0,0,'','','Enema','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0010','H','',0,0,'','','FOLEYS /URETHRAL CATHETERIZATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0011','H','',0,0,'','','GASTRIC LAVAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0012','H','',0,0,'','','INJECTION CHARGES (IM)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',30,30,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0013','H','',0,0,'','','Injection Charges (IV)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0014','H','',0,0,'','','INJECTION CHARGES (SUB CUTANEOUS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25,25,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0015','H','',0,0,'','','IV PINT (100ml)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0016','H','',0,0,'','','IV PINT (500ml)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0017','H','',0,0,'','','MAJOR SPECIALIZED DRESSINGS BY CONSULTANT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0018','H','',0,0,'','','Minor Specialized Dressings by Consultant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0019','H','',1,0,'','','RBS BY GLUCOMETER PER RBS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-11 18:46:16','I','N',1,'','','','','thims','2024-04-01 13:18:00','vishal','2025-10-11 18:46:16'),(0,0,'OPWD','','OPWD0020','H','',0,0,'','','Removal of Sutures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0021','H','',0,0,'','','RYLES TUBE INSERTION (RT INSERTION)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0022','H','',0,0,'','','Traction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'RC01',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0023','H','',0,0,'','','PROCEDURE CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',1,'N','Y','Y',0,'','U','','N','Y','Y','shweta','2025-11-06 20:15:59','I','N',99,'','','','','shweta','2025-11-06 20:15:59','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0024','H','',1,0,'','','USG ABDOMEN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','shweta','2025-11-13 11:24:14','I','N',99,'','','','','shweta','2025-11-13 11:18:11','shweta','2025-11-13 11:24:14'),(0,0,'OPWD','','OPWD0025','H','',2,0,'','','USG KUB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','shweta','2025-11-13 11:30:23','I','N',99,'','','','','shweta','2025-11-13 11:29:16','shweta','2025-11-13 11:30:23'),(0,0,'OPWD','','OPWD0026','H','',0,0,'','','USG PELVIS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','shweta','2025-11-13 11:30:13','I','N',99,'','','','','shweta','2025-11-13 11:30:13','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0027','H','',0,0,'','','USG NECK','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','shweta','2025-11-13 11:31:07','I','N',99,'','','','','shweta','2025-11-13 11:31:07','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0028','H','',0,0,'','','USG THORAX/CHEST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','shweta','2025-11-13 11:31:51','I','N',99,'','','','','shweta','2025-11-13 11:31:51','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0029','H','',0,0,'','','USG BREAST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','shweta','2025-11-13 11:32:31','I','N',99,'','','','','shweta','2025-11-13 11:32:31','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0030','H','',0,0,'','','USG LOCAL PART','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','shweta','2025-11-13 11:33:03','I','N',99,'','','','','shweta','2025-11-13 11:33:03','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0031','H','',0,0,'','','PC ENEMA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','shweta','2025-11-13 11:36:05','I','N',99,'','','','','shweta','2025-11-13 11:36:05','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0032','H','',0,0,'','','FOLEY\'S CATHETERIZATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',750,750,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','shweta','2025-11-13 11:37:31','I','N',99,'','','','','shweta','2025-11-13 11:37:31','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0033','H','',0,0,'','','TMT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','shweta','2025-11-13 11:40:19','I','N',99,'','','','','shweta','2025-11-13 11:40:19','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0034','H','',0,0,'','','2D ECHO','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','shweta','2025-11-13 11:42:58','I','N',99,'','','','','shweta','2025-11-13 11:42:58','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0035','H','',3,0,'','','ENDOSCOPY-LARYNX AND PHARYNX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',1,'N','Y','Y',0,'','U','','N','Y','Y','shweta','2025-11-14 12:11:45','I','N',99,'','','','','shweta','2025-11-14 12:06:16','shweta','2025-11-14 12:11:45'),(0,0,'OPWD','','OPWD0036','H','',1,0,'','','IRON TRANSFUSION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','shweta','2025-11-21 14:13:38','I','N',99,'','','','','shweta','2025-11-21 14:12:00','shweta','2025-11-21 14:13:38'),(0,0,'OPWD','','OPWD0037','H','',0,0,'','','BIOSPY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',1,'N','N','N',0,'','U','','N','Y','Y','reception','2025-12-01 12:04:38','I','N',99,'','','','','reception','2025-12-01 12:04:38','','0000-00-00 00:00:00'),(0,0,'ORCG','','ORCG0001','H','',0,0,'','','Plaster Work','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',255,255,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0002','H','',0,0,'','','Fingers (post slab)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',259,259,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0003','H','',0,0,'','','Fingers full plaster','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',259,259,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0004','H','',0,0,'','','Colles Fracture - Below elbow','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',880,880,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0005','H','',0,0,'','','Colles Fracture -  Full plaster','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',895,895,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0006','H','',0,0,'','','Colles fracture Ant. Or post. slab','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0007','H','',0,0,'','','Above elbow full plaster','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',173,173,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0008','H','',0,0,'','','Above Knee post-slab','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',575,575,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0009','H','',0,0,'','','Below Knee full plaster','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',173,173,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0010','H','',0,0,'','','Below Knee post-slab','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',718,718,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0011','H','',0,0,'','','Tube Plaster (or plaster cylinder)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0012','H','',0,0,'','','Above knee full plaster','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0013','H','',0,0,'','','Above knee full slab','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1042,1042,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0014','H','',0,0,'','','Minerva Jacket','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2415,2415,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0015','H','',0,0,'','','Plaster Jacket','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1967,1967,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0016','H','',0,0,'','','Shoulder spica','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0017','H','',0,0,'','','Single Hip spica','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2019,2019,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0018','H','',0,0,'','','Double Hip spica','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2484,2484,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0019','H','',0,0,'','','Strapping of Finger','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',179,179,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0020','H','',0,0,'','','Strapping of  Toes','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',180,180,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0021','H','',0,0,'','','Strapping of  Wrist','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',230,230,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0022','H','',0,0,'','','Strapping of  Elbow','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0023','H','',0,0,'','','Strapping of Knee','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',311,311,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0024','H','',0,0,'','','Strapping of  Ankle','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',311,311,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0025','H','',0,0,'','','Strapping of Chest','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',414,414,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0026','H','',0,0,'','','Strapping of Shoulder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',466,466,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0027','H','',0,0,'','','Figure of 8 bandage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',466,466,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0028','H','',0,0,'','','Collar and cuff sling','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',255,255,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0029','H','',0,0,'','','Ball bandage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',360,360,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0030','H','',0,0,'','','Application of P.O.P Casts for Upper & Lower\nLimbs','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',633,633,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0031','H','',0,0,'','','Application of Functiol Cast Brace','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1350,1350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0032','H','',0,0,'','','Application of Skin Traction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',621,621,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0033','H','',0,0,'','','Application of Skeletal Tractions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',854,854,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0034','H','',0,0,'','','Bandage & Strappings for Fractures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',497,497,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0035','H','',0,0,'','','Aspiration & Intra Articular Injections','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',518,518,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0036','H','',0,0,'','','Application of P.O.P Spices & Jackets','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2226,2226,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0037','H','',0,0,'','','Close Reduction of Fractures of Limb & P.O.P','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2340,2340,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0038','H','',0,0,'','','Reduction of Compound Fractures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2760,2760,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0039','H','',0,0,'','','Open Reduction & Internal Fixation of Fingurs &\nToes','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5175,5175,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0040','H','',0,0,'','','Open Reduction offracture of Long Bones of\nUpper / Lower Limb -iling & Exterl Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8050,8050,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0041','H','',0,0,'','','Open Reduction of fracture of Long Bones of\nUpper / Lower Limb -AO Procedures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9660,9660,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0042','H','',0,0,'','','Tension Band Wirings','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5658,5658,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0043','H','',0,0,'','','Bone Grafting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6601,6601,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0044','H','',0,0,'','','Excision of Bone Tumours','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6210,6210,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0045','H','',0,0,'','','Excision or other Operations for Scaphoid\nFractures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7188,7188,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0046','H','',0,0,'','','Sequestrectomy & Saucerisation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6900,6900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0047','H','',0,0,'','','Sequestrectomy & Saucerizations -Arthrotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9971,9971,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0048','H','',0,0,'','','Multiple Pinning Fracture Neck Femur','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11500,11500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0049','H','',0,0,'','','Plate Fixations for Fracture Neck Femur','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13500,13500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0050','H','',0,0,'','','A.O.Compression Procedures for Fracture Neck\nFemur','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16560,16560,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0051','H','',0,0,'','','Open Reduction of Fracture Neck Femur Muscle\nPedicle Graft and Internal Fixations','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19500,19500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0052','H','',0,0,'','','Close Reduction of Dislocations','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3174,3174,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0053','H','',0,0,'','','Open Reduction of Dislocations','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3439,3439,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0054','H','',0,0,'','','Open Reduction of Fracture Dislocation &\nInternal Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13500,13500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0055','H','',0,0,'','','Neurolysis/Nerve repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13800,13800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0056','H','',0,0,'','','Nerve Repair with Grafting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16675,16675,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0057','H','',0,0,'','','Tendon with Transplant or Graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10350,10350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0058','H','',0,0,'','','Tendon Lengthening/Tendon repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8050,8050,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0059','H','',0,0,'','','Tendon Transfer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3105,3105,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0060','H','',0,0,'','','Laminectomy Excision Disc and Tumours','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4830,4830,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0061','H','',0,0,'','','Spil Ostectomy and Internal Fixations','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',21735,21735,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0062','H','',0,0,'','','Anterolateral decompression for tuberculosis/\nCosto-Transversectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3450,3450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0063','H','',0,0,'','','Antereolateral Decompression and Spil Fusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19350,19350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0064','H','',0,0,'','','Corrective Ostectomy & Internal Fixation -  short\nbones','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13800,13800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0065','H','',0,0,'','','Corrective Ostectomy & Internal Fixation -  long\nbones','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11040,11040,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0066','H','',0,0,'','','Arthrodesis of -   Minor Joints','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10350,10350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0067','H','',0,0,'','','Arthrodesis of -   Major Joints','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10000,10000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0068','H','',0,0,'','','Soft Tissue Operations for C.T.E.V.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8050,8050,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0069','H','',0,0,'','','Soft Tissue Operations for Polio','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6900,6900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0070','H','',0,0,'','','Hemiarthroplasty- Hip','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20000,20000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0071','H','',0,0,'','','Hemiarthroplasty- Shoulder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20000,20000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0072','H','',0,0,'','','Operations for Brachial Plexus & Cervical Rib','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',24150,24150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0073','H','',0,0,'','','Amputations -   Below Knee','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6900,6900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0074','H','',0,0,'','','Amputations -  Below Elbow','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6843,6843,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0075','H','',0,0,'','','Amputations -  Above Knee','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8050,8050,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0076','H','',0,0,'','','Amputations -  Above Elbow','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6843,6843,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0077','H','',0,0,'','','Amputations -  Forequarter','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13200,13200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0078','H','',0,0,'','','Amputations -Hind Quarter and Hemipelvectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18400,18400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0079','H','',0,0,'','','Disarticulations -  Major joint','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18630,18630,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0080','H','',0,0,'','','Disarticulations -  Minor joint','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11385,11385,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0081','H','',0,0,'','','Arthrography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9000,9000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0082','H','',0,0,'','','Arthroscopy -  Diagnostic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8568,8568,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0083','H','',0,0,'','','Arthroscopy-therapeutic: without implant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10000,10000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0084','H','',0,0,'','','Arthroscopy-therapeutic: with implant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17250,17250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0085','H','',0,0,'','','Soft Tissue Operation on JOINTS -SMALL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6900,6900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0086','H','',0,0,'','','Soft Tissue Operation on JOINTS -LARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13500,13500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0087','H','',0,0,'','','Myocutaneous and Fasciocutaneous Flap\nProcedures for Limbs','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16767,16767,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0088','H','',0,0,'','','Removal of  Wires & Screw','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1760,1760,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0089','H','',0,0,'','','Removal of Plates','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4140,4140,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0090','H','',0,0,'','','Total Hip Replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',71100,71100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0091','H','',0,0,'','','Total Ankle Joint Replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',95400,95400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0092','H','',0,0,'','','Total Knee Joint Replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',99000,99000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0093','H','',0,0,'','','Total Shoulder Joint Replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',79000,79000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0094','H','',0,0,'','','Total Elbow Joint Replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',79000,79000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0095','H','',0,0,'','','Total Wrist Joint Replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100000,100000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0096','H','',0,0,'','','Total finger joint replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20000,20000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0097','H','',0,0,'','','Tubular external fixator','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4600,4600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0098','H','',0,0,'','','Ilizarov\'s external fixator','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7763,7763,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0099','H','',0,0,'','','Pelvi-acetebular fracture -Internal fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8625,8625,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0100','H','',0,0,'','','Meniscectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0101','H','',0,0,'','','Meniscus Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10000,10000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0102','H','',0,0,'','','ACL Reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8500,8500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0103','H','',0,0,'','','PCL Reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13500,13500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0104','H','',0,0,'','','Knee Collateral Ligament Reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12500,12500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0105','H','',0,0,'','','Bencarf Repair Shoulder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0106','H','',0,0,'','','RC Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0107','H','',0,0,'','','Biceps tenodesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12600,12600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0108','H','',0,0,'','','Distal biceps tendon repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9342,9342,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0109','H','',0,0,'','','Arthrolysis of knee','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12500,12500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0110','H','',0,0,'','','Capsulotomy of Shoulder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14220,14220,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0111','H','',0,0,'','','Conservative Pop','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1080,1080,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0112','H','',0,0,'','','Application for CTEV per sitting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1080,1080,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0113','H','',0,0,'','','Total Hip Replacement Revision       Stage-I','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17000,17000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0114','H','',0,0,'','','Total Hip Replacement Revision       Stage-II','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50000,50000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0115','H','',0,0,'','','Total Knee Replacement Revision    Stage-I','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',35000,35000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0116','H','',0,0,'','','Total Knee Replacement Revision    Stage-II','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',35000,35000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0117','H','',0,0,'','','Illizarov/ external fixation for limb lengthening/\ndeformity correction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12500,12500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0118','H','',0,0,'','','Discectomy/ Micro Discectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12500,12500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0119','H','',0,0,'','','Laminectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4646,4646,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0120','H','',0,0,'','','Spinal Fixation Cervical/dorsolumbar/\nlumbosacral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14400,14400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0121','H','',0,0,'','','Fusion Surgery Cervical/ Lumbar Spine  upto  2\nLevel','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22000,22000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0122','H','',0,0,'','','More than 2 Level','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0123','H','',0,0,'','','Scoliosis Surgery/ Deformity Correction of Spine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',25000,25000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0124','H','',0,0,'','','Vertebroplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10800,10800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0125','H','',0,0,'','','Spinal Injections','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0126','H','',0,0,'','','DHS for Fracture Neck Femur','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13500,13500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0127','H','',0,0,'','','Proximal Femoral Nail (PFN for IT Fracture)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12600,12600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0128','H','',0,0,'','','Spinal Osteotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1434,1434,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0129','H','',0,0,'','','Illizarov?s / External Fixation for Trauma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11700,11700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0130','H','',0,0,'','','Soft Tissue Operations for Polio/ Cerebral Palsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10557,10557,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0131','H','',0,0,'','','Mini Fixator for Hand/Foot','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8100,8100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0132','H','',0,0,'','','Other Major Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',38250,38250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORCG','','ORCG0133','H','',0,0,'','','Other Minor Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10695,10695,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'ORTP','','ORTP0001','H','',0,0,'','','AK Slab','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0002','H','',0,0,'','','AK-BK Slab','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0003','H','',0,0,'','','BE Slab/ Kockup Slab','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0004','H','',0,0,'','','Bilateral Slap Bolt','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0005','H','',0,0,'','','BK Slab','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0006','H','',0,0,'','','Bone Needle Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0007','H','',0,0,'','','Bony Tumor Excision Small ( Benign)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0008','H','',0,0,'','','CARPAL TUNNEL RELEASE PROCEDURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7800,7800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0009','H','',0,0,'','','COCYX INJECTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0010','H','',0,0,'','','Colles Fracture Full Plaster','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0011','H','',0,0,'','','CTEV Cast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0012','H','',0,0,'','','Double Hip Spika','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0013','H','',0,0,'','','DQ Release UNDER LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0014','H','',0,0,'','','Finger/ Toe Splint','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0015','H','',0,0,'','','I & D Medium','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0016','H','',0,0,'','','I & D Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0017','H','',0,0,'','','Intra Articular Injection & Manipulation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0018','H','',0,0,'','','INTRA ARTICULAR INJECTION WITH PROCEDURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0019','H','',0,0,'','','IP Dislocation (Close Reduction)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0020','H','',0,0,'','','Knee Aspiration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0021','H','',0,0,'','','LHC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0022','H','',0,0,'','','MAJOR JOINT DISLOCATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0023','H','',0,0,'','','Major-Ex Fixation removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0024','H','',0,0,'','','Manipulation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0025','H','',0,0,'','','Manipulation Under Anaesthesia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0026','H','',0,0,'','','Minor- Ex Fixation Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0027','H','',0,0,'','','Minor- K Wires Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0028','H','',0,0,'','','Minor- Screws Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0029','H','',0,0,'','','Plaster Removal Charge','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0030','H','',0,0,'','','POP - Above Knee (KE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0031','H','',0,0,'','','POP - Below Elbow (BE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0032','H','',0,0,'','','POP - Below Knee (BK)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0033','H','',0,0,'','','POP Above Elbow (AE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0034','H','',0,0,'','','POP INTERMEDIATE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0035','H','',0,0,'','','POP MAJOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0036','H','',0,0,'','','POP MINOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0037','H','',0,0,'','','POP- PTB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0038','H','',0,0,'','','POP SUPRAMAJOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0039','H','',0,0,'','','Shoulder Spika','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0040','H','',0,0,'','','Single Hip Spika','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0041','H','',0,0,'','','Single K-Wire Fixation Hand/Feet UNDER La','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0042','H','',0,0,'','','Skeletal Traction UNDER LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0043','H','',0,0,'','','Steindler Release','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0044','H','',0,0,'','','Strapping - Ankle','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0045','H','',0,0,'','','Strapping - Chest/ Clavicle','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0046','H','',0,0,'','','Strapping - Collar & Cuff Sling','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0047','H','',0,0,'','','Strapping - Finger/ Toes/ Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0048','H','',0,0,'','','Strapping - Shoulder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0049','H','',0,0,'','','Strapping ANY TYPE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0050','H','',0,0,'','','TKR BILATERAL DIFFRENCE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13000,13000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTP','','ORTP0051','H','',0,0,'','','Trigger Point Injection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0001','H','',0,0,'','','Above elbow amputation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0002','H','',0,0,'','','Above Knee Amputation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0003','H','',0,0,'','','AC Joint O (TBW+ K WIRING)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0004','H','',0,0,'','','Acetabulam screw fixation closed','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0005','H','',0,0,'','','Acetabular plating open reduction+ fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0006','H','',0,0,'','','Across knee Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0007','H','',0,0,'','','AMP hemi arthroplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0008','H','',0,0,'','','Amputation finger','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0009','H','',0,0,'','','Amputation multiple toes','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0010','H','',0,0,'','','Amputation stump closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0011','H','',0,0,'','','Amputation Symes','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0012','H','',0,0,'','','Amputation toe','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0013','H','',0,0,'','','Ankle arthrodesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0014','H','',0,0,'','','Ankle Dislocation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0015','H','',0,0,'','','AVN Lunate Excision+ grafting (Kl EN BOCKS DISEASE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0016','H','',0,0,'','','Below Elbow amputation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0017','H','',0,0,'','','Below Knee Amputation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0018','H','',0,0,'','','BG Tibia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0019','H','',0,0,'','','BG Tibia+ ORIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0020','H','',0,0,'','','Bipolar hemi arthroplasty - Cemented','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0021','H','',0,0,'','','Bipolar hemi arthroplasty - Cementless','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0022','H','',0,0,'','','BIPOLAR IT FEMUR FRACTURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0023','H','',0,0,'','','Bone Grafting ASIS/ Local Areas','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0024','H','',0,0,'','','Bone grafting femur+ nailing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0025','H','',0,0,'','','Bone Grafting PSIS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0026','H','',0,0,'','','Bony tumor excision large ( Benign)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0027','H','',0,0,'','','Bony tumor excision medium ( Benign)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0028','H','',0,0,'','','Bony tumor excision small ( Benign)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0029','H','',0,0,'','','Boyd Amputation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0030','H','',0,0,'','','C.C.S Fixation Proximal Tibia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0031','H','',0,0,'','','Capitulum fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0032','H','',0,0,'','','Carpal tunnel release','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0033','H','',0,0,'','','CBP Distal femur/ LISS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0034','H','',0,0,'','','CC screw distal femur','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0035','H','',0,0,'','','CC screw for neck femur','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0036','H','',0,0,'','','Cervical rib excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0037','H','',0,0,'','','Clavicle ORIF & BG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0038','H','',0,0,'','','Clavicle orif Plate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0039','H','',0,0,'','','Close IL nailing for femur','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0040','H','',0,0,'','','Close reduction of shoulder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0041','H','',0,0,'','','CLOSE REDUCTION WITH MAJOR POP/FIBER CAST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0042','H','',0,0,'','','Contracture release','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0043','H','',0,0,'','','Core decompression bilateral (Single Stage)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0044','H','',0,0,'','','Core decompression unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0045','H','',0,0,'','','Core decompression with fibula graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0046','H','',0,0,'','','Core decompression with vascular fibula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0047','H','',0,0,'','','Corrective Osteo & Fixation- Tibia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0048','H','',0,0,'','','Corrective osteotomy and fixation Distal femur','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0049','H','',0,0,'','','Corticotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0050','H','',0,0,'','','CP surgery major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0051','H','',0,0,'','','CP surgery minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0052','H','',0,0,'','','CRIF Distal Humerus & POP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0053','H','',0,0,'','','CRIF Humerus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0054','H','',0,0,'','','CRIF Pediatric Tibia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0055','H','',0,0,'','','CRIF Proximal humerus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0056','H','',0,0,'','','CRIF Proximal Tibia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0057','H','',0,0,'','','DCS Distal femur','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0058','H','',0,0,'','','DCS for proximal femur','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0059','H','',0,0,'','','DFN (Distal Femur Nailing /Plating)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0060','H','',0,0,'','','DHS + CC Screw fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0061','H','',0,0,'','','DHS + TSP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0062','H','',0,0,'','','DHS- DYNAMIC HIP SCREWS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0063','H','',0,0,'','','Distal radius K wiring','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0064','H','',0,0,'','','Distal radius malunion- osteotomy +plating+ Bone grafting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0065','H','',0,0,'','','Distal radius Plating','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0066','H','',0,0,'','','Distal Tibia Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0067','H','',0,0,'','','Distal Ulna darrach excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0068','H','',0,0,'','','DQ RELEASE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0069','H','',0,0,'','','DRUJ Dislocation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0070','H','',0,0,'','','Duputryn contracture release','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0071','H','',0,0,'','','Elbow Artherotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0072','H','',0,0,'','','Elbow Arthodesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0073','H','',0,0,'','','ELBOW DISARTICULATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0074','H','',0,0,'','','Elbow Dislocation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0075','H','',0,0,'','','Elbow Release procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0076','H','',0,0,'','','Ender nailing for I/T','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0077','H','',0,0,'','','Ender nailing for S/T','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0078','H','',0,0,'','','Ender nailing for shaft femur pediatric','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0079','H','',0,0,'','','EUA + Manipulation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0080','H','',0,0,'','','External Fixation Ankle','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0081','H','',0,0,'','','External fixation Elbow','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0082','H','',0,0,'','','External Fixation Foot','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0083','H','',0,0,'','','EXTERNAL FIXATION OF FEMUR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0084','H','',0,0,'','','External Fixation of Fingers','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0085','H','',0,0,'','','External Fixation of Hand','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0086','H','',0,0,'','','External Fixation of Humorus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0087','H','',0,0,'','','External Fixation of Metacarpal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0088','H','',0,0,'','','External Fixation of Proximal & Distal Humorus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0089','H','',0,0,'','','External Fixation of Wrist','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0090','H','',0,0,'','','External fixation Radius','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0091','H','',0,0,'','','External fixation removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0092','H','',0,0,'','','External Fixation tibia+ debridement for open fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0093','H','',0,0,'','','External fixation Ulna','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0094','H','',0,0,'','','External fixation+ K wiring distal radius.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0095','H','',0,0,'','','Femoral osteotomy and fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0096','H','',0,0,'','','FEMUR ILIZAROV','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0097','H','',0,0,'','','Femur plating','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0098','H','',0,0,'','','Femur plating+ BG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0099','H','',0,0,'','','Fibula CRIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0100','H','',0,0,'','','Fibula ORIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0101','H','',0,0,'','','Fibular graft harvesting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0102','H','',0,0,'','','FIXATION OF FEMORAL HEAD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0103','H','',0,0,'','','FIXATION OF FIMORAL HEAD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0104','H','',0,0,'','','Foot (Chopart) Amputation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0105','H','',0,0,'','','Fore Quarter Amputation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0106','H','',0,0,'','','Four Corner Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0107','H','',0,0,'','','Fractue Radius U/3rd CRIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0108','H','',0,0,'','','FRACTUE RADIUS U/3RD ORIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16500,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0109','H','',0,0,'','','Fracture Radius M/3rd, L/3rd CRIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0110','H','',0,0,'','','Fracture Radius M/3rd, L/3rd ORIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0111','H','',0,0,'','','Fracture Ulna CRIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0112','H','',0,0,'','','Fracture Ulna ORIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0113','H','',0,0,'','','Gillotine Amputation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0114','H','',0,0,'','','Girdle stone arthroplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0115','H','',0,0,'','','Glenoid Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0116','H','',0,0,'','','Hemi arthroplasy shoulder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0117','H','',0,0,'','','Hind quarter amputation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0118','H','',0,0,'','','Hip Arthrodesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0119','H','',0,0,'','','Hip disarticulation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0120','H','',0,0,'','','Hip Dislocation-Close Reduction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0121','H','',0,0,'','','Hip Dislocation-Open Reduction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0122','H','',0,0,'','','HTO (HIGH TIBIAL OSTEOTOMY)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0123','H','',0,0,'','','Humerus close nailing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0124','H','',0,0,'','','HUMERUS ILIZAROV','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0125','H','',0,0,'','','Humerus K-wiring','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0126','H','',0,0,'','','Humerus ORIF & BG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0127','H','',0,0,'','','Humerus Plating','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0128','H','',0,0,'','','Hybrid fixation - external for periarticular tibia fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0129','H','',0,0,'','','Hybrid fixation for femur','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0130','H','',0,0,'','','ilizarov with across jt extension','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0131','H','',0,0,'','','ILIZAROV WITH CORTICOTOMY ( BIFOCAL) & LENGTHNING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0132','H','',0,0,'','','IMPLANT REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7700,7700,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0133','H','',0,0,'','','IMPLANT REMOVAL-FEMUR NAIL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0134','H','',0,0,'','','IMPLANT REMOVAL-TIBIA NAIL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0135','H','',0,0,'','','IMSC femur nail','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0136','H','',0,0,'','','INTER TARSAL DISLOCATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0137','H','',0,0,'','','INTERCARPAL DISLOCATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0138','H','',0,0,'','','INTERMEDIATE- ENDERS NAIL REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0139','H','',0,0,'','','Intermediate- Tennails Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0140','H','',0,0,'','','Intra articular injection and manipulation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0141','H','',0,0,'','','IP Arthrodesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0142','H','',0,0,'','','IP Dislocation ( close Reduction)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0143','H','',0,0,'','','IP Dislocation ( Open Reduction)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0144','H','',0,0,'','','K wiring distal humerus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0145','H','',0,0,'','','K wiring metacarpals ( Single)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0146','H','',0,0,'','','K WIRING METACARPALS MULTIPLE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0147','H','',0,0,'','','K WIRING METACARPALS MULTIPLE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7000,7000,NULL,'',5,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0148','H','',0,0,'','','K wiring phalanges ( Single)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0149','H','',0,0,'','','Knee artherotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0150','H','',0,0,'','','Knee artherotomy + debridement for infective arthritis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0151','H','',0,0,'','','Knee arthrodesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0152','H','',0,0,'','','Knee bony Biopsy ( Malignant)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0153','H','',0,0,'','','Knee disarticulation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0154','H','',0,0,'','','Knee Dislocation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0155','H','',0,0,'','','Knee manipulation under anesthesia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0156','H','',0,0,'','','Lat condyle fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0157','H','',0,0,'','','Limited Artherodesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0158','H','',0,0,'','','Limited carpal fusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0159','H','',0,0,'','','Lisfrank discolocation ORIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0160','H','',0,0,'','','Lisfrank dislocation k wiring CRIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0161','H','',0,0,'','','LISS for Distal femur','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0162','H','',0,0,'','','llliac Blade Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0163','H','',0,0,'','','lntramedullary fixation- Clavicle','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0164','H','',0,0,'','','Major- Interlocking nails Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0165','H','',0,0,'','','Major- Plates Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0166','H','',0,0,'','','Mal Union Humerus ORIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0167','H','',0,0,'','','Manipulation under Anaesthesia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0168','H','',0,0,'','','Medial Condyle fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0169','H','',0,0,'','','METACARPLE PLATING MULTIPLE ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0170','H','',0,0,'','','METACARPLE PLATING SINGLE ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0171','H','',0,0,'','','MTP / IP Joints arthrodesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0172','H','',0,0,'','','MTP /MCP Dislocation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0173','H','',0,0,'','','Non union humerus BG - plating','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0174','H','',0,0,'','','Non union humerus nailing & BG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0175','H','',0,0,'','','Olecranon CC Screw fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0176','H','',0,0,'','','Olecranon CRIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0177','H','',0,0,'','','Olecranon K wiring','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0178','H','',0,0,'','','Olecranon Osteotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0179','H','',0,0,'','','Olecranon Plating','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0180','H','',0,0,'','','Olecranon TBW K Wiring','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0181','H','',0,0,'','','Open cuff repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0182','H','',0,0,'','','OPEN REDUCTION OF PIP JOINT ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0183','H','',0,0,'','','Open synovectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0184','H','',0,0,'','','ORIF Distal Humerus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0185','H','',0,0,'','','ORIF Distal radius','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0186','H','',0,0,'','','ORIF DISTAL TIBIA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0187','H','',0,0,'','','ORIF for MCI Jt dislocation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0188','H','',0,0,'','','ORIF neck femur','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0189','H','',0,0,'','','ORIF Pediatric Femur','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0190','H','',0,0,'','','ORIF Pediatric Tibia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0191','H','',0,0,'','','ORIF PROXIMAL HUMERUS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0192','H','',0,0,'','','ORIF UPPER TIBEA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0193','H','',0,0,'','','OS MENICULORIS EXCISION(UNILATERAL)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0194','H','',0,0,'','','OS NAVICULARIS EXCISION(BILATERAL)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0195','H','',0,0,'','','OSTEOMYLITIS DEBRIDEMENT + I&D','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0196','H','',0,0,'','','OSTEOTOMY FOR CUBITUS DEFORMITY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0197','H','',0,0,'','','Patellar fixation - ORIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0198','H','',0,0,'','','Patellar Pole exicision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0199','H','',0,0,'','','Patellectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0200','H','',0,0,'','','Pelvic external fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0201','H','',0,0,'','','PFN / AFN - ORIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0202','H','',0,0,'','','Polio surgery/ bony procedure/ soft tissue major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0203','H','',0,0,'','','Polio surgery/ bony procedure/ soft tissue minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0204','H','',0,0,'','','PRC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0205','H','',0,0,'','','PROXIMAL FIBULAR OSTEOTOMY+MEDIAL FEMORAL CONDYLE DECOMPRESSION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0206','H','',0,0,'','','Pubic symphysis plating','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0207','H','',0,0,'','','QUADRICEPS REPAIR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0208','H','',0,0,'','','R/U ILIZAROV','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0209','H','',0,0,'','','Radial head & neck Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0210','H','',0,0,'','','Radial head Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0211','H','',0,0,'','','Radial head replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0212','H','',0,0,'','','Radial styloid fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0213','H','',0,0,'','','Ray Amputation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0214','H','',0,0,'','','RECURERENT DISLOCATION SHOULDER - OPEN REPAIR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0215','H','',0,0,'','','RECURRENT DISLOCATION SHOULDER - OPEN REPAIR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0216','H','',0,0,'','','Recurrent Patella Dislocation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0217','H','',0,0,'','','RECURRENT SHOULDER DISLOCATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',6,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0218','H','',0,0,'','','Reduction & cast distal radius','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0219','H','',0,0,'','','RETINACULAR REPAIR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0220','H','',0,0,'','','REVISION PLATTING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',10,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0221','H','',0,0,'','','Revision TKR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0222','H','',0,0,'','','Scaphid CRIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0223','H','',0,0,'','','Scaphid Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0224','H','',0,0,'','','Scaphoid BG+ ORIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0225','H','',0,0,'','','Scaphoid ORIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0226','H','',0,0,'','','Scapulla Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0227','H','',0,0,'','','SEQUESTRECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'Y','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0228','H','',0,0,'','','Shoulder artherotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0229','H','',0,0,'','','Shoulder Arthodesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0230','H','',0,0,'','','Shoulder disarticulation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0231','H','',0,0,'','','SHOULDER DISLOCATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0232','H','',0,0,'','','SI joint Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0233','H','',0,0,'','','SI ligament Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0234','H','',0,0,'','','Soft tissue tumor excision major (Benign)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0235','H','',0,0,'','','Soft tissue tumor excision minor ( Benign)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0236','H','',0,0,'','','Soft Tissue-Benign Tumor excision foot Large','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0237','H','',0,0,'','','Soft Tissue-Benign Tumor excision foot medium','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0238','H','',0,0,'','','Soft Tissue-Benign Tumor excision foot small','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0239','H','',0,0,'','','Soft Tissue-Ganglion excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0240','H','',0,0,'','','Soft Tissue-Glomus tumor exicion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0241','H','',0,0,'','','Soft Tissue-Malignant Tumor excision foot Large','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0242','H','',0,0,'','','Soft Tissue-Malignant Tumor excision foot medium','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0243','H','',0,0,'','','Soft Tissue-Malignant Tumor excision foot small','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0244','H','',0,0,'','','Soft Tissue-MB Cyst removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0245','H','',0,0,'','','Steindler release','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0246','H','',0,0,'','','Sub Talar Fusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0247','H','',0,0,'','','Subacromial Bursa excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0248','H','',0,0,'','','Subtalar Dislocation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0249','H','',0,0,'','','Synovectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0250','H','',0,0,'','','Tarsal fusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0251','H','',0,0,'','','TBW Patella','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0252','H','',0,0,'','','TEN nailing femur','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0253','H','',0,0,'','','Tendon transfer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0254','H','',0,0,'','','Tendon transfers(Multiple)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0255','H','',0,0,'','','Tennis elbow release','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0256','H','',0,0,'','','THR- Cemented','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0257','H','',0,0,'','','THR- CEMENTLESS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',9,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0258','H','',0,0,'','','THR Hybrid','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0259','H','',0,0,'','','THR PACKAGE BILATERAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0260','H','',0,0,'','','THR PACKAGE UNILATERAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0261','H','',0,0,'','','THR-Removal of implant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0262','H','',0,0,'','','THR-Revision - Cemented','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0263','H','',0,0,'','','THR-Revision - Cementless','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0264','H','',0,0,'','','Tibia - Nailing/ Plating','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0265','H','',0,0,'','','TIBIA FIBULA FRACTURE IMPLANT REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0266','H','',0,0,'','','TIBIA ILIZAROV','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0267','H','',0,0,'','','Tibia Pilon Fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0268','H','',0,0,'','','TIBIA PLATE REMOVAL ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0269','H','',0,0,'','','TKR - TOTAL KNEE REPLACEMENT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',9,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0270','H','',0,0,'','','TKR PACKAGE BILATERAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0271','H','',0,0,'','','TKR PACKAGE UNILATERAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0272','H','',0,0,'','','Total elbow replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0273','H','',0,0,'','','TOTAL KNEE REPLACEMENT(WITH US FDA APPROVED IMPLANTS METAL BACK)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80000,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0274','H','',0,0,'','','TRIGGER THUMB RELEASE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0275','H','',0,0,'','','Triple fusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0276','H','',0,0,'','','TSR (Total Shoulder Replacement)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0277','H','',0,0,'','','TUMOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0278','H','',0,0,'','','Tumor excision knee ( Malignant)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0279','H','',0,0,'','','Tumor lower end radius excision ( Malignant)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0280','H','',0,0,'','','Tumor lower radius scrapping & BG ( Malignant)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0281','H','',0,0,'','','Wrist arthrodesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0282','H','',0,0,'','','Wrist deformity correction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0283','H','',0,0,'','','Wrist disarticulation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'ORTS','','ORTS0284','H','',0,0,'','','Wrist Dislocation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'OSCG','','OSCG0001','H','',0,0,'','','Whole Body Bone Scan with SPECT.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3079,3079,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OSCG','','OSCG0002','H','',0,0,'','','Three phase whole body Bone Scan','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3079,3079,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0001','H','',1,0,'','','CONSULTATION  OPD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'Y','Y','Y',0,'','U','','Y','Y','Y','shweta','2025-10-17 14:29:11','I','Y',99,'','','','','thims','0000-00-00 00:00:00','shweta','2025-10-17 14:29:11'),(0,0,'OTCG','','OTCG0002','H','',0,0,'','','Consultation- for Inpatients','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',270,270,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0003','H','',1,0,'','','DRESSING MINOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','Y','Y',0,'','U','','Y','Y','Y','shweta','2025-10-17 14:30:05','I','Y',99,'','','','','thims','0000-00-00 00:00:00','shweta','2025-10-17 14:30:05'),(0,0,'OTCG','','OTCG0004','H','',0,0,'','','Suturing  of wounds with local anesthesia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',108,108,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0005','H','',0,0,'','','Aspiration Plural Effusion - Diagnostic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',120,120,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0006','H','',0,0,'','','Aspiration Plural Effusion - Therapeutic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',193,193,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0007','H','',0,0,'','','Abdominal Aspiration - Diagnostic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',345,345,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0008','H','',0,0,'','','Abdominal Aspiration - Therapeutic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',460,460,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0009','H','',0,0,'','','Pericardial Aspiration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',380,380,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0010','H','',0,0,'','','Joints Aspiration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',317,317,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0011','H','',0,0,'','','Biopsy Skin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',230,230,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0012','H','',0,0,'','','Removal of Stitches','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',36,36,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0013','H','',0,0,'','','Venesection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',124,124,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0014','H','',0,0,'','','Phimosis Under LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1311,1311,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0015','H','',0,0,'','','Sternal puncture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',173,173,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0016','H','',0,0,'','','Injection for Haemorrhoids','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',414,414,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0017','H','',0,0,'','','Injection for  Varicose Veins','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0018','H','',0,0,'','','Catheterisation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',83,83,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0019','H','',0,0,'','','Dilatation of Urethra','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0020','H','',0,0,'','','Incision & Drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',420,420,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0021','H','',0,0,'','','Intercostal Drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',125,125,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0022','H','',0,0,'','','Peritoneal Dialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1319,1319,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0023','H','',0,0,'','','Immunofluorescence','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0024','H','',0,0,'','','Direct(Skin and kidney Disease)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',425,425,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0025','H','',0,0,'','','Indirect (antids DNA Anti Smith ANCA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',425,425,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0026','H','',0,0,'','','VitD3 assay','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',550,550,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0027','H','',0,0,'','','Serum Protein electrophoresis with\nimmunofixationelectrophoresis (IFE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0028','H','',0,0,'','','BETA-2 Microglobulin assay','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0029','H','',0,0,'','','Anti cycliocitrullinated peptide (Anti CCP)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0030','H','',0,0,'','','Anti tissuetransglutaminase antibody','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',425,425,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0031','H','',0,0,'','','Serum Erythropoetin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',425,425,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0032','H','',0,0,'','','ACTH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0033','H','',0,0,'','','OBSERVATION CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'Y','Y','Y',0,'','U','','Y','Y','Y','shweta','2025-10-17 14:25:44','I','Y',99,'','','','','shweta','2025-10-17 14:25:44','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0001','H','',0,0,'','','MG072C - Acute Haemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2200,NULL,'',1097,'N','N','Y',1097,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0002','H','',0,0,'','','MG072D - Chronic Haemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22000,NULL,'',1098,'N','N','Y',1098,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0003','H','',0,0,'','','OT001A - Pre Procedure workup-Donor/ Recipient, Immunosuppressives, Transplant and Induction for recipients with unrelated/deceased donor/or at high risk for rejection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,281300,NULL,'',1099,'N','N','Y',1099,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0004','H','',0,0,'','','OT001C - Banff type 1Aor 1B','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,150000,NULL,'',1100,'N','N','Y',1100,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0005','H','',0,0,'','','OT001D - Post-Transplant Medication ? Month 1-3','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1101,'N','N','Y',1101,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0006','H','',0,0,'','','OT001E - Post-Transplant Medication ? Month 3-6','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1102,'N','N','Y',1102,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0007','H','',0,0,'','','OT001F - Post-Transplant Medication ? Month 6-12','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1103,'N','N','Y',1103,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0008','H','',0,0,'','','OT002A - Pre Transplant Evaluation and Stem Cell Collection and Cryopreservation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,125000,NULL,'',1104,'N','N','Y',1104,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0009','H','',0,0,'','','OT002B - Transplant (includes conditioning)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,312500,NULL,'',1105,'N','N','Y',1105,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0010','H','',0,0,'','','OT002C - Post Transplant Care for 3 months(includes supportive care and investigations)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',1106,'N','N','Y',1106,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0011','H','',0,0,'','','OT002GJA - Liver transplantation from deceased donor Part - 3 Operative Part','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,462500,NULL,'',1107,'N','N','Y',1107,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0012','H','',0,0,'','','OT003GJA - for 1 to 3 day','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',1108,'N','N','Y',1108,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0013','H','',0,0,'','','OT003GJB - for 10 day or above','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,150000,NULL,'',1109,'N','N','Y',1109,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0014','H','',0,0,'','','OT003GJC - for 3 to 7 day','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,112500,NULL,'',1110,'N','N','Y',1110,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0015','H','',0,0,'','','OT004GJA - for 11-20 days ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,112500,NULL,'',1111,'N','N','Y',1111,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0016','H','',0,0,'','','OT004GJB - for 21 and above days ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,150000,NULL,'',1112,'N','N','Y',1112,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0017','H','',0,0,'','','OT004GJC - 3-10 days ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',1113,'N','N','Y',1113,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0018','H','',0,0,'','','OT005GJA - for 13 and above Days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',1114,'N','N','Y',1114,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0019','H','',0,0,'','','OT005GJB - for 3-7 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18000,NULL,'',1115,'N','N','Y',1115,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0020','H','',0,0,'','','OT005GJC - for 8-12 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,36000,NULL,'',1116,'N','N','Y',1116,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0021','H','',0,0,'','','OT006GJA - for 13 and above Days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,66000,NULL,'',1117,'N','N','Y',1117,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0022','H','',0,0,'','','OT006GJB - for 3-7 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19800,NULL,'',1118,'N','N','Y',1118,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0023','H','',0,0,'','','OT006GJC - for 8-12 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,39600,NULL,'',1119,'N','N','Y',1119,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0024','H','',0,0,'','','OT007GJA - Dual lobe liver transplantation: One lobe from one living donor and other lobe from other living donor (Two donor hepatectomy and one liver recipient surgery)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',1120,'N','N','Y',1120,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0025','H','',0,0,'','','OT008GJA - Dual lobe liver transplantation: One lobe from one living donor and other lobe from other living donor (Two donor hepatectomy and one liver recipient surgery) Receipient Ix Part-5 Operativr','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1080000,NULL,'',1121,'N','N','Y',1121,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0026','H','',0,0,'','','OT009GJA - for liver donor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1122,'N','N','Y',1122,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0027','H','',0,0,'','','OT009GJB - for liver recipient','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1123,'N','N','Y',1123,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0028','H','',0,0,'','','OT010GJA - for abdominal wash','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1124,'N','N','Y',1124,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0029','H','',0,0,'','','OT010GJB - for pancreatectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1125,'N','N','Y',1125,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0030','H','',0,0,'','','OT011GJA - HEPATITIS C VIRUS TREAMENTInclude Sofosbuvir400+ledispasvir90mg OD for 3 months and HCVRNA quantity ( 3 times) (Rate per Month)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10500,NULL,'',1126,'N','N','Y',1126,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0031','H','',0,0,'','','OT012GJA - Invasive fungal infection after liver transplant Include Liposomal Amphotericin 5-10  mg/kg/day for 30 days and Surgical debridement, ICU stay for 10 days Hospital stay for 21 days With Lip','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,375000,NULL,'',1127,'N','N','Y',1127,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0032','H','',0,0,'','','OT013GJA - Kidney transplantation Laparoscopic Donor nephrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',1128,'N','N','Y',1128,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0033','H','',0,0,'','','OT014GJA - Liver resection for HCC in Child-A cirrhosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,125000,NULL,'',1129,'N','N','Y',1129,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0034','H','',0,0,'','','OT015GJA - Part - 1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',1130,'N','N','Y',1130,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0035','H','',0,0,'','','OT015GJB - Part - 2','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1131,'N','N','Y',1131,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0036','H','',0,0,'','','OT016GJA - Part - 1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8750,NULL,'',1132,'N','N','Y',1132,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0037','H','',0,0,'','','OT016GJB - Part - 2','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17500,NULL,'',1133,'N','N','Y',1133,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0038','H','',0,0,'','','OT016GJC - Part -3 Operative Part','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,323750,NULL,'',1134,'N','N','Y',1134,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0039','H','',0,0,'','','OT017GJA - Part - 1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11250,NULL,'',1135,'N','N','Y',1135,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0040','H','',0,0,'','','OT017GJB - Part-2 Investigations CT triphasic angiography for celiac axis, CT Volumetry, MR cholengiography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7500,NULL,'',1136,'N','N','Y',1136,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0041','H','',0,0,'','','OT017GJC - Part-3 Operative Part','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,131250,NULL,'',1137,'N','N','Y',1137,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0042','H','',0,0,'','','OT018GJA - (Calcineurin based ) Include Prednisolone, Tacrolimus  2mg/day Mycophenolate upto 2 g /day(Rate per month)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3500,NULL,'',1138,'N','N','Y',1138,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0043','H','',0,0,'','','OT018GJB - (Calcineurin  and mTOR based ) Include Prednisolone Tacrolimus 2 mg/day  Everolimus 1 mg/day, Mycophenolate upto 2 g/day (Rate per month)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8000,NULL,'',1139,'N','N','Y',1139,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0044','H','',0,0,'','','OT019GJA - Monthly everolimus Immunosuppression  after kidney transplant(Rate per Month)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9000,NULL,'',1140,'N','N','Y',1140,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0045','H','',0,0,'','','OT020GJA - Monthly investigations and  immunosuppression  after kidney transplant  Include Prednisolone,Tacrolimus  4mg/day,Mycophenolate 360 or 500 mg (4 tables)  /day, Sepmax OD (Package Rate per mo','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1141,'N','N','Y',1141,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0046','H','',0,0,'','','OT021GJA - Include Prednisolone Tacrolimus 2 mg/day +Everolimus 1 mg/day, Mycophenolate upto 2 g /day Fluconazole 100mg/day, Septran 1 tablet once a day ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7800,NULL,'',1142,'N','N','Y',1142,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0047','H','',0,0,'','','OT021GJB - Include Prednisolone ,Tacrolimus  4mg/day, Mycophenolate upto 2 g / day , Fluconazole 100mg/day, Septran 1 tablet once a day,','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4200,NULL,'',1143,'N','N','Y',1143,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0048','H','',0,0,'','','OT022GJA - Monthly investigations and  immunosuppression from discharge after kidney transplant Include Prednisolone ,Tacrolimus  4mg/day, Mycophenolate 360 or 500 mg (4 tables)  /day, Valgancyclovir ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1144,'N','N','Y',1144,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0049','H','',0,0,'','','OT023GJA - Include Prednisolone, Tacrolimus  4mg/day, Mycophenolate   upto  2 g /day, Valgancyclovir 450 mg ,Fluconazole 100mg/day, Septran 1 tablet once a day  For First Month','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41580,NULL,'',1145,'N','N','Y',1145,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0050','H','',0,0,'','','OT023GJB - Include Prednisolone, Tacrolimus  4mg/day, Mycophenolate   upto  2 g /day, Valgancyclovir 450 mg ,Fluconazole 100mg/day, Septran 1 tablet once a day  For Second Month','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13860,NULL,'',1146,'N','N','Y',1146,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0051','H','',0,0,'','','OT023GJC - Include Prednisolone, Tacrolimus  4mg/day, Mycophenolate   upto  2 g /day, Valgancyclovir 450 mg ,Fluconazole 100mg/day, Septran 1 tablet once a day  For Third Month','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13860,NULL,'',1147,'N','N','Y',1147,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0052','H','',0,0,'','','OT024GJA - Monthly once a day tacrolimus immunosuppression  after kidney transplant (Rate per Month)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6800,NULL,'',1148,'N','N','Y',1148,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0053','H','',0,0,'','','OT025GJA - Monthly sirolimus immunosuppression  after kidney transplant (Rate per Month)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3680,NULL,'',1149,'N','N','Y',1149,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0054','H','',0,0,'','','OT026GJA - Part - 1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1150,'N','N','Y',1150,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0055','H','',0,0,'','','OT026GJB - Part - 4 Operative Part','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,320000,NULL,'',1151,'N','N','Y',1151,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0056','H','',0,0,'','','OT026GJC - Part=3 Investigation Single Antigen Quantitative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',1152,'N','N','Y',1152,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0057','H','',0,0,'','','OT026GJD - Part-2 Investigations HLA Typing LCM, FCM Single Antigen Qualitative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',1153,'N','N','Y',1153,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0058','H','',0,0,'','','OT027GJA - Part - 1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18000,NULL,'',1154,'N','N','Y',1154,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0059','H','',0,0,'','','OT027GJB - Part=3 InvestigationSingle Antigen Quantitative ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27000,NULL,'',1155,'N','N','Y',1155,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0060','H','',0,0,'','','OT027GJC - Part-2 Investigations HLA Typing LCM, FCM Single Antigen Qualitative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27000,NULL,'',1156,'N','N','Y',1156,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0061','H','',0,0,'','','OT027GJD - Part-4 Operative Part ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,288000,NULL,'',1157,'N','N','Y',1157,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0062','H','',0,0,'','','OT028GJA - Part-2 Investigations HLA Typing LCM, FCM Single Antigen Qualitative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22500,NULL,'',1158,'N','N','Y',1158,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0063','H','',0,0,'','','OT028GJB - Part - 1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1159,'N','N','Y',1159,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0064','H','',0,0,'','','OT028GJC - Part - 3','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22500,NULL,'',1160,'N','N','Y',1160,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0065','H','',0,0,'','','OT028GJD - Part-4 Operative Part ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,240000,NULL,'',1161,'N','N','Y',1161,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0066','H','',0,0,'','','OT029GJA - Part - 1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1162,'N','N','Y',1162,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0067','H','',0,0,'','','OT029GJB - Part - 4 Operative Part','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,420000,NULL,'',1163,'N','N','Y',1163,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0068','H','',0,0,'','','OT029GJC - Part-2 Investigations HLA Typing LCM, FCM Single Antigen Qualitative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1164,'N','N','Y',1164,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0069','H','',0,0,'','','OT029GJD - Part-3 Investigation Single Antigen Quantitative,  S. Amylase, S. lipase, C-Peptide, GAD Antibody, Plain CT of Abdomen ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',1165,'N','N','Y',1165,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0070','H','',0,0,'','','OT030GJA - Percutaneous liver allograft biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1166,'N','N','Y',1166,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0071','H','',0,0,'','','OT031GJA - for acute B cell rejection Albumin and Rituximab based protocol ( Rate is per sittings with limit of 4 sittings)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49000,NULL,'',1167,'N','N','Y',1167,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0072','H','',0,0,'','','OT031GJB - for highly sensitized recipient Albumin and Rituximab based protocol (rate is  per sittings with limit of 4 sittings)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1168,'N','N','Y',1168,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0073','H','',0,0,'','','OT032GJA - ERCP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1169,'N','N','Y',1169,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0074','H','',0,0,'','','OT032GJB - ERCP with stenting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18000,NULL,'',1170,'N','N','Y',1170,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0075','H','',0,0,'','','OT032GJC - Incisional hernia repair (Prosthetic mesh)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1171,'N','N','Y',1171,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0076','H','',0,0,'','','OT032GJD - Percutaneous transhepatic biliary drainage (PTBD)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1172,'N','N','Y',1172,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0077','H','',0,0,'','','OT032GJE - Roux en Y jejunojejunostomy and choledochojejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1173,'N','N','Y',1173,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0078','H','',0,0,'','','OT032GJF - Hepatitis B infection (entecavir resistant)Includes tenofovir 300 mg /day (Rate Per Month)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4700,NULL,'',1174,'N','N','Y',1174,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0079','H','',0,0,'','','OT032GJG - Hepatitis B infection Includes entecavir 0.5 mg /day (Rate Per Month)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4000,NULL,'',1175,'N','N','Y',1175,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0080','H','',0,0,'','','OT032GJH - Hepatitis C infectionIncludes sofosbuvir 400 mg/ day  + daclatasavir 60 mg/day  + ribavirin 1000 mg/day (Rate Per Month)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',1176,'N','N','Y',1176,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0081','H','',0,0,'','','OT032GJI - Percutaneous Endoscopy guided gastrostomy (PEG)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8000,NULL,'',1177,'N','N','Y',1177,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0082','H','',0,0,'','','OT033GJA - Radiofrequency ablation (RFA) for HCC for Child-A, B and C cirrhosis(Rate per session)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1178,'N','N','Y',1178,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0083','H','',0,0,'','','OT034GJA - Part - 1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24000,NULL,'',1179,'N','N','Y',1179,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0084','H','',0,0,'','','OT034GJB - Part-2 Investigations HLA Typing LCM, FCM Single Antigen Qualitative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,36000,NULL,'',1180,'N','N','Y',1180,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0085','H','',0,0,'','','OT034GJC - Part-3 Investigation Single Antigen Quantitative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,36000,NULL,'',1181,'N','N','Y',1181,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0086','H','',0,0,'','','OT034GJD - Part-4 Operative Part','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,384000,NULL,'',1182,'N','N','Y',1182,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0087','H','',0,0,'','','OT035GJA - Robotic kidney transplantation from deceased donor Part - 1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23000,NULL,'',1183,'N','N','Y',1183,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0088','H','',0,0,'','','OT035GJB - Part - 4 Operative Part','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,368000,NULL,'',1184,'N','N','Y',1184,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0089','H','',0,0,'','','OT035GJC - Part-2 Investigations HLA Typing LCM, FCM Single Antigen Qualitative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34500,NULL,'',1185,'N','N','Y',1185,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0090','H','',0,0,'','','OT035GJD - Part-3 Investigation Single Antigen Quantitative ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34500,NULL,'',1186,'N','N','Y',1186,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0091','H','',0,0,'','','OT036GJA - Part - 1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22000,NULL,'',1187,'N','N','Y',1187,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0092','H','',0,0,'','','OT036GJB - Part - 4 Operative Part','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,352000,NULL,'',1188,'N','N','Y',1188,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0093','H','',0,0,'','','OT036GJC - Part-2 Investigations HLA Typing LCM, FCM Single Antigen Qualitative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33000,NULL,'',1189,'N','N','Y',1189,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0094','H','',0,0,'','','OT036GJD - Part-3 Investigation Single Antigen Quantitative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33000,NULL,'',1190,'N','N','Y',1190,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0095','H','',0,0,'','','OT037GJA - Part - 1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',1191,'N','N','Y',1191,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0096','H','',0,0,'','','OT037GJB - Part - 2','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1192,'N','N','Y',1192,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0097','H','',0,0,'','','OT037GJC - Part - 3 Operative Part','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,462500,NULL,'',1193,'N','N','Y',1193,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0098','H','',0,0,'','','OT038GJA - Trans-jugular Intrahepatic Porto-Systemic Shunt procedure (TIPS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,150000,NULL,'',1194,'N','N','Y',1194,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0099','H','',0,0,'','','OT039GJA - Trans-jugular liver allograft biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8000,NULL,'',1195,'N','N','Y',1195,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0100','H','',0,0,'','','OT040GJA - for 13 Days abd above','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,225000,NULL,'',1196,'N','N','Y',1196,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0101','H','',0,0,'','','OT040GJB - for 8-13 Days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,135000,NULL,'',1197,'N','N','Y',1197,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0102','H','',0,0,'','','OT040GJC - for3-7 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,67500,NULL,'',1198,'N','N','Y',1198,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0103','H','',0,0,'','','OT041GJA - for 3rd  month','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',1199,'N','N','Y',1199,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0104','H','',0,0,'','','OT041GJB - for First month  ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,80000,NULL,'',1200,'N','N','Y',1200,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0105','H','',0,0,'','','OT041GJC - for second month','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',1201,'N','N','Y',1201,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0106','H','',0,0,'','','OT042GJA - for  3-7 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9000,NULL,'',1202,'N','N','Y',1202,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0107','H','',0,0,'','','OT042GJB - for 13 and above days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',1203,'N','N','Y',1203,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0108','H','',0,0,'','','OT042GJC - for 8-12 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18000,NULL,'',1204,'N','N','Y',1204,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0109','H','',0,0,'','','OT043GJA - for 13 and above Days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,130000,NULL,'',1205,'N','N','Y',1205,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0110','H','',0,0,'','','OT043GJB - for 3-7 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,39000,NULL,'',1206,'N','N','Y',1206,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0111','H','',0,0,'','','OT043GJC - for 8-12 days','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,78000,NULL,'',1207,'N','N','Y',1207,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0112','H','',0,0,'','','OT044GJA - Treatment of Invasive fungal infection after kidney transplant  Include Liposomal Amphotericin 300MG /day(5mg/kg for 60 kg person) for 30 days and Surgical debridement Hospital stay for 10 ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12000,NULL,'',1208,'N','N','Y',1208,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0113','H','',0,0,'','','OT045GJA - Wound exploration for kidney graft nephrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1209,'N','N','Y',1209,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0114','H','',0,0,'','','OT046GJA - Yearly HEPATITIS B VIRUS TREATMENT Include ENTECAVIR 0.5 MG OD for 12 months, HBVDNA quantity( 3 time) (Rate per Month)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2200,NULL,'',1210,'N','N','Y',1210,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0115','H','',0,0,'','','OT048GJA - Heart Transplant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,999000,NULL,'',1211,'N','N','Y',1211,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'OTPM','','OTPM0116','H','',0,0,'','','OT049GJA - UTERINE TRANSPLANT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,360000,NULL,'',1212,'N','N','Y',1212,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PACG','','PACG0001','H','',0,0,'','','Excision of thyroglossal Duct/Cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14400,14400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0002','H','',0,0,'','','Diaphragmatic Hernia Repair (Thoracic or\nAbdominal Approach)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17250,17250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0003','H','',0,0,'','','Tracheo Oesophageal Fistula (Correction\nSurgery)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',23000,23000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0004','H','',0,0,'','','Colon Replacement of Oesophagus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',23000,23000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0005','H','',0,0,'','','Omphalo Mesenteric Cyst Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17250,17250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0006','H','',0,0,'','','Omphalo Mesenteric Duct-    Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15525,15525,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0007','H','',0,0,'','','Meckels Diverticulectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3347,3347,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0008','H','',0,0,'','','Omphalocele 1st Stage (Hernia Repair)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15525,15525,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0009','H','',0,0,'','','Omphalocele 2nd Stge (Hernia Repair)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17250,17250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0010','H','',0,0,'','','Gastrochisis Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16100,16100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0011','H','',0,0,'','','Inguinal Herniotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12558,12558,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0012','H','',0,0,'','','Congenital Hydrocele','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0013','H','',0,0,'','','Hydrocele of Cord','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0014','H','',0,0,'','','Torsion Testis Operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0015','H','',0,0,'','','Congenital Pyloric Stenosis- operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13938,13938,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0016','H','',0,0,'','','Duodenal-  Atresia Operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14000,14000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0017','H','',0,0,'','','Pancreatic Ring Operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',22425,22425,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0018','H','',0,0,'','','Meconium Ileus Operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14500,14500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0019','H','',0,0,'','','Malrotation of Intestines Operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13000,13000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0020','H','',0,0,'','','Rectal Biopsy (Megacolon)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',9736,9736,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0021','H','',0,0,'','','Colostomy Transverse','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13500,13500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0022','H','',0,0,'','','Colostomy Left Iliac','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13500,13500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0023','H','',0,0,'','','Abdominal Perineal Pull Through (Hirschaprugis\nDisease)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19000,19000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0024','H','',0,0,'','','Imperforate Anus Low Anomaly -Cut Back\nOperation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',10235,10235,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0025','H','',0,0,'','','Imperforate Anus Low Anomaly -  Perineal\nAnoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0026','H','',0,0,'','','Imperforate Anus High Anomaly -Sacroabdomino\nPerineal Pull Through','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12500,12500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0027','H','',0,0,'','','Imperforate Anus High Anomaly -  Closure of\nColostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',8625,8625,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0028','H','',0,0,'','','Intususception Operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20700,20700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0029','H','',0,0,'','','Choledochoduodenostomy for Atresia of Extra\nHepatic Billiary Duct','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0030','H','',0,0,'','','Operation of Choledochal Cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14400,14400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0031','H','',0,0,'','','Nephrectomy for -Pyonephrosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',17000,17000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0032','H','',0,0,'','','Nephrectomy for -  Hydronephrosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0033','H','',0,0,'','','Nephrectomy for -Wilms Tumour','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13500,13500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0034','H','',0,0,'','','Paraortic Lymphadenoctomy with Nephrectomy\nfor Wilms Tumour','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13200,13200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0035','H','',0,0,'','','Sacro-Coccygeal Teratoma Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12600,12600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0036','H','',0,0,'','','Neuroblastoma  Debulking','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',14400,14400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0037','H','',0,0,'','','Neuroblastoma Total Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',18630,18630,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0038','H','',0,0,'','','Rhabdomyosarcoma wide Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',13500,13500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0039','H','',0,0,'','','Congenital Atresia & Stenosis of Small Intestine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',19000,19000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0040','H','',0,0,'','','Muconium ileus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',16000,16000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0041','H','',0,0,'','','Mal-rotation & Volvulus of the Midgut','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0042','H','',0,0,'','','Excision of Meckle?s Deverticulum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',12000,12000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0043','H','',0,0,'','','Other Major Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',27000,27000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PACG','','PACG0044','H','',0,0,'','','Other Minor Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11050,11050,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PEDP','','PEDP0001','H','',0,0,'','','BONE MARROW ASPIRATION - PEDIATRIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6000,6000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDP','','PEDP0002','H','',0,0,'','','CVP Line/ PICC Line - Neo/Ped','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDP','','PEDP0003','H','',0,0,'','','Double Volume Exchange Tranfusion - Neonate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDP','','PEDP0004','H','',0,0,'','','Intubation - Neo/Ped','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDP','','PEDP0005','H','',0,0,'','','Liver Biopsy - Pediatric','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDP','','PEDP0006','H','',0,0,'','','lntraventricle Tap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDP','','PEDP0007','H','',0,0,'','','Lumbar Puncture - Neo/Ped','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDP','','PEDP0008','H','',0,0,'','','Needle Thoracotomy /ICD Placement - Neo/Ped','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDP','','PEDP0009','H','',0,0,'','','Neonatal Resuscitation during Caesarian','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDP','','PEDP0010','H','',0,0,'','','Partial Exchange Tranfusion - Neonate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDP','','PEDP0011','H','',0,0,'','','Peripheral Arterial Line Neo/Ped','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDP','','PEDP0012','H','',0,0,'','','Pleural / Ascitic Tapping - Diagnostic - Neo/Ped','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDP','','PEDP0013','H','',0,0,'','','Pleural Tapping Therapeutic with ICD Placement - Neo/Ped','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDP','','PEDP0014','H','',0,0,'','','STAND BY PEDIATRICIAN FOR LSCS/LABOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDP','','PEDP0015','H','',0,0,'','','Suprapubic Aspiration - Neo/Ped','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDP','','PEDP0016','H','',0,0,'','','Surfactant Administration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDP','','PEDP0017','H','',0,0,'','','Umbilical Catheterization Arterial/ Venous - Neonate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDP','','PEDP0018','H','',0,0,'','','VIGO INSERTION BY PEDIATRICIAN ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0001','H','',0,0,'','','Abdominoperineal pull through/ PSARP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0002','H','',0,0,'','','ANOPLASTY FOR LOW IMPERFORATE ANUS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0003','H','',0,0,'','','Anorectal myomectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0004','H','',0,0,'','','APPENDICECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0005','H','',0,0,'','','ATRESIA OF DUODENAL/ JEJUNAI / ILEAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0006','H','',0,0,'','','Axillary lymph node biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0007','H','',0,0,'','','Biliary atresia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0008','H','',0,0,'','','Bladder angmentation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0009','H','',0,0,'','','BRONCHOSCOPY DIAGNOSTIC/ F,B / BIOPSY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0010','H','',0,0,'','','Choledochal cyst Excision+ Hepato jejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0011','H','',0,0,'','','Colostomy - For Hirschprung\'s Disease','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0012','H','',0,0,'','','COLOSTOMY - FOR IMPERFORATE ANUS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0013','H','',0,0,'','','COLOSTOMY/ ILEOSTOMY / GASTROSTOMY /JEJUNOSTOMY PEDIATRIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0014','H','',0,0,'','','Colostomy/ lleostomy closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0015','H','',0,0,'','','Complete decortication/open/thoracoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0016','H','',0,0,'','','Constriction band of leg - release','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0017','H','',0,0,'','','Coronal Hypospadias','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0018','H','',0,0,'','','Cystic hygroma major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0019','H','',0,0,'','','Cystic hygroma minor excision/sclerotherapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0020','H','',0,0,'','','Cystogastrostomy for pseudo pancreatic cyst.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0021','H','',0,0,'','','Decortication Partial','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0022','H','',0,0,'','','Epispadias','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0023','H','',0,0,'','','Exomphalos major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0024','H','',0,0,'','','Exomphalos minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0025','H','',0,0,'','','Exostrophy Bladder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0026','H','',0,0,'','','Fundoplication for GER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0027','H','',0,0,'','','Gastric pull - up to replace Oesophagus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0028','H','',0,0,'','','Gastroschisis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0029','H','',0,0,'','','Gynecomastia excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0030','H','',0,0,'','','Hepatic Resection for Hepatoblastoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0031','H','',0,0,'','','High lmperforate Anus - Pull through','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0032','H','',0,0,'','','Hirschprung\'s Diseases - Pull through','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0033','H','',0,0,'','','HYDROCELE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0034','H','',0,0,'','','Hydronephrosis - Pyeloplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0035','H','',0,0,'','','Hypertrophic Pyloric Stenosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0036','H','',0,0,'','','Hypospadias - First stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0037','H','',0,0,'','','Hypospadias - fistula stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0038','H','',0,0,'','','Hypospadias - Second stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0039','H','',0,0,'','','Inguinal hernia in neonate bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0040','H','',0,0,'','','Inguinal hernia in neonate unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0041','H','',0,0,'','','Intestinal fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0042','H','',0,0,'','','Intestinal obstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0043','H','',0,0,'','','INTUSSUSCEPTION &RESECTONANASTMOSIS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0044','H','',0,0,'','','LNTUSSUSCEPTION REDUCTION ( X-RAY OR OPERATIVE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0045','H','',0,0,'','','Lysis of intestinal adhesions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0046','H','',0,0,'','','Mal rotation of Gut','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0047','H','',0,0,'','','Meatal Stenosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0048','H','',0,0,'','','Multiple polyps','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0049','H','',0,0,'','','Multiple resection anastmosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0050','H','',0,0,'','','Myelomeningocele large','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0051','H','',0,0,'','','Myelomeningocele small','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0052','H','',0,0,'','','Neuroblastoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0053','H','',0,0,'','','Obstructed/ strangulated hernia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0054','H','',0,0,'','','Occipital Encephalocele','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0055','H','',0,0,'','','Oesophago - coloplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0056','H','',0,0,'','','Oesophagostomy + Gastrostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0057','H','',0,0,'','','One Stage repair of Hypospadias','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0058','H','',0,0,'','','Patent Vitello - Intestinal Duct','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0059','H','',0,0,'','','PERINEAL ANOPLASTY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0060','H','',0,0,'','','Posterior Urethral Valve Fulguration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0061','H','',0,0,'','','Rectal Polypectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0062','H','',0,0,'','','Shunt for Hydrocephalus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0063','H','',0,0,'','','SPLEENECTOMY - LAPROSCOPIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0064','H','',0,0,'','','SPLEENECTOMY - OPEN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0065','H','',0,0,'','','Suturing multiple wounds','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0066','H','',0,0,'','','Suturing of wound - large','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0067','H','',0,0,'','','Suturing of wound - small','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0068','H','',0,0,'','','Testicular Torsion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0069','H','',0,0,'','','Thyroglossal Cyst/ Fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0070','H','',0,0,'','','Tongue tie - VY plasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0071','H','',0,0,'','','Tongue tie release','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0072','H','',0,0,'','','Torticollis - Muscle release','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0073','H','',0,0,'','','Trachea - Esophageal Fistula with Oeso. Atresia - Primary repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0074','H','',0,0,'','','Umbilical Granuloma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0075','H','',0,0,'','','Umbilical Hernia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0076','H','',0,0,'','','Urachus excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0077','H','',0,0,'','','Ureterovesicostomy for VUR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0078','H','',0,0,'','','VARICOCELE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0079','H','',0,0,'','','Venesection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0080','H','',0,0,'','','Vesicostomy for Posterior Urethral (PU) Valve','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PEDS','','PEDS0081','H','',0,0,'','','WILM\'S TUMOUR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PHAR','PH_P','PHAR0001','H','',0,0,'','','PHARMACY PURCHASE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PHAR','PH_R','PHAR0002','H','',0,0,'','','PHARMACY RETURN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PHCG','','PHCG0001','H','',0,0,'','','Ultrasonic therapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',70,70,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PHCG','','PHCG0002','H','',0,0,'','','S.W. Diathermy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',70,70,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PHCG','','PHCG0003','H','',0,0,'','','Electrical stimulation (therapeutic)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',70,70,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PHCG','','PHCG0004','H','',0,0,'','','Muscle testing and diagnostic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',71,71,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PHCG','','PHCG0005','H','',0,0,'','','Infra red','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',75,75,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PHCG','','PHCG0006','H','',0,0,'','','U.V. Therapeutic dose','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',58,58,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PHCG','','PHCG0007','H','',0,0,'','','Intermittent Lumbar Traction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',78,78,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PHCG','','PHCG0008','H','',0,0,'','','Intermittent Cervical traction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',75,75,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PHCG','','PHCG0009','H','',0,0,'','','Wax bath','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',75,75,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PHCG','','PHCG0010','H','',0,0,'','','Hot pack','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',78,78,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PHCG','','PHCG0011','H','',0,0,'','','Breathing Exercises & Postural Drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PHCG','','PHCG0012','H','',0,0,'','','Cerebral Palsy ? exercise','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PHCG','','PHCG0013','H','',0,0,'','','Post ? polio exercise','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PHYS','','PHYS0001','H','',0,0,'','','PHYSIOTHERAPY CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PKG','','PKG0001','H','',0,0,'','','DENTAL CONSULTATION CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PKG','','PKG0002','H','',0,0,'','','DIETICIAN CONSULTATION CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PKG','','PKG0003','H','',0,0,'','','ENT CONSULTATION CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PKG','','PKG0004','H','',0,0,'','','GYNEC CONSULTATION CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PKG','','PKG0005','H','',0,0,'','','OPHTHAL CONSULTATION CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PKG','','PKG0006','H','',0,0,'','','ORTHOPEDIC CONSULTATION CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PKG','','PKG0007','H','',0,0,'','','PHYSICAL FITNESS/ PRE- OPERATIVE FITNESS CONSULTATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PKG','','PKG0008','H','',0,0,'','','PHYSICIAN CONSULTATION CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PKG','','PKG0009','H','',0,0,'','','SURGEON CONSULTATION CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0001','H','',0,0,'','','Abdominoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0002','H','',0,0,'','','Alar Adjustment','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0003','H','',0,0,'','','Alveolar bone grafting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0004','H','',0,0,'','','Arch Bar Insertion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0005','H','',0,0,'','','Arch Bar Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0006','H','',0,0,'','','AV (Arterio-Venous) Fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0007','H','',0,0,'','','AV MALFORMATION EXCISION (ANY PART OF BODY)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0008','H','',0,0,'','','Bat ear Correction(Bilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0009','H','',0,0,'','','Blepharoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0010','H','',0,0,'','','Botox injection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0011','H','',0,0,'','','BRACHIAI PLEXUS REPAIR - ADULT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0012','H','',0,0,'','','BRACHIAI PLEXUS REPAIR - OBSTETRIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0013','H','',0,0,'','','Breast Augmentation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0014','H','',0,0,'','','Breast Reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0015','H','',0,0,'','','Breast Reduction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0016','H','',0,0,'','','Burns dressing in ward (Large)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0017','H','',0,0,'','','Burns dressing in ward (Minor)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0018','H','',0,0,'','','Burns grafting (Extensive)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0019','H','',0,0,'','','Burns grafting (Large)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0020','H','',0,0,'','','Burns grafting (Medium)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0021','H','',0,0,'','','Burns grafting (Small)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0022','H','',0,0,'','','CHARLAS PROCEDURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',9,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0023','H','',0,0,'','','Chin Augmentation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0024','H','',0,0,'','','Cleft Lip Repair - Bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0025','H','',0,0,'','','Cleft Lip Repair - Unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0026','H','',0,0,'','','Cleft Lip Revision - Bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0027','H','',0,0,'','','Cleft Lip Revision - Unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0028','H','',0,0,'','','Cleft Palate Repair - Gr II','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0029','H','',0,0,'','','Cleft Palate Repair - Gr Ill','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0030','H','',0,0,'','','Cleft Palate Repair - Sub mucous','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0031','H','',0,0,'','','Commisurotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0032','H','',0,0,'','','Composite Graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0033','H','',0,0,'','','CONDYLOTOMY WITH IMF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0034','H','',0,0,'','','Contracture Release Mild(Single Contracture)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0035','H','',0,0,'','','Contracture Release Moderate(Single Contracture)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0036','H','',0,0,'','','Contracture Release Severe(Single Contracture)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0037','H','',0,0,'','','Contracture removal - All joints of body','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0038','H','',0,0,'','','Contracture removal - Groin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0039','H','',0,0,'','','Contracture removal - Perineum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0040','H','',0,0,'','','Contracture removal -Post burn','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0041','H','',0,0,'','','Cosmetic Rhinoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0042','H','',0,0,'','','Cranial Bone Grafting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0043','H','',0,0,'','','Cranioplasties','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0044','H','',0,0,'','','DEBRIDEMENT LARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0045','H','',0,0,'','','Debridement Small','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0046','H','',0,0,'','','Dento-alveolar fractures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0047','H','',0,0,'','','Dermabrasion Face','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0048','H','',0,0,'','','Dressing in OT Large','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0049','H','',0,0,'','','Dressing in OT Small','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0050','H','',0,0,'','','Ear Reconstruction 1st stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0051','H','',0,0,'','','Ear Reconstruction 2nd stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0052','H','',0,0,'','','Ectropion eyelids - Canthoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0053','H','',0,0,'','','Epispadias Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0054','H','',0,0,'','','Excision Cyst/Mole','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0055','H','',0,0,'','','EXPLORATION AND MESH REPAIR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0056','H','',0,0,'','','EXT JUGULAR VEIN REPAIR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0057','H','',0,0,'','','Extracranial Bone Osteotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0058','H','',0,0,'','','Eyebrow reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0059','H','',0,0,'','','Eyelid Wiring','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0060','H','',0,0,'','','FACIAL ARTERY LIGATION B/L','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0061','H','',0,0,'','','Facial Palsy surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0062','H','',0,0,'','','Fasciocutaneous Flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0063','H','',0,0,'','','FLAP DETACHMENT & FINAL INSET','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0064','H','',0,0,'','','Full Thickness Graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0065','H','',0,0,'','','Gynaecomastia - Bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0066','H','',0,0,'','','Gynaecomastia - Unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0067','H','',0,0,'','','HEMANGIOMA EXCISON (ANY PART OF BODY)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0068','H','',0,0,'','','HYPOSPADIASIS MEATOTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0069','H','',0,0,'','','Hypospadiasis One Stage Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0070','H','',0,0,'','','INFRAORBITAL PLATING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0071','H','',0,0,'','','Inter Maxillary Fixation(IMF)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0072','H','',0,0,'','','Laceration Large','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0073','H','',0,0,'','','Laceration Multiple','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0074','H','',0,0,'','','Laceration Small','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0075','H','',0,0,'','','Leprosy surgery - Claw hand','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0076','H','',0,0,'','','Leprosy surgery - Foot drop','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0077','H','',0,0,'','','Leprosy surgery - Lagephthalmus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0078','H','',0,0,'','','Leprosy surgery - Post nasal inlay','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0079','H','',0,0,'','','Lipectomy (minor)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0080','H','',0,0,'','','Lipectomy(major)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0081','H','',0,0,'','','Liposuction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0082','H','',0,0,'','','Local Flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0083','H','',0,0,'','','Mandible ORIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0084','H','',0,0,'','','MANDIBLE PLATING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0085','H','',0,0,'','','Mandible# Closed','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0086','H','',0,0,'','','Mandibular Osteotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0087','H','',0,0,'','','Maxilla# ORIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0088','H','',0,0,'','','Maxillary Osteotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0089','H','',0,0,'','','Microneural Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0090','H','',0,0,'','','Microvascular Free Flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0091','H','',0,0,'','','MICROVASCULAR REPAIR - FIBULAR FREE FLAP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0092','H','',0,0,'','','MICROVASCULAR REPAIR - JEJUNAI FREE FLAP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0093','H','',0,0,'','','Microvascular repair - Radial Forearm Free Flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0094','H','',0,0,'','','MID FACE FRACTURES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0095','H','',0,0,'','','MULTIPLE MUSCLE REPAIR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0096','H','',0,0,'','','Multiple Z/W Plasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0097','H','',0,0,'','','MUSCLE REPAIR WITH NERVE RELEASE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0098','H','',0,0,'','','Myocutaneous Flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0099','H','',0,0,'','','Nail bed repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0100','H','',0,0,'','','Nasal Bone #Open Reduction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0101','H','',0,0,'','','Nasal Bone# Close Reduction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0102','H','',0,0,'','','Nasal Reconstruction - sub total','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0103','H','',0,0,'','','Nasal Reconstruction - total','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0104','H','',0,0,'','','NASAL SEPTUM ELEVATION ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',27200,27200,NULL,'',7,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0105','H','',0,0,'','','Nerve Grafting/Secondary','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0106','H','',0,0,'','','NERVE REPAIR - LEFT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0107','H','',0,0,'','','NERVE REPAIR - RIGHT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0108','H','',0,0,'','','ORBITAL PLATING AND FRACTURE REPAIR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0109','H','',0,0,'','','OrbitoZygomatic Complex','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0110','H','',0,0,'','','Palatal Tear Closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0111','H','',0,0,'','','Palate Fistula Closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0112','H','',0,0,'','','PAN FACIAL FRACTURES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0113','H','',0,0,'','','PERFORATED FLAP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0114','H','',0,0,'','','Pharyngoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0115','H','',0,0,'','','Polydactyly - Lower limb','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0116','H','',0,0,'','','Polydactyly - Upper limb','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0117','H','',0,0,'','','POST AURICULAR FLAP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0118','H','',0,0,'','','Pressure Sore Flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0119','H','',0,0,'','','Ptosis eyelid surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0120','H','',0,0,'','','Replantation Arm & Forearm','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0121','H','',0,0,'','','REPLANTATION FINGER MORE THAN TWO','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0122','H','',0,0,'','','REPLANTATION FINGER- TWO','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0123','H','',0,0,'','','Replantation Finger-single','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0124','H','',0,0,'','','RUPTURED LPS RECONSTRUCTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0125','H','',0,0,'','','Scalp reconstuction / scalp flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0126','H','',0,0,'','','Scar Revision-Large','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0127','H','',0,0,'','','Secondary Revision Cl. Lip/Nasal Deformity','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0128','H','',0,0,'','','Skin Grafting (STG)(Major)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0129','H','',0,0,'','','Split Ear Lobule-One','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0130','H','',0,0,'','','Split Ear Lobule-Two','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0131','H','',0,0,'','','Split Skin Graft Large','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0132','H','',0,0,'','','Split Skin Graft Medium','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0133','H','',0,0,'','','Split Skin Graft Small','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0134','H','',0,0,'','','SUPRAORBITAL ROOF FRAGMENT FRACTURE ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0135','H','',0,0,'','','Syndactyly','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0136','H','',0,0,'','','Syndactyly Multiple','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0137','H','',0,0,'','','T.M. Joint Arthroplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0138','H','',0,0,'','','T.M. JOINT OPEN REDUCTION ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',5200,5200,NULL,'',4,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0139','H','',0,0,'','','T.M.Joint Release (Bilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0140','H','',0,0,'','','Tangential Excision Large','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0141','H','',0,0,'','','Tangential Excision Medium','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0142','H','',0,0,'','','Tangential Excision Small','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0143','H','',0,0,'','','Tendon Graft Multiple','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0144','H','',0,0,'','','Tendon Grafting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0145','H','',0,0,'','','Tendon Grafting- 1 Stage Prosthetic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0146','H','',0,0,'','','Tendon Grafting- 1 Stage Prosthetic with pulley','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0147','H','',0,0,'','','Tendon Grafting-2 Stage Prosthetic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0148','H','',0,0,'','','Tongue Flap 1st Stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0149','H','',0,0,'','','Tongue Flap 2nd Stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0150','H','',0,0,'','','Vaginoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0151','H','',0,0,'','','Vermillion Adjustment, Z plasty Lip','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0152','H','',0,0,'','','Z Plasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0153','H','',0,0,'','','Zygoma # Closed','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0154','H','',0,0,'','','Zygoma # ORIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0155','H','',0,0,'','','Zygomatic Arch #','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PLAS','','PLAS0156','H','',0,0,'','','Zygomatic Maxillary Complex','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0001','H','',0,0,'','','PM001A - Hematuria Palliative Interventions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44000,NULL,'',1213,'N','N','Y',1213,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0002','H','',0,0,'','','PM002A - Haemostatic Surgery in advance cancer patient/Haemostatic Radiotherapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44000,NULL,'',1214,'N','N','Y',1214,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0003','H','',0,0,'','','PM003A - Trans arterial Embolization','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,66000,NULL,'',1215,'N','N','Y',1215,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0004','H','',0,0,'','','PM004A - Osteoradionecrosis -Surgical intervention','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44000,NULL,'',1216,'N','N','Y',1216,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0005','H','',0,0,'','','PM005A - Pressure sore-Interventions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44000,NULL,'',1217,'N','N','Y',1217,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0006','H','',0,0,'','','PM006A - Palliative surgical interventions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44000,NULL,'',1218,'N','N','Y',1218,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0007','H','',0,0,'','','PM007A - Malignant Spinal cord compression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16500,NULL,'',1219,'N','N','Y',1219,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0008','H','',0,0,'','','PM008A - Palliative neurological interventions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,66000,NULL,'',1220,'N','N','Y',1220,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0009','H','',0,0,'','','PM009A - Osteoradionecrosis -Conservative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1221,'N','N','Y',1221,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0010','H','',0,0,'','','PM010A - Communications terminal stage/ end of life care Conservative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1222,'N','N','Y',1222,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0011','H','',0,0,'','','PM011A - Palliative Management of Breathlessnes','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1223,'N','N','Y',1223,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0012','H','',0,0,'','','PM012A - Cancer Pain Management','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1224,'N','N','Y',1224,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0013','H','',0,0,'','','PM013A - Pressure sore-in palliative care','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1225,'N','N','Y',1225,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0014','H','',0,0,'','','PM014A - Hiccups in Palliative care','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1226,'N','N','Y',1226,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0015','H','',0,0,'','','PM015A - Complications in palliative care patients','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1227,'N','N','Y',1227,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0016','H','',0,0,'','','PM016A - Ascitis tapping with long term indwelling catheter','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44000,NULL,'',1228,'N','N','Y',1228,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0017','H','',0,0,'','','PM017A - Hematuria in advance cancer patient','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1229,'N','N','Y',1229,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0018','H','',0,0,'','','PM018A - Long term indwelling venous catheter','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11000,NULL,'',1230,'N','N','Y',1230,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0019','H','',0,0,'','','PM019A - Intractable Cough in cancer patients - Conservative management','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1231,'N','N','Y',1231,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0020','H','',0,0,'','','PM020A - Palliative care in Trismus mucositis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1232,'N','N','Y',1232,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0021','H','',0,0,'','','PM021A - Conservative management of fatal bleeding in cancer patients','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1233,'N','N','Y',1233,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0022','H','',0,0,'','','PM022A - Fatigue  in Palliative care','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1234,'N','N','Y',1234,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0023','H','',0,0,'','','PM023A - Pleural effusion & Pleurodesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8300,NULL,'',1235,'N','N','Y',1235,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0024','H','',0,0,'','','PM024A - Management of malignant Ascitis,Tapping & conservative management','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1236,'N','N','Y',1236,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0025','H','',0,0,'','','PM025A - Malignant Cough- Invasive intervantions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44000,NULL,'',1237,'N','N','Y',1237,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0026','H','',0,0,'','','PM026A - Palliative Breathlessness Intervntions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44000,NULL,'',1238,'N','N','Y',1238,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0027','H','',0,0,'','','PM027A - Palliative Delirium in advance chronic disease','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1239,'N','N','Y',1239,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0028','H','',0,0,'','','PM028A - Palliative Wound Conservative management','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1240,'N','N','Y',1240,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0029','H','',0,0,'','','PM029A - Constipation -  Palliative Invasive interventions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33000,NULL,'',1241,'N','N','Y',1241,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0030','H','',0,0,'','','PM030A - Pallitive Nausea and vomiting interventions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33000,NULL,'',1242,'N','N','Y',1242,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0031','H','',0,0,'','','PM031A - Conservative management of  Lymphedema','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1243,'N','N','Y',1243,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0032','H','',0,0,'','','PM032A - Palliative Radiological Interventions. Like-PTBD/ERCP/PCN//Pericardiostomy, DJ Stenting, etc','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22000,NULL,'',1244,'N','N','Y',1244,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0033','H','',0,0,'','','PM033A - Vertebroplasty/Kyphoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44000,NULL,'',1245,'N','N','Y',1245,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0034','H','',0,0,'','','PM034A - Palliative care in Constipation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1246,'N','N','Y',1246,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0035','H','',0,0,'','','PM035A - Palliative care in Bowel Obstruction Conservative management','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1247,'N','N','Y',1247,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0036','H','',0,0,'','','PM036A - Palliative Bowel Obstruction interventions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44000,NULL,'',1248,'N','N','Y',1248,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0037','H','',0,0,'','','PM036B - Palliative Bowel Obstruction interventions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1249,'N','N','Y',1249,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0038','H','',0,0,'','','PM037A - Pallitive care in Nausea and vomiting.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1250,'N','N','Y',1250,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0039','H','',0,0,'','','PM038A - Palliative care in Diarrhoea','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1251,'N','N','Y',1251,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0040','H','',0,0,'','','PM039A - Palliative care end stage disease','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1252,'N','N','Y',1252,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0041','H','',0,0,'','','PM040A - Cancer pain interventions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8300,NULL,'',1253,'N','N','Y',1253,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PMPM','','PMPM0042','H','',0,0,'','','PM041A - Cancer pain plexus interventions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11000,NULL,'',1254,'N','N','Y',1254,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'PTES','','PTES0001','H','',0,0,'','','AUTO GRAFT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',0,'Y','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PTES','','PTES0002','H','',0,0,'','','AUTO GRAFT + GLUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PTES','','PTES0003','H','',0,0,'','','PTERYGIUM SIMPLE EXCISION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',6000,6000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PUCG','','PUCG0001','H','',0,0,'','','Lung Ventilation & Perfusion Scan (V/Q Scan)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3240,3240,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PUCG','','PUCG0002','H','',0,0,'','','Lung Perfusion Scan','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'PULM','','PULM0001','H','',0,0,'','','BRUSHING OF LUNG ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0002','H','',0,0,'','','CONTROL OF HEAMOPTYSIS/MUCUS PLUG REMOVAL ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0003','H','',0,0,'','','FB REMOVAL ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0004','H','',0,0,'','','FIBREOPTIC BRONCHOSCOPY ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0005','H','',0,0,'','','FIBREOPTIC BRONCHOSCOPY +BAL ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0006','H','',0,0,'','','ICD INSERTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',750,750,NULL,'',1,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0007','H','',0,0,'','','INTRA PLEURAL CHEMICAL THROMBOLYSIS ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0008','H','',0,0,'','','INTRA PULMONARY THROMBOLYSIS ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0009','H','',0,0,'','','MASS BIOPSY ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0010','H','',0,0,'','','PERCUTANEOUS LUNG BX ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0011','H','',0,0,'','','PLEURAL ASPIRATION DIAGNOSTIC ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0012','H','',0,0,'','','PLEURAL ASPIRATION THERAPEUTIC ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0013','H','',0,0,'','','PLEURODESIS ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0014','H','',0,0,'','','PULMONARY FUNCTION TEST ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0015','H','',0,0,'','','SLEEP APNEA STUDY ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0016','H','',0,0,'','','SLEEP APNEA STUDY TITRATION ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0017','H','',0,0,'','','THERAPEAUTIC BRONCHOSCOPY - STENT PLACEMENT ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0018','H','',0,0,'','','THORACOSCOPY ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0019','H','',0,0,'','','TRANS BRONCHIAL LUNG BX (TBLB) ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0020','H','',0,0,'','','TRANS THORACIC CT/ USG GUIDED LUNG BIOPSY ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0021','H','',0,0,'','','TRANS-TRACHEAL NODE FNAC (PLUS COST OF NEEDLE) ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULM','','PULM0022','H','',0,0,'','','VATS ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULP','','PULP0001','H','',0,0,'','','FIBER OPTIC BRONCHOSCOPY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3500,3500,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULP','','PULP0002','H','',0,0,'','','FIBER OPTIC BRONCHOSCOPY FOR BAL/ BRUSH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6500,6500,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULP','','PULP0003','H','',0,0,'','','FIBER OPTIC BRONCHOSCOPY WITH BIOPSY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULP','','PULP0004','H','',0,0,'','','FIBER OPTIC BRONCHOSCOPY WITH FOREIGN BODY REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6000,6000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULP','','PULP0005','H','',0,0,'','','FIBEROPTIC BRONPHOSCOPY FOR BAL/BRUSH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',7000,7000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULP','','PULP0006','H','',0,0,'','','ICD INSERTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULP','','PULP0007','H','',0,0,'','','ICD REMOVAL CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULP','','PULP0008','H','',0,0,'','','PFT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULP','','PULP0009','H','',0,0,'','','PLEURAL TAPPING DIAGNOSTIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULP','','PULP0010','H','',0,0,'','','Pleural Tapping Therapeutic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'PULP','','PULP0011','H','',0,0,'','','Pleurodesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'Y','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'REG','','REG0001','H','',1,0,'','','ADMISSION CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-10-10 19:28:16','I','N',1,'','','','','thims','2024-04-01 13:18:00','reception','2025-10-10 19:28:16'),(0,0,'REG','','REG0002','H','',1,0,'','','MRD CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-10-10 19:29:45','I','N',99,'','','','','reception','2025-10-10 19:29:36','reception','2025-10-10 19:29:45'),(0,0,'ROOM','','ROOM0001','H','',5,0,'','','BED CHARGES ICU','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,5500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-10-11 11:33:25','I','N',99,'','','','','thims','2024-04-01 13:18:00','reception','2025-10-11 11:33:25'),(0,0,'ROOM','','ROOM0002','H','',3,0,'','','BED CHARGES - SEMI- SPECIAL ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,2900,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-10-11 11:33:32','I','N',5,'','','','','thims','2024-04-01 13:18:00','reception','2025-10-11 11:33:32'),(0,0,'ROOM','','ROOM0003','H','',1,0,'','','BED CHARGES - SPECIAL ROOM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-10-11 11:33:50','I','N',99,'','','','','reception','2025-10-10 19:34:06','reception','2025-10-11 11:33:50'),(0,0,'ROOM','','ROOM0004','H','',0,0,'','','INFUSION PUMP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-10-11 12:18:46','I','N',99,'','','','','reception','2025-10-11 12:18:46','','0000-00-00 00:00:00'),(0,0,'ROOM','','ROOM0005','H','',0,0,'','','CONSULTANT VISIT 1 - SPECIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-10-11 12:32:14','I','N',99,'','','','','reception','2025-10-11 12:32:14','','0000-00-00 00:00:00'),(0,0,'ROOM','','ROOM0006','H','',0,0,'','','CONSULTANT VISIT 2 - SPECIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-10-11 12:32:31','I','N',99,'','','','','reception','2025-10-11 12:32:31','','0000-00-00 00:00:00'),(0,0,'AECO','','ROOM0007','H','',1,0,'','','EMERGENCY CONSULTANT\'S CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,2000,NULL,'',0,'N','Y','N',0,'','U','','N','Y','Y','thims','2025-10-11 18:00:32','I','N',99,'','','','','reception','2025-10-11 12:35:06','thims','2025-10-11 18:00:32'),(0,0,'ROOM','','ROOM0008','H','',2,0,'','','RBS (RANDOM BLOOD SUGAR)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-10-11 12:43:47','I','N',99,'','','','','reception','2025-10-11 12:42:49','reception','2025-10-11 12:43:47'),(0,0,'ROOM','','ROOM0009','H','',1,0,'','','ROOM CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','Y','N',0,'','U','','N','Y','Y','thims','2025-10-11 18:02:04','I','Y',99,'','','','','thims','2025-10-11 18:01:57','thims','2025-10-11 18:02:04'),(0,0,'SBPM','','SBPM0001','H','',0,0,'','','SB001A - Fracture - Conservative Management - Without plaster','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2300,NULL,'',1255,'N','N','Y',1255,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0002','H','',0,0,'','','SB002A - Skeletal Tractions with pin','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3500,NULL,'',1256,'N','N','Y',1256,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0003','H','',0,0,'','','SB002B - Skin Traction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,900,NULL,'',1257,'N','N','Y',1257,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0004','H','',0,0,'','','SB002C - crutchfiled tong cervical spine traction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1258,'N','N','Y',1258,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0005','H','',0,0,'','','SB002D - POP slab','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',1259,'N','N','Y',1259,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0006','H','',0,0,'','','SB003A - Upper Limbs','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',1260,'N','N','Y',1260,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0007','H','',0,0,'','','SB003B - Lower Limbs','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',1261,'N','N','Y',1261,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0008','H','',0,0,'','','SB003C - POP slab','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2200,NULL,'',1262,'N','N','Y',1262,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0009','H','',0,0,'','','SB004A - Spikas','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3500,NULL,'',1263,'N','N','Y',1263,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0010','H','',0,0,'','','SB004B - Jackets','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3500,NULL,'',1264,'N','N','Y',1264,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0011','H','',0,0,'','','SB005A - Long bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',1265,'N','N','Y',1265,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0012','H','',0,0,'','','SB005B - Small bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9500,NULL,'',1266,'N','N','Y',1266,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0013','H','',0,0,'','','SB005C - Pelvis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19200,NULL,'',1267,'N','N','Y',1267,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0014','H','',0,0,'','','SB005D - Both bones - forearms + JESS Ligamentotaxis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',1268,'N','N','Y',1268,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0015','H','',0,0,'','','SB006A - Percutaneous - Fixation of Fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',1269,'N','N','Y',1269,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0016','H','',0,0,'','','SB007A - Femur + shaft tibia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11000,NULL,'',1270,'N','N','Y',1270,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0017','H','',0,0,'','','SB007B - Humerus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19100,NULL,'',1271,'N','N','Y',1271,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0018','H','',0,0,'','','SB007C - Forearm','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17300,NULL,'',1272,'N','N','Y',1272,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0019','H','',0,0,'','','SB008A - ORIF Small Bones','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11300,NULL,'',1273,'N','N','Y',1273,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0020','H','',0,0,'','','SB009A - Fracture - Long Bones - Metaphyseal - ORIF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16400,NULL,'',1274,'N','N','Y',1274,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0021','H','',0,0,'','','SB010A - ORIF Long Bones','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20800,NULL,'',1275,'N','N','Y',1275,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0022','H','',0,0,'','','SB010B - Closed Reduction & Internal Fixation of long bones Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20800,NULL,'',1276,'N','N','Y',1276,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0023','H','',0,0,'','','SB011A - Plating olecrenon fracture, ulna','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11800,NULL,'',1277,'N','N','Y',1277,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0024','H','',0,0,'','','SB012A - Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1278,'N','N','Y',1278,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0025','H','',0,0,'','','SB012B - Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9200,NULL,'',1279,'N','N','Y',1279,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0026','H','',0,0,'','','SB012C - Replacement with Head Radius Prosthesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1280,'N','N','Y',1280,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0027','H','',0,0,'','','SB013A - Fracture - Single Bone - Forearm - ORIF - Plating / Nailing/DCP/LCP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8900,NULL,'',1281,'N','N','Y',1281,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0028','H','',0,0,'','','SB014A - Fracture - Both Bones - Forearm - ORIF - Plating / Nailing /DCP/LCP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16100,NULL,'',1282,'N','N','Y',1282,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0029','H','',0,0,'','','SB015A - Lateral Condyle','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8500,NULL,'',1283,'N','N','Y',1283,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0030','H','',0,0,'','','SB015B - ORIF with screw/wire of Medial Condyle','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8500,NULL,'',1284,'N','N','Y',1284,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0031','H','',0,0,'','','SB015C - ORIF with screw of proximal humerus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8500,NULL,'',1285,'N','N','Y',1285,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0032','H','',0,0,'','','SB016A - ORIF Fracture intercondylar Humerus + olecranon osteotomy + TBW','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15100,NULL,'',1286,'N','N','Y',1286,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0033','H','',0,0,'','','SB017A - Open Reduction Internal Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17000,NULL,'',1287,'N','N','Y',1287,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0034','H','',0,0,'','','SB018A - ORIF THROUGH Single Approach PLATING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28000,NULL,'',1288,'N','N','Y',1288,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0035','H','',0,0,'','','SB018B - ORIF THROUGH combined Approach PLATING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33500,NULL,'',1289,'N','N','Y',1289,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0036','H','',0,0,'','','SB019A - Closed Reduction and Percutaneous Screw Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15500,NULL,'',1290,'N','N','Y',1290,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0037','H','',0,0,'','','SB019B - ORIF Intertrochanteric Fracture with Dynamic Hip Screw','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18400,NULL,'',1291,'N','N','Y',1291,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0038','H','',0,0,'','','SB019C - ORIF Intertrochanteric Fracture with Proximal Femoral Nail','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16100,NULL,'',1292,'N','N','Y',1292,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0039','H','',0,0,'','','SB020A - ORIF of medial malleolus or bimalleolar fracture or Trimalleolar fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15600,NULL,'',1293,'N','N','Y',1293,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0040','H','',0,0,'','','SB021A - Cervical spine fixation including odontoid','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26700,NULL,'',1294,'N','N','Y',1294,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0041','H','',0,0,'','','SB022A - Dorsal and lumber spine fixation THROUGH Anterior approach','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1295,'N','N','Y',1295,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0042','H','',0,0,'','','SB022B - Dorsal and lumber spine fixation THROUGH Posterior approach','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1296,'N','N','Y',1296,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0043','H','',0,0,'','','SB023A - Bone grafting for Fracture Non union','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18600,NULL,'',1297,'N','N','Y',1297,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0044','H','',0,0,'','','SB024A - Arthorotomy of any joint','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',1298,'N','N','Y',1298,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0045','H','',0,0,'','','SB025A - Elbow','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1299,'N','N','Y',1299,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0046','H','',0,0,'','','SB025B - Knee','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1300,'N','N','Y',1300,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0047','H','',0,0,'','','SB025C - Ankle','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1301,'N','N','Y',1301,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0048','H','',0,0,'','','SB026A - Ankle / Triple with implant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17100,NULL,'',1302,'N','N','Y',1302,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0049','H','',0,0,'','','SB026B - Shoulder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17100,NULL,'',1303,'N','N','Y',1303,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0050','H','',0,0,'','','SB026C - Wrist, Wrist with plating','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17100,NULL,'',1304,'N','N','Y',1304,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0051','H','',0,0,'','','SB026D - Knee, Knee with plating/Nailing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17100,NULL,'',1305,'N','N','Y',1305,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0052','H','',0,0,'','','SB026E - Hand','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27000,NULL,'',1306,'N','N','Y',1306,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0053','H','',0,0,'','','SB026F - Foot','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27000,NULL,'',1307,'N','N','Y',1307,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0054','H','',0,0,'','','SB026G - Ankle / Triple without implant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17400,NULL,'',1308,'N','N','Y',1308,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0055','H','',0,0,'','','SB027A - Hind quarter','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31300,NULL,'',1309,'N','N','Y',1309,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0056','H','',0,0,'','','SB027B - Fore quarter','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31300,NULL,'',1310,'N','N','Y',1310,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0057','H','',0,0,'','','SB027GJC - Hip  and Knee Disarticulation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45000,NULL,'',1311,'N','N','Y',1311,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0058','H','',0,0,'','','SB028A - Hip','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14300,NULL,'',1312,'N','N','Y',1312,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0059','H','',0,0,'','','SB028B - Shoulder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5500,NULL,'',1313,'N','N','Y',1313,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0060','H','',0,0,'','','SB028C - Elbow','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13200,NULL,'',1314,'N','N','Y',1314,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0061','H','',0,0,'','','SB028D - Knee','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11400,NULL,'',1315,'N','N','Y',1315,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0062','H','',0,0,'','','SB029A - Open Reduction of Small Joint without fixation/Open Reduction of Small Joint with fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8500,NULL,'',1316,'N','N','Y',1316,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0063','H','',0,0,'','','SB030A - Tension Band Wiring','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13000,NULL,'',1317,'N','N','Y',1317,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0064','H','',0,0,'','','SB031A - Unipolar','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17400,NULL,'',1318,'N','N','Y',1318,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0065','H','',0,0,'','','SB031B - Bipolar (Non - Modular) cemented /non cemented','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17400,NULL,'',1319,'N','N','Y',1319,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0066','H','',0,0,'','','SB031C - Bipolar (Modular) cemented/non cemented','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17400,NULL,'',1320,'N','N','Y',1320,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0067','H','',0,0,'','','SB032A - Rockwood Type - I','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20500,NULL,'',1321,'N','N','Y',1321,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0068','H','',0,0,'','','SB032B - Rockwood Type - II','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20500,NULL,'',1322,'N','N','Y',1322,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0069','H','',0,0,'','','SB032C - Rockwood Type - III','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20500,NULL,'',1323,'N','N','Y',1323,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0070','H','',0,0,'','','SB032D - Rockwood Type - IV','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20500,NULL,'',1324,'N','N','Y',1324,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0071','H','',0,0,'','','SB032E - Rockwood Type - V','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20500,NULL,'',1325,'N','N','Y',1325,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0072','H','',0,0,'','','SB032F - Rockwood Type - VI','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20500,NULL,'',1326,'N','N','Y',1326,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0073','H','',0,0,'','','SB033A - Excision Arthoplasty of Femur head','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17500,NULL,'',1327,'N','N','Y',1327,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0074','H','',0,0,'','','SB034A - Open Reduction of CDH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1328,'N','N','Y',1328,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0075','H','',0,0,'','','SB035A - Patellectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11000,NULL,'',1329,'N','N','Y',1329,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0076','H','',0,0,'','','SB036A - Arthroscopic Meniscus Repair / Meniscectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12000,NULL,'',1330,'N','N','Y',1330,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0077','H','',0,0,'','','SB037A - Elbow replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27300,NULL,'',1331,'N','N','Y',1331,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0078','H','',0,0,'','','SB038A - Cemented','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,61600,NULL,'',1332,'N','N','Y',1332,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0079','H','',0,0,'','','SB038B - Cementless','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,46300,NULL,'',1333,'N','N','Y',1333,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0080','H','',0,0,'','','SB038C - Hybrid','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,63700,NULL,'',1334,'N','N','Y',1334,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0081','H','',0,0,'','','SB038D - Revision - Total Hip Replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,78600,NULL,'',1335,'N','N','Y',1335,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0082','H','',0,0,'','','SB038E - Revision of failed hemi Arthroplasty in to THR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,52500,NULL,'',1336,'N','N','Y',1336,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0083','H','',0,0,'','','SB039A - Primary - Total Knee Replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,36400,NULL,'',1337,'N','N','Y',1337,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0084','H','',0,0,'','','SB039B - Revision - Total Knee Replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44600,NULL,'',1338,'N','N','Y',1338,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0085','H','',0,0,'','','SB040A - Bone Tumour  Excision (malignant) including GCT + Joint replacement (depending upon type of joint and implant)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,81300,NULL,'',1339,'N','N','Y',1339,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0086','H','',0,0,'','','SB041A - Bone Tumour Excision + reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1340,'N','N','Y',1340,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0087','H','',0,0,'','','SB042A - Bone Tumour (benign) curettage / Excision and bone grafting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27700,NULL,'',1341,'N','N','Y',1341,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0088','H','',0,0,'','','SB043A - Above Elbow','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15400,NULL,'',1342,'N','N','Y',1342,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0089','H','',0,0,'','','SB043B - Below Elbow','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16200,NULL,'',1343,'N','N','Y',1343,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0090','H','',0,0,'','','SB043C - Above Knee','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18100,NULL,'',1344,'N','N','Y',1344,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0091','H','',0,0,'','','SB043D - Below Knee','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18600,NULL,'',1345,'N','N','Y',1345,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0092','H','',0,0,'','','SB043E - Foot','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18600,NULL,'',1346,'N','N','Y',1346,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0093','H','',0,0,'','','SB043F - Hand','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18600,NULL,'',1347,'N','N','Y',1347,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0094','H','',0,0,'','','SB043G - Wrist','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18600,NULL,'',1348,'N','N','Y',1348,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0095','H','',0,0,'','','SB044A - Above Elbow','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23200,NULL,'',1349,'N','N','Y',1349,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0096','H','',0,0,'','','SB044B - Below Elbow','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23200,NULL,'',1350,'N','N','Y',1350,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0097','H','',0,0,'','','SB044C - Above Knee','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23200,NULL,'',1351,'N','N','Y',1351,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0098','H','',0,0,'','','SB044D - Below Knee','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23200,NULL,'',1352,'N','N','Y',1352,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0099','H','',0,0,'','','SB044E - Foot','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23200,NULL,'',1353,'N','N','Y',1353,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0100','H','',0,0,'','','SB044F - Hand','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23200,NULL,'',1354,'N','N','Y',1354,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0101','H','',0,0,'','','SB044G - Wrist','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23200,NULL,'',1355,'N','N','Y',1355,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0102','H','',0,0,'','','SB045A - Finger(s)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13500,NULL,'',1356,'N','N','Y',1356,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0103','H','',0,0,'','','SB045B - Toe(s)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13500,NULL,'',1357,'N','N','Y',1357,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0104','H','',0,0,'','','SB046A - Tendon Grafting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19500,NULL,'',1358,'N','N','Y',1358,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0105','H','',0,0,'','','SB046B - Tendon Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19500,NULL,'',1359,'N','N','Y',1359,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0106','H','',0,0,'','','SB047A - Tendon Release / Tenotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6300,NULL,'',1360,'N','N','Y',1360,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0107','H','',0,0,'','','SB048A - Tenolysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6300,NULL,'',1361,'N','N','Y',1361,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0108','H','',0,0,'','','SB049A - Anterior','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32200,NULL,'',1362,'N','N','Y',1362,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0109','H','',0,0,'','','SB049B - Posterior','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32200,NULL,'',1363,'N','N','Y',1363,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0110','H','',0,0,'','','SB050A - Fasciotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13200,NULL,'',1364,'N','N','Y',1364,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0111','H','',0,0,'','','SB051A - Duputryen?s Contracture release + rehabilitation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13800,NULL,'',1365,'N','N','Y',1365,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0112','H','',0,0,'','','SB052A - Anti-biotic + dressing - minimum of 5 sessions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1366,'N','N','Y',1366,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0113','H','',0,0,'','','SB052B - Anti-biotic + dressing - minimum of 2 sessions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4900,NULL,'',1367,'N','N','Y',1367,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0114','H','',0,0,'','','SB053A - Sequestectomy / Curettage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1368,'N','N','Y',1368,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0115','H','',0,0,'','','SB054A - Spine deformity correction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1369,'N','N','Y',1369,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0116','H','',0,0,'','','SB054B - Combined spinal segment - front and back (anterior/posterior/ combined anterior and posterior)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1370,'N','N','Y',1370,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0117','H','',0,0,'','','SB055A - Long Bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18000,NULL,'',1371,'N','N','Y',1371,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0118','H','',0,0,'','','SB055B - Small Bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1372,'N','N','Y',1372,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0119','H','',0,0,'','','SB056A - Pelvic Osteotomy and fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1373,'N','N','Y',1373,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0120','H','',0,0,'','','SB057A - High Tibial Osteotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16000,NULL,'',1374,'N','N','Y',1374,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0121','H','',0,0,'','','SB058A - Ilizarov Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1375,'N','N','Y',1375,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0122','H','',0,0,'','','SB059A - Limb Lengthening / Bone Transport by Ilizarov','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23700,NULL,'',1376,'N','N','Y',1376,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0123','H','',0,0,'','','SB060A - Growth Modulation and fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5700,NULL,'',1377,'N','N','Y',1377,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0124','H','',0,0,'','','SB061A - Vertical Talus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1378,'N','N','Y',1378,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0125','H','',0,0,'','','SB061B - Other foot deformities','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1379,'N','N','Y',1379,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0126','H','',0,0,'','','SB062A - Correction of club foot per cast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5700,NULL,'',1380,'N','N','Y',1380,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0127','H','',0,0,'','','SB063A - Corrective Surgery in Club Foot / JESS Fixator','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12000,NULL,'',1381,'N','N','Y',1381,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0128','H','',0,0,'','','SB064A - Osteochondroma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1382,'N','N','Y',1382,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0129','H','',0,0,'','','SB064B - Exostosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1383,'N','N','Y',1383,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0130','H','',0,0,'','','SB065A - Excision of Bursa','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',1384,'N','N','Y',1384,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0131','H','',0,0,'','','SB066A - Nerve Transposition','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13000,NULL,'',1385,'N','N','Y',1385,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0132','H','',0,0,'','','SB066B - Nerve Release','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13000,NULL,'',1386,'N','N','Y',1386,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0133','H','',0,0,'','','SB066C - Nerve Neurolysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13000,NULL,'',1387,'N','N','Y',1387,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0134','H','',0,0,'','','SB067A - Nerve Repair Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13800,NULL,'',1388,'N','N','Y',1388,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0135','H','',0,0,'','','SB068A - Nerve root block','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',1389,'N','N','Y',1389,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0136','H','',0,0,'','','SB069A - Exploration and Ulnar nerve Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9800,NULL,'',1390,'N','N','Y',1390,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0137','H','',0,0,'','','SB070A - K - Wire','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1391,'N','N','Y',1391,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0138','H','',0,0,'','','SB070B - Screw','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1392,'N','N','Y',1392,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0139','H','',0,0,'','','SB071A - Nail','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1393,'N','N','Y',1393,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0140','H','',0,0,'','','SB071B - Plate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1394,'N','N','Y',1394,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0141','H','',0,0,'','','SB072A - Core Decompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14100,NULL,'',1395,'N','N','Y',1395,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0142','H','',0,0,'','','SB074A - Arthroscopy / open - synovectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1396,'N','N','Y',1396,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0143','H','',0,0,'','','SB075GJA - Congenital, Accessory digits sometime can be removed ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6000,NULL,'',1397,'N','N','Y',1397,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0144','H','',0,0,'','','SB076GJA - Clavicle fracture management - conservative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',1398,'N','N','Y',1398,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0145','H','',0,0,'','','SB077GJA - Close Reduction - Small Joints','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4000,NULL,'',1399,'N','N','Y',1399,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0146','H','',0,0,'','','SB078GJA - Closed Interlock Nailing + Bone Grafting ? femur','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19000,NULL,'',1400,'N','N','Y',1400,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0147','H','',0,0,'','','SB079GJA - Closed reduction + Hip Spica','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',1401,'N','N','Y',1401,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0148','H','',0,0,'','','SB080GJA - Closed Reduction and Internal Fixation with K wire','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6000,NULL,'',1402,'N','N','Y',1402,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0149','H','',0,0,'','','SB081GJA - Fracture - Fibula Internal Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1403,'N','N','Y',1403,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0150','H','',0,0,'','','SB082GJA - Fracture - Radius Internal Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1404,'N','N','Y',1404,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0151','H','',0,0,'','','SB083GJA - Fracture - Ulna Internal Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1405,'N','N','Y',1405,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0152','H','',0,0,'','','SB084GJA - Internal Fixation Lateral Epicondyle','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1406,'N','N','Y',1406,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0153','H','',0,0,'','','SB085GJA - Sequestrectomy of Long Bones + anti-biotics + dressing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1407,'N','N','Y',1407,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0154','H','',0,0,'','','SB086GJA - Tendo Achilles Tenotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1408,'N','N','Y',1408,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0155','H','',0,0,'','','SBU100 - Unspecified Surgical Package','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1409,'N','N','Y',1409,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0156','H','',0,0,'','','SC070A - Bone tumors / soft tissue sarcomas: surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,52800,NULL,'',1410,'N','N','Y',1410,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0157','H','',0,0,'','','SG092A - Tendon Transfer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1411,'N','N','Y',1411,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0158','H','',0,0,'','','SN032A - Cervical/Thoracic/ Lumbar corpectomy with fusion for Tumor/Infection/Trauma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,93800,NULL,'',1412,'N','N','Y',1412,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0159','H','',0,0,'','','SN034A - Laminectomy without fusion for lumbar or cervical canal stenosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',1413,'N','N','Y',1413,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0160','H','',0,0,'','','SN034B - Laminectomy with fusion and fixation for lumbar/cervical/thoracic canal stenosis or for tumor / trauma/Bleed(Cost of implants to be extra)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68000,NULL,'',1414,'N','N','Y',1414,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0161','H','',0,0,'','','SN038B - Spine - Decompression  and Fusion with fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1415,'N','N','Y',1415,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0162','H','',0,0,'','','SN046A - Carpal tunnel release','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',1416,'N','N','Y',1416,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0163','H','',0,0,'','','SP009A - Resuturing of Any Wound gapSurgeries','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3800,NULL,'',1417,'N','N','Y',1417,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0164','H','',0,0,'','','ST001A - Severe','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1418,'N','N','Y',1418,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0165','H','',0,0,'','','ST001B - Depressed Fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1419,'N','N','Y',1419,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0166','H','',0,0,'','','ST002A - Head injury with repair of Facio-Maxillary Injury & fixations (including implants)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38800,NULL,'',1420,'N','N','Y',1420,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0167','H','',0,0,'','','ST003A - Subdural hematoma along with fixation of fracture of single long bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',1421,'N','N','Y',1421,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0168','H','',0,0,'','','ST003B - Extradural hematoma along with fixation of fracture of single long bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',1422,'N','N','Y',1422,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0169','H','',0,0,'','','ST003C - Subdural hematoma along with fixation of fracture of 2 or more long bone.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,93800,NULL,'',1423,'N','N','Y',1423,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0170','H','',0,0,'','','ST003D - Extradural hematoma along with fixation of fracture of 2 or more long bone.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,93800,NULL,'',1424,'N','N','Y',1424,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0171','H','',0,0,'','','ST004A - Management of Chest injury with fixation of Single Long bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',1425,'N','N','Y',1425,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0172','H','',0,0,'','','ST004B - Management of Chest injury with fixation of 2 or more Long bones','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45000,NULL,'',1426,'N','N','Y',1426,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0173','H','',0,0,'','','ST005A - Surgical intervention for Visceral injury and fixation of fracture of single long bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1427,'N','N','Y',1427,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0174','H','',0,0,'','','ST005B - Surgical intervention for Visceral injury and fixation of fracture of 2 or more long bones','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,56300,NULL,'',1428,'N','N','Y',1428,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0175','H','',0,0,'','','ST006A - Internal fixation of Pelviacetabular fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1429,'N','N','Y',1429,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0176','H','',0,0,'','','ST007A - Internal fixation with Flap cover Surgery for wound in compound fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1430,'N','N','Y',1430,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0177','H','',0,0,'','','ST008A - Emergency tendons repair ? Peripheral Nerve repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1431,'N','N','Y',1431,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0178','H','',0,0,'','','ST009A - Nerve and/or tendon injury. A. Wound exploration and closure. B. Nerve repair. C. Tendon repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',1432,'N','N','Y',1432,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0179','H','',0,0,'','','ST009B - Nerve and/or tendon injury. A. Wound exploration and closure. B. Nerve graft. C. Tendon graft/transfer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',1433,'N','N','Y',1433,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0180','H','',0,0,'','','ST009C - Tendon injury repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1434,'N','N','Y',1434,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0181','H','',0,0,'','','ST009D - Tendon graft repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1435,'N','N','Y',1435,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0182','H','',0,0,'','','ST009E - Tendon Transfer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1436,'N','N','Y',1436,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0183','H','',0,0,'','','ST010A - Nerve and/or tendon injury. A. Wound exploration and closure. B. Nerve repair. C. Tendon repair D. Vascular repair/graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',1437,'N','N','Y',1437,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SBPM','','SBPM0184','H','',0,0,'','','ST010B - Plexus injury along with Vascular injury graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',1438,'N','N','Y',1438,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0001','H','',0,0,'','','MG098A - PET scan','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1439,'N','N','Y',1439,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0002','H','',0,0,'','','SB026E - Hand','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27000,NULL,'',1440,'N','N','Y',1440,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0003','H','',0,0,'','','SB026F - Foot','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27000,NULL,'',1441,'N','N','Y',1441,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0004','H','',0,0,'','','SB027GJC - Hip  and Knee Disarticulation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45000,NULL,'',1442,'N','N','Y',1442,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0005','H','',0,0,'','','SB041A - Bone Tumour Excision + reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1443,'N','N','Y',1443,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0006','H','',0,0,'','','SC001A - Hemiglossectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,70600,NULL,'',1444,'N','N','Y',1444,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0007','H','',0,0,'','','SC001B - Total Glossectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,82900,NULL,'',1445,'N','N','Y',1445,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0008','H','',0,0,'','','SC002A - Soft palate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45100,NULL,'',1446,'N','N','Y',1446,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0009','H','',0,0,'','','SC002B - Hard palate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,51500,NULL,'',1447,'N','N','Y',1447,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0010','H','',0,0,'','','SC003A - Partial','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60800,NULL,'',1448,'N','N','Y',1448,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0011','H','',0,0,'','','SC003B - Radical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,67200,NULL,'',1449,'N','N','Y',1449,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0012','H','',0,0,'','','SC003C - Total','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,67200,NULL,'',1450,'N','N','Y',1450,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0013','H','',0,0,'','','SC004A - Composite resection (Oral Cavity)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43700,NULL,'',1451,'N','N','Y',1451,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0014','H','',0,0,'','','SC005A - Oesophageal stenting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,82700,NULL,'',1452,'N','N','Y',1452,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0015','H','',0,0,'','','SC005B - Tracheal stenting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,82700,NULL,'',1453,'N','N','Y',1453,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0016','H','',0,0,'','','SC006A - Open-Transthoracic esophagectomy: 2F / 3F','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,128900,NULL,'',1454,'N','N','Y',1454,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0017','H','',0,0,'','','SC006B - MIS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,128900,NULL,'',1455,'N','N','Y',1455,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0018','H','',0,0,'','','SC007A - Gastric pull-up / Jejunal Graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,102000,NULL,'',1456,'N','N','Y',1456,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0019','H','',0,0,'','','SC008A - Open-Radical Small Bowel Resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,97100,NULL,'',1457,'N','N','Y',1457,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0020','H','',0,0,'','','SC008B - Radical Small Bowel Resection- Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,129500,NULL,'',1458,'N','N','Y',1458,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0021','H','',0,0,'','','SC009A - Open- Intersphincteric resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,87800,NULL,'',1459,'N','N','Y',1459,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0022','H','',0,0,'','','SC009B - Intersphincteric resection-Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,87800,NULL,'',1460,'N','N','Y',1460,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0023','H','',0,0,'','','SC010A - Abdominal wall tumour resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,57700,NULL,'',1461,'N','N','Y',1461,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0024','H','',0,0,'','','SC010B - Abdominal wall tumour resection with reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,85000,NULL,'',1462,'N','N','Y',1462,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0025','H','',0,0,'','','SC011A - Exploratory laparotomy f / b diversion stoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,76100,NULL,'',1463,'N','N','Y',1463,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0026','H','',0,0,'','','SC011B - Exploratory laparotomy f / b diversion bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,76100,NULL,'',1464,'N','N','Y',1464,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0027','H','',0,0,'','','SC012A - Open- Intersphincteric resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,86900,NULL,'',1465,'N','N','Y',1465,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0028','H','',0,0,'','','SC012B - Abdominoperineal resection -Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,86900,NULL,'',1466,'N','N','Y',1466,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0029','H','',0,0,'','','SC012GJC - Abdomino Perineal Resection (APR) +Sacrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1467,'N','N','Y',1467,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0030','H','',0,0,'','','SC013A - Omentectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35600,NULL,'',1468,'N','N','Y',1468,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0031','H','',0,0,'','','SC014A - Procedures Requiring Bypass Techniques','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,61400,NULL,'',1469,'N','N','Y',1469,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0032','H','',0,0,'','','SC015A - Segmentectomy - hepatobiliary system','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,69300,NULL,'',1470,'N','N','Y',1470,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0033','H','',0,0,'','','SC016A - Radical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,86900,NULL,'',1471,'N','N','Y',1471,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0034','H','',0,0,'','','SC016B - Revision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,86900,NULL,'',1472,'N','N','Y',1472,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0035','H','',0,0,'','','SC017A - Enucleation of pancreatic neoplasm','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,59800,NULL,'',1473,'N','N','Y',1473,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0036','H','',0,0,'','','SC018A - Hepatoblastoma Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,85300,NULL,'',1474,'N','N','Y',1474,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0037','H','',0,0,'','','SC019A - Hemipelvectomy - Internal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,92600,NULL,'',1475,'N','N','Y',1475,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0038','H','',0,0,'','','SC020A - Pelvic Exenteration Anterior - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,129600,NULL,'',1476,'N','N','Y',1476,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0039','H','',0,0,'','','SC020B - Pelvic Exenteration Anterior - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,129600,NULL,'',1477,'N','N','Y',1477,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0040','H','',0,0,'','','SC020C - Pelvic Exenteration Total - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,129600,NULL,'',1478,'N','N','Y',1478,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0041','H','',0,0,'','','SC020D - Pelvic Exenteration Total - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,129600,NULL,'',1479,'N','N','Y',1479,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0042','H','',0,0,'','','SC021A - Wilms tumors: surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,57000,NULL,'',1480,'N','N','Y',1480,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0043','H','',0,0,'','','SC022A - Ureteric end to end anastomosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44000,NULL,'',1481,'N','N','Y',1481,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0044','H','',0,0,'','','SC023A - Distal ureterectomy with reimplantation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44500,NULL,'',1482,'N','N','Y',1482,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0045','H','',0,0,'','','SC024A - Radical cystectomy With continent diversion - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,125100,NULL,'',1483,'N','N','Y',1483,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0046','H','',0,0,'','','SC024B - Radical cystectomy With Ileal Conduit - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,162200,NULL,'',1484,'N','N','Y',1484,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0047','H','',0,0,'','','SC024C - Radical cystectomy- With Ileal Conduit - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,162200,NULL,'',1485,'N','N','Y',1485,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0048','H','',0,0,'','','SC024D - Radical cystectomy- With neobladder - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,185700,NULL,'',1486,'N','N','Y',1486,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0049','H','',0,0,'','','SC024E - With neobladder - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,185700,NULL,'',1487,'N','N','Y',1487,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0050','H','',0,0,'','','SC024F - Radical cystectomy - With ureterosigmoidostomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,144700,NULL,'',1488,'N','N','Y',1488,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0051','H','',0,0,'','','SC024G - With ureterosigmoidostomy - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,97100,NULL,'',1489,'N','N','Y',1489,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0052','H','',0,0,'','','SC024GJJ - Radical Cystectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',1490,'N','N','Y',1490,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0053','H','',0,0,'','','SC024H - Radical cystectomy - With ureterostomy -Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,96800,NULL,'',1491,'N','N','Y',1491,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0054','H','',0,0,'','','SC024I - Radical cystectomy-With ureterostomy -Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,96800,NULL,'',1492,'N','N','Y',1492,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0055','H','',0,0,'','','SC025A - Channel TURP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38300,NULL,'',1493,'N','N','Y',1493,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0056','H','',0,0,'','','SC026A - Radical Urethrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48600,NULL,'',1494,'N','N','Y',1494,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0057','H','',0,0,'','','SC027A - Penile preserving surgery (WLE, Glansectomy, Laser)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,36100,NULL,'',1495,'N','N','Y',1495,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0058','H','',0,0,'','','SC028A - Excision of undescended testicular mass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35700,NULL,'',1496,'N','N','Y',1496,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0059','H','',0,0,'','','SC029A - Germ Cell Tumour Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44500,NULL,'',1497,'N','N','Y',1497,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0060','H','',0,0,'','','SC031A - Leiomyoma excision- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,98300,NULL,'',1498,'N','N','Y',1498,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0061','H','',0,0,'','','SC031B - MIS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,98300,NULL,'',1499,'N','N','Y',1499,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0062','H','',0,0,'','','SC032A - Class I radical hysterectomy + bilateral salpingoophorectomy + BPLND - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,53600,NULL,'',1500,'N','N','Y',1500,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0063','H','',0,0,'','','SC032B - Class I radical hysterectomy + bilateral salpingoophorectomy + BPLND - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,53600,NULL,'',1501,'N','N','Y',1501,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0064','H','',0,0,'','','SC032C - Class I radical Hysterectomy +/- bilateral salpingoophorectomy - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38500,NULL,'',1502,'N','N','Y',1502,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0065','H','',0,0,'','','SC032D - Class I radical Hysterectomy +/- bilateral salpingoophorectomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38500,NULL,'',1503,'N','N','Y',1503,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0066','H','',0,0,'','','SC032E - Class II radical hysterctomy + BPLND','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,53600,NULL,'',1504,'N','N','Y',1504,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0067','H','',0,0,'','','SC032F - Class III radical hysterctomy + BPLND','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,53600,NULL,'',1505,'N','N','Y',1505,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0068','H','',0,0,'','','SC032G - Hysterectomy + bilateral salpingoophorectomy + omentectomy + peritonectomy and organ resections','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,88100,NULL,'',1506,'N','N','Y',1506,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0069','H','',0,0,'','','SC033A - Radical vaginectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48100,NULL,'',1507,'N','N','Y',1507,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0070','H','',0,0,'','','SC033GJB - Radical vaginectomy + Reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45000,NULL,'',1508,'N','N','Y',1508,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0071','H','',0,0,'','','SC034A - Vulvectomy + reconstruction procedures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,72500,NULL,'',1509,'N','N','Y',1509,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0072','H','',0,0,'','','SC035A - Radical Trachelectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,59700,NULL,'',1510,'N','N','Y',1510,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0073','H','',0,0,'','','SC036A - Anterior + Posterior approach','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,143000,NULL,'',1511,'N','N','Y',1511,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0074','H','',0,0,'','','SC036B - Posterior approach','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,122400,NULL,'',1512,'N','N','Y',1512,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0075','H','',0,0,'','','SC037A - Resection of nasopharyngeal tumour','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,70100,NULL,'',1513,'N','N','Y',1513,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0076','H','',0,0,'','','SC038A - Total Pharyngectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,67400,NULL,'',1514,'N','N','Y',1514,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0077','H','',0,0,'','','SC039A - Parapharyngeal Tumour Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,47800,NULL,'',1515,'N','N','Y',1515,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0078','H','',0,0,'','','SC040A - Partial laryngectomy (voice preserving)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,94500,NULL,'',1516,'N','N','Y',1516,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0079','H','',0,0,'','','SC040B - Total Laryngectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,94100,NULL,'',1517,'N','N','Y',1517,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0080','H','',0,0,'','','SC041A - Tracheal resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,65900,NULL,'',1518,'N','N','Y',1518,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0081','H','',0,0,'','','SC042A - Tracheal / Carinal resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,96800,NULL,'',1519,'N','N','Y',1519,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0082','H','',0,0,'','','SC043A - Tracheal Stenosis (End to end Anastamosis) (Throat)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1520,'N','N','Y',1520,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0083','H','',0,0,'','','SC044A - Central airway tumour debulking','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35100,NULL,'',1521,'N','N','Y',1521,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0084','H','',0,0,'','','SC045A - Diagnostic thoracoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20800,NULL,'',1522,'N','N','Y',1522,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0085','H','',0,0,'','','SC046A - Sleeve resection of lung cancer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,114800,NULL,'',1523,'N','N','Y',1523,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0086','H','',0,0,'','','SC047A - Diagnostic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43200,NULL,'',1524,'N','N','Y',1524,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0087','H','',0,0,'','','SC047B - Staging','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43200,NULL,'',1525,'N','N','Y',1525,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0088','H','',0,0,'','','SC048A - Chest Wall Tumour Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,109800,NULL,'',1526,'N','N','Y',1526,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0089','H','',0,0,'','','SC048B - Removal of chest wall tumour with reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,124200,NULL,'',1527,'N','N','Y',1527,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0090','H','',0,0,'','','SC049A - Pleurectomy Decortication','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,64200,NULL,'',1528,'N','N','Y',1528,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0091','H','',0,0,'','','SC050A - Chamberlain procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30700,NULL,'',1529,'N','N','Y',1529,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0092','H','',0,0,'','','SC051A - Extrapleural pneumonectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,108200,NULL,'',1530,'N','N','Y',1530,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0093','H','',0,0,'','','SC052A - Pneumonectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,95100,NULL,'',1531,'N','N','Y',1531,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0094','H','',0,0,'','','SC053A - Lung metastectomy- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,73900,NULL,'',1532,'N','N','Y',1532,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0095','H','',0,0,'','','SC053B - VATS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,73900,NULL,'',1533,'N','N','Y',1533,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0096','H','',0,0,'','','SC054A - Thoracostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,29600,NULL,'',1534,'N','N','Y',1534,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0097','H','',0,0,'','','SC055A - Mediastinal lymphadenectomy- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,98400,NULL,'',1535,'N','N','Y',1535,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0098','H','',0,0,'','','SC055B - Video - assisted','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,98400,NULL,'',1536,'N','N','Y',1536,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0099','H','',0,0,'','','SC056A - Mediastinal mass excision with lung resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,101700,NULL,'',1537,'N','N','Y',1537,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0100','H','',0,0,'','','SC057A - Segmental resection of lung-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,87000,NULL,'',1538,'N','N','Y',1538,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0101','H','',0,0,'','','SC057B - Thoracoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,87000,NULL,'',1539,'N','N','Y',1539,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0102','H','',0,0,'','','SC058A - Wedge resection lung- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,100000,NULL,'',1540,'N','N','Y',1540,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0103','H','',0,0,'','','SC058B - Thoracoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,100000,NULL,'',1541,'N','N','Y',1541,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0104','H','',0,0,'','','SC059A - Breast conserving surgery (lumpectomy + axillary surgery)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49200,NULL,'',1542,'N','N','Y',1542,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0105','H','',0,0,'','','SC059B - Breast conserving surgery with Oncoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45300,NULL,'',1543,'N','N','Y',1543,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0106','H','',0,0,'','','SC060A - Axillary Sampling / Sentinel Node Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20700,NULL,'',1544,'N','N','Y',1544,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0107','H','',0,0,'','','SC061A - Axillary dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25800,NULL,'',1545,'N','N','Y',1545,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0108','H','',0,0,'','','SC062A - Scalp tumour excision with skull bone excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44500,NULL,'',1546,'N','N','Y',1546,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0109','H','',0,0,'','','SC063A - Neuroblastoma Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,105700,NULL,'',1547,'N','N','Y',1547,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0110','H','',0,0,'','','SC064A - Growth - Squamous','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,56300,NULL,'',1548,'N','N','Y',1548,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0111','H','',0,0,'','','SC064B - Growth - Basal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,56300,NULL,'',1549,'N','N','Y',1549,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0112','H','',0,0,'','','SC064C - Injury','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,56300,NULL,'',1550,'N','N','Y',1550,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0113','H','',0,0,'','','SC065A - Neck dissection - comprehensive','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33300,NULL,'',1551,'N','N','Y',1551,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0114','H','',0,0,'','','SC066A - Benign Soft Tissue Tumour - Excision (Small)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19300,NULL,'',1552,'N','N','Y',1552,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0115','H','',0,0,'','','SC067A - Malignant Soft Tissue Tumour (Small)- Excision (New procedure)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,51000,NULL,'',1553,'N','N','Y',1553,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0116','H','',0,0,'','','SC068A - Myocutaneous flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,65300,NULL,'',1554,'N','N','Y',1554,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0117','H','',0,0,'','','SC068B - Fasciocutaneous flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,65300,NULL,'',1555,'N','N','Y',1555,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0118','H','',0,0,'','','SC069A - Rotationplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,80100,NULL,'',1556,'N','N','Y',1556,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0119','H','',0,0,'','','SC070A - Bone tumors / soft tissue sarcomas: surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,52800,NULL,'',1557,'N','N','Y',1557,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0120','H','',0,0,'','','SC071A - Complete','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,97100,NULL,'',1558,'N','N','Y',1558,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0121','H','',0,0,'','','SC071B - Partial','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,67600,NULL,'',1559,'N','N','Y',1559,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0122','H','',0,0,'','','SC072A - Vertebral Tumour Excision and Reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,100000,NULL,'',1560,'N','N','Y',1560,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0123','H','',0,0,'','','SC073A - Microvascular reconstruction (free flaps)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,72600,NULL,'',1561,'N','N','Y',1561,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0124','H','',0,0,'','','SC074A - Vascular reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,95300,NULL,'',1562,'N','N','Y',1562,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0125','H','',0,0,'','','SC075A - Curopsy / Sclerotherapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27900,NULL,'',1563,'N','N','Y',1563,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0126','H','',0,0,'','','SC076A - Chemo Port Insertion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24000,NULL,'',1564,'N','N','Y',1564,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0127','H','',0,0,'','','SC077A - Posterior Exenteration (Gynaec)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,101100,NULL,'',1565,'N','N','Y',1565,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0128','H','',0,0,'','','SC078A - Bilateral pelvic lymph Node Dissection (BPLND)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44900,NULL,'',1566,'N','N','Y',1566,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0129','H','',0,0,'','','SC079A - Head & Neck Flap Cutting any type','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24000,NULL,'',1567,'N','N','Y',1567,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0130','H','',0,0,'','','SC081A - Cytoreductive surgery for ovarian cancer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,72600,NULL,'',1568,'N','N','Y',1568,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0131','H','',0,0,'','','SC081GJA - Urinary diversion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1569,'N','N','Y',1569,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0132','H','',0,0,'','','SC082A - Wide Excision- Oral Cavity Malignancy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49000,NULL,'',1570,'N','N','Y',1570,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0133','H','',0,0,'','','SC083GJA - Wide excision Any type for Head  and Neck','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11500,NULL,'',1571,'N','N','Y',1571,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0134','H','',0,0,'','','SC084GJA - GI Laproscopic resection of any type','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1572,'N','N','Y',1572,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0135','H','',0,0,'','','SC085GJA - Hepatic surgery of any type','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,70000,NULL,'',1573,'N','N','Y',1573,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0136','H','',0,0,'','','SC086GJA - Laproscopic surgery for kidney  and supra renal any type','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1574,'N','N','Y',1574,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0137','H','',0,0,'','','SC087GJA - Brain tumours surgery of any type','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,55000,NULL,'',1575,'N','N','Y',1575,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0138','H','',0,0,'','','SC088GJA - Laser Surgery Any type','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1576,'N','N','Y',1576,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0139','H','',0,0,'','','SC089GJA - Pancreas Wide Excision any type (Surgery other than Whipples)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1577,'N','N','Y',1577,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0140','H','',0,0,'','','SC090GJA - Drain Insertion any type','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1500,NULL,'',1578,'N','N','Y',1578,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0141','H','',0,0,'','','SC091GJA - Enucleation of Cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35000,NULL,'',1579,'N','N','Y',1579,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0142','H','',0,0,'','','SC092GJA - Other cystectomies','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1580,'N','N','Y',1580,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0143','H','',0,0,'','','SC093GJA - Inguinal Block Dissection-one side','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8740,NULL,'',1581,'N','N','Y',1581,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0144','H','',0,0,'','','SC094GJA - Radical Prostatectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',1582,'N','N','Y',1582,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0145','H','',0,0,'','','SC095GJA - Surgery for Ca Ovary - early stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23000,NULL,'',1583,'N','N','Y',1583,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0146','H','',0,0,'','','SC096GJA - Surgery for Ca Ovary - advance stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1584,'N','N','Y',1584,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0147','H','',0,0,'','','SC097GJA - Wide excision for CA Breast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11500,NULL,'',1585,'N','N','Y',1585,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0148','H','',0,0,'','','SC098GJA - Decortication','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1586,'N','N','Y',1586,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0149','H','',0,0,'','','SC099GJA - Laryngopharyngo Oesophagectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,70000,NULL,'',1587,'N','N','Y',1587,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0150','H','',0,0,'','','SC100GJA - Hemimandibulectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1588,'N','N','Y',1588,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0151','H','',0,0,'','','SC101GJA - Resection with reconstruction for GI System','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20700,NULL,'',1589,'N','N','Y',1589,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0152','H','',0,0,'','','SC102GJA - Triple Bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23000,NULL,'',1590,'N','N','Y',1590,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0153','H','',0,0,'','','SC103GJA - Other GI Bypasses surgery any type (including pancreas)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1591,'N','N','Y',1591,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0154','H','',0,0,'','','SC104GJA - Limb salvage surgery for Bone Tumors with modular Prosthesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',1592,'N','N','Y',1592,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0155','H','',0,0,'','','SC105GJA - Forequarter amputation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',1593,'N','N','Y',1593,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0156','H','',0,0,'','','SC106GJA - Bone resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',1594,'N','N','Y',1594,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0157','H','',0,0,'','','SC107GJA - Nephroureterectomy for Transitional Cell Carcinoma of renal pelvis (one side)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,46000,NULL,'',1595,'N','N','Y',1595,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0158','H','',0,0,'','','SC108GJA - Retro Peritoneal Lymph Node Dissection(RPLND) (for Residual Disease)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',1596,'N','N','Y',1596,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0159','H','',0,0,'','','SC109GJA - Retro Peritoneal Lymph Node Dissection RPLND as part of staging','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23000,NULL,'',1597,'N','N','Y',1597,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0160','H','',0,0,'','','SC110GJA - Oesophagectomy with Two field Lymphadenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,80000,NULL,'',1598,'N','N','Y',1598,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0161','H','',0,0,'','','SC111GJA - Oesophagectomy with Three field Lymphadenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,80000,NULL,'',1599,'N','N','Y',1599,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0162','H','',0,0,'','','SC112GJA - Suprapubic Cystostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1600,'N','N','Y',1600,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0163','H','',0,0,'','','SC113GJA - Ileotransverse BYPASSColostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9890,NULL,'',1601,'N','N','Y',1601,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0164','H','',0,0,'','','SC114GJA - Substernal bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35000,NULL,'',1602,'N','N','Y',1602,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0165','H','',0,0,'','','SC115GJA - Amputation for bone / soft tissue tumours (Major / Minor)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1603,'N','N','Y',1603,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0166','H','',0,0,'','','SC116GJA - Inguinal Block Dissection-both side','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16100,NULL,'',1604,'N','N','Y',1604,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0167','H','',0,0,'','','SC117GJA - Hind Quarter Amputation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1605,'N','N','Y',1605,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0168','H','',0,0,'','','SC118GJA - Radical Trachelectomy Cone Biopsy, Simple Hysterectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1606,'N','N','Y',1606,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0169','H','',0,0,'','','SC119GJA - ICD Tube Insertion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1500,NULL,'',1607,'N','N','Y',1607,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0170','H','',0,0,'','','SC120GJA - Skin Tumours Wide Excision + Reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1608,'N','N','Y',1608,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0171','H','',0,0,'','','SC121GJA - Skin Tumours Amputation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1609,'N','N','Y',1609,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0172','H','',0,0,'','','SC122GJA - Voice prosthesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',1610,'N','N','Y',1610,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0173','H','',0,0,'','','SCU100 - Unspecified Surgical Package','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1611,'N','N','Y',1611,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0174','H','',0,0,'','','SE035GJC - Eyeball enucleation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1612,'N','N','Y',1612,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0175','H','',0,0,'','','SE037A - Exenteration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23700,NULL,'',1613,'N','N','Y',1613,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0176','H','',0,0,'','','SE037GJB - Anterior Exenteration (Urinary Bladder)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',1614,'N','N','Y',1614,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0177','H','',0,0,'','','SE037GJC - Total Exenteration (Urinary Bladder)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',1615,'N','N','Y',1615,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0178','H','',0,0,'','','SG001A - Oesophagectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,125000,NULL,'',1616,'N','N','Y',1616,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0179','H','',0,0,'','','SG003C - Partial Gastrectomy for Carcinoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43500,NULL,'',1617,'N','N','Y',1617,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0180','H','',0,0,'','','SG003D - Subtotal Gastrectomy for Carcinoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43500,NULL,'',1618,'N','N','Y',1618,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0181','H','',0,0,'','','SG003E - Total Gastrectomy - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,81300,NULL,'',1619,'N','N','Y',1619,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0182','H','',0,0,'','','SG003F - Total Gastrectomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,81300,NULL,'',1620,'N','N','Y',1620,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0183','H','',0,0,'','','SG004GJB - Gastrostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1621,'N','N','Y',1621,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0184','H','',0,0,'','','SG0106A - Subtotal Colectomy- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34900,NULL,'',1622,'N','N','Y',1622,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0185','H','',0,0,'','','SG0106B - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34900,NULL,'',1623,'N','N','Y',1623,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0186','H','',0,0,'','','SG010A - Gastrojejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',1624,'N','N','Y',1624,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0187','H','',0,0,'','','SG012A - Feeding Jejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1625,'N','N','Y',1625,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0188','H','',0,0,'','','SG013GJB - Ileostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1626,'N','N','Y',1626,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0189','H','',0,0,'','','SG020A - Total Colectomy- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48300,NULL,'',1627,'N','N','Y',1627,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0190','H','',0,0,'','','SG020B - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48300,NULL,'',1628,'N','N','Y',1628,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0191','H','',0,0,'','','SG021A - Hemi colectomy Right-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35200,NULL,'',1629,'N','N','Y',1629,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0192','H','',0,0,'','','SG021B - Right- Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35200,NULL,'',1630,'N','N','Y',1630,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0193','H','',0,0,'','','SG021C - Hemi colectomy Left-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35200,NULL,'',1631,'N','N','Y',1631,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0194','H','',0,0,'','','SG021D - Left- Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35200,NULL,'',1632,'N','N','Y',1632,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0195','H','',0,0,'','','SG023A - Colostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1633,'N','N','Y',1633,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0196','H','',0,0,'','','SG024A - Closure of stoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16700,NULL,'',1634,'N','N','Y',1634,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0197','H','',0,0,'','','SG028A - Rectal Polyp Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1635,'N','N','Y',1635,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0198','H','',0,0,'','','SG029A - Anterior Resection of rectum- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1636,'N','N','Y',1636,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0199','H','',0,0,'','','SG029B - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1637,'N','N','Y',1637,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0200','H','',0,0,'','','SG029GJC - Anterior Resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1638,'N','N','Y',1638,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0201','H','',0,0,'','','SG037A - Hepatic Resection- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1639,'N','N','Y',1639,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0202','H','',0,0,'','','SG037B - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1640,'N','N','Y',1640,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0203','H','',0,0,'','','SG042GJC - Splenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',1641,'N','N','Y',1641,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0204','H','',0,0,'','','SG042GJD - Radical Splenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',1642,'N','N','Y',1642,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0205','H','',0,0,'','','SG043A - Bypass - Inoperable Pancreas','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',1643,'N','N','Y',1643,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0206','H','',0,0,'','','SG044A - Distal Pancreatectomy/Pancreatico Jejunostomy with/without spleenlectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44600,NULL,'',1644,'N','N','Y',1644,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0207','H','',0,0,'','','SG045A - PancreaticoDuodenectomy (Whipples)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,125000,NULL,'',1645,'N','N','Y',1645,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0208','H','',0,0,'','','SG045GJB - Whipples - any type','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',1646,'N','N','Y',1646,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0209','H','',0,0,'','','SG049A - Retroperitoneal Tumor ? Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,39200,NULL,'',1647,'N','N','Y',1647,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0210','H','',0,0,'','','SG059A - Orchidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12000,NULL,'',1648,'N','N','Y',1648,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0211','H','',0,0,'','','SG061A - Estlander Operation (lip)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18500,NULL,'',1649,'N','N','Y',1649,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0212','H','',0,0,'','','SG062A - Wedge Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25100,NULL,'',1650,'N','N','Y',1650,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0213','H','',0,0,'','','SG062B - Wedge Excision and Vermilionectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1651,'N','N','Y',1651,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0214','H','',0,0,'','','SG062C - Cheek advancement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1652,'N','N','Y',1652,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0215','H','',0,0,'','','SG063A - Complete Excision of Growth from Tongue only (inclusive of Histopathology)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20900,NULL,'',1653,'N','N','Y',1653,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0216','H','',0,0,'','','SG064A - Excision of Growth from Tongue with neck node dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,39200,NULL,'',1654,'N','N','Y',1654,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0217','H','',0,0,'','','SG066A - Submandibular Mass Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1655,'N','N','Y',1655,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0218','H','',0,0,'','','SG067A - Radical Neck Dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33700,NULL,'',1656,'N','N','Y',1656,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0219','H','',0,0,'','','SG069A - Carotid Body tumour - Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1657,'N','N','Y',1657,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0220','H','',0,0,'','','SG070A - Hemi thyroidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',1658,'N','N','Y',1658,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0221','H','',0,0,'','','SG070B - Total thyroidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',1659,'N','N','Y',1659,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0222','H','',0,0,'','','SG070C - Total Thyroidectomy with Block Dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43600,NULL,'',1660,'N','N','Y',1660,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0223','H','',0,0,'','','SG071A - Excision of Parathyroid Adenoma/Carcinoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1661,'N','N','Y',1661,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0224','H','',0,0,'','','SG074A - Breast Lump Excision (Benign)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1662,'N','N','Y',1662,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0225','H','',0,0,'','','SG075A - Simple Mastectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1663,'N','N','Y',1663,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0226','H','',0,0,'','','SG075B - Radical / Modified Radical Mastectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',1664,'N','N','Y',1664,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0227','H','',0,0,'','','SG081A - Thoracoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',1665,'N','N','Y',1665,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0228','H','',0,0,'','','SG081B - Lobectomy-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',1666,'N','N','Y',1666,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0229','H','',0,0,'','','SG087A - Flap Reconstructive Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,36100,NULL,'',1667,'N','N','Y',1667,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0230','H','',0,0,'','','SG091A - Skin Flaps - Rotation Flaps','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28800,NULL,'',1668,'N','N','Y',1668,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0231','H','',0,0,'','','SL004A - Simple','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28000,NULL,'',1669,'N','N','Y',1669,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0232','H','',0,0,'','','SL004B - Radical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28000,NULL,'',1670,'N','N','Y',1670,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0233','H','',0,0,'','','SL005A - Unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7600,NULL,'',1671,'N','N','Y',1671,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0234','H','',0,0,'','','SL005B - Bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7600,NULL,'',1672,'N','N','Y',1672,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0235','H','',0,0,'','','SL020A - Excision of tumour of oral cavity / paranasal sinus / laryngopharynxwithout reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',1673,'N','N','Y',1673,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0236','H','',0,0,'','','SL020B - Excision of tumour of oral cavity / paranasal sinus / laryngopharynxwith pedicled flap reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45700,NULL,'',1674,'N','N','Y',1674,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0237','H','',0,0,'','','SL020C - Excision of tumour of oral cavity /paranasal sinus / laryngopharynx with free flap reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31300,NULL,'',1675,'N','N','Y',1675,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0238','H','',0,0,'','','SL021A - Total Parotidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28200,NULL,'',1676,'N','N','Y',1676,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0239','H','',0,0,'','','SL021B - Superficial Parotidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23800,NULL,'',1677,'N','N','Y',1677,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0240','H','',0,0,'','','SL025A - Open laryngeal framework surgery / Thyroplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1678,'N','N','Y',1678,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0241','H','',0,0,'','','SL027A - Selective Benign neck tumourexcision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23500,NULL,'',1679,'N','N','Y',1679,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0242','H','',0,0,'','','SL027B - Comprehensive Benign neck tumourexcision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23500,NULL,'',1680,'N','N','Y',1680,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0243','H','',0,0,'','','SL027C - Selective Pharyngeal diverticulumexcision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23500,NULL,'',1681,'N','N','Y',1681,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0244','H','',0,0,'','','SL027D - Comprehensive Pharyngealdiverticulum excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23500,NULL,'',1682,'N','N','Y',1682,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0245','H','',0,0,'','','SL029A - Endoscopic CSF Rhinorrhea Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32500,NULL,'',1683,'N','N','Y',1683,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0246','H','',0,0,'','','SL029B - Optic nerve decompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',1684,'N','N','Y',1684,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0247','H','',0,0,'','','SL029C - Orbital decompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',1685,'N','N','Y',1685,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0248','H','',0,0,'','','SL029D - Craniofacial resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',1686,'N','N','Y',1686,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0249','H','',0,0,'','','SL029E - Maxillary swing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',1687,'N','N','Y',1687,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0250','H','',0,0,'','','SL030A - Endoscopic Hypophysectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49800,NULL,'',1688,'N','N','Y',1688,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0251','H','',0,0,'','','SL030B - Clival tumour excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49800,NULL,'',1689,'N','N','Y',1689,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0252','H','',0,0,'','','SL031A - Subtotal petrosectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30900,NULL,'',1690,'N','N','Y',1690,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0253','H','',0,0,'','','SL031B - Post-traumatic facial nervedecompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30900,NULL,'',1691,'N','N','Y',1691,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0254','H','',0,0,'','','SL031C - CSF Otorrhoea repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30900,NULL,'',1692,'N','N','Y',1692,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0255','H','',0,0,'','','SL032A - Fisch approach','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49900,NULL,'',1693,'N','N','Y',1693,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0256','H','',0,0,'','','SL032B - Translabyrinthine approach','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49900,NULL,'',1694,'N','N','Y',1694,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0257','H','',0,0,'','','SL032C - Transcochlear approach','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49900,NULL,'',1695,'N','N','Y',1695,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0258','H','',0,0,'','','SL032D - Temporal Bone resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49900,NULL,'',1696,'N','N','Y',1696,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0259','H','',0,0,'','','SO002A - Laparotomy and proceed for Ovarian Cancers. Omentomy with BilateralSalpingo-oophorectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38000,NULL,'',1697,'N','N','Y',1697,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0260','H','',0,0,'','','SO003A - Laparoscopic tubal surgeries(for any indication including ectopic pregnancy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13900,NULL,'',1698,'N','N','Y',1698,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0261','H','',0,0,'','','SO004A - Procedure on Fallopian Tube forestablishing Tubal Patency','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11600,NULL,'',1699,'N','N','Y',1699,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0262','H','',0,0,'','','SP009A - Resuturing of Any Wound gapSurgeries','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3800,NULL,'',1700,'N','N','Y',1700,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0263','H','',0,0,'','','SU001GJC - Adrenalectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45000,NULL,'',1701,'N','N','Y',1701,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0264','H','',0,0,'','','SU003A - Nephrectomy For Benign pathology - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41100,NULL,'',1702,'N','N','Y',1702,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0265','H','',0,0,'','','SU003B - Nephrectomy -For Benign pathology - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45800,NULL,'',1703,'N','N','Y',1703,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0266','H','',0,0,'','','SU003C - Nephrectomy- Radical (Renal tumor) - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41100,NULL,'',1704,'N','N','Y',1704,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0267','H','',0,0,'','','SU003D - Nephrectomy- Radical (Renal tumor) - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45800,NULL,'',1705,'N','N','Y',1705,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0268','H','',0,0,'','','SU004A - Nephrectomy - Partial or Hemi-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,54500,NULL,'',1706,'N','N','Y',1706,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0269','H','',0,0,'','','SU004B - Nephrectomy - Partial or Hemi- Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,57800,NULL,'',1707,'N','N','Y',1707,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0270','H','',0,0,'','','SU004GJC - Partial Nephrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1708,'N','N','Y',1708,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0271','H','',0,0,'','','SU010A - Nephro ureterectomy (Benign)-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41100,NULL,'',1709,'N','N','Y',1709,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0272','H','',0,0,'','','SU010B - Nephro ureterectomy (Benign) - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45800,NULL,'',1710,'N','N','Y',1710,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0273','H','',0,0,'','','SU011A - Nephro ureterectomy with cuff of bladder-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41100,NULL,'',1711,'N','N','Y',1711,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0274','H','',0,0,'','','SU011B - Nephro ureterectomy with cuff of bladder Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45800,NULL,'',1712,'N','N','Y',1712,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0275','H','',0,0,'','','SU075A - Urethrovaginal fistula repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1713,'N','N','Y',1713,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0276','H','',0,0,'','','SU082A - Partial Penectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1714,'N','N','Y',1714,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0277','H','',0,0,'','','SU082GJC - Total Penectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1715,'N','N','Y',1715,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0278','H','',0,0,'','','SU086A - High inguinal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1716,'N','N','Y',1716,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0279','H','',0,0,'','','SU090A - Radical Retroperitoneal lymph node dissection- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49800,NULL,'',1717,'N','N','Y',1717,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0280','H','',0,0,'','','SU090B - Radical Retroperitoneal lymph node dissection - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50700,NULL,'',1718,'N','N','Y',1718,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SCPM','','SCPM0281','H','',0,0,'','','SU091A - Ilio-Inguinal lymphadenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27500,NULL,'',1719,'N','N','Y',1719,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0001','H','',0,0,'','','MN008A - Laser Therapy for Retinopathy of Prematurity(Irrespective of no. of eyes affected)per session','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1900,NULL,'',1720,'N','N','Y',1720,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0002','H','',0,0,'','','SE001A - Ptosis Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8000,NULL,'',1721,'N','N','Y',1721,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0003','H','',0,0,'','','SE002A - Entropion correction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6600,NULL,'',1722,'N','N','Y',1722,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0004','H','',0,0,'','','SE003A - Ectropion correction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6500,NULL,'',1723,'N','N','Y',1723,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0005','H','',0,0,'','','SE004A - Lid Tear Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7700,NULL,'',1724,'N','N','Y',1724,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0006','H','',0,0,'','','SE005A - Lid Abscess Drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5700,NULL,'',1725,'N','N','Y',1725,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0007','H','',0,0,'','','SE006A - Lid Tumor excision + Lid Reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',1726,'N','N','Y',1726,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0008','H','',0,0,'','','SE007A - Chalazion Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',1727,'N','N','Y',1727,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0009','H','',0,0,'','','SE008A - Minor - upto 2 muscles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4100,NULL,'',1728,'N','N','Y',1728,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0010','H','',0,0,'','','SE008B - Major - 3 or more muscles (complex surgery involving four muscles or oblique muscles)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12000,NULL,'',1729,'N','N','Y',1729,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0011','H','',0,0,'','','SE009A - Conjunctival tumour excision including Amniotic Membrane Graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',1730,'N','N','Y',1730,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0012','H','',0,0,'','','SE010A - Canaliculo Dacryocystorhinostomy with Silicon Tube / Stent','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',1731,'N','N','Y',1731,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0013','H','',0,0,'','','SE010B - Canaliculo Dacryocystorhinostomy without Silicon Tube / Stent','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1732,'N','N','Y',1732,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0014','H','',0,0,'','','SE010C - Dacryocystorhinostomy with Silicon Tube / Stent','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',1733,'N','N','Y',1733,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0015','H','',0,0,'','','SE010D - Dacryocystorhinostomy without Silicon Tube / Stent','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1734,'N','N','Y',1734,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0016','H','',0,0,'','','SE011A - Corneal Ulcer Management','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1735,'N','N','Y',1735,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0017','H','',0,0,'','','SE012A - Corneal Grafting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13700,NULL,'',1736,'N','N','Y',1736,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0018','H','',0,0,'','','SE012C - Lamellar Keratoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17200,NULL,'',1737,'N','N','Y',1737,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0019','H','',0,0,'','','SE013A - Corneal Collagen Crosslinking','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17500,NULL,'',1738,'N','N','Y',1738,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0020','H','',0,0,'','','SE014A - Pterygium + Conjunctival Autograft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11700,NULL,'',1739,'N','N','Y',1739,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0021','H','',0,0,'','','SE015A - Corneo / Scleral / Corneo scleral tear repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7500,NULL,'',1740,'N','N','Y',1740,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0022','H','',0,0,'','','SE016A - Corneal / Scleral Patch Graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7300,NULL,'',1741,'N','N','Y',1741,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0023','H','',0,0,'','','SE017A - Scleral buckling surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24700,NULL,'',1742,'N','N','Y',1742,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0024','H','',0,0,'','','SE018A - Scleral Buckle Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6900,NULL,'',1743,'N','N','Y',1743,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0025','H','',0,0,'','','SE019A - Limbal Dermoid Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2500,NULL,'',1744,'N','N','Y',1744,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0026','H','',0,0,'','','SE021A - Paediatric lensectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11500,NULL,'',1745,'N','N','Y',1745,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0027','H','',0,0,'','','SE021B - Pediatric lens aspiration with posterior capsulotomy & anterior vitrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11500,NULL,'',1746,'N','N','Y',1746,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0028','H','',0,0,'','','SE021C - Paediatric Membranectomy & anterior vitrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1747,'N','N','Y',1747,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0029','H','',0,0,'','','SE022A - Capsulotomy (YAG)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1900,NULL,'',1748,'N','N','Y',1748,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0030','H','',0,0,'','','SE023A - SFIOL (inclusive of Vitrectomy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',1749,'N','N','Y',1749,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0031','H','',0,0,'','','SE024A - Secondary IOL / IOL Exchange / Explant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6200,NULL,'',1750,'N','N','Y',1750,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0032','H','',0,0,'','','SE025A - IRIS Prolapse ? Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4500,NULL,'',1751,'N','N','Y',1751,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0033','H','',0,0,'','','SE026A - Iridectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',1752,'N','N','Y',1752,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0034','H','',0,0,'','','SE027A - Cyclocryotherapy / Cyclophotocoagulation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4700,NULL,'',1753,'N','N','Y',1753,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0035','H','',0,0,'','','SE027B - Glaucoma Surgery (Trabeculectomy only) with or without Mitomycin C, including postoperative medications for 12 weeks (and wherever surgical or laser procedures required for bleb augmentation ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14200,NULL,'',1754,'N','N','Y',1754,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0036','H','',0,0,'','','SE027C - Glaucoma Shunt Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16300,NULL,'',1755,'N','N','Y',1755,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0037','H','',0,0,'','','SE027D - Pediatric Glaucoma Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',1756,'N','N','Y',1756,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0038','H','',0,0,'','','SE028A - EUA for Confirmation of Pediatric Glaucoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',1757,'N','N','Y',1757,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0039','H','',0,0,'','','SE029A - For retinal tear repair Per Eye Per Sitting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1500,NULL,'',1758,'N','N','Y',1758,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0040','H','',0,0,'','','SE029B - Pan Retinal Photocoagulation (PRP) - Retinal Laser including 3 sittings / package of retino laser photocoagulation (3 sittings per eye for both eyes)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8500,NULL,'',1759,'N','N','Y',1759,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0041','H','',0,0,'','','SE030A - ROP Laser - Per Eye','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1760,'N','N','Y',1760,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0042','H','',0,0,'','','SE031A - Retinal Cryopexy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3800,NULL,'',1761,'N','N','Y',1761,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0043','H','',0,0,'','','SE032A - Vitreoretinal Surgery (with Silicon Oil Insertion)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25300,NULL,'',1762,'N','N','Y',1762,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0044','H','',0,0,'','','SE033A - SOR (Silicon Oil Removal)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9300,NULL,'',1763,'N','N','Y',1763,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0045','H','',0,0,'','','SE034A - Endophthalmitis (excluding Vitrectomy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1764,'N','N','Y',1764,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0046','H','',0,0,'','','SE035A - Enucleation Without implant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11900,NULL,'',1765,'N','N','Y',1765,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0047','H','',0,0,'','','SE035B - Enucleation With implant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13300,NULL,'',1766,'N','N','Y',1766,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0048','H','',0,0,'','','SE035GJC - Eyeball enucleation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1767,'N','N','Y',1767,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0049','H','',0,0,'','','SE036A - Evisceration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13300,NULL,'',1768,'N','N','Y',1768,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0050','H','',0,0,'','','SE037A - Exenteration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23700,NULL,'',1769,'N','N','Y',1769,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0051','H','',0,0,'','','SE037GJB - Anterior Exenteration (Urinary Bladder)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',1770,'N','N','Y',1770,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0052','H','',0,0,'','','SE037GJC - Total Exenteration (Urinary Bladder)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',1771,'N','N','Y',1771,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0053','H','',0,0,'','','SE038A - Socket Reconstruction including Amniotic Membrane Graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',1772,'N','N','Y',1772,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0054','H','',0,0,'','','SE039A - Orbitotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17500,NULL,'',1773,'N','N','Y',1773,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0055','H','',0,0,'','','SE040A - GA / EUA separate add on package','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',1774,'N','N','Y',1774,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0056','H','',0,0,'','','SE041A - Orbital fracture repair under GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10500,NULL,'',1775,'N','N','Y',1775,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0057','H','',0,0,'','','SE042A - Optic neuritis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2100,NULL,'',1776,'N','N','Y',1776,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0058','H','',0,0,'','','SE043A - Vision Refraction-IOP & Fundus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,800,NULL,'',1777,'N','N','Y',1777,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0059','H','',0,0,'','','SE043B - Vision Refraction-IOP & Fundus OCT & Visual Fields','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1500,NULL,'',1778,'N','N','Y',1778,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0060','H','',0,0,'','','SE044A - Vision refraction,fundus photo and OCT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1000,NULL,'',1779,'N','N','Y',1779,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SEPM','','SEPM0061','H','',0,0,'','','SEU100 - Unspecified Surgical Package','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1780,'N','N','Y',1780,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0001','H','',0,0,'','','MC019A - Pericardiocentesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15200,NULL,'',1781,'N','N','Y',1781,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0002','H','',0,0,'','','MG044A - Renal colic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1782,'N','N','Y',1782,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0003','H','',0,0,'','','MG045A - AKI / Renal failure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1783,'N','N','Y',1783,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0004','H','',0,0,'','','MG058A - Diabetic Foot -- debridement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1784,'N','N','Y',1784,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0005','H','',0,0,'','','MG096A - Intercostal drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1785,'N','N','Y',1785,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0006','H','',0,0,'','','SB065A - Excision of Bursa','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',1786,'N','N','Y',1786,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0007','H','',0,0,'','','SE040A - GA / EUA separate add on package','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',1787,'N','N','Y',1787,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0008','H','',0,0,'','','SG001A - Oesophagectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,125000,NULL,'',1788,'N','N','Y',1788,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0009','H','',0,0,'','','SG002A - Operations for Replacement of Oesophagus by Colon','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,61200,NULL,'',1789,'N','N','Y',1789,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0010','H','',0,0,'','','SG003A - Bleeding Ulcer - Partial Gastrectomy without Vagotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',1790,'N','N','Y',1790,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0011','H','',0,0,'','','SG003B - Bleeding Ulcer - Partial Gastrectomy with Vagotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',1791,'N','N','Y',1791,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0012','H','',0,0,'','','SG003C - Partial Gastrectomy for Carcinoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43500,NULL,'',1792,'N','N','Y',1792,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0013','H','',0,0,'','','SG003D - Subtotal Gastrectomy for Carcinoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43500,NULL,'',1793,'N','N','Y',1793,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0014','H','',0,0,'','','SG003E - Total Gastrectomy - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,81300,NULL,'',1794,'N','N','Y',1794,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0015','H','',0,0,'','','SG003F - Total Gastrectomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,81300,NULL,'',1795,'N','N','Y',1795,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0016','H','',0,0,'','','SG004A - Operative Gastrostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1796,'N','N','Y',1796,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0017','H','',0,0,'','','SG004GJB - Gastrostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1797,'N','N','Y',1797,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0018','H','',0,0,'','','SG005A - G J Vagotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32200,NULL,'',1798,'N','N','Y',1798,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0019','H','',0,0,'','','SG005B - Vagotomy + Pyloroplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32200,NULL,'',1799,'N','N','Y',1799,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0020','H','',0,0,'','','SG006A - Operation for Bleeding Peptic Ulcer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27200,NULL,'',1800,'N','N','Y',1800,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0021','H','',0,0,'','','SG007A - Gastric Perforation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22600,NULL,'',1801,'N','N','Y',1801,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0022','H','',0,0,'','','SG007B - Duodenal Perforation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22600,NULL,'',1802,'N','N','Y',1802,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0023','H','',0,0,'','','SG008A - Pyloroplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20700,NULL,'',1803,'N','N','Y',1803,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0024','H','',0,0,'','','SG009A - Pyloromyotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1804,'N','N','Y',1804,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0025','H','',0,0,'','','SG0106A - Subtotal Colectomy- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34900,NULL,'',1805,'N','N','Y',1805,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0026','H','',0,0,'','','SG0106B - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34900,NULL,'',1806,'N','N','Y',1806,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0027','H','',0,0,'','','SG0109A - ERCP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1807,'N','N','Y',1807,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0028','H','',0,0,'','','SG010A - Gastrojejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',1808,'N','N','Y',1808,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0029','H','',0,0,'','','SG0110A - Brachial sinus excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1809,'N','N','Y',1809,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0030','H','',0,0,'','','SG0111A - Epididymal Excision under GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',1810,'N','N','Y',1810,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0031','H','',0,0,'','','SG0112A - Mesentric cyst excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1811,'N','N','Y',1811,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0032','H','',0,0,'','','SG0113A - Mole Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',1812,'N','N','Y',1812,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0033','H','',0,0,'','','SG0114A - Neurofibroma Excision under LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',1813,'N','N','Y',1813,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0034','H','',0,0,'','','SG0115A - Ingrowing Toe Nail','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',1814,'N','N','Y',1814,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0035','H','',0,0,'','','SG0116A - Splenorenal Anastomosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,70000,NULL,'',1815,'N','N','Y',1815,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0036','H','',0,0,'','','SG0117A - Replacement Surgery For Corrosive Injury Stomach','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1816,'N','N','Y',1816,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0037','H','',0,0,'','','SG0118A - Choledochoduodenostomy Or Choledocho Jejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35000,NULL,'',1817,'N','N','Y',1817,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0038','H','',0,0,'','','SG0119A - Hepatico Jejunostomy for biliary stricture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45000,NULL,'',1818,'N','N','Y',1818,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0039','H','',0,0,'','','SG011A - CystoJejunostomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22500,NULL,'',1819,'N','N','Y',1819,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0040','H','',0,0,'','','SG011B - CystoJejunostomy - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22500,NULL,'',1820,'N','N','Y',1820,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0041','H','',0,0,'','','SG011C - Cystogastrostomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',1821,'N','N','Y',1821,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0042','H','',0,0,'','','SG011D - Cystogastrostomy - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',1822,'N','N','Y',1822,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0043','H','',0,0,'','','SG0120A - I Stage- Sub Total Colectomy + Ileostomy + J - Pouch','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,80000,NULL,'',1823,'N','N','Y',1823,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0044','H','',0,0,'','','SG0121A - Pancreatic Necrosectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',1824,'N','N','Y',1824,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0045','H','',0,0,'','','SG0122A - Distal Pancreatectomy + Splenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',1825,'N','N','Y',1825,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0046','H','',0,0,'','','SG0123A - Heller Myotomy (Lap./Open)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',1826,'N','N','Y',1826,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0047','H','',0,0,'','','SG0124A - I Stage-Sub Total Colectomy + Ileostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1827,'N','N','Y',1827,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0048','H','',0,0,'','','SG012A - Feeding Jejunostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1828,'N','N','Y',1828,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0049','H','',0,0,'','','SG013A - Ileostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16500,NULL,'',1829,'N','N','Y',1829,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0050','H','',0,0,'','','SG013GJB - Ileostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1830,'N','N','Y',1830,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0051','H','',0,0,'','','SG014A - Congenital Atresia & Stenosis of Small Intestine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1831,'N','N','Y',1831,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0052','H','',0,0,'','','SG015A - Operation for Duplication of Intestine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25400,NULL,'',1832,'N','N','Y',1832,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0053','H','',0,0,'','','SG016A - Excision Duodenal Diverticulum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1833,'N','N','Y',1833,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0054','H','',0,0,'','','SG016B - Excision Meckels Diverticulum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16900,NULL,'',1834,'N','N','Y',1834,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0055','H','',0,0,'','','SG017A - Appendicectomy- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1835,'N','N','Y',1835,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0056','H','',0,0,'','','SG017B - Lap- Appendicectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1836,'N','N','Y',1836,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0057','H','',0,0,'','','SG018A - Appendicular Perforation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1837,'N','N','Y',1837,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0058','H','',0,0,'','','SG019A - Operative drainage of Appendicular Abscess','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1838,'N','N','Y',1838,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0059','H','',0,0,'','','SG020A - Total Colectomy- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48300,NULL,'',1839,'N','N','Y',1839,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0060','H','',0,0,'','','SG020B - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48300,NULL,'',1840,'N','N','Y',1840,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0061','H','',0,0,'','','SG021A - Hemi colectomy Right-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35200,NULL,'',1841,'N','N','Y',1841,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0062','H','',0,0,'','','SG021B - Right- Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35200,NULL,'',1842,'N','N','Y',1842,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0063','H','',0,0,'','','SG021C - Hemi colectomy Left-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35200,NULL,'',1843,'N','N','Y',1843,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0064','H','',0,0,'','','SG021D - Left- Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35200,NULL,'',1844,'N','N','Y',1844,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0065','H','',0,0,'','','SG022A - Operative Management of Volvulus of Large Bowel','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',1845,'N','N','Y',1845,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0066','H','',0,0,'','','SG023A - Colostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1846,'N','N','Y',1846,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0067','H','',0,0,'','','SG024A - Closure of stoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16700,NULL,'',1847,'N','N','Y',1847,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0068','H','',0,0,'','','SG025A - Sigmoid Resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23100,NULL,'',1848,'N','N','Y',1848,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0069','H','',0,0,'','','SG026A - Perineal Procedure for Rectal Prolapse','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',1849,'N','N','Y',1849,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0070','H','',0,0,'','','SG027A - Abdominal Procedure for Rectal Prolapse - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20300,NULL,'',1850,'N','N','Y',1850,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0071','H','',0,0,'','','SG027B - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20300,NULL,'',1851,'N','N','Y',1851,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0072','H','',0,0,'','','SG028A - Rectal Polyp Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1852,'N','N','Y',1852,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0073','H','',0,0,'','','SG029A - Anterior Resection of rectum- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1853,'N','N','Y',1853,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0074','H','',0,0,'','','SG029B - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1854,'N','N','Y',1854,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0075','H','',0,0,'','','SG029GJC - Anterior Resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1855,'N','N','Y',1855,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0076','H','',0,0,'','','SG030A - Resection Anastomosis - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26700,NULL,'',1856,'N','N','Y',1856,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0077','H','',0,0,'','','SG030B - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26700,NULL,'',1857,'N','N','Y',1857,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0078','H','',0,0,'','','SG031A - Procedure for Fissure in Ano','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1858,'N','N','Y',1858,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0079','H','',0,0,'','','SG032A - without Stapler','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12000,NULL,'',1859,'N','N','Y',1859,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0080','H','',0,0,'','','SG032B - with Stapler','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12000,NULL,'',1860,'N','N','Y',1860,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0081','H','',0,0,'','','SG033A - Management of Pilonidal Sinus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5700,NULL,'',1861,'N','N','Y',1861,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0082','H','',0,0,'','','SG034A - Exicision of Sinus and Curettage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1862,'N','N','Y',1862,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0083','H','',0,0,'','','SG035A - Exploratory Laparotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11800,NULL,'',1863,'N','N','Y',1863,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0084','H','',0,0,'','','SG036A - Closure of Burst Abdomen','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1864,'N','N','Y',1864,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0085','H','',0,0,'','','SG037A - Hepatic Resection- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1865,'N','N','Y',1865,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0086','H','',0,0,'','','SG037B - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1866,'N','N','Y',1866,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0087','H','',0,0,'','','SG038A - Operation forAbdominal Hydatid Cyst (Single Organ) - Change in Name','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,21000,NULL,'',1867,'N','N','Y',1867,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0088','H','',0,0,'','','SG039A - Without Exploration of CBD - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31100,NULL,'',1868,'N','N','Y',1868,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0089','H','',0,0,'','','SG039B - With Exploration of CBD - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31100,NULL,'',1869,'N','N','Y',1869,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0090','H','',0,0,'','','SG039C - Without Exploration of CBD - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31100,NULL,'',1870,'N','N','Y',1870,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0091','H','',0,0,'','','SG039D - With Exploration of CBD - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31100,NULL,'',1871,'N','N','Y',1871,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0092','H','',0,0,'','','SG040A - Operative Cholecystostomy-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11300,NULL,'',1872,'N','N','Y',1872,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0093','H','',0,0,'','','SG040B - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11300,NULL,'',1873,'N','N','Y',1873,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0094','H','',0,0,'','','SG041A - Operation of Choledochal Cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31700,NULL,'',1874,'N','N','Y',1874,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0095','H','',0,0,'','','SG042A - Splenectomy- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35200,NULL,'',1875,'N','N','Y',1875,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0096','H','',0,0,'','','SG042B - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35200,NULL,'',1876,'N','N','Y',1876,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0097','H','',0,0,'','','SG042GJC - Splenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',1877,'N','N','Y',1877,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0098','H','',0,0,'','','SG042GJD - Radical Splenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',1878,'N','N','Y',1878,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0099','H','',0,0,'','','SG043A - Bypass - Inoperable Pancreas','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',1879,'N','N','Y',1879,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0100','H','',0,0,'','','SG044A - Distal Pancreatectomy/Pancreatico Jejunostomy with/without spleenlectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44600,NULL,'',1880,'N','N','Y',1880,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0101','H','',0,0,'','','SG045A - PancreaticoDuodenectomy (Whipples)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,125000,NULL,'',1881,'N','N','Y',1881,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0102','H','',0,0,'','','SG045GJB - Whipples - any type','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',1882,'N','N','Y',1882,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0103','H','',0,0,'','','SG046A - Porto Caval Anastomosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',1883,'N','N','Y',1883,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0104','H','',0,0,'','','SG047A - Mesenteric Caval Anastomosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48600,NULL,'',1884,'N','N','Y',1884,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0105','H','',0,0,'','','SG048A - Mesenteric Cyst ? Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20700,NULL,'',1885,'N','N','Y',1885,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0106','H','',0,0,'','','SG049A - Retroperitoneal Tumor ? Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,39200,NULL,'',1886,'N','N','Y',1886,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0107','H','',0,0,'','','SG050A - Inguinal - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1887,'N','N','Y',1887,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0108','H','',0,0,'','','SG050B - Groin Hernia Repair Inguinal - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1888,'N','N','Y',1888,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0109','H','',0,0,'','','SG050C - Femoral - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1889,'N','N','Y',1889,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0110','H','',0,0,'','','SG050D - Femoral - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20300,NULL,'',1890,'N','N','Y',1890,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0111','H','',0,0,'','','SG050E - Groin Hernia Repair Obturator - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22900,NULL,'',1891,'N','N','Y',1891,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0112','H','',0,0,'','','SG051A - Epigastric','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1892,'N','N','Y',1892,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0113','H','',0,0,'','','SG051B - Umbilical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1893,'N','N','Y',1893,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0114','H','',0,0,'','','SG051C - Paraumbilical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1894,'N','N','Y',1894,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0115','H','',0,0,'','','SG051D - Spigelian','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1895,'N','N','Y',1895,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0116','H','',0,0,'','','SG052A - Repair of Incisional Hernia Lap/Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20300,NULL,'',1896,'N','N','Y',1896,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0117','H','',0,0,'','','SG053A - Hiatus Hernia Repair - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',1897,'N','N','Y',1897,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0118','H','',0,0,'','','SG053B - Hiatus Hernia Repair - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',1898,'N','N','Y',1898,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0119','H','',0,0,'','','SG053C - Fundoplication - Open(+/- Hiatus Hernia repair)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',1899,'N','N','Y',1899,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0120','H','',0,0,'','','SG054A - Single Cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2700,NULL,'',1900,'N','N','Y',1900,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0121','H','',0,0,'','','SG054B - Multiple Cysts','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1901,'N','N','Y',1901,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0122','H','',0,0,'','','SG055A - Excision Filarial Scrotum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8000,NULL,'',1902,'N','N','Y',1902,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0123','H','',0,0,'','','SG056A - Operation for Hydrocele (U/L)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1903,'N','N','Y',1903,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0124','H','',0,0,'','','SG056B - Operation for Hydrocele (B/L)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1904,'N','N','Y',1904,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0125','H','',0,0,'','','SG057A - Epididymal Cyst excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5300,NULL,'',1905,'N','N','Y',1905,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0126','H','',0,0,'','','SG057B - Epididymal Nodule excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5300,NULL,'',1906,'N','N','Y',1906,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0127','H','',0,0,'','','SG058A - Vasovasostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12000,NULL,'',1907,'N','N','Y',1907,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0128','H','',0,0,'','','SG059A - Orchidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12000,NULL,'',1908,'N','N','Y',1908,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0129','H','',0,0,'','','SG060A - Inguinal Node (dissection) - U/L','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19800,NULL,'',1909,'N','N','Y',1909,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0130','H','',0,0,'','','SG061A - Estlander Operation (lip)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18500,NULL,'',1910,'N','N','Y',1910,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0131','H','',0,0,'','','SG062A - Wedge Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25100,NULL,'',1911,'N','N','Y',1911,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0132','H','',0,0,'','','SG062B - Wedge Excision and Vermilionectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1912,'N','N','Y',1912,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0133','H','',0,0,'','','SG062C - Cheek advancement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1913,'N','N','Y',1913,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0134','H','',0,0,'','','SG063A - Complete Excision of Growth from Tongue only (inclusive of Histopathology)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20900,NULL,'',1914,'N','N','Y',1914,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0135','H','',0,0,'','','SG064A - Excision of Growth from Tongue with neck node dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,39200,NULL,'',1915,'N','N','Y',1915,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0136','H','',0,0,'','','SG065A - Microlaryngoscopic Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18500,NULL,'',1916,'N','N','Y',1916,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0137','H','',0,0,'','','SG066A - Submandibular Mass Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1917,'N','N','Y',1917,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0138','H','',0,0,'','','SG067A - Radical Neck Dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33700,NULL,'',1918,'N','N','Y',1918,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0139','H','',0,0,'','','SG068A - Surgical removal of Branchial Cyst/Sinus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1919,'N','N','Y',1919,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0140','H','',0,0,'','','SG069A - Carotid Body tumour - Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1920,'N','N','Y',1920,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0141','H','',0,0,'','','SG070A - Hemi thyroidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',1921,'N','N','Y',1921,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0142','H','',0,0,'','','SG070B - Total thyroidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',1922,'N','N','Y',1922,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0143','H','',0,0,'','','SG070C - Total Thyroidectomy with Block Dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43600,NULL,'',1923,'N','N','Y',1923,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0144','H','',0,0,'','','SG071A - Excision of Parathyroid Adenoma/Carcinoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1924,'N','N','Y',1924,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0145','H','',0,0,'','','SG072A - Thymectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',1925,'N','N','Y',1925,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0146','H','',0,0,'','','SG073A - Sympathectomy-Unilateral (U/L)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20700,NULL,'',1926,'N','N','Y',1926,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0147','H','',0,0,'','','SG073B - Sympathectomy-Bilateral (B/L)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35000,NULL,'',1927,'N','N','Y',1927,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0148','H','',0,0,'','','SG074A - Breast Lump Excision (Benign)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1928,'N','N','Y',1928,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0149','H','',0,0,'','','SG075A - Simple Mastectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1929,'N','N','Y',1929,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0150','H','',0,0,'','','SG075B - Radical / Modified Radical Mastectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',1930,'N','N','Y',1930,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0151','H','',0,0,'','','SG076A - Excision Mammary Fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12000,NULL,'',1931,'N','N','Y',1931,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0152','H','',0,0,'','','SG077A - Intercostal drainage Only','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5600,NULL,'',1932,'N','N','Y',1932,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0153','H','',0,0,'','','SG078A - Rib Resection & Drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',1933,'N','N','Y',1933,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0154','H','',0,0,'','','SG079A - Thoracoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24400,NULL,'',1934,'N','N','Y',1934,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0155','H','',0,0,'','','SG080A - Decortication (Pleurectomy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33000,NULL,'',1935,'N','N','Y',1935,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0156','H','',0,0,'','','SG081A - Thoracoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',1936,'N','N','Y',1936,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0157','H','',0,0,'','','SG081B - Lobectomy-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',1937,'N','N','Y',1937,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0158','H','',0,0,'','','SG082A - Thoracoscopic Segmental Resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,39900,NULL,'',1938,'N','N','Y',1938,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0159','H','',0,0,'','','SG083A - Lung Hydatid Cyst removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',1939,'N','N','Y',1939,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0160','H','',0,0,'','','SG084A - Incision & Drainage of Abscess','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1940,'N','N','Y',1940,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0161','H','',0,0,'','','SG085A - Lipoma Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1941,'N','N','Y',1941,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0162','H','',0,0,'','','SG085B - Cyst Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1942,'N','N','Y',1942,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0163','H','',0,0,'','','SG085C - Other cutaneous swellings Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1943,'N','N','Y',1943,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0164','H','',0,0,'','','SG086A - Debridement of Ulcer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1944,'N','N','Y',1944,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0165','H','',0,0,'','','SG087A - Flap Reconstructive Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,36100,NULL,'',1945,'N','N','Y',1945,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0166','H','',0,0,'','','SG088A - Free Grafts - Wolfe Grafts','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31300,NULL,'',1946,'N','N','Y',1946,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0167','H','',0,0,'','','SG089A - Tissue Reconstruction Flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35200,NULL,'',1947,'N','N','Y',1947,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0168','H','',0,0,'','','SG090A - Small (< 4% TBSA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',1948,'N','N','Y',1948,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0169','H','',0,0,'','','SG090B - Medium (4 - 8% TBSA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18100,NULL,'',1949,'N','N','Y',1949,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0170','H','',0,0,'','','SG090C - Large (> 8% TBSA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20400,NULL,'',1950,'N','N','Y',1950,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0171','H','',0,0,'','','SG091A - Skin Flaps - Rotation Flaps','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28800,NULL,'',1951,'N','N','Y',1951,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0172','H','',0,0,'','','SG092A - Tendon Transfer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1952,'N','N','Y',1952,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0173','H','',0,0,'','','SG093A - Lymphatics Excision of Subcutaneous Tissues In Lymphoedema','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',1953,'N','N','Y',1953,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0174','H','',0,0,'','','SG094A - AV Fistula without prosthesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18400,NULL,'',1954,'N','N','Y',1954,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0175','H','',0,0,'','','SG095A - Management of Varicose Veins-Operative management','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16500,NULL,'',1955,'N','N','Y',1955,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0176','H','',0,0,'','','SG095B - Minor sclerotherapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1956,'N','N','Y',1956,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0177','H','',0,0,'','','SG096A - Lymph Node','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',1957,'N','N','Y',1957,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0178','H','',0,0,'','','SG096B - Endometrial Aspiration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2700,NULL,'',1958,'N','N','Y',1958,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0179','H','',0,0,'','','SG096C - Cervix Cancer screening (PAP + Colposcopy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2500,NULL,'',1959,'N','N','Y',1959,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0180','H','',0,0,'','','SG096E - Vulval','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2500,NULL,'',1960,'N','N','Y',1960,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0181','H','',0,0,'','','SG096GJF - Cervical (Neck)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1500,NULL,'',1961,'N','N','Y',1961,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0182','H','',0,0,'','','SG097A - Stoma Management follow up of Ileostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5500,NULL,'',1962,'N','N','Y',1962,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0183','H','',0,0,'','','SG097B - Stoma Management follow up of Colostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5500,NULL,'',1963,'N','N','Y',1963,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0184','H','',0,0,'','','SG098A - Foreign Body Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',1964,'N','N','Y',1964,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0185','H','',0,0,'','','SG099A - Necrotising fasciitis / Fournier Gangrene','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14100,NULL,'',1965,'N','N','Y',1965,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0186','H','',0,0,'','','SG100A - Surgical management of Lower GI bleed (inclusive of sigmoidoscopy / colonoscopy) - Colonoscopic management only excluding local perineal conditions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1966,'N','N','Y',1966,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0187','H','',0,0,'','','SG101A - Caecopexy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1967,'N','N','Y',1967,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0188','H','',0,0,'','','SG102A - Repair of Renal Artery Stenosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,76000,NULL,'',1968,'N','N','Y',1968,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0189','H','',0,0,'','','SG103A - ERCP + Stenting/Stone removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',1969,'N','N','Y',1969,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0190','H','',0,0,'','','SG104A - Circumcision - Phimosis / Paraphimosis or any other clinical condition','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',1970,'N','N','Y',1970,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0191','H','',0,0,'','','SG105A - Percutaneous transhepatic external biliary drainage (PTBD)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25200,NULL,'',1971,'N','N','Y',1971,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0192','H','',0,0,'','','SG106GJA - Ilieosigmoidostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28750,NULL,'',1972,'N','N','Y',1972,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0193','H','',0,0,'','','SG107GJA - Resection  and Anastomosis of intestine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34500,NULL,'',1973,'N','N','Y',1973,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0194','H','',0,0,'','','SG108GJA - Intestinal resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40250,NULL,'',1974,'N','N','Y',1974,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0195','H','',0,0,'','','SGU100 - Unspecified Surgical Package','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1975,'N','N','Y',1975,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0196','H','',0,0,'','','SL021A - Total Parotidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28200,NULL,'',1976,'N','N','Y',1976,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0197','H','',0,0,'','','SL021B - Superficial Parotidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23800,NULL,'',1977,'N','N','Y',1977,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0198','H','',0,0,'','','SL026A - Tracheostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28000,NULL,'',1978,'N','N','Y',1978,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0199','H','',0,0,'','','SL026B - Tracheotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28000,NULL,'',1979,'N','N','Y',1979,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0200','H','',0,0,'','','SL027A - Selective Benign neck tumourexcision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23500,NULL,'',1980,'N','N','Y',1980,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0201','H','',0,0,'','','SL027B - Comprehensive Benign neck tumourexcision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23500,NULL,'',1981,'N','N','Y',1981,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0202','H','',0,0,'','','SL027C - Selective Pharyngeal diverticulumexcision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23500,NULL,'',1982,'N','N','Y',1982,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0203','H','',0,0,'','','SL027D - Comprehensive Pharyngealdiverticulum excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23500,NULL,'',1983,'N','N','Y',1983,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0204','H','',0,0,'','','SL028A - Deep neck abscess drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16800,NULL,'',1984,'N','N','Y',1984,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0205','H','',0,0,'','','SL028B - Post trauma neck exploration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,21000,NULL,'',1985,'N','N','Y',1985,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0206','H','',0,0,'','','ST001A - Severe','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1986,'N','N','Y',1986,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0207','H','',0,0,'','','ST001B - Depressed Fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1987,'N','N','Y',1987,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0208','H','',0,0,'','','ST002A - Head injury with repair of Facio-Maxillary Injury & fixations (including implants)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38800,NULL,'',1988,'N','N','Y',1988,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0209','H','',0,0,'','','ST003A - Subdural hematoma along with fixation of fracture of single long bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',1989,'N','N','Y',1989,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0210','H','',0,0,'','','ST003B - Extradural hematoma along with fixation of fracture of single long bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',1990,'N','N','Y',1990,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0211','H','',0,0,'','','ST003C - Subdural hematoma along with fixation of fracture of 2 or more long bone.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,93800,NULL,'',1991,'N','N','Y',1991,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0212','H','',0,0,'','','ST003D - Extradural hematoma along with fixation of fracture of 2 or more long bone.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,93800,NULL,'',1992,'N','N','Y',1992,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0213','H','',0,0,'','','ST004A - Management of Chest injury with fixation of Single Long bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',1993,'N','N','Y',1993,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0214','H','',0,0,'','','ST004B - Management of Chest injury with fixation of 2 or more Long bones','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45000,NULL,'',1994,'N','N','Y',1994,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0215','H','',0,0,'','','ST005A - Surgical intervention for Visceral injury and fixation of fracture of single long bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1995,'N','N','Y',1995,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0216','H','',0,0,'','','ST005B - Surgical intervention for Visceral injury and fixation of fracture of 2 or more long bones','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,56300,NULL,'',1996,'N','N','Y',1996,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0217','H','',0,0,'','','ST006A - Internal fixation of Pelviacetabular fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1997,'N','N','Y',1997,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0218','H','',0,0,'','','ST007A - Internal fixation with Flap cover Surgery for wound in compound fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',1998,'N','N','Y',1998,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0219','H','',0,0,'','','ST008A - Emergency tendons repair ? Peripheral Nerve repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',1999,'N','N','Y',1999,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0220','H','',0,0,'','','ST009A - Nerve and/or tendon injury. A. Wound exploration and closure. B. Nerve repair. C. Tendon repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',2000,'N','N','Y',2000,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0221','H','',0,0,'','','ST009B - Nerve and/or tendon injury. A. Wound exploration and closure. B. Nerve graft. C. Tendon graft/transfer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',2001,'N','N','Y',2001,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0222','H','',0,0,'','','ST009C - Tendon injury repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2002,'N','N','Y',2002,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0223','H','',0,0,'','','ST009D - Tendon graft repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2003,'N','N','Y',2003,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0224','H','',0,0,'','','ST009E - Tendon Transfer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2004,'N','N','Y',2004,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0225','H','',0,0,'','','ST010A - Nerve and/or tendon injury. A. Wound exploration and closure. B. Nerve repair. C. Tendon repair D. Vascular repair/graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',2005,'N','N','Y',2005,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SGPM','','SGPM0226','H','',0,0,'','','ST010B - Plexus injury along with Vascular injury graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',2006,'N','N','Y',2006,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SKCG','','SKCG0001','H','',0,0,'','','Excision of Moles','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',345,345,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'SKCG','','SKCG0002','H','',0,0,'','','Excision of Warts','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',310,310,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'SKCG','','SKCG0003','H','',0,0,'','','Excision of Molluscum contagiosum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',130,130,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'SKCG','','SKCG0004','H','',0,0,'','','Excision of Veneral Warts','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',160,160,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'SKCG','','SKCG0005','H','',0,0,'','','Excision of Corns','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',140,140,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'SKCG','','SKCG0006','H','',0,0,'','','I/D Injection Keloid','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',97,97,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'SKCG','','SKCG0007','H','',0,0,'','','Chemical Cautery (s)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',110,110,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'SLPM','','SLPM0001','H','',0,0,'','','SC002A - Soft palate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45100,NULL,'',2007,'N','N','Y',2007,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0002','H','',0,0,'','','SC002B - Hard palate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,51500,NULL,'',2008,'N','N','Y',2008,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0003','H','',0,0,'','','SC064A - Growth - Squamous','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,56300,NULL,'',2009,'N','N','Y',2009,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0004','H','',0,0,'','','SC064B - Growth - Basal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,56300,NULL,'',2010,'N','N','Y',2010,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0005','H','',0,0,'','','SC064C - Injury','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,56300,NULL,'',2011,'N','N','Y',2011,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0006','H','',0,0,'','','SE040A - GA / EUA separate add on package','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',2012,'N','N','Y',2012,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0007','H','',0,0,'','','SG067A - Radical Neck Dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33700,NULL,'',2013,'N','N','Y',2013,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0008','H','',0,0,'','','SG068A - Surgical removal of Branchial Cyst/Sinus','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2014,'N','N','Y',2014,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0009','H','',0,0,'','','SG070A - Hemi thyroidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',2015,'N','N','Y',2015,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0010','H','',0,0,'','','SG070B - Total thyroidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',2016,'N','N','Y',2016,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0011','H','',0,0,'','','SG070C - Total Thyroidectomy with Block Dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43600,NULL,'',2017,'N','N','Y',2017,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0012','H','',0,0,'','','SG098A - Foreign Body Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2018,'N','N','Y',2018,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0013','H','',0,0,'','','SL001A - Pinna surgery for tumor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',2019,'N','N','Y',2019,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0014','H','',0,0,'','','SL001B - Pinna surgery for trauma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',2020,'N','N','Y',2020,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0015','H','',0,0,'','','SL002A - Tympanoplasty (can be stratified  (GA/LA) and price adjusted accordingly )','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15400,NULL,'',2021,'N','N','Y',2021,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0016','H','',0,0,'','','SL003A - Stapedectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17300,NULL,'',2022,'N','N','Y',2022,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0017','H','',0,0,'','','SL003B - Tympanotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',2023,'N','N','Y',2023,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0018','H','',0,0,'','','SL004A - Simple','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28000,NULL,'',2024,'N','N','Y',2024,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0019','H','',0,0,'','','SL004B - Radical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28000,NULL,'',2025,'N','N','Y',2025,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0020','H','',0,0,'','','SL005A - Unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7600,NULL,'',2026,'N','N','Y',2026,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0021','H','',0,0,'','','SL005B - Bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7600,NULL,'',2027,'N','N','Y',2027,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0022','H','',0,0,'','','SL006A - Endoscopic DCR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2028,'N','N','Y',2028,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0023','H','',0,0,'','','SL007A - Epistaxis treatment - packing (inc. of pack cost)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2500,NULL,'',2029,'N','N','Y',2029,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0024','H','',0,0,'','','SL008A - Functional septo rhinoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22700,NULL,'',2030,'N','N','Y',2030,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0025','H','',0,0,'','','SL009A - Septoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13900,NULL,'',2031,'N','N','Y',2031,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0026','H','',0,0,'','','SL010A - Fracture - setting nasal bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8700,NULL,'',2032,'N','N','Y',2032,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0027','H','',0,0,'','','SL011A - Inferior turbinate reduction under GA(HOW IS IT DIFFERENT FROM TURBINATE REDUCTION AT THE END?)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6000,NULL,'',2033,'N','N','Y',2033,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0028','H','',0,0,'','','SL012A - Open sinus surgery(Open Sinus Surgery (Single/Multiple Sinuses)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16200,NULL,'',2034,'N','N','Y',2034,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0029','H','',0,0,'','','SL013A - Functional Endoscopic Sinus (FESS)stratified as U/L or B/L and cost adjusted','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14700,NULL,'',2035,'N','N','Y',2035,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0030','H','',0,0,'','','SL014A - Ant. Ethmoidal artery ligation - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16200,NULL,'',2036,'N','N','Y',2036,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0031','H','',0,0,'','','SL014B - Ant. Ethmoidal artery ligation - Endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16200,NULL,'',2037,'N','N','Y',2037,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0032','H','',0,0,'','','SL014C - Sphenopalatine artery ligation - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16200,NULL,'',2038,'N','N','Y',2038,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0033','H','',0,0,'','','SL014D - Sphenopalatine artery ligation - Endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16200,NULL,'',2039,'N','N','Y',2039,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0034','H','',0,0,'','','SL015A - Adenoidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9400,NULL,'',2040,'N','N','Y',2040,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0035','H','',0,0,'','','SL016A - Tonsillectomy - U/L tonsillectomy (unilateral/bilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12200,NULL,'',2041,'N','N','Y',2041,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0036','H','',0,0,'','','SL016B - Tonsillectomy - B/L adenotonsillectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12200,NULL,'',2042,'N','N','Y',2042,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0037','H','',0,0,'','','SL017A - Peritonsillar abscess drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5800,NULL,'',2043,'N','N','Y',2043,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0038','H','',0,0,'','','SL017B - Intraoral calculus removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5800,NULL,'',2044,'N','N','Y',2044,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0039','H','',0,0,'','','SL018A - Thyroglossal cyst excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17000,NULL,'',2045,'N','N','Y',2045,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0040','H','',0,0,'','','SL018B - Thyroglossal sinus excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17000,NULL,'',2046,'N','N','Y',2046,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0041','H','',0,0,'','','SL018C - Thyroglossal fistula excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17000,NULL,'',2047,'N','N','Y',2047,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0042','H','',0,0,'','','SL018D - Branchial sinus excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17000,NULL,'',2048,'N','N','Y',2048,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0043','H','',0,0,'','','SL018E - Branchial fistula excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17000,NULL,'',2049,'N','N','Y',2049,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0044','H','',0,0,'','','SL019A - Uvulopalatopharyngoplasty (UPPP)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20100,NULL,'',2050,'N','N','Y',2050,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0045','H','',0,0,'','','SL020A - Excision of tumour of oral cavity / paranasal sinus / laryngopharynxwithout reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',2051,'N','N','Y',2051,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0046','H','',0,0,'','','SL020B - Excision of tumour of oral cavity / paranasal sinus / laryngopharynxwith pedicled flap reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45700,NULL,'',2052,'N','N','Y',2052,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0047','H','',0,0,'','','SL020C - Excision of tumour of oral cavity /paranasal sinus / laryngopharynx with free flap reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31300,NULL,'',2053,'N','N','Y',2053,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0048','H','',0,0,'','','SL021A - Total Parotidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28200,NULL,'',2054,'N','N','Y',2054,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0049','H','',0,0,'','','SL021B - Superficial Parotidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23800,NULL,'',2055,'N','N','Y',2055,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0050','H','',0,0,'','','SL022A - Removal of Submandibular Salivary gland','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',2056,'N','N','Y',2056,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0051','H','',0,0,'','','SL022B - Removal of Ranula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,29000,NULL,'',2057,'N','N','Y',2057,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0052','H','',0,0,'','','SL023A - Rigid laryngoscopy - Diagnostic + / -biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2058,'N','N','Y',2058,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0053','H','',0,0,'','','SL023B - Rigid bronchoscopy -  Diagnostic + /- biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2059,'N','N','Y',2059,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0054','H','',0,0,'','','SL023C - Rigid oesophagoscopy - Diagnostic+ / - biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2060,'N','N','Y',2060,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0055','H','',0,0,'','','SL024A - Microlaryngeal surgery with or without laser','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17000,NULL,'',2061,'N','N','Y',2061,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0056','H','',0,0,'','','SL025A - Open laryngeal framework surgery / Thyroplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2062,'N','N','Y',2062,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0057','H','',0,0,'','','SL026A - Tracheostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28000,NULL,'',2063,'N','N','Y',2063,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0058','H','',0,0,'','','SL026B - Tracheotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28000,NULL,'',2064,'N','N','Y',2064,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0059','H','',0,0,'','','SL027A - Selective Benign neck tumourexcision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23500,NULL,'',2065,'N','N','Y',2065,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0060','H','',0,0,'','','SL027B - Comprehensive Benign neck tumourexcision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23500,NULL,'',2066,'N','N','Y',2066,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0061','H','',0,0,'','','SL027C - Selective Pharyngeal diverticulumexcision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23500,NULL,'',2067,'N','N','Y',2067,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0062','H','',0,0,'','','SL027D - Comprehensive Pharyngealdiverticulum excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23500,NULL,'',2068,'N','N','Y',2068,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0063','H','',0,0,'','','SL028A - Deep neck abscess drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16800,NULL,'',2069,'N','N','Y',2069,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0064','H','',0,0,'','','SL028B - Post trauma neck exploration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,21000,NULL,'',2070,'N','N','Y',2070,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0065','H','',0,0,'','','SL029A - Endoscopic CSF Rhinorrhea Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32500,NULL,'',2071,'N','N','Y',2071,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0066','H','',0,0,'','','SL029B - Optic nerve decompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',2072,'N','N','Y',2072,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0067','H','',0,0,'','','SL029C - Orbital decompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',2073,'N','N','Y',2073,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0068','H','',0,0,'','','SL029D - Craniofacial resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',2074,'N','N','Y',2074,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0069','H','',0,0,'','','SL029E - Maxillary swing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',2075,'N','N','Y',2075,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0070','H','',0,0,'','','SL030A - Endoscopic Hypophysectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49800,NULL,'',2076,'N','N','Y',2076,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0071','H','',0,0,'','','SL030B - Clival tumour excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49800,NULL,'',2077,'N','N','Y',2077,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0072','H','',0,0,'','','SL031A - Subtotal petrosectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30900,NULL,'',2078,'N','N','Y',2078,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0073','H','',0,0,'','','SL031B - Post-traumatic facial nervedecompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30900,NULL,'',2079,'N','N','Y',2079,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0074','H','',0,0,'','','SL031C - CSF Otorrhoea repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30900,NULL,'',2080,'N','N','Y',2080,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0075','H','',0,0,'','','SL032A - Fisch approach','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49900,NULL,'',2081,'N','N','Y',2081,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0076','H','',0,0,'','','SL032B - Translabyrinthine approach','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49900,NULL,'',2082,'N','N','Y',2082,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0077','H','',0,0,'','','SL032C - Transcochlear approach','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49900,NULL,'',2083,'N','N','Y',2083,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0078','H','',0,0,'','','SL032D - Temporal Bone resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49900,NULL,'',2084,'N','N','Y',2084,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0079','H','',0,0,'','','SL033A - Closed reduction for fracture of maxilla','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2085,'N','N','Y',2085,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0080','H','',0,0,'','','SL033B - Closed reduction for fracture of mandible','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2086,'N','N','Y',2086,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0081','H','',0,0,'','','SL033C - Closed reduction for fracture of zygoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2087,'N','N','Y',2087,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0082','H','',0,0,'','','SL033D - Closed reduction and Intermaxillary fixation for fracture of mandible','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2088,'N','N','Y',2088,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0083','H','',0,0,'','','SL034A - Open reduction and internal fixation of maxilla','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',2089,'N','N','Y',2089,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0084','H','',0,0,'','','SL034B - Open reduction and internal fixation of mandible','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',2090,'N','N','Y',2090,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0085','H','',0,0,'','','SL034C - Open reduction and internal fixation of zygoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',2091,'N','N','Y',2091,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0086','H','',0,0,'','','SL035A - Turbinate reduction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1200,NULL,'',2092,'N','N','Y',2092,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0087','H','',0,0,'','','SL035B - Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1200,NULL,'',2093,'N','N','Y',2093,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0088','H','',0,0,'','','SL035C - Intratympanic injections','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1200,NULL,'',2094,'N','N','Y',2094,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0089','H','',0,0,'','','SL035D - Wide bore aspiration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1200,NULL,'',2095,'N','N','Y',2095,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0090','H','',0,0,'','','SL036A - Cochlear Implant Surgery Surgery(53000) pre -op evaluation(including  vaccine for meningitis)- 10000/- Initial mapping and swithch on - 5000/-Rehabilitation Therapy (part- 1 for first 6 month','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,162500,NULL,'',2096,'N','N','Y',2096,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0091','H','',0,0,'','','SLU100 - Unspecified Surgical Package','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2097,'N','N','Y',2097,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0092','H','',0,0,'','','SN035B - Trigeminal Nerve Neurectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31100,NULL,'',2098,'N','N','Y',2098,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SLPM','','SLPM0093','H','',0,0,'','','SP009A - Resuturing of Any Wound gapSurgeries','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3800,NULL,'',2099,'N','N','Y',2099,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0001','H','',0,0,'','','SL034A - Open reduction and internal fixation of maxilla','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',2100,'N','N','Y',2100,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0002','H','',0,0,'','','SL034B - Open reduction and internal fixation of mandible','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',2101,'N','N','Y',2101,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0003','H','',0,0,'','','SL034C - Open reduction and internal fixation of zygoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',2102,'N','N','Y',2102,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0004','H','',0,0,'','','SM001A - Extraction of impacted tooth under LA?','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,800,NULL,'',2103,'N','N','Y',2103,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0005','H','',0,0,'','','SM002A - Osteomyelitis -Acute','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2000,NULL,'',2104,'N','N','Y',2104,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0006','H','',0,0,'','','SM002B - Osteomyelitis-Chronic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3800,NULL,'',2105,'N','N','Y',2105,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0007','H','',0,0,'','','SM003A - 1.TM joint ankylosis of both jaws - under GA (Unilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',2106,'N','N','Y',2106,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0008','H','',0,0,'','','SM003B - 2.TM joint ankylosis of both jaws - under GA (Bilateral)-(Covering Reconstruction)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31300,NULL,'',2107,'N','N','Y',2107,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0009','H','',0,0,'','','SM004A - Closed reduction (1 jaw) using wires -  under LA/GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2108,'N','N','Y',2108,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0010','H','',0,0,'','','SM004B - Open reduction (1 jaw) and fixing of plates / wire ? under LA/GA Cost of implant Titanium:- TBF at pre-auth','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12000,NULL,'',2109,'N','N','Y',2109,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0011','H','',0,0,'','','SM005A - Enucleation / excision  of cyst / tumour of jaws under LA?+cost of implant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2700,NULL,'',2110,'N','N','Y',2110,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0012','H','',0,0,'','','SM005B - Enucleation / excision  of cyst / tumour of jaws under GA?','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5500,NULL,'',2111,'N','N','Y',2111,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0013','H','',0,0,'','','SM006A - Maxilla / Mandible neoplastic Tumour Resection and reconstruction  (Cancer surgery)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13500,NULL,'',2112,'N','N','Y',2112,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0014','H','',0,0,'','','SM007A - 1.Release of fibrous bands & grafting - in (OSMF) treatment under LA: 5000','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3300,NULL,'',2113,'N','N','Y',2113,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0015','H','',0,0,'','','SM007B - 2. Release of fibrous release bands & coronoidectomy with grafting - in (OSMF) treatment under GA?','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',2114,'N','N','Y',2114,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0016','H','',0,0,'','','SM008A - Apicoectomy (A) (1-3 teeth) LA/GA3-6:4000','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1500,NULL,'',2115,'N','N','Y',2115,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0017','H','',0,0,'','','SM009A - Correction of oro-antral Fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2116,'N','N','Y',2116,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0018','H','',0,0,'','','SM010A - Intraoral submandibular sialolithotomy LA/ GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2117,'N','N','Y',2117,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0019','H','',0,0,'','','SM010C - Submandibular sialolithotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9000,NULL,'',2118,'N','N','Y',2118,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0020','H','',0,0,'','','SM011A - Dentoalveolar trauma - wiring (dental /trauma wiring- one jaw)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',2119,'N','N','Y',2119,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0021','H','',0,0,'','','SM012A - Extraoral parotid sialolithotomy under GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12000,NULL,'',2120,'N','N','Y',2120,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0022','H','',0,0,'','','SM012B - Intraoral parotid sialolithotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2121,'N','N','Y',2121,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0023','H','',0,0,'','','SM013A - Re-implantation of Avulsed tooth with wiring (1-3 teeth)3-6 :6000','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1700,NULL,'',2122,'N','N','Y',2122,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0024','H','',0,0,'','','SM014A - Osteoradionecrosis of jaws management by excision under LA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6300,NULL,'',2123,'N','N','Y',2123,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0025','H','',0,0,'','','SM014B - 2.Osteoradionecrosis of Jaws management by excision  and / or reconstruction under GA inlcuidng  Implant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',2124,'N','N','Y',2124,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0026','H','',0,0,'','','SMU100 - Unspecified Surgical Package','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2125,'N','N','Y',2125,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0027','H','',0,0,'','','SN035B - Trigeminal Nerve Neurectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31100,NULL,'',2126,'N','N','Y',2126,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0028','H','',0,0,'','','SP009A - Resuturing of Any Wound gapSurgeries','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3800,NULL,'',2127,'N','N','Y',2127,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0029','H','',0,0,'','','SS001A - Cleft Lip and Palate Surgery (per stage)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,21300,NULL,'',2128,'N','N','Y',2128,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SMPM','','SMPM0030','H','',0,0,'','','ST002A - Head injury with repair of Facio-Maxillary Injury & fixations (including implants)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38800,NULL,'',2129,'N','N','Y',2129,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0001','H','',0,0,'','','SB068A - Nerve root block','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',2130,'N','N','Y',2130,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0002','H','',0,0,'','','SL029A - Endoscopic CSF Rhinorrhea Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32500,NULL,'',2131,'N','N','Y',2131,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0003','H','',0,0,'','','SL029B - Optic nerve decompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',2132,'N','N','Y',2132,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0004','H','',0,0,'','','SL029C - Orbital decompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',2133,'N','N','Y',2133,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0005','H','',0,0,'','','SL029D - Craniofacial resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',2134,'N','N','Y',2134,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0006','H','',0,0,'','','SL029E - Maxillary swing','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',2135,'N','N','Y',2135,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0007','H','',0,0,'','','SN001A - Surgery for Depressed Skull  fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2136,'N','N','Y',2136,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0008','H','',0,0,'','','SN002A - Cranioplasty with autologus bone graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34400,NULL,'',2137,'N','N','Y',2137,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0009','H','',0,0,'','','SN002B - Cranioplasty with exogenous Graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34400,NULL,'',2138,'N','N','Y',2138,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0010','H','',0,0,'','','SN003A - Twist Drill Craniostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',2139,'N','N','Y',2139,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0011','H','',0,0,'','','SN004A - Cranial vault remodeling/ surgery for Craniosynostosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,47200,NULL,'',2140,'N','N','Y',2140,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0012','H','',0,0,'','','SN005A - Anterior cranial fossa encephalocele/meningocele repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62400,NULL,'',2141,'N','N','Y',2141,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0013','H','',0,0,'','','SN005B - Surgery for spina bifida cystica/occulta','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,46900,NULL,'',2142,'N','N','Y',2142,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0014','H','',0,0,'','','SN005C - Posterior cranial fossa encephalocele/meningocele repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,64500,NULL,'',2143,'N','N','Y',2143,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0015','H','',0,0,'','','SN006A - Surgery for supratentorial Extra-axial Tumours (Meningioma etc)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,64500,NULL,'',2144,'N','N','Y',2144,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0016','H','',0,0,'','','SN006B - Surgery for infratentorial ExtraaxialTumour(meningioma etc)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,64500,NULL,'',2145,'N','N','Y',2145,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0017','H','',0,0,'','','SN007A - Duroplasty with Endogenous graft- (May be perfomed as a add-on procedure)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15700,NULL,'',2146,'N','N','Y',2146,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0018','H','',0,0,'','','SN007B - Duroplasty with Exogenous graft-  (May be perfomed as an add-on procedure) Cost of graft will be extra','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15700,NULL,'',2147,'N','N','Y',2147,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0019','H','',0,0,'','','SN008A - Burr hole surgery for evacuation of hematoma/ biopsy/ pus drainage/Placement of ICP monitoring device','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13800,NULL,'',2148,'N','N','Y',2148,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0020','H','',0,0,'','','SN008B - Burr hole surgery with chronic Sub Dural Haematoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31300,NULL,'',2149,'N','N','Y',2149,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0021','H','',0,0,'','','SN009A - Evacuation of Post-trauamtic  Intraparenchymal Hematoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,70400,NULL,'',2150,'N','N','Y',2150,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0022','H','',0,0,'','','SN009B - Spontaneous Intraparenchymal hematoma evacuation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,64500,NULL,'',2151,'N','N','Y',2151,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0023','H','',0,0,'','','SN009C - Evacuation of Post-trauamtic  Intraparenchymal Hematoma in Pediatric Age group','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,64500,NULL,'',2152,'N','N','Y',2152,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0024','H','',0,0,'','','SN010A - Excision of Brain abscess','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62400,NULL,'',2153,'N','N','Y',2153,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0025','H','',0,0,'','','SN011A - Craniotomy/Burr hole and Tapping of Brain Abscess','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31300,NULL,'',2154,'N','N','Y',2154,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0026','H','',0,0,'','','SN012A - Epilepsy Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,86000,NULL,'',2155,'N','N','Y',2155,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0027','H','',0,0,'','','SN013A - Brain Biopsy- Open/Stereotactic guided','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,21100,NULL,'',2156,'N','N','Y',2156,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0028','H','',0,0,'','','SN014A - Excision of Orbital Tumour','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',2157,'N','N','Y',2157,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0029','H','',0,0,'','','SN015A - Parasagital Tumours','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,64500,NULL,'',2158,'N','N','Y',2158,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0030','H','',0,0,'','','SN015B - Skull Base Tumours','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,64500,NULL,'',2159,'N','N','Y',2159,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0031','H','',0,0,'','','SN015C - Surgerey for infratentorial intra-axial tumours','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,64500,NULL,'',2160,'N','N','Y',2160,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0032','H','',0,0,'','','SN015D - Cerebello-pontine angle Angle','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,64500,NULL,'',2161,'N','N','Y',2161,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0033','H','',0,0,'','','SN015E - Supratentorial & other Tumours','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,70400,NULL,'',2162,'N','N','Y',2162,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0034','H','',0,0,'','','SN016A - Stereotactic Lesioning for movement disoders','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,93800,NULL,'',2163,'N','N','Y',2163,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0035','H','',0,0,'','','SN017A - Endoscpic/Microscopic Trans Sphenoidal Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,64500,NULL,'',2164,'N','N','Y',2164,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0036','H','',0,0,'','','SN018A - Trans oral Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68000,NULL,'',2165,'N','N','Y',2165,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0037','H','',0,0,'','','SN019A - Trans oral anterior decompression and Posterior stabilisation or C V junction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,93000,NULL,'',2166,'N','N','Y',2166,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0038','H','',0,0,'','','SN020A - External Ventricular Drainage (EVD)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,42200,NULL,'',2167,'N','N','Y',2167,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0039','H','',0,0,'','','SN021A - Ventricular Tap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',2168,'N','N','Y',2168,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0040','H','',0,0,'','','SN022A - Ventriculo-Peritoneal Shunt (Low/Medium/High Pressure or Flow regulated valve)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,42200,NULL,'',2169,'N','N','Y',2169,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0041','H','',0,0,'','','SN022B - Ventriculo - pleural Shunt (Low/Medium/High Pressure or Flow regulated valve)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,42200,NULL,'',2170,'N','N','Y',2170,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0042','H','',0,0,'','','SN022C - Ventriculo - atrial Shunt (Low/Medium/High Pressure or Flow regulated valve)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,42200,NULL,'',2171,'N','N','Y',2171,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0043','H','',0,0,'','','SN022D - Theco - peritoneal Shunt (Low/Medium/High Pressure or Flow regulated valve)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,42200,NULL,'',2172,'N','N','Y',2172,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0044','H','',0,0,'','','SN023A - Aneurysm Clipping including DSA or CTA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,86000,NULL,'',2173,'N','N','Y',2173,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0045','H','',0,0,'','','SN024A - Superficial Temporal Artery (STA): middle cerebral artery (MCA) or (other EC - IC) Bypass procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,84400,NULL,'',2174,'N','N','Y',2174,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0046','H','',0,0,'','','SN025A - Craniotmy and excision of arteriovenous malformation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,86000,NULL,'',2175,'N','N','Y',2175,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0047','H','',0,0,'','','SN025B - Laminectomy/Laminotomy and excision of Intraspinal arteriovenous malformation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,86000,NULL,'',2176,'N','N','Y',2176,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0048','H','',0,0,'','','SN025C - Excision of scalp arteriovenous malformation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43000,NULL,'',2177,'N','N','Y',2177,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0049','H','',0,0,'','','SN026A - Foramen magnum decompression for Chiari malormation with or without duraplasty or tonsillar resection.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,93800,NULL,'',2178,'N','N','Y',2178,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0050','H','',0,0,'','','SN027A - Skull Traction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',2179,'N','N','Y',2179,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0051','H','',0,0,'','','SN028A - Posterior cervical laminoforaminotomy and discectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,42200,NULL,'',2180,'N','N','Y',2180,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0052','H','',0,0,'','','SN029A - Posterior cervical fusion using lateral mass or pedicle screws and rods','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,65700,NULL,'',2181,'N','N','Y',2181,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0053','H','',0,0,'','','SN030A - Anterior cervical discectomy without fusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',2182,'N','N','Y',2182,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0054','H','',0,0,'','','SN031A - Excision of Cervical Ribs','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,36000,NULL,'',2183,'N','N','Y',2183,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0055','H','',0,0,'','','SN032A - Cervical/Thoracic/ Lumbar corpectomy with fusion for Tumor/Infection/Trauma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,93800,NULL,'',2184,'N','N','Y',2184,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0056','H','',0,0,'','','SN033A - Microscopic/Endoscopic Lumbar Discectomy (One level)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,42200,NULL,'',2185,'N','N','Y',2185,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0057','H','',0,0,'','','SN034A - Laminectomy without fusion for lumbar or cervical canal stenosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',2186,'N','N','Y',2186,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0058','H','',0,0,'','','SN034B - Laminectomy with fusion and fixation for lumbar/cervical/thoracic canal stenosis or for tumor / trauma/Bleed(Cost of implants to be extra)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68000,NULL,'',2187,'N','N','Y',2187,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0059','H','',0,0,'','','SN035A - Peripheral Neurectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2188,'N','N','Y',2188,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0060','H','',0,0,'','','SN035B - Trigeminal Nerve Neurectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31100,NULL,'',2189,'N','N','Y',2189,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0061','H','',0,0,'','','SN036A - Anterior Cervical Discectomy with fusion (Cost of implants to be extra)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',2190,'N','N','Y',2190,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0062','H','',0,0,'','','SN038B - Spine - Decompression  and Fusion with fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2191,'N','N','Y',2191,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0063','H','',0,0,'','','SN039A - Intraspinal Extradural hematoma evacuation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,42200,NULL,'',2192,'N','N','Y',2192,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0064','H','',0,0,'','','SN041A - Excision of extradural spinal tumor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,54000,NULL,'',2193,'N','N','Y',2193,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0065','H','',0,0,'','','SN041B - Excision of extradural spinal tumor with fusion and fixation (Cost of implants to be extra)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,54000,NULL,'',2194,'N','N','Y',2194,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0066','H','',0,0,'','','SN042A - Excision of Intradural extramedullary tumor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',2195,'N','N','Y',2195,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0067','H','',0,0,'','','SN042B - Excision of Intradural extramedullary tumor with fusion and ficxation (Cost of implants to be extra)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68000,NULL,'',2196,'N','N','Y',2196,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0068','H','',0,0,'','','SN043A - Excision of Intramedullary tumor of spine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,64500,NULL,'',2197,'N','N','Y',2197,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0069','H','',0,0,'','','SN043B - Excision of Intramedullary tumor with fusion and ficxation (Cost of implants to be extra)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,64500,NULL,'',2198,'N','N','Y',2198,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0070','H','',0,0,'','','SN044A - R. F. Lesioning for Trigeminal Neuralgia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2199,'N','N','Y',2199,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0071','H','',0,0,'','','SN045A - Brachial Plexus repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45800,NULL,'',2200,'N','N','Y',2200,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0072','H','',0,0,'','','SN046A - Carpal tunnel release','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',2201,'N','N','Y',2201,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0073','H','',0,0,'','','SN047A - Peripheral nerve repair/Neurolysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,21400,NULL,'',2202,'N','N','Y',2202,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0074','H','',0,0,'','','SN048A - Cranial nerve re-anastomosis/Repair (Facial/)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31300,NULL,'',2203,'N','N','Y',2203,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0075','H','',0,0,'','','SN049B - Peripheral nerve tumor excision and repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,42200,NULL,'',2204,'N','N','Y',2204,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0076','H','',0,0,'','','SN050A - Nerve Biopsy excluding Hansens','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9400,NULL,'',2205,'N','N','Y',2205,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0077','H','',0,0,'','','SN051A - Muscle Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9400,NULL,'',2206,'N','N','Y',2206,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0078','H','',0,0,'','','SN054A - Gamma Knife Radiosurgery for tumors/AVMs/ Trigeminal Neuralgia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,93800,NULL,'',2207,'N','N','Y',2207,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0079','H','',0,0,'','','SN057A - Endoscopic Third ventriculostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45800,NULL,'',2208,'N','N','Y',2208,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0080','H','',0,0,'','','SN059A - Radiofrequency lesioning for sacroilitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10200,NULL,'',2209,'N','N','Y',2209,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0081','H','',0,0,'','','SN059B - Radiofrequency lesioning for chronic back pain','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10200,NULL,'',2210,'N','N','Y',2210,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0082','H','',0,0,'','','SN060A - Discectomy - Dorsal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,42200,NULL,'',2211,'N','N','Y',2211,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0083','H','',0,0,'','','SN061A - Diagnostic Cerebral / Spinal Angiography (DSA - Digital Substraction Angiography)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20800,NULL,'',2212,'N','N','Y',2212,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0084','H','',0,0,'','','SN062A - Reexploration for Cranial / Spinal surgeries','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31300,NULL,'',2213,'N','N','Y',2213,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0085','H','',0,0,'','','SN063A - Conservatively managed spinal injury with ventilator','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2214,'N','N','Y',2214,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0086','H','',0,0,'','','SN063C - Conservatively managed Severe Head injury','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2215,'N','N','Y',2215,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0087','H','',0,0,'','','SN064A - AVM EMBOLISATION/THROMBECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,218800,NULL,'',2216,'N','N','Y',2216,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0088','H','',0,0,'','','SN064GJA - Anterio Lateral Decompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17250,NULL,'',2217,'N','N','Y',2217,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0089','H','',0,0,'','','SN065A - Ventricular tapping with Omayya reservoir/external ventricular drain','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2218,'N','N','Y',2218,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0090','H','',0,0,'','','SN065GJA - Bone flap removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35000,NULL,'',2219,'N','N','Y',2219,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0091','H','',0,0,'','','SN066A - Craniectomy/ DECRA for head injury/acute stroke/cerebral venous thrombosis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,93800,NULL,'',2220,'N','N','Y',2220,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0092','H','',0,0,'','','SN066GJA - Bony tumor of skull','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2221,'N','N','Y',2221,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0093','H','',0,0,'','','SN067GJA - Posterior (Arnold-Chiary Malformation and others)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,70000,NULL,'',2222,'N','N','Y',2222,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0094','H','',0,0,'','','SN068GJA - C.S.F. Rhinorrhoea (Transcranial / Transnasal)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',2223,'N','N','Y',2223,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0095','H','',0,0,'','','SN069GJA - With stent','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',2224,'N','N','Y',2224,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0096','H','',0,0,'','','SN069GJB - Without stent','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2225,'N','N','Y',2225,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0097','H','',0,0,'','','SN070GJA - For CCF','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',2226,'N','N','Y',2226,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0098','H','',0,0,'','','SN070GJB - For Giant Aneurysm','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',2227,'N','N','Y',2227,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0099','H','',0,0,'','','SN071GJA - Anterior','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',2228,'N','N','Y',2228,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0100','H','',0,0,'','','SN071GJB - Posterior - Level one','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2229,'N','N','Y',2229,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0101','H','',0,0,'','','SN071GJC - Posterior - Level three','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,70000,NULL,'',2230,'N','N','Y',2230,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0102','H','',0,0,'','','SN071GJD - Posterior - Level two','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',2231,'N','N','Y',2231,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0103','H','',0,0,'','','SN071GJE - Posterior - Level four','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,80000,NULL,'',2232,'N','N','Y',2232,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0104','H','',0,0,'','','SN072GJA - Cranio-facial resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,90000,NULL,'',2233,'N','N','Y',2233,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0105','H','',0,0,'','','SN073GJA - Extradural','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,51520,NULL,'',2234,'N','N','Y',2234,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0106','H','',0,0,'','','SN074GJA - For Infarct / Lesion with mass effect on brain','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,70000,NULL,'',2235,'N','N','Y',2235,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0107','H','',0,0,'','','SN075GJA - Global (Anterior  and Posterior combine)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,90000,NULL,'',2236,'N','N','Y',2236,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0108','H','',0,0,'','','SN075GJB - Posterior  Level three','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,70000,NULL,'',2237,'N','N','Y',2237,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0109','H','',0,0,'','','SN075GJC - Posterior  Level two','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',2238,'N','N','Y',2238,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0110','H','',0,0,'','','SN075GJD - Posterior  Level four','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,80000,NULL,'',2239,'N','N','Y',2239,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0111','H','',0,0,'','','SN076GJA - Endoscopic Spine Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2240,'N','N','Y',2240,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0112','H','',0,0,'','','SN076GJB - Tumor Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',2241,'N','N','Y',2241,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0113','H','',0,0,'','','SN076GJC - Cyst Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',2242,'N','N','Y',2242,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0114','H','',0,0,'','','SN076GJD - Diagnostic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',2243,'N','N','Y',2243,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0115','H','',0,0,'','','SN076GJE - Third Ventriculostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45000,NULL,'',2244,'N','N','Y',2244,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0116','H','',0,0,'','','SN076GJF - Aqueductoplasty with implant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',2245,'N','N','Y',2245,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0117','H','',0,0,'','','SN076GJG - Aqueductoplasty without implant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2246,'N','N','Y',2246,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0118','H','',0,0,'','','SN077GJA - ATL / AH for MTS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,70000,NULL,'',2247,'N','N','Y',2247,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0119','H','',0,0,'','','SN077GJB - Lesionectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',2248,'N','N','Y',2248,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0120','H','',0,0,'','','SN078GJA - Excision of Brain Tumors ? Infratentorial','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,110000,NULL,'',2249,'N','N','Y',2249,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0121','H','',0,0,'','','SN079GJA - Infratentorial tumor with spinal extension','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,100000,NULL,'',2250,'N','N','Y',2250,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0122','H','',0,0,'','','SN080GJA - Intervention with coiling / embolisation procedures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,85000,NULL,'',2251,'N','N','Y',2251,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0123','H','',0,0,'','','SN081GJA - Laminectomy-Cervical/dorsal/lumbar','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34270,NULL,'',2252,'N','N','Y',2252,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0124','H','',0,0,'','','SN082GJA - Cervical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2253,'N','N','Y',2253,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0125','H','',0,0,'','','SN082GJB - Dorsal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2254,'N','N','Y',2254,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0126','H','',0,0,'','','SN082GJC - Lumber','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2255,'N','N','Y',2255,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0127','H','',0,0,'','','SN083GJA - Meningo Encephalocele','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34270,NULL,'',2256,'N','N','Y',2256,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0128','H','',0,0,'','','SN084GJA - MVD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45000,NULL,'',2257,'N','N','Y',2257,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0129','H','',0,0,'','','SN085GJA - Posterior Fixation Alone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,65000,NULL,'',2258,'N','N','Y',2258,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0130','H','',0,0,'','','SN086GJA - Reexploration for debridement / CSF Leak / Hematoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2259,'N','N','Y',2259,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0131','H','',0,0,'','','SN087GJA - Skull base surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,69000,NULL,'',2260,'N','N','Y',2260,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0132','H','',0,0,'','','SN088GJA - Spina Bifida Surgery Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20700,NULL,'',2261,'N','N','Y',2261,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0133','H','',0,0,'','','SN089GJA - Spinal Cord Tumours (extramedullary)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34270,NULL,'',2262,'N','N','Y',2262,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0134','H','',0,0,'','','SN090GJA - Spinal Intra Medullary Tumours','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68540,NULL,'',2263,'N','N','Y',2263,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0135','H','',0,0,'','','SN091GJA - Subdural Tapping','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17020,NULL,'',2264,'N','N','Y',2264,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0136','H','',0,0,'','','SN092GJA - Supratentorial tumor with infratentorial tumour extension','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,100000,NULL,'',2265,'N','N','Y',2265,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0137','H','',0,0,'','','SN093GJA - Transpedicular Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2266,'N','N','Y',2266,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0138','H','',0,0,'','','SN094GJA - Supratentorial','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,120000,NULL,'',2267,'N','N','Y',2267,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0139','H','',0,0,'','','SN095GJA - Infratentorial','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,120000,NULL,'',2268,'N','N','Y',2268,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0140','H','',0,0,'','','SN096GJA - Vertebral artery Stenting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',2269,'N','N','Y',2269,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0141','H','',0,0,'','','SNU100 - Unspecified Surgical Package','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2270,'N','N','Y',2270,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0142','H','',0,0,'','','ST001A - Severe','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2271,'N','N','Y',2271,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0143','H','',0,0,'','','ST001B - Depressed Fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2272,'N','N','Y',2272,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0144','H','',0,0,'','','ST002A - Head injury with repair of Facio-Maxillary Injury & fixations (including implants)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38800,NULL,'',2273,'N','N','Y',2273,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0145','H','',0,0,'','','ST003A - Subdural hematoma along with fixation of fracture of single long bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',2274,'N','N','Y',2274,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0146','H','',0,0,'','','ST003B - Extradural hematoma along with fixation of fracture of single long bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',2275,'N','N','Y',2275,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0147','H','',0,0,'','','ST003C - Subdural hematoma along with fixation of fracture of 2 or more long bone.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,93800,NULL,'',2276,'N','N','Y',2276,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0148','H','',0,0,'','','ST003D - Extradural hematoma along with fixation of fracture of 2 or more long bone.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,93800,NULL,'',2277,'N','N','Y',2277,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0149','H','',0,0,'','','ST004A - Management of Chest injury with fixation of Single Long bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',2278,'N','N','Y',2278,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0150','H','',0,0,'','','ST004B - Management of Chest injury with fixation of 2 or more Long bones','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45000,NULL,'',2279,'N','N','Y',2279,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0151','H','',0,0,'','','ST005A - Surgical intervention for Visceral injury and fixation of fracture of single long bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2280,'N','N','Y',2280,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0152','H','',0,0,'','','ST005B - Surgical intervention for Visceral injury and fixation of fracture of 2 or more long bones','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,56300,NULL,'',2281,'N','N','Y',2281,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0153','H','',0,0,'','','ST006A - Internal fixation of Pelviacetabular fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2282,'N','N','Y',2282,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0154','H','',0,0,'','','ST007A - Internal fixation with Flap cover Surgery for wound in compound fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2283,'N','N','Y',2283,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0155','H','',0,0,'','','ST008A - Emergency tendons repair ? Peripheral Nerve repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2284,'N','N','Y',2284,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0156','H','',0,0,'','','ST009A - Nerve and/or tendon injury. A. Wound exploration and closure. B. Nerve repair. C. Tendon repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',2285,'N','N','Y',2285,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0157','H','',0,0,'','','ST009B - Nerve and/or tendon injury. A. Wound exploration and closure. B. Nerve graft. C. Tendon graft/transfer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',2286,'N','N','Y',2286,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0158','H','',0,0,'','','ST009C - Tendon injury repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2287,'N','N','Y',2287,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0159','H','',0,0,'','','ST009D - Tendon graft repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2288,'N','N','Y',2288,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0160','H','',0,0,'','','ST009E - Tendon Transfer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2289,'N','N','Y',2289,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0161','H','',0,0,'','','ST010A - Nerve and/or tendon injury. A. Wound exploration and closure. B. Nerve repair. C. Tendon repair D. Vascular repair/graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',2290,'N','N','Y',2290,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SNPM','','SNPM0162','H','',0,0,'','','ST010B - Plexus injury along with Vascular injury graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',2291,'N','N','Y',2291,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0001','H','',0,0,'','','SC030A - Salpingoophorectomy- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2292,'N','N','Y',2292,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0002','H','',0,0,'','','SC030B - Salpingoophorectomy -Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2293,'N','N','Y',2293,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0003','H','',0,0,'','','SC032A - Class I radical hysterectomy + bilateral salpingoophorectomy + BPLND - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,53600,NULL,'',2294,'N','N','Y',2294,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0004','H','',0,0,'','','SC032B - Class I radical hysterectomy + bilateral salpingoophorectomy + BPLND - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,53600,NULL,'',2295,'N','N','Y',2295,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0005','H','',0,0,'','','SC032C - Class I radical Hysterectomy +/- bilateral salpingoophorectomy - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38500,NULL,'',2296,'N','N','Y',2296,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0006','H','',0,0,'','','SC032D - Class I radical Hysterectomy +/- bilateral salpingoophorectomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38500,NULL,'',2297,'N','N','Y',2297,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0007','H','',0,0,'','','SC032E - Class II radical hysterctomy + BPLND','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,53600,NULL,'',2298,'N','N','Y',2298,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0008','H','',0,0,'','','SC032F - Class III radical hysterctomy + BPLND','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,53600,NULL,'',2299,'N','N','Y',2299,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0009','H','',0,0,'','','SC032G - Hysterectomy + bilateral salpingoophorectomy + omentectomy + peritonectomy and organ resections','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,88100,NULL,'',2300,'N','N','Y',2300,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0010','H','',0,0,'','','SC034A - Vulvectomy + reconstruction procedures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,72500,NULL,'',2301,'N','N','Y',2301,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0011','H','',0,0,'','','SG036A - Closure of Burst Abdomen','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',2302,'N','N','Y',2302,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0012','H','',0,0,'','','SG096A - Lymph Node','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2303,'N','N','Y',2303,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0013','H','',0,0,'','','SG096B - Endometrial Aspiration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2700,NULL,'',2304,'N','N','Y',2304,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0014','H','',0,0,'','','SG096C - Cervix Cancer screening (PAP + Colposcopy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2500,NULL,'',2305,'N','N','Y',2305,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0015','H','',0,0,'','','SG096E - Vulval','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2500,NULL,'',2306,'N','N','Y',2306,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0016','H','',0,0,'','','SO001A - Lap. Salpingo-oophrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',2307,'N','N','Y',2307,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0017','H','',0,0,'','','SO002A - Laparotomy and proceed for Ovarian Cancers. Omentomy with BilateralSalpingo-oophorectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38000,NULL,'',2308,'N','N','Y',2308,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0018','H','',0,0,'','','SO003A - Laparoscopic tubal surgeries(for any indication including ectopic pregnancy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13900,NULL,'',2309,'N','N','Y',2309,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0019','H','',0,0,'','','SO004A - Procedure on Fallopian Tube forestablishing Tubal Patency','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11600,NULL,'',2310,'N','N','Y',2310,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0020','H','',0,0,'','','SO006A - Abdominal Myomectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2311,'N','N','Y',2311,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0021','H','',0,0,'','','SO007A - Hysteroscopic Myomectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12000,NULL,'',2312,'N','N','Y',2312,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0022','H','',0,0,'','','SO009A - Hysteroscopic polypectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10500,NULL,'',2313,'N','N','Y',2313,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0023','H','',0,0,'','','SO010A - Abdominal Hysterectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2314,'N','N','Y',2314,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0024','H','',0,0,'','','SO010B - Abdominal Hysterectomy + Salpingo-oophorectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2315,'N','N','Y',2315,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0025','H','',0,0,'','','SO010C - Non descent vaginal hysterectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2316,'N','N','Y',2316,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0026','H','',0,0,'','','SO010D - Vaginal hysterectomy with anterior and posterior colpoperineorrhaphy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2317,'N','N','Y',2317,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0027','H','',0,0,'','','SO010E - Laparoscopic hysterectomy (TLH)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2318,'N','N','Y',2318,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0028','H','',0,0,'','','SO010F - Laparoscopically assisted vaginal hysterectomy (LAVH)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2319,'N','N','Y',2319,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0029','H','',0,0,'','','SO011A - Caesarean hysterectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2320,'N','N','Y',2320,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0030','H','',0,0,'','','SO012A - Manchester Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2321,'N','N','Y',2321,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0031','H','',0,0,'','','SO013A - Surgeries for Prolapse - Sling Surgeries','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31300,NULL,'',2322,'N','N','Y',2322,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0032','H','',0,0,'','','SO014A - Hysterotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6400,NULL,'',2323,'N','N','Y',2323,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0033','H','',0,0,'','','SO015A - Lap. Surgery for Endometriosis (Other than Hysterectomy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17400,NULL,'',2324,'N','N','Y',2324,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0034','H','',0,0,'','','SO016A - With biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8000,NULL,'',2325,'N','N','Y',2325,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0035','H','',0,0,'','','SO016B - Without biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8000,NULL,'',2326,'N','N','Y',2326,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0036','H','',0,0,'','','SO017A - Hysteroscopic IUCD removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2327,'N','N','Y',2327,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0037','H','',0,0,'','','SO018A - D&C (Dilatation&curretage)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2328,'N','N','Y',2328,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0038','H','',0,0,'','','SO019A - Dilation and Evacuation (D&E)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2329,'N','N','Y',2329,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0039','H','',0,0,'','','SO020A - Pyometra drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2330,'N','N','Y',2330,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0040','H','',0,0,'','','SO021A - Intrauterine transfusions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',2331,'N','N','Y',2331,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0041','H','',0,0,'','','SO022A - Hysteroscopic adhesiolysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8000,NULL,'',2332,'N','N','Y',2332,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0042','H','',0,0,'','','SO023A - Laparoscopic adhesiolysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9800,NULL,'',2333,'N','N','Y',2333,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0043','H','',0,0,'','','SO024A - Trans-vaginal tape','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8000,NULL,'',2334,'N','N','Y',2334,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0044','H','',0,0,'','','SO024B - Trans-obturator tape','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8000,NULL,'',2335,'N','N','Y',2335,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0045','H','',0,0,'','','SO025A - Open- Sacrocolpopexy (Abdominal)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2336,'N','N','Y',2336,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0046','H','',0,0,'','','SO025B - Sacrocolpopexy (Abdominal)- Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2337,'N','N','Y',2337,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0047','H','',0,0,'','','SO026A - LLETZ (including PAP smear and colposcopy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2338,'N','N','Y',2338,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0048','H','',0,0,'','','SO027A - Vaginal Sacrospinus fixation with repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16900,NULL,'',2339,'N','N','Y',2339,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0049','H','',0,0,'','','SO028A - Excision of Vaginal Septum (vaginal route)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24700,NULL,'',2340,'N','N','Y',2340,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0050','H','',0,0,'','','SO029A - Hymenectomy for imperforate hymen','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3400,NULL,'',2341,'N','N','Y',2341,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0051','H','',0,0,'','','SO030A - Anterior & Posterior Colpoperineorrhapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11300,NULL,'',2342,'N','N','Y',2342,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0052','H','',0,0,'','','SO031A - Vaginoplasty (McIndoe procedure)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2343,'N','N','Y',2343,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0053','H','',0,0,'','','SO032A - Vaginal repair for vesico-vaginal fistula (Open)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2344,'N','N','Y',2344,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0054','H','',0,0,'','','SO033A - Rectovaginal fistula repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2345,'N','N','Y',2345,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0055','H','',0,0,'','','SO034A - Vulval Hematoma drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3400,NULL,'',2346,'N','N','Y',2346,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0056','H','',0,0,'','','SO035A - Vulvectomy simple','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2347,'N','N','Y',2347,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0057','H','',0,0,'','','SO036A - Radical Vulvectomy with Inguinal and Pelvic lymph node disection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2348,'N','N','Y',2348,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0058','H','',0,0,'','','SO037A - Abdomino Perineal repair for Mullerian Anomaly','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34700,NULL,'',2349,'N','N','Y',2349,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0059','H','',0,0,'','','SO038A - Colpotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4900,NULL,'',2350,'N','N','Y',2350,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0060','H','',0,0,'','','SO039A - Diagnostic  laparoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12000,NULL,'',2351,'N','N','Y',2351,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0061','H','',0,0,'','','SO040A - Open- Laparotomy for ectopic/ benign disorders','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2352,'N','N','Y',2352,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0062','H','',0,0,'','','SO040B - PID','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2353,'N','N','Y',2353,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0063','H','',0,0,'','','SO041A - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2354,'N','N','Y',2354,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0064','H','',0,0,'','','SO042A - Cystocele - Anterior repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8000,NULL,'',2355,'N','N','Y',2355,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0065','H','',0,0,'','','SO043A - Abdominal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2356,'N','N','Y',2356,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0066','H','',0,0,'','','SO043B - Laparoscopic -Burch','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2357,'N','N','Y',2357,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0067','H','',0,0,'','','SO044A - Electro Cauterisation / Cryo Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5700,NULL,'',2358,'N','N','Y',2358,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0068','H','',0,0,'','','SO045A - EUA for (minor girls / unmarried sexually inactive / victims of sexual abuse)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2700,NULL,'',2359,'N','N','Y',2359,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0069','H','',0,0,'','','SO046A - Hospitalisation for Antenatal Complications','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2360,'N','N','Y',2360,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0070','H','',0,0,'','','SO047A - Amniocentesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2361,'N','N','Y',2361,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0071','H','',0,0,'','','SO048A - Chorionic villus sampling','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2362,'N','N','Y',2362,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0072','H','',0,0,'','','SO049A - Cordocentesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',2363,'N','N','Y',2363,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0073','H','',0,0,'','','SO050A - McDonalds stitch','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8000,NULL,'',2364,'N','N','Y',2364,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0074','H','',0,0,'','','SO051A - Shirodkars stitch','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4500,NULL,'',2365,'N','N','Y',2365,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0075','H','',0,0,'','','SO052A - Medical management of ectopic pregnancy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2366,'N','N','Y',2366,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0076','H','',0,0,'','','SO053A - MTP upto 8 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2367,'N','N','Y',2367,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0077','H','',0,0,'','','SO053B - MTP 8 to 12 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2368,'N','N','Y',2368,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0078','H','',0,0,'','','SO053C - MTP > 12 weeks','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2369,'N','N','Y',2369,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0079','H','',0,0,'','','SO054A - Pre-mature delivery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11500,NULL,'',2370,'N','N','Y',2370,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0080','H','',0,0,'','','SO054B - Mothers with eclampsia / imminent eclampsia / severe pre-eclampsia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',2371,'N','N','Y',2371,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0081','H','',0,0,'','','SO054C - Major Fetal malformation requiring intervention immediately after birth','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',2372,'N','N','Y',2372,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00');
INSERT INTO `service_master` VALUES (0,0,'SOPM','','SOPM0082','H','',0,0,'','','SO054D - Mothers with severe anaemia (<7 g/dL)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',2373,'N','N','Y',2373,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0083','H','',0,0,'','','SO054E - Other maternal and fetal conditions as per guidelines-eg previous caesarean section, diabetes, severe growth retardation, etc that qualify for high risk delivery.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',2374,'N','N','Y',2374,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0084','H','',0,0,'','','SO054GJF - Pre-mature delivery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11500,NULL,'',2375,'N','N','Y',2375,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0085','H','',0,0,'','','SO055A - Manual removal of placenta','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8500,NULL,'',2376,'N','N','Y',2376,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0086','H','',0,0,'','','SO056A - Secondary suturing of episiotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3000,NULL,'',2377,'N','N','Y',2377,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0087','H','',0,0,'','','SO057A - Caesarean Delivery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12000,NULL,'',2378,'N','N','Y',2378,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0088','H','',0,0,'','','SO058A - Re exploration after Caesarean Section','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',2379,'N','N','Y',2379,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0089','H','',0,0,'','','SO058B - Re exploration after laparotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',2380,'N','N','Y',2380,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0090','H','',0,0,'','','SO059A - Vulvo vaginal/ bartholin cyst/ abscess enucleation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2381,'N','N','Y',2381,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0091','H','',0,0,'','','SO059B - Vulvo vaginal/ bartholin cyst/ abscess drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2382,'N','N','Y',2382,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0092','H','',0,0,'','','SO060A - Hysterrectomy + salpingo opherectomy + omentectomy + BPLND- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2383,'N','N','Y',2383,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0093','H','',0,0,'','','SO061A - Vaginal Myomectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',2384,'N','N','Y',2384,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0094','H','',0,0,'','','SO062A - Cystectomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2385,'N','N','Y',2385,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0095','H','',0,0,'','','SO063A - lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2386,'N','N','Y',2386,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0096','H','',0,0,'','','SO064A - Sterilisation- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2387,'N','N','Y',2387,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0097','H','',0,0,'','','SO064B - Sterilisation- Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',2388,'N','N','Y',2388,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0098','H','',0,0,'','','SO065A - Reversal of Sterilisation/ Tuboplasty (lap/ open)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2389,'N','N','Y',2389,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0099','H','',0,0,'','','SO066A - Diagnostic Hystero - Laparoscopy with/ without Chromopertubation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',2390,'N','N','Y',2390,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0100','H','',0,0,'','','SO067A - Laparotomy for Broad Ligament Hematoma (including internal iliac ligation)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35000,NULL,'',2391,'N','N','Y',2391,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0101','H','',0,0,'','','SO068A - Complete Perineal Tear','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2392,'N','N','Y',2392,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0102','H','',0,0,'','','SO069A - Molar follow up for chemotherapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6000,NULL,'',2393,'N','N','Y',2393,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0103','H','',0,0,'','','SO070A - Resuturing of wounds','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2394,'N','N','Y',2394,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0104','H','',0,0,'','','SO071A - Post coital / Injury Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2395,'N','N','Y',2395,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0105','H','',0,0,'','','SO072A - Cone biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2396,'N','N','Y',2396,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0106','H','',0,0,'','','SO073A - Biopsy- Cervical, Endometrial EA/ ECC; Vulvar; Polypectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2397,'N','N','Y',2397,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0107','H','',0,0,'','','SO074GJA - Normal vaginal delivery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3800,NULL,'',2398,'N','N','Y',2398,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0108','H','',0,0,'','','SO075A - Operative vaginal delivery (Vacuum/ forceps)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',2399,'N','N','Y',2399,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0109','H','',0,0,'','','SO076A - Surgical management of PPH after vaginal delivery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',2400,'N','N','Y',2400,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0110','H','',0,0,'','','SO097GJA - Rupture uterus, closer and repair with tubal ligation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40250,NULL,'',2401,'N','N','Y',2401,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0111','H','',0,0,'','','SO098GJA - Normal delivery\n','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3800,NULL,'',2402,'N','N','Y',2402,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0112','H','',0,0,'','','SOU100 - Unspecified Surgical Package','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2403,'N','N','Y',2403,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0113','H','',0,0,'','','SU029A - Uretero - vaginal fistula repair - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',2404,'N','N','Y',2404,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0114','H','',0,0,'','','SU029B - Uretero - Uterine fistula repair - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',2405,'N','N','Y',2405,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0115','H','',0,0,'','','SU029C - Uretero - vaginal fistula repair - Laparoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',2406,'N','N','Y',2406,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0116','H','',0,0,'','','SU029D - Uretero - Uterine fistula repair - Laparoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',2407,'N','N','Y',2407,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0117','H','',0,0,'','','SU075A - Urethrovaginal fistula repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2408,'N','N','Y',2408,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0118','H','',0,0,'','','SU090A - Radical Retroperitoneal lymph node dissection- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49800,NULL,'',2409,'N','N','Y',2409,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SOPM','','SOPM0119','H','',0,0,'','','SU090B - Radical Retroperitoneal lymph node dissection - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50700,NULL,'',2410,'N','N','Y',2410,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPCG','','SPCG0001','H','',0,0,'','','Coronary Care with Cardiac Monitoring (Room\nRent extra)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',750,750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'SPCG','','SPCG0002','H','',0,0,'','','Compressed air / piped oxygen /per hour','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'SPCG','','SPCG0003','H','',0,0,'','','Ventilator charges (Per day)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',531,531,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'SPCG','','SPCG0004','H','',0,0,'','','Paediatric care for New born  (Per day)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',186,186,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'SPCG','','SPCG0005','H','',0,0,'','','Incubator charges (Per day)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',345,345,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'SPCG','','SPCG0006','H','',0,0,'','','Neonatal ICU charges (Per day)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',391,391,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'SPCG','','SPCG0007','H','',0,0,'','','Resuscitation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',184,184,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'SPCG','','SPCG0008','H','',0,0,'','','Exchange Transfusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',265,265,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'SPCG','','SPCG0009','H','',0,0,'','','Pneupack ventilator in Nursery (Per day)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',575,575,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'SPIS','','SPIS0001','H','',0,0,'','','Ant cervical discectomy & plate fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0002','H','',0,0,'','','Ant cervical discectomy and fusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0003','H','',0,0,'','','Cervical Laminectomy - 2 level','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0004','H','',0,0,'','','Cervical Laminectomy - 3 or more level','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0005','H','',0,0,'','','Cervical Spine Fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0006','H','',0,0,'','','DECOMPRRESSION AND FIXATION OF SPINE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',9,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0007','H','',0,0,'','','Disc replacement C spine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0008','H','',0,0,'','','Disc replacement L spine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0009','H','',0,0,'','','Discectomy (Cervical/ Dorsal/ Micro-II Levels)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0010','H','',0,0,'','','Discectomy + hemilaminectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0011','H','',0,0,'','','Discography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0012','H','',0,0,'','','Dural tear repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0013','H','',0,0,'','','Endoscopic discectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0014','H','',0,0,'','','EPIDURAL LNECTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0015','H','',0,0,'','','Extradural mass removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0016','H','',0,0,'','','Koch\'s spine anterior curettage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0017','H','',0,0,'','','Koch\'s spine anterior curettage & bone grafting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0018','H','',0,0,'','','Laminectomy (Lumbar)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0019','H','',0,0,'','','Laminectomy + foraminotomy bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0020','H','',0,0,'','','Laminectomy + foraminotomy unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0021','H','',0,0,'','','Laminoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0022','H','',0,0,'','','lnterspinus spacer Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0023','H','',0,0,'','','Lumbar Discectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0024','H','',0,0,'','','Lumbar Stenosis - 2 level','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0025','H','',0,0,'','','Lumbar Stenosis - 3 or more level','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0026','H','',0,0,'','','Microdiscectomy one level','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0027','H','',0,0,'','','Microdiscectomy two level','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0028','H','',0,0,'','','Occipito cervico fusion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0029','H','',0,0,'','','Open discectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0030','H','',0,0,'','','PARA SPINAL MUSCLE SOL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0031','H','',0,0,'','','Pedicular screw fixation multiple segment','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0032','H','',0,0,'','','Pedicular screw fixation one segment','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0033','H','',0,0,'','','Post fusion- C Spine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0034','H','',0,0,'','','Removal of implant - Harrington rod','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0035','H','',0,0,'','','Removal of implant - medical Screw/ hartshill','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0036','H','',0,0,'','','Retroperitoneal decompression - Lumbar spine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0037','H','',0,0,'','','Retroperitoneal Decompression & Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0038','H','',0,0,'','','Revision spine surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0039','H','',0,0,'','','Revision spine surgery Ant. Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0040','H','',0,0,'','','Revision spine surgery Post. Fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0041','H','',0,0,'','','Scoliosis Posterior','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0042','H','',0,0,'','','Scoliosis Posterior & Anterior','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0043','H','',0,0,'','','Spinous process osteotomy + LCS decompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0044','H','',0,0,'','','Spondylolisthesis - pedicle screw fixation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0045','H','',0,0,'','','Spondylolisthesis - pedicle screw fixation & bone grafting','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0046','H','',0,0,'','','Thoracic Spine fixation - Anterior','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0047','H','',0,0,'','','TLIF (Cl C2 Fixation+ Two/ Three Level TLIF / Listhesis Grade 4-5)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0048','H','',0,0,'','','Trans pedicular biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0049','H','',0,0,'','','Transthoracic decompression & BG/ cage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPIS','','SPIS0050','H','',0,0,'','','Vertebroplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0001','H','',0,0,'','','SC068A - Myocutaneous flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,65300,NULL,'',2411,'N','N','Y',2411,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0002','H','',0,0,'','','SC068B - Fasciocutaneous flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,65300,NULL,'',2412,'N','N','Y',2412,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0003','H','',0,0,'','','SC073A - Microvascular reconstruction (free flaps)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,72600,NULL,'',2413,'N','N','Y',2413,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0004','H','',0,0,'','','SC074A - Vascular reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,95300,NULL,'',2414,'N','N','Y',2414,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0005','H','',0,0,'','','SG088A - Free Grafts - Wolfe Grafts','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31300,NULL,'',2415,'N','N','Y',2415,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0006','H','',0,0,'','','SL034A - Open reduction and internal fixation of maxilla','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',2416,'N','N','Y',2416,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0007','H','',0,0,'','','SL034B - Open reduction and internal fixation of mandible','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',2417,'N','N','Y',2417,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0008','H','',0,0,'','','SL034C - Open reduction and internal fixation of zygoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14000,NULL,'',2418,'N','N','Y',2418,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0009','H','',0,0,'','','SP001A - Pressure Sore ? Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,42200,NULL,'',2419,'N','N','Y',2419,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0010','H','',0,0,'','','SP002A - Diabetic Foot ? Conservative management','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',2420,'N','N','Y',2420,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0011','H','',0,0,'','','SP003A - Revascularization of limb / digit (single didgit)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,39900,NULL,'',2421,'N','N','Y',2421,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0012','H','',0,0,'','','SP004A - Ear Pinna Reconstruction with costal cartilage / Prosthesis (including the cost of prosthesis / implants)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49300,NULL,'',2422,'N','N','Y',2422,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0013','H','',0,0,'','','SP004B - Ear Pinna Reconstruction with costal cartilage / Prosthesis (including the cost of prosthesis / implants)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,100000,NULL,'',2423,'N','N','Y',2423,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0014','H','',0,0,'','','SP005A - Scalp avulsion reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',2424,'N','N','Y',2424,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0015','H','',0,0,'','','SP006A - Tissue Expander for disfigurement following burns','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',2425,'N','N','Y',2425,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0016','H','',0,0,'','','SP006B - Tissue Expander for disfigurement following trauma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',2426,'N','N','Y',2426,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0017','H','',0,0,'','','SP006C - Tissue Expander for disfigurement following congenital deformity','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',2427,'N','N','Y',2427,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0018','H','',0,0,'','','SP007A - Sclerotherapy under GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31300,NULL,'',2428,'N','N','Y',2428,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0019','H','',0,0,'','','SP007B - Debulking','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2429,'N','N','Y',2429,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0020','H','',0,0,'','','SP007C - Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50400,NULL,'',2430,'N','N','Y',2430,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0021','H','',0,0,'','','SP008A - NPWT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4700,NULL,'',2431,'N','N','Y',2431,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0022','H','',0,0,'','','SP009A - Resuturing of Any Wound gapSurgeries','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3800,NULL,'',2432,'N','N','Y',2432,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0023','H','',0,0,'','','SP009B - Resuturing of Any Wound gapSurgeries','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,56300,NULL,'',2433,'N','N','Y',2433,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0024','H','',0,0,'','','SP009GJA - Reconstructive lower limb surgery following infection, Trauma, Tumors / Malignancy, Developmental including diabetic foot ? SEVERE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48300,NULL,'',2434,'N','N','Y',2434,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0025','H','',0,0,'','','SP009GJB - Ear Reconstruction for Microtia (stage-I)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28750,NULL,'',2435,'N','N','Y',2435,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0026','H','',0,0,'','','SP03B - Revascularization of limb / digit(morethan one digit)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,112500,NULL,'',2436,'N','N','Y',2436,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0027','H','',0,0,'','','SPU100 - Unspecified Surgical Package','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2437,'N','N','Y',2437,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SPPM','','SPPM0028','H','',0,0,'','','SS001A - Cleft Lip and Palate Surgery (per stage)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,21300,NULL,'',2438,'N','N','Y',2438,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0001','H','',0,0,'','','SC018A - Hepatoblastoma Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,85300,NULL,'',2439,'N','N','Y',2439,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0002','H','',0,0,'','','SC021A - Wilms tumors: surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,57000,NULL,'',2440,'N','N','Y',2440,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0003','H','',0,0,'','','SG002A - Operations for Replacement of Oesophagus by Colon','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,61200,NULL,'',2441,'N','N','Y',2441,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0004','H','',0,0,'','','SG004A - Operative Gastrostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2442,'N','N','Y',2442,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0005','H','',0,0,'','','SG008A - Pyloroplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20700,NULL,'',2443,'N','N','Y',2443,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0006','H','',0,0,'','','SG009A - Pyloromyotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2444,'N','N','Y',2444,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0007','H','',0,0,'','','SG011A - CystoJejunostomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22500,NULL,'',2445,'N','N','Y',2445,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0008','H','',0,0,'','','SG011B - CystoJejunostomy - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22500,NULL,'',2446,'N','N','Y',2446,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0009','H','',0,0,'','','SG011C - Cystogastrostomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',2447,'N','N','Y',2447,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0010','H','',0,0,'','','SG011D - Cystogastrostomy - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',2448,'N','N','Y',2448,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0011','H','',0,0,'','','SG013A - Ileostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16500,NULL,'',2449,'N','N','Y',2449,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0012','H','',0,0,'','','SG014A - Congenital Atresia & Stenosis of Small Intestine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2450,'N','N','Y',2450,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0013','H','',0,0,'','','SG015A - Operation for Duplication of Intestine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25400,NULL,'',2451,'N','N','Y',2451,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0014','H','',0,0,'','','SG016B - Excision Meckels Diverticulum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16900,NULL,'',2452,'N','N','Y',2452,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0015','H','',0,0,'','','SG017A - Appendicectomy- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2453,'N','N','Y',2453,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0016','H','',0,0,'','','SG017B - Lap- Appendicectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2454,'N','N','Y',2454,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0017','H','',0,0,'','','SG018A - Appendicular Perforation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2455,'N','N','Y',2455,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0018','H','',0,0,'','','SG019A - Operative drainage of Appendicular Abscess','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',2456,'N','N','Y',2456,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0019','H','',0,0,'','','SG022A - Operative Management of Volvulus of Large Bowel','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',2457,'N','N','Y',2457,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0020','H','',0,0,'','','SG030A - Resection Anastomosis - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26700,NULL,'',2458,'N','N','Y',2458,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0021','H','',0,0,'','','SG030B - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26700,NULL,'',2459,'N','N','Y',2459,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0022','H','',0,0,'','','SG035A - Exploratory Laparotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11800,NULL,'',2460,'N','N','Y',2460,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0023','H','',0,0,'','','SG036A - Closure of Burst Abdomen','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',2461,'N','N','Y',2461,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0024','H','',0,0,'','','SG038A - Operation forAbdominal Hydatid Cyst (Single Organ) - Change in Name','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,21000,NULL,'',2462,'N','N','Y',2462,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0025','H','',0,0,'','','SG039A - Without Exploration of CBD - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31100,NULL,'',2463,'N','N','Y',2463,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0026','H','',0,0,'','','SG039B - With Exploration of CBD - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31100,NULL,'',2464,'N','N','Y',2464,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0027','H','',0,0,'','','SG039C - Without Exploration of CBD - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31100,NULL,'',2465,'N','N','Y',2465,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0028','H','',0,0,'','','SG039D - With Exploration of CBD - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31100,NULL,'',2466,'N','N','Y',2466,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0029','H','',0,0,'','','SG040A - Operative Cholecystostomy-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11300,NULL,'',2467,'N','N','Y',2467,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0030','H','',0,0,'','','SG040B - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,11300,NULL,'',2468,'N','N','Y',2468,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0031','H','',0,0,'','','SG041A - Operation of Choledochal Cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31700,NULL,'',2469,'N','N','Y',2469,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0032','H','',0,0,'','','SG042A - Splenectomy- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35200,NULL,'',2470,'N','N','Y',2470,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0033','H','',0,0,'','','SG042B - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35200,NULL,'',2471,'N','N','Y',2471,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0034','H','',0,0,'','','SG048A - Mesenteric Cyst ? Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20700,NULL,'',2472,'N','N','Y',2472,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0035','H','',0,0,'','','SG050E - Groin Hernia Repair Obturator - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22900,NULL,'',2473,'N','N','Y',2473,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0036','H','',0,0,'','','SG051A - Epigastric','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2474,'N','N','Y',2474,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0037','H','',0,0,'','','SG051B - Umbilical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2475,'N','N','Y',2475,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0038','H','',0,0,'','','SG051C - Paraumbilical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2476,'N','N','Y',2476,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0039','H','',0,0,'','','SG051D - Spigelian','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2477,'N','N','Y',2477,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0040','H','',0,0,'','','SG052A - Repair of Incisional Hernia Lap/Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20300,NULL,'',2478,'N','N','Y',2478,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0041','H','',0,0,'','','SG053A - Hiatus Hernia Repair - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',2479,'N','N','Y',2479,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0042','H','',0,0,'','','SG053B - Hiatus Hernia Repair - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',2480,'N','N','Y',2480,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0043','H','',0,0,'','','SG053C - Fundoplication - Open(+/- Hiatus Hernia repair)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',2481,'N','N','Y',2481,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0044','H','',0,0,'','','SG056A - Operation for Hydrocele (U/L)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',2482,'N','N','Y',2482,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0045','H','',0,0,'','','SG057A - Epididymal Cyst excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5300,NULL,'',2483,'N','N','Y',2483,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0046','H','',0,0,'','','SG057B - Epididymal Nodule excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5300,NULL,'',2484,'N','N','Y',2484,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0047','H','',0,0,'','','SG060A - Inguinal Node (dissection) - U/L','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19800,NULL,'',2485,'N','N','Y',2485,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0048','H','',0,0,'','','SG070A - Hemi thyroidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',2486,'N','N','Y',2486,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0049','H','',0,0,'','','SG070B - Total thyroidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',2487,'N','N','Y',2487,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0050','H','',0,0,'','','SG070C - Total Thyroidectomy with Block Dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43600,NULL,'',2488,'N','N','Y',2488,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0051','H','',0,0,'','','SG071A - Excision of Parathyroid Adenoma/Carcinoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2489,'N','N','Y',2489,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0052','H','',0,0,'','','SG072A - Thymectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',2490,'N','N','Y',2490,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0053','H','',0,0,'','','SG073A - Sympathectomy-Unilateral (U/L)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20700,NULL,'',2491,'N','N','Y',2491,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0054','H','',0,0,'','','SG073B - Sympathectomy-Bilateral (B/L)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35000,NULL,'',2492,'N','N','Y',2492,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0055','H','',0,0,'','','SG077A - Intercostal drainage Only','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5600,NULL,'',2493,'N','N','Y',2493,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0056','H','',0,0,'','','SG078A - Rib Resection & Drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2494,'N','N','Y',2494,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0057','H','',0,0,'','','SG079A - Thoracoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24400,NULL,'',2495,'N','N','Y',2495,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0058','H','',0,0,'','','SG080A - Decortication (Pleurectomy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33000,NULL,'',2496,'N','N','Y',2496,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0059','H','',0,0,'','','SG081A - Thoracoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',2497,'N','N','Y',2497,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0060','H','',0,0,'','','SG081B - Lobectomy-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',2498,'N','N','Y',2498,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0061','H','',0,0,'','','SG082A - Thoracoscopic Segmental Resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,39900,NULL,'',2499,'N','N','Y',2499,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0062','H','',0,0,'','','SG083A - Lung Hydatid Cyst removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26300,NULL,'',2500,'N','N','Y',2500,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0063','H','',0,0,'','','SG084A - Incision & Drainage of Abscess','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2501,'N','N','Y',2501,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0064','H','',0,0,'','','SG090A - Small (< 4% TBSA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',2502,'N','N','Y',2502,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0065','H','',0,0,'','','SG090B - Medium (4 - 8% TBSA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18100,NULL,'',2503,'N','N','Y',2503,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0066','H','',0,0,'','','SG090C - Large (> 8% TBSA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20400,NULL,'',2504,'N','N','Y',2504,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0067','H','',0,0,'','','SG096A - Lymph Node','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2505,'N','N','Y',2505,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0068','H','',0,0,'','','SG096B - Endometrial Aspiration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2700,NULL,'',2506,'N','N','Y',2506,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0069','H','',0,0,'','','SG096C - Cervix Cancer screening (PAP + Colposcopy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2500,NULL,'',2507,'N','N','Y',2507,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0070','H','',0,0,'','','SG096E - Vulval','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2500,NULL,'',2508,'N','N','Y',2508,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0071','H','',0,0,'','','SG098A - Foreign Body Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2509,'N','N','Y',2509,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0072','H','',0,0,'','','SG56B - Operation for Hydrocele (B/L)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',2510,'N','N','Y',2510,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0073','H','',0,0,'','','SL017A - Peritonsillar abscess drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5800,NULL,'',2511,'N','N','Y',2511,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0074','H','',0,0,'','','SL017B - Intraoral calculus removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5800,NULL,'',2512,'N','N','Y',2512,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0075','H','',0,0,'','','SL023A - Rigid laryngoscopy - Diagnostic + / -biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2513,'N','N','Y',2513,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0076','H','',0,0,'','','SL023B - Rigid bronchoscopy -  Diagnostic + /- biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2514,'N','N','Y',2514,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0077','H','',0,0,'','','SL023C - Rigid oesophagoscopy - Diagnostic+ / - biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7000,NULL,'',2515,'N','N','Y',2515,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0078','H','',0,0,'','','SL026A - Tracheostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28000,NULL,'',2516,'N','N','Y',2516,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0079','H','',0,0,'','','SL026B - Tracheotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28000,NULL,'',2517,'N','N','Y',2517,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0080','H','',0,0,'','','SL028A - Deep neck abscess drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16800,NULL,'',2518,'N','N','Y',2518,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0081','H','',0,0,'','','SL028B - Post trauma neck exploration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,21000,NULL,'',2519,'N','N','Y',2519,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0082','H','',0,0,'','','SO002A - Laparotomy and proceed for Ovarian Cancers. Omentomy with BilateralSalpingo-oophorectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38000,NULL,'',2520,'N','N','Y',2520,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0083','H','',0,0,'','','SP009A - Resuturing of Any Wound gapSurgeries','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3800,NULL,'',2521,'N','N','Y',2521,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0084','H','',0,0,'','','SS001A - Cleft Lip and Palate Surgery (per stage)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,21300,NULL,'',2522,'N','N','Y',2522,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0085','H','',0,0,'','','SS002A - Ankyloglossia Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,9000,NULL,'',2523,'N','N','Y',2523,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0086','H','',0,0,'','','SS002B - Ankyloglossia Major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',2524,'N','N','Y',2524,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0087','H','',0,0,'','','SS003A - Anti GERD Surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26800,NULL,'',2525,'N','N','Y',2525,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0088','H','',0,0,'','','SS004A - Gastrostomy + Esophagoscopy + Threading','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27700,NULL,'',2526,'N','N','Y',2526,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0089','H','',0,0,'','','SS005A - Ladds Procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48800,NULL,'',2527,'N','N','Y',2527,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0090','H','',0,0,'','','SS006A - Duplication Cyst Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30800,NULL,'',2528,'N','N','Y',2528,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0091','H','',0,0,'','','SS007A - Non ? Operative Reduction in infants','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28800,NULL,'',2529,'N','N','Y',2529,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0092','H','',0,0,'','','SS007B - Operative in infants','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33800,NULL,'',2530,'N','N','Y',2530,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0093','H','',0,0,'','','SS008A - Myectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32000,NULL,'',2531,'N','N','Y',2531,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0094','H','',0,0,'','','SS008B - Pull Through','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31000,NULL,'',2532,'N','N','Y',2532,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0095','H','',0,0,'','','SS008C - Rectal Biopsy - Punch','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16000,NULL,'',2533,'N','N','Y',2533,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0096','H','',0,0,'','','SS008D - Rectal Biopsy ? Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,16500,NULL,'',2534,'N','N','Y',2534,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0097','H','',0,0,'','','SS008E - Sphinecterotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20700,NULL,'',2535,'N','N','Y',2535,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0098','H','',0,0,'','','SS009A - Rectal Polypectomy - Sigmoiescopic Under GA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14600,NULL,'',2536,'N','N','Y',2536,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0099','H','',0,0,'','','SS010A - Abd - Perineal PSARP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',2537,'N','N','Y',2537,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0100','H','',0,0,'','','SS010B - Anoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28600,NULL,'',2538,'N','N','Y',2538,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0101','H','',0,0,'','','SS010C - Cutback','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2539,'N','N','Y',2539,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0102','H','',0,0,'','','SS010D - PSARP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31500,NULL,'',2540,'N','N','Y',2540,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0103','H','',0,0,'','','SS010E - Redo - Pullthrough','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',2541,'N','N','Y',2541,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0104','H','',0,0,'','','SS010F - Transposition','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26800,NULL,'',2542,'N','N','Y',2542,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0105','H','',0,0,'','','SS011A - Fecal Fistula Closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35400,NULL,'',2543,'N','N','Y',2543,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0106','H','',0,0,'','','SS012A - GI Tumor Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41700,NULL,'',2544,'N','N','Y',2544,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0107','H','',0,0,'','','SS013A - Congenital Diaphragmatic Hernia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50400,NULL,'',2545,'N','N','Y',2545,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0108','H','',0,0,'','','SS014A - Exomphalos','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38500,NULL,'',2546,'N','N','Y',2546,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0109','H','',0,0,'','','SS014B - Gastroschisis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38500,NULL,'',2547,'N','N','Y',2547,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0110','H','',0,0,'','','SS015A - Hernia & Hydrocele','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2548,'N','N','Y',2548,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0111','H','',0,0,'','','SS016A - Retro - Peritoneal Lymphangioma Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',2549,'N','N','Y',2549,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0112','H','',0,0,'','','SS017A - Surgery for Sacrococcygeal Teratoma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30500,NULL,'',2550,'N','N','Y',2550,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0113','H','',0,0,'','','SS018A - Surgery for Congenital Lobar Emphysema','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40500,NULL,'',2551,'N','N','Y',2551,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0114','H','',0,0,'','','SS019A - Bilateral - Palpable + Nonpalpable','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19700,NULL,'',2552,'N','N','Y',2552,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0115','H','',0,0,'','','SS019B - Bilateral Palpable','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19700,NULL,'',2553,'N','N','Y',2553,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0116','H','',0,0,'','','SS019C - Bilateral Non - Palpable','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23800,NULL,'',2554,'N','N','Y',2554,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0117','H','',0,0,'','','SS019D - Unilateral - Palpable','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,19700,NULL,'',2555,'N','N','Y',2555,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0118','H','',0,0,'','','SS019E - Reexploration / Second Stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22500,NULL,'',2556,'N','N','Y',2556,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0119','H','',0,0,'','','SS020A - Excision of accessory auricle','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23800,NULL,'',2557,'N','N','Y',2557,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0120','H','',0,0,'','','SS020GJA - H- type fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2558,'N','N','Y',2558,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0121','H','',0,0,'','','SS021A - Repair of macrostomia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48800,NULL,'',2559,'N','N','Y',2559,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0122','H','',0,0,'','','SS021GJA - 2nd Stage procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25300,NULL,'',2560,'N','N','Y',2560,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0123','H','',0,0,'','','SS022A - Parathyroidectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48800,NULL,'',2561,'N','N','Y',2561,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0124','H','',0,0,'','','SS022GJA - Colostomy, iliostomy / pouchostomy (first stage of male / female ARM, cloaca, pouch colon or hirschsprung diease]','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',2562,'N','N','Y',2562,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0125','H','',0,0,'','','SS022GJB - Low ARM (male  and female)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18400,NULL,'',2563,'N','N','Y',2563,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0126','H','',0,0,'','','SS023A - Dilatation of Stensons duct','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13800,NULL,'',2564,'N','N','Y',2564,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0127','H','',0,0,'','','SS023GJA - Biliary Atresia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,46000,NULL,'',2565,'N','N','Y',2565,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0128','H','',0,0,'','','SS024A - Excision of supernumerary digit','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17500,NULL,'',2566,'N','N','Y',2566,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0129','H','',0,0,'','','SS024GJA - Congenital Lobar Emphysema','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2567,'N','N','Y',2567,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0130','H','',0,0,'','','SS025A - Syndactyly repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43800,NULL,'',2568,'N','N','Y',2568,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0131','H','',0,0,'','','SS025GJA - Duodenal atresia- Kimuras duodenoduodenostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48000,NULL,'',2569,'N','N','Y',2569,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0132','H','',0,0,'','','SS026A - Repair of tongue laceration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17500,NULL,'',2570,'N','N','Y',2570,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0133','H','',0,0,'','','SS026GJA - Empyema Thoracis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2571,'N','N','Y',2571,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0134','H','',0,0,'','','SS027A - Sternomastoid division','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',2572,'N','N','Y',2572,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0135','H','',0,0,'','','SS027GJA - Continent','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2573,'N','N','Y',2573,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0136','H','',0,0,'','','SS027GJB - Incontinent (Epispadias repair + BNR)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,51750,NULL,'',2574,'N','N','Y',2574,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0137','H','',0,0,'','','SS028A - Non-operative management of liver trauma','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2575,'N','N','Y',2575,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0138','H','',0,0,'','','SS028GJA - Exomphalos/gastroschisis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2576,'N','N','Y',2576,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0139','H','',0,0,'','','SS029A - NON-SHUNTS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,56300,NULL,'',2577,'N','N','Y',2577,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0140','H','',0,0,'','','SS029GJA - First stage bladder closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,100625,NULL,'',2578,'N','N','Y',2578,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0141','H','',0,0,'','','SS029GJB - Second stage bladder neck reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',2579,'N','N','Y',2579,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0142','H','',0,0,'','','SS029GJC - Primary or secondary ureterosigmoidostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,86250,NULL,'',2580,'N','N','Y',2580,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0143','H','',0,0,'','','SS029GJD - Total correction - single stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,126500,NULL,'',2581,'N','N','Y',2581,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0144','H','',0,0,'','','SS030A - Separation of twins','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,118800,NULL,'',2582,'N','N','Y',2582,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0145','H','',0,0,'','','SS030GJA - Hirschsprungs Disease- Single Stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',2583,'N','N','Y',2583,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0146','H','',0,0,'','','SS031A - PRIMARY REPAIR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,81300,NULL,'',2584,'N','N','Y',2584,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0147','H','',0,0,'','','SS031GJA - Hydrocephalus in children- Ventriculoperitoneal shunt','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2585,'N','N','Y',2585,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0148','H','',0,0,'','','SS032A - Ladds procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48800,NULL,'',2586,'N','N','Y',2586,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0149','H','',0,0,'','','SS032GJA - Single stage surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34500,NULL,'',2587,'N','N','Y',2587,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0150','H','',0,0,'','','SS032GJB - 1st Stage procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34500,NULL,'',2588,'N','N','Y',2588,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0151','H','',0,0,'','','SS033A - VESICOSTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,51300,NULL,'',2589,'N','N','Y',2589,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0152','H','',0,0,'','','SS033GJA - Intermediate  and High variety Stage 1 colostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',2590,'N','N','Y',2590,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0153','H','',0,0,'','','SS034A - Splenorapphy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38800,NULL,'',2591,'N','N','Y',2591,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0154','H','',0,0,'','','SS034GJA - Intestinal Atresias  and Obstructions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,46000,NULL,'',2592,'N','N','Y',2592,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0155','H','',0,0,'','','SS035A - Esophageal dilatation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2593,'N','N','Y',2593,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0156','H','',0,0,'','','SS035GJA - NEC - operative - Exploratory laparotomy + repair of perforation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48000,NULL,'',2594,'N','N','Y',2594,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0157','H','',0,0,'','','SS036A - Kiidney biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41300,NULL,'',2595,'N','N','Y',2595,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0158','H','',0,0,'','','SS036GJA - Pure atresia - first stage(?o?stomy  and ?G?stomy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23000,NULL,'',2596,'N','N','Y',2596,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0159','H','',0,0,'','','SS036GJB - Pure atresia - second stage (oesaphageal replacement)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,70000,NULL,'',2597,'N','N','Y',2597,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0160','H','',0,0,'','','SS037A - Appendicovesicostomy or Monti procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,53800,NULL,'',2598,'N','N','Y',2598,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0161','H','',0,0,'','','SS037GJA - Posterior urethral valve - stabilization + cystoscopy + puv fulguration  and or vesicostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',2599,'N','N','Y',2599,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0162','H','',0,0,'','','SS038A - Vesicostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35000,NULL,'',2600,'N','N','Y',2600,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0163','H','',0,0,'','','SS038GJA - Pyloric stenoses Ramstedts pyloromyotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,26000,NULL,'',2601,'N','N','Y',2601,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0164','H','',0,0,'','','SS039A - Supra-glotoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33800,NULL,'',2602,'N','N','Y',2602,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0165','H','',0,0,'','','SS039GJA - Retro-Peritoneal Lymphangioma Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2603,'N','N','Y',2603,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0166','H','',0,0,'','','SS040A - Airway reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',2604,'N','N','Y',2604,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0167','H','',0,0,'','','SS040GJA - Second stage- PSARVUP/Abdominoperineal Pull through Definitive surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,60000,NULL,'',2605,'N','N','Y',2605,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0168','H','',0,0,'','','SS041A - Staged airway reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',2606,'N','N','Y',2606,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0169','H','',0,0,'','','SS041GJA - Second stage-Definitive surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,57500,NULL,'',2607,'N','N','Y',2607,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0170','H','',0,0,'','','SS042A - Slide tracheoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',2608,'N','N','Y',2608,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0171','H','',0,0,'','','SS042GJA - Single stage PSARP  female ( Rectovestibular fistula/ anovestibular fistula/ vestibular anus etc)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2609,'N','N','Y',2609,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0172','H','',0,0,'','','SS043GJA - Splenectomy for Thalessemia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35000,NULL,'',2610,'N','N','Y',2610,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0173','H','',0,0,'','','SS044GJA - Stage three colostomy closure/ Ileostomy closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35000,NULL,'',2611,'N','N','Y',2611,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0174','H','',0,0,'','','SS045GJA - Stage two PSARP/Abdominoperineal Pull through','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34500,NULL,'',2612,'N','N','Y',2612,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0175','H','',0,0,'','','SS046GJA - Third stage- Colostomy / ileostomy closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34500,NULL,'',2613,'N','N','Y',2613,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0176','H','',0,0,'','','SS047GJA - Tracheo-oesphageal fistula (type c)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40250,NULL,'',2614,'N','N','Y',2614,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0177','H','',0,0,'','','SS048GJA - Vesicoureteric reflux, megaureter- ureteric reimplantation unilateral/bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2615,'N','N','Y',2615,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0178','H','',0,0,'','','SSU100 - Unspecified Surgical Package','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2616,'N','N','Y',2616,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0179','H','',0,0,'','','SU001A - Adrenalectomy- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,29900,NULL,'',2617,'N','N','Y',2617,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0180','H','',0,0,'','','SU001B - Adrenalectomy -Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,29100,NULL,'',2618,'N','N','Y',2618,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0181','H','',0,0,'','','SU003A - Nephrectomy For Benign pathology - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41100,NULL,'',2619,'N','N','Y',2619,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0182','H','',0,0,'','','SU003B - Nephrectomy -For Benign pathology - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45800,NULL,'',2620,'N','N','Y',2620,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0183','H','',0,0,'','','SU003C - Nephrectomy- Radical (Renal tumor) - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41100,NULL,'',2621,'N','N','Y',2621,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0184','H','',0,0,'','','SU003D - Nephrectomy- Radical (Renal tumor) - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45800,NULL,'',2622,'N','N','Y',2622,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0185','H','',0,0,'','','SU004A - Nephrectomy - Partial or Hemi-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,54500,NULL,'',2623,'N','N','Y',2623,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0186','H','',0,0,'','','SU004B - Nephrectomy - Partial or Hemi- Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,57800,NULL,'',2624,'N','N','Y',2624,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0187','H','',0,0,'','','SU008A - Nephrostomy - Percutaneous ultrasound guided','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',2625,'N','N','Y',2625,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0188','H','',0,0,'','','SU010A - Nephro ureterectomy (Benign)-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41100,NULL,'',2626,'N','N','Y',2626,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0189','H','',0,0,'','','SU010B - Nephro ureterectomy (Benign) - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45800,NULL,'',2627,'N','N','Y',2627,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0190','H','',0,0,'','','SU011A - Nephro ureterectomy with cuff of bladder-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41100,NULL,'',2628,'N','N','Y',2628,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0191','H','',0,0,'','','SU011B - Nephro ureterectomy with cuff of bladder Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45800,NULL,'',2629,'N','N','Y',2629,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0192','H','',0,0,'','','SU018A - Ureterolithotomy -Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28600,NULL,'',2630,'N','N','Y',2630,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0193','H','',0,0,'','','SU018B - Lap.-Ureterolithotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28200,NULL,'',2631,'N','N','Y',2631,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0194','H','',0,0,'','','SU021A - Pyeloplasty - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38700,NULL,'',2632,'N','N','Y',2632,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0195','H','',0,0,'','','SU021B - Pyeloplasty - Laparoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43400,NULL,'',2633,'N','N','Y',2633,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0196','H','',0,0,'','','SU021C - Pyeloureterostomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38700,NULL,'',2634,'N','N','Y',2634,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0197','H','',0,0,'','','SU021D - Pyeloureterostomy - Laparoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43400,NULL,'',2635,'N','N','Y',2635,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0198','H','',0,0,'','','SU021E - Pyelopyelostomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38700,NULL,'',2636,'N','N','Y',2636,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0199','H','',0,0,'','','SU021F - Pyelopyelostomy - Laparoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43400,NULL,'',2637,'N','N','Y',2637,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0200','H','',0,0,'','','SU023A - Ureterocalycostomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,39900,NULL,'',2638,'N','N','Y',2638,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0201','H','',0,0,'','','SU023B - Ureterocalycostomy - Laparoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44600,NULL,'',2639,'N','N','Y',2639,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0202','H','',0,0,'','','SU024A - Pyelolithotomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2640,'N','N','Y',2640,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0203','H','',0,0,'','','SU024B - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2641,'N','N','Y',2641,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0204','H','',0,0,'','','SU027A - Ureterostomy (Cutaneous)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25400,NULL,'',2642,'N','N','Y',2642,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0205','H','',0,0,'','','SU028A - Uretero-ureterostomy- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2643,'N','N','Y',2643,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0206','H','',0,0,'','','SU028B - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,42200,NULL,'',2644,'N','N','Y',2644,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0207','H','',0,0,'','','SU030A - Ureteric reimplantation - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',2645,'N','N','Y',2645,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0208','H','',0,0,'','','SU030B - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',2646,'N','N','Y',2646,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0209','H','',0,0,'','','SU033A - DJ stenting including cystoscopy, ureteric catheterization, retrograde pyelogram','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12600,NULL,'',2647,'N','N','Y',2647,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0210','H','',0,0,'','','SU037A - Acute management of upper urinary tract trauma ? conservative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2648,'N','N','Y',2648,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0211','H','',0,0,'','','SU040A - Open - including cystoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24900,NULL,'',2649,'N','N','Y',2649,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0212','H','',0,0,'','','SU041A - Cystolithotripsy endoscopic, including cystoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24900,NULL,'',2650,'N','N','Y',2650,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0213','H','',0,0,'','','SU041B - Urethral Stone removal endoscopic, including cystoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24900,NULL,'',2651,'N','N','Y',2651,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0214','H','',0,0,'','','SU042A - Diagnostic Cystoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6500,NULL,'',2652,'N','N','Y',2652,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0215','H','',0,0,'','','SU043A - Partial Cystectomy- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32800,NULL,'',2653,'N','N','Y',2653,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0216','H','',0,0,'','','SU043B - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',2654,'N','N','Y',2654,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0217','H','',0,0,'','','SU045A - Augmentation cystoplasty - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,39900,NULL,'',2655,'N','N','Y',2655,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0218','H','',0,0,'','','SU045B - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44600,NULL,'',2656,'N','N','Y',2656,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0219','H','',0,0,'','','SU048A - Open bladder diverticulectomy with / without ureteric re-implantation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',2657,'N','N','Y',2657,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0220','H','',0,0,'','','SU049A - Bladder injury repair (with or without urethral injury)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',2658,'N','N','Y',2658,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0221','H','',0,0,'','','SU050A - Bladder injury repair with colostomy (with or without urethral injury)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,36400,NULL,'',2659,'N','N','Y',2659,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0222','H','',0,0,'','','SU051A - Extrophy Bladder repair including osteotomy if needed + epispadias repair + ureteric reimplant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,112500,NULL,'',2660,'N','N','Y',2660,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0223','H','',0,0,'','','SU052A - Neurogenic bladder - Package for evaluation / investigation (catheter + ultrasound + culture + RGU/ MCU) for 1 month (medicines - antibiotics)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20500,NULL,'',2661,'N','N','Y',2661,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0224','H','',0,0,'','','SU061A - Suprapubic Drainage - Closed / Trocar','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6400,NULL,'',2662,'N','N','Y',2662,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0225','H','',0,0,'','','SU064A - Emergency management of Acute retention of Urine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2663,'N','N','Y',2663,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0226','H','',0,0,'','','SU065A - Meatotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5200,NULL,'',2664,'N','N','Y',2664,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0227','H','',0,0,'','','SU065B - Meatoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5900,NULL,'',2665,'N','N','Y',2665,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0228','H','',0,0,'','','SU066A - Urethroplasty - End to end','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2666,'N','N','Y',2666,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0229','H','',0,0,'','','SU066B - Urethroplasty - Substitution - single stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2667,'N','N','Y',2667,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0230','H','',0,0,'','','SU066C - Urethroplasty - Substitution - two stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',2668,'N','N','Y',2668,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0231','H','',0,0,'','','SU066D - Urethroplasty - Transpubic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43200,NULL,'',2669,'N','N','Y',2669,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0232','H','',0,0,'','','SU068A - Non endocopic as an independent procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3200,NULL,'',2670,'N','N','Y',2670,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0233','H','',0,0,'','','SU068B - Endocopic as an independent procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7100,NULL,'',2671,'N','N','Y',2671,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0234','H','',0,0,'','','SU069A - Perineal Urethrostomy without closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25400,NULL,'',2672,'N','N','Y',2672,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0235','H','',0,0,'','','SU070A - Post. Urethral Valve fulguration(to be checked from pead surgery)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2673,'N','N','Y',2673,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0236','H','',0,0,'','','SU071A - Single stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2674,'N','N','Y',2674,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0237','H','',0,0,'','','SU071B - Two or more stage (First Stage)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20400,NULL,'',2675,'N','N','Y',2675,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0238','H','',0,0,'','','SU071D - Two or more stage (Final Stage)/Fistula repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2676,'N','N','Y',2676,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0239','H','',0,0,'','','SU073A - Emergency management of Hematuria(per  day) LOS-5','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2677,'N','N','Y',2677,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0240','H','',0,0,'','','SU075A - Urethrovaginal fistula repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2678,'N','N','Y',2678,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0241','H','',0,0,'','','SU076A - Urethrorectal fistula repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',2679,'N','N','Y',2679,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0242','H','',0,0,'','','SU086A - High inguinal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2680,'N','N','Y',2680,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0243','H','',0,0,'','','SU088A - Orchiopexy with laparoscopyto be cross checked with pead surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2681,'N','N','Y',2681,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0244','H','',0,0,'','','SU088B - Orchiopexy without laparoscopy - U/L','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20700,NULL,'',2682,'N','N','Y',2682,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0245','H','',0,0,'','','SU088C - Orchiopexy without laparoscopy - B/L','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20700,NULL,'',2683,'N','N','Y',2683,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SSPM','','SSPM0246','H','',0,0,'','','SU094A - Emergency management of Ureteric stone - Package for evaluation / investigation (ultrasound + culture) for 3 weeks (medicines).','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2700,NULL,'',2684,'N','N','Y',2684,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0001','H','',0,0,'','','SN063B - Moderate head injury','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2685,'N','N','Y',2685,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0002','H','',0,0,'','','SN063D - Simple head injury','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2686,'N','N','Y',2686,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0003','H','',0,0,'','','SN087GJA - Skull base surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,69000,NULL,'',2687,'N','N','Y',2687,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0004','H','',0,0,'','','ST001A - Severe','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1000,NULL,'',2688,'N','N','Y',2688,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0005','H','',0,0,'','','ST001B - Depressed Fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',2689,'N','N','Y',2689,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0006','H','',0,0,'','','ST002A - Head injury with repair of Facio-Maxillary Injury & fixations (including implants)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38800,NULL,'',2690,'N','N','Y',2690,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0007','H','',0,0,'','','ST003A - Subdural hematoma along with fixation of fracture of single long bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',2691,'N','N','Y',2691,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0008','H','',0,0,'','','ST003B - Extradural hematoma along with fixation of fracture of single long bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',2692,'N','N','Y',2692,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0009','H','',0,0,'','','ST003C - Subdural hematoma along with fixation of fracture of 2 or more long bone.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,93800,NULL,'',2693,'N','N','Y',2693,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0010','H','',0,0,'','','ST003D - Extradural hematoma along with fixation of fracture of 2 or more long bone.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,93800,NULL,'',2694,'N','N','Y',2694,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0011','H','',0,0,'','','ST004A - Management of Chest injury with fixation of Single Long bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',2695,'N','N','Y',2695,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0012','H','',0,0,'','','ST004B - Management of Chest injury with fixation of 2 or more Long bones','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45000,NULL,'',2696,'N','N','Y',2696,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0013','H','',0,0,'','','ST005A - Surgical intervention for Visceral injury and fixation of fracture of single long bone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2697,'N','N','Y',2697,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0014','H','',0,0,'','','ST005B - Surgical intervention for Visceral injury and fixation of fracture of 2 or more long bones','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,56300,NULL,'',2698,'N','N','Y',2698,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0015','H','',0,0,'','','ST006A - Internal fixation of Pelviacetabular fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2699,'N','N','Y',2699,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0016','H','',0,0,'','','ST007A - Internal fixation with Flap cover Surgery for wound in compound fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2700,'N','N','Y',2700,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0017','H','',0,0,'','','ST008A - Emergency tendons repair ? Peripheral Nerve repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2701,'N','N','Y',2701,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0018','H','',0,0,'','','ST009A - Nerve and/or tendon injury. A. Wound exploration and closure. B. Nerve repair. C. Tendon repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',2702,'N','N','Y',2702,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0019','H','',0,0,'','','ST009B - Nerve and/or tendon injury. A. Wound exploration and closure. B. Nerve graft. C. Tendon graft/transfer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',2703,'N','N','Y',2703,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0020','H','',0,0,'','','ST009C - Tendon injury repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2704,'N','N','Y',2704,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0021','H','',0,0,'','','ST009D - Tendon graft repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2705,'N','N','Y',2705,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0022','H','',0,0,'','','ST009E - Tendon Transfer','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2706,'N','N','Y',2706,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0023','H','',0,0,'','','ST010A - Nerve and/or tendon injury. A. Wound exploration and closure. B. Nerve repair. C. Tendon repair D. Vascular repair/graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',2707,'N','N','Y',2707,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0024','H','',0,0,'','','ST010B - Plexus injury along with Vascular injury graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',2708,'N','N','Y',2708,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0025','H','',0,0,'','','ST011GJA - Large bones','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2709,'N','N','Y',2709,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0026','H','',0,0,'','','ST012GJA - Small bones','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2710,'N','N','Y',2710,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0027','H','',0,0,'','','ST013GJA - Flap cover Surgery for wound in compound fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23000,NULL,'',2711,'N','N','Y',2711,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0028','H','',0,0,'','','ST014GJA - Internal fixation with Flap cover Surgery for wound in compound fracture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2712,'N','N','Y',2712,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0029','H','',0,0,'','','ST015GJA - Nerve  and Tendon Repair  and / Vascular Repair (Grade-I and II)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14950,NULL,'',2713,'N','N','Y',2713,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0030','H','',0,0,'','','ST016GJA - Operation for injury of bladder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32200,NULL,'',2714,'N','N','Y',2714,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0031','H','',0,0,'','','ST017GJA - Prepatellar bursa and repair of MCL of knee ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,57500,NULL,'',2715,'N','N','Y',2715,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0032','H','',0,0,'','','ST018GJA - Rupture uterus, closure and repair with tubal ligation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40250,NULL,'',2716,'N','N','Y',2716,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0033','H','',0,0,'','','ST019GJA - Shoulder Jacket','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2717,'N','N','Y',2717,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0034','H','',0,0,'','','ST020GJA - Surgical Correction of Pelvic bone fractures.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2718,'N','N','Y',2718,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0035','H','',0,0,'','','ST021GJA - Uretheral injury','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28750,NULL,'',2719,'N','N','Y',2719,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0036','H','',0,0,'','','ST022GJA - Uretheral reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34500,NULL,'',2720,'N','N','Y',2720,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0037','H','',0,0,'','','ST023GJA - Along with fixation of fracture of 2 or more long bones.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45000,NULL,'',2721,'N','N','Y',2721,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0038','H','',0,0,'','','ST023GJB - Along with fixation of fracture of single long bone.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',2722,'N','N','Y',2722,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0039','H','',0,0,'','','ST024GJA - Wound management for compound fracture  (Any grade)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',2723,'N','N','Y',2723,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'STPM','','STPM0040','H','',0,0,'','','STU100 - Unspecified Surgical Package','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2724,'N','N','Y',2724,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0001','H','',0,0,'','','MG0100A - Chronic PD catheter Insertion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4100,NULL,'',2725,'N','N','Y',2725,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0002','H','',0,0,'','','MG044A - Renal colic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2726,'N','N','Y',2726,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0003','H','',0,0,'','','MG045A - AKI / Renal failure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2727,'N','N','Y',2727,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0004','H','',0,0,'','','MG072B - Peritoneal Dialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,700,NULL,'',2728,'N','N','Y',2728,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0005','H','',0,0,'','','MG072C - Acute Haemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2200,NULL,'',2729,'N','N','Y',2729,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0006','H','',0,0,'','','MG072D - Chronic Haemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,22000,NULL,'',2730,'N','N','Y',2730,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0007','H','',0,0,'','','MG077A - Initiation cost for disposable','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33000,NULL,'',2731,'N','N','Y',2731,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0008','H','',0,0,'','','MG088GJA - Permanent tunnelled catheter placement as substitute for AV fistula in long term dialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',2732,'N','N','Y',2732,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0009','H','',0,0,'','','MG090GJA - Radiocephalic AV fistula for Hemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6440,NULL,'',2733,'N','N','Y',2733,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0010','H','',0,0,'','','MG091GJA - Brachiocephalic AV fistula for Hemodialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8280,NULL,'',2734,'N','N','Y',2734,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0011','H','',0,0,'','','PM039A - Palliative care end stage disease','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2735,'N','N','Y',2735,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0012','H','',0,0,'','','SC023A - Distal ureterectomy with reimplantation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44500,NULL,'',2736,'N','N','Y',2736,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0013','H','',0,0,'','','SC024A - Radical cystectomy With continent diversion - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,125100,NULL,'',2737,'N','N','Y',2737,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0014','H','',0,0,'','','SC024B - Radical cystectomy With Ileal Conduit - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,162200,NULL,'',2738,'N','N','Y',2738,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0015','H','',0,0,'','','SC024C - Radical cystectomy- With Ileal Conduit - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,162200,NULL,'',2739,'N','N','Y',2739,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0016','H','',0,0,'','','SC024D - Radical cystectomy- With neobladder - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,185700,NULL,'',2740,'N','N','Y',2740,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0017','H','',0,0,'','','SC024E - With neobladder - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,185700,NULL,'',2741,'N','N','Y',2741,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0018','H','',0,0,'','','SC024F - Radical cystectomy - With ureterosigmoidostomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,144700,NULL,'',2742,'N','N','Y',2742,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0019','H','',0,0,'','','SC024G - With ureterosigmoidostomy - Lap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,97100,NULL,'',2743,'N','N','Y',2743,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0020','H','',0,0,'','','SC024GJK - Open with mainz 2 pouch - Radical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,57500,NULL,'',2744,'N','N','Y',2744,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0021','H','',0,0,'','','SC024GJL - Radical with Neobladder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,80500,NULL,'',2745,'N','N','Y',2745,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0022','H','',0,0,'','','SC024H - Radical cystectomy - With ureterostomy -Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,96800,NULL,'',2746,'N','N','Y',2746,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0023','H','',0,0,'','','SC024I - Radical cystectomy-With ureterostomy -Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,96800,NULL,'',2747,'N','N','Y',2747,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0024','H','',0,0,'','','SC026A - Radical Urethrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,48600,NULL,'',2748,'N','N','Y',2748,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0025','H','',0,0,'','','SC027A - Penile preserving surgery (WLE, Glansectomy, Laser)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,36100,NULL,'',2749,'N','N','Y',2749,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0026','H','',0,0,'','','SC092GJA - Other Cystectomies','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2750,'N','N','Y',2750,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0027','H','',0,0,'','','ST016GJA - Operation for injury of bladder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32200,NULL,'',2751,'N','N','Y',2751,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0028','H','',0,0,'','','SU001A - Adrenalectomy- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,29900,NULL,'',2752,'N','N','Y',2752,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0029','H','',0,0,'','','SU001B - Adrenalectomy -Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,29100,NULL,'',2753,'N','N','Y',2753,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0030','H','',0,0,'','','SU001GJC - Adrenalectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45000,NULL,'',2754,'N','N','Y',2754,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0031','H','',0,0,'','','SU003A - Nephrectomy For Benign pathology - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41100,NULL,'',2755,'N','N','Y',2755,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0032','H','',0,0,'','','SU003B - Nephrectomy -For Benign pathology - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45800,NULL,'',2756,'N','N','Y',2756,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0033','H','',0,0,'','','SU003C - Nephrectomy- Radical (Renal tumor) - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41100,NULL,'',2757,'N','N','Y',2757,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0034','H','',0,0,'','','SU003D - Nephrectomy- Radical (Renal tumor) - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45800,NULL,'',2758,'N','N','Y',2758,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0035','H','',0,0,'','','SU004A - Nephrectomy - Partial or Hemi-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,54500,NULL,'',2759,'N','N','Y',2759,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0036','H','',0,0,'','','SU004B - Nephrectomy - Partial or Hemi- Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,57800,NULL,'',2760,'N','N','Y',2760,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0037','H','',0,0,'','','SU004GJC - Partial Nephrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2761,'N','N','Y',2761,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0038','H','',0,0,'','','SU005A - Nephrolithotomy- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38000,NULL,'',2762,'N','N','Y',2762,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0039','H','',0,0,'','','SU005B - Anatrophic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38000,NULL,'',2763,'N','N','Y',2763,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0040','H','',0,0,'','','SU007A - PCNL (Percutaneous Nephrolithotomy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35000,NULL,'',2764,'N','N','Y',2764,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0041','H','',0,0,'','','SU008A - Nephrostomy - Percutaneous ultrasound guided','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',2765,'N','N','Y',2765,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0042','H','',0,0,'','','SU0100A - Torsion of testis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',2766,'N','N','Y',2766,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0043','H','',0,0,'','','SU0101A - Follow up for urological procedures','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1900,NULL,'',2767,'N','N','Y',2767,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0044','H','',0,0,'','','SU010A - Nephro ureterectomy (Benign)-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41100,NULL,'',2768,'N','N','Y',2768,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0045','H','',0,0,'','','SU010B - Nephro ureterectomy (Benign) - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45800,NULL,'',2769,'N','N','Y',2769,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0046','H','',0,0,'','','SU011A - Nephro ureterectomy with cuff of bladder-Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41100,NULL,'',2770,'N','N','Y',2770,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0047','H','',0,0,'','','SU011B - Nephro ureterectomy with cuff of bladder Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,45800,NULL,'',2771,'N','N','Y',2771,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0048','H','',0,0,'','','SU013A - Perinephric Abscess drainage -Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2772,'N','N','Y',2772,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0049','H','',0,0,'','','SU013B - Percutaneous','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',2773,'N','N','Y',2773,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0050','H','',0,0,'','','SU014A - Lower Ureter','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28000,NULL,'',2774,'N','N','Y',2774,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0051','H','',0,0,'','','SU014B - Upper Ureter','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28000,NULL,'',2775,'N','N','Y',2775,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0052','H','',0,0,'','','SU016A - Extracoporeal shock - wave Lithotripsy (ESWL) stone, with or without stent (one side)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2776,'N','N','Y',2776,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0053','H','',0,0,'','','SU018A - Ureterolithotomy -Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28600,NULL,'',2777,'N','N','Y',2777,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0054','H','',0,0,'','','SU018B - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28200,NULL,'',2778,'N','N','Y',2778,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0055','H','',0,0,'','','SU021A - Pyeloplasty - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38700,NULL,'',2779,'N','N','Y',2779,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0056','H','',0,0,'','','SU021B - Pyeloplasty - Laparoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43400,NULL,'',2780,'N','N','Y',2780,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0057','H','',0,0,'','','SU021C - Pyeloureterostomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38700,NULL,'',2781,'N','N','Y',2781,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0058','H','',0,0,'','','SU021D - Pyeloureterostomy - Laparoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43400,NULL,'',2782,'N','N','Y',2782,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0059','H','',0,0,'','','SU021E - Pyelopyelostomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38700,NULL,'',2783,'N','N','Y',2783,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0060','H','',0,0,'','','SU021F - Pyelopyelostomy - Laparoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43400,NULL,'',2784,'N','N','Y',2784,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0061','H','',0,0,'','','SU023A - Ureterocalycostomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,39900,NULL,'',2785,'N','N','Y',2785,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0062','H','',0,0,'','','SU023B - Ureterocalycostomy - Laparoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44600,NULL,'',2786,'N','N','Y',2786,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0063','H','',0,0,'','','SU024A - Pyelolithotomy - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2787,'N','N','Y',2787,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0064','H','',0,0,'','','SU024B - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2788,'N','N','Y',2788,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0065','H','',0,0,'','','SU025A - Internal Ureterotomy including cystoscopy as an independent procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12700,NULL,'',2789,'N','N','Y',2789,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0066','H','',0,0,'','','SU026A - Open - Ureterolysis for retroperitoneal fibrosis(with or without omental wrapping)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2790,'N','N','Y',2790,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0067','H','',0,0,'','','SU026B - Ureterolysis for retroperitoneal fibrosis(with or without omental wrapping- Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,36600,NULL,'',2791,'N','N','Y',2791,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0068','H','',0,0,'','','SU027A - Ureterostomy (Cutaneous)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25400,NULL,'',2792,'N','N','Y',2792,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0069','H','',0,0,'','','SU028A - Uretero-ureterostomy- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2793,'N','N','Y',2793,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0070','H','',0,0,'','','SU028B - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,42200,NULL,'',2794,'N','N','Y',2794,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0071','H','',0,0,'','','SU029A - Uretero - vaginal fistula repair - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',2795,'N','N','Y',2795,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0072','H','',0,0,'','','SU029B - Uretero - Uterine fistula repair - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',2796,'N','N','Y',2796,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0073','H','',0,0,'','','SU029C - Uretero - vaginal fistula repair - Laparoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',2797,'N','N','Y',2797,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0074','H','',0,0,'','','SU029D - Uretero - Uterine fistula repair - Laparoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',2798,'N','N','Y',2798,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0075','H','',0,0,'','','SU030A - Ureteric reimplantation - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',2799,'N','N','Y',2799,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0076','H','',0,0,'','','SU030B - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',2800,'N','N','Y',2800,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0077','H','',0,0,'','','SU031A - Open - Boari flap for ureteric stricture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,39900,NULL,'',2801,'N','N','Y',2801,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0078','H','',0,0,'','','SU031B - Boari flap for ureteric stricture- Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,42200,NULL,'',2802,'N','N','Y',2802,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0079','H','',0,0,'','','SU032A - Ileal replacement for ureteric stricture','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,81300,NULL,'',2803,'N','N','Y',2803,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0080','H','',0,0,'','','SU033A - DJ stenting including cystoscopy, ureteric catheterization, retrograde pyelogram','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12600,NULL,'',2804,'N','N','Y',2804,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0081','H','',0,0,'','','SU034A - DJ Stent Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6600,NULL,'',2805,'N','N','Y',2805,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0082','H','',0,0,'','','SU035A - Ureterocele incision including cystoscopy, ureteric catheterization, retrograde pyelogram','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2806,'N','N','Y',2806,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0083','H','',0,0,'','','SU036A - Ureteric sampling including cystoscopy, ureteric catheterization, retrograde pyelogram','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',2807,'N','N','Y',2807,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0084','H','',0,0,'','','SU037A - Acute management of upper urinary tract trauma ? conservative','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2808,'N','N','Y',2808,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0085','H','',0,0,'','','SU038A - Retrograde with laser / bugbee','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2809,'N','N','Y',2809,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0086','H','',0,0,'','','SU038B - Antegrade with laser / bugbee','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2810,'N','N','Y',2810,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0087','H','',0,0,'','','SU040A - Open - including cystoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24900,NULL,'',2811,'N','N','Y',2811,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0088','H','',0,0,'','','SU041A - Cystolithotripsy endoscopic, including cystoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24900,NULL,'',2812,'N','N','Y',2812,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0089','H','',0,0,'','','SU041B - Urethral Stone removal endoscopic, including cystoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24900,NULL,'',2813,'N','N','Y',2813,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0090','H','',0,0,'','','SU042A - Diagnostic Cystoscopy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6500,NULL,'',2814,'N','N','Y',2814,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0091','H','',0,0,'','','SU043A - Partial Cystectomy- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32800,NULL,'',2815,'N','N','Y',2815,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0092','H','',0,0,'','','SU043B - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',2816,'N','N','Y',2816,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0093','H','',0,0,'','','SU045A - Augmentation cystoplasty - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,39900,NULL,'',2817,'N','N','Y',2817,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0094','H','',0,0,'','','SU045B - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,44600,NULL,'',2818,'N','N','Y',2818,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0095','H','',0,0,'','','SU046A - Deflux for VUR(only procedure charge)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5300,NULL,'',2819,'N','N','Y',2819,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0096','H','',0,0,'','','SU048A - Open bladder diverticulectomy with / without ureteric re-implantation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,32900,NULL,'',2820,'N','N','Y',2820,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0097','H','',0,0,'','','SU049A - Bladder injury repair (with or without urethral injury)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,31900,NULL,'',2821,'N','N','Y',2821,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0098','H','',0,0,'','','SU050A - Bladder injury repair with colostomy (with or without urethral injury)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,36400,NULL,'',2822,'N','N','Y',2822,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0099','H','',0,0,'','','SU051A - Extrophy Bladder repair including osteotomy if needed + epispadias repair + ureteric reimplant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,112500,NULL,'',2823,'N','N','Y',2823,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0100','H','',0,0,'','','SU052A - Neurogenic bladder - Package for evaluation / investigation (catheter + ultrasound + culture + RGU/ MCU) for 1 month (medicines - antibiotics)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20500,NULL,'',2824,'N','N','Y',2824,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0101','H','',0,0,'','','SU054A - Bladder Neck incision - Endoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20700,NULL,'',2825,'N','N','Y',2825,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0102','H','',0,0,'','','SU055A - TURBT (Transurethral Resection of the Bladder Tumor)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,36400,NULL,'',2826,'N','N','Y',2826,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0103','H','',0,0,'','','SU056A - TURBT - Restage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24800,NULL,'',2827,'N','N','Y',2827,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0104','H','',0,0,'','','SU057A - Post TURBT - Check Cystoscopy (Per sitting) with cold-cup biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',2828,'N','N','Y',2828,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0105','H','',0,0,'','','SU058A - Urachal Cyst excision - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27500,NULL,'',2829,'N','N','Y',2829,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0106','H','',0,0,'','','SU058B - Urachal Cyst excision - Laparoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,29800,NULL,'',2830,'N','N','Y',2830,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0107','H','',0,0,'','','SU060A - Induction cycles (PC)Rate per dose -Rs 5000 max no- 06 (including drug)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3200,NULL,'',2831,'N','N','Y',2831,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0108','H','',0,0,'','','SU061A - Suprapubic Drainage - Closed / Trocar','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6400,NULL,'',2832,'N','N','Y',2832,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0109','H','',0,0,'','','SU062A - Stress incontinence surgery - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,29500,NULL,'',2833,'N','N','Y',2833,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0110','H','',0,0,'','','SU064A - Emergency management of Acute retention of Urine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2834,'N','N','Y',2834,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0111','H','',0,0,'','','SU065A - Meatotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5200,NULL,'',2835,'N','N','Y',2835,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0112','H','',0,0,'','','SU065B - Meatoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5900,NULL,'',2836,'N','N','Y',2836,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0113','H','',0,0,'','','SU066A - Urethroplasty - End to end','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2837,'N','N','Y',2837,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0114','H','',0,0,'','','SU066B - Urethroplasty - Substitution - single stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2838,'N','N','Y',2838,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0115','H','',0,0,'','','SU066C - Urethroplasty - Substitution - two stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,75000,NULL,'',2839,'N','N','Y',2839,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0116','H','',0,0,'','','SU066D - Urethroplasty - Transpubic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43200,NULL,'',2840,'N','N','Y',2840,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0117','H','',0,0,'','','SU068A - Non endocopic as an independent procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3200,NULL,'',2841,'N','N','Y',2841,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0118','H','',0,0,'','','SU068B - Endocopic as an independent procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7100,NULL,'',2842,'N','N','Y',2842,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0119','H','',0,0,'','','SU069A - Perineal Urethrostomy without closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25400,NULL,'',2843,'N','N','Y',2843,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0120','H','',0,0,'','','SU070A - Post. Urethral Valve fulguration(to be checked from pead surgery)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2844,'N','N','Y',2844,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0121','H','',0,0,'','','SU071A - Single stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2845,'N','N','Y',2845,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0122','H','',0,0,'','','SU071B - Two or more stage (First Stage)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20400,NULL,'',2846,'N','N','Y',2846,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0123','H','',0,0,'','','SU071D - Two or more stage (Final Stage)/Fistula repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2847,'N','N','Y',2847,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0124','H','',0,0,'','','SU073A - Emergency management of Hematuria(per  day) LOS-5 per day cost','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2700,NULL,'',2848,'N','N','Y',2848,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0125','H','',0,0,'','','SU074A - Excision of Urethral Caruncle','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,7100,NULL,'',2849,'N','N','Y',2849,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0126','H','',0,0,'','','SU075A - Urethrovaginal fistula repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2850,'N','N','Y',2850,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0127','H','',0,0,'','','SU076A - Urethrorectal fistula repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',2851,'N','N','Y',2851,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0128','H','',0,0,'','','SU077A - Open simple prostatetctomy for BPH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37300,NULL,'',2852,'N','N','Y',2852,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0129','H','',0,0,'','','SU078A - Radical prostatectomy-Open  (to be checked with surg onco)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68000,NULL,'',2853,'N','N','Y',2853,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0130','H','',0,0,'','','SU078B - Lap.(to be checked with surg. Onco)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,70400,NULL,'',2854,'N','N','Y',2854,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0131','H','',0,0,'','','SU080A - Monopolar','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38700,NULL,'',2855,'N','N','Y',2855,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0132','H','',0,0,'','','SU080B - Bipolar','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38700,NULL,'',2856,'N','N','Y',2856,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0133','H','',0,0,'','','SU081A - Transrectal Ultrasound guided prostate biopsy (minimum 12 core)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12700,NULL,'',2857,'N','N','Y',2857,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0134','H','',0,0,'','','SU082A - Partial Penectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2858,'N','N','Y',2858,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0135','H','',0,0,'','','SU082B - Total Penectomy + Perineal Urethrostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2859,'N','N','Y',2859,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0136','H','',0,0,'','','SU082GJC - Total Penectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2860,'N','N','Y',2860,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0137','H','',0,0,'','','SU083A - Aspiration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18800,NULL,'',2861,'N','N','Y',2861,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0138','H','',0,0,'','','SU083B - Shunt','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20700,NULL,'',2862,'N','N','Y',2862,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0139','H','',0,0,'','','SU085A - Penile prosthesis insertion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43800,NULL,'',2863,'N','N','Y',2863,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0140','H','',0,0,'','','SU086A - High inguinal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2864,'N','N','Y',2864,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0141','H','',0,0,'','','SU087A - Bilateral Orchidectomy for hormone ablation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,14100,NULL,'',2865,'N','N','Y',2865,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0142','H','',0,0,'','','SU088A - Orchiopexy with laparoscopyto be cross checked with pead surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2866,'N','N','Y',2866,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0143','H','',0,0,'','','SU088B - Orchiopexy without laparoscopy - U/L','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20700,NULL,'',2867,'N','N','Y',2867,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0144','H','',0,0,'','','SU088C - Orchiopexy without laparoscopy - B/L','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20700,NULL,'',2868,'N','N','Y',2868,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0145','H','',0,0,'','','SU089A - Non Microsurgical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',2869,'N','N','Y',2869,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0146','H','',0,0,'','','SU089B - Microsurgical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,15000,NULL,'',2870,'N','N','Y',2870,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0147','H','',0,0,'','','SU090A - Radical Retroperitoneal lymph node dissection- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,49800,NULL,'',2871,'N','N','Y',2871,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0148','H','',0,0,'','','SU090B - Radical Retroperitoneal lymph node dissection - Lap.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50700,NULL,'',2872,'N','N','Y',2872,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0149','H','',0,0,'','','SU091A - Ilio-Inguinal lymphadenectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27500,NULL,'',2873,'N','N','Y',2873,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0150','H','',0,0,'','','SU094A - Emergency management of Ureteric stone - Package for evaluation / investigation (ultrasound + culture) for 3 weeks (medicines).','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2700,NULL,'',2874,'N','N','Y',2874,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0151','H','',0,0,'','','SU095A - Retrograde Intrarenal Surgery with Laser Lithotripsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38000,NULL,'',2875,'N','N','Y',2875,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0152','H','',0,0,'','','SU096B - Repair for VVF -Laparoscopic/open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2876,'N','N','Y',2876,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0153','H','',0,0,'','','SU097A - Permanent tunnelled catheter placement as substitute for AV fistula in long term dialysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',2877,'N','N','Y',2877,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0154','H','',0,0,'','','SU098A - Pelvic lymphadenectomy, after prior cancer surgery- Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2878,'N','N','Y',2878,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0155','H','',0,0,'','','SU098B - Laparoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38000,NULL,'',2879,'N','N','Y',2879,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0156','H','',0,0,'','','SU099A - Botulinum toxin injection for Neuropathic bladder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,12500,NULL,'',2880,'N','N','Y',2880,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0157','H','',0,0,'','','SU099GJA - Package for evaluation / investigation (ultrasound + culture + prostate massage) for 1 month (medicines). Follow up visit once in 3 months','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2500,NULL,'',2881,'N','N','Y',2881,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0158','H','',0,0,'','','SU100GJA - Colostomy  and Suprapubic urinary diversion for pelvix fracture injury','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23000,NULL,'',2882,'N','N','Y',2882,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0159','H','',0,0,'','','SU101GJA - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34500,NULL,'',2883,'N','N','Y',2883,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0160','H','',0,0,'','','SU102GJA - VVF/Uterovaginal Repair - Transvaginal approach','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2884,'N','N','Y',2884,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0161','H','',0,0,'','','SU103GJA - Endoureterotomy (laser/bugbee)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2885,'N','N','Y',2885,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0162','H','',0,0,'','','SU104GJA - Endovascular intervention for salvaging hemodialysis AV fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2886,'N','N','Y',2886,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0163','H','',0,0,'','','SU105GJA - Laparoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40250,NULL,'',2887,'N','N','Y',2887,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0164','H','',0,0,'','','SU105GJB - Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34500,NULL,'',2888,'N','N','Y',2888,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0165','H','',0,0,'','','SU106GJA - Open surgery for Colovesical fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34500,NULL,'',2889,'N','N','Y',2889,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0166','H','',0,0,'','','SU107GJA - Open ureteral reimplantation for ureterovaginal fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34500,NULL,'',2890,'N','N','Y',2890,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0167','H','',0,0,'','','SU108GJA - Simple','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17250,NULL,'',2891,'N','N','Y',2891,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0168','H','',0,0,'','','SU108GJB - Radical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17250,NULL,'',2892,'N','N','Y',2892,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0169','H','',0,0,'','','SU109GJA - With laparoscopy, unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',2893,'N','N','Y',2893,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0170','H','',0,0,'','','SU110GJA - Paraganglioma excision with liver mobilization','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,50000,NULL,'',2894,'N','N','Y',2894,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0171','H','',0,0,'','','SU111GJA - SPC for atony bladder ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2895,'N','N','Y',2895,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0172','H','',0,0,'','','SU112GJA - With slings','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,35000,NULL,'',2896,'N','N','Y',2896,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0173','H','',0,0,'','','SU112GJB - Laparoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',2897,'N','N','Y',2897,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0174','H','',0,0,'','','SU113GJA - Open, as an independent procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',2898,'N','N','Y',2898,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0175','H','',0,0,'','','SU114GJA - Surgery for Urethrorectal fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28750,NULL,'',2899,'N','N','Y',2899,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0176','H','',0,0,'','','SU115GJA - TUR-fulgration (Transurethral fulgration of the Bladder Tumor)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18000,NULL,'',2900,'N','N','Y',2900,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0177','H','',0,0,'','','SU116GJA - TURP/Laser + Hernioplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2901,'N','N','Y',2901,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0178','H','',0,0,'','','SU117GJA - TURP/Laser + Hydrocele surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',2902,'N','N','Y',2902,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0179','H','',0,0,'','','SU118GJA - Urethral injury','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28750,NULL,'',2903,'N','N','Y',2903,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0180','H','',0,0,'','','SU119GJA - Urethral reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34500,NULL,'',2904,'N','N','Y',2904,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0181','H','',0,0,'','','SU120GJA - Second Stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,18000,NULL,'',2905,'N','N','Y',2905,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0182','H','',0,0,'','','SU120GJB - Single stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,25000,NULL,'',2906,'N','N','Y',2906,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0183','H','',0,0,'','','SU121GJA - Laparoscopy surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',2907,'N','N','Y',2907,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0184','H','',0,0,'','','SU121GJB - Open surgery (exploratory)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',2908,'N','N','Y',2908,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0185','H','',0,0,'','','SU122GJA - Laparoscopic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,43700,NULL,'',2909,'N','N','Y',2909,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0186','H','',0,0,'','','SU122GJB - VVF Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23000,NULL,'',2910,'N','N','Y',2910,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SUPM','','SUPM0187','H','',0,0,'','','SUU100 - Unspecified Surgical Package','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',2911,'N','N','Y',2911,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SURG','AC','SURG0001','H','',0,3,'','','ANAESTHESIA CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SURG','','SURG0002','H','',0,0,'','','ANAESTHESIA CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SURG','ATS','SURG0003','H','',0,2,'','','ASST. SURGEON CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SURG','','SURG0004','H','',0,0,'','','CATARACT MICS WITH UNIFOCAL LENS(INCLUDING LENS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SURG','EC','SURG0005','H','',0,9,'','','EMERGENCY CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3245,3245,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SURG','HRS','SURG0006','H','',0,7,'','','High Risk Surgeon Fees','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SURG','OTC','SURG0007','H','',0,4,'','','OPERATION THEATRE CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SURG','OTCM','SURG0008','H','',0,5,'','','OPERATION THEATRE CHARGES MAJOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SURG','OTCN','SURG0009','H','',0,6,'','','OPERATION THEATRE CHARGES MINOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SURG','','SURG0010','H','',0,0,'','','OSTEOTOMY WITH TENDON REATTACHMENT WITH SUTURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,0,NULL,'',9,'Y','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SURG','SPHR','SURG0011','H','',0,8,'','','SERO POSSITIVE HIGH RISK','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SURG','','SURG0012','H','',0,0,'','','SUPERFICIAL TUMOR EXCISION SMALL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2900,2900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SURG','SC','SURG0013','H','',0,1,'','','Surgeon Fees','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'SURG','','SURG0014','H','',0,0,'','','SURGERY CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-10-11 19:47:57','I','N',99,'','','','','vishal','2025-10-11 19:47:57','','0000-00-00 00:00:00'),(0,0,'SURG','','SURG0015','H','',0,0,'','','OT USAGE CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-10-11 19:48:28','I','N',99,'','','','','vishal','2025-10-11 19:48:28','','0000-00-00 00:00:00'),(0,0,'SURG','','SURG0016','H','',0,0,'','','SURGERY CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-10-11 19:49:42','I','N',99,'','','','','vishal','2025-10-11 19:49:42','','0000-00-00 00:00:00'),(0,0,'SURG','','SURG0017','H','',1,0,'','','ASSISTANT SURGEON CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-10-20 11:50:09','I','N',99,'','','','','vishal','2025-10-20 11:49:13','vishal','2025-10-20 11:50:09'),(0,0,'SURG','','SURG0018','H','',1,0,'','','PROCEDURE CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','riya','2025-11-11 16:29:18','I','N',99,'','','','','riya','2025-11-11 13:37:58','riya','2025-11-11 16:29:18'),(0,0,'SVPM','','SVPM0001','H','',0,0,'','','MC014A - Temporary Pacemaker implantation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,24000,NULL,'',2912,'N','N','Y',2912,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0002','H','',0,0,'','','MC015A - Permanent Pacemaker Implantation - Single Chamber','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30700,NULL,'',2913,'N','N','Y',2913,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0003','H','',0,0,'','','MC016A - Permanent Pacemaker Implantation - Double Chamber','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41300,NULL,'',2914,'N','N','Y',2914,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0004','H','',0,0,'','','SC074A - Vascular reconstruction','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,95300,NULL,'',2915,'N','N','Y',2915,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0005','H','',0,0,'','','SG069A - Carotid Body tumour - Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,37500,NULL,'',2916,'N','N','Y',2916,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0006','H','',0,0,'','','SG077A - Intercostal drainage Only','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5600,NULL,'',2917,'N','N','Y',2917,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0007','H','',0,0,'','','SV001A - Unifocalization of MAPCA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,137500,NULL,'',2918,'N','N','Y',2918,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0008','H','',0,0,'','','SV001B - Isolated Secundum Atrial Septal Defect (ASD) Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,137500,NULL,'',2919,'N','N','Y',2919,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0009','H','',0,0,'','','SV001C - Glenn procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,137500,NULL,'',2920,'N','N','Y',2920,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0010','H','',0,0,'','','SV001D - Pulmonary Artery Banding','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,137500,NULL,'',2921,'N','N','Y',2921,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0011','H','',0,0,'','','SV001E - Systemic - Pulmonary Artery shunt','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,137500,NULL,'',2922,'N','N','Y',2922,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0012','H','',0,0,'','','SV001F - Vascular Ring division','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,137500,NULL,'',2923,'N','N','Y',2923,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0013','H','',0,0,'','','SV001G - Coarctation repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,137500,NULL,'',2924,'N','N','Y',2924,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0014','H','',0,0,'','','SV002A - ASD closure + Partial Anomalous Venous Drainage Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,165000,NULL,'',2925,'N','N','Y',2925,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0015','H','',0,0,'','','SV002B - ASD Closure + Mitral procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,165000,NULL,'',2926,'N','N','Y',2926,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0016','H','',0,0,'','','SV002C - ASD Closure + Tricuspid procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,165000,NULL,'',2927,'N','N','Y',2927,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0017','H','',0,0,'','','SV002D - ASD Closure + Pulmonary procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,165000,NULL,'',2928,'N','N','Y',2928,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0018','H','',0,0,'','','SV002E - ASD Closure + Infundibular procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,165000,NULL,'',2929,'N','N','Y',2929,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0019','H','',0,0,'','','SV002F - VSD closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,165000,NULL,'',2930,'N','N','Y',2930,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0020','H','',0,0,'','','SV002G - Infundibular PS repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,165000,NULL,'',2931,'N','N','Y',2931,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0021','H','',0,0,'','','SV002H - Valvular PS / PR repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,165000,NULL,'',2932,'N','N','Y',2932,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0022','H','',0,0,'','','SV002I - Partial AV canal repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,165000,NULL,'',2933,'N','N','Y',2933,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0023','H','',0,0,'','','SV002J - Intermediate AV canal repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,165000,NULL,'',2934,'N','N','Y',2934,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0024','H','',0,0,'','','SV002K - Atrial septectomy + Glenn','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,165000,NULL,'',2935,'N','N','Y',2935,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0025','H','',0,0,'','','SV002L - Atrial septectomy + PA Band','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,165000,NULL,'',2936,'N','N','Y',2936,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0026','H','',0,0,'','','SV002M - Sinus of Valsalva aneurysm repair with aortic valve procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,165000,NULL,'',2937,'N','N','Y',2937,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0027','H','',0,0,'','','SV002N - Sinus of Valsalva aneurysm repair without aortic valve procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,165000,NULL,'',2938,'N','N','Y',2938,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0028','H','',0,0,'','','SV002O - Sub-aortic membrane resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,165000,NULL,'',2939,'N','N','Y',2939,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0029','H','',0,0,'','','SV003A - Ebstien anomoly repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2940,'N','N','Y',2940,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0030','H','',0,0,'','','SV003B - Double switch operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2941,'N','N','Y',2941,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0031','H','',0,0,'','','SV003C - Rastelli Procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2942,'N','N','Y',2942,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0032','H','',0,0,'','','SV003D - Fontan procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2943,'N','N','Y',2943,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0033','H','',0,0,'','','SV003E - AP window repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2944,'N','N','Y',2944,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0034','H','',0,0,'','','SV003F - Arch interruption Repair without VSD closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2945,'N','N','Y',2945,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0035','H','',0,0,'','','SV003G - Arch interruption Repair with VSD closure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2946,'N','N','Y',2946,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0036','H','',0,0,'','','SV003H - DORV Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2947,'N','N','Y',2947,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0037','H','',0,0,'','','SV003I - Supravalvular AS repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2948,'N','N','Y',2948,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0038','H','',0,0,'','','SV003J - Konno procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2949,'N','N','Y',2949,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0039','H','',0,0,'','','SV003K - Norwood procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2950,'N','N','Y',2950,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0040','H','',0,0,'','','SV003L - VSD closure + RV - PA conduit','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2951,'N','N','Y',2951,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0041','H','',0,0,'','','SV003M - VSD + Aortic procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2952,'N','N','Y',2952,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0042','H','',0,0,'','','SV003N - VSD + Mitral procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2953,'N','N','Y',2953,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0043','H','',0,0,'','','SV003O - VSD + Tricuspid procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2954,'N','N','Y',2954,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0044','H','',0,0,'','','SV003P - VSD + Pulmonary artery procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2955,'N','N','Y',2955,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0045','H','',0,0,'','','SV003Q - VSD + Infundibular procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2956,'N','N','Y',2956,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0046','H','',0,0,'','','SV003R - VSD + Coarctation repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2957,'N','N','Y',2957,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0047','H','',0,0,'','','SV003S - TAPVC Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2958,'N','N','Y',2958,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0048','H','',0,0,'','','SV003T - Truncus arteriosus repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2959,'N','N','Y',2959,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0049','H','',0,0,'','','SV003U - Tetralogy of Fallot Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2960,'N','N','Y',2960,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0050','H','',0,0,'','','SV003V - Complete AV canal repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2961,'N','N','Y',2961,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0051','H','',0,0,'','','SV003W - Arterial switch operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2962,'N','N','Y',2962,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0052','H','',0,0,'','','SV003X - Senning Operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2963,'N','N','Y',2963,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0053','H','',0,0,'','','SV003Y - Mustard Operation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2964,'N','N','Y',2964,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0054','H','',0,0,'','','SV003Z - ALCAPA repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,275000,NULL,'',2965,'N','N','Y',2965,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0055','H','',0,0,'','','SV004A - Coronary artery bypass grafting (CABG), with or without  intraoperative IABP)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,162400,NULL,'',2966,'N','N','Y',2966,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0056','H','',0,0,'','','SV005A - Aortic valve replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,163700,NULL,'',2967,'N','N','Y',2967,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0057','H','',0,0,'','','SV005B - Mitral valve replacement / Mitral valve repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,163700,NULL,'',2968,'N','N','Y',2968,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0058','H','',0,0,'','','SV005C - Tricuspid valve replacement / Tricuspid valve repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,163700,NULL,'',2969,'N','N','Y',2969,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0059','H','',0,0,'','','SV006A - Double valve replacement / repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,195300,NULL,'',2970,'N','N','Y',2970,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0060','H','',0,0,'','','SV007A - Triple valve replacement / repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,233800,NULL,'',2971,'N','N','Y',2971,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0061','H','',0,0,'','','SV008A - Closed mitral valvotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,78400,NULL,'',2972,'N','N','Y',2972,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0062','H','',0,0,'','','SV009A - Ross Procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2973,'N','N','Y',2973,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0063','H','',0,0,'','','SV010A - Surgery for Hypertrophic Obstructive Cardiomyopathy (HOCM)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,152700,NULL,'',2974,'N','N','Y',2974,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0064','H','',0,0,'','','SV011A - Pericardial window (via thoracotomy)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41300,NULL,'',2975,'N','N','Y',2975,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0065','H','',0,0,'','','SV012A - Pericardiectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,92200,NULL,'',2976,'N','N','Y',2976,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0066','H','',0,0,'','','SV013A - Patent Ductus Arteriosus (PDA) Closure via thoracotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,78400,NULL,'',2977,'N','N','Y',2977,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0067','H','',0,0,'','','SV014A - Bental Procedure','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2978,'N','N','Y',2978,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0068','H','',0,0,'','','SV014B - Aortic Dissection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2979,'N','N','Y',2979,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0069','H','',0,0,'','','SV014C - Aortic Aneurysm ( Root Ascending )','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2980,'N','N','Y',2980,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0070','H','',0,0,'','','SV014D - Valve sparing root replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2981,'N','N','Y',2981,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0071','H','',0,0,'','','SV014E - AVR + Root enlargement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2982,'N','N','Y',2982,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0072','H','',0,0,'','','SV015A - Aortic Arch Replacement using cardiopulmonary bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2983,'N','N','Y',2983,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0073','H','',0,0,'','','SV015B - Thoracoabdominal aneurysm Repair using partial cardiopulmonary bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,206300,NULL,'',2984,'N','N','Y',2984,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0074','H','',0,0,'','','SV016A - Aortic Aneurysm Repair using Cardiopulmonary bypass (CPB)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,165000,NULL,'',2985,'N','N','Y',2985,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0075','H','',0,0,'','','SV016B - Aortic Aneurysm Repair using Left Heart Bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,165000,NULL,'',2986,'N','N','Y',2986,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0076','H','',0,0,'','','SV016C - Aortic Aneurysm Repair without using Cardiopulmonary bypass (CPB)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,90100,NULL,'',2987,'N','N','Y',2987,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0077','H','',0,0,'','','SV016D - Aortic Aneurysm Repair without using Left Heart Bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,90100,NULL,'',2988,'N','N','Y',2988,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0078','H','',0,0,'','','SV017A - Aorto Iliac bypass - U/L','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,88700,NULL,'',2989,'N','N','Y',2989,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0079','H','',0,0,'','','SV017B - Aorto femoral bypass - U/L','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,88700,NULL,'',2990,'N','N','Y',2990,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0080','H','',0,0,'','','SV017C - Aorto Iliac bypass - B/L','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,88700,NULL,'',2991,'N','N','Y',2991,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0081','H','',0,0,'','','SV017D - Aorto femoral bypass - B/L','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,88700,NULL,'',2992,'N','N','Y',2992,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0082','H','',0,0,'','','SV018A - Pulmonary Embolectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,193900,NULL,'',2993,'N','N','Y',2993,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0083','H','',0,0,'','','SV018B - Pulmanary Thromboendarterectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,193900,NULL,'',2994,'N','N','Y',2994,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0084','H','',0,0,'','','SV019A - Femoro - Femoral Bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',2995,'N','N','Y',2995,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0085','H','',0,0,'','','SV019B - Carotid - endearterectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',2996,'N','N','Y',2996,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0086','H','',0,0,'','','SV019C - Carotid Body Tumor Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',2997,'N','N','Y',2997,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0087','H','',0,0,'','','SV019D - Thoracic Outlet syndrome Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',2998,'N','N','Y',2998,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0088','H','',0,0,'','','SV019E - Carotid aneurysm repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',2999,'N','N','Y',2999,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0089','H','',0,0,'','','SV019F - Subclavian aneurysm repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3000,'N','N','Y',3000,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0090','H','',0,0,'','','SV019G - Axillary aneurysm repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3001,'N','N','Y',3001,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0091','H','',0,0,'','','SV019H - Brachial artery aneurysm repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3002,'N','N','Y',3002,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0092','H','',0,0,'','','SV019I - Femoral artery aneurysm repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3003,'N','N','Y',3003,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0093','H','',0,0,'','','SV019J - Popliteal artery aneurysm repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3004,'N','N','Y',3004,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0094','H','',0,0,'','','SV019K - Femoral - popliteal Bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3005,'N','N','Y',3005,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0095','H','',0,0,'','','SV019L - Axillo - Brachial Bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3006,'N','N','Y',3006,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0096','H','',0,0,'','','SV019M - Carotio - carotid Bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3007,'N','N','Y',3007,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0097','H','',0,0,'','','SV019N - Carotido - subclavian artery  bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3008,'N','N','Y',3008,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0098','H','',0,0,'','','SV019O - Carotido - axillary bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3009,'N','N','Y',3009,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0099','H','',0,0,'','','SV019P - Axillo - femoral bypass - U/L','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3010,'N','N','Y',3010,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0100','H','',0,0,'','','SV019Q - Axillo - femoral bypass - B/L','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3011,'N','N','Y',3011,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0101','H','',0,0,'','','SV019R - Aorto - carotid bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3012,'N','N','Y',3012,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0102','H','',0,0,'','','SV019S - Aorto - subclavian bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3013,'N','N','Y',3013,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0103','H','',0,0,'','','SV019T - Patch Graft Angioplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3014,'N','N','Y',3014,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0104','H','',0,0,'','','SV019U - Small Arterial Aneurysms ? Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3015,'N','N','Y',3015,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0105','H','',0,0,'','','SV019V - Medium size arterial aneurysms with synthetic graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3016,'N','N','Y',3016,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0106','H','',0,0,'','','SV019W - Surgery for Arterial Aneursysm ?Vertebral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3017,'N','N','Y',3017,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0107','H','',0,0,'','','SV019X - Surgery for Arterial Aneurysm Renal Artery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3018,'N','N','Y',3018,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0108','H','',0,0,'','','SV019Y - Operations for Acquired Arteriovenous Fistual','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3019,'N','N','Y',3019,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0109','H','',0,0,'','','SV019Z - Congenital Arterio Venous Fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3020,'N','N','Y',3020,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0110','H','',0,0,'','','SV020A - Peripheral Thromboembolectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,38500,NULL,'',3021,'N','N','Y',3021,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0111','H','',0,0,'','','SV021A - Peripheral arterial injury repair (without bypass)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41300,NULL,'',3022,'N','N','Y',3022,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0112','H','',0,0,'','','SV022A - Thoracotomy, Thoraco Abdominal Approach','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41300,NULL,'',3023,'N','N','Y',3023,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0113','H','',0,0,'','','SV023A - Lung cyst exision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,61900,NULL,'',3024,'N','N','Y',3024,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0114','H','',0,0,'','','SV023B - Decortication','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,61900,NULL,'',3025,'N','N','Y',3025,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0115','H','',0,0,'','','SV023C - Hydatid cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,61900,NULL,'',3026,'N','N','Y',3026,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0116','H','',0,0,'','','SV023D - Other simple lung procedure excluding lung resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,61900,NULL,'',3027,'N','N','Y',3027,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0117','H','',0,0,'','','SV023E - Bronchial Repair Surgery for Injuries due to FB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,61900,NULL,'',3028,'N','N','Y',3028,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0118','H','',0,0,'','','SV024A - Pulmonary Resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,96300,NULL,'',3029,'N','N','Y',3029,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0119','H','',0,0,'','','SV025A - Foreign Body Removal with scope','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27500,NULL,'',3030,'N','N','Y',3030,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0120','H','',0,0,'','','SV026A - Surgical Correction of Bronchopleural Fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,89400,NULL,'',3031,'N','N','Y',3031,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0121','H','',0,0,'','','SV027A - Space - Occupying Lesion (SOL) mediastinum','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,90100,NULL,'',3032,'N','N','Y',3032,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0122','H','',0,0,'','','SV028A - Isolated Intercostal Drainage and Management of ICD, Intercostal Block, Antibiotics & Physiotherapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13800,NULL,'',3033,'N','N','Y',3033,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0123','H','',0,0,'','','SV029A - Diaphragmatic Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41300,NULL,'',3034,'N','N','Y',3034,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0124','H','',0,0,'','','SV030A - Surgery for Cardiac Tumour','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,130700,NULL,'',3035,'N','N','Y',3035,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0125','H','',0,0,'','','SV031A - Tetralogy of Fallot Repair (immediate  re operation)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,103200,NULL,'',3036,'N','N','Y',3036,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0126','H','',0,0,'','','SV031B - Aortic valve replacement /repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,196100,NULL,'',3037,'N','N','Y',3037,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0127','H','',0,0,'','','SV031C - Mitral valve replacement /repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,196100,NULL,'',3038,'N','N','Y',3038,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0128','H','',0,0,'','','SV031D - Tricuspid valve replacement /repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,196100,NULL,'',3039,'N','N','Y',3039,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0129','H','',0,0,'','','SV031E - Double valve replacement /repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,97700,NULL,'',3040,'N','N','Y',3040,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0130','H','',0,0,'','','SV031F - Triple valve replacement /repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,116900,NULL,'',3041,'N','N','Y',3041,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0131','H','',0,0,'','','SV032A - Low Cardiac Output syndrome requiring IABP insertion post - operatively','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,68800,NULL,'',3042,'N','N','Y',3042,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0132','H','',0,0,'','','SV033A - Re-do sternotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27500,NULL,'',3043,'N','N','Y',3043,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0133','H','',0,0,'','','SV034A - Excessive bleeding requiring re-exploration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,13800,NULL,'',3044,'N','N','Y',3044,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0134','H','',0,0,'','','SV035A - Mediastinotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,39600,NULL,'',3045,'N','N','Y',3045,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0135','H','',0,0,'','','SV036A - Pectus excavation (incluidng implants if any)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',3046,'N','N','Y',3046,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0136','H','',0,0,'','','SV036GJA - Brachio - Radial Bypass with Synthetic Graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,57500,NULL,'',3047,'N','N','Y',3047,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0137','H','',0,0,'','','SV037A - Left ventricular aneurysm repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,162400,NULL,'',3048,'N','N','Y',3048,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0138','H','',0,0,'','','SV037GJA - Pulmonary Atresia with or without VSD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,97750,NULL,'',3049,'N','N','Y',3049,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0139','H','',0,0,'','','SV038A - CABG + Left ventricular aneurysm repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,224900,NULL,'',3050,'N','N','Y',3050,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0140','H','',0,0,'','','SV038GJA - Pulmonary AV Fistula surgery','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23000,NULL,'',3051,'N','N','Y',3051,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0141','H','',0,0,'','','SV039A - Tracheal repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',3052,'N','N','Y',3052,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0142','H','',0,0,'','','SV039GJA - Oesophageal Diverticula /Achalasia Cardia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23000,NULL,'',3053,'N','N','Y',3053,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0143','H','',0,0,'','','SV040A - Aortic stenting +Cost of Stent)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,62500,NULL,'',3054,'N','N','Y',3054,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0144','H','',0,0,'','','SV040GJA - Pulmonary artero venous malformation','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',3055,'N','N','Y',3055,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0145','H','',0,0,'','','SV041A - First Follow-up-  2-4 weeks after discharge - AT NETWORK HOSPITAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',3056,'N','N','Y',3056,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0146','H','',0,0,'','','SV041B - Second Follow-up- After 3 months','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4400,NULL,'',3057,'N','N','Y',3057,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0147','H','',0,0,'','','SV041C - Third Follow-up- After 3 months','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2200,NULL,'',3058,'N','N','Y',3058,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0148','H','',0,0,'','','SV041D - fourth Follow-up- After 3 months','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2200,NULL,'',3059,'N','N','Y',3059,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0149','H','',0,0,'','','SV041E - FifthFollow-up - After 3 months','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2200,NULL,'',3060,'N','N','Y',3060,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0150','H','',0,0,'','','SV041GJA - Operations for Stenosis of Renal Arteries','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23000,NULL,'',3061,'N','N','Y',3061,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0151','H','',0,0,'','','SV042GJA - Arterial','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17250,NULL,'',3062,'N','N','Y',3062,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0152','H','',0,0,'','','SV042GJB - Bilateral thrombo','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',3063,'N','N','Y',3063,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0153','H','',0,0,'','','SV043GJA - with Post MI Cardiac repair ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,100000,NULL,'',3064,'N','N','Y',3064,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0154','H','',0,0,'','','SV043GJB - with post MI VSD repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,99475,NULL,'',3065,'N','N','Y',3065,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0155','H','',0,0,'','','SV043GJC - Re DO','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,83375,NULL,'',3066,'N','N','Y',3066,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0156','H','',0,0,'','','SV044GJA - Coarctation Repair with graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,36800,NULL,'',3067,'N','N','Y',3067,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0157','H','',0,0,'','','SV045GJA - Congenital Cystic Lesions','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',3068,'N','N','Y',3068,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0158','H','',0,0,'','','SV046GJA - Diaphragmatic Eventeration','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,46000,NULL,'',3069,'N','N','Y',3069,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0159','H','',0,0,'','','SV046GJB - Diaphragmatic Hernia','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,40000,NULL,'',3070,'N','N','Y',3070,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0160','H','',0,0,'','','SV046GJC - Diaphragmatic injury repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28750,NULL,'',3071,'N','N','Y',3071,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0161','H','',0,0,'','','SV047GJA - with CPB (inclu. Graft)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,94300,NULL,'',3072,'N','N','Y',3072,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0162','H','',0,0,'','','SV047GJB - without CPB (incl. graft)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,86250,NULL,'',3073,'N','N','Y',3073,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0163','H','',0,0,'','','SV048GJA - Encysted Empyema/Pleural Effusion - Tubercular','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',3074,'N','N','Y',3074,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0164','H','',0,0,'','','SV049GJA - Large','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,57500,NULL,'',3075,'N','N','Y',3075,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0165','H','',0,0,'','','SV049GJB - Small','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',3076,'N','N','Y',3076,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0166','H','',0,0,'','','SV049GJC - Excision of Carotid body Tumor with vascular repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34500,NULL,'',3077,'N','N','Y',3077,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0167','H','',0,0,'','','SV050GJA - First rib Excision by transaxillary approach, Excision of cervical rib / fibrous band / muscle by cervical approach','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,30000,NULL,'',3078,'N','N','Y',3078,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0168','H','',0,0,'','','SV051GJA - Lobectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34500,NULL,'',3079,'N','N','Y',3079,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0169','H','',0,0,'','','SV052GJA - Lung Injury repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23000,NULL,'',3080,'N','N','Y',3080,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0170','H','',0,0,'','','SV053GJA - Open Aortic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,78200,NULL,'',3081,'N','N','Y',3081,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0171','H','',0,0,'','','SV053GJB - Open Mitral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,78200,NULL,'',3082,'N','N','Y',3082,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0172','H','',0,0,'','','SV053GJC - Open Pulmonary','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,80500,NULL,'',3083,'N','N','Y',3083,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0173','H','',0,0,'','','SV054GJA - Peripheral Embolectomy without graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17250,NULL,'',3084,'N','N','Y',3084,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0174','H','',0,0,'','','SV055GJA - Pleurectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,46000,NULL,'',3085,'N','N','Y',3085,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0175','H','',0,0,'','','SV056GJA - Pneumonectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,46000,NULL,'',3086,'N','N','Y',3086,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0176','H','',0,0,'','','SV057GJA - Pulmonary Conduit','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,105000,NULL,'',3087,'N','N','Y',3087,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0177','H','',0,0,'','','SV058GJA - Pulmonary Valve Replacement','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,120000,NULL,'',3088,'N','N','Y',3088,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0178','H','',0,0,'','','SV059GJA - Pulmonary Valvotomy + RVOT Resection','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,90850,NULL,'',3089,'N','N','Y',3089,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0179','H','',0,0,'','','SV060GJA - Distal Abdominal Aorta','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,65000,NULL,'',3090,'N','N','Y',3090,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0180','H','',0,0,'','','SV060GJB - Main Arteries of the Limb','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17250,NULL,'',3091,'N','N','Y',3091,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0181','H','',0,0,'','','SV060GJC - Upper Abdominal Aorta','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,57500,NULL,'',3092,'N','N','Y',3092,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0182','H','',0,0,'','','SV060GJD - Carotid','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,17250,NULL,'',3093,'N','N','Y',3093,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0183','H','',0,0,'','','SV061GJA - Surgery with CPB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,57500,NULL,'',3094,'N','N','Y',3094,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0184','H','',0,0,'','','SV061GJB - Surgery without CPB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,57500,NULL,'',3095,'N','N','Y',3095,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0185','H','',0,0,'','','SV062GJA - TGA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,97750,NULL,'',3096,'N','N','Y',3096,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0186','H','',0,0,'','','SV063GJA - THORACOPLASTY ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,34500,NULL,'',3097,'N','N','Y',3097,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0187','H','',0,0,'','','SV064GJA - Thyomectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,28750,NULL,'',3098,'N','N','Y',3098,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0188','H','',0,0,'','','SV065GJA - Major Vessels','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,23000,NULL,'',3099,'N','N','Y',3099,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0189','H','',0,0,'','','SV065GJB - Minor Vessels','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,20000,NULL,'',3100,'N','N','Y',3100,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0190','H','',0,0,'','','SV066GJA - Vascular Tumors','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,46000,NULL,'',3101,'N','N','Y',3101,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'SVPM','','SVPM0191','H','',0,0,'','','SVU100 - Unspecified Surgical Package','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',3102,'N','N','Y',3102,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-08-04 00:00:00','','0000-00-00 00:00:00'),(0,0,'THOS','','THOS0001','H','',0,0,'','','Excision of Chest &Mediastinal masses','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'THOS','','THOS0002','H','',0,0,'','','Lobectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'THOS','','THOS0003','H','',0,0,'','','Mediastinostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'THOS','','THOS0004','H','',0,0,'','','Open Lung Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'THOS','','THOS0005','H','',0,0,'','','Pericardiectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'THOS','','THOS0006','H','',0,0,'','','Pericardiocentesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'THOS','','THOS0007','H','',0,0,'','','Pleurocentesis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'THOS','','THOS0008','H','',0,0,'','','Pneumonectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'THOS','','THOS0009','H','',0,0,'','','Removal of Pulmonary Hydatid Cyst','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'THOS','','THOS0010','H','',0,0,'','','Rib Resection and Drainage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'THOS','','THOS0011','H','',0,0,'','','Thoracic Outlet Decompression','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'THOS','','THOS0012','H','',0,0,'','','Thoracoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'THOS','','THOS0013','H','',0,0,'','','THORACOTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'THOS','','THOS0014','H','',0,0,'','','Thymectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0001','H','',0,0,'','','CT GUIDED BIOPSY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6000,6000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0002','H','',0,0,'','','CT GUIDED BIOPSY (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4800,4800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0003','H','',0,0,'','','RADIOLOGIST FOR BIOPSY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0004','H','',0,0,'','','USG GUIDED ASCITIC TAPPING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2880,2880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0005','H','',0,0,'','','USG GUIDED ASCITIC TAPPING (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2880,2880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0006','H','',0,0,'','','USG GUIDED ASPIRATION DIAGNOSTIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1440,1440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0007','H','',0,0,'','','USG GUIDED ASPIRATION DIAGNOSTIC (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1440,1440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0008','H','',0,0,'','','USG GUIDED ASPIRATION THERAPEUTIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3600,3600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0009','H','',0,0,'','','USG GUIDED ASPIRATION THERAPEUTIC (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2880,2880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0010','H','',0,0,'','','USG GUIDED BIOPSY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0011','H','',0,0,'','','USG GUIDED BIOPSY (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4000,4000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0012','H','',0,0,'','','USG GUIDED DRAINAGE TUBE - PIGTAIL INSERTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4500,4500,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0013','H','',0,0,'','','USG GUIDED DRAINAGE TUBE - PIGTAIL INSERTION (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3600,3600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0014','H','',0,0,'','','USG GUIDED FNAC (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0015','H','',0,0,'','','USG GUIDED INTERVENTIONAL RADIOLOGY PROCEDURE GRADE 1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0016','H','',0,0,'','','USG GUIDED INTERVENTIONAL RADIOLOGY PROCEDURE GRADE 2','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3500,3500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0017','H','',0,0,'','','USG GUIDED INTERVENTIONAL RADIOLOGY PROCEDURE GRADE 3','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0018','H','',0,0,'','','USG GUIDED PLEURAL TAPPING DIAGNOSTIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2700,2700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0019','H','',0,0,'','','USG GUIDED PLEURAL TAPPING DIAGNOSTIC (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4050,4050,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0020','H','',0,0,'','','USG GUIDED PLEURAL TAPPING THERAPEUTIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2880,2880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0021','H','',0,0,'','','USG GUIDED PLEURAL TAPPING THERAPEUTIC (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2880,2880,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0022','H','',0,0,'','','USG GUIDED PROSTATE BIOPSY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UCTC','','UCTC0023','H','',0,0,'','','USG GUIDED PROSTATE BIOPSY (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROP','','UROP0001','H','',0,0,'','','Bladder Wash','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROP','','UROP0002','H','',0,0,'','','Condyloma Excision','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROP','','UROP0003','H','',0,0,'','','DIAGNOSTIC CYSTOSCOPY PROCEDURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROP','','UROP0004','H','',0,0,'','','DJ STENTING REMOVAL LOCAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROP','','UROP0005','H','',0,0,'','','Dorsal Slit','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROP','','UROP0006','H','',0,0,'','','Drainage Of Fourniers Gangrene','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROP','','UROP0007','H','',0,0,'','','ESWL - EXTRA CORPOREAL SHOCK WAVE LITHOTRIPSY DAY CARE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',26500,26500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROP','','UROP0008','H','',0,0,'','','Filiform Bougy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROP','','UROP0009','H','',0,0,'','','FOLEY BY URO','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROP','','UROP0010','H','',0,0,'','','Frenuloplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROP','','UROP0011','H','',0,0,'','','Intra Vesical Chemotherapy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROP','','UROP0012','H','',0,0,'','','LITHOTRIPSY (ESWL)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3999,3999,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROP','','UROP0013','H','',0,0,'','','LITHOTRIPSY (ESWL) SECOND SITTING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROP','','UROP0014','H','',0,0,'','','Penile Injection Drugs','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROP','','UROP0015','H','',0,0,'','','Supra Pubic Catherisation (SPC)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROP','','UROP0016','H','',0,0,'','','Suprapubic Catheterisation Change','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROP','','UROP0017','H','',0,0,'','','UROFLOWMETRY STUDY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',450,450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0001','H','',0,0,'','','Adrenalectomy (Lap)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0002','H','',0,0,'','','Adrenalectomy (Open)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0003','H','',0,0,'','','Bladder diverticulectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0004','H','',0,0,'','','Bladder Neck lncision/TUIP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0005','H','',0,0,'','','Bladder Neck lncision/TURP Grade I Prostate','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0006','H','',0,0,'','','CAPD Catheter Placement or Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0007','H','',0,0,'','','CIRCUMCISION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1300,1300,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0008','H','',0,0,'','','CIRCUMCISION-PHIMOSIS / PARAPHIMOSIS OR ANY OTHER CLINICAL CONDITION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1100,1100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0009','H','',0,0,'','','CORPOREAL ASPIRATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',2,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0010','H','',0,0,'','','Cystectomy partial','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0011','H','',0,0,'','','Cystectomy Radical','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0012','H','',0,0,'','','Cystolithotomy (Percutaneous)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0013','H','',0,0,'','','Cystolithotomy- Endoscopic(2 cm stone)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0014','H','',0,0,'','','Cystolithotomy Open','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0015','H','',0,0,'','','Cystolithotripsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0016','H','',0,0,'','','Cystoscopy + Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0017','H','',0,0,'','','Cystoscopy Diagnostic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0018','H','',0,0,'','','CYSTOSCOPY URS WITH DJ STENTING UNILATERAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',62040,62040,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0019','H','',0,0,'','','Diagnostic Nephroscopy+biopsy pickup small stone','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0020','H','',0,0,'','','DJ STANT (ONE SIDE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0021','H','',0,0,'','','DJ Stenting (Bilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0022','H','',0,0,'','','DJ Stenting (Unilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0023','H','',0,0,'','','DJ STENTING REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0024','H','',0,0,'','','DJ STENTING REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5500,5500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0025','H','',0,0,'','','Endopyelotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0026','H','',0,0,'','','Epispadiasis Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0027','H','',0,0,'','','Epispadiasis Repair (Single stage)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0028','H','',0,0,'','','EXCISION OF VESICO-URACHAL DIVERTICULUM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0029','H','',0,0,'','','Exostrophy Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0030','H','',0,0,'','','Hypospadiasis repair Two-stage- First stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0031','H','',0,0,'','','Hypospadiasis repair Two-stage- Second stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0032','H','',0,0,'','','Lap. Partial Nephrectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0033','H','',0,0,'','','LEFT PCNL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0034','H','',0,0,'','','Meatoplasty','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0035','H','',0,0,'','','Meatotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0036','H','',0,0,'','','MEATOTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1925,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0037','H','',0,0,'','','Mitrofanoff','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0038','H','',0,0,'','','Nephrectomy ( Partial)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0039','H','',0,0,'','','Nephrectomy ( Radical)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0040','H','',0,0,'','','Nephrectomy (Laproscopic)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0041','H','',0,0,'','','Nephrectomy (Simple Open)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0042','H','',0,0,'','','Nephrostomy (Open)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0043','H','',0,0,'','','Nephrostomy (Percutaneous) - PCN Insertion','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0044','H','',0,0,'','','Open Prostatectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0045','H','',0,0,'','','OPEN RADICAL PROSTATECTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',9,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0046','H','',0,0,'','','Optical Internal Urethrotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0047','H','',0,0,'','','Orchidectomy (Bilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0048','H','',0,0,'','','Orchidectomy (Unilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0049','H','',0,0,'','','Orchiopexy ( Bilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0050','H','',0,0,'','','Orchiopexy (Unilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0051','H','',0,0,'','','PCNL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0052','H','',0,0,'','','Penectomy (Partial)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0053','H','',0,0,'','','Penectomy (Total) with lymphadectomy /Bil','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0054','H','',0,0,'','','Penectomy (Total) without lymphadectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0055','H','',0,0,'','','PENIL FRECTURE REPAIR + EME','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0056','H','',0,0,'','','Penile Implant','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0057','H','',0,0,'','','PERINEAL URETHROSTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0058','H','',0,0,'','','PERMANENT TUNNELLED CATHETER PLACEMENT AS SUBSITUTE FOR AV FISTULA IN LONG TERM DIALIYSIS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,33000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0059','H','',0,0,'','','Prostate Biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0060','H','',0,0,'','','Pyelolithotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0061','H','',0,0,'','','Pyeloplasty ( Laparoscopic)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0062','H','',0,0,'','','Pyeloplasty (Open)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0063','H','',0,0,'','','Radical Cystectomy ( Laproscopic)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0064','H','',0,0,'','','Radical Cystectomy + lleal Conduit','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0065','H','',0,0,'','','Radical Cystectomy + Orthotopic bladder','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0066','H','',0,0,'','','RETROGRADE PYLOGRAPHY UROLOGY SURGERY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2600,2600,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0067','H','',0,0,'','','Retroperitoneal Lymph Node Dissection (RPLND)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',10,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0068','H','',0,0,'','','RIGHT URSL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0069','H','',0,0,'','','Rupture repair Major','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0070','H','',0,0,'','','Rupture Repair Minor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0071','H','',0,0,'','','Sling/Burch/Raz/Stamey','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0072','H','',0,0,'','','Stent Removal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0073','H','',0,0,'','','SUPRA PUBIC CYSTOSTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0074','H','',0,0,'','','SUPRAPUBIC CYSTOSTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1,NULL,'',1,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0075','H','',0,0,'','','Testicular Biopsy ( Bilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',2,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0076','H','',0,0,'','','Testicular Biopsy ( Unilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',1,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0077','H','',0,0,'','','TURP/TVP /TURBT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0078','H','',0,0,'','','Ureteric Reimplantation Bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0079','H','',0,0,'','','Ureteric Reimplantation Unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0080','H','',0,0,'','','Ureterolithotomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0081','H','',0,0,'','','Ureterolysis (Bilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0082','H','',0,0,'','','Ureterolysis (Unilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0083','H','',0,0,'','','Ureteroscopy- Diagnostic','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0084','H','',0,0,'','','URETEROSCOPY STONE REMOVAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0085','H','',0,0,'','','Ureteroureterostomy/Boari\'s Flap','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0086','H','',0,0,'','','URETHRAL DILATATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0087','H','',0,0,'','','Urethroplasty (Two stage) - Second stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0088','H','',0,0,'','','Urethroplasty (Two Stage) -First stage','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0089','H','',0,0,'','','URETHROPLASTY SINGLE STAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0090','H','',0,0,'','','URETHROPLASTY-SINGLE STAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,27500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0091','H','',0,0,'','','Urethrovaginal Fistula Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0092','H','',0,0,'','','URS/THEAPEUTIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41160,NULL,'',0,'Y','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0093','H','',0,0,'','','URS/THEAPEUTIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,41160,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0094','H','',0,0,'','','URS+DJ STENDING(UNILATERIAL)+CYSTOSCOPY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0095','H','',0,0,'','','Varicocelectomy ( Bilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0096','H','',0,0,'','','Varicocelectomy ( Unilateral)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0097','H','',0,0,'','','Vasectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',3,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0098','H','',0,0,'','','VESICO-URETERIC JN. MEATOTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'UROS','','UROS0099','H','',0,0,'','','WITH SLINGS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',38500,38500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USCG','','USCG0001','H','',0,0,'','','USG for Obstetrics -  Anomalies scan','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',323,323,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'USCG','','USCG0002','H','',0,0,'','','Abdomen USG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',323,323,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'USCG','','USCG0003','H','',0,0,'','','Pelvic USG ( prostate, gynae, infertility etc)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',255,255,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'USCG','','USCG0004','H','',0,0,'','','Small parts USG ( scrotum, thyroid , parathyroid\netc)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',349,349,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'USCG','','USCG0005','H','',0,0,'','','Neonatal head (Tranfontanellar)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',425,425,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'USCG','','USCG0006','H','',0,0,'','','Neonatal spine','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'USCG','','USCG0007','H','',0,0,'','','Contrast enhanced USG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',810,810,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'USCG','','USCG0008','H','',0,0,'','','USG Breast','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',349,349,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'USCG','','USCG0009','H','',0,0,'','','USG Hystero-Salpaingography  (HSG)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',255,255,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'USCG','','USCG0010','H','',0,0,'','','Carotid Doppler','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',765,765,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'USCG','','USCG0011','H','',0,0,'','','Arterial Colour Doppler','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',635,635,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'USCG','','USCG0012','H','',0,0,'','','Venous Colour Doppler','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',635,635,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'USCG','','USCG0013','H','',0,0,'','','Colour Doppler, renal arteries/any other organ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',720,720,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'USCG','','USCG0014','H','',0,0,'','','USG guided intervention- FNAC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',490,490,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'USCG','','USCG0015','H','',0,0,'','','USG guided intervention - biopsy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',648,648,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'USCG','','USCG0016','H','',0,0,'','','USG guided intervention - nephrostomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',720,720,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'USG','','USG0001','H','',0,0,'','','Acute appendicitis ? Acute Cholecystitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0002','H','',0,0,'','','Acute appendicitis ? Acute Cholecystitis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0003','H','',0,0,'','','Acute appendicitis ? Acute Cholecystitis (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0004','H','',0,0,'','','Acute appendicitis ? Acute Cholecystitis (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0005','H','',0,0,'','','ANTENATAL GROWTH SCAN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',800,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0006','H','',0,0,'','','BONE DENSITOMETRY (BMD)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0007','H','',0,0,'','','BONE DENSITOMETRY (BMD) (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0008','H','',0,0,'','','BONE DENSITOMETRY (BMD) (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0009','H','',0,0,'','','ECHO CARDIOGRAPHY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',800,800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0010','H','',0,0,'','','ECHO CARDIOGRAPHY / TREAD MILL TEST (TMT) (AS PER DOCTOR ADVICE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0011','H','',0,0,'','','ECHOCARDIOGRAPHY BY CARDIOLOGIST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0012','H','',0,0,'','','Mammo-Sonography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0013','H','',0,0,'','','Mammo-Sonography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0014','H','',0,0,'','','Mammo-Sonography (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0015','H','',0,0,'','','Mammo-Sonography (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0016','H','',0,0,'','','PORTABLE ECHO (BED SIDE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0017','H','',0,0,'','','USG ABDOMEN DOPPLER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0018','H','',0,0,'','','USG ABDOMEN DOPPLER (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0019','H','',0,0,'','','USG ABDOMINAL DOPPLER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0020','H','',0,0,'','','USG ABDOMINAL DOPPLER (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0021','H','',0,0,'','','USG ANTENATAL (ANOMALY SCAN)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1100,1100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0022','H','',0,0,'','','USG ANTENATAL (ANOMALY SCAN) (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1100,1100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0023','H','',0,0,'','','USG ANTENATAL (EARLY) -12 WEEKS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0024','H','',0,0,'','','USG ANTENATAL (EARLY) -12 WEEKS (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0025','H','',0,0,'','','USG ANTENATAL (ROUTINE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0026','H','',0,0,'','','USG ANTENATAL (ROUTINE) (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0027','H','',0,0,'','','USG ANTENATAL (ROUTINE) (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0028','H','',0,0,'','','USG ANTENATAL 3D - 4D','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0029','H','',0,0,'','','USG ANTENATAL 3D - 4D (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0030','H','',0,0,'','','USG ANTENATAL 3D - 4D (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1100,1100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0031','H','',0,0,'','','USG ANTENATAL FETAL DOPPLER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0032','H','',0,0,'','','USG ANTENATAL FETAL DOPPLER (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0033','H','',0,0,'','','USG ANTENATAL GROWTH SCAN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0034','H','',0,0,'','','USG BOTH AXILLARY REGIONS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0035','H','',0,0,'','','USG BOTH AXILLARY REGIONS (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',450,450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0036','H','',0,0,'','','USG BOTH INGUINO SCROTAL REGION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0037','H','',0,0,'','','USG BOTH INGUINO SCROTAL REGION (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0038','H','',0,0,'','','USG BOTH LIMB ARTERIAL DOPPLER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0039','H','',0,0,'','','USG BOTH LIMB ARTERIAL DOPPLER (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0040','H','',0,0,'','','USG BOTH LIMB VENOUS DOPPLER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0041','H','',0,0,'','','USG BOTH LIMB VENOUS DOPPLER (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0042','H','',0,0,'','','USG BRAIN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0043','H','',0,0,'','','USG BRAIN (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0044','H','',0,0,'','','USG BREAST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0045','H','',0,0,'','','USG BREAST (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0046','H','',0,0,'','','USG CAROTID DOPPLER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0047','H','',0,0,'','','USG CAROTID DOPPLER (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0048','H','',0,0,'','','USG CHEST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0049','H','',0,0,'','','USG CHEST (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0050','H','',0,0,'','','USG GUIDED FNAC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2250,2250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0051','H','',0,0,'','','USG GUIDED INTERVENTIONAL RADIOLOGY PROCEDURE GRADE 1','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2000,2000,NULL,'',0,'Y','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0052','H','',0,0,'','','USG GUIDED INTERVENTIONAL RADIOLOGY PROCEDURE GRADE 2','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3500,3500,NULL,'',0,'Y','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0053','H','',0,0,'','','USG GUIDED INTERVENTIONAL RADIOLOGY PROCEDURE GRADE 3','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',5000,5000,NULL,'',0,'Y','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0054','H','',0,0,'','','USG JOINTS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0055','H','',0,0,'','','USG JOINTS (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0056','H','',0,0,'','','USG KUB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0057','H','',0,0,'','','USG KUB (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0058','H','',0,0,'','','USG KUB WITH PROSTATE AND PVR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0059','H','',0,0,'','','USG LOCAL PART','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0060','H','',0,0,'','','USG LOCAL PART (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0061','H','',0,0,'','','USG NECK','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0062','H','',0,0,'','','USG NECK (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0063','H','',0,0,'','','USG ORBIT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0064','H','',0,0,'','','USG ORBIT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0065','H','',0,0,'','','USG OVULATION /FOLLICULAR STUDY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0066','H','',0,0,'','','USG OVULATION /FOLLICULAR STUDY (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0067','H','',0,0,'','','USG PELVIS/LOWER ABDOMEN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0068','H','',0,0,'','','USG PELVIS/LOWER ABDOMEN (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0069','H','',0,0,'','','USG RENAL DOPPLER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0070','H','',0,0,'','','USG RENAL DOPPLER (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0071','H','',0,0,'','','USG SCREENING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0072','H','',0,0,'','','USG SCREENING (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0073','H','',0,0,'','','USG SCROTAL DOPPLER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',900,900,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0074','H','',0,0,'','','USG SCROTAL DOPPLER (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',900,900,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0075','H','',0,0,'','','USG SCROTUM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0076','H','',0,0,'','','USG SCROTUM (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0077','H','',0,0,'','','USG SHOULDER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0078','H','',0,0,'','','USG SHOULDER (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0079','H','',0,0,'','','USG SINGLE LIMB ARTERIAL DOPPLER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0080','H','',0,0,'','','USG SINGLE LIMB ARTERIAL DOPPLER (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0081','H','',0,0,'','','USG SINGLE LIMB VENOUS DOPPLER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0082','H','',0,0,'','','USG SINGLE LIMB VENOUS DOPPLER (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0083','H','',0,0,'','','USG SOFT PART','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0084','H','',0,0,'','','USG SOFT PART (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0085','H','',0,0,'','','USG TRANS RECTAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0086','H','',0,0,'','','USG TRANS RECTAL (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0087','H','',0,0,'','','USG UPPER ABDOMEN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0088','H','',0,0,'','','USG UPPER ABDOMEN (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0089','H','',0,0,'','','USG WHOLE ABDOMEN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',800,800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0090','H','',0,0,'','','USG WHOLE ABDOMEN (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2160,2160,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'USG','','USG0091','H','',0,0,'','','USG ABDOMEN WITH PELVIS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-10-11 12:19:55','I','N',99,'','','','','reception','2025-10-11 12:19:55','','0000-00-00 00:00:00'),(0,0,'USG','','USG0092','H','',0,0,'','','USG ABDOMEN CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-11 20:25:11','I','N',99,'','','','','vishal','2025-10-11 20:25:11','','0000-00-00 00:00:00'),(0,0,'USG','','USG0093','H','',0,0,'','','USG KUB BEDSIDE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-10-12 15:36:12','I','N',99,'','','','','reception','2025-10-12 15:36:12','','0000-00-00 00:00:00'),(0,0,'USG','','USG0094','H','',0,0,'','','B/L CAROTID DOPPLER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-10-27 18:27:40','I','N',99,'','','','','vishal','2025-10-27 18:27:40','','0000-00-00 00:00:00'),(0,0,'USG','','USG0095','H','',0,0,'','','USG CHEST','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','riya','2025-10-28 13:17:12','I','N',99,'','','','','riya','2025-10-28 13:17:12','','0000-00-00 00:00:00'),(0,0,'USG','','USG0096','H','',0,0,'','','USG ABD + KUB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','riya','2025-10-29 10:36:02','I','N',99,'','','','','riya','2025-10-29 10:36:02','','0000-00-00 00:00:00'),(0,0,'USG','','USG0097','H','',0,0,'','','USG ABD + KUB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','riya','2025-10-29 10:37:16','I','N',99,'','','','','riya','2025-10-29 10:37:16','','0000-00-00 00:00:00'),(0,0,'USG','','USG0098','H','',0,0,'','','USG SCROTUM CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-11-12 11:50:14','I','N',99,'','','','','vishal','2025-11-12 11:50:14','','0000-00-00 00:00:00'),(0,0,'USG','','USG0099','H','',0,0,'','','USG ABDOMEN WITH THORAX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-11-14 18:04:35','I','N',99,'','','','','vishal','2025-11-14 18:04:35','','0000-00-00 00:00:00'),(0,0,'USG','','USG0100','H','',0,0,'','','USG GUIDED PIGTAIL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,3000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-11-14 18:25:04','I','N',99,'','','','','vishal','2025-11-14 18:25:04','','0000-00-00 00:00:00'),(0,0,'USG','','USG0101','H','',0,0,'','','PIGTAIL CATHETER INSERTION ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-11-14 18:25:41','I','N',99,'','','','','vishal','2025-11-14 18:25:41','','0000-00-00 00:00:00'),(0,0,'USG','','USG0102','H','',0,0,'','','GRAFT WITH USG COLOR DOPPLER ABDOMEN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,4300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-12-16 20:10:17','I','N',99,'','','','','vishal','2025-12-16 20:10:17','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0001','H','',0,0,'','',' ROTATEQ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1175,1175,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0002','H','',0,0,'','',' ROTAVAC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',689,689,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0003','H','',0,0,'','','BIOVAC - A','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1744,1744,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0004','H','',0,0,'','','CERVARIX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2640,2640,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0005','H','',0,0,'','','COVID 19 VACCINE CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0006','H','',0,0,'','','COVID 19 VACCINE CHARGE - STAFF/ STAFF FAMILY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0007','H','',0,0,'','','EASY FIVE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0008','H','',0,0,'','','EASY FOUR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0009','H','',0,0,'','','EASY SIX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2392,2392,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0010','H','',0,0,'','','ENTROSHIELD 0.50 PFS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0011','H','',0,0,'','','GARDASIL 0.5 ML','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3927,3927,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0012','H','',0,0,'','','GENEVAC- B (O.5 ML)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',41,41,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0013','H','',0,0,'','','HAVRIX PED','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2099,2099,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0014','H','',0,0,'','','HEXAXIM VACCINE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3900,3900,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0015','H','',0,0,'','','INFANRIX HEXA ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3399,3399,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0016','H','',0,0,'','','JEEV VACCINE ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',559,559,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0017','H','',0,0,'','','MENACTRA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4950,4950,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0018','H','',0,0,'','','PENTAVAC-SD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',420,420,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0019','H','',0,0,'','','PNEUMOVAX 23 VACCINE 0.5ML','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0020','H','',0,0,'','','PREVANAR 13','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3991,3991,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0021','H','',0,0,'','','ROTARIX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1770,1770,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0022','H','',0,0,'','','ROTASURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',729,729,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0023','H','',0,0,'','','TRESIVAC VACCINE (MMR) 0.5ML','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0024','H','',0,0,'','','TUBERVAC VACCINE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',94,94,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0025','H','',0,0,'','','TYPBAR TCV (CONJUCATE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1945,1945,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0026','H','',0,0,'','','VACCINES BOOSTRICX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1299,1299,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0027','H','',0,0,'','','VACCINES INFLUVAC TETRA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2024,2024,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0028','H','',0,0,'','','VACCINES RABIVAX-S','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',398,398,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0029','H','',0,0,'','','VACCINES SYNFLORIX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2399,2399,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0030','H','',0,0,'','','VACCINES TT (TETANUS)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',11,11,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0031','H','',0,0,'','','VARILRIX VACCINE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2029,2029,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0032','H','',0,0,'','','VARIPED VACCINE(VARICELLA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2080,2080,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VACC','','VACC0033','H','',0,0,'','','ZUVICELLA VIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1350,1350,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0001','H','',0,0,'','','Abdominal Aortic Aneurysm','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0002','H','',0,0,'','','Aorta Iliac','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0003','H','',0,0,'','','AortoBifemoral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0004','H','',0,0,'','','AV Fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0005','H','',0,0,'','','Axillo Femoral Bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0006','H','',0,0,'','','CAROTICO BRACHIAL BYPASS USING SYNTHETIC GRAFT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0007','H','',0,0,'','','Carotid Bypass graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0008','H','',0,0,'','','Carotid endarterectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0009','H','',0,0,'','','Cervical Sympathectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0010','H','',0,0,'','','Congenital A.V. Fistula','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0011','H','',0,0,'','','D.V.T. Thrombolysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0012','H','',0,0,'','','Endarteractomy of any peripheral Vessel','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0013','H','',0,0,'','','Excision of Carotid body Tumor','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0014','H','',0,0,'','','Excision of Carotid body tumour with use of Shunt','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0015','H','',0,0,'','','Excision of Varicose Veins Double(laser)/RF Ablation - Bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0016','H','',0,0,'','','Excision of Varicose Veins Double(laser)/RF Ablation - Unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0017','H','',0,0,'','','FASCIOTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',5,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0018','H','',0,0,'','','Femoral crossed - Leg Graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0019','H','',0,0,'','','Femoral Embolectomy Bilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0020','H','',0,0,'','','Femoral Embolectomy Unilateral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0021','H','',0,0,'','','FEMORAL TO POST TIBIAL ARTERY BYPASS WITH SVG GRAFT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',10,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0022','H','',0,0,'','','Femoro popliteal Bypass Using Synthetic graft','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0023','H','',0,0,'','','Femoropopiliteal Bypass Using Autogenous Vein','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0024','H','',0,0,'','','FOAM SCLEROTHERAPY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',4,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0025','H','',0,0,'','','Lumbar Sympathectomy','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0026','H','',0,0,'','','Peripheral Aneurysm','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0027','H','',0,0,'','','Peripheral Vascular Injury Repair','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0028','H','',0,0,'','','PHLEBOTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0029','H','',0,0,'','','POPLITEAL EMBOLECTOMY UNILATERAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0030','H','',0,0,'','','Profundaplasty Using Patch','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',7,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0031','H','',0,0,'','','RESECTION AND/OR GRAFTING FOR ANEURYSMS-THORACIC','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0032','H','',0,0,'','','Subclavian Bypass','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0033','H','',0,0,'','','Thromboendertectomy Aorta','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',9,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0034','H','',0,0,'','','Thromboendertectomy Femoral','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0035','H','',0,0,'','','Thromboendertectomy Iliac','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0036','H','',0,0,'','','Thromboendertectomy Popliteal','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',8,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',0,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'VASS','','VASS0037','H','',0,0,'','','VARICOSE VEIN SURGERY UNILATERAL(OPEN)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',6,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0001','H','',0,0,'','','ANAESTHESIA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2100,2100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0002','H','',0,0,'','','ANTERIOR NASAL PACKING (EPISTAXIS) ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1750,1750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0003','H','',0,0,'','','ARTERIAL LINE CANULATION ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1750,1750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0004','H','',0,0,'','','ASCITIC ABDOMINAL TAPPING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2300,2300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0005','H','',0,0,'','','BARRIER NURSING CHARGES PER DAY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1750,1750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0006','H','',0,0,'','','BIOTHESIOMETER STUDY ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0007','H','',0,0,'','','BIPAP MASK ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2300,2300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0008','H','',0,0,'','','BLOOD OR COMPONENT TRANSFUSION ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0009','H','',0,0,'','','BONE MARROW BIOPSY ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'Y','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0010','H','',0,0,'','','BOWEL WASH ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0011','H','',0,0,'','','CATHETERIZATION (URETHRAL) ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0012','H','',0,0,'','','CENTRAL LINE/ ANY OTHER LINE - COVID','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0013','H','',0,0,'','','CENTRAL VENOUS LINE CANNULATION ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2300,2300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0014','H','',0,0,'','','CODE BLUE (CONSUMABLES WILL BE CHARGED EXTRA) ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2300,2300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0015','H','',0,0,'','','COLOSTOMY CARE ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0016','H','',0,0,'','','DEBRIDEMENT AND STITCHING CHARGE ? MAJOR ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1400,1400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0017','H','',0,0,'','','DEFAB PACING PAD CHARGES ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3500,3500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0018','H','',0,0,'','','DIABETIC FOOT ANALYSIS ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0019','H','',0,0,'','','DIRECT LARYNGOSCOPY ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0020','H','',0,0,'','','E. P. STUDY ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1500,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0021','H','',0,0,'','','ECG CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0022','H','',0,0,'','','ECHO COLOUR DOPPLER ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0023','H','',0,0,'','','ENDOTRACHEAL INTUBATION ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0024','H','',0,0,'','','ENEMA CHARGES ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',130,130,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0025','H','',0,0,'','','ENT WITH AUDIOMETRY ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',850,850,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0026','H','',0,0,'','','EPIDURAL CATHATERISATION ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1750,1750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0027','H','',0,0,'','','EPIDURAL INJECTION ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0028','H','',0,0,'','','FEMORAL BLOCK ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0029','H','',0,0,'','','FEMORAL PUNCTURE ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0030','H','',0,0,'','','FIBRO OPTIC FLEXIBLE NASOPHARYNGO ? LARYNGOSCOPY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1300,1300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0031','H','',0,0,'','','FOREIGN BODY REMOVAL ?EYE ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1750,1750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0032','H','',0,0,'','','GASTRIC LAVAGE ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0033','H','',0,0,'','','HD CATHETOR INSERTION - COVID','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0034','H','',0,0,'','','HEMODIALYSIS CATHETER INSERTION ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2900,2900,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0035','H','',0,0,'','','ICD INSERTION CHARGES ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0036','H','',0,0,'','','ICD REMOVAL CHARGES ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0037','H','',0,0,'','','IM INJECTION ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',20,20,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0038','H','',0,0,'','','IMMUNOSUPPRESSION THERAPY ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',15000,15000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0039','H','',0,0,'','','INFUSION CHARGES PER BOTTLE ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80,80,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0040','H','',0,0,'','','INTER COSTAL DRAINAGE ?ICD ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',4600,4600,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0041','H','',0,0,'','','INTRA VASCULAR THROMBOLYSIS ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3500,3500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0042','H','',0,0,'','','IV INJECTION ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0043','H','',0,0,'','','LITHOTRIPSY CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0044','H','',0,0,'','','LUMBER PUNCTURE ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1100,1100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0045','H','',0,0,'','','MICROSCOPIC EXAMINATION OF EAR ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0046','H','',0,0,'','','MINOR PROCEDURE CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0047','H','',0,0,'','','MONITOR CHARGES ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0048','H','',0,0,'','','NASAL AND SINUS ENDOSCOPY ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0049','H','',0,0,'','','NEBULIZER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',70,70,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0050','H','',0,0,'','','NS PINE 100 ML','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0051','H','',0,0,'','','NS PINE 500 ML','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0052','H','',0,0,'','','P.D. CATHETER REPOSITIONING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',750,750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0053','H','',0,0,'','','PLASTER REMOVAL CHARGE ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',350,350,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0054','H','',0,0,'','','PLEURAL BIOPSY ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0055','H','',0,0,'','','PLEURAL TAPPING ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1700,1700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0056','H','',0,0,'','','POLYTRAUMA RESUSCITATION (CONSUMABLE EXTRA) ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0057','H','',0,0,'','','R T FEEDING PER DAY ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0058','H','',0,0,'','','R T INSERTION ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0059','H','',0,0,'','','RADIOLOGY EXTRA FILM CHARGES PER FILM ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0060','H','',0,0,'','','RANDOM BLOOD SUGAR BY GLUCOMETER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',60,60,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0061','H','',0,0,'','','RESUSCITATION MAJOR ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1750,1750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0062','H','',0,0,'','','RESUSCITATION MINOR ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0063','H','',0,0,'','','ROOM HEATER CHARGES PER DAY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0064','H','',0,0,'','','saturing charges - large','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0065','H','',0,0,'','','saturing charges - medium','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0066','H','',0,0,'','','saturing charges - small','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0067','H','',0,0,'','','SPECIAL THERAPEUTIC DRIP ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0068','H','',0,0,'','','SPECIALIZED NURSING CARE PER DAY ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0069','H','',0,0,'','','SUBCUTANEOUS INJECTION ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0070','H','',0,0,'','','SUPRAPUBIC CYSTOTOMY UNDER LA ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0071','H','',0,0,'','','TEMPORARY PACEMAKER INSERTION CHARGES ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',6000,6000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0072','H','',0,0,'','','TRANS VENOUS PACING ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1750,1750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0073','H','',0,0,'','','URINE KETONE ? WARD/ICU ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0074','H','',0,0,'','','URINE SUGAR (STRIP METHOD) ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0075','H','',0,0,'','','VEIN FLOW INSERTION BY ANESTHETIST ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0076','H','',0,0,'','','WAX REMOVAL ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',100,100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0077','H','',1,0,'','','PC ENEMA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-11 19:01:13','I','N',99,'','','','','vishal','2025-10-11 19:00:56','vishal','2025-10-11 19:01:13'),(0,0,'WPRC','','WPRC0078','H','',0,0,'','','ECG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,300,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-11 19:31:42','I','N',99,'','','','','vishal','2025-10-11 19:31:42','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0079','H','',1,0,'','','FOLEYS CATHETER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,750,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-10-12 18:54:17','I','N',99,'','','','','vishal','2025-10-11 19:32:20','vishal','2025-10-12 18:54:17'),(0,0,'WPRC','','WPRC0080','H','',0,0,'','','RCC TRANSFUSION CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-11 20:26:48','I','N',99,'','','','','vishal','2025-10-11 20:26:48','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0081','H','',1,0,'','','AIR BED CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-12 11:15:25','I','N',99,'','','','','vishal','2025-10-12 11:14:37','vishal','2025-10-12 11:15:25'),(0,0,'WPRC','','WPRC0082','H','',0,0,'','','AIR BED CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-12 11:18:23','I','N',99,'','','','','vishal','2025-10-12 11:18:23','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0083','H','',1,0,'','','DRESSING CHARGE - MINOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,200,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-10-13 12:35:04','I','N',99,'','','','','vishal','2025-10-12 11:19:33','vishal','2025-10-13 12:35:04'),(0,0,'WPRC','','WPRC0084','H','',1,0,'','','R T INSERTION CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-12 11:22:47','I','N',99,'','','','','vishal','2025-10-12 11:21:42','vishal','2025-10-12 11:22:47'),(0,0,'WPRC','','WPRC0085','H','',0,0,'','','VENTILATOR CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-12 12:39:43','I','N',99,'','','','','vishal','2025-10-12 12:39:43','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0086','H','',0,0,'','','OXYGEN CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-12 12:39:57','I','N',99,'','','','','vishal','2025-10-12 12:39:57','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0087','H','',0,0,'','','SYRINGE PUMP CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-12 12:40:16','I','N',99,'','','','','vishal','2025-10-12 12:40:16','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0088','H','',1,0,'','','ENDOTRACHEAL INTUBATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-10-19 18:44:09','I','N',99,'','','','','vishal','2025-10-12 12:41:51','vishal','2025-10-19 18:44:09'),(0,0,'WPRC','','WPRC0089','H','',1,0,'','','NEB CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-12 14:37:53','I','N',99,'','','','','vishal','2025-10-12 14:37:30','vishal','2025-10-12 14:37:53'),(0,0,'WPRC','','WPRC0090','H','',0,0,'','','X-RAY CHEST BEDSIDE ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-10-12 14:57:10','I','N',99,'','','','','reception','2025-10-12 14:57:10','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0091','H','',0,0,'','','FFP TRANSFUSION CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-12 15:13:04','I','N',99,'','','','','vishal','2025-10-12 15:13:04','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0092','H','',0,0,'','','CVP (CENTRAL LINE INSERTION) CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,3000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-10-12 15:15:14','I','N',99,'','','','','vishal','2025-10-12 15:15:14','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0093','H','',0,0,'','','SDP TRANSFUSION CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','reception','2025-10-12 16:10:47','I','N',99,'','','','','reception','2025-10-12 16:10:47','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0094','H','',1,0,'','','RT LOWER LIMB ARTERIAL DOPPLER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,2800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','reception','2025-10-12 16:17:53','I','N',99,'','','','','reception','2025-10-12 16:16:53','reception','2025-10-12 16:17:53'),(0,0,'WPRC','','WPRC0095','H','',0,0,'','','RT LOWER LIMB VENOUS DOPPLER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,2800,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','reception','2025-10-12 16:17:31','I','N',99,'','','','','reception','2025-10-12 16:17:31','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0096','H','',0,0,'','','X-RAY RT KNEE AP LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-12 18:08:21','I','N',99,'','','','','vishal','2025-10-12 18:08:21','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0097','H','',0,0,'','','2D ECHO','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,2000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-10-16 11:27:08','I','N',99,'','','','','vishal','2025-10-16 11:27:08','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0098','H','',0,0,'','','ICU MONITORING CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-17 14:43:07','I','N',99,'','','','','vishal','2025-10-17 14:43:07','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0099','H','',0,0,'','','X-RAY LT WRIST AP LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-19 11:15:06','I','N',99,'','','','','vishal','2025-10-19 11:15:06','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0100','H','',0,0,'','','LUMBAR PUNCTURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,3000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-10-19 18:33:15','I','N',99,'','','','','vishal','2025-10-19 18:33:15','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0101','H','',0,0,'','','BI PAP VENTILATOR CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-19 18:38:59','I','N',99,'','','','','vishal','2025-10-19 18:38:59','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0102','H','',0,0,'','','ICU OBSERVATION CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-20 11:39:58','I','N',99,'','','','','vishal','2025-10-20 11:39:58','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0103','H','',0,0,'','','TLC CATHETER CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,3000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-10-20 14:25:40','I','N',99,'','','','','vishal','2025-10-20 14:25:40','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0104','H','',0,0,'','','HEMODIALYSIS CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,6000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-10-20 14:27:09','I','N',99,'','','','','vishal','2025-10-20 14:27:09','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0105','H','',0,0,'','','MONITOR CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-11-01 14:41:18','I','N',99,'','','','','vishal','2025-11-01 14:41:18','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0106','H','',0,0,'','','GASTRIC LAVAGE ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-11-01 15:46:35','I','N',99,'','','','','vishal','2025-11-01 15:46:35','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0107','H','',0,0,'','','MANUAL STOOL REMOVAL PROCEDURE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-11-08 09:07:26','I','N',99,'','','','','vishal','2025-11-08 09:07:26','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0108','H','',1,0,'','','X-RAY SHOULDER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1000,NULL,'',0,'N','N','N',0,'','U','','N','N','Y','vishal','2025-11-08 14:32:15','I','N',99,'','','','','vishal','2025-11-08 14:31:04','vishal','2025-11-08 14:32:15'),(0,0,'WPRC','','WPRC0109','H','',0,0,'','','CSF CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,3000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-11-12 11:53:22','I','N',99,'','','','','vishal','2025-11-12 11:53:22','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0110','H','',0,0,'','','TRACHEOSTOMY CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,10000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-11-12 11:57:34','I','N',99,'','','','','vishal','2025-11-12 11:57:34','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0111','H','',0,0,'','','TRACHEOSTOMY CHANGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-11-17 16:02:31','I','N',99,'','','','','vishal','2025-11-17 16:02:31','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0112','H','',1,0,'','','USG CHEST A+P','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','riya','2025-11-20 10:52:35','I','N',99,'','','','','riya','2025-11-20 10:48:02','riya','2025-11-20 10:52:35'),(0,0,'WPRC','','WPRC0113','H','',2,0,'','','USG GUIDED PLURAL TAPPING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','riya','2025-11-20 10:52:26','I','N',99,'','','','','riya','2025-11-20 10:49:21','riya','2025-11-20 10:52:26'),(0,0,'WPRC','','WPRC0114','H','',0,0,'','','DRESSING CHARGE - MAJOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-11-21 16:02:59','I','N',99,'','','','','vishal','2025-11-21 16:02:59','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0115','H','',0,0,'','','DLC PROCEDURE CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,5000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','riya','2025-11-23 11:43:36','I','N',99,'','','','','riya','2025-11-23 11:43:36','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0116','H','',0,0,'','','SLED DIALYSIS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,8000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','riya','2025-11-24 12:06:12','I','N',99,'','','','','riya','2025-11-24 12:06:12','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0117','H','',0,0,'','','USG KUB CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','riya','2025-11-24 12:09:53','I','N',99,'','','','','riya','2025-11-24 12:09:53','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0118','H','',0,0,'','','CO2 MONITORING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-11-28 15:48:36','I','N',99,'','','','','vishal','2025-11-28 15:48:36','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0119','H','',0,0,'','','INTRATHECAL CATHETER CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,4000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','vishal','2025-11-30 19:51:08','I','N',99,'','','','','vishal','2025-11-30 19:51:08','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0120','H','',0,0,'','','USG GUIDED TAPPING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','riya','2025-12-04 14:01:19','I','N',99,'','','','','riya','2025-12-04 14:01:19','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0121','H','',0,0,'','','THERAPUTIC TAPPING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2500,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','riya','2025-12-04 14:07:40','I','N',99,'','','','','riya','2025-12-04 14:07:40','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0122','H','',0,0,'','','PLASMAPHERESIS CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,6000,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','riya','2025-12-10 15:38:42','I','N',99,'','','','','riya','2025-12-10 15:38:42','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0123','H','',0,0,'','','X-RAY RT TIBIA AP AND LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-12-17 13:40:18','I','N',99,'','','','','vishal','2025-12-17 13:40:18','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0124','H','',0,0,'','','K-90','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1000,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-12-17 17:24:55','I','N',99,'','','','','vishal','2025-12-17 17:24:55','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0125','H','',0,0,'','','PCV TRANSFUSION CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','vishal','2025-12-21 11:13:13','I','N',99,'','','','','vishal','2025-12-21 11:13:13','','0000-00-00 00:00:00'),(0,0,'XRCG','','XRCG0001','H','',0,0,'','','Abdomen AP Supine or Erect (One film)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',126,126,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0002','H','',0,0,'','','Abdomen Lateral view (one film)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',120,120,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0003','H','',0,0,'','','Chest PA view (one film)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',60,60,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0004','H','',0,0,'','','Chest Lateral (one film)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',60,60,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0005','H','',0,0,'','','Mastoids: Towne view, oblique views (3 films)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',225,225,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0006','H','',0,0,'','','Extremities, bones  & Joints AP & Lateral views\n(Two films)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',230,230,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0007','H','',0,0,'','','Pelvis A.P  (one film)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',110,110,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0008','H','',0,0,'','','T. M. Joints (one film)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',110,110,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0009','H','',0,0,'','','Abdomen & Pelvis for K. U. B.','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',128,128,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0010','H','',0,0,'','','Skull A. P. & Lateral (2 films)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',255,255,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0011','H','',0,0,'','','Spine A. P. & Lateral (2 films)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0012','H','',0,0,'','','PNS view (1 film)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',110,110,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0013','H','',0,0,'','','Barium Swallow','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',459,459,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0014','H','',0,0,'','','Barium Upper GI study','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',720,720,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0015','H','',0,0,'','','Barium Upper GI study (Double contrast)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',842,842,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0016','H','',0,0,'','','Barium Meal follow through','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',842,842,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0017','H','',0,0,'','','Barium Enema (Single contrast/double contrast)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',765,765,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0018','H','',0,0,'','','Small bowel  enteroclysis','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1020,1020,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0019','H','',0,0,'','','ERCP (Endoscopic Retrograde Cholangio ?\nPancreatography)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2250,2250,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0020','H','',0,0,'','','General :Fistulography\n/Sinography/Sialography/Dacrocystography/   T- Tube cholangiogram/Nephrostogram','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',574,574,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0021','H','',0,0,'','','Percutaneous transhepatic cholangiography (PTC)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1296,1296,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0022','H','',0,0,'','','Intravenous Pyelography (IVP)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1100,1100,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0023','H','',0,0,'','','Micturating  Cystourethrography (MCU)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',612,612,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0024','H','',0,0,'','','Retrograde Urethrography (RGU)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',612,612,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0025','H','',0,0,'','','Contrast Hystero-Salpingography (HSG)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1020,1020,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0026','H','',0,0,'','','X ray - Arthrography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',700,700,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0027','H','',0,0,'','','Cephalography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0028','H','',0,0,'','','Myelography','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2475,2475,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRCG','','XRCG0029','H','',0,0,'','','Diagnostic Digital Subtraction Angiography\n(DSA)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1749,1749,NULL,'',0,'N','N','Y',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','0000-00-00 00:00:00','','0000-00-00 00:00:03'),(0,0,'XRY','','XRY0001','H','',0,0,'','','EXTRA X-RAY FILM CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,150,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0002','H','',0,0,'','','EXTRA X-RAY FILM CHARGE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0003','H','',0,0,'','','MAMMOGRAPHY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1200,1200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0004','H','',0,0,'','','MCU (MICTURATING CYSTOURETHROGRAPHY)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1450,1450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0005','H','',0,0,'','','RGU (RETRO GRADE URETHROGRAPHY)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1450,1450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0006','H','',0,0,'','','X RAY - DENTAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80,80,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0007','H','',2,0,'','','X-RAY  DL SPINE AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','shweta','2025-10-10 16:27:59','I','N',600,'','','','','thims','2024-04-01 13:18:00','shweta','2025-10-10 16:27:59'),(0,0,'XRY','','XRY0008','H','',1,0,'','','X-RAY  DL SPINE AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','shweta','2025-10-10 16:28:14','I','N',99,'','','','','thims','2024-04-01 13:18:00','shweta','2025-10-10 16:28:14'),(0,0,'XRY','','XRY0009','H','',1,0,'','','X-RAY ABDOMEN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','shweta','2025-10-10 16:28:27','I','N',99,'','','','','thims','2024-04-01 13:18:00','shweta','2025-10-10 16:28:27'),(0,0,'XRY','','XRY0010','H','',0,0,'','','X-RAY ABDOMEN (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0011','H','',1,0,'','','X-RAY BOTH ANKLE AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','shweta','2025-10-10 16:28:42','I','N',99,'','','','','thims','2024-04-01 13:18:00','shweta','2025-10-10 16:28:42'),(0,0,'XRY','','XRY0012','H','',0,0,'','','X-RAY BOTH ANKLE AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0013','H','',0,0,'','','X-RAY BOTH CALCACEUM LATERAL VIEW','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0014','H','',0,0,'','','X-RAY BOTH CALCACEUM LATERAL VIEW (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0015','H','',0,0,'','','X-RAY BOTH CALCANEUS AXIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0016','H','',0,0,'','','X-RAY BOTH CALCANEUS AXIAL (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0017','H','',1,0,'','','X-RAY BOTH KNEE AP STANDING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','shweta','2025-10-10 16:29:08','I','N',99,'','','','','thims','2024-04-01 13:18:00','shweta','2025-10-10 16:29:08'),(0,0,'XRY','','XRY0018','H','',0,0,'','','X-RAY BOTH KNEE AP STANDING (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0019','H','',0,0,'','','X-RAY BOTH KNEE LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0020','H','',0,0,'','','X-RAY BOTH KNEE LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0021','H','',0,0,'','','X-RAY BOTH NASAL BONE LATERAL VIEW','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0022','H','',0,0,'','','X-RAY BOTH NASAL BONE LATERAL VIEW (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0023','H','',0,0,'','','X-RAY BOTH PATELLA AXIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0024','H','',0,0,'','','X-RAY BOTH PATELLA AXIAL (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0025','H','',0,0,'','','X-RAY BOTH WRIST AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0026','H','',0,0,'','','X-RAY BOTH WRIST AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0027','H','',0,0,'','','X-RAY BOTH WRIST LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0028','H','',0,0,'','','X-RAY BOTH WRIST LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0029','H','',0,0,'','','X-RAY CARPAL (WRIST JOINT) - OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0030','H','',0,0,'','','X-RAY CARPAL (WRIST JOINT) - OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0031','H','',0,0,'','','X-RAY CARPAL (WRIST JOINT) AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0032','H','',0,0,'','','X-RAY CARPAL (WRIST JOINT) AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0033','H','',0,0,'','','X-RAY CARPAL (WRIST JOINT) AP AND LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0034','H','',0,0,'','','X-RAY CARPAL (WRIST JOINT) AP AND LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0035','H','',0,0,'','','X-RAY CARPAL (WRIST JOINT)- LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0036','H','',0,0,'','','X-RAY CARPAL (WRIST JOINT)- LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0037','H','',0,0,'','','X-RAY CERVICAL DORSAL JUNCTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0038','H','',0,0,'','','X-RAY CERVICAL DORSAL JUNCTION (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0039','H','',0,0,'','','X-RAY CERVICAL DORSAL SPINE AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0040','H','',0,0,'','','X-RAY CERVICAL DORSAL SPINE AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0041','H','',0,0,'','','X-RAY CERVICAL DORSAL SPINE AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0042','H','',0,0,'','','X-RAY CERVICAL DORSAL SPINE AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0043','H','',0,0,'','','X-RAY CERVICAL DORSAL SPINE LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0044','H','',0,0,'','','X-RAY CERVICAL DORSAL SPINE LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0045','H','',1,0,'','','X RAY CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','shweta','2025-10-13 09:43:18','I','N',99,'','','','','thims','2024-04-01 13:18:00','shweta','2025-10-13 09:43:18'),(0,0,'XRY','','XRY0046','H','',0,0,'','','X-RAY CERVICAL DORSAL SPINE SWIMMER\'S VIEW','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0047','H','',0,0,'','','X-RAY CERVICAL DORSAL SPINE SWIMMER\'S VIEW (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0048','H','',0,0,'','','X-RAY CERVICAL OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0049','H','',0,0,'','','X-RAY CERVICAL OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0050','H','',0,0,'','','X-RAY CERVICAL SPINE AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0051','H','',0,0,'','','X-RAY CERVICAL SPINE AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0052','H','',0,0,'','','X-RAY CERVICAL SPINE AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0053','H','',0,0,'','','X-RAY CERVICAL SPINE AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0054','H','',0,0,'','','X-RAY CERVICAL SPINE LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0055','H','',0,0,'','','X-RAY CERVICAL SPINE LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0056','H','',0,0,'','','X-RAY CHEST AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0057','H','',0,0,'','','X-RAY CHEST AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0058','H','',0,0,'','','X-RAY CHEST FOR RIBS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0059','H','',0,0,'','','X-RAY CHEST FOR RIBS (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0060','H','',0,0,'','','X-RAY CHEST LORDOTIC VIEW','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0061','H','',0,0,'','','X-RAY CHEST LORDOTIC VIEW (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0062','H','',0,0,'','','X-RAY CHEST PA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','C','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0063','H','',0,0,'','','X-RAY CHEST PA (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0064','H','',0,0,'','','X-RAY CHEST PA/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0065','H','',0,0,'','','X-RAY CHEST PA/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0066','H','',0,0,'','','X-RAY Cl C2 OPEN MOUTH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0067','H','',0,0,'','','X-RAY Cl C2 OPEN MOUTH (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0068','H','',0,0,'','','X-RAY COCCYX AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0069','H','',0,0,'','','X-RAY COCCYX AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0070','H','',0,0,'','','X-RAY COCCYX AP / LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0071','H','',0,0,'','','X-RAY COCCYX AP / LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0072','H','',0,0,'','','X-RAY COCCYX LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0073','H','',0,0,'','','X-RAY COCCYX LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0074','H','',0,0,'','','X-RAY DL SPINE AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0075','H','',0,0,'','','X-RAY DL SPINE AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',750,750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0076','H','',0,0,'','','X-RAY DL SPINE LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0077','H','',0,0,'','','X-RAY DL SPINE LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0078','H','',0,0,'','','X-RAY DL SPINE OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0079','H','',0,0,'','','X-RAY DL SPINE OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0080','H','',0,0,'','','X-RAY DLS SPINE AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0081','H','',0,0,'','','X-RAY DORSAL SPINE AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0082','H','',0,0,'','','X-RAY DORSAL SPINE AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0083','H','',0,0,'','','X-RAY DORSAL SPINE AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0084','H','',0,0,'','','X-RAY DORSAL SPINE AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0085','H','',0,0,'','','X-RAY DORSAL SPINE LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0086','H','',0,0,'','','X-RAY DORSAL SPINE LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0087','H','',0,0,'','','X-RAY DORSAL SPINE OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0088','H','',0,0,'','','X-RAY DORSAL SPINE OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0089','H','',0,0,'','','X-RAY HIP AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0090','H','',0,0,'','','X-RAY HIP AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0091','H','',0,0,'','','X-RAY HIP LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0092','H','',0,0,'','','X-RAY HIP LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0093','H','',0,0,'','','X-RAY INTERCONDYLAR NOTCH (KNEE) SKYLINE VIEW','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0094','H','',0,0,'','','X-RAY INTERCONDYLAR NOTCH (KNEE) SKYLINE VIEW (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',375,375,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0095','H','',0,0,'','','X-RAY INTERCONDYLAR NOTCH (KNEE)skyline view (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0096','H','',0,0,'','','X-RAY KUB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0097','H','',0,0,'','','X-RAY KUB (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',375,375,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0098','H','',0,0,'','','X-RAY LEFT ANKLE AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0099','H','',0,0,'','','X-RAY LEFT ANKLE AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0100','H','',0,0,'','','X-RAY LEFT ANKLE AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0101','H','',0,0,'','','X-RAY LEFT ANKLE AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0102','H','',0,0,'','','X-RAY LEFT ANKLE LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0103','H','',0,0,'','','X-RAY LEFT ANKLE LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0104','H','',0,0,'','','X-RAY LEFT ANKLE OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0105','H','',0,0,'','','X-RAY LEFT ANKLE OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0106','H','',0,0,'','','X-RAY LEFT ANKLE WITH T-F AP/LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0107','H','',0,0,'','','X-RAY LEFT ARM AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0108','H','',0,0,'','','X-RAY LEFT ARM AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0109','H','',0,0,'','','X-RAY LEFT ARM AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0110','H','',0,0,'','','X-RAY LEFT ARM AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0111','H','',0,0,'','','X-RAY LEFT ARM LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0112','H','',0,0,'','','X-RAY LEFT ARM LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0113','H','',0,0,'','','X-RAY LEFT ARM WITH ELBOW AP / LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0114','H','',0,0,'','','X-RAY LEFT ARM WITH ELBOW AP / LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0115','H','',0,0,'','','X-RAY LEFT CALCANEUM - LAT & AXIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0116','H','',0,0,'','','X-RAY LEFT CALCANEUM - LAT & AXIAL (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0117','H','',0,0,'','','X-RAY LEFT CALCANEUM AXIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0118','H','',0,0,'','','X-RAY LEFT CALCANEUM AXIAL (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0119','H','',0,0,'','','X-RAY LEFT CALCANEUM LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0120','H','',0,0,'','','X-RAY LEFT CALCANEUM LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0121','H','',0,0,'','','X-RAY LEFT CARPAL (WRIST JOINT) AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0122','H','',0,0,'','','X-RAY LEFT CARPAL (WRIST JOINT) AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0123','H','',0,0,'','','X-RAY LEFT CARPAL (WRIST JOINT) AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0124','H','',0,0,'','','X-RAY LEFT CARPAL (WRIST JOINT) AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0125','H','',0,0,'','','X-RAY LEFT CARPAL (WRIST JOINT) LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0126','H','',0,0,'','','X-RAY LEFT CARPAL (WRIST JOINT) LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0127','H','',0,0,'','','X-RAY LEFT CARPAL (WRIST JOINT) OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0128','H','',0,0,'','','X-RAY LEFT CARPAL (WRIST JOINT) OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0129','H','',0,0,'','','X-RAY LEFT CLAVICLE AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0130','H','',0,0,'','','X-RAY LEFT CLAVICLE AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0131','H','',0,0,'','','X-RAY LEFT CLAVICLE OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0132','H','',0,0,'','','X-RAY LEFT CLAVICLE OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0133','H','',0,0,'','','X-RAY LEFT CLAVICLE WITH SHOULDER AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0134','H','',0,0,'','','X-RAY LEFT CLAVICLE WITH SHOULDER AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0135','H','',0,0,'','','X-RAY LEFT ELBOW AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0136','H','',0,0,'','','X-RAY LEFT ELBOW AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0137','H','',0,0,'','','X-RAY LEFT ELBOW AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0138','H','',0,0,'','','X-RAY LEFT ELBOW AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0139','H','',0,0,'','','X-RAY LEFT ELBOW LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0140','H','',0,0,'','','X-RAY LEFT ELBOW LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0141','H','',0,0,'','','X-RAY LEFT ELBOW WITH FOREARM WITH WRIST AP/LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0142','H','',0,0,'','','X-RAY LEFT ELBOW WITH FOREARM WITH WRIST AP/LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0143','H','',0,0,'','','X-RAY LEFT FEMUR WITH KNEE AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0144','H','',0,0,'','','X-RAY LEFT FEMUR WITH KNEE AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0145','H','',0,0,'','','X-RAY LEFT FINGER AP/OBLIQUE/LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0146','H','',0,0,'','','X-RAY LEFT FINGER AP/OBLIQUE/LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0147','H','',0,0,'','','X-RAY LEFT FOOT AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0148','H','',0,0,'','','X-RAY LEFT FOOT AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0149','H','',0,0,'','','X-RAY LEFT FOOT AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0150','H','',0,0,'','','X-RAY LEFT FOOT AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0151','H','',0,0,'','','X-RAY LEFT FOOT AP/OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0152','H','',0,0,'','','X-RAY LEFT FOOT AP/OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0153','H','',0,0,'','','X-RAY LEFT FOOT LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0154','H','',0,0,'','','X-RAY LEFT FOOT LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0155','H','',0,0,'','','X-RAY LEFT FOOT OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0156','H','',0,0,'','','X-RAY LEFT FOOT OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0157','H','',0,0,'','','X-RAY LEFT FOREARM AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0158','H','',0,0,'','','X-RAY LEFT FOREARM AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0159','H','',0,0,'','','X-RAY LEFT FOREARM OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0160','H','',0,0,'','','X-RAY LEFT FOREARM OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0161','H','',0,0,'','','X-RAY LEFT FOREARM WITH WRIST AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0162','H','',0,0,'','','X-RAY LEFT FOREARM WITH WRIST AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0163','H','',0,0,'','','X-RAY LEFT HAND AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0164','H','',0,0,'','','X-RAY LEFT HAND AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0165','H','',0,0,'','','X-RAY LEFT HAND AP/OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0166','H','',0,0,'','','X-RAY LEFT HAND AP/OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0167','H','',0,0,'','','X-RAY LEFT HAND LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0168','H','',0,0,'','','X-RAY LEFT HAND LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0169','H','',0,0,'','','X-RAY LEFT HAND OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0170','H','',0,0,'','','X-RAY LEFT HAND OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0171','H','',0,0,'','','X-RAY LEFT HIP AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0172','H','',0,0,'','','X-RAY LEFT HIP AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0173','H','',0,0,'','','X-RAY LEFT HIP AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0174','H','',0,0,'','','X-RAY LEFT HIP AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0175','H','',0,0,'','','X-RAY LEFT HIP FROG\'S VIEW','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0176','H','',0,0,'','','X-RAY LEFT HIP FROG\'S VIEW (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0177','H','',0,0,'','','X-RAY LEFT HIP LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0178','H','',0,0,'','','X-RAY LEFT HIP LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0179','H','',0,0,'','','X-RAY LEFT HIP WITH FEMUR AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0180','H','',0,0,'','','X-RAY LEFT HIP WITH FEMUR AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0181','H','',0,0,'','','X-RAY LEFT HIP WITH FEMUR AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0182','H','',0,0,'','','X-RAY LEFT INTERCONDYLAR NOTCH (KNEE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0183','H','',0,0,'','','X-RAY LEFT INTERCONDYLAR NOTCH (KNEE) (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0184','H','',0,0,'','','X-RAY LEFT KNEE AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0185','H','',0,0,'','','X-RAY LEFT KNEE AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0186','H','',0,0,'','','X-RAY LEFT KNEE AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0187','H','',0,0,'','','X-RAY LEFT KNEE AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0188','H','',0,0,'','','X-RAY LEFT KNEE AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0189','H','',0,0,'','','X-RAY LEFT KNEE AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0190','H','',0,0,'','','X-RAY LEFT KNEE AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0191','H','',0,0,'','','X-RAY LEFT KNEE LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0192','H','',0,0,'','','X-RAY LEFT KNEE LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0193','H','',0,0,'','','X-RAY LEFT KNEE OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0194','H','',0,0,'','','X-RAY LEFT KNEE OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0195','H','',0,0,'','','X-RAY LEFT KNEE WITH T-F AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0196','H','',0,0,'','','X-RAY LEFT KNEE WITH T-F AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0197','H','',0,0,'','','X-RAY LEFT LEG AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0198','H','',0,0,'','','X-RAY LEFT LEG AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0199','H','',0,0,'','','X-RAY LEFT LEG AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0200','H','',0,0,'','','X-RAY LEFT LEG AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0201','H','',0,0,'','','X-RAY LEFT LEG LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0202','H','',0,0,'','','X-RAY LEFT LEG LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0203','H','',0,0,'','','X-RAY LEFT MASTOIDS LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0204','H','',0,0,'','','X-RAY LEFT MASTOIDS LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0205','H','',0,0,'','','X-RAY LEFT PATELLA AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0206','H','',0,0,'','','X-RAY LEFT PATELLA AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0207','H','',0,0,'','','X-RAY LEFT PATELLA AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0208','H','',0,0,'','','X-RAY LEFT PATELLA AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0209','H','',0,0,'','','X-RAY LEFT PATELLA AXIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0210','H','',0,0,'','','X-RAY LEFT PATELLA AXIAL (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0211','H','',0,0,'','','X-RAY LEFT PATELLA LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0212','H','',0,0,'','','X-RAY LEFT PATELLA LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0213','H','',0,0,'','','X-RAY LEFT SCAPULA AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0214','H','',0,0,'','','X-RAY LEFT SCAPULA AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0215','H','',0,0,'','','X-RAY LEFT SCAPULA AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0216','H','',0,0,'','','X-RAY LEFT SCAPULA AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0217','H','',0,0,'','','X-RAY LEFT SCAPULA LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0218','H','',0,0,'','','X-RAY LEFT SCAPULA LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0219','H','',0,0,'','','X-RAY LEFT SCAPULA WITH CLAVICLE WITH SHOULDER AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0220','H','',0,0,'','','X-RAY LEFT SCAPULA WITH CLAVICLE WITH SHOULDER AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0221','H','',0,0,'','','X-RAY LEFT SHOULDER AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0222','H','',0,0,'','','X-RAY LEFT SHOULDER AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0223','H','',0,0,'','','X-RAY LEFT SHOULDER AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0224','H','',0,0,'','','X-RAY LEFT SHOULDER AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0225','H','',0,0,'','','X-RAY LEFT SHOULDER AXIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0226','H','',0,0,'','','X-RAY LEFT SHOULDER AXIAL (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0227','H','',0,0,'','','X-RAY LEFT SHOULDER LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0228','H','',0,0,'','','X-RAY LEFT SHOULDER LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0229','H','',0,0,'','','X-RAY LEFT SHOULDER WITH ARM AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0230','H','',0,0,'','','X-RAY LEFT SHOULDER WITH ARM AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0231','H','',0,0,'','','X-RAY LEFT SI JOINT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0232','H','',0,0,'','','X-RAY LEFT SI JOINT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0233','H','',0,0,'','','X-RAY LEFT THIGH (FEMUR) AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0234','H','',0,0,'','','X-RAY LEFT THIGH (FEMUR) AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0235','H','',0,0,'','','X-RAY LEFT THIGH (FEMUR) AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0236','H','',0,0,'','','X-RAY LEFT THIGH (FEMUR) AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0237','H','',0,0,'','','X-RAY LEFT THIGH (FEMUR) LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0238','H','',0,0,'','','X-RAY LEFT THIGH (FEMUR) LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0239','H','',0,0,'','','X-RAY LEFT THUMB AP/LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',200,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0240','H','',0,0,'','','X-RAY LEFT TM JOINT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',250,250,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0241','H','',0,0,'','','X-RAY LEFT TM JOINT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',375,375,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0242','H','',0,0,'','','X-RAY LEFT WRIST JOINT AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0243','H','',0,0,'','','X-RAY LEFT WRIST JOINT AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0244','H','',0,0,'','','X-RAY LEFT WRIST JOINT AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0245','H','',0,0,'','','X-RAY LEFT WRIST JOINT AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0246','H','',0,0,'','','X-RAY LEFT WRIST JOINT LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0247','H','',0,0,'','','X-RAY LEFT WRIST JOINT LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0248','H','',0,0,'','','X-RAY LEFT WRIST JOINT OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0249','H','',0,0,'','','X-RAY LEFT WRIST JOINT OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0250','H','',0,0,'','','X-RAY LOWER LIMB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0251','H','',0,0,'','','X-RAY LOWER LIMB (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0252','H','',0,0,'','','X-RAY LS SPINE AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0253','H','',0,0,'','','X-RAY LS SPINE AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0254','H','',0,0,'','','X-RAY LS SPINE AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0255','H','',0,0,'','','X-RAY LS SPINE AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0256','H','',0,0,'','','X-RAY LS SPINE LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0257','H','',0,0,'','','X-RAY LS SPINE LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0258','H','',0,0,'','','X-RAY LS SPINE OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0259','H','',0,0,'','','X-RAY LS SPINE OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0260','H','',0,0,'','','X-RAY LUMBAR SPINE AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0261','H','',0,0,'','','X-RAY LUMBAR SPINE AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0262','H','',0,0,'','','X-RAY LUMBAR SPINE AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0263','H','',0,0,'','','X-RAY LUMBAR SPINE AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0264','H','',0,0,'','','X-RAY LUMBAR SPINE LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0265','H','',0,0,'','','X-RAY LUMBAR SPINE LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0266','H','',0,0,'','','X-RAY LUMBAR SPINE OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0267','H','',0,0,'','','X-RAY LUMBAR SPINE OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0268','H','',0,0,'','','X-RAY MANDIBLE AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0269','H','',0,0,'','','X-RAY MANDIBLE AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0270','H','',0,0,'','','X-RAY MANDIBLE AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0271','H','',0,0,'','','X-RAY MANDIBLE AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0272','H','',0,0,'','','X-RAY MANDIBLE LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0273','H','',0,0,'','','X-RAY MANDIBLE LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0274','H','',0,0,'','','X-RAY MANDIBLE OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0275','H','',0,0,'','','X-RAY MANDIBLE OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0276','H','',0,0,'','','X-RAY OCCLUSAL VIEW','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0277','H','',0,0,'','','X-RAY OCCLUSAL VIEW (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0278','H','',0,0,'','','X-RAY ORBIT AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0279','H','',0,0,'','','X-RAY ORBIT AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0280','H','',0,0,'','','X-RAY ORBIT AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0281','H','',0,0,'','','X-RAY ORBIT AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0282','H','',0,0,'','','X-RAY ORBIT LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0283','H','',0,0,'','','X-RAY ORBIT LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0284','H','',0,0,'','','X-RAY ORBIT OPTIC FORAMEN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0285','H','',0,0,'','','X-RAY ORBIT OPTIC FORAMEN (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0286','H','',0,0,'','','X-RAY PELVIC INLET','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0287','H','',0,0,'','','X-RAY PELVIC INLET (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0288','H','',0,0,'','','X-RAY PELVIC OUTLET','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0289','H','',0,0,'','','X-RAY PELVIC OUTLET (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0290','H','',0,0,'','','X-RAY PELVIS AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0291','H','',0,0,'','','X-RAY PELVIS AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0292','H','',0,0,'','','X-RAY PELVIS WITH BOTH HIPS AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0293','H','',0,0,'','','X-RAY PELVIS WITH BOTH HIPS AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0294','H','',0,0,'','','X-RAY PELVIS WITH BOTH HIPS AP/ FROG LEG VIEW','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0295','H','',0,0,'','','X-RAY PELVIS WITH BOTH HIPS AP/ FROG LEG VIEW (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0296','H','',0,0,'','','X-RAY PETROUS BONE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0297','H','',0,0,'','','X-RAY PETROUS BONE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0298','H','',0,0,'','','X-RAY PNS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0299','H','',0,0,'','','X-RAY PNS (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0300','H','',0,0,'','','X-RAY RIBS AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0301','H','',0,0,'','','X-RAY RIBS AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0302','H','',0,0,'','','X-RAY RIBS LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0303','H','',0,0,'','','X-RAY RIBS LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0304','H','',0,0,'','','X-RAY RIBS OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0305','H','',0,0,'','','X-RAY RIBS OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0306','H','',0,0,'','','X-RAY RIGHT ANKLE AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0307','H','',0,0,'','','X-RAY RIGHT ANKLE AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0308','H','',0,0,'','','X-RAY RIGHT ANKLE AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0309','H','',0,0,'','','X-RAY RIGHT ANKLE AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0310','H','',0,0,'','','X-RAY RIGHT ANKLE LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0311','H','',0,0,'','','X-RAY RIGHT ANKLE LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0312','H','',0,0,'','','X-RAY RIGHT ANKLE OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0313','H','',0,0,'','','X-RAY RIGHT ANKLE OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0314','H','',0,0,'','','X-RAY RIGHT ARM AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0315','H','',0,0,'','','X-RAY RIGHT ARM AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0316','H','',0,0,'','','X-RAY RIGHT ARM AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0317','H','',0,0,'','','X-RAY RIGHT ARM AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0318','H','',0,0,'','','X-RAY RIGHT ARM LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0319','H','',0,0,'','','X-RAY RIGHT ARM LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0320','H','',0,0,'','','X-RAY RIGHT ARM WITH ELBOW AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0321','H','',0,0,'','','X-RAY RIGHT ARM WITH ELBOW AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0322','H','',0,0,'','','X-RAY RIGHT CALCANEUM AXIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0323','H','',0,0,'','','X-RAY RIGHT CALCANEUM AXIAL (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0324','H','',0,0,'','','X-RAY RIGHT CALCANEUM LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0325','H','',0,0,'','','X-RAY RIGHT CALCANEUM- LAT & AXIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0326','H','',0,0,'','','X-RAY RIGHT CALCANEUM- LAT & AXIAL (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0327','H','',0,0,'','','X-RAY RIGHT CALCANEUM LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0328','H','',0,0,'','','X-RAY RIGHT CARPAL (WRIST JOINT) AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0329','H','',0,0,'','','X-RAY RIGHT CARPAL (WRIST JOINT) AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0330','H','',0,0,'','','X-RAY RIGHT CARPAL (WRIST JOINT) AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0331','H','',0,0,'','','X-RAY RIGHT CARPAL (WRIST JOINT) AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0332','H','',0,0,'','','X-RAY RIGHT CARPAL (WRIST JOINT) LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0333','H','',0,0,'','','X-RAY RIGHT CARPAL (WRIST JOINT) LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0334','H','',0,0,'','','X-RAY RIGHT CARPAL (WRIST JOINT) OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0335','H','',0,0,'','','X-RAY RIGHT CARPAL (WRIST JOINT) OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0336','H','',0,0,'','','X-RAY RIGHT CLAVICLE AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0337','H','',0,0,'','','X-RAY RIGHT CLAVICLE AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0338','H','',0,0,'','','X-RAY RIGHT CLAVICLE OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0339','H','',0,0,'','','X-RAY RIGHT CLAVICLE OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0340','H','',0,0,'','','X-RAY RIGHT CLAVICLE WITH SHOULDER AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0341','H','',0,0,'','','X-RAY RIGHT CLAVICLE WITH SHOULDER AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0342','H','',0,0,'','','X-RAY RIGHT ELBOW AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0343','H','',0,0,'','','X-RAY RIGHT ELBOW AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0344','H','',0,0,'','','X-RAY RIGHT ELBOW AP / LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0345','H','',0,0,'','','X-RAY RIGHT ELBOW AP / LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0346','H','',0,0,'','','X-RAY RIGHT ELBOW LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0347','H','',0,0,'','','X-RAY RIGHT ELBOW LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0348','H','',0,0,'','','X-RAY RIGHT ELBOW WITH FOREARM WITH WRIST AP/LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0349','H','',0,0,'','','X-RAY RIGHT ELBOW WITH FOREARM WITH WRIST AP/LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0350','H','',0,0,'','','X-RAY RIGHT FEMUR WITH KNEE AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0351','H','',0,0,'','','X-RAY RIGHT FEMUR WITH KNEE AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0352','H','',0,0,'','','X-RAY RIGHT FINGER AP/OBLIQUE/LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0353','H','',0,0,'','','X-RAY RIGHT FINGER AP/OBLIQUE/LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0354','H','',0,0,'','','X-RAY RIGHT FOOT AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0355','H','',0,0,'','','X-RAY RIGHT FOOT AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0356','H','',0,0,'','','X-RAY RIGHT FOOT AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0357','H','',0,0,'','','X-RAY RIGHT FOOT AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0358','H','',0,0,'','','X-RAY RIGHT FOOT AP/OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0359','H','',0,0,'','','X-RAY RIGHT FOOT AP/OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0360','H','',0,0,'','','X-RAY RIGHT FOOT LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0361','H','',0,0,'','','X-RAY RIGHT FOOT LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0362','H','',0,0,'','','X-RAY RIGHT FOOT OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0363','H','',0,0,'','','X-RAY RIGHT FOOT OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0364','H','',0,0,'','','X-RAY RIGHT FOREARM AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0365','H','',0,0,'','','X-RAY RIGHT FOREARM AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0366','H','',0,0,'','','X-RAY RIGHT FOREARM OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0367','H','',0,0,'','','X-RAY RIGHT FOREARM OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0368','H','',0,0,'','','X-RAY RIGHT FOREARM WITH WRIST AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0369','H','',0,0,'','','X-RAY RIGHT FOREARM WITH WRIST AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0370','H','',0,0,'','','X-RAY RIGHT HAND AP/OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',600,600,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0371','H','',0,0,'','','X-RAY RIGHT HAND AP/OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0372','H','',0,0,'','','X-RAY RIGHT HAND LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0373','H','',0,0,'','','X-RAY RIGHT HAND LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0374','H','',0,0,'','','X-RAY RIGHT HAND OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0375','H','',0,0,'','','X-RAY RIGHT HAND OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0376','H','',0,0,'','','X-RAY RIGHT HIP AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0377','H','',0,0,'','','X-RAY RIGHT HIP AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0378','H','',0,0,'','','X-RAY RIGHT HIP AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0379','H','',0,0,'','','X-RAY RIGHT HIP AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0380','H','',0,0,'','','X-RAY RIGHT HIP FROG\'S VIEW','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0381','H','',0,0,'','','X-RAY RIGHT HIP FROG\'S VIEW (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0382','H','',0,0,'','','X-RAY RIGHT HIP LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0383','H','',0,0,'','','X-RAY RIGHT HIP LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0384','H','',0,0,'','','X-RAY RIGHT HIP WITH FEMUR AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0385','H','',0,0,'','','X-RAY RIGHT HIP WITH FEMUR AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0386','H','',0,0,'','','X-RAY RIGHT INTERCONDYLAR NOTCH (KNEE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0387','H','',0,0,'','','X-RAY RIGHT INTERCONDYLAR NOTCH (KNEE) (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0388','H','',0,0,'','','X-RAY RIGHT KNEE AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0389','H','',0,0,'','','X-RAY RIGHT KNEE AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0390','H','',0,0,'','','X-RAY RIGHT KNEE AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0391','H','',0,0,'','','X-RAY RIGHT KNEE AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0392','H','',0,0,'','','X-RAY RIGHT KNEE LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0393','H','',0,0,'','','X-RAY RIGHT KNEE LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0394','H','',0,0,'','','X-RAY RIGHT KNEE OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0395','H','',0,0,'','','X-RAY RIGHT KNEE OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0396','H','',0,0,'','','X-RAY RIGHT KNEE WITH T-F AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0397','H','',0,0,'','','X-RAY RIGHT KNEE WITH T-F AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0398','H','',0,0,'','','X-RAY RIGHT KNEE WITH T-F AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0399','H','',0,0,'','','X-RAY RIGHT KNEE WITH T-F AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0400','H','',0,0,'','','X-RAY RIGHT LEG AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0401','H','',0,0,'','','X-RAY RIGHT LEG AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0402','H','',0,0,'','','X-RAY RIGHT LEG AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0403','H','',0,0,'','','X-RAY RIGHT LEG AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0404','H','',0,0,'','','X-RAY RIGHT LEG LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0405','H','',0,0,'','','X-RAY RIGHT LEG LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0406','H','',0,0,'','','X-RAY RIGHT MASTOIDS LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0407','H','',0,0,'','','X-RAY RIGHT MASTOIDS LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0408','H','',0,0,'','','X-RAY RIGHT NASAL BONE LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0409','H','',0,0,'','','X-RAY RIGHT NASAL BONE LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0410','H','',0,0,'','','X-RAY RIGHT PATELLA AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0411','H','',0,0,'','','X-RAY RIGHT PATELLA AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0412','H','',0,0,'','','X-RAY RIGHT PATELLA AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0413','H','',0,0,'','','X-RAY RIGHT PATELLA AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0414','H','',0,0,'','','X-RAY RIGHT PATELLA AXIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0415','H','',0,0,'','','X-RAY RIGHT PATELLA AXIAL (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0416','H','',0,0,'','','X-RAY RIGHT PATELLA LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0417','H','',0,0,'','','X-RAY RIGHT PATELLA LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0418','H','',0,0,'','','X-RAY RIGHT SCAPULA AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0419','H','',0,0,'','','X-RAY RIGHT SCAPULA AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0420','H','',0,0,'','','X-RAY RIGHT SCAPULA AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0421','H','',0,0,'','','X-RAY RIGHT SCAPULA AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0422','H','',0,0,'','','X-RAY RIGHT SCAPULA LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0423','H','',0,0,'','','X-RAY RIGHT SCAPULA LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0424','H','',0,0,'','','X-RAY RIGHT SCAPULA WITH CLAVICLE WITH SHOULDER AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0425','H','',0,0,'','','X-RAY RIGHT SCAPULA WITH CLAVICLE WITH SHOULDER AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0426','H','',0,0,'','','X-RAY RIGHT SHOULDER AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0427','H','',0,0,'','','X-RAY RIGHT SHOULDER AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0428','H','',0,0,'','','X-RAY RIGHT SHOULDER AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0429','H','',0,0,'','','X-RAY RIGHT SHOULDER AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0430','H','',0,0,'','','X-RAY RIGHT SHOULDER AXIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0431','H','',0,0,'','','X-RAY RIGHT SHOULDER AXIAL (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0432','H','',0,0,'','','X-RAY RIGHT SHOULDER LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0433','H','',0,0,'','','X-RAY RIGHT SHOULDER LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0434','H','',0,0,'','','X-RAY RIGHT SHOULDER WITH ARM AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0435','H','',0,0,'','','X-RAY RIGHT SHOULDER WITH ARM AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0436','H','',0,0,'','','X-RAY RIGHT SI JOINT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0437','H','',0,0,'','','X-RAY RIGHT SI JOINT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0438','H','',0,0,'','','X-RAY RIGHT T-F WITH ANKLE AP/ LAT/OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0439','H','',0,0,'','','X-RAY RIGHT T-F WITH ANKLE AP/ LAT/OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',750,750,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0440','H','',0,0,'','','X-RAY RIGHT THIGH (FEMUR) AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0441','H','',0,0,'','','X-RAY RIGHT THIGH (FEMUR) AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0442','H','',0,0,'','','X-RAY RIGHT THIGH (FEMUR) AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0443','H','',0,0,'','','X-RAY RIGHT THIGH (FEMUR) AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0444','H','',0,0,'','','X-RAY RIGHT THIGH (FEMUR) LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0445','H','',0,0,'','','X-RAY RIGHT THIGH (FEMUR) LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0446','H','',0,0,'','','X-RAY RIGHT THUMB AP/LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',200,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0447','H','',0,0,'','','X-RAY RIGHT WRIST JOINT AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0448','H','',0,0,'','','X-RAY RIGHT WRIST JOINT AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0449','H','',0,0,'','','X-RAY RIGHT WRIST JOINT AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0450','H','',0,0,'','','X-RAY RIGHT WRIST JOINT AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0451','H','',0,0,'','','X-RAY RIGHT WRIST JOINT LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0452','H','',0,0,'','','X-RAY RIGHT WRIST JOINT LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0453','H','',0,0,'','','X-RAY RIGHT WRIST JOINT OBLIQUE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0454','H','',0,0,'','','X-RAY RIGHT WRIST JOINT OBLIQUE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0455','H','',0,0,'','','X-RAY SACROCOCCYGEAL AP/LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0456','H','',0,0,'','','X-RAY SACROCOCCYGEAL AP/LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0457','H','',0,0,'','','X-RAY SACRUM AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0458','H','',0,0,'','','X-RAY SACRUM AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0459','H','',0,0,'','','X-RAY SACRUM LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0460','H','',0,0,'','','X-RAY SACRUM LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0461','H','',0,0,'','','X-RAY SCANOGRAM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0462','H','',0,0,'','','X-RAY SCANOGRAM (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0463','H','',0,0,'','','X-RAY SKULL AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0464','H','',0,0,'','','X-RAY SKULL AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0465','H','',0,0,'','','X-RAY SKULL AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0466','H','',0,0,'','','X-RAY SKULL AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0467','H','',0,0,'','','X-RAY SKULL BASE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0468','H','',0,0,'','','X-RAY SKULL BASE (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0469','H','',0,0,'','','X-RAY SKULL CALDWELL\'S VIEW FOR ORBIT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0470','H','',0,0,'','','X-RAY SKULL CALDWELL\'S VIEW FOR ORBIT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0471','H','',0,0,'','','X-RAY SKULL LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0472','H','',0,0,'','','X-RAY SKULL LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0473','H','',0,0,'','','X-RAY SKULL TOWN\'S VIEW','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0474','H','',0,0,'','','X-RAY SKULL TOWN\'S VIEW (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0475','H','',0,0,'','','X-RAY SKULL ZYGOMATIC ARCH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0476','H','',0,0,'','','X-RAY SKULL ZYGOMATIC ARCH (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0477','H','',0,0,'','','X-RAY SOFT TISSUE NECK AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0478','H','',0,0,'','','X-RAY SOFT TISSUE NECK AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0479','H','',0,0,'','','X-RAY SOFT TISSUE NECK AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0480','H','',0,0,'','','X-RAY SOFT TISSUE NECK AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0481','H','',0,0,'','','X-RAY SOFT TISSUE NECK LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0482','H','',0,0,'','','X-RAY SOFT TISSUE NECK LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0483','H','',0,0,'','','X-RAY STERNUM AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0484','H','',0,0,'','','X-RAY STERNUM AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0485','H','',0,0,'','','X-RAY STERNUM AP/ LAT','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0486','H','',0,0,'','','X-RAY STERNUM AP/ LAT (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0487','H','',0,0,'','','X-RAY THORACIC OUTLET AP VIEW','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0488','H','',0,0,'','','X-RAY THORACIC OUTLET AP VIEW (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0489','H','',0,0,'','','X-RAY TM JOINT OPEN & CLOSE MOUTH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0490','H','',0,0,'','','X-RAY TM JOINT OPEN & CLOSE MOUTH (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',400,400,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0491','H','',0,0,'','','X-RAY UPPER LIMB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0492','H','',0,0,'','','X-RAY UPPER LIMB (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0493','H','',0,0,'','','X-RAY WHOLE LIMB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0494','H','',0,0,'','','X-RAY WHOLE LIMB (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',500,500,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0495','H','',0,0,'','','X-RAY WRIST AP (SCAPHOID VIEW)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0496','H','',0,0,'','','X-RAY WRIST AP (SCAPHOID VIEW) (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRYP','','XRYP0001','H','',0,0,'','','BARIUM ENEMA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1450,1450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRYP','','XRYP0002','H','',0,0,'','','BARIUM FOLLOW THROUGH','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1440,1440,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRYP','','XRYP0003','H','',0,0,'','','BARIUM MEAL STOMACH & DUODENUM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1080,1080,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRYP','','XRYP0004','H','',0,0,'','','BARIUM SWALLOW','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',900,900,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRYP','','XRYP0005','H','',0,0,'','','CONTRAST GUT X-RAY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',900,900,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRYP','','XRYP0006','H','',0,0,'','','FISTULOGRAM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',900,900,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRYP','','XRYP0007','H','',0,0,'','','HSG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1450,1450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRYP','','XRYP0008','H','',0,0,'','','IVP (INTRAVENOUS PYELOGRAPHY)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1800,1800,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRYP','','XRYP0009','H','',0,0,'','','LOOPOGRAM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1100,1100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRYP','','XRYP0010','H','',0,0,'','','MYELOGRAPHY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1450,1450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRYP','','XRYP0011','H','',0,0,'','','NEPHROSTOGRAM (INCLUDING CONTRAST)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2700,2700,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRYP','','XRYP0012','H','',0,0,'','','SIALOGRAPHY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1100,1100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRYP','','XRYP0013','H','',0,0,'','','SINOGRAM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1100,1100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRYP','','XRYP0014','H','',0,0,'','','SINOGRAM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1100,1100,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00'),(0,0,'XRYP','','XRYP0015','H','',0,0,'','','T-TUBE CHOLANGIOGRAM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1450,1450,NULL,'',0,'N','N','N',0,'','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'','','','','thims','2024-04-01 13:18:00','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `service_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `service_master_amendment`
--

DROP TABLE IF EXISTS `service_master_amendment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `service_master_amendment` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `service_grp_cd` varchar(4) NOT NULL,
  `service_short_code` varchar(4) NOT NULL,
  `service_cd` varchar(8) NOT NULL,
  `service_amendment_no` smallint(6) NOT NULL,
  `service_sequence_no` int(11) NOT NULL COMMENT 'service sequence number ',
  `service_type` varchar(2) NOT NULL COMMENT 'blank - Normal, HP - Health Package, SP - Surgery Package ',
  `film_size_cd` varchar(6) NOT NULL,
  `service_desc` varchar(200) NOT NULL,
  `test_cd` varchar(200) NOT NULL,
  `test_grp_cd` varchar(200) NOT NULL,
  `effective_from` date NOT NULL,
  `effective_to` date NOT NULL,
  `general_rate_min` int(11) NOT NULL,
  `general_rate_max` int(11) NOT NULL,
  `special_rate_min` int(11) NOT NULL,
  `special_rate_max` int(11) NOT NULL,
  `general_charge` int(11) NOT NULL,
  `special_charge` int(11) NOT NULL,
  `rate_unit` char(5) NOT NULL,
  `charges` float NOT NULL,
  `charges_for_ip_patient` float NOT NULL,
  `btob_charges` float DEFAULT NULL,
  `category` varchar(10) NOT NULL COMMENT 'store room category if service grp code = ''Room'' or ''DRM''',
  `procedure_grade_category` smallint(6) NOT NULL,
  `is_OT_usage_required` enum('Y','N') NOT NULL DEFAULT 'N',
  `category_charge` char(1) NOT NULL COMMENT 'Room category wise service charges. Y or N',
  `doctor_allocation_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `hierarchy_level` char(3) NOT NULL,
  `visit_type` enum('R','X','U') NOT NULL DEFAULT 'U',
  `parentOrChild` char(1) NOT NULL COMMENT 'P for parent service and C for child service',
  `is_biopsy` enum('Y','N') NOT NULL DEFAULT 'N',
  `active_YN` char(1) NOT NULL,
  `is_approved` enum('N','Y') NOT NULL DEFAULT 'Y',
  `approved_by` varchar(20) NOT NULL,
  `approved_datetime` datetime NOT NULL,
  `i_or_e` char(1) NOT NULL COMMENT 'I: Internal or E: External',
  `over_night_charge_auto_include` enum('N','Y') NOT NULL DEFAULT 'N',
  `order_in_bill` int(11) NOT NULL DEFAULT '99',
  `user_name` varchar(20) NOT NULL,
  `last_update_date` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`service_cd`,`service_amendment_no`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_master_amendment`
--

LOCK TABLES `service_master_amendment` WRITE;
/*!40000 ALTER TABLE `service_master_amendment` DISABLE KEYS */;
INSERT INTO `service_master_amendment` VALUES (0,0,'AECO','','AECO0008',0,0,'','','RMO CHARGES DAY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,300,NULL,'',0,'N','N','Y','','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'thims','2025-10-11 18:05:20','','0000-00-00 00:00:00'),(0,0,'AECO','','AECO0008',1,0,'','','RMO CHARGES DAY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',150,1,NULL,'',0,'N','N','Y','','U','','N','Y','Y','thims','2025-10-11 18:05:20','I','N',99,'thims','2025-10-11 18:06:07','thims','2025-10-11 18:05:20'),(0,0,'AECO','','AECO0008',2,0,'','','RMO CHARGES DAY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','Y','Y','','U','','N','Y','Y','thims','2025-10-11 18:06:07','I','N',99,'thims','2025-10-11 18:06:15','thims','2025-10-11 18:06:07'),(0,0,'AECO','','AECO0008',3,0,'','','RMO CHARGES DAY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','Y','Y','','U','','N','Y','Y','thims','2025-10-11 18:06:15','I','Y',99,'vishal','2025-10-11 18:50:15','thims','2025-10-11 18:06:15'),(0,0,'AECO','','AECO0008',4,0,'','','RMO CHARGES DAY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','Y','N','','U','','N','Y','Y','vishal','2025-10-11 18:50:15','I','Y',99,'vishal','2025-10-11 18:51:48','vishal','2025-10-11 18:50:15'),(0,0,'CARE','','CARE0001',0,0,'','','NURSING CHARGES - SPECIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,200,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-10 19:37:08','I','Y',99,'reception','2025-10-10 19:40:24','','0000-00-00 00:00:00'),(0,0,'CARE','','CARE0001',1,0,'','','NURSING CHARGES - SPECIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,200,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-10 19:40:24','I','Y',99,'reception','2025-10-11 11:34:26','reception','2025-10-10 19:40:24'),(0,0,'CARE','','CARE0001',2,0,'','','NURSING CHARGES - SPECIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,200,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-11 11:34:26','I','N',99,'thims','2025-10-11 18:07:29','reception','2025-10-11 11:34:26'),(0,0,'CARE','','CARE0001',3,0,'','','NURSING CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','Y','N','','U','','N','Y','Y','thims','2025-10-11 18:07:29','I','N',99,'thims','2025-10-11 18:08:16','thims','2025-10-11 18:07:29'),(0,0,'CARE','','CARE0002',0,0,'','','NURSING CHARGES - SEMI ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,200,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-10 19:38:31','I','N',99,'reception','2025-10-11 11:34:33','','0000-00-00 00:00:00'),(0,0,'CARE','','CARE0003',0,0,'','','NURSING CHARGES - ICU','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,600,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-10 19:40:18','I','Y',99,'reception','2025-10-11 11:34:39','','0000-00-00 00:00:00'),(0,0,'CARE','','CARE0004',0,0,'','','RMO CHARGES - ICU','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,800,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-10 19:40:57','I','Y',99,'reception','2025-10-11 11:34:45','','0000-00-00 00:00:00'),(0,0,'CARE','','CARE0005',0,0,'','','RMO CHARGE - SPECIAL','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,400,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-10 19:41:19','I','Y',99,'reception','2025-10-11 11:34:52','','0000-00-00 00:00:00'),(0,0,'CARE','','CARE0006',0,0,'','','RMO CHARGES - SEMI','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,300,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-10 19:41:47','I','Y',99,'reception','2025-10-11 11:34:58','','0000-00-00 00:00:00'),(0,0,'CARE','','CARE0009',0,0,'','','MENUAL STOOL REMOVEL CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1500,NULL,'',0,'N','N','N','','U','','N','Y','Y','riya','2025-11-07 15:13:59','I','N',99,'riya','2025-11-07 15:14:46','','0000-00-00 00:00:00'),(0,0,'CARE','','CARE0009',1,0,'','','MENUAL STOOL REMOVEL CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N','','U','','N','Y','Y','riya','2025-11-07 15:14:46','I','N',99,'riya','2025-11-07 15:16:22','riya','2025-11-07 15:14:46'),(0,0,'CARE','','CARE0009',2,0,'','','MENUAL STOOL REMOVEL CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N','','U','','N','Y','Y','riya','2025-11-07 15:16:22','I','N',99,'riya','2025-11-07 15:17:22','riya','2025-11-07 15:16:22'),(0,0,'CARE','','CARE0009',3,0,'','','MENUAL STOOL REMOVEL CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N','','U','','N','Y','Y','riya','2025-11-07 15:17:22','I','N',99,'riya','2025-11-07 15:18:35','riya','2025-11-07 15:17:22'),(0,0,'DRC','','DRC0018',0,0,'','','CONSULTANT VISIT 1 - SEMI','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,800,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-11 12:12:59','I','N',99,'thims','2025-10-11 18:02:45','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0018',1,0,'','','CONSULTANT VISIT 1 - SEMI','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,800,NULL,'',0,'N','N','N','','U','','N','Y','Y','thims','2025-10-11 18:02:45','I','Y',99,'thims','2025-10-11 18:03:47','thims','2025-10-11 18:02:45'),(0,0,'DRC','','DRC0018',2,0,'','','CONSULTANT VISIT 1 - SEMI','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',1,1,NULL,'',0,'N','Y','N','','U','','N','Y','Y','thims','2025-10-11 18:03:47','I','Y',99,'vishal','2025-10-11 18:27:29','thims','2025-10-11 18:03:47'),(0,0,'DRC','','DRC0018',3,0,'','','CONSULTANT VISIT 1 ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',1,1,NULL,'',0,'N','Y','N','','U','','N','Y','Y','vishal','2025-10-11 18:27:29','I','Y',99,'vishal','2025-10-12 12:34:10','vishal','2025-10-11 18:27:29'),(0,0,'DRC','','DRC0019',0,0,'','','CONSULTANT VISIT 2 - SEMI','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,800,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-11 12:13:19','I','N',99,'thims','2025-10-11 18:03:24','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0019',1,0,'','','CONSULTANT VISIT 2 - SEMI','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1,NULL,'',0,'N','Y','N','','U','','N','Y','Y','thims','2025-10-11 18:03:24','I','Y',99,'vishal','2025-10-11 18:27:42','thims','2025-10-11 18:03:24'),(0,0,'DRC','','DRC0019',2,0,'','','CONSULTANT VISIT 2','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1,NULL,'',0,'N','Y','N','','U','','N','Y','Y','vishal','2025-10-11 18:27:42','I','Y',99,'vishal','2025-10-12 12:34:24','vishal','2025-10-11 18:27:42'),(0,0,'DRC','','DRC0021',0,0,'','','EMERGENCY VISIT CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,2000,NULL,'',0,'N','Y','Y','','U','','N','Y','Y','vishal','2025-10-22 13:10:19','I','N',99,'vishal','2025-10-22 13:19:36','','0000-00-00 00:00:00'),(0,0,'DRC','','DRC0021',1,0,'','','EMERGENCY COUNSULTANT CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,2000,NULL,'',0,'N','Y','Y','','U','','N','Y','Y','vishal','2025-10-22 13:19:36','I','N',99,'vishal','2025-10-22 13:21:32','vishal','2025-10-22 13:19:36'),(0,0,'EDPR','','EDPR0032',0,0,'','','ENDOSCOPY-LARYNX AND PHARYNX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N','','U','','N','Y','Y','shweta','2025-10-10 16:25:40','I','N',99,'shweta','2025-10-10 16:27:09','','0000-00-00 00:00:00'),(0,0,'ENTP','','ENTP0035',0,0,'','','STABILIMETRY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','N','','U','','N','Y','Y','shweta','2025-10-08 16:59:53','E','N',99,'shweta','2025-10-08 17:00:07','','0000-00-00 00:00:00'),(0,0,'ENTS','','ENTS0076',0,0,'','','STABILOMETRY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N','','U','','N','Y','Y','shweta','2025-10-08 16:57:45','I','N',99,'shweta','2025-10-08 16:59:55','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0078',0,0,'','','THERAPUTIC TAPPING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,4000,NULL,'',0,'N','N','N','','U','','N','Y','Y','riya','2025-10-28 13:05:58','I','N',99,'riya','2025-10-28 13:23:53','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0079',0,0,'','','TRECHOSTOMY','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,10000,NULL,'',0,'N','N','N','','U','','N','Y','Y','riya','2025-11-16 14:49:36','I','N',99,'vishal','2025-11-17 16:01:42','','0000-00-00 00:00:00'),(0,0,'GENS','','GENS0080',0,0,'','','TRECHOSTOMY CHANGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,1000,NULL,'',0,'N','N','N','','U','','N','Y','Y','riya','2025-11-16 14:52:17','I','N',99,'vishal','2025-11-17 16:01:33','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10018',0,0,'','','VIDEO HEAD IMPULSE TEST (VHIT(','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',3000,3000,NULL,'',0,'N','N','N','','U','','N','Y','Y','thims','2025-10-08 11:43:32','I','N',99,'thims','2025-10-08 11:47:07','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10019',0,0,'','','STAB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2200,2200,NULL,'',0,'N','N','N','','U','','N','Y','Y','thims','2025-10-08 11:43:56','I','N',99,'shweta','2025-10-08 18:17:59','','0000-00-00 00:00:00'),(0,0,'NEU1','','NEU10024',0,0,'','','CCG','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',2500,2500,NULL,'',0,'N','N','N','','U','','N','Y','Y','thims','2025-10-08 11:47:30','I','N',99,'thims','2025-10-08 14:16:24','','0000-00-00 00:00:00'),(0,0,'OETR','','OETR0001',0,0,'','','PROCEDURE CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1,NULL,'',0,'N','N','Y','','U','','N','Y','Y','vishal','2025-10-13 10:04:49','I','N',99,'reception','2025-11-04 13:39:28','','0000-00-00 00:00:00'),(0,0,'OETR','','OETR0004',0,0,'','','CASHLESS PACKAGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N','','U','','N','Y','Y','vishal','2025-11-05 18:53:38','I','N',99,'vishal','2025-11-05 18:53:55','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0019',0,0,'','','RBS BY GLUCOMETER PER RBS','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',80,80,NULL,'',0,'N','N','N','','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'vishal','2025-10-11 18:46:16','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0024',0,0,'','','USG ABDOMEN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1000,1000,NULL,'',1,'N','Y','Y','','U','','N','Y','Y','shweta','2025-11-13 11:18:11','E','N',99,'shweta','2025-11-13 11:24:14','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0025',0,0,'','','USG KUB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',1,'N','N','Y','','U','','N','Y','Y','shweta','2025-11-13 11:29:16','E','N',99,'shweta','2025-11-13 11:29:44','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0025',1,0,'','','USG KUB','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',800,800,NULL,'',1,'N','N','Y','','U','','N','Y','Y','shweta','2025-11-13 11:29:44','E','N',99,'shweta','2025-11-13 11:30:23','shweta','2025-11-13 11:29:44'),(0,0,'OPWD','','OPWD0035',0,0,'','','ENDOSCOPY-LARYNX AND PHARYNX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',1,'N','N','Y','','U','','N','Y','Y','shweta','2025-11-14 12:06:16','I','N',99,'shweta','2025-11-14 12:07:18','','0000-00-00 00:00:00'),(0,0,'OPWD','','OPWD0035',1,0,'','','ENDOSCOPY-LARYNX AND PHARYNX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',1,'N','N','Y','','U','','N','Y','Y','shweta','2025-11-14 12:07:18','E','N',99,'shweta','2025-11-14 12:10:16','shweta','2025-11-14 12:07:18'),(0,0,'OPWD','','OPWD0035',2,0,'','','ENDOSCOPY-LARYNX AND PHARYNX','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',1,'N','N','Y','','U','','N','Y','Y','shweta','2025-11-14 12:10:16','I','N',99,'shweta','2025-11-14 12:11:45','shweta','2025-11-14 12:10:16'),(0,0,'OPWD','','OPWD0036',0,0,'','','IRON TRANSFUSION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',1,'N','N','Y','','U','','N','Y','Y','shweta','2025-11-21 14:12:00','I','N',99,'shweta','2025-11-21 14:13:38','','0000-00-00 00:00:00'),(0,0,'OTCG','','OTCG0001',0,0,'','','Consultation  OPD','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',135,135,NULL,'',0,'N','N','Y','','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'shweta','2025-10-17 14:29:11','','0000-00-00 00:00:03'),(0,0,'OTCG','','OTCG0003',0,0,'','','Dressings of wounds','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',50,50,NULL,'',0,'N','N','Y','','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'shweta','2025-10-17 14:30:05','','0000-00-00 00:00:03'),(0,0,'REG','','REG0001',0,0,'','','ADMISSION CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,250,NULL,'',0,'N','N','N','','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',1,'reception','2025-10-10 19:28:16','','0000-00-00 00:00:00'),(0,0,'REG','','REG0002',0,0,'','','MRD CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-10 19:29:36','I','N',99,'reception','2025-10-10 19:29:45','','0000-00-00 00:00:00'),(0,0,'ROOM','','ROOM0001',0,0,'','','ICU ISOLATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',3800,3800,NULL,'',0,'N','N','N','','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'reception','2025-10-10 19:34:34','','0000-00-00 00:00:00'),(0,0,'ROOM','','ROOM0001',1,0,'','','BED CHARGES ICU','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',3800,5500,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-10 19:34:34','I','N',99,'reception','2025-10-10 19:34:39','reception','2025-10-10 19:34:34'),(0,0,'ROOM','','ROOM0001',2,0,'','','BED CHARGES ICU','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',3800,5500,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-10 19:34:39','I','Y',99,'reception','2025-10-11 11:33:06','reception','2025-10-10 19:34:39'),(0,0,'ROOM','','ROOM0001',3,0,'','','BED CHARGES ICU','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',3800,5500,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-11 11:33:06','I','N',99,'reception','2025-10-11 11:33:15','reception','2025-10-11 11:33:06'),(0,0,'ROOM','','ROOM0001',4,0,'','','BED CHARGES ICU','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,0,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-11 11:33:15','I','N',99,'reception','2025-10-11 11:33:25','reception','2025-10-11 11:33:15'),(0,0,'ROOM','','ROOM0002',0,0,'','','ROOM CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N','','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',5,'reception','2025-10-10 19:33:24','','0000-00-00 00:00:00'),(0,0,'ROOM','','ROOM0002',1,0,'','','BED CHARGES \' SEMI- SPECIAL ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,2900,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-10 19:33:24','I','Y',5,'reception','2025-10-10 19:34:14','reception','2025-10-10 19:33:24'),(0,0,'ROOM','','ROOM0002',2,0,'','','BED CHARGES - SEMI- SPECIAL ','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,2900,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-10 19:34:14','I','Y',5,'reception','2025-10-11 11:33:32','reception','2025-10-10 19:34:14'),(0,0,'ROOM','','ROOM0003',0,0,'','','BED CHARGES - SPECIAL ROOM','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,3200,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-10 19:34:06','I','Y',99,'reception','2025-10-11 11:33:50','','0000-00-00 00:00:00'),(0,0,'ROOM','','ROOM0007',0,0,'','','EMERGENCY CONSULTANT\'S CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,2000,NULL,'',0,'N','Y','N','','U','','N','Y','Y','reception','2025-10-11 12:35:06','I','N',99,'thims','2025-10-11 18:00:32','','0000-00-00 00:00:00'),(0,0,'ROOM','','ROOM0008',0,0,'','','RBS CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,100,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-11 12:42:49','I','N',99,'reception','2025-10-11 12:43:18','','0000-00-00 00:00:00'),(0,0,'ROOM','','ROOM0008',1,0,'','','RBS (RANDOM BLOOD SUGAR) CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,100,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-11 12:43:18','I','N',99,'reception','2025-10-11 12:43:47','reception','2025-10-11 12:43:18'),(0,0,'ROOM','','ROOM0009',0,0,'','','ROOM CHARGES','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','Y','N','','U','','N','Y','Y','thims','2025-10-11 18:01:57','I','N',99,'thims','2025-10-11 18:02:04','','0000-00-00 00:00:00'),(0,0,'SURG','','SURG0017',0,0,'','','ASSISTANT SURGEON CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1,NULL,'',0,'N','N','N','','U','','N','Y','Y','vishal','2025-10-20 11:49:13','I','N',99,'vishal','2025-10-20 11:50:09','','0000-00-00 00:00:00'),(0,0,'SURG','','SURG0018',0,0,'','','PROCEDURE CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N','','U','','N','Y','Y','riya','2025-11-11 13:37:58','I','N',99,'riya','2025-11-11 16:29:18','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0077',0,0,'','','PC ENEMA','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'500',0,1,NULL,'',0,'N','N','N','','U','','N','Y','Y','vishal','2025-10-11 19:00:56','I','N',99,'vishal','2025-10-11 19:01:13','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0079',0,0,'','','FOLEYS CATHETER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,750,NULL,'',0,'N','N','N','','U','','N','Y','Y','vishal','2025-10-11 19:32:20','I','N',99,'vishal','2025-10-12 18:54:17','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0081',0,0,'','','AIR BED CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,200,NULL,'',0,'N','N','N','','U','','N','Y','Y','vishal','2025-10-12 11:14:37','I','N',99,'vishal','2025-10-12 11:15:25','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0083',0,0,'','','DRESSING CHARGE - MINOR','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,200,NULL,'',0,'N','N','N','','U','','N','Y','Y','vishal','2025-10-12 11:19:33','I','N',99,'vishal','2025-10-13 12:35:04','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0084',0,0,'','','RT (RYLE\'S TUBE) INSERTION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,750,NULL,'',0,'N','N','N','','U','','N','Y','Y','vishal','2025-10-12 11:21:42','I','N',99,'vishal','2025-10-12 11:22:47','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0088',0,0,'','','ENDOTRACHEAL INTUBATION','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1500,NULL,'',0,'N','N','N','','U','','N','Y','Y','vishal','2025-10-12 12:41:51','I','N',99,'vishal','2025-10-19 18:44:09','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0089',0,0,'','','NEB CHARGE','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'100',0,1,NULL,'',0,'N','N','N','','U','','N','Y','Y','vishal','2025-10-12 14:37:30','I','N',99,'vishal','2025-10-12 14:37:53','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0094',0,0,'','','RT LOWER LIMB ARTERIAL DOPPLER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,2800,NULL,'',0,'N','N','N','','U','','N','Y','Y','reception','2025-10-12 16:16:53','I','N',99,'reception','2025-10-12 16:17:53','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0108',0,0,'','','X-RAY SHOULDER','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'1',0,1000,NULL,'',0,'N','N','N','','U','','N','Y','Y','vishal','2025-11-08 14:31:04','I','N',99,'vishal','2025-11-08 14:32:15','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0112',0,0,'','','USG CHEST A+P','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N','','U','','N','Y','Y','riya','2025-11-20 10:48:02','I','N',99,'riya','2025-11-20 10:52:35','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0113',0,0,'','','USG GUIDED PLURAL TAPPING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,0,NULL,'',0,'N','N','N','','U','','N','Y','Y','riya','2025-11-20 10:49:21','I','N',99,'riya','2025-11-20 10:51:30','','0000-00-00 00:00:00'),(0,0,'WPRC','','WPRC0113',1,0,'','','USG GUIDED PLURAL TAPPING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',0,2500,NULL,'',0,'N','N','N','','U','','N','Y','Y','riya','2025-11-20 10:51:30','I','N',99,'riya','2025-11-20 10:52:26','riya','2025-11-20 10:51:30'),(0,0,'XRY','','XRY0007',0,0,'','','X-RAY  DL SPINE AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N','','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'shweta','2025-10-10 16:27:36','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0007',1,0,'','','X-RAY  DL SPINE AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',300,0,NULL,'',0,'N','N','N','','U','','N','Y','Y','shweta','2025-10-10 16:27:36','I','N',600,'shweta','2025-10-10 16:27:59','shweta','2025-10-10 16:27:36'),(0,0,'XRY','','XRY0008',0,0,'','','X-RAY  DL SPINE AP (PORTABLE)','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N','','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'shweta','2025-10-10 16:28:14','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0009',0,0,'','','X-RAY ABDOMEN','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N','','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'shweta','2025-10-10 16:28:27','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0011',0,0,'','','X-RAY BOTH ANKLE AP','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N','','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'shweta','2025-10-10 16:28:42','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0017',0,0,'','','X-RAY BOTH KNEE AP STANDING','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',200,200,NULL,'',0,'N','N','N','','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'shweta','2025-10-10 16:29:08','','0000-00-00 00:00:00'),(0,0,'XRY','','XRY0045',0,0,'','','X-RAY CERVICAL DORSAL SPINE SWIMMER\'S VIEW','','','0000-00-00','0000-00-00',0,0,0,0,0,0,'',1,1,NULL,'',0,'N','N','N','','U','','N','Y','Y','','0000-00-00 00:00:00','I','N',99,'shweta','2025-10-13 09:43:18','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `service_master_amendment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `service_request`
--

DROP TABLE IF EXISTS `service_request`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `service_request` (
  `req_id` int(11) NOT NULL,
  `fyear` int(11) NOT NULL,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `req_date` date NOT NULL,
  `req_time` time NOT NULL,
  `opd_reg_id` bigint(20) NOT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `service_grp_cd` varchar(4) NOT NULL,
  `service_cd` varchar(8) NOT NULL,
  `hospital_mandal` enum('H','M') DEFAULT 'H' COMMENT 'H - HOSPITAL SERVICE and M - MANDAL SERVICE',
  `is_package_service` enum('N','Y') NOT NULL DEFAULT 'N',
  `quantity` float(9,2) NOT NULL,
  `service_rate` float NOT NULL,
  `service_gross_amt` float NOT NULL,
  `service_discount_type` enum('A','P') NOT NULL DEFAULT 'A',
  `service_discount_percent` float NOT NULL,
  `service_discount_amt` float NOT NULL,
  `gst_percentage` float(9,2) NOT NULL,
  `gst_amount` float(9,2) NOT NULL,
  `service_amt_before_gst` float(9,2) NOT NULL,
  `service_amt` float NOT NULL,
  `provider_code` int(11) NOT NULL,
  `provider_code_for_hospital` int(11) NOT NULL COMMENT 'provider code for business entity',
  `test_id` int(11) NOT NULL,
  `vendor_lab_id` varchar(20) NOT NULL,
  `doctor_charge_id` int(11) NOT NULL COMMENT 'doctor_charge_id from doctor_visit table',
  `result_id` int(11) NOT NULL COMMENT 'result_id from result table',
  `item_cd` varchar(6) NOT NULL,
  `req_note` varchar(40) NOT NULL,
  `room_cat_id` varchar(4) NOT NULL COMMENT 'Room category id for ICU room type check',
  `agency` varchar(4) NOT NULL COMMENT 'lab agency name',
  `paid` varchar(1) NOT NULL,
  `r_fyear` int(11) NOT NULL,
  `receipt_cat` varchar(1) NOT NULL,
  `ipd_opd` varchar(2) NOT NULL,
  `receipt_no` int(11) NOT NULL,
  `receipt_sr` int(11) NOT NULL,
  `receipt_discount` int(11) NOT NULL,
  `dept_fyear` int(11) NOT NULL,
  `dept_seq_no` int(11) NOT NULL,
  `request_division` varchar(3) NOT NULL COMMENT 'indicates department or division for which request is genrated(example W-Ward / O-OT)',
  `free` varchar(1) NOT NULL,
  `size` varchar(8) NOT NULL,
  `remark` varchar(100) NOT NULL,
  `bill_remark` varchar(100) NOT NULL,
  `included_in_package` enum('Y','N') NOT NULL DEFAULT 'Y',
  `report_print` enum('Y','N') NOT NULL DEFAULT 'N',
  `is_request_cancelled` enum('N','Y') NOT NULL DEFAULT 'N',
  `is_deleted` enum('Y','N','T') NOT NULL DEFAULT 'N' COMMENT 'T - In transit OR temparary',
  `isAudited` enum('Y','N') DEFAULT 'N',
  `audit_revision_remark` varchar(200) NOT NULL,
  `last_audited_by` varchar(20) NOT NULL,
  `last_audit_datetime` datetime NOT NULL,
  `serial_no` int(11) NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  `IsAdjusted` tinyint(1) DEFAULT '0' COMMENT 'Indicates whether revenue adjusted or not?',
  PRIMARY KEY (`req_id`,`fyear`),
  KEY `service_grp_cd` (`service_grp_cd`),
  KEY `visit_id` (`visit_id`),
  KEY `test_id` (`test_id`),
  KEY `req_date` (`req_date`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_request`
--

LOCK TABLES `service_request` WRITE;
/*!40000 ALTER TABLE `service_request` DISABLE KEYS */;
INSERT INTO `service_request` VALUES (1,2526,0,0,1,'2025-10-08','00:00:00',1,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 10:03:17','janvi','2025-10-08 10:04:25',0),(2,2526,0,0,2,'2025-10-08','00:00:00',2,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 10:09:27','janvi','2025-10-08 10:10:20',0),(3,2526,0,0,3,'2025-10-08','00:00:00',3,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 10:13:01','janvi','2025-10-07 22:43:01',0),(4,2526,0,0,3,'2025-10-08','10:15:12',3,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',3,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 10:15:12','janvi','2025-10-08 10:15:12',0),(5,2526,0,0,3,'2025-10-08','10:15:12',3,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',3,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 10:15:12','janvi','2025-10-08 10:15:12',0),(6,2526,0,0,4,'2025-10-08','00:00:00',4,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',4,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 10:16:06','janvi','2025-10-08 10:16:17',0),(7,2526,0,0,5,'2025-10-08','00:00:00',5,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 10:16:14','shweta','2025-10-08 10:17:33',0),(8,2526,0,0,6,'2025-10-08','00:00:00',6,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',12,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 10:19:48','shweta','2025-10-08 10:27:21',0),(9,2526,0,0,7,'2025-10-08','00:00:00',7,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',6,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 10:21:15','drashti','2025-10-08 10:21:28',0),(10,2526,0,0,8,'2025-10-08','00:00:00',8,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 10:21:52','shweta','2025-10-08 10:22:20',0),(11,2526,0,0,9,'2025-10-08','00:00:00',9,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',8,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 10:22:11','janvi','2025-10-08 10:22:55',0),(12,2526,0,0,10,'2025-10-08','00:00:00',10,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',9,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 10:23:44','drashti','2025-10-08 10:24:23',0),(13,2526,0,0,11,'2025-10-08','00:00:00',11,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',10,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 10:24:32','janvi','2025-10-08 10:25:42',0),(14,2526,0,0,12,'2025-10-08','00:00:00',12,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',41,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 10:24:33','shweta','2025-10-08 11:52:13',0),(15,2526,0,0,13,'2025-10-08','00:00:00',13,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',11,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 10:25:28','drashti','2025-10-08 10:25:53',0),(16,2526,0,0,14,'2025-10-08','00:00:00',14,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',13,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 10:27:03','janvi','2025-10-08 10:27:31',0),(17,2526,0,0,15,'2025-10-08','00:00:00',15,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,0,0,0,'',0,0,'','','','','',2526,'H','O',14,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 10:30:51','shweta','2025-10-08 10:32:24',0),(18,2526,0,0,16,'2025-10-08','00:00:00',16,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',15,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 10:33:30','drashti','2025-10-08 10:34:22',0),(19,2526,0,0,17,'2025-10-08','00:00:00',17,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 10:42:31','manshi','2025-10-07 23:12:31',0),(20,2526,0,0,17,'2025-10-08','10:51:12',17,0,'XRY','XRY0019','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',16,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 10:51:12','manshi','2025-10-08 10:51:12',0),(21,2526,0,0,18,'2025-10-08','00:00:00',18,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',17,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 10:52:51','shweta','2025-10-08 10:53:29',0),(22,2526,0,0,19,'2025-10-08','00:00:00',19,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',18,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 10:55:50','drashti','2025-10-08 10:56:01',0),(23,2526,0,0,20,'2025-10-08','00:00:00',20,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',19,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 10:56:51','janvi','2025-10-08 10:57:19',0),(24,2526,0,0,21,'2025-10-04','01:45:00',0,1,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-08 10:57:38','','0000-00-00 00:00:00',0),(25,2526,0,0,22,'2025-10-08','00:00:00',21,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 10:59:38','drashti','2025-10-07 23:29:38',0),(26,2526,0,0,23,'2025-10-08','00:00:00',22,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',27,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 11:03:05','manshi','2025-10-08 11:22:25',0),(27,2526,0,0,24,'2025-10-08','00:00:00',23,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',20,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-10-08 11:08:39','riya','2025-10-08 11:09:02',0),(28,2526,0,0,25,'2025-10-08','00:00:00',24,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',21,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-10-08 11:10:39','riya','2025-10-08 11:10:57',0),(29,2526,0,0,26,'2025-10-08','00:00:00',25,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',22,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 11:11:35','janvi','2025-10-08 11:11:55',0),(30,2526,0,0,27,'2025-10-08','00:00:00',26,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',35,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 11:11:41','manshi','2025-10-08 11:43:11',0),(31,2526,0,0,28,'2025-10-04','18:00:00',0,2,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'reception','2025-10-08 11:12:41','vishal','2025-10-17 16:53:59',0),(32,2526,0,0,29,'2025-10-08','00:00:00',27,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',23,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 11:14:16','shweta','2025-10-08 11:14:30',0),(33,2526,0,0,30,'2025-10-08','00:00:00',28,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',24,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 11:16:16','shweta','2025-10-08 12:47:10',0),(34,2526,0,0,31,'2025-10-08','00:00:00',29,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',25,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 11:18:24','shweta','2025-10-08 11:19:05',0),(35,2526,0,0,32,'2025-10-08','00:00:00',30,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',26,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 11:19:02','janvi','2025-10-08 11:19:18',0),(36,2526,0,0,33,'2025-10-08','00:00:00',31,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 11:19:23','drashti','2025-10-07 23:49:23',0),(37,2526,0,0,34,'2025-10-03','10:00:00',0,3,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-08 11:24:24','','0000-00-00 00:00:00',0),(38,2526,0,0,35,'2025-10-08','00:00:00',32,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',28,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 11:25:23','drashti','2025-10-08 11:25:41',0),(39,2526,0,0,36,'2025-10-08','00:00:00',33,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 11:28:49','drashti','2025-10-07 23:58:49',0),(40,2526,0,0,37,'2025-10-07','13:00:00',0,4,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',69,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-08 11:29:13','vishal','2025-10-23 12:53:56',0),(41,2526,0,0,38,'2025-10-08','00:00:00',34,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',29,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 11:30:06','shweta','2025-10-08 11:31:02',0),(42,2526,0,0,39,'2025-10-08','00:00:00',35,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',30,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 11:32:01','janvi','2025-10-08 11:32:51',0),(43,2526,0,0,40,'2025-10-08','00:00:00',36,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',31,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 11:32:43','drashti','2025-10-08 11:33:19',0),(44,2526,0,0,41,'2025-10-08','00:00:00',37,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',32,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 11:39:09','janvi','2025-10-08 11:40:15',0),(45,2526,0,0,42,'2025-10-08','00:00:00',38,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',34,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 11:40:41','shweta','2025-10-08 11:42:47',0),(46,2526,0,0,43,'2025-10-08','00:00:00',39,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',33,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 11:41:02','janvi','2025-10-08 11:41:52',0),(47,2526,0,0,44,'2025-10-08','00:00:00',40,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',36,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 11:43:10','drashti','2025-10-08 11:43:54',0),(48,2526,0,0,45,'2025-10-08','00:00:00',41,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',37,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 11:43:45','janvi','2025-10-08 11:44:04',0),(49,2526,0,0,46,'2025-10-08','00:00:00',42,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',38,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 11:46:00','shweta','2025-10-08 11:46:35',0),(50,2526,0,0,47,'2025-10-08','00:00:00',43,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',40,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 11:47:59','drashti','2025-10-08 11:49:44',0),(51,2526,0,0,5,'2025-10-08','11:48:12',5,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',39,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 11:48:12','shweta','2025-10-08 11:48:12',0),(52,2526,0,0,5,'2025-10-08','11:48:12',5,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',39,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 11:48:12','shweta','2025-10-08 11:48:12',0),(53,2526,0,0,48,'2025-10-06','11:00:00',0,5,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-08 11:50:36','reception','2025-10-12 15:25:54',0),(54,2526,0,0,49,'2025-10-08','00:00:00',44,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',42,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 11:52:08','drashti','2025-10-08 11:54:03',0),(55,2526,0,0,50,'2025-10-08','00:00:00',45,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',47,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 11:55:07','drashti','2025-10-08 12:02:50',0),(56,2526,0,0,7,'2025-10-08','11:55:12',7,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',43,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 11:55:12','shweta','2025-10-08 11:55:12',0),(57,2526,0,0,7,'2025-10-08','11:55:12',7,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',43,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 11:55:12','shweta','2025-10-08 11:55:12',0),(58,2526,0,0,51,'2025-10-03','18:30:00',0,6,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-10-08 11:56:05','','0000-00-00 00:00:00',0),(59,2526,0,0,52,'2025-10-08','00:00:00',46,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',48,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 11:57:18','shweta','2025-10-08 12:04:53',0),(60,2526,0,0,53,'2025-10-08','00:00:00',47,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 11:57:29','janvi','2025-10-08 00:27:29',0),(61,2526,0,0,53,'2025-10-08','11:58:24',47,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',44,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 11:58:24','janvi','2025-10-08 11:58:24',0),(62,2526,0,0,54,'2025-10-08','00:00:00',48,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',46,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 11:59:26','shweta','2025-10-08 13:03:16',0),(63,2526,0,0,55,'2025-10-08','00:00:00',49,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',45,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 12:00:08','drashti','2025-10-08 12:00:59',0),(64,2526,0,0,47,'2025-10-08','12:05:36',43,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',49,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 12:05:36','drashti','2025-10-08 12:05:36',0),(65,2526,0,0,25,'2025-10-08','12:06:15',24,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',50,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 12:06:15','shweta','2025-10-08 12:06:15',0),(66,2526,0,0,25,'2025-10-08','12:06:15',24,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',50,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 12:06:15','shweta','2025-10-08 12:06:15',0),(67,2526,0,0,25,'2025-10-08','12:06:15',24,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',50,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 12:06:15','shweta','2025-10-08 12:06:15',0),(68,2526,0,0,56,'2025-10-07','11:15:00',0,7,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-08 12:07:46','vishal','2025-10-11 12:38:33',0),(69,2526,0,0,57,'2025-10-08','00:00:00',50,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',53,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 12:08:14','manshi','2025-10-08 12:09:51',0),(70,2526,0,0,58,'2025-10-08','00:00:00',51,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',51,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 12:08:15','shweta','2025-10-08 12:08:56',0),(71,2526,0,0,59,'2025-10-08','00:00:00',52,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,0,0,0,'',0,0,'','','','','',2526,'H','O',52,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 12:09:04','drashti','2025-10-08 12:09:44',0),(72,2526,0,0,60,'2025-10-06','13:30:00',0,8,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-10-08 12:11:01','','0000-00-00 00:00:00',0),(73,2526,0,0,61,'2025-10-08','00:00:00',53,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',54,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 12:12:08','shweta','2025-10-08 12:54:52',0),(74,2526,0,0,62,'2025-10-06','12:15:00',0,9,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-10-08 12:13:52','','0000-00-00 00:00:00',0),(75,2526,0,0,63,'2025-10-07','10:55:00',0,10,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-08 12:20:02','vishal','2025-10-12 17:16:53',0),(76,2526,0,0,64,'2025-10-08','00:00:00',54,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 12:21:01','drashti','2025-10-08 00:51:01',0),(77,2526,0,0,38,'2025-10-08','12:23:13',34,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',55,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 12:23:13','shweta','2025-10-08 12:23:13',0),(78,2526,0,0,38,'2025-10-08','12:23:13',34,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',55,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 12:23:13','shweta','2025-10-08 12:23:13',0),(79,2526,0,0,38,'2025-10-08','12:23:13',34,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',55,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 12:23:13','shweta','2025-10-08 12:23:13',0),(80,2526,0,0,65,'2025-10-08','00:00:00',55,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',56,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 12:23:42','janvi','2025-10-08 12:24:15',0),(81,2526,0,0,66,'2025-10-08','12:00:00',0,11,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-08 12:23:43','vishal','2025-10-11 20:27:42',0),(82,2526,0,0,67,'2025-10-08','00:00:00',56,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',57,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 12:25:03','drashti','2025-10-08 12:26:12',0),(83,2526,0,0,68,'2025-10-08','00:00:00',57,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',58,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 12:25:55','janvi','2025-10-08 12:26:23',0),(84,2526,0,0,69,'2025-10-08','00:00:00',58,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',59,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 12:27:21','shweta','2025-10-08 12:27:55',0),(85,2526,0,0,70,'2025-10-08','00:00:00',59,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',60,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 12:31:01','janvi','2025-10-08 12:31:35',0),(86,2526,0,0,71,'2025-10-08','00:00:00',60,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',61,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 12:31:35','drashti','2025-10-08 12:32:19',0),(87,2526,0,0,72,'2025-10-08','00:00:00',61,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 12:32:40','janvi','2025-10-08 01:02:40',0),(88,2526,0,0,73,'2025-10-08','00:00:00',62,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',62,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 12:37:11','janvi','2025-10-08 12:37:32',0),(89,2526,0,0,72,'2025-10-08','12:44:06',61,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',63,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 12:44:06','janvi','2025-10-08 12:44:06',0),(90,2526,0,0,74,'2025-10-08','00:00:00',63,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',79,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 12:49:06','janvi','2025-10-08 13:35:52',0),(91,2526,0,0,30,'2025-10-08','12:49:26',28,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',65,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 12:49:26','shweta','2025-10-08 12:49:26',0),(92,2526,0,0,52,'2025-10-08','12:50:35',46,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',66,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 12:50:35','shweta','2025-10-08 12:50:35',0),(93,2526,0,0,52,'2025-10-08','12:50:35',46,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',66,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 12:50:35','shweta','2025-10-08 12:50:35',0),(94,2526,0,0,71,'2025-10-08','12:52:03',60,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',67,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 12:52:03','drashti','2025-10-08 12:52:03',0),(95,2526,0,0,75,'2025-10-08','00:00:00',64,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',69,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 13:00:26','shweta','2025-10-08 13:14:50',0),(96,2526,0,0,76,'2025-10-08','00:00:00',65,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',71,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 13:01:34','shweta','2025-10-08 13:02:32',0),(97,2526,0,0,61,'2025-10-08','13:02:31',53,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',70,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 13:02:31','janvi','2025-10-08 13:02:31',0),(98,2526,0,0,77,'2025-10-08','00:00:00',66,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',74,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 13:14:07','drashti','2025-10-08 13:15:08',0),(99,2526,0,0,75,'2025-10-08','13:17:03',64,0,'PKG','CASE','H','N',1.00,750,750,'P',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',75,1,536,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 13:17:03','janvi','2025-10-08 13:17:03',0),(100,2526,0,0,75,'2025-10-08','13:17:03',64,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',75,2,214,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 13:17:03','janvi','2025-10-08 13:17:03',0),(101,2526,0,0,78,'2025-10-08','00:00:00',67,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',76,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-08 13:17:57','drashti','2025-10-08 13:19:56',0),(102,2526,0,0,79,'2025-10-08','00:00:00',68,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',77,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 13:22:52','priyanshi','2025-10-08 14:27:56',0),(103,2526,0,0,64,'2025-10-08','13:26:24',54,0,'CARP','CARP0024','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',78,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 13:26:24','janvi','2025-10-08 13:26:24',0),(104,2526,0,0,74,'2025-10-08','13:35:52',63,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',79,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 13:35:52','janvi','2025-10-08 13:35:52',0),(105,2526,0,0,69,'2025-10-08','13:49:57',58,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',80,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 13:49:57','shweta','2025-10-08 13:49:57',0),(106,2526,0,0,76,'2025-10-08','14:19:27',65,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',81,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 14:19:27','shweta','2025-10-08 14:19:27',0),(107,2526,0,0,76,'2025-10-08','14:19:27',65,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',81,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 14:19:27','shweta','2025-10-08 14:19:27',0),(108,2526,0,0,79,'2025-10-08','14:28:44',68,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',83,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-08 14:28:44','priyanshi','2025-10-08 14:28:44',0),(109,2526,0,0,80,'2025-10-08','00:00:00',69,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-08 15:40:07','priyanshi','2025-10-08 04:10:07',0),(110,2526,0,0,81,'2025-10-08','00:00:00',70,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-08 15:40:50','priyanshi','2025-10-08 04:10:50',0),(111,2526,0,0,80,'2025-10-08','15:48:02',69,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',84,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-08 15:48:02','priyanshi','2025-10-08 15:48:02',0),(112,2526,0,0,80,'2025-10-08','15:48:02',69,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',84,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-08 15:48:02','priyanshi','2025-10-08 15:48:02',0),(113,2526,0,0,80,'2025-10-08','15:48:02',69,0,'XRY','XRY0134','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',84,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-08 15:48:02','priyanshi','2025-10-08 15:48:02',0),(114,2526,0,0,80,'2025-10-08','15:48:02',69,0,'XRY','XRY0184','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',84,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-08 15:48:02','priyanshi','2025-10-08 15:48:02',0),(115,2526,0,0,81,'2025-10-08','15:48:39',70,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',85,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-08 15:48:39','priyanshi','2025-10-08 15:48:39',0),(116,2526,0,0,81,'2025-10-08','15:48:39',70,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',85,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-08 15:48:39','priyanshi','2025-10-08 15:48:39',0),(117,2526,0,0,81,'2025-10-08','15:48:39',70,0,'WPRC','WPRC0046','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,6,0,0,'',0,0,'','','','','',2526,'H','O',85,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-08 15:48:39','priyanshi','2025-10-08 15:48:39',0),(118,2526,0,0,81,'2025-10-08','15:48:39',70,0,'XRY','XRY0353','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',85,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-08 15:48:39','priyanshi','2025-10-08 15:48:39',0),(119,2526,0,0,82,'2025-10-08','00:00:00',71,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',86,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-08 15:50:20','priyanshi','2025-10-08 15:51:01',0),(120,2526,0,0,83,'2025-10-08','00:00:00',72,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-08 16:12:11','priyanshi','2025-10-08 04:42:11',0),(121,2526,0,0,84,'2025-10-08','00:00:00',73,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-08 16:33:34','priyanshi','2025-10-08 05:03:34',0),(122,2526,0,0,85,'2025-10-08','00:00:00',74,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-08 16:38:38','priyanshi','2025-10-08 05:08:38',0),(123,2526,0,0,86,'2025-10-08','00:00:00',75,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-08 16:39:25','priyanshi','2025-10-08 05:09:25',0),(124,2526,0,0,87,'2025-10-08','00:00:00',76,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',87,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 16:41:25','shweta','2025-10-08 16:42:55',0),(125,2526,0,0,88,'2025-10-08','00:00:00',77,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',88,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 16:51:04','shweta','2025-10-08 16:51:37',0),(126,2526,0,0,89,'2025-10-08','00:00:00',78,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',89,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:00:50','shweta','2025-10-08 17:01:23',0),(127,2526,0,0,90,'2025-10-08','00:00:00',79,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',90,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 17:05:14','janvi','2025-10-08 17:05:38',0),(128,2526,0,0,91,'2025-10-08','00:00:00',80,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',91,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:06:50','shweta','2025-10-08 17:07:09',0),(129,2526,0,0,92,'2025-10-08','00:00:00',81,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',92,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:07:52','shweta','2025-10-08 17:08:06',0),(130,2526,0,0,93,'2025-10-08','00:00:00',82,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',93,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:09:26','shweta','2025-10-08 17:12:07',0),(131,2526,0,0,94,'2025-10-08','00:00:00',83,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:14:28','shweta','2025-10-08 05:44:28',0),(132,2526,0,0,95,'2025-10-08','00:00:00',84,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',94,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:14:58','shweta','2025-10-08 17:15:27',0),(133,2526,0,0,96,'2025-10-08','00:00:00',85,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',95,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:15:44','shweta','2025-10-08 17:16:34',0),(134,2526,0,0,97,'2025-10-08','00:00:00',86,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',96,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 17:15:58','janvi','2025-10-08 17:17:11',0),(135,2526,0,0,98,'2025-10-08','00:00:00',87,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',97,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:20:21','shweta','2025-10-08 17:20:35',0),(136,2526,0,0,99,'2025-10-08','00:00:00',88,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',98,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:26:19','shweta','2025-10-08 17:26:32',0),(137,2526,0,0,100,'2025-10-08','00:00:00',89,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',99,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:26:48','shweta','2025-10-08 17:27:00',0),(138,2526,0,0,101,'2025-10-08','00:00:00',90,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',100,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:27:58','shweta','2025-10-08 17:28:39',0),(139,2526,0,0,87,'2025-10-08','17:29:44',76,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',101,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:29:44','shweta','2025-10-08 17:29:44',0),(140,2526,0,0,87,'2025-10-08','17:29:44',76,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',101,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:29:44','shweta','2025-10-08 17:29:44',0),(141,2526,0,0,87,'2025-10-08','17:29:44',76,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',101,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:29:44','shweta','2025-10-08 17:29:44',0),(142,2526,0,0,102,'2025-10-08','00:00:00',91,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',102,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:30:19','shweta','2025-10-08 17:30:30',0),(143,2526,0,0,103,'2025-10-08','00:00:00',92,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',103,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 17:31:36','janvi','2025-10-08 17:32:35',0),(144,2526,0,0,104,'2025-10-08','00:00:00',93,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',104,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:36:06','shweta','2025-10-08 17:37:08',0),(145,2526,0,0,105,'2025-10-08','00:00:00',94,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',106,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 17:37:32','shweta','2025-10-08 19:55:07',0),(146,2526,0,0,106,'2025-10-08','00:00:00',95,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',105,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:38:38','shweta','2025-10-08 17:39:08',0),(147,2526,0,0,107,'2025-10-08','00:00:00',96,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',107,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:41:41','shweta','2025-10-08 17:42:24',0),(148,2526,0,0,108,'2025-10-08','00:00:00',97,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',108,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:43:23','shweta','2025-10-08 17:43:35',0),(149,2526,0,0,109,'2025-10-08','00:00:00',98,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',109,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-08 17:44:12','urvashi','2025-10-08 17:45:45',0),(150,2526,0,0,110,'2025-10-08','00:00:00',99,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',110,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:46:05','shweta','2025-10-08 17:46:41',0),(151,2526,0,0,111,'2025-10-08','00:00:00',100,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',111,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 17:48:59','janvi','2025-10-08 17:50:14',0),(152,2526,0,0,112,'2025-10-08','00:00:00',101,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-08 17:52:19','urvashi','2025-10-08 06:22:19',0),(153,2526,0,0,113,'2025-10-08','00:00:00',102,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',112,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-08 17:53:41','urvashi','2025-10-08 17:54:36',0),(154,2526,0,0,114,'2025-10-08','00:00:00',103,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',113,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:54:33','shweta','2025-10-08 17:55:47',0),(155,2526,0,0,115,'2025-10-08','00:00:00',104,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',114,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 17:57:16','shweta','2025-10-08 17:58:15',0),(156,2526,0,0,116,'2025-10-08','00:00:00',105,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',116,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 18:00:15','manshi','2025-10-08 18:06:34',0),(157,2526,0,0,117,'2025-10-08','00:00:00',106,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',115,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-08 18:06:03','urvashi','2025-10-08 18:06:25',0),(158,2526,0,0,118,'2025-10-08','00:00:00',107,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',117,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-08 18:07:27','urvashi','2025-10-08 18:07:50',0),(159,2526,0,0,119,'2025-10-08','00:00:00',108,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',122,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 18:08:43','manshi','2025-10-08 18:15:23',0),(160,2526,0,0,120,'2025-10-08','00:00:00',109,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',119,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 18:09:45','janvi','2025-10-08 18:12:16',0),(161,2526,0,0,121,'2025-10-08','00:00:00',110,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',118,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 18:10:44','janvi','2025-10-08 18:11:47',0),(162,2526,0,0,122,'2025-10-08','00:00:00',111,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-08 18:10:53','urvashi','2025-10-08 06:40:53',0),(163,2526,0,0,121,'2025-10-08','18:11:47',110,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,1,'',0,0,'','','','','',2526,'H','O',118,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-10-08 18:11:47','janvi','2025-10-08 18:11:47',0),(164,2526,0,0,120,'2025-10-08','18:12:16',109,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,2,'',0,0,'','','','','',2526,'H','O',119,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-10-08 18:12:16','janvi','2025-10-08 18:12:16',0),(165,2526,0,0,123,'2025-10-08','00:00:00',112,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',120,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 18:12:51','shweta','2025-10-08 18:13:29',0),(166,2526,0,0,124,'2025-10-08','00:00:00',113,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',121,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-08 18:14:52','urvashi','2025-10-08 18:15:14',0),(167,2526,0,0,125,'2025-10-08','00:00:00',114,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',123,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 18:15:22','janvi','2025-10-08 18:16:18',0),(168,2526,0,0,104,'2025-10-08','18:16:22',93,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',124,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 18:16:22','shweta','2025-10-08 18:16:22',0),(169,2526,0,0,104,'2025-10-08','18:16:22',93,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',124,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 18:16:22','shweta','2025-10-08 18:16:22',0),(170,2526,0,0,104,'2025-10-08','18:16:22',93,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',124,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 18:16:22','shweta','2025-10-08 18:16:22',0),(171,2526,0,0,126,'2025-10-08','00:00:00',115,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-08 18:20:23','urvashi','2025-10-08 06:50:23',0),(172,2526,0,0,127,'2025-10-08','00:00:00',116,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 18:21:44','janvi','2025-10-08 06:51:44',0),(173,2526,0,0,128,'2025-10-08','00:00:00',117,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',125,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-08 18:24:03','urvashi','2025-10-08 18:24:28',0),(174,2526,0,0,129,'2025-10-08','00:00:00',118,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 18:25:25','janvi','2025-10-08 06:55:25',0),(175,2526,0,0,129,'2025-10-08','18:26:09',118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',126,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 18:26:09','janvi','2025-10-08 18:26:09',0),(176,2526,0,0,130,'2025-10-08','00:00:00',119,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',127,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 18:28:46','janvi','2025-10-08 18:29:43',0),(177,2526,0,0,131,'2025-10-08','00:00:00',120,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',128,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 18:29:33','shweta','2025-10-08 18:30:11',0),(178,2526,0,0,132,'2025-10-08','00:00:00',121,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',129,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 18:33:37','manshi','2025-10-08 18:33:54',0),(179,2526,0,0,99,'2025-10-08','18:35:12',88,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',130,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 18:35:11','shweta','2025-10-08 18:35:11',0),(180,2526,0,0,99,'2025-10-08','18:35:12',88,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',130,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 18:35:11','shweta','2025-10-08 18:35:11',0),(181,2526,0,0,99,'2025-10-08','18:35:12',88,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',130,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 18:35:11','shweta','2025-10-08 18:35:11',0),(182,2526,0,0,133,'2025-10-08','00:00:00',122,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',131,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 18:38:22','shweta','2025-10-08 18:40:11',0),(183,2526,0,0,134,'2025-10-08','00:00:00',123,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',134,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-08 18:41:14','urvashi','2025-10-08 18:44:11',0),(184,2526,0,0,135,'2025-10-08','00:00:00',124,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',132,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 18:42:15','shweta','2025-10-08 18:42:49',0),(185,2526,0,0,136,'2025-10-08','00:00:00',125,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',133,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 18:43:25','janvi','2025-10-08 18:43:52',0),(186,2526,0,0,137,'2025-10-08','00:00:00',126,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',135,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 18:46:23','janvi','2025-10-08 18:46:56',0),(187,2526,0,0,109,'2025-10-08','18:47:58',98,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',136,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-08 18:47:58','urvashi','2025-10-08 18:47:58',0),(188,2526,0,0,138,'2025-10-08','00:00:00',127,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',137,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 18:48:31','shweta','2025-10-08 18:48:55',0),(189,2526,0,0,122,'2025-10-08','18:50:46',111,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',138,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 18:50:46','janvi','2025-10-08 18:50:46',0),(190,2526,0,0,139,'2025-10-08','00:00:00',128,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',139,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 18:51:53','janvi','2025-10-08 18:52:21',0),(191,2526,0,0,140,'2025-10-08','00:00:00',129,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',143,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-08 18:53:53','urvashi','2025-10-08 18:57:42',0),(192,2526,0,0,114,'2025-10-08','18:54:31',103,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',140,1,43,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 18:54:31','shweta','2025-10-08 18:54:31',0),(193,2526,0,0,114,'2025-10-08','18:54:31',103,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',140,2,257,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 18:54:31','shweta','2025-10-08 18:54:31',0),(194,2526,0,0,141,'2025-10-08','00:00:00',130,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',142,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-08 18:54:57','urvashi','2025-10-08 18:57:22',0),(195,2526,0,0,142,'2025-10-08','00:00:00',131,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',141,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 18:55:45','janvi','2025-10-08 18:56:49',0),(196,2526,0,0,106,'2025-10-08','18:58:01',95,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',144,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 18:58:01','shweta','2025-10-08 18:58:01',0),(197,2526,0,0,106,'2025-10-08','18:58:01',95,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',144,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 18:58:01','shweta','2025-10-08 18:58:01',0),(198,2526,0,0,143,'2025-10-08','00:00:00',132,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',145,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 19:01:42','shweta','2025-10-08 19:02:48',0),(199,2526,0,0,144,'2025-10-08','00:00:00',133,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',146,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 19:07:17','manshi','2025-10-08 19:08:08',0),(200,2526,0,0,145,'2025-10-08','00:00:00',134,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',147,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 19:07:36','shweta','2025-10-08 19:08:47',0),(201,2526,0,0,146,'2025-10-08','00:00:00',135,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',148,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-08 19:13:10','urvashi','2025-10-08 19:14:36',0),(202,2526,0,0,132,'2025-10-08','19:16:00',121,0,'XRY','XRY0157','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',149,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 19:16:00','manshi','2025-10-08 19:16:00',0),(203,2526,0,0,147,'2025-10-08','00:00:00',136,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',150,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-08 19:16:17','urvashi','2025-10-08 19:17:26',0),(204,2526,0,0,148,'2025-10-08','00:00:00',137,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',152,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 19:17:44','manshi','2025-10-08 19:18:29',0),(205,2526,0,0,134,'2025-10-08','19:18:12',123,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',151,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 19:18:12','janvi','2025-10-08 19:18:12',0),(206,2526,0,0,149,'2025-10-08','00:00:00',138,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',153,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 19:20:23','janvi','2025-10-08 19:21:20',0),(207,2526,0,0,150,'2025-10-08','19:20:00',16,12,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-08 19:24:21','vishal','2025-10-11 18:57:01',0),(208,2526,0,0,151,'2025-10-08','00:00:00',139,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 19:32:12','manshi','2025-10-08 08:02:12',0),(209,2526,0,0,152,'2025-10-08','00:00:00',140,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 19:32:29','janvi','2025-10-08 08:02:29',0),(210,2526,0,0,152,'2025-10-08','19:33:19',140,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',154,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 19:33:19','janvi','2025-10-08 19:33:19',0),(211,2526,0,0,153,'2025-10-08','00:00:00',141,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',155,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-08 19:35:16','urvashi','2025-10-08 19:35:58',0),(212,2526,0,0,151,'2025-10-08','19:37:23',139,0,'WPRC','WPRC0046','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',156,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 19:37:23','manshi','2025-10-08 19:37:23',0),(213,2526,0,0,153,'2025-10-08','19:43:36',141,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',157,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-08 19:43:36','urvashi','2025-10-08 19:43:36',0),(214,2526,0,0,154,'2025-10-08','00:00:00',142,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-08 19:44:17','janvi','2025-10-08 08:14:17',0),(215,2526,0,0,155,'2025-10-08','00:00:00',143,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',158,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 19:45:05','manshi','2025-10-08 19:46:41',0),(216,2526,0,0,156,'2025-10-08','00:00:00',144,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 19:48:14','manshi','2025-10-08 08:18:14',0),(217,2526,0,0,157,'2025-10-08','00:00:00',145,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',159,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-08 19:51:53','urvashi','2025-10-08 19:52:34',0),(218,2526,0,0,155,'2025-10-08','19:56:06',143,0,'XRY','XRY0151','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',161,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 19:56:06','manshi','2025-10-08 19:56:06',0),(219,2526,0,0,105,'2025-10-08','20:00:08',94,0,'PKG','CASE','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',162,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 20:00:08','shweta','2025-10-08 20:00:08',0),(220,2526,0,0,156,'2025-10-08','20:00:57',144,0,'XRY','XRY0151','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',163,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 20:00:57','manshi','2025-10-08 20:00:57',0),(221,2526,0,0,27,'2025-10-08','20:08:25',26,0,'WPRC','WPRC0046','H','N',1.00,7000,7000,'P',0,0,0.00,0.00,0.00,7000,7,0,0,'',0,0,'','','','','',2526,'H','O',164,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-08 20:08:25','manshi','2025-10-08 20:08:25',0),(222,2526,0,0,158,'2025-10-08','00:00:00',146,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',165,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-08 20:09:47','shweta','2025-10-08 20:11:19',0),(223,2526,0,0,159,'2025-10-09','09:02:39',47,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',166,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 09:02:39','shweta','2025-10-09 09:02:39',0),(224,2526,0,0,160,'2025-10-09','00:00:00',147,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 09:05:22','shweta','2025-10-08 21:35:22',0),(225,2526,0,0,160,'2025-10-09','09:05:56',147,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',167,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 09:05:56','shweta','2025-10-09 09:05:56',0),(226,2526,0,0,161,'2025-10-09','00:00:00',148,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 09:07:03','shweta','2025-10-08 21:37:03',0),(227,2526,0,0,161,'2025-10-09','09:08:50',148,0,'SURG','SURG0005','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',168,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 09:08:50','shweta','2025-10-09 09:08:50',0),(228,2526,0,0,161,'2025-10-09','09:08:50',148,0,'WPRC','WPRC0046','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,0.00,1100,2,0,0,'',0,0,'','','','','',2526,'H','O',168,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 09:08:50','shweta','2025-10-09 09:08:50',0),(229,2526,0,0,162,'2025-10-09','00:00:00',149,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 09:10:07','shweta','2025-10-08 21:40:07',0),(230,2526,0,0,162,'2025-10-09','09:12:55',149,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',169,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'shweta','2025-10-09 09:12:55','shweta','2025-10-09 09:12:55',0),(231,2526,0,0,162,'2025-10-09','09:12:55',149,0,'OPWD','OPWD0012','H','N',6.00,100,600,'P',0,0,0.00,0.00,0.00,600,4,0,0,'',0,0,'','','','','',2526,'H','O',169,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'shweta','2025-10-09 09:12:55','shweta','2025-10-09 09:12:55',0),(232,2526,0,0,162,'2025-10-09','09:12:55',149,0,'WPRC','WPRC0049','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',169,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'shweta','2025-10-09 09:12:55','shweta','2025-10-09 09:12:55',0),(233,2526,0,0,162,'2025-10-09','09:12:55',149,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,3,'',0,0,'','','','','',2526,'H','O',169,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'shweta','2025-10-09 09:12:55','shweta','2025-10-09 09:12:55',0),(234,2526,0,0,163,'2025-10-09','00:00:00',150,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',170,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 09:18:44','urvashi','2025-10-09 10:58:33',0),(235,2526,0,0,165,'2025-10-09','09:15:00',0,13,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',101,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-09 09:35:58','riya','2025-10-30 18:28:06',0),(236,2526,0,0,166,'2025-10-09','00:00:00',151,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',171,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 09:43:55','shweta','2025-10-09 09:44:17',0),(237,2526,0,0,167,'2025-10-09','00:00:00',152,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',173,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 09:47:56','shweta','2025-10-09 09:48:31',0),(238,2526,0,0,160,'2025-10-09','09:48:17',147,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',172,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 09:48:17','janvi','2025-10-09 09:48:17',0),(239,2526,0,0,168,'2025-10-09','09:30:00',0,14,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',86,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-09 09:49:18','vishal','2025-10-27 19:42:54',0),(240,2526,0,0,169,'2025-10-09','00:00:00',153,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',174,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 10:10:37','janvi','2025-10-09 10:11:59',0),(241,2526,0,0,170,'2025-10-09','00:00:00',154,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',175,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 10:17:38','shweta','2025-10-09 10:18:30',0),(242,2526,0,0,171,'2025-10-09','00:00:00',155,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',176,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 10:27:25','shweta','2025-10-09 10:27:58',0),(243,2526,0,0,159,'2025-10-09','10:34:36',47,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',177,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 10:34:36','janvi','2025-10-09 10:34:36',0),(244,2526,0,0,172,'2025-10-09','00:00:00',156,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',178,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 10:34:58','shweta','2025-10-09 10:35:26',0),(245,2526,0,0,173,'2025-10-09','00:00:00',157,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',179,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 10:36:35','shweta','2025-10-09 10:36:51',0),(246,2526,0,0,174,'2025-10-09','00:00:00',158,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',180,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 10:37:55','shweta','2025-10-09 10:39:25',0),(247,2526,0,0,175,'2025-10-09','00:00:00',159,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',181,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 10:39:59','urvashi','2025-10-09 10:40:35',0),(248,2526,0,0,176,'2025-10-09','00:00:00',160,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',182,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 10:42:43','shweta','2025-10-09 10:43:09',0),(249,2526,0,0,177,'2025-10-09','00:00:00',161,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',183,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 10:44:28','shweta','2025-10-09 10:44:57',0),(250,2526,0,0,178,'2025-10-09','00:00:00',162,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',184,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 10:46:52','urvashi','2025-10-09 10:47:29',0),(251,2526,0,0,179,'2025-10-09','00:00:00',163,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',185,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-09 10:48:37','manshi','2025-10-09 10:48:56',0),(252,2526,0,0,180,'2025-10-09','00:00:00',164,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',186,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 10:48:57','shweta','2025-10-09 10:50:44',0),(253,2526,0,0,181,'2025-10-09','00:00:00',165,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',189,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 10:50:57','janvi','2025-10-09 10:53:42',0),(254,2526,0,0,182,'2025-10-09','00:00:00',166,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',187,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 10:51:45','urvashi','2025-10-09 10:52:33',0),(255,2526,0,0,183,'2025-10-09','00:00:00',167,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',190,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 10:52:10','janvi','2025-10-09 10:54:03',0),(256,2526,0,0,184,'2025-10-09','00:00:00',168,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',188,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 10:52:59','shweta','2025-10-09 10:53:11',0),(257,2526,0,0,185,'2025-10-09','00:00:00',169,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',191,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 10:54:55','shweta','2025-10-09 10:55:19',0),(258,2526,0,0,186,'2025-10-09','00:00:00',170,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',192,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 10:57:53','shweta','2025-10-09 10:58:07',0),(259,2526,0,0,187,'2025-10-09','00:00:00',171,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',194,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 10:59:16','shweta','2025-10-09 10:59:34',0),(260,2526,0,0,188,'2025-10-09','00:00:00',172,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 11:01:13','janvi','2025-10-08 23:31:13',0),(261,2526,0,0,163,'2025-10-09','11:01:51',150,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',195,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 11:01:51','urvashi','2025-10-09 11:01:51',0),(262,2526,0,0,163,'2025-10-09','11:02:48',150,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',196,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-10-09 11:02:48','urvashi','2025-10-09 11:02:48',0),(263,2526,0,0,163,'2025-10-09','11:02:48',150,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',196,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-10-09 11:02:48','urvashi','2025-10-09 11:02:48',0),(264,2526,0,0,163,'2025-10-09','11:02:48',150,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,4,'',0,0,'','','','','',2526,'H','O',196,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-10-09 11:02:48','urvashi','2025-10-09 11:02:48',0),(265,2526,0,0,163,'2025-10-09','11:02:48',150,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',196,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-10-09 11:02:48','urvashi','2025-10-09 11:02:48',0),(266,2526,0,0,167,'2025-10-09','11:03:25',152,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',197,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 11:03:25','shweta','2025-10-09 11:03:25',0),(267,2526,0,0,167,'2025-10-09','11:03:25',152,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',197,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 11:03:25','shweta','2025-10-09 11:03:25',0),(268,2526,0,0,188,'2025-10-09','11:04:14',172,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',198,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'janvi','2025-10-09 11:04:14','janvi','2025-10-09 11:04:14',0),(269,2526,0,0,188,'2025-10-09','11:04:14',172,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',198,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'janvi','2025-10-09 11:04:14','janvi','2025-10-09 11:04:14',0),(270,2526,0,0,188,'2025-10-09','11:04:14',172,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',198,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'janvi','2025-10-09 11:04:14','janvi','2025-10-09 11:04:14',0),(271,2526,0,0,188,'2025-10-09','11:04:14',172,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,5,'',0,0,'','','','','',2526,'H','O',198,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'janvi','2025-10-09 11:04:14','janvi','2025-10-09 11:04:14',0),(272,2526,0,0,188,'2025-10-09','11:04:14',172,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',198,5,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'janvi','2025-10-09 11:04:14','janvi','2025-10-09 11:04:14',0),(273,2526,0,0,189,'2025-10-09','00:00:00',173,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',199,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 11:06:38','urvashi','2025-10-09 11:07:30',0),(274,2526,0,0,190,'2025-10-09','00:00:00',174,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',200,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 11:09:08','janvi','2025-10-09 11:10:17',0),(275,2526,0,0,191,'2025-10-09','00:00:00',175,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',201,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 11:12:24','urvashi','2025-10-09 11:12:57',0),(276,2526,0,0,192,'2025-10-09','00:00:00',176,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',202,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 11:13:26','urvashi','2025-10-09 11:14:09',0),(277,2526,0,0,193,'2025-10-09','11:15:00',150,15,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-09 11:18:34','vishal','2025-10-11 12:20:52',0),(278,2526,0,0,171,'2025-10-09','11:19:35',155,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,6,'',0,0,'','','','','',2526,'H','O',203,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'janvi','2025-10-09 11:19:35','janvi','2025-10-09 11:19:35',0),(279,2526,0,0,194,'2025-10-09','00:00:00',177,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',204,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 11:21:44','shweta','2025-10-09 11:21:55',0),(280,2526,0,0,182,'2025-10-09','11:22:11',166,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',205,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 11:22:11','urvashi','2025-10-09 11:22:11',0),(281,2526,0,0,195,'2025-10-09','00:00:00',178,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',207,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-09 11:24:22','manshi','2025-10-09 11:28:03',0),(282,2526,0,0,196,'2025-10-09','00:00:00',179,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',206,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 11:25:18','shweta','2025-10-09 11:25:29',0),(283,2526,0,0,195,'2025-10-09','11:28:03',178,0,'XRY','XRY0308','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',207,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-09 11:28:03','manshi','2025-10-09 11:28:03',0),(284,2526,0,0,197,'2025-10-09','00:00:00',180,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',213,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 11:29:18','janvi','2025-10-09 11:44:52',0),(285,2526,0,0,198,'2025-10-09','00:00:00',181,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 11:30:17','urvashi','2025-10-09 00:00:17',0),(286,2526,0,0,198,'2025-10-09','11:30:46',181,0,'LAB','LAB0817','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,7,'',0,0,'','','','','',2526,'H','O',208,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',5,'urvashi','2025-10-09 11:30:46','urvashi','2025-10-09 11:30:46',0),(287,2526,0,0,199,'2025-10-09','00:00:00',182,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',209,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 11:32:30','janvi','2025-10-09 11:34:50',0),(288,2526,0,0,200,'2025-10-09','00:00:00',183,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',210,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 11:36:59','shweta','2025-10-09 11:37:38',0),(289,2526,0,0,201,'2025-10-09','00:00:00',184,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',211,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 11:39:01','urvashi','2025-10-09 11:40:02',0),(290,2526,0,0,202,'2025-10-09','00:00:00',185,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',215,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 11:39:12','shweta','2025-10-09 11:46:32',0),(291,2526,0,0,203,'2025-10-09','00:00:00',186,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',212,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 11:43:11','shweta','2025-10-09 11:43:49',0),(292,2526,0,0,174,'2025-10-09','11:45:41',158,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',214,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 11:45:41','shweta','2025-10-09 11:45:41',0),(293,2526,0,0,174,'2025-10-09','11:45:41',158,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',214,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 11:45:41','shweta','2025-10-09 11:45:41',0),(294,2526,0,0,174,'2025-10-09','11:45:41',158,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',214,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 11:45:41','shweta','2025-10-09 11:45:41',0),(295,2526,0,0,204,'2025-10-09','00:00:00',187,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',216,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 11:46:05','urvashi','2025-10-09 11:46:44',0),(296,2526,0,0,205,'2025-10-09','00:00:00',188,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',217,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 11:50:14','shweta','2025-10-09 11:50:36',0),(297,2526,0,0,206,'2025-10-09','00:00:00',189,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',218,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 11:52:47','shweta','2025-10-09 11:53:08',0),(298,2526,0,0,207,'2025-10-09','00:00:00',190,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',219,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 11:55:20','urvashi','2025-10-09 11:56:03',0),(299,2526,0,0,201,'2025-10-09','11:57:49',184,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',220,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 11:57:49','janvi','2025-10-09 11:57:49',0),(300,2526,0,0,180,'2025-10-09','12:02:55',164,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',221,1,86,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 12:02:55','shweta','2025-10-09 12:02:55',0),(301,2526,0,0,180,'2025-10-09','12:02:55',164,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',221,2,377,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 12:02:55','shweta','2025-10-09 12:02:55',0),(302,2526,0,0,180,'2025-10-09','12:02:55',164,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',221,3,429,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 12:02:55','shweta','2025-10-09 12:02:55',0),(303,2526,0,0,180,'2025-10-09','12:02:55',164,0,'NEU1','NEU10019','H','N',1.00,1800,1800,'P',0,0,0.00,0.00,0.00,1800,9999,0,0,'',0,0,'','','','','',2526,'H','O',221,4,309,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 12:02:55','shweta','2025-10-09 12:02:55',0),(304,2526,0,0,208,'2025-10-09','00:00:00',191,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',222,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 12:04:21','urvashi','2025-10-09 12:04:58',0),(305,2526,0,0,209,'2025-10-09','00:00:00',192,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',223,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 12:07:49','shweta','2025-10-09 12:07:59',0),(306,2526,0,0,200,'2025-10-09','12:09:21',183,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',224,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 12:09:21','shweta','2025-10-09 12:09:21',0),(307,2526,0,0,200,'2025-10-09','12:09:21',183,0,'NEU1','NEU10020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','O',224,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 12:09:21','shweta','2025-10-09 12:09:21',0),(308,2526,0,0,210,'2025-10-09','00:00:00',193,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',225,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 12:12:32','shweta','2025-10-09 12:13:03',0),(309,2526,0,0,211,'2025-10-09','00:00:00',194,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',226,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 12:16:44','janvi','2025-10-09 12:17:10',0),(310,2526,0,0,212,'2025-10-09','00:00:00',195,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',227,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-09 12:18:21','manshi','2025-10-09 12:18:36',0),(311,2526,0,0,213,'2025-10-09','00:00:00',196,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',228,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 12:19:53','shweta','2025-10-09 12:20:05',0),(312,2526,0,0,214,'2025-10-09','00:00:00',197,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',229,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 12:22:14','urvashi','2025-10-09 12:23:10',0),(313,2526,0,0,185,'2025-10-09','12:28:01',169,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',230,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 12:28:01','shweta','2025-10-09 12:28:01',0),(314,2526,0,0,185,'2025-10-09','12:28:01',169,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',230,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 12:28:01','shweta','2025-10-09 12:28:01',0),(315,2526,0,0,185,'2025-10-09','12:28:01',169,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',230,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 12:28:01','shweta','2025-10-09 12:28:01',0),(316,2526,0,0,215,'2025-10-09','00:00:00',198,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',231,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 12:30:44','janvi','2025-10-09 12:31:42',0),(317,2526,0,0,216,'2025-10-09','12:30:00',166,16,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,1,0,0,1,'ER','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-09 12:33:11','vishal','2025-10-15 12:03:01',0),(318,2526,0,0,217,'2025-10-09','00:00:00',199,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',232,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 12:42:48','urvashi','2025-10-09 12:43:43',0),(319,2526,0,0,218,'2025-10-09','00:00:00',200,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',233,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 12:44:28','janvi','2025-10-09 12:46:12',0),(320,2526,0,0,219,'2025-10-09','00:00:00',201,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',234,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 12:54:07','shweta','2025-10-09 12:54:57',0),(321,2526,0,0,220,'2025-10-09','00:00:00',202,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',235,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 13:01:51','janvi','2025-10-09 13:03:05',0),(322,2526,0,0,221,'2025-10-09','00:00:00',203,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',236,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 13:05:28','janvi','2025-10-09 13:42:46',0),(323,2526,0,0,222,'2025-10-09','00:00:00',204,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',238,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 13:43:25','shweta','2025-10-09 13:43:50',0),(324,2526,0,0,223,'2025-10-09','00:00:00',205,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',239,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 13:46:16','shweta','2025-10-09 13:46:53',0),(325,2526,0,0,219,'2025-10-09','13:54:15',201,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',240,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 13:54:15','shweta','2025-10-09 13:54:15',0),(326,2526,0,0,219,'2025-10-09','13:54:15',201,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',240,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 13:54:15','shweta','2025-10-09 13:54:15',0),(327,2526,0,0,224,'2025-10-09','14:30:00',116,17,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-09 14:36:28','vishal','2025-10-12 18:57:33',0),(328,2526,0,0,225,'2025-10-09','00:00:00',206,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',241,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 16:28:49','janvi','2025-10-09 18:05:36',0),(329,2526,0,0,226,'2025-10-09','00:00:00',207,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',243,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 16:41:55','shweta','2025-10-09 16:42:17',0),(330,2526,0,0,227,'2025-10-09','00:00:00',208,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',242,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 16:41:58','shweta','2025-10-09 16:42:13',0),(331,2526,0,0,228,'2025-10-09','00:00:00',209,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',244,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 16:45:29','shweta','2025-10-09 16:45:49',0),(332,2526,0,0,229,'2025-10-09','00:00:00',210,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',245,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 16:54:14','shweta','2025-10-09 16:54:46',0),(333,2526,0,0,230,'2025-10-09','00:00:00',211,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',246,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 16:54:14','shweta','2025-10-09 16:55:07',0),(334,2526,0,0,231,'2025-10-09','00:00:00',212,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',247,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 17:01:51','shweta','2025-10-09 17:02:02',0),(335,2526,0,0,232,'2025-10-09','00:00:00',213,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',248,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 17:08:17','shweta','2025-10-09 17:11:47',0),(336,2526,0,0,233,'2025-10-09','00:00:00',214,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',249,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 17:15:30','shweta','2025-10-09 17:16:02',0),(337,2526,0,0,234,'2025-10-09','00:00:00',215,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',250,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 17:19:38','shweta','2025-10-09 17:19:50',0),(338,2526,0,0,226,'2025-10-09','17:19:54',207,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',251,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 17:19:54','shweta','2025-10-09 17:19:54',0),(339,2526,0,0,226,'2025-10-09','17:19:54',207,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',251,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 17:19:54','shweta','2025-10-09 17:19:54',0),(340,2526,0,0,226,'2025-10-09','17:19:54',207,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',251,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 17:19:54','shweta','2025-10-09 17:19:54',0),(341,2526,0,0,235,'2025-10-09','00:00:00',216,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',252,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 17:24:11','shweta','2025-10-09 17:24:27',0),(342,2526,0,0,236,'2025-10-09','00:00:00',217,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 17:25:55','janvi','2025-10-09 05:55:55',0),(343,2526,0,0,237,'2025-10-09','00:00:00',218,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',253,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 17:27:23','janvi','2025-10-09 17:28:14',0),(344,2526,0,0,238,'2025-10-09','00:00:00',219,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',254,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 17:28:35','shweta','2025-10-09 17:29:13',0),(345,2526,0,0,239,'2025-10-09','00:00:00',220,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',255,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 17:32:46','shweta','2025-10-09 17:33:16',0),(346,2526,0,0,240,'2025-10-09','00:00:00',221,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 17:40:26','janvi','2025-10-09 06:10:27',0),(347,2526,0,0,241,'2025-10-09','00:00:00',222,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',256,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 17:42:25','shweta','2025-10-09 17:43:17',0),(348,2526,0,0,242,'2025-10-09','00:00:00',223,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',259,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 17:47:35','shweta','2025-10-09 17:51:58',0),(349,2526,0,0,243,'2025-10-09','17:50:37',89,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',257,1,92,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 17:50:37','shweta','2025-10-09 17:50:37',0),(350,2526,0,0,243,'2025-10-09','17:50:37',89,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',257,2,404,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 17:50:37','shweta','2025-10-09 17:50:37',0),(351,2526,0,0,243,'2025-10-09','17:50:37',89,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',257,3,404,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 17:50:37','shweta','2025-10-09 17:50:37',0),(352,2526,0,0,244,'2025-10-09','00:00:00',224,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',258,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 17:50:38','janvi','2025-10-09 17:50:55',0),(353,2526,0,0,229,'2025-10-09','17:56:12',210,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',260,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 17:56:12','shweta','2025-10-09 17:56:12',0),(354,2526,0,0,229,'2025-10-09','17:56:12',210,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',260,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 17:56:12','shweta','2025-10-09 17:56:12',0),(355,2526,0,0,245,'2025-10-09','00:00:00',225,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',261,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 17:56:12','shweta','2025-10-09 17:56:56',0),(356,2526,0,0,246,'2025-10-09','18:00:00',0,18,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-09 18:00:34','reception','2025-10-12 16:19:31',0),(357,2526,0,0,247,'2025-10-09','00:00:00',226,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',262,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 18:00:42','urvashi','2025-10-09 18:01:21',0),(358,2526,0,0,248,'2025-10-09','00:00:00',227,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',263,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 18:01:13','shweta','2025-10-09 18:02:23',0),(359,2526,0,0,240,'2025-10-09','18:04:26',221,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',264,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 18:04:26','janvi','2025-10-09 18:04:26',0),(360,2526,0,0,249,'2025-10-09','00:00:00',228,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',267,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 18:05:35','urvashi','2025-10-09 18:06:18',0),(361,2526,0,0,250,'2025-10-09','00:00:00',229,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',266,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 18:05:36','shweta','2025-10-09 18:57:59',0),(362,2526,0,0,251,'2025-10-09','00:00:00',230,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',268,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 18:07:39','shweta','2025-10-09 18:58:53',0),(363,2526,0,0,252,'2025-10-09','00:00:00',231,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',269,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 18:11:01','urvashi','2025-10-09 18:12:09',0),(364,2526,0,0,253,'2025-10-09','00:00:00',232,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',270,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 18:11:07','janvi','2025-10-09 18:12:21',0),(365,2526,0,0,254,'2025-10-09','00:00:00',233,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',271,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 18:12:48','shweta','2025-10-09 18:13:10',0),(366,2526,0,0,255,'2025-10-09','18:15:14',111,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',272,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 18:15:14','urvashi','2025-10-09 18:15:14',0),(367,2526,0,0,238,'2025-10-09','18:16:47',219,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',273,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 18:16:47','shweta','2025-10-09 18:16:47',0),(368,2526,0,0,238,'2025-10-09','18:16:47',219,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',273,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 18:16:47','shweta','2025-10-09 18:16:47',0),(369,2526,0,0,238,'2025-10-09','18:16:47',219,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',273,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 18:16:47','shweta','2025-10-09 18:16:47',0),(370,2526,0,0,256,'2025-10-09','00:00:00',234,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',274,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 18:17:55','janvi','2025-10-09 18:18:44',0),(371,2526,0,0,257,'2025-10-08','14:00:00',0,19,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-09 18:19:11','','0000-00-00 00:00:00',0),(372,2526,0,0,258,'2025-10-09','00:00:00',235,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',275,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 18:23:47','janvi','2025-10-09 18:24:16',0),(373,2526,0,0,259,'2025-10-09','00:00:00',236,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',276,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 18:24:04','shweta','2025-10-09 18:24:43',0),(374,2526,0,0,260,'2025-10-09','00:00:00',237,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',277,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 18:28:43','urvashi','2025-10-09 18:29:23',0),(375,2526,0,0,261,'2025-10-09','00:00:00',238,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',278,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 18:32:31','urvashi','2025-10-09 18:32:56',0),(376,2526,0,0,262,'2025-10-09','00:00:00',239,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',279,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 18:33:40','janvi','2025-10-09 18:34:20',0),(377,2526,0,0,263,'2025-10-09','00:00:00',240,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',280,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 18:34:17','urvashi','2025-10-09 18:34:44',0),(378,2526,0,0,249,'2025-10-09','18:38:49',228,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',281,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 18:38:49','janvi','2025-10-09 18:38:49',0),(379,2526,0,0,249,'2025-10-09','18:38:49',228,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',281,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 18:38:49','janvi','2025-10-09 18:38:49',0),(380,2526,0,0,264,'2025-10-09','00:00:00',241,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',282,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 18:48:14','urvashi','2025-10-09 18:48:49',0),(381,2526,0,0,265,'2025-10-09','00:00:00',242,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',283,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 18:48:35','janvi','2025-10-09 18:49:18',0),(382,2526,0,0,266,'2025-10-09','00:00:00',243,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',284,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 18:50:17','urvashi','2025-10-09 18:51:03',0),(383,2526,0,0,267,'2025-10-09','00:00:00',244,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',285,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 18:55:51','urvashi','2025-10-09 18:57:03',0),(384,2526,0,0,268,'2025-10-09','19:00:10',140,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',288,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 19:00:10','janvi','2025-10-09 19:00:10',0),(385,2526,0,0,269,'2025-10-09','00:00:00',245,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',289,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 19:00:50','janvi','2025-10-09 19:01:17',0),(386,2526,0,0,270,'2025-10-09','00:00:00',246,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',290,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 19:01:02','urvashi','2025-10-09 19:01:37',0),(387,2526,0,0,271,'2025-10-09','19:02:13',118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',291,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 19:02:13','janvi','2025-10-09 19:02:13',0),(388,2526,0,0,272,'2025-10-09','00:00:00',247,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 19:11:10','janvi','2025-10-09 07:41:10',0),(389,2526,0,0,273,'2025-10-09','00:00:00',248,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',292,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 19:11:18','urvashi','2025-10-09 19:11:55',0),(390,2526,0,0,274,'2025-10-09','00:00:00',249,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',294,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 19:12:39','janvi','2025-10-09 19:13:48',0),(391,2526,0,0,275,'2025-10-09','00:00:00',250,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',293,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 19:12:52','shweta','2025-10-09 19:13:12',0),(392,2526,0,0,276,'2025-10-09','00:00:00',251,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',295,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 19:15:22','urvashi','2025-10-09 19:35:38',0),(393,2526,0,0,277,'2025-10-09','00:00:00',252,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',296,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 19:17:36','shweta','2025-10-09 19:19:15',0),(394,2526,0,0,278,'2025-10-09','00:00:00',253,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',297,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 19:25:58','janvi','2025-10-09 19:26:41',0),(395,2526,0,0,245,'2025-10-09','19:27:17',225,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',298,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 19:27:17','shweta','2025-10-09 19:27:17',0),(396,2526,0,0,245,'2025-10-09','19:27:17',225,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',298,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 19:27:17','shweta','2025-10-09 19:27:17',0),(397,2526,0,0,279,'2025-10-09','00:00:00',254,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',299,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 19:27:23','urvashi','2025-10-09 19:28:12',0),(398,2526,0,0,280,'2025-10-09','00:00:00',255,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',300,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 19:31:56','urvashi','2025-10-09 19:32:58',0),(399,2526,0,0,281,'2025-10-09','00:00:00',256,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',301,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 19:34:32','urvashi','2025-10-09 19:35:02',0),(400,2526,0,0,232,'2025-10-09','19:41:09',213,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',303,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-09 19:41:09','shweta','2025-10-09 19:41:09',0),(401,2526,0,0,272,'2025-10-09','19:51:15',247,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',304,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 19:51:15','janvi','2025-10-09 19:51:15',0),(402,2526,0,0,282,'2025-10-09','00:00:00',257,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',305,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-09 19:52:29','janvi','2025-10-09 19:52:58',0),(403,2526,0,0,283,'2025-10-09','20:00:00',0,20,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-09 20:04:52','','0000-00-00 00:00:00',0),(404,2526,0,0,269,'2025-10-09','20:24:44',245,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,5,0,0,'',0,0,'','','','','',2526,'H','O',306,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 20:24:44','urvashi','2025-10-09 20:24:44',0),(405,2526,0,0,269,'2025-10-09','20:24:44',245,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',306,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-09 20:24:44','urvashi','2025-10-09 20:24:44',0),(406,2526,0,0,284,'2025-10-09','23:00:00',0,21,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-09 23:06:49','reception','2025-10-12 15:19:33',0),(407,2526,0,0,285,'2025-10-10','00:00:00',258,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',307,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 09:03:07','drashti','2025-10-10 09:04:09',0),(408,2526,0,0,286,'2025-10-10','00:00:00',259,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',329,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 09:06:33','janvi','2025-10-10 11:01:58',0),(409,2526,0,0,287,'2025-10-10','00:00:00',260,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 09:07:33','priyanshi','2025-10-09 21:37:33',0),(410,2526,0,0,287,'2025-10-10','09:07:58',260,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',308,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 09:07:58','janvi','2025-10-10 09:21:07',0),(411,2526,0,0,288,'2025-10-10','00:00:00',261,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 09:09:15','priyanshi','2025-10-09 21:39:15',0),(412,2526,0,0,288,'2025-10-10','09:10:38',261,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',309,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 09:10:38','priyanshi','2025-10-10 09:10:38',0),(413,2526,0,0,288,'2025-10-10','09:10:38',261,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',309,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 09:10:38','priyanshi','2025-10-10 09:10:38',0),(414,2526,0,0,288,'2025-10-10','09:10:38',261,0,'WPRC','WPRC0037','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',309,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 09:10:38','priyanshi','2025-10-10 09:10:38',0),(415,2526,0,0,289,'2025-10-10','09:12:16',47,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',310,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 09:12:16','priyanshi','2025-10-10 09:12:16',0),(416,2526,0,0,290,'2025-10-10','09:13:05',241,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',311,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 09:13:05','priyanshi','2025-10-10 09:13:05',0),(417,2526,0,0,291,'2025-10-10','00:00:00',262,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 09:15:50','priyanshi','2025-10-09 21:45:50',0),(418,2526,0,0,291,'2025-10-10','09:18:11',262,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',312,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 09:18:11','priyanshi','2025-10-10 09:18:11',0),(419,2526,0,0,291,'2025-10-10','09:18:11',262,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',312,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 09:18:11','priyanshi','2025-10-10 09:18:11',0),(420,2526,0,0,291,'2025-10-10','09:18:11',262,0,'OPWD','OPWD0015','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,5,0,0,'',0,0,'','','','','',2526,'H','O',312,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 09:18:11','priyanshi','2025-10-10 09:18:11',0),(421,2526,0,0,292,'2025-10-10','09:18:20',147,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',313,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 09:18:20','janvi','2025-10-10 09:18:20',0),(422,2526,0,0,293,'2025-10-10','09:22:42',147,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',315,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 09:22:42','janvi','2025-10-10 09:22:42',0),(423,2526,0,0,294,'2025-10-10','00:00:00',263,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',316,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 09:25:42','priyanshi','2025-10-10 09:26:26',0),(424,2526,0,0,295,'2025-10-10','00:00:00',264,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',317,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 09:56:01','priyanshi','2025-10-10 09:56:22',0),(425,2526,0,0,296,'2025-10-10','00:00:00',265,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',318,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 10:00:54','drashti','2025-10-10 10:01:31',0),(426,2526,0,0,297,'2025-10-10','00:00:00',266,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',319,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 10:08:06','reception','2025-10-10 10:08:56',0),(427,2526,0,0,298,'2025-10-10','00:00:00',267,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',320,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 10:11:08','reception','2025-10-10 10:11:29',0),(428,2526,0,0,299,'2025-10-10','00:00:00',268,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',321,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 10:14:43','reception','2025-10-10 10:15:36',0),(429,2526,0,0,300,'2025-10-10','00:00:00',269,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',322,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 10:18:43','reception','2025-10-10 10:19:14',0),(430,2526,0,0,301,'2025-10-10','00:00:00',270,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',324,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 10:27:30','janvi','2025-10-10 10:29:23',0),(431,2526,0,0,302,'2025-10-10','00:00:00',271,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',323,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 10:28:21','drashti','2025-10-10 10:28:52',0),(432,2526,0,0,303,'2025-10-10','00:00:00',272,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 10:36:05','reception','2025-10-09 23:06:05',0),(433,2526,0,0,303,'2025-10-10','10:38:01',272,0,'GASS','GASS0038','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,2,0,0,'',0,0,'','','','','',2526,'H','O',325,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 10:38:01','reception','2025-10-10 10:38:01',0),(434,2526,0,0,304,'2025-10-10','00:00:00',273,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',326,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 10:40:45','reception','2025-10-10 10:41:20',0),(435,2526,0,0,305,'2025-10-10','00:00:00',274,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',327,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 10:48:15','reception','2025-10-10 10:48:26',0),(436,2526,0,0,306,'2025-10-10','00:00:00',275,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',328,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 10:55:29','janvi','2025-10-10 10:55:55',0),(437,2526,0,0,307,'2025-10-10','00:00:00',276,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 10:58:02','drashti','2025-10-09 23:28:02',0),(438,2526,0,0,308,'2025-10-10','00:00:00',277,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',331,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 11:01:32','reception','2025-10-10 11:05:30',0),(439,2526,0,0,309,'2025-10-10','00:00:00',278,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',330,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 11:03:51','reception','2025-10-10 11:04:21',0),(440,2526,0,0,310,'2025-10-10','00:00:00',279,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',332,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 11:05:50','janvi','2025-10-10 11:06:18',0),(441,2526,0,0,311,'2025-10-10','00:00:00',280,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',333,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 11:13:33','drashti','2025-10-10 11:14:05',0),(442,2526,0,0,312,'2025-10-10','00:00:00',281,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',334,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 11:13:40','janvi','2025-10-10 11:14:06',0),(443,2526,0,0,313,'2025-10-10','00:00:00',282,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',338,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 11:15:15','manshi','2025-10-10 11:19:16',0),(444,2526,0,0,314,'2025-10-10','00:00:00',283,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',335,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 11:15:23','reception','2025-10-10 11:16:29',0),(445,2526,0,0,315,'2025-10-10','00:00:00',284,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',336,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 11:17:57','reception','2025-10-10 11:18:17',0),(446,2526,0,0,316,'2025-10-10','00:00:00',285,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',337,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 11:18:33','drashti','2025-10-10 11:19:13',0),(447,2526,0,0,318,'2025-10-10','00:00:00',286,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',339,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 11:20:35','manshi','2025-10-10 11:20:52',0),(448,2526,0,0,319,'2025-10-10','00:00:00',287,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',341,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 11:22:17','drashti','2025-10-10 11:22:57',0),(449,2526,0,0,320,'2025-10-10','00:00:00',288,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',340,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 11:22:25','reception','2025-10-10 11:22:55',0),(450,2526,0,0,321,'2025-10-10','00:00:00',289,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',342,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 11:25:14','reception','2025-10-10 11:25:58',0),(451,2526,0,0,322,'2025-10-10','00:00:00',290,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',343,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 11:25:37','drashti','2025-10-10 11:26:14',0),(452,2526,0,0,323,'2025-10-10','00:00:00',291,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',344,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 11:27:06','reception','2025-10-10 11:27:29',0),(453,2526,0,0,324,'2025-10-10','00:00:00',292,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',345,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 11:34:46','reception','2025-10-10 11:35:17',0),(454,2526,0,0,325,'2025-10-10','00:00:00',293,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',346,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 11:38:38','drashti','2025-10-10 11:40:02',0),(455,2526,0,0,326,'2025-10-10','00:00:00',294,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',347,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 11:44:31','reception','2025-10-10 11:46:20',0),(456,2526,0,0,311,'2025-10-10','11:49:24',280,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',348,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 11:49:24','drashti','2025-10-10 11:49:24',0),(457,2526,0,0,327,'2025-10-10','00:00:00',295,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',349,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 11:50:24','drashti','2025-10-10 11:51:42',0),(458,2526,0,0,327,'2025-10-10','11:51:42',295,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,8,'',0,0,'','','','','',2526,'H','O',349,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'drashti','2025-10-10 11:51:42','drashti','2025-10-10 11:51:42',0),(459,2526,0,0,319,'2025-10-10','11:53:49',287,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',350,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 11:53:49','reception','2025-10-10 11:53:49',0),(460,2526,0,0,328,'2025-10-10','00:00:00',296,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 11:57:54','janvi','2025-10-10 00:27:54',0),(461,2526,0,0,329,'2025-10-10','00:00:00',297,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',351,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 12:02:32','reception','2025-10-10 12:03:07',0),(462,2526,0,0,330,'2025-10-10','00:00:00',298,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',352,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 12:04:37','reception','2025-10-10 12:04:50',0),(463,2526,0,0,331,'2025-10-10','00:00:00',299,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',354,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 12:07:53','drashti','2025-10-10 12:09:34',0),(464,2526,0,0,332,'2025-10-10','00:00:00',300,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',353,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 12:08:05','reception','2025-10-10 12:08:28',0),(465,2526,0,0,333,'2025-10-10','00:00:00',301,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',355,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 12:09:17','manshi','2025-10-10 12:09:48',0),(466,2526,0,0,334,'2025-10-10','00:00:00',302,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',356,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 12:11:43','manshi','2025-10-10 12:13:19',0),(467,2526,0,0,334,'2025-10-10','12:13:19',302,0,'XRY','XRY0151','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',356,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 12:13:19','manshi','2025-10-10 12:13:19',0),(468,2526,0,0,335,'2025-10-10','00:00:00',303,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 12:26:40','janvi','2025-10-10 00:56:40',0),(469,2526,0,0,335,'2025-10-10','12:27:25',303,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',357,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 12:27:25','janvi','2025-10-10 12:27:25',0),(470,2526,0,0,324,'2025-10-10','12:37:41',292,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',358,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 12:37:41','reception','2025-10-10 12:37:41',0),(471,2526,0,0,324,'2025-10-10','12:37:41',292,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',358,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 12:37:41','reception','2025-10-10 12:37:41',0),(472,2526,0,0,324,'2025-10-10','12:37:41',292,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',358,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 12:37:41','reception','2025-10-10 12:37:41',0),(473,2526,0,0,336,'2025-10-10','00:00:00',304,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',359,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 12:44:13','drashti','2025-10-10 12:46:47',0),(474,2526,0,0,337,'2025-10-10','00:00:00',305,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',360,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 12:56:12','drashti','2025-10-10 12:56:54',0),(475,2526,0,0,338,'2025-10-10','00:00:00',306,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',361,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 12:57:41','janvi','2025-10-10 12:58:31',0),(476,2526,0,0,338,'2025-10-10','12:58:31',306,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,9,'',0,0,'','','','','',2526,'H','O',361,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-10-10 12:58:31','janvi','2025-10-10 12:58:31',0),(477,2526,0,0,326,'2025-10-10','13:07:49',294,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',362,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 13:07:49','reception','2025-10-10 13:07:49',0),(478,2526,0,0,326,'2025-10-10','13:07:49',294,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',362,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 13:07:49','reception','2025-10-10 13:07:49',0),(479,2526,0,0,339,'2025-10-10','00:00:00',307,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 13:08:54','drashti','2025-10-10 01:38:54',0),(480,2526,0,0,340,'2025-10-10','00:00:00',308,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',363,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 13:09:48','reception','2025-10-10 13:10:30',0),(481,2526,0,0,341,'2025-10-10','00:00:00',309,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',364,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 13:16:46','reception','2025-10-10 13:18:35',0),(482,2526,0,0,342,'2025-10-10','00:00:00',310,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',366,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 13:20:18','janvi','2025-10-10 13:20:50',0),(483,2526,0,0,332,'2025-10-10','13:20:29',300,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',365,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 13:20:29','reception','2025-10-10 13:20:29',0),(484,2526,0,0,332,'2025-10-10','13:20:29',300,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',365,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 13:20:29','reception','2025-10-10 13:20:29',0),(485,2526,0,0,332,'2025-10-10','13:20:29',300,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',365,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 13:20:29','reception','2025-10-10 13:20:29',0),(486,2526,0,0,343,'2025-10-10','00:00:00',311,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',367,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 13:36:42','manshi','2025-10-10 13:44:21',0),(487,2526,0,0,343,'2025-10-10','13:44:21',311,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',367,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 13:44:21','manshi','2025-10-10 13:44:21',0),(488,2526,0,0,343,'2025-10-10','13:44:21',311,0,'XRY','XRY0390','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',367,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 13:44:21','manshi','2025-10-10 13:44:21',0),(489,2526,0,0,343,'2025-10-10','13:44:21',311,0,'XRY','XRY0426','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',367,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 13:44:21','manshi','2025-10-10 13:44:21',0),(490,2526,0,0,341,'2025-10-10','13:44:47',309,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',368,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 13:44:47','reception','2025-10-10 13:44:47',0),(491,2526,0,0,341,'2025-10-10','13:44:47',309,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',368,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 13:44:47','reception','2025-10-10 13:44:47',0),(492,2526,0,0,341,'2025-10-10','13:44:47',309,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',368,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 13:44:47','reception','2025-10-10 13:44:47',0),(493,2526,0,0,344,'2025-10-10','00:00:00',312,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',369,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 13:47:31','manshi','2025-10-10 13:51:36',0),(494,2526,0,0,345,'2025-10-10','00:00:00',313,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 14:00:51','drashti','2025-10-10 02:30:51',0),(495,2526,0,0,345,'2025-10-10','14:01:28',313,0,'LAB','LAB0817','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,10,'',0,0,'','','','','',2526,'H','O',370,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'drashti','2025-10-10 14:01:28','drashti','2025-10-10 14:01:28',0),(496,2526,0,0,346,'2025-10-10','15:24:37',291,0,'DTPR','DTPR0061','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,0.00,4000,3,0,0,'',0,0,'','','','','',2526,'H','O',371,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 15:24:37','priyanshi','2025-10-10 15:24:37',0),(497,2526,0,0,347,'2025-10-10','00:00:00',314,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 16:00:16','priyanshi','2025-10-10 04:30:16',0),(498,2526,0,0,347,'2025-10-10','16:02:18',314,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',372,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 16:02:18','priyanshi','2025-10-10 16:02:18',0),(499,2526,0,0,347,'2025-10-10','16:02:18',314,0,'WPRC','WPRC0037','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',372,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 16:02:18','priyanshi','2025-10-10 16:02:18',0),(500,2526,0,0,348,'2025-10-10','00:00:00',315,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',373,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-10 16:21:28','priyanshi','2025-10-10 16:21:44',0),(501,2526,0,0,349,'2025-10-10','00:00:00',316,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 16:34:29','reception','2025-10-10 05:04:29',0),(502,2526,0,0,350,'2025-10-10','00:00:00',317,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 16:36:20','drashti','2025-10-10 05:06:20',0),(503,2526,0,0,351,'2025-10-10','00:00:00',318,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',375,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 16:36:29','janvi','2025-10-10 16:37:34',0),(504,2526,0,0,352,'2025-10-10','00:00:00',319,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',374,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 16:37:03','reception','2025-10-10 16:37:13',0),(505,2526,0,0,353,'2025-10-10','00:00:00',320,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',376,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 16:39:54','reception','2025-10-10 16:40:24',0),(506,2526,0,0,354,'2025-10-10','00:00:00',321,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',377,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 16:40:38','drashti','2025-10-10 16:41:09',0),(507,2526,0,0,355,'2025-10-10','00:00:00',322,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 16:45:00','reception','2025-10-10 05:15:00',0),(508,2526,0,0,356,'2025-10-10','00:00:00',323,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',378,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 16:50:17','reception','2025-10-10 16:50:51',0),(509,2526,0,0,357,'2025-10-10','00:00:00',324,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',379,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 16:50:49','drashti','2025-10-10 16:51:09',0),(510,2526,0,0,358,'2025-10-10','00:00:00',325,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 16:54:43','reception','2025-10-10 05:24:43',0),(511,2526,0,0,359,'2025-10-10','00:00:00',326,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 16:59:51','reception','2025-10-10 05:29:52',0),(512,2526,0,0,360,'2025-10-10','00:00:00',327,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',380,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 17:02:18','manshi','2025-10-10 17:02:49',0),(513,2526,0,0,361,'2025-10-10','00:00:00',328,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',381,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 17:04:32','reception','2025-10-10 17:05:13',0),(514,2526,0,0,362,'2025-10-10','00:00:00',329,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',382,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 17:05:50','manshi','2025-10-10 17:06:03',0),(515,2526,0,0,363,'2025-10-10','00:00:00',330,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',383,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 17:10:07','reception','2025-10-10 17:10:30',0),(516,2526,0,0,364,'2025-10-10','00:00:00',331,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',384,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 17:11:47','reception','2025-10-10 17:14:15',0),(517,2526,0,0,365,'2025-10-10','00:00:00',332,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',385,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 17:24:38','drashti','2025-10-10 17:25:30',0),(518,2526,0,0,366,'2025-10-10','00:00:00',333,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',386,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 17:25:52','reception','2025-10-10 17:26:12',0),(519,2526,0,0,367,'2025-10-10','00:00:00',334,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 17:32:53','janvi','2025-10-10 06:02:53',0),(520,2526,0,0,368,'2025-10-10','00:00:00',335,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',387,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 17:33:03','reception','2025-10-10 17:33:33',0),(521,2526,0,0,369,'2025-10-10','00:00:00',336,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',388,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 17:34:38','janvi','2025-10-10 17:36:11',0),(522,2526,0,0,370,'2025-10-10','00:00:00',337,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',400,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 17:38:18','manshi','2025-10-10 17:59:38',0),(523,2526,0,0,371,'2025-10-10','00:00:00',338,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',389,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 17:38:33','reception','2025-10-10 17:39:02',0),(524,2526,0,0,372,'2025-10-10','00:00:00',339,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',401,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 17:38:35','manshi','2025-10-10 17:59:51',0),(525,2526,0,0,373,'2025-10-10','00:00:00',340,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',390,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 17:41:00','reception','2025-10-10 17:41:41',0),(526,2526,0,0,374,'2025-10-10','00:00:00',341,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',391,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 17:46:38','reception','2025-10-10 17:48:12',0),(527,2526,0,0,375,'2025-10-10','00:00:00',342,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',395,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 17:47:12','janvi','2025-10-10 17:52:59',0),(528,2526,0,0,376,'2025-10-10','00:00:00',343,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',394,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 17:48:03','janvi','2025-10-10 17:52:45',0),(529,2526,0,0,377,'2025-10-10','00:00:00',344,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',392,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 17:50:08','reception','2025-10-10 17:50:30',0),(530,2526,0,0,378,'2025-10-10','00:00:00',345,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',393,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 17:51:02','janvi','2025-10-10 17:52:31',0),(531,2526,0,0,380,'2025-10-10','00:00:00',346,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 17:54:19','drashti','2025-10-10 06:24:19',0),(532,2526,0,0,379,'2025-10-10','17:54:47',111,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',396,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 17:54:47','janvi','2025-10-10 17:54:47',0),(533,2526,0,0,381,'2025-10-10','00:00:00',347,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',398,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 17:54:48','reception','2025-10-10 17:55:03',0),(534,2526,0,0,380,'2025-10-10','17:54:59',346,0,'LAB','LAB0817','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,11,'',0,0,'','','','','',2526,'H','O',397,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'drashti','2025-10-10 17:54:59','drashti','2025-10-10 17:54:59',0),(535,2526,0,0,382,'2025-10-10','00:00:00',348,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',399,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 17:55:30','janvi','2025-10-10 17:57:48',0),(536,2526,0,0,383,'2025-10-10','00:00:00',349,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',402,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 18:01:06','drashti','2025-10-10 18:02:21',0),(537,2526,0,0,384,'2025-10-10','00:00:00',350,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',403,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 18:03:49','reception','2025-10-10 18:04:12',0),(538,2526,0,0,364,'2025-10-10','18:05:21',331,0,'NEU1','NEU10019','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',404,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 18:05:21','drashti','2025-10-10 18:05:21',0),(539,2526,0,0,364,'2025-10-10','18:05:21',331,0,'NEU1','NEU10017','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',404,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 18:05:21','drashti','2025-10-10 18:05:21',0),(540,2526,0,0,385,'2025-10-10','00:00:00',351,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',405,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 18:09:55','reception','2025-10-10 18:11:20',0),(541,2526,0,0,386,'2025-10-10','00:00:00',352,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',406,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 18:10:40','janvi','2025-10-10 18:11:35',0),(542,2526,0,0,387,'2025-10-10','00:00:00',353,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',407,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 18:14:07','janvi','2025-10-10 18:15:18',0),(543,2526,0,0,388,'2025-10-10','00:00:00',354,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',408,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 18:19:06','manshi','2025-10-10 19:18:52',0),(544,2526,0,0,389,'2025-10-10','00:00:00',355,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',409,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 18:19:47','drashti','2025-10-10 18:21:19',0),(545,2526,0,0,390,'2025-10-10','00:00:00',356,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',410,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 18:21:07','janvi','2025-10-10 18:22:08',0),(546,2526,0,0,391,'2025-10-10','00:00:00',357,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',411,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 18:22:55','reception','2025-10-10 18:23:54',0),(547,2526,0,0,392,'2025-10-10','00:00:00',358,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',412,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 18:24:04','drashti','2025-10-10 18:24:56',0),(548,2526,0,0,360,'2025-10-10','18:26:01',327,0,'XRY','XRY0292','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',413,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 18:26:01','manshi','2025-10-10 18:26:01',0),(549,2526,0,0,360,'2025-10-10','18:26:01',327,0,'XRY','XRY0189','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',413,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 18:26:01','manshi','2025-10-10 18:26:01',0),(550,2526,0,0,362,'2025-10-10','18:26:50',329,0,'XRY','XRY0390','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',414,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 18:26:50','manshi','2025-10-10 18:26:50',0),(551,2526,0,0,371,'2025-10-10','18:30:51',338,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',415,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 18:30:51','reception','2025-10-10 18:30:51',0),(552,2526,0,0,371,'2025-10-10','18:30:51',338,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',415,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 18:30:51','reception','2025-10-10 18:30:51',0),(553,2526,0,0,371,'2025-10-10','18:30:51',338,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',415,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 18:30:51','reception','2025-10-10 18:30:51',0),(554,2526,0,0,394,'2025-10-10','00:00:00',359,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',417,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 18:31:22','drashti','2025-10-10 18:32:25',0),(555,2526,0,0,393,'2025-10-10','18:31:42',118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',416,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 18:31:42','janvi','2025-10-10 18:31:42',0),(556,2526,0,0,395,'2025-10-10','00:00:00',360,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',418,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 18:32:04','reception','2025-10-10 18:32:46',0),(557,2526,0,0,397,'2025-10-10','00:00:00',361,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',419,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 18:33:29','drashti','2025-10-10 18:33:55',0),(558,2526,0,0,396,'2025-10-10','18:34:05',140,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',420,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 18:34:05','janvi','2025-10-10 18:34:05',0),(559,2526,0,0,388,'2025-10-10','18:34:11',354,0,'XRY','XRY0254','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',421,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 18:34:11','manshi','2025-10-10 18:34:11',0),(560,2526,0,0,398,'2025-10-10','00:00:00',362,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',422,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 18:36:08','reception','2025-10-10 18:37:43',0),(561,2526,0,0,399,'2025-10-10','00:00:00',363,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',423,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 18:40:25','reception','2025-10-10 18:41:13',0),(562,2526,0,0,395,'2025-10-10','18:46:53',360,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',424,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 18:46:53','drashti','2025-10-10 18:46:53',0),(563,2526,0,0,381,'2025-10-10','18:51:14',347,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',425,1,200,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 18:51:14','drashti','2025-10-10 18:53:53',0),(564,2526,0,0,381,'2025-10-10','18:51:14',347,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',425,2,200,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 18:51:14','drashti','2025-10-10 18:53:53',0),(565,2526,0,0,384,'2025-10-10','18:54:32',350,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',427,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 18:54:32','reception','2025-10-10 18:54:32',0),(566,2526,0,0,384,'2025-10-10','18:54:32',350,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',427,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 18:54:32','reception','2025-10-10 18:54:32',0),(567,2526,0,0,400,'2025-10-10','00:00:00',364,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 18:55:06','janvi','2025-10-10 07:25:06',0),(568,2526,0,0,377,'2025-10-10','18:58:58',344,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',428,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 18:58:58','reception','2025-10-10 18:58:58',0),(569,2526,0,0,377,'2025-10-10','18:58:58',344,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',428,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 18:58:58','reception','2025-10-10 18:58:58',0),(570,2526,0,0,401,'2025-10-10','18:59:46',70,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',429,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 18:59:46','manshi','2025-10-10 18:59:46',0),(571,2526,0,0,402,'2025-10-10','00:00:00',365,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',431,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 19:04:54','drashti','2025-10-10 19:07:28',0),(572,2526,0,0,367,'2025-10-10','19:06:47',334,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',430,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-10 19:06:47','reception','2025-10-10 19:06:47',0),(573,2526,0,0,403,'2025-10-10','00:00:00',366,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',432,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 19:08:34','drashti','2025-10-10 19:09:14',0),(574,2526,0,0,404,'2025-10-10','00:00:00',367,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',433,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 19:09:25','janvi','2025-10-10 19:10:35',0),(575,2526,0,0,405,'2025-10-10','00:00:00',368,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',434,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 19:12:04','drashti','2025-10-10 19:12:20',0),(576,2526,0,0,312,'2025-10-10','19:17:58',281,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',435,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 19:17:58','janvi','2025-10-10 19:17:58',0),(577,2526,0,0,406,'2025-10-10','19:20:00',0,22,'REG','REG0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 19:21:47','vishal','2025-10-12 18:08:32',0),(578,2526,0,0,407,'2025-10-10','00:00:00',369,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',442,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 19:23:00','manshi','2025-10-10 19:58:24',0),(579,2526,0,0,408,'2025-10-10','00:00:00',370,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',437,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 19:27:52','drashti','2025-10-10 19:28:39',0),(580,2526,0,0,328,'2025-10-10','19:29:02',296,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',438,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 19:29:02','janvi','2025-10-10 19:29:02',0),(581,2526,0,0,409,'2025-10-05','09:00:00',0,23,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 19:36:40','vishal','2025-10-10 19:50:24',0),(582,2526,0,0,409,'2025-10-05','09:00:00',0,23,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 19:36:40','vishal','2025-10-10 19:50:24',0),(583,2526,0,0,409,'2025-10-05','09:00:00',0,23,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:06:40','vishal','2025-10-10 19:50:24',0),(584,2526,0,0,409,'2025-10-06','09:00:00',0,23,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:06:40','vishal','2025-10-10 19:50:24',0),(585,2526,0,0,409,'2025-10-07','09:00:00',0,23,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:06:40','vishal','2025-10-10 19:50:24',0),(586,2526,0,0,409,'2025-10-08','09:00:00',0,23,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:06:40','vishal','2025-10-10 19:50:24',0),(587,2526,0,0,409,'2025-10-09','09:00:00',0,23,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:06:40','vishal','2025-10-10 19:50:24',0),(588,2526,0,0,409,'2025-10-10','09:00:00',0,23,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:06:40','vishal','2025-10-10 19:50:24',0),(589,2526,0,0,409,'2025-10-05','09:00:00',0,23,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:06:40','vishal','2025-10-10 19:50:24',0),(590,2526,0,0,409,'2025-10-06','09:00:00',0,23,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:06:40','vishal','2025-10-10 19:50:24',0),(591,2526,0,0,409,'2025-10-07','09:00:00',0,23,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:06:40','vishal','2025-10-10 19:50:24',0),(592,2526,0,0,409,'2025-10-08','09:00:00',0,23,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:06:41','vishal','2025-10-10 19:50:24',0),(593,2526,0,0,409,'2025-10-09','09:00:00',0,23,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:06:41','vishal','2025-10-10 19:50:24',0),(594,2526,0,0,409,'2025-10-10','09:00:00',0,23,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:06:41','vishal','2025-10-10 19:50:24',0),(595,2526,0,0,409,'2025-10-05','09:00:00',0,23,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:06:41','vishal','2025-10-10 19:50:24',0),(596,2526,0,0,409,'2025-10-06','09:00:00',0,23,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:06:41','vishal','2025-10-10 19:50:24',0),(597,2526,0,0,409,'2025-10-07','09:00:00',0,23,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:06:41','vishal','2025-10-10 19:50:24',0),(598,2526,0,0,409,'2025-10-08','09:00:00',0,23,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:06:41','vishal','2025-10-10 19:50:24',0),(599,2526,0,0,409,'2025-10-09','09:00:00',0,23,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:06:41','vishal','2025-10-10 19:50:24',0),(600,2526,0,0,409,'2025-10-10','09:00:00',0,23,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:06:41','vishal','2025-10-10 19:50:24',0),(601,2526,0,0,400,'2025-10-10','19:37:19',364,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',439,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-10 19:37:19','janvi','2025-10-10 19:37:19',0),(602,2526,0,0,409,'2025-09-30','09:00:00',0,23,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(603,2526,0,0,409,'2025-10-01','09:00:00',0,23,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(604,2526,0,0,409,'2025-10-02','09:00:00',0,23,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(605,2526,0,0,409,'2025-10-03','09:00:00',0,23,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(606,2526,0,0,409,'2025-10-04','09:00:00',0,23,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(607,2526,0,0,409,'2025-10-05','09:00:00',0,23,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(608,2526,0,0,409,'2025-10-06','09:00:00',0,23,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(609,2526,0,0,409,'2025-10-07','09:00:00',0,23,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(610,2526,0,0,409,'2025-10-08','09:00:00',0,23,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(611,2526,0,0,409,'2025-10-09','09:00:00',0,23,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(612,2526,0,0,409,'2025-10-10','09:00:00',0,23,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(613,2526,0,0,409,'2025-09-30','09:00:00',0,23,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(614,2526,0,0,409,'2025-10-01','09:00:00',0,23,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(615,2526,0,0,409,'2025-10-02','09:00:00',0,23,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(616,2526,0,0,409,'2025-10-03','09:00:00',0,23,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(617,2526,0,0,409,'2025-10-04','09:00:00',0,23,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(618,2526,0,0,409,'2025-10-05','09:00:00',0,23,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(619,2526,0,0,409,'2025-10-06','09:00:00',0,23,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(620,2526,0,0,409,'2025-10-07','09:00:00',0,23,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(621,2526,0,0,409,'2025-10-08','09:00:00',0,23,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(622,2526,0,0,409,'2025-10-09','09:00:00',0,23,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(623,2526,0,0,409,'2025-10-10','09:00:00',0,23,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(624,2526,0,0,409,'2025-09-30','09:00:00',0,23,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(625,2526,0,0,409,'2025-10-01','09:00:00',0,23,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(626,2526,0,0,409,'2025-10-02','09:00:00',0,23,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(627,2526,0,0,409,'2025-10-03','09:00:00',0,23,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(628,2526,0,0,409,'2025-10-04','09:00:00',0,23,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(629,2526,0,0,409,'2025-10-05','09:00:00',0,23,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(630,2526,0,0,409,'2025-10-06','09:00:00',0,23,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(631,2526,0,0,409,'2025-10-07','09:00:00',0,23,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(632,2526,0,0,409,'2025-10-08','09:00:00',0,23,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(633,2526,0,0,409,'2025-10-09','09:00:00',0,23,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(634,2526,0,0,409,'2025-10-10','09:00:00',0,23,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(635,2526,0,0,409,'2025-09-30','09:00:00',0,23,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(636,2526,0,0,409,'2025-10-01','09:00:00',0,23,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(637,2526,0,0,409,'2025-10-02','09:00:00',0,23,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(638,2526,0,0,409,'2025-10-03','09:00:00',0,23,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(639,2526,0,0,409,'2025-10-04','09:00:00',0,23,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(640,2526,0,0,409,'2025-10-05','09:00:00',0,23,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(641,2526,0,0,409,'2025-10-06','09:00:00',0,23,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(642,2526,0,0,409,'2025-10-07','09:00:00',0,23,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(643,2526,0,0,409,'2025-10-08','09:00:00',0,23,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:21','vishal','2025-10-10 19:50:24',0),(644,2526,0,0,409,'2025-10-09','09:00:00',0,23,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(645,2526,0,0,409,'2025-10-10','09:00:00',0,23,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(646,2526,0,0,409,'2025-09-30','09:00:00',0,23,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(647,2526,0,0,409,'2025-10-01','09:00:00',0,23,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(648,2526,0,0,409,'2025-10-02','09:00:00',0,23,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(649,2526,0,0,409,'2025-10-03','09:00:00',0,23,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(650,2526,0,0,409,'2025-10-04','09:00:00',0,23,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(651,2526,0,0,409,'2025-10-05','09:00:00',0,23,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(652,2526,0,0,409,'2025-10-06','09:00:00',0,23,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(653,2526,0,0,409,'2025-10-07','09:00:00',0,23,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(654,2526,0,0,409,'2025-10-08','09:00:00',0,23,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(655,2526,0,0,409,'2025-10-09','09:00:00',0,23,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(656,2526,0,0,409,'2025-10-10','09:00:00',0,23,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(657,2526,0,0,409,'2025-09-30','09:00:00',0,23,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(658,2526,0,0,409,'2025-10-01','09:00:00',0,23,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(659,2526,0,0,409,'2025-10-02','09:00:00',0,23,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(660,2526,0,0,409,'2025-10-03','09:00:00',0,23,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(661,2526,0,0,409,'2025-10-04','09:00:00',0,23,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(662,2526,0,0,409,'2025-09-30','09:00:00',0,23,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(663,2526,0,0,409,'2025-10-01','09:00:00',0,23,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(664,2526,0,0,409,'2025-10-02','09:00:00',0,23,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(665,2526,0,0,409,'2025-10-03','09:00:00',0,23,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(666,2526,0,0,409,'2025-10-04','09:00:00',0,23,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(667,2526,0,0,409,'2025-09-30','09:00:00',0,23,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(668,2526,0,0,409,'2025-10-01','09:00:00',0,23,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(669,2526,0,0,409,'2025-10-02','09:00:00',0,23,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(670,2526,0,0,409,'2025-10-03','09:00:00',0,23,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(671,2526,0,0,409,'2025-10-04','09:00:00',0,23,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 08:12:22','vishal','2025-10-10 19:50:24',0),(672,2526,0,0,410,'2025-10-10','00:00:00',371,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',440,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 19:44:32','drashti','2025-10-10 19:44:50',0),(673,2526,0,0,411,'2025-10-10','00:00:00',372,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',441,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 19:48:10','drashti','2025-10-10 19:50:37',0),(674,2526,0,0,409,'2025-09-30','19:48:00',0,23,'REG','REG0001','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',13,1,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 19:50:24','','0000-00-00 00:00:00',0),(675,2526,0,0,409,'2025-09-30','19:49:00',0,23,'REG','REG0002','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',13,2,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 19:50:24','','0000-00-00 00:00:00',0),(676,2526,0,0,407,'2025-10-10','19:58:24',369,0,'XRY','XRY0371','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',442,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 19:58:24','manshi','2025-10-10 19:58:24',0),(677,2526,0,0,407,'2025-10-10','19:58:24',369,0,'XRY','XRY0244','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',442,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-10 19:58:24','manshi','2025-10-10 19:58:24',0),(678,2526,0,0,412,'2025-10-10','00:00:00',373,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-10 20:01:29','drashti','2025-10-10 08:31:29',0),(679,2526,0,0,413,'2025-10-10','20:30:00',259,24,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 20:35:54','vishal','2025-10-11 19:37:55',0),(680,2526,0,0,413,'2025-10-10','20:30:00',259,24,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 20:35:54','vishal','2025-10-11 19:37:55',0),(681,2526,0,0,413,'2025-10-10','20:30:00',259,24,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:05:54','vishal','2025-10-11 19:37:55',0),(682,2526,0,0,413,'2025-10-10','20:30:00',259,24,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:05:54','vishal','2025-10-11 19:37:55',0),(683,2526,0,0,413,'2025-10-10','20:30:00',259,24,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:05:54','vishal','2025-10-11 19:37:55',0),(684,2526,0,0,413,'2025-10-10','20:30:00',259,24,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:05:54','vishal','2025-10-11 19:37:55',0),(685,2526,0,0,413,'2025-10-10','20:30:00',259,24,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:05:54','vishal','2025-10-11 19:37:55',0),(686,2526,0,0,413,'2025-10-10','20:30:00',259,24,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:05:54','vishal','2025-10-11 19:37:55',0),(687,2526,0,0,413,'2025-10-10','20:30:00',259,24,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:05:54','vishal','2025-10-11 19:37:55',0),(688,2526,0,0,413,'2025-10-10','20:30:00',259,24,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:05:54','vishal','2025-10-11 19:37:55',0),(689,2526,0,0,414,'2025-10-10','03:45:00',0,25,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 21:06:54','vishal','2025-10-12 14:28:59',0),(690,2526,0,0,414,'2025-10-10','03:45:00',0,25,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 21:06:54','vishal','2025-10-12 14:28:59',0),(691,2526,0,0,414,'2025-10-10','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:36:54','vishal','2025-10-12 14:28:59',0),(692,2526,0,0,414,'2025-10-10','03:45:00',0,25,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:36:54','vishal','2025-10-12 14:50:56',0),(693,2526,0,0,414,'2025-10-10','03:45:00',0,25,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:36:54','vishal','2025-10-12 14:28:59',0),(694,2526,0,0,414,'2025-10-10','03:45:00',0,25,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:36:54','vishal','2025-10-12 14:28:59',0),(695,2526,0,0,414,'2025-10-10','03:45:00',0,25,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:36:54','vishal','2025-10-12 14:28:59',0),(696,2526,0,0,414,'2025-10-10','03:45:00',0,25,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:36:54','vishal','2025-10-12 14:28:59',0),(697,2526,0,0,414,'2025-10-10','03:45:00',0,25,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:36:54','vishal','2025-10-12 14:28:59',0),(698,2526,0,0,414,'2025-10-10','03:45:00',0,25,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:36:54','vishal','2025-10-12 14:28:59',0),(699,2526,0,0,415,'2025-10-10','11:45:00',0,26,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',15,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 21:10:26','vishal','2025-10-12 18:27:42',0),(700,2526,0,0,415,'2025-10-10','11:45:00',0,26,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',15,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 21:10:26','vishal','2025-10-12 18:27:42',0),(701,2526,0,0,415,'2025-10-10','11:45:00',0,26,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',15,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:40:26','vishal','2025-10-12 18:27:42',0),(702,2526,0,0,415,'2025-10-10','11:45:00',0,26,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:40:26','vishal','2025-10-12 18:27:42',0),(703,2526,0,0,415,'2025-10-10','11:45:00',0,26,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:40:26','vishal','2025-10-12 18:27:42',0),(704,2526,0,0,415,'2025-10-10','11:45:00',0,26,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:40:26','vishal','2025-10-12 18:27:42',0),(705,2526,0,0,415,'2025-10-10','11:45:00',0,26,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:40:26','vishal','2025-10-12 18:27:42',0),(706,2526,0,0,415,'2025-10-10','11:45:00',0,26,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','305','','','',0,'','',0,9,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:40:26','vishal','2025-10-12 18:27:59',0),(707,2526,0,0,415,'2025-10-10','11:45:00',0,26,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','305','','','',0,'','',0,2,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:40:26','vishal','2025-10-12 18:27:59',0),(708,2526,0,0,415,'2025-10-10','11:45:00',0,26,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:40:26','vishal','2025-10-12 18:27:42',0),(709,2526,0,0,416,'2025-10-10','12:40:00',276,27,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',30,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 21:14:01','vishal','2025-10-12 17:55:33',0),(710,2526,0,0,416,'2025-10-10','12:40:00',276,27,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',30,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 21:14:01','vishal','2025-10-12 17:55:33',0),(711,2526,0,0,416,'2025-10-10','12:40:00',276,27,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','309','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:44:01','vishal','2025-10-12 17:55:33',0),(712,2526,0,0,416,'2025-10-10','12:40:00',276,27,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:44:01','vishal','2025-10-12 17:55:33',0),(713,2526,0,0,416,'2025-10-10','12:40:00',276,27,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:44:01','vishal','2025-10-12 17:55:33',0),(714,2526,0,0,416,'2025-10-10','12:40:00',276,27,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:44:01','vishal','2025-10-12 17:55:33',0),(715,2526,0,0,416,'2025-10-10','12:40:00',276,27,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:44:01','vishal','2025-10-12 17:55:33',0),(716,2526,0,0,416,'2025-10-10','12:40:00',276,27,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','309','','','',0,'','',0,9,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:44:01','vishal','2025-10-12 19:34:49',0),(717,2526,0,0,416,'2025-10-10','12:40:00',276,27,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','309','','','',0,'','',0,2,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:44:01','vishal','2025-10-12 19:34:49',0),(718,2526,0,0,416,'2025-10-10','12:40:00',276,27,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 09:44:01','vishal','2025-10-12 17:55:33',0),(719,2526,0,0,417,'2025-10-10','14:30:00',0,28,'REG','REG0001','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 21:53:07','vishal','2025-10-12 11:25:01',0),(720,2526,0,0,417,'2025-10-10','14:30:00',0,28,'REG','REG0002','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 21:53:07','vishal','2025-10-12 11:25:01',0),(721,2526,0,0,417,'2025-10-10','14:30:00',0,28,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:23:08','vishal','2025-10-12 11:00:08',0),(722,2526,0,0,417,'2025-10-10','14:30:00',0,28,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:23:08','vishal','2025-10-12 11:00:08',0),(723,2526,0,0,417,'2025-10-10','14:30:00',0,28,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:23:08','vishal','2025-10-12 11:00:08',0),(724,2526,0,0,417,'2025-10-10','14:30:00',0,28,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:23:08','vishal','2025-10-12 11:00:08',0),(725,2526,0,0,417,'2025-10-10','14:30:00',0,28,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:23:08','vishal','2025-10-12 11:00:08',0),(726,2526,0,0,417,'2025-10-10','14:30:00',0,28,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:23:08','vishal','2025-10-12 11:00:08',0),(727,2526,0,0,417,'2025-10-10','14:30:00',0,28,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:23:08','vishal','2025-10-12 11:00:08',0),(728,2526,0,0,417,'2025-10-10','14:30:00',0,28,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:23:08','vishal','2025-10-12 11:00:08',0),(729,2526,0,0,56,'2025-10-07','11:15:00',0,7,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:16','vishal','2025-10-11 12:38:33',0),(730,2526,0,0,56,'2025-10-08','11:15:00',0,7,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:16','vishal','2025-10-11 12:38:33',0),(731,2526,0,0,56,'2025-10-09','11:15:00',0,7,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:16','vishal','2025-10-11 12:38:33',0),(732,2526,0,0,56,'2025-10-10','11:15:00',0,7,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:16','vishal','2025-10-11 12:38:33',0),(733,2526,0,0,56,'2025-10-07','11:15:00',0,7,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:16','vishal','2025-10-11 12:38:33',0),(734,2526,0,0,56,'2025-10-08','11:15:00',0,7,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:16','vishal','2025-10-11 12:38:33',0),(735,2526,0,0,56,'2025-10-09','11:15:00',0,7,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:16','vishal','2025-10-11 12:38:33',0),(736,2526,0,0,56,'2025-10-10','11:15:00',0,7,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:16','vishal','2025-10-11 12:38:33',0),(737,2526,0,0,56,'2025-10-07','11:15:00',0,7,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:16','vishal','2025-10-11 12:38:33',0),(738,2526,0,0,56,'2025-10-08','11:15:00',0,7,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:16','vishal','2025-10-11 12:38:33',0),(739,2526,0,0,56,'2025-10-09','11:15:00',0,7,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:16','vishal','2025-10-11 12:38:33',0),(740,2526,0,0,56,'2025-10-10','11:15:00',0,7,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:16','vishal','2025-10-11 12:38:33',0),(741,2526,0,0,56,'2025-10-07','11:15:00',0,7,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:16','vishal','2025-10-11 12:38:33',0),(742,2526,0,0,56,'2025-10-08','11:15:00',0,7,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:16','vishal','2025-10-11 12:38:33',0),(743,2526,0,0,56,'2025-10-09','11:15:00',0,7,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:17','vishal','2025-10-11 12:38:33',0),(744,2526,0,0,56,'2025-10-10','11:15:00',0,7,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:17','vishal','2025-10-11 12:38:33',0),(745,2526,0,0,56,'2025-10-07','11:15:00',0,7,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:17','vishal','2025-10-11 12:38:33',0),(746,2526,0,0,56,'2025-10-08','11:15:00',0,7,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:17','vishal','2025-10-11 12:38:33',0),(747,2526,0,0,56,'2025-10-09','11:15:00',0,7,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:17','vishal','2025-10-11 12:38:33',0),(748,2526,0,0,56,'2025-10-10','11:15:00',0,7,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:17','vishal','2025-10-11 12:38:33',0),(749,2526,0,0,56,'2025-10-07','11:15:00',0,7,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:17','vishal','2025-10-11 12:38:33',0),(750,2526,0,0,56,'2025-10-08','11:15:00',0,7,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:17','vishal','2025-10-11 12:38:33',0),(751,2526,0,0,56,'2025-10-09','11:15:00',0,7,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:17','vishal','2025-10-11 12:38:33',0),(752,2526,0,0,56,'2025-10-10','11:15:00',0,7,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:17','vishal','2025-10-11 12:38:33',0),(753,2526,0,0,56,'2025-10-07','11:15:00',0,7,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:17','vishal','2025-10-11 12:38:33',0),(754,2526,0,0,56,'2025-10-08','11:15:00',0,7,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:17','vishal','2025-10-11 12:38:33',0),(755,2526,0,0,56,'2025-10-09','11:15:00',0,7,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:17','vishal','2025-10-11 12:38:33',0),(756,2526,0,0,56,'2025-10-10','11:15:00',0,7,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:17','vishal','2025-10-11 12:38:33',0),(757,2526,0,0,56,'2025-10-07','11:15:00',0,7,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:17','vishal','2025-10-11 12:38:33',0),(758,2526,0,0,56,'2025-10-08','11:15:00',0,7,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:17','vishal','2025-10-11 12:38:33',0),(759,2526,0,0,56,'2025-10-09','11:15:00',0,7,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:17','vishal','2025-10-11 12:38:33',0),(760,2526,0,0,56,'2025-10-10','11:15:00',0,7,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 10:33:17','vishal','2025-10-11 12:38:33',0),(761,2526,0,0,418,'2025-10-11','00:00:00',374,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',443,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-11 08:57:27','priyanshi','2025-10-11 08:58:21',0),(762,2526,0,0,419,'2025-10-11','09:15:43',147,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',444,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 09:15:43','reception','2025-10-11 09:15:43',0),(763,2526,0,0,420,'2025-10-11','00:00:00',375,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 09:17:10','reception','2025-10-10 21:47:10',0),(764,2526,0,0,421,'2025-10-11','00:00:00',376,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',445,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-11 09:17:31','priyanshi','2025-10-11 09:17:40',0),(765,2526,0,0,420,'2025-10-11','09:18:36',375,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',446,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 09:18:36','reception','2025-10-11 09:18:36',0),(766,2526,0,0,420,'2025-10-11','09:18:36',375,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',446,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 09:18:36','reception','2025-10-11 09:18:36',0),(767,2526,0,0,422,'2025-10-11','09:00:00',305,29,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',5,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 09:25:22','vishal','2025-10-11 19:52:26',0),(768,2526,0,0,422,'2025-10-11','09:00:00',305,29,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',5,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 09:25:22','vishal','2025-10-11 19:52:26',0),(769,2526,0,0,422,'2025-10-11','09:00:00',305,29,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 21:55:22','vishal','2025-10-11 19:52:26',0),(770,2526,0,0,422,'2025-10-11','09:00:00',305,29,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 21:55:22','vishal','2025-10-11 19:52:26',0),(771,2526,0,0,422,'2025-10-11','09:00:00',305,29,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 21:55:22','vishal','2025-10-11 19:52:26',0),(772,2526,0,0,422,'2025-10-11','09:00:00',305,29,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 21:55:22','vishal','2025-10-11 19:52:26',0),(773,2526,0,0,422,'2025-10-11','09:00:00',305,29,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 21:55:22','vishal','2025-10-11 19:52:26',0),(774,2526,0,0,422,'2025-10-11','09:00:00',305,29,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 21:55:22','vishal','2025-10-11 19:52:26',0),(775,2526,0,0,422,'2025-10-11','09:00:00',305,29,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 21:55:22','vishal','2025-10-11 19:52:26',0),(776,2526,0,0,422,'2025-10-11','09:00:00',305,29,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 21:55:22','vishal','2025-10-11 19:52:26',0),(777,2526,0,0,423,'2025-10-11','00:00:00',377,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',447,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-11 09:29:53','priyanshi','2025-10-11 09:30:17',0),(778,2526,0,0,419,'2025-10-11','09:31:10',147,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',448,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-11 09:31:10','janvi','2025-10-11 09:31:10',0),(779,2526,0,0,424,'2025-10-11','00:00:00',378,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',449,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 09:35:48','reception','2025-10-11 09:36:28',0),(780,2526,0,0,425,'2025-10-11','00:00:00',379,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',450,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-11 09:36:43','janvi','2025-10-11 09:37:17',0),(781,2526,0,0,426,'2025-10-11','08:00:00',221,30,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',10,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 09:39:44','vishal','2025-10-12 13:10:03',0),(782,2526,0,0,426,'2025-10-11','08:00:00',221,30,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',10,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 09:39:44','vishal','2025-10-12 13:10:03',0),(783,2526,0,0,426,'2025-10-11','08:00:00',221,30,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:09:44','vishal','2025-10-12 13:10:03',0),(784,2526,0,0,426,'2025-10-11','08:00:00',221,30,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:09:44','vishal','2025-10-12 13:10:03',0),(785,2526,0,0,426,'2025-10-11','08:00:00',221,30,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:09:44','vishal','2025-10-12 13:10:03',0),(786,2526,0,0,426,'2025-10-11','08:00:00',221,30,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:09:44','vishal','2025-10-12 13:10:03',0),(787,2526,0,0,426,'2025-10-11','08:00:00',221,30,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:09:44','vishal','2025-10-12 13:10:03',0),(788,2526,0,0,426,'2025-10-11','08:00:00',221,30,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:09:44','vishal','2025-10-12 13:10:03',0),(789,2526,0,0,426,'2025-10-11','08:00:00',221,30,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:09:44','vishal','2025-10-12 13:10:03',0),(790,2526,0,0,426,'2025-10-11','08:00:00',221,30,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:09:44','vishal','2025-10-12 13:10:03',0),(791,2526,0,0,427,'2025-10-11','00:00:00',380,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 09:40:30','drashti','2025-10-10 22:10:31',0),(792,2526,0,0,428,'2025-10-11','09:15:00',211,31,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',7,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 09:45:46','vishal','2025-10-12 10:08:06',0),(793,2526,0,0,428,'2025-10-11','09:15:00',211,31,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',7,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 09:45:46','vishal','2025-10-12 10:08:06',0),(794,2526,0,0,428,'2025-10-11','09:15:00',211,31,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',2526,'H','I',7,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:15:46','vishal','2025-10-12 10:08:06',0),(795,2526,0,0,428,'2025-10-11','09:15:00',211,31,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:15:46','vishal','2025-10-12 10:08:06',0),(796,2526,0,0,428,'2025-10-11','09:15:00',211,31,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:15:46','vishal','2025-10-12 10:08:06',0),(797,2526,0,0,428,'2025-10-11','09:15:00',211,31,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:15:46','vishal','2025-10-12 10:08:06',0),(798,2526,0,0,428,'2025-10-11','09:15:00',211,31,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:15:46','vishal','2025-10-12 10:08:06',0),(799,2526,0,0,428,'2025-10-11','09:15:00',211,31,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:15:46','vishal','2025-10-12 10:08:06',0),(800,2526,0,0,428,'2025-10-11','09:15:00',211,31,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:15:46','vishal','2025-10-12 10:08:06',0),(801,2526,0,0,428,'2025-10-11','09:15:00',211,31,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:15:46','vishal','2025-10-12 10:08:06',0),(802,2526,0,0,429,'2025-10-11','00:00:00',381,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',451,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 09:47:26','reception','2025-10-11 09:48:06',0),(803,2526,0,0,430,'2025-10-11','09:00:00',0,32,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',119,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 10:01:01','riya','2025-10-14 10:11:52',0),(804,2526,0,0,430,'2025-10-11','09:00:00',0,32,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',119,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 10:01:01','riya','2025-10-14 10:11:52',0),(805,2526,0,0,430,'2025-10-11','09:00:00',0,32,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:31:01','riya','2025-10-14 10:11:52',0),(806,2526,0,0,430,'2025-10-11','09:00:00',0,32,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:31:01','riya','2025-10-14 10:11:52',0),(807,2526,0,0,430,'2025-10-11','09:00:00',0,32,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:31:01','riya','2025-10-14 10:11:52',0),(808,2526,0,0,430,'2025-10-11','09:00:00',0,32,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:31:01','riya','2025-10-14 10:11:52',0),(809,2526,0,0,430,'2025-10-11','09:00:00',0,32,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:31:01','riya','2025-10-14 10:11:52',0),(810,2526,0,0,430,'2025-10-11','09:00:00',0,32,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:31:01','riya','2025-10-14 10:43:19',0),(811,2526,0,0,430,'2025-10-11','09:00:00',0,32,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:31:01','riya','2025-10-14 10:43:19',0),(812,2526,0,0,430,'2025-10-11','09:00:00',0,32,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:31:01','riya','2025-10-14 10:11:52',0),(813,2526,0,0,431,'2025-10-11','00:00:00',382,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',452,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-11 10:09:15','janvi','2025-10-11 10:10:17',0),(814,2526,0,0,432,'2025-10-11','00:00:00',383,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',455,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-11 10:09:19','manshi','2025-10-11 10:12:51',0),(815,2526,0,0,421,'2025-10-11','10:10:33',376,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',453,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 10:10:33','reception','2025-10-11 10:10:33',0),(816,2526,0,0,421,'2025-10-11','10:10:33',376,0,'NEU1','NEU10017','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',453,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 10:10:33','reception','2025-10-11 10:10:33',0),(817,2526,0,0,421,'2025-10-11','10:12:24',376,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',454,1,400,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 10:12:24','reception','2025-10-11 10:12:24',0),(818,2526,0,0,433,'2025-10-11','00:00:00',384,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',456,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 10:13:19','reception','2025-10-11 10:18:52',0),(819,2526,0,0,434,'2025-10-11','09:30:00',270,33,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',9,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 10:17:57','vishal','2025-10-12 13:04:49',0),(820,2526,0,0,434,'2025-10-11','09:30:00',270,33,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',9,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 10:17:57','vishal','2025-10-12 13:04:49',0),(821,2526,0,0,434,'2025-10-11','09:30:00',270,33,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',9,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:47:57','vishal','2025-10-12 13:04:49',0),(822,2526,0,0,434,'2025-10-11','09:30:00',270,33,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:47:57','vishal','2025-10-12 13:04:49',0),(823,2526,0,0,434,'2025-10-11','09:30:00',270,33,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:47:57','vishal','2025-10-12 13:04:49',0),(824,2526,0,0,434,'2025-10-11','09:30:00',270,33,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',9,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:47:57','vishal','2025-10-12 13:04:49',0),(825,2526,0,0,434,'2025-10-11','09:30:00',270,33,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:47:57','vishal','2025-10-12 13:04:49',0),(826,2526,0,0,434,'2025-10-11','09:30:00',270,33,'ROOM','ROOM0001','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:47:57','vishal','2025-10-12 13:04:49',0),(827,2526,0,0,434,'2025-10-11','09:30:00',270,33,'ROOM','ROOM0002','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:47:57','vishal','2025-10-12 13:04:49',0),(828,2526,0,0,434,'2025-10-11','09:30:00',270,33,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',9,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-10 22:47:57','vishal','2025-10-12 13:04:49',0),(829,2526,0,0,425,'2025-10-11','10:21:47',379,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',457,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 10:21:47','reception','2025-10-11 10:21:47',0),(830,2526,0,0,425,'2025-10-11','10:21:47',379,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',457,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 10:21:47','reception','2025-10-11 10:21:47',0),(831,2526,0,0,425,'2025-10-11','10:21:47',379,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',457,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 10:21:47','reception','2025-10-11 10:21:47',0),(832,2526,0,0,435,'2025-10-11','00:00:00',385,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',458,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 10:24:00','drashti','2025-10-11 10:24:21',0),(833,2526,0,0,436,'2025-10-11','00:00:00',386,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',459,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-11 10:26:15','janvi','2025-10-11 10:27:17',0),(834,2526,0,0,437,'2025-10-11','00:00:00',387,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',460,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 10:28:25','reception','2025-10-11 10:29:10',0),(835,2526,0,0,438,'2025-10-11','00:00:00',388,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',461,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 10:31:05','reception','2025-10-11 10:31:34',0),(836,2526,0,0,439,'2025-10-11','00:00:00',389,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',462,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 10:32:47','drashti','2025-10-11 10:33:18',0),(837,2526,0,0,440,'2025-10-11','00:00:00',390,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',463,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 10:36:43','reception','2025-10-11 10:36:54',0),(838,2526,0,0,437,'2025-10-11','10:39:24',387,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',464,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 10:39:24','reception','2025-10-11 10:39:24',0),(839,2526,0,0,441,'2025-10-11','00:00:00',391,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',465,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 10:43:54','reception','2025-10-11 10:44:05',0),(840,2526,0,0,442,'2025-10-11','00:00:00',392,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',469,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 10:43:57','janvi','2025-10-11 11:10:49',0),(841,2526,0,0,443,'2025-10-11','00:00:00',393,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',466,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 10:46:33','reception','2025-10-11 10:47:03',0),(842,2526,0,0,444,'2025-10-11','00:00:00',394,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',467,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 11:00:12','reception','2025-10-11 11:01:22',0),(843,2526,0,0,445,'2025-10-11','00:00:00',395,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',468,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 11:01:40','drashti','2025-10-11 11:02:08',0),(844,2526,0,0,446,'2025-10-11','00:00:00',396,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',480,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 11:04:21','drashti','2025-10-11 11:21:55',0),(845,2526,0,0,442,'2025-10-11','11:10:49',392,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',469,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-11 11:10:49','janvi','2025-10-11 11:10:49',0),(846,2526,0,0,447,'2025-10-11','11:13:11',131,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',470,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-11 11:13:11','janvi','2025-10-11 11:13:11',0),(847,2526,0,0,448,'2025-10-11','00:00:00',397,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',471,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 11:13:35','reception','2025-10-11 11:14:25',0),(848,2526,0,0,449,'2025-10-11','00:00:00',398,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',472,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-11 11:14:30','janvi','2025-10-11 11:15:05',0),(849,2526,0,0,450,'2025-10-11','00:00:00',399,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',473,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 11:15:49','drashti','2025-10-11 11:16:35',0),(850,2526,0,0,451,'2025-10-11','00:00:00',400,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-11 11:16:45','janvi','2025-10-10 23:46:45',0),(851,2526,0,0,452,'2025-10-11','00:00:00',401,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',474,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 11:16:53','reception','2025-10-11 12:39:22',0),(852,2526,0,0,453,'2025-10-11','00:00:00',402,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',475,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 11:17:47','reception','2025-10-11 11:18:17',0),(853,2526,0,0,454,'2025-10-11','00:00:00',403,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',476,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-11 11:18:42','janvi','2025-10-11 11:19:18',0),(854,2526,0,0,455,'2025-10-11','00:00:00',404,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',477,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 11:19:31','reception','2025-10-11 11:20:03',0),(855,2526,0,0,456,'2025-10-11','00:00:00',405,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',478,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 11:19:38','drashti','2025-10-11 11:20:14',0),(856,2526,0,0,457,'2025-10-11','11:21:25',242,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',479,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-11 11:21:25','janvi','2025-10-11 13:01:42',0),(857,2526,0,0,458,'2025-10-11','00:00:00',406,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',481,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-11 11:22:31','janvi','2025-10-11 11:22:55',0),(858,2526,0,0,459,'2025-10-11','00:00:00',407,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',482,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 11:23:23','drashti','2025-10-11 11:24:05',0),(859,2526,0,0,460,'2025-10-11','00:00:00',408,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',483,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-11 11:25:23','manshi','2025-10-11 11:26:19',0),(860,2526,0,0,461,'2025-10-11','00:00:00',409,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',484,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-11 11:25:32','janvi','2025-10-11 11:26:29',0),(861,2526,0,0,462,'2025-10-11','11:28:27',21,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',485,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 11:28:27','reception','2025-10-11 11:28:27',0),(862,2526,0,0,463,'2025-10-11','00:00:00',410,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',486,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 11:30:35','drashti','2025-10-11 11:31:14',0),(863,2526,0,0,464,'2025-10-11','00:00:00',411,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 11:35:06','drashti','2025-10-11 00:05:06',0),(864,2526,0,0,465,'2025-10-11','00:00:00',412,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',489,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-11 11:35:43','janvi','2025-10-11 11:39:17',0),(865,2526,0,0,466,'2025-10-11','00:00:00',413,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',488,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-11 11:37:26','janvi','2025-10-11 11:39:03',0),(866,2526,0,0,454,'2025-10-11','11:37:46',403,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,12,'',0,0,'','','','','',2526,'H','O',487,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'drashti','2025-10-11 11:37:46','drashti','2025-10-11 11:37:46',0),(867,2526,0,0,467,'2025-10-11','00:00:00',414,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',490,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-11 11:39:57','manshi','2025-10-11 11:40:28',0),(868,2526,0,0,444,'2025-10-11','11:40:29',394,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',491,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 11:40:29','reception','2025-10-11 11:40:29',0),(869,2526,0,0,468,'2025-10-11','00:00:00',415,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',492,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 11:40:47','drashti','2025-10-11 11:41:32',0),(870,2526,0,0,469,'2025-10-11','00:00:00',416,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',493,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 11:44:46','reception','2025-10-11 11:45:19',0),(871,2526,0,0,470,'2025-10-11','11:40:00',131,34,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',40,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 11:45:07','vishal','2025-10-12 18:48:55',0),(872,2526,0,0,470,'2025-10-11','11:40:00',131,34,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',40,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 11:45:07','vishal','2025-10-12 18:48:55',0),(873,2526,0,0,471,'2025-10-11','00:00:00',417,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',494,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 11:47:12','reception','2025-10-11 11:47:33',0),(874,2526,0,0,472,'2025-10-11','00:00:00',418,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',495,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 11:47:54','drashti','2025-10-11 11:48:36',0),(875,2526,0,0,473,'2025-10-11','00:00:00',419,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 11:52:13','drashti','2025-10-11 00:22:13',0),(876,2526,0,0,473,'2025-10-11','11:52:59',419,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',496,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 11:52:59','drashti','2025-10-11 11:52:59',0),(877,2526,0,0,474,'2025-10-11','00:00:00',420,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',497,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 11:56:45','drashti','2025-10-11 11:57:19',0),(878,2526,0,0,467,'2025-10-11','12:01:59',414,0,'XRY','XRY0189','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',498,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-11 12:01:59','manshi','2025-10-11 12:01:59',0),(879,2526,0,0,477,'2025-10-11','12:00:00',21,35,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',23,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:02:49','vishal','2025-10-12 18:38:40',0),(880,2526,0,0,477,'2025-10-11','12:00:00',21,35,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',23,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:02:49','vishal','2025-10-12 18:38:40',0),(881,2526,0,0,478,'2025-10-11','00:00:00',421,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',499,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 12:05:06','reception','2025-10-11 12:05:55',0),(882,2526,0,0,453,'2025-10-11','12:07:22',402,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',500,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 12:07:22','reception','2025-10-11 12:07:22',0),(883,2526,0,0,453,'2025-10-11','12:07:22',402,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',500,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 12:07:22','reception','2025-10-11 12:07:22',0),(884,2526,0,0,453,'2025-10-11','12:07:22',402,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',500,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 12:07:22','reception','2025-10-11 12:07:22',0),(885,2526,0,0,479,'2025-10-11','00:00:00',422,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-11 12:11:02','manshi','2025-10-11 00:41:03',0),(886,2526,0,0,476,'2025-10-11','12:11:27',373,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',501,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 12:11:27','drashti','2025-10-11 12:11:27',0),(887,2526,0,0,479,'2025-10-11','12:12:59',422,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,7,0,0,'',0,0,'','','','','',2526,'H','O',502,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-11 12:12:59','manshi','2025-10-11 12:12:59',0),(888,2526,0,0,480,'2025-10-11','00:00:00',423,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',504,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 12:13:13','drashti','2025-10-11 12:15:17',0),(889,2526,0,0,455,'2025-10-11','12:13:57',404,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',503,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 12:13:57','reception','2025-10-11 12:13:57',0),(890,2526,0,0,455,'2025-10-11','12:13:57',404,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',503,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 12:13:57','reception','2025-10-11 12:13:57',0),(891,2526,0,0,455,'2025-10-11','12:13:57',404,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',503,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 12:13:57','reception','2025-10-11 12:13:57',0),(892,2526,0,0,481,'2025-10-11','00:00:00',424,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',505,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 12:19:59','reception','2025-10-11 12:21:03',0),(893,2526,0,0,193,'2025-10-09','12:07:00',150,15,'REG','REG0001','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',6,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:20:52','vishal','2025-10-11 18:14:49',0),(894,2526,0,0,193,'2025-10-09','12:07:00',150,15,'REG','REG0002','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',6,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:20:52','vishal','2025-10-11 18:14:49',0),(895,2526,0,0,193,'2025-10-09','12:07:00',150,15,'ROOM','ROOM0002','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','','','','',2526,'H','I',6,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:20:52','vishal','2025-10-11 18:14:49',0),(896,2526,0,0,193,'2025-10-09','12:07:00',150,15,'CARE','CARE0006','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',6,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:20:52','vishal','2025-10-11 18:14:49',0),(897,2526,0,0,193,'2025-10-09','12:07:00',150,15,'CARE','CARE0002','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',6,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:20:52','vishal','2025-10-11 18:14:49',0),(898,2526,0,0,193,'2025-10-09','12:10:00',150,15,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',6,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:20:52','vishal','2025-10-11 18:14:49',0),(899,2526,0,0,193,'2025-10-09','12:10:00',150,15,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',6,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:20:52','vishal','2025-10-11 18:14:49',0),(900,2526,0,0,193,'2025-10-10','12:13:00',150,15,'ROOM','ROOM0002','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','','','','',2526,'H','I',6,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:20:52','vishal','2025-10-11 18:14:49',0),(901,2526,0,0,193,'2025-10-10','12:13:00',150,15,'CARE','CARE0006','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',6,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:20:52','vishal','2025-10-11 18:14:49',0),(902,2526,0,0,193,'2025-10-10','12:13:00',150,15,'CARE','CARE0002','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',6,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:20:52','vishal','2025-10-11 18:14:49',0),(903,2526,0,0,193,'2025-10-10','12:13:00',150,15,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',6,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:20:52','vishal','2025-10-11 18:14:49',0),(904,2526,0,0,193,'2025-10-10','12:14:00',150,15,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',6,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:20:52','vishal','2025-10-11 18:14:49',0),(905,2526,0,0,193,'2025-10-11','12:15:00',150,15,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',6,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:20:52','vishal','2025-10-11 18:14:49',0),(906,2526,0,0,193,'2025-10-09','12:15:00',150,15,'OPWD','OPWD0019','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',6,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:20:52','vishal','2025-10-11 18:14:49',0),(907,2526,0,0,193,'2025-10-09','12:16:00',150,15,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',6,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:20:52','vishal','2025-10-11 18:14:49',0),(908,2526,0,0,193,'2025-10-10','12:18:00',150,15,'USG','USG0091','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',6,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:20:52','vishal','2025-10-11 18:14:49',0),(909,2526,0,0,482,'2025-10-11','00:00:00',425,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',506,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-11 12:21:24','janvi','2025-10-11 12:22:51',0),(910,2526,0,0,56,'2025-10-07','12:30:00',0,7,'ROOM','ROOM0003','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(911,2526,0,0,56,'2025-10-07','12:30:00',0,7,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(912,2526,0,0,56,'2025-10-07','12:30:00',0,7,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(913,2526,0,0,56,'2025-10-07','12:32:00',0,7,'ROOM','ROOM0006','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(914,2526,0,0,56,'2025-10-07','12:32:00',0,7,'ROOM','ROOM0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(915,2526,0,0,56,'2025-10-08','12:32:00',0,7,'ROOM','ROOM0003','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(916,2526,0,0,56,'2025-10-08','12:35:00',0,7,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(917,2526,0,0,56,'2025-10-08','12:35:00',0,7,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(918,2526,0,0,56,'2025-10-08','12:35:00',0,7,'ROOM','ROOM0005','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(919,2526,0,0,56,'2025-10-08','12:35:00',0,7,'ROOM','ROOM0006','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(920,2526,0,0,56,'2025-10-09','12:36:00',0,7,'ROOM','ROOM0003','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(921,2526,0,0,56,'2025-10-09','12:36:00',0,7,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(922,2526,0,0,56,'2025-10-09','12:36:00',0,7,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(923,2526,0,0,56,'2025-10-09','12:36:00',0,7,'ROOM','ROOM0005','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(924,2526,0,0,56,'2025-10-09','12:36:00',0,7,'ROOM','ROOM0006','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(925,2526,0,0,56,'2025-10-10','12:37:00',0,7,'ROOM','ROOM0003','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(926,2526,0,0,56,'2025-10-10','12:37:00',0,7,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(927,2526,0,0,56,'2025-10-10','12:37:00',0,7,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(928,2526,0,0,56,'2025-10-10','12:37:00',0,7,'ROOM','ROOM0005','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(929,2526,0,0,56,'2025-10-10','12:37:00',0,7,'ROOM','ROOM0006','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','vishal','2025-10-11 12:39:16',0),(930,2526,0,0,56,'2025-10-11','12:37:00',0,7,'ROOM','ROOM0005','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:38:33','','0000-00-00 00:00:00',0),(931,2526,0,0,483,'2025-10-11','00:00:00',426,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',508,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 12:42:29','drashti','2025-10-11 12:43:07',0),(932,2526,0,0,56,'2025-10-07','12:40:00',0,7,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:44:48','','0000-00-00 00:00:00',0),(933,2526,0,0,56,'2025-10-08','12:41:00',0,7,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:44:48','','0000-00-00 00:00:00',0),(934,2526,0,0,56,'2025-10-09','12:41:00',0,7,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:44:48','','0000-00-00 00:00:00',0),(935,2526,0,0,56,'2025-10-10','12:44:00',0,7,'ROOM','ROOM0008','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:44:48','','0000-00-00 00:00:00',0),(936,2526,0,0,56,'2025-10-11','12:44:00',0,7,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',1,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 12:44:48','','0000-00-00 00:00:00',0),(937,2526,0,0,484,'2025-10-11','00:00:00',427,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',509,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 12:50:38','drashti','2025-10-11 12:51:21',0),(938,2526,0,0,485,'2025-10-11','00:00:00',428,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',510,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-11 12:56:13','janvi','2025-10-11 12:57:46',0),(939,2526,0,0,476,'2025-10-11','13:03:58',373,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',512,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'drashti','2025-10-11 13:03:58','drashti','2025-10-11 13:03:58',0),(940,2526,0,0,476,'2025-10-11','13:03:58',373,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,13,'',0,0,'','','','','',2526,'H','O',512,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'drashti','2025-10-11 13:03:58','drashti','2025-10-11 13:03:58',0),(941,2526,0,0,486,'2025-10-11','00:00:00',429,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',513,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-11 13:10:55','manshi','2025-10-11 13:11:31',0),(942,2526,0,0,487,'2025-10-11','14:10:00',60,36,'REG','REG0001','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 14:11:10','vishal','2025-10-15 11:57:47',0),(943,2526,0,0,487,'2025-10-11','14:10:00',60,36,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 14:11:10','vishal','2025-10-11 18:19:14',0),(944,2526,0,0,487,'2025-10-11','14:10:00',60,36,'ROOM','ROOM0007','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 02:41:10','vishal','2025-10-11 18:19:14',0),(945,2526,0,0,488,'2025-10-11','13:30:00',407,37,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',11,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 14:19:58','vishal','2025-10-11 18:39:14',0),(946,2526,0,0,488,'2025-10-11','13:30:00',407,37,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',11,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 14:19:58','vishal','2025-10-11 18:39:14',0),(947,2526,0,0,488,'2025-10-11','13:30:00',407,37,'ROOM','ROOM0007','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,0,0,0,'',0,0,'','311','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 02:49:58','vishal','2025-10-11 18:39:14',0),(948,2526,0,0,489,'2025-10-11','17:00:00',0,38,'REG','REG0001','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 17:33:27','vishal','2025-10-12 12:49:02',0),(949,2526,0,0,489,'2025-10-11','17:00:00',0,38,'REG','REG0002','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 17:33:27','vishal','2025-10-12 12:49:02',0),(950,2526,0,0,489,'2025-10-11','17:00:00',0,38,'ROOM','ROOM0007','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','307','','','',0,'','',0,3,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 06:03:28','vishal','2025-10-11 18:00:42',0),(951,2526,0,0,490,'2025-10-11','00:00:00',430,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 17:42:29','drashti','2025-10-11 06:12:29',0),(952,2526,0,0,491,'2025-10-11','00:00:00',431,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',514,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 17:51:15','reception','2025-10-11 17:51:48',0),(953,2526,0,0,492,'2025-10-11','00:00:00',432,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',515,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-11 17:53:33','reception','2025-10-11 19:32:09',0),(954,2526,0,0,493,'2025-10-11','00:00:00',433,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',516,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-11 18:08:11','manshi','2025-10-11 18:25:20',0),(955,2526,0,0,494,'2025-10-11','18:15:02',118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',517,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-11 18:15:02','urvashi','2025-10-11 18:15:02',0),(956,2526,0,0,495,'2025-10-11','00:00:00',434,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',518,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-11 18:16:19','manshi','2025-10-11 18:16:36',0),(957,2526,0,0,487,'2025-10-11','14:10:00',60,36,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','409','','','',0,'','',0,3,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 06:46:26','vishal','2025-10-15 11:54:40',0),(958,2526,0,0,487,'2025-10-11','14:10:00',60,36,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',0,'','',0,4,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 06:46:26','vishal','2025-10-15 11:54:40',0),(959,2526,0,0,487,'2025-10-11','14:10:00',60,36,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','409','','','',0,'','',0,5,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 06:46:26','vishal','2025-10-12 18:11:29',0),(960,2526,0,0,487,'2025-10-11','14:10:00',60,36,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','409','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 06:46:26','vishal','2025-10-12 18:11:29',0),(961,2526,0,0,487,'2025-10-11','14:10:00',60,36,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 06:46:26','vishal','2025-10-15 11:54:40',0),(962,2526,0,0,497,'2025-10-11','00:00:00',435,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',519,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-11 18:21:19','manshi','2025-10-11 18:21:36',0),(963,2526,0,0,498,'2025-10-11','00:00:00',436,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',521,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 18:24:08','drashti','2025-10-11 18:25:27',0),(964,2526,0,0,489,'2025-10-11','17:00:00',0,38,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 06:55:40','vishal','2025-10-12 12:49:02',0),(965,2526,0,0,489,'2025-10-11','17:00:00',0,38,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 06:55:40','vishal','2025-10-12 12:49:02',0),(966,2526,0,0,489,'2025-10-11','17:00:00',0,38,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','213','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 06:55:40','vishal','2025-10-12 12:45:27',0),(967,2526,0,0,489,'2025-10-11','17:00:00',0,38,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','213','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 06:55:40','vishal','2025-10-12 12:45:27',0),(968,2526,0,0,489,'2025-10-11','17:00:00',0,38,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 06:55:40','vishal','2025-10-12 12:49:02',0),(969,2526,0,0,499,'2025-10-11','00:00:00',437,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 18:36:56','drashti','2025-10-11 07:06:56',0),(970,2526,0,0,488,'2025-10-11','13:30:00',407,37,'AECO','AECO0008','H','N',0.50,300,150,'A',0,0,0.00,0.00,150.00,150,4,0,0,'',0,0,'','311','','','',2526,'H','I',11,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:08:46','vishal','2025-10-11 21:34:55',0),(971,2526,0,0,488,'2025-10-11','13:30:00',407,37,'CARE','CARE0001','H','N',0.50,200,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','311','','','',2526,'H','I',11,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:08:46','vishal','2025-10-11 21:34:55',0),(972,2526,0,0,488,'2025-10-11','13:30:00',407,37,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','311','','','',0,'','',0,5,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:08:46','vishal','2025-10-11 21:31:09',0),(973,2526,0,0,488,'2025-10-11','13:30:00',407,37,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','311','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:08:46','vishal','2025-10-11 21:31:09',0),(974,2526,0,0,488,'2025-10-11','13:30:00',407,37,'ROOM','ROOM0009','H','N',0.50,2900,1450,'A',0,0,0.00,0.00,1450.00,1450,9999,0,0,'',0,0,'','311','','','',2526,'H','I',11,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:08:46','vishal','2025-10-11 21:34:55',0),(975,2526,0,0,500,'2025-10-11','00:00:00',438,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-11 18:39:51','urvashi','2025-10-11 07:09:51',0),(976,2526,0,0,501,'2025-10-11','18:41:57',140,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',522,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-11 18:41:57','urvashi','2025-10-11 18:41:57',0),(977,2526,0,0,150,'2025-10-08','19:20:00',16,12,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',4,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:12:46','vishal','2025-10-11 18:48:46',0),(978,2526,0,0,150,'2025-10-09','19:20:00',16,12,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',4,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:12:46','vishal','2025-10-11 18:48:46',0),(979,2526,0,0,150,'2025-10-10','19:20:00',16,12,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',4,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:12:46','vishal','2025-10-11 18:58:26',0),(980,2526,0,0,150,'2025-10-08','19:20:00',16,12,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:12:46','vishal','2025-10-11 18:58:26',0),(981,2526,0,0,150,'2025-10-09','19:20:00',16,12,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:12:46','vishal','2025-10-11 18:58:26',0),(982,2526,0,0,150,'2025-10-10','19:20:00',16,12,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:12:46','vishal','2025-10-11 18:58:26',0),(983,2526,0,0,150,'2025-10-08','19:20:00',16,12,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',4,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:12:46','vishal','2025-10-11 18:48:46',0),(984,2526,0,0,150,'2025-10-09','19:20:00',16,12,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',4,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:12:46','vishal','2025-10-11 19:03:50',0),(985,2526,0,0,150,'2025-10-10','19:20:00',16,12,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',4,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:12:46','vishal','2025-10-11 18:59:11',0),(986,2526,0,0,150,'2025-10-08','19:20:00',16,12,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:12:46','vishal','2025-10-11 18:57:01',0),(987,2526,0,0,150,'2025-10-09','19:20:00',16,12,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','404','','','',2526,'H','I',4,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:12:46','vishal','2025-10-11 19:03:50',0),(988,2526,0,0,150,'2025-10-10','19:20:00',16,12,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','404','','','',2526,'H','I',4,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:12:46','vishal','2025-10-11 18:59:11',0),(989,2526,0,0,150,'2025-10-08','19:20:00',16,12,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','404','','','',2526,'H','I',4,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:12:46','vishal','2025-10-11 18:48:46',0),(990,2526,0,0,150,'2025-10-09','19:20:00',16,12,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','404','','','',2526,'H','I',4,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:12:46','vishal','2025-10-11 19:03:50',0),(991,2526,0,0,150,'2025-10-10','19:20:00',16,12,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','404','','','',2526,'H','I',4,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:12:46','vishal','2025-10-11 18:58:26',0),(992,2526,0,0,502,'2025-10-11','00:00:00',439,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',527,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 18:45:46','reception','2025-10-11 19:48:42',0),(993,2526,0,0,496,'2025-10-11','18:47:38',54,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',523,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-11 18:47:38','reception','2025-10-11 18:47:38',0),(994,2526,0,0,503,'2025-10-11','18:48:23',303,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',524,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-11 18:48:23','urvashi','2025-10-11 18:48:23',0),(995,2526,0,0,150,'2025-10-08','18:52:00',16,12,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',4,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 18:57:01','vishal','2025-10-11 18:58:26',0),(996,2526,0,0,150,'2025-10-08','18:52:00',16,12,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',4,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 18:57:01','vishal','2025-10-11 18:58:26',0),(997,2526,0,0,150,'2025-10-09','18:53:00',16,12,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',4,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 18:57:01','vishal','2025-10-11 18:58:26',0),(998,2526,0,0,150,'2025-10-08','18:57:00',16,12,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',4,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 18:58:26','vishal','2025-10-11 18:59:11',0),(999,2526,0,0,150,'2025-10-09','18:57:00',16,12,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',4,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 18:58:26','vishal','2025-10-11 18:59:11',0),(1000,2526,0,0,150,'2025-10-10','18:57:00',16,12,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',4,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 18:58:26','','0000-00-00 00:00:00',0),(1001,2526,0,0,150,'2025-10-11','18:58:00',16,12,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',2526,'H','I',4,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 18:59:11','','0000-00-00 00:00:00',0),(1002,2526,0,0,150,'2025-10-08','18:59:00',16,12,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',4,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:03:14','vishal','2025-10-11 19:03:50',0),(1003,2526,0,0,150,'2025-10-09','18:59:00',16,12,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',4,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:03:14','vishal','2025-10-11 19:03:50',0),(1004,2526,0,0,150,'2025-10-08','18:59:00',16,12,'WPRC','WPRC0077','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',4,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:03:14','vishal','2025-10-11 19:03:50',0),(1005,2526,0,0,150,'2025-10-10','19:01:00',16,12,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',4,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:03:14','','0000-00-00 00:00:00',0),(1006,2526,0,0,150,'2025-10-10','19:01:00',16,12,'XRY','XRY0009','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',4,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:03:14','','0000-00-00 00:00:00',0),(1007,2526,0,0,150,'2025-10-11','19:02:00',16,12,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',4,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:03:14','','0000-00-00 00:00:00',0),(1008,2526,0,0,504,'2025-10-11','00:00:00',440,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 19:14:50','drashti','2025-10-11 07:44:50',0),(1009,2526,0,0,505,'2025-10-11','19:15:00',0,39,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',24,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:21:56','vishal','2025-10-12 17:50:50',0),(1010,2526,0,0,505,'2025-10-11','19:15:00',0,39,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',24,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:21:56','vishal','2025-10-12 17:50:50',0),(1011,2526,0,0,505,'2025-10-11','19:15:00',0,39,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',24,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:51:56','vishal','2025-10-12 17:50:50',0),(1012,2526,0,0,505,'2025-10-11','19:15:00',0,39,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',24,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:51:56','vishal','2025-10-12 17:50:50',0),(1013,2526,0,0,505,'2025-10-11','19:15:00',0,39,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',24,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:51:56','vishal','2025-10-12 17:50:50',0),(1014,2526,0,0,505,'2025-10-11','19:15:00',0,39,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:51:56','vishal','2025-10-12 17:50:50',0),(1015,2526,0,0,505,'2025-10-11','19:15:00',0,39,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,36,0,0,'',0,0,'','404','','','',2526,'H','I',24,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:51:56','vishal','2025-10-12 17:50:50',0),(1016,2526,0,0,490,'2025-10-11','19:28:37',430,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',525,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-11 19:28:37','drashti','2025-10-11 19:28:37',0),(1017,2526,0,0,413,'2025-10-10','20:30:00',259,24,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:58:50','vishal','2025-10-11 19:37:55',0),(1018,2526,0,0,413,'2025-10-10','20:30:00',259,24,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:58:50','vishal','2025-10-11 19:37:55',0),(1019,2526,0,0,413,'2025-10-10','20:30:00',259,24,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:58:50','vishal','2025-10-11 19:37:55',0),(1020,2526,0,0,413,'2025-10-10','20:30:00',259,24,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 07:58:50','vishal','2025-10-11 19:37:55',0),(1021,2526,0,0,413,'2025-10-10','19:29:00',259,24,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:37:55','','0000-00-00 00:00:00',0),(1022,2526,0,0,413,'2025-10-10','19:29:00',259,24,'CARE','CARE0004','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:37:55','','0000-00-00 00:00:00',0),(1023,2526,0,0,413,'2025-10-10','19:29:00',259,24,'CARE','CARE0003','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:37:55','','0000-00-00 00:00:00',0),(1024,2526,0,0,413,'2025-10-10','19:29:00',259,24,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:37:55','vishal','2025-10-13 13:11:03',0),(1025,2526,0,0,413,'2025-10-11','19:29:00',259,24,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:37:55','','0000-00-00 00:00:00',0),(1026,2526,0,0,413,'2025-10-10','19:30:00',259,24,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:37:55','','0000-00-00 00:00:00',0),(1027,2526,0,0,413,'2025-10-10','19:31:00',259,24,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:37:55','','0000-00-00 00:00:00',0),(1028,2526,0,0,413,'2025-10-11','19:31:00',259,24,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:37:55','','0000-00-00 00:00:00',0),(1029,2526,0,0,413,'2025-10-11','19:32:00',259,24,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:37:55','','0000-00-00 00:00:00',0),(1030,2526,0,0,413,'2025-10-11','19:32:00',259,24,'ROOM','ROOM0004','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:37:55','vishal','2025-10-13 13:11:03',0),(1031,2526,0,0,413,'2025-10-11','19:32:00',259,24,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:37:55','','0000-00-00 00:00:00',0),(1032,2526,0,0,413,'2025-10-11','19:32:00',259,24,'CARE','CARE0006','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:37:55','','0000-00-00 00:00:00',0),(1033,2526,0,0,413,'2025-10-11','19:32:00',259,24,'CARE','CARE0002','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:37:55','','0000-00-00 00:00:00',0),(1034,2526,0,0,413,'2025-10-11','19:32:00',259,24,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:37:55','','0000-00-00 00:00:00',0),(1035,2526,0,0,413,'2025-10-11','19:32:00',259,24,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:37:55','','0000-00-00 00:00:00',0),(1036,2526,0,0,422,'2025-10-11','09:00:00',305,29,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:15:13','vishal','2025-10-11 19:52:26',0),(1037,2526,0,0,422,'2025-10-11','09:00:00',305,29,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:15:13','vishal','2025-10-11 19:52:26',0),(1038,2526,0,0,422,'2025-10-11','09:00:00',305,29,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:15:13','vishal','2025-10-11 19:52:26',0),(1039,2526,0,0,422,'2025-10-11','09:00:00',305,29,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:15:13','vishal','2025-10-11 19:52:26',0),(1040,2526,0,0,422,'2025-10-11','19:46:00',305,29,'CARE','CARE0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',5,3,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:52:26','','0000-00-00 00:00:00',0),(1041,2526,0,0,422,'2025-10-11','19:46:00',305,29,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',5,4,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:52:26','','0000-00-00 00:00:00',0),(1042,2526,0,0,422,'2025-10-11','19:46:00',305,29,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',5,5,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:52:26','','0000-00-00 00:00:00',0),(1043,2526,0,0,422,'2025-10-11','19:46:00',305,29,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',5,6,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:52:26','','0000-00-00 00:00:00',0),(1044,2526,0,0,422,'2025-10-11','19:49:00',305,29,'SURG','SURG0014','H','N',1.00,7300,7300,'P',0,0,0.00,0.00,7300.00,7300,3,0,0,'',0,0,'','','','','',2526,'H','I',5,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:52:26','','0000-00-00 00:00:00',0),(1045,2526,0,0,422,'2025-10-11','19:50:00',305,29,'SURG','SURG0015','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,3,0,0,'',0,0,'','','','','',2526,'H','I',5,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 19:52:26','','0000-00-00 00:00:00',0),(1046,2526,0,0,224,'2025-10-09','14:30:00',116,17,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','310','','','',0,'','',0,1,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:28:51','vishal','2025-10-12 18:59:54',0),(1047,2526,0,0,224,'2025-10-10','14:30:00',116,17,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:28:51','vishal','2025-10-12 18:57:33',0),(1048,2526,0,0,224,'2025-10-11','14:30:00',116,17,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:28:51','vishal','2025-10-12 19:07:54',0),(1049,2526,0,0,224,'2025-10-09','14:30:00',116,17,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','310','','','',0,'','',0,5,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:28:51','vishal','2025-10-12 18:59:54',0),(1050,2526,0,0,224,'2025-10-10','14:30:00',116,17,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:28:51','vishal','2025-10-12 18:57:33',0),(1051,2526,0,0,224,'2025-10-11','14:30:00',116,17,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:28:51','vishal','2025-10-12 19:06:19',0),(1052,2526,0,0,224,'2025-10-09','14:30:00',116,17,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','310','','','',0,'','',0,4,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:28:51','vishal','2025-10-12 18:59:54',0),(1053,2526,0,0,224,'2025-10-10','14:30:00',116,17,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:28:51','vishal','2025-10-12 18:57:33',0),(1054,2526,0,0,224,'2025-10-11','14:30:00',116,17,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:28:51','vishal','2025-10-12 19:06:19',0),(1055,2526,0,0,224,'2025-10-09','14:30:00',116,17,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','310','','','',0,'','',0,3,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:28:51','vishal','2025-10-12 19:02:07',0),(1056,2526,0,0,224,'2025-10-10','14:30:00',116,17,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','207','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:28:51','vishal','2025-10-12 18:57:33',0),(1057,2526,0,0,224,'2025-10-11','14:30:00',116,17,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:28:51','vishal','2025-10-12 19:06:19',0),(1058,2526,0,0,224,'2025-10-09','14:30:00',116,17,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','310','','','',0,'','',0,2,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:28:51','vishal','2025-10-12 19:02:07',0),(1059,2526,0,0,224,'2025-10-10','14:30:00',116,17,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','207','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:28:51','vishal','2025-10-12 18:57:33',0),(1060,2526,0,0,224,'2025-10-11','14:30:00',116,17,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:28:51','vishal','2025-10-12 19:07:54',0),(1061,2526,0,0,66,'2025-10-08','12:00:00',0,11,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',14,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:50:16','vishal','2025-10-11 20:27:42',0),(1062,2526,0,0,66,'2025-10-09','12:00:00',0,11,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',14,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:50:16','vishal','2025-10-11 20:29:59',0),(1063,2526,0,0,66,'2025-10-10','12:00:00',0,11,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',14,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:50:16','vishal','2025-10-11 20:28:17',0),(1064,2526,0,0,66,'2025-10-08','12:00:00',0,11,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',14,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:50:16','vishal','2025-10-11 20:27:42',0),(1065,2526,0,0,66,'2025-10-09','12:00:00',0,11,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',14,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:50:16','vishal','2025-10-11 20:27:42',0),(1066,2526,0,0,66,'2025-10-10','12:00:00',0,11,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',14,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:50:16','vishal','2025-10-11 20:28:17',0),(1067,2526,0,0,66,'2025-10-08','12:00:00',0,11,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',14,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:50:16','vishal','2025-10-11 20:27:42',0),(1068,2526,0,0,66,'2025-10-09','12:00:00',0,11,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',14,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:50:16','vishal','2025-10-11 20:27:42',0),(1069,2526,0,0,66,'2025-10-10','12:00:00',0,11,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',14,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:50:16','vishal','2025-10-11 20:28:17',0),(1070,2526,0,0,66,'2025-10-08','12:00:00',0,11,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:50:16','vishal','2025-10-11 20:28:17',0),(1071,2526,0,0,66,'2025-10-09','12:00:00',0,11,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:50:16','vishal','2025-10-11 20:28:17',0),(1072,2526,0,0,66,'2025-10-10','12:00:00',0,11,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','401','','','',2526,'H','I',14,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:50:16','vishal','2025-10-11 20:28:17',0),(1073,2526,0,0,66,'2025-10-08','12:00:00',0,11,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','401','','','',2526,'H','I',14,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:50:16','vishal','2025-10-11 20:27:42',0),(1074,2526,0,0,66,'2025-10-09','12:00:00',0,11,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','401','','','',2526,'H','I',14,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:50:16','vishal','2025-10-11 20:27:42',0),(1075,2526,0,0,66,'2025-10-10','12:00:00',0,11,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','401','','','',2526,'H','I',14,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 08:50:16','vishal','2025-10-11 20:28:17',0),(1076,2526,0,0,66,'2025-10-11','20:19:00',0,11,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',2526,'H','I',14,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 20:27:42','','0000-00-00 00:00:00',0),(1077,2526,0,0,66,'2025-10-11','20:19:00',0,11,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',14,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 20:27:42','','0000-00-00 00:00:00',0),(1078,2526,0,0,66,'2025-10-08','20:20:00',0,11,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',14,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 20:27:42','vishal','2025-10-11 20:28:17',0),(1079,2526,0,0,66,'2025-10-08','20:20:00',0,11,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',14,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 20:27:42','vishal','2025-10-11 20:28:17',0),(1080,2526,0,0,66,'2025-10-08','20:20:00',0,11,'USG','USG0092','H','N',1.00,1200,1200,'A',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',14,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 20:27:42','vishal','2025-10-11 20:28:17',0),(1081,2526,0,0,66,'2025-10-08','20:23:00',0,11,'WPRC','WPRC0080','H','N',2.00,500,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',14,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 20:27:42','vishal','2025-10-11 20:28:17',0),(1082,2526,0,0,66,'2025-10-09','20:25:00',0,11,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',14,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 20:27:42','vishal','2025-10-11 20:29:59',0),(1083,2526,0,0,66,'2025-10-08','20:26:00',0,11,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',14,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 20:28:48','vishal','2025-10-11 20:29:59',0),(1084,2526,0,0,66,'2025-10-08','20:26:00',0,11,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',14,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 20:28:48','vishal','2025-10-11 20:29:59',0),(1085,2526,0,0,193,'2025-10-09','11:15:00',150,15,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 09:27:56','vishal','2025-10-11 21:02:22',0),(1086,2526,0,0,193,'2025-10-10','11:15:00',150,15,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 09:27:56','vishal','2025-10-11 21:02:22',0),(1087,2526,0,0,193,'2025-10-09','11:15:00',150,15,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 09:27:56','vishal','2025-10-11 21:02:22',0),(1088,2526,0,0,193,'2025-10-10','11:15:00',150,15,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 09:27:56','vishal','2025-10-11 21:02:22',0),(1089,2526,0,0,193,'2025-10-09','11:15:00',150,15,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 09:27:56','vishal','2025-10-11 21:07:44',0),(1090,2526,0,0,193,'2025-10-10','11:15:00',150,15,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 09:27:56','vishal','2025-10-11 21:07:44',0),(1091,2526,0,0,488,'2025-10-11','21:29:00',407,37,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,36,0,0,'',0,0,'','','','','',2526,'H','I',11,6,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 21:31:09','vishal','2025-10-11 21:59:24',0),(1092,2526,0,0,488,'2025-10-11','21:32:00',407,37,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',11,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 21:34:55','','0000-00-00 00:00:00',0),(1093,2526,0,0,488,'2025-10-11','21:33:00',407,37,'WPRC','WPRC0080','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',11,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 21:34:55','','0000-00-00 00:00:00',0),(1094,2526,0,0,506,'2025-10-11','22:00:00',0,40,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',20,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 22:22:07','reception','2025-10-12 14:21:01',0),(1095,2526,0,0,506,'2025-10-11','22:00:00',0,40,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',20,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 22:22:07','reception','2025-10-12 14:21:01',0),(1096,2526,0,0,506,'2025-10-11','22:00:00',0,40,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','214','','','',2526,'H','I',20,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 10:52:07','reception','2025-10-12 14:21:01',0),(1097,2526,0,0,506,'2025-10-11','22:00:00',0,40,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','214','','','',2526,'H','I',20,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 10:52:07','reception','2025-10-12 14:21:01',0),(1098,2526,0,0,506,'2025-10-11','22:00:00',0,40,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','214','','','',2526,'H','I',20,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 10:52:07','reception','2025-10-12 14:23:08',0),(1099,2526,0,0,506,'2025-10-12','22:00:00',0,40,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','214','','','',2526,'H','I',20,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 10:52:07','reception','2025-10-12 14:21:01',0),(1100,2526,0,0,506,'2025-10-12','22:00:00',0,40,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','214','','','',2526,'H','I',20,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 10:52:07','reception','2025-10-12 14:23:08',0),(1101,2526,0,0,507,'2025-10-12','09:19:28',147,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',528,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-12 09:19:28','janvi','2025-10-12 09:19:28',0),(1102,2526,0,0,508,'2025-10-12','00:00:00',441,0,'PKG','CASE','H','N',1.00,1200,1200,'A',0,0,0.00,0.00,1200.00,1200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-12 09:21:13','janvi','2025-10-11 21:51:13',0),(1103,2526,0,0,508,'2025-10-12','09:21:41',441,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,7,0,0,'',0,0,'','','','','',2526,'H','O',529,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-12 09:21:41','janvi','2025-10-12 09:21:41',0),(1104,2526,0,0,428,'2025-10-11','09:15:00',211,31,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',2526,'H','I',7,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 22:29:49','vishal','2025-10-12 10:08:06',0),(1105,2526,0,0,428,'2025-10-11','09:15:00',211,31,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','308','','','',2526,'H','I',7,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 22:29:49','vishal','2025-10-12 10:08:06',0),(1106,2526,0,0,428,'2025-10-11','09:15:00',211,31,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','308','','','',2526,'H','I',7,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 22:29:49','vishal','2025-10-12 10:08:06',0),(1107,2526,0,0,428,'2025-10-11','09:15:00',211,31,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',2526,'H','I',7,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 22:29:50','vishal','2025-10-12 10:08:06',0),(1108,2526,0,0,428,'2025-10-12','10:02:00',211,31,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',7,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(1109,2526,0,0,428,'2025-10-11','10:05:00',211,31,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',7,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(1110,2526,0,0,428,'2025-10-11','10:05:00',211,31,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',7,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(1111,2526,0,0,428,'2025-10-12','10:06:00',211,31,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',7,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(1112,2526,0,0,428,'2025-10-11','10:07:00',211,31,'SURG','SURG0014','H','N',1.00,6000,6000,'P',0,0,0.00,0.00,6000.00,6000,3,0,0,'',0,0,'','','','','',2526,'H','I',7,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(1113,2526,0,0,428,'2025-10-11','10:07:00',211,31,'SURG','SURG0015','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,3,0,0,'',0,0,'','','','','',2526,'H','I',7,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 10:08:06','','0000-00-00 00:00:00',0),(1114,2526,0,0,417,'2025-10-10','14:30:00',0,28,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',8,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 23:17:00','vishal','2025-10-12 11:25:01',0),(1115,2526,0,0,417,'2025-10-10','14:30:00',0,28,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 23:17:00','vishal','2025-10-12 11:00:08',0),(1116,2526,0,0,417,'2025-10-10','14:30:00',0,28,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',8,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 23:17:00','vishal','2025-10-12 11:25:01',0),(1117,2526,0,0,417,'2025-10-10','14:30:00',0,28,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',8,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 23:17:00','vishal','2025-10-12 11:25:01',0),(1118,2526,0,0,417,'2025-10-10','14:30:00',0,28,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 23:17:00','vishal','2025-10-12 11:00:08',0),(1119,2526,0,0,417,'2025-10-11','14:30:00',0,28,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 23:17:00','vishal','2025-10-12 11:00:08',0),(1120,2526,0,0,417,'2025-10-10','14:30:00',0,28,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 23:17:00','vishal','2025-10-12 11:00:08',0),(1121,2526,0,0,417,'2025-10-10','14:30:00',0,28,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',8,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 23:17:00','vishal','2025-10-12 11:25:01',0),(1122,2526,0,0,417,'2025-10-10','14:30:00',0,28,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 23:17:00','vishal','2025-10-12 11:00:08',0),(1123,2526,0,0,417,'2025-10-11','10:51:00',0,28,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:00:08','','0000-00-00 00:00:00',0),(1124,2526,0,0,417,'2025-10-11','10:53:00',0,28,'CARE','CARE0004','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:00:08','','0000-00-00 00:00:00',0),(1125,2526,0,0,417,'2025-10-11','10:58:00',0,28,'CARE','CARE0003','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:00:08','','0000-00-00 00:00:00',0),(1126,2526,0,0,417,'2025-10-10','10:58:00',0,28,'AECO','ROOM0007','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:00:08','vishal','2025-10-12 12:01:09',0),(1127,2526,0,0,417,'2025-10-11','10:59:00',0,28,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:00:08','','0000-00-00 00:00:00',0),(1128,2526,0,0,417,'2025-10-11','10:59:00',0,28,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:00:08','','0000-00-00 00:00:00',0),(1129,2526,0,0,417,'2025-10-12','10:59:00',0,28,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:00:08','','0000-00-00 00:00:00',0),(1130,2526,0,0,417,'2025-10-11','10:59:00',0,28,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,6,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:00:08','','0000-00-00 00:00:00',0),(1131,2526,0,0,509,'2025-10-12','11:00:00',0,41,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',27,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:06:05','vishal','2025-10-12 18:03:01',0),(1132,2526,0,0,509,'2025-10-12','11:00:00',0,41,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',27,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:06:05','vishal','2025-10-12 18:03:01',0),(1133,2526,0,0,509,'2025-10-12','11:00:00',0,41,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',27,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 23:36:05','vishal','2025-10-12 18:03:01',0),(1134,2526,0,0,509,'2025-10-12','11:00:00',0,41,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',27,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 23:36:05','vishal','2025-10-12 18:03:01',0),(1135,2526,0,0,509,'2025-10-12','11:00:00',0,41,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',27,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 23:36:05','vishal','2025-10-12 18:03:01',0),(1136,2526,0,0,509,'2025-10-12','11:00:00',0,41,'DRC','DRC0018','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,5,0,0,'',0,0,'','411','','','',2526,'H','I',27,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 23:36:05','riya','2025-10-14 12:10:02',0),(1137,2526,0,0,509,'2025-10-12','11:00:00',0,41,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','411','','','',2526,'H','I',27,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-11 23:36:05','vishal','2025-10-12 18:03:01',0),(1138,2526,0,0,417,'2025-10-10','11:16:00',0,28,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:23:22','vishal','2025-10-12 11:25:01',0),(1139,2526,0,0,417,'2025-10-11','11:18:00',0,28,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:23:22','','0000-00-00 00:00:00',0),(1140,2526,0,0,417,'2025-10-12','11:18:00',0,28,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:23:22','','0000-00-00 00:00:00',0),(1141,2526,0,0,417,'2025-10-10','11:18:00',0,28,'WPRC','WPRC0083','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:23:22','vishal','2025-10-12 11:25:01',0),(1142,2526,0,0,417,'2025-10-11','11:19:00',0,28,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:23:22','','0000-00-00 00:00:00',0),(1143,2526,0,0,417,'2025-10-12','11:19:00',0,28,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:23:22','','0000-00-00 00:00:00',0),(1144,2526,0,0,417,'2025-10-10','11:19:00',0,28,'ROOM','ROOM0008','H','N',2.00,100,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:23:22','vishal','2025-10-12 11:25:01',0),(1145,2526,0,0,417,'2025-10-10','11:20:00',0,28,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:23:22','vishal','2025-10-12 11:25:01',0),(1146,2526,0,0,417,'2025-10-10','11:20:00',0,28,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:23:22','vishal','2025-10-12 11:25:01',0),(1147,2526,0,0,417,'2025-10-10','11:20:00',0,28,'WPRC','WPRC0084','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:23:22','vishal','2025-10-12 11:25:01',0),(1148,2526,0,0,417,'2025-10-11','11:23:00',0,28,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:23:22','','0000-00-00 00:00:00',0),(1149,2526,0,0,417,'2025-10-12','11:23:00',0,28,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',8,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 11:23:22','','0000-00-00 00:00:00',0),(1150,2526,0,0,489,'2025-10-11','12:33:00',0,38,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,36,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 12:45:27','vishal','2025-10-12 12:49:02',0),(1151,2526,0,0,489,'2025-10-11','12:34:00',0,38,'DRC','DRC0020','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,7,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 12:45:27','vishal','2025-10-12 12:49:02',0),(1152,2526,0,0,489,'2025-10-11','12:42:00',0,38,'WPRC','WPRC0085','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 12:45:27','vishal','2025-10-12 12:49:02',0),(1153,2526,0,0,489,'2025-10-12','12:43:00',0,38,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 12:45:27','','0000-00-00 00:00:00',0),(1154,2526,0,0,489,'2025-10-11','12:43:00',0,38,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 12:45:27','vishal','2025-10-12 12:49:02',0),(1155,2526,0,0,489,'2025-10-12','12:43:00',0,38,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 12:45:27','reception','2025-10-13 10:40:10',0),(1156,2526,0,0,489,'2025-10-11','12:43:00',0,38,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 12:45:27','','0000-00-00 00:00:00',0),(1157,2526,0,0,489,'2025-10-12','12:43:00',0,38,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 12:45:27','','0000-00-00 00:00:00',0),(1158,2526,0,0,489,'2025-10-11','12:44:00',0,38,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 12:45:27','','0000-00-00 00:00:00',0),(1159,2526,0,0,489,'2025-10-11','12:44:00',0,38,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 12:45:27','','0000-00-00 00:00:00',0),(1160,2526,0,0,489,'2025-10-11','12:44:00',0,38,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 12:45:27','','0000-00-00 00:00:00',0),(1161,2526,0,0,489,'2025-10-11','12:44:00',0,38,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 12:45:27','','0000-00-00 00:00:00',0),(1162,2526,0,0,489,'2025-10-11','12:44:00',0,38,'WPRC','WPRC0088','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,39,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 12:45:27','vishal','2025-10-19 18:44:32',0),(1163,2526,0,0,489,'2025-10-12','12:44:00',0,38,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 12:45:27','','0000-00-00 00:00:00',0),(1164,2526,0,0,510,'2025-10-12','12:45:00',40,42,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',12,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 12:54:14','vishal','2025-10-12 18:40:39',0),(1165,2526,0,0,510,'2025-10-12','12:45:00',40,42,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',12,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 12:54:14','vishal','2025-10-12 18:40:39',0),(1166,2526,0,0,510,'2025-10-12','12:45:00',40,42,'ROOM','ROOM0009','H','N',0.50,2900,1450,'A',0,0,0.00,0.00,1450.00,1450,9999,0,0,'',0,0,'','308','','','',2526,'H','I',12,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 01:24:14','vishal','2025-10-12 21:38:13',0),(1167,2526,0,0,510,'2025-10-12','12:45:00',40,42,'AECO','AECO0008','H','N',0.50,300,150,'A',0,0,0.00,0.00,150.00,150,9999,0,0,'',0,0,'','308','','','',2526,'H','I',12,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 01:24:14','vishal','2025-10-12 21:38:13',0),(1168,2526,0,0,510,'2025-10-12','12:45:00',40,42,'CARE','CARE0001','H','N',0.50,200,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','308','','','',2526,'H','I',12,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 01:24:14','vishal','2025-10-12 21:38:13',0),(1169,2526,0,0,510,'2025-10-12','12:45:00',40,42,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 01:24:14','vishal','2025-10-12 18:40:39',0),(1170,2526,0,0,510,'2025-10-12','12:45:00',40,42,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',2526,'H','I',12,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 01:24:14','vishal','2025-10-12 18:40:39',0),(1171,2526,0,0,434,'2025-10-11','09:30:00',270,33,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 01:31:25','vishal','2025-10-12 13:04:49',0),(1172,2526,0,0,434,'2025-10-11','09:30:00',270,33,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 01:31:25','vishal','2025-10-12 13:04:49',0),(1173,2526,0,0,434,'2025-10-11','09:30:00',270,33,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','408','','','',2526,'H','I',9,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 01:31:25','vishal','2025-10-12 13:04:49',0),(1174,2526,0,0,434,'2025-10-11','09:30:00',270,33,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 01:31:25','vishal','2025-10-12 13:04:49',0),(1175,2526,0,0,434,'2025-10-12','13:03:00',270,33,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',9,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:04:49','','0000-00-00 00:00:00',0),(1176,2526,0,0,434,'2025-10-11','13:03:00',270,33,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',9,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:04:49','','0000-00-00 00:00:00',0),(1177,2526,0,0,434,'2025-10-12','13:04:00',270,33,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',9,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:04:49','','0000-00-00 00:00:00',0),(1178,2526,0,0,426,'2025-10-11','08:00:00',221,30,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 01:35:36','vishal','2025-10-12 13:10:03',0),(1179,2526,0,0,426,'2025-10-11','08:00:00',221,30,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 01:35:36','vishal','2025-10-12 13:10:03',0),(1180,2526,0,0,426,'2025-10-11','08:00:00',221,30,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 01:35:36','vishal','2025-10-12 13:10:03',0),(1181,2526,0,0,426,'2025-10-11','08:00:00',221,30,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 01:35:36','vishal','2025-10-12 13:10:03',0),(1182,2526,0,0,426,'2025-10-11','13:06:00',221,30,'ROOM','ROOM0002','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','','','','',2526,'H','I',10,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:10:03','','0000-00-00 00:00:00',0),(1183,2526,0,0,426,'2025-10-11','13:07:00',221,30,'CARE','CARE0006','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',10,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:10:03','','0000-00-00 00:00:00',0),(1184,2526,0,0,426,'2025-10-11','13:07:00',221,30,'CARE','CARE0002','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',10,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:10:03','','0000-00-00 00:00:00',0),(1185,2526,0,0,426,'2025-10-11','13:07:00',221,30,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',10,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:10:03','','0000-00-00 00:00:00',0),(1186,2526,0,0,426,'2025-10-11','13:08:00',221,30,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',10,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:10:03','','0000-00-00 00:00:00',0),(1187,2526,0,0,426,'2025-10-12','13:08:00',221,30,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',10,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:10:03','','0000-00-00 00:00:00',0),(1188,2526,0,0,426,'2025-10-11','13:08:00',221,30,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',10,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:10:03','','0000-00-00 00:00:00',0),(1189,2526,0,0,426,'2025-10-12','13:09:00',221,30,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',10,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:10:03','','0000-00-00 00:00:00',0),(1190,2526,0,0,426,'2025-10-12','13:09:00',221,30,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',10,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:10:03','','0000-00-00 00:00:00',0),(1191,2526,0,0,426,'2025-10-12','13:09:00',221,30,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',10,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:10:03','','0000-00-00 00:00:00',0),(1192,2526,0,0,426,'2025-10-11','13:10:00',221,30,'SURG','SURG0014','H','N',1.00,20000,20000,'P',0,0,0.00,0.00,20000.00,20000,3,0,0,'',0,0,'','','','','',2526,'H','I',10,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:11:13','','0000-00-00 00:00:00',0),(1193,2526,0,0,426,'2025-10-11','13:10:00',221,30,'SURG','SURG0015','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,5000.00,5000,3,0,0,'',0,0,'','','','','',2526,'H','I',10,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:11:13','','0000-00-00 00:00:00',0),(1194,2526,0,0,434,'2025-10-11','13:17:00',270,33,'SURG','SURG0014','H','N',1.00,17500,17500,'P',0,0,0.00,0.00,17500.00,17500,3,0,0,'',0,0,'','','','','',2526,'H','I',9,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:17:53','','0000-00-00 00:00:00',0),(1195,2526,0,0,434,'2025-10-11','13:17:00',270,33,'SURG','SURG0015','H','N',1.00,5700,5700,'P',0,0,0.00,0.00,5700.00,5700,3,0,0,'',0,0,'','','','','',2526,'H','I',9,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:17:53','','0000-00-00 00:00:00',0),(1196,2526,0,0,426,'2025-10-12','13:14:00',221,30,'ROOM','ROOM0002','H','N',0.50,2900,1450,'P',0,0,0.00,0.00,1450.00,1450,9999,0,0,'',0,0,'','','','','',2526,'H','I',10,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:27:28','','0000-00-00 00:00:00',0),(1197,2526,0,0,426,'2025-10-12','13:14:00',221,30,'CARE','CARE0006','H','N',0.50,300,150,'P',0,0,0.00,0.00,150.00,150,9999,0,0,'',0,0,'','','','','',2526,'H','I',10,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:27:28','','0000-00-00 00:00:00',0),(1198,2526,0,0,426,'2025-10-12','13:14:00',221,30,'CARE','CARE0002','H','N',0.50,200,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',10,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 13:27:28','','0000-00-00 00:00:00',0),(1199,2526,0,0,506,'2025-10-12','14:17:00',0,40,'DRC','DRC0020','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,37,0,0,'',0,0,'','','','','',2526,'H','I',20,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 14:21:01','','0000-00-00 00:00:00',0),(1200,2526,0,0,506,'2025-10-12','14:20:00',0,40,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,38,0,0,'',0,0,'','','','','',2526,'H','I',20,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 14:21:01','','0000-00-00 00:00:00',0),(1201,2526,0,0,506,'2025-10-11','14:20:00',0,40,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',0,'','',0,1,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 14:21:01','reception','2025-10-12 14:23:08',0),(1202,2526,0,0,506,'2025-10-12','14:20:00',0,40,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',20,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 14:21:01','reception','2025-10-12 14:23:08',0),(1203,2526,0,0,506,'2025-10-11','22:00:00',0,40,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','214','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-12 02:51:14','reception','2025-10-12 14:22:34',0),(1204,2526,0,0,506,'2025-10-11','22:00:00',0,40,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','214','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-12 02:51:14','reception','2025-10-12 14:22:34',0),(1205,2526,0,0,506,'2025-10-11','14:22:00',0,40,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',0,'','',0,12,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 14:22:34','reception','2025-10-12 14:23:08',0),(1206,2526,0,0,506,'2025-10-11','14:23:00',0,40,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',20,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:24:17','','0000-00-00 00:00:00',0),(1207,2526,0,0,414,'2025-10-11','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 02:55:14','vishal','2025-10-12 14:28:59',0),(1208,2526,0,0,414,'2025-10-12','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',0,'','',0,12,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 02:55:14','vishal','2025-10-12 14:50:56',0),(1209,2526,0,0,414,'2025-10-10','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',0,'','',0,2,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 02:55:14','vishal','2025-10-12 14:50:56',0),(1210,2526,0,0,414,'2025-10-11','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',0,'','',0,8,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 02:55:14','vishal','2025-10-12 14:50:56',0),(1211,2526,0,0,414,'2025-10-12','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',0,'','',0,13,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 02:55:14','vishal','2025-10-12 14:50:56',0),(1212,2526,0,0,414,'2025-10-11','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',0,'','',0,9,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 02:55:14','vishal','2025-10-12 14:50:56',0),(1213,2526,0,0,414,'2025-10-12','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',0,'','',0,14,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 02:55:14','vishal','2025-10-12 14:50:56',0),(1214,2526,0,0,414,'2025-10-10','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',0,'','',0,5,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 02:55:14','vishal','2025-10-12 14:50:56',0),(1215,2526,0,0,414,'2025-10-11','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',0,'','',0,10,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 02:55:14','vishal','2025-10-12 14:50:56',0),(1216,2526,0,0,414,'2025-10-12','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',0,'','',0,15,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 02:55:14','vishal','2025-10-12 14:50:56',0),(1217,2526,0,0,414,'2025-10-10','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',0,'','',0,4,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 02:55:14','vishal','2025-10-12 14:50:56',0),(1218,2526,0,0,414,'2025-10-11','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',0,'','',0,11,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 02:55:14','vishal','2025-10-12 14:50:56',0),(1219,2526,0,0,414,'2025-10-12','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',0,'','',0,16,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 02:55:14','vishal','2025-10-12 14:50:56',0),(1220,2526,0,0,414,'2025-10-10','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',0,'','',0,3,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 02:55:14','vishal','2025-10-12 14:50:56',0),(1221,2526,0,0,414,'2025-10-10','14:29:00',0,25,'ROOM','ROOM0001','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1222,2526,0,0,414,'2025-10-10','14:29:00',0,25,'CARE','CARE0004','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1223,2526,0,0,414,'2025-10-10','14:29:00',0,25,'CARE','CARE0003','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1224,2526,0,0,414,'2025-10-10','14:30:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1225,2526,0,0,414,'2025-10-10','14:30:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1226,2526,0,0,414,'2025-10-11','14:30:00',0,25,'ROOM','ROOM0001','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1227,2526,0,0,414,'2025-10-11','14:30:00',0,25,'CARE','CARE0004','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1228,2526,0,0,414,'2025-10-11','14:30:00',0,25,'CARE','CARE0003','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1229,2526,0,0,414,'2025-10-11','14:30:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1230,2526,0,0,414,'2025-10-11','14:31:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,36,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1231,2526,0,0,414,'2025-10-12','14:31:00',0,25,'ROOM','ROOM0001','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1232,2526,0,0,414,'2025-10-12','14:32:00',0,25,'CARE','CARE0004','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1233,2526,0,0,414,'2025-10-12','14:32:00',0,25,'CARE','CARE0003','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1234,2526,0,0,414,'2025-10-12','14:32:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1235,2526,0,0,414,'2025-10-12','14:32:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1236,2526,0,0,414,'2025-10-10','14:32:00',0,25,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1237,2526,0,0,414,'2025-10-11','14:32:00',0,25,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1238,2526,0,0,414,'2025-10-12','14:33:00',0,25,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1239,2526,0,0,414,'2025-10-10','14:33:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1240,2526,0,0,414,'2025-10-11','14:33:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1241,2526,0,0,414,'2025-10-12','14:33:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1242,2526,0,0,414,'2025-10-10','14:33:00',0,25,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1243,2526,0,0,414,'2025-10-11','14:33:00',0,25,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1244,2526,0,0,414,'2025-10-12','14:33:00',0,25,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,26,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','reception','2025-10-13 12:08:10',0),(1245,2526,0,0,414,'2025-10-10','14:34:00',0,25,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1246,2526,0,0,414,'2025-10-11','14:34:00',0,25,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1247,2526,0,0,414,'2025-10-12','14:34:00',0,25,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1248,2526,0,0,414,'2025-10-10','14:38:00',0,25,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1249,2526,0,0,414,'2025-10-10','14:38:00',0,25,'WPRC','WPRC0088','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1250,2526,0,0,414,'2025-10-10','14:38:00',0,25,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1251,2526,0,0,414,'2025-10-10','14:38:00',0,25,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 14:50:56','','0000-00-00 00:00:00',0),(1252,2526,0,0,414,'2025-10-10','14:55:00',0,25,'WPRC','WPRC0090','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 14:58:01','','0000-00-00 00:00:00',0),(1253,2526,0,0,414,'2025-10-10','14:57:00',0,25,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 14:58:01','','0000-00-00 00:00:00',0),(1254,2526,0,0,414,'2025-10-11','14:57:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 14:58:01','','0000-00-00 00:00:00',0),(1255,2526,0,0,414,'2025-10-12','14:57:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 14:58:01','','0000-00-00 00:00:00',0),(1256,2526,0,0,284,'2025-10-09','23:00:00',0,21,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','311','','','',0,'','',0,1,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 03:30:15','vishal','2025-10-17 14:25:33',0),(1257,2526,0,0,284,'2025-10-10','23:00:00',0,21,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 03:30:15','reception','2025-10-12 15:21:44',0),(1258,2526,0,0,284,'2025-10-11','23:00:00',0,21,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 03:30:15','reception','2025-10-12 15:21:44',0),(1259,2526,0,0,284,'2025-10-09','23:00:00',0,21,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','311','','','',0,'','',0,2,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 03:30:15','vishal','2025-10-17 14:25:33',0),(1260,2526,0,0,284,'2025-10-10','23:00:00',0,21,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 03:30:15','reception','2025-10-12 15:21:44',0),(1261,2526,0,0,284,'2025-10-11','23:00:00',0,21,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 03:30:15','reception','2025-10-12 15:21:44',0),(1262,2526,0,0,284,'2025-10-09','23:00:00',0,21,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','311','','','',0,'','',0,3,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 03:30:15','vishal','2025-10-17 14:25:33',0),(1263,2526,0,0,284,'2025-10-10','23:00:00',0,21,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 03:30:15','reception','2025-10-12 15:21:44',0),(1264,2526,0,0,284,'2025-10-11','23:00:00',0,21,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 03:30:15','reception','2025-10-12 15:21:44',0),(1265,2526,0,0,284,'2025-10-09','23:00:00',0,21,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','311','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 03:30:15','reception','2025-10-12 15:19:33',0),(1266,2526,0,0,284,'2025-10-10','23:00:00',0,21,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 03:30:15','reception','2025-10-12 15:19:33',0),(1267,2526,0,0,284,'2025-10-11','23:00:00',0,21,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 03:30:15','reception','2025-10-12 15:21:44',0),(1268,2526,0,0,284,'2025-10-09','23:00:00',0,21,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','311','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 03:30:15','reception','2025-10-12 15:19:33',0),(1269,2526,0,0,284,'2025-10-10','23:00:00',0,21,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 03:30:15','reception','2025-10-12 15:19:33',0),(1270,2526,0,0,284,'2025-10-11','23:00:00',0,21,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,36,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 03:30:15','reception','2025-10-12 15:21:44',0),(1271,2526,0,0,284,'2025-10-09','15:00:00',0,21,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','reception','2025-10-12 15:21:44',0),(1272,2526,0,0,284,'2025-10-09','15:00:00',0,21,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','reception','2025-10-12 15:21:44',0),(1273,2526,0,0,284,'2025-10-10','15:05:00',0,21,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','vishal','2025-10-17 14:25:33',0),(1274,2526,0,0,284,'2025-10-10','15:05:00',0,21,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','vishal','2025-10-17 14:25:33',0),(1275,2526,0,0,284,'2025-10-10','15:06:00',0,21,'DRC','DRC0020','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','vishal','2025-10-17 14:47:01',0),(1276,2526,0,0,284,'2025-10-10','15:06:00',0,21,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','vishal','2025-10-17 14:46:39',0),(1277,2526,0,0,284,'2025-10-11','15:06:00',0,21,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','','0000-00-00 00:00:00',0),(1278,2526,0,0,284,'2025-10-11','15:06:00',0,21,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','','0000-00-00 00:00:00',0),(1279,2526,0,0,284,'2025-10-12','15:06:00',0,21,'DRC','DRC0020','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','vishal','2025-10-17 14:46:39',0),(1280,2526,0,0,284,'2025-10-12','15:06:00',0,21,'DRC','DRC0020','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','vishal','2025-10-17 14:46:39',0),(1281,2526,0,0,284,'2025-10-11','15:08:00',0,21,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','','0000-00-00 00:00:00',0),(1282,2526,0,0,284,'2025-10-12','15:08:00',0,21,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','vishal','2025-10-17 14:46:39',0),(1283,2526,0,0,284,'2025-10-10','15:08:00',0,21,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','','0000-00-00 00:00:00',0),(1284,2526,0,0,284,'2025-10-11','15:08:00',0,21,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','','0000-00-00 00:00:00',0),(1285,2526,0,0,284,'2025-10-12','15:08:00',0,21,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','vishal','2025-10-17 14:47:01',0),(1286,2526,0,0,284,'2025-10-10','15:09:00',0,21,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','','0000-00-00 00:00:00',0),(1287,2526,0,0,284,'2025-10-09','15:09:00',0,21,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','reception','2025-10-12 15:21:44',0),(1288,2526,0,0,284,'2025-10-09','15:09:00',0,21,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','reception','2025-10-12 15:21:44',0),(1289,2526,0,0,284,'2025-10-10','15:10:00',0,21,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','','0000-00-00 00:00:00',0),(1290,2526,0,0,284,'2025-10-10','15:10:00',0,21,'WPRC','WPRC0090','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','','0000-00-00 00:00:00',0),(1291,2526,0,0,284,'2025-10-10','15:11:00',0,21,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','','0000-00-00 00:00:00',0),(1292,2526,0,0,284,'2025-10-10','15:11:00',0,21,'USG','USG0092','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','','0000-00-00 00:00:00',0),(1293,2526,0,0,284,'2025-10-10','15:12:00',0,21,'WPRC','WPRC0091','H','N',4.00,500,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','','0000-00-00 00:00:00',0),(1294,2526,0,0,284,'2025-10-10','15:14:00',0,21,'WPRC','WPRC0092','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,39,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','','0000-00-00 00:00:00',0),(1295,2526,0,0,284,'2025-10-11','15:16:00',0,21,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','','0000-00-00 00:00:00',0),(1296,2526,0,0,284,'2025-10-11','15:16:00',0,21,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','','0000-00-00 00:00:00',0),(1297,2526,0,0,284,'2025-10-11','15:17:00',0,21,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','','0000-00-00 00:00:00',0),(1298,2526,0,0,284,'2025-10-12','15:17:00',0,21,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','vishal','2025-10-17 14:47:01',0),(1299,2526,0,0,284,'2025-10-10','15:18:00',0,21,'SURG','SURG0014','H','N',1.00,70000,70000,'P',0,0,0.00,0.00,70000.00,70000,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','','0000-00-00 00:00:00',0),(1300,2526,0,0,284,'2025-10-10','15:18:00',0,21,'SURG','SURG0015','H','N',1.00,17500,17500,'P',0,0,0.00,0.00,17500.00,17500,4,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:19:33','','0000-00-00 00:00:00',0),(1301,2526,0,0,48,'2025-10-06','11:00:00',0,5,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','reception','2025-10-12 15:25:54',0),(1302,2526,0,0,48,'2025-10-07','11:00:00',0,5,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','reception','2025-10-12 15:25:54',0),(1303,2526,0,0,48,'2025-10-08','11:00:00',0,5,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','reception','2025-10-12 15:25:54',0),(1304,2526,0,0,48,'2025-10-09','11:00:00',0,5,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','riya','2025-10-13 19:38:24',0),(1305,2526,0,0,48,'2025-10-10','11:00:00',0,5,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','riya','2025-10-14 15:23:22',0),(1306,2526,0,0,48,'2025-10-11','11:00:00',0,5,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','riya','2025-10-14 15:23:22',0),(1307,2526,0,0,48,'2025-10-12','11:00:00',0,5,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','riya','2025-10-14 15:23:22',0),(1308,2526,0,0,48,'2025-10-06','11:00:00',0,5,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','reception','2025-10-12 15:25:54',0),(1309,2526,0,0,48,'2025-10-07','11:00:00',0,5,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','reception','2025-10-12 15:25:54',0),(1310,2526,0,0,48,'2025-10-08','11:00:00',0,5,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','reception','2025-10-12 15:25:54',0),(1311,2526,0,0,48,'2025-10-09','11:00:00',0,5,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','riya','2025-10-13 19:38:24',0),(1312,2526,0,0,48,'2025-10-10','11:00:00',0,5,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','riya','2025-10-14 15:23:22',0),(1313,2526,0,0,48,'2025-10-11','11:00:00',0,5,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','riya','2025-10-14 15:23:22',0),(1314,2526,0,0,48,'2025-10-12','11:00:00',0,5,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','riya','2025-10-14 15:23:22',0),(1315,2526,0,0,48,'2025-10-06','11:00:00',0,5,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','reception','2025-10-12 15:25:54',0),(1316,2526,0,0,48,'2025-10-07','11:00:00',0,5,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','reception','2025-10-12 15:25:54',0),(1317,2526,0,0,48,'2025-10-08','11:00:00',0,5,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','reception','2025-10-12 15:25:54',0),(1318,2526,0,0,48,'2025-10-09','11:00:00',0,5,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','riya','2025-10-13 19:38:24',0),(1319,2526,0,0,48,'2025-10-10','11:00:00',0,5,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','riya','2025-10-14 15:23:22',0),(1320,2526,0,0,48,'2025-10-11','11:00:00',0,5,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','riya','2025-10-14 15:23:22',0),(1321,2526,0,0,48,'2025-10-12','11:00:00',0,5,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','riya','2025-10-14 15:23:22',0),(1322,2526,0,0,48,'2025-10-06','11:00:00',0,5,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','reception','2025-10-12 15:25:54',0),(1323,2526,0,0,48,'2025-10-07','11:00:00',0,5,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','reception','2025-10-12 15:25:54',0),(1324,2526,0,0,48,'2025-10-08','11:00:00',0,5,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','reception','2025-10-12 15:25:54',0),(1325,2526,0,0,48,'2025-10-09','11:00:00',0,5,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',0,'','',0,17,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','reception','2025-10-12 15:29:26',0),(1326,2526,0,0,48,'2025-10-10','11:00:00',0,5,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','riya','2025-10-13 19:51:20',0),(1327,2526,0,0,48,'2025-10-11','11:00:00',0,5,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,36,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','riya','2025-10-13 19:51:20',0),(1328,2526,0,0,48,'2025-10-12','11:00:00',0,5,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','riya','2025-10-13 19:51:20',0),(1329,2526,0,0,48,'2025-10-06','11:00:00',0,5,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',0,'','',0,5,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','reception','2025-10-12 15:29:26',0),(1330,2526,0,0,48,'2025-10-07','11:00:00',0,5,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','reception','2025-10-12 15:25:54',0),(1331,2526,0,0,48,'2025-10-08','11:00:00',0,5,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','reception','2025-10-12 15:25:54',0),(1332,2526,0,0,48,'2025-10-09','11:00:00',0,5,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','riya','2025-10-13 19:38:24',0),(1333,2526,0,0,48,'2025-10-10','11:00:00',0,5,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','riya','2025-10-13 19:51:20',0),(1334,2526,0,0,48,'2025-10-11','11:00:00',0,5,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:25','riya','2025-10-13 19:51:20',0),(1335,2526,0,0,48,'2025-10-12','11:00:00',0,5,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 03:54:26','riya','2025-10-13 19:51:20',0),(1336,2526,0,0,48,'2025-10-06','15:25:00',0,5,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:25:54','reception','2025-10-12 15:29:26',0),(1337,2526,0,0,48,'2025-10-06','15:25:00',0,5,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:25:54','reception','2025-10-12 15:29:26',0),(1338,2526,0,0,48,'2025-10-09','15:28:00',0,5,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:29:26','reception','2025-10-12 15:43:10',0),(1339,2526,0,0,48,'2025-10-09','15:31:00',0,5,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','reception','2025-10-12 15:45:22',0),(1340,2526,0,0,48,'2025-10-10','15:31:00',0,5,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','','0000-00-00 00:00:00',0),(1341,2526,0,0,48,'2025-10-08','15:32:00',0,5,'ROOM','ROOM0004','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','reception','2025-10-12 15:45:22',0),(1342,2526,0,0,48,'2025-10-10','15:32:00',0,5,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','','0000-00-00 00:00:00',0),(1343,2526,0,0,48,'2025-10-11','15:32:00',0,5,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','','0000-00-00 00:00:00',0),(1344,2526,0,0,48,'2025-10-12','15:32:00',0,5,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','','0000-00-00 00:00:00',0),(1345,2526,0,0,48,'2025-10-10','15:32:00',0,5,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','','0000-00-00 00:00:00',0),(1346,2526,0,0,48,'2025-10-11','15:33:00',0,5,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','','0000-00-00 00:00:00',0),(1347,2526,0,0,48,'2025-10-12','15:33:00',0,5,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','','0000-00-00 00:00:00',0),(1348,2526,0,0,48,'2025-10-06','15:33:00',0,5,'ROOM','ROOM0008','H','N',2.00,100,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','reception','2025-10-12 15:45:22',0),(1349,2526,0,0,48,'2025-10-06','15:33:00',0,5,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','reception','2025-10-12 15:45:22',0),(1350,2526,0,0,48,'2025-10-06','15:33:00',0,5,'USG','USG0093','H','N',1.00,1200,1200,'A',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','reception','2025-10-12 15:45:22',0),(1351,2526,0,0,48,'2025-10-06','15:36:00',0,5,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','reception','2025-10-12 15:45:22',0),(1352,2526,0,0,48,'2025-10-07','15:36:00',0,5,'WPRC','WPRC0090','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','reception','2025-10-12 15:45:22',0),(1353,2526,0,0,48,'2025-10-08','15:38:00',0,5,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','reception','2025-10-12 15:45:22',0),(1354,2526,0,0,48,'2025-10-09','15:41:00',0,5,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','reception','2025-10-12 15:45:22',0),(1355,2526,0,0,48,'2025-10-09','15:41:00',0,5,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','reception','2025-10-12 15:45:22',0),(1356,2526,0,0,48,'2025-10-10','15:41:00',0,5,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','','0000-00-00 00:00:00',0),(1357,2526,0,0,48,'2025-10-10','15:42:00',0,5,'WPRC','WPRC0078','H','N',2.00,300,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','','0000-00-00 00:00:00',0),(1358,2526,0,0,48,'2025-10-11','15:42:00',0,5,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','','0000-00-00 00:00:00',0),(1359,2526,0,0,48,'2025-10-11','15:42:00',0,5,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','','0000-00-00 00:00:00',0),(1360,2526,0,0,48,'2025-10-12','15:42:00',0,5,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 15:43:10','','0000-00-00 00:00:00',0),(1361,2526,0,0,246,'2025-10-09','18:00:00',0,18,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 04:16:35','reception','2025-10-12 16:19:31',0),(1362,2526,0,0,246,'2025-10-10','18:00:00',0,18,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 04:16:35','reception','2025-10-12 16:20:56',0),(1363,2526,0,0,246,'2025-10-11','18:00:00',0,18,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 04:16:35','reception','2025-10-12 16:20:56',0),(1364,2526,0,0,246,'2025-10-09','18:00:00',0,18,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 04:16:35','reception','2025-10-12 16:19:31',0),(1365,2526,0,0,246,'2025-10-10','18:00:00',0,18,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 04:16:35','reception','2025-10-12 16:20:56',0),(1366,2526,0,0,246,'2025-10-11','18:00:00',0,18,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 04:16:35','reception','2025-10-12 16:20:56',0),(1367,2526,0,0,246,'2025-10-09','18:00:00',0,18,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 04:16:35','reception','2025-10-12 16:19:31',0),(1368,2526,0,0,246,'2025-10-10','18:00:00',0,18,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 04:16:35','reception','2025-10-12 16:20:56',0),(1369,2526,0,0,246,'2025-10-11','18:00:00',0,18,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 04:16:35','reception','2025-10-12 16:20:56',0),(1370,2526,0,0,246,'2025-10-09','18:00:00',0,18,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','209','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-12 04:16:35','reception','2025-10-12 16:19:31',0),(1371,2526,0,0,246,'2025-10-10','18:00:00',0,18,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 04:16:35','reception','2025-10-12 16:20:56',0),(1372,2526,0,0,246,'2025-10-11','18:00:00',0,18,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 04:16:35','reception','2025-10-12 16:20:56',0),(1373,2526,0,0,246,'2025-10-09','18:00:00',0,18,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 04:16:35','reception','2025-10-12 16:19:31',0),(1374,2526,0,0,246,'2025-10-10','18:00:00',0,18,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 04:16:35','reception','2025-10-12 16:20:56',0),(1375,2526,0,0,246,'2025-10-11','18:00:00',0,18,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 04:16:35','reception','2025-10-12 16:20:56',0),(1376,2526,0,0,246,'2025-10-09','15:47:00',0,18,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','reception','2025-10-12 16:20:56',0),(1377,2526,0,0,246,'2025-10-09','15:47:00',0,18,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','reception','2025-10-12 16:20:56',0),(1378,2526,0,0,246,'2025-10-09','16:06:00',0,18,'DRC','DRC0020','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','reception','2025-10-12 16:20:56',0),(1379,2526,0,0,246,'2025-10-10','16:07:00',0,18,'DRC','DRC0020','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','reception','2025-10-12 16:20:56',0),(1380,2526,0,0,246,'2025-10-11','16:07:00',0,18,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,38,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','','0000-00-00 00:00:00',0),(1381,2526,0,0,246,'2025-10-11','16:07:00',0,18,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','','0000-00-00 00:00:00',0),(1382,2526,0,0,246,'2025-10-12','16:07:00',0,18,'DRC','DRC0020','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','reception','2025-10-13 12:19:33',0),(1383,2526,0,0,246,'2025-10-11','16:08:00',0,18,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','','0000-00-00 00:00:00',0),(1384,2526,0,0,246,'2025-10-09','16:08:00',0,18,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','reception','2025-10-12 16:20:56',0),(1385,2526,0,0,246,'2025-10-10','16:08:00',0,18,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','reception','2025-10-12 16:20:56',0),(1386,2526,0,0,246,'2025-10-11','16:08:00',0,18,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','','0000-00-00 00:00:00',0),(1387,2526,0,0,246,'2025-10-11','16:08:00',0,18,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','','0000-00-00 00:00:00',0),(1388,2526,0,0,246,'2025-10-12','16:09:00',0,18,'ROOM','ROOM0004','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','reception','2025-10-13 12:19:33',0),(1389,2526,0,0,246,'2025-10-11','16:09:00',0,18,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','','0000-00-00 00:00:00',0),(1390,2526,0,0,246,'2025-10-09','16:09:00',0,18,'ROOM','ROOM0008','H','N',7.00,100,700,'A',0,0,0.00,0.00,700.00,700,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','reception','2025-10-12 16:20:56',0),(1391,2526,0,0,246,'2025-10-09','16:09:00',0,18,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','reception','2025-10-12 16:20:56',0),(1392,2526,0,0,246,'2025-10-09','16:09:00',0,18,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','reception','2025-10-12 16:20:56',0),(1393,2526,0,0,246,'2025-10-09','16:09:00',0,18,'WPRC','WPRC0093','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','reception','2025-10-12 16:20:56',0),(1394,2526,0,0,246,'2025-10-10','16:10:00',0,18,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','','0000-00-00 00:00:00',0),(1395,2526,0,0,246,'2025-10-10','16:10:00',0,18,'USG','USG0092','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','','0000-00-00 00:00:00',0),(1396,2526,0,0,246,'2025-10-10','16:11:00',0,18,'WPRC','WPRC0093','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','','0000-00-00 00:00:00',0),(1397,2526,0,0,246,'2025-10-10','16:12:00',0,18,'WPRC','WPRC0092','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,39,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','','0000-00-00 00:00:00',0),(1398,2526,0,0,246,'2025-10-11','16:12:00',0,18,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','','0000-00-00 00:00:00',0),(1399,2526,0,0,246,'2025-10-11','16:12:00',0,18,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','','0000-00-00 00:00:00',0),(1400,2526,0,0,246,'2025-10-11','16:14:00',0,18,'WPRC','WPRC0094','H','N',1.00,2800,2800,'P',0,0,0.00,0.00,2800.00,2800,40,0,0,'',0,0,'','','','','',0,'','',0,39,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','riya','2025-10-18 11:05:08',0),(1401,2526,0,0,246,'2025-10-11','16:18:00',0,18,'WPRC','WPRC0095','H','N',1.00,2800,2800,'P',0,0,0.00,0.00,2800.00,2800,40,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','','0000-00-00 00:00:00',0),(1402,2526,0,0,246,'2025-10-12','16:18:00',0,18,'ROOM','ROOM0008','H','N',6.00,100,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 16:19:31','reception','2025-10-13 12:19:33',0),(1403,2526,0,0,246,'2025-10-09','16:23:00',0,18,'SURG','SURG0014','H','N',1.00,15000,15000,'P',0,0,0.00,0.00,15000.00,15000,3,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 16:24:58','riya','2025-10-18 11:05:08',0),(1404,2526,0,0,246,'2025-10-09','16:23:00',0,18,'SURG','SURG0015','H','N',1.00,3750,3750,'P',0,0,0.00,0.00,3750.00,3750,3,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 16:24:58','riya','2025-10-18 11:05:08',0),(1405,2526,0,0,63,'2025-10-07','10:55:00',0,10,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-13 13:03:05',0),(1406,2526,0,0,63,'2025-10-08','10:55:00',0,10,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-13 13:03:05',0),(1407,2526,0,0,63,'2025-10-09','10:55:00',0,10,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-13 13:03:05',0),(1408,2526,0,0,63,'2025-10-10','10:55:00',0,10,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:16:53',0),(1409,2526,0,0,63,'2025-10-11','10:55:00',0,10,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:16:53',0),(1410,2526,0,0,63,'2025-10-12','10:55:00',0,10,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:16:53',0),(1411,2526,0,0,63,'2025-10-07','10:55:00',0,10,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','411','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-13 13:03:05',0),(1412,2526,0,0,63,'2025-10-08','10:55:00',0,10,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','411','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-13 13:03:05',0),(1413,2526,0,0,63,'2025-10-09','10:55:00',0,10,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','411','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-13 13:03:05',0),(1414,2526,0,0,63,'2025-10-10','10:55:00',0,10,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:16:53',0),(1415,2526,0,0,63,'2025-10-11','10:55:00',0,10,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:16:53',0),(1416,2526,0,0,63,'2025-10-12','10:55:00',0,10,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-13 13:15:34',0),(1417,2526,0,0,63,'2025-10-07','10:55:00',0,10,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:16:53',0),(1418,2526,0,0,63,'2025-10-08','10:55:00',0,10,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:16:53',0),(1419,2526,0,0,63,'2025-10-09','10:55:00',0,10,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:16:53',0),(1420,2526,0,0,63,'2025-10-10','10:55:00',0,10,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:16:53',0),(1421,2526,0,0,63,'2025-10-11','10:55:00',0,10,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:16:53',0),(1422,2526,0,0,63,'2025-10-12','10:55:00',0,10,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:59:31',0),(1423,2526,0,0,63,'2025-10-07','10:55:00',0,10,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','411','','','',0,'','',0,4,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:59:12',0),(1424,2526,0,0,63,'2025-10-08','10:55:00',0,10,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','411','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:59:12',0),(1425,2526,0,0,63,'2025-10-09','10:55:00',0,10,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','411','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:59:12',0),(1426,2526,0,0,63,'2025-10-10','10:55:00',0,10,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:16:53',0),(1427,2526,0,0,63,'2025-10-11','10:55:00',0,10,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:16:53',0),(1428,2526,0,0,63,'2025-10-12','10:55:00',0,10,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-13 13:15:34',0),(1429,2526,0,0,63,'2025-10-07','10:55:00',0,10,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','411','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:59:12',0),(1430,2526,0,0,63,'2025-10-08','10:55:00',0,10,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','411','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:59:12',0),(1431,2526,0,0,63,'2025-10-09','10:55:00',0,10,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','411','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:59:12',0),(1432,2526,0,0,63,'2025-10-10','10:55:00',0,10,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:16:53',0),(1433,2526,0,0,63,'2025-10-11','10:55:00',0,10,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:16:53',0),(1434,2526,0,0,63,'2025-10-12','10:55:00',0,10,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:16:53',0),(1435,2526,0,0,216,'2025-10-09','12:30:00',166,16,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:53:45',0),(1436,2526,0,0,216,'2025-10-10','12:30:00',166,16,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:53:45',0),(1437,2526,0,0,216,'2025-10-11','12:30:00',166,16,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-15 12:05:00',0),(1438,2526,0,0,216,'2025-10-12','12:30:00',166,16,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:53:45',0),(1439,2526,0,0,216,'2025-10-09','12:30:00',166,16,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:53:45',0),(1440,2526,0,0,216,'2025-10-10','12:30:00',166,16,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:53:45',0),(1441,2526,0,0,216,'2025-10-11','12:30:00',166,16,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:53:45',0),(1442,2526,0,0,216,'2025-10-12','12:30:00',166,16,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:53:45',0),(1443,2526,0,0,216,'2025-10-09','12:30:00',166,16,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:53:45',0),(1444,2526,0,0,216,'2025-10-10','12:30:00',166,16,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:53:45',0),(1445,2526,0,0,216,'2025-10-11','12:30:00',166,16,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:53:45',0),(1446,2526,0,0,216,'2025-10-12','12:30:00',166,16,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:53:45',0),(1447,2526,0,0,216,'2025-10-09','12:30:00',166,16,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:53:45',0),(1448,2526,0,0,216,'2025-10-10','12:30:00',166,16,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:53:45',0),(1449,2526,0,0,216,'2025-10-11','12:30:00',166,16,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-15 12:05:00',0),(1450,2526,0,0,216,'2025-10-12','12:30:00',166,16,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:53:45',0),(1451,2526,0,0,216,'2025-10-09','12:30:00',166,16,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:53:45',0),(1452,2526,0,0,216,'2025-10-10','12:30:00',166,16,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:53:45',0),(1453,2526,0,0,216,'2025-10-11','12:30:00',166,16,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,36,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 17:53:45',0),(1454,2526,0,0,216,'2025-10-12','12:30:00',166,16,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-15 12:04:03',0),(1455,2526,0,0,224,'2025-10-12','14:30:00',116,17,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 19:02:07',0),(1456,2526,0,0,224,'2025-10-12','14:30:00',116,17,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 19:02:07',0),(1457,2526,0,0,224,'2025-10-12','14:30:00',116,17,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 19:02:07',0),(1458,2526,0,0,224,'2025-10-12','14:30:00',116,17,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 18:59:54',0),(1459,2526,0,0,224,'2025-10-12','14:30:00',116,17,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:03','vishal','2025-10-12 18:59:54',0),(1460,2526,0,0,406,'2025-10-10','19:20:00',0,22,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:08:32',0),(1461,2526,0,0,406,'2025-10-11','19:20:00',0,22,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:09:49',0),(1462,2526,0,0,406,'2025-10-10','19:20:00',0,22,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:08:32',0),(1463,2526,0,0,406,'2025-10-11','19:20:00',0,22,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:09:49',0),(1464,2526,0,0,406,'2025-10-10','19:20:00',0,22,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:08:32',0),(1465,2526,0,0,406,'2025-10-11','19:20:00',0,22,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:09:49',0),(1466,2526,0,0,406,'2025-10-10','19:20:00',0,22,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','406','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:08:32',0),(1467,2526,0,0,406,'2025-10-11','19:20:00',0,22,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:09:49',0),(1468,2526,0,0,406,'2025-10-10','19:20:00',0,22,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:08:32',0),(1469,2526,0,0,406,'2025-10-11','19:20:00',0,22,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:09:49',0),(1470,2526,0,0,413,'2025-10-11','20:30:00',259,24,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','310','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:44:27',0),(1471,2526,0,0,413,'2025-10-11','20:30:00',259,24,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','310','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:44:27',0),(1472,2526,0,0,415,'2025-10-11','11:45:00',0,26,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',15,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:27:42',0),(1473,2526,0,0,415,'2025-10-12','11:45:00',0,26,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',15,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','reception','2025-10-12 18:31:21',0),(1474,2526,0,0,415,'2025-10-10','11:45:00',0,26,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',15,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:27:42',0),(1475,2526,0,0,415,'2025-10-11','11:45:00',0,26,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',15,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:27:42',0),(1476,2526,0,0,415,'2025-10-12','11:45:00',0,26,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',15,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','reception','2025-10-12 18:31:21',0),(1477,2526,0,0,415,'2025-10-11','11:45:00',0,26,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',15,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:27:42',0),(1478,2526,0,0,415,'2025-10-12','11:45:00',0,26,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',15,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','reception','2025-10-12 18:31:21',0),(1479,2526,0,0,415,'2025-10-10','11:45:00',0,26,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','305','','','',2526,'H','I',15,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:27:42',0),(1480,2526,0,0,415,'2025-10-11','11:45:00',0,26,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',2526,'H','I',15,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:27:42',0),(1481,2526,0,0,415,'2025-10-12','11:45:00',0,26,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',2526,'H','I',15,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','reception','2025-10-12 18:31:21',0),(1482,2526,0,0,415,'2025-10-10','11:45:00',0,26,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','305','','','',2526,'H','I',15,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:27:42',0),(1483,2526,0,0,415,'2025-10-11','11:45:00',0,26,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',2526,'H','I',15,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:27:42',0),(1484,2526,0,0,415,'2025-10-12','11:45:00',0,26,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',2526,'H','I',15,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','reception','2025-10-12 18:31:21',0),(1485,2526,0,0,415,'2025-10-10','11:45:00',0,26,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',15,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:27:42',0),(1486,2526,0,0,416,'2025-10-11','12:40:00',276,27,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 17:55:33',0),(1487,2526,0,0,416,'2025-10-12','12:40:00',276,27,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 17:55:33',0),(1488,2526,0,0,416,'2025-10-10','12:40:00',276,27,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 17:55:33',0),(1489,2526,0,0,416,'2025-10-11','12:40:00',276,27,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 17:55:33',0),(1490,2526,0,0,416,'2025-10-12','12:40:00',276,27,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 17:55:33',0),(1491,2526,0,0,416,'2025-10-11','12:40:00',276,27,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 17:55:33',0),(1492,2526,0,0,416,'2025-10-12','12:40:00',276,27,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 17:55:33',0),(1493,2526,0,0,416,'2025-10-10','12:40:00',276,27,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 17:55:33',0),(1494,2526,0,0,416,'2025-10-11','12:40:00',276,27,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 17:55:33',0),(1495,2526,0,0,416,'2025-10-12','12:40:00',276,27,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 17:55:33',0),(1496,2526,0,0,416,'2025-10-10','12:40:00',276,27,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',0,'','',0,5,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','riya','2025-10-14 19:12:46',0),(1497,2526,0,0,416,'2025-10-11','12:40:00',276,27,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,36,0,0,'',0,0,'','403','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 17:56:03',0),(1498,2526,0,0,416,'2025-10-12','12:40:00',276,27,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 17:55:33',0),(1499,2526,0,0,416,'2025-10-10','12:40:00',276,27,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 17:55:33',0),(1500,2526,0,0,430,'2025-10-12','09:00:00',0,32,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',119,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','riya','2025-10-14 10:11:52',0),(1501,2526,0,0,430,'2025-10-11','09:00:00',0,32,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',119,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','riya','2025-10-30 17:53:02',0),(1502,2526,0,0,430,'2025-10-12','09:00:00',0,32,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','riya','2025-10-14 10:11:52',0),(1503,2526,0,0,430,'2025-10-11','09:00:00',0,32,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',119,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','riya','2025-10-30 17:52:49',0),(1504,2526,0,0,430,'2025-10-11','09:00:00',0,32,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','401','','','',2526,'H','I',119,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','riya','2025-10-14 10:43:19',0),(1505,2526,0,0,430,'2025-10-12','09:00:00',0,32,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',119,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','riya','2025-10-14 10:11:52',0),(1506,2526,0,0,430,'2025-10-11','09:00:00',0,32,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',119,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','riya','2025-10-14 10:11:52',0),(1507,2526,0,0,430,'2025-10-12','09:00:00',0,32,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',119,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','riya','2025-10-14 10:11:52',0),(1508,2526,0,0,430,'2025-10-11','09:00:00',0,32,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',119,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','riya','2025-10-14 10:11:52',0),(1509,2526,0,0,470,'2025-10-11','11:40:00',131,34,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:48:55',0),(1510,2526,0,0,470,'2025-10-12','11:40:00',131,34,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:48:55',0),(1511,2526,0,0,470,'2025-10-11','11:40:00',131,34,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:48:55',0),(1512,2526,0,0,470,'2025-10-12','11:40:00',131,34,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:48:55',0),(1513,2526,0,0,470,'2025-10-11','11:40:00',131,34,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:48:55',0),(1514,2526,0,0,470,'2025-10-12','11:40:00',131,34,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:48:55',0),(1515,2526,0,0,470,'2025-10-11','11:40:00',131,34,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:48:55',0),(1516,2526,0,0,470,'2025-10-12','11:40:00',131,34,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','305','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:48:55',0),(1517,2526,0,0,470,'2025-10-11','11:40:00',131,34,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','305','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:48:55',0),(1518,2526,0,0,470,'2025-10-12','11:40:00',131,34,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','305','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:56:50',0),(1519,2526,0,0,477,'2025-10-11','12:00:00',21,35,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','309','','','',2526,'H','I',23,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:38:40',0),(1520,2526,0,0,477,'2025-10-12','12:00:00',21,35,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','309','','','',2526,'H','I',23,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:38:40',0),(1521,2526,0,0,477,'2025-10-11','12:00:00',21,35,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','309','','','',2526,'H','I',23,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:38:40',0),(1522,2526,0,0,477,'2025-10-12','12:00:00',21,35,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','309','','','',2526,'H','I',23,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:38:40',0),(1523,2526,0,0,477,'2025-10-11','12:00:00',21,35,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','309','','','',2526,'H','I',23,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:38:40',0),(1524,2526,0,0,477,'2025-10-12','12:00:00',21,35,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','309','','','',2526,'H','I',23,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:38:40',0),(1525,2526,0,0,477,'2025-10-11','12:00:00',21,35,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:38:40',0),(1526,2526,0,0,477,'2025-10-12','12:00:00',21,35,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','309','','','',2526,'H','I',23,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:38:40',0),(1527,2526,0,0,477,'2025-10-11','12:00:00',21,35,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,36,0,0,'',0,0,'','309','','','',2526,'H','I',23,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:38:40',0),(1528,2526,0,0,477,'2025-10-12','12:00:00',21,35,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','309','','','',2526,'H','I',23,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-12 18:38:40',0),(1529,2526,0,0,487,'2025-10-12','14:10:00',60,36,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-15 11:54:40',0),(1530,2526,0,0,487,'2025-10-12','14:10:00',60,36,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-15 11:54:40',0),(1531,2526,0,0,487,'2025-10-12','14:10:00',60,36,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',0,'','',0,8,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-15 11:54:40',0),(1532,2526,0,0,487,'2025-10-12','14:10:00',60,36,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','409','','','',2526,'H','I',33,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-15 11:59:02',0),(1533,2526,0,0,487,'2025-10-12','14:10:00',60,36,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','409','','','',2526,'H','I',33,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','vishal','2025-10-15 11:59:02',0),(1534,2526,0,0,489,'2025-10-12','17:00:00',0,38,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','reception','2025-10-13 10:40:10',0),(1535,2526,0,0,489,'2025-10-12','17:00:00',0,38,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','reception','2025-10-13 10:40:10',0),(1536,2526,0,0,489,'2025-10-12','17:00:00',0,38,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','reception','2025-10-13 10:40:10',0),(1537,2526,0,0,489,'2025-10-12','17:00:00',0,38,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','reception','2025-10-13 10:40:10',0),(1538,2526,0,0,489,'2025-10-12','17:00:00',0,38,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 05:44:04','reception','2025-10-13 10:40:10',0),(1539,2526,0,0,63,'2025-10-07','17:16:00',0,10,'REG','REG0001','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',17,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 17:16:53','','0000-00-00 00:00:00',0),(1540,2526,0,0,63,'2025-10-07','17:16:00',0,10,'REG','REG0002','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',17,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 17:16:53','','0000-00-00 00:00:00',0),(1541,2526,0,0,505,'2025-10-11','17:50:00',0,39,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',24,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 17:50:50','','0000-00-00 00:00:00',0),(1542,2526,0,0,216,'2025-10-09','17:53:00',166,16,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',34,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 17:53:45','vishal','2025-10-12 17:54:13',0),(1543,2526,0,0,63,'2025-10-11','17:58:00',0,10,'DRC','DRC0020','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,46,0,0,'',0,0,'','','','','',2526,'H','I',17,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 17:59:12','vishal','2025-10-13 12:39:29',0),(1544,2526,0,0,63,'2025-10-12','17:58:00',0,10,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',17,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 17:59:12','vishal','2025-10-13 12:39:44',0),(1545,2526,0,0,63,'2025-10-07','17:59:00',0,10,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',17,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 17:59:12','vishal','2025-10-12 17:59:31',0),(1546,2526,0,0,509,'2025-10-12','18:02:00',0,41,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',27,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:03:01','','0000-00-00 00:00:00',0),(1547,2526,0,0,406,'2025-10-10','18:03:00',0,22,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',28,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:08:32','vishal','2025-10-12 18:09:49',0),(1548,2526,0,0,406,'2025-10-10','18:03:00',0,22,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',28,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:08:32','vishal','2025-10-12 18:09:49',0),(1549,2526,0,0,406,'2025-10-10','18:04:00',0,22,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',28,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:08:32','vishal','2025-10-12 18:09:49',0),(1550,2526,0,0,406,'2025-10-10','18:05:00',0,22,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',28,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:08:32','vishal','2025-10-12 18:09:49',0),(1551,2526,0,0,406,'2025-10-11','18:05:00',0,22,'WPRC','WPRC0080','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',28,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:08:32','vishal','2025-10-12 18:09:49',0),(1552,2526,0,0,406,'2025-10-11','18:05:00',0,22,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',28,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:08:32','','0000-00-00 00:00:00',0),(1553,2526,0,0,406,'2025-10-11','18:05:00',0,22,'WPRC','WPRC0096','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',28,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:08:32','','0000-00-00 00:00:00',0),(1554,2526,0,0,487,'2025-10-11','18:10:00',60,36,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:11:29','vishal','2025-10-15 11:59:02',0),(1555,2526,0,0,487,'2025-10-11','18:11:00',60,36,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,36,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:11:29','vishal','2025-10-15 11:59:02',0),(1556,2526,0,0,487,'2025-10-11','18:11:00',60,36,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:12:29','','0000-00-00 00:00:00',0),(1557,2526,0,0,487,'2025-10-12','18:11:00',60,36,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:12:29','vishal','2025-10-15 11:57:47',0),(1558,2526,0,0,487,'2025-10-11','18:12:00',60,36,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:12:29','','0000-00-00 00:00:00',0),(1559,2526,0,0,487,'2025-10-12','18:12:00',60,36,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:12:29','vishal','2025-10-15 11:57:47',0),(1560,2526,0,0,246,'2025-10-12','18:00:00',0,18,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 06:48:15','reception','2025-10-13 12:19:33',0),(1561,2526,0,0,246,'2025-10-12','18:00:00',0,18,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 06:48:15','reception','2025-10-13 12:19:08',0),(1562,2526,0,0,246,'2025-10-12','18:00:00',0,18,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 06:48:15','reception','2025-10-13 12:19:08',0),(1563,2526,0,0,246,'2025-10-12','18:00:00',0,18,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 06:48:15','reception','2025-10-13 12:19:33',0),(1564,2526,0,0,246,'2025-10-12','18:00:00',0,18,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 06:48:15','reception','2025-10-13 12:19:33',0),(1565,2526,0,0,415,'2025-10-11','18:28:00',0,26,'DRC','DRC0020','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,41,0,0,'',0,0,'','','','','',2526,'H','I',15,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 18:30:51','reception','2025-10-12 18:31:21',0),(1566,2526,0,0,415,'2025-10-10','18:29:00',0,26,'ROOM','ROOM0004','H','N',2.00,500,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',15,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 18:30:51','reception','2025-10-12 18:31:21',0),(1567,2526,0,0,415,'2025-10-11','18:30:00',0,26,'ROOM','ROOM0004','H','N',2.00,500,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',15,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 18:30:51','reception','2025-10-12 18:31:21',0),(1568,2526,0,0,415,'2025-10-12','18:30:00',0,26,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',15,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 18:30:51','','0000-00-00 00:00:00',0),(1569,2526,0,0,415,'2025-10-10','18:30:00',0,26,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',15,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 18:30:51','reception','2025-10-12 18:31:21',0),(1570,2526,0,0,415,'2025-10-10','18:30:00',0,26,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',15,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 18:30:51','reception','2025-10-12 18:31:21',0),(1571,2526,0,0,477,'2025-10-11','18:38:00',21,35,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',23,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:38:40','','0000-00-00 00:00:00',0),(1572,2526,0,0,477,'2025-10-11','18:38:00',21,35,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',23,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:38:40','','0000-00-00 00:00:00',0),(1573,2526,0,0,510,'2025-10-12','18:39:00',40,42,'AECO','ROOM0007','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,7,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:40:39','vishal','2025-10-12 21:38:13',0),(1574,2526,0,0,510,'2025-10-12','18:39:00',40,42,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',12,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:40:39','vishal','2025-10-12 21:38:13',0),(1575,2526,0,0,510,'2025-10-12','18:40:00',40,42,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',12,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:40:39','','0000-00-00 00:00:00',0),(1576,2526,0,0,470,'2025-10-12','18:48:00',131,34,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,7,0,0,'',0,0,'','','','','',2526,'H','I',40,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:48:55','','0000-00-00 00:00:00',0),(1577,2526,0,0,470,'2025-10-12','18:48:00',131,34,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',40,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:48:55','','0000-00-00 00:00:00',0),(1578,2526,0,0,470,'2025-10-11','18:50:00',131,34,'ROOM','ROOM0008','H','N',2.00,100,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',40,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:54:36','vishal','2025-10-12 18:56:50',0),(1579,2526,0,0,470,'2025-10-12','18:50:00',131,34,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',40,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:54:36','','0000-00-00 00:00:00',0),(1580,2526,0,0,470,'2025-10-12','18:54:00',131,34,'WPRC','WPRC0079','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,3,0,0,'',0,0,'','','','','',2526,'H','I',40,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:54:36','','0000-00-00 00:00:00',0),(1581,2526,0,0,224,'2025-10-09','18:57:00',116,17,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:57:33','vishal','2025-10-12 18:59:54',0),(1582,2526,0,0,224,'2025-10-09','18:57:00',116,17,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:57:33','vishal','2025-10-12 18:59:54',0),(1583,2526,0,0,224,'2025-10-09','18:59:00',116,17,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:59:54','vishal','2025-10-12 19:02:07',0),(1584,2526,0,0,224,'2025-10-09','18:59:00',116,17,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:59:54','vishal','2025-10-12 19:02:07',0),(1585,2526,0,0,224,'2025-10-09','18:59:00',116,17,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 18:59:54','vishal','2025-10-12 19:02:07',0),(1586,2526,0,0,224,'2025-10-09','19:00:00',116,17,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 19:02:07','vishal','2025-10-12 19:06:19',0),(1587,2526,0,0,224,'2025-10-09','19:00:00',116,17,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 19:02:07','vishal','2025-10-12 19:06:19',0),(1588,2526,0,0,224,'2025-10-10','19:01:00',116,17,'WPRC','WPRC0086','H','N',2.00,200,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 19:02:07','vishal','2025-10-12 19:06:19',0),(1589,2526,0,0,224,'2025-10-09','19:03:00',116,17,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 19:06:19','vishal','2025-10-12 19:07:54',0),(1590,2526,0,0,224,'2025-10-09','19:04:00',116,17,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 19:06:19','vishal','2025-10-12 19:07:54',0),(1591,2526,0,0,224,'2025-10-10','19:04:00',116,17,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 19:06:19','','0000-00-00 00:00:00',0),(1592,2526,0,0,224,'2025-10-11','19:04:00',116,17,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 19:06:19','','0000-00-00 00:00:00',0),(1593,2526,0,0,224,'2025-10-10','19:05:00',116,17,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,3,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 19:06:19','','0000-00-00 00:00:00',0),(1594,2526,0,0,224,'2025-10-11','19:05:00',116,17,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 19:06:19','','0000-00-00 00:00:00',0),(1595,2526,0,0,224,'2025-10-11','19:05:00',116,17,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 19:06:19','','0000-00-00 00:00:00',0),(1596,2526,0,0,224,'2025-10-12','19:05:00',116,17,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 19:06:19','','0000-00-00 00:00:00',0),(1597,2526,0,0,224,'2025-10-12','19:05:00',116,17,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 19:06:19','','0000-00-00 00:00:00',0),(1598,2526,0,0,63,'2025-10-08','19:17:00',0,10,'SURG','SURG0014','H','N',1.00,20000,20000,'P',0,0,0.00,0.00,20000.00,20000,3,0,0,'',0,0,'','','','','',2526,'H','I',17,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 19:17:56','','0000-00-00 00:00:00',0),(1599,2526,0,0,63,'2025-10-08','19:17:00',0,10,'SURG','SURG0015','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,5000.00,5000,3,0,0,'',0,0,'','','','','',2526,'H','I',17,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 19:17:56','','0000-00-00 00:00:00',0),(1600,2526,0,0,510,'2025-10-12','21:37:00',40,42,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',12,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 21:38:13','','0000-00-00 00:00:00',0),(1601,2526,0,0,511,'2025-10-13','00:00:00',442,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:11:39','shweta','2025-10-12 21:41:39',0),(1602,2526,0,0,511,'2025-10-13','09:13:43',442,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',530,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:13:43','shweta','2025-10-13 09:13:43',0),(1603,2526,0,0,511,'2025-10-13','09:13:43',442,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',530,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:13:43','shweta','2025-10-13 09:13:43',0),(1604,2526,0,0,511,'2025-10-13','09:13:43',442,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',530,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:13:43','shweta','2025-10-13 09:13:43',0),(1605,2526,0,0,511,'2025-10-13','09:13:43',442,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',530,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:13:43','shweta','2025-10-13 09:13:43',0),(1606,2526,0,0,512,'2025-10-13','00:00:00',443,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:14:44','shweta','2025-10-12 21:44:44',0),(1607,2526,0,0,512,'2025-10-13','09:15:08',443,0,'SURG','SURG0005','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,0.00,1200,2,0,0,'',0,0,'','','','','',2526,'H','O',531,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:15:08','shweta','2025-10-13 09:15:08',0),(1608,2526,0,0,513,'2025-10-13','00:00:00',444,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:16:11','shweta','2025-10-12 21:46:11',0),(1609,2526,0,0,514,'2025-10-13','00:00:00',445,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',532,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 09:18:42','janvi','2025-10-13 09:19:24',0),(1610,2526,0,0,515,'2025-10-13','00:00:00',446,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',533,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 09:18:52','janvi','2025-10-13 09:19:40',0),(1611,2526,0,0,517,'2025-10-13','00:00:00',447,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',535,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 09:20:30','reception','2025-10-13 09:21:07',0),(1612,2526,0,0,516,'2025-10-13','09:20:47',140,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',534,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:20:47','shweta','2025-10-13 09:20:47',0),(1613,2526,0,0,518,'2025-10-13','09:22:09',303,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',536,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:22:09','shweta','2025-10-13 09:22:09',0),(1614,2526,0,0,519,'2025-10-13','09:22:54',118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',537,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:22:54','shweta','2025-10-13 09:22:54',0),(1615,2526,0,0,520,'2025-10-13','00:00:00',448,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:23:57','shweta','2025-10-12 21:53:57',0),(1616,2526,0,0,520,'2025-10-13','09:24:39',448,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',538,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:24:39','shweta','2025-10-13 09:24:39',0),(1617,2526,0,0,521,'2025-10-13','00:00:00',449,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',540,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 09:24:41','janvi','2025-10-13 09:25:42',0),(1618,2526,0,0,522,'2025-10-13','00:00:00',450,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',539,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 09:24:44','reception','2025-10-13 09:24:57',0),(1619,2526,0,0,523,'2025-10-13','00:00:00',451,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:26:05','shweta','2025-10-12 21:56:05',0),(1620,2526,0,0,523,'2025-10-13','09:26:55',451,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',541,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:26:55','shweta','2025-10-13 09:26:55',0),(1621,2526,0,0,523,'2025-10-13','09:26:55',451,0,'OPWD','OPWD0012','H','N',1.00,550,550,'P',0,0,0.00,0.00,0.00,550,3,0,0,'',0,0,'','','','','',2526,'H','O',541,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:26:55','shweta','2025-10-13 09:26:55',0),(1622,2526,0,0,524,'2025-10-13','00:00:00',452,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',542,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 09:27:32','janvi','2025-10-13 09:28:41',0),(1623,2526,0,0,525,'2025-10-13','00:00:00',453,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',543,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 09:28:58','reception','2025-10-13 09:29:49',0),(1624,2526,0,0,526,'2025-10-13','00:00:00',454,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',544,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 09:38:06','reception','2025-10-13 09:38:43',0),(1625,2526,0,0,527,'2025-10-13','09:30:00',370,43,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',19,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 09:38:44','vishal','2025-10-13 17:15:57',0),(1626,2526,0,0,527,'2025-10-13','09:30:00',370,43,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',19,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 09:38:44','vishal','2025-10-13 17:15:57',0),(1627,2526,0,0,527,'2025-10-13','09:30:00',370,43,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 22:08:44','vishal','2025-10-13 17:15:57',0),(1628,2526,0,0,527,'2025-10-13','09:30:00',370,43,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 22:08:44','vishal','2025-10-13 17:15:57',0),(1629,2526,0,0,527,'2025-10-13','09:30:00',370,43,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 22:08:44','vishal','2025-10-13 17:15:57',0),(1630,2526,0,0,527,'2025-10-13','09:30:00',370,43,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',19,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 22:08:44','vishal','2025-10-13 17:15:57',0),(1631,2526,0,0,527,'2025-10-13','09:30:00',370,43,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-12 22:08:44','vishal','2025-10-13 17:15:57',0),(1632,2526,0,0,513,'2025-10-13','09:44:51',444,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',545,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:44:51','shweta','2025-10-13 09:44:51',0),(1633,2526,0,0,513,'2025-10-13','09:44:51',444,0,'OPWD','OPWD0013','H','N',1.00,350,350,'P',0,0,0.00,0.00,0.00,350,6,0,0,'',0,0,'','','','','',2526,'H','O',545,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:44:51','shweta','2025-10-13 09:44:51',0),(1634,2526,0,0,513,'2025-10-13','09:44:51',444,0,'XRY','XRY0045','H','N',3.00,600,1800,'P',0,0,0.00,0.00,0.00,1800,9999,0,0,'',0,0,'','','','','',2526,'H','O',545,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 09:44:51','shweta','2025-10-13 09:44:51',0),(1635,2526,0,0,528,'2025-10-13','00:00:00',455,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',602,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 09:46:39','reception','2025-10-13 11:56:35',0),(1636,2526,0,0,529,'2025-10-13','00:00:00',456,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',547,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 09:53:29','reception','2025-10-13 09:55:59',0),(1637,2526,0,0,530,'2025-10-13','00:00:00',457,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',546,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 09:54:12','janvi','2025-10-13 09:55:23',0),(1638,2526,0,0,531,'2025-10-13','00:00:00',458,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',548,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 09:57:23','reception','2025-10-13 09:58:06',0),(1639,2526,0,0,532,'2025-10-13','00:00:00',459,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',549,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:01:07','reception','2025-10-13 10:01:32',0),(1640,2526,0,0,533,'2025-10-13','00:00:00',460,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',550,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:05:44','reception','2025-10-13 10:06:20',0),(1641,2526,0,0,409,'2025-09-30','10:05:00',0,23,'OETR','OETR0001','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',13,3,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 10:09:12','','0000-00-00 00:00:00',0),(1642,2526,0,0,409,'2025-09-30','10:05:00',0,23,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',13,4,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 10:09:12','','0000-00-00 00:00:00',0),(1643,2526,0,0,409,'2025-09-30','10:05:00',0,23,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',13,5,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 10:09:12','','0000-00-00 00:00:00',0),(1644,2526,0,0,534,'2025-10-13','00:00:00',461,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',551,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:10:13','reception','2025-10-13 10:11:30',0),(1645,2526,0,0,535,'2025-10-13','00:00:00',462,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',553,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:13:44','reception','2025-10-13 10:14:17',0),(1646,2526,0,0,536,'2025-10-13','00:00:00',463,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',552,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 10:13:48','shweta','2025-10-13 10:14:11',0),(1647,2526,0,0,537,'2025-10-13','00:00:00',464,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',554,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 10:14:45','manshi','2025-10-13 10:15:07',0),(1648,2526,0,0,538,'2025-10-13','00:00:00',465,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',555,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:15:20','reception','2025-10-13 10:16:44',0),(1649,2526,0,0,539,'2025-10-13','00:00:00',466,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',556,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 10:16:30','janvi','2025-10-13 10:16:56',0),(1650,2526,0,0,540,'2025-10-13','00:00:00',467,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',557,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 10:16:45','shweta','2025-10-13 10:17:14',0),(1651,2526,0,0,530,'2025-10-13','10:19:22',457,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',558,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 10:19:22','janvi','2025-10-13 10:19:22',0),(1652,2526,0,0,541,'2025-10-13','10:20:36',147,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',559,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:20:36','reception','2025-10-13 10:20:36',0),(1653,2526,0,0,542,'2025-10-13','00:00:00',468,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',560,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 10:27:29','manshi','2025-10-13 10:28:08',0),(1654,2526,0,0,543,'2025-10-13','00:00:00',469,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',561,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:27:32','reception','2025-10-13 10:28:35',0),(1655,2526,0,0,544,'2025-10-13','00:00:00',470,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',562,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 10:30:25','drashti','2025-10-13 10:30:50',0),(1656,2526,0,0,545,'2025-10-13','00:00:00',471,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',563,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:32:13','reception','2025-10-13 10:33:05',0),(1657,2526,0,0,546,'2025-10-13','00:00:00',472,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',564,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 10:33:18','drashti','2025-10-13 10:33:41',0),(1658,2526,0,0,284,'2025-10-12','23:00:00',0,21,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','reception','2025-10-13 10:57:20',0),(1659,2526,0,0,284,'2025-10-12','23:00:00',0,21,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','vishal','2025-10-17 14:47:01',0),(1660,2526,0,0,284,'2025-10-12','23:00:00',0,21,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','vishal','2025-10-17 14:46:39',0),(1661,2526,0,0,284,'2025-10-12','23:00:00',0,21,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','vishal','2025-10-17 14:46:39',0),(1662,2526,0,0,284,'2025-10-12','23:00:00',0,21,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','vishal','2025-10-17 14:47:01',0),(1663,2526,0,0,406,'2025-10-12','19:20:00',0,22,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','riya','2025-10-14 12:54:21',0),(1664,2526,0,0,406,'2025-10-12','19:20:00',0,22,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','riya','2025-10-14 12:54:21',0),(1665,2526,0,0,406,'2025-10-12','19:20:00',0,22,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','riya','2025-10-14 12:54:21',0),(1666,2526,0,0,406,'2025-10-12','19:20:00',0,22,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','riya','2025-10-14 12:54:21',0),(1667,2526,0,0,406,'2025-10-12','19:20:00',0,22,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','riya','2025-10-14 12:54:21',0),(1668,2526,0,0,413,'2025-10-12','20:30:00',259,24,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','310','','','',2526,'H','I',16,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','vishal','2025-10-13 13:11:03',0),(1669,2526,0,0,413,'2025-10-12','20:30:00',259,24,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','310','','','',2526,'H','I',16,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','vishal','2025-10-13 13:11:03',0),(1670,2526,0,0,413,'2025-10-12','20:30:00',259,24,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','310','','','',2526,'H','I',16,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','vishal','2025-10-13 13:11:03',0),(1671,2526,0,0,413,'2025-10-12','20:30:00',259,24,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','310','','','',2526,'H','I',16,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','vishal','2025-10-13 13:11:03',0),(1672,2526,0,0,413,'2025-10-12','20:30:00',259,24,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','310','','','',2526,'H','I',16,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','vishal','2025-10-13 13:12:12',0),(1673,2526,0,0,414,'2025-10-13','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','reception','2025-10-13 12:08:10',0),(1674,2526,0,0,414,'2025-10-13','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','reception','2025-10-13 12:08:10',0),(1675,2526,0,0,414,'2025-10-13','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','reception','2025-10-13 12:08:10',0),(1676,2526,0,0,414,'2025-10-13','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','reception','2025-10-13 12:08:10',0),(1677,2526,0,0,414,'2025-10-13','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','reception','2025-10-13 12:08:10',0),(1678,2526,0,0,430,'2025-10-13','09:00:00',0,32,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','riya','2025-10-14 10:11:52',0),(1679,2526,0,0,430,'2025-10-13','09:00:00',0,32,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','riya','2025-10-14 10:11:52',0),(1680,2526,0,0,430,'2025-10-13','09:00:00',0,32,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','riya','2025-10-14 10:11:52',0),(1681,2526,0,0,430,'2025-10-13','09:00:00',0,32,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',119,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','riya','2025-10-30 17:53:02',0),(1682,2526,0,0,430,'2025-10-13','09:00:00',0,32,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',119,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:20','riya','2025-10-14 10:11:52',0),(1683,2526,0,0,505,'2025-10-12','19:15:00',0,39,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',24,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:21','riya','2025-10-13 19:06:42',0),(1684,2526,0,0,505,'2025-10-12','19:15:00',0,39,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',24,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:21','riya','2025-10-13 19:06:42',0),(1685,2526,0,0,505,'2025-10-12','19:15:00',0,39,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',24,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:21','riya','2025-10-13 19:06:42',0),(1686,2526,0,0,505,'2025-10-12','19:15:00',0,39,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',24,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:21','riya','2025-10-13 19:06:42',0),(1687,2526,0,0,505,'2025-10-12','19:15:00',0,39,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',24,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:21','riya','2025-10-13 19:06:42',0),(1688,2526,0,0,506,'2025-10-12','22:00:00',0,40,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','214','','','',2526,'H','I',20,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:21','reception','2025-10-13 11:24:28',0),(1689,2526,0,0,506,'2025-10-12','22:00:00',0,40,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','214','','','',2526,'H','I',20,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:21','reception','2025-10-13 11:24:28',0),(1690,2526,0,0,506,'2025-10-12','22:00:00',0,40,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','214','','','',2526,'H','I',20,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-12 23:03:21','reception','2025-10-13 11:24:28',0),(1691,2526,0,0,547,'2025-10-13','00:00:00',473,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',565,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:38:44','reception','2025-10-13 10:39:14',0),(1692,2526,0,0,489,'2025-10-13','10:38:00',0,38,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:40:10','','0000-00-00 00:00:00',0),(1693,2526,0,0,489,'2025-10-13','10:38:00',0,38,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:40:10','','0000-00-00 00:00:00',0),(1694,2526,0,0,489,'2025-10-13','10:39:00',0,38,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:40:10','','0000-00-00 00:00:00',0),(1695,2526,0,0,489,'2025-10-13','10:39:00',0,38,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:40:10','','0000-00-00 00:00:00',0),(1696,2526,0,0,514,'2025-10-13','10:44:13',445,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',566,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:44:13','reception','2025-10-13 10:44:13',0),(1697,2526,0,0,514,'2025-10-13','10:44:13',445,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',566,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:44:13','reception','2025-10-13 10:44:13',0),(1698,2526,0,0,514,'2025-10-13','10:44:13',445,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',566,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:44:13','reception','2025-10-13 10:44:13',0),(1699,2526,0,0,515,'2025-10-13','10:50:01',446,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',567,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:50:01','reception','2025-10-13 10:50:01',0),(1700,2526,0,0,515,'2025-10-13','10:50:01',446,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',567,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:50:01','reception','2025-10-13 10:50:01',0),(1701,2526,0,0,549,'2025-10-13','00:00:00',474,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',568,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 10:51:55','drashti','2025-10-13 10:52:24',0),(1702,2526,0,0,284,'2025-10-13','10:54:00',0,21,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:57:20','vishal','2025-10-17 14:47:01',0),(1703,2526,0,0,284,'2025-10-13','10:54:00',0,21,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:57:20','vishal','2025-10-17 14:46:39',0),(1704,2526,0,0,284,'2025-10-13','10:56:00',0,21,'DRC','DRC0020','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:57:20','vishal','2025-10-17 14:47:01',0),(1705,2526,0,0,284,'2025-10-13','10:56:00',0,21,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:57:20','vishal','2025-10-17 14:46:39',0),(1706,2526,0,0,550,'2025-10-13','00:00:00',475,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',571,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 10:58:23','reception','2025-10-13 11:09:30',0),(1707,2526,0,0,551,'2025-10-13','00:00:00',476,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 10:58:58','janvi','2025-10-12 23:28:58',0),(1708,2526,0,0,552,'2025-10-13','00:00:00',477,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',621,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 10:59:55','drashti','2025-10-13 14:23:35',0),(1709,2526,0,0,553,'2025-10-13','00:00:00',478,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',569,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 11:00:45','manshi','2025-10-13 11:01:29',0),(1710,2526,0,0,554,'2025-10-13','00:00:00',479,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',570,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 11:04:08','manshi','2025-10-13 11:04:29',0),(1711,2526,0,0,555,'2025-10-13','00:00:00',480,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 11:06:53','janvi','2025-10-12 23:36:53',0),(1712,2526,0,0,554,'2025-10-13','11:09:45',479,0,'XRY','XRY0449','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',572,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 11:09:45','manshi','2025-10-13 11:09:45',0),(1713,2526,0,0,549,'2025-10-13','11:10:55',474,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,14,'',0,0,'','','','','',2526,'H','O',573,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'drashti','2025-10-13 11:10:55','drashti','2025-10-13 11:10:55',0),(1714,2526,0,0,549,'2025-10-13','11:10:55',474,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',573,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'drashti','2025-10-13 11:10:55','drashti','2025-10-13 11:10:55',0),(1715,2526,0,0,556,'2025-10-13','00:00:00',481,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',574,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 11:13:30','drashti','2025-10-13 11:14:07',0),(1716,2526,0,0,557,'2025-10-13','00:00:00',482,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',576,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 11:14:22','janvi','2025-10-13 11:28:09',0),(1717,2526,0,0,558,'2025-10-13','00:00:00',483,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',575,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 11:15:13','reception','2025-10-13 11:15:53',0),(1718,2526,0,0,559,'2025-10-13','00:00:00',484,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 11:15:52','manshi','2025-10-12 23:45:52',0),(1719,2526,0,0,544,'2025-10-13','11:19:27',470,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',577,1,351,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 11:19:27','reception','2025-10-13 11:19:27',0),(1720,2526,0,0,544,'2025-10-13','11:19:27',470,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',577,2,399,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 11:19:27','reception','2025-10-13 11:19:27',0),(1721,2526,0,0,544,'2025-10-13','11:19:27',470,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',577,3,351,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 11:19:27','reception','2025-10-13 11:19:27',0),(1722,2526,0,0,555,'2025-10-13','11:19:52',480,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',578,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 11:19:52','janvi','2025-10-13 11:19:52',0),(1723,2526,0,0,560,'2025-10-13','00:00:00',485,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',580,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 11:21:13','janvi','2025-10-13 11:23:49',0),(1724,2526,0,0,561,'2025-10-13','00:00:00',486,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',579,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 11:21:31','manshi','2025-10-13 11:22:09',0),(1725,2526,0,0,506,'2025-10-13','11:24:00',0,40,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',20,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 11:24:28','','0000-00-00 00:00:00',0),(1726,2526,0,0,506,'2025-10-12','11:24:00',0,40,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',20,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 11:24:28','','0000-00-00 00:00:00',0),(1727,2526,0,0,563,'2025-10-13','00:00:00',487,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',581,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 11:25:21','drashti','2025-10-13 11:26:06',0),(1728,2526,0,0,565,'2025-10-13','00:00:00',488,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',584,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 11:28:20','reception','2025-10-13 11:30:33',0),(1729,2526,0,0,566,'2025-10-13','00:00:00',489,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',583,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 11:29:16','manshi','2025-10-13 11:29:39',0),(1730,2526,0,0,564,'2025-10-13','11:32:04',67,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',585,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 11:32:04','drashti','2025-10-13 11:32:04',0),(1731,2526,0,0,567,'2025-10-13','00:00:00',490,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',586,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 11:32:43','janvi','2025-10-13 11:33:36',0),(1732,2526,0,0,568,'2025-10-13','00:00:00',491,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',587,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 11:33:31','manshi','2025-10-13 11:33:50',0),(1733,2526,0,0,569,'2025-10-13','00:00:00',492,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',588,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 11:33:45','drashti','2025-10-13 11:34:35',0),(1734,2526,0,0,563,'2025-10-13','11:36:43',487,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',589,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'drashti','2025-10-13 11:36:43','drashti','2025-10-13 11:36:43',0),(1735,2526,0,0,563,'2025-10-13','11:36:43',487,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,15,'',0,0,'','','','','',2526,'H','O',589,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'drashti','2025-10-13 11:36:43','drashti','2025-10-13 11:36:43',0),(1736,2526,0,0,570,'2025-10-13','00:00:00',493,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',603,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 11:37:20','drashti','2025-10-13 11:59:41',0),(1737,2526,0,0,571,'2025-10-13','00:00:00',494,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',591,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 11:38:55','drashti','2025-10-13 11:40:10',0),(1738,2526,0,0,534,'2025-10-13','11:40:02',461,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',590,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 11:40:02','reception','2025-10-13 11:40:02',0),(1739,2526,0,0,534,'2025-10-13','11:40:02',461,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',590,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 11:40:02','reception','2025-10-13 11:40:02',0),(1740,2526,0,0,572,'2025-10-13','00:00:00',495,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',592,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 11:43:32','janvi','2025-10-13 11:45:11',0),(1741,2526,0,0,573,'2025-10-13','00:00:00',496,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',593,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 11:45:22','reception','2025-10-13 11:46:00',0),(1742,2526,0,0,574,'2025-10-13','11:30:00',481,44,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',37,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 11:46:29','riya','2025-10-15 18:15:34',0),(1743,2526,0,0,574,'2025-10-13','11:30:00',481,44,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',37,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 11:46:29','riya','2025-10-15 18:15:34',0),(1744,2526,0,0,574,'2025-10-13','11:30:00',481,44,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',37,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 00:16:29','riya','2025-10-15 18:15:34',0),(1745,2526,0,0,574,'2025-10-13','11:30:00',481,44,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',37,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 00:16:29','riya','2025-10-15 18:15:34',0),(1746,2526,0,0,574,'2025-10-13','11:30:00',481,44,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',37,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 00:16:29','riya','2025-10-15 18:15:34',0),(1747,2526,0,0,574,'2025-10-13','11:30:00',481,44,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 00:16:29','riya','2025-10-15 18:15:34',0),(1748,2526,0,0,574,'2025-10-13','11:30:00',481,44,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','305','','','',2526,'H','I',37,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 00:16:29','riya','2025-10-15 18:15:34',0),(1749,2526,0,0,575,'2025-10-13','00:00:00',497,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',596,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 11:47:39','drashti','2025-10-13 11:49:11',0),(1750,2526,0,0,567,'2025-10-13','11:47:47',490,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,16,'',0,0,'','','','','',2526,'H','O',594,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'janvi','2025-10-13 11:47:47','janvi','2025-10-13 11:47:47',0),(1751,2526,0,0,576,'2025-10-13','00:00:00',498,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',595,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 11:47:50','manshi','2025-10-13 11:48:05',0),(1752,2526,0,0,577,'2025-10-13','00:00:00',499,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',597,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 11:50:41','reception','2025-10-13 11:51:16',0),(1753,2526,0,0,578,'2025-10-13','00:00:00',500,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',598,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 11:51:13','janvi','2025-10-13 11:54:18',0),(1754,2526,0,0,579,'2025-10-13','00:00:00',501,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',599,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 11:53:46','drashti','2025-10-13 11:54:48',0),(1755,2526,0,0,580,'2025-10-13','00:00:00',502,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',600,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 11:54:39','janvi','2025-10-13 11:55:21',0),(1756,2526,0,0,581,'2025-10-13','00:00:00',503,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',601,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 11:55:25','manshi','2025-10-13 12:12:40',0),(1757,2526,0,0,415,'2025-10-13','11:57:00',0,26,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',15,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 11:59:35','','0000-00-00 00:00:00',0),(1758,2526,0,0,415,'2025-10-13','11:58:00',0,26,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',15,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 11:59:35','','0000-00-00 00:00:00',0),(1759,2526,0,0,415,'2025-10-13','11:58:00',0,26,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','','','','',2526,'H','I',15,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 11:59:35','','0000-00-00 00:00:00',0),(1760,2526,0,0,521,'2025-10-13','12:01:25',449,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',604,1,478,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:01:25','reception','2025-10-13 12:01:25',0),(1761,2526,0,0,521,'2025-10-13','12:01:25',449,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',604,2,478,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:01:25','reception','2025-10-13 12:01:25',0),(1762,2526,0,0,521,'2025-10-13','12:01:25',449,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',604,3,543,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:01:25','reception','2025-10-13 12:01:25',0),(1763,2526,0,0,569,'2025-10-13','12:02:05',492,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',605,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 12:02:05','drashti','2025-10-13 12:02:05',0),(1764,2526,0,0,582,'2025-10-13','00:00:00',504,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',606,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:07:15','reception','2025-10-13 12:07:50',0),(1765,2526,0,0,414,'2025-10-13','12:06:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:08:10','','0000-00-00 00:00:00',0),(1766,2526,0,0,414,'2025-10-13','12:06:00',0,25,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:08:10','riya','2025-10-14 10:45:57',0),(1767,2526,0,0,414,'2025-10-13','12:06:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:08:10','','0000-00-00 00:00:00',0),(1768,2526,0,0,414,'2025-10-13','12:07:00',0,25,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:08:10','','0000-00-00 00:00:00',0),(1769,2526,0,0,583,'2025-10-13','00:00:00',505,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',607,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 12:08:51','drashti','2025-10-13 12:09:16',0),(1770,2526,0,0,543,'2025-10-13','12:09:49',469,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',608,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:09:49','reception','2025-10-13 12:09:49',0),(1771,2526,0,0,543,'2025-10-13','12:09:49',469,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',608,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:09:49','reception','2025-10-13 12:09:49',0),(1772,2526,0,0,561,'2025-10-13','12:16:37',486,0,'WPRC','WPRC0046','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',610,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 12:16:37','manshi','2025-10-13 12:16:37',0),(1773,2526,0,0,584,'2025-10-13','00:00:00',506,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',611,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 12:17:51','janvi','2025-10-13 12:18:26',0),(1774,2526,0,0,246,'2025-10-13','12:16:00',0,18,'ROOM','ROOM0008','H','N',12.00,100,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:19:08','riya','2025-10-18 11:05:08',0),(1775,2526,0,0,246,'2025-10-12','12:16:00',0,18,'WPRC','WPRC0093','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:19:08','','0000-00-00 00:00:00',0),(1776,2526,0,0,246,'2025-10-12','12:16:00',0,18,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:19:08','','0000-00-00 00:00:00',0),(1777,2526,0,0,246,'2025-10-13','12:16:00',0,18,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:19:08','','0000-00-00 00:00:00',0),(1778,2526,0,0,246,'2025-10-13','12:17:00',0,18,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:19:08','','0000-00-00 00:00:00',0),(1779,2526,0,0,246,'2025-10-13','12:17:00',0,18,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:19:08','','0000-00-00 00:00:00',0),(1780,2526,0,0,246,'2025-10-12','12:18:00',0,18,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:19:08','','0000-00-00 00:00:00',0),(1781,2526,0,0,246,'2025-10-13','12:18:00',0,18,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:19:08','','0000-00-00 00:00:00',0),(1782,2526,0,0,585,'2025-10-13','00:00:00',507,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',612,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 12:19:20','janvi','2025-10-13 12:19:43',0),(1783,2526,0,0,525,'2025-10-13','12:20:01',453,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',613,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:20:01','reception','2025-10-13 12:20:01',0),(1784,2526,0,0,525,'2025-10-13','12:20:01',453,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',613,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:20:01','reception','2025-10-13 12:20:01',0),(1785,2526,0,0,525,'2025-10-13','12:20:01',453,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',613,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:20:01','reception','2025-10-13 12:20:01',0),(1786,2526,0,0,48,'2025-10-13','11:00:00',0,5,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 00:50:17','riya','2025-10-14 15:23:22',0),(1787,2526,0,0,48,'2025-10-13','11:00:00',0,5,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 00:50:18','riya','2025-10-14 15:23:22',0),(1788,2526,0,0,48,'2025-10-13','11:00:00',0,5,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 00:50:18','riya','2025-10-14 15:23:22',0),(1789,2526,0,0,48,'2025-10-13','11:00:00',0,5,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 00:50:18','riya','2025-10-13 19:51:20',0),(1790,2526,0,0,48,'2025-10-13','11:00:00',0,5,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 00:50:18','riya','2025-10-13 19:51:20',0),(1791,2526,0,0,586,'2025-10-13','00:00:00',508,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',614,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 12:21:05','janvi','2025-10-13 12:22:49',0),(1792,2526,0,0,48,'2025-10-13','12:20:00',0,5,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:22:28','','0000-00-00 00:00:00',0),(1793,2526,0,0,48,'2025-10-13','12:20:00',0,5,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:22:28','','0000-00-00 00:00:00',0),(1794,2526,0,0,48,'2025-10-13','12:21:00',0,5,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:22:28','','0000-00-00 00:00:00',0),(1795,2526,0,0,587,'2025-10-13','00:00:00',509,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',615,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 12:22:51','drashti','2025-10-13 12:23:41',0),(1796,2526,0,0,588,'2025-10-13','00:00:00',510,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',616,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:25:05','reception','2025-10-13 12:25:59',0),(1797,2526,0,0,589,'2025-10-13','00:00:00',511,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',617,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:28:44','reception','2025-10-13 12:29:48',0),(1798,2526,0,0,63,'2025-10-13','10:55:00',0,10,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,37,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 00:59:03','vishal','2025-10-13 13:14:48',0),(1799,2526,0,0,63,'2025-10-13','10:55:00',0,10,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,38,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 00:59:03','vishal','2025-10-13 13:14:48',0),(1800,2526,0,0,63,'2025-10-13','10:55:00',0,10,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,39,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 00:59:03','vishal','2025-10-13 13:14:48',0),(1801,2526,0,0,63,'2025-10-13','10:55:00',0,10,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',17,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 00:59:03','vishal','2025-10-13 12:39:29',0),(1802,2526,0,0,63,'2025-10-13','10:55:00',0,10,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 00:59:03','vishal','2025-10-13 12:39:29',0),(1803,2526,0,0,570,'2025-10-13','12:36:31',493,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',618,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 12:36:31','drashti','2025-10-13 12:36:31',0),(1804,2526,0,0,590,'2025-10-13','00:00:00',512,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 12:40:39','janvi','2025-10-13 01:10:39',0),(1805,2526,0,0,572,'2025-10-13','12:42:02',495,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',619,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 12:42:02','drashti','2025-10-13 12:42:02',0),(1806,2526,0,0,548,'2025-10-13','12:43:42',440,0,'WPRC','WPRC0046','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',620,1,1000,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 12:43:42','janvi','2025-10-13 12:43:42',0),(1807,2526,0,0,591,'2025-10-13','00:00:00',513,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',622,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 12:44:42','shweta','2025-10-13 15:28:07',0),(1808,2526,0,0,592,'2025-10-13','00:00:00',514,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 13:00:59','manshi','2025-10-13 01:30:59',0),(1809,2526,0,0,593,'2025-10-13','00:00:00',515,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',623,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 13:02:33','janvi','2025-10-13 13:04:14',0),(1810,2526,0,0,594,'2025-10-13','00:00:00',516,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',624,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 13:06:42','drashti','2025-10-13 14:16:48',0),(1811,2526,0,0,592,'2025-10-13','13:08:42',514,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',625,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'manshi','2025-10-13 13:08:42','manshi','2025-10-13 13:08:42',0),(1812,2526,0,0,592,'2025-10-13','13:08:42',514,0,'XRY','XRY0428','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',625,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'manshi','2025-10-13 13:08:42','manshi','2025-10-13 13:08:42',0),(1813,2526,0,0,592,'2025-10-13','13:08:42',514,0,'WPRC','WPRC0046','H','N',1.00,3550,3550,'P',0,0,0.00,0.00,0.00,3550,6,0,0,'',0,0,'','','','','',2526,'H','O',625,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'manshi','2025-10-13 13:08:42','manshi','2025-10-13 13:08:42',0),(1814,2526,0,0,592,'2025-10-13','13:08:42',514,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,17,'',0,0,'','','','','',2526,'H','O',625,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'manshi','2025-10-13 13:08:42','manshi','2025-10-13 13:08:42',0),(1815,2526,0,0,413,'2025-10-12','13:09:00',259,24,'DRC','DRC0020','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 13:11:03','vishal','2025-10-13 13:12:12',0),(1816,2526,0,0,413,'2025-10-13','13:10:00',259,24,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',16,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 13:11:03','','0000-00-00 00:00:00',0),(1817,2526,0,0,63,'2025-10-07','13:23:00',0,10,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 13:24:35','vishal','2025-10-13 13:45:49',0),(1818,2526,0,0,63,'2025-10-08','13:23:00',0,10,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 13:24:35','vishal','2025-10-13 13:45:49',0),(1819,2526,0,0,63,'2025-10-09','13:23:00',0,10,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 13:24:35','vishal','2025-10-13 13:45:49',0),(1820,2526,0,0,63,'2025-10-10','13:23:00',0,10,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 13:24:35','vishal','2025-10-13 13:45:49',0),(1821,2526,0,0,585,'2025-10-13','13:36:39',507,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',626,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 13:36:39','reception','2025-10-13 13:36:39',0),(1822,2526,0,0,585,'2025-10-13','13:36:39',507,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',626,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 13:36:39','reception','2025-10-13 13:36:39',0),(1823,2526,0,0,595,'2025-10-13','00:00:00',517,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',627,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 13:36:53','janvi','2025-10-13 14:02:30',0),(1824,2526,0,0,568,'2025-10-13','13:43:33',491,0,'WPRC','WPRC0037','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,6,0,0,'',0,0,'','','','','',2526,'H','O',628,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 13:43:33','manshi','2025-10-13 13:43:33',0),(1825,2526,0,0,595,'2025-10-13','14:05:27',517,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',630,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 14:05:27','janvi','2025-10-13 14:05:27',0),(1826,2526,0,0,546,'2025-10-13','14:08:06',472,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',631,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 14:08:06','drashti','2025-10-13 14:08:06',0),(1827,2526,0,0,546,'2025-10-13','14:08:06',472,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',631,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 14:08:06','drashti','2025-10-13 14:08:06',0),(1828,2526,0,0,596,'2025-10-13','00:00:00',518,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 14:12:21','drashti','2025-10-13 02:42:21',0),(1829,2526,0,0,594,'2025-10-13','14:19:18',516,0,'PKG','CASE','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',633,1,300,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 14:19:18','drashti','2025-10-13 14:19:18',0),(1830,2526,0,0,552,'2025-10-13','14:24:47',477,0,'PKG','CASE','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',635,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 14:24:47','drashti','2025-10-13 14:24:47',0),(1831,2526,0,0,589,'2025-10-13','15:15:15',511,0,'NEU1','NEU10019','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',636,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 15:15:15','shweta','2025-10-13 15:15:15',0),(1832,2526,0,0,589,'2025-10-13','15:15:15',511,0,'NEU1','NEU10015','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',636,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 15:15:15','shweta','2025-10-13 15:15:15',0),(1833,2526,0,0,591,'2025-10-13','15:29:03',513,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',638,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 15:29:03','shweta','2025-10-13 15:29:03',0),(1834,2526,0,0,597,'2025-10-13','00:00:00',519,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 15:34:56','shweta','2025-10-13 04:04:56',0),(1835,2526,0,0,597,'2025-10-13','15:35:35',519,0,'WPRC','WPRC0037','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',639,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 15:35:35','shweta','2025-10-13 15:35:35',0),(1836,2526,0,0,598,'2025-10-04','09:30:00',0,45,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',18,5,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 16:09:56','vishal','2025-10-13 16:54:43',0),(1837,2526,0,0,598,'2025-10-04','09:30:00',0,45,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',18,6,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 16:09:56','vishal','2025-10-13 16:54:43',0),(1838,2526,0,0,598,'2025-10-10','09:30:00',0,45,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1839,2526,0,0,598,'2025-10-11','09:30:00',0,45,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1840,2526,0,0,598,'2025-10-12','09:30:00',0,45,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1841,2526,0,0,598,'2025-10-13','09:30:00',0,45,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1842,2526,0,0,598,'2025-10-10','09:30:00',0,45,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1843,2526,0,0,598,'2025-10-11','09:30:00',0,45,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1844,2526,0,0,598,'2025-10-12','09:30:00',0,45,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1845,2526,0,0,598,'2025-10-13','09:30:00',0,45,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1846,2526,0,0,598,'2025-10-10','09:30:00',0,45,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1847,2526,0,0,598,'2025-10-11','09:30:00',0,45,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1848,2526,0,0,598,'2025-10-12','09:30:00',0,45,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1849,2526,0,0,598,'2025-10-13','09:30:00',0,45,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1850,2526,0,0,598,'2025-10-10','09:30:00',0,45,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1851,2526,0,0,598,'2025-10-11','09:30:00',0,45,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1852,2526,0,0,598,'2025-10-12','09:30:00',0,45,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1853,2526,0,0,598,'2025-10-13','09:30:00',0,45,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1854,2526,0,0,598,'2025-10-10','09:30:00',0,45,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1855,2526,0,0,598,'2025-10-11','09:30:00',0,45,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1856,2526,0,0,598,'2025-10-12','09:30:00',0,45,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1857,2526,0,0,598,'2025-10-13','09:30:00',0,45,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:39:56','vishal','2025-10-13 16:54:43',0),(1858,2526,0,0,598,'2025-10-04','09:30:00',0,45,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',18,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1859,2526,0,0,598,'2025-10-05','09:30:00',0,45,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1860,2526,0,0,598,'2025-10-06','09:30:00',0,45,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1861,2526,0,0,598,'2025-10-07','09:30:00',0,45,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1862,2526,0,0,598,'2025-10-08','09:30:00',0,45,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1863,2526,0,0,598,'2025-10-09','09:30:00',0,45,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1864,2526,0,0,598,'2025-10-04','09:30:00',0,45,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',18,1,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1865,2526,0,0,598,'2025-10-05','09:30:00',0,45,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1866,2526,0,0,598,'2025-10-06','09:30:00',0,45,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1867,2526,0,0,598,'2025-10-07','09:30:00',0,45,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1868,2526,0,0,598,'2025-10-08','09:30:00',0,45,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1869,2526,0,0,598,'2025-10-09','09:30:00',0,45,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1870,2526,0,0,598,'2025-10-04','09:30:00',0,45,'DRC','DRC0018','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','408','','','',2526,'H','I',18,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:55:37',0),(1871,2526,0,0,598,'2025-10-05','09:30:00',0,45,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1872,2526,0,0,598,'2025-10-06','09:30:00',0,45,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1873,2526,0,0,598,'2025-10-07','09:30:00',0,45,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1874,2526,0,0,598,'2025-10-08','09:30:00',0,45,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1875,2526,0,0,598,'2025-10-09','09:30:00',0,45,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1876,2526,0,0,598,'2025-10-04','09:30:00',0,45,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1877,2526,0,0,598,'2025-10-05','09:30:00',0,45,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1878,2526,0,0,598,'2025-10-06','09:30:00',0,45,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1879,2526,0,0,598,'2025-10-07','09:30:00',0,45,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1880,2526,0,0,598,'2025-10-08','09:30:00',0,45,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1881,2526,0,0,598,'2025-10-09','09:30:00',0,45,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1882,2526,0,0,598,'2025-10-04','09:30:00',0,45,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',18,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1883,2526,0,0,598,'2025-10-05','09:30:00',0,45,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1884,2526,0,0,598,'2025-10-06','09:30:00',0,45,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1885,2526,0,0,598,'2025-10-07','09:30:00',0,45,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1886,2526,0,0,598,'2025-10-08','09:30:00',0,45,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1887,2526,0,0,598,'2025-10-09','09:30:00',0,45,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:41:04','vishal','2025-10-13 16:54:43',0),(1888,2526,0,0,216,'2025-10-13','12:30:00',166,16,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:57','vishal','2025-10-15 12:03:01',0),(1889,2526,0,0,216,'2025-10-13','12:30:00',166,16,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:57','vishal','2025-10-15 12:03:01',0),(1890,2526,0,0,216,'2025-10-13','12:30:00',166,16,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:57','vishal','2025-10-15 12:03:01',0),(1891,2526,0,0,216,'2025-10-13','12:30:00',166,16,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:57','vishal','2025-10-15 12:03:01',0),(1892,2526,0,0,216,'2025-10-13','12:30:00',166,16,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:57','vishal','2025-10-15 12:03:01',0),(1893,2526,0,0,224,'2025-10-13','14:30:00',116,17,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:57','riya','2025-10-15 17:59:44',0),(1894,2526,0,0,224,'2025-10-13','14:30:00',116,17,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:57','riya','2025-10-15 17:59:44',0),(1895,2526,0,0,224,'2025-10-13','14:30:00',116,17,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:57','riya','2025-10-15 17:59:44',0),(1896,2526,0,0,224,'2025-10-13','14:30:00',116,17,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:57','riya','2025-10-15 17:59:44',0),(1897,2526,0,0,224,'2025-10-13','14:30:00',116,17,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:57','riya','2025-10-15 17:59:44',0),(1898,2526,0,0,416,'2025-10-13','12:40:00',276,27,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-14 11:16:16',0),(1899,2526,0,0,416,'2025-10-13','12:40:00',276,27,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-14 11:16:16',0),(1900,2526,0,0,416,'2025-10-13','12:40:00',276,27,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-14 19:13:23',0),(1901,2526,0,0,416,'2025-10-13','12:40:00',276,27,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-14 19:13:23',0),(1902,2526,0,0,416,'2025-10-13','12:40:00',276,27,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',2526,'H','I',30,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-14 19:13:23',0),(1903,2526,0,0,470,'2025-10-13','11:40:00',131,34,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-15 18:18:59',0),(1904,2526,0,0,470,'2025-10-13','11:40:00',131,34,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-15 18:18:59',0),(1905,2526,0,0,470,'2025-10-13','11:40:00',131,34,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-15 18:18:59',0),(1906,2526,0,0,470,'2025-10-13','11:40:00',131,34,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-15 18:18:59',0),(1907,2526,0,0,470,'2025-10-13','11:40:00',131,34,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-15 18:18:59',0),(1908,2526,0,0,477,'2025-10-13','12:00:00',21,35,'ROOM','ROOM0009','H','N',0.50,2900,1450,'A',0,0,0.00,0.00,1450.00,1450,9999,0,0,'',0,0,'','309','','','',2526,'H','I',23,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-13 22:53:53',0),(1909,2526,0,0,477,'2025-10-13','12:00:00',21,35,'AECO','AECO0008','H','N',0.50,300,150,'A',0,0,0.00,0.00,150.00,150,9999,0,0,'',0,0,'','309','','','',2526,'H','I',23,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-13 22:53:53',0),(1910,2526,0,0,477,'2025-10-13','12:00:00',21,35,'CARE','CARE0001','H','N',0.50,200,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','309','','','',2526,'H','I',23,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-13 22:53:53',0),(1911,2526,0,0,477,'2025-10-13','12:00:00',21,35,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','309','','','',2526,'H','I',23,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-13 22:52:33',0),(1912,2526,0,0,477,'2025-10-13','12:00:00',21,35,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','309','','','',2526,'H','I',23,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-13 22:52:33',0),(1913,2526,0,0,487,'2025-10-13','14:10:00',60,36,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',0,'','',0,17,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','vishal','2025-10-15 11:54:40',0),(1914,2526,0,0,487,'2025-10-13','14:10:00',60,36,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',0,'','',0,18,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','vishal','2025-10-15 11:54:40',0),(1915,2526,0,0,487,'2025-10-13','14:10:00',60,36,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',0,'','',0,19,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','vishal','2025-10-15 11:54:40',0),(1916,2526,0,0,487,'2025-10-13','14:10:00',60,36,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','409','','','',2526,'H','I',33,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','vishal','2025-10-15 11:59:02',0),(1917,2526,0,0,487,'2025-10-13','14:10:00',60,36,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','409','','','',2526,'H','I',33,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','vishal','2025-10-15 11:59:02',0),(1918,2526,0,0,509,'2025-10-13','11:00:00',0,41,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',27,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-14 10:36:48',0),(1919,2526,0,0,509,'2025-10-13','11:00:00',0,41,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',27,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-14 10:36:48',0),(1920,2526,0,0,509,'2025-10-13','11:00:00',0,41,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',27,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-14 10:36:48',0),(1921,2526,0,0,509,'2025-10-13','11:00:00',0,41,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','411','','','',2526,'H','I',27,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-14 10:36:48',0),(1922,2526,0,0,509,'2025-10-13','11:00:00',0,41,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','411','','','',2526,'H','I',27,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 04:44:58','riya','2025-10-14 10:36:48',0),(1923,2526,0,0,487,'2025-10-13','16:25:00',60,36,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 16:25:43','','0000-00-00 00:00:00',0),(1924,2526,0,0,487,'2025-10-13','16:25:00',60,36,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 16:25:43','vishal','2025-10-15 11:57:47',0),(1925,2526,0,0,599,'2025-10-13','00:00:00',520,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',640,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 16:32:39','reception','2025-10-13 16:33:25',0),(1926,2526,0,0,600,'2025-10-13','00:00:00',521,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',641,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 16:44:14','shweta','2025-10-13 16:45:28',0),(1927,2526,0,0,601,'2025-10-13','16:47:26',347,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',642,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 16:47:26','shweta','2025-10-13 16:49:30',0),(1928,2526,0,0,602,'2025-10-13','00:00:00',522,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',644,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 16:49:56','reception','2025-10-13 16:50:46',0),(1929,2526,0,0,601,'2025-10-13','16:50:47',347,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',645,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 16:50:47','shweta','2025-10-13 16:50:47',0),(1930,2526,0,0,601,'2025-10-13','16:50:47',347,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',645,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 16:50:47','shweta','2025-10-13 16:50:47',0),(1931,2526,0,0,598,'2025-10-04','16:54:00',0,45,'WPRC','WPRC0090','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',18,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 16:55:37','','0000-00-00 00:00:00',0),(1932,2526,0,0,598,'2025-10-04','16:55:00',0,45,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',18,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 16:55:37','','0000-00-00 00:00:00',0),(1933,2526,0,0,598,'2025-10-04','16:55:00',0,45,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',18,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 16:55:37','','0000-00-00 00:00:00',0),(1934,2526,0,0,603,'2025-10-13','00:00:00',523,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',646,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 16:57:12','reception','2025-10-13 17:29:01',0),(1935,2526,0,0,604,'2025-10-13','00:00:00',524,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',647,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 16:59:09','shweta','2025-10-13 16:59:47',0),(1936,2526,0,0,605,'2025-10-13','17:06:10',504,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',648,1,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 17:06:10','shweta','2025-10-13 17:06:10',0),(1937,2526,0,0,605,'2025-10-13','17:06:10',504,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',648,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 17:06:10','shweta','2025-10-13 17:06:10',0),(1938,2526,0,0,605,'2025-10-13','17:06:10',504,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',648,3,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 17:06:10','shweta','2025-10-13 17:06:10',0),(1939,2526,0,0,599,'2025-10-13','17:10:42',520,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',649,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 17:10:42','shweta','2025-10-13 17:10:42',0),(1940,2526,0,0,599,'2025-10-13','17:10:42',520,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',649,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-13 17:10:42','shweta','2025-10-13 17:10:42',0),(1941,2526,0,0,606,'2025-10-13','00:00:00',525,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',650,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 17:14:33','janvi','2025-10-13 17:15:55',0),(1942,2526,0,0,527,'2025-10-13','17:14:00',370,43,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',19,4,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 17:15:57','','0000-00-00 00:00:00',0),(1943,2526,0,0,527,'2025-10-13','17:14:00',370,43,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',19,5,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 17:15:57','','0000-00-00 00:00:00',0),(1944,2526,0,0,527,'2025-10-13','17:14:00',370,43,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',19,6,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 17:15:57','','0000-00-00 00:00:00',0),(1945,2526,0,0,527,'2025-10-13','17:15:00',370,43,'CARE','CARE0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',19,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 17:15:57','','0000-00-00 00:00:00',0),(1946,2526,0,0,527,'2025-10-13','17:16:00',370,43,'SURG','SURG0014','H','N',1.00,8900,8900,'P',0,0,0.00,0.00,8900.00,8900,3,0,0,'',0,0,'','','','','',2526,'H','I',19,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 17:17:34','','0000-00-00 00:00:00',0),(1947,2526,0,0,527,'2025-10-13','17:16:00',370,43,'SURG','SURG0015','H','N',1.00,1400,1400,'P',0,0,0.00,0.00,1400.00,1400,3,0,0,'',0,0,'','','','','',2526,'H','I',19,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-13 17:17:34','','0000-00-00 00:00:00',0),(1948,2526,0,0,607,'2025-10-13','00:00:00',526,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',651,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 17:18:29','reception','2025-10-13 17:18:44',0),(1949,2526,0,0,608,'2025-10-13','00:00:00',527,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',652,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 17:18:42','reception','2025-10-13 17:19:19',0),(1950,2526,0,0,609,'2025-10-13','00:00:00',528,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',653,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 17:19:42','janvi','2025-10-13 17:21:08',0),(1951,2526,0,0,600,'2025-10-13','17:22:12',521,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',654,1,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 17:22:12','reception','2025-10-13 17:22:12',0),(1952,2526,0,0,600,'2025-10-13','17:22:12',521,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',654,2,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 17:22:12','reception','2025-10-13 17:22:12',0),(1953,2526,0,0,600,'2025-10-13','17:22:12',521,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',654,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 17:22:12','reception','2025-10-13 17:22:12',0),(1954,2526,0,0,610,'2025-10-13','00:00:00',529,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',655,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 17:25:51','reception','2025-10-13 17:26:24',0),(1955,2526,0,0,611,'2025-10-13','00:00:00',530,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',656,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 17:26:20','drashti','2025-10-13 17:27:03',0),(1956,2526,0,0,612,'2025-10-13','00:00:00',531,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',658,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 17:28:29','reception','2025-10-13 17:59:58',0),(1957,2526,0,0,603,'2025-10-13','17:30:12',523,0,'PKG','CASE','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',659,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 17:30:12','reception','2025-10-13 17:30:12',0),(1958,2526,0,0,614,'2025-10-13','00:00:00',532,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',660,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 17:42:25','reception','2025-10-13 17:42:56',0),(1959,2526,0,0,615,'2025-10-13','00:00:00',533,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',662,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 17:43:01','drashti','2025-10-13 17:44:44',0),(1960,2526,0,0,616,'2025-10-13','00:00:00',534,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',661,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 17:44:09','reception','2025-10-13 17:44:23',0),(1961,2526,0,0,617,'2025-10-13','17:47:36',303,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',663,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 17:47:36','janvi','2025-10-13 17:47:36',0),(1962,2526,0,0,608,'2025-10-13','17:49:28',527,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',664,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 17:49:28','reception','2025-10-13 17:49:28',0),(1963,2526,0,0,608,'2025-10-13','17:49:28',527,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',664,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 17:49:28','reception','2025-10-13 17:49:28',0),(1964,2526,0,0,608,'2025-10-13','17:49:28',527,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',664,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 17:49:28','reception','2025-10-13 17:49:28',0),(1965,2526,0,0,618,'2025-10-13','00:00:00',535,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',665,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 17:49:58','drashti','2025-10-13 17:50:52',0),(1966,2526,0,0,619,'2025-10-13','00:00:00',536,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',666,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 17:51:13','reception','2025-10-13 17:52:42',0),(1967,2526,0,0,620,'2025-10-13','00:00:00',537,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',667,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 17:53:33','drashti','2025-10-13 17:54:28',0),(1968,2526,0,0,621,'2025-10-13','00:00:00',538,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',668,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 17:55:13','drashti','2025-10-13 19:00:40',0),(1969,2526,0,0,612,'2025-10-13','18:00:57',531,0,'PKG','CASE','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',670,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 18:00:57','reception','2025-10-13 18:00:57',0),(1970,2526,0,0,622,'2025-10-13','00:00:00',539,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',671,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 18:03:30','reception','2025-10-13 18:03:43',0),(1971,2526,0,0,623,'2025-10-13','00:00:00',540,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',672,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 18:04:54','drashti','2025-10-13 18:05:27',0),(1972,2526,0,0,624,'2025-10-13','00:00:00',541,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',673,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 18:05:15','janvi','2025-10-13 18:06:19',0),(1973,2526,0,0,625,'2025-10-13','00:00:00',542,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',674,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 18:06:45','reception','2025-10-13 18:07:05',0),(1974,2526,0,0,627,'2025-10-13','00:00:00',543,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',675,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 18:07:42','drashti','2025-10-13 18:09:27',0),(1975,2526,0,0,628,'2025-10-13','00:00:00',544,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',676,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 18:09:10','janvi','2025-10-13 18:09:49',0),(1976,2526,0,0,629,'2025-10-13','00:00:00',545,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',677,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 18:09:34','manshi','2025-10-13 18:09:56',0),(1977,2526,0,0,630,'2025-10-13','00:00:00',546,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',678,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 18:10:39','drashti','2025-10-13 18:10:59',0),(1978,2526,0,0,631,'2025-10-13','00:00:00',547,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',679,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 18:10:52','reception','2025-10-13 18:51:16',0),(1979,2526,0,0,632,'2025-10-13','00:00:00',548,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',680,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 18:14:40','drashti','2025-10-13 18:14:59',0),(1980,2526,0,0,633,'2025-10-13','00:00:00',549,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',681,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 18:15:18','janvi','2025-10-13 18:15:57',0),(1981,2526,0,0,634,'2025-10-13','00:00:00',550,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',683,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 18:16:52','reception','2025-10-13 18:18:52',0),(1982,2526,0,0,580,'2025-10-13','18:17:00',502,0,'WPRC','WPRC0046','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,0.00,5000,3,0,0,'',0,0,'','','','','',2526,'H','O',682,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 18:17:00','janvi','2025-10-13 18:17:00',0),(1983,2526,0,0,635,'2025-10-13','00:00:00',551,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',684,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 18:18:43','drashti','2025-10-13 18:19:19',0),(1984,2526,0,0,636,'2025-10-13','00:00:00',552,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',685,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 18:19:08','janvi','2025-10-13 18:19:47',0),(1985,2526,0,0,637,'2025-10-13','00:00:00',553,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',686,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 18:21:13','janvi','2025-10-13 18:21:35',0),(1986,2526,0,0,639,'2025-10-13','00:00:00',554,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',688,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 18:22:31','drashti','2025-10-13 18:23:17',0),(1987,2526,0,0,638,'2025-10-13','18:23:07',70,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',687,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 18:23:07','manshi','2025-10-13 18:23:07',0),(1988,2526,0,0,640,'2025-10-13','18:23:56',134,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',689,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 18:23:56','reception','2025-10-13 18:23:56',0),(1989,2526,0,0,641,'2025-10-13','18:24:56',69,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',690,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 18:24:56','manshi','2025-10-13 18:24:56',0),(1990,2526,0,0,619,'2025-10-13','18:30:51',536,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',691,1,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 18:30:51','reception','2025-10-13 18:30:51',0),(1991,2526,0,0,619,'2025-10-13','18:30:51',536,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',691,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 18:30:51','reception','2025-10-13 18:30:51',0),(1992,2526,0,0,619,'2025-10-13','18:30:51',536,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',691,3,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 18:30:51','reception','2025-10-13 18:30:51',0),(1993,2526,0,0,642,'2025-10-13','18:32:41',114,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',692,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 18:32:41','janvi','2025-10-13 18:32:41',0),(1994,2526,0,0,626,'2025-10-13','18:37:01',247,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',693,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 18:37:01','janvi','2025-10-13 18:37:01',0),(1995,2526,0,0,643,'2025-10-13','18:39:24',137,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',694,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 18:39:24','manshi','2025-10-13 18:39:24',0),(1996,2526,0,0,644,'2025-10-13','00:00:00',555,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',695,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 18:41:27','drashti','2025-10-13 18:42:09',0),(1997,2526,0,0,645,'2025-10-13','18:40:00',0,46,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',39,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 18:42:07','riya','2025-10-15 18:11:15',0),(1998,2526,0,0,645,'2025-10-13','18:40:00',0,46,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',39,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 18:42:07','riya','2025-10-15 18:11:15',0),(1999,2526,0,0,645,'2025-10-13','18:40:00',0,46,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',39,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:12:07','riya','2025-10-15 18:11:15',0),(2000,2526,0,0,645,'2025-10-13','18:40:00',0,46,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',39,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:12:07','riya','2025-10-15 18:11:15',0),(2001,2526,0,0,645,'2025-10-13','18:40:00',0,46,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',39,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:12:07','riya','2025-10-15 18:11:15',0),(2002,2526,0,0,645,'2025-10-14','18:40:00',0,46,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','405','','','',2526,'H','I',39,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:12:07','vishal','2025-10-16 11:48:41',0),(2003,2526,0,0,645,'2025-10-14','18:40:00',0,46,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','405','','','',2526,'H','I',39,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:12:07','vishal','2025-10-16 11:21:52',0),(2004,2526,0,0,646,'2025-10-13','00:00:00',556,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',696,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 18:43:38','drashti','2025-10-13 18:44:20',0),(2005,2526,0,0,647,'2025-10-13','18:47:09',140,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',697,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 18:47:09','drashti','2025-10-13 18:47:09',0),(2006,2526,0,0,644,'2025-10-13','18:48:19',555,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,18,'',0,0,'','','','','',2526,'H','O',698,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',5,'janvi','2025-10-13 18:48:19','janvi','2025-10-13 18:48:19',0),(2007,2526,0,0,648,'2025-10-13','00:00:00',557,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',699,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 18:48:51','reception','2025-10-13 18:49:27',0),(2008,2526,0,0,649,'2025-10-13','18:49:37',118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',700,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 18:49:37','janvi','2025-10-13 18:49:37',0),(2009,2526,0,0,650,'2025-10-13','00:00:00',558,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',726,1,200,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 18:49:38','drashti','2025-10-13 20:14:33',0),(2010,2526,0,0,651,'2025-10-13','00:00:00',559,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',702,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 18:51:33','janvi','2025-10-13 18:52:14',0),(2011,2526,0,0,631,'2025-10-13','18:52:58',547,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',703,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 18:52:58','reception','2025-10-13 18:52:58',0),(2012,2526,0,0,652,'2025-10-13','00:00:00',560,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',704,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 18:53:10','janvi','2025-10-13 18:53:50',0),(2013,2526,0,0,653,'2025-10-13','00:00:00',561,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',705,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 18:53:44','drashti','2025-10-13 18:54:35',0),(2014,2526,0,0,654,'2025-10-13','00:00:00',562,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',706,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 18:54:07','reception','2025-10-13 18:54:55',0),(2015,2526,0,0,656,'2025-10-13','00:00:00',563,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',707,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 18:56:34','janvi','2025-10-13 18:57:14',0),(2016,2526,0,0,657,'2025-10-13','00:00:00',564,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',708,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 18:58:47','reception','2025-10-13 18:59:21',0),(2017,2526,0,0,658,'2025-10-13','00:00:00',565,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',711,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 19:06:15','reception','2025-10-13 19:08:01',0),(2018,2526,0,0,636,'2025-10-13','19:07:17',552,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',710,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 19:07:17','janvi','2025-10-13 19:07:17',0),(2019,2526,0,0,489,'2025-10-13','17:00:00',0,38,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:38:29','riya','2025-10-13 19:08:39',0),(2020,2526,0,0,489,'2025-10-13','17:00:00',0,38,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:38:29','riya','2025-10-13 19:08:39',0),(2021,2526,0,0,489,'2025-10-13','17:00:00',0,38,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:38:29','riya','2025-10-13 19:08:39',0),(2022,2526,0,0,489,'2025-10-13','17:00:00',0,38,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:38:29','riya','2025-10-13 19:08:39',0),(2023,2526,0,0,489,'2025-10-13','17:00:00',0,38,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:38:29','riya','2025-10-13 19:08:39',0),(2024,2526,0,0,659,'2025-10-13','00:00:00',566,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',712,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 19:10:51','drashti','2025-10-13 19:11:31',0),(2025,2526,0,0,660,'2025-10-13','00:00:00',567,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',713,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 19:18:17','manshi','2025-10-13 19:18:34',0),(2026,2526,0,0,661,'2025-10-13','00:00:00',568,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',714,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 19:18:44','reception','2025-10-13 19:19:17',0),(2027,2526,0,0,662,'2025-10-13','00:00:00',569,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',715,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 19:21:07','janvi','2025-10-13 19:21:25',0),(2028,2526,0,0,246,'2025-10-13','18:00:00',0,18,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:52:08','riya','2025-10-14 10:44:54',0),(2029,2526,0,0,246,'2025-10-13','18:00:00',0,18,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:52:08','riya','2025-10-14 10:44:54',0),(2030,2526,0,0,246,'2025-10-13','18:00:00',0,18,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:52:08','riya','2025-10-14 10:44:54',0),(2031,2526,0,0,246,'2025-10-13','18:00:00',0,18,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:52:08','riya','2025-10-14 10:44:54',0),(2032,2526,0,0,246,'2025-10-13','18:00:00',0,18,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:52:08','riya','2025-10-14 10:44:54',0),(2033,2526,0,0,406,'2025-10-13','19:20:00',0,22,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:52:08','riya','2025-10-14 12:54:21',0),(2034,2526,0,0,406,'2025-10-13','19:20:00',0,22,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:52:08','riya','2025-10-14 12:54:21',0),(2035,2526,0,0,406,'2025-10-13','19:20:00',0,22,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:52:08','riya','2025-10-14 12:54:21',0),(2036,2526,0,0,406,'2025-10-13','19:20:00',0,22,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:52:08','riya','2025-10-14 12:54:21',0),(2037,2526,0,0,406,'2025-10-13','19:20:00',0,22,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','406','','','',2526,'H','I',28,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:52:08','riya','2025-10-14 12:54:21',0),(2038,2526,0,0,505,'2025-10-13','19:15:00',0,39,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:52:09','riya','2025-10-13 22:46:27',0),(2039,2526,0,0,505,'2025-10-13','19:15:00',0,39,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:52:09','riya','2025-10-13 22:46:27',0),(2040,2526,0,0,505,'2025-10-13','19:15:00',0,39,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:52:09','riya','2025-10-13 22:46:27',0),(2041,2526,0,0,505,'2025-10-13','19:15:00',0,39,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',24,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:52:09','riya','2025-10-13 22:46:27',0),(2042,2526,0,0,505,'2025-10-13','19:15:00',0,39,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',24,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 07:52:09','riya','2025-10-13 22:46:27',0),(2043,2526,0,0,663,'2025-10-13','00:00:00',570,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',716,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 19:23:27','janvi','2025-10-13 19:24:06',0),(2044,2526,0,0,664,'2025-10-13','00:00:00',571,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',717,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 19:25:45','drashti','2025-10-13 19:26:29',0),(2045,2526,0,0,665,'2025-10-13','00:00:00',572,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',718,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 19:26:24','manshi','2025-10-13 19:27:17',0),(2046,2526,0,0,648,'2025-10-13','19:29:11',557,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',719,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 19:29:11','reception','2025-10-13 19:29:11',0),(2047,2526,0,0,648,'2025-10-13','19:29:11',557,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',719,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-13 19:29:11','reception','2025-10-13 19:29:11',0),(2048,2526,0,0,666,'2025-10-13','00:00:00',573,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',720,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 19:29:28','manshi','2025-10-13 19:29:51',0),(2049,2526,0,0,667,'2025-10-13','00:00:00',574,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',723,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 19:32:04','drashti','2025-10-13 19:45:11',0),(2050,2526,0,0,668,'2025-09-25','19:29:00',0,47,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',25,6,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 19:32:07','riya','2025-10-13 20:45:18',0),(2051,2526,0,0,668,'2025-09-25','19:29:00',0,47,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',25,7,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 19:32:07','riya','2025-10-13 20:45:18',0),(2052,2526,0,0,668,'2025-10-13','19:29:00',0,47,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,96,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 08:02:07','riya','2025-10-13 20:45:18',0),(2053,2526,0,0,668,'2025-10-13','19:29:00',0,47,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,95,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 08:02:08','riya','2025-10-13 20:45:18',0),(2054,2526,0,0,668,'2025-10-13','19:29:00',0,47,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,94,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 08:02:08','riya','2025-10-13 20:45:18',0),(2055,2526,0,0,668,'2025-10-13','19:29:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,93,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 08:02:08','riya','2025-10-13 20:45:18',0),(2056,2526,0,0,668,'2025-10-13','19:29:00',0,47,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,92,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 08:02:08','riya','2025-10-13 20:45:18',0),(2057,2526,0,0,669,'2025-10-13','00:00:00',575,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',721,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 19:32:31','janvi','2025-10-13 19:36:19',0),(2058,2526,0,0,655,'2025-10-13','19:41:24',221,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',722,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-13 19:41:24','janvi','2025-10-13 19:41:24',0),(2059,2526,0,0,671,'2025-10-13','00:00:00',576,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 19:47:43','drashti','2025-10-13 08:17:43',0),(2060,2526,0,0,671,'2025-10-13','19:49:36',576,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',724,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-13 19:49:36','drashti','2025-10-13 19:49:36',0),(2061,2526,0,0,506,'2025-10-13','19:55:00',0,40,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','','','','',2526,'H','I',20,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 19:58:57','','0000-00-00 00:00:00',0),(2062,2526,0,0,506,'2025-10-13','19:57:00',0,40,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','','','','',2526,'H','I',20,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 19:58:57','','0000-00-00 00:00:00',0),(2063,2526,0,0,666,'2025-10-13','20:07:55',573,0,'WPRC','WPRC0046','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',725,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-13 20:07:55','manshi','2025-10-13 20:07:55',0),(2064,2526,0,0,668,'2025-09-25','12:15:00',0,47,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','405','','','',2526,'H','I',25,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2065,2526,0,0,668,'2025-09-26','12:15:00',0,47,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,9,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2066,2526,0,0,668,'2025-09-27','12:15:00',0,47,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,14,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2067,2526,0,0,668,'2025-09-28','12:15:00',0,47,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,19,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2068,2526,0,0,668,'2025-09-29','12:15:00',0,47,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,23,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2069,2526,0,0,668,'2025-09-30','12:15:00',0,47,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,28,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2070,2526,0,0,668,'2025-10-01','12:15:00',0,47,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,34,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2071,2526,0,0,668,'2025-10-02','12:15:00',0,47,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,37,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2072,2526,0,0,668,'2025-10-03','12:15:00',0,47,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,41,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2073,2526,0,0,668,'2025-10-04','12:15:00',0,47,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,48,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2074,2526,0,0,668,'2025-10-05','12:15:00',0,47,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,52,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2075,2526,0,0,668,'2025-10-06','12:15:00',0,47,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,60,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2076,2526,0,0,668,'2025-10-07','12:15:00',0,47,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,63,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2077,2526,0,0,668,'2025-10-08','12:15:00',0,47,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,69,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2078,2526,0,0,668,'2025-10-09','12:15:00',0,47,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,72,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2079,2526,0,0,668,'2025-10-10','12:15:00',0,47,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,77,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2080,2526,0,0,668,'2025-10-11','12:15:00',0,47,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,84,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2081,2526,0,0,668,'2025-10-12','12:15:00',0,47,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,90,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2082,2526,0,0,668,'2025-09-25','12:15:00',0,47,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','405','','','',2526,'H','I',25,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2083,2526,0,0,668,'2025-09-26','12:15:00',0,47,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,10,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2084,2526,0,0,668,'2025-09-27','12:15:00',0,47,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,13,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2085,2526,0,0,668,'2025-09-28','12:15:00',0,47,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,17,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2086,2526,0,0,668,'2025-09-29','12:15:00',0,47,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,24,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2087,2526,0,0,668,'2025-09-30','12:15:00',0,47,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,29,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2088,2526,0,0,668,'2025-10-01','12:15:00',0,47,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,35,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2089,2526,0,0,668,'2025-10-02','12:15:00',0,47,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,39,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2090,2526,0,0,668,'2025-10-03','12:15:00',0,47,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,43,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2091,2526,0,0,668,'2025-10-04','12:15:00',0,47,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,46,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2092,2526,0,0,668,'2025-10-05','12:15:00',0,47,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,53,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2093,2526,0,0,668,'2025-10-06','12:15:00',0,47,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,58,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2094,2526,0,0,668,'2025-10-07','12:15:00',0,47,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,64,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2095,2526,0,0,668,'2025-10-08','12:15:00',0,47,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,70,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2096,2526,0,0,668,'2025-10-09','12:15:00',0,47,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,75,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2097,2526,0,0,668,'2025-10-10','12:15:00',0,47,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,80,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2098,2526,0,0,668,'2025-10-11','12:15:00',0,47,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,85,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2099,2526,0,0,668,'2025-10-12','12:15:00',0,47,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,89,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2100,2526,0,0,668,'2025-09-25','12:15:00',0,47,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','405','','','',2526,'H','I',25,1,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2101,2526,0,0,668,'2025-09-26','12:15:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2102,2526,0,0,668,'2025-09-27','12:15:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,12,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2103,2526,0,0,668,'2025-09-28','12:15:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,16,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2104,2526,0,0,668,'2025-09-29','12:15:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,22,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2105,2526,0,0,668,'2025-09-30','12:15:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,26,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2106,2526,0,0,668,'2025-10-01','12:15:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,32,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2107,2526,0,0,668,'2025-10-02','12:15:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,36,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2108,2526,0,0,668,'2025-10-03','12:15:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,45,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2109,2526,0,0,668,'2025-10-04','12:15:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,50,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2110,2526,0,0,668,'2025-10-05','12:15:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,51,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2111,2526,0,0,668,'2025-10-06','12:15:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,57,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2112,2526,0,0,668,'2025-10-07','12:15:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,61,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2113,2526,0,0,668,'2025-10-08','12:15:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,68,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2114,2526,0,0,668,'2025-10-09','12:15:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,71,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2115,2526,0,0,668,'2025-10-10','12:15:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,76,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2116,2526,0,0,668,'2025-10-11','12:15:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,82,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2117,2526,0,0,668,'2025-10-12','12:15:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,88,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2118,2526,0,0,668,'2025-09-25','12:15:00',0,47,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','405','','','',2526,'H','I',25,2,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2119,2526,0,0,668,'2025-09-26','12:15:00',0,47,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2120,2526,0,0,668,'2025-09-27','12:15:00',0,47,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,11,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2121,2526,0,0,668,'2025-09-28','12:15:00',0,47,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,18,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2122,2526,0,0,668,'2025-09-29','12:15:00',0,47,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,21,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2123,2526,0,0,668,'2025-09-30','12:15:00',0,47,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,27,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2124,2526,0,0,668,'2025-10-01','12:15:00',0,47,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,33,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2125,2526,0,0,668,'2025-10-02','12:15:00',0,47,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,38,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2126,2526,0,0,668,'2025-10-03','12:15:00',0,47,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,44,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2127,2526,0,0,668,'2025-10-04','12:15:00',0,47,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,49,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2128,2526,0,0,668,'2025-10-05','12:15:00',0,47,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,54,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2129,2526,0,0,668,'2025-10-06','12:15:00',0,47,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,59,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2130,2526,0,0,668,'2025-10-07','12:15:00',0,47,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,62,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2131,2526,0,0,668,'2025-10-08','12:15:00',0,47,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,67,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2132,2526,0,0,668,'2025-10-09','12:15:00',0,47,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,73,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2133,2526,0,0,668,'2025-10-10','12:15:00',0,47,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,79,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2134,2526,0,0,668,'2025-10-11','12:15:00',0,47,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,83,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2135,2526,0,0,668,'2025-10-12','12:15:00',0,47,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,87,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2136,2526,0,0,668,'2025-09-25','12:15:00',0,47,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','405','','','',2526,'H','I',25,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2137,2526,0,0,668,'2025-09-26','12:15:00',0,47,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,8,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2138,2526,0,0,668,'2025-09-27','12:15:00',0,47,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,15,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2139,2526,0,0,668,'2025-09-28','12:15:00',0,47,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,20,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2140,2526,0,0,668,'2025-09-29','12:15:00',0,47,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,25,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2141,2526,0,0,668,'2025-09-30','12:15:00',0,47,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,30,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2142,2526,0,0,668,'2025-10-01','12:15:00',0,47,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,31,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2143,2526,0,0,668,'2025-10-02','12:15:00',0,47,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,40,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2144,2526,0,0,668,'2025-10-03','12:15:00',0,47,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,42,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2145,2526,0,0,668,'2025-10-04','12:15:00',0,47,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,47,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2146,2526,0,0,668,'2025-10-05','12:15:00',0,47,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,55,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2147,2526,0,0,668,'2025-10-06','12:15:00',0,47,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,56,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2148,2526,0,0,668,'2025-10-07','12:15:00',0,47,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,65,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2149,2526,0,0,668,'2025-10-08','12:15:00',0,47,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,66,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2150,2526,0,0,668,'2025-10-09','12:15:00',0,47,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,74,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2151,2526,0,0,668,'2025-10-10','12:15:00',0,47,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,78,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2152,2526,0,0,668,'2025-10-11','12:15:00',0,47,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,81,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2153,2526,0,0,668,'2025-10-12','12:15:00',0,47,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,86,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 09:05:28','riya','2025-10-13 20:45:18',0),(2154,2526,0,0,668,'2025-09-26','20:40:00',0,47,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',25,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 20:45:18','','0000-00-00 00:00:00',0),(2155,2526,0,0,668,'2025-09-25','20:41:00',0,47,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',25,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 20:45:18','','0000-00-00 00:00:00',0),(2156,2526,0,0,668,'2025-09-25','20:42:00',0,47,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',25,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 20:45:18','','0000-00-00 00:00:00',0),(2157,2526,0,0,668,'2025-09-25','20:43:00',0,47,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',25,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 20:45:18','','0000-00-00 00:00:00',0),(2158,2526,0,0,672,'2025-10-09','09:30:00',0,48,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',21,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:36:04','riya','2025-10-13 21:46:12',0),(2159,2526,0,0,672,'2025-10-09','09:30:00',0,48,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',21,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:36:04','riya','2025-10-13 21:46:12',0),(2160,2526,0,0,672,'2025-10-09','09:30:00',0,48,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','309','','','',2526,'H','I',21,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2161,2526,0,0,672,'2025-10-10','09:30:00',0,48,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2162,2526,0,0,672,'2025-10-11','09:30:00',0,48,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2163,2526,0,0,672,'2025-10-12','09:30:00',0,48,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2164,2526,0,0,672,'2025-10-13','09:30:00',0,48,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2165,2526,0,0,672,'2025-10-09','09:30:00',0,48,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','309','','','',2526,'H','I',21,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2166,2526,0,0,672,'2025-10-10','09:30:00',0,48,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2167,2526,0,0,672,'2025-10-11','09:30:00',0,48,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2168,2526,0,0,672,'2025-10-12','09:30:00',0,48,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2169,2526,0,0,672,'2025-10-13','09:30:00',0,48,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2170,2526,0,0,672,'2025-10-09','09:30:00',0,48,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','309','','','',2526,'H','I',21,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2171,2526,0,0,672,'2025-10-10','09:30:00',0,48,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2172,2526,0,0,672,'2025-10-11','09:30:00',0,48,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2173,2526,0,0,672,'2025-10-12','09:30:00',0,48,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2174,2526,0,0,672,'2025-10-13','09:30:00',0,48,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2175,2526,0,0,672,'2025-10-09','09:30:00',0,48,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','309','','','',2526,'H','I',21,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2176,2526,0,0,672,'2025-10-10','09:30:00',0,48,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2177,2526,0,0,672,'2025-10-11','09:30:00',0,48,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2178,2526,0,0,672,'2025-10-12','09:30:00',0,48,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2179,2526,0,0,672,'2025-10-13','09:30:00',0,48,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2180,2526,0,0,672,'2025-10-09','09:30:00',0,48,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','309','','','',2526,'H','I',21,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2181,2526,0,0,672,'2025-10-10','09:30:00',0,48,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','309','','','',2526,'H','I',21,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2182,2526,0,0,672,'2025-10-11','09:30:00',0,48,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2183,2526,0,0,672,'2025-10-12','09:30:00',0,48,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2184,2526,0,0,672,'2025-10-13','09:30:00',0,48,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','309','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:06:04','riya','2025-10-13 21:46:12',0),(2185,2526,0,0,672,'2025-10-09','21:37:00',0,48,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',21,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:46:12','','0000-00-00 00:00:00',0),(2186,2526,0,0,672,'2025-10-09','21:38:00',0,48,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',21,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:46:12','','0000-00-00 00:00:00',0),(2187,2526,0,0,672,'2025-10-09','21:38:00',0,48,'SURG','SURG0014','H','N',1.00,15000,15000,'P',0,0,0.00,0.00,15000.00,15000,3,0,0,'',0,0,'','','','','',2526,'H','I',21,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:46:12','','0000-00-00 00:00:00',0),(2188,2526,0,0,672,'2025-10-09','21:39:00',0,48,'SURG','SURG0014','H','N',1.00,40000,40000,'P',0,0,0.00,0.00,40000.00,40000,3,0,0,'',0,0,'','','','','',2526,'H','I',21,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:46:12','','0000-00-00 00:00:00',0),(2189,2526,0,0,672,'2025-10-09','21:40:00',0,48,'SURG','SURG0015','H','N',1.00,10000,10000,'P',0,0,0.00,0.00,10000.00,10000,3,0,0,'',0,0,'','','','','',2526,'H','I',21,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:46:12','','0000-00-00 00:00:00',0),(2190,2526,0,0,672,'2025-10-10','21:41:00',0,48,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',21,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:46:12','','0000-00-00 00:00:00',0),(2191,2526,0,0,672,'2025-10-10','21:41:00',0,48,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',21,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:46:12','','0000-00-00 00:00:00',0),(2192,2526,0,0,672,'2025-10-09','21:43:00',0,48,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',21,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:46:12','','0000-00-00 00:00:00',0),(2193,2526,0,0,673,'2025-10-06','10:00:00',0,49,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',22,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:58:40','riya','2025-10-13 22:06:05',0),(2194,2526,0,0,673,'2025-10-06','10:00:00',0,49,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',22,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:58:40','riya','2025-10-13 22:06:05',0),(2195,2526,0,0,673,'2025-10-13','10:00:00',0,49,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:28:41','riya','2025-10-13 22:06:05',0),(2196,2526,0,0,673,'2025-10-13','10:00:00',0,49,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:28:41','riya','2025-10-13 22:06:05',0),(2197,2526,0,0,673,'2025-10-13','10:00:00',0,49,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:28:41','riya','2025-10-13 22:06:05',0),(2198,2526,0,0,673,'2025-10-13','10:00:00',0,49,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:28:41','riya','2025-10-13 22:06:05',0),(2199,2526,0,0,673,'2025-10-13','10:00:00',0,49,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:28:41','riya','2025-10-13 22:06:05',0),(2200,2526,0,0,673,'2025-10-06','10:00:00',0,49,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',22,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2201,2526,0,0,673,'2025-10-07','10:00:00',0,49,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2202,2526,0,0,673,'2025-10-08','10:00:00',0,49,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2203,2526,0,0,673,'2025-10-09','10:00:00',0,49,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2204,2526,0,0,673,'2025-10-10','10:00:00',0,49,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2205,2526,0,0,673,'2025-10-11','10:00:00',0,49,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2206,2526,0,0,673,'2025-10-12','10:00:00',0,49,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2207,2526,0,0,673,'2025-10-06','10:00:00',0,49,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',22,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2208,2526,0,0,673,'2025-10-07','10:00:00',0,49,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2209,2526,0,0,673,'2025-10-08','10:00:00',0,49,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2210,2526,0,0,673,'2025-10-09','10:00:00',0,49,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2211,2526,0,0,673,'2025-10-10','10:00:00',0,49,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2212,2526,0,0,673,'2025-10-11','10:00:00',0,49,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2213,2526,0,0,673,'2025-10-12','10:00:00',0,49,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2214,2526,0,0,673,'2025-10-06','10:00:00',0,49,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',22,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2215,2526,0,0,673,'2025-10-07','10:00:00',0,49,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2216,2526,0,0,673,'2025-10-08','10:00:00',0,49,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2217,2526,0,0,673,'2025-10-09','10:00:00',0,49,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2218,2526,0,0,673,'2025-10-10','10:00:00',0,49,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2219,2526,0,0,673,'2025-10-11','10:00:00',0,49,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2220,2526,0,0,673,'2025-10-12','10:00:00',0,49,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2221,2526,0,0,673,'2025-10-06','10:00:00',0,49,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',22,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2222,2526,0,0,673,'2025-10-07','10:00:00',0,49,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',22,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2223,2526,0,0,673,'2025-10-08','10:00:00',0,49,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2224,2526,0,0,673,'2025-10-09','10:00:00',0,49,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2225,2526,0,0,673,'2025-10-10','10:00:00',0,49,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2226,2526,0,0,673,'2025-10-11','10:00:00',0,49,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2227,2526,0,0,673,'2025-10-12','10:00:00',0,49,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2228,2526,0,0,673,'2025-10-06','10:00:00',0,49,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',22,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2229,2526,0,0,673,'2025-10-07','10:00:00',0,49,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2230,2526,0,0,673,'2025-10-08','10:00:00',0,49,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2231,2526,0,0,673,'2025-10-09','10:00:00',0,49,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2232,2526,0,0,673,'2025-10-10','10:00:00',0,49,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2233,2526,0,0,673,'2025-10-11','10:00:00',0,49,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2234,2526,0,0,673,'2025-10-12','10:00:00',0,49,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:30:48','riya','2025-10-13 22:06:05',0),(2235,2526,0,0,673,'2025-10-06','22:02:00',0,49,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',22,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:06:05','','0000-00-00 00:00:00',0),(2236,2526,0,0,673,'2025-10-06','22:03:00',0,49,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',22,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:06:05','','0000-00-00 00:00:00',0),(2237,2526,0,0,673,'2025-10-07','22:03:00',0,49,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',22,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:06:05','','0000-00-00 00:00:00',0),(2238,2526,0,0,673,'2025-10-06','22:04:00',0,49,'SURG','SURG0014','H','N',1.00,12500,12500,'P',0,0,0.00,0.00,12500.00,12500,3,0,0,'',0,0,'','','','','',2526,'H','I',22,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:06:05','','0000-00-00 00:00:00',0),(2239,2526,0,0,673,'2025-10-06','22:05:00',0,49,'SURG','SURG0015','H','N',1.00,4200,4200,'P',0,0,0.00,0.00,4200.00,4200,3,0,0,'',0,0,'','','','','',2526,'H','I',22,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:06:05','','0000-00-00 00:00:00',0),(2240,2526,0,0,674,'2025-10-13','22:24:00',0,50,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',275,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:26:30','riya','2025-12-15 17:45:47',0),(2241,2526,0,0,674,'2025-10-13','22:24:00',0,50,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',275,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:26:30','riya','2025-12-15 17:45:47',0),(2242,2526,0,0,674,'2025-10-13','22:24:00',0,50,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',275,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:56:30','riya','2025-12-15 17:45:47',0),(2243,2526,0,0,674,'2025-10-13','22:24:00',0,50,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',275,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:56:30','riya','2025-12-15 17:45:47',0),(2244,2526,0,0,674,'2025-10-13','22:24:00',0,50,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',275,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:56:30','riya','2025-12-15 17:45:47',0),(2245,2526,0,0,674,'2025-10-13','22:24:00',0,50,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:56:30','vishal','2025-10-29 22:46:27',0),(2246,2526,0,0,674,'2025-10-13','22:24:00',0,50,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 10:56:30','vishal','2025-10-29 22:46:27',0),(2247,2526,0,0,675,'2025-10-13','22:34:00',0,51,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',32,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:36:35','vishal','2025-10-14 21:08:05',0),(2248,2526,0,0,675,'2025-10-13','22:34:00',0,51,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',32,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:36:35','vishal','2025-10-14 21:08:05',0),(2249,2526,0,0,675,'2025-10-13','22:34:00',0,51,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',32,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 11:06:35','vishal','2025-10-14 21:08:05',0),(2250,2526,0,0,675,'2025-10-13','22:34:00',0,51,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',32,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 11:06:36','vishal','2025-10-14 21:08:05',0),(2251,2526,0,0,675,'2025-10-13','22:34:00',0,51,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',32,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 11:06:36','vishal','2025-10-14 21:08:05',0),(2252,2526,0,0,675,'2025-10-14','22:34:00',0,51,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','408','','','',2526,'H','I',32,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 11:06:36','vishal','2025-10-14 21:08:26',0),(2253,2526,0,0,675,'2025-10-14','22:34:00',0,51,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','408','','','',2526,'H','I',32,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 11:06:36','vishal','2025-10-14 21:08:26',0),(2254,2526,0,0,505,'2025-10-13','22:44:00',0,39,'XRY','XRY0045','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',24,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:46:27','','0000-00-00 00:00:00',0),(2255,2526,0,0,477,'2025-10-12','22:50:00',21,35,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',23,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:52:33','','0000-00-00 00:00:00',0),(2256,2526,0,0,477,'2025-10-13','22:51:00',21,35,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',23,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:52:33','','0000-00-00 00:00:00',0),(2257,2526,0,0,477,'2025-10-12','22:52:00',21,35,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',23,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:52:33','','0000-00-00 00:00:00',0),(2258,2526,0,0,676,'2025-10-14','08:50:03',575,0,'WPRC','WPRC0046','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,0.00,5000,3,0,0,'',0,0,'','','','','',2526,'H','O',727,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-14 08:50:03','shweta','2025-10-14 08:50:03',0),(2259,2526,0,0,676,'2025-10-14','08:50:03',575,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',727,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-14 08:50:03','shweta','2025-10-14 08:50:03',0),(2260,2526,0,0,677,'2025-10-14','00:00:00',577,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-14 08:51:13','shweta','2025-10-13 21:21:13',0),(2261,2526,0,0,677,'2025-10-14','08:52:23',577,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',728,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'shweta','2025-10-14 08:52:23','shweta','2025-10-14 08:52:23',0),(2262,2526,0,0,677,'2025-10-14','08:52:23',577,0,'OPWD','OPWD0012','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',728,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'shweta','2025-10-14 08:52:23','shweta','2025-10-14 08:52:23',0),(2263,2526,0,0,677,'2025-10-14','08:52:23',577,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,19,'',0,0,'','','','','',2526,'H','O',728,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'shweta','2025-10-14 08:52:23','shweta','2025-10-14 08:52:23',0),(2264,2526,0,0,677,'2025-10-14','08:52:23',577,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',728,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'shweta','2025-10-14 08:52:23','shweta','2025-10-14 08:52:23',0),(2265,2526,0,0,678,'2025-10-14','00:00:00',578,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-14 08:53:37','shweta','2025-10-13 21:23:37',0),(2266,2526,0,0,678,'2025-10-14','08:54:48',578,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',729,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'shweta','2025-10-14 08:54:48','shweta','2025-10-14 08:54:48',0),(2267,2526,0,0,678,'2025-10-14','08:54:48',578,0,'OPWD','OPWD0012','H','N',4.00,100,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',729,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'shweta','2025-10-14 08:54:48','shweta','2025-10-14 08:54:48',0),(2268,2526,0,0,678,'2025-10-14','08:54:48',578,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,20,'',0,0,'','','','','',2526,'H','O',729,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'shweta','2025-10-14 08:54:48','shweta','2025-10-14 08:54:48',0),(2269,2526,0,0,678,'2025-10-14','08:54:48',578,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,5,0,0,'',0,0,'','','','','',2526,'H','O',729,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'shweta','2025-10-14 08:54:48','shweta','2025-10-14 08:54:48',0),(2270,2526,0,0,679,'2025-10-14','00:00:00',579,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-14 08:55:40','shweta','2025-10-13 21:25:40',0),(2271,2526,0,0,679,'2025-10-14','08:56:17',579,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',730,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-14 08:56:17','shweta','2025-10-14 08:56:17',0),(2272,2526,0,0,679,'2025-10-14','08:56:17',579,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',730,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-14 08:56:17','shweta','2025-10-14 08:56:17',0),(2273,2526,0,0,680,'2025-10-14','00:00:00',580,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-14 08:57:30','shweta','2025-10-13 21:27:30',0),(2274,2526,0,0,680,'2025-10-14','08:58:45',580,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',731,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-14 08:58:45','shweta','2025-10-14 08:58:45',0),(2275,2526,0,0,680,'2025-10-14','08:58:45',580,0,'OPWD','OPWD0013','H','N',3.00,150,450,'P',0,0,0.00,0.00,0.00,450,6,0,0,'',0,0,'','','','','',2526,'H','O',731,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-14 08:58:45','shweta','2025-10-14 08:58:45',0),(2276,2526,0,0,680,'2025-10-14','08:58:45',580,0,'XRY','XRY0045','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','O',731,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-14 08:58:45','shweta','2025-10-14 08:58:45',0),(2277,2526,0,0,681,'2025-10-14','00:00:00',581,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-14 08:59:36','shweta','2025-10-13 21:29:36',0),(2278,2526,0,0,681,'2025-10-14','09:00:09',581,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',732,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'shweta','2025-10-14 09:00:09','shweta','2025-10-14 09:00:09',0),(2279,2526,0,0,681,'2025-10-14','09:00:09',581,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,21,'',0,0,'','','','','',2526,'H','O',732,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'shweta','2025-10-14 09:00:09','shweta','2025-10-14 09:00:09',0),(2280,2526,0,0,681,'2025-10-14','09:00:09',581,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',732,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'shweta','2025-10-14 09:00:09','shweta','2025-10-14 09:00:09',0),(2281,2526,0,0,682,'2025-10-14','00:00:00',582,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-14 09:00:57','shweta','2025-10-13 21:30:57',0),(2282,2526,0,0,682,'2025-10-14','09:01:58',582,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',733,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-14 09:01:58','shweta','2025-10-14 09:01:58',0),(2283,2526,0,0,682,'2025-10-14','09:01:58',582,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',733,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-14 09:01:58','shweta','2025-10-14 09:01:58',0),(2284,2526,0,0,682,'2025-10-14','09:01:58',582,0,'WPRC','WPRC0049','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',733,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-14 09:01:58','shweta','2025-10-14 09:01:58',0),(2285,2526,0,0,683,'2025-10-14','09:03:00',431,52,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',31,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 09:05:16','riya','2025-10-14 19:03:53',0),(2286,2526,0,0,683,'2025-10-14','09:03:00',431,52,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',31,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 09:05:16','riya','2025-10-14 19:03:53',0),(2287,2526,0,0,683,'2025-10-14','09:03:00',431,52,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:35:16','riya','2025-10-14 19:03:53',0),(2288,2526,0,0,683,'2025-10-14','09:03:00',431,52,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:35:16','riya','2025-10-14 19:03:53',0),(2289,2526,0,0,683,'2025-10-14','09:03:00',431,52,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:35:16','riya','2025-10-14 19:03:53',0),(2290,2526,0,0,683,'2025-10-14','09:03:00',431,52,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',2526,'H','I',31,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:35:16','riya','2025-10-14 19:03:53',0),(2291,2526,0,0,683,'2025-10-14','09:03:00',431,52,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',2526,'H','I',31,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:35:16','riya','2025-10-14 19:03:53',0),(2292,2526,0,0,684,'2025-09-30','09:00:00',0,53,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',26,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 09:20:50','riya','2025-10-14 09:44:01',0),(2293,2526,0,0,684,'2025-09-30','09:00:00',0,53,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',26,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 09:20:50','riya','2025-10-14 09:44:01',0),(2294,2526,0,0,684,'2025-10-14','09:00:00',0,53,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:50:50','riya','2025-10-14 09:44:01',0),(2295,2526,0,0,684,'2025-10-14','09:00:00',0,53,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:50:50','riya','2025-10-14 09:44:01',0),(2296,2526,0,0,684,'2025-10-14','09:00:00',0,53,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:50:50','riya','2025-10-14 09:44:01',0),(2297,2526,0,0,684,'2025-09-30','09:00:00',0,53,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',26,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:50:50','riya','2025-10-14 09:44:01',0),(2298,2526,0,0,684,'2025-10-14','09:00:00',0,53,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-13 21:50:50','riya','2025-10-14 09:44:01',0),(2299,2526,0,0,685,'2025-10-14','00:00:00',583,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',734,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-14 09:32:19','shweta','2025-10-14 09:32:56',0),(2300,2526,0,0,684,'2025-09-30','09:42:00',0,53,'OETR','OETR0001','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',26,4,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 09:44:01','','0000-00-00 00:00:00',0),(2301,2526,0,0,684,'2025-09-30','09:43:00',0,53,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',26,5,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 09:44:01','','0000-00-00 00:00:00',0),(2302,2526,0,0,686,'2025-10-14','00:00:00',584,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',735,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 09:45:57','reception','2025-10-14 09:46:29',0),(2303,2526,0,0,687,'2025-10-14','09:30:00',482,54,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',235,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 09:57:04','vishal','2025-10-29 23:06:36',0),(2304,2526,0,0,687,'2025-10-14','09:30:00',482,54,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',235,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 09:57:04','vishal','2025-10-29 23:06:36',0),(2305,2526,0,0,687,'2025-10-14','09:30:00',482,54,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','306','','','',2526,'H','I',235,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:27:04','vishal','2025-10-29 23:06:36',0),(2306,2526,0,0,687,'2025-10-14','09:30:00',482,54,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','306','','','',2526,'H','I',235,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:27:04','vishal','2025-10-29 23:06:36',0),(2307,2526,0,0,687,'2025-10-14','09:30:00',482,54,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','306','','','',2526,'H','I',235,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:27:04','vishal','2025-10-29 23:06:36',0),(2308,2526,0,0,687,'2025-10-14','09:30:00',482,54,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','306','','','',2526,'H','I',235,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:27:04','vishal','2025-10-29 23:06:36',0),(2309,2526,0,0,687,'2025-10-14','09:30:00',482,54,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','306','','','',2526,'H','I',235,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:27:04','vishal','2025-10-29 23:06:36',0),(2310,2526,0,0,688,'2025-10-14','00:00:00',585,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',736,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 10:06:29','reception','2025-10-14 10:06:48',0),(2311,2526,0,0,689,'2025-10-14','00:00:00',586,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',737,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 10:09:47','reception','2025-10-14 10:16:28',0),(2312,2526,0,0,690,'2025-10-14','10:00:00',0,55,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',38,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 10:13:28','vishal','2025-10-15 12:38:09',0),(2313,2526,0,0,690,'2025-10-14','10:00:00',0,55,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',38,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 10:13:28','vishal','2025-10-15 12:38:09',0),(2314,2526,0,0,690,'2025-10-14','10:00:00',0,55,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',38,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:43:28','vishal','2025-10-15 12:38:09',0),(2315,2526,0,0,690,'2025-10-14','10:00:00',0,55,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',38,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:43:28','vishal','2025-10-15 12:38:09',0),(2316,2526,0,0,690,'2025-10-14','10:00:00',0,55,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',38,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:43:28','vishal','2025-10-15 12:38:09',0),(2317,2526,0,0,690,'2025-10-14','10:00:00',0,55,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',2526,'H','I',38,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:43:28','vishal','2025-10-15 12:38:09',0),(2318,2526,0,0,690,'2025-10-14','10:00:00',0,55,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',2526,'H','I',38,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 22:43:28','vishal','2025-10-15 12:38:09',0),(2319,2526,0,0,691,'2025-10-14','00:00:00',587,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 10:15:58','janvi','2025-10-13 22:45:58',0),(2320,2526,0,0,692,'2025-10-14','00:00:00',588,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',738,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 10:20:38','reception','2025-10-14 10:21:04',0),(2321,2526,0,0,693,'2025-10-14','00:00:00',589,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',759,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 10:30:24','reception','2025-10-14 11:22:01',0),(2322,2526,0,0,694,'2025-10-14','00:00:00',590,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',739,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 10:32:16','drashti','2025-10-14 10:32:53',0),(2323,2526,0,0,695,'2025-10-14','00:00:00',591,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',740,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 10:32:20','reception','2025-10-14 10:33:07',0),(2324,2526,0,0,696,'2025-10-14','00:00:00',592,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',742,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 10:35:50','reception','2025-10-14 10:36:51',0),(2325,2526,0,0,697,'2025-10-14','00:00:00',593,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',741,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 10:35:52','drashti','2025-10-14 10:36:23',0),(2326,2526,0,0,430,'2025-10-12','10:34:00',0,32,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',119,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 10:36:24','','0000-00-00 00:00:00',0),(2327,2526,0,0,430,'2025-10-13','10:35:00',0,32,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 10:36:24','riya','2025-10-14 10:43:19',0),(2328,2526,0,0,430,'2025-10-11','10:35:00',0,32,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',119,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 10:36:24','','0000-00-00 00:00:00',0),(2329,2526,0,0,430,'2025-10-11','10:35:00',0,32,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',119,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 10:36:24','','0000-00-00 00:00:00',0),(2330,2526,0,0,430,'2025-10-11','10:36:00',0,32,'WPRC','WPRC0086','H','N',2.00,200,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',119,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 10:36:24','riya','2025-10-30 17:52:49',0),(2331,2526,0,0,698,'2025-10-14','00:00:00',594,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',743,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 10:38:40','drashti','2025-10-14 10:39:02',0),(2332,2526,0,0,699,'2025-10-14','00:00:00',595,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',744,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 10:40:25','janvi','2025-10-14 10:41:13',0),(2333,2526,0,0,430,'2025-10-11','10:39:00',0,32,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',119,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 10:43:19','riya','2025-10-30 17:53:02',0),(2334,2526,0,0,430,'2025-10-12','10:39:00',0,32,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',119,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 10:43:19','','0000-00-00 00:00:00',0),(2335,2526,0,0,414,'2025-10-14','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 23:15:52','riya','2025-10-14 10:45:57',0),(2336,2526,0,0,414,'2025-10-14','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 23:15:52','riya','2025-10-14 10:45:57',0),(2337,2526,0,0,414,'2025-10-14','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 23:15:52','riya','2025-10-14 10:45:57',0),(2338,2526,0,0,414,'2025-10-14','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 23:15:52','riya','2025-10-14 10:45:57',0),(2339,2526,0,0,414,'2025-10-14','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 23:15:52','riya','2025-10-25 11:28:26',0),(2340,2526,0,0,700,'2025-10-14','00:00:00',596,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',745,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 10:48:03','reception','2025-10-14 10:48:47',0),(2341,2526,0,0,701,'2025-10-14','10:48:00',595,56,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',36,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 10:49:41','vishal','2025-10-15 12:43:34',0),(2342,2526,0,0,701,'2025-10-14','10:48:00',595,56,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',36,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 10:49:41','vishal','2025-10-15 12:43:34',0),(2343,2526,0,0,701,'2025-10-14','10:48:00',595,56,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',36,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 23:19:41','vishal','2025-10-15 12:43:34',0),(2344,2526,0,0,701,'2025-10-14','10:48:00',595,56,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',36,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 23:19:41','vishal','2025-10-15 12:43:34',0),(2345,2526,0,0,701,'2025-10-14','10:48:00',595,56,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',36,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 23:19:41','vishal','2025-10-15 12:43:34',0),(2346,2526,0,0,701,'2025-10-15','10:48:00',595,56,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',36,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 23:19:41','vishal','2025-10-15 13:42:57',0),(2347,2526,0,0,701,'2025-10-14','10:48:00',595,56,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',36,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-13 23:19:41','vishal','2025-10-15 12:43:34',0),(2348,2526,0,0,691,'2025-10-14','10:49:42',587,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',746,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 10:49:42','janvi','2025-10-14 10:49:42',0),(2349,2526,0,0,703,'2025-10-14','00:00:00',597,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',747,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 10:55:31','reception','2025-10-14 10:56:10',0),(2350,2526,0,0,704,'2025-10-14','00:00:00',598,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',748,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 10:56:34','drashti','2025-10-14 10:58:14',0),(2351,2526,0,0,702,'2025-10-14','10:59:28',165,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',749,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 10:59:28','janvi','2025-10-14 10:59:28',0),(2352,2526,0,0,705,'2025-10-14','00:00:00',599,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',750,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 11:02:50','reception','2025-10-14 11:03:30',0),(2353,2526,0,0,707,'2025-10-14','00:00:00',600,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 11:04:47','janvi','2025-10-13 23:34:47',0),(2354,2526,0,0,706,'2025-10-14','11:05:31',171,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',751,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 11:05:31','drashti','2025-10-14 11:05:31',0),(2355,2526,0,0,708,'2025-10-14','00:00:00',601,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',753,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 11:06:49','drashti','2025-10-14 11:07:47',0),(2356,2526,0,0,707,'2025-10-14','11:07:01',600,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',752,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 11:07:01','janvi','2025-10-14 11:07:01',0),(2357,2526,0,0,707,'2025-10-14','11:07:01',600,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',752,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 11:07:01','janvi','2025-10-14 11:07:01',0),(2358,2526,0,0,707,'2025-10-14','11:07:01',600,0,'OPWD','OPWD0013','H','N',4.00,100,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',752,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 11:07:01','janvi','2025-10-14 11:07:01',0),(2359,2526,0,0,709,'2025-10-14','00:00:00',602,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',754,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 11:11:58','reception','2025-10-14 11:12:49',0),(2360,2526,0,0,710,'2025-10-14','00:00:00',603,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',755,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-14 11:12:59','manshi','2025-10-14 11:13:46',0),(2361,2526,0,0,711,'2025-10-14','00:00:00',604,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',763,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 11:14:17','reception','2025-10-14 11:40:22',0),(2362,2526,0,0,712,'2025-10-14','00:00:00',605,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',756,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 11:16:01','drashti','2025-10-14 11:16:39',0),(2363,2526,0,0,713,'2025-10-14','00:00:00',606,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',757,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 11:17:07','reception','2025-10-14 11:17:48',0),(2364,2526,0,0,714,'2025-10-14','00:00:00',607,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',758,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 11:18:49','reception','2025-10-14 11:19:11',0),(2365,2526,0,0,246,'2025-10-13','11:20:00',0,18,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 11:21:56','','0000-00-00 00:00:00',0),(2366,2526,0,0,246,'2025-10-12','11:20:00',0,18,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 11:21:56','riya','2025-10-18 11:05:08',0),(2367,2526,0,0,246,'2025-10-14','11:21:00',0,18,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 11:21:56','','0000-00-00 00:00:00',0),(2368,2526,0,0,246,'2025-10-14','11:21:00',0,18,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 11:21:56','','0000-00-00 00:00:00',0),(2369,2526,0,0,686,'2025-10-14','11:22:12',584,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',760,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 11:22:12','reception','2025-10-14 11:22:12',0),(2370,2526,0,0,246,'2025-10-13','11:22:00',0,18,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,38,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 11:24:13','','0000-00-00 00:00:00',0),(2371,2526,0,0,246,'2025-10-14','11:23:00',0,18,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 11:24:13','','0000-00-00 00:00:00',0),(2372,2526,0,0,246,'2025-10-14','11:23:00',0,18,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 11:24:13','riya','2025-10-14 11:51:41',0),(2373,2526,0,0,688,'2025-10-14','11:25:12',585,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',761,1,351,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 11:25:12','reception','2025-10-14 11:25:12',0),(2374,2526,0,0,688,'2025-10-14','11:25:12',585,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',761,2,399,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 11:25:12','reception','2025-10-14 11:25:12',0),(2375,2526,0,0,688,'2025-10-14','11:25:12',585,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',761,3,351,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 11:25:12','reception','2025-10-14 11:25:12',0),(2376,2526,0,0,246,'2025-10-14','11:24:00',0,18,'ROOM','ROOM0004','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 11:27:38','','0000-00-00 00:00:00',0),(2377,2526,0,0,715,'2025-10-14','00:00:00',608,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',762,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-14 11:28:17','manshi','2025-10-14 11:28:44',0),(2378,2526,0,0,284,'2025-10-13','23:00:00',0,21,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:01:13','vishal','2025-10-17 14:28:49',0),(2379,2526,0,0,284,'2025-10-13','23:00:00',0,21,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:01:13','vishal','2025-10-17 14:28:49',0),(2380,2526,0,0,284,'2025-10-13','23:00:00',0,21,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:01:13','vishal','2025-10-17 14:47:01',0),(2381,2526,0,0,284,'2025-10-13','23:00:00',0,21,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:01:13','vishal','2025-10-17 14:46:39',0),(2382,2526,0,0,284,'2025-10-13','23:00:00',0,21,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:01:13','vishal','2025-10-17 14:46:39',0),(2383,2526,0,0,284,'2025-10-12','11:31:00',0,21,'WPRC','WPRC0077','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 11:34:11','','0000-00-00 00:00:00',0),(2384,2526,0,0,284,'2025-10-13','11:31:00',0,21,'WPRC','WPRC0077','H','N',3.00,500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 11:34:11','riya','2025-10-14 11:36:44',0),(2385,2526,0,0,284,'2025-10-14','11:32:00',0,21,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 11:34:11','vishal','2025-10-17 14:46:39',0),(2386,2526,0,0,284,'2025-10-14','11:32:00',0,21,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 11:34:11','','0000-00-00 00:00:00',0),(2387,2526,0,0,284,'2025-10-14','11:33:00',0,21,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 11:34:11','vishal','2025-10-17 14:47:01',0),(2388,2526,0,0,716,'2025-10-14','00:00:00',609,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',764,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 11:40:21','drashti','2025-10-14 11:40:57',0),(2389,2526,0,0,717,'2025-10-14','00:00:00',610,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',765,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 11:40:54','janvi','2025-10-14 11:41:14',0),(2390,2526,0,0,718,'2025-10-14','00:00:00',611,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',766,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 11:42:06','reception','2025-10-14 11:42:38',0),(2391,2526,0,0,697,'2025-10-14','11:44:17',593,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',767,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 11:44:17','reception','2025-10-14 11:44:17',0),(2392,2526,0,0,697,'2025-10-14','11:44:17',593,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',767,2,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 11:44:17','reception','2025-10-14 11:44:17',0),(2393,2526,0,0,715,'2025-10-14','11:47:17',608,0,'XRY','XRY0353','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',768,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-14 11:47:17','manshi','2025-10-14 11:47:17',0),(2394,2526,0,0,719,'2025-10-14','00:00:00',612,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',769,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-14 11:48:11','manshi','2025-10-14 11:48:58',0),(2395,2526,0,0,720,'2025-10-14','00:00:00',613,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',770,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 11:51:11','reception','2025-10-14 11:51:24',0),(2396,2526,0,0,284,'2025-10-14','11:50:00',0,21,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 11:51:14','','0000-00-00 00:00:00',0),(2397,2526,0,0,284,'2025-10-14','11:50:00',0,21,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 11:51:14','','0000-00-00 00:00:00',0),(2398,2526,0,0,721,'2025-10-14','00:00:00',614,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',771,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 11:59:33','reception','2025-10-14 12:00:03',0),(2399,2526,0,0,719,'2025-10-14','12:05:14',612,0,'XRY','XRY0390','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',772,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-14 12:05:14','manshi','2025-10-14 12:05:14',0),(2400,2526,0,0,722,'2025-10-14','00:00:00',615,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',773,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 12:09:53','janvi','2025-10-14 12:10:49',0),(2401,2526,0,0,509,'2025-10-14','12:09:00',0,41,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',27,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 12:10:02','','0000-00-00 00:00:00',0),(2402,2526,0,0,723,'2025-10-14','00:00:00',616,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',774,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 12:12:10','drashti','2025-10-14 12:13:45',0),(2403,2526,0,0,724,'2025-10-14','00:00:00',617,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-14 12:13:55','manshi','2025-10-14 00:43:56',0),(2404,2526,0,0,725,'2025-10-14','00:00:00',618,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',775,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 12:16:13','drashti','2025-10-14 12:18:15',0),(2405,2526,0,0,726,'2025-10-14','00:00:00',619,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',778,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 12:18:32','janvi','2025-10-14 12:19:45',0),(2406,2526,0,0,724,'2025-10-14','12:18:39',617,0,'XRY','XRY0151','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',776,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-14 12:18:39','manshi','2025-10-14 12:18:39',0),(2407,2526,0,0,727,'2025-10-14','00:00:00',620,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',777,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 12:18:57','reception','2025-10-14 12:19:28',0),(2408,2526,0,0,48,'2025-10-14','11:00:00',0,5,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',0,'','',0,67,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:52:18','riya','2025-10-14 15:06:37',0),(2409,2526,0,0,48,'2025-10-14','11:00:00',0,5,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',0,'','',0,68,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:52:18','riya','2025-10-14 15:06:37',0),(2410,2526,0,0,48,'2025-10-14','11:00:00',0,5,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',0,'','',0,69,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:52:18','riya','2025-10-14 15:10:03',0),(2411,2526,0,0,48,'2025-10-14','11:00:00',0,5,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',29,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:52:18','riya','2025-10-14 14:44:31',0),(2412,2526,0,0,48,'2025-10-14','11:00:00',0,5,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',0,'','',0,71,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:52:18','riya','2025-10-14 15:10:03',0),(2413,2526,0,0,470,'2025-10-14','11:40:00',131,34,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:52:18','riya','2025-10-15 18:18:59',0),(2414,2526,0,0,470,'2025-10-14','11:40:00',131,34,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:52:18','riya','2025-10-15 18:18:59',0),(2415,2526,0,0,470,'2025-10-14','11:40:00',131,34,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:52:18','riya','2025-10-15 18:18:59',0),(2416,2526,0,0,470,'2025-10-14','11:40:00',131,34,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',0,'','',0,25,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:52:18','vishal','2025-10-16 12:02:58',0),(2417,2526,0,0,470,'2025-10-14','11:40:00',131,34,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:52:18','riya','2025-10-15 18:18:59',0),(2418,2526,0,0,574,'2025-10-14','11:30:00',481,44,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',37,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:52:18','riya','2025-10-15 18:15:34',0),(2419,2526,0,0,574,'2025-10-14','11:30:00',481,44,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',37,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:52:18','riya','2025-10-15 18:15:34',0),(2420,2526,0,0,574,'2025-10-14','11:30:00',481,44,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',37,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:52:18','riya','2025-10-15 18:15:34',0),(2421,2526,0,0,574,'2025-10-14','11:30:00',481,44,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','305','','','',2526,'H','I',37,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:52:18','riya','2025-10-15 18:15:34',0),(2422,2526,0,0,574,'2025-10-14','11:30:00',481,44,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','305','','','',2526,'H','I',37,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 00:52:18','riya','2025-10-15 18:15:34',0),(2423,2526,0,0,728,'2025-10-14','00:00:00',621,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',779,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 12:28:00','drashti','2025-10-14 12:28:39',0),(2424,2526,0,0,729,'2025-10-14','00:00:00',622,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',780,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 12:32:01','drashti','2025-10-14 12:32:48',0),(2425,2526,0,0,414,'2025-10-13','12:29:00',0,25,'WPRC','WPRC0092','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,4,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 12:34:21','','0000-00-00 00:00:00',0),(2426,2526,0,0,414,'2025-10-14','12:30:00',0,25,'XRY','XRY0045','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 12:34:21','','0000-00-00 00:00:00',0),(2427,2526,0,0,414,'2025-10-14','12:31:00',0,25,'WPRC','WPRC0088','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 12:34:21','','0000-00-00 00:00:00',0),(2428,2526,0,0,414,'2025-10-14','12:32:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 12:34:21','','0000-00-00 00:00:00',0),(2429,2526,0,0,730,'2025-10-14','00:00:00',623,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',783,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 12:35:42','drashti','2025-10-14 12:37:03',0),(2430,2526,0,0,731,'2025-10-14','00:00:00',624,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',781,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 12:35:49','reception','2025-10-14 12:36:23',0),(2431,2526,0,0,732,'2025-10-14','00:00:00',625,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',782,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 12:36:19','janvi','2025-10-14 12:36:49',0),(2432,2526,0,0,414,'2025-10-14','12:34:00',0,25,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 12:36:34','','0000-00-00 00:00:00',0),(2433,2526,0,0,414,'2025-10-14','12:34:00',0,25,'WPRC','WPRC0089','H','N',8.00,100,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 12:36:34','riya','2025-10-15 20:16:01',0),(2434,2526,0,0,414,'2025-10-14','12:35:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 12:36:34','','0000-00-00 00:00:00',0),(2435,2526,0,0,414,'2025-10-14','12:35:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 12:36:34','','0000-00-00 00:00:00',0),(2436,2526,0,0,414,'2025-10-14','12:36:00',0,25,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 12:36:34','','0000-00-00 00:00:00',0),(2437,2526,0,0,733,'2025-10-14','00:00:00',626,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',784,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 12:38:13','janvi','2025-10-14 12:38:46',0),(2438,2526,0,0,734,'2025-10-14','00:00:00',627,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',785,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 12:42:44','drashti','2025-10-14 12:43:25',0),(2439,2526,0,0,735,'2025-10-14','00:00:00',628,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',786,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 12:44:18','reception','2025-10-14 12:44:51',0),(2440,2526,0,0,736,'2025-10-14','00:00:00',629,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',787,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 12:46:52','reception','2025-10-14 12:47:44',0),(2441,2526,0,0,737,'2025-10-14','09:00:00',0,57,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-10-14 12:49:00','','0000-00-00 00:00:00',0),(2442,2526,0,0,737,'2025-10-14','09:00:00',0,57,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-10-14 12:49:00','','0000-00-00 00:00:00',0),(2443,2526,0,0,737,'2025-10-14','09:00:00',0,57,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-10-14 01:19:00','','0000-00-00 00:00:00',0),(2444,2526,0,0,737,'2025-10-14','09:00:00',0,57,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-10-14 01:19:00','','0000-00-00 00:00:00',0),(2445,2526,0,0,737,'2025-10-14','09:00:00',0,57,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-10-14 01:19:00','','0000-00-00 00:00:00',0),(2446,2526,0,0,737,'2025-10-14','09:00:00',0,57,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-10-14 01:19:00','','0000-00-00 00:00:00',0),(2447,2526,0,0,737,'2025-10-14','09:00:00',0,57,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-10-14 01:19:00','','0000-00-00 00:00:00',0),(2448,2526,0,0,703,'2025-10-14','12:50:42',597,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',788,1,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 12:50:42','reception','2025-10-14 12:50:42',0),(2449,2526,0,0,703,'2025-10-14','12:50:42',597,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',788,2,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 12:50:42','reception','2025-10-14 12:50:42',0),(2450,2526,0,0,703,'2025-10-14','12:50:42',597,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',788,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 12:50:42','reception','2025-10-14 12:50:42',0),(2451,2526,0,0,723,'2025-10-14','12:54:21',616,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',789,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'drashti','2025-10-14 12:54:21','drashti','2025-10-14 12:54:21',0),(2452,2526,0,0,723,'2025-10-14','12:54:21',616,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,22,'',0,0,'','','','','',2526,'H','O',789,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'drashti','2025-10-14 12:54:21','drashti','2025-10-14 12:54:21',0),(2453,2526,0,0,406,'2025-10-13','12:53:00',0,22,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,6,0,0,'',0,0,'','','','','',2526,'H','I',28,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 12:54:21','','0000-00-00 00:00:00',0),(2454,2526,0,0,406,'2025-10-14','12:53:00',0,22,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,6,0,0,'',0,0,'','','','','',2526,'H','I',28,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 12:54:21','','0000-00-00 00:00:00',0),(2455,2526,0,0,406,'2025-10-14','12:53:00',0,22,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','','','','',2526,'H','I',28,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 12:54:21','','0000-00-00 00:00:00',0),(2456,2526,0,0,738,'2025-10-14','00:00:00',630,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',790,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 12:55:08','janvi','2025-10-14 12:56:10',0),(2457,2526,0,0,720,'2025-10-14','13:01:06',613,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',791,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 13:01:06','reception','2025-10-14 13:01:06',0),(2458,2526,0,0,720,'2025-10-14','13:01:06',613,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',791,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 13:01:06','reception','2025-10-14 13:01:06',0),(2459,2526,0,0,720,'2025-10-14','13:01:06',613,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',791,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 13:01:06','reception','2025-10-14 13:01:06',0),(2460,2526,0,0,739,'2025-10-14','00:00:00',631,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',792,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 13:06:19','urvashi','2025-10-14 13:06:47',0),(2461,2526,0,0,406,'2025-10-11','13:03:00',0,22,'SURG','SURG0015','H','N',1.00,7500,7500,'P',0,0,0.00,0.00,7500.00,7500,6,0,0,'',0,0,'','','','','',2526,'H','I',28,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 13:08:07','riya','2025-10-14 13:12:20',0),(2462,2526,0,0,406,'2025-10-11','13:06:00',0,22,'SURG','SURG0014','H','N',1.00,30000,30000,'P',0,0,0.00,0.00,30000.00,30000,50,0,0,'',0,0,'','','','','',2526,'H','I',28,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 13:08:07','riya','2025-10-14 13:53:25',0),(2463,2526,0,0,740,'2025-10-14','00:00:00',632,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',793,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 13:11:59','urvashi','2025-10-14 13:12:54',0),(2464,2526,0,0,741,'2025-10-14','00:00:00',633,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',794,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 13:13:43','drashti','2025-10-14 13:14:30',0),(2465,2526,0,0,742,'2025-10-14','13:16:28',250,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',795,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 13:16:28','urvashi','2025-10-14 13:16:28',0),(2466,2526,0,0,742,'2025-10-14','13:16:28',250,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',795,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 13:16:28','urvashi','2025-10-14 13:16:28',0),(2467,2526,0,0,742,'2025-10-14','13:16:28',250,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',795,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 13:16:28','urvashi','2025-10-14 13:16:28',0),(2468,2526,0,0,743,'2025-10-14','13:27:00',619,58,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',35,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 13:35:47','vishal','2025-10-15 12:40:05',0),(2469,2526,0,0,743,'2025-10-14','13:27:00',619,58,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',35,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 13:35:47','vishal','2025-10-15 12:40:05',0),(2470,2526,0,0,743,'2025-10-14','13:27:00',619,58,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',35,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 02:05:47','vishal','2025-10-15 12:40:05',0),(2471,2526,0,0,743,'2025-10-14','13:27:00',619,58,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',35,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 02:05:47','vishal','2025-10-15 12:40:05',0),(2472,2526,0,0,743,'2025-10-14','13:27:00',619,58,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',35,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 02:05:47','vishal','2025-10-15 12:40:05',0),(2473,2526,0,0,743,'2025-10-15','13:27:00',619,58,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','406','','','',2526,'H','I',35,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 02:05:47','vishal','2025-10-15 12:40:05',0),(2474,2526,0,0,743,'2025-10-14','13:27:00',619,58,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','406','','','',2526,'H','I',35,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 02:05:47','vishal','2025-10-15 12:40:05',0),(2475,2526,0,0,714,'2025-10-14','13:39:07',607,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',796,1,234,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 13:39:07','drashti','2025-10-14 13:39:07',0),(2476,2526,0,0,714,'2025-10-14','13:39:07',607,0,'NEU1','NEU10017','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',796,2,266,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 13:39:07','drashti','2025-10-14 13:39:07',0),(2477,2526,0,0,744,'2025-10-14','00:00:00',634,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 13:46:18','janvi','2025-10-14 02:16:18',0),(2478,2526,0,0,725,'2025-10-14','13:51:10',618,0,'USG','USG0009','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,4,0,0,'',0,0,'','','','','',2526,'H','O',797,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 13:51:10','drashti','2025-10-14 13:51:10',0),(2479,2526,0,0,745,'2025-10-14','00:00:00',635,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 14:37:31','urvashi','2025-10-14 03:07:31',0),(2480,2526,0,0,489,'2025-10-14','14:38:00',0,38,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 14:40:04','','0000-00-00 00:00:00',0),(2481,2526,0,0,489,'2025-10-14','14:38:00',0,38,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 14:40:04','','0000-00-00 00:00:00',0),(2482,2526,0,0,48,'2025-10-14','14:41:00',0,5,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 14:44:31','riya','2025-10-14 15:11:31',0),(2483,2526,0,0,48,'2025-10-14','14:41:00',0,5,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 14:44:31','riya','2025-10-14 15:11:31',0),(2484,2526,0,0,48,'2025-10-13','14:47:00',0,5,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,52,0,0,'',0,0,'','','','','',2526,'H','I',29,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 14:49:29','','0000-00-00 00:00:00',0),(2485,2526,0,0,48,'2025-10-14','14:48:00',0,5,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',0,'','',0,75,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 14:49:29','riya','2025-10-14 15:10:03',0),(2486,2526,0,0,48,'2025-10-14','14:48:00',0,5,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',0,'','',0,76,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 14:49:29','riya','2025-10-14 15:10:03',0),(2487,2526,0,0,746,'2025-10-14','16:42:32',629,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',798,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 16:42:32','reception','2025-10-14 16:42:32',0),(2488,2526,0,0,746,'2025-10-14','16:42:32',629,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',798,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 16:42:32','reception','2025-10-14 16:42:32',0),(2489,2526,0,0,746,'2025-10-14','16:42:32',629,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',798,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 16:42:32','reception','2025-10-14 16:42:32',0),(2490,2526,0,0,747,'2025-10-14','00:00:00',636,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',799,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 16:51:10','reception','2025-10-14 16:51:48',0),(2491,2526,0,0,748,'2025-10-14','00:00:00',637,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',800,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-14 16:51:56','shweta','2025-10-14 16:52:10',0),(2492,2526,0,0,749,'2025-10-14','00:00:00',638,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',801,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 16:53:10','reception','2025-10-14 16:53:39',0),(2493,2526,0,0,750,'2025-10-14','00:00:00',639,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',802,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 16:58:11','reception','2025-10-14 16:58:36',0),(2494,2526,0,0,751,'2025-10-14','00:00:00',640,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',803,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-14 17:12:31','reception','2025-10-14 17:13:18',0),(2495,2526,0,0,752,'2025-10-14','00:00:00',641,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',804,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 17:14:17','drashti','2025-10-14 17:15:09',0),(2496,2526,0,0,753,'2025-10-14','00:00:00',642,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',805,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 17:17:47','urvashi','2025-10-14 17:17:57',0),(2497,2526,0,0,754,'2025-10-14','00:00:00',643,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',806,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 17:18:29','drashti','2025-10-14 17:18:54',0),(2498,2526,0,0,755,'2025-10-14','00:00:00',644,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',807,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 17:27:46','drashti','2025-10-14 17:28:52',0),(2499,2526,0,0,749,'2025-10-14','17:37:37',638,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',808,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 17:37:37','urvashi','2025-10-14 17:37:37',0),(2500,2526,0,0,749,'2025-10-14','17:37:37',638,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',808,2,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 17:37:37','urvashi','2025-10-14 17:37:37',0),(2501,2526,0,0,749,'2025-10-14','17:37:37',638,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',808,3,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 17:37:37','urvashi','2025-10-14 17:37:37',0),(2502,2526,0,0,749,'2025-10-14','17:37:37',638,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',808,4,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 17:37:37','urvashi','2025-10-14 17:37:37',0),(2503,2526,0,0,756,'2025-10-14','00:00:00',645,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',809,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-14 17:38:55','manshi','2025-10-14 17:39:15',0),(2504,2526,0,0,757,'2025-10-14','00:00:00',646,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',810,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 17:40:48','urvashi','2025-10-14 17:41:07',0),(2505,2526,0,0,758,'2025-10-14','00:00:00',647,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',814,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 17:42:26','urvashi','2025-10-14 17:46:40',0),(2506,2526,0,0,759,'2025-10-14','00:00:00',648,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',812,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 17:44:19','drashti','2025-10-14 17:44:55',0),(2507,2526,0,0,760,'2025-10-14','17:44:53',305,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',811,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 17:44:53','janvi','2025-10-14 17:44:53',0),(2508,2526,0,0,761,'2025-10-14','00:00:00',649,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',813,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 17:45:58','urvashi','2025-10-14 17:46:16',0),(2509,2526,0,0,762,'2025-10-14','00:00:00',650,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',815,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 17:47:25','urvashi','2025-10-14 19:19:02',0),(2510,2526,0,0,763,'2025-10-14','00:00:00',651,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',816,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 17:47:37','janvi','2025-10-14 17:48:33',0),(2511,2526,0,0,764,'2025-10-14','00:00:00',652,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',818,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 17:50:23','drashti','2025-10-14 17:52:06',0),(2512,2526,0,0,765,'2025-10-14','00:00:00',653,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',817,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 17:51:14','urvashi','2025-10-14 17:51:46',0),(2513,2526,0,0,766,'2025-10-14','00:00:00',654,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',820,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-14 17:54:47','manshi','2025-10-14 17:57:03',0),(2514,2526,0,0,750,'2025-10-14','17:56:09',639,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',819,1,287,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 17:56:09','urvashi','2025-10-14 17:56:09',0),(2515,2526,0,0,750,'2025-10-14','17:56:09',639,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',819,2,326,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 17:56:09','urvashi','2025-10-14 17:56:09',0),(2516,2526,0,0,750,'2025-10-14','17:56:09',639,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',819,3,287,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 17:56:09','urvashi','2025-10-14 17:56:09',0),(2517,2526,0,0,767,'2025-10-14','00:00:00',655,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',821,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 17:56:48','drashti','2025-10-14 17:57:23',0),(2518,2526,0,0,768,'2025-10-14','00:00:00',656,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',823,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 17:57:27','urvashi','2025-10-14 17:58:10',0),(2519,2526,0,0,769,'2025-10-14','00:00:00',657,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',822,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 17:57:30','janvi','2025-10-14 17:57:57',0),(2520,2526,0,0,770,'2025-10-14','00:00:00',658,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',824,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 17:59:19','drashti','2025-10-14 17:59:52',0),(2521,2526,0,0,771,'2025-10-14','18:00:42',111,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',825,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 18:00:42','janvi','2025-10-14 18:00:42',0),(2522,2526,0,0,748,'2025-10-14','18:00:58',637,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',826,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 18:00:58','urvashi','2025-10-14 18:00:58',0),(2523,2526,0,0,748,'2025-10-14','18:00:58',637,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',826,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 18:00:58','urvashi','2025-10-14 18:00:58',0),(2524,2526,0,0,748,'2025-10-14','18:00:58',637,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',826,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 18:00:58','urvashi','2025-10-14 18:00:58',0),(2525,2526,0,0,772,'2025-10-14','00:00:00',659,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',827,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 18:02:50','janvi','2025-10-14 18:03:32',0),(2526,2526,0,0,773,'2025-10-14','00:00:00',660,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',828,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 18:04:01','urvashi','2025-10-14 18:04:50',0),(2527,2526,0,0,774,'2025-10-14','00:00:00',661,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',829,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 18:11:15','urvashi','2025-10-14 18:11:56',0),(2528,2526,0,0,775,'2025-10-14','18:12:28',249,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',830,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 18:12:28','drashti','2025-10-14 18:12:28',0),(2529,2526,0,0,776,'2025-10-14','00:00:00',662,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',831,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 18:18:51','urvashi','2025-10-14 18:19:28',0),(2530,2526,0,0,777,'2025-10-14','00:00:00',663,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',832,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 18:20:25','drashti','2025-10-14 18:21:01',0),(2531,2526,0,0,778,'2025-10-14','00:00:00',664,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',834,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 18:21:28','janvi','2025-10-14 18:28:12',0),(2532,2526,0,0,779,'2025-10-14','00:00:00',665,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',833,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 18:21:45','urvashi','2025-10-14 18:22:08',0),(2533,2526,0,0,780,'2025-10-14','00:00:00',666,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',835,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 18:23:35','drashti','2025-10-14 18:24:59',0),(2534,2526,0,0,781,'2025-10-14','00:00:00',667,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',836,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 18:26:34','janvi','2025-10-14 18:27:21',0),(2535,2526,0,0,782,'2025-10-14','00:00:00',668,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',838,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 18:27:11','drashti','2025-10-14 18:28:40',0),(2536,2526,0,0,783,'2025-10-14','00:00:00',669,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',839,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 18:28:57','urvashi','2025-10-14 18:29:37',0),(2537,2526,0,0,784,'2025-10-14','00:00:00',670,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',841,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 18:30:24','janvi','2025-10-14 18:31:58',0),(2538,2526,0,0,785,'2025-10-14','00:00:00',671,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',843,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 18:31:05','drashti','2025-10-14 18:32:42',0),(2539,2526,0,0,786,'2025-10-14','18:31:50',303,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',840,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 18:31:50','janvi','2025-10-14 18:31:50',0),(2540,2526,0,0,784,'2025-10-14','18:31:58',670,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',841,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 18:31:58','janvi','2025-10-14 18:31:58',0),(2541,2526,0,0,765,'2025-10-14','18:32:15',653,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',842,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 18:32:15','urvashi','2025-10-14 18:32:15',0),(2542,2526,0,0,765,'2025-10-14','18:32:15',653,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',842,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 18:32:15','urvashi','2025-10-14 18:32:15',0),(2543,2526,0,0,787,'2025-10-14','00:00:00',672,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',844,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 18:34:38','drashti','2025-10-14 18:35:10',0),(2544,2526,0,0,788,'2025-10-14','00:00:00',673,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',845,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 18:36:20','drashti','2025-10-14 18:37:02',0),(2545,2526,0,0,789,'2025-10-14','00:00:00',674,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',846,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 18:46:51','drashti','2025-10-14 18:47:48',0),(2546,2526,0,0,790,'2025-10-14','00:00:00',675,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 18:56:25','drashti','2025-10-14 07:26:25',0),(2547,2526,0,0,791,'2025-10-14','00:00:00',676,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',847,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 18:58:13','drashti','2025-10-14 18:58:39',0),(2548,2526,0,0,792,'2025-10-14','00:00:00',677,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',848,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 19:03:50','urvashi','2025-10-14 19:04:20',0),(2549,2526,0,0,683,'2025-10-14','19:03:00',431,52,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',31,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 19:03:53','','0000-00-00 00:00:00',0),(2550,2526,0,0,683,'2025-10-14','19:03:00',431,52,'CARE','CARE0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',31,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 19:03:53','','0000-00-00 00:00:00',0),(2551,2526,0,0,794,'2025-10-14','00:00:00',678,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',850,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 19:05:21','drashti','2025-10-14 19:06:17',0),(2552,2526,0,0,793,'2025-10-14','19:05:35',118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',849,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 19:05:35','urvashi','2025-10-14 19:05:35',0),(2553,2526,0,0,795,'2025-10-14','00:00:00',679,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',851,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 19:05:46','janvi','2025-10-14 19:06:22',0),(2554,2526,0,0,683,'2025-10-14','19:04:00',431,52,'SURG','SURG0014','H','N',1.00,10500,10500,'P',0,0,0.00,0.00,10500.00,10500,3,0,0,'',0,0,'','','','','',2526,'H','I',31,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 19:06:09','','0000-00-00 00:00:00',0),(2555,2526,0,0,683,'2025-10-14','19:04:00',431,52,'SURG','SURG0015','H','N',1.00,3300,3300,'P',0,0,0.00,0.00,3300.00,3300,3,0,0,'',0,0,'','','','','',2526,'H','I',31,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 19:06:09','','0000-00-00 00:00:00',0),(2556,2526,0,0,796,'2025-10-14','00:00:00',680,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',853,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-14 19:12:09','manshi','2025-10-14 19:18:32',0),(2557,2526,0,0,416,'2025-10-14','19:09:00',276,27,'ROOM','ROOM0009','H','N',0.50,2900,1450,'P',0,0,0.00,0.00,1450.00,1450,9999,0,0,'',0,0,'','','','','',2526,'H','I',30,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 19:12:46','','0000-00-00 00:00:00',0),(2558,2526,0,0,416,'2025-10-14','19:09:00',276,27,'CARE','CARE0006','H','N',0.50,300,150,'P',0,0,0.00,0.00,150.00,150,9999,0,0,'',0,0,'','','','','',2526,'H','I',30,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 19:12:46','','0000-00-00 00:00:00',0),(2559,2526,0,0,416,'2025-10-14','19:10:00',276,27,'CARE','CARE0002','H','N',0.50,200,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',30,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 19:12:46','','0000-00-00 00:00:00',0),(2560,2526,0,0,416,'2025-10-14','19:10:00',276,27,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',30,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 19:12:46','','0000-00-00 00:00:00',0),(2561,2526,0,0,416,'2025-10-14','19:10:00',276,27,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',30,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 19:12:46','','0000-00-00 00:00:00',0),(2562,2526,0,0,416,'2025-10-10','19:11:00',276,27,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',30,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 19:12:46','riya','2025-10-14 19:13:23',0),(2563,2526,0,0,416,'2025-10-10','19:11:00',276,27,'WPRC','WPRC0090','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',30,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 19:12:46','riya','2025-10-14 19:13:23',0),(2564,2526,0,0,416,'2025-10-10','19:12:00',276,27,'ROOM','ROOM0004','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',30,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-14 19:12:46','riya','2025-10-14 19:13:23',0),(2565,2526,0,0,797,'2025-10-14','00:00:00',681,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',852,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 19:15:36','drashti','2025-10-14 19:16:57',0),(2566,2526,0,0,798,'2025-10-14','00:00:00',682,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',855,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 19:18:57','drashti','2025-10-14 19:19:34',0),(2567,2526,0,0,762,'2025-10-14','19:19:58',650,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',856,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 19:19:58','urvashi','2025-10-14 19:19:58',0),(2568,2526,0,0,799,'2025-10-14','19:27:38',291,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',857,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 19:27:38','janvi','2025-10-14 19:27:38',0),(2569,2526,0,0,785,'2025-10-14','19:32:28',671,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',858,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 19:32:28','drashti','2025-10-14 19:32:28',0),(2570,2526,0,0,800,'2025-10-14','00:00:00',683,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',859,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-14 19:39:25','drashti','2025-10-14 19:41:30',0),(2571,2526,0,0,801,'2025-10-14','19:47:52',1,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',860,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 19:47:52','janvi','2025-10-14 19:47:52',0),(2572,2526,0,0,802,'2025-10-14','00:00:00',684,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',861,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-14 19:48:09','urvashi','2025-10-14 19:49:15',0),(2573,2526,0,0,802,'2025-10-14','19:54:15',684,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',862,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-14 19:54:15','janvi','2025-10-14 19:54:15',0),(2574,2526,0,0,675,'2025-10-14','21:06:00',0,51,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',32,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 21:08:05','vishal','2025-10-14 21:08:26',0),(2575,2526,0,0,675,'2025-10-13','21:07:00',0,51,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',32,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 21:08:05','vishal','2025-10-14 21:08:26',0),(2576,2526,0,0,803,'2025-10-14','21:30:00',0,59,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',41,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 21:50:36','riya','2025-10-15 18:08:45',0),(2577,2526,0,0,803,'2025-10-14','21:30:00',0,59,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',41,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 21:50:36','riya','2025-10-15 18:08:45',0),(2578,2526,0,0,803,'2025-10-14','21:30:00',0,59,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',41,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 10:20:36','riya','2025-10-15 18:08:45',0),(2579,2526,0,0,803,'2025-10-14','21:30:00',0,59,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',41,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 10:20:36','riya','2025-10-15 18:08:45',0),(2580,2526,0,0,803,'2025-10-14','21:30:00',0,59,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',41,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 10:20:36','riya','2025-10-15 18:08:45',0),(2581,2526,0,0,803,'2025-10-15','21:30:00',0,59,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',41,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 10:20:36','vishal','2025-10-16 12:36:09',0),(2582,2526,0,0,803,'2025-10-14','21:30:00',0,59,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 10:20:36','vishal','2025-10-16 12:33:40',0),(2583,2526,0,0,804,'2025-10-15','00:00:00',685,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-15 09:07:13','priyanshi','2025-10-14 21:37:13',0),(2584,2526,0,0,805,'2025-10-15','00:00:00',686,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',863,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 09:10:00','reception','2025-10-15 09:11:34',0),(2585,2526,0,0,806,'2025-10-15','00:00:00',687,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',864,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 09:11:02','janvi','2025-10-15 09:13:00',0),(2586,2526,0,0,804,'2025-10-15','09:13:09',685,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',865,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'priyanshi','2025-10-15 09:13:09','priyanshi','2025-10-15 09:13:09',0),(2587,2526,0,0,804,'2025-10-15','09:13:09',685,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,23,'',0,0,'','','','','',2526,'H','O',865,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'priyanshi','2025-10-15 09:13:09','priyanshi','2025-10-15 09:13:09',0),(2588,2526,0,0,804,'2025-10-15','09:13:09',685,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',865,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'priyanshi','2025-10-15 09:13:09','priyanshi','2025-10-15 09:13:09',0),(2589,2526,0,0,804,'2025-10-15','09:13:09',685,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',865,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'priyanshi','2025-10-15 09:13:09','priyanshi','2025-10-15 09:13:09',0),(2590,2526,0,0,807,'2025-10-15','00:00:00',688,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-15 09:13:55','priyanshi','2025-10-14 21:43:55',0),(2591,2526,0,0,807,'2025-10-15','09:15:48',688,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',866,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'priyanshi','2025-10-15 09:15:48','priyanshi','2025-10-15 09:15:48',0),(2592,2526,0,0,807,'2025-10-15','09:15:48',688,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',866,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'priyanshi','2025-10-15 09:15:48','priyanshi','2025-10-15 09:15:48',0),(2593,2526,0,0,807,'2025-10-15','09:15:48',688,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',866,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'priyanshi','2025-10-15 09:15:48','priyanshi','2025-10-15 09:15:48',0),(2594,2526,0,0,807,'2025-10-15','09:15:48',688,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,24,'',0,0,'','','','','',2526,'H','O',866,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'priyanshi','2025-10-15 09:15:48','priyanshi','2025-10-15 09:15:48',0),(2595,2526,0,0,807,'2025-10-15','09:15:48',688,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,5,0,0,'',0,0,'','','','','',2526,'H','O',866,5,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'priyanshi','2025-10-15 09:15:48','priyanshi','2025-10-15 09:15:48',0),(2596,2526,0,0,808,'2025-10-15','00:00:00',689,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-15 09:17:19','priyanshi','2025-10-14 21:47:19',0),(2597,2526,0,0,808,'2025-10-15','09:18:29',689,0,'SURG','SURG0005','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',867,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-15 09:18:29','priyanshi','2025-10-15 09:18:29',0),(2598,2526,0,0,809,'2025-10-15','09:00:00',0,60,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',42,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 09:25:23','riya','2025-10-16 18:34:17',0),(2599,2526,0,0,809,'2025-10-15','09:00:00',0,60,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',42,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 09:25:23','riya','2025-10-16 18:34:17',0),(2600,2526,0,0,809,'2025-10-15','09:00:00',0,60,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',42,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 21:55:23','riya','2025-10-16 18:34:17',0),(2601,2526,0,0,809,'2025-10-15','09:00:00',0,60,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',42,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 21:55:23','riya','2025-10-16 18:34:17',0),(2602,2526,0,0,809,'2025-10-15','09:00:00',0,60,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',42,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 21:55:23','riya','2025-10-16 18:34:17',0),(2603,2526,0,0,809,'2025-10-15','09:00:00',0,60,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',42,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 21:55:23','riya','2025-10-16 18:34:17',0),(2604,2526,0,0,809,'2025-10-15','09:00:00',0,60,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',42,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 21:55:23','riya','2025-10-16 18:34:17',0),(2605,2526,0,0,810,'2025-10-15','09:29:07',276,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',868,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-15 09:29:07','priyanshi','2025-10-15 09:29:07',0),(2606,2526,0,0,811,'2025-10-15','00:00:00',690,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',871,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 09:33:03','reception','2025-10-15 09:53:48',0),(2607,2526,0,0,812,'2025-10-15','09:39:52',181,0,'LAB','LAB0817','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,25,'',0,0,'','','','','',2526,'H','O',869,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'priyanshi','2025-10-15 09:39:51','priyanshi','2025-10-15 09:39:51',0),(2608,2526,0,0,813,'2025-10-15','00:00:00',691,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',870,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 09:41:18','reception','2025-10-15 09:42:07',0),(2609,2526,0,0,814,'2025-10-15','00:00:00',692,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',872,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 09:57:04','janvi','2025-10-15 09:57:39',0),(2610,2526,0,0,815,'2025-10-15','00:00:00',693,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',873,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-15 10:03:00','janvi','2025-10-15 10:19:35',0),(2611,2526,0,0,816,'2025-10-15','00:00:00',694,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',882,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-15 10:22:14','manshi','2025-10-15 10:51:34',0),(2612,2526,0,0,817,'2025-10-15','00:00:00',695,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',875,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 10:26:27','reception','2025-10-15 10:27:05',0),(2613,2526,0,0,818,'2025-10-15','00:00:00',696,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',876,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 10:33:57','drashti','2025-10-15 10:34:41',0),(2614,2526,0,0,819,'2025-10-15','00:00:00',79,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',877,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 10:37:04','reception','2025-10-15 10:37:44',0),(2615,2526,0,0,820,'2025-10-15','00:00:00',697,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',878,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 10:39:14','reception','2025-10-15 10:39:35',0),(2616,2526,0,0,821,'2025-10-15','00:00:00',698,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 10:46:05','drashti','2025-10-14 23:16:05',0),(2617,2526,0,0,822,'2025-10-15','00:00:00',16,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',879,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 10:46:36','drashti','2025-10-15 10:47:15',0),(2618,2526,0,0,823,'2025-10-15','00:00:00',699,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',880,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 10:46:43','reception','2025-10-15 10:47:19',0),(2619,2526,0,0,824,'2025-10-15','00:00:00',700,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',881,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 10:48:21','reception','2025-10-15 10:49:09',0),(2620,2526,0,0,825,'2025-10-15','00:00:00',701,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',883,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 10:49:41','janvi','2025-10-15 10:52:12',0),(2621,2526,0,0,816,'2025-10-15','10:51:34',694,0,'XRY','XRY0370','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',882,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-15 10:51:34','manshi','2025-10-15 10:51:34',0),(2622,2526,0,0,826,'2025-10-15','00:00:00',702,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',884,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-15 10:57:12','manshi','2025-10-15 10:57:25',0),(2623,2526,0,0,827,'2025-10-15','00:00:00',26,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',885,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-15 10:58:52','manshi','2025-10-15 10:59:13',0),(2624,2526,0,0,828,'2025-10-15','00:00:00',703,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',886,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 10:59:26','drashti','2025-10-15 11:00:07',0),(2625,2526,0,0,829,'2025-10-15','00:00:00',704,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',887,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-15 11:00:31','manshi','2025-10-15 11:13:54',0),(2626,2526,0,0,830,'2025-10-15','00:00:00',705,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',888,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 11:01:20','drashti','2025-10-15 11:01:54',0),(2627,2526,0,0,831,'2025-10-15','11:04:07',335,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',889,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 11:04:07','drashti','2025-10-15 11:04:07',0),(2628,2526,0,0,832,'2025-10-15','00:00:00',706,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',890,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 11:06:19','reception','2025-10-15 11:07:06',0),(2629,2526,0,0,833,'2025-10-15','00:00:00',707,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',893,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-15 11:09:21','manshi','2025-10-15 11:20:59',0),(2630,2526,0,0,834,'2025-10-15','00:00:00',708,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',891,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 11:11:34','drashti','2025-10-15 11:12:07',0),(2631,2526,0,0,836,'2025-10-15','00:00:00',709,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',895,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 11:19:10','drashti','2025-10-15 11:24:01',0),(2632,2526,0,0,837,'2025-10-15','00:00:00',710,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',894,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 11:20:19','reception','2025-10-15 11:21:04',0),(2633,2526,0,0,838,'2025-10-15','00:00:00',711,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',896,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 11:23:44','reception','2025-10-15 11:24:09',0),(2634,2526,0,0,839,'2025-10-15','00:00:00',712,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',897,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 11:23:57','janvi','2025-10-15 11:24:26',0),(2635,2526,0,0,840,'2025-10-15','00:00:00',713,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',898,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 11:25:12','janvi','2025-10-15 11:25:40',0),(2636,2526,0,0,841,'2025-10-15','11:25:00',451,61,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',43,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:28:12','riya','2025-10-16 18:31:39',0),(2637,2526,0,0,841,'2025-10-15','11:25:00',451,61,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',43,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:28:12','riya','2025-10-16 18:31:39',0),(2638,2526,0,0,841,'2025-10-15','11:25:00',451,61,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',2526,'H','I',43,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 23:58:12','riya','2025-10-16 18:31:39',0),(2639,2526,0,0,841,'2025-10-15','11:25:00',451,61,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',2526,'H','I',43,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 23:58:12','riya','2025-10-16 18:31:39',0),(2640,2526,0,0,841,'2025-10-15','11:25:00',451,61,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',2526,'H','I',43,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 23:58:12','riya','2025-10-16 18:31:39',0),(2641,2526,0,0,841,'2025-10-16','11:25:00',451,61,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',2526,'H','I',43,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 23:58:12','riya','2025-10-16 18:31:39',0),(2642,2526,0,0,841,'2025-10-15','11:25:00',451,61,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',2526,'H','I',43,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-14 23:58:12','riya','2025-10-16 18:31:39',0),(2643,2526,0,0,842,'2025-10-15','00:00:00',714,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',899,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 11:29:15','drashti','2025-10-15 11:30:01',0),(2644,2526,0,0,843,'2025-10-15','00:00:00',715,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',900,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 11:31:07','reception','2025-10-15 11:31:21',0),(2645,2526,0,0,826,'2025-10-15','11:33:34',702,0,'OPWD','OPWD0012','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,6,0,0,'',0,0,'','','','','',2526,'H','O',901,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-15 11:33:34','manshi','2025-10-15 11:33:34',0),(2646,2526,0,0,811,'2025-10-15','11:35:14',690,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',902,1,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 11:35:14','reception','2025-10-15 11:35:14',0),(2647,2526,0,0,811,'2025-10-15','11:35:14',690,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',902,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 11:35:14','reception','2025-10-15 11:35:14',0),(2648,2526,0,0,811,'2025-10-15','11:35:14',690,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',902,3,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 11:35:14','reception','2025-10-15 11:35:14',0),(2649,2526,0,0,844,'2025-10-15','00:00:00',716,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',903,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 11:38:55','reception','2025-10-15 11:39:27',0),(2650,2526,0,0,824,'2025-10-15','11:43:19',700,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',904,1,385,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 11:43:19','reception','2025-10-15 11:43:19',0),(2651,2526,0,0,824,'2025-10-15','11:43:19',700,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',904,2,77,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 11:43:19','reception','2025-10-15 11:43:19',0),(2652,2526,0,0,824,'2025-10-15','11:43:19',700,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',904,3,338,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 11:43:19','reception','2025-10-15 11:43:19',0),(2653,2526,0,0,845,'2025-10-15','11:45:24',47,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',905,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 11:45:24','janvi','2025-10-15 11:45:24',0),(2654,2526,0,0,846,'2025-10-15','00:00:00',717,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',906,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 11:49:15','drashti','2025-10-15 11:50:09',0),(2655,2526,0,0,487,'2025-10-14','14:10:00',60,36,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 00:21:33','vishal','2025-10-15 11:54:40',0),(2656,2526,0,0,487,'2025-10-14','14:10:00',60,36,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 00:21:33','vishal','2025-10-15 11:54:40',0),(2657,2526,0,0,487,'2025-10-14','14:10:00',60,36,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 00:21:33','vishal','2025-10-15 11:54:40',0),(2658,2526,0,0,487,'2025-10-14','14:10:00',60,36,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','409','','','',2526,'H','I',33,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 00:21:33','vishal','2025-10-15 11:59:02',0),(2659,2526,0,0,487,'2025-10-14','14:10:00',60,36,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','409','','','',2526,'H','I',33,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 00:21:33','vishal','2025-10-15 11:59:02',0),(2660,2526,0,0,847,'2025-10-15','00:00:00',718,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',907,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 11:51:40','drashti','2025-10-15 11:52:28',0),(2661,2526,0,0,848,'2025-10-15','00:00:00',719,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',908,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 11:52:17','janvi','2025-10-15 11:52:48',0),(2662,2526,0,0,849,'2025-10-15','00:00:00',720,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',909,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 11:52:54','reception','2025-10-15 11:53:27',0),(2663,2526,0,0,850,'2025-10-15','00:00:00',721,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',910,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 11:53:55','drashti','2025-10-15 11:54:36',0),(2664,2526,0,0,851,'2025-10-15','00:00:00',722,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',911,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 11:54:12','reception','2025-10-15 11:54:45',0),(2665,2526,0,0,487,'2025-10-11','11:51:00',60,36,'ROOM','ROOM0003','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:54:40','vishal','2025-10-15 11:57:47',0),(2666,2526,0,0,487,'2025-10-12','11:51:00',60,36,'ROOM','ROOM0003','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:54:40','','0000-00-00 00:00:00',0),(2667,2526,0,0,487,'2025-10-13','11:51:00',60,36,'ROOM','ROOM0003','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:54:40','','0000-00-00 00:00:00',0),(2668,2526,0,0,487,'2025-10-14','11:51:00',60,36,'ROOM','ROOM0003','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:54:40','','0000-00-00 00:00:00',0),(2669,2526,0,0,487,'2025-10-11','11:53:00',60,36,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:54:40','vishal','2025-10-15 11:57:47',0),(2670,2526,0,0,487,'2025-10-12','11:53:00',60,36,'CARE','CARE0005','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:54:40','vishal','2025-10-15 11:57:47',0),(2671,2526,0,0,487,'2025-10-13','11:53:00',60,36,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:54:40','','0000-00-00 00:00:00',0),(2672,2526,0,0,487,'2025-10-14','11:53:00',60,36,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:54:40','','0000-00-00 00:00:00',0),(2673,2526,0,0,487,'2025-10-11','11:53:00',60,36,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:54:40','vishal','2025-10-15 11:57:47',0),(2674,2526,0,0,487,'2025-10-12','11:53:00',60,36,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:54:40','vishal','2025-10-15 11:57:47',0),(2675,2526,0,0,487,'2025-10-13','11:53:00',60,36,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:54:40','','0000-00-00 00:00:00',0),(2676,2526,0,0,487,'2025-10-14','11:53:00',60,36,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:54:40','','0000-00-00 00:00:00',0),(2677,2526,0,0,487,'2025-10-14','11:55:00',60,36,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:57:47','','0000-00-00 00:00:00',0),(2678,2526,0,0,487,'2025-10-15','11:55:00',60,36,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:57:47','','0000-00-00 00:00:00',0),(2679,2526,0,0,487,'2025-10-13','11:56:00',60,36,'WPRC','WPRC0090','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:57:47','','0000-00-00 00:00:00',0),(2680,2526,0,0,487,'2025-10-14','11:57:00',60,36,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:57:47','','0000-00-00 00:00:00',0),(2681,2526,0,0,487,'2025-10-15','11:57:00',60,36,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:57:47','','0000-00-00 00:00:00',0),(2682,2526,0,0,487,'2025-10-15','11:58:00',60,36,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',33,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 11:59:02','','0000-00-00 00:00:00',0),(2683,2526,0,0,216,'2025-10-14','12:30:00',166,16,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 00:30:41','vishal','2025-10-15 12:03:01',0),(2684,2526,0,0,216,'2025-10-14','12:30:00',166,16,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 00:30:41','vishal','2025-10-15 12:03:01',0),(2685,2526,0,0,216,'2025-10-14','12:30:00',166,16,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 00:30:41','vishal','2025-10-15 12:05:00',0),(2686,2526,0,0,216,'2025-10-14','12:30:00',166,16,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 00:30:41','vishal','2025-10-15 12:04:03',0),(2687,2526,0,0,216,'2025-10-14','12:30:00',166,16,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','402','','','',2526,'H','I',34,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 00:30:41','vishal','2025-10-15 12:04:03',0),(2688,2526,0,0,216,'2025-10-09','12:00:00',166,16,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',34,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 12:03:01','vishal','2025-10-15 12:04:03',0),(2689,2526,0,0,216,'2025-10-09','12:00:00',166,16,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',34,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 12:03:01','vishal','2025-10-15 12:04:03',0),(2690,2526,0,0,216,'2025-10-15','12:02:00',166,16,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',34,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 12:03:01','','0000-00-00 00:00:00',0),(2691,2526,0,0,216,'2025-10-13','12:03:00',166,16,'WPRC','WPRC0090','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',34,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 12:04:03','vishal','2025-10-15 12:05:00',0),(2692,2526,0,0,852,'2025-10-15','00:00:00',723,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',912,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 12:06:57','drashti','2025-10-15 12:08:38',0),(2693,2526,0,0,854,'2025-10-15','00:00:00',724,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',914,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 12:10:10','drashti','2025-10-15 12:10:28',0),(2694,2526,0,0,837,'2025-10-15','12:10:21',710,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',913,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 12:10:21','reception','2025-10-15 12:10:21',0),(2695,2526,0,0,855,'2025-10-15','00:00:00',725,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',915,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 12:11:53','janvi','2025-10-15 12:12:07',0),(2696,2526,0,0,853,'2025-10-15','12:12:48',476,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',916,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 12:12:48','janvi','2025-10-15 12:12:48',0),(2697,2526,0,0,853,'2025-10-15','12:12:48',476,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',916,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 12:12:48','janvi','2025-10-15 12:12:48',0),(2698,2526,0,0,856,'2025-10-15','00:00:00',726,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',917,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 12:13:16','reception','2025-10-15 12:13:46',0),(2699,2526,0,0,839,'2025-10-15','12:15:12',712,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',918,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 12:15:12','drashti','2025-10-15 12:15:12',0),(2700,2526,0,0,858,'2025-10-15','00:00:00',727,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',919,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 12:20:27','janvi','2025-10-15 12:21:26',0),(2701,2526,0,0,859,'2025-10-15','00:00:00',728,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',920,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 12:20:34','drashti','2025-10-15 12:21:33',0),(2702,2526,0,0,860,'2025-10-15','00:00:00',729,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',921,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-15 12:23:49','manshi','2025-10-15 12:25:01',0),(2703,2526,0,0,861,'2025-10-15','00:00:00',730,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',923,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 12:27:05','janvi','2025-10-15 12:28:18',0),(2704,2526,0,0,844,'2025-10-15','12:27:36',716,0,'NEU1','NEU10020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',922,1,400,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 12:27:36','reception','2025-10-15 12:27:36',0),(2705,2526,0,0,844,'2025-10-15','12:27:36',716,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',922,2,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 12:27:36','reception','2025-10-15 12:27:36',0),(2706,2526,0,0,851,'2025-10-15','12:30:40',722,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',924,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 12:30:40','reception','2025-10-15 12:30:40',0),(2707,2526,0,0,862,'2025-10-15','00:00:00',731,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',925,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 12:31:02','drashti','2025-10-15 12:32:06',0),(2708,2526,0,0,690,'2025-10-15','10:00:00',0,55,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 01:03:37','vishal','2025-10-15 12:38:09',0),(2709,2526,0,0,690,'2025-10-15','10:00:00',0,55,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 01:03:37','vishal','2025-10-15 12:38:09',0),(2710,2526,0,0,690,'2025-10-15','10:00:00',0,55,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 01:03:37','vishal','2025-10-15 12:38:09',0),(2711,2526,0,0,690,'2025-10-15','10:00:00',0,55,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',2526,'H','I',38,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 01:03:37','vishal','2025-10-15 12:38:33',0),(2712,2526,0,0,690,'2025-10-15','10:00:00',0,55,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 01:03:37','vishal','2025-10-15 12:38:09',0),(2713,2526,0,0,863,'2025-10-15','00:00:00',732,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',926,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 12:35:04','reception','2025-10-15 12:35:52',0),(2714,2526,0,0,690,'2025-10-14','12:37:00',0,55,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',38,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 12:38:09','vishal','2025-10-15 12:38:33',0),(2715,2526,0,0,690,'2025-10-15','12:37:00',0,55,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',38,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 12:38:09','','0000-00-00 00:00:00',0),(2716,2526,0,0,864,'2025-10-15','00:00:00',733,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',927,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 12:40:03','reception','2025-10-15 12:40:43',0),(2717,2526,0,0,701,'2025-10-14','12:42:00',595,56,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',36,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 12:43:34','','0000-00-00 00:00:00',0),(2718,2526,0,0,701,'2025-10-15','12:42:00',595,56,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',36,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 12:43:34','','0000-00-00 00:00:00',0),(2719,2526,0,0,865,'2025-10-15','00:00:00',734,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',928,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 12:50:47','drashti','2025-10-15 12:52:23',0),(2720,2526,0,0,690,'2025-10-14','12:52:00',0,55,'SURG','SURG0014','H','N',1.00,15000,15000,'P',0,0,0.00,0.00,15000.00,15000,3,0,0,'',0,0,'','','','','',2526,'H','I',38,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 12:53:43','','0000-00-00 00:00:00',0),(2721,2526,0,0,690,'2025-10-14','12:52:00',0,55,'SURG','SURG0015','H','N',1.00,3750,3750,'P',0,0,0.00,0.00,3750.00,3750,3,0,0,'',0,0,'','','','','',2526,'H','I',38,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 12:53:43','','0000-00-00 00:00:00',0),(2722,2526,0,0,866,'2025-10-15','00:00:00',735,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',929,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 13:00:01','reception','2025-10-15 13:00:18',0),(2723,2526,0,0,856,'2025-10-15','13:05:03',726,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',930,1,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 13:05:03','reception','2025-10-15 13:05:03',0),(2724,2526,0,0,856,'2025-10-15','13:05:03',726,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',930,2,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 13:05:03','reception','2025-10-15 13:05:03',0),(2725,2526,0,0,856,'2025-10-15','13:05:03',726,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',930,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 13:05:03','reception','2025-10-15 13:05:03',0),(2726,2526,0,0,743,'2025-10-14','13:50:00',619,58,'SURG','SURG0014','H','N',1.00,8600,8600,'P',0,0,0.00,0.00,8600.00,8600,3,0,0,'',0,0,'','','','','',2526,'H','I',35,1,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 13:05:27','vishal','2025-10-15 13:32:01',0),(2727,2526,0,0,743,'2025-10-14','13:50:00',619,58,'SURG','SURG0015','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,3,0,0,'',0,0,'','','','','',2526,'H','I',35,2,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 13:05:27','vishal','2025-10-15 13:32:01',0),(2728,2526,0,0,867,'2025-10-15','00:00:00',736,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',931,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 13:06:17','drashti','2025-10-15 13:07:05',0),(2729,2526,0,0,869,'2025-10-15','00:00:00',737,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',932,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 13:23:34','reception','2025-10-15 13:23:55',0),(2730,2526,0,0,870,'2025-10-15','00:00:00',738,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',933,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 13:25:48','reception','2025-10-15 14:08:52',0),(2731,2526,0,0,871,'2025-10-15','13:23:00',721,62,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',45,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 13:29:27','vishal','2025-10-17 09:31:05',0),(2732,2526,0,0,871,'2025-10-15','13:23:00',721,62,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',45,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 13:29:27','vishal','2025-10-17 09:31:05',0),(2733,2526,0,0,871,'2025-10-15','13:23:00',721,62,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',45,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 01:59:27','vishal','2025-10-17 09:31:05',0),(2734,2526,0,0,871,'2025-10-15','13:23:00',721,62,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',45,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 01:59:27','vishal','2025-10-17 09:31:05',0),(2735,2526,0,0,871,'2025-10-15','13:23:00',721,62,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',45,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 01:59:27','vishal','2025-10-17 09:31:05',0),(2736,2526,0,0,871,'2025-10-17','13:23:00',721,62,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',45,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 01:59:27','vishal','2025-10-17 09:31:51',0),(2737,2526,0,0,871,'2025-10-15','13:23:00',721,62,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',45,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 01:59:27','vishal','2025-10-17 09:31:05',0),(2738,2526,0,0,816,'2025-10-15','13:30:20',694,0,'OPWD','OPWD0012','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',934,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-15 13:30:20','manshi','2025-10-15 13:30:20',0),(2739,2526,0,0,701,'2025-10-14','13:41:00',595,56,'SURG','SURG0014','H','N',1.00,22000,22000,'A',0,0,0.00,0.00,22000.00,22000,3,0,0,'',0,0,'','','','','',2526,'H','I',36,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 13:41:58','vishal','2025-10-15 13:42:57',0),(2740,2526,0,0,701,'2025-10-14','13:41:00',595,56,'SURG','SURG0015','H','N',1.00,7200,7200,'P',0,0,0.00,0.00,7200.00,7200,3,0,0,'',0,0,'','','','','',2526,'H','I',36,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 13:41:58','','0000-00-00 00:00:00',0),(2741,2526,0,0,823,'2025-10-15','13:48:40',699,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',935,1,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 13:48:40','reception','2025-10-15 13:48:40',0),(2742,2526,0,0,823,'2025-10-15','13:48:40',699,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',935,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 13:48:40','reception','2025-10-15 13:48:40',0),(2743,2526,0,0,823,'2025-10-15','13:48:40',699,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',935,3,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 13:48:40','reception','2025-10-15 13:48:40',0),(2744,2526,0,0,872,'2025-10-15','00:00:00',739,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-15 13:50:19','manshi','2025-10-15 02:20:19',0),(2745,2526,0,0,868,'2025-10-15','13:50:20',440,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',936,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 13:50:20','drashti','2025-10-15 13:50:20',0),(2746,2526,0,0,873,'2025-10-15','00:00:00',740,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-15 13:52:37','manshi','2025-10-15 02:22:37',0),(2747,2526,0,0,867,'2025-10-15','14:03:09',736,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',937,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 14:03:09','reception','2025-10-15 14:03:09',0),(2748,2526,0,0,874,'2025-10-15','00:00:00',741,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',939,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-15 16:03:49','priyanshi','2025-10-15 16:04:22',0),(2749,2526,0,0,875,'2025-10-15','00:00:00',742,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',940,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 16:30:34','reception','2025-10-15 16:31:33',0),(2750,2526,0,0,876,'2025-10-15','00:00:00',743,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',941,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-15 16:32:33','priyanshi','2025-10-15 16:33:47',0),(2751,2526,0,0,877,'2025-10-15','00:00:00',744,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-15 16:42:37','priyanshi','2025-10-15 05:12:37',0),(2752,2526,0,0,878,'2025-10-15','00:00:00',745,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-15 16:50:32','priyanshi','2025-10-15 05:20:32',0),(2753,2526,0,0,879,'2025-10-15','00:00:00',746,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',942,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 17:00:44','reception','2025-10-15 17:01:20',0),(2754,2526,0,0,880,'2025-10-15','00:00:00',747,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',943,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-15 17:02:32','priyanshi','2025-10-15 17:02:57',0),(2755,2526,0,0,881,'2025-10-15','00:00:00',748,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',944,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 17:07:03','reception','2025-10-15 17:07:49',0),(2756,2526,0,0,882,'2025-10-15','17:00:00',0,63,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',49,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 17:10:52','riya','2025-10-16 20:31:51',0),(2757,2526,0,0,882,'2025-10-15','17:00:00',0,63,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',49,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 17:10:52','riya','2025-10-16 20:31:51',0),(2758,2526,0,0,882,'2025-10-15','17:00:00',0,63,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 05:40:53','riya','2025-10-16 20:31:51',0),(2759,2526,0,0,882,'2025-10-15','17:00:00',0,63,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 05:40:53','riya','2025-10-16 20:31:51',0),(2760,2526,0,0,882,'2025-10-15','17:00:00',0,63,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 05:40:53','riya','2025-10-16 20:31:51',0),(2761,2526,0,0,882,'2025-10-15','17:00:00',0,63,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','209','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-15 05:40:53','riya','2025-10-16 20:31:51',0),(2762,2526,0,0,882,'2025-10-15','17:00:00',0,63,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 05:40:53','riya','2025-10-16 20:31:51',0),(2763,2526,0,0,883,'2025-10-15','00:00:00',749,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',945,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 17:18:15','reception','2025-10-15 18:06:42',0),(2764,2526,0,0,880,'2025-10-15','17:29:39',747,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',946,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 17:29:39','reception','2025-10-15 17:29:39',0),(2765,2526,0,0,880,'2025-10-15','17:29:39',747,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',946,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 17:29:39','reception','2025-10-15 17:29:39',0),(2766,2526,0,0,884,'2025-10-15','17:32:41',211,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',947,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 17:32:41','janvi','2025-10-15 18:44:16',0),(2767,2526,0,0,885,'2025-10-15','00:00:00',750,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',948,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 17:35:34','reception','2025-10-15 17:36:16',0),(2768,2526,0,0,886,'2025-10-15','00:00:00',751,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',949,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 17:40:50','drashti','2025-10-15 17:41:31',0),(2769,2526,0,0,887,'2025-10-15','00:00:00',752,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',950,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 17:41:34','janvi','2025-10-15 17:44:36',0),(2770,2526,0,0,888,'2025-10-15','00:00:00',753,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',951,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 17:45:14','drashti','2025-10-15 17:45:48',0),(2771,2526,0,0,889,'2025-10-15','00:00:00',754,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',952,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 17:45:40','janvi','2025-10-15 17:46:40',0),(2772,2526,0,0,874,'2025-10-15','17:48:06',741,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',953,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 17:48:06','reception','2025-10-15 17:48:06',0),(2773,2526,0,0,874,'2025-10-15','17:48:06',741,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',953,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 17:48:06','reception','2025-10-15 17:48:06',0),(2774,2526,0,0,874,'2025-10-15','17:48:06',741,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',953,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 17:48:06','reception','2025-10-15 17:48:06',0),(2775,2526,0,0,890,'2025-10-15','00:00:00',755,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',954,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 17:50:06','reception','2025-10-15 17:50:38',0),(2776,2526,0,0,891,'2025-10-15','17:50:58',245,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',955,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 17:50:58','drashti','2025-10-15 17:50:58',0),(2777,2526,0,0,892,'2025-10-15','00:00:00',756,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',956,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 17:51:51','drashti','2025-10-15 17:52:37',0),(2778,2526,0,0,893,'2025-10-15','00:00:00',757,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',957,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 17:54:34','janvi','2025-10-15 17:55:13',0),(2779,2526,0,0,224,'2025-10-14','14:30:00',116,17,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:26:22','riya','2025-10-15 17:59:44',0),(2780,2526,0,0,224,'2025-10-15','14:30:00',116,17,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:26:22','riya','2025-10-15 17:59:44',0),(2781,2526,0,0,224,'2025-10-14','14:30:00',116,17,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:26:22','riya','2025-10-15 17:59:44',0),(2782,2526,0,0,224,'2025-10-15','14:30:00',116,17,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:26:22','riya','2025-10-15 17:59:44',0),(2783,2526,0,0,224,'2025-10-14','14:30:00',116,17,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:26:22','riya','2025-10-15 17:59:44',0),(2784,2526,0,0,224,'2025-10-15','14:30:00',116,17,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:26:22','riya','2025-10-15 17:59:44',0),(2785,2526,0,0,224,'2025-10-14','14:30:00',116,17,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:26:22','riya','2025-10-15 17:59:44',0),(2786,2526,0,0,224,'2025-10-15','14:30:00',116,17,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:26:22','riya','2025-10-15 17:59:44',0),(2787,2526,0,0,224,'2025-10-14','14:30:00',116,17,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:26:22','riya','2025-10-15 17:59:44',0),(2788,2526,0,0,224,'2025-10-15','14:30:00',116,17,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',44,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:26:22','riya','2025-10-15 17:59:44',0),(2789,2526,0,0,894,'2025-10-15','00:00:00',758,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',958,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 17:58:40','reception','2025-10-15 17:59:23',0),(2790,2526,0,0,224,'2025-10-13','17:56:00',116,17,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 17:59:44','','0000-00-00 00:00:00',0),(2791,2526,0,0,224,'2025-10-14','17:56:00',116,17,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 17:59:44','','0000-00-00 00:00:00',0),(2792,2526,0,0,224,'2025-10-15','17:57:00',116,17,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 17:59:44','','0000-00-00 00:00:00',0),(2793,2526,0,0,224,'2025-10-13','17:57:00',116,17,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 17:59:44','','0000-00-00 00:00:00',0),(2794,2526,0,0,224,'2025-10-13','17:57:00',116,17,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 17:59:44','','0000-00-00 00:00:00',0),(2795,2526,0,0,224,'2025-10-15','17:58:00',116,17,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 17:59:44','','0000-00-00 00:00:00',0),(2796,2526,0,0,284,'2025-10-14','23:00:00',0,21,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,63,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:30:31','vishal','2025-10-17 14:27:58',0),(2797,2526,0,0,284,'2025-10-14','23:00:00',0,21,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,64,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:30:31','vishal','2025-10-17 14:27:58',0),(2798,2526,0,0,284,'2025-10-14','23:00:00',0,21,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:30:31','vishal','2025-10-17 14:47:01',0),(2799,2526,0,0,284,'2025-10-14','23:00:00',0,21,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,66,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:30:31','vishal','2025-10-17 14:25:33',0),(2800,2526,0,0,284,'2025-10-14','23:00:00',0,21,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,68,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:30:31','vishal','2025-10-17 14:27:58',0),(2801,2526,0,0,284,'2025-10-15','18:00:00',0,21,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:02:33','vishal','2025-10-17 14:47:01',0),(2802,2526,0,0,284,'2025-10-14','18:01:00',0,21,'WPRC','WPRC0077','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:02:33','vishal','2025-10-17 14:47:01',0),(2803,2526,0,0,284,'2025-10-15','18:01:00',0,21,'WPRC','WPRC0077','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:02:33','vishal','2025-10-17 14:47:01',0),(2804,2526,0,0,284,'2025-10-15','18:05:00',0,21,'DRC','DRC0020','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:06:22','vishal','2025-10-17 14:47:01',0),(2805,2526,0,0,284,'2025-10-15','18:05:00',0,21,'DRC','DRC0020','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:06:22','vishal','2025-10-17 14:47:01',0),(2806,2526,0,0,883,'2025-10-15','18:08:23',749,0,'PKG','CASE','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',960,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 18:08:23','reception','2025-10-15 18:08:23',0),(2807,2526,0,0,896,'2025-10-15','00:00:00',759,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',962,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-15 18:08:31','manshi','2025-10-15 18:09:08',0),(2808,2526,0,0,803,'2025-10-14','18:07:00',0,59,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',41,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:08:45','','0000-00-00 00:00:00',0),(2809,2526,0,0,803,'2025-10-14','18:07:00',0,59,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',41,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:08:45','','0000-00-00 00:00:00',0),(2810,2526,0,0,803,'2025-10-15','18:07:00',0,59,'ROOM','ROOM0008','H','N',4.00,100,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',41,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:08:45','vishal','2025-10-16 12:36:09',0),(2811,2526,0,0,803,'2025-10-15','18:07:00',0,59,'XRY','WPRC0090','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',41,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:08:45','vishal','2025-10-16 12:36:09',0),(2812,2526,0,0,803,'2025-10-14','18:08:00',0,59,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',41,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:08:45','vishal','2025-10-16 12:36:09',0),(2813,2526,0,0,895,'2025-10-15','18:08:55',528,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',961,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 18:08:55','drashti','2025-10-15 18:08:55',0),(2814,2526,0,0,645,'2025-10-14','18:40:00',0,46,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',39,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:39:14','riya','2025-10-15 18:11:15',0),(2815,2526,0,0,645,'2025-10-14','18:40:00',0,46,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',39,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:39:14','riya','2025-10-15 18:11:15',0),(2816,2526,0,0,645,'2025-10-14','18:40:00',0,46,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',39,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:39:14','riya','2025-10-15 18:11:15',0),(2817,2526,0,0,645,'2025-10-15','18:40:00',0,46,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','401','','','',2526,'H','I',39,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:39:14','vishal','2025-10-16 11:29:00',0),(2818,2526,0,0,645,'2025-10-15','18:40:00',0,46,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','401','','','',2526,'H','I',39,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:39:14','vishal','2025-10-16 11:21:52',0),(2819,2526,0,0,645,'2025-10-13','18:09:00',0,46,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',39,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:11:15','','0000-00-00 00:00:00',0),(2820,2526,0,0,645,'2025-10-14','18:09:00',0,46,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',39,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:11:15','','0000-00-00 00:00:00',0),(2821,2526,0,0,645,'2025-10-15','18:10:00',0,46,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',39,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:11:15','','0000-00-00 00:00:00',0),(2822,2526,0,0,645,'2025-10-15','18:10:00',0,46,'WPRC','WPRC0089','H','N',2.00,100,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',39,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:11:15','vishal','2025-10-16 11:29:00',0),(2823,2526,0,0,897,'2025-10-15','00:00:00',760,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',963,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 18:11:56','reception','2025-10-15 18:12:38',0),(2824,2526,0,0,898,'2025-10-15','18:13:21',293,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',964,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 18:13:21','drashti','2025-10-15 18:13:21',0),(2825,2526,0,0,574,'2025-10-15','11:30:00',481,44,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',37,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:43:49','riya','2025-10-15 18:15:34',0),(2826,2526,0,0,574,'2025-10-15','11:30:00',481,44,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',37,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:43:49','riya','2025-10-15 18:15:34',0),(2827,2526,0,0,574,'2025-10-15','11:30:00',481,44,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',37,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:43:49','riya','2025-10-15 18:15:34',0),(2828,2526,0,0,574,'2025-10-15','11:30:00',481,44,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','305','','','',2526,'H','I',37,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:43:49','riya','2025-10-15 18:15:34',0),(2829,2526,0,0,574,'2025-10-15','11:30:00',481,44,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','305','','','',2526,'H','I',37,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:43:49','riya','2025-10-15 18:15:34',0),(2830,2526,0,0,899,'2025-10-15','00:00:00',9,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',965,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 18:14:57','janvi','2025-10-15 18:15:35',0),(2831,2526,0,0,900,'2025-10-15','00:00:00',761,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',966,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 18:15:19','reception','2025-10-15 18:16:01',0),(2832,2526,0,0,574,'2025-10-13','18:14:00',481,44,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',37,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:15:34','','0000-00-00 00:00:00',0),(2833,2526,0,0,574,'2025-10-13','18:14:00',481,44,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',37,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:15:34','','0000-00-00 00:00:00',0),(2834,2526,0,0,574,'2025-10-14','18:14:00',481,44,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',37,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:15:34','','0000-00-00 00:00:00',0),(2835,2526,0,0,574,'2025-10-15','18:14:00',481,44,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',37,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:15:34','','0000-00-00 00:00:00',0),(2836,2526,0,0,470,'2025-10-15','11:40:00',131,34,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:46:14','riya','2025-10-15 18:21:46',0),(2837,2526,0,0,470,'2025-10-15','11:40:00',131,34,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:46:14','riya','2025-10-15 18:21:46',0),(2838,2526,0,0,470,'2025-10-15','11:40:00',131,34,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:46:14','vishal','2025-10-16 12:04:32',0),(2839,2526,0,0,470,'2025-10-15','11:40:00',131,34,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',0,'','',0,33,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:46:14','vishal','2025-10-16 12:02:58',0),(2840,2526,0,0,470,'2025-10-15','11:40:00',131,34,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',2526,'H','I',40,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 06:46:14','riya','2025-10-15 18:21:46',0),(2841,2526,0,0,901,'2025-10-15','18:17:30',753,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',967,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 18:17:30','janvi','2025-10-15 18:17:30',0),(2842,2526,0,0,470,'2025-10-13','18:16:00',131,34,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',40,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:18:59','riya','2025-10-15 18:21:46',0),(2843,2526,0,0,470,'2025-10-14','18:16:00',131,34,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',40,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:18:59','riya','2025-10-15 18:21:46',0),(2844,2526,0,0,470,'2025-10-15','18:16:00',131,34,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',40,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:18:59','','0000-00-00 00:00:00',0),(2845,2526,0,0,470,'2025-10-13','18:17:00',131,34,'ROOM','ROOM0004','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',40,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:18:59','riya','2025-10-15 18:21:46',0),(2846,2526,0,0,470,'2025-10-14','18:17:00',131,34,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',40,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:18:59','vishal','2025-10-16 12:04:32',0),(2847,2526,0,0,470,'2025-10-15','18:17:00',131,34,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,37,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 18:18:59','vishal','2025-10-16 12:02:58',0),(2848,2526,0,0,893,'2025-10-15','18:22:01',757,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,26,'',0,0,'','','','','',2526,'H','O',968,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'janvi','2025-10-15 18:22:01','janvi','2025-10-15 18:22:01',0),(2849,2526,0,0,902,'2025-10-15','00:00:00',762,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',969,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 18:23:13','reception','2025-10-15 18:23:53',0),(2850,2526,0,0,903,'2025-10-15','00:00:00',763,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',970,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 18:25:50','drashti','2025-10-15 18:26:42',0),(2851,2526,0,0,904,'2025-10-15','00:00:00',764,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',971,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 18:29:34','reception','2025-10-15 18:30:06',0),(2852,2526,0,0,906,'2025-10-15','00:00:00',765,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',972,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 18:30:52','reception','2025-10-15 18:31:30',0),(2853,2526,0,0,892,'2025-10-15','18:31:47',756,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',973,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 18:31:47','janvi','2025-10-15 18:31:47',0),(2854,2526,0,0,862,'2025-10-15','18:32:36',731,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',974,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 18:32:36','janvi','2025-10-15 18:32:36',0),(2855,2526,0,0,896,'2025-10-15','18:33:18',759,0,'XRY','XRY0244','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',975,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-15 18:33:18','manshi','2025-10-15 18:33:18',0),(2856,2526,0,0,890,'2025-10-15','18:33:25',755,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',976,1,471,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 18:33:25','reception','2025-10-15 18:33:25',0),(2857,2526,0,0,890,'2025-10-15','18:33:25',755,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',976,2,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 18:33:25','reception','2025-10-15 18:33:25',0),(2858,2526,0,0,890,'2025-10-15','18:33:25',755,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',976,3,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 18:33:25','reception','2025-10-15 18:33:25',0),(2859,2526,0,0,907,'2025-10-15','00:00:00',766,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',979,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 18:34:00','reception','2025-10-15 18:35:51',0),(2860,2526,0,0,908,'2025-10-15','00:00:00',767,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',977,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 18:34:41','drashti','2025-10-15 18:35:08',0),(2861,2526,0,0,909,'2025-10-15','00:00:00',768,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',978,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 18:35:19','janvi','2025-10-15 18:35:40',0),(2862,2526,0,0,910,'2025-10-15','00:00:00',769,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 18:36:23','janvi','2025-10-15 07:06:23',0),(2863,2526,0,0,911,'2025-10-15','00:00:00',770,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',980,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 18:38:56','janvi','2025-10-15 18:40:04',0),(2864,2526,0,0,912,'2025-10-15','00:00:00',771,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',982,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 18:39:59','drashti','2025-10-15 18:41:36',0),(2865,2526,0,0,910,'2025-10-15','18:40:09',769,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',981,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',5,'janvi','2025-10-15 18:40:09','janvi','2025-10-15 18:40:09',0),(2866,2526,0,0,910,'2025-10-15','18:40:09',769,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,27,'',0,0,'','','','','',2526,'H','O',981,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',5,'janvi','2025-10-15 18:40:09','janvi','2025-10-15 18:40:09',0),(2867,2526,0,0,913,'2025-10-15','00:00:00',772,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',983,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-15 18:40:21','manshi','2025-10-15 18:41:44',0),(2868,2526,0,0,915,'2025-10-15','00:00:00',773,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',985,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 18:42:46','drashti','2025-10-15 18:44:39',0),(2869,2526,0,0,489,'2025-10-15','17:00:00',0,38,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:13:40','riya','2025-10-15 19:13:56',0),(2870,2526,0,0,489,'2025-10-14','17:00:00',0,38,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:13:40','riya','2025-10-15 19:13:56',0),(2871,2526,0,0,489,'2025-10-15','17:00:00',0,38,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:13:40','riya','2025-10-15 19:13:56',0),(2872,2526,0,0,489,'2025-10-14','17:00:00',0,38,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:13:40','riya','2025-10-15 19:13:56',0),(2873,2526,0,0,489,'2025-10-15','17:00:00',0,38,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:13:40','riya','2025-10-15 19:13:56',0),(2874,2526,0,0,489,'2025-10-14','17:00:00',0,38,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:13:40','riya','2025-10-15 19:13:56',0),(2875,2526,0,0,489,'2025-10-15','17:00:00',0,38,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:13:40','riya','2025-10-15 19:13:56',0),(2876,2526,0,0,489,'2025-10-14','17:00:00',0,38,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:13:40','riya','2025-10-15 19:13:56',0),(2877,2526,0,0,489,'2025-10-15','17:00:00',0,38,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:13:40','riya','2025-10-15 19:13:56',0),(2878,2526,0,0,489,'2025-10-14','17:00:00',0,38,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:13:40','riya','2025-10-15 19:13:56',0),(2879,2526,0,0,645,'2025-10-15','18:40:00',0,46,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',39,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:16:49','riya','2025-10-15 18:46:53',0),(2880,2526,0,0,645,'2025-10-15','18:40:00',0,46,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',39,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:16:49','riya','2025-10-15 18:46:53',0),(2881,2526,0,0,645,'2025-10-16','18:40:00',0,46,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','401','','','',2526,'H','I',39,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:16:49','vishal','2025-10-16 11:29:00',0),(2882,2526,0,0,645,'2025-10-15','18:40:00',0,46,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','401','','','',0,'','',0,20,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:16:49','vishal','2025-10-16 11:21:52',0),(2883,2526,0,0,645,'2025-10-15','18:40:00',0,46,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',39,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:16:49','riya','2025-10-15 18:46:53',0),(2884,2526,0,0,916,'2025-10-15','00:00:00',774,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',986,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 18:49:02','reception','2025-10-15 18:50:12',0),(2885,2526,0,0,917,'2025-10-15','00:00:00',775,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',987,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 18:51:25','janvi','2025-10-15 18:52:48',0),(2886,2526,0,0,917,'2025-10-15','18:53:56',775,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',989,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 18:53:56','janvi','2025-10-15 18:53:56',0),(2887,2526,0,0,918,'2025-10-15','00:00:00',776,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',990,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 18:54:03','reception','2025-10-15 18:54:34',0),(2888,2526,0,0,906,'2025-10-15','18:57:54',765,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',991,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 18:57:54','reception','2025-10-15 18:57:54',0),(2889,2526,0,0,906,'2025-10-15','18:57:54',765,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',991,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 18:57:54','reception','2025-10-15 18:57:54',0),(2890,2526,0,0,920,'2025-10-15','00:00:00',777,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',992,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 19:08:07','reception','2025-10-15 19:08:35',0),(2891,2526,0,0,921,'2025-10-15','00:00:00',778,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',993,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 19:09:57','janvi','2025-10-15 19:10:29',0),(2892,2526,0,0,489,'2025-10-15','19:06:00',0,38,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 19:13:56','','0000-00-00 00:00:00',0),(2893,2526,0,0,489,'2025-10-15','19:07:00',0,38,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 19:13:56','','0000-00-00 00:00:00',0),(2894,2526,0,0,489,'2025-10-14','19:12:00',0,38,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 19:13:56','','0000-00-00 00:00:00',0),(2895,2526,0,0,489,'2025-10-15','19:12:00',0,38,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,49,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 19:13:56','riya','2025-10-16 20:59:04',0),(2896,2526,0,0,489,'2025-10-15','19:13:00',0,38,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 19:13:56','riya','2025-10-16 20:59:04',0),(2897,2526,0,0,922,'2025-10-15','19:14:13',140,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',994,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 19:14:13','janvi','2025-10-15 19:14:13',0),(2898,2526,0,0,916,'2025-10-15','19:14:50',774,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',995,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 19:14:50','reception','2025-10-15 19:14:50',0),(2899,2526,0,0,916,'2025-10-15','19:14:50',774,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',995,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 19:14:50','reception','2025-10-15 19:14:50',0),(2900,2526,0,0,916,'2025-10-15','19:14:50',774,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',995,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 19:14:50','reception','2025-10-15 19:14:50',0),(2901,2526,0,0,910,'2025-10-15','19:19:49',769,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',996,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 19:19:49','janvi','2025-10-15 19:19:49',0),(2902,2526,0,0,246,'2025-10-15','18:00:00',0,18,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:51:08','riya','2025-10-15 19:22:38',0),(2903,2526,0,0,246,'2025-10-14','18:00:00',0,18,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','310','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:51:08','riya','2025-10-15 19:22:38',0),(2904,2526,0,0,246,'2025-10-15','18:00:00',0,18,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:51:08','riya','2025-10-15 19:22:38',0),(2905,2526,0,0,246,'2025-10-14','18:00:00',0,18,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','310','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:51:08','riya','2025-10-15 19:22:38',0),(2906,2526,0,0,246,'2025-10-15','18:00:00',0,18,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:51:08','riya','2025-10-15 19:22:38',0),(2907,2526,0,0,246,'2025-10-14','18:00:00',0,18,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','310','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:51:08','riya','2025-10-15 19:22:38',0),(2908,2526,0,0,246,'2025-10-15','18:00:00',0,18,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','208','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:51:08','riya','2025-10-15 19:22:38',0),(2909,2526,0,0,246,'2025-10-14','18:00:00',0,18,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','310','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:51:08','riya','2025-10-15 19:22:38',0),(2910,2526,0,0,246,'2025-10-15','18:00:00',0,18,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','208','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:51:08','riya','2025-10-15 19:22:38',0),(2911,2526,0,0,246,'2025-10-14','18:00:00',0,18,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','310','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 07:51:08','riya','2025-10-15 19:22:38',0),(2912,2526,0,0,923,'2025-10-15','00:00:00',779,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',997,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 19:21:20','reception','2025-10-15 19:21:58',0),(2913,2526,0,0,924,'2025-10-15','00:00:00',780,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',999,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 19:24:29','drashti','2025-10-15 19:25:48',0),(2914,2526,0,0,925,'2025-10-15','00:00:00',781,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',998,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 19:24:46','janvi','2025-10-15 19:25:18',0),(2915,2526,0,0,246,'2025-10-14','19:23:00',0,18,'ROOM','ROOM0008','H','N',12.00,100,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 19:28:06','riya','2025-10-18 11:05:08',0),(2916,2526,0,0,246,'2025-10-15','19:23:00',0,18,'ROOM','ROOM0008','H','N',7.00,100,700,'P',0,0,0.00,0.00,700.00,700,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 19:28:06','riya','2025-10-18 11:05:08',0),(2917,2526,0,0,246,'2025-10-15','19:24:00',0,18,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 19:28:06','','0000-00-00 00:00:00',0),(2918,2526,0,0,246,'2025-10-15','19:24:00',0,18,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 19:28:06','','0000-00-00 00:00:00',0),(2919,2526,0,0,246,'2025-10-15','19:25:00',0,18,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 19:28:06','','0000-00-00 00:00:00',0),(2920,2526,0,0,246,'2025-10-15','19:29:00',0,18,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 19:31:13','','0000-00-00 00:00:00',0),(2921,2526,0,0,246,'2025-10-15','19:30:00',0,18,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 19:31:13','','0000-00-00 00:00:00',0),(2922,2526,0,0,926,'2025-10-15','00:00:00',782,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1000,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 19:37:36','janvi','2025-10-15 19:38:03',0),(2923,2526,0,0,927,'2025-10-15','00:00:00',783,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1001,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 19:38:10','janvi','2025-10-15 20:04:02',0),(2924,2526,0,0,928,'2025-10-15','00:00:00',784,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1002,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 19:42:37','reception','2025-10-15 19:43:56',0),(2925,2526,0,0,929,'2025-10-15','00:00:00',785,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1003,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 19:43:44','janvi','2025-10-15 19:45:09',0),(2926,2526,0,0,929,'2025-10-15','19:53:50',785,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',1004,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 19:53:50','janvi','2025-10-15 19:53:50',0),(2927,2526,0,0,930,'2025-10-15','00:00:00',786,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1005,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 19:57:50','reception','2025-10-15 20:00:40',0),(2928,2526,0,0,246,'2025-10-14','19:59:00',0,18,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 20:02:05','','0000-00-00 00:00:00',0),(2929,2526,0,0,246,'2025-10-15','20:00:00',0,18,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 20:02:05','','0000-00-00 00:00:00',0),(2930,2526,0,0,246,'2025-10-13','20:00:00',0,18,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 20:02:05','','0000-00-00 00:00:00',0),(2931,2526,0,0,246,'2025-10-15','20:01:00',0,18,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 20:02:05','','0000-00-00 00:00:00',0),(2932,2526,0,0,931,'2025-10-15','00:00:00',787,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1007,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 20:03:51','reception','2025-10-15 20:04:40',0),(2933,2526,0,0,932,'2025-10-15','00:00:00',788,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1008,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 20:05:31','reception','2025-10-15 20:05:44',0),(2934,2526,0,0,933,'2025-10-15','00:00:00',789,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1009,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 20:08:02','janvi','2025-10-15 20:08:41',0),(2935,2526,0,0,926,'2025-10-15','20:11:10',782,0,'WPRC','WPRC0046','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,3,0,0,'',0,0,'','','','','',2526,'H','O',1010,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-15 20:11:10','janvi','2025-10-15 20:11:10',0),(2936,2526,0,0,414,'2025-10-15','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 08:42:23','riya','2025-10-15 20:16:01',0),(2937,2526,0,0,414,'2025-10-15','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 08:42:23','riya','2025-10-15 20:16:01',0),(2938,2526,0,0,414,'2025-10-15','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 08:42:23','riya','2025-10-15 20:16:01',0),(2939,2526,0,0,414,'2025-10-15','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 08:42:23','riya','2025-10-15 20:16:01',0),(2940,2526,0,0,414,'2025-10-15','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 08:42:23','riya','2025-10-25 11:28:26',0),(2941,2526,0,0,414,'2025-10-15','20:12:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 20:16:01','','0000-00-00 00:00:00',0),(2942,2526,0,0,414,'2025-10-15','20:12:00',0,25,'WPRC','WPRC0089','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 20:16:01','','0000-00-00 00:00:00',0),(2943,2526,0,0,414,'2025-10-15','20:13:00',0,25,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 20:16:01','','0000-00-00 00:00:00',0),(2944,2526,0,0,414,'2025-10-13','20:13:00',0,25,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 20:16:01','riya','2025-10-25 11:28:26',0),(2945,2526,0,0,414,'2025-10-14','20:13:00',0,25,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 20:16:01','riya','2025-10-25 11:28:26',0),(2946,2526,0,0,414,'2025-10-15','20:14:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 20:16:01','','0000-00-00 00:00:00',0),(2947,2526,0,0,414,'2025-10-15','20:14:00',0,25,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-15 20:16:01','','0000-00-00 00:00:00',0),(2948,2526,0,0,934,'2025-10-15','20:17:50',166,0,'OPWD','OPWD0013','H','N',2.00,250,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',1011,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-15 20:17:50','drashti','2025-10-15 20:17:50',0),(2949,2526,0,0,935,'2025-10-15','20:53:26',276,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',1012,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-15 20:53:26','reception','2025-10-15 20:53:26',0),(2950,2526,0,0,936,'2025-10-15','22:00:00',769,64,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 08:26:11','riya','2025-10-17 18:16:35',0),(2951,2526,0,0,936,'2025-10-15','22:00:00',769,64,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 08:26:11','riya','2025-10-17 18:16:35',0),(2952,2526,0,0,936,'2025-10-15','22:00:00',769,64,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',52,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 20:56:11','riya','2025-10-17 18:16:35',0),(2953,2526,0,0,936,'2025-10-15','22:00:00',769,64,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',52,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 20:56:11','riya','2025-10-17 18:16:35',0),(2954,2526,0,0,936,'2025-10-15','22:00:00',769,64,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',52,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 20:56:11','riya','2025-10-17 18:16:35',0),(2955,2526,0,0,936,'2025-10-15','22:00:00',769,64,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 20:56:11','riya','2025-10-17 18:18:23',0),(2956,2526,0,0,936,'2025-10-15','22:00:00',769,64,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 20:56:11','riya','2025-10-17 18:18:23',0),(2957,2526,0,0,574,'2025-10-16','08:55:00',481,44,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',37,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 08:56:02','','0000-00-00 00:00:00',0),(2958,2526,0,0,574,'2025-10-16','08:55:00',481,44,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',37,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 08:56:02','','0000-00-00 00:00:00',0),(2959,2526,0,0,937,'2025-10-16','09:01:19',761,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1013,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-16 09:01:19','shweta','2025-10-16 09:01:19',0),(2960,2526,0,0,937,'2025-10-16','09:01:19',761,0,'WPRC','WPRC0037','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1013,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-16 09:01:19','shweta','2025-10-16 09:01:19',0),(2961,2526,0,0,938,'2025-10-16','00:00:00',790,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-16 09:03:35','shweta','2025-10-15 21:33:35',0),(2962,2526,0,0,938,'2025-10-16','09:04:38',790,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1014,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-16 09:04:38','shweta','2025-10-16 09:04:38',0),(2963,2526,0,0,938,'2025-10-16','09:04:38',790,0,'WPRC','WPRC0037','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1014,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-16 09:04:38','shweta','2025-10-16 09:04:38',0),(2964,2526,0,0,939,'2025-10-15','10:30:00',709,65,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',62,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 09:07:59','riya','2025-10-17 18:03:39',0),(2965,2526,0,0,939,'2025-10-15','10:30:00',709,65,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',62,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 09:07:59','riya','2025-10-17 18:03:39',0),(2966,2526,0,0,939,'2025-10-15','10:30:00',709,65,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 21:37:59','riya','2025-10-17 18:03:39',0),(2967,2526,0,0,939,'2025-10-15','10:30:00',709,65,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 21:37:59','riya','2025-10-17 18:03:39',0),(2968,2526,0,0,939,'2025-10-15','10:30:00',709,65,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 21:37:59','riya','2025-10-17 18:03:39',0),(2969,2526,0,0,939,'2025-10-15','10:30:00',709,65,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 21:37:59','riya','2025-10-17 18:09:42',0),(2970,2526,0,0,939,'2025-10-15','10:30:00',709,65,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-15 21:37:59','riya','2025-10-17 18:09:42',0),(2971,2526,0,0,940,'2025-10-16','00:00:00',791,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1038,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 09:14:01','reception','2025-10-16 11:05:01',0),(2972,2526,0,0,941,'2025-10-16','09:24:02',276,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',1015,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-16 09:24:02','shweta','2025-10-16 09:24:02',0),(2973,2526,0,0,942,'2025-10-16','00:00:00',792,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1016,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 09:27:59','reception','2025-10-16 09:29:13',0),(2974,2526,0,0,943,'2025-10-16','00:00:00',793,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1017,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 09:34:13','reception','2025-10-16 09:34:39',0),(2975,2526,0,0,944,'2025-10-16','00:00:00',794,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1018,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 09:36:16','reception','2025-10-16 09:37:20',0),(2976,2526,0,0,945,'2025-10-16','00:00:00',795,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1019,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 09:48:15','reception','2025-10-16 09:49:27',0),(2977,2526,0,0,946,'2025-10-16','00:00:00',796,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1020,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 10:11:41','reception','2025-10-16 10:11:56',0),(2978,2526,0,0,947,'2025-10-16','00:00:00',797,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1021,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 10:16:41','drashti','2025-10-16 10:17:11',0),(2979,2526,0,0,948,'2025-10-16','00:00:00',798,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1022,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 10:19:26','reception','2025-10-16 10:20:10',0),(2980,2526,0,0,949,'2025-10-16','00:00:00',799,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1023,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 10:21:35','reception','2025-10-16 10:22:24',0),(2981,2526,0,0,950,'2025-10-16','00:00:00',800,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1024,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 10:24:03','reception','2025-10-16 10:24:40',0),(2982,2526,0,0,951,'2025-10-16','00:00:00',801,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1025,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 10:28:47','reception','2025-10-16 10:30:44',0),(2983,2526,0,0,952,'2025-10-16','10:32:46',391,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1026,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 10:32:46','drashti','2025-10-16 10:32:46',0),(2984,2526,0,0,953,'2025-10-16','00:00:00',802,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1027,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 10:33:23','reception','2025-10-16 10:34:08',0),(2985,2526,0,0,954,'2025-10-16','00:00:00',803,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1028,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 10:34:20','drashti','2025-10-16 10:35:01',0),(2986,2526,0,0,955,'2025-10-16','00:00:00',804,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1029,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 10:38:26','reception','2025-10-16 10:40:00',0),(2987,2526,0,0,956,'2025-10-16','00:00:00',805,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1030,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 10:42:44','janvi','2025-10-16 10:43:40',0),(2988,2526,0,0,957,'2025-10-16','00:00:00',806,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1031,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 10:44:08','reception','2025-10-16 10:44:51',0),(2989,2526,0,0,958,'2025-10-16','00:00:00',807,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1032,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 10:44:56','drashti','2025-10-16 10:47:56',0),(2990,2526,0,0,959,'2025-10-16','00:00:00',808,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1033,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 10:48:08','janvi','2025-10-16 10:49:33',0),(2991,2526,0,0,960,'2025-10-16','00:00:00',809,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1034,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 10:50:43','janvi','2025-10-16 10:51:37',0),(2992,2526,0,0,961,'2025-10-16','00:00:00',810,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1035,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 10:51:19','reception','2025-10-16 10:52:13',0),(2993,2526,0,0,962,'2025-10-16','00:00:00',811,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1036,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 10:56:01','janvi','2025-10-16 10:56:54',0),(2994,2526,0,0,963,'2025-10-16','00:00:00',812,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1037,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 10:57:39','reception','2025-10-16 10:59:01',0),(2995,2526,0,0,964,'2025-10-16','00:00:00',217,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 10:58:49','janvi','2025-10-15 23:28:49',0),(2996,2526,0,0,965,'2025-10-16','00:00:00',813,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1039,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 11:06:20','reception','2025-10-16 11:07:42',0),(2997,2526,0,0,966,'2025-10-16','00:00:00',814,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1040,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 11:08:21','drashti','2025-10-16 11:09:00',0),(2998,2526,0,0,967,'2025-10-16','00:00:00',815,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1041,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 11:12:49','drashti','2025-10-16 11:13:23',0),(2999,2526,0,0,968,'2025-10-16','00:00:00',816,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1042,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 11:14:32','drashti','2025-10-16 11:14:47',0),(3000,2526,0,0,969,'2025-10-16','11:17:38',430,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1043,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 11:17:37','drashti','2025-10-16 11:17:37',0),(3001,2526,0,0,645,'2025-10-16','11:20:00',0,46,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',39,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 11:21:52','','0000-00-00 00:00:00',0),(3002,2526,0,0,645,'2025-10-16','11:20:00',0,46,'WPRC','WPRC0089','H','N',2.00,100,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',39,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 11:21:52','vishal','2025-10-16 11:29:00',0),(3003,2526,0,0,970,'2025-10-16','00:00:00',817,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1044,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 11:23:52','reception','2025-10-16 11:25:44',0),(3004,2526,0,0,971,'2025-10-16','00:00:00',818,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1045,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 11:25:13','drashti','2025-10-16 11:26:17',0),(3005,2526,0,0,972,'2025-10-16','00:00:00',819,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1048,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 11:26:21','janvi','2025-10-16 11:28:32',0),(3006,2526,0,0,950,'2025-10-16','11:27:20',800,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1046,1,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 11:27:20','reception','2025-10-16 11:27:20',0),(3007,2526,0,0,950,'2025-10-16','11:27:20',800,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1046,2,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 11:27:20','reception','2025-10-16 11:27:20',0),(3008,2526,0,0,950,'2025-10-16','11:27:20',800,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1046,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 11:27:20','reception','2025-10-16 11:27:20',0),(3009,2526,0,0,645,'2025-10-15','11:26:00',0,46,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,62,0,0,'',0,0,'','','','','',2526,'H','I',39,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 11:27:22','','0000-00-00 00:00:00',0),(3010,2526,0,0,973,'2025-10-16','00:00:00',820,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1047,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 11:28:00','drashti','2025-10-16 11:28:26',0),(3011,2526,0,0,966,'2025-10-16','11:29:07',814,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1049,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 11:29:07','janvi','2025-10-16 11:29:07',0),(3012,2526,0,0,975,'2025-10-16','00:00:00',821,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1050,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 11:29:52','drashti','2025-10-16 11:30:48',0),(3013,2526,0,0,674,'2025-10-14','22:24:00',0,50,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',275,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 00:01:06','riya','2025-12-15 17:45:47',0),(3014,2526,0,0,674,'2025-10-15','22:24:00',0,50,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',275,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 00:01:06','riya','2025-12-15 17:45:47',0),(3015,2526,0,0,674,'2025-10-14','22:24:00',0,50,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',275,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 00:01:06','riya','2025-12-15 17:45:47',0),(3016,2526,0,0,674,'2025-10-15','22:24:00',0,50,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',275,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 00:01:06','riya','2025-12-15 17:45:47',0),(3017,2526,0,0,674,'2025-10-14','22:24:00',0,50,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',275,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 00:01:06','riya','2025-12-15 17:45:47',0),(3018,2526,0,0,674,'2025-10-15','22:24:00',0,50,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',275,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 00:01:06','riya','2025-12-15 17:45:47',0),(3019,2526,0,0,674,'2025-10-14','22:24:00',0,50,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','405','','','',2526,'H','I',275,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 00:01:06','riya','2025-12-15 17:45:47',0),(3020,2526,0,0,674,'2025-10-16','22:24:00',0,50,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','405','','','',2526,'H','I',275,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 00:01:06','riya','2025-12-15 17:45:47',0),(3021,2526,0,0,674,'2025-10-14','22:24:00',0,50,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',275,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 00:01:06','riya','2025-12-15 17:45:47',0),(3022,2526,0,0,674,'2025-10-15','22:24:00',0,50,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','405','','','',2526,'H','I',275,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 00:01:06','riya','2025-12-15 17:45:47',0),(3023,2526,0,0,976,'2025-10-16','00:00:00',822,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1051,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 11:31:47','reception','2025-10-16 11:32:04',0),(3024,2526,0,0,977,'2025-10-16','00:00:00',823,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1052,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 11:33:34','reception','2025-10-16 11:35:26',0),(3025,2526,0,0,978,'2025-10-16','00:00:00',824,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1053,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 11:35:44','drashti','2025-10-16 11:37:22',0),(3026,2526,0,0,974,'2025-10-16','11:39:07',114,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1054,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 11:39:07','janvi','2025-10-16 11:39:07',0),(3027,2526,0,0,979,'2025-10-16','00:00:00',825,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1056,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 11:41:52','janvi','2025-10-16 11:43:36',0),(3028,2526,0,0,980,'2025-10-16','00:00:00',826,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1055,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 11:42:25','reception','2025-10-16 11:42:47',0),(3029,2526,0,0,981,'2025-10-16','00:00:00',827,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1057,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 11:43:34','reception','2025-10-16 11:43:57',0),(3030,2526,0,0,982,'2025-10-16','00:00:00',828,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1058,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 11:45:05','reception','2025-10-16 11:45:41',0),(3031,2526,0,0,983,'2025-10-16','00:00:00',829,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1059,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 11:45:49','drashti','2025-10-16 11:47:32',0),(3032,2526,0,0,984,'2025-10-16','00:00:00',830,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1060,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 11:47:26','reception','2025-10-16 11:48:24',0),(3033,2526,0,0,985,'2025-10-16','00:00:00',831,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1061,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 11:54:01','drashti','2025-10-16 11:54:48',0),(3034,2526,0,0,986,'2025-10-16','00:00:00',832,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1065,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 11:56:59','reception','2025-10-16 12:14:08',0),(3035,2526,0,0,987,'2025-10-16','00:00:00',833,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1062,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 11:59:56','drashti','2025-10-16 12:00:51',0),(3036,2526,0,0,470,'2025-10-16','12:00:00',131,34,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','','','','',2526,'H','I',40,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 12:02:58','','0000-00-00 00:00:00',0),(3037,2526,0,0,470,'2025-10-13','12:01:00',131,34,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,7,0,0,'',0,0,'','','','','',2526,'H','I',40,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 12:02:58','vishal','2025-10-16 12:04:32',0),(3038,2526,0,0,470,'2025-10-14','12:01:00',131,34,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,7,0,0,'',0,0,'','','','','',2526,'H','I',40,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 12:02:58','vishal','2025-10-16 12:04:32',0),(3039,2526,0,0,470,'2025-10-15','12:01:00',131,34,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,7,0,0,'',0,0,'','','','','',2526,'H','I',40,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 12:02:58','','0000-00-00 00:00:00',0),(3040,2526,0,0,470,'2025-10-16','12:02:00',131,34,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',40,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 12:02:58','','0000-00-00 00:00:00',0),(3041,2526,0,0,944,'2025-10-16','12:03:22',794,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1063,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 12:03:22','reception','2025-10-16 12:03:22',0),(3042,2526,0,0,944,'2025-10-16','12:03:22',794,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1063,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 12:03:22','reception','2025-10-16 12:03:22',0),(3043,2526,0,0,944,'2025-10-16','12:03:22',794,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1063,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 12:03:22','reception','2025-10-16 12:03:22',0),(3044,2526,0,0,246,'2025-10-16','12:09:00',0,18,'WPRC','WPRC0090','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 12:10:24','','0000-00-00 00:00:00',0),(3045,2526,0,0,988,'2025-10-16','00:00:00',834,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1064,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 12:12:33','janvi','2025-10-16 12:13:46',0),(3046,2526,0,0,470,'2025-10-11','12:12:00',131,34,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','','','','',2526,'H','I',40,40,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 12:13:02','','0000-00-00 00:00:00',0),(3047,2526,0,0,989,'2025-10-16','00:00:00',835,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1066,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 12:14:11','drashti','2025-10-16 12:14:59',0),(3048,2526,0,0,990,'2025-10-16','00:00:00',836,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1068,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-16 12:15:51','manshi','2025-10-16 12:17:25',0),(3049,2526,0,0,946,'2025-10-16','12:16:28',796,0,'NEU1','NEU10020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',1067,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 12:16:28','reception','2025-10-16 12:16:28',0),(3050,2526,0,0,991,'2025-10-16','00:00:00',837,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1069,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 12:18:44','drashti','2025-10-16 12:20:02',0),(3051,2526,0,0,992,'2025-10-16','00:00:00',838,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1070,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 12:23:36','reception','2025-10-16 12:24:16',0),(3052,2526,0,0,993,'2025-10-16','00:00:00',839,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1077,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-16 12:26:38','manshi','2025-10-16 13:12:13',0),(3053,2526,0,0,994,'2025-10-16','00:00:00',840,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1071,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 12:27:28','drashti','2025-10-16 12:28:27',0),(3054,2526,0,0,803,'2025-10-15','21:30:00',0,59,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 00:58:08','vishal','2025-10-16 12:33:40',0),(3055,2526,0,0,803,'2025-10-15','21:30:00',0,59,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 00:58:08','vishal','2025-10-16 12:33:40',0),(3056,2526,0,0,803,'2025-10-16','21:30:00',0,59,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','207','','','',2526,'H','I',41,16,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 00:58:08','vishal','2025-10-16 12:36:09',0),(3057,2526,0,0,803,'2025-10-15','21:30:00',0,59,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 00:58:08','vishal','2025-10-16 12:33:40',0),(3058,2526,0,0,803,'2025-10-15','21:30:00',0,59,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 00:58:08','vishal','2025-10-16 12:33:40',0),(3059,2526,0,0,995,'2025-10-16','00:00:00',841,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1073,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-16 12:32:45','manshi','2025-10-16 12:34:02',0),(3060,2526,0,0,996,'2025-10-16','00:00:00',842,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1072,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 12:33:15','reception','2025-10-16 12:33:48',0),(3061,2526,0,0,803,'2025-10-15','12:30:00',0,59,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',41,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 12:33:40','vishal','2025-10-16 12:36:09',0),(3062,2526,0,0,803,'2025-10-15','12:31:00',0,59,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',41,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 12:33:40','','0000-00-00 00:00:00',0),(3063,2526,0,0,803,'2025-10-15','12:31:00',0,59,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',41,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 12:33:40','','0000-00-00 00:00:00',0),(3064,2526,0,0,803,'2025-10-15','12:33:00',0,59,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',41,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 12:33:40','','0000-00-00 00:00:00',0),(3065,2526,0,0,803,'2025-10-16','12:34:00',0,59,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',41,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(3066,2526,0,0,803,'2025-10-15','12:35:00',0,59,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',41,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 12:36:09','','0000-00-00 00:00:00',0),(3067,2526,0,0,997,'2025-10-16','00:00:00',843,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',1090,1,400,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 12:38:02','reception','2025-10-16 15:04:10',0),(3068,2526,0,0,998,'2025-10-16','00:00:00',844,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1074,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 12:50:44','drashti','2025-10-16 12:51:34',0),(3069,2526,0,0,999,'2025-10-16','00:00:00',845,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1075,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 12:53:06','janvi','2025-10-16 12:54:23',0),(3070,2526,0,0,981,'2025-10-16','12:55:37',827,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1076,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 12:55:37','reception','2025-10-16 12:55:37',0),(3071,2526,0,0,981,'2025-10-16','12:55:37',827,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1076,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 12:55:37','reception','2025-10-16 12:55:37',0),(3072,2526,0,0,1000,'2025-10-16','00:00:00',846,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1078,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 13:11:48','janvi','2025-10-16 13:14:22',0),(3073,2526,0,0,1001,'2025-10-16','13:25:21',166,0,'OPWD','OPWD0012','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',1079,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 13:25:21','drashti','2025-10-16 13:26:20',0),(3074,2526,0,0,986,'2025-10-16','13:25:57',832,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1080,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 13:25:57','reception','2025-10-16 13:25:57',0),(3075,2526,0,0,986,'2025-10-16','13:25:57',832,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1080,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 13:25:57','reception','2025-10-16 13:25:57',0),(3076,2526,0,0,986,'2025-10-16','13:25:57',832,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1080,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 13:25:57','reception','2025-10-16 13:25:57',0),(3077,2526,0,0,1002,'2025-10-16','00:00:00',847,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1083,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 13:27:00','janvi','2025-10-16 13:28:21',0),(3078,2526,0,0,1001,'2025-10-16','13:27:41',166,0,'OPWD','OPWD0013','H','N',2.00,250,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',1082,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 13:27:41','drashti','2025-10-16 13:27:41',0),(3079,2526,0,0,953,'2025-10-16','13:32:56',802,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1084,1,71,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 13:32:56','reception','2025-10-16 13:32:56',0),(3080,2526,0,0,953,'2025-10-16','13:32:56',802,0,'NEU1','NEU10019','H','N',1.00,1800,1800,'P',0,0,0.00,0.00,0.00,1800,9999,0,0,'',0,0,'','','','','',2526,'H','O',1084,2,257,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 13:32:56','reception','2025-10-16 13:32:56',0),(3081,2526,0,0,953,'2025-10-16','13:32:56',802,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1084,3,314,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 13:32:56','reception','2025-10-16 13:32:56',0),(3082,2526,0,0,953,'2025-10-16','13:32:56',802,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1084,4,357,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 13:32:56','reception','2025-10-16 13:32:56',0),(3083,2526,0,0,965,'2025-10-16','14:02:30',813,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1085,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 14:02:30','reception','2025-10-16 14:02:30',0),(3084,2526,0,0,965,'2025-10-16','14:02:30',813,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1085,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 14:02:30','reception','2025-10-16 14:02:30',0),(3085,2526,0,0,965,'2025-10-16','14:02:30',813,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1085,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 14:02:30','reception','2025-10-16 14:02:30',0),(3086,2526,0,0,1004,'2025-10-16','13:50:00',0,66,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',54,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 14:11:22','riya','2025-10-17 18:30:53',0),(3087,2526,0,0,1004,'2025-10-16','13:50:00',0,66,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',54,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 14:11:22','riya','2025-10-17 18:30:53',0),(3088,2526,0,0,1004,'2025-10-16','13:50:00',0,66,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',54,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 02:41:22','riya','2025-10-17 18:30:53',0),(3089,2526,0,0,1004,'2025-10-16','13:50:00',0,66,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',54,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 02:41:22','riya','2025-10-17 18:30:53',0),(3090,2526,0,0,1004,'2025-10-16','13:50:00',0,66,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',54,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 02:41:22','riya','2025-10-17 18:30:53',0),(3091,2526,0,0,1004,'2025-10-16','13:50:00',0,66,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 02:41:22','riya','2025-10-17 18:30:53',0),(3092,2526,0,0,1004,'2025-10-16','13:50:00',0,66,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','207','','','',2526,'H','I',54,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 02:41:22','riya','2025-10-17 18:30:53',0),(3093,2526,0,0,1003,'2025-10-16','14:13:04',834,0,'WPRC','WPRC0046','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,3,0,0,'',0,0,'','','','','',2526,'H','O',1086,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 14:13:04','drashti','2025-10-16 14:13:04',0),(3094,2526,0,0,1005,'2025-10-16','00:00:00',848,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1087,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 14:39:00','reception','2025-10-16 14:40:47',0),(3095,2526,0,0,992,'2025-10-16','14:45:19',838,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1088,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 14:45:19','reception','2025-10-16 14:45:19',0),(3096,2526,0,0,992,'2025-10-16','14:45:19',838,0,'NEU1','NEU10020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',1088,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 14:45:19','reception','2025-10-16 14:45:19',0),(3097,2526,0,0,1006,'2025-10-16','00:00:00',849,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1089,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 15:01:14','reception','2025-10-16 15:02:45',0),(3098,2526,0,0,1006,'2025-10-16','15:02:45',849,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1089,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 15:02:45','reception','2025-10-16 15:02:45',0),(3099,2526,0,0,953,'2025-10-16','15:31:04',802,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,2,0,0,'',0,0,'','','','','',2526,'H','O',1091,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-16 15:31:04','shweta','2025-10-16 15:31:04',0),(3100,2526,0,0,1007,'2025-10-16','00:00:00',850,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1092,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 16:36:31','drashti','2025-10-16 16:37:19',0),(3101,2526,0,0,1008,'2025-10-16','00:00:00',851,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1093,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 16:46:05','reception','2025-10-16 16:48:56',0),(3102,2526,0,0,1009,'2025-10-16','00:00:00',852,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1094,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 16:54:08','reception','2025-10-16 16:54:44',0),(3103,2526,0,0,1010,'2025-10-16','00:00:00',853,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1095,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 16:59:55','reception','2025-10-16 17:00:26',0),(3104,2526,0,0,1011,'2025-10-16','00:00:00',854,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 17:01:58','drashti','2025-10-16 05:31:58',0),(3105,2526,0,0,1012,'2025-10-16','00:00:00',855,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1096,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 17:10:57','reception','2025-10-16 17:11:19',0),(3106,2526,0,0,1013,'2025-10-16','00:00:00',856,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 17:11:55','drashti','2025-10-16 05:41:55',0),(3107,2526,0,0,1014,'2025-10-16','00:00:00',857,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1097,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 17:20:16','drashti','2025-10-16 17:21:10',0),(3108,2526,0,0,1015,'2025-10-16','00:00:00',858,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',1098,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 17:23:28','reception','2025-10-16 17:24:08',0),(3109,2526,0,0,1016,'2025-10-16','00:00:00',859,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1099,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-16 17:34:28','manshi','2025-10-16 18:28:36',0),(3110,2526,0,0,1017,'2025-10-16','00:00:00',860,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1103,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 17:34:45','reception','2025-10-16 17:40:59',0),(3111,2526,0,0,1018,'2025-10-16','00:00:00',861,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1101,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 17:36:03','janvi','2025-10-16 17:36:44',0),(3112,2526,0,0,1019,'2025-10-16','00:00:00',862,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1100,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 17:36:10','reception','2025-10-16 17:36:38',0),(3113,2526,0,0,1020,'2025-10-16','17:38:16',777,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1102,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 17:38:16','reception','2025-10-16 17:38:16',0),(3114,2526,0,0,1020,'2025-10-16','17:38:16',777,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1102,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 17:38:16','reception','2025-10-16 17:38:16',0),(3115,2526,0,0,1021,'2025-10-16','00:00:00',863,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 17:41:04','drashti','2025-10-16 06:11:04',0),(3116,2526,0,0,1022,'2025-10-16','00:00:00',864,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',1138,1,200,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 17:42:48','reception','2025-10-16 18:55:28',0),(3117,2526,0,0,1023,'2025-10-16','00:00:00',865,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1104,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 17:43:04','janvi','2025-10-16 17:44:05',0),(3118,2526,0,0,1025,'2025-10-16','00:00:00',866,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',1113,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-16 17:46:11','manshi','2025-10-16 17:58:19',0),(3119,2526,0,0,1026,'2025-10-16','00:00:00',867,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1105,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 17:46:19','drashti','2025-10-16 17:46:54',0),(3120,2526,0,0,1024,'2025-10-16','17:47:41',303,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1106,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 17:47:41','janvi','2025-10-16 17:47:41',0),(3121,2526,0,0,1027,'2025-10-16','00:00:00',868,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1107,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 17:49:47','drashti','2025-10-16 17:50:14',0),(3122,2526,0,0,1028,'2025-10-16','00:00:00',869,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1109,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 17:51:14','reception','2025-10-16 17:52:38',0),(3123,2526,0,0,1029,'2025-10-16','00:00:00',870,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1108,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 17:51:44','drashti','2025-10-16 17:52:23',0),(3124,2526,0,0,1030,'2025-10-16','00:00:00',871,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1110,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 17:53:01','janvi','2025-10-16 17:53:29',0),(3125,2526,0,0,1031,'2025-10-16','00:00:00',872,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1111,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 17:54:02','reception','2025-10-16 17:54:59',0),(3126,2526,0,0,1032,'2025-10-16','00:00:00',873,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1112,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 17:57:13','drashti','2025-10-16 17:57:57',0),(3127,2526,0,0,1033,'2025-10-16','00:00:00',874,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1114,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 17:59:14','drashti','2025-10-16 18:00:24',0),(3128,2526,0,0,1034,'2025-10-16','00:00:00',875,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1115,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 17:59:34','reception','2025-10-16 18:00:27',0),(3129,2526,0,0,1035,'2025-10-16','00:00:00',876,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1116,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 18:02:07','drashti','2025-10-16 18:03:06',0),(3130,2526,0,0,1036,'2025-10-16','00:00:00',877,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1117,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 18:05:23','drashti','2025-10-16 18:06:01',0),(3131,2526,0,0,1037,'2025-10-16','00:00:00',878,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-16 18:06:36','manshi','2025-10-16 06:36:36',0),(3132,2526,0,0,1038,'2025-10-16','00:00:00',879,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1118,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 18:07:27','janvi','2025-10-16 18:08:01',0),(3133,2526,0,0,1039,'2025-10-16','00:00:00',880,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1120,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 18:08:04','reception','2025-10-16 18:08:41',0),(3134,2526,0,0,1016,'2025-10-16','18:08:21',859,0,'XRY','XRY0151','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',1119,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-16 18:08:21','manshi','2025-10-16 18:08:21',0),(3135,2526,0,0,1016,'2025-10-16','18:08:21',859,0,'XRY','XRY0100','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',1119,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-16 18:08:21','manshi','2025-10-16 18:08:21',0),(3136,2526,0,0,1014,'2025-10-16','18:11:39',857,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',1121,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 18:11:39','reception','2025-10-16 18:11:39',0),(3137,2526,0,0,1040,'2025-10-16','18:13:05',360,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1122,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 18:13:05','drashti','2025-10-16 18:13:05',0),(3138,2526,0,0,1041,'2025-10-16','00:00:00',57,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1123,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 18:15:31','janvi','2025-10-16 18:15:54',0),(3139,2526,0,0,1015,'2025-10-16','18:18:15',858,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1124,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 18:18:15','reception','2025-10-16 18:18:15',0),(3140,2526,0,0,1043,'2025-10-16','00:00:00',881,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1125,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-16 18:26:41','manshi','2025-10-16 18:27:00',0),(3141,2526,0,0,1044,'2025-10-16','00:00:00',882,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1126,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 18:26:50','drashti','2025-10-16 18:27:42',0),(3142,2526,0,0,1045,'2025-10-16','00:00:00',883,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1128,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 18:29:30','reception','2025-10-16 18:29:58',0),(3143,2526,0,0,841,'2025-10-15','18:28:00',451,61,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',43,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 18:31:39','','0000-00-00 00:00:00',0),(3144,2526,0,0,841,'2025-10-15','18:29:00',451,61,'SURG','SURG0014','H','N',1.00,17700,17700,'P',0,0,0.00,0.00,17700.00,17700,3,0,0,'',0,0,'','','','','',2526,'H','I',43,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 18:31:39','riya','2025-10-16 19:55:06',0),(3145,2526,0,0,841,'2025-10-15','18:30:00',451,61,'SURG','SURG0015','H','N',1.00,5900,5900,'P',0,0,0.00,0.00,5900.00,5900,3,0,0,'',0,0,'','','','','',2526,'H','I',43,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 18:31:39','riya','2025-10-16 19:55:06',0),(3146,2526,0,0,841,'2025-10-16','18:31:00',451,61,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',43,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 18:31:39','','0000-00-00 00:00:00',0),(3147,2526,0,0,1046,'2025-10-16','00:00:00',884,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1129,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 18:32:38','reception','2025-10-16 18:33:10',0),(3148,2526,0,0,809,'2025-10-16','18:32:00',0,60,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',42,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 18:34:17','','0000-00-00 00:00:00',0),(3149,2526,0,0,809,'2025-10-16','18:32:00',0,60,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',42,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 18:34:17','','0000-00-00 00:00:00',0),(3150,2526,0,0,809,'2025-10-16','18:33:00',0,60,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',42,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 18:34:17','','0000-00-00 00:00:00',0),(3151,2526,0,0,809,'2025-10-15','18:33:00',0,60,'SURG','SURG0014','H','N',1.00,15600,15600,'P',0,0,0.00,0.00,15600.00,15600,3,0,0,'',0,0,'','','','','',2526,'H','I',42,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 18:34:17','riya','2025-10-16 18:51:56',0),(3152,2526,0,0,809,'2025-10-15','18:33:00',0,60,'SURG','SURG0015','H','N',1.00,5200,5200,'P',0,0,0.00,0.00,5200.00,5200,3,0,0,'',0,0,'','','','','',2526,'H','I',42,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 18:34:17','riya','2025-10-16 18:51:56',0),(3153,2526,0,0,1034,'2025-10-16','18:35:43',875,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1130,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 18:35:43','reception','2025-10-16 18:35:43',0),(3154,2526,0,0,1034,'2025-10-16','18:35:43',875,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1130,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 18:35:43','reception','2025-10-16 18:35:43',0),(3155,2526,0,0,1029,'2025-10-16','18:39:05',870,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,28,'',0,0,'','','','','',2526,'H','O',1131,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-10-16 18:39:05','janvi','2025-10-16 18:39:05',0),(3156,2526,0,0,1047,'2025-10-16','00:00:00',885,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1132,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 18:40:11','reception','2025-10-16 18:41:46',0),(3157,2526,0,0,224,'2025-10-16','18:37:00',116,17,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 18:40:49','','0000-00-00 00:00:00',0),(3158,2526,0,0,224,'2025-10-16','18:37:00',116,17,'USG','USG0092','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 18:40:49','','0000-00-00 00:00:00',0),(3159,2526,0,0,224,'2025-10-15','18:39:00',116,17,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',44,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 18:40:49','','0000-00-00 00:00:00',0),(3160,2526,0,0,224,'2025-10-10','18:39:00',116,17,'SURG','SURG0014','H','N',1.00,35000,35000,'P',0,0,0.00,0.00,35000.00,35000,3,0,0,'',0,0,'','','','','',2526,'H','I',44,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 18:40:49','riya','2025-10-16 19:53:20',0),(3161,2526,0,0,224,'2025-10-10','18:40:00',116,17,'SURG','SURG0015','H','N',1.00,11700,11700,'P',0,0,0.00,0.00,11700.00,11700,3,0,0,'',0,0,'','','','','',2526,'H','I',44,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 18:40:49','riya','2025-10-16 19:53:20',0),(3162,2526,0,0,1048,'2025-10-16','18:44:13',221,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',1133,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 18:44:13','janvi','2025-10-16 18:44:13',0),(3163,2526,0,0,1049,'2025-10-16','00:00:00',886,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-16 18:45:40','manshi','2025-10-16 07:15:40',0),(3164,2526,0,0,1050,'2025-10-16','00:00:00',887,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 18:47:08','janvi','2025-10-16 07:17:08',0),(3165,2526,0,0,1051,'2025-10-16','00:00:00',41,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1134,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 18:48:46','drashti','2025-10-16 18:51:39',0),(3166,2526,0,0,1052,'2025-10-16','00:00:00',888,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1135,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 18:51:23','janvi','2025-10-16 18:51:42',0),(3167,2526,0,0,1053,'2025-10-16','00:00:00',889,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1136,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 18:51:45','reception','2025-10-16 18:52:55',0),(3168,2526,0,0,1055,'2025-10-16','00:00:00',890,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1137,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 18:53:50','janvi','2025-10-16 18:54:13',0),(3169,2526,0,0,1056,'2025-10-16','00:00:00',891,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1139,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 18:55:06','drashti','2025-10-16 18:56:25',0),(3170,2526,0,0,1055,'2025-10-16','18:57:32',890,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,29,'',0,0,'','','','','',2526,'H','O',1140,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-10-16 18:57:32','janvi','2025-10-16 18:57:32',0),(3171,2526,0,0,1057,'2025-10-16','00:00:00',892,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1141,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 18:58:14','drashti','2025-10-16 18:58:52',0),(3172,2526,0,0,1059,'2025-10-16','00:00:00',893,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1142,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 19:01:36','drashti','2025-10-16 19:02:21',0),(3173,2526,0,0,1060,'2025-10-16','00:00:00',894,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1143,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 19:02:40','janvi','2025-10-16 19:03:12',0),(3174,2526,0,0,1061,'2025-10-16','00:00:00',895,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1144,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 19:02:49','reception','2025-10-16 19:03:32',0),(3175,2526,0,0,1062,'2025-10-16','00:00:00',244,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 19:06:39','drashti','2025-10-16 07:36:39',0),(3176,2526,0,0,1063,'2025-10-16','00:00:00',896,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1145,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 19:07:19','janvi','2025-10-16 19:07:37',0),(3177,2526,0,0,1064,'2025-10-16','19:17:25',727,0,'OPWD','OPWD0013','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',1146,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 19:17:25','janvi','2025-10-16 19:17:25',0),(3178,2526,0,0,1054,'2025-10-16','19:25:46',575,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1147,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 19:25:46','janvi','2025-10-16 19:25:46',0),(3179,2526,0,0,1065,'2025-10-16','00:00:00',897,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1148,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 19:30:46','drashti','2025-10-16 19:32:31',0),(3180,2526,0,0,1066,'2025-10-16','00:00:00',898,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1149,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-16 19:35:48','drashti','2025-10-16 19:36:37',0),(3181,2526,0,0,1067,'2025-10-16','19:46:42',54,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1150,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 19:46:42','janvi','2025-10-16 19:46:42',0),(3182,2526,0,0,1058,'2025-10-16','19:47:17',118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1151,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 19:47:17','janvi','2025-10-16 19:47:17',0),(3183,2526,0,0,1068,'2025-10-16','00:00:00',899,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1152,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-16 19:49:21','reception','2025-10-16 19:50:26',0),(3184,2526,0,0,224,'2025-10-16','19:52:00',116,17,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',44,59,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(3185,2526,0,0,224,'2025-10-16','19:52:00',116,17,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',44,60,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 19:53:20','','0000-00-00 00:00:00',0),(3186,2526,0,0,1069,'2025-10-16','00:00:00',900,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1153,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-16 19:54:11','manshi','2025-10-16 19:54:52',0),(3187,2526,0,0,1070,'2025-10-16','20:02:34',276,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',1154,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-16 20:02:34','janvi','2025-10-16 20:02:34',0),(3188,2526,0,0,1071,'2025-10-16','00:00:00',901,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',1155,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-16 20:07:56','manshi','2025-10-16 20:10:43',0),(3189,2526,0,0,284,'2025-10-15','23:00:00',0,21,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 08:46:11','vishal','2025-10-17 14:46:39',0),(3190,2526,0,0,284,'2025-10-15','23:00:00',0,21,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 08:46:11','vishal','2025-10-17 14:47:01',0),(3191,2526,0,0,284,'2025-10-15','23:00:00',0,21,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','411','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 08:46:11','vishal','2025-10-17 14:46:39',0),(3192,2526,0,0,284,'2025-10-15','23:00:00',0,21,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','411','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 08:46:11','vishal','2025-10-17 14:47:01',0),(3193,2526,0,0,284,'2025-10-15','23:00:00',0,21,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 08:46:11','riya','2025-10-16 20:18:48',0),(3194,2526,0,0,284,'2025-10-16','20:17:00',0,21,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:18:48','vishal','2025-10-17 14:47:01',0),(3195,2526,0,0,284,'2025-10-16','20:17:00',0,21,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:18:48','vishal','2025-10-17 14:46:39',0),(3196,2526,0,0,284,'2025-10-16','20:17:00',0,21,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:18:48','vishal','2025-10-17 14:46:39',0),(3197,2526,0,0,284,'2025-10-16','20:17:00',0,21,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:18:48','vishal','2025-10-17 14:46:39',0),(3198,2526,0,0,882,'2025-10-16','17:00:00',0,63,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 08:58:17','riya','2025-10-16 20:31:51',0),(3199,2526,0,0,882,'2025-10-16','17:00:00',0,63,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 08:58:17','riya','2025-10-16 20:31:51',0),(3200,2526,0,0,882,'2025-10-16','17:00:00',0,63,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 08:58:17','riya','2025-10-16 20:31:51',0),(3201,2526,0,0,882,'2025-10-16','17:00:00',0,63,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 08:58:17','riya','2025-10-16 20:31:51',0),(3202,2526,0,0,882,'2025-10-16','17:00:00',0,63,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 08:58:17','riya','2025-10-16 20:31:51',0),(3203,2526,0,0,882,'2025-10-15','20:28:00',0,63,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:31:51','','0000-00-00 00:00:00',0),(3204,2526,0,0,882,'2025-10-15','20:28:00',0,63,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:31:51','','0000-00-00 00:00:00',0),(3205,2526,0,0,882,'2025-10-16','20:28:00',0,63,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:31:51','','0000-00-00 00:00:00',0),(3206,2526,0,0,882,'2025-10-15','20:28:00',0,63,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:31:51','','0000-00-00 00:00:00',0),(3207,2526,0,0,882,'2025-10-16','20:29:00',0,63,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:31:51','','0000-00-00 00:00:00',0),(3208,2526,0,0,882,'2025-10-15','20:29:00',0,63,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:31:51','','0000-00-00 00:00:00',0),(3209,2526,0,0,882,'2025-10-16','20:29:00',0,63,'WPRC','WPRC0089','H','N',8.00,100,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:31:51','riya','2025-10-17 18:27:20',0),(3210,2526,0,0,414,'2025-10-16','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 09:10:10','riya','2025-10-16 20:43:43',0),(3211,2526,0,0,414,'2025-10-16','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 09:10:10','riya','2025-10-16 20:43:43',0),(3212,2526,0,0,414,'2025-10-16','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 09:10:10','riya','2025-10-16 20:43:43',0),(3213,2526,0,0,414,'2025-10-16','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 09:10:10','riya','2025-10-16 20:43:43',0),(3214,2526,0,0,414,'2025-10-16','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 09:10:10','riya','2025-10-25 11:28:26',0),(3215,2526,0,0,414,'2025-10-16','20:40:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:43:43','','0000-00-00 00:00:00',0),(3216,2526,0,0,414,'2025-10-16','20:41:00',0,25,'WPRC','WPRC0089','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:43:43','','0000-00-00 00:00:00',0),(3217,2526,0,0,414,'2025-10-16','20:42:00',0,25,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:43:43','','0000-00-00 00:00:00',0),(3218,2526,0,0,414,'2025-10-16','20:42:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:43:43','','0000-00-00 00:00:00',0),(3219,2526,0,0,414,'2025-10-15','20:42:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:43:43','riya','2025-10-25 11:28:26',0),(3220,2526,0,0,414,'2025-10-16','20:42:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:43:43','riya','2025-10-25 11:28:26',0),(3221,2526,0,0,489,'2025-10-16','17:00:00',0,38,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 09:17:28','riya','2025-10-16 20:59:04',0),(3222,2526,0,0,489,'2025-10-16','17:00:00',0,38,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 09:17:28','riya','2025-10-16 20:59:04',0),(3223,2526,0,0,489,'2025-10-16','17:00:00',0,38,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 09:17:28','riya','2025-10-16 20:59:04',0),(3224,2526,0,0,489,'2025-10-16','17:00:00',0,38,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 09:17:28','riya','2025-10-16 20:59:04',0),(3225,2526,0,0,489,'2025-10-16','17:00:00',0,38,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 09:17:28','riya','2025-10-16 20:59:04',0),(3226,2526,0,0,489,'2025-10-16','20:55:00',0,38,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:59:04','','0000-00-00 00:00:00',0),(3227,2526,0,0,489,'2025-10-16','20:55:00',0,38,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:59:04','','0000-00-00 00:00:00',0),(3228,2526,0,0,489,'2025-10-14','20:56:00',0,38,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:59:04','','0000-00-00 00:00:00',0),(3229,2526,0,0,489,'2025-10-15','20:56:00',0,38,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:59:04','','0000-00-00 00:00:00',0),(3230,2526,0,0,489,'2025-10-16','20:56:00',0,38,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:59:04','','0000-00-00 00:00:00',0),(3231,2526,0,0,489,'2025-10-16','20:57:00',0,38,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:59:04','','0000-00-00 00:00:00',0),(3232,2526,0,0,489,'2025-10-14','20:57:00',0,38,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 20:59:04','','0000-00-00 00:00:00',0),(3233,2526,0,0,246,'2025-10-16','18:00:00',0,18,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','208','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 09:31:52','riya','2025-10-16 21:10:41',0),(3234,2526,0,0,246,'2025-10-16','18:00:00',0,18,'AECO','CARE0006','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','208','','','',0,'','',0,93,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 09:31:52','riya','2025-10-18 11:05:08',0),(3235,2526,0,0,246,'2025-10-16','18:00:00',0,18,'CARE','CARE0002','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','208','','','',0,'','',0,94,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 09:31:52','riya','2025-10-18 11:05:08',0),(3236,2526,0,0,246,'2025-10-16','18:00:00',0,18,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','208','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 09:31:52','riya','2025-10-16 21:10:41',0),(3237,2526,0,0,246,'2025-10-16','18:00:00',0,18,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','208','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 09:31:52','riya','2025-10-16 21:10:41',0),(3238,2526,0,0,246,'2025-10-16','18:00:00',0,18,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',0,'','',0,97,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 09:42:54','riya','2025-10-18 11:05:08',0),(3239,2526,0,0,246,'2025-10-16','18:00:00',0,18,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 09:42:54','riya','2025-10-16 21:17:36',0),(3240,2526,0,0,246,'2025-10-16','21:12:00',0,18,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 21:17:36','','0000-00-00 00:00:00',0),(3241,2526,0,0,246,'2025-10-16','21:13:00',0,18,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 21:17:36','','0000-00-00 00:00:00',0),(3242,2526,0,0,246,'2025-10-16','21:13:00',0,18,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 21:17:36','','0000-00-00 00:00:00',0),(3243,2526,0,0,246,'2025-10-16','21:14:00',0,18,'ROOM','ROOM0008','H','N',9.00,100,900,'P',0,0,0.00,0.00,900.00,900,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 21:17:36','riya','2025-10-17 17:29:05',0),(3244,2526,0,0,246,'2025-10-16','21:16:00',0,18,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',0,'','',0,103,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 21:17:36','riya','2025-10-17 17:26:43',0),(3245,2526,0,0,1072,'2025-10-16','21:00:00',0,67,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',48,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 21:50:22','riya','2025-10-17 17:52:20',0),(3246,2526,0,0,1072,'2025-10-16','21:00:00',0,67,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',48,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 21:50:22','riya','2025-10-17 17:52:20',0),(3247,2526,0,0,1072,'2025-10-16','21:00:00',0,67,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',48,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 10:20:22','riya','2025-10-17 17:52:20',0),(3248,2526,0,0,1072,'2025-10-16','21:00:00',0,67,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',48,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 10:20:22','riya','2025-10-17 17:52:20',0),(3249,2526,0,0,1072,'2025-10-16','21:00:00',0,67,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',48,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 10:20:22','riya','2025-10-17 17:52:20',0),(3250,2526,0,0,1072,'2025-10-16','21:00:00',0,67,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','208','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 10:20:22','riya','2025-10-17 17:52:40',0),(3251,2526,0,0,1072,'2025-10-16','21:00:00',0,67,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','208','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-16 10:20:22','riya','2025-10-17 17:52:40',0),(3252,2526,0,0,1073,'2025-10-17','09:03:57',901,0,'XRY','XRY0045','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',1156,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-17 09:03:57','shweta','2025-10-17 09:03:57',0),(3253,2526,0,0,1073,'2025-10-17','09:03:57',901,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',1156,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-17 09:03:57','shweta','2025-10-17 09:03:57',0),(3254,2526,0,0,1073,'2025-10-17','09:03:57',901,0,'WPRC','WPRC0046','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,0.00,4000,6,0,0,'',0,0,'','','','','',2526,'H','O',1156,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-17 09:03:57','shweta','2025-10-17 09:03:57',0),(3255,2526,0,0,1074,'2025-10-17','09:09:19',166,0,'WPRC','WPRC0037','H','N',3.00,250,750,'P',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1157,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-17 09:09:19','shweta','2025-10-17 09:09:19',0),(3256,2526,0,0,1075,'2025-10-17','00:00:00',902,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-17 09:10:30','shweta','2025-10-16 21:40:30',0),(3257,2526,0,0,1075,'2025-10-17','09:11:26',902,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1158,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-17 09:11:26','shweta','2025-10-17 09:11:26',0),(3258,2526,0,0,1075,'2025-10-17','09:11:26',902,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1158,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-17 09:11:26','shweta','2025-10-17 09:11:26',0),(3259,2526,0,0,1075,'2025-10-17','09:11:26',902,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',1158,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-17 09:11:26','shweta','2025-10-17 09:11:26',0),(3260,2526,0,0,1076,'2025-10-17','00:00:00',903,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-17 09:12:38','shweta','2025-10-16 21:42:38',0),(3261,2526,0,0,1076,'2025-10-17','09:13:08',903,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',1159,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-17 09:13:08','shweta','2025-10-17 09:13:08',0),(3262,2526,0,0,1076,'2025-10-17','09:13:08',903,0,'WPRC','WPRC0037','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1159,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-17 09:13:08','shweta','2025-10-17 09:13:08',0),(3263,2526,0,0,1077,'2025-10-17','00:00:00',904,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-17 09:16:10','shweta','2025-10-16 21:46:10',0),(3264,2526,0,0,1077,'2025-10-17','09:17:01',904,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',1160,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-17 09:17:01','shweta','2025-10-17 09:17:01',0),(3265,2526,0,0,1078,'2025-10-17','00:00:00',905,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1161,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 09:18:09','janvi','2025-10-17 09:19:51',0),(3266,2526,0,0,1079,'2025-10-17','00:00:00',906,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1162,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 09:21:54','janvi','2025-10-17 11:28:32',0),(3267,2526,0,0,414,'2025-10-17','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 21:55:17','riya','2025-10-17 18:34:40',0),(3268,2526,0,0,414,'2025-10-17','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 21:55:17','riya','2025-10-17 18:34:40',0),(3269,2526,0,0,414,'2025-10-17','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 21:55:17','riya','2025-10-17 18:34:40',0),(3270,2526,0,0,414,'2025-10-17','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 21:55:17','riya','2025-10-17 18:34:40',0),(3271,2526,0,0,414,'2025-10-17','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 21:55:17','riya','2025-10-25 11:28:26',0),(3272,2526,0,0,871,'2025-10-16','13:23:00',721,62,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',45,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 21:59:45','vishal','2025-10-17 09:31:05',0),(3273,2526,0,0,871,'2025-10-16','13:23:00',721,62,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',45,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 21:59:45','vishal','2025-10-17 09:31:05',0),(3274,2526,0,0,871,'2025-10-16','13:23:00',721,62,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',45,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 21:59:45','vishal','2025-10-17 09:31:05',0),(3275,2526,0,0,871,'2025-10-16','13:23:00',721,62,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',45,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 21:59:45','vishal','2025-10-17 09:31:05',0),(3276,2526,0,0,871,'2025-10-16','13:23:00',721,62,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',45,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-16 21:59:45','vishal','2025-10-17 09:31:05',0),(3277,2526,0,0,1080,'2025-10-17','00:00:00',907,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1163,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 09:30:17','janvi','2025-10-17 09:31:01',0),(3278,2526,0,0,871,'2025-10-15','13:25:00',721,62,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',45,1,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 09:31:05','vishal','2025-10-17 09:31:51',0),(3279,2526,0,0,1081,'2025-10-17','00:00:00',908,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1164,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 09:43:42','janvi','2025-10-17 09:45:29',0),(3280,2526,0,0,1082,'2025-10-17','00:00:00',909,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1165,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 09:47:12','reception','2025-10-17 09:48:36',0),(3281,2526,0,0,1083,'2025-10-17','00:00:00',910,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1166,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 09:48:41','janvi','2025-10-17 09:50:33',0),(3282,2526,0,0,1084,'2025-10-17','00:00:00',207,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1167,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 09:54:45','reception','2025-10-17 09:55:16',0),(3283,2526,0,0,1085,'2025-10-17','00:00:00',911,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1168,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 10:01:47','reception','2025-10-17 10:02:34',0),(3284,2526,0,0,1086,'2025-10-17','00:00:00',912,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1169,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 10:05:38','reception','2025-10-17 10:05:55',0),(3285,2526,0,0,1087,'2025-10-17','00:00:00',354,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1170,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-17 10:13:25','manshi','2025-10-17 11:25:35',0),(3286,2526,0,0,1088,'2025-10-17','00:00:00',913,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1171,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 10:13:33','reception','2025-10-17 10:13:44',0),(3287,2526,0,0,1089,'2025-10-17','00:00:00',914,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1172,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 10:21:38','janvi','2025-10-17 10:23:15',0),(3288,2526,0,0,1090,'2025-10-17','00:00:00',915,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1173,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 10:22:39','janvi','2025-10-17 10:23:22',0),(3289,2526,0,0,1091,'2025-10-17','10:25:14',480,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1174,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 10:25:14','janvi','2025-10-17 10:25:14',0),(3290,2526,0,0,1092,'2025-10-17','00:00:00',916,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1181,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 10:27:38','drashti','2025-10-17 10:55:15',0),(3291,2526,0,0,1093,'2025-10-17','00:00:00',917,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1175,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 10:32:00','reception','2025-10-17 10:32:35',0),(3292,2526,0,0,1094,'2025-10-17','00:00:00',918,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1176,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 10:47:31','reception','2025-10-17 10:48:20',0),(3293,2526,0,0,1095,'2025-10-17','00:00:00',919,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1177,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 10:49:22','drashti','2025-10-17 10:51:35',0),(3294,2526,0,0,1096,'2025-10-17','00:00:00',920,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1179,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 10:50:58','janvi','2025-10-17 10:52:07',0),(3295,2526,0,0,1097,'2025-10-17','00:00:00',921,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1178,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 10:51:00','reception','2025-10-17 10:51:58',0),(3296,2526,0,0,1098,'2025-10-17','00:00:00',922,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1180,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 10:53:45','reception','2025-10-17 10:54:06',0),(3297,2526,0,0,1099,'2025-10-17','00:00:00',923,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1189,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-17 10:54:38','manshi','2025-10-17 11:19:33',0),(3298,2526,0,0,1100,'2025-10-17','00:00:00',924,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1182,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 10:57:17','reception','2025-10-17 10:57:30',0),(3299,2526,0,0,1101,'2025-10-17','00:00:00',925,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1183,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 10:57:27','drashti','2025-10-17 10:59:16',0),(3300,2526,0,0,1102,'2025-10-17','00:00:00',926,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1184,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 10:59:43','reception','2025-10-17 11:00:20',0),(3301,2526,0,0,1088,'2025-10-17','11:11:21',913,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1185,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 11:11:21','reception','2025-10-17 11:11:21',0),(3302,2526,0,0,1088,'2025-10-17','11:11:21',913,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1185,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 11:11:21','reception','2025-10-17 11:11:21',0),(3303,2526,0,0,1088,'2025-10-17','11:11:21',913,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1185,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 11:11:21','reception','2025-10-17 11:11:21',0),(3304,2526,0,0,1103,'2025-10-17','00:00:00',927,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1186,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 11:12:07','drashti','2025-10-17 11:12:50',0),(3305,2526,0,0,1104,'2025-10-17','00:00:00',928,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1187,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 11:13:21','reception','2025-10-17 11:14:38',0),(3306,2526,0,0,1105,'2025-10-17','00:00:00',929,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1188,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 11:16:41','reception','2025-10-17 11:18:34',0),(3307,2526,0,0,1106,'2025-10-17','11:19:45',463,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1190,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 11:19:45','janvi','2025-10-17 11:19:45',0),(3308,2526,0,0,1107,'2025-10-17','00:00:00',930,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1191,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 11:20:45','janvi','2025-10-17 11:21:31',0),(3309,2526,0,0,1108,'2025-10-17','00:00:00',931,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1192,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 11:21:02','drashti','2025-10-17 11:21:41',0),(3310,2526,0,0,1109,'2025-10-17','11:23:26',43,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1193,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 11:23:26','janvi','2025-10-17 11:23:26',0),(3311,2526,0,0,1096,'2025-10-17','11:24:20',920,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',1194,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 11:24:20','drashti','2025-10-17 11:24:20',0),(3312,2526,0,0,1110,'2025-10-17','00:00:00',932,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 11:29:02','reception','2025-10-16 23:59:02',0),(3313,2526,0,0,1111,'2025-10-17','00:00:00',933,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1197,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 11:33:17','drashti','2025-10-17 11:34:06',0),(3314,2526,0,0,1112,'2025-10-17','00:00:00',934,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1198,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 11:34:10','reception','2025-10-17 11:34:39',0),(3315,2526,0,0,1113,'2025-10-17','00:00:00',935,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1199,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 11:37:47','reception','2025-10-17 11:38:05',0),(3316,2526,0,0,1114,'2025-10-17','00:00:00',936,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1203,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 11:38:34','janvi','2025-10-17 11:45:27',0),(3317,2526,0,0,1115,'2025-10-17','00:00:00',937,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1200,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 11:39:51','reception','2025-10-17 11:40:49',0),(3318,2526,0,0,1116,'2025-10-17','00:00:00',938,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1201,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 11:40:42','drashti','2025-10-17 11:42:14',0),(3319,2526,0,0,1117,'2025-10-17','00:00:00',939,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1202,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 11:41:56','reception','2025-10-17 11:42:36',0),(3320,2526,0,0,1085,'2025-10-17','11:49:58',911,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1204,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 11:49:58','reception','2025-10-17 11:49:58',0),(3321,2526,0,0,1085,'2025-10-17','11:49:58',911,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1204,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 11:49:58','reception','2025-10-17 11:49:58',0),(3322,2526,0,0,1085,'2025-10-17','11:49:58',911,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1204,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 11:49:58','reception','2025-10-17 11:49:58',0),(3323,2526,0,0,1118,'2025-10-17','00:00:00',940,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1205,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 11:51:20','reception','2025-10-17 11:53:06',0),(3324,2526,0,0,1119,'2025-10-17','00:00:00',941,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1206,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-17 11:51:44','manshi','2025-10-17 11:53:40',0),(3325,2526,0,0,1120,'2025-10-17','00:00:00',942,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1207,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 11:55:06','janvi','2025-10-17 11:59:23',0),(3326,2526,0,0,1121,'2025-10-17','00:00:00',943,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1208,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 12:00:37','reception','2025-10-17 12:02:09',0),(3327,2526,0,0,1122,'2025-10-17','00:00:00',944,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1210,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 12:03:24','drashti','2025-10-17 12:04:05',0),(3328,2526,0,0,1123,'2025-10-17','00:00:00',945,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1211,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 12:03:57','reception','2025-10-17 12:04:34',0),(3329,2526,0,0,1119,'2025-10-17','12:03:59',941,0,'XRY','XRY0352','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',1209,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-17 12:03:59','manshi','2025-10-17 12:03:59',0),(3330,2526,0,0,1124,'2025-10-17','12:08:37',579,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1212,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-17 12:08:37','manshi','2025-10-17 12:08:37',0),(3331,2526,0,0,1126,'2025-10-17','00:00:00',946,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1214,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 12:09:00','janvi','2025-10-17 12:09:53',0),(3332,2526,0,0,1125,'2025-10-17','12:09:34',580,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1213,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-17 12:09:34','manshi','2025-10-17 12:09:34',0),(3333,2526,0,0,1127,'2025-10-17','12:11:51',481,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',1215,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 12:11:51','drashti','2025-10-17 12:11:51',0),(3334,2526,0,0,1128,'2025-10-17','12:12:07',887,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1216,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 12:12:07','janvi','2025-10-17 12:12:07',0),(3335,2526,0,0,1129,'2025-10-17','00:00:00',947,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1217,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 12:12:25','reception','2025-10-17 12:12:53',0),(3336,2526,0,0,1130,'2025-10-17','00:00:00',948,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1218,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 12:14:15','janvi','2025-10-17 12:35:40',0),(3337,2526,0,0,1126,'2025-10-17','12:18:28',946,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,30,'',0,0,'','','','','',2526,'H','O',1219,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-10-17 12:18:28','janvi','2025-10-17 12:18:28',0),(3338,2526,0,0,1131,'2025-10-17','00:00:00',949,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1220,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 12:19:56','drashti','2025-10-17 12:20:44',0),(3339,2526,0,0,1132,'2025-10-17','00:00:00',950,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1222,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 12:29:06','reception','2025-10-17 12:31:57',0),(3340,2526,0,0,1133,'2025-10-17','00:00:00',951,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1221,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 12:29:40','drashti','2025-10-17 12:30:53',0),(3341,2526,0,0,1134,'2025-10-17','00:00:00',259,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1224,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 12:37:06','drashti','2025-10-17 12:37:53',0),(3342,2526,0,0,1135,'2025-10-17','00:00:00',370,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 12:38:07','janvi','2025-10-17 01:08:07',0),(3343,2526,0,0,1135,'2025-10-17','12:38:52',370,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1225,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 12:38:52','janvi','2025-10-17 12:38:52',0),(3344,2526,0,0,1130,'2025-10-17','12:40:21',948,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',1226,1,60,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 12:40:21','janvi','2025-10-17 12:40:21',0),(3345,2526,0,0,1130,'2025-10-17','12:40:21',948,0,'PKG','CASE','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1226,2,140,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 12:40:21','janvi','2025-10-17 12:40:21',0),(3346,2526,0,0,1136,'2025-10-17','00:00:00',952,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1227,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 12:41:04','reception','2025-10-17 12:41:39',0),(3347,2526,0,0,1137,'2025-10-17','00:00:00',953,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1228,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 12:42:09','drashti','2025-10-17 12:43:53',0),(3348,2526,0,0,1116,'2025-10-17','12:43:56',938,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1229,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 12:43:56','janvi','2025-10-17 12:43:56',0),(3349,2526,0,0,1138,'2025-10-17','00:00:00',954,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1230,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 12:44:23','reception','2025-10-17 12:44:44',0),(3350,2526,0,0,1095,'2025-10-17','12:53:51',919,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1231,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 12:53:51','reception','2025-10-17 12:53:51',0),(3351,2526,0,0,1095,'2025-10-17','12:53:51',919,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1231,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 12:53:51','reception','2025-10-17 12:53:51',0),(3352,2526,0,0,1095,'2025-10-17','12:53:51',919,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1231,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 12:53:51','reception','2025-10-17 12:53:51',0),(3353,2526,0,0,1139,'2025-10-17','00:00:00',277,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',1232,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 13:05:05','drashti','2025-10-17 13:05:57',0),(3354,2526,0,0,1140,'2025-10-17','13:00:00',938,68,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',53,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 13:06:01','riya','2025-10-18 16:03:53',0),(3355,2526,0,0,1140,'2025-10-17','13:00:00',938,68,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',53,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 13:06:01','riya','2025-10-18 16:03:53',0),(3356,2526,0,0,1140,'2025-10-17','13:00:00',938,68,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',53,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 01:36:01','riya','2025-10-18 16:03:53',0),(3357,2526,0,0,1140,'2025-10-17','13:00:00',938,68,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',53,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 01:36:01','riya','2025-10-18 16:03:53',0),(3358,2526,0,0,1140,'2025-10-17','13:00:00',938,68,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',53,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 01:36:01','riya','2025-10-18 16:03:53',0),(3359,2526,0,0,1140,'2025-10-17','13:00:00',938,68,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 01:36:01','riya','2025-10-18 16:03:53',0),(3360,2526,0,0,1140,'2025-10-17','13:00:00',938,68,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','402','','','',2526,'H','I',53,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 01:36:01','riya','2025-10-18 16:03:53',0),(3361,2526,0,0,1129,'2025-10-17','13:08:11',947,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1233,1,287,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 13:08:11','reception','2025-10-17 13:08:11',0),(3362,2526,0,0,1129,'2025-10-17','13:08:11',947,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1233,2,287,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 13:08:11','reception','2025-10-17 13:08:11',0),(3363,2526,0,0,1129,'2025-10-17','13:08:11',947,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1233,3,326,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 13:08:11','reception','2025-10-17 13:08:11',0),(3364,2526,0,0,1100,'2025-10-17','13:14:43',924,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1234,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 13:14:43','reception','2025-10-17 13:14:43',0),(3365,2526,0,0,1100,'2025-10-17','13:14:43',924,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1234,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 13:14:43','reception','2025-10-17 13:14:43',0),(3366,2526,0,0,1142,'2025-10-17','00:00:00',955,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1235,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 13:22:01','reception','2025-10-17 13:22:14',0),(3367,2526,0,0,1141,'2025-10-17','13:22:53',560,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',1236,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 13:22:53','janvi','2025-10-17 13:22:53',0),(3368,2526,0,0,284,'2025-10-16','23:00:00',0,21,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 01:52:56','vishal','2025-10-17 14:43:55',0),(3369,2526,0,0,284,'2025-10-16','23:00:00',0,21,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 01:52:56','vishal','2025-10-17 14:43:55',0),(3370,2526,0,0,284,'2025-10-16','23:00:00',0,21,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','411','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 01:52:56','vishal','2025-10-17 14:28:49',0),(3371,2526,0,0,284,'2025-10-16','23:00:00',0,21,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','411','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 01:52:56','vishal','2025-10-17 14:46:39',0),(3372,2526,0,0,284,'2025-10-16','23:00:00',0,21,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 01:52:56','vishal','2025-10-17 14:46:39',0),(3373,2526,0,0,1090,'2025-10-17','13:59:51',915,0,'WPRC','WPRC0046','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,0.00,5000,3,0,0,'',0,0,'','','','','',2526,'H','O',1237,1,1000,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 13:59:51','janvi','2025-10-17 13:59:51',0),(3374,2526,0,0,1144,'2025-10-17','14:00:00',0,69,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',64,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:04:50','riya','2025-10-18 11:31:56',0),(3375,2526,0,0,1144,'2025-10-17','14:00:00',0,69,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',64,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:04:50','riya','2025-10-18 11:31:56',0),(3376,2526,0,0,1144,'2025-10-17','14:00:00',0,69,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',64,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 02:34:50','riya','2025-10-18 11:31:56',0),(3377,2526,0,0,1144,'2025-10-17','14:00:00',0,69,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',64,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 02:34:50','riya','2025-10-18 11:31:56',0),(3378,2526,0,0,1144,'2025-10-17','14:00:00',0,69,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',64,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 02:34:50','riya','2025-10-18 11:31:56',0),(3379,2526,0,0,1144,'2025-10-17','14:00:00',0,69,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 02:34:50','riya','2025-10-18 11:31:56',0),(3380,2526,0,0,1144,'2025-10-17','14:00:00',0,69,'DRC','DRC0019','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,8,0,0,'',0,0,'','409','','','',2526,'H','I',64,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 02:34:50','riya','2025-10-18 11:31:56',0),(3381,2526,0,0,284,'2025-10-09','14:22:00',0,21,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:25:33','','0000-00-00 00:00:00',0),(3382,2526,0,0,284,'2025-10-09','14:22:00',0,21,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:25:33','vishal','2025-10-17 14:28:49',0),(3383,2526,0,0,284,'2025-10-09','14:23:00',0,21,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:25:33','','0000-00-00 00:00:00',0),(3384,2526,0,0,284,'2025-10-14','23:00:00',0,21,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:25:33','vishal','2025-10-17 14:47:01',0),(3385,2526,0,0,1145,'2025-10-17','14:26:26',713,0,'OTCG','OTCG0033','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,4,0,0,'',0,0,'','','','','',2526,'H','O',1238,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-17 14:26:26','shweta','2025-10-17 14:26:26',0),(3386,2526,0,0,284,'2025-10-14','14:26:00',0,21,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:27:58','vishal','2025-10-17 14:47:01',0),(3387,2526,0,0,284,'2025-10-14','14:27:00',0,21,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:27:58','vishal','2025-10-17 14:46:39',0),(3388,2526,0,0,284,'2025-10-14','14:27:00',0,21,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:27:58','vishal','2025-10-17 14:47:01',0),(3389,2526,0,0,1136,'2025-10-17','14:32:56',952,0,'NEU1','NEU10019','H','N',1.00,1800,1800,'P',0,0,0.00,0.00,0.00,1800,9999,0,0,'',0,0,'','','','','',2526,'H','O',1239,1,257,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 14:32:56','reception','2025-10-17 14:32:56',0),(3390,2526,0,0,1136,'2025-10-17','14:32:56',952,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1239,2,71,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 14:32:56','reception','2025-10-17 14:32:56',0),(3391,2526,0,0,1136,'2025-10-17','14:32:56',952,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1239,3,314,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 14:32:56','reception','2025-10-17 14:32:56',0),(3392,2526,0,0,1136,'2025-10-17','14:32:56',952,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1239,4,357,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 14:32:56','reception','2025-10-17 14:32:56',0),(3393,2526,0,0,284,'2025-10-17','14:30:00',0,21,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:35:38','riya','2025-10-18 11:35:23',0),(3394,2526,0,0,284,'2025-10-17','14:31:00',0,21,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:35:38','','0000-00-00 00:00:00',0),(3395,2526,0,0,284,'2025-10-17','14:31:00',0,21,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:35:38','','0000-00-00 00:00:00',0),(3396,2526,0,0,284,'2025-10-17','14:34:00',0,21,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:35:38','','0000-00-00 00:00:00',0),(3397,2526,0,0,284,'2025-10-17','14:36:00',0,21,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,91,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:43:55','riya','2025-10-18 10:46:13',0),(3398,2526,0,0,284,'2025-10-10','14:36:00',0,21,'WPRC','WPRC0098','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:43:55','vishal','2025-10-17 14:46:39',0),(3399,2526,0,0,284,'2025-10-11','14:36:00',0,21,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:43:55','vishal','2025-10-17 14:47:01',0),(3400,2526,0,0,284,'2025-10-12','14:36:00',0,21,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:43:55','vishal','2025-10-17 14:46:39',0),(3401,2526,0,0,284,'2025-10-13','14:36:00',0,21,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:43:55','vishal','2025-10-17 14:46:39',0),(3402,2526,0,0,284,'2025-10-14','14:36:00',0,21,'WPRC','WPRC0098','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:43:55','vishal','2025-10-17 14:46:39',0),(3403,2526,0,0,284,'2025-10-11','14:45:00',0,21,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:46:39','','0000-00-00 00:00:00',0),(3404,2526,0,0,284,'2025-10-12','14:45:00',0,21,'ROOM','ROOM0004','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:46:39','vishal','2025-10-17 14:47:01',0),(3405,2526,0,0,284,'2025-10-13','14:46:00',0,21,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:46:39','','0000-00-00 00:00:00',0),(3406,2526,0,0,284,'2025-10-14','14:46:00',0,21,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:46:39','vishal','2025-10-17 14:47:01',0),(3407,2526,0,0,284,'2025-10-13','14:46:00',0,21,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:47:01','','0000-00-00 00:00:00',0),(3408,2526,0,0,284,'2025-10-14','14:46:00',0,21,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 14:47:01','','0000-00-00 00:00:00',0),(3409,2526,0,0,1146,'2025-10-17','00:00:00',956,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1240,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-17 14:55:52','shweta','2025-10-17 14:56:23',0),(3410,2526,0,0,1147,'2025-10-17','15:00:00',0,70,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',73,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 15:08:19','riya','2025-10-18 11:31:11',0),(3411,2526,0,0,1147,'2025-10-17','15:00:00',0,70,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',73,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 15:08:19','riya','2025-10-18 11:31:11',0),(3412,2526,0,0,1147,'2025-10-17','15:00:00',0,70,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 03:38:20','riya','2025-10-18 11:31:11',0),(3413,2526,0,0,1147,'2025-10-17','15:00:00',0,70,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 03:38:20','riya','2025-10-18 11:31:11',0),(3414,2526,0,0,1147,'2025-10-17','15:00:00',0,70,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 03:38:20','riya','2025-10-18 11:31:11',0),(3415,2526,0,0,1147,'2025-10-17','15:00:00',0,70,'DRC','DRC0018','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,8,0,0,'',0,0,'','401','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 03:38:20','vishal','2025-10-19 18:20:41',0),(3416,2526,0,0,1147,'2025-10-17','15:00:00',0,70,'DRC','DRC0019','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,8,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 03:38:20','vishal','2025-10-25 13:36:06',0),(3417,2526,0,0,1148,'2025-10-17','00:00:00',957,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-17 15:47:15','shweta','2025-10-17 04:17:15',0),(3418,2526,0,0,1148,'2025-10-17','15:47:41',957,0,'OPWD','OPWD0016','H','N',1.00,750,750,'P',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1241,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-17 15:47:41','shweta','2025-10-17 15:47:41',0),(3419,2526,0,0,1149,'2025-10-17','00:00:00',958,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 16:37:17','reception','2025-10-17 05:07:17',0),(3420,2526,0,0,1150,'2025-10-17','00:00:00',959,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 16:39:29','reception','2025-10-17 05:09:29',0),(3421,2526,0,0,1151,'2025-10-17','00:00:00',960,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 16:40:54','reception','2025-10-17 05:10:54',0),(3422,2526,0,0,28,'2025-10-04','18:00:00',0,2,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','vishal','2025-10-17 16:47:14',0),(3423,2526,0,0,28,'2025-10-05','18:00:00',0,2,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','vishal','2025-10-17 16:47:14',0),(3424,2526,0,0,28,'2025-10-06','18:00:00',0,2,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','riya','2025-10-17 17:11:54',0),(3425,2526,0,0,28,'2025-10-07','18:00:00',0,2,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','riya','2025-10-17 17:11:54',0),(3426,2526,0,0,28,'2025-10-08','18:00:00',0,2,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','riya','2025-10-17 17:11:09',0),(3427,2526,0,0,28,'2025-10-09','18:00:00',0,2,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','vishal','2025-10-17 16:53:15',0),(3428,2526,0,0,28,'2025-10-04','18:00:00',0,2,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','vishal','2025-10-17 16:47:14',0),(3429,2526,0,0,28,'2025-10-05','18:00:00',0,2,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','riya','2025-10-17 17:11:54',0),(3430,2526,0,0,28,'2025-10-06','18:00:00',0,2,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','riya','2025-10-17 17:11:54',0),(3431,2526,0,0,28,'2025-10-07','18:00:00',0,2,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','riya','2025-10-17 17:06:23',0),(3432,2526,0,0,28,'2025-10-08','18:00:00',0,2,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','riya','2025-10-17 17:11:09',0),(3433,2526,0,0,28,'2025-10-09','18:00:00',0,2,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','vishal','2025-10-17 16:53:15',0),(3434,2526,0,0,28,'2025-10-04','18:00:00',0,2,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','vishal','2025-10-17 16:47:14',0),(3435,2526,0,0,28,'2025-10-05','18:00:00',0,2,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','vishal','2025-10-17 16:47:14',0),(3436,2526,0,0,28,'2025-10-06','18:00:00',0,2,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','riya','2025-10-17 17:11:09',0),(3437,2526,0,0,28,'2025-10-07','18:00:00',0,2,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','riya','2025-10-17 17:11:54',0),(3438,2526,0,0,28,'2025-10-08','18:00:00',0,2,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','vishal','2025-10-17 16:53:15',0),(3439,2526,0,0,28,'2025-10-09','18:00:00',0,2,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','vishal','2025-10-17 16:53:15',0),(3440,2526,0,0,28,'2025-10-10','18:00:00',0,2,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','riya','2025-10-17 17:06:23',0),(3441,2526,0,0,28,'2025-10-05','18:00:00',0,2,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','vishal','2025-10-17 16:56:20',0),(3442,2526,0,0,28,'2025-10-06','18:00:00',0,2,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','riya','2025-10-17 17:11:54',0),(3443,2526,0,0,28,'2025-10-07','18:00:00',0,2,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','riya','2025-10-17 17:11:54',0),(3444,2526,0,0,28,'2025-10-08','18:00:00',0,2,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','vishal','2025-10-17 16:56:20',0),(3445,2526,0,0,28,'2025-10-09','18:00:00',0,2,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','riya','2025-10-17 17:06:23',0),(3446,2526,0,0,28,'2025-10-04','18:00:00',0,2,'DRC','DRC0019','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,8,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','vishal','2025-10-17 16:56:20',0),(3447,2526,0,0,28,'2025-10-05','18:00:00',0,2,'DRC','DRC0019','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','riya','2025-10-17 17:11:54',0),(3448,2526,0,0,28,'2025-10-06','18:00:00',0,2,'DRC','DRC0019','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','riya','2025-10-17 17:11:09',0),(3449,2526,0,0,28,'2025-10-07','18:00:00',0,2,'DRC','DRC0019','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','riya','2025-10-17 17:11:09',0),(3450,2526,0,0,28,'2025-10-08','18:00:00',0,2,'DRC','DRC0019','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','208','','','',2526,'H','D',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','riya','2025-10-17 17:11:54',0),(3451,2526,0,0,28,'2025-10-09','18:00:00',0,2,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','208','','','',2526,'H','D',49,49,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 05:15:41','riya','2025-10-17 17:13:50',0),(3452,2526,0,0,1152,'2025-10-17','00:00:00',961,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1242,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 16:47:57','reception','2025-10-17 16:48:18',0),(3453,2526,0,0,1153,'2025-10-17','00:00:00',962,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1243,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 16:51:39','reception','2025-10-17 16:51:53',0),(3454,2526,0,0,28,'2025-10-04','16:53:00',0,2,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 16:53:59','vishal','2025-10-17 16:56:20',0),(3455,2526,0,0,28,'2025-10-04','16:53:00',0,2,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 16:53:59','vishal','2025-10-17 16:56:20',0),(3456,2526,0,0,1154,'2025-10-17','00:00:00',963,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 16:55:04','reception','2025-10-17 05:25:04',0),(3457,2526,0,0,28,'2025-10-04','16:54:00',0,2,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-17 16:56:20','riya','2025-10-17 17:06:23',0),(3458,2526,0,0,1155,'2025-10-17','00:00:00',964,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1244,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 16:58:53','reception','2025-10-17 16:59:54',0),(3459,2526,0,0,1156,'2025-10-17','00:00:00',965,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1245,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 17:00:17','drashti','2025-10-17 17:00:42',0),(3460,2526,0,0,1157,'2025-10-17','00:00:00',966,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:01:37','reception','2025-10-17 05:31:37',0),(3461,2526,0,0,1158,'2025-10-17','00:00:00',967,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1246,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 17:01:53','drashti','2025-10-17 17:02:47',0),(3462,2526,0,0,1160,'2025-10-17','00:00:00',968,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1247,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 17:03:25','drashti','2025-10-17 17:03:37',0),(3463,2526,0,0,28,'2025-10-05','16:59:00',0,2,'DRC','DRC0020','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:06:23','riya','2025-10-17 17:11:09',0),(3464,2526,0,0,28,'2025-10-05','16:59:00',0,2,'DRC','DRC0020','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:06:23','riya','2025-10-17 17:11:09',0),(3465,2526,0,0,28,'2025-10-09','17:01:00',0,2,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,65,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:06:23','riya','2025-10-17 17:11:54',0),(3466,2526,0,0,28,'2025-10-09','17:02:00',0,2,'DRC','DRC0020','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,66,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:06:23','','0000-00-00 00:00:00',0),(3467,2526,0,0,1161,'2025-10-17','17:07:29',438,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1248,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:07:29','janvi','2025-10-17 18:17:10',0),(3468,2526,0,0,28,'2025-10-04','17:07:00',0,2,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:11:09','riya','2025-10-17 17:11:54',0),(3469,2526,0,0,28,'2025-10-04','17:07:00',0,2,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,8,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:11:09','riya','2025-10-17 17:11:54',0),(3470,2526,0,0,28,'2025-10-04','17:07:00',0,2,'WPRC','WPRC0090','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:11:09','riya','2025-10-17 17:11:54',0),(3471,2526,0,0,28,'2025-10-04','17:07:00',0,2,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:11:09','riya','2025-10-17 17:11:54',0),(3472,2526,0,0,28,'2025-10-05','17:08:00',0,2,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:11:09','riya','2025-10-17 17:11:54',0),(3473,2526,0,0,28,'2025-10-05','17:08:00',0,2,'WPRC','WPRC0097','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,8,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:11:09','riya','2025-10-17 17:11:54',0),(3474,2526,0,0,28,'2025-10-05','17:08:00',0,2,'WPRC','WPRC0090','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:11:09','','0000-00-00 00:00:00',0),(3475,2526,0,0,28,'2025-10-05','17:09:00',0,2,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:11:09','','0000-00-00 00:00:00',0),(3476,2526,0,0,28,'2025-10-05','17:09:00',0,2,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:11:09','','0000-00-00 00:00:00',0),(3477,2526,0,0,28,'2025-10-05','17:09:00',0,2,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:11:09','riya','2025-10-17 17:11:54',0),(3478,2526,0,0,28,'2025-10-06','17:09:00',0,2,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:11:09','','0000-00-00 00:00:00',0),(3479,2526,0,0,28,'2025-10-06','17:09:00',0,2,'USG','USG0091','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:11:09','riya','2025-10-17 17:11:54',0),(3480,2526,0,0,28,'2025-10-06','17:09:00',0,2,'WPRC','WPRC0092','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,4,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:11:09','','0000-00-00 00:00:00',0),(3481,2526,0,0,28,'2025-10-06','17:10:00',0,2,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:11:09','','0000-00-00 00:00:00',0),(3482,2526,0,0,28,'2025-10-06','17:10:00',0,2,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:11:09','','0000-00-00 00:00:00',0),(3483,2526,0,0,28,'2025-10-07','17:10:00',0,2,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:11:09','','0000-00-00 00:00:00',0),(3484,2526,0,0,28,'2025-10-08','17:10:00',0,2,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:11:09','','0000-00-00 00:00:00',0),(3485,2526,0,0,28,'2025-10-09','17:10:00',0,2,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:11:09','','0000-00-00 00:00:00',0),(3486,2526,0,0,1162,'2025-10-17','00:00:00',969,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',1249,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-17 17:17:06','manshi','2025-10-17 17:17:20',0),(3487,2526,0,0,1152,'2025-10-17','17:17:57',961,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1250,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:17:57','reception','2025-10-17 17:17:57',0),(3488,2526,0,0,1152,'2025-10-17','17:17:57',961,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1250,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:17:57','reception','2025-10-17 17:17:57',0),(3489,2526,0,0,1152,'2025-10-17','17:17:57',961,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1250,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:17:57','reception','2025-10-17 17:17:57',0),(3490,2526,0,0,1163,'2025-10-17','17:20:49',945,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1251,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:20:49','reception','2025-10-17 17:20:49',0),(3491,2526,0,0,1163,'2025-10-17','17:20:49',945,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1251,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:20:49','reception','2025-10-17 17:20:49',0),(3492,2526,0,0,1163,'2025-10-17','17:20:49',945,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1251,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:20:49','reception','2025-10-17 17:20:49',0),(3493,2526,0,0,1164,'2025-10-17','00:00:00',970,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1252,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 17:24:37','janvi','2025-10-17 17:25:20',0),(3494,2526,0,0,1165,'2025-10-17','00:00:00',971,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1253,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:25:36','reception','2025-10-17 17:26:01',0),(3495,2526,0,0,246,'2025-10-17','17:28:00',0,18,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:29:55','','0000-00-00 00:00:00',0),(3496,2526,0,0,1166,'2025-10-17','00:00:00',972,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1254,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:30:29','reception','2025-10-17 17:31:14',0);
INSERT INTO `service_request` VALUES (3497,2526,0,0,1167,'2025-10-17','00:00:00',973,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1255,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 17:31:22','janvi','2025-10-17 17:32:06',0),(3498,2526,0,0,246,'2025-10-17','17:29:00',0,18,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:31:44','','0000-00-00 00:00:00',0),(3499,2526,0,0,246,'2025-10-16','17:30:00',0,18,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:31:44','','0000-00-00 00:00:00',0),(3500,2526,0,0,246,'2025-10-16','17:30:00',0,18,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:31:44','','0000-00-00 00:00:00',0),(3501,2526,0,0,246,'2025-10-17','17:30:00',0,18,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:31:44','','0000-00-00 00:00:00',0),(3502,2526,0,0,246,'2025-10-17','17:30:00',0,18,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:31:44','','0000-00-00 00:00:00',0),(3503,2526,0,0,246,'2025-10-17','17:31:00',0,18,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:31:44','','0000-00-00 00:00:00',0),(3504,2526,0,0,1168,'2025-10-17','17:38:06',305,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1256,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 17:38:06','janvi','2025-10-17 17:38:06',0),(3505,2526,0,0,1169,'2025-10-17','00:00:00',974,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1257,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:38:34','reception','2025-10-17 17:39:04',0),(3506,2526,0,0,1170,'2025-10-17','00:00:00',975,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1258,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 17:39:31','janvi','2025-10-17 17:39:47',0),(3507,2526,0,0,1171,'2025-10-17','00:00:00',976,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1260,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 17:41:14','drashti','2025-10-17 17:42:40',0),(3508,2526,0,0,1160,'2025-10-17','17:41:52',968,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1259,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:41:52','reception','2025-10-17 17:41:52',0),(3509,2526,0,0,1160,'2025-10-17','17:41:52',968,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1259,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:41:52','reception','2025-10-17 17:41:52',0),(3510,2526,0,0,1172,'2025-10-17','00:00:00',977,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1261,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 17:42:56','janvi','2025-10-17 17:43:48',0),(3511,2526,0,0,1173,'2025-10-17','00:00:00',978,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1262,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:43:08','reception','2025-10-17 17:44:12',0),(3512,2526,0,0,1174,'2025-10-17','00:00:00',979,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1263,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:46:03','reception','2025-10-17 17:46:37',0),(3513,2526,0,0,1175,'2025-10-17','00:00:00',980,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1264,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:48:13','reception','2025-10-17 17:48:59',0),(3514,2526,0,0,1177,'2025-10-17','00:00:00',981,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1265,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 17:48:49','janvi','2025-10-17 17:49:33',0),(3515,2526,0,0,1176,'2025-10-17','17:49:48',862,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1266,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 17:49:48','drashti','2025-10-17 17:49:48',0),(3516,2526,0,0,1176,'2025-10-17','17:49:48',862,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1266,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 17:49:48','drashti','2025-10-17 17:49:48',0),(3517,2526,0,0,1178,'2025-10-17','00:00:00',982,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1267,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:50:49','reception','2025-10-17 17:51:56',0),(3518,2526,0,0,1179,'2025-10-17','00:00:00',983,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1268,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 17:51:42','janvi','2025-10-17 17:52:11',0),(3519,2526,0,0,1072,'2025-10-16','17:50:00',0,67,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',48,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:52:20','','0000-00-00 00:00:00',0),(3520,2526,0,0,1072,'2025-10-17','17:50:00',0,67,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',48,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:52:20','','0000-00-00 00:00:00',0),(3521,2526,0,0,1072,'2025-10-16','17:51:00',0,67,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',48,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:52:20','','0000-00-00 00:00:00',0),(3522,2526,0,0,1072,'2025-10-17','17:51:00',0,67,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',48,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:52:20','','0000-00-00 00:00:00',0),(3523,2526,0,0,1072,'2025-10-17','17:51:00',0,67,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,2,0,0,'',0,0,'','','','','',2526,'H','I',48,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 17:52:20','','0000-00-00 00:00:00',0),(3524,2526,0,0,1180,'2025-10-17','00:00:00',984,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',1269,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:55:00','reception','2025-10-17 17:55:28',0),(3525,2526,0,0,939,'2025-10-16','10:30:00',709,65,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:27:25','riya','2025-10-17 18:03:39',0),(3526,2526,0,0,939,'2025-10-17','10:30:00',709,65,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:27:25','vishal','2025-10-20 11:41:12',0),(3527,2526,0,0,939,'2025-10-16','10:30:00',709,65,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:27:25','riya','2025-10-17 18:03:39',0),(3528,2526,0,0,939,'2025-10-17','10:30:00',709,65,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:27:25','vishal','2025-10-19 18:34:35',0),(3529,2526,0,0,939,'2025-10-16','10:30:00',709,65,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:27:25','riya','2025-10-17 18:03:39',0),(3530,2526,0,0,939,'2025-10-17','10:30:00',709,65,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:27:25','vishal','2025-10-20 11:41:12',0),(3531,2526,0,0,939,'2025-10-16','10:30:00',709,65,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:27:25','riya','2025-10-17 18:03:39',0),(3532,2526,0,0,939,'2025-10-17','10:30:00',709,65,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:27:25','riya','2025-10-17 18:03:39',0),(3533,2526,0,0,939,'2025-10-16','10:30:00',709,65,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:27:25','riya','2025-10-17 18:03:39',0),(3534,2526,0,0,939,'2025-10-17','10:30:00',709,65,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:27:25','riya','2025-10-17 18:03:39',0),(3535,2526,0,0,1181,'2025-10-17','00:00:00',985,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1270,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 17:57:40','reception','2025-10-17 17:57:56',0),(3536,2526,0,0,489,'2025-10-17','17:00:00',0,38,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:30:02','riya','2025-10-17 18:01:09',0),(3537,2526,0,0,489,'2025-10-17','17:00:00',0,38,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:30:02','riya','2025-10-17 18:01:09',0),(3538,2526,0,0,489,'2025-10-17','17:00:00',0,38,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:30:02','riya','2025-10-17 18:01:09',0),(3539,2526,0,0,489,'2025-10-17','17:00:00',0,38,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:30:02','riya','2025-10-17 18:01:09',0),(3540,2526,0,0,489,'2025-10-17','17:00:00',0,38,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:30:02','riya','2025-10-17 18:01:09',0),(3541,2526,0,0,489,'2025-10-13','17:59:00',0,38,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:01:09','','0000-00-00 00:00:00',0),(3542,2526,0,0,1182,'2025-10-17','00:00:00',986,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1271,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 18:02:12','reception','2025-10-17 18:02:35',0),(3543,2526,0,0,1183,'2025-10-17','00:00:00',987,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1279,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-17 18:02:19','manshi','2025-10-17 18:12:17',0),(3544,2526,0,0,1184,'2025-10-17','00:00:00',988,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1272,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 18:02:26','janvi','2025-10-17 18:02:43',0),(3545,2526,0,0,489,'2025-10-17','18:00:00',0,38,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:02:39','','0000-00-00 00:00:00',0),(3546,2526,0,0,489,'2025-10-17','18:01:00',0,38,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:02:39','','0000-00-00 00:00:00',0),(3547,2526,0,0,489,'2025-10-17','18:01:00',0,38,'WPRC','WPRC0089','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:02:39','vishal','2025-10-19 18:46:29',0),(3548,2526,0,0,489,'2025-10-17','18:01:00',0,38,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:02:39','','0000-00-00 00:00:00',0),(3549,2526,0,0,939,'2025-10-17','17:57:00',709,65,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',62,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:03:39','','0000-00-00 00:00:00',0),(3550,2526,0,0,1185,'2025-10-17','00:00:00',989,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1274,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 18:05:10','janvi','2025-10-17 18:06:07',0),(3551,2526,0,0,1186,'2025-10-17','00:00:00',990,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1273,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 18:05:15','reception','2025-10-17 18:05:33',0),(3552,2526,0,0,1187,'2025-10-17','00:00:00',201,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1275,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 18:05:46','drashti','2025-10-17 18:06:35',0),(3553,2526,0,0,939,'2025-10-16','18:04:00',709,65,'DRC','DRC0020','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','','','','',2526,'H','I',62,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:07:15','vishal','2025-10-19 18:34:35',0),(3554,2526,0,0,939,'2025-10-17','18:05:00',709,65,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','','','','',2526,'H','I',62,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:07:15','','0000-00-00 00:00:00',0),(3555,2526,0,0,1189,'2025-10-17','18:10:35',431,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1276,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 18:10:35','janvi','2025-10-17 18:10:35',0),(3556,2526,0,0,1190,'2025-10-17','00:00:00',991,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1278,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 18:11:27','drashti','2025-10-17 18:38:55',0),(3557,2526,0,0,1173,'2025-10-17','18:11:45',978,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1277,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 18:11:45','reception','2025-10-17 18:11:45',0),(3558,2526,0,0,1173,'2025-10-17','18:11:45',978,0,'NEU1','NEU10016','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',1277,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 18:11:45','reception','2025-10-17 18:11:45',0),(3559,2526,0,0,936,'2025-10-16','22:00:00',769,64,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',52,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:41:49','riya','2025-10-17 18:16:35',0),(3560,2526,0,0,936,'2025-10-16','22:00:00',769,64,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',52,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:41:49','riya','2025-10-17 18:16:35',0),(3561,2526,0,0,936,'2025-10-16','22:00:00',769,64,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',52,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:41:49','riya','2025-10-17 18:16:35',0),(3562,2526,0,0,936,'2025-10-16','22:00:00',769,64,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','I',52,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:41:49','riya','2025-10-17 18:16:35',0),(3563,2526,0,0,936,'2025-10-16','22:00:00',769,64,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','I',52,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:41:49','riya','2025-10-17 18:16:35',0),(3564,2526,0,0,1183,'2025-10-17','18:13:49',987,0,'XRY','XRY0145','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',1280,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-17 18:13:49','manshi','2025-10-17 18:13:49',0),(3565,2526,0,0,1191,'2025-10-17','00:00:00',992,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1281,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 18:13:58','drashti','2025-10-17 18:14:39',0),(3566,2526,0,0,1188,'2025-10-17','18:15:01',441,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,7,0,0,'',0,0,'','','','','',2526,'H','O',1282,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-17 18:15:01','manshi','2025-10-17 18:15:01',0),(3567,2526,0,0,936,'2025-10-15','18:11:00',769,64,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:16:35','','0000-00-00 00:00:00',0),(3568,2526,0,0,936,'2025-10-15','18:11:00',769,64,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:16:35','','0000-00-00 00:00:00',0),(3569,2526,0,0,936,'2025-10-15','18:11:00',769,64,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,5,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:16:35','','0000-00-00 00:00:00',0),(3570,2526,0,0,936,'2025-10-15','18:12:00',769,64,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:16:35','','0000-00-00 00:00:00',0),(3571,2526,0,0,936,'2025-10-16','18:13:00',769,64,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:16:35','','0000-00-00 00:00:00',0),(3572,2526,0,0,936,'2025-10-16','18:13:00',769,64,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:16:35','','0000-00-00 00:00:00',0),(3573,2526,0,0,936,'2025-10-16','18:14:00',769,64,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:16:35','','0000-00-00 00:00:00',0),(3574,2526,0,0,936,'2025-10-16','18:14:00',769,64,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:16:35','','0000-00-00 00:00:00',0),(3575,2526,0,0,936,'2025-10-17','18:14:00',769,64,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:16:35','','0000-00-00 00:00:00',0),(3576,2526,0,0,936,'2025-10-17','18:15:00',769,64,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:16:35','','0000-00-00 00:00:00',0),(3577,2526,0,0,936,'2025-10-17','18:15:00',769,64,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:16:35','','0000-00-00 00:00:00',0),(3578,2526,0,0,936,'2025-10-16','18:16:00',769,64,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,52,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:18:23','','0000-00-00 00:00:00',0),(3579,2526,0,0,1193,'2025-10-17','00:00:00',993,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',1284,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-17 18:21:35','manshi','2025-10-17 18:22:18',0),(3580,2526,0,0,882,'2025-10-17','17:00:00',0,63,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:54:08','riya','2025-10-17 18:27:20',0),(3581,2526,0,0,882,'2025-10-17','17:00:00',0,63,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:54:09','riya','2025-10-17 18:27:20',0),(3582,2526,0,0,882,'2025-10-17','17:00:00',0,63,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:54:09','riya','2025-10-17 18:27:20',0),(3583,2526,0,0,882,'2025-10-17','17:00:00',0,63,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:54:09','riya','2025-10-17 18:27:20',0),(3584,2526,0,0,882,'2025-10-17','17:00:00',0,63,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',49,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:54:09','riya','2025-10-17 18:27:20',0),(3585,2526,0,0,1194,'2025-10-17','00:00:00',994,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1285,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 18:25:22','reception','2025-10-17 18:26:38',0),(3586,2526,0,0,882,'2025-10-17','18:25:00',0,63,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:27:20','','0000-00-00 00:00:00',0),(3587,2526,0,0,882,'2025-10-17','18:26:00',0,63,'WPRC','WPRC0089','H','N',8.00,100,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:27:20','','0000-00-00 00:00:00',0),(3588,2526,0,0,882,'2025-10-17','18:26:00',0,63,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:27:20','','0000-00-00 00:00:00',0),(3589,2526,0,0,1004,'2025-10-17','13:50:00',0,66,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',54,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:58:49','riya','2025-10-17 18:30:53',0),(3590,2526,0,0,1004,'2025-10-17','13:50:00',0,66,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',54,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:58:49','riya','2025-10-17 18:30:53',0),(3591,2526,0,0,1004,'2025-10-17','13:50:00',0,66,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',54,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:58:49','riya','2025-10-17 18:30:53',0),(3592,2526,0,0,1004,'2025-10-17','13:50:00',0,66,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','207','','','',2526,'H','I',54,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:58:49','riya','2025-10-17 18:30:53',0),(3593,2526,0,0,1004,'2025-10-17','13:50:00',0,66,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','207','','','',2526,'H','I',54,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 06:58:49','riya','2025-10-17 18:30:53',0),(3594,2526,0,0,1195,'2025-10-17','00:00:00',995,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1286,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 18:28:58','reception','2025-10-17 18:29:36',0),(3595,2526,0,0,1004,'2025-10-16','18:28:00',0,66,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',54,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:30:53','','0000-00-00 00:00:00',0),(3596,2526,0,0,1004,'2025-10-16','18:28:00',0,66,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',54,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:30:53','','0000-00-00 00:00:00',0),(3597,2526,0,0,1004,'2025-10-17','18:29:00',0,66,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',54,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:30:53','','0000-00-00 00:00:00',0),(3598,2526,0,0,1004,'2025-10-16','18:29:00',0,66,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',54,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:30:53','','0000-00-00 00:00:00',0),(3599,2526,0,0,1004,'2025-10-17','18:29:00',0,66,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',54,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:30:53','','0000-00-00 00:00:00',0),(3600,2526,0,0,414,'2025-10-17','18:32:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:34:40','','0000-00-00 00:00:00',0),(3601,2526,0,0,414,'2025-10-17','18:32:00',0,25,'WPRC','WPRC0089','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:34:40','','0000-00-00 00:00:00',0),(3602,2526,0,0,414,'2025-10-17','18:32:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:34:40','','0000-00-00 00:00:00',0),(3603,2526,0,0,414,'2025-10-17','18:33:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 18:34:40','riya','2025-10-25 11:28:26',0),(3604,2526,0,0,1196,'2025-10-17','18:35:09',140,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1287,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 18:35:09','janvi','2025-10-17 18:35:09',0),(3605,2526,0,0,1197,'2025-10-17','00:00:00',996,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1289,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 18:35:57','reception','2025-10-17 18:37:30',0),(3606,2526,0,0,1198,'2025-10-17','00:00:00',997,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1288,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 18:36:23','drashti','2025-10-17 18:36:56',0),(3607,2526,0,0,1178,'2025-10-17','18:40:17',982,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1291,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 18:40:17','reception','2025-10-17 18:40:17',0),(3608,2526,0,0,1178,'2025-10-17','18:40:17',982,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',1291,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 18:40:17','reception','2025-10-17 18:40:17',0),(3609,2526,0,0,1200,'2025-10-17','00:00:00',998,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1293,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 18:48:49','janvi','2025-10-17 18:50:32',0),(3610,2526,0,0,1191,'2025-10-17','18:49:03',992,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,31,'',0,0,'','','','','',2526,'H','O',1292,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'drashti','2025-10-17 18:49:03','drashti','2025-10-17 18:49:03',0),(3611,2526,0,0,1201,'2025-10-17','00:00:00',999,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1294,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 18:50:11','janvi','2025-10-17 18:51:04',0),(3612,2526,0,0,1175,'2025-10-17','18:55:08',980,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1295,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 18:55:08','reception','2025-10-17 18:55:08',0),(3613,2526,0,0,1175,'2025-10-17','18:55:08',980,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',1295,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 18:55:08','reception','2025-10-17 18:55:08',0),(3614,2526,0,0,1203,'2025-10-17','00:00:00',270,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1296,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 18:58:13','janvi','2025-10-17 18:59:03',0),(3615,2526,0,0,1204,'2025-10-17','00:00:00',1000,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1297,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 19:02:28','reception','2025-10-17 19:02:44',0),(3616,2526,0,0,1205,'2025-10-17','00:00:00',1001,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1298,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 19:10:34','drashti','2025-10-17 19:11:32',0),(3617,2526,0,0,1206,'2025-10-17','00:00:00',1002,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1299,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 19:11:45','janvi','2025-10-17 19:12:28',0),(3618,2526,0,0,1202,'2025-10-17','19:28:24',291,0,'PKG','CASE','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1300,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 19:28:24','janvi','2025-10-17 19:28:24',0),(3619,2526,0,0,1207,'2025-10-17','00:00:00',1003,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',1303,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-17 19:28:41','manshi','2025-10-17 19:39:02',0),(3620,2526,0,0,1208,'2025-10-17','00:00:00',1004,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1301,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-17 19:33:13','janvi','2025-10-17 19:34:20',0),(3621,2526,0,0,1209,'2025-10-17','00:00:00',1005,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-17 19:33:38','manshi','2025-10-17 08:03:38',0),(3622,2526,0,0,1210,'2025-10-17','19:38:44',901,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',1302,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-17 19:38:44','manshi','2025-10-17 19:38:44',0),(3623,2526,0,0,1194,'2025-10-17','19:40:12',994,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1304,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 19:40:12','reception','2025-10-17 19:40:12',0),(3624,2526,0,0,1194,'2025-10-17','19:40:12',994,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1304,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 19:40:12','reception','2025-10-17 19:40:12',0),(3625,2526,0,0,1211,'2025-10-17','00:00:00',1006,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1305,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-17 19:58:24','reception','2025-10-17 20:05:47',0),(3626,2526,0,0,1211,'2025-10-17','20:05:47',1006,0,'XRY','XRY0390','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',1305,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-17 20:05:47','reception','2025-10-17 20:05:47',0),(3627,2526,0,0,1212,'2025-10-17','00:00:00',1007,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',1306,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-17 20:08:01','drashti','2025-10-17 20:08:17',0),(3628,2526,0,0,1213,'2025-10-17','20:50:00',0,71,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',65,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 20:55:33','vishal','2025-10-19 18:12:31',0),(3629,2526,0,0,1213,'2025-10-17','20:50:00',0,71,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',65,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 20:55:33','vishal','2025-10-19 18:12:31',0),(3630,2526,0,0,1213,'2025-10-17','20:50:00',0,71,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 09:25:33','vishal','2025-10-19 18:12:31',0),(3631,2526,0,0,1213,'2025-10-17','20:50:00',0,71,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 09:25:33','vishal','2025-10-19 18:12:31',0),(3632,2526,0,0,1213,'2025-10-17','20:50:00',0,71,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 09:25:33','vishal','2025-10-19 18:12:31',0),(3633,2526,0,0,1213,'2025-10-18','20:50:00',0,71,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 09:25:33','vishal','2025-10-21 13:17:32',0),(3634,2526,0,0,1213,'2025-10-17','20:50:00',0,71,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-17 09:25:33','vishal','2025-10-19 18:12:31',0),(3635,2526,0,0,1214,'2025-10-18','00:00:00',1008,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-18 09:02:33','shweta','2025-10-17 21:32:33',0),(3636,2526,0,0,1214,'2025-10-18','09:04:37',1008,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',1307,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-18 09:04:37','shweta','2025-10-18 09:04:37',0),(3637,2526,0,0,1214,'2025-10-18','09:04:37',1008,0,'OPWD','OPWD0012','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,7,0,0,'',0,0,'','','','','',2526,'H','O',1307,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-18 09:04:37','shweta','2025-10-18 09:04:37',0),(3638,2526,0,0,1214,'2025-10-18','09:04:37',1008,0,'WPRC','WPRC0046','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,7,0,0,'',0,0,'','','','','',2526,'H','O',1307,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-18 09:04:37','shweta','2025-10-18 09:04:37',0),(3639,2526,0,0,1215,'2025-10-18','00:00:00',1009,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-18 09:05:40','shweta','2025-10-17 21:35:40',0),(3640,2526,0,0,1215,'2025-10-18','09:06:58',1009,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',1308,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-18 09:06:58','shweta','2025-10-18 09:06:58',0),(3641,2526,0,0,1215,'2025-10-18','09:06:58',1009,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',1308,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-18 09:06:58','shweta','2025-10-18 09:06:58',0),(3642,2526,0,0,1215,'2025-10-18','09:06:58',1009,0,'OPWD','OPWD0016','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,5,0,0,'',0,0,'','','','','',2526,'H','O',1308,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-18 09:06:58','shweta','2025-10-18 09:06:58',0),(3643,2526,0,0,1216,'2025-10-18','00:00:00',1010,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-18 09:08:16','shweta','2025-10-17 21:38:16',0),(3644,2526,0,0,1216,'2025-10-18','09:09:48',1010,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',1309,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-18 09:09:48','shweta','2025-10-18 09:09:48',0),(3645,2526,0,0,1216,'2025-10-18','09:09:48',1010,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',1309,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-18 09:09:48','shweta','2025-10-18 09:09:48',0),(3646,2526,0,0,1216,'2025-10-18','09:09:48',1010,0,'BMED','BMED0032','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',1309,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-18 09:09:48','shweta','2025-10-18 09:09:48',0),(3647,2526,0,0,1217,'2025-10-18','00:00:00',1011,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1310,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 09:41:20','reception','2025-10-18 09:41:49',0),(3648,2526,0,0,1218,'2025-10-18','00:00:00',1012,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1311,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 09:42:36','reception','2025-10-18 09:43:11',0),(3649,2526,0,0,1219,'2025-10-18','00:00:00',1013,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1312,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 09:48:03','reception','2025-10-18 09:48:38',0),(3650,2526,0,0,1220,'2025-10-18','09:30:00',0,72,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',61,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 09:48:58','riya','2025-10-18 11:24:31',0),(3651,2526,0,0,1220,'2025-10-18','09:30:00',0,72,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',61,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 09:48:58','riya','2025-10-18 11:24:31',0),(3652,2526,0,0,1220,'2025-10-18','09:30:00',0,72,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',0,'','',0,3,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 22:18:58','vishal','2025-10-19 11:34:49',0),(3653,2526,0,0,1220,'2025-10-18','09:30:00',0,72,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',0,'','',0,4,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 22:18:58','vishal','2025-10-19 11:34:49',0),(3654,2526,0,0,1220,'2025-10-18','09:30:00',0,72,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',0,'','',0,5,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 22:18:58','vishal','2025-10-19 11:34:49',0),(3655,2526,0,0,1220,'2025-10-18','09:30:00',0,72,'DRC','DRC0018','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,70,0,0,'',0,0,'','409','','','',2526,'H','I',61,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 22:18:58','riya','2025-10-18 11:24:31',0),(3656,2526,0,0,1220,'2025-10-18','09:30:00',0,72,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,70,0,0,'',0,0,'','409','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 22:18:58','vishal','2025-10-19 11:34:49',0),(3657,2526,0,0,1221,'2025-10-18','00:00:00',1014,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1313,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 09:50:25','reception','2025-10-18 09:50:42',0),(3658,2526,0,0,1222,'2025-10-18','00:00:00',1015,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1314,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-18 09:53:42','janvi','2025-10-18 09:54:52',0),(3659,2526,0,0,1223,'2025-10-18','00:00:00',1016,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1315,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 10:02:08','reception','2025-10-18 10:02:50',0),(3660,2526,0,0,1224,'2025-10-18','10:09:44',644,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1316,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-18 10:09:44','janvi','2025-10-18 10:09:44',0),(3661,2526,0,0,939,'2025-10-18','10:11:00',709,65,'XRY','XRY0045','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',62,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 10:11:30','vishal','2025-10-19 18:34:35',0),(3662,2526,0,0,1225,'2025-10-18','00:00:00',1017,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1317,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 10:12:10','reception','2025-10-18 10:12:22',0),(3663,2526,0,0,1226,'2025-10-18','00:00:00',191,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1318,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-18 10:14:10','janvi','2025-10-18 10:15:34',0),(3664,2526,0,0,1227,'2025-10-18','10:18:39',997,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1319,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 10:18:39','reception','2025-10-18 10:18:39',0),(3665,2526,0,0,1227,'2025-10-18','10:18:39',997,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1319,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 10:18:39','reception','2025-10-18 10:18:39',0),(3666,2526,0,0,284,'2025-10-17','23:00:00',0,21,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 22:49:18','riya','2025-10-18 10:46:13',0),(3667,2526,0,0,284,'2025-10-17','23:00:00',0,21,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 22:49:18','riya','2025-10-18 10:46:13',0),(3668,2526,0,0,284,'2025-10-17','23:00:00',0,21,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','411','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 22:49:18','riya','2025-10-18 10:46:13',0),(3669,2526,0,0,284,'2025-10-17','23:00:00',0,21,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','411','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 22:49:18','riya','2025-10-18 10:46:13',0),(3670,2526,0,0,284,'2025-10-17','23:00:00',0,21,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',50,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 22:49:18','riya','2025-10-18 10:46:13',0),(3671,2526,0,0,1228,'2025-10-18','00:00:00',1018,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1320,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 10:24:35','reception','2025-10-18 10:25:07',0),(3672,2526,0,0,936,'2025-10-17','22:00:00',769,64,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',52,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 22:55:35','riya','2025-10-18 10:25:51',0),(3673,2526,0,0,936,'2025-10-17','22:00:00',769,64,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',52,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 22:55:35','riya','2025-10-18 10:25:51',0),(3674,2526,0,0,936,'2025-10-17','22:00:00',769,64,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','I',52,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 22:55:35','riya','2025-10-18 10:25:51',0),(3675,2526,0,0,936,'2025-10-17','22:00:00',769,64,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','I',52,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 22:55:35','riya','2025-10-18 10:25:51',0),(3676,2526,0,0,936,'2025-10-17','22:00:00',769,64,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',52,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 22:55:35','riya','2025-10-18 10:25:51',0),(3677,2526,0,0,936,'2025-10-18','10:25:00',769,64,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 10:25:51','','0000-00-00 00:00:00',0),(3678,2526,0,0,1226,'2025-10-18','10:34:07',191,0,'LAB','LAB0792','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,32,'',0,0,'','','','','',2526,'H','O',1321,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-10-18 10:34:07','janvi','2025-10-18 10:34:07',0),(3679,2526,0,0,1226,'2025-10-18','10:34:07',191,0,'WPRC','WPRC0021','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,4,0,0,'',0,0,'','','','','',2526,'H','O',1321,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-10-18 10:34:07','janvi','2025-10-18 10:34:07',0),(3680,2526,0,0,1228,'2025-10-18','10:37:41',1018,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1322,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 10:37:41','reception','2025-10-18 10:37:41',0),(3681,2526,0,0,1229,'2025-10-18','00:00:00',1019,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1323,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-18 10:40:32','janvi','2025-10-18 10:41:01',0),(3682,2526,0,0,1230,'2025-10-18','00:00:00',1020,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1324,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-18 10:45:04','manshi','2025-10-18 10:45:33',0),(3683,2526,0,0,284,'2025-10-18','10:19:00',0,21,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',0,'','',0,107,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 10:46:13','riya','2025-10-18 11:35:23',0),(3684,2526,0,0,246,'2025-10-17','18:00:00',0,18,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 23:19:27','riya','2025-10-18 11:05:08',0),(3685,2526,0,0,246,'2025-10-17','18:00:00',0,18,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 23:19:27','riya','2025-10-18 11:05:08',0),(3686,2526,0,0,246,'2025-10-17','18:00:00',0,18,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 23:19:27','riya','2025-10-18 11:05:08',0),(3687,2526,0,0,246,'2025-10-17','18:00:00',0,18,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 23:19:27','riya','2025-10-18 11:05:08',0),(3688,2526,0,0,246,'2025-10-17','18:00:00',0,18,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',51,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-17 23:19:27','riya','2025-10-18 11:05:08',0),(3689,2526,0,0,1231,'2025-10-18','00:00:00',1021,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1325,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 10:53:40','reception','2025-10-18 10:54:03',0),(3690,2526,0,0,1232,'2025-10-18','00:00:00',1022,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1326,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 10:55:08','reception','2025-10-18 10:55:38',0),(3691,2526,0,0,1233,'2025-10-18','00:00:00',1023,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1327,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-18 10:56:25','drashti','2025-10-18 10:57:38',0),(3692,2526,0,0,246,'2025-10-16','10:50:00',0,18,'CARE','CARE0006','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 11:05:08','','0000-00-00 00:00:00',0),(3693,2526,0,0,246,'2025-10-14','11:00:00',0,18,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 11:05:08','','0000-00-00 00:00:00',0),(3694,2526,0,0,246,'2025-10-18','11:01:00',0,18,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 11:05:08','riya','2025-10-18 12:36:42',0),(3695,2526,0,0,246,'2025-10-18','11:05:00',0,18,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 11:05:57','','0000-00-00 00:00:00',0),(3696,2526,0,0,1234,'2025-10-18','00:00:00',1024,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1328,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:06:23','reception','2025-10-18 11:06:59',0),(3697,2526,0,0,1235,'2025-10-18','11:08:57',514,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1329,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-18 11:08:57','manshi','2025-10-18 11:08:57',0),(3698,2526,0,0,1236,'2025-10-18','00:00:00',76,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1330,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:09:48','reception','2025-10-18 11:11:00',0),(3699,2526,0,0,1237,'2025-10-18','00:00:00',1025,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1332,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-18 11:10:55','drashti','2025-10-18 11:12:06',0),(3700,2526,0,0,1230,'2025-10-18','11:11:37',1020,0,'XRY','XRY0390','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',1331,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-18 11:11:37','manshi','2025-10-18 11:11:37',0),(3701,2526,0,0,1223,'2025-10-18','11:13:51',1016,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1333,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:13:51','reception','2025-10-18 11:13:51',0),(3702,2526,0,0,1223,'2025-10-18','11:13:51',1016,0,'NEU1','NEU10020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',1333,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:13:51','reception','2025-10-18 11:13:51',0),(3703,2526,0,0,1238,'2025-10-18','00:00:00',1026,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',1334,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-18 11:17:09','drashti','2025-10-18 11:17:38',0),(3704,2526,0,0,1239,'2025-10-18','00:00:00',1027,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1335,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:18:49','reception','2025-10-18 11:19:12',0),(3705,2526,0,0,882,'2025-10-18','11:17:00',0,63,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 11:20:10','riya','2025-10-18 12:02:46',0),(3706,2526,0,0,882,'2025-10-18','11:17:00',0,63,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 11:20:10','','0000-00-00 00:00:00',0),(3707,2526,0,0,882,'2025-10-18','11:19:00',0,63,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 11:20:10','riya','2025-10-18 12:02:46',0),(3708,2526,0,0,882,'2025-10-18','11:19:00',0,63,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',49,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 11:20:10','','0000-00-00 00:00:00',0),(3709,2526,0,0,1240,'2025-10-18','00:00:00',1028,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1336,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:21:35','reception','2025-10-18 11:22:33',0),(3710,2526,0,0,1241,'2025-10-18','00:00:00',1029,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1337,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-18 11:23:03','drashti','2025-10-18 11:24:21',0),(3711,2526,0,0,1242,'2025-10-18','00:00:00',116,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1338,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-18 11:24:41','janvi','2025-10-18 11:25:36',0),(3712,2526,0,0,1243,'2025-10-18','00:00:00',1030,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1339,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:25:57','reception','2025-10-18 11:26:24',0),(3713,2526,0,0,1244,'2025-10-18','00:00:00',1031,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1340,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:29:01','reception','2025-10-18 11:29:38',0),(3714,2526,0,0,1245,'2025-10-18','11:30:44',481,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',1341,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-18 11:30:44','janvi','2025-10-18 11:30:44',0),(3715,2526,0,0,1246,'2025-10-18','11:31:12',70,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1342,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-18 11:31:12','manshi','2025-10-18 11:31:12',0),(3716,2526,0,0,1247,'2025-10-18','00:00:00',1032,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1343,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:32:24','reception','2025-10-18 11:32:42',0),(3717,2526,0,0,1248,'2025-10-18','00:00:00',1033,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1344,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-18 11:33:00','manshi','2025-10-18 11:33:32',0),(3718,2526,0,0,1249,'2025-10-18','00:00:00',1034,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1346,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-18 11:34:47','drashti','2025-10-18 11:35:55',0),(3719,2526,0,0,1250,'2025-10-18','00:00:00',1035,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1345,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-18 11:34:55','janvi','2025-10-18 11:35:28',0),(3720,2526,0,0,284,'2025-10-18','11:34:00',0,21,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',50,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 11:35:23','','0000-00-00 00:00:00',0),(3721,2526,0,0,1251,'2025-10-18','00:00:00',1036,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1347,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:36:01','reception','2025-10-18 11:36:29',0),(3722,2526,0,0,1252,'2025-10-18','00:00:00',1037,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1348,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:38:41','reception','2025-10-18 11:39:09',0),(3723,2526,0,0,1253,'2025-10-18','00:00:00',1038,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1349,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:40:17','reception','2025-10-18 11:40:34',0),(3724,2526,0,0,1254,'2025-10-18','00:00:00',1039,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1350,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-18 11:40:47','janvi','2025-10-18 11:41:16',0),(3725,2526,0,0,1255,'2025-10-18','00:00:00',1040,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1351,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-18 11:41:46','drashti','2025-10-18 11:42:20',0),(3726,2526,0,0,1256,'2025-10-18','00:00:00',1041,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1352,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:42:33','reception','2025-10-18 11:43:11',0),(3727,2526,0,0,1257,'2025-10-18','00:00:00',1042,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1353,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:44:55','reception','2025-10-18 11:45:16',0),(3728,2526,0,0,1258,'2025-10-18','00:00:00',1043,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1354,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-18 11:45:46','janvi','2025-10-18 11:46:25',0),(3729,2526,0,0,1259,'2025-10-18','00:00:00',1044,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1355,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-18 11:46:35','drashti','2025-10-18 11:48:05',0),(3730,2526,0,0,1260,'2025-10-18','00:00:00',1045,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1356,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-18 11:50:32','drashti','2025-10-18 11:50:56',0),(3731,2526,0,0,1261,'2025-10-18','00:00:00',1046,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1357,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-18 11:52:24','drashti','2025-10-18 11:53:15',0),(3732,2526,0,0,1234,'2025-10-18','11:54:36',1024,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1358,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:54:36','reception','2025-10-18 11:54:36',0),(3733,2526,0,0,1234,'2025-10-18','11:54:36',1024,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1358,2,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:54:36','reception','2025-10-18 11:54:36',0),(3734,2526,0,0,1234,'2025-10-18','11:54:36',1024,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1358,3,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:54:36','reception','2025-10-18 11:54:36',0),(3735,2526,0,0,1234,'2025-10-18','11:54:36',1024,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1358,4,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:54:36','reception','2025-10-18 11:54:36',0),(3736,2526,0,0,1262,'2025-10-18','00:00:00',1047,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1360,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-18 11:55:59','manshi','2025-10-18 11:59:22',0),(3737,2526,0,0,1239,'2025-10-18','11:58:55',1027,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1359,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:58:55','reception','2025-10-18 11:58:55',0),(3738,2526,0,0,1239,'2025-10-18','11:58:55',1027,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1359,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:58:55','reception','2025-10-18 11:58:55',0),(3739,2526,0,0,1239,'2025-10-18','11:58:55',1027,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1359,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 11:58:55','reception','2025-10-18 11:58:55',0),(3740,2526,0,0,1263,'2025-10-18','00:00:00',1048,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1361,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 12:02:43','reception','2025-10-18 12:03:03',0),(3741,2526,0,0,1264,'2025-10-18','00:00:00',1049,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1363,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-18 12:04:55','janvi','2025-10-18 12:06:11',0),(3742,2526,0,0,1225,'2025-10-18','12:06:01',1017,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1362,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 12:06:01','reception','2025-10-18 12:06:01',0),(3743,2526,0,0,1225,'2025-10-18','12:06:01',1017,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1362,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 12:06:01','reception','2025-10-18 12:06:01',0),(3744,2526,0,0,1225,'2025-10-18','12:06:01',1017,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1362,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 12:06:01','reception','2025-10-18 12:06:01',0),(3745,2526,0,0,1265,'2025-10-18','00:00:00',1050,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1364,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 12:07:46','reception','2025-10-18 12:09:43',0),(3746,2526,0,0,1262,'2025-10-18','12:11:35',1047,0,'XRY','XRY0390','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',1365,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-18 12:11:35','manshi','2025-10-18 12:11:35',0),(3747,2526,0,0,1266,'2025-10-18','12:00:00',879,73,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',60,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 12:12:56','vishal','2025-10-19 13:23:20',0),(3748,2526,0,0,1266,'2025-10-18','12:00:00',879,73,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',60,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 12:12:56','vishal','2025-10-19 13:23:20',0),(3749,2526,0,0,1266,'2025-10-18','12:00:00',879,73,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','311','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-18 00:42:56','riya','2025-10-18 18:18:41',0),(3750,2526,0,0,1266,'2025-10-18','12:00:00',879,73,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','311','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-18 00:42:56','riya','2025-10-18 18:18:41',0),(3751,2526,0,0,1266,'2025-10-18','12:00:00',879,73,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','311','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-18 00:42:56','riya','2025-10-18 18:18:41',0),(3752,2526,0,0,1266,'2025-10-18','12:00:00',879,73,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','311','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-18 00:42:56','riya','2025-10-18 18:18:41',0),(3753,2526,0,0,1266,'2025-10-18','12:00:00',879,73,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','311','','','',2526,'H','I',60,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 00:42:56','vishal','2025-10-19 13:23:20',0),(3754,2526,0,0,1267,'2025-10-18','00:00:00',21,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1366,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-18 12:15:12','drashti','2025-10-18 12:15:35',0),(3755,2526,0,0,1268,'2025-10-18','00:00:00',1051,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1367,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 12:16:21','reception','2025-10-18 12:16:51',0),(3756,2526,0,0,1072,'2025-10-17','21:00:00',0,67,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',48,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 00:53:44','riya','2025-10-18 12:25:05',0),(3757,2526,0,0,1072,'2025-10-17','21:00:00',0,67,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',48,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 00:53:44','riya','2025-10-18 12:25:05',0),(3758,2526,0,0,1072,'2025-10-17','21:00:00',0,67,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','208','','','',2526,'H','I',48,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 00:53:44','riya','2025-10-18 12:25:05',0),(3759,2526,0,0,1072,'2025-10-17','21:00:00',0,67,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','208','','','',2526,'H','I',48,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 00:53:44','riya','2025-10-18 12:25:05',0),(3760,2526,0,0,1072,'2025-10-17','21:00:00',0,67,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',48,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 00:53:44','riya','2025-10-18 12:25:05',0),(3761,2526,0,0,1269,'2025-10-18','00:00:00',1052,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1368,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-18 12:24:53','janvi','2025-10-18 12:25:59',0),(3762,2526,0,0,1072,'2025-10-18','12:23:00',0,67,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',48,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 12:25:05','','0000-00-00 00:00:00',0),(3763,2526,0,0,1072,'2025-10-18','12:24:00',0,67,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','','','','',2526,'H','I',48,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 12:25:05','','0000-00-00 00:00:00',0),(3764,2526,0,0,1233,'2025-10-18','12:26:48',1023,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1369,1,38,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 12:26:48','reception','2025-10-18 12:26:48',0),(3765,2526,0,0,1233,'2025-10-18','12:26:48',1023,0,'NEU1','NEU10019','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1369,2,192,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 12:26:48','reception','2025-10-18 12:26:48',0),(3766,2526,0,0,1233,'2025-10-18','12:26:48',1023,0,'NEU1','NEU10018','H','N',1.00,3500,3500,'P',0,0,0.00,0.00,0.00,3500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1369,3,269,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 12:26:48','reception','2025-10-18 12:26:48',0),(3767,2526,0,0,1270,'2025-10-18','00:00:00',1053,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1370,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-18 12:28:05','drashti','2025-10-18 12:28:49',0),(3768,2526,0,0,246,'2025-10-18','12:30:00',0,18,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 12:33:02','','0000-00-00 00:00:00',0),(3769,2526,0,0,1271,'2025-10-18','00:00:00',1054,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1371,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 12:40:48','reception','2025-10-18 12:41:26',0),(3770,2526,0,0,1272,'2025-10-18','00:00:00',1055,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1372,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 12:45:16','reception','2025-10-18 12:45:35',0),(3771,2526,0,0,1273,'2025-10-18','12:59:01',552,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1373,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-18 12:59:01','drashti','2025-10-18 12:59:01',0),(3772,2526,0,0,1274,'2025-10-18','00:00:00',1056,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1374,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-18 13:03:04','janvi','2025-10-18 13:03:31',0),(3773,2526,0,0,1275,'2025-10-18','00:00:00',310,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1375,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 13:08:09','reception','2025-10-18 13:08:25',0),(3774,2526,0,0,1262,'2025-10-18','13:14:29',1047,0,'WPRC','WPRC0046','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,6,0,0,'',0,0,'','','','','',2526,'H','O',1376,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-18 13:14:29','manshi','2025-10-18 13:14:29',0),(3775,2526,0,0,1276,'2025-10-18','00:00:00',1057,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',1377,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-18 13:25:17','manshi','2025-10-18 13:25:43',0),(3776,2526,0,0,246,'2025-10-18','13:26:00',0,18,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',51,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 13:27:36','','0000-00-00 00:00:00',0),(3777,2526,0,0,1277,'2025-10-18','00:00:00',1058,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',1378,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 13:51:49','reception','2025-10-18 13:52:17',0),(3778,2526,0,0,1270,'2025-10-18','14:04:14',1053,0,'NEU1','NEU10019','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',1379,1,267,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 14:04:14','reception','2025-10-18 14:04:14',0),(3779,2526,0,0,1270,'2025-10-18','14:04:14',1053,0,'NEU1','NEU10017','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1379,2,333,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 14:04:14','reception','2025-10-18 14:04:14',0),(3780,2526,0,0,936,'2025-10-18','14:08:00',769,64,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 14:11:03','','0000-00-00 00:00:00',0),(3781,2526,0,0,936,'2025-10-18','14:08:00',769,64,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 14:11:03','','0000-00-00 00:00:00',0),(3782,2526,0,0,936,'2025-10-18','14:08:00',769,64,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 14:11:03','','0000-00-00 00:00:00',0),(3783,2526,0,0,936,'2025-10-17','14:09:00',769,64,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 14:11:03','','0000-00-00 00:00:00',0),(3784,2526,0,0,936,'2025-10-18','14:09:00',769,64,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 14:11:03','','0000-00-00 00:00:00',0),(3785,2526,0,0,936,'2025-10-17','14:09:00',769,64,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 14:11:03','','0000-00-00 00:00:00',0),(3786,2526,0,0,936,'2025-10-18','14:09:00',769,64,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 14:11:03','','0000-00-00 00:00:00',0),(3787,2526,0,0,936,'2025-10-18','14:10:00',769,64,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','','','','',2526,'H','I',52,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 14:11:03','','0000-00-00 00:00:00',0),(3788,2526,0,0,1278,'2025-10-18','00:00:00',1059,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1380,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-18 14:12:44','janvi','2025-10-18 14:13:15',0),(3789,2526,0,0,1279,'2025-10-18','15:00:00',0,74,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',58,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 15:49:26','vishal','2025-10-19 11:44:37',0),(3790,2526,0,0,1279,'2025-10-18','15:00:00',0,74,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',58,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 15:49:26','vishal','2025-10-19 11:44:37',0),(3791,2526,0,0,1279,'2025-10-18','15:00:00',0,74,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',58,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 04:19:26','vishal','2025-10-19 11:44:37',0),(3792,2526,0,0,1279,'2025-10-18','15:00:00',0,74,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',58,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 04:19:26','vishal','2025-10-19 11:44:37',0),(3793,2526,0,0,1279,'2025-10-18','15:00:00',0,74,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',58,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 04:19:26','vishal','2025-10-19 11:44:37',0),(3794,2526,0,0,1279,'2025-10-18','15:00:00',0,74,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-18 04:19:26','vishal','2025-10-19 11:44:37',0),(3795,2526,0,0,1279,'2025-10-18','15:00:00',0,74,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',58,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 04:19:26','vishal','2025-10-19 11:46:41',0),(3796,2526,0,0,1140,'2025-10-18','13:00:00',938,68,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-18 04:27:35','riya','2025-10-18 16:03:53',0),(3797,2526,0,0,1140,'2025-10-18','13:00:00',938,68,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-18 04:27:35','riya','2025-10-18 16:03:53',0),(3798,2526,0,0,1140,'2025-10-18','13:00:00',938,68,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-18 04:27:35','riya','2025-10-18 16:03:53',0),(3799,2526,0,0,1140,'2025-10-18','13:00:00',938,68,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','402','','','',2526,'H','I',53,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 04:27:35','riya','2025-10-18 16:03:53',0),(3800,2526,0,0,1140,'2025-10-18','13:00:00',938,68,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-18 04:27:35','riya','2025-10-18 16:03:53',0),(3801,2526,0,0,1140,'2025-10-17','15:57:00',938,68,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',53,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 16:03:53','','0000-00-00 00:00:00',0),(3802,2526,0,0,1140,'2025-10-17','15:58:00',938,68,'USG','USG0092','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',53,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 16:03:53','','0000-00-00 00:00:00',0),(3803,2526,0,0,1140,'2025-10-17','16:01:00',938,68,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',53,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 16:03:53','','0000-00-00 00:00:00',0),(3804,2526,0,0,1004,'2025-10-18','13:50:00',0,66,'ROOM','ROOM0009','H','N',0.50,5500,2750,'A',0,0,0.00,0.00,2750.00,2750,9999,0,0,'',0,0,'','207','','','',2526,'H','I',54,17,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 04:36:51','riya','2025-10-18 17:10:16',0),(3805,2526,0,0,1004,'2025-10-18','13:50:00',0,66,'AECO','AECO0008','H','N',0.50,800,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','207','','','',2526,'H','I',54,18,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 04:36:51','riya','2025-10-18 17:10:16',0),(3806,2526,0,0,1004,'2025-10-18','13:50:00',0,66,'CARE','CARE0001','H','N',0.50,600,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','207','','','',2526,'H','I',54,19,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 04:36:51','riya','2025-10-18 17:10:16',0),(3807,2526,0,0,1004,'2025-10-18','13:50:00',0,66,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','207','','','',2526,'H','I',54,20,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 04:36:51','riya','2025-10-18 16:08:00',0),(3808,2526,0,0,1004,'2025-10-18','13:50:00',0,66,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','207','','','',0,'','',0,21,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 04:36:51','riya','2025-10-18 16:53:27',0),(3809,2526,0,0,1004,'2025-10-18','16:06:00',0,66,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',54,22,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 16:08:00','','0000-00-00 00:00:00',0),(3810,2526,0,0,1004,'2025-10-18','16:07:00',0,66,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',54,23,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 16:08:00','','0000-00-00 00:00:00',0),(3811,2526,0,0,1280,'2025-10-18','00:00:00',1060,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',1381,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-18 16:21:53','drashti','2025-10-18 16:22:40',0),(3812,2526,0,0,1004,'2025-10-18','16:51:00',0,66,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,5,0,0,'',0,0,'','','','','',2526,'H','I',54,23,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 16:53:27','','0000-00-00 00:00:00',0),(3813,2526,0,0,1280,'2025-10-18','17:18:19',1060,0,'WPRC','WPRC0046','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1382,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-18 17:18:19','drashti','2025-10-18 17:18:19',0),(3814,2526,0,0,1281,'2025-10-18','17:27:00',0,75,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',57,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 17:30:22','vishal','2025-10-19 10:46:40',0),(3815,2526,0,0,1281,'2025-10-18','17:27:00',0,75,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',57,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 17:30:22','vishal','2025-10-19 10:46:40',0),(3816,2526,0,0,1281,'2025-10-18','17:27:00',0,75,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',57,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 06:00:22','vishal','2025-10-19 10:46:40',0),(3817,2526,0,0,1281,'2025-10-18','17:27:00',0,75,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',57,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 06:00:22','vishal','2025-10-19 10:46:40',0),(3818,2526,0,0,1281,'2025-10-18','17:27:00',0,75,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',57,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 06:00:22','vishal','2025-10-19 10:46:40',0),(3819,2526,0,0,1281,'2025-10-19','17:27:00',0,75,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,6,0,0,'',0,0,'','402','','','',2526,'H','I',57,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 06:00:22','vishal','2025-10-19 10:46:40',0),(3820,2526,0,0,1281,'2025-10-18','17:27:00',0,75,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,6,0,0,'',0,0,'','402','','','',2526,'H','I',57,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 06:00:22','vishal','2025-10-19 10:46:40',0),(3821,2526,0,0,1282,'2025-10-18','00:00:00',1061,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 17:32:51','reception','2025-10-18 06:02:51',0),(3822,2526,0,0,1282,'2025-10-18','17:33:55',1061,0,'SURG','SURG0005','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1383,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-18 17:33:55','reception','2025-10-18 17:33:55',0),(3823,2526,0,0,489,'2025-10-18','17:00:00',0,38,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 06:25:00','riya','2025-10-18 17:57:15',0),(3824,2526,0,0,489,'2025-10-18','17:00:00',0,38,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 06:25:00','riya','2025-10-18 17:57:15',0),(3825,2526,0,0,489,'2025-10-18','17:00:00',0,38,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 06:25:00','riya','2025-10-18 17:57:15',0),(3826,2526,0,0,489,'2025-10-18','17:00:00',0,38,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 06:25:00','riya','2025-10-18 17:57:15',0),(3827,2526,0,0,489,'2025-10-18','17:00:00',0,38,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',0,'','',0,76,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 06:25:00','vishal','2025-10-19 18:46:29',0),(3828,2526,0,0,489,'2025-10-18','17:55:00',0,38,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 17:57:15','vishal','2025-10-19 18:44:32',0),(3829,2526,0,0,489,'2025-10-18','17:55:00',0,38,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 17:57:15','','0000-00-00 00:00:00',0),(3830,2526,0,0,489,'2025-10-18','17:55:00',0,38,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 17:57:15','','0000-00-00 00:00:00',0),(3831,2526,0,0,489,'2025-10-18','17:56:00',0,38,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 17:57:15','','0000-00-00 00:00:00',0),(3832,2526,0,0,489,'2025-10-17','17:56:00',0,38,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 17:57:15','','0000-00-00 00:00:00',0),(3833,2526,0,0,414,'2025-10-18','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 06:29:48','riya','2025-10-18 18:02:44',0),(3834,2526,0,0,414,'2025-10-18','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 06:29:48','riya','2025-10-18 18:02:44',0),(3835,2526,0,0,414,'2025-10-18','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 06:29:48','riya','2025-10-18 18:02:44',0),(3836,2526,0,0,414,'2025-10-18','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 06:29:48','riya','2025-10-25 11:28:26',0),(3837,2526,0,0,414,'2025-10-18','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',0,'','',0,96,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 06:29:48','vishal','2025-10-19 18:42:41',0),(3838,2526,0,0,414,'2025-10-18','17:59:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 18:02:44','riya','2025-10-25 11:28:26',0),(3839,2526,0,0,414,'2025-10-18','18:00:00',0,25,'WPRC','WPRC0089','H','N',5.00,100,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 18:02:44','vishal','2025-10-19 18:42:41',0),(3840,2526,0,0,1283,'2025-10-18','00:00:00',105,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1387,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-18 18:12:51','manshi','2025-10-18 18:31:37',0),(3841,2526,0,0,1284,'2025-10-18','18:17:34',544,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1384,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-18 18:17:34','janvi','2025-10-18 18:17:34',0),(3842,2526,0,0,1266,'2025-10-18','18:13:00',879,73,'CARE','CARE0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',60,4,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 18:18:41','vishal','2025-10-19 13:49:47',0),(3843,2526,0,0,1266,'2025-10-18','18:14:00',879,73,'SURG','SURG0015','H','N',1.00,1060,1060,'P',0,0,0.00,0.00,1060.00,1060,3,0,0,'',0,0,'','','','','',2526,'H','I',60,5,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 18:18:41','vishal','2025-10-19 13:49:47',0),(3844,2526,0,0,1266,'2025-10-18','18:15:00',879,73,'SURG','SURG0014','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','I',60,6,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 18:18:41','vishal','2025-10-19 13:49:47',0),(3845,2526,0,0,1285,'2025-10-18','00:00:00',1062,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',1386,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-18 18:21:23','manshi','2025-10-18 18:25:13',0),(3846,2526,0,0,1286,'2025-10-18','00:00:00',1063,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1385,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-18 18:24:09','janvi','2025-10-18 18:25:07',0),(3847,2526,0,0,1285,'2025-10-18','18:32:27',1062,0,'XRY','XRY0254','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',1388,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-18 18:32:27','manshi','2025-10-18 18:32:27',0),(3848,2526,0,0,1287,'2025-10-18','19:14:57',118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1389,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-18 19:14:57','janvi','2025-10-18 19:14:57',0),(3849,2526,0,0,1288,'2025-10-18','00:00:00',1064,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',1390,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-18 19:14:58','manshi','2025-10-18 19:15:29',0),(3850,2526,0,0,1289,'2025-10-18','00:00:00',1065,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1391,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-18 19:17:23','manshi','2025-10-18 19:24:36',0),(3851,2526,0,0,1290,'2025-10-18','00:00:00',1066,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1393,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-18 19:36:31','manshi','2025-10-18 19:48:07',0),(3852,2526,0,0,1291,'2025-10-18','20:30:00',0,76,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',56,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 20:31:43','riya','2025-10-18 22:01:38',0),(3853,2526,0,0,1291,'2025-10-18','20:30:00',0,76,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',56,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 20:31:43','riya','2025-10-18 22:01:38',0),(3854,2526,0,0,1291,'2025-10-18','20:30:00',0,76,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-18 09:01:43','riya','2025-10-18 22:01:38',0),(3855,2526,0,0,1291,'2025-10-18','20:30:00',0,76,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-18 09:01:43','riya','2025-10-18 22:01:38',0),(3856,2526,0,0,1291,'2025-10-18','20:30:00',0,76,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-18 09:01:43','riya','2025-10-18 22:01:38',0),(3857,2526,0,0,1291,'2025-10-18','20:30:00',0,76,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-18 09:01:43','riya','2025-10-18 22:01:38',0),(3858,2526,0,0,1291,'2025-10-18','20:30:00',0,76,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-18 09:01:43','riya','2025-10-18 22:01:38',0),(3859,2526,0,0,1291,'2025-10-18','21:59:00',0,76,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','','','','',2526,'H','I',56,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 22:01:38','','0000-00-00 00:00:00',0),(3860,2526,0,0,1291,'2025-10-18','21:59:00',0,76,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',56,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 22:01:38','','0000-00-00 00:00:00',0),(3861,2526,0,0,1291,'2025-10-18','21:59:00',0,76,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',56,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 22:01:38','','0000-00-00 00:00:00',0),(3862,2526,0,0,1291,'2025-10-18','22:00:00',0,76,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',56,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 22:01:38','','0000-00-00 00:00:00',0),(3863,2526,0,0,1291,'2025-10-18','22:00:00',0,76,'CARE','CARE0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',56,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-18 22:01:38','','0000-00-00 00:00:00',0),(3864,2526,0,0,1292,'2025-10-19','02:30:00',0,77,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-19 10:14:48','vishal','2025-10-19 11:49:11',0),(3865,2526,0,0,1292,'2025-10-19','02:30:00',0,77,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-19 10:14:48','vishal','2025-10-19 11:49:11',0),(3866,2526,0,0,1292,'2025-10-19','02:30:00',0,77,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',66,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-18 22:44:48','vishal','2025-10-19 11:49:11',0),(3867,2526,0,0,1292,'2025-10-19','02:30:00',0,77,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',66,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-18 22:44:48','vishal','2025-10-19 11:49:11',0),(3868,2526,0,0,1292,'2025-10-19','02:30:00',0,77,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',66,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-18 22:44:48','vishal','2025-10-19 11:49:11',0),(3869,2526,0,0,1292,'2025-10-19','02:30:00',0,77,'DRC','DRC0018','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,78,0,0,'',0,0,'','207','','','',2526,'H','I',66,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-18 22:44:48','vishal','2025-10-20 14:24:57',0),(3870,2526,0,0,1292,'2025-10-19','02:30:00',0,77,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',66,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-18 22:44:48','vishal','2025-10-20 14:24:57',0),(3871,2526,0,0,1293,'2025-10-19','10:15:00',0,78,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-19 10:35:30','vishal','2025-10-19 11:51:35',0),(3872,2526,0,0,1293,'2025-10-19','10:15:00',0,78,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-19 10:35:30','vishal','2025-10-19 11:51:35',0),(3873,2526,0,0,1293,'2025-10-19','10:15:00',0,78,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-18 23:05:30','vishal','2025-10-19 11:51:35',0),(3874,2526,0,0,1293,'2025-10-19','10:15:00',0,78,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-18 23:05:30','vishal','2025-10-19 11:51:35',0),(3875,2526,0,0,1293,'2025-10-19','10:15:00',0,78,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-18 23:05:30','vishal','2025-10-19 11:51:35',0),(3876,2526,0,0,1293,'2025-10-19','10:15:00',0,78,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-18 23:05:30','vishal','2025-10-19 11:51:35',0),(3877,2526,0,0,1293,'2025-10-19','10:15:00',0,78,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'reception','2025-10-18 23:05:30','vishal','2025-10-19 11:51:35',0),(3878,2526,0,0,1281,'2025-10-19','11:00:00',0,75,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,6,0,0,'',0,0,'','','','','',2526,'H','I',57,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(3879,2526,0,0,1281,'2025-10-18','11:01:00',0,75,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',57,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(3880,2526,0,0,1281,'2025-10-18','11:01:00',0,75,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',57,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(3881,2526,0,0,1281,'2025-10-19','11:15:00',0,75,'WPRC','WPRC0099','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',57,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(3882,2526,0,0,1281,'2025-10-19','11:20:00',0,75,'SURG','SURG0014','H','N',1.00,13500,13500,'P',0,0,0.00,0.00,13500.00,13500,6,0,0,'',0,0,'','','','','',2526,'H','I',57,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(3883,2526,0,0,1281,'2025-10-18','11:20:00',0,75,'SURG','SURG0015','H','N',1.00,4400,4400,'P',0,0,0.00,0.00,4400.00,4400,6,0,0,'',0,0,'','','','','',2526,'H','I',57,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:21:03','','0000-00-00 00:00:00',0),(3884,2526,0,0,1220,'2025-10-19','09:30:00',0,72,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',61,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-18 23:59:28','vishal','2025-10-19 11:34:49',0),(3885,2526,0,0,1220,'2025-10-19','09:30:00',0,72,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',61,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-18 23:59:28','vishal','2025-10-19 11:34:49',0),(3886,2526,0,0,1220,'2025-10-19','09:30:00',0,72,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',61,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-18 23:59:28','vishal','2025-10-19 11:34:49',0),(3887,2526,0,0,1220,'2025-10-19','09:30:00',0,72,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,70,0,0,'',0,0,'','409','','','',2526,'H','I',61,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-18 23:59:28','vishal','2025-10-19 11:34:49',0),(3888,2526,0,0,1220,'2025-10-19','09:30:00',0,72,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,70,0,0,'',0,0,'','409','','','',0,'','',0,8,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-18 23:59:28','vishal','2025-10-20 11:23:30',0),(3889,2526,0,0,1220,'2025-10-18','11:31:00',0,72,'ROOM','ROOM0001','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',61,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:34:49','','0000-00-00 00:00:00',0),(3890,2526,0,0,1220,'2025-10-18','11:31:00',0,72,'CARE','CARE0004','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',61,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:34:49','','0000-00-00 00:00:00',0),(3891,2526,0,0,1220,'2025-10-18','11:31:00',0,72,'CARE','CARE0003','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',61,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:34:49','','0000-00-00 00:00:00',0),(3892,2526,0,0,1220,'2025-10-18','11:32:00',0,72,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',61,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:34:49','','0000-00-00 00:00:00',0),(3893,2526,0,0,1220,'2025-10-18','11:33:00',0,72,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',61,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:34:49','','0000-00-00 00:00:00',0),(3894,2526,0,0,1220,'2025-10-18','11:33:00',0,72,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,70,0,0,'',0,0,'','','','','',2526,'H','I',61,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:34:49','vishal','2025-10-20 11:23:58',0),(3895,2526,0,0,1220,'2025-10-19','11:33:00',0,72,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',61,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:34:49','vishal','2025-10-20 11:23:30',0),(3896,2526,0,0,1220,'2025-10-18','11:34:00',0,72,'WPRC','WPRC0086','H','N',4.00,200,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',61,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:34:49','','0000-00-00 00:00:00',0),(3897,2526,0,0,1220,'2025-10-18','11:34:00',0,72,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',61,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:34:49','','0000-00-00 00:00:00',0),(3898,2526,0,0,1279,'2025-10-18','11:44:00',0,74,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',58,1,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:44:37','vishal','2025-10-19 11:46:41',0),(3899,2526,0,0,1279,'2025-10-19','11:44:00',0,74,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',58,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:44:37','','0000-00-00 00:00:00',0),(3900,2526,0,0,1279,'2025-10-18','11:45:00',0,74,'SURG','SURG0014','H','N',1.00,38800,38800,'P',0,0,0.00,0.00,38800.00,38800,3,0,0,'',0,0,'','','','','',2526,'H','I',58,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:46:41','','0000-00-00 00:00:00',0),(3901,2526,0,0,1279,'2025-10-18','11:45:00',0,74,'SURG','SURG0015','H','N',1.00,13000,13000,'P',0,0,0.00,0.00,13000.00,13000,3,0,0,'',0,0,'','','','','',2526,'H','I',58,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:46:41','','0000-00-00 00:00:00',0),(3902,2526,0,0,1292,'2025-10-19','11:48:00',0,77,'WPRC','WPRC0090','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:49:11','vishal','2025-10-23 08:30:38',0),(3903,2526,0,0,1293,'2025-10-19','11:51:00',0,78,'WPRC','WPRC0090','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 11:51:35','','0000-00-00 00:00:00',0),(3904,2526,0,0,414,'2025-10-19','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','riya','2025-10-25 11:28:26',0),(3905,2526,0,0,414,'2025-10-19','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:42:41',0),(3906,2526,0,0,414,'2025-10-19','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:42:41',0),(3907,2526,0,0,414,'2025-10-19','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:42:41',0),(3908,2526,0,0,414,'2025-10-19','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:42:41',0),(3909,2526,0,0,489,'2025-10-19','17:00:00',0,38,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:44:32',0),(3910,2526,0,0,489,'2025-10-19','17:00:00',0,38,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:44:32',0),(3911,2526,0,0,489,'2025-10-19','17:00:00',0,38,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:44:32',0),(3912,2526,0,0,489,'2025-10-19','17:00:00',0,38,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:44:32',0),(3913,2526,0,0,489,'2025-10-19','17:00:00',0,38,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:44:32',0),(3914,2526,0,0,939,'2025-10-18','22:30:00',709,65,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:34:35',0),(3915,2526,0,0,939,'2025-10-18','22:30:00',709,65,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:34:35',0),(3916,2526,0,0,939,'2025-10-18','22:30:00',709,65,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:34:35',0),(3917,2526,0,0,939,'2025-10-18','22:30:00',709,65,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:34:35',0),(3918,2526,0,0,939,'2025-10-18','22:30:00',709,65,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:34:11',0),(3919,2526,0,0,1144,'2025-10-18','14:00:00',0,69,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',64,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:16:38',0),(3920,2526,0,0,1144,'2025-10-19','14:00:00',0,69,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',64,18,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-22 10:59:15',0),(3921,2526,0,0,1144,'2025-10-18','14:00:00',0,69,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',64,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:16:38',0),(3922,2526,0,0,1144,'2025-10-19','14:00:00',0,69,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',64,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-22 10:59:15',0),(3923,2526,0,0,1144,'2025-10-18','14:00:00',0,69,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',64,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:16:38',0),(3924,2526,0,0,1144,'2025-10-19','14:00:00',0,69,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',64,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-22 10:59:15',0),(3925,2526,0,0,1144,'2025-10-18','14:00:00',0,69,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','410','','','',2526,'H','I',64,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:16:38',0),(3926,2526,0,0,1144,'2025-10-19','14:00:00',0,69,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','410','','','',2526,'H','I',64,16,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-22 10:59:15',0),(3927,2526,0,0,1144,'2025-10-18','14:00:00',0,69,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','410','','','',2526,'H','I',64,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:16:38',0),(3928,2526,0,0,1144,'2025-10-19','14:00:00',0,69,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','410','','','',2526,'H','I',64,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:16:38',0),(3929,2526,0,0,1147,'2025-10-18','15:00:00',0,70,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:20:41',0),(3930,2526,0,0,1147,'2025-10-19','15:00:00',0,70,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:20:41',0),(3931,2526,0,0,1147,'2025-10-18','15:00:00',0,70,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:20:41',0),(3932,2526,0,0,1147,'2025-10-19','15:00:00',0,70,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:20:41',0),(3933,2526,0,0,1147,'2025-10-18','15:00:00',0,70,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:20:41',0),(3934,2526,0,0,1147,'2025-10-19','15:00:00',0,70,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:20:41',0),(3935,2526,0,0,1147,'2025-10-18','15:00:00',0,70,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-25 13:36:06',0),(3936,2526,0,0,1147,'2025-10-19','15:00:00',0,70,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-25 13:36:06',0),(3937,2526,0,0,1147,'2025-10-18','15:00:00',0,70,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-25 13:36:06',0),(3938,2526,0,0,1147,'2025-10-19','15:00:00',0,70,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-25 13:36:06',0),(3939,2526,0,0,1213,'2025-10-18','20:50:00',0,71,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-22 13:17:01',0),(3940,2526,0,0,1213,'2025-10-18','20:50:00',0,71,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-22 13:11:29',0),(3941,2526,0,0,1213,'2025-10-18','20:50:00',0,71,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-19 18:12:31',0),(3942,2526,0,0,1213,'2025-10-19','20:50:00',0,71,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-21 13:18:00',0),(3943,2526,0,0,1213,'2025-10-19','20:50:00',0,71,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:33:16','vishal','2025-10-22 13:11:29',0),(3944,2526,0,0,1213,'2025-10-17','18:10:00',0,71,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',65,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:12:31','vishal','2025-10-19 18:13:38',0),(3945,2526,0,0,1213,'2025-10-18','18:12:00',0,71,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,8,0,0,'',0,0,'','','','','',2526,'H','I',65,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:12:31','vishal','2025-10-22 13:17:01',0),(3946,2526,0,0,1213,'2025-10-18','20:50:00',0,71,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:44:20','vishal','2025-10-21 13:17:32',0),(3947,2526,0,0,1213,'2025-10-18','20:50:00',0,71,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 06:44:20','vishal','2025-10-21 13:17:32',0),(3948,2526,0,0,1144,'2025-10-17','18:15:00',0,69,'ROOM','ROOM0008','H','N',2.00,100,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',64,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:16:38','vishal','2025-10-19 18:17:16',0),(3949,2526,0,0,1144,'2025-10-18','18:15:00',0,69,'ROOM','ROOM0008','H','N',4.00,100,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',64,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:16:38','vishal','2025-10-19 18:17:16',0),(3950,2526,0,0,1144,'2025-10-19','18:16:00',0,69,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',64,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:16:38','','0000-00-00 00:00:00',0),(3951,2526,0,0,1147,'2025-10-19','18:19:00',0,70,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',73,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:20:41','','0000-00-00 00:00:00',0),(3952,2526,0,0,1147,'2025-10-17','18:19:00',0,70,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',73,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:20:41','','0000-00-00 00:00:00',0),(3953,2526,0,0,1147,'2025-10-18','18:19:00',0,70,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',73,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:20:41','','0000-00-00 00:00:00',0),(3954,2526,0,0,1147,'2025-10-19','18:20:00',0,70,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',73,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:20:41','','0000-00-00 00:00:00',0),(3955,2526,0,0,1147,'2025-10-19','18:20:00',0,70,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',73,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:20:41','','0000-00-00 00:00:00',0),(3956,2526,0,0,939,'2025-10-18','18:30:00',709,65,'DRC','DRC0020','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','','','','',2526,'H','I',62,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:34:11','vishal','2025-10-19 18:34:35',0),(3957,2526,0,0,939,'2025-10-18','18:30:00',709,65,'DRC','DRC0020','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,8,0,0,'',0,0,'','','','','',2526,'H','I',62,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:34:11','vishal','2025-10-19 18:34:35',0),(3958,2526,0,0,939,'2025-10-16','18:31:00',709,65,'WPRC','WPRC0100','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,4,0,0,'',0,0,'','','','','',2526,'H','I',62,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:34:11','vishal','2025-10-19 18:34:35',0),(3959,2526,0,0,939,'2025-10-18','18:33:00',709,65,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',62,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:34:11','vishal','2025-10-19 18:34:35',0),(3960,2526,0,0,939,'2025-10-19','18:34:00',709,65,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',62,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:34:11','vishal','2025-10-20 11:41:12',0),(3961,2526,0,0,414,'2025-10-19','18:35:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:40:49','','0000-00-00 00:00:00',0),(3962,2526,0,0,414,'2025-10-19','18:35:00',0,25,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:40:49','','0000-00-00 00:00:00',0),(3963,2526,0,0,414,'2025-10-17','18:38:00',0,25,'WPRC','WPRC0101','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:40:49','vishal','2025-10-19 18:42:41',0),(3964,2526,0,0,414,'2025-10-18','18:39:00',0,25,'WPRC','WPRC0101','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:40:49','vishal','2025-10-19 18:42:41',0),(3965,2526,0,0,414,'2025-10-19','18:39:00',0,25,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:40:49','','0000-00-00 00:00:00',0),(3966,2526,0,0,414,'2025-10-18','18:39:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:40:49','vishal','2025-10-19 18:42:41',0),(3967,2526,0,0,414,'2025-10-19','18:39:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:40:49','riya','2025-10-25 11:28:26',0),(3968,2526,0,0,414,'2025-10-18','18:40:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:40:49','riya','2025-10-25 11:28:26',0),(3969,2526,0,0,414,'2025-10-19','18:40:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:40:49','vishal','2025-10-20 14:39:48',0),(3970,2526,0,0,414,'2025-10-18','18:41:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:42:41','vishal','2025-11-01 14:23:26',0),(3971,2526,0,0,489,'2025-10-19','18:43:00',0,38,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:44:32','','0000-00-00 00:00:00',0),(3972,2526,0,0,489,'2025-10-19','18:45:00',0,38,'WPRC','WPRC0089','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:46:29','','0000-00-00 00:00:00',0),(3973,2526,0,0,489,'2025-10-19','18:45:00',0,38,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:46:29','','0000-00-00 00:00:00',0),(3974,2526,0,0,489,'2025-10-19','18:45:00',0,38,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:46:29','','0000-00-00 00:00:00',0),(3975,2526,0,0,489,'2025-10-18','18:45:00',0,38,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,8,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 18:46:29','','0000-00-00 00:00:00',0),(3976,2526,0,0,1294,'2025-10-20','08:00:00',0,79,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 11:09:16','vishal','2025-10-21 12:41:40',0),(3977,2526,0,0,1294,'2025-10-20','08:00:00',0,79,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 11:09:16','vishal','2025-10-21 12:41:40',0),(3978,2526,0,0,1294,'2025-10-20','08:00:00',0,79,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',67,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 23:39:16','vishal','2025-10-21 12:41:40',0),(3979,2526,0,0,1294,'2025-10-20','08:00:00',0,79,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',67,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 23:39:16','vishal','2025-10-21 12:41:40',0),(3980,2526,0,0,1294,'2025-10-20','08:00:00',0,79,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',67,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 23:39:16','vishal','2025-10-21 12:41:40',0),(3981,2526,0,0,1294,'2025-10-20','08:00:00',0,79,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',67,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 23:39:16','vishal','2025-10-21 12:41:40',0),(3982,2526,0,0,1294,'2025-10-20','08:00:00',0,79,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',67,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 23:39:16','vishal','2025-10-21 12:41:40',0),(3983,2526,0,0,1220,'2025-10-20','09:30:00',0,72,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 23:49:04','vishal','2025-10-20 11:25:28',0),(3984,2526,0,0,1220,'2025-10-20','09:30:00',0,72,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 23:49:04','vishal','2025-10-20 11:25:28',0),(3985,2526,0,0,1220,'2025-10-20','09:30:00',0,72,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 23:49:04','vishal','2025-10-20 11:25:28',0),(3986,2526,0,0,1220,'2025-10-20','09:30:00',0,72,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,70,0,0,'',0,0,'','409','','','',2526,'H','I',61,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 23:49:04','vishal','2025-10-20 11:23:30',0),(3987,2526,0,0,1220,'2025-10-20','09:30:00',0,72,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-19 23:49:04','vishal','2025-10-20 11:23:30',0),(3988,2526,0,0,1220,'2025-10-20','11:23:00',0,72,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',61,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 11:23:30','','0000-00-00 00:00:00',0),(3989,2526,0,0,1220,'2025-10-18','11:27:00',0,72,'SURG','SURG0017','H','N',1.00,30000,30000,'P',0,0,0.00,0.00,30000.00,30000,3,0,0,'',0,0,'','','','','',2526,'H','I',61,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 11:28:33','vishal','2025-10-20 11:50:56',0),(3990,2526,0,0,1220,'2025-10-18','11:28:00',0,72,'SURG','SURG0015','H','N',1.00,15000,15000,'P',0,0,0.00,0.00,15000.00,15000,70,0,0,'',0,0,'','','','','',2526,'H','I',61,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 11:28:33','','0000-00-00 00:00:00',0),(3991,2526,0,0,939,'2025-10-19','22:30:00',709,65,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',62,30,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 00:02:38','vishal','2025-10-20 12:37:58',0),(3992,2526,0,0,939,'2025-10-19','22:30:00',709,65,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 00:02:38','vishal','2025-10-20 11:40:09',0),(3993,2526,0,0,939,'2025-10-19','22:30:00',709,65,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 00:02:38','vishal','2025-10-20 11:40:09',0),(3994,2526,0,0,939,'2025-10-19','22:30:00',709,65,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','I',62,33,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 00:02:38','vishal','2025-10-20 12:37:58',0),(3995,2526,0,0,939,'2025-10-19','22:30:00',709,65,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',62,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 00:02:38','vishal','2025-10-20 11:41:12',0),(3996,2526,0,0,939,'2025-10-20','11:34:00',709,65,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',62,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 11:40:09','','0000-00-00 00:00:00',0),(3997,2526,0,0,939,'2025-10-20','11:34:00',709,65,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',62,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 11:40:09','','0000-00-00 00:00:00',0),(3998,2526,0,0,939,'2025-10-19','11:35:00',709,65,'WPRC','WPRC0102','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',62,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 11:40:09','','0000-00-00 00:00:00',0),(3999,2526,0,0,1220,'2025-10-18','11:50:00',0,72,'SURG','SURG0014','H','N',1.00,30000,30000,'P',0,0,0.00,0.00,30000.00,30000,70,0,0,'',0,0,'','','','','',2526,'H','I',61,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 11:50:56','','0000-00-00 00:00:00',0),(4000,2526,0,0,939,'2025-10-19','12:34:00',709,65,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 12:35:09','vishal','2025-10-20 12:35:35',0),(4001,2526,0,0,414,'2025-10-20','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:15','vishal','2025-10-20 14:38:40',0),(4002,2526,0,0,414,'2025-10-20','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:15','vishal','2025-10-20 14:38:40',0),(4003,2526,0,0,414,'2025-10-20','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:15','vishal','2025-10-20 14:38:40',0),(4004,2526,0,0,414,'2025-10-20','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:15','riya','2025-10-25 11:28:26',0),(4005,2526,0,0,414,'2025-10-20','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:15','vishal','2025-10-20 14:39:48',0),(4006,2526,0,0,1144,'2025-10-20','14:00:00',0,69,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',64,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:15','vishal','2025-10-22 10:56:47',0),(4007,2526,0,0,1144,'2025-10-20','14:00:00',0,69,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',64,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:15','vishal','2025-10-22 10:56:47',0),(4008,2526,0,0,1144,'2025-10-20','14:00:00',0,69,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',64,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:15','vishal','2025-10-22 10:56:47',0),(4009,2526,0,0,1144,'2025-10-20','14:00:00',0,69,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','410','','','',2526,'H','I',64,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:15','vishal','2025-10-22 10:56:47',0),(4010,2526,0,0,1144,'2025-10-20','14:00:00',0,69,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:15','vishal','2025-10-22 10:56:47',0),(4011,2526,0,0,1213,'2025-10-19','20:50:00',0,71,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:16','vishal','2025-10-22 13:17:01',0),(4012,2526,0,0,1213,'2025-10-19','20:50:00',0,71,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:16','vishal','2025-10-21 13:17:32',0),(4013,2526,0,0,1213,'2025-10-19','20:50:00',0,71,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:16','vishal','2025-10-22 13:17:01',0),(4014,2526,0,0,1292,'2025-10-20','02:30:00',0,77,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',66,19,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:16','vishal','2025-10-20 14:29:04',0),(4015,2526,0,0,1292,'2025-10-20','02:30:00',0,77,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',66,18,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:16','vishal','2025-10-20 14:29:04',0),(4016,2526,0,0,1292,'2025-10-20','02:30:00',0,77,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',66,17,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:16','vishal','2025-10-20 14:29:04',0),(4017,2526,0,0,1292,'2025-10-20','02:30:00',0,77,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',66,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:16','vishal','2025-10-20 14:29:04',0),(4018,2526,0,0,1292,'2025-10-20','02:30:00',0,77,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',66,16,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:16','vishal','2025-10-20 14:29:04',0),(4019,2526,0,0,1293,'2025-10-20','10:15:00',0,78,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:16','vishal','2025-10-20 14:32:03',0),(4020,2526,0,0,1293,'2025-10-20','10:15:00',0,78,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:16','vishal','2025-10-20 14:31:37',0),(4021,2526,0,0,1293,'2025-10-20','10:15:00',0,78,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:16','vishal','2025-10-20 14:32:03',0),(4022,2526,0,0,1293,'2025-10-20','10:15:00',0,78,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:16','vishal','2025-10-20 14:32:03',0),(4023,2526,0,0,1293,'2025-10-20','10:15:00',0,78,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 02:53:16','vishal','2025-10-20 14:32:03',0),(4024,2526,0,0,1292,'2025-10-19','14:25:00',0,77,'WPRC','WPRC0103','H','N',1.00,5000,5000,'A',0,0,0.00,0.00,5000.00,5000,78,0,0,'',0,0,'','','','','',2526,'H','I',66,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:28:31','vishal','2025-10-20 14:29:04',0),(4025,2526,0,0,1292,'2025-10-19','14:25:00',0,77,'ROOM','ROOM0008','H','N',5.00,100,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:28:31','vishal','2025-10-20 14:29:04',0),(4026,2526,0,0,1292,'2025-10-19','14:26:00',0,77,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:28:31','vishal','2025-10-20 14:29:04',0),(4027,2526,0,0,1292,'2025-10-19','14:26:00',0,77,'WPRC','WPRC0104','H','N',1.00,6000,6000,'A',0,0,0.00,0.00,6000.00,6000,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:28:31','vishal','2025-10-20 14:29:04',0),(4028,2526,0,0,1292,'2025-10-20','14:27:00',0,77,'ROOM','ROOM0008','H','N',7.00,100,700,'A',0,0,0.00,0.00,700.00,700,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,23,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:28:31','vishal','2025-10-23 08:30:38',0),(4029,2526,0,0,1292,'2025-10-19','14:27:00',0,77,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:28:31','vishal','2025-10-23 08:30:38',0),(4030,2526,0,0,1292,'2025-10-20','14:27:00',0,77,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,24,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:28:31','vishal','2025-10-23 08:30:38',0),(4031,2526,0,0,1292,'2025-10-19','14:28:00',0,77,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,21,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:28:31','','0000-00-00 00:00:00',0),(4032,2526,0,0,1292,'2025-10-20','14:28:00',0,77,'WPRC','WPRC0087','H','N',2.00,500,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,23,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:28:31','vishal','2025-10-23 08:25:52',0),(4033,2526,0,0,1293,'2025-10-19','14:29:00',0,78,'DRC','DRC0020','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,7,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:31:37','vishal','2025-10-20 14:32:03',0),(4034,2526,0,0,1293,'2025-10-19','14:30:00',0,78,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:31:37','vishal','2025-10-20 14:32:03',0),(4035,2526,0,0,1293,'2025-10-19','14:30:00',0,78,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:31:37','vishal','2025-10-20 14:32:03',0),(4036,2526,0,0,1293,'2025-10-19','14:30:00',0,78,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:31:37','vishal','2025-10-20 14:32:03',0),(4037,2526,0,0,1293,'2025-10-20','14:30:00',0,78,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:31:37','','0000-00-00 00:00:00',0),(4038,2526,0,0,1293,'2025-10-20','14:30:00',0,78,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:31:37','','0000-00-00 00:00:00',0),(4039,2526,0,0,414,'2025-10-19','14:37:00',0,25,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,79,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:38:40','','0000-00-00 00:00:00',0),(4040,2526,0,0,414,'2025-10-20','14:37:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:38:40','','0000-00-00 00:00:00',0),(4041,2526,0,0,414,'2025-10-20','14:37:00',0,25,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:38:40','','0000-00-00 00:00:00',0),(4042,2526,0,0,414,'2025-10-20','14:38:00',0,25,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:38:40','','0000-00-00 00:00:00',0),(4043,2526,0,0,414,'2025-10-20','14:38:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:38:40','','0000-00-00 00:00:00',0),(4044,2526,0,0,414,'2025-10-20','14:38:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:38:40','riya','2025-10-25 11:28:26',0),(4045,2526,0,0,489,'2025-10-20','14:40:00',0,38,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:41:50','','0000-00-00 00:00:00',0),(4046,2526,0,0,489,'2025-10-20','14:40:00',0,38,'WPRC','WPRC0089','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:41:50','','0000-00-00 00:00:00',0),(4047,2526,0,0,489,'2025-10-21','14:40:00',0,38,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 14:41:50','vishal','2025-10-23 18:06:12',0),(4048,2526,0,0,489,'2025-10-20','17:00:00',0,38,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 07:52:51','vishal','2025-10-21 13:27:49',0),(4049,2526,0,0,489,'2025-10-20','17:00:00',0,38,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 07:52:51','vishal','2025-10-21 13:27:49',0),(4050,2526,0,0,489,'2025-10-20','17:00:00',0,38,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 07:52:51','vishal','2025-10-21 13:27:49',0),(4051,2526,0,0,489,'2025-10-20','17:00:00',0,38,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 07:52:51','vishal','2025-10-21 13:27:49',0),(4052,2526,0,0,489,'2025-10-20','17:00:00',0,38,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 07:52:51','vishal','2025-10-21 13:27:49',0),(4053,2526,0,0,1147,'2025-10-20','15:00:00',0,70,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 07:52:51','riya','2025-10-24 18:04:59',0),(4054,2526,0,0,1147,'2025-10-20','15:00:00',0,70,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 07:52:51','riya','2025-10-24 18:04:59',0),(4055,2526,0,0,1147,'2025-10-20','15:00:00',0,70,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 07:52:51','riya','2025-10-24 18:04:59',0),(4056,2526,0,0,1147,'2025-10-20','15:00:00',0,70,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','401','','','',0,'','',0,23,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 07:52:51','riya','2025-10-25 12:01:57',0),(4057,2526,0,0,1147,'2025-10-20','15:00:00',0,70,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 07:52:51','vishal','2025-10-25 13:36:06',0),(4058,2526,0,0,1295,'2025-10-20','05:00:00',0,80,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',63,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 19:39:00','vishal','2025-10-21 15:12:52',0),(4059,2526,0,0,1295,'2025-10-20','05:00:00',0,80,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',63,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 19:39:00','vishal','2025-10-21 15:12:52',0),(4060,2526,0,0,1295,'2025-10-20','05:00:00',0,80,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',63,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 08:09:00','vishal','2025-10-21 15:12:52',0),(4061,2526,0,0,1295,'2025-10-20','05:00:00',0,80,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',63,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 08:09:00','vishal','2025-10-21 15:12:52',0),(4062,2526,0,0,1295,'2025-10-20','05:00:00',0,80,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',63,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 08:09:00','vishal','2025-10-21 15:12:52',0),(4063,2526,0,0,1295,'2025-10-20','05:00:00',0,80,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 08:09:00','vishal','2025-10-21 15:12:52',0),(4064,2526,0,0,1295,'2025-10-20','05:00:00',0,80,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-20 08:09:00','vishal','2025-10-21 15:12:52',0),(4065,2526,0,0,1294,'2025-10-21','08:00:00',0,79,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',0,'','',0,8,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:08:56','vishal','2025-10-21 12:43:16',0),(4066,2526,0,0,1294,'2025-10-21','08:00:00',0,79,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',0,'','',0,9,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:08:56','vishal','2025-10-21 12:43:16',0),(4067,2526,0,0,1294,'2025-10-21','08:00:00',0,79,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',0,'','',0,10,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:08:56','vishal','2025-10-21 12:43:16',0),(4068,2526,0,0,1294,'2025-10-21','08:00:00',0,79,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',67,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:08:56','vishal','2025-10-21 12:43:16',0),(4069,2526,0,0,1294,'2025-10-21','08:00:00',0,79,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',0,'','',0,12,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:08:56','vishal','2025-10-21 12:43:16',0),(4070,2526,0,0,1294,'2025-10-20','12:39:00',0,79,'WPRC','WPRC0101','H','N',4.00,400,1600,'A',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:41:40','vishal','2025-10-21 12:43:16',0),(4071,2526,0,0,1294,'2025-10-20','12:39:00',0,79,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:41:40','vishal','2025-10-21 12:43:16',0),(4072,2526,0,0,1294,'2025-10-20','12:40:00',0,79,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:41:40','','0000-00-00 00:00:00',0),(4073,2526,0,0,1294,'2025-10-20','12:40:00',0,79,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:41:40','','0000-00-00 00:00:00',0),(4074,2526,0,0,1294,'2025-10-21','12:40:00',0,79,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:41:40','','0000-00-00 00:00:00',0),(4075,2526,0,0,1294,'2025-10-20','12:40:00',0,79,'ROOM','ROOM0008','H','N',9.00,100,900,'A',0,0,0.00,0.00,900.00,900,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:41:40','vishal','2025-10-21 12:43:16',0),(4076,2526,0,0,1294,'2025-10-20','12:40:00',0,79,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:41:40','vishal','2025-10-21 12:43:16',0),(4077,2526,0,0,1294,'2025-10-20','12:40:00',0,79,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',67,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:41:40','vishal','2025-10-21 12:43:16',0),(4078,2526,0,0,1294,'2025-10-21','12:41:00',0,79,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:41:40','vishal','2025-10-23 19:49:27',0),(4079,2526,0,0,1294,'2025-10-21','12:42:00',0,79,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:43:16','','0000-00-00 00:00:00',0),(4080,2526,0,0,1294,'2025-10-21','12:42:00',0,79,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,21,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:43:16','vishal','2025-10-23 19:57:32',0),(4081,2526,0,0,1294,'2025-10-21','12:42:00',0,79,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,22,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:43:16','vishal','2025-10-23 19:57:32',0),(4082,2526,0,0,1294,'2025-10-21','12:42:00',0,79,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',67,23,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:43:16','vishal','2025-10-23 19:57:32',0),(4083,2526,0,0,1293,'2025-10-21','10:15:00',0,78,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:14:44','vishal','2025-10-21 12:46:28',0),(4084,2526,0,0,1293,'2025-10-21','10:15:00',0,78,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:14:44','vishal','2025-10-21 12:46:28',0),(4085,2526,0,0,1293,'2025-10-21','10:15:00',0,78,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:14:44','vishal','2025-10-21 12:46:28',0),(4086,2526,0,0,1293,'2025-10-21','10:15:00',0,78,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:14:44','vishal','2025-10-21 12:46:28',0),(4087,2526,0,0,1293,'2025-10-21','10:15:00',0,78,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:14:44','vishal','2025-10-21 12:46:28',0),(4088,2526,0,0,1293,'2025-10-21','12:45:00',0,78,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:46:28','vishal','2025-10-21 13:08:27',0),(4089,2526,0,0,1293,'2025-10-21','12:45:00',0,78,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:46:28','vishal','2025-10-21 13:08:27',0),(4090,2526,0,0,1293,'2025-10-21','12:45:00',0,78,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:46:28','','0000-00-00 00:00:00',0),(4091,2526,0,0,1293,'2025-10-21','12:46:00',0,78,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:46:28','','0000-00-00 00:00:00',0),(4092,2526,0,0,1293,'2025-10-21','12:46:00',0,78,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:46:54','riya','2025-10-25 14:04:52',0),(4093,2526,0,0,1292,'2025-10-21','02:30:00',0,77,'ROOM','ROOM0009','H','N',0.50,5500,2750,'P',0,0,0.00,0.00,2750.00,2750,9999,0,0,'',0,0,'','207','','','',2526,'H','I',66,27,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:25:18','vishal','2025-10-23 08:30:38',0),(4094,2526,0,0,1292,'2025-10-21','02:30:00',0,77,'AECO','AECO0008','H','N',0.50,800,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','207','','','',2526,'H','I',66,28,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:25:18','vishal','2025-10-23 08:30:38',0),(4095,2526,0,0,1292,'2025-10-21','02:30:00',0,77,'CARE','CARE0001','H','N',0.50,600,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','207','','','',2526,'H','I',66,27,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:25:18','vishal','2025-10-23 08:25:52',0),(4096,2526,0,0,1292,'2025-10-21','02:30:00',0,77,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',66,26,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:25:18','vishal','2025-10-21 13:01:50',0),(4097,2526,0,0,1292,'2025-10-21','02:30:00',0,77,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,78,0,0,'',0,0,'','207','','','',0,'','',0,27,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:25:18','vishal','2025-10-21 13:01:50',0),(4098,2526,0,0,1292,'2025-10-21','12:55:00',0,77,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,28,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:56:30','','0000-00-00 00:00:00',0),(4099,2526,0,0,1292,'2025-10-21','12:56:00',0,77,'WPRC','WPRC0087','H','N',2.00,500,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,33,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 12:56:30','vishal','2025-10-23 08:30:38',0),(4100,2526,0,0,1292,'2025-10-21','13:00:00',0,77,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',66,34,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 13:01:50','vishal','2025-10-23 08:30:38',0),(4101,2526,0,0,1292,'2025-10-21','13:01:00',0,77,'ROOM','ROOM0009','H','N',0.50,3200,1600,'A',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,35,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 13:02:47','vishal','2025-10-23 08:30:38',0),(4102,2526,0,0,1292,'2025-10-21','13:02:00',0,77,'CARE','CARE0005','H','N',0.50,400,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,33,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 13:02:47','vishal','2025-10-23 08:25:52',0),(4103,2526,0,0,1292,'2025-10-21','13:02:00',0,77,'CARE','CARE0001','H','N',0.50,200,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,34,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 13:02:47','vishal','2025-10-23 08:25:52',0),(4104,2526,0,0,1213,'2025-10-20','20:50:00',0,71,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:46:14','vishal','2025-10-21 13:17:32',0),(4105,2526,0,0,1213,'2025-10-20','20:50:00',0,71,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:46:14','vishal','2025-10-21 13:17:32',0),(4106,2526,0,0,1213,'2025-10-20','20:50:00',0,71,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:46:14','vishal','2025-10-21 13:17:32',0),(4107,2526,0,0,1213,'2025-10-20','20:50:00',0,71,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:46:14','vishal','2025-10-21 13:17:32',0),(4108,2526,0,0,1213,'2025-10-20','20:50:00',0,71,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:46:14','vishal','2025-10-21 13:17:32',0),(4109,2526,0,0,1213,'2025-10-17','20:50:00',0,71,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 01:47:34','vishal','2025-10-21 13:18:00',0),(4110,2526,0,0,489,'2025-10-21','13:27:00',0,38,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 13:28:53','','0000-00-00 00:00:00',0),(4111,2526,0,0,489,'2025-10-21','13:28:00',0,38,'WPRC','WPRC0089','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 13:28:53','','0000-00-00 00:00:00',0),(4112,2526,0,0,489,'2025-10-22','13:28:00',0,38,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 13:28:53','vishal','2025-10-23 18:06:12',0),(4113,2526,0,0,489,'2025-10-20','13:28:00',0,38,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 13:28:53','','0000-00-00 00:00:00',0),(4114,2526,0,0,489,'2025-10-21','13:28:00',0,38,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 13:28:53','','0000-00-00 00:00:00',0),(4115,2526,0,0,414,'2025-10-21','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 02:17:39','vishal','2025-10-23 17:22:06',0),(4116,2526,0,0,414,'2025-10-21','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 02:17:39','vishal','2025-10-23 17:22:06',0),(4117,2526,0,0,414,'2025-10-21','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 02:17:39','vishal','2025-10-23 17:22:06',0),(4118,2526,0,0,414,'2025-10-21','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 02:17:39','vishal','2025-10-23 17:22:06',0),(4119,2526,0,0,414,'2025-10-21','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 02:17:39','riya','2025-10-25 11:28:26',0),(4120,2526,0,0,1295,'2025-10-21','05:00:00',0,80,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 02:17:40','vishal','2025-10-21 15:13:28',0),(4121,2526,0,0,1295,'2025-10-21','05:00:00',0,80,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 02:17:40','vishal','2025-10-21 15:13:28',0),(4122,2526,0,0,1295,'2025-10-21','05:00:00',0,80,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 02:17:40','vishal','2025-10-21 15:13:28',0),(4123,2526,0,0,1295,'2025-10-21','05:00:00',0,80,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','405','','','',2526,'H','I',63,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 02:17:40','vishal','2025-10-21 15:12:52',0),(4124,2526,0,0,1295,'2025-10-21','05:00:00',0,80,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 02:17:40','vishal','2025-10-21 15:12:52',0),(4125,2526,0,0,1296,'2025-10-21','13:45:00',951,81,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',72,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 14:01:59','vishal','2025-10-23 17:59:08',0),(4126,2526,0,0,1296,'2025-10-21','13:45:00',951,81,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',72,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 14:01:59','vishal','2025-10-23 17:59:08',0),(4127,2526,0,0,1296,'2025-10-21','13:45:00',951,81,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 02:31:59','vishal','2025-10-23 17:59:08',0),(4128,2526,0,0,1296,'2025-10-21','13:45:00',951,81,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 02:31:59','vishal','2025-10-23 17:59:08',0),(4129,2526,0,0,1296,'2025-10-21','13:45:00',951,81,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 02:31:59','vishal','2025-10-23 17:59:08',0),(4130,2526,0,0,1296,'2025-10-21','13:45:00',951,81,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 02:31:59','vishal','2025-10-23 17:59:08',0),(4131,2526,0,0,1296,'2025-10-21','13:45:00',951,81,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 02:31:59','vishal','2025-10-23 17:59:08',0),(4132,2526,0,0,1295,'2025-10-20','15:11:00',0,80,'AECO','ROOM0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',63,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 15:12:52','','0000-00-00 00:00:00',0),(4133,2526,0,0,1295,'2025-10-20','15:12:00',0,80,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',63,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 15:12:52','','0000-00-00 00:00:00',0),(4134,2526,0,0,1295,'2025-10-21','15:12:00',0,80,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',63,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 15:12:52','','0000-00-00 00:00:00',0),(4135,2526,0,0,489,'2025-10-21','17:00:00',0,38,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 07:59:45','vishal','2025-10-23 18:06:12',0),(4136,2526,0,0,489,'2025-10-21','17:00:00',0,38,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 07:59:45','vishal','2025-10-23 18:06:12',0),(4137,2526,0,0,489,'2025-10-21','17:00:00',0,38,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 07:59:45','vishal','2025-10-23 18:06:12',0),(4138,2526,0,0,489,'2025-10-21','17:00:00',0,38,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 07:59:45','vishal','2025-10-23 18:06:12',0),(4139,2526,0,0,489,'2025-10-21','17:00:00',0,38,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','213','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 07:59:45','vishal','2025-10-23 18:06:12',0),(4140,2526,0,0,1144,'2025-10-21','14:00:00',0,69,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',64,28,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 07:59:45','vishal','2025-10-22 10:59:15',0),(4141,2526,0,0,1144,'2025-10-21','14:00:00',0,69,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',64,29,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 07:59:45','vishal','2025-10-22 10:59:15',0),(4142,2526,0,0,1144,'2025-10-21','14:00:00',0,69,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',64,30,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 07:59:45','vishal','2025-10-22 10:59:15',0),(4143,2526,0,0,1144,'2025-10-21','14:00:00',0,69,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 07:59:45','vishal','2025-10-22 10:56:47',0),(4144,2526,0,0,1144,'2025-10-21','14:00:00',0,69,'DRC','DRC0019','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','410','','','',2526,'H','I',64,31,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 07:59:45','vishal','2025-10-22 10:59:15',0),(4145,2526,0,0,1147,'2025-10-21','15:00:00',0,70,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 07:59:45','riya','2025-10-24 18:04:59',0),(4146,2526,0,0,1147,'2025-10-21','15:00:00',0,70,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 07:59:45','riya','2025-10-24 18:04:59',0),(4147,2526,0,0,1147,'2025-10-21','15:00:00',0,70,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 07:59:45','riya','2025-10-24 18:04:59',0),(4148,2526,0,0,1147,'2025-10-21','15:00:00',0,70,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','401','','','',0,'','',0,30,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 07:59:45','riya','2025-10-25 12:01:57',0),(4149,2526,0,0,1147,'2025-10-21','15:00:00',0,70,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-21 07:59:45','vishal','2025-10-25 13:36:06',0),(4150,2526,0,0,1144,'2025-10-22','10:56:00',0,69,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','','','','',2526,'H','I',64,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 10:56:47','','0000-00-00 00:00:00',0),(4151,2526,0,0,1144,'2025-10-20','10:56:00',0,69,'DRC','DRC0020','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',64,20,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 10:58:08','vishal','2025-10-22 10:59:15',0),(4152,2526,0,0,1144,'2025-10-21','10:56:00',0,69,'DRC','DRC0020','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',64,26,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 10:58:08','vishal','2025-10-22 10:59:15',0),(4153,2526,0,0,1144,'2025-10-20','10:57:00',0,69,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',64,21,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 10:58:08','vishal','2025-10-22 10:59:15',0),(4154,2526,0,0,1144,'2025-10-21','10:57:00',0,69,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',64,27,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 10:58:08','vishal','2025-10-22 10:59:15',0),(4155,2526,0,0,1144,'2025-10-22','10:57:00',0,69,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',64,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 10:58:08','','0000-00-00 00:00:00',0),(4156,2526,0,0,1213,'2025-10-21','20:50:00',0,71,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 01:32:26','vishal','2025-10-22 13:10:54',0),(4157,2526,0,0,1213,'2025-10-21','20:50:00',0,71,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 01:32:26','vishal','2025-10-22 13:10:54',0),(4158,2526,0,0,1213,'2025-10-21','20:50:00',0,71,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 01:32:26','vishal','2025-10-22 13:10:54',0),(4159,2526,0,0,1213,'2025-10-21','20:50:00',0,71,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 01:32:26','vishal','2025-10-22 13:17:01',0),(4160,2526,0,0,1213,'2025-10-21','20:50:00',0,71,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',65,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 01:32:26','vishal','2025-10-22 13:11:29',0),(4161,2526,0,0,1213,'2025-10-17','13:04:00',0,71,'DRC','ROOM0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',65,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 13:10:54','vishal','2025-10-22 13:21:52',0),(4162,2526,0,0,1213,'2025-10-22','13:10:00',0,71,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','','','','',2526,'H','I',65,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 13:10:54','vishal','2025-10-22 13:11:29',0),(4163,2526,0,0,1213,'2025-10-17','13:15:00',0,71,'DRC','DRC0021','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',0,'','',0,2,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 13:16:22','vishal','2025-10-22 13:19:12',0),(4164,2526,0,0,1292,'2025-10-22','02:30:00',0,77,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',66,33,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 20:42:18','vishal','2025-10-23 08:24:30',0),(4165,2526,0,0,1292,'2025-10-23','02:30:00',0,77,'ROOM','ROOM0009','H','N',0.50,3200,1600,'P',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','406','','','',2526,'H','I',66,45,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 20:42:18','vishal','2025-10-23 08:25:52',0),(4166,2526,0,0,1292,'2025-10-22','02:30:00',0,77,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',66,37,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 20:42:18','vishal','2025-10-23 08:24:30',0),(4167,2526,0,0,1292,'2025-10-23','02:30:00',0,77,'AECO','AECO0008','H','N',0.50,400,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',66,44,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 20:42:18','vishal','2025-10-23 08:25:52',0),(4168,2526,0,0,1292,'2025-10-22','02:30:00',0,77,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',66,42,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 20:42:18','vishal','2025-10-23 08:30:38',0),(4169,2526,0,0,1292,'2025-10-23','02:30:00',0,77,'CARE','CARE0001','H','N',0.50,200,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','406','','','',2526,'H','I',66,43,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 20:42:18','vishal','2025-10-23 08:25:52',0),(4170,2526,0,0,1292,'2025-10-22','02:30:00',0,77,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','406','','','',2526,'H','I',66,41,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 20:42:18','vishal','2025-10-23 08:30:38',0),(4171,2526,0,0,1292,'2025-10-23','02:30:00',0,77,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','406','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 20:42:18','vishal','2025-10-23 08:24:30',0),(4172,2526,0,0,1292,'2025-10-22','02:30:00',0,77,'DRC','DRC0019','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,8,0,0,'',0,0,'','406','','','',2526,'H','I',66,34,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 20:42:18','vishal','2025-10-23 08:24:30',0),(4173,2526,0,0,1292,'2025-10-23','02:30:00',0,77,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','406','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 20:42:18','vishal','2025-10-23 08:24:30',0),(4174,2526,0,0,1292,'2025-10-22','08:20:00',0,77,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,43,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:24:30','vishal','2025-10-23 08:30:38',0),(4175,2526,0,0,1292,'2025-10-23','08:21:00',0,77,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,42,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:24:30','','0000-00-00 00:00:00',0),(4176,2526,0,0,1292,'2025-10-23','08:21:00',0,77,'WPRC','WPRC0104','H','N',1.00,6000,6000,'P',0,0,0.00,0.00,6000.00,6000,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,43,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:24:30','','0000-00-00 00:00:00',0),(4177,2526,0,0,1292,'2025-10-20','08:21:00',0,77,'WPRC','WPRC0104','H','N',1.00,6000,6000,'P',0,0,0.00,0.00,6000.00,6000,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,44,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:24:30','','0000-00-00 00:00:00',0),(4178,2526,0,0,1292,'2025-10-21','08:22:00',0,77,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,45,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:24:30','','0000-00-00 00:00:00',0),(4179,2526,0,0,1292,'2025-10-22','08:23:00',0,77,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,46,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:24:30','','0000-00-00 00:00:00',0),(4180,2526,0,0,1292,'2025-10-22','08:24:00',0,77,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,47,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:24:30','','0000-00-00 00:00:00',0),(4181,2526,0,0,1292,'2025-10-19','08:28:00',0,77,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:29:19','vishal','2025-10-23 08:30:38',0),(4182,2526,0,0,1292,'2025-10-20','08:28:00',0,77,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,22,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:29:19','vishal','2025-10-23 08:30:38',0),(4183,2526,0,0,1292,'2025-10-21','08:28:00',0,77,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',66,31,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:29:19','vishal','2025-10-23 08:30:38',0),(4184,2526,0,0,1297,'2025-10-23','00:00:00',1067,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1394,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 09:56:00','drashti','2025-10-23 09:56:44',0),(4185,2526,0,0,1298,'2025-10-22','00:05:00',0,82,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 10:39:29','riya','2025-10-28 13:15:42',0),(4186,2526,0,0,1298,'2025-10-22','00:05:00',0,82,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 10:39:29','riya','2025-10-28 13:15:42',0),(4187,2526,0,0,1298,'2025-10-23','00:05:00',0,82,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 23:09:30','vishal','2025-10-23 18:00:50',0),(4188,2526,0,0,1298,'2025-10-23','00:05:00',0,82,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 23:09:30','vishal','2025-10-23 18:00:50',0),(4189,2526,0,0,1298,'2025-10-23','00:05:00',0,82,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 23:09:30','vishal','2025-10-23 18:00:50',0),(4190,2526,0,0,1298,'2025-10-23','00:05:00',0,82,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 23:09:30','vishal','2025-10-23 18:00:50',0),(4191,2526,0,0,1298,'2025-10-23','00:05:00',0,82,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 23:09:30','vishal','2025-10-23 18:00:50',0),(4192,2526,0,0,1296,'2025-10-22','13:45:00',951,81,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 23:55:57','vishal','2025-10-23 17:59:08',0),(4193,2526,0,0,1296,'2025-10-22','13:45:00',951,81,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 23:55:57','vishal','2025-10-23 17:59:08',0),(4194,2526,0,0,1296,'2025-10-22','13:45:00',951,81,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 23:55:57','vishal','2025-10-23 17:59:08',0),(4195,2526,0,0,1296,'2025-10-22','13:45:00',951,81,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','304','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 23:55:57','vishal','2025-10-25 13:08:57',0),(4196,2526,0,0,1296,'2025-10-22','13:45:00',951,81,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','304','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-22 23:55:57','vishal','2025-10-25 13:08:57',0),(4197,2526,0,0,1299,'2025-10-23','11:29:25',1004,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1395,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 11:29:25','drashti','2025-10-23 11:29:25',0),(4198,2526,0,0,1300,'2025-10-23','11:34:42',431,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1396,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 11:34:42','drashti','2025-10-23 11:34:42',0),(4199,2526,0,0,1301,'2025-10-18','00:00:00',1068,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 11:39:54','shweta','2025-10-23 11:46:36',0),(4200,2526,0,0,1302,'2025-10-23','00:00:00',1069,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1397,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 11:41:16','drashti','2025-10-23 11:42:13',0),(4201,2526,0,0,1303,'2025-10-23','00:00:00',1070,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1398,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 11:45:11','drashti','2025-10-23 11:45:28',0),(4202,2526,0,0,1301,'2025-10-23','11:46:36',1068,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1399,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 11:46:36','shweta','2025-10-23 11:46:36',0),(4203,2526,0,0,1301,'2025-10-23','11:46:36',1068,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',1399,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 11:46:36','shweta','2025-10-23 11:46:36',0),(4204,2526,0,0,1301,'2025-10-23','11:46:36',1068,0,'OPWD','OPWD0016','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',1399,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 11:46:36','shweta','2025-10-23 11:46:36',0),(4205,2526,0,0,1305,'2025-10-18','00:00:00',1071,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 11:49:31','drashti','2025-10-23 11:55:21',0),(4206,2526,0,0,1304,'2025-10-23','11:50:16',221,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',1400,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 11:50:16','shweta','2025-10-23 11:50:16',0),(4207,2526,0,0,1306,'2025-10-19','00:00:00',1072,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 11:52:53','shweta','2025-10-23 11:54:41',0),(4208,2526,0,0,1306,'2025-10-23','11:54:42',1072,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1401,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'shweta','2025-10-23 11:54:41','shweta','2025-10-23 11:54:41',0),(4209,2526,0,0,1306,'2025-10-23','11:54:42',1072,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',1401,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'shweta','2025-10-23 11:54:41','shweta','2025-10-23 11:54:41',0),(4210,2526,0,0,1306,'2025-10-23','11:54:42',1072,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,33,'',0,0,'','','','','',2526,'H','O',1401,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'shweta','2025-10-23 11:54:41','shweta','2025-10-23 11:54:41',0),(4211,2526,0,0,1306,'2025-10-23','11:54:42',1072,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',1401,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'shweta','2025-10-23 11:54:41','shweta','2025-10-23 11:54:41',0),(4212,2526,0,0,1305,'2025-10-23','11:55:21',1071,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1402,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 11:55:21','drashti','2025-10-23 11:55:21',0),(4213,2526,0,0,1305,'2025-10-23','11:55:21',1071,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',1402,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 11:55:21','drashti','2025-10-23 11:55:21',0),(4214,2526,0,0,1307,'2025-10-19','00:00:00',1073,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 11:56:39','shweta','2025-10-23 11:58:37',0),(4215,2526,0,0,1307,'2025-10-23','11:58:37',1073,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1403,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'shweta','2025-10-23 11:58:37','shweta','2025-10-23 11:58:37',0),(4216,2526,0,0,1307,'2025-10-23','11:58:37',1073,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,34,'',0,0,'','','','','',2526,'H','O',1403,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'shweta','2025-10-23 11:58:37','shweta','2025-10-23 11:58:37',0),(4217,2526,0,0,1307,'2025-10-23','11:58:37',1073,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',1403,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'shweta','2025-10-23 11:58:37','shweta','2025-10-23 11:58:37',0),(4218,2526,0,0,1307,'2025-10-23','11:58:37',1073,0,'OPWD','OPWD0016','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1403,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'shweta','2025-10-23 11:58:37','shweta','2025-10-23 11:58:37',0),(4219,2526,0,0,1308,'2025-10-20','00:00:00',1074,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:00:21','drashti','2025-10-23 12:02:07',0),(4220,2526,0,0,1309,'2025-10-20','00:00:00',1075,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:00:24','shweta','2025-10-23 12:01:31',0),(4221,2526,0,0,1309,'2025-10-23','12:01:31',1075,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',1404,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:01:31','shweta','2025-10-23 12:01:31',0),(4222,2526,0,0,1308,'2025-10-23','12:02:07',1074,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1405,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:02:07','drashti','2025-10-23 12:02:07',0),(4223,2526,0,0,1308,'2025-10-23','12:02:07',1074,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',1405,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:02:07','drashti','2025-10-23 12:02:07',0),(4224,2526,0,0,1310,'2025-10-21','00:00:00',1076,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:04:10','shweta','2025-10-23 12:06:31',0),(4225,2526,0,0,1311,'2025-10-21','00:00:00',1077,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:04:31','drashti','2025-10-23 12:08:22',0),(4226,2526,0,0,1310,'2025-10-23','12:06:31',1076,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',1406,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:06:31','shweta','2025-10-23 12:06:31',0),(4227,2526,0,0,1311,'2025-10-23','12:08:22',1077,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1407,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'drashti','2025-10-23 12:08:22','drashti','2025-10-23 12:08:22',0),(4228,2526,0,0,1311,'2025-10-23','12:08:22',1077,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',1407,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'drashti','2025-10-23 12:08:22','drashti','2025-10-23 12:08:22',0),(4229,2526,0,0,1311,'2025-10-23','12:08:22',1077,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',1407,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'drashti','2025-10-23 12:08:22','drashti','2025-10-23 12:08:22',0),(4230,2526,0,0,1311,'2025-10-23','12:08:22',1077,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,35,'',0,0,'','','','','',2526,'H','O',1407,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'drashti','2025-10-23 12:08:22','drashti','2025-10-23 12:08:22',0),(4231,2526,0,0,1312,'2025-10-21','00:00:00',1078,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:10:54','drashti','2025-10-23 12:12:43',0),(4232,2526,0,0,1312,'2025-10-23','12:12:43',1078,0,'SURG','SURG0005','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1408,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:12:43','drashti','2025-10-23 12:12:43',0),(4233,2526,0,0,1312,'2025-10-23','12:12:43',1078,0,'OPWD','OPWD0019','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',1408,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:12:43','drashti','2025-10-23 12:12:43',0),(4234,2526,0,0,1313,'2025-10-22','00:00:00',1079,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:13:57','shweta','2025-10-23 12:14:51',0),(4235,2526,0,0,1313,'2025-10-23','12:14:51',1079,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1409,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:14:51','shweta','2025-10-23 12:14:51',0),(4236,2526,0,0,1314,'2025-10-18','00:00:00',1080,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:16:41','shweta','2025-10-23 12:17:33',0),(4237,2526,0,0,1314,'2025-10-23','12:17:33',1080,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1410,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:17:33','shweta','2025-10-23 12:17:33',0),(4238,2526,0,0,1314,'2025-10-23','12:17:33',1080,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',1410,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:17:33','shweta','2025-10-23 12:17:33',0),(4239,2526,0,0,1315,'2025-10-23','12:18:39',904,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',1411,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:18:39','shweta','2025-10-23 12:18:39',0),(4240,2526,0,0,1316,'2025-10-19','00:00:00',1081,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:20:25','drashti','2025-10-23 12:22:31',0),(4241,2526,0,0,1316,'2025-10-23','12:22:31',1081,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1412,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'drashti','2025-10-23 12:22:31','drashti','2025-10-23 12:22:31',0),(4242,2526,0,0,1316,'2025-10-23','12:22:31',1081,0,'OPWD','OPWD0013','H','N',4.00,100,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1412,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'drashti','2025-10-23 12:22:31','drashti','2025-10-23 12:22:31',0),(4243,2526,0,0,1316,'2025-10-23','12:22:31',1081,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',1412,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'drashti','2025-10-23 12:22:31','drashti','2025-10-23 12:22:31',0),(4244,2526,0,0,1316,'2025-10-23','12:22:31',1081,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,36,'',0,0,'','','','','',2526,'H','O',1412,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'drashti','2025-10-23 12:22:31','drashti','2025-10-23 12:22:31',0),(4245,2526,0,0,1317,'2025-10-19','00:00:00',1082,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:22:34','shweta','2025-10-23 12:22:53',0),(4246,2526,0,0,1317,'2025-10-23','12:22:53',1082,0,'WPRC','WPRC0037','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1413,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:22:53','shweta','2025-10-23 12:22:53',0),(4247,2526,0,0,1318,'2025-10-19','00:00:00',1083,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:24:24','shweta','2025-10-23 12:26:00',0),(4248,2526,0,0,1319,'2025-10-19','00:00:00',1084,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:24:42','drashti','2025-10-23 12:25:40',0),(4249,2526,0,0,1319,'2025-10-23','12:25:40',1084,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1414,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:25:40','drashti','2025-10-23 12:25:40',0),(4250,2526,0,0,1319,'2025-10-23','12:25:40',1084,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1414,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:25:40','drashti','2025-10-23 12:25:40',0),(4251,2526,0,0,1318,'2025-10-23','12:26:00',1083,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',1415,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:26:00','shweta','2025-10-23 12:26:00',0),(4252,2526,0,0,62,'2025-10-06','12:15:00',0,9,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4253,2526,0,0,62,'2025-10-07','12:15:00',0,9,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4254,2526,0,0,62,'2025-10-08','12:15:00',0,9,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4255,2526,0,0,62,'2025-10-09','12:15:00',0,9,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4256,2526,0,0,62,'2025-10-06','12:15:00',0,9,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4257,2526,0,0,62,'2025-10-07','12:15:00',0,9,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4258,2526,0,0,62,'2025-10-08','12:15:00',0,9,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4259,2526,0,0,62,'2025-10-09','12:15:00',0,9,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4260,2526,0,0,62,'2025-10-06','12:15:00',0,9,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4261,2526,0,0,62,'2025-10-07','12:15:00',0,9,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4262,2526,0,0,62,'2025-10-08','12:15:00',0,9,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4263,2526,0,0,62,'2025-10-09','12:15:00',0,9,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4264,2526,0,0,62,'2025-10-06','12:15:00',0,9,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4265,2526,0,0,62,'2025-10-07','12:15:00',0,9,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4266,2526,0,0,62,'2025-10-08','12:15:00',0,9,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4267,2526,0,0,62,'2025-10-09','12:15:00',0,9,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4268,2526,0,0,62,'2025-10-06','12:15:00',0,9,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4269,2526,0,0,62,'2025-10-07','12:15:00',0,9,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4270,2526,0,0,62,'2025-10-08','12:15:00',0,9,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4271,2526,0,0,62,'2025-10-09','12:15:00',0,9,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 00:57:55','','0000-00-00 00:00:00',0),(4272,2526,0,0,1320,'2025-10-23','12:28:03',879,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1416,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:28:03','shweta','2025-10-23 12:28:03',0),(4273,2526,0,0,1321,'2025-10-23','12:28:58',901,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',1417,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:28:58','shweta','2025-10-23 12:28:58',0),(4274,2526,0,0,1322,'2025-10-23','12:29:22',140,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1418,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:29:22','drashti','2025-10-23 12:29:22',0),(4275,2526,0,0,1323,'2025-10-20','00:00:00',1085,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:30:27','shweta','2025-10-23 12:30:44',0),(4276,2526,0,0,1323,'2025-10-23','12:30:44',1085,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1419,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:30:44','shweta','2025-10-23 12:30:44',0),(4277,2526,0,0,1324,'2025-10-19','00:00:00',1086,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:31:21','drashti','2025-10-23 12:31:51',0),(4278,2526,0,0,1324,'2025-10-23','12:31:51',1086,0,'SURG','SURG0005','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1420,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:31:51','drashti','2025-10-23 12:31:51',0),(4279,2526,0,0,60,'2025-10-06','13:30:00',0,8,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4280,2526,0,0,60,'2025-10-07','13:30:00',0,8,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4281,2526,0,0,60,'2025-10-08','13:30:00',0,8,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4282,2526,0,0,60,'2025-10-09','13:30:00',0,8,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4283,2526,0,0,60,'2025-10-06','13:30:00',0,8,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4284,2526,0,0,60,'2025-10-07','13:30:00',0,8,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4285,2526,0,0,60,'2025-10-08','13:30:00',0,8,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4286,2526,0,0,60,'2025-10-09','13:30:00',0,8,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4287,2526,0,0,60,'2025-10-06','13:30:00',0,8,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4288,2526,0,0,60,'2025-10-07','13:30:00',0,8,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4289,2526,0,0,60,'2025-10-08','13:30:00',0,8,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4290,2526,0,0,60,'2025-10-09','13:30:00',0,8,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4291,2526,0,0,60,'2025-10-06','13:30:00',0,8,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4292,2526,0,0,60,'2025-10-07','13:30:00',0,8,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4293,2526,0,0,60,'2025-10-08','13:30:00',0,8,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4294,2526,0,0,60,'2025-10-09','13:30:00',0,8,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4295,2526,0,0,60,'2025-10-06','13:30:00',0,8,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4296,2526,0,0,60,'2025-10-07','13:30:00',0,8,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4297,2526,0,0,60,'2025-10-08','13:30:00',0,8,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4298,2526,0,0,60,'2025-10-09','13:30:00',0,8,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:01:58','','0000-00-00 00:00:00',0),(4299,2526,0,0,1326,'2025-10-20','00:00:00',1087,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:33:34','drashti','2025-10-23 12:34:14',0),(4300,2526,0,0,1326,'2025-10-23','12:34:14',1087,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1421,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:34:14','drashti','2025-10-23 12:34:14',0),(4301,2526,0,0,1326,'2025-10-23','12:34:14',1087,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',1421,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:34:14','drashti','2025-10-23 12:34:14',0),(4302,2526,0,0,1325,'2025-10-23','12:35:49',118,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1422,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:35:49','shweta','2025-10-23 12:35:49',0),(4303,2526,0,0,1327,'2025-10-20','00:00:00',280,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:35:56','drashti','2025-10-23 12:37:15',0),(4304,2526,0,0,1328,'2025-10-20','00:00:00',452,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:36:50','shweta','2025-10-23 12:38:03',0),(4305,2526,0,0,1327,'2025-10-23','12:37:15',280,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1423,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:37:15','drashti','2025-10-23 12:37:15',0),(4306,2526,0,0,1327,'2025-10-23','12:37:15',280,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1423,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:37:15','drashti','2025-10-23 12:37:15',0),(4307,2526,0,0,1327,'2025-10-23','12:37:15',280,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',1423,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:37:15','drashti','2025-10-23 12:37:15',0),(4308,2526,0,0,1328,'2025-10-23','12:38:03',452,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1424,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:38:03','shweta','2025-10-23 12:38:03',0),(4309,2526,0,0,1329,'2025-10-23','12:41:45',575,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1425,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:41:45','shweta','2025-10-23 12:41:45',0),(4310,2526,0,0,1330,'2025-10-23','00:00:00',1088,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:43:44','shweta','2025-10-23 01:13:44',0),(4311,2526,0,0,1330,'2025-10-23','12:44:06',1088,0,'XRY','XRY0045','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',1426,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:44:06','shweta','2025-10-23 12:44:06',0),(4312,2526,0,0,1331,'2025-10-20','00:00:00',1089,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:46:11','drashti','2025-10-23 12:48:22',0),(4313,2526,0,0,1331,'2025-10-23','12:48:22',1089,0,'OTCG','OTCG0001','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1427,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:48:22','drashti','2025-10-23 12:48:22',0),(4314,2526,0,0,1331,'2025-10-23','12:48:22',1089,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,2,0,0,'',0,0,'','','','','',2526,'H','O',1427,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:48:22','drashti','2025-10-23 12:48:22',0),(4315,2526,0,0,1332,'2025-10-20','00:00:00',1090,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:50:30','shweta','2025-10-23 12:50:47',0),(4316,2526,0,0,1332,'2025-10-23','12:50:47',1090,0,'LAB','LAB0817','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,37,'',0,0,'','','','','',2526,'H','O',1428,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',5,'shweta','2025-10-23 12:50:47','shweta','2025-10-23 12:50:47',0),(4317,2526,0,0,1333,'2025-10-23','00:00:00',442,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:52:26','drashti','2025-10-23 01:22:26',0),(4318,2526,0,0,37,'2025-10-07','13:00:00',0,4,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','D',69,2,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:22:52','vishal','2025-10-23 12:53:56',0),(4319,2526,0,0,37,'2025-10-07','13:00:00',0,4,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','D',69,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:22:52','vishal','2025-10-23 12:53:56',0),(4320,2526,0,0,37,'2025-10-07','13:00:00',0,4,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','D',69,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:22:52','vishal','2025-10-23 12:53:56',0),(4321,2526,0,0,37,'2025-10-08','13:00:00',0,4,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','D',69,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:22:52','vishal','2025-10-23 12:53:56',0),(4322,2526,0,0,37,'2025-10-07','13:00:00',0,4,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','D',69,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:22:52','vishal','2025-10-23 12:53:56',0),(4323,2526,0,0,37,'2025-10-07','12:53:00',0,4,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','D',69,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 12:53:56','','0000-00-00 00:00:00',0),(4324,2526,0,0,37,'2025-10-07','12:53:00',0,4,'REG','REG0002','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',69,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 12:53:56','','0000-00-00 00:00:00',0),(4325,2526,0,0,1333,'2025-10-23','12:54:07',442,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1429,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:54:07','drashti','2025-10-23 12:54:07',0),(4326,2526,0,0,1333,'2025-10-23','12:54:07',442,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',1429,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:54:07','drashti','2025-10-23 12:54:07',0),(4327,2526,0,0,1334,'2025-10-23','00:00:00',1091,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:56:47','shweta','2025-10-23 01:26:47',0),(4328,2526,0,0,257,'2025-10-08','14:00:00',0,19,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:27:47','','0000-00-00 00:00:00',0),(4329,2526,0,0,257,'2025-10-09','14:00:00',0,19,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:27:47','','0000-00-00 00:00:00',0),(4330,2526,0,0,257,'2025-10-08','14:00:00',0,19,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:27:47','','0000-00-00 00:00:00',0),(4331,2526,0,0,257,'2025-10-09','14:00:00',0,19,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:27:47','','0000-00-00 00:00:00',0),(4332,2526,0,0,257,'2025-10-08','14:00:00',0,19,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:27:47','','0000-00-00 00:00:00',0),(4333,2526,0,0,257,'2025-10-09','14:00:00',0,19,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:27:47','','0000-00-00 00:00:00',0),(4334,2526,0,0,257,'2025-10-08','14:00:00',0,19,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:27:47','','0000-00-00 00:00:00',0),(4335,2526,0,0,257,'2025-10-09','14:00:00',0,19,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:27:47','','0000-00-00 00:00:00',0),(4336,2526,0,0,257,'2025-10-08','14:00:00',0,19,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:27:47','','0000-00-00 00:00:00',0),(4337,2526,0,0,257,'2025-10-09','14:00:00',0,19,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:27:47','','0000-00-00 00:00:00',0),(4338,2526,0,0,1335,'2025-10-23','00:00:00',1092,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:58:12','drashti','2025-10-23 01:28:12',0),(4339,2526,0,0,1334,'2025-10-23','12:58:31',1091,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1430,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:58:31','shweta','2025-10-23 12:58:31',0),(4340,2526,0,0,1335,'2025-10-23','12:58:40',1092,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',1431,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 12:58:40','drashti','2025-10-23 12:58:40',0),(4341,2526,0,0,1336,'2025-10-23','00:00:00',1093,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 12:59:56','shweta','2025-10-23 01:29:56',0),(4342,2526,0,0,1337,'2025-10-23','00:00:00',1094,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 13:00:08','drashti','2025-10-23 01:30:08',0),(4343,2526,0,0,1336,'2025-10-23','13:00:24',1093,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1432,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 13:00:24','shweta','2025-10-23 13:00:24',0),(4344,2526,0,0,1337,'2025-10-23','13:01:14',1094,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1433,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 13:01:14','drashti','2025-10-23 13:01:14',0),(4345,2526,0,0,1337,'2025-10-23','13:01:14',1094,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1433,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 13:01:14','drashti','2025-10-23 13:01:14',0),(4346,2526,0,0,1337,'2025-10-23','13:01:14',1094,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',1433,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-23 13:01:14','drashti','2025-10-23 13:01:14',0),(4347,2526,0,0,1338,'2025-10-21','00:00:00',1095,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 13:05:28','shweta','2025-10-23 13:07:14',0),(4348,2526,0,0,1338,'2025-10-23','13:07:14',1095,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1434,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 13:07:14','shweta','2025-10-23 13:07:14',0),(4349,2526,0,0,1338,'2025-10-23','13:07:14',1095,0,'WPRC','WPRC0046','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,4,0,0,'',0,0,'','','','','',2526,'H','O',1434,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 13:07:14','shweta','2025-10-23 13:07:14',0),(4350,2526,0,0,1339,'2025-10-23','13:15:00',1067,83,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',68,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 13:17:40','riya','2025-10-24 11:32:36',0),(4351,2526,0,0,1339,'2025-10-23','13:15:00',1067,83,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',68,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 13:17:40','riya','2025-10-24 11:32:36',0),(4352,2526,0,0,1339,'2025-10-23','13:15:00',1067,83,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',68,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:47:40','riya','2025-10-24 11:32:36',0),(4353,2526,0,0,1339,'2025-10-23','13:15:00',1067,83,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',68,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:47:40','riya','2025-10-24 11:32:36',0),(4354,2526,0,0,1339,'2025-10-23','13:15:00',1067,83,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',68,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:47:40','riya','2025-10-24 11:32:36',0),(4355,2526,0,0,1339,'2025-10-24','13:15:00',1067,83,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',68,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:47:40','riya','2025-10-24 11:32:36',0),(4356,2526,0,0,1339,'2025-10-23','13:15:00',1067,83,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',68,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 01:47:40','riya','2025-10-24 11:32:36',0),(4357,2526,0,0,1340,'2025-10-23','13:19:33',992,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1435,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 13:19:33','shweta','2025-10-23 13:19:33',0),(4358,2526,0,0,1340,'2025-10-23','13:19:33',992,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',1435,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 13:19:33','shweta','2025-10-23 13:19:33',0),(4359,2526,0,0,1340,'2025-10-23','13:19:33',992,0,'OPWD','OPWD0015','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,4,0,0,'',0,0,'','','','','',2526,'H','O',1435,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-23 13:19:33','shweta','2025-10-23 13:19:33',0),(4360,2526,0,0,1341,'2025-10-23','13:30:00',1004,84,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',69,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 13:31:53','riya','2025-10-24 11:36:20',0),(4361,2526,0,0,1341,'2025-10-23','13:30:00',1004,84,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',69,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 13:31:53','riya','2025-10-24 11:36:20',0),(4362,2526,0,0,1341,'2025-10-23','13:30:00',1004,84,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',69,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 02:01:53','riya','2025-10-24 11:36:20',0),(4363,2526,0,0,1341,'2025-10-23','13:30:00',1004,84,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',69,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 02:01:53','riya','2025-10-24 11:36:20',0),(4364,2526,0,0,1341,'2025-10-23','13:30:00',1004,84,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',69,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 02:01:53','riya','2025-10-24 11:36:20',0),(4365,2526,0,0,1341,'2025-10-24','13:30:00',1004,84,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',69,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 02:01:53','riya','2025-10-24 11:36:20',0),(4366,2526,0,0,1341,'2025-10-23','13:30:00',1004,84,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',69,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 02:01:53','riya','2025-10-24 11:36:20',0),(4367,2526,0,0,414,'2025-10-22','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 05:50:13','vishal','2025-10-23 17:22:06',0),(4368,2526,0,0,414,'2025-10-23','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 05:50:13','vishal','2025-10-23 17:22:06',0),(4369,2526,0,0,414,'2025-10-22','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 05:50:13','vishal','2025-10-23 17:22:06',0),(4370,2526,0,0,414,'2025-10-23','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 05:50:13','vishal','2025-10-23 17:22:06',0),(4371,2526,0,0,414,'2025-10-22','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 05:50:13','vishal','2025-10-23 17:22:06',0),(4372,2526,0,0,414,'2025-10-23','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 05:50:13','vishal','2025-10-23 17:22:06',0),(4373,2526,0,0,414,'2025-10-22','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',0,'','',0,132,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 05:50:13','vishal','2025-10-23 17:28:44',0),(4374,2526,0,0,414,'2025-10-23','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 05:50:13','riya','2025-10-25 11:28:26',0),(4375,2526,0,0,414,'2025-10-22','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 05:50:13','riya','2025-10-25 11:28:26',0),(4376,2526,0,0,414,'2025-10-23','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',0,'','',0,138,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 05:50:13','riya','2025-10-25 11:20:13',0),(4377,2526,0,0,1342,'2025-10-23','00:00:00',1096,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1436,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 17:27:14','urvashi','2025-10-23 17:28:39',0),(4378,2526,0,0,1343,'2025-10-23','00:00:00',1097,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1437,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 17:28:32','urvashi','2025-10-23 17:29:50',0),(4379,2526,0,0,1344,'2025-10-23','00:00:00',1098,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1438,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 17:30:40','urvashi','2025-10-23 17:31:10',0),(4380,2526,0,0,1345,'2025-10-23','00:00:00',1099,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1439,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 17:34:24','urvashi','2025-10-23 17:35:05',0),(4381,2526,0,0,414,'2025-10-23','17:29:00',0,25,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 17:34:30','','0000-00-00 00:00:00',0),(4382,2526,0,0,414,'2025-10-21','17:30:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 17:34:30','','0000-00-00 00:00:00',0),(4383,2526,0,0,414,'2025-10-22','17:30:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 17:34:30','','0000-00-00 00:00:00',0),(4384,2526,0,0,414,'2025-10-23','17:30:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 17:34:30','','0000-00-00 00:00:00',0),(4385,2526,0,0,414,'2025-10-21','17:30:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 17:34:30','','0000-00-00 00:00:00',0),(4386,2526,0,0,414,'2025-10-22','17:30:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 17:34:30','','0000-00-00 00:00:00',0),(4387,2526,0,0,414,'2025-10-23','17:30:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 17:34:30','','0000-00-00 00:00:00',0),(4388,2526,0,0,414,'2025-10-23','17:32:00',0,25,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 17:34:30','','0000-00-00 00:00:00',0),(4389,2526,0,0,414,'2025-10-21','17:33:00',0,25,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 17:34:30','','0000-00-00 00:00:00',0),(4390,2526,0,0,414,'2025-10-22','17:33:00',0,25,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 17:34:30','','0000-00-00 00:00:00',0),(4391,2526,0,0,414,'2025-10-23','17:33:00',0,25,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 17:34:30','','0000-00-00 00:00:00',0),(4392,2526,0,0,414,'2025-10-21','17:33:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 17:34:30','riya','2025-10-25 11:28:26',0),(4393,2526,0,0,414,'2025-10-22','17:33:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 17:34:30','riya','2025-10-25 11:28:26',0),(4394,2526,0,0,414,'2025-10-23','17:33:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 17:34:30','riya','2025-10-25 11:28:26',0),(4395,2526,0,0,489,'2025-10-22','17:00:00',0,38,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:14','vishal','2025-10-23 18:06:12',0),(4396,2526,0,0,489,'2025-10-23','17:00:00',0,38,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:14','vishal','2025-10-23 18:06:12',0),(4397,2526,0,0,489,'2025-10-22','17:00:00',0,38,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:14','vishal','2025-10-23 18:06:12',0),(4398,2526,0,0,489,'2025-10-23','17:00:00',0,38,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:14','vishal','2025-10-23 18:06:12',0),(4399,2526,0,0,489,'2025-10-22','17:00:00',0,38,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:14','vishal','2025-10-23 18:06:12',0),(4400,2526,0,0,489,'2025-10-23','17:00:00',0,38,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:14','vishal','2025-10-23 18:06:12',0),(4401,2526,0,0,489,'2025-10-22','17:00:00',0,38,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:14','riya','2025-10-25 19:16:18',0),(4402,2526,0,0,489,'2025-10-23','17:00:00',0,38,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:14','riya','2025-10-25 19:16:18',0),(4403,2526,0,0,489,'2025-10-22','17:00:00',0,38,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:14','riya','2025-10-25 19:16:18',0),(4404,2526,0,0,489,'2025-10-23','17:00:00',0,38,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:14','riya','2025-10-25 19:16:18',0),(4405,2526,0,0,1147,'2025-10-22','15:00:00',0,70,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','riya','2025-10-24 18:04:59',0),(4406,2526,0,0,1147,'2025-10-23','15:00:00',0,70,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','riya','2025-10-24 18:04:59',0),(4407,2526,0,0,1147,'2025-10-22','15:00:00',0,70,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','riya','2025-10-24 18:04:59',0),(4408,2526,0,0,1147,'2025-10-23','15:00:00',0,70,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','riya','2025-10-24 18:04:59',0),(4409,2526,0,0,1147,'2025-10-22','15:00:00',0,70,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','riya','2025-10-24 18:04:59',0),(4410,2526,0,0,1147,'2025-10-23','15:00:00',0,70,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','riya','2025-10-24 18:04:59',0),(4411,2526,0,0,1147,'2025-10-22','15:00:00',0,70,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','vishal','2025-10-25 13:36:06',0),(4412,2526,0,0,1147,'2025-10-23','15:00:00',0,70,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','riya','2025-10-25 12:01:57',0),(4413,2526,0,0,1147,'2025-10-22','15:00:00',0,70,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','vishal','2025-10-25 13:36:06',0),(4414,2526,0,0,1147,'2025-10-23','15:00:00',0,70,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','riya','2025-10-25 12:01:57',0),(4415,2526,0,0,1293,'2025-10-22','10:15:00',0,78,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','riya','2025-10-25 14:04:52',0),(4416,2526,0,0,1293,'2025-10-23','10:15:00',0,78,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','riya','2025-10-25 14:04:52',0),(4417,2526,0,0,1293,'2025-10-22','10:15:00',0,78,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','riya','2025-10-25 14:04:52',0),(4418,2526,0,0,1293,'2025-10-23','10:15:00',0,78,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','riya','2025-10-25 14:04:52',0),(4419,2526,0,0,1293,'2025-10-22','10:15:00',0,78,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','riya','2025-10-25 14:04:52',0),(4420,2526,0,0,1293,'2025-10-23','10:15:00',0,78,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','riya','2025-10-25 14:04:52',0),(4421,2526,0,0,1293,'2025-10-22','10:15:00',0,78,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','riya','2025-10-25 14:26:31',0),(4422,2526,0,0,1293,'2025-10-23','10:15:00',0,78,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','riya','2025-10-25 14:26:31',0),(4423,2526,0,0,1293,'2025-10-22','10:15:00',0,78,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','riya','2025-10-25 14:26:31',0),(4424,2526,0,0,1293,'2025-10-23','10:15:00',0,78,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','riya','2025-10-25 14:26:31',0),(4425,2526,0,0,1294,'2025-10-22','08:00:00',0,79,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',67,24,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','vishal','2025-10-23 19:51:31',0),(4426,2526,0,0,1294,'2025-10-23','08:00:00',0,79,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',67,35,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','vishal','2025-10-23 19:51:31',0),(4427,2526,0,0,1294,'2025-10-22','08:00:00',0,79,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',67,28,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','vishal','2025-10-23 19:51:31',0),(4428,2526,0,0,1294,'2025-10-23','08:00:00',0,79,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',67,34,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','vishal','2025-10-23 19:57:32',0),(4429,2526,0,0,1294,'2025-10-22','08:00:00',0,79,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',67,27,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','vishal','2025-10-23 19:51:31',0),(4430,2526,0,0,1294,'2025-10-23','08:00:00',0,79,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',67,28,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','vishal','2025-10-23 18:09:41',0),(4431,2526,0,0,1294,'2025-10-22','08:00:00',0,79,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','408','','','',2526,'H','I',67,26,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','vishal','2025-10-23 19:57:32',0),(4432,2526,0,0,1294,'2025-10-23','08:00:00',0,79,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','408','','','',2526,'H','I',67,33,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','vishal','2025-10-23 19:57:32',0),(4433,2526,0,0,1294,'2025-10-22','08:00:00',0,79,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','408','','','',2526,'H','I',67,25,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','vishal','2025-10-23 19:57:32',0),(4434,2526,0,0,1294,'2025-10-23','08:00:00',0,79,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','408','','','',2526,'H','I',67,35,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','vishal','2025-10-23 19:57:32',0),(4435,2526,0,0,1296,'2025-10-23','13:45:00',951,81,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','vishal','2025-10-23 17:59:08',0),(4436,2526,0,0,1296,'2025-10-23','13:45:00',951,81,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','vishal','2025-10-23 17:59:08',0),(4437,2526,0,0,1296,'2025-10-23','13:45:00',951,81,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','vishal','2025-10-23 17:59:08',0),(4438,2526,0,0,1296,'2025-10-23','13:45:00',951,81,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','407','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','vishal','2025-10-25 13:08:57',0),(4439,2526,0,0,1296,'2025-10-23','13:45:00',951,81,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','407','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 06:08:15','vishal','2025-10-25 13:08:57',0),(4440,2526,0,0,1346,'2025-10-23','00:00:00',1100,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 17:43:34','urvashi','2025-10-23 06:13:34',0),(4441,2526,0,0,1346,'2025-10-23','17:45:18',1100,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1440,1,248,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',6,'urvashi','2025-10-23 17:45:18','urvashi','2025-10-23 17:45:18',0),(4442,2526,0,0,1346,'2025-10-23','17:45:18',1100,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1440,2,93,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',6,'urvashi','2025-10-23 17:45:18','urvashi','2025-10-23 17:45:18',0),(4443,2526,0,0,1346,'2025-10-23','17:45:18',1100,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,38,'',0,0,'','','','','',2526,'H','O',1440,3,16,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',6,'urvashi','2025-10-23 17:45:18','urvashi','2025-10-23 17:45:18',0),(4444,2526,0,0,1346,'2025-10-23','17:45:18',1100,0,'WPRC','WPRC0037','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1440,4,93,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',6,'urvashi','2025-10-23 17:45:18','urvashi','2025-10-23 17:45:18',0),(4445,2526,0,0,1347,'2025-10-23','00:00:00',1101,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1441,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 17:46:53','urvashi','2025-10-23 17:47:17',0),(4446,2526,0,0,1342,'2025-10-23','17:49:24',1096,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1442,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 17:49:24','urvashi','2025-10-23 17:49:24',0),(4447,2526,0,0,1342,'2025-10-23','17:49:24',1096,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1442,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 17:49:24','urvashi','2025-10-23 17:49:24',0),(4448,2526,0,0,1342,'2025-10-23','17:49:24',1096,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1442,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 17:49:24','urvashi','2025-10-23 17:49:24',0),(4449,2526,0,0,1348,'2025-10-23','00:00:00',1102,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 17:56:03','urvashi','2025-10-23 06:26:03',0),(4450,2526,0,0,1296,'2025-10-21','17:57:00',951,81,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',72,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 17:59:08','','0000-00-00 00:00:00',0),(4451,2526,0,0,1296,'2025-10-22','17:57:00',951,81,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',72,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 17:59:08','','0000-00-00 00:00:00',0),(4452,2526,0,0,1296,'2025-10-23','17:57:00',951,81,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',72,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 17:59:08','','0000-00-00 00:00:00',0),(4453,2526,0,0,1298,'2025-10-23','18:00:00',0,82,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 18:00:50','','0000-00-00 00:00:00',0),(4454,2526,0,0,1348,'2025-10-23','18:01:58',1102,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',1443,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:01:58','urvashi','2025-10-23 18:01:58',0),(4455,2526,0,0,1348,'2025-10-23','18:01:58',1102,0,'XRY','XRY0252','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','O',1443,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:01:58','urvashi','2025-10-23 18:01:58',0),(4456,2526,0,0,1348,'2025-10-23','18:01:58',1102,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',1443,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:01:58','urvashi','2025-10-23 18:01:58',0),(4457,2526,0,0,489,'2025-10-22','18:01:00',0,38,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 18:06:12','','0000-00-00 00:00:00',0),(4458,2526,0,0,489,'2025-10-23','18:01:00',0,38,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 18:06:12','','0000-00-00 00:00:00',0),(4459,2526,0,0,489,'2025-10-22','18:02:00',0,38,'WPRC','WPRC0089','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 18:06:12','','0000-00-00 00:00:00',0),(4460,2526,0,0,489,'2025-10-23','18:02:00',0,38,'WPRC','WPRC0089','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 18:06:12','','0000-00-00 00:00:00',0),(4461,2526,0,0,489,'2025-10-22','18:03:00',0,38,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 18:06:12','','0000-00-00 00:00:00',0),(4462,2526,0,0,489,'2025-10-23','18:03:00',0,38,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 18:06:12','','0000-00-00 00:00:00',0),(4463,2526,0,0,1344,'2025-10-23','18:06:41',1098,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1444,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:06:41','urvashi','2025-10-23 18:06:41',0),(4464,2526,0,0,1344,'2025-10-23','18:06:41',1098,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1444,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:06:41','urvashi','2025-10-23 18:06:41',0),(4465,2526,0,0,1343,'2025-10-23','18:08:38',1097,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1445,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:08:38','urvashi','2025-10-23 18:08:38',0),(4466,2526,0,0,1343,'2025-10-23','18:08:38',1097,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1445,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:08:38','urvashi','2025-10-23 18:08:38',0),(4467,2526,0,0,1343,'2025-10-23','18:08:38',1097,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1445,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:08:38','urvashi','2025-10-23 18:08:38',0),(4468,2526,0,0,1294,'2025-10-22','18:07:00',0,79,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,29,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 18:09:41','vishal','2025-10-23 19:51:31',0),(4469,2526,0,0,1294,'2025-10-23','18:07:00',0,79,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,33,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 18:09:41','','0000-00-00 00:00:00',0),(4470,2526,0,0,1294,'2025-10-22','18:08:00',0,79,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,29,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 18:09:41','vishal','2025-10-23 19:50:00',0),(4471,2526,0,0,1294,'2025-10-23','18:08:00',0,79,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,35,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 18:09:41','','0000-00-00 00:00:00',0),(4472,2526,0,0,1347,'2025-10-23','18:24:43',1101,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1446,1,20,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:24:43','urvashi','2025-10-23 18:24:43',0),(4473,2526,0,0,1347,'2025-10-23','18:24:43',1101,0,'NEU1','NEU10020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',1446,2,80,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:24:43','urvashi','2025-10-23 18:24:43',0),(4474,2526,0,0,1349,'2025-10-23','00:00:00',1103,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:39:19','urvashi','2025-10-23 07:09:19',0),(4475,2526,0,0,1349,'2025-10-23','18:41:38',1103,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1447,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:41:38','urvashi','2025-10-23 18:41:38',0),(4476,2526,0,0,1349,'2025-10-23','18:41:38',1103,0,'WPRC','WPRC0037','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1447,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:41:38','urvashi','2025-10-23 18:41:38',0),(4477,2526,0,0,1349,'2025-10-23','18:41:38',1103,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',1447,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:41:38','urvashi','2025-10-23 18:41:38',0),(4478,2526,0,0,1350,'2025-10-23','00:00:00',1104,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:42:53','urvashi','2025-10-23 07:12:53',0),(4479,2526,0,0,1350,'2025-10-23','18:43:36',1104,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',1448,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:43:36','urvashi','2025-10-23 18:43:36',0),(4480,2526,0,0,1350,'2025-10-23','18:43:36',1104,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',1448,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:43:36','urvashi','2025-10-23 18:43:36',0),(4481,2526,0,0,1351,'2025-10-23','00:00:00',835,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1449,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:44:02','urvashi','2025-10-23 18:44:28',0),(4482,2526,0,0,1352,'2025-10-23','00:00:00',1105,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:45:23','urvashi','2025-10-23 07:15:23',0),(4483,2526,0,0,1352,'2025-10-23','18:46:14',1105,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',1450,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:46:14','urvashi','2025-10-23 18:46:14',0),(4484,2526,0,0,1352,'2025-10-23','18:46:14',1105,0,'WPRC','WPRC0042','H','N',4.00,100,400,'P',0,0,0.00,0.00,0.00,400,3,0,0,'',0,0,'','','','','',2526,'H','O',1450,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:46:14','urvashi','2025-10-23 18:46:14',0),(4485,2526,0,0,1353,'2025-10-23','00:00:00',1106,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:47:12','urvashi','2025-10-23 07:17:12',0),(4486,2526,0,0,1353,'2025-10-23','18:48:11',1106,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1451,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',7,'urvashi','2025-10-23 18:48:11','urvashi','2025-10-23 18:48:11',0),(4487,2526,0,0,1353,'2025-10-23','18:48:11',1106,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1451,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',7,'urvashi','2025-10-23 18:48:11','urvashi','2025-10-23 18:48:11',0),(4488,2526,0,0,1353,'2025-10-23','18:48:11',1106,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1451,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',7,'urvashi','2025-10-23 18:48:11','urvashi','2025-10-23 18:48:11',0),(4489,2526,0,0,1353,'2025-10-23','18:48:11',1106,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,39,'',0,0,'','','','','',2526,'H','O',1451,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',7,'urvashi','2025-10-23 18:48:11','urvashi','2025-10-23 18:48:11',0),(4490,2526,0,0,1354,'2025-10-23','00:00:00',1107,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:50:26','urvashi','2025-10-23 07:20:26',0),(4491,2526,0,0,1354,'2025-10-23','18:51:10',1107,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1452,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:51:10','urvashi','2025-10-23 18:51:10',0),(4492,2526,0,0,1354,'2025-10-23','18:51:10',1107,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',1452,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:51:10','urvashi','2025-10-23 18:51:10',0),(4493,2526,0,0,1325,'2025-10-23','18:52:22',118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1453,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:52:22','urvashi','2025-10-23 18:52:22',0),(4494,2526,0,0,1355,'2025-10-23','18:54:04',879,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1454,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:54:04','urvashi','2025-10-23 18:54:04',0),(4495,2526,0,0,1356,'2025-10-23','00:00:00',303,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:54:36','urvashi','2025-10-23 07:24:36',0),(4496,2526,0,0,1356,'2025-10-23','18:54:56',303,0,'MOPR','MOPR0006','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1455,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:54:56','urvashi','2025-10-23 18:54:56',0),(4497,2526,0,0,1357,'2025-10-23','00:00:00',1108,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:55:55','urvashi','2025-10-23 07:25:55',0),(4498,2526,0,0,1357,'2025-10-23','18:56:15',1108,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1456,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:56:15','urvashi','2025-10-23 18:56:15',0),(4499,2526,0,0,1358,'2025-10-23','00:00:00',1109,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 18:57:26','urvashi','2025-10-23 07:27:26',0),(4500,2526,0,0,1358,'2025-10-23','19:00:37',1109,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',1457,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 19:00:37','urvashi','2025-10-23 19:00:37',0),(4501,2526,0,0,1358,'2025-10-23','19:00:37',1109,0,'XRY','XRY0184','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','O',1457,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 19:00:37','urvashi','2025-10-23 19:00:37',0),(4502,2526,0,0,1358,'2025-10-23','19:00:37',1109,0,'XRY','XRY0147','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','O',1457,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 19:00:37','urvashi','2025-10-23 19:00:37',0),(4503,2526,0,0,1358,'2025-10-23','19:00:37',1109,0,'XRY','XRY0102','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','O',1457,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 19:00:37','urvashi','2025-10-23 19:00:37',0),(4504,2526,0,0,1358,'2025-10-23','19:00:37',1109,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',1457,5,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 19:00:37','urvashi','2025-10-23 19:00:37',0),(4505,2526,0,0,1359,'2025-10-23','00:00:00',1110,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 19:08:28','urvashi','2025-10-23 07:38:28',0),(4506,2526,0,0,1359,'2025-10-23','19:09:32',1110,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',1458,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',8,'urvashi','2025-10-23 19:09:32','urvashi','2025-10-23 19:09:32',0),(4507,2526,0,0,1359,'2025-10-23','19:09:32',1110,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',1458,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',8,'urvashi','2025-10-23 19:09:32','urvashi','2025-10-23 19:09:32',0),(4508,2526,0,0,1359,'2025-10-23','19:09:32',1110,0,'OPWD','OPWD0013','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',1458,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',8,'urvashi','2025-10-23 19:09:32','urvashi','2025-10-23 19:09:32',0),(4509,2526,0,0,1359,'2025-10-23','19:09:32',1110,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,40,'',0,0,'','','','','',2526,'H','O',1458,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',8,'urvashi','2025-10-23 19:09:32','urvashi','2025-10-23 19:09:32',0),(4510,2526,0,0,1360,'2025-10-23','00:00:00',1111,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 19:10:49','urvashi','2025-10-23 07:40:49',0),(4511,2526,0,0,1361,'2025-10-23','00:00:00',1112,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 19:13:53','urvashi','2025-10-23 07:43:53',0),(4512,2526,0,0,1361,'2025-10-23','19:15:15',1112,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',1459,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',9,'urvashi','2025-10-23 19:15:15','urvashi','2025-10-23 19:15:15',0),(4513,2526,0,0,1361,'2025-10-23','19:15:15',1112,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',1459,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',9,'urvashi','2025-10-23 19:15:15','urvashi','2025-10-23 19:15:15',0),(4514,2526,0,0,1361,'2025-10-23','19:15:15',1112,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,41,'',0,0,'','','','','',2526,'H','O',1459,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',9,'urvashi','2025-10-23 19:15:15','urvashi','2025-10-23 19:15:15',0),(4515,2526,0,0,1361,'2025-10-23','19:15:15',1112,0,'WPRC','WPRC0049','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',1459,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',9,'urvashi','2025-10-23 19:15:15','urvashi','2025-10-23 19:15:15',0),(4516,2526,0,0,1361,'2025-10-23','19:15:15',1112,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',1459,5,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',9,'urvashi','2025-10-23 19:15:15','urvashi','2025-10-23 19:15:15',0),(4517,2526,0,0,1362,'2025-10-23','19:15:00',0,85,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',70,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 19:30:53','riya','2025-10-25 10:30:29',0),(4518,2526,0,0,1362,'2025-10-23','19:15:00',0,85,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',70,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 19:30:53','riya','2025-10-25 10:30:29',0),(4519,2526,0,0,1362,'2025-10-23','19:15:00',0,85,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',70,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:00:53','riya','2025-10-25 10:30:29',0),(4520,2526,0,0,1362,'2025-10-23','19:15:00',0,85,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',70,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:00:53','riya','2025-10-25 10:30:29',0),(4521,2526,0,0,1362,'2025-10-23','19:15:00',0,85,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',70,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:00:53','riya','2025-10-25 10:30:29',0),(4522,2526,0,0,1362,'2025-10-24','19:15:00',0,85,'DRC','DRC0018','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,70,0,0,'',0,0,'','406','','','',2526,'H','I',70,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:00:53','riya','2025-10-25 10:30:29',0),(4523,2526,0,0,1362,'2025-10-23','19:15:00',0,85,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','406','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:00:53','riya','2025-10-25 10:30:29',0),(4524,2526,0,0,1360,'2025-10-23','19:43:09',1111,0,'XRY','XRY0045','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','O',1460,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-23 19:43:09','urvashi','2025-10-23 19:43:09',0),(4525,2526,0,0,1294,'2025-10-21','19:45:00',0,79,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,22,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 19:49:27','vishal','2025-10-23 19:50:00',0),(4526,2526,0,0,1294,'2025-10-20','19:49:00',0,79,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,37,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 19:50:00','','0000-00-00 00:00:00',0),(4527,2526,0,0,1294,'2025-10-20','19:50:00',0,79,'WPRC','WPRC0090','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',67,38,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 19:51:31','','0000-00-00 00:00:00',0),(4528,2526,0,0,1363,'2025-10-23','20:00:00',0,86,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',88,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 20:20:17','riya','2025-10-25 13:56:11',0),(4529,2526,0,0,1363,'2025-10-23','20:00:00',0,86,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',88,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 20:20:17','riya','2025-10-25 13:56:11',0),(4530,2526,0,0,1363,'2025-10-23','20:00:00',0,86,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:50:17','riya','2025-10-25 13:56:11',0),(4531,2526,0,0,1363,'2025-10-23','20:00:00',0,86,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:50:17','riya','2025-10-25 13:56:11',0),(4532,2526,0,0,1363,'2025-10-23','20:00:00',0,86,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:50:17','riya','2025-10-25 13:56:11',0),(4533,2526,0,0,1363,'2025-10-23','20:00:00',0,86,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','404','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:50:17','riya','2025-10-28 12:24:56',0),(4534,2526,0,0,1363,'2025-10-23','20:00:00',0,86,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','404','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-23 08:50:17','riya','2025-10-28 12:24:56',0),(4535,2526,0,0,1364,'2025-10-24','00:00:00',1113,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-24 08:55:31','urvashi','2025-10-23 21:25:31',0),(4536,2526,0,0,1364,'2025-10-24','08:56:41',1113,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',1461,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-24 08:56:41','urvashi','2025-10-24 08:56:41',0),(4537,2526,0,0,1364,'2025-10-24','08:56:41',1113,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',1461,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-24 08:56:41','urvashi','2025-10-24 08:56:41',0),(4538,2526,0,0,1364,'2025-10-24','08:56:41',1113,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,5,0,0,'',0,0,'','','','','',2526,'H','O',1461,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-24 08:56:41','urvashi','2025-10-24 08:56:41',0),(4539,2526,0,0,1364,'2025-10-24','08:56:41',1113,0,'OPWD','OPWD0013','H','N',4.00,100,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1461,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-24 08:56:41','urvashi','2025-10-24 08:56:41',0),(4540,2526,0,0,1365,'2025-10-24','00:00:00',1114,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-24 08:57:45','urvashi','2025-10-23 21:27:45',0),(4541,2526,0,0,1365,'2025-10-24','08:59:52',1114,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',1462,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-24 08:59:52','urvashi','2025-10-24 08:59:52',0),(4542,2526,0,0,1365,'2025-10-24','08:59:52',1114,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',1462,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-24 08:59:52','urvashi','2025-10-24 08:59:52',0),(4543,2526,0,0,1366,'2025-10-24','00:00:00',1115,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-24 09:01:25','urvashi','2025-10-23 21:31:25',0),(4544,2526,0,0,1366,'2025-10-24','09:02:32',1115,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1463,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-24 09:02:32','urvashi','2025-10-24 09:02:32',0),(4545,2526,0,0,1366,'2025-10-24','09:02:32',1115,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1463,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-24 09:02:32','urvashi','2025-10-24 09:02:32',0),(4546,2526,0,0,1367,'2025-10-24','00:00:00',1116,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1464,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-24 09:03:43','urvashi','2025-10-24 09:04:05',0),(4547,2526,0,0,1368,'2025-10-24','00:00:00',1117,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1465,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-24 09:31:01','reception','2025-10-24 09:31:56',0),(4548,2526,0,0,1369,'2025-10-24','09:30:00',0,87,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',231,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 09:36:43','riya','2025-10-26 10:22:14',0),(4549,2526,0,0,1369,'2025-10-24','09:30:00',0,87,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',231,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 09:36:43','riya','2025-10-26 10:22:14',0),(4550,2526,0,0,1369,'2025-10-24','09:30:00',0,87,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',231,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-23 22:06:43','riya','2025-10-26 10:22:14',0),(4551,2526,0,0,1369,'2025-10-24','09:30:00',0,87,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',231,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-23 22:06:43','riya','2025-10-26 10:22:14',0),(4552,2526,0,0,1369,'2025-10-24','09:30:00',0,87,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',231,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-23 22:06:43','riya','2025-10-26 10:22:14',0),(4553,2526,0,0,1369,'2025-10-24','09:30:00',0,87,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',2526,'H','I',231,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-23 22:06:43','riya','2025-10-26 10:22:14',0),(4554,2526,0,0,1369,'2025-10-24','09:30:00',0,87,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',2526,'H','I',231,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-23 22:06:43','riya','2025-10-26 10:22:14',0),(4555,2526,0,0,1370,'2025-10-24','00:00:00',619,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1466,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 10:06:11','drashti','2025-10-24 10:07:28',0),(4556,2526,0,0,1371,'2025-10-24','00:00:00',1118,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1467,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 10:09:08','drashti','2025-10-24 10:10:58',0),(4557,2526,0,0,1372,'2025-10-24','00:00:00',1119,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1468,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-24 10:14:07','urvashi','2025-10-24 10:14:23',0),(4558,2526,0,0,1373,'2025-10-24','00:00:00',1120,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1469,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 10:15:37','drashti','2025-10-24 10:16:02',0),(4559,2526,0,0,1374,'2025-10-24','00:00:00',1121,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1470,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-24 10:16:06','janvi','2025-10-24 10:17:18',0),(4560,2526,0,0,1375,'2025-10-24','00:00:00',1122,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1471,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 10:26:24','drashti','2025-10-24 10:27:05',0),(4561,2526,0,0,1376,'2025-10-24','00:00:00',1123,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1472,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 10:40:42','drashti','2025-10-24 10:42:04',0),(4562,2526,0,0,1377,'2025-10-24','00:00:00',1124,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1473,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 10:43:17','drashti','2025-10-24 10:44:13',0),(4563,2526,0,0,1378,'2025-10-24','00:00:00',1125,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1474,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-24 10:50:58','manshi','2025-10-24 10:52:05',0),(4564,2526,0,0,1367,'2025-10-24','11:11:46',1116,0,'XRY','XRY0062','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',1475,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 11:11:46','drashti','2025-10-24 11:11:46',0),(4565,2526,0,0,1379,'2025-10-24','00:00:00',859,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1476,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-24 11:12:11','manshi','2025-10-24 11:20:40',0),(4566,2526,0,0,1380,'2025-10-24','00:00:00',1126,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1477,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 11:12:21','priyanshi','2025-10-24 11:12:44',0),(4567,2526,0,0,1381,'2025-10-24','00:00:00',1127,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1478,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 11:17:17','drashti','2025-10-24 11:17:34',0),(4568,2526,0,0,1381,'2025-10-24','11:26:08',1127,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',1480,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 11:26:08','drashti','2025-10-24 11:26:08',0),(4569,2526,0,0,1381,'2025-10-24','11:26:08',1127,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',1480,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 11:26:08','drashti','2025-10-24 11:26:08',0),(4570,2526,0,0,1382,'2025-10-24','00:00:00',1128,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1481,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 11:31:21','priyanshi','2025-10-24 11:31:47',0),(4571,2526,0,0,1339,'2025-10-23','11:31:00',1067,83,'SURG','SURG0014','H','N',1.00,11000,11000,'P',0,0,0.00,0.00,11000.00,11000,3,0,0,'',0,0,'','','','','',2526,'H','I',68,1,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 11:32:36','riya','2025-10-24 11:43:59',0),(4572,2526,0,0,1339,'2025-10-23','11:32:00',1067,83,'SURG','SURG0015','H','N',1.00,3500,3500,'P',0,0,0.00,0.00,3500.00,3500,3,0,0,'',0,0,'','','','','',2526,'H','I',68,2,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 11:32:36','riya','2025-10-24 11:43:59',0),(4573,2526,0,0,1383,'2025-10-24','00:00:00',1129,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1482,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 11:32:56','priyanshi','2025-10-24 11:33:25',0),(4574,2526,0,0,1384,'2025-10-24','00:00:00',340,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1483,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 11:34:19','priyanshi','2025-10-24 11:34:32',0),(4575,2526,0,0,1385,'2025-10-24','00:00:00',1130,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1484,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-24 11:35:30','janvi','2025-10-24 11:36:54',0),(4576,2526,0,0,1341,'2025-10-23','11:35:00',1004,84,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',69,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 11:36:20','','0000-00-00 00:00:00',0),(4577,2526,0,0,1341,'2025-10-24','11:35:00',1004,84,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',69,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 11:36:20','','0000-00-00 00:00:00',0),(4578,2526,0,0,1341,'2025-10-23','11:35:00',1004,84,'SURG','SURG0014','H','N',1.00,14400,14400,'P',0,0,0.00,0.00,14400.00,14400,3,0,0,'',0,0,'','','','','',2526,'H','I',69,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 11:36:20','riya','2025-10-24 11:37:22',0),(4579,2526,0,0,1341,'2025-10-23','11:35:00',1004,84,'SURG','SURG0015','H','N',1.00,4800,4800,'P',0,0,0.00,0.00,4800.00,4800,3,0,0,'',0,0,'','','','','',2526,'H','I',69,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 11:36:20','riya','2025-10-24 11:37:22',0),(4580,2526,0,0,1386,'2025-10-24','00:00:00',1131,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 11:36:44','drashti','2025-10-24 00:06:44',0),(4581,2526,0,0,1387,'2025-10-24','00:00:00',1132,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1485,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 11:39:10','drashti','2025-10-24 11:40:17',0),(4582,2526,0,0,1388,'2025-10-24','11:41:16',116,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1486,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-24 11:41:16','janvi','2025-10-24 11:41:16',0),(4583,2526,0,0,1389,'2025-10-24','00:00:00',131,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1487,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-24 11:41:53','janvi','2025-10-24 11:42:13',0),(4584,2526,0,0,1390,'2025-10-24','11:44:40',1059,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1488,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 11:44:40','priyanshi','2025-10-24 11:44:40',0),(4585,2526,0,0,1391,'2025-10-24','00:00:00',839,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1489,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-24 11:44:48','manshi','2025-10-24 11:46:10',0),(4586,2526,0,0,1392,'2025-10-24','00:00:00',1133,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1490,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 11:50:48','priyanshi','2025-10-24 11:51:17',0),(4587,2526,0,0,1393,'2025-10-24','00:00:00',1134,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1491,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 11:51:59','drashti','2025-10-24 11:53:21',0),(4588,2526,0,0,1394,'2025-10-24','00:00:00',1135,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1492,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 11:58:57','priyanshi','2025-10-24 11:59:29',0),(4589,2526,0,0,1395,'2025-10-24','00:00:00',1136,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1493,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 12:04:22','priyanshi','2025-10-24 12:04:54',0),(4590,2526,0,0,1396,'2025-10-24','00:00:00',1137,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1494,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 12:06:31','priyanshi','2025-10-24 12:06:45',0),(4591,2526,0,0,1383,'2025-10-24','12:07:58',1129,0,'NEU1','NEU10020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',1495,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 12:07:58','priyanshi','2025-10-24 12:07:58',0),(4592,2526,0,0,1385,'2025-10-24','12:23:02',1130,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1496,1,21,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 12:23:02','priyanshi','2025-10-24 12:23:02',0),(4593,2526,0,0,1385,'2025-10-24','12:23:02',1130,0,'NEU1','NEU10019','H','N',1.00,1800,1800,'P',0,0,0.00,0.00,0.00,1800,9999,0,0,'',0,0,'','','','','',2526,'H','O',1496,2,75,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 12:23:02','priyanshi','2025-10-24 12:23:02',0),(4594,2526,0,0,1385,'2025-10-24','12:23:02',1130,0,'NEU1','NEU10017','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1496,3,104,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 12:23:02','priyanshi','2025-10-24 12:23:02',0),(4595,2526,0,0,1397,'2025-10-24','12:24:17',118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1497,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-24 12:24:17','janvi','2025-10-24 12:24:17',0),(4596,2526,0,0,1398,'2025-10-24','12:26:06',118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1498,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 12:26:06','drashti','2025-10-24 12:26:06',0),(4597,2526,0,0,1399,'2025-10-24','00:00:00',1138,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1499,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 12:34:02','drashti','2025-10-24 12:35:05',0),(4598,2526,0,0,1400,'2025-10-24','00:00:00',1139,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1500,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 12:36:37','drashti','2025-10-24 12:37:11',0),(4599,2526,0,0,1394,'2025-10-24','12:38:59',1135,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1501,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 12:38:59','priyanshi','2025-10-24 12:38:59',0),(4600,2526,0,0,1394,'2025-10-24','12:38:59',1135,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1501,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 12:38:59','priyanshi','2025-10-24 12:38:59',0),(4601,2526,0,0,1394,'2025-10-24','12:38:59',1135,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1501,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 12:38:59','priyanshi','2025-10-24 12:38:59',0),(4602,2526,0,0,1395,'2025-10-24','12:41:08',1136,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1502,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 12:41:08','priyanshi','2025-10-24 12:41:08',0),(4603,2526,0,0,1395,'2025-10-24','12:41:08',1136,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1502,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 12:41:08','priyanshi','2025-10-24 12:41:08',0),(4604,2526,0,0,1401,'2025-10-24','00:00:00',424,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1503,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-24 13:14:57','priyanshi','2025-10-24 13:15:59',0),(4605,2526,0,0,1402,'2025-10-24','00:00:00',1140,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 13:48:32','drashti','2025-10-24 02:18:32',0),(4606,2526,0,0,1405,'2025-10-24','14:47:00',1140,88,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',71,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 14:48:00','riya','2025-10-24 17:53:26',0),(4607,2526,0,0,1405,'2025-10-24','14:47:00',1140,88,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',71,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 14:48:00','riya','2025-10-24 17:53:26',0),(4608,2526,0,0,1405,'2025-10-24','14:47:00',1140,88,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-24 03:18:00','riya','2025-10-24 17:53:26',0),(4609,2526,0,0,1405,'2025-10-24','14:47:00',1140,88,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-24 03:18:00','riya','2025-10-24 17:53:26',0),(4610,2526,0,0,1405,'2025-10-24','14:47:00',1140,88,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-24 03:18:00','riya','2025-10-24 17:53:26',0),(4611,2526,0,0,1405,'2025-10-24','14:47:00',1140,88,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-24 03:18:00','riya','2025-10-24 17:53:26',0),(4612,2526,0,0,1405,'2025-10-24','14:47:00',1140,88,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-24 03:18:00','riya','2025-10-24 17:53:26',0),(4613,2526,0,0,1406,'2025-10-24','00:00:00',1141,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1504,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 16:35:58','drashti','2025-10-24 16:37:45',0),(4614,2526,0,0,1407,'2025-10-24','00:00:00',1142,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 16:44:20','drashti','2025-10-24 05:14:20',0),(4615,2526,0,0,1407,'2025-10-24','16:45:46',1142,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',1505,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 16:45:46','drashti','2025-10-24 16:45:46',0),(4616,2526,0,0,1408,'2025-10-24','00:00:00',1143,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1506,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-24 16:49:27','reception','2025-10-24 16:50:20',0),(4617,2526,0,0,1409,'2025-10-24','00:00:00',1144,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1507,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-24 17:01:57','reception','2025-10-24 17:03:06',0),(4618,2526,0,0,1411,'2025-10-24','17:05:13',575,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1508,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 17:05:13','drashti','2025-10-24 17:05:13',0),(4619,2526,0,0,1412,'2025-10-24','00:00:00',39,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1509,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-24 17:07:30','reception','2025-10-24 17:07:52',0),(4620,2526,0,0,1408,'2025-10-24','17:31:30',1143,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1510,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-24 17:31:30','reception','2025-10-24 17:31:30',0),(4621,2526,0,0,1408,'2025-10-24','17:31:30',1143,0,'NEU1','NEU10020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1510,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-24 17:31:30','reception','2025-10-24 17:31:30',0),(4622,2526,0,0,1413,'2025-10-24','00:00:00',305,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 17:44:38','drashti','2025-10-24 06:14:38',0),(4623,2526,0,0,1414,'2025-10-24','00:00:00',1145,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1512,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-24 17:44:57','janvi','2025-10-24 17:45:23',0),(4624,2526,0,0,1413,'2025-10-24','17:45:02',305,0,'OPWD','OPWD0007','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1511,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 17:45:02','drashti','2025-10-24 17:45:02',0),(4625,2526,0,0,1415,'2025-10-24','00:00:00',1146,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',1513,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-24 17:46:16','reception','2025-10-24 17:48:55',0),(4626,2526,0,0,1405,'2025-10-24','17:52:00',1140,88,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 17:53:26','riya','2025-10-24 23:54:00',0),(4627,2526,0,0,1405,'2025-10-24','17:52:00',1140,88,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 17:53:26','riya','2025-10-24 23:54:00',0),(4628,2526,0,0,1405,'2025-10-24','17:52:00',1140,88,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 17:53:26','riya','2025-10-24 23:54:00',0),(4629,2526,0,0,1405,'2025-10-24','17:53:00',1140,88,'ROOM','ROOM0006','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',2526,'H','I',71,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 17:53:26','','0000-00-00 00:00:00',0),(4630,2526,0,0,1416,'2025-10-24','00:00:00',1147,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1514,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-24 18:00:37','reception','2025-10-24 18:01:03',0),(4631,2526,0,0,1147,'2025-10-24','15:00:00',0,70,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 06:30:54','riya','2025-10-24 18:04:59',0),(4632,2526,0,0,1147,'2025-10-24','15:00:00',0,70,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 06:30:54','riya','2025-10-24 18:04:59',0),(4633,2526,0,0,1147,'2025-10-24','15:00:00',0,70,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 06:30:54','riya','2025-10-24 18:04:59',0),(4634,2526,0,0,1147,'2025-10-24','15:00:00',0,70,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 06:30:54','vishal','2025-10-25 13:36:06',0),(4635,2526,0,0,1147,'2025-10-24','15:00:00',0,70,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','401','','','',2526,'H','I',73,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 06:30:54','vishal','2025-10-25 13:36:06',0),(4636,2526,0,0,1415,'2025-10-24','18:04:25',1146,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1515,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-24 18:04:25','reception','2025-10-24 18:04:25',0),(4637,2526,0,0,1417,'2025-10-24','00:00:00',1148,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1516,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-24 18:06:51','janvi','2025-10-24 18:07:53',0),(4638,2526,0,0,1418,'2025-10-24','00:00:00',1149,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1517,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 18:07:39','drashti','2025-10-24 18:08:38',0),(4639,2526,0,0,1419,'2025-10-24','00:00:00',1150,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1520,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-24 18:09:05','janvi','2025-10-24 18:11:19',0),(4640,2526,0,0,1421,'2025-10-24','00:00:00',270,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1519,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 18:09:50','drashti','2025-10-24 18:10:56',0),(4641,2526,0,0,1420,'2025-10-24','18:10:48',1089,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1518,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-24 18:10:48','janvi','2025-10-24 19:07:34',0),(4642,2526,0,0,1422,'2025-10-24','00:00:00',1151,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1522,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 18:11:55','drashti','2025-10-24 18:13:10',0),(4643,2526,0,0,1423,'2025-10-24','00:00:00',362,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1521,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-24 18:12:12','reception','2025-10-24 18:12:35',0),(4644,2526,0,0,1424,'2025-10-24','00:00:00',1152,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1523,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 18:14:12','drashti','2025-10-24 18:15:56',0),(4645,2526,0,0,1425,'2025-10-24','00:00:00',983,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 18:20:04','drashti','2025-10-24 06:50:04',0),(4646,2526,0,0,1426,'2025-10-24','00:00:00',1153,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1524,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-24 18:24:23','reception','2025-10-24 18:25:00',0),(4647,2526,0,0,1427,'2025-10-24','00:00:00',1154,0,'PKG','CASE','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,0.00,1000,2,0,0,'',0,0,'','','','','',2526,'H','O',1533,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-24 18:38:01','reception','2025-10-24 19:19:15',0),(4648,2526,0,0,1428,'2025-10-24','00:00:00',1155,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 18:43:51','drashti','2025-10-24 07:13:51',0),(4649,2526,0,0,1429,'2025-10-24','00:00:00',1156,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1526,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-24 18:46:23','reception','2025-10-24 18:48:53',0),(4650,2526,0,0,1430,'2025-10-24','00:00:00',1157,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1525,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 18:47:12','drashti','2025-10-24 18:48:44',0),(4651,2526,0,0,1429,'2025-10-24','18:48:53',1156,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1526,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-10-24 18:48:53','reception','2025-10-24 18:48:53',0),(4652,2526,0,0,1429,'2025-10-24','18:48:53',1156,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,42,'',0,0,'','','','','',2526,'H','O',1526,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-10-24 18:48:53','reception','2025-10-24 18:48:53',0),(4653,2526,0,0,1431,'2025-10-24','00:00:00',1158,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1527,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 18:51:03','drashti','2025-10-24 18:51:56',0),(4654,2526,0,0,1298,'2025-10-22','22:40:00',0,82,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:26:40','riya','2025-10-24 19:15:33',0),(4655,2526,0,0,1298,'2025-10-22','22:40:00',0,82,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:26:40','riya','2025-10-24 19:15:33',0),(4656,2526,0,0,1298,'2025-10-22','22:40:00',0,82,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:26:40','riya','2025-10-24 19:15:33',0),(4657,2526,0,0,1298,'2025-10-22','22:40:00',0,82,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:26:40','riya','2025-10-24 19:15:33',0),(4658,2526,0,0,1298,'2025-10-22','22:40:00',0,82,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:26:40','riya','2025-10-24 19:15:33',0),(4659,2526,0,0,1298,'2025-10-24','12:05:00',0,82,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:31:36','riya','2025-10-24 19:15:33',0),(4660,2526,0,0,1298,'2025-10-24','12:05:00',0,82,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:31:36','riya','2025-10-24 19:15:33',0),(4661,2526,0,0,1298,'2025-10-24','12:05:00',0,82,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:31:36','riya','2025-10-24 19:15:33',0),(4662,2526,0,0,1298,'2025-10-24','12:05:00',0,82,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:31:36','riya','2025-10-24 19:15:33',0),(4663,2526,0,0,1298,'2025-10-24','12:05:00',0,82,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:31:36','riya','2025-10-24 19:15:33',0),(4664,2526,0,0,1430,'2025-10-24','19:03:31',1157,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',1528,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 19:03:31','drashti','2025-10-24 19:03:31',0),(4665,2526,0,0,1432,'2025-10-24','00:00:00',1159,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1529,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 19:05:09','drashti','2025-10-24 19:06:01',0),(4666,2526,0,0,1433,'2025-10-24','00:00:00',1160,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1531,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 19:08:03','drashti','2025-10-24 19:09:05',0),(4667,2526,0,0,1420,'2025-10-24','19:10:20',1089,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1532,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-24 19:10:20','reception','2025-10-24 19:10:20',0),(4668,2526,0,0,1420,'2025-10-24','19:10:20',1089,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1532,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-24 19:10:20','reception','2025-10-24 19:10:20',0),(4669,2526,0,0,1420,'2025-10-24','19:10:20',1089,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1532,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-24 19:10:20','reception','2025-10-24 19:10:20',0),(4670,2526,0,0,1298,'2025-10-23','19:04:00',0,82,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 19:15:33','','0000-00-00 00:00:00',0),(4671,2526,0,0,1298,'2025-10-24','19:06:00',0,82,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 19:15:33','','0000-00-00 00:00:00',0),(4672,2526,0,0,1298,'2025-10-24','19:07:00',0,82,'USG','USG0095','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 19:15:33','riya','2025-10-28 13:17:48',0),(4673,2526,0,0,1298,'2025-10-23','19:15:00',0,82,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 19:17:26','','0000-00-00 00:00:00',0),(4674,2526,0,0,1298,'2025-10-24','19:16:00',0,82,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 19:17:26','','0000-00-00 00:00:00',0),(4675,2526,0,0,1434,'2025-10-24','19:18:00',1002,89,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',75,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 19:18:55','riya','2025-10-25 13:59:09',0),(4676,2526,0,0,1434,'2025-10-24','19:18:00',1002,89,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',75,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 19:18:55','riya','2025-10-25 13:59:09',0),(4677,2526,0,0,1434,'2025-10-24','19:18:00',1002,89,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',75,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:48:55','riya','2025-10-25 13:59:09',0),(4678,2526,0,0,1434,'2025-10-24','19:18:00',1002,89,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',75,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:48:55','riya','2025-10-25 13:59:09',0),(4679,2526,0,0,1434,'2025-10-24','19:18:00',1002,89,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',75,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:48:55','riya','2025-10-25 13:59:09',0),(4680,2526,0,0,1434,'2025-10-24','19:18:00',1002,89,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:48:55','riya','2025-10-25 13:59:09',0),(4681,2526,0,0,1434,'2025-10-24','19:18:00',1002,89,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','410','','','',2526,'H','I',75,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:48:55','riya','2025-10-25 13:59:09',0),(4682,2526,0,0,1427,'2025-10-24','19:19:15',1154,0,'WPRC','WPRC0046','H','N',1.00,1700,1700,'P',0,0,0.00,0.00,0.00,1700,2,0,0,'',0,0,'','','','','',2526,'H','O',1533,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-24 19:19:15','reception','2025-10-24 19:19:15',0),(4683,2526,0,0,1431,'2025-10-24','19:21:34',1158,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',1534,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-24 19:21:34','drashti','2025-10-24 19:21:34',0),(4684,2526,0,0,1435,'2025-10-24','00:00:00',1161,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1535,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-24 19:26:43','janvi','2025-10-24 19:27:17',0),(4685,2526,0,0,414,'2025-10-24','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:59:41','riya','2025-10-24 19:34:14',0),(4686,2526,0,0,414,'2025-10-24','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:59:41','riya','2025-10-24 19:34:14',0),(4687,2526,0,0,414,'2025-10-24','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:59:41','riya','2025-10-24 19:34:14',0),(4688,2526,0,0,414,'2025-10-24','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:59:41','riya','2025-10-25 11:20:13',0),(4689,2526,0,0,414,'2025-10-24','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 07:59:41','riya','2025-10-25 11:28:26',0),(4690,2526,0,0,414,'2025-10-24','19:31:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 19:34:14','riya','2025-10-25 11:28:26',0),(4691,2526,0,0,414,'2025-10-24','19:33:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 19:34:14','riya','2025-10-25 11:28:26',0),(4692,2526,0,0,1436,'2025-10-24','00:00:00',1162,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1536,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-24 19:47:46','janvi','2025-10-24 19:50:52',0),(4693,2526,0,0,1437,'2025-10-24','19:47:00',1134,90,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',79,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 19:49:15','riya','2025-10-25 13:57:59',0),(4694,2526,0,0,1437,'2025-10-24','19:47:00',1134,90,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',79,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 19:49:15','riya','2025-10-25 13:57:59',0),(4695,2526,0,0,1437,'2025-10-24','19:47:00',1134,90,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',79,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 08:19:15','riya','2025-10-25 13:57:59',0),(4696,2526,0,0,1437,'2025-10-24','19:47:00',1134,90,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',79,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 08:19:15','riya','2025-10-25 13:57:59',0),(4697,2526,0,0,1437,'2025-10-24','19:47:00',1134,90,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',79,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 08:19:15','riya','2025-10-25 13:57:59',0),(4698,2526,0,0,1437,'2025-10-25','19:47:00',1134,90,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','411','','','',2526,'H','I',79,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 08:19:15','riya','2025-10-27 18:11:45',0),(4699,2526,0,0,1437,'2025-10-25','19:47:00',1134,90,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','411','','','',2526,'H','I',79,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 08:19:15','vishal','2025-10-27 18:29:05',0),(4700,2526,0,0,414,'2025-10-24','20:00:00',0,25,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,2,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 20:01:17','','0000-00-00 00:00:00',0),(4701,2526,0,0,1438,'2025-10-24','20:16:00',1139,91,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 20:17:57','riya','2025-10-25 14:21:27',0),(4702,2526,0,0,1438,'2025-10-24','20:16:00',1139,91,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 20:17:57','riya','2025-10-25 14:21:27',0),(4703,2526,0,0,1438,'2025-10-24','20:16:00',1139,91,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 08:47:58','riya','2025-10-25 14:21:27',0),(4704,2526,0,0,1438,'2025-10-24','20:16:00',1139,91,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 08:47:58','riya','2025-10-25 14:21:27',0),(4705,2526,0,0,1438,'2025-10-24','20:16:00',1139,91,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 08:47:58','riya','2025-10-25 14:21:27',0),(4706,2526,0,0,1438,'2025-10-24','20:16:00',1139,91,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-24 08:47:58','riya','2025-10-25 14:21:27',0),(4707,2526,0,0,1438,'2025-10-24','20:16:00',1139,91,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','304','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 08:47:58','riya','2025-10-25 14:21:27',0),(4708,2526,0,0,1436,'2025-10-24','20:40:20',1162,0,'WPRC','WPRC0046','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,3,0,0,'',0,0,'','','','','',2526,'H','O',1537,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-24 20:40:20','manshi','2025-10-24 20:40:20',0),(4709,2526,0,0,1405,'2025-10-24','23:10:00',1140,88,'DRC','DRC0021','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',71,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 23:14:49','','0000-00-00 00:00:00',0),(4710,2526,0,0,1405,'2025-10-24','23:11:00',1140,88,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,84,0,0,'',0,0,'','','','','',2526,'H','I',71,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 23:14:49','','0000-00-00 00:00:00',0),(4711,2526,0,0,1405,'2025-10-24','23:53:00',1140,88,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 23:54:00','vishal','2025-10-25 12:47:37',0),(4712,2526,0,0,1405,'2025-10-24','23:53:00',1140,88,'CARE','CARE0004','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 23:54:00','vishal','2025-10-25 12:47:37',0),(4713,2526,0,0,1405,'2025-10-24','23:53:00',1140,88,'CARE','CARE0003','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 23:54:00','vishal','2025-10-25 12:47:37',0),(4714,2526,0,0,1439,'2025-10-25','00:00:00',1163,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-25 09:00:13','priyanshi','2025-10-24 21:30:13',0),(4715,2526,0,0,1439,'2025-10-25','09:00:52',1163,0,'OTCG','OTCG0033','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',1538,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-25 09:00:52','priyanshi','2025-10-25 09:00:52',0),(4716,2526,0,0,1439,'2025-10-25','09:00:52',1163,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',1538,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-25 09:00:52','priyanshi','2025-10-25 09:00:52',0),(4717,2526,0,0,1440,'2025-10-25','00:00:00',135,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-25 09:01:43','priyanshi','2025-10-24 21:31:43',0),(4718,2526,0,0,1440,'2025-10-25','09:02:04',135,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',1539,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-25 09:02:04','priyanshi','2025-10-25 09:02:04',0),(4719,2526,0,0,1441,'2025-10-25','00:00:00',1164,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-25 09:03:05','priyanshi','2025-10-24 21:33:05',0),(4720,2526,0,0,1441,'2025-10-25','09:04:17',1164,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1540,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-25 09:04:17','priyanshi','2025-10-25 09:04:17',0),(4721,2526,0,0,1441,'2025-10-25','09:04:17',1164,0,'WPRC','WPRC0049','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',1540,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-25 09:04:17','priyanshi','2025-10-25 09:04:17',0),(4722,2526,0,0,1442,'2025-10-25','00:00:00',1165,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-25 09:05:53','priyanshi','2025-10-24 21:35:53',0),(4723,2526,0,0,1442,'2025-10-25','09:07:36',1165,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1541,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-25 09:07:36','priyanshi','2025-10-25 09:07:36',0),(4724,2526,0,0,1442,'2025-10-25','09:07:36',1165,0,'OPWD','OPWD0015','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,4,0,0,'',0,0,'','','','','',2526,'H','O',1541,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-25 09:07:36','priyanshi','2025-10-25 09:07:36',0),(4725,2526,0,0,1442,'2025-10-25','09:07:36',1165,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',1541,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-25 09:07:36','priyanshi','2025-10-25 09:07:36',0),(4726,2526,0,0,1443,'2025-10-25','09:37:00',1149,92,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',232,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 09:39:47','riya','2025-10-27 15:21:49',0),(4727,2526,0,0,1443,'2025-10-25','09:37:00',1149,92,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',232,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 09:39:47','riya','2025-10-27 15:21:49',0),(4728,2526,0,0,1443,'2025-10-25','09:37:00',1149,92,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',232,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 22:09:48','riya','2025-10-27 15:21:49',0),(4729,2526,0,0,1443,'2025-10-25','09:37:00',1149,92,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',232,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 22:09:48','riya','2025-10-27 15:21:49',0),(4730,2526,0,0,1443,'2025-10-25','09:37:00',1149,92,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',232,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 22:09:48','riya','2025-10-27 15:21:49',0),(4731,2526,0,0,1443,'2025-10-25','09:37:00',1149,92,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',2526,'H','I',232,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 22:09:48','riya','2025-10-27 15:21:49',0),(4732,2526,0,0,1443,'2025-10-25','09:37:00',1149,92,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',2526,'H','I',232,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 22:09:48','riya','2025-10-27 15:21:49',0),(4733,2526,0,0,1444,'2025-10-25','00:00:00',1166,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1542,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-25 09:44:58','priyanshi','2025-10-25 09:47:39',0),(4734,2526,0,0,1444,'2025-10-25','09:47:39',1166,0,'XRY','XRY0151','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',1542,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-25 09:47:39','priyanshi','2025-10-25 09:47:39',0),(4735,2526,0,0,1445,'2025-10-25','00:00:00',1167,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1543,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 09:48:57','reception','2025-10-25 09:49:56',0),(4736,2526,0,0,1446,'2025-10-25','00:00:00',1168,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1544,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 09:50:53','reception','2025-10-25 09:51:16',0),(4737,2526,0,0,1447,'2025-10-25','00:00:00',1169,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1545,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 09:56:14','reception','2025-10-25 09:56:49',0),(4738,2526,0,0,1448,'2025-10-25','00:00:00',1170,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1546,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 10:01:04','reception','2025-10-25 10:01:25',0),(4739,2526,0,0,1449,'2025-10-25','00:00:00',1171,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1547,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-25 10:02:44','priyanshi','2025-10-25 10:03:21',0),(4740,2526,0,0,1450,'2025-10-25','00:00:00',1172,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1548,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-25 10:08:17','manshi','2025-10-25 10:08:30',0),(4741,2526,0,0,1451,'2025-10-25','00:00:00',1173,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1549,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 10:16:58','reception','2025-10-25 10:17:42',0),(4742,2526,0,0,1362,'2025-10-24','19:15:00',0,85,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',70,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 22:49:13','riya','2025-10-25 10:30:29',0),(4743,2526,0,0,1362,'2025-10-24','19:15:00',0,85,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',70,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 22:49:13','riya','2025-10-25 10:30:29',0),(4744,2526,0,0,1362,'2025-10-24','19:15:00',0,85,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',70,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 22:49:13','riya','2025-10-25 10:30:29',0),(4745,2526,0,0,1362,'2025-10-25','19:15:00',0,85,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,70,0,0,'',0,0,'','408','','','',2526,'H','I',70,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 22:49:13','riya','2025-10-25 10:30:29',0),(4746,2526,0,0,1362,'2025-10-24','19:15:00',0,85,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-24 22:49:13','riya','2025-10-25 10:30:29',0),(4747,2526,0,0,1298,'2025-10-25','00:05:00',0,82,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 22:56:12','riya','2025-10-25 10:26:51',0),(4748,2526,0,0,1298,'2025-10-25','00:05:00',0,82,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 22:56:12','riya','2025-10-25 10:26:51',0),(4749,2526,0,0,1298,'2025-10-25','00:05:00',0,82,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 22:56:12','riya','2025-10-25 10:26:51',0),(4750,2526,0,0,1298,'2025-10-25','00:05:00',0,82,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 22:56:12','riya','2025-10-25 10:26:51',0),(4751,2526,0,0,1298,'2025-10-25','00:05:00',0,82,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 22:56:12','riya','2025-10-25 10:26:51',0),(4752,2526,0,0,1362,'2025-10-23','10:19:00',0,85,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',70,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 10:30:29','','0000-00-00 00:00:00',0),(4753,2526,0,0,1362,'2025-10-23','10:19:00',0,85,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',70,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 10:30:29','','0000-00-00 00:00:00',0),(4754,2526,0,0,1362,'2025-10-24','10:19:00',0,85,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',70,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 10:30:29','','0000-00-00 00:00:00',0),(4755,2526,0,0,1362,'2025-10-24','10:19:00',0,85,'XRY','XRY0045','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',70,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 10:30:29','','0000-00-00 00:00:00',0),(4756,2526,0,0,1362,'2025-10-24','10:28:00',0,85,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',70,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 10:30:29','','0000-00-00 00:00:00',0),(4757,2526,0,0,1362,'2025-10-24','10:28:00',0,85,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',70,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 10:30:29','','0000-00-00 00:00:00',0),(4758,2526,0,0,1362,'2025-10-25','10:29:00',0,85,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',70,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 10:30:29','','0000-00-00 00:00:00',0),(4759,2526,0,0,1452,'2025-10-25','00:00:00',1174,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1550,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 10:32:48','reception','2025-10-25 10:33:43',0),(4760,2526,0,0,1453,'2025-10-25','00:00:00',1175,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1551,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-25 10:44:48','priyanshi','2025-10-25 10:46:18',0),(4761,2526,0,0,1446,'2025-10-25','10:51:01',1168,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1552,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 10:51:01','reception','2025-10-25 10:51:01',0),(4762,2526,0,0,1446,'2025-10-25','10:51:01',1168,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1552,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 10:51:01','reception','2025-10-25 10:51:01',0),(4763,2526,0,0,1454,'2025-10-25','00:00:00',1176,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1554,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 10:59:37','drashti','2025-10-25 11:00:25',0),(4764,2526,0,0,1455,'2025-10-25','00:00:00',1177,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1553,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 10:59:42','reception','2025-10-25 11:00:07',0),(4765,2526,0,0,414,'2025-10-25','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 23:33:40','riya','2025-10-25 11:28:26',0),(4766,2526,0,0,414,'2025-10-25','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 23:33:40','riya','2025-10-25 11:28:26',0),(4767,2526,0,0,414,'2025-10-25','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 23:33:40','riya','2025-10-25 11:28:26',0),(4768,2526,0,0,414,'2025-10-25','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 23:33:40','riya','2025-10-25 11:28:26',0),(4769,2526,0,0,414,'2025-10-25','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-24 23:33:40','riya','2025-10-25 11:28:26',0),(4770,2526,0,0,1456,'2025-10-25','00:00:00',1178,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1556,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-25 11:04:00','manshi','2025-10-25 11:04:33',0),(4771,2526,0,0,1447,'2025-10-25','11:04:24',1169,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1555,1,71,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 11:04:24','reception','2025-10-25 11:04:24',0),(4772,2526,0,0,1447,'2025-10-25','11:04:24',1169,0,'NEU1','NEU10019','H','N',1.00,1800,1800,'P',0,0,0.00,0.00,0.00,1800,9999,0,0,'',0,0,'','','','','',2526,'H','O',1555,2,257,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 11:04:24','reception','2025-10-25 11:04:24',0),(4773,2526,0,0,1447,'2025-10-25','11:04:24',1169,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1555,3,357,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 11:04:24','reception','2025-10-25 11:04:24',0),(4774,2526,0,0,1447,'2025-10-25','11:04:24',1169,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1555,4,314,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 11:04:24','reception','2025-10-25 11:04:24',0),(4775,2526,0,0,1457,'2025-10-25','00:00:00',1179,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',1557,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-25 11:05:28','priyanshi','2025-10-25 11:07:04',0),(4776,2526,0,0,1458,'2025-10-25','00:00:00',1180,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 11:08:54','drashti','2025-10-24 23:38:54',0),(4777,2526,0,0,1458,'2025-10-25','11:16:11',1180,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',1558,1,154,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 11:16:11','drashti','2025-10-25 11:16:11',0),(4778,2526,0,0,1458,'2025-10-25','11:16:11',1180,0,'OPWD','OPWD0019','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',1558,2,19,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 11:16:11','drashti','2025-10-25 11:16:11',0),(4779,2526,0,0,1458,'2025-10-25','11:16:11',1180,0,'OPWD','OPWD0016','H','N',2.00,500,1000,'P',0,0,0.00,0.00,0.00,1000,5,0,0,'',0,0,'','','','','',2526,'H','O',1558,3,192,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 11:16:11','drashti','2025-10-25 11:16:11',0),(4780,2526,0,0,1458,'2025-10-25','11:16:11',1180,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',1558,4,38,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 11:16:11','drashti','2025-10-25 11:16:11',0),(4781,2526,0,0,1458,'2025-10-25','11:16:11',1180,0,'OPHP','OPHP0022','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,5,0,0,'',0,0,'','','','','',2526,'H','O',1558,5,96,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 11:16:11','drashti','2025-10-25 11:16:11',0),(4782,2526,0,0,1459,'2025-10-25','00:00:00',1181,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1559,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 11:19:32','reception','2025-10-25 11:20:53',0),(4783,2526,0,0,414,'2025-10-25','11:06:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 11:20:13','','0000-00-00 00:00:00',0),(4784,2526,0,0,414,'2025-10-24','11:08:00',0,25,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 11:20:13','','0000-00-00 00:00:00',0),(4785,2526,0,0,414,'2025-10-24','11:10:00',0,25,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 11:20:13','','0000-00-00 00:00:00',0),(4786,2526,0,0,414,'2025-10-25','11:10:00',0,25,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 11:20:13','','0000-00-00 00:00:00',0),(4787,2526,0,0,414,'2025-10-25','11:10:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 11:20:13','','0000-00-00 00:00:00',0),(4788,2526,0,0,414,'2025-10-24','11:11:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 11:20:13','riya','2025-10-25 11:28:26',0),(4789,2526,0,0,414,'2025-10-25','11:11:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 11:20:13','','0000-00-00 00:00:00',0),(4790,2526,0,0,414,'2025-10-24','11:11:00',0,25,'WPRC','WPRC0101','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 11:20:13','riya','2025-10-25 11:28:26',0),(4791,2526,0,0,414,'2025-10-25','11:12:00',0,25,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 11:20:13','','0000-00-00 00:00:00',0),(4792,2526,0,0,414,'2025-10-13','11:14:00',0,25,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 11:20:13','','0000-00-00 00:00:00',0),(4793,2526,0,0,414,'2025-10-24','11:15:00',0,25,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 11:20:13','riya','2025-10-25 11:28:26',0),(4794,2526,0,0,1460,'2025-10-25','00:00:00',1182,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1560,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 11:20:44','drashti','2025-10-25 11:23:54',0),(4795,2526,0,0,1461,'2025-10-25','00:00:00',1183,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1561,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 11:23:02','reception','2025-10-25 11:23:54',0),(4796,2526,0,0,1462,'2025-10-25','00:00:00',1184,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1562,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 11:24:45','drashti','2025-10-25 11:25:33',0),(4797,2526,0,0,1463,'2025-10-25','00:00:00',1185,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1563,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 11:25:53','reception','2025-10-25 11:26:34',0),(4798,2526,0,0,1464,'2025-10-25','00:00:00',1186,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1564,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-25 11:27:01','janvi','2025-10-25 11:28:15',0),(4799,2526,0,0,1465,'2025-10-25','00:00:00',1187,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1570,1,200,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 11:29:04','drashti','2025-10-25 11:45:08',0),(4800,2526,0,0,1453,'2025-10-25','11:35:54',1175,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1565,1,75,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 11:35:54','reception','2025-10-25 11:35:54',0),(4801,2526,0,0,1453,'2025-10-25','11:35:54',1175,0,'NEU1','NEU10019','H','N',1.00,2300,2300,'P',0,0,0.00,0.00,0.00,2300,9999,0,0,'',0,0,'','','','','',2526,'H','O',1565,2,347,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 11:35:54','reception','2025-10-25 11:35:54',0),(4802,2526,0,0,1453,'2025-10-25','11:35:54',1175,0,'NEU1','NEU10017','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1565,3,377,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 11:35:54','reception','2025-10-25 11:35:54',0),(4803,2526,0,0,1466,'2025-10-25','00:00:00',1188,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1567,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 11:40:48','reception','2025-10-25 11:41:56',0),(4804,2526,0,0,1459,'2025-10-25','11:41:00',1181,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',1566,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-25 11:41:00','janvi','2025-10-25 11:41:00',0),(4805,2526,0,0,1467,'2025-10-25','00:00:00',1189,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1568,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-25 11:43:07','janvi','2025-10-25 11:43:50',0),(4806,2526,0,0,1468,'2025-10-25','00:00:00',1190,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1569,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 11:43:20','reception','2025-10-25 11:44:02',0),(4807,2526,0,0,1469,'2025-10-25','00:00:00',1191,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1571,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-25 11:45:06','janvi','2025-10-25 11:45:59',0),(4808,2526,0,0,1470,'2025-10-25','00:00:00',1192,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',1573,1,700,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 11:45:56','reception','2025-10-25 11:47:26',0),(4809,2526,0,0,1460,'2025-10-25','11:47:09',1182,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',1572,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 11:47:08','drashti','2025-10-25 11:47:08',0),(4810,2526,0,0,1470,'2025-10-25','11:47:26',1192,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1573,2,500,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 11:47:26','reception','2025-10-25 11:47:26',0),(4811,2526,0,0,1450,'2025-10-25','11:49:36',1172,0,'XRY','XRY0390','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',1574,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-25 11:49:36','manshi','2025-10-25 11:49:36',0),(4812,2526,0,0,1456,'2025-10-25','11:52:07',1178,0,'XRY','XRY0223','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',1575,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-25 11:52:07','manshi','2025-10-25 11:52:07',0),(4813,2526,0,0,1456,'2025-10-25','11:52:07',1178,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',1575,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-25 11:52:07','manshi','2025-10-25 11:52:07',0),(4814,2526,0,0,1471,'2025-10-25','00:00:00',1193,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1576,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-25 11:52:17','janvi','2025-10-25 11:53:47',0),(4815,2526,0,0,1147,'2025-10-20','11:51:00',0,70,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',73,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 12:01:57','','0000-00-00 00:00:00',0),(4816,2526,0,0,1147,'2025-10-21','11:51:00',0,70,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',73,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 12:01:57','','0000-00-00 00:00:00',0),(4817,2526,0,0,1147,'2025-10-22','11:51:00',0,70,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',73,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 12:01:57','','0000-00-00 00:00:00',0),(4818,2526,0,0,1147,'2025-10-23','11:52:00',0,70,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',73,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 12:01:57','','0000-00-00 00:00:00',0),(4819,2526,0,0,1147,'2025-10-24','11:52:00',0,70,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',73,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 12:01:57','','0000-00-00 00:00:00',0),(4820,2526,0,0,1147,'2025-10-25','11:52:00',0,70,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',73,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 12:01:57','','0000-00-00 00:00:00',0),(4821,2526,0,0,1147,'2025-10-22','11:54:00',0,70,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',73,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 12:01:57','','0000-00-00 00:00:00',0),(4822,2526,0,0,1147,'2025-10-25','11:58:00',0,70,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','','','','',2526,'H','I',73,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 12:01:57','','0000-00-00 00:00:00',0),(4823,2526,0,0,1147,'2025-10-20','12:00:00',0,70,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',73,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 12:01:57','','0000-00-00 00:00:00',0),(4824,2526,0,0,1147,'2025-10-21','12:01:00',0,70,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',73,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 12:01:57','','0000-00-00 00:00:00',0),(4825,2526,0,0,1472,'2025-10-25','00:00:00',1194,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1577,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 12:02:05','reception','2025-10-25 12:02:41',0),(4826,2526,0,0,1464,'2025-10-25','12:15:03',1186,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1578,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 12:15:03','reception','2025-10-25 12:15:03',0),(4827,2526,0,0,1464,'2025-10-25','12:15:03',1186,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1578,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 12:15:03','reception','2025-10-25 12:15:03',0),(4828,2526,0,0,1464,'2025-10-25','12:15:03',1186,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1578,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 12:15:03','reception','2025-10-25 12:15:03',0),(4829,2526,0,0,1473,'2025-10-25','00:00:00',1195,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1579,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-25 12:24:28','janvi','2025-10-25 12:25:09',0),(4830,2526,0,0,1474,'2025-10-25','00:00:00',1033,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1580,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-25 12:26:08','manshi','2025-10-25 12:26:28',0),(4831,2526,0,0,1475,'2025-10-25','00:00:00',1196,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1581,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 12:27:22','reception','2025-10-25 12:28:33',0),(4832,2526,0,0,1476,'2025-10-25','00:00:00',1197,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1582,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-25 12:35:10','janvi','2025-10-25 12:35:48',0),(4833,2526,0,0,1405,'2025-10-25','12:33:00',1140,88,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',71,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 12:35:40','','0000-00-00 00:00:00',0),(4834,2526,0,0,1405,'2025-10-25','12:33:00',1140,88,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',71,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 12:35:40','','0000-00-00 00:00:00',0),(4835,2526,0,0,1477,'2025-10-25','12:37:38',1132,0,'DTPR','DTPR0061','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',1583,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 12:37:38','drashti','2025-10-25 12:37:38',0),(4836,2526,0,0,1469,'2025-10-25','12:41:33',1191,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1584,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 12:41:33','reception','2025-10-25 12:41:33',0),(4837,2526,0,0,1469,'2025-10-25','12:41:33',1191,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1584,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 12:41:33','reception','2025-10-25 12:41:33',0),(4838,2526,0,0,1478,'2025-10-25','00:00:00',560,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1585,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 12:42:05','drashti','2025-10-25 12:42:55',0),(4839,2526,0,0,1405,'2025-10-25','12:40:00',1140,88,'CARE','CARE0008','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',71,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-25 12:42:45','','0000-00-00 00:00:00',0),(4840,2526,0,0,1405,'2025-10-25','12:41:00',1140,88,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',71,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-25 12:42:45','','0000-00-00 00:00:00',0),(4841,2526,0,0,1467,'2025-10-25','12:47:00',1189,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1586,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 12:47:00','reception','2025-10-25 12:47:00',0),(4842,2526,0,0,1467,'2025-10-25','12:47:00',1189,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1586,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 12:47:00','reception','2025-10-25 12:47:00',0),(4843,2526,0,0,1405,'2025-10-24','12:46:00',1140,88,'ROOM','ROOM0003','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',71,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-25 12:47:37','','0000-00-00 00:00:00',0),(4844,2526,0,0,1405,'2025-10-24','12:46:00',1140,88,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',71,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-25 12:47:37','','0000-00-00 00:00:00',0),(4845,2526,0,0,1405,'2025-10-24','12:47:00',1140,88,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',71,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-25 12:47:37','','0000-00-00 00:00:00',0),(4846,2526,0,0,1479,'2025-10-25','00:00:00',216,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1587,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-25 12:49:01','janvi','2025-10-25 12:50:06',0),(4847,2526,0,0,1480,'2025-10-25','00:00:00',1198,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1588,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 12:54:21','reception','2025-10-25 12:54:48',0),(4848,2526,0,0,1296,'2025-10-24','13:45:00',951,81,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-25 01:31:43','vishal','2025-10-25 13:08:57',0),(4849,2526,0,0,1296,'2025-10-24','13:45:00',951,81,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-25 01:31:43','vishal','2025-10-25 13:08:57',0),(4850,2526,0,0,1296,'2025-10-24','13:45:00',951,81,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-25 01:31:43','vishal','2025-10-25 13:08:57',0),(4851,2526,0,0,1296,'2025-10-24','13:45:00',951,81,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','407','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-25 01:31:43','vishal','2025-10-25 13:08:57',0),(4852,2526,0,0,1296,'2025-10-24','13:45:00',951,81,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','407','','','',2526,'H','I',72,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-25 01:31:43','vishal','2025-10-25 13:08:57',0),(4853,2526,0,0,1480,'2025-10-25','13:03:31',1198,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',1589,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 13:03:31','drashti','2025-10-25 13:03:31',0),(4854,2526,0,0,1481,'2025-10-25','00:00:00',1199,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1590,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 13:08:49','reception','2025-10-25 13:10:08',0),(4855,2526,0,0,1296,'2025-10-24','13:01:00',951,81,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',72,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-25 13:08:57','','0000-00-00 00:00:00',0),(4856,2526,0,0,1296,'2025-10-25','13:02:00',951,81,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',72,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-25 13:08:57','','0000-00-00 00:00:00',0),(4857,2526,0,0,1296,'2025-10-21','13:03:00',951,81,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',72,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-25 13:08:57','','0000-00-00 00:00:00',0),(4858,2526,0,0,1296,'2025-10-25','13:08:00',951,81,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','','','','',2526,'H','I',72,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-25 13:08:57','','0000-00-00 00:00:00',0),(4859,2526,0,0,1482,'2025-10-25','00:00:00',1200,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1591,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-25 13:16:37','janvi','2025-10-25 13:17:23',0),(4860,2526,0,0,1483,'2025-10-25','00:00:00',1201,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-25 13:41:04','janvi','2025-10-25 02:11:04',0),(4861,2526,0,0,1484,'2025-10-25','00:00:00',1202,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 13:50:32','drashti','2025-10-25 02:20:32',0),(4862,2526,0,0,1482,'2025-10-25','13:51:12',1200,0,'OPWD','OPWD0007','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,3,0,0,'',0,0,'','','','','',2526,'H','O',1592,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-25 13:51:12','reception','2025-10-25 13:51:12',0),(4863,2526,0,0,1363,'2025-10-24','20:00:00',0,86,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 02:24:48','riya','2025-10-25 13:56:11',0),(4864,2526,0,0,1363,'2025-10-24','20:00:00',0,86,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 02:24:48','riya','2025-10-25 13:56:11',0),(4865,2526,0,0,1363,'2025-10-24','20:00:00',0,86,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 02:24:48','riya','2025-10-25 13:56:11',0),(4866,2526,0,0,1363,'2025-10-24','20:00:00',0,86,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 02:24:48','riya','2025-10-25 13:56:11',0),(4867,2526,0,0,1363,'2025-10-24','20:00:00',0,86,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 02:24:48','riya','2025-10-25 13:56:11',0),(4868,2526,0,0,1363,'2025-10-23','13:54:00',0,86,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',88,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 13:56:11','','0000-00-00 00:00:00',0),(4869,2526,0,0,1363,'2025-10-24','13:55:00',0,86,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',88,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 13:56:11','','0000-00-00 00:00:00',0),(4870,2526,0,0,1363,'2025-10-25','13:55:00',0,86,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',88,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 13:56:11','','0000-00-00 00:00:00',0),(4871,2526,0,0,1437,'2025-10-24','13:56:00',1134,90,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',79,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 13:57:59','','0000-00-00 00:00:00',0),(4872,2526,0,0,1437,'2025-10-25','13:57:00',1134,90,'DRC','DRC0020','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,37,0,0,'',0,0,'','','','','',2526,'H','I',79,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 13:57:59','riya','2025-10-27 18:13:08',0),(4873,2526,0,0,1434,'2025-10-24','13:58:00',1002,89,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',75,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 13:59:09','','0000-00-00 00:00:00',0),(4874,2526,0,0,1293,'2025-10-24','10:15:00',0,78,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 02:31:09','riya','2025-10-25 14:04:52',0),(4875,2526,0,0,1293,'2025-10-25','10:15:00',0,78,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 02:31:09','riya','2025-10-25 14:04:52',0),(4876,2526,0,0,1293,'2025-10-24','10:15:00',0,78,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 02:31:09','riya','2025-10-25 14:04:52',0),(4877,2526,0,0,1293,'2025-10-25','10:15:00',0,78,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 02:31:09','riya','2025-10-25 14:04:52',0),(4878,2526,0,0,1293,'2025-10-24','10:15:00',0,78,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 02:31:09','riya','2025-10-25 14:04:52',0),(4879,2526,0,0,1293,'2025-10-25','10:15:00',0,78,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 02:31:09','riya','2025-10-25 14:04:52',0),(4880,2526,0,0,1293,'2025-10-24','10:15:00',0,78,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 02:31:09','riya','2025-10-25 14:26:31',0),(4881,2526,0,0,1293,'2025-10-25','10:15:00',0,78,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 02:31:09','riya','2025-10-25 14:26:31',0),(4882,2526,0,0,1293,'2025-10-24','10:15:00',0,78,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 02:31:09','riya','2025-10-25 14:26:31',0),(4883,2526,0,0,1293,'2025-10-25','10:15:00',0,78,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 02:31:09','riya','2025-10-25 14:26:31',0),(4884,2526,0,0,1293,'2025-10-22','14:01:00',0,78,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:04:52','','0000-00-00 00:00:00',0),(4885,2526,0,0,1293,'2025-10-23','14:01:00',0,78,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:04:52','','0000-00-00 00:00:00',0),(4886,2526,0,0,1293,'2025-10-24','14:02:00',0,78,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:04:52','','0000-00-00 00:00:00',0),(4887,2526,0,0,1293,'2025-10-25','14:02:00',0,78,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:04:52','','0000-00-00 00:00:00',0),(4888,2526,0,0,1293,'2025-10-23','14:06:00',0,78,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:09:53','','0000-00-00 00:00:00',0),(4889,2526,0,0,1293,'2025-10-24','14:07:00',0,78,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:09:53','','0000-00-00 00:00:00',0),(4890,2526,0,0,1293,'2025-10-25','14:07:00',0,78,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:09:53','','0000-00-00 00:00:00',0),(4891,2526,0,0,1438,'2025-10-24','14:19:00',1139,91,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,8,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:21:27','','0000-00-00 00:00:00',0),(4892,2526,0,0,1438,'2025-10-25','14:19:00',1139,91,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,41,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:21:27','','0000-00-00 00:00:00',0),(4893,2526,0,0,1438,'2025-10-25','14:20:00',1139,91,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:21:27','','0000-00-00 00:00:00',0),(4894,2526,0,0,1438,'2025-10-25','14:20:00',1139,91,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,3,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:21:27','','0000-00-00 00:00:00',0),(4895,2526,0,0,1438,'2025-10-25','14:20:00',1139,91,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',0,'','',0,11,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:21:27','riya','2025-10-27 15:18:51',0),(4896,2526,0,0,489,'2025-10-24','17:00:00',0,38,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 03:10:14','riya','2025-10-25 14:45:31',0),(4897,2526,0,0,489,'2025-10-24','17:00:00',0,38,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 03:10:14','riya','2025-10-25 14:45:31',0),(4898,2526,0,0,489,'2025-10-24','17:00:00',0,38,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 03:10:14','riya','2025-10-25 14:45:31',0),(4899,2526,0,0,489,'2025-10-24','17:00:00',0,38,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 03:10:14','riya','2025-10-25 14:45:31',0),(4900,2526,0,0,489,'2025-10-24','17:00:00',0,38,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 03:10:14','riya','2025-10-25 14:45:31',0),(4901,2526,0,0,489,'2025-10-24','14:40:00',0,38,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:45:31','','0000-00-00 00:00:00',0),(4902,2526,0,0,489,'2025-10-25','14:40:00',0,38,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:45:31','','0000-00-00 00:00:00',0),(4903,2526,0,0,489,'2025-10-24','14:40:00',0,38,'WPRC','WPRC0089','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:45:31','','0000-00-00 00:00:00',0),(4904,2526,0,0,489,'2025-10-25','14:41:00',0,38,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:45:31','riya','2025-10-25 19:16:18',0),(4905,2526,0,0,489,'2025-10-25','14:41:00',0,38,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:45:31','','0000-00-00 00:00:00',0),(4906,2526,0,0,489,'2025-10-23','14:42:00',0,38,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:45:31','','0000-00-00 00:00:00',0),(4907,2526,0,0,489,'2025-10-24','14:42:00',0,38,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',74,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 14:45:31','','0000-00-00 00:00:00',0),(4908,2526,0,0,1369,'2025-10-25','09:30:00',0,87,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',231,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 04:37:51','riya','2025-10-26 10:22:14',0),(4909,2526,0,0,1369,'2025-10-25','09:30:00',0,87,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',231,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 04:37:51','riya','2025-10-26 10:22:14',0),(4910,2526,0,0,1369,'2025-10-25','09:30:00',0,87,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',231,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 04:37:51','riya','2025-10-26 10:22:14',0),(4911,2526,0,0,1369,'2025-10-25','09:30:00',0,87,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','305','','','',2526,'H','I',231,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 04:37:51','riya','2025-10-26 10:22:14',0),(4912,2526,0,0,1369,'2025-10-25','09:30:00',0,87,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','305','','','',2526,'H','I',231,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 04:37:51','riya','2025-10-26 10:22:14',0),(4913,2526,0,0,1486,'2025-10-25','00:00:00',1203,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1594,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 16:37:51','drashti','2025-10-25 16:39:43',0),(4914,2526,0,0,1485,'2025-10-25','16:38:12',879,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1593,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-25 16:38:12','priyanshi','2025-10-25 16:38:12',0),(4915,2526,0,0,489,'2025-10-25','17:00:00',0,38,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 06:03:41','riya','2025-10-25 17:33:52',0),(4916,2526,0,0,489,'2025-10-25','17:00:00',0,38,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 06:03:41','riya','2025-10-25 17:33:52',0),(4917,2526,0,0,489,'2025-10-25','17:00:00',0,38,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 06:03:41','riya','2025-10-25 17:37:02',0),(4918,2526,0,0,489,'2025-10-25','17:00:00',0,38,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 06:03:41','riya','2025-10-25 17:37:02',0),(4919,2526,0,0,489,'2025-10-25','17:00:00',0,38,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',74,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 06:03:42','riya','2025-10-25 17:33:52',0),(4920,2526,0,0,1487,'2025-10-25','00:00:00',1204,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1595,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 17:40:17','drashti','2025-10-25 17:41:02',0),(4921,2526,0,0,1488,'2025-10-25','00:00:00',111,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-25 17:40:59','janvi','2025-10-25 06:10:59',0),(4922,2526,0,0,1488,'2025-10-25','17:41:29',111,0,'MOPR','MOPR0006','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',1596,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-25 17:41:29','janvi','2025-10-25 17:41:29',0),(4923,2526,0,0,1489,'2025-10-25','00:00:00',1205,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1597,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 17:44:31','drashti','2025-10-25 17:46:16',0),(4924,2526,0,0,1490,'2025-10-25','00:00:00',1206,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 17:52:45','drashti','2025-10-25 06:22:45',0),(4925,2526,0,0,1491,'2025-10-25','00:00:00',1207,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1599,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-25 18:07:29','manshi','2025-10-25 18:48:20',0),(4926,2526,0,0,1492,'2025-10-25','00:00:00',1208,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-25 18:36:50','manshi','2025-10-25 07:06:50',0),(4927,2526,0,0,1493,'2025-10-25','00:00:00',1209,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-25 18:41:06','manshi','2025-10-25 07:11:06',0),(4928,2526,0,0,1494,'2025-10-25','00:00:00',117,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1598,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-25 18:41:58','janvi','2025-10-25 18:42:07',0),(4929,2526,0,0,1495,'2025-10-25','00:00:00',1210,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1604,1,250,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 18:49:55','drashti','2025-10-25 19:39:18',0),(4930,2526,0,0,1496,'2025-10-25','00:00:00',184,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1600,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-25 18:52:22','janvi','2025-10-25 18:53:07',0),(4931,2526,0,0,1496,'2025-10-25','18:53:07',184,0,'WPRC','WPRC0042','H','N',4.00,100,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1600,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-25 18:53:07','janvi','2025-10-25 18:53:07',0),(4932,2526,0,0,1497,'2025-10-25','00:00:00',1211,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 18:54:52','drashti','2025-10-25 07:24:52',0),(4933,2526,0,0,1497,'2025-10-25','18:56:53',1211,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',1601,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 18:56:53','drashti','2025-10-25 18:56:53',0),(4934,2526,0,0,1498,'2025-10-25','00:00:00',1019,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1602,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-25 19:03:11','janvi','2025-10-25 19:03:27',0),(4935,2526,0,0,1499,'2025-10-25','00:00:00',1212,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1603,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-25 19:05:32','janvi','2025-10-25 19:06:58',0),(4936,2526,0,0,1500,'2025-10-25','00:00:00',1049,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-25 19:09:40','drashti','2025-10-25 07:39:40',0),(4937,2526,0,0,1501,'2025-10-25','19:22:00',1156,93,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',90,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 19:24:03','riya','2025-10-27 11:12:29',0),(4938,2526,0,0,1501,'2025-10-25','19:22:00',1156,93,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',90,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 19:24:03','riya','2025-10-27 11:12:29',0),(4939,2526,0,0,1501,'2025-10-25','19:22:00',1156,93,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',90,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 07:54:04','riya','2025-10-27 11:12:29',0),(4940,2526,0,0,1501,'2025-10-25','19:22:00',1156,93,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',90,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 07:54:04','riya','2025-10-27 11:12:29',0),(4941,2526,0,0,1501,'2025-10-25','19:22:00',1156,93,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',90,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 07:54:04','riya','2025-10-27 11:12:29',0),(4942,2526,0,0,1501,'2025-10-25','19:22:00',1156,93,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-25 07:54:04','riya','2025-10-27 11:12:29',0),(4943,2526,0,0,1501,'2025-10-25','19:22:00',1156,93,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-25 07:54:04','riya','2025-10-27 11:12:29',0),(4944,2526,0,0,1503,'2025-10-26','00:00:00',1213,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-26 10:03:52','urvashi','2025-10-25 22:33:52',0),(4945,2526,0,0,1503,'2025-10-26','10:05:07',1213,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',1605,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-26 10:05:07','urvashi','2025-10-26 10:05:07',0),(4946,2526,0,0,1503,'2025-10-26','10:05:07',1213,0,'WPRC','WPRC0042','H','N',5.00,100,500,'P',0,0,0.00,0.00,0.00,500,5,0,0,'',0,0,'','','','','',2526,'H','O',1605,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-26 10:05:07','urvashi','2025-10-26 10:05:07',0),(4947,2526,0,0,1369,'2025-10-24','10:20:00',0,87,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',231,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 10:22:14','','0000-00-00 00:00:00',0),(4948,2526,0,0,1369,'2025-10-24','10:20:00',0,87,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',231,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 10:22:14','','0000-00-00 00:00:00',0),(4949,2526,0,0,1369,'2025-10-24','10:20:00',0,87,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,3,0,0,'',0,0,'','','','','',2526,'H','I',231,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 10:22:14','','0000-00-00 00:00:00',0),(4950,2526,0,0,1369,'2025-10-26','10:20:00',0,87,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',231,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 10:22:14','','0000-00-00 00:00:00',0),(4951,2526,0,0,1369,'2025-10-26','10:21:00',0,87,'ROOM','ROOM0005','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',2526,'H','I',231,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 10:22:14','','0000-00-00 00:00:00',0),(4952,2526,0,0,1504,'2025-10-25','22:00:00',0,94,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',77,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 10:43:28','riya','2025-10-27 13:14:53',0),(4953,2526,0,0,1504,'2025-10-25','22:00:00',0,94,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',77,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 10:43:28','riya','2025-10-27 13:14:53',0),(4954,2526,0,0,1504,'2025-10-25','22:00:00',0,94,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',77,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 23:13:28','riya','2025-10-27 13:14:53',0),(4955,2526,0,0,1504,'2025-10-25','22:00:00',0,94,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',77,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 23:13:28','riya','2025-10-27 13:14:53',0),(4956,2526,0,0,1504,'2025-10-25','22:00:00',0,94,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',77,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 23:13:28','riya','2025-10-27 13:14:53',0),(4957,2526,0,0,1504,'2025-10-27','22:00:00',0,94,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','209','','','',2526,'H','I',77,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 23:13:28','riya','2025-10-27 13:14:53',0),(4958,2526,0,0,1504,'2025-10-25','22:00:00',0,94,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','209','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-25 23:13:28','riya','2025-10-27 13:14:53',0),(4959,2526,0,0,1505,'2025-10-26','11:15:00',0,95,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',76,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 11:27:14','riya','2025-10-27 11:59:14',0),(4960,2526,0,0,1505,'2025-10-26','11:15:00',0,95,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',76,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 11:27:14','riya','2025-10-27 11:59:14',0),(4961,2526,0,0,1505,'2025-10-26','11:15:00',0,95,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',76,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 23:57:14','riya','2025-10-27 11:59:14',0),(4962,2526,0,0,1505,'2025-10-26','11:15:00',0,95,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',76,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 23:57:14','riya','2025-10-27 11:59:14',0),(4963,2526,0,0,1505,'2025-10-26','11:15:00',0,95,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',76,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 23:57:14','riya','2025-10-27 11:59:14',0),(4964,2526,0,0,1505,'2025-10-26','11:15:00',0,95,'DRC','DRC0021','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,5,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 23:57:14','riya','2025-10-27 12:39:45',0),(4965,2526,0,0,1505,'2025-10-26','11:15:00',0,95,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','402','','','',2526,'H','I',76,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-25 23:57:14','riya','2025-10-27 11:59:14',0),(4966,2526,0,0,1506,'2025-10-26','12:17:00',184,96,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',80,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 12:18:42','vishal','2025-10-27 21:19:44',0),(4967,2526,0,0,1506,'2025-10-26','12:17:00',184,96,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',80,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 12:18:42','vishal','2025-10-27 21:19:44',0),(4968,2526,0,0,1506,'2025-10-26','12:17:00',184,96,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',80,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 00:48:42','vishal','2025-10-27 21:19:44',0),(4969,2526,0,0,1506,'2025-10-26','12:17:00',184,96,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',80,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 00:48:42','vishal','2025-10-27 21:19:44',0),(4970,2526,0,0,1506,'2025-10-26','12:17:00',184,96,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',80,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 00:48:42','vishal','2025-10-27 21:19:44',0),(4971,2526,0,0,1506,'2025-10-26','12:17:00',184,96,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-26 00:48:42','vishal','2025-10-27 21:19:44',0),(4972,2526,0,0,1506,'2025-10-26','12:17:00',184,96,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','401','','','',2526,'H','I',80,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 00:48:42','vishal','2025-10-27 21:19:44',0),(4973,2526,0,0,1434,'2025-10-25','19:18:00',1002,89,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',75,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 01:00:23','riya','2025-10-26 12:31:53',0),(4974,2526,0,0,1434,'2025-10-25','19:18:00',1002,89,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',75,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 01:00:23','riya','2025-10-26 12:31:53',0),(4975,2526,0,0,1434,'2025-10-25','19:18:00',1002,89,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',75,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 01:00:23','riya','2025-10-26 12:31:53',0),(4976,2526,0,0,1434,'2025-10-25','19:18:00',1002,89,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','410','','','',2526,'H','I',75,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 01:00:23','riya','2025-10-26 12:31:53',0),(4977,2526,0,0,1434,'2025-10-25','19:18:00',1002,89,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','410','','','',2526,'H','I',75,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 01:00:23','riya','2025-10-26 12:31:53',0),(4978,2526,0,0,1434,'2025-10-26','12:31:00',1002,89,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','','','','',2526,'H','I',75,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 12:31:53','','0000-00-00 00:00:00',0),(4979,2526,0,0,1438,'2025-10-25','20:16:00',1139,91,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 07:52:50','riya','2025-10-26 19:29:10',0),(4980,2526,0,0,1438,'2025-10-25','20:16:00',1139,91,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 07:52:50','riya','2025-10-26 19:29:10',0),(4981,2526,0,0,1438,'2025-10-25','20:16:00',1139,91,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','207','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 07:52:50','riya','2025-10-26 19:29:10',0),(4982,2526,0,0,1438,'2025-10-25','20:16:00',1139,91,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','207','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 07:52:50','riya','2025-10-26 19:29:10',0),(4983,2526,0,0,1438,'2025-10-25','20:16:00',1139,91,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 07:52:50','riya','2025-10-26 19:29:10',0),(4984,2526,0,0,1438,'2025-10-26','19:24:00',1139,91,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,41,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 19:29:10','','0000-00-00 00:00:00',0),(4985,2526,0,0,1438,'2025-10-26','19:25:00',1139,91,'ROOM','ROOM0008','H','N',7.00,100,700,'P',0,0,0.00,0.00,700.00,700,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 19:29:10','riya','2025-10-29 11:57:32',0),(4986,2526,0,0,1438,'2025-10-26','19:25:00',1139,91,'NEPP','NEPP0011','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,4000.00,4000,41,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 19:29:10','','0000-00-00 00:00:00',0),(4987,2526,0,0,1438,'2025-10-26','19:27:00',1139,91,'XRY','XRY0045','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 19:29:10','','0000-00-00 00:00:00',0),(4988,2526,0,0,1438,'2025-10-26','19:27:00',1139,91,'WPRC','WPRC0104','H','N',1.00,6000,6000,'P',0,0,0.00,0.00,6000.00,6000,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 19:29:10','','0000-00-00 00:00:00',0),(4989,2526,0,0,1438,'2025-10-26','19:27:00',1139,91,'WPRC','WPRC0097','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,3,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 19:29:10','','0000-00-00 00:00:00',0),(4990,2526,0,0,1438,'2025-10-26','19:28:00',1139,91,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 19:29:10','','0000-00-00 00:00:00',0),(4991,2526,0,0,1438,'2025-10-26','19:28:00',1139,91,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 19:29:10','','0000-00-00 00:00:00',0),(4992,2526,0,0,1438,'2025-10-25','19:28:00',1139,91,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 19:29:10','','0000-00-00 00:00:00',0),(4993,2526,0,0,1438,'2025-10-26','19:28:00',1139,91,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 19:29:10','','0000-00-00 00:00:00',0),(4994,2526,0,0,1438,'2025-10-26','19:32:00',1139,91,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,88,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 19:32:19','','0000-00-00 00:00:00',0),(4995,2526,0,0,1507,'2025-10-27','00:00:00',892,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 08:48:08','urvashi','2025-10-26 21:18:08',0),(4996,2526,0,0,1508,'2025-10-27','00:00:00',1214,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1606,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 08:49:33','urvashi','2025-10-27 08:51:41',0),(4997,2526,0,0,1509,'2025-10-27','08:52:50',118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1607,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 08:52:50','urvashi','2025-10-27 08:52:50',0),(4998,2526,0,0,1510,'2025-10-27','00:00:00',1215,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 08:54:54','urvashi','2025-10-26 21:24:54',0),(4999,2526,0,0,1510,'2025-10-27','08:56:20',1215,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1608,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 08:56:20','urvashi','2025-10-27 08:56:20',0),(5000,2526,0,0,1510,'2025-10-27','08:56:20',1215,0,'WPRC','WPRC0042','H','N',1.00,650,650,'P',0,0,0.00,0.00,0.00,650,4,0,0,'',0,0,'','','','','',2526,'H','O',1608,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 08:56:20','urvashi','2025-10-27 08:56:20',0),(5001,2526,0,0,1511,'2025-10-27','00:00:00',1216,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 09:02:29','urvashi','2025-10-26 21:32:29',0),(5002,2526,0,0,1511,'2025-10-27','09:03:47',1216,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1609,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-10-27 09:03:47','urvashi','2025-10-27 09:03:47',0),(5003,2526,0,0,1511,'2025-10-27','09:03:47',1216,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',1609,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-10-27 09:03:47','urvashi','2025-10-27 09:03:47',0),(5004,2526,0,0,1511,'2025-10-27','09:03:47',1216,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,43,'',0,0,'','','','','',2526,'H','O',1609,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-10-27 09:03:47','urvashi','2025-10-27 09:03:47',0),(5005,2526,0,0,1512,'2025-10-27','00:00:00',1217,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 09:07:36','urvashi','2025-10-26 21:37:36',0),(5006,2526,0,0,1512,'2025-10-27','09:08:57',1217,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',1610,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 09:08:57','urvashi','2025-10-27 09:08:57',0),(5007,2526,0,0,1512,'2025-10-27','09:08:57',1217,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1610,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 09:08:57','urvashi','2025-10-27 09:08:57',0),(5008,2526,0,0,1513,'2025-10-27','00:00:00',1218,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1640,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 09:16:55','janvi','2025-10-27 11:00:36',0),(5009,2526,0,0,1514,'2025-10-27','00:00:00',1219,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1635,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 09:18:25','janvi','2025-10-27 10:58:40',0),(5010,2526,0,0,1515,'2025-10-27','00:00:00',1220,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1611,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 09:18:53','urvashi','2025-10-27 09:20:11',0),(5011,2526,0,0,1515,'2025-10-27','09:20:11',1220,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',1611,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 09:20:11','urvashi','2025-10-27 09:20:11',0),(5012,2526,0,0,1515,'2025-10-27','09:20:11',1220,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1611,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 09:20:11','urvashi','2025-10-27 09:20:11',0),(5013,2526,0,0,1516,'2025-10-27','00:00:00',644,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1612,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 09:26:40','janvi','2025-10-27 09:26:51',0),(5014,2526,0,0,1517,'2025-10-27','00:00:00',1221,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1613,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 09:28:44','reception','2025-10-27 09:29:11',0),(5015,2526,0,0,1518,'2025-10-27','00:00:00',1222,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1614,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 09:39:54','urvashi','2025-10-27 09:41:09',0),(5016,2526,0,0,1519,'2025-10-27','09:57:00',1133,97,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',78,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 09:58:19','riya','2025-10-27 16:36:34',0),(5017,2526,0,0,1519,'2025-10-27','09:57:00',1133,97,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',78,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 09:58:19','riya','2025-10-27 16:36:34',0),(5018,2526,0,0,1519,'2025-10-27','09:57:00',1133,97,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',78,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:28:19','riya','2025-10-27 16:36:34',0),(5019,2526,0,0,1519,'2025-10-27','09:57:00',1133,97,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',78,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:28:19','riya','2025-10-27 16:36:34',0),(5020,2526,0,0,1519,'2025-10-27','09:57:00',1133,97,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',78,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:28:19','riya','2025-10-27 16:36:34',0),(5021,2526,0,0,1519,'2025-10-27','09:57:00',1133,97,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',78,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:28:19','riya','2025-10-27 16:36:34',0),(5022,2526,0,0,1519,'2025-10-27','09:57:00',1133,97,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:28:19','riya','2025-10-27 16:39:08',0),(5023,2526,0,0,1520,'2025-10-27','00:00:00',1223,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1622,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 10:02:05','janvi','2025-10-27 10:30:32',0),(5024,2526,0,0,1298,'2025-10-26','00:05:00',0,82,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:39:18','riya','2025-10-27 10:09:38',0),(5025,2526,0,0,1298,'2025-10-27','00:05:00',0,82,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:39:18','riya','2025-10-27 10:09:38',0),(5026,2526,0,0,1298,'2025-10-26','00:05:00',0,82,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:39:18','riya','2025-10-27 10:09:38',0),(5027,2526,0,0,1298,'2025-10-27','00:05:00',0,82,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:39:18','riya','2025-10-27 10:09:38',0),(5028,2526,0,0,1298,'2025-10-26','00:05:00',0,82,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:39:18','riya','2025-10-27 10:09:38',0),(5029,2526,0,0,1298,'2025-10-27','00:05:00',0,82,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:39:18','riya','2025-10-27 10:09:38',0),(5030,2526,0,0,1298,'2025-10-26','00:05:00',0,82,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:39:18','riya','2025-10-27 10:09:38',0),(5031,2526,0,0,1298,'2025-10-27','00:05:00',0,82,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:39:18','riya','2025-10-27 10:09:38',0),(5032,2526,0,0,1298,'2025-10-26','00:05:00',0,82,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:39:18','riya','2025-10-27 10:09:38',0),(5033,2526,0,0,1298,'2025-10-27','00:05:00',0,82,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',82,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:39:18','riya','2025-10-27 10:09:38',0),(5034,2526,0,0,1298,'2025-10-23','10:09:00',0,82,'XRY','XRY0045','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 10:09:38','riya','2025-10-28 13:19:07',0),(5035,2526,0,0,1438,'2025-10-26','20:16:00',1139,91,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:39:55','riya','2025-10-27 15:18:51',0),(5036,2526,0,0,1438,'2025-10-26','20:16:00',1139,91,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:39:55','riya','2025-10-27 15:18:51',0),(5037,2526,0,0,1438,'2025-10-26','20:16:00',1139,91,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','207','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:39:55','riya','2025-10-27 15:18:51',0),(5038,2526,0,0,1438,'2025-10-26','20:16:00',1139,91,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','207','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:39:55','riya','2025-10-27 15:18:51',0),(5039,2526,0,0,1438,'2025-10-26','20:16:00',1139,91,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:39:55','riya','2025-10-27 15:18:51',0),(5040,2526,0,0,1363,'2025-10-26','20:00:00',0,86,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:40:14','riya','2025-10-27 10:10:37',0),(5041,2526,0,0,1363,'2025-10-25','20:00:00',0,86,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:40:14','riya','2025-10-27 10:10:37',0),(5042,2526,0,0,1363,'2025-10-26','20:00:00',0,86,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:40:14','riya','2025-10-27 10:10:37',0),(5043,2526,0,0,1363,'2025-10-25','20:00:00',0,86,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:40:14','riya','2025-10-27 10:10:37',0),(5044,2526,0,0,1363,'2025-10-26','20:00:00',0,86,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:40:14','riya','2025-10-27 10:10:37',0),(5045,2526,0,0,1363,'2025-10-25','20:00:00',0,86,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:40:14','riya','2025-10-27 10:10:37',0),(5046,2526,0,0,1363,'2025-10-26','20:00:00',0,86,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:40:14','riya','2025-10-27 10:10:37',0),(5047,2526,0,0,1363,'2025-10-25','20:00:00',0,86,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:40:14','riya','2025-10-27 10:10:37',0),(5048,2526,0,0,1363,'2025-10-26','20:00:00',0,86,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:40:14','riya','2025-10-27 10:10:37',0),(5049,2526,0,0,1363,'2025-10-25','20:00:00',0,86,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 22:40:14','riya','2025-10-27 10:10:37',0),(5050,2526,0,0,1363,'2025-10-26','10:10:00',0,86,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',88,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 10:10:37','','0000-00-00 00:00:00',0),(5051,2526,0,0,1521,'2025-10-27','00:00:00',1224,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1615,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 10:11:01','manshi','2025-10-27 10:14:17',0),(5052,2526,0,0,1522,'2025-10-27','00:00:00',1225,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',1616,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 10:18:21','manshi','2025-10-27 10:18:35',0),(5053,2526,0,0,1524,'2025-10-27','00:00:00',1226,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1617,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 10:20:43','reception','2025-10-27 10:21:03',0),(5054,2526,0,0,1525,'2025-10-27','00:00:00',1227,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1618,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 10:20:47','janvi','2025-10-27 10:21:31',0),(5055,2526,0,0,1526,'2025-10-27','00:00:00',645,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1619,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 10:21:29','manshi','2025-10-27 10:21:40',0),(5056,2526,0,0,1527,'2025-10-27','00:00:00',1228,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1620,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 10:22:21','reception','2025-10-27 10:22:36',0),(5057,2526,0,0,1528,'2025-10-27','00:00:00',1229,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1621,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 10:23:32','reception','2025-10-27 10:24:51',0),(5058,2526,0,0,1529,'2025-10-27','00:00:00',1230,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1623,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 10:29:21','reception','2025-10-27 10:30:44',0),(5059,2526,0,0,1530,'2025-10-27','00:00:00',1231,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1624,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 10:32:04','reception','2025-10-27 10:32:56',0),(5060,2526,0,0,1531,'2025-10-27','00:00:00',865,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',1625,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 10:34:14','reception','2025-10-27 10:34:54',0),(5061,2526,0,0,1532,'2025-10-27','00:00:00',1232,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',1626,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 10:35:38','manshi','2025-10-27 10:36:31',0),(5062,2526,0,0,1533,'2025-10-27','00:00:00',1233,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1627,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 10:38:25','reception','2025-10-27 10:38:36',0),(5063,2526,0,0,1534,'2025-10-27','00:00:00',1234,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1628,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 10:45:08','urvashi','2025-10-27 10:45:55',0),(5064,2526,0,0,1535,'2025-10-27','00:00:00',1235,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1629,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 10:47:33','urvashi','2025-10-27 10:48:54',0),(5065,2526,0,0,1536,'2025-10-27','10:48:00',1223,98,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',84,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 10:49:47','riya','2025-10-29 10:57:48',0),(5066,2526,0,0,1536,'2025-10-27','10:48:00',1223,98,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',84,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 10:49:47','riya','2025-10-29 10:57:48',0),(5067,2526,0,0,1536,'2025-10-27','10:48:00',1223,98,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',84,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 23:19:47','riya','2025-10-29 10:57:48',0),(5068,2526,0,0,1536,'2025-10-27','10:48:00',1223,98,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',84,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 23:19:47','riya','2025-10-29 10:57:48',0),(5069,2526,0,0,1536,'2025-10-27','10:48:00',1223,98,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',84,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 23:19:47','riya','2025-10-29 10:57:48',0),(5070,2526,0,0,1536,'2025-10-27','10:48:00',1223,98,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',84,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 23:19:47','riya','2025-10-29 10:57:48',0),(5071,2526,0,0,1536,'2025-10-27','10:48:00',1223,98,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',84,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 23:19:47','riya','2025-10-29 10:57:48',0),(5072,2526,0,0,1537,'2025-10-27','00:00:00',1236,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1630,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 10:50:18','janvi','2025-10-27 10:50:58',0),(5073,2526,0,0,1538,'2025-10-27','00:00:00',1237,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1631,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 10:50:31','reception','2025-10-27 10:51:11',0),(5074,2526,0,0,1539,'2025-10-27','00:00:00',1238,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1632,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 10:53:19','urvashi','2025-10-27 10:54:10',0),(5075,2526,0,0,1540,'2025-10-27','00:00:00',1239,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1633,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 10:53:27','reception','2025-10-27 10:54:17',0),(5076,2526,0,0,1541,'2025-10-27','00:00:00',1240,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1634,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 10:55:52','reception','2025-10-27 10:56:14',0),(5077,2526,0,0,1542,'2025-10-27','00:00:00',923,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1654,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 10:57:37','manshi','2025-10-27 11:25:42',0),(5078,2526,0,0,1543,'2025-10-27','00:00:00',1241,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1638,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 10:57:53','urvashi','2025-10-27 10:58:54',0),(5079,2526,0,0,1544,'2025-10-27','00:00:00',1242,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',1636,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 10:58:04','reception','2025-10-27 10:58:29',0),(5080,2526,0,0,1514,'2025-10-27','10:59:53',1219,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1639,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 10:59:53','janvi','2025-10-27 10:59:53',0),(5081,2526,0,0,1545,'2025-10-27','00:00:00',1243,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1642,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 11:01:14','urvashi','2025-10-27 11:03:24',0),(5082,2526,0,0,1546,'2025-10-27','00:00:00',1244,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1641,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 11:02:11','janvi','2025-10-27 11:03:01',0),(5083,2526,0,0,1547,'2025-10-27','00:00:00',1245,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 11:04:13','reception','2025-10-26 23:34:13',0),(5084,2526,0,0,1548,'2025-10-27','00:00:00',1246,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1645,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 11:06:07','urvashi','2025-10-27 11:08:06',0),(5085,2526,0,0,1549,'2025-10-27','00:00:00',178,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1643,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 11:07:06','manshi','2025-10-27 11:07:17',0),(5086,2526,0,0,1550,'2025-10-27','00:00:00',709,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1644,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 11:07:27','janvi','2025-10-27 11:07:54',0),(5087,2526,0,0,1551,'2025-10-27','00:00:00',1247,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1646,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 11:09:18','reception','2025-10-27 11:10:37',0),(5088,2526,0,0,1501,'2025-10-26','19:22:00',1156,93,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',90,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 23:39:18','riya','2025-10-27 11:12:29',0),(5089,2526,0,0,1501,'2025-10-26','19:22:00',1156,93,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',90,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 23:39:18','riya','2025-10-27 11:12:29',0),(5090,2526,0,0,1501,'2025-10-26','19:22:00',1156,93,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',90,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 23:39:18','riya','2025-10-27 11:12:29',0),(5091,2526,0,0,1501,'2025-10-26','19:22:00',1156,93,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-26 23:39:18','riya','2025-10-27 11:12:29',0),(5092,2526,0,0,1501,'2025-10-26','19:22:00',1156,93,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-26 23:39:18','riya','2025-10-27 11:12:29',0),(5093,2526,0,0,1552,'2025-10-27','00:00:00',432,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 11:09:55','urvashi','2025-10-26 23:39:55',0),(5094,2526,0,0,1501,'2025-10-25','11:10:00',1156,93,'DRC','DRC0020','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,37,0,0,'',0,0,'','','','','',2526,'H','I',90,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 11:12:29','','0000-00-00 00:00:00',0),(5095,2526,0,0,1501,'2025-10-26','11:11:00',1156,93,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,37,0,0,'',0,0,'','','','','',2526,'H','I',90,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 11:12:29','','0000-00-00 00:00:00',0),(5096,2526,0,0,1501,'2025-10-25','11:11:00',1156,93,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',90,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 11:12:29','','0000-00-00 00:00:00',0),(5097,2526,0,0,1501,'2025-10-26','11:11:00',1156,93,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',90,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 11:12:29','','0000-00-00 00:00:00',0),(5098,2526,0,0,1501,'2025-10-27','11:12:00',1156,93,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',90,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 11:12:29','vishal','2025-10-29 20:33:14',0),(5099,2526,0,0,1553,'2025-10-27','00:00:00',1248,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',1647,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 11:13:54','urvashi','2025-10-27 11:14:33',0),(5100,2526,0,0,1521,'2025-10-27','11:15:14',1224,0,'XRY','XRY0449','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',1648,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 11:15:14','manshi','2025-10-27 11:15:14',0),(5101,2526,0,0,1554,'2025-10-27','00:00:00',1249,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1649,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 11:17:26','reception','2025-10-27 11:17:55',0),(5102,2526,0,0,1556,'2025-10-27','00:00:00',1250,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1650,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 11:20:12','reception','2025-10-27 11:20:42',0),(5103,2526,0,0,1558,'2025-10-27','00:00:00',721,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1651,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 11:21:09','urvashi','2025-10-27 11:21:51',0),(5104,2526,0,0,1559,'2025-10-27','00:00:00',1251,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1652,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 11:22:53','janvi','2025-10-27 11:23:31',0),(5105,2526,0,0,1560,'2025-10-27','00:00:00',1252,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1653,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 11:25:02','reception','2025-10-27 11:25:21',0),(5106,2526,0,0,1561,'2025-10-27','00:00:00',1253,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1656,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 11:27:22','janvi','2025-10-27 11:28:02',0),(5107,2526,0,0,1562,'2025-10-27','00:00:00',486,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1655,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 11:27:39','manshi','2025-10-27 11:28:01',0),(5108,2526,0,0,1563,'2025-10-27','11:25:00',0,99,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',89,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 11:28:57','riya','2025-10-29 11:53:30',0),(5109,2526,0,0,1563,'2025-10-27','11:25:00',0,99,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',89,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 11:28:57','riya','2025-10-29 11:53:30',0),(5110,2526,0,0,1563,'2025-10-27','11:25:00',0,99,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',89,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 23:58:57','riya','2025-10-29 11:53:30',0),(5111,2526,0,0,1563,'2025-10-27','11:25:00',0,99,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',89,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 23:58:57','riya','2025-10-29 11:53:30',0),(5112,2526,0,0,1563,'2025-10-27','11:25:00',0,99,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',89,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 23:58:57','riya','2025-10-29 11:53:30',0),(5113,2526,0,0,1563,'2025-10-27','11:25:00',0,99,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 23:58:57','vishal','2025-10-29 17:51:27',0),(5114,2526,0,0,1563,'2025-10-27','11:25:00',0,99,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',89,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-26 23:58:57','riya','2025-10-29 11:53:30',0),(5115,2526,0,0,1549,'2025-10-27','11:30:05',178,0,'XRY','XRY0308','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',1657,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 11:30:05','manshi','2025-10-27 11:30:05',0),(5116,2526,0,0,1564,'2025-10-27','00:00:00',1254,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1658,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 11:32:14','manshi','2025-10-27 11:32:53',0),(5117,2526,0,0,1565,'2025-10-27','00:00:00',1255,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1659,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 11:35:00','janvi','2025-10-27 11:35:38',0),(5118,2526,0,0,1566,'2025-10-27','00:00:00',47,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1660,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 11:36:03','janvi','2025-10-27 11:36:38',0),(5119,2526,0,0,1567,'2025-10-27','00:00:00',1256,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1662,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 11:36:43','urvashi','2025-10-27 11:39:43',0),(5120,2526,0,0,1568,'2025-10-27','00:00:00',1257,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',1661,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 11:38:24','reception','2025-10-27 11:38:57',0),(5121,2526,0,0,1548,'2025-10-27','11:39:58',1246,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',1663,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 11:39:58','janvi','2025-10-27 11:39:58',0),(5122,2526,0,0,1548,'2025-10-27','11:39:58',1246,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',1663,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 11:39:58','janvi','2025-10-27 11:39:58',0),(5123,2526,0,0,1526,'2025-10-27','11:40:29',645,0,'XRY','XRY0189','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',1664,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 11:40:29','manshi','2025-10-27 11:40:29',0),(5124,2526,0,0,1569,'2025-10-27','00:00:00',21,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1665,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 11:41:11','urvashi','2025-10-27 11:41:52',0),(5125,2526,0,0,1570,'2025-10-27','00:00:00',1258,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1666,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 11:41:30','reception','2025-10-27 11:42:03',0),(5126,2526,0,0,1571,'2025-10-27','00:00:00',1259,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1667,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 11:41:58','janvi','2025-10-27 11:42:12',0),(5127,2526,0,0,1572,'2025-10-27','11:43:00',1235,100,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',85,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 11:44:28','riya','2025-10-28 12:52:23',0),(5128,2526,0,0,1572,'2025-10-27','11:43:00',1235,100,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',85,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 11:44:28','riya','2025-10-28 12:52:23',0),(5129,2526,0,0,1572,'2025-10-27','11:43:00',1235,100,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',85,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 00:14:28','riya','2025-10-28 12:52:23',0),(5130,2526,0,0,1572,'2025-10-27','11:43:00',1235,100,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',85,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 00:14:28','riya','2025-10-28 12:52:23',0),(5131,2526,0,0,1572,'2025-10-27','11:43:00',1235,100,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',85,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 00:14:29','riya','2025-10-28 12:52:23',0),(5132,2526,0,0,1572,'2025-10-27','11:43:00',1235,100,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-27 00:14:29','riya','2025-10-28 12:52:23',0),(5133,2526,0,0,1572,'2025-10-27','11:43:00',1235,100,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',85,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 00:14:29','riya','2025-10-28 12:52:23',0),(5134,2526,0,0,1527,'2025-10-27','11:45:41',1228,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1668,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 11:45:41','reception','2025-10-27 11:45:41',0),(5135,2526,0,0,1527,'2025-10-27','11:45:41',1228,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1668,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 11:45:41','reception','2025-10-27 11:45:41',0),(5136,2526,0,0,1527,'2025-10-27','11:45:41',1228,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1668,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 11:45:41','reception','2025-10-27 11:45:41',0),(5137,2526,0,0,1573,'2025-10-27','00:00:00',881,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 11:46:50','manshi','2025-10-27 00:16:50',0),(5138,2526,0,0,1574,'2025-10-27','00:00:00',1260,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1669,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 11:48:14','urvashi','2025-10-27 11:49:04',0),(5139,2526,0,0,1575,'2025-10-27','00:00:00',489,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',1670,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 11:49:07','manshi','2025-10-27 11:49:29',0),(5140,2526,0,0,1576,'2025-10-27','00:00:00',1261,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1674,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 11:49:31','janvi','2025-10-27 11:51:54',0),(5141,2526,0,0,1577,'2025-10-27','00:00:00',1262,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1671,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 11:50:10','urvashi','2025-10-27 11:51:22',0),(5142,2526,0,0,1578,'2025-10-27','00:00:00',1263,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1672,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 11:51:09','manshi','2025-10-27 12:19:52',0),(5143,2526,0,0,1551,'2025-10-27','11:51:31',1247,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1673,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 11:51:31','reception','2025-10-27 11:51:31',0),(5144,2526,0,0,1551,'2025-10-27','11:51:31',1247,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1673,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 11:51:31','reception','2025-10-27 11:51:31',0),(5145,2526,0,0,1579,'2025-10-27','00:00:00',1264,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1675,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 11:52:33','urvashi','2025-10-27 11:53:19',0),(5146,2526,0,0,1580,'2025-10-27','00:00:00',1265,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 11:52:49','janvi','2025-10-27 00:22:49',0),(5147,2526,0,0,1581,'2025-10-27','00:00:00',166,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1676,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 11:54:56','urvashi','2025-10-27 11:55:10',0),(5148,2526,0,0,1582,'2025-10-27','00:00:00',1266,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1678,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 11:57:05','urvashi','2025-10-27 12:04:55',0),(5149,2526,0,0,1505,'2025-10-27','11:55:00',0,95,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','I',76,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 11:59:14','','0000-00-00 00:00:00',0),(5150,2526,0,0,1505,'2025-10-26','11:55:00',0,95,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',76,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 11:59:14','','0000-00-00 00:00:00',0),(5151,2526,0,0,1505,'2025-10-26','11:55:00',0,95,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',76,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 11:59:14','','0000-00-00 00:00:00',0),(5152,2526,0,0,1505,'2025-10-26','11:58:00',0,95,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',76,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 11:59:14','','0000-00-00 00:00:00',0),(5153,2526,0,0,1505,'2025-10-26','11:58:00',0,95,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',76,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 11:59:14','','0000-00-00 00:00:00',0),(5154,2526,0,0,1583,'2025-10-27','00:00:00',1267,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1677,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 12:01:18','urvashi','2025-10-27 12:02:10',0),(5155,2526,0,0,1584,'2025-10-27','00:00:00',1268,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1681,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 12:09:02','janvi','2025-10-27 12:59:03',0),(5156,2526,0,0,1585,'2025-10-27','00:00:00',422,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',1680,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 12:09:27','manshi','2025-10-27 12:10:06',0),(5157,2526,0,0,1540,'2025-10-27','12:09:42',1239,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1679,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:09:42','reception','2025-10-27 12:09:42',0),(5158,2526,0,0,1540,'2025-10-27','12:09:42',1239,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1679,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:09:42','reception','2025-10-27 12:09:42',0),(5159,2526,0,0,1586,'2025-10-27','00:00:00',1269,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1682,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-27 12:09:55','urvashi','2025-10-27 12:10:40',0),(5160,2526,0,0,1587,'2025-10-27','00:00:00',1270,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1684,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:12:37','reception','2025-10-27 12:14:12',0),(5161,2526,0,0,1588,'2025-10-27','00:00:00',430,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1683,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-27 12:13:12','drashti','2025-10-27 12:14:07',0),(5162,2526,0,0,1589,'2025-10-27','00:00:00',580,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1685,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 12:16:42','manshi','2025-10-27 12:17:54',0),(5163,2526,0,0,1523,'2025-10-27','12:18:12',1152,0,'WPRC','WPRC0046','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',1686,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 12:18:12','janvi','2025-10-27 12:18:12',0),(5164,2526,0,0,1590,'2025-10-27','00:00:00',1271,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1688,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:19:53','reception','2025-10-27 12:22:59',0),(5165,2526,0,0,1529,'2025-10-27','12:23:37',1230,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1689,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:23:37','reception','2025-10-27 12:23:37',0),(5166,2526,0,0,1529,'2025-10-27','12:23:37',1230,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1689,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:23:37','reception','2025-10-27 12:23:37',0),(5167,2526,0,0,1529,'2025-10-27','12:23:37',1230,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1689,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:23:37','reception','2025-10-27 12:23:37',0),(5168,2526,0,0,1533,'2025-10-27','12:28:11',1233,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1690,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:28:11','reception','2025-10-27 12:28:11',0),(5169,2526,0,0,1533,'2025-10-27','12:28:11',1233,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',1690,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:28:11','reception','2025-10-27 12:28:11',0),(5170,2526,0,0,1591,'2025-10-27','00:00:00',1272,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1691,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:31:24','reception','2025-10-27 12:32:28',0),(5171,2526,0,0,1521,'2025-10-27','12:35:26',1224,0,'WPRC','WPRC0046','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1692,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 12:35:26','manshi','2025-10-27 12:35:26',0),(5172,2526,0,0,1521,'2025-10-27','12:35:26',1224,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',1692,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 12:35:26','manshi','2025-10-27 12:35:26',0),(5173,2526,0,0,1592,'2025-10-27','00:00:00',1273,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1693,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-27 12:36:21','drashti','2025-10-27 12:37:36',0),(5174,2526,0,0,1541,'2025-10-27','12:39:38',1240,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1694,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:39:38','reception','2025-10-27 12:39:38',0),(5175,2526,0,0,1541,'2025-10-27','12:39:38',1240,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1694,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:39:38','reception','2025-10-27 12:39:38',0),(5176,2526,0,0,1505,'2025-10-26','12:37:00',0,95,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','I',76,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 12:39:45','','0000-00-00 00:00:00',0),(5177,2526,0,0,1586,'2025-10-27','12:47:37',1269,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1695,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:47:37','reception','2025-10-27 12:47:37',0),(5178,2526,0,0,1586,'2025-10-27','12:47:37',1269,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1695,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:47:37','reception','2025-10-27 12:47:37',0),(5179,2526,0,0,1586,'2025-10-27','12:47:37',1269,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1695,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:47:37','reception','2025-10-27 12:47:37',0),(5180,2526,0,0,1593,'2025-10-27','00:00:00',951,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1696,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-27 12:48:49','drashti','2025-10-27 12:49:58',0),(5181,2526,0,0,1594,'2025-10-27','12:50:08',1176,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1697,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 12:50:08','janvi','2025-10-27 12:55:57',0),(5182,2526,0,0,1595,'2025-10-27','00:00:00',1274,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1699,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 12:52:02','janvi','2025-10-27 12:53:05',0),(5183,2526,0,0,1596,'2025-10-27','00:00:00',150,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1698,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-27 12:52:31','drashti','2025-10-27 12:52:48',0),(5184,2526,0,0,1597,'2025-10-27','00:00:00',1275,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1700,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:54:05','reception','2025-10-27 12:54:27',0),(5185,2526,0,0,1598,'2025-10-27','00:00:00',182,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-27 12:56:07','drashti','2025-10-27 01:26:07',0),(5186,2526,0,0,1577,'2025-10-27','12:57:42',1262,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1702,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-27 12:57:42','drashti','2025-10-27 12:57:42',0),(5187,2526,0,0,1587,'2025-10-27','12:59:44',1270,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1704,1,125,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:59:44','reception','2025-10-27 12:59:44',0),(5188,2526,0,0,1587,'2025-10-27','12:59:44',1270,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',1704,2,750,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:59:44','reception','2025-10-27 12:59:44',0),(5189,2526,0,0,1587,'2025-10-27','12:59:44',1270,0,'NEU1','NEU10019','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1704,3,625,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 12:59:44','reception','2025-10-27 12:59:44',0),(5190,2526,0,0,1599,'2025-10-27','00:00:00',1276,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1705,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 13:07:51','janvi','2025-10-27 13:08:33',0),(5191,2526,0,0,1600,'2025-10-27','00:00:00',1277,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1706,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 13:08:48','reception','2025-10-27 13:09:19',0),(5192,2526,0,0,1504,'2025-10-26','23:00:00',0,94,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',77,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 01:42:16','riya','2025-10-27 13:14:53',0),(5193,2526,0,0,1504,'2025-10-26','23:00:00',0,94,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',77,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 01:42:16','riya','2025-10-27 13:14:53',0),(5194,2526,0,0,1504,'2025-10-26','23:00:00',0,94,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',77,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 01:42:16','riya','2025-10-27 13:14:53',0),(5195,2526,0,0,1504,'2025-10-26','23:00:00',0,94,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','408','','','',2526,'H','I',77,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 01:42:16','riya','2025-10-27 13:14:53',0),(5196,2526,0,0,1504,'2025-10-26','23:00:00',0,94,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','408','','','',2526,'H','I',77,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 01:42:16','riya','2025-10-27 13:14:53',0),(5197,2526,0,0,1553,'2025-10-27','13:13:42',1248,0,'NEU1','NEU10020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,0.00,1600,9999,0,0,'',0,0,'','','','','',2526,'H','O',1707,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 13:13:42','reception','2025-10-27 13:13:42',0),(5198,2526,0,0,1504,'2025-10-25','23:00:00',0,94,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','209','','','',2526,'H','I',77,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 01:44:58','riya','2025-10-27 13:17:09',0),(5199,2526,0,0,1504,'2025-10-25','13:15:00',0,94,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',77,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 13:17:09','','0000-00-00 00:00:00',0),(5200,2526,0,0,1504,'2025-10-25','13:15:00',0,94,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',77,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 13:17:09','','0000-00-00 00:00:00',0),(5201,2526,0,0,1504,'2025-10-26','13:15:00',0,94,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',77,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 13:17:09','','0000-00-00 00:00:00',0),(5202,2526,0,0,1504,'2025-10-26','13:16:00',0,94,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',77,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 13:17:09','','0000-00-00 00:00:00',0),(5203,2526,0,0,1504,'2025-10-27','13:16:00',0,94,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',77,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 13:17:09','','0000-00-00 00:00:00',0),(5204,2526,0,0,1504,'2025-10-25','13:16:00',0,94,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',77,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 13:17:09','','0000-00-00 00:00:00',0),(5205,2526,0,0,1504,'2025-10-26','13:16:00',0,94,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',77,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 13:17:09','','0000-00-00 00:00:00',0),(5206,2526,0,0,1601,'2025-10-27','09:30:00',627,101,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',83,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 13:19:46','riya','2025-10-28 12:20:20',0),(5207,2526,0,0,1601,'2025-10-27','09:30:00',627,101,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',83,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 13:19:46','riya','2025-10-28 12:20:20',0),(5208,2526,0,0,1601,'2025-10-27','09:30:00',627,101,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',83,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 01:49:46','riya','2025-10-28 12:20:20',0),(5209,2526,0,0,1601,'2025-10-27','09:30:00',627,101,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',83,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 01:49:46','riya','2025-10-28 12:20:20',0),(5210,2526,0,0,1601,'2025-10-27','09:30:00',627,101,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',83,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 01:49:46','riya','2025-10-28 12:20:20',0),(5211,2526,0,0,1601,'2025-10-27','09:30:00',627,101,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',83,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 01:49:46','riya','2025-10-28 12:20:20',0),(5212,2526,0,0,1601,'2025-10-27','09:30:00',627,101,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',83,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 01:49:46','riya','2025-10-28 12:20:20',0),(5213,2526,0,0,1437,'2025-10-25','19:47:00',1134,90,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',79,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'drjayant','2025-10-27 01:51:27','riya','2025-10-27 18:11:45',0),(5214,2526,0,0,1437,'2025-10-26','19:47:00',1134,90,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',79,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'drjayant','2025-10-27 01:51:27','riya','2025-10-27 18:11:45',0),(5215,2526,0,0,1437,'2025-10-25','19:47:00',1134,90,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',79,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'drjayant','2025-10-27 01:51:27','riya','2025-10-27 18:11:45',0),(5216,2526,0,0,1437,'2025-10-26','19:47:00',1134,90,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',79,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'drjayant','2025-10-27 01:51:27','riya','2025-10-27 18:11:45',0),(5217,2526,0,0,1437,'2025-10-25','19:47:00',1134,90,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',79,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'drjayant','2025-10-27 01:51:27','vishal','2025-10-27 18:29:05',0),(5218,2526,0,0,1437,'2025-10-26','19:47:00',1134,90,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',79,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'drjayant','2025-10-27 01:51:27','riya','2025-10-27 18:11:45',0),(5219,2526,0,0,1437,'2025-10-26','19:47:00',1134,90,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','411','','','',2526,'H','I',79,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'drjayant','2025-10-27 01:51:27','riya','2025-10-27 18:11:45',0),(5220,2526,0,0,1437,'2025-10-27','19:47:00',1134,90,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','411','','','',2526,'H','I',79,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'drjayant','2025-10-27 01:51:27','riya','2025-10-27 18:11:45',0),(5221,2526,0,0,1437,'2025-10-26','19:47:00',1134,90,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','411','','','',2526,'H','I',79,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'drjayant','2025-10-27 01:51:27','riya','2025-10-27 18:11:45',0),(5222,2526,0,0,1437,'2025-10-27','19:47:00',1134,90,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','411','','','',2526,'H','I',79,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'drjayant','2025-10-27 01:51:27','vishal','2025-10-27 18:29:05',0),(5223,2526,0,0,1602,'2025-10-27','00:00:00',1278,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1708,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 13:21:37','reception','2025-10-27 13:21:47',0),(5224,2526,0,0,1603,'2025-10-27','00:00:00',1279,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1709,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-27 13:23:08','drashti','2025-10-27 13:24:29',0),(5225,2526,0,0,1604,'2025-10-27','00:00:00',165,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1710,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 13:51:33','janvi','2025-10-27 13:51:42',0),(5226,2526,0,0,1605,'2025-10-27','00:00:00',1280,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1711,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 13:55:13','janvi','2025-10-27 13:55:55',0),(5227,2526,0,0,1575,'2025-10-27','14:13:12',489,0,'WPRC','WPRC0046','H','N',1.00,7000,7000,'P',0,0,0.00,0.00,0.00,7000,7,0,0,'',0,0,'','','','','',2526,'H','O',1712,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-27 14:13:12','drashti','2025-10-27 14:13:12',0),(5228,2526,0,0,414,'2025-10-26','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 03:40:11','riya','2025-10-27 15:16:54',0),(5229,2526,0,0,414,'2025-10-27','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 03:40:11','riya','2025-10-27 15:16:54',0),(5230,2526,0,0,414,'2025-10-26','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 03:40:11','riya','2025-10-27 15:16:54',0),(5231,2526,0,0,414,'2025-10-27','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 03:40:11','riya','2025-10-27 15:16:54',0),(5232,2526,0,0,414,'2025-10-26','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 03:40:11','riya','2025-10-27 15:16:54',0),(5233,2526,0,0,414,'2025-10-27','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 03:40:11','riya','2025-10-27 15:16:54',0),(5234,2526,0,0,414,'2025-10-26','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 03:40:11','vishal','2025-11-01 14:23:26',0),(5235,2526,0,0,414,'2025-10-27','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 03:40:11','riya','2025-10-27 15:16:54',0),(5236,2526,0,0,414,'2025-10-26','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 03:40:11','vishal','2025-11-01 14:23:26',0),(5237,2526,0,0,414,'2025-10-27','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 03:40:11','vishal','2025-11-01 14:43:03',0),(5238,2526,0,0,414,'2025-10-26','15:10:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:16:54','','0000-00-00 00:00:00',0),(5239,2526,0,0,414,'2025-10-27','15:10:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:16:54','','0000-00-00 00:00:00',0),(5240,2526,0,0,414,'2025-10-26','15:10:00',0,25,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:16:54','vishal','2025-11-01 14:34:19',0),(5241,2526,0,0,414,'2025-10-27','15:11:00',0,25,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:16:54','','0000-00-00 00:00:00',0),(5242,2526,0,0,414,'2025-10-26','15:13:00',0,25,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:16:54','','0000-00-00 00:00:00',0),(5243,2526,0,0,414,'2025-10-27','15:13:00',0,25,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:16:54','','0000-00-00 00:00:00',0),(5244,2526,0,0,414,'2025-10-26','15:14:00',0,25,'WPRC','WPRC0089','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:16:54','','0000-00-00 00:00:00',0),(5245,2526,0,0,414,'2025-10-27','15:14:00',0,25,'WPRC','WPRC0089','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:16:54','','0000-00-00 00:00:00',0),(5246,2526,0,0,414,'2025-10-26','15:14:00',0,25,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:16:54','','0000-00-00 00:00:00',0),(5247,2526,0,0,414,'2025-10-27','15:15:00',0,25,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:16:54','','0000-00-00 00:00:00',0),(5248,2526,0,0,414,'2025-10-26','15:15:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:16:54','','0000-00-00 00:00:00',0),(5249,2526,0,0,414,'2025-10-27','15:15:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:16:54','','0000-00-00 00:00:00',0),(5250,2526,0,0,414,'2025-10-26','15:15:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:16:54','vishal','2025-11-01 14:43:03',0),(5251,2526,0,0,414,'2025-10-27','15:15:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:16:54','','0000-00-00 00:00:00',0),(5252,2526,0,0,1438,'2025-10-27','15:17:00',1139,91,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:18:51','','0000-00-00 00:00:00',0),(5253,2526,0,0,1438,'2025-10-27','15:17:00',1139,91,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:18:51','','0000-00-00 00:00:00',0),(5254,2526,0,0,1438,'2025-10-27','15:18:00',1139,91,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:18:51','','0000-00-00 00:00:00',0),(5255,2526,0,0,1443,'2025-10-26','09:37:00',1149,92,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',232,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 03:49:21','riya','2025-10-27 15:21:49',0),(5256,2526,0,0,1443,'2025-10-26','09:37:00',1149,92,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',232,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 03:49:21','riya','2025-10-27 15:21:49',0),(5257,2526,0,0,1443,'2025-10-26','09:37:00',1149,92,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',232,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 03:49:21','riya','2025-10-27 15:21:49',0),(5258,2526,0,0,1443,'2025-10-26','09:37:00',1149,92,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',2526,'H','I',232,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 03:49:21','riya','2025-10-27 15:21:49',0),(5259,2526,0,0,1443,'2025-10-26','09:37:00',1149,92,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',2526,'H','I',232,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 03:49:21','riya','2025-10-27 15:21:49',0),(5260,2526,0,0,1443,'2025-10-25','15:19:00',1149,92,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',232,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:21:49','','0000-00-00 00:00:00',0),(5261,2526,0,0,1443,'2025-10-25','15:19:00',1149,92,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',232,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:21:49','','0000-00-00 00:00:00',0),(5262,2526,0,0,1443,'2025-10-27','15:19:00',1149,92,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,3,0,0,'',0,0,'','','','','',2526,'H','I',232,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:21:49','','0000-00-00 00:00:00',0),(5263,2526,0,0,1443,'2025-10-27','15:21:00',1149,92,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',232,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:21:49','','0000-00-00 00:00:00',0),(5264,2526,0,0,1443,'2025-10-25','15:21:00',1149,92,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','','','','',2526,'H','I',232,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 15:21:49','','0000-00-00 00:00:00',0),(5265,2526,0,0,1606,'2025-10-27','00:00:00',1281,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1714,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-27 16:22:22','drashti','2025-10-27 16:25:37',0),(5266,2526,0,0,1607,'2025-10-27','00:00:00',1282,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1713,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-27 16:23:53','drashti','2025-10-27 16:25:14',0),(5267,2526,0,0,1608,'2025-10-27','00:00:00',1283,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1715,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 16:35:37','reception','2025-10-27 16:35:56',0),(5268,2526,0,0,1519,'2025-10-27','16:34:00',1133,97,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',78,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 16:36:34','','0000-00-00 00:00:00',0),(5269,2526,0,0,1519,'2025-10-27','16:34:00',1133,97,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',78,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 16:36:34','','0000-00-00 00:00:00',0),(5270,2526,0,0,1519,'2025-10-27','16:34:00',1133,97,'SURG','SURG0015','H','N',1.00,11200,11200,'P',0,0,0.00,0.00,11200.00,11200,3,0,0,'',0,0,'','','','','',2526,'H','I',78,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 16:36:34','riya','2025-10-27 16:39:08',0),(5271,2526,0,0,1519,'2025-10-27','16:35:00',1133,97,'SURG','SURG0014','H','N',1.00,3700,3700,'P',0,0,0.00,0.00,3700.00,3700,3,0,0,'',0,0,'','','','','',2526,'H','I',78,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 16:36:34','riya','2025-10-27 16:39:08',0),(5272,2526,0,0,1609,'2025-10-27','00:00:00',982,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1716,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 16:41:48','reception','2025-10-27 16:43:32',0),(5273,2526,0,0,1610,'2025-10-27','00:00:00',1284,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1717,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 16:45:56','reception','2025-10-27 16:46:41',0),(5274,2526,0,0,1293,'2025-10-26','10:15:00',0,78,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 05:30:54','riya','2025-10-28 11:43:32',0),(5275,2526,0,0,1293,'2025-10-27','10:15:00',0,78,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 05:30:54','riya','2025-10-28 11:43:32',0),(5276,2526,0,0,1293,'2025-10-26','10:15:00',0,78,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 05:30:54','riya','2025-10-28 11:43:32',0),(5277,2526,0,0,1293,'2025-10-27','10:15:00',0,78,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 05:30:54','riya','2025-10-28 11:43:32',0),(5278,2526,0,0,1293,'2025-10-26','10:15:00',0,78,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 05:30:54','riya','2025-10-28 11:43:32',0),(5279,2526,0,0,1293,'2025-10-27','10:15:00',0,78,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 05:30:54','riya','2025-10-28 11:43:32',0),(5280,2526,0,0,1293,'2025-10-26','10:15:00',0,78,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 05:30:54','riya','2025-10-28 11:43:32',0),(5281,2526,0,0,1293,'2025-10-27','10:15:00',0,78,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 05:30:54','riya','2025-10-28 11:43:32',0),(5282,2526,0,0,1293,'2025-10-26','10:15:00',0,78,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 05:30:54','riya','2025-10-28 11:43:32',0),(5283,2526,0,0,1293,'2025-10-27','10:15:00',0,78,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',81,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 05:30:54','riya','2025-10-28 11:43:32',0),(5284,2526,0,0,1506,'2025-10-27','12:17:00',184,96,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',80,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 05:30:55','vishal','2025-10-27 21:19:44',0),(5285,2526,0,0,1506,'2025-10-27','12:17:00',184,96,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',80,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 05:30:55','vishal','2025-10-27 21:19:44',0),(5286,2526,0,0,1506,'2025-10-27','12:17:00',184,96,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',80,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 05:30:55','vishal','2025-10-27 21:19:44',0),(5287,2526,0,0,1506,'2025-10-27','12:17:00',184,96,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',80,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 05:30:55','vishal','2025-10-27 21:19:44',0),(5288,2526,0,0,1506,'2025-10-27','12:17:00',184,96,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',80,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 05:30:55','vishal','2025-10-27 21:19:44',0),(5289,2526,0,0,1606,'2025-10-27','17:12:58',1281,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1718,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 17:12:58','reception','2025-10-27 17:12:58',0),(5290,2526,0,0,1606,'2025-10-27','17:12:58',1281,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1718,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 17:12:58','reception','2025-10-27 17:12:58',0),(5291,2526,0,0,1606,'2025-10-27','17:12:58',1281,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1718,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 17:12:58','reception','2025-10-27 17:12:58',0),(5292,2526,0,0,1611,'2025-10-27','17:16:27',1278,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1719,1,69,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 17:16:27','reception','2025-10-27 17:16:27',0),(5293,2526,0,0,1611,'2025-10-27','17:16:27',1278,0,'NEU1','NEU10017','H','N',1.00,3100,3100,'P',0,0,0.00,0.00,0.00,3100,9999,0,0,'',0,0,'','','','','',2526,'H','O',1719,2,431,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 17:16:27','reception','2025-10-27 17:16:27',0),(5294,2526,0,0,1612,'2025-10-27','00:00:00',79,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',1720,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 17:19:10','reception','2025-10-27 17:19:32',0),(5295,2526,0,0,1613,'2025-10-27','00:00:00',1285,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1721,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 17:21:08','reception','2025-10-27 17:21:24',0),(5296,2526,0,0,1614,'2025-10-27','00:00:00',1286,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1722,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 17:22:29','reception','2025-10-27 17:23:00',0),(5297,2526,0,0,1608,'2025-10-27','17:25:05',1283,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1723,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 17:25:05','reception','2025-10-27 17:25:05',0),(5298,2526,0,0,1608,'2025-10-27','17:25:05',1283,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1723,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 17:25:05','reception','2025-10-27 17:25:05',0),(5299,2526,0,0,1608,'2025-10-27','17:25:05',1283,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1723,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 17:25:05','reception','2025-10-27 17:25:05',0),(5300,2526,0,0,1615,'2025-10-27','17:27:50',303,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1724,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 17:27:50','janvi','2025-10-27 17:27:50',0),(5301,2526,0,0,1617,'2025-10-27','00:00:00',1287,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1725,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 17:34:05','reception','2025-10-27 17:34:34',0),(5302,2526,0,0,1619,'2025-10-27','00:00:00',1288,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1726,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-27 17:42:13','drashti','2025-10-27 17:42:57',0),(5303,2526,0,0,1620,'2025-10-27','00:00:00',1289,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1727,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 17:44:09','manshi','2025-10-27 17:44:27',0),(5304,2526,0,0,1621,'2025-10-27','00:00:00',1290,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',1728,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 17:44:37','reception','2025-10-27 17:47:39',0),(5305,2526,0,0,1622,'2025-10-27','00:00:00',1291,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1729,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 17:45:45','reception','2025-10-27 17:47:48',0),(5306,2526,0,0,1623,'2025-10-27','00:00:00',451,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1731,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 17:49:15','janvi','2025-10-27 17:52:14',0),(5307,2526,0,0,1613,'2025-10-27','17:52:05',1285,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1730,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 17:52:05','reception','2025-10-27 17:52:05',0),(5308,2526,0,0,1613,'2025-10-27','17:52:05',1285,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1730,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 17:52:05','reception','2025-10-27 17:52:05',0),(5309,2526,0,0,1613,'2025-10-27','17:52:05',1285,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1730,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 17:52:05','reception','2025-10-27 17:52:05',0),(5310,2526,0,0,1624,'2025-10-27','00:00:00',1292,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1732,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 17:57:28','reception','2025-10-27 17:57:46',0),(5311,2526,0,0,1625,'2025-10-27','17:58:01',1103,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1733,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 17:58:01','janvi','2025-10-27 17:58:01',0),(5312,2526,0,0,1626,'2025-10-27','00:00:00',1293,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1734,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 18:00:26','janvi','2025-10-27 18:01:02',0),(5313,2526,0,0,1616,'2025-10-27','18:01:43',1132,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1735,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 18:01:43','janvi','2025-10-27 18:01:43',0),(5314,2526,0,0,1627,'2025-10-27','00:00:00',901,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1736,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 18:02:01','manshi','2025-10-27 18:02:30',0),(5315,2526,0,0,1617,'2025-10-27','18:05:56',1287,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1737,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 18:05:56','reception','2025-10-27 18:05:56',0),(5316,2526,0,0,1617,'2025-10-27','18:05:56',1287,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1737,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 18:05:56','reception','2025-10-27 18:05:56',0),(5317,2526,0,0,1617,'2025-10-27','18:05:56',1287,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1737,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 18:05:56','reception','2025-10-27 18:05:56',0),(5318,2526,0,0,1628,'2025-10-27','00:00:00',1294,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1738,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 18:09:07','janvi','2025-10-27 18:10:23',0),(5319,2526,0,0,1629,'2025-10-27','00:00:00',1295,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',1739,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 18:09:14','reception','2025-10-27 18:10:45',0),(5320,2526,0,0,1618,'2025-10-27','18:11:48',1004,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1740,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 18:11:48','janvi','2025-10-27 18:11:48',0),(5321,2526,0,0,1630,'2025-10-27','00:00:00',1296,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1741,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 18:20:19','janvi','2025-10-27 18:21:10',0),(5322,2526,0,0,1631,'2025-10-27','00:00:00',1297,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1742,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 18:22:09','janvi','2025-10-27 18:23:41',0),(5323,2526,0,0,1632,'2025-10-27','00:00:00',1298,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1743,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 18:24:06','reception','2025-10-27 18:24:23',0),(5324,2526,0,0,1633,'2025-10-27','00:00:00',1299,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',1744,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 18:27:47','reception','2025-10-27 18:28:24',0),(5325,2526,0,0,1437,'2025-10-25','18:25:00',1134,90,'USG','USG0094','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,5,0,0,'',0,0,'','','','','',2526,'H','I',79,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 18:28:06','vishal','2025-10-27 18:30:01',0),(5326,2526,0,0,1634,'2025-10-27','00:00:00',1300,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1746,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 18:28:47','janvi','2025-10-27 18:30:00',0),(5327,2526,0,0,1622,'2025-10-27','18:29:48',1291,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1745,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 18:29:48','reception','2025-10-27 18:29:48',0),(5328,2526,0,0,1622,'2025-10-27','18:29:48',1291,0,'NEU1','NEU10020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1745,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 18:29:48','reception','2025-10-27 18:29:48',0),(5329,2526,0,0,1635,'2025-10-27','00:00:00',1301,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1760,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 18:31:12','janvi','2025-10-27 18:55:00',0),(5330,2526,0,0,1636,'2025-10-27','00:00:00',1302,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1747,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 18:32:38','manshi','2025-10-27 18:33:20',0),(5331,2526,0,0,1637,'2025-10-27','00:00:00',291,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 18:34:00','janvi','2025-10-27 07:04:00',0),(5332,2526,0,0,1638,'2025-10-27','00:00:00',1303,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1748,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 18:36:21','reception','2025-10-27 18:37:18',0),(5333,2526,0,0,1639,'2025-10-27','00:00:00',1304,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1749,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 18:37:00','janvi','2025-10-27 18:37:34',0),(5334,2526,0,0,1640,'2025-10-27','00:00:00',1305,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1752,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 18:40:15','janvi','2025-10-27 18:41:17',0),(5335,2526,0,0,1641,'2025-10-27','00:00:00',1306,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1750,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 18:40:37','reception','2025-10-27 18:40:49',0),(5336,2526,0,0,1642,'2025-10-27','00:00:00',1060,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1751,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 18:40:56','manshi','2025-10-27 18:41:16',0),(5337,2526,0,0,1637,'2025-10-27','18:42:01',291,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1753,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 18:42:01','janvi','2025-10-27 18:42:01',0),(5338,2526,0,0,1636,'2025-10-27','18:44:43',1302,0,'XRY','XRY0358','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',1754,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 18:44:43','manshi','2025-10-27 18:44:43',0),(5339,2526,0,0,1636,'2025-10-27','18:44:43',1302,0,'XRY','XRY0390','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',1754,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 18:44:43','manshi','2025-10-27 18:44:43',0),(5340,2526,0,0,1643,'2025-10-27','00:00:00',1307,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1755,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-27 18:44:51','shweta','2025-10-27 18:45:10',0),(5341,2526,0,0,1644,'2025-10-27','00:00:00',1308,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1756,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 18:47:12','reception','2025-10-27 18:48:29',0),(5342,2526,0,0,1645,'2025-10-27','00:00:00',1309,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1758,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 18:50:41','janvi','2025-10-27 18:52:26',0),(5343,2526,0,0,1646,'2025-10-27','00:00:00',1310,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',1757,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 18:51:40','reception','2025-10-27 18:52:12',0),(5344,2526,0,0,1647,'2025-10-27','00:00:00',1311,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1759,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-27 18:51:46','shweta','2025-10-27 18:52:49',0),(5345,2526,0,0,1648,'2025-10-27','00:00:00',435,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1761,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-27 18:55:01','manshi','2025-10-27 18:55:43',0),(5346,2526,0,0,1649,'2025-10-27','00:00:00',1312,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1762,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 18:57:08','reception','2025-10-27 18:57:54',0),(5347,2526,0,0,1650,'2025-10-27','00:00:00',1313,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1764,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-27 19:04:04','shweta','2025-10-27 19:08:38',0),(5348,2526,0,0,1651,'2025-10-27','00:00:00',1314,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1763,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 19:05:02','reception','2025-10-27 19:05:39',0),(5349,2526,0,0,1653,'2025-10-27','00:00:00',954,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 19:07:52','janvi','2025-10-27 07:37:52',0),(5350,2526,0,0,1654,'2025-10-27','00:00:00',1315,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1765,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 19:13:39','reception','2025-10-27 20:46:12',0),(5351,2526,0,0,1641,'2025-10-27','19:19:06',1306,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1766,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 19:19:06','reception','2025-10-27 19:19:06',0),(5352,2526,0,0,1641,'2025-10-27','19:19:06',1306,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1766,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 19:19:06','reception','2025-10-27 19:19:06',0),(5353,2526,0,0,1641,'2025-10-27','19:19:06',1306,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1766,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 19:19:06','reception','2025-10-27 19:19:06',0),(5354,2526,0,0,1655,'2025-10-27','00:00:00',1316,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1768,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 19:20:30','janvi','2025-10-27 19:20:45',0),(5355,2526,0,0,1650,'2025-10-27','19:20:38',1313,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',1767,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-27 19:20:38','shweta','2025-10-27 19:20:38',0),(5356,2526,0,0,1656,'2025-10-27','00:00:00',1317,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1769,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-27 19:31:07','janvi','2025-10-27 19:32:27',0),(5357,2526,0,0,168,'2025-10-09','09:30:00',0,14,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','D',86,2,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 08:10:20','vishal','2025-10-27 19:42:54',0),(5358,2526,0,0,168,'2025-10-09','09:30:00',0,14,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','D',86,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 08:10:20','vishal','2025-10-27 19:42:54',0),(5359,2526,0,0,168,'2025-10-09','09:30:00',0,14,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','D',86,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 08:10:20','vishal','2025-10-27 19:42:54',0),(5360,2526,0,0,168,'2025-10-09','09:30:00',0,14,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','D',86,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 08:10:20','vishal','2025-10-27 19:42:54',0),(5361,2526,0,0,168,'2025-10-09','09:30:00',0,14,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','D',86,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 08:10:20','vishal','2025-10-27 19:42:54',0),(5362,2526,0,0,1657,'2025-10-27','00:00:00',1318,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1770,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-27 19:42:17','shweta','2025-10-27 19:44:16',0),(5363,2526,0,0,1658,'2025-10-27','00:00:00',1319,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1771,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-27 19:45:23','shweta','2025-10-27 19:46:12',0),(5364,2526,0,0,1659,'2025-10-27','00:00:00',1320,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1772,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-27 19:48:26','shweta','2025-10-27 19:49:58',0),(5365,2526,0,0,1660,'2025-10-27','07:45:00',0,102,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 20:06:14','riya','2025-10-28 11:31:42',0),(5366,2526,0,0,1660,'2025-10-27','07:45:00',0,102,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 20:06:14','riya','2025-10-28 11:31:42',0),(5367,2526,0,0,1660,'2025-10-27','07:45:00',0,102,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',93,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 08:36:14','riya','2025-10-28 11:31:42',0),(5368,2526,0,0,1660,'2025-10-27','07:45:00',0,102,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',93,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 08:36:14','riya','2025-10-28 11:31:42',0),(5369,2526,0,0,1660,'2025-10-27','07:45:00',0,102,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',93,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 08:36:14','riya','2025-10-28 11:31:42',0),(5370,2526,0,0,1660,'2025-10-27','07:45:00',0,102,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 08:36:14','riya','2025-10-28 11:37:26',0),(5371,2526,0,0,1660,'2025-10-27','07:45:00',0,102,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',93,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 08:36:14','riya','2025-10-28 11:31:42',0),(5372,2526,0,0,1661,'2025-10-27','00:00:00',1321,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1773,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-27 20:10:19','shweta','2025-10-27 20:10:36',0),(5373,2526,0,0,1652,'2025-10-27','20:22:32',442,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',1774,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-27 20:22:32','shweta','2025-10-27 20:22:32',0),(5374,2526,0,0,1662,'2025-10-27','00:00:00',1322,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1775,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 20:39:49','reception','2025-10-27 20:41:10',0),(5375,2526,0,0,283,'2025-10-09','20:00:00',0,20,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 09:15:13','','0000-00-00 00:00:00',0),(5376,2526,0,0,283,'2025-10-10','20:00:00',0,20,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 09:15:13','','0000-00-00 00:00:00',0),(5377,2526,0,0,283,'2025-10-09','20:00:00',0,20,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 09:15:13','','0000-00-00 00:00:00',0),(5378,2526,0,0,283,'2025-10-10','20:00:00',0,20,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 09:15:13','','0000-00-00 00:00:00',0),(5379,2526,0,0,283,'2025-10-09','20:00:00',0,20,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 09:15:13','','0000-00-00 00:00:00',0),(5380,2526,0,0,283,'2025-10-10','20:00:00',0,20,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 09:15:13','','0000-00-00 00:00:00',0),(5381,2526,0,0,283,'2025-10-09','20:00:00',0,20,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 09:15:13','','0000-00-00 00:00:00',0),(5382,2526,0,0,283,'2025-10-10','20:00:00',0,20,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 09:15:13','','0000-00-00 00:00:00',0),(5383,2526,0,0,283,'2025-10-09','20:00:00',0,20,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 09:15:13','','0000-00-00 00:00:00',0),(5384,2526,0,0,283,'2025-10-10','20:00:00',0,20,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 09:15:13','','0000-00-00 00:00:00',0),(5385,2526,0,0,1659,'2025-10-27','20:45:42',1320,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',1776,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 20:45:42','reception','2025-10-27 20:45:42',0),(5386,2526,0,0,1654,'2025-10-27','20:47:01',1315,0,'PKG','CASE','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1778,1,300,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-27 20:47:01','reception','2025-10-27 20:47:01',0),(5387,2526,0,0,1506,'2025-10-26','21:19:00',184,96,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',80,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-27 21:19:44','','0000-00-00 00:00:00',0),(5388,2526,0,0,1663,'2025-10-28','00:00:00',1323,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1779,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-28 09:07:38','urvashi','2025-10-28 09:09:15',0),(5389,2526,0,0,1664,'2025-10-28','00:00:00',1324,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1780,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 09:29:30','reception','2025-10-28 09:30:09',0),(5390,2526,0,0,1665,'2025-10-28','00:00:00',1325,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1784,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 09:40:57','janvi','2025-10-28 10:06:22',0),(5391,2526,0,0,1666,'2025-10-28','00:00:00',1326,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1781,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 09:44:39','reception','2025-10-28 09:45:12',0),(5392,2526,0,0,1667,'2025-10-28','00:00:00',1327,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1782,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 09:49:43','reception','2025-10-28 09:50:22',0),(5393,2526,0,0,1668,'2025-10-28','00:00:00',1328,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1783,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 10:04:40','reception','2025-10-28 10:05:34',0),(5394,2526,0,0,1669,'2025-10-28','00:00:00',1329,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1785,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 10:07:47','drashti','2025-10-28 10:08:30',0),(5395,2526,0,0,1670,'2025-10-28','00:00:00',1330,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1786,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 10:08:53','janvi','2025-10-28 10:09:27',0),(5396,2526,0,0,1671,'2025-10-28','00:00:00',1331,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1787,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 10:21:15','janvi','2025-10-28 10:22:02',0),(5397,2526,0,0,1672,'2025-10-28','00:00:00',1332,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1788,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 10:26:58','reception','2025-10-28 10:27:15',0),(5398,2526,0,0,1673,'2025-10-28','00:00:00',1333,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1789,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 10:30:13','janvi','2025-10-28 10:30:57',0),(5399,2526,0,0,1674,'2025-10-28','00:00:00',1334,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1790,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 10:44:09','janvi','2025-10-28 10:44:36',0),(5400,2526,0,0,1675,'2025-10-28','00:00:00',1335,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1791,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 10:48:10','reception','2025-10-28 10:48:30',0),(5401,2526,0,0,1676,'2025-10-28','00:00:00',1336,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1792,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 10:57:13','drashti','2025-10-28 10:58:11',0),(5402,2526,0,0,1677,'2025-10-28','00:00:00',1337,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1793,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 10:57:28','janvi','2025-10-28 10:58:31',0),(5403,2526,0,0,1667,'2025-10-28','10:59:04',1327,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1794,1,287,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 10:59:04','reception','2025-10-28 10:59:04',0),(5404,2526,0,0,1667,'2025-10-28','10:59:04',1327,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1794,2,287,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 10:59:04','reception','2025-10-28 10:59:04',0),(5405,2526,0,0,1667,'2025-10-28','10:59:04',1327,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1794,3,326,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 10:59:04','reception','2025-10-28 10:59:04',0),(5406,2526,0,0,1678,'2025-10-28','00:00:00',43,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1795,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 11:00:18','janvi','2025-10-28 11:00:32',0),(5407,2526,0,0,1679,'2025-10-28','00:00:00',479,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1796,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-28 11:01:08','manshi','2025-10-28 11:01:28',0),(5408,2526,0,0,1680,'2025-10-28','00:00:00',1338,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1797,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 11:01:39','reception','2025-10-28 11:02:15',0),(5409,2526,0,0,1681,'2025-10-28','00:00:00',1339,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1798,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 11:04:49','drashti','2025-10-28 11:05:56',0),(5410,2526,0,0,1682,'2025-10-28','00:00:00',916,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 11:05:44','drashti','2025-10-27 23:35:44',0),(5411,2526,0,0,1672,'2025-10-28','11:07:15',1332,0,'WPRC','WPRC0046','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,3,0,0,'',0,0,'','','','','',2526,'H','O',1799,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 11:07:15','janvi','2025-10-28 11:07:15',0),(5412,2526,0,0,1666,'2025-10-28','11:07:22',1326,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1800,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 11:07:22','reception','2025-10-28 11:07:22',0),(5413,2526,0,0,1666,'2025-10-28','11:07:22',1326,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1800,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 11:07:22','reception','2025-10-28 11:07:22',0),(5414,2526,0,0,1683,'2025-10-28','00:00:00',521,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1801,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 11:09:51','reception','2025-10-28 11:10:54',0),(5415,2526,0,0,1684,'2025-10-28','00:00:00',1340,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1802,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 11:11:55','reception','2025-10-28 11:12:10',0),(5416,2526,0,0,1685,'2025-10-28','00:00:00',1341,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1803,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-28 11:15:19','manshi','2025-10-28 11:16:12',0),(5417,2526,0,0,1438,'2025-10-27','20:16:00',1139,91,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 23:48:35','riya','2025-10-28 11:20:20',0),(5418,2526,0,0,1438,'2025-10-27','20:16:00',1139,91,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 23:48:35','riya','2025-10-28 11:20:20',0),(5419,2526,0,0,1438,'2025-10-27','20:16:00',1139,91,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 23:48:35','riya','2025-10-28 11:20:20',0),(5420,2526,0,0,1438,'2025-10-27','20:16:00',1139,91,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','408','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 23:48:35','riya','2025-10-28 11:20:20',0),(5421,2526,0,0,1438,'2025-10-27','20:16:00',1139,91,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','408','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 23:48:36','riya','2025-10-28 11:20:20',0),(5422,2526,0,0,1438,'2025-10-27','11:18:00',1139,91,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:20:20','','0000-00-00 00:00:00',0),(5423,2526,0,0,1438,'2025-10-28','11:19:00',1139,91,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:20:20','','0000-00-00 00:00:00',0),(5424,2526,0,0,1438,'2025-10-28','11:19:00',1139,91,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,41,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:20:20','riya','2025-10-29 11:57:32',0),(5425,2526,0,0,1686,'2025-10-28','00:00:00',1342,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 11:22:40','reception','2025-10-27 23:52:40',0),(5426,2526,0,0,414,'2025-10-28','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',0,'','',0,199,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 23:52:52','riya','2025-10-29 11:01:56',0),(5427,2526,0,0,414,'2025-10-28','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',0,'','',0,200,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 23:52:52','riya','2025-10-29 11:01:56',0),(5428,2526,0,0,414,'2025-10-28','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',0,'','',0,201,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 23:52:52','riya','2025-10-29 11:01:56',0),(5429,2526,0,0,414,'2025-10-28','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 23:52:52','riya','2025-10-28 11:26:38',0),(5430,2526,0,0,414,'2025-10-28','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-27 23:52:52','vishal','2025-11-01 14:23:26',0),(5431,2526,0,0,1679,'2025-10-28','11:23:33',479,0,'XRY','XRY0449','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',1804,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-28 11:23:33','manshi','2025-10-28 11:23:33',0),(5432,2526,0,0,1688,'2025-10-28','00:00:00',1343,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1806,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 11:26:30','janvi','2025-10-28 11:27:10',0),(5433,2526,0,0,414,'2025-10-28','11:23:00',0,25,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:26:38','','0000-00-00 00:00:00',0),(5434,2526,0,0,414,'2025-10-28','11:23:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:26:38','','0000-00-00 00:00:00',0),(5435,2526,0,0,414,'2025-10-28','11:23:00',0,25,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:26:38','','0000-00-00 00:00:00',0),(5436,2526,0,0,1689,'2025-10-28','00:00:00',1344,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1805,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 11:26:39','drashti','2025-10-28 11:26:56',0),(5437,2526,0,0,1675,'2025-10-28','11:27:18',1335,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1807,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 11:27:18','reception','2025-10-28 11:27:18',0),(5438,2526,0,0,1675,'2025-10-28','11:27:18',1335,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1807,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 11:27:18','reception','2025-10-28 11:27:18',0),(5439,2526,0,0,1690,'2025-10-28','00:00:00',1345,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1809,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 11:28:52','drashti','2025-10-28 11:29:40',0),(5440,2526,0,0,1685,'2025-10-28','11:29:23',1341,0,'XRY','XRY0100','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',1808,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-28 11:29:23','manshi','2025-10-28 11:29:23',0),(5441,2526,0,0,1691,'2025-10-28','00:00:00',1346,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1810,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 11:29:41','reception','2025-10-28 11:30:26',0),(5442,2526,0,0,1692,'2025-10-28','00:00:00',1347,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1811,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 11:31:08','drashti','2025-10-28 11:31:55',0),(5443,2526,0,0,1660,'2025-10-27','11:29:00',0,102,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:31:42','','0000-00-00 00:00:00',0),(5444,2526,0,0,1660,'2025-10-27','11:29:00',0,102,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:31:42','','0000-00-00 00:00:00',0),(5445,2526,0,0,1660,'2025-10-28','11:30:00',0,102,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:31:42','','0000-00-00 00:00:00',0),(5446,2526,0,0,1660,'2025-10-27','11:30:00',0,102,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:31:42','','0000-00-00 00:00:00',0),(5447,2526,0,0,1660,'2025-10-27','11:30:00',0,102,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:31:42','','0000-00-00 00:00:00',0),(5448,2526,0,0,1660,'2025-10-28','11:31:00',0,102,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:31:42','','0000-00-00 00:00:00',0),(5449,2526,0,0,1660,'2025-10-27','11:31:00',0,102,'XRY','XRY0045','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:31:42','riya','2025-10-29 13:22:45',0),(5450,2526,0,0,1693,'2025-10-28','00:00:00',1348,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1812,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 11:32:06','reception','2025-10-28 11:32:17',0),(5451,2526,0,0,1694,'2025-10-28','11:33:08',1162,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1813,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 11:33:08','janvi','2025-10-28 11:33:08',0),(5452,2526,0,0,1695,'2025-10-28','00:00:00',1349,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1814,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 11:35:50','reception','2025-10-28 11:36:15',0),(5453,2526,0,0,1696,'2025-10-28','00:00:00',1350,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1815,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 11:37:55','reception','2025-10-28 11:38:26',0),(5454,2526,0,0,1697,'2025-10-28','00:00:00',1351,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1816,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 11:39:58','reception','2025-10-28 11:40:29',0),(5455,2526,0,0,1698,'2025-10-28','00:00:00',1352,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1817,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 11:41:36','drashti','2025-10-28 11:43:55',0),(5456,2526,0,0,1293,'2025-10-26','11:40:00',0,78,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:43:32','','0000-00-00 00:00:00',0),(5457,2526,0,0,1293,'2025-10-26','11:40:00',0,78,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:43:32','','0000-00-00 00:00:00',0),(5458,2526,0,0,1293,'2025-10-27','11:41:00',0,78,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:43:32','','0000-00-00 00:00:00',0),(5459,2526,0,0,1293,'2025-10-28','11:41:00',0,78,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:43:32','','0000-00-00 00:00:00',0),(5460,2526,0,0,1699,'2025-10-28','00:00:00',1353,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1818,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 11:50:24','reception','2025-10-28 11:51:18',0),(5461,2526,0,0,1700,'2025-10-28','11:45:00',1307,103,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',91,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:51:11','riya','2025-10-29 10:49:15',0),(5462,2526,0,0,1700,'2025-10-28','11:45:00',1307,103,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',91,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 11:51:11','riya','2025-10-29 10:49:15',0),(5463,2526,0,0,1700,'2025-10-28','11:45:00',1307,103,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',91,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 00:21:11','riya','2025-10-29 10:49:15',0),(5464,2526,0,0,1700,'2025-10-28','11:45:00',1307,103,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',91,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 00:21:11','riya','2025-10-29 10:49:15',0),(5465,2526,0,0,1700,'2025-10-28','11:45:00',1307,103,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',91,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 00:21:11','riya','2025-10-29 10:49:15',0),(5466,2526,0,0,1700,'2025-10-28','11:45:00',1307,103,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',2526,'H','I',91,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 00:21:11','riya','2025-10-29 10:49:15',0),(5467,2526,0,0,1700,'2025-10-28','11:45:00',1307,103,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',2526,'H','I',91,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 00:21:11','riya','2025-10-29 10:49:15',0),(5468,2526,0,0,1701,'2025-10-28','00:00:00',1354,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1819,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 11:51:20','janvi','2025-10-28 11:51:36',0),(5469,2526,0,0,1702,'2025-10-28','00:00:00',1355,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1820,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 11:53:13','drashti','2025-10-28 11:54:03',0),(5470,2526,0,0,1693,'2025-10-28','11:55:16',1348,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1821,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 11:55:16','reception','2025-10-28 11:55:16',0),(5471,2526,0,0,1693,'2025-10-28','11:55:16',1348,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',1821,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 11:55:16','reception','2025-10-28 11:55:16',0),(5472,2526,0,0,1703,'2025-10-28','00:00:00',1356,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1822,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 11:58:47','reception','2025-10-28 11:59:23',0),(5473,2526,0,0,1677,'2025-10-28','12:00:20',1337,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1823,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 12:00:20','drashti','2025-10-28 12:00:20',0),(5474,2526,0,0,1704,'2025-10-28','00:00:00',594,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1824,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 12:04:42','drashti','2025-10-28 12:05:38',0),(5475,2526,0,0,1705,'2025-10-28','00:00:00',714,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1825,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 12:06:12','janvi','2025-10-28 12:06:22',0),(5476,2526,0,0,1293,'2025-10-19','12:08:00',0,78,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:13:02','','0000-00-00 00:00:00',0),(5477,2526,0,0,1293,'2025-10-28','12:11:00',0,78,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',81,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:13:02','','0000-00-00 00:00:00',0),(5478,2526,0,0,1706,'2025-10-28','00:00:00',1357,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1826,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 12:14:21','reception','2025-10-28 12:14:35',0),(5479,2526,0,0,1601,'2025-10-28','09:30:00',627,101,'ROOM','ROOM0009','H','N',0.50,5500,2750,'A',0,0,0.00,0.00,2750.00,2750,9999,0,0,'',0,0,'','208','','','',2526,'H','I',83,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 00:46:25','riya','2025-10-28 15:19:15',0),(5480,2526,0,0,1601,'2025-10-28','09:30:00',627,101,'AECO','AECO0008','H','N',0.50,800,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','208','','','',2526,'H','I',83,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 00:46:25','riya','2025-10-28 15:19:15',0),(5481,2526,0,0,1601,'2025-10-28','09:30:00',627,101,'CARE','CARE0001','H','N',0.50,600,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','208','','','',2526,'H','I',83,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 00:46:25','riya','2025-10-28 15:19:15',0),(5482,2526,0,0,1601,'2025-10-28','09:30:00',627,101,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,11,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 00:46:25','riya','2025-10-28 15:19:15',0),(5483,2526,0,0,1601,'2025-10-28','09:30:00',627,101,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',83,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 00:46:25','riya','2025-10-28 12:20:20',0),(5484,2526,0,0,1707,'2025-10-28','00:00:00',1358,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1827,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 12:17:36','drashti','2025-10-28 12:18:16',0),(5485,2526,0,0,1601,'2025-10-27','12:16:00',627,101,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',83,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:20:20','','0000-00-00 00:00:00',0),(5486,2526,0,0,1601,'2025-10-28','12:16:00',627,101,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',83,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:20:20','','0000-00-00 00:00:00',0),(5487,2526,0,0,1601,'2025-10-27','12:17:00',627,101,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',83,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:20:20','','0000-00-00 00:00:00',0),(5488,2526,0,0,1601,'2025-10-27','12:18:00',627,101,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',83,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:20:20','','0000-00-00 00:00:00',0),(5489,2526,0,0,1601,'2025-10-27','12:18:00',627,101,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',83,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:20:20','','0000-00-00 00:00:00',0),(5490,2526,0,0,1601,'2025-10-28','12:19:00',627,101,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',83,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:20:20','','0000-00-00 00:00:00',0),(5491,2526,0,0,1601,'2025-10-27','12:19:00',627,101,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',83,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:20:20','','0000-00-00 00:00:00',0),(5492,2526,0,0,1601,'2025-10-27','12:19:00',627,101,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',83,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:20:20','','0000-00-00 00:00:00',0),(5493,2526,0,0,1363,'2025-10-27','20:00:00',0,86,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 00:51:08','riya','2025-10-28 12:24:56',0),(5494,2526,0,0,1363,'2025-10-27','20:00:00',0,86,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 00:51:08','riya','2025-10-28 12:24:56',0),(5495,2526,0,0,1363,'2025-10-27','20:00:00',0,86,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 00:51:08','riya','2025-10-28 12:24:56',0),(5496,2526,0,0,1363,'2025-10-27','20:00:00',0,86,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 00:51:08','riya','2025-10-28 12:24:56',0),(5497,2526,0,0,1363,'2025-10-27','20:00:00',0,86,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 00:51:08','riya','2025-10-28 12:24:56',0),(5498,2526,0,0,1708,'2025-10-28','00:00:00',1359,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1828,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-28 12:21:56','manshi','2025-10-28 12:22:19',0),(5499,2526,0,0,1363,'2025-10-25','12:21:00',0,86,'USG','USG0091','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',88,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:24:56','','0000-00-00 00:00:00',0),(5500,2526,0,0,1363,'2025-10-26','12:22:00',0,86,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',0,'','',0,31,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:24:56','riya','2025-10-29 11:37:08',0),(5501,2526,0,0,1363,'2025-10-26','12:22:00',0,86,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',88,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:24:56','','0000-00-00 00:00:00',0),(5502,2526,0,0,1363,'2025-10-26','12:22:00',0,86,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',88,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:24:56','','0000-00-00 00:00:00',0),(5503,2526,0,0,1363,'2025-10-27','12:23:00',0,86,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',88,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:24:56','','0000-00-00 00:00:00',0),(5504,2526,0,0,1363,'2025-10-28','12:23:00',0,86,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',88,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:24:56','vishal','2025-10-29 18:28:59',0),(5505,2526,0,0,1709,'2025-10-28','00:00:00',1360,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1829,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 12:26:07','drashti','2025-10-28 12:26:40',0),(5506,2526,0,0,1710,'2025-10-28','00:00:00',1361,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1830,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 12:28:27','reception','2025-10-28 12:29:01',0),(5507,2526,0,0,1711,'2025-10-28','12:30:00',1343,104,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:28:35','riya','2025-10-30 11:41:07',0),(5508,2526,0,0,1711,'2025-10-28','12:30:00',1343,104,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:28:35','riya','2025-10-30 11:41:07',0),(5509,2526,0,0,1712,'2025-10-28','00:00:00',1362,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1831,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 12:31:27','reception','2025-10-28 12:32:02',0),(5510,2526,0,0,1713,'2025-10-28','00:00:00',1363,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1833,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 12:32:16','drashti','2025-10-28 12:33:37',0),(5511,2526,0,0,1702,'2025-10-28','12:33:21',1355,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1832,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 12:33:21','janvi','2025-10-28 12:33:21',0),(5512,2526,0,0,1699,'2025-10-28','12:34:21',1353,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1834,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 12:34:21','reception','2025-10-28 12:34:21',0),(5513,2526,0,0,1699,'2025-10-28','12:34:21',1353,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1834,2,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 12:34:21','reception','2025-10-28 12:34:21',0),(5514,2526,0,0,1699,'2025-10-28','12:34:21',1353,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1834,3,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 12:34:21','reception','2025-10-28 12:34:21',0),(5515,2526,0,0,1699,'2025-10-28','12:34:21',1353,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1834,4,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 12:34:21','reception','2025-10-28 12:34:21',0),(5516,2526,0,0,1708,'2025-10-28','12:35:29',1359,0,'XRY','XRY0358','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',1835,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-28 12:35:29','manshi','2025-10-28 12:35:29',0),(5517,2526,0,0,1714,'2025-10-28','00:00:00',1364,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1836,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 12:35:53','reception','2025-10-28 12:36:12',0),(5518,2526,0,0,1713,'2025-10-28','12:40:43',1363,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,44,'',0,0,'','','','','',2526,'H','O',1837,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-10-28 12:40:43','janvi','2025-10-28 12:40:43',0),(5519,2526,0,0,1703,'2025-10-28','12:40:48',1356,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1838,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 12:40:48','reception','2025-10-28 12:40:48',0),(5520,2526,0,0,1703,'2025-10-28','12:40:48',1356,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1838,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 12:40:48','reception','2025-10-28 12:40:48',0),(5521,2526,0,0,1703,'2025-10-28','12:40:48',1356,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1838,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 12:40:48','reception','2025-10-28 12:40:48',0),(5522,2526,0,0,1501,'2025-10-27','19:22:00',1156,93,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',90,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 01:11:42','riya','2025-10-28 12:42:14',0),(5523,2526,0,0,1501,'2025-10-27','19:22:00',1156,93,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',90,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 01:11:42','riya','2025-10-28 12:42:14',0),(5524,2526,0,0,1501,'2025-10-27','19:22:00',1156,93,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',0,'','',0,16,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 01:11:42','vishal','2025-10-29 20:31:21',0),(5525,2526,0,0,1501,'2025-10-27','19:22:00',1156,93,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',2526,'H','I',90,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 01:11:42','riya','2025-10-28 12:42:14',0),(5526,2526,0,0,1501,'2025-10-27','19:22:00',1156,93,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',90,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 01:11:42','vishal','2025-10-29 20:33:14',0),(5527,2526,0,0,1501,'2025-10-28','12:41:00',1156,93,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',90,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:42:14','vishal','2025-10-29 20:31:45',0),(5528,2526,0,0,1715,'2025-10-28','00:00:00',1365,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1839,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 12:42:18','reception','2025-10-28 12:43:25',0),(5529,2526,0,0,1716,'2025-10-28','00:00:00',191,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1840,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 12:44:36','janvi','2025-10-28 12:44:45',0),(5530,2526,0,0,1704,'2025-10-28','12:47:57',594,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1841,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 12:47:57','drashti','2025-10-28 12:47:57',0),(5531,2526,0,0,1572,'2025-10-28','11:43:00',1235,100,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',85,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 01:19:55','riya','2025-10-28 12:52:23',0),(5532,2526,0,0,1572,'2025-10-28','11:43:00',1235,100,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',85,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 01:19:55','riya','2025-10-28 12:52:23',0),(5533,2526,0,0,1572,'2025-10-28','11:43:00',1235,100,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',85,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 01:19:55','riya','2025-10-28 12:52:23',0),(5534,2526,0,0,1572,'2025-10-28','11:43:00',1235,100,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','305','','','',2526,'H','I',85,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 01:19:55','riya','2025-10-28 12:52:23',0),(5535,2526,0,0,1572,'2025-10-28','11:43:00',1235,100,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','305','','','',2526,'H','I',85,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 01:19:55','riya','2025-10-28 12:52:23',0),(5536,2526,0,0,1717,'2025-10-28','00:00:00',1366,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1842,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 12:51:58','drashti','2025-10-28 12:53:45',0),(5537,2526,0,0,1572,'2025-10-27','12:50:00',1235,100,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',85,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:52:23','','0000-00-00 00:00:00',0),(5538,2526,0,0,1572,'2025-10-27','12:50:00',1235,100,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',85,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:52:23','','0000-00-00 00:00:00',0),(5539,2526,0,0,1572,'2025-10-27','12:50:00',1235,100,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',85,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:52:23','','0000-00-00 00:00:00',0),(5540,2526,0,0,1572,'2025-10-27','12:51:00',1235,100,'WPRC','WPRC0080','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',85,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:52:23','','0000-00-00 00:00:00',0),(5541,2526,0,0,1572,'2025-10-28','12:51:00',1235,100,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',85,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:52:23','','0000-00-00 00:00:00',0),(5542,2526,0,0,1572,'2025-10-28','12:51:00',1235,100,'WPRC','WPRC0080','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',85,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 12:52:23','riya','2025-10-29 12:39:50',0),(5543,2526,0,0,1718,'2025-10-28','00:00:00',221,0,'PKG','CASE','H','N',1.00,200,200,'A',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',1844,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 12:59:27','drashti','2025-10-28 13:01:44',0),(5544,2526,0,0,1687,'2025-10-28','13:01:33',1203,0,'WPRC','WPRC0046','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',1843,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 13:01:33','janvi','2025-10-28 13:01:33',0),(5545,2526,0,0,1719,'2025-10-28','13:03:28',118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1845,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 13:03:28','janvi','2025-10-28 13:03:28',0),(5546,2526,0,0,1713,'2025-10-28','13:06:06',1363,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1846,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 13:06:06','reception','2025-10-28 13:06:06',0),(5547,2526,0,0,1298,'2025-10-28','13:02:00',0,82,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 13:06:59','','0000-00-00 00:00:00',0),(5548,2526,0,0,1298,'2025-10-24','13:06:00',0,82,'GENS','GENS0078','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,4000.00,4000,9999,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 13:06:59','','0000-00-00 00:00:00',0),(5549,2526,0,0,1720,'2025-10-28','00:00:00',1367,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1847,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 13:08:34','reception','2025-10-28 13:09:10',0),(5550,2526,0,0,1721,'2025-10-28','00:00:00',1368,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1849,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 13:11:15','janvi','2025-10-28 13:18:01',0),(5551,2526,0,0,1722,'2025-10-28','00:00:00',1369,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1848,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 13:12:12','reception','2025-10-28 13:12:30',0),(5552,2526,0,0,1298,'2025-10-22','13:14:00',0,82,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 13:15:42','','0000-00-00 00:00:00',0),(5553,2526,0,0,1298,'2025-10-22','13:15:00',0,82,'CARE','CARE0006','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 13:15:42','','0000-00-00 00:00:00',0),(5554,2526,0,0,1298,'2025-10-22','13:15:00',0,82,'CARE','CARE0002','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 13:15:42','','0000-00-00 00:00:00',0),(5555,2526,0,0,1298,'2025-10-27','13:18:00',0,82,'CARE','CARE0006','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 13:19:07','','0000-00-00 00:00:00',0),(5556,2526,0,0,1298,'2025-10-27','13:18:00',0,82,'CARE','CARE0002','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 13:19:07','','0000-00-00 00:00:00',0),(5557,2526,0,0,1298,'2025-10-28','13:24:00',0,82,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 13:24:56','','0000-00-00 00:00:00',0),(5558,2526,0,0,1298,'2025-10-28','13:24:00',0,82,'CARE','CARE0006','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 13:24:56','','0000-00-00 00:00:00',0),(5559,2526,0,0,1298,'2025-10-28','13:24:00',0,82,'CARE','CARE0002','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',82,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 13:24:56','','0000-00-00 00:00:00',0),(5560,2526,0,0,1715,'2025-10-28','13:43:08',1365,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1850,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 13:43:08','reception','2025-10-28 13:43:08',0),(5561,2526,0,0,1715,'2025-10-28','13:43:08',1365,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1850,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 13:43:08','reception','2025-10-28 13:43:08',0),(5562,2526,0,0,1715,'2025-10-28','13:43:08',1365,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1850,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 13:43:08','reception','2025-10-28 13:43:08',0),(5563,2526,0,0,1723,'2025-10-28','13:50:00',1368,105,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 13:48:54','riya','2025-10-29 13:07:44',0),(5564,2526,0,0,1723,'2025-10-28','13:50:00',1368,105,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 13:48:54','riya','2025-10-29 13:07:44',0),(5565,2526,0,0,1720,'2025-10-28','13:54:44',1367,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1851,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 13:54:44','reception','2025-10-28 13:54:44',0),(5566,2526,0,0,1720,'2025-10-28','13:54:44',1367,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1851,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 13:54:44','reception','2025-10-28 13:54:44',0),(5567,2526,0,0,1720,'2025-10-28','13:54:44',1367,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1851,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 13:54:44','reception','2025-10-28 13:54:44',0),(5568,2526,0,0,1724,'2025-10-28','14:00:00',0,106,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',87,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 14:05:20','vishal','2025-10-28 21:23:21',0),(5569,2526,0,0,1724,'2025-10-28','14:00:00',0,106,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',87,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 14:05:20','vishal','2025-10-28 21:23:21',0),(5570,2526,0,0,1724,'2025-10-28','14:00:00',0,106,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',87,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 02:35:20','vishal','2025-10-28 21:23:21',0),(5571,2526,0,0,1724,'2025-10-28','14:00:00',0,106,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',87,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 02:35:20','vishal','2025-10-28 21:23:21',0),(5572,2526,0,0,1724,'2025-10-28','14:00:00',0,106,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',87,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 02:35:20','vishal','2025-10-28 21:23:21',0),(5573,2526,0,0,1724,'2025-10-28','14:00:00',0,106,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 02:35:20','vishal','2025-10-28 21:24:07',0),(5574,2526,0,0,1724,'2025-10-28','14:00:00',0,106,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',87,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 02:35:20','vishal','2025-10-28 21:23:21',0),(5575,2526,0,0,1725,'2025-10-28','14:10:31',1288,0,'WPRC','WPRC0046','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1852,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 14:10:31','drashti','2025-10-28 14:10:31',0),(5576,2526,0,0,1707,'2025-10-28','14:12:35',1358,0,'WPRC','WPRC0046','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',1853,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 14:12:35','drashti','2025-10-28 14:12:35',0),(5577,2526,0,0,1726,'2025-10-28','00:00:00',1370,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1854,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 14:33:13','drashti','2025-10-28 14:34:28',0),(5578,2526,0,0,1727,'2025-10-28','15:26:00',1363,107,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',100,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 15:29:16','vishal','2025-11-01 12:57:28',0),(5579,2526,0,0,1727,'2025-10-28','15:26:00',1363,107,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',100,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 15:29:16','vishal','2025-11-01 12:57:28',0),(5580,2526,0,0,1727,'2025-10-28','15:26:00',1363,107,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',100,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 03:59:16','vishal','2025-11-01 12:57:28',0),(5581,2526,0,0,1727,'2025-10-28','15:26:00',1363,107,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',100,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 03:59:16','vishal','2025-11-01 12:57:28',0),(5582,2526,0,0,1727,'2025-10-28','15:26:00',1363,107,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',100,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 03:59:16','vishal','2025-11-01 12:57:28',0),(5583,2526,0,0,1727,'2025-10-28','15:26:00',1363,107,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-28 03:59:16','riya','2025-10-29 11:41:42',0),(5584,2526,0,0,1727,'2025-10-28','15:26:00',1363,107,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',100,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 03:59:16','vishal','2025-11-01 12:57:28',0),(5585,2526,0,0,1728,'2025-10-28','00:00:00',1371,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1855,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 16:51:12','reception','2025-10-28 16:52:02',0),(5586,2526,0,0,1729,'2025-10-28','00:00:00',1372,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1856,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 17:08:13','reception','2025-10-28 17:08:33',0),(5587,2526,0,0,1730,'2025-10-28','00:00:00',1373,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1857,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 17:15:19','reception','2025-10-28 17:16:01',0),(5588,2526,0,0,1443,'2025-10-25','17:19:00',1149,92,'SURG','SURG0014','H','N',1.00,0,0,'P',0,0,0.00,0.00,0.00,0,3,0,0,'',0,0,'','','','','',2526,'H','I',232,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(5589,2526,0,0,1443,'2025-10-25','17:19:00',1149,92,'SURG','SURG0015','H','N',1.00,0,0,'P',0,0,0.00,0.00,0.00,0,3,0,0,'',0,0,'','','','','',2526,'H','I',232,19,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 17:20:21','','0000-00-00 00:00:00',0),(5590,2526,0,0,1728,'2025-10-28','17:23:55',1371,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1858,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 17:23:55','reception','2025-10-28 17:23:55',0),(5591,2526,0,0,1728,'2025-10-28','17:23:55',1371,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1858,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 17:23:55','reception','2025-10-28 17:23:55',0),(5592,2526,0,0,1728,'2025-10-28','17:23:55',1371,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1858,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 17:23:55','reception','2025-10-28 17:23:55',0),(5593,2526,0,0,1731,'2025-10-28','00:00:00',1374,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1859,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 17:26:01','reception','2025-10-28 17:26:21',0),(5594,2526,0,0,1369,'2025-10-24','17:32:00',0,87,'SURG','SURG0014','H','N',1.00,0,0,'P',0,0,0.00,0.00,0.00,0,3,0,0,'',0,0,'','','','','',2526,'H','I',231,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(5595,2526,0,0,1369,'2025-10-24','17:32:00',0,87,'SURG','SURG0015','H','N',1.00,0,0,'P',0,0,0.00,0.00,0.00,0,3,0,0,'',0,0,'','','','','',2526,'H','I',231,19,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 17:32:59','','0000-00-00 00:00:00',0),(5596,2526,0,0,1732,'2025-10-28','00:00:00',1375,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1860,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 17:33:07','drashti','2025-10-28 17:35:27',0),(5597,2526,0,0,1733,'2025-10-28','00:00:00',1376,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1861,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 17:35:58','reception','2025-10-28 17:36:40',0),(5598,2526,0,0,1734,'2025-10-28','00:00:00',1377,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1862,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 17:37:21','drashti','2025-10-28 17:38:43',0),(5599,2526,0,0,1735,'2025-10-28','00:00:00',1378,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1863,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 17:38:35','reception','2025-10-28 17:39:08',0),(5600,2526,0,0,1736,'2025-10-28','00:00:00',1379,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1864,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 17:40:35','reception','2025-10-28 17:40:48',0),(5601,2526,0,0,1737,'2025-10-28','00:00:00',1380,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1867,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 17:47:32','drashti','2025-10-28 17:52:29',0),(5602,2526,0,0,1738,'2025-10-28','00:00:00',1381,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1865,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 17:50:41','janvi','2025-10-28 17:51:23',0),(5603,2526,0,0,1739,'2025-10-28','00:00:00',1382,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1866,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 17:50:44','drashti','2025-10-28 17:51:25',0),(5604,2526,0,0,1740,'2025-10-28','00:00:00',1383,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',1868,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 17:50:59','reception','2025-10-28 17:52:50',0),(5605,2526,0,0,1741,'2025-10-28','00:00:00',1384,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1870,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 17:52:17','janvi','2025-10-28 17:53:57',0),(5606,2526,0,0,1742,'2025-10-28','00:00:00',1385,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1869,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 17:53:29','janvi','2025-10-28 17:53:51',0),(5607,2526,0,0,1743,'2025-10-28','00:00:00',1386,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',1871,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 17:53:29','reception','2025-10-28 17:54:06',0),(5608,2526,0,0,1744,'2025-10-28','00:00:00',1387,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1872,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 17:55:25','reception','2025-10-28 17:56:11',0),(5609,2526,0,0,1745,'2025-10-28','00:00:00',1388,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1873,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 17:57:16','drashti','2025-10-28 17:59:29',0),(5610,2526,0,0,1746,'2025-10-28','00:00:00',1389,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',1875,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 18:02:34','reception','2025-10-28 18:03:15',0),(5611,2526,0,0,1747,'2025-10-28','00:00:00',1390,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1874,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-28 18:02:41','manshi','2025-10-28 18:03:11',0),(5612,2526,0,0,1741,'2025-10-28','18:04:10',1384,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,45,'',0,0,'','','','','',2526,'H','O',1876,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-10-28 18:04:10','janvi','2025-10-28 18:04:10',0),(5613,2526,0,0,1748,'2025-10-28','00:00:00',1391,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1878,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 18:04:16','reception','2025-10-28 18:05:38',0),(5614,2526,0,0,1749,'2025-10-28','00:00:00',1392,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1879,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 18:04:27','drashti','2025-10-28 18:06:33',0),(5615,2526,0,0,1742,'2025-10-28','18:04:29',1385,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,46,'',0,0,'','','','','',2526,'H','O',1877,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'janvi','2025-10-28 18:04:29','janvi','2025-10-28 18:04:29',0),(5616,2526,0,0,1750,'2025-10-28','00:00:00',597,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1880,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 18:06:27','reception','2025-10-28 18:07:07',0),(5617,2526,0,0,1751,'2025-10-28','00:00:00',464,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',1881,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-28 18:10:32','manshi','2025-10-28 18:11:00',0),(5618,2526,0,0,1752,'2025-10-28','00:00:00',1393,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1882,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 18:13:46','drashti','2025-10-28 18:14:46',0),(5619,2526,0,0,1753,'2025-10-28','00:00:00',1394,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1883,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 18:15:39','drashti','2025-10-28 18:16:21',0),(5620,2526,0,0,1754,'2025-10-28','00:00:00',1395,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',1890,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-28 18:15:47','manshi','2025-10-28 18:31:42',0),(5621,2526,0,0,1755,'2025-10-28','18:16:57',431,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1884,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 18:16:57','janvi','2025-10-28 18:16:57',0),(5622,2526,0,0,1756,'2025-10-28','00:00:00',1396,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1900,1,400,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 18:18:50','drashti','2025-10-28 19:12:43',0),(5623,2526,0,0,1747,'2025-10-28','18:21:51',1390,0,'XRY','XRY0254','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',1885,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-28 18:21:51','manshi','2025-10-28 18:21:51',0),(5624,2526,0,0,1757,'2025-10-28','00:00:00',1397,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',1888,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-28 18:23:20','reception','2025-10-28 18:26:03',0),(5625,2526,0,0,1758,'2025-10-28','00:00:00',941,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1887,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-28 18:24:13','manshi','2025-10-28 18:25:48',0),(5626,2526,0,0,1732,'2025-10-28','18:25:11',1375,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1886,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'janvi','2025-10-28 18:25:11','janvi','2025-10-28 18:25:11',0),(5627,2526,0,0,1732,'2025-10-28','18:25:11',1375,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,47,'',0,0,'','','','','',2526,'H','O',1886,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'janvi','2025-10-28 18:25:11','janvi','2025-10-28 18:25:11',0),(5628,2526,0,0,1759,'2025-10-28','00:00:00',1398,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 18:27:14','drashti','2025-10-28 06:57:14',0),(5629,2526,0,0,1760,'2025-10-28','00:00:00',1399,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1889,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 18:28:44','drashti','2025-10-28 18:29:03',0),(5630,2526,0,0,1761,'2025-10-28','00:00:00',1400,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1891,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 18:33:35','drashti','2025-10-28 18:34:24',0),(5631,2526,0,0,1762,'2025-10-28','00:00:00',1401,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',1892,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-28 18:36:13','manshi','2025-10-28 18:36:50',0),(5632,2526,0,0,1763,'2025-10-28','00:00:00',1402,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',1893,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 18:42:23','drashti','2025-10-28 18:43:22',0),(5633,2526,0,0,1764,'2025-10-28','00:00:00',1403,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1894,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 18:44:58','janvi','2025-10-28 19:59:07',0),(5634,2526,0,0,1765,'2025-10-28','00:00:00',252,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1895,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 18:45:09','janvi','2025-10-28 18:45:21',0),(5635,2526,0,0,1766,'2025-10-28','00:00:00',1404,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1896,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 18:50:46','janvi','2025-10-28 18:52:05',0),(5636,2526,0,0,1768,'2025-10-28','00:00:00',1405,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 18:58:28','janvi','2025-10-28 07:28:28',0),(5637,2526,0,0,1767,'2025-10-28','18:59:35',1079,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1897,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 18:59:35','drashti','2025-10-28 18:59:35',0),(5638,2526,0,0,1769,'2025-10-28','00:00:00',1406,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1898,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 19:00:29','drashti','2025-10-28 19:01:12',0),(5639,2526,0,0,1768,'2025-10-28','19:01:40',1405,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',1899,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',5,'janvi','2025-10-28 19:01:40','janvi','2025-10-28 19:01:40',0),(5640,2526,0,0,1768,'2025-10-28','19:01:40',1405,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,48,'',0,0,'','','','','',2526,'H','O',1899,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',5,'janvi','2025-10-28 19:01:40','janvi','2025-10-28 19:01:40',0),(5641,2526,0,0,1768,'2025-10-28','19:01:40',1405,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',1899,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',5,'janvi','2025-10-28 19:01:40','janvi','2025-10-28 19:01:40',0),(5642,2526,0,0,1768,'2025-10-28','19:01:40',1405,0,'OPWD','OPWD0015','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,5,0,0,'',0,0,'','','','','',2526,'H','O',1899,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',5,'janvi','2025-10-28 19:01:40','janvi','2025-10-28 19:01:40',0),(5643,2526,0,0,1770,'2025-10-28','00:00:00',1407,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-28 19:05:14','manshi','2025-10-28 07:35:14',0),(5644,2526,0,0,1771,'2025-10-28','00:00:00',1408,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1901,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 19:12:12','janvi','2025-10-28 19:12:49',0),(5645,2526,0,0,1770,'2025-10-28','19:14:48',1407,0,'XRY','XRY0449','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',1902,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-28 19:14:48','manshi','2025-10-28 19:14:48',0),(5646,2526,0,0,1772,'2025-10-28','00:00:00',1409,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1903,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 19:17:00','drashti','2025-10-28 19:17:31',0),(5647,2526,0,0,1773,'2025-10-28','00:00:00',240,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1904,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 19:36:30','drashti','2025-10-28 19:36:58',0),(5648,2526,0,0,1769,'2025-10-28','19:38:52',1406,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,49,'',0,0,'','','','','',2526,'H','O',1905,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',6,'janvi','2025-10-28 19:38:52','janvi','2025-10-28 19:38:52',0),(5649,2526,0,0,1769,'2025-10-28','19:38:52',1406,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',1905,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',6,'janvi','2025-10-28 19:38:52','janvi','2025-10-28 19:38:52',0),(5650,2526,0,0,1775,'2025-10-28','00:00:00',1410,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1907,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 19:45:07','drashti','2025-10-28 19:46:48',0),(5651,2526,0,0,1774,'2025-10-28','19:45:14',575,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',1906,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-28 19:45:14','janvi','2025-10-28 19:45:14',0),(5652,2526,0,0,1754,'2025-10-28','20:18:39',1395,0,'WPRC','WPRC0046','H','N',1.00,7000,7000,'P',0,0,0.00,0.00,0.00,7000,7,0,0,'',0,0,'','','','','',2526,'H','O',1909,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-28 20:18:39','drashti','2025-10-28 20:18:39',0),(5653,2526,0,0,1724,'2025-10-28','21:22:00',0,106,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',87,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-28 21:23:21','','0000-00-00 00:00:00',0),(5654,2526,0,0,1724,'2025-10-28','21:23:00',0,106,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',87,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-28 21:23:21','','0000-00-00 00:00:00',0),(5655,2526,0,0,1724,'2025-10-28','21:23:00',0,106,'DRC','DRC0021','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',87,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-28 21:24:07','','0000-00-00 00:00:00',0),(5656,2526,0,0,1776,'2025-10-29','08:52:35',47,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1910,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-29 08:52:35','urvashi','2025-10-29 08:52:35',0),(5657,2526,0,0,1777,'2025-10-29','00:00:00',1411,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-29 08:53:32','urvashi','2025-10-28 21:23:32',0),(5658,2526,0,0,1777,'2025-10-29','08:54:08',1411,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1911,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-29 08:54:08','urvashi','2025-10-29 08:54:08',0),(5659,2526,0,0,1777,'2025-10-29','08:54:08',1411,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1911,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-29 08:54:08','urvashi','2025-10-29 08:54:08',0),(5660,2526,0,0,1778,'2025-10-29','00:00:00',1412,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-29 08:55:55','urvashi','2025-10-28 21:25:55',0),(5661,2526,0,0,1778,'2025-10-29','08:56:48',1412,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',1912,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-29 08:56:48','urvashi','2025-10-29 08:56:48',0),(5662,2526,0,0,1778,'2025-10-29','08:56:48',1412,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1912,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-29 08:56:48','urvashi','2025-10-29 08:56:48',0),(5663,2526,0,0,1778,'2025-10-29','08:56:48',1412,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1912,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-29 08:56:48','urvashi','2025-10-29 08:56:48',0),(5664,2526,0,0,1779,'2025-10-29','00:00:00',1413,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-29 08:57:40','urvashi','2025-10-28 21:27:40',0),(5665,2526,0,0,1779,'2025-10-29','08:59:20',1413,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',1913,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-10-29 08:59:20','urvashi','2025-10-29 08:59:20',0),(5666,2526,0,0,1779,'2025-10-29','08:59:20',1413,0,'OPWD','OPWD0015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,5,0,0,'',0,0,'','','','','',2526,'H','O',1913,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-10-29 08:59:20','urvashi','2025-10-29 08:59:20',0),(5667,2526,0,0,1779,'2025-10-29','08:59:20',1413,0,'OPWD','OPWD0013','H','N',4.00,100,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1913,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-10-29 08:59:20','urvashi','2025-10-29 08:59:20',0),(5668,2526,0,0,1779,'2025-10-29','08:59:20',1413,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,50,'',0,0,'','','','','',2526,'H','O',1913,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-10-29 08:59:20','urvashi','2025-10-29 08:59:20',0),(5669,2526,0,0,1779,'2025-10-29','08:59:20',1413,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',1913,5,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-10-29 08:59:20','urvashi','2025-10-29 08:59:20',0),(5670,2526,0,0,1780,'2025-10-29','00:00:00',1414,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-29 09:00:11','urvashi','2025-10-28 21:30:11',0),(5671,2526,0,0,1780,'2025-10-29','09:02:18',1414,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',1914,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-10-29 09:02:18','urvashi','2025-10-29 09:02:18',0),(5672,2526,0,0,1780,'2025-10-29','09:02:18',1414,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1914,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-10-29 09:02:18','urvashi','2025-10-29 09:02:18',0),(5673,2526,0,0,1780,'2025-10-29','09:02:18',1414,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,51,'',0,0,'','','','','',2526,'H','O',1914,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-10-29 09:02:18','urvashi','2025-10-29 09:02:18',0),(5674,2526,0,0,1780,'2025-10-29','09:02:18',1414,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',1914,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-10-29 09:02:18','urvashi','2025-10-29 09:02:18',0),(5675,2526,0,0,1780,'2025-10-29','09:02:18',1414,0,'OTCG','OTCG0033','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1914,5,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-10-29 09:02:18','urvashi','2025-10-29 09:02:18',0),(5676,2526,0,0,1781,'2025-10-29','00:00:00',1415,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-29 09:03:01','urvashi','2025-10-28 21:33:01',0),(5677,2526,0,0,1781,'2025-10-29','09:03:20',1415,0,'WPRC','WPRC0049','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',1915,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-29 09:03:20','urvashi','2025-10-29 09:03:20',0),(5678,2526,0,0,1782,'2025-10-29','06:30:00',0,108,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',97,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 09:40:51','riya','2025-10-30 11:43:41',0),(5679,2526,0,0,1782,'2025-10-29','06:30:00',0,108,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',97,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 09:40:51','riya','2025-10-30 11:43:41',0),(5680,2526,0,0,1782,'2025-10-29','06:30:00',0,108,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',97,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 22:10:51','riya','2025-10-30 11:43:41',0),(5681,2526,0,0,1782,'2025-10-29','06:30:00',0,108,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',97,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 22:10:51','riya','2025-10-30 11:43:41',0),(5682,2526,0,0,1782,'2025-10-29','06:30:00',0,108,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',97,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 22:10:51','riya','2025-10-30 11:43:41',0),(5683,2526,0,0,1782,'2025-10-29','06:30:00',0,108,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','305','','','',2526,'H','I',97,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 22:10:51','riya','2025-10-30 11:43:41',0),(5684,2526,0,0,1782,'2025-10-29','06:30:00',0,108,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','305','','','',2526,'H','I',97,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 22:10:51','riya','2025-10-30 11:43:41',0),(5685,2526,0,0,1783,'2025-10-29','00:00:00',880,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1926,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 09:51:40','reception','2025-10-29 10:53:25',0),(5686,2526,0,0,1784,'2025-10-29','00:00:00',1416,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1916,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 10:05:12','reception','2025-10-29 10:05:44',0),(5687,2526,0,0,1785,'2025-10-29','00:00:00',1417,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',1932,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-29 10:05:18','manshi','2025-10-29 11:01:48',0),(5688,2526,0,0,1786,'2025-10-29','00:00:00',1418,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1917,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 10:08:32','reception','2025-10-29 10:09:02',0),(5689,2526,0,0,1787,'2025-10-29','00:00:00',1419,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',1918,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 10:13:07','reception','2025-10-29 10:13:38',0),(5690,2526,0,0,1788,'2025-10-29','00:00:00',1420,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1947,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 10:16:09','drashti','2025-10-29 11:28:57',0),(5691,2526,0,0,1789,'2025-10-29','00:00:00',1421,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1919,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 10:19:25','reception','2025-10-29 10:20:58',0),(5692,2526,0,0,1790,'2025-10-29','00:00:00',607,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1920,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 10:21:52','reception','2025-10-29 10:22:35',0),(5693,2526,0,0,1791,'2025-10-29','00:00:00',1422,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1921,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 10:22:35','drashti','2025-10-29 10:23:42',0),(5694,2526,0,0,1792,'2025-10-29','00:00:00',1423,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1922,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 10:24:44','janvi','2025-10-29 10:25:33',0),(5695,2526,0,0,1438,'2025-10-28','20:16:00',1139,91,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 22:56:42','riya','2025-10-29 10:37:48',0),(5696,2526,0,0,1438,'2025-10-28','20:16:00',1139,91,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 22:56:42','riya','2025-10-29 10:37:48',0),(5697,2526,0,0,1438,'2025-10-28','20:16:00',1139,91,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 22:56:42','riya','2025-10-29 10:37:48',0),(5698,2526,0,0,1438,'2025-10-28','20:16:00',1139,91,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','408','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 22:56:42','riya','2025-10-29 10:37:48',0),(5699,2526,0,0,1438,'2025-10-28','20:16:00',1139,91,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','408','','','',2526,'H','I',86,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 22:56:42','riya','2025-10-29 10:37:48',0),(5700,2526,0,0,1438,'2025-10-28','10:29:00',1139,91,'WPRC','WPRC0104','H','N',1.00,6000,6000,'P',0,0,0.00,0.00,6000.00,6000,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 10:37:48','','0000-00-00 00:00:00',0),(5701,2526,0,0,1438,'2025-10-28','10:29:00',1139,91,'ROOM','ROOM0008','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 10:37:48','','0000-00-00 00:00:00',0),(5702,2526,0,0,1438,'2025-10-29','10:29:00',1139,91,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 10:37:48','','0000-00-00 00:00:00',0),(5703,2526,0,0,1438,'2025-10-29','10:30:00',1139,91,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 10:37:48','','0000-00-00 00:00:00',0),(5704,2526,0,0,1438,'2025-10-28','10:30:00',1139,91,'DRC','DRC0020','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,4000.00,4000,100,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 10:37:48','riya','2025-10-29 12:33:20',0),(5705,2526,0,0,1438,'2025-10-29','10:33:00',1139,91,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,100,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 10:37:48','','0000-00-00 00:00:00',0),(5706,2526,0,0,1438,'2025-10-28','10:34:00',1139,91,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 10:37:48','','0000-00-00 00:00:00',0),(5707,2526,0,0,1438,'2025-10-29','10:36:00',1139,91,'USG','USG0097','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 10:37:48','','0000-00-00 00:00:00',0),(5708,2526,0,0,1793,'2025-10-29','00:00:00',1424,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1949,1,179,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 10:39:32','drashti','2025-10-29 11:32:47',0),(5709,2526,0,0,1794,'2025-10-29','10:48:53',1362,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1923,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 10:48:53','reception','2025-10-29 10:48:53',0),(5710,2526,0,0,1794,'2025-10-29','10:48:53',1362,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1923,2,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 10:48:53','reception','2025-10-29 10:48:53',0),(5711,2526,0,0,1794,'2025-10-29','10:48:53',1362,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1923,3,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 10:48:53','reception','2025-10-29 10:48:53',0),(5712,2526,0,0,1794,'2025-10-29','10:48:53',1362,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1923,4,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 10:48:53','reception','2025-10-29 10:48:53',0),(5713,2526,0,0,1700,'2025-10-28','10:39:00',1307,103,'ROOM','ROOM0008','H','N',9.00,100,900,'P',0,0,0.00,0.00,900.00,900,9999,0,0,'',0,0,'','','','','',2526,'H','I',91,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 10:49:15','','0000-00-00 00:00:00',0),(5714,2526,0,0,1700,'2025-10-28','10:39:00',1307,103,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',91,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 10:49:15','','0000-00-00 00:00:00',0),(5715,2526,0,0,1700,'2025-10-29','10:39:00',1307,103,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',91,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 10:49:15','','0000-00-00 00:00:00',0),(5716,2526,0,0,1700,'2025-10-28','10:39:00',1307,103,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',91,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 10:49:15','','0000-00-00 00:00:00',0),(5717,2526,0,0,1700,'2025-10-28','10:40:00',1307,103,'SURG','SURG0015','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,3,0,0,'',0,0,'','','','','',2526,'H','I',91,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 10:49:15','riya','2025-10-29 11:20:29',0),(5718,2526,0,0,1700,'2025-10-28','10:41:00',1307,103,'SURG','SURG0014','H','N',1.00,8000,8000,'P',0,0,0.00,0.00,8000.00,8000,3,0,0,'',0,0,'','','','','',2526,'H','I',91,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 10:49:15','riya','2025-10-29 11:20:29',0),(5719,2526,0,0,1795,'2025-10-29','10:51:00',1125,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1924,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-29 10:51:00','manshi','2025-10-29 10:51:00',0),(5720,2526,0,0,1796,'2025-10-29','00:00:00',1425,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1925,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 10:52:05','reception','2025-10-29 10:52:37',0),(5721,2526,0,0,1536,'2025-10-28','10:48:00',1223,98,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',84,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 23:23:18','riya','2025-10-29 10:57:48',0),(5722,2526,0,0,1536,'2025-10-29','10:48:00',1223,98,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',0,'','',0,16,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 23:23:18','riya','2025-10-29 11:21:54',0),(5723,2526,0,0,1536,'2025-10-28','10:48:00',1223,98,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',84,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 23:23:18','riya','2025-10-29 10:57:48',0),(5724,2526,0,0,1536,'2025-10-29','10:48:00',1223,98,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',0,'','',0,15,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 23:23:18','riya','2025-10-29 11:21:54',0),(5725,2526,0,0,1536,'2025-10-28','10:48:00',1223,98,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',84,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 23:23:18','riya','2025-10-29 10:57:48',0),(5726,2526,0,0,1536,'2025-10-29','10:48:00',1223,98,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',0,'','',0,14,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 23:23:18','riya','2025-10-29 11:21:54',0),(5727,2526,0,0,1536,'2025-10-28','10:48:00',1223,98,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',84,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 23:23:18','riya','2025-10-29 10:57:48',0),(5728,2526,0,0,1536,'2025-10-29','10:48:00',1223,98,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','403','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-28 23:23:18','riya','2025-10-29 10:57:48',0),(5729,2526,0,0,1536,'2025-10-28','10:48:00',1223,98,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',84,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 23:23:18','riya','2025-10-29 10:57:48',0),(5730,2526,0,0,1536,'2025-10-29','10:48:00',1223,98,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',84,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 23:23:18','riya','2025-10-29 10:57:48',0),(5731,2526,0,0,1797,'2025-10-29','00:00:00',915,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1927,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 10:53:42','drashti','2025-10-29 10:54:18',0),(5732,2526,0,0,1798,'2025-10-29','00:00:00',1426,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1928,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 10:55:26','reception','2025-10-29 10:55:55',0),(5733,2526,0,0,1799,'2025-10-29','00:00:00',1427,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1929,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 10:55:54','drashti','2025-10-29 10:56:19',0),(5734,2526,0,0,1800,'2025-10-29','00:00:00',1428,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1946,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 10:55:58','reception','2025-10-29 11:28:07',0),(5735,2526,0,0,1801,'2025-10-29','00:00:00',1429,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1930,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 10:57:10','reception','2025-10-29 10:59:08',0),(5736,2526,0,0,1536,'2025-10-27','10:53:00',1223,98,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',84,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 10:57:48','','0000-00-00 00:00:00',0),(5737,2526,0,0,1536,'2025-10-27','10:53:00',1223,98,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',84,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 10:57:48','','0000-00-00 00:00:00',0),(5738,2526,0,0,1536,'2025-10-27','10:53:00',1223,98,'SURG','SURG0014','H','N',1.00,55000,55000,'P',0,0,0.00,0.00,55000.00,55000,101,0,0,'',0,0,'','','','','',2526,'H','I',84,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 10:57:48','riya','2025-10-29 12:09:55',0),(5739,2526,0,0,1536,'2025-10-27','10:55:00',1223,98,'SURG','SURG0015','H','N',1.00,18300,18300,'P',0,0,0.00,0.00,18300.00,18300,3,0,0,'',0,0,'','','','','',2526,'H','I',84,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 10:57:48','riya','2025-10-29 12:09:55',0),(5740,2526,0,0,1802,'2025-10-29','00:00:00',1430,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1931,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 10:59:09','drashti','2025-10-29 11:00:14',0),(5741,2526,0,0,414,'2025-10-29','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 23:30:37','riya','2025-10-29 11:01:56',0),(5742,2526,0,0,414,'2025-10-29','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 23:30:37','riya','2025-10-29 11:01:56',0),(5743,2526,0,0,414,'2025-10-29','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 23:30:37','vishal','2025-11-01 14:43:03',0),(5744,2526,0,0,414,'2025-10-29','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 23:30:37','vishal','2025-11-01 14:43:03',0),(5745,2526,0,0,414,'2025-10-29','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-28 23:30:37','vishal','2025-11-01 14:34:19',0),(5746,2526,0,0,1785,'2025-10-29','11:01:48',1417,0,'XRY','XRY0254','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',1932,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-29 11:01:48','manshi','2025-10-29 11:01:48',0),(5747,2526,0,0,1785,'2025-10-29','11:01:48',1417,0,'XRY','XRY0292','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',1932,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-29 11:01:48','manshi','2025-10-29 11:01:48',0),(5748,2526,0,0,1803,'2025-10-29','00:00:00',1431,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1934,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 11:01:53','janvi','2025-10-29 11:04:05',0),(5749,2526,0,0,414,'2025-10-28','11:00:00',0,25,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 11:01:56','','0000-00-00 00:00:00',0),(5750,2526,0,0,414,'2025-10-28','11:01:00',0,25,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 11:01:56','','0000-00-00 00:00:00',0),(5751,2526,0,0,414,'2025-10-28','11:01:00',0,25,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 11:01:56','','0000-00-00 00:00:00',0),(5752,2526,0,0,1804,'2025-10-29','00:00:00',1085,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1933,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 11:02:14','drashti','2025-10-29 11:03:06',0),(5753,2526,0,0,1805,'2025-10-29','00:00:00',1432,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',1935,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-29 11:03:52','manshi','2025-10-29 11:04:39',0),(5754,2526,0,0,1806,'2025-10-29','00:00:00',1433,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1936,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 11:05:12','reception','2025-10-29 11:26:36',0),(5755,2526,0,0,1807,'2025-10-29','00:00:00',400,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1937,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 11:05:58','janvi','2025-10-29 11:06:13',0),(5756,2526,0,0,1808,'2025-10-29','00:00:00',1434,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1938,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 11:07:20','janvi','2025-10-29 11:08:12',0),(5757,2526,0,0,414,'2025-10-29','11:06:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 11:08:18','','0000-00-00 00:00:00',0),(5758,2526,0,0,414,'2025-10-29','11:06:00',0,25,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 11:08:18','riya','2025-10-30 11:52:11',0),(5759,2526,0,0,414,'2025-10-28','11:06:00',0,25,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 11:08:18','','0000-00-00 00:00:00',0),(5760,2526,0,0,414,'2025-10-29','11:07:00',0,25,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 11:08:18','','0000-00-00 00:00:00',0),(5761,2526,0,0,414,'2025-10-28','11:07:00',0,25,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 11:08:18','vishal','2025-11-01 14:43:03',0),(5762,2526,0,0,414,'2025-10-29','11:07:00',0,25,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 11:08:18','vishal','2025-11-01 14:43:03',0),(5763,2526,0,0,1809,'2025-10-29','00:00:00',1435,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1939,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 11:14:09','drashti','2025-10-29 11:15:52',0),(5764,2526,0,0,1810,'2025-10-29','00:00:00',1436,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1940,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 11:16:04','reception','2025-10-29 11:17:56',0),(5765,2526,0,0,1811,'2025-10-29','00:00:00',545,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1941,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-29 11:17:49','manshi','2025-10-29 11:18:15',0),(5766,2526,0,0,1812,'2025-10-29','00:00:00',1437,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1963,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 11:24:06','drashti','2025-10-29 12:05:33',0),(5767,2526,0,0,1813,'2025-10-29','00:00:00',1438,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1943,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 11:24:37','reception','2025-10-29 11:25:37',0),(5768,2526,0,0,1791,'2025-10-29','11:25:15',1422,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1942,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 11:25:15','drashti','2025-10-29 11:25:15',0),(5769,2526,0,0,1814,'2025-10-29','00:00:00',1439,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1945,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 11:26:45','drashti','2025-10-29 11:27:39',0),(5770,2526,0,0,1815,'2025-10-29','00:00:00',1440,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1948,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 11:31:55','janvi','2025-10-29 11:32:37',0),(5771,2526,0,0,1793,'2025-10-29','11:32:47',1424,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1949,2,71,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 11:32:47','drashti','2025-10-29 11:32:47',0),(5772,2526,0,0,1363,'2025-10-28','20:00:00',0,86,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:04:30','riya','2025-10-29 11:37:08',0),(5773,2526,0,0,1363,'2025-10-28','20:00:00',0,86,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:04:30','riya','2025-10-29 11:37:08',0),(5774,2526,0,0,1363,'2025-10-28','20:00:00',0,86,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:04:30','riya','2025-10-29 11:37:08',0),(5775,2526,0,0,1363,'2025-10-28','20:00:00',0,86,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:04:30','riya','2025-10-29 11:37:08',0),(5776,2526,0,0,1363,'2025-10-28','20:00:00',0,86,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',88,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:04:30','riya','2025-10-29 11:37:08',0),(5777,2526,0,0,1363,'2025-10-28','11:35:00',0,86,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,5,0,0,'',0,0,'','','','','',2526,'H','I',88,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 11:37:08','','0000-00-00 00:00:00',0),(5778,2526,0,0,1363,'2025-10-29','11:36:00',0,86,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',88,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 11:37:08','vishal','2025-10-29 18:28:59',0),(5779,2526,0,0,1501,'2025-10-28','19:22:00',1156,93,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',90,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:08:18','riya','2025-10-29 11:39:31',0),(5780,2526,0,0,1501,'2025-10-28','19:22:00',1156,93,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',90,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:08:18','riya','2025-10-29 11:39:31',0),(5781,2526,0,0,1501,'2025-10-28','19:22:00',1156,93,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',2526,'H','I',90,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:08:18','riya','2025-10-29 11:39:31',0),(5782,2526,0,0,1501,'2025-10-28','19:22:00',1156,93,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',2526,'H','I',90,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:08:18','riya','2025-10-29 11:39:31',0),(5783,2526,0,0,1501,'2025-10-28','19:22:00',1156,93,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',90,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:08:18','vishal','2025-10-29 20:31:45',0),(5784,2526,0,0,1501,'2025-10-29','11:38:00',1156,93,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',90,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 11:39:31','','0000-00-00 00:00:00',0),(5785,2526,0,0,1727,'2025-10-28','11:41:00',1363,107,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',100,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 11:41:42','vishal','2025-11-01 12:57:28',0),(5786,2526,0,0,1727,'2025-10-29','11:41:00',1363,107,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',100,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 11:41:42','vishal','2025-11-01 12:57:28',0),(5787,2526,0,0,1816,'2025-10-29','00:00:00',1441,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1950,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 11:43:24','drashti','2025-10-29 11:43:53',0),(5788,2526,0,0,1817,'2025-10-29','00:00:00',1442,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1952,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 11:43:24','janvi','2025-10-29 11:45:31',0),(5789,2526,0,0,1818,'2025-10-29','00:00:00',1443,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1953,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 11:44:33','janvi','2025-10-29 11:45:47',0),(5790,2526,0,0,1811,'2025-10-29','11:45:14',545,0,'XRY','XRY0189','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',1951,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-29 11:45:14','manshi','2025-10-29 11:45:14',0),(5791,2526,0,0,1785,'2025-10-29','11:46:01',1417,0,'XRY','XRY0294','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',1954,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-29 11:46:01','manshi','2025-10-29 11:46:01',0),(5792,2526,0,0,1819,'2025-10-29','00:00:00',1444,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1955,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 11:46:19','drashti','2025-10-29 11:47:22',0),(5793,2526,0,0,1820,'2025-10-29','00:00:00',1445,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1956,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 11:46:24','reception','2025-10-29 11:48:11',0),(5794,2526,0,0,1821,'2025-10-29','00:00:00',1446,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-29 11:46:46','manshi','2025-10-29 00:16:46',0),(5795,2526,0,0,1807,'2025-10-29','11:48:17',400,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,52,'',0,0,'','','','','',2526,'H','O',1957,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'drashti','2025-10-29 11:48:17','drashti','2025-10-29 11:48:17',0),(5796,2526,0,0,1563,'2025-10-28','11:25:00',0,99,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',89,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:22:05','vishal','2025-10-29 17:57:49',0),(5797,2526,0,0,1563,'2025-10-29','11:25:00',0,99,'ROOM','ROOM0009','H','N',0.50,2900,1450,'P',0,0,0.00,0.00,1450.00,1450,9999,0,0,'',0,0,'','412','','','',2526,'H','I',89,22,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:22:05','vishal','2025-10-29 18:02:46',0),(5798,2526,0,0,1563,'2025-10-28','11:25:00',0,99,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',89,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:22:05','vishal','2025-10-29 17:57:49',0),(5799,2526,0,0,1563,'2025-10-29','11:25:00',0,99,'AECO','AECO0008','H','N',0.50,300,150,'A',0,0,0.00,0.00,150.00,150,9999,0,0,'',0,0,'','412','','','',2526,'H','I',89,18,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:22:05','vishal','2025-10-29 18:02:46',0),(5800,2526,0,0,1563,'2025-10-28','11:25:00',0,99,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',89,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:22:05','riya','2025-10-29 11:53:30',0),(5801,2526,0,0,1563,'2025-10-29','11:25:00',0,99,'CARE','CARE0001','H','N',0.50,200,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','412','','','',2526,'H','I',89,19,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:22:05','vishal','2025-10-29 18:02:46',0),(5802,2526,0,0,1563,'2025-10-28','11:25:00',0,99,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',89,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:22:05','riya','2025-10-29 11:53:30',0),(5803,2526,0,0,1563,'2025-10-29','11:25:00',0,99,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',89,20,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:22:05','vishal','2025-10-29 17:57:49',0),(5804,2526,0,0,1563,'2025-10-28','11:25:00',0,99,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',89,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:22:05','riya','2025-10-29 11:53:30',0),(5805,2526,0,0,1563,'2025-10-29','11:25:00',0,99,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',89,20,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 00:22:05','vishal','2025-10-29 17:57:19',0),(5806,2526,0,0,1822,'2025-10-29','00:00:00',1447,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1958,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 11:56:39','janvi','2025-10-29 12:13:02',0),(5807,2526,0,0,1823,'2025-10-29','00:00:00',1448,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1959,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 11:56:49','janvi','2025-10-29 11:58:37',0),(5808,2526,0,0,1438,'2025-10-29','11:55:00',1139,91,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',86,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 11:57:32','','0000-00-00 00:00:00',0),(5809,2526,0,0,1824,'2025-10-29','00:00:00',1449,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1961,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 11:59:33','reception','2025-10-29 12:00:02',0),(5810,2526,0,0,1788,'2025-10-29','11:59:43',1420,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1960,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 11:59:43','drashti','2025-10-29 11:59:43',0),(5811,2526,0,0,1825,'2025-10-29','00:00:00',1450,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1962,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 12:01:00','drashti','2025-10-29 12:01:54',0),(5812,2526,0,0,1826,'2025-10-29','12:06:47',1067,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',1964,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 12:06:47','janvi','2025-10-29 12:06:47',0),(5813,2526,0,0,1827,'2025-10-29','00:00:00',1451,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1966,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 12:17:56','reception','2025-10-29 12:18:29',0),(5814,2526,0,0,1828,'2025-10-29','00:00:00',1452,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1967,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-29 12:21:42','manshi','2025-10-29 12:22:13',0),(5815,2526,0,0,1829,'2025-10-29','00:00:00',414,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',1968,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-29 12:22:29','manshi','2025-10-29 12:22:38',0),(5816,2526,0,0,1830,'2025-10-29','00:00:00',1453,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1969,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 12:22:47','janvi','2025-10-29 12:23:50',0),(5817,2526,0,0,1831,'2025-10-29','00:00:00',1454,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1970,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 12:31:43','drashti','2025-10-29 12:33:18',0),(5818,2526,0,0,1832,'2025-10-29','00:00:00',1455,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1971,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 12:35:01','drashti','2025-10-29 12:36:37',0),(5819,2526,0,0,1813,'2025-10-29','12:38:53',1438,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1972,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 12:38:53','reception','2025-10-29 12:38:53',0),(5820,2526,0,0,1813,'2025-10-29','12:38:53',1438,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1972,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 12:38:53','reception','2025-10-29 12:38:53',0),(5821,2526,0,0,1813,'2025-10-29','12:38:53',1438,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1972,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 12:38:53','reception','2025-10-29 12:38:53',0),(5822,2526,0,0,1833,'2025-10-29','00:00:00',1456,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',1973,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-29 12:39:24','manshi','2025-10-29 12:40:16',0),(5823,2526,0,0,1572,'2025-10-29','12:38:00',1235,100,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',85,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(5824,2526,0,0,1572,'2025-10-29','12:39:00',1235,100,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',85,19,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 12:39:50','','0000-00-00 00:00:00',0),(5825,2526,0,0,1834,'2025-10-29','00:00:00',1457,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1974,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 12:41:18','reception','2025-10-29 12:41:55',0),(5826,2526,0,0,1835,'2025-10-29','00:00:00',1458,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1975,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 12:43:09','reception','2025-10-29 12:43:26',0),(5827,2526,0,0,1563,'2025-10-27','12:42:00',0,99,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',89,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 12:44:44','','0000-00-00 00:00:00',0),(5828,2526,0,0,1563,'2025-10-28','12:43:00',0,99,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',89,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 12:44:44','vishal','2025-10-29 17:57:49',0),(5829,2526,0,0,1563,'2025-10-28','12:43:00',0,99,'WPRC','WPRC0089','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',89,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 12:44:44','vishal','2025-10-29 17:57:49',0),(5830,2526,0,0,1836,'2025-10-29','00:00:00',1459,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1979,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 12:56:52','reception','2025-10-29 13:58:01',0),(5831,2526,0,0,1723,'2025-10-28','13:50:00',1368,105,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 01:35:44','riya','2025-10-30 11:14:49',0),(5832,2526,0,0,1723,'2025-10-28','13:50:00',1368,105,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','410','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 01:35:44','riya','2025-10-30 11:14:49',0),(5833,2526,0,0,1723,'2025-10-28','13:50:00',1368,105,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 01:35:44','riya','2025-10-29 13:07:44',0),(5834,2526,0,0,1723,'2025-10-28','13:50:00',1368,105,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-29 01:35:44','riya','2025-10-29 13:07:44',0),(5835,2526,0,0,1723,'2025-10-28','13:50:00',1368,105,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','410','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 01:35:44','vishal','2025-10-31 18:02:17',0),(5836,2526,0,0,1837,'2025-10-29','00:00:00',1460,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1976,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 13:07:20','reception','2025-10-29 13:07:58',0),(5837,2526,0,0,1723,'2025-10-28','13:05:00',1368,105,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 13:07:44','','0000-00-00 00:00:00',0),(5838,2526,0,0,1723,'2025-10-28','13:05:00',1368,105,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 13:07:44','','0000-00-00 00:00:00',0),(5839,2526,0,0,1723,'2025-10-28','13:06:00',1368,105,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,3,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 13:07:44','','0000-00-00 00:00:00',0),(5840,2526,0,0,1723,'2025-10-29','13:06:00',1368,105,'ROOM','ROOM0008','H','N',2.00,100,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 13:07:44','vishal','2025-11-03 12:48:06',0),(5841,2526,0,0,1723,'2025-10-28','13:06:00',1368,105,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 13:07:44','vishal','2025-10-31 18:02:17',0),(5842,2526,0,0,1838,'2025-10-29','00:00:00',1461,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',1977,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 13:18:12','janvi','2025-10-29 13:18:47',0),(5843,2526,0,0,1660,'2025-10-28','19:45:00',0,102,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',93,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 01:49:18','riya','2025-10-29 13:22:45',0),(5844,2526,0,0,1660,'2025-10-28','19:45:00',0,102,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',93,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 01:49:18','riya','2025-10-29 13:22:45',0),(5845,2526,0,0,1660,'2025-10-28','19:45:00',0,102,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',93,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 01:49:18','riya','2025-10-29 13:22:45',0),(5846,2526,0,0,1660,'2025-10-28','19:45:00',0,102,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',93,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 01:49:18','riya','2025-10-29 13:22:45',0),(5847,2526,0,0,1660,'2025-10-28','19:45:00',0,102,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',93,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 01:49:18','riya','2025-10-29 13:22:45',0),(5848,2526,0,0,1831,'2025-10-29','13:22:41',1454,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',1978,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 13:22:41','drashti','2025-10-29 13:22:41',0),(5849,2526,0,0,1660,'2025-10-29','13:19:00',0,102,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 13:22:45','vishal','2025-10-31 12:12:38',0),(5850,2526,0,0,1660,'2025-10-29','13:19:00',0,102,'WPRC','WPRC0097','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 13:22:45','vishal','2025-10-31 12:12:38',0),(5851,2526,0,0,1660,'2025-10-28','13:20:00',0,102,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 13:22:45','','0000-00-00 00:00:00',0),(5852,2526,0,0,1660,'2025-10-28','13:20:00',0,102,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 13:22:45','','0000-00-00 00:00:00',0),(5853,2526,0,0,1660,'2025-10-28','13:21:00',0,102,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 13:22:45','','0000-00-00 00:00:00',0),(5854,2526,0,0,1660,'2025-10-28','13:21:00',0,102,'OTCG','OTCG0003','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,6,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 13:22:45','','0000-00-00 00:00:00',0),(5855,2526,0,0,1724,'2025-10-29','14:48:00',0,106,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',87,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 14:49:57','','0000-00-00 00:00:00',0),(5856,2526,0,0,1724,'2025-10-29','14:48:00',0,106,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',87,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 14:49:57','','0000-00-00 00:00:00',0),(5857,2526,0,0,1724,'2025-10-29','14:49:00',0,106,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',87,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 14:49:57','','0000-00-00 00:00:00',0),(5858,2526,0,0,1839,'2025-10-29','00:00:00',1462,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 15:37:33','reception','2025-10-29 04:07:33',0),(5859,2526,0,0,1839,'2025-10-29','15:38:48',1462,0,'SURG','SURG0005','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,0.00,1200,2,0,0,'',0,0,'','','','','',2526,'H','O',1980,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 15:38:48','reception','2025-10-29 15:38:48',0),(5860,2526,0,0,1839,'2025-10-29','15:38:48',1462,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,2,0,0,'',0,0,'','','','','',2526,'H','O',1980,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 15:38:48','reception','2025-10-29 15:38:48',0),(5861,2526,0,0,1840,'2025-10-29','00:00:00',1463,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 16:27:45','reception','2025-10-29 04:57:45',0),(5862,2526,0,0,1841,'2025-10-29','00:00:00',1464,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1981,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 16:34:30','reception','2025-10-29 16:35:17',0),(5863,2526,0,0,1842,'2025-10-29','00:00:00',1465,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1982,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 16:38:31','reception','2025-10-29 16:38:58',0),(5864,2526,0,0,1843,'2025-10-29','00:00:00',1466,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 16:44:12','reception','2025-10-29 05:14:12',0),(5865,2526,0,0,1844,'2025-10-29','00:00:00',1467,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 16:48:44','reception','2025-10-29 05:18:44',0),(5866,2526,0,0,1845,'2025-10-29','00:00:00',1468,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1983,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 17:09:31','reception','2025-10-29 17:10:08',0),(5867,2526,0,0,1846,'2025-10-29','00:00:00',1469,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2000,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 17:17:15','janvi','2025-10-29 18:17:06',0),(5868,2526,0,0,1847,'2025-10-29','00:00:00',1470,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1984,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 17:20:37','reception','2025-10-29 17:21:14',0),(5869,2526,0,0,1711,'2025-10-28','12:30:00',1343,104,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 05:57:02','riya','2025-10-30 11:41:07',0),(5870,2526,0,0,1711,'2025-10-29','12:30:00',1343,104,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,8,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 05:57:02','vishal','2025-11-04 17:12:38',0),(5871,2526,0,0,1711,'2025-10-28','12:30:00',1343,104,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 05:57:02','riya','2025-10-30 11:41:07',0),(5872,2526,0,0,1711,'2025-10-29','12:30:00',1343,104,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,9,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 05:57:02','vishal','2025-11-04 17:12:38',0),(5873,2526,0,0,1711,'2025-10-28','12:30:00',1343,104,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 05:57:02','riya','2025-10-30 11:41:07',0),(5874,2526,0,0,1711,'2025-10-29','12:30:00',1343,104,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,10,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 05:57:02','vishal','2025-11-04 17:12:38',0),(5875,2526,0,0,1711,'2025-10-28','12:30:00',1343,104,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 05:57:02','vishal','2025-11-04 17:16:09',0),(5876,2526,0,0,1711,'2025-10-29','12:30:00',1343,104,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','208','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 05:57:02','riya','2025-10-30 11:41:07',0),(5877,2526,0,0,1711,'2025-10-28','12:30:00',1343,104,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','208','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 05:57:02','riya','2025-10-30 11:41:07',0),(5878,2526,0,0,1711,'2025-10-29','12:30:00',1343,104,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','208','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 05:57:02','vishal','2025-11-04 17:20:33',0),(5879,2526,0,0,1848,'2025-10-29','00:00:00',1471,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1985,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 17:27:17','reception','2025-10-29 17:27:30',0),(5880,2526,0,0,1849,'2025-10-29','00:00:00',1472,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1986,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 17:29:36','reception','2025-10-29 17:30:58',0),(5881,2526,0,0,1850,'2025-10-29','00:00:00',1473,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1987,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 17:32:46','reception','2025-10-29 17:33:10',0),(5882,2526,0,0,1851,'2025-10-29','00:00:00',1474,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1988,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 17:35:51','reception','2025-10-29 17:36:14',0),(5883,2526,0,0,1852,'2025-10-29','00:00:00',1475,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1990,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 17:42:01','reception','2025-10-29 17:44:15',0),(5884,2526,0,0,1853,'2025-10-29','00:00:00',1476,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',1989,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-29 17:42:38','priyanshi','2025-10-29 17:43:06',0),(5885,2526,0,0,1854,'2025-10-29','00:00:00',919,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1991,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 17:44:55','reception','2025-10-29 17:45:25',0),(5886,2526,0,0,1855,'2025-10-29','00:00:00',1477,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',1992,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 17:50:23','reception','2025-10-29 17:52:32',0),(5887,2526,0,0,1563,'2025-10-29','17:50:00',0,99,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',89,20,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 17:51:27','','0000-00-00 00:00:00',0),(5888,2526,0,0,1563,'2025-10-28','17:51:00',0,99,'DRC','DRC0020','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',89,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 17:51:27','vishal','2025-10-29 17:57:19',0),(5889,2526,0,0,1856,'2025-10-29','00:00:00',1478,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',1993,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 17:57:08','janvi','2025-10-29 17:57:34',0),(5890,2526,0,0,1563,'2025-10-27','17:56:00',0,99,'SURG','SURG0014','H','N',1.00,41500,41500,'A',0,0,0.00,0.00,41500.00,41500,3,0,0,'',0,0,'','','','','',2526,'H','I',89,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 17:57:19','vishal','2025-10-29 18:04:21',0),(5891,2526,0,0,1563,'2025-10-27','17:56:00',0,99,'SURG','SURG0015','H','N',1.00,14000,14000,'A',0,0,0.00,0.00,14000.00,14000,3,0,0,'',0,0,'','','','','',2526,'H','I',89,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 17:57:19','vishal','2025-10-29 18:04:21',0),(5892,2526,0,0,1845,'2025-10-29','17:57:43',1468,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',1994,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 17:57:43','reception','2025-10-29 17:57:43',0),(5893,2526,0,0,1845,'2025-10-29','17:57:43',1468,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1994,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 17:57:43','reception','2025-10-29 17:57:43',0),(5894,2526,0,0,1845,'2025-10-29','17:57:43',1468,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',1994,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 17:57:43','reception','2025-10-29 17:57:43',0),(5895,2526,0,0,1857,'2025-10-29','00:00:00',1479,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1995,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 17:59:48','reception','2025-10-29 18:00:28',0),(5896,2526,0,0,1858,'2025-10-29','00:00:00',1480,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1996,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 18:02:19','janvi','2025-10-29 18:04:38',0),(5897,2526,0,0,1859,'2025-10-29','00:00:00',593,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',1997,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 18:04:09','reception','2025-10-29 18:05:22',0),(5898,2526,0,0,1860,'2025-10-29','00:00:00',1481,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',1998,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 18:08:34','reception','2025-10-29 18:08:50',0),(5899,2526,0,0,1861,'2025-10-29','00:00:00',1482,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',1999,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 18:15:20','janvi','2025-10-29 18:20:37',0),(5900,2526,0,0,1862,'2025-10-29','00:00:00',1483,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2001,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-29 18:16:10','manshi','2025-10-29 19:08:52',0),(5901,2526,0,0,1849,'2025-10-29','18:19:23',1472,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2002,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 18:19:23','reception','2025-10-29 18:19:23',0),(5902,2526,0,0,1849,'2025-10-29','18:19:23',1472,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2002,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 18:19:23','reception','2025-10-29 18:19:23',0),(5903,2526,0,0,1849,'2025-10-29','18:19:23',1472,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2002,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 18:19:23','reception','2025-10-29 18:19:23',0),(5904,2526,0,0,1863,'2025-10-29','00:00:00',53,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2003,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-29 18:19:27','manshi','2025-10-29 18:19:49',0),(5905,2526,0,0,1864,'2025-10-29','00:00:00',1484,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2004,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 18:19:28','janvi','2025-10-29 18:20:06',0),(5906,2526,0,0,1865,'2025-10-29','00:00:00',1485,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2006,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-29 18:21:20','shweta','2025-10-29 18:22:00',0),(5907,2526,0,0,1864,'2025-10-29','18:24:19',1484,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',2007,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 18:24:19','janvi','2025-10-29 18:24:19',0),(5908,2526,0,0,1866,'2025-10-29','00:00:00',1486,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2011,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-29 18:26:19','shweta','2025-10-29 18:33:58',0),(5909,2526,0,0,1855,'2025-10-29','18:27:21',1477,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2008,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 18:27:21','reception','2025-10-29 18:27:21',0),(5910,2526,0,0,1855,'2025-10-29','18:27:21',1477,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2008,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 18:27:21','reception','2025-10-29 18:27:21',0),(5911,2526,0,0,1855,'2025-10-29','18:27:21',1477,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2008,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 18:27:21','reception','2025-10-29 18:27:21',0),(5912,2526,0,0,1363,'2025-10-29','18:27:00',0,86,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','','','','',2526,'H','I',88,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 18:28:59','','0000-00-00 00:00:00',0),(5913,2526,0,0,1363,'2025-10-29','18:27:00',0,86,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','','','','',2526,'H','I',88,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 18:28:59','','0000-00-00 00:00:00',0),(5914,2526,0,0,1867,'2025-10-29','00:00:00',1487,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2009,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 18:29:59','janvi','2025-10-29 18:30:35',0),(5915,2526,0,0,1868,'2025-10-29','00:00:00',1488,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2015,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-29 18:31:32','shweta','2025-10-29 18:37:35',0),(5916,2526,0,0,1363,'2025-10-29','18:31:00',0,86,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',88,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 18:32:20','','0000-00-00 00:00:00',0),(5917,2526,0,0,1869,'2025-10-29','00:00:00',497,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2012,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 18:32:56','drashti','2025-10-29 19:12:04',0),(5918,2526,0,0,1870,'2025-10-29','00:00:00',976,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2010,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 18:33:37','janvi','2025-10-29 18:33:51',0),(5919,2526,0,0,1871,'2025-10-29','00:00:00',1489,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2013,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 18:35:54','janvi','2025-10-29 18:36:27',0),(5920,2526,0,0,1872,'2025-10-29','00:00:00',1490,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2014,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-29 18:36:33','shweta','2025-10-29 18:36:53',0),(5921,2526,0,0,1862,'2025-10-29','18:39:03',1483,0,'XRY','XRY0254','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',2016,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-29 18:39:03','manshi','2025-10-29 18:39:03',0),(5922,2526,0,0,1873,'2025-10-29','00:00:00',1491,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2017,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-10-29 18:40:02','shweta','2025-10-29 18:41:44',0),(5923,2526,0,0,1874,'2025-10-29','00:00:00',1492,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2018,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 18:40:55','reception','2025-10-29 18:42:12',0),(5924,2526,0,0,1850,'2025-10-29','18:43:13',1473,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2019,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 18:43:13','reception','2025-10-29 18:43:13',0),(5925,2526,0,0,1850,'2025-10-29','18:43:13',1473,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2019,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 18:43:13','reception','2025-10-29 18:43:13',0),(5926,2526,0,0,1850,'2025-10-29','18:43:13',1473,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2019,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 18:43:13','reception','2025-10-29 18:43:13',0),(5927,2526,0,0,1875,'2025-10-29','00:00:00',659,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2020,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 18:47:00','janvi','2025-10-29 18:49:35',0),(5928,2526,0,0,1851,'2025-10-29','18:52:16',1474,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2021,1,471,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 18:52:16','reception','2025-10-29 18:52:16',0),(5929,2526,0,0,1851,'2025-10-29','18:52:16',1474,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2021,2,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 18:52:16','reception','2025-10-29 18:52:16',0),(5930,2526,0,0,1851,'2025-10-29','18:52:16',1474,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2021,3,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 18:52:16','reception','2025-10-29 18:52:16',0),(5931,2526,0,0,1876,'2025-10-29','00:00:00',1493,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2022,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 19:03:15','reception','2025-10-29 19:03:52',0),(5932,2526,0,0,1877,'2025-10-29','00:00:00',1494,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2023,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-29 19:06:28','drashti','2025-10-29 19:07:25',0),(5933,2526,0,0,1862,'2025-10-29','19:13:19',1483,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2026,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-29 19:13:19','manshi','2025-10-29 19:13:19',0),(5934,2526,0,0,1878,'2025-10-29','00:00:00',1495,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2027,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 19:14:54','reception','2025-10-29 19:15:42',0),(5935,2526,0,0,1879,'2025-10-29','19:37:17',1126,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2028,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 19:37:17','janvi','2025-10-29 19:37:17',0),(5936,2526,0,0,1880,'2025-10-29','00:00:00',562,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2029,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 19:37:37','reception','2025-10-29 19:38:09',0),(5937,2526,0,0,1881,'2025-10-29','00:00:00',1496,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2030,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 19:39:54','janvi','2025-10-29 19:41:27',0),(5938,2526,0,0,1882,'2025-10-29','00:00:00',54,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 19:53:55','janvi','2025-10-29 08:23:56',0),(5939,2526,0,0,1883,'2025-10-29','00:00:00',1497,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2031,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-29 19:55:19','reception','2025-10-29 19:55:33',0),(5940,2526,0,0,1881,'2025-10-29','20:12:27',1496,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',2032,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-29 20:12:27','janvi','2025-10-29 20:12:27',0),(5941,2526,0,0,1501,'2025-10-29','20:29:00',1156,93,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',90,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 20:31:21','','0000-00-00 00:00:00',0),(5942,2526,0,0,1501,'2025-10-29','20:29:00',1156,93,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',90,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 20:31:21','','0000-00-00 00:00:00',0),(5943,2526,0,0,1501,'2025-10-27','11:00:00',1156,93,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',90,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 20:31:21','vishal','2025-10-29 20:31:45',0),(5944,2526,0,0,674,'2025-10-15','22:46:00',0,50,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',275,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 22:46:27','riya','2025-12-15 17:45:47',0),(5945,2526,0,0,674,'2025-10-13','22:49:00',0,50,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',275,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 22:49:23','riya','2025-12-15 17:45:47',0),(5946,2526,0,0,687,'2025-10-14','23:04:00',482,54,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',235,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 23:06:36','','0000-00-00 00:00:00',0),(5947,2526,0,0,687,'2025-10-14','23:05:00',482,54,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',235,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 23:06:36','','0000-00-00 00:00:00',0),(5948,2526,0,0,687,'2025-10-15','23:05:00',482,54,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',235,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 23:06:36','','0000-00-00 00:00:00',0),(5949,2526,0,0,687,'2025-10-15','23:05:00',482,54,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',235,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 23:06:36','','0000-00-00 00:00:00',0),(5950,2526,0,0,687,'2025-10-14','23:05:00',482,54,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',235,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-29 23:06:36','','0000-00-00 00:00:00',0),(5951,2526,0,0,1884,'2025-10-30','00:00:00',1498,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-30 09:03:25','urvashi','2025-10-29 21:33:25',0),(5952,2526,0,0,1884,'2025-10-30','09:04:14',1498,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',2033,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-30 09:04:14','urvashi','2025-10-30 09:04:14',0),(5953,2526,0,0,1884,'2025-10-30','09:04:14',1498,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',2033,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-30 09:04:14','urvashi','2025-10-30 09:04:14',0),(5954,2526,0,0,1885,'2025-10-30','00:00:00',1499,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-30 09:05:14','urvashi','2025-10-29 21:35:14',0),(5955,2526,0,0,1885,'2025-10-30','09:07:08',1499,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',2034,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-10-30 09:07:08','urvashi','2025-10-30 09:07:08',0),(5956,2526,0,0,1885,'2025-10-30','09:07:08',1499,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',2034,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-10-30 09:07:08','urvashi','2025-10-30 09:07:08',0),(5957,2526,0,0,1885,'2025-10-30','09:07:08',1499,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,53,'',0,0,'','','','','',2526,'H','O',2034,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-10-30 09:07:08','urvashi','2025-10-30 09:07:08',0),(5958,2526,0,0,1886,'2025-10-30','00:00:00',1500,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2035,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 09:31:19','reception','2025-10-30 09:31:56',0),(5959,2526,0,0,1887,'2025-10-30','00:00:00',469,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2036,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 09:33:42','reception','2025-10-30 09:34:28',0),(5960,2526,0,0,1888,'2025-10-30','09:40:00',1454,109,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',96,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 09:40:40','riya','2025-10-30 11:28:40',0),(5961,2526,0,0,1888,'2025-10-30','09:40:00',1454,109,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',96,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 09:40:40','riya','2025-10-30 11:28:40',0),(5962,2526,0,0,1888,'2025-10-30','09:40:00',1454,109,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',96,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 22:10:40','riya','2025-10-30 11:28:40',0),(5963,2526,0,0,1888,'2025-10-30','09:40:00',1454,109,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',96,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 22:10:40','riya','2025-10-30 11:28:40',0),(5964,2526,0,0,1888,'2025-10-30','09:40:00',1454,109,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',96,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 22:10:40','riya','2025-10-30 11:28:40',0),(5965,2526,0,0,1888,'2025-10-30','09:40:00',1454,109,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',2526,'H','I',96,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 22:10:40','riya','2025-10-30 11:28:40',0),(5966,2526,0,0,1888,'2025-10-30','09:40:00',1454,109,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',2526,'H','I',96,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 22:10:40','riya','2025-10-30 11:28:40',0),(5967,2526,0,0,1889,'2025-10-30','00:00:00',1501,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2037,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 10:18:32','reception','2025-10-30 10:18:46',0),(5968,2526,0,0,1890,'2025-10-30','00:00:00',1502,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2038,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 10:28:09','drashti','2025-10-30 10:28:31',0),(5969,2526,0,0,1891,'2025-10-30','00:00:00',1503,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2039,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 10:30:13','reception','2025-10-30 10:30:56',0),(5970,2526,0,0,1892,'2025-10-30','00:00:00',1504,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2040,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 10:39:56','reception','2025-10-30 10:40:31',0),(5971,2526,0,0,1893,'2025-10-30','00:00:00',699,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2041,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 10:41:16','reception','2025-10-30 10:41:41',0),(5972,2526,0,0,1894,'2025-10-30','00:00:00',300,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2042,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 10:43:18','reception','2025-10-30 10:43:44',0),(5973,2526,0,0,1895,'2025-10-30','00:00:00',1505,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2043,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 10:44:58','reception','2025-10-30 10:45:34',0),(5974,2526,0,0,1896,'2025-10-30','00:00:00',1506,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2044,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 10:46:53','reception','2025-10-30 11:45:51',0),(5975,2526,0,0,1897,'2025-10-30','00:00:00',1507,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2045,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 10:56:15','reception','2025-10-30 10:57:29',0),(5976,2526,0,0,1899,'2025-10-30','00:00:00',1508,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2046,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:02:13','reception','2025-10-30 11:02:48',0),(5977,2526,0,0,1900,'2025-10-30','00:00:00',757,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2047,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 11:03:52','drashti','2025-10-30 11:04:39',0),(5978,2526,0,0,1901,'2025-10-30','00:00:00',1509,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2048,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:04:34','reception','2025-10-30 11:04:49',0),(5979,2526,0,0,1902,'2025-10-30','00:00:00',1070,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2049,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 11:05:49','janvi','2025-10-30 11:06:35',0),(5980,2526,0,0,1903,'2025-10-30','00:00:00',1510,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2050,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:06:15','reception','2025-10-30 11:06:48',0),(5981,2526,0,0,1904,'2025-10-30','00:00:00',696,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2051,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 11:07:10','janvi','2025-10-30 11:07:38',0),(5982,2526,0,0,1905,'2025-10-30','00:00:00',1511,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2052,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 11:09:17','drashti','2025-10-30 11:10:19',0),(5983,2526,0,0,1906,'2025-10-30','00:00:00',1512,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2053,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 11:12:32','drashti','2025-10-30 11:12:51',0),(5984,2526,0,0,1723,'2025-10-29','13:50:00',1368,105,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 23:43:56','riya','2025-10-30 11:14:49',0),(5985,2526,0,0,1723,'2025-10-29','13:50:00',1368,105,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 23:43:56','vishal','2025-11-03 12:46:19',0),(5986,2526,0,0,1723,'2025-10-30','13:50:00',1368,105,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','207','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 23:43:56','vishal','2025-11-03 12:44:13',0),(5987,2526,0,0,1723,'2025-10-29','13:50:00',1368,105,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','207','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 23:43:56','vishal','2025-11-03 12:48:06',0),(5988,2526,0,0,1723,'2025-10-29','13:50:00',1368,105,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 23:43:56','vishal','2025-11-03 12:46:19',0),(5989,2526,0,0,1891,'2025-10-30','11:14:35',1503,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2054,1,50,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:14:35','reception','2025-10-30 11:14:35',0),(5990,2526,0,0,1891,'2025-10-30','11:14:35',1503,0,'NEU1','NEU10019','H','N',1.00,1800,1800,'P',0,0,0.00,0.00,0.00,1800,9999,0,0,'',0,0,'','','','','',2526,'H','O',2054,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:14:35','reception','2025-10-30 11:14:35',0),(5991,2526,0,0,1891,'2025-10-30','11:14:35',1503,0,'NEU1','NEU10017','H','N',1.00,1800,1800,'P',0,0,0.00,0.00,0.00,1800,9999,0,0,'',0,0,'','','','','',2526,'H','O',2054,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:14:35','reception','2025-10-30 11:14:35',0),(5992,2526,0,0,1891,'2025-10-30','11:14:35',1503,0,'NEU1','NEU10024','H','N',1.00,1900,1900,'P',0,0,0.00,0.00,0.00,1900,9999,0,0,'',0,0,'','','','','',2526,'H','O',2054,4,190,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:14:35','reception','2025-10-30 11:14:35',0),(5993,2526,0,0,1907,'2025-10-30','00:00:00',1513,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2055,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 11:17:59','janvi','2025-10-30 11:18:35',0),(5994,2526,0,0,1908,'2025-10-30','00:00:00',1514,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2056,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 11:20:56','drashti','2025-10-30 11:22:32',0),(5995,2526,0,0,1888,'2025-10-30','11:28:00',1454,109,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',96,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:28:40','','0000-00-00 00:00:00',0),(5996,2526,0,0,1888,'2025-10-30','11:28:00',1454,109,'WPRC','WPRC0080','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',96,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:28:40','','0000-00-00 00:00:00',0),(5997,2526,0,0,1909,'2025-10-30','00:00:00',292,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2057,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:28:44','reception','2025-10-30 11:29:00',0),(5998,2526,0,0,1660,'2025-10-29','19:45:00',0,102,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',93,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 23:59:18','vishal','2025-10-31 12:27:38',0),(5999,2526,0,0,1660,'2025-10-29','19:45:00',0,102,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',93,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 23:59:18','riya','2025-10-30 11:32:18',0),(6000,2526,0,0,1660,'2025-10-29','19:45:00',0,102,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',0,'','',0,27,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 23:59:18','vishal','2025-10-30 21:57:45',0),(6001,2526,0,0,1660,'2025-10-29','19:45:00',0,102,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','I',93,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 23:59:18','riya','2025-10-30 11:32:18',0),(6002,2526,0,0,1660,'2025-10-29','19:45:00',0,102,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',93,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-29 23:59:18','vishal','2025-10-31 12:27:38',0),(6003,2526,0,0,1910,'2025-10-30','00:00:00',773,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2070,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 11:29:22','drashti','2025-10-30 11:48:52',0),(6004,2526,0,0,1660,'2025-10-30','11:29:00',0,102,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:32:18','vishal','2025-10-31 12:13:23',0),(6005,2526,0,0,1660,'2025-10-30','11:29:00',0,102,'WPRC','WPRC0080','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:32:18','vishal','2025-10-31 12:13:23',0),(6006,2526,0,0,1660,'2025-10-28','11:30:00',0,102,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:32:18','','0000-00-00 00:00:00',0),(6007,2526,0,0,1660,'2025-10-29','11:30:00',0,102,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:32:18','','0000-00-00 00:00:00',0),(6008,2526,0,0,1660,'2025-10-28','11:31:00',0,102,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,6,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:32:18','vishal','2025-10-30 21:57:45',0),(6009,2526,0,0,1727,'2025-10-29','15:26:00',1363,107,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',100,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:02:33','vishal','2025-11-01 12:57:28',0),(6010,2526,0,0,1727,'2025-10-29','15:26:00',1363,107,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',100,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:02:33','vishal','2025-11-01 12:57:28',0),(6011,2526,0,0,1727,'2025-10-29','15:26:00',1363,107,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',100,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:02:33','vishal','2025-11-01 12:57:28',0),(6012,2526,0,0,1727,'2025-10-29','15:26:00',1363,107,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',100,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:02:33','vishal','2025-11-01 12:57:28',0),(6013,2526,0,0,1727,'2025-10-29','15:26:00',1363,107,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',100,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:02:33','vishal','2025-11-01 12:57:28',0),(6014,2526,0,0,1911,'2025-10-30','00:00:00',1515,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2058,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 11:33:10','drashti','2025-10-30 11:34:31',0),(6015,2526,0,0,1727,'2025-10-29','11:32:00',1363,107,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',100,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:34:40','vishal','2025-11-01 12:57:28',0),(6016,2526,0,0,1727,'2025-10-29','11:33:00',1363,107,'USG','USG0097','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',100,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:34:40','vishal','2025-11-01 12:57:28',0),(6017,2526,0,0,1727,'2025-10-30','11:34:00',1363,107,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',100,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:34:40','vishal','2025-11-01 12:57:28',0),(6018,2526,0,0,1913,'2025-10-30','00:00:00',1516,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2060,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:35:39','reception','2025-10-30 11:36:24',0),(6019,2526,0,0,1912,'2025-10-30','11:35:56',116,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2059,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 11:35:56','janvi','2025-10-30 11:35:56',0),(6020,2526,0,0,1914,'2025-10-30','00:00:00',1517,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2061,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 11:36:52','janvi','2025-10-30 11:37:30',0),(6021,2526,0,0,1892,'2025-10-30','11:40:22',1504,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2062,1,478,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:40:22','reception','2025-10-30 11:40:22',0),(6022,2526,0,0,1892,'2025-10-30','11:40:22',1504,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2062,2,478,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:40:22','reception','2025-10-30 11:40:22',0),(6023,2526,0,0,1892,'2025-10-30','11:40:22',1504,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2062,3,543,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:40:22','reception','2025-10-30 11:40:22',0),(6024,2526,0,0,1711,'2025-10-30','11:35:00',1343,104,'WPRC','WPRC0092','H','N',1.00,2500,2500,'A',0,0,0.00,0.00,2500.00,2500,39,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:41:07','vishal','2025-11-04 17:20:33',0),(6025,2526,0,0,1711,'2025-10-28','11:37:00',1343,104,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:41:07','','0000-00-00 00:00:00',0),(6026,2526,0,0,1711,'2025-10-29','11:37:00',1343,104,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:41:07','','0000-00-00 00:00:00',0),(6027,2526,0,0,1711,'2025-10-30','11:37:00',1343,104,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:41:07','vishal','2025-11-04 17:16:09',0),(6028,2526,0,0,1711,'2025-10-28','11:38:00',1343,104,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,3,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:41:07','','0000-00-00 00:00:00',0),(6029,2526,0,0,1711,'2025-10-28','11:38:00',1343,104,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:41:07','','0000-00-00 00:00:00',0),(6030,2526,0,0,1711,'2025-10-29','11:38:00',1343,104,'WPRC','WPRC0087','H','N',2.00,500,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:41:07','vishal','2025-11-04 17:20:33',0),(6031,2526,0,0,1711,'2025-10-30','11:39:00',1343,104,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:41:07','vishal','2025-11-04 17:16:09',0),(6032,2526,0,0,1711,'2025-10-30','11:39:00',1343,104,'DRC','DRC0020','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:41:07','vishal','2025-11-04 17:16:09',0),(6033,2526,0,0,1782,'2025-10-30','06:30:00',0,108,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',97,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:12:10','riya','2025-10-30 11:43:41',0),(6034,2526,0,0,1782,'2025-10-30','06:30:00',0,108,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',97,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:12:10','riya','2025-10-30 11:43:41',0),(6035,2526,0,0,1782,'2025-10-30','06:30:00',0,108,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',97,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:12:10','vishal','2025-11-01 12:03:47',0),(6036,2526,0,0,1782,'2025-10-30','06:30:00',0,108,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',97,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:12:10','riya','2025-10-30 11:44:42',0),(6037,2526,0,0,1782,'2025-10-30','06:30:00',0,108,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',97,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:12:10','vishal','2025-11-01 12:03:47',0),(6038,2526,0,0,1915,'2025-10-30','00:00:00',1518,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2063,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:43:01','reception','2025-10-30 11:43:14',0),(6039,2526,0,0,1916,'2025-10-30','00:00:00',1519,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2064,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 11:43:20','drashti','2025-10-30 11:44:21',0),(6040,2526,0,0,1782,'2025-10-29','11:42:00',0,108,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',97,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:43:41','riya','2025-10-30 11:44:42',0),(6041,2526,0,0,1782,'2025-10-29','11:42:00',0,108,'USG','USG0092','H','N',1.00,1200,1200,'A',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',97,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:43:41','riya','2025-10-30 11:44:42',0),(6042,2526,0,0,1782,'2025-10-30','11:43:00',0,108,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',97,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:43:41','vishal','2025-11-01 12:01:26',0),(6043,2526,0,0,414,'2025-10-30','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:14:56','vishal','2025-11-01 14:43:03',0),(6044,2526,0,0,414,'2025-10-30','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:14:56','vishal','2025-11-01 14:43:03',0),(6045,2526,0,0,414,'2025-10-30','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:14:56','vishal','2025-11-01 14:43:03',0),(6046,2526,0,0,414,'2025-10-30','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:14:56','riya','2025-10-30 11:50:23',0),(6047,2526,0,0,414,'2025-10-30','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:14:56','vishal','2025-11-01 14:43:03',0),(6048,2526,0,0,1917,'2025-10-30','00:00:00',1520,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2065,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 11:45:02','drashti','2025-10-30 11:45:46',0),(6049,2526,0,0,1918,'2025-10-30','00:00:00',1521,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2068,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 11:45:59','janvi','2025-10-30 11:47:11',0),(6050,2526,0,0,1905,'2025-10-30','11:46:59',1511,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2067,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 11:46:59','drashti','2025-10-30 11:46:59',0),(6051,2526,0,0,1896,'2025-10-30','11:48:20',1506,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2069,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:48:20','reception','2025-10-30 11:48:20',0),(6052,2526,0,0,414,'2025-10-29','11:45:00',0,25,'USG','USG0095','H','N',1.00,1200,1200,'A',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:50:23','vishal','2025-11-01 14:43:03',0),(6053,2526,0,0,414,'2025-10-30','11:45:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:50:23','vishal','2025-11-01 14:43:03',0),(6054,2526,0,0,414,'2025-10-30','11:46:00',0,25,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:50:23','vishal','2025-11-01 14:43:03',0),(6055,2526,0,0,414,'2025-10-30','11:46:00',0,25,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:50:23','vishal','2025-11-01 14:34:19',0),(6056,2526,0,0,1919,'2025-10-30','00:00:00',1522,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2071,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:50:39','reception','2025-10-30 11:50:53',0),(6057,2526,0,0,1920,'2025-10-30','00:00:00',1523,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2072,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:51:34','reception','2025-10-30 11:52:32',0),(6058,2526,0,0,414,'2025-10-29','11:51:00',0,25,'DRC','DRC0020','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,37,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 11:52:11','vishal','2025-11-01 14:34:19',0),(6059,2526,0,0,1921,'2025-10-30','00:00:00',1524,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2073,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 11:52:26','drashti','2025-10-30 11:52:59',0),(6060,2526,0,0,1922,'2025-10-30','00:00:00',1525,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2074,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 11:54:27','drashti','2025-10-30 11:55:01',0),(6061,2526,0,0,1903,'2025-10-30','11:56:07',1510,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2075,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:56:07','reception','2025-10-30 11:56:07',0),(6062,2526,0,0,1903,'2025-10-30','11:56:07',1510,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2075,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:56:07','reception','2025-10-30 11:56:07',0),(6063,2526,0,0,1903,'2025-10-30','11:56:07',1510,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2075,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 11:56:07','reception','2025-10-30 11:56:07',0),(6064,2526,0,0,1700,'2025-10-29','11:45:00',1307,103,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',91,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:27:15','riya','2025-10-30 12:03:40',0),(6065,2526,0,0,1700,'2025-10-29','11:45:00',1307,103,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',91,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:27:15','riya','2025-10-30 12:03:40',0),(6066,2526,0,0,1700,'2025-10-29','11:45:00',1307,103,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',91,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:27:15','riya','2025-10-30 12:03:40',0),(6067,2526,0,0,1700,'2025-10-29','11:45:00',1307,103,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',2526,'H','I',91,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:27:15','riya','2025-10-30 12:03:40',0),(6068,2526,0,0,1700,'2025-10-29','11:45:00',1307,103,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',2526,'H','I',91,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 00:27:15','riya','2025-10-30 12:03:40',0),(6069,2526,0,0,1924,'2025-10-30','00:00:00',1526,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2076,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 11:58:42','drashti','2025-10-30 11:59:33',0),(6070,2526,0,0,1700,'2025-10-29','11:58:00',1307,103,'ROOM','ROOM0008','H','N',12.00,100,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',91,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 12:03:40','','0000-00-00 00:00:00',0),(6071,2526,0,0,1700,'2025-10-30','11:58:00',1307,103,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',91,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 12:03:40','','0000-00-00 00:00:00',0),(6072,2526,0,0,1700,'2025-10-29','11:58:00',1307,103,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',91,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 12:03:40','','0000-00-00 00:00:00',0),(6073,2526,0,0,1700,'2025-10-30','11:59:00',1307,103,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',91,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 12:03:40','','0000-00-00 00:00:00',0),(6074,2526,0,0,1700,'2025-10-29','11:59:00',1307,103,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',91,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 12:03:40','','0000-00-00 00:00:00',0),(6075,2526,0,0,1700,'2025-10-30','11:59:00',1307,103,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',91,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 12:03:40','','0000-00-00 00:00:00',0),(6076,2526,0,0,1700,'2025-10-29','12:00:00',1307,103,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',91,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 12:03:40','','0000-00-00 00:00:00',0),(6077,2526,0,0,1700,'2025-10-29','12:02:00',1307,103,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,78,0,0,'',0,0,'','','','','',2526,'H','I',91,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 12:03:40','','0000-00-00 00:00:00',0),(6078,2526,0,0,1925,'2025-10-30','00:00:00',1527,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2077,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 12:05:58','janvi','2025-10-30 12:06:43',0),(6079,2526,0,0,1926,'2025-10-30','12:07:44',118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2078,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 12:07:44','drashti','2025-10-30 12:07:44',0),(6080,2526,0,0,1927,'2025-10-30','00:00:00',1528,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',2079,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-30 12:08:55','manshi','2025-10-30 12:11:21',0),(6081,2526,0,0,1928,'2025-10-30','00:00:00',1529,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2080,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 12:10:43','drashti','2025-10-30 12:11:23',0),(6082,2526,0,0,1916,'2025-10-30','12:15:38',1519,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',2081,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 12:15:38','drashti','2025-10-30 12:15:38',0),(6083,2526,0,0,1917,'2025-10-30','12:16:09',1520,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,54,'',0,0,'','','','','',2526,'H','O',2082,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'drashti','2025-10-30 12:16:09','drashti','2025-10-30 12:16:09',0),(6084,2526,0,0,1929,'2025-10-30','00:00:00',1530,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2083,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 12:17:16','reception','2025-10-30 12:17:56',0),(6085,2526,0,0,1920,'2025-10-30','12:23:19',1523,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2084,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 12:23:19','reception','2025-10-30 12:23:19',0),(6086,2526,0,0,1920,'2025-10-30','12:23:19',1523,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2084,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 12:23:19','reception','2025-10-30 12:23:19',0),(6087,2526,0,0,1920,'2025-10-30','12:23:19',1523,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2084,3,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 12:23:19','reception','2025-10-30 12:23:19',0),(6088,2526,0,0,1898,'2025-10-30','12:24:19',1476,0,'WPRC','WPRC0046','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',2085,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 12:24:19','janvi','2025-10-30 12:24:19',0),(6089,2526,0,0,1930,'2025-10-30','00:00:00',1531,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2086,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 12:25:46','reception','2025-10-30 12:26:31',0),(6090,2526,0,0,1931,'2025-10-30','00:00:00',1532,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2087,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 12:33:47','janvi','2025-10-30 12:34:19',0),(6091,2526,0,0,1932,'2025-10-30','00:00:00',1533,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',2090,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 12:37:46','drashti','2025-10-30 13:05:48',0),(6092,2526,0,0,1933,'2025-10-30','00:00:00',1534,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2088,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 12:38:59','reception','2025-10-30 12:44:13',0),(6093,2526,0,0,1934,'2025-10-30','12:40:00',0,110,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',92,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 12:43:19','riya','2025-10-30 18:37:42',0),(6094,2526,0,0,1934,'2025-10-30','12:40:00',0,110,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',92,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 12:43:19','riya','2025-10-30 18:37:42',0),(6095,2526,0,0,1934,'2025-10-30','12:40:00',0,110,'ROOM','ROOM0009','H','N',0.50,5500,2750,'A',0,0,0.00,0.00,2750.00,2750,9999,0,0,'',0,0,'','208','','','',2526,'H','I',92,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 01:13:19','riya','2025-10-30 18:38:32',0),(6096,2526,0,0,1934,'2025-10-30','12:40:00',0,110,'AECO','AECO0008','H','N',0.50,800,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','208','','','',2526,'H','I',92,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 01:13:19','riya','2025-10-30 18:38:32',0),(6097,2526,0,0,1934,'2025-10-30','12:40:00',0,110,'CARE','CARE0001','H','N',0.50,600,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','208','','','',2526,'H','I',92,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 01:13:19','riya','2025-10-30 18:38:32',0),(6098,2526,0,0,1934,'2025-10-30','12:40:00',0,110,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 01:13:19','riya','2025-10-30 18:39:45',0),(6099,2526,0,0,1934,'2025-10-30','12:40:00',0,110,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','208','','','',2526,'H','I',92,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 01:13:19','riya','2025-10-30 18:37:42',0),(6100,2526,0,0,1935,'2025-10-30','00:00:00',1535,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2089,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 12:47:43','janvi','2025-10-30 12:48:19',0),(6101,2526,0,0,1936,'2025-10-30','12:50:00',1514,111,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 12:55:32','vishal','2025-10-31 18:31:15',0),(6102,2526,0,0,1936,'2025-10-30','12:50:00',1514,111,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 12:55:32','vishal','2025-10-31 18:31:15',0),(6103,2526,0,0,1936,'2025-10-30','12:50:00',1514,111,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',102,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 01:25:32','vishal','2025-10-31 18:31:15',0),(6104,2526,0,0,1936,'2025-10-30','12:50:00',1514,111,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',102,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 01:25:32','vishal','2025-10-31 18:31:15',0),(6105,2526,0,0,1936,'2025-10-30','12:50:00',1514,111,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',102,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 01:25:32','vishal','2025-10-31 18:31:15',0),(6106,2526,0,0,1936,'2025-10-30','12:50:00',1514,111,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',102,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 01:25:32','vishal','2025-10-31 18:31:15',0),(6107,2526,0,0,1936,'2025-10-30','12:50:00',1514,111,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',102,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 01:25:32','vishal','2025-10-31 18:31:15',0),(6108,2526,0,0,1937,'2025-10-30','00:00:00',1536,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-30 13:00:44','manshi','2025-10-30 01:30:44',0),(6109,2526,0,0,1938,'2025-10-30','00:00:00',1537,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2091,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 13:05:00','janvi','2025-10-30 13:06:04',0),(6110,2526,0,0,1939,'2025-10-30','00:00:00',1538,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2092,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 13:40:53','janvi','2025-10-30 13:42:30',0),(6111,2526,0,0,1940,'2025-10-30','13:52:00',1532,112,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',107,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 13:55:03','vishal','2025-11-03 12:25:40',0),(6112,2526,0,0,1940,'2025-10-30','13:52:00',1532,112,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',107,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 13:55:03','vishal','2025-11-03 12:25:40',0),(6113,2526,0,0,1940,'2025-10-30','13:52:00',1532,112,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 02:25:03','vishal','2025-11-03 12:25:40',0),(6114,2526,0,0,1940,'2025-10-30','13:52:00',1532,112,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 02:25:03','vishal','2025-11-03 12:25:40',0),(6115,2526,0,0,1940,'2025-10-30','13:52:00',1532,112,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 02:25:03','vishal','2025-11-03 12:25:40',0),(6116,2526,0,0,1940,'2025-11-03','13:52:00',1532,112,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 02:25:03','vishal','2025-11-03 12:25:40',0),(6117,2526,0,0,1940,'2025-10-30','13:52:00',1532,112,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 02:25:03','vishal','2025-11-03 12:25:40',0),(6118,2526,0,0,1941,'2025-10-30','13:56:00',0,113,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',108,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 13:58:09','vishal','2025-11-03 12:23:11',0),(6119,2526,0,0,1941,'2025-10-30','13:56:00',0,113,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',108,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 13:58:09','vishal','2025-11-03 12:23:11',0),(6120,2526,0,0,1941,'2025-10-30','13:56:00',0,113,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',108,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 02:28:09','vishal','2025-11-03 12:23:11',0),(6121,2526,0,0,1941,'2025-10-30','13:56:00',0,113,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',108,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 02:28:09','vishal','2025-11-03 12:23:11',0),(6122,2526,0,0,1941,'2025-10-30','13:56:00',0,113,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',108,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 02:28:09','vishal','2025-11-03 12:23:11',0),(6123,2526,0,0,1941,'2025-10-30','13:56:00',0,113,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-10-30 02:28:09','vishal','2025-11-03 12:23:11',0),(6124,2526,0,0,1941,'2025-10-30','13:56:00',0,113,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',108,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 02:28:09','vishal','2025-11-03 12:23:11',0),(6125,2526,0,0,1918,'2025-10-30','14:01:21',1521,0,'WPRC','WPRC0046','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',2093,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 14:01:21','janvi','2025-10-30 14:01:21',0),(6126,2526,0,0,1942,'2025-10-30','14:00:00',0,114,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',94,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 14:21:16','vishal','2025-10-31 12:16:01',0),(6127,2526,0,0,1942,'2025-10-30','14:00:00',0,114,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',94,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 14:21:16','vishal','2025-10-31 12:16:01',0),(6128,2526,0,0,1942,'2025-10-30','14:00:00',0,114,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',94,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 02:51:16','vishal','2025-10-31 12:16:01',0),(6129,2526,0,0,1942,'2025-10-30','14:00:00',0,114,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',94,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 02:51:16','vishal','2025-10-31 12:16:01',0),(6130,2526,0,0,1942,'2025-10-30','14:00:00',0,114,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',94,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 02:51:16','vishal','2025-10-31 12:16:01',0),(6131,2526,0,0,1942,'2025-10-31','14:00:00',0,114,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',94,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 02:51:16','vishal','2025-10-31 12:16:01',0),(6132,2526,0,0,1942,'2025-10-30','14:00:00',0,114,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',94,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 02:51:16','vishal','2025-10-31 12:16:01',0),(6133,2526,0,0,1943,'2025-10-30','00:00:00',294,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2094,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 16:05:20','reception','2025-10-30 16:05:41',0),(6134,2526,0,0,1727,'2025-10-30','15:26:00',1363,107,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',100,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 04:41:36','vishal','2025-11-01 12:57:28',0),(6135,2526,0,0,1727,'2025-10-30','15:26:00',1363,107,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',100,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 04:41:36','vishal','2025-11-01 12:57:28',0),(6136,2526,0,0,1727,'2025-10-30','15:26:00',1363,107,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',100,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 04:41:36','vishal','2025-11-01 12:57:28',0),(6137,2526,0,0,1727,'2025-10-30','15:26:00',1363,107,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',100,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 04:41:36','vishal','2025-11-01 12:57:28',0),(6138,2526,0,0,1727,'2025-10-30','15:26:00',1363,107,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',100,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 04:41:36','vishal','2025-11-01 12:57:28',0),(6139,2526,0,0,1944,'2025-10-30','00:00:00',1539,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2095,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 16:47:10','reception','2025-10-30 16:47:47',0),(6140,2526,0,0,1945,'2025-10-30','16:50:32',1133,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2096,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-10-30 16:50:32','priyanshi','2025-10-30 16:50:32',0),(6141,2526,0,0,1946,'2025-10-30','00:00:00',1540,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2097,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 16:52:14','reception','2025-10-30 16:52:57',0),(6142,2526,0,0,1947,'2025-10-30','00:00:00',1541,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2098,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 16:59:52','reception','2025-10-30 17:00:33',0),(6143,2526,0,0,1948,'2025-10-30','00:00:00',1542,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2099,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:01:02','reception','2025-10-30 17:03:02',0),(6144,2526,0,0,1949,'2025-10-30','00:00:00',1543,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2100,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:05:42','reception','2025-10-30 17:06:33',0),(6145,2526,0,0,1950,'2025-10-30','00:00:00',1544,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2101,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:07:40','reception','2025-10-30 17:08:13',0),(6146,2526,0,0,1951,'2025-10-30','00:00:00',1545,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2102,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:09:40','reception','2025-10-30 17:09:58',0),(6147,2526,0,0,1952,'2025-10-30','00:00:00',1546,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2106,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:11:57','reception','2025-10-30 17:21:01',0),(6148,2526,0,0,1953,'2025-10-30','00:00:00',911,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2103,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:12:37','reception','2025-10-30 17:12:57',0),(6149,2526,0,0,1954,'2025-10-30','17:15:16',1475,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2104,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:15:16','reception','2025-10-30 17:15:16',0),(6150,2526,0,0,1954,'2025-10-30','17:15:16',1475,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',2104,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:15:16','reception','2025-10-30 17:15:16',0),(6151,2526,0,0,1955,'2025-10-30','00:00:00',1547,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2105,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:17:03','reception','2025-10-30 17:17:20',0),(6152,2526,0,0,1944,'2025-10-30','17:31:47',1539,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2107,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:31:47','reception','2025-10-30 17:31:47',0),(6153,2526,0,0,1944,'2025-10-30','17:31:47',1539,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2107,2,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:31:47','reception','2025-10-30 17:31:47',0),(6154,2526,0,0,1944,'2025-10-30','17:31:47',1539,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2107,3,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:31:47','reception','2025-10-30 17:31:47',0),(6155,2526,0,0,1944,'2025-10-30','17:31:47',1539,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2107,4,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:31:47','reception','2025-10-30 17:31:47',0),(6156,2526,0,0,1956,'2025-10-30','00:00:00',1548,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2108,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:34:02','reception','2025-10-30 17:34:49',0),(6157,2526,0,0,1957,'2025-10-30','00:00:00',1549,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2109,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:36:29','reception','2025-10-30 17:37:12',0),(6158,2526,0,0,1958,'2025-10-30','00:00:00',1550,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2110,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:39:10','reception','2025-10-30 17:40:54',0),(6159,2526,0,0,1959,'2025-10-30','00:00:00',753,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2111,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 17:43:18','drashti','2025-10-30 17:43:33',0),(6160,2526,0,0,1960,'2025-10-30','00:00:00',1551,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2112,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 17:44:49','drashti','2025-10-30 17:45:35',0),(6161,2526,0,0,1961,'2025-10-30','00:00:00',1552,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2113,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:49:43','reception','2025-10-30 17:49:52',0),(6162,2526,0,0,430,'2025-10-13','17:49:00',0,32,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',119,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 17:52:49','','0000-00-00 00:00:00',0),(6163,2526,0,0,430,'2025-10-13','17:49:00',0,32,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',119,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 17:52:49','vishal','2025-11-05 18:55:25',0),(6164,2526,0,0,430,'2025-10-12','17:49:00',0,32,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',119,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 17:52:49','riya','2025-10-30 17:53:02',0),(6165,2526,0,0,430,'2025-10-13','17:49:00',0,32,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',119,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 17:52:49','','0000-00-00 00:00:00',0),(6166,2526,0,0,1956,'2025-10-30','17:55:32',1548,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2114,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:55:32','reception','2025-10-30 17:55:32',0),(6167,2526,0,0,1956,'2025-10-30','17:55:32',1548,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2114,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 17:55:32','reception','2025-10-30 17:55:32',0),(6168,2526,0,0,1962,'2025-10-30','00:00:00',1553,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2115,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 17:57:31','janvi','2025-10-30 17:58:48',0),(6169,2526,0,0,1963,'2025-10-30','00:00:00',1554,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2116,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 18:02:39','reception','2025-10-30 18:02:55',0),(6170,2526,0,0,1964,'2025-10-30','00:00:00',1555,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2117,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 18:04:11','reception','2025-10-30 18:04:25',0),(6171,2526,0,0,1966,'2025-10-30','00:00:00',1556,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2118,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 18:14:48','drashti','2025-10-30 18:15:08',0),(6172,2526,0,0,1965,'2025-10-30','18:15:58',1179,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2119,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 18:15:58','reception','2025-10-30 18:15:58',0),(6173,2526,0,0,1967,'2025-10-30','00:00:00',1557,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2121,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 18:16:47','janvi','2025-10-30 18:18:17',0),(6174,2526,0,0,1968,'2025-10-30','00:00:00',1558,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2120,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 18:16:48','drashti','2025-10-30 18:17:25',0),(6175,2526,0,0,1969,'2025-10-30','00:00:00',1559,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2122,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 18:18:59','reception','2025-10-30 18:19:58',0),(6176,2526,0,0,1970,'2025-10-30','00:00:00',1560,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2123,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 18:19:33','drashti','2025-10-30 18:20:20',0),(6177,2526,0,0,1971,'2025-10-30','00:00:00',1561,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2124,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 18:27:03','drashti','2025-10-30 18:30:35',0),(6178,2526,0,0,1972,'2025-10-30','00:00:00',1562,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2125,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 18:33:30','janvi','2025-10-30 18:34:37',0),(6179,2526,0,0,1934,'2025-10-30','18:34:00',0,110,'WPRC','WPRC0078','H','N',1.00,350,350,'P',0,0,0.00,0.00,350.00,350,9999,0,0,'',0,0,'','','','','',2526,'H','I',92,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 18:37:42','riya','2025-10-30 18:41:29',0),(6180,2526,0,0,1934,'2025-10-30','18:34:00',0,110,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',92,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 18:37:42','','0000-00-00 00:00:00',0),(6181,2526,0,0,1934,'2025-10-30','18:34:00',0,110,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,52,0,0,'',0,0,'','','','','',2526,'H','I',92,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 18:37:42','','0000-00-00 00:00:00',0),(6182,2526,0,0,1934,'2025-10-30','18:34:00',0,110,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',92,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 18:37:42','','0000-00-00 00:00:00',0),(6183,2526,0,0,1934,'2025-10-30','18:34:00',0,110,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,52,0,0,'',0,0,'','','','','',2526,'H','I',92,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 18:37:42','','0000-00-00 00:00:00',0),(6184,2526,0,0,1973,'2025-10-30','18:37:49',1105,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2126,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 18:37:49','drashti','2025-10-30 18:37:49',0),(6185,2526,0,0,1934,'2025-10-30','18:39:00',0,110,'DRC','DRC0021','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,5,0,0,'',0,0,'','','','','',2526,'H','I',92,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-30 18:39:45','','0000-00-00 00:00:00',0),(6186,2526,0,0,1974,'2025-10-30','00:00:00',1563,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2127,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 18:40:27','drashti','2025-10-30 18:41:18',0),(6187,2526,0,0,1975,'2025-10-30','00:00:00',1564,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2128,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-30 18:42:27','manshi','2025-10-30 18:43:30',0),(6188,2526,0,0,1976,'2025-10-30','00:00:00',1565,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2129,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 18:43:16','drashti','2025-10-30 18:44:03',0),(6189,2526,0,0,1977,'2025-10-30','00:00:00',1566,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2130,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 18:46:05','drashti','2025-10-30 18:46:42',0),(6190,2526,0,0,1969,'2025-10-30','18:50:24',1559,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2131,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 18:50:24','reception','2025-10-30 18:50:24',0),(6191,2526,0,0,1969,'2025-10-30','18:50:24',1559,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2131,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 18:50:24','reception','2025-10-30 18:50:24',0),(6192,2526,0,0,1969,'2025-10-30','18:50:24',1559,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2131,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 18:50:24','reception','2025-10-30 18:50:24',0),(6193,2526,0,0,1978,'2025-10-30','00:00:00',1567,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2132,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 18:51:23','janvi','2025-10-30 18:53:04',0),(6194,2526,0,0,1979,'2025-10-30','00:00:00',1568,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2133,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 18:52:41','drashti','2025-10-30 18:53:39',0),(6195,2526,0,0,1981,'2025-10-30','00:00:00',1569,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2134,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-30 19:15:53','reception','2025-10-30 19:16:27',0),(6196,2526,0,0,1982,'2025-10-30','00:00:00',1570,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2135,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 19:17:59','drashti','2025-10-30 19:19:29',0),(6197,2526,0,0,1983,'2025-10-30','00:00:00',427,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2136,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 19:19:45','janvi','2025-10-30 19:20:01',0),(6198,2526,0,0,1984,'2025-10-30','00:00:00',680,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2137,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-30 19:24:36','manshi','2025-10-30 19:25:16',0),(6199,2526,0,0,1985,'2025-10-30','19:28:02',221,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2138,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 19:28:02','drashti','2025-10-30 19:28:02',0),(6200,2526,0,0,1974,'2025-10-30','19:37:19',1563,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',2139,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 19:37:19','drashti','2025-10-30 19:37:19',0),(6201,2526,0,0,1974,'2025-10-30','19:37:19',1563,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',2139,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 19:37:19','drashti','2025-10-30 19:37:19',0),(6202,2526,0,0,1974,'2025-10-30','19:37:19',1563,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',2139,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 19:37:19','drashti','2025-10-30 19:37:19',0),(6203,2526,0,0,1986,'2025-10-30','00:00:00',1571,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 20:01:49','drashti','2025-10-30 08:31:49',0),(6204,2526,0,0,1986,'2025-10-30','20:02:38',1571,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,7,0,0,'',0,0,'','','','','',2526,'H','O',2140,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-30 20:02:38','drashti','2025-10-30 20:02:38',0),(6205,2526,0,0,1987,'2025-10-30','00:00:00',1572,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2141,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-30 20:09:48','janvi','2025-10-30 20:10:15',0),(6206,2526,0,0,1660,'2025-10-30','19:45:00',0,102,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',93,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 10:25:30','vishal','2025-10-31 12:27:38',0),(6207,2526,0,0,1660,'2025-10-30','19:45:00',0,102,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',93,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 10:25:30','vishal','2025-10-30 21:57:45',0),(6208,2526,0,0,1660,'2025-10-30','19:45:00',0,102,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','I',93,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 10:25:30','vishal','2025-10-30 21:57:45',0),(6209,2526,0,0,1660,'2025-10-30','19:45:00',0,102,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','I',93,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 10:25:30','vishal','2025-10-30 21:57:45',0),(6210,2526,0,0,1660,'2025-10-30','19:45:00',0,102,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',93,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 10:25:30','vishal','2025-10-31 12:27:38',0),(6211,2526,0,0,1660,'2025-10-29','11:00:00',0,102,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 21:57:45','vishal','2025-10-30 21:58:27',0),(6212,2526,0,0,1988,'2025-10-30','20:30:00',0,115,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',95,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 22:22:38','vishal','2025-10-31 18:43:17',0),(6213,2526,0,0,1988,'2025-10-30','20:30:00',0,115,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',95,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 22:22:38','vishal','2025-10-31 18:43:17',0),(6214,2526,0,0,1988,'2025-10-30','20:30:00',0,115,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',95,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 10:52:38','vishal','2025-10-31 18:43:17',0),(6215,2526,0,0,1988,'2025-10-30','20:30:00',0,115,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',95,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 10:52:38','vishal','2025-10-31 18:43:17',0),(6216,2526,0,0,1988,'2025-10-30','20:30:00',0,115,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',95,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 10:52:38','vishal','2025-10-31 18:43:17',0),(6217,2526,0,0,1988,'2025-10-31','20:30:00',0,115,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,6,0,0,'',0,0,'','410','','','',2526,'H','I',95,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 10:52:38','vishal','2025-10-31 18:43:45',0),(6218,2526,0,0,1988,'2025-10-30','20:30:00',0,115,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 10:52:38','vishal','2025-10-31 18:43:17',0),(6219,2526,0,0,1989,'2025-10-31','00:00:00',1573,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-31 08:56:34','urvashi','2025-10-30 21:26:35',0),(6220,2526,0,0,1989,'2025-10-31','08:57:46',1573,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',2142,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-31 08:57:46','urvashi','2025-10-31 08:57:46',0),(6221,2526,0,0,1989,'2025-10-31','08:57:46',1573,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',2142,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-31 08:57:46','urvashi','2025-10-31 08:57:46',0),(6222,2526,0,0,1990,'2025-10-31','00:00:00',1574,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-31 08:59:52','urvashi','2025-10-30 21:29:52',0),(6223,2526,0,0,1991,'2025-10-31','00:00:00',1575,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2143,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 09:02:38','reception','2025-10-31 09:03:02',0),(6224,2526,0,0,1990,'2025-10-31','09:03:28',1574,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',2144,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-31 09:03:28','urvashi','2025-10-31 09:03:28',0),(6225,2526,0,0,1990,'2025-10-31','09:03:28',1574,0,'DTPR','DTPR0067','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',2144,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-31 09:03:28','urvashi','2025-10-31 09:03:28',0),(6226,2526,0,0,1990,'2025-10-31','09:03:28',1574,0,'OPWD','OPWD0013','H','N',4.00,100,400,'P',0,0,0.00,0.00,0.00,400,6,0,0,'',0,0,'','','','','',2526,'H','O',2144,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-31 09:03:28','urvashi','2025-10-31 09:03:28',0),(6227,2526,0,0,1992,'2025-10-31','00:00:00',1576,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-31 09:05:10','urvashi','2025-10-30 21:35:10',0),(6228,2526,0,0,1992,'2025-10-31','09:08:51',1576,0,'SURG','SURG0005','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2145,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-31 09:08:51','urvashi','2025-10-31 09:08:51',0),(6229,2526,0,0,1992,'2025-10-31','09:08:51',1576,0,'WPRC','WPRC0046','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2145,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-10-31 09:08:51','urvashi','2025-10-31 09:08:51',0),(6230,2526,0,0,1993,'2025-10-31','00:00:00',1577,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2146,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 09:18:44','reception','2025-10-31 09:20:04',0),(6231,2526,0,0,1994,'2025-10-31','00:00:00',1578,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2147,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 09:46:42','reception','2025-10-31 09:47:08',0),(6232,2526,0,0,1995,'2025-10-31','09:15:00',1206,116,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',110,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 09:47:33','vishal','2025-11-01 11:09:46',0),(6233,2526,0,0,1995,'2025-10-31','09:15:00',1206,116,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',110,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 09:47:33','vishal','2025-11-01 11:09:46',0),(6234,2526,0,0,1995,'2025-11-01','09:15:00',1206,116,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',110,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 22:17:33','vishal','2025-11-01 11:09:46',0),(6235,2526,0,0,1995,'2025-11-01','09:15:00',1206,116,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',110,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 22:17:33','vishal','2025-11-01 11:09:46',0),(6236,2526,0,0,1995,'2025-11-01','09:15:00',1206,116,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',110,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 22:17:33','vishal','2025-11-01 11:09:46',0),(6237,2526,0,0,1995,'2025-10-31','09:15:00',1206,116,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','305','','','',2526,'H','I',110,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 22:17:33','vishal','2025-11-01 11:09:46',0),(6238,2526,0,0,1995,'2025-10-31','09:15:00',1206,116,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 22:17:33','vishal','2025-11-01 11:09:46',0),(6239,2526,0,0,1996,'2025-10-31','00:00:00',1579,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2148,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 09:52:05','reception','2025-10-31 09:52:25',0),(6240,2526,0,0,1997,'2025-10-31','09:53:48',1242,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',2149,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 09:53:48','reception','2025-10-31 09:53:48',0),(6241,2526,0,0,1998,'2025-10-31','00:00:00',1580,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2150,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 10:00:23','reception','2025-10-31 10:00:41',0),(6242,2526,0,0,1999,'2025-10-31','00:00:00',1581,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2151,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 10:01:26','reception','2025-10-31 10:01:42',0),(6243,2526,0,0,2000,'2025-10-31','00:00:00',985,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2152,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 10:02:50','reception','2025-10-31 10:03:07',0),(6244,2526,0,0,2001,'2025-10-31','00:00:00',600,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2153,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 10:05:01','janvi','2025-10-31 10:05:13',0),(6245,2526,0,0,2002,'2025-10-31','00:00:00',1582,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2154,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 10:11:50','reception','2025-10-31 10:12:54',0),(6246,2526,0,0,2003,'2025-10-31','00:00:00',1583,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2155,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 10:16:57','reception','2025-10-31 10:17:34',0),(6247,2526,0,0,2004,'2025-10-31','00:00:00',1584,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2156,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 10:19:13','reception','2025-10-31 10:20:33',0),(6248,2526,0,0,2005,'2025-10-31','00:00:00',1585,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2177,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 10:31:13','drashti','2025-10-31 11:26:02',0),(6249,2526,0,0,2006,'2025-10-31','00:00:00',1586,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2157,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 10:33:20','drashti','2025-10-31 10:35:01',0),(6250,2526,0,0,2007,'2025-10-31','00:00:00',1587,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2158,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 10:36:27','reception','2025-10-31 10:37:08',0),(6251,2526,0,0,2008,'2025-10-31','00:00:00',1588,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2159,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 10:36:55','drashti','2025-10-31 10:37:41',0),(6252,2526,0,0,2009,'2025-10-31','00:00:00',1589,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2160,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 10:38:39','reception','2025-10-31 10:39:03',0),(6253,2526,0,0,2010,'2025-10-31','00:00:00',632,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2161,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 10:40:05','reception','2025-10-31 11:16:04',0),(6254,2526,0,0,2011,'2025-10-31','00:00:00',1590,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2163,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 10:48:48','janvi','2025-10-31 10:50:34',0),(6255,2526,0,0,2012,'2025-10-31','00:00:00',1591,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2162,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 10:49:34','reception','2025-10-31 10:50:03',0),(6256,2526,0,0,2013,'2025-10-31','00:00:00',1592,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2164,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 10:52:51','janvi','2025-10-31 10:53:42',0),(6257,2526,0,0,2014,'2025-10-31','00:00:00',1593,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2165,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 10:53:22','reception','2025-10-31 10:54:00',0),(6258,2526,0,0,2015,'2025-10-31','00:00:00',1594,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2166,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 10:56:29','janvi','2025-10-31 10:58:10',0),(6259,2526,0,0,2016,'2025-10-31','00:00:00',1595,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2167,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 10:58:13','reception','2025-10-31 10:59:34',0),(6260,2526,0,0,2017,'2025-10-31','00:00:00',1596,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2168,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:02:10','reception','2025-10-31 11:02:29',0),(6261,2526,0,0,2018,'2025-10-31','10:45:00',0,117,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 11:04:58','riya','2025-10-31 20:08:33',0),(6262,2526,0,0,2018,'2025-10-31','10:45:00',0,117,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 11:04:58','riya','2025-10-31 20:08:33',0),(6263,2526,0,0,2018,'2025-10-31','10:45:00',0,117,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 23:34:58','riya','2025-10-31 20:08:33',0),(6264,2526,0,0,2018,'2025-10-31','10:45:00',0,117,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 23:34:58','riya','2025-10-31 20:08:33',0),(6265,2526,0,0,2018,'2025-10-31','10:45:00',0,117,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 23:34:58','riya','2025-10-31 20:08:33',0),(6266,2526,0,0,2018,'2025-10-31','10:45:00',0,117,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 23:34:58','riya','2025-10-31 20:08:33',0),(6267,2526,0,0,2018,'2025-10-31','10:45:00',0,117,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-30 23:34:58','riya','2025-10-31 20:08:33',0),(6268,2526,0,0,2019,'2025-10-31','00:00:00',1597,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2169,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:08:33','reception','2025-10-31 11:08:52',0),(6269,2526,0,0,2020,'2025-10-31','00:00:00',1598,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2170,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 11:10:38','janvi','2025-10-31 11:11:01',0),(6270,2526,0,0,1994,'2025-10-31','11:13:43',1578,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2171,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:13:43','reception','2025-10-31 11:13:43',0),(6271,2526,0,0,1994,'2025-10-31','11:13:43',1578,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2171,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:13:43','reception','2025-10-31 11:13:43',0),(6272,2526,0,0,1994,'2025-10-31','11:13:43',1578,0,'NEU1','NEU10019','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2171,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:13:43','reception','2025-10-31 11:13:43',0),(6273,2526,0,0,1994,'2025-10-31','11:13:43',1578,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',2171,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:13:43','reception','2025-10-31 11:13:43',0),(6274,2526,0,0,2021,'2025-10-31','00:00:00',1599,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2173,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:19:24','reception','2025-10-31 11:19:45',0),(6275,2526,0,0,2022,'2025-10-31','00:00:00',1600,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2174,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 11:20:23','drashti','2025-10-31 11:21:09',0),(6276,2526,0,0,2023,'2025-10-31','00:00:00',988,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2175,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 11:22:04','janvi','2025-10-31 11:23:09',0),(6277,2526,0,0,2024,'2025-10-31','00:00:00',1601,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2176,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:22:12','reception','2025-10-31 11:23:17',0),(6278,2526,0,0,2026,'2025-10-31','00:00:00',1602,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2178,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 11:26:15','janvi','2025-10-31 11:27:02',0),(6279,2526,0,0,2027,'2025-10-31','07:00:00',0,118,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 11:30:00','vishal','2025-10-31 17:58:53',0),(6280,2526,0,0,2027,'2025-10-31','07:00:00',0,118,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 11:30:00','vishal','2025-10-31 17:58:53',0),(6281,2526,0,0,2027,'2025-10-31','07:00:00',0,118,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 00:00:00','vishal','2025-10-31 17:58:53',0),(6282,2526,0,0,2027,'2025-10-31','07:00:00',0,118,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 00:00:00','vishal','2025-10-31 17:58:53',0),(6283,2526,0,0,2027,'2025-10-31','07:00:00',0,118,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 00:00:00','vishal','2025-10-31 17:58:53',0),(6284,2526,0,0,2027,'2025-10-31','07:00:00',0,118,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 00:00:00','vishal','2025-10-31 17:58:53',0),(6285,2526,0,0,2027,'2025-10-31','07:00:00',0,118,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 00:00:00','vishal','2025-10-31 17:58:53',0),(6286,2526,0,0,2028,'2025-10-31','00:00:00',1603,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2179,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 11:32:18','janvi','2025-10-31 11:33:10',0),(6287,2526,0,0,2025,'2025-10-31','11:33:15',1236,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2180,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 11:33:15','drashti','2025-10-31 11:33:15',0),(6288,2526,0,0,2029,'2025-10-31','00:00:00',1604,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2182,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 11:37:02','drashti','2025-10-31 11:38:12',0),(6289,2526,0,0,1996,'2025-10-31','11:37:45',1579,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2181,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:37:45','reception','2025-10-31 11:37:45',0),(6290,2526,0,0,1996,'2025-10-31','11:37:45',1579,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2181,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:37:45','reception','2025-10-31 11:37:45',0),(6291,2526,0,0,1996,'2025-10-31','11:37:45',1579,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2181,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:37:45','reception','2025-10-31 11:37:45',0),(6292,2526,0,0,2030,'2025-10-31','00:00:00',1605,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2185,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 11:38:20','janvi','2025-10-31 11:41:55',0),(6293,2526,0,0,2031,'2025-10-31','00:00:00',1606,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2183,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 11:39:48','drashti','2025-10-31 11:40:17',0),(6294,2526,0,0,2032,'2025-10-31','00:00:00',1607,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2184,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:40:11','reception','2025-10-31 11:41:08',0),(6295,2526,0,0,2033,'2025-10-31','00:00:00',1608,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2186,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 11:40:13','janvi','2025-10-31 11:42:00',0),(6296,2526,0,0,1989,'2025-10-31','11:42:26',1573,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2187,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 11:42:26','drashti','2025-10-31 11:42:26',0),(6297,2526,0,0,1989,'2025-10-31','11:42:26',1573,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',2187,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 11:42:26','drashti','2025-10-31 11:42:26',0),(6298,2526,0,0,2034,'2025-10-31','00:00:00',1609,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2188,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:45:08','reception','2025-10-31 11:45:44',0),(6299,2526,0,0,2035,'2025-10-31','00:00:00',1610,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2189,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:46:45','reception','2025-10-31 11:47:30',0),(6300,2526,0,0,2036,'2025-10-31','00:00:00',1611,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2190,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 11:50:57','drashti','2025-10-31 11:51:50',0),(6301,2526,0,0,2037,'2025-10-31','00:00:00',1612,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2194,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:54:05','reception','2025-10-31 12:00:02',0),(6302,2526,0,0,2038,'2025-10-31','00:00:00',63,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2191,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 11:55:58','drashti','2025-10-31 11:56:39',0),(6303,2526,0,0,2038,'2025-10-31','11:56:39',63,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',2191,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 11:56:39','drashti','2025-10-31 11:56:39',0),(6304,2526,0,0,2016,'2025-10-31','11:56:43',1595,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2192,1,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:56:43','reception','2025-10-31 11:56:43',0),(6305,2526,0,0,2016,'2025-10-31','11:56:43',1595,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2192,2,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:56:43','reception','2025-10-31 11:56:43',0),(6306,2526,0,0,2016,'2025-10-31','11:56:43',1595,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2192,3,471,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:56:43','reception','2025-10-31 11:56:43',0),(6307,2526,0,0,2039,'2025-10-31','00:00:00',1613,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2193,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 11:58:57','reception','2025-10-31 11:59:28',0),(6308,2526,0,0,2040,'2025-10-31','00:00:00',1614,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2195,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-31 12:01:53','manshi','2025-10-31 12:14:46',0),(6309,2526,0,0,2041,'2025-10-31','00:00:00',1615,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2196,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 12:05:07','drashti','2025-10-31 12:05:41',0),(6310,2526,0,0,2042,'2025-10-31','00:00:00',1616,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2197,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 12:05:55','janvi','2025-10-31 12:06:33',0),(6311,2526,0,0,2019,'2025-10-31','12:07:40',1597,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2198,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 12:07:40','reception','2025-10-31 12:07:40',0),(6312,2526,0,0,2019,'2025-10-31','12:07:40',1597,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2198,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 12:07:40','reception','2025-10-31 12:07:40',0),(6313,2526,0,0,1660,'2025-10-31','12:09:00',0,102,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 12:10:23','','0000-00-00 00:00:00',0),(6314,2526,0,0,1660,'2025-10-31','12:09:00',0,102,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 12:10:23','vishal','2025-10-31 12:25:41',0),(6315,2526,0,0,1660,'2025-10-31','12:10:00',0,102,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 12:12:38','','0000-00-00 00:00:00',0),(6316,2526,0,0,1660,'2025-10-31','12:10:00',0,102,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 12:12:38','','0000-00-00 00:00:00',0),(6317,2526,0,0,1660,'2025-10-31','12:11:00',0,102,'OTCG','OTCG0003','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,6,0,0,'',0,0,'','','','','',2526,'H','I',93,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 12:12:38','','0000-00-00 00:00:00',0),(6318,2526,0,0,2040,'2025-10-31','12:13:43',1614,0,'XRY','XRY0189','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',2199,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-31 12:13:43','manshi','2025-10-31 12:13:43',0),(6319,2526,0,0,2020,'2025-10-31','12:15:19',1598,0,'XRY','XRY0062','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2201,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 12:15:19','drashti','2025-10-31 12:15:19',0),(6320,2526,0,0,2043,'2025-10-31','00:00:00',1617,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2204,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 12:15:46','reception','2025-10-31 12:17:05',0),(6321,2526,0,0,2044,'2025-10-31','00:00:00',1618,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2203,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 12:15:49','janvi','2025-10-31 12:16:35',0),(6322,2526,0,0,1942,'2025-10-30','12:15:00',0,114,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',94,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 12:16:01','','0000-00-00 00:00:00',0),(6323,2526,0,0,1942,'2025-10-31','12:15:00',0,114,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',94,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 12:16:01','','0000-00-00 00:00:00',0),(6324,2526,0,0,2045,'2025-10-31','00:00:00',1619,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2202,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 12:16:15','drashti','2025-10-31 12:16:34',0),(6325,2526,0,0,2040,'2025-10-31','12:17:12',1614,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2205,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-31 12:17:12','manshi','2025-10-31 12:17:12',0),(6326,2526,0,0,2046,'2025-10-31','00:00:00',1620,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2218,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 12:18:59','drashti','2025-10-31 14:46:46',0),(6327,2526,0,0,2047,'2025-10-31','00:00:00',1621,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2206,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 12:19:02','janvi','2025-10-31 12:19:43',0),(6328,2526,0,0,2048,'2025-10-31','00:00:00',1028,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2207,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 12:19:42','reception','2025-10-31 12:19:53',0),(6329,2526,0,0,2049,'2025-10-31','00:00:00',1622,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2208,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 12:20:28','reception','2025-10-31 12:20:45',0),(6330,2526,0,0,1998,'2025-10-31','12:27:58',1580,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2209,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 12:27:58','reception','2025-10-31 12:27:58',0),(6331,2526,0,0,1998,'2025-10-31','12:27:58',1580,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2209,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 12:27:58','reception','2025-10-31 12:27:58',0),(6332,2526,0,0,1999,'2025-10-31','12:29:16',1581,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2210,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 12:29:16','reception','2025-10-31 12:29:16',0),(6333,2526,0,0,1999,'2025-10-31','12:29:16',1581,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2210,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 12:29:16','reception','2025-10-31 12:29:16',0),(6334,2526,0,0,1999,'2025-10-31','12:29:16',1581,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2210,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 12:29:16','reception','2025-10-31 12:29:16',0),(6335,2526,0,0,2050,'2025-10-31','00:00:00',1623,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2211,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 12:30:51','janvi','2025-10-31 12:31:43',0),(6336,2526,0,0,2051,'2025-10-31','00:00:00',1624,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2212,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 12:31:56','reception','2025-10-31 12:32:12',0),(6337,2526,0,0,2034,'2025-10-31','12:35:30',1609,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2213,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 12:35:30','reception','2025-10-31 12:35:30',0),(6338,2526,0,0,2034,'2025-10-31','12:35:30',1609,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2213,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 12:35:30','reception','2025-10-31 12:35:30',0),(6339,2526,0,0,2034,'2025-10-31','12:35:30',1609,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2213,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 12:35:30','reception','2025-10-31 12:35:30',0),(6340,2526,0,0,2052,'2025-10-31','00:00:00',1625,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2214,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-31 12:36:19','manshi','2025-10-31 12:36:47',0),(6341,2526,0,0,2053,'2025-10-31','00:00:00',1626,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2215,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 12:46:17','reception','2025-10-31 12:46:36',0),(6342,2526,0,0,2054,'2025-10-31','00:00:00',1627,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-31 12:46:53','manshi','2025-10-31 01:16:53',0),(6343,2526,0,0,2055,'2025-10-31','00:00:00',1628,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2216,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 12:48:31','reception','2025-10-31 12:49:14',0),(6344,2526,0,0,2056,'2025-10-31','00:00:00',331,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2217,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 12:50:18','reception','2025-10-31 12:50:32',0),(6345,2526,0,0,2013,'2025-10-31','13:01:22',1592,0,'WPRC','WPRC0046','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2219,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 13:01:22','janvi','2025-10-31 13:01:22',0),(6346,2526,0,0,2057,'2025-10-31','00:00:00',1629,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2220,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 13:03:10','drashti','2025-10-31 13:04:40',0),(6347,2526,0,0,2058,'2025-10-31','00:00:00',1630,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2221,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 13:08:36','drashti','2025-10-31 13:09:52',0),(6348,2526,0,0,2059,'2025-10-31','00:00:00',1631,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2222,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 13:12:05','reception','2025-10-31 13:12:15',0),(6349,2526,0,0,2060,'2025-10-31','00:00:00',1632,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 13:13:47','drashti','2025-10-31 01:43:47',0),(6350,2526,0,0,2060,'2025-10-31','13:14:35',1632,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',2223,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 13:14:35','drashti','2025-10-31 13:14:35',0),(6351,2526,0,0,2061,'2025-10-31','00:00:00',1633,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2224,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 13:15:33','drashti','2025-10-31 13:16:12',0),(6352,2526,0,0,2052,'2025-10-31','13:26:20',1625,0,'WPRC','WPRC0046','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,6,0,0,'',0,0,'','','','','',2526,'H','O',2225,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-31 13:26:20','manshi','2025-10-31 13:26:20',0),(6353,2526,0,0,2058,'2025-10-31','13:28:17',1630,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,55,'',0,0,'','','','','',2526,'H','O',2226,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-10-31 13:28:17','janvi','2025-10-31 13:28:17',0),(6354,2526,0,0,2043,'2025-10-31','13:28:18',1617,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2227,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 13:28:18','reception','2025-10-31 13:28:18',0),(6355,2526,0,0,2043,'2025-10-31','13:28:18',1617,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2227,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 13:28:18','reception','2025-10-31 13:28:18',0),(6356,2526,0,0,1727,'2025-10-31','13:38:00',1363,107,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',100,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 13:39:27','vishal','2025-11-01 12:57:28',0),(6357,2526,0,0,1727,'2025-10-31','13:39:00',1363,107,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',100,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 13:39:57','vishal','2025-11-01 12:57:28',0),(6358,2526,0,0,2062,'2025-10-31','00:00:00',1634,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2228,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 13:50:18','drashti','2025-10-31 13:51:33',0),(6359,2526,0,0,2063,'2025-10-31','00:00:00',1635,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2229,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 14:10:30','drashti','2025-10-31 14:11:18',0),(6360,2526,0,0,2064,'2025-10-31','00:00:00',1636,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2230,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 14:24:15','reception','2025-10-31 14:25:16',0),(6361,2526,0,0,2065,'2025-10-31','14:34:00',1635,119,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',103,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 14:38:07','riya','2025-11-02 09:44:42',0),(6362,2526,0,0,2065,'2025-10-31','14:34:00',1635,119,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',103,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 14:38:07','riya','2025-11-02 09:44:42',0),(6363,2526,0,0,2065,'2025-10-31','14:34:00',1635,119,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',103,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 03:08:07','riya','2025-11-02 09:44:42',0),(6364,2526,0,0,2065,'2025-10-31','14:34:00',1635,119,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',103,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 03:08:07','riya','2025-11-02 09:44:42',0),(6365,2526,0,0,2065,'2025-10-31','14:34:00',1635,119,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',103,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 03:08:07','riya','2025-11-02 09:44:42',0),(6366,2526,0,0,2065,'2025-10-31','14:34:00',1635,119,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',103,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 03:08:07','riya','2025-11-02 09:44:42',0),(6367,2526,0,0,2065,'2025-10-31','14:34:00',1635,119,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 03:08:07','riya','2025-11-02 09:44:42',0),(6368,2526,0,0,2046,'2025-10-31','14:47:48',1620,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2232,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 14:47:48','drashti','2025-10-31 14:47:48',0),(6369,2526,0,0,1723,'2025-10-30','13:50:00',1368,105,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 03:28:48','vishal','2025-10-31 18:02:17',0),(6370,2526,0,0,1723,'2025-10-31','13:50:00',1368,105,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 03:28:48','vishal','2025-10-31 18:02:17',0),(6371,2526,0,0,1723,'2025-10-30','13:50:00',1368,105,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','411','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 03:28:48','vishal','2025-10-31 18:02:17',0),(6372,2526,0,0,1723,'2025-10-31','13:50:00',1368,105,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','411','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 03:28:48','vishal','2025-10-31 19:19:57',0),(6373,2526,0,0,1723,'2025-10-30','13:50:00',1368,105,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 03:28:48','vishal','2025-10-31 18:02:17',0),(6374,2526,0,0,1723,'2025-10-31','13:50:00',1368,105,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 03:28:48','vishal','2025-10-31 19:19:57',0),(6375,2526,0,0,1723,'2025-10-29','13:50:00',1368,105,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','411','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 03:28:48','vishal','2025-11-03 12:44:13',0),(6376,2526,0,0,1723,'2025-10-31','13:50:00',1368,105,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','411','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 03:28:48','vishal','2025-10-31 19:19:57',0),(6377,2526,0,0,1723,'2025-10-30','13:50:00',1368,105,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','411','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 03:28:48','vishal','2025-10-31 18:02:17',0),(6378,2526,0,0,1723,'2025-10-31','13:50:00',1368,105,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','411','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 03:28:48','vishal','2025-10-31 19:19:57',0),(6379,2526,0,0,2004,'2025-10-31','15:23:09',1584,0,'WPRC','WPRC0046','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,0.00,4000,3,0,0,'',0,0,'','','','','',2526,'H','O',2233,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 15:23:09','drashti','2025-10-31 15:23:09',0),(6380,2526,0,0,2066,'2025-10-31','00:00:00',585,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2234,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 16:11:45','reception','2025-10-31 16:12:09',0),(6381,2526,0,0,2067,'2025-10-31','00:00:00',1637,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 16:11:57','drashti','2025-10-31 04:41:57',0),(6382,2526,0,0,2067,'2025-10-31','16:12:57',1637,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',2235,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 16:12:57','drashti','2025-10-31 16:12:57',0),(6383,2526,0,0,2067,'2025-10-31','16:12:57',1637,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',2235,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 16:12:57','drashti','2025-10-31 16:12:57',0),(6384,2526,0,0,2068,'2025-10-31','00:00:00',1638,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2236,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 16:24:06','reception','2025-10-31 16:24:28',0),(6385,2526,0,0,2069,'2025-10-31','00:00:00',1639,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 16:26:50','reception','2025-10-31 04:56:50',0),(6386,2526,0,0,2070,'2025-10-31','00:00:00',1640,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 16:34:22','reception','2025-10-31 05:04:22',0),(6387,2526,0,0,2071,'2025-10-31','00:00:00',1641,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2237,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 16:42:59','reception','2025-10-31 16:43:51',0),(6388,2526,0,0,2072,'2025-10-31','00:00:00',1642,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 16:46:12','reception','2025-10-31 05:16:12',0),(6389,2526,0,0,2073,'2025-10-31','00:00:00',1643,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 16:47:26','reception','2025-10-31 05:17:26',0),(6390,2526,0,0,2074,'2025-10-31','17:00:57',1612,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2238,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:00:57','reception','2025-10-31 17:00:57',0),(6391,2526,0,0,2074,'2025-10-31','17:00:57',1612,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2238,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:00:57','reception','2025-10-31 17:00:57',0),(6392,2526,0,0,2075,'2025-10-31','00:00:00',1644,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2239,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:02:44','reception','2025-10-31 17:03:15',0),(6393,2526,0,0,2076,'2025-10-31','17:04:55',1569,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2240,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:04:55','reception','2025-10-31 17:04:55',0),(6394,2526,0,0,2076,'2025-10-31','17:04:55',1569,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2240,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:04:55','reception','2025-10-31 17:04:55',0),(6395,2526,0,0,2076,'2025-10-31','17:04:55',1569,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2240,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:04:55','reception','2025-10-31 17:04:55',0),(6396,2526,0,0,2077,'2025-10-31','00:00:00',1645,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2241,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:07:46','reception','2025-10-31 17:08:18',0),(6397,2526,0,0,2079,'2025-10-31','00:00:00',1646,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2248,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-31 17:10:48','manshi','2025-10-31 18:19:09',0),(6398,2526,0,0,2078,'2025-10-31','17:10:51',1589,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2242,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:10:51','reception','2025-10-31 17:10:51',0),(6399,2526,0,0,2078,'2025-10-31','17:10:51',1589,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2242,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:10:51','reception','2025-10-31 17:10:51',0),(6400,2526,0,0,2078,'2025-10-31','17:10:51',1589,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2242,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:10:51','reception','2025-10-31 17:10:51',0),(6401,2526,0,0,2081,'2025-10-31','00:00:00',1647,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2252,1,200,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 17:12:30','reception','2025-10-31 17:43:28',0),(6402,2526,0,0,2082,'2025-10-31','00:00:00',1648,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2243,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:12:52','reception','2025-10-31 17:15:13',0),(6403,2526,0,0,2083,'2025-10-31','00:00:00',1649,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2244,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:15:19','reception','2025-10-31 17:15:29',0),(6404,2526,0,0,2084,'2025-10-31','00:00:00',1650,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2245,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:16:21','reception','2025-10-31 17:57:57',0),(6405,2526,0,0,2085,'2025-10-31','00:00:00',1651,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2246,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:20:25','reception','2025-10-31 17:20:59',0),(6406,2526,0,0,2086,'2025-10-31','00:00:00',1652,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2247,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:23:59','reception','2025-10-31 17:24:17',0),(6407,2526,0,0,2087,'2025-10-31','00:00:00',416,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2249,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:27:33','reception','2025-10-31 17:28:03',0),(6408,2526,0,0,2088,'2025-10-31','00:00:00',1653,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2250,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 17:37:17','drashti','2025-10-31 17:38:45',0),(6409,2526,0,0,2089,'2025-10-31','17:40:56',1596,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2251,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:40:56','reception','2025-10-31 17:40:56',0),(6410,2526,0,0,2089,'2025-10-31','17:40:56',1596,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2251,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:40:56','reception','2025-10-31 17:40:56',0),(6411,2526,0,0,2089,'2025-10-31','17:40:56',1596,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2251,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:40:56','reception','2025-10-31 17:40:56',0),(6412,2526,0,0,2090,'2025-10-31','00:00:00',1654,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2253,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 17:43:43','drashti','2025-10-31 17:45:15',0),(6413,2526,0,0,2091,'2025-10-31','00:00:00',1655,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2254,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:46:34','reception','2025-10-31 17:47:10',0),(6414,2526,0,0,2092,'2025-10-31','00:00:00',1656,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2259,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 17:47:45','drashti','2025-10-31 18:26:45',0),(6415,2526,0,0,2093,'2025-10-31','00:00:00',885,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2256,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 17:47:56','drashti','2025-10-31 17:49:05',0),(6416,2526,0,0,2094,'2025-10-31','00:00:00',975,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2255,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:48:31','reception','2025-10-31 17:48:47',0),(6417,2526,0,0,2095,'2025-10-31','00:00:00',1657,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2257,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 17:49:18','janvi','2025-10-31 17:50:04',0),(6418,2526,0,0,2096,'2025-10-31','00:00:00',1658,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2258,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 17:51:10','drashti','2025-10-31 17:51:52',0),(6419,2526,0,0,2097,'2025-10-31','00:00:00',651,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2260,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 17:52:55','janvi','2025-10-31 17:53:26',0),(6420,2526,0,0,2098,'2025-10-31','00:00:00',1659,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2262,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:54:46','reception','2025-10-31 17:56:17',0),(6421,2526,0,0,2080,'2025-10-31','17:54:48',1203,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2261,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 17:54:48','janvi','2025-10-31 17:54:48',0),(6422,2526,0,0,414,'2025-10-31','03:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:44','vishal','2025-11-01 14:43:03',0),(6423,2526,0,0,414,'2025-10-31','03:45:00',0,25,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:44','vishal','2025-11-01 14:43:03',0),(6424,2526,0,0,414,'2025-10-31','03:45:00',0,25,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:44','vishal','2025-11-01 14:43:03',0),(6425,2526,0,0,414,'2025-10-31','03:45:00',0,25,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:44','vishal','2025-11-01 14:43:03',0),(6426,2526,0,0,414,'2025-10-31','03:45:00',0,25,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',101,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:44','vishal','2025-11-01 14:34:19',0),(6427,2526,0,0,1711,'2025-10-31','12:30:00',1343,104,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-04 17:12:38',0),(6428,2526,0,0,1711,'2025-10-30','12:30:00',1343,104,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-04 17:12:38',0),(6429,2526,0,0,1711,'2025-10-31','12:30:00',1343,104,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-04 17:12:38',0),(6430,2526,0,0,1711,'2025-10-30','12:30:00',1343,104,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-04 17:12:38',0),(6431,2526,0,0,1711,'2025-10-31','12:30:00',1343,104,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-04 17:12:38',0),(6432,2526,0,0,1711,'2025-10-30','12:30:00',1343,104,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-04 17:12:38',0),(6433,2526,0,0,1711,'2025-10-31','12:30:00',1343,104,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-04 17:12:38',0),(6434,2526,0,0,1711,'2025-10-30','12:30:00',1343,104,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-04 17:12:38',0),(6435,2526,0,0,1711,'2025-10-31','12:30:00',1343,104,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-04 17:12:38',0),(6436,2526,0,0,1711,'2025-10-30','12:30:00',1343,104,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-04 17:12:38',0),(6437,2526,0,0,1727,'2025-10-31','15:26:00',1363,107,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',100,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-01 12:57:28',0),(6438,2526,0,0,1727,'2025-10-31','15:26:00',1363,107,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',100,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-01 12:57:28',0),(6439,2526,0,0,1727,'2025-10-31','15:26:00',1363,107,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',100,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-01 12:57:28',0),(6440,2526,0,0,1727,'2025-10-31','15:26:00',1363,107,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',100,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-01 12:57:28',0),(6441,2526,0,0,1782,'2025-10-31','06:30:00',0,108,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',97,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-01 12:01:26',0),(6442,2526,0,0,1782,'2025-10-31','06:30:00',0,108,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',97,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-01 12:01:26',0),(6443,2526,0,0,1782,'2025-10-31','06:30:00',0,108,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',97,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-01 12:01:26',0),(6444,2526,0,0,1782,'2025-10-31','06:30:00',0,108,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',97,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-01 12:01:26',0),(6445,2526,0,0,1782,'2025-10-31','06:30:00',0,108,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',97,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-01 12:01:26',0),(6446,2526,0,0,1888,'2025-10-31','09:40:00',1454,109,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',96,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','riya','2025-10-31 21:14:57',0),(6447,2526,0,0,1888,'2025-10-31','09:40:00',1454,109,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',96,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','riya','2025-10-31 21:14:57',0),(6448,2526,0,0,1888,'2025-10-31','09:40:00',1454,109,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',96,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','riya','2025-10-31 21:14:57',0),(6449,2526,0,0,1888,'2025-10-31','09:40:00',1454,109,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',2526,'H','I',96,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','riya','2025-10-31 21:14:57',0),(6450,2526,0,0,1888,'2025-10-31','09:40:00',1454,109,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',2526,'H','I',96,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','riya','2025-10-31 21:14:57',0),(6451,2526,0,0,1936,'2025-10-31','12:50:00',1514,111,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',102,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-10-31 18:31:56',0),(6452,2526,0,0,1936,'2025-10-31','12:50:00',1514,111,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',102,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-10-31 18:31:56',0),(6453,2526,0,0,1936,'2025-10-31','12:50:00',1514,111,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',102,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-10-31 18:31:56',0),(6454,2526,0,0,1936,'2025-10-31','12:50:00',1514,111,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',102,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-10-31 18:31:56',0),(6455,2526,0,0,1936,'2025-10-31','12:50:00',1514,111,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',102,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-10-31 18:31:56',0),(6456,2526,0,0,1940,'2025-10-31','13:52:00',1532,112,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-03 12:25:40',0),(6457,2526,0,0,1940,'2025-10-31','13:52:00',1532,112,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-03 12:25:40',0),(6458,2526,0,0,1940,'2025-10-31','13:52:00',1532,112,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-03 12:25:40',0),(6459,2526,0,0,1940,'2025-10-31','13:52:00',1532,112,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-03 12:25:40',0),(6460,2526,0,0,1940,'2025-10-31','13:52:00',1532,112,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-03 12:25:40',0),(6461,2526,0,0,1941,'2025-10-31','13:56:00',0,113,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',108,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-03 12:23:11',0),(6462,2526,0,0,1941,'2025-10-31','13:56:00',0,113,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',108,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-03 12:23:11',0),(6463,2526,0,0,1941,'2025-10-31','13:56:00',0,113,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',108,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-03 12:23:11',0),(6464,2526,0,0,1941,'2025-10-31','13:56:00',0,113,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',108,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-03 12:23:11',0),(6465,2526,0,0,1941,'2025-10-31','13:56:00',0,113,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',108,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 06:25:45','vishal','2025-11-03 12:23:11',0),(6466,2526,0,0,2027,'2025-10-31','17:57:00',0,118,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,19,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 17:58:53','riya','2025-11-02 11:20:49',0),(6467,2526,0,0,2027,'2025-10-31','17:57:00',0,118,'CARE','CARE0004','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 17:58:53','riya','2025-11-02 11:20:49',0),(6468,2526,0,0,2027,'2025-10-31','17:57:00',0,118,'CARE','CARE0003','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 17:58:53','riya','2025-11-02 11:19:03',0),(6469,2526,0,0,2027,'2025-10-31','17:58:00',0,118,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 17:58:53','','0000-00-00 00:00:00',0),(6470,2526,0,0,2027,'2025-10-31','17:58:00',0,118,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 17:58:53','','0000-00-00 00:00:00',0),(6471,2526,0,0,2084,'2025-10-31','17:59:11',1650,0,'NEU1','NEU10015','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',2264,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 17:59:11','reception','2025-10-31 17:59:11',0),(6472,2526,0,0,2099,'2025-10-31','00:00:00',1660,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2265,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 18:01:59','reception','2025-10-31 20:28:36',0),(6473,2526,0,0,1723,'2025-10-30','18:00:00',1368,105,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:02:17','vishal','2025-11-03 12:48:06',0),(6474,2526,0,0,1723,'2025-10-31','18:00:00',1368,105,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:02:17','','0000-00-00 00:00:00',0),(6475,2526,0,0,2100,'2025-10-31','00:00:00',1661,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',2266,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-31 18:02:40','manshi','2025-10-31 18:28:25',0),(6476,2526,0,0,1723,'2025-10-29','18:03:00',1368,105,'SURG','SURG0014','H','N',1.00,30000,30000,'A',0,0,0.00,0.00,30000.00,30000,70,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:04:05','vishal','2025-11-03 12:48:06',0),(6477,2526,0,0,1723,'2025-10-29','18:03:00',1368,105,'SURG','SURG0015','H','N',1.00,15000,15000,'A',0,0,0.00,0.00,15000.00,15000,3,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:04:05','vishal','2025-11-03 12:46:19',0),(6478,2526,0,0,2102,'2025-10-31','00:00:00',627,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 18:05:10','drashti','2025-10-31 06:35:10',0),(6479,2526,0,0,2103,'2025-10-31','00:00:00',350,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2267,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 18:06:44','reception','2025-10-31 18:07:04',0),(6480,2526,0,0,2104,'2025-10-31','00:00:00',1662,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2268,1,50,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 18:07:27','janvi','2025-10-31 18:09:45',0),(6481,2526,0,0,2105,'2025-10-31','00:00:00',213,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2269,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 18:10:25','reception','2025-10-31 18:10:45',0),(6482,2526,0,0,2096,'2025-10-31','18:12:23',1658,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,56,'',0,0,'','','','','',2526,'H','O',2270,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-10-31 18:12:23','janvi','2025-10-31 18:12:23',0),(6483,2526,0,0,2108,'2025-10-31','00:00:00',1663,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2272,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 18:13:18','reception','2025-10-31 18:14:01',0),(6484,2526,0,0,2109,'2025-10-31','00:00:00',1664,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 18:13:20','drashti','2025-10-31 06:43:20',0),(6485,2526,0,0,2107,'2025-10-31','18:13:43',1307,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2271,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 18:13:43','janvi','2025-10-31 18:13:43',0),(6486,2526,0,0,2110,'2025-10-31','18:14:28',1293,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2273,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 18:14:28','janvi','2025-10-31 18:14:28',0),(6487,2526,0,0,2111,'2025-10-31','00:00:00',1665,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2274,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 18:15:23','reception','2025-10-31 18:15:59',0),(6488,2526,0,0,2079,'2025-10-31','18:17:35',1646,0,'XRY','XRY0189','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',2275,1,50,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-31 18:17:35','manshi','2025-10-31 18:17:35',0),(6489,2526,0,0,2112,'2025-10-31','00:00:00',1666,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2278,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 18:18:21','drashti','2025-10-31 18:19:25',0),(6490,2526,0,0,2113,'2025-10-31','00:00:00',1134,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2276,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 18:18:31','janvi','2025-10-31 18:19:01',0),(6491,2526,0,0,2088,'2025-10-31','18:19:45',1653,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2279,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 18:19:45','reception','2025-10-31 18:19:45',0),(6492,2526,0,0,2088,'2025-10-31','18:19:45',1653,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2279,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 18:19:45','reception','2025-10-31 18:19:45',0),(6493,2526,0,0,2088,'2025-10-31','18:19:45',1653,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2279,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 18:19:45','reception','2025-10-31 18:19:45',0),(6494,2526,0,0,2079,'2025-10-31','18:20:23',1646,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2280,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-31 18:20:23','manshi','2025-10-31 18:20:23',0),(6495,2526,0,0,2114,'2025-10-31','00:00:00',1667,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2281,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 18:20:46','drashti','2025-10-31 18:21:30',0),(6496,2526,0,0,2115,'2025-10-31','00:00:00',875,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2282,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 18:22:28','reception','2025-10-31 18:22:43',0),(6497,2526,0,0,2116,'2025-10-31','00:00:00',1668,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2283,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 18:23:31','drashti','2025-10-31 18:24:09',0),(6498,2526,0,0,2117,'2025-10-31','00:00:00',1669,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2290,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 18:24:10','drashti','2025-10-31 18:35:34',0),(6499,2526,0,0,2118,'2025-10-31','00:00:00',1670,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',2296,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-31 18:24:54','manshi','2025-10-31 18:43:08',0),(6500,2526,0,0,2119,'2025-10-31','00:00:00',1671,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 18:29:00','reception','2025-10-31 06:59:00',0),(6501,2526,0,0,2120,'2025-10-31','00:00:00',739,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-31 18:29:26','manshi','2025-10-31 06:59:26',0),(6502,2526,0,0,2121,'2025-10-31','00:00:00',1672,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2286,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 18:29:31','drashti','2025-10-31 18:30:18',0),(6503,2526,0,0,1936,'2025-10-30','18:23:00',1514,111,'DRC','DRC0020','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,52,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:31:15','vishal','2025-10-31 18:31:56',0),(6504,2526,0,0,1936,'2025-10-30','18:24:00',1514,111,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:31:15','vishal','2025-10-31 18:31:56',0),(6505,2526,0,0,1936,'2025-10-30','18:24:00',1514,111,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:31:15','vishal','2025-10-31 18:31:56',0),(6506,2526,0,0,1936,'2025-10-30','18:24:00',1514,111,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:31:15','vishal','2025-10-31 18:31:56',0),(6507,2526,0,0,1936,'2025-10-30','18:24:00',1514,111,'WPRC','WPRC0092','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,4,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:31:15','vishal','2025-10-31 18:31:56',0),(6508,2526,0,0,1936,'2025-10-30','18:25:00',1514,111,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,52,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:31:15','','0000-00-00 00:00:00',0),(6509,2526,0,0,1936,'2025-10-30','18:25:00',1514,111,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:31:15','','0000-00-00 00:00:00',0),(6510,2526,0,0,1936,'2025-10-31','18:28:00',1514,111,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:31:15','','0000-00-00 00:00:00',0),(6511,2526,0,0,1936,'2025-10-31','18:28:00',1514,111,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:31:15','','0000-00-00 00:00:00',0),(6512,2526,0,0,1936,'2025-10-30','18:29:00',1514,111,'WPRC','WPRC0101','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:31:15','','0000-00-00 00:00:00',0),(6513,2526,0,0,1936,'2025-10-30','18:29:00',1514,111,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:31:15','','0000-00-00 00:00:00',0),(6514,2526,0,0,1936,'2025-10-30','18:30:00',1514,111,'WPRC','WPRC0087','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:31:15','','0000-00-00 00:00:00',0),(6515,2526,0,0,1936,'2025-10-31','18:30:00',1514,111,'WPRC','WPRC0087','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:31:15','','0000-00-00 00:00:00',0),(6516,2526,0,0,1936,'2025-10-30','18:30:00',1514,111,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:31:15','','0000-00-00 00:00:00',0),(6517,2526,0,0,1936,'2025-10-31','18:30:00',1514,111,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:31:15','','0000-00-00 00:00:00',0),(6518,2526,0,0,1936,'2025-10-30','18:30:00',1514,111,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:31:15','','0000-00-00 00:00:00',0),(6519,2526,0,0,1936,'2025-10-31','18:30:00',1514,111,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:31:15','','0000-00-00 00:00:00',0),(6520,2526,0,0,2122,'2025-10-31','00:00:00',1673,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2287,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 18:31:29','janvi','2025-10-31 18:32:07',0),(6521,2526,0,0,2123,'2025-10-31','00:00:00',1674,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2288,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 18:31:54','drashti','2025-10-31 18:33:04',0),(6522,2526,0,0,1936,'2025-10-31','18:31:00',1514,111,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:31:56','','0000-00-00 00:00:00',0),(6523,2526,0,0,2124,'2025-10-31','00:00:00',1675,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2289,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 18:33:22','reception','2025-10-31 18:33:39',0),(6524,2526,0,0,2114,'2025-10-31','18:37:54',1667,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,57,'',0,0,'','','','','',2526,'H','O',2291,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'janvi','2025-10-31 18:37:54','janvi','2025-10-31 18:37:54',0),(6525,2526,0,0,2125,'2025-10-31','00:00:00',1676,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2292,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 18:37:59','reception','2025-10-31 18:38:16',0),(6526,2526,0,0,2126,'2025-10-31','00:00:00',1677,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2293,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 18:38:54','drashti','2025-10-31 18:40:21',0),(6527,2526,0,0,2127,'2025-10-31','00:00:00',1678,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2294,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 18:40:06','reception','2025-10-31 18:41:20',0),(6528,2526,0,0,2128,'2025-10-31','00:00:00',1679,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2295,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 18:42:29','reception','2025-10-31 18:42:53',0),(6529,2526,0,0,1988,'2025-10-30','18:40:00',0,115,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',95,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:43:17','vishal','2025-10-31 18:43:45',0),(6530,2526,0,0,1988,'2025-10-31','18:40:00',0,115,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,6,0,0,'',0,0,'','','','','',2526,'H','I',95,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:43:17','','0000-00-00 00:00:00',0),(6531,2526,0,0,1988,'2025-10-30','18:44:00',0,115,'SURG','SURG0014','H','N',1.00,21700,21700,'P',0,0,0.00,0.00,21700.00,21700,6,0,0,'',0,0,'','','','','',2526,'H','I',95,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:45:18','','0000-00-00 00:00:00',0),(6532,2526,0,0,1988,'2025-10-30','18:44:00',0,115,'SURG','SURG0015','H','N',1.00,7300,7300,'P',0,0,0.00,0.00,7300.00,7300,6,0,0,'',0,0,'','','','','',2526,'H','I',95,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 18:45:18','','0000-00-00 00:00:00',0),(6533,2526,0,0,2121,'2025-10-31','18:49:59',1672,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2297,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 18:49:59','drashti','2025-10-31 18:49:59',0),(6534,2526,0,0,2121,'2025-10-31','18:49:59',1672,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',2297,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 18:49:59','drashti','2025-10-31 18:49:59',0),(6535,2526,0,0,2129,'2025-10-31','00:00:00',1680,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2298,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 18:51:46','reception','2025-10-31 18:52:11',0),(6536,2526,0,0,2116,'2025-10-31','18:56:45',1668,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,58,'',0,0,'','','','','',2526,'H','O',2299,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'janvi','2025-10-31 18:56:45','janvi','2025-10-31 18:56:45',0),(6537,2526,0,0,2083,'2025-10-31','18:57:26',1649,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2300,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 18:57:26','reception','2025-10-31 18:57:26',0),(6538,2526,0,0,2083,'2025-10-31','18:57:26',1649,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2300,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 18:57:26','reception','2025-10-31 18:57:26',0),(6539,2526,0,0,2126,'2025-10-31','19:03:50',1677,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2301,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 19:03:50','drashti','2025-10-31 19:03:50',0),(6540,2526,0,0,2131,'2025-10-31','00:00:00',567,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2302,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-31 19:14:44','manshi','2025-10-31 19:15:05',0),(6541,2526,0,0,1723,'2025-10-30','19:14:00',1368,105,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 19:16:14','riya','2025-11-02 13:15:39',0),(6542,2526,0,0,1723,'2025-10-31','19:14:00',1368,105,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 19:16:14','vishal','2025-11-03 12:48:06',0),(6543,2526,0,0,1723,'2025-10-29','19:14:00',1368,105,'WPRC','WPRC0092','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,39,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 19:16:14','vishal','2025-10-31 19:19:57',0),(6544,2526,0,0,1723,'2025-10-29','19:15:00',1368,105,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,3,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 19:16:14','vishal','2025-11-03 12:46:19',0),(6545,2526,0,0,1723,'2025-10-29','19:15:00',1368,105,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 19:16:14','vishal','2025-11-03 12:46:19',0),(6546,2526,0,0,1723,'2025-10-30','19:17:00',1368,105,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,70,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 19:19:57','','0000-00-00 00:00:00',0),(6547,2526,0,0,1723,'2025-10-31','19:17:00',1368,105,'DRC','DRC0020','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,70,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 19:19:57','riya','2025-11-02 13:15:39',0),(6548,2526,0,0,2124,'2025-10-31','19:23:28',1675,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2303,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 19:23:28','reception','2025-10-31 19:23:28',0),(6549,2526,0,0,2124,'2025-10-31','19:23:28',1675,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2303,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 19:23:28','reception','2025-10-31 19:23:28',0),(6550,2526,0,0,2132,'2025-10-31','00:00:00',1681,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 19:29:24','drashti','2025-10-31 07:59:24',0),(6551,2526,0,0,2132,'2025-10-31','19:30:22',1681,0,'OPWD','OPWD0012','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',2304,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 19:30:22','drashti','2025-10-31 19:30:22',0),(6552,2526,0,0,2133,'2025-10-31','00:00:00',1682,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2305,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-31 19:38:59','manshi','2025-10-31 19:40:47',0),(6553,2526,0,0,2131,'2025-10-31','20:06:05',567,0,'OPWD','OPWD0013','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2306,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-10-31 20:06:05','manshi','2025-10-31 20:06:05',0),(6554,2526,0,0,2117,'2025-10-31','20:07:25',1669,0,'MOPR','MOPR0006','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2307,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-10-31 20:07:25','janvi','2025-10-31 20:07:25',0),(6555,2526,0,0,2018,'2025-10-31','20:06:00',0,117,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-31 20:08:33','','0000-00-00 00:00:00',0),(6556,2526,0,0,2018,'2025-10-31','20:06:00',0,117,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-31 20:08:33','','0000-00-00 00:00:00',0),(6557,2526,0,0,2018,'2025-10-31','20:06:00',0,117,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-31 20:08:33','','0000-00-00 00:00:00',0),(6558,2526,0,0,2018,'2025-10-31','20:07:00',0,117,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,115,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-31 20:08:33','','0000-00-00 00:00:00',0),(6559,2526,0,0,2130,'2025-10-31','20:19:17',240,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',2308,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-10-31 20:19:17','drashti','2025-10-31 20:19:17',0),(6560,2526,0,0,2099,'2025-10-31','20:31:27',1660,0,'PKG','CASE','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2310,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 20:31:27','reception','2025-10-31 20:31:27',0),(6561,2526,0,0,2134,'2025-10-31','00:00:00',1683,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2311,1,68,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 20:56:06','reception','2025-10-31 21:21:08',0),(6562,2526,0,0,2135,'2025-10-31','20:45:00',0,120,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-31 21:08:03','vishal','2025-11-01 15:41:08',0),(6563,2526,0,0,2135,'2025-10-31','20:45:00',0,120,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-31 21:08:03','vishal','2025-11-01 15:41:08',0),(6564,2526,0,0,2135,'2025-10-31','20:45:00',0,120,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-31 09:38:03','vishal','2025-11-01 15:41:08',0),(6565,2526,0,0,2135,'2025-10-31','20:45:00',0,120,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-31 09:38:03','vishal','2025-11-01 15:41:08',0),(6566,2526,0,0,2135,'2025-10-31','20:45:00',0,120,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-31 09:38:03','vishal','2025-11-01 15:41:08',0),(6567,2526,0,0,2135,'2025-11-01','20:45:00',0,120,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-31 09:38:03','vishal','2025-11-01 15:47:24',0),(6568,2526,0,0,2135,'2025-11-01','20:45:00',0,120,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-31 09:38:03','vishal','2025-11-01 15:47:24',0),(6569,2526,0,0,1888,'2025-10-31','21:14:00',1454,109,'WPRC','WPRC0080','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',96,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-10-31 21:14:57','','0000-00-00 00:00:00',0),(6570,2526,0,0,2134,'2025-10-31','21:21:08',1683,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2311,2,166,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 21:21:08','reception','2025-10-31 21:21:08',0),(6571,2526,0,0,2134,'2025-10-31','21:21:08',1683,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2311,3,166,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-10-31 21:21:08','reception','2025-10-31 21:21:08',0),(6572,2526,0,0,2136,'2025-11-01','00:00:00',1684,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 09:10:31','urvashi','2025-10-31 21:40:31',0),(6573,2526,0,0,2136,'2025-11-01','09:13:08',1684,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',2312,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 09:13:08','urvashi','2025-11-01 09:13:08',0),(6574,2526,0,0,2136,'2025-11-01','09:13:08',1684,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',2312,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 09:13:08','urvashi','2025-11-01 09:13:08',0),(6575,2526,0,0,2137,'2025-11-01','00:00:00',1685,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 09:14:04','urvashi','2025-10-31 21:44:04',0),(6576,2526,0,0,2138,'2025-11-01','00:00:00',1686,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2313,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 09:14:27','reception','2025-11-01 09:14:46',0),(6577,2526,0,0,2137,'2025-11-01','09:15:32',1685,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',2314,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 09:15:32','urvashi','2025-11-01 09:15:32',0),(6578,2526,0,0,2137,'2025-11-01','09:15:32',1685,0,'OPWD','OPWD0013','H','N',5.00,100,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',2314,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 09:15:32','urvashi','2025-11-01 09:15:32',0),(6579,2526,0,0,2137,'2025-11-01','09:15:32',1685,0,'WPRC','WPRC0049','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',2314,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 09:15:32','urvashi','2025-11-01 09:15:32',0),(6580,2526,0,0,2139,'2025-11-01','00:00:00',1687,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2315,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 09:16:11','reception','2025-11-01 09:17:06',0),(6581,2526,0,0,2140,'2025-11-01','00:00:00',1688,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 09:16:34','urvashi','2025-10-31 21:46:34',0),(6582,2526,0,0,2140,'2025-11-01','09:18:06',1688,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',2316,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 09:18:06','urvashi','2025-11-01 09:18:06',0),(6583,2526,0,0,2141,'2025-11-01','00:00:00',1689,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2317,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 09:47:22','urvashi','2025-11-01 09:47:51',0),(6584,2526,0,0,2142,'2025-11-01','00:00:00',1690,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2318,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 09:48:44','reception','2025-11-01 09:49:05',0),(6585,2526,0,0,2143,'2025-11-01','00:00:00',913,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2319,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 09:59:48','reception','2025-11-01 10:00:19',0),(6586,2526,0,0,2144,'2025-11-01','10:05:24',1652,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2320,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 10:05:24','reception','2025-11-01 10:05:24',0),(6587,2526,0,0,2144,'2025-11-01','10:05:24',1652,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2320,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 10:05:24','reception','2025-11-01 10:05:24',0),(6588,2526,0,0,2144,'2025-11-01','10:05:24',1652,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2320,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 10:05:24','reception','2025-11-01 10:05:24',0),(6589,2526,0,0,2145,'2025-11-01','00:00:00',1691,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2321,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 10:13:27','reception','2025-11-01 10:13:52',0),(6590,2526,0,0,2146,'2025-11-01','00:00:00',1692,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2322,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 10:19:30','drashti','2025-11-01 10:20:26',0),(6591,2526,0,0,2147,'2025-11-01','00:00:00',1693,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2323,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 10:21:56','reception','2025-11-01 10:23:53',0),(6592,2526,0,0,2148,'2025-11-01','00:00:00',1694,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',2324,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-01 10:23:39','manshi','2025-11-01 10:24:38',0),(6593,2526,0,0,2150,'2025-11-01','00:00:00',1695,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2325,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 10:25:04','drashti','2025-11-01 10:26:56',0),(6594,2526,0,0,2149,'2025-11-01','10:31:38',1607,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2326,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 10:31:38','reception','2025-11-01 10:31:38',0),(6595,2526,0,0,2149,'2025-11-01','10:31:38',1607,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2326,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 10:31:38','reception','2025-11-01 10:31:38',0),(6596,2526,0,0,2149,'2025-11-01','10:31:38',1607,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2326,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 10:31:38','reception','2025-11-01 10:31:38',0),(6597,2526,0,0,2151,'2025-11-01','00:00:00',1696,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2327,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 10:33:26','reception','2025-11-01 10:34:16',0),(6598,2526,0,0,2152,'2025-11-01','00:00:00',1697,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2329,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 10:36:28','reception','2025-11-01 10:37:18',0),(6599,2526,0,0,2153,'2025-11-01','00:00:00',1172,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2328,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-01 10:37:01','manshi','2025-11-01 10:37:11',0),(6600,2526,0,0,2154,'2025-11-01','00:00:00',1033,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2330,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-01 10:37:54','manshi','2025-11-01 10:38:05',0),(6601,2526,0,0,2155,'2025-11-01','00:00:00',1149,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2331,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 10:38:30','janvi','2025-11-01 10:39:12',0),(6602,2526,0,0,2156,'2025-11-01','00:00:00',800,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2332,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 10:38:49','reception','2025-11-01 10:39:22',0),(6603,2526,0,0,2157,'2025-11-01','00:00:00',1698,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2333,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 10:46:17','reception','2025-11-01 10:47:01',0),(6604,2526,0,0,2158,'2025-11-01','00:00:00',1699,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2335,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 10:47:40','janvi','2025-11-01 10:49:02',0),(6605,2526,0,0,2159,'2025-11-01','00:00:00',1700,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2336,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 10:48:40','reception','2025-11-01 10:49:08',0),(6606,2526,0,0,2160,'2025-11-01','00:00:00',1701,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',2334,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-01 10:48:41','manshi','2025-11-01 10:48:52',0),(6607,2526,0,0,2161,'2025-11-01','00:00:00',1702,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2337,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 10:49:15','drashti','2025-11-01 11:01:43',0),(6608,2526,0,0,2163,'2025-11-01','00:00:00',1703,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2338,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 10:51:42','drashti','2025-11-01 10:52:03',0),(6609,2526,0,0,2162,'2025-11-01','10:52:18',1261,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2339,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 10:52:18','janvi','2025-11-01 10:52:18',0),(6610,2526,0,0,2164,'2025-11-01','00:00:00',1704,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2340,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 10:54:55','drashti','2025-11-01 10:56:38',0),(6611,2526,0,0,2161,'2025-11-01','10:58:44',1702,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,59,'',0,0,'','','','','',2526,'H','O',2341,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-11-01 10:58:44','janvi','2025-11-01 10:58:44',0),(6612,2526,0,0,2146,'2025-11-01','10:59:08',1692,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2342,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 10:59:08','reception','2025-11-01 10:59:08',0),(6613,2526,0,0,2146,'2025-11-01','10:59:08',1692,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2342,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 10:59:08','reception','2025-11-01 10:59:08',0),(6614,2526,0,0,2146,'2025-11-01','10:59:08',1692,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2342,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 10:59:08','reception','2025-11-01 10:59:08',0),(6615,2526,0,0,2165,'2025-11-01','00:00:00',1705,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2343,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 10:59:48','drashti','2025-11-01 11:00:15',0),(6616,2526,0,0,2166,'2025-11-01','00:00:00',1706,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2344,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 11:00:32','reception','2025-11-01 11:01:25',0),(6617,2526,0,0,1995,'2025-10-31','09:15:00',1206,116,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',110,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 23:31:03','vishal','2025-11-01 11:09:46',0),(6618,2526,0,0,1995,'2025-10-31','09:15:00',1206,116,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',110,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 23:31:03','vishal','2025-11-01 11:09:46',0),(6619,2526,0,0,1995,'2025-10-31','09:15:00',1206,116,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',110,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 23:31:03','vishal','2025-11-01 11:09:46',0),(6620,2526,0,0,1995,'2025-11-01','09:15:00',1206,116,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','211','','','',2526,'H','I',110,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 23:31:03','vishal','2025-11-01 11:10:34',0),(6621,2526,0,0,1995,'2025-11-01','09:15:00',1206,116,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-10-31 23:31:03','vishal','2025-11-01 11:09:46',0),(6622,2526,0,0,2161,'2025-11-01','11:02:58',1702,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2346,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 11:02:58','drashti','2025-11-01 11:02:58',0),(6623,2526,0,0,2139,'2025-11-01','11:04:42',1687,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2347,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 11:04:42','reception','2025-11-01 11:04:42',0),(6624,2526,0,0,2139,'2025-11-01','11:04:42',1687,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',2347,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 11:04:42','reception','2025-11-01 11:04:42',0),(6625,2526,0,0,2167,'2025-11-01','00:00:00',287,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2348,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 11:05:12','janvi','2025-11-01 11:05:37',0),(6626,2526,0,0,2168,'2025-11-01','00:00:00',1707,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2351,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 11:08:42','reception','2025-11-01 11:12:55',0),(6627,2526,0,0,2169,'2025-11-01','00:00:00',1096,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2349,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 11:09:18','reception','2025-11-01 13:46:10',0),(6628,2526,0,0,1995,'2025-10-31','11:07:00',1206,116,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',110,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 11:09:46','vishal','2025-11-01 11:10:34',0),(6629,2526,0,0,1995,'2025-11-01','11:09:00',1206,116,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',110,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 11:09:46','','0000-00-00 00:00:00',0),(6630,2526,0,0,1995,'2025-10-31','11:10:00',1206,116,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',110,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 11:10:34','','0000-00-00 00:00:00',0),(6631,2526,0,0,1995,'2025-10-31','11:10:00',1206,116,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',110,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 11:11:51','','0000-00-00 00:00:00',0),(6632,2526,0,0,1995,'2025-10-31','11:10:00',1206,116,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',110,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 11:11:51','','0000-00-00 00:00:00',0),(6633,2526,0,0,1995,'2025-11-01','11:11:00',1206,116,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',110,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 11:11:51','','0000-00-00 00:00:00',0),(6634,2526,0,0,1995,'2025-10-31','11:11:00',1206,116,'WPRC','WPRC0086','H','N',3.00,200,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',110,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 11:11:51','','0000-00-00 00:00:00',0),(6635,2526,0,0,2170,'2025-11-01','00:00:00',1708,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2350,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 11:12:02','janvi','2025-11-01 11:12:39',0),(6636,2526,0,0,2171,'2025-11-01','00:00:00',1709,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2352,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 11:12:24','drashti','2025-11-01 11:13:08',0),(6637,2526,0,0,2172,'2025-11-01','00:00:00',1710,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2353,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 11:13:54','janvi','2025-11-01 11:14:42',0),(6638,2526,0,0,2173,'2025-11-01','00:00:00',1711,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2388,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 11:15:33','janvi','2025-11-01 12:46:57',0),(6639,2526,0,0,2174,'2025-11-01','00:00:00',1712,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2354,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 11:15:51','reception','2025-11-01 11:16:20',0),(6640,2526,0,0,2175,'2025-11-01','00:00:00',1713,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2355,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 11:16:08','drashti','2025-11-01 11:17:51',0),(6641,2526,0,0,2176,'2025-11-01','00:00:00',1714,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2357,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 11:17:40','reception','2025-11-01 11:18:35',0),(6642,2526,0,0,2165,'2025-11-01','11:18:21',1705,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2356,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 11:18:21','janvi','2025-11-01 11:18:21',0),(6643,2526,0,0,2177,'2025-11-01','00:00:00',1715,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2358,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 11:19:52','drashti','2025-11-01 11:20:25',0),(6644,2526,0,0,2178,'2025-11-01','00:00:00',1716,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2359,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 11:19:57','reception','2025-11-01 11:21:13',0),(6645,2526,0,0,2179,'2025-11-01','00:00:00',1717,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2360,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 11:22:47','janvi','2025-11-01 11:23:21',0),(6646,2526,0,0,2142,'2025-11-01','11:25:21',1690,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2361,1,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 11:25:21','reception','2025-11-01 11:25:21',0),(6647,2526,0,0,2142,'2025-11-01','11:25:21',1690,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2361,2,471,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 11:25:21','reception','2025-11-01 11:25:21',0),(6648,2526,0,0,2142,'2025-11-01','11:25:21',1690,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2361,3,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 11:25:21','reception','2025-11-01 11:25:21',0),(6649,2526,0,0,2180,'2025-11-01','00:00:00',1718,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2362,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 11:25:53','drashti','2025-11-01 11:26:26',0),(6650,2526,0,0,2181,'2025-11-01','00:00:00',1719,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2363,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 11:31:22','drashti','2025-11-01 11:32:13',0),(6651,2526,0,0,2174,'2025-11-01','11:33:15',1712,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',2364,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 11:33:15','drashti','2025-11-01 11:33:15',0),(6652,2526,0,0,2182,'2025-11-01','11:34:09',1132,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2365,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 11:34:09','janvi','2025-11-01 11:34:09',0),(6653,2526,0,0,2183,'2025-11-01','11:38:03',1255,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2366,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 11:38:03','janvi','2025-11-01 11:38:03',0),(6654,2526,0,0,2184,'2025-11-01','00:00:00',1720,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2367,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 11:40:55','reception','2025-11-01 11:43:11',0),(6655,2526,0,0,2186,'2025-11-01','00:00:00',1721,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2368,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 11:45:18','reception','2025-11-01 11:46:20',0),(6656,2526,0,0,2187,'2025-11-01','00:00:00',1722,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2369,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 11:46:19','janvi','2025-11-01 11:47:02',0),(6657,2526,0,0,2188,'2025-11-01','00:00:00',1723,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2370,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 11:48:44','reception','2025-11-01 11:49:16',0),(6658,2526,0,0,2189,'2025-11-01','00:00:00',1724,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2371,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 11:56:09','janvi','2025-11-01 11:57:17',0),(6659,2526,0,0,2190,'2025-11-01','00:00:00',1725,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2372,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 12:00:18','reception','2025-11-01 12:00:39',0),(6660,2526,0,0,1782,'2025-11-01','12:00:00',0,108,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',97,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 12:01:26','','0000-00-00 00:00:00',0),(6661,2526,0,0,1782,'2025-11-01','12:02:00',0,108,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',97,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 12:03:21','vishal','2025-11-01 12:04:21',0),(6662,2526,0,0,1782,'2025-11-01','12:02:00',0,108,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',97,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 12:03:21','vishal','2025-11-01 12:04:21',0),(6663,2526,0,0,1782,'2025-11-01','12:03:00',0,108,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',97,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 12:03:21','vishal','2025-11-01 12:04:21',0),(6664,2526,0,0,2191,'2025-11-01','00:00:00',1726,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2373,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 12:03:54','reception','2025-11-01 12:04:27',0),(6665,2526,0,0,2192,'2025-11-01','00:00:00',376,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2374,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 12:08:28','reception','2025-11-01 12:08:41',0),(6666,2526,0,0,2179,'2025-11-01','12:09:08',1717,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2375,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 12:09:08','janvi','2025-11-01 12:09:08',0),(6667,2526,0,0,2185,'2025-11-01','12:11:22',1332,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2376,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 12:11:22','janvi','2025-11-01 12:11:22',0),(6668,2526,0,0,2193,'2025-11-01','00:00:00',1727,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2377,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 12:16:43','drashti','2025-11-01 12:17:38',0),(6669,2526,0,0,2194,'2025-11-01','00:00:00',1728,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2378,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 12:17:12','janvi','2025-11-01 12:18:08',0),(6670,2526,0,0,2195,'2025-11-01','12:00:00',0,121,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 12:19:42','riya','2025-11-02 13:52:32',0),(6671,2526,0,0,2195,'2025-11-01','12:00:00',0,121,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 12:19:42','riya','2025-11-02 13:52:32',0),(6672,2526,0,0,2195,'2025-11-01','12:00:00',0,121,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 00:49:42','riya','2025-11-02 13:52:32',0),(6673,2526,0,0,2195,'2025-11-01','12:00:00',0,121,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 00:49:42','riya','2025-11-02 13:52:32',0),(6674,2526,0,0,2195,'2025-11-01','12:00:00',0,121,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 00:49:42','riya','2025-11-02 13:52:32',0),(6675,2526,0,0,2195,'2025-11-01','12:00:00',0,121,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 00:49:43','riya','2025-11-02 13:52:32',0),(6676,2526,0,0,2195,'2025-11-01','12:00:00',0,121,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 00:49:43','riya','2025-11-02 13:52:32',0),(6677,2526,0,0,2196,'2025-11-01','00:00:00',1729,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2379,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-01 12:20:46','manshi','2025-11-01 12:22:05',0),(6678,2526,0,0,2197,'2025-11-01','00:00:00',1730,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2380,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 12:23:22','reception','2025-11-01 12:23:48',0),(6679,2526,0,0,2198,'2025-11-01','00:00:00',1731,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2382,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 12:26:57','reception','2025-11-01 12:29:14',0),(6680,2526,0,0,2175,'2025-11-01','12:28:25',1713,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',2381,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 12:28:25','drashti','2025-11-01 12:28:25',0),(6681,2526,0,0,2175,'2025-11-01','12:28:25',1713,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',2381,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 12:28:25','drashti','2025-11-01 12:28:25',0),(6682,2526,0,0,2199,'2025-11-01','00:00:00',1732,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2384,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 12:34:17','janvi','2025-11-01 12:35:22',0),(6683,2526,0,0,2147,'2025-11-01','12:34:25',1693,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2383,1,478,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 12:34:25','reception','2025-11-01 12:34:25',0),(6684,2526,0,0,2147,'2025-11-01','12:34:25',1693,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2383,2,478,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 12:34:25','reception','2025-11-01 12:34:25',0),(6685,2526,0,0,2147,'2025-11-01','12:34:25',1693,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2383,3,543,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 12:34:25','reception','2025-11-01 12:34:25',0),(6686,2526,0,0,1727,'2025-11-01','12:33:00',1363,107,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',100,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 12:35:14','vishal','2025-11-01 12:57:28',0),(6687,2526,0,0,1727,'2025-11-01','12:34:00',1363,107,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',100,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 12:35:14','vishal','2025-11-01 12:57:28',0),(6688,2526,0,0,2194,'2025-11-01','12:35:52',1728,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,60,'',0,0,'','','','','',2526,'H','O',2385,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-11-01 12:35:52','janvi','2025-11-01 12:35:52',0),(6689,2526,0,0,2194,'2025-11-01','12:35:56',1728,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,61,'',0,0,'','','','','',2526,'H','O',2386,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'drashti','2025-11-01 12:35:56','drashti','2025-11-01 12:35:56',0),(6690,2526,0,0,1727,'2025-11-01','12:37:00',1363,107,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',100,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 12:38:29','vishal','2025-11-01 12:57:28',0),(6691,2526,0,0,1727,'2025-11-01','12:37:00',1363,107,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',100,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 12:38:29','vishal','2025-11-01 12:57:28',0),(6692,2526,0,0,1727,'2025-11-01','12:38:00',1363,107,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',100,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 12:38:29','vishal','2025-11-01 12:57:28',0),(6693,2526,0,0,2176,'2025-11-01','12:44:38',1714,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2387,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 12:44:38','reception','2025-11-01 12:44:38',0),(6694,2526,0,0,2176,'2025-11-01','12:44:38',1714,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2387,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 12:44:38','reception','2025-11-01 12:44:38',0),(6695,2526,0,0,2176,'2025-11-01','12:44:38',1714,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2387,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 12:44:38','reception','2025-11-01 12:44:38',0),(6696,2526,0,0,2200,'2025-11-01','00:00:00',1733,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2389,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 12:45:05','drashti','2025-11-01 12:47:15',0),(6697,2526,0,0,2173,'2025-11-01','12:46:57',1711,0,'OPWD','OPWD0007','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2388,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 12:46:57','janvi','2025-11-01 12:46:57',0),(6698,2526,0,0,2201,'2025-11-01','00:00:00',1734,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2390,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 12:49:04','reception','2025-11-01 12:49:35',0),(6699,2526,0,0,2202,'2025-11-01','00:00:00',1735,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2391,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 12:51:49','reception','2025-11-01 12:53:20',0),(6700,2526,0,0,2203,'2025-11-01','00:00:00',1736,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2392,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 12:54:56','reception','2025-11-01 12:56:27',0),(6701,2526,0,0,2204,'2025-11-01','00:00:00',1737,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2393,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 12:57:17','drashti','2025-11-01 12:58:07',0),(6702,2526,0,0,2205,'2025-11-01','00:00:00',1738,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2394,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 12:58:28','janvi','2025-11-01 12:59:18',0),(6703,2526,0,0,414,'2025-11-01','13:45:00',0,25,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 13:47:20','','0000-00-00 00:00:00',0),(6704,2526,0,0,414,'2025-11-01','13:46:00',0,25,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 13:47:20','','0000-00-00 00:00:00',0),(6705,2526,0,0,414,'2025-11-01','13:46:00',0,25,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 13:47:20','','0000-00-00 00:00:00',0),(6706,2526,0,0,2169,'2025-11-01','13:47:34',1096,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2396,1,300,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 13:47:34','reception','2025-11-01 13:47:34',0),(6707,2526,0,0,2186,'2025-11-01','13:53:53',1721,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2397,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 13:53:53','reception','2025-11-01 13:53:53',0),(6708,2526,0,0,2186,'2025-11-01','13:53:53',1721,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',2397,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 13:53:53','reception','2025-11-01 13:53:53',0),(6709,2526,0,0,2203,'2025-11-01','13:56:11',1736,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2398,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 13:56:11','reception','2025-11-01 13:56:11',0),(6710,2526,0,0,2203,'2025-11-01','13:56:11',1736,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2398,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 13:56:11','reception','2025-11-01 13:56:11',0),(6711,2526,0,0,2206,'2025-11-01','00:00:00',738,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',2399,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 14:19:26','urvashi','2025-11-01 15:01:34',0),(6712,2526,0,0,414,'2025-10-28','14:21:00',0,25,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 14:23:26','vishal','2025-11-01 14:34:19',0),(6713,2526,0,0,414,'2025-11-01','14:22:00',0,25,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 14:23:26','','0000-00-00 00:00:00',0),(6714,2526,0,0,414,'2025-10-31','14:27:00',0,25,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 14:34:19','','0000-00-00 00:00:00',0),(6715,2526,0,0,414,'2025-10-28','14:31:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 14:34:19','vishal','2025-11-01 14:43:03',0),(6716,2526,0,0,414,'2025-10-29','14:31:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 14:34:19','vishal','2025-11-01 14:43:03',0),(6717,2526,0,0,414,'2025-10-30','14:31:00',0,25,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 14:34:19','','0000-00-00 00:00:00',0),(6718,2526,0,0,414,'2025-10-28','14:32:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 14:34:19','vishal','2025-11-01 14:43:03',0),(6719,2526,0,0,414,'2025-10-29','14:32:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 14:34:19','vishal','2025-11-01 14:43:03',0),(6720,2526,0,0,414,'2025-10-30','14:32:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 14:34:19','','0000-00-00 00:00:00',0),(6721,2526,0,0,414,'2025-10-31','14:32:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 14:34:19','','0000-00-00 00:00:00',0),(6722,2526,0,0,414,'2025-11-01','14:32:00',0,25,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 14:34:19','','0000-00-00 00:00:00',0),(6723,2526,0,0,2198,'2025-11-01','14:37:09',1731,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2400,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 14:37:09','drashti','2025-11-01 14:37:09',0),(6724,2526,0,0,2198,'2025-11-01','14:37:09',1731,0,'NEU1','NEU10017','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2400,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 14:37:09','drashti','2025-11-01 14:37:09',0),(6725,2526,0,0,414,'2025-10-28','14:35:00',0,25,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 14:43:03','','0000-00-00 00:00:00',0),(6726,2526,0,0,414,'2025-10-29','14:35:00',0,25,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 14:43:03','','0000-00-00 00:00:00',0),(6727,2526,0,0,414,'2025-10-31','14:38:00',0,25,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 14:43:03','','0000-00-00 00:00:00',0),(6728,2526,0,0,414,'2025-11-01','14:38:00',0,25,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 14:43:03','','0000-00-00 00:00:00',0),(6729,2526,0,0,414,'2025-10-31','14:41:00',0,25,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 14:43:03','','0000-00-00 00:00:00',0),(6730,2526,0,0,414,'2025-11-01','14:41:00',0,25,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 14:43:03','','0000-00-00 00:00:00',0),(6731,2526,0,0,414,'2025-11-01','14:43:00',0,25,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',101,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 14:44:15','','0000-00-00 00:00:00',0),(6732,2526,0,0,1711,'2025-11-01','12:30:00',1343,104,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-04 17:12:38',0),(6733,2526,0,0,1711,'2025-11-01','12:30:00',1343,104,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-04 17:12:38',0),(6734,2526,0,0,1711,'2025-11-01','12:30:00',1343,104,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-04 17:12:38',0),(6735,2526,0,0,1711,'2025-11-01','12:30:00',1343,104,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-04 17:12:38',0),(6736,2526,0,0,1711,'2025-11-01','12:30:00',1343,104,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-04 17:12:38',0),(6737,2526,0,0,1723,'2025-11-01','13:50:00',1368,105,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-03 12:48:06',0),(6738,2526,0,0,1723,'2025-11-01','13:50:00',1368,105,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','411','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-03 12:48:06',0),(6739,2526,0,0,1723,'2025-11-01','13:50:00',1368,105,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-03 12:48:06',0),(6740,2526,0,0,1723,'2025-11-01','13:50:00',1368,105,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','411','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-03 12:48:06',0),(6741,2526,0,0,1723,'2025-11-01','13:50:00',1368,105,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','411','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-03 12:48:06',0),(6742,2526,0,0,1936,'2025-11-01','12:50:00',1514,111,'ROOM','ROOM0009','H','N',0.50,5500,2750,'A',0,0,0.00,0.00,2750.00,2750,9999,0,0,'',0,0,'','209','','','',2526,'H','I',102,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-01 15:18:36',0),(6743,2526,0,0,1936,'2025-11-01','12:50:00',1514,111,'AECO','AECO0008','H','N',0.50,800,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','209','','','',2526,'H','I',102,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-01 15:18:36',0),(6744,2526,0,0,1936,'2025-11-01','12:50:00',1514,111,'CARE','CARE0001','H','N',0.50,600,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','209','','','',2526,'H','I',102,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-01 15:18:36',0),(6745,2526,0,0,1936,'2025-11-01','12:50:00',1514,111,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',102,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-01 15:18:36',0),(6746,2526,0,0,1936,'2025-11-01','12:50:00',1514,111,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-01 15:21:54',0),(6747,2526,0,0,1940,'2025-11-01','13:52:00',1532,112,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-03 12:25:40',0),(6748,2526,0,0,1940,'2025-11-01','13:52:00',1532,112,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-03 12:25:40',0),(6749,2526,0,0,1940,'2025-11-01','13:52:00',1532,112,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-03 12:25:40',0),(6750,2526,0,0,1940,'2025-11-01','13:52:00',1532,112,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-03 12:25:40',0),(6751,2526,0,0,1940,'2025-11-01','13:52:00',1532,112,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:33','vishal','2025-11-03 12:25:40',0),(6752,2526,0,0,1941,'2025-11-01','13:56:00',0,113,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',108,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','vishal','2025-11-03 12:23:11',0),(6753,2526,0,0,1941,'2025-11-01','13:56:00',0,113,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',108,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','vishal','2025-11-03 12:23:11',0),(6754,2526,0,0,1941,'2025-11-01','13:56:00',0,113,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',108,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','vishal','2025-11-03 12:23:11',0),(6755,2526,0,0,1941,'2025-11-01','13:56:00',0,113,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',108,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','vishal','2025-11-03 12:23:11',0),(6756,2526,0,0,1941,'2025-11-01','13:56:00',0,113,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',108,16,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','vishal','2025-11-03 12:23:11',0),(6757,2526,0,0,2018,'2025-11-01','10:45:00',0,117,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','riya','2025-11-02 20:17:43',0),(6758,2526,0,0,2018,'2025-11-01','10:45:00',0,117,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','riya','2025-11-02 20:17:43',0),(6759,2526,0,0,2018,'2025-11-01','10:45:00',0,117,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','riya','2025-11-02 20:17:43',0),(6760,2526,0,0,2018,'2025-11-01','10:45:00',0,117,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','riya','2025-11-02 20:17:43',0),(6761,2526,0,0,2018,'2025-11-01','10:45:00',0,117,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','riya','2025-11-02 20:17:43',0),(6762,2526,0,0,2027,'2025-11-01','07:00:00',0,118,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',104,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','riya','2025-11-02 11:14:42',0),(6763,2526,0,0,2027,'2025-11-01','07:00:00',0,118,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',104,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','riya','2025-11-02 11:14:42',0),(6764,2526,0,0,2027,'2025-11-01','07:00:00',0,118,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',104,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','riya','2025-11-02 11:14:42',0),(6765,2526,0,0,2027,'2025-11-01','07:00:00',0,118,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',104,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','riya','2025-11-02 11:14:42',0),(6766,2526,0,0,2027,'2025-11-01','07:00:00',0,118,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',104,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','riya','2025-11-02 11:14:42',0),(6767,2526,0,0,2065,'2025-11-01','14:34:00',1635,119,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',103,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','riya','2025-11-02 09:44:42',0),(6768,2526,0,0,2065,'2025-11-01','14:34:00',1635,119,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',103,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','riya','2025-11-02 09:44:42',0),(6769,2526,0,0,2065,'2025-11-01','14:34:00',1635,119,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',103,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','riya','2025-11-02 09:44:42',0),(6770,2526,0,0,2065,'2025-11-01','14:34:00',1635,119,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',103,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','riya','2025-11-02 09:44:42',0),(6771,2526,0,0,2065,'2025-11-01','14:34:00',1635,119,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',103,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 03:18:34','riya','2025-11-02 09:44:42',0),(6772,2526,0,0,2206,'2025-11-01','15:02:36',738,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',2402,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-01 15:02:36','urvashi','2025-11-01 15:02:36',0),(6773,2526,0,0,1936,'2025-11-01','15:20:00',1514,111,'WPRC','WPRC0078','H','N',2.00,300,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 15:21:54','','0000-00-00 00:00:00',0),(6774,2526,0,0,1936,'2025-11-01','15:21:00',1514,111,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 15:21:54','','0000-00-00 00:00:00',0),(6775,2526,0,0,1936,'2025-11-01','15:21:00',1514,111,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 15:21:54','','0000-00-00 00:00:00',0),(6776,2526,0,0,1936,'2025-11-01','15:22:00',1514,111,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 15:26:37','','0000-00-00 00:00:00',0),(6777,2526,0,0,1936,'2025-11-01','15:22:00',1514,111,'WPRC','WPRC0087','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 15:26:37','','0000-00-00 00:00:00',0),(6778,2526,0,0,1936,'2025-11-01','15:25:00',1514,111,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',102,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 15:26:37','','0000-00-00 00:00:00',0),(6779,2526,0,0,2135,'2025-10-31','15:42:00',0,120,'ADMN','ADMN0007','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,5000.00,5000,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 15:47:24','','0000-00-00 00:00:00',0),(6780,2526,0,0,2135,'2025-10-31','15:42:00',0,120,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 15:47:24','','0000-00-00 00:00:00',0),(6781,2526,0,0,2135,'2025-10-31','15:42:00',0,120,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 15:47:24','','0000-00-00 00:00:00',0),(6782,2526,0,0,2135,'2025-10-31','15:42:00',0,120,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 15:47:24','','0000-00-00 00:00:00',0),(6783,2526,0,0,2135,'2025-10-31','15:43:00',0,120,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 15:47:24','','0000-00-00 00:00:00',0),(6784,2526,0,0,2135,'2025-11-01','15:43:00',0,120,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 15:47:24','','0000-00-00 00:00:00',0),(6785,2526,0,0,2135,'2025-11-02','15:43:00',0,120,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 15:47:24','riya','2025-11-02 12:33:31',0),(6786,2526,0,0,2135,'2025-10-31','15:46:00',0,120,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 15:47:24','','0000-00-00 00:00:00',0),(6787,2526,0,0,2135,'2025-11-01','15:46:00',0,120,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 15:47:24','','0000-00-00 00:00:00',0),(6788,2526,0,0,2135,'2025-10-31','20:45:00',0,120,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',0,'','',0,10,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 04:17:32','riya','2025-11-02 12:33:31',0),(6789,2526,0,0,2135,'2025-10-31','20:45:00',0,120,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',0,'','',0,9,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 04:17:32','riya','2025-11-02 12:33:31',0),(6790,2526,0,0,2207,'2025-11-01','00:00:00',1739,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2403,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 16:26:55','reception','2025-11-01 16:27:11',0),(6791,2526,0,0,2208,'2025-11-01','00:00:00',1740,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',2404,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-01 17:05:54','manshi','2025-11-01 17:12:21',0),(6792,2526,0,0,2208,'2025-11-01','17:12:21',1740,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',2404,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-01 17:12:21','manshi','2025-11-01 17:12:21',0),(6793,2526,0,0,2208,'2025-11-01','17:12:21',1740,0,'XRY','XRY0056','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','O',2404,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-01 17:12:21','manshi','2025-11-01 17:12:21',0),(6794,2526,0,0,2208,'2025-11-01','17:12:21',1740,0,'XRY','XRY0390','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','O',2404,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-01 17:12:21','manshi','2025-11-01 17:12:21',0),(6795,2526,0,0,2210,'2025-11-01','00:00:00',1741,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2405,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 17:30:57','janvi','2025-11-01 17:36:12',0),(6796,2526,0,0,2211,'2025-11-01','00:00:00',1742,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2406,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-01 18:08:43','drashti','2025-11-01 18:09:01',0),(6797,2526,0,0,2212,'2025-11-01','00:00:00',1743,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2407,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 18:09:06','reception','2025-11-01 18:09:21',0),(6798,2526,0,0,2214,'2025-11-01','18:00:00',0,122,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',106,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 18:17:46','riya','2025-11-02 17:38:52',0),(6799,2526,0,0,2214,'2025-11-01','18:00:00',0,122,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',106,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 18:17:46','riya','2025-11-02 17:38:52',0),(6800,2526,0,0,2214,'2025-11-01','18:00:00',0,122,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',106,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 06:47:46','riya','2025-11-02 17:38:52',0),(6801,2526,0,0,2214,'2025-11-01','18:00:00',0,122,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',106,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 06:47:46','riya','2025-11-02 17:38:52',0),(6802,2526,0,0,2214,'2025-11-01','18:00:00',0,122,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',106,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 06:47:46','riya','2025-11-02 17:38:52',0),(6803,2526,0,0,2214,'2025-11-01','18:00:00',0,122,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','403','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 06:47:46','riya','2025-11-02 17:38:52',0),(6804,2526,0,0,2214,'2025-11-01','18:00:00',0,122,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',106,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 06:47:46','riya','2025-11-02 17:38:52',0),(6805,2526,0,0,2215,'2025-11-01','00:00:00',364,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 18:19:54','reception','2025-11-01 06:49:54',0),(6806,2526,0,0,2215,'2025-11-01','18:20:52',364,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2408,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 18:20:52','reception','2025-11-01 18:20:52',0),(6807,2526,0,0,2209,'2025-11-01','18:25:04',1004,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2409,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-01 18:25:04','reception','2025-11-01 18:25:04',0),(6808,2526,0,0,2216,'2025-11-01','18:41:02',901,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2410,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-01 18:41:02','manshi','2025-11-01 18:41:02',0),(6809,2526,0,0,2217,'2025-11-01','19:16:08',1307,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2411,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-01 19:16:08','manshi','2025-11-01 19:16:08',0),(6810,2526,0,0,2218,'2025-11-01','00:00:00',1744,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2412,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-01 19:19:32','manshi','2025-11-01 19:19:44',0),(6811,2526,0,0,2216,'2025-11-01','19:47:39',901,0,'OPWD','OPWD0007','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',2413,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-01 19:47:39','manshi','2025-11-01 19:47:39',0),(6812,2526,0,0,2219,'2025-11-01','20:00:00',0,123,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-01 19:52:30','riya','2025-11-02 11:52:03',0),(6813,2526,0,0,2219,'2025-11-01','20:00:00',0,123,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-01 19:52:30','riya','2025-11-02 11:52:03',0),(6814,2526,0,0,2220,'2025-11-01','00:00:00',1745,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-01 20:09:23','manshi','2025-11-01 08:39:23',0),(6815,2526,0,0,2220,'2025-11-01','20:10:07',1745,0,'XRY','XRY0151','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2414,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-01 20:10:07','manshi','2025-11-01 20:10:07',0),(6816,2526,0,0,2221,'2025-11-01','00:00:00',1746,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',2415,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 20:34:49','janvi','2025-11-01 20:36:36',0),(6817,2526,0,0,2221,'2025-11-01','20:36:36',1746,0,'OPWD','OPWD0007','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2415,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 20:36:36','janvi','2025-11-01 20:36:36',0),(6818,2526,0,0,2220,'2025-11-01','20:38:40',1745,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',2416,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 20:38:40','janvi','2025-11-01 20:38:40',0),(6819,2526,0,0,2207,'2025-11-01','20:50:24',1739,0,'WPRC','WPRC0050','H','N',2.00,250,500,'P',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2417,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 20:50:24','janvi','2025-11-01 20:50:24',0),(6820,2526,0,0,2207,'2025-11-01','20:50:24',1739,0,'WPRC','WPRC0037','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2417,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-01 20:50:24','janvi','2025-11-01 20:50:24',0),(6821,2526,0,0,2135,'2025-11-01','20:45:00',0,120,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 10:14:41','vishal','2025-11-01 21:45:31',0),(6822,2526,0,0,2135,'2025-11-01','20:45:00',0,120,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 10:14:41','vishal','2025-11-01 21:45:31',0),(6823,2526,0,0,2135,'2025-11-01','20:45:00',0,120,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 10:14:42','vishal','2025-11-01 21:45:31',0),(6824,2526,0,0,2135,'2025-11-01','21:44:00',0,120,'WPRC','WPRC0106','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-01 21:45:31','','0000-00-00 00:00:00',0),(6825,2526,0,0,2222,'2025-11-02','00:00:00',1747,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-02 09:40:07','shweta','2025-11-01 22:10:07',0),(6826,2526,0,0,2222,'2025-11-02','09:40:41',1747,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',2418,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-02 09:40:41','shweta','2025-11-02 09:40:41',0),(6827,2526,0,0,2222,'2025-11-02','09:41:41',1747,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',2419,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-02 09:41:41','shweta','2025-11-02 09:41:41',0),(6828,2526,0,0,2065,'2025-11-01','09:40:00',1635,119,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',103,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 09:44:42','','0000-00-00 00:00:00',0),(6829,2526,0,0,2065,'2025-10-31','09:40:00',1635,119,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',103,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 09:44:42','','0000-00-00 00:00:00',0),(6830,2526,0,0,2065,'2025-11-02','09:41:00',1635,119,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',103,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 09:44:42','','0000-00-00 00:00:00',0),(6831,2526,0,0,2065,'2025-11-01','09:41:00',1635,119,'SURG','SURG0014','H','N',1.00,24000,24000,'P',0,0,0.00,0.00,24000.00,24000,3,0,0,'',0,0,'','','','','',2526,'H','I',103,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 09:44:42','riya','2025-11-02 10:30:17',0),(6832,2526,0,0,2065,'2025-11-01','09:42:00',1635,119,'SURG','SURG0015','H','N',1.00,7930,7930,'P',0,0,0.00,0.00,7930.00,7930,3,0,0,'',0,0,'','','','','',2526,'H','I',103,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 09:44:42','riya','2025-11-02 10:31:03',0),(6833,2526,0,0,2065,'2025-11-02','09:43:00',1635,119,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',103,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 09:44:42','','0000-00-00 00:00:00',0),(6834,2526,0,0,2065,'2025-11-02','09:44:00',1635,119,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',103,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 09:44:42','','0000-00-00 00:00:00',0),(6835,2526,0,0,2065,'2025-10-31','09:45:00',1635,119,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,124,0,0,'',0,0,'','','','','',2526,'H','I',103,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 09:46:29','','0000-00-00 00:00:00',0),(6836,2526,0,0,2027,'2025-11-02','07:00:00',0,118,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-01 23:23:24','riya','2025-11-02 11:10:01',0),(6837,2526,0,0,2027,'2025-11-02','07:00:00',0,118,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-01 23:23:24','riya','2025-11-02 11:10:01',0),(6838,2526,0,0,2027,'2025-11-02','07:00:00',0,118,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-01 23:23:24','riya','2025-11-02 11:10:01',0),(6839,2526,0,0,2027,'2025-11-02','07:00:00',0,118,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',104,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-01 23:23:24','riya','2025-11-02 11:14:42',0),(6840,2526,0,0,2027,'2025-11-02','07:00:00',0,118,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-01 23:23:25','riya','2025-11-02 11:10:01',0),(6841,2526,0,0,2027,'2025-11-01','11:06:00',0,118,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:10:01','riya','2025-11-02 11:19:03',0),(6842,2526,0,0,2027,'2025-10-31','11:06:00',0,118,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,78,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:10:01','riya','2025-11-02 11:19:03',0),(6843,2526,0,0,2027,'2025-10-31','11:07:00',0,118,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:10:01','riya','2025-11-02 11:14:42',0),(6844,2526,0,0,2027,'2025-10-31','11:07:00',0,118,'WPRC','WPRC0084','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:10:01','riya','2025-11-02 11:14:42',0),(6845,2526,0,0,2027,'2025-10-31','11:07:00',0,118,'ROOM','ROOM0008','H','N',9.00,100,900,'P',0,0,0.00,0.00,900.00,900,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:10:01','riya','2025-11-02 11:20:49',0),(6846,2526,0,0,2027,'2025-10-31','11:07:00',0,118,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,4,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:10:01','riya','2025-11-02 11:20:49',0),(6847,2526,0,0,2027,'2025-10-31','11:07:00',0,118,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:10:01','','0000-00-00 00:00:00',0),(6848,2526,0,0,2027,'2025-10-31','11:07:00',0,118,'USG','USG0092','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:10:01','','0000-00-00 00:00:00',0),(6849,2526,0,0,2027,'2025-10-31','11:07:00',0,118,'WPRC','WPRC0097','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',104,5,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:10:01','riya','2025-11-02 11:20:49',0),(6850,2526,0,0,2027,'2025-10-31','11:08:00',0,118,'WPRC','WPRC0104','H','N',1.00,6000,6000,'A',0,0,0.00,0.00,6000.00,6000,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:10:01','riya','2025-11-02 11:14:42',0),(6851,2526,0,0,2027,'2025-11-01','11:10:00',0,118,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:14:42','','0000-00-00 00:00:00',0),(6852,2526,0,0,2027,'2025-11-02','11:10:00',0,118,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:14:42','','0000-00-00 00:00:00',0),(6853,2526,0,0,2027,'2025-10-31','11:11:00',0,118,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:14:42','riya','2025-11-02 11:20:49',0),(6854,2526,0,0,2027,'2025-11-01','11:11:00',0,118,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:14:42','','0000-00-00 00:00:00',0),(6855,2526,0,0,2027,'2025-11-02','11:11:00',0,118,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:14:42','','0000-00-00 00:00:00',0),(6856,2526,0,0,2027,'2025-10-31','11:12:00',0,118,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:14:42','','0000-00-00 00:00:00',0),(6857,2526,0,0,2027,'2025-11-01','11:12:00',0,118,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:14:42','','0000-00-00 00:00:00',0),(6858,2526,0,0,2027,'2025-11-02','11:12:00',0,118,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:14:42','','0000-00-00 00:00:00',0),(6859,2526,0,0,2027,'2025-10-31','11:12:00',0,118,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:14:42','','0000-00-00 00:00:00',0),(6860,2526,0,0,2027,'2025-11-01','11:12:00',0,118,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:14:42','','0000-00-00 00:00:00',0),(6861,2526,0,0,2027,'2025-10-31','11:13:00',0,118,'WPRC','WPRC0087','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:14:42','','0000-00-00 00:00:00',0),(6862,2526,0,0,2027,'2025-11-01','11:13:00',0,118,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:14:42','','0000-00-00 00:00:00',0),(6863,2526,0,0,2027,'2025-11-02','11:14:00',0,118,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:14:42','','0000-00-00 00:00:00',0),(6864,2526,0,0,2027,'2025-10-31','11:17:00',0,118,'OETR','OETR0002','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',104,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 11:18:05','','0000-00-00 00:00:00',0),(6865,2526,0,0,2223,'2025-11-02','11:33:50',1669,0,'MOPR','MOPR0005','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2420,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-02 11:33:50','shweta','2025-11-02 11:33:50',0),(6866,2526,0,0,2224,'2025-11-02','00:00:00',1748,0,'PKG','CASE','H','N',1.00,1200,1200,'A',0,0,0.00,0.00,1200.00,1200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-02 11:51:49','shweta','2025-11-02 00:21:49',0),(6867,2526,0,0,2195,'2025-11-02','12:00:00',0,121,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',0,'','',0,8,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 00:39:14','vishal','2025-11-08 09:02:46',0),(6868,2526,0,0,2195,'2025-11-02','12:00:00',0,121,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',0,'','',0,9,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 00:39:14','vishal','2025-11-08 09:02:46',0),(6869,2526,0,0,2195,'2025-11-02','12:00:00',0,121,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',0,'','',0,10,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 00:39:14','vishal','2025-11-08 09:02:46',0),(6870,2526,0,0,2195,'2025-11-02','12:00:00',0,121,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 00:39:14','vishal','2025-11-08 09:07:44',0),(6871,2526,0,0,2195,'2025-11-02','12:00:00',0,121,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',0,'','',0,12,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 00:39:14','vishal','2025-11-08 09:02:46',0),(6872,2526,0,0,2135,'2025-11-02','12:32:00',0,120,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 12:33:31','','0000-00-00 00:00:00',0),(6873,2526,0,0,2224,'2025-11-02','12:45:54',1748,0,'WPRC','WPRC0046','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,0.00,5000,7,0,0,'',0,0,'','','','','',2526,'H','O',2421,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-02 12:45:54','shweta','2025-11-02 12:45:54',0),(6874,2526,0,0,2225,'2025-11-02','00:00:00',1749,0,'PKG','CASE','H','N',1.00,1200,1200,'A',0,0,0.00,0.00,1200.00,1200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-02 12:51:52','shweta','2025-11-02 01:21:52',0),(6875,2526,0,0,2225,'2025-11-02','12:56:46',1749,0,'SURG','SURG0005','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,0.00,1200,7,0,0,'',0,0,'','','','','',2526,'H','O',2422,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-02 12:56:46','shweta','2025-11-02 12:56:46',0),(6876,2526,0,0,2225,'2025-11-02','12:56:46',1749,0,'WPRC','WPRC0037','H','N',4.00,100,400,'P',0,0,0.00,0.00,0.00,400,7,0,0,'',0,0,'','','','','',2526,'H','O',2422,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-02 12:56:46','shweta','2025-11-02 12:56:46',0),(6877,2526,0,0,2225,'2025-11-02','12:56:46',1749,0,'OPWD','OPWD0016','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,7,0,0,'',0,0,'','','','','',2526,'H','O',2422,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-02 12:56:46','shweta','2025-11-02 12:56:46',0),(6878,2526,0,0,2226,'2025-11-02','13:00:00',0,124,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',111,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 13:04:43','riya','2025-11-02 13:40:22',0),(6879,2526,0,0,2226,'2025-11-02','13:00:00',0,124,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',111,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 13:04:43','riya','2025-11-02 13:40:22',0),(6880,2526,0,0,2226,'2025-11-02','13:00:00',0,124,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',111,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 01:34:43','riya','2025-11-02 13:40:22',0),(6881,2526,0,0,2226,'2025-11-02','13:00:00',0,124,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',111,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 01:34:43','riya','2025-11-02 13:40:22',0),(6882,2526,0,0,2226,'2025-11-02','13:00:00',0,124,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',111,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 01:34:43','riya','2025-11-02 13:40:22',0),(6883,2526,0,0,2226,'2025-11-03','13:00:00',0,124,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','410','','','',2526,'H','I',111,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 01:34:43','vishal','2025-11-03 19:08:52',0),(6884,2526,0,0,2226,'2025-11-02','13:00:00',0,124,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','410','','','',2526,'H','I',111,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 01:34:43','riya','2025-11-02 13:40:22',0),(6885,2526,0,0,1723,'2025-11-01','13:10:00',1368,105,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 13:11:45','riya','2025-11-02 13:15:39',0),(6886,2526,0,0,1723,'2025-11-01','13:10:00',1368,105,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 13:11:45','vishal','2025-11-03 12:48:06',0),(6887,2526,0,0,1723,'2025-10-29','13:10:00',1368,105,'SURG','SURG0014','H','N',1.00,30000,30000,'P',0,0,0.00,0.00,30000.00,30000,70,0,0,'',0,0,'','','','','',0,'','',0,43,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 13:11:45','riya','2025-11-02 13:15:39',0),(6888,2526,0,0,1723,'2025-11-01','13:15:00',1368,105,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,70,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 13:15:39','','0000-00-00 00:00:00',0),(6889,2526,0,0,2226,'2025-11-02','13:39:00',0,124,'ADMN','ADMN0007','H','N',1.00,5000,5000,'A',0,0,0.00,0.00,5000.00,5000,9999,0,0,'',0,0,'','','','','',2526,'H','I',111,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 13:40:22','vishal','2025-11-03 19:08:52',0),(6890,2526,0,0,2195,'2025-11-01','13:50:00',0,121,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 13:52:32','','0000-00-00 00:00:00',0),(6891,2526,0,0,2195,'2025-11-01','13:50:00',0,121,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 13:52:32','','0000-00-00 00:00:00',0),(6892,2526,0,0,2195,'2025-11-02','13:51:00',0,121,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 13:52:32','','0000-00-00 00:00:00',0),(6893,2526,0,0,2195,'2025-11-01','13:51:00',0,121,'WPRC','WPRC0101','H','N',2.00,400,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 13:52:32','vishal','2025-11-08 09:13:49',0),(6894,2526,0,0,2195,'2025-11-01','13:51:00',0,121,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 13:52:32','','0000-00-00 00:00:00',0),(6895,2526,0,0,2195,'2025-11-02','13:51:00',0,121,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 13:52:32','vishal','2025-11-08 09:07:44',0),(6896,2526,0,0,2195,'2025-11-01','13:51:00',0,121,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 13:52:32','','0000-00-00 00:00:00',0),(6897,2526,0,0,2195,'2025-11-02','13:52:00',0,121,'WPRC','WPRC0089','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 13:52:32','vishal','2025-11-06 11:28:41',0),(6898,2526,0,0,1995,'2025-11-02','17:29:00',1206,116,'ROOM','ROOM0009','H','N',0.50,3200,1600,'P',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','','','','',2526,'H','I',110,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 17:32:14','','0000-00-00 00:00:00',0),(6899,2526,0,0,1995,'2025-11-02','17:29:00',1206,116,'CARE','CARE0005','H','N',0.50,400,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',110,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 17:32:14','','0000-00-00 00:00:00',0),(6900,2526,0,0,1995,'2025-11-02','17:29:00',1206,116,'CARE','CARE0001','H','N',0.50,200,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',110,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 17:32:14','','0000-00-00 00:00:00',0),(6901,2526,0,0,1995,'2025-10-31','17:29:00',1206,116,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,3,0,0,'',0,0,'','','','','',2526,'H','I',110,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 17:32:14','','0000-00-00 00:00:00',0),(6902,2526,0,0,1995,'2025-11-02','17:30:00',1206,116,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',110,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 17:32:14','','0000-00-00 00:00:00',0),(6903,2526,0,0,1995,'2025-10-31','17:31:00',1206,116,'SURG','SURG0014','H','N',1.00,51000,51000,'P',0,0,0.00,0.00,51000.00,51000,3,0,0,'',0,0,'','','','','',2526,'H','I',110,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 17:32:14','riya','2025-11-02 18:23:16',0),(6904,2526,0,0,1995,'2025-10-31','17:31:00',1206,116,'SURG','SURG0015','H','N',1.00,16790,16790,'P',0,0,0.00,0.00,16790.00,16790,3,0,0,'',0,0,'','','','','',2526,'H','I',110,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 17:32:14','riya','2025-11-02 18:23:16',0),(6905,2526,0,0,2214,'2025-11-02','17:35:00',0,122,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',106,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 17:38:52','','0000-00-00 00:00:00',0),(6906,2526,0,0,2214,'2025-11-01','17:35:00',0,122,'SURG','SURG0015','H','N',1.00,7500,7500,'P',0,0,0.00,0.00,7500.00,7500,3,0,0,'',0,0,'','','','','',2526,'H','I',106,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 17:38:52','','0000-00-00 00:00:00',0),(6907,2526,0,0,2214,'2025-11-01','17:37:00',0,122,'SURG','SURG0014','H','N',1.00,22000,22000,'P',0,0,0.00,0.00,22000.00,22000,3,0,0,'',0,0,'','','','','',2526,'H','I',106,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 17:38:52','riya','2025-11-02 17:39:10',0),(6908,2526,0,0,2018,'2025-11-02','10:45:00',0,117,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 07:45:16','riya','2025-11-02 20:17:43',0),(6909,2526,0,0,2018,'2025-11-02','10:45:00',0,117,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 07:45:16','riya','2025-11-02 20:17:43',0),(6910,2526,0,0,2018,'2025-11-02','10:45:00',0,117,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 07:45:16','riya','2025-11-02 20:17:43',0),(6911,2526,0,0,2018,'2025-11-02','10:45:00',0,117,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 07:45:16','riya','2025-11-02 20:17:43',0),(6912,2526,0,0,2018,'2025-11-02','10:45:00',0,117,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 07:45:16','riya','2025-11-02 20:17:43',0),(6913,2526,0,0,2018,'2025-11-01','20:16:00',0,117,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 20:17:43','','0000-00-00 00:00:00',0),(6914,2526,0,0,2018,'2025-11-01','20:16:00',0,117,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 20:17:43','','0000-00-00 00:00:00',0),(6915,2526,0,0,2018,'2025-11-01','20:16:00',0,117,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 20:17:43','','0000-00-00 00:00:00',0),(6916,2526,0,0,2018,'2025-11-01','20:17:00',0,117,'ROOM','ROOM0005','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 20:17:43','','0000-00-00 00:00:00',0),(6917,2526,0,0,2018,'2025-11-01','20:17:00',0,117,'ROOM','ROOM0006','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-02 20:17:43','','0000-00-00 00:00:00',0),(6918,2526,0,0,2227,'2025-11-03','00:00:00',1068,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:05:31','priyanshi','2025-11-02 20:35:31',0),(6919,2526,0,0,2227,'2025-11-03','09:06:35',1068,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',2423,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:06:35','priyanshi','2025-11-03 09:06:35',0),(6920,2526,0,0,2227,'2025-11-03','09:06:35',1068,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',2423,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:06:35','priyanshi','2025-11-03 09:06:35',0),(6921,2526,0,0,2228,'2025-11-03','00:00:00',1750,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:08:33','priyanshi','2025-11-02 20:38:33',0),(6922,2526,0,0,2229,'2025-11-03','00:00:00',1751,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2425,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 09:08:39','reception','2025-11-03 09:10:10',0),(6923,2526,0,0,2228,'2025-11-03','09:10:02',1750,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',2424,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:10:02','priyanshi','2025-11-03 09:10:02',0),(6924,2526,0,0,2228,'2025-11-03','09:10:02',1750,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',2424,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:10:02','priyanshi','2025-11-03 09:10:02',0),(6925,2526,0,0,2230,'2025-11-03','00:00:00',1752,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2426,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 09:11:15','reception','2025-11-03 09:11:44',0),(6926,2526,0,0,2231,'2025-11-03','00:00:00',1753,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:11:40','priyanshi','2025-11-02 20:41:40',0),(6927,2526,0,0,2231,'2025-11-03','09:15:28',1753,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',2427,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:15:28','priyanshi','2025-11-03 09:15:28',0),(6928,2526,0,0,2231,'2025-11-03','09:15:28',1753,0,'WPRC','WPRC0046','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,5,0,0,'',0,0,'','','','','',2526,'H','O',2427,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:15:28','priyanshi','2025-11-03 09:15:28',0),(6929,2526,0,0,2231,'2025-11-03','09:15:28',1753,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',2427,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:15:28','priyanshi','2025-11-03 09:15:28',0),(6930,2526,0,0,2232,'2025-11-03','09:17:20',1307,0,'OPWD','OPWD0007','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2428,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:17:20','priyanshi','2025-11-03 09:17:20',0),(6931,2526,0,0,2233,'2025-11-03','09:18:46',1414,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',2429,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:18:46','priyanshi','2025-11-03 09:18:46',0),(6932,2526,0,0,2233,'2025-11-03','09:18:46',1414,0,'WPRC','WPRC0042','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,4,0,0,'',0,0,'','','','','',2526,'H','O',2429,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:18:46','priyanshi','2025-11-03 09:18:46',0),(6933,2526,0,0,2234,'2025-11-03','09:19:36',1747,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',2430,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:19:36','priyanshi','2025-11-03 09:19:36',0),(6934,2526,0,0,2235,'2025-11-03','00:00:00',1009,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:20:10','priyanshi','2025-11-02 20:50:10',0),(6935,2526,0,0,2236,'2025-11-03','00:00:00',1754,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 09:22:11','reception','2025-11-02 20:52:11',0),(6936,2526,0,0,2234,'2025-11-03','09:24:08',1747,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',2431,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 09:24:08','janvi','2025-11-03 09:24:08',0),(6937,2526,0,0,2235,'2025-11-03','09:24:18',1009,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',2432,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:24:18','priyanshi','2025-11-03 09:24:18',0),(6938,2526,0,0,2235,'2025-11-03','09:24:18',1009,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',2432,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:24:18','priyanshi','2025-11-03 09:24:18',0),(6939,2526,0,0,2235,'2025-11-03','09:24:18',1009,0,'OPWD','OPWD0015','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,5,0,0,'',0,0,'','','','','',2526,'H','O',2432,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:24:18','priyanshi','2025-11-03 09:24:18',0),(6940,2526,0,0,2235,'2025-11-03','09:24:18',1009,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',2432,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:24:18','priyanshi','2025-11-03 09:24:18',0),(6941,2526,0,0,2236,'2025-11-03','09:24:55',1754,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',2433,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 09:24:55','reception','2025-11-03 09:24:55',0),(6942,2526,0,0,2236,'2025-11-03','09:24:55',1754,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',2433,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 09:24:55','reception','2025-11-03 09:24:55',0),(6943,2526,0,0,2237,'2025-11-03','00:00:00',1755,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:26:19','priyanshi','2025-11-02 20:56:19',0),(6944,2526,0,0,2237,'2025-11-03','09:27:09',1755,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',2434,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:27:09','priyanshi','2025-11-03 09:27:09',0),(6945,2526,0,0,2237,'2025-11-03','09:27:09',1755,0,'WPRC','WPRC0042','H','N',4.00,100,400,'P',0,0,0.00,0.00,0.00,400,3,0,0,'',0,0,'','','','','',2526,'H','O',2434,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 09:27:09','priyanshi','2025-11-03 09:27:09',0),(6946,2526,0,0,2238,'2025-11-03','00:00:00',1756,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2435,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 09:50:38','janvi','2025-11-03 09:52:37',0),(6947,2526,0,0,2239,'2025-11-03','00:00:00',1757,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2436,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 09:52:42','reception','2025-11-03 09:53:04',0),(6948,2526,0,0,2240,'2025-11-03','09:54:00',1719,125,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',112,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 09:57:51','vishal','2025-11-04 11:58:06',0),(6949,2526,0,0,2240,'2025-11-03','09:54:00',1719,125,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',112,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 09:57:51','vishal','2025-11-04 11:58:06',0),(6950,2526,0,0,2240,'2025-11-03','09:54:00',1719,125,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',2526,'H','I',112,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 21:27:51','vishal','2025-11-04 11:58:06',0),(6951,2526,0,0,2240,'2025-11-03','09:54:00',1719,125,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',2526,'H','I',112,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 21:27:51','vishal','2025-11-04 11:58:06',0),(6952,2526,0,0,2240,'2025-11-03','09:54:00',1719,125,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',2526,'H','I',112,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 21:27:51','vishal','2025-11-04 11:58:06',0),(6953,2526,0,0,2240,'2025-11-04','09:54:00',1719,125,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',2526,'H','I',112,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 21:27:51','vishal','2025-11-04 11:59:12',0),(6954,2526,0,0,2240,'2025-11-03','09:54:00',1719,125,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',2526,'H','I',112,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 21:27:51','vishal','2025-11-04 11:58:06',0),(6955,2526,0,0,2241,'2025-11-03','00:00:00',1758,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2437,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 10:00:11','reception','2025-11-03 10:00:50',0),(6956,2526,0,0,2242,'2025-11-03','00:00:00',1224,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2438,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-03 10:11:46','manshi','2025-11-03 10:12:32',0),(6957,2526,0,0,2243,'2025-11-03','10:12:50',1203,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2439,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 10:12:50','janvi','2025-11-03 10:12:50',0),(6958,2526,0,0,2244,'2025-11-03','00:00:00',1223,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2440,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 10:15:58','drashti','2025-11-03 10:16:31',0),(6959,2526,0,0,2245,'2025-11-03','00:00:00',1759,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2441,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 10:20:56','reception','2025-11-03 10:21:20',0);
INSERT INTO `service_request` VALUES (6960,2526,0,0,2247,'2025-11-03','00:00:00',1760,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2442,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 10:35:22','janvi','2025-11-03 10:48:27',0),(6961,2526,0,0,2248,'2025-11-03','00:00:00',1761,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2443,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 10:38:28','reception','2025-11-03 10:39:01',0),(6962,2526,0,0,2249,'2025-11-03','00:00:00',1762,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 10:41:16','janvi','2025-11-02 22:11:16',0),(6963,2526,0,0,2250,'2025-11-03','00:00:00',1763,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2463,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 10:42:52','drashti','2025-11-03 11:16:38',0),(6964,2526,0,0,2251,'2025-11-03','00:00:00',1764,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2444,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 10:44:25','reception','2025-11-03 10:44:54',0),(6965,2526,0,0,2252,'2025-11-03','00:00:00',1765,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2446,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 10:48:28','reception','2025-11-03 10:48:47',0),(6966,2526,0,0,2253,'2025-11-03','00:00:00',1766,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2447,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 10:48:48','drashti','2025-11-03 11:12:58',0),(6967,2526,0,0,2254,'2025-11-03','00:00:00',1767,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2448,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 10:51:10','reception','2025-11-03 10:51:22',0),(6968,2526,0,0,2256,'2025-11-03','00:00:00',1768,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2456,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 10:51:39','drashti','2025-11-03 11:06:40',0),(6969,2526,0,0,2257,'2025-11-03','00:00:00',1284,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2449,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 10:56:31','reception','2025-11-03 10:56:45',0),(6970,2526,0,0,2258,'2025-11-03','00:00:00',1769,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2450,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 10:58:01','reception','2025-11-03 12:18:28',0),(6971,2526,0,0,2259,'2025-11-03','00:00:00',1770,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2451,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 10:59:35','reception','2025-11-03 10:59:48',0),(6972,2526,0,0,2260,'2025-11-03','00:00:00',1771,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2452,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 11:00:59','drashti','2025-11-03 11:01:17',0),(6973,2526,0,0,2261,'2025-11-03','00:00:00',1772,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2453,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 11:01:08','reception','2025-11-03 11:01:43',0),(6974,2526,0,0,2262,'2025-11-03','00:00:00',1773,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2454,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 11:02:55','reception','2025-11-03 11:03:30',0),(6975,2526,0,0,2263,'2025-11-03','00:00:00',1774,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2455,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-03 11:05:05','shweta','2025-11-03 11:06:15',0),(6976,2526,0,0,2264,'2025-11-02','23:00:00',1658,126,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',114,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 11:07:01','vishal','2025-11-03 19:33:44',0),(6977,2526,0,0,2264,'2025-11-02','23:00:00',1658,126,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',114,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 11:07:01','vishal','2025-11-03 19:33:44',0),(6978,2526,0,0,2264,'2025-11-02','23:00:00',1658,126,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',114,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 22:37:01','vishal','2025-11-03 19:33:44',0),(6979,2526,0,0,2264,'2025-11-02','23:00:00',1658,126,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',114,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 22:37:01','vishal','2025-11-03 19:33:44',0),(6980,2526,0,0,2264,'2025-11-02','23:00:00',1658,126,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',114,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 22:37:01','vishal','2025-11-03 19:33:44',0),(6981,2526,0,0,2264,'2025-11-04','23:00:00',1658,126,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','207','','','',2526,'H','I',114,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 22:37:01','vishal','2025-11-04 19:08:20',0),(6982,2526,0,0,2264,'2025-11-04','23:00:00',1658,126,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','207','','','',2526,'H','I',114,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 22:37:01','vishal','2025-11-04 19:07:32',0),(6983,2526,0,0,2265,'2025-11-03','00:00:00',1775,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2457,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-03 11:07:03','shweta','2025-11-03 11:08:57',0),(6984,2526,0,0,2266,'2025-11-03','00:00:00',1776,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2458,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 11:08:14','drashti','2025-11-03 11:09:21',0),(6985,2526,0,0,2253,'2025-11-03','11:15:34',1766,0,'PKG','CASE','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2460,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 11:15:34','drashti','2025-11-03 11:15:34',0),(6986,2526,0,0,2267,'2025-11-03','00:00:00',1777,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2461,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-03 11:15:36','shweta','2025-11-03 11:16:01',0),(6987,2526,0,0,2268,'2025-11-03','00:00:00',1778,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2462,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 11:15:38','reception','2025-11-03 11:16:03',0),(6988,2526,0,0,2250,'2025-11-03','11:16:38',1763,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',2463,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 11:16:38','drashti','2025-11-03 11:16:38',0),(6989,2526,0,0,2269,'2025-11-03','00:00:00',1299,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',2464,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 11:18:02','reception','2025-11-03 11:18:15',0),(6990,2526,0,0,2270,'2025-11-03','00:00:00',514,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2481,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-03 11:20:36','manshi','2025-11-03 12:09:49',0),(6991,2526,0,0,2271,'2025-11-03','00:00:00',1779,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2465,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 11:21:02','reception','2025-11-03 11:21:29',0),(6992,2526,0,0,2266,'2025-11-03','11:23:49',1776,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,62,'',0,0,'','','','','',2526,'H','O',2466,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'shweta','2025-11-03 11:23:49','shweta','2025-11-03 11:23:49',0),(6993,2526,0,0,2241,'2025-11-03','11:24:39',1758,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2467,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 11:24:39','reception','2025-11-03 11:24:39',0),(6994,2526,0,0,2241,'2025-11-03','11:24:39',1758,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2467,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 11:24:39','reception','2025-11-03 11:24:39',0),(6995,2526,0,0,2241,'2025-11-03','11:24:39',1758,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2467,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 11:24:39','reception','2025-11-03 11:24:39',0),(6996,2526,0,0,2255,'2025-11-03','11:27:16',1067,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',2468,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-03 11:27:16','shweta','2025-11-03 11:27:16',0),(6997,2526,0,0,2272,'2025-11-03','00:00:00',1780,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2469,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 11:30:13','reception','2025-11-03 11:30:27',0),(6998,2526,0,0,2273,'2025-11-03','00:00:00',1781,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 11:31:03','drashti','2025-11-02 23:01:03',0),(6999,2526,0,0,2274,'2025-11-03','00:00:00',1782,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2470,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 11:34:30','drashti','2025-11-03 11:35:31',0),(7000,2526,0,0,2276,'2025-11-03','00:00:00',1783,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2471,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 11:36:05','reception','2025-11-03 11:36:28',0),(7001,2526,0,0,2277,'2025-11-03','11:47:14',1669,0,'PLAS','PLAS0017','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2472,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 11:47:14','drashti','2025-11-03 11:47:14',0),(7002,2526,0,0,2278,'2025-11-03','00:00:00',1784,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2473,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 11:53:42','reception','2025-11-03 11:54:10',0),(7003,2526,0,0,2245,'2025-11-03','11:56:01',1759,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2474,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 11:56:01','reception','2025-11-03 11:56:01',0),(7004,2526,0,0,2245,'2025-11-03','11:56:01',1759,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2474,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 11:56:01','reception','2025-11-03 11:56:01',0),(7005,2526,0,0,2245,'2025-11-03','11:56:01',1759,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2474,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 11:56:01','reception','2025-11-03 11:56:01',0),(7006,2526,0,0,2279,'2025-11-03','00:00:00',1785,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2475,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 11:58:40','reception','2025-11-03 12:43:54',0),(7007,2526,0,0,1723,'2025-11-02','13:50:00',1368,105,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 23:32:22','vishal','2025-11-03 12:48:06',0),(7008,2526,0,0,1723,'2025-11-02','13:50:00',1368,105,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','411','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 23:32:22','vishal','2025-11-03 12:48:06',0),(7009,2526,0,0,1723,'2025-11-02','13:50:00',1368,105,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 23:32:22','vishal','2025-11-03 12:44:13',0),(7010,2526,0,0,1723,'2025-11-02','13:50:00',1368,105,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','411','','','',2526,'H','I',109,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 23:32:22','vishal','2025-11-03 12:48:06',0),(7011,2526,0,0,1723,'2025-11-02','13:50:00',1368,105,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 23:32:22','vishal','2025-11-03 12:44:13',0),(7012,2526,0,0,2254,'2025-11-03','12:03:00',1767,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2476,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 12:03:00','reception','2025-11-03 12:03:00',0),(7013,2526,0,0,2254,'2025-11-03','12:03:00',1767,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2476,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 12:03:00','reception','2025-11-03 12:03:00',0),(7014,2526,0,0,2254,'2025-11-03','12:03:00',1767,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2476,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 12:03:00','reception','2025-11-03 12:03:00',0),(7015,2526,0,0,2280,'2025-11-03','00:00:00',1786,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2477,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 12:04:10','drashti','2025-11-03 12:22:14',0),(7016,2526,0,0,2281,'2025-11-03','12:05:58',1125,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2478,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-03 12:05:58','manshi','2025-11-03 12:05:58',0),(7017,2526,0,0,2282,'2025-11-03','12:06:23',1419,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',2479,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 12:06:23','reception','2025-11-03 12:06:23',0),(7018,2526,0,0,2283,'2025-11-03','00:00:00',1787,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-03 12:06:58','manshi','2025-11-02 23:36:58',0),(7019,2526,0,0,2284,'2025-11-03','00:00:00',1788,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2480,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 12:07:37','reception','2025-11-03 12:08:10',0),(7020,2526,0,0,2270,'2025-11-03','12:09:49',514,0,'XRY','XRY0428','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2481,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-03 12:09:49','manshi','2025-11-03 12:09:49',0),(7021,2526,0,0,2285,'2025-11-03','00:00:00',1789,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2482,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 12:13:48','reception','2025-11-03 12:14:11',0),(7022,2526,0,0,1941,'2025-11-02','13:56:00',0,113,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',108,17,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 23:44:20','vishal','2025-11-03 12:23:11',0),(7023,2526,0,0,1941,'2025-11-02','13:56:00',0,113,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',108,22,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 23:44:20','vishal','2025-11-03 12:23:39',0),(7024,2526,0,0,1941,'2025-11-02','13:56:00',0,113,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',108,23,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 23:44:20','vishal','2025-11-03 12:23:39',0),(7025,2526,0,0,1941,'2025-11-02','13:56:00',0,113,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',108,24,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 23:44:20','vishal','2025-11-03 12:23:39',0),(7026,2526,0,0,1941,'2025-11-02','13:56:00',0,113,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',108,25,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 23:44:20','vishal','2025-11-03 12:23:39',0),(7027,2526,0,0,2286,'2025-11-03','00:00:00',1790,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2483,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 12:16:42','reception','2025-11-03 12:17:26',0),(7028,2526,0,0,2287,'2025-11-03','00:00:00',1791,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-03 12:17:33','manshi','2025-11-02 23:47:33',0),(7029,2526,0,0,2287,'2025-11-03','12:18:42',1791,0,'XRY','XRY0151','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2485,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-03 12:18:42','manshi','2025-11-03 12:18:42',0),(7030,2526,0,0,2288,'2025-11-03','00:00:00',1792,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2487,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-03 12:23:06','manshi','2025-11-03 12:23:17',0),(7031,2526,0,0,1941,'2025-10-30','12:15:00',0,113,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',108,2,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 12:23:11','vishal','2025-11-03 12:23:39',0),(7032,2526,0,0,1941,'2025-10-30','12:15:00',0,113,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',108,1,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 12:23:11','vishal','2025-11-03 12:23:39',0),(7033,2526,0,0,1941,'2025-10-31','12:15:00',0,113,'USG','USG0093','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',108,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 12:23:11','vishal','2025-11-03 12:23:39',0),(7034,2526,0,0,1941,'2025-11-03','12:22:00',0,113,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','I',108,25,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 12:23:11','','0000-00-00 00:00:00',0),(7035,2526,0,0,1941,'2025-10-30','12:22:00',0,113,'DRC','DRC0021','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,5,0,0,'',0,0,'','','','','',2526,'H','I',108,3,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 12:23:11','vishal','2025-11-03 12:23:39',0),(7036,2526,0,0,1940,'2025-11-02','13:52:00',1532,112,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 23:54:59','vishal','2025-11-03 12:25:40',0),(7037,2526,0,0,1940,'2025-11-02','13:52:00',1532,112,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 23:54:59','vishal','2025-11-03 12:25:40',0),(7038,2526,0,0,1940,'2025-11-02','13:52:00',1532,112,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 23:54:59','vishal','2025-11-03 12:25:40',0),(7039,2526,0,0,1940,'2025-11-02','13:52:00',1532,112,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 23:54:59','vishal','2025-11-03 12:25:40',0),(7040,2526,0,0,1940,'2025-11-02','13:52:00',1532,112,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','407','','','',2526,'H','I',107,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 23:54:59','vishal','2025-11-03 12:25:40',0),(7041,2526,0,0,1940,'2025-10-30','13:52:00',1532,112,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','407','','','',0,'','',0,3,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-02 23:55:42','vishal','2025-11-03 12:29:56',0),(7042,2526,0,0,2289,'2025-11-03','00:00:00',1793,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2488,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-03 12:27:34','shweta','2025-11-03 12:28:39',0),(7043,2526,0,0,2291,'2025-11-03','00:00:00',1794,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2490,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 12:29:30','reception','2025-11-03 12:30:07',0),(7044,2526,0,0,1940,'2025-10-30','12:29:00',1532,112,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',107,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 12:29:56','','0000-00-00 00:00:00',0),(7045,2526,0,0,1940,'2025-10-31','12:29:00',1532,112,'USG','USG0092','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',107,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 12:29:56','','0000-00-00 00:00:00',0),(7046,2526,0,0,2290,'2025-11-03','12:30:00',1162,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2489,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-03 12:30:00','shweta','2025-11-03 12:30:00',0),(7047,2526,0,0,2292,'2025-11-03','00:00:00',1795,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2491,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-03 12:34:18','manshi','2025-11-03 12:34:30',0),(7048,2526,0,0,2293,'2025-11-03','00:00:00',1796,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2492,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 12:34:28','reception','2025-11-03 12:34:58',0),(7049,2526,0,0,2294,'2025-11-03','00:00:00',1797,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2493,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 12:36:47','reception','2025-11-03 12:37:26',0),(7050,2526,0,0,2295,'2025-11-03','00:00:00',1798,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2494,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-03 12:37:16','shweta','2025-11-03 12:38:44',0),(7051,2526,0,0,1723,'2025-11-03','12:41:00',1368,105,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 12:44:13','','0000-00-00 00:00:00',0),(7052,2526,0,0,1723,'2025-11-03','12:43:00',1368,105,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 12:44:13','','0000-00-00 00:00:00',0),(7053,2526,0,0,2279,'2025-11-03','12:44:48',1785,0,'PKG','CASE','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2496,1,300,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 12:44:48','reception','2025-11-03 12:44:48',0),(7054,2526,0,0,2296,'2025-11-03','00:00:00',1799,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2497,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 12:46:08','reception','2025-11-03 12:46:21',0),(7055,2526,0,0,1723,'2025-10-29','12:45:00',1368,105,'SURG','SURG0017','H','N',1.00,30000,30000,'P',0,0,0.00,0.00,30000.00,30000,3,0,0,'',0,0,'','','','','',2526,'H','I',109,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 12:46:19','','0000-00-00 00:00:00',0),(7056,2526,0,0,2297,'2025-11-03','00:00:00',1800,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2498,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 12:52:13','reception','2025-11-03 12:58:48',0),(7057,2526,0,0,2268,'2025-11-03','13:00:59',1778,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2499,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 13:00:59','reception','2025-11-03 13:00:59',0),(7058,2526,0,0,2268,'2025-11-03','13:00:59',1778,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2499,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 13:00:59','reception','2025-11-03 13:00:59',0),(7059,2526,0,0,2268,'2025-11-03','13:00:59',1778,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2499,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 13:00:59','reception','2025-11-03 13:00:59',0),(7060,2526,0,0,2292,'2025-11-03','13:01:36',1795,0,'XRY','XRY0100','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2500,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-03 13:01:36','manshi','2025-11-03 13:01:36',0),(7061,2526,0,0,2298,'2025-11-03','13:00:00',0,127,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',120,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 13:04:41','vishal','2025-11-06 11:22:31',0),(7062,2526,0,0,2298,'2025-11-03','13:00:00',0,127,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',120,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 13:04:41','vishal','2025-11-06 11:22:31',0),(7063,2526,0,0,2298,'2025-11-03','13:00:00',0,127,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',120,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 00:34:41','vishal','2025-11-06 11:22:31',0),(7064,2526,0,0,2298,'2025-11-03','13:00:00',0,127,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',120,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 00:34:41','vishal','2025-11-06 11:22:31',0),(7065,2526,0,0,2298,'2025-11-03','13:00:00',0,127,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',120,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 00:34:41','vishal','2025-11-06 11:22:31',0),(7066,2526,0,0,2298,'2025-11-03','13:00:00',0,127,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','405','','','',2526,'H','I',120,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 00:34:41','vishal','2025-11-06 11:22:31',0),(7067,2526,0,0,2298,'2025-11-03','13:00:00',0,127,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','405','','','',2526,'H','I',120,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 00:34:41','vishal','2025-11-06 11:22:31',0),(7068,2526,0,0,2265,'2025-11-03','13:08:56',1775,0,'WPRC','WPRC0046','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,0.00,4000,3,0,0,'',0,0,'','','','','',2526,'H','O',2501,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 13:08:56','drashti','2025-11-03 13:08:56',0),(7069,2526,0,0,2299,'2025-11-03','00:00:00',1801,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2502,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-03 13:26:19','manshi','2025-11-03 13:29:30',0),(7070,2526,0,0,2299,'2025-11-03','13:33:18',1801,0,'XRY','XRY0449','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2503,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-03 13:33:18','manshi','2025-11-03 13:33:18',0),(7071,2526,0,0,2300,'2025-11-03','00:00:00',1802,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2504,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-03 14:05:14','shweta','2025-11-03 14:05:46',0),(7072,2526,0,0,2294,'2025-11-03','14:18:47',1797,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2505,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 14:18:47','reception','2025-11-03 14:18:47',0),(7073,2526,0,0,2294,'2025-11-03','14:18:47',1797,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',2505,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 14:18:47','reception','2025-11-03 14:18:47',0),(7074,2526,0,0,2301,'2025-11-03','00:00:00',1803,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2506,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 14:27:22','priyanshi','2025-11-03 14:29:02',0),(7075,2526,0,0,2302,'2025-11-03','15:01:22',1288,0,'WPRC','WPRC0046','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,0.00,4000,3,0,0,'',0,0,'','','','','',2526,'H','O',2507,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 15:01:22','priyanshi','2025-11-03 15:01:22',0),(7076,2526,0,0,2303,'2025-11-03','00:00:00',1804,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 15:07:43','priyanshi','2025-11-03 02:37:43',0),(7077,2526,0,0,2303,'2025-11-03','15:10:08',1804,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',2508,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 15:10:08','priyanshi','2025-11-03 15:10:08',0),(7078,2526,0,0,2303,'2025-11-03','15:10:08',1804,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2508,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-03 15:10:08','priyanshi','2025-11-03 15:10:08',0),(7079,2526,0,0,2304,'2025-11-03','00:00:00',1805,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2509,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 16:15:04','reception','2025-11-03 16:15:40',0),(7080,2526,0,0,2305,'2025-11-03','00:00:00',1806,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2510,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 16:21:51','reception','2025-11-03 16:23:33',0),(7081,2526,0,0,2306,'2025-11-03','00:00:00',1807,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',2511,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 16:27:17','reception','2025-11-03 16:27:35',0),(7082,2526,0,0,2307,'2025-11-03','00:00:00',978,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2512,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 16:46:08','reception','2025-11-03 16:46:31',0),(7083,2526,0,0,2308,'2025-11-03','00:00:00',1808,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2513,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 17:03:50','drashti','2025-11-03 17:04:10',0),(7084,2526,0,0,2309,'2025-11-03','00:00:00',1809,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2514,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 17:07:38','reception','2025-11-03 17:08:08',0),(7085,2526,0,0,2310,'2025-11-03','00:00:00',1810,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2515,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 17:08:49','drashti','2025-11-03 17:09:26',0),(7086,2526,0,0,2311,'2025-11-03','00:00:00',1811,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2516,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 17:09:51','reception','2025-11-03 17:12:34',0),(7087,2526,0,0,2312,'2025-11-03','00:00:00',1812,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2517,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 17:14:56','reception','2025-11-03 17:46:22',0),(7088,2526,0,0,2313,'2025-11-03','00:00:00',1813,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2518,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 17:17:23','reception','2025-11-03 17:18:44',0),(7089,2526,0,0,2305,'2025-11-03','17:21:44',1806,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2519,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 17:21:44','reception','2025-11-03 17:21:44',0),(7090,2526,0,0,2305,'2025-11-03','17:21:44',1806,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2519,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 17:21:44','reception','2025-11-03 17:21:44',0),(7091,2526,0,0,2314,'2025-11-03','00:00:00',1814,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2520,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 17:23:08','janvi','2025-11-03 17:24:41',0),(7092,2526,0,0,2308,'2025-11-03','17:26:57',1808,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2521,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 17:26:57','reception','2025-11-03 17:26:57',0),(7093,2526,0,0,2308,'2025-11-03','17:26:57',1808,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2521,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 17:26:57','reception','2025-11-03 17:26:57',0),(7094,2526,0,0,2315,'2025-11-03','00:00:00',1206,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 17:34:03','janvi','2025-11-03 05:04:03',0),(7095,2526,0,0,2316,'2025-11-03','00:00:00',1815,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2522,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 17:44:54','reception','2025-11-03 17:45:45',0),(7096,2526,0,0,2312,'2025-11-03','17:48:26',1812,0,'PKG','CASE','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2524,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 17:48:26','reception','2025-11-03 17:48:26',0),(7097,2526,0,0,2317,'2025-11-03','00:00:00',1816,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2525,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 17:51:39','reception','2025-11-03 17:52:25',0),(7098,2526,0,0,2318,'2025-11-03','17:56:23',1476,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2526,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 17:56:23','janvi','2025-11-03 17:56:23',0),(7099,2526,0,0,2319,'2025-11-03','00:00:00',1817,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2527,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 18:00:34','drashti','2025-11-03 18:02:46',0),(7100,2526,0,0,2320,'2025-11-03','00:00:00',527,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2528,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 18:03:02','reception','2025-11-03 18:03:19',0),(7101,2526,0,0,2321,'2025-11-03','00:00:00',1818,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2529,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 18:03:36','drashti','2025-11-03 18:04:41',0),(7102,2526,0,0,2322,'2025-11-03','00:00:00',1819,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2530,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 18:05:46','reception','2025-11-03 18:06:01',0),(7103,2526,0,0,2323,'2025-11-03','00:00:00',1820,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2531,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 18:07:35','reception','2025-11-03 18:08:37',0),(7104,2526,0,0,2324,'2025-11-03','18:09:57',1483,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2532,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-03 18:09:57','manshi','2025-11-03 18:09:57',0),(7105,2526,0,0,2325,'2025-11-03','00:00:00',1821,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2533,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 18:09:58','reception','2025-11-03 18:10:15',0),(7106,2526,0,0,2326,'2025-11-03','00:00:00',1822,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 18:10:06','janvi','2025-11-03 05:40:06',0),(7107,2526,0,0,2327,'2025-11-03','00:00:00',1823,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2534,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 18:10:32','drashti','2025-11-03 18:12:24',0),(7108,2526,0,0,2328,'2025-11-03','00:00:00',1824,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2535,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 18:12:12','reception','2025-11-03 18:12:32',0),(7109,2526,0,0,2321,'2025-11-03','18:14:04',1818,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2536,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 18:14:04','drashti','2025-11-03 18:14:04',0),(7110,2526,0,0,2319,'2025-11-03','18:14:42',1817,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2537,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 18:14:42','drashti','2025-11-03 18:14:42',0),(7111,2526,0,0,2316,'2025-11-03','18:15:28',1815,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2538,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 18:15:28','reception','2025-11-03 18:15:28',0),(7112,2526,0,0,2316,'2025-11-03','18:15:28',1815,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2538,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 18:15:28','reception','2025-11-03 18:15:28',0),(7113,2526,0,0,2330,'2025-11-03','00:00:00',328,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2539,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 18:17:46','reception','2025-11-03 18:19:17',0),(7114,2526,0,0,2331,'2025-11-03','00:00:00',1825,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2540,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 18:20:08','reception','2025-11-03 18:21:15',0),(7115,2526,0,0,2332,'2025-11-03','00:00:00',1826,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2542,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-03 18:21:37','manshi','2025-11-03 18:51:54',0),(7116,2526,0,0,2326,'2025-11-03','00:00:00',1822,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2541,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-03 18:22:12','shweta','2025-11-03 18:22:21',0),(7117,2526,0,0,2333,'2025-11-03','00:00:00',1827,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2543,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 18:23:30','reception','2025-11-03 18:23:52',0),(7118,2526,0,0,2334,'2025-11-03','00:00:00',1030,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',2544,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 18:25:12','janvi','2025-11-03 18:56:41',0),(7119,2526,0,0,2335,'2025-11-03','00:00:00',1828,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2545,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 18:27:48','janvi','2025-11-03 18:28:38',0),(7120,2526,0,0,2336,'2025-11-03','00:00:00',1829,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2548,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 18:29:29','janvi','2025-11-03 18:32:30',0),(7121,2526,0,0,2337,'2025-11-03','00:00:00',1830,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2547,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 18:30:31','janvi','2025-11-03 18:32:20',0),(7122,2526,0,0,2338,'2025-11-03','00:00:00',1831,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2546,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 18:30:57','reception','2025-11-03 18:31:30',0),(7123,2526,0,0,2339,'2025-11-03','00:00:00',1832,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2549,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 18:33:11','janvi','2025-11-03 18:33:56',0),(7124,2526,0,0,2340,'2025-11-03','00:00:00',983,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2550,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 18:41:12','janvi','2025-11-03 18:42:29',0),(7125,2526,0,0,2341,'2025-11-03','00:00:00',1833,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2561,1,400,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 18:43:35','reception','2025-11-03 19:20:28',0),(7126,2526,0,0,2342,'2025-11-03','00:00:00',1834,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2551,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 18:45:22','reception','2025-11-03 18:46:29',0),(7127,2526,0,0,2331,'2025-11-03','18:49:24',1825,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2552,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 18:49:24','reception','2025-11-03 18:49:24',0),(7128,2526,0,0,2331,'2025-11-03','18:49:24',1825,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2552,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 18:49:24','reception','2025-11-03 18:49:24',0),(7129,2526,0,0,2331,'2025-11-03','18:49:24',1825,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2552,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 18:49:24','reception','2025-11-03 18:49:24',0),(7130,2526,0,0,2343,'2025-11-03','00:00:00',709,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 18:51:36','janvi','2025-11-03 06:21:36',0),(7131,2526,0,0,2343,'2025-11-03','18:53:25',709,0,'OTCG','OTCG0033','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','O',2554,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 18:53:25','janvi','2025-11-03 18:53:25',0),(7132,2526,0,0,2344,'2025-11-03','00:00:00',451,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2556,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 18:59:23','janvi','2025-11-03 18:59:54',0),(7133,2526,0,0,2345,'2025-11-03','00:00:00',1835,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2557,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 19:01:49','janvi','2025-11-03 19:02:24',0),(7134,2526,0,0,2346,'2025-11-03','19:03:37',118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2558,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 19:03:37','janvi','2025-11-03 19:03:37',0),(7135,2526,0,0,2226,'2025-11-03','19:02:00',0,124,'ROOM','ROOM0009','H','N',0.50,2900,1450,'P',0,0,0.00,0.00,1450.00,1450,9999,0,0,'',0,0,'','','','','',2526,'H','I',111,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 19:03:58','vishal','2025-11-03 19:11:08',0),(7136,2526,0,0,2226,'2025-11-03','19:02:00',0,124,'AECO','AECO0008','H','N',0.50,300,150,'P',0,0,0.00,0.00,150.00,150,9999,0,0,'',0,0,'','','','','',2526,'H','I',111,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 19:03:58','vishal','2025-11-03 19:11:08',0),(7137,2526,0,0,2226,'2025-11-03','19:02:00',0,124,'CARE','CARE0001','H','N',0.50,200,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',111,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 19:03:58','vishal','2025-11-03 19:11:08',0),(7138,2526,0,0,2226,'2025-11-03','19:03:00',0,124,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','I',111,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 19:03:58','','0000-00-00 00:00:00',0),(7139,2526,0,0,2226,'2025-11-03','19:03:00',0,124,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','I',111,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 19:03:58','','0000-00-00 00:00:00',0),(7140,2526,0,0,2347,'2025-11-03','00:00:00',1836,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-03 19:05:58','manshi','2025-11-03 06:35:58',0),(7141,2526,0,0,2226,'2025-11-02','19:04:00',0,124,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',111,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 19:08:52','','0000-00-00 00:00:00',0),(7142,2526,0,0,2226,'2025-11-02','19:04:00',0,124,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',111,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 19:08:52','','0000-00-00 00:00:00',0),(7143,2526,0,0,2226,'2025-11-02','19:04:00',0,124,'WPRC','WPRC0090','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',111,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 19:08:52','','0000-00-00 00:00:00',0),(7144,2526,0,0,2226,'2025-11-03','19:08:00',0,124,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,7,0,0,'',0,0,'','','','','',2526,'H','I',111,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 19:08:52','vishal','2025-11-03 19:09:14',0),(7145,2526,0,0,2339,'2025-11-03','19:09:31',1832,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',2559,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 19:09:31','drashti','2025-11-03 19:09:31',0),(7146,2526,0,0,2329,'2025-11-03','19:19:15',1521,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2560,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 19:19:15','janvi','2025-11-03 19:19:15',0),(7147,2526,0,0,2341,'2025-11-03','19:21:28',1833,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2562,1,143,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 19:21:28','reception','2025-11-03 19:21:28',0),(7148,2526,0,0,2341,'2025-11-03','19:21:28',1833,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',2562,2,857,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 19:21:28','reception','2025-11-03 19:21:28',0),(7149,2526,0,0,2348,'2025-11-03','19:24:02',1358,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2563,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 19:24:02','janvi','2025-11-03 19:24:02',0),(7150,2526,0,0,2349,'2025-11-03','19:27:43',1307,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2564,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 19:27:43','janvi','2025-11-03 19:27:43',0),(7151,2526,0,0,2350,'2025-11-03','00:00:00',1837,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-03 19:29:02','drashti','2025-11-03 06:59:02',0),(7152,2526,0,0,2351,'2025-11-03','00:00:00',1838,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2565,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-03 19:30:05','janvi','2025-11-03 19:30:23',0),(7153,2526,0,0,2351,'2025-11-03','19:30:23',1838,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,63,'',0,0,'','','','','',2526,'H','O',2565,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-11-03 19:30:23','janvi','2025-11-03 19:30:23',0),(7154,2526,0,0,2264,'2025-11-02','19:30:00',1658,126,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',114,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 19:33:44','','0000-00-00 00:00:00',0),(7155,2526,0,0,2264,'2025-11-02','19:31:00',1658,126,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',114,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 19:33:44','','0000-00-00 00:00:00',0),(7156,2526,0,0,2264,'2025-11-03','19:31:00',1658,126,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',114,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 19:33:44','','0000-00-00 00:00:00',0),(7157,2526,0,0,2264,'2025-11-03','19:31:00',1658,126,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,5,0,0,'',0,0,'','','','','',2526,'H','I',114,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 19:33:44','','0000-00-00 00:00:00',0),(7158,2526,0,0,2264,'2025-11-03','19:31:00',1658,126,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',114,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 19:33:44','','0000-00-00 00:00:00',0),(7159,2526,0,0,2264,'2025-11-02','19:31:00',1658,126,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',114,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 19:33:44','','0000-00-00 00:00:00',0),(7160,2526,0,0,2264,'2025-11-03','19:32:00',1658,126,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',114,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 19:33:44','','0000-00-00 00:00:00',0),(7161,2526,0,0,2264,'2025-11-02','19:32:00',1658,126,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',114,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 19:33:44','','0000-00-00 00:00:00',0),(7162,2526,0,0,2264,'2025-11-03','19:32:00',1658,126,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',114,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 19:33:44','','0000-00-00 00:00:00',0),(7163,2526,0,0,2264,'2025-11-03','23:00:00',1658,126,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','207','','','',2526,'H','I',114,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 07:03:59','vishal','2025-11-04 19:04:21',0),(7164,2526,0,0,2264,'2025-11-03','23:00:00',1658,126,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','207','','','',2526,'H','I',114,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-03 07:03:59','vishal','2025-11-04 19:04:21',0),(7165,2526,0,0,2352,'2025-11-03','00:00:00',1839,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2566,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-03 19:40:47','manshi','2025-11-03 19:41:20',0),(7166,2526,0,0,2353,'2025-11-03','00:00:00',1840,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2569,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-03 19:48:33','manshi','2025-11-03 19:53:53',0),(7167,2526,0,0,2354,'2025-11-03','00:00:00',1841,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2568,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 19:53:20','reception','2025-11-03 20:15:15',0),(7168,2526,0,0,2352,'2025-11-03','19:53:39',1839,0,'XRY','XRY0052','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',2567,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-03 19:53:39','manshi','2025-11-03 19:53:39',0),(7169,2526,0,0,2354,'2025-11-03','20:18:42',1841,0,'PKG','CASE','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2571,1,500,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-03 20:18:42','reception','2025-11-03 20:18:42',0),(7170,2526,0,0,2355,'2025-11-04','09:09:16',1747,0,'WPRC','WPRC0037','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',2572,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 09:09:16','priyanshi','2025-11-04 09:29:35',0),(7171,2526,0,0,2356,'2025-11-04','00:00:00',1842,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',2573,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 09:10:38','reception','2025-11-04 09:12:56',0),(7172,2526,0,0,2356,'2025-11-04','09:12:56',1842,0,'OPWD','OPWD0010','H','N',1.00,750,750,'P',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',2573,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 09:12:56','reception','2025-11-04 09:12:56',0),(7173,2526,0,0,2355,'2025-11-04','09:26:29',1747,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',2574,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-04 09:26:29','priyanshi','2025-11-04 09:26:29',0),(7174,2526,0,0,2357,'2025-11-04','00:00:00',1843,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2577,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 09:29:40','reception','2025-11-04 09:30:35',0),(7175,2526,0,0,2355,'2025-11-04','09:30:32',1747,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',2576,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-04 09:30:32','priyanshi','2025-11-04 09:30:32',0),(7176,2526,0,0,2358,'2025-11-04','00:00:00',1844,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2578,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 09:32:32','reception','2025-11-04 09:33:28',0),(7177,2526,0,0,2359,'2025-11-04','00:00:00',1845,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2579,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 10:07:55','reception','2025-11-04 10:08:31',0),(7178,2526,0,0,2360,'2025-11-04','00:00:00',1846,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2580,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-04 10:12:03','janvi','2025-11-04 10:12:48',0),(7179,2526,0,0,2361,'2025-11-04','00:00:00',1847,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2582,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 10:19:33','reception','2025-11-04 10:21:09',0),(7180,2526,0,0,2362,'2025-11-04','00:00:00',1848,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2581,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-04 10:19:39','janvi','2025-11-04 10:20:10',0),(7181,2526,0,0,2363,'2025-11-04','00:00:00',629,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2583,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 10:21:48','reception','2025-11-04 10:22:10',0),(7182,2526,0,0,2364,'2025-11-04','00:00:00',1849,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2584,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 10:23:39','reception','2025-11-04 10:23:48',0),(7183,2526,0,0,2365,'2025-11-04','00:00:00',1850,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2585,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 10:24:45','reception','2025-11-04 10:25:26',0),(7184,2526,0,0,2366,'2025-11-04','10:27:04',1552,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',2586,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 10:27:04','reception','2025-11-04 10:27:04',0),(7185,2526,0,0,2367,'2025-11-04','00:00:00',1851,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2587,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 10:33:22','reception','2025-11-04 10:33:51',0),(7186,2526,0,0,2368,'2025-11-04','00:00:00',1852,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2588,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 10:38:21','reception','2025-11-04 10:38:35',0),(7187,2526,0,0,2369,'2025-11-04','00:00:00',1853,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2589,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-04 10:56:49','janvi','2025-11-04 10:57:31',0),(7188,2526,0,0,2370,'2025-11-04','00:00:00',1854,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2590,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 10:57:33','reception','2025-11-04 10:57:49',0),(7189,2526,0,0,2371,'2025-11-04','00:00:00',1855,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2591,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-04 10:57:41','drashti','2025-11-04 10:58:30',0),(7190,2526,0,0,2365,'2025-11-04','11:00:39',1850,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2592,1,63,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:00:39','reception','2025-11-04 11:00:39',0),(7191,2526,0,0,2365,'2025-11-04','11:00:39',1850,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2592,2,279,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:00:39','reception','2025-11-04 11:00:39',0),(7192,2526,0,0,2365,'2025-11-04','11:00:39',1850,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2592,3,279,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:00:39','reception','2025-11-04 11:00:39',0),(7193,2526,0,0,2365,'2025-11-04','11:00:39',1850,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2592,4,279,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:00:39','reception','2025-11-04 11:00:39',0),(7194,2526,0,0,2372,'2025-11-04','00:00:00',1856,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2594,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-04 11:01:13','drashti','2025-11-04 11:04:16',0),(7195,2526,0,0,2373,'2025-11-04','00:00:00',1857,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2593,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:01:51','reception','2025-11-04 11:02:21',0),(7196,2526,0,0,2362,'2025-11-04','11:07:41',1848,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',2595,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-04 11:07:41','drashti','2025-11-04 11:07:41',0),(7197,2526,0,0,2374,'2025-11-04','00:00:00',774,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2598,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:10:37','reception','2025-11-04 11:15:32',0),(7198,2526,0,0,2375,'2025-11-04','00:00:00',1858,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',2607,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-04 11:11:04','manshi','2025-11-04 11:39:28',0),(7199,2526,0,0,2359,'2025-11-04','11:11:28',1845,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2596,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:11:28','reception','2025-11-04 11:11:28',0),(7200,2526,0,0,2359,'2025-11-04','11:11:28',1845,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2596,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:11:28','reception','2025-11-04 11:11:28',0),(7201,2526,0,0,2359,'2025-11-04','11:11:28',1845,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2596,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:11:28','reception','2025-11-04 11:11:28',0),(7202,2526,0,0,2376,'2025-11-04','00:00:00',1859,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2597,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-04 11:13:23','janvi','2025-11-04 11:13:45',0),(7203,2526,0,0,2377,'2025-11-04','00:00:00',1860,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2599,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-04 11:14:13','drashti','2025-11-04 11:17:28',0),(7204,2526,0,0,2378,'2025-11-04','00:00:00',1861,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2600,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:17:28','reception','2025-11-04 11:17:45',0),(7205,2526,0,0,2379,'2025-11-04','00:00:00',1862,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2602,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:21:54','reception','2025-11-04 11:22:44',0),(7206,2526,0,0,2380,'2025-11-04','00:00:00',1863,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',2601,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-04 11:22:23','manshi','2025-11-04 11:22:39',0),(7207,2526,0,0,2381,'2025-11-04','00:00:00',1864,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2603,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:24:29','reception','2025-11-04 11:24:40',0),(7208,2526,0,0,2382,'2025-11-04','11:29:04',1669,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2604,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-04 11:29:04','drashti','2025-11-04 11:29:04',0),(7209,2526,0,0,2373,'2025-11-04','11:31:32',1857,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2605,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:31:32','reception','2025-11-04 11:31:32',0),(7210,2526,0,0,2373,'2025-11-04','11:31:32',1857,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2605,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:31:32','reception','2025-11-04 11:31:32',0),(7211,2526,0,0,2373,'2025-11-04','11:31:32',1857,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2605,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:31:32','reception','2025-11-04 11:31:32',0),(7212,2526,0,0,2383,'2025-11-04','00:00:00',1865,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2606,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-04 11:32:13','manshi','2025-11-04 11:34:20',0),(7213,2526,0,0,2384,'2025-11-04','00:00:00',1866,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2608,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:41:48','reception','2025-11-04 11:42:28',0),(7214,2526,0,0,2385,'2025-11-04','00:00:00',1867,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2609,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:44:37','reception','2025-11-04 11:44:59',0),(7215,2526,0,0,2383,'2025-11-04','11:51:14',1865,0,'XRY','XRY0390','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',2610,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-04 11:51:14','manshi','2025-11-04 11:51:14',0),(7216,2526,0,0,2367,'2025-11-04','11:51:16',1851,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2611,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:51:16','reception','2025-11-04 11:51:16',0),(7217,2526,0,0,2367,'2025-11-04','11:51:16',1851,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2611,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:51:16','reception','2025-11-04 11:51:16',0),(7218,2526,0,0,2367,'2025-11-04','11:51:16',1851,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2611,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:51:16','reception','2025-11-04 11:51:16',0),(7219,2526,0,0,2386,'2025-11-04','11:55:58',1734,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2612,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:55:58','reception','2025-11-04 11:55:58',0),(7220,2526,0,0,2240,'2025-11-03','11:57:00',1719,125,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',112,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 11:58:06','vishal','2025-11-04 11:59:12',0),(7221,2526,0,0,2240,'2025-11-03','11:57:00',1719,125,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',112,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 11:58:06','','0000-00-00 00:00:00',0),(7222,2526,0,0,2240,'2025-11-04','11:57:00',1719,125,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',112,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 11:58:06','','0000-00-00 00:00:00',0),(7223,2526,0,0,2240,'2025-11-04','11:57:00',1719,125,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',112,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 11:58:06','','0000-00-00 00:00:00',0),(7224,2526,0,0,2379,'2025-11-04','11:59:08',1862,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2613,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:59:08','reception','2025-11-04 11:59:08',0),(7225,2526,0,0,2379,'2025-11-04','11:59:08',1862,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2613,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 11:59:08','reception','2025-11-04 11:59:08',0),(7226,2526,0,0,2240,'2025-11-03','11:58:00',1719,125,'SURG','SURG0014','H','N',1.00,9000,9000,'P',0,0,0.00,0.00,9000.00,9000,3,0,0,'',0,0,'','','','','',2526,'H','I',112,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 11:59:12','','0000-00-00 00:00:00',0),(7227,2526,0,0,2240,'2025-11-03','11:58:00',1719,125,'SURG','SURG0015','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','I',112,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 11:59:12','','0000-00-00 00:00:00',0),(7228,2526,0,0,2387,'2025-11-04','00:00:00',1868,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2614,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-04 12:06:18','janvi','2025-11-04 12:07:11',0),(7229,2526,0,0,2388,'2025-11-04','00:00:00',1191,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2615,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 12:14:34','reception','2025-11-04 12:14:55',0),(7230,2526,0,0,2389,'2025-11-04','00:00:00',1869,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2616,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 12:21:43','reception','2025-11-04 12:23:15',0),(7231,2526,0,0,2390,'2025-11-04','00:00:00',1870,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2618,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-04 12:25:44','janvi','2025-11-04 12:27:08',0),(7232,2526,0,0,2384,'2025-11-04','12:26:10',1866,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2617,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 12:26:10','reception','2025-11-04 12:26:10',0),(7233,2526,0,0,2384,'2025-11-04','12:26:10',1866,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2617,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 12:26:10','reception','2025-11-04 12:26:10',0),(7234,2526,0,0,2391,'2025-11-04','00:00:00',1871,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2619,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-04 12:32:26','drashti','2025-11-04 12:33:41',0),(7235,2526,0,0,2392,'2025-11-04','12:00:00',0,128,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',116,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 12:33:11','vishal','2025-11-05 19:57:12',0),(7236,2526,0,0,2392,'2025-11-04','12:00:00',0,128,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',116,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 12:33:11','vishal','2025-11-05 19:57:12',0),(7237,2526,0,0,2392,'2025-11-04','12:00:00',0,128,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',116,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:03:11','vishal','2025-11-05 19:57:12',0),(7238,2526,0,0,2392,'2025-11-04','12:00:00',0,128,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',116,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:03:11','vishal','2025-11-05 19:57:12',0),(7239,2526,0,0,2392,'2025-11-04','12:00:00',0,128,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',116,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:03:11','vishal','2025-11-05 19:57:12',0),(7240,2526,0,0,2392,'2025-11-04','12:00:00',0,128,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','404','','','',2526,'H','I',116,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:03:11','vishal','2025-11-05 19:57:12',0),(7241,2526,0,0,2392,'2025-11-04','12:00:00',0,128,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','404','','','',2526,'H','I',116,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:03:11','vishal','2025-11-05 19:57:12',0),(7242,2526,0,0,2393,'2025-11-04','00:00:00',1872,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2620,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 12:33:31','reception','2025-11-04 12:34:18',0),(7243,2526,0,0,2394,'2025-11-04','00:00:00',1873,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2621,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 12:36:35','reception','2025-11-04 12:36:53',0),(7244,2526,0,0,2393,'2025-11-04','13:06:31',1872,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2622,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 13:06:31','reception','2025-11-04 13:06:31',0),(7245,2526,0,0,2393,'2025-11-04','13:06:31',1872,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2622,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 13:06:31','reception','2025-11-04 13:06:31',0),(7246,2526,0,0,2393,'2025-11-04','13:06:31',1872,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2622,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 13:06:31','reception','2025-11-04 13:06:31',0),(7247,2526,0,0,1711,'2025-11-02','12:30:00',1343,104,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:46','vishal','2025-11-04 17:12:38',0),(7248,2526,0,0,1711,'2025-11-03','12:30:00',1343,104,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:46','vishal','2025-11-04 17:20:33',0),(7249,2526,0,0,1711,'2025-11-04','12:30:00',1343,104,'ROOM','ROOM0009','H','N',0.50,2900,1450,'P',0,0,0.00,0.00,1450.00,1450,9999,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:46','vishal','2025-11-04 17:50:23',0),(7250,2526,0,0,1711,'2025-11-02','12:30:00',1343,104,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:46','vishal','2025-11-04 17:21:25',0),(7251,2526,0,0,1711,'2025-11-03','12:30:00',1343,104,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:46','vishal','2025-11-04 17:21:25',0),(7252,2526,0,0,1711,'2025-11-04','12:30:00',1343,104,'AECO','AECO0008','H','N',0.50,300,150,'P',0,0,0.00,0.00,150.00,150,9999,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:46','vishal','2025-11-04 17:50:23',0),(7253,2526,0,0,1711,'2025-11-02','12:30:00',1343,104,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:46','vishal','2025-11-04 17:12:38',0),(7254,2526,0,0,1711,'2025-11-03','12:30:00',1343,104,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:46','vishal','2025-11-04 17:21:25',0),(7255,2526,0,0,1711,'2025-11-04','12:30:00',1343,104,'CARE','CARE0001','H','N',0.50,200,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:46','vishal','2025-11-04 17:50:23',0),(7256,2526,0,0,1711,'2025-11-02','12:30:00',1343,104,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:46','vishal','2025-11-04 17:12:38',0),(7257,2526,0,0,1711,'2025-11-03','12:30:00',1343,104,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:46','vishal','2025-11-04 17:21:25',0),(7258,2526,0,0,1711,'2025-11-04','12:30:00',1343,104,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:46','vishal','2025-11-04 17:16:09',0),(7259,2526,0,0,1711,'2025-11-02','12:30:00',1343,104,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:46','vishal','2025-11-04 17:16:09',0),(7260,2526,0,0,1711,'2025-11-03','12:30:00',1343,104,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-04 17:21:25',0),(7261,2526,0,0,1711,'2025-11-04','12:30:00',1343,104,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',113,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-04 17:16:09',0),(7262,2526,0,0,2018,'2025-11-03','10:45:00',0,117,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','riya','2025-11-05 09:45:43',0),(7263,2526,0,0,2018,'2025-11-04','10:45:00',0,117,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','riya','2025-11-05 09:45:43',0),(7264,2526,0,0,2018,'2025-11-03','10:45:00',0,117,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','riya','2025-11-05 09:45:43',0),(7265,2526,0,0,2018,'2025-11-04','10:45:00',0,117,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','riya','2025-11-05 09:45:43',0),(7266,2526,0,0,2018,'2025-11-03','10:45:00',0,117,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','riya','2025-11-05 09:45:43',0),(7267,2526,0,0,2018,'2025-11-04','10:45:00',0,117,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','riya','2025-11-05 09:45:43',0),(7268,2526,0,0,2018,'2025-11-03','10:45:00',0,117,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','riya','2025-11-05 09:45:43',0),(7269,2526,0,0,2018,'2025-11-04','10:45:00',0,117,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,36,0,0,'',0,0,'','408','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','riya','2025-11-05 09:45:43',0),(7270,2526,0,0,2018,'2025-11-03','10:45:00',0,117,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,36,0,0,'',0,0,'','408','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','riya','2025-11-05 09:45:43',0),(7271,2526,0,0,2018,'2025-11-04','10:45:00',0,117,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,36,0,0,'',0,0,'','408','','','',2526,'H','I',115,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','riya','2025-11-05 09:45:43',0),(7272,2526,0,0,2135,'2025-11-03','20:45:00',0,120,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-04 20:10:31',0),(7273,2526,0,0,2135,'2025-11-02','20:45:00',0,120,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-04 20:09:05',0),(7274,2526,0,0,2135,'2025-11-03','20:45:00',0,120,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-04 20:09:05',0),(7275,2526,0,0,2135,'2025-11-02','20:45:00',0,120,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-04 20:09:05',0),(7276,2526,0,0,2135,'2025-11-03','20:45:00',0,120,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-04 20:09:05',0),(7277,2526,0,0,2135,'2025-11-02','20:45:00',0,120,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-04 20:09:05',0),(7278,2526,0,0,2135,'2025-11-03','20:45:00',0,120,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-04 20:10:31',0),(7279,2526,0,0,2135,'2025-11-02','20:45:00',0,120,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-04 20:09:05',0),(7280,2526,0,0,2135,'2025-11-03','20:45:00',0,120,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,36,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-04 20:10:31',0),(7281,2526,0,0,2135,'2025-11-02','20:45:00',0,120,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-04 20:09:05',0),(7282,2526,0,0,2195,'2025-11-03','12:00:00',0,121,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','310','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-08 09:13:49',0),(7283,2526,0,0,2195,'2025-11-04','12:00:00',0,121,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-08 09:07:44',0),(7284,2526,0,0,2195,'2025-11-03','12:00:00',0,121,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','310','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-08 09:07:44',0),(7285,2526,0,0,2195,'2025-11-04','12:00:00',0,121,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-08 09:07:44',0),(7286,2526,0,0,2195,'2025-11-03','12:00:00',0,121,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','310','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-08 09:07:44',0),(7287,2526,0,0,2195,'2025-11-04','12:00:00',0,121,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-08 09:07:44',0),(7288,2526,0,0,2195,'2025-11-03','12:00:00',0,121,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','310','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-08 09:13:49',0),(7289,2526,0,0,2195,'2025-11-04','12:00:00',0,121,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,36,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-08 09:07:44',0),(7290,2526,0,0,2195,'2025-11-03','12:00:00',0,121,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,36,0,0,'',0,0,'','310','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-08 09:02:46',0),(7291,2526,0,0,2195,'2025-11-04','12:00:00',0,121,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,36,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-06 11:28:41',0),(7292,2526,0,0,2264,'2025-11-03','23:00:00',1658,126,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',114,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-04 19:04:21',0),(7293,2526,0,0,2264,'2025-11-03','23:00:00',1658,126,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',114,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-04 19:04:21',0),(7294,2526,0,0,2264,'2025-11-03','23:00:00',1658,126,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',114,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-04 19:04:21',0),(7295,2526,0,0,2298,'2025-11-04','13:00:00',0,127,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',120,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-06 11:22:31',0),(7296,2526,0,0,2298,'2025-11-04','13:00:00',0,127,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',120,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-06 11:22:31',0),(7297,2526,0,0,2298,'2025-11-04','13:00:00',0,127,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',120,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-06 11:22:31',0),(7298,2526,0,0,2298,'2025-11-04','13:00:00',0,127,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','405','','','',2526,'H','I',120,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-06 11:22:31',0),(7299,2526,0,0,2298,'2025-11-04','13:00:00',0,127,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','405','','','',2526,'H','I',120,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 00:42:47','vishal','2025-11-06 11:22:31',0),(7300,2526,0,0,2386,'2025-11-04','13:42:31',1734,0,'OETR','OETR0003','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2623,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 13:42:31','reception','2025-11-04 13:42:31',0),(7301,2526,0,0,2395,'2025-11-04','16:15:00',0,129,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',233,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 16:37:02','vishal','2025-11-06 14:19:09',0),(7302,2526,0,0,2395,'2025-11-04','16:15:00',0,129,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',233,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 16:37:02','vishal','2025-11-06 14:19:09',0),(7303,2526,0,0,2395,'2025-11-04','16:15:00',0,129,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',233,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 04:07:02','vishal','2025-11-06 14:19:09',0),(7304,2526,0,0,2395,'2025-11-04','16:15:00',0,129,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',233,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 04:07:02','vishal','2025-11-06 14:19:09',0),(7305,2526,0,0,2395,'2025-11-04','16:15:00',0,129,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',233,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 04:07:02','vishal','2025-11-06 14:19:09',0),(7306,2526,0,0,2395,'2025-11-04','16:15:00',0,129,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','406','','','',2526,'H','I',233,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 04:07:02','vishal','2025-11-06 14:19:09',0),(7307,2526,0,0,2395,'2025-11-04','16:15:00',0,129,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','406','','','',2526,'H','I',233,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 04:07:02','vishal','2025-11-06 14:19:09',0),(7308,2526,0,0,2396,'2025-11-04','16:43:22',1133,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2624,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-04 16:43:22','janvi','2025-11-04 16:43:22',0),(7309,2526,0,0,2397,'2025-11-04','00:00:00',1874,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2625,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 16:49:46','reception','2025-11-04 16:50:46',0),(7310,2526,0,0,2398,'2025-11-04','00:00:00',1875,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2626,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 16:51:28','reception','2025-11-04 16:51:57',0),(7311,2526,0,0,2399,'2025-11-04','16:56:22',1542,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2627,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 16:56:22','reception','2025-11-04 16:56:22',0),(7312,2526,0,0,2401,'2025-11-04','00:00:00',1876,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2628,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 17:04:24','reception','2025-11-04 17:48:19',0),(7313,2526,0,0,2400,'2025-11-04','17:09:01',1867,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2629,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 17:09:01','reception','2025-11-04 17:09:01',0),(7314,2526,0,0,2400,'2025-11-04','17:09:01',1867,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2629,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 17:09:01','reception','2025-11-04 17:09:01',0),(7315,2526,0,0,2400,'2025-11-04','17:09:01',1867,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2629,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 17:09:01','reception','2025-11-04 17:09:01',0),(7316,2526,0,0,2402,'2025-11-04','00:00:00',520,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2630,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 17:11:44','reception','2025-11-04 17:12:09',0),(7317,2526,0,0,1711,'2025-10-29','17:11:00',1343,104,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:12:38','','0000-00-00 00:00:00',0),(7318,2526,0,0,1711,'2025-10-29','17:12:00',1343,104,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:12:38','','0000-00-00 00:00:00',0),(7319,2526,0,0,1711,'2025-10-29','17:12:00',1343,104,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:12:38','','0000-00-00 00:00:00',0),(7320,2526,0,0,1711,'2025-10-28','17:14:00',1343,104,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:16:09','','0000-00-00 00:00:00',0),(7321,2526,0,0,1711,'2025-11-01','17:14:00',1343,104,'DRC','DRC0020','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:16:09','vishal','2025-11-04 17:20:33',0),(7322,2526,0,0,1711,'2025-11-01','17:15:00',1343,104,'DRC','DRC0020','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,38,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:16:09','vishal','2025-11-04 17:20:33',0),(7323,2526,0,0,1711,'2025-10-31','17:16:00',1343,104,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:20:33','vishal','2025-11-04 17:21:25',0),(7324,2526,0,0,1711,'2025-11-01','17:16:00',1343,104,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:20:33','vishal','2025-11-04 17:21:25',0),(7325,2526,0,0,1711,'2025-11-02','17:16:00',1343,104,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:20:33','','0000-00-00 00:00:00',0),(7326,2526,0,0,1711,'2025-11-03','17:16:00',1343,104,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:20:33','','0000-00-00 00:00:00',0),(7327,2526,0,0,1711,'2025-11-04','17:16:00',1343,104,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:20:33','','0000-00-00 00:00:00',0),(7328,2526,0,0,1711,'2025-10-31','17:17:00',1343,104,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:20:33','vishal','2025-11-04 17:21:25',0),(7329,2526,0,0,1711,'2025-11-01','17:18:00',1343,104,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:20:33','vishal','2025-11-04 17:21:25',0),(7330,2526,0,0,1711,'2025-11-02','17:18:00',1343,104,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:20:33','','0000-00-00 00:00:00',0),(7331,2526,0,0,1711,'2025-11-03','17:18:00',1343,104,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:20:33','','0000-00-00 00:00:00',0),(7332,2526,0,0,1711,'2025-11-04','17:19:00',1343,104,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:20:33','','0000-00-00 00:00:00',0),(7333,2526,0,0,1711,'2025-11-01','17:19:00',1343,104,'WPRC','WPRC0083','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:20:33','vishal','2025-11-04 17:21:25',0),(7334,2526,0,0,1711,'2025-11-03','17:19:00',1343,104,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',113,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:20:33','','0000-00-00 00:00:00',0),(7335,2526,0,0,2404,'2025-11-04','00:00:00',1877,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2631,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 17:20:47','reception','2025-11-04 17:21:04',0),(7336,2526,0,0,2405,'2025-11-04','00:00:00',1878,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2632,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 17:35:45','reception','2025-11-04 17:36:11',0),(7337,2526,0,0,2406,'2025-11-04','00:00:00',1879,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2633,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 17:37:52','reception','2025-11-04 17:38:34',0),(7338,2526,0,0,2407,'2025-11-04','00:00:00',1880,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2634,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-04 17:41:17','janvi','2025-11-04 17:42:09',0),(7339,2526,0,0,2408,'2025-11-04','00:00:00',1881,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2636,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 17:41:27','reception','2025-11-04 17:43:40',0),(7340,2526,0,0,2403,'2025-11-04','17:42:43',1288,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2635,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-04 17:42:43','drashti','2025-11-04 17:42:43',0),(7341,2526,0,0,2409,'2025-11-04','00:00:00',1882,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2637,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 17:44:23','reception','2025-11-04 17:44:36',0),(7342,2526,0,0,2401,'2025-11-04','17:49:14',1876,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2639,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 17:49:14','reception','2025-11-04 17:49:14',0),(7343,2526,0,0,1711,'2025-10-28','17:50:00',1343,104,'SURG','SURG0014','H','N',1.00,10200,10200,'P',0,0,0.00,0.00,10200.00,10200,3,0,0,'',0,0,'','','','','',2526,'H','I',113,62,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(7344,2526,0,0,1711,'2025-10-28','17:50:00',1343,104,'SURG','SURG0015','H','N',1.00,3400,3400,'P',0,0,0.00,0.00,3400.00,3400,3,0,0,'',0,0,'','','','','',2526,'H','I',113,63,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 17:51:35','','0000-00-00 00:00:00',0),(7345,2526,0,0,2410,'2025-11-04','00:00:00',1883,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2640,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-04 17:55:42','janvi','2025-11-04 17:56:25',0),(7346,2526,0,0,2411,'2025-11-04','17:57:17',1487,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2641,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 17:57:17','reception','2025-11-04 17:57:17',0),(7347,2526,0,0,2412,'2025-11-04','00:00:00',211,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-04 18:03:43','janvi','2025-11-04 05:33:43',0),(7348,2526,0,0,2413,'2025-11-04','00:00:00',1884,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2642,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-04 18:04:35','drashti','2025-11-04 18:05:12',0),(7349,2526,0,0,2410,'2025-11-04','18:07:43',1883,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,64,'',0,0,'','','','','',2526,'H','O',2643,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-11-04 18:07:43','janvi','2025-11-04 18:07:43',0),(7350,2526,0,0,2414,'2025-11-04','00:00:00',1129,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2644,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 18:09:02','reception','2025-11-04 18:09:20',0),(7351,2526,0,0,2415,'2025-11-04','00:00:00',1049,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2645,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-04 18:14:56','drashti','2025-11-04 18:15:31',0),(7352,2526,0,0,2408,'2025-11-04','18:17:15',1881,0,'NEU1','NEU10015','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',2646,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 18:17:15','reception','2025-11-04 18:17:15',0),(7353,2526,0,0,2416,'2025-11-04','00:00:00',1885,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2648,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 18:19:13','reception','2025-11-04 18:19:35',0),(7354,2526,0,0,2417,'2025-11-04','00:00:00',1302,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2647,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-04 18:19:14','manshi','2025-11-04 18:19:24',0),(7355,2526,0,0,2418,'2025-11-04','00:00:00',1886,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2649,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 18:23:24','reception','2025-11-04 18:23:57',0),(7356,2526,0,0,2419,'2025-11-04','18:27:32',1746,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2650,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-04 18:27:32','janvi','2025-11-04 18:27:32',0),(7357,2526,0,0,2420,'2025-11-04','00:00:00',1887,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2651,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-04 18:28:16','drashti','2025-11-04 18:29:24',0),(7358,2526,0,0,2421,'2025-11-04','00:00:00',1888,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2652,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 18:30:30','reception','2025-11-04 18:31:03',0),(7359,2526,0,0,2422,'2025-11-04','00:00:00',690,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2653,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 18:31:29','reception','2025-11-04 18:31:41',0),(7360,2526,0,0,2423,'2025-11-04','00:00:00',1889,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2654,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-04 18:33:01','janvi','2025-11-04 18:34:50',0),(7361,2526,0,0,2424,'2025-11-04','00:00:00',1890,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2655,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 18:37:49','reception','2025-11-04 18:38:04',0),(7362,2526,0,0,2425,'2025-11-04','00:00:00',1891,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2656,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 18:42:01','reception','2025-11-04 18:44:03',0),(7363,2526,0,0,2426,'2025-11-04','00:00:00',1341,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2657,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-04 18:47:31','manshi','2025-11-04 18:47:42',0),(7364,2526,0,0,2416,'2025-11-04','18:48:23',1885,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2658,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 18:48:23','reception','2025-11-04 18:48:23',0),(7365,2526,0,0,2416,'2025-11-04','18:48:23',1885,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2658,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 18:48:23','reception','2025-11-04 18:48:23',0),(7366,2526,0,0,2416,'2025-11-04','18:48:23',1885,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2658,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 18:48:23','reception','2025-11-04 18:48:23',0),(7367,2526,0,0,2410,'2025-11-04','18:48:38',1883,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',2659,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-04 18:48:38','janvi','2025-11-04 18:48:38',0),(7368,2526,0,0,2420,'2025-11-04','18:49:54',1887,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',2660,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-04 18:49:54','janvi','2025-11-04 18:49:54',0),(7369,2526,0,0,2427,'2025-11-04','00:00:00',862,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2661,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 18:51:01','reception','2025-11-04 18:51:15',0),(7370,2526,0,0,2428,'2025-11-04','00:00:00',1892,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2662,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-04 18:52:23','manshi','2025-11-04 18:52:44',0),(7371,2526,0,0,2429,'2025-11-04','00:00:00',1893,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2663,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-04 18:57:42','drashti','2025-11-04 18:58:05',0),(7372,2526,0,0,2430,'2025-11-04','00:00:00',766,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2664,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 18:57:57','reception','2025-11-04 18:58:21',0),(7373,2526,0,0,2428,'2025-11-04','19:01:07',1892,0,'XRY','XRY0189','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2665,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-04 19:01:07','manshi','2025-11-04 19:01:07',0),(7374,2526,0,0,2431,'2025-11-04','19:04:08',1307,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2666,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-04 19:04:08','janvi','2025-11-04 19:04:08',0),(7375,2526,0,0,2264,'2025-11-04','19:02:00',1658,126,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',114,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 19:04:21','','0000-00-00 00:00:00',0),(7376,2526,0,0,2264,'2025-11-04','19:02:00',1658,126,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',114,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 19:04:21','vishal','2025-11-04 19:05:06',0),(7377,2526,0,0,2432,'2025-11-04','00:00:00',1274,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2667,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-04 19:28:32','drashti','2025-11-04 19:29:50',0),(7378,2526,0,0,2433,'2025-11-04','00:00:00',1894,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2668,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-04 19:37:08','drashti','2025-11-04 19:38:42',0),(7379,2526,0,0,2425,'2025-11-04','19:41:37',1891,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2669,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 19:41:37','reception','2025-11-04 19:41:37',0),(7380,2526,0,0,2425,'2025-11-04','19:41:37',1891,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2669,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 19:41:37','reception','2025-11-04 19:41:37',0),(7381,2526,0,0,2425,'2025-11-04','19:41:37',1891,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2669,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 19:41:37','reception','2025-11-04 19:41:37',0),(7382,2526,0,0,2433,'2025-11-04','19:57:49',1894,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2670,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 19:57:49','reception','2025-11-04 19:57:49',0),(7383,2526,0,0,2433,'2025-11-04','19:57:49',1894,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2670,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 19:57:49','reception','2025-11-04 19:57:49',0),(7384,2526,0,0,2433,'2025-11-04','19:57:49',1894,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2670,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-04 19:57:49','reception','2025-11-04 19:57:49',0),(7385,2526,0,0,2135,'2025-11-03','20:08:00',0,120,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 20:09:05','vishal','2025-11-04 20:10:31',0),(7386,2526,0,0,2135,'2025-11-04','20:08:00',0,120,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 20:09:05','','0000-00-00 00:00:00',0),(7387,2526,0,0,2135,'2025-11-03','20:09:00',0,120,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 20:10:31','','0000-00-00 00:00:00',0),(7388,2526,0,0,2135,'2025-11-04','20:09:00',0,120,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 20:10:31','','0000-00-00 00:00:00',0),(7389,2526,0,0,2135,'2025-11-03','20:09:00',0,120,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,20,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-04 20:10:31','','0000-00-00 00:00:00',0),(7390,2526,0,0,2434,'2025-11-05','09:00:08',1747,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',2671,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 09:00:08','reception','2025-11-05 09:00:08',0),(7391,2526,0,0,2435,'2025-11-05','00:00:00',1415,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 09:01:22','reception','2025-11-04 20:31:22',0),(7392,2526,0,0,2435,'2025-11-05','09:01:47',1415,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',2672,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 09:01:47','reception','2025-11-05 09:01:47',0),(7393,2526,0,0,2436,'2025-11-05','00:00:00',1895,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 09:07:11','reception','2025-11-04 20:37:11',0),(7394,2526,0,0,2436,'2025-11-05','09:08:32',1895,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',2673,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 09:08:32','reception','2025-11-05 09:08:32',0),(7395,2526,0,0,2436,'2025-11-05','09:08:32',1895,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',2673,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 09:08:32','reception','2025-11-05 09:08:32',0),(7396,2526,0,0,2437,'2025-11-05','09:30:00',0,130,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',117,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-05 09:29:10','vishal','2025-11-05 21:06:23',0),(7397,2526,0,0,2437,'2025-11-05','09:30:00',0,130,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',117,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-05 09:29:10','vishal','2025-11-05 21:06:23',0),(7398,2526,0,0,2018,'2025-11-01','09:36:00',0,117,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-05 09:45:43','riya','2025-11-05 10:05:20',0),(7399,2526,0,0,2018,'2025-11-02','09:36:00',0,117,'ROOM','ROOM0008','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-05 09:45:43','','0000-00-00 00:00:00',0),(7400,2526,0,0,2018,'2025-11-03','09:37:00',0,117,'ROOM','ROOM0008','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-05 09:45:43','','0000-00-00 00:00:00',0),(7401,2526,0,0,2018,'2025-11-04','09:37:00',0,117,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-05 09:45:43','','0000-00-00 00:00:00',0),(7402,2526,0,0,2018,'2025-11-05','09:37:00',0,117,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-05 09:45:43','','0000-00-00 00:00:00',0),(7403,2526,0,0,2018,'2025-11-01','09:38:00',0,117,'WPRC','WPRC0100','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,4,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-05 09:45:43','riya','2025-11-05 09:49:41',0),(7404,2526,0,0,2018,'2025-11-01','09:45:00',0,117,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,135,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-05 09:49:41','','0000-00-00 00:00:00',0),(7405,2526,0,0,2018,'2025-11-02','09:48:00',0,117,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','','','','',2526,'H','I',115,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-05 09:49:41','','0000-00-00 00:00:00',0),(7406,2526,0,0,2438,'2025-11-05','00:00:00',1896,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2675,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 09:50:21','drashti','2025-11-05 09:51:10',0),(7407,2526,0,0,2439,'2025-11-05','00:00:00',1897,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2674,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 09:50:36','reception','2025-11-05 09:50:56',0),(7408,2526,0,0,2440,'2025-11-05','00:00:00',591,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2676,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 09:55:01','reception','2025-11-05 09:55:14',0),(7409,2526,0,0,2441,'2025-11-05','00:00:00',1898,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 09:55:09','drashti','2025-11-04 21:25:09',0),(7410,2526,0,0,2442,'2025-11-05','00:00:00',1899,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2677,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 09:55:53','reception','2025-11-05 09:56:34',0),(7411,2526,0,0,2443,'2025-11-05','00:00:00',1900,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2678,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 10:03:15','reception','2025-11-05 10:03:35',0),(7412,2526,0,0,2444,'2025-11-05','00:00:00',1901,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2679,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 10:08:48','reception','2025-11-05 10:09:10',0),(7413,2526,0,0,2445,'2025-11-05','00:00:00',1902,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2680,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 10:16:20','drashti','2025-11-05 10:16:46',0),(7414,2526,0,0,2446,'2025-11-05','00:00:00',470,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2681,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 10:17:43','reception','2025-11-05 10:18:03',0),(7415,2526,0,0,2447,'2025-11-05','10:28:19',1293,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2682,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 10:28:19','janvi','2025-11-05 10:28:19',0),(7416,2526,0,0,2448,'2025-11-05','00:00:00',1903,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2683,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 10:33:46','reception','2025-11-05 10:34:03',0),(7417,2526,0,0,2449,'2025-11-05','00:00:00',1904,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2684,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 10:37:14','janvi','2025-11-05 10:38:37',0),(7418,2526,0,0,2450,'2025-11-05','00:00:00',457,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2685,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 10:43:07','reception','2025-11-05 10:43:26',0),(7419,2526,0,0,2451,'2025-11-05','00:00:00',1905,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2687,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 10:43:39','drashti','2025-11-05 10:44:03',0),(7420,2526,0,0,2450,'2025-11-05','10:44:01',457,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2686,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 10:44:01','reception','2025-11-05 10:44:01',0),(7421,2526,0,0,2452,'2025-11-05','00:00:00',1906,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2688,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 10:45:57','reception','2025-11-05 10:48:44',0),(7422,2526,0,0,2454,'2025-11-05','00:00:00',1907,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2689,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 10:49:57','reception','2025-11-05 10:51:02',0),(7423,2526,0,0,2455,'2025-11-05','00:00:00',693,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2690,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 10:53:29','manshi','2025-11-05 10:54:20',0),(7424,2526,0,0,2456,'2025-11-05','00:00:00',461,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2691,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 10:55:16','reception','2025-11-05 10:56:50',0),(7425,2526,0,0,2457,'2025-11-05','00:00:00',1908,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2692,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 10:58:20','reception','2025-11-05 10:58:43',0),(7426,2526,0,0,2458,'2025-11-05','00:00:00',1909,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2693,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 11:01:35','reception','2025-11-05 11:01:48',0),(7427,2526,0,0,2459,'2025-11-05','00:00:00',1910,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2695,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 11:04:06','reception','2025-11-05 13:01:20',0),(7428,2526,0,0,2460,'2025-11-05','00:00:00',1911,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2694,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 11:04:14','drashti','2025-11-05 11:04:51',0),(7429,2526,0,0,2461,'2025-11-05','00:00:00',1912,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2699,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 11:06:43','reception','2025-11-05 13:36:23',0),(7430,2526,0,0,2442,'2025-11-05','11:11:33',1899,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2696,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 11:11:33','reception','2025-11-05 11:11:33',0),(7431,2526,0,0,2442,'2025-11-05','11:11:33',1899,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2696,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 11:11:33','reception','2025-11-05 11:11:33',0),(7432,2526,0,0,2442,'2025-11-05','11:11:33',1899,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2696,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 11:11:33','reception','2025-11-05 11:11:33',0),(7433,2526,0,0,2455,'2025-11-05','00:00:00',693,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2698,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 11:13:46','janvi','2025-11-05 11:14:00',0),(7434,2526,0,0,2462,'2025-11-05','00:00:00',1913,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2700,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 11:15:08','reception','2025-11-05 11:17:13',0),(7435,2526,0,0,2463,'2025-11-05','00:00:00',1914,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2701,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 11:18:01','reception','2025-11-05 11:18:14',0),(7436,2526,0,0,2449,'2025-11-05','11:19:47',1904,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',2702,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-11-05 11:19:47','janvi','2025-11-05 11:19:47',0),(7437,2526,0,0,2449,'2025-11-05','11:19:47',1904,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,65,'',0,0,'','','','','',2526,'H','O',2702,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-11-05 11:19:47','janvi','2025-11-05 11:19:47',0),(7438,2526,0,0,2464,'2025-11-05','00:00:00',1915,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2703,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 11:19:57','reception','2025-11-05 11:21:05',0),(7439,2526,0,0,2465,'2025-11-05','11:21:20',1574,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2704,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 11:21:20','manshi','2025-11-05 11:21:20',0),(7440,2526,0,0,2444,'2025-11-05','11:22:48',1901,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2705,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 11:22:48','reception','2025-11-05 11:22:48',0),(7441,2526,0,0,2466,'2025-11-05','00:00:00',1916,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2706,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 11:26:06','reception','2025-11-05 11:26:33',0),(7442,2526,0,0,2467,'2025-11-05','00:00:00',1917,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2707,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 11:27:47','janvi','2025-11-05 11:28:22',0),(7443,2526,0,0,2468,'2025-11-05','00:00:00',1918,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2708,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 11:31:31','manshi','2025-11-05 11:32:17',0),(7444,2526,0,0,2469,'2025-11-05','00:00:00',1919,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2709,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 11:31:56','drashti','2025-11-05 11:33:04',0),(7445,2526,0,0,2453,'2025-11-05','11:34:12',1763,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2710,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 11:34:12','drashti','2025-11-05 11:34:12',0),(7446,2526,0,0,2470,'2025-11-05','00:00:00',1920,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2711,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 11:36:09','janvi','2025-11-05 11:36:50',0),(7447,2526,0,0,2471,'2025-11-05','00:00:00',1921,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2712,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 11:36:17','drashti','2025-11-05 11:37:03',0),(7448,2526,0,0,2462,'2025-11-05','11:50:54',1913,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2713,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 11:50:54','reception','2025-11-05 11:50:54',0),(7449,2526,0,0,2462,'2025-11-05','11:50:54',1913,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2713,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 11:50:54','reception','2025-11-05 11:50:54',0),(7450,2526,0,0,2462,'2025-11-05','11:50:54',1913,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2713,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 11:50:54','reception','2025-11-05 11:50:54',0),(7451,2526,0,0,2472,'2025-11-05','00:00:00',1922,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2716,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 11:53:55','janvi','2025-11-05 11:59:00',0),(7452,2526,0,0,2473,'2025-11-05','00:00:00',1923,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2714,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 11:58:19','manshi','2025-11-05 12:11:34',0),(7453,2526,0,0,2474,'2025-11-05','11:58:43',1669,0,'OPWD','OPWD0007','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2715,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 11:58:43','janvi','2025-11-05 11:58:43',0),(7454,2526,0,0,2475,'2025-11-05','00:00:00',1924,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2718,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 12:00:02','drashti','2025-11-05 12:00:50',0),(7455,2526,0,0,2476,'2025-11-05','00:00:00',1925,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2717,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 12:00:19','reception','2025-11-05 12:00:36',0),(7456,2526,0,0,2477,'2025-11-05','00:00:00',1926,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2719,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 12:00:29','janvi','2025-11-05 12:00:52',0),(7457,2526,0,0,2441,'2025-11-05','12:01:52',1898,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',2720,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 12:01:52','drashti','2025-11-05 12:01:52',0),(7458,2526,0,0,2478,'2025-11-05','00:00:00',1927,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2721,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 12:02:12','reception','2025-11-05 12:02:27',0),(7459,2526,0,0,2469,'2025-11-05','12:02:34',1919,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',2722,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 12:02:34','drashti','2025-11-05 12:02:34',0),(7460,2526,0,0,2479,'2025-11-05','00:00:00',1928,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2725,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 12:03:32','manshi','2025-11-05 12:07:37',0),(7461,2526,0,0,2436,'2025-11-05','00:00:00',1895,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OP','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 12:05:08','drashti','2025-11-04 23:35:08',0),(7462,2526,0,0,2480,'2025-11-05','00:00:00',1929,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2723,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 12:05:19','reception','2025-11-05 12:05:36',0),(7463,2526,0,0,2481,'2025-11-05','00:00:00',1930,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2726,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 12:07:01','drashti','2025-11-05 12:07:39',0),(7464,2526,0,0,2482,'2025-11-05','00:00:00',1931,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2724,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 12:07:08','reception','2025-11-05 12:07:22',0),(7465,2526,0,0,2479,'2025-11-05','12:07:37',1928,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',2725,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 12:07:37','manshi','2025-11-05 12:07:37',0),(7466,2526,0,0,2479,'2025-11-05','12:07:37',1928,0,'XRY','XRY0146','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2725,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 12:07:37','manshi','2025-11-05 12:07:37',0),(7467,2526,0,0,2483,'2025-11-05','00:00:00',1276,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2727,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 12:08:40','janvi','2025-11-05 12:09:26',0),(7468,2526,0,0,2135,'2025-11-04','20:45:00',0,120,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','riya','2025-11-05 13:47:40',0),(7469,2526,0,0,2135,'2025-11-04','20:45:00',0,120,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','riya','2025-11-05 13:47:40',0),(7470,2526,0,0,2135,'2025-11-04','20:45:00',0,120,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,36,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','vishal','2025-11-06 11:16:12',0),(7471,2526,0,0,2135,'2025-11-04','20:45:00',0,120,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,36,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','vishal','2025-11-06 11:16:12',0),(7472,2526,0,0,2135,'2025-11-04','20:45:00',0,120,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','riya','2025-11-05 13:47:40',0),(7473,2526,0,0,2195,'2025-11-05','12:00:00',0,121,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','vishal','2025-11-08 09:07:44',0),(7474,2526,0,0,2195,'2025-11-05','12:00:00',0,121,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','vishal','2025-11-08 09:07:44',0),(7475,2526,0,0,2195,'2025-11-05','12:00:00',0,121,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','riya','2025-11-05 13:25:07',0),(7476,2526,0,0,2195,'2025-11-05','12:00:00',0,121,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,36,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','vishal','2025-11-06 11:28:41',0),(7477,2526,0,0,2195,'2025-11-05','12:00:00',0,121,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,36,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','vishal','2025-11-06 11:28:41',0),(7478,2526,0,0,2392,'2025-11-05','12:00:00',0,128,'ROOM','ROOM0009','H','N',0.50,3200,1600,'A',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','404','','','',2526,'H','I',116,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','vishal','2025-11-05 19:57:12',0),(7479,2526,0,0,2392,'2025-11-05','12:00:00',0,128,'AECO','AECO0008','H','N',0.50,400,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',116,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','vishal','2025-11-05 19:57:12',0),(7480,2526,0,0,2392,'2025-11-05','12:00:00',0,128,'CARE','CARE0001','H','N',0.50,200,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','404','','','',2526,'H','I',116,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','vishal','2025-11-05 19:57:12',0),(7481,2526,0,0,2392,'2025-11-05','12:00:00',0,128,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','404','','','',2526,'H','I',116,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','vishal','2025-11-05 19:57:12',0),(7482,2526,0,0,2392,'2025-11-05','12:00:00',0,128,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','404','','','',2526,'H','I',116,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','vishal','2025-11-05 19:58:02',0),(7483,2526,0,0,2437,'2025-11-05','09:30:00',0,130,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','vishal','2025-11-05 21:06:23',0),(7484,2526,0,0,2437,'2025-11-05','09:30:00',0,130,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','vishal','2025-11-05 21:06:23',0),(7485,2526,0,0,2437,'2025-11-05','09:30:00',0,130,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','vishal','2025-11-05 21:06:23',0),(7486,2526,0,0,2437,'2025-11-05','09:30:00',0,130,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','vishal','2025-11-05 21:06:23',0),(7487,2526,0,0,2437,'2025-11-05','09:30:00',0,130,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',117,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-04 23:39:42','vishal','2025-11-05 21:06:23',0),(7488,2526,0,0,2463,'2025-11-05','12:14:57',1914,0,'NEU1','NEU10020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2729,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 12:14:56','reception','2025-11-05 12:14:56',0),(7489,2526,0,0,2463,'2025-11-05','12:14:57',1914,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',2729,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 12:14:56','reception','2025-11-05 12:14:56',0),(7490,2526,0,0,2484,'2025-11-05','00:00:00',1932,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2730,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 12:36:00','reception','2025-11-05 12:37:14',0),(7491,2526,0,0,2485,'2025-11-05','00:00:00',1933,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 12:37:09','janvi','2025-11-05 00:07:09',0),(7492,2526,0,0,2486,'2025-11-05','00:00:00',1934,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2732,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 12:39:28','reception','2025-11-05 12:41:07',0),(7493,2526,0,0,2487,'2025-11-05','00:00:00',1207,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2731,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 12:39:35','manshi','2025-11-05 12:40:50',0),(7494,2526,0,0,2488,'2025-11-05','00:00:00',1935,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2733,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 12:42:02','reception','2025-11-05 12:42:36',0),(7495,2526,0,0,2489,'2025-11-05','00:00:00',1936,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2734,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 12:44:11','manshi','2025-11-05 12:44:24',0),(7496,2526,0,0,2490,'2025-11-05','00:00:00',1937,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 13:00:36','manshi','2025-11-05 00:30:36',0),(7497,2526,0,0,2459,'2025-11-05','13:04:25',1910,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2736,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 13:04:25','reception','2025-11-05 13:04:25',0),(7498,2526,0,0,2491,'2025-11-05','00:00:00',1938,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2737,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 13:21:42','manshi','2025-11-05 13:23:12',0),(7499,2526,0,0,2491,'2025-11-05','13:23:12',1938,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',2737,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 13:23:12','manshi','2025-11-05 13:23:12',0),(7500,2526,0,0,2491,'2025-11-05','13:23:12',1938,0,'XRY','XRY0370','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2737,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 13:23:12','manshi','2025-11-05 13:23:12',0),(7501,2526,0,0,2461,'2025-11-05','13:40:28',1912,0,'PKG','CASE','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2739,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 13:40:28','reception','2025-11-05 13:40:28',0),(7502,2526,0,0,2493,'2025-11-05','00:00:00',1939,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2740,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 13:46:00','reception','2025-11-05 13:46:36',0),(7503,2526,0,0,2135,'2025-11-05','13:46:00',0,120,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-05 13:47:40','','0000-00-00 00:00:00',0),(7504,2526,0,0,2135,'2025-11-05','13:46:00',0,120,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-05 13:47:40','','0000-00-00 00:00:00',0),(7505,2526,0,0,2491,'2025-11-05','13:58:55',1938,0,'WPRC','WPRC0046','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,6,0,0,'',0,0,'','','','','',2526,'H','O',2741,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 13:58:55','manshi','2025-11-05 13:58:55',0),(7506,2526,0,0,2458,'2025-11-05','14:33:30',1909,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2742,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-05 14:33:30','priyanshi','2025-11-05 14:33:30',0),(7507,2526,0,0,2494,'2025-11-05','00:00:00',72,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 16:14:56','reception','2025-11-05 03:44:56',0),(7508,2526,0,0,2495,'2025-11-05','00:00:00',1940,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 16:32:38','reception','2025-11-05 04:02:38',0),(7509,2526,0,0,2496,'2025-11-05','00:00:00',1941,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 16:47:46','reception','2025-11-05 04:17:46',0),(7510,2526,0,0,2497,'2025-11-05','00:00:00',322,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 16:51:34','janvi','2025-11-05 04:21:34',0),(7511,2526,0,0,2498,'2025-11-05','00:00:00',655,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2743,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-05 16:53:43','priyanshi','2025-11-05 16:53:56',0),(7512,2526,0,0,2499,'2025-11-05','00:00:00',1942,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 16:57:16','drashti','2025-11-05 04:27:16',0),(7513,2526,0,0,2500,'2025-11-05','00:00:00',1943,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2744,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 16:57:19','reception','2025-11-05 16:57:48',0),(7514,2526,0,0,2499,'2025-11-05','17:01:35',1942,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',2745,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 17:01:35','drashti','2025-11-05 17:01:35',0),(7515,2526,0,0,2499,'2025-11-05','17:01:35',1942,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,5,0,0,'',0,0,'','','','','',2526,'H','O',2745,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 17:01:35','drashti','2025-11-05 17:01:35',0),(7516,2526,0,0,2499,'2025-11-05','17:01:35',1942,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',2745,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 17:01:35','drashti','2025-11-05 17:01:35',0),(7517,2526,0,0,2499,'2025-11-05','17:01:35',1942,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',2745,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 17:01:35','drashti','2025-11-05 17:01:35',0),(7518,2526,0,0,2501,'2025-11-05','00:00:00',94,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',2746,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 17:04:20','reception','2025-11-05 18:06:51',0),(7519,2526,0,0,2502,'2025-11-05','00:00:00',1944,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 17:09:40','drashti','2025-11-05 04:39:40',0),(7520,2526,0,0,2503,'2025-11-05','00:00:00',1945,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',2748,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 17:11:16','reception','2025-11-05 17:28:03',0),(7521,2526,0,0,2502,'2025-11-05','17:11:24',1944,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',2747,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 17:11:23','drashti','2025-11-05 17:11:23',0),(7522,2526,0,0,2504,'2025-11-05','00:00:00',1946,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2749,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 17:13:55','reception','2025-11-05 17:14:10',0),(7523,2526,0,0,2505,'2025-11-05','00:00:00',1719,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OP','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 17:19:29','drashti','2025-11-05 04:49:29',0),(7524,2526,0,0,2506,'2025-11-05','00:00:00',1947,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2750,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 17:20:16','reception','2025-11-05 17:21:03',0),(7525,2526,0,0,2507,'2025-11-05','00:00:00',1948,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2751,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 17:23:44','reception','2025-11-05 17:24:06',0),(7526,2526,0,0,2503,'2025-11-05','17:29:08',1945,0,'PKG','CASE','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2753,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 17:29:08','reception','2025-11-05 17:29:08',0),(7527,2526,0,0,2502,'2025-11-05','00:00:00',1944,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2754,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 17:29:52','drashti','2025-11-05 17:30:03',0),(7528,2526,0,0,2509,'2025-11-05','00:00:00',1949,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2756,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 17:31:58','drashti','2025-11-05 17:33:23',0),(7529,2526,0,0,2510,'2025-11-05','00:00:00',1950,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2757,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 17:32:16','janvi','2025-11-05 17:33:28',0),(7530,2526,0,0,2508,'2025-11-05','17:32:24',1678,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',2755,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 17:32:24','reception','2025-11-05 17:32:24',0),(7531,2526,0,0,2511,'2025-11-05','00:00:00',1951,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 17:39:20','reception','2025-11-05 05:09:20',0),(7532,2526,0,0,2512,'2025-11-05','00:00:00',1281,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2758,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 17:39:47','drashti','2025-11-05 17:40:26',0),(7533,2526,0,0,2513,'2025-11-05','00:00:00',1952,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2759,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 17:40:27','reception','2025-11-05 17:41:02',0),(7534,2526,0,0,2514,'2025-11-05','00:00:00',47,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2760,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 17:44:35','drashti','2025-11-05 17:45:14',0),(7535,2526,0,0,2515,'2025-11-05','00:00:00',1953,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2761,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 17:46:29','janvi','2025-11-05 17:47:09',0),(7536,2526,0,0,2516,'2025-11-05','00:00:00',1954,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2763,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 17:46:53','reception','2025-11-05 17:50:08',0),(7537,2526,0,0,2517,'2025-11-05','00:00:00',1955,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2762,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 17:48:58','drashti','2025-11-05 17:49:17',0),(7538,2526,0,0,2518,'2025-11-05','17:52:05',1816,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2764,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 17:52:05','reception','2025-11-05 17:52:05',0),(7539,2526,0,0,2518,'2025-11-05','17:52:05',1816,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2764,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 17:52:05','reception','2025-11-05 17:52:05',0),(7540,2526,0,0,2518,'2025-11-05','17:52:05',1816,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2764,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 17:52:05','reception','2025-11-05 17:52:05',0),(7541,2526,0,0,2519,'2025-11-05','00:00:00',1956,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2766,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 17:52:46','drashti','2025-11-05 17:53:59',0),(7542,2526,0,0,2520,'2025-11-05','00:00:00',1957,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 17:52:55','manshi','2025-11-05 05:22:55',0),(7543,2526,0,0,2521,'2025-11-05','00:00:00',1958,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2765,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 17:53:20','janvi','2025-11-05 17:53:53',0),(7544,2526,0,0,2520,'2025-11-05','00:00:00',1957,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',2767,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 17:55:15','manshi','2025-11-05 17:55:34',0),(7545,2526,0,0,2522,'2025-11-05','00:00:00',1959,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2768,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 17:57:52','manshi','2025-11-05 18:32:18',0),(7546,2526,0,0,2523,'2025-11-05','00:00:00',1960,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2779,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 17:58:28','drashti','2025-11-05 18:26:41',0),(7547,2526,0,0,2524,'2025-11-05','00:00:00',1961,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2770,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 17:59:37','janvi','2025-11-05 18:03:14',0),(7548,2526,0,0,2525,'2025-11-05','00:00:00',1962,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2769,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 18:00:51','janvi','2025-11-05 18:01:55',0),(7549,2526,0,0,2527,'2025-11-05','00:00:00',1963,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2771,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 18:05:16','reception','2025-11-05 18:06:23',0),(7550,2526,0,0,2501,'2025-11-05','18:08:23',94,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',2773,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 18:08:23','reception','2025-11-05 18:08:23',0),(7551,2526,0,0,2528,'2025-11-05','00:00:00',1964,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2774,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 18:09:41','janvi','2025-11-05 18:11:06',0),(7552,2526,0,0,2529,'2025-11-05','00:00:00',1965,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2775,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 18:11:12','reception','2025-11-05 18:11:31',0),(7553,2526,0,0,2530,'2025-11-05','00:00:00',441,0,'PKG','CASE','H','N',1.00,1200,1200,'A',0,0,0.00,0.00,1200.00,1200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 18:11:39','manshi','2025-11-05 05:41:39',0),(7554,2526,0,0,2531,'2025-11-05','18:13:02',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2776,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 18:13:02','janvi','2025-11-05 18:13:02',0),(7555,2526,0,0,2509,'2025-11-05','18:16:30',1949,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2777,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 18:16:30','reception','2025-11-05 18:16:30',0),(7556,2526,0,0,2509,'2025-11-05','18:16:30',1949,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2777,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 18:16:30','reception','2025-11-05 18:16:30',0),(7557,2526,0,0,2509,'2025-11-05','18:16:30',1949,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2777,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 18:16:30','reception','2025-11-05 18:16:30',0),(7558,2526,0,0,2505,'2025-11-05','18:25:22',1719,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2778,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 18:25:22','janvi','2025-11-05 18:25:22',0),(7559,2526,0,0,2532,'2025-11-05','00:00:00',1606,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2780,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 18:27:52','janvi','2025-11-05 18:28:59',0),(7560,2526,0,0,2533,'2025-11-05','00:00:00',1966,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2782,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 18:34:15','drashti','2025-11-05 18:35:02',0),(7561,2526,0,0,2534,'2025-11-05','00:00:00',1967,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2783,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 18:36:04','reception','2025-11-05 18:37:22',0),(7562,2526,0,0,2535,'2025-11-05','00:00:00',1968,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2784,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 18:37:49','drashti','2025-11-05 18:39:21',0),(7563,2526,0,0,2536,'2025-11-05','00:00:00',704,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2791,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 18:40:17','manshi','2025-11-05 18:55:31',0),(7564,2526,0,0,2537,'2025-11-05','00:00:00',1969,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2785,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 18:40:22','reception','2025-11-05 18:40:40',0),(7565,2526,0,0,2533,'2025-11-05','18:41:15',1966,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',2786,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 18:41:15','drashti','2025-11-05 18:41:15',0),(7566,2526,0,0,2538,'2025-11-05','18:41:24',221,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2787,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 18:41:24','janvi','2025-11-05 18:41:24',0),(7567,2526,0,0,2539,'2025-11-05','00:00:00',1034,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2788,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 18:44:11','drashti','2025-11-05 18:45:17',0),(7568,2526,0,0,2540,'2025-11-05','00:00:00',1970,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2789,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 18:48:41','reception','2025-11-05 18:48:51',0),(7569,2526,0,0,2541,'2025-11-05','00:00:00',1971,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2790,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 18:52:02','janvi','2025-11-05 19:15:59',0),(7570,2526,0,0,430,'2025-10-13','18:51:00',0,32,'OETR','OETR0004','H','N',1.00,104570,104570,'P',0,0,0.00,0.00,104570.00,104570,9999,0,0,'',0,0,'','','','','',2526,'H','I',119,23,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 18:55:25','vishal','2025-11-06 20:00:11',0),(7571,2526,0,0,2542,'2025-11-05','00:00:00',1000,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2792,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 18:57:06','reception','2025-11-05 18:57:35',0),(7572,2526,0,0,2543,'2025-11-05','00:00:00',1972,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 19:01:40','drashti','2025-11-05 06:31:40',0),(7573,2526,0,0,2543,'2025-11-05','19:02:33',1972,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',2793,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 19:02:33','drashti','2025-11-05 19:02:33',0),(7574,2526,0,0,2544,'2025-11-05','00:00:00',1973,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2794,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 19:03:19','reception','2025-11-05 19:05:24',0),(7575,2526,0,0,2541,'2025-11-05','19:15:00',1971,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',2795,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 19:15:00','janvi','2025-11-05 19:15:00',0),(7576,2526,0,0,2545,'2025-11-05','00:00:00',1974,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2797,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 19:20:39','reception','2025-11-05 19:20:56',0),(7577,2526,0,0,2546,'2025-11-05','00:00:00',1975,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2798,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 19:23:21','reception','2025-11-05 19:36:00',0),(7578,2526,0,0,2527,'2025-11-05','19:27:18',1963,0,'NEU1','NEU10015','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',2799,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 19:27:18','reception','2025-11-05 19:27:18',0),(7579,2526,0,0,2527,'2025-11-05','19:27:18',1963,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',2799,2,500,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 19:27:18','reception','2025-11-05 19:27:18',0),(7580,2526,0,0,2547,'2025-11-05','00:00:00',1976,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2801,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-05 19:37:29','drashti','2025-11-05 19:38:14',0),(7581,2526,0,0,2548,'2025-11-05','00:00:00',109,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2803,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 19:38:25','janvi','2025-11-05 19:40:01',0),(7582,2526,0,0,2549,'2025-11-05','00:00:00',110,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2802,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 19:39:09','janvi','2025-11-05 19:39:53',0),(7583,2526,0,0,2549,'2025-11-05','19:39:53',110,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,66,'',0,0,'','','','','',2526,'H','O',2802,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-11-05 19:39:53','janvi','2025-11-05 19:39:53',0),(7584,2526,0,0,2548,'2025-11-05','19:40:01',109,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,67,'',0,0,'','','','','',2526,'H','O',2803,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'janvi','2025-11-05 19:40:01','janvi','2025-11-05 19:40:01',0),(7585,2526,0,0,2392,'2025-11-04','19:57:00',0,128,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',116,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 19:57:12','vishal','2025-11-05 19:58:02',0),(7586,2526,0,0,2550,'2025-11-05','00:00:00',1977,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 19:57:47','manshi','2025-11-05 07:27:47',0),(7587,2526,0,0,2550,'2025-11-05','20:02:03',1977,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',2804,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-05 20:02:03','manshi','2025-11-05 20:02:03',0),(7588,2526,0,0,2551,'2025-11-05','00:00:00',1978,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2805,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 20:04:04','janvi','2025-11-05 20:04:39',0),(7589,2526,0,0,2552,'2025-11-05','00:00:00',1979,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2806,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-05 20:12:06','janvi','2025-11-05 20:13:22',0),(7590,2526,0,0,2298,'2025-11-05','13:00:00',0,127,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',120,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 07:55:43','vishal','2025-11-06 11:22:31',0),(7591,2526,0,0,2298,'2025-11-05','13:00:00',0,127,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',120,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 07:55:43','vishal','2025-11-06 11:22:31',0),(7592,2526,0,0,2298,'2025-11-05','13:00:00',0,127,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',120,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 07:55:43','vishal','2025-11-06 11:22:31',0),(7593,2526,0,0,2298,'2025-11-05','13:00:00',0,127,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','405','','','',2526,'H','I',120,16,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 07:55:43','vishal','2025-11-06 11:22:31',0),(7594,2526,0,0,2298,'2025-11-05','13:00:00',0,127,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','405','','','',2526,'H','I',120,17,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 07:55:43','vishal','2025-11-06 11:22:31',0),(7595,2526,0,0,2395,'2025-11-05','16:15:00',0,129,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',233,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 07:55:43','vishal','2025-11-06 14:19:09',0),(7596,2526,0,0,2395,'2025-11-05','16:15:00',0,129,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',233,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 07:55:43','vishal','2025-11-06 14:19:09',0),(7597,2526,0,0,2395,'2025-11-05','16:15:00',0,129,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',233,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 07:55:43','vishal','2025-11-06 14:19:09',0),(7598,2526,0,0,2395,'2025-11-05','16:15:00',0,129,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','406','','','',2526,'H','I',233,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 07:55:43','vishal','2025-11-06 14:19:09',0),(7599,2526,0,0,2395,'2025-11-05','16:15:00',0,129,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','406','','','',2526,'H','I',233,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 07:55:43','vishal','2025-11-06 14:19:09',0),(7600,2526,0,0,2526,'2025-11-05','20:27:42',1602,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2807,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-05 20:27:42','reception','2025-11-05 20:27:42',0),(7601,2526,0,0,2437,'2025-11-05','21:01:00',0,130,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',117,4,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 21:06:23','','0000-00-00 00:00:00',0),(7602,2526,0,0,2437,'2025-11-05','21:03:00',0,130,'CARE','CARE0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',117,5,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 21:06:23','','0000-00-00 00:00:00',0),(7603,2526,0,0,2437,'2025-11-05','21:04:00',0,130,'SURG','SURG0014','H','N',1.00,12200,12200,'P',0,0,0.00,0.00,12200.00,12200,3,0,0,'',0,0,'','','','','',2526,'H','I',117,6,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 21:06:23','','0000-00-00 00:00:00',0),(7604,2526,0,0,2437,'2025-11-05','21:04:00',0,130,'SURG','SURG0015','H','N',1.00,4100,4100,'P',0,0,0.00,0.00,4100.00,4100,3,0,0,'',0,0,'','','','','',2526,'H','I',117,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 21:06:23','','0000-00-00 00:00:00',0),(7605,2526,0,0,2553,'2025-11-06','00:00:00',1980,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 08:33:57','reception','2025-11-05 20:03:57',0),(7606,2526,0,0,2553,'2025-11-06','08:36:20',1980,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',2808,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 08:36:20','reception','2025-11-06 08:36:20',0),(7607,2526,0,0,2553,'2025-11-06','08:36:20',1980,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',2808,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 08:36:20','reception','2025-11-06 08:36:20',0),(7608,2526,0,0,2553,'2025-11-06','08:36:20',1980,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',2808,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 08:36:20','reception','2025-11-06 08:36:20',0),(7609,2526,0,0,2554,'2025-11-06','00:00:00',1981,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',2809,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 08:55:09','reception','2025-11-06 09:12:14',0),(7610,2526,0,0,2554,'2025-11-06','09:12:14',1981,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',2809,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 09:12:14','reception','2025-11-06 09:12:14',0),(7611,2526,0,0,2554,'2025-11-06','09:12:14',1981,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',2809,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 09:12:14','reception','2025-11-06 09:12:14',0),(7612,2526,0,0,2555,'2025-11-06','09:20:00',0,131,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',122,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 09:26:01','riya','2025-11-07 13:19:10',0),(7613,2526,0,0,2555,'2025-11-06','09:20:00',0,131,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',122,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 09:26:01','riya','2025-11-07 13:19:10',0),(7614,2526,0,0,2555,'2025-11-06','09:20:00',0,131,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',122,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 20:56:01','riya','2025-11-07 13:19:10',0),(7615,2526,0,0,2555,'2025-11-06','09:20:00',0,131,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',122,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 20:56:01','riya','2025-11-07 13:19:10',0),(7616,2526,0,0,2555,'2025-11-06','09:20:00',0,131,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',122,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 20:56:01','riya','2025-11-07 13:19:10',0),(7617,2526,0,0,2555,'2025-11-06','09:20:00',0,131,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',122,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 20:56:01','riya','2025-11-07 13:19:10',0),(7618,2526,0,0,2555,'2025-11-06','09:20:00',0,131,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',122,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 20:56:01','riya','2025-11-07 13:19:10',0),(7619,2526,0,0,2556,'2025-11-06','09:30:00',0,132,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',236,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 09:37:05','riya','2025-11-07 10:31:16',0),(7620,2526,0,0,2556,'2025-11-06','09:30:00',0,132,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',236,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 09:37:05','riya','2025-11-07 10:31:16',0),(7621,2526,0,0,2556,'2025-11-06','09:30:00',0,132,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',236,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 21:07:05','riya','2025-11-07 10:31:16',0),(7622,2526,0,0,2556,'2025-11-06','09:30:00',0,132,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',236,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 21:07:05','riya','2025-11-07 10:31:16',0),(7623,2526,0,0,2556,'2025-11-06','09:30:00',0,132,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',236,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 21:07:05','riya','2025-11-07 10:31:16',0),(7624,2526,0,0,2556,'2025-11-06','09:30:00',0,132,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',2526,'H','I',236,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 21:07:05','riya','2025-11-07 10:31:16',0),(7625,2526,0,0,2556,'2025-11-06','09:30:00',0,132,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',2526,'H','I',236,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 21:07:05','riya','2025-11-07 10:31:16',0),(7626,2526,0,0,2557,'2025-11-06','00:00:00',1501,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2810,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 09:38:36','reception','2025-11-06 09:39:15',0),(7627,2526,0,0,2558,'2025-11-06','00:00:00',1982,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2811,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 09:48:37','reception','2025-11-06 09:48:52',0),(7628,2526,0,0,2559,'2025-11-06','00:00:00',1983,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2812,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 09:49:59','reception','2025-11-06 09:50:36',0),(7629,2526,0,0,2560,'2025-11-06','00:00:00',1984,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2813,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 10:01:05','reception','2025-11-06 10:02:25',0),(7630,2526,0,0,2561,'2025-11-06','10:00:00',0,133,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',136,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 10:07:28','riya','2025-11-07 10:27:54',0),(7631,2526,0,0,2561,'2025-11-06','10:00:00',0,133,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',136,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 10:07:28','riya','2025-11-07 10:27:54',0),(7632,2526,0,0,2561,'2025-11-06','10:00:00',0,133,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','D',136,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 21:37:28','riya','2025-11-07 10:27:54',0),(7633,2526,0,0,2561,'2025-11-06','10:00:00',0,133,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','D',136,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 21:37:28','riya','2025-11-07 10:27:54',0),(7634,2526,0,0,2561,'2025-11-06','10:00:00',0,133,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','D',136,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 21:37:28','riya','2025-11-07 10:27:54',0),(7635,2526,0,0,2561,'2025-11-06','10:00:00',0,133,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','D',136,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 21:37:28','riya','2025-11-07 10:27:54',0),(7636,2526,0,0,2561,'2025-11-06','10:00:00',0,133,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','D',136,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 21:37:28','riya','2025-11-07 10:27:54',0),(7637,2526,0,0,2562,'2025-11-06','00:00:00',1985,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-06 10:18:15','manshi','2025-11-05 21:48:15',0),(7638,2526,0,0,2563,'2025-11-06','00:00:00',1986,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2814,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-06 10:20:05','priyanshi','2025-11-06 10:20:47',0),(7639,2526,0,0,2562,'2025-11-06','10:21:47',1985,0,'XRY','XRY0372','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',2815,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-06 10:21:47','manshi','2025-11-06 10:21:47',0),(7640,2526,0,0,2564,'2025-11-06','00:00:00',1987,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2816,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 10:25:44','reception','2025-11-06 10:26:13',0),(7641,2526,0,0,2565,'2025-11-06','00:00:00',1988,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2817,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 10:29:50','reception','2025-11-06 10:30:06',0),(7642,2526,0,0,2566,'2025-11-06','00:00:00',1989,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2818,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 10:32:15','reception','2025-11-06 10:32:51',0),(7643,2526,0,0,2567,'2025-11-06','00:00:00',1248,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2819,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 10:48:24','reception','2025-11-06 10:49:31',0),(7644,2526,0,0,2568,'2025-11-06','00:00:00',1245,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 10:53:39','reception','2025-11-05 22:23:39',0),(7645,2526,0,0,2569,'2025-11-06','00:00:00',861,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2820,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-06 11:01:31','priyanshi','2025-11-06 11:01:59',0),(7646,2526,0,0,2570,'2025-11-06','00:00:00',1990,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2821,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 11:01:33','reception','2025-11-06 11:02:16',0),(7647,2526,0,0,2571,'2025-11-06','00:00:00',1991,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2822,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 11:03:33','reception','2025-11-06 11:03:44',0),(7648,2526,0,0,2572,'2025-11-06','00:00:00',1992,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2823,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 11:05:28','reception','2025-11-06 11:05:43',0),(7649,2526,0,0,2569,'2025-11-06','11:12:43',861,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,68,'',0,0,'','','','','',2526,'H','O',2824,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'drashti','2025-11-06 11:12:43','drashti','2025-11-06 11:12:43',0),(7650,2526,0,0,2135,'2025-11-05','20:45:00',0,120,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 22:44:44','vishal','2025-11-06 11:16:12',0),(7651,2526,0,0,2135,'2025-11-05','20:45:00',0,120,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 22:44:44','vishal','2025-11-06 11:16:12',0),(7652,2526,0,0,2135,'2025-11-05','20:45:00',0,120,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,36,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 22:44:44','vishal','2025-11-06 11:16:12',0),(7653,2526,0,0,2135,'2025-11-05','20:45:00',0,120,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,36,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 22:44:44','vishal','2025-11-06 11:16:12',0),(7654,2526,0,0,2135,'2025-11-05','20:45:00',0,120,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-05 22:44:44','vishal','2025-11-06 11:16:12',0),(7655,2526,0,0,2135,'2025-11-06','11:14:00',0,120,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:16:12','riya','2025-11-07 12:15:56',0),(7656,2526,0,0,2573,'2025-11-06','00:00:00',111,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-06 11:17:47','janvi','2025-11-05 22:47:47',0),(7657,2526,0,0,2573,'2025-11-06','11:18:29',111,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',2825,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-06 11:18:29','janvi','2025-11-06 11:18:29',0),(7658,2526,0,0,2574,'2025-11-06','00:00:00',1993,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2826,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 11:18:48','reception','2025-11-06 11:19:30',0),(7659,2526,0,0,2575,'2025-11-06','00:00:00',1994,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2827,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 11:18:54','drashti','2025-11-06 11:19:41',0),(7660,2526,0,0,2576,'2025-11-06','00:00:00',1995,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2828,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 11:22:27','reception','2025-11-06 11:22:43',0),(7661,2526,0,0,2298,'2025-11-03','11:16:00',0,127,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',120,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:22:31','','0000-00-00 00:00:00',0),(7662,2526,0,0,2298,'2025-11-04','11:16:00',0,127,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',120,19,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:22:31','','0000-00-00 00:00:00',0),(7663,2526,0,0,2298,'2025-11-05','11:16:00',0,127,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',120,20,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:22:31','','0000-00-00 00:00:00',0),(7664,2526,0,0,2298,'2025-11-06','11:17:00',0,127,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',120,22,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:22:31','riya','2025-11-07 12:11:35',0),(7665,2526,0,0,2298,'2025-11-05','11:18:00',0,127,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,88,0,0,'',0,0,'','','','','',2526,'H','I',120,22,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:22:31','','0000-00-00 00:00:00',0),(7666,2526,0,0,2577,'2025-11-06','00:00:00',1996,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2829,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 11:25:24','reception','2025-11-06 11:26:03',0),(7667,2526,0,0,2578,'2025-11-06','00:00:00',25,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2830,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 11:27:24','reception','2025-11-06 11:27:44',0),(7668,2526,0,0,2579,'2025-11-06','00:00:00',1997,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2831,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 11:28:02','drashti','2025-11-06 11:28:54',0),(7669,2526,0,0,2195,'2025-11-03','11:23:00',0,121,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:28:41','vishal','2025-11-08 09:07:44',0),(7670,2526,0,0,2195,'2025-11-04','11:23:00',0,121,'ROOM','ROOM0008','H','N',2.00,100,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:28:41','vishal','2025-11-08 09:07:44',0),(7671,2526,0,0,2195,'2025-11-05','11:24:00',0,121,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:28:41','vishal','2025-11-08 09:07:44',0),(7672,2526,0,0,2195,'2025-11-06','11:24:00',0,121,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:28:41','vishal','2025-11-08 09:07:44',0),(7673,2526,0,0,2195,'2025-11-03','11:24:00',0,121,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:28:41','vishal','2025-11-08 09:07:44',0),(7674,2526,0,0,2195,'2025-11-05','11:24:00',0,121,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:28:41','vishal','2025-11-08 09:07:44',0),(7675,2526,0,0,2195,'2025-11-03','11:25:00',0,121,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:28:41','vishal','2025-11-08 09:07:44',0),(7676,2526,0,0,2195,'2025-11-04','11:25:00',0,121,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:28:41','vishal','2025-11-08 09:07:44',0),(7677,2526,0,0,2195,'2025-11-03','11:25:00',0,121,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:28:41','vishal','2025-11-08 09:07:44',0),(7678,2526,0,0,2195,'2025-11-04','11:25:00',0,121,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:28:41','vishal','2025-11-08 09:07:44',0),(7679,2526,0,0,2195,'2025-11-05','11:25:00',0,121,'WPRC','WPRC0089','H','N',4.00,100,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:28:41','vishal','2025-11-08 09:07:44',0),(7680,2526,0,0,2195,'2025-11-06','11:26:00',0,121,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:28:41','vishal','2025-11-08 09:07:44',0),(7681,2526,0,0,2195,'2025-11-05','11:27:00',0,121,'DRC','DRC0020','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 11:28:41','vishal','2025-11-08 09:07:44',0),(7682,2526,0,0,2580,'2025-11-06','00:00:00',1998,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2832,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 11:29:44','reception','2025-11-06 11:31:17',0),(7683,2526,0,0,2562,'2025-11-06','11:33:00',1985,0,'WPRC','WPRC0046','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,6,0,0,'',0,0,'','','','','',2526,'H','O',2833,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-06 11:33:00','manshi','2025-11-06 11:33:00',0),(7684,2526,0,0,2581,'2025-11-06','00:00:00',1528,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',2841,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-06 11:35:36','manshi','2025-11-06 12:02:35',0),(7685,2526,0,0,2582,'2025-11-06','00:00:00',1999,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2834,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 11:37:42','reception','2025-11-06 11:39:41',0),(7686,2526,0,0,2583,'2025-11-06','00:00:00',2000,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2835,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 11:39:13','drashti','2025-11-06 11:39:43',0),(7687,2526,0,0,2584,'2025-11-06','00:00:00',499,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2836,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 11:41:15','reception','2025-11-06 11:41:44',0),(7688,2526,0,0,2571,'2025-11-06','11:48:50',1991,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2837,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 11:48:50','reception','2025-11-06 11:48:50',0),(7689,2526,0,0,2571,'2025-11-06','11:48:50',1991,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2837,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 11:48:50','reception','2025-11-06 11:48:50',0),(7690,2526,0,0,2571,'2025-11-06','11:48:50',1991,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2837,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 11:48:50','reception','2025-11-06 11:48:50',0),(7691,2526,0,0,2570,'2025-11-06','11:52:49',1990,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2838,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 11:52:49','reception','2025-11-06 11:52:49',0),(7692,2526,0,0,2570,'2025-11-06','11:52:49',1990,0,'NEU1','NEU10016','H','N',1.00,2700,2700,'P',0,0,0.00,0.00,0.00,2700,9999,0,0,'',0,0,'','','','','',2526,'H','O',2838,2,169,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 11:52:49','reception','2025-11-06 11:52:49',0),(7693,2526,0,0,2585,'2025-11-06','00:00:00',2001,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2839,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 11:54:54','reception','2025-11-06 11:55:11',0),(7694,2526,0,0,2586,'2025-11-06','00:00:00',2002,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2840,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 11:58:56','drashti','2025-11-06 11:59:32',0),(7695,2526,0,0,2587,'2025-11-06','00:00:00',2003,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2842,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 12:02:19','reception','2025-11-06 12:02:47',0),(7696,2526,0,0,2588,'2025-11-06','00:00:00',2004,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2843,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 12:04:30','reception','2025-11-06 12:04:55',0),(7697,2526,0,0,2590,'2025-11-06','00:00:00',2005,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2844,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 12:16:54','reception','2025-11-06 12:17:21',0),(7698,2526,0,0,2589,'2025-11-06','12:18:31',1974,0,'WPRC','WPRC0046','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,0.00,4000,3,0,0,'',0,0,'','','','','',2526,'H','O',2845,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 12:18:31','drashti','2025-11-06 12:18:31',0),(7699,2526,0,0,2572,'2025-11-06','12:36:52',1992,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',2846,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 12:36:52','reception','2025-11-06 12:36:52',0),(7700,2526,0,0,2592,'2025-11-06','00:00:00',2006,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2847,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 12:37:10','drashti','2025-11-06 12:38:02',0),(7701,2526,0,0,2593,'2025-11-06','00:00:00',2007,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2848,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 12:40:42','drashti','2025-11-06 12:43:15',0),(7702,2526,0,0,2591,'2025-11-06','12:43:49',1978,0,'WPRC','WPRC0046','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,0.00,5000,3,0,0,'',0,0,'','','','','',2526,'H','O',2849,1,2000,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-06 12:43:49','janvi','2025-11-06 12:43:49',0),(7703,2526,0,0,2594,'2025-11-06','00:00:00',838,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2850,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 12:47:11','reception','2025-11-06 12:47:26',0),(7704,2526,0,0,2595,'2025-11-06','00:00:00',2008,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2851,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 12:54:32','reception','2025-11-06 12:54:49',0),(7705,2526,0,0,2596,'2025-11-06','00:00:00',2009,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2852,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-06 12:55:38','janvi','2025-11-06 12:56:26',0),(7706,2526,0,0,2574,'2025-11-06','13:01:53',1993,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2853,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 13:01:53','reception','2025-11-06 13:01:53',0),(7707,2526,0,0,2574,'2025-11-06','13:01:53',1993,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2853,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 13:01:53','reception','2025-11-06 13:01:53',0),(7708,2526,0,0,2574,'2025-11-06','13:01:53',1993,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2853,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 13:01:53','reception','2025-11-06 13:01:53',0),(7709,2526,0,0,2577,'2025-11-06','13:12:37',1996,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2854,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 13:12:37','reception','2025-11-06 13:12:37',0),(7710,2526,0,0,2577,'2025-11-06','13:12:37',1996,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2854,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 13:12:37','reception','2025-11-06 13:12:37',0),(7711,2526,0,0,2577,'2025-11-06','13:12:37',1996,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2854,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 13:12:37','reception','2025-11-06 13:12:37',0),(7712,2526,0,0,2597,'2025-11-06','00:00:00',2010,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2855,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 13:14:02','reception','2025-11-06 13:14:35',0),(7713,2526,0,0,2598,'2025-11-06','00:00:00',2011,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2856,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 13:14:09','drashti','2025-11-06 13:14:47',0),(7714,2526,0,0,2599,'2025-11-06','13:00:00',0,134,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',256,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 13:17:15','riya','2025-11-07 15:33:11',0),(7715,2526,0,0,2599,'2025-11-06','13:00:00',0,134,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',256,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 13:17:15','riya','2025-11-07 15:33:11',0),(7716,2526,0,0,2599,'2025-11-06','13:00:00',0,134,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',256,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 00:47:15','riya','2025-11-07 15:33:11',0),(7717,2526,0,0,2599,'2025-11-06','13:00:00',0,134,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',256,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 00:47:15','riya','2025-11-07 15:33:11',0),(7718,2526,0,0,2599,'2025-11-06','13:00:00',0,134,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',256,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 00:47:15','riya','2025-11-07 15:33:11',0),(7719,2526,0,0,2599,'2025-11-06','13:00:00',0,134,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','406','','','',2526,'H','I',256,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 00:47:15','riya','2025-11-07 15:33:11',0),(7720,2526,0,0,2599,'2025-11-06','13:00:00',0,134,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','406','','','',2526,'H','I',256,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 00:47:15','riya','2025-11-07 15:33:11',0),(7721,2526,0,0,2195,'2025-11-06','12:00:00',0,121,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'drjayant','2025-11-06 00:58:55','riya','2025-11-07 14:18:39',0),(7722,2526,0,0,2195,'2025-11-06','12:00:00',0,121,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'drjayant','2025-11-06 00:58:55','riya','2025-11-07 14:18:39',0),(7723,2526,0,0,2195,'2025-11-06','12:00:00',0,121,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,36,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'drjayant','2025-11-06 00:58:55','vishal','2025-11-08 09:02:46',0),(7724,2526,0,0,2195,'2025-11-06','12:00:00',0,121,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,36,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'drjayant','2025-11-06 00:58:55','vishal','2025-11-08 09:02:46',0),(7725,2526,0,0,2195,'2025-11-06','12:00:00',0,121,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'drjayant','2025-11-06 00:58:55','riya','2025-11-07 14:18:39',0),(7726,2526,0,0,2597,'2025-11-06','13:47:05',2010,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2857,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 13:47:05','reception','2025-11-06 13:47:05',0),(7727,2526,0,0,2597,'2025-11-06','13:47:05',2010,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',2857,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 13:47:05','reception','2025-11-06 13:47:05',0),(7728,2526,0,0,2600,'2025-11-06','13:57:39',1584,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2858,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 13:57:39','drashti','2025-11-06 13:57:39',0),(7729,2526,0,0,2601,'2025-11-06','14:05:35',1332,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2859,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-06 14:05:35','priyanshi','2025-11-06 14:05:35',0),(7730,2526,0,0,2395,'2025-11-06','14:16:00',0,129,'ROOM','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','','','','',2526,'H','I',233,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 14:19:09','vishal','2025-11-08 14:39:25',0),(7731,2526,0,0,2395,'2025-11-04','14:23:00',0,129,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',233,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 14:26:37','','0000-00-00 00:00:00',0),(7732,2526,0,0,2395,'2025-11-04','14:23:00',0,129,'XRY','XRY0045','H','N',2.00,1000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 14:26:37','vishal','2025-11-08 14:39:25',0),(7733,2526,0,0,2395,'2025-11-04','14:25:00',0,129,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',233,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 14:26:37','','0000-00-00 00:00:00',0),(7734,2526,0,0,2602,'2025-11-06','15:00:00',0,135,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',124,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 15:10:23','riya','2025-11-07 10:05:14',0),(7735,2526,0,0,2602,'2025-11-06','15:00:00',0,135,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',124,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 15:10:23','riya','2025-11-07 10:05:14',0),(7736,2526,0,0,2602,'2025-11-06','15:00:00',0,135,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',124,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 02:40:23','riya','2025-11-07 10:05:14',0),(7737,2526,0,0,2602,'2025-11-06','15:00:00',0,135,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',124,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 02:40:23','riya','2025-11-07 10:05:14',0),(7738,2526,0,0,2602,'2025-11-06','15:00:00',0,135,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',124,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 02:40:23','riya','2025-11-07 10:05:14',0),(7739,2526,0,0,2602,'2025-11-06','15:00:00',0,135,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 02:40:23','riya','2025-11-07 10:05:14',0),(7740,2526,0,0,2602,'2025-11-06','15:00:00',0,135,'DRC','DRC0019','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','305','','','',2526,'H','I',124,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 02:40:23','riya','2025-11-07 10:05:14',0),(7741,2526,0,0,2603,'2025-11-06','00:00:00',2012,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2860,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 16:10:01','reception','2025-11-06 16:10:25',0),(7742,2526,0,0,2604,'2025-11-06','00:00:00',1368,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2894,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-06 16:27:07','drashti','2025-11-06 18:54:45',0),(7743,2526,0,0,2605,'2025-11-06','00:00:00',2013,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2861,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-06 16:31:31','janvi','2025-11-06 16:33:11',0),(7744,2526,0,0,2607,'2025-11-06','00:00:00',2014,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2862,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 16:55:08','reception','2025-11-18 17:59:31',0),(7745,2526,0,0,2608,'2025-11-06','00:00:00',1285,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2863,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 16:59:37','reception','2025-11-06 17:00:08',0),(7746,2526,0,0,2610,'2025-11-06','17:17:57',1973,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2864,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 17:17:57','reception','2025-11-06 17:17:57',0),(7747,2526,0,0,2610,'2025-11-06','17:17:57',1973,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2864,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 17:17:57','reception','2025-11-06 17:17:57',0),(7748,2526,0,0,2610,'2025-11-06','17:17:57',1973,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2864,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 17:17:57','reception','2025-11-06 17:17:57',0),(7749,2526,0,0,2611,'2025-11-06','00:00:00',2015,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2865,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 17:19:50','drashti','2025-11-06 17:21:03',0),(7750,2526,0,0,2603,'2025-11-06','17:21:18',2012,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2866,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 17:21:18','reception','2025-11-06 17:21:18',0),(7751,2526,0,0,2603,'2025-11-06','17:21:18',2012,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2866,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 17:21:18','reception','2025-11-06 17:21:18',0),(7752,2526,0,0,2603,'2025-11-06','17:21:18',2012,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2866,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 17:21:18','reception','2025-11-06 17:21:18',0),(7753,2526,0,0,2612,'2025-11-06','00:00:00',2016,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2867,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 17:28:15','reception','2025-11-06 17:28:40',0),(7754,2526,0,0,2613,'2025-11-06','00:00:00',2017,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2868,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 17:36:21','reception','2025-11-06 17:37:04',0),(7755,2526,0,0,2609,'2025-11-06','17:38:00',1203,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2869,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-06 17:38:00','janvi','2025-11-06 17:38:00',0),(7756,2526,0,0,2614,'2025-11-06','00:00:00',865,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',2870,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 17:42:20','reception','2025-11-06 17:42:37',0),(7757,2526,0,0,2615,'2025-11-06','17:47:22',1669,0,'OPWD','OPWD0007','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2871,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 17:47:22','drashti','2025-11-06 17:47:22',0),(7758,2526,0,0,2616,'2025-11-06','00:00:00',2018,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2872,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-06 17:47:33','janvi','2025-11-06 17:48:58',0),(7759,2526,0,0,2617,'2025-11-06','00:00:00',2019,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2873,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 17:49:46','drashti','2025-11-06 17:51:22',0),(7760,2526,0,0,2618,'2025-11-06','00:00:00',2020,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2874,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 17:51:59','reception','2025-11-06 17:52:56',0),(7761,2526,0,0,2619,'2025-11-06','00:00:00',2021,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2875,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 17:53:28','drashti','2025-11-06 17:53:44',0),(7762,2526,0,0,2611,'2025-11-06','17:55:24',2015,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2876,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 17:55:24','reception','2025-11-06 17:55:24',0),(7763,2526,0,0,2611,'2025-11-06','17:55:24',2015,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2876,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 17:55:24','reception','2025-11-06 17:55:24',0),(7764,2526,0,0,2611,'2025-11-06','17:55:24',2015,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2876,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 17:55:24','reception','2025-11-06 17:55:24',0),(7765,2526,0,0,2620,'2025-11-06','17:59:03',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2877,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-06 17:59:03','janvi','2025-11-06 17:59:03',0),(7766,2526,0,0,2617,'2025-11-06','18:00:36',2019,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',2878,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 18:00:36','drashti','2025-11-06 18:00:36',0),(7767,2526,0,0,2621,'2025-11-06','00:00:00',2022,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2879,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 18:02:51','drashti','2025-11-06 18:03:30',0),(7768,2526,0,0,2618,'2025-11-06','18:07:12',2020,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',2880,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-06 18:07:12','janvi','2025-11-06 18:07:12',0),(7769,2526,0,0,2613,'2025-11-06','18:12:20',2017,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2881,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 18:12:20','reception','2025-11-06 18:12:20',0),(7770,2526,0,0,2613,'2025-11-06','18:12:20',2017,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2881,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 18:12:20','reception','2025-11-06 18:12:20',0),(7771,2526,0,0,2622,'2025-11-06','00:00:00',2023,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2882,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 18:20:39','drashti','2025-11-06 18:21:17',0),(7772,2526,0,0,2623,'2025-11-06','00:00:00',2024,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-06 18:21:20','manshi','2025-11-06 05:51:20',0),(7773,2526,0,0,2624,'2025-11-06','18:00:00',0,136,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',126,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 18:22:07','riya','2025-11-07 10:24:07',0),(7774,2526,0,0,2624,'2025-11-06','18:00:00',0,136,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',126,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 18:22:07','riya','2025-11-07 10:24:07',0),(7775,2526,0,0,2624,'2025-11-06','18:00:00',0,136,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',0,'','',0,3,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 05:52:07','riya','2025-11-09 12:06:12',0),(7776,2526,0,0,2624,'2025-11-06','18:00:00',0,136,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',0,'','',0,4,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 05:52:07','riya','2025-11-09 12:06:12',0),(7777,2526,0,0,2624,'2025-11-06','18:00:00',0,136,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',0,'','',0,5,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 05:52:07','riya','2025-11-09 12:06:12',0),(7778,2526,0,0,2624,'2025-11-06','18:00:00',0,136,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 05:52:07','riya','2025-11-07 15:46:33',0),(7779,2526,0,0,2624,'2025-11-06','18:00:00',0,136,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 05:52:07','riya','2025-11-09 12:09:57',0),(7780,2526,0,0,2625,'2025-11-06','00:00:00',2025,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2883,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 18:23:41','drashti','2025-11-06 18:24:21',0),(7781,2526,0,0,2626,'2025-11-06','00:00:00',2026,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2885,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 18:26:09','drashti','2025-11-06 18:27:31',0),(7782,2526,0,0,2627,'2025-11-06','00:00:00',2027,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2884,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 18:26:17','reception','2025-11-06 18:26:51',0),(7783,2526,0,0,2628,'2025-11-06','00:00:00',2028,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2886,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 18:29:58','drashti','2025-11-06 18:31:43',0),(7784,2526,0,0,2629,'2025-11-06','00:00:00',2029,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2887,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 18:36:49','reception','2025-11-06 18:37:05',0),(7785,2526,0,0,2630,'2025-11-06','00:00:00',2030,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2898,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-06 18:40:03','manshi','2025-11-06 19:13:31',0),(7786,2526,0,0,2631,'2025-11-06','00:00:00',811,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2888,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 18:42:13','drashti','2025-11-06 18:42:32',0),(7787,2526,0,0,2632,'2025-11-06','00:00:00',1719,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OP','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-06 18:47:52','janvi','2025-11-06 06:17:52',0),(7788,2526,0,0,2632,'2025-11-06','18:48:13',1719,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2889,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-06 18:48:13','janvi','2025-11-06 18:48:13',0),(7789,2526,0,0,2634,'2025-11-06','00:00:00',2031,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2891,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 18:49:07','reception','2025-11-06 18:49:46',0),(7790,2526,0,0,2633,'2025-11-06','18:49:15',1476,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2890,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-06 18:49:15','janvi','2025-11-06 18:49:15',0),(7791,2526,0,0,2635,'2025-11-06','18:50:46',1521,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2892,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-06 18:50:46','janvi','2025-11-06 18:50:46',0),(7792,2526,0,0,2636,'2025-11-06','00:00:00',2032,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2893,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 18:52:02','reception','2025-11-06 18:52:18',0),(7793,2526,0,0,2638,'2025-11-06','00:00:00',2033,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2895,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-06 18:55:53','drashti','2025-11-06 18:56:13',0),(7794,2526,0,0,2637,'2025-11-06','18:59:12',1775,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2896,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-06 18:59:12','janvi','2025-11-06 18:59:12',0),(7795,2526,0,0,2639,'2025-11-06','00:00:00',2034,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2897,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-06 18:59:49','reception','2025-11-06 19:00:17',0),(7796,2526,0,0,2640,'2025-09-28','09:57:00',0,137,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',118,25,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 19:15:31','vishal','2025-11-06 19:25:14',0),(7797,2526,0,0,2640,'2025-09-28','09:57:00',0,137,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',118,26,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 19:15:31','vishal','2025-11-06 19:25:14',0),(7798,2526,0,0,2640,'2025-11-06','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:45:31','vishal','2025-11-06 19:22:58',0),(7799,2526,0,0,2640,'2025-11-06','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:45:31','vishal','2025-11-06 19:22:58',0),(7800,2526,0,0,2640,'2025-11-06','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:45:31','vishal','2025-11-06 19:22:58',0),(7801,2526,0,0,2640,'2025-11-06','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,96,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:45:31','vishal','2025-11-06 19:24:51',0),(7802,2526,0,0,2640,'2025-11-06','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,97,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:45:31','vishal','2025-11-06 19:24:51',0),(7803,2526,0,0,2640,'2025-09-28','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',118,1,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7804,2526,0,0,2640,'2025-09-29','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',118,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7805,2526,0,0,2640,'2025-09-30','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',118,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7806,2526,0,0,2640,'2025-10-01','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',118,31,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:30:38',0),(7807,2526,0,0,2640,'2025-10-02','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',118,34,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:30:38',0),(7808,2526,0,0,2640,'2025-10-03','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7809,2526,0,0,2640,'2025-10-04','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7810,2526,0,0,2640,'2025-10-05','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7811,2526,0,0,2640,'2025-10-06','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7812,2526,0,0,2640,'2025-10-07','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7813,2526,0,0,2640,'2025-10-08','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7814,2526,0,0,2640,'2025-10-09','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7815,2526,0,0,2640,'2025-10-10','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7816,2526,0,0,2640,'2025-10-11','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7817,2526,0,0,2640,'2025-10-12','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7818,2526,0,0,2640,'2025-10-13','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7819,2526,0,0,2640,'2025-10-14','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7820,2526,0,0,2640,'2025-10-15','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7821,2526,0,0,2640,'2025-10-16','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7822,2526,0,0,2640,'2025-10-17','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7823,2526,0,0,2640,'2025-10-18','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7824,2526,0,0,2640,'2025-10-19','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7825,2526,0,0,2640,'2025-10-20','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7826,2526,0,0,2640,'2025-10-21','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7827,2526,0,0,2640,'2025-10-22','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7828,2526,0,0,2640,'2025-10-23','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7829,2526,0,0,2640,'2025-10-24','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7830,2526,0,0,2640,'2025-10-25','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7831,2526,0,0,2640,'2025-10-26','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7832,2526,0,0,2640,'2025-10-27','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7833,2526,0,0,2640,'2025-10-28','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7834,2526,0,0,2640,'2025-10-29','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7835,2526,0,0,2640,'2025-10-30','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7836,2526,0,0,2640,'2025-10-31','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7837,2526,0,0,2640,'2025-11-01','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7838,2526,0,0,2640,'2025-11-02','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7839,2526,0,0,2640,'2025-11-03','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7840,2526,0,0,2640,'2025-11-04','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7841,2526,0,0,2640,'2025-11-05','09:57:00',0,137,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7842,2526,0,0,2640,'2025-09-28','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',118,2,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7843,2526,0,0,2640,'2025-09-29','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',118,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7844,2526,0,0,2640,'2025-09-30','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',118,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7845,2526,0,0,2640,'2025-10-01','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',118,30,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:30:38',0),(7846,2526,0,0,2640,'2025-10-02','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',118,35,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:30:38',0),(7847,2526,0,0,2640,'2025-10-03','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7848,2526,0,0,2640,'2025-10-04','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7849,2526,0,0,2640,'2025-10-05','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7850,2526,0,0,2640,'2025-10-06','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7851,2526,0,0,2640,'2025-10-07','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7852,2526,0,0,2640,'2025-10-08','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7853,2526,0,0,2640,'2025-10-09','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7854,2526,0,0,2640,'2025-10-10','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7855,2526,0,0,2640,'2025-10-11','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7856,2526,0,0,2640,'2025-10-12','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7857,2526,0,0,2640,'2025-10-13','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7858,2526,0,0,2640,'2025-10-14','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7859,2526,0,0,2640,'2025-10-15','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7860,2526,0,0,2640,'2025-10-16','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7861,2526,0,0,2640,'2025-10-17','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7862,2526,0,0,2640,'2025-10-18','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7863,2526,0,0,2640,'2025-10-19','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7864,2526,0,0,2640,'2025-10-20','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7865,2526,0,0,2640,'2025-10-21','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7866,2526,0,0,2640,'2025-10-22','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7867,2526,0,0,2640,'2025-10-23','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7868,2526,0,0,2640,'2025-10-24','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7869,2526,0,0,2640,'2025-10-25','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7870,2526,0,0,2640,'2025-10-26','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7871,2526,0,0,2640,'2025-10-27','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7872,2526,0,0,2640,'2025-10-28','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7873,2526,0,0,2640,'2025-10-29','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7874,2526,0,0,2640,'2025-10-30','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7875,2526,0,0,2640,'2025-10-31','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7876,2526,0,0,2640,'2025-11-01','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7877,2526,0,0,2640,'2025-11-02','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7878,2526,0,0,2640,'2025-11-03','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7879,2526,0,0,2640,'2025-11-04','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7880,2526,0,0,2640,'2025-11-05','09:57:00',0,137,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7881,2526,0,0,2640,'2025-09-28','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',2526,'H','I',118,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7882,2526,0,0,2640,'2025-09-29','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',2526,'H','I',118,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7883,2526,0,0,2640,'2025-09-30','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',2526,'H','I',118,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7884,2526,0,0,2640,'2025-10-01','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',2526,'H','I',118,28,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:30:38',0),(7885,2526,0,0,2640,'2025-10-02','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',2526,'H','I',118,33,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:30:38',0),(7886,2526,0,0,2640,'2025-10-03','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,26,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7887,2526,0,0,2640,'2025-10-04','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,28,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7888,2526,0,0,2640,'2025-10-05','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,30,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7889,2526,0,0,2640,'2025-10-06','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,32,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7890,2526,0,0,2640,'2025-10-07','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,34,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7891,2526,0,0,2640,'2025-10-08','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,36,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7892,2526,0,0,2640,'2025-10-09','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,38,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7893,2526,0,0,2640,'2025-10-10','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,40,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7894,2526,0,0,2640,'2025-10-11','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,42,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7895,2526,0,0,2640,'2025-10-12','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,44,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7896,2526,0,0,2640,'2025-10-13','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,46,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7897,2526,0,0,2640,'2025-10-14','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,48,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7898,2526,0,0,2640,'2025-10-15','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,50,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7899,2526,0,0,2640,'2025-10-16','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,52,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7900,2526,0,0,2640,'2025-10-17','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,54,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7901,2526,0,0,2640,'2025-10-18','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,56,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7902,2526,0,0,2640,'2025-10-19','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,58,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7903,2526,0,0,2640,'2025-10-20','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,60,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7904,2526,0,0,2640,'2025-10-21','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,62,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7905,2526,0,0,2640,'2025-10-22','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,64,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7906,2526,0,0,2640,'2025-10-23','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,66,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7907,2526,0,0,2640,'2025-10-24','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,68,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7908,2526,0,0,2640,'2025-10-25','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,70,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7909,2526,0,0,2640,'2025-10-26','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,72,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7910,2526,0,0,2640,'2025-10-27','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,74,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7911,2526,0,0,2640,'2025-10-28','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,76,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7912,2526,0,0,2640,'2025-10-29','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,78,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7913,2526,0,0,2640,'2025-10-30','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,80,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7914,2526,0,0,2640,'2025-10-31','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,82,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7915,2526,0,0,2640,'2025-11-01','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,84,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7916,2526,0,0,2640,'2025-11-02','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,86,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7917,2526,0,0,2640,'2025-11-03','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,88,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7918,2526,0,0,2640,'2025-11-04','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,90,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7919,2526,0,0,2640,'2025-11-05','09:57:00',0,137,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,92,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7920,2526,0,0,2640,'2025-09-28','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',2526,'H','I',118,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7921,2526,0,0,2640,'2025-09-29','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',2526,'H','I',118,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7922,2526,0,0,2640,'2025-09-30','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',2526,'H','I',118,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7923,2526,0,0,2640,'2025-10-01','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',2526,'H','I',118,27,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:30:38',0),(7924,2526,0,0,2640,'2025-10-02','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,24,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7925,2526,0,0,2640,'2025-10-03','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,27,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7926,2526,0,0,2640,'2025-10-04','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,29,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7927,2526,0,0,2640,'2025-10-05','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,31,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7928,2526,0,0,2640,'2025-10-06','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,33,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7929,2526,0,0,2640,'2025-10-07','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,35,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7930,2526,0,0,2640,'2025-10-08','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,37,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7931,2526,0,0,2640,'2025-10-09','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,39,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7932,2526,0,0,2640,'2025-10-10','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,41,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7933,2526,0,0,2640,'2025-10-11','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,43,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7934,2526,0,0,2640,'2025-10-12','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,45,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7935,2526,0,0,2640,'2025-10-13','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,47,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7936,2526,0,0,2640,'2025-10-14','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,49,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7937,2526,0,0,2640,'2025-10-15','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,51,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7938,2526,0,0,2640,'2025-10-16','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,53,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7939,2526,0,0,2640,'2025-10-17','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,55,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7940,2526,0,0,2640,'2025-10-18','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,57,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7941,2526,0,0,2640,'2025-10-19','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,59,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7942,2526,0,0,2640,'2025-10-20','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,61,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7943,2526,0,0,2640,'2025-10-21','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,63,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7944,2526,0,0,2640,'2025-10-22','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,65,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7945,2526,0,0,2640,'2025-10-23','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,67,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7946,2526,0,0,2640,'2025-10-24','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,69,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7947,2526,0,0,2640,'2025-10-25','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,71,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7948,2526,0,0,2640,'2025-10-26','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,73,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7949,2526,0,0,2640,'2025-10-27','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,75,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7950,2526,0,0,2640,'2025-10-28','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,77,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7951,2526,0,0,2640,'2025-10-29','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,79,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7952,2526,0,0,2640,'2025-10-30','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,81,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7953,2526,0,0,2640,'2025-10-31','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,83,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7954,2526,0,0,2640,'2025-11-01','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,85,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7955,2526,0,0,2640,'2025-11-02','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,87,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7956,2526,0,0,2640,'2025-11-03','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,89,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7957,2526,0,0,2640,'2025-11-04','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,91,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7958,2526,0,0,2640,'2025-11-05','09:57:00',0,137,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,93,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:24:51',0),(7959,2526,0,0,2640,'2025-09-28','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',118,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7960,2526,0,0,2640,'2025-09-29','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',118,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7961,2526,0,0,2640,'2025-09-30','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',118,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7962,2526,0,0,2640,'2025-10-01','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',118,29,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:30:38',0),(7963,2526,0,0,2640,'2025-10-02','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',118,36,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:30:38',0),(7964,2526,0,0,2640,'2025-10-03','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7965,2526,0,0,2640,'2025-10-04','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7966,2526,0,0,2640,'2025-10-05','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7967,2526,0,0,2640,'2025-10-06','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7968,2526,0,0,2640,'2025-10-07','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7969,2526,0,0,2640,'2025-10-08','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7970,2526,0,0,2640,'2025-10-09','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7971,2526,0,0,2640,'2025-10-10','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7972,2526,0,0,2640,'2025-10-11','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7973,2526,0,0,2640,'2025-10-12','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7974,2526,0,0,2640,'2025-10-13','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7975,2526,0,0,2640,'2025-10-14','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7976,2526,0,0,2640,'2025-10-15','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7977,2526,0,0,2640,'2025-10-16','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7978,2526,0,0,2640,'2025-10-17','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7979,2526,0,0,2640,'2025-10-18','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7980,2526,0,0,2640,'2025-10-19','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7981,2526,0,0,2640,'2025-10-20','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7982,2526,0,0,2640,'2025-10-21','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7983,2526,0,0,2640,'2025-10-22','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7984,2526,0,0,2640,'2025-10-23','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7985,2526,0,0,2640,'2025-10-24','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7986,2526,0,0,2640,'2025-10-25','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7987,2526,0,0,2640,'2025-10-26','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7988,2526,0,0,2640,'2025-10-27','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7989,2526,0,0,2640,'2025-10-28','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7990,2526,0,0,2640,'2025-10-29','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7991,2526,0,0,2640,'2025-10-30','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7992,2526,0,0,2640,'2025-10-31','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7993,2526,0,0,2640,'2025-11-01','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7994,2526,0,0,2640,'2025-11-02','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7995,2526,0,0,2640,'2025-11-03','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7996,2526,0,0,2640,'2025-11-04','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7997,2526,0,0,2640,'2025-11-05','09:57:00',0,137,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 06:50:38','vishal','2025-11-06 19:22:58',0),(7998,2526,0,0,2630,'2025-11-06','19:20:46',2030,0,'XRY','XRY0254','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',2899,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-06 19:20:46','manshi','2025-11-06 19:20:46',0),(7999,2526,0,0,2623,'2025-11-06','19:20:56',2024,0,'XRY','XRY0017','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','O',2900,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-06 19:20:56','manshi','2025-11-06 19:20:56',0),(8000,2526,0,0,2623,'2025-11-06','19:20:56',2024,0,'XRY','XRY0254','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',2900,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-06 19:20:56','manshi','2025-11-06 19:20:56',0),(8001,2526,0,0,2640,'2025-09-28','19:23:00',0,137,'ROOM','ROOM0008','H','N',7.00,100,700,'A',0,0,0.00,0.00,700.00,700,9999,0,0,'',0,0,'','','','','',2526,'H','I',118,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 19:29:27','vishal','2025-11-06 19:33:25',0),(8002,2526,0,0,2640,'2025-09-29','19:23:00',0,137,'ROOM','ROOM0008','H','N',7.00,100,700,'A',0,0,0.00,0.00,700.00,700,9999,0,0,'',0,0,'','','','','',2526,'H','I',118,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 19:29:27','vishal','2025-11-06 19:30:38',0),(8003,2526,0,0,2640,'2025-09-29','19:23:00',0,137,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',118,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 19:29:27','vishal','2025-11-06 19:30:38',0),(8004,2526,0,0,2640,'2025-09-29','19:24:00',0,137,'WPRC','WPRC0090','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',118,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 19:29:27','vishal','2025-11-06 19:30:38',0),(8005,2526,0,0,2640,'2025-09-30','19:24:00',0,137,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',118,24,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 19:29:27','vishal','2025-11-06 19:30:38',0),(8006,2526,0,0,2640,'2025-09-30','19:24:00',0,137,'USG','USG0092','H','N',1.00,1200,1200,'A',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',118,25,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 19:29:27','vishal','2025-11-06 19:30:38',0),(8007,2526,0,0,2640,'2025-10-01','19:25:00',0,137,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',118,33,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 19:29:27','','0000-00-00 00:00:00',0),(8008,2526,0,0,2640,'2025-10-02','19:25:00',0,137,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',118,34,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 19:29:27','','0000-00-00 00:00:00',0),(8009,2526,0,0,2640,'2025-09-28','19:25:00',0,137,'ROOM','ROOM0004','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',118,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 19:29:27','vishal','2025-11-06 19:30:38',0),(8010,2526,0,0,2640,'2025-09-29','19:25:00',0,137,'ROOM','ROOM0004','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',118,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 19:29:27','vishal','2025-11-06 19:30:38',0),(8011,2526,0,0,2640,'2025-09-30','19:25:00',0,137,'ROOM','ROOM0004','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',118,26,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 19:29:27','vishal','2025-11-06 19:30:38',0),(8012,2526,0,0,2640,'2025-10-02','19:26:00',0,137,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',118,38,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 19:29:27','','0000-00-00 00:00:00',0),(8013,2526,0,0,2640,'2025-10-01','19:28:00',0,137,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',118,39,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 19:30:38','','0000-00-00 00:00:00',0),(8014,2526,0,0,2640,'2025-10-02','19:28:00',0,137,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',118,40,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 19:30:38','','0000-00-00 00:00:00',0),(8015,2526,0,0,2640,'2025-09-29','19:31:00',0,137,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',118,41,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-06 19:33:25','','0000-00-00 00:00:00',0),(8016,2526,0,0,2641,'2025-11-06','00:00:00',2035,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-06 19:34:49','janvi','2025-11-06 07:04:49',0),(8017,2526,0,0,2590,'2025-11-06','19:59:08',2005,0,'OTCG','OTCG0033','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,0.00,5000,3,0,0,'',0,0,'','','','','',2526,'H','O',2901,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-06 19:59:08','janvi','2025-11-06 19:59:08',0),(8018,2526,0,0,2590,'2025-11-06','19:59:08',2005,0,'WPRC','WPRC0046','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,0.00,5000,3,0,0,'',0,0,'','','','','',2526,'H','O',2901,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-06 19:59:08','janvi','2025-11-06 19:59:08',0),(8019,2526,0,0,2642,'2025-11-07','00:00:00',2036,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 08:53:51','reception','2025-11-06 20:23:51',0),(8020,2526,0,0,2642,'2025-11-07','08:54:39',2036,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',2902,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 08:54:39','reception','2025-11-07 08:54:39',0),(8021,2526,0,0,2642,'2025-11-07','08:54:39',2036,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',2902,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 08:54:39','reception','2025-11-07 08:54:39',0),(8022,2526,0,0,2643,'2025-11-07','00:00:00',2037,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2903,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 09:02:05','reception','2025-11-07 09:03:34',0),(8023,2526,0,0,2644,'2025-11-07','00:00:00',2038,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2904,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 09:31:52','reception','2025-11-07 09:32:30',0),(8024,2526,0,0,2645,'2025-11-07','00:00:00',2039,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2905,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 09:43:37','drashti','2025-11-07 09:44:01',0),(8025,2526,0,0,2646,'2025-11-07','00:00:00',2040,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2906,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 09:44:31','reception','2025-11-07 09:45:01',0),(8026,2526,0,0,2647,'2025-11-07','00:00:00',2041,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2907,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 09:47:42','reception','2025-11-07 09:48:23',0),(8027,2526,0,0,2648,'2025-11-07','00:00:00',2042,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2908,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 09:56:57','reception','2025-11-07 09:57:37',0),(8028,2526,0,0,2649,'2025-11-07','00:00:00',10,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2909,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 09:58:44','reception','2025-11-07 09:59:04',0),(8029,2526,0,0,2650,'2025-11-07','00:00:00',2043,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2911,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-07 10:05:51','manshi','2025-11-07 10:14:03',0),(8030,2526,0,0,2651,'2025-11-07','00:00:00',2044,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2910,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 10:06:41','drashti','2025-11-07 10:07:32',0),(8031,2526,0,0,2650,'2025-11-07','10:14:03',2043,0,'XRY','XRY0045','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',2911,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-07 10:14:03','manshi','2025-11-07 10:14:03',0),(8032,2526,0,0,2624,'2025-11-07','10:23:00',0,136,'XRY','XRY0045','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',126,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 10:24:07','','0000-00-00 00:00:00',0),(8033,2526,0,0,2561,'2025-11-07','10:00:00',0,133,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-06 21:56:38','riya','2025-11-07 10:27:54',0),(8034,2526,0,0,2561,'2025-11-07','10:00:00',0,133,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-06 21:56:38','riya','2025-11-07 10:27:54',0),(8035,2526,0,0,2561,'2025-11-07','10:00:00',0,133,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-06 21:56:38','riya','2025-11-07 10:27:54',0),(8036,2526,0,0,2561,'2025-11-07','10:00:00',0,133,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','D',136,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-06 21:56:38','riya','2025-11-07 10:27:54',0),(8037,2526,0,0,2561,'2025-11-07','10:00:00',0,133,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-06 21:56:38','riya','2025-11-07 10:27:54',0),(8038,2526,0,0,2561,'2025-11-06','10:26:00',0,133,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','D',136,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 10:27:54','','0000-00-00 00:00:00',0),(8039,2526,0,0,2561,'2025-11-07','10:27:00',0,133,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','D',136,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 10:27:54','','0000-00-00 00:00:00',0),(8040,2526,0,0,2556,'2025-11-07','09:30:00',0,132,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-06 21:58:19','riya','2025-11-07 10:31:16',0),(8041,2526,0,0,2556,'2025-11-07','09:30:00',0,132,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-06 21:58:19','riya','2025-11-07 10:31:16',0),(8042,2526,0,0,2556,'2025-11-07','09:30:00',0,132,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-06 21:58:19','riya','2025-11-07 10:31:16',0),(8043,2526,0,0,2556,'2025-11-07','09:30:00',0,132,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',2526,'H','I',236,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-06 21:58:19','riya','2025-11-07 10:31:16',0),(8044,2526,0,0,2556,'2025-11-07','09:30:00',0,132,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',0,'','',0,9,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-06 21:58:19','riya','2025-11-07 19:37:23',0),(8045,2526,0,0,2652,'2025-11-07','00:00:00',158,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2912,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 10:29:42','reception','2025-11-07 10:30:17',0),(8046,2526,0,0,2556,'2025-11-06','10:29:00',0,132,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',236,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 10:31:16','','0000-00-00 00:00:00',0),(8047,2526,0,0,2556,'2025-11-07','10:30:00',0,132,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',236,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 10:31:16','','0000-00-00 00:00:00',0),(8048,2526,0,0,2653,'2025-11-07','00:00:00',2045,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2913,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 10:33:25','reception','2025-11-07 10:34:09',0),(8049,2526,0,0,2654,'2025-11-07','00:00:00',2046,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2914,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 10:36:21','reception','2025-11-07 10:36:59',0),(8050,2526,0,0,2655,'2025-11-07','00:00:00',2047,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2915,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 10:39:13','drashti','2025-11-07 10:40:00',0),(8051,2526,0,0,2656,'2025-11-07','00:00:00',2048,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2916,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 10:54:45','reception','2025-11-07 10:55:40',0),(8052,2526,0,0,2657,'2025-11-07','00:00:00',2049,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2917,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-07 10:57:21','janvi','2025-11-07 10:58:15',0),(8053,2526,0,0,2658,'2025-11-07','00:00:00',2050,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2918,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 10:59:49','drashti','2025-11-07 11:00:35',0),(8054,2526,0,0,2646,'2025-11-07','11:01:39',2040,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2919,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 11:01:39','reception','2025-11-07 11:01:39',0),(8055,2526,0,0,2646,'2025-11-07','11:01:39',2040,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2919,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 11:01:39','reception','2025-11-07 11:01:39',0),(8056,2526,0,0,2646,'2025-11-07','11:01:39',2040,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2919,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 11:01:39','reception','2025-11-07 11:01:39',0),(8057,2526,0,0,2659,'2025-11-07','00:00:00',2051,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2920,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 11:02:30','drashti','2025-11-07 11:02:55',0),(8058,2526,0,0,2660,'2025-11-07','00:00:00',2052,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2921,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 11:06:16','drashti','2025-11-07 11:07:11',0),(8059,2526,0,0,2661,'2025-11-07','00:00:00',2053,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2922,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 11:06:52','reception','2025-11-07 11:07:24',0),(8060,2526,0,0,2662,'2025-11-07','00:00:00',1532,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2923,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 11:12:26','drashti','2025-11-07 11:13:51',0),(8061,2526,0,0,2653,'2025-11-07','11:14:43',2045,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2924,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 11:14:43','reception','2025-11-07 11:14:43',0),(8062,2526,0,0,2653,'2025-11-07','11:14:43',2045,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',2924,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 11:14:43','reception','2025-11-07 11:14:43',0),(8063,2526,0,0,2663,'2025-11-07','00:00:00',2054,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2925,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 11:16:36','drashti','2025-11-07 11:17:30',0),(8064,2526,0,0,2664,'2025-11-07','00:00:00',1348,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2927,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 11:19:44','drashti','2025-11-07 11:20:16',0),(8065,2526,0,0,2665,'2025-11-07','00:00:00',1343,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2926,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-07 11:19:54','janvi','2025-11-07 11:20:03',0),(8066,2526,0,0,2666,'2025-11-07','00:00:00',2055,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 11:26:22','reception','2025-11-06 22:56:22',0),(8067,2526,0,0,2667,'2025-11-07','00:00:00',2056,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2929,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-07 11:26:41','janvi','2025-11-07 11:27:21',0),(8068,2526,0,0,2666,'2025-11-07','11:26:42',2055,0,'NEU1','NEU10015','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',2928,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 11:26:42','reception','2025-11-07 11:26:42',0),(8069,2526,0,0,2668,'2025-11-07','00:00:00',2057,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2930,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 11:26:55','drashti','2025-11-07 11:27:46',0),(8070,2526,0,0,2669,'2025-11-07','00:00:00',2058,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2932,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 11:31:02','reception','2025-11-07 11:33:03',0),(8071,2526,0,0,2670,'2025-11-07','00:00:00',2059,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2931,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 11:31:52','drashti','2025-11-07 11:32:50',0),(8072,2526,0,0,2671,'2025-11-07','11:35:40',1928,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',2933,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-07 11:35:40','manshi','2025-11-07 11:35:40',0),(8073,2526,0,0,2672,'2025-11-07','00:00:00',2060,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2934,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 11:36:35','reception','2025-11-07 11:37:38',0),(8074,2526,0,0,2673,'2025-11-07','00:00:00',2061,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2935,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 11:39:10','reception','2025-11-07 11:39:53',0),(8075,2526,0,0,2674,'2025-11-07','00:00:00',2062,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2936,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 11:46:11','reception','2025-11-07 11:46:47',0),(8076,2526,0,0,2675,'2025-11-07','00:00:00',2063,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2937,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 11:54:52','drashti','2025-11-07 11:55:27',0),(8077,2526,0,0,2676,'2025-11-07','00:00:00',2064,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 11:55:02','reception','2025-11-06 23:25:02',0),(8078,2526,0,0,2676,'2025-11-07','11:55:41',2064,0,'NEU1','NEU10015','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',2938,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 11:55:41','reception','2025-11-07 11:55:41',0),(8079,2526,0,0,2675,'2025-11-07','11:59:07',2063,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',2939,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 11:59:07','drashti','2025-11-07 11:59:07',0),(8080,2526,0,0,2658,'2025-11-07','11:59:46',2050,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2940,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 11:59:46','reception','2025-11-07 11:59:46',0),(8081,2526,0,0,2658,'2025-11-07','11:59:46',2050,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2940,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 11:59:46','reception','2025-11-07 11:59:46',0),(8082,2526,0,0,2658,'2025-11-07','11:59:46',2050,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2940,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 11:59:46','reception','2025-11-07 11:59:46',0),(8083,2526,0,0,2678,'2025-11-07','00:00:00',340,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2941,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 12:00:47','reception','2025-11-07 12:01:00',0),(8084,2526,0,0,2679,'2025-11-07','00:00:00',2065,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',2942,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-07 12:01:43','manshi','2025-11-07 12:02:25',0),(8085,2526,0,0,2680,'2025-11-07','00:00:00',2066,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2943,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 12:02:27','reception','2025-11-07 12:03:47',0),(8086,2526,0,0,2682,'2025-11-07','00:00:00',2067,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2945,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 12:05:37','reception','2025-11-07 12:06:14',0),(8087,2526,0,0,2681,'2025-11-07','12:06:09',1669,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2944,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-07 12:06:09','janvi','2025-11-07 12:06:09',0),(8088,2526,0,0,2683,'2025-11-07','00:00:00',2068,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2946,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 12:07:15','drashti','2025-11-07 12:08:01',0),(8089,2526,0,0,2684,'2025-11-07','00:00:00',2069,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2947,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 12:09:31','reception','2025-11-07 12:09:48',0),(8090,2526,0,0,2298,'2025-11-06','13:00:00',0,127,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',120,23,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-06 23:39:58','riya','2025-11-07 12:11:35',0),(8091,2526,0,0,2298,'2025-11-06','13:00:00',0,127,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',120,24,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-06 23:39:58','riya','2025-11-07 12:11:35',0),(8092,2526,0,0,2298,'2025-11-06','13:00:00',0,127,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','405','','','',2526,'H','I',120,25,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-06 23:39:58','riya','2025-11-07 12:11:35',0),(8093,2526,0,0,2298,'2025-11-06','13:00:00',0,127,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','405','','','',2526,'H','I',120,26,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-06 23:39:58','riya','2025-11-07 12:11:35',0),(8094,2526,0,0,2298,'2025-11-06','13:00:00',0,127,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',120,27,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-06 23:39:58','riya','2025-11-07 12:11:35',0),(8095,2526,0,0,2685,'2025-11-07','00:00:00',2070,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2948,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 12:10:02','drashti','2025-11-07 12:11:04',0),(8096,2526,0,0,2686,'2025-11-07','00:00:00',994,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2949,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 12:10:57','reception','2025-11-07 12:11:52',0),(8097,2526,0,0,2298,'2025-11-07','12:10:00',0,127,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',120,28,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(8098,2526,0,0,2298,'2025-11-07','12:11:00',0,127,'ROOM','ROOM0005','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',2526,'H','I',120,29,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 12:11:35','','0000-00-00 00:00:00',0),(8099,2526,0,0,2135,'2025-11-06','20:45:00',0,120,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-06 23:43:09','riya','2025-11-07 12:15:56',0),(8100,2526,0,0,2135,'2025-11-06','20:45:00',0,120,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-06 23:43:09','riya','2025-11-07 12:15:56',0),(8101,2526,0,0,2135,'2025-11-06','20:45:00',0,120,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,36,0,0,'',0,0,'','408','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-06 23:43:09','riya','2025-11-07 12:15:56',0),(8102,2526,0,0,2135,'2025-11-06','20:45:00',0,120,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,36,0,0,'',0,0,'','408','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-06 23:43:09','riya','2025-11-07 12:15:56',0),(8103,2526,0,0,2135,'2025-11-06','20:45:00',0,120,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',121,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-06 23:43:10','riya','2025-11-07 12:15:56',0),(8104,2526,0,0,2673,'2025-11-07','12:15:08',2061,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2950,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 12:15:08','reception','2025-11-07 12:15:08',0),(8105,2526,0,0,2673,'2025-11-07','12:15:08',2061,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2950,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 12:15:08','reception','2025-11-07 12:15:08',0),(8106,2526,0,0,2135,'2025-11-07','12:13:00',0,120,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 12:15:56','','0000-00-00 00:00:00',0),(8107,2526,0,0,2135,'2025-11-07','12:15:00',0,120,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,36,0,0,'',0,0,'','','','','',2526,'H','I',121,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 12:15:56','','0000-00-00 00:00:00',0),(8108,2526,0,0,2655,'2025-11-07','12:28:50',2047,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2951,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 12:28:50','reception','2025-11-07 12:28:50',0),(8109,2526,0,0,2655,'2025-11-07','12:28:50',2047,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',2951,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 12:28:50','reception','2025-11-07 12:28:50',0),(8110,2526,0,0,2687,'2025-11-07','00:00:00',2071,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2952,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-07 12:40:57','janvi','2025-11-07 12:41:42',0),(8111,2526,0,0,2659,'2025-11-07','12:50:49',2051,0,'WPRC','WPRC0046','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2953,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-07 12:50:49','janvi','2025-11-07 12:50:49',0),(8112,2526,0,0,2688,'2025-11-07','00:00:00',2072,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',2954,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-07 13:00:35','janvi','2025-11-07 13:01:22',0),(8113,2526,0,0,2555,'2025-11-07','09:20:00',0,131,'ROOM','ROOM0009','H','N',0.50,3200,1600,'A',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','401','','','',2526,'H','I',122,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 00:49:02','riya','2025-11-07 18:59:40',0),(8114,2526,0,0,2555,'2025-11-07','09:20:00',0,131,'AECO','AECO0008','H','N',0.50,400,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',122,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 00:49:02','riya','2025-11-07 18:59:40',0),(8115,2526,0,0,2555,'2025-11-07','09:20:00',0,131,'CARE','CARE0001','H','N',0.50,200,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','401','','','',2526,'H','I',122,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 00:49:02','riya','2025-11-07 18:59:40',0),(8116,2526,0,0,2555,'2025-11-07','09:20:00',0,131,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',122,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 00:49:02','riya','2025-11-07 13:19:10',0),(8117,2526,0,0,2555,'2025-11-07','09:20:00',0,131,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',122,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 00:49:02','riya','2025-11-07 19:03:45',0),(8118,2526,0,0,2689,'2025-11-07','00:00:00',2073,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',2955,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 13:24:26','drashti','2025-11-07 13:24:43',0),(8119,2526,0,0,2690,'2025-11-07','00:00:00',2074,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2956,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 13:33:40','reception','2025-11-07 13:34:22',0),(8120,2526,0,0,2691,'2025-11-07','13:33:00',2073,138,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',130,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 13:35:40','riya','2025-11-08 18:41:56',0),(8121,2526,0,0,2691,'2025-11-07','13:33:00',2073,138,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',130,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 13:35:40','riya','2025-11-08 18:41:56',0),(8122,2526,0,0,2691,'2025-11-07','13:33:00',2073,138,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',130,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 01:05:40','riya','2025-11-08 18:41:56',0),(8123,2526,0,0,2691,'2025-11-07','13:33:00',2073,138,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',130,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 01:05:40','riya','2025-11-08 18:41:56',0),(8124,2526,0,0,2691,'2025-11-07','13:33:00',2073,138,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',130,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 01:05:40','riya','2025-11-08 18:41:56',0),(8125,2526,0,0,2691,'2025-11-07','13:33:00',2073,138,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 01:05:40','riya','2025-11-11 12:00:22',0),(8126,2526,0,0,2691,'2025-11-07','13:33:00',2073,138,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',130,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 01:05:40','riya','2025-11-08 18:41:56',0),(8127,2526,0,0,2692,'2025-11-07','00:00:00',2075,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2957,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 13:50:06','reception','2025-11-07 13:50:16',0),(8128,2526,0,0,2684,'2025-11-07','13:54:33',2069,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2958,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 13:54:32','reception','2025-11-07 13:54:32',0),(8129,2526,0,0,2684,'2025-11-07','13:54:33',2069,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2958,2,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 13:54:32','reception','2025-11-07 13:54:32',0),(8130,2526,0,0,2685,'2025-11-07','14:05:56',2070,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2959,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 14:05:56','reception','2025-11-07 14:05:56',0),(8131,2526,0,0,2685,'2025-11-07','14:05:56',2070,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2959,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 14:05:56','reception','2025-11-07 14:05:56',0),(8132,2526,0,0,2195,'2025-11-07','12:00:00',0,121,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 01:48:31','vishal','2025-11-08 09:07:44',0),(8133,2526,0,0,2195,'2025-11-07','12:00:00',0,121,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 01:48:31','vishal','2025-11-08 09:07:44',0),(8134,2526,0,0,2195,'2025-11-07','12:00:00',0,121,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 01:48:31','vishal','2025-11-08 09:07:44',0),(8135,2526,0,0,2195,'2025-11-07','12:00:00',0,121,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,36,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 01:48:31','vishal','2025-11-08 09:07:44',0),(8136,2526,0,0,2195,'2025-11-07','12:00:00',0,121,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,36,0,0,'',0,0,'','410','','','',2526,'H','I',123,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 01:48:31','vishal','2025-11-08 09:07:44',0),(8137,2526,0,0,2693,'2025-11-07','00:00:00',2076,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2960,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-07 14:52:41','priyanshi','2025-11-07 14:53:40',0),(8138,2526,0,0,2195,'2025-11-07','15:11:00',0,121,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 15:20:14','','0000-00-00 00:00:00',0),(8139,2526,0,0,2195,'2025-11-07','15:20:00',0,121,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 15:25:03','','0000-00-00 00:00:00',0),(8140,2526,0,0,2195,'2025-11-07','15:20:00',0,121,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 15:25:03','','0000-00-00 00:00:00',0),(8141,2526,0,0,2195,'2025-11-06','15:24:00',0,121,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,52,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 15:25:03','vishal','2025-11-08 09:13:49',0),(8142,2526,0,0,2599,'2025-11-07','13:00:00',0,134,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',256,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 03:02:29','riya','2025-11-07 15:33:11',0),(8143,2526,0,0,2599,'2025-11-07','13:00:00',0,134,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',256,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 03:02:29','riya','2025-11-07 15:33:11',0),(8144,2526,0,0,2599,'2025-11-07','13:00:00',0,134,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',256,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 03:02:29','riya','2025-11-07 15:33:11',0),(8145,2526,0,0,2599,'2025-11-07','13:00:00',0,134,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','406','','','',2526,'H','I',256,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 03:02:29','riya','2025-11-07 15:33:11',0),(8146,2526,0,0,2599,'2025-11-07','13:00:00',0,134,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','406','','','',2526,'H','I',256,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 03:02:29','riya','2025-11-07 15:33:11',0),(8147,2526,0,0,2599,'2025-11-06','15:32:00',0,134,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',256,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 15:33:11','','0000-00-00 00:00:00',0),(8148,2526,0,0,2602,'2025-11-07','15:00:00',0,135,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',124,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 03:03:37','vishal','2025-11-08 11:52:51',0),(8149,2526,0,0,2602,'2025-11-07','15:00:00',0,135,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',124,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 03:03:37','riya','2025-11-07 15:36:31',0),(8150,2526,0,0,2602,'2025-11-07','15:00:00',0,135,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',124,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 03:03:37','riya','2025-11-07 15:36:31',0),(8151,2526,0,0,2602,'2025-11-07','15:00:00',0,135,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',124,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 03:03:37','riya','2025-11-07 15:36:31',0),(8152,2526,0,0,2602,'2025-11-07','15:00:00',0,135,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',124,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 03:03:37','vishal','2025-11-08 11:52:51',0),(8153,2526,0,0,2602,'2025-11-06','15:33:00',0,135,'ROOM','ROOM0008','H','N',2.00,100,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',124,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 15:36:31','riya','2025-11-07 15:37:44',0),(8154,2526,0,0,2602,'2025-11-07','15:33:00',0,135,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',124,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 15:36:31','vishal','2025-11-08 11:50:11',0),(8155,2526,0,0,2602,'2025-11-07','15:34:00',0,135,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','','','','',2526,'H','I',124,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 15:36:31','','0000-00-00 00:00:00',0),(8156,2526,0,0,2602,'2025-11-07','15:35:00',0,135,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,150,0,0,'',0,0,'','','','','',2526,'H','I',124,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 15:36:31','','0000-00-00 00:00:00',0),(8157,2526,0,0,2624,'2025-11-06','15:45:00',0,136,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',126,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 15:46:33','','0000-00-00 00:00:00',0),(8158,2526,0,0,2624,'2025-11-07','15:45:00',0,136,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',126,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 15:46:33','','0000-00-00 00:00:00',0),(8159,2526,0,0,2624,'2025-11-06','15:45:00',0,136,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',126,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 15:46:33','','0000-00-00 00:00:00',0),(8160,2526,0,0,2624,'2025-11-07','15:45:00',0,136,'WPRC','WPRC0089','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',126,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 15:46:33','','0000-00-00 00:00:00',0),(8161,2526,0,0,2694,'2025-11-07','00:00:00',2077,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2961,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 16:05:31','reception','2025-11-07 16:06:00',0),(8162,2526,0,0,2695,'2025-11-07','00:00:00',2078,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2962,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 16:34:12','reception','2025-11-07 16:35:54',0),(8163,2526,0,0,2696,'2025-11-07','00:00:00',963,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-07 16:39:44','priyanshi','2025-11-07 04:09:44',0),(8164,2526,0,0,2697,'2025-11-07','00:00:00',2079,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2963,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-07 16:40:35','priyanshi','2025-11-07 16:41:17',0),(8165,2526,0,0,2698,'2025-11-07','00:00:00',2080,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 16:49:21','reception','2025-11-07 04:19:22',0),(8166,2526,0,0,2699,'2025-11-07','00:00:00',2081,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 16:54:09','reception','2025-11-07 04:24:09',0),(8167,2526,0,0,2700,'2025-11-07','00:00:00',2082,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 16:55:30','reception','2025-11-07 04:25:30',0),(8168,2526,0,0,2701,'2025-11-07','00:00:00',2083,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2964,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 16:56:33','reception','2025-11-07 16:58:12',0),(8169,2526,0,0,2702,'2025-11-07','00:00:00',2084,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 17:01:31','drashti','2025-11-07 04:31:31',0),(8170,2526,0,0,2703,'2025-11-07','00:00:00',2085,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',2965,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 17:04:54','drashti','2025-11-07 17:05:24',0),(8171,2526,0,0,2704,'2025-11-07','00:00:00',2086,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2966,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 17:07:45','reception','2025-11-07 17:08:17',0),(8172,2526,0,0,2705,'2025-11-07','00:00:00',207,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2967,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 17:10:08','reception','2025-11-07 17:10:22',0),(8173,2526,0,0,2707,'2025-11-07','00:00:00',2087,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2968,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 17:14:07','drashti','2025-11-07 17:14:34',0),(8174,2526,0,0,2708,'2025-11-07','00:00:00',2088,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2969,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 17:27:39','reception','2025-11-07 17:28:04',0),(8175,2526,0,0,2709,'2025-11-07','00:00:00',1548,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2970,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 17:29:12','reception','2025-11-07 17:29:22',0),(8176,2526,0,0,2710,'2025-11-07','00:00:00',2089,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2971,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 17:29:42','drashti','2025-11-07 17:30:31',0),(8177,2526,0,0,2711,'2025-11-07','00:00:00',2090,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',2972,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 17:32:15','drashti','2025-11-07 17:33:35',0),(8178,2526,0,0,2712,'2025-11-07','00:00:00',2091,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2973,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 17:34:56','reception','2025-11-07 17:35:38',0),(8179,2526,0,0,2713,'2025-11-07','00:00:00',2092,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2974,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-07 17:37:40','janvi','2025-11-07 17:39:03',0),(8180,2526,0,0,2714,'2025-11-07','00:00:00',2093,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2975,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 17:38:46','drashti','2025-11-07 17:39:19',0),(8181,2526,0,0,2715,'2025-11-07','00:00:00',1387,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2976,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 17:39:17','reception','2025-11-07 17:39:32',0),(8182,2526,0,0,2716,'2025-11-07','00:00:00',2094,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2977,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 17:40:22','drashti','2025-11-07 17:42:06',0),(8183,2526,0,0,2693,'2025-11-07','17:42:58',2076,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',2978,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 17:42:57','reception','2025-11-07 17:42:57',0),(8184,2526,0,0,2717,'2025-11-07','00:00:00',1477,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2979,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 17:43:04','drashti','2025-11-07 17:43:35',0),(8185,2526,0,0,2718,'2025-11-07','17:47:30',2074,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2980,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 17:47:30','reception','2025-11-07 17:47:30',0),(8186,2526,0,0,2718,'2025-11-07','17:47:30',2074,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2980,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 17:47:30','reception','2025-11-07 17:47:30',0),(8187,2526,0,0,2719,'2025-11-07','00:00:00',2095,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-07 17:47:43','janvi','2025-11-07 05:17:43',0),(8188,2526,0,0,2720,'2025-11-07','00:00:00',1719,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OP','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-07 17:52:16','janvi','2025-11-07 05:22:16',0),(8189,2526,0,0,2720,'2025-11-07','17:52:37',1719,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2981,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-07 17:52:37','janvi','2025-11-07 17:52:37',0),(8190,2526,0,0,2721,'2025-11-07','00:00:00',2096,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',2982,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 17:57:17','drashti','2025-11-07 17:57:32',0),(8191,2526,0,0,2722,'2025-11-07','00:00:00',2097,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',2995,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 18:02:24','reception','2025-11-07 18:33:46',0),(8192,2526,0,0,2723,'2025-11-07','18:07:54',1132,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2983,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-07 18:07:54','janvi','2025-11-07 18:07:54',0),(8193,2526,0,0,2724,'2025-11-07','00:00:00',1102,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',2984,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-07 18:09:23','manshi','2025-11-07 18:10:20',0),(8194,2526,0,0,2725,'2025-11-07','00:00:00',2098,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2985,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-07 18:10:24','janvi','2025-11-07 18:11:21',0),(8195,2526,0,0,2726,'2025-11-07','00:00:00',854,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2986,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 18:11:51','reception','2025-11-07 18:12:28',0),(8196,2526,0,0,2624,'2025-11-07','18:00:00',0,136,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',126,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 05:44:43','riya','2025-11-08 19:33:06',0),(8197,2526,0,0,2624,'2025-11-07','18:00:00',0,136,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',126,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 05:44:43','riya','2025-11-08 19:33:06',0),(8198,2526,0,0,2624,'2025-11-07','18:00:00',0,136,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',2526,'H','I',126,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 05:44:43','riya','2025-11-08 19:33:06',0),(8199,2526,0,0,2624,'2025-11-07','18:00:00',0,136,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',2526,'H','I',126,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 05:44:43','riya','2025-11-08 19:33:06',0),(8200,2526,0,0,2624,'2025-11-07','18:00:00',0,136,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',126,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 05:44:43','riya','2025-11-08 19:33:06',0),(8201,2526,0,0,2727,'2025-11-07','00:00:00',2099,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2987,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-07 18:15:58','janvi','2025-11-07 18:16:53',0),(8202,2526,0,0,2728,'2025-11-07','00:00:00',943,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2989,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 18:19:55','reception','2025-11-07 18:21:06',0),(8203,2526,0,0,2729,'2025-11-07','00:00:00',2100,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',2988,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-07 18:20:17','manshi','2025-11-07 18:20:34',0),(8204,2526,0,0,2730,'2025-11-07','00:00:00',2101,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2990,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-07 18:22:04','janvi','2025-11-07 18:22:52',0),(8205,2526,0,0,2731,'2025-11-07','00:00:00',2102,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',2991,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 18:24:28','drashti','2025-11-07 19:08:41',0),(8206,2526,0,0,2721,'2025-11-07','18:27:55',2096,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2992,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 18:27:55','reception','2025-11-07 18:27:55',0),(8207,2526,0,0,2721,'2025-11-07','18:27:55',2096,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',2992,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 18:27:55','reception','2025-11-07 18:27:55',0),(8208,2526,0,0,2708,'2025-11-07','18:30:20',2088,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',2993,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 18:30:20','reception','2025-11-07 18:30:20',0),(8209,2526,0,0,2732,'2025-11-07','18:33:17',1288,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2994,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 18:33:17','drashti','2025-11-07 18:33:17',0),(8210,2526,0,0,2688,'2025-11-07','18:36:03',2072,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',2996,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 18:36:03','drashti','2025-11-07 18:36:03',0),(8211,2526,0,0,2733,'2025-11-07','00:00:00',1306,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2997,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 18:44:22','reception','2025-11-07 18:44:49',0),(8212,2526,0,0,2734,'2025-11-07','00:00:00',827,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',2998,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-07 18:48:19','reception','2025-11-07 18:49:01',0),(8213,2526,0,0,2719,'2025-11-07','18:57:52',2095,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',2999,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-07 18:57:52','janvi','2025-11-07 18:57:52',0),(8214,2526,0,0,2555,'2025-11-06','18:58:00',0,131,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',122,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 18:59:40','riya','2025-11-07 19:03:45',0),(8215,2526,0,0,2555,'2025-11-06','19:02:00',0,131,'SURG','SURG0014','H','N',1.00,37000,37000,'P',0,0,0.00,0.00,37000.00,37000,3,0,0,'',0,0,'','','','','',2526,'H','I',122,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 19:03:45','','0000-00-00 00:00:00',0),(8216,2526,0,0,2555,'2025-11-06','19:02:00',0,131,'SURG','SURG0015','H','N',1.00,12300,12300,'P',0,0,0.00,0.00,12300.00,12300,3,0,0,'',0,0,'','','','','',2526,'H','I',122,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-07 19:03:45','','0000-00-00 00:00:00',0),(8217,2526,0,0,2735,'2025-11-07','19:04:21',1744,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3000,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-07 19:04:21','manshi','2025-11-07 19:04:21',0),(8218,2526,0,0,2736,'2025-11-07','00:00:00',2103,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-07 19:06:23','manshi','2025-11-07 06:36:23',0),(8219,2526,0,0,2737,'2025-11-07','00:00:00',567,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3002,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-07 19:08:16','manshi','2025-11-07 19:10:12',0),(8220,2526,0,0,2738,'2025-11-07','00:00:00',270,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3003,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-07 19:10:05','janvi','2025-11-07 19:10:59',0),(8221,2526,0,0,2739,'2025-11-07','00:00:00',923,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-07 19:15:20','manshi','2025-11-07 06:45:20',0),(8222,2526,0,0,2739,'2025-11-07','19:16:33',923,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',3004,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-07 19:16:33','manshi','2025-11-07 19:16:33',0),(8223,2526,0,0,2740,'2025-11-07','19:20:11',1976,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3005,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-07 19:20:11','janvi','2025-11-07 19:20:11',0),(8224,2526,0,0,2741,'2025-11-07','00:00:00',1071,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 19:30:03','drashti','2025-11-07 07:00:03',0),(8225,2526,0,0,2741,'2025-11-07','19:32:20',1071,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3006,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 19:32:20','drashti','2025-11-07 19:32:20',0),(8226,2526,0,0,2741,'2025-11-07','19:32:20',1071,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',3006,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-07 19:32:20','drashti','2025-11-07 19:32:20',0),(8227,2526,0,0,2195,'2025-11-02','08:59:00',0,121,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 09:02:46','vishal','2025-11-08 09:17:04',0),(8228,2526,0,0,2195,'2025-11-02','08:59:00',0,121,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 09:02:46','vishal','2025-11-08 09:17:04',0),(8229,2526,0,0,2195,'2025-11-02','08:59:00',0,121,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 09:02:46','vishal','2025-11-08 09:17:04',0),(8230,2526,0,0,2195,'2025-11-02','09:00:00',0,121,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 09:02:46','','0000-00-00 00:00:00',0),(8231,2526,0,0,2742,'2025-11-08','00:00:00',2104,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 09:04:27','reception','2025-11-07 20:34:27',0),(8232,2526,0,0,2742,'2025-11-08','09:05:45',2104,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',3007,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 09:05:45','reception','2025-11-08 09:05:45',0),(8233,2526,0,0,2742,'2025-11-08','09:05:45',2104,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',3007,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 09:05:45','reception','2025-11-08 09:05:45',0),(8234,2526,0,0,2195,'2025-11-08','09:05:00',0,121,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 09:07:44','','0000-00-00 00:00:00',0),(8235,2526,0,0,2195,'2025-11-08','09:05:00',0,121,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 09:07:44','','0000-00-00 00:00:00',0),(8236,2526,0,0,2195,'2025-11-06','09:07:00',0,121,'WPRC','WPRC0107','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,3,0,0,'',0,0,'','','','','',2526,'H','I',123,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 09:07:44','vishal','2025-11-08 09:13:49',0),(8237,2526,0,0,2742,'2025-11-08','09:09:18',2104,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',3008,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 09:09:18','reception','2025-11-08 09:09:18',0),(8238,2526,0,0,2743,'2025-11-08','00:00:00',2105,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3009,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 09:14:55','reception','2025-11-08 09:16:52',0),(8239,2526,0,0,2743,'2025-11-08','09:16:52',2105,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3009,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 09:16:52','reception','2025-11-08 09:16:52',0),(8240,2526,0,0,2744,'2025-11-08','00:00:00',2106,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',3010,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 09:18:04','reception','2025-11-08 09:20:53',0),(8241,2526,0,0,2744,'2025-11-08','09:20:53',2106,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,5,0,0,'',0,0,'','','','','',2526,'H','O',3010,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 09:20:53','reception','2025-11-08 09:20:53',0),(8242,2526,0,0,2744,'2025-11-08','09:20:53',2106,0,'OPWD','OPWD0013','H','N',4.00,100,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',3010,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 09:20:53','reception','2025-11-08 09:20:53',0),(8243,2526,0,0,2745,'2025-11-08','00:00:00',2107,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3011,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 09:25:09','reception','2025-11-08 09:25:44',0),(8244,2526,0,0,2746,'2025-11-08','00:00:00',2108,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3012,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 09:50:47','reception','2025-11-08 09:51:33',0),(8245,2526,0,0,2747,'2025-11-08','09:45:00',1976,139,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',125,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 09:57:37','riya','2025-11-09 11:58:26',0),(8246,2526,0,0,2747,'2025-11-08','09:45:00',1976,139,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',125,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 09:57:37','riya','2025-11-09 11:58:26',0),(8247,2526,0,0,2747,'2025-11-08','09:45:00',1976,139,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',125,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-07 21:27:37','riya','2025-11-09 11:58:26',0),(8248,2526,0,0,2747,'2025-11-08','09:45:00',1976,139,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',125,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-07 21:27:37','riya','2025-11-09 11:58:26',0),(8249,2526,0,0,2747,'2025-11-08','09:45:00',1976,139,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',125,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-07 21:27:37','riya','2025-11-09 11:58:26',0),(8250,2526,0,0,2747,'2025-11-08','09:45:00',1976,139,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','409','','','',2526,'H','I',125,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-07 21:27:37','riya','2025-11-09 11:58:26',0),(8251,2526,0,0,2747,'2025-11-08','09:45:00',1976,139,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','409','','','',2526,'H','I',125,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-07 21:27:37','riya','2025-11-09 11:58:26',0),(8252,2526,0,0,2748,'2025-11-08','00:00:00',2109,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3013,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 10:01:30','reception','2025-11-08 10:02:19',0),(8253,2526,0,0,2749,'2025-11-08','00:00:00',2110,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3014,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 10:18:09','reception','2025-11-08 10:20:11',0),(8254,2526,0,0,2750,'2025-11-08','00:00:00',2111,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3015,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 10:23:16','reception','2025-11-08 14:01:47',0),(8255,2526,0,0,2751,'2025-11-08','00:00:00',2112,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3016,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-08 10:24:11','drashti','2025-11-08 10:25:11',0),(8256,2526,0,0,2752,'2025-11-08','00:00:00',2113,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3017,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 10:26:06','reception','2025-11-08 10:26:26',0),(8257,2526,0,0,2753,'2025-11-08','00:00:00',2114,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3018,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 10:36:57','reception','2025-11-08 10:37:36',0),(8258,2526,0,0,2754,'2025-11-08','00:00:00',2115,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3019,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-08 10:41:24','drashti','2025-11-08 10:42:10',0),(8259,2526,0,0,2755,'2025-11-08','00:00:00',2116,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',3020,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 10:43:06','reception','2025-11-08 10:43:31',0),(8260,2526,0,0,2756,'2025-11-08','00:00:00',1019,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3022,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-08 10:43:25','drashti','2025-11-08 10:44:52',0),(8261,2526,0,0,2757,'2025-11-08','00:00:00',1472,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3021,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-08 10:43:33','janvi','2025-11-08 10:44:01',0),(8262,2526,0,0,2758,'2025-11-08','00:00:00',2117,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3023,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 10:45:03','reception','2025-11-08 10:45:21',0),(8263,2526,0,0,2759,'2025-11-08','10:49:47',2118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3024,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-08 10:49:47','janvi','2025-11-08 10:49:47',0),(8264,2526,0,0,2760,'2025-11-08','10:52:08',221,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3025,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-08 10:52:08','janvi','2025-11-08 10:52:08',0),(8265,2526,0,0,2761,'2025-11-08','00:00:00',2119,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3026,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 10:57:36','reception','2025-11-08 10:57:53',0),(8266,2526,0,0,2762,'2025-11-08','00:00:00',2120,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3027,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-08 10:59:35','drashti','2025-11-08 11:00:25',0),(8267,2526,0,0,2763,'2025-11-08','00:00:00',2121,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3028,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 11:01:53','reception','2025-11-08 11:02:31',0),(8268,2526,0,0,2755,'2025-11-08','11:06:18',2116,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',3029,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-08 11:06:18','janvi','2025-11-08 11:06:18',0),(8269,2526,0,0,2764,'2025-11-08','00:00:00',1452,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3030,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 11:06:58','manshi','2025-11-08 11:07:09',0),(8270,2526,0,0,2765,'2025-11-08','00:00:00',2122,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3032,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-08 11:07:10','drashti','2025-11-08 11:08:04',0),(8271,2526,0,0,2750,'2025-11-08','11:07:18',2111,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3031,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 11:07:18','reception','2025-11-08 11:07:18',0),(8272,2526,0,0,2750,'2025-11-08','11:07:18',2111,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3031,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 11:07:18','reception','2025-11-08 11:07:18',0),(8273,2526,0,0,2750,'2025-11-08','11:07:18',2111,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3031,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 11:07:18','reception','2025-11-08 11:07:18',0),(8274,2526,0,0,2766,'2025-11-08','00:00:00',2123,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3033,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 11:13:28','manshi','2025-11-08 11:13:44',0),(8275,2526,0,0,2767,'2025-11-08','00:00:00',2124,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3034,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 11:15:46','manshi','2025-11-08 11:16:22',0),(8276,2526,0,0,2768,'2025-11-08','00:00:00',1020,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3035,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 11:21:12','manshi','2025-11-08 11:21:22',0),(8277,2526,0,0,2769,'2025-11-08','00:00:00',303,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3066,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-08 11:21:29','janvi','2025-11-08 13:04:22',0),(8278,2526,0,0,2770,'2025-11-08','00:00:00',2125,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3036,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 11:23:31','reception','2025-11-08 11:23:48',0),(8279,2526,0,0,2771,'2025-11-08','00:00:00',2126,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3037,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 11:26:16','reception','2025-11-08 11:26:32',0),(8280,2526,0,0,2772,'2025-11-08','00:00:00',1310,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',3038,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 11:30:13','reception','2025-11-08 11:30:28',0),(8281,2526,0,0,2766,'2025-11-08','11:30:40',2123,0,'XRY','XRY0151','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3039,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 11:30:40','manshi','2025-11-08 11:30:40',0),(8282,2526,0,0,2773,'2025-11-08','00:00:00',2127,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3040,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 11:32:03','reception','2025-11-08 11:32:23',0),(8283,2526,0,0,2774,'2025-11-08','00:00:00',80,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3041,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 11:34:01','reception','2025-11-08 11:34:18',0),(8284,2526,0,0,2775,'2025-11-08','11:37:16',1669,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3042,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-08 11:37:16','janvi','2025-11-08 11:37:16',0),(8285,2526,0,0,2776,'2025-11-08','00:00:00',2128,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3043,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 11:37:40','reception','2025-11-08 11:38:07',0),(8286,2526,0,0,2749,'2025-11-08','11:41:15',2110,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3044,1,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 11:41:15','reception','2025-11-08 11:41:15',0),(8287,2526,0,0,2749,'2025-11-08','11:41:15',2110,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3044,2,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 11:41:15','reception','2025-11-08 11:41:15',0),(8288,2526,0,0,2749,'2025-11-08','11:41:15',2110,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3044,3,471,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 11:41:15','reception','2025-11-08 11:41:15',0),(8289,2526,0,0,2777,'2025-11-08','00:00:00',696,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3045,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-08 11:42:19','drashti','2025-11-08 11:42:40',0),(8290,2526,0,0,2778,'2025-11-08','00:00:00',2129,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3046,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 11:42:27','reception','2025-11-08 11:42:55',0),(8291,2526,0,0,2779,'2025-11-08','11:45:01',1837,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3047,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-08 11:45:00','janvi','2025-11-08 11:45:00',0),(8292,2526,0,0,2780,'2025-11-08','00:00:00',2130,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3048,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 11:46:55','reception','2025-11-08 11:47:10',0),(8293,2526,0,0,2767,'2025-11-08','11:49:23',2124,0,'XRY','XRY0013','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',3049,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 11:49:23','manshi','2025-11-08 12:03:34',0),(8294,2526,0,0,2781,'2025-11-08','00:00:00',2131,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3050,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 11:49:39','reception','2025-11-08 11:51:25',0),(8295,2526,0,0,2602,'2025-11-08','11:48:00',0,135,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',124,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 11:50:11','','0000-00-00 00:00:00',0),(8296,2526,0,0,2602,'2025-11-08','11:49:00',0,135,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','','','','',2526,'H','I',124,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 11:50:11','','0000-00-00 00:00:00',0),(8297,2526,0,0,2602,'2025-11-08','11:49:00',0,135,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','','','','',2526,'H','I',124,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 11:50:11','','0000-00-00 00:00:00',0),(8298,2526,0,0,2765,'2025-11-08','11:57:14',2122,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3051,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 11:57:14','reception','2025-11-08 11:57:14',0),(8299,2526,0,0,2765,'2025-11-08','11:57:14',2122,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',3051,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 11:57:14','reception','2025-11-08 11:57:14',0),(8300,2526,0,0,2782,'2025-11-08','00:00:00',2132,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3053,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 12:06:11','reception','2025-11-08 12:07:15',0),(8301,2526,0,0,2767,'2025-11-08','12:07:50',2124,0,'XRY','XRY0013','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3054,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 12:07:50','manshi','2025-11-08 12:07:50',0),(8302,2526,0,0,2783,'2025-11-08','00:00:00',2133,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3055,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 12:23:03','reception','2025-11-08 12:23:32',0),(8303,2526,0,0,2784,'2025-11-08','12:28:20',1860,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',3056,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-08 12:28:20','drashti','2025-11-08 12:28:20',0),(8304,2526,0,0,2785,'2025-11-08','00:00:00',89,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3057,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 12:30:05','reception','2025-11-08 12:30:21',0),(8305,2526,0,0,2786,'2025-11-08','00:00:00',507,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3058,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 12:34:42','reception','2025-11-08 12:35:18',0),(8306,2526,0,0,2787,'2025-11-08','00:00:00',1738,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',3059,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-08 12:38:15','drashti','2025-11-08 12:39:51',0),(8307,2526,0,0,2788,'2025-11-08','00:00:00',2134,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3061,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-08 12:43:14','janvi','2025-11-08 12:44:29',0),(8308,2526,0,0,2789,'2025-11-08','00:00:00',2135,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',3060,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-08 12:43:28','drashti','2025-11-08 12:43:58',0),(8309,2526,0,0,2790,'2025-11-08','00:00:00',2136,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3062,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 12:45:28','reception','2025-11-08 12:46:06',0),(8310,2526,0,0,2782,'2025-11-08','12:50:00',2132,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3063,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 12:50:00','reception','2025-11-08 12:50:00',0),(8311,2526,0,0,2782,'2025-11-08','12:50:00',2132,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3063,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 12:50:00','reception','2025-11-08 12:50:00',0),(8312,2526,0,0,2782,'2025-11-08','12:50:00',2132,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3063,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 12:50:00','reception','2025-11-08 12:50:00',0),(8313,2526,0,0,2773,'2025-11-08','12:56:53',2127,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3064,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 12:56:53','reception','2025-11-08 12:56:53',0),(8314,2526,0,0,2773,'2025-11-08','12:56:53',2127,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3064,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 12:56:53','reception','2025-11-08 12:56:53',0),(8315,2526,0,0,2791,'2025-11-08','00:00:00',2137,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-08 12:59:56','janvi','2025-11-08 00:29:56',0),(8316,2526,0,0,2778,'2025-11-08','13:04:19',2129,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3065,1,471,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 13:04:19','reception','2025-11-08 13:04:19',0),(8317,2526,0,0,2778,'2025-11-08','13:04:19',2129,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3065,2,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 13:04:19','reception','2025-11-08 13:04:19',0),(8318,2526,0,0,2778,'2025-11-08','13:04:19',2129,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3065,3,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 13:04:19','reception','2025-11-08 13:04:19',0),(8319,2526,0,0,2792,'2025-11-08','00:00:00',2138,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3067,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-08 13:09:09','drashti','2025-11-08 13:09:41',0),(8320,2526,0,0,2793,'2025-11-08','13:15:00',2137,140,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',129,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 13:28:34','riya','2025-11-10 11:19:46',0),(8321,2526,0,0,2793,'2025-11-08','13:15:00',2137,140,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',129,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 13:28:34','riya','2025-11-10 11:19:46',0),(8322,2526,0,0,2793,'2025-11-08','13:15:00',2137,140,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',129,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 00:58:34','riya','2025-11-10 11:19:46',0),(8323,2526,0,0,2793,'2025-11-08','13:15:00',2137,140,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',129,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 00:58:34','riya','2025-11-10 11:19:46',0),(8324,2526,0,0,2793,'2025-11-08','13:15:00',2137,140,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',129,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 00:58:34','riya','2025-11-10 11:19:46',0),(8325,2526,0,0,2793,'2025-11-08','13:15:00',2137,140,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 00:58:34','riya','2025-11-10 11:21:38',0),(8326,2526,0,0,2793,'2025-11-08','13:15:00',2137,140,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',129,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 00:58:34','riya','2025-11-10 11:19:46',0),(8327,2526,0,0,2790,'2025-11-08','13:28:40',2136,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3068,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 13:28:40','reception','2025-11-08 13:28:40',0),(8328,2526,0,0,2790,'2025-11-08','13:28:40',2136,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3068,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 13:28:40','reception','2025-11-08 13:28:40',0),(8329,2526,0,0,2794,'2025-11-08','00:00:00',2139,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3069,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 13:34:43','reception','2025-11-08 13:35:14',0),(8330,2526,0,0,2780,'2025-11-08','13:46:28',2130,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3070,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 13:46:28','reception','2025-11-08 13:46:28',0),(8331,2526,0,0,2780,'2025-11-08','13:46:28',2130,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3070,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 13:46:28','reception','2025-11-08 13:46:28',0),(8332,2526,0,0,2780,'2025-11-08','13:46:28',2130,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3070,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 13:46:28','reception','2025-11-08 13:46:28',0),(8333,2526,0,0,2795,'2025-11-08','00:00:00',2140,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-08 14:03:11','shweta','2025-11-08 01:33:11',0),(8334,2526,0,0,2750,'2025-11-08','14:07:14',2111,0,'PKG','CASE','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3072,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-08 14:07:14','reception','2025-11-08 14:07:14',0),(8335,2526,0,0,2395,'2025-11-04','14:32:00',0,129,'OETR','OETR0005','H','N',2.00,1000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',233,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 14:39:25','','0000-00-00 00:00:00',0),(8336,2526,0,0,2796,'2025-11-08','00:00:00',2141,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3073,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-08 14:40:19','shweta','2025-11-08 14:42:07',0),(8337,2526,0,0,2599,'2025-11-08','13:00:00',0,134,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',256,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 02:39:43','riya','2025-11-09 08:55:50',0),(8338,2526,0,0,2599,'2025-11-08','13:00:00',0,134,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',256,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 02:39:43','riya','2025-11-09 08:55:50',0),(8339,2526,0,0,2599,'2025-11-08','13:00:00',0,134,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',256,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 02:39:43','riya','2025-11-09 08:55:50',0),(8340,2526,0,0,2599,'2025-11-08','13:00:00',0,134,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','406','','','',2526,'H','I',256,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 02:39:43','riya','2025-11-09 08:55:50',0),(8341,2526,0,0,2599,'2025-11-08','13:00:00',0,134,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','406','','','',2526,'H','I',256,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 02:39:43','riya','2025-11-09 08:55:50',0),(8342,2526,0,0,2691,'2025-11-08','13:33:00',2073,138,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',130,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 02:39:43','riya','2025-11-08 18:41:56',0),(8343,2526,0,0,2691,'2025-11-08','13:33:00',2073,138,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',130,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 02:39:43','riya','2025-11-08 18:41:56',0),(8344,2526,0,0,2691,'2025-11-08','13:33:00',2073,138,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',130,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 02:39:43','riya','2025-11-08 18:41:56',0),(8345,2526,0,0,2691,'2025-11-08','13:33:00',2073,138,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',130,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 02:39:43','riya','2025-11-08 18:41:56',0),(8346,2526,0,0,2691,'2025-11-08','13:33:00',2073,138,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',130,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 02:39:43','riya','2025-11-08 18:41:56',0),(8347,2526,0,0,2796,'2025-11-08','15:13:46',2141,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3074,1,234,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-08 15:13:46','shweta','2025-11-08 15:13:46',0),(8348,2526,0,0,2796,'2025-11-08','15:13:46',2141,0,'NEU1','NEU10017','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3074,2,266,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-08 15:13:46','shweta','2025-11-08 15:13:46',0),(8349,2526,0,0,2797,'2025-11-08','16:42:46',1133,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3075,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-08 16:42:46','janvi','2025-11-08 16:42:46',0),(8350,2526,0,0,2798,'2025-11-08','00:00:00',2142,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',3076,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 16:46:32','manshi','2025-11-08 16:50:09',0),(8351,2526,0,0,2798,'2025-11-08','16:50:09',2142,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',3076,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 16:50:09','manshi','2025-11-08 16:50:09',0),(8352,2526,0,0,2798,'2025-11-08','16:50:09',2142,0,'XRY','XRY0045','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',3076,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 16:50:09','manshi','2025-11-08 16:50:09',0),(8353,2526,0,0,2799,'2025-11-08','00:00:00',1088,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 17:43:56','manshi','2025-11-08 05:13:56',0),(8354,2526,0,0,2800,'2025-11-08','00:00:00',2143,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3077,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 17:48:21','manshi','2025-11-08 17:51:24',0),(8355,2526,0,0,2800,'2025-11-08','17:51:24',2143,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',3077,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 17:51:24','manshi','2025-11-08 17:51:24',0),(8356,2526,0,0,2800,'2025-11-08','17:51:24',2143,0,'XRY','XRY0358','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3077,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 17:51:24','manshi','2025-11-08 17:51:24',0),(8357,2526,0,0,2801,'2025-11-08','18:00:00',0,141,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',127,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 17:55:37','riya','2025-11-09 11:54:13',0),(8358,2526,0,0,2801,'2025-11-08','18:00:00',0,141,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',127,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-08 17:55:37','riya','2025-11-09 11:54:13',0),(8359,2526,0,0,2802,'2025-11-08','00:00:00',2144,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3078,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 18:04:19','manshi','2025-11-08 18:07:13',0),(8360,2526,0,0,2802,'2025-11-08','18:07:13',2144,0,'XRY','XRY0045','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3078,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 18:07:13','manshi','2025-11-08 18:07:13',0),(8361,2526,0,0,2802,'2025-11-08','18:07:13',2144,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',3078,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 18:07:13','manshi','2025-11-08 18:07:13',0),(8362,2526,0,0,2691,'2025-11-08','18:41:00',2073,138,'XRY','XRY0045','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',130,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 18:41:56','','0000-00-00 00:00:00',0),(8363,2526,0,0,2804,'2025-11-08','18:50:30',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3079,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-08 18:50:30','janvi','2025-11-08 18:50:30',0),(8364,2526,0,0,2805,'2025-11-08','00:00:00',2145,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3080,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-08 18:54:15','priyanshi','2025-11-08 18:54:30',0),(8365,2526,0,0,2806,'2025-11-08','19:00:00',0,142,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',128,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 19:11:39','riya','2025-11-08 19:22:53',0),(8366,2526,0,0,2806,'2025-11-08','19:00:00',0,142,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',128,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 19:11:39','riya','2025-11-08 19:22:53',0),(8367,2526,0,0,2806,'2025-11-08','19:00:00',0,142,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',128,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 06:41:40','riya','2025-11-08 19:22:53',0),(8368,2526,0,0,2806,'2025-11-08','19:00:00',0,142,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',128,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 06:41:40','riya','2025-11-08 19:22:53',0),(8369,2526,0,0,2806,'2025-11-08','19:00:00',0,142,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',128,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 06:41:40','riya','2025-11-08 19:22:53',0),(8370,2526,0,0,2806,'2025-11-09','19:00:00',0,142,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','408','','','',2526,'H','I',128,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 06:41:40','riya','2025-11-09 17:41:24',0),(8371,2526,0,0,2806,'2025-11-09','19:00:00',0,142,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','408','','','',2526,'H','I',128,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 06:41:40','riya','2025-11-09 17:41:24',0),(8372,2526,0,0,2803,'2025-11-08','19:22:11',1276,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3081,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-08 19:22:11','janvi','2025-11-08 19:22:11',0),(8373,2526,0,0,2806,'2025-11-08','19:22:00',0,142,'SURG','SURG0016','H','N',1.00,11000,11000,'P',0,0,0.00,0.00,11000.00,11000,6,0,0,'',0,0,'','','','','',2526,'H','I',128,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 19:22:53','riya','2025-11-09 18:33:21',0),(8374,2526,0,0,2807,'2025-11-08','19:26:35',2005,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3082,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-08 19:26:35','janvi','2025-11-08 19:26:35',0),(8375,2526,0,0,2808,'2025-11-08','00:00:00',572,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3083,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 19:29:38','manshi','2025-11-08 19:31:07',0),(8376,2526,0,0,2624,'2025-11-08','18:00:00',0,136,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',126,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 07:03:01','riya','2025-11-08 19:33:06',0),(8377,2526,0,0,2624,'2025-11-08','18:00:00',0,136,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',126,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 07:03:01','riya','2025-11-08 19:33:06',0),(8378,2526,0,0,2624,'2025-11-08','18:00:00',0,136,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',126,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 07:03:01','riya','2025-11-08 19:33:06',0),(8379,2526,0,0,2624,'2025-11-08','18:00:00',0,136,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','401','','','',2526,'H','I',126,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 07:03:01','riya','2025-11-08 19:33:06',0),(8380,2526,0,0,2624,'2025-11-08','18:00:00',0,136,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','401','','','',2526,'H','I',126,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 07:03:01','riya','2025-11-08 19:33:06',0),(8381,2526,0,0,2808,'2025-11-08','19:37:37',572,0,'XRY','XRY0244','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3084,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-08 19:37:37','manshi','2025-11-08 19:37:37',0),(8382,2526,0,0,2809,'2025-11-08','00:00:00',2146,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-08 19:48:14','janvi','2025-11-08 07:18:14',0),(8383,2526,0,0,2809,'2025-11-08','19:51:02',2146,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',3085,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-11-08 19:51:02','janvi','2025-11-08 19:51:02',0),(8384,2526,0,0,2809,'2025-11-08','19:51:02',2146,0,'OPWD','OPWD0015','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,5,0,0,'',0,0,'','','','','',2526,'H','O',3085,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-11-08 19:51:02','janvi','2025-11-08 19:51:02',0),(8385,2526,0,0,2809,'2025-11-08','19:51:02',2146,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,69,'',0,0,'','','','','',2526,'H','O',3085,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-11-08 19:51:02','janvi','2025-11-08 19:51:02',0),(8386,2526,0,0,2809,'2025-11-08','19:51:02',2146,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',3085,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-11-08 19:51:02','janvi','2025-11-08 19:51:02',0),(8387,2526,0,0,2810,'2025-11-08','00:00:00',2147,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3086,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-08 19:56:03','janvi','2025-11-08 19:56:43',0),(8388,2526,0,0,2811,'2025-11-09','01:00:00',0,143,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 08:43:20','riya','2025-11-09 08:56:40',0),(8389,2526,0,0,2811,'2025-11-09','01:00:00',0,143,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 08:43:20','riya','2025-11-09 08:56:40',0),(8390,2526,0,0,2811,'2025-11-09','01:00:00',0,143,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 20:13:20','riya','2025-11-09 08:56:40',0),(8391,2526,0,0,2811,'2025-11-09','01:00:00',0,143,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 20:13:20','riya','2025-11-09 08:56:40',0),(8392,2526,0,0,2811,'2025-11-09','01:00:00',0,143,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 20:13:20','riya','2025-11-09 08:56:40',0),(8393,2526,0,0,2811,'2025-11-09','01:00:00',0,143,'DRC','DRC0018','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','404','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 20:13:20','riya','2025-11-20 11:12:56',0),(8394,2526,0,0,2811,'2025-11-09','01:00:00',0,143,'DRC','DRC0019','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','404','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 20:13:20','riya','2025-11-20 11:12:56',0),(8395,2526,0,0,2624,'2025-11-08','08:52:00',0,136,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',126,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 08:54:15','','0000-00-00 00:00:00',0),(8396,2526,0,0,2624,'2025-11-09','08:52:00',0,136,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',126,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 08:54:15','','0000-00-00 00:00:00',0),(8397,2526,0,0,2624,'2025-11-07','08:53:00',0,136,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',126,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 08:54:15','','0000-00-00 00:00:00',0),(8398,2526,0,0,2624,'2025-11-08','08:53:00',0,136,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',126,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 08:54:15','','0000-00-00 00:00:00',0),(8399,2526,0,0,2624,'2025-11-09','08:53:00',0,136,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','','','','',2526,'H','I',126,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 08:54:15','','0000-00-00 00:00:00',0),(8400,2526,0,0,2599,'2025-11-07','08:55:00',0,134,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',256,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 08:55:50','','0000-00-00 00:00:00',0),(8401,2526,0,0,2599,'2025-11-08','08:55:00',0,134,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',256,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 08:55:50','','0000-00-00 00:00:00',0),(8402,2526,0,0,2599,'2025-11-09','08:55:00',0,134,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',256,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 08:55:50','','0000-00-00 00:00:00',0),(8403,2526,0,0,2599,'2025-11-09','08:55:00',0,134,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','','','','',2526,'H','I',256,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 08:55:50','','0000-00-00 00:00:00',0),(8404,2526,0,0,2812,'2025-11-09','00:00:00',761,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-09 10:14:25','reception','2025-11-08 21:44:25',0),(8405,2526,0,0,2812,'2025-11-09','10:18:12',761,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3087,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-09 10:18:12','reception','2025-11-09 10:18:12',0),(8406,2526,0,0,2812,'2025-11-09','10:18:12',761,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',3087,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-09 10:18:12','reception','2025-11-09 10:18:12',0),(8407,2526,0,0,2691,'2025-11-09','11:48:00',2073,138,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',130,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 11:48:45','','0000-00-00 00:00:00',0),(8408,2526,0,0,2806,'2025-11-09','11:49:00',0,142,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',128,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 11:49:18','','0000-00-00 00:00:00',0),(8409,2526,0,0,2813,'2025-11-09','00:00:00',2148,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-09 11:50:56','reception','2025-11-08 23:20:56',0),(8410,2526,0,0,2801,'2025-11-08','18:00:00',0,141,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',127,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 23:21:38','riya','2025-11-09 11:54:13',0),(8411,2526,0,0,2801,'2025-11-08','18:00:00',0,141,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',127,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 23:21:38','riya','2025-11-09 11:54:13',0),(8412,2526,0,0,2801,'2025-11-08','18:00:00',0,141,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',127,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 23:21:38','riya','2025-11-09 11:54:13',0),(8413,2526,0,0,2801,'2025-11-09','18:00:00',0,141,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,6,0,0,'',0,0,'','411','','','',2526,'H','I',127,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 23:21:38','riya','2025-11-09 11:54:13',0),(8414,2526,0,0,2801,'2025-11-08','18:00:00',0,141,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,6,0,0,'',0,0,'','411','','','',2526,'H','I',127,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-08 23:21:38','riya','2025-11-09 11:54:13',0),(8415,2526,0,0,2814,'2025-11-09','11:53:23',1928,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',3088,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-09 11:53:23','reception','2025-11-09 11:53:23',0),(8416,2526,0,0,2801,'2025-11-09','11:52:00',0,141,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,6,0,0,'',0,0,'','','','','',2526,'H','I',127,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 11:54:13','','0000-00-00 00:00:00',0),(8417,2526,0,0,2801,'2025-11-08','11:53:00',0,141,'SURG','SURG0016','H','N',1.00,12600,12600,'P',0,0,0.00,0.00,12600.00,12600,6,0,0,'',0,0,'','','','','',2526,'H','I',127,1,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 11:54:13','riya','2025-11-09 18:25:39',0),(8418,2526,0,0,2801,'2025-11-08','11:53:00',0,141,'SURG','SURG0015','H','N',1.00,4200,4200,'P',0,0,0.00,0.00,4200.00,4200,6,0,0,'',0,0,'','','','','',2526,'H','I',127,2,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 11:54:13','riya','2025-11-09 18:25:39',0),(8419,2526,0,0,2747,'2025-11-08','11:56:00',1976,139,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',125,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 11:58:26','','0000-00-00 00:00:00',0),(8420,2526,0,0,2747,'2025-11-09','11:57:00',1976,139,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',125,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 11:58:26','','0000-00-00 00:00:00',0),(8421,2526,0,0,2747,'2025-11-08','11:57:00',1976,139,'SURG','SURG0016','H','N',1.00,13800,13800,'P',0,0,0.00,0.00,13800.00,13800,3,0,0,'',0,0,'','','','','',2526,'H','I',125,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 11:58:26','riya','2025-11-09 12:01:07',0),(8422,2526,0,0,2747,'2025-11-08','11:57:00',1976,139,'SURG','SURG0015','H','N',1.00,4600,4600,'P',0,0,0.00,0.00,4600.00,4600,3,0,0,'',0,0,'','','','','',2526,'H','I',125,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 11:58:26','riya','2025-11-09 12:01:07',0),(8423,2526,0,0,2747,'2025-11-09','11:58:00',1976,139,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',125,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 11:58:26','','0000-00-00 00:00:00',0),(8424,2526,0,0,2813,'2025-11-09','11:59:34',2148,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',3089,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-09 11:59:34','reception','2025-11-09 11:59:34',0),(8425,2526,0,0,2813,'2025-11-09','11:59:34',2148,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',3089,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-09 11:59:34','reception','2025-11-09 11:59:34',0),(8426,2526,0,0,2813,'2025-11-09','11:59:34',2148,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,70,'',0,0,'','','','','',2526,'H','O',3089,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-09 11:59:34','reception','2025-11-09 11:59:34',0),(8427,2526,0,0,2813,'2025-11-09','11:59:34',2148,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',3089,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-09 11:59:34','reception','2025-11-09 11:59:34',0),(8428,2526,0,0,2813,'2025-11-09','11:59:34',2148,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,5,0,0,'',0,0,'','','','','',2526,'H','O',3089,5,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-09 11:59:34','reception','2025-11-09 11:59:34',0),(8429,2526,0,0,2624,'2025-11-06','12:05:00',0,136,'ROOM','ROOM0003','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',126,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 12:06:12','','0000-00-00 00:00:00',0),(8430,2526,0,0,2624,'2025-11-06','12:05:00',0,136,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',126,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 12:06:12','','0000-00-00 00:00:00',0),(8431,2526,0,0,2624,'2025-11-06','12:05:00',0,136,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',126,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 12:06:12','','0000-00-00 00:00:00',0),(8432,2526,0,0,2624,'2025-11-06','12:09:00',0,136,'ROOM','ROOM0006','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',2526,'H','I',126,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 12:09:57','','0000-00-00 00:00:00',0),(8433,2526,0,0,2624,'2025-11-06','12:16:00',0,136,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',126,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 12:17:05','','0000-00-00 00:00:00',0),(8434,2526,0,0,2801,'2025-11-08','18:00:00',0,141,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-09 00:48:13','riya','2025-11-09 13:22:22',0),(8435,2526,0,0,2806,'2025-11-09','17:39:00',0,142,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,6,0,0,'',0,0,'','','','','',2526,'H','I',128,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 17:41:24','','0000-00-00 00:00:00',0),(8436,2526,0,0,2806,'2025-11-08','17:40:00',0,142,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','','','','',2526,'H','I',128,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 17:41:24','','0000-00-00 00:00:00',0),(8437,2526,0,0,2806,'2025-11-08','19:00:00',0,142,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','408','','','',2526,'H','I',128,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 05:11:30','riya','2025-11-09 17:42:16',0),(8438,2526,0,0,2806,'2025-11-08','17:41:00',0,142,'SURG','SURG0015','H','N',1.00,2750,2750,'P',0,0,0.00,0.00,2750.00,2750,6,0,0,'',0,0,'','','','','',2526,'H','I',128,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 17:42:16','riya','2025-11-09 18:37:26',0),(8439,2526,0,0,2691,'2025-11-09','13:33:00',2073,138,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',130,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 06:02:12','riya','2025-11-09 18:32:17',0),(8440,2526,0,0,2691,'2025-11-09','13:33:00',2073,138,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',130,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 06:02:12','riya','2025-11-09 18:32:17',0),(8441,2526,0,0,2691,'2025-11-09','13:33:00',2073,138,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',130,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 06:02:12','riya','2025-11-09 18:32:17',0),(8442,2526,0,0,2691,'2025-11-09','13:33:00',2073,138,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',130,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 06:02:12','riya','2025-11-09 18:32:17',0),(8443,2526,0,0,2691,'2025-11-09','13:33:00',2073,138,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',130,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 06:02:12','riya','2025-11-09 18:32:17',0),(8444,2526,0,0,2815,'2025-11-10','00:00:00',2149,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 09:11:28','reception','2025-11-09 20:41:28',0),(8445,2526,0,0,2815,'2025-11-10','09:11:56',2149,0,'SURG','SURG0005','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3090,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 09:11:56','reception','2025-11-10 09:11:56',0),(8446,2526,0,0,2816,'2025-11-10','09:14:03',1288,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3091,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 09:14:03','reception','2025-11-10 09:14:03',0),(8447,2526,0,0,2817,'2025-11-10','00:00:00',2150,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 09:15:39','reception','2025-11-09 20:45:39',0),(8448,2526,0,0,2817,'2025-11-10','09:16:10',2150,0,'SURG','SURG0005','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,0.00,1200,7,0,0,'',0,0,'','','','','',2526,'H','O',3092,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 09:16:10','reception','2025-11-10 09:16:10',0),(8449,2526,0,0,2818,'2025-11-10','09:19:24',2105,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3093,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 09:19:24','reception','2025-11-10 09:19:24',0),(8450,2526,0,0,2819,'2025-11-10','00:00:00',2151,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 09:24:10','reception','2025-11-09 20:54:10',0),(8451,2526,0,0,2820,'2025-11-10','00:00:00',2152,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3094,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-10 09:27:53','janvi','2025-11-10 09:40:36',0),(8452,2526,0,0,2821,'2025-11-10','00:00:00',1335,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3095,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 09:33:57','reception','2025-11-10 09:34:11',0),(8453,2526,0,0,2822,'2025-11-10','00:00:00',2153,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 09:37:58','drashti','2025-11-09 21:07:58',0),(8454,2526,0,0,2819,'2025-11-10','09:38:15',2151,0,'WPRC','WPRC0024','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,5,0,0,'',0,0,'','','','','',2526,'H','O',3096,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 09:38:15','reception','2025-11-10 09:38:15',0),(8455,2526,0,0,2819,'2025-11-10','09:38:15',2151,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',3096,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 09:38:15','reception','2025-11-10 09:38:15',0),(8456,2526,0,0,2822,'2025-11-10','09:40:25',2153,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',3097,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 09:40:25','drashti','2025-11-10 09:40:25',0),(8457,2526,0,0,2822,'2025-11-10','09:40:25',2153,0,'OPWD','OPWD0013','H','N',5.00,100,500,'P',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3097,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 09:40:25','drashti','2025-11-10 09:40:25',0),(8458,2526,0,0,2824,'2025-11-10','00:00:00',2154,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 09:42:01','drashti','2025-11-09 21:12:01',0),(8459,2526,0,0,2824,'2025-11-10','09:43:10',2154,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3099,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 09:43:10','drashti','2025-11-10 09:43:10',0),(8460,2526,0,0,2824,'2025-11-10','09:43:10',2154,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',3099,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 09:43:10','drashti','2025-11-10 09:43:10',0),(8461,2526,0,0,2825,'2025-11-10','09:30:00',0,144,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',234,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 09:46:33','riya','2025-11-11 10:16:35',0),(8462,2526,0,0,2825,'2025-11-10','09:30:00',0,144,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',234,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 09:46:33','riya','2025-11-11 10:16:35',0),(8463,2526,0,0,2825,'2025-11-10','09:30:00',0,144,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',234,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 21:16:33','riya','2025-11-11 10:16:35',0),(8464,2526,0,0,2825,'2025-11-10','09:30:00',0,144,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',234,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 21:16:33','riya','2025-11-11 10:16:35',0),(8465,2526,0,0,2825,'2025-11-10','09:30:00',0,144,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',234,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 21:16:33','riya','2025-11-11 10:16:35',0),(8466,2526,0,0,2825,'2025-11-10','09:30:00',0,144,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','408','','','',2526,'H','I',234,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 21:16:33','riya','2025-11-11 10:16:35',0),(8467,2526,0,0,2825,'2025-11-10','09:30:00',0,144,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','408','','','',2526,'H','I',234,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 21:16:33','riya','2025-11-11 10:16:35',0),(8468,2526,0,0,2826,'2025-11-10','00:00:00',2155,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3100,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 09:47:17','reception','2025-11-10 09:47:42',0),(8469,2526,0,0,2827,'2025-11-10','00:00:00',12,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',3118,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 09:49:43','reception','2025-11-10 11:01:07',0),(8470,2526,0,0,2828,'2025-11-10','00:00:00',404,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3101,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 09:51:04','reception','2025-11-10 09:52:22',0),(8471,2526,0,0,2829,'2025-11-10','00:00:00',2156,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3102,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 09:51:48','drashti','2025-11-10 09:53:25',0),(8472,2526,0,0,2830,'2025-11-10','00:00:00',2157,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3103,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 10:04:12','reception','2025-11-10 10:04:49',0),(8473,2526,0,0,2831,'2025-11-10','00:00:00',2158,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',3115,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 10:12:05','manshi','2025-11-10 10:57:09',0),(8474,2526,0,0,2832,'2025-11-10','00:00:00',1609,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3104,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 10:12:18','reception','2025-11-10 10:13:03',0),(8475,2526,0,0,2833,'2025-11-10','00:00:00',140,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3105,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-10 10:19:22','janvi','2025-11-10 10:19:39',0),(8476,2526,0,0,2834,'2025-11-10','00:00:00',2159,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3106,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 10:29:50','reception','2025-11-10 10:30:20',0),(8477,2526,0,0,2835,'2025-11-10','10:32:09',2005,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3107,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 10:32:09','drashti','2025-11-10 10:32:09',0),(8478,2526,0,0,2836,'2025-11-10','00:00:00',2160,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3108,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 10:32:22','reception','2025-11-10 10:32:49',0),(8479,2526,0,0,2837,'2025-11-10','00:00:00',1701,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',3109,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 10:36:45','manshi','2025-11-10 10:37:08',0),(8480,2526,0,0,2838,'2025-11-10','00:00:00',525,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-10 10:37:13','janvi','2025-11-09 22:07:13',0),(8481,2526,0,0,2839,'2025-11-10','00:00:00',2161,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 10:39:25','drashti','2025-11-09 22:09:25',0),(8482,2526,0,0,2840,'2025-11-10','00:00:00',2162,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3110,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 10:40:04','reception','2025-11-10 10:40:37',0),(8483,2526,0,0,2839,'2025-11-10','10:41:08',2161,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3111,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 10:41:08','drashti','2025-11-10 10:41:08',0),(8484,2526,0,0,2839,'2025-11-10','10:41:08',2161,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',3111,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 10:41:08','drashti','2025-11-10 10:41:08',0),(8485,2526,0,0,2839,'2025-11-10','10:41:08',2161,0,'OPWD','OPWD0019','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',3111,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 10:41:08','drashti','2025-11-10 10:41:08',0),(8486,2526,0,0,2841,'2025-11-10','00:00:00',2163,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3112,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 10:46:47','drashti','2025-11-10 10:47:49',0),(8487,2526,0,0,2842,'2025-11-10','00:00:00',2164,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3114,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 10:47:04','reception','2025-11-10 10:48:22',0),(8488,2526,0,0,2843,'2025-11-10','10:47:55',1898,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',3113,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-10 10:47:55','janvi','2025-11-10 10:47:55',0),(8489,2526,0,0,2844,'2025-11-10','00:00:00',2165,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3116,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 10:56:04','drashti','2025-11-10 10:57:45',0),(8490,2526,0,0,2845,'2025-11-10','00:00:00',2166,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3124,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 10:58:43','manshi','2025-11-10 11:22:02',0),(8491,2526,0,0,2846,'2025-11-10','00:00:00',1125,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3117,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 11:00:29','manshi','2025-11-10 11:00:42',0),(8492,2526,0,0,2847,'2025-11-10','00:00:00',2167,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3119,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 11:03:48','drashti','2025-11-10 11:04:24',0),(8493,2526,0,0,2848,'2025-11-10','00:00:00',33,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 11:11:04','drashti','2025-11-09 22:41:04',0),(8494,2526,0,0,2849,'2025-11-10','00:00:00',489,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',3120,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 11:12:42','manshi','2025-11-10 11:12:53',0),(8495,2526,0,0,2850,'2025-11-10','00:00:00',2168,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3121,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 11:16:13','drashti','2025-11-10 11:16:59',0),(8496,2526,0,0,2851,'2025-11-10','00:00:00',2169,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3122,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 11:17:20','manshi','2025-11-10 12:10:59',0),(8497,2526,0,0,2793,'2025-11-09','13:15:00',2137,140,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',129,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 22:47:57','riya','2025-11-10 11:19:46',0),(8498,2526,0,0,2793,'2025-11-09','13:15:00',2137,140,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',129,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 22:47:57','riya','2025-11-10 11:19:46',0),(8499,2526,0,0,2793,'2025-11-09','13:15:00',2137,140,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',129,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 22:47:57','riya','2025-11-10 11:19:46',0),(8500,2526,0,0,2793,'2025-11-09','13:15:00',2137,140,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',129,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 22:47:57','riya','2025-11-10 11:19:46',0),(8501,2526,0,0,2793,'2025-11-09','13:15:00',2137,140,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',129,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-09 22:47:57','riya','2025-11-10 11:19:46',0),(8502,2526,0,0,2852,'2025-11-10','00:00:00',2170,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3123,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 11:18:09','reception','2025-11-10 11:19:21',0),(8503,2526,0,0,2793,'2025-11-08','11:18:00',2137,140,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,3,0,0,'',0,0,'','','','','',2526,'H','I',129,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 11:19:46','','0000-00-00 00:00:00',0),(8504,2526,0,0,2793,'2025-11-08','11:18:00',2137,140,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',129,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 11:19:46','','0000-00-00 00:00:00',0),(8505,2526,0,0,2793,'2025-11-08','11:18:00',2137,140,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',129,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 11:19:46','','0000-00-00 00:00:00',0),(8506,2526,0,0,2793,'2025-11-10','11:18:00',2137,140,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',129,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 11:19:46','','0000-00-00 00:00:00',0),(8507,2526,0,0,2793,'2025-11-08','11:19:00',2137,140,'SURG','SURG0014','H','N',1.00,32200,32200,'P',0,0,0.00,0.00,32200.00,32200,3,0,0,'',0,0,'','','','','',2526,'H','I',129,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 11:19:46','riya','2025-11-10 11:30:52',0),(8508,2526,0,0,2793,'2025-11-08','11:19:00',2137,140,'SURG','SURG0015','H','N',1.00,10700,10700,'P',0,0,0.00,0.00,10700.00,10700,3,0,0,'',0,0,'','','','','',2526,'H','I',129,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 11:19:46','riya','2025-11-10 11:30:52',0),(8509,2526,0,0,2793,'2025-11-08','11:20:00',2137,140,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','I',129,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 11:21:38','','0000-00-00 00:00:00',0),(8510,2526,0,0,2793,'2025-11-10','11:21:00',2137,140,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',129,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 11:21:38','','0000-00-00 00:00:00',0),(8511,2526,0,0,2853,'2025-11-10','11:24:40',1974,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3125,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 11:24:40','drashti','2025-11-10 11:24:40',0),(8512,2526,0,0,2854,'2025-11-10','00:00:00',2171,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3126,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 11:27:16','reception','2025-11-10 11:27:38',0),(8513,2526,0,0,2855,'2025-11-10','00:00:00',208,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3127,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 11:34:53','reception','2025-11-10 11:36:09',0),(8514,2526,0,0,2856,'2025-11-10','00:00:00',1617,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3128,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 11:35:48','drashti','2025-11-10 11:37:21',0),(8515,2526,0,0,2836,'2025-11-10','11:40:24',2160,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3129,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 11:40:24','reception','2025-11-10 11:40:24',0),(8516,2526,0,0,2836,'2025-11-10','11:40:24',2160,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3129,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 11:40:24','reception','2025-11-10 11:40:24',0),(8517,2526,0,0,2836,'2025-11-10','11:40:24',2160,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3129,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 11:40:24','reception','2025-11-10 11:40:24',0),(8518,2526,0,0,2823,'2025-11-10','11:41:19',2145,0,'OPWD','OPWD0023','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,0.00,4000,3,0,0,'',0,0,'','','','','',2526,'H','O',3130,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-10 11:41:19','janvi','2025-11-10 11:41:19',0),(8519,2526,0,0,2826,'2025-11-10','11:41:28',2155,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3131,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 11:41:28','reception','2025-11-10 11:41:28',0),(8520,2526,0,0,2826,'2025-11-10','11:41:28',2155,0,'NEU1','NEU10020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3131,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 11:41:28','reception','2025-11-10 11:41:28',0),(8521,2526,0,0,2857,'2025-11-10','11:42:31',1938,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3132,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 11:42:31','manshi','2025-11-10 11:42:31',0),(8522,2526,0,0,2858,'2025-11-10','00:00:00',2172,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3133,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 11:43:23','drashti','2025-11-10 11:44:15',0),(8523,2526,0,0,2859,'2025-11-10','00:00:00',2173,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',3134,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 11:43:58','manshi','2025-11-10 11:44:26',0),(8524,2526,0,0,2851,'2025-11-10','11:45:30',2169,0,'XRY','XRY0254','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',3135,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 11:45:30','manshi','2025-11-10 11:45:30',0),(8525,2526,0,0,2851,'2025-11-10','11:45:30',2169,0,'XRY','XRY0390','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',3135,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 11:45:30','manshi','2025-11-10 11:45:30',0),(8526,2526,0,0,2846,'2025-11-10','11:46:20',1125,0,'XRY','XRY0244','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3136,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 11:46:20','manshi','2025-11-10 11:46:20',0),(8527,2526,0,0,2860,'2025-11-10','00:00:00',2174,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3137,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 11:46:37','drashti','2025-11-10 11:48:14',0),(8528,2526,0,0,2861,'2025-11-10','00:00:00',2175,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',3138,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 11:49:18','manshi','2025-11-10 11:49:45',0),(8529,2526,0,0,2862,'2025-11-10','00:00:00',2176,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3139,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 11:52:41','reception','2025-11-10 11:52:54',0),(8530,2526,0,0,2863,'2025-11-10','00:00:00',2177,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',3140,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 11:54:58','manshi','2025-11-10 12:54:25',0),(8531,2526,0,0,2864,'2025-11-10','00:00:00',2178,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3141,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 11:58:12','reception','2025-11-10 11:58:29',0),(8532,2526,0,0,2866,'2025-11-10','12:01:05',1870,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3142,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-10 12:01:05','janvi','2025-11-10 12:01:05',0),(8533,2526,0,0,2865,'2025-11-10','12:01:29',1574,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3143,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 12:01:29','manshi','2025-11-10 12:01:29',0),(8534,2526,0,0,2867,'2025-11-10','00:00:00',2179,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3144,1,250,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 12:02:31','reception','2025-11-10 12:03:07',0),(8535,2526,0,0,2868,'2025-11-10','00:00:00',2180,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3145,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-10 12:08:31','janvi','2025-11-10 12:09:00',0),(8536,2526,0,0,2869,'2025-11-10','00:00:00',2181,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3146,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 12:09:15','drashti','2025-11-10 12:09:33',0),(8537,2526,0,0,2870,'2025-11-10','00:00:00',2182,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3148,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 12:17:45','reception','2025-11-10 12:18:17',0),(8538,2526,0,0,2858,'2025-11-10','12:21:55',2172,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3149,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 12:21:55','reception','2025-11-10 12:21:55',0),(8539,2526,0,0,2858,'2025-11-10','12:21:55',2172,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3149,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 12:21:55','reception','2025-11-10 12:21:55',0),(8540,2526,0,0,2858,'2025-11-10','12:21:55',2172,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3149,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 12:21:55','reception','2025-11-10 12:21:55',0),(8541,2526,0,0,2869,'2025-11-10','12:26:26',2181,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3150,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-10 12:26:26','janvi','2025-11-10 12:26:26',0),(8542,2526,0,0,2834,'2025-11-10','12:31:01',2159,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3151,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 12:31:01','reception','2025-11-10 12:31:01',0),(8543,2526,0,0,2834,'2025-11-10','12:31:01',2159,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3151,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 12:31:01','reception','2025-11-10 12:31:01',0),(8544,2526,0,0,2834,'2025-11-10','12:31:01',2159,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3151,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 12:31:01','reception','2025-11-10 12:31:01',0),(8545,2526,0,0,2871,'2025-11-10','00:00:00',2183,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3152,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 12:33:27','reception','2025-11-10 12:33:45',0),(8546,2526,0,0,2872,'2025-11-10','00:00:00',1614,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3153,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 12:39:54','manshi','2025-11-10 12:40:03',0),(8547,2526,0,0,2873,'2025-11-10','00:00:00',2184,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3154,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 12:49:40','reception','2025-11-10 12:49:49',0),(8548,2526,0,0,2874,'2025-11-10','00:00:00',1675,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3155,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 12:50:43','reception','2025-11-10 12:51:10',0),(8549,2526,0,0,2852,'2025-11-10','12:53:10',2170,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3156,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 12:53:10','reception','2025-11-10 12:53:10',0),(8550,2526,0,0,2852,'2025-11-10','12:53:10',2170,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3156,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 12:53:10','reception','2025-11-10 12:53:10',0),(8551,2526,0,0,2875,'2025-11-10','00:00:00',2185,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3158,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 12:57:08','reception','2025-11-10 12:57:35',0),(8552,2526,0,0,2870,'2025-11-10','13:04:06',2182,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3159,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 13:04:06','reception','2025-11-10 13:04:06',0),(8553,2526,0,0,2870,'2025-11-10','13:04:06',2182,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3159,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 13:04:06','reception','2025-11-10 13:04:06',0),(8554,2526,0,0,2876,'2025-11-10','13:00:00',0,145,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 13:10:07','riya','2025-11-11 11:23:13',0),(8555,2526,0,0,2876,'2025-11-10','13:00:00',0,145,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 13:10:07','riya','2025-11-11 11:23:13',0),(8556,2526,0,0,2876,'2025-11-10','13:00:00',0,145,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 00:40:07','riya','2025-11-11 11:23:13',0),(8557,2526,0,0,2876,'2025-11-10','13:00:00',0,145,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 00:40:07','riya','2025-11-11 11:23:13',0),(8558,2526,0,0,2876,'2025-11-10','13:00:00',0,145,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 00:40:07','riya','2025-11-11 11:23:13',0),(8559,2526,0,0,2876,'2025-11-10','13:00:00',0,145,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-10 00:40:07','riya','2025-11-11 11:23:13',0),(8560,2526,0,0,2876,'2025-11-10','13:00:00',0,145,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,36,0,0,'',0,0,'','208','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 00:40:07','riya','2025-11-11 11:23:13',0),(8561,2526,0,0,2877,'2025-11-10','00:00:00',2186,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3160,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 13:15:08','reception','2025-11-10 13:15:41',0),(8562,2526,0,0,2862,'2025-11-10','13:28:13',2176,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3161,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 13:28:13','reception','2025-11-10 13:28:13',0),(8563,2526,0,0,2862,'2025-11-10','13:28:13',2176,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3161,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 13:28:13','reception','2025-11-10 13:28:13',0),(8564,2526,0,0,2862,'2025-11-10','13:28:13',2176,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3161,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 13:28:13','reception','2025-11-10 13:28:13',0),(8565,2526,0,0,2878,'2025-11-10','00:00:00',864,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',3162,1,200,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 13:57:36','reception','2025-11-10 14:29:42',0),(8566,2526,0,0,2879,'2025-11-10','15:30:00',0,146,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 15:31:27','riya','2025-11-11 11:17:22',0),(8567,2526,0,0,2879,'2025-11-10','15:30:00',0,146,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 15:31:27','riya','2025-11-11 11:17:22',0),(8568,2526,0,0,2879,'2025-11-10','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 03:01:27','riya','2025-11-11 11:17:22',0),(8569,2526,0,0,2879,'2025-11-10','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 03:01:27','riya','2025-11-11 11:17:22',0),(8570,2526,0,0,2879,'2025-11-10','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 03:01:27','riya','2025-11-11 11:17:22',0),(8571,2526,0,0,2879,'2025-11-10','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-10 03:01:27','riya','2025-11-11 11:17:22',0),(8572,2526,0,0,2879,'2025-11-10','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,36,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 03:01:27','riya','2025-11-11 11:17:22',0),(8573,2526,0,0,2880,'2025-11-10','00:00:00',1503,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3163,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 16:17:50','reception','2025-11-10 16:18:18',0),(8574,2526,0,0,2811,'2025-11-10','01:00:00',0,143,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 04:18:28','riya','2025-11-10 16:48:39',0),(8575,2526,0,0,2811,'2025-11-10','01:00:00',0,143,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 04:18:28','riya','2025-11-10 16:48:39',0),(8576,2526,0,0,2811,'2025-11-10','01:00:00',0,143,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 04:18:28','riya','2025-11-10 16:48:39',0),(8577,2526,0,0,2811,'2025-11-10','01:00:00',0,143,'DRC','DRC0018','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 04:18:28','riya','2025-11-20 11:12:56',0),(8578,2526,0,0,2811,'2025-11-10','01:00:00',0,143,'DRC','DRC0019','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 04:18:28','riya','2025-11-20 11:12:56',0),(8579,2526,0,0,2691,'2025-11-10','13:33:00',2073,138,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',130,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 04:20:39','riya','2025-11-10 16:50:44',0),(8580,2526,0,0,2691,'2025-11-10','13:33:00',2073,138,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',130,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 04:20:39','riya','2025-11-10 16:50:44',0),(8581,2526,0,0,2691,'2025-11-10','13:33:00',2073,138,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',130,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 04:20:39','riya','2025-11-10 16:50:44',0),(8582,2526,0,0,2691,'2025-11-10','13:33:00',2073,138,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',0,'','',0,23,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 04:20:39','riya','2025-11-11 12:00:22',0),(8583,2526,0,0,2691,'2025-11-10','13:33:00',2073,138,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',130,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 04:20:39','riya','2025-11-10 16:50:44',0),(8584,2526,0,0,2881,'2025-11-10','16:57:45',1859,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3164,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 16:57:45','reception','2025-11-10 16:57:45',0),(8585,2526,0,0,2882,'2025-11-10','00:00:00',2187,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3165,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 17:00:11','reception','2025-11-10 17:00:51',0),(8586,2526,0,0,2883,'2025-11-10','00:00:00',1612,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3166,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 17:02:19','reception','2025-11-10 17:02:36',0),(8587,2526,0,0,2884,'2025-11-10','00:00:00',2188,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3167,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 17:03:21','drashti','2025-11-10 17:03:39',0),(8588,2526,0,0,2885,'2025-11-10','00:00:00',524,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3168,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 17:12:55','reception','2025-11-10 17:13:07',0),(8589,2526,0,0,2887,'2025-11-10','00:00:00',2189,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3169,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 17:23:01','drashti','2025-11-10 17:23:21',0),(8590,2526,0,0,2888,'2025-11-10','00:00:00',2190,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3170,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 17:27:44','janvi','2025-11-10 17:49:14',0),(8591,2526,0,0,2889,'2025-11-10','00:00:00',1694,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 17:32:06','manshi','2025-11-10 05:02:06',0),(8592,2526,0,0,2890,'2025-11-10','00:00:00',2191,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3171,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 17:33:06','reception','2025-11-10 17:33:31',0),(8593,2526,0,0,2886,'2025-11-10','17:38:19',1976,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',3172,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-10 17:38:19','janvi','2025-11-10 17:38:19',0),(8594,2526,0,0,2891,'2025-11-10','17:43:42',2118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3173,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-10 17:43:42','janvi','2025-11-10 17:43:42',0),(8595,2526,0,0,2892,'2025-11-10','00:00:00',2192,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',3174,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 17:45:22','reception','2025-11-10 17:46:44',0),(8596,2526,0,0,2893,'2025-11-10','17:48:40',2139,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3175,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 17:48:40','reception','2025-11-10 17:48:40',0),(8597,2526,0,0,2893,'2025-11-10','17:48:40',2139,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3175,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 17:48:40','reception','2025-11-10 17:48:40',0),(8598,2526,0,0,2893,'2025-11-10','17:48:40',2139,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3175,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 17:48:40','reception','2025-11-10 17:48:40',0),(8599,2526,0,0,2894,'2025-11-10','00:00:00',2193,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3177,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 17:50:56','drashti','2025-11-10 17:51:32',0),(8600,2526,0,0,2884,'2025-11-10','17:53:05',2188,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3178,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 17:53:05','reception','2025-11-10 17:53:05',0),(8601,2526,0,0,2884,'2025-11-10','17:53:05',2188,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3178,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 17:53:05','reception','2025-11-10 17:53:05',0),(8602,2526,0,0,2895,'2025-11-10','00:00:00',430,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3179,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-10 17:58:30','janvi','2025-11-10 17:58:39',0),(8603,2526,0,0,2896,'2025-11-10','00:00:00',2194,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3180,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 18:04:29','janvi','2025-11-10 18:08:31',0),(8604,2526,0,0,2896,'2025-11-10','00:00:00',2194,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3182,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 18:10:18','manshi','2025-11-10 18:12:14',0),(8605,2526,0,0,2887,'2025-11-10','18:15:24',2189,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3183,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 18:15:24','reception','2025-11-10 18:15:24',0),(8606,2526,0,0,2887,'2025-11-10','18:15:24',2189,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3183,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 18:15:24','reception','2025-11-10 18:15:24',0),(8607,2526,0,0,2887,'2025-11-10','18:15:24',2189,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3183,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 18:15:24','reception','2025-11-10 18:15:24',0),(8608,2526,0,0,2897,'2025-11-10','00:00:00',200,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3184,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-10 18:16:46','janvi','2025-11-10 18:17:39',0),(8609,2526,0,0,2896,'2025-11-10','18:19:43',2194,0,'XRY','XRY0308','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3185,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 18:19:43','manshi','2025-11-10 18:19:43',0),(8610,2526,0,0,2899,'2025-11-10','00:00:00',2195,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3186,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 18:21:38','reception','2025-11-10 18:21:53',0),(8611,2526,0,0,2900,'2025-11-10','18:23:10',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3187,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 18:23:10','drashti','2025-11-10 18:23:10',0),(8612,2526,0,0,2901,'2025-11-10','00:00:00',1826,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 18:23:38','manshi','2025-11-10 05:53:38',0),(8613,2526,0,0,2902,'2025-11-10','00:00:00',653,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3188,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 18:24:32','reception','2025-11-10 18:24:51',0),(8614,2526,0,0,2903,'2025-11-10','00:00:00',2196,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3189,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 18:25:44','reception','2025-11-10 18:26:00',0),(8615,2526,0,0,2904,'2025-11-10','00:00:00',2197,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-10 18:26:48','janvi','2025-11-10 05:56:48',0),(8616,2526,0,0,2905,'2025-11-10','00:00:00',2198,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3190,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 18:30:11','drashti','2025-11-10 18:31:46',0),(8617,2526,0,0,2898,'2025-11-10','18:33:08',1343,0,'MOPR','MOPR0006','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3191,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 18:33:08','drashti','2025-11-10 18:33:08',0),(8618,2526,0,0,2907,'2025-11-10','00:00:00',2199,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3192,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 18:34:43','drashti','2025-11-10 18:35:24',0),(8619,2526,0,0,2909,'2025-11-10','00:00:00',2200,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 18:53:38','manshi','2025-11-10 06:23:38',0),(8620,2526,0,0,2910,'2025-11-10','00:00:00',1401,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',3193,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 18:55:00','manshi','2025-11-10 18:55:10',0),(8621,2526,0,0,2911,'2025-11-10','00:00:00',1661,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',3194,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 18:57:47','manshi','2025-11-10 19:23:38',0),(8622,2526,0,0,2903,'2025-11-10','18:59:13',2196,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3195,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 18:59:13','reception','2025-11-10 18:59:13',0),(8623,2526,0,0,2903,'2025-11-10','18:59:13',2196,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3195,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 18:59:13','reception','2025-11-10 18:59:13',0),(8624,2526,0,0,2909,'2025-11-10','18:59:52',2200,0,'XRY','XRY0189','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',3196,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 18:59:52','manshi','2025-11-10 18:59:52',0),(8625,2526,0,0,2912,'2025-11-10','19:06:53',1912,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',3197,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 19:06:53','reception','2025-11-10 19:06:53',0),(8626,2526,0,0,2913,'2025-11-10','00:00:00',941,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3198,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 19:15:56','manshi','2025-11-10 19:17:20',0),(8627,2526,0,0,2914,'2025-11-10','00:00:00',2201,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',3200,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 19:26:27','manshi','2025-11-10 19:29:26',0),(8628,2526,0,0,2915,'2025-11-10','00:00:00',2202,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3201,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 19:30:09','reception','2025-11-10 19:30:44',0),(8629,2526,0,0,2916,'2025-11-10','00:00:00',2203,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 19:33:59','drashti','2025-11-10 07:03:59',0),(8630,2526,0,0,2916,'2025-11-10','19:35:35',2203,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3202,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 19:35:35','drashti','2025-11-10 19:35:35',0),(8631,2526,0,0,2916,'2025-11-10','19:46:58',2203,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',3203,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 19:46:58','drashti','2025-11-10 19:46:58',0),(8632,2526,0,0,2917,'2025-11-10','00:00:00',2204,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3204,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-10 19:48:40','drashti','2025-11-10 19:49:21',0),(8633,2526,0,0,2914,'2025-11-10','19:53:14',2201,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,7,0,0,'',0,0,'','','','','',2526,'H','O',3205,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-10 19:53:14','manshi','2025-11-10 19:53:14',0),(8634,2526,0,0,2918,'2025-11-10','00:00:00',2205,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3206,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 20:24:36','reception','2025-11-10 20:34:20',0),(8635,2526,0,0,2918,'2025-11-10','20:34:20',2205,0,'OPWD','OPWD0023','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',3206,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-10 20:34:20','reception','2025-11-10 20:34:20',0),(8636,2526,0,0,2919,'2025-11-10','21:00:00',951,147,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',135,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 21:14:10','vishal','2025-11-12 12:37:09',0),(8637,2526,0,0,2919,'2025-11-10','21:00:00',951,147,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',135,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 21:14:10','vishal','2025-11-12 12:37:09',0),(8638,2526,0,0,2919,'2025-11-10','21:00:00',951,147,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',135,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 08:44:11','vishal','2025-11-12 12:37:09',0),(8639,2526,0,0,2919,'2025-11-10','21:00:00',951,147,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',135,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 08:44:11','vishal','2025-11-12 12:37:09',0),(8640,2526,0,0,2919,'2025-11-10','21:00:00',951,147,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',135,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 08:44:11','vishal','2025-11-12 12:37:09',0),(8641,2526,0,0,2919,'2025-11-12','21:00:00',951,147,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',135,16,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 08:44:11','riya','2025-11-13 17:44:03',0),(8642,2526,0,0,2919,'2025-11-12','21:00:00',951,147,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',135,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 08:44:11','riya','2025-11-13 17:43:02',0),(8643,2526,0,0,2920,'2025-11-11','00:00:00',2206,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3207,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 09:13:52','reception','2025-11-11 09:14:47',0),(8644,2526,0,0,2921,'2025-11-11','09:23:53',2022,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',3208,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-11 09:23:53','reception','2025-11-11 09:23:53',0),(8645,2526,0,0,2921,'2025-11-11','09:23:53',2022,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,71,'',0,0,'','','','','',2526,'H','O',3208,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-11 09:23:53','reception','2025-11-11 09:23:53',0),(8646,2526,0,0,2921,'2025-11-11','09:23:53',2022,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',3208,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-11 09:23:53','reception','2025-11-11 09:23:53',0),(8647,2526,0,0,2922,'2025-11-11','00:00:00',1692,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3209,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 09:52:18','reception','2025-11-11 09:52:38',0),(8648,2526,0,0,2923,'2025-11-11','00:00:00',509,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3210,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 10:03:32','reception','2025-11-11 10:03:53',0),(8649,2526,0,0,2924,'2025-11-11','00:00:00',2207,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3211,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 10:05:11','reception','2025-11-11 10:06:13',0),(8650,2526,0,0,2925,'2025-11-11','00:00:00',1713,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3212,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 10:10:39','drashti','2025-11-11 10:10:52',0),(8651,2526,0,0,2926,'2025-11-11','00:00:00',2208,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3213,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 10:12:13','drashti','2025-11-11 10:13:05',0),(8652,2526,0,0,2825,'2025-11-11','10:16:00',0,144,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',234,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 10:16:35','','0000-00-00 00:00:00',0),(8653,2526,0,0,2927,'2025-11-11','00:00:00',2209,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',3216,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-11 10:27:54','manshi','2025-11-11 10:38:52',0),(8654,2526,0,0,2928,'2025-11-11','00:00:00',166,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3214,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 10:28:50','janvi','2025-11-11 10:29:05',0),(8655,2526,0,0,2929,'2025-11-11','00:00:00',493,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3215,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 10:29:42','drashti','2025-11-11 10:30:10',0),(8656,2526,0,0,2930,'2025-11-11','00:00:00',2210,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3217,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 10:40:45','reception','2025-11-11 10:41:21',0),(8657,2526,0,0,2931,'2025-11-11','00:00:00',2211,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3218,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 10:44:40','drashti','2025-11-11 10:45:23',0),(8658,2526,0,0,2932,'2025-11-11','00:00:00',1736,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3219,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 10:46:11','reception','2025-11-11 10:48:07',0),(8659,2526,0,0,2933,'2025-11-11','00:00:00',2212,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3220,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 10:49:29','reception','2025-11-11 10:51:08',0),(8660,2526,0,0,2934,'2025-11-11','00:00:00',2213,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3221,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 10:51:47','reception','2025-11-11 10:52:08',0),(8661,2526,0,0,2935,'2025-11-11','00:00:00',2214,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 10:52:11','drashti','2025-11-10 22:22:11',0),(8662,2526,0,0,2936,'2025-11-11','00:00:00',1223,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 10:54:58','janvi','2025-11-10 22:24:58',0),(8663,2526,0,0,2937,'2025-11-11','00:00:00',2215,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3222,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 10:55:07','drashti','2025-11-11 10:55:50',0),(8664,2526,0,0,2938,'2025-11-11','00:00:00',2216,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3223,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 10:57:02','drashti','2025-11-11 10:57:22',0),(8665,2526,0,0,2939,'2025-11-11','00:00:00',2217,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3224,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-11 10:57:57','manshi','2025-11-11 11:18:09',0),(8666,2526,0,0,2940,'2025-11-11','00:00:00',1734,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3225,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:02:12','reception','2025-11-11 11:03:47',0),(8667,2526,0,0,2940,'2025-11-11','11:03:47',1734,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3225,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:03:47','reception','2025-11-11 11:03:47',0),(8668,2526,0,0,2941,'2025-11-11','00:00:00',2218,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3226,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 11:03:51','janvi','2025-11-11 11:04:06',0),(8669,2526,0,0,2942,'2025-11-11','00:00:00',2219,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3227,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 11:04:43','drashti','2025-11-11 11:05:23',0),(8670,2526,0,0,2943,'2025-11-11','00:00:00',638,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3228,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:08:19','reception','2025-11-11 11:08:38',0),(8671,2526,0,0,2944,'2025-11-11','00:00:00',1420,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3229,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 11:08:46','drashti','2025-11-11 13:03:59',0),(8672,2526,0,0,2945,'2025-11-11','00:00:00',2220,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3231,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-11 11:09:55','manshi','2025-11-11 11:11:11',0),(8673,2526,0,0,2946,'2025-11-11','00:00:00',271,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3230,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 11:10:12','janvi','2025-11-11 11:10:58',0),(8674,2526,0,0,2947,'2025-11-11','00:00:00',2221,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3232,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 11:11:32','drashti','2025-11-11 11:12:21',0),(8675,2526,0,0,2948,'2025-11-11','11:13:16',1548,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3233,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:13:16','reception','2025-11-11 11:13:16',0),(8676,2526,0,0,2951,'2025-11-11','00:00:00',1247,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3234,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:13:45','reception','2025-11-11 11:13:59',0),(8677,2526,0,0,2952,'2025-11-11','00:00:00',1865,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3235,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-11 11:16:06','manshi','2025-11-11 11:16:21',0),(8678,2526,0,0,2953,'2025-11-11','00:00:00',2222,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3236,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:16:10','reception','2025-11-11 11:16:24',0),(8679,2526,0,0,2879,'2025-11-10','11:14:00',0,146,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:17:22','','0000-00-00 00:00:00',0),(8680,2526,0,0,2879,'2025-11-10','11:14:00',0,146,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:17:22','','0000-00-00 00:00:00',0),(8681,2526,0,0,2879,'2025-11-10','11:14:00',0,146,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:17:22','','0000-00-00 00:00:00',0),(8682,2526,0,0,2879,'2025-11-10','11:15:00',0,146,'WPRC','WPRC0088','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,36,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:17:22','','0000-00-00 00:00:00',0),(8683,2526,0,0,2879,'2025-11-11','11:15:00',0,146,'WPRC','WPRC0092','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,39,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:17:22','','0000-00-00 00:00:00',0),(8684,2526,0,0,2879,'2025-11-11','11:15:00',0,146,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:17:22','','0000-00-00 00:00:00',0),(8685,2526,0,0,2879,'2025-11-10','11:15:00',0,146,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,13,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:17:22','vishal','2025-11-30 19:59:18',0),(8686,2526,0,0,2879,'2025-11-11','11:16:00',0,146,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,14,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:17:22','vishal','2025-11-30 19:59:18',0),(8687,2526,0,0,2879,'2025-11-10','11:16:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:17:22','','0000-00-00 00:00:00',0),(8688,2526,0,0,2879,'2025-11-11','11:16:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:17:22','','0000-00-00 00:00:00',0),(8689,2526,0,0,2879,'2025-11-10','11:16:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:17:22','','0000-00-00 00:00:00',0),(8690,2526,0,0,2879,'2025-11-11','11:16:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:17:22','vishal','2025-11-30 20:00:04',0),(8691,2526,0,0,2879,'2025-11-10','11:16:00',0,146,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:17:22','','0000-00-00 00:00:00',0),(8692,2526,0,0,2879,'2025-11-11','11:17:00',0,146,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:17:22','vishal','2025-11-30 20:00:04',0),(8693,2526,0,0,2954,'2025-11-11','00:00:00',2223,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3238,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 11:17:41','drashti','2025-11-11 11:19:11',0),(8694,2526,0,0,2879,'2025-11-10','11:17:00',0,146,'DRC','DRC0020','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,37,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:18:12','','0000-00-00 00:00:00',0),(8695,2526,0,0,2955,'2025-11-11','00:00:00',2224,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3239,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:19:01','reception','2025-11-11 11:19:16',0),(8696,2526,0,0,2956,'2025-11-11','00:00:00',2225,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3242,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 11:19:47','janvi','2025-11-11 11:23:10',0),(8697,2526,0,0,2920,'2025-11-11','11:20:52',2206,0,'NEU1','NEU10020','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3240,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:20:52','reception','2025-11-11 11:20:52',0),(8698,2526,0,0,2957,'2025-11-11','00:00:00',2226,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3241,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 11:20:53','janvi','2025-11-11 11:22:59',0),(8699,2526,0,0,2876,'2025-11-10','11:20:00',0,145,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:23:13','','0000-00-00 00:00:00',0),(8700,2526,0,0,2876,'2025-11-10','11:21:00',0,145,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:23:13','','0000-00-00 00:00:00',0),(8701,2526,0,0,2876,'2025-11-10','11:21:00',0,145,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:23:13','','0000-00-00 00:00:00',0),(8702,2526,0,0,2876,'2025-11-10','11:21:00',0,145,'WPRC','WPRC0077','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:23:13','vishal','2025-11-12 12:11:21',0),(8703,2526,0,0,2876,'2025-11-10','11:21:00',0,145,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:23:13','','0000-00-00 00:00:00',0),(8704,2526,0,0,2876,'2025-11-11','11:22:00',0,145,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:23:13','','0000-00-00 00:00:00',0),(8705,2526,0,0,2876,'2025-11-10','11:22:00',0,145,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:23:13','','0000-00-00 00:00:00',0),(8706,2526,0,0,2958,'2025-11-11','00:00:00',2227,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3243,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 11:31:05','janvi','2025-11-11 11:31:42',0),(8707,2526,0,0,2959,'2025-11-11','00:00:00',1033,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3244,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-11 11:33:03','manshi','2025-11-11 11:33:22',0),(8708,2526,0,0,2960,'2025-11-11','00:00:00',2228,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3245,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:33:20','reception','2025-11-11 12:50:33',0),(8709,2526,0,0,2811,'2025-11-11','01:00:00',0,143,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 23:05:50','riya','2025-11-11 11:36:06',0),(8710,2526,0,0,2811,'2025-11-11','01:00:00',0,143,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 23:05:50','riya','2025-11-11 11:36:06',0),(8711,2526,0,0,2811,'2025-11-11','01:00:00',0,143,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 23:05:50','riya','2025-11-11 11:36:06',0),(8712,2526,0,0,2811,'2025-11-11','01:00:00',0,143,'DRC','DRC0018','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 23:05:50','riya','2025-11-20 11:12:56',0),(8713,2526,0,0,2811,'2025-11-11','01:00:00',0,143,'DRC','DRC0019','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-10 23:05:50','riya','2025-11-20 11:12:56',0),(8714,2526,0,0,2961,'2025-11-11','00:00:00',2229,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3246,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 11:36:04','janvi','2025-11-11 11:37:06',0),(8715,2526,0,0,2962,'2025-11-11','00:00:00',2230,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3250,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 11:38:14','janvi','2025-11-11 11:40:28',0),(8716,2526,0,0,2934,'2025-11-11','11:38:19',2213,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3247,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:38:19','reception','2025-11-11 11:38:19',0),(8717,2526,0,0,2934,'2025-11-11','11:38:19',2213,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3247,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:38:19','reception','2025-11-11 11:38:19',0),(8718,2526,0,0,2934,'2025-11-11','11:38:19',2213,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3247,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:38:19','reception','2025-11-11 11:38:19',0),(8719,2526,0,0,2963,'2025-11-11','00:00:00',2231,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3248,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 11:39:16','drashti','2025-11-11 11:40:06',0),(8720,2526,0,0,2964,'2025-11-11','00:00:00',2232,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3249,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 11:39:22','janvi','2025-11-11 11:40:23',0),(8721,2526,0,0,2965,'2025-11-11','00:00:00',1228,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3251,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:41:34','reception','2025-11-11 11:41:48',0),(8722,2526,0,0,2966,'2025-11-11','00:00:00',2233,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3253,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 11:41:41','janvi','2025-11-11 11:42:38',0),(8723,2526,0,0,2967,'2025-11-11','00:00:00',1273,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3252,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 11:42:03','drashti','2025-11-11 11:42:34',0),(8724,2526,0,0,2968,'2025-11-11','00:00:00',2234,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3254,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:43:02','reception','2025-11-11 11:43:19',0),(8725,2526,0,0,2959,'2025-11-11','11:44:28',1033,0,'XRY','XRY0390','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',3255,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-11 11:44:28','manshi','2025-11-11 11:44:28',0),(8726,2526,0,0,2969,'2025-11-11','00:00:00',2235,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3257,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:45:52','reception','2025-11-11 11:49:28',0),(8727,2526,0,0,2924,'2025-11-11','11:46:27',2207,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3256,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:46:27','reception','2025-11-11 11:46:27',0),(8728,2526,0,0,2924,'2025-11-11','11:46:27',2207,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3256,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:46:27','reception','2025-11-11 11:46:27',0),(8729,2526,0,0,2924,'2025-11-11','11:46:27',2207,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3256,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:46:27','reception','2025-11-11 11:46:27',0),(8730,2526,0,0,2970,'2025-11-11','00:00:00',773,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3258,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 11:50:43','drashti','2025-11-11 11:51:12',0),(8731,2526,0,0,2971,'2025-11-11','00:00:00',2236,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3259,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 11:54:02','drashti','2025-11-11 11:55:21',0),(8732,2526,0,0,2972,'2025-11-11','00:00:00',1085,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3260,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 11:54:20','reception','2025-11-11 11:56:22',0),(8733,2526,0,0,2691,'2025-11-08','11:56:00',2073,138,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',130,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:57:34','','0000-00-00 00:00:00',0),(8734,2526,0,0,2691,'2025-11-11','11:57:00',2073,138,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',130,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 11:57:34','','0000-00-00 00:00:00',0),(8735,2526,0,0,2691,'2025-11-08','11:58:00',2073,138,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','','','','',2526,'H','I',130,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 12:00:22','','0000-00-00 00:00:00',0),(8736,2526,0,0,2691,'2025-11-10','11:58:00',2073,138,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','','','','',2526,'H','I',130,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 12:00:22','','0000-00-00 00:00:00',0),(8737,2526,0,0,2973,'2025-11-11','00:00:00',2237,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3261,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 12:01:15','reception','2025-11-11 12:02:01',0),(8738,2526,0,0,2974,'2025-11-11','12:03:41',1928,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3262,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-11 12:03:40','manshi','2025-11-11 12:03:40',0),(8739,2526,0,0,2975,'2025-11-11','00:00:00',816,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3263,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 12:05:21','drashti','2025-11-11 12:05:52',0),(8740,2526,0,0,2976,'2025-11-11','00:00:00',2238,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3265,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 12:09:25','drashti','2025-11-11 12:10:19',0),(8741,2526,0,0,2977,'2025-11-11','00:00:00',538,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3264,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 12:09:38','janvi','2025-11-11 12:09:54',0),(8742,2526,0,0,2978,'2025-11-11','12:13:56',1985,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,7,0,0,'',0,0,'','','','','',2526,'H','O',3266,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-11 12:13:56','manshi','2025-11-11 12:13:56',0),(8743,2526,0,0,2978,'2025-11-11','12:13:56',1985,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,7,0,0,'',0,0,'','','','','',2526,'H','O',3266,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-11 12:13:56','manshi','2025-11-11 12:13:56',0),(8744,2526,0,0,2979,'2025-11-11','00:00:00',1858,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-11 12:16:46','manshi','2025-11-10 23:46:46',0),(8745,2526,0,0,2980,'2025-11-11','00:00:00',2239,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3267,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 12:17:18','reception','2025-11-11 12:17:53',0),(8746,2526,0,0,2981,'2025-11-11','00:00:00',309,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3268,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 12:18:22','janvi','2025-11-11 12:19:00',0),(8747,2526,0,0,2982,'2025-11-11','00:00:00',2240,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',3269,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 12:19:42','reception','2025-11-11 12:20:25',0),(8748,2526,0,0,2983,'2025-11-11','00:00:00',2241,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3272,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 12:20:28','drashti','2025-11-11 12:23:15',0),(8749,2526,0,0,2984,'2025-11-11','00:00:00',2242,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3274,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 12:21:03','janvi','2025-11-11 12:23:39',0),(8750,2526,0,0,2985,'2025-11-11','00:00:00',2243,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3270,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 12:21:49','drashti','2025-11-11 12:23:00',0),(8751,2526,0,0,2986,'2025-11-11','00:00:00',2244,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3271,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 12:22:52','reception','2025-11-11 12:23:05',0),(8752,2526,0,0,2987,'2025-11-11','12:23:27',1420,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3273,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 12:23:27','janvi','2025-11-11 12:23:27',0),(8753,2526,0,0,2989,'2025-11-11','00:00:00',508,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3276,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 12:24:40','drashti','2025-11-11 12:25:24',0),(8754,2526,0,0,2988,'2025-11-11','12:24:58',1945,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',3275,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 12:24:58','reception','2025-11-11 12:24:58',0),(8755,2526,0,0,2990,'2025-11-11','00:00:00',1511,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3278,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 12:30:09','drashti','2025-11-11 12:30:39',0),(8756,2526,0,0,2950,'2025-11-11','12:30:27',2198,0,'OPWD','OPWD0023','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',3277,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 12:30:27','janvi','2025-11-11 12:30:27',0),(8757,2526,0,0,2958,'2025-11-11','12:31:50',2227,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',3279,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 12:31:50','drashti','2025-11-11 12:31:50',0),(8758,2526,0,0,2991,'2025-11-11','00:00:00',2245,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',3280,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-11 12:32:36','manshi','2025-11-11 12:34:39',0),(8759,2526,0,0,2991,'2025-11-11','12:34:39',2245,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',3280,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-11 12:34:39','manshi','2025-11-11 12:34:39',0),(8760,2526,0,0,2991,'2025-11-11','12:34:39',2245,0,'XRY','XRY0244','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3280,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-11 12:34:39','manshi','2025-11-11 12:34:39',0),(8761,2526,0,0,2992,'2025-11-11','00:00:00',21,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3281,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 12:35:59','janvi','2025-11-11 12:36:35',0),(8762,2526,0,0,2993,'2025-11-11','00:00:00',284,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3282,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 12:38:23','reception','2025-11-11 12:38:40',0),(8763,2526,0,0,2969,'2025-11-11','12:44:33',2235,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3283,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 12:44:33','reception','2025-11-11 12:44:33',0),(8764,2526,0,0,2969,'2025-11-11','12:44:33',2235,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3283,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 12:44:33','reception','2025-11-11 12:44:33',0),(8765,2526,0,0,2969,'2025-11-11','12:44:33',2235,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3283,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-11 12:44:33','reception','2025-11-11 12:44:33',0),(8766,2526,0,0,2949,'2025-11-11','12:44:34',2191,0,'OPWD','OPWD0023','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',3284,1,1500,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 12:44:34','janvi','2025-11-11 12:44:34',0),(8767,2526,0,0,2994,'2025-11-11','12:58:00',0,148,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',133,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 12:59:46','vishal','2025-11-12 13:32:36',0),(8768,2526,0,0,2994,'2025-11-11','12:58:00',0,148,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',133,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 12:59:46','vishal','2025-11-12 13:32:36',0),(8769,2526,0,0,2994,'2025-11-11','12:58:00',0,148,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',133,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 00:29:46','vishal','2025-11-12 13:32:36',0),(8770,2526,0,0,2994,'2025-11-11','12:58:00',0,148,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',133,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 00:29:46','vishal','2025-11-12 13:32:36',0),(8771,2526,0,0,2994,'2025-11-11','12:58:00',0,148,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',133,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 00:29:46','vishal','2025-11-12 13:32:36',0),(8772,2526,0,0,2994,'2025-11-12','12:58:00',0,148,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,6,0,0,'',0,0,'','403','','','',2526,'H','I',133,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 00:29:46','vishal','2025-11-12 13:32:36',0),(8773,2526,0,0,2994,'2025-11-11','12:58:00',0,148,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,6,0,0,'',0,0,'','403','','','',2526,'H','I',133,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 00:29:46','vishal','2025-11-12 13:32:36',0),(8774,2526,0,0,2811,'2025-11-11','13:40:00',0,143,'SURG','SURG0014','H','N',1.00,50000,50000,'P',0,0,0.00,0.00,50000.00,50000,3,0,0,'',0,0,'','','','','',0,'','',0,18,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 13:42:39','vishal','2025-11-12 12:56:40',0),(8775,2526,0,0,2811,'2025-11-11','13:40:00',0,143,'SURG','SURG0015','H','N',1.00,12500,12500,'P',0,0,0.00,0.00,12500.00,12500,8,0,0,'',0,0,'','','','','',0,'','',0,19,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 13:42:39','vishal','2025-11-12 12:56:40',0),(8776,2526,0,0,2938,'2025-11-11','13:49:11',2216,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',3287,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 13:49:11','janvi','2025-11-11 13:49:11',0),(8777,2526,0,0,2995,'2025-11-11','00:00:00',2246,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3288,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 13:50:16','drashti','2025-11-11 13:50:58',0),(8778,2526,0,0,2996,'2025-11-11','00:00:00',2247,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3289,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 14:09:49','janvi','2025-11-11 14:13:13',0),(8779,2526,0,0,2997,'2025-11-11','00:00:00',2248,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3290,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-11 14:11:44','shweta','2025-11-11 14:13:07',0),(8780,2526,0,0,2811,'2025-11-11','16:30:00',0,143,'SURG','SURG0018','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,5000.00,5000,3,0,0,'',0,0,'','','','','',0,'','',0,20,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 16:30:33','riya','2025-11-14 19:10:58',0),(8781,2526,0,0,2876,'2025-11-11','13:00:00',0,145,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 04:07:55','vishal','2025-11-12 12:09:45',0),(8782,2526,0,0,2876,'2025-11-11','13:00:00',0,145,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 04:07:55','vishal','2025-11-12 12:09:45',0),(8783,2526,0,0,2876,'2025-11-11','13:00:00',0,145,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 04:07:55','vishal','2025-11-12 12:11:21',0),(8784,2526,0,0,2876,'2025-11-11','13:00:00',0,145,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 04:07:55','vishal','2025-11-12 12:11:21',0),(8785,2526,0,0,2876,'2025-11-11','13:00:00',0,145,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 04:07:55','vishal','2025-11-12 12:11:21',0),(8786,2526,0,0,2879,'2025-11-11','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 04:08:32','riya','2025-11-27 17:57:23',0),(8787,2526,0,0,2879,'2025-11-11','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 04:08:32','riya','2025-12-01 20:13:25',0),(8788,2526,0,0,2879,'2025-11-11','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 04:08:32','riya','2025-12-01 20:13:25',0),(8789,2526,0,0,2879,'2025-11-11','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 04:08:32','vishal','2025-11-30 20:00:04',0),(8790,2526,0,0,2879,'2025-11-11','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-11 04:08:32','riya','2025-11-27 17:57:23',0),(8791,2526,0,0,2998,'2025-11-11','00:00:00',2249,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3292,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-11 16:41:39','shweta','2025-11-11 16:42:11',0),(8792,2526,0,0,2999,'2025-11-11','00:00:00',2250,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3293,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 16:42:36','drashti','2025-11-11 16:43:55',0),(8793,2526,0,0,3000,'2025-11-11','00:00:00',997,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3294,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-11 16:47:28','shweta','2025-11-11 16:49:08',0),(8794,2526,0,0,3001,'2025-11-11','00:00:00',2251,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3295,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 17:07:01','priyanshi','2025-11-11 17:07:41',0),(8795,2526,0,0,3002,'2025-11-11','17:10:21',2244,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3296,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 17:10:21','priyanshi','2025-11-11 17:10:21',0),(8796,2526,0,0,3002,'2025-11-11','17:10:21',2244,0,'NEU1','NEU10019','H','N',1.00,1800,1800,'P',0,0,0.00,0.00,0.00,1800,9999,0,0,'',0,0,'','','','','',2526,'H','O',3296,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 17:10:21','priyanshi','2025-11-11 17:10:21',0),(8797,2526,0,0,3002,'2025-11-11','17:10:21',2244,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3296,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 17:10:21','priyanshi','2025-11-11 17:10:21',0),(8798,2526,0,0,3003,'2025-11-11','00:00:00',460,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3297,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 17:16:10','priyanshi','2025-11-11 17:16:21',0),(8799,2526,0,0,3004,'2025-11-11','17:17:51',1976,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',3298,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 17:17:51','priyanshi','2025-11-11 17:17:51',0),(8800,2526,0,0,3005,'2025-11-11','00:00:00',2252,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3299,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 17:19:57','drashti','2025-11-11 17:21:01',0),(8801,2526,0,0,3006,'2025-11-11','17:24:36',2089,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3300,1,234,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 17:24:36','priyanshi','2025-11-11 17:24:36',0),(8802,2526,0,0,3006,'2025-11-11','17:24:36',2089,0,'NEU1','NEU10017','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3300,2,266,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 17:24:36','priyanshi','2025-11-11 17:24:36',0),(8803,2526,0,0,3007,'2025-11-11','00:00:00',2253,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 17:25:16','janvi','2025-11-11 04:55:16',0),(8804,2526,0,0,3008,'2025-11-11','17:33:53',1133,0,'OTCG','OTCG0003','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3301,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 17:33:53','drashti','2025-11-11 17:33:53',0),(8805,2526,0,0,3001,'2025-11-11','17:33:55',2251,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3302,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 17:33:55','priyanshi','2025-11-11 17:33:55',0),(8806,2526,0,0,3001,'2025-11-11','17:33:55',2251,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3302,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 17:33:55','priyanshi','2025-11-11 17:33:55',0),(8807,2526,0,0,3009,'2025-11-11','00:00:00',347,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3303,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 17:39:22','priyanshi','2025-11-11 17:39:51',0),(8808,2526,0,0,3010,'2025-11-11','00:00:00',2254,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3304,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 17:41:31','drashti','2025-11-11 17:42:11',0),(8809,2526,0,0,2999,'2025-11-11','17:43:06',2250,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3305,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 17:43:06','priyanshi','2025-11-11 17:43:06',0),(8810,2526,0,0,2999,'2025-11-11','17:43:06',2250,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',3305,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 17:43:06','priyanshi','2025-11-11 17:43:06',0),(8811,2526,0,0,3011,'2025-11-11','00:00:00',2255,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',3306,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-11 17:45:38','manshi','2025-11-11 17:46:07',0),(8812,2526,0,0,3012,'2025-11-11','00:00:00',1674,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3308,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 17:50:36','drashti','2025-11-11 17:52:28',0),(8813,2526,0,0,3013,'2025-11-11','00:00:00',2256,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3307,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 17:51:19','priyanshi','2025-11-11 17:51:39',0),(8814,2526,0,0,3014,'2025-11-11','17:53:21',2005,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3309,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 17:53:21','priyanshi','2025-11-11 17:53:21',0),(8815,2526,0,0,3015,'2025-11-11','00:00:00',2257,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3310,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 17:55:25','priyanshi','2025-11-11 17:56:40',0),(8816,2526,0,0,3016,'2025-11-11','00:00:00',2258,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3311,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 18:00:42','drashti','2025-11-11 18:01:21',0),(8817,2526,0,0,3017,'2025-11-11','00:00:00',2259,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3312,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 18:01:30','priyanshi','2025-11-11 18:02:39',0),(8818,2526,0,0,3018,'2025-11-11','00:00:00',2260,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3313,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 18:02:25','janvi','2025-11-11 18:03:42',0),(8819,2526,0,0,3019,'2025-11-11','00:00:00',2261,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3314,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 18:03:27','drashti','2025-11-11 18:04:32',0),(8820,2526,0,0,3020,'2025-11-11','00:00:00',2262,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3337,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 18:03:44','priyanshi','2025-11-11 18:49:24',0),(8821,2526,0,0,3021,'2025-11-11','18:05:06',2118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3315,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 18:05:06','janvi','2025-11-11 18:05:06',0),(8822,2526,0,0,3022,'2025-11-11','00:00:00',2263,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3316,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 18:10:31','drashti','2025-11-11 18:11:11',0),(8823,2526,0,0,3023,'2025-11-11','00:00:00',2264,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',3317,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 18:10:46','priyanshi','2025-11-11 18:11:16',0),(8824,2526,0,0,3024,'2025-11-11','00:00:00',2265,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3318,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 18:11:30','janvi','2025-11-11 18:11:55',0),(8825,2526,0,0,3025,'2025-11-11','00:00:00',1397,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',3319,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 18:12:33','priyanshi','2025-11-11 18:14:20',0),(8826,2526,0,0,3026,'2025-11-11','00:00:00',2266,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3320,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 18:13:56','drashti','2025-11-11 18:14:48',0),(8827,2526,0,0,3027,'2025-11-11','14:30:00',2247,149,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',143,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-11 18:14:12','vishal','2025-11-12 12:34:16',0),(8828,2526,0,0,3027,'2025-11-11','14:30:00',2247,149,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',143,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-11 18:14:12','vishal','2025-11-12 12:34:16',0),(8829,2526,0,0,3027,'2025-11-11','14:30:00',2247,149,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-11 05:44:12','vishal','2025-11-12 12:34:16',0),(8830,2526,0,0,3027,'2025-11-11','14:30:00',2247,149,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-11 05:44:12','vishal','2025-11-12 12:34:16',0),(8831,2526,0,0,3027,'2025-11-11','14:30:00',2247,149,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-11 05:44:12','vishal','2025-11-12 12:34:16',0),(8832,2526,0,0,3027,'2025-11-11','14:30:00',2247,149,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-11 05:44:12','vishal','2025-11-12 12:34:16',0),(8833,2526,0,0,3027,'2025-11-11','14:30:00',2247,149,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-11 05:44:12','vishal','2025-11-12 12:34:16',0),(8834,2526,0,0,3028,'2025-11-11','00:00:00',357,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3321,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 18:15:16','priyanshi','2025-11-11 18:15:28',0),(8835,2526,0,0,3029,'2025-11-11','00:00:00',1321,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3350,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 18:15:48','drashti','2025-11-11 19:26:15',0),(8836,2526,0,0,3030,'2025-11-11','00:00:00',2267,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3322,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 18:16:57','priyanshi','2025-11-11 18:17:23',0),(8837,2526,0,0,3015,'2025-11-11','18:21:04',2257,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3323,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 18:21:04','priyanshi','2025-11-11 18:21:04',0),(8838,2526,0,0,3015,'2025-11-11','18:21:04',2257,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',3323,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 18:21:04','priyanshi','2025-11-11 18:21:04',0),(8839,2526,0,0,3031,'2025-11-11','00:00:00',2268,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3324,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 18:21:43','drashti','2025-11-11 18:23:13',0),(8840,2526,0,0,3032,'2025-11-11','00:00:00',2269,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3325,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-11 18:25:55','manshi','2025-11-11 18:26:30',0),(8841,2526,0,0,3033,'2025-11-11','00:00:00',2270,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3326,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 18:31:57','drashti','2025-11-11 18:32:28',0),(8842,2526,0,0,3034,'2025-11-11','00:00:00',892,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3327,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 18:33:56','priyanshi','2025-11-11 18:35:13',0),(8843,2526,0,0,3035,'2025-11-11','00:00:00',2271,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3328,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 18:33:58','drashti','2025-11-11 18:35:32',0),(8844,2526,0,0,3036,'2025-11-11','00:00:00',118,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 18:36:06','janvi','2025-11-11 06:06:06',0),(8845,2526,0,0,3037,'2025-11-11','00:00:00',2272,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3329,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 18:36:06','priyanshi','2025-11-11 18:37:40',0),(8846,2526,0,0,3038,'2025-11-11','00:00:00',2273,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3330,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 18:38:06','drashti','2025-11-11 18:39:00',0),(8847,2526,0,0,3036,'2025-11-11','18:40:06',118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3331,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 18:40:06','janvi','2025-11-11 18:40:06',0),(8848,2526,0,0,3032,'2025-11-11','18:42:21',2269,0,'XRY','XRY0390','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',3332,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-11 18:42:21','manshi','2025-11-11 18:42:21',0),(8849,2526,0,0,3039,'2025-11-11','00:00:00',2274,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3334,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 18:43:28','janvi','2025-11-11 18:44:07',0),(8850,2526,0,0,3040,'2025-11-11','00:00:00',1663,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3333,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 18:43:48','priyanshi','2025-11-11 18:43:58',0),(8851,2526,0,0,3041,'2025-11-11','00:00:00',2275,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3336,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 18:46:43','priyanshi','2025-11-11 18:48:36',0),(8852,2526,0,0,3042,'2025-11-11','00:00:00',2276,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3335,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 18:46:44','drashti','2025-11-11 18:47:53',0),(8853,2526,0,0,3044,'2025-11-11','00:00:00',983,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3338,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 18:49:55','drashti','2025-11-11 18:50:08',0),(8854,2526,0,0,3030,'2025-11-11','18:50:24',2267,0,'NEU1','NEU10015','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',3339,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 18:50:24','priyanshi','2025-11-11 18:50:24',0),(8855,2526,0,0,3045,'2025-11-11','00:00:00',2277,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3340,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 18:51:52','priyanshi','2025-11-11 18:52:36',0),(8856,2526,0,0,3046,'2025-11-11','00:00:00',2278,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3341,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 18:54:16','drashti','2025-11-11 18:55:04',0),(8857,2526,0,0,3020,'2025-11-11','18:56:24',2262,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,72,'',0,0,'','','','','',2526,'H','O',3342,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-11-11 18:56:24','janvi','2025-11-11 18:56:24',0),(8858,2526,0,0,3031,'2025-11-11','18:58:47',2268,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3343,1,287,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 18:58:47','priyanshi','2025-11-11 18:58:47',0),(8859,2526,0,0,3031,'2025-11-11','18:58:47',2268,0,'NEU1','NEU10017','H','N',1.00,2400,2400,'P',0,0,0.00,0.00,0.00,2400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3343,2,313,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 18:58:47','priyanshi','2025-11-11 18:58:47',0),(8860,2526,0,0,3047,'2025-11-11','00:00:00',2279,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3344,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 19:01:13','drashti','2025-11-11 19:02:33',0),(8861,2526,0,0,3019,'2025-11-11','19:03:05',2261,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',3345,1,1000,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 19:03:05','priyanshi','2025-11-11 19:03:05',0),(8862,2526,0,0,3048,'2025-11-11','00:00:00',2280,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3346,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 19:06:24','drashti','2025-11-11 19:07:02',0),(8863,2526,0,0,3049,'2025-11-11','00:00:00',1363,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3348,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 19:10:23','drashti','2025-11-11 19:11:05',0),(8864,2526,0,0,3043,'2025-11-11','19:10:34',1521,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3347,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 19:10:34','janvi','2025-11-11 19:10:34',0),(8865,2526,0,0,3050,'2025-11-11','00:00:00',2281,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3354,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 19:21:59','drashti','2025-11-11 19:29:25',0),(8866,2526,0,0,3045,'2025-11-11','19:22:15',2277,0,'NEU1','NEU10019','H','N',1.00,1800,1800,'P',0,0,0.00,0.00,0.00,1800,9999,0,0,'',0,0,'','','','','',2526,'H','O',3349,1,194,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 19:22:15','priyanshi','2025-11-11 19:22:15',0),(8867,2526,0,0,3045,'2025-11-11','19:22:15',2277,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3349,2,269,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 19:22:15','priyanshi','2025-11-11 19:22:15',0),(8868,2526,0,0,3045,'2025-11-11','19:22:15',2277,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3349,3,237,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 19:22:15','priyanshi','2025-11-11 19:22:15',0),(8869,2526,0,0,3051,'2025-11-11','00:00:00',2282,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3351,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 19:23:56','drashti','2025-11-11 19:27:02',0),(8870,2526,0,0,3052,'2025-11-11','00:00:00',2283,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3353,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 19:26:41','priyanshi','2025-11-11 19:27:37',0),(8871,2526,0,0,3032,'2025-11-11','19:27:17',2269,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',3352,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-11 19:27:17','manshi','2025-11-11 19:27:17',0),(8872,2526,0,0,3053,'2025-11-11','00:00:00',2284,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3355,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-11 19:31:41','priyanshi','2025-11-11 19:32:01',0),(8873,2526,0,0,3054,'2025-11-11','00:00:00',2285,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3356,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-11 19:43:46','janvi','2025-11-11 19:45:28',0),(8874,2526,0,0,3055,'2025-11-11','00:00:00',2286,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 20:43:51','drashti','2025-11-11 08:13:51',0),(8875,2526,0,0,3055,'2025-11-11','20:58:46',2286,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3357,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 20:58:46','drashti','2025-11-11 20:58:46',0),(8876,2526,0,0,3055,'2025-11-11','20:58:46',2286,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',3357,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 20:58:46','drashti','2025-11-11 20:58:46',0),(8877,2526,0,0,3055,'2025-11-11','20:58:46',2286,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',3357,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 20:58:46','drashti','2025-11-11 20:58:46',0),(8878,2526,0,0,3055,'2025-11-11','20:58:46',2286,0,'OPWD','OPWD0015','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,4,0,0,'',0,0,'','','','','',2526,'H','O',3357,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 20:58:46','drashti','2025-11-11 20:58:46',0),(8879,2526,0,0,3055,'2025-11-11','20:58:46',2286,0,'OTCG','OTCG0033','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,4,0,0,'',0,0,'','','','','',2526,'H','O',3357,5,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-11 20:58:46','drashti','2025-11-11 20:58:46',0),(8880,2526,0,0,3056,'2025-11-12','00:00:00',2287,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 08:48:07','reception','2025-11-11 20:18:07',0),(8881,2526,0,0,3056,'2025-11-12','08:49:42',2287,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3358,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-12 08:49:42','reception','2025-11-12 08:49:42',0),(8882,2526,0,0,3056,'2025-11-12','08:49:42',2287,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,73,'',0,0,'','','','','',2526,'H','O',3358,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-12 08:49:42','reception','2025-11-12 08:49:42',0),(8883,2526,0,0,3056,'2025-11-12','08:49:42',2287,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',3358,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-12 08:49:42','reception','2025-11-12 08:49:42',0),(8884,2526,0,0,3056,'2025-11-12','08:49:42',2287,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',3358,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-12 08:49:42','reception','2025-11-12 08:49:42',0),(8885,2526,0,0,3057,'2025-11-12','00:00:00',2288,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 08:50:36','reception','2025-11-11 20:20:36',0),(8886,2526,0,0,3057,'2025-11-12','09:08:08',2288,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',3359,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 09:08:08','reception','2025-11-12 09:08:08',0),(8887,2526,0,0,3057,'2025-11-12','09:08:08',2288,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',3359,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 09:08:08','reception','2025-11-12 09:08:08',0),(8888,2526,0,0,3057,'2025-11-12','09:08:08',2288,0,'WPRC','WPRC0049','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',3359,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 09:08:08','reception','2025-11-12 09:08:08',0),(8889,2526,0,0,3058,'2025-11-12','00:00:00',2289,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3379,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 09:26:03','shweta','2025-11-12 11:17:24',0),(8890,2526,0,0,3059,'2025-11-12','00:00:00',2290,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3360,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 09:48:16','janvi','2025-11-12 09:49:24',0),(8891,2526,0,0,3060,'2025-11-12','00:00:00',2291,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3361,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 09:50:00','reception','2025-11-12 09:50:37',0),(8892,2526,0,0,3061,'2025-11-12','00:00:00',2292,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3363,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 10:11:17','drashti','2025-11-12 10:12:25',0),(8893,2526,0,0,3062,'2025-11-12','00:00:00',1715,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3362,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 10:11:28','reception','2025-11-12 10:11:56',0),(8894,2526,0,0,2811,'2025-11-12','01:00:00',0,143,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-11 21:50:53','vishal','2025-11-12 10:21:38',0),(8895,2526,0,0,2811,'2025-11-12','01:00:00',0,143,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-11 21:50:53','vishal','2025-11-12 10:21:38',0),(8896,2526,0,0,2811,'2025-11-12','01:00:00',0,143,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-11 21:50:53','vishal','2025-11-12 10:21:38',0),(8897,2526,0,0,2811,'2025-11-12','01:00:00',0,143,'DRC','DRC0018','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-11 21:50:53','riya','2025-11-20 11:12:56',0),(8898,2526,0,0,2811,'2025-11-12','01:00:00',0,143,'DRC','DRC0019','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-11 21:50:53','riya','2025-11-20 11:12:56',0),(8899,2526,0,0,2811,'2025-11-11','10:21:00',0,143,'WPRC','WPRC0090','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 10:21:38','','0000-00-00 00:00:00',0),(8900,2526,0,0,2994,'2025-11-11','10:23:00',0,148,'WPRC','WPRC0099','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',133,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 10:24:38','vishal','2025-11-12 13:32:36',0),(8901,2526,0,0,2879,'2025-11-12','10:26:00',0,146,'WPRC','WPRC0090','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 10:27:01','','0000-00-00 00:00:00',0),(8902,2526,0,0,3063,'2025-11-12','00:00:00',2293,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 10:27:19','drashti','2025-11-11 21:57:19',0),(8903,2526,0,0,3064,'2025-11-12','00:00:00',1824,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',3364,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 10:34:52','reception','2025-11-12 10:35:02',0),(8904,2526,0,0,3065,'2025-11-12','00:00:00',20,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3365,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 10:35:32','drashti','2025-11-12 10:36:01',0),(8905,2526,0,0,3066,'2025-11-12','00:00:00',2294,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3366,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 10:39:05','reception','2025-11-12 10:39:26',0),(8906,2526,0,0,3067,'2025-11-12','00:00:00',2295,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3367,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 10:41:47','drashti','2025-11-12 10:42:26',0),(8907,2526,0,0,3068,'2025-11-12','00:00:00',1097,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3368,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 10:45:20','reception','2025-11-12 10:45:49',0),(8908,2526,0,0,3064,'2025-11-12','10:55:17',1824,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3369,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 10:55:17','reception','2025-11-12 10:55:17',0),(8909,2526,0,0,3069,'2025-11-12','00:00:00',2296,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3370,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 10:55:59','janvi','2025-11-12 10:56:46',0),(8910,2526,0,0,3070,'2025-11-12','00:00:00',2297,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3371,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:00:03','reception','2025-11-12 11:00:23',0),(8911,2526,0,0,3071,'2025-11-12','00:00:00',2298,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3372,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:05:38','reception','2025-11-12 11:06:16',0),(8912,2526,0,0,3072,'2025-11-12','00:00:00',472,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3373,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:08:23','reception','2025-11-12 11:09:07',0),(8913,2526,0,0,3073,'2025-11-12','00:00:00',2299,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3374,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:09:59','reception','2025-11-12 11:10:45',0),(8914,2526,0,0,3074,'2025-11-12','00:00:00',2300,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3376,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 11:11:15','janvi','2025-11-12 11:12:12',0),(8915,2526,0,0,3075,'2025-11-12','00:00:00',2301,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3375,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-12 11:11:20','manshi','2025-11-12 11:11:43',0),(8916,2526,0,0,3076,'2025-11-12','00:00:00',1235,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3377,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:12:21','reception','2025-11-12 11:12:44',0),(8917,2526,0,0,3078,'2025-11-12','00:00:00',2302,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',3378,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:15:19','reception','2025-11-12 11:15:51',0),(8918,2526,0,0,3079,'2025-11-12','00:00:00',2303,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3380,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:17:30','reception','2025-11-12 11:17:57',0),(8919,2526,0,0,3080,'2025-11-12','00:00:00',2304,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3381,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-12 11:20:12','shweta','2025-11-12 11:20:51',0),(8920,2526,0,0,3081,'2025-11-12','00:00:00',2305,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3382,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 11:21:09','janvi','2025-11-12 11:21:44',0),(8921,2526,0,0,3082,'2025-11-12','00:00:00',2306,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',3389,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-12 11:27:00','manshi','2025-11-12 11:39:54',0),(8922,2526,0,0,3083,'2025-11-12','00:00:00',2307,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3384,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:27:34','reception','2025-11-12 11:28:01',0),(8923,2526,0,0,3077,'2025-11-12','11:27:48',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3383,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 11:27:48','janvi','2025-11-12 11:27:48',0),(8924,2526,0,0,3084,'2025-11-12','00:00:00',2308,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3386,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:29:59','reception','2025-11-12 11:31:33',0),(8925,2526,0,0,3076,'2025-11-12','11:31:23',1235,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',3385,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-12 11:31:23','shweta','2025-11-12 11:31:23',0),(8926,2526,0,0,3085,'2025-11-12','00:00:00',2309,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-12 11:31:59','manshi','2025-11-11 23:01:59',0),(8927,2526,0,0,2994,'2025-11-11','11:32:00',0,148,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',133,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 11:33:25','vishal','2025-11-12 13:32:36',0),(8928,2526,0,0,2994,'2025-11-11','11:32:00',0,148,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',133,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 11:33:25','vishal','2025-11-12 13:32:36',0),(8929,2526,0,0,2994,'2025-11-11','11:32:00',0,148,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',133,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 11:33:25','vishal','2025-11-12 13:32:36',0),(8930,2526,0,0,2994,'2025-11-12','11:33:00',0,148,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',133,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 11:33:25','vishal','2025-11-12 13:32:36',0),(8931,2526,0,0,3060,'2025-11-12','11:34:56',2291,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3387,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:34:56','reception','2025-11-12 11:34:56',0),(8932,2526,0,0,3060,'2025-11-12','11:34:56',2291,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3387,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:34:56','reception','2025-11-12 11:34:56',0),(8933,2526,0,0,3060,'2025-11-12','11:34:56',2291,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3387,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:34:56','reception','2025-11-12 11:34:56',0),(8934,2526,0,0,3086,'2025-11-12','00:00:00',2310,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3388,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 11:35:44','janvi','2025-11-12 11:36:40',0),(8935,2526,0,0,3087,'2025-11-12','00:00:00',764,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3390,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:41:02','reception','2025-11-12 11:41:25',0),(8936,2526,0,0,3088,'2025-11-12','00:00:00',2311,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3391,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 11:41:21','janvi','2025-11-12 11:42:15',0),(8937,2526,0,0,3089,'2025-11-12','00:00:00',755,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3392,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:42:44','reception','2025-11-12 11:46:31',0),(8938,2526,0,0,3090,'2025-11-12','00:00:00',510,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3393,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:48:04','reception','2025-11-12 11:48:23',0),(8939,2526,0,0,3091,'2025-11-12','00:00:00',2312,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3396,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-12 11:50:51','manshi','2025-11-12 11:52:02',0),(8940,2526,0,0,3092,'2025-11-12','00:00:00',1556,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3395,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 11:51:16','drashti','2025-11-12 11:51:49',0),(8941,2526,0,0,3074,'2025-11-12','11:51:17',2300,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3394,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:51:17','reception','2025-11-12 11:51:17',0),(8942,2526,0,0,3074,'2025-11-12','11:51:17',2300,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3394,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:51:17','reception','2025-11-12 11:51:17',0),(8943,2526,0,0,3093,'2025-11-12','00:00:00',2313,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3397,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:55:22','reception','2025-11-12 11:56:00',0),(8944,2526,0,0,3094,'2025-11-12','00:00:00',2314,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3398,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 11:57:21','reception','2025-11-12 11:57:49',0),(8945,2526,0,0,2879,'2025-11-12','11:45:00',0,146,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 11:59:48','','0000-00-00 00:00:00',0),(8946,2526,0,0,2879,'2025-11-11','11:46:00',0,146,'USG','USG0092','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 11:59:48','riya','2025-12-01 20:13:25',0),(8947,2526,0,0,2879,'2025-11-11','11:50:00',0,146,'USG','USG0098','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 11:59:48','riya','2025-12-01 20:13:25',0),(8948,2526,0,0,2879,'2025-11-11','11:51:00',0,146,'WPRC','WPRC0109','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 11:59:48','vishal','2025-11-30 20:00:04',0),(8949,2526,0,0,2879,'2025-11-12','11:57:00',0,146,'WPRC','WPRC0110','H','N',1.00,10000,10000,'A',0,0,0.00,0.00,10000.00,10000,4,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 11:59:48','vishal','2025-11-30 20:00:04',0),(8950,2526,0,0,2879,'2025-11-12','11:58:00',0,146,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,33,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 11:59:48','vishal','2025-11-30 19:59:18',0),(8951,2526,0,0,2879,'2025-11-12','11:59:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 11:59:48','vishal','2025-11-30 20:00:04',0),(8952,2526,0,0,2879,'2025-11-12','11:59:00',0,146,'WPRC','WPRC0089','H','N',5.00,100,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 11:59:48','riya','2025-11-27 17:57:23',0),(8953,2526,0,0,2879,'2025-11-12','11:59:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 11:59:48','riya','2025-11-27 17:57:23',0),(8954,2526,0,0,3095,'2025-11-12','00:00:00',2315,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3399,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-12 12:00:57','manshi','2025-11-12 12:01:19',0),(8955,2526,0,0,3096,'2025-11-12','00:00:00',2316,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3400,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 12:01:19','reception','2025-11-12 12:02:44',0),(8956,2526,0,0,3097,'2025-11-12','00:00:00',240,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3401,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 12:04:57','drashti','2025-11-12 12:05:32',0),(8957,2526,0,0,3098,'2025-11-12','00:00:00',2317,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3402,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 12:05:30','reception','2025-11-12 13:16:30',0),(8958,2526,0,0,2994,'2025-11-11','12:05:00',0,148,'SURG','SURG0014','H','N',1.00,9800,9800,'P',0,0,0.00,0.00,9800.00,9800,6,0,0,'',0,0,'','','','','',2526,'H','I',133,5,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:07:06','vishal','2025-11-12 13:38:02',0),(8959,2526,0,0,2994,'2025-11-12','12:05:00',0,148,'SURG','SURG0015','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,6,0,0,'',0,0,'','','','','',2526,'H','I',133,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:07:06','vishal','2025-11-12 13:38:02',0),(8960,2526,0,0,2876,'2025-11-11','12:07:00',0,145,'WPRC','WPRC0077','H','N',3.00,500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:09:45','vishal','2025-11-12 12:11:21',0),(8961,2526,0,0,2876,'2025-11-11','12:07:00',0,145,'USG','USG0092','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:09:45','vishal','2025-11-12 12:11:21',0),(8962,2526,0,0,2876,'2025-11-12','12:08:00',0,145,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:09:45','','0000-00-00 00:00:00',0),(8963,2526,0,0,2876,'2025-11-12','12:08:00',0,145,'WPRC','WPRC0077','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:09:45','','0000-00-00 00:00:00',0),(8964,2526,0,0,2876,'2025-11-11','12:08:00',0,145,'ROOM','ROOM0004','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:09:45','vishal','2025-11-12 12:11:21',0),(8965,2526,0,0,3099,'2025-11-12','00:00:00',2318,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3403,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 12:10:26','drashti','2025-11-12 12:11:15',0),(8966,2526,0,0,3073,'2025-11-12','12:11:17',2299,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3404,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 12:11:17','reception','2025-11-12 12:11:17',0),(8967,2526,0,0,3100,'2025-11-12','00:00:00',2319,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3405,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 12:24:31','drashti','2025-11-12 12:25:29',0),(8968,2526,0,0,3101,'2025-11-12','00:00:00',2072,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3406,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 12:25:29','janvi','2025-11-12 12:25:44',0),(8969,2526,0,0,2919,'2025-11-11','21:00:00',951,147,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',135,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-11 23:56:37','vishal','2025-11-12 12:37:09',0),(8970,2526,0,0,2919,'2025-11-11','21:00:00',951,147,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',135,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-11 23:56:37','riya','2025-11-13 17:44:03',0),(8971,2526,0,0,2919,'2025-11-11','21:00:00',951,147,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',135,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-11 23:56:37','vishal','2025-11-12 12:37:09',0),(8972,2526,0,0,2919,'2025-11-13','21:00:00',951,147,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',135,23,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-11 23:56:37','riya','2025-11-13 17:44:03',0),(8973,2526,0,0,2919,'2025-11-13','21:00:00',951,147,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',135,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-11 23:56:37','riya','2025-11-13 17:43:02',0),(8974,2526,0,0,3102,'2025-11-12','00:00:00',2320,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3407,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 12:26:42','reception','2025-11-12 12:27:09',0),(8975,2526,0,0,3103,'2025-11-12','00:00:00',562,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3408,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 12:28:31','reception','2025-11-12 12:28:47',0),(8976,2526,0,0,3104,'2025-11-12','00:00:00',2321,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 12:30:27','drashti','2025-11-12 00:00:27',0),(8977,2526,0,0,3027,'2025-11-12','12:33:00',2247,149,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',143,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:34:16','','0000-00-00 00:00:00',0),(8978,2526,0,0,3027,'2025-11-11','12:33:00',2247,149,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',143,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:34:16','','0000-00-00 00:00:00',0),(8979,2526,0,0,3027,'2025-11-12','12:33:00',2247,149,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',143,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:34:16','','0000-00-00 00:00:00',0),(8980,2526,0,0,3027,'2025-11-12','12:34:00',2247,149,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',143,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:34:16','','0000-00-00 00:00:00',0),(8981,2526,0,0,2919,'2025-11-10','12:35:00',951,147,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',135,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:37:09','','0000-00-00 00:00:00',0),(8982,2526,0,0,2919,'2025-11-11','12:35:00',951,147,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',135,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:37:09','riya','2025-11-13 17:44:03',0),(8983,2526,0,0,2919,'2025-11-12','12:35:00',951,147,'ROOM','ROOM0008','H','N',4.00,100,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',135,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:37:09','riya','2025-11-13 17:44:03',0),(8984,2526,0,0,2919,'2025-11-12','12:36:00',951,147,'ROOM','ROOM0004','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',135,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:37:09','riya','2025-11-13 17:44:03',0),(8985,2526,0,0,2919,'2025-11-12','12:36:00',951,147,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,38,0,0,'',0,0,'','','','','',2526,'H','I',135,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:37:09','','0000-00-00 00:00:00',0),(8986,2526,0,0,3105,'2025-11-12','00:00:00',199,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3409,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 12:39:57','janvi','2025-11-12 12:40:41',0),(8987,2526,0,0,3106,'2025-11-12','00:00:00',2322,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3410,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 12:42:43','drashti','2025-11-12 12:43:17',0),(8988,2526,0,0,3107,'2025-11-12','00:00:00',2323,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3411,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 12:43:13','janvi','2025-11-12 12:43:51',0),(8989,2526,0,0,2811,'2025-11-09','12:40:00',0,143,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:44:25','','0000-00-00 00:00:00',0),(8990,2526,0,0,2811,'2025-11-10','12:40:00',0,143,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:44:25','','0000-00-00 00:00:00',0),(8991,2526,0,0,2811,'2025-11-10','12:41:00',0,143,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:44:25','','0000-00-00 00:00:00',0),(8992,2526,0,0,2811,'2025-11-11','12:41:00',0,143,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:44:25','','0000-00-00 00:00:00',0),(8993,2526,0,0,2811,'2025-11-12','12:41:00',0,143,'WPRC','WPRC0091','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:44:25','','0000-00-00 00:00:00',0),(8994,2526,0,0,2811,'2025-11-09','12:42:00',0,143,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:44:25','','0000-00-00 00:00:00',0),(8995,2526,0,0,2811,'2025-11-10','12:42:00',0,143,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:44:25','','0000-00-00 00:00:00',0),(8996,2526,0,0,2811,'2025-11-10','12:42:00',0,143,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:44:25','','0000-00-00 00:00:00',0),(8997,2526,0,0,2811,'2025-11-11','12:43:00',0,143,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:44:25','','0000-00-00 00:00:00',0),(8998,2526,0,0,2811,'2025-11-11','12:43:00',0,143,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:44:25','','0000-00-00 00:00:00',0),(8999,2526,0,0,2811,'2025-11-12','12:43:00',0,143,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:44:25','','0000-00-00 00:00:00',0),(9000,2526,0,0,2811,'2025-11-12','12:44:00',0,143,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 12:44:25','','0000-00-00 00:00:00',0),(9001,2526,0,0,2919,'2025-11-11','21:00:00',951,147,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',135,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 00:14:42','riya','2025-11-13 17:43:02',0),(9002,2526,0,0,2919,'2025-11-11','21:00:00',951,147,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',135,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 00:14:42','riya','2025-11-13 17:43:02',0),(9003,2526,0,0,3108,'2025-11-12','00:00:00',2324,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3412,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 12:49:03','drashti','2025-11-12 12:50:40',0),(9004,2526,0,0,3109,'2025-11-12','00:00:00',2325,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3413,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 12:53:16','drashti','2025-11-12 12:54:27',0),(9005,2526,0,0,3110,'2025-11-12','00:00:00',2326,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 12:56:48','drashti','2025-11-12 00:26:48',0),(9006,2526,0,0,3097,'2025-11-12','12:59:08',240,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',3414,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 12:59:08','janvi','2025-11-12 12:59:08',0),(9007,2526,0,0,3110,'2025-11-12','13:00:29',2326,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3415,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 13:00:29','drashti','2025-11-12 13:00:29',0),(9008,2526,0,0,3110,'2025-11-12','13:00:29',2326,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',3415,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 13:00:29','drashti','2025-11-12 13:00:29',0),(9009,2526,0,0,3110,'2025-11-12','13:00:29',2326,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',3415,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 13:00:29','drashti','2025-11-12 13:00:29',0),(9010,2526,0,0,3027,'2025-11-12','12:59:00',2247,149,'SURG','SURG0014','H','N',1.00,45000,45000,'P',0,0,0.00,0.00,45000.00,45000,3,0,0,'',0,0,'','','','','',2526,'H','I',143,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 13:01:37','','0000-00-00 00:00:00',0),(9011,2526,0,0,3027,'2025-11-12','12:59:00',2247,149,'SURG','SURG0015','H','N',1.00,11250,11250,'P',0,0,0.00,0.00,11250.00,11250,3,0,0,'',0,0,'','','','','',2526,'H','I',143,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 13:01:37','','0000-00-00 00:00:00',0),(9012,2526,0,0,2876,'2025-11-12','13:00:00',0,145,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 00:34:23','vishal','2025-11-14 19:25:55',0),(9013,2526,0,0,2876,'2025-11-12','13:00:00',0,145,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 00:34:23','vishal','2025-11-14 19:25:55',0),(9014,2526,0,0,2876,'2025-11-12','13:00:00',0,145,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 00:34:23','vishal','2025-11-12 20:55:32',0),(9015,2526,0,0,2876,'2025-11-12','13:00:00',0,145,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 00:34:23','vishal','2025-11-14 19:24:52',0),(9016,2526,0,0,2876,'2025-11-12','13:00:00',0,145,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 00:34:23','vishal','2025-11-14 19:25:55',0),(9017,2526,0,0,3111,'2025-11-12','00:00:00',2327,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',3416,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-12 13:10:26','manshi','2025-11-12 13:11:53',0),(9018,2526,0,0,3112,'2025-11-12','00:00:00',2328,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3419,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-12 13:18:06','manshi','2025-11-12 13:19:46',0),(9019,2526,0,0,3098,'2025-11-12','13:19:28',2317,0,'PKG','CASE','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3418,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 13:19:28','reception','2025-11-12 13:19:28',0),(9020,2526,0,0,2994,'2025-11-11','12:58:00',0,148,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,6,0,0,'',0,0,'','403','','','',2526,'H','I',133,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 01:02:53','vishal','2025-11-12 13:33:16',0),(9021,2526,0,0,3113,'2025-11-12','13:00:00',0,150,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',139,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 13:44:51','riya','2025-11-13 10:51:18',0),(9022,2526,0,0,3113,'2025-11-12','13:00:00',0,150,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',139,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 13:44:51','riya','2025-11-13 10:51:18',0),(9023,2526,0,0,3113,'2025-11-12','13:00:00',0,150,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',139,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 01:14:51','riya','2025-11-13 10:51:18',0),(9024,2526,0,0,3113,'2025-11-12','13:00:00',0,150,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',139,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 01:14:51','riya','2025-11-13 10:51:18',0),(9025,2526,0,0,3113,'2025-11-12','13:00:00',0,150,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',139,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 01:14:51','riya','2025-11-13 10:51:18',0),(9026,2526,0,0,3113,'2025-11-12','13:00:00',0,150,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 01:14:51','riya','2025-11-13 10:51:18',0),(9027,2526,0,0,3113,'2025-11-12','13:00:00',0,150,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','409','','','',2526,'H','I',139,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 01:14:51','riya','2025-11-13 10:51:18',0),(9028,2526,0,0,3114,'2025-11-12','14:30:00',2310,151,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',230,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 15:10:16','riya','2025-11-13 12:33:15',0),(9029,2526,0,0,3114,'2025-11-12','14:30:00',2310,151,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',230,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 15:10:16','riya','2025-11-13 12:33:15',0),(9030,2526,0,0,3114,'2025-11-12','14:30:00',2310,151,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',230,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 02:40:16','riya','2025-11-13 12:33:15',0),(9031,2526,0,0,3114,'2025-11-12','14:30:00',2310,151,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',230,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 02:40:16','riya','2025-11-13 12:33:15',0),(9032,2526,0,0,3114,'2025-11-12','14:30:00',2310,151,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',230,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 02:40:16','riya','2025-11-13 12:33:15',0),(9033,2526,0,0,3114,'2025-11-13','14:30:00',2310,151,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','408','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 02:40:16','vishal','2025-11-13 19:55:47',0),(9034,2526,0,0,3114,'2025-11-12','14:30:00',2310,151,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','408','','','',2526,'H','I',230,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 02:40:16','riya','2025-11-13 12:33:15',0),(9035,2526,0,0,3115,'2025-11-12','00:00:00',2329,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3420,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 16:01:17','reception','2025-11-12 16:01:33',0),(9036,2526,0,0,3116,'2025-11-12','00:00:00',1011,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3421,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 16:12:17','reception','2025-11-12 16:14:29',0),(9037,2526,0,0,3027,'2025-11-12','14:30:00',2247,149,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 04:00:43','riya','2025-11-13 09:17:54',0),(9038,2526,0,0,3027,'2025-11-12','14:30:00',2247,149,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 04:00:43','riya','2025-11-13 09:17:54',0),(9039,2526,0,0,3027,'2025-11-12','14:30:00',2247,149,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 04:00:43','riya','2025-11-13 09:17:54',0),(9040,2526,0,0,3027,'2025-11-12','14:30:00',2247,149,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 04:00:43','riya','2025-11-13 09:17:54',0),(9041,2526,0,0,3027,'2025-11-12','14:30:00',2247,149,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 04:00:43','riya','2025-11-13 09:17:54',0),(9042,2526,0,0,3117,'2025-11-12','00:00:00',2330,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 16:34:36','reception','2025-11-12 04:04:36',0),(9043,2526,0,0,3118,'2025-11-12','00:00:00',1463,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 16:47:31','drashti','2025-11-12 04:17:31',0),(9044,2526,0,0,3119,'2025-11-12','00:00:00',750,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3422,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 16:48:42','reception','2025-11-12 16:48:55',0),(9045,2526,0,0,3120,'2025-11-12','00:00:00',745,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 16:49:57','reception','2025-11-12 04:19:57',0),(9046,2526,0,0,3121,'2025-11-12','00:00:00',2331,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 16:52:00','reception','2025-11-12 04:22:00',0),(9047,2526,0,0,3122,'2025-11-12','00:00:00',2332,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3423,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 16:59:21','reception','2025-11-12 16:59:49',0),(9048,2526,0,0,3123,'2025-11-12','00:00:00',1089,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3424,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 17:05:41','reception','2025-11-12 17:06:24',0),(9049,2526,0,0,3124,'2025-11-12','00:00:00',2333,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3425,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 17:06:36','drashti','2025-11-12 17:07:04',0),(9050,2526,0,0,3125,'2025-11-12','00:00:00',2334,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3426,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 17:08:06','reception','2025-11-12 17:08:20',0),(9051,2526,0,0,3126,'2025-11-12','00:00:00',2335,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3427,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 17:12:05','reception','2025-11-12 17:41:51',0),(9052,2526,0,0,3127,'2025-11-12','00:00:00',1467,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 17:16:24','reception','2025-11-12 04:46:24',0),(9053,2526,0,0,3128,'2025-11-12','00:00:00',2336,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3428,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 17:18:49','reception','2025-11-12 17:19:09',0),(9054,2526,0,0,3129,'2025-11-12','00:00:00',2337,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3429,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 17:20:32','reception','2025-11-12 17:20:41',0),(9055,2526,0,0,3130,'2025-11-12','00:00:00',2338,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3430,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 17:23:39','drashti','2025-11-12 17:24:54',0),(9056,2526,0,0,3131,'2025-11-12','00:00:00',2339,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3431,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 17:26:06','reception','2025-11-12 17:26:19',0),(9057,2526,0,0,3132,'2025-11-12','00:00:00',2340,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3432,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 17:27:18','drashti','2025-11-12 17:27:34',0),(9058,2526,0,0,3133,'2025-11-12','00:00:00',2341,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3433,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 17:27:41','janvi','2025-11-12 17:29:33',0),(9059,2526,0,0,3134,'2025-11-12','00:00:00',2342,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',3434,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 17:29:07','reception','2025-11-12 17:29:44',0),(9060,2526,0,0,3135,'2025-11-12','00:00:00',2343,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3435,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 17:31:45','reception','2025-11-12 17:32:23',0),(9061,2526,0,0,3136,'2025-11-12','00:00:00',1953,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3437,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 17:33:25','drashti','2025-11-12 17:34:51',0),(9062,2526,0,0,3137,'2025-11-12','00:00:00',2344,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3436,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 17:33:59','reception','2025-11-12 17:34:14',0),(9063,2526,0,0,3138,'2025-11-12','17:36:17',2051,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3438,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 17:36:17','janvi','2025-11-12 17:36:17',0),(9064,2526,0,0,3139,'2025-11-12','00:00:00',2345,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3439,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 17:37:49','reception','2025-11-12 17:38:22',0),(9065,2526,0,0,3140,'2025-11-12','00:00:00',2346,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3460,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 17:38:10','janvi','2025-11-12 18:15:22',0),(9066,2526,0,0,3142,'2025-11-12','17:40:34',2095,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3440,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 17:40:34','janvi','2025-11-12 17:40:34',0),(9067,2526,0,0,3141,'2025-11-12','17:40:54',2005,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3441,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 17:40:54','drashti','2025-11-12 17:40:54',0),(9068,2526,0,0,3143,'2025-11-12','00:00:00',2347,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3443,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 17:42:15','drashti','2025-11-12 17:42:55',0),(9069,2526,0,0,3126,'2025-11-12','17:43:09',2335,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3444,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 17:43:09','reception','2025-11-12 17:43:09',0),(9070,2526,0,0,3144,'2025-11-12','00:00:00',2348,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3445,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 17:46:58','reception','2025-11-12 17:49:44',0),(9071,2526,0,0,3145,'2025-11-12','00:00:00',2349,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 17:49:11','janvi','2025-11-12 05:19:11',0),(9072,2526,0,0,3145,'2025-11-12','00:00:00',2349,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3446,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 17:49:43','janvi','2025-11-12 17:50:16',0),(9073,2526,0,0,3146,'2025-11-12','00:00:00',618,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3448,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 17:51:31','reception','2025-11-12 17:54:56',0),(9074,2526,0,0,3147,'2025-11-12','00:00:00',2350,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3449,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 17:52:44','reception','2025-11-12 17:55:39',0),(9075,2526,0,0,3148,'2025-11-12','00:00:00',592,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3447,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 17:53:31','drashti','2025-11-12 17:53:54',0),(9076,2526,0,0,3149,'2025-11-12','00:00:00',2351,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',3450,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-12 17:56:02','manshi','2025-11-12 17:57:21',0),(9077,2526,0,0,3150,'2025-11-12','00:00:00',2352,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3451,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 17:57:13','reception','2025-11-12 17:58:25',0),(9078,2526,0,0,3151,'2025-11-12','00:00:00',2353,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3454,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 17:59:46','drashti','2025-11-12 18:00:48',0),(9079,2526,0,0,3152,'2025-11-12','00:00:00',1060,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3452,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-12 17:59:54','manshi','2025-11-12 18:00:03',0),(9080,2526,0,0,3128,'2025-11-12','18:00:30',2336,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3453,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 18:00:30','reception','2025-11-12 18:00:30',0),(9081,2526,0,0,3128,'2025-11-12','18:00:30',2336,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3453,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 18:00:30','reception','2025-11-12 18:00:30',0),(9082,2526,0,0,3128,'2025-11-12','18:00:30',2336,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3453,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 18:00:30','reception','2025-11-12 18:00:30',0),(9083,2526,0,0,3153,'2025-11-12','00:00:00',1759,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3455,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 18:04:53','reception','2025-11-12 18:05:21',0),(9084,2526,0,0,3154,'2025-11-12','00:00:00',2354,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 18:07:01','janvi','2025-11-12 05:37:01',0),(9085,2526,0,0,3154,'2025-11-12','00:00:00',2354,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3456,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 18:07:59','janvi','2025-11-12 18:09:29',0),(9086,2526,0,0,3156,'2025-11-12','00:00:00',2355,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3458,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 18:08:55','drashti','2025-11-12 18:10:29',0),(9087,2526,0,0,3155,'2025-11-12','18:10:03',943,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3457,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 18:10:03','reception','2025-11-12 18:10:03',0),(9088,2526,0,0,3131,'2025-11-12','18:14:00',2339,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3459,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 18:14:00','reception','2025-11-12 18:14:00',0),(9089,2526,0,0,3157,'2025-11-12','00:00:00',2356,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3461,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 18:14:13','drashti','2025-11-12 18:16:29',0),(9090,2526,0,0,3159,'2025-11-12','00:00:00',2357,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3462,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 18:17:27','reception','2025-11-12 18:18:21',0),(9091,2526,0,0,3160,'2025-11-12','18:19:55',1976,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',3463,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 18:19:55','drashti','2025-11-12 18:19:55',0),(9092,2526,0,0,3158,'2025-11-12','18:21:01',221,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3464,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 18:21:01','janvi','2025-11-12 18:21:01',0),(9093,2526,0,0,3161,'2025-11-12','00:00:00',2358,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3465,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 18:23:09','drashti','2025-11-12 18:24:09',0),(9094,2526,0,0,3162,'2025-11-12','00:00:00',2359,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3466,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 18:27:41','drashti','2025-11-12 18:28:36',0),(9095,2526,0,0,3132,'2025-11-12','18:29:18',2340,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3467,1,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 18:29:18','reception','2025-11-12 18:29:18',0),(9096,2526,0,0,3132,'2025-11-12','18:29:18',2340,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3467,2,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 18:29:18','reception','2025-11-12 18:29:18',0),(9097,2526,0,0,3132,'2025-11-12','18:29:18',2340,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3467,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 18:29:18','reception','2025-11-12 18:29:18',0),(9098,2526,0,0,3163,'2025-11-12','18:29:25',2118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3468,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 18:29:25','janvi','2025-11-12 18:29:25',0),(9099,2526,0,0,3164,'2025-11-12','18:38:51',2022,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',3469,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 18:38:51','drashti','2025-11-12 18:38:51',0),(9100,2526,0,0,3165,'2025-11-12','00:00:00',2360,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3470,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 18:38:59','janvi','2025-11-12 18:40:04',0),(9101,2526,0,0,2879,'2025-11-12','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 06:10:32','riya','2025-11-13 10:45:32',0),(9102,2526,0,0,2879,'2025-11-12','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 06:10:32','vishal','2025-11-30 20:00:04',0),(9103,2526,0,0,2879,'2025-11-12','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 06:10:32','vishal','2025-11-30 20:00:04',0),(9104,2526,0,0,2879,'2025-11-12','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 06:10:32','riya','2025-11-27 17:57:23',0),(9105,2526,0,0,2879,'2025-11-12','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 06:10:32','riya','2025-11-27 17:57:23',0),(9106,2526,0,0,3166,'2025-11-12','00:00:00',2361,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3471,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 18:46:05','reception','2025-11-12 18:46:36',0),(9107,2526,0,0,3167,'2025-11-12','00:00:00',1585,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 18:46:52','drashti','2025-11-12 06:16:52',0),(9108,2526,0,0,3168,'2025-11-12','00:00:00',2362,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3475,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 18:47:43','reception','2025-11-12 18:55:55',0),(9109,2526,0,0,3169,'2025-11-12','00:00:00',2363,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3472,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 18:49:25','drashti','2025-11-12 18:50:14',0),(9110,2526,0,0,3170,'2025-11-12','00:00:00',494,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3473,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 18:53:40','drashti','2025-11-12 18:54:04',0),(9111,2526,0,0,3171,'2025-11-12','00:00:00',2364,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3474,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 18:54:35','reception','2025-11-12 18:54:54',0),(9112,2526,0,0,3172,'2025-11-12','00:00:00',2365,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3476,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 18:56:45','drashti','2025-11-12 18:58:12',0),(9113,2526,0,0,3173,'2025-11-12','00:00:00',2366,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3477,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 18:58:33','reception','2025-11-12 18:59:16',0),(9114,2526,0,0,3174,'2025-11-12','00:00:00',2367,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3478,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-12 19:00:05','manshi','2025-11-12 19:57:27',0),(9115,2526,0,0,3147,'2025-11-12','19:02:07',2350,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3479,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 19:02:07','reception','2025-11-12 19:02:07',0),(9116,2526,0,0,3147,'2025-11-12','19:02:07',2350,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3479,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 19:02:07','reception','2025-11-12 19:02:07',0),(9117,2526,0,0,3147,'2025-11-12','19:02:07',2350,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3479,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 19:02:07','reception','2025-11-12 19:02:07',0),(9118,2526,0,0,3175,'2025-11-12','00:00:00',2368,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3480,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 19:04:06','drashti','2025-11-12 19:05:01',0),(9119,2526,0,0,3174,'2025-11-12','19:09:52',2367,0,'XRY','XRY0017','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','O',3481,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-12 19:09:52','manshi','2025-11-12 19:09:52',0),(9120,2526,0,0,3176,'2025-11-12','19:00:00',0,152,'REG','REG0001','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 19:12:44','riya','2025-11-13 11:04:50',0),(9121,2526,0,0,3176,'2025-11-12','19:00:00',0,152,'REG','REG0002','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 19:12:44','riya','2025-11-13 11:04:50',0),(9122,2526,0,0,3176,'2025-11-12','19:00:00',0,152,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',137,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 06:42:44','riya','2025-11-13 11:04:50',0),(9123,2526,0,0,3176,'2025-11-12','19:00:00',0,152,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',137,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 06:42:44','riya','2025-11-13 11:04:50',0),(9124,2526,0,0,3176,'2025-11-12','19:00:00',0,152,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',137,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 06:42:44','riya','2025-11-13 11:04:50',0),(9125,2526,0,0,3176,'2025-11-12','19:00:00',0,152,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 06:42:44','riya','2025-11-13 11:01:24',0),(9126,2526,0,0,3176,'2025-11-12','19:00:00',0,152,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',137,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 06:42:44','riya','2025-11-13 11:04:50',0),(9127,2526,0,0,3177,'2025-11-12','00:00:00',2369,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3482,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 19:13:00','janvi','2025-11-12 19:13:37',0),(9128,2526,0,0,3178,'2025-11-12','00:00:00',2370,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3483,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 19:13:12','drashti','2025-11-12 19:14:14',0),(9129,2526,0,0,3179,'2025-11-12','00:00:00',2371,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3484,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 19:14:04','janvi','2025-11-12 19:14:15',0),(9130,2526,0,0,3180,'2025-11-12','00:00:00',2372,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3485,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 19:16:49','drashti','2025-11-12 20:57:23',0),(9131,2526,0,0,3181,'2025-11-12','00:00:00',2373,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3486,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 19:27:07','reception','2025-11-12 19:27:23',0),(9132,2526,0,0,3182,'2025-11-12','00:00:00',2374,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3487,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 19:28:36','reception','2025-11-12 19:28:47',0),(9133,2526,0,0,3183,'2025-11-12','00:00:00',2375,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3489,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 19:36:24','drashti','2025-11-12 20:31:02',0),(9134,2526,0,0,3166,'2025-11-12','19:36:37',2361,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3488,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 19:36:37','reception','2025-11-12 19:36:37',0),(9135,2526,0,0,3184,'2025-11-12','00:00:00',2376,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3490,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-12 19:38:17','manshi','2025-11-12 19:49:01',0),(9136,2526,0,0,3184,'2025-11-12','19:48:34',2376,0,'XRY','XRY0244','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3491,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-12 19:48:34','manshi','2025-11-12 19:48:34',0),(9137,2526,0,0,3186,'2025-11-12','00:00:00',2377,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3493,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 19:50:59','reception','2025-11-12 19:53:06',0),(9138,2526,0,0,3174,'2025-11-12','19:58:35',2367,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3495,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-12 19:58:35','manshi','2025-11-12 19:58:35',0),(9139,2526,0,0,3187,'2025-11-12','00:00:00',2378,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3496,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 19:58:45','drashti','2025-11-12 19:59:04',0),(9140,2526,0,0,3188,'2025-11-12','00:00:00',1491,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3497,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 20:00:12','drashti','2025-11-12 20:00:55',0),(9141,2526,0,0,3165,'2025-11-12','20:08:35',2360,0,'OPWD','OPWD0023','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',3498,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 20:08:35','janvi','2025-11-12 20:08:35',0),(9142,2526,0,0,3182,'2025-11-12','20:16:44',2374,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3499,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 20:16:44','reception','2025-11-12 20:16:44',0),(9143,2526,0,0,3182,'2025-11-12','20:16:44',2374,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3499,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 20:16:44','reception','2025-11-12 20:16:44',0),(9144,2526,0,0,3182,'2025-11-12','20:16:44',2374,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3499,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-12 20:16:44','reception','2025-11-12 20:16:44',0),(9145,2526,0,0,3106,'2025-11-12','20:28:53',2322,0,'OPWD','OPWD0023','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,3,0,0,'',0,0,'','','','','',2526,'H','O',3500,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 20:28:53','janvi','2025-11-12 20:28:53',0),(9146,2526,0,0,3190,'2025-11-12','20:15:00',2329,153,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',138,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 20:29:31','riya','2025-11-15 11:14:17',0),(9147,2526,0,0,3190,'2025-11-12','20:15:00',2329,153,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',138,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 20:29:31','riya','2025-11-15 11:14:17',0),(9148,2526,0,0,3190,'2025-11-12','20:15:00',2329,153,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',138,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 07:59:31','riya','2025-11-15 11:14:17',0),(9149,2526,0,0,3190,'2025-11-12','20:15:00',2329,153,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',138,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 07:59:31','riya','2025-11-15 11:14:17',0),(9150,2526,0,0,3190,'2025-11-12','20:15:00',2329,153,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',138,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 07:59:31','riya','2025-11-15 11:14:17',0),(9151,2526,0,0,3190,'2025-11-15','20:15:00',2329,153,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','411','','','',2526,'H','I',138,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 07:59:31','riya','2025-11-15 11:14:17',0),(9152,2526,0,0,3190,'2025-11-12','20:15:00',2329,153,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 07:59:31','riya','2025-11-15 11:14:17',0),(9153,2526,0,0,3189,'2025-11-12','20:30:14',1978,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3501,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 20:30:14','drashti','2025-11-12 20:30:14',0),(9154,2526,0,0,3185,'2025-11-12','20:30:17',1775,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3502,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-12 20:30:17','janvi','2025-11-12 20:30:17',0),(9155,2526,0,0,3183,'2025-11-12','20:32:32',2375,0,'PKG','CASE','H','N',1.00,750,750,'P',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3504,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-12 20:32:32','drashti','2025-11-12 20:32:32',0),(9156,2526,0,0,2876,'2025-11-11','20:54:00',0,145,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 20:55:32','','0000-00-00 00:00:00',0),(9157,2526,0,0,2876,'2025-11-12','20:54:00',0,145,'WPRC','WPRC0098','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 20:55:32','vishal','2025-11-14 19:26:34',0),(9158,2526,0,0,2876,'2025-11-13','20:54:00',0,145,'WPRC','WPRC0098','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-12 20:55:32','vishal','2025-11-14 19:26:34',0),(9159,2526,0,0,3191,'2025-11-13','00:00:00',2379,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 08:59:54','reception','2025-11-12 20:29:54',0),(9160,2526,0,0,3191,'2025-11-13','09:00:23',2379,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',3506,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 09:00:23','reception','2025-11-13 09:00:23',0),(9161,2526,0,0,3192,'2025-11-13','00:00:00',2380,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3508,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-13 09:10:54','janvi','2025-11-13 09:13:15',0),(9162,2526,0,0,3193,'2025-11-13','00:00:00',2381,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3507,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-13 09:12:09','janvi','2025-11-13 09:13:05',0),(9163,2526,0,0,3194,'2025-11-13','03:00:00',0,154,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-13 09:33:24','thims','2025-11-13 10:33:32',0),(9164,2526,0,0,3194,'2025-11-13','03:00:00',0,154,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-13 09:33:24','thims','2025-11-13 10:33:32',0),(9165,2526,0,0,3194,'2025-11-13','03:00:00',0,154,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','210','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-12 21:03:24','thims','2025-11-13 10:33:32',0),(9166,2526,0,0,3194,'2025-11-13','03:00:00',0,154,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','210','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-12 21:03:24','thims','2025-11-13 10:33:32',0),(9167,2526,0,0,3194,'2025-11-13','03:00:00',0,154,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','210','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-12 21:03:24','thims','2025-11-13 10:33:32',0),(9168,2526,0,0,3194,'2025-11-13','03:00:00',0,154,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','210','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-12 21:03:24','thims','2025-11-13 10:33:32',0),(9169,2526,0,0,3194,'2025-11-13','03:00:00',0,154,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','210','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-12 21:03:24','thims','2025-11-13 10:33:32',0),(9170,2526,0,0,3195,'2025-11-13','00:00:00',2382,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3509,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-13 09:35:11','janvi','2025-11-13 09:35:44',0),(9171,2526,0,0,3196,'2025-11-13','03:00:00',0,155,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',134,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 09:43:44','riya','2025-11-13 12:50:03',0),(9172,2526,0,0,3196,'2025-11-13','03:00:00',0,155,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',134,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 09:43:44','riya','2025-11-13 12:50:03',0),(9173,2526,0,0,3196,'2025-11-13','03:00:00',0,155,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',134,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-12 21:13:44','riya','2025-11-13 12:50:03',0),(9174,2526,0,0,3196,'2025-11-13','03:00:00',0,155,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',134,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-12 21:13:44','riya','2025-11-13 12:50:03',0),(9175,2526,0,0,3196,'2025-11-13','03:00:00',0,155,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',134,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-12 21:13:44','riya','2025-11-13 12:50:03',0),(9176,2526,0,0,3196,'2025-11-13','03:00:00',0,155,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',134,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-12 21:13:44','riya','2025-11-13 12:50:03',0),(9177,2526,0,0,3196,'2025-11-13','03:00:00',0,155,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-12 21:13:44','riya','2025-11-13 12:50:03',0),(9178,2526,0,0,3197,'2025-11-13','00:00:00',1767,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3510,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 10:00:25','reception','2025-11-13 10:00:49',0),(9179,2526,0,0,3198,'2025-11-13','00:00:00',2383,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3511,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 10:07:42','reception','2025-11-13 10:08:06',0),(9180,2526,0,0,3199,'2025-11-13','00:00:00',813,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3512,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 10:18:03','reception','2025-11-13 10:18:22',0),(9181,2526,0,0,3200,'2025-11-13','00:00:00',2384,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3513,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 10:24:18','reception','2025-11-13 10:24:42',0),(9182,2526,0,0,3201,'2025-11-13','00:00:00',2385,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3515,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 10:25:52','priyanshi','2025-11-13 10:26:50',0),(9183,2526,0,0,3202,'2025-11-13','00:00:00',2386,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3514,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 10:25:57','reception','2025-11-13 10:26:11',0),(9184,2526,0,0,3203,'2025-11-13','00:00:00',2387,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3516,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 10:28:34','reception','2025-11-13 10:29:21',0),(9185,2526,0,0,3204,'2025-11-13','00:00:00',1053,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3517,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 10:33:53','reception','2025-11-13 10:34:12',0),(9186,2526,0,0,3205,'2025-11-13','00:00:00',1758,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3518,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 10:37:26','reception','2025-11-13 10:37:44',0),(9187,2526,0,0,3206,'2025-11-13','00:00:00',2388,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3519,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 10:38:13','priyanshi','2025-11-13 10:38:43',0),(9188,2526,0,0,3207,'2025-11-13','00:00:00',1130,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3520,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 10:42:07','reception','2025-11-13 10:42:39',0),(9189,2526,0,0,2879,'2025-11-13','10:42:00',0,146,'ROOM','ROOM0008','H','N',4.00,100,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 10:45:32','riya','2025-12-01 20:12:39',0),(9190,2526,0,0,2879,'2025-11-13','10:43:00',0,146,'WPRC','WPRC0089','H','N',5.00,100,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 10:45:32','vishal','2025-11-30 20:00:04',0),(9191,2526,0,0,2879,'2025-11-13','10:43:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 10:45:32','riya','2025-11-27 17:57:23',0),(9192,2526,0,0,2879,'2025-11-13','10:43:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 10:45:32','riya','2025-11-27 17:57:23',0),(9193,2526,0,0,2879,'2025-11-13','10:44:00',0,146,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,46,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 10:45:32','vishal','2025-11-14 20:44:03',0),(9194,2526,0,0,2879,'2025-11-12','10:44:00',0,146,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,37,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 10:45:32','','0000-00-00 00:00:00',0),(9195,2526,0,0,3208,'2025-11-13','00:00:00',2389,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3521,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 10:46:07','reception','2025-11-13 10:46:26',0),(9196,2526,0,0,3209,'2025-11-13','00:00:00',2390,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3522,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 10:48:22','reception','2025-11-13 10:48:42',0),(9197,2526,0,0,3113,'2025-11-12','10:47:00',0,150,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',139,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 10:51:18','','0000-00-00 00:00:00',0),(9198,2526,0,0,3113,'2025-11-12','10:48:00',0,150,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,88,0,0,'',0,0,'','','','','',2526,'H','I',139,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 10:51:18','','0000-00-00 00:00:00',0),(9199,2526,0,0,3113,'2025-11-12','10:48:00',0,150,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,7,0,0,'',0,0,'','','','','',2526,'H','I',139,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 10:51:18','','0000-00-00 00:00:00',0),(9200,2526,0,0,3113,'2025-11-12','10:49:00',0,150,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',139,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 10:51:18','','0000-00-00 00:00:00',0),(9201,2526,0,0,3113,'2025-11-13','10:50:00',0,150,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',139,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 10:51:18','','0000-00-00 00:00:00',0),(9202,2526,0,0,3113,'2025-11-12','10:50:00',0,150,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',139,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 10:51:18','','0000-00-00 00:00:00',0),(9203,2526,0,0,3210,'2025-11-13','00:00:00',2391,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3523,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 10:54:12','priyanshi','2025-11-13 10:54:44',0),(9204,2526,0,0,3176,'2025-11-12','10:52:00',0,152,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 11:01:24','riya','2025-11-13 11:04:50',0),(9205,2526,0,0,3176,'2025-11-12','10:53:00',0,152,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 11:01:24','riya','2025-11-13 11:04:50',0),(9206,2526,0,0,3176,'2025-11-12','10:53:00',0,152,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 11:01:24','riya','2025-11-13 11:04:50',0),(9207,2526,0,0,3176,'2025-11-13','10:56:00',0,152,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 11:01:24','','0000-00-00 00:00:00',0),(9208,2526,0,0,3176,'2025-11-12','10:56:00',0,152,'XRY','XRY0045','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 11:01:24','riya','2025-11-13 11:04:50',0),(9209,2526,0,0,3176,'2025-11-12','10:57:00',0,152,'WPRC','WPRC0101','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 11:01:24','riya','2025-11-13 11:04:50',0),(9210,2526,0,0,3176,'2025-11-13','10:58:00',0,152,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 11:01:24','','0000-00-00 00:00:00',0),(9211,2526,0,0,3176,'2025-11-12','10:58:00',0,152,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 11:01:24','','0000-00-00 00:00:00',0),(9212,2526,0,0,3176,'2025-11-13','10:58:00',0,152,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 11:01:24','','0000-00-00 00:00:00',0),(9213,2526,0,0,3176,'2025-11-12','10:58:00',0,152,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 11:01:24','riya','2025-11-13 11:04:50',0),(9214,2526,0,0,3176,'2025-11-13','10:58:00',0,152,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 11:01:24','vishal','2025-11-14 17:24:02',0),(9215,2526,0,0,3211,'2025-11-13','00:00:00',2392,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3524,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 11:01:53','reception','2025-11-13 11:02:56',0),(9216,2526,0,0,3212,'2025-11-13','00:00:00',2393,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3525,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 11:03:52','priyanshi','2025-11-13 11:04:20',0),(9217,2526,0,0,3213,'2025-11-13','00:00:00',601,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3526,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 11:07:06','priyanshi','2025-11-13 11:07:31',0),(9218,2526,0,0,3214,'2025-11-13','00:00:00',2394,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3527,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 11:08:12','reception','2025-11-13 11:08:23',0),(9219,2526,0,0,3215,'2025-11-13','00:00:00',2395,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3528,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-13 11:08:51','janvi','2025-11-13 11:09:31',0),(9220,2526,0,0,3216,'2025-11-13','00:00:00',514,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3541,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-13 11:09:03','manshi','2025-11-13 11:38:29',0),(9221,2526,0,0,3217,'2025-11-13','00:00:00',2396,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3529,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 11:11:49','priyanshi','2025-11-13 11:12:43',0),(9222,2526,0,0,3218,'2025-11-13','00:00:00',1687,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3530,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 11:12:30','reception','2025-11-13 11:12:57',0),(9223,2526,0,0,3219,'2025-11-13','00:00:00',2397,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3554,1,179,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 11:14:03','priyanshi','2025-11-13 12:44:51',0),(9224,2526,0,0,3220,'2025-11-13','00:00:00',2398,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3531,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 11:14:11','reception','2025-11-13 11:15:35',0),(9225,2526,0,0,3221,'2025-11-13','00:00:00',2399,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',3532,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 11:18:17','reception','2025-11-13 11:19:07',0),(9226,2526,0,0,3222,'2025-11-13','00:00:00',2400,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3533,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 11:20:54','priyanshi','2025-11-13 11:22:59',0),(9227,2526,0,0,3201,'2025-11-13','11:24:56',2385,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,4,0,0,'',0,0,'','','','','',2526,'H','O',3534,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-13 11:24:56','shweta','2025-11-13 11:24:56',0),(9228,2526,0,0,3201,'2025-11-13','11:24:56',2385,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3534,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-13 11:24:56','shweta','2025-11-13 11:24:56',0),(9229,2526,0,0,3223,'2025-11-13','00:00:00',721,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3535,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-13 11:25:29','shweta','2025-11-13 11:26:09',0),(9230,2526,0,0,3209,'2025-11-13','11:26:52',2390,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3536,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 11:26:52','reception','2025-11-13 11:26:52',0),(9231,2526,0,0,3209,'2025-11-13','11:26:52',2390,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3536,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 11:26:52','reception','2025-11-13 11:26:52',0),(9232,2526,0,0,3209,'2025-11-13','11:26:52',2390,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3536,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 11:26:52','reception','2025-11-13 11:26:52',0),(9233,2526,0,0,3224,'2025-11-13','00:00:00',2401,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3537,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-13 11:26:53','shweta','2025-11-13 11:27:21',0),(9234,2526,0,0,3225,'2025-11-13','00:00:00',2402,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3538,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-13 11:27:56','janvi','2025-11-13 11:29:11',0),(9235,2526,0,0,3226,'2025-11-13','00:00:00',2403,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3539,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 11:33:31','reception','2025-11-13 11:35:20',0),(9236,2526,0,0,3027,'2025-11-12','11:34:00',2247,149,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,3,0,0,'',0,0,'','','','','',2526,'H','I',143,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 11:36:41','','0000-00-00 00:00:00',0),(9237,2526,0,0,3027,'2025-11-12','11:35:00',2247,149,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',143,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 11:36:41','','0000-00-00 00:00:00',0),(9238,2526,0,0,3027,'2025-11-13','11:35:00',2247,149,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',143,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 11:36:41','','0000-00-00 00:00:00',0),(9239,2526,0,0,3227,'2025-11-13','00:00:00',2404,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3540,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-13 11:38:00','janvi','2025-11-13 11:38:20',0),(9240,2526,0,0,3228,'2025-11-13','00:00:00',1747,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3542,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 11:42:42','reception','2025-11-13 11:43:03',0),(9241,2526,0,0,3229,'2025-11-13','00:00:00',2405,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3543,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 11:44:21','reception','2025-11-13 11:44:42',0),(9242,2526,0,0,3230,'2025-11-13','00:00:00',1866,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3544,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 11:47:15','reception','2025-11-13 11:47:31',0),(9243,2526,0,0,2811,'2025-11-13','01:00:00',0,143,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-12 23:17:48','riya','2025-11-14 19:11:18',0),(9244,2526,0,0,2811,'2025-11-13','01:00:00',0,143,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-12 23:17:48','riya','2025-11-14 18:43:16',0),(9245,2526,0,0,2811,'2025-11-13','01:00:00',0,143,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-12 23:17:48','riya','2025-11-14 19:11:18',0),(9246,2526,0,0,2811,'2025-11-13','01:00:00',0,143,'DRC','DRC0018','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-12 23:17:48','riya','2025-11-20 11:12:56',0),(9247,2526,0,0,2811,'2025-11-13','01:00:00',0,143,'DRC','DRC0019','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-12 23:17:48','riya','2025-11-20 11:12:56',0),(9248,2526,0,0,3231,'2025-11-13','00:00:00',708,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3545,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 11:48:13','priyanshi','2025-11-13 11:48:23',0),(9249,2526,0,0,2876,'2025-11-13','11:48:00',0,145,'ROOM','ROOM0008','H','N',4.00,100,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 11:50:00','vishal','2025-11-14 19:26:34',0),(9250,2526,0,0,2876,'2025-11-13','11:49:00',0,145,'WPRC','WPRC0077','H','N',2.00,500,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 11:50:00','vishal','2025-11-14 19:25:55',0),(9251,2526,0,0,3233,'2025-11-13','00:00:00',2406,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',3546,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 11:54:24','reception','2025-11-13 11:55:34',0),(9252,2526,0,0,3232,'2025-11-13','11:57:32',1343,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',3547,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-13 11:57:32','janvi','2025-11-13 11:57:32',0),(9253,2526,0,0,3234,'2025-11-13','00:00:00',349,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3548,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 12:09:29','reception','2025-11-13 12:10:22',0),(9254,2526,0,0,3113,'2025-11-12','12:22:00',0,150,'SURG','SURG0014','H','N',1.00,45000,45000,'P',0,0,0.00,0.00,45000.00,45000,3,0,0,'',0,0,'','','','','',2526,'H','I',139,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 12:23:50','riya','2025-11-15 11:56:15',0),(9255,2526,0,0,3113,'2025-11-12','12:23:00',0,150,'SURG','SURG0015','H','N',1.00,14250,14250,'P',0,0,0.00,0.00,14250.00,14250,3,0,0,'',0,0,'','','','','',2526,'H','I',139,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 12:23:50','riya','2025-11-15 12:22:19',0),(9256,2526,0,0,3235,'2025-11-13','00:00:00',2407,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3549,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 12:28:40','reception','2025-11-13 12:29:12',0),(9257,2526,0,0,3237,'2025-11-13','00:00:00',1100,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3550,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 12:30:05','priyanshi','2025-11-13 12:30:22',0),(9258,2526,0,0,3114,'2025-11-13','12:32:00',2310,151,'WPRC','WPRC0083','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',230,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 12:33:15','vishal','2025-11-13 20:02:05',0),(9259,2526,0,0,3238,'2025-11-13','00:00:00',2408,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3572,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 12:34:01','shweta','2025-11-13 15:00:16',0),(9260,2526,0,0,3239,'2025-11-13','00:00:00',2409,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3551,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-13 12:34:34','janvi','2025-11-13 12:35:26',0),(9261,2526,0,0,3221,'2025-11-13','12:38:38',2399,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3552,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 12:38:38','reception','2025-11-13 12:38:38',0),(9262,2526,0,0,3221,'2025-11-13','12:38:38',2399,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3552,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 12:38:38','reception','2025-11-13 12:38:38',0),(9263,2526,0,0,3240,'2025-11-13','00:00:00',2410,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3553,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 12:42:52','priyanshi','2025-11-13 12:43:12',0),(9264,2526,0,0,3219,'2025-11-13','12:44:51',2397,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',3554,2,71,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 12:44:51','priyanshi','2025-11-13 12:44:51',0),(9265,2526,0,0,3241,'2025-11-13','00:00:00',2411,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3556,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-13 12:45:59','janvi','2025-11-13 12:47:07',0),(9266,2526,0,0,3242,'2025-11-13','00:00:00',2412,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3555,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 12:46:29','priyanshi','2025-11-13 12:47:06',0),(9267,2526,0,0,3196,'2025-11-13','12:46:00',0,155,'CARP','CARP0032','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,5000.00,5000,4,0,0,'',0,0,'','','','','',2526,'H','I',134,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 12:50:03','','0000-00-00 00:00:00',0),(9268,2526,0,0,3196,'2025-11-13','12:46:00',0,155,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',134,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 12:50:03','','0000-00-00 00:00:00',0),(9269,2526,0,0,3196,'2025-11-13','12:49:00',0,155,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',134,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 12:50:03','','0000-00-00 00:00:00',0),(9270,2526,0,0,3196,'2025-11-13','12:49:00',0,155,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',134,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 12:50:03','','0000-00-00 00:00:00',0),(9271,2526,0,0,3196,'2025-11-13','12:49:00',0,155,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',134,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 12:50:03','','0000-00-00 00:00:00',0),(9272,2526,0,0,3243,'2025-11-13','00:00:00',1096,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3557,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 12:51:39','reception','2025-11-13 12:52:37',0),(9273,2526,0,0,3244,'2025-11-13','00:00:00',1882,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3558,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 12:58:43','reception','2025-11-13 12:58:59',0),(9274,2526,0,0,2876,'2025-11-13','13:00:00',0,145,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 00:31:59','riya','2025-11-13 16:07:32',0),(9275,2526,0,0,2876,'2025-11-13','13:00:00',0,145,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 00:31:59','vishal','2025-11-14 19:26:34',0),(9276,2526,0,0,2876,'2025-11-13','13:00:00',0,145,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 00:31:59','vishal','2025-11-14 19:26:34',0),(9277,2526,0,0,2876,'2025-11-13','13:00:00',0,145,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 00:31:59','vishal','2025-11-14 19:26:34',0),(9278,2526,0,0,2876,'2025-11-13','13:00:00',0,145,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 00:31:59','vishal','2025-11-14 19:26:34',0),(9279,2526,0,0,2919,'2025-11-12','21:00:00',951,147,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',135,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 00:32:00','riya','2025-11-13 13:02:59',0),(9280,2526,0,0,2919,'2025-11-12','21:00:00',951,147,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',135,17,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 00:32:00','riya','2025-11-13 17:44:03',0),(9281,2526,0,0,2919,'2025-11-12','21:00:00',951,147,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',135,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 00:32:00','riya','2025-11-13 13:02:59',0),(9282,2526,0,0,3113,'2025-11-13','13:00:00',0,150,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',139,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 00:32:00','riya','2025-11-14 11:51:19',0),(9283,2526,0,0,3113,'2025-11-13','13:00:00',0,150,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',139,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 00:32:00','riya','2025-11-14 11:51:19',0),(9284,2526,0,0,3113,'2025-11-13','13:00:00',0,150,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','209','','','',2526,'H','I',139,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 00:32:00','riya','2025-11-14 11:51:19',0),(9285,2526,0,0,3113,'2025-11-13','13:00:00',0,150,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','209','','','',0,'','',0,18,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 00:32:00','riya','2025-11-15 11:33:13',0),(9286,2526,0,0,3113,'2025-11-13','13:00:00',0,150,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',139,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 00:32:00','riya','2025-11-14 11:51:19',0),(9287,2526,0,0,3233,'2025-11-13','13:07:14',2406,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',3559,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 13:07:14','reception','2025-11-13 13:07:14',0),(9288,2526,0,0,3235,'2025-11-13','13:13:08',2407,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3560,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 13:13:08','reception','2025-11-13 13:13:08',0),(9289,2526,0,0,3235,'2025-11-13','13:13:08',2407,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3560,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 13:13:08','reception','2025-11-13 13:13:08',0),(9290,2526,0,0,3235,'2025-11-13','13:13:08',2407,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3560,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 13:13:08','reception','2025-11-13 13:13:08',0),(9291,2526,0,0,3245,'2025-11-13','00:00:00',2413,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3561,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 13:21:06','priyanshi','2025-11-13 13:21:16',0),(9292,2526,0,0,3246,'2025-11-13','00:00:00',1189,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3562,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 13:26:20','reception','2025-11-13 13:26:30',0),(9293,2526,0,0,3247,'2025-11-13','00:00:00',2414,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-13 13:28:26','janvi','2025-11-13 00:58:26',0),(9294,2526,0,0,3248,'2025-11-13','00:00:00',2415,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3563,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 13:29:24','reception','2025-11-13 13:29:41',0),(9295,2526,0,0,3247,'2025-11-13','13:30:03',2414,0,'OPWD','OPWD0033','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,4,0,0,'',0,0,'','','','','',2526,'H','O',3564,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-13 13:30:03','janvi','2025-11-13 13:30:03',0),(9296,2526,0,0,3249,'2025-11-13','00:00:00',2416,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3565,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 13:33:32','priyanshi','2025-11-13 13:34:55',0),(9297,2526,0,0,3250,'2025-11-13','13:36:47',2356,0,'OPWD','OPWD0034','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,4,0,0,'',0,0,'','','','','',2526,'H','O',3566,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 13:36:47','priyanshi','2025-11-13 13:36:47',0),(9298,2526,0,0,3244,'2025-11-13','13:44:42',1882,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3567,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 13:44:42','reception','2025-11-13 13:44:42',0),(9299,2526,0,0,3224,'2025-11-13','13:54:09',2401,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',3568,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'priyanshi','2025-11-13 13:54:09','priyanshi','2025-11-13 13:54:09',0),(9300,2526,0,0,3224,'2025-11-13','13:54:09',2401,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',3568,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'priyanshi','2025-11-13 13:54:09','priyanshi','2025-11-13 13:54:09',0),(9301,2526,0,0,3224,'2025-11-13','13:54:09',2401,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,74,'',0,0,'','','','','',2526,'H','O',3568,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'priyanshi','2025-11-13 13:54:09','priyanshi','2025-11-13 13:54:09',0),(9302,2526,0,0,3251,'2025-11-13','00:00:00',2417,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3569,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 14:01:44','reception','2025-11-13 14:02:10',0),(9303,2526,0,0,3219,'2025-11-13','14:03:32',2397,0,'OPWD','OPWD0034','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,4,0,0,'',0,0,'','','','','',2526,'H','O',3570,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-13 14:03:32','shweta','2025-11-13 14:03:32',0),(9304,2526,0,0,3219,'2025-11-13','14:03:32',2397,0,'OPWD','OPWD0033','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,4,0,0,'',0,0,'','','','','',2526,'H','O',3570,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-13 14:03:32','shweta','2025-11-13 14:03:32',0),(9305,2526,0,0,3249,'2025-11-13','14:17:15',2416,0,'OPWD','OPWD0034','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,4,0,0,'',0,0,'','','','','',2526,'H','O',3571,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-13 14:17:15','shweta','2025-11-13 14:17:15',0),(9306,2526,0,0,3249,'2025-11-13','14:17:15',2416,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',3571,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-13 14:17:15','shweta','2025-11-13 14:17:15',0),(9307,2526,0,0,3252,'2025-11-13','00:00:00',2418,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',3573,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-13 15:48:35','shweta','2025-11-13 15:51:29',0),(9308,2526,0,0,3252,'2025-11-13','15:51:29',2418,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',3573,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-13 15:51:29','shweta','2025-11-13 15:51:29',0),(9309,2526,0,0,2879,'2025-11-13','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 03:37:58','vishal','2025-11-30 20:00:04',0),(9310,2526,0,0,2879,'2025-11-13','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 03:37:58','riya','2025-11-14 11:31:02',0),(9311,2526,0,0,2879,'2025-11-13','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 03:37:58','vishal','2025-11-30 20:00:04',0),(9312,2526,0,0,2879,'2025-11-13','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 03:37:58','vishal','2025-11-30 20:00:04',0),(9313,2526,0,0,2879,'2025-11-13','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 03:37:58','riya','2025-11-14 11:31:02',0),(9314,2526,0,0,3253,'2025-11-13','00:00:00',2419,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3574,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 16:29:43','reception','2025-11-13 16:30:25',0),(9315,2526,0,0,3254,'2025-11-13','00:00:00',2420,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3575,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 16:37:16','reception','2025-11-13 16:38:13',0),(9316,2526,0,0,3255,'2025-11-13','00:00:00',2421,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3576,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 16:38:58','reception','2025-11-13 16:39:16',0),(9317,2526,0,0,3256,'2025-11-13','00:00:00',1806,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3577,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 16:39:42','reception','2025-11-13 16:40:43',0),(9318,2526,0,0,3257,'2025-11-13','00:00:00',1462,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3578,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 16:58:46','reception','2025-11-13 16:59:20',0),(9319,2526,0,0,3258,'2025-11-13','00:00:00',2422,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3579,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 17:11:30','reception','2025-11-13 17:11:47',0),(9320,2526,0,0,3259,'2025-11-13','00:00:00',2423,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3580,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 17:14:11','reception','2025-11-13 17:15:30',0),(9321,2526,0,0,3260,'2025-11-13','00:00:00',2424,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3582,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 17:17:14','priyanshi','2025-11-13 17:18:37',0),(9322,2526,0,0,3253,'2025-11-13','17:17:55',2419,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3581,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 17:17:55','reception','2025-11-13 17:17:55',0),(9323,2526,0,0,3253,'2025-11-13','17:17:55',2419,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3581,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 17:17:55','reception','2025-11-13 17:17:55',0),(9324,2526,0,0,3253,'2025-11-13','17:17:55',2419,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3581,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 17:17:55','reception','2025-11-13 17:17:55',0),(9325,2526,0,0,3261,'2025-11-13','00:00:00',2425,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3583,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 17:26:06','reception','2025-11-13 17:26:21',0),(9326,2526,0,0,3262,'2025-11-13','00:00:00',2426,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3584,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 17:32:17','reception','2025-11-13 17:32:44',0),(9327,2526,0,0,3260,'2025-11-13','17:40:34',2424,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3585,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 17:40:34','reception','2025-11-13 17:40:34',0),(9328,2526,0,0,3260,'2025-11-13','17:40:34',2424,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3585,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 17:40:34','reception','2025-11-13 17:40:34',0),(9329,2526,0,0,3260,'2025-11-13','17:40:34',2424,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3585,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 17:40:34','reception','2025-11-13 17:40:34',0),(9330,2526,0,0,2919,'2025-11-13','17:41:00',951,147,'ROOM','ROOM0008','H','N',2.00,100,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',135,21,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 17:43:02','riya','2025-11-13 17:44:03',0),(9331,2526,0,0,3264,'2025-11-13','00:00:00',2427,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3586,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 17:47:43','reception','2025-11-13 17:48:05',0),(9332,2526,0,0,3263,'2025-11-13','17:48:13',1288,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3587,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-13 17:48:13','shweta','2025-11-13 17:48:13',0),(9333,2526,0,0,3265,'2025-11-13','00:00:00',2428,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3588,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 17:49:09','reception','2025-11-13 17:49:19',0),(9334,2526,0,0,3266,'2025-11-13','00:00:00',2429,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3589,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 17:51:38','reception','2025-11-13 17:52:47',0),(9335,2526,0,0,3267,'2025-11-13','00:00:00',2430,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3590,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 17:54:17','priyanshi','2025-11-13 17:55:15',0),(9336,2526,0,0,3259,'2025-11-13','17:56:11',2423,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3591,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 17:56:11','reception','2025-11-13 17:56:11',0),(9337,2526,0,0,3259,'2025-11-13','17:56:11',2423,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3591,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 17:56:11','reception','2025-11-13 17:56:11',0),(9338,2526,0,0,3259,'2025-11-13','17:56:11',2423,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3591,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 17:56:11','reception','2025-11-13 17:56:11',0),(9339,2526,0,0,3268,'2025-11-13','00:00:00',545,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3592,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-13 18:01:06','manshi','2025-11-13 18:01:15',0),(9340,2526,0,0,3269,'2025-11-13','00:00:00',2431,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3593,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 18:01:22','priyanshi','2025-11-13 18:01:32',0),(9341,2526,0,0,3270,'2025-11-13','00:00:00',2432,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3596,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 18:03:53','priyanshi','2025-11-13 18:05:58',0),(9342,2526,0,0,3271,'2025-11-13','00:00:00',2433,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3594,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-13 18:05:00','shweta','2025-11-13 18:05:43',0),(9343,2526,0,0,3272,'2025-11-13','00:00:00',2434,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',3595,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-13 18:05:16','manshi','2025-11-13 18:05:46',0),(9344,2526,0,0,3273,'2025-11-13','00:00:00',637,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3597,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 18:06:28','reception','2025-11-13 18:06:43',0),(9345,2526,0,0,3268,'2025-11-13','18:09:25',545,0,'XRY','XRY0189','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',3598,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-13 18:09:25','manshi','2025-11-13 18:09:25',0),(9346,2526,0,0,3274,'2025-11-13','00:00:00',324,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3600,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 18:09:31','reception','2025-11-13 18:11:00',0),(9347,2526,0,0,3275,'2025-11-13','18:10:34',1976,0,'OTCG','OTCG0003','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',3599,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 18:10:34','priyanshi','2025-11-13 18:10:34',0),(9348,2526,0,0,3276,'2025-11-13','00:00:00',2435,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3601,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 18:11:09','priyanshi','2025-11-13 18:12:12',0),(9349,2526,0,0,3262,'2025-11-13','18:12:43',2426,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3602,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 18:12:43','reception','2025-11-13 18:12:43',0),(9350,2526,0,0,3262,'2025-11-13','18:12:43',2426,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3602,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 18:12:43','reception','2025-11-13 18:12:43',0),(9351,2526,0,0,3262,'2025-11-13','18:12:43',2426,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3602,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 18:12:43','reception','2025-11-13 18:12:43',0),(9352,2526,0,0,3277,'2025-11-13','00:00:00',2436,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3604,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 18:22:51','priyanshi','2025-11-13 18:26:12',0),(9353,2526,0,0,3278,'2025-11-13','00:00:00',2437,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3603,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 18:25:09','priyanshi','2025-11-13 18:25:52',0),(9354,2526,0,0,3279,'2025-11-13','00:00:00',218,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3605,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 18:34:57','reception','2025-11-13 18:35:21',0),(9355,2526,0,0,3264,'2025-11-13','18:36:58',2427,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',3606,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'priyanshi','2025-11-13 18:36:58','priyanshi','2025-11-13 18:36:58',0),(9356,2526,0,0,3264,'2025-11-13','18:36:58',2427,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,75,'',0,0,'','','','','',2526,'H','O',3606,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'priyanshi','2025-11-13 18:36:58','priyanshi','2025-11-13 18:36:58',0),(9357,2526,0,0,3281,'2025-11-13','00:00:00',662,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',3607,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 18:38:11','priyanshi','2025-11-13 18:38:47',0),(9358,2526,0,0,3280,'2025-11-13','18:38:48',2097,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',3608,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 18:38:48','reception','2025-11-13 18:38:48',0),(9359,2526,0,0,3282,'2025-11-13','00:00:00',2438,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3610,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-13 18:39:16','shweta','2025-11-13 18:40:55',0),(9360,2526,0,0,3283,'2025-11-13','00:00:00',1606,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3609,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 18:39:38','priyanshi','2025-11-13 18:39:48',0),(9361,2526,0,0,3284,'2025-11-13','00:00:00',1156,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3611,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 18:44:32','priyanshi','2025-11-13 18:45:16',0),(9362,2526,0,0,3271,'2025-11-13','18:48:15',2433,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',3612,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 18:48:15','priyanshi','2025-11-13 18:48:15',0),(9363,2526,0,0,3286,'2025-11-13','00:00:00',580,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3614,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-13 18:54:12','manshi','2025-11-13 18:56:05',0),(9364,2526,0,0,3287,'2025-11-13','00:00:00',2439,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3613,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 18:55:12','priyanshi','2025-11-13 18:56:01',0),(9365,2526,0,0,3288,'2025-11-13','00:00:00',536,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3615,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-13 18:58:58','reception','2025-11-13 18:59:11',0),(9366,2526,0,0,3289,'2025-11-13','00:00:00',2440,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3620,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 19:09:27','priyanshi','2025-11-13 19:31:13',0),(9367,2526,0,0,3285,'2025-11-13','19:24:27',2145,0,'OTCG','OTCG0003','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',3616,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-13 19:24:27','shweta','2025-11-13 19:24:27',0),(9368,2526,0,0,3290,'2025-11-13','00:00:00',2441,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3617,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 19:24:35','priyanshi','2025-11-13 19:25:21',0),(9369,2526,0,0,3291,'2025-11-13','19:25:34',2378,0,'OPWD','OPWD0023','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',3618,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-13 19:25:34','shweta','2025-11-13 19:25:34',0),(9370,2526,0,0,3292,'2025-11-13','00:00:00',2442,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3619,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 19:26:05','priyanshi','2025-11-13 19:26:36',0),(9371,2526,0,0,3293,'2025-11-13','00:00:00',1480,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3621,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-13 19:33:33','priyanshi','2025-11-13 19:33:57',0),(9372,2526,0,0,3294,'2025-11-13','19:00:00',0,156,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',140,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-13 19:35:15','vishal','2025-11-14 17:19:47',0),(9373,2526,0,0,3294,'2025-11-13','19:00:00',0,156,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',140,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-13 19:35:15','vishal','2025-11-14 17:19:47',0),(9374,2526,0,0,3294,'2025-11-13','19:00:00',0,156,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',140,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-13 07:05:15','vishal','2025-11-14 17:19:47',0),(9375,2526,0,0,3294,'2025-11-13','19:00:00',0,156,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',140,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-13 07:05:15','vishal','2025-11-14 17:19:47',0),(9376,2526,0,0,3294,'2025-11-13','19:00:00',0,156,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',140,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-13 07:05:15','vishal','2025-11-14 17:19:47',0),(9377,2526,0,0,3294,'2025-11-13','19:00:00',0,156,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','209','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-13 07:05:15','vishal','2025-11-14 17:19:47',0),(9378,2526,0,0,3294,'2025-11-13','19:00:00',0,156,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',140,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-13 07:05:15','vishal','2025-11-14 17:19:47',0),(9379,2526,0,0,3114,'2025-11-13','14:30:00',2310,151,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','408','','','',2526,'H','I',230,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-13 07:24:56','vishal','2025-11-13 20:02:05',0),(9380,2526,0,0,3295,'2025-11-13','00:00:00',2443,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3622,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-13 19:58:42','shweta','2025-11-13 19:59:14',0),(9381,2526,0,0,3114,'2025-11-13','20:01:00',2310,151,'OETR','OETR0004','H','N',1.00,69241,69241,'P',0,0,0.00,0.00,69241.00,69241,9999,0,0,'',0,0,'','','','','',2526,'H','I',230,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-13 20:02:05','vishal','2025-12-08 20:11:18',0),(9382,2526,0,0,3296,'2025-11-14','00:00:00',2444,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 08:46:04','reception','2025-11-13 20:16:04',0),(9383,2526,0,0,3296,'2025-11-14','08:47:12',2444,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3623,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 08:47:11','reception','2025-11-14 08:47:11',0),(9384,2526,0,0,3297,'2025-11-14','00:00:00',2445,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3624,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 09:13:20','janvi','2025-11-14 09:15:42',0),(9385,2526,0,0,3298,'2025-11-14','00:00:00',2446,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',3625,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 09:51:04','reception','2025-11-14 09:51:50',0),(9386,2526,0,0,3299,'2025-11-14','09:30:00',0,157,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',141,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 09:53:21','riya','2025-11-15 16:31:54',0),(9387,2526,0,0,3299,'2025-11-14','09:30:00',0,157,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',141,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 09:53:21','riya','2025-11-15 16:31:54',0),(9388,2526,0,0,3299,'2025-11-14','09:30:00',0,157,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',141,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 21:23:22','riya','2025-11-15 16:31:54',0),(9389,2526,0,0,3299,'2025-11-14','09:30:00',0,157,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',141,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 21:23:22','riya','2025-11-15 16:31:54',0),(9390,2526,0,0,3299,'2025-11-14','09:30:00',0,157,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',141,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 21:23:22','riya','2025-11-15 16:31:54',0),(9391,2526,0,0,3299,'2025-11-14','09:30:00',0,157,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',141,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 21:23:22','riya','2025-11-15 16:31:54',0),(9392,2526,0,0,3299,'2025-11-14','09:30:00',0,157,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',141,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 21:23:22','riya','2025-11-15 16:31:54',0),(9393,2526,0,0,3300,'2025-11-14','00:00:00',2447,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3626,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 10:17:14','reception','2025-11-14 10:18:29',0),(9394,2526,0,0,3301,'2025-11-14','00:05:00',0,158,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',142,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 10:17:30','riya','2025-11-14 11:33:56',0),(9395,2526,0,0,3301,'2025-11-14','00:05:00',0,158,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',142,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 10:17:30','riya','2025-11-14 11:33:56',0),(9396,2526,0,0,3301,'2025-11-14','00:05:00',0,158,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',142,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 21:47:30','riya','2025-11-14 11:33:56',0),(9397,2526,0,0,3301,'2025-11-14','00:05:00',0,158,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',142,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 21:47:31','riya','2025-11-14 11:33:56',0),(9398,2526,0,0,3301,'2025-11-14','00:05:00',0,158,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',142,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 21:47:31','riya','2025-11-14 11:33:56',0),(9399,2526,0,0,3301,'2025-11-14','00:05:00',0,158,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',142,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 21:47:31','riya','2025-11-14 11:33:56',0),(9400,2526,0,0,3301,'2025-11-14','00:05:00',0,158,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',142,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 21:47:31','riya','2025-11-14 11:33:56',0),(9401,2526,0,0,3302,'2025-11-14','00:00:00',2448,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3627,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 10:19:46','reception','2025-11-14 10:19:58',0),(9402,2526,0,0,3303,'2025-11-14','00:00:00',495,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3628,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 10:19:56','janvi','2025-11-14 10:20:06',0),(9403,2526,0,0,3304,'2025-11-14','00:00:00',2449,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3629,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 10:21:53','reception','2025-11-14 10:22:24',0),(9404,2526,0,0,3305,'2025-11-14','00:00:00',1857,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3630,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 10:23:41','reception','2025-11-14 10:24:00',0),(9405,2526,0,0,3306,'2025-11-14','00:00:00',2450,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3631,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 10:29:00','janvi','2025-11-14 10:30:04',0),(9406,2526,0,0,3307,'2025-11-14','00:00:00',2451,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3632,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 10:32:03','reception','2025-11-14 10:32:32',0),(9407,2526,0,0,3308,'2025-11-14','00:00:00',2452,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3633,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 10:34:27','reception','2025-11-14 10:34:44',0),(9408,2526,0,0,3309,'2025-11-14','00:00:00',2453,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3634,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 10:36:02','reception','2025-11-14 10:36:50',0),(9409,2526,0,0,3310,'2025-11-14','00:00:00',2454,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3635,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 10:42:06','janvi','2025-11-14 10:42:35',0),(9410,2526,0,0,3311,'2025-11-14','00:00:00',2455,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3636,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 10:42:48','reception','2025-11-14 10:43:23',0),(9411,2526,0,0,3312,'2025-11-14','00:00:00',586,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3638,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 10:44:10','janvi','2025-11-14 10:45:30',0),(9412,2526,0,0,3313,'2025-11-14','00:00:00',2456,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3637,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 10:45:01','reception','2025-11-14 10:45:23',0),(9413,2526,0,0,3314,'2025-11-14','00:00:00',2457,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3639,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 10:48:56','reception','2025-11-14 10:49:32',0),(9414,2526,0,0,3315,'2025-11-14','10:51:28',2005,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3640,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 10:51:28','janvi','2025-11-14 10:51:28',0),(9415,2526,0,0,3317,'2025-11-14','00:00:00',2458,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3642,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-14 11:04:09','urvashi','2025-11-14 11:06:04',0),(9416,2526,0,0,3316,'2025-11-14','11:05:12',2198,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3641,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 11:05:12','janvi','2025-11-14 11:05:12',0),(9417,2526,0,0,3298,'2025-11-14','11:06:57',2446,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',3643,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 11:06:57','reception','2025-11-14 11:06:57',0),(9418,2526,0,0,3318,'2025-11-14','00:00:00',2459,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3644,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 11:08:56','janvi','2025-11-14 11:09:31',0),(9419,2526,0,0,3303,'2025-11-14','11:09:55',495,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',3645,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-14 11:09:55','urvashi','2025-11-14 11:09:55',0),(9420,2526,0,0,3302,'2025-11-14','11:11:03',2448,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3646,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 11:11:03','reception','2025-11-14 11:11:03',0),(9421,2526,0,0,3302,'2025-11-14','11:11:03',2448,0,'NEU1','NEU10020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3646,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 11:11:03','reception','2025-11-14 11:11:03',0),(9422,2526,0,0,3319,'2025-11-14','00:00:00',741,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3647,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 11:17:29','reception','2025-11-14 11:18:00',0),(9423,2526,0,0,3307,'2025-11-14','11:21:44',2451,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3648,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 11:21:44','reception','2025-11-14 11:21:44',0),(9424,2526,0,0,3307,'2025-11-14','11:21:44',2451,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3648,2,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 11:21:44','reception','2025-11-14 11:21:44',0),(9425,2526,0,0,3307,'2025-11-14','11:21:44',2451,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3648,3,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 11:21:44','reception','2025-11-14 11:21:44',0),(9426,2526,0,0,3307,'2025-11-14','11:21:44',2451,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3648,4,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 11:21:44','reception','2025-11-14 11:21:44',0),(9427,2526,0,0,3320,'2025-11-14','00:00:00',589,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3649,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 11:26:01','reception','2025-11-14 11:26:48',0),(9428,2526,0,0,3306,'2025-11-14','11:27:17',2450,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,4,0,0,'',0,0,'','','','','',2526,'H','O',3650,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 11:27:17','janvi','2025-11-14 11:27:17',0),(9429,2526,0,0,3321,'2025-11-14','00:00:00',2460,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3651,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-14 11:27:25','urvashi','2025-11-14 11:28:14',0),(9430,2526,0,0,3322,'2025-11-14','00:00:00',2461,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3652,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 11:28:48','janvi','2025-11-14 11:29:27',0),(9431,2526,0,0,2879,'2025-11-13','11:27:00',0,146,'DRC','DRC0020','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,174,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 11:31:02','vishal','2025-11-30 20:00:04',0),(9432,2526,0,0,2879,'2025-11-14','11:30:00',0,146,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 11:31:02','vishal','2025-11-30 20:00:04',0),(9433,2526,0,0,2879,'2025-11-14','11:30:00',0,146,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 11:31:02','vishal','2025-11-30 20:00:04',0),(9434,2526,0,0,3301,'2025-11-14','11:32:00',0,158,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',142,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 11:33:56','','0000-00-00 00:00:00',0),(9435,2526,0,0,3301,'2025-11-14','11:32:00',0,158,'WPRC','WPRC0078','H','N',2.00,300,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',142,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 11:33:56','','0000-00-00 00:00:00',0),(9436,2526,0,0,3301,'2025-11-14','11:32:00',0,158,'XRY','XRY0045','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',142,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 11:33:56','','0000-00-00 00:00:00',0),(9437,2526,0,0,3301,'2025-11-14','11:33:00',0,158,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',142,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 11:33:56','','0000-00-00 00:00:00',0),(9438,2526,0,0,3323,'2025-11-14','00:00:00',787,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3653,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-14 11:34:16','urvashi','2025-11-14 13:00:43',0),(9439,2526,0,0,3324,'2025-11-14','00:00:00',2462,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3655,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-14 11:37:27','urvashi','2025-11-14 11:39:11',0),(9440,2526,0,0,3325,'2025-11-14','00:00:00',2463,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3654,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 11:38:23','reception','2025-11-14 11:38:53',0),(9441,2526,0,0,2811,'2025-11-14','01:00:00',0,143,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:10:26','riya','2025-11-14 18:43:16',0),(9442,2526,0,0,2811,'2025-11-14','01:00:00',0,143,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:10:26','riya','2025-11-14 11:42:23',0),(9443,2526,0,0,2811,'2025-11-14','01:00:00',0,143,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:10:26','riya','2025-11-14 11:42:23',0),(9444,2526,0,0,2811,'2025-11-14','01:00:00',0,143,'DRC','DRC0018','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:10:26','riya','2025-11-20 11:12:56',0),(9445,2526,0,0,2811,'2025-11-14','01:00:00',0,143,'DRC','DRC0019','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:10:26','riya','2025-11-20 11:12:56',0),(9446,2526,0,0,3326,'2025-11-14','00:00:00',2464,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3656,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 11:42:01','reception','2025-11-14 11:42:19',0),(9447,2526,0,0,2811,'2025-11-13','11:40:00',0,143,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 11:42:23','riya','2025-11-14 18:29:32',0),(9448,2526,0,0,2811,'2025-11-13','11:40:00',0,143,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 11:42:23','riya','2025-11-14 18:43:16',0),(9449,2526,0,0,2811,'2025-11-14','11:40:00',0,143,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 11:42:23','','0000-00-00 00:00:00',0),(9450,2526,0,0,2811,'2025-11-14','11:41:00',0,143,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 11:42:23','','0000-00-00 00:00:00',0),(9451,2526,0,0,2876,'2025-11-14','11:45:00',0,145,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 11:46:34','vishal','2025-11-14 19:26:34',0),(9452,2526,0,0,2876,'2025-11-14','11:45:00',0,145,'WPRC','WPRC0077','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 11:46:34','vishal','2025-11-14 19:25:55',0),(9453,2526,0,0,3327,'2025-11-14','11:46:55',2137,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3657,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 11:46:54','reception','2025-11-14 11:46:54',0),(9454,2526,0,0,3322,'2025-11-14','11:47:11',2461,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',3658,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 11:47:11','janvi','2025-11-14 11:47:11',0),(9455,2526,0,0,3027,'2025-11-13','14:30:00',2247,149,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:17:39','riya','2025-11-14 11:48:16',0),(9456,2526,0,0,3027,'2025-11-13','14:30:00',2247,149,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:17:39','riya','2025-11-14 11:48:16',0),(9457,2526,0,0,3027,'2025-11-13','14:30:00',2247,149,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:17:39','riya','2025-11-14 11:48:16',0),(9458,2526,0,0,3027,'2025-11-13','14:30:00',2247,149,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:17:39','riya','2025-11-14 11:48:16',0),(9459,2526,0,0,3027,'2025-11-13','14:30:00',2247,149,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:17:39','riya','2025-11-14 11:48:16',0),(9460,2526,0,0,3027,'2025-11-14','11:47:00',2247,149,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',143,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 11:48:16','riya','2025-11-15 16:35:18',0),(9461,2526,0,0,3176,'2025-11-13','19:00:00',0,152,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',137,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:20:13','vishal','2025-11-14 17:24:02',0),(9462,2526,0,0,3176,'2025-11-13','19:00:00',0,152,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',137,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:20:13','vishal','2025-11-14 17:24:02',0),(9463,2526,0,0,3176,'2025-11-13','19:00:00',0,152,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',137,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:20:13','vishal','2025-11-14 17:24:02',0),(9464,2526,0,0,3176,'2025-11-13','19:00:00',0,152,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',137,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:20:13','riya','2025-11-14 11:52:16',0),(9465,2526,0,0,3176,'2025-11-13','19:00:00',0,152,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',137,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:20:13','vishal','2025-11-14 17:24:02',0),(9466,2526,0,0,3190,'2025-11-13','20:15:00',2329,153,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',138,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:20:13','riya','2025-11-15 11:14:17',0),(9467,2526,0,0,3190,'2025-11-13','20:15:00',2329,153,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',138,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:20:13','riya','2025-11-15 11:14:17',0),(9468,2526,0,0,3190,'2025-11-13','20:15:00',2329,153,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',138,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:20:13','riya','2025-11-15 11:14:17',0),(9469,2526,0,0,3190,'2025-11-13','20:15:00',2329,153,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','411','','','',2526,'H','I',138,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:20:13','riya','2025-11-15 11:14:17',0),(9470,2526,0,0,3190,'2025-11-13','20:15:00',2329,153,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','411','','','',2526,'H','I',138,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-13 23:20:13','riya','2025-11-15 11:14:17',0),(9471,2526,0,0,3328,'2025-11-14','00:00:00',2465,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3660,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 11:51:14','janvi','2025-11-14 11:52:27',0),(9472,2526,0,0,3321,'2025-11-14','11:51:19',2460,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3659,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-14 11:51:19','urvashi','2025-11-14 11:51:19',0),(9473,2526,0,0,3329,'2025-11-14','00:00:00',2466,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3661,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-14 11:53:07','urvashi','2025-11-14 11:54:22',0),(9474,2526,0,0,3330,'2025-11-14','00:00:00',2467,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3669,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-14 11:54:33','manshi','2025-11-14 12:09:29',0),(9475,2526,0,0,3331,'2025-11-14','00:00:00',1356,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3662,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 11:56:27','reception','2025-11-14 11:57:05',0),(9476,2526,0,0,3332,'2025-11-14','00:00:00',2468,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3663,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 12:02:13','janvi','2025-11-14 12:02:48',0),(9477,2526,0,0,3333,'2025-11-14','00:00:00',2469,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3664,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 12:02:15','reception','2025-11-14 12:03:07',0),(9478,2526,0,0,3334,'2025-11-14','12:04:09',1928,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',3665,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-14 12:04:09','manshi','2025-11-14 12:04:09',0),(9479,2526,0,0,3113,'2025-11-14','12:06:00',0,150,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',139,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 12:07:13','','0000-00-00 00:00:00',0),(9480,2526,0,0,3311,'2025-11-14','12:08:03',2455,0,'EDPR','EDPR0016','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,0.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3666,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 12:08:03','reception','2025-11-14 12:08:03',0),(9481,2526,0,0,3335,'2025-11-14','00:00:00',2470,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3668,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-14 12:08:33','shweta','2025-11-14 12:09:17',0),(9482,2526,0,0,3324,'2025-11-14','12:09:01',2462,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',3667,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 12:09:01','janvi','2025-11-14 12:09:01',0),(9483,2526,0,0,3336,'2025-11-14','00:00:00',2471,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',3670,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-14 12:10:59','manshi','2025-11-14 12:14:06',0),(9484,2526,0,0,3337,'2025-11-14','00:00:00',2472,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3672,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 12:20:33','janvi','2025-11-14 12:21:53',0),(9485,2526,0,0,3302,'2025-11-14','12:20:46',2448,0,'OETR','OETR0003','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3671,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 12:20:46','reception','2025-11-14 12:20:46',0),(9486,2526,0,0,3338,'2025-11-14','00:00:00',2473,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-14 12:23:41','urvashi','2025-11-13 23:53:41',0),(9487,2526,0,0,3339,'2025-11-14','00:00:00',923,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-14 12:26:40','manshi','2025-11-13 23:56:40',0),(9488,2526,0,0,3340,'2025-11-14','00:00:00',2474,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3673,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-14 12:32:12','manshi','2025-11-14 12:33:14',0),(9489,2526,0,0,3325,'2025-11-14','12:36:32',2463,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3674,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 12:36:32','reception','2025-11-14 12:36:32',0),(9490,2526,0,0,3317,'2025-11-14','12:37:50',2458,0,'OPWD','OPWD0023','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',3675,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 12:37:50','janvi','2025-11-14 12:37:50',0),(9491,2526,0,0,3339,'2025-11-14','12:42:11',923,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',3676,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-14 12:42:11','manshi','2025-11-14 12:42:11',0),(9492,2526,0,0,3341,'2025-11-14','00:00:00',2475,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-14 12:45:28','urvashi','2025-11-14 00:15:28',0),(9493,2526,0,0,3328,'2025-11-14','12:46:24',2465,0,'OPWD','OPWD0030','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',3677,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 12:46:24','janvi','2025-11-14 12:47:38',0),(9494,2526,0,0,3342,'2025-11-14','00:00:00',2476,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3678,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 12:47:14','reception','2025-11-14 12:47:35',0),(9495,2526,0,0,3343,'2025-11-14','00:00:00',2477,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-14 12:47:15','urvashi','2025-11-14 00:17:15',0),(9496,2526,0,0,3344,'2025-11-14','00:00:00',2478,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3680,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-14 12:49:37','urvashi','2025-11-14 12:50:20',0),(9497,2526,0,0,3328,'2025-11-14','12:51:39',2465,0,'OPWD','OPWD0030','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',3681,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 12:51:39','janvi','2025-11-14 12:51:39',0),(9498,2526,0,0,3345,'2025-11-14','00:00:00',2479,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3682,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-14 12:52:07','manshi','2025-11-14 12:52:38',0),(9499,2526,0,0,3345,'2025-11-14','13:10:00',2479,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',3684,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-14 13:10:00','manshi','2025-11-14 13:10:00',0),(9500,2526,0,0,3346,'2025-11-14','00:00:00',2480,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3685,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-14 13:12:02','manshi','2025-11-14 13:13:41',0),(9501,2526,0,0,3347,'2025-11-14','00:00:00',2481,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3686,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 13:28:15','reception','2025-11-14 13:28:35',0),(9502,2526,0,0,3113,'2025-11-14','13:00:00',0,150,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',139,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 00:58:19','riya','2025-11-14 13:28:33',0),(9503,2526,0,0,3113,'2025-11-14','13:00:00',0,150,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',139,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 00:58:19','riya','2025-11-14 13:28:33',0),(9504,2526,0,0,3113,'2025-11-14','13:00:00',0,150,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',139,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 00:58:19','riya','2025-11-14 13:28:33',0),(9505,2526,0,0,3113,'2025-11-14','13:00:00',0,150,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','409','','','',2526,'H','I',139,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 00:58:19','riya','2025-11-14 13:28:33',0),(9506,2526,0,0,3113,'2025-11-14','13:00:00',0,150,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','409','','','',2526,'H','I',139,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 00:58:19','riya','2025-11-14 13:28:33',0),(9507,2526,0,0,3348,'2025-11-14','13:36:00',0,159,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 13:38:55','riya','2025-11-15 16:30:45',0),(9508,2526,0,0,3348,'2025-11-14','13:36:00',0,159,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 13:38:55','riya','2025-11-15 16:30:45',0),(9509,2526,0,0,3348,'2025-11-14','13:36:00',0,159,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 01:08:56','riya','2025-11-15 16:30:45',0),(9510,2526,0,0,3348,'2025-11-14','13:36:00',0,159,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 01:08:56','riya','2025-11-15 16:30:45',0),(9511,2526,0,0,3348,'2025-11-14','13:36:00',0,159,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 01:08:56','riya','2025-11-15 16:30:45',0),(9512,2526,0,0,3348,'2025-11-14','13:36:00',0,159,'DRC','DRC0018','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 01:08:56','riya','2025-11-15 16:30:45',0),(9513,2526,0,0,3348,'2025-11-14','13:36:00',0,159,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 01:08:56','riya','2025-11-15 16:30:45',0),(9514,2526,0,0,3349,'2025-11-14','14:28:32',2447,0,'LAB','LAB0817','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,76,'',0,0,'','','','','',2526,'H','O',3687,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'shweta','2025-11-14 14:28:32','shweta','2025-11-14 14:28:32',0),(9515,2526,0,0,3350,'2025-11-14','00:00:00',2482,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-14 14:33:03','shweta','2025-11-14 02:03:03',0),(9516,2526,0,0,3350,'2025-11-14','15:30:13',2482,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3688,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-14 15:30:13','shweta','2025-11-14 15:30:13',0),(9517,2526,0,0,3350,'2025-11-14','15:30:13',2482,0,'XRY','XRY0056','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',3688,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-14 15:30:13','shweta','2025-11-14 15:30:13',0),(9518,2526,0,0,3350,'2025-11-14','15:30:13',2482,0,'WPRC','WPRC0037','H','N',4.00,100,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3688,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-14 15:30:13','shweta','2025-11-14 15:30:13',0),(9519,2526,0,0,3351,'2025-11-14','00:00:00',1642,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 16:23:31','reception','2025-11-14 03:53:31',0),(9520,2526,0,0,3352,'2025-11-14','00:00:00',2483,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3689,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 16:26:03','reception','2025-11-14 16:26:14',0),(9521,2526,0,0,3353,'2025-11-14','00:00:00',1147,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3690,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 16:33:32','reception','2025-11-14 16:33:51',0),(9522,2526,0,0,3354,'2025-11-14','00:00:00',75,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 16:34:14','reception','2025-11-14 04:04:14',0),(9523,2526,0,0,3355,'2025-11-14','00:00:00',2484,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3691,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 16:36:20','reception','2025-11-14 16:36:48',0),(9524,2526,0,0,3356,'2025-11-14','00:00:00',2485,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 16:38:55','reception','2025-11-14 04:08:55',0),(9525,2526,0,0,3357,'2025-11-14','00:00:00',210,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3692,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 16:39:41','reception','2025-11-14 16:40:11',0),(9526,2526,0,0,3358,'2025-11-14','00:00:00',2486,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',3693,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 16:43:19','reception','2025-11-14 16:44:09',0),(9527,2526,0,0,3359,'2025-11-14','00:00:00',2487,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 16:51:26','reception','2025-11-14 04:21:26',0),(9528,2526,0,0,3360,'2025-11-14','00:00:00',2488,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3694,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-14 17:02:02','drashti','2025-11-14 17:03:21',0),(9529,2526,0,0,3361,'2025-11-14','00:00:00',2489,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3695,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 17:07:29','reception','2025-11-14 17:07:52',0),(9530,2526,0,0,3362,'2025-11-14','00:00:00',325,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 17:10:21','reception','2025-11-14 04:40:21',0),(9531,2526,0,0,3363,'2025-11-14','00:00:00',2490,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3696,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 17:12:04','reception','2025-11-14 17:12:21',0),(9532,2526,0,0,3294,'2025-11-13','17:17:00',0,156,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',140,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 17:19:47','','0000-00-00 00:00:00',0),(9533,2526,0,0,3294,'2025-11-13','17:17:00',0,156,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',140,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 17:19:47','','0000-00-00 00:00:00',0),(9534,2526,0,0,3294,'2025-11-14','17:17:00',0,156,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',140,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 17:19:47','','0000-00-00 00:00:00',0),(9535,2526,0,0,3294,'2025-11-14','17:17:00',0,156,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',140,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 17:19:47','','0000-00-00 00:00:00',0),(9536,2526,0,0,3294,'2025-11-14','17:18:00',0,156,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',140,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 17:19:47','vishal','2025-11-15 19:06:53',0),(9537,2526,0,0,3294,'2025-11-14','17:18:00',0,156,'ROOM','ROOM0004','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',140,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 17:19:47','vishal','2025-11-15 19:06:53',0),(9538,2526,0,0,3294,'2025-11-13','17:18:00',0,156,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',140,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 17:19:47','','0000-00-00 00:00:00',0),(9539,2526,0,0,3294,'2025-11-13','17:19:00',0,156,'DRC','DRC0020','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,37,0,0,'',0,0,'','','','','',2526,'H','I',140,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 17:19:47','','0000-00-00 00:00:00',0),(9540,2526,0,0,3364,'2025-11-14','00:00:00',2491,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3697,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 17:20:36','reception','2025-11-14 17:23:14',0),(9541,2526,0,0,3176,'2025-11-13','17:21:00',0,152,'WPRC','WPRC0092','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,4,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 17:23:43','vishal','2025-11-14 17:24:02',0),(9542,2526,0,0,3176,'2025-11-13','17:21:00',0,152,'WPRC','WPRC0097','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 17:23:43','vishal','2025-11-14 17:24:02',0),(9543,2526,0,0,3176,'2025-11-14','17:22:00',0,152,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 17:23:43','','0000-00-00 00:00:00',0),(9544,2526,0,0,3176,'2025-11-14','17:22:00',0,152,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 17:23:43','','0000-00-00 00:00:00',0),(9545,2526,0,0,3176,'2025-11-14','17:22:00',0,152,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 17:23:43','','0000-00-00 00:00:00',0),(9546,2526,0,0,3176,'2025-11-14','17:22:00',0,152,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 17:23:43','','0000-00-00 00:00:00',0),(9547,2526,0,0,3176,'2025-11-12','17:23:00',0,152,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 17:23:43','','0000-00-00 00:00:00',0),(9548,2526,0,0,3176,'2025-11-13','17:23:00',0,152,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 17:23:43','vishal','2025-11-14 17:24:02',0),(9549,2526,0,0,3176,'2025-11-14','17:23:00',0,152,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 17:23:43','riya','2025-11-15 09:31:47',0),(9550,2526,0,0,2876,'2025-11-14','13:00:00',0,145,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 04:56:24','vishal','2025-11-14 19:22:28',0),(9551,2526,0,0,2876,'2025-11-14','13:00:00',0,145,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 04:56:24','vishal','2025-11-14 19:26:34',0),(9552,2526,0,0,2876,'2025-11-14','13:00:00',0,145,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 04:56:24','vishal','2025-11-14 19:26:34',0),(9553,2526,0,0,2876,'2025-11-14','13:00:00',0,145,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 04:56:24','vishal','2025-11-14 19:26:34',0),(9554,2526,0,0,2876,'2025-11-14','13:00:00',0,145,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',136,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 04:56:24','vishal','2025-11-14 19:25:55',0),(9555,2526,0,0,2879,'2025-11-14','15:30:00',0,146,'AECO','AECO0008','H','N',0.50,800,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 04:56:24','riya','2025-12-01 19:13:24',0),(9556,2526,0,0,2879,'2025-11-14','15:30:00',0,146,'CARE','CARE0001','H','N',0.50,600,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 04:56:24','riya','2025-12-01 19:13:24',0),(9557,2526,0,0,2879,'2025-11-14','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 04:56:24','vishal','2025-11-30 20:00:04',0),(9558,2526,0,0,2879,'2025-11-14','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 04:56:24','vishal','2025-11-30 20:00:04',0),(9559,2526,0,0,2879,'2025-11-14','15:30:00',0,146,'ROOM','ROOM0009','H','N',0.50,5500,2750,'A',0,0,0.00,0.00,2750.00,2750,9999,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 04:56:24','riya','2025-12-01 19:13:24',0),(9560,2526,0,0,3027,'2025-11-14','14:30:00',2247,149,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 04:56:24','riya','2025-11-15 16:35:18',0),(9561,2526,0,0,3027,'2025-11-14','14:30:00',2247,149,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 04:56:24','riya','2025-11-15 16:35:18',0),(9562,2526,0,0,3027,'2025-11-14','14:30:00',2247,149,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 04:56:24','riya','2025-11-15 16:35:18',0),(9563,2526,0,0,3027,'2025-11-14','14:30:00',2247,149,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 04:56:24','riya','2025-11-15 16:35:18',0),(9564,2526,0,0,3027,'2025-11-14','14:30:00',2247,149,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 04:56:24','riya','2025-11-15 16:35:18',0),(9565,2526,0,0,3365,'2025-11-14','00:00:00',639,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3698,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 17:29:48','reception','2025-11-14 17:30:18',0),(9566,2526,0,0,3366,'2025-11-14','17:34:27',2118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3699,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-14 17:34:27','priyanshi','2025-11-14 17:34:27',0),(9567,2526,0,0,3367,'2025-11-14','00:00:00',2492,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3700,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-14 17:36:09','drashti','2025-11-14 17:36:46',0),(9568,2526,0,0,3368,'2025-11-14','00:00:00',2493,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3701,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 17:38:33','reception','2025-11-14 17:39:19',0),(9569,2526,0,0,3369,'2025-11-14','00:00:00',2494,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3703,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 17:40:39','janvi','2025-11-14 17:42:33',0),(9570,2526,0,0,3370,'2025-11-14','00:00:00',2495,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3702,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-14 17:40:52','drashti','2025-11-14 17:42:29',0),(9571,2526,0,0,3371,'2025-11-14','00:00:00',1901,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3704,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 17:43:52','reception','2025-11-14 17:44:03',0),(9572,2526,0,0,3372,'2025-11-14','00:00:00',2496,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3707,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-14 17:56:17','drashti','2025-11-14 18:00:57',0),(9573,2526,0,0,3352,'2025-11-14','17:57:59',2483,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3705,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 17:57:59','reception','2025-11-14 17:57:59',0),(9574,2526,0,0,3352,'2025-11-14','17:57:59',2483,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3705,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 17:57:59','reception','2025-11-14 17:57:59',0),(9575,2526,0,0,3352,'2025-11-14','17:57:59',2483,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3705,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 17:57:59','reception','2025-11-14 17:57:59',0),(9576,2526,0,0,3373,'2025-11-14','00:00:00',2497,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3706,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 18:00:28','reception','2025-11-14 18:00:47',0),(9577,2526,0,0,3358,'2025-11-14','18:02:36',2486,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3708,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 18:02:36','reception','2025-11-14 18:02:36',0),(9578,2526,0,0,3358,'2025-11-14','18:02:36',2486,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3708,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 18:02:36','reception','2025-11-14 18:02:36',0),(9579,2526,0,0,2811,'2025-11-14','18:04:00',0,143,'USG','USG0099','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 18:05:06','','0000-00-00 00:00:00',0),(9580,2526,0,0,3361,'2025-11-14','18:10:33',2489,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3709,1,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 18:10:33','reception','2025-11-14 18:10:33',0),(9581,2526,0,0,3361,'2025-11-14','18:10:33',2489,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3709,2,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 18:10:33','reception','2025-11-14 18:10:33',0),(9582,2526,0,0,3361,'2025-11-14','18:10:33',2489,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3709,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 18:10:33','reception','2025-11-14 18:10:33',0),(9583,2526,0,0,3375,'2025-11-14','18:10:37',2477,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3710,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 18:10:37','janvi','2025-11-14 18:10:37',0),(9584,2526,0,0,3374,'2025-11-14','18:11:01',2144,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3711,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-14 18:11:01','manshi','2025-11-14 18:11:01',0),(9585,2526,0,0,3376,'2025-11-14','00:00:00',2498,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',3720,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-14 18:13:48','manshi','2025-11-14 18:31:11',0),(9586,2526,0,0,3377,'2025-11-14','00:00:00',710,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3712,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 18:15:07','reception','2025-11-14 18:15:20',0),(9587,2526,0,0,3378,'2025-11-14','00:00:00',2499,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3714,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 18:21:53','janvi','2025-11-14 18:22:57',0),(9588,2526,0,0,3379,'2025-11-14','00:00:00',2500,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3713,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 18:22:03','reception','2025-11-14 18:22:15',0),(9589,2526,0,0,3380,'2025-11-14','00:00:00',2501,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3715,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 18:24:16','reception','2025-11-14 18:24:42',0),(9590,2526,0,0,3381,'2025-11-14','00:00:00',2502,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3716,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-14 18:24:37','manshi','2025-11-14 18:25:03',0),(9591,2526,0,0,3382,'2025-11-14','00:00:00',1390,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3717,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-14 18:25:28','manshi','2025-11-14 18:25:44',0),(9592,2526,0,0,3383,'2025-11-14','00:00:00',645,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3718,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-14 18:26:05','manshi','2025-11-14 18:26:20',0),(9593,2526,0,0,3384,'2025-11-14','00:00:00',2503,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3719,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 18:26:27','reception','2025-11-14 18:26:55',0),(9594,2526,0,0,2811,'2025-11-12','18:21:00',0,143,'USG','USG0100','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,177,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 18:26:44','riya','2025-11-14 18:27:03',0),(9595,2526,0,0,2811,'2025-11-12','18:26:00',0,143,'USG','USG0101','H','N',1.00,5000,5000,'A',0,0,0.00,0.00,5000.00,5000,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 18:27:03','riya','2025-11-14 19:10:58',0),(9596,2526,0,0,3385,'2025-11-14','00:00:00',2504,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3721,1,179,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-14 18:29:57','drashti','2025-11-14 18:32:14',0),(9597,2526,0,0,3385,'2025-11-14','18:32:14',2504,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',3721,2,71,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-14 18:32:14','drashti','2025-11-14 18:32:14',0),(9598,2526,0,0,3386,'2025-11-14','00:00:00',2505,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3722,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-14 18:38:35','drashti','2025-11-14 18:39:21',0),(9599,2526,0,0,3389,'2025-11-14','00:00:00',845,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3723,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 18:46:50','janvi','2025-11-14 18:47:27',0),(9600,2526,0,0,3390,'2025-11-14','00:00:00',2506,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3724,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-14 18:46:57','drashti','2025-11-14 18:48:31',0),(9601,2526,0,0,3391,'2025-11-14','00:00:00',2507,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3726,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-14 18:49:34','reception','2025-11-14 18:52:14',0),(9602,2526,0,0,3392,'2025-11-14','00:00:00',2508,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3725,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-14 18:51:05','drashti','2025-11-14 18:51:21',0),(9603,2526,0,0,3393,'2025-11-14','00:00:00',2030,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3727,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-14 18:52:04','manshi','2025-11-14 18:52:28',0),(9604,2526,0,0,3394,'2025-11-14','00:00:00',2509,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3729,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-14 18:52:56','drashti','2025-11-14 18:54:00',0),(9605,2526,0,0,3395,'2025-11-14','00:00:00',2510,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3728,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 18:53:16','janvi','2025-11-14 18:53:30',0),(9606,2526,0,0,3396,'2025-11-14','00:00:00',2511,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3730,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-14 19:04:58','drashti','2025-11-14 19:06:30',0),(9607,2526,0,0,3397,'2025-11-14','00:00:00',2512,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3731,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-14 19:11:58','drashti','2025-11-14 19:13:12',0),(9608,2526,0,0,2876,'2025-11-12','19:24:00',0,145,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 19:24:52','','0000-00-00 00:00:00',0),(9609,2526,0,0,2876,'2025-11-12','19:25:00',0,145,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 19:25:55','vishal','2025-11-14 19:26:34',0),(9610,2526,0,0,2876,'2025-11-12','19:25:00',0,145,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 19:25:55','','0000-00-00 00:00:00',0),(9611,2526,0,0,2876,'2025-11-12','19:25:00',0,145,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',136,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 19:25:55','','0000-00-00 00:00:00',0),(9612,2526,0,0,3398,'2025-11-14','19:28:38',2142,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3732,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-14 19:28:38','manshi','2025-11-14 19:28:38',0),(9613,2526,0,0,3400,'2025-11-14','19:37:27',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3733,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-14 19:37:27','janvi','2025-11-14 19:37:27',0),(9614,2526,0,0,3294,'2025-11-14','19:00:00',0,156,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 07:40:16','vishal','2025-11-15 19:05:34',0),(9615,2526,0,0,3294,'2025-11-14','19:00:00',0,156,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 07:40:16','vishal','2025-11-15 19:05:34',0),(9616,2526,0,0,3294,'2025-11-14','19:00:00',0,156,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',140,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 07:40:16','vishal','2025-11-14 20:45:33',0),(9617,2526,0,0,3294,'2025-11-14','19:00:00',0,156,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',140,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 07:40:16','vishal','2025-11-14 20:45:33',0),(9618,2526,0,0,3294,'2025-11-14','19:00:00',0,156,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 07:40:16','vishal','2025-11-15 19:05:34',0),(9619,2526,0,0,3401,'2025-11-14','00:00:00',2513,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3734,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-14 20:12:50','drashti','2025-11-14 20:13:41',0),(9620,2526,0,0,2879,'2025-11-14','20:43:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 20:44:03','riya','2025-12-01 19:41:30',0),(9621,2526,0,0,2879,'2025-11-14','20:43:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 20:44:03','vishal','2025-11-30 20:00:04',0),(9622,2526,0,0,3294,'2025-11-14','20:44:00',0,156,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,37,0,0,'',0,0,'','','','','',2526,'H','I',140,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-14 20:45:33','','0000-00-00 00:00:00',0),(9623,2526,0,0,3176,'2025-11-14','19:00:00',0,152,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',137,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 20:52:06','riya','2025-11-15 09:26:14',0),(9624,2526,0,0,3176,'2025-11-14','19:00:00',0,152,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',137,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 20:52:06','riya','2025-11-15 09:26:14',0),(9625,2526,0,0,3176,'2025-11-14','19:00:00',0,152,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',137,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 20:52:06','riya','2025-11-15 09:26:14',0),(9626,2526,0,0,3176,'2025-11-14','19:00:00',0,152,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',137,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 20:52:06','riya','2025-11-15 09:26:14',0),(9627,2526,0,0,3176,'2025-11-14','19:00:00',0,152,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',137,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 20:52:06','riya','2025-11-15 09:26:14',0),(9628,2526,0,0,3176,'2025-11-15','09:23:00',0,152,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 09:26:14','','0000-00-00 00:00:00',0),(9629,2526,0,0,3176,'2025-11-15','09:24:00',0,152,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 09:26:14','','0000-00-00 00:00:00',0),(9630,2526,0,0,3176,'2025-11-15','09:31:00',0,152,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',137,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 09:31:47','','0000-00-00 00:00:00',0),(9631,2526,0,0,3403,'2025-11-15','00:00:00',2514,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3735,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-15 09:35:43','janvi','2025-11-15 09:36:34',0),(9632,2526,0,0,3404,'2025-11-15','00:00:00',2515,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3736,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 09:50:39','reception','2025-11-15 09:52:00',0),(9633,2526,0,0,3405,'2025-11-15','10:00:00',0,160,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 10:02:28','riya','2025-11-16 13:42:08',0),(9634,2526,0,0,3405,'2025-11-15','10:00:00',0,160,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 10:02:28','riya','2025-11-16 13:42:08',0),(9635,2526,0,0,3405,'2025-11-15','10:00:00',0,160,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 21:32:28','riya','2025-11-16 13:42:08',0),(9636,2526,0,0,3405,'2025-11-15','10:00:00',0,160,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 21:32:28','riya','2025-11-16 13:42:08',0),(9637,2526,0,0,3405,'2025-11-15','10:00:00',0,160,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 21:32:28','riya','2025-11-16 13:42:08',0),(9638,2526,0,0,3405,'2025-11-15','10:00:00',0,160,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 21:32:28','riya','2025-11-16 13:42:08',0),(9639,2526,0,0,3405,'2025-11-15','10:00:00',0,160,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 21:32:28','riya','2025-11-16 13:42:08',0),(9640,2526,0,0,3406,'2025-11-15','00:00:00',2516,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3737,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-15 10:11:15','drashti','2025-11-15 10:12:34',0),(9641,2526,0,0,2811,'2025-11-15','01:00:00',0,143,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 21:42:33','riya','2025-11-15 10:13:25',0),(9642,2526,0,0,2811,'2025-11-15','01:00:00',0,143,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 21:42:33','riya','2025-11-15 10:13:25',0),(9643,2526,0,0,2811,'2025-11-15','01:00:00',0,143,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 21:42:33','riya','2025-11-15 10:13:25',0),(9644,2526,0,0,2811,'2025-11-15','01:00:00',0,143,'DRC','DRC0018','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 21:42:33','riya','2025-11-20 11:12:56',0),(9645,2526,0,0,2811,'2025-11-15','01:00:00',0,143,'DRC','DRC0019','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 21:42:33','riya','2025-11-20 11:12:56',0),(9646,2526,0,0,2811,'2025-11-15','10:12:00',0,143,'SURG','SURG0014','H','N',1.00,50000,50000,'P',0,0,0.00,0.00,50000.00,50000,3,0,0,'',0,0,'','','','','',0,'','',0,58,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 10:13:25','riya','2025-11-15 10:14:40',0),(9647,2526,0,0,2811,'2025-11-15','10:12:00',0,143,'SURG','SURG0015','H','N',1.00,12500,12500,'P',0,0,0.00,0.00,12500.00,12500,8,0,0,'',0,0,'','','','','',0,'','',0,59,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 10:13:25','riya','2025-11-15 10:14:40',0),(9648,2526,0,0,3407,'2025-11-15','00:00:00',2517,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3738,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 10:23:42','reception','2025-11-15 10:25:11',0),(9649,2526,0,0,3408,'2025-11-15','00:00:00',2518,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3739,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-15 10:25:21','drashti','2025-11-15 10:26:20',0),(9650,2526,0,0,3409,'2025-11-15','00:00:00',2519,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3740,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-15 10:28:15','manshi','2025-11-15 10:28:54',0),(9651,2526,0,0,3410,'2025-11-15','00:00:00',2520,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3741,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 10:29:03','reception','2025-11-15 10:29:19',0),(9652,2526,0,0,3411,'2025-11-15','00:00:00',2521,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3742,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-15 10:29:58','janvi','2025-11-15 10:30:48',0),(9653,2526,0,0,3412,'2025-11-15','00:00:00',2522,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 10:31:58','reception','2025-11-14 22:01:58',0),(9654,2526,0,0,3413,'2025-11-15','00:00:00',1988,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',3743,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 10:35:38','reception','2025-11-15 10:37:12',0),(9655,2526,0,0,3414,'2025-11-15','00:00:00',2523,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3745,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-15 10:37:19','drashti','2025-11-15 10:37:51',0),(9656,2526,0,0,3413,'2025-11-15','10:37:23',1988,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',3744,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 10:37:23','reception','2025-11-15 11:34:43',0),(9657,2526,0,0,3301,'2025-11-15','00:05:00',0,158,'ROOM','ROOM0009','H','N',1.00,5000,5000,'A',0,0,0.00,0.00,5000.00,5000,9999,0,0,'',0,0,'','210','','','',2526,'H','I',142,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 22:16:27','riya','2025-11-16 20:15:16',0),(9658,2526,0,0,3301,'2025-11-15','00:05:00',0,158,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',142,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 22:16:27','riya','2025-11-15 10:48:01',0),(9659,2526,0,0,3301,'2025-11-15','00:05:00',0,158,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',142,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 22:16:27','riya','2025-11-15 10:48:01',0),(9660,2526,0,0,3301,'2025-11-15','00:05:00',0,158,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','210','','','',2526,'H','I',142,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 22:16:27','riya','2025-11-16 20:15:16',0),(9661,2526,0,0,3301,'2025-11-15','00:05:00',0,158,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',142,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 22:16:27','riya','2025-11-15 10:48:01',0),(9662,2526,0,0,3301,'2025-11-15','10:46:00',0,158,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',142,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 10:48:01','','0000-00-00 00:00:00',0),(9663,2526,0,0,3301,'2025-11-15','10:46:00',0,158,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',142,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 10:48:01','','0000-00-00 00:00:00',0),(9664,2526,0,0,3301,'2025-11-15','10:47:00',0,158,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',142,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 10:48:01','','0000-00-00 00:00:00',0),(9665,2526,0,0,3415,'2025-11-15','00:00:00',2524,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3746,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 10:48:56','reception','2025-11-15 10:49:36',0),(9666,2526,0,0,3416,'2025-11-15','00:00:00',1649,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3747,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 10:53:54','reception','2025-11-15 10:55:22',0),(9667,2526,0,0,3417,'2025-11-15','00:00:00',812,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3748,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 10:57:50','reception','2025-11-15 10:58:58',0),(9668,2526,0,0,3418,'2025-11-15','00:00:00',818,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3749,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-15 11:03:58','drashti','2025-11-15 11:04:56',0),(9669,2526,0,0,3419,'2025-11-15','00:00:00',1949,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3750,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 11:04:47','reception','2025-11-15 11:04:57',0),(9670,2526,0,0,3407,'2025-11-15','11:09:03',2517,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3751,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 11:09:03','reception','2025-11-15 11:09:03',0),(9671,2526,0,0,3407,'2025-11-15','11:09:03',2517,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3751,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 11:09:03','reception','2025-11-15 11:09:03',0),(9672,2526,0,0,3407,'2025-11-15','11:09:03',2517,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3751,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 11:09:03','reception','2025-11-15 11:09:03',0),(9673,2526,0,0,3190,'2025-11-14','20:15:00',2329,153,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',138,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 22:42:56','riya','2025-11-15 11:14:17',0),(9674,2526,0,0,3190,'2025-11-14','20:15:00',2329,153,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',138,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 22:42:56','riya','2025-11-15 11:14:17',0),(9675,2526,0,0,3190,'2025-11-14','20:15:00',2329,153,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',138,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 22:42:56','riya','2025-11-15 11:14:17',0),(9676,2526,0,0,3190,'2025-11-14','20:15:00',2329,153,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','411','','','',2526,'H','I',138,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 22:42:56','riya','2025-11-15 11:14:17',0),(9677,2526,0,0,3190,'2025-11-14','20:15:00',2329,153,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','411','','','',2526,'H','I',138,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-14 22:42:56','riya','2025-11-15 11:14:17',0),(9678,2526,0,0,3190,'2025-11-13','11:13:00',2329,153,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',138,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 11:14:17','','0000-00-00 00:00:00',0),(9679,2526,0,0,3190,'2025-11-15','11:13:00',2329,153,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',138,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 11:14:17','','0000-00-00 00:00:00',0),(9680,2526,0,0,3190,'2025-11-13','11:14:00',2329,153,'SURG','SURG0014','H','N',1.00,21100,21100,'P',0,0,0.00,0.00,21100.00,21100,3,0,0,'',0,0,'','','','','',2526,'H','I',138,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 11:15:15','riya','2025-11-15 13:05:31',0),(9681,2526,0,0,3190,'2025-11-13','11:14:00',2329,153,'SURG','SURG0015','H','N',1.00,7000,7000,'P',0,0,0.00,0.00,7000.00,7000,3,0,0,'',0,0,'','','','','',2526,'H','I',138,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 11:15:15','riya','2025-11-15 13:04:06',0),(9682,2526,0,0,3420,'2025-11-15','00:00:00',2525,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3752,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 11:19:14','reception','2025-11-15 11:19:33',0),(9683,2526,0,0,3421,'2025-11-15','00:00:00',2526,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3753,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 11:21:15','reception','2025-11-15 11:24:24',0),(9684,2526,0,0,3421,'2025-11-15','11:22:05',2526,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3754,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 11:22:05','reception','2025-11-15 11:22:05',0),(9685,2526,0,0,3422,'2025-11-15','00:00:00',2527,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3756,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 11:25:40','reception','2025-11-15 11:25:51',0),(9686,2526,0,0,3423,'2025-11-15','11:28:08',1397,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',3757,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-15 11:28:08','janvi','2025-11-15 11:28:08',0),(9687,2526,0,0,3424,'2025-11-15','11:30:26',1978,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3758,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-15 11:30:26','janvi','2025-11-15 11:30:26',0),(9688,2526,0,0,3409,'2025-11-15','11:31:47',2519,0,'XRY','XRY0145','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3759,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-15 11:31:47','manshi','2025-11-15 11:31:47',0),(9689,2526,0,0,3425,'2025-11-15','00:00:00',2123,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3760,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-15 11:32:13','manshi','2025-11-15 11:32:32',0),(9690,2526,0,0,3426,'2025-11-15','00:00:00',627,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3761,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-15 11:32:21','drashti','2025-11-15 11:32:36',0),(9691,2526,0,0,3113,'2025-11-15','11:26:00',0,150,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',139,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 11:33:13','','0000-00-00 00:00:00',0),(9692,2526,0,0,3113,'2025-11-12','11:26:00',0,150,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,88,0,0,'',0,0,'','','','','',2526,'H','I',139,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 11:33:13','','0000-00-00 00:00:00',0),(9693,2526,0,0,3113,'2025-11-13','11:29:00',0,150,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',139,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 11:33:13','','0000-00-00 00:00:00',0),(9694,2526,0,0,3113,'2025-11-15','11:29:00',0,150,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',139,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 11:33:13','','0000-00-00 00:00:00',0),(9695,2526,0,0,3113,'2025-11-15','11:30:00',0,150,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,6,0,0,'',0,0,'','','','','',2526,'H','I',139,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 11:33:13','','0000-00-00 00:00:00',0),(9696,2526,0,0,3427,'2025-11-15','00:00:00',2528,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3762,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-15 11:33:33','manshi','2025-11-15 11:34:04',0),(9697,2526,0,0,3428,'2025-11-15','00:00:00',1019,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3764,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-15 11:33:37','drashti','2025-11-15 11:35:16',0),(9698,2526,0,0,3429,'2025-11-15','00:00:00',2529,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3766,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-15 11:41:18','manshi','2025-11-15 11:42:35',0),(9699,2526,0,0,3430,'2025-11-15','00:00:00',496,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3765,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 11:41:44','reception','2025-11-15 11:54:47',0),(9700,2526,0,0,3430,'2025-11-15','11:42:37',496,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3767,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 11:42:37','reception','2025-11-15 11:42:37',0),(9701,2526,0,0,3431,'2025-11-15','00:00:00',2530,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3768,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-15 11:43:12','janvi','2025-11-15 11:44:41',0),(9702,2526,0,0,3432,'2025-11-15','00:00:00',1017,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3769,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 11:45:20','reception','2025-11-15 11:46:03',0),(9703,2526,0,0,3433,'2025-11-15','00:00:00',2531,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3770,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-15 11:46:03','drashti','2025-11-15 11:46:29',0),(9704,2526,0,0,2811,'2025-11-15','11:50:00',0,143,'SURG','SURG0014','H','N',1.00,50000,50000,'P',0,0,0.00,0.00,50000.00,50000,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 11:51:03','','0000-00-00 00:00:00',0),(9705,2526,0,0,2811,'2025-11-15','11:50:00',0,143,'SURG','SURG0015','H','N',1.00,12500,12500,'P',0,0,0.00,0.00,12500.00,12500,8,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 11:51:03','','0000-00-00 00:00:00',0),(9706,2526,0,0,3422,'2025-11-15','11:51:32',2527,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3771,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 11:51:32','reception','2025-11-15 11:51:32',0),(9707,2526,0,0,3422,'2025-11-15','11:51:32',2527,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3771,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 11:51:32','reception','2025-11-15 11:51:32',0),(9708,2526,0,0,3422,'2025-11-15','11:51:32',2527,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3771,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 11:51:32','reception','2025-11-15 11:51:32',0),(9709,2526,0,0,3434,'2025-11-15','00:00:00',2532,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3773,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 12:00:13','reception','2025-11-15 12:01:11',0),(9710,2526,0,0,3435,'2025-11-15','00:00:00',1678,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',3774,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 12:07:02','reception','2025-11-15 12:07:24',0),(9711,2526,0,0,3402,'2025-11-15','12:19:31',525,0,'OPWD','OPWD0023','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,3,0,0,'',0,0,'','','','','',2526,'H','O',3775,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-15 12:19:31','janvi','2025-11-15 12:19:31',0),(9712,2526,0,0,3434,'2025-11-15','12:21:29',2532,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3776,1,68,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 12:21:29','reception','2025-11-15 12:21:29',0),(9713,2526,0,0,3434,'2025-11-15','12:21:29',2532,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3776,2,297,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 12:21:29','reception','2025-11-15 12:21:29',0),(9714,2526,0,0,3434,'2025-11-15','12:21:29',2532,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3776,3,297,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 12:21:29','reception','2025-11-15 12:21:29',0),(9715,2526,0,0,3434,'2025-11-15','12:21:29',2532,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3776,4,338,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 12:21:29','reception','2025-11-15 12:21:29',0),(9716,2526,0,0,3436,'2025-11-15','12:22:15',2506,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',3777,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-15 12:22:15','drashti','2025-11-15 12:22:15',0),(9717,2526,0,0,3437,'2025-11-15','00:00:00',1474,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3778,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 12:23:30','reception','2025-11-15 12:23:46',0),(9718,2526,0,0,3438,'2025-11-15','00:00:00',2533,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3779,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-15 12:25:19','janvi','2025-11-15 12:26:10',0),(9719,2526,0,0,3439,'2025-11-15','12:26:22',1945,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',3780,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 12:26:22','reception','2025-11-15 12:26:22',0),(9720,2526,0,0,3440,'2025-11-15','00:00:00',2534,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3781,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 12:28:06','reception','2025-11-15 12:30:49',0),(9721,2526,0,0,3440,'2025-11-15','12:28:52',2534,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3782,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 12:28:52','reception','2025-11-15 12:28:52',0),(9722,2526,0,0,3441,'2025-11-15','00:00:00',2535,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3784,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-15 12:31:05','drashti','2025-11-15 12:31:23',0),(9723,2526,0,0,3421,'2025-11-15','12:36:14',2526,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3785,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 12:36:14','reception','2025-11-15 12:36:14',0),(9724,2526,0,0,3421,'2025-11-15','12:36:14',2526,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3785,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 12:36:14','reception','2025-11-15 12:36:14',0),(9725,2526,0,0,3421,'2025-11-15','12:36:14',2526,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3785,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 12:36:14','reception','2025-11-15 12:36:14',0),(9726,2526,0,0,3442,'2025-11-15','00:00:00',1464,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3786,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 12:39:16','reception','2025-11-15 12:39:30',0),(9727,2526,0,0,3443,'2025-11-15','00:00:00',2536,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3787,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 12:50:16','reception','2025-11-15 13:45:06',0),(9728,2526,0,0,3301,'2025-11-14','12:51:00',0,158,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',142,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 12:51:31','','0000-00-00 00:00:00',0),(9729,2526,0,0,3444,'2025-11-15','00:00:00',2537,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3788,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 13:01:45','reception','2025-11-15 13:06:03',0),(9730,2526,0,0,3444,'2025-11-15','13:03:33',2537,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',3789,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 13:03:33','reception','2025-11-15 13:42:45',0),(9731,2526,0,0,3440,'2025-11-15','13:08:48',2534,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3792,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 13:08:48','reception','2025-11-15 13:08:48',0),(9732,2526,0,0,3440,'2025-11-15','13:08:48',2534,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3792,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 13:08:48','reception','2025-11-15 13:08:48',0),(9733,2526,0,0,3440,'2025-11-15','13:08:48',2534,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3792,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 13:08:48','reception','2025-11-15 13:08:48',0),(9734,2526,0,0,3445,'2025-11-15','00:00:00',2538,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 13:10:48','reception','2025-11-15 00:40:48',0),(9735,2526,0,0,3446,'2025-11-15','00:00:00',2539,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3793,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 13:26:34','reception','2025-11-15 13:26:52',0),(9736,2526,0,0,3447,'2025-11-15','00:00:00',2540,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3794,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-15 13:39:06','drashti','2025-11-15 13:39:29',0),(9737,2526,0,0,3447,'2025-11-15','13:51:21',2540,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3798,1,61,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 13:51:21','reception','2025-11-15 13:51:21',0),(9738,2526,0,0,3447,'2025-11-15','13:51:21',2540,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3798,2,269,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 13:51:21','reception','2025-11-15 13:51:21',0),(9739,2526,0,0,3447,'2025-11-15','13:51:21',2540,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3798,3,269,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 13:51:21','reception','2025-11-15 13:51:21',0),(9740,2526,0,0,3448,'2025-11-15','00:00:00',1721,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3799,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 14:12:24','reception','2025-11-15 14:14:12',0),(9741,2526,0,0,3348,'2025-11-15','13:36:00',0,159,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 03:59:27','riya','2025-11-15 16:30:45',0),(9742,2526,0,0,3348,'2025-11-15','13:36:00',0,159,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 03:59:27','riya','2025-11-15 16:30:45',0),(9743,2526,0,0,3348,'2025-11-15','13:36:00',0,159,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 03:59:27','riya','2025-11-15 16:30:45',0),(9744,2526,0,0,3348,'2025-11-15','13:36:00',0,159,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 03:59:27','riya','2025-11-15 16:30:45',0),(9745,2526,0,0,3348,'2025-11-15','13:36:00',0,159,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 03:59:27','riya','2025-11-15 16:30:45',0),(9746,2526,0,0,3348,'2025-11-14','16:29:00',0,159,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 16:30:45','','0000-00-00 00:00:00',0),(9747,2526,0,0,3348,'2025-11-14','16:29:00',0,159,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 16:30:45','','0000-00-00 00:00:00',0),(9748,2526,0,0,3348,'2025-11-14','16:29:00',0,159,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 16:30:45','','0000-00-00 00:00:00',0),(9749,2526,0,0,3299,'2025-11-15','09:30:00',0,157,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',141,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 04:01:08','riya','2025-11-15 16:31:54',0),(9750,2526,0,0,3299,'2025-11-15','09:30:00',0,157,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',141,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 04:01:08','riya','2025-11-15 16:31:54',0),(9751,2526,0,0,3299,'2025-11-15','09:30:00',0,157,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',141,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 04:01:08','riya','2025-11-15 16:31:54',0),(9752,2526,0,0,3299,'2025-11-15','09:30:00',0,157,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',141,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 04:01:08','riya','2025-11-15 16:31:54',0),(9753,2526,0,0,3299,'2025-11-15','09:30:00',0,157,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',141,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 04:01:08','riya','2025-11-15 16:31:54',0),(9754,2526,0,0,3299,'2025-11-14','16:31:00',0,157,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',141,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 16:31:54','','0000-00-00 00:00:00',0),(9755,2526,0,0,3299,'2025-11-14','16:31:00',0,157,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,3,0,0,'',0,0,'','','','','',2526,'H','I',141,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 16:31:54','','0000-00-00 00:00:00',0),(9756,2526,0,0,3299,'2025-11-14','16:31:00',0,157,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',141,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 16:31:54','','0000-00-00 00:00:00',0),(9757,2526,0,0,3299,'2025-11-14','16:32:00',0,157,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',141,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 16:32:37','','0000-00-00 00:00:00',0),(9758,2526,0,0,3027,'2025-11-15','14:30:00',2247,149,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 04:03:04','riya','2025-11-15 16:35:18',0),(9759,2526,0,0,3027,'2025-11-15','14:30:00',2247,149,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 04:03:04','riya','2025-11-15 16:35:18',0),(9760,2526,0,0,3027,'2025-11-15','14:30:00',2247,149,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 04:03:04','riya','2025-11-15 16:35:18',0),(9761,2526,0,0,3027,'2025-11-15','14:30:00',2247,149,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 04:03:04','riya','2025-11-15 16:35:18',0),(9762,2526,0,0,3027,'2025-11-15','14:30:00',2247,149,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 04:03:04','riya','2025-11-15 16:35:18',0),(9763,2526,0,0,3027,'2025-11-15','16:32:00',2247,149,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',143,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 16:35:18','','0000-00-00 00:00:00',0),(9764,2526,0,0,2879,'2025-11-15','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 04:06:23','riya','2025-11-27 17:57:23',0),(9765,2526,0,0,2879,'2025-11-15','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 04:06:23','riya','2025-11-27 17:57:23',0),(9766,2526,0,0,2879,'2025-11-15','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 04:06:23','riya','2025-11-27 17:57:23',0),(9767,2526,0,0,2879,'2025-11-15','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 04:06:23','riya','2025-11-27 17:57:23',0),(9768,2526,0,0,2879,'2025-11-15','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 04:06:23','riya','2025-12-01 19:41:30',0),(9769,2526,0,0,2879,'2025-11-15','16:36:00',0,146,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 16:38:56','riya','2025-12-01 19:41:30',0),(9770,2526,0,0,2879,'2025-11-15','16:37:00',0,146,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 16:38:56','riya','2025-12-01 19:41:30',0),(9771,2526,0,0,2879,'2025-11-15','16:37:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 16:38:56','vishal','2025-11-30 20:00:04',0),(9772,2526,0,0,2879,'2025-11-15','16:37:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 16:38:56','vishal','2025-11-30 20:00:04',0),(9773,2526,0,0,3294,'2025-11-15','16:48:00',0,156,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',140,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 16:52:36','vishal','2025-11-15 19:00:56',0),(9774,2526,0,0,3294,'2025-11-14','16:50:00',0,156,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',140,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 16:52:36','','0000-00-00 00:00:00',0),(9775,2526,0,0,3294,'2025-11-15','16:50:00',0,156,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 16:52:36','vishal','2025-11-15 19:05:34',0),(9776,2526,0,0,3449,'2025-11-15','00:00:00',1004,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3800,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-15 17:43:40','janvi','2025-11-15 17:45:56',0),(9777,2526,0,0,3450,'2025-11-15','00:00:00',2541,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3802,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-15 17:56:51','priyanshi','2025-11-15 17:59:17',0),(9778,2526,0,0,3451,'2025-11-15','00:00:00',2542,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3801,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-15 17:57:39','janvi','2025-11-15 17:58:52',0),(9779,2526,0,0,3452,'2025-11-15','00:00:00',1893,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 17:59:39','reception','2025-11-15 05:29:39',0),(9780,2526,0,0,3453,'2025-11-15','00:00:00',2543,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3803,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-15 18:00:12','priyanshi','2025-11-15 18:00:31',0),(9781,2526,0,0,3455,'2025-11-15','00:00:00',2544,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 18:10:09','reception','2025-11-15 05:40:09',0),(9782,2526,0,0,3452,'2025-11-15','18:19:03',1893,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3804,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-15 18:19:03','janvi','2025-11-15 18:19:03',0),(9783,2526,0,0,3454,'2025-11-15','18:22:11',1974,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3805,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-15 18:22:11','janvi','2025-11-15 18:22:11',0),(9784,2526,0,0,3456,'2025-11-15','00:00:00',2545,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3806,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-15 18:27:18','priyanshi','2025-11-15 18:27:47',0),(9785,2526,0,0,3457,'2025-11-15','18:29:46',2191,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3807,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-15 18:29:46','janvi','2025-11-15 18:29:46',0),(9786,2526,0,0,3458,'2025-11-15','00:00:00',1980,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3808,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 18:44:37','reception','2025-11-15 18:47:18',0),(9787,2526,0,0,3459,'2025-11-15','18:49:02',2360,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3809,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-15 18:49:02','priyanshi','2025-11-15 18:49:02',0),(9788,2526,0,0,3460,'2025-11-15','00:00:00',2546,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3810,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 19:01:31','reception','2025-11-15 19:02:06',0),(9789,2526,0,0,3294,'2025-11-15','19:01:00',0,156,'USG','USG0092','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',140,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-15 19:05:34','','0000-00-00 00:00:00',0),(9790,2526,0,0,3294,'2025-11-15','19:02:00',0,156,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',140,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-15 19:05:34','','0000-00-00 00:00:00',0),(9791,2526,0,0,3294,'2025-11-14','19:03:00',0,156,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',140,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-15 19:05:34','','0000-00-00 00:00:00',0),(9792,2526,0,0,3294,'2025-11-14','19:03:00',0,156,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',140,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-15 19:05:34','','0000-00-00 00:00:00',0),(9793,2526,0,0,3294,'2025-11-14','19:04:00',0,156,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',140,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-15 19:05:34','','0000-00-00 00:00:00',0),(9794,2526,0,0,3294,'2025-11-15','19:04:00',0,156,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',140,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-15 19:05:34','','0000-00-00 00:00:00',0),(9795,2526,0,0,3294,'2025-11-15','19:04:00',0,156,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',140,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-15 19:05:34','','0000-00-00 00:00:00',0),(9796,2526,0,0,3461,'2025-11-15','19:10:59',2194,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3811,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 19:10:59','reception','2025-11-15 19:10:59',0),(9797,2526,0,0,3462,'2025-11-15','00:00:00',2547,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 19:23:16','reception','2025-11-15 06:53:16',0),(9798,2526,0,0,3462,'2025-11-15','19:24:06',2547,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3812,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 19:24:06','manshi','2025-11-16 11:11:22',0),(9799,2526,0,0,3462,'2025-11-15','19:24:06',2547,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',3812,2,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 19:24:06','manshi','2025-11-16 11:11:22',0),(9800,2526,0,0,3462,'2025-11-15','19:24:15',2547,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3813,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 19:24:15','manshi','2025-11-16 11:14:32',0),(9801,2526,0,0,3462,'2025-11-15','19:24:15',2547,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',3813,2,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 19:24:15','manshi','2025-11-16 11:14:32',0),(9802,2526,0,0,3464,'2025-11-15','19:33:55',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3814,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-15 19:33:55','priyanshi','2025-11-15 19:33:55',0),(9803,2526,0,0,3463,'2025-11-15','19:41:20',2322,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3815,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 19:41:20','reception','2025-11-15 19:41:20',0),(9804,2526,0,0,3465,'2025-11-15','00:00:00',2548,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 20:00:03','reception','2025-11-15 07:30:03',0),(9805,2526,0,0,3465,'2025-11-15','20:00:58',2548,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',3816,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-15 20:00:58','reception','2025-11-15 20:00:58',0),(9806,2526,0,0,3466,'2025-11-16','00:00:00',2549,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3817,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-16 09:05:11','manshi','2025-11-16 09:06:11',0),(9807,2526,0,0,3466,'2025-11-16','09:06:11',2549,0,'WPRC','WPRC0037','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',3817,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-16 09:06:11','manshi','2025-11-16 09:06:11',0),(9808,2526,0,0,3467,'2025-11-16','00:00:00',2550,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',3818,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-16 09:07:13','manshi','2025-11-16 09:08:38',0),(9809,2526,0,0,3467,'2025-11-16','09:08:38',2550,0,'WPRC','WPRC0037','H','N',1.00,550,550,'P',0,0,0.00,0.00,0.00,550,3,0,0,'',0,0,'','','','','',2526,'H','O',3818,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-16 09:08:38','manshi','2025-11-16 09:08:38',0),(9810,2526,0,0,3468,'2025-11-16','09:00:00',0,161,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 10:20:48','riya','2025-11-17 10:52:55',0),(9811,2526,0,0,3468,'2025-11-16','09:00:00',0,161,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 10:20:48','riya','2025-11-17 10:52:55',0),(9812,2526,0,0,3468,'2025-11-16','09:00:00',0,161,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',151,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 21:50:49','riya','2025-11-17 10:52:55',0),(9813,2526,0,0,3468,'2025-11-16','09:00:00',0,161,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',151,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 21:50:49','riya','2025-11-17 10:52:55',0),(9814,2526,0,0,3468,'2025-11-16','09:00:00',0,161,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',151,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 21:50:49','riya','2025-11-17 10:52:55',0),(9815,2526,0,0,3468,'2025-11-16','09:00:00',0,161,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',151,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 21:50:49','riya','2025-11-17 10:52:55',0),(9816,2526,0,0,3468,'2025-11-16','09:00:00',0,161,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',151,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 21:50:49','riya','2025-11-17 10:52:55',0),(9817,2526,0,0,3470,'2025-11-16','10:00:00',0,162,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',144,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 10:34:04','riya','2025-11-17 13:25:29',0),(9818,2526,0,0,3470,'2025-11-16','10:00:00',0,162,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',144,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 10:34:04','riya','2025-11-17 13:25:29',0),(9819,2526,0,0,3470,'2025-11-16','10:00:00',0,162,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',144,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 22:04:04','riya','2025-11-17 13:25:29',0),(9820,2526,0,0,3470,'2025-11-16','10:00:00',0,162,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',144,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 22:04:04','riya','2025-11-17 13:25:29',0),(9821,2526,0,0,3470,'2025-11-16','10:00:00',0,162,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',144,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 22:04:04','riya','2025-11-17 13:25:29',0),(9822,2526,0,0,3470,'2025-11-16','10:00:00',0,162,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',144,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 22:04:04','riya','2025-11-17 13:25:29',0),(9823,2526,0,0,3470,'2025-11-16','10:00:00',0,162,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',144,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-15 22:04:04','riya','2025-11-17 13:25:29',0),(9824,2526,0,0,3299,'2025-11-16','10:42:00',0,157,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',141,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 10:43:12','','0000-00-00 00:00:00',0),(9825,2526,0,0,3299,'2025-11-14','10:42:00',0,157,'SURG','SURG0014','H','N',1.00,39000,39000,'P',0,0,0.00,0.00,39000.00,39000,3,0,0,'',0,0,'','','','','',2526,'H','I',141,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 10:43:12','riya','2025-11-16 10:47:03',0),(9826,2526,0,0,3299,'2025-11-14','10:42:00',0,157,'SURG','SURG0015','H','N',1.00,12750,12750,'P',0,0,0.00,0.00,12750.00,12750,3,0,0,'',0,0,'','','','','',2526,'H','I',141,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 10:43:12','riya','2025-11-16 10:47:03',0),(9827,2526,0,0,3471,'2025-11-16','00:00:00',2551,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3821,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-16 11:48:37','manshi','2025-11-16 11:51:08',0),(9828,2526,0,0,3471,'2025-11-16','11:51:08',2551,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',3821,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-16 11:51:08','manshi','2025-11-16 11:51:08',0),(9829,2526,0,0,3471,'2025-11-16','11:51:08',2551,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',3821,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-16 11:51:08','manshi','2025-11-16 11:51:08',0),(9830,2526,0,0,3472,'2025-11-16','00:00:00',2552,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',3822,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-16 12:17:38','manshi','2025-11-16 12:19:06',0),(9831,2526,0,0,3472,'2025-11-16','12:19:06',2552,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3822,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-16 12:19:06','manshi','2025-11-16 12:19:06',0),(9832,2526,0,0,3472,'2025-11-16','12:19:06',2552,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',3822,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-16 12:19:06','manshi','2025-11-16 12:19:06',0),(9833,2526,0,0,3405,'2025-11-16','10:00:00',0,160,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:09:16','riya','2025-11-16 13:42:08',0),(9834,2526,0,0,3405,'2025-11-16','10:00:00',0,160,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:09:16','riya','2025-11-16 13:42:08',0),(9835,2526,0,0,3405,'2025-11-16','10:00:00',0,160,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:09:16','riya','2025-11-16 13:42:08',0),(9836,2526,0,0,3405,'2025-11-16','10:00:00',0,160,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:09:16','riya','2025-11-16 13:42:08',0),(9837,2526,0,0,3405,'2025-11-16','10:00:00',0,160,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:09:16','riya','2025-11-16 13:42:08',0),(9838,2526,0,0,3405,'2025-11-15','13:39:00',0,160,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:42:08','','0000-00-00 00:00:00',0),(9839,2526,0,0,3405,'2025-11-15','13:39:00',0,160,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:42:08','','0000-00-00 00:00:00',0),(9840,2526,0,0,3405,'2025-11-15','13:39:00',0,160,'WPRC','WPRC0077','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:42:08','','0000-00-00 00:00:00',0),(9841,2526,0,0,3405,'2025-11-15','13:39:00',0,160,'WPRC','WPRC0091','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:42:08','','0000-00-00 00:00:00',0),(9842,2526,0,0,3405,'2025-11-15','13:40:00',0,160,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:42:08','','0000-00-00 00:00:00',0),(9843,2526,0,0,3405,'2025-11-16','13:40:00',0,160,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:42:08','','0000-00-00 00:00:00',0),(9844,2526,0,0,3405,'2025-11-16','13:40:00',0,160,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:42:08','','0000-00-00 00:00:00',0),(9845,2526,0,0,3405,'2025-11-16','13:41:00',0,160,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:42:08','riya','2025-11-18 23:11:38',0),(9846,2526,0,0,3405,'2025-11-16','13:41:00',0,160,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:42:08','riya','2025-11-18 23:11:38',0),(9847,2526,0,0,2811,'2025-11-16','01:00:00',0,143,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,60,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:13:30','riya','2025-11-16 14:11:32',0),(9848,2526,0,0,2811,'2025-11-16','01:00:00',0,143,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,61,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:13:30','riya','2025-11-16 14:11:32',0),(9849,2526,0,0,2811,'2025-11-16','01:00:00',0,143,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,62,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:13:30','riya','2025-11-16 14:11:32',0),(9850,2526,0,0,2811,'2025-11-16','01:00:00',0,143,'DRC','DRC0018','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','208','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:13:30','riya','2025-11-20 11:12:56',0),(9851,2526,0,0,2811,'2025-11-16','01:00:00',0,143,'DRC','DRC0019','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','208','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:13:30','riya','2025-11-20 11:12:56',0),(9852,2526,0,0,2811,'2025-11-15','13:44:00',0,143,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:52:09','','0000-00-00 00:00:00',0),(9853,2526,0,0,2811,'2025-11-15','13:44:00',0,143,'WPRC','WPRC0080','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:52:09','','0000-00-00 00:00:00',0),(9854,2526,0,0,2811,'2025-11-15','13:45:00',0,143,'WPRC','WPRC0091','H','N',2.00,500,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:52:09','riya','2025-11-20 10:54:42',0),(9855,2526,0,0,2811,'2025-11-15','13:46:00',0,143,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:52:09','','0000-00-00 00:00:00',0),(9856,2526,0,0,2811,'2025-11-16','13:46:00',0,143,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,8,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:52:09','','0000-00-00 00:00:00',0),(9857,2526,0,0,2811,'2025-11-16','13:46:00',0,143,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:52:09','riya','2025-11-17 14:11:15',0),(9858,2526,0,0,2811,'2025-11-16','13:47:00',0,143,'XRY','XRY0045','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:52:09','riya','2025-11-16 13:56:26',0),(9859,2526,0,0,2811,'2025-11-15','13:50:00',0,143,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:52:09','','0000-00-00 00:00:00',0),(9860,2526,0,0,2811,'2025-11-15','13:50:00',0,143,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:52:09','','0000-00-00 00:00:00',0),(9861,2526,0,0,2811,'2025-11-16','13:51:00',0,143,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:52:09','','0000-00-00 00:00:00',0),(9862,2526,0,0,2811,'2025-11-15','13:53:00',0,143,'WPRC','WPRC0097','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,62,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:55:17','','0000-00-00 00:00:00',0),(9863,2526,0,0,2811,'2025-11-15','13:56:00',0,143,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 13:57:07','','0000-00-00 00:00:00',0),(9864,2526,0,0,2879,'2025-11-16','13:58:00',0,146,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:01:17','riya','2025-12-01 19:41:30',0),(9865,2526,0,0,2879,'2025-11-16','13:58:00',0,146,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:01:17','vishal','2025-11-30 20:00:04',0),(9866,2526,0,0,2879,'2025-11-16','13:58:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:01:17','vishal','2025-11-30 20:00:04',0),(9867,2526,0,0,2879,'2025-11-16','13:59:00',0,146,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,77,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:01:17','riya','2025-11-27 17:50:51',0),(9868,2526,0,0,2879,'2025-11-16','13:59:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:01:17','riya','2025-12-01 19:41:30',0),(9869,2526,0,0,2879,'2025-11-16','13:59:00',0,146,'WPRC','WPRC0089','H','N',5.00,100,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:01:17','riya','2025-12-01 19:41:30',0),(9870,2526,0,0,2879,'2025-11-16','14:00:00',0,146,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:01:17','riya','2025-12-01 19:41:30',0),(9871,2526,0,0,2879,'2025-11-16','14:00:00',0,146,'XRY','XRY0045','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:01:17','vishal','2025-11-30 20:00:04',0),(9872,2526,0,0,2879,'2025-11-15','14:02:00',0,146,'DRC','DRC0020','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,187,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:04:39','vishal','2025-11-30 20:00:04',0),(9873,2526,0,0,2811,'2025-11-16','14:10:00',0,143,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:11:32','','0000-00-00 00:00:00',0),(9874,2526,0,0,2811,'2025-11-16','14:10:00',0,143,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:11:32','','0000-00-00 00:00:00',0),(9875,2526,0,0,2811,'2025-11-16','14:10:00',0,143,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:11:32','','0000-00-00 00:00:00',0),(9876,2526,0,0,3301,'2025-11-16','00:05:00',0,158,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',142,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:53:26','riya','2025-11-16 14:41:57',0),(9877,2526,0,0,3301,'2025-11-16','00:05:00',0,158,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',142,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:53:26','riya','2025-11-16 14:41:57',0),(9878,2526,0,0,3301,'2025-11-16','00:05:00',0,158,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',142,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:53:26','riya','2025-11-16 14:41:57',0),(9879,2526,0,0,3301,'2025-11-16','00:05:00',0,158,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',2526,'H','I',142,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:53:26','riya','2025-11-16 14:41:57',0),(9880,2526,0,0,3301,'2025-11-16','00:05:00',0,158,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',2526,'H','I',142,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:53:26','riya','2025-11-16 14:41:57',0),(9881,2526,0,0,3348,'2025-11-16','13:36:00',0,159,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:53:26','riya','2025-11-16 14:39:25',0),(9882,2526,0,0,3348,'2025-11-16','13:36:00',0,159,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:53:26','riya','2025-11-16 14:39:25',0),(9883,2526,0,0,3348,'2025-11-16','13:36:00',0,159,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:53:26','riya','2025-11-16 14:39:25',0),(9884,2526,0,0,3348,'2025-11-16','13:36:00',0,159,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:53:26','riya','2025-11-16 14:39:25',0),(9885,2526,0,0,3348,'2025-11-16','13:36:00',0,159,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 01:53:26','riya','2025-11-16 14:39:25',0),(9886,2526,0,0,3348,'2025-11-15','14:36:00',0,159,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:39:25','','0000-00-00 00:00:00',0),(9887,2526,0,0,3348,'2025-11-16','14:36:00',0,159,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:39:25','','0000-00-00 00:00:00',0),(9888,2526,0,0,3348,'2025-11-15','14:39:00',0,159,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:39:25','','0000-00-00 00:00:00',0),(9889,2526,0,0,3348,'2025-11-16','14:39:00',0,159,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:39:25','','0000-00-00 00:00:00',0),(9890,2526,0,0,3301,'2025-11-15','14:40:00',0,158,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',142,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:41:57','','0000-00-00 00:00:00',0),(9891,2526,0,0,3301,'2025-11-16','14:40:00',0,158,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',142,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:41:57','','0000-00-00 00:00:00',0),(9892,2526,0,0,3027,'2025-11-16','14:30:00',2247,149,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 02:12:30','riya','2025-11-16 14:43:15',0),(9893,2526,0,0,3027,'2025-11-16','14:30:00',2247,149,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 02:12:30','riya','2025-11-16 14:43:15',0),(9894,2526,0,0,3027,'2025-11-16','14:30:00',2247,149,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 02:12:30','riya','2025-11-16 14:43:15',0),(9895,2526,0,0,3027,'2025-11-16','14:30:00',2247,149,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 02:12:30','riya','2025-11-16 14:43:15',0),(9896,2526,0,0,3027,'2025-11-16','14:30:00',2247,149,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',143,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 02:12:30','riya','2025-11-16 14:43:15',0),(9897,2526,0,0,3027,'2025-11-16','14:42:00',2247,149,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',143,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:43:15','','0000-00-00 00:00:00',0),(9898,2526,0,0,2879,'2025-11-15','14:49:00',0,146,'GENS','GENS0079','H','N',1.00,10000,10000,'P',0,0,0.00,0.00,10000.00,10000,9999,0,0,'',0,0,'','','','','',0,'','',0,80,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:50:10','vishal','2025-11-17 15:59:07',0),(9899,2526,0,0,2879,'2025-11-12','14:52:00',0,146,'GENS','GENS0080','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',0,'','',0,81,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 14:52:43','vishal','2025-11-17 16:00:49',0),(9900,2526,0,0,2879,'2025-11-16','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 04:46:51','vishal','2025-11-30 20:00:04',0),(9901,2526,0,0,2879,'2025-11-16','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 04:46:51','riya','2025-12-01 19:41:30',0),(9902,2526,0,0,2879,'2025-11-16','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 04:46:51','riya','2025-12-01 19:41:30',0),(9903,2526,0,0,2879,'2025-11-16','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 04:46:51','riya','2025-12-01 19:41:30',0),(9904,2526,0,0,2879,'2025-11-16','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 04:46:51','vishal','2025-11-30 20:00:04',0),(9905,2526,0,0,3473,'2025-11-16','17:30:00',0,163,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 17:32:45','riya','2025-11-17 14:18:31',0),(9906,2526,0,0,3473,'2025-11-16','17:30:00',0,163,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 17:32:45','riya','2025-11-17 14:18:31',0),(9907,2526,0,0,3473,'2025-11-16','17:30:00',0,163,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 05:02:45','riya','2025-11-17 14:18:31',0),(9908,2526,0,0,3473,'2025-11-16','17:30:00',0,163,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 05:02:45','riya','2025-11-17 14:18:31',0),(9909,2526,0,0,3473,'2025-11-16','17:30:00',0,163,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 05:02:45','riya','2025-11-17 14:18:31',0),(9910,2526,0,0,3473,'2025-11-16','17:30:00',0,163,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-16 05:02:45','riya','2025-11-17 14:18:31',0),(9911,2526,0,0,3473,'2025-11-16','17:30:00',0,163,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-16 05:02:45','riya','2025-11-17 14:18:31',0),(9912,2526,0,0,3474,'2025-11-16','18:20:00',0,164,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 18:19:04','riya','2025-11-17 11:02:22',0),(9913,2526,0,0,3474,'2025-11-16','18:20:00',0,164,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 18:19:04','riya','2025-11-17 11:02:22',0),(9914,2526,0,0,3475,'2025-11-17','08:57:39',1288,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3823,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 08:57:39','reception','2025-11-17 08:57:39',0),(9915,2526,0,0,3476,'2025-11-17','00:00:00',2553,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 08:58:53','reception','2025-11-16 20:28:53',0),(9916,2526,0,0,3477,'2025-11-17','09:01:42',2118,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3824,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 09:01:42','reception','2025-11-17 09:01:42',0),(9917,2526,0,0,3478,'2025-11-17','00:00:00',2554,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 09:03:07','reception','2025-11-16 20:33:07',0),(9918,2526,0,0,3476,'2025-11-17','09:15:26',2553,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3825,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 09:15:26','reception','2025-11-17 09:15:26',0),(9919,2526,0,0,3476,'2025-11-17','09:15:26',2553,0,'OPWD','OPWD0013','H','N',1.00,150,150,'P',0,0,0.00,0.00,0.00,150,4,0,0,'',0,0,'','','','','',2526,'H','O',3825,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 09:15:26','reception','2025-11-17 09:15:26',0),(9920,2526,0,0,3476,'2025-11-17','09:15:26',2553,0,'OPWD','OPWD0013','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',3825,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 09:15:26','reception','2025-11-17 09:15:26',0),(9921,2526,0,0,3478,'2025-11-17','09:42:09',2554,0,'SURG','SURG0005','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,0.00,1200,7,0,0,'',0,0,'','','','','',2526,'H','O',3826,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-17 09:42:09','reception','2025-11-17 09:42:09',0),(9922,2526,0,0,3478,'2025-11-17','09:42:09',2554,0,'OPWD','OPWD0013','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,7,0,0,'',0,0,'','','','','',2526,'H','O',3826,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-17 09:42:09','reception','2025-11-17 09:42:09',0),(9923,2526,0,0,3478,'2025-11-17','09:42:09',2554,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,7,0,0,'',0,0,'','','','','',2526,'H','O',3826,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-17 09:42:09','reception','2025-11-17 09:42:09',0),(9924,2526,0,0,3478,'2025-11-17','09:42:09',2554,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,77,'',0,0,'','','','','',2526,'H','O',3826,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-17 09:42:09','reception','2025-11-17 09:42:09',0),(9925,2526,0,0,3479,'2025-11-17','00:00:00',2555,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 09:42:59','reception','2025-11-16 21:12:59',0),(9926,2526,0,0,3479,'2025-11-17','09:43:22',2555,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3827,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 09:43:22','reception','2025-11-17 09:43:22',0),(9927,2526,0,0,3480,'2025-11-17','00:00:00',1421,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3828,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 10:01:29','reception','2025-11-17 10:01:42',0),(9928,2526,0,0,3027,'2025-11-17','10:01:00',2247,149,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',143,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:03:49','','0000-00-00 00:00:00',0),(9929,2526,0,0,3027,'2025-11-17','10:02:00',2247,149,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',143,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:03:49','','0000-00-00 00:00:00',0),(9930,2526,0,0,3481,'2025-11-17','00:00:00',315,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3829,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 10:15:18','reception','2025-11-17 10:15:34',0),(9931,2526,0,0,3482,'2025-11-17','00:00:00',2556,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3830,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-17 10:16:14','drashti','2025-11-17 10:16:57',0),(9932,2526,0,0,3483,'2025-11-17','00:00:00',2557,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3831,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 10:18:24','reception','2025-11-17 10:18:58',0),(9933,2526,0,0,3484,'2025-11-17','00:00:00',2558,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',3832,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 10:35:59','reception','2025-11-17 10:36:45',0),(9934,2526,0,0,3485,'2025-11-17','00:00:00',2047,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3833,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 10:40:00','reception','2025-11-17 10:40:17',0),(9935,2526,0,0,3405,'2025-11-17','10:00:00',0,160,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 22:12:46','riya','2025-11-17 10:45:31',0),(9936,2526,0,0,3405,'2025-11-17','10:00:00',0,160,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 22:12:46','riya','2025-11-17 10:45:31',0),(9937,2526,0,0,3405,'2025-11-17','10:00:00',0,160,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 22:12:46','riya','2025-11-17 10:45:31',0),(9938,2526,0,0,3405,'2025-11-17','10:00:00',0,160,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 22:12:46','riya','2025-11-17 10:45:31',0),(9939,2526,0,0,3405,'2025-11-17','10:00:00',0,160,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 22:12:46','riya','2025-11-18 10:26:38',0),(9940,2526,0,0,3405,'2025-11-17','10:44:00',0,160,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:45:31','','0000-00-00 00:00:00',0),(9941,2526,0,0,3405,'2025-11-16','10:44:00',0,160,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:45:31','','0000-00-00 00:00:00',0),(9942,2526,0,0,3405,'2025-11-17','10:44:00',0,160,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:45:31','','0000-00-00 00:00:00',0),(9943,2526,0,0,3486,'2025-11-17','00:00:00',1993,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3834,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 10:45:54','reception','2025-11-17 10:46:32',0),(9944,2526,0,0,3468,'2025-11-17','09:00:00',0,161,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',0,'','',0,18,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 22:19:55','riya','2025-11-17 12:42:25',0),(9945,2526,0,0,3468,'2025-11-17','09:00:00',0,161,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',0,'','',0,17,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 22:19:55','riya','2025-11-17 12:42:25',0),(9946,2526,0,0,3468,'2025-11-17','09:00:00',0,161,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',0,'','',0,16,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 22:19:55','riya','2025-11-17 12:42:25',0),(9947,2526,0,0,3468,'2025-11-17','09:00:00',0,161,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','209','','','',2526,'H','I',151,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 22:19:55','riya','2025-11-17 10:53:57',0),(9948,2526,0,0,3468,'2025-11-17','09:00:00',0,161,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','209','','','',2526,'H','I',151,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 22:19:55','riya','2025-11-20 12:17:08',0),(9949,2526,0,0,3468,'2025-11-16','10:49:00',0,161,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:52:55','riya','2025-11-17 10:53:57',0),(9950,2526,0,0,3468,'2025-11-16','10:50:00',0,161,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:52:55','riya','2025-11-17 10:53:57',0),(9951,2526,0,0,3468,'2025-11-16','10:50:00',0,161,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:52:55','riya','2025-11-17 10:53:57',0),(9952,2526,0,0,3468,'2025-11-17','10:50:00',0,161,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:52:55','','0000-00-00 00:00:00',0),(9953,2526,0,0,3468,'2025-11-16','10:50:00',0,161,'XRY','XRY0045','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:52:55','riya','2025-11-17 10:53:57',0),(9954,2526,0,0,3468,'2025-11-16','10:51:00',0,161,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:52:55','riya','2025-11-17 12:47:09',0),(9955,2526,0,0,3468,'2025-11-16','10:51:00',0,161,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:52:55','riya','2025-11-17 12:47:09',0),(9956,2526,0,0,3468,'2025-11-17','10:51:00',0,161,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:52:55','','0000-00-00 00:00:00',0),(9957,2526,0,0,3487,'2025-11-17','00:00:00',2069,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3835,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 10:54:22','reception','2025-11-17 10:54:52',0),(9958,2526,0,0,3488,'2025-11-17','00:00:00',2062,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3836,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 10:57:30','reception','2025-11-17 10:58:01',0),(9959,2526,0,0,2879,'2025-11-17','10:55:00',0,146,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:59:43','vishal','2025-11-30 20:00:04',0),(9960,2526,0,0,2879,'2025-11-16','10:57:00',0,146,'USG','USG0092','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:59:43','riya','2025-12-01 19:41:30',0),(9961,2526,0,0,2879,'2025-11-17','10:58:00',0,146,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:59:43','vishal','2025-11-30 20:00:04',0),(9962,2526,0,0,2879,'2025-11-17','10:58:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:59:43','riya','2025-12-01 19:41:30',0),(9963,2526,0,0,2879,'2025-11-17','10:58:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,91,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:59:43','vishal','2025-11-20 17:16:54',0),(9964,2526,0,0,2879,'2025-11-17','10:59:00',0,146,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,92,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:59:43','vishal','2025-11-20 17:16:54',0),(9965,2526,0,0,2879,'2025-11-17','10:59:00',0,146,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 10:59:43','riya','2025-12-01 19:41:30',0),(9966,2526,0,0,3474,'2025-11-16','18:20:00',0,164,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',154,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 22:30:52','riya','2025-11-17 11:02:22',0),(9967,2526,0,0,3474,'2025-11-16','18:20:00',0,164,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',154,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 22:30:52','riya','2025-11-17 11:02:22',0),(9968,2526,0,0,3474,'2025-11-16','18:20:00',0,164,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',154,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 22:30:52','riya','2025-11-17 11:02:22',0),(9969,2526,0,0,3474,'2025-11-16','18:20:00',0,164,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',154,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 22:30:52','riya','2025-11-17 11:02:22',0),(9970,2526,0,0,3474,'2025-11-16','18:20:00',0,164,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-16 22:30:52','riya','2025-11-17 11:08:03',0),(9971,2526,0,0,3474,'2025-11-16','11:01:00',0,164,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 11:02:22','','0000-00-00 00:00:00',0),(9972,2526,0,0,3474,'2025-11-17','11:01:00',0,164,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 11:02:22','','0000-00-00 00:00:00',0),(9973,2526,0,0,3474,'2025-11-17','11:01:00',0,164,'WPRC','WPRC0080','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,2,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 11:02:22','riya','2025-11-17 11:07:45',0),(9974,2526,0,0,3489,'2025-11-17','00:00:00',2559,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3837,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-17 11:02:39','shweta','2025-11-17 11:03:52',0),(9975,2526,0,0,3474,'2025-11-16','11:04:00',0,164,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 11:07:45','','0000-00-00 00:00:00',0),(9976,2526,0,0,3474,'2025-11-17','11:05:00',0,164,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 11:07:45','','0000-00-00 00:00:00',0),(9977,2526,0,0,3474,'2025-11-16','11:05:00',0,164,'XRY','XRY0045','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 11:07:45','','0000-00-00 00:00:00',0),(9978,2526,0,0,3474,'2025-11-16','11:06:00',0,164,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 11:07:45','','0000-00-00 00:00:00',0),(9979,2526,0,0,3474,'2025-11-17','11:06:00',0,164,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 11:07:45','','0000-00-00 00:00:00',0),(9980,2526,0,0,3474,'2025-11-16','11:06:00',0,164,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 11:07:45','','0000-00-00 00:00:00',0),(9981,2526,0,0,3474,'2025-11-17','11:06:00',0,164,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 11:07:45','','0000-00-00 00:00:00',0),(9982,2526,0,0,3474,'2025-11-16','11:07:00',0,164,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,18,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 11:07:45','riya','2025-11-18 10:39:37',0),(9983,2526,0,0,3474,'2025-11-17','11:07:00',0,164,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,19,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 11:07:45','','0000-00-00 00:00:00',0),(9984,2526,0,0,3474,'2025-11-16','11:07:00',0,164,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,20,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 11:07:45','','0000-00-00 00:00:00',0),(9985,2526,0,0,3490,'2025-11-17','00:00:00',1251,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3841,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-17 11:12:02','shweta','2025-11-17 11:22:21',0),(9986,2526,0,0,3491,'2025-11-17','00:00:00',2560,0,'PKG','CASE','H','N',1.00,500,500,'A',0,500,0.00,0.00,0.00,0,6,0,0,'',0,0,'','','','','',2526,'H','O',3842,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 11:15:51','urvashi','2025-11-17 11:23:58',0),(9987,2526,0,0,3492,'2025-11-17','00:00:00',1992,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3838,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 11:16:09','reception','2025-11-17 11:16:28',0),(9988,2526,0,0,3493,'2025-11-17','00:00:00',2561,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3840,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-17 11:17:32','urvashi','2025-11-17 11:20:34',0),(9989,2526,0,0,3494,'2025-11-17','00:00:00',759,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3839,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-17 11:18:01','urvashi','2025-11-17 11:20:02',0),(9990,2526,0,0,3491,'2025-11-17','11:23:58',2560,0,'XRY','XRY0074','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',3842,2,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-17 11:23:58','urvashi','2025-11-17 11:23:58',0),(9991,2526,0,0,3495,'2025-11-17','00:00:00',2562,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3843,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 11:25:00','reception','2025-11-17 11:25:14',0),(9992,2526,0,0,3496,'2025-11-17','00:00:00',1353,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3844,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 11:25:52','reception','2025-11-17 11:26:17',0),(9993,2526,0,0,3497,'2025-11-17','00:00:00',2056,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3845,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 11:29:08','reception','2025-11-17 11:29:22',0),(9994,2526,0,0,3498,'2025-11-17','00:00:00',2563,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3846,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 11:29:55','reception','2025-11-17 11:30:10',0),(9995,2526,0,0,3499,'2025-11-17','00:00:00',2141,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3847,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 11:31:33','reception','2025-11-17 11:31:56',0),(9996,2526,0,0,3500,'2025-11-17','00:00:00',2564,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3848,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 11:35:52','reception','2025-11-17 11:36:26',0),(9997,2526,0,0,3494,'2025-11-17','11:37:30',759,0,'XRY','XRY0242','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3849,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-17 11:37:30','urvashi','2025-11-17 11:37:30',0),(9998,2526,0,0,3501,'2025-11-17','00:00:00',1432,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',3850,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-17 11:38:10','urvashi','2025-11-17 11:38:30',0),(9999,2526,0,0,3502,'2025-11-17','00:00:00',2565,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3851,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 11:38:30','reception','2025-11-17 11:38:40',0),(10000,2526,0,0,3503,'2025-11-17','00:00:00',384,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3852,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 11:39:12','reception','2025-11-17 11:39:24',0),(10001,2526,0,0,3504,'2025-11-17','00:00:00',961,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3853,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 11:40:24','reception','2025-11-17 11:40:53',0),(10002,2526,0,0,3505,'2025-11-17','00:00:00',2566,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3854,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-17 11:45:50','drashti','2025-11-17 11:46:25',0),(10003,2526,0,0,3506,'2025-11-17','11:51:40',2245,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3855,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-17 11:51:40','urvashi','2025-11-17 11:51:40',0),(10004,2526,0,0,3506,'2025-11-17','11:51:40',2245,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',3855,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-17 11:51:40','urvashi','2025-11-17 11:51:40',0),(10005,2526,0,0,3507,'2025-11-17','00:00:00',2567,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3856,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-17 11:55:35','drashti','2025-11-17 11:56:09',0),(10006,2526,0,0,3508,'2025-11-17','11:57:48',1928,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3857,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-17 11:57:48','janvi','2025-11-17 11:57:48',0),(10007,2526,0,0,3509,'2025-11-17','00:00:00',2568,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3858,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-17 12:01:03','janvi','2025-11-17 12:02:37',0),(10008,2526,0,0,3510,'2025-11-17','00:00:00',2065,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3859,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-17 12:03:24','janvi','2025-11-17 12:04:00',0),(10009,2526,0,0,3498,'2025-11-17','12:04:10',2563,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3860,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 12:04:10','reception','2025-11-17 12:04:10',0),(10010,2526,0,0,3498,'2025-11-17','12:04:10',2563,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3860,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 12:04:10','reception','2025-11-17 12:04:10',0),(10011,2526,0,0,3511,'2025-11-17','00:00:00',2569,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3861,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-17 12:09:56','drashti','2025-11-17 12:10:37',0),(10012,2526,0,0,3489,'2025-11-17','12:11:20',2559,0,'NEU1','NEU10020','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3862,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 12:11:20','reception','2025-11-17 12:11:20',0),(10013,2526,0,0,3512,'2025-11-17','00:00:00',848,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3863,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 12:13:25','reception','2025-11-17 12:13:39',0),(10014,2526,0,0,3510,'2025-11-17','12:32:41',2065,0,'OPWD','OPWD0023','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3864,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-17 12:32:41','janvi','2025-11-17 12:32:41',0),(10015,2526,0,0,3507,'2025-11-17','12:35:14',2567,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3865,1,287,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 12:35:14','reception','2025-11-17 12:35:14',0),(10016,2526,0,0,3507,'2025-11-17','12:35:14',2567,0,'NEU1','NEU10017','H','N',1.00,2400,2400,'P',0,0,0.00,0.00,0.00,2400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3865,2,313,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 12:35:14','reception','2025-11-17 12:35:14',0),(10017,2526,0,0,3513,'2025-11-17','00:00:00',2570,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3866,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 12:37:58','reception','2025-11-17 12:38:08',0),(10018,2526,0,0,3468,'2025-11-17','12:41:00',0,161,'ROOM','ROOM0003','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 12:42:25','','0000-00-00 00:00:00',0),(10019,2526,0,0,3468,'2025-11-17','12:41:00',0,161,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 12:42:25','','0000-00-00 00:00:00',0),(10020,2526,0,0,3468,'2025-11-17','12:42:00',0,161,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 12:42:25','','0000-00-00 00:00:00',0),(10021,2526,0,0,3514,'2025-11-17','00:00:00',2571,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',3867,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-17 12:44:59','drashti','2025-11-17 12:45:40',0),(10022,2526,0,0,3515,'2025-11-17','00:00:00',2572,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3868,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 12:46:21','reception','2025-11-17 12:46:58',0),(10023,2526,0,0,3500,'2025-11-17','12:55:37',2564,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3869,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 12:55:37','reception','2025-11-17 12:55:37',0),(10024,2526,0,0,3500,'2025-11-17','12:55:37',2564,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3869,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 12:55:37','reception','2025-11-17 12:55:37',0),(10025,2526,0,0,3500,'2025-11-17','12:55:37',2564,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3869,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 12:55:37','reception','2025-11-17 12:55:37',0),(10026,2526,0,0,3516,'2025-11-17','00:00:00',27,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3870,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 12:57:36','reception','2025-11-17 12:58:14',0),(10027,2526,0,0,3517,'2025-11-17','13:00:00',0,165,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 12:59:52','riya','2025-11-17 13:20:10',0),(10028,2526,0,0,3517,'2025-11-17','13:00:00',0,165,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 12:59:52','riya','2025-11-17 13:20:10',0),(10029,2526,0,0,3518,'2025-11-17','00:00:00',2573,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3871,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 13:03:43','reception','2025-11-17 13:04:27',0),(10030,2526,0,0,3519,'2025-11-17','13:15:59',2433,0,'OPWD','OPWD0034','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,4,0,0,'',0,0,'','','','','',2526,'H','O',3872,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-17 13:15:59','drashti','2025-11-17 13:15:59',0),(10031,2526,0,0,3520,'2025-11-17','00:00:00',796,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3873,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 13:18:52','reception','2025-11-17 13:19:05',0),(10032,2526,0,0,3521,'2025-11-17','00:00:00',1005,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',3917,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-17 13:19:45','janvi','2025-11-17 20:00:27',0),(10033,2526,0,0,3517,'2025-11-17','13:00:00',0,165,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 00:49:58','riya','2025-11-17 13:20:10',0),(10034,2526,0,0,3517,'2025-11-17','13:00:00',0,165,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 00:49:58','riya','2025-11-17 13:20:10',0),(10035,2526,0,0,3517,'2025-11-17','13:00:00',0,165,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 00:49:58','riya','2025-11-17 13:20:10',0),(10036,2526,0,0,3517,'2025-11-17','13:00:00',0,165,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,70,0,0,'',0,0,'','402','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 00:49:58','riya','2025-11-18 09:46:04',0),(10037,2526,0,0,3517,'2025-11-17','13:00:00',0,165,'DRC','DRC0019','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,70,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 00:49:58','riya','2025-11-20 16:06:09',0),(10038,2526,0,0,3470,'2025-11-16','13:23:00',0,162,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',144,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 13:25:29','','0000-00-00 00:00:00',0),(10039,2526,0,0,3470,'2025-11-16','13:23:00',0,162,'WPRC','WPRC0080','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',144,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 13:25:29','','0000-00-00 00:00:00',0),(10040,2526,0,0,3470,'2025-11-17','13:23:00',0,162,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',144,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 13:25:29','','0000-00-00 00:00:00',0),(10041,2526,0,0,3470,'2025-11-17','13:23:00',0,162,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',144,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 13:25:29','','0000-00-00 00:00:00',0),(10042,2526,0,0,3470,'2025-11-17','13:24:00',0,162,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','','','','',2526,'H','I',144,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 13:25:29','','0000-00-00 00:00:00',0),(10043,2526,0,0,3505,'2025-11-17','13:37:21',2566,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3874,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 13:37:21','reception','2025-11-17 13:37:21',0),(10044,2526,0,0,3505,'2025-11-17','13:37:21',2566,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3874,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 13:37:21','reception','2025-11-17 13:37:21',0),(10045,2526,0,0,3505,'2025-11-17','13:37:21',2566,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3874,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 13:37:21','reception','2025-11-17 13:37:21',0),(10046,2526,0,0,3348,'2025-11-17','13:36:00',0,159,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 01:35:37','riya','2025-11-17 14:07:19',0),(10047,2526,0,0,3348,'2025-11-17','13:36:00',0,159,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 01:35:37','riya','2025-11-17 14:07:19',0),(10048,2526,0,0,3348,'2025-11-17','13:36:00',0,159,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 01:35:37','riya','2025-11-17 14:07:19',0),(10049,2526,0,0,3348,'2025-11-17','13:36:00',0,159,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 01:35:37','riya','2025-11-17 14:07:19',0),(10050,2526,0,0,3348,'2025-11-17','13:36:00',0,159,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 01:35:37','riya','2025-11-17 14:07:19',0),(10051,2526,0,0,3522,'2025-11-17','00:00:00',2574,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',3875,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-17 14:07:09','shweta','2025-11-17 14:09:57',0),(10052,2526,0,0,3348,'2025-11-17','14:05:00',0,159,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 14:07:19','','0000-00-00 00:00:00',0),(10053,2526,0,0,3348,'2025-11-17','14:06:00',0,159,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 14:07:19','','0000-00-00 00:00:00',0),(10054,2526,0,0,2811,'2025-11-17','01:00:00',0,143,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 01:37:49','riya','2025-11-17 14:11:15',0),(10055,2526,0,0,2811,'2025-11-17','01:00:00',0,143,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 01:37:49','riya','2025-11-17 14:11:15',0),(10056,2526,0,0,2811,'2025-11-17','01:00:00',0,143,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 01:37:49','riya','2025-11-17 14:11:15',0),(10057,2526,0,0,2811,'2025-11-17','01:00:00',0,143,'DRC','DRC0018','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 01:37:49','riya','2025-11-20 11:12:56',0),(10058,2526,0,0,2811,'2025-11-17','01:00:00',0,143,'DRC','DRC0019','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 01:37:49','riya','2025-11-20 11:12:56',0),(10059,2526,0,0,3522,'2025-11-17','14:09:57',2574,0,'WPRC','WPRC0046','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',3875,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-17 14:09:57','shweta','2025-11-17 14:09:57',0),(10060,2526,0,0,2811,'2025-11-17','14:10:00',0,143,'USG','USG0091','H','N',1.00,1300,1300,'P',0,0,0.00,0.00,1300.00,1300,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 14:11:15','riya','2025-11-20 10:54:42',0),(10061,2526,0,0,2811,'2025-11-17','14:10:00',0,143,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 14:11:15','','0000-00-00 00:00:00',0),(10062,2526,0,0,3348,'2025-11-15','14:12:00',0,159,'USG','USG0092','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 14:13:08','','0000-00-00 00:00:00',0),(10063,2526,0,0,3468,'2025-11-17','14:13:00',0,161,'USG','USG0092','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 14:14:35','','0000-00-00 00:00:00',0),(10064,2526,0,0,3523,'2025-11-17','00:00:00',952,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3876,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 14:14:49','reception','2025-11-17 14:15:22',0),(10065,2526,0,0,3473,'2025-11-16','14:15:00',0,163,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 14:18:31','','0000-00-00 00:00:00',0),(10066,2526,0,0,3473,'2025-11-16','14:15:00',0,163,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 14:18:31','','0000-00-00 00:00:00',0),(10067,2526,0,0,3473,'2025-11-16','14:16:00',0,163,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,188,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 14:18:31','','0000-00-00 00:00:00',0),(10068,2526,0,0,3524,'2025-11-17','00:00:00',957,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-17 14:48:28','shweta','2025-11-17 02:18:28',0),(10069,2526,0,0,3524,'2025-11-17','14:49:16',957,0,'OPWD','OPWD0016','H','N',1.00,750,750,'P',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3877,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-17 14:49:16','shweta','2025-11-17 14:49:16',0),(10070,2526,0,0,2879,'2025-11-17','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 03:20:47','riya','2025-12-01 19:41:30',0),(10071,2526,0,0,2879,'2025-11-17','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 03:20:47','vishal','2025-11-30 20:00:04',0),(10072,2526,0,0,2879,'2025-11-17','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 03:20:47','riya','2025-12-01 19:41:30',0),(10073,2526,0,0,2879,'2025-11-17','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 03:20:47','riya','2025-12-01 19:41:30',0),(10074,2526,0,0,2879,'2025-11-17','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 03:20:47','riya','2025-12-01 19:41:30',0),(10075,2526,0,0,2879,'2025-11-16','16:01:00',0,146,'WPRC','WPRC0111','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,4,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 16:02:53','riya','2025-12-01 19:41:30',0),(10076,2526,0,0,3525,'2025-11-17','00:00:00',2096,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3878,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 16:39:46','reception','2025-11-17 16:40:27',0),(10077,2526,0,0,3526,'2025-11-17','00:00:00',219,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3879,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 16:46:03','reception','2025-11-17 16:47:01',0),(10078,2526,0,0,3527,'2025-11-17','00:00:00',2575,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3880,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 16:49:02','reception','2025-11-17 16:49:32',0),(10079,2526,0,0,3528,'2025-11-17','00:00:00',2576,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-17 16:50:19','janvi','2025-11-17 04:20:19',0),(10080,2526,0,0,3528,'2025-11-17','16:50:53',2576,0,'OPWD','OPWD0013','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,5,0,0,'',0,0,'','','','','',2526,'H','O',3881,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-17 16:50:53','janvi','2025-11-17 16:50:53',0),(10081,2526,0,0,3529,'2025-11-17','00:00:00',2577,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3882,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 16:54:30','reception','2025-11-17 16:54:44',0),(10082,2526,0,0,3530,'2025-11-17','00:00:00',2578,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3883,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 16:56:09','reception','2025-11-17 16:57:17',0),(10083,2526,0,0,3531,'2025-11-17','00:00:00',2579,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3884,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 17:01:34','reception','2025-11-17 17:01:51',0),(10084,2526,0,0,3532,'2025-11-17','00:00:00',2580,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',3885,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 17:04:22','reception','2025-11-17 17:05:03',0),(10085,2526,0,0,3533,'2025-11-17','00:00:00',1875,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3886,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 17:11:17','reception','2025-11-17 17:12:38',0),(10086,2526,0,0,3534,'2025-11-17','00:00:00',2581,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',3887,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-17 17:20:14','manshi','2025-11-17 17:46:57',0),(10087,2526,0,0,3535,'2025-11-17','00:00:00',2582,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-17 17:23:10','manshi','2025-11-17 04:53:10',0),(10088,2526,0,0,3536,'2025-11-17','00:00:00',1540,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3888,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 17:24:52','reception','2025-11-17 17:25:09',0),(10089,2526,0,0,3535,'2025-11-17','17:25:27',2582,0,'XRY','XRY0151','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3889,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-17 17:25:27','manshi','2025-11-17 17:25:27',0),(10090,2526,0,0,3537,'2025-11-17','00:00:00',2583,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3890,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 17:36:35','reception','2025-11-17 17:37:13',0),(10091,2526,0,0,3527,'2025-11-17','17:40:01',2575,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3891,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 17:40:01','reception','2025-11-17 17:40:01',0),(10092,2526,0,0,3527,'2025-11-17','17:40:01',2575,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3891,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 17:40:01','reception','2025-11-17 17:40:01',0),(10093,2526,0,0,3527,'2025-11-17','17:40:01',2575,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3891,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 17:40:01','reception','2025-11-17 17:40:01',0),(10094,2526,0,0,3538,'2025-11-17','00:00:00',1386,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',3893,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-17 17:51:02','drashti','2025-11-17 17:51:13',0),(10095,2526,0,0,3473,'2025-11-17','17:30:00',0,163,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 05:26:19','riya','2025-11-18 09:50:03',0),(10096,2526,0,0,3473,'2025-11-17','17:30:00',0,163,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 05:26:19','riya','2025-11-18 09:50:03',0),(10097,2526,0,0,3473,'2025-11-17','17:30:00',0,163,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 05:26:19','riya','2025-11-18 09:50:03',0),(10098,2526,0,0,3473,'2025-11-17','17:30:00',0,163,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 05:26:19','riya','2025-11-18 09:50:03',0),(10099,2526,0,0,3473,'2025-11-17','17:30:00',0,163,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 05:26:19','riya','2025-11-18 09:50:03',0),(10100,2526,0,0,3530,'2025-11-17','17:58:27',2578,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3894,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 17:58:27','reception','2025-11-17 17:58:27',0),(10101,2526,0,0,3530,'2025-11-17','17:58:27',2578,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3894,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 17:58:27','reception','2025-11-17 17:58:27',0),(10102,2526,0,0,3530,'2025-11-17','17:58:27',2578,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3894,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 17:58:27','reception','2025-11-17 17:58:27',0),(10103,2526,0,0,3539,'2025-11-17','00:00:00',995,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3895,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 18:02:42','reception','2025-11-17 18:02:58',0),(10104,2526,0,0,3540,'2025-11-17','00:00:00',2584,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3896,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 18:04:35','reception','2025-11-17 18:04:46',0),(10105,2526,0,0,3541,'2025-11-17','00:00:00',2585,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3899,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-17 18:07:10','manshi','2025-11-17 18:17:24',0),(10106,2526,0,0,3542,'2025-11-17','00:00:00',2074,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3897,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 18:11:35','reception','2025-11-17 18:11:57',0),(10107,2526,0,0,3543,'2025-11-17','00:00:00',2586,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',3898,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-17 18:12:04','manshi','2025-11-17 18:12:47',0),(10108,2526,0,0,3531,'2025-11-17','18:17:59',2579,0,'NEU1','NEU10015','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',3900,1,69,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 18:17:59','reception','2025-11-17 18:17:59',0),(10109,2526,0,0,3531,'2025-11-17','18:17:59',2579,0,'NEU1','NEU10019','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3900,2,287,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 18:17:59','reception','2025-11-17 18:17:59',0),(10110,2526,0,0,3531,'2025-11-17','18:17:59',2579,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',3900,3,344,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 18:17:59','reception','2025-11-17 18:17:59',0),(10111,2526,0,0,3544,'2025-11-17','00:00:00',2587,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3901,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 18:19:55','reception','2025-11-17 18:20:50',0),(10112,2526,0,0,3532,'2025-11-17','18:25:36',2580,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3902,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 18:25:36','reception','2025-11-17 18:25:36',0),(10113,2526,0,0,3532,'2025-11-17','18:25:36',2580,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',3902,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 18:25:36','reception','2025-11-17 18:25:36',0),(10114,2526,0,0,3474,'2025-11-17','18:20:00',0,164,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',154,19,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 06:03:07','riya','2025-11-18 10:39:37',0),(10115,2526,0,0,3474,'2025-11-17','18:20:00',0,164,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',154,20,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 06:03:07','riya','2025-11-18 10:39:37',0),(10116,2526,0,0,3474,'2025-11-17','18:20:00',0,164,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','208','','','',2526,'H','I',154,21,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 06:03:07','riya','2025-11-18 10:39:37',0),(10117,2526,0,0,3474,'2025-11-17','18:20:00',0,164,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','208','','','',2526,'H','I',154,22,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 06:03:07','riya','2025-11-18 10:39:37',0),(10118,2526,0,0,3474,'2025-11-17','18:20:00',0,164,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',154,23,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 06:03:07','riya','2025-11-18 10:39:37',0),(10119,2526,0,0,3545,'2025-11-17','00:00:00',776,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3903,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 18:43:17','reception','2025-11-17 18:43:33',0),(10120,2526,0,0,3546,'2025-11-17','00:00:00',1446,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',3904,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-17 18:44:58','manshi','2025-11-17 18:58:53',0),(10121,2526,0,0,3540,'2025-11-17','18:46:36',2584,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3905,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 18:46:36','reception','2025-11-17 18:46:36',0),(10122,2526,0,0,3540,'2025-11-17','18:46:36',2584,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3905,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 18:46:36','reception','2025-11-17 18:46:36',0),(10123,2526,0,0,3540,'2025-11-17','18:46:36',2584,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3905,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 18:46:36','reception','2025-11-17 18:46:36',0),(10124,2526,0,0,3547,'2025-11-17','00:00:00',2588,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3906,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-17 18:49:06','drashti','2025-11-17 18:49:34',0),(10125,2526,0,0,3541,'2025-11-17','18:50:40',2585,0,'WPRC','WPRC0046','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3907,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-17 18:50:40','manshi','2025-11-17 18:50:40',0),(10126,2526,0,0,3548,'2025-11-17','00:00:00',2200,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-17 18:52:02','manshi','2025-11-17 06:22:02',0),(10127,2526,0,0,3549,'2025-11-17','00:00:00',2589,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3908,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 18:56:44','reception','2025-11-17 19:57:59',0),(10128,2526,0,0,3550,'2025-11-17','00:00:00',1277,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3910,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 19:01:41','reception','2025-11-17 19:01:53',0),(10129,2526,0,0,3544,'2025-11-17','19:03:39',2587,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3911,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 19:03:39','reception','2025-11-17 19:03:39',0),(10130,2526,0,0,3544,'2025-11-17','19:03:39',2587,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3911,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 19:03:39','reception','2025-11-17 19:03:39',0),(10131,2526,0,0,3551,'2025-11-17','00:00:00',2590,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',3912,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-17 19:06:42','manshi','2025-11-17 19:07:14',0),(10132,2526,0,0,3543,'2025-11-17','19:35:59',2586,0,'OPWD','OPWD0012','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,7,0,0,'',0,0,'','','','','',2526,'H','O',3913,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-17 19:35:59','manshi','2025-11-17 19:35:59',0),(10133,2526,0,0,3552,'2025-11-17','19:55:47',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3914,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-17 19:55:47','janvi','2025-11-17 19:55:47',0),(10134,2526,0,0,3549,'2025-11-17','19:59:02',2589,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3916,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-17 19:59:02','reception','2025-11-17 19:59:02',0),(10135,2526,0,0,3553,'2025-11-17','20:15:00',0,166,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',163,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 20:35:53','riya','2025-11-19 14:25:52',0),(10136,2526,0,0,3553,'2025-11-17','20:15:00',0,166,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',163,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 20:35:53','riya','2025-11-19 14:25:52',0),(10137,2526,0,0,3553,'2025-11-17','20:15:00',0,166,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 08:05:54','riya','2025-11-19 14:25:52',0),(10138,2526,0,0,3553,'2025-11-17','20:15:00',0,166,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','D',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 08:05:54','riya','2025-11-19 14:25:52',0),(10139,2526,0,0,3553,'2025-11-17','20:15:00',0,166,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 08:05:54','riya','2025-11-19 14:25:52',0),(10140,2526,0,0,3553,'2025-11-17','20:15:00',0,166,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 08:05:54','riya','2025-11-19 14:25:52',0),(10141,2526,0,0,3553,'2025-11-17','20:15:00',0,166,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','404','','','',2526,'H','D',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-17 08:05:54','riya','2025-11-19 14:25:52',0),(10142,2526,0,0,3554,'2025-11-18','00:00:00',2591,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 09:03:37','reception','2025-11-17 20:33:37',0),(10143,2526,0,0,3554,'2025-11-18','09:09:22',2591,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3918,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-18 09:09:22','reception','2025-11-18 09:09:22',0),(10144,2526,0,0,3554,'2025-11-18','09:09:22',2591,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',3918,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-18 09:09:22','reception','2025-11-18 09:09:22',0),(10145,2526,0,0,3554,'2025-11-18','09:09:22',2591,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,78,'',0,0,'','','','','',2526,'H','O',3918,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-18 09:09:22','reception','2025-11-18 09:09:22',0),(10146,2526,0,0,3554,'2025-11-18','09:09:22',2591,0,'OPWD','OPWD0015','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,4,0,0,'',0,0,'','','','','',2526,'H','O',3918,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-18 09:09:22','reception','2025-11-18 09:09:22',0),(10147,2526,0,0,3554,'2025-11-18','09:09:22',2591,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',3918,5,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-18 09:09:22','reception','2025-11-18 09:09:22',0),(10148,2526,0,0,3555,'2025-11-18','00:00:00',2592,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 09:10:56','reception','2025-11-17 20:40:56',0),(10149,2526,0,0,3555,'2025-11-18','09:11:54',2592,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3919,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 09:11:54','reception','2025-11-18 09:11:54',0),(10150,2526,0,0,3555,'2025-11-18','09:11:54',2592,0,'OPWD','OPWD0013','H','N',4.00,100,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',3919,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 09:11:54','reception','2025-11-18 09:11:54',0),(10151,2526,0,0,3556,'2025-11-18','00:00:00',709,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 09:13:25','reception','2025-11-17 20:43:25',0),(10152,2526,0,0,3556,'2025-11-18','09:15:07',709,0,'AECO','AECO0001','H','N',1.00,3500,3500,'P',0,0,0.00,0.00,0.00,3500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3920,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 09:15:07','reception','2025-11-18 09:15:07',0),(10153,2526,0,0,3556,'2025-11-18','09:15:07',709,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',3920,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 09:15:07','reception','2025-11-18 09:15:07',0),(10154,2526,0,0,3557,'2025-11-18','00:00:00',2593,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3921,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-18 09:41:50','drashti','2025-11-18 09:43:36',0),(10155,2526,0,0,3517,'2025-11-17','09:45:00',0,165,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 09:46:04','','0000-00-00 00:00:00',0),(10156,2526,0,0,2811,'2025-11-18','01:00:00',0,143,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 21:16:46','riya','2025-11-18 09:48:36',0),(10157,2526,0,0,2811,'2025-11-18','01:00:00',0,143,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 21:16:46','riya','2025-11-18 09:48:36',0),(10158,2526,0,0,2811,'2025-11-18','01:00:00',0,143,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 21:16:46','riya','2025-11-18 09:48:36',0),(10159,2526,0,0,2811,'2025-11-18','01:00:00',0,143,'DRC','DRC0018','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 21:16:46','riya','2025-11-20 11:12:56',0),(10160,2526,0,0,2811,'2025-11-18','01:00:00',0,143,'DRC','DRC0019','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 21:16:46','riya','2025-11-20 11:12:56',0),(10161,2526,0,0,2811,'2025-11-18','09:46:00',0,143,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 09:48:36','','0000-00-00 00:00:00',0),(10162,2526,0,0,3468,'2025-11-18','09:00:00',0,161,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',151,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 21:21:14','riya','2025-11-18 09:52:22',0),(10163,2526,0,0,3468,'2025-11-18','09:00:00',0,161,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',151,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 21:21:14','riya','2025-11-18 09:52:22',0),(10164,2526,0,0,3468,'2025-11-18','09:00:00',0,161,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',151,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 21:21:14','riya','2025-11-18 09:52:22',0),(10165,2526,0,0,3468,'2025-11-18','09:00:00',0,161,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','408','','','',2526,'H','I',151,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 21:21:14','riya','2025-11-18 09:52:22',0),(10166,2526,0,0,3468,'2025-11-18','09:00:00',0,161,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','408','','','',2526,'H','I',151,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 21:21:14','riya','2025-11-20 12:17:08',0),(10167,2526,0,0,3468,'2025-11-18','09:51:00',0,161,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 09:52:22','','0000-00-00 00:00:00',0),(10168,2526,0,0,3348,'2025-11-18','09:53:00',0,159,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 09:53:55','','0000-00-00 00:00:00',0),(10169,2526,0,0,3348,'2025-11-18','09:53:00',0,159,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 09:53:55','','0000-00-00 00:00:00',0),(10170,2526,0,0,3558,'2025-11-18','00:00:00',2594,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3922,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 10:05:34','reception','2025-11-18 10:05:59',0),(10171,2526,0,0,3405,'2025-11-18','10:00:00',0,160,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 21:37:04','riya','2025-11-18 10:26:38',0),(10172,2526,0,0,3405,'2025-11-18','10:00:00',0,160,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 21:37:04','riya','2025-11-18 10:26:38',0),(10173,2526,0,0,3405,'2025-11-18','10:00:00',0,160,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 21:37:04','riya','2025-11-18 10:26:38',0),(10174,2526,0,0,3405,'2025-11-18','10:00:00',0,160,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 21:37:04','riya','2025-11-18 10:26:38',0),(10175,2526,0,0,3405,'2025-11-18','10:00:00',0,160,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','207','','','',2526,'H','I',145,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-17 21:37:04','riya','2025-11-18 10:26:38',0),(10176,2526,0,0,3559,'2025-11-18','00:00:00',2595,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3923,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 10:11:36','reception','2025-11-18 10:13:17',0),(10177,2526,0,0,3560,'2025-11-18','00:00:00',2166,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3924,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-18 10:13:43','manshi','2025-11-18 10:14:13',0),(10178,2526,0,0,3561,'2025-11-18','00:00:00',2596,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3925,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-18 10:20:36','drashti','2025-11-18 10:21:55',0),(10179,2526,0,0,3562,'2025-11-18','00:00:00',2597,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',3926,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 10:26:32','reception','2025-11-18 10:27:37',0),(10180,2526,0,0,3405,'2025-11-17','10:24:00',0,160,'WPRC','WPRC0080','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:26:38','','0000-00-00 00:00:00',0),(10181,2526,0,0,3405,'2025-11-18','10:24:00',0,160,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:26:38','vishal','2025-11-18 23:10:02',0),(10182,2526,0,0,3405,'2025-11-17','10:25:00',0,160,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:26:38','','0000-00-00 00:00:00',0),(10183,2526,0,0,3405,'2025-11-18','10:25:00',0,160,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:26:38','','0000-00-00 00:00:00',0),(10184,2526,0,0,3405,'2025-11-17','10:26:00',0,160,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,38,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:26:38','','0000-00-00 00:00:00',0),(10185,2526,0,0,2879,'2025-11-18','10:28:00',0,146,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:34:59','vishal','2025-11-30 20:00:04',0),(10186,2526,0,0,2879,'2025-11-16','10:31:00',0,146,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,106,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:34:59','vishal','2025-11-30 19:59:18',0),(10187,2526,0,0,2879,'2025-11-18','10:31:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,100,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:34:59','vishal','2025-11-20 17:16:54',0),(10188,2526,0,0,2879,'2025-11-15','10:32:00',0,146,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:34:59','vishal','2025-11-30 20:00:04',0),(10189,2526,0,0,2879,'2025-11-18','10:33:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:34:59','vishal','2025-11-30 20:00:04',0),(10190,2526,0,0,2879,'2025-11-18','10:33:00',0,146,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:34:59','riya','2025-11-27 18:03:22',0),(10191,2526,0,0,2879,'2025-11-18','10:33:00',0,146,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:34:59','riya','2025-11-27 18:03:22',0),(10192,2526,0,0,3563,'2025-11-18','00:00:00',1384,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',3927,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-18 10:37:22','drashti','2025-11-18 10:37:54',0),(10193,2526,0,0,3474,'2025-11-17','10:35:00',0,164,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',154,24,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:39:37','','0000-00-00 00:00:00',0),(10194,2526,0,0,3474,'2025-11-18','10:36:00',0,164,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,25,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:39:37','','0000-00-00 00:00:00',0),(10195,2526,0,0,3474,'2025-11-17','10:36:00',0,164,'USG','USG0092','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,26,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:39:37','','0000-00-00 00:00:00',0),(10196,2526,0,0,3474,'2025-11-17','10:37:00',0,164,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,27,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:39:37','vishal','2025-11-20 20:21:45',0),(10197,2526,0,0,3474,'2025-11-18','10:38:00',0,164,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,28,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:39:37','','0000-00-00 00:00:00',0),(10198,2526,0,0,3564,'2025-11-18','00:00:00',2598,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',3928,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-18 10:39:43','manshi','2025-11-18 10:40:09',0),(10199,2526,0,0,3565,'2025-11-18','00:00:00',168,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3929,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 10:46:04','reception','2025-11-18 10:46:23',0),(10200,2526,0,0,3566,'2025-11-18','11:00:00',0,167,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',152,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:55:38','riya','2025-11-20 14:08:32',0),(10201,2526,0,0,3566,'2025-11-18','11:00:00',0,167,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',152,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 10:55:38','riya','2025-11-20 14:08:32',0),(10202,2526,0,0,3568,'2025-11-18','11:02:56',221,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3930,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-18 11:02:56','drashti','2025-11-18 11:02:56',0),(10203,2526,0,0,3569,'2025-11-18','00:00:00',2127,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3931,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 11:03:47','reception','2025-11-18 11:04:19',0),(10204,2526,0,0,3570,'2025-11-18','00:00:00',2073,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3932,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-18 11:04:33','drashti','2025-11-18 11:06:00',0),(10205,2526,0,0,3561,'2025-11-18','11:10:52',2596,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3933,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 11:10:52','reception','2025-11-18 11:10:52',0),(10206,2526,0,0,3561,'2025-11-18','11:10:52',2596,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3933,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 11:10:52','reception','2025-11-18 11:10:52',0),(10207,2526,0,0,3561,'2025-11-18','11:10:52',2596,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3933,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 11:10:52','reception','2025-11-18 11:10:52',0),(10208,2526,0,0,3571,'2025-11-18','00:00:00',917,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3934,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 11:19:48','reception','2025-11-18 11:20:07',0),(10209,2526,0,0,3572,'2025-11-18','00:00:00',865,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',3935,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 11:30:51','reception','2025-11-18 11:31:20',0),(10210,2526,0,0,3573,'2025-11-18','00:00:00',2599,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3936,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 11:33:59','reception','2025-11-18 11:34:31',0),(10211,2526,0,0,3574,'2025-11-18','00:00:00',2220,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3937,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-18 11:38:53','manshi','2025-11-18 11:39:15',0),(10212,2526,0,0,3575,'2025-11-18','00:00:00',2600,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3938,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 11:43:03','reception','2025-11-18 11:43:59',0),(10213,2526,0,0,3576,'2025-11-18','00:00:00',2601,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3939,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-18 11:50:15','drashti','2025-11-18 11:50:34',0),(10214,2526,0,0,3577,'2025-11-18','00:00:00',2602,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3940,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 11:51:17','reception','2025-11-18 11:52:12',0),(10215,2526,0,0,3517,'2025-11-18','11:51:00',0,165,'XRY','XRY0045','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 11:51:50','','0000-00-00 00:00:00',0),(10216,2526,0,0,3473,'2025-11-18','11:52:00',0,163,'XRY','XRY0045','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 11:52:24','','0000-00-00 00:00:00',0),(10217,2526,0,0,3578,'2025-11-18','11:55:19',2290,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3941,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 11:55:19','reception','2025-11-18 11:55:19',0),(10218,2526,0,0,3579,'2025-11-18','00:00:00',2603,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',3942,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-18 12:06:25','manshi','2025-11-18 12:06:48',0),(10219,2526,0,0,3581,'2025-11-18','12:16:54',2281,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3943,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-18 12:16:54','janvi','2025-11-18 12:16:54',0),(10220,2526,0,0,3581,'2025-11-18','12:16:54',2281,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3943,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-18 12:16:54','janvi','2025-11-18 12:16:54',0),(10221,2526,0,0,3580,'2025-11-18','12:16:56',2282,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3944,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-18 12:16:56','drashti','2025-11-18 12:16:56',0),(10222,2526,0,0,3580,'2025-11-18','12:16:56',2282,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',3944,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-18 12:16:56','drashti','2025-11-18 12:16:56',0),(10223,2526,0,0,3582,'2025-11-18','12:22:17',2458,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3945,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 12:22:17','reception','2025-11-18 12:22:17',0),(10224,2526,0,0,3583,'2025-11-18','00:00:00',2604,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',3947,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 12:28:52','reception','2025-11-18 12:29:40',0),(10225,2526,0,0,3579,'2025-11-18','12:29:20',2603,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',3946,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-18 12:29:20','manshi','2025-11-18 12:29:20',0),(10226,2526,0,0,3584,'2025-11-18','00:00:00',2605,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3948,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 12:35:41','reception','2025-11-18 12:36:07',0),(10227,2526,0,0,3585,'2025-11-18','00:00:00',2606,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3949,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-18 12:36:07','drashti','2025-11-18 12:36:34',0),(10228,2526,0,0,3586,'2025-11-18','00:00:00',2607,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3950,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 12:37:17','reception','2025-11-18 12:37:47',0),(10229,2526,0,0,3587,'2025-11-18','00:00:00',1714,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3951,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 12:38:25','reception','2025-11-18 12:38:58',0),(10230,2526,0,0,3588,'2025-11-18','00:00:00',2608,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-18 12:41:45','drashti','2025-11-18 00:11:45',0),(10231,2526,0,0,3589,'2025-11-18','00:00:00',2609,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3953,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 12:42:21','reception','2025-11-18 12:42:53',0),(10232,2526,0,0,3588,'2025-11-18','12:42:34',2608,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',3952,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-18 12:42:34','drashti','2025-11-18 12:42:34',0),(10233,2526,0,0,3590,'2025-11-18','00:00:00',2610,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3954,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 12:47:53','reception','2025-11-18 12:51:25',0),(10234,2526,0,0,3583,'2025-11-18','12:54:46',2604,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3955,1,51,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 12:54:46','reception','2025-11-18 12:54:46',0),(10235,2526,0,0,3583,'2025-11-18','12:54:46',2604,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3955,2,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 12:54:46','reception','2025-11-18 12:54:46',0),(10236,2526,0,0,3583,'2025-11-18','12:54:46',2604,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3955,3,224,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 12:54:46','reception','2025-11-18 12:54:46',0),(10237,2526,0,0,3591,'2025-11-18','13:00:00',0,168,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',150,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 13:08:49','riya','2025-11-19 10:30:46',0),(10238,2526,0,0,3591,'2025-11-18','13:00:00',0,168,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',150,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 13:08:49','riya','2025-11-19 10:30:46',0),(10239,2526,0,0,3591,'2025-11-18','13:00:00',0,168,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',150,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 00:38:49','riya','2025-11-19 10:30:46',0),(10240,2526,0,0,3591,'2025-11-18','13:00:00',0,168,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',150,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 00:38:49','riya','2025-11-19 10:30:46',0),(10241,2526,0,0,3591,'2025-11-18','13:00:00',0,168,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',150,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 00:38:49','riya','2025-11-19 10:30:46',0),(10242,2526,0,0,3591,'2025-11-18','13:00:00',0,168,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-18 00:38:49','riya','2025-11-19 10:30:46',0),(10243,2526,0,0,3591,'2025-11-18','13:00:00',0,168,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','208','','','',2526,'H','I',150,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 00:38:49','riya','2025-11-19 10:30:46',0),(10244,2526,0,0,3586,'2025-11-18','13:10:09',2607,0,'NEU1','NEU10019','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',3956,1,400,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 13:10:09','reception','2025-11-18 13:10:09',0),(10245,2526,0,0,3586,'2025-11-18','13:10:09',2607,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',3956,2,600,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 13:10:09','reception','2025-11-18 13:10:09',0),(10246,2526,0,0,3592,'2025-11-18','00:00:00',2611,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3957,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-18 13:10:12','drashti','2025-11-18 13:10:40',0),(10247,2526,0,0,3593,'2025-11-18','00:00:00',250,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3958,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 13:11:50','reception','2025-11-18 13:12:12',0),(10248,2526,0,0,3594,'2025-11-18','13:15:00',0,169,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',148,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 13:20:17','riya','2025-11-19 12:25:23',0),(10249,2526,0,0,3594,'2025-11-18','13:15:00',0,169,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',148,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 13:20:17','riya','2025-11-19 12:25:23',0),(10250,2526,0,0,3594,'2025-11-18','13:15:00',0,169,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','310','','','',2526,'H','I',148,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 00:50:18','riya','2025-11-19 12:25:23',0),(10251,2526,0,0,3594,'2025-11-18','13:15:00',0,169,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','310','','','',2526,'H','I',148,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 00:50:18','riya','2025-11-19 12:25:23',0),(10252,2526,0,0,3594,'2025-11-18','13:15:00',0,169,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','310','','','',2526,'H','I',148,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 00:50:18','riya','2025-11-19 12:25:23',0),(10253,2526,0,0,3594,'2025-11-18','13:15:00',0,169,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','310','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 00:50:18','riya','2025-11-20 12:12:22',0),(10254,2526,0,0,3594,'2025-11-18','13:15:00',0,169,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','310','','','',2526,'H','I',148,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 00:50:18','riya','2025-11-20 12:12:22',0),(10255,2526,0,0,3595,'2025-11-18','13:15:00',0,170,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',156,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 13:22:06','vishal','2025-11-21 11:45:46',0),(10256,2526,0,0,3595,'2025-11-18','13:15:00',0,170,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',156,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 13:22:06','vishal','2025-11-21 11:45:46',0),(10257,2526,0,0,3595,'2025-11-18','13:15:00',0,170,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','311','','','',2526,'H','I',156,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 00:52:06','vishal','2025-11-21 11:45:46',0),(10258,2526,0,0,3595,'2025-11-18','13:15:00',0,170,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','311','','','',2526,'H','I',156,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 00:52:06','vishal','2025-11-21 11:45:46',0),(10259,2526,0,0,3595,'2025-11-18','13:15:00',0,170,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','311','','','',2526,'H','I',156,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 00:52:06','vishal','2025-11-21 11:45:46',0),(10260,2526,0,0,3595,'2025-11-19','13:15:00',0,170,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','311','','','',2526,'H','I',156,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 00:52:06','vishal','2025-11-21 11:45:46',0),(10261,2526,0,0,3595,'2025-11-18','13:15:00',0,170,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','311','','','',2526,'H','I',156,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 00:52:06','vishal','2025-11-21 11:45:46',0),(10262,2526,0,0,3590,'2025-11-18','13:27:39',2610,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3959,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 13:27:39','reception','2025-11-18 13:27:39',0),(10263,2526,0,0,3590,'2025-11-18','13:27:39',2610,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3959,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 13:27:39','reception','2025-11-18 13:27:39',0),(10264,2526,0,0,3590,'2025-11-18','13:27:39',2610,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3959,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 13:27:39','reception','2025-11-18 13:27:39',0),(10265,2526,0,0,3592,'2025-11-18','13:47:42',2611,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3960,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 13:47:42','reception','2025-11-18 13:47:42',0),(10266,2526,0,0,3592,'2025-11-18','13:47:42',2611,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3960,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 13:47:42','reception','2025-11-18 13:47:42',0),(10267,2526,0,0,3592,'2025-11-18','13:47:42',2611,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3960,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 13:47:42','reception','2025-11-18 13:47:42',0),(10268,2526,0,0,3596,'2025-11-18','00:00:00',2612,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3961,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 13:56:49','reception','2025-11-18 13:57:20',0),(10269,2526,0,0,3597,'2025-11-18','00:00:00',2613,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-18 14:00:27','drashti','2025-11-18 01:30:27',0),(10270,2526,0,0,3597,'2025-11-18','14:02:17',2613,0,'OPWD','OPWD0034','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,5,0,0,'',0,0,'','','','','',2526,'H','O',3962,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-18 14:02:17','drashti','2025-11-18 14:02:17',0),(10271,2526,0,0,2811,'2025-11-18','14:17:00',0,143,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 14:17:39','','0000-00-00 00:00:00',0),(10272,2526,0,0,3598,'2025-11-18','00:00:00',2614,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3963,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 16:25:28','reception','2025-11-18 16:26:01',0),(10273,2526,0,0,3599,'2025-11-18','16:47:57',2547,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',3964,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-18 16:47:57','drashti','2025-11-18 16:47:57',0),(10274,2526,0,0,3599,'2025-11-18','16:47:57',2547,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',3964,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-18 16:47:57','drashti','2025-11-18 16:47:57',0),(10275,2526,0,0,3600,'2025-11-18','00:00:00',2615,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3965,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 16:53:50','reception','2025-11-18 16:54:48',0),(10276,2526,0,0,3601,'2025-11-18','00:00:00',321,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3966,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 16:56:27','reception','2025-11-18 16:58:20',0),(10277,2526,0,0,3602,'2025-11-18','00:00:00',2616,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',3967,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 17:00:33','reception','2025-11-18 17:01:39',0),(10278,2526,0,0,3566,'2025-11-18','11:00:00',0,167,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',152,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 04:31:36','riya','2025-11-20 14:08:32',0),(10279,2526,0,0,3566,'2025-11-18','11:00:00',0,167,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',152,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 04:31:36','riya','2025-11-20 14:08:32',0),(10280,2526,0,0,3566,'2025-11-18','11:00:00',0,167,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',152,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 04:31:36','riya','2025-11-20 14:08:32',0),(10281,2526,0,0,3566,'2025-11-18','11:00:00',0,167,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','411','','','',2526,'H','I',152,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 04:31:36','riya','2025-11-20 14:08:32',0),(10282,2526,0,0,3566,'2025-11-18','11:00:00',0,167,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','411','','','',2526,'H','I',152,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 04:31:36','riya','2025-11-20 14:08:32',0),(10283,2526,0,0,3603,'2025-11-18','00:00:00',212,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3968,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 17:02:53','reception','2025-11-18 17:03:31',0),(10284,2526,0,0,3604,'2025-11-18','00:00:00',2617,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3969,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 17:05:18','reception','2025-11-18 17:07:29',0),(10285,2526,0,0,3600,'2025-11-18','17:19:54',2615,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3970,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 17:19:54','reception','2025-11-18 17:19:54',0),(10286,2526,0,0,3600,'2025-11-18','17:19:54',2615,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3970,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 17:19:54','reception','2025-11-18 17:19:54',0),(10287,2526,0,0,3600,'2025-11-18','17:19:54',2615,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3970,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 17:19:54','reception','2025-11-18 17:19:54',0),(10288,2526,0,0,3606,'2025-11-18','00:00:00',2618,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3971,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-18 17:27:17','drashti','2025-11-18 17:27:49',0),(10289,2526,0,0,3607,'2025-11-18','00:00:00',2014,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3972,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 17:31:02','reception','2025-11-18 17:31:13',0),(10290,2526,0,0,3608,'2025-11-18','17:49:13',2118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3973,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-18 17:49:13','janvi','2025-11-18 17:49:13',0),(10291,2526,0,0,3609,'2025-11-18','00:00:00',2619,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3974,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 17:55:04','reception','2025-11-18 17:55:24',0),(10292,2526,0,0,3607,'2025-11-18','18:01:00',2014,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3976,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 18:01:00','reception','2025-11-18 18:01:00',0),(10293,2526,0,0,3611,'2025-11-18','17:00:00',0,171,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 18:01:03','riya','2025-11-19 10:04:48',0),(10294,2526,0,0,3611,'2025-11-18','17:00:00',0,171,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 18:01:03','riya','2025-11-19 10:04:48',0),(10295,2526,0,0,3611,'2025-11-18','17:00:00',0,171,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 05:31:03','riya','2025-11-19 10:04:48',0),(10296,2526,0,0,3611,'2025-11-18','17:00:00',0,171,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 05:31:03','riya','2025-11-19 10:04:48',0),(10297,2526,0,0,3611,'2025-11-18','17:00:00',0,171,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 05:31:03','riya','2025-11-19 10:04:48',0),(10298,2526,0,0,3611,'2025-11-18','17:00:00',0,171,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,78,0,0,'',0,0,'','209','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 05:31:03','riya','2025-11-20 11:23:25',0),(10299,2526,0,0,3611,'2025-11-18','17:00:00',0,171,'DRC','DRC0019','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,78,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 05:31:03','riya','2025-11-22 09:41:24',0),(10300,2526,0,0,3612,'2025-11-18','00:00:00',2620,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-18 18:06:23','manshi','2025-11-18 05:36:23',0),(10301,2526,0,0,3613,'2025-11-18','00:00:00',1133,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',3977,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 18:06:24','janvi','2025-11-18 18:16:29',0),(10302,2526,0,0,3614,'2025-11-18','00:00:00',2621,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-18 18:10:50','janvi','2025-11-18 05:40:50',0),(10303,2526,0,0,3615,'2025-11-18','00:00:00',2622,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3978,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 18:14:39','reception','2025-11-18 18:15:09',0),(10304,2526,0,0,3614,'2025-11-18','18:22:37',2621,0,'OPWD','OPWD0025','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',3980,1,400,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-18 18:22:37','janvi','2025-11-18 18:22:37',0),(10305,2526,0,0,3616,'2025-11-18','00:00:00',1207,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',3981,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-18 18:28:07','manshi','2025-11-18 18:28:22',0),(10306,2526,0,0,3609,'2025-11-18','18:28:37',2619,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3982,1,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 18:28:37','reception','2025-11-18 18:28:37',0),(10307,2526,0,0,3609,'2025-11-18','18:28:37',2619,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3982,2,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 18:28:37','reception','2025-11-18 18:28:37',0),(10308,2526,0,0,3609,'2025-11-18','18:28:37',2619,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3982,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 18:28:37','reception','2025-11-18 18:28:37',0),(10309,2526,0,0,3617,'2025-11-18','00:00:00',2623,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3983,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 18:30:15','reception','2025-11-18 18:30:40',0),(10310,2526,0,0,3618,'2025-11-18','18:35:25',2612,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3984,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 18:35:25','reception','2025-11-18 18:35:25',0),(10311,2526,0,0,3618,'2025-11-18','18:35:25',2612,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3984,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 18:35:25','reception','2025-11-18 18:35:25',0),(10312,2526,0,0,3618,'2025-11-18','18:35:25',2612,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3984,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 18:35:25','reception','2025-11-18 18:35:25',0),(10313,2526,0,0,3619,'2025-11-18','00:00:00',2624,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3985,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 18:44:30','reception','2025-11-18 18:45:52',0),(10314,2526,0,0,3617,'2025-11-18','18:55:24',2623,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3986,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 18:55:24','reception','2025-11-18 18:55:24',0),(10315,2526,0,0,3617,'2025-11-18','18:55:24',2623,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3986,2,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 18:55:24','reception','2025-11-18 18:55:24',0),(10316,2526,0,0,3617,'2025-11-18','18:55:24',2623,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',3986,3,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 18:55:24','reception','2025-11-18 18:55:24',0),(10317,2526,0,0,3617,'2025-11-18','18:55:24',2623,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',3986,4,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-18 18:55:24','reception','2025-11-18 18:55:24',0),(10318,2526,0,0,3621,'2025-11-18','21:30:00',0,172,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 22:02:28','riya','2025-11-19 10:28:00',0),(10319,2526,0,0,3621,'2025-11-18','21:30:00',0,172,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 22:02:28','riya','2025-11-19 10:28:00',0),(10320,2526,0,0,3621,'2025-11-18','21:30:00',0,172,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 09:32:28','riya','2025-11-19 10:28:00',0),(10321,2526,0,0,3621,'2025-11-18','21:30:00',0,172,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 09:32:28','riya','2025-11-19 10:28:00',0),(10322,2526,0,0,3621,'2025-11-18','21:30:00',0,172,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 09:32:28','riya','2025-11-19 10:28:00',0),(10323,2526,0,0,3621,'2025-11-18','21:30:00',0,172,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 09:32:28','riya','2025-11-19 10:28:00',0),(10324,2526,0,0,3621,'2025-11-18','21:30:00',0,172,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 09:32:28','riya','2025-11-19 10:28:29',0),(10325,2526,0,0,3405,'2025-11-18','23:08:00',0,160,'WPRC','WPRC0077','H','N',4.00,500,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-18 23:10:02','','0000-00-00 00:00:00',0),(10326,2526,0,0,3405,'2025-11-18','23:10:00',0,160,'WPRC','WPRC0088','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,194,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 23:11:38','','0000-00-00 00:00:00',0),(10327,2526,0,0,3405,'2025-11-18','23:11:00',0,160,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,42,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 23:14:31','riya','2025-11-18 23:22:32',0),(10328,2526,0,0,3405,'2025-11-18','23:12:00',0,160,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 23:14:31','','0000-00-00 00:00:00',0),(10329,2526,0,0,3405,'2025-11-18','23:12:00',0,160,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',145,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 23:14:31','','0000-00-00 00:00:00',0),(10330,2526,0,0,3622,'2025-11-19','00:00:00',2625,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',4012,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 09:21:21','manshi','2025-11-19 11:26:49',0),(10331,2526,0,0,3623,'2025-11-19','09:30:00',0,173,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',149,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 09:28:36','riya','2025-11-20 11:35:28',0),(10332,2526,0,0,3623,'2025-11-19','09:30:00',0,173,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',149,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 09:28:36','riya','2025-11-20 11:35:28',0),(10333,2526,0,0,3624,'2025-11-19','00:00:00',2626,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3987,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 09:32:48','reception','2025-11-19 09:33:22',0),(10334,2526,0,0,3623,'2025-11-19','09:30:00',0,173,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',149,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 21:34:21','riya','2025-11-20 11:35:28',0),(10335,2526,0,0,3623,'2025-11-19','09:30:00',0,173,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',149,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 21:34:21','riya','2025-11-20 11:35:28',0),(10336,2526,0,0,3623,'2025-11-19','09:30:00',0,173,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',149,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 21:34:21','riya','2025-11-20 11:35:28',0),(10337,2526,0,0,3623,'2025-11-19','09:30:00',0,173,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',149,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 21:34:21','riya','2025-11-20 11:35:28',0),(10338,2526,0,0,3623,'2025-11-19','09:30:00',0,173,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',149,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 21:34:21','riya','2025-11-20 11:35:28',0),(10339,2526,0,0,3611,'2025-11-19','10:04:00',0,171,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:04:48','','0000-00-00 00:00:00',0),(10340,2526,0,0,3625,'2025-11-19','00:00:00',2627,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3988,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 10:05:22','reception','2025-11-19 10:05:46',0),(10341,2526,0,0,2879,'2025-11-18','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 21:39:21','riya','2025-12-01 19:41:30',0),(10342,2526,0,0,2879,'2025-11-18','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 21:39:21','riya','2025-12-01 19:41:30',0),(10343,2526,0,0,2879,'2025-11-18','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 21:39:21','riya','2025-12-01 19:41:30',0),(10344,2526,0,0,2879,'2025-11-18','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 21:39:21','vishal','2025-11-30 20:00:04',0),(10345,2526,0,0,2879,'2025-11-18','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 21:39:21','vishal','2025-11-30 20:00:04',0),(10346,2526,0,0,2879,'2025-11-18','10:09:00',0,146,'WPRC','WPRC0100','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,39,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:10:43','vishal','2025-11-30 20:00:04',0),(10347,2526,0,0,2879,'2025-11-19','10:09:00',0,146,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:10:43','riya','2025-11-27 18:03:22',0),(10348,2526,0,0,3626,'2025-11-19','00:00:00',2628,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',3989,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 10:11:43','reception','2025-11-19 10:12:10',0),(10349,2526,0,0,2879,'2025-11-19','10:10:00',0,146,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:12:04','riya','2025-11-27 18:03:22',0),(10350,2526,0,0,2879,'2025-11-19','10:11:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:12:04','riya','2025-11-27 18:03:22',0),(10351,2526,0,0,2879,'2025-11-19','10:11:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,114,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:12:04','vishal','2025-11-20 17:16:54',0),(10352,2526,0,0,3627,'2025-11-19','00:00:00',2629,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4079,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-19 10:12:38','urvashi','2025-11-19 17:51:00',0),(10353,2526,0,0,3628,'2025-11-19','00:00:00',19,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3990,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 10:12:40','reception','2025-11-19 10:12:57',0),(10354,2526,0,0,3629,'2025-11-19','00:00:00',2630,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3991,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 10:13:02','urvashi','2025-11-19 10:13:47',0),(10355,2526,0,0,3630,'2025-11-19','10:15:00',0,174,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',166,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:17:01','vishal','2025-11-20 17:50:34',0),(10356,2526,0,0,3630,'2025-11-19','10:15:00',0,174,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',166,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:17:01','vishal','2025-11-20 17:50:34',0),(10357,2526,0,0,3630,'2025-11-19','10:15:00',0,174,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 21:47:01','vishal','2025-11-20 17:50:34',0),(10358,2526,0,0,3630,'2025-11-19','10:15:00',0,174,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 21:47:01','vishal','2025-11-20 17:50:34',0),(10359,2526,0,0,3630,'2025-11-19','10:15:00',0,174,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 21:47:01','vishal','2025-11-20 17:50:34',0),(10360,2526,0,0,3630,'2025-11-19','10:15:00',0,174,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 21:47:01','vishal','2025-11-20 17:50:34',0),(10361,2526,0,0,3630,'2025-11-19','10:15:00',0,174,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 21:47:01','vishal','2025-11-20 17:50:34',0),(10362,2526,0,0,3631,'2025-11-19','00:00:00',2172,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3992,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 10:17:09','reception','2025-11-19 10:17:42',0),(10363,2526,0,0,3632,'2025-11-19','00:00:00',2631,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',3994,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-19 10:19:27','janvi','2025-11-19 10:23:44',0),(10364,2526,0,0,3633,'2025-11-19','00:00:00',924,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3993,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 10:20:29','reception','2025-11-19 10:21:04',0),(10365,2526,0,0,3634,'2025-11-19','00:00:00',2632,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3995,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 10:27:34','reception','2025-11-19 10:28:49',0),(10366,2526,0,0,3621,'2025-11-18','10:26:00',0,172,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:28:00','','0000-00-00 00:00:00',0),(10367,2526,0,0,3621,'2025-11-18','10:26:00',0,172,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:28:00','','0000-00-00 00:00:00',0),(10368,2526,0,0,3621,'2025-11-18','10:26:00',0,172,'WPRC','WPRC0106','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:28:00','','0000-00-00 00:00:00',0),(10369,2526,0,0,3621,'2025-11-18','10:26:00',0,172,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:28:00','','0000-00-00 00:00:00',0),(10370,2526,0,0,3621,'2025-11-19','10:27:00',0,172,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:28:00','','0000-00-00 00:00:00',0),(10371,2526,0,0,3621,'2025-11-19','10:27:00',0,172,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:28:00','','0000-00-00 00:00:00',0),(10372,2526,0,0,3621,'2025-11-18','10:27:00',0,172,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:28:00','','0000-00-00 00:00:00',0),(10373,2526,0,0,3621,'2025-11-19','10:27:00',0,172,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:28:00','','0000-00-00 00:00:00',0),(10374,2526,0,0,3621,'2025-11-18','10:28:00',0,172,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,37,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:28:29','riya','2025-11-19 10:28:44',0),(10375,2526,0,0,3635,'2025-11-19','00:00:00',2303,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3996,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 10:29:56','reception','2025-11-19 10:30:15',0),(10376,2526,0,0,3591,'2025-11-18','10:29:00',0,168,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',150,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:30:46','','0000-00-00 00:00:00',0),(10377,2526,0,0,3591,'2025-11-18','10:29:00',0,168,'WPRC','WPRC0080','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',150,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:30:46','','0000-00-00 00:00:00',0),(10378,2526,0,0,3591,'2025-11-19','10:29:00',0,168,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',150,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:30:46','','0000-00-00 00:00:00',0),(10379,2526,0,0,3591,'2025-11-18','10:29:00',0,168,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',150,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:30:46','','0000-00-00 00:00:00',0),(10380,2526,0,0,3591,'2025-11-19','10:30:00',0,168,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',150,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:30:46','','0000-00-00 00:00:00',0),(10381,2526,0,0,3636,'2025-11-19','00:00:00',2633,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',3997,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 10:32:24','urvashi','2025-11-19 10:33:02',0),(10382,2526,0,0,3637,'2025-11-19','10:37:31',1978,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',3998,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-19 10:37:31','janvi','2025-11-19 10:37:31',0),(10383,2526,0,0,3639,'2025-11-19','00:00:00',2634,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',3999,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-19 10:46:24','janvi','2025-11-19 10:47:01',0),(10384,2526,0,0,3640,'2025-11-19','00:00:00',2635,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4000,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 10:48:59','reception','2025-11-19 10:49:18',0),(10385,2526,0,0,3641,'2025-11-19','10:50:00',0,175,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',229,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:51:11','riya','2025-11-20 11:28:16',0),(10386,2526,0,0,3641,'2025-11-19','10:50:00',0,175,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',229,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 10:51:11','riya','2025-11-20 11:28:16',0),(10387,2526,0,0,3641,'2025-11-19','10:50:00',0,175,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',229,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:21:11','riya','2025-11-20 11:28:16',0),(10388,2526,0,0,3641,'2025-11-19','10:50:00',0,175,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',229,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:21:11','riya','2025-11-20 11:28:16',0),(10389,2526,0,0,3641,'2025-11-19','10:50:00',0,175,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',229,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:21:11','riya','2025-11-20 11:28:16',0),(10390,2526,0,0,3641,'2025-11-19','10:50:00',0,175,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','305','','','',2526,'H','I',229,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:21:11','riya','2025-11-20 11:28:16',0),(10391,2526,0,0,3641,'2025-11-19','10:50:00',0,175,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','305','','','',2526,'H','I',229,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:21:11','riya','2025-11-20 11:28:16',0),(10392,2526,0,0,3642,'2025-11-19','00:00:00',2636,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4001,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 10:56:58','urvashi','2025-11-19 10:58:17',0),(10393,2526,0,0,2811,'2025-11-19','01:00:00',0,143,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:57','riya','2025-11-19 13:14:47',0),(10394,2526,0,0,2811,'2025-11-19','01:00:00',0,143,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:57','riya','2025-11-19 13:14:47',0),(10395,2526,0,0,2811,'2025-11-19','01:00:00',0,143,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:57','riya','2025-11-19 13:14:47',0),(10396,2526,0,0,2811,'2025-11-19','01:00:00',0,143,'DRC','DRC0018','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:57','riya','2025-11-20 11:12:56',0),(10397,2526,0,0,2811,'2025-11-19','01:00:00',0,143,'DRC','DRC0019','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','401','','','',2526,'H','I',147,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:57','riya','2025-11-20 11:12:56',0),(10398,2526,0,0,3348,'2025-11-18','13:36:00',0,159,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-19 12:58:57',0),(10399,2526,0,0,3348,'2025-11-18','13:36:00',0,159,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-19 12:58:57',0),(10400,2526,0,0,3348,'2025-11-18','13:36:00',0,159,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','vishal','2025-11-21 15:52:03',0),(10401,2526,0,0,3348,'2025-11-18','13:36:00',0,159,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','vishal','2025-11-21 15:52:03',0),(10402,2526,0,0,3348,'2025-11-18','13:36:00',0,159,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-19 12:58:57',0),(10403,2526,0,0,3468,'2025-11-19','09:00:00',0,161,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',151,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-20 12:17:08',0),(10404,2526,0,0,3468,'2025-11-19','09:00:00',0,161,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',151,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-20 12:17:08',0),(10405,2526,0,0,3468,'2025-11-19','09:00:00',0,161,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',151,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-20 12:17:08',0),(10406,2526,0,0,3468,'2025-11-19','09:00:00',0,161,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','I',151,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-20 12:17:08',0),(10407,2526,0,0,3468,'2025-11-19','09:00:00',0,161,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','I',151,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-20 12:17:08',0),(10408,2526,0,0,3473,'2025-11-18','17:30:00',0,163,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-19 11:24:21',0),(10409,2526,0,0,3473,'2025-11-18','17:30:00',0,163,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-19 11:24:21',0),(10410,2526,0,0,3473,'2025-11-18','17:30:00',0,163,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-19 11:24:21',0);
INSERT INTO `service_request` VALUES (10411,2526,0,0,3473,'2025-11-18','17:30:00',0,163,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','vishal','2025-11-19 21:22:49',0),(10412,2526,0,0,3473,'2025-11-18','17:30:00',0,163,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','vishal','2025-11-19 21:22:49',0),(10413,2526,0,0,3474,'2025-11-18','18:20:00',0,164,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',154,32,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','vishal','2025-11-20 20:32:36',0),(10414,2526,0,0,3474,'2025-11-18','18:20:00',0,164,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',154,30,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-19 13:03:28',0),(10415,2526,0,0,3474,'2025-11-18','18:20:00',0,164,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','406','','','',0,'','',0,31,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','vishal','2025-11-20 20:32:09',0),(10416,2526,0,0,3474,'2025-11-18','18:20:00',0,164,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','406','','','',2526,'H','I',154,32,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-19 13:03:28',0),(10417,2526,0,0,3474,'2025-11-18','18:20:00',0,164,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',154,33,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-19 13:03:28',0),(10418,2526,0,0,3517,'2025-11-18','13:00:00',0,165,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-19 13:38:08',0),(10419,2526,0,0,3517,'2025-11-18','13:00:00',0,165,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-19 13:38:08',0),(10420,2526,0,0,3517,'2025-11-18','13:00:00',0,165,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-19 13:38:08',0),(10421,2526,0,0,3517,'2025-11-18','13:00:00',0,165,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,70,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-20 16:06:09',0),(10422,2526,0,0,3517,'2025-11-18','13:00:00',0,165,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','vishal','2025-11-21 14:52:42',0),(10423,2526,0,0,3553,'2025-11-18','20:15:00',0,166,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-19 14:25:52',0),(10424,2526,0,0,3553,'2025-11-18','20:15:00',0,166,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','D',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-19 14:25:52',0),(10425,2526,0,0,3553,'2025-11-18','20:15:00',0,166,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-19 14:25:52',0),(10426,2526,0,0,3553,'2025-11-18','20:15:00',0,166,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','404','','','',2526,'H','D',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-19 14:25:52',0),(10427,2526,0,0,3553,'2025-11-18','20:15:00',0,166,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','404','','','',2526,'H','D',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:29:58','riya','2025-11-19 14:25:52',0),(10428,2526,0,0,3643,'2025-11-19','00:00:00',2257,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 11:00:34','urvashi','2025-11-18 22:30:34',0),(10429,2526,0,0,3644,'2025-11-19','00:00:00',2637,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',4002,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 11:01:48','urvashi','2025-11-19 11:03:29',0),(10430,2526,0,0,3645,'2025-11-19','00:00:00',2638,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4003,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 11:03:01','reception','2025-11-19 11:03:39',0),(10431,2526,0,0,3646,'2025-11-19','00:00:00',278,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4004,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 11:03:57','reception','2025-11-19 11:04:18',0),(10432,2526,0,0,3647,'2025-11-19','00:00:00',2122,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4005,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 11:04:51','reception','2025-11-19 11:05:20',0),(10433,2526,0,0,3648,'2025-11-19','00:00:00',2639,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4006,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 11:05:15','urvashi','2025-11-19 11:05:44',0),(10434,2526,0,0,3626,'2025-11-19','11:07:53',2628,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4007,1,287,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 11:07:53','reception','2025-11-19 11:07:53',0),(10435,2526,0,0,3626,'2025-11-19','11:07:53',2628,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4007,2,287,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 11:07:53','reception','2025-11-19 11:07:53',0),(10436,2526,0,0,3626,'2025-11-19','11:07:53',2628,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4007,3,326,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 11:07:53','reception','2025-11-19 11:07:53',0),(10437,2526,0,0,3649,'2025-11-19','00:00:00',2640,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4008,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 11:10:55','urvashi','2025-11-19 11:11:42',0),(10438,2526,0,0,3566,'2025-11-19','11:00:00',0,167,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',152,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:47:21','riya','2025-11-20 14:25:20',0),(10439,2526,0,0,3566,'2025-11-19','11:00:00',0,167,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',152,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:47:21','riya','2025-11-20 14:08:32',0),(10440,2526,0,0,3566,'2025-11-19','11:00:00',0,167,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',152,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:47:21','riya','2025-11-20 14:25:20',0),(10441,2526,0,0,3566,'2025-11-19','11:00:00',0,167,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',152,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:47:21','riya','2025-11-20 14:08:32',0),(10442,2526,0,0,3566,'2025-11-19','11:00:00',0,167,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','410','','','',2526,'H','I',152,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-18 22:47:21','riya','2025-11-20 14:34:13',0),(10443,2526,0,0,3625,'2025-11-19','11:18:26',2627,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4009,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 11:18:26','reception','2025-11-19 11:18:26',0),(10444,2526,0,0,3625,'2025-11-19','11:18:26',2627,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4009,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 11:18:26','reception','2025-11-19 11:18:26',0),(10445,2526,0,0,3625,'2025-11-19','11:18:26',2627,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4009,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 11:18:26','reception','2025-11-19 11:18:26',0),(10446,2526,0,0,3650,'2025-11-19','00:00:00',395,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4010,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 11:22:47','reception','2025-11-19 11:22:59',0),(10447,2526,0,0,3473,'2025-11-19','11:23:00',0,163,'SURG','SURG0014','H','N',1.00,60000,60000,'P',0,0,0.00,0.00,60000.00,60000,188,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 11:24:21','','0000-00-00 00:00:00',0),(10448,2526,0,0,3473,'2025-11-19','11:23:00',0,163,'SURG','SURG0015','H','N',1.00,15000,15000,'P',0,0,0.00,0.00,15000.00,15000,4,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 11:24:21','','0000-00-00 00:00:00',0),(10449,2526,0,0,3651,'2025-11-19','00:00:00',2641,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4011,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 11:24:35','urvashi','2025-11-19 11:24:53',0),(10450,2526,0,0,3622,'2025-11-19','11:26:49',2625,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',4012,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 11:26:49','manshi','2025-11-19 11:26:49',0),(10451,2526,0,0,3622,'2025-11-19','11:26:49',2625,0,'XRY','XRY0308','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',4012,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 11:26:49','manshi','2025-11-19 11:26:49',0),(10452,2526,0,0,3622,'2025-11-19','11:26:49',2625,0,'XRY','XRY0356','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',4012,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 11:26:49','manshi','2025-11-19 11:26:49',0),(10453,2526,0,0,3622,'2025-11-19','11:26:49',2625,0,'OPWD','OPWD0023','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4012,5,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 11:26:49','manshi','2025-11-19 11:26:49',0),(10454,2526,0,0,3652,'2025-11-19','00:00:00',2642,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4013,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 11:28:59','reception','2025-11-19 11:30:02',0),(10455,2526,0,0,3653,'2025-11-19','00:00:00',2643,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4014,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-19 11:29:24','janvi','2025-11-19 11:30:19',0),(10456,2526,0,0,3654,'2025-11-19','00:00:00',2644,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 11:30:24','manshi','2025-11-18 23:00:24',0),(10457,2526,0,0,3655,'2025-11-19','00:00:00',15,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4015,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 11:31:32','reception','2025-11-19 11:32:04',0),(10458,2526,0,0,3656,'2025-11-19','00:00:00',1985,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4016,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 11:31:44','manshi','2025-11-19 11:33:06',0),(10459,2526,0,0,3657,'2025-11-19','00:00:00',1584,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4017,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-19 11:33:41','janvi','2025-11-19 11:35:27',0),(10460,2526,0,0,3635,'2025-11-19','11:36:08',2303,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4018,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 11:36:08','reception','2025-11-19 11:36:08',0),(10461,2526,0,0,3658,'2025-11-19','00:00:00',2645,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4019,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 11:39:07','manshi','2025-11-19 11:41:16',0),(10462,2526,0,0,3659,'2025-11-19','00:00:00',2646,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4020,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 11:44:14','urvashi','2025-11-19 11:45:27',0),(10463,2526,0,0,3660,'2025-11-19','00:00:00',2647,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4021,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 11:49:50','urvashi','2025-11-19 11:50:46',0),(10464,2526,0,0,3661,'2025-11-19','00:00:00',2648,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4022,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 11:51:33','urvashi','2025-11-19 11:52:43',0),(10465,2526,0,0,3662,'2025-11-19','00:00:00',1274,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4023,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 11:53:34','urvashi','2025-11-19 11:54:31',0),(10466,2526,0,0,3663,'2025-11-19','00:00:00',2649,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4024,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 11:53:37','reception','2025-11-19 11:55:10',0),(10467,2526,0,0,3664,'2025-11-19','00:00:00',2650,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4026,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 11:56:18','reception','2025-11-19 11:56:55',0),(10468,2526,0,0,3658,'2025-11-19','11:56:21',2645,0,'XRY','XRY0018','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,0.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4025,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 11:56:21','manshi','2025-11-19 11:56:21',0),(10469,2526,0,0,3665,'2025-11-19','00:00:00',2651,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4027,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 11:59:28','reception','2025-11-19 12:00:49',0),(10470,2526,0,0,3666,'2025-11-19','00:00:00',2652,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4028,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-19 12:00:55','janvi','2025-11-19 12:01:40',0),(10471,2526,0,0,3648,'2025-11-19','12:02:55',2639,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4029,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 12:02:55','reception','2025-11-19 12:02:55',0),(10472,2526,0,0,3648,'2025-11-19','12:02:55',2639,0,'NEU1','NEU10018','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,0.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4029,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 12:02:55','reception','2025-11-19 12:02:55',0),(10473,2526,0,0,3648,'2025-11-19','12:02:55',2639,0,'NEU1','NEU10017','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4029,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 12:02:55','reception','2025-11-19 12:02:55',0),(10474,2526,0,0,3667,'2025-11-19','00:00:00',2653,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4030,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 12:03:39','manshi','2025-11-19 12:04:42',0),(10475,2526,0,0,3668,'2025-11-19','00:00:00',2654,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',4031,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 12:04:19','reception','2025-11-19 12:53:21',0),(10476,2526,0,0,3669,'2025-11-19','00:00:00',2655,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 12:07:31','manshi','2025-11-18 23:37:31',0),(10477,2526,0,0,3670,'2025-11-19','00:00:00',2165,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 12:09:19','urvashi','2025-11-18 23:39:19',0),(10478,2526,0,0,3671,'2025-11-19','00:00:00',2656,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4032,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 12:09:31','reception','2025-11-19 12:09:51',0),(10479,2526,0,0,3667,'2025-11-19','12:10:53',2653,0,'XRY','XRY0223','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',4033,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 12:10:53','manshi','2025-11-19 12:10:53',0),(10480,2526,0,0,3672,'2025-11-19','00:00:00',2657,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4034,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 12:11:32','reception','2025-11-19 12:12:13',0),(10481,2526,0,0,3673,'2025-11-19','00:00:00',1190,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4035,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 12:12:55','reception','2025-11-19 12:13:11',0),(10482,2526,0,0,3674,'2025-11-19','00:00:00',508,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 12:13:56','urvashi','2025-11-18 23:43:56',0),(10483,2526,0,0,3595,'2025-11-18','12:22:00',0,170,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',156,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 12:23:39','vishal','2025-11-21 11:45:46',0),(10484,2526,0,0,3595,'2025-11-18','12:22:00',0,170,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',156,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 12:23:39','vishal','2025-11-21 11:45:46',0),(10485,2526,0,0,3595,'2025-11-19','12:22:00',0,170,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',156,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 12:23:39','vishal','2025-11-21 11:45:46',0),(10486,2526,0,0,3594,'2025-11-18','12:24:00',0,169,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',148,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 12:25:23','','0000-00-00 00:00:00',0),(10487,2526,0,0,3594,'2025-11-18','12:24:00',0,169,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',148,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 12:25:23','','0000-00-00 00:00:00',0),(10488,2526,0,0,3594,'2025-11-19','12:25:00',0,169,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',148,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 12:25:23','','0000-00-00 00:00:00',0),(10489,2526,0,0,3675,'2025-11-19','00:00:00',2351,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 12:26:15','manshi','2025-11-18 23:56:15',0),(10490,2526,0,0,3676,'2025-11-19','00:00:00',2658,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4037,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 12:29:47','reception','2025-11-19 12:34:55',0),(10491,2526,0,0,3677,'2025-11-19','00:00:00',2659,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4036,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-19 12:30:45','janvi','2025-11-19 12:31:06',0),(10492,2526,0,0,3678,'2025-11-19','00:00:00',1454,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4038,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 12:34:00','urvashi','2025-11-19 12:35:20',0),(10493,2526,0,0,3679,'2025-11-19','00:00:00',2660,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4039,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 12:39:49','reception','2025-11-19 13:58:13',0),(10494,2526,0,0,3680,'2025-11-19','00:00:00',1125,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4040,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 12:43:38','manshi','2025-11-19 12:43:59',0),(10495,2526,0,0,3664,'2025-11-19','12:47:13',2650,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4041,1,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 12:47:13','reception','2025-11-19 12:47:13',0),(10496,2526,0,0,3664,'2025-11-19','12:47:13',2650,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4041,2,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 12:47:13','reception','2025-11-19 12:47:13',0),(10497,2526,0,0,3664,'2025-11-19','12:47:13',2650,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4041,3,471,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 12:47:13','reception','2025-11-19 12:47:13',0),(10498,2526,0,0,3681,'2025-11-19','00:00:00',2661,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4051,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 12:48:26','urvashi','2025-11-19 13:51:18',0),(10499,2526,0,0,3682,'2025-11-19','00:00:00',602,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4042,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 12:49:40','reception','2025-11-19 12:49:59',0),(10500,2526,0,0,3668,'2025-11-19','12:54:53',2654,0,'PKG','CASE','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',4044,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 12:54:53','reception','2025-11-19 12:54:53',0),(10501,2526,0,0,3348,'2025-11-19','12:57:00',0,159,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 12:58:57','','0000-00-00 00:00:00',0),(10502,2526,0,0,3348,'2025-11-19','12:57:00',0,159,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 12:58:57','','0000-00-00 00:00:00',0),(10503,2526,0,0,3348,'2025-11-18','12:58:00',0,159,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,37,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 12:58:57','','0000-00-00 00:00:00',0),(10504,2526,0,0,3683,'2025-11-19','00:00:00',1307,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-19 12:59:34','janvi','2025-11-19 00:29:34',0),(10505,2526,0,0,3684,'2025-11-19','00:00:00',2662,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-19 13:01:59','janvi','2025-11-19 00:31:59',0),(10506,2526,0,0,3474,'2025-11-19','13:00:00',0,164,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,34,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 13:03:28','','0000-00-00 00:00:00',0),(10507,2526,0,0,3474,'2025-11-19','13:00:00',0,164,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,35,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 13:03:28','','0000-00-00 00:00:00',0),(10508,2526,0,0,3474,'2025-11-19','13:02:00',0,164,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,35,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 13:03:28','vishal','2025-11-20 20:32:36',0),(10509,2526,0,0,3685,'2025-11-19','00:00:00',931,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4049,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 13:05:27','urvashi','2025-11-19 13:32:04',0),(10510,2526,0,0,3662,'2025-11-19','13:09:05',1274,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4045,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 13:09:05','urvashi','2025-11-19 13:09:05',0),(10511,2526,0,0,3683,'2025-11-19','13:14:13',1307,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4046,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-19 13:14:13','janvi','2025-11-19 13:14:13',0),(10512,2526,0,0,3672,'2025-11-19','13:14:22',2657,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4047,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 13:14:22','reception','2025-11-19 13:14:22',0),(10513,2526,0,0,3672,'2025-11-19','13:14:22',2657,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4047,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 13:14:22','reception','2025-11-19 13:14:22',0),(10514,2526,0,0,3517,'2025-11-19','13:00:00',0,165,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',0,'','',0,14,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 00:45:53','riya','2025-11-20 16:06:09',0),(10515,2526,0,0,3517,'2025-11-19','13:00:00',0,165,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',0,'','',0,15,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 00:45:53','riya','2025-11-20 16:06:09',0),(10516,2526,0,0,3517,'2025-11-19','13:00:00',0,165,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',0,'','',0,16,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 00:45:53','riya','2025-11-20 16:06:09',0),(10517,2526,0,0,3517,'2025-11-19','13:00:00',0,165,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,70,0,0,'',0,0,'','402','','','',0,'','',0,16,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 00:45:53','vishal','2025-11-20 18:06:47',0),(10518,2526,0,0,3517,'2025-11-19','13:00:00',0,165,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 00:45:53','vishal','2025-11-21 14:52:42',0),(10519,2526,0,0,3591,'2025-11-19','13:00:00',0,168,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',150,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 00:45:53','riya','2025-11-20 12:37:18',0),(10520,2526,0,0,3591,'2025-11-19','13:00:00',0,168,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',150,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 00:45:53','riya','2025-11-20 12:37:18',0),(10521,2526,0,0,3591,'2025-11-19','13:00:00',0,168,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 00:45:53','riya','2025-11-20 12:38:09',0),(10522,2526,0,0,3591,'2025-11-19','13:00:00',0,168,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',2526,'H','I',150,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 00:45:53','riya','2025-11-20 12:37:18',0),(10523,2526,0,0,3591,'2025-11-19','13:00:00',0,168,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',150,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 00:45:53','riya','2025-11-20 12:37:18',0),(10524,2526,0,0,3594,'2025-11-19','13:15:00',0,169,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','310','','','',2526,'H','I',148,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 00:45:53','riya','2025-11-20 12:12:22',0),(10525,2526,0,0,3594,'2025-11-19','13:15:00',0,169,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','310','','','',2526,'H','I',148,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 00:45:53','riya','2025-11-20 12:12:22',0),(10526,2526,0,0,3594,'2025-11-19','13:15:00',0,169,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','310','','','',2526,'H','I',148,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 00:45:53','riya','2025-11-20 12:12:22',0),(10527,2526,0,0,3594,'2025-11-19','13:15:00',0,169,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','310','','','',2526,'H','I',148,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 00:45:53','riya','2025-11-20 12:12:22',0),(10528,2526,0,0,3594,'2025-11-19','13:15:00',0,169,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','310','','','',2526,'H','I',148,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 00:45:53','riya','2025-11-20 12:12:22',0),(10529,2526,0,0,3684,'2025-11-19','13:18:58',2662,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4048,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-19 13:18:58','janvi','2025-11-19 13:18:58',0),(10530,2526,0,0,3642,'2025-11-19','13:33:16',2636,0,'OPWD','OPWD0034','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,4,0,0,'',0,0,'','','','','',2526,'H','O',4050,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 13:33:16','urvashi','2025-11-19 13:33:16',0),(10531,2526,0,0,3642,'2025-11-19','13:33:16',2636,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4050,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 13:33:16','urvashi','2025-11-19 13:33:16',0),(10532,2526,0,0,3517,'2025-11-19','13:35:00',0,165,'SURG','SURG0014','H','N',1.00,50000,50000,'P',0,0,0.00,0.00,50000.00,50000,70,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 13:38:08','riya','2025-11-19 14:10:12',0),(10533,2526,0,0,3517,'2025-11-19','13:36:00',0,165,'SURG','SURG0017','H','N',1.00,50000,50000,'P',0,0,0.00,0.00,50000.00,50000,3,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 13:38:08','vishal','2025-11-20 18:00:56',0),(10534,2526,0,0,3517,'2025-11-19','13:37:00',0,165,'SURG','SURG0015','H','N',1.00,25000,25000,'P',0,0,0.00,0.00,25000.00,25000,70,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 13:38:08','riya','2025-11-19 14:10:12',0),(10535,2526,0,0,3680,'2025-11-19','13:56:00',1125,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',4052,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 13:56:00','urvashi','2025-11-19 13:56:00',0),(10536,2526,0,0,3679,'2025-11-19','14:00:04',2660,0,'PKG','CASE','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4054,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 14:00:04','reception','2025-11-19 14:00:04',0),(10537,2526,0,0,3553,'2025-11-17','14:24:00',0,166,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','D',163,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 14:25:52','','0000-00-00 00:00:00',0),(10538,2526,0,0,3553,'2025-11-19','14:25:00',0,166,'ROOM','ROOM0005','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 14:25:52','vishal','2025-11-19 16:56:49',0),(10539,2526,0,0,3553,'2025-11-19','14:25:00',0,166,'ROOM','ROOM0006','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 14:25:52','vishal','2025-11-19 16:56:49',0),(10540,2526,0,0,3669,'2025-11-19','14:51:18',2655,0,'OPWD','OPWD0023','H','N',1.00,7000,7000,'P',0,0,0.00,0.00,0.00,7000,7,0,0,'',0,0,'','','','','',2526,'H','O',4055,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-19 14:51:18','shweta','2025-11-19 14:51:18',0),(10541,2526,0,0,3675,'2025-11-19','14:52:15',2351,0,'OPWD','OPWD0023','H','N',1.00,7000,7000,'P',0,0,0.00,0.00,0.00,7000,7,0,0,'',0,0,'','','','','',2526,'H','O',4056,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-19 14:52:15','shweta','2025-11-19 14:52:15',0),(10542,2526,0,0,3686,'2025-11-19','00:00:00',1326,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4057,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 15:54:33','reception','2025-11-19 15:55:16',0),(10543,2526,0,0,3687,'2025-11-19','16:36:50',1133,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4058,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-19 16:36:50','shweta','2025-11-19 16:36:50',0),(10544,2526,0,0,3688,'2025-11-19','00:00:00',2663,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 16:39:07','reception','2025-11-19 04:09:07',0),(10545,2526,0,0,3689,'2025-11-19','00:00:00',2664,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 16:40:56','reception','2025-11-19 04:10:56',0),(10546,2526,0,0,3690,'2025-11-19','00:00:00',2665,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 16:42:10','reception','2025-11-19 04:12:10',0),(10547,2526,0,0,3691,'2025-11-19','00:00:00',83,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 16:50:28','reception','2025-11-19 04:20:28',0),(10548,2526,0,0,3692,'2025-11-19','00:00:00',2666,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 16:54:00','reception','2025-11-19 04:24:00',0),(10549,2526,0,0,3553,'2025-11-19','16:56:00',0,166,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','D',163,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 16:56:49','','0000-00-00 00:00:00',0),(10550,2526,0,0,3553,'2025-11-19','16:56:00',0,166,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','D',163,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 16:56:49','','0000-00-00 00:00:00',0),(10551,2526,0,0,3693,'2025-11-19','00:00:00',2667,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4059,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 16:57:59','reception','2025-11-19 16:58:19',0),(10552,2526,0,0,3694,'2025-11-19','00:00:00',1555,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4060,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 17:08:33','reception','2025-11-19 17:19:49',0),(10553,2526,0,0,3695,'2025-11-19','00:00:00',1734,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4061,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 17:11:07','reception','2025-11-19 17:12:20',0),(10554,2526,0,0,3695,'2025-11-19','17:12:20',1734,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4061,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 17:12:20','reception','2025-11-19 17:12:20',0),(10555,2526,0,0,3696,'2025-11-19','17:16:08',2533,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4062,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 17:16:08','reception','2025-11-19 17:16:08',0),(10556,2526,0,0,3697,'2025-11-19','00:00:00',2668,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4063,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 17:17:07','reception','2025-11-19 17:17:50',0),(10557,2526,0,0,3699,'2025-11-19','00:00:00',2669,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',4065,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 17:21:35','reception','2025-11-19 17:21:55',0),(10558,2526,0,0,3700,'2025-11-19','00:00:00',1652,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4066,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 17:22:30','reception','2025-11-19 17:23:06',0),(10559,2526,0,0,3701,'2025-11-19','00:00:00',2670,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4067,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 17:25:03','reception','2025-11-19 17:25:48',0),(10560,2526,0,0,3702,'2025-11-19','00:00:00',2671,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4069,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 17:25:13','drashti','2025-11-19 17:27:29',0),(10561,2526,0,0,3694,'2025-11-19','17:27:07',1555,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4068,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 17:27:07','reception','2025-11-19 17:27:07',0),(10562,2526,0,0,3704,'2025-11-19','00:00:00',2672,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4072,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-19 17:30:43','urvashi','2025-11-19 17:32:51',0),(10563,2526,0,0,3703,'2025-11-19','17:30:48',2577,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4070,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 17:30:48','reception','2025-11-19 17:30:48',0),(10564,2526,0,0,3703,'2025-11-19','17:30:48',2577,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4070,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 17:30:48','reception','2025-11-19 17:30:48',0),(10565,2526,0,0,3703,'2025-11-19','17:30:48',2577,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4070,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 17:30:48','reception','2025-11-19 17:30:48',0),(10566,2526,0,0,3705,'2025-11-19','00:00:00',2310,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4071,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 17:30:55','drashti','2025-11-19 17:31:47',0),(10567,2526,0,0,3706,'2025-11-19','00:00:00',2673,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4073,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 17:33:37','drashti','2025-11-19 17:35:16',0),(10568,2526,0,0,3707,'2025-11-19','00:00:00',2674,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4076,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 17:36:41','urvashi','2025-11-19 17:40:35',0),(10569,2526,0,0,3708,'2025-11-19','00:00:00',2675,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4074,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 17:37:31','drashti','2025-11-19 17:38:41',0),(10570,2526,0,0,3709,'2025-11-19','00:00:00',2015,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4075,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 17:38:28','reception','2025-11-19 17:40:09',0),(10571,2526,0,0,3710,'2025-11-19','00:00:00',2676,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4077,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 17:43:05','drashti','2025-11-19 17:43:52',0),(10572,2526,0,0,3711,'2025-11-19','00:00:00',2677,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4078,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 17:43:23','reception','2025-11-19 17:44:29',0),(10573,2526,0,0,2879,'2025-11-19','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 05:14:37','riya','2025-12-01 19:41:30',0),(10574,2526,0,0,2879,'2025-11-19','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 05:14:37','riya','2025-12-01 19:41:30',0),(10575,2526,0,0,2879,'2025-11-19','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 05:14:37','riya','2025-12-01 19:41:30',0),(10576,2526,0,0,2879,'2025-11-19','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 05:14:37','vishal','2025-11-30 20:00:04',0),(10577,2526,0,0,2879,'2025-11-19','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 05:14:37','riya','2025-12-01 19:41:30',0),(10578,2526,0,0,3713,'2025-11-19','00:00:00',2678,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4080,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 17:49:45','reception','2025-11-19 17:52:26',0),(10579,2526,0,0,3715,'2025-11-19','00:00:00',362,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4081,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 17:53:17','reception','2025-11-19 17:53:31',0),(10580,2526,0,0,3716,'2025-11-19','00:00:00',2679,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4083,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 17:55:12','drashti','2025-11-19 17:56:17',0),(10581,2526,0,0,3717,'2025-11-19','00:00:00',2680,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4082,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 17:55:27','reception','2025-11-19 17:55:55',0),(10582,2526,0,0,3719,'2025-11-19','00:00:00',2681,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4086,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 17:56:58','urvashi','2025-11-19 17:58:01',0),(10583,2526,0,0,3718,'2025-11-19','17:57:23',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4084,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 17:57:23','drashti','2025-11-19 17:57:23',0),(10584,2526,0,0,3720,'2025-11-19','00:00:00',2682,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4085,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 17:57:26','manshi','2025-11-19 17:57:59',0),(10585,2526,0,0,3721,'2025-11-19','00:00:00',2683,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4087,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 17:58:43','urvashi','2025-11-19 17:59:09',0),(10586,2526,0,0,3720,'2025-11-19','18:00:39',2682,0,'XRY','XRY0235','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',4088,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 18:00:39','manshi','2025-11-19 18:00:39',0),(10587,2526,0,0,3722,'2025-11-19','00:00:00',1959,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 18:01:28','manshi','2025-11-19 05:31:28',0),(10588,2526,0,0,3723,'2025-11-19','00:00:00',634,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4090,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 18:01:53','urvashi','2025-11-19 18:03:32',0),(10589,2526,0,0,3724,'2025-11-19','00:00:00',2684,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4089,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 18:02:26','drashti','2025-11-19 18:03:30',0),(10590,2526,0,0,3725,'2025-11-19','00:00:00',2685,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4091,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 18:04:10','drashti','2025-11-19 19:33:12',0),(10591,2526,0,0,3713,'2025-11-19','18:06:29',2678,0,'NEU1','NEU10017','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4092,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 18:06:29','reception','2025-11-19 18:06:29',0),(10592,2526,0,0,3726,'2025-11-19','00:00:00',2686,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4093,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 18:09:25','drashti','2025-11-19 18:10:32',0),(10593,2526,0,0,3726,'2025-11-19','18:10:32',2686,0,'ENTP','ENTP0001','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4093,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 18:10:32','drashti','2025-11-19 18:10:32',0),(10594,2526,0,0,3722,'2025-11-19','18:11:02',1959,0,'XRY','XRY0052','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',4094,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 18:11:02','manshi','2025-11-19 18:11:02',0),(10595,2526,0,0,3727,'2025-11-19','00:00:00',2687,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4095,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 18:11:50','drashti','2025-11-19 18:13:04',0),(10596,2526,0,0,3698,'2025-11-19','18:13:08',2569,0,'MOPR','MOPR0006','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4096,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 18:13:08','urvashi','2025-11-19 18:13:41',0),(10597,2526,0,0,3698,'2025-11-19','18:14:41',2569,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4098,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 18:14:41','urvashi','2025-11-19 18:14:41',0),(10598,2526,0,0,3728,'2025-11-19','18:15:57',2144,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4099,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 18:15:57','manshi','2025-11-19 18:15:57',0),(10599,2526,0,0,3729,'2025-11-19','00:00:00',2688,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4100,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 18:16:47','drashti','2025-11-19 18:17:36',0),(10600,2526,0,0,3730,'2025-11-19','00:00:00',2095,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 18:20:07','urvashi','2025-11-19 05:50:07',0),(10601,2526,0,0,3730,'2025-11-19','18:20:40',2095,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4101,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 18:20:40','urvashi','2025-11-19 18:20:40',0),(10602,2526,0,0,3731,'2025-11-19','00:00:00',2689,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4102,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 18:22:41','drashti','2025-11-19 18:23:07',0),(10603,2526,0,0,3732,'2025-11-19','00:00:00',2690,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4103,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 18:26:17','drashti','2025-11-19 18:27:10',0),(10604,2526,0,0,3733,'2025-11-19','00:00:00',2196,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4105,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 18:27:24','urvashi','2025-11-19 18:28:49',0),(10605,2526,0,0,3734,'2025-11-19','00:00:00',1953,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4104,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 18:28:15','reception','2025-11-19 18:28:26',0),(10606,2526,0,0,3735,'2025-11-19','00:00:00',2691,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4106,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 18:28:54','drashti','2025-11-19 18:29:37',0),(10607,2526,0,0,3736,'2025-11-19','00:00:00',140,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 18:29:29','urvashi','2025-11-19 05:59:29',0),(10608,2526,0,0,3737,'2025-11-19','00:00:00',1521,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 18:30:14','reception','2025-11-19 06:00:14',0),(10609,2526,0,0,3738,'2025-11-19','00:00:00',2692,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4108,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 18:32:16','drashti','2025-11-19 18:33:12',0),(10610,2526,0,0,3737,'2025-11-19','18:32:45',1521,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4107,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 18:32:45','reception','2025-11-19 18:32:45',0),(10611,2526,0,0,3712,'2025-11-19','18:33:31',525,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4109,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 18:33:31','urvashi','2025-11-19 18:33:31',0),(10612,2526,0,0,3739,'2025-11-19','00:00:00',982,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4110,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 18:36:30','reception','2025-11-19 18:40:30',0),(10613,2526,0,0,3740,'2025-11-19','00:00:00',2693,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4111,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 18:42:20','reception','2025-11-19 19:18:37',0),(10614,2526,0,0,3741,'2025-11-19','18:45:17',2145,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',4112,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 18:45:17','drashti','2025-11-19 18:45:17',0),(10615,2526,0,0,3743,'2025-11-19','00:00:00',2694,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4113,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 18:47:43','drashti','2025-11-19 18:48:13',0),(10616,2526,0,0,3744,'2025-11-19','00:00:00',2695,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4114,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 18:48:52','urvashi','2025-11-19 18:50:41',0),(10617,2526,0,0,3745,'2025-11-19','00:00:00',2696,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4115,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 18:54:31','drashti','2025-11-19 18:55:24',0),(10618,2526,0,0,3746,'2025-11-19','00:00:00',2697,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4117,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 18:56:32','drashti','2025-11-19 18:57:02',0),(10619,2526,0,0,3714,'2025-11-19','18:56:50',957,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4116,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 18:56:50','urvashi','2025-11-19 18:56:50',0),(10620,2526,0,0,3747,'2025-11-19','00:00:00',2698,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 18:58:50','drashti','2025-11-19 06:28:50',0),(10621,2526,0,0,3748,'2025-11-19','00:00:00',2699,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4118,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 19:00:25','urvashi','2025-11-19 19:01:24',0),(10622,2526,0,0,3749,'2025-11-19','00:00:00',2700,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4119,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 19:01:14','drashti','2025-11-19 19:02:10',0),(10623,2526,0,0,3720,'2025-11-19','19:02:34',2682,0,'WPRC','WPRC0037','H','N',4.00,100,400,'P',0,0,0.00,0.00,0.00,400,6,0,0,'',0,0,'','','','','',2526,'H','O',4120,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 19:02:34','manshi','2025-11-19 19:02:34',0),(10624,2526,0,0,3720,'2025-11-19','19:02:34',2682,0,'WPRC','WPRC0050','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,6,0,0,'',0,0,'','','','','',2526,'H','O',4120,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 19:02:34','manshi','2025-11-19 19:02:34',0),(10625,2526,0,0,3750,'2025-11-19','00:00:00',2701,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',4121,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 19:05:51','manshi','2025-11-19 19:13:38',0),(10626,2526,0,0,3751,'2025-11-19','00:00:00',2702,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4122,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 19:15:38','drashti','2025-11-19 19:17:18',0),(10627,2526,0,0,3740,'2025-11-19','19:19:36',2693,0,'PKG','CASE','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4124,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-19 19:19:36','reception','2025-11-19 19:19:36',0),(10628,2526,0,0,3752,'2025-11-19','00:00:00',1860,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4126,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 19:26:27','drashti','2025-11-19 19:28:35',0),(10629,2526,0,0,3750,'2025-11-19','19:27:10',2701,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,7,0,0,'',0,0,'','','','','',2526,'H','O',4125,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-19 19:27:10','manshi','2025-11-19 19:27:10',0),(10630,2526,0,0,3725,'2025-11-19','19:35:10',2685,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4128,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 19:35:10','drashti','2025-11-19 19:35:10',0),(10631,2526,0,0,3753,'2025-11-19','00:00:00',2703,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 19:49:05','drashti','2025-11-19 07:19:05',0),(10632,2526,0,0,3753,'2025-11-19','19:50:38',2703,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',4129,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 19:50:38','drashti','2025-11-19 19:50:38',0),(10633,2526,0,0,3754,'2025-11-19','00:00:00',2704,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4130,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-19 19:51:55','drashti','2025-11-19 19:52:34',0),(10634,2526,0,0,3578,'2025-11-19','20:14:10',2290,0,'OPWD','OPWD0023','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,3,0,0,'',0,0,'','','','','',2526,'H','O',4131,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-19 20:14:10','urvashi','2025-11-19 20:14:10',0),(10635,2526,0,0,3473,'2025-11-19','17:30:00',0,163,'ROOM','ROOM0009','H','N',0.50,3200,1600,'A',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 08:49:25','vishal','2025-11-19 21:20:39',0),(10636,2526,0,0,3473,'2025-11-19','17:30:00',0,163,'AECO','AECO0008','H','N',0.50,400,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 08:49:25','vishal','2025-11-19 21:20:39',0),(10637,2526,0,0,3473,'2025-11-19','17:30:00',0,163,'CARE','CARE0001','H','N',0.50,200,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 08:49:25','vishal','2025-11-19 21:20:39',0),(10638,2526,0,0,3473,'2025-11-19','17:30:00',0,163,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,25,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 08:49:25','vishal','2025-11-19 21:22:49',0),(10639,2526,0,0,3473,'2025-11-19','17:30:00',0,163,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,26,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 08:49:25','vishal','2025-11-19 21:22:49',0),(10640,2526,0,0,3473,'2025-11-19','21:19:00',0,163,'CARE','CARE0003','H','N',0.50,600,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 21:20:39','','0000-00-00 00:00:00',0),(10641,2526,0,0,3473,'2025-11-19','21:20:00',0,163,'CARE','CARE0004','H','N',0.50,800,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 21:20:39','','0000-00-00 00:00:00',0),(10642,2526,0,0,3473,'2025-11-19','21:20:00',0,163,'ROOM','ROOM0009','H','N',0.50,5500,2750,'P',0,0,0.00,0.00,2750.00,2750,9999,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 21:20:39','','0000-00-00 00:00:00',0),(10643,2526,0,0,3473,'2025-11-19','21:21:00',0,163,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 21:22:49','','0000-00-00 00:00:00',0),(10644,2526,0,0,3473,'2025-11-19','21:21:00',0,163,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 21:22:49','','0000-00-00 00:00:00',0),(10645,2526,0,0,3473,'2025-11-18','21:22:00',0,163,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,188,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 21:22:49','','0000-00-00 00:00:00',0),(10646,2526,0,0,3473,'2025-11-18','21:23:00',0,163,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 21:24:51','','0000-00-00 00:00:00',0),(10647,2526,0,0,3473,'2025-11-19','21:23:00',0,163,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 21:24:51','','0000-00-00 00:00:00',0),(10648,2526,0,0,3473,'2025-11-19','21:24:00',0,163,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 21:24:51','','0000-00-00 00:00:00',0),(10649,2526,0,0,3473,'2025-11-19','21:24:00',0,163,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-19 21:24:51','','0000-00-00 00:00:00',0),(10650,2526,0,0,3756,'2025-11-20','00:00:00',2705,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 08:46:52','reception','2025-11-19 20:16:52',0),(10651,2526,0,0,3756,'2025-11-20','08:49:21',2705,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',4132,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 08:49:21','reception','2025-11-20 08:49:21',0),(10652,2526,0,0,3756,'2025-11-20','08:49:21',2705,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4132,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 08:49:21','reception','2025-11-20 08:49:21',0),(10653,2526,0,0,3757,'2025-11-20','00:00:00',2706,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4133,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 09:24:14','reception','2025-11-20 09:25:08',0),(10654,2526,0,0,3758,'2025-11-20','00:00:00',1243,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 09:25:48','drashti','2025-11-19 20:55:48',0),(10655,2526,0,0,3758,'2025-11-20','09:28:01',1243,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',4134,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 09:28:01','drashti','2025-11-20 09:28:01',0),(10656,2526,0,0,3758,'2025-11-20','09:28:01',1243,0,'OPWD','OPWD0019','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4134,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 09:28:01','drashti','2025-11-20 09:28:01',0),(10657,2526,0,0,3758,'2025-11-20','09:28:01',1243,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',4134,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 09:28:01','drashti','2025-11-20 09:28:01',0),(10658,2526,0,0,3759,'2025-11-20','09:30:00',0,176,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',153,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 09:33:43','vishal','2025-11-20 17:04:09',0),(10659,2526,0,0,3759,'2025-11-20','09:30:00',0,176,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',153,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 09:33:43','vishal','2025-11-20 17:04:09',0),(10660,2526,0,0,3759,'2025-11-20','09:30:00',0,176,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 21:03:43','vishal','2025-11-20 19:13:15',0),(10661,2526,0,0,3759,'2025-11-20','09:30:00',0,176,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 21:03:43','vishal','2025-11-20 19:13:15',0),(10662,2526,0,0,3759,'2025-11-20','09:30:00',0,176,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 21:03:43','vishal','2025-11-20 19:13:15',0),(10663,2526,0,0,3759,'2025-11-20','09:30:00',0,176,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','409','','','',2526,'H','I',153,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 21:03:43','vishal','2025-11-20 17:04:09',0),(10664,2526,0,0,3759,'2025-11-20','09:30:00',0,176,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','409','','','',2526,'H','I',153,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 21:03:43','vishal','2025-11-20 17:04:09',0),(10665,2526,0,0,3760,'2025-11-20','00:00:00',2707,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4161,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 09:34:49','drashti','2025-11-20 11:16:47',0),(10666,2526,0,0,3761,'2025-11-20','00:00:00',2708,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 09:44:14','drashti','2025-11-19 21:14:14',0),(10667,2526,0,0,3761,'2025-11-20','09:45:49',2708,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',4135,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 09:45:49','drashti','2025-11-20 09:45:49',0),(10668,2526,0,0,3762,'2025-11-20','00:00:00',2709,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4136,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 09:50:32','reception','2025-11-20 09:51:24',0),(10669,2526,0,0,3763,'2025-11-20','03:00:00',0,177,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',157,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 09:55:22','vishal','2025-11-21 15:48:03',0),(10670,2526,0,0,3763,'2025-11-20','03:00:00',0,177,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',157,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 09:55:22','vishal','2025-11-21 15:48:03',0),(10671,2526,0,0,3763,'2025-11-20','03:00:00',0,177,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',157,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 21:25:22','vishal','2025-11-21 15:48:03',0),(10672,2526,0,0,3763,'2025-11-20','03:00:00',0,177,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',157,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 21:25:22','vishal','2025-11-21 15:48:03',0),(10673,2526,0,0,3763,'2025-11-20','03:00:00',0,177,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',157,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 21:25:22','vishal','2025-11-21 15:48:03',0),(10674,2526,0,0,3763,'2025-11-20','03:00:00',0,177,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',157,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 21:25:22','vishal','2025-11-21 15:48:03',0),(10675,2526,0,0,3763,'2025-11-20','03:00:00',0,177,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',157,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 21:25:22','vishal','2025-11-21 15:48:03',0),(10676,2526,0,0,3764,'2025-11-20','10:00:00',0,178,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 10:07:37','vishal','2025-11-21 13:24:28',0),(10677,2526,0,0,3764,'2025-11-20','10:00:00',0,178,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 10:07:37','vishal','2025-11-21 13:24:28',0),(10678,2526,0,0,3764,'2025-11-20','10:00:00',0,178,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','214','','','',2526,'H','I',220,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 21:37:37','vishal','2025-11-21 13:24:28',0),(10679,2526,0,0,3764,'2025-11-20','10:00:00',0,178,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','214','','','',2526,'H','I',220,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 21:37:37','vishal','2025-11-21 13:24:28',0),(10680,2526,0,0,3764,'2025-11-20','10:00:00',0,178,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','214','','','',2526,'H','I',220,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 21:37:37','vishal','2025-11-21 13:24:28',0),(10681,2526,0,0,3764,'2025-11-20','10:00:00',0,178,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','214','','','',2526,'H','I',220,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 21:37:37','vishal','2025-11-21 14:42:49',0),(10682,2526,0,0,3764,'2025-11-20','10:00:00',0,178,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','214','','','',2526,'H','I',220,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 21:37:37','vishal','2025-11-21 14:42:49',0),(10683,2526,0,0,3765,'2025-11-20','00:00:00',2710,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4138,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-20 10:09:28','manshi','2025-11-20 10:10:28',0),(10684,2526,0,0,3766,'2025-11-20','00:00:00',2711,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4137,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 10:09:33','janvi','2025-11-20 10:10:05',0),(10685,2526,0,0,3767,'2025-11-20','00:00:00',2712,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4139,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 10:11:58','reception','2025-11-20 10:12:24',0),(10686,2526,0,0,3768,'2025-11-20','00:00:00',2713,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4140,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 10:18:24','reception','2025-11-20 10:19:32',0),(10687,2526,0,0,3769,'2025-11-20','00:00:00',2714,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4141,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 10:19:44','drashti','2025-11-20 10:20:14',0),(10688,2526,0,0,3770,'2025-11-20','00:00:00',1548,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4142,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 10:32:35','reception','2025-11-20 10:33:14',0),(10689,2526,0,0,3771,'2025-11-20','00:00:00',2715,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4143,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 10:37:47','reception','2025-11-20 10:37:58',0),(10690,2526,0,0,3772,'2025-11-20','00:00:00',1899,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4144,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 10:38:26','reception','2025-11-20 10:38:53',0),(10691,2526,0,0,3773,'2025-11-20','00:00:00',2716,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4145,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 10:43:15','reception','2025-11-20 10:43:46',0),(10692,2526,0,0,3774,'2025-11-20','00:00:00',2717,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4146,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 10:47:47','janvi','2025-11-20 10:48:29',0),(10693,2526,0,0,3775,'2025-11-20','00:00:00',2176,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4147,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 10:48:32','reception','2025-11-20 10:48:47',0),(10694,2526,0,0,3776,'2025-11-20','00:00:00',2718,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4148,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 10:53:03','reception','2025-11-20 10:54:03',0),(10695,2526,0,0,2811,'2025-11-18','10:52:00',0,143,'WPRC','WPRC0113','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 10:54:42','','0000-00-00 00:00:00',0),(10696,2526,0,0,2811,'2025-11-17','10:53:00',0,143,'USG','USG0095','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 10:54:42','','0000-00-00 00:00:00',0),(10697,2526,0,0,3777,'2025-11-20','00:00:00',2719,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4149,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 10:54:58','janvi','2025-11-20 10:55:55',0),(10698,2526,0,0,3778,'2025-11-20','00:00:00',2720,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4150,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 10:56:35','janvi','2025-11-20 10:57:10',0),(10699,2526,0,0,3779,'2025-11-20','00:00:00',2721,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4151,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 10:57:44','drashti','2025-11-20 10:58:10',0),(10700,2526,0,0,2811,'2025-11-20','10:56:00',0,143,'DRC','DRC0018','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,8,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 10:57:46','riya','2025-11-20 11:12:56',0),(10701,2526,0,0,2811,'2025-11-19','10:56:00',0,143,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 10:57:46','','0000-00-00 00:00:00',0),(10702,2526,0,0,2811,'2025-11-19','10:56:00',0,143,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',147,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 10:57:46','','0000-00-00 00:00:00',0),(10703,2526,0,0,3762,'2025-11-20','10:58:22',2709,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4152,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 10:58:22','reception','2025-11-20 10:58:22',0),(10704,2526,0,0,3762,'2025-11-20','10:58:22',2709,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',4152,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 10:58:22','reception','2025-11-20 10:58:22',0),(10705,2526,0,0,3780,'2025-11-20','00:00:00',2722,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-20 11:03:42','manshi','2025-11-19 22:33:42',0),(10706,2526,0,0,3781,'2025-11-20','00:00:00',2723,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4153,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 11:04:50','drashti','2025-11-20 11:05:26',0),(10707,2526,0,0,3782,'2025-11-20','00:00:00',1913,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4155,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 11:05:29','reception','2025-11-20 11:07:36',0),(10708,2526,0,0,3783,'2025-11-20','00:00:00',1715,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4154,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 11:06:38','janvi','2025-11-20 11:07:08',0),(10709,2526,0,0,3784,'2025-11-20','00:00:00',549,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4156,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 11:09:29','janvi','2025-11-20 11:10:15',0),(10710,2526,0,0,3781,'2025-11-20','11:13:05',2723,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,79,'',0,0,'','','','','',2526,'H','O',4157,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-11-20 11:13:05','janvi','2025-11-20 11:13:05',0),(10711,2526,0,0,3785,'2025-11-20','00:00:00',2329,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4160,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 11:13:34','janvi','2025-11-20 11:15:43',0),(10712,2526,0,0,3786,'2025-11-20','00:00:00',2724,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4159,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 11:13:37','drashti','2025-11-20 11:14:26',0),(10713,2526,0,0,3768,'2025-11-20','11:13:51',2713,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4158,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 11:13:51','reception','2025-11-20 11:13:51',0),(10714,2526,0,0,3768,'2025-11-20','11:13:51',2713,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4158,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 11:13:51','reception','2025-11-20 11:13:51',0),(10715,2526,0,0,3768,'2025-11-20','11:13:51',2713,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4158,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 11:13:51','reception','2025-11-20 11:13:51',0),(10716,2526,0,0,3787,'2025-11-20','00:00:00',2725,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4162,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 11:19:18','drashti','2025-11-20 11:20:23',0),(10717,2526,0,0,3611,'2025-11-19','17:00:00',0,171,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 22:49:28','riya','2025-11-20 11:23:25',0),(10718,2526,0,0,3611,'2025-11-19','17:00:00',0,171,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 22:49:28','riya','2025-11-20 11:23:25',0),(10719,2526,0,0,3611,'2025-11-19','17:00:00',0,171,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 22:49:28','riya','2025-11-20 11:23:25',0),(10720,2526,0,0,3611,'2025-11-19','17:00:00',0,171,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 22:49:28','riya','2025-12-02 16:03:49',0),(10721,2526,0,0,3611,'2025-11-19','17:00:00',0,171,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 22:49:28','riya','2025-11-22 09:41:24',0),(10722,2526,0,0,3788,'2025-11-20','00:00:00',2726,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 11:21:21','janvi','2025-11-19 22:51:21',0),(10723,2526,0,0,3611,'2025-11-18','11:19:00',0,171,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:23:25','','0000-00-00 00:00:00',0),(10724,2526,0,0,3611,'2025-11-18','11:19:00',0,171,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:23:25','','0000-00-00 00:00:00',0),(10725,2526,0,0,3611,'2025-11-19','11:19:00',0,171,'ROOM','ROOM0008','H','N',8.00,100,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:23:25','','0000-00-00 00:00:00',0),(10726,2526,0,0,3611,'2025-11-19','11:20:00',0,171,'WPRC','WPRC0104','H','N',1.00,6000,6000,'P',0,0,0.00,0.00,6000.00,6000,9999,0,0,'',0,0,'','','','','',0,'','',0,16,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:23:25','riya','2025-11-20 11:56:46',0),(10727,2526,0,0,3611,'2025-11-19','11:20:00',0,171,'USG','USG0091','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:23:25','','0000-00-00 00:00:00',0),(10728,2526,0,0,3611,'2025-11-19','11:20:00',0,171,'WPRC','WPRC0104','H','N',1.00,8000,8000,'P',0,0,0.00,0.00,8000.00,8000,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:23:25','riya','2025-12-02 16:15:04',0),(10729,2526,0,0,3611,'2025-11-20','11:21:00',0,171,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:23:25','','0000-00-00 00:00:00',0),(10730,2526,0,0,3611,'2025-11-18','11:21:00',0,171,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:23:25','','0000-00-00 00:00:00',0),(10731,2526,0,0,3611,'2025-11-19','11:21:00',0,171,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:23:25','','0000-00-00 00:00:00',0),(10732,2526,0,0,3611,'2025-11-20','11:21:00',0,171,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:23:25','','0000-00-00 00:00:00',0),(10733,2526,0,0,3611,'2025-11-18','11:22:00',0,171,'WPRC','WPRC0097','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,62,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:23:25','','0000-00-00 00:00:00',0),(10734,2526,0,0,3611,'2025-11-18','11:22:00',0,171,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,62,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:23:25','riya','2025-11-20 11:23:43',0),(10735,2526,0,0,3789,'2025-11-20','00:00:00',2727,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 11:23:51','janvi','2025-11-19 22:53:51',0),(10736,2526,0,0,3790,'2025-11-20','00:00:00',2728,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4163,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 11:24:08','drashti','2025-11-20 11:25:25',0),(10737,2526,0,0,3791,'2025-11-20','00:00:00',1571,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-20 11:24:30','manshi','2025-11-19 22:54:30',0),(10738,2526,0,0,3641,'2025-11-19','11:25:00',0,175,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',229,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:28:16','','0000-00-00 00:00:00',0),(10739,2526,0,0,3641,'2025-11-20','11:26:00',0,175,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',229,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:28:16','','0000-00-00 00:00:00',0),(10740,2526,0,0,3792,'2025-11-20','00:00:00',2286,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4165,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 11:30:22','drashti','2025-11-20 11:31:12',0),(10741,2526,0,0,3767,'2025-11-20','11:31:04',2712,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4164,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 11:31:04','reception','2025-11-20 11:31:04',0),(10742,2526,0,0,3767,'2025-11-20','11:31:04',2712,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4164,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 11:31:04','reception','2025-11-20 11:31:04',0),(10743,2526,0,0,3767,'2025-11-20','11:31:04',2712,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4164,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 11:31:04','reception','2025-11-20 11:31:04',0),(10744,2526,0,0,3793,'2025-11-20','00:00:00',2729,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4166,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 11:33:07','reception','2025-11-20 11:33:32',0),(10745,2526,0,0,3760,'2025-11-20','11:35:20',2707,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',4167,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-11-20 11:35:20','janvi','2025-11-20 11:35:20',0),(10746,2526,0,0,3760,'2025-11-20','11:35:20',2707,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,80,'',0,0,'','','','','',2526,'H','O',4167,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-11-20 11:35:20','janvi','2025-11-20 11:35:20',0),(10747,2526,0,0,3623,'2025-11-20','11:34:00',0,173,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',149,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:35:28','','0000-00-00 00:00:00',0),(10748,2526,0,0,3623,'2025-11-19','11:34:00',0,173,'SURG','SURG0014','H','N',1.00,21400,21400,'P',0,0,0.00,0.00,21400.00,21400,3,0,0,'',0,0,'','','','','',2526,'H','I',149,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:35:28','riya','2025-11-20 11:40:19',0),(10749,2526,0,0,3623,'2025-11-19','11:34:00',0,173,'SURG','SURG0015','H','N',1.00,7100,7100,'P',0,0,0.00,0.00,7100.00,7100,3,0,0,'',0,0,'','','','','',2526,'H','I',149,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:35:28','riya','2025-11-20 11:40:19',0),(10750,2526,0,0,3794,'2025-11-20','00:00:00',2730,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4168,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 11:39:07','janvi','2025-11-20 11:39:42',0),(10751,2526,0,0,3769,'2025-11-20','11:40:01',2714,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4169,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 11:40:01','reception','2025-11-20 11:40:01',0),(10752,2526,0,0,3769,'2025-11-20','11:40:01',2714,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4169,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 11:40:01','reception','2025-11-20 11:40:01',0),(10753,2526,0,0,3623,'2025-11-20','11:37:00',0,173,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',149,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:40:19','','0000-00-00 00:00:00',0),(10754,2526,0,0,3621,'2025-11-19','21:30:00',0,172,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 23:10:54','riya','2025-11-20 11:42:43',0),(10755,2526,0,0,3621,'2025-11-19','21:30:00',0,172,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 23:10:54','riya','2025-11-20 11:42:43',0),(10756,2526,0,0,3621,'2025-11-19','21:30:00',0,172,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 23:10:54','riya','2025-11-20 11:42:43',0),(10757,2526,0,0,3621,'2025-11-19','21:30:00',0,172,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 23:10:54','riya','2025-11-20 11:42:43',0),(10758,2526,0,0,3621,'2025-11-19','21:30:00',0,172,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-19 23:10:54','riya','2025-11-20 11:42:43',0),(10759,2526,0,0,3621,'2025-11-19','11:40:00',0,172,'USG','USG0092','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:42:43','','0000-00-00 00:00:00',0),(10760,2526,0,0,3621,'2025-11-19','11:41:00',0,172,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:42:43','','0000-00-00 00:00:00',0),(10761,2526,0,0,3621,'2025-11-20','11:41:00',0,172,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:42:43','','0000-00-00 00:00:00',0),(10762,2526,0,0,3621,'2025-11-20','11:42:00',0,172,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 11:42:43','','0000-00-00 00:00:00',0),(10763,2526,0,0,3795,'2025-11-20','00:00:00',2731,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4170,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 11:46:03','reception','2025-11-20 11:46:33',0),(10764,2526,0,0,3796,'2025-11-20','11:47:40',2528,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4171,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-20 11:47:40','manshi','2025-11-20 11:47:40',0),(10765,2526,0,0,3765,'2025-11-20','11:47:57',2710,0,'XRY','XRY0072','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',4172,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-20 11:47:57','manshi','2025-11-20 11:47:57',0),(10766,2526,0,0,3797,'2025-11-20','00:00:00',1858,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-20 11:49:01','manshi','2025-11-19 23:19:01',0),(10767,2526,0,0,3798,'2025-11-20','00:00:00',2732,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4173,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 11:52:50','drashti','2025-11-20 11:54:27',0),(10768,2526,0,0,3799,'2025-11-20','00:00:00',2733,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4174,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 11:54:31','janvi','2025-11-20 11:54:59',0),(10769,2526,0,0,3800,'2025-11-20','00:00:00',615,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 11:57:06','drashti','2025-11-19 23:27:06',0),(10770,2526,0,0,3801,'2025-11-20','00:00:00',2734,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4175,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 11:58:25','drashti','2025-11-20 12:00:05',0),(10771,2526,0,0,3802,'2025-11-20','00:00:00',2735,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',4176,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 12:01:40','reception','2025-11-20 12:01:56',0),(10772,2526,0,0,3803,'2025-11-20','00:00:00',2736,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4177,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 12:06:25','drashti','2025-11-20 12:07:30',0),(10773,2526,0,0,3776,'2025-11-20','12:10:02',2718,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4178,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 12:10:02','reception','2025-11-20 12:10:02',0),(10774,2526,0,0,3776,'2025-11-20','12:10:02',2718,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4178,2,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 12:10:02','reception','2025-11-20 12:10:02',0),(10775,2526,0,0,3776,'2025-11-20','12:10:02',2718,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4178,3,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 12:10:02','reception','2025-11-20 12:10:02',0),(10776,2526,0,0,3776,'2025-11-20','12:10:02',2718,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4178,4,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 12:10:02','reception','2025-11-20 12:10:02',0),(10777,2526,0,0,3804,'2025-11-20','00:00:00',2737,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4179,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 12:12:20','drashti','2025-11-20 12:12:38',0),(10778,2526,0,0,3594,'2025-11-20','12:11:00',0,169,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',148,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 12:12:22','','0000-00-00 00:00:00',0),(10779,2526,0,0,3594,'2025-11-20','12:11:00',0,169,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',148,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 12:12:22','','0000-00-00 00:00:00',0),(10780,2526,0,0,3805,'2025-11-20','00:00:00',2738,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4180,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 12:12:28','janvi','2025-11-20 12:13:02',0),(10781,2526,0,0,3806,'2025-11-20','00:00:00',2739,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4181,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 12:14:21','drashti','2025-11-20 12:15:26',0),(10782,2526,0,0,3468,'2025-11-17','12:13:00',0,161,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 12:17:08','','0000-00-00 00:00:00',0),(10783,2526,0,0,3468,'2025-11-19','12:13:00',0,161,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 12:17:08','','0000-00-00 00:00:00',0),(10784,2526,0,0,3468,'2025-11-19','12:13:00',0,161,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 12:17:08','','0000-00-00 00:00:00',0),(10785,2526,0,0,3468,'2025-11-20','12:14:00',0,161,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 12:17:08','','0000-00-00 00:00:00',0),(10786,2526,0,0,3468,'2025-11-20','12:15:00',0,161,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',151,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 12:17:08','','0000-00-00 00:00:00',0),(10787,2526,0,0,3807,'2025-11-20','00:00:00',2740,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4182,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 12:22:32','reception','2025-11-20 12:22:48',0),(10788,2526,0,0,3808,'2025-11-20','00:00:00',2741,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4183,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 12:23:16','janvi','2025-11-20 12:24:12',0),(10789,2526,0,0,3809,'2025-11-20','00:00:00',2742,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4184,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 12:25:28','drashti','2025-11-20 12:26:54',0),(10790,2526,0,0,3810,'2025-11-20','00:00:00',1629,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4186,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 12:27:37','drashti','2025-11-20 12:27:58',0),(10791,2526,0,0,3793,'2025-11-20','12:27:52',2729,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4185,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 12:27:52','reception','2025-11-20 12:27:52',0),(10792,2526,0,0,3793,'2025-11-20','12:27:52',2729,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4185,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 12:27:52','reception','2025-11-20 12:27:52',0),(10793,2526,0,0,3793,'2025-11-20','12:27:52',2729,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4185,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 12:27:52','reception','2025-11-20 12:27:52',0),(10794,2526,0,0,3811,'2025-11-20','00:00:00',2743,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4187,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 12:28:21','janvi','2025-11-20 12:29:22',0),(10795,2526,0,0,3812,'2025-11-20','00:00:00',1287,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4188,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 12:29:21','reception','2025-11-20 12:29:43',0),(10796,2526,0,0,3800,'2025-11-20','12:30:15',615,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4189,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 12:30:15','drashti','2025-11-20 12:30:15',0),(10797,2526,0,0,3813,'2025-11-20','12:31:27',2142,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4190,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-20 12:31:27','manshi','2025-11-20 12:31:27',0),(10798,2526,0,0,3771,'2025-11-20','12:32:10',2715,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4191,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 12:32:10','reception','2025-11-20 12:32:10',0),(10799,2526,0,0,3771,'2025-11-20','12:32:10',2715,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4191,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 12:32:10','reception','2025-11-20 12:32:10',0),(10800,2526,0,0,3591,'2025-11-20','12:35:00',0,168,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',150,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 12:37:18','','0000-00-00 00:00:00',0),(10801,2526,0,0,3591,'2025-11-20','12:36:00',0,168,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',150,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 12:37:18','','0000-00-00 00:00:00',0),(10802,2526,0,0,3591,'2025-11-19','12:36:00',0,168,'USG','USG0092','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',150,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 12:37:18','','0000-00-00 00:00:00',0),(10803,2526,0,0,3814,'2025-11-20','00:00:00',373,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4192,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 12:37:41','drashti','2025-11-20 12:38:53',0),(10804,2526,0,0,3591,'2025-11-20','12:37:00',0,168,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',150,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 12:38:09','','0000-00-00 00:00:00',0),(10805,2526,0,0,3816,'2025-11-20','00:00:00',2182,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4194,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 12:43:42','reception','2025-11-20 12:44:03',0),(10806,2526,0,0,3817,'2025-11-20','00:00:00',191,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4193,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 12:43:48','janvi','2025-11-20 12:44:03',0),(10807,2526,0,0,3818,'2025-11-20','00:00:00',2079,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4195,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 12:59:04','reception','2025-11-20 12:59:20',0),(10808,2526,0,0,3801,'2025-11-20','13:04:34',2734,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',4196,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-20 13:04:34','urvashi','2025-11-20 13:04:34',0),(10809,2526,0,0,3807,'2025-11-20','13:06:41',2740,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4197,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 13:06:41','reception','2025-11-20 13:06:41',0),(10810,2526,0,0,3807,'2025-11-20','13:06:41',2740,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4197,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 13:06:41','reception','2025-11-20 13:06:41',0),(10811,2526,0,0,3807,'2025-11-20','13:06:41',2740,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4197,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 13:06:41','reception','2025-11-20 13:06:41',0),(10812,2526,0,0,3819,'2025-11-20','00:00:00',1589,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4198,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 13:12:15','reception','2025-11-20 13:12:51',0),(10813,2526,0,0,3804,'2025-11-20','13:36:36',2737,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4199,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 13:36:36','reception','2025-11-20 13:36:36',0),(10814,2526,0,0,3804,'2025-11-20','13:36:36',2737,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4199,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 13:36:36','reception','2025-11-20 13:36:36',0),(10815,2526,0,0,3756,'2025-11-20','13:38:03',2705,0,'OPWD','OPWD0025','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',4200,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-20 13:38:03','urvashi','2025-11-20 13:38:03',0),(10816,2526,0,0,3818,'2025-11-20','13:50:56',2079,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4201,1,102,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 13:50:56','reception','2025-11-20 13:50:56',0),(10817,2526,0,0,3818,'2025-11-20','13:50:56',2079,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4201,2,449,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 13:50:56','reception','2025-11-20 13:50:56',0),(10818,2526,0,0,3818,'2025-11-20','13:50:56',2079,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4201,3,449,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 13:50:56','reception','2025-11-20 13:50:56',0),(10819,2526,0,0,3566,'2025-11-18','14:04:00',0,167,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',152,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 14:08:32','riya','2025-11-20 14:25:20',0),(10820,2526,0,0,3566,'2025-11-20','14:04:00',0,167,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',152,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 14:08:32','','0000-00-00 00:00:00',0),(10821,2526,0,0,3566,'2025-11-18','14:04:00',0,167,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,3,0,0,'',0,0,'','','','','',2526,'H','I',152,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 14:08:32','riya','2025-11-20 14:25:20',0),(10822,2526,0,0,3566,'2025-11-20','14:05:00',0,167,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',152,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 14:08:32','','0000-00-00 00:00:00',0),(10823,2526,0,0,3566,'2025-11-20','14:07:00',0,167,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',152,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 14:08:32','','0000-00-00 00:00:00',0),(10824,2526,0,0,3566,'2025-11-19','14:24:00',0,167,'SURG','SURG0014','H','N',1.00,51220,51220,'P',0,0,0.00,0.00,51220.00,51220,3,0,0,'',0,0,'','','','','',2526,'H','I',152,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 14:25:20','riya','2025-11-20 14:37:50',0),(10825,2526,0,0,3566,'2025-11-19','14:24:00',0,167,'SURG','SURG0015','H','N',1.00,17000,17000,'P',0,0,0.00,0.00,17000.00,17000,3,0,0,'',0,0,'','','','','',2526,'H','I',152,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 14:25:20','riya','2025-11-20 14:31:23',0),(10826,2526,0,0,3517,'2025-11-20','13:00:00',0,165,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','213','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 02:47:25','vishal','2025-11-20 17:59:32',0),(10827,2526,0,0,3517,'2025-11-20','13:00:00',0,165,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','213','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 02:47:25','vishal','2025-11-20 17:59:32',0),(10828,2526,0,0,3517,'2025-11-20','13:00:00',0,165,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','213','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 02:47:25','vishal','2025-11-20 17:59:32',0),(10829,2526,0,0,3517,'2025-11-20','13:00:00',0,165,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','213','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 02:47:25','vishal','2025-11-21 14:50:38',0),(10830,2526,0,0,3517,'2025-11-20','13:00:00',0,165,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','213','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 02:47:25','vishal','2025-11-21 14:50:38',0),(10831,2526,0,0,2879,'2025-11-20','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',0,'','',0,121,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:46','vishal','2025-11-20 17:35:42',0),(10832,2526,0,0,2879,'2025-11-20','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',0,'','',0,122,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:46','vishal','2025-11-20 17:35:42',0),(10833,2526,0,0,2879,'2025-11-20','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',0,'','',0,123,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:46','vishal','2025-11-20 17:35:42',0),(10834,2526,0,0,2879,'2025-11-20','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:46','vishal','2025-11-30 20:00:04',0),(10835,2526,0,0,2879,'2025-11-20','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',0,'','',0,122,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:46','vishal','2025-11-20 17:35:42',0),(10836,2526,0,0,3348,'2025-11-20','13:36:00',0,159,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-21 13:22:51',0),(10837,2526,0,0,3348,'2025-11-19','13:36:00',0,159,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-21 13:22:51',0),(10838,2526,0,0,3348,'2025-11-20','13:36:00',0,159,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-21 13:22:51',0),(10839,2526,0,0,3348,'2025-11-19','13:36:00',0,159,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-21 13:22:51',0),(10840,2526,0,0,3348,'2025-11-20','13:36:00',0,159,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-21 13:22:51',0),(10841,2526,0,0,3348,'2025-11-19','13:36:00',0,159,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-21 13:22:51',0),(10842,2526,0,0,3348,'2025-11-20','13:36:00',0,159,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-21 13:22:51',0),(10843,2526,0,0,3348,'2025-11-19','13:36:00',0,159,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-21 13:22:51',0),(10844,2526,0,0,3348,'2025-11-20','13:36:00',0,159,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-21 13:22:51',0),(10845,2526,0,0,3348,'2025-11-19','13:36:00',0,159,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-21 13:22:51',0),(10846,2526,0,0,3474,'2025-11-19','18:20:00',0,164,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',154,36,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-20 20:21:45',0),(10847,2526,0,0,3474,'2025-11-19','18:20:00',0,164,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',154,37,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-20 20:21:45',0),(10848,2526,0,0,3474,'2025-11-19','18:20:00',0,164,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',154,38,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-20 20:21:45',0),(10849,2526,0,0,3474,'2025-11-19','18:20:00',0,164,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',154,39,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-20 20:21:45',0),(10850,2526,0,0,3474,'2025-11-19','18:20:00',0,164,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',154,40,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-20 20:21:45',0),(10851,2526,0,0,3630,'2025-11-20','10:15:00',0,174,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-20 17:50:34',0),(10852,2526,0,0,3630,'2025-11-20','10:15:00',0,174,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-20 17:50:34',0),(10853,2526,0,0,3630,'2025-11-20','10:15:00',0,174,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-20 17:50:34',0),(10854,2526,0,0,3630,'2025-11-20','10:15:00',0,174,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-20 17:50:34',0),(10855,2526,0,0,3630,'2025-11-20','10:15:00',0,174,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 03:27:47','vishal','2025-11-20 17:50:34',0),(10856,2526,0,0,3517,'2025-11-19','16:05:00',0,165,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 16:06:09','riya','2025-11-26 13:43:40',0),(10857,2526,0,0,3517,'2025-11-19','16:05:00',0,165,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 16:06:09','riya','2025-11-26 13:43:40',0),(10858,2526,0,0,3517,'2025-11-19','16:05:00',0,165,'CARE','CARE0003','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-20 16:06:09','riya','2025-11-26 13:43:40',0),(10859,2526,0,0,3820,'2025-11-20','00:00:00',2744,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4202,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-20 16:31:49','priyanshi','2025-11-20 16:33:45',0),(10860,2526,0,0,3821,'2025-11-20','16:38:43',2716,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4203,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-20 16:38:43','priyanshi','2025-11-20 16:38:43',0),(10861,2526,0,0,3821,'2025-11-20','16:38:43',2716,0,'NEU1','NEU10019','H','N',1.00,1800,1800,'P',0,0,0.00,0.00,0.00,1800,9999,0,0,'',0,0,'','','','','',2526,'H','O',4203,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-20 16:38:43','priyanshi','2025-11-20 16:38:43',0),(10862,2526,0,0,3821,'2025-11-20','16:38:43',2716,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4203,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-20 16:38:43','priyanshi','2025-11-20 16:38:43',0),(10863,2526,0,0,3822,'2025-11-20','00:00:00',2745,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4204,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-20 16:47:24','priyanshi','2025-11-20 16:47:52',0),(10864,2526,0,0,3823,'2025-11-20','00:00:00',2746,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4205,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 16:52:03','reception','2025-11-20 16:52:24',0),(10865,2526,0,0,3824,'2025-11-20','00:00:00',2747,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',4206,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 16:54:21','drashti','2025-11-20 16:54:51',0),(10866,2526,0,0,3759,'2025-11-20','17:03:00',0,176,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',153,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:04:09','','0000-00-00 00:00:00',0),(10867,2526,0,0,3759,'2025-11-20','17:03:00',0,176,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',153,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:04:09','','0000-00-00 00:00:00',0),(10868,2526,0,0,3826,'2025-11-20','00:00:00',2748,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4207,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 17:15:41','reception','2025-11-20 17:16:01',0),(10869,2526,0,0,3825,'2025-11-20','17:16:02',2005,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4208,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 17:16:02','drashti','2025-11-20 17:16:02',0),(10870,2526,0,0,2879,'2025-11-20','17:15:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:16:54','vishal','2025-11-30 20:00:04',0),(10871,2526,0,0,2879,'2025-11-20','17:15:00',0,146,'WPRC','WPRC0111','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,4,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:16:54','vishal','2025-11-30 20:00:04',0),(10872,2526,0,0,2879,'2025-11-20','17:16:00',0,146,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:16:54','riya','2025-12-01 19:41:30',0),(10873,2526,0,0,2879,'2025-11-20','17:16:00',0,146,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:16:54','riya','2025-12-01 19:41:30',0),(10874,2526,0,0,3827,'2025-11-20','00:00:00',2749,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4209,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 17:17:53','reception','2025-11-20 17:18:28',0),(10875,2526,0,0,3828,'2025-11-20','00:00:00',2136,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4210,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 17:20:27','reception','2025-11-20 17:21:03',0),(10876,2526,0,0,2879,'2025-11-19','17:17:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:21:12','riya','2025-12-01 19:41:30',0),(10877,2526,0,0,2879,'2025-11-19','17:18:00',0,146,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,120,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:21:12','vishal','2025-11-30 19:59:18',0),(10878,2526,0,0,3829,'2025-11-20','00:00:00',1346,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4211,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 17:23:37','reception','2025-11-20 18:29:50',0),(10879,2526,0,0,3823,'2025-11-20','17:26:46',2746,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4212,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 17:26:46','reception','2025-11-20 17:26:46',0),(10880,2526,0,0,3823,'2025-11-20','17:26:46',2746,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4212,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 17:26:46','reception','2025-11-20 17:26:46',0),(10881,2526,0,0,3823,'2025-11-20','17:26:46',2746,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4212,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 17:26:46','reception','2025-11-20 17:26:46',0),(10882,2526,0,0,2879,'2025-11-18','17:24:00',0,146,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,37,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:26:51','vishal','2025-11-30 20:00:04',0),(10883,2526,0,0,2879,'2025-11-18','17:24:00',0,146,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,37,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:26:51','vishal','2025-11-30 20:00:04',0),(10884,2526,0,0,2879,'2025-11-19','17:26:00',0,146,'DRC','DRC0020','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,187,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:26:51','riya','2025-12-01 19:41:30',0),(10885,2526,0,0,3830,'2025-11-20','00:00:00',2750,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4213,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-20 17:27:53','manshi','2025-11-20 17:28:07',0),(10886,2526,0,0,2879,'2025-11-17','17:28:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,130,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:30:11','vishal','2025-11-20 17:31:13',0),(10887,2526,0,0,2879,'2025-11-18','17:29:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,110,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:30:11','riya','2025-11-27 18:03:22',0),(10888,2526,0,0,3831,'2025-11-20','00:00:00',2751,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4214,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 17:32:50','reception','2025-11-20 17:33:25',0),(10889,2526,0,0,2879,'2025-11-20','17:34:00',0,146,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:35:42','riya','2025-12-01 19:41:30',0),(10890,2526,0,0,2879,'2025-11-20','17:34:00',0,146,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:35:42','','0000-00-00 00:00:00',0),(10891,2526,0,0,2879,'2025-11-20','17:35:00',0,146,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:35:42','riya','2025-11-27 17:57:23',0),(10892,2526,0,0,2879,'2025-11-20','17:35:00',0,146,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:35:42','vishal','2025-11-30 20:00:04',0),(10893,2526,0,0,3473,'2025-11-20','17:30:00',0,163,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 05:06:49','vishal','2025-11-21 16:04:01',0),(10894,2526,0,0,3473,'2025-11-20','17:30:00',0,163,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 05:06:49','vishal','2025-11-21 16:04:01',0),(10895,2526,0,0,3473,'2025-11-20','17:30:00',0,163,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 05:06:49','vishal','2025-11-21 16:04:01',0),(10896,2526,0,0,3473,'2025-11-20','17:30:00',0,163,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 05:06:49','vishal','2025-11-21 16:04:01',0),(10897,2526,0,0,3473,'2025-11-20','17:30:00',0,163,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 05:06:49','vishal','2025-11-21 16:04:01',0),(10898,2526,0,0,3832,'2025-11-20','00:00:00',2752,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4215,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 17:39:41','reception','2025-11-20 17:39:59',0),(10899,2526,0,0,3611,'2025-11-20','17:00:00',0,171,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 05:12:11','riya','2025-11-22 09:41:24',0),(10900,2526,0,0,3611,'2025-11-20','17:00:00',0,171,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 05:12:11','riya','2025-11-22 09:41:24',0),(10901,2526,0,0,3611,'2025-11-20','17:00:00',0,171,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 05:12:11','riya','2025-11-22 09:41:24',0),(10902,2526,0,0,3611,'2025-11-20','17:00:00',0,171,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 05:12:11','riya','2025-11-22 09:41:24',0),(10903,2526,0,0,3611,'2025-11-20','17:00:00',0,171,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 05:12:11','riya','2025-11-22 09:41:24',0),(10904,2526,0,0,3820,'2025-11-20','17:43:25',2744,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4216,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 17:43:25','reception','2025-11-20 17:43:25',0),(10905,2526,0,0,3820,'2025-11-20','17:43:25',2744,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4216,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 17:43:25','reception','2025-11-20 17:43:25',0),(10906,2526,0,0,3820,'2025-11-20','17:43:25',2744,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4216,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 17:43:25','reception','2025-11-20 17:43:25',0),(10907,2526,0,0,3833,'2025-11-20','00:00:00',2753,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4217,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 17:45:05','reception','2025-11-20 17:45:50',0),(10908,2526,0,0,3834,'2025-11-20','00:00:00',1597,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4218,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 17:46:32','reception','2025-11-20 17:46:50',0),(10909,2526,0,0,3835,'2025-11-20','00:00:00',2754,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4219,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 17:47:21','drashti','2025-11-20 17:47:54',0),(10910,2526,0,0,3836,'2025-11-20','00:00:00',1976,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 17:49:18','janvi','2025-11-20 05:19:18',0),(10911,2526,0,0,3630,'2025-11-20','17:53:00',0,174,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','','','','',2526,'H','I',166,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:55:09','','0000-00-00 00:00:00',0),(10912,2526,0,0,3630,'2025-11-19','17:54:00',0,174,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',166,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:55:09','','0000-00-00 00:00:00',0),(10913,2526,0,0,3630,'2025-11-19','17:54:00',0,174,'WPRC','WPRC0079','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',166,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:55:09','vishal','2025-11-24 21:26:27',0),(10914,2526,0,0,3630,'2025-11-20','17:54:00',0,174,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',166,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:55:09','','0000-00-00 00:00:00',0),(10915,2526,0,0,3630,'2025-11-20','17:54:00',0,174,'WPRC','WPRC0100','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,39,0,0,'',0,0,'','','','','',2526,'H','I',166,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:55:09','','0000-00-00 00:00:00',0),(10916,2526,0,0,3826,'2025-11-20','17:56:05',2748,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4220,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 17:56:04','reception','2025-11-20 17:56:04',0),(10917,2526,0,0,3826,'2025-11-20','17:56:05',2748,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',4220,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 17:56:04','reception','2025-11-20 17:56:04',0),(10918,2526,0,0,3517,'2025-11-18','17:55:00',0,165,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,70,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:58:49','vishal','2025-11-20 17:59:32',0),(10919,2526,0,0,3517,'2025-11-18','17:56:00',0,165,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:58:49','vishal','2025-11-20 17:59:32',0),(10920,2526,0,0,3517,'2025-11-19','17:57:00',0,165,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:58:49','riya','2025-11-26 13:43:40',0),(10921,2526,0,0,3517,'2025-11-19','17:57:00',0,165,'WPRC','WPRC0092','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,224,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:58:49','riya','2025-11-26 13:16:22',0),(10922,2526,0,0,3517,'2025-11-19','17:57:00',0,165,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:58:49','riya','2025-11-26 13:43:40',0),(10923,2526,0,0,3517,'2025-11-19','17:58:00',0,165,'WPRC','WPRC0080','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:58:49','','0000-00-00 00:00:00',0),(10924,2526,0,0,3517,'2025-11-20','17:58:00',0,165,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:58:49','','0000-00-00 00:00:00',0),(10925,2526,0,0,3517,'2025-11-19','17:59:00',0,165,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 17:59:32','','0000-00-00 00:00:00',0),(10926,2526,0,0,3517,'2025-11-19','17:59:00',0,165,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 18:00:03','','0000-00-00 00:00:00',0),(10927,2526,0,0,3517,'2025-11-20','17:59:00',0,165,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 18:00:03','riya','2025-11-26 13:43:40',0),(10928,2526,0,0,3517,'2025-11-20','17:59:00',0,165,'ROOM','ROOM0004','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 18:00:03','riya','2025-11-26 13:43:40',0),(10929,2526,0,0,3837,'2025-11-20','00:00:00',2755,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4221,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 18:01:23','janvi','2025-11-20 18:05:09',0),(10930,2526,0,0,3838,'2025-11-20','00:00:00',2366,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 18:04:35','drashti','2025-11-20 05:34:35',0),(10931,2526,0,0,3517,'2025-11-19','18:05:00',0,165,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 18:06:47','','0000-00-00 00:00:00',0),(10932,2526,0,0,3517,'2025-11-20','18:05:00',0,165,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 18:06:47','riya','2025-11-26 13:27:13',0),(10933,2526,0,0,3517,'2025-11-20','18:05:00',0,165,'DRC','DRC0020','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 18:06:47','vishal','2025-11-21 14:37:35',0),(10934,2526,0,0,3517,'2025-11-18','18:07:00',0,165,'USG','USG0095','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 18:08:37','','0000-00-00 00:00:00',0),(10935,2526,0,0,3839,'2025-11-20','00:00:00',2756,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4222,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 18:11:25','janvi','2025-11-20 18:12:08',0),(10936,2526,0,0,3840,'2025-11-20','00:00:00',2757,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',4223,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-20 18:15:46','manshi','2025-11-20 18:16:59',0),(10937,2526,0,0,3832,'2025-11-20','18:18:21',2752,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',4224,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 18:18:20','reception','2025-11-20 18:18:20',0),(10938,2526,0,0,3841,'2025-11-20','00:00:00',390,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4225,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 18:19:35','drashti','2025-11-20 18:19:49',0),(10939,2526,0,0,3842,'2025-11-20','00:00:00',984,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',4226,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 18:20:38','reception','2025-11-20 18:20:52',0),(10940,2526,0,0,3843,'2025-11-20','00:00:00',1362,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4227,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 18:22:00','reception','2025-11-20 18:26:16',0),(10941,2526,0,0,3836,'2025-11-20','18:27:00',1976,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',4228,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 18:27:00','janvi','2025-11-20 18:27:00',0),(10942,2526,0,0,3837,'2025-11-20','18:28:26',2755,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4229,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 18:28:26','drashti','2025-11-20 18:28:26',0),(10943,2526,0,0,3844,'2025-11-20','00:00:00',832,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4233,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 18:31:07','reception','2025-11-20 18:36:32',0),(10944,2526,0,0,3845,'2025-11-20','00:00:00',2758,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4231,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 18:31:24','drashti','2025-11-20 18:32:41',0),(10945,2526,0,0,3829,'2025-11-20','18:33:01',1346,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4232,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 18:33:01','reception','2025-11-20 18:33:01',0),(10946,2526,0,0,3846,'2025-11-20','00:00:00',2759,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4234,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 18:37:41','reception','2025-11-20 18:38:18',0),(10947,2526,0,0,3830,'2025-11-20','18:38:21',2750,0,'XRY','XRY0246','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',4235,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-20 18:38:21','manshi','2025-11-20 18:38:21',0),(10948,2526,0,0,3847,'2025-11-20','18:39:22',2118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4236,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 18:39:22','janvi','2025-11-20 18:39:22',0),(10949,2526,0,0,3848,'2025-11-20','18:40:48',2574,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,7,0,0,'',0,0,'','','','','',2526,'H','O',4237,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-20 18:40:48','manshi','2025-11-20 18:40:48',0),(10950,2526,0,0,3850,'2025-11-20','00:00:00',2760,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4238,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 18:43:41','drashti','2025-11-20 18:44:27',0),(10951,2526,0,0,3851,'2025-11-20','18:50:59',221,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4239,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 18:50:59','drashti','2025-11-20 18:50:59',0),(10952,2526,0,0,3852,'2025-11-20','00:00:00',2761,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4240,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 18:56:10','drashti','2025-11-20 18:56:43',0),(10953,2526,0,0,3853,'2025-11-20','00:00:00',2762,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',4243,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-20 19:02:27','manshi','2025-11-20 19:20:44',0),(10954,2526,0,0,3759,'2025-11-20','19:11:00',0,176,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',153,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 19:12:02','','0000-00-00 00:00:00',0),(10955,2526,0,0,3759,'2025-11-20','19:12:00',0,176,'CARE','CARE0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',153,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 19:13:15','','0000-00-00 00:00:00',0),(10956,2526,0,0,3759,'2025-11-20','19:12:00',0,176,'SURG','SURG0014','H','N',1.00,11000,11000,'P',0,0,0.00,0.00,11000.00,11000,3,0,0,'',0,0,'','','','','',2526,'H','I',153,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 19:13:15','','0000-00-00 00:00:00',0),(10957,2526,0,0,3759,'2025-11-20','19:12:00',0,176,'SURG','SURG0015','H','N',1.00,3700,3700,'P',0,0,0.00,0.00,3700.00,3700,3,0,0,'',0,0,'','','','','',2526,'H','I',153,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 19:13:15','','0000-00-00 00:00:00',0),(10958,2526,0,0,3854,'2025-11-20','00:00:00',1837,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 19:15:48','drashti','2025-11-20 06:45:48',0),(10959,2526,0,0,3855,'2025-11-20','00:00:00',1314,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4241,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 19:16:50','reception','2025-11-20 19:17:36',0),(10960,2526,0,0,3856,'2025-11-20','00:00:00',900,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4242,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-20 19:19:37','manshi','2025-11-20 19:20:01',0),(10961,2526,0,0,3857,'2025-11-20','00:00:00',2033,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4244,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 19:23:00','janvi','2025-11-20 19:23:08',0),(10962,2526,0,0,3858,'2025-11-20','00:00:00',1317,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4245,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 19:26:52','janvi','2025-11-20 19:27:00',0),(10963,2526,0,0,3853,'2025-11-20','19:32:48',2762,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,7,0,0,'',0,0,'','','','','',2526,'H','O',4246,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-20 19:32:48','manshi','2025-11-20 19:32:48',0),(10964,2526,0,0,3854,'2025-11-20','19:36:24',1837,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4247,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 19:36:24','janvi','2025-11-20 19:36:24',0),(10965,2526,0,0,3859,'2025-11-20','19:53:39',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4248,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-20 19:53:39','janvi','2025-11-20 19:53:39',0),(10966,2526,0,0,3474,'2025-11-20','18:20:00',0,164,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',0,'','',0,41,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 07:49:22','vishal','2025-11-20 20:32:09',0),(10967,2526,0,0,3474,'2025-11-20','18:20:00',0,164,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',0,'','',0,42,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 07:49:22','vishal','2025-11-20 20:32:09',0),(10968,2526,0,0,3474,'2025-11-20','18:20:00',0,164,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',0,'','',0,43,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 07:49:22','vishal','2025-11-20 20:32:09',0),(10969,2526,0,0,3474,'2025-11-20','18:20:00',0,164,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',154,44,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 07:49:22','vishal','2025-11-20 20:21:45',0),(10970,2526,0,0,3474,'2025-11-20','18:20:00',0,164,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',154,42,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 07:49:22','vishal','2025-11-20 20:32:36',0),(10971,2526,0,0,3474,'2025-11-20','20:19:00',0,164,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,46,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 20:21:45','','0000-00-00 00:00:00',0),(10972,2526,0,0,3474,'2025-11-20','20:27:00',0,164,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',154,47,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 20:27:45','','0000-00-00 00:00:00',0),(10973,2526,0,0,3474,'2025-11-18','11:00:00',0,164,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','','','','',2526,'H','I',154,28,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 20:32:09','vishal','2025-11-20 20:32:36',0),(10974,2526,0,0,3860,'2025-11-20','00:00:00',2763,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4250,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-20 20:33:24','drashti','2025-11-20 20:49:15',0),(10975,2526,0,0,3761,'2025-11-20','20:43:17',2708,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',4249,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-20 20:43:17','drashti','2025-11-20 20:43:17',0),(10976,2526,0,0,3861,'2025-11-20','22:40:00',0,179,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 22:58:44','vishal','2025-11-21 15:02:44',0),(10977,2526,0,0,3861,'2025-11-20','22:40:00',0,179,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 22:58:44','vishal','2025-11-21 15:02:44',0),(10978,2526,0,0,3861,'2025-11-20','22:40:00',0,179,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 10:28:44','vishal','2025-11-30 12:04:11',0),(10979,2526,0,0,3861,'2025-11-20','22:40:00',0,179,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 10:28:44','vishal','2025-11-21 15:02:44',0),(10980,2526,0,0,3861,'2025-11-20','22:40:00',0,179,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 10:28:44','vishal','2025-11-21 15:02:44',0),(10981,2526,0,0,3861,'2025-11-21','22:40:00',0,179,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 10:28:44','vishal','2025-11-21 15:02:44',0),(10982,2526,0,0,3861,'2025-11-21','22:40:00',0,179,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 10:28:44','vishal','2025-11-30 12:04:11',0),(10983,2526,0,0,3862,'2025-11-21','00:00:00',2764,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4291,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-21 08:56:14','drashti','2025-11-21 12:11:08',0),(10984,2526,0,0,3863,'2025-11-21','00:00:00',2765,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-21 08:59:11','priyanshi','2025-11-20 20:29:11',0),(10985,2526,0,0,3863,'2025-11-21','09:00:17',2765,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',4251,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-21 09:00:17','priyanshi','2025-11-21 09:00:17',0),(10986,2526,0,0,3863,'2025-11-21','09:00:17',2765,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4251,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-21 09:00:17','priyanshi','2025-11-21 09:00:17',0),(10987,2526,0,0,3862,'2025-11-21','09:00:55',2764,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',4252,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-21 09:00:55','priyanshi','2025-11-21 09:00:55',0),(10988,2526,0,0,3864,'2025-11-21','09:02:09',2708,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',4253,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-21 09:02:09','priyanshi','2025-11-21 09:02:09',0),(10989,2526,0,0,3865,'2025-11-21','00:00:00',1896,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4254,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-21 09:27:01','priyanshi','2025-11-21 09:27:20',0),(10990,2526,0,0,3866,'2025-11-21','00:00:00',1012,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4255,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-21 09:38:51','priyanshi','2025-11-21 09:39:35',0),(10991,2526,0,0,3867,'2025-11-21','00:00:00',2766,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4256,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 09:42:48','drashti','2025-11-21 09:44:09',0),(10992,2526,0,0,3868,'2025-11-21','00:00:00',2767,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-21 09:49:41','janvi','2025-11-20 21:19:41',0),(10993,2526,0,0,3869,'2025-11-21','00:00:00',2768,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4261,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 10:02:58','janvi','2025-11-21 10:31:38',0),(10994,2526,0,0,3870,'2025-11-21','00:00:00',2769,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4257,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-21 10:03:49','janvi','2025-11-21 10:04:58',0),(10995,2526,0,0,3871,'2025-11-21','00:00:00',2770,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4258,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 10:06:28','drashti','2025-11-21 10:07:46',0),(10996,2526,0,0,3872,'2025-11-21','00:00:00',1795,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4288,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-21 10:09:18','manshi','2025-11-21 12:04:29',0),(10997,2526,0,0,3873,'2025-11-21','00:00:00',2771,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4259,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 10:17:31','urvashi','2025-11-21 10:17:53',0),(10998,2526,0,0,3874,'2025-11-21','00:00:00',2772,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4260,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 10:30:25','urvashi','2025-11-21 10:30:51',0),(10999,2526,0,0,3875,'2025-11-21','00:00:00',2773,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4262,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 10:31:56','drashti','2025-11-21 10:32:24',0),(11000,2526,0,0,3876,'2025-11-21','00:00:00',2367,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4263,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-21 10:32:02','manshi','2025-11-21 10:39:00',0),(11001,2526,0,0,3877,'2025-11-21','00:00:00',2774,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4264,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 10:38:49','drashti','2025-11-21 10:39:06',0),(11002,2526,0,0,3878,'2025-11-21','00:00:00',2775,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4265,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 10:39:44','urvashi','2025-11-21 10:40:08',0),(11003,2526,0,0,3868,'2025-11-21','10:45:40',2767,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4266,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-21 10:45:40','janvi','2025-11-21 10:45:40',0),(11004,2526,0,0,3879,'2025-11-21','00:00:00',2776,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4268,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 10:53:46','urvashi','2025-11-21 10:55:19',0),(11005,2526,0,0,3880,'2025-11-21','00:00:00',2777,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4267,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 10:54:35','urvashi','2025-11-21 10:55:09',0),(11006,2526,0,0,3881,'2025-11-21','00:00:00',746,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4269,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 10:56:50','urvashi','2025-11-21 10:57:06',0),(11007,2526,0,0,3882,'2025-11-21','00:00:00',1921,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4270,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 11:02:28','drashti','2025-11-21 11:04:26',0),(11008,2526,0,0,3883,'2025-11-21','00:00:00',2778,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4271,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-21 11:11:11','janvi','2025-11-21 11:12:04',0),(11009,2526,0,0,3884,'2025-11-21','00:00:00',2779,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4272,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 11:12:33','urvashi','2025-11-21 11:13:17',0),(11010,2526,0,0,3885,'2025-11-21','00:00:00',2247,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4273,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 11:13:58','drashti','2025-11-21 11:14:05',0),(11011,2526,0,0,3886,'2025-11-21','00:00:00',2780,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4275,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 11:20:09','urvashi','2025-11-21 11:21:34',0),(11012,2526,0,0,3874,'2025-11-21','11:21:14',2772,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4274,1,92,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 11:21:14','urvashi','2025-11-21 11:21:14',0),(11013,2526,0,0,3874,'2025-11-21','11:21:14',2772,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4274,2,404,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 11:21:14','urvashi','2025-11-21 11:21:14',0),(11014,2526,0,0,3874,'2025-11-21','11:21:14',2772,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4274,3,404,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 11:21:14','urvashi','2025-11-21 11:21:14',0),(11015,2526,0,0,3887,'2025-11-21','00:00:00',2781,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4276,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-21 11:24:43','manshi','2025-11-21 11:25:11',0),(11016,2526,0,0,3888,'2025-11-21','00:00:00',2782,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4277,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 11:30:58','urvashi','2025-11-21 11:31:36',0),(11017,2526,0,0,3889,'2025-11-21','00:00:00',2783,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4279,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 11:33:21','drashti','2025-11-21 11:35:57',0),(11018,2526,0,0,3630,'2025-11-21','10:15:00',0,174,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',0,'','',0,18,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 23:03:46','vishal','2025-11-21 12:02:51',0),(11019,2526,0,0,3630,'2025-11-21','10:15:00',0,174,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',0,'','',0,19,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 23:03:46','vishal','2025-11-21 12:02:51',0),(11020,2526,0,0,3630,'2025-11-21','10:15:00',0,174,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',0,'','',0,20,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 23:03:46','vishal','2025-11-21 12:02:51',0),(11021,2526,0,0,3630,'2025-11-21','10:15:00',0,174,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 23:03:46','vishal','2025-11-21 11:35:15',0),(11022,2526,0,0,3630,'2025-11-21','10:15:00',0,174,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 23:03:46','vishal','2025-11-21 11:35:15',0),(11023,2526,0,0,3890,'2025-11-21','00:00:00',2784,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4278,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 11:34:58','drashti','2025-11-21 11:35:16',0),(11024,2526,0,0,3630,'2025-11-21','11:34:00',0,174,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',166,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 11:35:15','','0000-00-00 00:00:00',0),(11025,2526,0,0,3630,'2025-11-21','11:34:00',0,174,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',166,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 11:35:15','','0000-00-00 00:00:00',0),(11026,2526,0,0,3891,'2025-11-21','11:43:25',1928,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',4280,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-21 11:43:25','manshi','2025-11-21 11:43:25',0),(11027,2526,0,0,3878,'2025-11-21','11:45:14',2775,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4281,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 11:45:14','urvashi','2025-11-21 11:45:14',0),(11028,2526,0,0,3878,'2025-11-21','11:45:14',2775,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4281,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 11:45:14','urvashi','2025-11-21 11:45:14',0),(11029,2526,0,0,3892,'2025-11-21','00:00:00',2785,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',4282,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 11:45:26','drashti','2025-11-21 11:45:46',0),(11030,2526,0,0,3879,'2025-11-21','11:47:21',2776,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4283,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 11:47:21','urvashi','2025-11-21 11:47:21',0),(11031,2526,0,0,3879,'2025-11-21','11:47:21',2776,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4283,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 11:47:21','urvashi','2025-11-21 11:47:21',0),(11032,2526,0,0,3893,'2025-11-21','00:00:00',2786,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4284,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 11:47:38','drashti','2025-11-21 11:48:49',0),(11033,2526,0,0,3595,'2025-11-18','13:15:00',0,170,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','311','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-20 23:20:47','vishal','2025-11-21 11:55:28',0),(11034,2526,0,0,3894,'2025-11-21','00:00:00',2787,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4285,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 11:52:12','drashti','2025-11-21 11:53:10',0),(11035,2526,0,0,3895,'2025-11-21','00:00:00',1234,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4286,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 11:57:21','urvashi','2025-11-21 11:57:41',0),(11036,2526,0,0,3630,'2025-11-21','12:02:00',0,174,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',166,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 12:02:51','','0000-00-00 00:00:00',0),(11037,2526,0,0,3630,'2025-11-21','12:02:00',0,174,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',166,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 12:02:51','','0000-00-00 00:00:00',0),(11038,2526,0,0,3630,'2025-11-21','12:02:00',0,174,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',166,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 12:02:51','','0000-00-00 00:00:00',0),(11039,2526,0,0,3896,'2025-11-21','00:00:00',2788,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4287,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 12:03:08','drashti','2025-11-21 12:03:55',0),(11040,2526,0,0,3888,'2025-11-21','12:05:02',2782,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4289,1,606,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 12:05:02','urvashi','2025-11-21 12:05:02',0),(11041,2526,0,0,3888,'2025-11-21','12:05:02',2782,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4289,2,688,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 12:05:02','urvashi','2025-11-21 12:05:02',0),(11042,2526,0,0,3888,'2025-11-21','12:05:02',2782,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4289,3,606,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 12:05:02','urvashi','2025-11-21 12:05:02',0),(11043,2526,0,0,3897,'2025-11-21','00:00:00',1731,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4290,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 12:05:37','drashti','2025-11-21 12:05:54',0),(11044,2526,0,0,3898,'2025-11-21','00:00:00',2789,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4292,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 12:11:21','urvashi','2025-11-21 12:12:04',0),(11045,2526,0,0,3899,'2025-11-21','00:00:00',2790,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4294,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 12:13:11','urvashi','2025-11-21 12:13:59',0),(11046,2526,0,0,3872,'2025-11-21','12:13:46',1795,0,'XRY','XRY0100','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',4293,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-21 12:13:46','manshi','2025-11-21 12:13:46',0),(11047,2526,0,0,3900,'2025-11-21','00:00:00',2791,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4295,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 12:18:56','urvashi','2025-11-21 12:22:21',0),(11048,2526,0,0,3901,'2025-11-21','00:00:00',1028,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4296,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 12:28:37','drashti','2025-11-21 12:28:49',0),(11049,2526,0,0,3902,'2025-11-21','11:00:00',0,180,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',159,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 12:31:00','riya','2025-11-22 12:16:47',0),(11050,2526,0,0,3902,'2025-11-21','11:00:00',0,180,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',159,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 12:31:00','riya','2025-11-22 12:16:47',0),(11051,2526,0,0,3902,'2025-11-21','11:00:00',0,180,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',159,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 00:01:00','riya','2025-11-22 12:16:47',0),(11052,2526,0,0,3902,'2025-11-21','11:00:00',0,180,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',159,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 00:01:00','riya','2025-11-22 12:16:47',0),(11053,2526,0,0,3902,'2025-11-21','11:00:00',0,180,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',159,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 00:01:00','riya','2025-11-22 12:16:47',0),(11054,2526,0,0,3902,'2025-11-21','11:00:00',0,180,'DRC','DRC0018','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','207','','','',2526,'H','I',159,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 00:01:00','riya','2025-11-22 15:18:09',0),(11055,2526,0,0,3902,'2025-11-21','11:00:00',0,180,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',159,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 00:01:00','riya','2025-11-22 15:18:09',0),(11056,2526,0,0,3903,'2025-11-21','00:00:00',2792,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4297,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 12:31:53','urvashi','2025-11-21 12:32:10',0),(11057,2526,0,0,3904,'2025-11-21','00:00:00',2793,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4298,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 12:37:09','urvashi','2025-11-21 12:37:32',0),(11058,2526,0,0,3905,'2025-11-21','00:00:00',2794,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4299,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 12:45:51','drashti','2025-11-21 12:46:47',0),(11059,2526,0,0,3903,'2025-11-21','12:59:52',2792,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4300,1,38,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 12:59:52','urvashi','2025-11-21 12:59:52',0),(11060,2526,0,0,3903,'2025-11-21','12:59:52',2792,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4300,2,169,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 12:59:52','urvashi','2025-11-21 12:59:52',0),(11061,2526,0,0,3903,'2025-11-21','12:59:52',2792,0,'NEU1','NEU10017','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4300,3,192,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 12:59:52','urvashi','2025-11-21 12:59:52',0),(11062,2526,0,0,3906,'2025-11-21','00:00:00',2795,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4301,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-21 13:02:57','manshi','2025-11-21 13:03:12',0),(11063,2526,0,0,3907,'2025-11-21','00:00:00',2796,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-21 13:13:09','janvi','2025-11-21 00:43:09',0),(11064,2526,0,0,3907,'2025-11-21','13:14:08',2796,0,'OPWD','OPWD0030','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',4302,1,500,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-21 13:14:08','janvi','2025-11-21 13:14:08',0),(11065,2526,0,0,3348,'2025-11-21','13:21:00',0,159,'XRY','XRY0017','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 13:22:51','vishal','2025-11-21 15:52:03',0),(11066,2526,0,0,3764,'2025-11-21','10:00:00',0,178,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','214','','','',0,'','',0,8,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 00:53:31','vishal','2025-11-21 14:44:59',0),(11067,2526,0,0,3764,'2025-11-21','10:00:00',0,178,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','214','','','',0,'','',0,9,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 00:53:31','vishal','2025-11-21 14:44:59',0),(11068,2526,0,0,3764,'2025-11-21','10:00:00',0,178,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','214','','','',0,'','',0,10,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 00:53:31','vishal','2025-11-21 14:44:59',0),(11069,2526,0,0,3764,'2025-11-21','10:00:00',0,178,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','214','','','',2526,'H','I',220,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 00:53:31','vishal','2025-11-21 14:45:27',0),(11070,2526,0,0,3764,'2025-11-21','10:00:00',0,178,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,42,0,0,'',0,0,'','214','','','',0,'','',0,12,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 00:53:31','vishal','2025-11-21 14:42:49',0),(11071,2526,0,0,3764,'2025-11-21','13:23:00',0,178,'WPRC','WPRC0090','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 13:24:28','','0000-00-00 00:00:00',0),(11072,2526,0,0,3906,'2025-11-21','13:34:04',2795,0,'MOPR','MOPR0006','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',4303,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 13:34:03','urvashi','2025-11-21 13:34:03',0),(11073,2526,0,0,3863,'2025-11-21','13:41:38',2765,0,'OPWD','OPWD0025','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',4304,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 13:41:38','drashti','2025-11-21 13:41:38',0),(11074,2526,0,0,3908,'2025-11-21','00:00:00',1585,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-21 14:09:20','janvi','2025-11-21 01:39:20',0),(11075,2526,0,0,3908,'2025-11-21','14:10:54',1585,0,'LAB','LAB0817','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,81,'',0,0,'','','','','',2526,'H','O',4305,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-11-21 14:10:54','janvi','2025-11-21 14:10:54',0),(11076,2526,0,0,3348,'2025-11-21','13:36:00',0,159,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,61,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:14','riya','2025-11-22 13:18:48',0),(11077,2526,0,0,3348,'2025-11-21','13:36:00',0,159,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,60,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','riya','2025-11-22 13:18:48',0),(11078,2526,0,0,3348,'2025-11-21','13:36:00',0,159,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',158,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','vishal','2025-11-21 15:52:03',0),(11079,2526,0,0,3348,'2025-11-21','13:36:00',0,159,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',158,58,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','riya','2025-11-22 13:18:48',0),(11080,2526,0,0,3348,'2025-11-21','13:36:00',0,159,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',158,57,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','riya','2025-11-22 13:18:48',0),(11081,2526,0,0,3517,'2025-11-21','13:00:00',0,165,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','riya','2025-11-26 13:43:40',0),(11082,2526,0,0,3517,'2025-11-21','13:00:00',0,165,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','riya','2025-11-26 13:43:40',0),(11083,2526,0,0,3517,'2025-11-21','13:00:00',0,165,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','riya','2025-11-26 13:27:13',0),(11084,2526,0,0,3517,'2025-11-21','13:00:00',0,165,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','208','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','riya','2025-11-26 13:43:40',0),(11085,2526,0,0,3517,'2025-11-21','13:00:00',0,165,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','208','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','riya','2025-11-26 13:27:13',0),(11086,2526,0,0,3621,'2025-11-20','21:30:00',0,172,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','vishal','2025-11-21 15:44:59',0),(11087,2526,0,0,3621,'2025-11-20','21:30:00',0,172,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','vishal','2025-11-21 15:44:59',0),(11088,2526,0,0,3621,'2025-11-20','21:30:00',0,172,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','407','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','riya','2025-11-23 10:35:13',0),(11089,2526,0,0,3621,'2025-11-20','21:30:00',0,172,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','riya','2025-11-23 10:35:13',0),(11090,2526,0,0,3621,'2025-11-20','21:30:00',0,172,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','vishal','2025-11-21 15:44:59',0),(11091,2526,0,0,3763,'2025-11-21','03:00:00',0,177,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',157,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','vishal','2025-11-21 15:48:03',0),(11092,2526,0,0,3763,'2025-11-21','03:00:00',0,177,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',157,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','vishal','2025-11-21 15:48:03',0),(11093,2526,0,0,3763,'2025-11-21','03:00:00',0,177,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',157,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','vishal','2025-11-21 15:48:03',0),(11094,2526,0,0,3763,'2025-11-21','03:00:00',0,177,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','411','','','',2526,'H','I',157,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','vishal','2025-11-21 15:48:03',0),(11095,2526,0,0,3763,'2025-11-21','03:00:00',0,177,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','411','','','',2526,'H','I',157,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 01:57:15','vishal','2025-11-21 15:48:03',0),(11096,2526,0,0,3517,'2025-11-21','14:33:00',0,165,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 14:34:54','','0000-00-00 00:00:00',0),(11097,2526,0,0,3517,'2025-11-21','14:33:00',0,165,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 14:34:54','','0000-00-00 00:00:00',0),(11098,2526,0,0,3517,'2025-11-21','14:33:00',0,165,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 14:34:54','','0000-00-00 00:00:00',0),(11099,2526,0,0,3517,'2025-11-19','14:35:00',0,165,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,70,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 14:37:12','vishal','2025-11-21 14:37:35',0),(11100,2526,0,0,3517,'2025-11-20','14:35:00',0,165,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,70,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 14:37:12','riya','2025-11-26 13:43:40',0),(11101,2526,0,0,3517,'2025-11-21','14:36:00',0,165,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 14:37:12','','0000-00-00 00:00:00',0),(11102,2526,0,0,3517,'2025-11-21','14:36:00',0,165,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 14:37:12','','0000-00-00 00:00:00',0),(11103,2526,0,0,3764,'2025-11-20','14:39:00',0,178,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 14:42:49','','0000-00-00 00:00:00',0),(11104,2526,0,0,3764,'2025-11-20','14:39:00',0,178,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 14:42:49','','0000-00-00 00:00:00',0),(11105,2526,0,0,3764,'2025-11-20','14:39:00',0,178,'USG','USG0091','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 14:42:49','','0000-00-00 00:00:00',0),(11106,2526,0,0,3764,'2025-11-21','14:39:00',0,178,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 14:42:49','','0000-00-00 00:00:00',0),(11107,2526,0,0,3764,'2025-11-20','14:39:00',0,178,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 14:42:49','','0000-00-00 00:00:00',0),(11108,2526,0,0,3764,'2025-11-21','14:42:00',0,178,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',220,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 14:42:49','','0000-00-00 00:00:00',0),(11109,2526,0,0,3764,'2025-11-21','14:43:00',0,178,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 14:44:59','','0000-00-00 00:00:00',0),(11110,2526,0,0,3764,'2025-11-21','14:43:00',0,178,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 14:44:59','','0000-00-00 00:00:00',0),(11111,2526,0,0,3764,'2025-11-21','14:43:00',0,178,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 14:44:59','','0000-00-00 00:00:00',0),(11112,2526,0,0,3764,'2025-11-20','14:44:00',0,178,'DRC','DRC0018','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','','','','',2526,'H','I',220,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 14:44:59','vishal','2025-11-21 14:45:27',0),(11113,2526,0,0,3764,'2025-11-21','14:44:00',0,178,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','','','','',2526,'H','I',220,20,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 14:44:59','','0000-00-00 00:00:00',0),(11114,2526,0,0,3861,'2025-11-20','15:01:00',0,179,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:02:44','','0000-00-00 00:00:00',0),(11115,2526,0,0,3861,'2025-11-20','15:01:00',0,179,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:02:44','','0000-00-00 00:00:00',0),(11116,2526,0,0,3861,'2025-11-20','15:02:00',0,179,'WPRC','WPRC0079','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:02:44','vishal','2025-11-30 12:06:30',0),(11117,2526,0,0,3861,'2025-11-21','15:02:00',0,179,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:02:44','vishal','2025-11-30 12:04:11',0),(11118,2526,0,0,3861,'2025-11-20','22:40:00',0,179,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',0,'','',0,9,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 02:32:48','vishal','2025-11-30 11:59:40',0),(11119,2526,0,0,3861,'2025-11-20','22:40:00',0,179,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',0,'','',0,10,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 02:32:48','vishal','2025-11-30 11:59:40',0),(11120,2526,0,0,3909,'2025-11-21','15:00:00',0,181,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:17:16','riya','2025-11-22 10:53:44',0),(11121,2526,0,0,3909,'2025-11-21','15:00:00',0,181,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:17:16','riya','2025-11-22 10:53:44',0),(11122,2526,0,0,3909,'2025-11-21','15:00:00',0,181,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 02:47:16','riya','2025-11-22 10:53:44',0),(11123,2526,0,0,3909,'2025-11-21','15:00:00',0,181,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 02:47:16','riya','2025-11-22 10:53:44',0),(11124,2526,0,0,3909,'2025-11-21','15:00:00',0,181,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 02:47:16','riya','2025-11-22 10:53:44',0),(11125,2526,0,0,3909,'2025-11-21','15:00:00',0,181,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','210','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 02:47:16','riya','2025-11-22 10:53:44',0),(11126,2526,0,0,3909,'2025-11-21','15:00:00',0,181,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 02:47:16','riya','2025-11-22 10:53:44',0),(11127,2526,0,0,3621,'2025-11-20','15:43:00',0,172,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:44:59','','0000-00-00 00:00:00',0),(11128,2526,0,0,3621,'2025-11-21','15:44:00',0,172,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:44:59','','0000-00-00 00:00:00',0),(11129,2526,0,0,3763,'2025-11-21','15:46:00',0,177,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',157,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:48:03','','0000-00-00 00:00:00',0),(11130,2526,0,0,3763,'2025-11-21','15:47:00',0,177,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',157,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:48:03','','0000-00-00 00:00:00',0),(11131,2526,0,0,3763,'2025-11-21','15:47:00',0,177,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,37,0,0,'',0,0,'','','','','',2526,'H','I',157,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:48:03','','0000-00-00 00:00:00',0),(11132,2526,0,0,3348,'2025-11-20','15:49:00',0,159,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,54,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:51:16','riya','2025-11-22 13:18:48',0),(11133,2526,0,0,3348,'2025-11-21','15:49:00',0,159,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:51:16','','0000-00-00 00:00:00',0),(11134,2526,0,0,3348,'2025-11-20','15:49:00',0,159,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,53,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:51:16','riya','2025-11-22 13:18:48',0),(11135,2526,0,0,3348,'2025-11-21','15:49:00',0,159,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:51:16','','0000-00-00 00:00:00',0),(11136,2526,0,0,3348,'2025-11-20','15:50:00',0,159,'DRC','DRC0020','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:51:16','vishal','2025-11-21 15:52:03',0),(11137,2526,0,0,3348,'2025-11-21','15:50:00',0,159,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,20,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:51:16','','0000-00-00 00:00:00',0),(11138,2526,0,0,2879,'2025-11-21','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 03:23:01','vishal','2025-11-30 20:00:04',0),(11139,2526,0,0,2879,'2025-11-21','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 03:23:01','vishal','2025-11-30 20:00:04',0),(11140,2526,0,0,2879,'2025-11-21','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 03:23:01','riya','2025-12-01 19:41:30',0),(11141,2526,0,0,2879,'2025-11-21','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 03:23:01','riya','2025-12-01 19:41:30',0),(11142,2526,0,0,2879,'2025-11-21','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 03:23:01','riya','2025-12-01 19:41:30',0),(11143,2526,0,0,2879,'2025-11-21','15:53:00',0,146,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:55:43','vishal','2025-11-30 20:00:04',0),(11144,2526,0,0,2879,'2025-11-21','15:53:00',0,146,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:55:43','vishal','2025-11-30 20:00:04',0),(11145,2526,0,0,2879,'2025-11-20','15:54:00',0,146,'DRC','DRC0020','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,37,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:55:43','riya','2025-12-01 19:41:30',0),(11146,2526,0,0,2879,'2025-11-20','15:56:00',0,146,'WPRC','WPRC0105','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:57:20','riya','2025-12-01 19:41:30',0),(11147,2526,0,0,2879,'2025-11-21','15:57:00',0,146,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:57:20','riya','2025-12-01 19:41:30',0),(11148,2526,0,0,2879,'2025-11-20','15:59:00',0,146,'DRC','DRC0020','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,187,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 15:59:39','riya','2025-12-01 19:41:30',0),(11149,2526,0,0,3473,'2025-11-20','16:00:00',0,163,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 16:04:01','','0000-00-00 00:00:00',0),(11150,2526,0,0,3473,'2025-11-21','16:00:00',0,163,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 16:04:01','','0000-00-00 00:00:00',0),(11151,2526,0,0,3473,'2025-11-21','16:01:00',0,163,'WPRC','WPRC0114','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 16:04:01','','0000-00-00 00:00:00',0),(11152,2526,0,0,3473,'2025-11-20','16:03:00',0,163,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,188,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 16:04:01','','0000-00-00 00:00:00',0),(11153,2526,0,0,3910,'2025-11-21','00:00:00',2797,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 16:33:44','urvashi','2025-11-21 04:03:44',0),(11154,2526,0,0,3911,'2025-11-21','00:00:00',2798,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 16:34:51','urvashi','2025-11-21 04:04:51',0),(11155,2526,0,0,3912,'2025-11-21','00:00:00',2799,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-21 16:47:50','priyanshi','2025-11-21 04:17:50',0),(11156,2526,0,0,3913,'2025-11-21','00:00:00',316,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-21 16:48:44','priyanshi','2025-11-21 04:18:44',0),(11157,2526,0,0,3914,'2025-11-21','00:00:00',2800,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 16:50:46','urvashi','2025-11-21 04:20:46',0),(11158,2526,0,0,3915,'2025-11-21','00:00:00',2801,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4307,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-21 16:50:48','priyanshi','2025-11-21 16:51:55',0),(11159,2526,0,0,3916,'2025-11-21','00:00:00',2802,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4306,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-21 16:51:29','janvi','2025-11-21 16:51:49',0),(11160,2526,0,0,3917,'2025-11-21','00:00:00',2803,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4308,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 17:07:07','urvashi','2025-11-21 17:08:14',0),(11161,2526,0,0,3918,'2025-11-21','00:00:00',2804,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4309,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 17:10:03','drashti','2025-11-21 17:10:28',0),(11162,2526,0,0,3919,'2025-11-21','00:00:00',966,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 17:16:30','urvashi','2025-11-21 04:46:30',0),(11163,2526,0,0,3920,'2025-11-21','00:00:00',2805,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4310,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 17:21:53','drashti','2025-11-21 17:22:45',0),(11164,2526,0,0,3917,'2025-11-21','17:32:01',2803,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4311,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 17:32:01','urvashi','2025-11-21 17:32:01',0),(11165,2526,0,0,3917,'2025-11-21','17:32:01',2803,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4311,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 17:32:01','urvashi','2025-11-21 17:32:01',0),(11166,2526,0,0,3917,'2025-11-21','17:32:01',2803,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4311,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 17:32:01','urvashi','2025-11-21 17:32:01',0),(11167,2526,0,0,3921,'2025-11-21','00:00:00',2806,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4312,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 17:35:19','urvashi','2025-11-21 17:35:42',0),(11168,2526,0,0,3922,'2025-11-21','00:00:00',1422,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4313,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 17:41:12','drashti','2025-11-21 17:41:50',0),(11169,2526,0,0,3923,'2025-11-21','00:00:00',2807,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4314,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-21 17:41:30','janvi','2025-11-21 17:42:29',0),(11170,2526,0,0,3924,'2025-11-21','00:00:00',2192,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4315,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-21 17:47:20','janvi','2025-11-21 17:48:34',0),(11171,2526,0,0,3473,'2025-11-21','17:30:00',0,163,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 05:18:11','riya','2025-11-22 16:19:15',0),(11172,2526,0,0,3473,'2025-11-21','17:30:00',0,163,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 05:18:11','riya','2025-11-22 16:19:15',0),(11173,2526,0,0,3473,'2025-11-21','17:30:00',0,163,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 05:18:11','riya','2025-11-22 16:19:15',0),(11174,2526,0,0,3473,'2025-11-21','17:30:00',0,163,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 05:18:11','riya','2025-11-22 16:19:15',0),(11175,2526,0,0,3473,'2025-11-21','17:30:00',0,163,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 05:18:11','riya','2025-11-22 16:19:15',0),(11176,2526,0,0,3925,'2025-11-21','00:00:00',2198,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4316,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-21 17:50:02','janvi','2025-11-21 17:51:05',0),(11177,2526,0,0,3926,'2025-11-21','00:00:00',2808,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4318,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 17:52:15','drashti','2025-11-21 17:56:28',0),(11178,2526,0,0,3927,'2025-11-21','17:56:00',2257,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4317,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 17:56:00','drashti','2025-11-21 17:56:00',0),(11179,2526,0,0,3928,'2025-11-21','00:00:00',2809,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4319,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 17:56:59','urvashi','2025-11-21 17:57:43',0),(11180,2526,0,0,3929,'2025-11-21','00:00:00',2810,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4320,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 18:03:50','urvashi','2025-11-21 18:04:15',0),(11181,2526,0,0,3930,'2025-11-21','18:05:08',2519,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4321,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-21 18:05:08','manshi','2025-11-21 18:05:08',0),(11182,2526,0,0,3931,'2025-11-21','00:00:00',871,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4322,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 18:05:37','drashti','2025-11-21 18:05:52',0),(11183,2526,0,0,3933,'2025-11-21','00:00:00',2811,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4323,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 18:08:17','drashti','2025-11-21 18:08:56',0),(11184,2526,0,0,3934,'2025-11-21','18:10:14',2360,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4324,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-21 18:10:14','janvi','2025-11-21 18:10:14',0),(11185,2526,0,0,3935,'2025-11-21','00:00:00',665,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4325,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 18:11:16','urvashi','2025-11-21 18:11:39',0),(11186,2526,0,0,3936,'2025-11-21','00:00:00',2812,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4326,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 18:19:46','drashti','2025-11-21 18:20:02',0),(11187,2526,0,0,3641,'2025-11-20','18:26:00',0,175,'OETR','OETR0004','H','N',1.00,62306,62306,'P',0,0,0.00,0.00,62306.00,62306,9999,0,0,'',0,0,'','','','','',2526,'H','I',229,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-21 18:28:04','vishal','2025-12-08 20:09:45',0),(11188,2526,0,0,3937,'2025-11-21','00:00:00',2813,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 18:28:40','urvashi','2025-11-21 05:58:40',0),(11189,2526,0,0,3929,'2025-11-21','18:31:45',2810,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4327,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 18:31:44','urvashi','2025-11-21 18:31:44',0),(11190,2526,0,0,3929,'2025-11-21','18:31:45',2810,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',4327,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 18:31:44','urvashi','2025-11-21 18:31:44',0),(11191,2526,0,0,3938,'2025-11-21','00:00:00',2513,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4328,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 18:33:55','drashti','2025-11-21 18:34:52',0),(11192,2526,0,0,3939,'2025-11-21','00:00:00',2814,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4329,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 18:34:54','urvashi','2025-11-21 18:35:56',0),(11193,2526,0,0,3940,'2025-11-21','00:00:00',2199,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',4330,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 18:36:30','urvashi','2025-11-21 18:36:57',0),(11194,2526,0,0,3941,'2025-11-21','00:00:00',2815,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4331,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-21 18:39:17','janvi','2025-11-21 18:41:05',0),(11195,2526,0,0,3942,'2025-11-21','00:00:00',1491,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-21 18:41:55','janvi','2025-11-21 06:11:55',0),(11196,2526,0,0,3943,'2025-11-21','00:00:00',2816,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4332,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 18:43:28','drashti','2025-11-21 18:45:44',0),(11197,2526,0,0,3936,'2025-11-21','18:48:07',2812,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4333,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 18:48:07','urvashi','2025-11-21 18:48:07',0),(11198,2526,0,0,3936,'2025-11-21','18:48:07',2812,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4333,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 18:48:07','urvashi','2025-11-21 18:48:07',0),(11199,2526,0,0,3936,'2025-11-21','18:48:07',2812,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4333,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 18:48:07','urvashi','2025-11-21 18:48:07',0),(11200,2526,0,0,3944,'2025-11-21','00:00:00',1085,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4334,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 18:49:51','drashti','2025-11-21 18:50:47',0),(11201,2526,0,0,3945,'2025-11-21','00:00:00',2817,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4335,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-21 18:53:40','manshi','2025-11-21 18:54:18',0),(11202,2526,0,0,3946,'2025-11-21','00:00:00',2818,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4336,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 18:54:02','drashti','2025-11-21 18:55:01',0),(11203,2526,0,0,3947,'2025-11-21','00:00:00',2268,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4337,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 18:55:59','drashti','2025-11-21 18:57:12',0),(11204,2526,0,0,3948,'2025-11-21','00:00:00',2819,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4338,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 19:01:57','drashti','2025-11-21 19:05:34',0),(11205,2526,0,0,3949,'2025-11-21','00:00:00',2820,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4340,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-21 19:29:14','urvashi','2025-11-21 19:29:36',0),(11206,2526,0,0,3950,'2025-11-21','00:00:00',2821,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4341,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-21 19:41:25','janvi','2025-11-21 19:41:49',0),(11207,2526,0,0,3946,'2025-11-21','20:20:52',2818,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',4342,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 20:20:52','drashti','2025-11-21 20:20:52',0),(11208,2526,0,0,3951,'2025-11-21','20:30:47',2708,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',4343,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-21 20:30:47','drashti','2025-11-21 20:30:47',0),(11209,2526,0,0,3952,'2025-11-22','00:00:00',2822,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 09:10:02','priyanshi','2025-11-21 20:40:02',0),(11210,2526,0,0,3952,'2025-11-22','09:15:17',2822,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',4344,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 09:15:17','priyanshi','2025-11-22 09:15:17',0),(11211,2526,0,0,3952,'2025-11-22','09:15:17',2822,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',4344,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 09:15:17','priyanshi','2025-11-22 09:15:17',0),(11212,2526,0,0,3952,'2025-11-22','09:15:17',2822,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4344,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 09:15:17','priyanshi','2025-11-22 09:15:17',0),(11213,2526,0,0,3953,'2025-11-22','00:00:00',2823,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4345,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 09:23:09','priyanshi','2025-11-22 09:23:47',0),(11214,2526,0,0,3611,'2025-11-21','17:00:00',0,171,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 21:10:31','riya','2025-11-22 09:41:24',0),(11215,2526,0,0,3611,'2025-11-21','17:00:00',0,171,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 21:10:31','riya','2025-11-22 09:41:24',0),(11216,2526,0,0,3611,'2025-11-21','17:00:00',0,171,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 21:10:31','riya','2025-11-22 09:41:24',0),(11217,2526,0,0,3611,'2025-11-21','17:00:00',0,171,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 21:10:31','riya','2025-11-22 09:41:24',0),(11218,2526,0,0,3611,'2025-11-21','17:00:00',0,171,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 21:10:31','riya','2025-11-22 09:41:24',0),(11219,2526,0,0,3954,'2025-11-22','22:00:00',0,182,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',163,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 09:47:41','riya','2025-11-22 14:36:56',0),(11220,2526,0,0,3954,'2025-11-22','22:00:00',0,182,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',163,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 09:47:41','riya','2025-11-22 14:36:56',0),(11221,2526,0,0,3955,'2025-11-22','00:00:00',706,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4346,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 09:50:26','priyanshi','2025-11-22 09:50:44',0),(11222,2526,0,0,3956,'2025-11-22','00:00:00',2824,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4347,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-22 09:50:50','janvi','2025-11-22 09:51:33',0),(11223,2526,0,0,3957,'2025-11-22','00:00:00',2825,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4348,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 10:00:56','priyanshi','2025-11-22 10:02:56',0),(11224,2526,0,0,3958,'2025-11-22','00:00:00',2826,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4349,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 10:03:44','priyanshi','2025-11-22 10:05:29',0),(11225,2526,0,0,3959,'2025-11-22','09:30:00',0,183,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 10:05:48','riya','2025-11-22 11:08:42',0),(11226,2526,0,0,3959,'2025-11-22','09:30:00',0,183,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 10:05:48','riya','2025-11-22 11:08:42',0),(11227,2526,0,0,3959,'2025-11-22','09:30:00',0,183,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 21:35:48','riya','2025-11-22 11:08:42',0),(11228,2526,0,0,3959,'2025-11-22','09:30:00',0,183,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 21:35:48','riya','2025-11-22 11:08:42',0),(11229,2526,0,0,3959,'2025-11-22','09:30:00',0,183,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 21:35:48','riya','2025-11-22 11:08:42',0),(11230,2526,0,0,3959,'2025-11-22','09:30:00',0,183,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 21:35:48','riya','2025-11-22 11:08:42',0),(11231,2526,0,0,3959,'2025-11-22','09:30:00',0,183,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 21:35:48','riya','2025-11-22 11:08:42',0),(11232,2526,0,0,3960,'2025-11-22','00:00:00',2827,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4350,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-22 10:15:22','drashti','2025-11-22 10:16:34',0),(11233,2526,0,0,3517,'2025-11-22','10:26:00',0,165,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 10:30:38','','0000-00-00 00:00:00',0),(11234,2526,0,0,3517,'2025-11-21','10:27:00',0,165,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 10:30:38','','0000-00-00 00:00:00',0),(11235,2526,0,0,3517,'2025-11-22','10:27:00',0,165,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 10:30:38','riya','2025-11-26 13:43:40',0),(11236,2526,0,0,3517,'2025-11-22','10:28:00',0,165,'DRC','DRC0020','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 10:30:38','riya','2025-11-26 13:43:40',0),(11237,2526,0,0,3517,'2025-11-22','10:28:00',0,165,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 10:30:38','riya','2025-11-26 13:43:40',0),(11238,2526,0,0,3962,'2025-11-22','10:30:00',0,184,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',168,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 10:34:30','riya','2025-11-23 12:01:03',0),(11239,2526,0,0,3962,'2025-11-22','10:30:00',0,184,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',168,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 10:34:30','riya','2025-11-23 12:01:03',0),(11240,2526,0,0,3962,'2025-11-22','10:30:00',0,184,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',168,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 22:04:30','riya','2025-11-23 12:01:03',0),(11241,2526,0,0,3962,'2025-11-22','10:30:00',0,184,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',168,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 22:04:30','riya','2025-11-23 12:01:03',0),(11242,2526,0,0,3962,'2025-11-22','10:30:00',0,184,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',168,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 22:04:30','riya','2025-11-23 12:01:03',0),(11243,2526,0,0,3962,'2025-11-22','10:30:00',0,184,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',168,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 22:04:30','riya','2025-11-23 12:01:03',0),(11244,2526,0,0,3962,'2025-11-22','10:30:00',0,184,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',168,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 22:04:31','riya','2025-11-23 12:01:03',0),(11245,2526,0,0,3963,'2025-11-22','00:00:00',2828,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4351,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-22 10:35:01','drashti','2025-11-22 10:35:47',0),(11246,2526,0,0,3964,'2025-11-22','00:00:00',2829,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4354,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-22 10:35:15','janvi','2025-11-22 10:40:18',0),(11247,2526,0,0,3965,'2025-11-22','00:00:00',2830,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4352,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 10:37:28','urvashi','2025-11-22 10:37:42',0),(11248,2526,0,0,3966,'2025-11-22','00:00:00',2831,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4353,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 10:39:37','priyanshi','2025-11-22 10:40:16',0),(11249,2526,0,0,3964,'2025-11-22','10:40:18',2829,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',4354,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-22 10:40:18','janvi','2025-11-22 10:40:18',0),(11250,2526,0,0,3964,'2025-11-22','10:40:18',2829,0,'XRY','XRY0223','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',4354,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-22 10:40:18','janvi','2025-11-22 10:40:18',0),(11251,2526,0,0,3964,'2025-11-22','10:40:18',2829,0,'XRY','XRY0045','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',4354,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-22 10:40:18','janvi','2025-11-22 10:40:18',0),(11252,2526,0,0,3861,'2025-11-21','22:40:00',0,179,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 22:13:56','riya','2025-11-22 10:44:59',0),(11253,2526,0,0,3861,'2025-11-21','22:40:00',0,179,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 22:13:56','riya','2025-11-22 10:44:59',0),(11254,2526,0,0,3861,'2025-11-21','22:40:00',0,179,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 22:13:56','vishal','2025-11-30 12:04:11',0),(11255,2526,0,0,3861,'2025-11-22','10:44:00',0,179,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 10:44:59','vishal','2025-11-30 12:04:11',0),(11256,2526,0,0,3861,'2025-11-22','10:44:00',0,179,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 10:44:59','vishal','2025-11-30 12:04:11',0),(11257,2526,0,0,3861,'2025-11-21','10:44:00',0,179,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 10:44:59','','0000-00-00 00:00:00',0),(11258,2526,0,0,3967,'2025-11-22','00:00:00',2832,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4355,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 10:48:03','priyanshi','2025-11-22 10:48:39',0),(11259,2526,0,0,3909,'2025-11-21','10:52:00',0,181,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 10:53:44','riya','2025-12-03 14:04:02',0),(11260,2526,0,0,3909,'2025-11-21','10:52:00',0,181,'WPRC','WPRC0079','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 10:53:44','riya','2025-12-03 14:04:34',0),(11261,2526,0,0,3909,'2025-11-22','10:53:00',0,181,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 10:53:44','','0000-00-00 00:00:00',0),(11262,2526,0,0,3968,'2025-11-22','00:00:00',2833,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4356,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-22 10:55:26','drashti','2025-11-22 10:57:02',0),(11263,2526,0,0,3969,'2025-11-22','00:00:00',2834,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4357,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 10:57:03','priyanshi','2025-11-22 10:57:36',0),(11264,2526,0,0,3970,'2025-11-22','00:00:00',2835,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4358,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 10:59:10','priyanshi','2025-11-22 10:59:46',0),(11265,2526,0,0,3972,'2025-11-22','00:00:00',2836,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4359,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 11:04:25','priyanshi','2025-11-22 11:04:46',0),(11266,2526,0,0,3971,'2025-11-22','11:05:27',2708,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4360,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-22 11:05:27','drashti','2025-11-22 11:05:27',0),(11267,2526,0,0,3959,'2025-11-22','11:08:00',0,183,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 11:08:42','','0000-00-00 00:00:00',0),(11268,2526,0,0,3973,'2025-11-22','11:16:15',2818,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',4361,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-22 11:16:15','drashti','2025-11-22 11:16:15',0),(11269,2526,0,0,3974,'2025-11-22','00:00:00',2837,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4362,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 11:17:24','urvashi','2025-11-22 11:18:15',0),(11270,2526,0,0,3961,'2025-11-22','11:23:50',2290,0,'MOPR','MOPR0006','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4363,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 11:23:50','urvashi','2025-11-22 11:23:50',0),(11271,2526,0,0,3966,'2025-11-22','11:26:11',2831,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4364,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 11:26:11','priyanshi','2025-11-22 11:26:11',0),(11272,2526,0,0,3975,'2025-11-22','00:00:00',2838,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4365,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 11:26:25','urvashi','2025-11-22 11:27:01',0),(11273,2526,0,0,3965,'2025-11-22','11:27:08',2830,0,'NEU1','NEU10019','H','N',1.00,1800,1800,'P',0,0,0.00,0.00,0.00,1800,9999,0,0,'',0,0,'','','','','',2526,'H','O',4366,1,249,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 11:27:08','priyanshi','2025-11-22 11:27:08',0),(11274,2526,0,0,3965,'2025-11-22','11:27:08',2830,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4366,2,346,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 11:27:08','priyanshi','2025-11-22 11:27:08',0),(11275,2526,0,0,3965,'2025-11-22','11:27:08',2830,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4366,3,305,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 11:27:08','priyanshi','2025-11-22 11:27:08',0),(11276,2526,0,0,3976,'2025-11-22','00:00:00',611,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4367,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 11:28:56','priyanshi','2025-11-22 11:29:15',0),(11277,2526,0,0,3977,'2025-11-22','00:00:00',2839,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4368,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-22 11:29:47','janvi','2025-11-22 11:30:54',0),(11278,2526,0,0,3972,'2025-11-22','11:34:49',2836,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',4369,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 11:34:49','urvashi','2025-11-22 12:48:39',0),(11279,2526,0,0,3978,'2025-11-22','00:00:00',2840,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4371,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-22 11:36:52','drashti','2025-11-22 11:37:39',0),(11280,2526,0,0,3969,'2025-11-22','11:37:15',2834,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4370,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 11:37:15','priyanshi','2025-11-22 11:37:15',0),(11281,2526,0,0,3979,'2025-11-22','11:39:25',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4372,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 11:39:25','urvashi','2025-11-22 11:39:25',0),(11282,2526,0,0,3980,'2025-11-22','00:00:00',251,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4373,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-22 11:41:54','drashti','2025-11-22 11:42:29',0),(11283,2526,0,0,3981,'2025-11-22','00:00:00',2841,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4374,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 11:43:23','urvashi','2025-11-22 11:44:05',0),(11284,2526,0,0,3982,'2025-11-22','00:00:00',1669,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4378,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 11:45:31','drashti','2025-11-22 11:56:20',0),(11285,2526,0,0,3981,'2025-11-22','11:48:56',2841,0,'OPWD','OPWD0029','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',4375,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 11:48:56','urvashi','2025-11-22 11:48:56',0),(11286,2526,0,0,3983,'2025-11-22','00:00:00',2842,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',4385,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 11:49:35','priyanshi','2025-11-22 12:10:28',0),(11287,2526,0,0,3984,'2025-11-22','00:00:00',2843,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4376,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 11:51:51','priyanshi','2025-11-22 11:52:19',0),(11288,2526,0,0,3986,'2025-11-22','00:00:00',1656,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-22 11:53:52','drashti','2025-11-21 23:23:52',0),(11289,2526,0,0,3987,'2025-11-22','00:00:00',2844,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4377,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 11:54:51','priyanshi','2025-11-22 11:55:25',0),(11290,2526,0,0,3988,'2025-11-22','00:00:00',2845,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4379,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-22 11:59:50','drashti','2025-11-22 12:00:33',0),(11291,2526,0,0,3974,'2025-11-22','12:02:46',2837,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4380,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-22 12:02:46','drashti','2025-11-22 12:02:46',0),(11292,2526,0,0,3989,'2025-11-22','00:00:00',2846,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4381,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 12:04:59','priyanshi','2025-11-22 12:05:32',0),(11293,2526,0,0,3990,'2025-11-22','00:00:00',2847,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',4382,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-22 12:05:43','drashti','2025-11-22 12:06:32',0),(11294,2526,0,0,3991,'2025-11-22','00:00:00',2848,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',4384,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 12:06:46','urvashi','2025-11-22 12:08:06',0),(11295,2526,0,0,3992,'2025-11-22','00:00:00',2849,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4383,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 12:06:56','priyanshi','2025-11-22 12:07:25',0),(11296,2526,0,0,3973,'2025-11-22','12:11:25',2818,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',4386,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-22 12:11:25','drashti','2025-11-22 12:11:25',0),(11297,2526,0,0,3902,'2025-11-22','11:00:00',0,180,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',0,'','',0,8,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 23:45:04','riya','2025-11-22 15:18:09',0),(11298,2526,0,0,3902,'2025-11-22','11:00:00',0,180,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',0,'','',0,9,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 23:45:04','riya','2025-11-22 15:18:09',0),(11299,2526,0,0,3902,'2025-11-22','11:00:00',0,180,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',0,'','',0,10,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 23:45:04','riya','2025-11-22 15:18:09',0),(11300,2526,0,0,3902,'2025-11-22','11:00:00',0,180,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',159,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 23:45:04','riya','2025-11-22 15:18:09',0),(11301,2526,0,0,3902,'2025-11-22','11:00:00',0,180,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','207','','','',0,'','',0,12,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-21 23:45:04','riya','2025-11-22 15:18:09',0),(11302,2526,0,0,3902,'2025-11-21','12:15:00',0,180,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',159,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 12:16:47','','0000-00-00 00:00:00',0),(11303,2526,0,0,3902,'2025-11-21','12:15:00',0,180,'ROOM','ROOM0008','H','N',2.00,200,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',159,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 12:16:47','riya','2025-11-22 15:19:16',0),(11304,2526,0,0,3902,'2025-11-21','12:15:00',0,180,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,5,0,0,'',0,0,'','','','','',2526,'H','I',159,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 12:16:47','','0000-00-00 00:00:00',0),(11305,2526,0,0,3902,'2025-11-22','12:15:00',0,180,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',159,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 12:16:47','riya','2025-11-22 15:18:09',0),(11306,2526,0,0,3984,'2025-11-22','12:17:21',2843,0,'NEU1','NEU10019','H','N',1.00,1800,1800,'P',0,0,0.00,0.00,0.00,1800,9999,0,0,'',0,0,'','','','','',2526,'H','O',4387,1,249,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 12:17:21','priyanshi','2025-11-22 12:17:21',0),(11307,2526,0,0,3984,'2025-11-22','12:17:21',2843,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4387,2,346,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 12:17:21','priyanshi','2025-11-22 12:17:21',0),(11308,2526,0,0,3984,'2025-11-22','12:17:21',2843,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4387,3,305,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 12:17:21','priyanshi','2025-11-22 12:17:21',0),(11309,2526,0,0,3993,'2025-11-22','00:00:00',2850,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4388,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 12:19:43','urvashi','2025-11-22 12:21:13',0),(11310,2526,0,0,3987,'2025-11-22','12:23:03',2844,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4389,1,92,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 12:23:03','priyanshi','2025-11-22 12:23:03',0),(11311,2526,0,0,3987,'2025-11-22','12:23:03',2844,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4389,2,404,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 12:23:03','priyanshi','2025-11-22 12:23:03',0),(11312,2526,0,0,3987,'2025-11-22','12:23:03',2844,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4389,3,404,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 12:23:03','priyanshi','2025-11-22 12:23:03',0),(11313,2526,0,0,3956,'2025-11-22','12:27:11',2824,0,'XRY','XRY0358','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',4390,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 12:27:11','urvashi','2025-11-22 12:27:11',0),(11314,2526,0,0,3956,'2025-11-22','12:27:11',2824,0,'OPWD','OPWD0023','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,3,0,0,'',0,0,'','','','','',2526,'H','O',4390,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 12:27:11','urvashi','2025-11-22 12:27:11',0),(11315,2526,0,0,3994,'2025-11-22','00:00:00',2851,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4391,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-22 12:27:15','drashti','2025-11-22 12:28:21',0),(11316,2526,0,0,3995,'2025-11-22','00:00:00',2852,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4393,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-22 12:30:22','drashti','2025-11-22 12:31:05',0),(11317,2526,0,0,3977,'2025-11-22','12:30:27',2839,0,'XRY','XRY0244','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',4392,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-22 12:30:27','janvi','2025-11-22 12:30:27',0),(11318,2526,0,0,3960,'2025-11-22','12:38:05',2827,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4394,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 12:38:05','urvashi','2025-11-22 12:38:05',0),(11319,2526,0,0,3996,'2025-11-22','00:00:00',2853,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4395,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 12:44:00','priyanshi','2025-11-22 12:44:47',0),(11320,2526,0,0,3997,'2025-11-22','00:00:00',2191,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4396,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-22 12:45:33','drashti','2025-11-22 12:45:53',0),(11321,2526,0,0,3998,'2025-11-22','00:00:00',2854,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4398,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-22 12:47:59','drashti','2025-11-22 12:49:02',0),(11322,2526,0,0,3972,'2025-11-22','12:50:04',2836,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',4399,1,300,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 12:50:04','urvashi','2025-11-22 12:50:04',0),(11323,2526,0,0,3994,'2025-11-22','12:57:15',2851,0,'OPWD','OPWD0015','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,4,0,0,'',0,0,'','','','','',2526,'H','O',4400,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-22 12:57:15','drashti','2025-11-22 12:57:15',0),(11324,2526,0,0,3999,'2025-11-22','00:00:00',2855,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4401,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-22 13:02:19','drashti','2025-11-22 13:03:59',0),(11325,2526,0,0,3996,'2025-11-22','13:05:53',2853,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4402,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 13:05:53','priyanshi','2025-11-22 13:05:53',0),(11326,2526,0,0,3996,'2025-11-22','13:05:53',2853,0,'NEU1','NEU10019','H','N',1.00,1800,1800,'P',0,0,0.00,0.00,0.00,1800,9999,0,0,'',0,0,'','','','','',2526,'H','O',4402,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 13:05:53','priyanshi','2025-11-22 13:05:53',0),(11327,2526,0,0,3996,'2025-11-22','13:05:53',2853,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4402,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 13:05:53','priyanshi','2025-11-22 13:05:53',0),(11328,2526,0,0,3985,'2025-11-22','13:07:17',2681,0,'OPWD','OPWD0023','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',4403,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 13:07:17','urvashi','2025-11-22 13:07:17',0),(11329,2526,0,0,4000,'2025-11-22','00:00:00',2856,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4404,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 13:08:16','priyanshi','2025-11-22 13:11:13',0),(11330,2526,0,0,3348,'2025-11-22','13:03:00',0,159,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 13:16:05','','0000-00-00 00:00:00',0),(11331,2526,0,0,3348,'2025-11-22','13:05:00',0,159,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 13:16:05','','0000-00-00 00:00:00',0),(11332,2526,0,0,3348,'2025-11-22','13:09:00',0,159,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',158,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 13:16:05','','0000-00-00 00:00:00',0),(11333,2526,0,0,4001,'2025-11-22','13:20:08',1346,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,2,0,0,'',0,0,'','','','','',2526,'H','O',4405,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 13:20:08','priyanshi','2025-11-22 13:20:08',0),(11334,2526,0,0,4000,'2025-11-22','13:25:34',2856,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',4406,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-22 13:25:34','priyanshi','2025-11-22 13:25:34',0),(11335,2526,0,0,3954,'2025-11-21','22:00:00',0,182,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 02:05:10','riya','2025-11-22 14:36:56',0),(11336,2526,0,0,3954,'2025-11-21','22:00:00',0,182,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 02:05:10','riya','2025-11-22 14:36:56',0),(11337,2526,0,0,3954,'2025-11-21','22:00:00',0,182,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 02:05:10','riya','2025-11-22 14:36:56',0),(11338,2526,0,0,3954,'2025-11-21','22:00:00',0,182,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',0,'','',0,4,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 02:05:10','riya','2025-11-23 17:34:09',0),(11339,2526,0,0,3954,'2025-11-21','22:00:00',0,182,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',0,'','',0,5,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 02:05:10','riya','2025-11-23 17:34:09',0),(11340,2526,0,0,3954,'2025-11-21','14:35:00',0,182,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',163,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 14:36:56','','0000-00-00 00:00:00',0),(11341,2526,0,0,3954,'2025-11-21','14:35:00',0,182,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,9,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 14:36:56','riya','2025-11-23 17:34:09',0),(11342,2526,0,0,3954,'2025-11-22','14:35:00',0,182,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',163,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 14:36:56','','0000-00-00 00:00:00',0),(11343,2526,0,0,3954,'2025-11-22','14:36:00',0,182,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',163,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 14:36:56','','0000-00-00 00:00:00',0),(11344,2526,0,0,3764,'2025-11-22','10:00:00',0,178,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',220,21,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:33:55','riya','2025-11-22 16:09:24',0),(11345,2526,0,0,3764,'2025-11-22','10:00:00',0,178,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',220,25,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:33:55','vishal','2025-11-25 16:35:25',0),(11346,2526,0,0,3764,'2025-11-22','10:00:00',0,178,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',220,23,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:33:55','riya','2025-11-22 16:09:24',0),(11347,2526,0,0,3764,'2025-11-22','10:00:00',0,178,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','406','','','',0,'','',0,24,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:33:55','vishal','2025-11-25 16:30:34',0),(11348,2526,0,0,3764,'2025-11-22','10:00:00',0,178,'DRC','DRC0019','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','406','','','',2526,'H','I',220,27,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:33:55','vishal','2025-11-25 16:35:25',0),(11349,2526,0,0,3764,'2025-11-22','16:04:00',0,178,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,28,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 16:09:24','riya','2025-12-06 09:28:53',0),(11350,2526,0,0,3764,'2025-11-22','16:04:00',0,178,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,27,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 16:09:24','','0000-00-00 00:00:00',0),(11351,2526,0,0,3764,'2025-11-21','16:04:00',0,178,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,28,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 16:09:24','','0000-00-00 00:00:00',0),(11352,2526,0,0,3764,'2025-11-21','16:07:00',0,178,'DRC','DRC0020','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,187,0,0,'',0,0,'','','','','',2526,'H','I',220,29,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 16:09:24','','0000-00-00 00:00:00',0),(11353,2526,0,0,3764,'2025-11-22','16:07:00',0,178,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',220,30,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 16:09:24','','0000-00-00 00:00:00',0),(11354,2526,0,0,3764,'2025-11-22','16:08:00',0,178,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',220,31,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 16:09:24','vishal','2025-11-25 16:33:04',0),(11355,2526,0,0,2879,'2025-11-22','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:42:15','riya','2025-12-01 19:41:30',0),(11356,2526,0,0,2879,'2025-11-22','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:42:15','riya','2025-11-27 18:03:22',0),(11357,2526,0,0,2879,'2025-11-22','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:42:15','riya','2025-11-27 18:03:22',0),(11358,2526,0,0,2879,'2025-11-22','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:42:15','riya','2025-11-27 18:03:22',0),(11359,2526,0,0,2879,'2025-11-22','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:42:15','riya','2025-11-27 18:03:22',0),(11360,2526,0,0,2879,'2025-11-22','16:13:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 16:16:12','vishal','2025-11-30 20:00:04',0),(11361,2526,0,0,2879,'2025-11-21','16:13:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 16:16:12','riya','2025-12-01 19:41:30',0),(11362,2526,0,0,2879,'2025-11-22','16:13:00',0,146,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 16:16:12','vishal','2025-11-30 20:00:04',0),(11363,2526,0,0,2879,'2025-11-22','16:15:00',0,146,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 16:16:12','vishal','2025-11-30 20:00:04',0),(11364,2526,0,0,2879,'2025-11-21','16:15:00',0,146,'DRC','DRC0020','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,187,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 16:16:12','riya','2025-12-01 19:41:30',0),(11365,2526,0,0,3621,'2025-11-21','21:30:00',0,172,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:49:49','riya','2025-11-22 16:22:21',0),(11366,2526,0,0,3621,'2025-11-21','21:30:00',0,172,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:49:49','riya','2025-11-22 16:22:21',0),(11367,2526,0,0,3621,'2025-11-21','21:30:00',0,172,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:49:49','riya','2025-11-22 16:22:21',0),(11368,2526,0,0,3621,'2025-11-21','21:30:00',0,172,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:49:49','riya','2025-11-22 16:22:21',0),(11369,2526,0,0,3621,'2025-11-21','21:30:00',0,172,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:49:49','riya','2025-11-22 16:22:21',0),(11370,2526,0,0,3621,'2025-11-22','16:19:00',0,172,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 16:22:21','','0000-00-00 00:00:00',0),(11371,2526,0,0,3630,'2025-11-22','10:15:00',0,174,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:54:14','riya','2025-11-22 16:25:22',0),(11372,2526,0,0,3630,'2025-11-22','10:15:00',0,174,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:54:14','riya','2025-11-22 16:25:22',0),(11373,2526,0,0,3630,'2025-11-22','10:15:00',0,174,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:54:14','riya','2025-11-22 16:25:22',0),(11374,2526,0,0,3630,'2025-11-22','10:15:00',0,174,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:54:14','riya','2025-11-22 16:25:22',0),(11375,2526,0,0,3630,'2025-11-22','10:15:00',0,174,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:54:14','riya','2025-11-22 16:25:22',0),(11376,2526,0,0,3630,'2025-11-22','16:25:00',0,174,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',166,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 16:25:22','','0000-00-00 00:00:00',0),(11377,2526,0,0,3517,'2025-11-22','13:00:00',0,165,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:58:38','vishal','2025-11-25 16:49:36',0),(11378,2526,0,0,3517,'2025-11-22','13:00:00',0,165,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:58:38','riya','2025-11-26 13:34:13',0),(11379,2526,0,0,3517,'2025-11-22','13:00:00',0,165,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,70,0,0,'',0,0,'','208','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:58:38','riya','2025-11-26 13:43:40',0),(11380,2526,0,0,3517,'2025-11-22','13:00:00',0,165,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,70,0,0,'',0,0,'','208','','','',0,'','',0,61,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:58:38','riya','2025-11-23 10:58:06',0),(11381,2526,0,0,3517,'2025-11-22','13:00:00',0,165,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:58:38','riya','2025-11-26 13:43:40',0),(11382,2526,0,0,3909,'2025-11-22','15:00:00',0,181,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:58:38','riya','2025-11-23 12:24:29',0),(11383,2526,0,0,3909,'2025-11-22','15:00:00',0,181,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:58:38','riya','2025-11-23 12:24:29',0),(11384,2526,0,0,3909,'2025-11-22','15:00:00',0,181,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:58:38','riya','2025-11-23 12:24:29',0),(11385,2526,0,0,3909,'2025-11-22','15:00:00',0,181,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:58:38','riya','2025-11-23 12:24:29',0),(11386,2526,0,0,3909,'2025-11-22','15:00:00',0,181,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 03:58:38','riya','2025-11-23 12:24:29',0),(11387,2526,0,0,4002,'2025-11-22','00:00:00',2343,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 17:35:24','urvashi','2025-11-22 05:05:24',0),(11388,2526,0,0,4002,'2025-11-22','17:36:49',2343,0,'SURG','SURG0005','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,0.00,1200,2,0,0,'',0,0,'','','','','',2526,'H','O',4407,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 17:36:49','urvashi','2025-11-22 17:36:49',0),(11389,2526,0,0,4002,'2025-11-22','17:36:49',2343,0,'OPWD','OPWD0013','H','N',4.00,100,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',4407,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 17:36:49','urvashi','2025-11-22 17:36:49',0),(11390,2526,0,0,4003,'2025-11-22','00:00:00',2857,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',4408,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 17:57:03','urvashi','2025-11-22 17:59:09',0),(11391,2526,0,0,4005,'2025-11-22','18:32:24',221,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4409,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 18:32:24','urvashi','2025-11-22 18:34:36',0),(11392,2526,0,0,4004,'2025-11-22','18:55:58',2528,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',4411,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-22 18:55:58','janvi','2025-11-22 18:55:58',0),(11393,2526,0,0,4006,'2025-11-22','00:00:00',1893,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 18:56:33','urvashi','2025-11-22 06:26:33',0),(11394,2526,0,0,4006,'2025-11-22','19:00:13',1893,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4412,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 19:00:13','urvashi','2025-11-22 19:00:13',0),(11395,2526,0,0,4007,'2025-11-22','00:00:00',2858,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4413,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-22 19:06:06','janvi','2025-11-22 19:40:20',0),(11396,2526,0,0,4007,'2025-11-22','19:51:52',2858,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4415,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-22 19:51:52','urvashi','2025-11-22 19:51:52',0),(11397,2526,0,0,4008,'2025-11-23','09:03:17',2818,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',4416,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 09:03:17','drashti','2025-11-23 09:03:17',0),(11398,2526,0,0,4009,'2025-11-23','00:00:00',2859,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 09:04:49','drashti','2025-11-22 20:34:49',0),(11399,2526,0,0,4009,'2025-11-23','09:05:46',2859,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',4417,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 09:05:46','drashti','2025-11-23 09:05:46',0),(11400,2526,0,0,4009,'2025-11-23','09:05:46',2859,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',4417,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 09:05:46','drashti','2025-11-23 09:05:46',0),(11401,2526,0,0,4010,'2025-11-23','03:00:00',0,185,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',165,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 09:56:29','riya','2025-11-24 09:54:24',0),(11402,2526,0,0,4010,'2025-11-23','03:00:00',0,185,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',165,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 09:56:29','riya','2025-11-24 09:54:24',0),(11403,2526,0,0,4010,'2025-11-23','03:00:00',0,185,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',165,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 21:26:30','riya','2025-11-24 09:54:24',0),(11404,2526,0,0,4010,'2025-11-23','03:00:00',0,185,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',165,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 21:26:30','riya','2025-11-24 09:54:24',0),(11405,2526,0,0,4010,'2025-11-23','03:00:00',0,185,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',165,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 21:26:30','riya','2025-11-24 09:54:24',0),(11406,2526,0,0,4010,'2025-11-23','03:00:00',0,185,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',165,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 21:26:30','riya','2025-11-24 09:54:24',0),(11407,2526,0,0,4010,'2025-11-23','03:00:00',0,185,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',165,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 21:26:30','riya','2025-11-24 09:54:24',0),(11408,2526,0,0,4011,'2025-11-23','01:30:00',0,186,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',162,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 10:09:37','riya','2025-11-24 09:48:12',0),(11409,2526,0,0,4011,'2025-11-23','01:30:00',0,186,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',162,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 10:09:37','riya','2025-11-24 09:48:12',0),(11410,2526,0,0,4011,'2025-11-23','01:30:00',0,186,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',162,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 21:39:37','riya','2025-11-24 09:48:12',0),(11411,2526,0,0,4011,'2025-11-23','01:30:00',0,186,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',162,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 21:39:37','riya','2025-11-24 09:48:12',0),(11412,2526,0,0,4011,'2025-11-23','01:30:00',0,186,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',162,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 21:39:37','riya','2025-11-24 09:48:12',0),(11413,2526,0,0,4011,'2025-11-23','01:30:00',0,186,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','411','','','',2526,'H','I',162,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 21:39:37','riya','2025-11-24 12:15:51',0),(11414,2526,0,0,4011,'2025-11-23','01:30:00',0,186,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','411','','','',2526,'H','I',162,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 21:39:37','riya','2025-11-24 12:15:51',0),(11415,2526,0,0,4012,'2025-11-23','00:00:00',2860,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 10:21:07','drashti','2025-11-22 21:51:07',0),(11416,2526,0,0,4012,'2025-11-23','10:23:07',2860,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',4418,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 10:23:07','drashti','2025-11-23 10:23:07',0),(11417,2526,0,0,4012,'2025-11-23','10:23:07',2860,0,'WPRC','WPRC0042','H','N',4.00,100,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',4418,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 10:23:07','drashti','2025-11-23 10:23:07',0),(11418,2526,0,0,4012,'2025-11-23','10:23:07',2860,0,'OPWD','OPWD0019','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',4418,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 10:23:07','drashti','2025-11-23 10:23:07',0),(11419,2526,0,0,4013,'2025-11-23','00:00:00',1672,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 10:24:21','drashti','2025-11-22 21:54:21',0),(11420,2526,0,0,3621,'2025-11-22','21:30:00',0,172,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 21:58:30','riya','2025-11-23 10:35:13',0),(11421,2526,0,0,3621,'2025-11-22','21:30:00',0,172,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 21:58:30','riya','2025-11-23 10:35:13',0),(11422,2526,0,0,3621,'2025-11-22','21:30:00',0,172,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 21:58:30','riya','2025-11-23 10:35:13',0),(11423,2526,0,0,3621,'2025-11-22','21:30:00',0,172,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 21:58:30','riya','2025-11-23 10:35:13',0),(11424,2526,0,0,3621,'2025-11-22','21:30:00',0,172,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',160,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 21:58:30','riya','2025-11-23 10:35:13',0),(11425,2526,0,0,4013,'2025-11-23','10:29:10',1672,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',4419,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 10:29:10','drashti','2025-11-23 10:29:10',0),(11426,2526,0,0,4013,'2025-11-23','10:29:10',1672,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4419,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 10:29:10','drashti','2025-11-23 10:29:10',0),(11427,2526,0,0,4013,'2025-11-23','10:29:10',1672,0,'OPWD','OPWD0019','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',4419,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 10:29:10','drashti','2025-11-23 10:29:10',0),(11428,2526,0,0,4013,'2025-11-23','10:29:10',1672,0,'XRY','XRY0045','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',4419,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 10:29:10','drashti','2025-11-23 10:29:10',0),(11429,2526,0,0,3621,'2025-11-23','10:29:00',0,172,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 10:35:13','','0000-00-00 00:00:00',0),(11430,2526,0,0,3621,'2025-11-23','10:31:00',0,172,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',160,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 10:35:13','','0000-00-00 00:00:00',0),(11431,2526,0,0,4008,'2025-11-23','10:42:32',2818,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',4420,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 10:42:32','drashti','2025-11-23 10:42:32',0),(11432,2526,0,0,3517,'2025-11-23','10:55:00',0,165,'DRC','DRC0020','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 10:58:06','riya','2025-11-26 13:43:40',0),(11433,2526,0,0,3517,'2025-11-23','10:56:00',0,165,'DRC','DRC0020','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 10:58:06','riya','2025-11-26 13:27:13',0),(11434,2526,0,0,3517,'2025-11-22','10:56:00',0,165,'WPRC','WPRC0091','H','N',4.00,500,2000,'A',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 10:58:06','riya','2025-11-23 10:58:45',0),(11435,2526,0,0,3517,'2025-11-22','10:56:00',0,165,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 10:58:06','riya','2025-11-26 13:43:40',0),(11436,2526,0,0,3517,'2025-11-22','10:57:00',0,165,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 10:58:06','riya','2025-11-26 13:27:13',0),(11437,2526,0,0,3517,'2025-11-23','10:58:00',0,165,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 10:58:45','riya','2025-11-26 13:27:13',0),(11438,2526,0,0,4014,'2025-11-23','11:20:22',1288,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4421,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 11:20:21','drashti','2025-11-23 11:20:21',0),(11439,2526,0,0,4015,'2025-11-23','00:00:00',2861,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 11:26:38','drashti','2025-11-22 22:56:38',0),(11440,2526,0,0,4015,'2025-11-23','11:29:15',2861,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',4422,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 11:29:15','drashti','2025-11-23 11:29:15',0),(11441,2526,0,0,4015,'2025-11-23','11:29:15',2861,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',4422,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 11:29:15','drashti','2025-11-23 11:29:15',0),(11442,2526,0,0,3959,'2025-11-23','09:30:00',0,183,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:03:21','riya','2025-11-23 11:52:52',0),(11443,2526,0,0,3959,'2025-11-23','09:30:00',0,183,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:03:21','riya','2025-11-23 11:52:52',0),(11444,2526,0,0,3959,'2025-11-23','09:30:00',0,183,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:03:21','riya','2025-11-23 11:52:52',0),(11445,2526,0,0,3959,'2025-11-23','09:30:00',0,183,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:03:21','riya','2025-11-23 11:52:52',0),(11446,2526,0,0,3959,'2025-11-23','09:30:00',0,183,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:03:21','riya','2025-11-23 11:52:52',0),(11447,2526,0,0,3959,'2025-11-22','11:33:00',0,183,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 11:52:52','','0000-00-00 00:00:00',0),(11448,2526,0,0,3959,'2025-11-22','11:33:00',0,183,'ROOM','ROOM0008','H','N',8.00,100,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 11:52:52','','0000-00-00 00:00:00',0),(11449,2526,0,0,3959,'2025-11-22','11:34:00',0,183,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 11:52:52','','0000-00-00 00:00:00',0),(11450,2526,0,0,3959,'2025-11-23','11:34:00',0,183,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 11:52:52','','0000-00-00 00:00:00',0),(11451,2526,0,0,3959,'2025-11-23','11:41:00',0,183,'WPRC','WPRC0115','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,5000.00,5000,78,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 11:52:52','','0000-00-00 00:00:00',0),(11452,2526,0,0,3959,'2025-11-23','11:44:00',0,183,'WPRC','WPRC0104','H','N',1.00,8000,8000,'P',0,0,0.00,0.00,8000.00,8000,9999,0,0,'',0,0,'','','','','',0,'','',0,25,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 11:52:52','riya','2025-11-24 12:10:54',0),(11453,2526,0,0,3959,'2025-11-23','11:44:00',0,183,'ROOM','ROOM0008','H','N',10.00,100,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 11:52:52','vishal','2025-11-25 11:13:25',0),(11454,2526,0,0,3959,'2025-11-22','11:44:00',0,183,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 11:52:52','','0000-00-00 00:00:00',0),(11455,2526,0,0,3959,'2025-11-23','11:44:00',0,183,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 11:52:52','','0000-00-00 00:00:00',0),(11456,2526,0,0,3959,'2025-11-22','11:45:00',0,183,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 11:52:52','','0000-00-00 00:00:00',0),(11457,2526,0,0,3959,'2025-11-22','11:45:00',0,183,'WPRC','WPRC0087','H','N',4.00,500,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 11:52:52','vishal','2025-11-25 10:34:08',0),(11458,2526,0,0,3959,'2025-11-23','11:45:00',0,183,'WPRC','WPRC0087','H','N',4.00,500,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 11:52:52','','0000-00-00 00:00:00',0),(11459,2526,0,0,3959,'2025-11-22','11:46:00',0,183,'ROOM','ROOM0004','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 11:52:52','riya','2025-11-27 14:29:06',0),(11460,2526,0,0,3959,'2025-11-22','11:46:00',0,183,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 11:52:52','','0000-00-00 00:00:00',0),(11461,2526,0,0,3959,'2025-11-23','11:46:00',0,183,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 11:52:52','riya','2025-11-27 14:29:06',0),(11462,2526,0,0,3959,'2025-11-23','11:50:00',0,183,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,78,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 11:52:52','','0000-00-00 00:00:00',0),(11463,2526,0,0,3959,'2025-11-22','11:51:00',0,183,'DRC','DRC0020','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,212,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 11:52:52','','0000-00-00 00:00:00',0),(11464,2526,0,0,3962,'2025-11-23','10:30:00',0,184,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',168,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:26:14','riya','2025-11-23 12:01:03',0),(11465,2526,0,0,3962,'2025-11-23','10:30:00',0,184,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',168,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:26:14','riya','2025-11-23 12:01:03',0),(11466,2526,0,0,3962,'2025-11-23','10:30:00',0,184,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',168,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:26:14','riya','2025-11-23 12:01:03',0),(11467,2526,0,0,3962,'2025-11-23','10:30:00',0,184,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',168,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:26:14','riya','2025-11-23 12:01:03',0),(11468,2526,0,0,3962,'2025-11-23','10:30:00',0,184,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',168,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:26:14','riya','2025-11-23 12:01:03',0),(11469,2526,0,0,3962,'2025-11-22','11:56:00',0,184,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',168,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:01:03','','0000-00-00 00:00:00',0),(11470,2526,0,0,3962,'2025-11-22','11:56:00',0,184,'WPRC','WPRC0080','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',168,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:01:03','','0000-00-00 00:00:00',0),(11471,2526,0,0,3962,'2025-11-23','11:57:00',0,184,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',168,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:01:03','','0000-00-00 00:00:00',0),(11472,2526,0,0,3962,'2025-11-22','11:57:00',0,184,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',168,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:01:03','','0000-00-00 00:00:00',0),(11473,2526,0,0,3962,'2025-11-22','11:58:00',0,184,'WPRC','WPRC0086','H','N',2.00,200,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',168,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:01:03','vishal','2025-11-25 12:31:22',0),(11474,2526,0,0,3962,'2025-11-23','11:58:00',0,184,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',168,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:01:03','','0000-00-00 00:00:00',0),(11475,2526,0,0,3962,'2025-11-22','11:58:00',0,184,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',168,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:01:03','','0000-00-00 00:00:00',0),(11476,2526,0,0,3962,'2025-11-23','11:58:00',0,184,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',168,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:01:03','','0000-00-00 00:00:00',0),(11477,2526,0,0,3962,'2025-11-22','11:59:00',0,184,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',168,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:01:03','','0000-00-00 00:00:00',0),(11478,2526,0,0,3764,'2025-11-23','10:00:00',0,178,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','213','','','',2526,'H','I',220,32,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:43:38','riya','2025-11-23 12:21:36',0),(11479,2526,0,0,3764,'2025-11-23','10:00:00',0,178,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','213','','','',2526,'H','I',220,34,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:43:38','vishal','2025-11-25 16:35:25',0),(11480,2526,0,0,3764,'2025-11-23','10:00:00',0,178,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','213','','','',2526,'H','I',220,32,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:43:38','vishal','2025-11-25 16:35:25',0),(11481,2526,0,0,3764,'2025-11-23','10:00:00',0,178,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','213','','','',0,'','',0,35,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:43:38','vishal','2025-11-25 16:30:34',0),(11482,2526,0,0,3764,'2025-11-23','10:00:00',0,178,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','213','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:43:38','riya','2025-11-23 12:21:36',0),(11483,2526,0,0,3764,'2025-11-23','12:14:00',0,178,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,36,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:21:36','','0000-00-00 00:00:00',0),(11484,2526,0,0,3764,'2025-11-23','12:14:00',0,178,'WPRC','WPRC0078','H','N',2.00,300,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,37,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:21:36','','0000-00-00 00:00:00',0),(11485,2526,0,0,3764,'2025-11-23','12:15:00',0,178,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,38,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:21:36','','0000-00-00 00:00:00',0),(11486,2526,0,0,3764,'2025-11-23','12:15:00',0,178,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,39,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:21:36','','0000-00-00 00:00:00',0),(11487,2526,0,0,3764,'2025-11-23','12:16:00',0,178,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',220,40,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:21:36','','0000-00-00 00:00:00',0),(11488,2526,0,0,3764,'2025-11-23','12:16:00',0,178,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',220,41,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:21:36','','0000-00-00 00:00:00',0),(11489,2526,0,0,3764,'2025-11-23','12:17:00',0,178,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,213,0,0,'',0,0,'','','','','',2526,'H','I',220,40,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:21:36','vishal','2025-11-25 16:30:34',0),(11490,2526,0,0,3764,'2025-11-23','12:19:00',0,178,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','','','','',0,'','',0,43,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:21:36','vishal','2025-11-25 16:30:34',0),(11491,2526,0,0,3764,'2025-11-23','12:20:00',0,178,'WPRC','WPRC0097','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,213,0,0,'',0,0,'','','','','',2526,'H','I',220,42,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:21:36','vishal','2025-11-25 16:33:04',0),(11492,2526,0,0,3861,'2025-11-22','22:40:00',0,179,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:52:04','riya','2025-11-23 12:22:42',0),(11493,2526,0,0,3861,'2025-11-22','22:40:00',0,179,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:52:04','vishal','2025-11-30 12:04:11',0),(11494,2526,0,0,3861,'2025-11-22','22:40:00',0,179,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:52:04','vishal','2025-11-30 12:04:11',0),(11495,2526,0,0,3861,'2025-11-22','22:40:00',0,179,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:52:04','riya','2025-11-23 12:22:42',0),(11496,2526,0,0,3861,'2025-11-22','22:40:00',0,179,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-22 23:52:04','riya','2025-11-23 12:22:42',0),(11497,2526,0,0,3861,'2025-11-23','12:22:00',0,179,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:22:42','vishal','2025-11-30 12:04:11',0),(11498,2526,0,0,3861,'2025-11-23','12:22:00',0,179,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:22:42','vishal','2025-11-30 12:04:11',0),(11499,2526,0,0,3909,'2025-11-23','12:23:00',0,181,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:24:29','','0000-00-00 00:00:00',0),(11500,2526,0,0,3909,'2025-11-23','12:23:00',0,181,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:24:29','riya','2025-12-03 16:39:44',0),(11501,2526,0,0,3909,'2025-11-21','12:23:00',0,181,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:24:29','','0000-00-00 00:00:00',0),(11502,2526,0,0,3909,'2025-11-22','12:24:00',0,181,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:24:29','','0000-00-00 00:00:00',0),(11503,2526,0,0,3909,'2025-11-22','12:24:00',0,181,'DRC','DRC0020','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,8,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:25:16','','0000-00-00 00:00:00',0),(11504,2526,0,0,4016,'2025-11-23','00:00:00',2862,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-23 12:28:53','drashti','2025-11-22 23:58:53',0),(11505,2526,0,0,4016,'2025-11-23','12:33:43',2862,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,82,'',0,0,'','','','','',2526,'H','O',4423,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'drashti','2025-11-23 12:33:43','drashti','2025-11-23 12:33:43',0),(11506,2526,0,0,4016,'2025-11-23','12:33:43',2862,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4423,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'drashti','2025-11-23 12:33:43','drashti','2025-11-23 12:33:43',0),(11507,2526,0,0,4016,'2025-11-23','12:33:43',2862,0,'OTCG','OTCG0033','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,4,0,0,'',0,0,'','','','','',2526,'H','O',4423,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'drashti','2025-11-23 12:33:43','drashti','2025-11-23 12:33:43',0),(11508,2526,0,0,2879,'2025-11-23','12:30:00',0,146,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:34:02','riya','2025-12-01 20:12:39',0),(11509,2526,0,0,2879,'2025-11-23','12:31:00',0,146,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:34:02','riya','2025-12-01 19:41:30',0),(11510,2526,0,0,2879,'2025-11-22','12:31:00',0,146,'WPRC','WPRC0105','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:34:02','riya','2025-12-01 19:41:30',0),(11511,2526,0,0,2879,'2025-11-23','12:32:00',0,146,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:34:02','vishal','2025-11-30 20:00:04',0),(11512,2526,0,0,2879,'2025-11-22','12:32:00',0,146,'DRC','DRC0020','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:34:02','riya','2025-12-01 19:41:30',0),(11513,2526,0,0,3473,'2025-11-22','17:30:00',0,163,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:14:33','riya','2025-11-23 12:48:14',0),(11514,2526,0,0,3473,'2025-11-22','17:30:00',0,163,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:14:33','riya','2025-11-23 12:48:14',0),(11515,2526,0,0,3473,'2025-11-22','17:30:00',0,163,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:14:33','riya','2025-11-23 12:48:14',0),(11516,2526,0,0,3473,'2025-11-22','17:30:00',0,163,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:14:33','riya','2025-11-23 12:48:14',0),(11517,2526,0,0,3473,'2025-11-22','17:30:00',0,163,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',161,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:14:33','riya','2025-11-23 12:48:14',0),(11518,2526,0,0,3473,'2025-11-23','12:46:00',0,163,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',161,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 12:48:14','','0000-00-00 00:00:00',0),(11519,2526,0,0,3611,'2025-11-22','17:00:00',0,171,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:25:07','vishal','2025-11-25 15:22:18',0),(11520,2526,0,0,3611,'2025-11-22','17:00:00',0,171,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:25:07','vishal','2025-11-25 15:22:18',0),(11521,2526,0,0,3611,'2025-11-22','17:00:00',0,171,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:25:07','vishal','2025-11-25 15:22:18',0),(11522,2526,0,0,3611,'2025-11-22','17:00:00',0,171,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:25:07','vishal','2025-11-25 15:22:18',0),(11523,2526,0,0,3611,'2025-11-22','17:00:00',0,171,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:25:07','vishal','2025-11-25 15:22:18',0),(11524,2526,0,0,3630,'2025-11-23','10:15:00',0,174,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:25:08','riya','2025-11-23 17:31:21',0),(11525,2526,0,0,3630,'2025-11-23','10:15:00',0,174,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:25:08','riya','2025-11-23 17:31:21',0),(11526,2526,0,0,3630,'2025-11-23','10:15:00',0,174,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:25:08','riya','2025-11-23 17:31:21',0),(11527,2526,0,0,3630,'2025-11-23','10:15:00',0,174,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:25:08','riya','2025-11-23 17:31:21',0),(11528,2526,0,0,3630,'2025-11-23','10:15:00',0,174,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:25:08','riya','2025-11-23 17:31:21',0),(11529,2526,0,0,3954,'2025-11-22','22:00:00',0,182,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:25:08','riya','2025-11-23 17:34:09',0),(11530,2526,0,0,3954,'2025-11-22','22:00:00',0,182,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:25:08','riya','2025-11-23 17:34:09',0),(11531,2526,0,0,3954,'2025-11-22','22:00:00',0,182,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','305','','','',2526,'H','I',163,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:25:08','riya','2025-11-24 12:53:36',0),(11532,2526,0,0,3954,'2025-11-22','22:00:00',0,182,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','305','','','',2526,'H','I',163,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:25:08','riya','2025-11-24 12:53:36',0),(11533,2526,0,0,3954,'2025-11-22','22:00:00',0,182,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 00:25:08','riya','2025-11-23 17:34:09',0),(11534,2526,0,0,3473,'2025-11-19','13:33:00',0,163,'SURG','SURG0017','H','N',1.00,10000,10000,'P',0,0,0.00,0.00,10000.00,10000,3,0,0,'',0,0,'','','','','',2526,'H','I',161,55,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 13:35:37','','0000-00-00 00:00:00',0),(11535,2526,0,0,4017,'2025-11-23','15:00:00',0,187,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',0,'','',0,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 15:21:02','riya','2025-11-24 11:19:41',0),(11536,2526,0,0,4017,'2025-11-23','15:00:00',0,187,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',0,'','',0,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 15:21:02','riya','2025-11-24 11:19:41',0),(11537,2526,0,0,4017,'2025-11-23','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 02:51:02','riya','2025-11-24 11:19:41',0),(11538,2526,0,0,4017,'2025-11-23','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 02:51:02','riya','2025-11-24 11:19:41',0),(11539,2526,0,0,4017,'2025-11-23','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 02:51:02','riya','2025-11-24 11:19:41',0),(11540,2526,0,0,4017,'2025-11-23','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-23 02:51:02','riya','2025-11-24 11:19:41',0),(11541,2526,0,0,4017,'2025-11-23','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 02:51:02','riya','2025-11-24 11:19:41',0),(11542,2526,0,0,3909,'2025-11-23','15:00:00',0,181,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',0,'','',0,20,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:43:42','vishal','2025-11-25 16:23:51',0),(11543,2526,0,0,3909,'2025-11-23','15:00:00',0,181,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',0,'','',0,21,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:43:42','vishal','2025-11-25 16:23:51',0),(11544,2526,0,0,3909,'2025-11-23','15:00:00',0,181,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:43:42','riya','2025-11-23 17:13:50',0),(11545,2526,0,0,3909,'2025-11-23','15:00:00',0,181,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:43:42','riya','2025-11-23 17:13:50',0),(11546,2526,0,0,3909,'2025-11-23','15:00:00',0,181,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',0,'','',0,24,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:43:42','vishal','2025-11-25 16:23:51',0),(11547,2526,0,0,2879,'2025-11-23','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:44:48','vishal','2025-11-30 20:00:04',0),(11548,2526,0,0,2879,'2025-11-23','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:44:48','vishal','2025-11-30 20:00:04',0),(11549,2526,0,0,2879,'2025-11-23','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:44:48','vishal','2025-11-30 20:00:04',0),(11550,2526,0,0,2879,'2025-11-23','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:44:48','vishal','2025-11-30 20:00:04',0),(11551,2526,0,0,2879,'2025-11-23','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:44:48','vishal','2025-11-30 20:00:04',0),(11552,2526,0,0,3517,'2025-11-23','13:00:00',0,165,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:44:48','riya','2025-11-26 13:34:13',0),(11553,2526,0,0,3517,'2025-11-23','13:00:00',0,165,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:44:48','riya','2025-11-26 13:43:40',0),(11554,2526,0,0,3517,'2025-11-23','13:00:00',0,165,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,70,0,0,'',0,0,'','402','','','',0,'','',0,70,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:44:48','vishal','2025-11-25 16:44:51',0),(11555,2526,0,0,3517,'2025-11-23','13:00:00',0,165,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,70,0,0,'',0,0,'','402','','','',0,'','',0,71,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:44:48','vishal','2025-11-25 16:44:51',0),(11556,2526,0,0,3517,'2025-11-23','13:00:00',0,165,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:44:48','riya','2025-11-24 10:03:58',0),(11557,2526,0,0,3611,'2025-11-23','17:00:00',0,171,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:44:48','vishal','2025-11-25 15:22:18',0),(11558,2526,0,0,3611,'2025-11-23','17:00:00',0,171,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:44:48','vishal','2025-11-25 15:22:18',0),(11559,2526,0,0,3611,'2025-11-23','17:00:00',0,171,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:44:48','vishal','2025-11-25 15:22:18',0),(11560,2526,0,0,3611,'2025-11-23','17:00:00',0,171,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:44:48','vishal','2025-11-25 15:22:18',0),(11561,2526,0,0,3611,'2025-11-23','17:00:00',0,171,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 04:44:48','vishal','2025-11-25 15:22:18',0),(11562,2526,0,0,3630,'2025-11-23','17:29:00',0,174,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',166,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 17:31:21','','0000-00-00 00:00:00',0),(11563,2526,0,0,3630,'2025-11-22','17:30:00',0,174,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','','','','',2526,'H','I',166,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 17:31:21','','0000-00-00 00:00:00',0),(11564,2526,0,0,3954,'2025-11-22','17:32:00',0,182,'ROOM','ROOM0008','H','N',9.00,100,900,'P',0,0,0.00,0.00,900.00,900,9999,0,0,'',0,0,'','','','','',2526,'H','I',163,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 17:34:09','','0000-00-00 00:00:00',0),(11565,2526,0,0,3954,'2025-11-21','17:32:00',0,182,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',163,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 17:34:09','','0000-00-00 00:00:00',0),(11566,2526,0,0,3954,'2025-11-23','17:33:00',0,182,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',163,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 17:34:09','','0000-00-00 00:00:00',0),(11567,2526,0,0,3954,'2025-11-21','17:33:00',0,182,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',163,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 17:34:09','','0000-00-00 00:00:00',0),(11568,2526,0,0,4018,'2025-11-23','18:30:00',0,188,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',164,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 18:24:37','riya','2025-11-23 20:33:00',0),(11569,2526,0,0,4018,'2025-11-23','18:30:00',0,188,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',164,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 18:24:37','riya','2025-11-23 20:33:00',0),(11570,2526,0,0,4018,'2025-11-23','18:30:00',0,188,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',164,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 08:02:48','riya','2025-11-23 20:33:00',0),(11571,2526,0,0,4018,'2025-11-23','18:30:00',0,188,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',164,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 08:02:48','riya','2025-11-23 20:33:00',0),(11572,2526,0,0,4018,'2025-11-23','18:30:00',0,188,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',164,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 08:02:48','riya','2025-11-23 20:33:00',0),(11573,2526,0,0,4018,'2025-11-23','18:30:00',0,188,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-23 08:02:48','riya','2025-11-23 20:33:00',0),(11574,2526,0,0,4018,'2025-11-23','18:30:00',0,188,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',164,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 08:02:48','riya','2025-11-23 20:33:00',0),(11575,2526,0,0,4019,'2025-11-23','20:30:00',0,189,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',171,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 20:37:38','vishal','2025-11-25 17:01:38',0),(11576,2526,0,0,4019,'2025-11-23','20:30:00',0,189,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',171,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 20:37:38','vishal','2025-11-25 17:01:38',0),(11577,2526,0,0,4019,'2025-11-23','20:30:00',0,189,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',171,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 08:07:38','vishal','2025-11-25 17:01:38',0),(11578,2526,0,0,4019,'2025-11-23','20:30:00',0,189,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',171,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 08:07:38','vishal','2025-11-26 12:04:09',0),(11579,2526,0,0,4019,'2025-11-23','20:30:00',0,189,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',171,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 08:07:38','vishal','2025-11-25 17:01:38',0),(11580,2526,0,0,4019,'2025-11-23','20:30:00',0,189,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-23 08:07:38','vishal','2025-11-25 17:01:38',0),(11581,2526,0,0,4019,'2025-11-23','20:30:00',0,189,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-23 08:07:38','vishal','2025-11-25 17:01:38',0),(11582,2526,0,0,4020,'2025-11-24','08:50:00',0,190,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',167,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 08:51:26','vishal','2025-11-25 12:01:58',0),(11583,2526,0,0,4020,'2025-11-24','08:50:00',0,190,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',167,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 08:51:26','vishal','2025-11-25 12:01:58',0),(11584,2526,0,0,4020,'2025-11-24','08:50:00',0,190,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',167,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 20:21:27','vishal','2025-11-25 12:01:58',0),(11585,2526,0,0,4020,'2025-11-24','08:50:00',0,190,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',167,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 20:21:27','vishal','2025-11-25 12:01:58',0),(11586,2526,0,0,4020,'2025-11-24','08:50:00',0,190,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',167,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 20:21:27','vishal','2025-11-25 12:01:58',0),(11587,2526,0,0,4020,'2025-11-24','08:50:00',0,190,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','409','','','',2526,'H','I',167,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 20:21:27','vishal','2025-11-25 12:01:58',0),(11588,2526,0,0,4020,'2025-11-24','08:50:00',0,190,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','409','','','',2526,'H','I',167,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 20:21:27','vishal','2025-11-25 12:01:58',0),(11589,2526,0,0,4021,'2025-11-24','00:00:00',2863,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4424,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:12:45','reception','2025-11-24 09:13:53',0),(11590,2526,0,0,4022,'2025-11-24','00:00:00',2864,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:19:05','reception','2025-11-23 20:49:05',0),(11591,2526,0,0,4022,'2025-11-24','09:22:39',2864,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',4425,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-24 09:22:39','reception','2025-11-24 09:22:39',0),(11592,2526,0,0,4022,'2025-11-24','09:22:39',2864,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4425,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-24 09:22:39','reception','2025-11-24 09:22:39',0),(11593,2526,0,0,4022,'2025-11-24','09:22:39',2864,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,83,'',0,0,'','','','','',2526,'H','O',4425,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-24 09:22:39','reception','2025-11-24 09:22:39',0),(11594,2526,0,0,4022,'2025-11-24','09:22:39',2864,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4425,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-24 09:22:39','reception','2025-11-24 09:22:39',0),(11595,2526,0,0,4023,'2025-11-24','09:24:02',2118,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4426,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:24:02','reception','2025-11-24 09:24:02',0),(11596,2526,0,0,4024,'2025-11-24','00:00:00',2865,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:25:37','reception','2025-11-23 20:55:37',0),(11597,2526,0,0,4024,'2025-11-24','09:26:51',2865,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',4427,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:26:51','reception','2025-11-24 09:26:51',0),(11598,2526,0,0,4024,'2025-11-24','09:26:51',2865,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4427,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:26:51','reception','2025-11-24 09:26:51',0),(11599,2526,0,0,4025,'2025-11-24','00:00:00',2866,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:28:49','reception','2025-11-23 20:58:49',0),(11600,2526,0,0,4025,'2025-11-24','09:30:16',2866,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',4428,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:30:16','reception','2025-11-24 09:30:16',0),(11601,2526,0,0,4025,'2025-11-24','09:30:16',2866,0,'OPWD','OPWD0013','H','N',5.00,100,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',4428,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:30:16','reception','2025-11-24 09:30:16',0),(11602,2526,0,0,4026,'2025-11-24','00:00:00',2867,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4477,1,200,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 09:31:27','drashti','2025-11-24 11:53:26',0),(11603,2526,0,0,4027,'2025-11-24','00:00:00',2868,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:31:45','reception','2025-11-23 21:01:45',0),(11604,2526,0,0,4027,'2025-11-24','09:33:07',2868,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',4429,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:33:07','reception','2025-11-24 09:33:07',0),(11605,2526,0,0,4028,'2025-11-24','00:00:00',2869,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:36:04','reception','2025-11-23 21:06:04',0),(11606,2526,0,0,4028,'2025-11-24','09:36:40',2869,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',4430,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:36:40','reception','2025-11-24 09:36:40',0),(11607,2526,0,0,4029,'2025-11-24','00:00:00',2870,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:38:49','reception','2025-11-23 21:08:49',0),(11608,2526,0,0,4011,'2025-11-24','01:30:00',0,186,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',162,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 21:16:40','riya','2025-11-24 09:48:12',0),(11609,2526,0,0,4011,'2025-11-24','01:30:00',0,186,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',162,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 21:16:40','riya','2025-11-24 09:48:12',0),(11610,2526,0,0,4011,'2025-11-24','01:30:00',0,186,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',162,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 21:16:40','riya','2025-11-24 09:48:12',0),(11611,2526,0,0,4011,'2025-11-24','01:30:00',0,186,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','411','','','',2526,'H','I',162,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 21:16:40','riya','2025-11-24 12:15:51',0),(11612,2526,0,0,4011,'2025-11-24','01:30:00',0,186,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','411','','','',0,'','',0,12,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 21:16:40','riya','2025-11-24 12:15:51',0),(11613,2526,0,0,4030,'2025-11-24','00:00:00',2407,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4431,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:46:56','reception','2025-11-24 09:47:19',0),(11614,2526,0,0,4011,'2025-11-23','09:46:00',0,186,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',162,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 09:48:12','','0000-00-00 00:00:00',0),(11615,2526,0,0,4029,'2025-11-24','09:49:05',2870,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',4432,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:49:05','reception','2025-11-24 09:49:05',0),(11616,2526,0,0,4029,'2025-11-24','09:49:05',2870,0,'OPWD','OPWD0032','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',4432,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:49:05','reception','2025-11-24 09:49:05',0),(11617,2526,0,0,2879,'2025-11-24','09:48:00',0,146,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 09:49:25','riya','2025-11-27 18:03:22',0),(11618,2526,0,0,2879,'2025-11-24','09:48:00',0,146,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 09:49:25','riya','2025-11-27 18:03:22',0),(11619,2526,0,0,2879,'2025-11-24','09:48:00',0,146,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 09:49:25','riya','2025-11-27 18:03:22',0),(11620,2526,0,0,4010,'2025-11-24','03:00:00',0,185,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',165,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 21:20:09','vishal','2025-11-24 21:14:26',0),(11621,2526,0,0,4010,'2025-11-24','03:00:00',0,185,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',165,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 21:20:09','vishal','2025-11-24 21:15:20',0),(11622,2526,0,0,4010,'2025-11-24','03:00:00',0,185,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',165,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 21:20:09','riya','2025-11-24 09:54:24',0),(11623,2526,0,0,4010,'2025-11-24','03:00:00',0,185,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',2526,'H','I',165,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 21:20:09','riya','2025-11-24 09:54:24',0),(11624,2526,0,0,4010,'2025-11-24','03:00:00',0,185,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',2526,'H','I',165,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 21:20:09','riya','2025-11-24 09:54:24',0),(11625,2526,0,0,4031,'2025-11-24','00:00:00',1500,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4433,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:53:54','reception','2025-11-24 09:54:22',0),(11626,2526,0,0,4010,'2025-11-23','09:50:00',0,185,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',165,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 09:54:24','','0000-00-00 00:00:00',0),(11627,2526,0,0,4010,'2025-11-23','09:50:00',0,185,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',165,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 09:54:24','','0000-00-00 00:00:00',0),(11628,2526,0,0,4010,'2025-11-23','09:52:00',0,185,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',165,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 09:54:24','','0000-00-00 00:00:00',0),(11629,2526,0,0,4010,'2025-11-24','09:52:00',0,185,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',165,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 09:54:24','vishal','2025-11-24 21:14:26',0),(11630,2526,0,0,4032,'2025-11-24','00:00:00',2871,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4434,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:55:08','reception','2025-11-24 09:57:10',0),(11631,2526,0,0,4033,'2025-11-24','00:00:00',1850,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4435,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 09:58:16','reception','2025-11-24 09:59:03',0),(11632,2526,0,0,4010,'2025-11-23','09:57:00',0,185,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,213,0,0,'',0,0,'','','','','',2526,'H','I',165,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 09:59:52','','0000-00-00 00:00:00',0),(11633,2526,0,0,4010,'2025-11-23','09:59:00',0,185,'XRY','XRY0045','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',165,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 09:59:52','riya','2025-11-24 10:00:13',0),(11634,2526,0,0,3954,'2025-11-23','22:00:00',0,182,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 21:30:41','riya','2025-11-24 10:01:24',0),(11635,2526,0,0,3954,'2025-11-23','22:00:00',0,182,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 21:30:41','riya','2025-11-24 10:01:24',0),(11636,2526,0,0,3954,'2025-11-23','22:00:00',0,182,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 21:30:41','riya','2025-11-24 10:01:24',0),(11637,2526,0,0,3954,'2025-11-23','22:00:00',0,182,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 21:30:41','riya','2025-11-24 10:01:24',0),(11638,2526,0,0,3954,'2025-11-23','22:00:00',0,182,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',163,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 21:30:41','riya','2025-11-24 10:01:24',0),(11639,2526,0,0,3954,'2025-11-24','10:00:00',0,182,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',163,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 10:01:24','riya','2025-11-24 12:13:51',0),(11640,2526,0,0,3517,'2025-11-24','10:01:00',0,165,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 10:03:58','riya','2025-11-26 13:43:40',0),(11641,2526,0,0,3517,'2025-11-22','10:02:00',0,165,'DRC','DRC0020','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 10:03:58','riya','2025-11-26 13:43:40',0),(11642,2526,0,0,3630,'2025-11-24','10:04:00',0,174,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',166,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 10:05:20','','0000-00-00 00:00:00',0),(11643,2526,0,0,3962,'2025-11-23','10:06:00',0,184,'XRY','XRY0045','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',168,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 10:07:20','','0000-00-00 00:00:00',0),(11644,2526,0,0,3962,'2025-11-24','10:06:00',0,184,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',168,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 10:07:20','','0000-00-00 00:00:00',0),(11645,2526,0,0,3962,'2025-11-23','10:07:00',0,184,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,212,0,0,'',0,0,'','','','','',2526,'H','I',168,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 10:08:07','','0000-00-00 00:00:00',0),(11646,2526,0,0,4034,'2025-11-24','00:00:00',2872,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4437,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 10:14:16','drashti','2025-11-24 10:17:04',0),(11647,2526,0,0,4035,'2025-11-24','00:00:00',2873,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4436,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 10:14:38','reception','2025-11-24 10:15:02',0),(11648,2526,0,0,4036,'2025-11-24','00:00:00',2874,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 10:14:51','janvi','2025-11-23 21:44:51',0),(11649,2526,0,0,4037,'2025-11-24','00:00:00',2875,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4439,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 10:15:12','drashti','2025-11-24 10:17:33',0),(11650,2526,0,0,4038,'2025-11-24','00:00:00',151,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4438,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 10:16:31','reception','2025-11-24 10:17:11',0),(11651,2526,0,0,4040,'2025-11-24','00:00:00',2390,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4440,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 10:20:49','reception','2025-11-24 10:21:25',0),(11652,2526,0,0,4041,'2025-11-24','00:00:00',2876,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4441,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 10:22:32','reception','2025-11-24 10:22:55',0),(11653,2526,0,0,4042,'2025-11-24','00:00:00',2877,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4442,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 10:28:42','drashti','2025-11-24 10:29:10',0),(11654,2526,0,0,4043,'2025-11-24','00:00:00',2878,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4443,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 10:29:27','reception','2025-11-24 10:31:21',0),(11655,2526,0,0,4044,'2025-11-24','00:00:00',2879,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4444,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 10:33:08','drashti','2025-11-24 10:33:38',0),(11656,2526,0,0,3962,'2025-11-24','10:30:00',0,184,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',168,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:03:13','riya','2025-11-24 12:28:52',0),(11657,2526,0,0,3962,'2025-11-24','10:30:00',0,184,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',168,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:03:13','riya','2025-11-24 12:28:52',0),(11658,2526,0,0,3962,'2025-11-24','10:30:00',0,184,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',168,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:03:13','riya','2025-11-24 12:28:52',0),(11659,2526,0,0,3962,'2025-11-24','10:30:00',0,184,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',168,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:03:13','riya','2025-11-24 12:28:52',0),(11660,2526,0,0,3962,'2025-11-24','10:30:00',0,184,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',168,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:03:13','riya','2025-11-24 12:28:52',0),(11661,2526,0,0,4045,'2025-11-24','10:33:44',2693,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4445,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 10:33:44','reception','2025-11-24 10:33:44',0),(11662,2526,0,0,4046,'2025-11-24','00:00:00',2880,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4446,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 10:35:18','reception','2025-11-24 10:35:56',0),(11663,2526,0,0,4047,'2025-11-24','10:30:00',0,191,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',195,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 10:38:56','vishal','2025-11-25 17:14:35',0),(11664,2526,0,0,4047,'2025-11-24','10:30:00',0,191,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',195,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 10:38:56','vishal','2025-11-25 17:14:35',0),(11665,2526,0,0,4047,'2025-11-24','10:30:00',0,191,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:08:56','vishal','2025-11-25 17:14:35',0),(11666,2526,0,0,4047,'2025-11-24','10:30:00',0,191,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:08:56','vishal','2025-11-25 17:14:35',0),(11667,2526,0,0,4047,'2025-11-24','10:30:00',0,191,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:08:56','vishal','2025-11-25 17:14:35',0),(11668,2526,0,0,4047,'2025-11-24','10:30:00',0,191,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:08:56','vishal','2025-11-25 17:14:35',0),(11669,2526,0,0,4047,'2025-11-24','10:30:00',0,191,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:08:56','vishal','2025-11-25 17:14:35',0),(11670,2526,0,0,4048,'2025-11-24','10:39:31',2669,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',4447,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 10:39:31','reception','2025-11-24 10:39:31',0),(11671,2526,0,0,4049,'2025-11-24','00:00:00',2881,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4448,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 10:41:26','janvi','2025-11-24 10:42:03',0),(11672,2526,0,0,4050,'2025-11-24','00:00:00',789,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4449,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 10:47:54','janvi','2025-11-24 10:50:31',0),(11673,2526,0,0,4051,'2025-11-24','00:00:00',2399,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4451,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 10:53:43','reception','2025-11-24 10:54:21',0),(11674,2526,0,0,4052,'2025-11-24','00:00:00',2882,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4453,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 10:55:18','reception','2025-11-24 10:58:42',0),(11675,2526,0,0,4036,'2025-11-24','10:55:25',2874,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',4452,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 10:55:25','janvi','2025-11-24 10:55:25',0),(11676,2526,0,0,4053,'2025-11-24','00:00:00',2489,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4454,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 10:59:28','reception','2025-11-24 10:59:47',0),(11677,2526,0,0,4054,'2025-11-24','11:00:00',0,192,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',173,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 11:00:46','vishal','2025-11-25 16:37:17',0),(11678,2526,0,0,4054,'2025-11-24','11:00:00',0,192,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',173,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 11:00:46','vishal','2025-11-25 16:37:17',0),(11679,2526,0,0,4054,'2025-11-24','11:00:00',0,192,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',2526,'H','I',173,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:30:46','vishal','2025-11-25 16:37:17',0),(11680,2526,0,0,4054,'2025-11-24','11:00:00',0,192,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',2526,'H','I',173,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:30:46','vishal','2025-11-25 16:37:17',0),(11681,2526,0,0,4054,'2025-11-24','11:00:00',0,192,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',2526,'H','I',173,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:30:46','vishal','2025-11-25 16:37:17',0),(11682,2526,0,0,4054,'2025-11-24','11:00:00',0,192,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',2526,'H','I',173,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:30:46','vishal','2025-11-25 16:37:17',0),(11683,2526,0,0,4054,'2025-11-24','11:00:00',0,192,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',2526,'H','I',173,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:30:46','vishal','2025-11-25 16:37:17',0),(11684,2526,0,0,4055,'2025-11-24','00:00:00',2883,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4455,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 11:07:13','drashti','2025-11-24 11:07:43',0),(11685,2526,0,0,4041,'2025-11-24','11:10:14',2876,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4456,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 11:10:14','reception','2025-11-24 11:10:14',0),(11686,2526,0,0,4041,'2025-11-24','11:10:14',2876,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4456,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 11:10:14','reception','2025-11-24 11:10:14',0),(11687,2526,0,0,4041,'2025-11-24','11:10:14',2876,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4456,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 11:10:14','reception','2025-11-24 11:10:14',0),(11688,2526,0,0,4056,'2025-11-24','00:00:00',2884,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 11:12:57','manshi','2025-11-23 22:42:57',0),(11689,2526,0,0,4057,'2025-11-24','00:00:00',2885,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4457,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 11:14:24','drashti','2025-11-24 11:15:59',0),(11690,2526,0,0,4018,'2025-11-23','11:15:00',0,188,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',164,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 11:16:00','','0000-00-00 00:00:00',0),(11691,2526,0,0,4018,'2025-11-23','11:15:00',0,188,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',164,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 11:16:00','','0000-00-00 00:00:00',0),(11692,2526,0,0,4018,'2025-11-24','11:15:00',0,188,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',164,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 11:16:00','vishal','2025-11-24 18:49:15',0),(11693,2526,0,0,4017,'2025-11-23','11:17:00',0,187,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 11:19:41','','0000-00-00 00:00:00',0),(11694,2526,0,0,4017,'2025-11-24','11:17:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 11:19:41','','0000-00-00 00:00:00',0),(11695,2526,0,0,4017,'2025-11-24','11:17:00',0,187,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',0,'','',0,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 11:19:41','riya','2025-11-24 11:35:27',0),(11696,2526,0,0,4017,'2025-11-23','11:18:00',0,187,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,10,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 11:19:41','vishal','2025-11-28 15:44:13',0),(11697,2526,0,0,4017,'2025-11-24','11:18:00',0,187,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,11,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 11:19:41','vishal','2025-11-28 15:44:13',0),(11698,2526,0,0,4017,'2025-11-23','11:18:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 11:19:41','','0000-00-00 00:00:00',0),(11699,2526,0,0,4017,'2025-11-24','11:18:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 11:19:41','','0000-00-00 00:00:00',0),(11700,2526,0,0,4017,'2025-11-24','11:18:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 11:19:41','','0000-00-00 00:00:00',0),(11701,2526,0,0,4017,'2025-11-23','11:18:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 11:19:41','','0000-00-00 00:00:00',0),(11702,2526,0,0,4017,'2025-11-23','11:18:00',0,187,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 11:19:41','','0000-00-00 00:00:00',0),(11703,2526,0,0,4017,'2025-11-24','11:19:00',0,187,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 11:19:41','','0000-00-00 00:00:00',0),(11704,2526,0,0,3861,'2025-11-23','22:40:00',0,179,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:50:07','riya','2025-11-24 11:20:50',0),(11705,2526,0,0,3861,'2025-11-23','22:40:00',0,179,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:50:07','vishal','2025-11-30 12:04:11',0),(11706,2526,0,0,3861,'2025-11-23','22:40:00',0,179,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:50:07','riya','2025-11-24 11:20:50',0),(11707,2526,0,0,3861,'2025-11-23','22:40:00',0,179,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:50:07','riya','2025-11-24 11:20:50',0),(11708,2526,0,0,3861,'2025-11-23','22:40:00',0,179,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 22:50:07','riya','2025-11-24 11:20:50',0),(11709,2526,0,0,3861,'2025-11-24','11:20:00',0,179,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 11:20:50','vishal','2025-11-30 12:04:11',0),(11710,2526,0,0,3861,'2025-11-24','11:20:00',0,179,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,33,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 11:20:50','vishal','2025-11-25 10:37:15',0),(11711,2526,0,0,4058,'2025-11-24','00:00:00',2886,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4458,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 11:22:15','drashti','2025-11-24 11:23:38',0),(11712,2526,0,0,4059,'2025-11-24','00:00:00',1334,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 11:23:06','janvi','2025-11-23 22:53:06',0),(11713,2526,0,0,4060,'2025-11-24','00:00:00',2887,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4459,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 11:23:30','reception','2025-11-24 11:24:14',0),(11714,2526,0,0,4061,'2025-11-24','00:00:00',2888,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4460,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 11:24:11','janvi','2025-11-24 11:24:53',0),(11715,2526,0,0,4062,'2025-11-24','00:00:00',2543,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4461,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 11:25:15','drashti','2025-11-24 11:25:59',0),(11716,2526,0,0,4063,'2025-11-24','00:00:00',2889,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4462,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 11:25:45','janvi','2025-11-24 11:26:13',0),(11717,2526,0,0,4064,'2025-11-24','00:00:00',2183,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4463,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 11:25:50','reception','2025-11-24 11:26:23',0),(11718,2526,0,0,4065,'2025-11-24','00:00:00',2890,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4464,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 11:28:53','reception','2025-11-24 11:29:14',0),(11719,2526,0,0,4066,'2025-11-24','00:00:00',2891,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4465,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 11:29:12','drashti','2025-11-24 11:30:18',0),(11720,2526,0,0,4067,'2025-11-24','00:00:00',2561,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4466,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 11:31:20','manshi','2025-11-24 11:32:17',0),(11721,2526,0,0,4068,'2025-11-24','00:00:00',2892,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4467,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 11:31:56','reception','2025-11-24 11:32:34',0),(11722,2526,0,0,4069,'2025-11-24','00:00:00',2893,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4468,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 11:33:13','drashti','2025-11-24 11:34:28',0),(11723,2526,0,0,4070,'2025-11-24','00:00:00',2894,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4470,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 11:35:46','drashti','2025-11-24 11:36:52',0),(11724,2526,0,0,4071,'2025-11-24','00:00:00',1194,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4469,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 11:36:22','reception','2025-11-24 11:36:37',0),(11725,2526,0,0,4021,'2025-11-24','11:38:16',2863,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4471,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 11:38:16','drashti','2025-11-24 11:38:16',0),(11726,2526,0,0,4021,'2025-11-24','11:38:16',2863,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',4471,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 11:38:16','drashti','2025-11-24 11:38:16',0),(11727,2526,0,0,4072,'2025-11-24','00:00:00',2895,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4472,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 11:40:00','reception','2025-11-24 11:41:30',0),(11728,2526,0,0,4073,'2025-11-24','00:00:00',2896,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4473,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 11:40:33','janvi','2025-11-24 11:41:55',0),(11729,2526,0,0,4052,'2025-11-24','11:44:59',2882,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4474,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 11:44:58','reception','2025-11-24 11:44:58',0),(11730,2526,0,0,4052,'2025-11-24','11:44:59',2882,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4474,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 11:44:58','reception','2025-11-24 11:44:58',0),(11731,2526,0,0,4052,'2025-11-24','11:44:59',2882,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4474,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 11:44:58','reception','2025-11-24 11:44:58',0),(11732,2526,0,0,4074,'2025-11-24','00:00:00',2897,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 11:47:23','manshi','2025-11-23 23:17:23',0),(11733,2526,0,0,4075,'2025-11-24','00:00:00',2898,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4475,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 11:48:11','drashti','2025-11-24 11:50:14',0),(11734,2526,0,0,4056,'2025-11-24','11:50:37',2884,0,'XRY','XRY0390','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',4476,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 11:50:37','manshi','2025-11-24 11:50:37',0),(11735,2526,0,0,4076,'2025-11-24','00:00:00',627,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4478,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 11:53:50','janvi','2025-11-24 11:54:01',0),(11736,2526,0,0,4077,'2025-11-24','00:00:00',2899,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4479,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 11:56:19','manshi','2025-11-24 11:56:48',0),(11737,2526,0,0,3959,'2025-11-24','09:30:00',0,183,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 23:27:16','riya','2025-11-24 12:04:34',0),(11738,2526,0,0,3959,'2025-11-24','09:30:00',0,183,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 23:27:16','riya','2025-11-24 12:04:34',0),(11739,2526,0,0,3959,'2025-11-24','09:30:00',0,183,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 23:27:16','riya','2025-11-24 12:04:34',0),(11740,2526,0,0,3959,'2025-11-24','09:30:00',0,183,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 23:27:16','riya','2025-11-24 12:04:34',0),(11741,2526,0,0,3959,'2025-11-24','09:30:00',0,183,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-23 23:27:16','riya','2025-11-24 12:04:34',0),(11742,2526,0,0,4078,'2025-11-24','00:00:00',1699,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4480,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 12:00:28','janvi','2025-11-24 12:00:41',0),(11743,2526,0,0,4079,'2025-11-24','00:00:00',21,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4481,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 12:00:55','drashti','2025-11-24 12:01:41',0),(11744,2526,0,0,4042,'2025-11-24','12:01:43',2877,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4482,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 12:01:43','reception','2025-11-24 12:01:43',0),(11745,2526,0,0,4042,'2025-11-24','12:01:43',2877,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4482,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 12:01:43','reception','2025-11-24 12:01:43',0),(11746,2526,0,0,4042,'2025-11-24','12:01:43',2877,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4482,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 12:01:43','reception','2025-11-24 12:01:43',0),(11747,2526,0,0,3959,'2025-11-24','12:00:00',0,183,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 12:04:34','','0000-00-00 00:00:00',0),(11748,2526,0,0,3959,'2025-11-24','12:01:00',0,183,'WPRC','WPRC0087','H','N',4.00,500,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 12:04:34','','0000-00-00 00:00:00',0),(11749,2526,0,0,3959,'2025-11-24','12:01:00',0,183,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 12:04:34','','0000-00-00 00:00:00',0),(11750,2526,0,0,3959,'2025-11-24','12:01:00',0,183,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 12:04:34','','0000-00-00 00:00:00',0),(11751,2526,0,0,3959,'2025-11-24','12:03:00',0,183,'ROOM','ROOM0008','H','N',9.00,100,900,'A',0,0,0.00,0.00,900.00,900,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 12:04:34','vishal','2025-11-25 11:13:25',0),(11752,2526,0,0,3959,'2025-11-23','12:03:00',0,183,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 12:04:34','','0000-00-00 00:00:00',0),(11753,2526,0,0,4080,'2025-11-24','00:00:00',2900,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4483,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 12:06:16','reception','2025-11-24 12:07:25',0),(11754,2526,0,0,4081,'2025-11-24','00:00:00',1188,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4484,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 12:07:28','drashti','2025-11-24 12:07:41',0),(11755,2526,0,0,3959,'2025-11-22','12:07:00',0,183,'WPRC','WPRC0116','H','N',1.00,8000,8000,'P',0,0,0.00,0.00,8000.00,8000,4,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 12:10:54','','0000-00-00 00:00:00',0),(11756,2526,0,0,3959,'2025-11-23','12:07:00',0,183,'WPRC','WPRC0116','H','N',1.00,8000,8000,'P',0,0,0.00,0.00,8000.00,8000,4,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 12:10:54','','0000-00-00 00:00:00',0),(11757,2526,0,0,3959,'2025-11-23','12:09:00',0,183,'WPRC','WPRC0117','H','N',1.00,1700,1700,'P',0,0,0.00,0.00,1700.00,1700,40,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 12:10:54','','0000-00-00 00:00:00',0),(11758,2526,0,0,4082,'2025-11-24','00:00:00',2901,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4485,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 12:12:00','reception','2025-11-24 12:12:51',0),(11759,2526,0,0,3954,'2025-11-24','12:13:00',0,182,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',163,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 12:13:51','','0000-00-00 00:00:00',0),(11760,2526,0,0,4083,'2025-11-24','00:00:00',2902,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4486,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 12:17:32','drashti','2025-11-24 12:18:34',0),(11761,2526,0,0,4084,'2025-11-24','00:00:00',2903,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4487,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 12:19:43','janvi','2025-11-24 12:20:31',0),(11762,2526,0,0,4085,'2025-11-24','00:00:00',2904,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4489,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 12:21:57','drashti','2025-11-24 12:23:37',0),(11763,2526,0,0,4035,'2025-11-24','12:23:21',2873,0,'XRY','XRY0356','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',4488,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 12:23:21','janvi','2025-11-24 12:23:21',0),(11764,2526,0,0,4086,'2025-11-24','00:00:00',2905,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4490,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 12:24:01','reception','2025-11-24 12:24:35',0),(11765,2526,0,0,4087,'2025-11-24','00:00:00',1363,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4491,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 12:24:50','drashti','2025-11-24 12:25:08',0),(11766,2526,0,0,3962,'2025-11-24','12:28:00',0,184,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',168,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 12:28:52','','0000-00-00 00:00:00',0),(11767,2526,0,0,4088,'2025-11-24','00:00:00',2906,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4492,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 12:30:20','janvi','2025-11-24 12:30:44',0),(11768,2526,0,0,4089,'2025-11-24','00:00:00',2305,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4493,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 12:35:14','janvi','2025-11-24 12:35:38',0),(11769,2526,0,0,4043,'2025-11-24','12:52:03',2878,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4494,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 12:52:03','reception','2025-11-24 12:52:03',0),(11770,2526,0,0,4043,'2025-11-24','12:52:03',2878,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4494,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 12:52:03','reception','2025-11-24 12:52:03',0),(11771,2526,0,0,4043,'2025-11-24','12:52:03',2878,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4494,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 12:52:03','reception','2025-11-24 12:52:03',0),(11772,2526,0,0,4090,'2025-11-24','00:00:00',2907,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 12:52:44','manshi','2025-11-24 00:22:44',0),(11773,2526,0,0,4091,'2025-11-24','00:00:00',842,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4495,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 12:56:21','reception','2025-11-24 12:56:46',0),(11774,2526,0,0,4092,'2025-11-24','01:00:00',0,193,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',169,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 12:59:35','vishal','2025-11-25 14:01:27',0),(11775,2526,0,0,4092,'2025-11-24','01:00:00',0,193,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',169,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 12:59:35','vishal','2025-11-25 14:01:27',0),(11776,2526,0,0,4092,'2025-11-24','01:00:00',0,193,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',169,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 00:29:35','vishal','2025-11-25 14:01:27',0),(11777,2526,0,0,4092,'2025-11-24','01:00:00',0,193,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',169,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 00:29:35','vishal','2025-11-25 14:01:27',0),(11778,2526,0,0,4092,'2025-11-24','01:00:00',0,193,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',169,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 00:29:35','vishal','2025-11-25 14:01:27',0),(11779,2526,0,0,4092,'2025-11-24','01:00:00',0,193,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',169,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 00:29:35','vishal','2025-11-25 14:01:27',0),(11780,2526,0,0,4092,'2025-11-24','01:00:00',0,193,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',169,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 00:29:35','vishal','2025-11-25 14:01:27',0),(11781,2526,0,0,4093,'2025-11-24','00:00:00',2908,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4496,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 12:59:51','reception','2025-11-24 13:00:34',0),(11782,2526,0,0,4082,'2025-11-24','13:03:40',2901,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4497,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 13:03:40','reception','2025-11-24 13:03:40',0),(11783,2526,0,0,4082,'2025-11-24','13:03:40',2901,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4497,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 13:03:40','reception','2025-11-24 13:03:40',0),(11784,2526,0,0,4082,'2025-11-24','13:03:40',2901,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4497,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 13:03:40','reception','2025-11-24 13:03:40',0),(11785,2526,0,0,4094,'2025-11-24','00:00:00',2909,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4498,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 13:05:03','drashti','2025-11-24 13:05:34',0),(11786,2526,0,0,4090,'2025-11-24','13:06:52',2907,0,'XRY','XRY0017','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,0.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4499,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 13:06:52','manshi','2025-11-24 13:06:52',0),(11787,2526,0,0,3630,'2025-11-24','10:15:00',0,174,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 00:43:13','riya','2025-11-24 13:13:24',0),(11788,2526,0,0,3630,'2025-11-24','10:15:00',0,174,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 00:43:13','riya','2025-11-24 13:13:24',0),(11789,2526,0,0,3630,'2025-11-24','10:15:00',0,174,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 00:43:13','riya','2025-11-24 13:13:24',0),(11790,2526,0,0,3630,'2025-11-24','10:15:00',0,174,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 00:43:13','riya','2025-11-24 13:13:24',0),(11791,2526,0,0,3630,'2025-11-24','10:15:00',0,174,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',166,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 00:43:13','riya','2025-11-24 13:13:24',0),(11792,2526,0,0,4083,'2025-11-24','13:14:45',2902,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4500,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 13:14:45','drashti','2025-11-24 13:14:45',0),(11793,2526,0,0,4083,'2025-11-24','13:14:45',2902,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',4500,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 13:14:45','drashti','2025-11-24 13:14:45',0),(11794,2526,0,0,4095,'2025-11-24','00:00:00',2910,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4501,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 13:15:14','janvi','2025-11-24 13:16:05',0),(11795,2526,0,0,4060,'2025-11-24','13:18:18',2887,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4502,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 13:18:18','reception','2025-11-24 13:18:18',0),(11796,2526,0,0,4060,'2025-11-24','13:18:18',2887,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4502,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 13:18:18','reception','2025-11-24 13:18:18',0),(11797,2526,0,0,4060,'2025-11-24','13:18:18',2887,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4502,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 13:18:18','reception','2025-11-24 13:18:18',0),(11798,2526,0,0,4096,'2025-11-24','13:18:19',2861,0,'USG','USG0056','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','O',4503,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 13:18:19','janvi','2025-11-24 13:18:19',0),(11799,2526,0,0,4097,'2025-11-24','00:00:00',2911,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 13:19:36','manshi','2025-11-24 00:49:36',0),(11800,2526,0,0,4098,'2025-11-24','00:00:00',2912,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4504,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 13:23:24','janvi','2025-11-24 13:23:54',0),(11801,2526,0,0,4099,'2025-11-24','00:00:00',937,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4505,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 13:25:33','reception','2025-11-24 13:26:04',0),(11802,2526,0,0,4087,'2025-11-24','13:40:43',1363,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',4506,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 13:40:43','drashti','2025-11-24 13:40:43',0),(11803,2526,0,0,4100,'2025-11-24','00:00:00',2913,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4510,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 13:43:06','manshi','2025-11-24 13:53:42',0),(11804,2526,0,0,4093,'2025-11-24','13:44:00',2908,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4507,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 13:44:00','reception','2025-11-24 13:44:00',0),(11805,2526,0,0,4093,'2025-11-24','13:44:00',2908,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4507,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 13:44:00','reception','2025-11-24 13:44:00',0),(11806,2526,0,0,4093,'2025-11-24','13:44:00',2908,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4507,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 13:44:00','reception','2025-11-24 13:44:00',0),(11807,2526,0,0,3517,'2025-11-24','13:00:00',0,165,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 01:14:26','riya','2025-11-26 13:43:40',0),(11808,2526,0,0,3517,'2025-11-24','13:00:00',0,165,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 01:14:26','riya','2025-11-26 13:43:40',0),(11809,2526,0,0,3517,'2025-11-24','13:00:00',0,165,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,70,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 01:14:26','riya','2025-11-26 13:43:40',0),(11810,2526,0,0,3517,'2025-11-24','13:00:00',0,165,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-24 01:14:26','vishal','2025-11-25 16:44:51',0),(11811,2526,0,0,3517,'2025-11-24','13:00:00',0,165,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 01:14:26','riya','2025-11-26 13:43:40',0),(11812,2526,0,0,3764,'2025-11-24','10:00:00',0,178,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,45,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 01:14:26','riya','2025-11-24 16:41:00',0),(11813,2526,0,0,3764,'2025-11-24','10:00:00',0,178,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,46,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 01:14:26','riya','2025-11-24 16:41:00',0),(11814,2526,0,0,3764,'2025-11-24','10:00:00',0,178,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,47,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 01:14:26','riya','2025-11-24 16:41:00',0),(11815,2526,0,0,3764,'2025-11-24','10:00:00',0,178,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',220,48,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 01:14:26','riya','2025-11-24 16:41:00',0),(11816,2526,0,0,3764,'2025-11-24','10:00:00',0,178,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',220,49,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 01:14:26','riya','2025-11-24 16:41:00',0),(11817,2526,0,0,4101,'2025-11-24','00:00:00',2914,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4508,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 13:46:31','drashti','2025-11-24 13:47:27',0),(11818,2526,0,0,4072,'2025-11-24','13:52:41',2895,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4509,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 13:52:41','reception','2025-11-24 13:52:41',0),(11819,2526,0,0,4072,'2025-11-24','13:52:41',2895,0,'NEU1','NEU10016','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4509,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 13:52:41','reception','2025-11-24 13:52:41',0),(11820,2526,0,0,4102,'2025-11-24','00:00:00',2915,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4511,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-24 15:18:43','priyanshi','2025-11-24 15:20:13',0),(11821,2526,0,0,4102,'2025-11-24','15:20:13',2915,0,'OPWD','OPWD0031','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4511,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-24 15:20:13','priyanshi','2025-11-24 15:20:13',0),(11822,2526,0,0,4103,'2025-11-24','00:00:00',2916,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4549,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-24 15:55:25','drashti','2025-11-24 18:52:15',0),(11823,2526,0,0,2879,'2025-11-24','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 03:44:47','riya','2025-12-01 19:45:21',0),(11824,2526,0,0,2879,'2025-11-24','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 03:44:47','riya','2025-12-01 19:41:30',0),(11825,2526,0,0,2879,'2025-11-24','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 03:44:47','riya','2025-12-01 19:41:30',0),(11826,2526,0,0,2879,'2025-11-24','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 03:44:47','riya','2025-12-01 19:41:30',0),(11827,2526,0,0,2879,'2025-11-24','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 03:44:47','vishal','2025-11-30 20:07:24',0),(11828,2526,0,0,3909,'2025-11-24','15:00:00',0,181,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 03:44:48','vishal','2025-11-25 16:23:51',0),(11829,2526,0,0,3909,'2025-11-24','15:00:00',0,181,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 03:44:48','vishal','2025-11-25 16:23:51',0),(11830,2526,0,0,3909,'2025-11-24','15:00:00',0,181,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 03:44:48','vishal','2025-11-25 16:23:51',0),(11831,2526,0,0,3909,'2025-11-24','15:00:00',0,181,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 03:44:48','vishal','2025-11-25 16:23:51',0),(11832,2526,0,0,3909,'2025-11-24','15:00:00',0,181,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 03:44:48','vishal','2025-11-25 16:23:51',0),(11833,2526,0,0,4017,'2025-11-24','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,18,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 03:44:49','vishal','2025-11-25 09:31:05',0),(11834,2526,0,0,4017,'2025-11-24','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,19,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 03:44:49','vishal','2025-11-25 09:31:05',0),(11835,2526,0,0,4017,'2025-11-24','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,20,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 03:44:49','vishal','2025-11-25 09:31:05',0),(11836,2526,0,0,4017,'2025-11-24','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,21,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 03:44:49','vishal','2025-11-25 09:31:05',0),(11837,2526,0,0,4017,'2025-11-24','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,22,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 03:44:49','vishal','2025-11-25 09:31:05',0),(11838,2526,0,0,4104,'2025-11-24','00:00:00',1169,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4512,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 16:18:47','reception','2025-11-24 16:19:18',0),(11839,2526,0,0,4105,'2025-11-24','00:00:00',1281,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4513,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 16:38:14','reception','2025-11-24 16:38:33',0),(11840,2526,0,0,3962,'2025-11-24','16:46:00',0,184,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,31,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-24 16:46:21','vishal','2025-11-25 12:29:00',0),(11841,2526,0,0,4107,'2025-11-24','00:00:00',2917,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4514,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 16:48:05','reception','2025-11-24 16:48:44',0),(11842,2526,0,0,4108,'2025-11-24','00:00:00',2317,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',4515,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 17:14:50','reception','2025-11-24 17:15:00',0),(11843,2526,0,0,4109,'2025-11-24','00:00:00',2918,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4516,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 17:18:57','reception','2025-11-24 17:19:28',0),(11844,2526,0,0,4111,'2025-11-24','00:00:00',2919,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4517,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 17:20:32','janvi','2025-11-24 17:21:23',0),(11845,2526,0,0,4112,'2025-11-24','00:00:00',1102,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4518,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 17:35:54','manshi','2025-11-24 17:36:03',0),(11846,2526,0,0,4113,'2025-11-24','00:00:00',1059,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4519,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 17:38:09','drashti','2025-11-24 17:38:27',0),(11847,2526,0,0,4114,'2025-11-24','00:00:00',1826,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 17:38:29','manshi','2025-11-24 05:08:29',0),(11848,2526,0,0,4115,'2025-11-24','00:00:00',798,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4520,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 17:42:40','reception','2025-11-24 17:42:58',0),(11849,2526,0,0,4107,'2025-11-24','17:46:57',2917,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4521,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 17:46:57','reception','2025-11-24 17:46:57',0),(11850,2526,0,0,4107,'2025-11-24','17:46:57',2917,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4521,2,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 17:46:57','reception','2025-11-24 17:46:57',0),(11851,2526,0,0,4107,'2025-11-24','17:46:57',2917,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4521,3,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 17:46:57','reception','2025-11-24 17:46:57',0),(11852,2526,0,0,4107,'2025-11-24','17:46:57',2917,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4521,4,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 17:46:57','reception','2025-11-24 17:46:57',0),(11853,2526,0,0,4116,'2025-11-24','00:00:00',1026,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',4522,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 17:48:47','reception','2025-11-24 17:49:20',0),(11854,2526,0,0,4117,'2025-11-24','00:00:00',2920,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4523,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 17:51:40','drashti','2025-11-24 17:52:42',0),(11855,2526,0,0,4118,'2025-11-24','00:00:00',2921,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 17:52:53','reception','2025-11-24 05:22:53',0),(11856,2526,0,0,4119,'2025-11-24','00:00:00',2370,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4524,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 17:53:30','drashti','2025-11-24 17:54:06',0),(11857,2526,0,0,4109,'2025-11-24','17:58:34',2918,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4525,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 17:58:34','reception','2025-11-24 17:58:34',0),(11858,2526,0,0,4109,'2025-11-24','17:58:34',2918,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4525,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 17:58:34','reception','2025-11-24 17:58:34',0),(11859,2526,0,0,4109,'2025-11-24','17:58:34',2918,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4525,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 17:58:34','reception','2025-11-24 17:58:34',0),(11860,2526,0,0,4121,'2025-11-24','00:00:00',2444,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4526,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 18:02:46','drashti','2025-11-24 18:03:56',0),(11861,2526,0,0,4122,'2025-11-24','00:00:00',2922,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',4527,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 18:09:32','reception','2025-11-24 18:27:37',0),(11862,2526,0,0,4123,'2025-11-24','18:11:10',2629,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4528,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 18:11:10','janvi','2025-11-24 18:11:10',0),(11863,2526,0,0,4110,'2025-11-24','18:15:59',525,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4529,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 18:15:59','janvi','2025-11-24 18:15:59',0),(11864,2526,0,0,4124,'2025-11-24','00:00:00',2923,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4530,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 18:18:45','janvi','2025-11-24 18:22:01',0),(11865,2526,0,0,4125,'2025-11-24','18:15:00',0,194,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',179,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 18:23:14','vishal','2025-11-25 10:41:02',0),(11866,2526,0,0,4125,'2025-11-24','18:15:00',0,194,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',179,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 18:23:14','vishal','2025-11-25 10:41:02',0),(11867,2526,0,0,4125,'2025-11-24','18:15:00',0,194,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',179,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 05:53:14','vishal','2025-11-25 10:41:02',0),(11868,2526,0,0,4125,'2025-11-24','18:15:00',0,194,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',179,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 05:53:14','vishal','2025-11-25 10:41:02',0),(11869,2526,0,0,4125,'2025-11-24','18:15:00',0,194,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',179,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 05:53:14','vishal','2025-11-25 10:41:02',0),(11870,2526,0,0,4125,'2025-11-24','18:15:00',0,194,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','210','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 05:53:14','vishal','2025-11-25 10:41:02',0),(11871,2526,0,0,4125,'2025-11-24','18:15:00',0,194,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',179,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 05:53:14','vishal','2025-11-25 10:41:02',0),(11872,2526,0,0,4126,'2025-11-24','00:00:00',2924,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4531,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 18:23:19','manshi','2025-11-24 18:23:44',0),(11873,2526,0,0,4127,'2025-11-24','00:00:00',2925,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4532,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 18:23:25','reception','2025-11-24 18:23:51',0),(11874,2526,0,0,4128,'2025-11-24','00:00:00',2926,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4533,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 18:25:05','manshi','2025-11-24 18:25:31',0),(11875,2526,0,0,4129,'2025-11-24','00:00:00',2241,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4534,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 18:25:25','drashti','2025-11-24 18:45:59',0),(11876,2526,0,0,4130,'2025-11-24','18:27:48',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4536,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 18:27:48','janvi','2025-11-24 18:27:48',0),(11877,2526,0,0,4120,'2025-11-24','18:28:17',2574,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,7,0,0,'',0,0,'','','','','',2526,'H','O',4537,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 18:28:17','manshi','2025-11-24 18:28:17',0),(11878,2526,0,0,4131,'2025-11-24','00:00:00',341,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 18:28:56','janvi','2025-11-24 05:58:56',0),(11879,2526,0,0,4132,'2025-11-24','00:00:00',2927,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4538,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 18:29:07','drashti','2025-11-24 18:29:39',0),(11880,2526,0,0,4133,'2025-11-24','18:30:20',2144,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4539,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 18:30:20','manshi','2025-11-24 18:30:20',0),(11881,2526,0,0,4122,'2025-11-24','18:30:34',2922,0,'PKG','CASE','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',4540,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 18:30:34','reception','2025-11-24 18:30:34',0),(11882,2526,0,0,4134,'2025-11-24','00:00:00',2928,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4541,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 18:36:01','drashti','2025-11-24 18:37:07',0),(11883,2526,0,0,4135,'2025-11-24','00:00:00',2585,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4542,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 18:40:53','manshi','2025-11-24 18:42:47',0),(11884,2526,0,0,4136,'2025-11-24','00:00:00',2929,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4543,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 18:42:02','drashti','2025-11-24 18:43:08',0),(11885,2526,0,0,4138,'2025-11-24','18:45:43',2005,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4544,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 18:45:43','reception','2025-11-24 18:45:43',0),(11886,2526,0,0,4139,'2025-11-24','00:00:00',2340,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4546,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 18:46:10','reception','2025-11-24 18:46:29',0),(11887,2526,0,0,4140,'2025-11-24','00:00:00',2930,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4547,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 18:46:11','janvi','2025-11-24 18:46:44',0),(11888,2526,0,0,4127,'2025-11-24','18:49:08',2925,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4548,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 18:49:08','reception','2025-11-24 18:49:08',0),(11889,2526,0,0,4127,'2025-11-24','18:49:08',2925,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4548,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 18:49:08','reception','2025-11-24 18:49:08',0),(11890,2526,0,0,4127,'2025-11-24','18:49:08',2925,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4548,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 18:49:08','reception','2025-11-24 18:49:08',0),(11891,2526,0,0,4018,'2025-11-24','18:49:00',0,188,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',164,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 18:49:46','','0000-00-00 00:00:00',0),(11892,2526,0,0,4141,'2025-11-24','00:00:00',2931,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 18:53:30','reception','2025-11-24 06:23:30',0),(11893,2526,0,0,4142,'2025-11-24','00:00:00',2932,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',4550,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 18:56:49','reception','2025-11-24 18:58:01',0),(11894,2526,0,0,4143,'2025-11-24','00:00:00',118,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4551,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 19:00:03','drashti','2025-11-24 19:00:38',0),(11895,2526,0,0,4144,'2025-11-24','19:04:58',2528,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',4552,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 19:04:58','manshi','2025-11-24 19:04:58',0),(11896,2526,0,0,4145,'2025-11-24','00:00:00',2933,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',4556,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 19:07:16','manshi','2025-11-24 19:25:55',0),(11897,2526,0,0,4137,'2025-11-24','19:16:34',2671,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4553,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 19:16:34','drashti','2025-11-24 19:16:34',0),(11898,2526,0,0,4146,'2025-11-24','00:00:00',2934,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4554,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 19:18:33','janvi','2025-11-24 19:19:30',0),(11899,2526,0,0,4147,'2025-11-24','00:00:00',2935,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4555,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 19:20:26','drashti','2025-11-24 19:21:36',0),(11900,2526,0,0,4148,'2025-11-24','00:00:00',2936,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 19:29:20','reception','2025-11-24 06:59:20',0),(11901,2526,0,0,4148,'2025-11-24','00:00:00',2936,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4557,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 19:30:36','janvi','2025-11-24 19:30:49',0),(11902,2526,0,0,4149,'2025-11-24','19:33:24',2689,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4558,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 19:33:24','drashti','2025-11-24 19:33:24',0),(11903,2526,0,0,4150,'2025-11-24','00:00:00',2937,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 19:33:47','manshi','2025-11-24 07:03:47',0),(11904,2526,0,0,4151,'2025-11-24','00:00:00',2938,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4559,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 19:35:54','janvi','2025-11-24 19:36:23',0),(11905,2526,0,0,4152,'2025-11-24','00:00:00',2939,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4560,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 19:49:53','manshi','2025-11-24 19:52:17',0),(11906,2526,0,0,4152,'2025-11-24','19:52:17',2939,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',4560,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-24 19:52:17','manshi','2025-11-24 19:52:17',0),(11907,2526,0,0,4153,'2025-11-24','00:00:00',2940,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4561,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-24 19:52:59','reception','2025-11-24 19:53:18',0),(11908,2526,0,0,4154,'2025-11-19','09:00:00',0,195,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 19:54:45','riya','2025-11-25 18:51:01',0),(11909,2526,0,0,4154,'2025-11-19','09:00:00',0,195,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 19:54:45','riya','2025-11-25 18:51:01',0),(11910,2526,0,0,4154,'2025-11-19','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:45','riya','2025-11-25 18:51:01',0),(11911,2526,0,0,4154,'2025-11-20','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:45','riya','2025-11-25 18:51:01',0),(11912,2526,0,0,4154,'2025-11-21','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:45','riya','2025-11-25 18:51:01',0),(11913,2526,0,0,4154,'2025-11-22','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:45','riya','2025-11-25 18:51:01',0),(11914,2526,0,0,4154,'2025-11-23','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:45','riya','2025-11-25 18:51:01',0),(11915,2526,0,0,4154,'2025-11-24','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:45','riya','2025-11-25 18:51:01',0),(11916,2526,0,0,4154,'2025-11-19','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:45','riya','2025-11-25 18:51:01',0),(11917,2526,0,0,4154,'2025-11-20','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:45','riya','2025-11-25 18:51:01',0),(11918,2526,0,0,4154,'2025-11-21','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:45','riya','2025-11-25 18:51:01',0),(11919,2526,0,0,4154,'2025-11-22','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:45','riya','2025-11-25 18:51:01',0),(11920,2526,0,0,4154,'2025-11-23','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:45','riya','2025-11-25 18:51:01',0),(11921,2526,0,0,4154,'2025-11-24','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:45','riya','2025-11-25 18:51:01',0),(11922,2526,0,0,4154,'2025-11-19','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:46','riya','2025-11-25 18:51:01',0),(11923,2526,0,0,4154,'2025-11-20','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:46','riya','2025-11-25 18:51:01',0),(11924,2526,0,0,4154,'2025-11-21','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:46','riya','2025-11-25 18:51:01',0),(11925,2526,0,0,4154,'2025-11-22','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:46','riya','2025-11-25 18:51:01',0),(11926,2526,0,0,4154,'2025-11-23','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:46','riya','2025-11-25 18:51:01',0),(11927,2526,0,0,4154,'2025-11-24','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:46','riya','2025-11-25 18:51:01',0),(11928,2526,0,0,4154,'2025-11-19','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:46','riya','2025-11-25 18:51:01',0),(11929,2526,0,0,4154,'2025-11-20','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:46','riya','2025-11-25 18:51:01',0),(11930,2526,0,0,4154,'2025-11-21','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:46','riya','2025-11-25 18:51:01',0),(11931,2526,0,0,4154,'2025-11-22','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:46','riya','2025-11-25 18:51:01',0),(11932,2526,0,0,4154,'2025-11-23','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:46','riya','2025-11-25 18:51:01',0),(11933,2526,0,0,4154,'2025-11-24','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:46','riya','2025-11-25 18:51:01',0),(11934,2526,0,0,4154,'2025-11-19','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:46','riya','2025-11-25 18:51:01',0),(11935,2526,0,0,4154,'2025-11-20','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:46','riya','2025-11-25 18:51:01',0),(11936,2526,0,0,4154,'2025-11-21','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:46','riya','2025-11-25 18:51:01',0),(11937,2526,0,0,4154,'2025-11-22','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:46','riya','2025-11-25 18:51:01',0),(11938,2526,0,0,4154,'2025-11-23','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:46','riya','2025-11-25 18:51:01',0),(11939,2526,0,0,4154,'2025-11-24','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:24:46','riya','2025-11-25 18:51:01',0),(11940,2526,0,0,4028,'2025-11-24','19:57:43',2869,0,'OPWD','OPWD0013','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',4562,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-24 19:57:43','janvi','2025-11-24 19:57:43',0),(11941,2526,0,0,4154,'2025-09-30','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-24 20:01:10',0),(11942,2526,0,0,4154,'2025-10-01','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-24 20:11:50',0),(11943,2526,0,0,4154,'2025-10-02','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:56:05',0),(11944,2526,0,0,4154,'2025-10-03','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:56:05',0),(11945,2526,0,0,4154,'2025-10-04','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:56:05',0),(11946,2526,0,0,4154,'2025-10-05','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:56:05',0),(11947,2526,0,0,4154,'2025-10-06','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11948,2526,0,0,4154,'2025-10-07','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11949,2526,0,0,4154,'2025-10-08','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11950,2526,0,0,4154,'2025-10-09','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11951,2526,0,0,4154,'2025-10-10','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11952,2526,0,0,4154,'2025-10-11','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11953,2526,0,0,4154,'2025-10-12','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11954,2526,0,0,4154,'2025-10-13','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11955,2526,0,0,4154,'2025-10-14','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11956,2526,0,0,4154,'2025-10-15','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11957,2526,0,0,4154,'2025-10-16','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11958,2526,0,0,4154,'2025-10-17','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11959,2526,0,0,4154,'2025-10-18','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11960,2526,0,0,4154,'2025-10-19','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11961,2526,0,0,4154,'2025-10-20','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11962,2526,0,0,4154,'2025-10-21','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11963,2526,0,0,4154,'2025-10-22','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11964,2526,0,0,4154,'2025-10-23','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11965,2526,0,0,4154,'2025-10-24','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11966,2526,0,0,4154,'2025-10-25','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11967,2526,0,0,4154,'2025-10-26','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11968,2526,0,0,4154,'2025-10-27','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11969,2526,0,0,4154,'2025-10-28','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11970,2526,0,0,4154,'2025-10-29','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11971,2526,0,0,4154,'2025-10-30','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11972,2526,0,0,4154,'2025-10-31','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11973,2526,0,0,4154,'2025-11-01','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11974,2526,0,0,4154,'2025-11-02','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11975,2526,0,0,4154,'2025-11-03','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11976,2526,0,0,4154,'2025-11-04','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11977,2526,0,0,4154,'2025-11-05','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11978,2526,0,0,4154,'2025-11-06','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11979,2526,0,0,4154,'2025-11-07','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11980,2526,0,0,4154,'2025-11-08','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11981,2526,0,0,4154,'2025-11-09','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11982,2526,0,0,4154,'2025-11-10','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','riya','2025-11-25 18:51:01',0),(11983,2526,0,0,4154,'2025-11-11','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','riya','2025-11-25 18:51:01',0),(11984,2526,0,0,4154,'2025-11-12','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','riya','2025-11-25 18:51:01',0),(11985,2526,0,0,4154,'2025-11-13','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','riya','2025-11-25 18:51:01',0),(11986,2526,0,0,4154,'2025-11-14','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','riya','2025-11-25 18:51:01',0),(11987,2526,0,0,4154,'2025-11-15','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','riya','2025-11-25 18:51:01',0),(11988,2526,0,0,4154,'2025-11-16','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','riya','2025-11-25 18:51:01',0),(11989,2526,0,0,4154,'2025-11-17','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','riya','2025-11-25 18:51:01',0),(11990,2526,0,0,4154,'2025-11-18','09:00:00',0,195,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','riya','2025-11-25 18:51:01',0),(11991,2526,0,0,4154,'2025-09-30','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-24 20:01:10',0),(11992,2526,0,0,4154,'2025-10-01','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-24 20:11:50',0),(11993,2526,0,0,4154,'2025-10-02','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:56:05',0),(11994,2526,0,0,4154,'2025-10-03','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:56:05',0),(11995,2526,0,0,4154,'2025-10-04','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:56:05',0),(11996,2526,0,0,4154,'2025-10-05','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:56:05',0),(11997,2526,0,0,4154,'2025-10-06','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11998,2526,0,0,4154,'2025-10-07','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(11999,2526,0,0,4154,'2025-10-08','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12000,2526,0,0,4154,'2025-10-09','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12001,2526,0,0,4154,'2025-10-10','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12002,2526,0,0,4154,'2025-10-11','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12003,2526,0,0,4154,'2025-10-12','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12004,2526,0,0,4154,'2025-10-13','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12005,2526,0,0,4154,'2025-10-14','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12006,2526,0,0,4154,'2025-10-15','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12007,2526,0,0,4154,'2025-10-16','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12008,2526,0,0,4154,'2025-10-17','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12009,2526,0,0,4154,'2025-10-18','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12010,2526,0,0,4154,'2025-10-19','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12011,2526,0,0,4154,'2025-10-20','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12012,2526,0,0,4154,'2025-10-21','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12013,2526,0,0,4154,'2025-10-22','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12014,2526,0,0,4154,'2025-10-23','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12015,2526,0,0,4154,'2025-10-24','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12016,2526,0,0,4154,'2025-10-25','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12017,2526,0,0,4154,'2025-10-26','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12018,2526,0,0,4154,'2025-10-27','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12019,2526,0,0,4154,'2025-10-28','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12020,2526,0,0,4154,'2025-10-29','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12021,2526,0,0,4154,'2025-10-30','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12022,2526,0,0,4154,'2025-10-31','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12023,2526,0,0,4154,'2025-11-01','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12024,2526,0,0,4154,'2025-11-02','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12025,2526,0,0,4154,'2025-11-03','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:22','vishal','2025-11-25 13:59:33',0),(12026,2526,0,0,4154,'2025-11-04','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12027,2526,0,0,4154,'2025-11-05','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12028,2526,0,0,4154,'2025-11-06','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12029,2526,0,0,4154,'2025-11-07','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12030,2526,0,0,4154,'2025-11-08','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12031,2526,0,0,4154,'2025-11-09','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12032,2526,0,0,4154,'2025-11-10','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12033,2526,0,0,4154,'2025-11-11','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12034,2526,0,0,4154,'2025-11-12','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12035,2526,0,0,4154,'2025-11-13','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12036,2526,0,0,4154,'2025-11-14','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12037,2526,0,0,4154,'2025-11-15','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12038,2526,0,0,4154,'2025-11-16','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12039,2526,0,0,4154,'2025-11-17','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12040,2526,0,0,4154,'2025-11-18','09:00:00',0,195,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12041,2526,0,0,4154,'2025-09-30','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-24 20:01:10',0),(12042,2526,0,0,4154,'2025-10-01','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-24 20:11:50',0),(12043,2526,0,0,4154,'2025-10-02','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:56:05',0),(12044,2526,0,0,4154,'2025-10-03','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:56:05',0),(12045,2526,0,0,4154,'2025-10-04','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:56:05',0),(12046,2526,0,0,4154,'2025-10-05','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:56:05',0),(12047,2526,0,0,4154,'2025-10-06','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12048,2526,0,0,4154,'2025-10-07','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12049,2526,0,0,4154,'2025-10-08','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12050,2526,0,0,4154,'2025-10-09','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12051,2526,0,0,4154,'2025-10-10','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12052,2526,0,0,4154,'2025-10-11','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12053,2526,0,0,4154,'2025-10-12','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12054,2526,0,0,4154,'2025-10-13','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12055,2526,0,0,4154,'2025-10-14','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12056,2526,0,0,4154,'2025-10-15','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12057,2526,0,0,4154,'2025-10-16','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12058,2526,0,0,4154,'2025-10-17','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12059,2526,0,0,4154,'2025-10-18','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12060,2526,0,0,4154,'2025-10-19','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12061,2526,0,0,4154,'2025-10-20','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12062,2526,0,0,4154,'2025-10-21','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12063,2526,0,0,4154,'2025-10-22','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12064,2526,0,0,4154,'2025-10-23','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12065,2526,0,0,4154,'2025-10-24','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12066,2526,0,0,4154,'2025-10-25','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12067,2526,0,0,4154,'2025-10-26','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12068,2526,0,0,4154,'2025-10-27','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12069,2526,0,0,4154,'2025-10-28','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12070,2526,0,0,4154,'2025-10-29','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12071,2526,0,0,4154,'2025-10-30','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12072,2526,0,0,4154,'2025-10-31','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12073,2526,0,0,4154,'2025-11-01','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12074,2526,0,0,4154,'2025-11-02','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12075,2526,0,0,4154,'2025-11-03','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12076,2526,0,0,4154,'2025-11-04','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12077,2526,0,0,4154,'2025-11-05','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12078,2526,0,0,4154,'2025-11-06','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12079,2526,0,0,4154,'2025-11-07','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12080,2526,0,0,4154,'2025-11-08','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12081,2526,0,0,4154,'2025-11-09','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12082,2526,0,0,4154,'2025-11-10','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12083,2526,0,0,4154,'2025-11-11','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12084,2526,0,0,4154,'2025-11-12','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12085,2526,0,0,4154,'2025-11-13','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12086,2526,0,0,4154,'2025-11-14','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12087,2526,0,0,4154,'2025-11-15','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12088,2526,0,0,4154,'2025-11-16','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12089,2526,0,0,4154,'2025-11-17','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12090,2526,0,0,4154,'2025-11-18','09:00:00',0,195,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12091,2526,0,0,4154,'2025-09-30','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-24 20:01:10',0),(12092,2526,0,0,4154,'2025-10-01','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-24 20:11:50',0),(12093,2526,0,0,4154,'2025-10-02','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:56:05',0),(12094,2526,0,0,4154,'2025-10-03','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:56:05',0),(12095,2526,0,0,4154,'2025-10-04','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:56:05',0),(12096,2526,0,0,4154,'2025-10-05','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:56:05',0),(12097,2526,0,0,4154,'2025-10-06','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12098,2526,0,0,4154,'2025-10-07','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12099,2526,0,0,4154,'2025-10-08','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12100,2526,0,0,4154,'2025-10-09','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12101,2526,0,0,4154,'2025-10-10','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12102,2526,0,0,4154,'2025-10-11','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12103,2526,0,0,4154,'2025-10-12','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12104,2526,0,0,4154,'2025-10-13','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12105,2526,0,0,4154,'2025-10-14','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12106,2526,0,0,4154,'2025-10-15','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12107,2526,0,0,4154,'2025-10-16','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12108,2526,0,0,4154,'2025-10-17','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12109,2526,0,0,4154,'2025-10-18','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12110,2526,0,0,4154,'2025-10-19','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12111,2526,0,0,4154,'2025-10-20','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12112,2526,0,0,4154,'2025-10-21','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12113,2526,0,0,4154,'2025-10-22','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12114,2526,0,0,4154,'2025-10-23','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12115,2526,0,0,4154,'2025-10-24','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12116,2526,0,0,4154,'2025-10-25','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12117,2526,0,0,4154,'2025-10-26','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12118,2526,0,0,4154,'2025-10-27','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12119,2526,0,0,4154,'2025-10-28','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12120,2526,0,0,4154,'2025-10-29','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12121,2526,0,0,4154,'2025-10-30','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12122,2526,0,0,4154,'2025-10-31','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12123,2526,0,0,4154,'2025-11-01','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12124,2526,0,0,4154,'2025-11-02','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12125,2526,0,0,4154,'2025-11-03','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12126,2526,0,0,4154,'2025-11-04','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12127,2526,0,0,4154,'2025-11-05','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12128,2526,0,0,4154,'2025-11-06','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12129,2526,0,0,4154,'2025-11-07','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12130,2526,0,0,4154,'2025-11-08','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12131,2526,0,0,4154,'2025-11-09','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12132,2526,0,0,4154,'2025-11-10','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12133,2526,0,0,4154,'2025-11-11','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12134,2526,0,0,4154,'2025-11-12','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12135,2526,0,0,4154,'2025-11-13','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12136,2526,0,0,4154,'2025-11-14','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12137,2526,0,0,4154,'2025-11-15','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12138,2526,0,0,4154,'2025-11-16','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12139,2526,0,0,4154,'2025-11-17','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12140,2526,0,0,4154,'2025-11-18','09:00:00',0,195,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12141,2526,0,0,4154,'2025-09-30','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-24 20:11:50',0),(12142,2526,0,0,4154,'2025-10-01','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-24 20:11:50',0),(12143,2526,0,0,4154,'2025-10-02','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:56:05',0),(12144,2526,0,0,4154,'2025-10-03','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:56:05',0),(12145,2526,0,0,4154,'2025-10-04','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:56:05',0),(12146,2526,0,0,4154,'2025-10-05','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:56:05',0),(12147,2526,0,0,4154,'2025-10-06','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12148,2526,0,0,4154,'2025-10-07','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12149,2526,0,0,4154,'2025-10-08','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12150,2526,0,0,4154,'2025-10-09','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12151,2526,0,0,4154,'2025-10-10','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12152,2526,0,0,4154,'2025-10-11','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12153,2526,0,0,4154,'2025-10-12','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12154,2526,0,0,4154,'2025-10-13','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12155,2526,0,0,4154,'2025-10-14','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12156,2526,0,0,4154,'2025-10-15','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12157,2526,0,0,4154,'2025-10-16','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12158,2526,0,0,4154,'2025-10-17','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12159,2526,0,0,4154,'2025-10-18','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12160,2526,0,0,4154,'2025-10-19','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12161,2526,0,0,4154,'2025-10-20','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12162,2526,0,0,4154,'2025-10-21','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12163,2526,0,0,4154,'2025-10-22','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12164,2526,0,0,4154,'2025-10-23','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12165,2526,0,0,4154,'2025-10-24','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12166,2526,0,0,4154,'2025-10-25','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12167,2526,0,0,4154,'2025-10-26','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12168,2526,0,0,4154,'2025-10-27','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12169,2526,0,0,4154,'2025-10-28','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12170,2526,0,0,4154,'2025-10-29','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12171,2526,0,0,4154,'2025-10-30','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12172,2526,0,0,4154,'2025-10-31','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12173,2526,0,0,4154,'2025-11-01','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12174,2526,0,0,4154,'2025-11-02','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12175,2526,0,0,4154,'2025-11-03','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12176,2526,0,0,4154,'2025-11-04','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12177,2526,0,0,4154,'2025-11-05','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12178,2526,0,0,4154,'2025-11-06','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12179,2526,0,0,4154,'2025-11-07','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12180,2526,0,0,4154,'2025-11-08','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','vishal','2025-11-25 13:59:33',0),(12181,2526,0,0,4154,'2025-11-09','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12182,2526,0,0,4154,'2025-11-10','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12183,2526,0,0,4154,'2025-11-11','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12184,2526,0,0,4154,'2025-11-12','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12185,2526,0,0,4154,'2025-11-13','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12186,2526,0,0,4154,'2025-11-14','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12187,2526,0,0,4154,'2025-11-15','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12188,2526,0,0,4154,'2025-11-16','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12189,2526,0,0,4154,'2025-11-17','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12190,2526,0,0,4154,'2025-11-18','09:00:00',0,195,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 07:28:23','riya','2025-11-25 18:51:01',0),(12191,2526,0,0,4155,'2025-11-24','00:00:00',2941,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 20:49:31','drashti','2025-11-24 08:19:31',0),(12192,2526,0,0,4155,'2025-11-24','20:52:07',2941,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',4563,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-24 20:52:07','drashti','2025-11-24 20:52:07',0),(12193,2526,0,0,4010,'2025-11-23','21:13:00',0,185,'USG','USG0091','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',165,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:13:44','vishal','2025-11-24 21:14:26',0),(12194,2526,0,0,4010,'2025-11-24','21:13:00',0,185,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',165,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:13:44','','0000-00-00 00:00:00',0),(12195,2526,0,0,4010,'2025-11-23','21:13:00',0,185,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',165,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:14:26','vishal','2025-11-24 21:15:20',0),(12196,2526,0,0,4156,'2025-11-25','08:48:19',2941,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,84,'',0,0,'','','','','',2526,'H','O',4564,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-25 08:48:19','reception','2025-11-25 08:48:19',0),(12197,2526,0,0,4157,'2025-11-25','00:00:00',2942,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4565,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 09:05:47','reception','2025-11-25 09:06:08',0),(12198,2526,0,0,4158,'2025-11-25','05:00:00',0,196,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',172,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 09:08:51','vishal','2025-11-26 12:08:12',0),(12199,2526,0,0,4158,'2025-11-25','05:00:00',0,196,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',172,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 09:08:51','vishal','2025-11-26 12:08:12',0),(12200,2526,0,0,4158,'2025-11-25','05:00:00',0,196,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',172,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:38:51','vishal','2025-11-26 12:08:12',0),(12201,2526,0,0,4158,'2025-11-25','05:00:00',0,196,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',172,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:38:51','vishal','2025-11-26 12:08:12',0),(12202,2526,0,0,4158,'2025-11-25','05:00:00',0,196,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',172,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:38:51','vishal','2025-11-26 12:08:12',0),(12203,2526,0,0,4158,'2025-11-25','05:00:00',0,196,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',172,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:38:51','vishal','2025-11-26 12:08:12',0),(12204,2526,0,0,4158,'2025-11-25','05:00:00',0,196,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',172,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:38:51','vishal','2025-11-26 12:08:12',0),(12205,2526,0,0,3611,'2025-11-24','17:00:00',0,171,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:54','vishal','2025-11-25 15:22:18',0),(12206,2526,0,0,3611,'2025-11-24','17:00:00',0,171,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:54','vishal','2025-11-25 15:22:18',0),(12207,2526,0,0,3611,'2025-11-24','17:00:00',0,171,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:54','vishal','2025-11-25 15:22:18',0),(12208,2526,0,0,3611,'2025-11-24','17:00:00',0,171,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:54','vishal','2025-11-25 15:23:35',0),(12209,2526,0,0,3611,'2025-11-24','17:00:00',0,171,'DRC','DRC0019','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:54','vishal','2025-11-25 15:23:35',0),(12210,2526,0,0,3861,'2025-11-24','22:40:00',0,179,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:55','vishal','2025-11-30 12:04:11',0),(12211,2526,0,0,3861,'2025-11-24','22:40:00',0,179,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:55','vishal','2025-11-25 10:37:15',0),(12212,2526,0,0,3861,'2025-11-24','22:40:00',0,179,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:55','vishal','2025-11-25 10:37:15',0),(12213,2526,0,0,3861,'2025-11-24','22:40:00',0,179,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:55','vishal','2025-11-25 10:37:15',0),(12214,2526,0,0,3861,'2025-11-24','22:40:00',0,179,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:55','vishal','2025-11-25 10:37:15',0),(12215,2526,0,0,4019,'2025-11-24','20:30:00',0,189,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',171,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:55','vishal','2025-11-26 12:04:09',0),(12216,2526,0,0,4019,'2025-11-24','20:30:00',0,189,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',171,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:55','vishal','2025-11-25 17:01:38',0),(12217,2526,0,0,4019,'2025-11-24','20:30:00',0,189,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',171,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:55','vishal','2025-11-25 17:01:38',0),(12218,2526,0,0,4019,'2025-11-24','20:30:00',0,189,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',171,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:55','vishal','2025-11-25 17:01:38',0),(12219,2526,0,0,4019,'2025-11-24','20:30:00',0,189,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',171,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:55','vishal','2025-11-25 17:01:38',0),(12220,2526,0,0,4020,'2025-11-25','08:50:00',0,190,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:55','vishal','2025-11-25 12:01:58',0),(12221,2526,0,0,4020,'2025-11-25','08:50:00',0,190,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:55','vishal','2025-11-25 12:01:58',0),(12222,2526,0,0,4020,'2025-11-25','08:50:00',0,190,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:55','vishal','2025-11-25 12:01:58',0),(12223,2526,0,0,4020,'2025-11-25','08:50:00',0,190,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','409','','','',2526,'H','I',167,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:55','vishal','2025-11-25 12:01:58',0),(12224,2526,0,0,4020,'2025-11-25','08:50:00',0,190,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 20:56:55','vishal','2025-11-25 12:02:43',0),(12225,2526,0,0,4017,'2025-11-25','09:29:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,23,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 09:31:05','','0000-00-00 00:00:00',0),(12226,2526,0,0,4017,'2025-11-25','09:30:00',0,187,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,24,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 09:31:05','vishal','2025-11-28 15:44:13',0),(12227,2526,0,0,4017,'2025-11-25','09:30:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,25,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 09:31:05','','0000-00-00 00:00:00',0),(12228,2526,0,0,4017,'2025-11-25','09:30:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,26,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 09:31:05','','0000-00-00 00:00:00',0),(12229,2526,0,0,4159,'2025-11-24','22:30:00',1388,197,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',187,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 09:43:42','vishal','2025-11-25 11:23:16',0),(12230,2526,0,0,4159,'2025-11-24','22:30:00',1388,197,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',187,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 09:43:42','vishal','2025-11-25 11:23:16',0),(12231,2526,0,0,4159,'2025-11-24','22:30:00',1388,197,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',187,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:13:42','vishal','2025-11-25 11:23:16',0),(12232,2526,0,0,4159,'2025-11-24','22:30:00',1388,197,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',187,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:13:42','vishal','2025-11-25 11:23:16',0),(12233,2526,0,0,4159,'2025-11-24','22:30:00',1388,197,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',187,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:13:42','vishal','2025-11-25 11:23:16',0),(12234,2526,0,0,4159,'2025-11-25','22:30:00',1388,197,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:13:42','vishal','2025-11-25 11:29:38',0),(12235,2526,0,0,4159,'2025-11-24','22:30:00',1388,197,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:13:42','vishal','2025-11-25 11:23:16',0),(12236,2526,0,0,4160,'2025-11-25','00:00:00',2159,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4566,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 09:52:11','reception','2025-11-25 09:52:46',0),(12237,2526,0,0,4161,'2025-11-25','09:45:00',2711,198,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 09:58:58','vishal','2025-11-25 10:45:35',0),(12238,2526,0,0,4161,'2025-11-25','09:45:00',2711,198,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 09:58:58','vishal','2025-11-25 10:45:35',0),(12239,2526,0,0,4161,'2025-11-25','09:45:00',2711,198,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:28:58','vishal','2025-11-25 10:45:35',0),(12240,2526,0,0,4161,'2025-11-25','09:45:00',2711,198,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:28:58','vishal','2025-11-25 10:45:35',0),(12241,2526,0,0,4161,'2025-11-25','09:45:00',2711,198,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:28:58','vishal','2025-11-25 10:45:35',0),(12242,2526,0,0,4161,'2025-11-25','09:45:00',2711,198,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:28:58','vishal','2025-11-25 10:45:35',0),(12243,2526,0,0,4161,'2025-11-25','09:45:00',2711,198,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:28:58','vishal','2025-11-25 10:45:35',0),(12244,2526,0,0,4162,'2025-11-25','00:00:00',1239,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4567,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 10:03:52','reception','2025-11-25 10:04:36',0),(12245,2526,0,0,4163,'2025-11-25','00:00:00',2943,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4568,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 10:07:01','drashti','2025-11-25 10:07:57',0),(12246,2526,0,0,4164,'2025-11-25','10:08:26',2824,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4569,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 10:08:26','reception','2025-11-25 10:08:26',0),(12247,2526,0,0,4165,'2025-11-25','00:00:00',2448,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4570,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 10:12:15','reception','2025-11-25 10:12:53',0),(12248,2526,0,0,4165,'2025-11-25','10:12:53',2448,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4570,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 10:12:53','reception','2025-11-25 10:12:53',0),(12249,2526,0,0,4166,'2025-11-25','09:50:00',2323,199,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',176,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:15:47','riya','2025-11-26 18:44:00',0),(12250,2526,0,0,4166,'2025-11-25','09:50:00',2323,199,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',176,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:15:47','riya','2025-11-26 18:44:00',0),(12251,2526,0,0,4166,'2025-11-25','09:50:00',2323,199,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','309','','','',2526,'H','I',176,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:45:47','riya','2025-11-26 18:44:00',0),(12252,2526,0,0,4166,'2025-11-25','09:50:00',2323,199,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','309','','','',2526,'H','I',176,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:45:47','riya','2025-11-26 18:44:00',0),(12253,2526,0,0,4166,'2025-11-25','09:50:00',2323,199,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','309','','','',2526,'H','I',176,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:45:47','riya','2025-11-26 18:44:00',0),(12254,2526,0,0,4166,'2025-11-25','09:50:00',2323,199,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','309','','','',2526,'H','I',176,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:45:47','riya','2025-11-26 18:44:00',0),(12255,2526,0,0,4166,'2025-11-25','09:50:00',2323,199,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','309','','','',2526,'H','I',176,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:45:47','riya','2025-11-26 18:44:00',0),(12256,2526,0,0,4167,'2025-11-25','00:00:00',2944,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',4571,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-25 10:22:37','manshi','2025-11-25 10:23:12',0),(12257,2526,0,0,4168,'2025-11-25','00:00:00',1617,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4572,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 10:27:24','drashti','2025-11-25 10:27:44',0),(12258,2526,0,0,3959,'2025-11-25','09:30:00',0,183,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',0,'','',0,49,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:59:47','vishal','2025-11-25 11:16:09',0),(12259,2526,0,0,3959,'2025-11-25','09:30:00',0,183,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',0,'','',0,45,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:59:47','vishal','2025-11-25 11:16:09',0),(12260,2526,0,0,3959,'2025-11-25','09:30:00',0,183,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',0,'','',0,46,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:59:47','vishal','2025-11-25 11:16:09',0),(12261,2526,0,0,3959,'2025-11-25','09:30:00',0,183,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:59:47','vishal','2025-11-25 10:34:08',0),(12262,2526,0,0,3959,'2025-11-25','09:30:00',0,183,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',0,'','',0,48,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 21:59:47','vishal','2025-11-25 11:15:17',0),(12263,2526,0,0,4169,'2025-11-25','00:00:00',1153,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4591,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 10:30:32','reception','2025-11-25 11:23:01',0),(12264,2526,0,0,4170,'2025-11-25','00:00:00',2945,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4573,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 10:30:59','drashti','2025-11-25 10:32:49',0),(12265,2526,0,0,3959,'2025-11-24','10:31:00',0,183,'WPRC','WPRC0116','H','N',1.00,8000,8000,'P',0,0,0.00,0.00,8000.00,8000,4,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:34:08','','0000-00-00 00:00:00',0),(12266,2526,0,0,3959,'2025-11-25','10:31:00',0,183,'ROOM','ROOM0008','H','N',8.00,100,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:34:08','vishal','2025-11-26 16:25:38',0),(12267,2526,0,0,3959,'2025-11-25','10:32:00',0,183,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,51,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:34:08','vishal','2025-11-25 11:13:25',0),(12268,2526,0,0,3959,'2025-11-25','10:32:00',0,183,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:34:08','','0000-00-00 00:00:00',0),(12269,2526,0,0,3959,'2025-11-25','10:33:00',0,183,'WPRC','WPRC0087','H','N',4.00,500,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:34:08','riya','2025-11-27 14:29:06',0),(12270,2526,0,0,3959,'2025-11-25','10:33:00',0,183,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:34:08','riya','2025-11-27 14:34:01',0),(12271,2526,0,0,4171,'2025-11-25','00:00:00',2946,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4574,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 10:34:28','drashti','2025-11-25 10:35:57',0),(12272,2526,0,0,3959,'2025-11-24','10:34:00',0,183,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:35:13','','0000-00-00 00:00:00',0),(12273,2526,0,0,3959,'2025-11-25','10:34:00',0,183,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:35:13','','0000-00-00 00:00:00',0),(12274,2526,0,0,3861,'2025-11-25','10:36:00',0,179,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:37:15','vishal','2025-11-30 12:04:11',0),(12275,2526,0,0,4125,'2025-11-24','10:39:00',0,194,'WPRC','WPRC0086','H','N',2.00,200,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',179,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:41:02','','0000-00-00 00:00:00',0),(12276,2526,0,0,4125,'2025-11-24','10:39:00',0,194,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',179,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:41:02','','0000-00-00 00:00:00',0),(12277,2526,0,0,4125,'2025-11-25','10:39:00',0,194,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',179,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:41:02','','0000-00-00 00:00:00',0),(12278,2526,0,0,4125,'2025-11-24','10:39:00',0,194,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',179,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:41:02','','0000-00-00 00:00:00',0),(12279,2526,0,0,4125,'2025-11-24','10:40:00',0,194,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',179,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:41:02','','0000-00-00 00:00:00',0),(12280,2526,0,0,4125,'2025-11-24','10:40:00',0,194,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',179,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:41:02','','0000-00-00 00:00:00',0),(12281,2526,0,0,4125,'2025-11-24','10:40:00',0,194,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',179,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:41:02','','0000-00-00 00:00:00',0),(12282,2526,0,0,4125,'2025-11-25','10:40:00',0,194,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',179,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:41:02','','0000-00-00 00:00:00',0),(12283,2526,0,0,4172,'2025-11-25','00:00:00',2947,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4575,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 10:41:03','janvi','2025-11-25 10:41:37',0),(12284,2526,0,0,4173,'2025-11-25','00:00:00',2948,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4576,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 10:44:25','janvi','2025-11-25 10:45:03',0),(12285,2526,0,0,4161,'2025-11-25','10:44:00',2711,198,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:45:35','vishal','2025-11-26 11:25:43',0),(12286,2526,0,0,4161,'2025-11-25','10:44:00',2711,198,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:45:35','vishal','2025-11-26 11:25:43',0),(12287,2526,0,0,4161,'2025-11-25','10:44:00',2711,198,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:45:35','vishal','2025-11-26 11:25:43',0),(12288,2526,0,0,4161,'2025-11-25','10:45:00',2711,198,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:45:35','','0000-00-00 00:00:00',0),(12289,2526,0,0,4161,'2025-11-25','10:45:00',2711,198,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',0,'','',0,7,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 10:45:35','vishal','2025-11-26 11:23:15',0),(12290,2526,0,0,4167,'2025-11-25','11:02:43',2944,0,'XRY','XRY0254','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',4577,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-25 11:02:43','manshi','2025-11-25 11:02:43',0),(12291,2526,0,0,4174,'2025-11-25','00:00:00',2949,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4578,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 11:04:41','reception','2025-11-25 11:05:19',0),(12292,2526,0,0,4175,'2025-11-25','00:00:00',2950,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4579,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 11:05:35','drashti','2025-11-25 11:06:02',0),(12293,2526,0,0,4176,'2025-11-25','00:00:00',2951,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4580,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 11:08:58','janvi','2025-11-25 11:47:12',0),(12294,2526,0,0,4177,'2025-11-25','00:00:00',2952,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4581,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 11:10:31','janvi','2025-11-25 11:48:28',0),(12295,2526,0,0,4178,'2025-11-25','00:00:00',2953,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4583,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 11:10:32','janvi','2025-11-25 11:12:35',0),(12296,2526,0,0,4179,'2025-11-25','00:00:00',2954,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4582,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 11:11:46','janvi','2025-11-25 11:12:16',0),(12297,2526,0,0,4180,'2025-11-25','00:00:00',2955,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4585,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 11:13:34','reception','2025-11-25 11:14:05',0),(12298,2526,0,0,4181,'2025-11-25','00:00:00',2956,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4584,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 11:13:39','drashti','2025-11-25 11:14:03',0),(12299,2526,0,0,4182,'2025-11-25','00:00:00',2957,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4586,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 11:14:04','janvi','2025-11-25 11:14:48',0),(12300,2526,0,0,4183,'2025-11-25','00:00:00',2958,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4587,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 11:16:51','reception','2025-11-25 11:17:09',0),(12301,2526,0,0,4184,'2025-11-25','00:00:00',2959,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4588,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 11:19:19','janvi','2025-11-25 11:21:09',0),(12302,2526,0,0,4185,'2025-11-25','00:00:00',2539,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4589,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 11:21:58','reception','2025-11-25 11:22:17',0),(12303,2526,0,0,4182,'2025-11-25','11:22:38',2957,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',4590,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 11:22:38','janvi','2025-11-25 11:22:38',0),(12304,2526,0,0,4159,'2025-11-24','11:20:00',1388,197,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',187,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 11:23:16','','0000-00-00 00:00:00',0),(12305,2526,0,0,4159,'2025-11-24','11:20:00',1388,197,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',187,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 11:23:16','','0000-00-00 00:00:00',0),(12306,2526,0,0,4159,'2025-11-25','11:21:00',1388,197,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',187,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 11:23:16','','0000-00-00 00:00:00',0),(12307,2526,0,0,4159,'2025-11-25','11:21:00',1388,197,'WPRC','WPRC0090','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',187,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 11:23:16','','0000-00-00 00:00:00',0),(12308,2526,0,0,4159,'2025-11-24','11:22:00',1388,197,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',187,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 11:23:16','','0000-00-00 00:00:00',0),(12309,2526,0,0,4159,'2025-11-25','11:22:00',1388,197,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',187,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 11:23:16','','0000-00-00 00:00:00',0),(12310,2526,0,0,4159,'2025-11-25','22:30:00',1388,197,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',187,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 22:53:30','vishal','2025-11-25 11:29:38',0),(12311,2526,0,0,4186,'2025-11-25','00:00:00',2960,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4592,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 11:23:37','reception','2025-11-25 11:24:10',0),(12312,2526,0,0,4170,'2025-11-25','11:26:54',2945,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4593,1,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 11:26:54','reception','2025-11-25 11:26:54',0),(12313,2526,0,0,4170,'2025-11-25','11:26:54',2945,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4593,2,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 11:26:54','reception','2025-11-25 11:26:54',0),(12314,2526,0,0,4170,'2025-11-25','11:26:54',2945,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4593,3,471,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 11:26:54','reception','2025-11-25 11:26:54',0),(12315,2526,0,0,4187,'2025-11-25','00:00:00',2961,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4594,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 11:29:02','drashti','2025-11-25 13:05:37',0),(12316,2526,0,0,4159,'2025-11-25','11:28:00',1388,197,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',187,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 11:29:38','','0000-00-00 00:00:00',0),(12317,2526,0,0,4159,'2025-11-24','22:30:00',1388,197,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-24 22:59:41','vishal','2025-11-26 11:34:53',0),(12318,2526,0,0,4188,'2025-11-25','00:00:00',2962,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4595,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 11:34:51','reception','2025-11-25 11:35:29',0),(12319,2526,0,0,4189,'2025-11-25','00:00:00',2963,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4597,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 11:35:45','drashti','2025-11-25 11:37:52',0),(12320,2526,0,0,4163,'2025-11-25','11:36:57',2943,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',4596,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 11:36:57','reception','2025-11-25 11:36:57',0),(12321,2526,0,0,4184,'2025-11-25','11:38:48',2959,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',4598,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 11:38:48','janvi','2025-11-25 11:38:48',0),(12322,2526,0,0,4190,'2025-11-25','00:00:00',1797,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4599,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 11:39:15','reception','2025-11-25 11:39:38',0),(12323,2526,0,0,4191,'2025-11-25','00:00:00',2964,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4600,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 11:41:05','reception','2025-11-25 11:41:39',0),(12324,2526,0,0,4192,'2025-11-25','00:00:00',2965,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4601,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 11:42:48','reception','2025-11-25 11:43:15',0),(12325,2526,0,0,4193,'2025-11-25','00:00:00',2966,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4603,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 11:46:31','drashti','2025-11-25 11:47:22',0),(12326,2526,0,0,4176,'2025-11-25','11:49:24',2951,0,'PKG','CASE','H','N',1.00,750,750,'A',0,250,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',4605,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 11:49:24','drashti','2025-11-25 11:49:24',0),(12327,2526,0,0,4176,'2025-11-25','11:49:24',2951,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4605,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 11:49:24','drashti','2025-11-25 11:49:24',0),(12328,2526,0,0,4177,'2025-11-25','11:50:57',2952,0,'PKG','CASE','H','N',1.00,750,750,'A',0,250,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',4606,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 11:50:57','drashti','2025-11-25 11:50:57',0),(12329,2526,0,0,4177,'2025-11-25','11:50:57',2952,0,'WPRC','WPRC0021','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4606,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 11:50:57','drashti','2025-11-25 11:50:57',0),(12330,2526,0,0,4194,'2025-11-25','00:00:00',2967,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4607,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 11:58:23','drashti','2025-11-25 13:02:35',0),(12331,2526,0,0,4020,'2025-11-24','11:59:00',0,190,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',167,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 12:01:58','','0000-00-00 00:00:00',0),(12332,2526,0,0,4020,'2025-11-25','11:59:00',0,190,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',167,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 12:01:58','','0000-00-00 00:00:00',0),(12333,2526,0,0,4020,'2025-11-25','11:59:00',0,190,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 12:01:58','vishal','2025-11-25 12:02:43',0),(12334,2526,0,0,4195,'2025-11-25','00:00:00',2968,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4608,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 12:03:31','reception','2025-11-25 12:04:49',0),(12335,2526,0,0,4196,'2025-11-25','00:00:00',422,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',4609,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-25 12:05:39','manshi','2025-11-25 12:24:37',0),(12336,2526,0,0,4020,'2025-11-24','12:04:00',0,190,'SURG','SURG0014','H','N',1.00,14000,14000,'P',0,0,0.00,0.00,14000.00,14000,3,0,0,'',0,0,'','','','','',2526,'H','I',167,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 12:05:50','','0000-00-00 00:00:00',0),(12337,2526,0,0,4020,'2025-11-24','12:04:00',0,190,'SURG','SURG0015','H','N',1.00,4400,4400,'P',0,0,0.00,0.00,4400.00,4400,3,0,0,'',0,0,'','','','','',2526,'H','I',167,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 12:05:50','','0000-00-00 00:00:00',0),(12338,2526,0,0,4195,'2025-11-25','12:11:43',2968,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',4610,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 12:11:43','janvi','2025-11-25 12:11:43',0),(12339,2526,0,0,4186,'2025-11-25','12:20:09',2960,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4611,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 12:20:09','reception','2025-11-25 12:20:09',0),(12340,2526,0,0,4186,'2025-11-25','12:20:09',2960,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4611,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 12:20:09','reception','2025-11-25 12:20:09',0),(12341,2526,0,0,4186,'2025-11-25','12:20:09',2960,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4611,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 12:20:09','reception','2025-11-25 12:20:09',0),(12342,2526,0,0,4197,'2025-11-25','12:22:19',1928,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',4612,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-25 12:22:19','manshi','2025-11-25 12:22:19',0),(12343,2526,0,0,4198,'2025-11-25','00:00:00',2969,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4614,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 12:25:28','reception','2025-11-25 12:27:07',0),(12344,2526,0,0,4199,'2025-11-25','00:00:00',2970,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4615,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 12:28:50','reception','2025-11-25 12:29:15',0),(12345,2526,0,0,3962,'2025-11-25','12:14:00',0,184,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',168,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 12:29:00','','0000-00-00 00:00:00',0),(12346,2526,0,0,3962,'2025-11-25','12:24:00',0,184,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',168,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 12:29:00','','0000-00-00 00:00:00',0),(12347,2526,0,0,3962,'2025-11-25','12:27:00',0,184,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',168,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 12:29:00','','0000-00-00 00:00:00',0),(12348,2526,0,0,3962,'2025-11-24','12:30:00',0,184,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',168,34,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 12:31:22','','0000-00-00 00:00:00',0),(12349,2526,0,0,4200,'2025-11-25','00:00:00',855,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4616,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 12:32:09','reception','2025-11-25 12:32:22',0),(12350,2526,0,0,4201,'2025-11-25','00:00:00',2160,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4617,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 12:40:25','reception','2025-11-25 12:40:43',0),(12351,2526,0,0,4192,'2025-11-25','12:50:54',2965,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4618,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 12:50:54','reception','2025-11-25 12:50:54',0),(12352,2526,0,0,4192,'2025-11-25','12:50:54',2965,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4618,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 12:50:54','reception','2025-11-25 12:50:54',0),(12353,2526,0,0,4178,'2025-11-25','12:51:03',2953,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',4619,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 12:51:03','drashti','2025-11-25 12:51:03',0),(12354,2526,0,0,4202,'2025-11-25','00:00:00',2971,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4620,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 12:54:22','drashti','2025-11-25 13:16:30',0),(12355,2526,0,0,4202,'2025-11-25','12:56:15',2971,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',4620,2,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 12:56:15','drashti','2025-11-25 13:16:30',0),(12356,2526,0,0,4203,'2025-11-25','00:00:00',2301,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4621,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-25 12:58:49','manshi','2025-11-25 12:59:43',0),(12357,2526,0,0,4202,'2025-11-25','13:18:03',2971,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4625,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 13:18:03','drashti','2025-11-25 13:18:03',0),(12358,2526,0,0,4202,'2025-11-25','13:18:03',2971,0,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','O',4625,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 13:18:03','drashti','2025-11-25 13:18:03',0),(12359,2526,0,0,4204,'2025-11-25','00:00:00',2972,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 13:27:05','reception','2025-11-25 00:57:05',0),(12360,2526,0,0,4204,'2025-11-25','13:27:40',2972,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',4626,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 13:27:40','reception','2025-11-25 13:27:40',0),(12361,2526,0,0,4047,'2025-11-25','10:30:00',0,191,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 01:00:36','vishal','2025-11-25 17:14:35',0),(12362,2526,0,0,4047,'2025-11-25','10:30:00',0,191,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 01:00:36','vishal','2025-11-25 17:14:35',0),(12363,2526,0,0,4047,'2025-11-25','10:30:00',0,191,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 01:00:36','vishal','2025-11-25 17:14:35',0),(12364,2526,0,0,4047,'2025-11-25','10:30:00',0,191,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 01:00:36','vishal','2025-11-25 17:14:35',0),(12365,2526,0,0,4047,'2025-11-25','10:30:00',0,191,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 01:00:36','vishal','2025-11-25 17:14:35',0),(12366,2526,0,0,4125,'2025-11-25','13:45:00',0,194,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',179,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 13:46:10','','0000-00-00 00:00:00',0),(12367,2526,0,0,4092,'2025-11-24','14:00:00',0,193,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',169,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 14:01:27','','0000-00-00 00:00:00',0),(12368,2526,0,0,4092,'2025-11-24','14:00:00',0,193,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',169,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 14:01:27','','0000-00-00 00:00:00',0),(12369,2526,0,0,4092,'2025-11-25','14:00:00',0,193,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',169,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 14:01:27','','0000-00-00 00:00:00',0),(12370,2526,0,0,4092,'2025-11-25','14:00:00',0,193,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',169,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 14:01:27','','0000-00-00 00:00:00',0),(12371,2526,0,0,3611,'2025-11-24','15:21:00',0,171,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 15:22:18','vishal','2025-11-25 15:23:35',0),(12372,2526,0,0,3611,'2025-11-24','15:21:00',0,171,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 15:22:18','vishal','2025-11-25 15:23:35',0),(12373,2526,0,0,3611,'2025-11-24','15:21:00',0,171,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 15:22:18','','0000-00-00 00:00:00',0),(12374,2526,0,0,3909,'2025-11-25','15:00:00',0,181,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 03:48:03','vishal','2025-11-25 16:24:27',0),(12375,2526,0,0,3909,'2025-11-25','15:00:00',0,181,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 03:48:03','vishal','2025-11-25 16:24:27',0),(12376,2526,0,0,3909,'2025-11-25','15:00:00',0,181,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 03:48:03','vishal','2025-11-25 16:24:27',0),(12377,2526,0,0,3909,'2025-11-25','15:00:00',0,181,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 03:48:03','vishal','2025-11-25 16:24:27',0),(12378,2526,0,0,3909,'2025-11-25','15:00:00',0,181,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 03:48:03','vishal','2025-11-25 16:24:27',0),(12379,2526,0,0,3909,'2025-11-24','16:18:00',0,181,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:23:51','vishal','2025-11-25 16:24:27',0),(12380,2526,0,0,3909,'2025-11-25','16:18:00',0,181,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:23:51','','0000-00-00 00:00:00',0),(12381,2526,0,0,3909,'2025-11-23','16:18:00',0,181,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:23:51','vishal','2025-11-25 16:24:27',0),(12382,2526,0,0,3909,'2025-11-24','16:18:00',0,181,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:23:51','','0000-00-00 00:00:00',0),(12383,2526,0,0,3909,'2025-11-25','16:18:00',0,181,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:23:51','riya','2025-12-03 14:04:02',0),(12384,2526,0,0,3909,'2025-11-23','16:22:00',0,181,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:23:51','vishal','2025-11-25 16:24:27',0),(12385,2526,0,0,3909,'2025-11-23','16:23:00',0,181,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:23:51','vishal','2025-11-25 16:24:27',0),(12386,2526,0,0,3909,'2025-11-23','16:23:00',0,181,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:23:51','vishal','2025-11-25 16:24:27',0),(12387,2526,0,0,3764,'2025-11-25','10:00:00',0,178,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,52,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 03:54:38','vishal','2025-11-25 16:35:25',0),(12388,2526,0,0,3764,'2025-11-25','10:00:00',0,178,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,53,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 03:54:38','vishal','2025-11-25 16:35:25',0),(12389,2526,0,0,3764,'2025-11-25','10:00:00',0,178,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,52,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 03:54:38','vishal','2025-11-25 16:34:57',0),(12390,2526,0,0,3764,'2025-11-25','10:00:00',0,178,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',220,53,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 03:54:38','vishal','2025-11-25 16:34:57',0),(12391,2526,0,0,3764,'2025-11-25','10:00:00',0,178,'DRC','DRC0019','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',220,52,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 03:54:38','vishal','2025-11-25 16:33:04',0),(12392,2526,0,0,3764,'2025-11-21','16:28:00',0,178,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','','','','',2526,'H','I',220,23,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:30:34','vishal','2025-11-25 16:33:04',0),(12393,2526,0,0,3764,'2025-11-24','16:31:00',0,178,'DRC','DRC0020','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,66,0,0,'',0,0,'','','','','',2526,'H','I',220,48,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:33:04','vishal','2025-11-25 16:34:57',0),(12394,2526,0,0,3764,'2025-11-24','16:32:00',0,178,'DRC','DRC0020','H','N',1.00,2500,2500,'A',0,0,0.00,0.00,2500.00,2500,8,0,0,'',0,0,'','','','','',2526,'H','I',220,49,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:33:04','vishal','2025-11-25 16:34:57',0),(12395,2526,0,0,3764,'2025-11-24','16:33:00',0,178,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',220,50,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:34:57','vishal','2025-11-25 16:35:25',0),(12396,2526,0,0,3764,'2025-11-24','16:33:00',0,178,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',220,51,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:34:57','vishal','2025-11-25 16:35:25',0),(12397,2526,0,0,3764,'2025-11-25','16:33:00',0,178,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',220,57,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:34:57','','0000-00-00 00:00:00',0),(12398,2526,0,0,3764,'2025-11-25','16:33:00',0,178,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',220,58,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:34:57','','0000-00-00 00:00:00',0),(12399,2526,0,0,4054,'2025-11-25','11:00:00',0,192,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',2526,'H','I',173,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:06:14','vishal','2025-11-26 12:28:24',0),(12400,2526,0,0,4054,'2025-11-25','11:00:00',0,192,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',2526,'H','I',173,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:06:14','vishal','2025-11-25 16:37:17',0),(12401,2526,0,0,4054,'2025-11-25','11:00:00',0,192,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',2526,'H','I',173,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:06:14','vishal','2025-11-25 16:37:50',0),(12402,2526,0,0,4054,'2025-11-25','11:00:00',0,192,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',2526,'H','I',173,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:06:14','vishal','2025-11-25 16:37:50',0),(12403,2526,0,0,4054,'2025-11-25','11:00:00',0,192,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',2526,'H','I',173,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:06:14','vishal','2025-11-26 12:28:24',0),(12404,2526,0,0,4054,'2025-11-24','16:36:00',0,192,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',173,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:37:17','vishal','2025-11-25 16:37:50',0),(12405,2526,0,0,4054,'2025-11-24','16:36:00',0,192,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',173,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:37:17','vishal','2025-11-25 16:37:50',0),(12406,2526,0,0,4054,'2025-11-24','16:36:00',0,192,'WPRC','WPRC0086','H','N',2.00,200,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',173,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:37:17','vishal','2025-11-25 16:37:50',0),(12407,2526,0,0,4054,'2025-11-25','16:36:00',0,192,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',173,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:37:17','','0000-00-00 00:00:00',0),(12408,2526,0,0,3517,'2025-11-25','13:00:00',0,165,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:09:12','riya','2025-11-26 13:43:40',0),(12409,2526,0,0,3517,'2025-11-25','13:00:00',0,165,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:09:12','riya','2025-11-26 13:27:13',0),(12410,2526,0,0,3517,'2025-11-25','13:00:00',0,165,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:09:12','riya','2025-11-26 13:43:40',0),(12411,2526,0,0,3517,'2025-11-25','13:00:00',0,165,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,70,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:09:12','riya','2025-11-26 13:27:13',0),(12412,2526,0,0,3517,'2025-11-25','13:00:00',0,165,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,70,0,0,'',0,0,'','402','','','',2526,'H','I',174,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:09:12','riya','2025-11-26 13:34:13',0),(12413,2526,0,0,3517,'2025-11-24','16:43:00',0,165,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:44:51','riya','2025-11-26 13:27:13',0),(12414,2526,0,0,3517,'2025-11-24','16:43:00',0,165,'DRC','DRC0020','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:44:51','riya','2025-11-26 13:43:40',0),(12415,2526,0,0,3517,'2025-11-25','16:43:00',0,165,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:44:51','','0000-00-00 00:00:00',0),(12416,2526,0,0,3517,'2025-11-25','16:43:00',0,165,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:44:51','','0000-00-00 00:00:00',0),(12417,2526,0,0,4205,'2025-11-25','16:47:58',2643,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4627,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-25 16:47:58','priyanshi','2025-11-25 16:47:58',0),(12418,2526,0,0,3517,'2025-11-24','16:46:00',0,165,'DRC','DRC0020','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:49:36','riya','2025-11-26 13:43:40',0),(12419,2526,0,0,3517,'2025-11-24','16:46:00',0,165,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:49:36','','0000-00-00 00:00:00',0),(12420,2526,0,0,3517,'2025-11-25','16:47:00',0,165,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:49:36','','0000-00-00 00:00:00',0),(12421,2526,0,0,3517,'2025-11-25','16:47:00',0,165,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:49:36','','0000-00-00 00:00:00',0),(12422,2526,0,0,3517,'2025-11-24','16:48:00',0,165,'USG','USG0091','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:49:36','','0000-00-00 00:00:00',0),(12423,2526,0,0,3517,'2025-11-25','16:48:00',0,165,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:49:36','riya','2025-11-26 13:17:33',0),(12424,2526,0,0,3517,'2025-11-25','16:48:00',0,165,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:49:36','','0000-00-00 00:00:00',0),(12425,2526,0,0,3517,'2025-11-24','16:49:00',0,165,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:49:36','','0000-00-00 00:00:00',0),(12426,2526,0,0,2879,'2025-11-25','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:22:30','riya','2025-12-01 19:45:21',0),(12427,2526,0,0,2879,'2025-11-25','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:22:30','riya','2025-12-01 19:41:30',0),(12428,2526,0,0,2879,'2025-11-25','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:22:30','riya','2025-12-01 19:41:30',0),(12429,2526,0,0,2879,'2025-11-25','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:22:30','riya','2025-12-01 19:41:30',0),(12430,2526,0,0,2879,'2025-11-25','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:22:30','vishal','2025-11-30 20:07:24',0),(12431,2526,0,0,2879,'2025-11-25','16:52:00',0,146,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:56:46','riya','2025-12-01 19:41:30',0),(12432,2526,0,0,2879,'2025-11-24','16:53:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:56:46','riya','2025-12-01 19:45:21',0),(12433,2526,0,0,2879,'2025-11-25','16:53:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:56:46','riya','2025-12-01 19:41:30',0),(12434,2526,0,0,2879,'2025-11-25','16:54:00',0,146,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:56:46','riya','2025-12-01 19:41:30',0),(12435,2526,0,0,2879,'2025-11-22','16:55:00',0,146,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,37,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:56:46','riya','2025-12-01 19:41:30',0),(12436,2526,0,0,2879,'2025-11-24','16:55:00',0,146,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,37,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:56:46','riya','2025-12-01 19:41:30',0),(12437,2526,0,0,2879,'2025-11-23','16:56:00',0,146,'DRC','DRC0020','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,187,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:56:46','vishal','2025-11-30 20:00:04',0),(12438,2526,0,0,2879,'2025-11-24','16:56:00',0,146,'DRC','DRC0020','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,187,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 16:56:46','riya','2025-12-01 19:41:30',0),(12439,2526,0,0,4019,'2025-11-23','16:59:00',0,189,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',171,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 17:01:38','','0000-00-00 00:00:00',0),(12440,2526,0,0,4019,'2025-11-23','17:00:00',0,189,'ROOM','ROOM0004','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',171,3,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 17:01:38','vishal','2025-11-26 12:04:09',0),(12441,2526,0,0,4019,'2025-11-24','17:00:00',0,189,'ROOM','ROOM0004','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',171,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 17:01:38','vishal','2025-11-26 12:04:09',0),(12442,2526,0,0,4019,'2025-11-25','17:00:00',0,189,'ROOM','ROOM0004','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',171,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 17:01:38','vishal','2025-11-26 12:04:09',0),(12443,2526,0,0,4019,'2025-11-23','17:01:00',0,189,'DRC','DRC0021','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,4,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 17:01:38','vishal','2025-11-26 12:03:17',0),(12444,2526,0,0,4206,'2025-11-25','00:00:00',1815,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4628,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 17:05:06','reception','2025-11-25 17:05:29',0),(12445,2526,0,0,4207,'2025-11-25','00:00:00',2973,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4629,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 17:07:22','drashti','2025-11-25 17:07:56',0),(12446,2526,0,0,4208,'2025-11-25','00:00:00',2974,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4630,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 17:07:22','reception','2025-11-25 17:08:31',0),(12447,2526,0,0,3764,'2025-11-24','17:04:00',0,178,'USG','USG0092','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,59,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 17:07:24','','0000-00-00 00:00:00',0),(12448,2526,0,0,3764,'2025-11-24','17:05:00',0,178,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,60,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 17:07:24','','0000-00-00 00:00:00',0),(12449,2526,0,0,3764,'2025-11-25','17:05:00',0,178,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,61,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 17:07:24','','0000-00-00 00:00:00',0),(12450,2526,0,0,3764,'2025-11-24','17:05:00',0,178,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,62,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 17:07:24','','0000-00-00 00:00:00',0),(12451,2526,0,0,3764,'2025-11-25','17:05:00',0,178,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,63,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 17:07:24','','0000-00-00 00:00:00',0),(12452,2526,0,0,3764,'2025-11-22','17:07:00',0,178,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,64,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 17:07:24','','0000-00-00 00:00:00',0),(12453,2526,0,0,3764,'2025-11-23','17:07:00',0,178,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,65,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 17:07:24','','0000-00-00 00:00:00',0),(12454,2526,0,0,3611,'2025-11-25','17:00:00',0,171,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:39:10','riya','2025-12-02 16:03:49',0),(12455,2526,0,0,3611,'2025-11-25','17:00:00',0,171,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:39:10','riya','2025-12-02 16:03:49',0),(12456,2526,0,0,3611,'2025-11-25','17:00:00',0,171,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:39:10','riya','2025-12-02 16:03:49',0),(12457,2526,0,0,3611,'2025-11-25','17:00:00',0,171,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:39:10','riya','2025-12-02 16:03:49',0),(12458,2526,0,0,3611,'2025-11-25','17:00:00',0,171,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:39:10','riya','2025-12-02 16:03:49',0),(12459,2526,0,0,4017,'2025-11-25','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,27,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:39:11','vishal','2025-11-26 16:22:51',0),(12460,2526,0,0,4017,'2025-11-25','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,28,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:39:11','vishal','2025-11-26 16:22:51',0),(12461,2526,0,0,4017,'2025-11-25','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,29,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:39:11','vishal','2025-11-26 16:22:51',0),(12462,2526,0,0,4017,'2025-11-25','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,30,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:39:11','vishal','2025-11-26 16:22:51',0),(12463,2526,0,0,4017,'2025-11-25','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,31,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 04:39:11','vishal','2025-11-26 16:22:51',0),(12464,2526,0,0,4047,'2025-11-24','17:13:00',0,191,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',195,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 17:14:35','','0000-00-00 00:00:00',0),(12465,2526,0,0,4047,'2025-11-24','17:13:00',0,191,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',195,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 17:14:35','','0000-00-00 00:00:00',0),(12466,2526,0,0,4047,'2025-11-25','17:14:00',0,191,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',0,'','',0,15,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 17:14:35','riya','2025-12-01 11:44:24',0),(12467,2526,0,0,4209,'2025-11-25','00:00:00',2975,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 17:14:38','janvi','2025-11-25 04:44:38',0),(12468,2526,0,0,4047,'2025-11-24','17:14:00',0,191,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',195,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 17:15:13','','0000-00-00 00:00:00',0),(12469,2526,0,0,4210,'2025-11-25','17:19:41',2688,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4631,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 17:19:41','reception','2025-11-25 17:19:41',0),(12470,2526,0,0,4211,'2025-11-25','17:27:56',2914,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4632,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 17:27:56','reception','2025-11-25 17:27:56',0),(12471,2526,0,0,4211,'2025-11-25','17:27:56',2914,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4632,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 17:27:56','reception','2025-11-25 17:27:56',0),(12472,2526,0,0,4212,'2025-11-25','00:00:00',407,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4633,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 17:36:10','janvi','2025-11-25 17:36:23',0),(12473,2526,0,0,4213,'2025-11-25','00:00:00',1694,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',4641,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-25 17:40:16','manshi','2025-11-25 17:58:21',0),(12474,2526,0,0,4214,'2025-11-25','00:00:00',2976,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4634,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 17:41:02','reception','2025-11-25 17:41:24',0),(12475,2526,0,0,4215,'2025-11-25','00:00:00',2977,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4635,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 17:42:12','drashti','2025-11-25 17:42:35',0),(12476,2526,0,0,4216,'2025-11-25','00:00:00',2978,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4638,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 17:47:35','janvi','2025-11-25 17:51:01',0),(12477,2526,0,0,4217,'2025-11-25','00:00:00',2979,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4637,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 17:49:20','janvi','2025-11-25 17:50:51',0),(12478,2526,0,0,4218,'2025-11-25','00:00:00',2980,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4636,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 17:49:30','reception','2025-11-25 17:49:54',0),(12479,2526,0,0,4219,'2025-11-25','00:00:00',2981,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4639,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 17:50:12','drashti','2025-11-25 17:51:16',0),(12480,2526,0,0,4220,'2025-11-25','00:00:00',2982,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4640,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 17:52:54','reception','2025-11-25 17:54:07',0),(12481,2526,0,0,4221,'2025-11-25','00:00:00',2983,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4642,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 17:58:35','reception','2025-11-25 17:59:11',0),(12482,2526,0,0,4222,'2025-11-25','00:00:00',2984,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4643,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 17:59:28','drashti','2025-11-25 18:00:33',0),(12483,2526,0,0,4214,'2025-11-25','18:00:55',2976,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4644,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:00:55','reception','2025-11-25 18:00:55',0),(12484,2526,0,0,4214,'2025-11-25','18:00:55',2976,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4644,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:00:55','reception','2025-11-25 18:00:55',0),(12485,2526,0,0,4214,'2025-11-25','18:00:55',2976,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4644,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:00:55','reception','2025-11-25 18:00:55',0),(12486,2526,0,0,4223,'2025-11-25','00:00:00',884,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4645,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 18:01:47','drashti','2025-11-25 18:02:04',0),(12487,2526,0,0,4224,'2025-11-25','00:00:00',2985,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4646,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:04:01','reception','2025-11-25 18:04:35',0),(12488,2526,0,0,4226,'2025-11-25','00:00:00',2986,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4648,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:05:17','reception','2025-11-25 18:05:50',0),(12489,2526,0,0,4225,'2025-11-25','18:05:17',2685,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4647,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 18:05:17','drashti','2025-11-25 18:05:17',0),(12490,2526,0,0,4227,'2025-11-25','00:00:00',2987,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4649,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:07:37','reception','2025-11-25 18:08:18',0),(12491,2526,0,0,4228,'2025-11-25','00:00:00',2988,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4651,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-25 18:10:15','manshi','2025-11-25 18:11:33',0),(12492,2526,0,0,4229,'2025-11-25','00:00:00',2989,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4650,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:10:53','reception','2025-11-25 18:11:20',0),(12493,2526,0,0,4230,'2025-11-25','00:00:00',2536,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4652,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:13:52','reception','2025-11-25 19:06:31',0),(12494,2526,0,0,4218,'2025-11-25','18:16:36',2980,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4653,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:16:36','reception','2025-11-25 18:16:36',0),(12495,2526,0,0,4218,'2025-11-25','18:16:36',2980,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4653,2,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:16:36','reception','2025-11-25 18:16:36',0),(12496,2526,0,0,4231,'2025-11-25','00:00:00',2990,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 18:16:57','drashti','2025-11-25 05:46:57',0),(12497,2526,0,0,4231,'2025-11-25','18:18:23',2990,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',4654,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 18:18:23','drashti','2025-11-25 18:18:23',0),(12498,2526,0,0,4231,'2025-11-25','18:18:23',2990,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4654,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 18:18:23','drashti','2025-11-25 18:18:23',0),(12499,2526,0,0,4231,'2025-11-25','18:18:23',2990,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4654,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 18:18:23','drashti','2025-11-25 18:18:23',0),(12500,2526,0,0,4232,'2025-11-25','00:00:00',2097,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',4656,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:29:34','reception','2025-11-25 18:31:06',0),(12501,2526,0,0,4233,'2025-11-25','00:00:00',2991,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4655,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 18:29:51','janvi','2025-11-25 18:30:47',0),(12502,2526,0,0,4234,'2025-11-25','00:00:00',1018,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4658,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 18:31:31','drashti','2025-11-25 18:32:42',0),(12503,2526,0,0,4236,'2025-11-25','00:00:00',2992,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4659,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:32:09','reception','2025-11-25 18:33:17',0),(12504,2526,0,0,4235,'2025-11-25','18:32:39',1953,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4657,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 18:32:39','janvi','2025-11-25 18:32:39',0),(12505,2526,0,0,4226,'2025-11-25','18:35:16',2986,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',4660,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:35:16','reception','2025-11-25 18:35:16',0),(12506,2526,0,0,4237,'2025-11-25','18:39:22',221,0,'OPWD','OPWD0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',4661,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 18:39:22','janvi','2025-11-25 18:39:22',0),(12507,2526,0,0,3959,'2025-11-25','18:37:00',0,183,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-25 18:39:59','','0000-00-00 00:00:00',0),(12508,2526,0,0,3959,'2025-11-25','18:37:00',0,183,'CARE','CARE0004','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-25 18:39:59','riya','2025-11-26 16:33:09',0),(12509,2526,0,0,3959,'2025-11-25','18:37:00',0,183,'CARE','CARE0003','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-25 18:39:59','riya','2025-11-26 16:33:09',0),(12510,2526,0,0,4238,'2025-11-25','00:00:00',2993,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4662,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-25 18:43:08','manshi','2025-11-25 18:43:23',0),(12511,2526,0,0,4239,'2025-11-25','00:00:00',2994,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',4663,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-25 18:45:37','manshi','2025-11-25 18:46:06',0),(12512,2526,0,0,4229,'2025-11-25','18:48:24',2989,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4664,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:48:24','reception','2025-11-25 18:48:24',0),(12513,2526,0,0,4229,'2025-11-25','18:48:24',2989,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4664,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:48:24','reception','2025-11-25 18:48:24',0),(12514,2526,0,0,4240,'2025-11-25','00:00:00',2995,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4665,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:54:18','reception','2025-11-25 18:54:41',0),(12515,2526,0,0,4154,'2025-09-30','18:51:00',0,195,'REG','REG0002','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',170,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-25 18:56:03','','0000-00-00 00:00:00',0),(12516,2526,0,0,4154,'2025-09-30','18:51:00',0,195,'REG','REG0001','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',170,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-25 18:56:03','','0000-00-00 00:00:00',0),(12517,2526,0,0,4154,'2025-09-30','18:52:00',0,195,'CARE','CARE0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',170,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-25 18:56:03','','0000-00-00 00:00:00',0),(12518,2526,0,0,4154,'2025-09-30','18:53:00',0,195,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',170,4,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-25 18:56:03','riya','2025-11-25 18:59:58',0),(12519,2526,0,0,4154,'2025-09-30','18:53:00',0,195,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',170,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-25 18:56:03','','0000-00-00 00:00:00',0),(12520,2526,0,0,4154,'2025-09-30','18:53:00',0,195,'SURG','SURG0014','H','N',1.00,6200,6200,'P',0,0,0.00,0.00,6200.00,6200,3,0,0,'',0,0,'','','','','',2526,'H','I',170,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-25 18:56:03','','0000-00-00 00:00:00',0),(12521,2526,0,0,4154,'2025-09-30','18:54:00',0,195,'SURG','SURG0015','H','N',1.00,2100,2100,'P',0,0,0.00,0.00,2100.00,2100,3,0,0,'',0,0,'','','','','',2526,'H','I',170,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-25 18:56:03','','0000-00-00 00:00:00',0),(12522,2526,0,0,4241,'2025-11-25','00:00:00',2996,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4666,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:56:16','reception','2025-11-25 18:56:50',0),(12523,2526,0,0,4227,'2025-11-25','18:59:13',2987,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4667,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:59:13','reception','2025-11-25 18:59:13',0),(12524,2526,0,0,4227,'2025-11-25','18:59:13',2987,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4667,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 18:59:13','reception','2025-11-25 18:59:13',0),(12525,2526,0,0,4242,'2025-11-25','00:00:00',2997,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-25 19:00:28','manshi','2025-11-25 06:30:28',0),(12526,2526,0,0,4217,'2025-11-25','19:00:29',2979,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4668,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 19:00:29','janvi','2025-11-25 19:00:29',0),(12527,2526,0,0,4242,'2025-11-25','00:00:00',2997,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',4669,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-25 19:03:07','manshi','2025-11-25 19:03:17',0),(12528,2526,0,0,4243,'2025-11-25','00:00:00',662,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4670,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 19:03:19','reception','2025-11-25 19:03:47',0),(12529,2526,0,0,4244,'2025-11-25','00:00:00',2998,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',4671,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 19:05:36','reception','2025-11-25 19:05:50',0),(12530,2526,0,0,4236,'2025-11-25','19:16:34',2992,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4673,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 19:16:34','drashti','2025-11-25 19:16:34',0),(12531,2526,0,0,4236,'2025-11-25','19:16:34',2992,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',4673,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 19:16:34','drashti','2025-11-25 19:16:34',0),(12532,2526,0,0,4245,'2025-11-25','19:30:00',0,200,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',186,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-25 19:27:40','riya','2025-11-26 19:09:15',0),(12533,2526,0,0,4245,'2025-11-25','19:30:00',0,200,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',186,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-25 19:27:40','riya','2025-11-26 19:09:15',0),(12534,2526,0,0,4246,'2025-11-25','19:35:29',2910,0,'OPWD','OPWD0023','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,3,0,0,'',0,0,'','','','','',2526,'H','O',4674,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 19:35:28','janvi','2025-11-25 19:35:28',0),(12535,2526,0,0,4244,'2025-11-25','19:44:28',2998,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4675,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-25 19:44:28','reception','2025-11-25 19:44:28',0),(12536,2526,0,0,4247,'2025-11-25','19:48:54',2818,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',4676,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 19:48:54','drashti','2025-11-25 19:48:54',0),(12537,2526,0,0,4248,'2025-11-25','19:50:33',2033,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4677,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 19:50:33','janvi','2025-11-25 19:51:03',0),(12538,2526,0,0,4249,'2025-11-25','00:00:00',64,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-25 19:50:50','drashti','2025-11-25 07:20:50',0),(12539,2526,0,0,4248,'2025-11-25','19:52:47',2033,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4679,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 19:52:47','janvi','2025-11-25 19:52:47',0),(12540,2526,0,0,4252,'2025-11-25','20:03:37',1837,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4680,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 20:03:37','janvi','2025-11-25 20:03:37',0),(12541,2526,0,0,4254,'2025-11-25','00:00:00',2999,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4681,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 20:05:07','janvi','2025-11-25 20:05:56',0),(12542,2526,0,0,4255,'2025-11-25','20:35:33',1288,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4682,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-25 20:35:33','janvi','2025-11-25 20:35:33',0),(12543,2526,0,0,4253,'2025-11-25','20:36:36',2655,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,7,0,0,'',0,0,'','','','','',2526,'H','O',4683,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-25 20:36:36','manshi','2025-11-25 20:36:36',0),(12544,2526,0,0,4256,'2025-11-26','00:00:00',3000,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 08:49:46','reception','2025-11-25 20:19:46',0),(12545,2526,0,0,4256,'2025-11-26','08:54:03',3000,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',4684,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 08:54:03','reception','2025-11-26 08:54:03',0),(12546,2526,0,0,4256,'2025-11-26','08:54:03',3000,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,7,0,0,'',0,0,'','','','','',2526,'H','O',4684,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 08:54:03','reception','2025-11-26 08:54:03',0),(12547,2526,0,0,4256,'2025-11-26','08:54:03',3000,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,7,0,0,'',0,0,'','','','','',2526,'H','O',4684,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 08:54:03','reception','2025-11-26 08:54:03',0),(12548,2526,0,0,4257,'2025-11-26','00:00:00',3001,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4685,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 08:56:51','reception','2025-11-26 08:57:24',0),(12549,2526,0,0,4258,'2025-11-26','00:00:00',3002,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4686,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 09:36:55','reception','2025-11-26 09:37:14',0),(12550,2526,0,0,4259,'2025-11-26','00:00:00',3003,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4687,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 09:42:22','reception','2025-11-26 09:42:40',0),(12551,2526,0,0,4260,'2025-11-26','00:00:00',3004,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4688,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 09:44:15','reception','2025-11-26 09:44:41',0),(12552,2526,0,0,4261,'2025-11-26','09:50:00',2928,201,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',184,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 09:52:18','riya','2025-11-27 10:53:25',0),(12553,2526,0,0,4261,'2025-11-26','09:50:00',2928,201,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',184,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 09:52:18','riya','2025-11-27 10:53:25',0),(12554,2526,0,0,4261,'2025-11-26','09:50:00',2928,201,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',184,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 21:22:18','riya','2025-11-27 10:53:25',0),(12555,2526,0,0,4261,'2025-11-26','09:50:00',2928,201,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',184,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 21:22:18','riya','2025-11-27 10:53:25',0),(12556,2526,0,0,4261,'2025-11-26','09:50:00',2928,201,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',184,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 21:22:18','riya','2025-11-27 10:53:25',0),(12557,2526,0,0,4261,'2025-11-26','09:50:00',2928,201,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',184,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 21:22:18','riya','2025-11-27 10:53:25',0),(12558,2526,0,0,4261,'2025-11-26','09:50:00',2928,201,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',184,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 21:22:18','riya','2025-11-27 10:53:25',0),(12559,2526,0,0,4262,'2025-11-26','00:00:00',3005,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 10:00:57','janvi','2025-11-25 21:30:57',0),(12560,2526,0,0,4262,'2025-11-26','00:00:00',3005,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4690,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 10:03:32','janvi','2025-11-26 10:05:15',0),(12561,2526,0,0,4263,'2025-11-26','10:03:45',2785,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4689,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 10:03:45','reception','2025-11-26 10:03:45',0),(12562,2526,0,0,4264,'2025-11-26','00:00:00',2526,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4691,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 10:05:39','reception','2025-11-26 10:06:17',0),(12563,2526,0,0,4265,'2025-11-26','10:00:00',2903,202,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',182,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 10:12:07','riya','2025-11-27 11:19:58',0),(12564,2526,0,0,4265,'2025-11-26','10:00:00',2903,202,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',182,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 10:12:07','riya','2025-11-27 11:19:58',0),(12565,2526,0,0,4265,'2025-11-26','10:00:00',2903,202,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',182,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 21:42:07','riya','2025-11-27 11:19:58',0),(12566,2526,0,0,4265,'2025-11-26','10:00:00',2903,202,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',182,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 21:42:07','riya','2025-11-27 11:19:58',0),(12567,2526,0,0,4265,'2025-11-26','10:00:00',2903,202,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',182,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 21:42:07','riya','2025-11-27 11:19:58',0),(12568,2526,0,0,4265,'2025-11-26','10:00:00',2903,202,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','411','','','',2526,'H','I',182,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 21:42:07','riya','2025-11-27 11:19:58',0),(12569,2526,0,0,4265,'2025-11-26','10:00:00',2903,202,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','411','','','',2526,'H','I',182,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 21:42:07','riya','2025-11-27 11:19:58',0),(12570,2526,0,0,4266,'2025-11-26','10:15:00',0,203,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 10:29:44','riya','2025-11-27 16:39:05',0),(12571,2526,0,0,4266,'2025-11-26','10:15:00',0,203,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 10:29:44','riya','2025-11-27 16:39:05',0),(12572,2526,0,0,4266,'2025-11-26','10:15:00',0,203,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 21:59:44','riya','2025-11-27 16:39:05',0),(12573,2526,0,0,4266,'2025-11-26','10:15:00',0,203,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 21:59:44','riya','2025-11-27 16:39:05',0),(12574,2526,0,0,4266,'2025-11-26','10:15:00',0,203,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 21:59:44','riya','2025-11-27 16:39:05',0),(12575,2526,0,0,4266,'2025-11-26','10:15:00',0,203,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 21:59:44','riya','2025-11-27 16:39:05',0),(12576,2526,0,0,4266,'2025-11-26','10:15:00',0,203,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 21:59:44','riya','2025-11-27 16:39:05',0),(12577,2526,0,0,4267,'2025-11-26','00:00:00',1171,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4692,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 10:38:12','reception','2025-11-26 10:38:46',0),(12578,2526,0,0,4268,'2025-11-26','00:00:00',2677,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4693,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 10:39:36','drashti','2025-11-26 10:41:13',0),(12579,2526,0,0,4269,'2025-11-26','00:00:00',2070,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4694,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 10:47:27','reception','2025-11-26 10:48:22',0),(12580,2526,0,0,4270,'2025-11-26','00:00:00',3006,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4695,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 10:53:57','drashti','2025-11-26 10:54:23',0),(12581,2526,0,0,4271,'2025-11-26','10:55:15',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4696,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 10:55:15','janvi','2025-11-26 11:16:15',0),(12582,2526,0,0,4272,'2025-11-26','00:00:00',3007,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4697,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 10:55:22','reception','2025-11-26 10:55:38',0),(12583,2526,0,0,4273,'2025-11-26','00:00:00',3008,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4698,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 10:58:08','drashti','2025-11-26 10:59:27',0),(12584,2526,0,0,4274,'2025-11-26','00:00:00',3009,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4699,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 11:01:41','reception','2025-11-26 11:02:12',0),(12585,2526,0,0,4275,'2025-11-26','00:00:00',3010,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4700,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 11:09:49','reception','2025-11-26 11:10:07',0),(12586,2526,0,0,4276,'2025-11-26','00:00:00',3011,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4701,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 11:13:41','reception','2025-11-26 11:14:32',0),(12587,2526,0,0,4277,'2025-11-26','00:00:00',3012,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4703,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 11:18:13','drashti','2025-11-26 11:19:23',0),(12588,2526,0,0,4278,'2025-11-26','00:00:00',3013,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4704,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 11:18:39','reception','2025-11-26 11:19:57',0),(12589,2526,0,0,4271,'2025-11-26','11:20:55',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4705,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 11:20:55','janvi','2025-11-26 11:20:55',0),(12590,2526,0,0,4161,'2025-11-26','09:45:00',2711,198,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',0,'','',0,12,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 22:51:36','vishal','2025-11-26 11:28:09',0),(12591,2526,0,0,4161,'2025-11-26','09:45:00',2711,198,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',0,'','',0,13,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 22:51:36','vishal','2025-11-26 11:28:09',0),(12592,2526,0,0,4161,'2025-11-26','09:45:00',2711,198,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',0,'','',0,14,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 22:51:36','vishal','2025-11-26 11:28:09',0),(12593,2526,0,0,4161,'2025-11-26','09:45:00',2711,198,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','210','','','',2526,'H','I',183,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 22:51:36','vishal','2025-11-26 11:25:43',0),(12594,2526,0,0,4161,'2025-11-26','09:45:00',2711,198,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','210','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 22:51:37','riya','2025-11-27 19:22:54',0),(12595,2526,0,0,4161,'2025-11-25','11:21:00',2711,198,'WPRC','WPRC0086','H','N',4.00,200,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 11:23:15','vishal','2025-11-26 11:25:43',0),(12596,2526,0,0,4161,'2025-11-25','11:21:00',2711,198,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 11:23:15','vishal','2025-11-26 11:25:43',0),(12597,2526,0,0,4161,'2025-11-25','11:21:00',2711,198,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,3,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 11:23:15','vishal','2025-11-26 11:25:43',0),(12598,2526,0,0,4161,'2025-11-25','11:22:00',2711,198,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 11:23:15','vishal','2025-11-26 11:25:43',0),(12599,2526,0,0,4161,'2025-11-25','11:22:00',2711,198,'DRC','DRC0020','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 11:23:15','vishal','2025-11-26 11:25:43',0),(12600,2526,0,0,4279,'2025-11-26','00:00:00',3014,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4706,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 11:24:01','drashti','2025-11-26 11:24:40',0),(12601,2526,0,0,4280,'2025-11-26','00:00:00',3015,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4707,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 11:26:29','reception','2025-11-26 11:27:18',0),(12602,2526,0,0,4161,'2025-11-26','11:25:00',2711,198,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 11:28:09','riya','2025-11-27 20:30:21',0),(12603,2526,0,0,4161,'2025-11-26','11:27:00',2711,198,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 11:28:09','riya','2025-11-27 19:29:39',0),(12604,2526,0,0,4161,'2025-11-26','11:27:00',2711,198,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 11:28:09','riya','2025-11-27 20:30:21',0),(12605,2526,0,0,4159,'2025-11-25','22:30:00',1388,197,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',187,16,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 23:01:52','vishal','2025-11-28 12:40:16',0),(12606,2526,0,0,4159,'2025-11-25','22:30:00',1388,197,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',187,18,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 23:01:52','vishal','2025-11-28 12:40:16',0),(12607,2526,0,0,4159,'2025-11-25','22:30:00',1388,197,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',187,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 23:01:52','vishal','2025-11-26 11:35:03',0),(12608,2526,0,0,4273,'2025-11-26','11:33:46',3008,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4708,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 11:33:46','drashti','2025-11-26 11:33:46',0),(12609,2526,0,0,4273,'2025-11-26','11:33:46',3008,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',4708,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 11:33:46','drashti','2025-11-26 11:33:46',0),(12610,2526,0,0,4159,'2025-11-25','11:33:00',1388,197,'WPRC','WPRC0097','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,5,0,0,'',0,0,'','','','','',2526,'H','I',187,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 11:34:53','vishal','2025-11-26 11:35:03',0),(12611,2526,0,0,4159,'2025-11-25','11:34:00',1388,197,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,5,0,0,'',0,0,'','','','','',2526,'H','I',187,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 11:34:53','vishal','2025-11-26 11:35:03',0),(12612,2526,0,0,4159,'2025-11-26','11:34:00',1388,197,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',187,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 11:34:53','','0000-00-00 00:00:00',0),(12613,2526,0,0,4159,'2025-11-26','11:34:00',1388,197,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',187,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 11:34:53','','0000-00-00 00:00:00',0),(12614,2526,0,0,4281,'2025-11-26','00:00:00',1240,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4709,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 11:37:36','reception','2025-11-26 11:37:57',0),(12615,2526,0,0,4283,'2025-11-26','00:00:00',3016,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4710,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 11:39:41','reception','2025-11-26 11:40:02',0),(12616,2526,0,0,4282,'2025-11-26','11:40:30',2818,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4711,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 11:40:30','janvi','2025-11-26 11:40:30',0),(12617,2526,0,0,4284,'2025-11-26','00:00:00',3017,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4712,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 11:42:21','reception','2025-11-26 11:43:57',0),(12618,2526,0,0,4285,'2025-11-26','00:00:00',3018,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4713,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 11:45:07','janvi','2025-11-26 11:45:43',0),(12619,2526,0,0,4287,'2025-11-26','00:00:00',3019,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4715,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 11:46:41','drashti','2025-11-26 11:47:30',0),(12620,2526,0,0,4286,'2025-11-26','11:47:23',2681,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4714,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 11:47:23','reception','2025-11-26 11:47:23',0),(12621,2526,0,0,4288,'2025-11-26','00:00:00',3020,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4716,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 11:48:09','drashti','2025-11-26 11:48:48',0),(12622,2526,0,0,4289,'2025-11-26','00:00:00',3021,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4717,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 11:50:24','janvi','2025-11-26 11:51:47',0),(12623,2526,0,0,4290,'2025-11-26','00:00:00',3022,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4718,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 11:52:54','reception','2025-11-26 11:53:26',0),(12624,2526,0,0,4291,'2025-11-26','00:00:00',3023,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4719,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 11:55:12','reception','2025-11-26 11:55:54',0),(12625,2526,0,0,4292,'2025-11-26','00:00:00',240,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4720,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 11:56:46','janvi','2025-11-26 11:56:59',0),(12626,2526,0,0,4019,'2025-11-25','20:30:00',0,189,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',171,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 23:27:23','vishal','2025-11-26 11:59:11',0),(12627,2526,0,0,4019,'2025-11-25','20:30:00',0,189,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',171,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 23:27:23','vishal','2025-11-26 11:59:11',0),(12628,2526,0,0,4019,'2025-11-25','20:30:00',0,189,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',171,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 23:27:23','vishal','2025-11-26 11:59:11',0),(12629,2526,0,0,4019,'2025-11-25','20:30:00',0,189,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',171,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 23:27:23','vishal','2025-11-26 11:59:11',0),(12630,2526,0,0,4019,'2025-11-25','20:30:00',0,189,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',171,20,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-25 23:27:23','vishal','2025-11-26 12:04:09',0),(12631,2526,0,0,4019,'2025-11-26','11:58:00',0,189,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',171,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 11:59:11','','0000-00-00 00:00:00',0),(12632,2526,0,0,4293,'2025-11-26','00:00:00',3024,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4721,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 12:00:04','drashti','2025-11-26 12:01:03',0),(12633,2526,0,0,4294,'2025-11-26','00:00:00',822,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4722,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 12:02:54','reception','2025-11-26 12:03:21',0),(12634,2526,0,0,4019,'2025-11-23','12:01:00',0,189,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',171,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 12:03:17','','0000-00-00 00:00:00',0),(12635,2526,0,0,4295,'2025-11-26','00:00:00',3025,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 12:04:43','drashti','2025-11-25 23:34:43',0),(12636,2526,0,0,4276,'2025-11-26','12:08:09',3011,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4723,1,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 12:08:09','reception','2025-11-26 12:08:09',0),(12637,2526,0,0,4276,'2025-11-26','12:08:09',3011,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4723,2,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 12:08:09','reception','2025-11-26 12:08:09',0),(12638,2526,0,0,4276,'2025-11-26','12:08:09',3011,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4723,3,471,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 12:08:09','reception','2025-11-26 12:08:09',0),(12639,2526,0,0,4158,'2025-11-25','12:06:00',0,196,'WPRC','WPRC0090','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',172,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 12:08:12','','0000-00-00 00:00:00',0),(12640,2526,0,0,4158,'2025-11-25','12:06:00',0,196,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',172,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 12:08:12','','0000-00-00 00:00:00',0),(12641,2526,0,0,4158,'2025-11-26','12:06:00',0,196,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',172,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 12:08:12','','0000-00-00 00:00:00',0),(12642,2526,0,0,4158,'2025-11-26','12:07:00',0,196,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',172,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 12:08:12','','0000-00-00 00:00:00',0),(12643,2526,0,0,4158,'2025-11-26','12:08:00',0,196,'ROOM','ROOM0009','H','N',0.50,3200,1600,'P',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','','','','',2526,'H','I',172,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 12:09:11','','0000-00-00 00:00:00',0),(12644,2526,0,0,4158,'2025-11-26','12:08:00',0,196,'AECO','AECO0008','H','N',0.50,400,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',172,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 12:09:11','','0000-00-00 00:00:00',0),(12645,2526,0,0,4158,'2025-11-26','12:08:00',0,196,'CARE','CARE0001','H','N',0.50,200,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',172,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 12:09:11','','0000-00-00 00:00:00',0),(12646,2526,0,0,4296,'2025-11-26','00:00:00',508,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4724,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 12:13:31','drashti','2025-11-26 12:14:14',0),(12647,2526,0,0,4297,'2025-11-26','00:00:00',3026,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4725,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 12:14:47','janvi','2025-11-26 12:16:23',0),(12648,2526,0,0,4270,'2025-11-26','12:20:04',3006,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',4726,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 12:20:04','janvi','2025-11-26 12:20:04',0),(12649,2526,0,0,4285,'2025-11-26','12:20:50',3018,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',4727,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 12:20:50','drashti','2025-11-26 12:20:50',0),(12650,2526,0,0,4298,'2025-11-26','00:00:00',3027,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4728,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 12:22:43','janvi','2025-11-26 12:23:06',0),(12651,2526,0,0,4299,'2025-11-26','00:00:00',3028,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4729,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 12:25:12','drashti','2025-11-26 12:26:26',0),(12652,2526,0,0,4054,'2025-11-26','12:27:00',0,192,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',173,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 12:27:43','','0000-00-00 00:00:00',0),(12653,2526,0,0,4290,'2025-11-26','12:28:48',3022,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4730,1,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 12:28:48','reception','2025-11-26 12:28:48',0),(12654,2526,0,0,4290,'2025-11-26','12:28:48',3022,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4730,2,471,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 12:28:48','reception','2025-11-26 12:28:48',0),(12655,2526,0,0,4290,'2025-11-26','12:28:48',3022,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4730,3,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 12:28:48','reception','2025-11-26 12:28:48',0),(12656,2526,0,0,4300,'2025-11-26','00:00:00',949,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4731,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 12:30:28','drashti','2025-11-26 12:31:29',0),(12657,2526,0,0,4301,'2025-11-26','00:00:00',1137,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4732,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 12:35:51','reception','2025-11-26 12:36:09',0),(12658,2526,0,0,4287,'2025-11-26','12:46:30',3019,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4733,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 12:46:30','drashti','2025-11-26 12:46:30',0),(12659,2526,0,0,4288,'2025-11-26','12:47:13',3020,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4734,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 12:47:13','drashti','2025-11-26 12:47:13',0),(12660,2526,0,0,4302,'2025-11-26','00:00:00',3029,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4735,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 12:48:17','reception','2025-11-26 12:48:49',0),(12661,2526,0,0,4292,'2025-11-26','12:53:20',240,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',4736,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 12:53:20','drashti','2025-11-26 12:53:20',0),(12662,2526,0,0,4054,'2025-11-24','13:04:00',0,192,'SURG','SURG0016','H','N',1.00,35000,35000,'P',0,0,0.00,0.00,35000.00,35000,3,0,0,'',0,0,'','','','','',2526,'H','I',173,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(12663,2526,0,0,4054,'2025-11-26','13:04:00',0,192,'SURG','SURG0015','H','N',1.00,12100,12100,'P',0,0,0.00,0.00,12100.00,12100,3,0,0,'',0,0,'','','','','',2526,'H','I',173,19,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 13:05:24','','0000-00-00 00:00:00',0),(12664,2526,0,0,4302,'2025-11-26','13:12:08',3029,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4737,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 13:12:08','reception','2025-11-26 13:12:08',0),(12665,2526,0,0,4302,'2025-11-26','13:12:08',3029,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4737,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 13:12:08','reception','2025-11-26 13:12:08',0),(12666,2526,0,0,4302,'2025-11-26','13:12:08',3029,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4737,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 13:12:08','reception','2025-11-26 13:12:08',0),(12667,2526,0,0,4303,'2025-11-26','00:00:00',1533,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4738,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 13:17:01','drashti','2025-11-26 13:17:18',0),(12668,2526,0,0,3764,'2025-11-26','10:00:00',0,178,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,66,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 00:48:26','riya','2025-11-27 11:54:17',0),(12669,2526,0,0,3764,'2025-11-26','10:00:00',0,178,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,67,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 00:48:26','riya','2025-11-27 11:54:17',0),(12670,2526,0,0,3764,'2025-11-26','10:00:00',0,178,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,68,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 00:48:26','riya','2025-11-27 11:54:17',0),(12671,2526,0,0,3764,'2025-11-26','10:00:00',0,178,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',220,74,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 00:48:26','riya','2025-11-27 11:57:45',0),(12672,2526,0,0,3764,'2025-11-26','10:00:00',0,178,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',220,75,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 00:48:26','riya','2025-11-27 11:57:45',0),(12673,2526,0,0,3517,'2025-11-26','13:21:00',0,165,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 13:24:25','','0000-00-00 00:00:00',0),(12674,2526,0,0,3517,'2025-11-22','13:22:00',0,165,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 13:24:25','riya','2025-11-26 13:43:40',0),(12675,2526,0,0,3517,'2025-11-20','13:23:00',0,165,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 13:24:25','','0000-00-00 00:00:00',0),(12676,2526,0,0,3517,'2025-11-26','13:29:00',0,165,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 13:29:51','','0000-00-00 00:00:00',0),(12677,2526,0,0,3517,'2025-11-26','13:32:00',0,165,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 13:33:18','','0000-00-00 00:00:00',0),(12678,2526,0,0,3517,'2025-11-19','13:38:00',0,165,'WPRC','WPRC0098','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 13:39:49','riya','2025-11-26 13:43:40',0),(12679,2526,0,0,3517,'2025-11-20','13:38:00',0,165,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 13:39:49','','0000-00-00 00:00:00',0),(12680,2526,0,0,3517,'2025-11-21','13:38:00',0,165,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 13:39:49','','0000-00-00 00:00:00',0),(12681,2526,0,0,3517,'2025-11-22','13:38:00',0,165,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 13:39:49','','0000-00-00 00:00:00',0),(12682,2526,0,0,3517,'2025-11-23','13:39:00',0,165,'WPRC','WPRC0098','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',174,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 13:39:49','riya','2025-11-26 13:43:40',0),(12683,2526,0,0,4304,'2025-11-26','00:00:00',3030,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4739,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 13:50:56','janvi','2025-11-26 13:51:35',0),(12684,2526,0,0,4305,'2025-11-26','14:30:00',0,204,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',175,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 14:41:00','riya','2025-11-26 18:16:48',0),(12685,2526,0,0,4305,'2025-11-26','14:30:00',0,204,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',175,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 14:41:00','riya','2025-11-26 18:16:48',0),(12686,2526,0,0,4305,'2025-11-26','14:30:00',0,204,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 02:11:00','riya','2025-11-26 18:54:00',0),(12687,2526,0,0,4305,'2025-11-26','14:30:00',0,204,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 02:11:00','riya','2025-11-26 18:54:00',0),(12688,2526,0,0,4305,'2025-11-26','14:30:00',0,204,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 02:11:00','riya','2025-11-26 18:54:00',0),(12689,2526,0,0,4305,'2025-11-26','14:30:00',0,204,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,6,0,0,'',0,0,'','409','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 02:11:00','riya','2025-11-26 18:40:53',0),(12690,2526,0,0,4305,'2025-11-26','14:30:00',0,204,'DRC','DRC0019','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,226,0,0,'',0,0,'','409','','','',2526,'H','I',175,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 02:11:00','riya','2025-11-26 19:24:51',0),(12691,2526,0,0,4303,'2025-11-26','14:50:37',1533,0,'OPWD','OPWD0032','H','N',1.00,750,750,'P',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4740,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-26 14:50:37','priyanshi','2025-11-26 14:50:37',0),(12692,2526,0,0,4306,'2025-11-26','00:00:00',3031,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-26 15:25:32','priyanshi','2025-11-26 02:55:32',0),(12693,2526,0,0,4306,'2025-11-26','15:28:06',3031,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',4741,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-26 15:28:06','priyanshi','2025-11-26 15:28:06',0),(12694,2526,0,0,4306,'2025-11-26','15:28:06',3031,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4741,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-26 15:28:06','priyanshi','2025-11-26 15:28:06',0),(12695,2526,0,0,4306,'2025-11-26','15:28:06',3031,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4741,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-26 15:28:06','priyanshi','2025-11-26 15:28:06',0),(12696,2526,0,0,2879,'2025-11-26','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:34','vishal','2025-11-30 20:00:04',0),(12697,2526,0,0,2879,'2025-11-26','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:34','riya','2025-12-01 19:45:21',0),(12698,2526,0,0,2879,'2025-11-26','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:34','riya','2025-12-01 19:41:30',0),(12699,2526,0,0,2879,'2025-11-26','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:34','riya','2025-12-01 19:41:30',0),(12700,2526,0,0,2879,'2025-11-26','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:34','riya','2025-12-01 19:41:30',0),(12701,2526,0,0,3861,'2025-11-25','22:40:00',0,179,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:35','vishal','2025-11-30 12:04:11',0),(12702,2526,0,0,3861,'2025-11-25','22:40:00',0,179,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:35','riya','2025-11-26 18:08:00',0),(12703,2526,0,0,3861,'2025-11-25','22:40:00',0,179,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:35','riya','2025-11-27 11:14:51',0),(12704,2526,0,0,3861,'2025-11-25','22:40:00',0,179,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:35','riya','2025-11-26 18:08:00',0),(12705,2526,0,0,3861,'2025-11-25','22:40:00',0,179,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:35','riya','2025-11-26 18:08:00',0),(12706,2526,0,0,3909,'2025-11-26','15:00:00',0,181,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:35','vishal','2025-11-28 16:24:46',0),(12707,2526,0,0,3909,'2025-11-26','15:00:00',0,181,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:35','vishal','2025-11-30 18:59:22',0),(12708,2526,0,0,3909,'2025-11-26','15:00:00',0,181,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:35','riya','2025-11-27 12:06:12',0),(12709,2526,0,0,3909,'2025-11-26','15:00:00',0,181,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:35','riya','2025-11-27 12:06:12',0),(12710,2526,0,0,3909,'2025-11-26','15:00:00',0,181,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:35','vishal','2025-11-30 18:59:22',0),(12711,2526,0,0,3959,'2025-11-26','09:30:00',0,183,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','vishal','2025-11-26 16:25:38',0),(12712,2526,0,0,3959,'2025-11-26','09:30:00',0,183,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-26 16:33:09',0),(12713,2526,0,0,3959,'2025-11-26','09:30:00',0,183,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-26 16:33:09',0),(12714,2526,0,0,3959,'2025-11-26','09:30:00',0,183,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','vishal','2025-11-26 16:25:38',0),(12715,2526,0,0,3959,'2025-11-26','09:30:00',0,183,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',181,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','vishal','2025-11-26 16:25:38',0),(12716,2526,0,0,4017,'2025-11-26','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,33,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-26 16:40:58',0),(12717,2526,0,0,4017,'2025-11-26','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,33,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','vishal','2025-11-26 16:22:51',0),(12718,2526,0,0,4017,'2025-11-26','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,34,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','vishal','2025-11-26 16:22:51',0),(12719,2526,0,0,4017,'2025-11-26','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,35,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','vishal','2025-11-26 16:22:51',0),(12720,2526,0,0,4017,'2025-11-26','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,37,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-26 16:40:58',0),(12721,2526,0,0,4047,'2025-11-26','10:30:00',0,191,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-27 11:18:15',0),(12722,2526,0,0,4047,'2025-11-26','10:30:00',0,191,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-27 11:18:15',0),(12723,2526,0,0,4047,'2025-11-26','10:30:00',0,191,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-27 11:18:15',0),(12724,2526,0,0,4047,'2025-11-26','10:30:00',0,191,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-27 11:18:15',0),(12725,2526,0,0,4047,'2025-11-26','10:30:00',0,191,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-27 11:18:15',0),(12726,2526,0,0,4125,'2025-11-25','18:15:00',0,194,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','410','','','',2526,'H','I',179,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-27 12:23:36',0),(12727,2526,0,0,4125,'2025-11-25','18:15:00',0,194,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',179,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-27 12:23:36',0),(12728,2526,0,0,4125,'2025-11-25','18:15:00',0,194,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','410','','','',2526,'H','I',179,19,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-27 13:22:41',0),(12729,2526,0,0,4125,'2025-11-25','18:15:00',0,194,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','410','','','',2526,'H','I',179,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-27 12:24:13',0),(12730,2526,0,0,4125,'2025-11-25','18:15:00',0,194,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',179,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-27 12:23:36',0),(12731,2526,0,0,4166,'2025-11-26','09:50:00',2323,199,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','309','','','',2526,'H','I',176,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-26 18:44:00',0),(12732,2526,0,0,4166,'2025-11-26','09:50:00',2323,199,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','309','','','',2526,'H','I',176,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-26 18:44:00',0),(12733,2526,0,0,4166,'2025-11-26','09:50:00',2323,199,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','309','','','',2526,'H','I',176,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-26 18:44:00',0),(12734,2526,0,0,4166,'2025-11-26','09:50:00',2323,199,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','309','','','',2526,'H','I',176,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-26 18:44:00',0),(12735,2526,0,0,4166,'2025-11-26','09:50:00',2323,199,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','309','','','',2526,'H','I',176,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-26 18:44:00',0),(12736,2526,0,0,4245,'2025-11-25','19:30:00',0,200,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',186,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-26 19:09:15',0),(12737,2526,0,0,4245,'2025-11-25','19:30:00',0,200,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',186,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-26 19:09:15',0),(12738,2526,0,0,4245,'2025-11-25','19:30:00',0,200,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',186,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-26 19:09:15',0),(12739,2526,0,0,4245,'2025-11-25','19:30:00',0,200,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','406','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-27 11:03:01',0),(12740,2526,0,0,4245,'2025-11-25','19:30:00',0,200,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','406','','','',2526,'H','I',186,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 03:49:36','riya','2025-11-26 19:09:15',0),(12741,2526,0,0,4017,'2025-11-26','16:21:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,37,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 16:22:51','','0000-00-00 00:00:00',0),(12742,2526,0,0,4017,'2025-11-26','16:21:00',0,187,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,38,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 16:22:51','','0000-00-00 00:00:00',0),(12743,2526,0,0,4017,'2025-11-26','16:21:00',0,187,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,39,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 16:22:51','','0000-00-00 00:00:00',0),(12744,2526,0,0,4017,'2025-11-26','16:21:00',0,187,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,40,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 16:22:51','vishal','2025-11-28 15:44:13',0),(12745,2526,0,0,4017,'2025-11-26','16:21:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,41,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 16:22:51','','0000-00-00 00:00:00',0),(12746,2526,0,0,4017,'2025-11-26','16:22:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,42,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 16:22:51','','0000-00-00 00:00:00',0),(12747,2526,0,0,4017,'2025-11-26','16:22:00',0,187,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,43,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 16:22:51','','0000-00-00 00:00:00',0),(12748,2526,0,0,4017,'2025-11-25','16:22:00',0,187,'ROOM','ROOM0004','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,32,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 16:22:51','vishal','2025-11-26 16:23:42',0),(12749,2526,0,0,4017,'2025-11-26','16:22:00',0,187,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,45,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 16:22:51','','0000-00-00 00:00:00',0),(12750,2526,0,0,3959,'2025-11-25','16:24:00',0,183,'WPRC','WPRC0116','H','N',1.00,8000,8000,'P',0,0,0.00,0.00,8000.00,8000,4,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 16:25:38','vishal','2025-11-26 16:29:18',0),(12751,2526,0,0,3959,'2025-11-26','16:24:00',0,183,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 16:25:38','','0000-00-00 00:00:00',0),(12752,2526,0,0,3959,'2025-11-26','16:24:00',0,183,'WPRC','WPRC0090','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 16:25:38','','0000-00-00 00:00:00',0),(12753,2526,0,0,3959,'2025-11-26','16:26:00',0,183,'WPRC','WPRC0116','H','N',1.00,8000,8000,'P',0,0,0.00,0.00,8000.00,8000,4,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 16:29:18','','0000-00-00 00:00:00',0),(12754,2526,0,0,3959,'2025-11-26','16:27:00',0,183,'USG','USG0095','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 16:29:18','','0000-00-00 00:00:00',0),(12755,2526,0,0,3959,'2025-11-25','16:28:00',0,183,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 16:29:18','','0000-00-00 00:00:00',0),(12756,2526,0,0,3959,'2025-11-26','16:28:00',0,183,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 16:29:18','','0000-00-00 00:00:00',0),(12757,2526,0,0,3959,'2025-11-26','16:28:00',0,183,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 16:29:18','','0000-00-00 00:00:00',0),(12758,2526,0,0,3959,'2025-11-26','16:28:00',0,183,'WPRC','WPRC0087','H','N',4.00,500,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-26 16:29:18','riya','2025-11-27 14:29:06',0),(12759,2526,0,0,3959,'2025-11-26','16:29:00',0,183,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 16:33:09','','0000-00-00 00:00:00',0),(12760,2526,0,0,3959,'2025-11-25','16:30:00',0,183,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 16:33:09','','0000-00-00 00:00:00',0),(12761,2526,0,0,3959,'2025-11-25','16:31:00',0,183,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,225,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 16:33:09','','0000-00-00 00:00:00',0),(12762,2526,0,0,3959,'2025-11-26','16:32:00',0,183,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 16:33:09','','0000-00-00 00:00:00',0),(12763,2526,0,0,4307,'2025-11-26','00:00:00',1298,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4742,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 16:34:10','reception','2025-11-26 16:34:30',0),(12764,2526,0,0,4017,'2025-11-26','16:33:00',0,187,'WPRC','WPRC0090','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',0,'','',0,46,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 16:34:21','','0000-00-00 00:00:00',0),(12765,2526,0,0,4308,'2025-11-26','00:00:00',1467,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 16:35:14','drashti','2025-11-26 04:05:14',0),(12766,2526,0,0,4309,'2025-11-26','00:00:00',345,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4743,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 16:38:09','reception','2025-11-26 16:39:10',0),(12767,2526,0,0,4017,'2025-11-26','16:38:00',0,187,'USG','USG0092','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,47,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 16:39:58','','0000-00-00 00:00:00',0),(12768,2526,0,0,4017,'2025-11-26','16:39:00',0,187,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',0,'','',0,48,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 16:39:58','','0000-00-00 00:00:00',0),(12769,2526,0,0,4310,'2025-11-26','00:00:00',3032,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 16:41:55','reception','2025-11-26 04:11:55',0),(12770,2526,0,0,4311,'2025-11-26','00:00:00',1973,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4744,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 16:46:48','reception','2025-11-26 16:47:34',0),(12771,2526,0,0,4312,'2025-11-26','00:00:00',326,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 16:53:32','reception','2025-11-26 04:23:32',0),(12772,2526,0,0,4313,'2025-11-26','00:00:00',3033,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4745,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 17:08:28','reception','2025-11-26 17:09:02',0),(12773,2526,0,0,4313,'2025-11-26','17:30:37',3033,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4746,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 17:30:37','reception','2025-11-26 17:30:37',0),(12774,2526,0,0,4313,'2025-11-26','17:30:37',3033,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',4746,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 17:30:37','reception','2025-11-26 17:30:37',0),(12775,2526,0,0,4314,'2025-11-26','00:00:00',3034,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4747,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 17:31:59','janvi','2025-11-26 17:32:42',0),(12776,2526,0,0,4315,'2025-11-26','17:36:44',2735,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',4748,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 17:36:44','reception','2025-11-26 17:36:44',0),(12777,2526,0,0,4316,'2025-11-26','00:00:00',3035,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4749,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 17:42:38','janvi','2025-11-26 17:43:43',0),(12778,2526,0,0,4317,'2025-11-26','00:00:00',3036,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4750,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 17:45:59','janvi','2025-11-26 17:46:48',0),(12779,2526,0,0,4318,'2025-11-26','00:00:00',3037,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4751,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 17:52:04','janvi','2025-11-26 17:53:01',0),(12780,2526,0,0,4319,'2025-11-26','00:00:00',3038,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4752,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 17:54:31','reception','2025-11-26 17:55:17',0),(12781,2526,0,0,4320,'2025-11-26','00:00:00',3039,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4753,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 17:57:21','reception','2025-11-26 17:58:02',0),(12782,2526,0,0,4321,'2025-11-26','00:00:00',2393,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4754,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 18:09:16','janvi','2025-11-26 18:09:51',0),(12783,2526,0,0,4322,'2025-11-26','00:00:00',3040,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4755,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 18:11:27','reception','2025-11-26 18:11:53',0),(12784,2526,0,0,4323,'2025-11-26','00:00:00',3041,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4756,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 18:14:42','janvi','2025-11-26 18:15:29',0),(12785,2526,0,0,4305,'2025-11-26','18:16:00',0,204,'ADMN','ADMN0007','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,4000.00,4000,9999,0,0,'',0,0,'','','','','',2526,'H','I',175,4,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 18:16:48','riya','2025-11-26 19:24:51',0),(12786,2526,0,0,4319,'2025-11-26','18:17:11',3038,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',4757,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-11-26 18:17:11','janvi','2025-11-26 18:17:11',0),(12787,2526,0,0,4319,'2025-11-26','18:17:11',3038,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,85,'',0,0,'','','','','',2526,'H','O',4757,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-11-26 18:17:11','janvi','2025-11-26 18:17:11',0),(12788,2526,0,0,4324,'2025-11-26','00:00:00',3042,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4758,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 18:18:41','reception','2025-11-26 18:20:48',0),(12789,2526,0,0,4325,'2025-11-26','00:00:00',3043,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4759,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 18:24:21','drashti','2025-11-26 18:25:15',0),(12790,2526,0,0,4326,'2025-11-26','00:00:00',2540,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4760,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 18:26:55','reception','2025-11-26 18:50:00',0),(12791,2526,0,0,4327,'2025-11-26','00:00:00',3044,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4761,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 18:31:13','janvi','2025-11-26 18:32:43',0),(12792,2526,0,0,4328,'2025-11-26','00:00:00',2333,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4762,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 18:34:09','reception','2025-11-26 18:34:31',0),(12793,2526,0,0,4166,'2025-11-25','18:42:00',2323,199,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',176,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 18:44:00','','0000-00-00 00:00:00',0),(12794,2526,0,0,4166,'2025-11-25','18:42:00',2323,199,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',176,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 18:44:00','','0000-00-00 00:00:00',0),(12795,2526,0,0,4166,'2025-11-26','18:42:00',2323,199,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',176,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 18:44:00','','0000-00-00 00:00:00',0),(12796,2526,0,0,4166,'2025-11-25','18:43:00',2323,199,'SURG','SURG0014','H','N',1.00,15000,15000,'P',0,0,0.00,0.00,15000.00,15000,124,0,0,'',0,0,'','','','','',2526,'H','I',176,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 18:44:00','riya','2025-11-26 19:06:28',0),(12797,2526,0,0,4166,'2025-11-25','18:43:00',2323,199,'SURG','SURG0015','H','N',1.00,3750,3750,'P',0,0,0.00,0.00,3750.00,3750,3,0,0,'',0,0,'','','','','',2526,'H','I',176,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 18:44:00','riya','2025-11-26 19:06:28',0),(12798,2526,0,0,4166,'2025-11-25','18:44:00',2323,199,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,124,0,0,'',0,0,'','','','','',2526,'H','I',176,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 18:45:21','','0000-00-00 00:00:00',0),(12799,2526,0,0,4166,'2025-11-25','18:44:00',2323,199,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',176,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 18:45:21','','0000-00-00 00:00:00',0),(12800,2526,0,0,4329,'2025-11-26','00:00:00',3045,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4763,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 18:47:48','drashti','2025-11-26 18:49:17',0),(12801,2526,0,0,4330,'2025-11-26','00:00:00',332,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4765,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 18:52:13','reception','2025-11-26 18:52:31',0),(12802,2526,0,0,4331,'2025-11-26','00:00:00',3046,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4766,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 18:53:52','drashti','2025-11-26 18:55:28',0),(12803,2526,0,0,4305,'2025-11-26','18:51:00',0,204,'CARE','CARE0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',175,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 18:54:00','','0000-00-00 00:00:00',0),(12804,2526,0,0,4305,'2025-11-26','18:51:00',0,204,'SURG','SURG0018','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,226,0,0,'',0,0,'','','','','',2526,'H','I',175,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 18:54:00','','0000-00-00 00:00:00',0),(12805,2526,0,0,4305,'2025-11-26','18:53:00',0,204,'XRY','XRY0045','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',175,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 18:54:00','','0000-00-00 00:00:00',0),(12806,2526,0,0,4332,'2025-11-26','00:00:00',1251,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4767,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 18:54:51','janvi','2025-11-26 18:56:01',0),(12807,2526,0,0,4333,'2025-11-26','00:00:00',3047,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4769,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 18:56:27','drashti','2025-11-26 18:57:00',0),(12808,2526,0,0,4326,'2025-11-26','18:56:39',2540,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4768,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 18:56:39','reception','2025-11-26 18:56:39',0),(12809,2526,0,0,4334,'2025-11-26','00:00:00',3048,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4770,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 18:59:51','drashti','2025-11-26 19:00:41',0),(12810,2526,0,0,4335,'2025-11-26','00:00:00',3049,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4772,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 19:01:06','reception','2025-11-26 19:19:06',0),(12811,2526,0,0,4336,'2025-11-26','19:02:05',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4771,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 19:02:04','janvi','2025-11-26 19:02:04',0),(12812,2526,0,0,4337,'2025-11-26','00:00:00',3050,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4773,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 19:04:18','janvi','2025-11-26 19:05:52',0),(12813,2526,0,0,4245,'2025-11-26','19:08:00',0,200,'SURG','SURG0014','H','N',1.00,45000,45000,'P',0,0,0.00,0.00,45000.00,45000,3,0,0,'',0,0,'','','','','',2526,'H','I',186,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 19:09:15','','0000-00-00 00:00:00',0),(12814,2526,0,0,4245,'2025-11-26','19:08:00',0,200,'SURG','SURG0015','H','N',1.00,11250,11250,'P',0,0,0.00,0.00,11250.00,11250,3,0,0,'',0,0,'','','','','',2526,'H','I',186,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 19:09:15','','0000-00-00 00:00:00',0),(12815,2526,0,0,4338,'2025-11-26','00:00:00',3051,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4776,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 19:11:11','drashti','2025-11-26 19:13:39',0),(12816,2526,0,0,4327,'2025-11-26','19:12:47',3044,0,'OPWD','OPWD0023','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,0.00,4000,3,0,0,'',0,0,'','','','','',2526,'H','O',4774,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 19:12:47','janvi','2025-11-26 19:12:47',0),(12817,2526,0,0,4339,'2025-11-26','00:00:00',3052,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4775,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 19:12:49','reception','2025-11-26 19:13:22',0),(12818,2526,0,0,4340,'2025-11-26','00:00:00',3053,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4777,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 19:17:10','janvi','2025-11-26 19:17:44',0),(12819,2526,0,0,4341,'2025-11-26','00:00:00',3054,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 19:20:11','drashti','2025-11-26 06:50:11',0),(12820,2526,0,0,4342,'2025-11-26','00:00:00',1661,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-26 19:20:43','manshi','2025-11-26 06:50:43',0),(12821,2526,0,0,4335,'2025-11-26','19:23:28',3049,0,'PKG','CASE','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4779,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 19:23:28','reception','2025-11-26 19:23:28',0),(12822,2526,0,0,4343,'2025-11-26','00:00:00',1343,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4780,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 19:23:39','janvi','2025-11-26 19:25:23',0),(12823,2526,0,0,4344,'2025-11-26','00:00:00',3055,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4781,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-26 19:28:42','manshi','2025-11-26 19:29:49',0),(12824,2526,0,0,4345,'2025-11-26','00:00:00',3056,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4782,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 19:29:32','drashti','2025-11-26 19:30:26',0),(12825,2526,0,0,4344,'2025-11-26','19:29:49',3055,0,'XRY','XRY0165','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',4781,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-26 19:29:49','manshi','2025-11-26 19:29:49',0),(12826,2526,0,0,4346,'2025-11-26','00:00:00',3057,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4783,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 19:47:07','drashti','2025-11-26 20:13:18',0),(12827,2526,0,0,4347,'2025-11-26','00:00:00',3058,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4784,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-26 19:53:17','janvi','2025-11-26 19:53:32',0),(12828,2526,0,0,4344,'2025-11-26','19:55:10',3055,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',4785,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-26 19:55:10','manshi','2025-11-26 19:55:10',0),(12829,2526,0,0,4348,'2025-11-26','00:00:00',3059,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4786,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-26 19:55:15','drashti','2025-11-26 19:56:07',0),(12830,2526,0,0,4334,'2025-11-26','19:59:22',3048,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',4787,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-26 19:59:22','reception','2025-11-26 19:59:22',0),(12831,2526,0,0,4349,'2025-11-26','20:30:00',0,205,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',177,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 20:49:12','riya','2025-11-27 09:22:48',0),(12832,2526,0,0,4349,'2025-11-26','20:30:00',0,205,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',177,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 20:49:12','riya','2025-11-27 09:22:48',0),(12833,2526,0,0,4349,'2025-11-26','20:30:00',0,205,'ROOM','ROOM0009','H','N',0.50,2900,1450,'A',0,0,0.00,0.00,1450.00,1450,9999,0,0,'',0,0,'','402','','','',2526,'H','I',177,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 08:19:12','riya','2025-11-27 09:28:14',0),(12834,2526,0,0,4349,'2025-11-26','20:30:00',0,205,'AECO','AECO0008','H','N',0.50,300,150,'A',0,0,0.00,0.00,150.00,150,9999,0,0,'',0,0,'','402','','','',2526,'H','I',177,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 08:19:12','riya','2025-11-27 09:28:14',0),(12835,2526,0,0,4349,'2025-11-26','20:30:00',0,205,'CARE','CARE0001','H','N',0.50,200,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','402','','','',2526,'H','I',177,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 08:19:12','riya','2025-11-27 09:28:14',0),(12836,2526,0,0,4349,'2025-11-26','20:30:00',0,205,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-26 08:19:12','riya','2025-11-27 09:22:48',0),(12837,2526,0,0,4349,'2025-11-26','20:30:00',0,205,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-26 08:19:12','riya','2025-11-27 09:22:48',0),(12838,2526,0,0,4350,'2025-11-26','20:40:00',0,206,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',180,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 21:01:26','riya','2025-11-27 13:36:30',0),(12839,2526,0,0,4350,'2025-11-26','20:40:00',0,206,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',180,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 21:01:26','riya','2025-11-27 13:36:30',0),(12840,2526,0,0,4350,'2025-11-26','20:40:00',0,206,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',180,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 08:31:26','riya','2025-11-27 13:36:30',0),(12841,2526,0,0,4350,'2025-11-26','20:40:00',0,206,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',180,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 08:31:26','riya','2025-11-27 13:36:30',0),(12842,2526,0,0,4350,'2025-11-26','20:40:00',0,206,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',180,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 08:31:26','riya','2025-11-27 13:36:30',0),(12843,2526,0,0,4350,'2025-11-26','20:40:00',0,206,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-26 08:31:26','riya','2025-11-27 13:36:30',0),(12844,2526,0,0,4350,'2025-11-26','20:40:00',0,206,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',180,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 08:31:26','riya','2025-11-27 13:36:30',0),(12845,2526,0,0,4351,'2025-11-26','21:20:00',0,207,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',211,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 21:30:29','riya','2025-11-28 21:54:32',0),(12846,2526,0,0,4351,'2025-11-26','21:20:00',0,207,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',211,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 21:30:29','riya','2025-11-28 21:54:32',0),(12847,2526,0,0,4351,'2025-11-26','21:20:00',0,207,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','D',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 09:00:30','riya','2025-11-28 21:54:32',0),(12848,2526,0,0,4351,'2025-11-26','21:20:00',0,207,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','D',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 09:00:30','riya','2025-11-28 21:54:32',0),(12849,2526,0,0,4351,'2025-11-26','21:20:00',0,207,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','D',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 09:00:30','riya','2025-11-28 21:54:32',0),(12850,2526,0,0,4351,'2025-11-28','21:20:00',0,207,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','D',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 09:00:30','riya','2025-11-28 21:55:07',0),(12851,2526,0,0,4351,'2025-11-28','21:20:00',0,207,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','D',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 09:00:30','riya','2025-11-28 21:55:07',0),(12852,2526,0,0,4352,'2025-11-27','00:00:00',3060,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 08:45:37','reception','2025-11-26 20:15:37',0),(12853,2526,0,0,4352,'2025-11-27','08:46:36',3060,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',4789,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 08:46:36','reception','2025-11-27 08:46:36',0),(12854,2526,0,0,4352,'2025-11-27','08:46:36',3060,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4789,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 08:46:36','reception','2025-11-27 08:46:36',0),(12855,2526,0,0,4353,'2025-11-27','00:00:00',3061,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 08:48:30','reception','2025-11-26 20:18:30',0),(12856,2526,0,0,4353,'2025-11-27','08:49:19',3061,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',4790,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 08:49:19','reception','2025-11-27 08:49:19',0),(12857,2526,0,0,4353,'2025-11-27','08:49:19',3061,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4790,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 08:49:19','reception','2025-11-27 08:49:19',0),(12858,2526,0,0,4354,'2025-11-27','00:00:00',3062,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 08:50:28','reception','2025-11-26 20:20:28',0),(12859,2526,0,0,4354,'2025-11-27','08:51:35',3062,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',4791,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 08:51:35','reception','2025-11-27 08:51:35',0),(12860,2526,0,0,4354,'2025-11-27','08:51:35',3062,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',4791,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 08:51:35','reception','2025-11-27 08:51:35',0),(12861,2526,0,0,4354,'2025-11-27','08:51:35',3062,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',4791,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 08:51:35','reception','2025-11-27 08:51:35',0),(12862,2526,0,0,4355,'2025-11-27','00:00:00',3063,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 08:52:49','reception','2025-11-26 20:22:49',0),(12863,2526,0,0,4355,'2025-11-27','08:53:35',3063,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',4792,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 08:53:35','reception','2025-11-27 08:53:35',0),(12864,2526,0,0,4355,'2025-11-27','08:53:35',3063,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',4792,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 08:53:35','reception','2025-11-27 08:53:35',0),(12865,2526,0,0,4356,'2025-11-27','00:00:00',3064,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4793,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 09:13:19','reception','2025-11-27 09:13:49',0),(12866,2526,0,0,4349,'2025-11-26','09:21:00',0,205,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',177,1,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 09:22:48','riya','2025-11-27 09:28:14',0),(12867,2526,0,0,4349,'2025-11-26','09:21:00',0,205,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',177,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 09:22:48','','0000-00-00 00:00:00',0),(12868,2526,0,0,4349,'2025-11-27','09:22:00',0,205,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,38,0,0,'',0,0,'','','','','',2526,'H','I',177,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 09:22:48','','0000-00-00 00:00:00',0),(12869,2526,0,0,4357,'2025-11-27','03:00:00',0,208,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',178,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 09:34:15','riya','2025-11-27 12:32:58',0),(12870,2526,0,0,4357,'2025-11-27','03:00:00',0,208,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',178,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 09:34:15','riya','2025-11-27 12:32:58',0),(12871,2526,0,0,4357,'2025-11-27','03:00:00',0,208,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',178,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 21:04:15','riya','2025-11-27 12:32:58',0),(12872,2526,0,0,4357,'2025-11-27','03:00:00',0,208,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','410','','','',2526,'H','I',178,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 21:04:15','riya','2025-11-27 12:32:58',0),(12873,2526,0,0,4357,'2025-11-27','03:00:00',0,208,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',178,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 21:04:15','riya','2025-11-27 12:32:58',0),(12874,2526,0,0,4357,'2025-11-27','03:00:00',0,208,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','410','','','',2526,'H','I',178,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 21:04:15','riya','2025-11-27 12:32:58',0),(12875,2526,0,0,4357,'2025-11-27','03:00:00',0,208,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-26 21:04:15','riya','2025-11-27 12:32:58',0),(12876,2526,0,0,4358,'2025-11-27','00:00:00',3065,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4794,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 09:43:47','drashti','2025-11-27 09:44:56',0),(12877,2526,0,0,4359,'2025-11-27','02:00:00',0,209,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 09:44:06','riya','2025-11-27 16:44:14',0),(12878,2526,0,0,4359,'2025-11-27','02:00:00',0,209,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 09:44:06','riya','2025-11-27 16:44:14',0),(12879,2526,0,0,4359,'2025-11-27','02:00:00',0,209,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',192,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 21:14:06','riya','2025-11-27 16:44:14',0),(12880,2526,0,0,4359,'2025-11-27','02:00:00',0,209,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',192,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 21:14:06','riya','2025-11-27 16:44:14',0),(12881,2526,0,0,4359,'2025-11-27','02:00:00',0,209,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',192,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 21:14:06','riya','2025-11-27 16:44:14',0),(12882,2526,0,0,4359,'2025-11-27','02:00:00',0,209,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',192,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 21:14:06','riya','2025-11-27 16:44:14',0),(12883,2526,0,0,4359,'2025-11-27','02:00:00',0,209,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',192,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 21:14:06','riya','2025-11-27 16:44:14',0),(12884,2526,0,0,4360,'2025-11-27','00:00:00',1854,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4795,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 09:48:24','reception','2025-11-27 09:48:43',0),(12885,2526,0,0,4361,'2025-11-27','00:00:00',3066,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4796,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 09:53:29','reception','2025-11-27 09:53:44',0),(12886,2526,0,0,4362,'2025-11-27','00:00:00',2563,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4797,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 09:55:02','drashti','2025-11-27 09:55:42',0),(12887,2526,0,0,4363,'2025-11-27','00:00:00',3067,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 09:58:34','reception','2025-11-26 21:28:34',0),(12888,2526,0,0,4364,'2025-11-27','10:04:26',3054,0,'PKG','CASE','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4798,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 10:04:26','reception','2025-11-27 10:04:26',0),(12889,2526,0,0,4365,'2025-11-27','00:00:00',1471,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4799,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 10:07:33','reception','2025-11-27 10:07:51',0),(12890,2526,0,0,4366,'2025-11-27','00:00:00',3068,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,3,0,0,'',0,0,'','','','','',2526,'H','O',4800,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 10:14:45','janvi','2025-11-27 10:16:50',0),(12891,2526,0,0,4367,'2025-11-27','00:00:00',3069,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4802,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 10:17:12','drashti','2025-11-27 10:20:17',0),(12892,2526,0,0,4368,'2025-11-27','00:00:00',3070,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4801,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 10:19:52','reception','2025-11-27 10:20:11',0),(12893,2526,0,0,4366,'2025-11-27','00:00:00',3068,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',4804,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 10:21:37','janvi','2025-11-27 10:21:48',0),(12894,2526,0,0,4369,'2025-11-27','10:34:26',2889,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4805,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 10:34:26','priyanshi','2025-11-27 11:39:42',0),(12895,2526,0,0,4370,'2025-11-27','00:00:00',3071,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4806,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 10:35:47','reception','2025-11-27 10:36:10',0),(12896,2526,0,0,4371,'2025-11-27','00:00:00',3072,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4808,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 10:37:19','janvi','2025-11-27 10:38:27',0),(12897,2526,0,0,4372,'2025-11-27','00:00:00',3073,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4807,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 10:37:36','reception','2025-11-27 10:38:07',0),(12898,2526,0,0,4373,'2025-11-27','00:00:00',3074,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4809,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 10:38:24','drashti','2025-11-27 10:38:39',0),(12899,2526,0,0,4374,'2025-11-27','00:00:00',3075,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4810,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 10:39:24','reception','2025-11-27 10:39:49',0),(12900,2526,0,0,4375,'2025-11-27','00:00:00',3076,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4814,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 10:40:59','drashti','2025-11-27 10:45:17',0),(12901,2526,0,0,4376,'2025-11-27','00:00:00',3077,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4811,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 10:41:31','reception','2025-11-27 10:41:59',0),(12902,2526,0,0,4377,'2025-11-27','00:00:00',3078,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4812,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 10:42:50','drashti','2025-11-27 10:44:49',0),(12903,2526,0,0,2879,'2025-11-17','10:28:00',0,146,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,188,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:44:32','riya','2025-11-27 17:50:51',0),(12904,2526,0,0,2879,'2025-11-14','10:28:00',0,146,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,189,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:44:32','riya','2025-11-27 17:50:51',0),(12905,2526,0,0,2879,'2025-11-13','10:30:00',0,146,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,190,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:44:32','riya','2025-11-27 18:03:22',0),(12906,2526,0,0,2879,'2025-11-20','10:38:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,191,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:44:32','riya','2025-11-27 18:03:22',0),(12907,2526,0,0,2879,'2025-11-26','10:39:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:44:32','vishal','2025-11-30 20:07:24',0),(12908,2526,0,0,2879,'2025-11-27','10:39:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:44:32','riya','2025-12-01 19:41:30',0),(12909,2526,0,0,2879,'2025-11-25','10:39:00',0,146,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:44:32','vishal','2025-11-30 20:07:24',0),(12910,2526,0,0,2879,'2025-11-27','10:40:00',0,146,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:44:32','riya','2025-12-01 19:41:30',0),(12911,2526,0,0,2879,'2025-11-26','10:40:00',0,146,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:44:32','vishal','2025-11-30 20:07:24',0),(12912,2526,0,0,2879,'2025-11-26','10:40:00',0,146,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:44:32','riya','2025-11-27 18:03:22',0),(12913,2526,0,0,2879,'2025-11-27','10:40:00',0,146,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:44:32','riya','2025-12-01 19:41:30',0),(12914,2526,0,0,2879,'2025-11-26','10:41:00',0,146,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:44:32','riya','2025-11-27 18:03:22',0),(12915,2526,0,0,2879,'2025-11-27','10:41:00',0,146,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:44:32','vishal','2025-11-30 20:07:24',0),(12916,2526,0,0,2879,'2025-11-26','10:42:00',0,146,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:44:32','vishal','2025-11-30 20:00:04',0),(12917,2526,0,0,2879,'2025-11-26','10:42:00',0,146,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:44:32','vishal','2025-11-30 20:00:04',0),(12918,2526,0,0,2879,'2025-11-27','10:42:00',0,146,'DRC','DRC0020','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,187,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:44:32','vishal','2025-11-30 20:07:24',0),(12919,2526,0,0,4378,'2025-11-27','00:00:00',3079,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4813,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 10:44:50','reception','2025-11-27 10:45:12',0),(12920,2526,0,0,4379,'2025-11-27','00:00:00',3080,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4815,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 10:48:41','reception','2025-11-27 10:50:04',0),(12921,2526,0,0,4380,'2025-11-27','00:00:00',3081,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',4816,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 10:50:34','priyanshi','2025-11-27 11:42:17',0),(12922,2526,0,0,4381,'2025-11-27','00:00:00',2115,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4817,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 10:51:31','reception','2025-11-27 10:52:11',0),(12923,2526,0,0,4261,'2025-11-27','09:50:00',2928,201,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',184,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:21:37','riya','2025-11-27 10:53:25',0),(12924,2526,0,0,4261,'2025-11-27','09:50:00',2928,201,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',184,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:21:37','riya','2025-11-27 10:53:25',0),(12925,2526,0,0,4261,'2025-11-27','09:50:00',2928,201,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',184,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:21:37','riya','2025-11-27 10:53:25',0),(12926,2526,0,0,4261,'2025-11-27','09:50:00',2928,201,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',184,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:21:37','riya','2025-11-27 10:53:25',0),(12927,2526,0,0,4261,'2025-11-27','09:50:00',2928,201,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',184,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:21:37','riya','2025-11-27 10:53:25',0),(12928,2526,0,0,4261,'2025-11-26','10:51:00',2928,201,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',184,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:53:25','','0000-00-00 00:00:00',0),(12929,2526,0,0,4261,'2025-11-26','10:51:00',2928,201,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',184,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:53:25','','0000-00-00 00:00:00',0),(12930,2526,0,0,4261,'2025-11-26','10:51:00',2928,201,'WPRC','WPRC0080','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',184,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:53:25','riya','2025-11-27 21:18:34',0),(12931,2526,0,0,4261,'2025-11-26','10:52:00',2928,201,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,88,0,0,'',0,0,'','','','','',2526,'H','I',184,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:53:25','','0000-00-00 00:00:00',0),(12932,2526,0,0,4382,'2025-11-27','00:00:00',1070,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4818,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 10:53:52','janvi','2025-11-27 10:54:26',0),(12933,2526,0,0,4161,'2025-11-27','09:45:00',2711,198,'ROOM','ROOM0009','H','N',0.50,3200,1600,'P',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','407','','','',2526,'H','I',183,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:24:20','riya','2025-11-27 20:30:21',0),(12934,2526,0,0,4161,'2025-11-27','09:45:00',2711,198,'AECO','AECO0008','H','N',0.50,400,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',183,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:24:20','riya','2025-11-27 20:30:21',0),(12935,2526,0,0,4161,'2025-11-27','09:45:00',2711,198,'CARE','CARE0001','H','N',0.50,200,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','407','','','',2526,'H','I',183,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:24:20','riya','2025-11-27 19:29:39',0),(12936,2526,0,0,4161,'2025-11-27','09:45:00',2711,198,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',183,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:24:20','riya','2025-11-27 19:29:39',0),(12937,2526,0,0,4161,'2025-11-27','09:45:00',2711,198,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',183,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:24:20','riya','2025-11-27 10:58:10',0),(12938,2526,0,0,4383,'2025-11-27','10:55:10',3021,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4819,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 10:55:10','janvi','2025-11-27 10:55:10',0),(12939,2526,0,0,4161,'2025-11-26','10:56:00',2711,198,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 10:56:38','','0000-00-00 00:00:00',0),(12940,2526,0,0,4245,'2025-11-26','19:30:00',0,200,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',186,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:28:39','riya','2025-11-27 11:03:01',0),(12941,2526,0,0,4245,'2025-11-26','19:30:00',0,200,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',186,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:28:39','riya','2025-11-27 11:03:01',0),(12942,2526,0,0,4245,'2025-11-26','19:30:00',0,200,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',186,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:28:39','riya','2025-11-27 11:03:01',0),(12943,2526,0,0,4245,'2025-11-26','19:30:00',0,200,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','406','','','',2526,'H','I',186,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:28:39','riya','2025-11-27 11:03:01',0),(12944,2526,0,0,4245,'2025-11-26','19:30:00',0,200,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','406','','','',2526,'H','I',186,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:28:39','riya','2025-11-27 11:03:01',0),(12945,2526,0,0,4245,'2025-11-25','10:58:00',0,200,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',186,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:03:01','','0000-00-00 00:00:00',0),(12946,2526,0,0,4245,'2025-11-26','10:58:00',0,200,'WPRC','WPRC0086','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',186,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:03:01','','0000-00-00 00:00:00',0),(12947,2526,0,0,4245,'2025-11-27','10:59:00',0,200,'WPRC','WPRC0086','H','N',3.00,200,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',186,21,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:03:01','vishal','2025-11-28 11:02:10',0),(12948,2526,0,0,4245,'2025-11-27','10:59:00',0,200,'WPRC','WPRC0089','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',186,22,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:03:01','vishal','2025-11-28 11:02:10',0),(12949,2526,0,0,4245,'2025-11-26','11:01:00',0,200,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,188,0,0,'',0,0,'','','','','',2526,'H','I',186,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:03:01','riya','2025-11-27 11:05:06',0),(12950,2526,0,0,4245,'2025-11-26','11:01:00',0,200,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',186,19,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:03:01','riya','2025-11-27 11:05:06',0),(12951,2526,0,0,4384,'2025-11-27','00:00:00',3082,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',4820,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-27 11:03:35','priyanshi','2025-11-27 11:04:25',0),(12952,2526,0,0,4245,'2025-11-26','11:04:00',0,200,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,227,0,0,'',0,0,'','','','','',2526,'H','I',186,20,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:05:06','','0000-00-00 00:00:00',0),(12953,2526,0,0,4385,'2025-11-27','00:00:00',3083,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4821,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 11:05:51','reception','2025-11-27 11:06:26',0),(12954,2526,0,0,4159,'2025-11-26','22:30:00',1388,197,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',187,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:41:26','riya','2025-11-27 11:12:16',0),(12955,2526,0,0,4159,'2025-11-26','22:30:00',1388,197,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',187,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:41:26','riya','2025-11-27 11:12:16',0),(12956,2526,0,0,4159,'2025-11-26','22:30:00',1388,197,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','401','','','',2526,'H','I',187,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:41:26','vishal','2025-11-28 12:37:40',0),(12957,2526,0,0,4159,'2025-11-26','22:30:00',1388,197,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',187,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:41:26','vishal','2025-11-28 12:37:40',0),(12958,2526,0,0,4159,'2025-11-26','22:30:00',1388,197,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',187,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:41:26','riya','2025-11-27 11:12:16',0),(12959,2526,0,0,4159,'2025-11-27','11:11:00',1388,197,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',187,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:12:16','vishal','2025-11-28 12:39:09',0),(12960,2526,0,0,3861,'2025-11-26','22:40:00',0,179,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:43:22','riya','2025-11-27 11:14:51',0),(12961,2526,0,0,3861,'2025-11-26','22:40:00',0,179,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:43:22','riya','2025-11-27 11:14:51',0),(12962,2526,0,0,3861,'2025-11-26','22:40:00',0,179,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:43:22','vishal','2025-11-30 12:04:11',0),(12963,2526,0,0,3861,'2025-11-26','22:40:00',0,179,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:43:22','riya','2025-11-27 11:14:51',0),(12964,2526,0,0,3861,'2025-11-26','22:40:00',0,179,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:43:22','riya','2025-11-27 11:14:51',0),(12965,2526,0,0,4386,'2025-11-27','00:00:00',2566,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4822,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 11:14:01','reception','2025-11-27 11:14:47',0),(12966,2526,0,0,3861,'2025-11-27','11:13:00',0,179,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:14:51','vishal','2025-11-30 12:04:11',0),(12967,2526,0,0,3861,'2025-11-26','11:13:00',0,179,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:14:51','vishal','2025-11-30 12:04:11',0),(12968,2526,0,0,4047,'2025-11-27','10:30:00',0,191,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:45:44','riya','2025-11-27 11:18:15',0),(12969,2526,0,0,4047,'2025-11-27','10:30:00',0,191,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:45:44','riya','2025-11-27 11:18:15',0),(12970,2526,0,0,4047,'2025-11-27','10:30:00',0,191,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:45:44','riya','2025-11-27 11:18:15',0),(12971,2526,0,0,4047,'2025-11-27','10:30:00',0,191,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:45:44','riya','2025-11-27 11:18:15',0),(12972,2526,0,0,4047,'2025-11-27','10:30:00',0,191,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:45:44','riya','2025-11-27 11:18:15',0),(12973,2526,0,0,4387,'2025-11-27','00:00:00',3084,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4823,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 11:16:55','reception','2025-11-27 11:17:25',0),(12974,2526,0,0,4047,'2025-11-26','11:15:00',0,191,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',195,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:18:15','','0000-00-00 00:00:00',0),(12975,2526,0,0,4047,'2025-11-26','11:16:00',0,191,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,3,0,0,'',0,0,'','','','','',2526,'H','I',195,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:18:15','','0000-00-00 00:00:00',0),(12976,2526,0,0,4047,'2025-11-26','11:16:00',0,191,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',195,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:18:15','','0000-00-00 00:00:00',0),(12977,2526,0,0,4047,'2025-11-26','11:16:00',0,191,'WPRC','WPRC0086','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',195,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:18:15','','0000-00-00 00:00:00',0),(12978,2526,0,0,4047,'2025-11-25','11:17:00',0,191,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',195,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:18:15','','0000-00-00 00:00:00',0),(12979,2526,0,0,4265,'2025-11-27','10:00:00',2903,202,'ROOM','ROOM0009','H','N',0.50,2900,1450,'P',0,0,0.00,0.00,1450.00,1450,9999,0,0,'',0,0,'','411','','','',2526,'H','I',182,16,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:48:56','riya','2025-11-27 19:41:31',0),(12980,2526,0,0,4265,'2025-11-27','10:00:00',2903,202,'AECO','AECO0008','H','N',0.50,300,150,'P',0,0,0.00,0.00,150.00,150,9999,0,0,'',0,0,'','411','','','',2526,'H','I',182,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:48:56','riya','2025-11-27 19:41:31',0),(12981,2526,0,0,4265,'2025-11-27','10:00:00',2903,202,'CARE','CARE0001','H','N',0.50,200,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','411','','','',2526,'H','I',182,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:48:56','riya','2025-11-27 19:32:31',0),(12982,2526,0,0,4265,'2025-11-27','10:00:00',2903,202,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','411','','','',2526,'H','I',182,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:48:56','riya','2025-11-27 11:19:58',0),(12983,2526,0,0,4265,'2025-11-27','10:00:00',2903,202,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','411','','','',2526,'H','I',182,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 22:48:56','riya','2025-11-27 11:19:58',0),(12984,2526,0,0,4388,'2025-11-27','00:00:00',1378,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4824,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 11:19:48','reception','2025-11-27 11:20:02',0),(12985,2526,0,0,4265,'2025-11-26','11:18:00',2903,202,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',182,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:19:58','','0000-00-00 00:00:00',0),(12986,2526,0,0,4265,'2025-11-26','11:19:00',2903,202,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',182,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:19:58','','0000-00-00 00:00:00',0),(12987,2526,0,0,4265,'2025-11-27','11:19:00',2903,202,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',182,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:19:58','','0000-00-00 00:00:00',0),(12988,2526,0,0,4389,'2025-11-27','00:00:00',3085,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4825,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 11:21:18','reception','2025-11-27 11:22:10',0),(12989,2526,0,0,4390,'2025-11-27','00:00:00',3086,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',4827,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 11:24:15','janvi','2025-11-27 11:24:49',0),(12990,2526,0,0,4378,'2025-11-27','11:24:26',3079,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4826,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 11:24:26','reception','2025-11-27 11:24:26',0),(12991,2526,0,0,4378,'2025-11-27','11:24:26',3079,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4826,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 11:24:26','reception','2025-11-27 11:24:26',0),(12992,2526,0,0,4378,'2025-11-27','11:24:26',3079,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4826,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 11:24:26','reception','2025-11-27 11:24:26',0),(12993,2526,0,0,4390,'2025-11-27','11:24:49',3086,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,86,'',0,0,'','','','','',2526,'H','O',4827,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-11-27 11:24:49','janvi','2025-11-27 11:24:49',0),(12994,2526,0,0,4391,'2025-11-27','00:00:00',3087,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',4828,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 11:28:26','reception','2025-11-27 11:29:02',0),(12995,2526,0,0,4392,'2025-11-27','00:00:00',49,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4829,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 11:32:02','reception','2025-11-27 11:32:16',0),(12996,2526,0,0,4393,'2025-11-27','00:00:00',1653,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4830,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-27 11:36:28','priyanshi','2025-11-27 11:37:07',0),(12997,2526,0,0,4379,'2025-11-27','11:40:33',3080,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4832,1,114,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 11:40:33','reception','2025-11-27 11:40:33',0),(12998,2526,0,0,4379,'2025-11-27','11:40:33',3080,0,'NEU1','NEU10019','H','N',1.00,1800,1800,'P',0,0,0.00,0.00,0.00,1800,9999,0,0,'',0,0,'','','','','',2526,'H','O',4832,2,411,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 11:40:33','reception','2025-11-27 11:40:33',0),(12999,2526,0,0,4379,'2025-11-27','11:40:33',3080,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4832,3,503,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 11:40:33','reception','2025-11-27 11:40:33',0),(13000,2526,0,0,4379,'2025-11-27','11:40:33',3080,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4832,4,571,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 11:40:33','reception','2025-11-27 11:40:33',0),(13001,2526,0,0,4394,'2025-11-27','11:42:54',2543,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4834,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 11:42:54','janvi','2025-11-27 11:42:54',0),(13002,2526,0,0,4374,'2025-11-27','11:42:55',3075,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4835,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 11:42:55','reception','2025-11-27 11:42:55',0),(13003,2526,0,0,4374,'2025-11-27','11:42:55',3075,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4835,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 11:42:55','reception','2025-11-27 11:42:55',0),(13004,2526,0,0,4374,'2025-11-27','11:42:55',3075,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4835,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 11:42:55','reception','2025-11-27 11:42:55',0),(13005,2526,0,0,4380,'2025-11-27','11:44:19',3081,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',4836,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-27 11:44:19','priyanshi','2025-11-27 11:44:19',0),(13006,2526,0,0,3764,'2025-11-27','10:00:00',0,178,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,71,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 23:16:25','riya','2025-11-27 11:54:17',0),(13007,2526,0,0,3764,'2025-11-27','10:00:00',0,178,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,72,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 23:16:25','riya','2025-11-27 11:54:17',0),(13008,2526,0,0,3764,'2025-11-27','10:00:00',0,178,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,73,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 23:16:25','riya','2025-11-27 11:54:17',0),(13009,2526,0,0,3764,'2025-11-27','10:00:00',0,178,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',220,87,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 23:16:25','riya','2025-11-27 11:57:45',0),(13010,2526,0,0,3764,'2025-11-27','10:00:00',0,178,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',220,86,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 23:16:25','riya','2025-11-27 11:57:45',0),(13011,2526,0,0,4395,'2025-11-27','00:00:00',2471,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',4838,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-27 11:48:47','manshi','2025-11-27 11:58:26',0),(13012,2526,0,0,4391,'2025-11-27','11:54:02',3087,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',4837,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-27 11:54:02','priyanshi','2025-11-27 11:54:02',0),(13013,2526,0,0,3764,'2025-11-26','11:46:00',0,178,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,76,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:54:17','','0000-00-00 00:00:00',0),(13014,2526,0,0,3764,'2025-11-25','11:47:00',0,178,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,42,0,0,'',0,0,'','','','','',2526,'H','I',220,77,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:54:17','','0000-00-00 00:00:00',0),(13015,2526,0,0,3764,'2025-11-26','11:48:00',0,178,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,78,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:54:17','','0000-00-00 00:00:00',0),(13016,2526,0,0,3764,'2025-11-27','11:48:00',0,178,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,79,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:54:17','','0000-00-00 00:00:00',0),(13017,2526,0,0,3764,'2025-11-25','11:49:00',0,178,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,80,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:54:17','','0000-00-00 00:00:00',0),(13018,2526,0,0,3764,'2025-11-25','11:49:00',0,178,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,42,0,0,'',0,0,'','','','','',2526,'H','I',220,81,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:54:17','','0000-00-00 00:00:00',0),(13019,2526,0,0,3764,'2025-11-26','11:49:00',0,178,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,42,0,0,'',0,0,'','','','','',2526,'H','I',220,82,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:54:17','','0000-00-00 00:00:00',0),(13020,2526,0,0,3764,'2025-11-26','11:50:00',0,178,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',220,83,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:54:17','','0000-00-00 00:00:00',0),(13021,2526,0,0,3764,'2025-11-26','11:51:00',0,178,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',220,84,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:54:17','','0000-00-00 00:00:00',0),(13022,2526,0,0,3764,'2025-11-27','11:51:00',0,178,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',220,85,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:54:17','','0000-00-00 00:00:00',0),(13023,2526,0,0,3764,'2025-11-27','11:51:00',0,178,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',220,86,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:54:17','','0000-00-00 00:00:00',0),(13024,2526,0,0,3764,'2025-11-25','11:52:00',0,178,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,88,0,0,'',0,0,'','','','','',2526,'H','I',220,87,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:54:17','','0000-00-00 00:00:00',0),(13025,2526,0,0,3764,'2025-11-26','11:52:00',0,178,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,88,0,0,'',0,0,'','','','','',2526,'H','I',220,88,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:54:17','','0000-00-00 00:00:00',0),(13026,2526,0,0,3764,'2025-11-26','11:52:00',0,178,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,88,0,0,'',0,0,'','','','','',2526,'H','I',220,89,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:54:17','','0000-00-00 00:00:00',0),(13027,2526,0,0,3764,'2025-11-25','11:53:00',0,178,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,8,0,0,'',0,0,'','','','','',2526,'H','I',220,90,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 11:54:17','','0000-00-00 00:00:00',0),(13028,2526,0,0,4396,'2025-11-27','00:00:00',3088,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4839,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 12:02:12','reception','2025-11-27 12:02:30',0),(13029,2526,0,0,4397,'2025-11-27','00:00:00',3089,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4840,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-27 12:02:46','priyanshi','2025-11-27 12:03:04',0),(13030,2526,0,0,4397,'2025-11-27','12:03:04',3089,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4840,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-27 12:03:04','priyanshi','2025-11-27 12:03:04',0),(13031,2526,0,0,3909,'2025-11-27','12:00:00',0,181,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 12:06:12','riya','2025-12-03 16:32:41',0),(13032,2526,0,0,3909,'2025-11-26','12:00:00',0,181,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 12:06:12','','0000-00-00 00:00:00',0),(13033,2526,0,0,3909,'2025-11-27','12:00:00',0,181,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 12:06:12','vishal','2025-11-28 16:24:46',0),(13034,2526,0,0,3909,'2025-11-26','12:01:00',0,181,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 12:06:12','','0000-00-00 00:00:00',0),(13035,2526,0,0,3909,'2025-11-25','12:02:00',0,181,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 12:06:12','','0000-00-00 00:00:00',0),(13036,2526,0,0,3909,'2025-11-26','12:02:00',0,181,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 12:06:12','','0000-00-00 00:00:00',0),(13037,2526,0,0,3909,'2025-11-27','12:03:00',0,181,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 12:06:12','vishal','2025-11-28 16:24:46',0),(13038,2526,0,0,3909,'2025-11-26','12:04:00',0,181,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 12:06:12','','0000-00-00 00:00:00',0),(13039,2526,0,0,3909,'2025-11-26','12:05:00',0,181,'WPRC','WPRC0092','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,4,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 12:06:12','vishal','2025-11-28 16:24:46',0),(13040,2526,0,0,4398,'2025-11-27','00:00:00',3090,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',4841,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 12:11:40','janvi','2025-11-27 12:12:30',0),(13041,2526,0,0,4364,'2025-11-27','12:12:44',3054,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4842,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 12:12:44','reception','2025-11-27 12:12:44',0),(13042,2526,0,0,4364,'2025-11-27','12:12:44',3054,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4842,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 12:12:44','reception','2025-11-27 12:12:44',0),(13043,2526,0,0,4364,'2025-11-27','12:12:44',3054,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4842,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 12:12:44','reception','2025-11-27 12:12:44',0),(13044,2526,0,0,3909,'2025-11-24','12:13:00',0,181,'DRC','DRC0020','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,229,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 12:14:28','','0000-00-00 00:00:00',0),(13045,2526,0,0,3909,'2025-11-26','12:13:00',0,181,'DRC','DRC0020','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,229,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 12:14:28','vishal','2025-11-28 16:24:46',0),(13046,2526,0,0,4399,'2025-11-27','00:00:00',3091,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4843,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 12:18:32','reception','2025-11-27 12:18:51',0),(13047,2526,0,0,4125,'2025-11-26','18:15:00',0,194,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','310','','','',2526,'H','I',179,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 23:49:51','riya','2025-11-27 13:21:33',0),(13048,2526,0,0,4125,'2025-11-26','18:15:00',0,194,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','310','','','',2526,'H','I',179,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 23:49:51','riya','2025-11-27 13:21:33',0),(13049,2526,0,0,4125,'2025-11-26','18:15:00',0,194,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','310','','','',2526,'H','I',179,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 23:49:51','riya','2025-11-27 12:23:36',0),(13050,2526,0,0,4125,'2025-11-26','18:15:00',0,194,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','310','','','',2526,'H','I',179,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 23:49:51','riya','2025-11-27 13:21:33',0),(13051,2526,0,0,4125,'2025-11-26','18:15:00',0,194,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','310','','','',2526,'H','I',179,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-26 23:49:51','riya','2025-11-27 13:21:33',0),(13052,2526,0,0,4400,'2025-11-27','00:00:00',3092,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4844,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 12:21:34','reception','2025-11-27 12:22:05',0),(13053,2526,0,0,4398,'2025-11-27','12:22:10',3090,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',4845,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-11-27 12:22:10','janvi','2025-11-27 12:22:10',0),(13054,2526,0,0,4398,'2025-11-27','12:22:10',3090,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,87,'',0,0,'','','','','',2526,'H','O',4845,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-11-27 12:22:10','janvi','2025-11-27 12:22:10',0),(13055,2526,0,0,4125,'2025-11-26','12:19:00',0,194,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',179,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 12:23:36','','0000-00-00 00:00:00',0),(13056,2526,0,0,4125,'2025-11-27','12:19:00',0,194,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',179,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 12:23:36','','0000-00-00 00:00:00',0),(13057,2526,0,0,4125,'2025-11-26','12:20:00',0,194,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',179,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 12:23:36','','0000-00-00 00:00:00',0),(13058,2526,0,0,4125,'2025-11-27','12:20:00',0,194,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',179,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 12:23:36','','0000-00-00 00:00:00',0),(13059,2526,0,0,4125,'2025-11-27','12:21:00',0,194,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',179,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 12:23:36','riya','2025-11-27 13:21:33',0),(13060,2526,0,0,4400,'2025-11-27','12:27:27',3092,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',4846,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 12:27:27','janvi','2025-11-27 12:27:27',0),(13061,2526,0,0,4357,'2025-11-27','12:31:00',0,208,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',178,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 12:32:58','','0000-00-00 00:00:00',0),(13062,2526,0,0,4357,'2025-11-27','12:31:00',0,208,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',178,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 12:32:58','','0000-00-00 00:00:00',0),(13063,2526,0,0,4401,'2025-11-27','00:00:00',3093,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',4847,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-27 12:35:56','priyanshi','2025-11-27 12:36:34',0),(13064,2526,0,0,4373,'2025-11-27','12:45:00',3074,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4848,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 12:45:00','reception','2025-11-27 12:45:00',0),(13065,2526,0,0,4373,'2025-11-27','12:45:00',3074,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4848,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 12:45:00','reception','2025-11-27 12:45:00',0),(13066,2526,0,0,4373,'2025-11-27','12:45:00',3074,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4848,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 12:45:00','reception','2025-11-27 12:45:00',0),(13067,2526,0,0,4402,'2025-11-27','00:00:00',632,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4849,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 12:47:00','reception','2025-11-27 12:47:49',0),(13068,2526,0,0,4403,'2025-11-27','00:00:00',1883,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-27 12:49:37','priyanshi','2025-11-27 00:19:37',0),(13069,2526,0,0,4403,'2025-11-27','12:51:58',1883,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',4850,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-27 12:51:58','priyanshi','2025-11-27 12:51:58',0),(13070,2526,0,0,4399,'2025-11-27','12:56:28',3091,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4851,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 12:56:28','reception','2025-11-27 12:56:28',0),(13071,2526,0,0,4399,'2025-11-27','12:56:28',3091,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4851,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 12:56:28','reception','2025-11-27 12:56:28',0),(13072,2526,0,0,4399,'2025-11-27','12:56:28',3091,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4851,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 12:56:28','reception','2025-11-27 12:56:28',0),(13073,2526,0,0,4398,'2025-11-27','13:01:36',3090,0,'OPWD','OPWD0034','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,5,0,0,'',0,0,'','','','','',2526,'H','O',4852,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-11-27 13:01:36','priyanshi','2025-11-27 13:01:36',0),(13074,2526,0,0,4394,'2025-11-27','13:12:33',2543,0,'OPWD','OPWD0023','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,0.00,4000,3,0,0,'',0,0,'','','','','',2526,'H','O',4853,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 13:12:33','janvi','2025-11-27 13:12:33',0),(13075,2526,0,0,4404,'2025-11-27','00:00:00',3094,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4854,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 13:14:47','reception','2025-11-27 13:16:18',0),(13076,2526,0,0,4405,'2025-11-27','00:00:00',3095,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4855,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 13:20:15','reception','2025-11-27 13:20:30',0),(13077,2526,0,0,4381,'2025-11-27','13:26:30',2115,0,'OPWD','OPWD0023','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',4856,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 13:26:30','janvi','2025-11-27 13:26:30',0),(13078,2526,0,0,4350,'2025-11-26','13:33:00',0,206,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',180,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 13:36:30','','0000-00-00 00:00:00',0),(13079,2526,0,0,4350,'2025-11-26','13:34:00',0,206,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',180,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 13:36:30','','0000-00-00 00:00:00',0),(13080,2526,0,0,4350,'2025-11-27','13:34:00',0,206,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',180,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 13:36:30','','0000-00-00 00:00:00',0),(13081,2526,0,0,4350,'2025-11-27','13:34:00',0,206,'USG','USG0092','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',180,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 13:36:30','','0000-00-00 00:00:00',0),(13082,2526,0,0,4350,'2025-11-27','13:34:00',0,206,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',180,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 13:36:30','','0000-00-00 00:00:00',0),(13083,2526,0,0,4350,'2025-11-27','13:35:00',0,206,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',180,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 13:36:30','','0000-00-00 00:00:00',0),(13084,2526,0,0,4405,'2025-11-27','13:54:19',3095,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4857,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 13:54:19','reception','2025-11-27 13:54:19',0),(13085,2526,0,0,4405,'2025-11-27','13:54:19',3095,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4857,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 13:54:19','reception','2025-11-27 13:54:19',0),(13086,2526,0,0,4405,'2025-11-27','13:54:19',3095,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4857,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 13:54:19','reception','2025-11-27 13:54:19',0),(13087,2526,0,0,3959,'2025-11-27','14:01:00',0,183,'ROOM','ROOM0009','H','N',0.50,5500,2750,'P',0,0,0.00,0.00,2750.00,2750,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 14:18:23','','0000-00-00 00:00:00',0),(13088,2526,0,0,3959,'2025-11-27','14:01:00',0,183,'CARE','CARE0004','H','N',0.50,800,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 14:18:23','','0000-00-00 00:00:00',0),(13089,2526,0,0,3959,'2025-11-27','14:01:00',0,183,'CARE','CARE0003','H','N',0.50,600,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 14:18:23','','0000-00-00 00:00:00',0),(13090,2526,0,0,3959,'2025-11-27','14:04:00',0,183,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 14:18:23','','0000-00-00 00:00:00',0),(13091,2526,0,0,3959,'2025-11-27','14:05:00',0,183,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 14:18:23','riya','2025-11-27 14:29:06',0),(13092,2526,0,0,3959,'2025-11-27','14:13:00',0,183,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 14:18:23','','0000-00-00 00:00:00',0),(13093,2526,0,0,3959,'2025-11-27','14:14:00',0,183,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 14:18:23','','0000-00-00 00:00:00',0),(13094,2526,0,0,3959,'2025-11-27','14:16:00',0,183,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 14:18:23','','0000-00-00 00:00:00',0),(13095,2526,0,0,3959,'2025-11-27','14:17:00',0,183,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 14:18:23','','0000-00-00 00:00:00',0),(13096,2526,0,0,4406,'2025-11-27','00:00:00',3096,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4858,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 14:30:31','reception','2025-11-27 14:32:25',0),(13097,2526,0,0,3959,'2025-11-22','14:30:00',0,183,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 14:34:01','','0000-00-00 00:00:00',0),(13098,2526,0,0,3959,'2025-11-23','14:30:00',0,183,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 14:34:01','','0000-00-00 00:00:00',0),(13099,2526,0,0,3959,'2025-11-24','14:31:00',0,183,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 14:34:01','','0000-00-00 00:00:00',0),(13100,2526,0,0,3959,'2025-11-25','14:31:00',0,183,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 14:34:01','','0000-00-00 00:00:00',0),(13101,2526,0,0,3959,'2025-11-26','14:31:00',0,183,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 14:34:01','','0000-00-00 00:00:00',0),(13102,2526,0,0,3959,'2025-11-27','14:32:00',0,183,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',181,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 14:34:01','','0000-00-00 00:00:00',0),(13103,2526,0,0,4406,'2025-11-27','14:51:27',3096,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,2,0,0,'',0,0,'','','','','',2526,'H','O',4859,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 14:51:27','drashti','2025-11-27 14:51:27',0),(13104,2526,0,0,4407,'2025-11-27','14:57:13',3028,0,'OPWD','OPWD0036','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',4860,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 14:57:13','reception','2025-11-27 14:57:13',0),(13105,2526,0,0,4409,'2025-11-27','15:00:00',0,210,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',188,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 15:21:54','vishal','2025-11-28 11:44:02',0),(13106,2526,0,0,4409,'2025-11-27','15:00:00',0,210,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',188,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 15:21:54','vishal','2025-11-28 11:44:02',0),(13107,2526,0,0,4409,'2025-11-27','15:00:00',0,210,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',188,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 02:51:54','vishal','2025-11-28 11:44:02',0),(13108,2526,0,0,4409,'2025-11-27','15:00:00',0,210,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',188,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 02:51:54','vishal','2025-11-28 11:44:02',0),(13109,2526,0,0,4409,'2025-11-27','15:00:00',0,210,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',188,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 02:51:54','vishal','2025-11-28 11:44:02',0),(13110,2526,0,0,4409,'2025-11-27','15:00:00',0,210,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-27 02:51:54','vishal','2025-11-28 11:44:02',0),(13111,2526,0,0,4409,'2025-11-27','15:00:00',0,210,'DRC','DRC0019','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,78,0,0,'',0,0,'','207','','','',2526,'H','I',188,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 02:51:54','vishal','2025-11-28 11:44:02',0),(13112,2526,0,0,4410,'2025-11-27','00:00:00',47,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4873,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 16:14:48','janvi','2025-11-27 17:40:23',0),(13113,2526,0,0,4411,'2025-11-27','00:00:00',2615,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4861,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 16:26:03','reception','2025-11-27 16:26:29',0),(13114,2526,0,0,4412,'2025-11-27','00:00:00',1644,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4862,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 16:26:49','drashti','2025-11-27 16:27:03',0),(13115,2526,0,0,4017,'2025-11-27','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,49,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:01:54','riya','2025-11-27 16:33:52',0),(13116,2526,0,0,4017,'2025-11-27','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,50,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:01:54','riya','2025-11-27 16:33:52',0),(13117,2526,0,0,4017,'2025-11-27','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,51,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:01:54','riya','2025-11-27 16:33:52',0),(13118,2526,0,0,4017,'2025-11-27','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,52,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:01:54','riya','2025-11-27 16:33:52',0),(13119,2526,0,0,4017,'2025-11-27','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,53,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:01:54','riya','2025-11-27 16:33:52',0),(13120,2526,0,0,4017,'2025-11-27','16:31:00',0,187,'WPRC','WPRC0077','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',0,'','',0,54,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:33:52','','0000-00-00 00:00:00',0),(13121,2526,0,0,4017,'2025-11-27','16:32:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,55,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:33:52','','0000-00-00 00:00:00',0),(13122,2526,0,0,4017,'2025-11-27','16:32:00',0,187,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,56,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:33:52','','0000-00-00 00:00:00',0),(13123,2526,0,0,4017,'2025-11-27','16:32:00',0,187,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,57,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:33:52','vishal','2025-11-28 15:44:13',0),(13124,2526,0,0,4017,'2025-11-27','16:32:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,58,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:33:52','','0000-00-00 00:00:00',0),(13125,2526,0,0,4017,'2025-11-27','16:33:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,59,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:33:52','','0000-00-00 00:00:00',0),(13126,2526,0,0,4266,'2025-11-27','10:15:00',0,203,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:05:10','vishal','2025-12-03 19:45:19',0),(13127,2526,0,0,4266,'2025-11-27','10:15:00',0,203,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:05:10','riya','2025-11-27 16:39:05',0),(13128,2526,0,0,4266,'2025-11-27','10:15:00',0,203,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:05:10','riya','2025-11-27 16:39:05',0),(13129,2526,0,0,4266,'2025-11-27','10:15:00',0,203,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:05:10','riya','2025-11-27 16:39:05',0),(13130,2526,0,0,4266,'2025-11-27','10:15:00',0,203,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:05:10','riya','2025-11-27 16:39:05',0),(13131,2526,0,0,4413,'2025-11-27','00:00:00',3097,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 16:37:51','drashti','2025-11-27 04:07:51',0),(13132,2526,0,0,4266,'2025-11-26','16:35:00',0,203,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:39:05','','0000-00-00 00:00:00',0),(13133,2526,0,0,4266,'2025-11-26','16:35:00',0,203,'WPRC','WPRC0088','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:39:05','riya','2025-12-03 14:16:04',0),(13134,2526,0,0,4266,'2025-11-26','16:35:00',0,203,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:39:05','','0000-00-00 00:00:00',0),(13135,2526,0,0,4266,'2025-11-26','16:35:00',0,203,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:39:05','','0000-00-00 00:00:00',0),(13136,2526,0,0,4266,'2025-11-27','16:36:00',0,203,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:39:05','vishal','2025-12-03 19:45:19',0),(13137,2526,0,0,4266,'2025-11-26','16:36:00',0,203,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,18,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:39:05','vishal','2025-11-28 15:47:52',0),(13138,2526,0,0,4266,'2025-11-27','16:36:00',0,203,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,19,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:39:05','vishal','2025-11-28 15:47:52',0),(13139,2526,0,0,4266,'2025-11-27','16:36:00',0,203,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:39:05','','0000-00-00 00:00:00',0),(13140,2526,0,0,4266,'2025-11-26','16:37:00',0,203,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:39:05','','0000-00-00 00:00:00',0),(13141,2526,0,0,4266,'2025-11-27','16:37:00',0,203,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',0,'','',0,22,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:39:05','vishal','2025-11-28 15:47:52',0),(13142,2526,0,0,4266,'2025-11-27','16:37:00',0,203,'WPRC','WPRC0087','H','N',3.00,500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:39:05','vishal','2025-12-03 19:43:17',0),(13143,2526,0,0,4266,'2025-11-26','16:37:00',0,203,'WPRC','WPRC0087','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:39:05','vishal','2025-12-03 19:38:20',0),(13144,2526,0,0,4266,'2025-11-26','16:37:00',0,203,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:39:05','','0000-00-00 00:00:00',0),(13145,2526,0,0,4266,'2025-11-27','16:37:00',0,203,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:39:05','vishal','2025-12-03 19:43:17',0),(13146,2526,0,0,4413,'2025-11-27','16:41:40',3097,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',4863,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 16:41:40','drashti','2025-11-27 16:41:40',0),(13147,2526,0,0,4413,'2025-11-27','16:41:40',3097,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4863,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 16:41:40','drashti','2025-11-27 16:41:40',0),(13148,2526,0,0,4413,'2025-11-27','16:41:40',3097,0,'OPWD','OPWD0019','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4863,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 16:41:40','drashti','2025-11-27 16:41:40',0),(13149,2526,0,0,4413,'2025-11-27','16:41:40',3097,0,'OPWD','OPWD0015','H','N',4.00,250,1000,'P',0,0,0.00,0.00,0.00,1000,4,0,0,'',0,0,'','','','','',2526,'H','O',4863,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 16:41:40','drashti','2025-11-27 16:41:40',0),(13150,2526,0,0,4413,'2025-11-27','16:41:40',3097,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',4863,5,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 16:41:40','drashti','2025-11-27 16:41:40',0),(13151,2526,0,0,4359,'2025-11-27','16:42:00',0,209,'ROOM','ROOM0008','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:44:14','','0000-00-00 00:00:00',0),(13152,2526,0,0,4359,'2025-11-27','16:42:00',0,209,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:44:14','','0000-00-00 00:00:00',0),(13153,2526,0,0,4359,'2025-11-27','16:42:00',0,209,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:44:14','','0000-00-00 00:00:00',0),(13154,2526,0,0,4359,'2025-11-27','16:42:00',0,209,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:44:14','','0000-00-00 00:00:00',0),(13155,2526,0,0,4359,'2025-11-27','16:43:00',0,209,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:44:14','','0000-00-00 00:00:00',0),(13156,2526,0,0,4359,'2025-11-27','16:43:00',0,209,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:44:14','','0000-00-00 00:00:00',0),(13157,2526,0,0,4359,'2025-11-27','16:43:00',0,209,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:44:14','','0000-00-00 00:00:00',0),(13158,2526,0,0,4414,'2025-11-27','00:00:00',1032,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4864,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 16:44:40','reception','2025-11-27 16:45:11',0),(13159,2526,0,0,4359,'2025-11-27','16:45:00',0,209,'DRC','DRC0020','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,231,0,0,'',0,0,'','','','','',2526,'H','I',192,19,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:46:05','vishal','2025-11-30 14:15:54',0),(13160,2526,0,0,4359,'2025-11-27','16:45:00',0,209,'DRC','DRC0020','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,231,0,0,'',0,0,'','','','','',2526,'H','I',192,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 16:46:05','vishal','2025-11-30 14:15:54',0),(13161,2526,0,0,2879,'2025-11-27','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:17:30','vishal','2025-11-30 20:07:24',0),(13162,2526,0,0,2879,'2025-11-27','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:17:30','riya','2025-12-01 19:45:21',0),(13163,2526,0,0,2879,'2025-11-27','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:17:30','riya','2025-12-01 19:41:30',0),(13164,2526,0,0,2879,'2025-11-27','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:17:30','riya','2025-12-01 19:45:21',0),(13165,2526,0,0,2879,'2025-11-27','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:17:30','vishal','2025-11-30 20:00:04',0),(13166,2526,0,0,3611,'2025-11-26','17:00:00',0,171,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:17:31','riya','2025-12-02 16:03:49',0),(13167,2526,0,0,3611,'2025-11-26','17:00:00',0,171,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:17:31','riya','2025-12-02 16:03:49',0),(13168,2526,0,0,3611,'2025-11-26','17:00:00',0,171,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:17:31','riya','2025-12-02 16:03:49',0),(13169,2526,0,0,3611,'2025-11-26','17:00:00',0,171,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:17:31','riya','2025-12-02 16:03:49',0),(13170,2526,0,0,3611,'2025-11-26','17:00:00',0,171,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:17:31','riya','2025-12-02 16:03:49',0),(13171,2526,0,0,3909,'2025-11-27','15:00:00',0,181,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:17:32','vishal','2025-11-28 16:24:12',0),(13172,2526,0,0,3909,'2025-11-27','15:00:00',0,181,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:17:32','vishal','2025-11-28 16:24:12',0),(13173,2526,0,0,3909,'2025-11-27','15:00:00',0,181,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:17:32','vishal','2025-11-28 16:24:12',0),(13174,2526,0,0,3909,'2025-11-27','15:00:00',0,181,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:17:32','vishal','2025-11-28 16:24:12',0),(13175,2526,0,0,3909,'2025-11-27','15:00:00',0,181,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:17:32','vishal','2025-11-28 16:24:12',0),(13176,2526,0,0,4415,'2025-11-27','00:00:00',3098,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',4865,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 16:53:57','drashti','2025-11-27 16:55:04',0),(13177,2526,0,0,4416,'2025-11-27','00:00:00',3099,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 17:02:02','reception','2025-11-27 04:32:02',0),(13178,2526,0,0,4417,'2025-11-27','17:00:00',0,211,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',189,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 17:03:05','vishal','2025-11-28 16:38:07',0),(13179,2526,0,0,4417,'2025-11-27','17:00:00',0,211,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',189,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 17:03:05','vishal','2025-11-28 16:38:07',0),(13180,2526,0,0,4417,'2025-11-27','17:00:00',0,211,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',189,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:33:05','vishal','2025-11-29 11:23:17',0),(13181,2526,0,0,4417,'2025-11-27','17:00:00',0,211,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','409','','','',2526,'H','I',189,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:33:05','vishal','2025-11-29 11:23:17',0),(13182,2526,0,0,4417,'2025-11-27','17:00:00',0,211,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',189,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:33:05','vishal','2025-11-28 16:38:07',0),(13183,2526,0,0,4417,'2025-11-27','17:00:00',0,211,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:33:05','vishal','2025-11-28 16:38:31',0),(13184,2526,0,0,4417,'2025-11-27','17:00:00',0,211,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','409','','','',2526,'H','I',189,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 04:33:05','vishal','2025-11-29 11:23:17',0),(13185,2526,0,0,4418,'2025-11-27','00:00:00',3100,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',4866,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-27 17:03:32','manshi','2025-11-27 17:03:48',0),(13186,2526,0,0,4416,'2025-11-27','17:04:18',3099,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',4867,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 17:04:18','reception','2025-11-27 17:04:18',0),(13187,2526,0,0,4416,'2025-11-27','17:04:18',3099,0,'OPWD','OPWD0015','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,3,0,0,'',0,0,'','','','','',2526,'H','O',4867,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 17:04:18','reception','2025-11-27 17:04:18',0),(13188,2526,0,0,4416,'2025-11-27','17:04:18',3099,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',4867,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 17:04:18','reception','2025-11-27 17:04:18',0),(13189,2526,0,0,4419,'2025-11-27','00:00:00',2604,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4868,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 17:12:12','reception','2025-11-27 17:12:35',0),(13190,2526,0,0,4420,'2025-11-27','00:00:00',3101,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4869,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 17:26:22','reception','2025-11-27 17:27:20',0),(13191,2526,0,0,4421,'2025-11-27','00:00:00',3102,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4870,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 17:34:10','reception','2025-11-27 17:35:46',0),(13192,2526,0,0,4422,'2025-11-27','00:00:00',3103,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4871,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 17:39:40','reception','2025-11-27 17:40:13',0),(13193,2526,0,0,4423,'2025-11-27','17:40:23',2528,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',4872,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-27 17:40:23','manshi','2025-11-27 17:40:23',0),(13194,2526,0,0,4424,'2025-11-27','00:00:00',1976,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 17:42:28','janvi','2025-11-27 05:12:28',0),(13195,2526,0,0,4425,'2025-11-27','00:00:00',3104,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',4875,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 17:43:45','drashti','2025-11-27 17:45:34',0),(13196,2526,0,0,4426,'2025-11-27','00:00:00',3105,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',4874,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 17:44:36','drashti','2025-11-27 17:45:22',0),(13197,2526,0,0,4427,'2025-11-27','00:00:00',2710,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4876,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-27 17:50:07','manshi','2025-11-27 17:50:18',0),(13198,2526,0,0,4428,'2025-11-27','00:00:00',751,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4877,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 17:52:06','reception','2025-11-27 17:52:22',0),(13199,2526,0,0,2879,'2025-11-10','17:53:00',0,146,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 17:54:35','','0000-00-00 00:00:00',0),(13200,2526,0,0,2879,'2025-11-11','17:53:00',0,146,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 17:54:35','','0000-00-00 00:00:00',0),(13201,2526,0,0,2879,'2025-11-12','17:53:00',0,146,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 17:54:35','','0000-00-00 00:00:00',0),(13202,2526,0,0,2879,'2025-11-13','17:53:00',0,146,'WPRC','WPRC0098','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 17:54:35','riya','2025-11-27 17:57:23',0),(13203,2526,0,0,2879,'2025-11-14','17:53:00',0,146,'WPRC','WPRC0098','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 17:54:35','riya','2025-11-27 17:57:23',0),(13204,2526,0,0,2879,'2025-11-15','17:53:00',0,146,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',0,'','',0,211,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 17:54:35','riya','2025-11-27 17:57:23',0),(13205,2526,0,0,2879,'2025-11-15','17:55:00',0,146,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 17:57:23','riya','2025-12-01 20:01:36',0),(13206,2526,0,0,2879,'2025-11-16','17:55:00',0,146,'WPRC','WPRC0098','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 17:57:23','riya','2025-12-01 19:41:30',0),(13207,2526,0,0,2879,'2025-11-17','17:55:00',0,146,'WPRC','WPRC0098','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 17:57:23','vishal','2025-11-30 20:00:04',0),(13208,2526,0,0,2879,'2025-11-18','17:55:00',0,146,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 17:57:23','','0000-00-00 00:00:00',0),(13209,2526,0,0,2879,'2025-11-19','17:55:00',0,146,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 17:57:23','','0000-00-00 00:00:00',0),(13210,2526,0,0,4429,'2025-11-27','00:00:00',1540,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4878,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 17:59:31','reception','2025-11-27 17:59:54',0),(13211,2526,0,0,4430,'2025-11-27','00:00:00',1968,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 18:01:53','reception','2025-11-27 05:31:53',0),(13212,2526,0,0,4431,'2025-11-27','00:00:00',3106,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4879,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 18:03:27','janvi','2025-11-27 18:04:20',0),(13213,2526,0,0,2879,'2025-11-27','18:06:00',0,146,'WPRC','WPRC0100','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,39,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 18:07:42','riya','2025-12-01 19:41:30',0),(13214,2526,0,0,4432,'2025-11-27','00:00:00',2521,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4880,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 18:07:50','reception','2025-11-27 18:08:11',0),(13215,2526,0,0,4433,'2025-11-27','00:00:00',3107,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4881,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-27 18:07:58','manshi','2025-11-27 18:08:29',0),(13216,2526,0,0,4434,'2025-11-27','00:00:00',3108,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4882,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 18:08:25','janvi','2025-11-27 18:10:21',0),(13217,2526,0,0,4436,'2025-11-27','00:00:00',3109,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4883,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 18:12:30','reception','2025-11-27 18:13:02',0),(13218,2526,0,0,4437,'2025-11-27','00:00:00',3110,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4884,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-27 18:14:32','manshi','2025-11-27 18:31:16',0),(13219,2526,0,0,4438,'2025-11-27','00:00:00',3111,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4887,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-27 18:16:02','manshi','2025-11-27 18:54:18',0),(13220,2526,0,0,4439,'2025-11-27','00:00:00',2245,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4885,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-27 18:16:51','manshi','2025-11-27 18:17:14',0),(13221,2526,0,0,4440,'2025-11-27','00:00:00',3112,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4886,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 18:17:05','reception','2025-11-27 18:17:21',0),(13222,2526,0,0,4442,'2025-11-27','00:00:00',3113,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4888,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-27 18:19:56','manshi','2025-11-27 18:59:26',0),(13223,2526,0,0,4424,'2025-11-27','18:20:58',1976,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4889,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 18:20:58','janvi','2025-11-27 18:20:58',0),(13224,2526,0,0,4425,'2025-11-27','18:21:24',3104,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,88,'',0,0,'','','','','',2526,'H','O',4890,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'drashti','2025-11-27 18:21:24','drashti','2025-11-27 18:21:24',0),(13225,2526,0,0,4426,'2025-11-27','18:21:52',3105,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,89,'',0,0,'','','','','',2526,'H','O',4891,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'drashti','2025-11-27 18:21:52','drashti','2025-11-27 18:21:52',0),(13226,2526,0,0,4444,'2025-11-27','00:00:00',270,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4893,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 18:22:47','drashti','2025-11-27 18:23:48',0),(13227,2526,0,0,4430,'2025-11-27','18:23:23',1968,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4892,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 18:23:23','janvi','2025-11-27 18:23:23',0),(13228,2526,0,0,4445,'2025-11-27','00:00:00',3114,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',4895,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 18:25:08','drashti','2025-11-27 18:25:48',0),(13229,2526,0,0,4433,'2025-11-27','18:25:31',3107,0,'XRY','XRY0292','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',4894,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-27 18:25:31','manshi','2025-11-27 18:25:31',0),(13230,2526,0,0,4446,'2025-11-27','00:00:00',3115,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4896,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 18:26:59','drashti','2025-11-27 18:50:04',0),(13231,2526,0,0,4447,'2025-11-27','00:00:00',3116,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4897,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 18:29:02','reception','2025-11-27 18:29:50',0),(13232,2526,0,0,4448,'2025-11-27','18:30:18',2817,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4898,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-27 18:30:18','manshi','2025-11-27 18:30:18',0),(13233,2526,0,0,4449,'2025-11-27','00:00:00',3117,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4900,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 18:30:25','drashti','2025-11-27 18:31:36',0),(13234,2526,0,0,4450,'2025-11-27','00:00:00',3118,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',4901,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 18:31:43','janvi','2025-11-27 18:32:23',0),(13235,2526,0,0,4451,'2025-11-27','00:00:00',1071,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4903,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 18:32:26','drashti','2025-11-27 18:56:14',0),(13236,2526,0,0,4443,'2025-11-27','18:33:03',2247,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4902,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 18:33:03','janvi','2025-11-27 18:33:03',0),(13237,2526,0,0,4452,'2025-11-27','00:00:00',3119,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',4904,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 18:34:30','drashti','2025-11-27 18:35:17',0),(13238,2526,0,0,4453,'2025-11-27','00:00:00',2090,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',4905,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 18:36:16','drashti','2025-11-27 18:36:45',0),(13239,2526,0,0,4454,'2025-11-27','00:00:00',494,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 18:38:22','drashti','2025-11-27 06:08:22',0),(13240,2526,0,0,4455,'2025-11-27','00:00:00',3120,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4906,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 18:44:51','janvi','2025-11-27 18:46:45',0),(13241,2526,0,0,4436,'2025-11-27','18:47:24',3109,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4907,1,367,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 18:47:24','reception','2025-11-27 18:47:24',0),(13242,2526,0,0,4436,'2025-11-27','18:47:24',3109,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4907,2,367,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 18:47:24','reception','2025-11-27 18:47:24',0),(13243,2526,0,0,4436,'2025-11-27','18:47:24',3109,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4907,3,367,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 18:47:24','reception','2025-11-27 18:47:24',0),(13244,2526,0,0,4456,'2025-11-27','18:47:43',2118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4908,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 18:47:43','janvi','2025-11-27 18:47:43',0),(13245,2526,0,0,4438,'2025-11-27','18:53:40',3111,0,'XRY','XRY0254','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',4910,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-27 18:53:40','manshi','2025-11-27 18:53:40',0),(13246,2526,0,0,4457,'2025-11-27','00:00:00',3121,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',4915,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 18:55:09','janvi','2025-11-27 18:59:47',0),(13247,2526,0,0,4458,'2025-11-27','00:00:00',3122,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4913,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 18:57:01','drashti','2025-11-27 18:58:13',0),(13248,2526,0,0,4459,'2025-11-27','00:00:00',3123,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4916,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 19:00:24','reception','2025-11-27 19:00:55',0),(13249,2526,0,0,4460,'2025-11-27','00:00:00',3124,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',4917,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 19:00:54','drashti','2025-11-27 19:01:38',0),(13250,2526,0,0,4461,'2025-11-27','00:00:00',565,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4918,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 19:01:34','reception','2025-11-27 19:01:50',0),(13251,2526,0,0,4439,'2025-11-27','19:04:20',2245,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',4919,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-27 19:04:20','manshi','2025-11-27 19:04:20',0),(13252,2526,0,0,4462,'2025-11-27','00:00:00',435,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-27 19:05:07','manshi','2025-11-27 06:35:07',0),(13253,2526,0,0,4463,'2025-11-27','00:00:00',3125,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4920,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 19:08:12','drashti','2025-11-27 19:09:20',0),(13254,2526,0,0,4464,'2025-11-27','19:10:01',3119,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',4921,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-27 19:10:01','reception','2025-11-27 19:10:01',0),(13255,2526,0,0,4161,'2025-11-26','19:21:00',2711,198,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 19:22:54','riya','2025-11-27 19:29:39',0),(13256,2526,0,0,4161,'2025-11-26','19:22:00',2711,198,'ROOM','ROOM0008','H','N',4.00,100,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 19:22:54','riya','2025-11-27 19:29:39',0),(13257,2526,0,0,4161,'2025-11-27','19:22:00',2711,198,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 19:22:54','','0000-00-00 00:00:00',0),(13258,2526,0,0,4465,'2025-11-27','19:26:20',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4922,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-27 19:26:20','janvi','2025-11-27 19:26:20',0),(13259,2526,0,0,4265,'2025-11-27','19:29:00',2903,202,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',182,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 19:32:31','','0000-00-00 00:00:00',0),(13260,2526,0,0,4265,'2025-11-26','19:38:00',2903,202,'SURG','SURG0014','H','N',1.00,30000,30000,'A',0,0,0.00,0.00,30000.00,30000,3,0,0,'',0,0,'','','','','',2526,'H','I',182,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 19:40:15','riya','2025-11-27 19:46:28',0),(13261,2526,0,0,4265,'2025-11-26','19:38:00',2903,202,'SURG','SURG0015','H','N',1.00,9800,9800,'A',0,0,0.00,0.00,9800.00,9800,3,0,0,'',0,0,'','','','','',2526,'H','I',182,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 19:40:15','riya','2025-11-27 19:46:28',0),(13262,2526,0,0,4466,'2025-11-27','00:00:00',3126,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4923,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 20:13:58','drashti','2025-11-27 20:14:28',0),(13263,2526,0,0,4161,'2025-11-25','20:22:00',2711,198,'SURG','SURG0014','H','N',1.00,50000,50000,'P',0,0,0.00,0.00,50000.00,50000,3,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 20:23:32','riya','2025-11-27 20:31:22',0),(13264,2526,0,0,4161,'2025-11-25','20:22:00',2711,198,'SURG','SURG0015','H','N',1.00,16650,16650,'P',0,0,0.00,0.00,16650.00,16650,3,0,0,'',0,0,'','','','','',2526,'H','I',183,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-27 20:23:32','riya','2025-11-27 20:32:25',0),(13265,2526,0,0,4467,'2025-11-27','00:00:00',1375,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4924,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 20:38:42','drashti','2025-11-27 20:39:46',0),(13266,2526,0,0,4468,'2025-11-27','00:00:00',3127,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',4925,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 20:41:29','drashti','2025-11-27 20:45:50',0),(13267,2526,0,0,4468,'2025-11-27','20:45:50',3127,0,'OPWD','OPWD0023','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,2,0,0,'',0,0,'','','','','',2526,'H','O',4925,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 20:45:50','drashti','2025-11-27 20:45:50',0),(13268,2526,0,0,4468,'2025-11-27','20:45:50',3127,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,2,0,0,'',0,0,'','','','','',2526,'H','O',4925,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-27 20:45:50','drashti','2025-11-27 20:45:50',0),(13269,2526,0,0,4469,'2025-11-27','23:00:00',407,212,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',185,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 23:20:25','vishal','2025-11-28 02:29:16',0),(13270,2526,0,0,4469,'2025-11-27','23:00:00',407,212,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',185,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 23:20:25','vishal','2025-11-28 02:29:16',0),(13271,2526,0,0,4469,'2025-11-27','23:00:00',407,212,'ROOM','ROOM0009','H','N',0.50,5500,2750,'A',0,0,0.00,0.00,2750.00,2750,9999,0,0,'',0,0,'','212','','','',2526,'H','I',185,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 10:50:25','vishal','2025-11-28 02:35:29',0),(13272,2526,0,0,4469,'2025-11-27','23:00:00',407,212,'AECO','AECO0008','H','N',0.50,800,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','212','','','',2526,'H','I',185,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 10:50:25','vishal','2025-11-28 02:35:29',0),(13273,2526,0,0,4469,'2025-11-27','23:00:00',407,212,'CARE','CARE0001','H','N',0.50,600,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','212','','','',2526,'H','I',185,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 10:50:25','vishal','2025-11-28 02:35:29',0),(13274,2526,0,0,4469,'2025-11-27','23:00:00',407,212,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 10:50:25','vishal','2025-11-28 02:29:16',0),(13275,2526,0,0,4469,'2025-11-27','23:00:00',407,212,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 10:50:25','vishal','2025-11-28 02:29:16',0),(13276,2526,0,0,4469,'2025-11-27','02:26:00',407,212,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',185,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 02:29:16','vishal','2025-11-28 02:30:10',0),(13277,2526,0,0,4469,'2025-11-28','02:26:00',407,212,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',185,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 02:29:16','','0000-00-00 00:00:00',0),(13278,2526,0,0,4469,'2025-11-28','02:26:00',407,212,'WPRC','WPRC0088','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,4,0,0,'',0,0,'','','','','',2526,'H','I',185,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 02:29:16','','0000-00-00 00:00:00',0),(13279,2526,0,0,4469,'2025-11-28','02:27:00',407,212,'WPRC','WPRC0101','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',185,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 02:29:16','','0000-00-00 00:00:00',0),(13280,2526,0,0,4469,'2025-11-28','02:27:00',407,212,'WPRC','WPRC0086','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',185,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 02:29:16','vishal','2025-11-28 02:38:32',0),(13281,2526,0,0,4469,'2025-11-28','02:28:00',407,212,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',185,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 02:29:16','','0000-00-00 00:00:00',0),(13282,2526,0,0,4469,'2025-11-27','02:28:00',407,212,'WPRC','WPRC0089','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',185,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 02:29:16','vishal','2025-11-28 02:30:10',0),(13283,2526,0,0,4469,'2025-11-28','02:34:00',407,212,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',185,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 02:35:29','','0000-00-00 00:00:00',0),(13284,2526,0,0,4470,'2025-11-28','00:00:00',3128,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 08:49:16','reception','2025-11-27 20:19:16',0),(13285,2526,0,0,4470,'2025-11-28','08:52:37',3128,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',4926,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-28 08:52:37','reception','2025-11-28 08:52:37',0),(13286,2526,0,0,4470,'2025-11-28','08:52:37',3128,0,'OPWD','OPWD0015','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,4,0,0,'',0,0,'','','','','',2526,'H','O',4926,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-28 08:52:37','reception','2025-11-28 08:52:37',0),(13287,2526,0,0,4470,'2025-11-28','08:52:37',3128,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,90,'',0,0,'','','','','',2526,'H','O',4926,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-28 08:52:37','reception','2025-11-28 08:52:37',0),(13288,2526,0,0,4470,'2025-11-28','08:52:37',3128,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4926,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-11-28 08:52:37','reception','2025-11-28 08:52:37',0),(13289,2526,0,0,4472,'2025-11-28','00:00:00',3129,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4927,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-28 08:55:57','urvashi','2025-11-28 08:56:53',0),(13290,2526,0,0,4471,'2025-11-28','09:04:20',1375,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',4928,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 09:04:19','reception','2025-11-28 09:04:19',0),(13291,2526,0,0,4471,'2025-11-28','09:04:20',1375,0,'AECO','AECO0001','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',4928,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 09:04:19','reception','2025-11-28 09:04:19',0),(13292,2526,0,0,4473,'2025-11-28','00:00:00',3130,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',4929,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 09:21:22','reception','2025-11-28 09:22:20',0),(13293,2526,0,0,4474,'2025-11-28','00:00:00',10,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4930,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 09:45:35','reception','2025-11-28 09:45:51',0),(13294,2526,0,0,4475,'2025-11-28','00:00:00',3131,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4931,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 10:04:33','reception','2025-11-28 10:05:17',0),(13295,2526,0,0,4476,'2025-11-28','00:00:00',3132,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4933,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 10:06:31','reception','2025-11-28 10:09:26',0),(13296,2526,0,0,4477,'2025-11-28','00:00:00',2012,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4932,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 10:07:02','janvi','2025-11-28 10:07:42',0),(13297,2526,0,0,4478,'2025-11-28','00:00:00',3133,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4934,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 10:13:31','manshi','2025-11-28 10:14:01',0),(13298,2526,0,0,4479,'2025-11-28','00:00:00',3134,0,'PKG','CASE','H','N',1.00,0,0,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',4935,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 10:15:29','janvi','2025-11-28 10:20:17',0),(13299,2526,0,0,4480,'2025-11-28','00:00:00',3135,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4936,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 10:16:40','reception','2025-11-28 10:17:02',0),(13300,2526,0,0,4473,'2025-11-28','00:00:00',3130,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4938,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 10:17:25','drashti','2025-11-28 10:17:44',0),(13301,2526,0,0,4479,'2025-11-28','00:00:00',3134,0,'PKG','CASE','H','N',1.00,0,0,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4940,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 10:19:07','janvi','2025-11-28 10:19:16',0),(13302,2526,0,0,4473,'2025-11-28','00:00:00',3130,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',4943,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 10:25:12','drashti','2025-11-28 10:25:23',0),(13303,2526,0,0,4479,'2025-11-28','00:00:00',3134,0,'PKG','CASE','H','N',1.00,0,0,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',4945,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 10:26:16','drashti','2025-11-28 10:29:44',0),(13304,2526,0,0,4479,'2025-11-28','00:00:00',3134,0,'PKG','CASE','H','N',1.00,0,0,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4947,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 10:26:52','drashti','2025-11-28 10:28:04',0),(13305,2526,0,0,4481,'2025-11-28','00:00:00',3136,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4949,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 10:28:14','reception','2025-11-28 10:28:45',0),(13306,2526,0,0,4483,'2025-11-28','00:00:00',2768,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4951,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 10:30:56','janvi','2025-11-28 10:31:05',0),(13307,2526,0,0,4484,'2025-11-28','00:00:00',3137,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4952,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 10:32:14','janvi','2025-11-28 10:32:48',0),(13308,2526,0,0,4485,'2025-11-28','00:00:00',2092,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4953,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 10:41:33','janvi','2025-11-28 10:42:09',0),(13309,2526,0,0,4486,'2025-11-28','00:00:00',3138,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',4954,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 10:42:13','drashti','2025-11-28 10:43:03',0),(13310,2526,0,0,4487,'2025-11-28','10:45:18',2290,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4955,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 10:45:18','janvi','2025-11-28 10:45:18',0),(13311,2526,0,0,4488,'2025-11-28','00:00:00',1468,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4956,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 10:46:03','reception','2025-11-28 10:46:30',0),(13312,2526,0,0,4482,'2025-11-28','10:52:59',2874,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4957,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 10:52:59','janvi','2025-11-28 10:52:59',0),(13313,2526,0,0,4245,'2025-11-27','19:30:00',0,200,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',186,21,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 22:24:26','vishal','2025-11-28 10:56:29',0),(13314,2526,0,0,4245,'2025-11-27','19:30:00',0,200,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',186,22,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 22:24:26','vishal','2025-11-28 10:56:29',0),(13315,2526,0,0,4245,'2025-11-27','19:30:00',0,200,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',186,23,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 22:24:26','vishal','2025-11-28 10:56:29',0),(13316,2526,0,0,4245,'2025-11-27','19:30:00',0,200,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','406','','','',2526,'H','I',186,26,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 22:24:26','vishal','2025-11-28 11:02:10',0),(13317,2526,0,0,4245,'2025-11-27','19:30:00',0,200,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','406','','','',2526,'H','I',186,27,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 22:24:26','vishal','2025-11-28 11:02:10',0),(13318,2526,0,0,4245,'2025-11-27','10:54:00',0,200,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',186,26,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 10:56:29','','0000-00-00 00:00:00',0),(13319,2526,0,0,4245,'2025-11-28','10:54:00',0,200,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',186,27,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 10:56:29','','0000-00-00 00:00:00',0),(13320,2526,0,0,4245,'2025-11-27','10:56:00',0,200,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',186,28,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 10:56:29','','0000-00-00 00:00:00',0),(13321,2526,0,0,4490,'2025-11-28','11:01:36',3021,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',4958,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 11:01:36','janvi','2025-11-28 11:01:36',0),(13322,2526,0,0,4245,'2025-11-28','11:01:00',0,200,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',186,29,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 11:02:10','','0000-00-00 00:00:00',0),(13323,2526,0,0,4245,'2025-11-27','11:02:00',0,200,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',186,30,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 11:02:58','','0000-00-00 00:00:00',0),(13324,2526,0,0,4245,'2025-11-27','11:02:00',0,200,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',186,31,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 11:02:58','','0000-00-00 00:00:00',0),(13325,2526,0,0,4491,'2025-11-28','00:00:00',2559,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4959,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:03:58','reception','2025-11-28 11:04:34',0),(13326,2526,0,0,4492,'2025-11-28','00:00:00',3139,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',4961,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 11:05:58','janvi','2025-11-28 11:06:55',0),(13327,2526,0,0,4493,'2025-11-28','00:00:00',3140,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',4960,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:06:45','reception','2025-11-28 11:06:55',0),(13328,2526,0,0,4494,'2025-11-28','00:00:00',3141,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4962,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:13:48','reception','2025-11-28 11:14:39',0),(13329,2526,0,0,4495,'2025-11-28','00:00:00',3142,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4963,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:18:28','reception','2025-11-28 11:19:00',0),(13330,2526,0,0,4496,'2025-11-28','00:00:00',594,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4964,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 11:19:06','drashti','2025-11-28 11:19:35',0),(13331,2526,0,0,4497,'2025-11-28','00:00:00',1224,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4965,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 11:20:47','manshi','2025-11-28 11:21:08',0),(13332,2526,0,0,4489,'2025-11-28','11:23:00',3096,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4966,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:23:00','reception','2025-11-28 11:23:00',0),(13333,2526,0,0,4489,'2025-11-28','11:23:00',3096,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4966,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:23:00','reception','2025-11-28 11:23:00',0),(13334,2526,0,0,4489,'2025-11-28','11:23:00',3096,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4966,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:23:00','reception','2025-11-28 11:23:00',0),(13335,2526,0,0,4498,'2025-11-28','00:00:00',1258,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4967,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 11:23:06','drashti','2025-11-28 11:23:29',0),(13336,2526,0,0,4499,'2025-11-28','00:00:00',3143,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',4968,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 11:24:37','manshi','2025-11-28 11:25:28',0),(13337,2526,0,0,4359,'2025-11-28','02:00:00',0,209,'ROOM','ROOM0009','H','N',0.50,5500,2750,'A',0,0,0.00,0.00,2750.00,2750,9999,0,0,'',0,0,'','210','','','',2526,'H','I',192,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 22:54:44','vishal','2025-11-28 12:12:25',0),(13338,2526,0,0,4359,'2025-11-28','02:00:00',0,209,'AECO','AECO0008','H','N',0.50,800,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','210','','','',2526,'H','I',192,22,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 22:54:44','vishal','2025-11-30 14:15:54',0),(13339,2526,0,0,4359,'2025-11-28','02:00:00',0,209,'CARE','CARE0001','H','N',0.50,600,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','210','','','',2526,'H','I',192,23,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 22:54:44','vishal','2025-11-30 14:15:54',0),(13340,2526,0,0,4359,'2025-11-28','02:00:00',0,209,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',192,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 22:54:44','vishal','2025-11-28 11:50:49',0),(13341,2526,0,0,4359,'2025-11-28','02:00:00',0,209,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','210','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 22:54:44','vishal','2025-11-28 11:50:49',0),(13342,2526,0,0,4499,'2025-11-28','11:25:28',3143,0,'XRY','XRY0100','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',4968,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 11:25:28','manshi','2025-11-28 11:25:28',0),(13343,2526,0,0,4501,'2025-11-28','00:00:00',758,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4969,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:27:40','reception','2025-11-28 11:28:11',0),(13344,2526,0,0,4502,'2025-11-28','00:00:00',3144,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4971,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 11:27:53','drashti','2025-11-28 11:29:37',0),(13345,2526,0,0,4503,'2025-11-28','00:00:00',3145,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4970,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 11:28:25','janvi','2025-11-28 11:28:50',0),(13346,2526,0,0,4504,'2025-11-28','00:00:00',3146,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',4972,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 11:30:39','drashti','2025-11-28 11:30:59',0),(13347,2526,0,0,4505,'2025-11-28','00:00:00',1715,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4973,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 11:31:26','janvi','2025-11-28 11:31:35',0),(13348,2526,0,0,4500,'2025-11-28','11:32:14',2883,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',4974,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 11:32:14','janvi','2025-11-28 11:32:14',0),(13349,2526,0,0,4473,'2025-11-28','11:33:21',3130,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',4975,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 11:33:21','drashti','2025-11-28 11:33:21',0),(13350,2526,0,0,4506,'2025-11-28','00:00:00',3147,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4976,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:34:11','reception','2025-11-28 11:34:35',0),(13351,2526,0,0,4507,'2025-11-28','00:00:00',2110,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4977,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:35:07','reception','2025-11-28 11:36:12',0),(13352,2526,0,0,4508,'2025-11-28','00:00:00',2636,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4978,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 11:35:23','drashti','2025-11-28 11:36:13',0),(13353,2526,0,0,4509,'2025-11-28','00:00:00',1367,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',4979,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:37:11','reception','2025-11-28 11:37:43',0),(13354,2526,0,0,4510,'2025-11-28','00:00:00',3148,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4983,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 11:38:21','janvi','2025-11-28 11:41:23',0),(13355,2526,0,0,4497,'2025-11-28','11:38:24',1224,0,'XRY','XRY0449','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',4980,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 11:38:24','manshi','2025-11-28 11:38:24',0),(13356,2526,0,0,4511,'2025-11-28','00:00:00',3149,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4984,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 11:38:51','drashti','2025-11-28 11:41:34',0),(13357,2526,0,0,4512,'2025-11-28','00:00:00',3150,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',4981,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:40:01','reception','2025-11-28 11:40:22',0),(13358,2526,0,0,4513,'2025-11-28','00:00:00',3151,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',4982,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 11:40:22','janvi','2025-11-28 11:41:06',0),(13359,2526,0,0,4514,'2025-11-28','00:00:00',3152,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4985,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 11:42:46','janvi','2025-11-28 11:43:24',0),(13360,2526,0,0,4409,'2025-11-27','11:41:00',0,210,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',188,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 11:44:02','','0000-00-00 00:00:00',0),(13361,2526,0,0,4409,'2025-11-28','11:41:00',0,210,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',188,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 11:44:02','vishal','2025-11-29 09:39:24',0),(13362,2526,0,0,4409,'2025-11-27','11:42:00',0,210,'WPRC','WPRC0090','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',188,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 11:44:02','','0000-00-00 00:00:00',0),(13363,2526,0,0,4480,'2025-11-28','11:44:13',3135,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4986,1,58,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:44:13','reception','2025-11-28 11:44:13',0),(13364,2526,0,0,4480,'2025-11-28','11:44:13',3135,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4986,2,254,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:44:13','reception','2025-11-28 11:44:13',0),(13365,2526,0,0,4480,'2025-11-28','11:44:13',3135,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4986,3,288,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:44:13','reception','2025-11-28 11:44:13',0),(13366,2526,0,0,4516,'2025-11-28','00:00:00',3153,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4992,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 11:46:25','janvi','2025-11-28 11:55:19',0),(13367,2526,0,0,4517,'2025-11-28','00:00:00',3154,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4987,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:47:51','reception','2025-11-28 11:48:15',0),(13368,2526,0,0,4518,'2025-11-28','00:00:00',3155,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4989,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:49:03','reception','2025-11-28 11:51:59',0),(13369,2526,0,0,4519,'2025-11-28','00:00:00',3156,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',4988,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:50:48','reception','2025-11-28 11:51:43',0),(13370,2526,0,0,4359,'2025-11-27','11:50:00',0,209,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,231,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 11:50:49','','0000-00-00 00:00:00',0),(13371,2526,0,0,4359,'2025-11-28','11:50:00',0,209,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,231,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 11:50:49','','0000-00-00 00:00:00',0),(13372,2526,0,0,4520,'2025-11-28','00:00:00',3157,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',4993,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 11:50:56','reception','2025-11-28 11:57:20',0),(13373,2526,0,0,4521,'2025-11-28','00:00:00',3158,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4990,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 11:52:17','janvi','2025-11-28 11:54:46',0),(13374,2526,0,0,4522,'2025-11-28','00:00:00',3159,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',4991,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 11:54:17','reception','2025-11-28 11:54:56',0),(13375,2526,0,0,4502,'2025-11-28','11:58:38',3144,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,91,'',0,0,'','','','','',2526,'H','O',4994,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-11-28 11:58:38','janvi','2025-11-28 11:58:38',0),(13376,2526,0,0,4523,'2025-11-28','00:00:00',3160,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',4995,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 12:00:15','manshi','2025-11-28 12:00:26',0),(13377,2526,0,0,4481,'2025-11-28','12:02:37',3136,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4996,1,67,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 12:02:37','reception','2025-11-28 12:02:37',0),(13378,2526,0,0,4481,'2025-11-28','12:02:37',3136,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',4996,2,296,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 12:02:37','reception','2025-11-28 12:02:37',0),(13379,2526,0,0,4481,'2025-11-28','12:02:37',3136,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',4996,3,337,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 12:02:37','reception','2025-11-28 12:02:37',0),(13380,2526,0,0,4479,'2025-11-28','12:05:48',3134,0,'PKG','CASE','H','N',1.00,750,750,'P',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',4997,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 12:05:48','drashti','2025-11-28 12:05:48',0),(13381,2526,0,0,4524,'2025-11-28','00:00:00',3161,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',4998,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 12:06:32','reception','2025-11-28 12:07:18',0),(13382,2526,0,0,4473,'2025-11-28','12:07:21',3130,0,'PKG','CASE','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',4999,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 12:07:21','drashti','2025-11-28 12:07:21',0),(13383,2526,0,0,4473,'2025-11-28','12:07:21',3130,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',4999,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 12:07:21','drashti','2025-11-28 12:07:21',0),(13384,2526,0,0,4525,'2025-11-28','00:00:00',3162,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5001,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 12:10:46','reception','2025-11-28 12:11:11',0),(13385,2526,0,0,4510,'2025-11-28','12:11:09',3148,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',5000,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 12:11:09','drashti','2025-11-28 12:11:09',0),(13386,2526,0,0,4359,'2025-11-28','12:12:00',0,209,'ROOM','ROOM0009','H','N',0.50,3200,1600,'P',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 12:13:18','','0000-00-00 00:00:00',0),(13387,2526,0,0,4359,'2025-11-28','12:12:00',0,209,'AECO','AECO0008','H','N',0.50,400,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',192,27,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 12:13:18','vishal','2025-11-30 14:15:54',0),(13388,2526,0,0,4359,'2025-11-28','12:12:00',0,209,'CARE','CARE0001','H','N',0.50,200,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',192,28,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 12:13:18','vishal','2025-11-30 14:15:54',0),(13389,2526,0,0,4359,'2025-11-28','12:12:00',0,209,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 12:13:18','','0000-00-00 00:00:00',0),(13390,2526,0,0,4475,'2025-11-28','12:15:27',3131,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5002,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 12:15:27','reception','2025-11-28 12:15:27',0),(13391,2526,0,0,4475,'2025-11-28','12:15:27',3131,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5002,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 12:15:27','reception','2025-11-28 12:15:27',0),(13392,2526,0,0,4475,'2025-11-28','12:15:27',3131,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5002,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 12:15:27','reception','2025-11-28 12:15:27',0),(13393,2526,0,0,4526,'2025-11-28','00:00:00',3163,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5003,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 12:16:26','drashti','2025-11-28 12:18:15',0),(13394,2526,0,0,4527,'2025-11-28','00:00:00',3164,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5004,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 12:18:59','reception','2025-11-28 12:19:52',0),(13395,2526,0,0,3764,'2025-11-28','10:00:00',0,178,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,91,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 23:49:53','vishal','2025-11-28 12:20:10',0),(13396,2526,0,0,3764,'2025-11-28','10:00:00',0,178,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,92,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 23:49:53','vishal','2025-11-28 12:20:10',0),(13397,2526,0,0,3764,'2025-11-28','10:00:00',0,178,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,93,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 23:49:53','vishal','2025-11-28 12:20:10',0),(13398,2526,0,0,3764,'2025-11-28','10:00:00',0,178,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',220,96,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 23:49:53','vishal','2025-11-28 16:09:31',0),(13399,2526,0,0,3764,'2025-11-28','10:00:00',0,178,'DRC','DRC0019','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',220,97,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-27 23:49:53','vishal','2025-11-28 16:09:31',0),(13400,2526,0,0,4528,'2025-11-28','00:00:00',836,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5005,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 12:31:53','manshi','2025-11-28 12:32:31',0),(13401,2526,0,0,4159,'2025-11-27','22:30:00',1388,197,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',187,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 00:05:54','vishal','2025-11-28 12:37:40',0),(13402,2526,0,0,4159,'2025-11-27','22:30:00',1388,197,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',187,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 00:05:54','vishal','2025-11-28 12:37:40',0),(13403,2526,0,0,4159,'2025-11-27','22:30:00',1388,197,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','401','','','',2526,'H','I',187,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 00:05:54','vishal','2025-11-28 12:37:40',0),(13404,2526,0,0,4159,'2025-11-27','22:30:00',1388,197,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','401','','','',2526,'H','I',187,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 00:05:54','vishal','2025-11-28 12:37:40',0),(13405,2526,0,0,4159,'2025-11-27','22:30:00',1388,197,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',187,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 00:05:54','vishal','2025-11-28 12:37:40',0),(13406,2526,0,0,4159,'2025-11-28','12:37:00',1388,197,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','','','','',2526,'H','I',187,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 12:37:40','','0000-00-00 00:00:00',0),(13407,2526,0,0,4159,'2025-11-28','12:38:00',1388,197,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',187,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 12:39:09','','0000-00-00 00:00:00',0),(13408,2526,0,0,4159,'2025-11-28','12:38:00',1388,197,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',187,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 12:39:09','','0000-00-00 00:00:00',0),(13409,2526,0,0,4522,'2025-11-28','12:42:18',3159,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5006,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 12:42:18','reception','2025-11-28 13:57:15',0),(13410,2526,0,0,4522,'2025-11-28','12:42:18',3159,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',5006,2,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 12:42:18','reception','2025-11-28 13:57:15',0),(13411,2526,0,0,4529,'2025-11-28','00:00:00',3165,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5007,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 12:45:05','drashti','2025-11-28 12:46:10',0),(13412,2526,0,0,4530,'2025-11-28','00:00:00',175,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5008,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 12:47:54','drashti','2025-11-28 12:48:37',0),(13413,2526,0,0,4531,'2025-11-28','00:00:00',3166,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5010,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'darshan','2025-11-28 13:34:46','manshi','2025-11-28 13:51:21',0),(13414,2526,0,0,4532,'2025-11-28','00:00:00',1507,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5011,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'darshan','2025-11-28 13:35:40','manshi','2025-11-28 13:52:09',0),(13415,2526,0,0,4506,'2025-11-28','13:50:29',3147,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5009,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 13:50:29','manshi','2025-11-28 13:50:29',0),(13416,2526,0,0,4506,'2025-11-28','13:50:29',3147,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5009,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 13:50:29','manshi','2025-11-28 13:50:29',0),(13417,2526,0,0,4506,'2025-11-28','13:50:29',3147,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5009,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 13:50:29','manshi','2025-11-28 13:50:29',0),(13418,2526,0,0,4531,'2025-11-28','13:54:15',3166,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5012,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 13:54:15','manshi','2025-11-28 13:54:15',0),(13419,2526,0,0,4531,'2025-11-28','13:54:15',3166,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5012,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 13:54:15','manshi','2025-11-28 13:54:15',0),(13420,2526,0,0,4531,'2025-11-28','13:54:15',3166,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5012,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 13:54:15','manshi','2025-11-28 13:54:15',0),(13421,2526,0,0,4526,'2025-11-28','14:02:46',3163,0,'XRY','XRY0184','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',5014,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 14:02:46','reception','2025-11-28 14:02:46',0),(13422,2526,0,0,4517,'2025-11-28','14:10:39',3154,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5015,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 14:10:39','reception','2025-11-28 14:10:39',0),(13423,2526,0,0,4517,'2025-11-28','14:10:39',3154,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5015,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 14:10:39','reception','2025-11-28 14:10:39',0),(13424,2526,0,0,4517,'2025-11-28','14:10:39',3154,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5015,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 14:10:39','reception','2025-11-28 14:10:39',0),(13425,2526,0,0,4533,'2025-11-28','00:00:00',3167,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5016,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 14:22:29','reception','2025-11-28 14:24:11',0),(13426,2526,0,0,4534,'2025-11-28','00:00:00',3168,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5017,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 14:25:23','reception','2025-11-28 14:25:40',0),(13427,2526,0,0,4534,'2025-11-28','14:25:40',3168,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,92,'',0,0,'','','','','',2526,'H','O',5017,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'reception','2025-11-28 14:25:40','reception','2025-11-28 14:25:40',0),(13428,2526,0,0,4535,'2025-11-28','00:00:00',3169,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 15:06:03','reception','2025-11-28 02:36:03',0),(13429,2526,0,0,2879,'2025-11-28','15:30:00',0,146,'ROOM','ROOM0009','H','N',0.50,3200,1600,'A',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:13','riya','2025-12-01 19:41:30',0),(13430,2526,0,0,2879,'2025-11-28','15:30:00',0,146,'AECO','AECO0008','H','N',0.50,400,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:13','riya','2025-12-01 19:41:30',0),(13431,2526,0,0,2879,'2025-11-28','15:30:00',0,146,'CARE','CARE0001','H','N',0.50,200,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:13','riya','2025-12-01 19:41:30',0),(13432,2526,0,0,2879,'2025-11-28','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:13','vishal','2025-11-30 20:00:04',0),(13433,2526,0,0,2879,'2025-11-28','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:13','riya','2025-12-01 19:45:21',0),(13434,2526,0,0,3611,'2025-11-27','17:00:00',0,171,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:14','riya','2025-12-02 16:03:49',0),(13435,2526,0,0,3611,'2025-11-27','17:00:00',0,171,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:14','riya','2025-12-02 16:03:49',0),(13436,2526,0,0,3611,'2025-11-27','17:00:00',0,171,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:14','riya','2025-12-02 16:03:49',0),(13437,2526,0,0,3611,'2025-11-27','17:00:00',0,171,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:14','riya','2025-12-02 16:03:49',0),(13438,2526,0,0,3611,'2025-11-27','17:00:00',0,171,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','209','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:14','riya','2025-12-02 16:03:49',0),(13439,2526,0,0,3861,'2025-11-27','22:40:00',0,179,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:14','vishal','2025-11-30 11:59:40',0),(13440,2526,0,0,3861,'2025-11-27','22:40:00',0,179,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:14','vishal','2025-11-30 11:59:40',0),(13441,2526,0,0,3861,'2025-11-27','22:40:00',0,179,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:14','vishal','2025-11-30 11:59:40',0),(13442,2526,0,0,3861,'2025-11-27','22:40:00',0,179,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:14','vishal','2025-11-30 11:59:40',0),(13443,2526,0,0,3861,'2025-11-27','22:40:00',0,179,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:15','vishal','2025-11-30 11:59:40',0),(13444,2526,0,0,3909,'2025-11-28','15:00:00',0,181,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:15','vishal','2025-11-28 16:24:46',0),(13445,2526,0,0,3909,'2025-11-28','15:00:00',0,181,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:15','vishal','2025-11-28 16:24:46',0),(13446,2526,0,0,3909,'2025-11-28','15:00:00',0,181,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:15','vishal','2025-11-28 16:24:46',0),(13447,2526,0,0,3909,'2025-11-28','15:00:00',0,181,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:15','vishal','2025-11-28 16:24:46',0),(13448,2526,0,0,3909,'2025-11-28','15:00:00',0,181,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:15','vishal','2025-11-28 16:24:46',0),(13449,2526,0,0,4017,'2025-11-28','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,55,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:15','vishal','2025-11-28 15:44:13',0),(13450,2526,0,0,4017,'2025-11-28','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,56,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:15','vishal','2025-11-28 15:44:13',0),(13451,2526,0,0,4017,'2025-11-28','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,57,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:15','vishal','2025-11-28 15:44:13',0),(13452,2526,0,0,4017,'2025-11-28','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,58,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:15','vishal','2025-11-28 15:44:13',0),(13453,2526,0,0,4017,'2025-11-28','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,59,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:15','vishal','2025-11-28 15:44:13',0),(13454,2526,0,0,4047,'2025-11-28','10:30:00',0,191,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:16','riya','2025-12-01 11:44:24',0),(13455,2526,0,0,4047,'2025-11-28','10:30:00',0,191,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:16','riya','2025-12-01 11:44:24',0),(13456,2526,0,0,4047,'2025-11-28','10:30:00',0,191,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:16','riya','2025-12-01 11:44:24',0),(13457,2526,0,0,4047,'2025-11-28','10:30:00',0,191,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:16','riya','2025-12-01 11:44:24',0),(13458,2526,0,0,4047,'2025-11-28','10:30:00',0,191,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:16','riya','2025-12-01 11:44:24',0),(13459,2526,0,0,4266,'2025-11-28','10:15:00',0,203,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:16','vishal','2025-11-28 15:50:09',0),(13460,2526,0,0,4266,'2025-11-28','10:15:00',0,203,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:16','vishal','2025-12-03 19:45:19',0),(13461,2526,0,0,4266,'2025-11-28','10:15:00',0,203,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:16','vishal','2025-12-03 19:45:19',0),(13462,2526,0,0,4266,'2025-11-28','10:15:00',0,203,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:16','vishal','2025-11-28 15:47:52',0),(13463,2526,0,0,4266,'2025-11-28','10:15:00',0,203,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:16','vishal','2025-11-28 15:47:52',0),(13464,2526,0,0,4351,'2025-11-27','21:20:00',0,207,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','D',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:16','riya','2025-11-28 21:54:32',0),(13465,2526,0,0,4351,'2025-11-27','21:20:00',0,207,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','D',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:16','riya','2025-11-28 21:54:32',0),(13466,2526,0,0,4351,'2025-11-27','21:20:00',0,207,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','D',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:16','riya','2025-11-28 21:54:32',0),(13467,2526,0,0,4351,'2025-11-27','21:20:00',0,207,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','D',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:16','riya','2025-11-28 21:54:32',0),(13468,2526,0,0,4351,'2025-11-27','21:20:00',0,207,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','D',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:16','riya','2025-11-28 21:54:32',0),(13469,2526,0,0,4409,'2025-11-28','15:00:00',0,210,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',188,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:17','vishal','2025-11-29 09:38:26',0),(13470,2526,0,0,4409,'2025-11-28','15:00:00',0,210,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',188,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:17','vishal','2025-11-29 09:38:26',0),(13471,2526,0,0,4409,'2025-11-28','15:00:00',0,210,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','411','','','',2526,'H','I',188,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:17','vishal','2025-11-29 09:38:26',0),(13472,2526,0,0,4409,'2025-11-28','15:00:00',0,210,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','411','','','',2526,'H','I',188,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:17','vishal','2025-11-29 09:38:26',0),(13473,2526,0,0,4409,'2025-11-28','15:00:00',0,210,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',188,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 03:05:17','vishal','2025-11-29 09:38:26',0),(13474,2526,0,0,4017,'2025-11-28','15:41:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,60,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:44:13','','0000-00-00 00:00:00',0),(13475,2526,0,0,4017,'2025-11-28','15:41:00',0,187,'WPRC','WPRC0077','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',0,'','',0,61,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:44:13','','0000-00-00 00:00:00',0),(13476,2526,0,0,4017,'2025-11-23','15:42:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,62,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:44:13','','0000-00-00 00:00:00',0),(13477,2526,0,0,4017,'2025-11-24','15:42:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,63,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:44:13','','0000-00-00 00:00:00',0),(13478,2526,0,0,4017,'2025-11-25','15:42:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,64,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:44:13','','0000-00-00 00:00:00',0),(13479,2526,0,0,4017,'2025-11-26','15:42:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,65,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:44:13','','0000-00-00 00:00:00',0),(13480,2526,0,0,4017,'2025-11-27','15:42:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,66,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:44:13','','0000-00-00 00:00:00',0),(13481,2526,0,0,4017,'2025-11-28','15:42:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,67,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:44:13','','0000-00-00 00:00:00',0),(13482,2526,0,0,4017,'2025-11-28','15:43:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,68,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:44:13','','0000-00-00 00:00:00',0),(13483,2526,0,0,4017,'2025-11-28','15:43:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,69,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:44:13','','0000-00-00 00:00:00',0),(13484,2526,0,0,4266,'2025-11-28','15:45:00',0,203,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:47:52','','0000-00-00 00:00:00',0),(13485,2526,0,0,4266,'2025-11-26','15:46:00',0,203,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:47:52','','0000-00-00 00:00:00',0),(13486,2526,0,0,4266,'2025-11-27','15:46:00',0,203,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:47:52','','0000-00-00 00:00:00',0),(13487,2526,0,0,4266,'2025-11-28','15:46:00',0,203,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:47:52','','0000-00-00 00:00:00',0),(13488,2526,0,0,4266,'2025-11-28','15:46:00',0,203,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:47:52','','0000-00-00 00:00:00',0),(13489,2526,0,0,4266,'2025-11-27','15:48:00',0,203,'WPRC','WPRC0118','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:49:26','','0000-00-00 00:00:00',0),(13490,2526,0,0,4266,'2025-11-28','15:48:00',0,203,'WPRC','WPRC0118','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:49:26','','0000-00-00 00:00:00',0),(13491,2526,0,0,4266,'2025-11-28','15:49:00',0,203,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,36,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:49:26','vishal','2025-11-28 15:50:09',0),(13492,2526,0,0,4266,'2025-11-28','15:49:00',0,203,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:49:26','vishal','2025-12-03 19:45:19',0),(13493,2526,0,0,4266,'2025-11-28','15:49:00',0,203,'ROOM','ROOM0004','H','N',3.00,500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 15:50:09','vishal','2025-12-03 19:45:19',0),(13494,2526,0,0,3764,'2025-11-27','16:05:00',0,178,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,91,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:06:19','vishal','2025-11-28 16:09:31',0),(13495,2526,0,0,3764,'2025-11-28','16:05:00',0,178,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,97,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:06:19','','0000-00-00 00:00:00',0),(13496,2526,0,0,3764,'2025-11-27','16:05:00',0,178,'WPRC','WPRC0080','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,92,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:06:19','vishal','2025-11-28 16:09:31',0),(13497,2526,0,0,3764,'2025-11-28','16:06:00',0,178,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,99,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:09:31','','0000-00-00 00:00:00',0),(13498,2526,0,0,3764,'2025-11-28','16:08:00',0,178,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',220,100,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:09:31','','0000-00-00 00:00:00',0),(13499,2526,0,0,3764,'2025-11-28','16:08:00',0,178,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',220,101,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:09:31','','0000-00-00 00:00:00',0),(13500,2526,0,0,4536,'2025-11-28','00:00:00',3170,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5018,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 16:19:49','reception','2025-11-28 16:20:45',0),(13501,2526,0,0,3909,'2025-11-27','16:10:00',0,181,'WPRC','WPRC0080','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:24:12','vishal','2025-11-28 16:24:46',0),(13502,2526,0,0,3909,'2025-11-28','16:10:00',0,181,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:24:12','','0000-00-00 00:00:00',0),(13503,2526,0,0,3909,'2025-11-27','16:11:00',0,181,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:24:12','vishal','2025-11-28 16:24:46',0),(13504,2526,0,0,3909,'2025-11-28','16:11:00',0,181,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:24:12','','0000-00-00 00:00:00',0),(13505,2526,0,0,3909,'2025-11-27','16:12:00',0,181,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:24:12','','0000-00-00 00:00:00',0),(13506,2526,0,0,3909,'2025-11-28','16:12:00',0,181,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:24:12','','0000-00-00 00:00:00',0),(13507,2526,0,0,3909,'2025-11-24','16:13:00',0,181,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:24:12','riya','2025-12-03 16:39:44',0),(13508,2526,0,0,3909,'2025-11-25','16:13:00',0,181,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:24:12','','0000-00-00 00:00:00',0),(13509,2526,0,0,3909,'2025-11-26','16:13:00',0,181,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:24:12','','0000-00-00 00:00:00',0),(13510,2526,0,0,3909,'2025-11-27','16:13:00',0,181,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:24:12','','0000-00-00 00:00:00',0),(13511,2526,0,0,3909,'2025-11-28','16:13:00',0,181,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:24:12','','0000-00-00 00:00:00',0),(13512,2526,0,0,4537,'2025-11-28','16:29:27',3162,0,'OPWD','OPWD0035','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,2,0,0,'',0,0,'','','','','',2526,'H','O',5019,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 16:29:27','reception','2025-11-28 16:29:27',0),(13513,2526,0,0,2879,'2025-11-28','16:26:00',0,146,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:30:03','riya','2025-12-01 19:41:30',0),(13514,2526,0,0,2879,'2025-11-28','16:26:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:30:03','riya','2025-12-01 19:41:30',0),(13515,2526,0,0,2879,'2025-11-28','16:27:00',0,146,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:30:03','riya','2025-12-01 19:41:30',0),(13516,2526,0,0,2879,'2025-11-28','16:27:00',0,146,'DRC','DRC0020','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,187,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:30:03','vishal','2025-11-30 20:07:24',0),(13517,2526,0,0,2879,'2025-11-25','16:28:00',0,146,'DRC','DRC0020','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,187,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:30:03','riya','2025-12-01 19:45:21',0),(13518,2526,0,0,2879,'2025-11-26','16:29:00',0,146,'DRC','DRC0020','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,187,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:30:03','vishal','2025-11-30 20:07:24',0),(13519,2526,0,0,2879,'2025-11-28','16:30:00',0,146,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:31:27','vishal','2025-11-30 20:07:24',0),(13520,2526,0,0,4538,'2025-11-28','00:00:00',3171,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 16:31:29','reception','2025-11-28 04:01:29',0),(13521,2526,0,0,4539,'2025-11-28','00:00:00',1186,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5020,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 16:32:04','reception','2025-11-28 16:32:26',0),(13522,2526,0,0,4540,'2025-11-28','00:00:00',2323,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 16:37:37','reception','2025-11-28 04:07:37',0),(13523,2526,0,0,4417,'2025-11-27','16:31:00',0,211,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',189,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:38:07','vishal','2025-11-28 16:38:31',0),(13524,2526,0,0,4417,'2025-11-27','16:37:00',0,211,'WPRC','WPRC0090','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',189,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 16:38:07','vishal','2025-11-28 16:38:31',0),(13525,2526,0,0,4541,'2025-11-28','00:00:00',3172,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 16:45:07','reception','2025-11-28 04:15:07',0),(13526,2526,0,0,4542,'2025-11-28','00:00:00',3173,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5021,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 16:52:25','reception','2025-11-28 16:52:49',0),(13527,2526,0,0,4543,'2025-11-28','00:00:00',3174,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5022,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 16:54:27','reception','2025-11-28 16:59:35',0),(13528,2526,0,0,4544,'2025-11-28','00:00:00',3175,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5023,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 17:12:22','drashti','2025-11-28 17:13:11',0),(13529,2526,0,0,4545,'2025-11-28','00:00:00',3176,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',5024,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 17:16:00','manshi','2025-11-28 17:16:10',0),(13530,2526,0,0,4546,'2025-11-28','00:00:00',3177,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',5025,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 17:16:15','manshi','2025-11-28 17:16:35',0),(13531,2526,0,0,4547,'2025-11-28','00:00:00',3178,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5026,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 17:17:30','manshi','2025-11-28 17:17:49',0),(13532,2526,0,0,4548,'2025-11-28','17:28:57',3155,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5027,1,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 17:28:57','reception','2025-11-28 17:28:57',0),(13533,2526,0,0,4548,'2025-11-28','17:28:57',3155,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5027,2,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 17:28:57','reception','2025-11-28 17:28:57',0),(13534,2526,0,0,4548,'2025-11-28','17:28:57',3155,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5027,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 17:28:57','reception','2025-11-28 17:28:57',0),(13535,2526,0,0,3611,'2025-11-28','17:00:00',0,171,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 05:02:14','riya','2025-12-02 16:03:49',0),(13536,2526,0,0,3611,'2025-11-28','17:00:00',0,171,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 05:02:14','riya','2025-12-02 16:03:49',0),(13537,2526,0,0,3611,'2025-11-28','17:00:00',0,171,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 05:02:14','riya','2025-12-02 16:03:49',0),(13538,2526,0,0,3611,'2025-11-28','17:00:00',0,171,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 05:02:14','riya','2025-12-02 16:03:49',0),(13539,2526,0,0,3611,'2025-11-28','17:00:00',0,171,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 05:02:14','riya','2025-12-02 16:03:49',0),(13540,2526,0,0,4550,'2025-11-28','00:00:00',3179,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 17:32:21','drashti','2025-11-28 05:02:21',0),(13541,2526,0,0,4549,'2025-11-28','17:32:24',3161,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5028,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 17:32:24','reception','2025-11-28 17:32:24',0),(13542,2526,0,0,4549,'2025-11-28','17:32:24',3161,0,'NEU1','NEU10019','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',5028,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 17:32:24','reception','2025-11-28 17:32:24',0),(13543,2526,0,0,4551,'2025-11-28','00:00:00',3180,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5029,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 17:35:46','reception','2025-11-28 17:36:23',0),(13544,2526,0,0,4535,'2025-11-28','17:40:36',3169,0,'DRC','DRC0018','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5030,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 17:40:36','reception','2025-11-28 17:40:36',0),(13545,2526,0,0,4552,'2025-11-28','00:00:00',1725,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5031,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 17:42:51','reception','2025-11-28 17:43:12',0),(13546,2526,0,0,4553,'2025-11-28','00:00:00',3181,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5032,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 17:44:36','drashti','2025-11-28 17:45:13',0),(13547,2526,0,0,4536,'2025-11-28','17:48:06',3170,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5033,1,287,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 17:48:06','reception','2025-11-28 17:48:06',0),(13548,2526,0,0,4536,'2025-11-28','17:48:06',3170,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5033,2,287,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 17:48:06','reception','2025-11-28 17:48:06',0),(13549,2526,0,0,4536,'2025-11-28','17:48:06',3170,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5033,3,326,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 17:48:06','reception','2025-11-28 17:48:06',0),(13550,2526,0,0,4554,'2025-11-28','00:00:00',3182,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5034,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 17:49:59','reception','2025-11-28 18:31:45',0),(13551,2526,0,0,4555,'2025-11-28','00:00:00',3183,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5036,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 17:50:32','janvi','2025-11-28 17:51:20',0),(13552,2526,0,0,4556,'2025-11-28','00:00:00',2166,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5035,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 17:50:34','manshi','2025-11-28 17:51:01',0),(13553,2526,0,0,4557,'2025-11-28','00:00:00',2742,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5037,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 17:52:09','drashti','2025-11-28 17:53:39',0),(13554,2526,0,0,4558,'2025-11-28','00:00:00',3184,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 17:57:39','janvi','2025-11-28 05:27:39',0),(13555,2526,0,0,4559,'2025-11-28','00:00:00',3185,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5038,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 17:58:17','drashti','2025-11-28 17:58:45',0),(13556,2526,0,0,4560,'2025-11-28','00:00:00',545,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5039,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 18:07:37','manshi','2025-11-28 18:07:53',0),(13557,2526,0,0,4561,'2025-11-28','00:00:00',566,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5040,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 18:07:40','drashti','2025-11-28 18:09:03',0),(13558,2526,0,0,4562,'2025-11-28','00:00:00',3186,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5043,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 18:10:14','janvi','2025-11-28 18:13:02',0),(13559,2526,0,0,4556,'2025-11-28','18:10:39',2166,0,'XRY','XRY0495','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',5041,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 18:10:39','manshi','2025-11-28 18:10:39',0),(13560,2526,0,0,4563,'2025-11-28','00:00:00',3187,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5042,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 18:11:22','reception','2025-11-28 18:12:14',0),(13561,2526,0,0,4564,'2025-11-28','00:00:00',3188,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5044,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 18:12:41','drashti','2025-11-28 18:14:50',0),(13562,2526,0,0,4565,'2025-11-28','18:15:22',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5045,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 18:15:22','janvi','2025-11-28 18:15:22',0),(13563,2526,0,0,4555,'2025-11-28','18:17:25',3183,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',5046,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 18:17:25','drashti','2025-11-28 18:17:25',0),(13564,2526,0,0,4543,'2025-11-28','18:18:55',3174,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5047,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 18:18:55','reception','2025-11-28 18:18:55',0),(13565,2526,0,0,4543,'2025-11-28','18:18:55',3174,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5047,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 18:18:55','reception','2025-11-28 18:18:55',0),(13566,2526,0,0,4543,'2025-11-28','18:18:55',3174,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5047,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 18:18:55','reception','2025-11-28 18:18:55',0),(13567,2526,0,0,4566,'2025-11-28','00:00:00',187,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5049,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 18:20:54','janvi','2025-11-28 18:21:14',0),(13568,2526,0,0,4567,'2025-11-28','00:00:00',2269,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5048,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 18:20:55','manshi','2025-11-28 18:21:05',0),(13569,2526,0,0,4568,'2025-11-28','00:00:00',786,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5050,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 18:21:36','drashti','2025-11-28 18:22:15',0),(13570,2526,0,0,4569,'2025-11-28','00:00:00',3189,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5051,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 18:24:24','janvi','2025-11-28 18:25:35',0),(13571,2526,0,0,4571,'2025-11-28','00:00:00',1543,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5052,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 18:27:44','reception','2025-11-28 18:29:36',0),(13572,2526,0,0,4572,'2025-11-28','18:29:38',2910,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5053,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 18:29:38','drashti','2025-11-28 18:29:38',0),(13573,2526,0,0,4573,'2025-11-28','00:00:00',110,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5056,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 18:32:17','janvi','2025-11-28 18:33:59',0),(13574,2526,0,0,4574,'2025-11-28','00:00:00',3190,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5055,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 18:32:47','drashti','2025-11-28 18:33:14',0),(13575,2526,0,0,4575,'2025-11-28','00:00:00',109,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5057,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 18:33:03','janvi','2025-11-28 18:34:08',0),(13576,2526,0,0,4573,'2025-11-28','18:33:59',110,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,93,'',0,0,'','','','','',2526,'H','O',5056,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'janvi','2025-11-28 18:33:59','janvi','2025-11-28 18:33:59',0),(13577,2526,0,0,4576,'2025-11-28','00:00:00',3191,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5058,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 18:34:55','drashti','2025-11-28 18:35:48',0),(13578,2526,0,0,4540,'2025-11-28','18:37:18',2323,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',5059,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 18:37:18','janvi','2025-11-28 18:37:18',0),(13579,2526,0,0,4578,'2025-11-28','00:00:00',2220,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5060,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 18:37:43','manshi','2025-11-28 18:37:51',0),(13580,2526,0,0,4577,'2025-11-28','18:39:14',3116,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5061,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 18:39:14','reception','2025-11-28 18:39:14',0),(13581,2526,0,0,4577,'2025-11-28','18:39:14',3116,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5061,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 18:39:14','reception','2025-11-28 18:39:14',0),(13582,2526,0,0,4577,'2025-11-28','18:39:14',3116,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5061,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 18:39:14','reception','2025-11-28 18:39:14',0),(13583,2526,0,0,4579,'2025-11-28','00:00:00',3192,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5062,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 18:40:44','reception','2025-11-28 18:41:22',0),(13584,2526,0,0,4580,'2025-11-28','00:00:00',2250,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5063,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 18:44:46','reception','2025-11-28 18:45:08',0),(13585,2526,0,0,4570,'2025-11-28','18:45:44',525,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5064,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 18:45:44','janvi','2025-11-28 18:45:44',0),(13586,2526,0,0,4581,'2025-11-28','00:00:00',3193,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',5065,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 18:47:01','manshi','2025-11-28 18:47:39',0),(13587,2526,0,0,4582,'2025-11-28','00:00:00',3194,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5067,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 18:49:34','manshi','2025-11-28 18:50:03',0),(13588,2526,0,0,4583,'2025-11-28','00:00:00',3195,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5066,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 18:49:40','manshi','2025-11-28 18:49:52',0),(13589,2526,0,0,4584,'2025-11-28','00:00:00',3196,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5068,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 18:50:00','drashti','2025-11-28 18:50:42',0),(13590,2526,0,0,4585,'2025-11-28','00:00:00',3197,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5070,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 18:54:17','drashti','2025-11-28 18:56:06',0),(13591,2526,0,0,4586,'2025-11-28','00:00:00',3198,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5069,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 18:54:35','reception','2025-11-28 18:55:12',0),(13592,2526,0,0,4587,'2025-11-28','00:00:00',3199,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5071,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 18:57:45','reception','2025-11-28 18:58:14',0),(13593,2526,0,0,4588,'2025-11-28','18:59:19',2528,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',5072,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-28 18:59:19','manshi','2025-11-28 18:59:19',0),(13594,2526,0,0,4589,'2025-11-28','00:00:00',1323,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5073,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 19:04:16','drashti','2025-11-28 19:05:06',0),(13595,2526,0,0,4564,'2025-11-28','19:07:02',3188,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5074,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 19:07:02','reception','2025-11-28 19:07:02',0),(13596,2526,0,0,4564,'2025-11-28','19:07:02',3188,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5074,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 19:07:02','reception','2025-11-28 19:07:02',0),(13597,2526,0,0,4591,'2025-11-28','00:00:00',2506,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5076,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 19:16:51','drashti','2025-11-28 19:18:06',0),(13598,2526,0,0,4590,'2025-11-28','19:17:36',118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5075,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-28 19:17:36','janvi','2025-11-28 19:17:36',0),(13599,2526,0,0,4592,'2025-11-28','00:00:00',3200,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5077,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 19:22:16','drashti','2025-11-28 19:23:49',0),(13600,2526,0,0,4593,'2025-11-28','19:26:09',3076,0,'OPWD','OPWD0036','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',5078,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-28 19:26:09','drashti','2025-11-28 19:26:09',0),(13601,2526,0,0,4554,'2025-11-28','20:21:10',3182,0,'PKG','CASE','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5079,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-28 20:21:10','reception','2025-11-28 20:21:10',0),(13602,2526,0,0,4594,'2025-11-28','21:30:00',0,213,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',194,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-28 21:35:42','riya','2025-12-01 12:00:02',0),(13603,2526,0,0,4594,'2025-11-28','21:30:00',0,213,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',194,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-28 21:35:42','riya','2025-12-01 12:00:02',0),(13604,2526,0,0,4594,'2025-11-28','21:30:00',0,213,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',194,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-28 09:05:42','riya','2025-12-01 12:00:02',0),(13605,2526,0,0,4594,'2025-11-28','21:30:00',0,213,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',194,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-28 09:05:42','riya','2025-12-01 12:00:02',0),(13606,2526,0,0,4594,'2025-11-28','21:30:00',0,213,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',194,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-28 09:05:42','riya','2025-12-01 12:00:02',0),(13607,2526,0,0,4594,'2025-11-28','21:30:00',0,213,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-28 09:05:42','riya','2025-12-01 12:00:02',0),(13608,2526,0,0,4594,'2025-11-28','21:30:00',0,213,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-11-28 09:05:42','riya','2025-12-01 12:00:02',0),(13609,2526,0,0,4351,'2025-11-26','21:51:00',0,207,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','D',211,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-28 21:54:32','riya','2025-11-28 21:55:07',0),(13610,2526,0,0,4351,'2025-11-27','21:52:00',0,207,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',211,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-28 21:54:32','riya','2025-11-28 21:55:07',0),(13611,2526,0,0,4351,'2025-11-28','21:52:00',0,207,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',211,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-28 21:54:32','','0000-00-00 00:00:00',0),(13612,2526,0,0,4351,'2025-11-28','21:52:00',0,207,'USG','USG0092','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',211,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-28 21:54:32','','0000-00-00 00:00:00',0),(13613,2526,0,0,4595,'2025-11-29','00:00:00',3201,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 09:02:43','reception','2025-11-28 20:32:43',0),(13614,2526,0,0,4595,'2025-11-29','09:06:18',3201,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',5080,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 09:06:17','reception','2025-11-29 09:06:17',0),(13615,2526,0,0,4595,'2025-11-29','09:06:18',3201,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',5080,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 09:06:17','reception','2025-11-29 09:06:17',0),(13616,2526,0,0,4595,'2025-11-29','09:06:18',3201,0,'OPWD','OPWD0013','H','N',1.00,150,150,'P',0,0,0.00,0.00,0.00,150,5,0,0,'',0,0,'','','','','',2526,'H','O',5080,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 09:06:17','reception','2025-11-29 09:06:17',0),(13617,2526,0,0,4596,'2025-11-29','00:00:00',3202,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 09:07:20','reception','2025-11-28 20:37:20',0),(13618,2526,0,0,4596,'2025-11-29','09:07:43',3202,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',5081,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 09:07:43','reception','2025-11-29 09:07:43',0),(13619,2526,0,0,4597,'2025-11-29','00:00:00',3203,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 09:08:34','reception','2025-11-28 20:38:34',0),(13620,2526,0,0,4597,'2025-11-29','09:09:27',3203,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',5082,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 09:09:27','reception','2025-11-29 09:09:27',0),(13621,2526,0,0,4597,'2025-11-29','09:09:27',3203,0,'WPRC','WPRC0049','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',5082,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 09:09:27','reception','2025-11-29 09:09:27',0),(13622,2526,0,0,4598,'2025-11-29','00:00:00',3204,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 09:21:41','drashti','2025-11-28 20:51:41',0),(13623,2526,0,0,4599,'2025-11-29','00:00:00',1690,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5083,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 09:26:58','reception','2025-11-29 09:28:03',0),(13624,2526,0,0,4409,'2025-11-28','09:36:00',0,210,'USG','USG0091','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',188,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 09:38:26','','0000-00-00 00:00:00',0),(13625,2526,0,0,4409,'2025-11-29','09:36:00',0,210,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',188,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 09:38:26','','0000-00-00 00:00:00',0),(13626,2526,0,0,4409,'2025-11-29','09:37:00',0,210,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',188,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 09:38:26','','0000-00-00 00:00:00',0),(13627,2526,0,0,4409,'2025-11-28','09:37:00',0,210,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',188,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 09:38:26','','0000-00-00 00:00:00',0),(13628,2526,0,0,4600,'2025-11-29','00:00:00',3205,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5084,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 09:55:02','reception','2025-11-29 10:33:57',0),(13629,2526,0,0,4601,'2025-11-29','00:00:00',1550,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5085,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 09:57:45','reception','2025-11-29 09:58:02',0),(13630,2526,0,0,4602,'2025-11-29','00:00:00',3206,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5086,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 09:58:16','drashti','2025-11-29 09:59:35',0),(13631,2526,0,0,4603,'2025-11-29','00:00:00',3207,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5087,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 10:01:35','drashti','2025-11-29 10:02:28',0),(13632,2526,0,0,4604,'2025-11-29','00:00:00',446,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5088,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 10:09:09','reception','2025-11-29 10:09:31',0),(13633,2526,0,0,4605,'2025-11-29','00:00:00',3208,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5089,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 10:14:04','reception','2025-11-29 10:14:29',0),(13634,2526,0,0,4606,'2025-11-29','00:00:00',3209,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5090,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 10:15:18','reception','2025-11-29 10:15:52',0),(13635,2526,0,0,4607,'2025-11-29','00:00:00',1424,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5091,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 10:27:29','drashti','2025-11-29 10:27:59',0),(13636,2526,0,0,4600,'2025-11-29','10:35:12',3205,0,'PKG','CASE','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5093,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 10:35:12','reception','2025-11-29 10:35:12',0),(13637,2526,0,0,4608,'2025-11-29','00:00:00',3210,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5094,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 10:37:20','reception','2025-11-29 10:37:55',0),(13638,2526,0,0,4609,'2025-11-29','00:00:00',3211,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5095,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 10:53:23','reception','2025-11-29 10:53:45',0),(13639,2526,0,0,4610,'2025-11-29','00:00:00',3212,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5096,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 10:54:19','janvi','2025-11-29 10:54:30',0),(13640,2526,0,0,4611,'2025-11-29','00:00:00',3213,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5097,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 10:55:50','reception','2025-11-29 10:56:23',0),(13641,2526,0,0,4612,'2025-11-29','00:00:00',2769,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5143,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 10:55:51','drashti','2025-11-29 12:13:36',0),(13642,2526,0,0,4614,'2025-11-29','00:00:00',3214,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5099,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 10:57:25','drashti','2025-11-29 10:59:15',0),(13643,2526,0,0,4613,'2025-11-29','10:58:34',3199,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5098,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 10:58:34','reception','2025-11-29 10:58:34',0),(13644,2526,0,0,4613,'2025-11-29','10:58:34',3199,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5098,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 10:58:34','reception','2025-11-29 10:58:34',0),(13645,2526,0,0,4615,'2025-11-29','00:00:00',2132,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5101,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:02:33','reception','2025-11-29 11:05:48',0),(13646,2526,0,0,4616,'2025-11-29','00:00:00',180,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5100,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 11:04:59','drashti','2025-11-29 11:05:30',0),(13647,2526,0,0,4617,'2025-11-29','00:00:00',3215,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5102,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 11:06:15','drashti','2025-11-29 11:06:59',0),(13648,2526,0,0,4618,'2025-11-29','00:00:00',3216,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5103,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 11:06:54','janvi','2025-11-29 11:09:09',0),(13649,2526,0,0,4600,'2025-11-29','11:07:54',3205,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5104,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:07:54','reception','2025-11-29 11:07:54',0),(13650,2526,0,0,4600,'2025-11-29','11:07:54',3205,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5104,2,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:07:54','reception','2025-11-29 11:07:54',0),(13651,2526,0,0,4600,'2025-11-29','11:07:54',3205,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5104,3,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:07:54','reception','2025-11-29 11:07:54',0),(13652,2526,0,0,4600,'2025-11-29','11:07:54',3205,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5104,4,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:07:54','reception','2025-11-29 11:07:54',0),(13653,2526,0,0,4619,'2025-11-29','00:00:00',1579,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5106,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:08:50','reception','2025-11-29 11:09:24',0),(13654,2526,0,0,4618,'2025-11-29','11:10:37',3216,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5107,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 11:10:37','janvi','2025-11-29 11:10:37',0),(13655,2526,0,0,4620,'2025-11-29','00:00:00',3217,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 11:15:37','drashti','2025-11-28 22:45:37',0),(13656,2526,0,0,4621,'2025-11-29','00:00:00',2847,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',5108,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:17:50','reception','2025-11-29 11:18:01',0),(13657,2526,0,0,4622,'2025-11-29','00:00:00',3218,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5109,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 11:18:31','reception','2025-11-29 12:57:20',0),(13658,2526,0,0,4623,'2025-11-29','00:00:00',1626,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5110,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:21:37','reception','2025-11-29 11:22:03',0),(13659,2526,0,0,4417,'2025-11-28','17:00:00',0,211,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',189,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 22:52:03','vishal','2025-11-29 11:23:17',0),(13660,2526,0,0,4417,'2025-11-28','17:00:00',0,211,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','409','','','',2526,'H','I',189,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 22:52:03','vishal','2025-11-29 11:23:17',0),(13661,2526,0,0,4417,'2025-11-28','17:00:00',0,211,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',189,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 22:52:03','vishal','2025-11-29 11:23:17',0),(13662,2526,0,0,4417,'2025-11-28','17:00:00',0,211,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','409','','','',2526,'H','I',189,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 22:52:03','vishal','2025-11-29 11:23:17',0),(13663,2526,0,0,4417,'2025-11-28','17:00:00',0,211,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','409','','','',2526,'H','I',189,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 22:52:03','vishal','2025-11-29 11:23:17',0),(13664,2526,0,0,4417,'2025-11-29','11:22:00',0,211,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',189,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 11:23:17','','0000-00-00 00:00:00',0),(13665,2526,0,0,4624,'2025-11-29','00:00:00',3219,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5111,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:26:40','reception','2025-11-29 11:27:22',0),(13666,2526,0,0,4625,'2025-11-29','00:00:00',3220,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5112,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 11:27:33','drashti','2025-11-29 11:28:59',0),(13667,2526,0,0,4626,'2025-11-29','00:00:00',2503,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5117,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 11:28:26','janvi','2025-11-29 11:35:06',0),(13668,2526,0,0,4627,'2025-11-29','00:00:00',2560,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5113,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-29 11:30:49','manshi','2025-11-29 11:31:09',0),(13669,2526,0,0,4628,'2025-11-29','00:00:00',3221,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5114,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 11:31:19','drashti','2025-11-29 11:33:20',0),(13670,2526,0,0,4629,'2025-11-29','00:00:00',3222,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5115,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 11:32:11','janvi','2025-11-29 11:33:39',0),(13671,2526,0,0,4630,'2025-11-29','11:30:00',3217,214,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',190,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 11:32:29','vishal','2025-11-29 20:56:41',0),(13672,2526,0,0,4630,'2025-11-29','11:30:00',3217,214,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',190,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 11:32:29','vishal','2025-11-29 20:56:41',0),(13673,2526,0,0,4630,'2025-11-29','11:30:00',3217,214,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',190,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 23:02:29','vishal','2025-11-29 20:56:41',0),(13674,2526,0,0,4630,'2025-11-29','11:30:00',3217,214,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',190,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 23:02:29','vishal','2025-11-29 20:56:41',0),(13675,2526,0,0,4630,'2025-11-29','11:30:00',3217,214,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',190,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 23:02:29','vishal','2025-11-29 20:56:41',0),(13676,2526,0,0,4630,'2025-11-29','11:30:00',3217,214,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','406','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 23:02:29','vishal','2025-11-29 20:56:41',0),(13677,2526,0,0,4630,'2025-11-29','11:30:00',3217,214,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','406','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-28 23:02:29','vishal','2025-11-29 21:02:32',0),(13678,2526,0,0,4606,'2025-11-29','11:34:00',3209,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5116,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:34:00','reception','2025-11-29 11:34:00',0),(13679,2526,0,0,4606,'2025-11-29','11:34:00',3209,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5116,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:34:00','reception','2025-11-29 11:34:00',0),(13680,2526,0,0,4606,'2025-11-29','11:34:00',3209,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5116,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:34:00','reception','2025-11-29 11:34:00',0),(13681,2526,0,0,4631,'2025-11-29','00:00:00',3223,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5119,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 11:35:29','drashti','2025-11-29 11:37:27',0),(13682,2526,0,0,4632,'2025-11-29','00:00:00',3224,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5118,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:36:44','reception','2025-11-29 11:36:59',0),(13683,2526,0,0,4633,'2025-11-29','00:00:00',3225,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5139,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:38:13','reception','2025-11-29 12:05:09',0),(13684,2526,0,0,4634,'2025-11-29','00:00:00',3226,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5127,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 11:38:26','drashti','2025-11-29 11:56:18',0),(13685,2526,0,0,4635,'2025-11-29','00:00:00',3227,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5121,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 11:52:19','drashti','2025-11-29 11:53:04',0),(13686,2526,0,0,4636,'2025-11-29','00:00:00',3228,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5120,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:52:35','reception','2025-11-29 11:52:53',0),(13687,2526,0,0,4637,'2025-11-29','00:00:00',2483,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5122,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:53:58','reception','2025-11-29 11:54:37',0),(13688,2526,0,0,4638,'2025-11-29','00:00:00',3229,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5123,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 11:54:23','janvi','2025-11-29 11:54:41',0),(13689,2526,0,0,4639,'2025-11-29','00:00:00',3230,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5126,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-29 11:54:28','urvashi','2025-11-29 11:56:08',0),(13690,2526,0,0,4640,'2025-11-29','00:00:00',3231,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5124,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 11:54:30','drashti','2025-11-29 11:55:14',0),(13691,2526,0,0,4641,'2025-11-29','00:00:00',3232,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5125,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 11:55:14','janvi','2025-11-29 11:55:24',0),(13692,2526,0,0,4643,'2025-11-29','00:00:00',1274,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 11:56:46','janvi','2025-11-28 23:26:46',0),(13693,2526,0,0,4644,'2025-11-29','00:00:00',3233,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5128,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 11:57:44','janvi','2025-11-29 11:57:54',0),(13694,2526,0,0,4642,'2025-11-29','11:58:05',1928,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',5129,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-29 11:58:05','urvashi','2025-11-29 11:58:05',0),(13695,2526,0,0,4643,'2025-11-29','00:00:00',1274,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OP','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 11:58:40','janvi','2025-11-28 23:28:40',0),(13696,2526,0,0,4629,'2025-11-29','11:59:21',3222,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',5130,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 11:59:21','janvi','2025-11-29 11:59:21',0),(13697,2526,0,0,4608,'2025-11-29','11:59:31',3210,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5131,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:59:31','reception','2025-11-29 11:59:31',0),(13698,2526,0,0,4608,'2025-11-29','11:59:31',3210,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5131,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:59:31','reception','2025-11-29 11:59:31',0),(13699,2526,0,0,4608,'2025-11-29','11:59:31',3210,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5131,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 11:59:31','reception','2025-11-29 11:59:31',0),(13700,2526,0,0,4645,'2025-11-29','00:00:00',3234,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5133,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 11:59:33','drashti','2025-11-29 12:01:13',0),(13701,2526,0,0,4646,'2025-11-29','00:00:00',3235,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5132,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-29 11:59:48','urvashi','2025-11-29 12:00:03',0),(13702,2526,0,0,4639,'2025-11-29','12:01:54',3230,0,'XRY','XRY0151','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',5134,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-29 12:01:54','urvashi','2025-11-29 12:01:54',0),(13703,2526,0,0,4648,'2025-11-29','00:00:00',3236,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5137,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 12:02:23','janvi','2025-11-29 12:03:32',0),(13704,2526,0,0,4649,'2025-11-29','00:00:00',1865,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5136,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-29 12:02:56','urvashi','2025-11-29 12:03:17',0),(13705,2526,0,0,4647,'2025-11-29','12:03:07',3021,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5135,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 12:03:07','drashti','2025-11-29 12:03:07',0),(13706,2526,0,0,4605,'2025-11-29','12:04:50',3208,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',5138,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 12:04:50','janvi','2025-11-29 12:04:50',0),(13707,2526,0,0,4605,'2025-11-29','12:04:50',3208,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5138,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 12:04:50','janvi','2025-11-29 12:04:50',0),(13708,2526,0,0,4624,'2025-11-29','12:07:22',3219,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5140,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:07:22','reception','2025-11-29 12:07:22',0),(13709,2526,0,0,4624,'2025-11-29','12:07:22',3219,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5140,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:07:22','reception','2025-11-29 12:07:22',0),(13710,2526,0,0,4624,'2025-11-29','12:07:22',3219,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5140,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:07:22','reception','2025-11-29 12:07:22',0),(13711,2526,0,0,4650,'2025-11-29','00:00:00',3237,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5142,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 12:10:12','drashti','2025-11-29 12:11:26',0),(13712,2526,0,0,4623,'2025-11-29','12:10:42',1626,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5141,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:10:42','reception','2025-11-29 12:10:42',0),(13713,2526,0,0,4651,'2025-11-29','00:00:00',3238,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5144,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 12:12:43','janvi','2025-11-29 12:13:44',0),(13714,2526,0,0,4652,'2025-11-29','00:00:00',1704,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 12:15:16','drashti','2025-11-28 23:45:16',0),(13715,2526,0,0,4653,'2025-11-29','00:00:00',3239,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5145,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:16:35','reception','2025-11-29 12:17:12',0),(13716,2526,0,0,4654,'2025-11-29','00:00:00',3240,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5146,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 12:17:26','drashti','2025-11-29 12:18:22',0),(13717,2526,0,0,4655,'2025-11-29','12:20:32',3127,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',5147,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:20:32','reception','2025-11-29 12:20:32',0),(13718,2526,0,0,4656,'2025-11-29','00:00:00',1504,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5148,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:21:22','reception','2025-11-29 12:21:46',0),(13719,2526,0,0,4657,'2025-11-29','00:00:00',2472,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5149,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 12:24:43','janvi','2025-11-29 12:25:02',0),(13720,2526,0,0,4659,'2025-11-29','00:00:00',3241,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5151,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 12:26:13','janvi','2025-11-29 12:27:42',0),(13721,2526,0,0,4660,'2025-11-29','00:00:00',3242,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5150,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 12:27:16','janvi','2025-11-29 12:27:33',0),(13722,2526,0,0,4661,'2025-11-29','00:00:00',3243,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5158,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:27:23','reception','2025-11-29 13:59:48',0),(13723,2526,0,0,4662,'2025-11-29','00:00:00',3244,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5157,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:29:16','reception','2025-11-29 12:35:14',0),(13724,2526,0,0,4663,'2025-11-29','00:00:00',3245,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5153,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:30:20','reception','2025-11-29 12:32:26',0),(13725,2526,0,0,4629,'2025-11-29','12:31:04',3222,0,'OPWD','OPWD0034','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,5,0,0,'',0,0,'','','','','',2526,'H','O',5152,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 12:31:04','drashti','2025-11-29 12:31:04',0),(13726,2526,0,0,4664,'2025-11-29','00:00:00',3246,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5155,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:33:23','reception','2025-11-29 12:33:52',0),(13727,2526,0,0,4646,'2025-11-29','12:33:50',3235,0,'WPRC','WPRC0037','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5154,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-29 12:33:50','urvashi','2025-11-29 12:33:50',0),(13728,2526,0,0,4665,'2025-11-29','00:00:00',3247,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5156,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 12:34:16','drashti','2025-11-29 12:34:38',0),(13729,2526,0,0,4666,'2025-11-29','00:00:00',3248,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5159,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:38:26','reception','2025-11-29 12:38:46',0),(13730,2526,0,0,4667,'2025-11-29','00:00:00',1629,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5160,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 12:41:12','janvi','2025-11-29 12:41:24',0),(13731,2526,0,0,4633,'2025-11-29','12:41:55',3225,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5161,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:41:55','reception','2025-11-29 12:41:55',0),(13732,2526,0,0,4633,'2025-11-29','12:41:55',3225,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5161,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:41:55','reception','2025-11-29 12:41:55',0),(13733,2526,0,0,4633,'2025-11-29','12:41:55',3225,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5161,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:41:55','reception','2025-11-29 12:41:55',0),(13734,2526,0,0,4668,'2025-11-29','00:00:00',3249,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 12:45:47','drashti','2025-11-29 00:15:47',0),(13735,2526,0,0,4609,'2025-11-29','12:47:08',3211,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5162,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:47:08','reception','2025-11-29 12:47:08',0),(13736,2526,0,0,4609,'2025-11-29','12:47:08',3211,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5162,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:47:08','reception','2025-11-29 12:47:08',0),(13737,2526,0,0,4609,'2025-11-29','12:47:08',3211,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5162,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:47:08','reception','2025-11-29 12:47:08',0),(13738,2526,0,0,4669,'2025-11-29','00:00:00',3250,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5163,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:48:47','reception','2025-11-29 12:49:04',0),(13739,2526,0,0,4646,'2025-11-29','12:53:35',3235,0,'XRY','XRY0254','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',5164,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-29 12:53:35','urvashi','2025-11-29 12:53:35',0),(13740,2526,0,0,4670,'2025-11-29','00:00:00',3251,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 12:54:05','janvi','2025-11-29 00:24:05',0),(13741,2526,0,0,4622,'2025-11-29','12:59:11',3218,0,'PKG','CASE','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5166,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 12:59:11','reception','2025-11-29 12:59:11',0),(13742,2526,0,0,4672,'2025-11-29','00:00:00',3252,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5167,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 13:14:41','reception','2025-11-29 13:15:12',0),(13743,2526,0,0,4673,'2025-11-29','00:00:00',3253,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 13:16:45','drashti','2025-11-29 00:46:45',0),(13744,2526,0,0,4673,'2025-11-29','13:17:32',3253,0,'OPWD','OPWD0034','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,4,0,0,'',0,0,'','','','','',2526,'H','O',5168,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 13:17:32','drashti','2025-11-29 13:17:32',0),(13745,2526,0,0,4660,'2025-11-29','13:21:48',3242,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5169,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 13:21:48','drashti','2025-11-29 13:21:48',0),(13746,2526,0,0,4664,'2025-11-29','13:32:14',3246,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5170,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 13:32:14','reception','2025-11-29 13:32:14',0),(13747,2526,0,0,4664,'2025-11-29','13:32:14',3246,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5170,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 13:32:14','reception','2025-11-29 13:32:14',0),(13748,2526,0,0,4674,'2025-11-29','13:30:00',0,215,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',199,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 13:36:49','riya','2025-12-02 12:39:10',0),(13749,2526,0,0,4674,'2025-11-29','13:30:00',0,215,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',199,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 13:36:49','riya','2025-12-02 12:39:10',0),(13750,2526,0,0,4674,'2025-11-29','13:30:00',0,215,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',2526,'H','I',199,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 01:06:49','riya','2025-12-02 12:39:10',0),(13751,2526,0,0,4674,'2025-11-29','13:30:00',0,215,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',2526,'H','I',199,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 01:06:49','riya','2025-12-02 12:39:10',0),(13752,2526,0,0,4674,'2025-11-29','13:30:00',0,215,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',2526,'H','I',199,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 01:06:49','riya','2025-12-02 12:39:10',0),(13753,2526,0,0,4674,'2025-11-29','13:30:00',0,215,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 01:06:49','riya','2025-12-02 12:45:04',0),(13754,2526,0,0,4674,'2025-11-29','13:30:00',0,215,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 01:06:49','riya','2025-12-02 12:45:04',0),(13755,2526,0,0,4675,'2025-11-29','14:00:00',3208,216,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',193,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 14:07:09','vishal','2025-11-30 18:05:38',0),(13756,2526,0,0,4675,'2025-11-29','14:00:00',3208,216,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',193,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 14:07:09','vishal','2025-11-30 18:05:38',0),(13757,2526,0,0,4675,'2025-11-29','14:00:00',3208,216,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',193,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 01:37:09','vishal','2025-11-30 18:05:38',0),(13758,2526,0,0,4675,'2025-11-29','14:00:00',3208,216,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',193,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 01:37:09','vishal','2025-11-30 18:05:38',0),(13759,2526,0,0,4675,'2025-11-29','14:00:00',3208,216,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',193,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 01:37:09','vishal','2025-11-30 18:05:38',0),(13760,2526,0,0,4675,'2025-11-29','14:00:00',3208,216,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','409','','','',2526,'H','I',193,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 01:37:09','vishal','2025-11-30 18:05:38',0),(13761,2526,0,0,4675,'2025-11-29','14:00:00',3208,216,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','409','','','',2526,'H','I',193,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 01:37:09','vishal','2025-11-30 18:05:38',0),(13762,2526,0,0,4672,'2025-11-29','14:45:42',3252,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5172,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 14:45:42','reception','2025-11-29 14:45:42',0),(13763,2526,0,0,4672,'2025-11-29','14:45:42',3252,0,'NEU1','NEU10017','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5172,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 14:45:42','reception','2025-11-29 14:45:42',0),(13764,2526,0,0,4672,'2025-11-29','14:45:42',3252,0,'NEU1','NEU10020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5172,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-11-29 14:45:42','reception','2025-11-29 14:45:42',0),(13765,2526,0,0,4676,'2025-11-29','15:11:46',2393,0,'OTCG','OTCG0033','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,0.00,4000,4,0,0,'',0,0,'','','','','',2526,'H','O',5173,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-11-29 15:11:46','shweta','2025-11-29 15:11:46',0),(13766,2526,0,0,4677,'2025-11-29','00:00:00',3254,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5174,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 17:55:46','janvi','2025-11-29 18:06:08',0),(13767,2526,0,0,4677,'2025-11-29','18:08:32',3254,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5176,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 18:08:32','janvi','2025-11-29 18:08:32',0),(13768,2526,0,0,4678,'2025-11-29','00:00:00',3255,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5177,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-29 18:09:14','manshi','2025-11-29 18:10:33',0),(13769,2526,0,0,4679,'2025-11-29','00:00:00',2738,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-11-29 18:12:53','drashti','2025-11-29 05:42:53',0),(13770,2526,0,0,4680,'2025-11-29','00:00:00',3256,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5178,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 18:14:01','janvi','2025-11-29 18:14:47',0),(13771,2526,0,0,4266,'2025-11-29','10:15:00',0,203,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 05:50:35','vishal','2025-12-03 19:45:19',0),(13772,2526,0,0,4266,'2025-11-29','10:15:00',0,203,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 05:50:35','vishal','2025-12-03 19:45:19',0),(13773,2526,0,0,4266,'2025-11-29','10:15:00',0,203,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 05:50:35','vishal','2025-11-29 18:22:09',0),(13774,2526,0,0,4266,'2025-11-29','10:15:00',0,203,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 05:50:35','vishal','2025-12-03 19:45:19',0),(13775,2526,0,0,4266,'2025-11-29','10:15:00',0,203,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 05:50:35','vishal','2025-11-30 19:44:19',0),(13776,2526,0,0,4266,'2025-11-29','18:20:00',0,203,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 18:22:09','','0000-00-00 00:00:00',0),(13777,2526,0,0,4266,'2025-11-29','18:20:00',0,203,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 18:22:09','','0000-00-00 00:00:00',0),(13778,2526,0,0,4266,'2025-11-29','18:21:00',0,203,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 18:22:09','vishal','2025-12-03 19:45:19',0),(13779,2526,0,0,4266,'2025-11-29','18:21:00',0,203,'WPRC','WPRC0118','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 18:22:09','vishal','2025-12-03 19:45:19',0),(13780,2526,0,0,4266,'2025-11-29','18:21:00',0,203,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 18:22:09','vishal','2025-12-03 19:45:19',0),(13781,2526,0,0,4017,'2025-11-29','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,70,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 05:54:54','vishal','2025-11-29 18:26:32',0),(13782,2526,0,0,4017,'2025-11-29','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,71,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 05:54:54','vishal','2025-11-29 18:26:32',0),(13783,2526,0,0,4017,'2025-11-29','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,72,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 05:54:54','vishal','2025-11-29 18:26:32',0),(13784,2526,0,0,4017,'2025-11-29','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,74,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 05:54:54','vishal','2025-12-21 11:20:51',0),(13785,2526,0,0,4017,'2025-11-29','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,2500,2500,'A',0,0,0.00,0.00,2500.00,2500,8,0,0,'',0,0,'','208','','','',0,'','',0,74,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 05:54:54','vishal','2025-12-21 11:18:31',0),(13786,2526,0,0,4017,'2025-11-29','18:24:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,75,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 18:26:32','','0000-00-00 00:00:00',0),(13787,2526,0,0,4017,'2025-11-29','18:25:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,76,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 18:26:32','','0000-00-00 00:00:00',0),(13788,2526,0,0,4017,'2025-11-29','18:25:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,77,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 18:26:32','','0000-00-00 00:00:00',0),(13789,2526,0,0,4017,'2025-11-29','18:25:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,78,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 18:26:32','vishal','2025-12-21 11:20:51',0),(13790,2526,0,0,4681,'2025-11-29','00:00:00',2260,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5179,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 18:27:09','janvi','2025-11-29 18:27:51',0),(13791,2526,0,0,2879,'2025-11-29','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:17','vishal','2025-11-29 18:33:09',0),(13792,2526,0,0,2879,'2025-11-29','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:17','vishal','2025-11-29 18:33:09',0),(13793,2526,0,0,2879,'2025-11-29','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:17','vishal','2025-11-29 18:33:09',0),(13794,2526,0,0,2879,'2025-11-29','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:17','vishal','2025-11-30 20:07:24',0),(13795,2526,0,0,2879,'2025-11-29','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','207','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:17','vishal','2025-11-30 20:00:04',0),(13796,2526,0,0,3611,'2025-11-29','17:00:00',0,171,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:18','riya','2025-12-02 16:03:49',0),(13797,2526,0,0,3611,'2025-11-29','17:00:00',0,171,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:18','riya','2025-12-02 16:03:49',0),(13798,2526,0,0,3611,'2025-11-29','17:00:00',0,171,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:18','riya','2025-12-02 16:03:49',0),(13799,2526,0,0,3611,'2025-11-29','17:00:00',0,171,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:18','riya','2025-12-02 16:03:49',0),(13800,2526,0,0,3611,'2025-11-29','17:00:00',0,171,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:18','riya','2025-12-02 16:03:49',0),(13801,2526,0,0,3764,'2025-11-29','10:00:00',0,178,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,102,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:18','vishal','2025-11-29 19:24:53',0),(13802,2526,0,0,3764,'2025-11-29','10:00:00',0,178,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,103,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:18','vishal','2025-11-29 19:24:53',0),(13803,2526,0,0,3764,'2025-11-29','10:00:00',0,178,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,104,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:18','vishal','2025-11-29 19:24:53',0),(13804,2526,0,0,3764,'2025-11-29','10:00:00',0,178,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',220,105,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:18','vishal','2025-11-30 20:33:21',0),(13805,2526,0,0,3764,'2025-11-29','10:00:00',0,178,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',220,106,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:18','vishal','2025-11-30 20:33:21',0),(13806,2526,0,0,3861,'2025-11-28','22:40:00',0,179,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:19','vishal','2025-11-30 11:59:40',0),(13807,2526,0,0,3861,'2025-11-28','22:40:00',0,179,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:19','vishal','2025-11-30 11:59:40',0),(13808,2526,0,0,3861,'2025-11-28','22:40:00',0,179,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:19','vishal','2025-11-30 11:59:40',0),(13809,2526,0,0,3861,'2025-11-28','22:40:00',0,179,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:19','vishal','2025-11-30 12:04:11',0),(13810,2526,0,0,3861,'2025-11-28','22:40:00',0,179,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:19','vishal','2025-11-30 11:59:40',0),(13811,2526,0,0,3909,'2025-11-29','15:00:00',0,181,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:19','vishal','2025-11-29 19:26:40',0),(13812,2526,0,0,3909,'2025-11-29','15:00:00',0,181,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:19','vishal','2025-11-29 19:26:40',0),(13813,2526,0,0,3909,'2025-11-29','15:00:00',0,181,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:19','vishal','2025-11-29 19:26:40',0),(13814,2526,0,0,3909,'2025-11-29','15:00:00',0,181,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:19','vishal','2025-11-29 19:26:40',0),(13815,2526,0,0,3909,'2025-11-29','15:00:00',0,181,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:19','vishal','2025-11-30 18:59:22',0),(13816,2526,0,0,4047,'2025-11-29','10:30:00',0,191,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:20','riya','2025-12-01 11:44:24',0),(13817,2526,0,0,4047,'2025-11-29','10:30:00',0,191,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:20','riya','2025-12-01 11:44:24',0),(13818,2526,0,0,4047,'2025-11-29','10:30:00',0,191,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:20','riya','2025-12-01 11:44:24',0),(13819,2526,0,0,4047,'2025-11-29','10:30:00',0,191,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:20','riya','2025-12-01 11:44:24',0),(13820,2526,0,0,4047,'2025-11-29','10:30:00',0,191,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:20','riya','2025-12-01 11:44:24',0),(13821,2526,0,0,4359,'2025-11-29','02:00:00',0,209,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',192,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:20','vishal','2025-11-30 14:12:21',0),(13822,2526,0,0,4359,'2025-11-29','02:00:00',0,209,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',192,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:20','vishal','2025-11-30 14:12:21',0),(13823,2526,0,0,4359,'2025-11-29','02:00:00',0,209,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',192,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:20','vishal','2025-11-30 14:12:21',0),(13824,2526,0,0,4359,'2025-11-29','02:00:00',0,209,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',2526,'H','I',192,32,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:20','vishal','2025-11-30 14:15:54',0),(13825,2526,0,0,4359,'2025-11-29','02:00:00',0,209,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','407','','','',2526,'H','I',192,33,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:00:20','vishal','2025-11-30 14:15:54',0),(13826,2526,0,0,4682,'2025-11-29','18:32:26',2903,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5180,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 18:32:26','janvi','2025-11-29 18:32:26',0),(13827,2526,0,0,2879,'2025-11-29','18:32:00',0,146,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 18:33:09','','0000-00-00 00:00:00',0),(13828,2526,0,0,2879,'2025-11-29','18:32:00',0,146,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 18:33:09','','0000-00-00 00:00:00',0),(13829,2526,0,0,2879,'2025-11-29','18:32:00',0,146,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 18:33:09','','0000-00-00 00:00:00',0),(13830,2526,0,0,4351,'2025-11-28','21:20:00',0,207,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','D',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:05:57','vishal','2025-11-29 18:36:02',0),(13831,2526,0,0,4351,'2025-11-28','21:20:00',0,207,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','D',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:05:57','vishal','2025-11-29 18:36:02',0),(13832,2526,0,0,4351,'2025-11-26','21:20:00',0,207,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','D',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:05:57','vishal','2025-11-29 18:36:02',0),(13833,2526,0,0,4351,'2025-11-26','21:20:00',0,207,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','D',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:05:57','vishal','2025-11-29 18:36:02',0),(13834,2526,0,0,4351,'2025-11-28','21:20:00',0,207,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','D',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 06:05:57','vishal','2025-11-29 18:36:02',0),(13835,2526,0,0,4683,'2025-11-29','00:00:00',3257,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5181,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-29 18:39:39','manshi','2025-11-29 19:01:00',0),(13836,2526,0,0,4684,'2025-11-29','00:00:00',3258,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5182,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 18:50:59','janvi','2025-11-29 18:51:48',0),(13837,2526,0,0,4683,'2025-11-29','19:00:17',3257,0,'XRY','XRY0151','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',5183,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-11-29 19:00:17','manshi','2025-11-29 19:00:17',0),(13838,2526,0,0,3764,'2025-11-29','19:23:00',0,178,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,107,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 19:24:53','','0000-00-00 00:00:00',0),(13839,2526,0,0,3764,'2025-11-29','19:24:00',0,178,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,108,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 19:24:53','','0000-00-00 00:00:00',0),(13840,2526,0,0,3909,'2025-11-29','19:25:00',0,181,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 19:26:40','','0000-00-00 00:00:00',0),(13841,2526,0,0,3909,'2025-11-29','19:25:00',0,181,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 19:26:40','','0000-00-00 00:00:00',0),(13842,2526,0,0,3909,'2025-11-29','19:26:00',0,181,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 19:26:40','vishal','2025-11-30 18:59:22',0),(13843,2526,0,0,4685,'2025-11-29','00:00:00',3259,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5185,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-11-29 19:27:00','janvi','2025-11-29 19:27:38',0),(13844,2526,0,0,4630,'2025-11-29','20:55:00',3217,214,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',190,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 20:56:41','','0000-00-00 00:00:00',0),(13845,2526,0,0,4630,'2025-11-29','20:55:00',3217,214,'DRC','DRC0021','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,5,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 20:56:41','vishal','2025-11-29 21:02:32',0),(13846,2526,0,0,4630,'2025-11-29','21:02:00',3217,214,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','','','','',2526,'H','I',190,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 21:02:32','','0000-00-00 00:00:00',0),(13847,2526,0,0,4630,'2025-11-29','21:02:00',3217,214,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','','','','',2526,'H','I',190,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 21:02:32','','0000-00-00 00:00:00',0),(13848,2526,0,0,4686,'2025-11-29','21:00:00',0,217,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',196,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 21:12:18','vishal','2025-11-30 19:34:12',0),(13849,2526,0,0,4686,'2025-11-29','21:00:00',0,217,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',196,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 21:12:18','vishal','2025-11-30 19:34:12',0),(13850,2526,0,0,4686,'2025-11-29','21:00:00',0,217,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',196,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 08:42:18','vishal','2025-11-30 19:34:12',0),(13851,2526,0,0,4686,'2025-11-29','21:00:00',0,217,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',196,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 08:42:18','vishal','2025-11-30 19:34:12',0),(13852,2526,0,0,4686,'2025-11-29','21:00:00',0,217,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',196,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 08:42:18','vishal','2025-11-30 19:34:12',0),(13853,2526,0,0,4686,'2025-11-30','21:00:00',0,217,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',196,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 08:42:18','vishal','2025-11-30 19:34:12',0),(13854,2526,0,0,4686,'2025-11-30','21:00:00',0,217,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',196,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 08:42:18','vishal','2025-11-30 19:34:12',0),(13855,2526,0,0,4687,'2025-11-30','00:00:00',3260,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-30 09:27:08','urvashi','2025-11-29 20:57:08',0),(13856,2526,0,0,4687,'2025-11-30','09:28:24',3260,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',5186,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-30 09:28:24','urvashi','2025-11-30 09:28:24',0),(13857,2526,0,0,4687,'2025-11-30','09:28:24',3260,0,'WPRC','WPRC0021','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5186,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-30 09:28:24','urvashi','2025-11-30 09:28:24',0),(13858,2526,0,0,4688,'2025-11-30','10:30:00',0,218,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 11:04:41','riya','2025-12-01 11:26:13',0);
INSERT INTO `service_request` VALUES (13859,2526,0,0,4688,'2025-11-30','10:30:00',0,218,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 11:04:41','riya','2025-12-01 11:26:13',0),(13860,2526,0,0,4688,'2025-11-30','10:30:00',0,218,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 22:34:41','riya','2025-12-01 11:26:13',0),(13861,2526,0,0,4688,'2025-11-30','10:30:00',0,218,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 22:34:41','riya','2025-12-01 11:26:13',0),(13862,2526,0,0,4688,'2025-11-30','10:30:00',0,218,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 22:34:41','riya','2025-12-01 11:26:13',0),(13863,2526,0,0,4688,'2025-11-30','10:30:00',0,218,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','209','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 22:34:41','riya','2025-12-01 11:26:13',0),(13864,2526,0,0,4688,'2025-11-30','10:30:00',0,218,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','209','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 22:34:41','riya','2025-12-01 11:26:13',0),(13865,2526,0,0,4689,'2025-11-30','00:00:00',3261,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-30 11:05:10','urvashi','2025-11-29 22:35:10',0),(13866,2526,0,0,4689,'2025-11-30','11:05:44',3261,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',5187,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-30 11:05:44','urvashi','2025-11-30 11:05:44',0),(13867,2526,0,0,4690,'2025-11-29','22:30:00',0,219,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',197,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 11:13:40','riya','2025-12-01 18:51:57',0),(13868,2526,0,0,4690,'2025-11-29','22:30:00',0,219,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',197,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 11:13:40','riya','2025-12-01 18:51:57',0),(13869,2526,0,0,4690,'2025-11-29','22:30:00',0,219,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',197,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 22:43:40','riya','2025-12-01 18:51:57',0),(13870,2526,0,0,4690,'2025-11-29','22:30:00',0,219,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',197,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 22:43:40','riya','2025-12-01 18:51:57',0),(13871,2526,0,0,4690,'2025-11-29','22:30:00',0,219,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',197,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 22:43:40','riya','2025-12-01 18:51:57',0),(13872,2526,0,0,4690,'2025-11-30','22:30:00',0,219,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',197,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 22:43:40','riya','2025-12-01 18:51:57',0),(13873,2526,0,0,4690,'2025-11-30','22:30:00',0,219,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',197,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 22:43:40','riya','2025-12-01 18:51:57',0),(13874,2526,0,0,4691,'2025-11-30','11:15:00',0,220,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',201,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 11:45:27','vishal','2025-12-02 19:44:20',0),(13875,2526,0,0,4691,'2025-11-30','11:15:00',0,220,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',201,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 11:45:27','vishal','2025-12-02 19:44:20',0),(13876,2526,0,0,4691,'2025-11-30','11:15:00',0,220,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',201,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:15:27','vishal','2025-12-02 19:44:20',0),(13877,2526,0,0,4691,'2025-11-30','11:15:00',0,220,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',201,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:15:27','vishal','2025-12-02 19:44:20',0),(13878,2526,0,0,4691,'2025-11-30','11:15:00',0,220,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',201,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:15:27','vishal','2025-12-02 19:44:20',0),(13879,2526,0,0,4691,'2025-11-30','11:15:00',0,220,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',201,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:15:27','vishal','2025-12-02 19:44:20',0),(13880,2526,0,0,4691,'2025-11-30','11:15:00',0,220,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',201,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:15:27','vishal','2025-12-02 19:44:20',0),(13881,2526,0,0,3861,'2025-11-29','22:40:00',0,179,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:23:14','vishal','2025-11-30 12:04:11',0),(13882,2526,0,0,3861,'2025-11-29','22:40:00',0,179,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:23:14','vishal','2025-11-30 12:04:11',0),(13883,2526,0,0,3861,'2025-11-29','22:40:00',0,179,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:23:14','vishal','2025-11-30 12:04:11',0),(13884,2526,0,0,3861,'2025-11-29','22:40:00',0,179,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:23:14','vishal','2025-11-30 12:00:01',0),(13885,2526,0,0,3861,'2025-11-29','22:40:00',0,179,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','405','','','',2526,'H','I',191,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:23:14','vishal','2025-11-30 12:00:01',0),(13886,2526,0,0,3861,'2025-11-28','11:54:00',0,179,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 11:59:40','vishal','2025-11-30 12:00:01',0),(13887,2526,0,0,3861,'2025-11-29','11:54:00',0,179,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 11:59:40','vishal','2025-11-30 12:04:11',0),(13888,2526,0,0,3861,'2025-11-30','11:54:00',0,179,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 11:59:40','','0000-00-00 00:00:00',0),(13889,2526,0,0,3861,'2025-11-30','11:59:00',0,179,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 11:59:40','','0000-00-00 00:00:00',0),(13890,2526,0,0,4692,'2025-11-30','00:00:00',3262,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-11-30 12:03:42','urvashi','2025-11-29 23:33:42',0),(13891,2526,0,0,3861,'2025-11-20','12:02:00',0,179,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 12:03:46','','0000-00-00 00:00:00',0),(13892,2526,0,0,3861,'2025-11-21','12:02:00',0,179,'WPRC','WPRC0098','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 12:03:46','vishal','2025-11-30 12:04:11',0),(13893,2526,0,0,3861,'2025-11-22','12:02:00',0,179,'WPRC','WPRC0098','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 12:03:46','vishal','2025-11-30 12:04:11',0),(13894,2526,0,0,3861,'2025-11-23','12:02:00',0,179,'WPRC','WPRC0098','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 12:03:46','vishal','2025-11-30 12:04:11',0),(13895,2526,0,0,3861,'2025-11-24','12:02:00',0,179,'WPRC','WPRC0098','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',191,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 12:03:46','vishal','2025-11-30 12:04:11',0),(13896,2526,0,0,4692,'2025-11-30','12:05:37',3262,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',5188,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-11-30 12:05:37','urvashi','2025-11-30 12:05:37',0),(13897,2526,0,0,4692,'2025-11-30','12:05:37',3262,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5188,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-11-30 12:05:37','urvashi','2025-11-30 12:05:37',0),(13898,2526,0,0,4692,'2025-11-30','12:05:37',3262,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',5188,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-11-30 12:05:37','urvashi','2025-11-30 12:05:37',0),(13899,2526,0,0,4692,'2025-11-30','12:05:37',3262,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,94,'',0,0,'','','','','',2526,'H','O',5188,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-11-30 12:05:37','urvashi','2025-11-30 12:05:37',0),(13900,2526,0,0,4266,'2025-11-30','10:15:00',0,203,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:38:52','vishal','2025-11-30 12:10:56',0),(13901,2526,0,0,4266,'2025-11-30','10:15:00',0,203,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:38:52','vishal','2025-12-03 19:45:19',0),(13902,2526,0,0,4266,'2025-11-30','10:15:00',0,203,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:38:52','vishal','2025-12-03 19:45:19',0),(13903,2526,0,0,4266,'2025-11-30','10:15:00',0,203,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:38:52','vishal','2025-11-30 12:10:56',0),(13904,2526,0,0,4266,'2025-11-30','10:15:00',0,203,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:38:52','vishal','2025-11-30 12:10:56',0),(13905,2526,0,0,4266,'2025-11-30','12:09:00',0,203,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,53,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 12:10:56','vishal','2025-12-03 19:38:20',0),(13906,2526,0,0,4266,'2025-11-30','12:09:00',0,203,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,54,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 12:10:56','vishal','2025-12-03 19:38:20',0),(13907,2526,0,0,4266,'2025-11-30','12:09:00',0,203,'WPRC','WPRC0118','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',0,'','',0,55,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 12:10:56','vishal','2025-12-03 19:38:20',0),(13908,2526,0,0,4266,'2025-11-30','12:10:00',0,203,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 12:10:56','vishal','2025-12-03 19:45:19',0),(13909,2526,0,0,4266,'2025-11-30','12:10:00',0,203,'WPRC','WPRC0089','H','N',4.00,100,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 12:10:56','vishal','2025-12-03 19:45:19',0),(13910,2526,0,0,4594,'2025-11-29','21:30:00',0,213,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',194,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:49:26','riya','2025-12-01 12:00:02',0),(13911,2526,0,0,4594,'2025-11-29','21:30:00',0,213,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',194,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:49:26','riya','2025-12-01 12:00:02',0),(13912,2526,0,0,4594,'2025-11-29','21:30:00',0,213,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',194,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:49:26','riya','2025-12-01 12:00:02',0),(13913,2526,0,0,4594,'2025-11-29','21:30:00',0,213,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','210','','','',2526,'H','I',194,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:49:26','riya','2025-12-01 12:00:02',0),(13914,2526,0,0,4594,'2025-11-29','21:30:00',0,213,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','210','','','',2526,'H','I',194,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-29 23:49:26','riya','2025-12-01 12:00:02',0),(13915,2526,0,0,4693,'2025-11-30','13:30:00',0,221,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',213,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 13:46:17','riya','2025-12-01 14:03:46',0),(13916,2526,0,0,4693,'2025-11-30','13:30:00',0,221,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',213,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 13:46:17','riya','2025-12-01 14:03:46',0),(13917,2526,0,0,4693,'2025-11-30','13:30:00',0,221,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 01:16:17','riya','2025-12-01 14:03:46',0),(13918,2526,0,0,4693,'2025-11-30','13:30:00',0,221,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 01:16:17','riya','2025-12-01 14:03:46',0),(13919,2526,0,0,4693,'2025-11-30','13:30:00',0,221,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 01:16:17','riya','2025-12-01 14:03:46',0),(13920,2526,0,0,4693,'2025-11-30','13:30:00',0,221,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 01:16:17','riya','2025-12-02 13:00:38',0),(13921,2526,0,0,4693,'2025-11-30','13:30:00',0,221,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 01:16:17','riya','2025-12-02 13:00:38',0),(13922,2526,0,0,4359,'2025-11-30','14:02:00',0,209,'ROOM','ROOM0009','H','N',0.50,3200,1600,'P',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 14:04:42','','0000-00-00 00:00:00',0),(13923,2526,0,0,4359,'2025-11-30','14:02:00',0,209,'AECO','AECO0008','H','N',0.50,400,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 14:04:42','','0000-00-00 00:00:00',0),(13924,2526,0,0,4359,'2025-11-30','14:02:00',0,209,'CARE','CARE0001','H','N',0.50,200,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 14:04:42','','0000-00-00 00:00:00',0),(13925,2526,0,0,4359,'2025-11-30','14:03:00',0,209,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 14:04:42','','0000-00-00 00:00:00',0),(13926,2526,0,0,4359,'2025-11-28','14:04:00',0,209,'DRC','DRC0020','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,231,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 14:04:42','vishal','2025-11-30 14:05:50',0),(13927,2526,0,0,4359,'2025-11-29','14:04:00',0,209,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,231,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 14:04:42','','0000-00-00 00:00:00',0),(13928,2526,0,0,4359,'2025-11-28','14:06:00',0,209,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 14:07:58','vishal','2025-11-30 14:09:34',0),(13929,2526,0,0,4359,'2025-11-29','14:06:00',0,209,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 14:07:58','','0000-00-00 00:00:00',0),(13930,2526,0,0,4359,'2025-11-30','14:07:00',0,209,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 14:07:58','','0000-00-00 00:00:00',0),(13931,2526,0,0,4359,'2025-11-29','14:07:00',0,209,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,231,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 14:07:58','','0000-00-00 00:00:00',0),(13932,2526,0,0,4359,'2025-11-28','14:08:00',0,209,'WPRC','WPRC0077','H','N',2.00,500,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 14:09:34','vishal','2025-11-30 14:12:21',0),(13933,2526,0,0,4359,'2025-11-27','14:11:00',0,209,'SURG','SURG0016','H','N',1.00,25000,25000,'P',0,0,0.00,0.00,25000.00,25000,231,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 14:12:21','','0000-00-00 00:00:00',0),(13934,2526,0,0,4359,'2025-11-27','14:11:00',0,209,'SURG','SURG0015','H','N',1.00,6250,6250,'P',0,0,0.00,0.00,6250.00,6250,4,0,0,'',0,0,'','','','','',2526,'H','I',192,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 14:12:21','','0000-00-00 00:00:00',0),(13935,2526,0,0,2879,'2025-11-30','15:30:00',0,146,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 03:01:08','vishal','2025-11-30 20:00:04',0),(13936,2526,0,0,2879,'2025-11-30','15:30:00',0,146,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 03:01:08','vishal','2025-11-30 20:00:04',0),(13937,2526,0,0,2879,'2025-11-30','15:30:00',0,146,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 03:01:08','vishal','2025-11-30 20:00:04',0),(13938,2526,0,0,2879,'2025-11-30','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 03:01:08','vishal','2025-11-30 20:00:04',0),(13939,2526,0,0,2879,'2025-11-30','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 03:01:08','vishal','2025-11-30 20:00:04',0),(13940,2526,0,0,4694,'2025-11-30','17:00:00',0,222,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 17:46:28','riya','2025-12-02 12:49:34',0),(13941,2526,0,0,4694,'2025-11-30','17:00:00',0,222,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 17:46:28','riya','2025-12-02 12:49:34',0),(13942,2526,0,0,4694,'2025-11-30','17:00:00',0,222,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',262,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 05:16:28','riya','2025-12-02 12:49:34',0),(13943,2526,0,0,4694,'2025-11-30','17:00:00',0,222,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',262,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 05:16:28','riya','2025-12-02 12:49:34',0),(13944,2526,0,0,4694,'2025-11-30','17:00:00',0,222,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',262,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 05:16:28','riya','2025-12-02 12:49:34',0),(13945,2526,0,0,4694,'2025-11-30','17:00:00',0,222,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 05:16:28','riya','2025-12-02 12:49:34',0),(13946,2526,0,0,4694,'2025-11-30','17:00:00',0,222,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',262,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 05:16:28','riya','2025-12-02 12:49:34',0),(13947,2526,0,0,4675,'2025-11-29','18:04:00',3208,216,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',193,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 18:05:38','','0000-00-00 00:00:00',0),(13948,2526,0,0,4675,'2025-11-30','18:04:00',3208,216,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',193,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 18:05:38','','0000-00-00 00:00:00',0),(13949,2526,0,0,4675,'2025-11-30','18:04:00',3208,216,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',193,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 18:05:38','','0000-00-00 00:00:00',0),(13950,2526,0,0,4675,'2025-11-29','18:14:00',3208,216,'SURG','SURG0016','H','N',1.00,17000,17000,'P',0,0,0.00,0.00,17000.00,17000,3,0,0,'',0,0,'','','','','',2526,'H','I',193,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 18:15:08','','0000-00-00 00:00:00',0),(13951,2526,0,0,4675,'2025-11-29','18:14:00',3208,216,'SURG','SURG0015','H','N',1.00,5800,5800,'P',0,0,0.00,0.00,5800.00,5800,3,0,0,'',0,0,'','','','','',2526,'H','I',193,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 18:15:08','','0000-00-00 00:00:00',0),(13952,2526,0,0,3909,'2025-11-30','15:00:00',0,181,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 06:25:12','vishal','2025-11-30 18:59:22',0),(13953,2526,0,0,3909,'2025-11-30','15:00:00',0,181,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 06:25:12','vishal','2025-11-30 18:58:39',0),(13954,2526,0,0,3909,'2025-11-30','15:00:00',0,181,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 06:25:12','vishal','2025-11-30 18:58:39',0),(13955,2526,0,0,3909,'2025-11-30','15:00:00',0,181,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 06:25:12','vishal','2025-11-30 18:58:39',0),(13956,2526,0,0,3909,'2025-11-30','15:00:00',0,181,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 06:25:12','vishal','2025-11-30 18:58:39',0),(13957,2526,0,0,3909,'2025-11-30','18:55:00',0,181,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 18:58:39','','0000-00-00 00:00:00',0),(13958,2526,0,0,3909,'2025-11-30','18:55:00',0,181,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 18:58:39','','0000-00-00 00:00:00',0),(13959,2526,0,0,3909,'2025-11-30','18:56:00',0,181,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 18:58:39','','0000-00-00 00:00:00',0),(13960,2526,0,0,3909,'2025-11-30','18:56:00',0,181,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 18:58:39','','0000-00-00 00:00:00',0),(13961,2526,0,0,3909,'2025-11-29','18:57:00',0,181,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 18:58:39','','0000-00-00 00:00:00',0),(13962,2526,0,0,3909,'2025-11-30','18:57:00',0,181,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 18:58:39','','0000-00-00 00:00:00',0),(13963,2526,0,0,4686,'2025-11-29','19:32:00',0,217,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',196,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:34:12','','0000-00-00 00:00:00',0),(13964,2526,0,0,4686,'2025-11-29','19:32:00',0,217,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',196,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:34:12','','0000-00-00 00:00:00',0),(13965,2526,0,0,4686,'2025-11-30','19:32:00',0,217,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',196,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:34:12','','0000-00-00 00:00:00',0),(13966,2526,0,0,4686,'2025-11-29','19:33:00',0,217,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',196,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:34:12','','0000-00-00 00:00:00',0),(13967,2526,0,0,4686,'2025-11-30','19:33:00',0,217,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',196,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:34:12','','0000-00-00 00:00:00',0),(13968,2526,0,0,4686,'2025-12-01','21:00:00',0,217,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','207','','','',2526,'H','I',196,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:04:15','riya','2025-12-01 14:42:42',0),(13969,2526,0,0,4686,'2025-11-29','21:00:00',0,217,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:04:15','riya','2025-12-01 14:42:42',0),(13970,2526,0,0,4017,'2025-11-30','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,79,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:14:48','vishal','2025-11-30 19:46:18',0),(13971,2526,0,0,4017,'2025-11-30','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,80,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:14:48','vishal','2025-11-30 19:46:18',0),(13972,2526,0,0,4017,'2025-11-30','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,81,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:14:48','vishal','2025-11-30 19:46:18',0),(13973,2526,0,0,4017,'2025-11-30','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,82,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:14:48','vishal','2025-11-30 19:46:18',0),(13974,2526,0,0,4017,'2025-11-30','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,83,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:14:48','vishal','2025-12-21 11:20:51',0),(13975,2526,0,0,4017,'2025-11-30','19:44:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,84,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:46:18','','0000-00-00 00:00:00',0),(13976,2526,0,0,4017,'2025-11-30','19:45:00',0,187,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',0,'','',0,85,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:46:18','','0000-00-00 00:00:00',0),(13977,2526,0,0,4017,'2025-11-30','19:45:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,86,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:46:18','','0000-00-00 00:00:00',0),(13978,2526,0,0,4017,'2025-11-30','19:45:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,87,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:46:18','','0000-00-00 00:00:00',0),(13979,2526,0,0,4017,'2025-11-30','19:45:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,88,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:46:18','','0000-00-00 00:00:00',0),(13980,2526,0,0,2879,'2025-11-28','19:51:00',0,146,'WPRC','WPRC0119','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,4000.00,4000,39,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:59:18','vishal','2025-11-30 20:07:24',0),(13981,2526,0,0,2879,'2025-11-29','19:51:00',0,146,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:59:18','','0000-00-00 00:00:00',0),(13982,2526,0,0,2879,'2025-11-30','19:51:00',0,146,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:59:18','riya','2025-12-01 20:12:39',0),(13983,2526,0,0,2879,'2025-11-29','19:52:00',0,146,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:59:18','','0000-00-00 00:00:00',0),(13984,2526,0,0,2879,'2025-11-30','19:52:00',0,146,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:59:18','riya','2025-12-01 19:46:16',0),(13985,2526,0,0,2879,'2025-11-28','19:52:00',0,146,'WPRC','WPRC0101','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:59:18','riya','2025-12-01 20:01:36',0),(13986,2526,0,0,2879,'2025-11-10','19:53:00',0,146,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:59:18','','0000-00-00 00:00:00',0),(13987,2526,0,0,2879,'2025-11-11','19:54:00',0,146,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:59:18','','0000-00-00 00:00:00',0),(13988,2526,0,0,2879,'2025-11-12','19:54:00',0,146,'WPRC','WPRC0085','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:59:18','vishal','2025-11-30 20:00:04',0),(13989,2526,0,0,2879,'2025-11-16','19:54:00',0,146,'WPRC','WPRC0085','H','N',3.00,300,900,'A',0,0,0.00,0.00,900.00,900,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:59:18','riya','2025-12-01 19:41:30',0),(13990,2526,0,0,2879,'2025-11-18','19:55:00',0,146,'WPRC','WPRC0085','H','N',4.00,300,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:59:18','','0000-00-00 00:00:00',0),(13991,2526,0,0,2879,'2025-11-19','19:55:00',0,146,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:59:18','','0000-00-00 00:00:00',0),(13992,2526,0,0,2879,'2025-11-30','19:55:00',0,146,'WPRC','WPRC0085','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:59:18','riya','2025-12-01 19:45:21',0),(13993,2526,0,0,2879,'2025-11-19','19:56:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:59:18','','0000-00-00 00:00:00',0),(13994,2526,0,0,2879,'2025-11-29','19:56:00',0,146,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:59:18','riya','2025-12-01 19:46:16',0),(13995,2526,0,0,2879,'2025-11-29','19:56:00',0,146,'DRC','DRC0020','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,187,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 19:59:18','','0000-00-00 00:00:00',0),(13996,2526,0,0,2879,'2025-11-29','19:59:00',0,146,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:00:04','','0000-00-00 00:00:00',0),(13997,2526,0,0,2879,'2025-11-23','20:01:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:04:53','','0000-00-00 00:00:00',0),(13998,2526,0,0,2879,'2025-11-24','20:01:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:04:53','riya','2025-12-01 19:41:30',0),(13999,2526,0,0,2879,'2025-11-25','20:01:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:04:53','','0000-00-00 00:00:00',0),(14000,2526,0,0,2879,'2025-11-26','20:01:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:04:53','riya','2025-12-01 19:45:21',0),(14001,2526,0,0,2879,'2025-11-27','20:01:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:04:53','riya','2025-12-01 19:45:21',0),(14002,2526,0,0,2879,'2025-11-28','20:01:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:04:53','','0000-00-00 00:00:00',0),(14003,2526,0,0,2879,'2025-11-29','20:01:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:04:53','','0000-00-00 00:00:00',0),(14004,2526,0,0,2879,'2025-11-30','20:01:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:04:53','riya','2025-12-01 19:41:30',0),(14005,2526,0,0,2879,'2025-11-29','20:03:00',0,146,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:04:53','','0000-00-00 00:00:00',0),(14006,2526,0,0,2879,'2025-11-30','20:03:00',0,146,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:04:53','riya','2025-12-01 20:12:39',0),(14007,2526,0,0,2879,'2025-11-28','20:06:00',0,146,'ROOM','ROOM0009','H','N',0.50,5500,2750,'P',0,0,0.00,0.00,2750.00,2750,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:07:24','','0000-00-00 00:00:00',0),(14008,2526,0,0,2879,'2025-11-28','20:06:00',0,146,'AECO','AECO0008','H','N',0.50,800,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:07:24','','0000-00-00 00:00:00',0),(14009,2526,0,0,2879,'2025-11-28','20:06:00',0,146,'CARE','CARE0001','H','N',0.50,600,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:07:24','','0000-00-00 00:00:00',0),(14010,2526,0,0,3611,'2025-11-30','17:00:00',0,171,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:36','riya','2025-12-02 16:03:49',0),(14011,2526,0,0,3611,'2025-11-30','17:00:00',0,171,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:36','riya','2025-12-02 16:03:49',0),(14012,2526,0,0,3611,'2025-11-30','17:00:00',0,171,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:36','riya','2025-12-02 16:03:49',0),(14013,2526,0,0,3611,'2025-11-30','17:00:00',0,171,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:36','riya','2025-12-02 16:03:49',0),(14014,2526,0,0,3611,'2025-11-30','17:00:00',0,171,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:36','riya','2025-12-02 16:03:49',0),(14015,2526,0,0,3764,'2025-11-30','10:00:00',0,178,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,109,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:36','vishal','2025-11-30 20:33:21',0),(14016,2526,0,0,3764,'2025-11-30','10:00:00',0,178,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,110,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:36','vishal','2025-11-30 20:33:21',0),(14017,2526,0,0,3764,'2025-11-30','10:00:00',0,178,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',220,111,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:36','vishal','2025-11-30 20:33:21',0),(14018,2526,0,0,3764,'2025-11-30','10:00:00',0,178,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',220,112,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:36','vishal','2025-11-30 20:33:21',0),(14019,2526,0,0,3764,'2025-11-30','10:00:00',0,178,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',220,113,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:36','vishal','2025-11-30 20:33:21',0),(14020,2526,0,0,4047,'2025-11-30','10:30:00',0,191,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:37','riya','2025-12-01 11:44:24',0),(14021,2526,0,0,4047,'2025-11-30','10:30:00',0,191,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:37','riya','2025-12-01 11:44:24',0),(14022,2526,0,0,4047,'2025-11-30','10:30:00',0,191,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:37','riya','2025-12-01 11:44:24',0),(14023,2526,0,0,4047,'2025-11-30','10:30:00',0,191,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:37','riya','2025-12-01 11:44:24',0),(14024,2526,0,0,4047,'2025-11-30','10:30:00',0,191,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',195,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:37','riya','2025-12-01 11:44:24',0),(14025,2526,0,0,4674,'2025-11-30','13:30:00',0,215,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',2526,'H','I',199,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:37','riya','2025-12-02 12:39:10',0),(14026,2526,0,0,4674,'2025-11-30','13:30:00',0,215,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',2526,'H','I',199,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:37','riya','2025-12-02 12:39:10',0),(14027,2526,0,0,4674,'2025-11-30','13:30:00',0,215,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',2526,'H','I',199,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:37','riya','2025-12-02 12:39:10',0),(14028,2526,0,0,4674,'2025-11-30','13:30:00',0,215,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',2526,'H','I',199,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:37','riya','2025-12-02 12:39:10',0),(14029,2526,0,0,4674,'2025-11-30','13:30:00',0,215,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',2526,'H','I',199,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 07:44:37','riya','2025-12-02 12:39:10',0),(14030,2526,0,0,3764,'2025-11-30','20:28:00',0,178,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,114,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:33:21','','0000-00-00 00:00:00',0),(14031,2526,0,0,3764,'2025-11-30','20:28:00',0,178,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,115,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:33:21','','0000-00-00 00:00:00',0),(14032,2526,0,0,3764,'2025-11-30','20:29:00',0,178,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,116,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:33:21','','0000-00-00 00:00:00',0),(14033,2526,0,0,3764,'2025-11-29','20:31:00',0,178,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',220,117,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:33:21','','0000-00-00 00:00:00',0),(14034,2526,0,0,3764,'2025-11-29','20:32:00',0,178,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','','','','',2526,'H','I',220,118,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:33:21','','0000-00-00 00:00:00',0),(14035,2526,0,0,3764,'2025-11-30','20:32:00',0,178,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',220,119,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:33:21','','0000-00-00 00:00:00',0),(14036,2526,0,0,3764,'2025-11-30','20:32:00',0,178,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',220,120,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-11-30 20:33:21','','0000-00-00 00:00:00',0),(14037,2526,0,0,4695,'2025-12-01','00:00:00',3263,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 08:40:03','reception','2025-11-30 20:10:03',0),(14038,2526,0,0,4695,'2025-12-01','08:42:38',3263,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',5189,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 08:42:38','reception','2025-12-01 08:42:38',0),(14039,2526,0,0,4695,'2025-12-01','08:42:38',3263,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5189,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 08:42:38','reception','2025-12-01 08:42:38',0),(14040,2526,0,0,4695,'2025-12-01','08:42:38',3263,0,'OPWD','OPWD0013','H','N',4.00,100,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5189,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 08:42:38','reception','2025-12-01 08:42:38',0),(14041,2526,0,0,4696,'2025-12-01','09:06:37',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5190,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 09:06:37','reception','2025-12-01 09:06:37',0),(14042,2526,0,0,4697,'2025-12-01','00:00:00',3264,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 09:09:16','reception','2025-11-30 20:39:16',0),(14043,2526,0,0,4697,'2025-12-01','09:11:09',3264,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',5191,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 09:11:09','reception','2025-12-01 09:11:09',0),(14044,2526,0,0,4697,'2025-12-01','09:11:09',3264,0,'XRY','XRY0045','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',5191,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 09:11:09','reception','2025-12-01 09:11:09',0),(14045,2526,0,0,4697,'2025-12-01','09:11:09',3264,0,'OPWD','OPWD0013','H','N',5.00,100,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5191,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 09:11:09','reception','2025-12-01 09:11:09',0),(14046,2526,0,0,4698,'2025-12-01','00:00:00',3265,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 09:12:13','reception','2025-11-30 20:42:13',0),(14047,2526,0,0,4698,'2025-12-01','09:20:34',3265,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',5192,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 09:20:33','reception','2025-12-01 09:20:33',0),(14048,2526,0,0,4698,'2025-12-01','09:20:34',3265,0,'XRY','XRY0045','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',5192,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 09:20:33','reception','2025-12-01 09:20:33',0),(14049,2526,0,0,4698,'2025-12-01','09:20:34',3265,0,'OPWD','OPWD0023','H','N',1.00,1300,1300,'P',0,0,0.00,0.00,0.00,1300,6,0,0,'',0,0,'','','','','',2526,'H','O',5192,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 09:20:33','reception','2025-12-01 09:20:33',0),(14050,2526,0,0,4698,'2025-12-01','09:20:34',3265,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5192,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 09:20:33','reception','2025-12-01 09:20:33',0),(14051,2526,0,0,4699,'2025-12-01','00:00:00',3266,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 09:25:07','reception','2025-11-30 20:55:07',0),(14052,2526,0,0,4699,'2025-12-01','09:26:52',3266,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',5193,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-01 09:26:52','reception','2025-12-01 09:26:52',0),(14053,2526,0,0,4699,'2025-12-01','09:26:52',3266,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,95,'',0,0,'','','','','',2526,'H','O',5193,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-01 09:26:52','reception','2025-12-01 09:26:52',0),(14054,2526,0,0,4699,'2025-12-01','09:26:52',3266,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',5193,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-01 09:26:52','reception','2025-12-01 09:26:52',0),(14055,2526,0,0,4699,'2025-12-01','09:26:52',3266,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',5193,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-01 09:26:52','reception','2025-12-01 09:26:52',0),(14056,2526,0,0,4700,'2025-12-01','00:00:00',3267,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 09:28:43','reception','2025-11-30 20:58:43',0),(14057,2526,0,0,4700,'2025-12-01','09:31:59',3267,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',5194,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 09:31:59','reception','2025-12-01 09:31:59',0),(14058,2526,0,0,4700,'2025-12-01','09:31:59',3267,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5194,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 09:31:59','reception','2025-12-01 09:31:59',0),(14059,2526,0,0,4700,'2025-12-01','09:31:59',3267,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5194,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 09:31:59','reception','2025-12-01 09:31:59',0),(14060,2526,0,0,4701,'2025-12-01','00:00:00',3268,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5196,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 09:48:13','drashti','2025-12-01 09:49:42',0),(14061,2526,0,0,4702,'2025-12-01','00:00:00',2446,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5195,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 09:48:51','reception','2025-12-01 09:49:21',0),(14062,2526,0,0,4703,'2025-12-01','00:00:00',2155,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5197,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 09:50:39','reception','2025-12-01 09:51:18',0),(14063,2526,0,0,4704,'2025-12-01','00:00:00',2207,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5198,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 09:57:31','reception','2025-12-01 09:58:16',0),(14064,2526,0,0,4705,'2025-12-01','00:00:00',3269,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5199,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 10:00:03','reception','2025-12-01 10:01:20',0),(14065,2526,0,0,4706,'2025-12-01','00:00:00',3270,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5200,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 10:02:52','reception','2025-12-01 10:03:11',0),(14066,2526,0,0,4707,'2025-12-01','00:00:00',3271,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5201,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 10:03:10','drashti','2025-12-01 10:04:36',0),(14067,2526,0,0,4708,'2025-12-01','00:00:00',2709,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5202,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 10:07:49','reception','2025-12-01 10:08:05',0),(14068,2526,0,0,4709,'2025-12-01','00:00:00',3272,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5203,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 10:15:12','reception','2025-12-01 10:15:31',0),(14069,2526,0,0,4710,'2025-12-01','00:00:00',1701,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',5204,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-01 10:17:04','manshi','2025-12-01 10:17:19',0),(14070,2526,0,0,4711,'2025-12-01','09:30:00',0,223,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',202,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 10:17:31','riya','2025-12-03 10:46:47',0),(14071,2526,0,0,4711,'2025-12-01','09:30:00',0,223,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',202,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 10:17:31','riya','2025-12-03 10:46:47',0),(14072,2526,0,0,4711,'2025-12-01','09:30:00',0,223,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','310','','','',2526,'H','I',202,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 21:47:31','riya','2025-12-03 10:46:47',0),(14073,2526,0,0,4711,'2025-12-01','09:30:00',0,223,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','310','','','',2526,'H','I',202,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 21:47:31','riya','2025-12-03 10:46:47',0),(14074,2526,0,0,4711,'2025-12-01','09:30:00',0,223,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','310','','','',2526,'H','I',202,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 21:47:31','riya','2025-12-03 10:46:47',0),(14075,2526,0,0,4711,'2025-12-01','09:30:00',0,223,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','310','','','',2526,'H','I',202,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 21:47:31','riya','2025-12-03 10:46:47',0),(14076,2526,0,0,4711,'2025-12-01','09:30:00',0,223,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','310','','','',2526,'H','I',202,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 21:47:31','riya','2025-12-03 10:46:47',0),(14077,2526,0,0,4712,'2025-12-01','00:00:00',3273,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5205,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 10:21:26','janvi','2025-12-01 10:21:46',0),(14078,2526,0,0,4713,'2025-12-01','00:00:00',930,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5206,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 10:25:19','drashti','2025-12-01 10:25:32',0),(14079,2526,0,0,4714,'2025-12-01','00:00:00',3274,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5207,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 10:33:09','reception','2025-12-01 10:33:37',0),(14080,2526,0,0,4715,'2025-12-01','00:00:00',2714,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5208,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 10:35:14','reception','2025-12-01 10:35:27',0),(14081,2526,0,0,4716,'2025-12-01','00:00:00',3275,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5209,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 10:37:48','reception','2025-12-01 10:37:58',0),(14082,2526,0,0,4717,'2025-12-01','00:00:00',2716,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5210,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 10:38:59','reception','2025-12-01 10:39:41',0),(14083,2526,0,0,4719,'2025-12-01','00:00:00',3276,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5212,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 10:41:27','janvi','2025-12-01 10:42:15',0),(14084,2526,0,0,4718,'2025-12-01','10:41:46',3076,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5211,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 10:41:46','drashti','2025-12-01 10:41:46',0),(14085,2526,0,0,4720,'2025-12-01','00:00:00',1230,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5213,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 10:45:07','drashti','2025-12-01 10:45:36',0),(14086,2526,0,0,4721,'2025-12-01','00:00:00',3277,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5214,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 10:45:49','reception','2025-12-01 10:47:15',0),(14087,2526,0,0,4722,'2025-12-01','00:00:00',3278,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5215,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 10:46:46','janvi','2025-12-01 10:47:32',0),(14088,2526,0,0,4723,'2025-12-01','00:00:00',2844,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5216,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 10:47:56','drashti','2025-12-01 10:48:15',0),(14089,2526,0,0,4724,'2025-12-01','00:00:00',1506,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5217,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 10:50:58','reception','2025-12-01 13:38:05',0),(14090,2526,0,0,4726,'2025-12-01','10:56:07',3013,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5218,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 10:56:07','janvi','2025-12-01 10:56:07',0),(14091,2526,0,0,4725,'2025-12-01','10:56:12',2941,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5219,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 10:56:12','drashti','2025-12-01 10:56:12',0),(14092,2526,0,0,4727,'2025-12-01','00:00:00',2894,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5220,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 10:57:43','drashti','2025-12-01 10:58:36',0),(14093,2526,0,0,4709,'2025-12-01','10:59:09',3272,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5221,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 10:59:09','reception','2025-12-01 10:59:09',0),(14094,2526,0,0,4709,'2025-12-01','10:59:09',3272,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5221,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 10:59:09','reception','2025-12-01 10:59:09',0),(14095,2526,0,0,4709,'2025-12-01','10:59:09',3272,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5221,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 10:59:09','reception','2025-12-01 10:59:09',0),(14096,2526,0,0,4728,'2025-12-01','00:00:00',3279,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5222,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 11:00:59','janvi','2025-12-01 11:01:27',0),(14097,2526,0,0,4729,'2025-12-01','00:00:00',3280,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5223,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 11:03:31','drashti','2025-12-01 11:04:20',0),(14098,2526,0,0,4730,'2025-12-01','00:00:00',3281,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5226,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 11:03:37','janvi','2025-12-01 11:06:06',0),(14099,2526,0,0,4731,'2025-12-01','00:00:00',3282,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5224,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 11:04:13','reception','2025-12-01 11:04:45',0),(14100,2526,0,0,4732,'2025-12-01','00:00:00',3283,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5225,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 11:04:56','janvi','2025-12-01 11:05:46',0),(14101,2526,0,0,4733,'2025-12-01','00:00:00',3284,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5227,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 11:07:05','drashti','2025-12-01 11:07:43',0),(14102,2526,0,0,4734,'2025-12-01','00:00:00',2885,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5228,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 11:09:07','drashti','2025-12-01 12:27:15',0),(14103,2526,0,0,4735,'2025-12-01','00:00:00',3285,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',5234,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-01 11:11:12','manshi','2025-12-01 11:26:14',0),(14104,2526,0,0,4736,'2025-12-01','00:00:00',3286,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,2,0,0,'',0,0,'','','','','',2526,'H','O',5229,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 11:11:27','reception','2025-12-01 11:14:21',0),(14105,2526,0,0,4266,'2025-12-01','10:15:00',0,203,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 22:41:42','riya','2025-12-01 11:20:08',0),(14106,2526,0,0,4266,'2025-12-01','10:15:00',0,203,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 22:41:42','riya','2025-12-01 11:20:08',0),(14107,2526,0,0,4266,'2025-12-01','10:15:00',0,203,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 22:41:42','riya','2025-12-01 11:20:08',0),(14108,2526,0,0,4266,'2025-12-01','10:15:00',0,203,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 22:41:42','vishal','2025-12-03 19:45:19',0),(14109,2526,0,0,4266,'2025-12-01','10:15:00',0,203,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 22:41:42','vishal','2025-12-03 19:45:19',0),(14110,2526,0,0,4736,'2025-12-01','00:00:00',3286,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5231,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 11:16:28','drashti','2025-12-01 11:17:13',0),(14111,2526,0,0,4737,'2025-12-01','00:00:00',3287,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5246,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 11:19:35','reception','2025-12-01 11:56:39',0),(14112,2526,0,0,4266,'2025-12-01','11:15:00',0,203,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 11:20:08','','0000-00-00 00:00:00',0),(14113,2526,0,0,4266,'2025-12-01','11:18:00',0,203,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,64,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 11:20:08','vishal','2025-12-03 19:38:20',0),(14114,2526,0,0,4266,'2025-12-01','11:18:00',0,203,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 11:20:08','','0000-00-00 00:00:00',0),(14115,2526,0,0,4688,'2025-12-01','10:30:00',0,218,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 22:52:35','riya','2025-12-01 11:26:13',0),(14116,2526,0,0,4688,'2025-12-01','10:30:00',0,218,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 22:52:35','riya','2025-12-01 11:26:13',0),(14117,2526,0,0,4688,'2025-12-01','10:30:00',0,218,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 22:52:35','riya','2025-12-01 11:26:13',0),(14118,2526,0,0,4688,'2025-12-01','10:30:00',0,218,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','209','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 22:52:35','riya','2025-12-01 11:26:13',0),(14119,2526,0,0,4688,'2025-12-01','10:30:00',0,218,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','209','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 22:52:35','riya','2025-12-01 11:26:13',0),(14120,2526,0,0,4712,'2025-12-01','11:23:39',3273,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5232,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 11:23:39','reception','2025-12-01 11:23:39',0),(14121,2526,0,0,4712,'2025-12-01','11:23:39',3273,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5232,2,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 11:23:39','reception','2025-12-01 11:23:39',0),(14122,2526,0,0,4712,'2025-12-01','11:23:39',3273,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5232,3,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 11:23:39','reception','2025-12-01 11:23:39',0),(14123,2526,0,0,4712,'2025-12-01','11:23:39',3273,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5232,4,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 11:23:39','reception','2025-12-01 11:23:39',0),(14124,2526,0,0,4738,'2025-12-01','00:00:00',2346,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5233,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 11:24:45','drashti','2025-12-01 11:25:11',0),(14125,2526,0,0,4688,'2025-11-30','11:22:00',0,218,'ROOM','ROOM0008','H','N',7.00,100,700,'P',0,0,0.00,0.00,700.00,700,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 11:26:13','','0000-00-00 00:00:00',0),(14126,2526,0,0,4688,'2025-11-30','11:23:00',0,218,'WPRC','WPRC0080','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 11:26:13','','0000-00-00 00:00:00',0),(14127,2526,0,0,4688,'2025-11-30','11:23:00',0,218,'WPRC','WPRC0093','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 11:26:13','','0000-00-00 00:00:00',0),(14128,2526,0,0,4688,'2025-11-30','11:23:00',0,218,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 11:26:13','','0000-00-00 00:00:00',0),(14129,2526,0,0,4739,'2025-12-01','00:00:00',1033,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5235,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-01 11:26:39','manshi','2025-12-01 11:26:55',0),(14130,2526,0,0,4728,'2025-12-01','11:33:15',3279,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',5236,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 11:33:15','janvi','2025-12-01 11:33:15',0),(14131,2526,0,0,4017,'2025-12-01','11:28:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,89,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 11:34:40','','0000-00-00 00:00:00',0),(14132,2526,0,0,4017,'2025-12-01','11:29:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,90,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 11:34:40','','0000-00-00 00:00:00',0),(14133,2526,0,0,4017,'2025-12-01','11:29:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,91,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 11:34:40','','0000-00-00 00:00:00',0),(14134,2526,0,0,4017,'2025-12-01','11:29:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,92,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 11:34:40','','0000-00-00 00:00:00',0),(14135,2526,0,0,4714,'2025-12-01','11:37:07',3274,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5237,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 11:37:07','reception','2025-12-01 11:37:07',0),(14136,2526,0,0,4714,'2025-12-01','11:37:07',3274,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',5237,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 11:37:07','reception','2025-12-01 11:37:07',0),(14137,2526,0,0,4741,'2025-12-01','11:39:39',2643,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5238,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 11:39:39','drashti','2025-12-01 11:39:39',0),(14138,2526,0,0,4742,'2025-12-01','00:00:00',3288,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 11:43:02','janvi','2025-11-30 23:13:02',0),(14139,2526,0,0,4743,'2025-12-01','00:00:00',3289,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5239,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 11:43:48','drashti','2025-12-01 11:44:26',0),(14140,2526,0,0,4744,'2025-12-01','00:00:00',3290,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5240,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 11:44:19','reception','2025-12-01 11:44:40',0),(14141,2526,0,0,4047,'2025-11-30','11:42:00',0,191,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',195,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 11:44:24','','0000-00-00 00:00:00',0),(14142,2526,0,0,4047,'2025-12-01','11:44:00',0,191,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',195,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 11:44:24','','0000-00-00 00:00:00',0),(14143,2526,0,0,4745,'2025-12-01','00:00:00',3291,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5241,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 11:45:16','janvi','2025-12-01 11:46:09',0),(14144,2526,0,0,4047,'2025-11-26','11:44:00',0,191,'SURG','SURG0014','H','N',1.00,86250,86250,'P',0,0,0.00,0.00,86250.00,86250,3,0,0,'',0,0,'','','','','',2526,'H','I',195,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 11:45:27','riya','2025-12-01 13:04:09',0),(14145,2526,0,0,4047,'2025-11-26','11:44:00',0,191,'SURG','SURG0015','H','N',1.00,28740,28740,'P',0,0,0.00,0.00,28740.00,28740,3,0,0,'',0,0,'','','','','',2526,'H','I',195,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 11:45:27','riya','2025-12-01 13:04:09',0),(14146,2526,0,0,4746,'2025-12-01','00:00:00',2277,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5242,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 11:46:04','reception','2025-12-01 11:46:37',0),(14147,2526,0,0,4747,'2025-12-01','00:00:00',3292,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5243,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 11:46:58','janvi','2025-12-01 11:47:36',0),(14148,2526,0,0,4748,'2025-12-01','00:00:00',1120,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5244,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 11:50:13','reception','2025-12-01 11:50:26',0),(14149,2526,0,0,4594,'2025-11-30','21:30:00',0,213,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',194,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 23:22:32','riya','2025-12-01 12:00:02',0),(14150,2526,0,0,4594,'2025-11-30','21:30:00',0,213,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',194,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 23:22:32','riya','2025-12-01 12:00:02',0),(14151,2526,0,0,4594,'2025-11-30','21:30:00',0,213,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',194,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 23:22:32','riya','2025-12-01 12:00:02',0),(14152,2526,0,0,4594,'2025-11-30','21:30:00',0,213,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','401','','','',2526,'H','I',194,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 23:22:32','riya','2025-12-01 12:16:49',0),(14153,2526,0,0,4594,'2025-11-30','21:30:00',0,213,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',194,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 23:22:32','riya','2025-12-01 12:00:02',0),(14154,2526,0,0,4749,'2025-12-01','00:00:00',3293,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5245,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 11:53:25','drashti','2025-12-01 11:54:39',0),(14155,2526,0,0,4750,'2025-12-01','00:00:00',1535,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5247,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 11:58:41','drashti','2025-12-01 11:58:59',0),(14156,2526,0,0,4594,'2025-11-29','11:53:00',0,213,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',194,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 12:00:02','','0000-00-00 00:00:00',0),(14157,2526,0,0,4594,'2025-12-01','11:53:00',0,213,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',194,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 12:00:02','','0000-00-00 00:00:00',0),(14158,2526,0,0,4594,'2025-11-28','11:55:00',0,213,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',194,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 12:00:02','','0000-00-00 00:00:00',0),(14159,2526,0,0,4594,'2025-11-29','11:55:00',0,213,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',194,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 12:00:02','','0000-00-00 00:00:00',0),(14160,2526,0,0,4594,'2025-11-29','11:55:00',0,213,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',194,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 12:00:02','','0000-00-00 00:00:00',0),(14161,2526,0,0,4594,'2025-11-30','11:55:00',0,213,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',194,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 12:00:02','','0000-00-00 00:00:00',0),(14162,2526,0,0,4594,'2025-12-01','11:55:00',0,213,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',194,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 12:00:02','','0000-00-00 00:00:00',0),(14163,2526,0,0,4594,'2025-11-29','11:56:00',0,213,'WPRC','WPRC0086','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',194,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 12:00:02','','0000-00-00 00:00:00',0),(14164,2526,0,0,4594,'2025-12-01','11:57:00',0,213,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',194,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 12:00:02','','0000-00-00 00:00:00',0),(14165,2526,0,0,4594,'2025-11-29','11:58:00',0,213,'SURG','SURG0014','H','N',1.00,19000,19000,'P',0,0,0.00,0.00,19000.00,19000,3,0,0,'',0,0,'','','','','',2526,'H','I',194,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 12:00:02','riya','2025-12-01 12:19:15',0),(14166,2526,0,0,4594,'2025-11-29','11:59:00',0,213,'SURG','SURG0015','H','N',1.00,6200,6200,'P',0,0,0.00,0.00,6200.00,6200,3,0,0,'',0,0,'','','','','',2526,'H','I',194,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 12:00:02','riya','2025-12-01 12:19:15',0),(14167,2526,0,0,4725,'2025-12-01','12:04:07',2941,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',5248,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 12:04:07','drashti','2025-12-01 12:04:07',0),(14168,2526,0,0,4722,'2025-12-01','12:05:39',3278,0,'OPWD','OPWD0037','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',5249,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 12:05:39','reception','2025-12-01 12:05:39',0),(14169,2526,0,0,4751,'2025-12-01','12:00:00',0,224,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 12:06:01','riya','2025-12-01 16:53:58',0),(14170,2526,0,0,4751,'2025-12-01','12:00:00',0,224,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 12:06:01','riya','2025-12-01 16:53:58',0),(14171,2526,0,0,4751,'2025-12-01','12:00:00',0,224,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',223,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 23:36:01','riya','2025-12-01 16:53:58',0),(14172,2526,0,0,4751,'2025-12-01','12:00:00',0,224,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',223,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 23:36:01','riya','2025-12-01 16:53:58',0),(14173,2526,0,0,4751,'2025-12-01','12:00:00',0,224,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',223,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 23:36:01','riya','2025-12-01 16:53:58',0),(14174,2526,0,0,4751,'2025-12-01','12:00:00',0,224,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',223,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 23:36:01','riya','2025-12-01 16:53:58',0),(14175,2526,0,0,4751,'2025-12-01','12:00:00',0,224,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',223,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-11-30 23:36:01','riya','2025-12-01 16:53:58',0),(14176,2526,0,0,4752,'2025-12-01','00:00:00',2182,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5250,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 12:07:13','drashti','2025-12-01 12:07:26',0),(14177,2526,0,0,4753,'2025-12-01','00:00:00',3294,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5251,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 12:13:21','drashti','2025-12-01 12:13:46',0),(14178,2526,0,0,4754,'2025-12-01','00:00:00',3295,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5252,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 12:13:24','janvi','2025-12-01 12:14:18',0),(14179,2526,0,0,4755,'2025-12-01','00:00:00',3296,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5253,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 12:14:26','reception','2025-12-01 12:14:47',0),(14180,2526,0,0,4756,'2025-12-01','00:00:00',178,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5254,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-01 12:21:36','manshi','2025-12-01 12:21:50',0),(14181,2526,0,0,4757,'2025-12-01','00:00:00',3297,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5255,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 12:25:59','reception','2025-12-01 12:26:18',0),(14182,2526,0,0,4756,'2025-12-01','12:27:23',178,0,'XRY','XRY0308','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',5257,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-01 12:27:23','manshi','2025-12-01 12:27:23',0),(14183,2526,0,0,4758,'2025-12-01','00:00:00',3298,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5258,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 12:27:39','reception','2025-12-01 12:28:11',0),(14184,2526,0,0,4759,'2025-12-01','00:00:00',3299,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5261,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 12:28:25','janvi','2025-12-01 12:31:51',0),(14185,2526,0,0,4760,'2025-12-01','00:00:00',2254,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5260,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 12:30:36','drashti','2025-12-01 12:31:01',0),(14186,2526,0,0,4729,'2025-12-01','12:30:59',3280,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5259,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 12:30:59','reception','2025-12-01 12:30:59',0),(14187,2526,0,0,4729,'2025-12-01','12:30:59',3280,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5259,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 12:30:59','reception','2025-12-01 12:30:59',0),(14188,2526,0,0,4744,'2025-12-01','12:33:56',3290,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5262,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 12:33:56','drashti','2025-12-01 12:33:56',0),(14189,2526,0,0,4761,'2025-12-01','00:00:00',3300,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5263,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-01 12:35:45','manshi','2025-12-01 12:36:31',0),(14190,2526,0,0,4762,'2025-12-01','00:00:00',3301,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5264,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 12:37:49','drashti','2025-12-01 12:38:40',0),(14191,2526,0,0,4763,'2025-12-01','00:00:00',3302,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5265,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 12:44:44','reception','2025-12-01 12:45:15',0),(14192,2526,0,0,4764,'2025-12-01','00:00:00',3303,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5266,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 12:49:01','reception','2025-12-01 12:49:34',0),(14193,2526,0,0,4765,'2025-12-01','00:00:00',3304,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5267,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 12:49:58','janvi','2025-12-01 12:51:10',0),(14194,2526,0,0,4761,'2025-12-01','12:50:48',3300,0,'XRY','XRY0358','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',5268,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-01 12:50:47','manshi','2025-12-01 12:50:47',0),(14195,2526,0,0,4761,'2025-12-01','12:50:48',3300,0,'XRY','XRY0308','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',5268,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-01 12:50:47','manshi','2025-12-01 12:50:47',0),(14196,2526,0,0,4766,'2025-12-01','00:00:00',199,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5270,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 12:51:17','reception','2025-12-01 12:51:37',0),(14197,2526,0,0,4765,'2025-12-01','12:52:48',3304,0,'PKG','CASE','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5271,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 12:52:48','janvi','2025-12-01 12:52:48',0),(14198,2526,0,0,4767,'2025-12-01','00:00:00',3305,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5272,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 12:53:36','janvi','2025-12-01 12:54:11',0),(14199,2526,0,0,4768,'2025-12-01','00:00:00',3306,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5273,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 12:55:50','reception','2025-12-01 12:57:09',0),(14200,2526,0,0,4769,'2025-12-01','00:00:00',1781,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5274,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 12:59:26','janvi','2025-12-01 12:59:56',0),(14201,2526,0,0,4770,'2025-12-01','00:00:00',3307,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5275,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 13:00:16','reception','2025-12-01 13:00:52',0),(14202,2526,0,0,4771,'2025-12-01','00:00:00',3308,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5276,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 13:02:48','reception','2025-12-01 13:04:16',0),(14203,2526,0,0,4772,'2025-12-01','00:00:00',2534,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5277,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 13:05:10','reception','2025-12-01 13:05:28',0),(14204,2526,0,0,4728,'2025-12-01','13:09:36',3279,0,'OPWD','OPWD0034','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,5,0,0,'',0,0,'','','','','',2526,'H','O',5278,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 13:09:36','drashti','2025-12-01 13:09:36',0),(14205,2526,0,0,4758,'2025-12-01','13:12:32',3298,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5279,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 13:12:32','reception','2025-12-01 13:12:32',0),(14206,2526,0,0,4758,'2025-12-01','13:12:32',3298,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5279,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 13:12:32','reception','2025-12-01 13:12:32',0),(14207,2526,0,0,4758,'2025-12-01','13:12:32',3298,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5279,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 13:12:32','reception','2025-12-01 13:12:32',0),(14208,2526,0,0,4769,'2025-12-01','13:16:34',1781,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,96,'',0,0,'','','','','',2526,'H','O',5280,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-12-01 13:16:34','janvi','2025-12-01 13:16:34',0),(14209,2526,0,0,4768,'2025-12-01','13:21:14',3306,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5281,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 13:21:14','reception','2025-12-01 13:21:14',0),(14210,2526,0,0,4768,'2025-12-01','13:21:14',3306,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5281,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 13:21:14','reception','2025-12-01 13:21:14',0),(14211,2526,0,0,4768,'2025-12-01','13:21:14',3306,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5281,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 13:21:14','reception','2025-12-01 13:21:14',0),(14212,2526,0,0,4773,'2025-12-01','00:00:00',1170,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5282,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 13:30:15','reception','2025-12-01 13:30:25',0),(14213,2526,0,0,4774,'2025-12-01','00:00:00',3309,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5283,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 13:30:30','drashti','2025-12-01 13:30:46',0),(14214,2526,0,0,4724,'2025-12-01','13:41:10',1506,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5285,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 13:41:09','reception','2025-12-01 13:41:09',0),(14215,2526,0,0,4776,'2025-12-01','00:00:00',3310,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5286,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 13:53:41','janvi','2025-12-01 13:54:31',0),(14216,2526,0,0,4693,'2025-12-01','13:30:00',0,221,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 01:31:40','riya','2025-12-01 14:03:46',0),(14217,2526,0,0,4693,'2025-12-01','13:30:00',0,221,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 01:31:41','riya','2025-12-01 14:03:46',0),(14218,2526,0,0,4693,'2025-12-01','13:30:00',0,221,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 01:31:41','riya','2025-12-01 14:03:46',0),(14219,2526,0,0,4693,'2025-12-01','13:30:00',0,221,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 01:31:41','riya','2025-12-01 14:03:46',0),(14220,2526,0,0,4693,'2025-12-01','13:30:00',0,221,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 01:31:41','riya','2025-12-01 14:03:46',0),(14221,2526,0,0,4693,'2025-12-01','14:01:00',0,221,'SURG','SURG0014','H','N',1.00,45000,45000,'P',0,0,0.00,0.00,45000.00,45000,3,0,0,'',0,0,'','','','','',2526,'H','I',213,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 14:03:46','','0000-00-00 00:00:00',0),(14222,2526,0,0,4693,'2025-12-01','14:03:00',0,221,'SURG','SURG0015','H','N',1.00,11250,11250,'P',0,0,0.00,0.00,11250.00,11250,3,0,0,'',0,0,'','','','','',2526,'H','I',213,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 14:04:19','','0000-00-00 00:00:00',0),(14223,2526,0,0,4777,'2025-12-01','14:00:00',0,225,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 14:06:40','riya','2025-12-08 15:38:08',0),(14224,2526,0,0,4777,'2025-12-01','14:00:00',0,225,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 14:06:40','riya','2025-12-08 15:38:08',0),(14225,2526,0,0,4777,'2025-12-01','14:00:00',0,225,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','D',271,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 01:36:40','riya','2025-12-08 15:38:08',0),(14226,2526,0,0,4777,'2025-12-01','14:00:00',0,225,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','D',271,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 01:36:41','riya','2025-12-08 15:38:08',0),(14227,2526,0,0,4777,'2025-12-01','14:00:00',0,225,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','D',271,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 01:36:41','riya','2025-12-08 15:38:08',0),(14228,2526,0,0,4777,'2025-12-01','14:00:00',0,225,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 01:36:41','riya','2025-12-08 15:49:27',0),(14229,2526,0,0,4777,'2025-12-01','14:00:00',0,225,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','D',271,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 01:36:41','riya','2025-12-08 15:38:08',0),(14230,2526,0,0,4775,'2025-12-01','14:16:45',3259,0,'OPWD','OPWD0023','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,3,0,0,'',0,0,'','','','','',2526,'H','O',5287,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 14:16:45','janvi','2025-12-01 14:16:45',0),(14231,2526,0,0,4778,'2025-12-01','14:30:00',0,226,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',216,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 14:24:31','thims','2025-12-01 14:39:46',0),(14232,2526,0,0,4778,'2025-12-01','14:30:00',0,226,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',216,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 14:24:31','thims','2025-12-01 14:39:46',0),(14233,2526,0,0,4779,'2025-12-01','00:00:00',3311,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5288,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 14:32:42','reception','2025-12-01 14:33:03',0),(14234,2526,0,0,4727,'2025-12-01','14:33:45',2894,0,'OTCG','OTCG0033','H','N',1.00,750,750,'P',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5289,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-01 14:33:45','shweta','2025-12-01 14:33:45',0),(14235,2526,0,0,4778,'2025-12-01','14:30:00',0,226,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'thims','2025-12-01 02:09:40','thims','2025-12-01 14:39:46',0),(14236,2526,0,0,4778,'2025-12-01','14:30:00',0,226,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'thims','2025-12-01 02:09:40','thims','2025-12-01 14:39:46',0),(14237,2526,0,0,4778,'2025-12-01','14:30:00',0,226,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'thims','2025-12-01 02:09:40','thims','2025-12-01 14:39:46',0),(14238,2526,0,0,4778,'2025-12-01','14:30:00',0,226,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','409','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'thims','2025-12-01 02:09:40','riya','2025-12-04 10:45:43',0),(14239,2526,0,0,4778,'2025-12-01','14:30:00',0,226,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','409','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'thims','2025-12-01 02:09:40','thims','2025-12-01 14:39:46',0),(14240,2526,0,0,4686,'2025-11-30','21:00:00',0,217,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',196,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'thims','2025-12-01 02:10:15','thims','2025-12-01 14:40:21',0),(14241,2526,0,0,4686,'2025-11-30','21:00:00',0,217,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',196,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'thims','2025-12-01 02:10:15','thims','2025-12-01 14:40:21',0),(14242,2526,0,0,4686,'2025-11-30','21:00:00',0,217,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',196,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'thims','2025-12-01 02:10:15','thims','2025-12-01 14:40:21',0),(14243,2526,0,0,4686,'2025-12-01','14:41:00',0,217,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',196,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 14:42:42','','0000-00-00 00:00:00',0),(14244,2526,0,0,4780,'2025-12-01','14:00:00',0,227,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',198,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 14:48:55','riya','2025-12-02 14:04:48',0),(14245,2526,0,0,4780,'2025-12-01','14:00:00',0,227,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',198,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 14:48:55','riya','2025-12-02 14:04:48',0),(14246,2526,0,0,4780,'2025-12-01','14:00:00',0,227,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',198,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 02:18:55','riya','2025-12-02 14:04:48',0),(14247,2526,0,0,4780,'2025-12-01','14:00:00',0,227,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',198,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 02:18:55','riya','2025-12-02 14:04:48',0),(14248,2526,0,0,4780,'2025-12-01','14:00:00',0,227,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',198,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 02:18:55','riya','2025-12-02 14:04:48',0),(14249,2526,0,0,4780,'2025-12-02','14:00:00',0,227,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',198,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 02:18:55','riya','2025-12-02 14:04:48',0),(14250,2526,0,0,4780,'2025-12-01','14:00:00',0,227,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',198,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 02:18:55','riya','2025-12-02 14:04:48',0),(14251,2526,0,0,3764,'2025-12-01','10:00:00',0,178,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',0,'','',0,121,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'thims','2025-12-01 02:27:56','thims','2025-12-01 16:42:22',0),(14252,2526,0,0,3764,'2025-12-01','10:00:00',0,178,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',0,'','',0,122,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'thims','2025-12-01 02:27:56','thims','2025-12-01 16:42:22',0),(14253,2526,0,0,3764,'2025-12-01','10:00:00',0,178,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',0,'','',0,123,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'thims','2025-12-01 02:27:56','thims','2025-12-01 16:42:22',0),(14254,2526,0,0,3764,'2025-12-01','10:00:00',0,178,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,42,0,0,'',0,0,'','305','','','',0,'','',0,124,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'thims','2025-12-01 02:27:56','thims','2025-12-01 16:42:22',0),(14255,2526,0,0,3764,'2025-12-01','10:00:00',0,178,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,42,0,0,'',0,0,'','305','','','',0,'','',0,125,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'thims','2025-12-01 02:27:56','thims','2025-12-01 16:42:22',0),(14256,2526,0,0,4686,'2025-12-01','15:03:00',0,217,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',196,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 15:03:43','','0000-00-00 00:00:00',0),(14257,2526,0,0,4781,'2025-12-01','15:00:00',0,228,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 15:17:16','thims','2025-12-01 16:05:37',0),(14258,2526,0,0,4781,'2025-12-01','15:00:00',0,228,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 15:17:16','thims','2025-12-01 16:05:37',0),(14259,2526,0,0,4781,'2025-12-01','15:00:00',0,228,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 02:47:16','thims','2025-12-01 16:05:37',0),(14260,2526,0,0,4781,'2025-12-01','15:00:00',0,228,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 02:47:16','thims','2025-12-01 16:05:37',0),(14261,2526,0,0,4781,'2025-12-01','15:00:00',0,228,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 02:47:16','thims','2025-12-01 16:05:37',0),(14262,2526,0,0,4781,'2025-12-01','15:00:00',0,228,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 02:47:16','riya','2025-12-02 11:43:54',0),(14263,2526,0,0,4781,'2025-12-01','15:00:00',0,228,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 02:47:16','vishal','2025-12-05 14:23:08',0),(14264,2526,0,0,4782,'2025-12-01','00:00:00',2748,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5290,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 16:27:19','reception','2025-12-01 17:09:58',0),(14265,2526,0,0,4783,'2025-12-01','16:51:14',3053,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5291,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-01 16:51:14','shweta','2025-12-01 16:51:14',0),(14266,2526,0,0,4785,'2025-12-01','00:00:00',1834,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5292,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 16:52:01','reception','2025-12-01 16:52:23',0),(14267,2526,0,0,4751,'2025-12-01','16:53:00',0,224,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 16:53:58','','0000-00-00 00:00:00',0),(14268,2526,0,0,4784,'2025-12-01','16:55:41',3121,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',5293,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 16:55:41','drashti','2025-12-01 16:55:41',0),(14269,2526,0,0,2879,'2025-12-01','15:30:00',0,146,'ROOM','ROOM0009','H','N',0.50,3200,1600,'P',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:28','riya','2025-12-01 20:12:39',0),(14270,2526,0,0,2879,'2025-12-01','15:30:00',0,146,'AECO','AECO0008','H','N',0.50,400,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:28','riya','2025-12-01 19:46:16',0),(14271,2526,0,0,2879,'2025-12-01','15:30:00',0,146,'CARE','CARE0001','H','N',0.50,200,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:28','riya','2025-12-01 19:46:16',0),(14272,2526,0,0,2879,'2025-12-01','15:30:00',0,146,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:28','riya','2025-12-01 19:41:30',0),(14273,2526,0,0,2879,'2025-12-01','15:30:00',0,146,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','408','','','',2526,'H','D',327,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:28','riya','2025-12-01 19:41:30',0),(14274,2526,0,0,3611,'2025-12-01','17:00:00',0,171,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:29','riya','2025-12-02 16:03:49',0),(14275,2526,0,0,3611,'2025-12-01','17:00:00',0,171,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:29','riya','2025-12-02 16:03:49',0),(14276,2526,0,0,3611,'2025-12-01','17:00:00',0,171,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:29','riya','2025-12-02 16:03:49',0),(14277,2526,0,0,3611,'2025-12-01','17:00:00',0,171,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:29','riya','2025-12-02 16:03:49',0),(14278,2526,0,0,3611,'2025-12-01','17:00:00',0,171,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','404','','','',2526,'H','D',224,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:29','riya','2025-12-02 16:03:49',0),(14279,2526,0,0,3909,'2025-12-01','15:00:00',0,181,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:29','riya','2025-12-02 13:10:59',0),(14280,2526,0,0,3909,'2025-12-01','15:00:00',0,181,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:29','riya','2025-12-02 13:10:59',0),(14281,2526,0,0,3909,'2025-12-01','15:00:00',0,181,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:29','riya','2025-12-02 13:10:59',0),(14282,2526,0,0,3909,'2025-12-01','15:00:00',0,181,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:29','riya','2025-12-02 13:10:59',0),(14283,2526,0,0,3909,'2025-12-01','15:00:00',0,181,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:29','riya','2025-12-02 13:10:59',0),(14284,2526,0,0,4017,'2025-12-01','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,93,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:29','riya','2025-12-02 11:37:01',0),(14285,2526,0,0,4017,'2025-12-01','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,94,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:29','riya','2025-12-02 11:37:01',0),(14286,2526,0,0,4017,'2025-12-01','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,95,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:29','riya','2025-12-02 11:37:01',0),(14287,2526,0,0,4017,'2025-12-01','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,96,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:29','riya','2025-12-02 11:37:01',0),(14288,2526,0,0,4017,'2025-12-01','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,99,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:29','vishal','2025-12-21 11:20:51',0),(14289,2526,0,0,4674,'2025-12-01','13:30:00',0,215,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',2526,'H','I',199,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','riya','2025-12-02 12:39:10',0),(14290,2526,0,0,4674,'2025-12-01','13:30:00',0,215,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',2526,'H','I',199,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','riya','2025-12-02 12:39:10',0),(14291,2526,0,0,4674,'2025-12-01','13:30:00',0,215,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',2526,'H','I',199,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','riya','2025-12-02 12:39:10',0),(14292,2526,0,0,4674,'2025-12-01','13:30:00',0,215,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',2526,'H','I',199,16,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','riya','2025-12-02 12:39:10',0),(14293,2526,0,0,4674,'2025-12-01','13:30:00',0,215,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',2526,'H','I',199,17,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','riya','2025-12-02 12:39:10',0),(14294,2526,0,0,4690,'2025-11-30','22:30:00',0,219,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',197,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','riya','2025-12-01 18:51:57',0),(14295,2526,0,0,4690,'2025-11-30','22:30:00',0,219,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',197,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','riya','2025-12-01 18:51:57',0),(14296,2526,0,0,4690,'2025-11-30','22:30:00',0,219,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',197,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','riya','2025-12-01 18:51:57',0),(14297,2526,0,0,4690,'2025-12-01','22:30:00',0,219,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',197,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','riya','2025-12-01 18:51:57',0),(14298,2526,0,0,4690,'2025-12-01','22:30:00',0,219,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',197,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','riya','2025-12-01 18:51:57',0),(14299,2526,0,0,4691,'2025-12-01','11:15:00',0,220,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',201,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','vishal','2025-12-02 19:44:20',0),(14300,2526,0,0,4691,'2025-12-01','11:15:00',0,220,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',201,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','vishal','2025-12-02 19:44:20',0),(14301,2526,0,0,4691,'2025-12-01','11:15:00',0,220,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',201,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','vishal','2025-12-02 19:44:20',0),(14302,2526,0,0,4691,'2025-12-01','11:15:00',0,220,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',201,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','vishal','2025-12-02 19:44:20',0),(14303,2526,0,0,4691,'2025-12-01','11:15:00',0,220,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',201,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','vishal','2025-12-02 19:44:20',0),(14304,2526,0,0,4694,'2025-12-01','17:00:00',0,222,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',262,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','riya','2025-12-02 12:49:34',0),(14305,2526,0,0,4694,'2025-12-01','17:00:00',0,222,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',262,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','riya','2025-12-02 12:49:34',0),(14306,2526,0,0,4694,'2025-12-01','17:00:00',0,222,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',262,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','riya','2025-12-02 12:49:34',0),(14307,2526,0,0,4694,'2025-12-01','17:00:00',0,222,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',0,'','',0,10,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','riya','2025-12-02 13:07:43',0),(14308,2526,0,0,4694,'2025-12-01','17:00:00',0,222,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',262,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 04:31:30','riya','2025-12-02 12:49:34',0),(14309,2526,0,0,4782,'2025-12-01','17:13:04',2748,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5295,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 17:13:04','reception','2025-12-01 17:13:04',0),(14310,2526,0,0,4786,'2025-12-01','00:00:00',2746,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5296,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 17:14:23','reception','2025-12-01 17:15:27',0),(14311,2526,0,0,4788,'2025-12-01','00:00:00',3312,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5300,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-01 17:18:31','reception','2025-12-01 19:28:38',0),(14312,2526,0,0,4787,'2025-12-01','17:18:49',3308,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5297,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 17:18:49','reception','2025-12-01 17:18:49',0),(14313,2526,0,0,4787,'2025-12-01','17:18:49',3308,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5297,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 17:18:49','reception','2025-12-01 17:18:49',0),(14314,2526,0,0,4787,'2025-12-01','17:18:49',3308,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5297,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 17:18:49','reception','2025-12-01 17:18:49',0),(14315,2526,0,0,4789,'2025-12-01','00:00:00',3313,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5298,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 17:20:13','drashti','2025-12-01 17:20:34',0),(14316,2526,0,0,4790,'2025-12-01','00:00:00',3314,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5299,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-01 17:21:57','shweta','2025-12-01 17:22:32',0),(14317,2526,0,0,4792,'2025-12-01','00:00:00',1436,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5301,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 17:27:29','reception','2025-12-01 17:27:52',0),(14318,2526,0,0,4793,'2025-12-01','00:00:00',3315,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5303,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 17:29:50','drashti','2025-12-01 17:31:56',0),(14319,2526,0,0,4794,'2025-12-01','00:00:00',2529,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5302,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-01 17:30:45','manshi','2025-12-01 17:30:57',0),(14320,2526,0,0,4796,'2025-12-01','00:00:00',3316,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5305,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 17:31:46','reception','2025-12-01 17:33:01',0),(14321,2526,0,0,4795,'2025-12-01','17:31:59',3010,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5304,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 17:31:59','janvi','2025-12-01 17:31:59',0),(14322,2526,0,0,4797,'2025-12-01','00:00:00',3317,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5306,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 17:34:16','reception','2025-12-01 17:34:37',0),(14323,2526,0,0,4798,'2025-12-01','00:00:00',3318,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5307,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 17:35:13','janvi','2025-12-01 17:35:49',0),(14324,2526,0,0,4799,'2025-12-01','00:00:00',2188,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5308,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 17:36:39','reception','2025-12-01 17:37:17',0),(14325,2526,0,0,4800,'2025-12-01','17:40:06',3302,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5309,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 17:40:06','reception','2025-12-01 17:40:06',0),(14326,2526,0,0,4800,'2025-12-01','17:40:06',3302,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5309,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 17:40:06','reception','2025-12-01 17:40:06',0),(14327,2526,0,0,4800,'2025-12-01','17:40:06',3302,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5309,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 17:40:06','reception','2025-12-01 17:40:06',0),(14328,2526,0,0,4801,'2025-12-01','00:00:00',3319,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5310,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 17:46:06','janvi','2025-12-01 17:46:47',0),(14329,2526,0,0,4802,'2025-12-01','17:50:00',3305,229,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',205,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 17:48:38','riya','2025-12-02 11:11:28',0),(14330,2526,0,0,4802,'2025-12-01','17:50:00',3305,229,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',205,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 17:48:38','riya','2025-12-02 11:11:28',0),(14331,2526,0,0,4803,'2025-12-01','00:00:00',3320,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5311,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 17:49:20','reception','2025-12-01 17:49:54',0),(14332,2526,0,0,4805,'2025-12-01','00:00:00',1371,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5312,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 17:50:46','reception','2025-12-01 17:51:19',0),(14333,2526,0,0,4806,'2025-12-01','00:00:00',1102,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5313,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-01 17:51:10','manshi','2025-12-01 17:51:41',0),(14334,2526,0,0,4802,'2025-12-01','17:50:00',3305,229,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',205,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 05:21:27','riya','2025-12-02 11:11:28',0),(14335,2526,0,0,4802,'2025-12-01','17:50:00',3305,229,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',205,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 05:21:27','riya','2025-12-02 11:11:28',0),(14336,2526,0,0,4802,'2025-12-01','17:50:00',3305,229,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',205,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 05:21:27','riya','2025-12-02 11:11:28',0),(14337,2526,0,0,4802,'2025-12-01','17:50:00',3305,229,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 05:21:27','vishal','2025-12-03 20:42:15',0),(14338,2526,0,0,4802,'2025-12-01','17:50:00',3305,229,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',205,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 05:21:27','riya','2025-12-02 11:11:28',0),(14339,2526,0,0,4807,'2025-12-01','00:00:00',3321,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5314,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 17:51:41','drashti','2025-12-01 18:55:38',0),(14340,2526,0,0,4809,'2025-12-01','00:00:00',3322,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',5316,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-01 17:58:41','manshi','2025-12-01 18:00:00',0),(14341,2526,0,0,4810,'2025-12-01','00:00:00',3323,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',5315,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-01 17:59:04','manshi','2025-12-01 17:59:49',0),(14342,2526,0,0,4811,'2025-12-01','00:00:00',1501,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5319,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 18:00:43','reception','2025-12-01 18:05:16',0),(14343,2526,0,0,4812,'2025-12-01','00:00:00',1672,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5317,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 18:01:44','drashti','2025-12-01 18:02:56',0),(14344,2526,0,0,4813,'2025-12-01','00:00:00',3324,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5318,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 18:02:28','janvi','2025-12-01 18:02:57',0),(14345,2526,0,0,4814,'2025-12-01','00:00:00',2772,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5344,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 18:03:40','reception','2025-12-01 18:41:35',0),(14346,2526,0,0,4815,'2025-12-01','00:00:00',3325,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5320,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 18:03:44','janvi','2025-12-01 18:05:38',0),(14347,2526,0,0,4816,'2025-12-01','18:08:29',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5321,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 18:08:29','janvi','2025-12-01 18:08:29',0),(14348,2526,0,0,4817,'2025-12-01','00:00:00',1523,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5322,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 18:08:52','reception','2025-12-01 18:09:16',0),(14349,2526,0,0,4797,'2025-12-01','18:09:55',3317,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5323,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 18:09:55','reception','2025-12-01 18:09:55',0),(14350,2526,0,0,4797,'2025-12-01','18:09:55',3317,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',5323,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 18:09:55','reception','2025-12-01 18:09:55',0),(14351,2526,0,0,4818,'2025-12-01','00:00:00',3326,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5324,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 18:10:28','drashti','2025-12-01 18:11:34',0),(14352,2526,0,0,4819,'2025-12-01','00:00:00',3327,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5325,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 18:11:11','reception','2025-12-01 18:11:51',0),(14353,2526,0,0,4820,'2025-12-01','00:00:00',2804,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5326,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 18:12:51','drashti','2025-12-01 18:13:23',0),(14354,2526,0,0,4821,'2025-12-01','00:00:00',3328,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5327,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 18:12:58','reception','2025-12-01 18:13:27',0),(14355,2526,0,0,4794,'2025-12-01','18:13:31',2529,0,'XRY','XRY0017','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,0.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5328,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-01 18:13:31','manshi','2025-12-01 18:13:31',0),(14356,2526,0,0,4822,'2025-12-01','00:00:00',760,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5329,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 18:14:32','reception','2025-12-01 18:14:51',0),(14357,2526,0,0,4823,'2025-12-01','00:00:00',3329,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5330,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 18:15:21','drashti','2025-12-01 18:16:25',0),(14358,2526,0,0,4824,'2025-12-01','00:00:00',3330,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5331,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 18:16:11','reception','2025-12-01 18:16:39',0),(14359,2526,0,0,4825,'2025-12-01','00:00:00',3331,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5332,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 18:18:11','janvi','2025-12-01 18:19:21',0),(14360,2526,0,0,4803,'2025-12-01','18:23:37',3320,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5333,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 18:23:37','reception','2025-12-01 18:23:37',0),(14361,2526,0,0,4803,'2025-12-01','18:23:37',3320,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5333,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 18:23:37','reception','2025-12-01 18:23:37',0),(14362,2526,0,0,4803,'2025-12-01','18:23:37',3320,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5333,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 18:23:37','reception','2025-12-01 18:23:37',0),(14363,2526,0,0,4804,'2025-12-01','18:25:59',3034,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5334,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 18:25:59','janvi','2025-12-01 18:25:59',0),(14364,2526,0,0,4826,'2025-12-01','00:00:00',574,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5335,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 18:26:28','drashti','2025-12-01 18:26:45',0),(14365,2526,0,0,4827,'2025-12-01','00:00:00',1238,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5336,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 18:28:00','drashti','2025-12-01 18:28:58',0),(14366,2526,0,0,4828,'2025-12-01','00:00:00',3332,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5351,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-01 18:29:42','manshi','2025-12-01 18:55:01',0),(14367,2526,0,0,4829,'2025-12-01','00:00:00',3333,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5337,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 18:30:21','janvi','2025-12-01 18:30:40',0),(14368,2526,0,0,4830,'2025-12-01','00:00:00',1455,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5338,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 18:31:26','drashti','2025-12-01 18:32:15',0),(14369,2526,0,0,4831,'2025-12-01','00:00:00',3334,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5340,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 18:32:57','janvi','2025-12-01 18:36:26',0),(14370,2526,0,0,4833,'2025-12-01','00:00:00',416,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5339,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 18:34:13','reception','2025-12-01 18:34:35',0),(14371,2526,0,0,4834,'2025-12-01','18:30:00',0,230,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',206,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 18:34:27','riya','2025-12-02 12:52:10',0),(14372,2526,0,0,4834,'2025-12-01','18:30:00',0,230,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',206,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 18:34:27','riya','2025-12-02 12:52:10',0),(14373,2526,0,0,4834,'2025-12-01','18:30:00',0,230,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',206,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 06:04:27','riya','2025-12-02 12:52:10',0),(14374,2526,0,0,4834,'2025-12-01','18:30:00',0,230,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',206,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 06:04:27','riya','2025-12-02 12:52:10',0),(14375,2526,0,0,4834,'2025-12-01','18:30:00',0,230,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',206,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 06:04:27','riya','2025-12-02 12:52:10',0),(14376,2526,0,0,4834,'2025-12-01','18:30:00',0,230,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-01 06:04:27','riya','2025-12-02 12:52:10',0),(14377,2526,0,0,4834,'2025-12-01','18:30:00',0,230,'DRC','DRC0019','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','405','','','',2526,'H','I',206,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 06:04:27','vishal','2025-12-03 21:01:09',0),(14378,2526,0,0,4835,'2025-12-01','00:00:00',3335,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5341,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 18:35:56','drashti','2025-12-01 18:36:57',0),(14379,2526,0,0,4832,'2025-12-01','18:38:32',2681,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',5342,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 18:38:32','janvi','2025-12-01 18:38:32',0),(14380,2526,0,0,4836,'2025-12-01','00:00:00',2268,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5343,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 18:39:52','reception','2025-12-01 18:40:52',0),(14381,2526,0,0,4837,'2025-12-01','00:00:00',1274,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5346,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 18:44:05','janvi','2025-12-01 18:47:06',0),(14382,2526,0,0,4838,'2025-12-01','00:00:00',3336,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5345,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 18:46:27','drashti','2025-12-01 18:54:14',0),(14383,2526,0,0,4839,'2025-12-01','00:00:00',3337,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5348,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 18:49:14','drashti','2025-12-01 18:50:01',0),(14384,2526,0,0,4840,'2025-12-01','00:00:00',303,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5347,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 18:49:15','janvi','2025-12-01 18:49:30',0),(14385,2526,0,0,4841,'2025-12-01','00:00:00',3338,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5350,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 18:51:38','janvi','2025-12-01 18:54:23',0),(14386,2526,0,0,4690,'2025-11-30','18:50:00',0,219,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',197,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 18:51:57','','0000-00-00 00:00:00',0),(14387,2526,0,0,4842,'2025-12-01','00:00:00',2752,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5354,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 18:57:22','reception','2025-12-01 18:57:40',0),(14388,2526,0,0,4807,'2025-12-01','18:57:22',3321,0,'PKG','CASE','H','N',1.00,750,750,'P',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5353,1,250,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 18:57:22','drashti','2025-12-01 18:57:22',0),(14389,2526,0,0,4838,'2025-12-01','18:58:58',3336,0,'PKG','CASE','H','N',1.00,750,750,'P',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5355,1,250,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 18:58:58','drashti','2025-12-01 18:58:58',0),(14390,2526,0,0,4844,'2025-12-01','00:00:00',2005,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 19:02:32','reception','2025-12-01 06:32:32',0),(14391,2526,0,0,4845,'2025-12-01','00:00:00',3339,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5356,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 19:08:56','reception','2025-12-01 19:09:50',0),(14392,2526,0,0,4827,'2025-12-01','19:10:57',1238,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',5357,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 19:10:57','drashti','2025-12-01 19:10:57',0),(14393,2526,0,0,4844,'2025-12-01','19:11:12',2005,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5358,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 19:11:12','janvi','2025-12-01 19:11:12',0),(14394,2526,0,0,4843,'2025-12-01','19:12:46',2115,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5359,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 19:12:46','janvi','2025-12-01 19:12:46',0),(14395,2526,0,0,2879,'2025-11-14','19:11:00',0,146,'ROOM','ROOM0009','H','N',0.50,3200,1600,'A',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 19:13:24','riya','2025-12-01 19:41:30',0),(14396,2526,0,0,2879,'2025-11-14','19:11:00',0,146,'AECO','AECO0008','H','N',0.50,400,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 19:13:24','','0000-00-00 00:00:00',0),(14397,2526,0,0,2879,'2025-11-14','19:12:00',0,146,'CARE','CARE0001','H','N',0.50,200,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 19:13:24','riya','2025-12-01 19:41:30',0),(14398,2526,0,0,4846,'2025-12-01','00:00:00',1480,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5360,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-01 19:13:40','janvi','2025-12-01 19:13:57',0),(14399,2526,0,0,4847,'2025-12-01','00:00:00',3340,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5361,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 19:15:31','shweta','2025-12-01 20:22:18',0),(14400,2526,0,0,4848,'2025-12-01','00:00:00',3341,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5362,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 19:17:10','reception','2025-12-01 19:17:40',0),(14401,2526,0,0,4788,'2025-12-01','19:32:23',3312,0,'PKG','CASE','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5364,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 19:32:23','reception','2025-12-01 19:32:23',0),(14402,2526,0,0,4849,'2025-12-01','00:00:00',3342,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5366,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 19:37:45','drashti','2025-12-01 19:38:36',0),(14403,2526,0,0,4850,'2025-12-01','19:38:34',3124,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5365,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 19:38:34','reception','2025-12-01 19:38:34',0),(14404,2526,0,0,2879,'2025-11-22','19:39:00',0,146,'DRC','DRC0020','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,187,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 19:41:30','','0000-00-00 00:00:00',0),(14405,2526,0,0,2879,'2025-12-01','19:40:00',0,146,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 19:45:21','','0000-00-00 00:00:00',0),(14406,2526,0,0,2879,'2025-12-01','19:41:00',0,146,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 19:45:21','','0000-00-00 00:00:00',0),(14407,2526,0,0,2879,'2025-12-01','19:42:00',0,146,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 19:45:21','','0000-00-00 00:00:00',0),(14408,2526,0,0,2879,'2025-12-01','19:42:00',0,146,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 19:45:21','','0000-00-00 00:00:00',0),(14409,2526,0,0,4849,'2025-12-01','19:46:33',3342,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',5367,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-01 19:46:33','drashti','2025-12-01 19:46:33',0),(14410,2526,0,0,4851,'2025-12-01','00:00:00',2567,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5368,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 19:56:38','reception','2025-12-01 19:56:53',0),(14411,2526,0,0,2879,'2025-11-28','19:58:00',0,146,'WPRC','WPRC0085','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',327,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 20:01:36','','0000-00-00 00:00:00',0),(14412,2526,0,0,4852,'2025-12-01','20:21:53',3021,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5369,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-01 20:21:53','reception','2025-12-01 20:21:53',0),(14413,2526,0,0,4853,'2025-12-02','00:00:00',3343,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5371,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 09:06:00','reception','2025-12-02 09:06:30',0),(14414,2526,0,0,4854,'2025-12-02','00:00:00',3344,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 09:20:36','reception','2025-12-01 20:50:36',0),(14415,2526,0,0,4854,'2025-12-02','09:22:03',3344,0,'SURG','SURG0005','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5372,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 09:22:03','reception','2025-12-02 09:22:03',0),(14416,2526,0,0,4855,'2025-12-02','09:30:00',0,231,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',0,'','',0,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 09:39:14','riya','2025-12-03 10:19:25',0),(14417,2526,0,0,4855,'2025-12-02','09:30:00',0,231,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',0,'','',0,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 09:39:14','riya','2025-12-03 10:19:25',0),(14418,2526,0,0,4855,'2025-12-02','09:30:00',0,231,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',0,'','',0,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 21:09:14','riya','2025-12-03 10:19:25',0),(14419,2526,0,0,4855,'2025-12-02','09:30:00',0,231,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',0,'','',0,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 21:09:14','riya','2025-12-03 10:19:25',0),(14420,2526,0,0,4855,'2025-12-02','09:30:00',0,231,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',0,'','',0,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 21:09:14','riya','2025-12-03 10:19:25',0),(14421,2526,0,0,4855,'2025-12-02','09:30:00',0,231,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','406','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 21:09:14','riya','2025-12-03 10:19:25',0),(14422,2526,0,0,4855,'2025-12-02','09:30:00',0,231,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','406','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 21:09:14','riya','2025-12-03 10:19:25',0),(14423,2526,0,0,4856,'2025-12-02','00:00:00',3345,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5373,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 09:58:28','shweta','2025-12-02 09:59:44',0),(14424,2526,0,0,4857,'2025-12-02','10:00:00',0,232,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',210,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 10:00:10','riya','2025-12-03 12:26:13',0),(14425,2526,0,0,4857,'2025-12-02','10:00:00',0,232,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',210,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 10:00:10','riya','2025-12-03 12:26:13',0),(14426,2526,0,0,4857,'2025-12-02','10:00:00',0,232,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',210,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 21:30:10','riya','2025-12-03 12:26:13',0),(14427,2526,0,0,4857,'2025-12-02','10:00:00',0,232,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',210,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 21:30:10','riya','2025-12-03 12:26:13',0),(14428,2526,0,0,4857,'2025-12-02','10:00:00',0,232,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',210,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 21:30:10','riya','2025-12-03 12:26:13',0),(14429,2526,0,0,4857,'2025-12-02','10:00:00',0,232,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',2526,'H','I',210,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 21:30:10','riya','2025-12-03 12:26:13',0),(14430,2526,0,0,4857,'2025-12-02','10:00:00',0,232,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',2526,'H','I',210,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 21:30:10','riya','2025-12-03 12:26:13',0),(14431,2526,0,0,4858,'2025-12-02','00:00:00',3346,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5374,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 10:04:28','reception','2025-12-02 10:04:54',0),(14432,2526,0,0,4859,'2025-12-02','00:00:00',3347,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5375,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 10:06:20','reception','2025-12-02 10:06:42',0),(14433,2526,0,0,4860,'2025-12-02','00:00:00',1505,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5376,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 10:08:28','reception','2025-12-02 10:08:47',0),(14434,2526,0,0,4861,'2025-12-02','00:00:00',1335,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5377,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 10:08:39','janvi','2025-12-02 10:09:01',0),(14435,2526,0,0,4862,'2025-12-02','00:00:00',3348,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5378,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 10:15:15','janvi','2025-12-02 10:16:48',0),(14436,2526,0,0,4863,'2025-12-02','10:15:00',0,233,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',218,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 10:22:43','riya','2025-12-03 11:24:43',0),(14437,2526,0,0,4863,'2025-12-02','10:15:00',0,233,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',218,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 10:22:43','riya','2025-12-03 11:24:43',0),(14438,2526,0,0,4863,'2025-12-02','10:15:00',0,233,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','213','','','',2526,'H','I',218,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 21:52:43','riya','2025-12-03 11:24:43',0),(14439,2526,0,0,4863,'2025-12-02','10:15:00',0,233,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','213','','','',2526,'H','I',218,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 21:52:43','riya','2025-12-03 11:24:43',0),(14440,2526,0,0,4863,'2025-12-02','10:15:00',0,233,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','213','','','',2526,'H','I',218,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 21:52:43','riya','2025-12-03 11:24:43',0),(14441,2526,0,0,4863,'2025-12-02','10:15:00',0,233,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',218,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 21:52:43','riya','2025-12-03 11:24:43',0),(14442,2526,0,0,4863,'2025-12-02','10:15:00',0,233,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','213','','','',2526,'H','I',218,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 21:52:43','riya','2025-12-03 11:24:43',0),(14443,2526,0,0,4864,'2025-12-02','00:00:00',3349,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5379,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 10:23:39','reception','2025-12-02 10:23:53',0),(14444,2526,0,0,4865,'2025-12-02','00:00:00',2842,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',5380,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 10:28:07','reception','2025-12-02 10:28:49',0),(14445,2526,0,0,4866,'2025-12-02','10:29:07',3072,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5381,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 10:29:07','janvi','2025-12-02 10:29:07',0),(14446,2526,0,0,4867,'2025-12-02','00:00:00',3350,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5382,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 10:31:11','reception','2025-12-02 10:33:23',0),(14447,2526,0,0,4868,'2025-12-02','10:30:00',0,234,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',200,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 10:33:56','riya','2025-12-02 16:50:50',0),(14448,2526,0,0,4868,'2025-12-02','10:30:00',0,234,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',200,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 10:33:56','riya','2025-12-02 16:50:50',0),(14449,2526,0,0,4868,'2025-12-02','10:30:00',0,234,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',200,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:03:56','riya','2025-12-02 16:50:50',0),(14450,2526,0,0,4868,'2025-12-02','10:30:00',0,234,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',200,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:03:57','riya','2025-12-02 16:50:50',0),(14451,2526,0,0,4868,'2025-12-02','10:30:00',0,234,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',200,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:03:57','riya','2025-12-02 16:50:50',0),(14452,2526,0,0,4868,'2025-12-02','10:30:00',0,234,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','305','','','',2526,'H','I',200,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:03:57','riya','2025-12-02 16:50:50',0),(14453,2526,0,0,4868,'2025-12-02','10:30:00',0,234,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:03:57','riya','2025-12-02 16:50:50',0),(14454,2526,0,0,4869,'2025-12-02','00:00:00',755,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5385,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 10:39:17','reception','2025-12-02 10:43:17',0),(14455,2526,0,0,4870,'2025-12-02','00:00:00',1440,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5383,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 10:41:49','shweta','2025-12-02 10:59:30',0),(14456,2526,0,0,4871,'2025-12-02','00:00:00',3351,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5384,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 10:42:04','reception','2025-12-02 10:42:44',0),(14457,2526,0,0,4872,'2025-12-02','00:00:00',3352,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5386,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 10:44:35','janvi','2025-12-02 10:45:44',0),(14458,2526,0,0,4873,'2025-12-02','00:00:00',1227,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5387,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 10:47:00','reception','2025-12-02 10:47:14',0),(14459,2526,0,0,4874,'2025-12-02','00:00:00',1346,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5388,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 10:48:11','reception','2025-12-02 10:49:45',0),(14460,2526,0,0,4875,'2025-12-02','00:00:00',3353,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5397,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 10:48:30','janvi','2025-12-02 11:10:24',0),(14461,2526,0,0,4876,'2025-12-02','00:00:00',3354,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5389,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 10:50:50','reception','2025-12-02 10:51:04',0),(14462,2526,0,0,4877,'2025-12-02','00:00:00',3355,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5390,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 10:51:16','shweta','2025-12-02 10:52:38',0),(14463,2526,0,0,4853,'2025-12-02','11:00:19',3343,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5392,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:00:19','reception','2025-12-02 11:00:19',0),(14464,2526,0,0,4853,'2025-12-02','11:00:19',3343,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5392,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:00:19','reception','2025-12-02 11:00:19',0),(14465,2526,0,0,4853,'2025-12-02','11:00:19',3343,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5392,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:00:19','reception','2025-12-02 11:00:19',0),(14466,2526,0,0,4879,'2025-12-02','00:00:00',625,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5393,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:04:30','reception','2025-12-02 11:04:48',0),(14467,2526,0,0,4880,'2025-12-02','00:00:00',951,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5394,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 11:04:31','shweta','2025-12-02 11:06:07',0),(14468,2526,0,0,4881,'2025-12-02','00:00:00',1440,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5395,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 11:06:32','shweta','2025-12-02 11:07:02',0),(14469,2526,0,0,4882,'2025-12-02','00:00:00',3356,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5396,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:07:53','reception','2025-12-02 11:08:28',0),(14470,2526,0,0,4867,'2025-12-02','11:11:18',3350,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5398,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:11:18','reception','2025-12-02 11:11:18',0),(14471,2526,0,0,4867,'2025-12-02','11:11:18',3350,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5398,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:11:18','reception','2025-12-02 11:11:18',0),(14472,2526,0,0,4867,'2025-12-02','11:11:18',3350,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5398,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:11:18','reception','2025-12-02 11:11:18',0),(14473,2526,0,0,4802,'2025-12-02','11:10:00',3305,229,'SURG','SURG0014','H','N',1.00,20000,20000,'P',0,0,0.00,0.00,20000.00,20000,3,0,0,'',0,0,'','','','','',2526,'H','I',205,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:11:28','','0000-00-00 00:00:00',0),(14474,2526,0,0,4802,'2025-12-02','11:10:00',3305,229,'SURG','SURG0015','H','N',1.00,5000,5000,'A',0,0,0.00,0.00,5000.00,5000,3,0,0,'',0,0,'','','','','',2526,'H','I',205,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:11:28','vishal','2025-12-03 20:42:15',0),(14475,2526,0,0,4883,'2025-12-02','00:00:00',3357,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5399,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 11:13:04','janvi','2025-12-02 11:13:29',0),(14476,2526,0,0,4266,'2025-12-02','10:15:00',0,203,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',0,'','',0,66,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:43:13','riya','2025-12-02 12:04:25',0),(14477,2526,0,0,4266,'2025-12-02','10:15:00',0,203,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',0,'','',0,67,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:43:13','riya','2025-12-02 12:04:25',0),(14478,2526,0,0,4266,'2025-12-02','10:15:00',0,203,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:43:13','riya','2025-12-02 11:39:54',0),(14479,2526,0,0,4266,'2025-12-02','10:15:00',0,203,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:43:13','riya','2025-12-02 11:39:54',0),(14480,2526,0,0,4266,'2025-12-02','10:15:00',0,203,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','211','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:43:13','riya','2025-12-02 11:39:54',0),(14481,2526,0,0,4688,'2025-12-02','10:30:00',0,218,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',0,'','',0,17,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:43:13','riya','2025-12-02 12:02:40',0),(14482,2526,0,0,4688,'2025-12-02','10:30:00',0,218,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',0,'','',0,18,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:43:13','riya','2025-12-02 12:02:40',0),(14483,2526,0,0,4688,'2025-12-02','10:30:00',0,218,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',0,'','',0,19,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:43:13','riya','2025-12-02 12:02:40',0),(14484,2526,0,0,4688,'2025-12-02','10:30:00',0,218,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','209','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:43:13','riya','2025-12-02 11:24:27',0),(14485,2526,0,0,4688,'2025-12-02','10:30:00',0,218,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','209','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:43:13','riya','2025-12-02 12:03:08',0),(14486,2526,0,0,4711,'2025-12-02','09:30:00',0,223,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','310','','','',2526,'H','I',202,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:43:14','riya','2025-12-03 10:46:47',0),(14487,2526,0,0,4711,'2025-12-02','09:30:00',0,223,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','310','','','',2526,'H','I',202,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:43:14','riya','2025-12-03 10:46:47',0),(14488,2526,0,0,4711,'2025-12-02','09:30:00',0,223,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','310','','','',2526,'H','I',202,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:43:14','riya','2025-12-03 10:46:47',0),(14489,2526,0,0,4711,'2025-12-02','09:30:00',0,223,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','310','','','',2526,'H','I',202,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:43:14','riya','2025-12-03 10:46:47',0),(14490,2526,0,0,4711,'2025-12-02','09:30:00',0,223,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','310','','','',2526,'H','I',202,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 22:43:14','riya','2025-12-03 10:46:47',0),(14491,2526,0,0,4884,'2025-12-02','00:00:00',3358,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5400,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:14:18','reception','2025-12-02 11:14:52',0),(14492,2526,0,0,4885,'2025-12-02','11:21:55',3071,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5401,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:21:55','reception','2025-12-02 11:21:55',0),(14493,2526,0,0,4886,'2025-12-02','00:00:00',3359,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5402,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:23:11','reception','2025-12-02 11:23:34',0),(14494,2526,0,0,4688,'2025-12-01','11:23:00',0,218,'USG','USG0092','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:24:27','','0000-00-00 00:00:00',0),(14495,2526,0,0,4878,'2025-12-02','11:25:06',2874,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5403,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 11:25:06','janvi','2025-12-02 11:25:06',0),(14496,2526,0,0,4887,'2025-12-02','00:00:00',3360,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5404,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:25:45','reception','2025-12-02 11:26:08',0),(14497,2526,0,0,4888,'2025-12-02','00:00:00',3361,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5406,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:27:43','reception','2025-12-02 11:28:29',0),(14498,2526,0,0,4889,'2025-12-02','00:00:00',1432,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',5405,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-02 11:27:54','manshi','2025-12-02 11:28:13',0),(14499,2526,0,0,4751,'2025-12-01','11:25:00',0,224,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',223,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:29:03','','0000-00-00 00:00:00',0),(14500,2526,0,0,4751,'2025-12-01','11:25:00',0,224,'ROOM','ROOM0008','H','N',8.00,100,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,2,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:29:03','riya','2025-12-04 11:07:20',0),(14501,2526,0,0,4751,'2025-12-01','11:25:00',0,224,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:29:03','','0000-00-00 00:00:00',0),(14502,2526,0,0,4751,'2025-12-01','11:26:00',0,224,'WPRC','WPRC0088','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,39,0,0,'',0,0,'','','','','',2526,'H','I',223,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:29:03','','0000-00-00 00:00:00',0),(14503,2526,0,0,4751,'2025-12-01','11:26:00',0,224,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:29:03','','0000-00-00 00:00:00',0),(14504,2526,0,0,4751,'2025-12-01','11:27:00',0,224,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:29:03','','0000-00-00 00:00:00',0),(14505,2526,0,0,4751,'2025-12-02','11:27:00',0,224,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:29:03','','0000-00-00 00:00:00',0),(14506,2526,0,0,4751,'2025-12-01','11:28:00',0,224,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:29:03','','0000-00-00 00:00:00',0),(14507,2526,0,0,4751,'2025-12-02','11:28:00',0,224,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:29:03','','0000-00-00 00:00:00',0),(14508,2526,0,0,4751,'2025-12-02','11:28:00',0,224,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,18,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:29:03','riya','2025-12-06 12:39:56',0),(14509,2526,0,0,4751,'2025-12-01','11:28:00',0,224,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,19,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:29:03','','0000-00-00 00:00:00',0),(14510,2526,0,0,4890,'2025-12-02','00:00:00',3362,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5407,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-02 11:31:19','manshi','2025-12-02 11:31:44',0),(14511,2526,0,0,4891,'2025-12-02','00:00:00',3363,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5410,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 11:33:04','shweta','2025-12-02 11:36:12',0),(14512,2526,0,0,4892,'2025-12-02','00:00:00',3364,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5408,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:33:36','reception','2025-12-02 11:34:49',0),(14513,2526,0,0,4893,'2025-12-02','00:00:00',3365,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5409,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 11:34:02','janvi','2025-12-02 11:35:09',0),(14514,2526,0,0,4894,'2025-12-02','00:00:00',3366,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5411,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:36:39','reception','2025-12-02 11:37:11',0),(14515,2526,0,0,4017,'2025-12-02','11:33:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,98,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:37:01','','0000-00-00 00:00:00',0),(14516,2526,0,0,4017,'2025-12-01','11:34:00',0,187,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,99,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:37:01','','0000-00-00 00:00:00',0),(14517,2526,0,0,4017,'2025-12-02','11:34:00',0,187,'WPRC','WPRC0089','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,100,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:37:01','','0000-00-00 00:00:00',0),(14518,2526,0,0,4017,'2025-12-02','11:34:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,101,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:37:01','','0000-00-00 00:00:00',0),(14519,2526,0,0,4017,'2025-12-02','11:34:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,102,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:37:01','','0000-00-00 00:00:00',0),(14520,2526,0,0,4017,'2025-12-02','11:34:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,103,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:37:01','','0000-00-00 00:00:00',0),(14521,2526,0,0,4017,'2025-12-02','11:35:00',0,187,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,105,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:37:01','vishal','2025-12-21 11:20:51',0),(14522,2526,0,0,4017,'2025-12-01','11:35:00',0,187,'WPRC','WPRC0110','H','N',1.00,7000,7000,'A',0,0,0.00,0.00,7000.00,7000,115,0,0,'',0,0,'','','','','',0,'','',0,94,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:37:01','vishal','2025-12-21 11:20:51',0),(14523,2526,0,0,4895,'2025-12-02','00:00:00',3367,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5412,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 11:39:11','shweta','2025-12-02 11:41:37',0),(14524,2526,0,0,4266,'2025-12-02','11:39:00',0,203,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:39:54','vishal','2025-12-03 19:45:19',0),(14525,2526,0,0,4896,'2025-12-02','00:00:00',3368,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5413,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:41:20','reception','2025-12-02 11:42:03',0),(14526,2526,0,0,4781,'2025-12-01','11:41:00',0,228,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:43:54','','0000-00-00 00:00:00',0),(14527,2526,0,0,4781,'2025-12-02','11:41:00',0,228,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:43:54','','0000-00-00 00:00:00',0),(14528,2526,0,0,4781,'2025-12-01','11:41:00',0,228,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:43:54','','0000-00-00 00:00:00',0),(14529,2526,0,0,4781,'2025-12-01','11:42:00',0,228,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:43:54','','0000-00-00 00:00:00',0),(14530,2526,0,0,4781,'2025-12-02','11:42:00',0,228,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:43:54','vishal','2025-12-05 12:45:52',0),(14531,2526,0,0,4781,'2025-12-02','11:42:00',0,228,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:43:54','','0000-00-00 00:00:00',0),(14532,2526,0,0,4781,'2025-12-01','11:42:00',0,228,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:43:54','','0000-00-00 00:00:00',0),(14533,2526,0,0,4781,'2025-12-01','11:43:00',0,228,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 11:43:54','','0000-00-00 00:00:00',0),(14534,2526,0,0,4897,'2025-12-02','00:00:00',3369,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',5414,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-02 11:46:09','manshi','2025-12-02 11:46:37',0),(14535,2526,0,0,4898,'2025-12-02','00:00:00',3370,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5415,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:49:36','reception','2025-12-02 11:50:13',0),(14536,2526,0,0,4899,'2025-12-02','00:00:00',3371,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5416,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-02 11:53:22','manshi','2025-12-02 11:55:20',0),(14537,2526,0,0,4900,'2025-12-02','00:00:00',3372,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5418,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 11:55:39','shweta','2025-12-02 11:56:41',0),(14538,2526,0,0,4884,'2025-12-02','11:56:12',3358,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5417,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:56:12','reception','2025-12-02 11:56:12',0),(14539,2526,0,0,4884,'2025-12-02','11:56:12',3358,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5417,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 11:56:12','reception','2025-12-02 11:56:12',0),(14540,2526,0,0,4901,'2025-12-02','00:00:00',3373,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5419,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 12:00:15','reception','2025-12-02 12:00:36',0),(14541,2526,0,0,4902,'2025-12-02','00:00:00',3374,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5420,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 12:00:21','shweta','2025-12-02 12:00:50',0),(14542,2526,0,0,4688,'2025-12-02','12:01:00',0,218,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:02:40','','0000-00-00 00:00:00',0),(14543,2526,0,0,4688,'2025-12-02','12:01:00',0,218,'CARE','CARE0006','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:02:40','','0000-00-00 00:00:00',0),(14544,2526,0,0,4688,'2025-12-02','12:01:00',0,218,'CARE','CARE0002','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:02:40','','0000-00-00 00:00:00',0),(14545,2526,0,0,4903,'2025-12-02','00:00:00',3375,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5421,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 12:04:03','reception','2025-12-02 12:04:27',0),(14546,2526,0,0,4266,'2025-12-02','12:03:00',0,203,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:04:25','vishal','2025-12-03 19:45:19',0),(14547,2526,0,0,4266,'2025-12-02','12:04:00',0,203,'CARE','CARE0006','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:04:25','','0000-00-00 00:00:00',0),(14548,2526,0,0,4691,'2025-12-02','11:15:00',0,220,'ROOM','ROOM0009','H','N',0.50,2900,1450,'P',0,0,0.00,0.00,1450.00,1450,9999,0,0,'',0,0,'','402','','','',2526,'H','I',201,23,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 23:35:50','vishal','2025-12-02 20:58:05',0),(14549,2526,0,0,4691,'2025-12-02','11:15:00',0,220,'AECO','AECO0008','H','N',0.50,300,150,'P',0,0,0.00,0.00,150.00,150,9999,0,0,'',0,0,'','402','','','',2526,'H','I',201,22,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 23:35:50','vishal','2025-12-02 20:58:05',0),(14550,2526,0,0,4691,'2025-12-02','11:15:00',0,220,'CARE','CARE0001','H','N',0.50,200,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','402','','','',2526,'H','I',201,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 23:35:50','vishal','2025-12-02 19:49:25',0),(14551,2526,0,0,4691,'2025-12-02','11:15:00',0,220,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',201,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 23:35:50','vishal','2025-12-02 19:45:23',0),(14552,2526,0,0,4691,'2025-12-02','11:15:00',0,220,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',201,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 23:35:50','vishal','2025-12-02 19:45:23',0),(14553,2526,0,0,4751,'2025-12-02','12:00:00',0,224,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',223,20,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 23:35:50','riya','2025-12-04 11:07:20',0),(14554,2526,0,0,4751,'2025-12-02','12:00:00',0,224,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',223,21,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 23:35:50','riya','2025-12-04 11:07:20',0),(14555,2526,0,0,4751,'2025-12-02','12:00:00',0,224,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',223,22,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 23:35:50','riya','2025-12-04 11:07:20',0),(14556,2526,0,0,4751,'2025-12-02','12:00:00',0,224,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',223,23,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 23:35:50','riya','2025-12-04 11:07:20',0),(14557,2526,0,0,4751,'2025-12-02','12:00:00',0,224,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',223,24,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-01 23:35:50','riya','2025-12-04 11:07:20',0),(14558,2526,0,0,4904,'2025-12-02','00:00:00',3376,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5422,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 12:06:43','janvi','2025-12-02 12:08:15',0),(14559,2526,0,0,4887,'2025-12-02','12:09:51',3360,0,'NEU1','NEU10019','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',5423,1,400,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 12:09:51','reception','2025-12-02 12:09:51',0),(14560,2526,0,0,4887,'2025-12-02','12:09:51',3360,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',5423,2,600,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 12:09:51','reception','2025-12-02 12:09:51',0),(14561,2526,0,0,4905,'2025-12-02','00:00:00',3377,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5424,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 12:13:12','reception','2025-12-02 12:13:26',0),(14562,2526,0,0,4906,'2025-12-02','00:00:00',3378,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5425,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 12:20:37','reception','2025-12-02 12:20:55',0),(14563,2526,0,0,4907,'2025-12-02','00:00:00',3379,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',5426,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 12:23:24','shweta','2025-12-02 12:24:44',0),(14564,2526,0,0,4888,'2025-12-02','12:25:28',3361,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5427,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 12:25:28','reception','2025-12-02 12:25:28',0),(14565,2526,0,0,4888,'2025-12-02','12:25:28',3361,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5427,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 12:25:28','reception','2025-12-02 12:25:28',0),(14566,2526,0,0,4909,'2025-12-02','00:00:00',2848,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',5428,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 12:30:01','reception','2025-12-02 12:31:23',0),(14567,2526,0,0,4910,'2025-12-02','00:00:00',3380,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5429,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 12:32:28','janvi','2025-12-02 12:34:26',0),(14568,2526,0,0,4911,'2025-12-02','00:00:00',3381,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5430,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 12:38:20','reception','2025-12-02 12:38:34',0),(14569,2526,0,0,4674,'2025-11-29','12:38:00',0,215,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',199,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:39:10','','0000-00-00 00:00:00',0),(14570,2526,0,0,4674,'2025-11-30','12:38:00',0,215,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',199,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:39:10','riya','2025-12-02 12:45:04',0),(14571,2526,0,0,4674,'2025-12-01','12:39:00',0,215,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',199,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:45:04','','0000-00-00 00:00:00',0),(14572,2526,0,0,4674,'2025-12-02','12:40:00',0,215,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',199,19,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:45:04','','0000-00-00 00:00:00',0),(14573,2526,0,0,4674,'2025-12-02','12:40:00',0,215,'USG','USG0092','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',199,20,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:45:04','','0000-00-00 00:00:00',0),(14574,2526,0,0,4674,'2025-12-01','12:41:00',0,215,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',199,21,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:45:04','','0000-00-00 00:00:00',0),(14575,2526,0,0,4674,'2025-11-29','12:42:00',0,215,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',199,22,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:45:04','','0000-00-00 00:00:00',0),(14576,2526,0,0,4674,'2025-12-01','12:42:00',0,215,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',199,23,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:45:04','','0000-00-00 00:00:00',0),(14577,2526,0,0,4674,'2025-11-29','12:42:00',0,215,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,8,0,0,'',0,0,'','','','','',2526,'H','I',199,24,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:45:04','','0000-00-00 00:00:00',0),(14578,2526,0,0,4674,'2025-12-02','12:43:00',0,215,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,38,0,0,'',0,0,'','','','','',2526,'H','I',199,25,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:45:04','','0000-00-00 00:00:00',0),(14579,2526,0,0,4674,'2025-11-30','12:43:00',0,215,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,78,0,0,'',0,0,'','','','','',2526,'H','I',199,26,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:45:04','','0000-00-00 00:00:00',0),(14580,2526,0,0,4674,'2025-12-01','12:43:00',0,215,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',199,27,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:45:04','','0000-00-00 00:00:00',0),(14581,2526,0,0,4674,'2025-12-01','12:44:00',0,215,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',199,28,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:45:04','','0000-00-00 00:00:00',0),(14582,2526,0,0,4674,'2025-11-30','12:44:00',0,215,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',199,29,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:45:04','riya','2025-12-02 14:48:02',0),(14583,2526,0,0,4912,'2025-12-02','00:00:00',2279,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5431,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 12:49:12','reception','2025-12-02 12:50:08',0),(14584,2526,0,0,4694,'2025-11-30','12:47:00',0,222,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:49:34','','0000-00-00 00:00:00',0),(14585,2526,0,0,4694,'2025-12-01','12:47:00',0,222,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:49:34','','0000-00-00 00:00:00',0),(14586,2526,0,0,4694,'2025-12-01','12:47:00',0,222,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:49:34','','0000-00-00 00:00:00',0),(14587,2526,0,0,4694,'2025-12-02','12:47:00',0,222,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:49:34','','0000-00-00 00:00:00',0),(14588,2526,0,0,4694,'2025-12-02','12:48:00',0,222,'XRY','XRY0045','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:49:34','','0000-00-00 00:00:00',0),(14589,2526,0,0,4913,'2025-12-02','00:00:00',3382,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5432,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 12:49:47','janvi','2025-12-02 13:06:44',0),(14590,2526,0,0,4914,'2025-12-02','00:00:00',3383,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',5434,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-02 12:51:06','manshi','2025-12-02 12:56:08',0),(14591,2526,0,0,4834,'2025-12-01','12:51:00',0,230,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',206,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:52:10','','0000-00-00 00:00:00',0),(14592,2526,0,0,4834,'2025-12-02','12:51:00',0,230,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',206,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 12:52:10','','0000-00-00 00:00:00',0),(14593,2526,0,0,4907,'2025-12-02','12:54:11',3379,0,'OPWD','OPWD0034','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,4,0,0,'',0,0,'','','','','',2526,'H','O',5433,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 12:54:11','janvi','2025-12-02 12:54:11',0),(14594,2526,0,0,4908,'2025-12-02','12:58:36',3265,0,'XRY','XRY0045','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',5435,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-02 12:58:36','manshi','2025-12-02 12:58:36',0),(14595,2526,0,0,4908,'2025-12-02','12:58:36',3265,0,'OPWD','OPWD0023','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5435,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-02 12:58:36','manshi','2025-12-02 12:58:36',0),(14596,2526,0,0,4915,'2025-12-02','00:00:00',3384,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',5436,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-02 13:00:06','manshi','2025-12-02 13:00:27',0),(14597,2526,0,0,4693,'2025-12-30','12:58:00',0,221,'WPRC','WPRC0086','H','N',2.00,200,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',213,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 13:00:38','riya','2025-12-04 20:15:56',0),(14598,2526,0,0,4693,'2025-12-02','12:58:00',0,221,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',213,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 13:00:38','','0000-00-00 00:00:00',0),(14599,2526,0,0,4693,'2025-12-01','12:59:00',0,221,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',213,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 13:00:38','','0000-00-00 00:00:00',0),(14600,2526,0,0,4693,'2025-12-02','12:59:00',0,221,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',213,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 13:00:38','','0000-00-00 00:00:00',0),(14601,2526,0,0,4916,'2025-12-02','13:02:09',1501,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5437,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 13:02:09','reception','2025-12-02 13:02:09',0),(14602,2526,0,0,4916,'2025-12-02','13:02:09',1501,0,'NEU1','NEU10020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5437,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 13:02:09','reception','2025-12-02 13:02:09',0),(14603,2526,0,0,4917,'2025-12-02','00:00:00',2952,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 13:04:16','janvi','2025-12-02 00:34:16',0),(14604,2526,0,0,4694,'2025-12-01','13:07:00',0,222,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',262,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 13:07:43','','0000-00-00 00:00:00',0),(14605,2526,0,0,4913,'2025-12-02','00:00:00',3382,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5439,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 13:07:55','janvi','2025-12-02 13:08:24',0),(14606,2526,0,0,3909,'2025-12-02','13:08:00',0,181,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 13:10:59','','0000-00-00 00:00:00',0),(14607,2526,0,0,3909,'2025-12-01','13:08:00',0,181,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 13:10:59','riya','2025-12-03 13:57:39',0),(14608,2526,0,0,3909,'2025-12-01','13:09:00',0,181,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 13:10:59','','0000-00-00 00:00:00',0),(14609,2526,0,0,3909,'2025-12-02','13:09:00',0,181,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 13:10:59','','0000-00-00 00:00:00',0),(14610,2526,0,0,3909,'2025-12-02','13:09:00',0,181,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,105,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 13:10:59','riya','2025-12-03 13:57:39',0),(14611,2526,0,0,3909,'2025-12-01','13:10:00',0,181,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 13:10:59','','0000-00-00 00:00:00',0),(14612,2526,0,0,4918,'2025-12-02','13:13:03',303,0,'OPWD','OPWD0029','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',5440,1,500,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 13:13:03','janvi','2025-12-02 13:13:03',0),(14613,2526,0,0,4911,'2025-12-02','13:23:29',3381,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5441,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 13:23:29','reception','2025-12-02 13:23:29',0),(14614,2526,0,0,4911,'2025-12-02','13:23:29',3381,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5441,2,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 13:23:29','reception','2025-12-02 13:23:29',0),(14615,2526,0,0,4919,'2025-12-02','00:00:00',1054,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5442,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 13:32:10','reception','2025-12-02 13:35:02',0),(14616,2526,0,0,4906,'2025-12-02','13:36:30',3378,0,'OPWD','OPWD0030','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',5443,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 13:36:30','janvi','2025-12-02 13:36:30',0),(14617,2526,0,0,4920,'2025-12-02','13:30:00',0,235,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',212,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 13:43:38','riya','2025-12-02 13:46:26',0),(14618,2526,0,0,4920,'2025-12-02','13:30:00',0,235,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',212,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 13:43:38','riya','2025-12-02 13:46:26',0),(14619,2526,0,0,4920,'2025-12-02','13:30:00',0,235,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','302','','','',2526,'H','I',212,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 01:13:38','riya','2025-12-02 13:46:26',0),(14620,2526,0,0,4920,'2025-12-02','13:30:00',0,235,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','302','','','',2526,'H','I',212,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 01:13:38','riya','2025-12-02 13:46:26',0),(14621,2526,0,0,4920,'2025-12-02','13:30:00',0,235,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','302','','','',2526,'H','I',212,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 01:13:38','riya','2025-12-02 13:46:26',0),(14622,2526,0,0,4920,'2025-12-02','13:30:00',0,235,'DRC','DRC0018','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,8,0,0,'',0,0,'','302','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 01:13:38','riya','2025-12-04 13:56:53',0),(14623,2526,0,0,4920,'2025-12-02','13:30:00',0,235,'DRC','DRC0019','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,8,0,0,'',0,0,'','302','','','',2526,'H','I',212,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 01:13:38','riya','2025-12-04 13:56:53',0),(14624,2526,0,0,4905,'2025-12-02','13:48:46',3377,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',5444,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 13:48:46','reception','2025-12-02 13:48:46',0),(14625,2526,0,0,4921,'2025-12-02','00:00:00',3385,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 13:52:14','shweta','2025-12-02 01:22:14',0),(14626,2526,0,0,4921,'2025-12-02','13:53:06',3385,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',5445,1,500,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 13:53:05','shweta','2025-12-02 13:53:05',0),(14627,2526,0,0,4780,'2025-12-01','14:03:00',0,227,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',198,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 14:04:48','','0000-00-00 00:00:00',0),(14628,2526,0,0,4674,'2025-12-02','14:45:00',0,215,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',199,30,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(14629,2526,0,0,4674,'2025-12-02','14:47:00',0,215,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',199,31,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 14:48:02','','0000-00-00 00:00:00',0),(14630,2526,0,0,3909,'2025-12-02','15:00:00',0,181,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:34','riya','2025-12-03 13:57:39',0),(14631,2526,0,0,3909,'2025-12-02','15:00:00',0,181,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:34','riya','2025-12-03 13:57:39',0),(14632,2526,0,0,3909,'2025-12-02','15:00:00',0,181,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:34','riya','2025-12-03 13:57:39',0),(14633,2526,0,0,3909,'2025-12-02','15:00:00',0,181,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:34','riya','2025-12-03 13:57:39',0),(14634,2526,0,0,3909,'2025-12-02','15:00:00',0,181,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',203,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:34','riya','2025-12-03 13:57:39',0),(14635,2526,0,0,4017,'2025-12-02','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,106,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:35','riya','2025-12-03 12:29:31',0),(14636,2526,0,0,4017,'2025-12-02','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,107,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:35','riya','2025-12-03 12:29:31',0),(14637,2526,0,0,4017,'2025-12-02','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,108,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:35','riya','2025-12-03 12:29:31',0),(14638,2526,0,0,4017,'2025-12-02','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,109,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:35','riya','2025-12-03 12:29:31',0),(14639,2526,0,0,4017,'2025-12-02','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,110,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:35','vishal','2025-12-21 11:20:51',0),(14640,2526,0,0,4693,'2025-12-02','13:30:00',0,221,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','riya','2025-12-03 12:30:35',0),(14641,2526,0,0,4693,'2025-12-02','13:30:00',0,221,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','riya','2025-12-03 12:30:35',0),(14642,2526,0,0,4693,'2025-12-02','13:30:00',0,221,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','riya','2025-12-03 12:30:35',0),(14643,2526,0,0,4693,'2025-12-02','13:30:00',0,221,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','riya','2025-12-03 12:30:35',0),(14644,2526,0,0,4693,'2025-12-02','13:30:00',0,221,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','riya','2025-12-03 12:30:35',0),(14645,2526,0,0,4777,'2025-12-02','14:00:00',0,225,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','D',271,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','riya','2025-12-08 15:38:08',0),(14646,2526,0,0,4777,'2025-12-02','14:00:00',0,225,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','D',271,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','riya','2025-12-08 15:38:08',0),(14647,2526,0,0,4777,'2025-12-02','14:00:00',0,225,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','D',271,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','riya','2025-12-08 15:38:08',0),(14648,2526,0,0,4777,'2025-12-02','14:00:00',0,225,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','D',271,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','riya','2025-12-08 15:38:08',0),(14649,2526,0,0,4777,'2025-12-02','14:00:00',0,225,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','D',271,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','riya','2025-12-08 15:38:08',0),(14650,2526,0,0,4778,'2025-12-02','14:30:00',0,226,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','riya','2025-12-04 10:45:43',0),(14651,2526,0,0,4778,'2025-12-02','14:30:00',0,226,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','riya','2025-12-04 10:45:43',0),(14652,2526,0,0,4778,'2025-12-02','14:30:00',0,226,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','riya','2025-12-04 10:45:43',0),(14653,2526,0,0,4778,'2025-12-02','14:30:00',0,226,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','riya','2025-12-04 10:45:43',0),(14654,2526,0,0,4778,'2025-12-02','14:30:00',0,226,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','riya','2025-12-04 10:45:43',0),(14655,2526,0,0,4781,'2025-12-02','15:00:00',0,228,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','riya','2025-12-03 11:51:45',0),(14656,2526,0,0,4781,'2025-12-02','15:00:00',0,228,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','vishal','2025-12-05 14:23:08',0),(14657,2526,0,0,4781,'2025-12-02','15:00:00',0,228,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','vishal','2025-12-05 14:23:08',0),(14658,2526,0,0,4781,'2025-12-02','15:00:00',0,228,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','riya','2025-12-03 11:51:45',0),(14659,2526,0,0,4781,'2025-12-02','15:00:00',0,228,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 02:33:36','riya','2025-12-03 11:51:45',0),(14660,2526,0,0,3611,'2025-11-24','15:56:00',0,171,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,62,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:03:49','','0000-00-00 00:00:00',0),(14661,2526,0,0,3611,'2025-11-24','15:56:00',0,171,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,62,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:03:49','','0000-00-00 00:00:00',0),(14662,2526,0,0,3611,'2025-11-25','15:56:00',0,171,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,62,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:03:49','','0000-00-00 00:00:00',0),(14663,2526,0,0,3611,'2025-11-26','15:59:00',0,171,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,62,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:03:49','','0000-00-00 00:00:00',0),(14664,2526,0,0,3611,'2025-11-27','15:59:00',0,171,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,62,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:03:49','','0000-00-00 00:00:00',0),(14665,2526,0,0,3611,'2025-11-28','16:00:00',0,171,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,62,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:03:49','','0000-00-00 00:00:00',0),(14666,2526,0,0,3611,'2025-11-28','16:00:00',0,171,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,38,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:03:49','','0000-00-00 00:00:00',0),(14667,2526,0,0,3611,'2025-12-01','16:01:00',0,171,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,62,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:03:49','','0000-00-00 00:00:00',0),(14668,2526,0,0,3611,'2025-12-02','16:01:00',0,171,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,62,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:03:49','','0000-00-00 00:00:00',0),(14669,2526,0,0,3611,'2025-12-02','16:02:00',0,171,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:03:49','','0000-00-00 00:00:00',0),(14670,2526,0,0,4922,'2025-12-02','00:00:00',3386,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 16:08:29','reception','2025-12-02 03:38:29',0),(14671,2526,0,0,3611,'2025-11-21','16:05:00',0,171,'ROOM','ROOM0008','H','N',10.00,100,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:09:25','','0000-00-00 00:00:00',0),(14672,2526,0,0,3611,'2025-11-22','16:05:00',0,171,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:09:25','','0000-00-00 00:00:00',0),(14673,2526,0,0,3611,'2025-11-23','16:05:00',0,171,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:09:25','','0000-00-00 00:00:00',0),(14674,2526,0,0,3611,'2025-11-24','16:05:00',0,171,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:09:25','','0000-00-00 00:00:00',0),(14675,2526,0,0,3611,'2025-11-25','16:05:00',0,171,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:09:25','','0000-00-00 00:00:00',0),(14676,2526,0,0,3611,'2025-11-26','16:05:00',0,171,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:09:25','','0000-00-00 00:00:00',0),(14677,2526,0,0,3611,'2025-11-27','16:06:00',0,171,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:09:25','','0000-00-00 00:00:00',0),(14678,2526,0,0,3611,'2025-11-28','16:06:00',0,171,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:09:25','','0000-00-00 00:00:00',0),(14679,2526,0,0,3611,'2025-11-29','16:06:00',0,171,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:09:25','','0000-00-00 00:00:00',0),(14680,2526,0,0,3611,'2025-11-30','16:07:00',0,171,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:09:25','','0000-00-00 00:00:00',0),(14681,2526,0,0,3611,'2025-12-01','16:07:00',0,171,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:09:25','','0000-00-00 00:00:00',0),(14682,2526,0,0,3611,'2025-12-02','16:07:00',0,171,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:09:25','','0000-00-00 00:00:00',0),(14683,2526,0,0,3611,'2025-11-21','16:09:00',0,171,'WPRC','WPRC0116','H','N',1.00,8000,8000,'P',0,0,0.00,0.00,8000.00,8000,78,0,0,'',0,0,'','','','','',2526,'H','D',224,105,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(14684,2526,0,0,3611,'2025-11-19','16:10:00',0,171,'WPRC','WPRC0116','H','N',1.00,8000,8000,'P',0,0,0.00,0.00,8000.00,8000,78,0,0,'',0,0,'','','','','',2526,'H','D',224,106,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(14685,2526,0,0,3611,'2025-11-24','16:10:00',0,171,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',224,107,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:15:04','','0000-00-00 00:00:00',0),(14686,2526,0,0,4922,'2025-12-02','16:15:43',3386,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',5446,1,160,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 16:15:43','reception','2025-12-02 16:15:43',0),(14687,2526,0,0,4922,'2025-12-02','16:15:43',3386,0,'OPWD','OPWD0023','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,3,0,0,'',0,0,'','','','','',2526,'H','O',5446,2,300,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 16:15:43','reception','2025-12-02 16:15:43',0),(14688,2526,0,0,4922,'2025-12-02','16:15:43',3386,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',5446,3,40,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 16:15:43','reception','2025-12-02 16:15:43',0),(14689,2526,0,0,4923,'2025-12-02','00:00:00',1503,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5447,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 16:25:14','shweta','2025-12-02 16:25:40',0),(14690,2526,0,0,4924,'2025-12-02','00:00:00',3387,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5448,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 16:49:58','reception','2025-12-02 16:51:43',0),(14691,2526,0,0,4868,'2025-12-02','16:49:00',0,234,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',200,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:50:50','','0000-00-00 00:00:00',0),(14692,2526,0,0,4868,'2025-12-02','16:49:00',0,234,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',200,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:50:50','','0000-00-00 00:00:00',0),(14693,2526,0,0,4868,'2025-12-02','16:49:00',0,234,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',200,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:50:50','','0000-00-00 00:00:00',0),(14694,2526,0,0,4868,'2025-12-02','16:51:00',0,234,'SURG','SURG0016','H','N',1.00,6500,6500,'P',0,0,0.00,0.00,6500.00,6500,3,0,0,'',0,0,'','','','','',2526,'H','I',200,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:54:12','vishal','2025-12-02 17:16:43',0),(14695,2526,0,0,4868,'2025-12-02','16:51:00',0,234,'SURG','SURG0015','H','N',1.00,1900,1900,'P',0,0,0.00,0.00,1900.00,1900,3,0,0,'',0,0,'','','','','',2526,'H','I',200,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 16:54:12','vishal','2025-12-02 17:16:43',0),(14696,2526,0,0,4925,'2025-12-02','16:54:25',3005,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5449,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 16:54:25','reception','2025-12-02 16:54:25',0),(14697,2526,0,0,4926,'2025-12-02','16:55:19',2118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5450,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 16:55:19','reception','2025-12-02 16:55:19',0),(14698,2526,0,0,4927,'2025-12-02','00:00:00',2711,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5451,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 17:06:02','shweta','2025-12-02 17:07:10',0),(14699,2526,0,0,4928,'2025-12-02','00:00:00',2423,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5452,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 17:19:00','reception','2025-12-02 17:19:21',0),(14700,2526,0,0,4929,'2025-12-02','00:00:00',979,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5453,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 17:22:18','reception','2025-12-02 17:22:46',0),(14701,2526,0,0,4930,'2025-12-02','00:00:00',3388,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5454,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 17:24:35','reception','2025-12-02 17:25:01',0),(14702,2526,0,0,4932,'2025-12-02','00:00:00',3389,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5455,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 17:32:03','janvi','2025-12-02 17:32:32',0),(14703,2526,0,0,4933,'2025-12-02','00:00:00',3390,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5456,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 17:32:31','shweta','2025-12-02 17:34:17',0),(14704,2526,0,0,4934,'2025-12-02','00:00:00',1891,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5457,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 17:34:44','reception','2025-12-02 17:35:44',0),(14705,2526,0,0,4935,'2025-12-02','00:00:00',3391,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5458,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 17:41:24','reception','2025-12-02 17:41:53',0),(14706,2526,0,0,4936,'2025-12-02','00:00:00',3392,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5459,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 17:42:21','shweta','2025-12-02 17:43:33',0),(14707,2526,0,0,4937,'2025-12-02','00:00:00',3393,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5460,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 17:46:43','reception','2025-12-02 17:47:12',0),(14708,2526,0,0,4938,'2025-12-02','00:00:00',2932,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',5462,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 17:48:33','reception','2025-12-02 17:50:35',0),(14709,2526,0,0,4939,'2025-12-02','17:49:33',3352,0,'OPWD','OPWD0036','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',5461,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 17:49:33','shweta','2025-12-02 17:49:33',0),(14710,2526,0,0,4940,'2025-12-02','00:00:00',3394,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5463,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 17:50:01','janvi','2025-12-02 17:50:37',0),(14711,2526,0,0,4941,'2025-12-02','00:00:00',2257,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5464,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 17:58:38','reception','2025-12-02 17:58:53',0),(14712,2526,0,0,4942,'2025-12-02','00:00:00',3395,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5465,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 18:05:17','reception','2025-12-02 18:05:54',0),(14713,2526,0,0,4943,'2025-12-02','00:00:00',3396,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5466,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 18:05:47','shweta','2025-12-02 18:06:51',0),(14714,2526,0,0,4944,'2025-12-02','00:00:00',2584,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5467,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 18:07:15','reception','2025-12-02 18:07:35',0),(14715,2526,0,0,4945,'2025-12-02','00:00:00',3397,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 18:08:13','janvi','2025-12-02 05:38:13',0),(14716,2526,0,0,4946,'2025-12-02','00:00:00',3398,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',5470,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 18:09:17','shweta','2025-12-02 18:12:15',0),(14717,2526,0,0,4945,'2025-12-02','00:00:00',3397,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5468,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 18:09:27','janvi','2025-12-02 18:09:36',0),(14718,2526,0,0,4947,'2025-12-02','00:00:00',3399,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5469,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 18:10:14','reception','2025-12-02 18:10:36',0),(14719,2526,0,0,4946,'2025-12-02','18:12:15',3398,0,'OPWD','OPWD0012','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5470,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 18:12:15','shweta','2025-12-02 18:12:15',0),(14720,2526,0,0,4948,'2025-12-02','00:00:00',3400,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5471,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 18:18:42','reception','2025-12-02 18:19:26',0),(14721,2526,0,0,4945,'2025-12-02','18:21:00',3397,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,97,'',0,0,'','','','','',2526,'H','O',5472,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-12-02 18:21:00','janvi','2025-12-02 18:21:00',0),(14722,2526,0,0,4949,'2025-12-02','00:00:00',856,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 18:26:13','shweta','2025-12-02 05:56:13',0),(14723,2526,0,0,4950,'2025-12-02','00:00:00',2930,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5473,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 18:26:45','janvi','2025-12-02 18:26:59',0),(14724,2526,0,0,4951,'2025-12-02','00:00:00',3401,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5475,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 18:32:23','shweta','2025-12-02 18:34:48',0),(14725,2526,0,0,4952,'2025-12-02','00:00:00',3402,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5474,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 18:34:10','shweta','2025-12-02 18:34:40',0),(14726,2526,0,0,4953,'2025-12-02','18:37:42',3310,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5476,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 18:37:42','janvi','2025-12-02 18:37:42',0),(14727,2526,0,0,4954,'2025-12-02','00:00:00',3403,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5477,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 18:39:29','shweta','2025-12-02 18:42:09',0),(14728,2526,0,0,4955,'2025-12-02','00:00:00',1775,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5478,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 18:43:47','janvi','2025-12-02 18:44:21',0),(14729,2526,0,0,4942,'2025-12-02','18:48:49',3395,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5479,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 18:48:49','reception','2025-12-02 18:48:49',0),(14730,2526,0,0,4942,'2025-12-02','18:48:49',3395,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',5479,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 18:48:49','reception','2025-12-02 18:48:49',0),(14731,2526,0,0,4956,'2025-12-02','00:00:00',2713,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5480,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 18:50:22','reception','2025-12-02 18:51:23',0),(14732,2526,0,0,4957,'2025-12-02','00:00:00',3404,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5481,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 18:50:46','shweta','2025-12-02 18:52:50',0),(14733,2526,0,0,4958,'2025-12-02','00:00:00',1953,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5482,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 18:55:08','janvi','2025-12-02 18:55:34',0),(14734,2526,0,0,4694,'2025-12-02','17:00:00',0,222,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',0,'','',0,17,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 06:26:13','vishal','2025-12-02 19:15:52',0),(14735,2526,0,0,4694,'2025-12-02','17:00:00',0,222,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',0,'','',0,18,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 06:26:13','vishal','2025-12-02 19:15:52',0),(14736,2526,0,0,4694,'2025-12-02','17:00:00',0,222,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',262,19,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 06:26:13','vishal','2025-12-02 19:02:56',0),(14737,2526,0,0,4694,'2025-12-02','17:00:00',0,222,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',0,'','',0,20,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 06:26:13','vishal','2025-12-02 19:15:52',0),(14738,2526,0,0,4694,'2025-12-02','17:00:00',0,222,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',0,'','',0,21,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 06:26:13','vishal','2025-12-02 19:15:52',0),(14739,2526,0,0,4694,'2025-12-02','19:02:00',0,222,'SURG','SURG0016','H','N',1.00,45000,45000,'P',0,0,0.00,0.00,45000.00,45000,3,0,0,'',0,0,'','','','','',2526,'H','I',262,22,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 19:02:56','','0000-00-00 00:00:00',0),(14740,2526,0,0,4694,'2025-12-02','19:02:00',0,222,'SURG','SURG0015','H','N',1.00,11250,11250,'P',0,0,0.00,0.00,11250.00,11250,3,0,0,'',0,0,'','','','','',2526,'H','I',262,23,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 19:02:56','','0000-00-00 00:00:00',0),(14741,2526,0,0,4959,'2025-12-02','19:06:04',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5483,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 19:06:04','shweta','2025-12-02 19:06:04',0),(14742,2526,0,0,4960,'2025-12-02','00:00:00',3405,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5484,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 19:06:09','reception','2025-12-02 19:07:12',0),(14743,2526,0,0,4961,'2025-12-02','00:00:00',3406,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5489,1,200,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-02 19:08:25','shweta','2025-12-02 19:30:13',0),(14744,2526,0,0,4962,'2025-12-02','00:00:00',3407,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5485,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 19:08:43','reception','2025-12-02 19:09:42',0),(14745,2526,0,0,4963,'2025-12-02','00:00:00',2507,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5491,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 19:09:47','shweta','2025-12-02 19:45:16',0),(14746,2526,0,0,4694,'2025-12-02','19:14:00',0,222,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,20,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 19:15:52','riya','2025-12-03 11:45:25',0),(14747,2526,0,0,4694,'2025-12-02','19:14:00',0,222,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,21,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 19:15:52','riya','2025-12-03 11:45:25',0),(14748,2526,0,0,4694,'2025-12-02','19:14:00',0,222,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,22,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 19:15:52','riya','2025-12-03 11:45:25',0),(14749,2526,0,0,4694,'2025-12-02','19:14:00',0,222,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',262,23,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 19:15:52','','0000-00-00 00:00:00',0),(14750,2526,0,0,4964,'2025-12-02','19:17:54',2528,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',5486,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 19:17:54','shweta','2025-12-02 19:17:54',0),(14751,2526,0,0,4965,'2025-12-02','19:21:42',3103,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5487,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 19:21:42','shweta','2025-12-02 19:21:42',0),(14752,2526,0,0,4957,'2025-12-02','19:25:14',3404,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5488,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 19:25:14','reception','2025-12-02 19:25:14',0),(14753,2526,0,0,4966,'2025-12-02','00:00:00',3408,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5490,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-02 19:32:42','shweta','2025-12-02 19:34:18',0),(14754,2526,0,0,4691,'2025-11-30','19:42:00',0,220,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',201,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 19:44:20','vishal','2025-12-02 19:45:23',0),(14755,2526,0,0,4691,'2025-11-30','19:43:00',0,220,'WPRC','WPRC0080','H','N',2.00,500,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',201,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 19:44:20','vishal','2025-12-02 19:45:23',0),(14756,2526,0,0,4691,'2025-12-01','19:43:00',0,220,'WPRC','WPRC0083','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',201,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 19:44:20','vishal','2025-12-02 19:45:23',0),(14757,2526,0,0,4691,'2025-12-02','19:43:00',0,220,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',201,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 19:44:20','','0000-00-00 00:00:00',0),(14758,2526,0,0,4691,'2025-11-30','19:44:00',0,220,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',201,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 19:45:23','','0000-00-00 00:00:00',0),(14759,2526,0,0,4967,'2025-12-02','00:00:00',3409,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5492,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 19:46:32','reception','2025-12-02 19:48:06',0),(14760,2526,0,0,4968,'2025-12-02','19:50:00',3406,236,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',215,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 19:58:07','vishal','2025-12-05 11:25:19',0),(14761,2526,0,0,4968,'2025-12-02','19:50:00',3406,236,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',215,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 19:58:07','vishal','2025-12-05 11:25:19',0),(14762,2526,0,0,4968,'2025-12-02','19:50:00',3406,236,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','311','','','',2526,'H','I',215,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 07:28:07','vishal','2025-12-05 11:25:19',0),(14763,2526,0,0,4968,'2025-12-02','19:50:00',3406,236,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','311','','','',2526,'H','I',215,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 07:28:07','vishal','2025-12-05 11:25:19',0),(14764,2526,0,0,4968,'2025-12-02','19:50:00',3406,236,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','311','','','',2526,'H','I',215,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 07:28:07','vishal','2025-12-05 11:25:19',0),(14765,2526,0,0,4968,'2025-12-03','19:50:00',3406,236,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','311','','','',2526,'H','I',215,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 07:28:07','vishal','2025-12-05 11:25:19',0),(14766,2526,0,0,4968,'2025-12-03','19:50:00',3406,236,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','311','','','',2526,'H','I',215,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 07:28:07','vishal','2025-12-05 11:25:19',0),(14767,2526,0,0,4969,'2025-12-02','00:00:00',3410,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',5493,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-02 20:24:01','reception','2025-12-02 20:24:27',0),(14768,2526,0,0,4802,'2025-12-02','17:50:00',3305,229,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',205,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 08:01:46','vishal','2025-12-03 20:41:18',0),(14769,2526,0,0,4802,'2025-12-02','17:50:00',3305,229,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',205,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 08:01:47','vishal','2025-12-03 20:44:31',0),(14770,2526,0,0,4802,'2025-12-02','17:50:00',3305,229,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',205,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 08:01:47','vishal','2025-12-03 20:41:18',0),(14771,2526,0,0,4802,'2025-12-02','17:50:00',3305,229,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',205,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 08:01:47','vishal','2025-12-03 20:41:18',0),(14772,2526,0,0,4802,'2025-12-02','17:50:00',3305,229,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',205,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 08:01:47','vishal','2025-12-03 20:44:31',0),(14773,2526,0,0,4834,'2025-12-02','18:30:00',0,230,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',206,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 08:01:47','vishal','2025-12-03 21:01:09',0),(14774,2526,0,0,4834,'2025-12-02','18:30:00',0,230,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',206,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 08:01:47','vishal','2025-12-03 21:01:09',0),(14775,2526,0,0,4834,'2025-12-02','18:30:00',0,230,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','405','','','',2526,'H','I',206,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 08:01:47','vishal','2025-12-03 21:01:09',0),(14776,2526,0,0,4834,'2025-12-02','18:30:00',0,230,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','405','','','',2526,'H','I',206,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 08:01:47','vishal','2025-12-03 21:01:09',0),(14777,2526,0,0,4834,'2025-12-02','18:30:00',0,230,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',206,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 08:01:47','vishal','2025-12-03 21:01:09',0),(14778,2526,0,0,4970,'2025-12-02','20:00:00',0,237,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',221,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 20:34:56','riya','2025-12-04 10:16:45',0),(14779,2526,0,0,4970,'2025-12-02','20:00:00',0,237,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',221,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 20:34:56','riya','2025-12-04 10:16:45',0),(14780,2526,0,0,4970,'2025-12-02','20:00:00',0,237,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',221,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 08:04:56','riya','2025-12-04 10:16:45',0),(14781,2526,0,0,4970,'2025-12-02','20:00:00',0,237,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',221,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 08:04:56','riya','2025-12-04 10:16:45',0),(14782,2526,0,0,4970,'2025-12-02','20:00:00',0,237,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',221,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 08:04:56','riya','2025-12-04 10:16:45',0),(14783,2526,0,0,4970,'2025-12-02','20:00:00',0,237,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 08:04:56','riya','2025-12-04 15:19:56',0),(14784,2526,0,0,4970,'2025-12-02','20:00:00',0,237,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',221,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 08:04:56','riya','2025-12-04 10:16:45',0),(14785,2526,0,0,4691,'2025-12-01','20:56:00',0,220,'SURG','SURG0016','H','N',1.00,18500,18500,'A',0,0,0.00,0.00,18500.00,18500,3,0,0,'',0,0,'','','','','',2526,'H','I',201,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 20:57:13','vishal','2025-12-02 20:58:05',0),(14786,2526,0,0,4691,'2025-12-01','20:56:00',0,220,'SURG','SURG0015','H','N',1.00,5900,5900,'A',0,0,0.00,0.00,5900.00,5900,3,0,0,'',0,0,'','','','','',2526,'H','I',201,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-02 20:57:13','vishal','2025-12-02 20:58:05',0),(14787,2526,0,0,4971,'2025-12-03','00:00:00',2965,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5494,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 08:41:24','reception','2025-12-03 08:41:58',0),(14788,2526,0,0,4972,'2025-12-03','00:00:00',3411,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 08:43:19','reception','2025-12-02 20:13:19',0),(14789,2526,0,0,4972,'2025-12-03','08:44:18',3411,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',5495,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 08:44:18','reception','2025-12-03 08:44:18',0),(14790,2526,0,0,4973,'2025-12-03','08:48:11',3410,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',5496,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 08:48:11','reception','2025-12-03 08:48:11',0),(14791,2526,0,0,4974,'2025-12-03','00:00:00',3412,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5497,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 09:11:14','reception','2025-12-03 09:11:48',0),(14792,2526,0,0,4975,'2025-12-03','00:00:00',3413,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5498,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 09:23:06','reception','2025-12-03 09:23:30',0),(14793,2526,0,0,4976,'2025-12-03','00:00:00',834,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5499,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 09:34:57','janvi','2025-12-03 09:35:18',0),(14794,2526,0,0,4977,'2025-12-03','09:15:00',0,238,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 09:36:53','riya','2025-12-04 11:07:44',0),(14795,2526,0,0,4977,'2025-12-03','09:15:00',0,238,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 09:36:53','riya','2025-12-04 11:07:44',0),(14796,2526,0,0,4977,'2025-12-03','09:15:00',0,238,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','214','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 21:06:53','riya','2025-12-04 11:07:44',0),(14797,2526,0,0,4977,'2025-12-03','09:15:00',0,238,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','214','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 21:06:53','riya','2025-12-04 11:07:44',0),(14798,2526,0,0,4977,'2025-12-03','09:15:00',0,238,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','214','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 21:06:53','riya','2025-12-04 11:07:44',0),(14799,2526,0,0,4977,'2025-12-03','09:15:00',0,238,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','214','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 21:06:53','riya','2025-12-04 11:07:44',0),(14800,2526,0,0,4977,'2025-12-03','09:15:00',0,238,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','214','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 21:06:53','riya','2025-12-04 11:07:44',0),(14801,2526,0,0,4978,'2025-12-03','00:00:00',3414,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5501,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 09:47:52','janvi','2025-12-03 09:50:37',0),(14802,2526,0,0,4979,'2025-12-03','00:00:00',3415,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5500,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 09:50:02','janvi','2025-12-03 09:50:27',0),(14803,2526,0,0,4980,'2025-12-03','00:00:00',3416,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5502,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 10:08:39','janvi','2025-12-03 10:09:51',0),(14804,2526,0,0,4981,'2025-12-03','00:00:00',1144,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5503,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 10:11:23','reception','2025-12-03 10:11:49',0),(14805,2526,0,0,4982,'2025-12-03','00:00:00',3417,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5504,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 10:14:13','janvi','2025-12-03 10:14:47',0),(14806,2526,0,0,4983,'2025-12-03','00:00:00',693,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5505,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-03 10:17:20','janvi','2025-12-03 10:34:10',0),(14807,2526,0,0,4855,'2025-12-03','09:30:00',0,231,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','406','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-02 21:48:07','riya','2025-12-03 10:19:25',0),(14808,2526,0,0,4855,'2025-12-03','09:30:00',0,231,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','406','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-02 21:48:07','riya','2025-12-03 10:19:25',0),(14809,2526,0,0,4855,'2025-12-03','09:30:00',0,231,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','406','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-02 21:48:07','riya','2025-12-03 10:19:25',0),(14810,2526,0,0,4855,'2025-12-03','09:30:00',0,231,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','406','','','',0,'','',0,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 21:48:07','riya','2025-12-03 10:19:25',0),(14811,2526,0,0,4855,'2025-12-03','09:30:00',0,231,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','406','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-02 21:48:07','riya','2025-12-03 10:19:25',0),(14812,2526,0,0,4855,'2025-12-02','10:18:00',0,231,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',0,'','',0,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 10:19:25','','0000-00-00 00:00:00',0),(14813,2526,0,0,4984,'2025-12-03','00:00:00',3418,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5506,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 10:23:53','reception','2025-12-03 10:24:37',0),(14814,2526,0,0,4985,'2025-12-03','00:00:00',1556,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5507,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 10:26:41','urvashi','2025-12-03 10:27:08',0),(14815,2526,0,0,4986,'2025-12-03','00:00:00',3419,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5508,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 10:28:51','urvashi','2025-12-03 10:30:29',0),(14816,2526,0,0,4987,'2025-12-03','00:00:00',3420,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5509,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 10:31:30','urvashi','2025-12-03 10:32:21',0),(14817,2526,0,0,4988,'2025-12-03','00:00:00',1777,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5510,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 10:32:00','reception','2025-12-03 10:32:37',0),(14818,2526,0,0,4989,'2025-12-03','00:00:00',2419,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5512,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 10:35:16','reception','2025-12-03 10:35:33',0),(14819,2526,0,0,4983,'2025-12-03','00:00:00',693,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5513,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 10:36:07','janvi','2025-12-03 10:36:20',0),(14820,2526,0,0,4990,'2025-12-03','00:00:00',3421,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5515,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 10:37:01','urvashi','2025-12-03 10:37:53',0),(14821,2526,0,0,4991,'2025-12-03','00:00:00',3422,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5514,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 10:37:13','reception','2025-12-03 10:37:29',0),(14822,2526,0,0,4992,'2025-12-03','00:00:00',3423,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5516,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 10:39:40','reception','2025-12-03 10:41:29',0),(14823,2526,0,0,4993,'2025-12-03','00:00:00',101,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5517,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 10:41:49','urvashi','2025-12-03 10:42:14',0),(14824,2526,0,0,4711,'2025-12-03','09:30:00',0,223,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','310','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-02 22:13:25','riya','2025-12-03 10:46:47',0),(14825,2526,0,0,4711,'2025-12-03','09:30:00',0,223,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','310','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-02 22:13:25','riya','2025-12-03 10:46:47',0),(14826,2526,0,0,4711,'2025-12-03','09:30:00',0,223,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','310','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-02 22:13:25','riya','2025-12-03 10:46:47',0),(14827,2526,0,0,4711,'2025-12-03','09:30:00',0,223,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','310','','','',2526,'H','I',202,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 22:13:25','riya','2025-12-03 10:46:47',0),(14828,2526,0,0,4711,'2025-12-03','09:30:00',0,223,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','310','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-02 22:13:25','riya','2025-12-03 10:46:47',0),(14829,2526,0,0,4711,'2025-12-01','10:43:00',0,223,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',202,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 10:46:47','','0000-00-00 00:00:00',0),(14830,2526,0,0,4711,'2025-12-01','10:44:00',0,223,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',202,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 10:46:47','','0000-00-00 00:00:00',0),(14831,2526,0,0,4711,'2025-12-02','10:44:00',0,223,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',202,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 10:46:47','','0000-00-00 00:00:00',0),(14832,2526,0,0,4711,'2025-12-03','10:45:00',0,223,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',202,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 10:46:47','','0000-00-00 00:00:00',0),(14833,2526,0,0,4711,'2025-12-01','10:46:00',0,223,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',202,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 10:46:47','','0000-00-00 00:00:00',0),(14834,2526,0,0,4994,'2025-12-03','00:00:00',3424,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5536,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 10:51:24','urvashi','2025-12-03 11:42:48',0),(14835,2526,0,0,4711,'2025-12-01','10:49:00',0,223,'SURG','SURG0015','H','N',1.00,10500,10500,'P',0,0,0.00,0.00,10500.00,10500,3,0,0,'',0,0,'','','','','',2526,'H','I',202,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 10:51:33','riya','2025-12-03 10:54:04',0),(14836,2526,0,0,4711,'2025-12-03','10:50:00',0,223,'SURG','SURG0014','H','N',1.00,31600,31600,'P',0,0,0.00,0.00,31600.00,31600,3,0,0,'',0,0,'','','','','',2526,'H','I',202,20,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 10:51:33','riya','2025-12-03 10:54:04',0),(14837,2526,0,0,4995,'2025-12-03','00:00:00',3425,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 10:56:08','janvi','2025-12-02 22:26:08',0),(14838,2526,0,0,4996,'2025-12-03','00:00:00',3425,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 10:58:05','urvashi','2025-12-02 22:28:05',0),(14839,2526,0,0,4997,'2025-12-03','10:59:41',3425,0,'PKG','CASE','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5518,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 10:59:41','janvi','2025-12-03 10:59:41',0),(14840,2526,0,0,4999,'2025-12-03','00:00:00',3426,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5519,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 11:01:43','reception','2025-12-03 11:02:16',0),(14841,2526,0,0,5000,'2025-12-03','00:00:00',3427,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5520,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 11:02:08','janvi','2025-12-03 11:02:58',0),(14842,2526,0,0,4975,'2025-12-03','11:04:53',3413,0,'NEU1','NEU10020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5521,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 11:04:53','reception','2025-12-03 11:04:53',0),(14843,2526,0,0,5002,'2025-12-03','00:00:00',3428,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5522,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 11:10:34','reception','2025-12-03 11:11:09',0),(14844,2526,0,0,5003,'2025-12-03','00:00:00',3429,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5524,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 11:12:24','urvashi','2025-12-03 11:13:41',0),(14845,2526,0,0,5004,'2025-12-03','00:00:00',2406,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5525,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 11:13:04','reception','2025-12-03 11:14:04',0),(14846,2526,0,0,4979,'2025-12-03','11:13:29',3415,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,98,'',0,0,'','','','','',2526,'H','O',5523,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-12-03 11:13:29','janvi','2025-12-03 11:13:29',0),(14847,2526,0,0,5005,'2025-12-03','00:00:00',1595,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5526,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 11:14:41','reception','2025-12-03 11:15:10',0),(14848,2526,0,0,5006,'2025-12-03','00:00:00',3430,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5527,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 11:15:41','urvashi','2025-12-03 11:16:45',0),(14849,2526,0,0,5007,'2025-12-03','00:00:00',33,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 11:17:39','urvashi','2025-12-02 22:47:39',0),(14850,2526,0,0,5008,'2025-12-03','11:20:30',2290,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5528,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 11:20:30','janvi','2025-12-03 11:20:30',0),(14851,2526,0,0,4863,'2025-12-03','10:15:00',0,233,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',218,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 22:51:35','riya','2025-12-03 11:24:43',0),(14852,2526,0,0,4863,'2025-12-03','10:15:00',0,233,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',218,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 22:51:35','riya','2025-12-03 11:24:43',0),(14853,2526,0,0,4863,'2025-12-03','10:15:00',0,233,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',218,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 22:51:35','riya','2025-12-03 11:24:43',0),(14854,2526,0,0,4863,'2025-12-03','10:15:00',0,233,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',218,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 22:51:35','riya','2025-12-03 11:24:43',0),(14855,2526,0,0,4863,'2025-12-03','10:15:00',0,233,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','401','','','',2526,'H','I',218,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 22:51:35','vishal','2025-12-05 13:24:53',0),(14856,2526,0,0,4863,'2025-12-02','11:21:00',0,233,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',218,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 11:24:43','','0000-00-00 00:00:00',0),(14857,2526,0,0,4863,'2025-12-02','11:21:00',0,233,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',218,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 11:24:43','','0000-00-00 00:00:00',0),(14858,2526,0,0,4863,'2025-12-02','11:21:00',0,233,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 11:24:43','vishal','2025-12-05 13:41:25',0),(14859,2526,0,0,4863,'2025-12-02','11:22:00',0,233,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',218,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 11:24:43','','0000-00-00 00:00:00',0),(14860,2526,0,0,4863,'2025-12-02','11:22:00',0,233,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,244,0,0,'',0,0,'','','','','',2526,'H','I',218,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 11:24:43','','0000-00-00 00:00:00',0),(14861,2526,0,0,5009,'2025-12-03','00:00:00',1856,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5531,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 11:32:17','urvashi','2025-12-03 11:36:34',0),(14862,2526,0,0,5010,'2025-12-03','00:00:00',3431,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5529,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 11:33:35','reception','2025-12-03 11:34:25',0),(14863,2526,0,0,5011,'2025-12-03','00:00:00',3432,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5530,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 11:35:19','urvashi','2025-12-03 11:35:55',0),(14864,2526,0,0,5012,'2025-12-03','00:00:00',3433,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5532,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 11:36:27','reception','2025-12-03 11:37:16',0),(14865,2526,0,0,5013,'2025-12-03','00:00:00',708,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5533,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 11:38:32','urvashi','2025-12-03 11:39:06',0),(14866,2526,0,0,5014,'2025-12-03','00:00:00',3434,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5534,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 11:38:49','reception','2025-12-03 12:45:45',0),(14867,2526,0,0,5015,'2025-12-03','00:00:00',3435,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5535,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 11:41:34','janvi','2025-12-03 11:41:55',0),(14868,2526,0,0,5016,'2025-12-03','00:00:00',1807,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',5538,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 11:42:44','reception','2025-12-03 11:49:51',0),(14869,2526,0,0,5017,'2025-12-03','00:00:00',3436,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5537,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 11:46:36','urvashi','2025-12-03 11:47:32',0),(14870,2526,0,0,4781,'2025-12-02','11:47:00',0,228,'USG','USG0091','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 11:51:45','','0000-00-00 00:00:00',0),(14871,2526,0,0,4781,'2025-12-02','11:48:00',0,228,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 11:51:45','','0000-00-00 00:00:00',0),(14872,2526,0,0,4781,'2025-12-03','11:48:00',0,228,'ROOM','ROOM0008','H','N',4.00,100,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 11:51:45','vishal','2025-12-05 14:23:08',0),(14873,2526,0,0,4781,'2025-12-03','11:49:00',0,228,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 11:51:45','vishal','2025-12-05 14:23:08',0),(14874,2526,0,0,4781,'2025-12-02','11:49:00',0,228,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 11:51:45','vishal','2025-12-05 14:23:08',0),(14875,2526,0,0,4781,'2025-12-01','11:49:00',0,228,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 11:51:45','','0000-00-00 00:00:00',0),(14876,2526,0,0,5018,'2025-12-03','00:00:00',3437,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5539,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 11:51:52','reception','2025-12-03 11:52:15',0),(14877,2526,0,0,5019,'2025-12-03','00:00:00',2722,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-03 11:53:15','manshi','2025-12-02 23:23:15',0),(14878,2526,0,0,5020,'2025-12-03','11:55:37',3248,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5540,1,19,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 11:55:37','reception','2025-12-03 11:55:37',0),(14879,2526,0,0,5020,'2025-12-03','11:55:37',3248,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5540,2,85,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 11:55:37','reception','2025-12-03 11:55:37',0),(14880,2526,0,0,5020,'2025-12-03','11:55:37',3248,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5540,3,96,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 11:55:37','reception','2025-12-03 11:55:37',0),(14881,2526,0,0,5021,'2025-12-03','11:55:55',1928,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',5541,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-03 11:55:55','manshi','2025-12-03 11:55:55',0),(14882,2526,0,0,5011,'2025-12-03','11:56:16',3432,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,99,'',0,0,'','','','','',2526,'H','O',5542,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-12-03 11:56:16','urvashi','2025-12-03 11:56:16',0),(14883,2526,0,0,5001,'2025-12-03','11:58:42',3259,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5543,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 11:58:42','janvi','2025-12-03 11:58:42',0),(14884,2526,0,0,5022,'2025-12-03','00:00:00',3438,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5545,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 11:59:53','janvi','2025-12-03 12:01:08',0),(14885,2526,0,0,4984,'2025-12-03','11:59:58',3418,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5544,1,478,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 11:59:58','reception','2025-12-03 11:59:58',0),(14886,2526,0,0,4984,'2025-12-03','11:59:58',3418,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5544,2,478,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 11:59:58','reception','2025-12-03 11:59:58',0),(14887,2526,0,0,4984,'2025-12-03','11:59:58',3418,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5544,3,543,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 11:59:58','reception','2025-12-03 11:59:58',0),(14888,2526,0,0,5023,'2025-12-03','00:00:00',2689,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 12:02:04','janvi','2025-12-02 23:32:04',0),(14889,2526,0,0,5024,'2025-12-03','00:00:00',3439,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5546,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 12:09:44','urvashi','2025-12-03 12:10:40',0),(14890,2526,0,0,5025,'2025-12-03','00:00:00',1457,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5547,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 12:13:19','reception','2025-12-03 12:13:32',0),(14891,2526,0,0,4983,'2025-12-03','12:14:24',693,0,'OPWD','OPWD0023','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,6,0,0,'',0,0,'','','','','',2526,'H','O',5548,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-03 12:14:24','manshi','2025-12-03 12:14:24',0),(14892,2526,0,0,5026,'2025-12-03','00:00:00',3440,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5549,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 12:17:41','urvashi','2025-12-03 12:18:29',0),(14893,2526,0,0,5027,'2025-12-03','00:00:00',3038,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5550,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 12:19:14','urvashi','2025-12-03 12:19:33',0),(14894,2526,0,0,5028,'2025-12-03','00:00:00',3441,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 12:22:56','urvashi','2025-12-02 23:52:57',0),(14895,2526,0,0,4857,'2025-12-03','10:00:00',0,232,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',210,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 23:54:10','riya','2025-12-03 12:26:13',0),(14896,2526,0,0,4857,'2025-12-03','10:00:00',0,232,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',210,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 23:54:10','riya','2025-12-03 12:26:13',0),(14897,2526,0,0,4857,'2025-12-03','10:00:00',0,232,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',210,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 23:54:10','riya','2025-12-03 12:26:13',0),(14898,2526,0,0,4857,'2025-12-03','10:00:00',0,232,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',2526,'H','I',210,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 23:54:10','riya','2025-12-03 12:26:13',0),(14899,2526,0,0,4857,'2025-12-03','10:00:00',0,232,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',2526,'H','I',210,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-02 23:54:10','riya','2025-12-03 12:26:13',0),(14900,2526,0,0,4857,'2025-12-02','12:25:00',0,232,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',210,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 12:26:13','','0000-00-00 00:00:00',0),(14901,2526,0,0,5029,'2025-12-03','00:00:00',3442,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 12:27:53','janvi','2025-12-02 23:57:53',0),(14902,2526,0,0,4017,'2025-12-03','12:28:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,111,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 12:29:31','','0000-00-00 00:00:00',0),(14903,2526,0,0,4017,'2025-12-03','12:28:00',0,187,'WPRC','WPRC0089','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,112,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 12:29:31','','0000-00-00 00:00:00',0),(14904,2526,0,0,4017,'2025-12-03','12:28:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,113,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 12:29:31','','0000-00-00 00:00:00',0),(14905,2526,0,0,4017,'2025-12-03','12:28:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,114,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 12:29:31','vishal','2025-12-21 11:20:51',0),(14906,2526,0,0,5029,'2025-12-03','12:31:44',3442,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',5551,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 12:31:44','janvi','2025-12-03 12:31:44',0),(14907,2526,0,0,5030,'2025-12-03','00:00:00',931,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5552,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 12:37:16','urvashi','2025-12-03 12:37:30',0),(14908,2526,0,0,5012,'2025-12-03','12:39:27',3433,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5553,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 12:39:27','reception','2025-12-03 12:39:27',0),(14909,2526,0,0,5012,'2025-12-03','12:39:27',3433,0,'NEU1','NEU10016','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',5553,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 12:39:27','reception','2025-12-03 12:39:27',0),(14910,2526,0,0,5031,'2025-12-03','00:00:00',3443,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5554,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 12:41:39','urvashi','2025-12-03 12:42:40',0),(14911,2526,0,0,5014,'2025-12-03','12:46:38',3434,0,'PKG','CASE','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5556,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 12:46:38','reception','2025-12-03 12:46:38',0),(14912,2526,0,0,5032,'2025-12-03','00:00:00',3444,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5557,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 12:47:05','janvi','2025-12-03 12:47:39',0),(14913,2526,0,0,5033,'2025-12-03','00:00:00',3445,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5558,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 13:21:43','reception','2025-12-03 13:22:27',0),(14914,2526,0,0,5034,'2025-12-03','00:00:00',1683,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5559,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 13:29:18','reception','2025-12-03 13:29:40',0),(14915,2526,0,0,5035,'2025-12-03','00:00:00',2356,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 13:37:29','urvashi','2025-12-03 01:07:29',0),(14916,2526,0,0,3909,'2025-12-03','13:46:00',0,181,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 13:57:39','riya','2025-12-03 15:53:47',0),(14917,2526,0,0,3909,'2025-12-03','13:52:00',0,181,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 13:57:39','','0000-00-00 00:00:00',0),(14918,2526,0,0,3909,'2025-12-02','13:52:00',0,181,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 13:57:39','','0000-00-00 00:00:00',0),(14919,2526,0,0,3909,'2025-12-01','13:52:00',0,181,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 13:57:39','','0000-00-00 00:00:00',0),(14920,2526,0,0,3909,'2025-12-03','13:54:00',0,181,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 13:57:39','','0000-00-00 00:00:00',0),(14921,2526,0,0,3909,'2025-12-03','13:56:00',0,181,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',203,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 13:57:39','','0000-00-00 00:00:00',0),(14922,2526,0,0,5033,'2025-12-03','14:05:10',3445,0,'OPWD','OPWD0012','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,2,0,0,'',0,0,'','','','','',2526,'H','O',5560,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-03 14:05:10','shweta','2025-12-03 14:05:10',0),(14923,2526,0,0,4266,'2025-12-03','10:15:00',0,203,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 01:42:29','vishal','2025-12-03 19:45:19',0),(14924,2526,0,0,4266,'2025-12-03','10:15:00',0,203,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 01:42:29','vishal','2025-12-03 19:45:19',0),(14925,2526,0,0,4266,'2025-12-03','10:15:00',0,203,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 01:42:29','vishal','2025-12-03 19:45:19',0),(14926,2526,0,0,4266,'2025-12-03','10:15:00',0,203,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','305','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 01:42:29','vishal','2025-12-03 19:45:19',0),(14927,2526,0,0,4266,'2025-12-03','10:15:00',0,203,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','305','','','',2526,'H','I',204,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 01:42:29','vishal','2025-12-03 19:43:17',0),(14928,2526,0,0,4266,'2025-11-26','14:12:00',0,203,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,77,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 14:16:04','vishal','2025-12-03 19:38:20',0),(14929,2526,0,0,4266,'2025-12-03','14:14:00',0,203,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 14:16:04','','0000-00-00 00:00:00',0),(14930,2526,0,0,4266,'2025-12-03','14:14:00',0,203,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 14:16:04','','0000-00-00 00:00:00',0),(14931,2526,0,0,5036,'2025-12-03','15:30:00',0,239,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',211,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 15:28:01','riya','2025-12-04 11:49:55',0),(14932,2526,0,0,5036,'2025-12-03','15:30:00',0,239,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',211,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 15:28:01','riya','2025-12-04 11:49:55',0),(14933,2526,0,0,3909,'2025-12-03','15:52:00',0,181,'ROOM','ROOM0009','H','N',0.50,3200,1600,'P',0,0,0.00,0.00,1600.00,1600,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 15:53:47','riya','2025-12-03 16:32:41',0),(14934,2526,0,0,3909,'2025-12-03','15:52:00',0,181,'CARE','CARE0005','H','N',0.50,400,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 15:53:47','riya','2025-12-03 16:32:41',0),(14935,2526,0,0,3909,'2025-12-03','15:52:00',0,181,'CARE','CARE0001','H','N',0.50,200,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 15:53:47','riya','2025-12-03 16:32:41',0),(14936,2526,0,0,5037,'2025-12-03','00:00:00',72,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 15:58:28','reception','2025-12-03 03:28:28',0),(14937,2526,0,0,5038,'2025-12-03','15:45:00',0,240,'REG','REG0001','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',209,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 16:13:30','vishal','2025-12-04 07:14:58',0),(14938,2526,0,0,5038,'2025-12-03','15:45:00',0,240,'REG','REG0002','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',209,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 16:13:30','vishal','2025-12-04 07:14:58',0),(14939,2526,0,0,5038,'2025-12-03','15:45:00',0,240,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',209,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 03:43:30','vishal','2025-12-04 07:14:58',0),(14940,2526,0,0,5038,'2025-12-03','15:45:00',0,240,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',209,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 03:43:30','vishal','2025-12-04 07:14:58',0),(14941,2526,0,0,5038,'2025-12-03','15:45:00',0,240,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',209,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 03:43:30','vishal','2025-12-04 07:14:58',0),(14942,2526,0,0,5038,'2025-12-03','15:45:00',0,240,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,7,0,0,'',0,0,'','209','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 03:43:30','vishal','2025-12-04 06:58:24',0),(14943,2526,0,0,5038,'2025-12-03','15:45:00',0,240,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,7,0,0,'',0,0,'','209','','','',2526,'H','I',209,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 03:43:30','vishal','2025-12-04 07:14:58',0),(14944,2526,0,0,5039,'2025-12-03','00:00:00',3446,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 16:19:34','reception','2025-12-03 03:49:34',0),(14945,2526,0,0,5038,'2025-12-03','16:20:00',0,240,'ADMN','ADMN0007','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,5000.00,5000,9999,0,0,'',0,0,'','','','','',2526,'H','I',209,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 16:21:12','vishal','2025-12-04 07:14:58',0),(14946,2526,0,0,5040,'2025-12-03','00:00:00',963,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 16:22:28','reception','2025-12-03 03:52:28',0),(14947,2526,0,0,5041,'2025-12-03','00:00:00',3447,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 16:29:09','reception','2025-12-03 03:59:09',0),(14948,2526,0,0,5041,'2025-12-03','16:31:06',3447,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',5561,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'reception','2025-12-03 16:31:06','reception','2025-12-03 16:31:06',0),(14949,2526,0,0,5041,'2025-12-03','16:31:06',3447,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',5561,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'reception','2025-12-03 16:31:06','reception','2025-12-03 16:31:06',0),(14950,2526,0,0,5041,'2025-12-03','16:31:06',3447,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,100,'',0,0,'','','','','',2526,'H','O',5561,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'reception','2025-12-03 16:31:06','reception','2025-12-03 16:31:06',0),(14951,2526,0,0,5041,'2025-12-03','16:31:06',3447,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',5561,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'reception','2025-12-03 16:31:06','reception','2025-12-03 16:31:06',0),(14952,2526,0,0,5042,'2025-12-03','00:00:00',2424,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5562,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 16:31:52','reception','2025-12-03 16:32:08',0),(14953,2526,0,0,5043,'2025-12-03','00:00:00',1951,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 16:35:26','reception','2025-12-03 04:05:26',0),(14954,2526,0,0,5044,'2025-12-03','00:00:00',3448,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5563,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-03 16:36:38','shweta','2025-12-03 16:38:47',0),(14955,2526,0,0,5045,'2025-12-03','00:00:00',3449,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5564,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 16:37:32','reception','2025-12-03 16:39:12',0),(14956,2526,0,0,5046,'2025-12-03','00:00:00',1941,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 16:51:28','reception','2025-12-03 04:21:28',0),(14957,2526,0,0,5047,'2025-12-03','00:00:00',3450,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-03 17:09:52','manshi','2025-12-03 04:39:52',0),(14958,2526,0,0,5048,'2025-12-03','00:00:00',3451,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-03 17:10:46','manshi','2025-12-03 04:40:46',0),(14959,2526,0,0,5049,'2025-12-03','00:00:00',3452,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-03 17:12:45','manshi','2025-12-03 04:42:45',0),(14960,2526,0,0,5050,'2025-12-03','00:00:00',2493,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5565,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 17:13:11','reception','2025-12-03 17:13:32',0),(14961,2526,0,0,5051,'2025-12-03','17:15:04',3328,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5566,1,71,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 17:15:04','reception','2025-12-03 17:15:04',0),(14962,2526,0,0,5051,'2025-12-03','17:15:04',3328,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',5566,2,429,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 17:15:04','reception','2025-12-03 17:15:04',0),(14963,2526,0,0,5052,'2025-12-03','00:00:00',3453,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5567,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 17:19:03','reception','2025-12-03 17:19:32',0),(14964,2526,0,0,5053,'2025-12-03','00:00:00',1017,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5568,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 17:21:01','reception','2025-12-03 17:21:31',0),(14965,2526,0,0,5054,'2025-12-03','00:00:00',1329,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5569,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 17:22:18','urvashi','2025-12-03 17:23:46',0),(14966,2526,0,0,5055,'2025-12-03','00:00:00',3454,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5570,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 17:24:05','reception','2025-12-03 17:25:22',0),(14967,2526,0,0,5056,'2025-12-03','00:00:00',3455,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-03 17:24:11','manshi','2025-12-03 04:54:11',0),(14968,2526,0,0,5057,'2025-12-03','00:00:00',3456,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5571,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 17:28:44','reception','2025-12-03 17:29:21',0),(14969,2526,0,0,5058,'2025-12-03','00:00:00',2426,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5572,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 17:30:36','reception','2025-12-03 17:30:52',0),(14970,2526,0,0,5059,'2025-12-03','00:00:00',3457,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5573,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 17:32:33','reception','2025-12-03 17:33:21',0),(14971,2526,0,0,5060,'2025-12-03','00:00:00',3458,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5574,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 17:38:12','reception','2025-12-03 17:39:19',0),(14972,2526,0,0,5061,'2025-12-03','00:00:00',3459,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-03 17:40:10','manshi','2025-12-03 05:10:10',0),(14973,2526,0,0,5062,'2025-12-03','00:00:00',3460,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5575,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 17:43:18','urvashi','2025-12-03 17:44:09',0),(14974,2526,0,0,5063,'2025-12-03','00:00:00',3461,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5576,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-03 17:46:19','manshi','2025-12-03 18:32:57',0),(14975,2526,0,0,5052,'2025-12-03','17:54:17',3453,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5577,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 17:54:17','reception','2025-12-03 17:54:17',0),(14976,2526,0,0,5052,'2025-12-03','17:54:17',3453,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5577,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 17:54:17','reception','2025-12-03 17:54:17',0),(14977,2526,0,0,5052,'2025-12-03','17:54:17',3453,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5577,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 17:54:17','reception','2025-12-03 17:54:17',0),(14978,2526,0,0,5064,'2025-12-03','00:00:00',3462,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5578,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:00:49','reception','2025-12-03 18:02:05',0),(14979,2526,0,0,5065,'2025-12-03','00:00:00',1147,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5579,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:03:33','reception','2025-12-03 18:04:04',0),(14980,2526,0,0,5066,'2025-12-03','00:00:00',3463,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5580,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 18:03:39','urvashi','2025-12-03 18:04:25',0),(14981,2526,0,0,5067,'2025-12-03','00:00:00',3464,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5581,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:04:42','reception','2025-12-03 18:05:16',0),(14982,2526,0,0,5068,'2025-12-03','00:00:00',3465,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5582,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 18:05:11','janvi','2025-12-03 18:05:49',0),(14983,2526,0,0,5069,'2025-12-03','00:00:00',3466,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5583,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 18:05:27','urvashi','2025-12-03 18:06:44',0),(14984,2526,0,0,5070,'2025-12-03','00:00:00',3467,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5585,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:07:17','reception','2025-12-03 18:08:32',0),(14985,2526,0,0,5071,'2025-12-03','00:00:00',3468,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5584,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 18:07:39','urvashi','2025-12-03 18:08:14',0),(14986,2526,0,0,5072,'2025-12-03','00:00:00',2727,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 18:08:51','urvashi','2025-12-03 05:38:51',0),(14987,2526,0,0,5073,'2025-12-03','00:00:00',3469,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5586,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:10:06','reception','2025-12-03 18:10:25',0),(14988,2526,0,0,5074,'2025-12-03','00:00:00',3470,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5587,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 18:11:34','urvashi','2025-12-03 18:11:53',0),(14989,2526,0,0,5075,'2025-12-03','00:00:00',3471,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5590,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 18:12:48','urvashi','2025-12-03 18:15:18',0),(14990,2526,0,0,5076,'2025-12-03','00:00:00',3472,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5589,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 18:12:59','janvi','2025-12-03 18:14:40',0),(14991,2526,0,0,5077,'2025-12-03','00:00:00',3473,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5591,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 18:13:33','urvashi','2025-12-03 18:15:31',0),(14992,2526,0,0,5055,'2025-12-03','18:13:59',3454,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5588,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:13:59','reception','2025-12-03 18:13:59',0),(14993,2526,0,0,5055,'2025-12-03','18:13:59',3454,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5588,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:13:59','reception','2025-12-03 18:13:59',0),(14994,2526,0,0,5078,'2025-12-03','00:00:00',3474,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-03 18:15:07','manshi','2025-12-03 05:45:07',0),(14995,2526,0,0,5079,'2025-12-03','00:00:00',3475,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5592,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 18:15:58','janvi','2025-12-03 18:17:07',0),(14996,2526,0,0,5080,'2025-12-03','00:00:00',3476,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5593,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 18:17:07','urvashi','2025-12-03 18:17:31',0),(14997,2526,0,0,5081,'2025-12-03','00:00:00',3477,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5594,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:18:39','reception','2025-12-03 18:18:58',0),(14998,2526,0,0,5082,'2025-12-03','00:00:00',3478,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5595,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 18:19:28','urvashi','2025-12-03 18:20:07',0),(14999,2526,0,0,5059,'2025-12-03','18:20:47',3457,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5596,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:20:47','reception','2025-12-03 18:20:47',0),(15000,2526,0,0,5059,'2025-12-03','18:20:47',3457,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5596,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:20:47','reception','2025-12-03 18:20:47',0),(15001,2526,0,0,5083,'2025-12-03','00:00:00',2685,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5597,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 18:21:31','urvashi','2025-12-03 18:21:44',0),(15002,2526,0,0,5084,'2025-12-03','00:00:00',3479,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5600,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 18:24:46','janvi','2025-12-03 18:28:47',0),(15003,2526,0,0,5085,'2025-12-03','00:00:00',3480,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5599,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 18:27:30','janvi','2025-12-03 18:28:19',0),(15004,2526,0,0,5067,'2025-12-03','18:27:44',3464,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5598,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:27:44','reception','2025-12-03 18:27:44',0),(15005,2526,0,0,5067,'2025-12-03','18:27:44',3464,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5598,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:27:44','reception','2025-12-03 18:27:44',0),(15006,2526,0,0,5067,'2025-12-03','18:27:44',3464,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5598,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:27:44','reception','2025-12-03 18:27:44',0),(15007,2526,0,0,5086,'2025-12-03','00:00:00',3481,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5601,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 18:28:05','urvashi','2025-12-03 18:29:20',0),(15008,2526,0,0,4781,'2025-12-03','15:00:00',0,228,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 05:58:28','vishal','2025-12-05 14:23:08',0),(15009,2526,0,0,4781,'2025-12-03','15:00:00',0,228,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 05:58:28','vishal','2025-12-05 14:23:08',0),(15010,2526,0,0,4781,'2025-12-03','15:00:00',0,228,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','404','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 05:58:28','riya','2025-12-04 12:01:11',0),(15011,2526,0,0,4781,'2025-12-03','15:00:00',0,228,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 05:58:28','riya','2025-12-04 11:56:11',0),(15012,2526,0,0,4781,'2025-12-03','15:00:00',0,228,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 05:58:28','riya','2025-12-04 11:56:11',0),(15013,2526,0,0,5087,'2025-12-03','00:00:00',3482,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5603,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 18:29:24','janvi','2025-12-03 18:30:35',0),(15014,2526,0,0,5088,'2025-12-03','00:00:00',3483,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5604,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 18:30:09','urvashi','2025-12-03 18:31:11',0),(15015,2526,0,0,5064,'2025-12-03','18:30:16',3462,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5602,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:30:16','reception','2025-12-03 18:30:16',0),(15016,2526,0,0,5063,'2025-12-03','18:34:13',3461,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5606,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-03 18:34:13','manshi','2025-12-03 18:34:13',0),(15017,2526,0,0,5089,'2025-12-03','18:30:00',0,241,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',0,'','',0,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 18:41:17','riya','2025-12-08 11:58:24',0),(15018,2526,0,0,5089,'2025-12-03','18:30:00',0,241,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',0,'','',0,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 18:41:17','riya','2025-12-08 11:58:24',0),(15019,2526,0,0,5089,'2025-12-03','18:30:00',0,241,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',0,'','',0,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 06:11:17','riya','2025-12-08 11:58:24',0),(15020,2526,0,0,5089,'2025-12-03','18:30:00',0,241,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',0,'','',0,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 06:11:17','riya','2025-12-08 11:58:24',0),(15021,2526,0,0,5089,'2025-12-03','18:30:00',0,241,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',0,'','',0,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 06:11:17','riya','2025-12-08 11:58:24',0),(15022,2526,0,0,5089,'2025-12-08','18:30:00',0,241,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','212','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 06:11:17','riya','2025-12-08 11:58:24',0),(15023,2526,0,0,5089,'2025-12-03','18:30:00',0,241,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','212','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 06:11:17','riya','2025-12-08 11:58:24',0),(15024,2526,0,0,5090,'2025-12-03','00:00:00',789,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:41:44','reception','2025-12-03 06:11:44',0),(15025,2526,0,0,5091,'2025-12-03','00:00:00',3484,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5607,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:44:40','reception','2025-12-03 18:45:08',0),(15026,2526,0,0,5092,'2025-12-03','00:00:00',3485,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5610,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 18:45:38','urvashi','2025-12-03 18:58:16',0),(15027,2526,0,0,5093,'2025-12-03','00:00:00',2995,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:46:27','reception','2025-12-03 06:16:27',0),(15028,2526,0,0,5094,'2025-12-03','00:00:00',3486,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5609,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 18:48:29','janvi','2025-12-03 18:49:49',0),(15029,2526,0,0,5095,'2025-12-03','00:00:00',3487,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5608,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:49:01','reception','2025-12-03 18:49:27',0),(15030,2526,0,0,5096,'2025-12-03','00:00:00',3488,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5611,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 18:51:18','urvashi','2025-12-03 18:51:41',0),(15031,2526,0,0,5097,'2025-12-03','00:00:00',3489,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5612,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:53:12','reception','2025-12-03 18:55:14',0),(15032,2526,0,0,5098,'2025-12-03','00:00:00',3490,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 18:55:54','urvashi','2025-12-03 06:25:54',0),(15033,2526,0,0,5099,'2025-12-03','00:00:00',1085,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5613,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 18:56:03','janvi','2025-12-03 18:56:23',0),(15034,2526,0,0,5100,'2025-12-03','00:00:00',3491,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5615,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 18:58:00','reception','2025-12-03 18:59:05',0),(15035,2526,0,0,5101,'2025-12-03','18:59:31',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5616,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 18:59:31','janvi','2025-12-03 18:59:31',0),(15036,2526,0,0,5102,'2025-12-03','00:00:00',3492,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5617,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 19:00:00','urvashi','2025-12-03 19:01:09',0),(15037,2526,0,0,5103,'2025-12-03','00:00:00',3493,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5618,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 19:00:44','janvi','2025-12-03 19:01:11',0),(15038,2526,0,0,5090,'2025-12-03','19:02:32',789,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5619,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 19:02:32','janvi','2025-12-03 19:02:32',0),(15039,2526,0,0,5074,'2025-12-03','19:02:56',3470,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5620,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 19:02:56','reception','2025-12-03 19:02:56',0),(15040,2526,0,0,5074,'2025-12-03','19:02:56',3470,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5620,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 19:02:56','reception','2025-12-03 19:02:56',0),(15041,2526,0,0,5074,'2025-12-03','19:02:56',3470,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5620,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 19:02:56','reception','2025-12-03 19:02:56',0),(15042,2526,0,0,5093,'2025-12-03','19:04:00',2995,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5621,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 19:04:00','janvi','2025-12-03 19:04:00',0),(15043,2526,0,0,5104,'2025-12-03','19:05:13',3310,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5622,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 19:05:13','janvi','2025-12-03 19:05:13',0),(15044,2526,0,0,5091,'2025-12-03','19:11:59',3484,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5623,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 19:11:59','reception','2025-12-03 19:11:59',0),(15045,2526,0,0,5091,'2025-12-03','19:11:59',3484,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5623,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-03 19:11:59','reception','2025-12-03 19:11:59',0),(15046,2526,0,0,5106,'2025-12-03','00:00:00',2033,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5624,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-03 19:12:07','urvashi','2025-12-03 19:12:22',0),(15047,2526,0,0,5095,'2025-12-03','19:13:18',3487,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,101,'',0,0,'','','','','',2526,'H','O',5625,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'urvashi','2025-12-03 19:13:18','urvashi','2025-12-03 19:13:18',0),(15048,2526,0,0,5107,'2025-12-03','00:00:00',787,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-03 19:14:38','manshi','2025-12-03 06:44:38',0),(15049,2526,0,0,5107,'2025-12-03','00:00:00',787,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5626,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-03 19:15:13','manshi','2025-12-03 19:15:50',0),(15050,2526,0,0,4266,'2025-12-02','19:37:00',0,203,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 19:38:20','vishal','2025-12-03 19:45:19',0),(15051,2526,0,0,5105,'2025-12-03','19:41:25',3021,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',5627,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-03 19:41:25','janvi','2025-12-03 19:41:25',0),(15052,2526,0,0,4266,'2025-11-26','19:40:00',0,203,'WPRC','WPRC0098','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 19:43:17','vishal','2025-12-03 19:45:19',0),(15053,2526,0,0,4266,'2025-11-27','19:41:00',0,203,'WPRC','WPRC0098','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 19:43:17','vishal','2025-12-03 19:45:19',0),(15054,2526,0,0,4266,'2025-11-28','19:41:00',0,203,'WPRC','WPRC0098','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 19:43:17','vishal','2025-12-03 19:45:19',0),(15055,2526,0,0,4266,'2025-11-29','19:41:00',0,203,'WPRC','WPRC0098','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 19:43:17','vishal','2025-12-03 19:45:19',0),(15056,2526,0,0,4266,'2025-11-30','19:41:00',0,203,'WPRC','WPRC0098','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 19:43:17','vishal','2025-12-03 19:45:19',0),(15057,2526,0,0,4266,'2025-12-01','19:42:00',0,203,'WPRC','WPRC0098','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 19:43:17','','0000-00-00 00:00:00',0),(15058,2526,0,0,4266,'2025-12-02','19:42:00',0,203,'WPRC','WPRC0098','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',204,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 19:43:17','','0000-00-00 00:00:00',0),(15059,2526,0,0,4802,'2025-12-01','20:40:00',3305,229,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',205,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 20:41:18','','0000-00-00 00:00:00',0),(15060,2526,0,0,4802,'2025-12-03','20:40:00',3305,229,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',205,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 20:41:18','','0000-00-00 00:00:00',0),(15061,2526,0,0,4802,'2025-12-03','20:41:00',3305,229,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',205,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 20:42:15','','0000-00-00 00:00:00',0),(15062,2526,0,0,4802,'2025-12-03','20:41:00',3305,229,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',205,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 20:42:15','','0000-00-00 00:00:00',0),(15063,2526,0,0,4834,'2025-12-03','20:59:00',0,230,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',206,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 21:01:09','','0000-00-00 00:00:00',0),(15064,2526,0,0,4834,'2025-12-03','21:00:00',0,230,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','','','','',2526,'H','I',206,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 21:01:09','','0000-00-00 00:00:00',0),(15065,2526,0,0,4834,'2025-12-03','21:00:00',0,230,'DRC','DRC0019','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','','','','',2526,'H','I',206,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 21:01:09','','0000-00-00 00:00:00',0),(15066,2526,0,0,4834,'2025-12-03','21:00:00',0,230,'DRC','DRC0020','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,66,0,0,'',0,0,'','','','','',2526,'H','I',206,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 21:01:09','','0000-00-00 00:00:00',0),(15067,2526,0,0,4017,'2025-12-03','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,115,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:39','riya','2025-12-04 13:08:52',0),(15068,2526,0,0,4017,'2025-12-03','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,116,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:39','riya','2025-12-04 13:08:52',0),(15069,2526,0,0,4017,'2025-12-03','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,117,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:39','riya','2025-12-04 13:08:52',0),(15070,2526,0,0,4017,'2025-12-03','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,118,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:39','riya','2025-12-04 13:08:52',0),(15071,2526,0,0,4017,'2025-12-03','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,119,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:39','vishal','2025-12-21 11:20:51',0),(15072,2526,0,0,4688,'2025-12-03','10:30:00',0,218,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:39','riya','2025-12-04 13:06:42',0),(15073,2526,0,0,4688,'2025-12-03','10:30:00',0,218,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:39','riya','2025-12-04 13:06:42',0),(15074,2526,0,0,4688,'2025-12-03','10:30:00',0,218,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:39','riya','2025-12-04 13:06:42',0),(15075,2526,0,0,4688,'2025-12-03','10:30:00',0,218,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:39','riya','2025-12-04 13:06:42',0),(15076,2526,0,0,4688,'2025-12-03','10:30:00',0,218,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:39','riya','2025-12-04 13:06:42',0),(15077,2526,0,0,4693,'2025-12-03','13:30:00',0,221,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 09:54:58',0),(15078,2526,0,0,4693,'2025-12-03','13:30:00',0,221,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 09:54:58',0),(15079,2526,0,0,4693,'2025-12-03','13:30:00',0,221,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 09:54:58',0),(15080,2526,0,0,4693,'2025-12-03','13:30:00',0,221,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 09:54:58',0),(15081,2526,0,0,4693,'2025-12-03','13:30:00',0,221,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 09:54:58',0),(15082,2526,0,0,4694,'2025-12-03','17:00:00',0,222,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',262,24,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 12:04:19',0),(15083,2526,0,0,4694,'2025-12-03','17:00:00',0,222,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',262,25,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 12:04:19',0),(15084,2526,0,0,4694,'2025-12-03','17:00:00',0,222,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',262,26,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 12:04:19',0),(15085,2526,0,0,4694,'2025-12-03','17:00:00',0,222,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',262,27,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 12:04:19',0),(15086,2526,0,0,4694,'2025-12-03','17:00:00',0,222,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',262,28,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 12:04:19',0),(15087,2526,0,0,4751,'2025-12-03','12:00:00',0,224,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',223,25,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 11:07:20',0),(15088,2526,0,0,4751,'2025-12-03','12:00:00',0,224,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',223,26,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 11:07:20',0),(15089,2526,0,0,4751,'2025-12-03','12:00:00',0,224,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',223,27,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 11:07:20',0),(15090,2526,0,0,4751,'2025-12-03','12:00:00',0,224,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',223,28,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 11:07:20',0),(15091,2526,0,0,4751,'2025-12-03','12:00:00',0,224,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',223,29,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 11:07:20',0),(15092,2526,0,0,4777,'2025-12-03','14:00:00',0,225,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','D',271,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-08 15:38:08',0),(15093,2526,0,0,4777,'2025-12-03','14:00:00',0,225,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','D',271,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-08 15:38:08',0),(15094,2526,0,0,4777,'2025-12-03','14:00:00',0,225,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','D',271,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-08 15:38:08',0),(15095,2526,0,0,4777,'2025-12-03','14:00:00',0,225,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','D',271,16,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-08 15:38:08',0),(15096,2526,0,0,4777,'2025-12-03','14:00:00',0,225,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','D',271,17,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-08 15:38:08',0),(15097,2526,0,0,4778,'2025-12-03','14:30:00',0,226,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 10:45:43',0),(15098,2526,0,0,4778,'2025-12-03','14:30:00',0,226,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 10:45:43',0),(15099,2526,0,0,4778,'2025-12-03','14:30:00',0,226,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 10:45:43',0),(15100,2526,0,0,4778,'2025-12-03','14:30:00',0,226,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 10:45:43',0),(15101,2526,0,0,4778,'2025-12-03','14:30:00',0,226,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 10:45:43',0),(15102,2526,0,0,4920,'2025-12-03','13:30:00',0,235,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,12,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 13:56:53',0),(15103,2526,0,0,4920,'2025-12-03','13:30:00',0,235,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,8,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 13:56:53',0),(15104,2526,0,0,4920,'2025-12-03','13:30:00',0,235,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,11,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 13:56:53',0),(15105,2526,0,0,4920,'2025-12-03','13:30:00',0,235,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','308','','','',2526,'H','I',212,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 13:56:53',0),(15106,2526,0,0,4920,'2025-12-03','13:30:00',0,235,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','308','','','',2526,'H','I',212,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:40','riya','2025-12-04 13:56:53',0),(15107,2526,0,0,4968,'2025-12-03','19:50:00',3406,236,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','311','','','',2526,'H','I',215,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:41','vishal','2025-12-05 11:25:19',0),(15108,2526,0,0,4968,'2025-12-03','19:50:00',3406,236,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','311','','','',2526,'H','I',215,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:41','vishal','2025-12-05 11:25:19',0),(15109,2526,0,0,4968,'2025-12-03','19:50:00',3406,236,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','311','','','',2526,'H','I',215,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:41','vishal','2025-12-05 11:25:19',0),(15110,2526,0,0,4968,'2025-12-04','19:50:00',3406,236,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','311','','','',2526,'H','I',215,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:41','vishal','2025-12-05 11:25:19',0),(15111,2526,0,0,4968,'2025-12-04','19:50:00',3406,236,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','311','','','',2526,'H','I',215,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:41','vishal','2025-12-05 11:25:19',0),(15112,2526,0,0,4970,'2025-12-03','20:00:00',0,237,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',221,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:41','riya','2025-12-04 10:16:45',0),(15113,2526,0,0,4970,'2025-12-03','20:00:00',0,237,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',221,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:41','riya','2025-12-04 10:16:45',0),(15114,2526,0,0,4970,'2025-12-03','20:00:00',0,237,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',221,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:41','riya','2025-12-04 10:16:45',0),(15115,2526,0,0,4970,'2025-12-03','20:00:00',0,237,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',221,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:41','riya','2025-12-04 10:16:45',0),(15116,2526,0,0,4970,'2025-12-03','20:00:00',0,237,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',221,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:41','riya','2025-12-04 10:16:45',0),(15117,2526,0,0,5036,'2025-12-03','15:30:00',0,239,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','306','','','',2526,'H','I',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:41','riya','2025-12-04 11:49:55',0),(15118,2526,0,0,5036,'2025-12-03','15:30:00',0,239,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','306','','','',2526,'H','I',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:41','riya','2025-12-04 11:49:55',0),(15119,2526,0,0,5036,'2025-12-03','15:30:00',0,239,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','306','','','',2526,'H','I',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:41','riya','2025-12-04 11:49:55',0),(15120,2526,0,0,5036,'2025-12-03','15:30:00',0,239,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:41','riya','2025-12-04 11:49:55',0),(15121,2526,0,0,5036,'2025-12-03','15:30:00',0,239,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','306','','','',2526,'H','I',211,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-03 09:53:41','riya','2025-12-04 11:49:55',0),(15122,2526,0,0,5038,'2025-12-03','06:57:00',0,240,'DRC','DRC0021','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,7,0,0,'',0,0,'','','','','',2526,'H','I',209,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 06:58:24','vishal','2025-12-04 07:14:58',0),(15123,2526,0,0,5038,'2025-12-03','06:57:00',0,240,'DRC','DRC0020','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','','','','',2526,'H','I',209,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 06:58:24','vishal','2025-12-04 07:14:58',0),(15124,2526,0,0,5038,'2025-12-03','06:58:00',0,240,'ROOM','ROOM0008','H','N',4.00,100,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',209,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 07:01:26','vishal','2025-12-04 07:14:58',0),(15125,2526,0,0,5038,'2025-12-03','06:58:00',0,240,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',209,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 07:01:26','vishal','2025-12-04 07:14:58',0),(15126,2526,0,0,5038,'2025-12-03','06:59:00',0,240,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,7,0,0,'',0,0,'','','','','',2526,'H','I',209,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 07:01:26','vishal','2025-12-04 07:14:58',0),(15127,2526,0,0,5038,'2025-12-03','06:59:00',0,240,'WPRC','WPRC0088','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,7,0,0,'',0,0,'','','','','',2526,'H','I',209,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 07:01:26','vishal','2025-12-04 07:14:58',0),(15128,2526,0,0,5038,'2025-12-04','06:59:00',0,240,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',209,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 07:01:26','vishal','2025-12-04 07:14:58',0),(15129,2526,0,0,5038,'2025-12-03','07:00:00',0,240,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',209,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 07:01:26','vishal','2025-12-04 07:14:58',0),(15130,2526,0,0,5038,'2025-12-03','07:00:00',0,240,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',209,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 07:01:26','vishal','2025-12-04 07:14:58',0),(15131,2526,0,0,5038,'2025-12-03','07:00:00',0,240,'WPRC','WPRC0087','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',209,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 07:01:26','vishal','2025-12-04 07:14:58',0),(15132,2526,0,0,5038,'2025-12-04','07:00:00',0,240,'WPRC','WPRC0087','H','N',4.00,500,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',209,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 07:01:26','vishal','2025-12-04 07:14:58',0),(15133,2526,0,0,5108,'2025-12-04','00:00:00',3494,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 08:41:36','reception','2025-12-03 20:11:36',0),(15134,2526,0,0,5108,'2025-12-04','08:42:34',3494,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',5628,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-04 08:42:34','reception','2025-12-04 08:42:34',0),(15135,2526,0,0,5108,'2025-12-04','08:42:34',3494,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',5628,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-04 08:42:34','reception','2025-12-04 08:42:34',0),(15136,2526,0,0,5108,'2025-12-04','08:42:34',3494,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,102,'',0,0,'','','','','',2526,'H','O',5628,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-04 08:42:34','reception','2025-12-04 08:42:34',0),(15137,2526,0,0,5109,'2025-12-04','00:00:00',3495,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 08:43:38','reception','2025-12-03 20:13:39',0),(15138,2526,0,0,5109,'2025-12-04','08:46:13',3495,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',5629,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 08:46:13','reception','2025-12-04 08:46:13',0),(15139,2526,0,0,5109,'2025-12-04','08:46:13',3495,0,'OPWD','OPWD0013','H','N',4.00,100,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5629,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 08:46:13','reception','2025-12-04 08:46:13',0),(15140,2526,0,0,5110,'2025-12-04','00:00:00',3496,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 08:47:27','reception','2025-12-03 20:17:27',0),(15141,2526,0,0,5110,'2025-12-04','08:49:02',3496,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',5630,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 08:49:02','reception','2025-12-04 08:49:02',0),(15142,2526,0,0,5110,'2025-12-04','08:49:02',3496,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',5630,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 08:49:02','reception','2025-12-04 08:49:02',0),(15143,2526,0,0,5110,'2025-12-04','08:49:02',3496,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',5630,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 08:49:02','reception','2025-12-04 08:49:02',0),(15144,2526,0,0,5111,'2025-12-04','00:00:00',2407,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5631,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 09:35:12','reception','2025-12-04 09:35:52',0),(15145,2526,0,0,5112,'2025-12-04','00:00:00',3497,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5632,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-04 09:44:00','janvi','2025-12-04 10:03:18',0),(15146,2526,0,0,4693,'2025-12-03','09:53:00',0,221,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',213,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 09:54:58','','0000-00-00 00:00:00',0),(15147,2526,0,0,5113,'2025-12-04','10:00:00',0,242,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',225,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 10:06:46','riya','2025-12-06 11:25:22',0),(15148,2526,0,0,5113,'2025-12-04','10:00:00',0,242,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',225,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 10:06:46','riya','2025-12-06 11:25:22',0),(15149,2526,0,0,5113,'2025-12-04','10:00:00',0,242,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',225,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 21:36:46','riya','2025-12-06 11:25:22',0),(15150,2526,0,0,5113,'2025-12-04','10:00:00',0,242,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',225,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 21:36:46','riya','2025-12-06 11:25:22',0),(15151,2526,0,0,5113,'2025-12-04','10:00:00',0,242,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',225,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 21:36:46','riya','2025-12-06 11:25:22',0),(15152,2526,0,0,5113,'2025-12-04','10:00:00',0,242,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',225,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 21:36:46','riya','2025-12-06 11:25:22',0),(15153,2526,0,0,5113,'2025-12-04','10:00:00',0,242,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',225,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 21:36:46','riya','2025-12-06 11:25:22',0),(15154,2526,0,0,4970,'2025-12-04','10:16:00',0,237,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',221,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 10:16:45','','0000-00-00 00:00:00',0),(15155,2526,0,0,5114,'2025-12-04','00:00:00',2486,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5633,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 10:19:15','reception','2025-12-04 10:19:38',0),(15156,2526,0,0,5115,'2025-12-04','00:00:00',3498,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5634,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-04 10:22:14','shweta','2025-12-04 10:22:53',0),(15157,2526,0,0,5116,'2025-12-04','00:00:00',2908,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5635,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-04 10:28:55','shweta','2025-12-04 10:29:27',0),(15158,2526,0,0,4778,'2025-12-02','10:44:00',0,226,'WPRC','WPRC0079','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',216,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 10:45:43','vishal','2025-12-05 11:19:35',0),(15159,2526,0,0,5118,'2025-12-04','00:00:00',3499,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5636,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-04 10:46:30','shweta','2025-12-04 10:46:49',0),(15160,2526,0,0,5119,'2025-12-04','00:00:00',2256,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5673,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 10:48:18','urvashi','2025-12-04 12:29:10',0),(15161,2526,0,0,5117,'2025-12-04','10:48:21',3319,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5637,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-04 10:48:21','janvi','2025-12-04 10:48:21',0),(15162,2526,0,0,5120,'2025-12-04','01:00:00',0,243,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 10:50:53','vishal','2025-12-05 17:24:13',0),(15163,2526,0,0,5120,'2025-12-04','01:00:00',0,243,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 10:50:53','vishal','2025-12-05 17:24:13',0),(15164,2526,0,0,5120,'2025-12-04','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 22:20:53','vishal','2025-12-05 17:24:13',0),(15165,2526,0,0,5120,'2025-12-04','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 22:20:53','vishal','2025-12-05 17:24:13',0),(15166,2526,0,0,5120,'2025-12-04','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 22:20:53','vishal','2025-12-05 17:24:13',0),(15167,2526,0,0,5120,'2025-12-04','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 22:20:53','vishal','2025-12-05 17:24:13',0),(15168,2526,0,0,5120,'2025-12-04','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 22:20:53','vishal','2025-12-05 17:24:13',0),(15169,2526,0,0,5121,'2025-12-04','00:00:00',3500,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5638,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 10:56:20','reception','2025-12-04 10:56:32',0),(15170,2526,0,0,5122,'2025-12-04','00:00:00',3501,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5639,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 10:59:05','reception','2025-12-04 11:00:12',0),(15171,2526,0,0,5123,'2025-12-04','00:00:00',3502,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5640,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 11:01:46','reception','2025-12-04 11:02:43',0),(15172,2526,0,0,5124,'2025-12-04','00:00:00',2712,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5641,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 11:04:47','reception','2025-12-04 11:04:59',0),(15173,2526,0,0,4751,'2025-12-02','11:04:00',0,224,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,30,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:07:20','','0000-00-00 00:00:00',0),(15174,2526,0,0,4751,'2025-12-04','11:04:00',0,224,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,31,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:07:20','','0000-00-00 00:00:00',0),(15175,2526,0,0,4751,'2025-12-03','11:04:00',0,224,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,32,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:07:20','','0000-00-00 00:00:00',0),(15176,2526,0,0,4751,'2025-12-02','11:05:00',0,224,'USG','USG0091','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,33,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:07:20','','0000-00-00 00:00:00',0),(15177,2526,0,0,4751,'2025-12-03','11:05:00',0,224,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,34,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:07:20','riya','2025-12-04 11:39:08',0),(15178,2526,0,0,4751,'2025-12-03','11:06:00',0,224,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,35,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:07:20','','0000-00-00 00:00:00',0),(15179,2526,0,0,4751,'2025-12-04','11:06:00',0,224,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,36,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:07:20','','0000-00-00 00:00:00',0),(15180,2526,0,0,4751,'2025-12-04','11:06:00',0,224,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,37,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:07:20','riya','2025-12-06 12:39:56',0),(15181,2526,0,0,4751,'2025-12-03','11:06:00',0,224,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,38,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:07:20','riya','2025-12-06 12:39:56',0),(15182,2526,0,0,4977,'2025-12-04','09:15:00',0,238,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','214','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 22:37:35','riya','2025-12-04 11:07:44',0),(15183,2526,0,0,4977,'2025-12-04','09:15:00',0,238,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','214','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 22:37:35','riya','2025-12-04 11:07:44',0),(15184,2526,0,0,4977,'2025-12-04','09:15:00',0,238,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','214','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 22:37:35','riya','2025-12-04 11:07:44',0),(15185,2526,0,0,4977,'2025-12-04','09:15:00',0,238,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','214','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 22:37:35','riya','2025-12-04 11:07:44',0),(15186,2526,0,0,4977,'2025-12-04','09:15:00',0,238,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','214','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 22:37:35','riya','2025-12-04 11:07:44',0),(15187,2526,0,0,4977,'2025-12-03','11:08:00',0,238,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:11:43','','0000-00-00 00:00:00',0),(15188,2526,0,0,4977,'2025-12-03','11:08:00',0,238,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:11:43','','0000-00-00 00:00:00',0),(15189,2526,0,0,4977,'2025-12-03','11:08:00',0,238,'WPRC','WPRC0080','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:11:43','','0000-00-00 00:00:00',0),(15190,2526,0,0,4977,'2025-12-03','11:08:00',0,238,'WPRC','WPRC0107','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:11:43','','0000-00-00 00:00:00',0),(15191,2526,0,0,4977,'2025-12-04','11:09:00',0,238,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:11:43','','0000-00-00 00:00:00',0),(15192,2526,0,0,4977,'2025-12-04','11:09:00',0,238,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,18,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:11:43','riya','2025-12-04 11:30:22',0),(15193,2526,0,0,4977,'2025-12-03','11:10:00',0,238,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:11:43','','0000-00-00 00:00:00',0),(15194,2526,0,0,4977,'2025-12-03','11:10:00',0,238,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:11:43','','0000-00-00 00:00:00',0),(15195,2526,0,0,4977,'2025-12-04','11:10:00',0,238,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:11:43','','0000-00-00 00:00:00',0),(15196,2526,0,0,4977,'2025-12-03','11:11:00',0,238,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:11:43','','0000-00-00 00:00:00',0),(15197,2526,0,0,5125,'2025-12-04','00:00:00',3503,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5642,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 11:12:10','reception','2025-12-04 11:12:50',0),(15198,2526,0,0,4977,'2025-12-03','11:12:00',0,238,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,41,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:12:25','','0000-00-00 00:00:00',0),(15199,2526,0,0,5126,'2025-12-04','00:00:00',1857,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5643,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 11:12:32','urvashi','2025-12-04 11:13:07',0),(15200,2526,0,0,5127,'2025-12-04','00:00:00',2300,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5645,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 11:14:36','reception','2025-12-04 11:17:22',0),(15201,2526,0,0,5128,'2025-12-04','00:00:00',3504,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5644,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-04 11:15:55','urvashi','2025-12-04 12:00:05',0),(15202,2526,0,0,5129,'2025-12-04','00:00:00',3505,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5647,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 11:18:34','urvashi','2025-12-04 11:20:24',0),(15203,2526,0,0,5112,'2025-12-04','11:19:15',3497,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,103,'',0,0,'','','','','',2526,'H','O',5646,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-12-04 11:19:15','janvi','2025-12-04 11:19:15',0),(15204,2526,0,0,5130,'2025-12-04','00:00:00',3506,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5648,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 11:21:28','reception','2025-12-04 11:22:42',0),(15205,2526,0,0,5131,'2025-12-04','11:25:40',3386,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5649,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-04 11:25:40','janvi','2025-12-04 11:25:40',0),(15206,2526,0,0,5132,'2025-12-04','00:00:00',3507,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',5658,1,100,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-04 11:26:32','manshi','2025-12-04 11:51:00',0),(15207,2526,0,0,4857,'2025-12-02','11:26:00',0,232,'WPRC','WPRC0080','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',210,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:28:37','','0000-00-00 00:00:00',0),(15208,2526,0,0,4857,'2025-12-03','11:27:00',0,232,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',210,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:28:37','','0000-00-00 00:00:00',0),(15209,2526,0,0,4857,'2025-12-04','11:27:00',0,232,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',210,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:28:37','','0000-00-00 00:00:00',0),(15210,2526,0,0,5133,'2025-12-04','00:00:00',3508,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5650,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 11:31:16','urvashi','2025-12-04 11:31:29',0),(15211,2526,0,0,5134,'2025-12-04','00:00:00',3509,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5651,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 11:33:24','urvashi','2025-12-04 11:33:58',0),(15212,2526,0,0,5135,'2025-12-04','00:00:00',3510,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-04 11:34:04','janvi','2025-12-03 23:04:04',0),(15213,2526,0,0,5136,'2025-12-04','11:40:24',3305,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',5652,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 11:40:24','urvashi','2025-12-04 11:40:24',0),(15214,2526,0,0,5137,'2025-12-04','00:00:00',3511,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5653,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 11:41:01','reception','2025-12-04 11:42:16',0),(15215,2526,0,0,5138,'2025-12-04','00:00:00',3512,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5654,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 11:46:07','reception','2025-12-04 11:46:48',0),(15216,2526,0,0,5139,'2025-12-04','00:00:00',1924,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5655,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 11:47:30','urvashi','2025-12-04 11:47:57',0),(15217,2526,0,0,5140,'2025-12-04','00:00:00',3513,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5657,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 11:48:41','urvashi','2025-12-04 11:49:24',0),(15218,2526,0,0,5141,'2025-12-04','00:00:00',3514,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5656,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 11:48:52','reception','2025-12-04 11:49:17',0),(15219,2526,0,0,5036,'2025-12-03','11:48:00',0,239,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',211,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:49:55','','0000-00-00 00:00:00',0),(15220,2526,0,0,5036,'2025-12-03','11:48:00',0,239,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',211,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:49:55','','0000-00-00 00:00:00',0),(15221,2526,0,0,5036,'2025-12-04','11:48:00',0,239,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',211,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:49:55','','0000-00-00 00:00:00',0),(15222,2526,0,0,5036,'2025-12-03','11:49:00',0,239,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',211,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:49:55','','0000-00-00 00:00:00',0),(15223,2526,0,0,5142,'2025-12-04','00:00:00',3515,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5659,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 11:51:59','urvashi','2025-12-04 12:24:35',0),(15224,2526,0,0,5036,'2025-12-04','11:52:00',0,239,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',211,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:52:53','','0000-00-00 00:00:00',0),(15225,2526,0,0,5036,'2025-12-03','11:53:00',0,239,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',211,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:53:53','','0000-00-00 00:00:00',0),(15226,2526,0,0,5036,'2025-12-04','11:53:00',0,239,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',211,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:53:53','','0000-00-00 00:00:00',0),(15227,2526,0,0,4781,'2025-12-04','11:54:00',0,228,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:56:11','vishal','2025-12-05 14:23:08',0),(15228,2526,0,0,4781,'2025-12-01','11:54:00',0,228,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:56:11','','0000-00-00 00:00:00',0),(15229,2526,0,0,4781,'2025-12-04','11:55:00',0,228,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 11:56:11','vishal','2025-12-05 14:23:08',0),(15230,2526,0,0,4863,'2025-12-04','10:15:00',0,233,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',218,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:26:37','riya','2025-12-04 12:00:04',0),(15231,2526,0,0,4863,'2025-12-04','10:15:00',0,233,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',218,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:26:37','riya','2025-12-04 12:00:04',0),(15232,2526,0,0,4863,'2025-12-04','10:15:00',0,233,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',218,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:26:37','riya','2025-12-04 12:00:04',0),(15233,2526,0,0,4863,'2025-12-04','10:15:00',0,233,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',218,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:26:37','riya','2025-12-04 12:00:04',0),(15234,2526,0,0,4863,'2025-12-04','10:15:00',0,233,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',218,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:26:37','vishal','2025-12-05 13:24:53',0),(15235,2526,0,0,4863,'2025-12-04','11:57:00',0,233,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',218,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 12:00:04','vishal','2025-12-05 12:56:05',0),(15236,2526,0,0,4863,'2025-12-03','11:57:00',0,233,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,52,0,0,'',0,0,'','','','','',2526,'H','I',218,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 12:00:04','','0000-00-00 00:00:00',0),(15237,2526,0,0,4863,'2025-12-03','11:58:00',0,233,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',218,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 12:00:04','','0000-00-00 00:00:00',0),(15238,2526,0,0,4863,'2025-12-04','11:58:00',0,233,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',218,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 12:00:04','vishal','2025-12-05 13:24:53',0),(15239,2526,0,0,4863,'2025-12-03','11:59:00',0,233,'DRC','DRC0020','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,52,0,0,'',0,0,'','','','','',2526,'H','I',218,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 12:00:04','vishal','2025-12-05 13:24:53',0),(15240,2526,0,0,5128,'2025-12-04','12:01:04',3504,0,'PKG','CASE','H','N',1.00,750,750,'P',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5661,1,250,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 12:01:04','urvashi','2025-12-04 12:01:04',0),(15241,2526,0,0,5143,'2025-12-04','00:00:00',513,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',5662,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 12:01:47','reception','2025-12-04 13:56:42',0),(15242,2526,0,0,4694,'2025-12-02','12:02:00',0,222,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,29,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 12:04:19','','0000-00-00 00:00:00',0),(15243,2526,0,0,4694,'2025-12-03','12:02:00',0,222,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,30,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 12:04:19','','0000-00-00 00:00:00',0),(15244,2526,0,0,4694,'2025-12-04','12:03:00',0,222,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,31,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 12:04:19','','0000-00-00 00:00:00',0),(15245,2526,0,0,4694,'2025-12-03','12:03:00',0,222,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,32,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 12:04:19','','0000-00-00 00:00:00',0),(15246,2526,0,0,5144,'2025-12-04','00:00:00',3516,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5663,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 12:05:23','urvashi','2025-12-04 12:07:44',0),(15247,2526,0,0,4688,'2025-12-04','10:30:00',0,218,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:40:41','riya','2025-12-04 13:06:42',0),(15248,2526,0,0,4688,'2025-12-04','10:30:00',0,218,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:40:41','riya','2025-12-04 13:06:42',0),(15249,2526,0,0,4688,'2025-12-04','10:30:00',0,218,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:40:41','riya','2025-12-04 13:06:42',0),(15250,2526,0,0,4688,'2025-12-04','10:30:00',0,218,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:40:41','riya','2025-12-04 13:06:42',0),(15251,2526,0,0,4688,'2025-12-04','10:30:00',0,218,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:40:41','riya','2025-12-04 13:06:42',0),(15252,2526,0,0,4751,'2025-12-04','12:00:00',0,224,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',223,42,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:40:41','riya','2025-12-06 12:28:35',0),(15253,2526,0,0,4751,'2025-12-04','12:00:00',0,224,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',223,41,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:40:41','riya','2025-12-06 12:28:35',0),(15254,2526,0,0,4751,'2025-12-04','12:00:00',0,224,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',223,40,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:40:41','riya','2025-12-06 12:28:35',0),(15255,2526,0,0,4751,'2025-12-04','12:00:00',0,224,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','406','','','',2526,'H','I',223,39,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:40:41','riya','2025-12-06 12:28:35',0),(15256,2526,0,0,4751,'2025-12-04','12:00:00',0,224,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',223,38,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:40:42','riya','2025-12-06 12:28:35',0),(15257,2526,0,0,5145,'2025-12-04','00:00:00',3517,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5664,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 12:15:37','urvashi','2025-12-04 12:16:13',0),(15258,2526,0,0,5146,'2025-12-04','00:00:00',3518,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5665,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 12:15:57','reception','2025-12-04 12:16:55',0),(15259,2526,0,0,5147,'2025-12-04','00:00:00',3519,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5666,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 12:19:55','urvashi','2025-12-04 12:20:33',0),(15260,2526,0,0,5148,'2025-12-04','12:20:00',0,244,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',222,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 12:21:58','riya','2025-12-06 12:19:23',0),(15261,2526,0,0,5148,'2025-12-04','12:20:00',0,244,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',222,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 12:21:58','riya','2025-12-06 12:19:23',0),(15262,2526,0,0,5148,'2025-12-04','12:20:00',0,244,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',222,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:51:58','riya','2025-12-06 12:19:23',0),(15263,2526,0,0,5148,'2025-12-04','12:20:00',0,244,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',222,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:51:58','riya','2025-12-06 12:19:23',0),(15264,2526,0,0,5148,'2025-12-04','12:20:00',0,244,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',222,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:51:58','riya','2025-12-06 12:19:23',0),(15265,2526,0,0,5148,'2025-12-06','12:20:00',0,244,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',2526,'H','I',222,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:51:58','riya','2025-12-06 12:19:23',0),(15266,2526,0,0,5148,'2025-12-04','12:20:00',0,244,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',2526,'H','I',222,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-03 23:51:58','riya','2025-12-06 12:19:23',0),(15267,2526,0,0,5149,'2025-12-04','00:00:00',2592,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5667,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 12:22:12','urvashi','2025-12-04 12:22:23',0),(15268,2526,0,0,5144,'2025-12-04','12:23:54',3516,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',5668,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-04 12:23:54','janvi','2025-12-04 12:23:54',0),(15269,2526,0,0,5142,'2025-12-04','12:25:31',3515,0,'OTCG','OTCG0001','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5670,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 12:25:31','urvashi','2025-12-04 12:25:31',0),(15270,2526,0,0,5150,'2025-12-04','00:00:00',3520,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5671,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 12:26:05','urvashi','2025-12-04 12:26:41',0),(15271,2526,0,0,5151,'2025-12-04','00:00:00',3521,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5672,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 12:27:40','reception','2025-12-04 12:28:22',0),(15272,2526,0,0,4693,'2025-12-04','12:27:00',0,221,'XRY','XRY0045','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',213,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 12:28:01','','0000-00-00 00:00:00',0),(15273,2526,0,0,5152,'2025-12-04','00:00:00',3522,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5674,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 12:29:59','reception','2025-12-04 12:30:21',0),(15274,2526,0,0,5153,'2025-12-04','00:00:00',1526,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5675,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 12:35:40','urvashi','2025-12-04 12:36:24',0),(15275,2526,0,0,5154,'2025-12-04','12:40:35',3486,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',5676,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-04 12:40:35','janvi','2025-12-04 12:40:35',0),(15276,2526,0,0,5155,'2025-12-04','00:00:00',3523,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5677,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 12:43:49','urvashi','2025-12-04 12:51:22',0),(15277,2526,0,0,5156,'2025-12-04','00:00:00',3524,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5678,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-04 12:46:05','janvi','2025-12-04 12:47:23',0),(15278,2526,0,0,5157,'2025-12-04','00:00:00',3525,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5679,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 12:47:18','urvashi','2025-12-04 12:48:16',0),(15279,2526,0,0,5158,'2025-12-04','00:00:00',1862,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5680,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 12:48:28','reception','2025-12-04 12:49:36',0),(15280,2526,0,0,5141,'2025-12-04','12:52:07',3514,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5682,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 12:52:07','reception','2025-12-04 12:52:07',0),(15281,2526,0,0,5141,'2025-12-04','12:52:07',3514,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5682,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 12:52:07','reception','2025-12-04 12:52:07',0),(15282,2526,0,0,5141,'2025-12-04','12:52:07',3514,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5682,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 12:52:07','reception','2025-12-04 12:52:07',0),(15283,2526,0,0,5155,'2025-12-04','12:52:10',3523,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5683,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 12:52:10','urvashi','2025-12-04 12:52:10',0),(15284,2526,0,0,5159,'2025-12-04','00:00:00',3526,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5684,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 13:01:38','urvashi','2025-12-04 13:02:35',0),(15285,2526,0,0,5160,'2025-12-04','00:00:00',3527,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5685,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 13:04:51','reception','2025-12-04 13:06:32',0),(15286,2526,0,0,5161,'2025-12-04','00:00:00',1631,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5686,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 13:06:27','urvashi','2025-12-04 13:06:59',0),(15287,2526,0,0,4688,'2025-12-01','13:17:00',0,218,'ROOM','ROOM0008','H','N',9.00,100,900,'P',0,0,0.00,0.00,900.00,900,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:19:16','','0000-00-00 00:00:00',0),(15288,2526,0,0,4688,'2025-12-02','13:18:00',0,218,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:19:16','','0000-00-00 00:00:00',0),(15289,2526,0,0,4688,'2025-12-04','13:18:00',0,218,'ROOM','ROOM0008','H','N',13.00,100,1300,'P',0,0,0.00,0.00,1300.00,1300,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:19:16','riya','2025-12-11 13:56:07',0),(15290,2526,0,0,4688,'2025-12-03','13:18:00',0,218,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:19:16','','0000-00-00 00:00:00',0),(15291,2526,0,0,4688,'2025-12-02','13:18:00',0,218,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:19:16','','0000-00-00 00:00:00',0),(15292,2526,0,0,4688,'2025-12-03','13:33:00',0,218,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,248,0,0,'',0,0,'','','','','',2526,'H','I',252,32,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:33:56','riya','2025-12-11 14:25:38',0),(15293,2526,0,0,5162,'2025-12-04','00:00:00',2662,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 13:36:36','urvashi','2025-12-04 01:06:36',0),(15294,2526,0,0,4920,'2025-12-04','13:30:00',0,235,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',0,'','',0,13,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 01:10:12','riya','2025-12-04 13:56:53',0),(15295,2526,0,0,4920,'2025-12-04','13:30:00',0,235,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',0,'','',0,14,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 01:10:12','riya','2025-12-04 13:56:53',0),(15296,2526,0,0,4920,'2025-12-04','13:30:00',0,235,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',0,'','',0,15,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 01:10:12','riya','2025-12-04 13:56:53',0),(15297,2526,0,0,4920,'2025-12-04','13:30:00',0,235,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','308','','','',2526,'H','I',212,23,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 01:10:12','vishal','2025-12-04 17:39:18',0),(15298,2526,0,0,4920,'2025-12-04','13:30:00',0,235,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',0,'','',0,17,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 01:10:12','riya','2025-12-04 16:42:39',0),(15299,2526,0,0,4920,'2025-12-02','13:41:00',0,235,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',212,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:44:08','','0000-00-00 00:00:00',0),(15300,2526,0,0,4920,'2025-12-03','13:41:00',0,235,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',212,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:44:08','','0000-00-00 00:00:00',0),(15301,2526,0,0,4920,'2025-12-03','13:42:00',0,235,'WPRC','WPRC0077','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',212,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:44:08','','0000-00-00 00:00:00',0),(15302,2526,0,0,4920,'2025-12-03','13:42:00',0,235,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',212,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:44:08','','0000-00-00 00:00:00',0),(15303,2526,0,0,4920,'2025-12-03','13:42:00',0,235,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',212,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:44:08','','0000-00-00 00:00:00',0),(15304,2526,0,0,4920,'2025-12-04','13:43:00',0,235,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',212,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:44:08','riya','2025-12-04 16:42:39',0),(15305,2526,0,0,4920,'2025-12-03','13:43:00',0,235,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',212,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:44:08','','0000-00-00 00:00:00',0),(15306,2526,0,0,5157,'2025-12-04','13:50:14',3525,0,'USG','USG0059','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','O',5687,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-04 13:50:14','janvi','2025-12-04 13:50:14',0),(15307,2526,0,0,5162,'2025-12-04','13:52:12',2662,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',5688,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-04 13:52:12','janvi','2025-12-04 13:52:12',0),(15308,2526,0,0,4920,'2025-12-04','13:45:00',0,235,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:56:53','vishal','2025-12-04 17:39:18',0),(15309,2526,0,0,4920,'2025-12-03','13:45:00',0,235,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',212,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:56:53','','0000-00-00 00:00:00',0),(15310,2526,0,0,4920,'2025-12-04','13:46:00',0,235,'CARE','CARE0004','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:56:53','vishal','2025-12-04 17:39:18',0),(15311,2526,0,0,4920,'2025-12-03','13:46:00',0,235,'CARE','CARE0004','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',212,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:56:53','','0000-00-00 00:00:00',0),(15312,2526,0,0,4920,'2025-12-03','13:46:00',0,235,'CARE','CARE0003','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',212,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:56:53','','0000-00-00 00:00:00',0),(15313,2526,0,0,4920,'2025-12-04','13:46:00',0,235,'CARE','CARE0003','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:56:53','vishal','2025-12-04 17:39:18',0),(15314,2526,0,0,4920,'2025-12-03','13:50:00',0,235,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','','','','',2526,'H','I',212,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:56:53','','0000-00-00 00:00:00',0),(15315,2526,0,0,4920,'2025-12-03','13:50:00',0,235,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,249,0,0,'',0,0,'','','','','',2526,'H','I',212,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:56:53','','0000-00-00 00:00:00',0),(15316,2526,0,0,4920,'2025-12-03','13:51:00',0,235,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,229,0,0,'',0,0,'','','','','',2526,'H','I',212,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:56:53','','0000-00-00 00:00:00',0),(15317,2526,0,0,4920,'2025-12-04','13:54:00',0,235,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,250,0,0,'',0,0,'','','','','',2526,'H','I',212,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 13:56:53','','0000-00-00 00:00:00',0),(15318,2526,0,0,5143,'2025-12-04','13:58:11',513,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',5690,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 13:58:11','reception','2025-12-04 13:58:11',0),(15319,2526,0,0,4920,'2025-12-02','14:01:00',0,235,'WPRC','WPRC0120','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,4,0,0,'',0,0,'','','','','',2526,'H','I',212,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 14:02:40','riya','2025-12-04 14:03:27',0),(15320,2526,0,0,4920,'2025-12-02','14:07:00',0,235,'WPRC','WPRC0121','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,4,0,0,'',0,0,'','','','','',2526,'H','I',212,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 14:08:30','','0000-00-00 00:00:00',0),(15321,2526,0,0,5163,'2025-12-04','15:00:00',0,245,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 14:57:47','riya','2025-12-04 16:08:56',0),(15322,2526,0,0,5163,'2025-12-04','15:00:00',0,245,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 14:57:47','riya','2025-12-04 16:08:56',0),(15323,2526,0,0,4693,'2025-12-04','13:30:00',0,221,'ROOM','ROOM0009','H','N',0.50,2900,1450,'A',0,0,0.00,0.00,1450.00,1450,9999,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 02:39:02','riya','2025-12-04 20:16:47',0),(15324,2526,0,0,4693,'2025-12-04','13:30:00',0,221,'AECO','AECO0008','H','N',0.50,300,150,'A',0,0,0.00,0.00,150.00,150,9999,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 02:39:02','riya','2025-12-04 20:16:47',0),(15325,2526,0,0,4693,'2025-12-04','13:30:00',0,221,'CARE','CARE0001','H','N',0.50,200,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 02:39:02','riya','2025-12-04 20:16:47',0),(15326,2526,0,0,4693,'2025-12-04','13:30:00',0,221,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 02:39:02','riya','2025-12-04 15:09:07',0),(15327,2526,0,0,4693,'2025-12-04','13:30:00',0,221,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',213,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 02:39:02','riya','2025-12-04 15:09:07',0),(15328,2526,0,0,4970,'2025-12-02','15:12:00',0,237,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',221,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 15:19:56','','0000-00-00 00:00:00',0),(15329,2526,0,0,4970,'2025-12-02','15:12:00',0,237,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',221,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 15:19:56','','0000-00-00 00:00:00',0),(15330,2526,0,0,4970,'2025-12-02','15:12:00',0,237,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',221,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 15:19:56','','0000-00-00 00:00:00',0),(15331,2526,0,0,4970,'2025-12-03','15:13:00',0,237,'WPRC','WPRC0080','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',221,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 15:19:56','','0000-00-00 00:00:00',0),(15332,2526,0,0,4970,'2025-12-03','15:13:00',0,237,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',221,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 15:19:56','','0000-00-00 00:00:00',0),(15333,2526,0,0,4970,'2025-12-04','15:13:00',0,237,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',221,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 15:19:56','','0000-00-00 00:00:00',0),(15334,2526,0,0,4970,'2025-12-03','15:13:00',0,237,'WPRC','WPRC0086','H','N',3.00,200,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',221,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 15:19:56','riya','2025-12-04 21:54:53',0),(15335,2526,0,0,4970,'2025-12-04','15:14:00',0,237,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','','','','',2526,'H','I',221,20,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 15:19:56','','0000-00-00 00:00:00',0),(15336,2526,0,0,4781,'2025-12-04','15:00:00',0,228,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 02:52:26','riya','2025-12-04 15:22:32',0),(15337,2526,0,0,4781,'2025-12-04','15:00:00',0,228,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 02:52:26','vishal','2025-12-05 14:23:08',0),(15338,2526,0,0,4781,'2025-12-04','15:00:00',0,228,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 02:52:26','vishal','2025-12-05 14:23:08',0),(15339,2526,0,0,4781,'2025-12-04','15:00:00',0,228,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 02:52:26','vishal','2025-12-05 14:23:08',0),(15340,2526,0,0,4781,'2025-12-04','15:00:00',0,228,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',217,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 02:52:26','vishal','2025-12-05 14:23:08',0),(15341,2526,0,0,5164,'2025-12-04','15:40:00',0,246,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',214,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 15:42:49','riya','2025-12-04 21:40:31',0),(15342,2526,0,0,5164,'2025-12-04','15:40:00',0,246,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',214,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 15:42:49','riya','2025-12-04 21:40:31',0),(15343,2526,0,0,5164,'2025-12-04','15:40:00',0,246,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-04 03:12:49','riya','2025-12-04 21:40:31',0),(15344,2526,0,0,5164,'2025-12-04','15:40:00',0,246,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-04 03:12:49','riya','2025-12-04 21:40:31',0),(15345,2526,0,0,5164,'2025-12-04','15:40:00',0,246,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-04 03:12:49','riya','2025-12-04 21:40:31',0),(15346,2526,0,0,5164,'2025-12-04','15:40:00',0,246,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-04 03:12:49','riya','2025-12-04 21:40:31',0),(15347,2526,0,0,5164,'2025-12-04','15:40:00',0,246,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','308','','','',2526,'H','I',214,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 03:12:49','riya','2025-12-04 21:40:31',0),(15348,2526,0,0,5165,'2025-12-04','00:00:00',3528,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5691,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 16:08:37','reception','2025-12-04 16:09:06',0),(15349,2526,0,0,5163,'2025-12-04','15:00:00',0,245,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','310','','','',0,'','',0,3,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 03:38:46','vishal','2025-12-05 16:58:54',0),(15350,2526,0,0,5163,'2025-12-04','15:00:00',0,245,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','310','','','',0,'','',0,4,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 03:38:46','vishal','2025-12-05 16:58:54',0),(15351,2526,0,0,5163,'2025-12-04','15:00:00',0,245,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','310','','','',0,'','',0,5,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 03:38:46','vishal','2025-12-05 16:58:54',0),(15352,2526,0,0,5163,'2025-12-04','15:00:00',0,245,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','310','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 03:38:46','vishal','2025-12-05 17:01:10',0),(15353,2526,0,0,5163,'2025-12-04','15:00:00',0,245,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','310','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 03:38:46','vishal','2025-12-05 17:01:10',0),(15354,2526,0,0,5163,'2025-12-04','16:08:00',0,245,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 16:08:56','','0000-00-00 00:00:00',0),(15355,2526,0,0,5166,'2025-12-04','00:00:00',2678,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5692,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-04 16:35:10','shweta','2025-12-04 16:35:31',0),(15356,2526,0,0,5167,'2025-12-04','00:00:00',2830,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5693,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-04 16:37:21','shweta','2025-12-04 16:37:43',0),(15357,2526,0,0,5168,'2025-12-04','00:00:00',3529,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5694,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 16:48:08','reception','2025-12-04 16:48:57',0),(15358,2526,0,0,5169,'2025-12-04','00:00:00',3530,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'W','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drpratapsinh','2025-12-04 00:00:00','drpratapsinh','2025-12-04 04:22:36',0),(15359,2526,0,0,5170,'2025-12-04','00:00:00',3531,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'W','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drpratapsinh','2025-12-04 00:00:00','drpratapsinh','2025-12-04 04:23:04',0),(15360,2526,0,0,5171,'2025-12-04','00:00:00',3532,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5695,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 16:53:45','reception','2025-12-04 16:54:40',0),(15361,2526,0,0,5172,'2025-12-04','17:04:56',3491,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5696,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 17:04:56','reception','2025-12-04 17:04:56',0),(15362,2526,0,0,5172,'2025-12-04','17:04:56',3491,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5696,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 17:04:56','reception','2025-12-04 17:04:56',0),(15363,2526,0,0,5173,'2025-12-04','00:00:00',3533,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5697,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 17:10:25','reception','2025-12-04 17:11:32',0),(15364,2526,0,0,5174,'2025-12-04','00:00:00',3534,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'W','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drpratapsinh','2025-12-04 00:00:00','drpratapsinh','2025-12-04 04:41:22',0),(15365,2526,0,0,5175,'2025-12-04','17:00:00',0,247,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',238,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 17:18:32','vishal','2025-12-05 17:08:41',0),(15366,2526,0,0,5175,'2025-12-04','17:00:00',0,247,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',238,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 17:18:32','vishal','2025-12-05 17:08:41',0),(15367,2526,0,0,5175,'2025-12-04','17:00:00',0,247,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',238,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 04:48:32','vishal','2025-12-05 17:08:41',0),(15368,2526,0,0,5175,'2025-12-04','17:00:00',0,247,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',238,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 04:48:32','vishal','2025-12-05 17:08:41',0),(15369,2526,0,0,5175,'2025-12-04','17:00:00',0,247,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',238,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 04:48:32','vishal','2025-12-09 10:37:12',0),(15370,2526,0,0,5175,'2025-12-04','17:00:00',0,247,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 04:48:32','vishal','2025-12-05 17:08:41',0),(15371,2526,0,0,5175,'2025-12-04','17:00:00',0,247,'DRC','DRC0019','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','207','','','',2526,'H','I',238,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 04:48:32','vishal','2025-12-05 17:08:41',0),(15372,2526,0,0,5176,'2025-12-04','00:00:00',803,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5698,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 17:24:10','reception','2025-12-04 17:24:31',0),(15373,2526,0,0,5177,'2025-12-04','00:00:00',3535,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5699,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 17:31:37','reception','2025-12-04 17:32:06',0),(15374,2526,0,0,5178,'2025-12-04','17:34:18',3127,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',5700,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 17:34:18','reception','2025-12-04 17:34:18',0),(15375,2526,0,0,5179,'2025-12-04','00:00:00',3536,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5701,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 17:37:01','reception','2025-12-04 17:38:31',0),(15376,2526,0,0,5168,'2025-12-04','17:39:14',3529,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5702,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 17:39:14','reception','2025-12-04 17:39:14',0),(15377,2526,0,0,5168,'2025-12-04','17:39:14',3529,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5702,2,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 17:39:14','reception','2025-12-04 17:39:14',0),(15378,2526,0,0,5180,'2025-12-04','00:00:00',1885,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5703,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 17:39:40','urvashi','2025-12-04 17:40:04',0),(15379,2526,0,0,5181,'2025-12-04','00:00:00',3537,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5704,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-04 17:40:06','manshi','2025-12-04 17:40:28',0),(15380,2526,0,0,5182,'2025-12-04','00:00:00',721,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5705,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 17:43:24','urvashi','2025-12-04 17:43:35',0),(15381,2526,0,0,5181,'2025-12-04','00:00:00',3537,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',5707,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-04 17:43:36','manshi','2025-12-04 17:43:45',0),(15382,2526,0,0,5183,'2025-12-04','00:00:00',3538,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5708,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-04 17:49:23','janvi','2025-12-04 17:49:58',0),(15383,2526,0,0,5171,'2025-12-04','17:53:45',3532,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5709,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 17:53:45','reception','2025-12-04 17:53:45',0),(15384,2526,0,0,5171,'2025-12-04','17:53:45',3532,0,'NEU1','NEU10020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',5709,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 17:53:45','reception','2025-12-04 17:53:45',0),(15385,2526,0,0,5136,'2025-12-04','17:55:34',3305,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5710,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-04 17:55:34','janvi','2025-12-04 17:55:34',0),(15386,2526,0,0,5136,'2025-12-04','17:55:34',3305,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5710,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-04 17:55:34','janvi','2025-12-04 17:55:34',0),(15387,2526,0,0,5185,'2025-12-04','00:00:00',3539,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5711,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 17:56:17','reception','2025-12-04 17:56:39',0),(15388,2526,0,0,5186,'2025-12-04','00:00:00',3540,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5712,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 17:59:38','urvashi','2025-12-04 18:00:26',0),(15389,2526,0,0,5187,'2025-12-04','00:00:00',774,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5713,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 18:00:33','reception','2025-12-04 18:01:46',0),(15390,2526,0,0,5188,'2025-12-04','00:00:00',3541,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5714,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 18:05:52','urvashi','2025-12-04 18:06:05',0),(15391,2526,0,0,5189,'2025-12-04','00:00:00',3542,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5715,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 18:08:26','reception','2025-12-04 18:08:57',0),(15392,2526,0,0,5190,'2025-12-04','00:00:00',1005,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-04 18:09:35','manshi','2025-12-04 05:39:35',0),(15393,2526,0,0,5192,'2025-12-04','00:00:00',3018,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5717,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 18:10:06','urvashi','2025-12-04 18:12:03',0),(15394,2526,0,0,5191,'2025-12-04','18:10:21',3181,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',5716,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 18:10:21','reception','2025-12-04 18:10:21',0),(15395,2526,0,0,5184,'2025-12-04','18:12:26',2738,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',5718,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-04 18:12:26','janvi','2025-12-04 18:12:26',0),(15396,2526,0,0,5193,'2025-12-04','00:00:00',2710,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5719,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-04 18:15:34','manshi','2025-12-04 18:15:42',0),(15397,2526,0,0,5194,'2025-12-04','00:00:00',3543,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5721,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-04 18:16:18','manshi','2025-12-04 18:16:55',0),(15398,2526,0,0,5195,'2025-12-04','00:00:00',3544,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5720,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 18:16:26','urvashi','2025-12-04 18:16:51',0),(15399,2526,0,0,5196,'2025-12-04','00:00:00',833,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5722,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 18:23:03','urvashi','2025-12-04 18:23:58',0),(15400,2526,0,0,5197,'2025-12-04','00:00:00',3545,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',5723,1,400,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-04 18:23:35','manshi','2025-12-04 18:24:17',0),(15401,2526,0,0,5198,'2025-12-04','00:00:00',766,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5725,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 18:25:08','reception','2025-12-04 18:26:25',0),(15402,2526,0,0,5189,'2025-12-04','18:25:32',3542,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,104,'',0,0,'','','','','',2526,'H','O',5724,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'urvashi','2025-12-04 18:25:32','urvashi','2025-12-04 18:25:32',0),(15403,2526,0,0,4017,'2025-12-04','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,120,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:12','vishal','2025-12-05 17:13:02',0),(15404,2526,0,0,4017,'2025-12-04','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,121,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:12','vishal','2025-12-05 17:13:02',0),(15405,2526,0,0,4017,'2025-12-04','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,122,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:12','vishal','2025-12-05 17:13:02',0),(15406,2526,0,0,4017,'2025-12-04','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,123,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:12','vishal','2025-12-05 17:13:02',0),(15407,2526,0,0,4017,'2025-12-04','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,125,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:12','vishal','2025-12-21 11:20:51',0),(15408,2526,0,0,4694,'2025-12-04','17:00:00',0,222,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',262,33,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:13','riya','2025-12-05 20:22:02',0),(15409,2526,0,0,4694,'2025-12-04','17:00:00',0,222,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',262,37,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:13','riya','2025-12-05 20:22:02',0),(15410,2526,0,0,4694,'2025-12-04','17:00:00',0,222,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',262,36,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:13','riya','2025-12-05 20:22:02',0),(15411,2526,0,0,4694,'2025-12-04','17:00:00',0,222,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',262,35,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:13','riya','2025-12-05 20:22:02',0),(15412,2526,0,0,4694,'2025-12-04','17:00:00',0,222,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',262,34,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:13','riya','2025-12-05 20:22:02',0),(15413,2526,0,0,4777,'2025-12-04','14:00:00',0,225,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','D',271,21,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:13','riya','2025-12-08 15:38:08',0),(15414,2526,0,0,4777,'2025-12-04','14:00:00',0,225,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','D',271,20,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:13','riya','2025-12-08 15:38:08',0),(15415,2526,0,0,4777,'2025-12-04','14:00:00',0,225,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','D',271,22,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:13','riya','2025-12-08 15:38:08',0),(15416,2526,0,0,4777,'2025-12-04','14:00:00',0,225,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','D',271,19,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:13','riya','2025-12-08 15:38:08',0),(15417,2526,0,0,4777,'2025-12-04','14:00:00',0,225,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','D',271,18,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:13','riya','2025-12-08 15:38:08',0),(15418,2526,0,0,4778,'2025-12-04','14:30:00',0,226,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:13','vishal','2025-12-05 11:15:37',0),(15419,2526,0,0,4778,'2025-12-04','14:30:00',0,226,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:13','vishal','2025-12-05 11:15:37',0),(15420,2526,0,0,4778,'2025-12-04','14:30:00',0,226,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:13','vishal','2025-12-05 11:15:37',0),(15421,2526,0,0,4778,'2025-12-04','14:30:00',0,226,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:13','vishal','2025-12-05 11:19:35',0),(15422,2526,0,0,4778,'2025-12-04','14:30:00',0,226,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',216,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 05:58:13','vishal','2025-12-05 11:19:35',0),(15423,2526,0,0,5186,'2025-12-04','18:29:05',3540,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',5726,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 18:29:05','urvashi','2025-12-04 18:29:05',0),(15424,2526,0,0,5199,'2025-12-04','00:00:00',2510,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5727,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-04 18:30:34','janvi','2025-12-04 18:31:13',0),(15425,2526,0,0,5200,'2025-12-04','00:00:00',2333,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5729,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 18:34:32','reception','2025-12-04 18:34:45',0),(15426,2526,0,0,5192,'2025-12-04','18:34:44',3018,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,105,'',0,0,'','','','','',2526,'H','O',5728,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'urvashi','2025-12-04 18:34:44','urvashi','2025-12-04 18:34:44',0),(15427,2526,0,0,5201,'2025-12-04','00:00:00',3546,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5730,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 18:35:43','urvashi','2025-12-04 18:36:31',0),(15428,2526,0,0,5089,'2025-12-04','18:30:00',0,241,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',0,'','',0,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 06:05:45','riya','2025-12-08 11:58:24',0),(15429,2526,0,0,5089,'2025-12-04','18:30:00',0,241,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',0,'','',0,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 06:05:45','riya','2025-12-08 11:58:24',0),(15430,2526,0,0,5089,'2025-12-04','18:30:00',0,241,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',0,'','',0,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 06:05:45','riya','2025-12-08 11:58:24',0),(15431,2526,0,0,5089,'2025-12-04','18:30:00',0,241,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','212','','','',0,'','',0,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 06:05:45','riya','2025-12-08 11:58:24',0),(15432,2526,0,0,5089,'2025-12-04','18:30:00',0,241,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','212','','','',0,'','',0,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 06:05:45','riya','2025-12-08 11:58:24',0),(15433,2526,0,0,5202,'2025-12-04','00:00:00',2692,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 18:37:16','urvashi','2025-12-04 06:07:16',0),(15434,2526,0,0,5203,'2025-12-04','00:00:00',2877,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5731,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 18:41:07','reception','2025-12-04 18:42:38',0),(15435,2526,0,0,5204,'2025-12-04','00:00:00',3547,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5733,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-04 18:45:33','janvi','2025-12-04 18:46:36',0),(15436,2526,0,0,5205,'2025-12-04','00:00:00',3548,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5732,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 18:45:41','reception','2025-12-04 18:45:58',0),(15437,2526,0,0,5206,'2025-12-04','18:47:22',3310,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5734,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-04 18:47:22','janvi','2025-12-04 18:47:22',0),(15438,2526,0,0,5207,'2025-12-04','18:48:29',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5735,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 18:48:29','reception','2025-12-04 18:48:29',0),(15439,2526,0,0,5208,'2025-12-04','00:00:00',3123,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 18:53:00','urvashi','2025-12-04 06:23:00',0),(15440,2526,0,0,5209,'2025-12-04','00:00:00',3549,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5737,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 18:56:49','reception','2025-12-04 18:58:24',0),(15441,2526,0,0,5210,'2025-12-04','00:00:00',3550,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5736,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 18:58:00','reception','2025-12-04 18:58:11',0),(15442,2526,0,0,5192,'2025-12-04','18:58:44',3018,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',5738,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 18:58:44','urvashi','2025-12-04 18:58:44',0),(15443,2526,0,0,5211,'2025-12-04','00:00:00',3551,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5739,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 19:03:23','reception','2025-12-04 19:04:02',0),(15444,2526,0,0,5201,'2025-12-04','19:07:52',3546,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,106,'',0,0,'','','','','',2526,'H','O',5740,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',5,'urvashi','2025-12-04 19:07:52','urvashi','2025-12-04 19:07:52',0),(15445,2526,0,0,5212,'2025-12-04','00:00:00',1721,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5741,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-04 19:17:03','reception','2025-12-04 19:17:59',0),(15446,2526,0,0,5213,'2025-12-04','00:00:00',3552,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5742,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-04 19:20:53','janvi','2025-12-04 19:21:19',0),(15447,2526,0,0,5214,'2025-12-04','00:00:00',554,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5743,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-04 19:24:08','urvashi','2025-12-04 19:24:31',0),(15448,2526,0,0,4693,'2025-12-04','20:12:00',0,221,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',213,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 20:15:56','','0000-00-00 00:00:00',0),(15449,2526,0,0,4968,'2025-12-04','19:50:00',3406,236,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','311','','','',2526,'H','I',215,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 08:53:37','vishal','2025-12-05 11:25:19',0),(15450,2526,0,0,4968,'2025-12-04','19:50:00',3406,236,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','311','','','',2526,'H','I',215,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 08:53:37','vishal','2025-12-05 11:25:19',0),(15451,2526,0,0,4968,'2025-12-04','19:50:00',3406,236,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','311','','','',2526,'H','I',215,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 08:53:37','vishal','2025-12-05 11:25:19',0),(15452,2526,0,0,4968,'2025-12-05','19:50:00',3406,236,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','311','','','',2526,'H','I',215,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 08:53:37','vishal','2025-12-05 11:25:19',0),(15453,2526,0,0,4968,'2025-12-04','19:50:00',3406,236,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','311','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-04 08:53:37','vishal','2025-12-05 11:25:19',0),(15454,2526,0,0,4970,'2025-12-04','20:00:00',0,237,'AECO','AECO0008','H','N',0.50,800,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','211','','','',2526,'H','I',221,21,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 08:53:37','riya','2025-12-04 21:58:13',0),(15455,2526,0,0,4970,'2025-12-04','20:00:00',0,237,'CARE','CARE0001','H','N',0.50,600,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','211','','','',2526,'H','I',221,22,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 08:53:37','riya','2025-12-04 21:58:13',0),(15456,2526,0,0,4970,'2025-12-04','20:00:00',0,237,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',221,23,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 08:53:37','riya','2025-12-04 21:54:53',0),(15457,2526,0,0,4970,'2025-12-04','20:00:00',0,237,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',221,24,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 08:53:37','riya','2025-12-04 21:54:53',0),(15458,2526,0,0,4970,'2025-12-04','20:00:00',0,237,'ROOM','ROOM0009','H','N',0.50,5500,2750,'A',0,0,0.00,0.00,2750.00,2750,9999,0,0,'',0,0,'','211','','','',2526,'H','I',221,25,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 08:53:37','riya','2025-12-04 21:58:13',0),(15459,2526,0,0,5164,'2025-12-04','21:38:00',0,246,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',214,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 21:40:31','','0000-00-00 00:00:00',0),(15460,2526,0,0,5164,'2025-12-04','21:39:00',0,246,'CARE','CARE0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',214,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 21:40:31','','0000-00-00 00:00:00',0),(15461,2526,0,0,5164,'2025-12-04','21:42:00',0,246,'SURG','SURG0016','H','N',1.00,12500,12500,'P',0,0,0.00,0.00,12500.00,12500,3,0,0,'',0,0,'','','','','',2526,'H','I',214,6,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 21:43:08','riya','2025-12-04 21:43:20',0),(15462,2526,0,0,5164,'2025-12-04','21:42:00',0,246,'SURG','SURG0015','H','N',1.00,4100,4100,'P',0,0,0.00,0.00,4100.00,4100,3,0,0,'',0,0,'','','','','',2526,'H','I',214,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 21:43:08','riya','2025-12-04 21:43:20',0),(15463,2526,0,0,4970,'2025-12-04','21:55:00',0,237,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',221,26,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-04 21:55:41','','0000-00-00 00:00:00',0),(15464,2526,0,0,5216,'2025-12-05','00:00:00',3553,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 08:39:14','reception','2025-12-04 20:09:14',0),(15465,2526,0,0,5216,'2025-12-05','08:40:40',3553,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',5744,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-05 08:40:40','reception','2025-12-05 08:40:40',0),(15466,2526,0,0,5216,'2025-12-05','08:40:40',3553,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5744,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-05 08:40:40','reception','2025-12-05 08:40:40',0),(15467,2526,0,0,5216,'2025-12-05','08:40:40',3553,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,107,'',0,0,'','','','','',2526,'H','O',5744,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-05 08:40:40','reception','2025-12-05 08:40:40',0),(15468,2526,0,0,5216,'2025-12-05','08:40:40',3553,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5744,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-05 08:40:40','reception','2025-12-05 08:40:40',0),(15469,2526,0,0,5217,'2025-12-05','08:42:22',3305,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',5745,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 08:42:22','reception','2025-12-05 08:42:22',0),(15470,2526,0,0,5218,'2025-12-05','00:00:00',3554,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 08:47:15','reception','2025-12-04 20:17:15',0),(15471,2526,0,0,5218,'2025-12-05','08:48:53',3554,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',5746,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 08:48:53','reception','2025-12-05 09:04:34',0),(15472,2526,0,0,5218,'2025-12-05','08:48:53',3554,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5746,2,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 08:48:53','reception','2025-12-05 09:04:34',0),(15473,2526,0,0,5218,'2025-12-05','09:06:27',3554,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',5748,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 09:06:27','reception','2025-12-05 09:06:27',0),(15474,2526,0,0,5218,'2025-12-05','09:06:27',3554,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5748,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 09:06:27','reception','2025-12-05 09:06:27',0),(15475,2526,0,0,5217,'2025-12-05','09:20:18',3305,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',5749,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 09:20:18','janvi','2025-12-05 09:20:18',0),(15476,2526,0,0,5219,'2025-12-05','00:00:00',2980,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5750,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 09:39:00','reception','2025-12-05 09:39:31',0),(15477,2526,0,0,5220,'2025-12-05','00:00:00',1580,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5751,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 09:42:57','reception','2025-12-05 09:43:32',0),(15478,2526,0,0,5221,'2025-12-05','00:00:00',3555,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5752,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 09:49:47','reception','2025-12-05 09:50:48',0),(15479,2526,0,0,5222,'2025-12-05','00:00:00',3556,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5753,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 09:57:34','reception','2025-12-05 09:58:23',0),(15480,2526,0,0,5223,'2025-12-05','09:00:00',3525,248,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',219,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 09:57:37','vishal','2025-12-05 18:38:54',0),(15481,2526,0,0,5223,'2025-12-05','09:00:00',3525,248,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',219,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 09:57:37','vishal','2025-12-05 18:38:54',0),(15482,2526,0,0,5223,'2025-12-05','09:00:00',3525,248,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 21:27:37','vishal','2025-12-05 19:01:57',0),(15483,2526,0,0,5223,'2025-12-05','09:00:00',3525,248,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 21:27:37','vishal','2025-12-05 19:01:57',0),(15484,2526,0,0,5223,'2025-12-05','09:00:00',3525,248,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 21:27:37','vishal','2025-12-05 19:01:57',0),(15485,2526,0,0,5223,'2025-12-05','09:00:00',3525,248,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',219,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 21:27:37','vishal','2025-12-05 18:38:54',0),(15486,2526,0,0,5223,'2025-12-05','09:00:00',3525,248,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',219,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 21:27:37','vishal','2025-12-05 18:38:54',0),(15487,2526,0,0,5224,'2025-12-05','10:08:07',3208,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5754,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 10:08:07','janvi','2025-12-05 10:08:07',0),(15488,2526,0,0,5225,'2025-12-05','00:00:00',3557,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5769,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 10:15:46','urvashi','2025-12-05 11:10:22',0),(15489,2526,0,0,5226,'2025-12-05','00:00:00',3558,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5755,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 10:16:30','reception','2025-12-05 10:16:47',0),(15490,2526,0,0,5227,'2025-12-05','00:00:00',3559,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5756,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 10:18:41','reception','2025-12-05 10:18:58',0),(15491,2526,0,0,5228,'2025-12-05','00:00:00',2062,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5757,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 10:20:21','reception','2025-12-05 10:20:36',0),(15492,2526,0,0,5229,'2025-12-05','00:00:00',3560,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5758,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 10:44:55','reception','2025-12-05 10:45:57',0),(15493,2526,0,0,5230,'2025-12-05','00:00:00',2295,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5759,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 10:48:55','janvi','2025-12-05 10:49:08',0),(15494,2526,0,0,5231,'2025-12-05','00:00:00',3561,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5760,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 10:51:33','janvi','2025-12-05 10:52:10',0),(15495,2526,0,0,5232,'2025-12-05','00:00:00',3562,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5761,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 10:54:29','reception','2025-12-05 10:54:54',0),(15496,2526,0,0,5233,'2025-12-05','00:00:00',3563,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5762,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 11:01:29','urvashi','2025-12-05 11:02:18',0),(15497,2526,0,0,5234,'2025-12-05','00:00:00',3564,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5764,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 11:04:15','urvashi','2025-12-05 11:05:27',0),(15498,2526,0,0,5235,'2025-12-05','00:00:00',3565,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5763,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:04:28','reception','2025-12-05 11:05:17',0),(15499,2526,0,0,5236,'2025-12-05','00:00:00',3566,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5765,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:06:35','reception','2025-12-05 11:07:39',0),(15500,2526,0,0,5237,'2025-12-05','00:00:00',3567,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5766,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 11:08:14','urvashi','2025-12-05 11:08:35',0),(15501,2526,0,0,5238,'2025-12-05','00:00:00',3568,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5767,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 11:09:00','janvi','2025-12-05 11:09:29',0),(15502,2526,0,0,5239,'2025-12-05','00:00:00',3569,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5768,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:09:26','reception','2025-12-05 11:09:47',0),(15503,2526,0,0,5240,'2025-12-05','00:00:00',1575,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5770,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:10:51','reception','2025-12-05 11:11:07',0),(15504,2526,0,0,5241,'2025-12-05','00:00:00',3570,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5771,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 11:11:10','urvashi','2025-12-05 11:54:58',0),(15505,2526,0,0,4778,'2025-12-05','11:14:00',0,226,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',216,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 11:15:37','','0000-00-00 00:00:00',0),(15506,2526,0,0,4778,'2025-12-05','11:15:00',0,226,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 11:15:37','vishal','2025-12-05 11:37:35',0),(15507,2526,0,0,5221,'2025-12-05','11:18:21',3555,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5772,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:18:21','reception','2025-12-05 11:18:21',0),(15508,2526,0,0,5221,'2025-12-05','11:18:21',3555,0,'NEU1','NEU10020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5772,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:18:21','reception','2025-12-05 11:18:21',0),(15509,2526,0,0,5221,'2025-12-05','11:18:21',3555,0,'NEU1','NEU10017','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5772,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:18:21','reception','2025-12-05 11:18:21',0),(15510,2526,0,0,4778,'2025-12-02','11:17:00',0,226,'SURG','SURG0016','H','N',1.00,62000,62000,'A',0,0,0.00,0.00,62000.00,62000,188,0,0,'',0,0,'','','','','',2526,'H','I',216,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 11:19:14','vishal','2025-12-05 11:34:57',0),(15511,2526,0,0,4778,'2025-12-02','11:17:00',0,226,'SURG','SURG0015','H','N',1.00,21700,21700,'A',0,0,0.00,0.00,21700.00,21700,3,0,0,'',0,0,'','','','','',2526,'H','I',216,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 11:19:14','vishal','2025-12-05 11:37:35',0),(15512,2526,0,0,5243,'2025-12-05','00:00:00',3571,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5773,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-05 11:19:21','manshi','2025-12-05 11:20:38',0),(15513,2526,0,0,4968,'2025-12-02','11:23:00',3406,236,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',215,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 11:25:19','','0000-00-00 00:00:00',0),(15514,2526,0,0,4968,'2025-12-02','11:23:00',3406,236,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',215,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 11:25:19','','0000-00-00 00:00:00',0),(15515,2526,0,0,4968,'2025-12-03','11:23:00',3406,236,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',215,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 11:25:19','','0000-00-00 00:00:00',0),(15516,2526,0,0,4968,'2025-12-04','11:23:00',3406,236,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',215,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 11:25:19','','0000-00-00 00:00:00',0),(15517,2526,0,0,4968,'2025-12-05','11:23:00',3406,236,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',215,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 11:25:19','','0000-00-00 00:00:00',0),(15518,2526,0,0,5244,'2025-12-05','00:00:00',3572,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5774,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:26:45','reception','2025-12-05 11:27:17',0),(15519,2526,0,0,5242,'2025-12-05','11:28:09',3319,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5775,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 11:28:09','janvi','2025-12-05 11:28:09',0),(15520,2526,0,0,5225,'2025-12-05','11:32:49',3557,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5776,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 11:32:49','urvashi','2025-12-05 11:32:49',0),(15521,2526,0,0,5226,'2025-12-05','11:35:06',3558,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5777,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:35:06','reception','2025-12-05 11:35:06',0),(15522,2526,0,0,5226,'2025-12-05','11:35:06',3558,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5777,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:35:06','reception','2025-12-05 11:35:06',0),(15523,2526,0,0,4977,'2025-12-05','09:15:00',0,238,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','214','','','',0,'','',0,23,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 23:09:15','vishal','2025-12-05 12:05:51',0),(15524,2526,0,0,4977,'2025-12-05','09:15:00',0,238,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','214','','','',0,'','',0,24,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 23:09:15','vishal','2025-12-05 12:05:51',0),(15525,2526,0,0,4977,'2025-12-05','09:15:00',0,238,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','214','','','',0,'','',0,25,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 23:09:15','vishal','2025-12-05 12:05:51',0),(15526,2526,0,0,4977,'2025-12-05','09:15:00',0,238,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','214','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 23:09:15','vishal','2025-12-05 11:59:11',0),(15527,2526,0,0,4977,'2025-12-05','09:15:00',0,238,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','214','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-04 23:09:15','vishal','2025-12-05 12:05:51',0),(15528,2526,0,0,5229,'2025-12-05','11:39:48',3560,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5778,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:39:48','reception','2025-12-05 11:39:48',0),(15529,2526,0,0,5229,'2025-12-05','11:39:48',3560,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5778,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:39:48','reception','2025-12-05 11:39:48',0),(15530,2526,0,0,5229,'2025-12-05','11:39:48',3560,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5778,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:39:48','reception','2025-12-05 11:39:48',0),(15531,2526,0,0,5245,'2025-12-05','00:00:00',3573,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5779,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 11:41:29','urvashi','2025-12-05 11:42:03',0),(15532,2526,0,0,5246,'2025-12-05','00:00:00',3574,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5780,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-05 11:43:46','manshi','2025-12-05 11:44:46',0),(15533,2526,0,0,5247,'2025-12-05','00:00:00',3575,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5781,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-05 11:44:27','manshi','2025-12-05 11:44:56',0),(15534,2526,0,0,5248,'2025-12-05','00:00:00',3576,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5782,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 11:44:41','urvashi','2025-12-05 11:45:14',0),(15535,2526,0,0,5249,'2025-12-05','00:00:00',164,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5783,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:45:34','reception','2025-12-05 11:47:05',0),(15536,2526,0,0,5250,'2025-12-05','00:00:00',1510,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5784,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:49:47','reception','2025-12-05 11:50:15',0),(15537,2526,0,0,5251,'2025-12-05','00:00:00',2987,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5785,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:52:42','reception','2025-12-05 11:53:03',0),(15538,2526,0,0,5252,'2025-12-05','00:00:00',3577,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5786,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 11:53:07','urvashi','2025-12-05 11:54:12',0),(15539,2526,0,0,5232,'2025-12-05','11:55:18',3562,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5788,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:55:18','reception','2025-12-05 11:55:18',0),(15540,2526,0,0,5232,'2025-12-05','11:55:18',3562,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5788,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:55:18','reception','2025-12-05 11:55:18',0),(15541,2526,0,0,5232,'2025-12-05','11:55:18',3562,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5788,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 11:55:18','reception','2025-12-05 11:55:18',0),(15542,2526,0,0,5241,'2025-12-05','11:55:56',3570,0,'PKG','CASE','H','N',1.00,750,750,'P',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5789,1,250,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 11:55:56','urvashi','2025-12-05 11:55:56',0),(15543,2526,0,0,4977,'2025-12-04','11:57:00',0,238,'USG','USG0091','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 11:59:11','','0000-00-00 00:00:00',0),(15544,2526,0,0,4977,'2025-12-04','11:57:00',0,238,'WPRC','WPRC0092','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,5,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 11:59:11','','0000-00-00 00:00:00',0),(15545,2526,0,0,4977,'2025-12-05','11:57:00',0,238,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 11:59:11','','0000-00-00 00:00:00',0),(15546,2526,0,0,4977,'2025-12-04','11:58:00',0,238,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 11:59:11','','0000-00-00 00:00:00',0),(15547,2526,0,0,5245,'2025-12-05','12:00:43',3573,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',5790,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 12:00:43','janvi','2025-12-05 12:00:43',0),(15548,2526,0,0,4977,'2025-12-05','12:05:00',0,238,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 12:05:51','','0000-00-00 00:00:00',0),(15549,2526,0,0,4977,'2025-12-05','12:05:00',0,238,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 12:05:51','','0000-00-00 00:00:00',0),(15550,2526,0,0,4977,'2025-12-05','12:05:00',0,238,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 12:05:51','','0000-00-00 00:00:00',0),(15551,2526,0,0,5253,'2025-12-05','00:00:00',3578,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5791,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 12:06:21','reception','2025-12-05 12:07:21',0),(15552,2526,0,0,5235,'2025-12-05','12:15:22',3565,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5792,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 12:15:22','reception','2025-12-05 12:15:22',0),(15553,2526,0,0,5235,'2025-12-05','12:15:22',3565,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5792,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 12:15:22','reception','2025-12-05 12:15:22',0),(15554,2526,0,0,5235,'2025-12-05','12:15:22',3565,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5792,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 12:15:22','reception','2025-12-05 12:15:22',0),(15555,2526,0,0,5255,'2025-12-05','00:00:00',3579,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5793,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 12:18:04','janvi','2025-12-05 12:18:41',0),(15556,2526,0,0,5256,'2025-12-05','00:00:00',3580,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5794,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 12:23:22','reception','2025-12-05 12:23:39',0),(15557,2526,0,0,5257,'2025-12-05','00:00:00',3581,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5796,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 12:26:23','janvi','2025-12-05 12:26:50',0),(15558,2526,0,0,5239,'2025-12-05','12:26:34',3569,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5795,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 12:26:34','reception','2025-12-05 12:26:34',0),(15559,2526,0,0,5239,'2025-12-05','12:26:34',3569,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5795,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 12:26:34','reception','2025-12-05 12:26:34',0),(15560,2526,0,0,5255,'2025-12-05','12:34:13',3579,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5797,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 12:34:13','urvashi','2025-12-05 12:34:13',0),(15561,2526,0,0,5258,'2025-12-05','00:00:00',3582,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5798,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 12:37:11','urvashi','2025-12-05 12:37:53',0),(15562,2526,0,0,4781,'2025-12-05','12:40:00',0,228,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 12:41:58','','0000-00-00 00:00:00',0),(15563,2526,0,0,4781,'2025-12-04','12:41:00',0,228,'WPRC','WPRC0080','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 12:41:58','vishal','2025-12-05 12:45:52',0),(15564,2526,0,0,5259,'2025-12-05','00:00:00',3583,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5799,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 12:42:56','reception','2025-12-05 13:13:00',0),(15565,2526,0,0,5260,'2025-12-05','00:00:00',3584,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5800,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 12:43:40','urvashi','2025-12-05 12:47:11',0),(15566,2526,0,0,5261,'2025-12-05','00:00:00',3585,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5803,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 12:46:07','urvashi','2025-12-05 12:56:46',0),(15567,2526,0,0,4781,'2025-12-05','12:45:00',0,228,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 12:47:28','','0000-00-00 00:00:00',0),(15568,2526,0,0,4781,'2025-12-05','12:46:00',0,228,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 12:47:28','','0000-00-00 00:00:00',0),(15569,2526,0,0,4863,'2025-12-05','10:15:00',0,233,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 00:20:41','vishal','2025-12-05 12:56:05',0),(15570,2526,0,0,4863,'2025-12-05','10:15:00',0,233,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 00:20:41','vishal','2025-12-05 12:56:05',0),(15571,2526,0,0,4863,'2025-12-05','10:15:00',0,233,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 00:20:41','vishal','2025-12-05 12:56:05',0),(15572,2526,0,0,4863,'2025-12-05','10:15:00',0,233,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',218,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 00:20:41','vishal','2025-12-05 13:24:53',0),(15573,2526,0,0,4863,'2025-12-05','10:15:00',0,233,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 00:20:41','vishal','2025-12-05 12:56:05',0),(15574,2526,0,0,5263,'2025-12-05','00:00:00',3586,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5801,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 12:50:59','reception','2025-12-05 12:52:13',0),(15575,2526,0,0,5262,'2025-12-05','12:52:20',3230,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5802,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-05 12:52:20','manshi','2025-12-05 12:52:20',0),(15576,2526,0,0,4863,'2025-12-05','12:50:00',0,233,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',218,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 12:56:05','','0000-00-00 00:00:00',0),(15577,2526,0,0,5256,'2025-12-05','13:01:45',3580,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5804,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 13:01:45','reception','2025-12-05 13:01:45',0),(15578,2526,0,0,5256,'2025-12-05','13:01:45',3580,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',5804,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 13:01:45','reception','2025-12-05 13:01:45',0),(15579,2526,0,0,5263,'2025-12-05','13:05:03',3586,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5805,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 13:05:03','urvashi','2025-12-05 13:05:03',0),(15580,2526,0,0,5264,'2025-12-05','13:10:41',3538,0,'OPWD','OPWD0023','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',5806,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 13:10:41','janvi','2025-12-05 13:10:41',0),(15581,2526,0,0,5259,'2025-12-05','13:14:09',3583,0,'PKG','CASE','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5808,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 13:14:09','reception','2025-12-05 13:14:09',0),(15582,2526,0,0,4863,'2025-12-02','13:24:00',0,233,'WPRC','WPRC0098','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',218,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 13:24:36','vishal','2025-12-05 13:24:53',0),(15583,2526,0,0,4781,'2025-12-01','13:25:00',0,228,'WPRC','WPRC0098','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 13:25:42','vishal','2025-12-05 14:23:08',0),(15584,2526,0,0,4781,'2025-12-02','13:25:00',0,228,'WPRC','WPRC0098','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',217,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 13:25:42','vishal','2025-12-05 14:23:08',0),(15585,2526,0,0,5260,'2025-12-05','13:30:12',3584,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5809,1,38,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 13:30:12','reception','2025-12-05 13:30:12',0),(15586,2526,0,0,5260,'2025-12-05','13:30:12',3584,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5809,2,169,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 13:30:12','reception','2025-12-05 13:30:12',0),(15587,2526,0,0,5260,'2025-12-05','13:30:12',3584,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5809,3,192,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 13:30:12','reception','2025-12-05 13:30:12',0),(15588,2526,0,0,5265,'2025-12-05','00:00:00',3587,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-05 13:33:57','manshi','2025-12-05 01:03:57',0),(15589,2526,0,0,5266,'2025-12-05','00:00:00',3588,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5810,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 13:38:17','reception','2025-12-05 13:38:27',0),(15590,2526,0,0,5266,'2025-12-05','14:03:26',3588,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,2,0,0,'',0,0,'','','','','',2526,'H','O',5811,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 14:03:26','reception','2025-12-05 14:03:26',0),(15591,2526,0,0,5267,'2025-12-05','00:00:00',2081,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 16:28:23','reception','2025-12-05 03:58:23',0),(15592,2526,0,0,5268,'2025-12-05','00:00:00',3589,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5812,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 16:30:36','reception','2025-12-05 16:31:25',0),(15593,2526,0,0,5269,'2025-12-05','00:00:00',349,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5813,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-05 16:34:46','shweta','2025-12-05 16:36:35',0),(15594,2526,0,0,5270,'2025-12-05','00:00:00',2331,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 16:36:58','reception','2025-12-05 04:06:58',0),(15595,2526,0,0,5271,'2025-12-05','00:00:00',2485,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 16:41:28','reception','2025-12-05 04:11:28',0),(15596,2526,0,0,5272,'2025-12-05','00:00:00',2084,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-05 16:54:04','shweta','2025-12-05 04:24:04',0),(15597,2526,0,0,5273,'2025-12-05','00:00:00',1129,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5814,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 16:54:25','reception','2025-12-05 16:54:40',0),(15598,2526,0,0,5163,'2025-12-05','15:00:00',0,245,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','310','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:25:03','vishal','2025-12-05 16:58:54',0),(15599,2526,0,0,5163,'2025-12-05','15:00:00',0,245,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','310','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:25:03','vishal','2025-12-05 16:58:54',0),(15600,2526,0,0,5163,'2025-12-05','15:00:00',0,245,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','310','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:25:03','vishal','2025-12-05 16:58:54',0),(15601,2526,0,0,5163,'2025-12-05','15:00:00',0,245,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','310','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:25:03','vishal','2025-12-05 17:01:10',0),(15602,2526,0,0,5163,'2025-12-05','15:00:00',0,245,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','310','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:25:03','vishal','2025-12-05 17:01:10',0),(15603,2526,0,0,5274,'2025-12-05','00:00:00',3590,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5815,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 16:57:42','janvi','2025-12-05 16:58:52',0),(15604,2526,0,0,5163,'2025-12-04','16:57:00',0,245,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 16:58:54','vishal','2025-12-05 17:01:10',0),(15605,2526,0,0,5163,'2025-12-05','16:57:00',0,245,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',0,'','',0,9,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 16:58:54','vishal','2025-12-05 18:33:22',0),(15606,2526,0,0,5163,'2025-12-04','16:58:00',0,245,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 16:58:54','vishal','2025-12-05 17:01:10',0),(15607,2526,0,0,5163,'2025-12-05','16:58:00',0,245,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 16:58:54','vishal','2025-12-05 18:33:22',0),(15608,2526,0,0,5163,'2025-12-04','16:58:00',0,245,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 16:58:54','','0000-00-00 00:00:00',0),(15609,2526,0,0,5163,'2025-12-05','16:58:00',0,245,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',0,'','',0,13,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 16:58:54','vishal','2025-12-05 18:33:22',0),(15610,2526,0,0,5274,'2025-12-05','17:00:27',3590,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5817,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 17:00:27','janvi','2025-12-05 18:22:10',0),(15611,2526,0,0,5163,'2025-12-04','16:59:00',0,245,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:01:10','','0000-00-00 00:00:00',0),(15612,2526,0,0,5163,'2025-12-05','16:59:00',0,245,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:01:10','','0000-00-00 00:00:00',0),(15613,2526,0,0,5163,'2025-12-05','16:59:00',0,245,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:01:10','','0000-00-00 00:00:00',0),(15614,2526,0,0,5163,'2025-12-04','16:59:00',0,245,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:01:10','','0000-00-00 00:00:00',0),(15615,2526,0,0,5163,'2025-12-04','17:00:00',0,245,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:01:10','','0000-00-00 00:00:00',0),(15616,2526,0,0,5163,'2025-12-05','17:00:00',0,245,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:01:10','','0000-00-00 00:00:00',0),(15617,2526,0,0,5163,'2025-12-04','17:00:00',0,245,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:01:10','','0000-00-00 00:00:00',0),(15618,2526,0,0,5163,'2025-12-05','17:00:00',0,245,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:01:10','','0000-00-00 00:00:00',0),(15619,2526,0,0,5163,'2025-12-04','17:00:00',0,245,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:01:10','','0000-00-00 00:00:00',0),(15620,2526,0,0,5163,'2025-12-05','17:00:00',0,245,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:01:10','','0000-00-00 00:00:00',0),(15621,2526,0,0,5275,'2025-12-05','00:00:00',3591,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5818,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 17:03:10','reception','2025-12-05 17:03:50',0),(15622,2526,0,0,5175,'2025-12-05','17:00:00',0,247,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:34:17','riya','2025-12-08 16:08:17',0),(15623,2526,0,0,5175,'2025-12-05','17:00:00',0,247,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',0,'','',0,8,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:34:17','riya','2025-12-08 16:08:17',0),(15624,2526,0,0,5175,'2025-12-05','17:00:00',0,247,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',0,'','',0,9,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:34:17','riya','2025-12-08 16:08:17',0),(15625,2526,0,0,5175,'2025-12-05','17:00:00',0,247,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','207','','','',2526,'H','I',238,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:34:17','vishal','2025-12-09 10:37:12',0),(15626,2526,0,0,5175,'2025-12-05','17:00:00',0,247,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','207','','','',2526,'H','I',238,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:34:17','vishal','2025-12-05 17:08:41',0),(15627,2526,0,0,5175,'2025-12-04','17:07:00',0,247,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',238,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:08:41','','0000-00-00 00:00:00',0),(15628,2526,0,0,5175,'2025-12-05','17:07:00',0,247,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',238,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:08:41','','0000-00-00 00:00:00',0),(15629,2526,0,0,5175,'2025-12-04','17:07:00',0,247,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',238,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:08:41','','0000-00-00 00:00:00',0),(15630,2526,0,0,5175,'2025-12-05','17:07:00',0,247,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',238,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:08:41','','0000-00-00 00:00:00',0),(15631,2526,0,0,4017,'2025-12-05','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,125,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:39:35','vishal','2025-12-05 17:13:02',0),(15632,2526,0,0,4017,'2025-12-05','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,126,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:39:35','vishal','2025-12-05 17:13:02',0),(15633,2526,0,0,4017,'2025-12-05','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,127,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:39:35','vishal','2025-12-05 17:13:02',0),(15634,2526,0,0,4017,'2025-12-05','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,128,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:39:35','vishal','2025-12-05 17:13:02',0),(15635,2526,0,0,4017,'2025-12-05','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,136,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:39:35','vishal','2025-12-21 11:20:51',0),(15636,2526,0,0,5276,'2025-12-05','17:10:20',3121,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',5819,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 17:10:20','reception','2025-12-05 17:10:20',0),(15637,2526,0,0,5278,'2025-12-05','00:00:00',3187,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 17:12:20','reception','2025-12-05 04:42:20',0),(15638,2526,0,0,4017,'2025-12-04','17:09:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,130,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:13:02','','0000-00-00 00:00:00',0),(15639,2526,0,0,4017,'2025-12-05','17:09:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,131,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:13:02','','0000-00-00 00:00:00',0),(15640,2526,0,0,4017,'2025-12-04','17:10:00',0,187,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,132,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:13:02','','0000-00-00 00:00:00',0),(15641,2526,0,0,4017,'2025-12-04','17:10:00',0,187,'WPRC','WPRC0089','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,133,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:13:02','','0000-00-00 00:00:00',0),(15642,2526,0,0,4017,'2025-12-05','17:10:00',0,187,'WPRC','WPRC0089','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,134,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:13:02','','0000-00-00 00:00:00',0),(15643,2526,0,0,4017,'2025-12-03','17:11:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,120,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:13:02','vishal','2025-12-21 11:20:51',0),(15644,2526,0,0,4017,'2025-12-04','17:11:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,136,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:13:02','','0000-00-00 00:00:00',0),(15645,2526,0,0,4017,'2025-12-05','17:11:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,137,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:13:02','','0000-00-00 00:00:00',0),(15646,2526,0,0,4017,'2025-12-04','17:11:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,138,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:13:02','','0000-00-00 00:00:00',0),(15647,2526,0,0,4017,'2025-12-05','17:11:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,139,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:13:02','','0000-00-00 00:00:00',0),(15648,2526,0,0,4017,'2025-12-04','17:12:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,131,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:13:02','vishal','2025-12-21 11:20:51',0),(15649,2526,0,0,4017,'2025-12-05','17:12:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,141,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:13:02','','0000-00-00 00:00:00',0),(15650,2526,0,0,5278,'2025-12-05','17:13:53',3187,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5820,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 17:13:52','reception','2025-12-05 17:13:52',0),(15651,2526,0,0,5278,'2025-12-05','17:13:53',3187,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5820,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 17:13:52','reception','2025-12-05 17:13:52',0),(15652,2526,0,0,5278,'2025-12-05','17:13:53',3187,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5820,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 17:13:52','reception','2025-12-05 17:13:52',0),(15653,2526,0,0,5280,'2025-12-05','00:00:00',2919,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 17:16:25','janvi','2025-12-05 04:46:25',0),(15654,2526,0,0,5279,'2025-12-05','17:17:20',3275,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',5821,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 17:17:20','reception','2025-12-05 17:17:20',0),(15655,2526,0,0,5120,'2025-12-05','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:47:29','vishal','2025-12-05 17:26:34',0),(15656,2526,0,0,5120,'2025-12-05','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:47:29','vishal','2025-12-05 17:26:34',0),(15657,2526,0,0,5120,'2025-12-05','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:47:29','vishal','2025-12-05 17:26:34',0),(15658,2526,0,0,5120,'2025-12-05','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:47:29','vishal','2025-12-05 17:26:34',0),(15659,2526,0,0,5120,'2025-12-05','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 04:47:29','vishal','2025-12-05 17:26:34',0),(15660,2526,0,0,5282,'2025-12-05','00:00:00',1070,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 17:18:07','janvi','2025-12-05 04:48:07',0),(15661,2526,0,0,5281,'2025-12-05','17:18:30',3423,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',5822,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 17:18:30','reception','2025-12-05 17:18:30',0),(15662,2526,0,0,5283,'2025-12-05','00:00:00',1555,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5823,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 17:19:25','reception','2025-12-05 17:19:39',0),(15663,2526,0,0,5268,'2025-12-05','17:22:24',3589,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5824,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 17:22:24','reception','2025-12-05 17:22:24',0),(15664,2526,0,0,5268,'2025-12-05','17:22:24',3589,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5824,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 17:22:24','reception','2025-12-05 17:22:24',0),(15665,2526,0,0,5120,'2025-12-04','17:17:00',0,243,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:24:13','vishal','2025-12-11 18:53:42',0),(15666,2526,0,0,5120,'2025-12-04','17:18:00',0,243,'ROOM','ROOM0008','H','N',4.00,100,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:24:13','vishal','2025-12-05 17:26:34',0),(15667,2526,0,0,5120,'2025-12-04','17:19:00',0,243,'WPRC','WPRC0093','H','N',2.00,500,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:24:13','vishal','2025-12-05 17:26:34',0),(15668,2526,0,0,5120,'2025-12-04','17:19:00',0,243,'USG','USG0092','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:24:13','vishal','2025-12-05 17:26:34',0),(15669,2526,0,0,5120,'2025-12-04','17:20:00',0,243,'WPRC','WPRC0097','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:24:13','vishal','2025-12-05 17:26:34',0),(15670,2526,0,0,5120,'2025-12-04','17:20:00',0,243,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:24:13','','0000-00-00 00:00:00',0),(15671,2526,0,0,5120,'2025-12-05','17:20:00',0,243,'ROOM','ROOM0008','H','N',7.00,100,700,'P',0,0,0.00,0.00,700.00,700,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:24:13','riya','2025-12-06 15:53:42',0),(15672,2526,0,0,5120,'2025-12-05','17:20:00',0,243,'WPRC','WPRC0103','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,4,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:24:13','','0000-00-00 00:00:00',0),(15673,2526,0,0,5120,'2025-12-05','17:21:00',0,243,'WPRC','WPRC0104','H','N',1.00,8000,8000,'P',0,0,0.00,0.00,8000.00,8000,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:24:13','','0000-00-00 00:00:00',0),(15674,2526,0,0,5120,'2025-12-04','17:21:00',0,243,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:24:13','vishal','2025-12-11 18:53:42',0),(15675,2526,0,0,5120,'2025-12-05','17:21:00',0,243,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:24:13','vishal','2025-12-11 18:53:42',0),(15676,2526,0,0,5120,'2025-12-04','17:21:00',0,243,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:24:13','','0000-00-00 00:00:00',0),(15677,2526,0,0,5120,'2025-12-05','17:21:00',0,243,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:24:13','vishal','2025-12-11 18:53:42',0),(15678,2526,0,0,5120,'2025-12-04','17:21:00',0,243,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:24:13','','0000-00-00 00:00:00',0),(15679,2526,0,0,5120,'2025-12-05','17:21:00',0,243,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:24:13','','0000-00-00 00:00:00',0),(15680,2526,0,0,5120,'2025-12-04','17:22:00',0,243,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,88,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:24:13','','0000-00-00 00:00:00',0),(15681,2526,0,0,5120,'2025-12-04','17:23:00',0,243,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,174,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 17:24:13','riya','2025-12-08 10:54:16',0),(15682,2526,0,0,5284,'2025-12-05','00:00:00',3592,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5825,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 17:28:22','reception','2025-12-05 17:29:13',0),(15683,2526,0,0,5285,'2025-12-05','00:00:00',2535,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5826,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-05 17:29:36','reception','2025-12-05 18:34:11',0),(15684,2526,0,0,5286,'2025-12-05','00:00:00',3593,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5827,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 17:31:49','janvi','2025-12-05 17:32:44',0),(15685,2526,0,0,5287,'2025-12-05','00:00:00',3594,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5828,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 17:34:33','reception','2025-12-05 17:35:11',0),(15686,2526,0,0,5288,'2025-12-05','00:00:00',526,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5829,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 17:38:08','reception','2025-12-05 17:38:29',0),(15687,2526,0,0,5289,'2025-12-05','00:00:00',3595,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',5830,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-05 17:39:12','manshi','2025-12-05 17:40:39',0),(15688,2526,0,0,5292,'2025-12-05','17:46:22',2503,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5831,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 17:46:22','janvi','2025-12-05 17:46:22',0),(15689,2526,0,0,5294,'2025-12-05','00:00:00',2882,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5832,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 17:53:06','reception','2025-12-05 17:54:21',0),(15690,2526,0,0,5295,'2025-12-05','00:00:00',3596,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5834,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 17:56:16','reception','2025-12-05 17:58:07',0),(15691,2526,0,0,5290,'2025-12-05','17:57:04',3258,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5833,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 17:57:04','janvi','2025-12-05 18:50:08',0),(15692,2526,0,0,5296,'2025-12-05','00:00:00',3597,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5835,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 18:03:36','reception','2025-12-05 18:04:03',0),(15693,2526,0,0,5297,'2025-12-05','00:00:00',2519,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5836,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-05 18:04:12','manshi','2025-12-05 18:04:20',0),(15694,2526,0,0,5298,'2025-12-05','00:00:00',3598,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5845,1,350,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 18:09:12','urvashi','2025-12-05 18:23:58',0),(15695,2526,0,0,5299,'2025-12-05','00:00:00',1564,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5838,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-05 18:10:07','manshi','2025-12-05 18:12:44',0),(15696,2526,0,0,5300,'2025-12-05','00:00:00',3599,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5837,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 18:11:54','reception','2025-12-05 18:12:12',0),(15697,2526,0,0,5301,'2025-12-05','17:00:00',0,249,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',224,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 18:12:44','riya','2025-12-06 13:09:13',0),(15698,2526,0,0,5301,'2025-12-05','17:00:00',0,249,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',224,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 18:12:44','riya','2025-12-06 13:09:13',0),(15699,2526,0,0,5301,'2025-12-05','17:00:00',0,249,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',224,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 05:42:44','riya','2025-12-06 13:09:13',0),(15700,2526,0,0,5301,'2025-12-05','17:00:00',0,249,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',224,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 05:42:45','riya','2025-12-06 13:09:13',0),(15701,2526,0,0,5301,'2025-12-05','17:00:00',0,249,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',224,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 05:42:45','riya','2025-12-06 13:09:13',0),(15702,2526,0,0,5301,'2025-12-06','17:00:00',0,249,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','401','','','',2526,'H','I',224,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 05:42:45','riya','2025-12-06 13:09:13',0),(15703,2526,0,0,5301,'2025-12-05','17:00:00',0,249,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','401','','','',2526,'H','I',224,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 05:42:45','riya','2025-12-06 13:09:13',0),(15704,2526,0,0,5303,'2025-12-05','18:16:18',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5839,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 18:16:18','urvashi','2025-12-05 18:16:18',0),(15705,2526,0,0,5304,'2025-12-05','00:00:00',2989,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5841,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 18:16:29','reception','2025-12-05 18:17:02',0),(15706,2526,0,0,5302,'2025-12-05','18:16:31',2738,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',5840,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 18:16:31','janvi','2025-12-05 18:16:31',0),(15707,2526,0,0,5305,'2025-12-05','00:00:00',3600,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5843,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 18:18:06','reception','2025-12-05 18:21:18',0),(15708,2526,0,0,5306,'2025-12-05','00:00:00',1539,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5842,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 18:18:46','urvashi','2025-12-05 18:19:03',0),(15709,2526,0,0,5307,'2025-12-05','17:30:00',0,250,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 18:22:20','riya','2025-12-06 13:17:54',0),(15710,2526,0,0,5307,'2025-12-05','17:30:00',0,250,'REG','REG0002','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 18:22:20','riya','2025-12-06 16:20:39',0),(15711,2526,0,0,5307,'2025-12-05','17:30:00',0,250,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 05:52:20','riya','2025-12-06 16:20:39',0),(15712,2526,0,0,5307,'2025-12-05','17:30:00',0,250,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 05:52:20','riya','2025-12-06 16:20:39',0),(15713,2526,0,0,5307,'2025-12-05','17:30:00',0,250,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 05:52:20','riya','2025-12-06 16:20:39',0),(15714,2526,0,0,5307,'2025-12-05','17:30:00',0,250,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','212','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 05:52:20','riya','2025-12-06 16:19:57',0),(15715,2526,0,0,5307,'2025-12-05','17:30:00',0,250,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','212','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 05:52:20','riya','2025-12-06 16:20:39',0),(15716,2526,0,0,5308,'2025-12-05','00:00:00',3601,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5848,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 18:24:13','janvi','2025-12-05 18:27:50',0),(15717,2526,0,0,5309,'2025-12-05','00:00:00',3602,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5847,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 18:26:34','urvashi','2025-12-05 18:27:42',0),(15718,2526,0,0,5280,'2025-12-05','18:26:59',2919,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5846,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 18:26:59','janvi','2025-12-05 18:26:59',0),(15719,2526,0,0,5310,'2025-12-05','00:00:00',3603,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5849,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 18:28:40','reception','2025-12-05 18:29:17',0),(15720,2526,0,0,5311,'2025-12-05','00:00:00',3604,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5851,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 18:30:18','janvi','2025-12-05 18:31:07',0),(15721,2526,0,0,5305,'2025-12-05','18:30:55',3600,0,'OPWD','OPWD0023','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,2,0,0,'',0,0,'','','','','',2526,'H','O',5850,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 18:30:55','reception','2025-12-05 18:30:55',0),(15722,2526,0,0,5163,'2025-12-05','18:32:00',0,245,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 18:33:22','','0000-00-00 00:00:00',0),(15723,2526,0,0,5163,'2025-12-05','18:32:00',0,245,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 18:33:22','','0000-00-00 00:00:00',0),(15724,2526,0,0,5313,'2025-12-05','00:00:00',175,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5853,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 18:36:29','janvi','2025-12-05 18:36:55',0),(15725,2526,0,0,5314,'2025-12-05','00:00:00',3605,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5854,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 18:38:37','janvi','2025-12-05 18:39:05',0),(15726,2526,0,0,5315,'2025-12-05','00:00:00',1968,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5855,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 18:40:01','janvi','2025-12-05 18:41:40',0),(15727,2526,0,0,5316,'2025-12-05','17:30:00',0,251,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 18:44:36','riya','2025-12-06 15:48:31',0),(15728,2526,0,0,5316,'2025-12-05','17:30:00',0,251,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 18:44:36','riya','2025-12-06 15:48:31',0),(15729,2526,0,0,5316,'2025-12-05','17:30:00',0,251,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 06:14:36','riya','2025-12-06 15:48:31',0),(15730,2526,0,0,5316,'2025-12-05','17:30:00',0,251,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 06:14:36','riya','2025-12-06 15:48:31',0),(15731,2526,0,0,5316,'2025-12-05','17:30:00',0,251,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 06:14:36','riya','2025-12-06 15:48:31',0),(15732,2526,0,0,5316,'2025-12-05','17:30:00',0,251,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 06:14:36','riya','2025-12-06 15:48:31',0),(15733,2526,0,0,5316,'2025-12-05','17:30:00',0,251,'DRC','DRC0019','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','211','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 06:14:36','riya','2025-12-06 15:48:31',0),(15734,2526,0,0,5317,'2025-12-05','00:00:00',3606,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5856,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 18:46:13','reception','2025-12-05 18:47:40',0),(15735,2526,0,0,5318,'2025-12-05','00:00:00',3607,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5858,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 18:50:57','reception','2025-12-05 18:51:21',0),(15736,2526,0,0,5319,'2025-12-05','00:00:00',1422,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5859,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 18:51:28','urvashi','2025-12-05 18:52:13',0),(15737,2526,0,0,5320,'2025-12-05','00:00:00',3608,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5860,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 18:52:49','janvi','2025-12-05 18:53:14',0),(15738,2526,0,0,5321,'2025-12-05','00:00:00',3609,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 18:55:49','urvashi','2025-12-05 06:25:49',0),(15739,2526,0,0,5285,'2025-12-05','18:56:13',2535,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5861,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 18:56:13','reception','2025-12-05 18:56:13',0),(15740,2526,0,0,5295,'2025-12-05','18:58:55',3596,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5862,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 18:58:55','reception','2025-12-05 18:58:55',0),(15741,2526,0,0,5295,'2025-12-05','18:58:55',3596,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5862,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 18:58:55','reception','2025-12-05 18:58:55',0),(15742,2526,0,0,5223,'2025-12-05','19:01:00',3525,248,'CARE','CARE0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',219,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 19:01:57','','0000-00-00 00:00:00',0),(15743,2526,0,0,5223,'2025-12-05','19:01:00',3525,248,'SURG','SURG0016','H','N',1.00,8200,8200,'P',0,0,0.00,0.00,8200.00,8200,3,0,0,'',0,0,'','','','','',2526,'H','I',219,6,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 19:02:46','','0000-00-00 00:00:00',0),(15744,2526,0,0,5223,'2025-12-05','19:01:00',3525,248,'SURG','SURG0015','H','N',1.00,2700,2700,'P',0,0,0.00,0.00,2700.00,2700,3,0,0,'',0,0,'','','','','',2526,'H','I',219,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-05 19:02:46','','0000-00-00 00:00:00',0),(15745,2526,0,0,5323,'2025-12-05','00:00:00',3610,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5863,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 19:04:36','urvashi','2025-12-05 19:05:14',0),(15746,2526,0,0,5325,'2025-12-05','00:00:00',3611,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5871,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 19:06:27','urvashi','2025-12-05 19:27:18',0),(15747,2526,0,0,5324,'2025-12-05','19:06:35',2115,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5864,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 19:06:35','janvi','2025-12-05 19:06:35',0),(15748,2526,0,0,5326,'2025-12-05','00:00:00',3612,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5865,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 19:13:03','urvashi','2025-12-05 19:14:34',0),(15749,2526,0,0,5327,'2025-12-05','00:00:00',480,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 19:14:15','janvi','2025-12-05 06:44:15',0),(15750,2526,0,0,5322,'2025-12-05','19:15:24',2681,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',5866,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 19:15:24','janvi','2025-12-05 19:15:24',0),(15751,2526,0,0,5328,'2025-12-05','00:00:00',3613,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5867,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 19:19:19','reception','2025-12-05 19:19:42',0),(15752,2526,0,0,5329,'2025-12-05','00:00:00',3614,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5868,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 19:21:54','reception','2025-12-05 19:45:43',0),(15753,2526,0,0,5330,'2025-12-05','00:00:00',3615,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5869,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 19:22:31','reception','2025-12-05 19:23:16',0),(15754,2526,0,0,5325,'2025-12-05','19:27:16',3611,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',5870,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 19:27:16','urvashi','2025-12-05 19:27:16',0),(15755,2526,0,0,5325,'2025-12-05','19:27:16',3611,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',5870,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 19:27:16','urvashi','2025-12-05 19:27:16',0),(15756,2526,0,0,5331,'2025-12-05','00:00:00',3616,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5872,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 19:33:32','reception','2025-12-05 19:34:54',0),(15757,2526,0,0,5217,'2025-12-05','19:36:51',3305,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',5873,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 19:36:51','janvi','2025-12-05 19:36:51',0),(15758,2526,0,0,5120,'2025-12-04','19:36:00',0,243,'SURG','SURG0016','H','N',1.00,21500,21500,'P',0,0,0.00,0.00,21500.00,21500,259,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 19:40:28','riya','2025-12-08 17:00:12',0),(15759,2526,0,0,5120,'2025-12-04','19:36:00',0,243,'SURG','SURG0015','H','N',1.00,7050,7050,'P',0,0,0.00,0.00,7050.00,7050,4,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 19:40:28','riya','2025-12-08 17:00:25',0),(15760,2526,0,0,5332,'2025-12-05','00:00:00',3617,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5874,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 19:41:05','reception','2025-12-05 19:42:20',0),(15761,2526,0,0,5329,'2025-12-05','19:47:22',3614,0,'PKG','CASE','H','N',1.00,700,700,'P',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5876,1,300,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-05 19:47:22','reception','2025-12-05 19:47:22',0),(15762,2526,0,0,5333,'2025-12-05','00:00:00',761,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5877,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 19:52:08','urvashi','2025-12-05 19:52:54',0),(15763,2526,0,0,4688,'2025-12-05','10:30:00',0,218,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:18','riya','2025-12-06 16:54:40',0),(15764,2526,0,0,4688,'2025-12-05','10:30:00',0,218,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:18','riya','2025-12-06 16:54:40',0),(15765,2526,0,0,4688,'2025-12-05','10:30:00',0,218,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:18','riya','2025-12-06 16:54:40',0),(15766,2526,0,0,4688,'2025-12-05','10:30:00',0,218,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:18','riya','2025-12-06 16:54:40',0),(15767,2526,0,0,4688,'2025-12-05','10:30:00',0,218,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:18','riya','2025-12-06 16:54:40',0),(15768,2526,0,0,4694,'2025-12-05','17:00:00',0,222,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',262,38,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:18','riya','2025-12-05 20:22:02',0),(15769,2526,0,0,4694,'2025-12-05','17:00:00',0,222,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',262,39,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:18','riya','2025-12-05 20:22:02',0),(15770,2526,0,0,4694,'2025-12-05','17:00:00',0,222,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',262,40,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:18','riya','2025-12-05 20:22:02',0),(15771,2526,0,0,4694,'2025-12-05','17:00:00',0,222,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',262,41,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:18','riya','2025-12-05 20:22:02',0),(15772,2526,0,0,4694,'2025-12-05','17:00:00',0,222,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',262,42,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:18','riya','2025-12-05 20:22:02',0),(15773,2526,0,0,4751,'2025-12-05','12:00:00',0,224,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',223,43,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:19','riya','2025-12-06 12:28:35',0),(15774,2526,0,0,4751,'2025-12-05','12:00:00',0,224,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',223,44,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:19','riya','2025-12-06 12:28:35',0),(15775,2526,0,0,4751,'2025-12-05','12:00:00',0,224,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',223,45,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:19','riya','2025-12-06 12:28:35',0),(15776,2526,0,0,4751,'2025-12-05','12:00:00',0,224,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',223,46,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:19','riya','2025-12-06 12:28:35',0),(15777,2526,0,0,4751,'2025-12-05','12:00:00',0,224,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',223,47,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:19','riya','2025-12-06 12:28:35',0),(15778,2526,0,0,4777,'2025-12-05','14:00:00',0,225,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','D',271,23,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:19','riya','2025-12-08 15:38:08',0),(15779,2526,0,0,4777,'2025-12-05','14:00:00',0,225,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','D',271,24,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:19','riya','2025-12-08 15:38:08',0),(15780,2526,0,0,4777,'2025-12-05','14:00:00',0,225,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','D',271,25,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:19','riya','2025-12-08 15:38:08',0),(15781,2526,0,0,4777,'2025-12-05','14:00:00',0,225,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','D',271,26,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:19','riya','2025-12-08 15:38:08',0),(15782,2526,0,0,4777,'2025-12-05','14:00:00',0,225,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','D',271,27,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:19','riya','2025-12-08 15:38:08',0),(15783,2526,0,0,5089,'2025-12-05','18:30:00',0,241,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',0,'','',0,17,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:19','riya','2025-12-08 11:58:24',0),(15784,2526,0,0,5089,'2025-12-05','18:30:00',0,241,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',0,'','',0,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:19','riya','2025-12-08 11:58:24',0),(15785,2526,0,0,5089,'2025-12-05','18:30:00',0,241,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',0,'','',0,16,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:19','riya','2025-12-08 11:58:24',0),(15786,2526,0,0,5089,'2025-12-05','18:30:00',0,241,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','408','','','',0,'','',0,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:20','riya','2025-12-08 11:58:24',0),(15787,2526,0,0,5089,'2025-12-05','18:30:00',0,241,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',0,'','',0,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:20','riya','2025-12-08 11:58:24',0),(15788,2526,0,0,5113,'2025-12-05','10:00:00',0,242,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',225,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:20','riya','2025-12-06 11:25:22',0),(15789,2526,0,0,5113,'2025-12-05','10:00:00',0,242,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',225,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:20','riya','2025-12-06 11:25:22',0),(15790,2526,0,0,5113,'2025-12-05','10:00:00',0,242,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',225,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:20','riya','2025-12-06 11:25:22',0),(15791,2526,0,0,5113,'2025-12-05','10:00:00',0,242,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',225,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:20','riya','2025-12-06 11:25:22',0),(15792,2526,0,0,5113,'2025-12-05','10:00:00',0,242,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',225,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:20','riya','2025-12-06 11:25:22',0),(15793,2526,0,0,5148,'2025-12-05','12:20:00',0,244,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',222,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:20','riya','2025-12-06 12:19:23',0),(15794,2526,0,0,5148,'2025-12-05','12:20:00',0,244,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',222,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:20','riya','2025-12-06 12:19:23',0),(15795,2526,0,0,5148,'2025-12-05','12:20:00',0,244,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',222,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:20','riya','2025-12-06 12:19:23',0),(15796,2526,0,0,5148,'2025-12-05','12:20:00',0,244,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',2526,'H','I',222,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:20','riya','2025-12-06 12:19:23',0),(15797,2526,0,0,5148,'2025-12-05','12:20:00',0,244,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',2526,'H','I',222,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 07:33:20','riya','2025-12-06 12:19:23',0),(15798,2526,0,0,5334,'2025-12-05','20:04:01',3310,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5878,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 20:04:01','janvi','2025-12-05 20:04:01',0),(15799,2526,0,0,5335,'2025-12-05','20:05:13',3254,0,'OPWD','OPWD0023','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',5879,1,500,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-05 20:05:13','janvi','2025-12-05 20:05:13',0),(15800,2526,0,0,4694,'2025-12-05','20:19:00',0,222,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,43,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 20:22:02','','0000-00-00 00:00:00',0),(15801,2526,0,0,4694,'2025-12-04','20:19:00',0,222,'WPRC','WPRC0092','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,39,0,0,'',0,0,'','','','','',2526,'H','I',262,44,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 20:22:02','','0000-00-00 00:00:00',0),(15802,2526,0,0,4694,'2025-12-04','20:19:00',0,222,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,45,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 20:22:02','riya','2025-12-06 16:56:39',0),(15803,2526,0,0,4694,'2025-12-05','20:20:00',0,222,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',262,46,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 20:22:02','','0000-00-00 00:00:00',0),(15804,2526,0,0,5336,'2025-12-05','00:00:00',3618,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 20:50:41','urvashi','2025-12-05 08:20:41',0),(15805,2526,0,0,5336,'2025-12-05','20:52:29',3618,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',5880,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 20:52:29','urvashi','2025-12-05 20:52:29',0),(15806,2526,0,0,5336,'2025-12-05','20:52:29',3618,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',5880,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-05 20:52:29','urvashi','2025-12-05 20:52:29',0),(15807,2526,0,0,5337,'2025-12-05','20:30:00',0,252,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',228,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 20:53:01','riya','2025-12-06 16:51:39',0),(15808,2526,0,0,5337,'2025-12-05','20:30:00',0,252,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',228,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 20:53:01','riya','2025-12-06 16:51:39',0),(15809,2526,0,0,5337,'2025-12-05','20:30:00',0,252,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',228,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 08:23:02','riya','2025-12-06 16:51:39',0),(15810,2526,0,0,5337,'2025-12-05','20:30:00',0,252,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',228,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 08:23:02','riya','2025-12-06 16:51:39',0),(15811,2526,0,0,5337,'2025-12-05','20:30:00',0,252,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',228,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 08:23:02','riya','2025-12-06 16:51:39',0),(15812,2526,0,0,5337,'2025-12-05','20:30:00',0,252,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','305','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 08:23:02','riya','2025-12-08 12:22:49',0),(15813,2526,0,0,5337,'2025-12-05','20:30:00',0,252,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','305','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 08:23:02','riya','2025-12-08 12:22:49',0),(15814,2526,0,0,5338,'2025-12-05','20:30:00',0,253,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',237,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 21:04:00','riya','2025-12-06 16:42:07',0),(15815,2526,0,0,5338,'2025-12-05','20:30:00',0,253,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',237,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 21:04:00','riya','2025-12-06 16:42:07',0),(15816,2526,0,0,5338,'2025-12-05','20:30:00',0,253,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',2526,'H','I',237,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 08:34:00','riya','2025-12-06 16:42:07',0),(15817,2526,0,0,5338,'2025-12-05','20:30:00',0,253,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',2526,'H','I',237,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 08:34:00','riya','2025-12-06 16:42:07',0),(15818,2526,0,0,5338,'2025-12-05','20:30:00',0,253,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',2526,'H','I',237,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 08:34:00','riya','2025-12-06 16:42:07',0),(15819,2526,0,0,5338,'2025-12-05','20:30:00',0,253,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-05 08:34:00','riya','2025-12-06 16:42:07',0),(15820,2526,0,0,5338,'2025-12-05','20:30:00',0,253,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 08:34:00','vishal','2025-12-08 21:05:18',0),(15821,2526,0,0,5339,'2025-12-06','00:00:00',2957,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 08:46:18','reception','2025-12-05 20:16:18',0),(15822,2526,0,0,5339,'2025-12-06','08:47:29',2957,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',5881,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 08:47:29','reception','2025-12-06 08:47:29',0),(15823,2526,0,0,5339,'2025-12-06','08:47:29',2957,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5881,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 08:47:29','reception','2025-12-06 08:47:29',0),(15824,2526,0,0,5339,'2025-12-06','08:47:29',2957,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5881,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 08:47:29','reception','2025-12-06 08:47:29',0),(15825,2526,0,0,3764,'2025-12-01','09:24:00',0,178,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,121,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(15826,2526,0,0,3764,'2025-12-01','09:24:00',0,178,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',220,122,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(15827,2526,0,0,3764,'2025-12-01','09:25:00',0,178,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',220,123,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(15828,2526,0,0,3764,'2025-12-01','09:25:00',0,178,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','','','','',2526,'H','I',220,124,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 09:28:53','','0000-00-00 00:00:00',0),(15829,2526,0,0,5340,'2025-12-06','00:00:00',823,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5882,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 10:01:09','reception','2025-12-06 10:01:20',0),(15830,2526,0,0,5341,'2025-12-06','10:00:00',0,254,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',226,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 10:02:14','riya','2025-12-06 15:45:18',0),(15831,2526,0,0,5341,'2025-12-06','10:00:00',0,254,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',226,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 10:02:14','riya','2025-12-06 15:45:18',0),(15832,2526,0,0,5341,'2025-12-06','10:00:00',0,254,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-05 21:32:14','riya','2025-12-06 15:45:18',0),(15833,2526,0,0,5341,'2025-12-06','10:00:00',0,254,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-05 21:32:14','riya','2025-12-06 15:45:18',0),(15834,2526,0,0,5341,'2025-12-06','10:00:00',0,254,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-05 21:32:14','riya','2025-12-06 15:45:18',0),(15835,2526,0,0,5341,'2025-12-06','10:00:00',0,254,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-05 21:32:14','riya','2025-12-06 15:45:18',0),(15836,2526,0,0,5341,'2025-12-06','10:00:00',0,254,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-05 21:32:14','riya','2025-12-06 15:45:18',0),(15837,2526,0,0,5342,'2025-12-06','00:00:00',3619,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5883,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-06 10:02:19','shweta','2025-12-06 10:02:36',0),(15838,2526,0,0,5343,'2025-12-06','00:00:00',3620,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5885,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-06 10:05:12','shweta','2025-12-06 10:08:04',0),(15839,2526,0,0,5344,'2025-12-06','00:00:00',1789,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5884,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 10:06:30','reception','2025-12-06 10:07:51',0),(15840,2526,0,0,5345,'2025-12-06','00:00:00',3621,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5886,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 10:11:14','reception','2025-12-06 10:11:49',0),(15841,2526,0,0,5346,'2025-12-06','00:00:00',450,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5887,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 10:18:29','reception','2025-12-06 10:19:16',0),(15842,2526,0,0,5347,'2025-12-06','00:00:00',2850,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5888,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-06 10:25:23','janvi','2025-12-06 10:26:07',0),(15843,2526,0,0,5348,'2025-12-06','00:00:00',3091,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5889,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 10:28:05','reception','2025-12-06 10:28:34',0),(15844,2526,0,0,5349,'2025-12-06','00:00:00',3622,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5890,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 10:30:37','reception','2025-12-06 10:30:53',0),(15845,2526,0,0,5350,'2025-12-06','00:00:00',1993,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5891,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 10:33:30','reception','2025-12-06 10:33:53',0),(15846,2526,0,0,5351,'2025-12-06','00:00:00',2281,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5892,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 10:34:29','urvashi','2025-12-06 10:34:44',0),(15847,2526,0,0,5352,'2025-12-06','00:00:00',3623,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5893,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 10:35:33','reception','2025-12-06 10:35:50',0),(15848,2526,0,0,5353,'2025-12-06','00:00:00',3166,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5895,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 10:37:28','reception','2025-12-06 10:39:13',0),(15849,2526,0,0,5354,'2025-12-06','00:00:00',3624,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5894,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 10:37:30','urvashi','2025-12-06 10:37:40',0),(15850,2526,0,0,5355,'2025-12-06','00:00:00',3625,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5896,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 10:42:40','reception','2025-12-06 10:43:31',0),(15851,2526,0,0,5356,'2025-12-06','00:00:00',1990,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5897,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 10:46:44','reception','2025-12-06 10:47:22',0),(15852,2526,0,0,5357,'2025-12-06','00:00:00',3626,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5898,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 10:50:02','urvashi','2025-12-06 10:50:24',0),(15853,2526,0,0,5358,'2025-12-06','00:00:00',3627,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',5899,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 10:50:11','urvashi','2025-12-06 12:00:18',0),(15854,2526,0,0,5359,'2025-12-06','00:00:00',3628,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5900,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 10:53:44','urvashi','2025-12-06 10:54:06',0),(15855,2526,0,0,5360,'2025-12-06','00:00:00',1996,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5901,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 10:59:16','reception','2025-12-06 10:59:46',0),(15856,2526,0,0,5361,'2025-12-06','00:00:00',3629,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5902,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 11:02:20','urvashi','2025-12-06 11:46:48',0),(15857,2526,0,0,5362,'2025-12-06','00:00:00',548,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5903,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-06 11:04:29','janvi','2025-12-06 11:05:30',0),(15858,2526,0,0,5363,'2025-12-06','00:00:00',3630,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5904,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 11:11:58','reception','2025-12-06 11:12:40',0),(15859,2526,0,0,5364,'2025-12-06','11:20:57',3319,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5905,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-06 11:20:57','janvi','2025-12-06 11:20:57',0),(15860,2526,0,0,5365,'2025-12-06','00:00:00',1183,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5906,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 11:24:22','reception','2025-12-06 11:24:35',0),(15861,2526,0,0,5113,'2025-12-06','10:00:00',0,242,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',225,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 22:55:13','riya','2025-12-06 11:25:22',0),(15862,2526,0,0,5113,'2025-12-06','10:00:00',0,242,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',225,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 22:55:13','riya','2025-12-06 11:25:22',0),(15863,2526,0,0,5113,'2025-12-06','10:00:00',0,242,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',225,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 22:55:13','riya','2025-12-06 11:25:22',0),(15864,2526,0,0,5113,'2025-12-06','10:00:00',0,242,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',225,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 22:55:13','riya','2025-12-06 11:25:22',0),(15865,2526,0,0,5113,'2025-12-06','10:00:00',0,242,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',225,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 22:55:13','riya','2025-12-06 11:25:22',0),(15866,2526,0,0,5366,'2025-12-06','00:00:00',3161,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5907,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 11:25:58','reception','2025-12-06 11:26:24',0),(15867,2526,0,0,5367,'2025-12-06','00:00:00',1600,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5908,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 11:26:59','urvashi','2025-12-06 11:27:36',0),(15868,2526,0,0,5354,'2025-12-06','11:29:25',3624,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5909,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 11:29:25','reception','2025-12-06 11:29:25',0),(15869,2526,0,0,5354,'2025-12-06','11:29:25',3624,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5909,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 11:29:25','reception','2025-12-06 11:29:25',0),(15870,2526,0,0,5354,'2025-12-06','11:29:25',3624,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5909,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 11:29:25','reception','2025-12-06 11:29:25',0),(15871,2526,0,0,5368,'2025-12-06','00:00:00',1520,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5910,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 11:33:00','urvashi','2025-12-06 11:33:40',0),(15872,2526,0,0,5369,'2025-12-06','00:00:00',1534,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5911,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 11:34:41','reception','2025-12-06 11:36:10',0),(15873,2526,0,0,5370,'2025-12-06','11:36:51',3427,0,'OTCG','OTCG0001','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5912,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 11:36:51','urvashi','2025-12-06 11:36:51',0),(15874,2526,0,0,5342,'2025-12-06','11:37:42',3619,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5913,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 11:37:42','reception','2025-12-06 11:37:42',0),(15875,2526,0,0,5342,'2025-12-06','11:37:42',3619,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5913,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 11:37:42','reception','2025-12-06 11:37:42',0),(15876,2526,0,0,5371,'2025-12-06','00:00:00',3631,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5914,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-06 11:39:07','janvi','2025-12-06 11:40:32',0),(15877,2526,0,0,5373,'2025-12-06','00:00:00',2540,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5916,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 11:41:12','reception','2025-12-06 11:43:11',0),(15878,2526,0,0,5372,'2025-12-06','11:41:23',3265,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5915,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-06 11:41:23','manshi','2025-12-06 11:41:23',0),(15879,2526,0,0,5372,'2025-12-06','11:41:23',3265,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',5915,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-06 11:41:23','manshi','2025-12-06 11:41:23',0),(15880,2526,0,0,5345,'2025-12-06','11:45:02',3621,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5917,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 11:45:02','urvashi','2025-12-06 11:45:02',0),(15881,2526,0,0,5345,'2025-12-06','11:45:02',3621,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',5917,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 11:45:02','urvashi','2025-12-06 11:45:02',0),(15882,2526,0,0,5374,'2025-12-06','00:00:00',3632,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5919,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-06 11:46:25','janvi','2025-12-06 11:47:02',0),(15883,2526,0,0,5375,'2025-12-06','00:00:00',2444,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5920,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 11:48:20','urvashi','2025-12-06 11:48:51',0),(15884,2526,0,0,5376,'2025-12-06','00:00:00',3633,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5921,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 11:49:50','urvashi','2025-12-06 11:50:26',0),(15885,2526,0,0,5377,'2025-12-06','00:00:00',2887,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5922,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-06 11:50:31','reception','2025-12-06 13:06:05',0),(15886,2526,0,0,5363,'2025-12-06','11:57:03',3630,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5923,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 11:57:03','reception','2025-12-06 11:57:03',0),(15887,2526,0,0,5363,'2025-12-06','11:57:03',3630,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',5923,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 11:57:03','reception','2025-12-06 11:57:03',0),(15888,2526,0,0,5378,'2025-12-06','00:00:00',3634,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5924,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 11:58:41','urvashi','2025-12-06 11:59:29',0),(15889,2526,0,0,5379,'2025-12-06','12:01:15',3301,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5926,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 12:01:15','reception','2025-12-06 12:01:15',0),(15890,2526,0,0,5380,'2025-12-06','00:00:00',3635,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5927,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-06 12:04:03','manshi','2025-12-06 12:20:04',0),(15891,2526,0,0,5148,'2025-12-04','12:18:00',0,244,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',222,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 12:19:23','','0000-00-00 00:00:00',0),(15892,2526,0,0,5380,'2025-12-06','12:20:05',3635,0,'XRY','XRY0244','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',5927,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-06 12:20:04','manshi','2025-12-06 12:20:04',0),(15893,2526,0,0,5381,'2025-12-06','00:00:00',3636,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5929,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 12:21:29','reception','2025-12-06 12:23:27',0),(15894,2526,0,0,5382,'2025-12-06','00:00:00',1019,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5928,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-06 12:21:45','janvi','2025-12-06 12:22:24',0),(15895,2526,0,0,5383,'2025-12-06','00:00:00',3637,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5930,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-06 12:23:13','janvi','2025-12-06 12:24:11',0),(15896,2526,0,0,5384,'2025-12-06','00:00:00',1256,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5931,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 12:24:03','urvashi','2025-12-06 12:24:18',0),(15897,2526,0,0,5385,'2025-12-06','00:00:00',2122,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5932,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 12:24:22','reception','2025-12-06 12:24:36',0),(15898,2526,0,0,5387,'2025-12-06','00:00:00',3638,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',5934,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 12:26:07','urvashi','2025-12-06 12:26:59',0),(15899,2526,0,0,5386,'2025-12-06','12:26:09',3292,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5933,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-06 12:26:09','janvi','2025-12-06 12:26:09',0),(15900,2526,0,0,4751,'2025-12-06','12:00:00',0,224,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','406','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-05 23:56:43','riya','2025-12-06 12:28:35',0),(15901,2526,0,0,4751,'2025-12-06','12:00:00',0,224,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','406','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-05 23:56:43','riya','2025-12-06 12:28:35',0),(15902,2526,0,0,4751,'2025-12-06','12:00:00',0,224,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','406','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-05 23:56:43','riya','2025-12-06 12:28:35',0),(15903,2526,0,0,4751,'2025-12-06','12:00:00',0,224,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',223,48,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 23:56:43','riya','2025-12-06 12:28:35',0),(15904,2526,0,0,4751,'2025-12-06','12:00:00',0,224,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',0,'','',0,49,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-05 23:56:43','riya','2025-12-06 12:39:56',0),(15905,2526,0,0,5388,'2025-12-06','12:27:37',2738,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',5935,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-06 12:27:36','janvi','2025-12-06 12:27:36',0),(15906,2526,0,0,5389,'2025-12-06','00:00:00',3639,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5936,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 12:28:04','urvashi','2025-12-06 12:28:30',0),(15907,2526,0,0,4751,'2025-12-05','12:27:00',0,224,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,50,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 12:28:35','','0000-00-00 00:00:00',0),(15908,2526,0,0,4751,'2025-12-06','12:28:00',0,224,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',223,47,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 12:28:35','riya','2025-12-06 12:48:56',0),(15909,2526,0,0,5390,'2025-12-06','00:00:00',3640,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5937,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 12:28:41','reception','2025-12-06 12:29:49',0),(15910,2526,0,0,5391,'2025-12-06','12:30:47',3305,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',5938,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-06 12:30:47','janvi','2025-12-06 12:30:47',0),(15911,2526,0,0,5391,'2025-12-06','12:30:47',3305,0,'OPWD','OPWD0013','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',5938,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-06 12:30:47','janvi','2025-12-06 12:30:47',0),(15912,2526,0,0,5392,'2025-12-06','00:00:00',3641,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5940,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 12:32:50','urvashi','2025-12-06 12:33:27',0),(15913,2526,0,0,5387,'2025-12-06','12:33:20',3638,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,108,'',0,0,'','','','','',2526,'H','O',5939,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-12-06 12:33:20','janvi','2025-12-06 12:33:20',0),(15914,2526,0,0,5387,'2025-12-06','12:33:20',3638,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',5939,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-12-06 12:33:20','janvi','2025-12-06 12:33:20',0),(15915,2526,0,0,5393,'2025-12-06','00:00:00',3642,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5941,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 12:36:32','reception','2025-12-06 12:38:26',0),(15916,2526,0,0,5394,'2025-12-06','00:00:00',3643,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5942,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 12:44:21','urvashi','2025-12-06 12:45:26',0),(15917,2526,0,0,5395,'2025-12-06','00:00:00',3644,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',5943,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-06 12:47:17','manshi','2025-12-06 12:57:18',0),(15918,2526,0,0,5396,'2025-12-06','00:00:00',3645,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 12:52:49','urvashi','2025-12-06 00:22:49',0),(15919,2526,0,0,5381,'2025-12-06','12:59:43',3636,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',5944,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 12:59:43','reception','2025-12-06 12:59:43',0),(15920,2526,0,0,5381,'2025-12-06','12:59:43',3636,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5944,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 12:59:43','reception','2025-12-06 12:59:43',0),(15921,2526,0,0,5381,'2025-12-06','12:59:43',3636,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5944,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 12:59:43','reception','2025-12-06 12:59:43',0),(15922,2526,0,0,5397,'2025-12-06','13:03:06',3018,0,'MOPR','MOPR0006','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',5945,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 13:03:06','urvashi','2025-12-06 13:03:06',0),(15923,2526,0,0,5398,'2025-12-06','00:00:00',3646,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',5946,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 13:04:27','reception','2025-12-06 13:04:53',0),(15924,2526,0,0,5399,'2025-12-06','00:00:00',3647,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5947,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 13:04:37','urvashi','2025-12-06 13:05:21',0),(15925,2526,0,0,5357,'2025-12-06','13:07:03',3626,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',5949,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 13:07:03','urvashi','2025-12-06 13:07:03',0),(15926,2526,0,0,5398,'2025-12-06','13:09:42',3646,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',5950,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-12-06 13:09:42','janvi','2025-12-06 13:09:42',0),(15927,2526,0,0,5398,'2025-12-06','13:09:42',3646,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,109,'',0,0,'','','','','',2526,'H','O',5950,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-12-06 13:09:42','janvi','2025-12-06 13:09:42',0),(15928,2526,0,0,5400,'2025-12-06','00:00:00',1248,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5951,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 13:16:38','reception','2025-12-06 13:16:54',0),(15929,2526,0,0,5307,'2025-12-06','13:17:00',0,250,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 13:17:54','','0000-00-00 00:00:00',0),(15930,2526,0,0,5401,'2025-12-06','00:00:00',2856,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5952,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 13:23:01','reception','2025-12-06 13:23:19',0),(15931,2526,0,0,5393,'2025-12-06','13:43:59',3642,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5953,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 13:43:59','reception','2025-12-06 13:43:59',0),(15932,2526,0,0,5393,'2025-12-06','13:43:59',3642,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',5953,2,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 13:43:59','reception','2025-12-06 13:43:59',0),(15933,2526,0,0,5402,'2025-12-06','00:00:00',3648,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5954,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 14:01:04','reception','2025-12-06 14:03:13',0),(15934,2526,0,0,5403,'2025-12-06','00:00:00',3649,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',5955,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 14:03:40','reception','2025-12-06 14:04:07',0),(15935,2526,0,0,5404,'2025-12-06','00:00:00',3650,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5956,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-06 15:03:48','shweta','2025-12-06 15:04:46',0),(15936,2526,0,0,5341,'2025-12-06','15:44:00',0,254,'ROOM','ROOM0003','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',0,'','',0,3,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:45:18','vishal','2025-12-07 19:28:37',0),(15937,2526,0,0,5341,'2025-12-06','15:44:00',0,254,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',0,'','',0,4,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:45:18','vishal','2025-12-07 19:28:37',0),(15938,2526,0,0,5341,'2025-12-06','15:44:00',0,254,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,5,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:45:18','vishal','2025-12-07 19:28:37',0),(15939,2526,0,0,5341,'2025-12-06','15:44:00',0,254,'ROOM','ROOM0005','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',0,'','',0,6,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:45:18','vishal','2025-12-07 19:28:37',0),(15940,2526,0,0,5341,'2025-12-06','15:44:00',0,254,'ROOM','ROOM0006','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,9999,0,0,'',0,0,'','','','','',0,'','',0,7,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:45:18','vishal','2025-12-07 19:28:37',0),(15941,2526,0,0,5316,'2025-12-05','15:45:00',0,251,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:48:31','','0000-00-00 00:00:00',0),(15942,2526,0,0,5316,'2025-12-05','15:45:00',0,251,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:48:31','','0000-00-00 00:00:00',0),(15943,2526,0,0,5316,'2025-12-06','15:45:00',0,251,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:48:31','','0000-00-00 00:00:00',0),(15944,2526,0,0,5316,'2025-12-06','15:45:00',0,251,'USG','USG0092','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:48:31','','0000-00-00 00:00:00',0),(15945,2526,0,0,5316,'2025-12-05','15:46:00',0,251,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:48:31','','0000-00-00 00:00:00',0),(15946,2526,0,0,5316,'2025-12-06','15:46:00',0,251,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:48:31','vishal','2025-12-07 12:09:02',0),(15947,2526,0,0,5316,'2025-12-05','15:47:00',0,251,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:48:31','','0000-00-00 00:00:00',0),(15948,2526,0,0,5316,'2025-12-06','15:47:00',0,251,'WPRC','WPRC0114','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,42,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:48:31','vishal','2025-12-07 12:53:05',0),(15949,2526,0,0,5316,'2025-12-05','15:47:00',0,251,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:48:31','','0000-00-00 00:00:00',0),(15950,2526,0,0,5120,'2025-12-06','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:18:54','vishal','2025-12-07 12:30:15',0),(15951,2526,0,0,5120,'2025-12-06','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:18:54','vishal','2025-12-07 12:30:15',0),(15952,2526,0,0,5120,'2025-12-06','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:18:54','riya','2025-12-06 15:53:42',0),(15953,2526,0,0,5120,'2025-12-06','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:18:54','riya','2025-12-06 15:53:42',0),(15954,2526,0,0,5120,'2025-12-06','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:18:54','riya','2025-12-06 15:53:42',0),(15955,2526,0,0,5120,'2025-12-05','15:49:00',0,243,'WPRC','WPRC0101','H','N',2.00,200,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:53:42','vishal','2025-12-11 18:50:16',0),(15956,2526,0,0,5120,'2025-12-06','15:50:00',0,243,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:53:42','vishal','2025-12-11 18:53:42',0),(15957,2526,0,0,5120,'2025-12-05','15:50:00',0,243,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:53:42','','0000-00-00 00:00:00',0),(15958,2526,0,0,5120,'2025-12-06','15:50:00',0,243,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:53:42','vishal','2025-12-11 18:53:42',0),(15959,2526,0,0,5120,'2025-12-06','15:50:00',0,243,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:53:42','vishal','2025-12-11 18:53:42',0),(15960,2526,0,0,5120,'2025-12-05','15:53:00',0,243,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,78,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:53:42','vishal','2025-12-07 12:28:56',0),(15961,2526,0,0,4017,'2025-12-06','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,142,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:25:07','riya','2025-12-06 15:58:00',0),(15962,2526,0,0,4017,'2025-12-06','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,143,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:25:08','riya','2025-12-06 15:58:00',0),(15963,2526,0,0,4017,'2025-12-06','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,144,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:25:08','riya','2025-12-06 15:58:00',0),(15964,2526,0,0,4017,'2025-12-06','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,145,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:25:08','riya','2025-12-06 15:58:00',0),(15965,2526,0,0,4017,'2025-12-06','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,147,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:25:08','vishal','2025-12-21 11:20:51',0),(15966,2526,0,0,4017,'2025-12-06','15:55:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,147,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:58:00','','0000-00-00 00:00:00',0),(15967,2526,0,0,4017,'2025-12-06','15:55:00',0,187,'USG','USG0095','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',0,'','',0,148,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:58:00','','0000-00-00 00:00:00',0),(15968,2526,0,0,4017,'2025-12-06','15:56:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,149,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:58:00','','0000-00-00 00:00:00',0),(15969,2526,0,0,4017,'2025-12-06','15:56:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,150,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:58:00','','0000-00-00 00:00:00',0),(15970,2526,0,0,4017,'2025-12-06','15:56:00',0,187,'WPRC','WPRC0089','H','N',7.00,100,700,'P',0,0,0.00,0.00,700.00,700,9999,0,0,'',0,0,'','','','','',0,'','',0,151,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 15:58:00','','0000-00-00 00:00:00',0),(15971,2526,0,0,5307,'2025-12-05','16:17:00',0,250,'DRC','DRC0020','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:19:57','riya','2025-12-06 16:20:39',0),(15972,2526,0,0,5307,'2025-12-06','16:18:00',0,250,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,6,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:19:57','','0000-00-00 00:00:00',0),(15973,2526,0,0,5307,'2025-12-05','16:18:00',0,250,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:19:57','riya','2025-12-06 16:20:39',0),(15974,2526,0,0,5307,'2025-12-05','16:18:00',0,250,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:19:57','riya','2025-12-06 16:20:39',0),(15975,2526,0,0,5307,'2025-12-05','16:18:00',0,250,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,5,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:19:57','riya','2025-12-06 16:20:39',0),(15976,2526,0,0,5307,'2025-12-06','16:19:00',0,250,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:19:57','','0000-00-00 00:00:00',0),(15977,2526,0,0,5307,'2025-12-05','16:19:00',0,250,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:19:57','riya','2025-12-06 16:20:39',0),(15978,2526,0,0,4688,'2025-12-06','10:30:00',0,218,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:53','riya','2025-12-06 16:54:40',0),(15979,2526,0,0,4688,'2025-12-06','10:30:00',0,218,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:53','riya','2025-12-06 16:54:40',0),(15980,2526,0,0,4688,'2025-12-06','10:30:00',0,218,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:53','riya','2025-12-06 16:54:40',0),(15981,2526,0,0,4688,'2025-12-06','10:30:00',0,218,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:53','riya','2025-12-06 16:54:40',0),(15982,2526,0,0,4688,'2025-12-06','10:30:00',0,218,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:53','riya','2025-12-06 16:54:40',0),(15983,2526,0,0,4777,'2025-12-06','14:00:00',0,225,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','D',271,32,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:53','riya','2025-12-08 15:38:08',0),(15984,2526,0,0,4777,'2025-12-06','14:00:00',0,225,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','D',271,31,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:53','riya','2025-12-08 15:38:08',0),(15985,2526,0,0,4777,'2025-12-06','14:00:00',0,225,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','D',271,30,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:53','riya','2025-12-08 15:38:08',0),(15986,2526,0,0,4777,'2025-12-06','14:00:00',0,225,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','D',271,28,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:53','riya','2025-12-08 15:38:08',0),(15987,2526,0,0,4777,'2025-12-06','14:00:00',0,225,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','D',271,29,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:53','riya','2025-12-08 15:38:08',0),(15988,2526,0,0,4977,'2025-12-06','09:15:00',0,238,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:54','riya','2025-12-06 16:45:15',0),(15989,2526,0,0,4977,'2025-12-06','09:15:00',0,238,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:54','riya','2025-12-06 16:45:15',0),(15990,2526,0,0,4977,'2025-12-06','09:15:00',0,238,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:54','riya','2025-12-06 16:45:15',0),(15991,2526,0,0,4977,'2025-12-06','09:15:00',0,238,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:54','riya','2025-12-06 16:45:15',0),(15992,2526,0,0,4977,'2025-12-06','09:15:00',0,238,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:54','riya','2025-12-06 16:45:15',0),(15993,2526,0,0,5163,'2025-12-06','15:00:00',0,245,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:54','riya','2025-12-06 16:59:39',0),(15994,2526,0,0,5163,'2025-12-06','15:00:00',0,245,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:54','riya','2025-12-06 16:59:39',0),(15995,2526,0,0,5163,'2025-12-06','15:00:00',0,245,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',257,26,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:54','vishal','2025-12-12 19:32:42',0),(15996,2526,0,0,5163,'2025-12-06','15:00:00',0,245,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:54','riya','2025-12-06 16:59:39',0),(15997,2526,0,0,5163,'2025-12-06','15:00:00',0,245,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 03:50:54','riya','2025-12-06 16:59:39',0),(15998,2526,0,0,5338,'2025-12-05','16:39:00',0,253,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',237,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:42:07','','0000-00-00 00:00:00',0),(15999,2526,0,0,5338,'2025-12-06','16:39:00',0,253,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',237,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:42:07','','0000-00-00 00:00:00',0),(16000,2526,0,0,5338,'2025-12-05','16:40:00',0,253,'WPRC','WPRC0086','H','N',3.00,200,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',237,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:42:07','vishal','2025-12-08 20:59:15',0),(16001,2526,0,0,5338,'2025-12-06','16:41:00',0,253,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',237,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:42:07','','0000-00-00 00:00:00',0),(16002,2526,0,0,5338,'2025-12-06','16:41:00',0,253,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',237,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:42:07','','0000-00-00 00:00:00',0),(16003,2526,0,0,4977,'2025-12-06','16:43:00',0,238,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:45:15','','0000-00-00 00:00:00',0),(16004,2526,0,0,5337,'2025-12-05','16:50:00',0,252,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',228,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:51:39','','0000-00-00 00:00:00',0),(16005,2526,0,0,5337,'2025-12-06','16:50:00',0,252,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',228,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:51:39','','0000-00-00 00:00:00',0),(16006,2526,0,0,5337,'2025-12-06','16:50:00',0,252,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',228,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:51:39','','0000-00-00 00:00:00',0),(16007,2526,0,0,5337,'2025-12-06','16:50:00',0,252,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',228,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:51:39','','0000-00-00 00:00:00',0),(16008,2526,0,0,4688,'2025-12-05','16:52:00',0,218,'ROOM','ROOM0008','H','N',12.00,100,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:54:40','','0000-00-00 00:00:00',0),(16009,2526,0,0,4688,'2025-12-06','16:52:00',0,218,'ROOM','ROOM0008','H','N',12.00,100,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:54:40','riya','2025-12-11 13:56:07',0),(16010,2526,0,0,4688,'2025-12-04','16:52:00',0,218,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:54:40','','0000-00-00 00:00:00',0),(16011,2526,0,0,4688,'2025-12-05','16:52:00',0,218,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:54:40','','0000-00-00 00:00:00',0),(16012,2526,0,0,4688,'2025-12-04','16:53:00',0,218,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,248,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:54:40','','0000-00-00 00:00:00',0),(16013,2526,0,0,4694,'2025-12-06','16:55:00',0,222,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,47,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:56:39','','0000-00-00 00:00:00',0),(16014,2526,0,0,5175,'2025-12-06','16:57:00',0,247,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',238,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:58:03','vishal','2025-12-09 10:37:12',0),(16015,2526,0,0,5175,'2025-12-06','16:57:00',0,247,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',238,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:58:03','','0000-00-00 00:00:00',0),(16016,2526,0,0,5405,'2025-12-06','00:00:00',3651,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',5957,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-06 16:58:12','manshi','2025-12-06 16:59:26',0),(16017,2526,0,0,5163,'2025-12-06','16:58:00',0,245,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:59:39','','0000-00-00 00:00:00',0),(16018,2526,0,0,5163,'2025-12-06','16:58:00',0,245,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:59:39','','0000-00-00 00:00:00',0),(16019,2526,0,0,5163,'2025-12-06','16:59:00',0,245,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 16:59:39','riya','2025-12-08 13:36:01',0),(16020,2526,0,0,5113,'2025-12-04','17:00:00',0,242,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',225,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 17:01:56','','0000-00-00 00:00:00',0),(16021,2526,0,0,4694,'2025-12-06','17:00:00',0,222,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',262,48,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 04:33:49','riya','2025-12-08 13:19:38',0),(16022,2526,0,0,4694,'2025-12-06','17:00:00',0,222,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',262,49,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 04:33:49','riya','2025-12-08 13:19:38',0),(16023,2526,0,0,4694,'2025-12-06','17:00:00',0,222,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',262,50,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 04:33:49','riya','2025-12-08 13:19:38',0),(16024,2526,0,0,4694,'2025-12-06','17:00:00',0,222,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','407','','','',2526,'H','I',262,51,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 04:33:49','riya','2025-12-08 13:19:38',0),(16025,2526,0,0,4694,'2025-12-06','17:00:00',0,222,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',262,52,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 04:33:49','riya','2025-12-08 13:19:38',0),(16026,2526,0,0,5175,'2025-12-06','17:00:00',0,247,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',238,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 04:33:50','riya','2025-12-06 21:16:13',0),(16027,2526,0,0,5175,'2025-12-06','17:00:00',0,247,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',238,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 04:33:50','riya','2025-12-06 21:16:13',0),(16028,2526,0,0,5175,'2025-12-09','17:00:00',0,247,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','411','','','',2526,'H','I',238,39,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 04:33:50','vishal','2025-12-09 10:37:12',0),(16029,2526,0,0,5175,'2025-12-06','17:00:00',0,247,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','411','','','',2526,'H','I',238,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 04:33:50','riya','2025-12-06 21:16:13',0),(16030,2526,0,0,5175,'2025-12-06','17:00:00',0,247,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',238,21,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 04:33:50','vishal','2025-12-09 10:37:12',0),(16031,2526,0,0,5407,'2025-12-06','00:00:00',3044,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 17:25:53','reception','2025-12-06 04:55:53',0),(16032,2526,0,0,5406,'2025-12-06','00:00:00',1102,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',5958,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-06 17:37:24','manshi','2025-12-06 17:37:30',0),(16033,2526,0,0,5407,'2025-12-06','17:37:58',3044,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5959,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 17:37:58','reception','2025-12-06 17:37:58',0),(16034,2526,0,0,5408,'2025-12-06','00:00:00',3652,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5960,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-06 17:45:59','manshi','2025-12-06 17:46:37',0),(16035,2526,0,0,5409,'2025-12-06','00:00:00',3653,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-06 17:59:33','manshi','2025-12-06 05:29:33',0),(16036,2526,0,0,5408,'2025-12-06','18:05:39',3652,0,'XRY','XRY0254','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',5961,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-06 18:05:38','manshi','2025-12-06 18:40:36',0),(16037,2526,0,0,5408,'2025-12-06','18:05:39',3652,0,'XRY','XRY0074','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',5961,2,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-06 18:05:38','manshi','2025-12-06 18:40:36',0),(16038,2526,0,0,5410,'2025-12-06','00:00:00',2903,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5962,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 18:07:31','reception','2025-12-06 18:08:00',0),(16039,2526,0,0,5411,'2025-12-06','00:00:00',2585,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',5963,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-06 18:13:28','manshi','2025-12-06 18:14:02',0),(16040,2526,0,0,5412,'2025-12-06','00:00:00',3654,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5964,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-06 18:25:37','manshi','2025-12-06 18:26:00',0),(16041,2526,0,0,5413,'2025-12-06','00:00:00',3655,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',5966,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-06 19:05:32','manshi','2025-12-06 19:22:55',0),(16042,2526,0,0,5414,'2025-12-06','00:00:00',3656,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',5967,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-06 19:06:26','manshi','2025-12-06 19:23:16',0),(16043,2526,0,0,5415,'2025-12-06','00:00:00',3657,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 19:24:36','reception','2025-12-06 06:54:36',0),(16044,2526,0,0,5415,'2025-12-06','19:25:09',3657,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5968,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-06 19:25:09','reception','2025-12-06 19:25:09',0),(16045,2526,0,0,5416,'2025-12-06','00:00:00',3658,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 19:27:56','urvashi','2025-12-06 06:57:56',0),(16046,2526,0,0,5416,'2025-12-06','19:29:05',3658,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',5969,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 19:29:05','urvashi','2025-12-06 19:29:05',0),(16047,2526,0,0,5416,'2025-12-06','19:29:05',3658,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5969,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 19:29:05','urvashi','2025-12-06 19:29:05',0),(16048,2526,0,0,5417,'2025-12-06','19:35:10',1288,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5970,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 19:35:10','urvashi','2025-12-06 19:35:10',0),(16049,2526,0,0,5418,'2025-12-06','19:41:22',3310,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5971,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 19:41:22','urvashi','2025-12-06 19:41:22',0),(16050,2526,0,0,5372,'2025-12-06','20:16:53',3265,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',5972,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-06 20:16:53','urvashi','2025-12-06 20:16:53',0),(16051,2526,0,0,5089,'2025-12-06','18:30:00',0,241,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',0,'','',0,18,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:42','riya','2025-12-08 11:58:24',0),(16052,2526,0,0,5089,'2025-12-06','18:30:00',0,241,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',0,'','',0,19,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:42','riya','2025-12-08 11:58:24',0),(16053,2526,0,0,5089,'2025-12-06','18:30:00',0,241,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',0,'','',0,20,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:42','riya','2025-12-08 11:58:24',0),(16054,2526,0,0,5089,'2025-12-06','18:30:00',0,241,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',0,'','',0,21,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:42','riya','2025-12-08 11:58:24',0),(16055,2526,0,0,5089,'2025-12-06','18:30:00',0,241,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',0,'','',0,22,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:42','riya','2025-12-08 11:58:24',0),(16056,2526,0,0,5307,'2025-12-06','17:30:00',0,250,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','vishal','2025-12-07 11:58:36',0),(16057,2526,0,0,5307,'2025-12-06','17:30:00',0,250,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','vishal','2025-12-07 11:58:36',0),(16058,2526,0,0,5307,'2025-12-06','17:30:00',0,250,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','vishal','2025-12-07 11:58:36',0),(16059,2526,0,0,5307,'2025-12-06','17:30:00',0,250,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','212','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','vishal','2025-12-07 11:58:36',0),(16060,2526,0,0,5307,'2025-12-06','17:30:00',0,250,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','212','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','vishal','2025-12-07 11:58:36',0),(16061,2526,0,0,5316,'2025-12-06','17:30:00',0,251,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','riya','2025-12-06 21:26:08',0),(16062,2526,0,0,5316,'2025-12-06','17:30:00',0,251,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','riya','2025-12-06 21:26:08',0),(16063,2526,0,0,5316,'2025-12-06','17:30:00',0,251,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','211','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','riya','2025-12-06 21:26:08',0),(16064,2526,0,0,5316,'2025-12-06','17:30:00',0,251,'DRC','DRC0019','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','riya','2025-12-10 12:05:28',0),(16065,2526,0,0,5316,'2025-12-06','17:30:00',0,251,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','vishal','2025-12-07 12:09:02',0),(16066,2526,0,0,5337,'2025-12-06','20:30:00',0,252,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',228,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','riya','2025-12-08 11:04:01',0),(16067,2526,0,0,5337,'2025-12-06','20:30:00',0,252,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',228,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','riya','2025-12-08 11:04:01',0),(16068,2526,0,0,5337,'2025-12-06','20:30:00',0,252,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','305','','','',2526,'H','I',228,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','riya','2025-12-08 11:04:01',0),(16069,2526,0,0,5337,'2025-12-06','20:30:00',0,252,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','305','','','',2526,'H','I',228,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','riya','2025-12-08 11:04:01',0),(16070,2526,0,0,5337,'2025-12-06','20:30:00',0,252,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',228,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','riya','2025-12-08 11:04:01',0),(16071,2526,0,0,5338,'2025-12-06','20:30:00',0,253,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',2526,'H','I',237,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','riya','2025-12-08 12:10:19',0),(16072,2526,0,0,5338,'2025-12-06','20:30:00',0,253,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',2526,'H','I',237,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','riya','2025-12-08 12:10:19',0),(16073,2526,0,0,5338,'2025-12-06','20:30:00',0,253,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',2526,'H','I',237,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','riya','2025-12-08 12:10:19',0),(16074,2526,0,0,5338,'2025-12-06','20:30:00',0,253,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',2526,'H','I',237,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','riya','2025-12-08 12:10:19',0),(16075,2526,0,0,5338,'2025-12-06','20:30:00',0,253,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',2526,'H','I',237,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-06 08:12:43','riya','2025-12-08 12:10:19',0),(16076,2526,0,0,5419,'2025-12-07','00:00:00',3659,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-07 09:33:03','janvi','2025-12-06 21:03:03',0),(16077,2526,0,0,5419,'2025-12-07','09:33:30',3659,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',5973,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-07 09:33:30','janvi','2025-12-07 09:33:30',0),(16078,2526,0,0,5420,'2025-12-07','00:00:00',3660,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-07 09:34:18','janvi','2025-12-06 21:04:18',0),(16079,2526,0,0,5420,'2025-12-07','09:34:38',3660,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',5974,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-07 09:34:38','janvi','2025-12-07 09:34:38',0),(16080,2526,0,0,5421,'2025-12-07','00:00:00',3661,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-07 11:20:07','janvi','2025-12-06 22:50:07',0),(16081,2526,0,0,5421,'2025-12-07','11:21:55',3661,0,'SURG','SURG0005','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,0.00,1200,2,0,0,'',0,0,'','','','','',2526,'H','O',5975,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-07 11:21:55','janvi','2025-12-07 11:21:55',0),(16082,2526,0,0,5422,'2025-12-07','11:38:53',3021,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5976,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-07 11:38:53','janvi','2025-12-07 11:38:53',0),(16083,2526,0,0,5120,'2025-12-07','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:12:13','vishal','2025-12-11 18:53:42',0),(16084,2526,0,0,5120,'2025-12-07','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:12:13','vishal','2025-12-11 18:53:42',0),(16085,2526,0,0,5120,'2025-12-07','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:12:13','vishal','2025-12-07 11:46:14',0),(16086,2526,0,0,5120,'2025-12-07','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:12:13','vishal','2025-12-07 11:46:14',0),(16087,2526,0,0,5120,'2025-12-07','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:12:13','vishal','2025-12-11 18:53:42',0),(16088,2526,0,0,5120,'2025-12-06','11:42:00',0,243,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:46:14','vishal','2025-12-07 12:28:56',0),(16089,2526,0,0,5120,'2025-12-06','11:43:00',0,243,'ROOM','ROOM0008','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:46:14','','0000-00-00 00:00:00',0),(16090,2526,0,0,5120,'2025-12-07','11:43:00',0,243,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:46:14','','0000-00-00 00:00:00',0),(16091,2526,0,0,5120,'2025-12-06','11:43:00',0,243,'WPRC','WPRC0104','H','N',1.00,8000,8000,'P',0,0,0.00,0.00,8000.00,8000,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:46:14','','0000-00-00 00:00:00',0),(16092,2526,0,0,5120,'2025-12-06','11:43:00',0,243,'WPRC','WPRC0093','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:46:14','','0000-00-00 00:00:00',0),(16093,2526,0,0,5120,'2025-12-06','11:44:00',0,243,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:46:14','vishal','2025-12-11 18:50:16',0),(16094,2526,0,0,5120,'2025-12-07','11:45:00',0,243,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:46:14','','0000-00-00 00:00:00',0),(16095,2526,0,0,5120,'2025-12-07','11:45:00',0,243,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:46:14','','0000-00-00 00:00:00',0),(16096,2526,0,0,5120,'2025-12-07','11:46:00',0,243,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:46:14','','0000-00-00 00:00:00',0),(16097,2526,0,0,5307,'2025-12-06','11:56:00',0,250,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:58:36','','0000-00-00 00:00:00',0),(16098,2526,0,0,5307,'2025-12-07','11:56:00',0,250,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:58:36','','0000-00-00 00:00:00',0),(16099,2526,0,0,5307,'2025-12-07','11:57:00',0,250,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:58:36','','0000-00-00 00:00:00',0),(16100,2526,0,0,5307,'2025-12-06','11:57:00',0,250,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:58:36','','0000-00-00 00:00:00',0),(16101,2526,0,0,5307,'2025-12-07','11:58:00',0,250,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:58:36','','0000-00-00 00:00:00',0),(16102,2526,0,0,5316,'2025-12-07','12:05:00',0,251,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 12:07:53','','0000-00-00 00:00:00',0),(16103,2526,0,0,5316,'2025-12-07','12:05:00',0,251,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 12:07:53','','0000-00-00 00:00:00',0),(16104,2526,0,0,5316,'2025-12-06','12:07:00',0,251,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 12:07:53','','0000-00-00 00:00:00',0),(16105,2526,0,0,5316,'2025-12-06','12:07:00',0,251,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,52,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 12:07:53','','0000-00-00 00:00:00',0),(16106,2526,0,0,4017,'2025-12-07','12:11:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,152,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 12:13:00','','0000-00-00 00:00:00',0),(16107,2526,0,0,4017,'2025-12-07','12:11:00',0,187,'WPRC','WPRC0089','H','N',7.00,100,700,'P',0,0,0.00,0.00,700.00,700,9999,0,0,'',0,0,'','','','','',0,'','',0,153,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 12:13:00','','0000-00-00 00:00:00',0),(16108,2526,0,0,4017,'2025-12-07','12:11:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,154,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 12:13:00','','0000-00-00 00:00:00',0),(16109,2526,0,0,4017,'2025-12-07','12:11:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,155,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 12:13:00','','0000-00-00 00:00:00',0),(16110,2526,0,0,4017,'2025-12-06','12:12:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,142,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 12:13:00','vishal','2025-12-21 11:20:51',0),(16111,2526,0,0,4017,'2025-12-07','12:12:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,157,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 12:13:00','','0000-00-00 00:00:00',0),(16112,2526,0,0,4688,'2025-12-07','10:30:00',0,218,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:43:58','riya','2025-12-08 12:28:22',0),(16113,2526,0,0,4688,'2025-12-07','10:30:00',0,218,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:43:58','riya','2025-12-08 12:28:22',0),(16114,2526,0,0,4688,'2025-12-07','10:30:00',0,218,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:43:59','riya','2025-12-08 12:28:22',0),(16115,2526,0,0,4688,'2025-12-07','10:30:00',0,218,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:43:59','riya','2025-12-08 12:28:22',0),(16116,2526,0,0,4688,'2025-12-07','10:30:00',0,218,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:43:59','riya','2025-12-08 12:28:22',0),(16117,2526,0,0,4977,'2025-12-07','09:15:00',0,238,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:43:59','riya','2025-12-08 11:24:20',0),(16118,2526,0,0,4977,'2025-12-07','09:15:00',0,238,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:43:59','riya','2025-12-08 11:24:20',0),(16119,2526,0,0,4977,'2025-12-07','09:15:00',0,238,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:43:59','riya','2025-12-08 11:24:20',0),(16120,2526,0,0,4977,'2025-12-07','09:15:00',0,238,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:43:59','riya','2025-12-08 11:24:20',0),(16121,2526,0,0,4977,'2025-12-07','09:15:00',0,238,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:43:59','riya','2025-12-08 11:24:20',0),(16122,2526,0,0,5341,'2025-12-07','10:00:00',0,254,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:44:01','vishal','2025-12-07 19:42:33',0),(16123,2526,0,0,5341,'2025-12-07','10:00:00',0,254,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:44:01','vishal','2025-12-07 19:42:33',0),(16124,2526,0,0,5341,'2025-12-07','10:00:00',0,254,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:44:01','vishal','2025-12-07 19:42:33',0),(16125,2526,0,0,5341,'2025-12-07','10:00:00',0,254,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:44:01','vishal','2025-12-07 19:28:37',0),(16126,2526,0,0,5341,'2025-12-07','10:00:00',0,254,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',226,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-06 23:44:01','vishal','2025-12-07 19:29:11',0),(16127,2526,0,0,5423,'2025-12-07','00:00:00',1029,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-07 12:18:04','janvi','2025-12-06 23:48:04',0),(16128,2526,0,0,5423,'2025-12-07','12:18:45',1029,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',5977,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-07 12:18:45','janvi','2025-12-07 12:18:45',0),(16129,2526,0,0,5423,'2025-12-07','12:18:45',1029,0,'WPRC','WPRC0024','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5977,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-07 12:18:45','janvi','2025-12-07 12:18:45',0),(16130,2526,0,0,4017,'2025-12-07','12:41:00',0,187,'WPRC','WPRC0090','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,159,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 12:41:40','vishal','2025-12-21 11:20:51',0),(16131,2526,0,0,5424,'2025-12-07','12:46:03',2118,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5978,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-07 12:46:03','janvi','2025-12-07 12:46:03',0),(16132,2526,0,0,5425,'2025-12-07','16:30:00',0,255,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 16:48:26','riya','2025-12-08 10:27:23',0),(16133,2526,0,0,5425,'2025-12-07','16:30:00',0,255,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 16:48:26','riya','2025-12-08 10:27:23',0),(16134,2526,0,0,5425,'2025-12-07','16:30:00',0,255,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 04:18:27','riya','2025-12-08 10:27:23',0),(16135,2526,0,0,5425,'2025-12-07','16:30:00',0,255,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 04:18:27','riya','2025-12-08 10:27:23',0),(16136,2526,0,0,5425,'2025-12-07','16:30:00',0,255,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 04:18:27','riya','2025-12-08 10:27:23',0),(16137,2526,0,0,5425,'2025-12-07','16:30:00',0,255,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 04:18:27','riya','2025-12-08 10:27:23',0),(16138,2526,0,0,5425,'2025-12-07','16:30:00',0,255,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 04:18:27','riya','2025-12-08 10:27:23',0),(16139,2526,0,0,5341,'2025-12-06','19:24:00',0,254,'SURG','SURG0014','H','N',1.00,20000,20000,'A',0,0,0.00,0.00,20000.00,20000,3,0,0,'',0,0,'','','','','',2526,'H','I',226,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 19:28:37','vishal','2025-12-07 19:29:11',0),(16140,2526,0,0,5341,'2025-12-06','19:24:00',0,254,'SURG','SURG0015','H','N',1.00,5000,5000,'A',0,0,0.00,0.00,5000.00,5000,3,0,0,'',0,0,'','','','','',2526,'H','I',226,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 19:28:37','vishal','2025-12-07 19:29:11',0),(16141,2526,0,0,5341,'2025-12-06','19:25:00',0,254,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',226,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 19:28:37','vishal','2025-12-07 19:29:11',0),(16142,2526,0,0,5341,'2025-12-06','19:25:00',0,254,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',226,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 19:28:37','vishal','2025-12-07 19:29:11',0),(16143,2526,0,0,5341,'2025-12-06','19:25:00',0,254,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',226,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 19:28:37','','0000-00-00 00:00:00',0),(16144,2526,0,0,5341,'2025-12-06','19:26:00',0,254,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',226,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 19:28:37','','0000-00-00 00:00:00',0),(16145,2526,0,0,5341,'2025-12-06','19:26:00',0,254,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',226,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 19:28:37','','0000-00-00 00:00:00',0),(16146,2526,0,0,5341,'2025-12-07','19:26:00',0,254,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',226,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 19:28:37','','0000-00-00 00:00:00',0),(16147,2526,0,0,5341,'2025-12-06','19:26:00',0,254,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',226,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 19:28:37','','0000-00-00 00:00:00',0),(16148,2526,0,0,5426,'2025-12-07','23:30:00',0,256,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',247,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 23:59:52','riya','2025-12-08 11:37:07',0),(16149,2526,0,0,5426,'2025-12-07','23:30:00',0,256,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',247,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 23:59:52','riya','2025-12-08 11:37:07',0),(16150,2526,0,0,5426,'2025-12-07','23:30:00',0,256,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',247,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:29:52','riya','2025-12-08 11:37:07',0),(16151,2526,0,0,5426,'2025-12-07','23:30:00',0,256,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',247,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:29:52','riya','2025-12-08 11:37:07',0),(16152,2526,0,0,5426,'2025-12-07','23:30:00',0,256,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',247,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:29:52','riya','2025-12-08 11:37:07',0),(16153,2526,0,0,5426,'2025-12-07','23:30:00',0,256,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','210','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:29:52','riya','2025-12-08 11:37:07',0),(16154,2526,0,0,5426,'2025-12-07','23:30:00',0,256,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','210','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-07 11:29:52','riya','2025-12-08 11:37:07',0),(16155,2526,0,0,5427,'2025-12-08','00:00:00',3662,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:46:56','urvashi','2025-12-07 20:16:56',0),(16156,2526,0,0,5427,'2025-12-08','08:48:30',3662,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',5979,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:48:30','urvashi','2025-12-08 08:48:30',0),(16157,2526,0,0,5427,'2025-12-08','08:48:30',3662,0,'XRY','XRY0045','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',5979,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:48:30','urvashi','2025-12-08 08:48:30',0),(16158,2526,0,0,5427,'2025-12-08','08:48:30',3662,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',5979,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:48:30','urvashi','2025-12-08 08:48:30',0),(16159,2526,0,0,5428,'2025-12-08','00:00:00',3663,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:49:18','urvashi','2025-12-07 20:19:18',0),(16160,2526,0,0,5428,'2025-12-08','08:49:56',3663,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',5980,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:49:56','urvashi','2025-12-08 08:49:56',0),(16161,2526,0,0,5428,'2025-12-08','08:49:56',3663,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',5980,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:49:56','urvashi','2025-12-08 08:49:56',0),(16162,2526,0,0,5429,'2025-12-08','08:50:09',3310,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5981,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 08:50:09','reception','2025-12-08 08:50:09',0),(16163,2526,0,0,5430,'2025-12-08','00:00:00',3664,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:50:32','urvashi','2025-12-07 20:20:32',0),(16164,2526,0,0,5430,'2025-12-08','08:51:04',3664,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',5982,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:51:04','urvashi','2025-12-08 08:51:04',0),(16165,2526,0,0,5430,'2025-12-08','08:51:04',3664,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5982,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:51:04','urvashi','2025-12-08 08:51:04',0),(16166,2526,0,0,5431,'2025-12-08','08:51:54',3660,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',5983,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:51:54','urvashi','2025-12-08 08:51:54',0),(16167,2526,0,0,5432,'2025-12-08','00:00:00',3665,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:52:32','urvashi','2025-12-07 20:22:32',0),(16168,2526,0,0,5432,'2025-12-08','08:53:50',3665,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',5984,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:53:50','urvashi','2025-12-08 08:53:50',0),(16169,2526,0,0,5432,'2025-12-08','08:53:50',3665,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',5984,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:53:50','urvashi','2025-12-08 08:53:50',0),(16170,2526,0,0,5432,'2025-12-08','08:53:50',3665,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',5984,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:53:50','urvashi','2025-12-08 08:53:50',0),(16171,2526,0,0,5432,'2025-12-08','08:53:50',3665,0,'OPWD','OPWD0019','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',5984,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:53:50','urvashi','2025-12-08 08:53:50',0),(16172,2526,0,0,5433,'2025-12-08','08:55:03',3305,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',5985,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:55:03','urvashi','2025-12-08 08:55:03',0),(16173,2526,0,0,5434,'2025-12-08','00:00:00',3666,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:55:42','urvashi','2025-12-07 20:25:42',0),(16174,2526,0,0,5434,'2025-12-08','08:56:26',3666,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',5986,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:56:26','urvashi','2025-12-08 08:56:26',0),(16175,2526,0,0,5434,'2025-12-08','08:56:26',3666,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',5986,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:56:26','urvashi','2025-12-08 08:56:26',0),(16176,2526,0,0,5435,'2025-12-08','00:00:00',3667,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:57:38','urvashi','2025-12-07 20:27:38',0),(16177,2526,0,0,5435,'2025-12-08','08:58:18',3667,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',5987,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:58:18','urvashi','2025-12-08 08:58:18',0),(16178,2526,0,0,5435,'2025-12-08','08:58:18',3667,0,'OPWD','OPWD0013','H','N',5.00,100,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',5987,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:58:18','urvashi','2025-12-08 08:58:18',0),(16179,2526,0,0,5436,'2025-12-08','00:00:00',3668,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 08:59:03','urvashi','2025-12-07 20:29:03',0),(16180,2526,0,0,5436,'2025-12-08','09:00:03',3668,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',5988,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-12-08 09:00:03','urvashi','2025-12-08 09:00:03',0),(16181,2526,0,0,5436,'2025-12-08','09:00:03',3668,0,'WPRC','WPRC0049','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',5988,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-12-08 09:00:03','urvashi','2025-12-08 09:00:03',0),(16182,2526,0,0,5436,'2025-12-08','09:00:03',3668,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',5988,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-12-08 09:00:03','urvashi','2025-12-08 09:00:03',0),(16183,2526,0,0,5436,'2025-12-08','09:00:03',3668,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,110,'',0,0,'','','','','',2526,'H','O',5988,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'urvashi','2025-12-08 09:00:03','urvashi','2025-12-08 09:00:03',0),(16184,2526,0,0,5437,'2025-12-08','00:00:00',3669,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 09:00:38','urvashi','2025-12-07 20:30:38',0),(16185,2526,0,0,5437,'2025-12-08','09:02:31',3669,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',5989,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 09:02:31','urvashi','2025-12-08 09:02:31',0),(16186,2526,0,0,5437,'2025-12-08','09:02:31',3669,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',5989,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 09:02:31','urvashi','2025-12-08 09:02:31',0),(16187,2526,0,0,5438,'2025-12-08','00:00:00',3670,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 09:03:35','urvashi','2025-12-07 20:33:35',0),(16188,2526,0,0,5438,'2025-12-08','09:05:12',3670,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',5990,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-12-08 09:05:12','urvashi','2025-12-08 09:05:12',0),(16189,2526,0,0,5438,'2025-12-08','09:05:12',3670,0,'OPWD','OPWD0013','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,5,0,0,'',0,0,'','','','','',2526,'H','O',5990,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-12-08 09:05:12','urvashi','2025-12-08 09:05:12',0),(16190,2526,0,0,5438,'2025-12-08','09:05:12',3670,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',5990,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-12-08 09:05:12','urvashi','2025-12-08 09:05:12',0),(16191,2526,0,0,5438,'2025-12-08','09:05:12',3670,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,111,'',0,0,'','','','','',2526,'H','O',5990,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-12-08 09:05:12','urvashi','2025-12-08 09:05:12',0),(16192,2526,0,0,5439,'2025-12-08','00:00:00',1149,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',5991,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 09:15:33','reception','2025-12-08 09:15:45',0),(16193,2526,0,0,5440,'2025-12-08','00:00:00',3671,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',5993,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 09:26:19','reception','2025-12-08 09:30:50',0),(16194,2526,0,0,5441,'2025-12-08','00:00:00',3672,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',5992,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 09:26:51','janvi','2025-12-08 09:28:52',0),(16195,2526,0,0,5442,'2025-12-08','00:00:00',3673,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 09:31:08','janvi','2025-12-07 21:01:08',0),(16196,2526,0,0,5443,'2025-12-08','09:30:00',0,257,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',240,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 09:34:50','vishal','2025-12-09 13:37:37',0),(16197,2526,0,0,5443,'2025-12-08','09:30:00',0,257,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',240,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 09:34:50','vishal','2025-12-09 13:37:37',0),(16198,2526,0,0,5443,'2025-12-08','09:30:00',0,257,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',240,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 21:04:50','vishal','2025-12-09 13:37:37',0),(16199,2526,0,0,5443,'2025-12-08','09:30:00',0,257,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',240,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 21:04:50','vishal','2025-12-09 13:37:37',0),(16200,2526,0,0,5443,'2025-12-08','09:30:00',0,257,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',240,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 21:04:50','vishal','2025-12-09 13:37:37',0),(16201,2526,0,0,5443,'2025-12-08','09:30:00',0,257,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',240,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 21:04:50','vishal','2025-12-09 13:37:37',0),(16202,2526,0,0,5443,'2025-12-08','09:30:00',0,257,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',240,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 21:04:50','vishal','2025-12-09 13:37:37',0),(16203,2526,0,0,5442,'2025-12-08','09:35:29',3673,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',5994,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 09:35:29','janvi','2025-12-08 09:35:29',0),(16204,2526,0,0,5442,'2025-12-08','09:35:29',3673,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',5994,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 09:35:29','janvi','2025-12-08 09:35:29',0),(16205,2526,0,0,5444,'2025-12-08','00:00:00',3674,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5995,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 09:41:57','reception','2025-12-08 09:43:39',0),(16206,2526,0,0,5445,'2025-12-08','03:30:00',0,258,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 09:47:50','riya','2025-12-08 10:36:54',0),(16207,2526,0,0,5445,'2025-12-08','03:30:00',0,258,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 09:47:50','riya','2025-12-08 10:36:54',0),(16208,2526,0,0,5445,'2025-12-08','03:30:00',0,258,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',250,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 21:17:50','riya','2025-12-08 10:36:54',0),(16209,2526,0,0,5445,'2025-12-08','03:30:00',0,258,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',250,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 21:17:50','riya','2025-12-08 10:36:54',0),(16210,2526,0,0,5445,'2025-12-08','03:30:00',0,258,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',250,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 21:17:50','riya','2025-12-08 10:36:54',0),(16211,2526,0,0,5445,'2025-12-08','03:30:00',0,258,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',250,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 21:17:50','riya','2025-12-08 10:36:54',0),(16212,2526,0,0,5445,'2025-12-08','03:30:00',0,258,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',250,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 21:17:50','riya','2025-12-08 10:36:54',0),(16213,2526,0,0,5446,'2025-12-08','00:00:00',3675,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5996,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 09:48:12','reception','2025-12-08 09:48:30',0),(16214,2526,0,0,5447,'2025-12-08','00:00:00',3676,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',5997,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 09:51:16','reception','2025-12-08 09:51:27',0),(16215,2526,0,0,5449,'2025-12-08','00:00:00',792,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',5999,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 09:58:00','reception','2025-12-08 09:58:15',0),(16216,2526,0,0,5448,'2025-12-08','09:58:04',3510,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',5998,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 09:58:04','drashti','2025-12-08 09:58:04',0),(16217,2526,0,0,5450,'2025-12-08','00:00:00',1735,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6000,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 09:58:47','reception','2025-12-08 09:59:14',0),(16218,2526,0,0,5452,'2025-12-08','00:00:00',3677,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 10:06:10','janvi','2025-12-07 21:36:10',0),(16219,2526,0,0,5453,'2025-12-08','00:00:00',3678,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6001,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 10:06:36','reception','2025-12-08 10:07:50',0),(16220,2526,0,0,5454,'2025-12-08','00:00:00',2040,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6002,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 10:09:06','reception','2025-12-08 10:09:25',0),(16221,2526,0,0,5455,'2025-12-08','00:00:00',3679,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6003,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 10:12:20','janvi','2025-12-08 10:13:54',0),(16222,2526,0,0,5456,'2025-12-08','00:00:00',3680,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6004,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 10:20:07','reception','2025-12-08 10:20:26',0),(16223,2526,0,0,5457,'2025-12-08','00:00:00',3681,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6005,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 10:21:24','reception','2025-12-08 10:21:41',0),(16224,2526,0,0,5458,'2025-12-08','00:00:00',3682,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',6006,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 10:26:58','reception','2025-12-08 10:28:02',0),(16225,2526,0,0,5425,'2025-12-07','10:21:00',0,255,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:27:23','','0000-00-00 00:00:00',0),(16226,2526,0,0,5425,'2025-12-08','10:25:00',0,255,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:27:23','riya','2025-12-08 10:45:16',0),(16227,2526,0,0,5425,'2025-12-08','10:26:00',0,255,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:27:23','','0000-00-00 00:00:00',0),(16228,2526,0,0,5425,'2025-12-08','10:26:00',0,255,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:27:23','','0000-00-00 00:00:00',0),(16229,2526,0,0,5425,'2025-12-07','10:26:00',0,255,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:27:23','','0000-00-00 00:00:00',0),(16230,2526,0,0,5425,'2025-12-07','10:26:00',0,255,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:27:23','','0000-00-00 00:00:00',0),(16231,2526,0,0,5425,'2025-12-08','10:26:00',0,255,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:27:23','','0000-00-00 00:00:00',0),(16232,2526,0,0,5425,'2025-12-07','10:26:00',0,255,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:27:23','','0000-00-00 00:00:00',0),(16233,2526,0,0,5425,'2025-12-08','10:26:00',0,255,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:27:23','','0000-00-00 00:00:00',0),(16234,2526,0,0,4017,'2025-12-07','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,159,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 21:58:25','riya','2025-12-08 10:32:18',0),(16235,2526,0,0,4017,'2025-12-07','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,160,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 21:58:25','riya','2025-12-08 10:32:18',0),(16236,2526,0,0,4017,'2025-12-07','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,161,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 21:58:25','riya','2025-12-08 10:32:18',0),(16237,2526,0,0,4017,'2025-12-07','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,162,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 21:58:25','riya','2025-12-08 10:32:18',0),(16238,2526,0,0,4017,'2025-12-07','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,164,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 21:58:25','vishal','2025-12-21 11:20:51',0),(16239,2526,0,0,5459,'2025-12-08','00:00:00',3683,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6007,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 10:31:57','reception','2025-12-08 10:32:17',0),(16240,2526,0,0,4017,'2025-12-07','10:30:00',0,187,'XRY','XRY0045','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,164,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:32:18','','0000-00-00 00:00:00',0),(16241,2526,0,0,4017,'2025-12-08','10:30:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,165,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:32:18','','0000-00-00 00:00:00',0),(16242,2526,0,0,4017,'2025-12-08','10:30:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,166,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:32:18','','0000-00-00 00:00:00',0),(16243,2526,0,0,4017,'2025-12-08','10:31:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,167,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:32:18','','0000-00-00 00:00:00',0),(16244,2526,0,0,4017,'2025-12-08','10:31:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,168,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:32:18','','0000-00-00 00:00:00',0),(16245,2526,0,0,4017,'2025-12-08','10:31:00',0,187,'WPRC','WPRC0089','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',0,'','',0,169,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:32:18','vishal','2025-12-21 11:20:51',0),(16246,2526,0,0,5452,'2025-12-08','10:33:01',3677,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6008,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 10:33:00','janvi','2025-12-08 10:33:00',0),(16247,2526,0,0,5445,'2025-12-08','10:36:00',0,258,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:36:54','','0000-00-00 00:00:00',0),(16248,2526,0,0,5307,'2025-12-07','17:30:00',0,250,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:08:18','riya','2025-12-08 10:41:48',0),(16249,2526,0,0,5307,'2025-12-07','17:30:00',0,250,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:08:18','riya','2025-12-08 10:41:48',0),(16250,2526,0,0,5307,'2025-12-07','17:30:00',0,250,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','212','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:08:18','riya','2025-12-08 10:41:48',0),(16251,2526,0,0,5307,'2025-12-07','17:30:00',0,250,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','212','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:08:18','riya','2025-12-08 10:41:48',0),(16252,2526,0,0,5307,'2025-12-07','17:30:00',0,250,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:08:18','riya','2025-12-08 10:41:48',0),(16253,2526,0,0,5307,'2025-12-08','10:38:00',0,250,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:41:48','','0000-00-00 00:00:00',0),(16254,2526,0,0,5307,'2025-12-07','10:39:00',0,250,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,78,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:41:48','','0000-00-00 00:00:00',0),(16255,2526,0,0,5307,'2025-12-08','10:41:00',0,250,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:41:48','','0000-00-00 00:00:00',0),(16256,2526,0,0,5460,'2025-12-08','00:00:00',3684,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6009,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 10:41:52','manshi','2025-12-08 10:43:22',0),(16257,2526,0,0,5461,'2025-12-08','00:00:00',3685,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6010,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 10:43:19','drashti','2025-12-08 10:44:04',0),(16258,2526,0,0,5462,'2025-12-08','00:00:00',3686,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6011,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 10:44:28','manshi','2025-12-08 10:45:15',0),(16259,2526,0,0,5120,'2025-12-08','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:17:50','riya','2025-12-08 10:52:31',0),(16260,2526,0,0,5120,'2025-12-08','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:17:50','riya','2025-12-08 10:52:31',0),(16261,2526,0,0,5120,'2025-12-08','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:17:50','riya','2025-12-08 10:52:31',0),(16262,2526,0,0,5120,'2025-12-08','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:17:50','riya','2025-12-08 10:52:31',0),(16263,2526,0,0,5120,'2025-12-08','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:17:50','vishal','2025-12-11 18:53:42',0),(16264,2526,0,0,5463,'2025-12-08','00:00:00',3687,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6012,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 10:49:13','drashti','2025-12-08 10:50:05',0),(16265,2526,0,0,5464,'2025-12-08','00:00:00',78,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6013,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 10:49:36','reception','2025-12-08 10:50:09',0),(16266,2526,0,0,5465,'2025-12-08','00:00:00',1535,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6014,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 10:51:08','reception','2025-12-08 10:51:23',0),(16267,2526,0,0,5120,'2025-12-08','10:48:00',0,243,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:52:31','','0000-00-00 00:00:00',0),(16268,2526,0,0,5120,'2025-12-07','10:48:00',0,243,'WPRC','WPRC0104','H','N',1.00,8000,8000,'P',0,0,0.00,0.00,8000.00,8000,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:52:31','riya','2025-12-08 16:36:59',0),(16269,2526,0,0,5120,'2025-12-08','10:49:00',0,243,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:52:31','riya','2025-12-09 16:36:28',0),(16270,2526,0,0,5120,'2025-12-08','10:49:00',0,243,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:52:31','','0000-00-00 00:00:00',0),(16271,2526,0,0,5120,'2025-12-08','10:50:00',0,243,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:52:31','','0000-00-00 00:00:00',0),(16272,2526,0,0,5120,'2025-12-07','10:51:00',0,243,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:52:31','','0000-00-00 00:00:00',0),(16273,2526,0,0,5120,'2025-12-08','10:52:00',0,243,'DRC','DRC0020','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,124,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 10:52:31','vishal','2025-12-22 17:51:28',0),(16274,2526,0,0,5466,'2025-12-08','00:00:00',3688,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6015,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 10:53:35','drashti','2025-12-08 10:55:00',0),(16275,2526,0,0,5467,'2025-12-08','00:00:00',3689,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6016,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 10:55:26','reception','2025-12-08 10:56:39',0),(16276,2526,0,0,5468,'2025-12-08','00:00:00',2542,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6018,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 10:55:52','janvi','2025-12-08 10:59:08',0),(16277,2526,0,0,5469,'2025-12-08','00:00:00',2610,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6017,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 10:57:27','reception','2025-12-08 10:57:56',0),(16278,2526,0,0,4688,'2025-12-08','10:30:00',0,218,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:36','riya','2025-12-08 12:28:22',0),(16279,2526,0,0,4688,'2025-12-08','10:30:00',0,218,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:36','riya','2025-12-08 12:28:22',0),(16280,2526,0,0,4688,'2025-12-08','10:30:00',0,218,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:36','riya','2025-12-08 12:28:22',0),(16281,2526,0,0,4688,'2025-12-08','10:30:00',0,218,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:36','riya','2025-12-08 12:28:22',0),(16282,2526,0,0,4688,'2025-12-08','10:30:00',0,218,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:36','riya','2025-12-08 12:28:22',0),(16283,2526,0,0,4694,'2025-12-07','17:00:00',0,222,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',262,53,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:36','riya','2025-12-08 13:19:38',0),(16284,2526,0,0,4694,'2025-12-07','17:00:00',0,222,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',262,54,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:36','riya','2025-12-08 13:19:38',0),(16285,2526,0,0,4694,'2025-12-07','17:00:00',0,222,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',262,55,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:36','riya','2025-12-08 13:19:38',0),(16286,2526,0,0,4694,'2025-12-07','17:00:00',0,222,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',262,56,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:36','riya','2025-12-08 13:19:38',0),(16287,2526,0,0,4694,'2025-12-07','17:00:00',0,222,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',262,57,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:36','riya','2025-12-08 13:19:38',0),(16288,2526,0,0,4777,'2025-12-07','14:00:00',0,225,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',0,'','',0,33,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:36','vishal','2025-12-11 18:15:03',0),(16289,2526,0,0,4777,'2025-12-07','14:00:00',0,225,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',0,'','',0,34,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:36','vishal','2025-12-11 18:15:03',0),(16290,2526,0,0,4777,'2025-12-07','14:00:00',0,225,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',0,'','',0,35,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:36','vishal','2025-12-11 18:15:03',0),(16291,2526,0,0,4777,'2025-12-07','14:00:00',0,225,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','406','','','',2526,'H','D',271,70,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:36','riya','2025-12-08 15:49:27',0),(16292,2526,0,0,4777,'2025-12-07','14:00:00',0,225,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','406','','','',2526,'H','D',271,70,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:36','vishal','2025-12-11 18:15:03',0),(16293,2526,0,0,4977,'2025-12-08','09:15:00',0,238,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',0,'','',0,43,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:37','riya','2025-12-08 12:17:00',0),(16294,2526,0,0,4977,'2025-12-08','09:15:00',0,238,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',0,'','',0,44,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:37','riya','2025-12-08 12:17:00',0),(16295,2526,0,0,4977,'2025-12-08','09:15:00',0,238,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',0,'','',0,45,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:37','riya','2025-12-08 12:17:00',0),(16296,2526,0,0,4977,'2025-12-08','09:15:00',0,238,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',2526,'H','I',227,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:37','riya','2025-12-08 11:24:20',0),(16297,2526,0,0,4977,'2025-12-08','09:15:00',0,238,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',0,'','',0,47,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:37','riya','2025-12-08 12:17:00',0),(16298,2526,0,0,5089,'2025-12-07','18:30:00',0,241,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',0,'','',0,23,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:37','riya','2025-12-08 11:58:24',0),(16299,2526,0,0,5089,'2025-12-07','18:30:00',0,241,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',0,'','',0,24,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:37','riya','2025-12-08 11:58:24',0),(16300,2526,0,0,5089,'2025-12-07','18:30:00',0,241,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',0,'','',0,25,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:37','riya','2025-12-08 11:58:24',0),(16301,2526,0,0,5089,'2025-12-07','18:30:00',0,241,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',0,'','',0,26,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:37','riya','2025-12-08 11:58:24',0),(16302,2526,0,0,5089,'2025-12-07','18:30:00',0,241,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',0,'','',0,27,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:37','riya','2025-12-08 11:58:24',0),(16303,2526,0,0,5163,'2025-12-07','15:00:00',0,245,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:37','riya','2025-12-08 13:36:01',0),(16304,2526,0,0,5163,'2025-12-07','15:00:00',0,245,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:37','riya','2025-12-08 13:36:01',0),(16305,2526,0,0,5163,'2025-12-07','15:00:00',0,245,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:37','riya','2025-12-08 13:36:01',0),(16306,2526,0,0,5163,'2025-12-07','15:00:00',0,245,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',257,38,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:37','vishal','2025-12-12 19:32:42',0),(16307,2526,0,0,5163,'2025-12-07','15:00:00',0,245,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:37','riya','2025-12-08 13:36:01',0),(16308,2526,0,0,5175,'2025-12-07','17:00:00',0,247,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',238,28,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','vishal','2025-12-09 10:37:12',0),(16309,2526,0,0,5175,'2025-12-07','17:00:00',0,247,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',238,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-08 13:32:25',0),(16310,2526,0,0,5175,'2025-12-07','17:00:00',0,247,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',238,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-08 13:32:25',0),(16311,2526,0,0,5175,'2025-12-07','17:00:00',0,247,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','411','','','',2526,'H','I',238,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-08 13:32:25',0),(16312,2526,0,0,5175,'2025-12-07','17:00:00',0,247,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','411','','','',2526,'H','I',238,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-08 13:32:25',0),(16313,2526,0,0,5316,'2025-12-07','17:30:00',0,251,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-08 13:42:37',0),(16314,2526,0,0,5316,'2025-12-07','17:30:00',0,251,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-08 13:42:37',0),(16315,2526,0,0,5316,'2025-12-07','17:30:00',0,251,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','407','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-09 19:10:25',0),(16316,2526,0,0,5316,'2025-12-07','17:30:00',0,251,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','407','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-09 19:10:25',0),(16317,2526,0,0,5316,'2025-12-07','17:30:00',0,251,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-08 13:42:37',0),(16318,2526,0,0,5337,'2025-12-07','20:30:00',0,252,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',228,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-08 11:04:01',0),(16319,2526,0,0,5337,'2025-12-07','20:30:00',0,252,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',228,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-08 11:04:01',0),(16320,2526,0,0,5337,'2025-12-07','20:30:00',0,252,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',228,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-08 11:04:01',0),(16321,2526,0,0,5337,'2025-12-07','20:30:00',0,252,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','305','','','',0,'','',0,20,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-08 12:22:49',0),(16322,2526,0,0,5337,'2025-12-07','20:30:00',0,252,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','305','','','',2526,'H','I',228,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-08 11:04:01',0),(16323,2526,0,0,5338,'2025-12-07','20:30:00',0,253,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',2526,'H','I',237,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-08 12:10:19',0),(16324,2526,0,0,5338,'2025-12-07','20:30:00',0,253,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',2526,'H','I',237,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-08 12:10:19',0),(16325,2526,0,0,5338,'2025-12-07','20:30:00',0,253,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',2526,'H','I',237,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-08 12:10:19',0),(16326,2526,0,0,5338,'2025-12-07','20:30:00',0,253,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',2526,'H','I',237,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-08 12:10:19',0),(16327,2526,0,0,5338,'2025-12-07','20:30:00',0,253,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',2526,'H','I',237,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-07 22:28:38','riya','2025-12-08 12:10:19',0),(16328,2526,0,0,5470,'2025-12-08','00:00:00',3690,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6020,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 10:59:05','drashti','2025-12-08 10:59:53',0),(16329,2526,0,0,5468,'2025-12-08','11:02:40',2542,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6021,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 11:02:40','janvi','2025-12-08 11:02:40',0),(16330,2526,0,0,5471,'2025-12-08','00:00:00',2128,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6022,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:04:30','reception','2025-12-08 11:04:52',0),(16331,2526,0,0,5472,'2025-12-08','00:00:00',3691,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6023,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 11:05:22','drashti','2025-12-08 11:06:51',0),(16332,2526,0,0,5473,'2025-12-08','00:00:00',3692,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6024,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 11:08:04','janvi','2025-12-08 11:08:52',0),(16333,2526,0,0,5474,'2025-12-08','00:00:00',3693,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6025,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 11:10:55','drashti','2025-12-08 11:11:57',0),(16334,2526,0,0,5475,'2025-12-08','00:00:00',3694,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6027,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:12:20','reception','2025-12-08 11:13:49',0),(16335,2526,0,0,5476,'2025-12-08','00:00:00',3695,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6026,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 11:12:39','drashti','2025-12-08 11:13:18',0),(16336,2526,0,0,5462,'2025-12-08','11:16:05',3686,0,'XRY','XRY0370','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6028,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 11:16:05','manshi','2025-12-08 11:16:05',0),(16337,2526,0,0,5462,'2025-12-08','11:16:05',3686,0,'XRY','XRY0428','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6028,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 11:16:05','manshi','2025-12-08 11:16:05',0),(16338,2526,0,0,5441,'2025-12-08','11:16:58',3672,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6029,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:16:58','reception','2025-12-08 11:16:58',0),(16339,2526,0,0,5478,'2025-12-08','11:18:03',3565,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6030,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:18:03','reception','2025-12-08 11:18:03',0),(16340,2526,0,0,5457,'2025-12-08','11:18:52',3681,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6031,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:18:52','reception','2025-12-08 11:18:52',0),(16341,2526,0,0,5457,'2025-12-08','11:18:52',3681,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6031,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:18:52','reception','2025-12-08 11:18:52',0),(16342,2526,0,0,5457,'2025-12-08','11:18:52',3681,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6031,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:18:52','reception','2025-12-08 11:18:52',0),(16343,2526,0,0,5479,'2025-12-08','00:00:00',3696,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6032,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 11:21:43','janvi','2025-12-08 11:22:13',0),(16344,2526,0,0,5480,'2025-12-08','00:00:00',3697,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6034,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 11:22:59','drashti','2025-12-08 11:23:56',0),(16345,2526,0,0,5440,'2025-12-08','11:23:23',3671,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6033,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:23:23','reception','2025-12-08 11:23:23',0),(16346,2526,0,0,5440,'2025-12-08','11:23:23',3671,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6033,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:23:23','reception','2025-12-08 11:23:23',0),(16347,2526,0,0,5440,'2025-12-08','11:23:23',3671,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6033,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:23:23','reception','2025-12-08 11:23:23',0),(16348,2526,0,0,5481,'2025-12-08','00:00:00',3698,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6035,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:25:08','reception','2025-12-08 11:25:30',0),(16349,2526,0,0,5482,'2025-12-08','00:00:00',3699,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',6037,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:27:05','reception','2025-12-08 11:27:51',0),(16350,2526,0,0,5483,'2025-12-08','00:00:00',3700,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6036,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 11:27:19','drashti','2025-12-08 11:27:43',0),(16351,2526,0,0,4977,'2025-12-07','11:26:00',0,238,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 11:27:33','','0000-00-00 00:00:00',0),(16352,2526,0,0,4977,'2025-12-08','11:26:00',0,238,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',227,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 11:27:33','riya','2025-12-08 12:17:00',0),(16353,2526,0,0,5484,'2025-12-08','00:00:00',2343,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6039,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:29:19','reception','2025-12-08 11:29:36',0),(16354,2526,0,0,5466,'2025-12-08','11:29:22',3688,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6038,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 11:29:22','drashti','2025-12-08 11:29:22',0),(16355,2526,0,0,5477,'2025-12-08','11:30:30',2738,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6040,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 11:30:30','janvi','2025-12-08 11:30:30',0),(16356,2526,0,0,5485,'2025-12-08','00:00:00',3701,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 11:30:36','manshi','2025-12-07 23:00:36',0),(16357,2526,0,0,5486,'2025-12-08','00:00:00',3702,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6041,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:30:38','reception','2025-12-08 11:30:57',0),(16358,2526,0,0,5487,'2025-12-08','00:00:00',3703,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6042,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 11:30:40','drashti','2025-12-08 11:32:00',0),(16359,2526,0,0,5488,'2025-12-08','00:00:00',3704,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6043,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 11:31:44','janvi','2025-12-08 11:32:27',0),(16360,2526,0,0,5489,'2025-12-08','00:00:00',3705,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6045,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 11:32:56','drashti','2025-12-08 11:33:52',0),(16361,2526,0,0,5490,'2025-12-08','00:00:00',1134,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6044,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 11:32:58','janvi','2025-12-08 11:33:10',0),(16362,2526,0,0,5492,'2025-12-08','00:00:00',3706,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6046,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:35:38','reception','2025-12-08 11:36:05',0),(16363,2526,0,0,5485,'2025-12-08','11:36:18',3701,0,'XRY','XRY0254','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',6047,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 11:36:18','manshi','2025-12-08 11:36:18',0),(16364,2526,0,0,5493,'2025-12-08','00:00:00',2045,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6048,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:36:37','reception','2025-12-08 11:36:55',0),(16365,2526,0,0,5426,'2025-12-08','11:34:00',0,256,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',247,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 11:37:07','','0000-00-00 00:00:00',0),(16366,2526,0,0,5426,'2025-12-08','11:36:00',0,256,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',247,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 11:37:07','','0000-00-00 00:00:00',0),(16367,2526,0,0,5426,'2025-12-08','11:37:00',0,256,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',247,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 11:38:03','','0000-00-00 00:00:00',0),(16368,2526,0,0,5494,'2025-12-08','00:00:00',3707,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6050,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 11:40:23','manshi','2025-12-08 11:42:36',0),(16369,2526,0,0,5491,'2025-12-08','11:41:48',3445,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6049,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:41:48','reception','2025-12-08 11:41:48',0),(16370,2526,0,0,5495,'2025-12-08','00:00:00',3708,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6051,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:43:51','reception','2025-12-08 11:44:04',0),(16371,2526,0,0,5496,'2025-12-08','00:00:00',3709,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6052,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 11:44:28','drashti','2025-12-08 11:45:59',0),(16372,2526,0,0,5497,'2025-12-08','00:00:00',3710,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6053,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:48:35','reception','2025-12-08 11:49:03',0),(16373,2526,0,0,5498,'2025-12-08','00:00:00',3711,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6055,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 11:49:34','drashti','2025-12-08 11:53:54',0),(16374,2526,0,0,5500,'2025-12-08','00:00:00',298,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6054,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:52:14','reception','2025-12-08 11:52:36',0),(16375,2526,0,0,5472,'2025-12-08','11:54:59',3691,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6056,1,372,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:54:59','reception','2025-12-08 11:54:59',0),(16376,2526,0,0,5472,'2025-12-08','11:54:59',3691,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6056,2,328,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:54:59','reception','2025-12-08 11:54:59',0),(16377,2526,0,0,5501,'2025-12-08','00:00:00',3712,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6057,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 11:57:25','janvi','2025-12-08 11:58:10',0),(16378,2526,0,0,5502,'2025-12-08','00:00:00',3713,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6058,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 11:57:30','drashti','2025-12-08 11:58:12',0),(16379,2526,0,0,5503,'2025-12-08','00:00:00',3714,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6059,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 11:58:03','reception','2025-12-08 11:59:45',0),(16380,2526,0,0,5504,'2025-12-08','00:00:00',3715,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6060,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 11:58:23','manshi','2025-12-08 12:00:12',0),(16381,2526,0,0,5089,'2025-12-03','11:53:00',0,241,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,28,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 11:58:24','','0000-00-00 00:00:00',0),(16382,2526,0,0,5089,'2025-12-03','11:53:00',0,241,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,29,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 11:58:24','','0000-00-00 00:00:00',0),(16383,2526,0,0,5089,'2025-12-04','11:53:00',0,241,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,5,0,0,'',0,0,'','','','','',0,'','',0,30,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 11:58:24','','0000-00-00 00:00:00',0),(16384,2526,0,0,5089,'2025-12-04','11:53:00',0,241,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',0,'','',0,31,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 11:58:24','','0000-00-00 00:00:00',0),(16385,2526,0,0,5089,'2025-12-04','11:53:00',0,241,'USG','USG0091','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,32,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 11:58:24','','0000-00-00 00:00:00',0),(16386,2526,0,0,5089,'2025-12-05','11:54:00',0,241,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',0,'','',0,33,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 11:58:24','','0000-00-00 00:00:00',0),(16387,2526,0,0,5089,'2025-12-06','11:54:00',0,241,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',0,'','',0,34,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 11:58:24','','0000-00-00 00:00:00',0),(16388,2526,0,0,5089,'2025-12-07','11:54:00',0,241,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',0,'','',0,35,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 11:58:24','','0000-00-00 00:00:00',0),(16389,2526,0,0,5089,'2025-12-08','11:54:00',0,241,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,36,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 11:58:24','','0000-00-00 00:00:00',0),(16390,2526,0,0,5089,'2025-12-03','11:55:00',0,241,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,37,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 11:58:24','','0000-00-00 00:00:00',0),(16391,2526,0,0,5505,'2025-12-08','00:00:00',2393,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6061,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 11:59:54','drashti','2025-12-08 12:00:42',0),(16392,2526,0,0,5453,'2025-12-08','12:01:52',3678,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6062,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 12:01:52','reception','2025-12-08 12:01:52',0),(16393,2526,0,0,5453,'2025-12-08','12:01:52',3678,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6062,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 12:01:52','reception','2025-12-08 12:01:52',0),(16394,2526,0,0,5442,'2025-12-08','12:02:53',3673,0,'OPWD','OPWD0023','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,0.00,4000,6,0,0,'',0,0,'','','','','',2526,'H','O',6063,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 12:02:53','manshi','2025-12-08 12:02:53',0),(16395,2526,0,0,5507,'2025-12-08','00:00:00',3716,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',6065,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 12:04:20','reception','2025-12-08 12:05:20',0),(16396,2526,0,0,5446,'2025-12-08','12:04:48',3675,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',6064,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 12:04:48','drashti','2025-12-08 12:04:48',0),(16397,2526,0,0,5338,'2025-12-07','12:09:00',0,253,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',237,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 12:10:19','','0000-00-00 00:00:00',0),(16398,2526,0,0,5338,'2025-12-08','12:09:00',0,253,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',237,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 12:10:19','','0000-00-00 00:00:00',0),(16399,2526,0,0,5338,'2025-12-08','12:09:00',0,253,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',237,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 12:10:19','','0000-00-00 00:00:00',0),(16400,2526,0,0,5338,'2025-12-07','12:09:00',0,253,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',237,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 12:10:19','','0000-00-00 00:00:00',0),(16401,2526,0,0,5508,'2025-12-08','00:00:00',2245,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6066,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 12:12:02','manshi','2025-12-08 12:12:52',0),(16402,2526,0,0,5508,'2025-12-08','12:12:52',2245,0,'XRY','XRY0244','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6066,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 12:12:52','manshi','2025-12-08 12:12:52',0),(16403,2526,0,0,5509,'2025-12-08','00:00:00',990,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6067,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 12:13:04','reception','2025-12-08 12:13:33',0),(16404,2526,0,0,5510,'2025-12-08','00:00:00',3717,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 12:15:55','drashti','2025-12-07 23:45:55',0),(16405,2526,0,0,5504,'2025-12-08','12:16:20',3715,0,'XRY','XRY0390','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',6068,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 12:16:20','manshi','2025-12-08 12:16:20',0),(16406,2526,0,0,5511,'2025-12-08','00:00:00',3718,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6069,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 12:17:33','reception','2025-12-08 12:18:05',0),(16407,2526,0,0,5512,'2025-12-08','00:00:00',2451,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6070,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 12:18:35','reception','2025-12-08 12:19:10',0),(16408,2526,0,0,5510,'2025-12-08','12:20:23',3717,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',6071,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 12:20:23','drashti','2025-12-08 12:20:23',0),(16409,2526,0,0,5510,'2025-12-08','12:20:23',3717,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',6071,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 12:20:23','drashti','2025-12-08 12:20:23',0),(16410,2526,0,0,5510,'2025-12-08','12:20:23',3717,0,'OPWD','OPWD0019','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',6071,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 12:20:23','drashti','2025-12-08 12:20:23',0),(16411,2526,0,0,5510,'2025-12-08','12:20:23',3717,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',6071,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 12:20:23','drashti','2025-12-08 12:20:23',0),(16412,2526,0,0,5506,'2025-12-08','12:20:31',3406,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6072,1,50,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 12:20:31','janvi','2025-12-08 12:20:31',0),(16413,2526,0,0,5506,'2025-12-08','12:20:31',3406,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6072,2,50,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 12:20:31','janvi','2025-12-08 12:20:31',0),(16414,2526,0,0,5513,'2025-12-08','12:22:14',1928,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',6073,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 12:22:13','manshi','2025-12-08 12:22:13',0),(16415,2526,0,0,5337,'2025-12-07','12:19:00',0,252,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',228,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 12:22:49','','0000-00-00 00:00:00',0),(16416,2526,0,0,5337,'2025-12-08','12:19:00',0,252,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',228,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 12:22:49','riya','2025-12-08 13:23:55',0),(16417,2526,0,0,5337,'2025-12-07','12:20:00',0,252,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',228,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 12:22:49','','0000-00-00 00:00:00',0),(16418,2526,0,0,5337,'2025-12-06','12:20:00',0,252,'SURG','SURG0014','H','N',1.00,20000,20000,'P',0,0,0.00,0.00,20000.00,20000,3,0,0,'',0,0,'','','','','',2526,'H','I',228,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 12:22:49','','0000-00-00 00:00:00',0),(16419,2526,0,0,5337,'2025-12-06','12:21:00',0,252,'SURG','SURG0015','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,5000.00,5000,3,0,0,'',0,0,'','','','','',2526,'H','I',228,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 12:22:49','','0000-00-00 00:00:00',0),(16420,2526,0,0,5514,'2025-12-08','00:00:00',2946,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6074,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 12:23:24','drashti','2025-12-08 12:24:44',0),(16421,2526,0,0,5481,'2025-12-08','12:25:03',3698,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6075,1,91,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 12:25:03','reception','2025-12-08 12:25:03',0),(16422,2526,0,0,5481,'2025-12-08','12:25:03',3698,0,'NEU1','NEU10019','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6075,2,364,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 12:25:03','reception','2025-12-08 12:25:03',0),(16423,2526,0,0,5481,'2025-12-08','12:25:03',3698,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6075,3,545,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 12:25:03','reception','2025-12-08 12:25:03',0),(16424,2526,0,0,4688,'2025-12-07','12:26:00',0,218,'ROOM','ROOM0008','H','N',12.00,100,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 12:28:22','','0000-00-00 00:00:00',0),(16425,2526,0,0,4688,'2025-12-08','12:26:00',0,218,'ROOM','ROOM0008','H','N',12.00,100,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 12:28:22','riya','2025-12-10 17:21:43',0),(16426,2526,0,0,4688,'2025-12-06','12:27:00',0,218,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 12:28:22','','0000-00-00 00:00:00',0),(16427,2526,0,0,4688,'2025-12-07','12:27:00',0,218,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 12:28:22','','0000-00-00 00:00:00',0),(16428,2526,0,0,4688,'2025-12-08','12:27:00',0,218,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 12:28:22','','0000-00-00 00:00:00',0),(16429,2526,0,0,5515,'2025-12-08','00:00:00',254,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6076,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 12:29:10','drashti','2025-12-08 12:29:49',0),(16430,2526,0,0,5517,'2025-12-08','00:00:00',3719,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6078,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 12:32:58','drashti','2025-12-08 12:33:54',0),(16431,2526,0,0,5516,'2025-12-08','12:33:24',3434,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',6077,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 12:33:24','reception','2025-12-08 12:33:24',0),(16432,2526,0,0,5518,'2025-12-08','00:00:00',3720,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 12:34:36','janvi','2025-12-08 00:04:36',0),(16433,2526,0,0,5519,'2025-12-08','00:00:00',3721,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',6079,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 12:36:26','reception','2025-12-08 12:37:05',0),(16434,2526,0,0,5520,'2025-12-08','00:00:00',3722,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6080,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 12:36:45','drashti','2025-12-08 12:39:39',0),(16435,2526,0,0,5521,'2025-12-08','12:30:00',0,259,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 12:36:57','riya','2025-12-10 16:07:39',0),(16436,2526,0,0,5521,'2025-12-08','12:30:00',0,259,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 12:36:57','riya','2025-12-10 16:07:39',0),(16437,2526,0,0,5521,'2025-12-08','12:30:00',0,259,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',290,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 00:06:57','vishal','2025-12-17 12:56:01',0),(16438,2526,0,0,5521,'2025-12-08','12:30:00',0,259,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','409','','','',2526,'H','I',290,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 00:06:57','vishal','2025-12-17 12:56:01',0),(16439,2526,0,0,5521,'2025-12-08','12:30:00',0,259,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',290,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 00:06:57','riya','2025-12-10 16:07:39',0),(16440,2526,0,0,5521,'2025-12-08','12:30:00',0,259,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','409','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 00:06:57','vishal','2025-12-17 13:05:22',0),(16441,2526,0,0,5521,'2025-12-08','12:30:00',0,259,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','409','','','',2526,'H','I',290,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 00:06:57','vishal','2025-12-17 12:56:01',0),(16442,2526,0,0,5522,'2025-12-08','00:00:00',676,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6082,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 12:38:18','janvi','2025-12-08 12:40:55',0),(16443,2526,0,0,5520,'2025-12-08','12:39:39',3722,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6080,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 12:39:39','drashti','2025-12-08 12:39:39',0),(16444,2526,0,0,5520,'2025-12-08','12:39:39',3722,0,'OPWD','OPWD0019','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',6080,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 12:39:39','drashti','2025-12-08 12:39:39',0),(16445,2526,0,0,5520,'2025-12-08','12:39:39',3722,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',6080,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 12:39:39','drashti','2025-12-08 12:39:39',0),(16446,2526,0,0,5523,'2025-12-08','00:00:00',3723,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6081,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 12:40:25','janvi','2025-12-08 12:40:39',0),(16447,2526,0,0,5441,'2025-12-08','12:42:14',3672,0,'OTCG','OTCG0033','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',6083,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 12:42:14','drashti','2025-12-08 12:42:14',0),(16448,2526,0,0,5524,'2025-12-08','00:00:00',3724,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6084,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 12:42:18','janvi','2025-12-08 12:42:52',0),(16449,2526,0,0,5486,'2025-12-08','12:48:23',3702,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6085,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 12:48:23','reception','2025-12-08 12:48:23',0),(16450,2526,0,0,5486,'2025-12-08','12:48:23',3702,0,'NEU1','NEU10019','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6085,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 12:48:23','reception','2025-12-08 12:48:23',0),(16451,2526,0,0,5486,'2025-12-08','12:48:23',3702,0,'NEU1','NEU10020','H','N',1.00,1800,1800,'P',0,0,0.00,0.00,0.00,1800,9999,0,0,'',0,0,'','','','','',2526,'H','O',6085,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 12:48:23','reception','2025-12-08 12:48:23',0),(16452,2526,0,0,5518,'2025-12-08','13:01:15',3720,0,'MOPR','MOPR0006','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6086,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 13:01:15','janvi','2025-12-08 13:01:15',0),(16453,2526,0,0,5525,'2025-12-08','13:04:54',3018,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',6087,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 13:04:54','janvi','2025-12-08 13:04:54',0),(16454,2526,0,0,5527,'2025-12-08','13:00:00',0,260,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',261,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:06:07','riya','2025-12-13 14:08:10',0),(16455,2526,0,0,5527,'2025-12-08','13:00:00',0,260,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',261,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:06:07','riya','2025-12-13 14:08:10',0),(16456,2526,0,0,5527,'2025-12-08','13:00:00',0,260,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 00:36:07','riya','2025-12-13 14:08:10',0),(16457,2526,0,0,5527,'2025-12-08','13:00:00',0,260,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 00:36:07','riya','2025-12-13 14:08:10',0),(16458,2526,0,0,5527,'2025-12-08','13:00:00',0,260,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 00:36:07','riya','2025-12-13 14:08:10',0),(16459,2526,0,0,5527,'2025-12-08','13:00:00',0,260,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-08 00:36:07','vishal','2025-12-09 13:58:52',0),(16460,2526,0,0,5527,'2025-12-08','13:00:00',0,260,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 00:36:07','riya','2025-12-13 14:08:10',0),(16461,2526,0,0,5482,'2025-12-08','13:06:13',3699,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6088,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 13:06:12','reception','2025-12-08 13:06:12',0),(16462,2526,0,0,5482,'2025-12-08','13:06:13',3699,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6088,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 13:06:12','reception','2025-12-08 13:06:12',0),(16463,2526,0,0,5528,'2025-12-08','00:00:00',3725,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6089,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 13:07:59','manshi','2025-12-08 13:21:28',0),(16464,2526,0,0,5529,'2025-12-08','00:00:00',3726,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6090,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 13:17:55','manshi','2025-12-08 13:18:05',0),(16465,2526,0,0,5530,'2025-12-08','00:00:00',3727,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6091,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 13:19:13','drashti','2025-12-08 13:19:44',0),(16466,2526,0,0,4694,'2025-12-07','13:15:00',0,222,'WPRC','WPRC0092','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,39,0,0,'',0,0,'','','','','',0,'','',0,58,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:19:38','riya','2025-12-13 13:49:37',0),(16467,2526,0,0,4694,'2025-12-07','13:15:00',0,222,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,59,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:19:38','','0000-00-00 00:00:00',0),(16468,2526,0,0,4694,'2025-12-08','13:16:00',0,222,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,64,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:19:38','riya','2025-12-09 16:57:25',0),(16469,2526,0,0,4694,'2025-12-07','13:16:00',0,222,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,61,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:19:38','','0000-00-00 00:00:00',0),(16470,2526,0,0,4694,'2025-12-06','13:17:00',0,222,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,62,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:19:38','','0000-00-00 00:00:00',0),(16471,2526,0,0,4694,'2025-12-07','13:17:00',0,222,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',262,63,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:19:38','','0000-00-00 00:00:00',0),(16472,2526,0,0,4694,'2025-12-07','13:18:00',0,222,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',262,64,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:19:38','','0000-00-00 00:00:00',0),(16473,2526,0,0,5337,'2025-12-08','13:23:00',0,252,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',228,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:23:55','','0000-00-00 00:00:00',0),(16474,2526,0,0,5483,'2025-12-08','13:29:58',3700,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6093,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 13:29:58','reception','2025-12-08 13:29:58',0),(16475,2526,0,0,5483,'2025-12-08','13:29:58',3700,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6093,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 13:29:58','reception','2025-12-08 13:29:58',0),(16476,2526,0,0,5483,'2025-12-08','13:29:58',3700,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6093,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 13:29:58','reception','2025-12-08 13:29:58',0),(16477,2526,0,0,5175,'2025-12-07','13:30:00',0,247,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',238,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:32:25','','0000-00-00 00:00:00',0),(16478,2526,0,0,5175,'2025-12-08','13:31:00',0,247,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',238,31,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:32:25','vishal','2025-12-09 10:37:12',0),(16479,2526,0,0,5175,'2025-12-07','13:31:00',0,247,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',238,23,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:32:25','vishal','2025-12-09 10:37:12',0),(16480,2526,0,0,5531,'2025-12-08','00:00:00',3728,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6094,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 13:32:27','drashti','2025-12-08 13:32:48',0),(16481,2526,0,0,5532,'2025-12-08','00:00:00',3729,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6095,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 13:33:13','reception','2025-12-08 13:33:50',0),(16482,2526,0,0,5163,'2025-12-07','13:33:00',0,245,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:36:01','','0000-00-00 00:00:00',0),(16483,2526,0,0,5163,'2025-12-08','13:33:00',0,245,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:36:01','','0000-00-00 00:00:00',0),(16484,2526,0,0,5163,'2025-12-06','13:33:00',0,245,'XRY','XRY0045','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,21,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:36:01','vishal','2025-12-12 19:32:42',0),(16485,2526,0,0,5163,'2025-12-07','13:34:00',0,245,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:36:01','','0000-00-00 00:00:00',0),(16486,2526,0,0,5163,'2025-12-07','13:35:00',0,245,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,33,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:36:01','vishal','2025-12-12 19:32:42',0),(16487,2526,0,0,5163,'2025-12-08','13:35:00',0,245,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,41,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:36:01','vishal','2025-12-12 19:32:42',0),(16488,2526,0,0,5163,'2025-12-07','13:35:00',0,245,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:36:01','','0000-00-00 00:00:00',0),(16489,2526,0,0,5163,'2025-12-08','13:35:00',0,245,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:36:01','','0000-00-00 00:00:00',0),(16490,2526,0,0,5316,'2025-12-08','13:40:00',0,251,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:42:37','','0000-00-00 00:00:00',0),(16491,2526,0,0,5316,'2025-12-07','13:40:00',0,251,'WPRC','WPRC0114','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:42:37','riya','2025-12-09 20:03:58',0),(16492,2526,0,0,5316,'2025-12-07','13:41:00',0,251,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:42:37','riya','2025-12-09 20:11:44',0),(16493,2526,0,0,5316,'2025-12-07','13:41:00',0,251,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:42:37','','0000-00-00 00:00:00',0),(16494,2526,0,0,5316,'2025-12-08','13:42:00',0,251,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 13:42:37','','0000-00-00 00:00:00',0),(16495,2526,0,0,5442,'2025-12-08','13:44:26',3673,0,'XRY','XRY0145','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',6096,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 13:44:26','janvi','2025-12-08 13:44:26',0),(16496,2526,0,0,4777,'2025-12-08','14:00:00',0,225,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',0,'','',0,38,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 01:38:35','vishal','2025-12-11 18:15:03',0),(16497,2526,0,0,4777,'2025-12-08','14:00:00',0,225,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',0,'','',0,39,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 01:38:35','vishal','2025-12-11 18:15:03',0),(16498,2526,0,0,4777,'2025-12-08','14:00:00',0,225,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',0,'','',0,40,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 01:38:35','vishal','2025-12-11 18:15:03',0),(16499,2526,0,0,4777,'2025-12-08','14:00:00',0,225,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','406','','','',2526,'H','D',271,73,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 01:38:35','vishal','2025-12-11 18:15:03',0),(16500,2526,0,0,4777,'2025-12-08','14:00:00',0,225,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','406','','','',2526,'H','D',271,74,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 01:38:35','vishal','2025-12-11 18:15:03',0),(16501,2526,0,0,5524,'2025-12-08','14:18:02',3724,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6097,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 14:18:02','janvi','2025-12-08 14:18:02',0),(16502,2526,0,0,5524,'2025-12-08','14:18:02',3724,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6097,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 14:18:02','janvi','2025-12-08 14:18:02',0),(16503,2526,0,0,5533,'2025-12-08','00:00:00',3730,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6098,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 14:28:04','janvi','2025-12-08 14:29:33',0),(16504,2526,0,0,4777,'2025-12-01','14:08:00',0,225,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,43,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:38:08','','0000-00-00 00:00:00',0),(16505,2526,0,0,4777,'2025-12-02','14:08:00',0,225,'ROOM','ROOM0008','H','N',10.00,100,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,44,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:38:08','','0000-00-00 00:00:00',0),(16506,2526,0,0,4777,'2025-12-03','15:33:00',0,225,'ROOM','ROOM0008','H','N',9.00,100,900,'P',0,0,0.00,0.00,900.00,900,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,45,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:38:08','','0000-00-00 00:00:00',0),(16507,2526,0,0,4777,'2025-12-04','15:34:00',0,225,'ROOM','ROOM0008','H','N',9.00,100,900,'P',0,0,0.00,0.00,900.00,900,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,46,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:38:08','','0000-00-00 00:00:00',0),(16508,2526,0,0,4777,'2025-12-05','15:35:00',0,225,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,47,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:38:08','','0000-00-00 00:00:00',0),(16509,2526,0,0,4777,'2025-12-06','15:35:00',0,225,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,48,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:38:08','','0000-00-00 00:00:00',0),(16510,2526,0,0,4777,'2025-12-07','15:35:00',0,225,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,49,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:38:08','','0000-00-00 00:00:00',0),(16511,2526,0,0,4777,'2025-12-08','15:35:00',0,225,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,50,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:38:08','','0000-00-00 00:00:00',0),(16512,2526,0,0,4777,'2025-12-01','15:36:00',0,225,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,51,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:38:08','','0000-00-00 00:00:00',0),(16513,2526,0,0,4777,'2025-12-01','15:36:00',0,225,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,52,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:38:08','','0000-00-00 00:00:00',0),(16514,2526,0,0,4777,'2025-12-01','15:36:00',0,225,'WPRC','WPRC0088','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,5,0,0,'',0,0,'','','','','',2526,'H','D',271,53,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:38:08','','0000-00-00 00:00:00',0),(16515,2526,0,0,4777,'2025-12-02','15:36:00',0,225,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,5,0,0,'',0,0,'','','','','',2526,'H','D',271,54,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:38:08','','0000-00-00 00:00:00',0),(16516,2526,0,0,4777,'2025-12-01','15:37:00',0,225,'USG','USG0092','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,55,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:38:08','','0000-00-00 00:00:00',0),(16517,2526,0,0,4777,'2025-12-08','15:37:00',0,225,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,56,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:38:08','','0000-00-00 00:00:00',0),(16518,2526,0,0,4777,'2025-12-04','15:40:00',0,225,'WPRC','WPRC0092','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,39,0,0,'',0,0,'','','','','',2526,'H','D',271,57,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16519,2526,0,0,4777,'2025-12-01','15:41:00',0,225,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,58,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16520,2526,0,0,4777,'2025-12-01','15:42:00',0,225,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,59,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16521,2526,0,0,4777,'2025-12-02','15:42:00',0,225,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,60,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16522,2526,0,0,4777,'2025-12-03','15:42:00',0,225,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,61,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16523,2526,0,0,4777,'2025-12-04','15:42:00',0,225,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,62,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16524,2526,0,0,4777,'2025-12-05','15:42:00',0,225,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,63,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16525,2526,0,0,4777,'2025-12-01','15:43:00',0,225,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,64,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16526,2526,0,0,4777,'2025-12-02','15:43:00',0,225,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,65,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16527,2526,0,0,4777,'2025-12-03','15:43:00',0,225,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,66,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16528,2526,0,0,4777,'2025-12-04','15:43:00',0,225,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,67,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16529,2526,0,0,4777,'2025-12-05','15:43:00',0,225,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,68,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16530,2526,0,0,4777,'2025-12-06','15:43:00',0,225,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,69,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16531,2526,0,0,4777,'2025-12-05','15:44:00',0,225,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,70,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16532,2526,0,0,4777,'2025-12-02','15:44:00',0,225,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,71,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16533,2526,0,0,4777,'2025-12-03','15:44:00',0,225,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,72,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16534,2526,0,0,4777,'2025-12-04','15:44:00',0,225,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,73,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16535,2526,0,0,4777,'2025-12-05','15:45:00',0,225,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,74,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16536,2526,0,0,4777,'2025-12-01','15:45:00',0,225,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,75,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16537,2526,0,0,4777,'2025-12-02','15:45:00',0,225,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,76,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16538,2526,0,0,4777,'2025-12-03','15:45:00',0,225,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,77,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16539,2526,0,0,4777,'2025-12-04','15:46:00',0,225,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,78,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16540,2526,0,0,4777,'2025-12-05','15:46:00',0,225,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,79,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16541,2526,0,0,4777,'2025-12-06','15:46:00',0,225,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,80,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16542,2526,0,0,4777,'2025-12-07','15:46:00',0,225,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,81,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16543,2526,0,0,4777,'2025-12-08','15:46:00',0,225,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,82,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:47:26','','0000-00-00 00:00:00',0),(16544,2526,0,0,4777,'2025-12-03','15:48:00',0,225,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,41,0,0,'',0,0,'','','','','',2526,'H','D',271,82,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:49:27','','0000-00-00 00:00:00',0),(16545,2526,0,0,4777,'2025-12-03','15:48:00',0,225,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,8,0,0,'',0,0,'','','','','',2526,'H','D',271,83,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 15:49:27','','0000-00-00 00:00:00',0),(16546,2526,0,0,5534,'2025-12-08','00:00:00',3731,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6099,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 15:59:12','urvashi','2025-12-08 15:59:49',0),(16547,2526,0,0,5175,'2025-12-05','16:06:00',0,247,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','','','','',2526,'H','I',238,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 16:08:17','','0000-00-00 00:00:00',0),(16548,2526,0,0,5175,'2025-12-05','16:07:00',0,247,'CARE','CARE0006','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',238,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 16:08:17','vishal','2025-12-09 10:37:12',0),(16549,2526,0,0,5175,'2025-12-05','16:07:00',0,247,'CARE','CARE0002','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',238,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 16:08:17','','0000-00-00 00:00:00',0),(16550,2526,0,0,5535,'2025-12-08','00:00:00',2575,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6100,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 16:36:55','reception','2025-12-08 16:37:32',0),(16551,2526,0,0,5531,'2025-12-08','16:47:42',3728,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6101,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 16:47:42','reception','2025-12-08 16:47:42',0),(16552,2526,0,0,5531,'2025-12-08','16:47:42',3728,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6101,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 16:47:42','reception','2025-12-08 16:47:42',0),(16553,2526,0,0,5531,'2025-12-08','16:47:42',3728,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6101,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 16:47:42','reception','2025-12-08 16:47:42',0),(16554,2526,0,0,5537,'2025-12-08','00:00:00',2189,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6102,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-08 16:48:43','urvashi','2025-12-08 16:48:54',0),(16555,2526,0,0,5538,'2025-12-08','00:00:00',3732,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6103,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 16:53:58','reception','2025-12-08 16:54:52',0),(16556,2526,0,0,5539,'2025-12-08','00:00:00',3733,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6104,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 16:56:57','reception','2025-12-08 16:57:11',0),(16557,2526,0,0,5540,'2025-12-08','00:00:00',3734,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6105,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 16:59:38','reception','2025-12-08 17:00:12',0),(16558,2526,0,0,5541,'2025-12-08','00:00:00',3735,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6106,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 17:03:39','manshi','2025-12-08 17:03:53',0),(16559,2526,0,0,5542,'2025-12-08','00:00:00',3736,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',6109,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 17:05:02','reception','2025-12-08 17:08:39',0),(16560,2526,0,0,5543,'2025-12-08','00:00:00',3737,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6107,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-08 17:05:24','priyanshi','2025-12-08 17:05:44',0),(16561,2526,0,0,5544,'2025-12-08','00:00:00',3738,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',6108,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 17:06:16','reception','2025-12-08 17:08:14',0),(16562,2526,0,0,674,'2025-10-16','17:06:00',0,50,'OETR','OETR0004','H','N',1.00,16046,16046,'P',0,0,0.00,0.00,16046.00,16046,9999,0,0,'',0,0,'','','','','',2526,'H','I',275,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-08 17:07:13','vishal','2025-12-15 18:00:03',0),(16563,2526,0,0,5545,'2025-12-08','00:00:00',3739,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6110,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 17:09:17','reception','2025-12-08 17:10:11',0),(16564,2526,0,0,5546,'2025-12-08','00:00:00',3740,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6112,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 17:14:33','drashti','2025-12-08 17:15:38',0),(16565,2526,0,0,5547,'2025-12-08','00:00:00',3741,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6111,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 17:15:19','reception','2025-12-08 17:15:33',0),(16566,2526,0,0,5548,'2025-12-08','00:00:00',3742,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',6115,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 17:18:30','reception','2025-12-08 17:23:29',0),(16567,2526,0,0,5549,'2025-12-08','00:00:00',3074,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6113,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 17:20:04','reception','2025-12-08 17:20:45',0),(16568,2526,0,0,5550,'2025-12-08','00:00:00',3122,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6114,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-08 17:20:29','priyanshi','2025-12-08 17:20:48',0),(16569,2526,0,0,5551,'2025-12-08','00:00:00',3743,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6116,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-08 17:23:38','priyanshi','2025-12-08 17:24:02',0),(16570,2526,0,0,5089,'2025-12-03','18:30:00',0,241,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-08 04:54:19','','0000-00-00 00:00:00',0),(16571,2526,0,0,5540,'2025-12-08','17:24:59',3734,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6117,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 17:24:59','reception','2025-12-08 17:24:59',0),(16572,2526,0,0,5540,'2025-12-08','17:24:59',3734,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6117,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 17:24:59','reception','2025-12-08 17:24:59',0),(16573,2526,0,0,5552,'2025-12-08','00:00:00',3744,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6119,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-08 17:25:51','priyanshi','2025-12-08 17:27:32',0),(16574,2526,0,0,5553,'2025-12-08','00:00:00',3745,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6118,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-08 17:26:40','priyanshi','2025-12-08 17:27:20',0),(16575,2526,0,0,5538,'2025-12-08','17:28:38',3732,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6120,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 17:28:38','reception','2025-12-08 17:28:38',0),(16576,2526,0,0,5538,'2025-12-08','17:28:38',3732,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6120,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 17:28:38','reception','2025-12-08 17:28:38',0),(16577,2526,0,0,5554,'2025-12-08','00:00:00',1694,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',6121,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 17:42:30','manshi','2025-12-08 17:42:49',0),(16578,2526,0,0,5555,'2025-12-08','00:00:00',3746,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6122,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 17:43:15','janvi','2025-12-08 17:43:57',0),(16579,2526,0,0,5545,'2025-12-08','17:44:05',3739,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6123,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 17:44:05','reception','2025-12-08 17:44:05',0),(16580,2526,0,0,5545,'2025-12-08','17:44:05',3739,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6123,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 17:44:05','reception','2025-12-08 17:44:05',0),(16581,2526,0,0,5556,'2025-12-08','17:53:09',3727,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6124,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 17:53:09','reception','2025-12-08 17:53:09',0),(16582,2526,0,0,5556,'2025-12-08','17:53:09',3727,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6124,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 17:53:09','reception','2025-12-08 17:53:09',0),(16583,2526,0,0,5556,'2025-12-08','17:53:09',3727,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6124,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 17:53:09','reception','2025-12-08 17:53:09',0),(16584,2526,0,0,5557,'2025-12-08','00:00:00',3747,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6125,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 17:54:27','drashti','2025-12-08 17:55:16',0),(16585,2526,0,0,5558,'2025-12-08','18:07:25',3429,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6126,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 18:07:25','drashti','2025-12-08 18:07:25',0),(16586,2526,0,0,5559,'2025-12-08','00:00:00',3332,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6134,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 18:07:48','manshi','2025-12-08 18:25:58',0),(16587,2526,0,0,5560,'2025-12-08','18:10:45',3378,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6127,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 18:10:44','janvi','2025-12-08 18:10:44',0),(16588,2526,0,0,5561,'2025-12-08','00:00:00',3748,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6128,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 18:11:01','drashti','2025-12-08 18:11:49',0),(16589,2526,0,0,5562,'2025-12-08','00:00:00',3749,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6129,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 18:12:11','janvi','2025-12-08 18:13:36',0),(16590,2526,0,0,5563,'2025-12-08','00:00:00',367,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6130,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 18:16:11','drashti','2025-12-08 18:16:30',0),(16591,2526,0,0,5564,'2025-12-08','00:00:00',3750,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6131,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 18:21:26','reception','2025-12-08 18:21:38',0),(16592,2526,0,0,5565,'2025-12-08','00:00:00',3751,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6132,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 18:21:49','janvi','2025-12-08 18:22:29',0),(16593,2526,0,0,5566,'2025-12-08','00:00:00',3752,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6133,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 18:23:32','drashti','2025-12-08 18:24:01',0),(16594,2526,0,0,5567,'2025-12-08','00:00:00',2217,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6135,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 18:28:03','manshi','2025-12-08 18:46:06',0),(16595,2526,0,0,5568,'2025-12-08','00:00:00',995,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6137,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 18:28:26','reception','2025-12-08 18:55:13',0),(16596,2526,0,0,5569,'2025-12-08','00:00:00',3753,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6136,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 18:29:12','janvi','2025-12-08 18:29:46',0),(16597,2526,0,0,5570,'2025-12-08','00:00:00',3754,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6138,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 18:29:32','manshi','2025-12-08 18:31:00',0),(16598,2526,0,0,5571,'2025-12-08','18:34:02',2995,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6139,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 18:34:02','janvi','2025-12-08 18:34:02',0),(16599,2526,0,0,5572,'2025-12-08','00:00:00',943,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6140,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 18:38:02','reception','2025-12-08 18:39:42',0),(16600,2526,0,0,5573,'2025-12-08','00:00:00',3170,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6141,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 18:40:23','reception','2025-12-08 18:40:53',0),(16601,2526,0,0,5574,'2025-12-08','00:00:00',3755,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6142,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 18:42:07','janvi','2025-12-08 18:42:47',0),(16602,2526,0,0,5575,'2025-12-08','00:00:00',3194,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6143,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 18:42:54','manshi','2025-12-08 18:43:23',0),(16603,2526,0,0,5576,'2025-12-08','00:00:00',3756,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 18:44:36','reception','2025-12-08 06:14:36',0),(16604,2526,0,0,5577,'2025-12-08','00:00:00',3757,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6146,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 18:44:56','drashti','2025-12-08 18:46:21',0),(16605,2526,0,0,5578,'2025-12-08','00:00:00',3758,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6145,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 18:46:01','reception','2025-12-08 18:46:16',0),(16606,2526,0,0,5579,'2025-12-08','00:00:00',1464,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6147,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 18:51:35','reception','2025-12-08 18:52:11',0),(16607,2526,0,0,5580,'2025-12-08','00:00:00',3759,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6148,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 18:51:54','drashti','2025-12-08 19:09:26',0),(16608,2526,0,0,5581,'2025-12-08','00:00:00',89,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6149,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 18:52:49','reception','2025-12-08 18:53:13',0),(16609,2526,0,0,5582,'2025-12-08','18:56:05',2711,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6151,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 18:56:05','janvi','2025-12-08 18:56:05',0),(16610,2526,0,0,5583,'2025-12-08','18:00:00',0,261,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',267,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 18:56:38','riya','2025-12-09 19:01:27',0),(16611,2526,0,0,5583,'2025-12-08','18:00:00',0,261,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',267,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 18:56:38','riya','2025-12-09 19:01:27',0),(16612,2526,0,0,5583,'2025-12-08','18:00:00',0,261,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 06:26:38','riya','2025-12-09 19:01:27',0),(16613,2526,0,0,5583,'2025-12-08','18:00:00',0,261,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 06:26:38','riya','2025-12-09 19:01:27',0),(16614,2526,0,0,5583,'2025-12-08','18:00:00',0,261,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 06:26:38','riya','2025-12-09 19:01:27',0),(16615,2526,0,0,5583,'2025-12-08','18:00:00',0,261,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','412','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 06:26:38','riya','2025-12-10 16:23:29',0),(16616,2526,0,0,5583,'2025-12-08','18:00:00',0,261,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 06:26:38','riya','2025-12-09 19:01:27',0),(16617,2526,0,0,5568,'2025-12-08','18:56:43',995,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6152,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 18:56:43','reception','2025-12-08 18:56:43',0),(16618,2526,0,0,5584,'2025-12-08','19:00:12',1288,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6153,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 19:00:12','drashti','2025-12-08 19:00:12',0),(16619,2526,0,0,5559,'2025-12-08','19:01:59',3332,0,'OPWD','OPWD0023','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6154,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 19:01:59','manshi','2025-12-08 19:01:59',0),(16620,2526,0,0,5586,'2025-12-08','00:00:00',3329,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6155,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 19:05:59','drashti','2025-12-08 19:06:41',0),(16621,2526,0,0,5570,'2025-12-08','19:06:46',3754,0,'XRY','XRY0390','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',6156,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 19:06:46','manshi','2025-12-08 19:06:46',0),(16622,2526,0,0,5587,'2025-12-08','00:00:00',2607,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6158,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 19:10:35','reception','2025-12-08 19:10:51',0),(16623,2526,0,0,5588,'2025-12-08','18:45:00',3730,262,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',249,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 19:14:51','riya','2025-12-09 16:29:19',0),(16624,2526,0,0,5588,'2025-12-08','18:45:00',3730,262,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',249,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 19:14:51','riya','2025-12-09 16:29:19',0),(16625,2526,0,0,5588,'2025-12-08','18:45:00',3730,262,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',249,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 06:44:51','riya','2025-12-09 16:29:19',0),(16626,2526,0,0,5588,'2025-12-08','18:45:00',3730,262,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',249,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 06:44:51','riya','2025-12-09 16:29:19',0),(16627,2526,0,0,5588,'2025-12-08','18:45:00',3730,262,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',249,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 06:44:51','riya','2025-12-09 16:29:19',0),(16628,2526,0,0,5588,'2025-12-08','18:45:00',3730,262,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 06:44:51','riya','2025-12-09 16:29:19',0),(16629,2526,0,0,5588,'2025-12-08','18:45:00',3730,262,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',249,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 06:44:51','riya','2025-12-09 16:29:19',0),(16630,2526,0,0,5589,'2025-12-08','00:00:00',3760,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6163,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 19:15:19','drashti','2025-12-08 19:31:55',0),(16631,2526,0,0,5590,'2025-12-08','00:00:00',1602,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 19:16:16','janvi','2025-12-08 06:46:16',0),(16632,2526,0,0,5591,'2025-12-08','00:00:00',3761,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6159,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 19:18:03','janvi','2025-12-08 19:19:23',0),(16633,2526,0,0,5592,'2025-12-08','00:00:00',2030,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 19:20:33','manshi','2025-12-08 06:50:33',0),(16634,2526,0,0,4694,'2025-12-08','17:00:00',0,222,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 06:52:28','vishal','2025-12-08 20:06:55',0),(16635,2526,0,0,4694,'2025-12-08','17:00:00',0,222,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 06:52:28','vishal','2025-12-08 20:06:55',0),(16636,2526,0,0,4694,'2025-12-08','17:00:00',0,222,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',262,65,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 06:52:28','vishal','2025-12-08 20:06:55',0),(16637,2526,0,0,4694,'2025-12-08','17:00:00',0,222,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','405','','','',2526,'H','I',262,66,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 06:52:28','vishal','2025-12-08 20:06:55',0),(16638,2526,0,0,4694,'2025-12-08','17:00:00',0,222,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 06:52:28','vishal','2025-12-08 20:06:55',0),(16639,2526,0,0,5593,'2025-12-08','00:00:00',3762,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6161,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 19:24:04','manshi','2025-12-08 19:26:07',0),(16640,2526,0,0,5594,'2025-12-08','00:00:00',2261,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6160,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 19:24:27','reception','2025-12-08 19:24:41',0),(16641,2526,0,0,5595,'2025-12-08','00:00:00',3763,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6162,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 19:28:45','manshi','2025-12-08 19:29:28',0),(16642,2526,0,0,5596,'2025-12-08','19:33:23',3525,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6164,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 19:33:23','janvi','2025-12-08 19:33:23',0),(16643,2526,0,0,5597,'2025-12-08','19:39:11',3310,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6165,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 19:39:11','janvi','2025-12-08 19:39:11',0),(16644,2526,0,0,5598,'2025-12-08','00:00:00',2659,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6166,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 19:46:15','drashti','2025-12-08 19:46:52',0),(16645,2526,0,0,5599,'2025-12-08','00:00:00',3242,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-08 19:52:17','janvi','2025-12-08 07:22:17',0),(16646,2526,0,0,5593,'2025-12-08','19:53:49',3762,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',6167,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-08 19:53:49','manshi','2025-12-08 19:53:49',0),(16647,2526,0,0,5425,'2025-12-08','16:30:00',0,255,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 07:33:00','riya','2025-12-09 18:57:19',0),(16648,2526,0,0,5425,'2025-12-08','16:30:00',0,255,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 07:33:00','riya','2025-12-09 18:57:19',0),(16649,2526,0,0,5425,'2025-12-08','16:30:00',0,255,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 07:33:00','riya','2025-12-09 18:57:19',0),(16650,2526,0,0,5425,'2025-12-08','16:30:00',0,255,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 07:33:00','riya','2025-12-09 18:57:19',0),(16651,2526,0,0,5425,'2025-12-08','16:30:00',0,255,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 07:33:00','riya','2025-12-09 18:57:19',0),(16652,2526,0,0,4694,'2025-12-08','20:06:00',0,222,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,67,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 20:06:55','','0000-00-00 00:00:00',0),(16653,2526,0,0,4694,'2025-12-08','20:06:00',0,222,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,68,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 20:06:55','','0000-00-00 00:00:00',0),(16654,2526,0,0,4694,'2025-12-08','20:06:00',0,222,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,69,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 20:06:55','','0000-00-00 00:00:00',0),(16655,2526,0,0,1369,'2025-10-26','20:11:00',0,87,'OETR','OETR0004','H','N',1.00,86705,86705,'P',0,0,0.00,0.00,86705.00,86705,9999,0,0,'',0,0,'','','','','',2526,'H','I',231,20,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 20:12:55','','0000-00-00 00:00:00',0),(16656,2526,0,0,5600,'2025-12-08','00:00:00',3764,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',6168,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-08 20:14:14','reception','2025-12-08 20:14:36',0),(16657,2526,0,0,1443,'2025-10-27','20:13:00',1149,92,'OETR','OETR0004','H','N',1.00,109219,109219,'P',0,0,0.00,0.00,109219.00,109219,9999,0,0,'',0,0,'','','','','',2526,'H','I',232,20,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 20:14:30','','0000-00-00 00:00:00',0),(16658,2526,0,0,2395,'2025-11-06','20:14:00',0,129,'OETR','OETR0004','H','N',1.00,198275,198275,'P',0,0,0.00,0.00,198275.00,198275,9999,0,0,'',0,0,'','','','','',2526,'H','I',233,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 20:16:04','','0000-00-00 00:00:00',0),(16659,2526,0,0,2825,'2025-11-11','20:16:00',0,144,'OETR','OETR0004','H','N',1.00,72891,72891,'P',0,0,0.00,0.00,72891.00,72891,9999,0,0,'',0,0,'','','','','',2526,'H','I',234,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 20:17:35','','0000-00-00 00:00:00',0),(16660,2526,0,0,687,'2025-10-15','20:17:00',482,54,'OETR','OETR0004','H','N',1.00,39313,39313,'P',0,0,0.00,0.00,39313.00,39313,9999,0,0,'',0,0,'','','','','',2526,'H','I',235,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 20:19:07','','0000-00-00 00:00:00',0),(16661,2526,0,0,5601,'2025-12-08','00:00:00',3765,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 20:19:29','drashti','2025-12-08 07:49:29',0),(16662,2526,0,0,2556,'2025-11-07','20:19:00',0,132,'OETR','OETR0004','H','N',1.00,51567,51567,'P',0,0,0.00,0.00,51567.00,51567,9999,0,0,'',0,0,'','','','','',2526,'H','I',236,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 20:20:19','','0000-00-00 00:00:00',0),(16663,2526,0,0,5601,'2025-12-08','20:21:36',3765,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',6169,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 20:21:35','drashti','2025-12-08 20:21:35',0),(16664,2526,0,0,5601,'2025-12-08','20:21:36',3765,0,'XRY','XRY0449','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',6169,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 20:21:35','drashti','2025-12-08 20:21:35',0),(16665,2526,0,0,5601,'2025-12-08','20:21:36',3765,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',6169,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-08 20:21:35','drashti','2025-12-08 20:21:35',0),(16666,2526,0,0,5338,'2025-12-08','20:30:00',0,253,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 08:25:43','vishal','2025-12-08 20:59:15',0),(16667,2526,0,0,5338,'2025-12-08','20:30:00',0,253,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 08:25:43','vishal','2025-12-08 20:59:15',0),(16668,2526,0,0,5338,'2025-12-08','20:30:00',0,253,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',2526,'H','I',237,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 08:25:43','vishal','2025-12-08 20:59:15',0),(16669,2526,0,0,5338,'2025-12-08','20:30:00',0,253,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',2526,'H','I',237,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 08:25:43','vishal','2025-12-08 20:59:15',0),(16670,2526,0,0,5338,'2025-12-08','20:30:00',0,253,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 08:25:43','vishal','2025-12-08 20:59:15',0),(16671,2526,0,0,5601,'2025-12-08','20:59:04',3765,0,'WPRC','WPRC0046','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6170,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-08 20:59:04','shweta','2025-12-08 20:59:04',0),(16672,2526,0,0,5338,'2025-12-05','21:04:00',0,253,'DRC','DRC0021','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,4,0,0,'',0,0,'','','','','',2526,'H','I',237,27,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:05:18','','0000-00-00 00:00:00',0),(16673,2526,0,0,5602,'2025-12-09','00:00:00',3766,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 08:56:30','reception','2025-12-08 20:26:30',0),(16674,2526,0,0,5602,'2025-12-09','08:57:44',3766,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',6171,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 08:57:44','reception','2025-12-09 08:57:44',0),(16675,2526,0,0,5602,'2025-12-09','08:57:44',3766,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6171,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 08:57:44','reception','2025-12-09 08:57:44',0),(16676,2526,0,0,5602,'2025-12-09','08:57:44',3766,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6171,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 08:57:44','reception','2025-12-09 08:57:44',0),(16677,2526,0,0,5603,'2025-12-09','01:00:00',0,263,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',246,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 09:23:24','riya','2025-12-10 17:24:13',0),(16678,2526,0,0,5603,'2025-12-09','01:00:00',0,263,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',246,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 09:23:24','riya','2025-12-10 17:24:13',0),(16679,2526,0,0,5603,'2025-12-09','01:00:00',0,263,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',246,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 20:53:24','riya','2025-12-10 17:24:13',0),(16680,2526,0,0,5603,'2025-12-09','01:00:00',0,263,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',246,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 20:53:24','riya','2025-12-10 17:24:13',0),(16681,2526,0,0,5603,'2025-12-09','01:00:00',0,263,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',246,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 20:53:24','riya','2025-12-10 17:24:13',0),(16682,2526,0,0,5603,'2025-12-09','01:00:00',0,263,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','207','','','',2526,'H','I',246,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 20:53:24','riya','2025-12-10 17:24:13',0),(16683,2526,0,0,5603,'2025-12-09','01:00:00',0,263,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','207','','','',2526,'H','I',246,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 20:53:24','riya','2025-12-10 17:24:13',0),(16684,2526,0,0,5604,'2025-12-08','22:15:00',594,264,'REG','REG0001','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',239,7,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 09:33:35','vishal','2025-12-09 13:09:09',0),(16685,2526,0,0,5604,'2025-12-08','22:15:00',594,264,'REG','REG0002','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',239,8,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 09:33:35','vishal','2025-12-09 13:09:09',0),(16686,2526,0,0,5604,'2025-12-08','22:15:00',594,264,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',239,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:03:35','vishal','2025-12-09 13:09:09',0),(16687,2526,0,0,5604,'2025-12-08','22:15:00',594,264,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',239,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:03:35','vishal','2025-12-09 13:09:09',0),(16688,2526,0,0,5604,'2025-12-08','22:15:00',594,264,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',239,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:03:35','vishal','2025-12-09 13:09:09',0),(16689,2526,0,0,5604,'2025-12-08','22:15:00',594,264,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','207','','','',2526,'H','I',239,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:03:35','vishal','2025-12-09 13:09:09',0),(16690,2526,0,0,5604,'2025-12-08','22:15:00',594,264,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:03:35','vishal','2025-12-09 12:56:45',0),(16691,2526,0,0,5605,'2025-12-09','00:00:00',351,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6172,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 09:50:22','reception','2025-12-09 09:51:21',0),(16692,2526,0,0,5606,'2025-12-09','09:55:09',3718,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6173,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 09:55:09','reception','2025-12-09 09:55:09',0),(16693,2526,0,0,5606,'2025-12-09','09:55:09',3718,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6173,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 09:55:09','reception','2025-12-09 09:55:09',0),(16694,2526,0,0,5606,'2025-12-09','09:55:09',3718,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6173,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 09:55:09','reception','2025-12-09 09:55:09',0),(16695,2526,0,0,5607,'2025-12-09','00:00:00',3767,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 10:03:50','reception','2025-12-08 21:33:50',0),(16696,2526,0,0,5607,'2025-12-09','10:04:20',3767,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',6174,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 10:04:20','reception','2025-12-09 10:04:20',0),(16697,2526,0,0,5609,'2025-12-09','00:00:00',3768,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6175,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 10:05:50','reception','2025-12-09 10:06:20',0),(16698,2526,0,0,5608,'2025-12-09','10:06:25',3720,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6176,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 10:06:25','janvi','2025-12-09 10:06:25',0),(16699,2526,0,0,5175,'2025-12-08','17:00:00',0,247,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',238,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:37:41','vishal','2025-12-09 10:12:30',0),(16700,2526,0,0,5175,'2025-12-08','17:00:00',0,247,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',238,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:37:41','vishal','2025-12-09 10:12:30',0),(16701,2526,0,0,5175,'2025-12-08','17:00:00',0,247,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','411','','','',2526,'H','I',238,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:37:41','vishal','2025-12-09 10:13:19',0),(16702,2526,0,0,5175,'2025-12-08','17:00:00',0,247,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','411','','','',2526,'H','I',238,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:37:41','vishal','2025-12-09 10:13:19',0),(16703,2526,0,0,5175,'2025-12-08','17:00:00',0,247,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',238,36,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:37:41','vishal','2025-12-09 10:37:12',0),(16704,2526,0,0,5610,'2025-12-09','00:00:00',3769,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6177,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 10:09:47','reception','2025-12-09 10:10:31',0),(16705,2526,0,0,5611,'2025-12-09','00:00:00',2913,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6178,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-09 10:10:43','manshi','2025-12-09 10:10:53',0),(16706,2526,0,0,5612,'2025-12-09','00:00:00',2628,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6179,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 10:11:03','reception','2025-12-09 10:11:28',0),(16707,2526,0,0,5175,'2025-12-09','10:10:00',0,247,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',238,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 10:12:30','','0000-00-00 00:00:00',0),(16708,2526,0,0,5175,'2025-12-08','10:10:00',0,247,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,42,0,0,'',0,0,'','','','','',2526,'H','I',238,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 10:12:30','','0000-00-00 00:00:00',0),(16709,2526,0,0,5175,'2025-12-08','10:11:00',0,247,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',238,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 10:12:30','','0000-00-00 00:00:00',0),(16710,2526,0,0,5175,'2025-12-09','10:11:00',0,247,'WPRC','WPRC0089','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',238,38,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 10:12:30','vishal','2025-12-09 10:37:12',0),(16711,2526,0,0,5613,'2025-12-09','00:00:00',3243,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6180,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 10:12:55','reception','2025-12-09 11:40:41',0),(16712,2526,0,0,5614,'2025-12-09','00:00:00',3770,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6181,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 10:14:01','reception','2025-12-09 10:14:37',0),(16713,2526,0,0,5615,'2025-12-09','00:00:00',3771,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6182,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 10:15:56','drashti','2025-12-09 10:17:03',0),(16714,2526,0,0,5616,'2025-12-09','00:00:00',3772,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6183,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 10:15:57','reception','2025-12-09 10:17:22',0),(16715,2526,0,0,4017,'2025-12-08','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,170,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:57','vishal','2025-12-09 10:19:05',0),(16716,2526,0,0,4017,'2025-12-08','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,171,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:57','vishal','2025-12-09 10:19:05',0),(16717,2526,0,0,4017,'2025-12-08','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,172,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:57','vishal','2025-12-09 10:19:05',0),(16718,2526,0,0,4017,'2025-12-08','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,173,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:57','vishal','2025-12-09 10:19:05',0),(16719,2526,0,0,4017,'2025-12-08','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,174,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:57','vishal','2025-12-21 11:20:51',0),(16720,2526,0,0,5120,'2025-12-09','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','riya','2025-12-09 16:36:28',0),(16721,2526,0,0,5120,'2025-12-09','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','riya','2025-12-09 16:36:28',0),(16722,2526,0,0,5120,'2025-12-09','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','riya','2025-12-09 16:36:28',0),(16723,2526,0,0,5120,'2025-12-09','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','riya','2025-12-09 16:36:28',0),(16724,2526,0,0,5120,'2025-12-09','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','vishal','2025-12-11 18:53:42',0),(16725,2526,0,0,5163,'2025-12-08','15:00:00',0,245,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','riya','2025-12-09 19:00:35',0),(16726,2526,0,0,5163,'2025-12-08','15:00:00',0,245,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','riya','2025-12-09 19:00:35',0),(16727,2526,0,0,5163,'2025-12-08','15:00:00',0,245,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','riya','2025-12-09 19:00:35',0),(16728,2526,0,0,5163,'2025-12-08','15:00:00',0,245,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','riya','2025-12-09 19:00:35',0),(16729,2526,0,0,5163,'2025-12-08','15:00:00',0,245,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','riya','2025-12-09 19:00:35',0),(16730,2526,0,0,5307,'2025-12-08','17:30:00',0,250,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','riya','2025-12-09 18:55:09',0),(16731,2526,0,0,5307,'2025-12-08','17:30:00',0,250,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','riya','2025-12-09 18:55:09',0),(16732,2526,0,0,5307,'2025-12-08','17:30:00',0,250,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','402','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','riya','2025-12-11 13:43:27',0),(16733,2526,0,0,5307,'2025-12-08','17:30:00',0,250,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','402','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','riya','2025-12-09 18:55:09',0),(16734,2526,0,0,5307,'2025-12-08','17:30:00',0,250,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','riya','2025-12-09 18:55:09',0),(16735,2526,0,0,5316,'2025-12-08','17:30:00',0,251,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','riya','2025-12-09 19:10:25',0),(16736,2526,0,0,5316,'2025-12-08','17:30:00',0,251,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','riya','2025-12-09 19:10:25',0),(16737,2526,0,0,5316,'2025-12-08','17:30:00',0,251,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','407','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','riya','2025-12-09 19:10:25',0),(16738,2526,0,0,5316,'2025-12-08','17:30:00',0,251,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','407','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:46:59','riya','2025-12-09 19:10:25',0),(16739,2526,0,0,5316,'2025-12-08','17:30:00',0,251,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:47:00','riya','2025-12-09 19:10:25',0),(16740,2526,0,0,5426,'2025-12-08','23:30:00',0,256,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',247,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:47:00','riya','2025-12-09 16:42:41',0),(16741,2526,0,0,5426,'2025-12-08','23:30:00',0,256,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',247,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:47:00','riya','2025-12-09 16:42:41',0),(16742,2526,0,0,5426,'2025-12-08','23:30:00',0,256,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','I',247,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:47:00','riya','2025-12-09 16:42:41',0),(16743,2526,0,0,5426,'2025-12-08','23:30:00',0,256,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','I',247,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:47:00','riya','2025-12-09 16:42:41',0),(16744,2526,0,0,5426,'2025-12-08','23:30:00',0,256,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',247,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:47:00','riya','2025-12-09 16:42:41',0),(16745,2526,0,0,5443,'2025-12-09','09:30:00',0,257,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:47:00','vishal','2025-12-09 13:37:37',0),(16746,2526,0,0,5443,'2025-12-09','09:30:00',0,257,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:47:00','vishal','2025-12-09 13:37:37',0),(16747,2526,0,0,5443,'2025-12-09','09:30:00',0,257,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:47:00','vishal','2025-12-09 13:37:37',0),(16748,2526,0,0,5443,'2025-12-09','09:30:00',0,257,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',240,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:47:00','vishal','2025-12-09 13:47:45',0),(16749,2526,0,0,5443,'2025-12-09','09:30:00',0,257,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:47:00','vishal','2025-12-09 13:37:37',0),(16750,2526,0,0,5445,'2025-12-09','03:30:00',0,258,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',0,'','',0,21,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:47:00','vishal','2025-12-09 11:15:32',0),(16751,2526,0,0,5445,'2025-12-09','03:30:00',0,258,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',0,'','',0,20,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:47:00','vishal','2025-12-09 11:15:32',0),(16752,2526,0,0,5445,'2025-12-09','03:30:00',0,258,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',0,'','',0,19,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:47:00','vishal','2025-12-09 11:15:32',0),(16753,2526,0,0,5445,'2025-12-09','03:30:00',0,258,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','211','','','',2526,'H','I',250,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:47:00','vishal','2025-12-09 11:15:32',0),(16754,2526,0,0,5445,'2025-12-09','03:30:00',0,258,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',250,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-08 21:47:00','vishal','2025-12-09 11:11:59',0),(16755,2526,0,0,4017,'2025-12-09','10:17:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,175,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 10:19:05','','0000-00-00 00:00:00',0),(16756,2526,0,0,4017,'2025-12-09','10:17:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,176,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 10:19:05','','0000-00-00 00:00:00',0),(16757,2526,0,0,4017,'2025-12-09','10:18:00',0,187,'WPRC','WPRC0089','H','N',7.00,100,700,'P',0,0,0.00,0.00,700.00,700,9999,0,0,'',0,0,'','','','','',0,'','',0,177,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 10:19:05','riya','2025-12-09 16:49:01',0),(16758,2526,0,0,4017,'2025-12-09','10:18:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,178,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 10:19:05','','0000-00-00 00:00:00',0),(16759,2526,0,0,4017,'2025-12-09','10:18:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,179,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 10:19:05','','0000-00-00 00:00:00',0),(16760,2526,0,0,5617,'2025-12-09','00:00:00',3773,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6184,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 10:19:06','reception','2025-12-09 10:19:36',0),(16761,2526,0,0,5618,'2025-12-09','00:00:00',865,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',6185,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 10:26:28','reception','2025-12-09 10:26:42',0),(16762,2526,0,0,5619,'2025-12-09','00:00:00',3774,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6186,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 10:28:45','reception','2025-12-09 10:29:16',0),(16763,2526,0,0,5620,'2025-12-09','00:00:00',3775,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6187,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 10:34:31','drashti','2025-12-09 10:35:33',0),(16764,2526,0,0,5175,'2025-12-04','10:36:00',0,247,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 10:37:00','vishal','2025-12-09 10:37:12',0),(16765,2526,0,0,5622,'2025-12-09','00:00:00',3776,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6188,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 10:41:43','reception','2025-12-09 10:42:06',0),(16766,2526,0,0,5623,'2025-12-09','00:00:00',2392,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',6189,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 10:42:57','reception','2025-12-09 10:44:20',0),(16767,2526,0,0,5625,'2025-12-09','00:00:00',273,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6190,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 10:47:29','reception','2025-12-09 10:47:52',0),(16768,2526,0,0,5626,'2025-12-09','00:00:00',3777,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6191,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 10:50:29','reception','2025-12-09 10:50:59',0),(16769,2526,0,0,5627,'2025-12-09','00:00:00',3778,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6192,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 10:51:33','drashti','2025-12-09 10:51:56',0),(16770,2526,0,0,5628,'2025-12-09','00:00:00',3779,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6193,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-09 10:52:03','manshi','2025-12-09 10:52:19',0),(16771,2526,0,0,5629,'2025-12-09','00:00:00',3780,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6194,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 10:52:49','reception','2025-12-09 10:53:16',0),(16772,2526,0,0,5630,'2025-12-09','00:00:00',3781,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6195,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 10:57:47','reception','2025-12-09 10:58:04',0),(16773,2526,0,0,5631,'2025-12-09','00:00:00',3782,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6196,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 10:57:53','drashti','2025-12-09 10:59:29',0),(16774,2526,0,0,5632,'2025-12-09','00:00:00',3783,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6197,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 10:59:38','reception','2025-12-09 10:59:54',0),(16775,2526,0,0,5633,'2025-12-09','00:00:00',3784,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6199,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 11:01:15','drashti','2025-12-09 11:03:14',0),(16776,2526,0,0,5634,'2025-12-09','00:00:00',3785,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6198,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 11:01:17','reception','2025-12-09 11:01:34',0),(16777,2526,0,0,5635,'2025-12-09','00:00:00',489,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',6201,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-09 11:04:28','manshi','2025-12-09 11:04:50',0),(16778,2526,0,0,5605,'2025-12-09','11:04:28',351,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6200,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 11:04:28','reception','2025-12-09 11:04:28',0),(16779,2526,0,0,5636,'2025-12-09','00:00:00',3786,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6202,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 11:05:42','drashti','2025-12-09 11:06:24',0),(16780,2526,0,0,5637,'2025-12-09','00:00:00',294,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6203,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 11:06:37','reception','2025-12-09 11:06:52',0),(16781,2526,0,0,5638,'2025-12-09','00:00:00',2874,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 11:07:39','janvi','2025-12-08 22:37:39',0),(16782,2526,0,0,5445,'2025-12-08','11:08:00',0,258,'ROOM','ROOM0008','H','N',4.00,100,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 11:11:35','vishal','2025-12-09 11:11:59',0),(16783,2526,0,0,5445,'2025-12-08','11:08:00',0,258,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 11:11:35','vishal','2025-12-09 11:11:59',0),(16784,2526,0,0,5445,'2025-12-08','11:09:00',0,258,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 11:11:35','vishal','2025-12-09 11:11:59',0),(16785,2526,0,0,5445,'2025-12-08','11:09:00',0,258,'WPRC','WPRC0097','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 11:11:35','vishal','2025-12-09 11:11:59',0),(16786,2526,0,0,5445,'2025-12-09','11:09:00',0,258,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 11:11:35','','0000-00-00 00:00:00',0),(16787,2526,0,0,5445,'2025-12-08','11:10:00',0,258,'WPRC','WPRC0101','H','N',5.00,400,2000,'A',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 11:11:35','vishal','2025-12-09 11:11:59',0),(16788,2526,0,0,5445,'2025-12-08','11:10:00',0,258,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 11:11:35','','0000-00-00 00:00:00',0),(16789,2526,0,0,5445,'2025-12-08','11:10:00',0,258,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 11:11:35','','0000-00-00 00:00:00',0),(16790,2526,0,0,5445,'2025-12-09','11:10:00',0,258,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 11:11:35','','0000-00-00 00:00:00',0),(16791,2526,0,0,5445,'2025-12-08','11:11:00',0,258,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 11:11:35','','0000-00-00 00:00:00',0),(16792,2526,0,0,5445,'2025-12-09','11:11:00',0,258,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 11:11:35','','0000-00-00 00:00:00',0),(16793,2526,0,0,5445,'2025-12-09','11:14:00',0,258,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 11:15:32','','0000-00-00 00:00:00',0),(16794,2526,0,0,5445,'2025-12-09','11:15:00',0,258,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 11:15:32','','0000-00-00 00:00:00',0),(16795,2526,0,0,5445,'2025-12-09','11:15:00',0,258,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 11:15:32','','0000-00-00 00:00:00',0),(16796,2526,0,0,5639,'2025-12-09','00:00:00',3787,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6204,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 11:17:05','drashti','2025-12-09 11:17:55',0),(16797,2526,0,0,5640,'2025-12-09','00:00:00',3788,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6205,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-09 11:18:12','manshi','2025-12-09 11:37:27',0),(16798,2526,0,0,5622,'2025-12-09','11:21:35',3776,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6206,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 11:21:35','reception','2025-12-09 11:21:35',0),(16799,2526,0,0,5622,'2025-12-09','11:21:35',3776,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6206,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 11:21:35','reception','2025-12-09 11:21:35',0),(16800,2526,0,0,5622,'2025-12-09','11:21:35',3776,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6206,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 11:21:35','reception','2025-12-09 11:21:35',0),(16801,2526,0,0,5641,'2025-12-09','00:00:00',3789,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6207,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 11:25:31','reception','2025-12-09 11:27:09',0),(16802,2526,0,0,5642,'2025-12-09','00:00:00',156,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6208,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 11:27:43','reception','2025-12-09 11:28:09',0),(16803,2526,0,0,5631,'2025-12-09','11:30:45',3782,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',6209,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 11:30:45','janvi','2025-12-09 11:30:45',0),(16804,2526,0,0,5640,'2025-12-09','11:36:55',3788,0,'XRY','XRY0390','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6210,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-09 11:36:55','manshi','2025-12-09 11:36:55',0),(16805,2526,0,0,5609,'2025-12-09','11:38:20',3768,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6212,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 11:38:20','reception','2025-12-09 11:38:20',0),(16806,2526,0,0,5609,'2025-12-09','11:38:20',3768,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6212,2,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 11:38:20','reception','2025-12-09 11:38:20',0),(16807,2526,0,0,5609,'2025-12-09','11:38:20',3768,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6212,3,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 11:38:20','reception','2025-12-09 11:38:20',0),(16808,2526,0,0,5609,'2025-12-09','11:38:20',3768,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6212,4,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 11:38:20','reception','2025-12-09 11:38:20',0),(16809,2526,0,0,5640,'2025-12-09','11:38:45',3788,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6213,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-09 11:38:45','manshi','2025-12-09 11:38:45',0),(16810,2526,0,0,5643,'2025-12-09','00:00:00',2645,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6215,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-09 11:43:29','manshi','2025-12-09 11:44:30',0),(16811,2526,0,0,5644,'2025-12-09','00:00:00',3790,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 11:45:42','drashti','2025-12-08 23:15:42',0),(16812,2526,0,0,5645,'2025-12-09','00:00:00',3791,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6217,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 11:47:16','janvi','2025-12-09 11:48:06',0),(16813,2526,0,0,5644,'2025-12-09','11:47:51',3790,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',6216,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 11:47:51','drashti','2025-12-09 11:47:51',0),(16814,2526,0,0,5644,'2025-12-09','11:47:51',3790,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6216,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 11:47:51','drashti','2025-12-09 11:47:51',0),(16815,2526,0,0,5644,'2025-12-09','11:47:51',3790,0,'OPWD','OPWD0019','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',6216,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 11:47:51','drashti','2025-12-09 11:47:51',0),(16816,2526,0,0,5644,'2025-12-09','11:47:51',3790,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6216,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 11:47:51','drashti','2025-12-09 11:47:51',0),(16817,2526,0,0,5639,'2025-12-09','11:50:02',3787,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6218,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 11:50:02','drashti','2025-12-09 11:50:02',0),(16818,2526,0,0,5646,'2025-12-09','00:00:00',3792,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6219,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 11:50:21','reception','2025-12-09 11:51:37',0),(16819,2526,0,0,5647,'2025-12-09','00:00:00',3793,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',6220,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 11:56:23','janvi','2025-12-09 11:57:08',0),(16820,2526,0,0,5648,'2025-12-09','00:00:00',3794,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6221,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 11:56:42','reception','2025-12-09 11:58:17',0),(16821,2526,0,0,5649,'2025-12-09','00:00:00',1168,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6222,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 11:59:20','janvi','2025-12-09 11:59:50',0),(16822,2526,0,0,5650,'2025-12-09','00:00:00',3795,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',6223,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 11:59:44','reception','2025-12-09 12:00:15',0),(16823,2526,0,0,5627,'2025-12-09','12:01:35',3778,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6224,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 12:01:35','reception','2025-12-09 12:01:35',0),(16824,2526,0,0,5627,'2025-12-09','12:01:35',3778,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6224,2,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 12:01:35','reception','2025-12-09 12:01:35',0),(16825,2526,0,0,5627,'2025-12-09','12:01:35',3778,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6224,3,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 12:01:35','reception','2025-12-09 12:01:35',0),(16826,2526,0,0,5627,'2025-12-09','12:01:35',3778,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6224,4,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 12:01:35','reception','2025-12-09 12:01:35',0),(16827,2526,0,0,5651,'2025-12-09','00:00:00',3174,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6225,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 12:01:40','janvi','2025-12-09 12:02:47',0),(16828,2526,0,0,5614,'2025-12-09','12:07:53',3770,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6226,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 12:07:53','reception','2025-12-09 12:07:53',0),(16829,2526,0,0,5614,'2025-12-09','12:07:53',3770,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6226,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 12:07:53','reception','2025-12-09 12:07:53',0),(16830,2526,0,0,5652,'2025-12-09','00:00:00',3796,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6227,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 12:16:07','reception','2025-12-09 12:16:39',0),(16831,2526,0,0,5624,'2025-12-09','12:18:00',3593,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6228,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 12:18:00','drashti','2025-12-09 12:18:00',0),(16832,2526,0,0,5624,'2025-12-09','12:18:02',3593,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6229,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 12:18:02','janvi','2025-12-09 12:32:14',0),(16833,2526,0,0,5638,'2025-12-09','12:21:50',2874,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6230,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 12:21:50','janvi','2025-12-09 12:21:50',0),(16834,2526,0,0,5653,'2025-12-09','00:00:00',2603,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6232,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-09 12:27:09','manshi','2025-12-09 12:29:38',0),(16835,2526,0,0,5654,'2025-12-09','00:00:00',3797,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6231,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-09 12:28:04','manshi','2025-12-09 12:29:23',0),(16836,2526,0,0,5655,'2025-12-09','00:00:00',3798,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6234,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 12:32:17','drashti','2025-12-09 12:32:46',0),(16837,2526,0,0,5617,'2025-12-09','12:35:16',3773,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6235,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 12:35:16','reception','2025-12-09 12:35:16',0),(16838,2526,0,0,5617,'2025-12-09','12:35:16',3773,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6235,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 12:35:16','reception','2025-12-09 12:35:16',0),(16839,2526,0,0,5656,'2025-12-09','00:00:00',2606,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6236,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 12:46:19','drashti','2025-12-09 12:46:54',0),(16840,2526,0,0,5657,'2025-12-09','00:00:00',1455,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 12:52:33','drashti','2025-12-09 00:22:33',0),(16841,2526,0,0,5648,'2025-12-09','12:53:44',3794,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6237,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 12:53:44','reception','2025-12-09 12:53:44',0),(16842,2526,0,0,5648,'2025-12-09','12:53:44',3794,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6237,2,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 12:53:44','reception','2025-12-09 12:53:44',0),(16843,2526,0,0,5648,'2025-12-09','12:53:44',3794,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6237,3,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 12:53:44','reception','2025-12-09 12:53:44',0),(16844,2526,0,0,5648,'2025-12-09','12:53:44',3794,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6237,4,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 12:53:44','reception','2025-12-09 12:53:44',0),(16845,2526,0,0,5521,'2025-12-09','12:30:00',0,259,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:23:52','riya','2025-12-10 16:07:39',0),(16846,2526,0,0,5521,'2025-12-09','12:30:00',0,259,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:23:52','vishal','2025-12-17 13:30:22',0),(16847,2526,0,0,5521,'2025-12-09','12:30:00',0,259,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:23:52','vishal','2025-12-17 13:30:22',0),(16848,2526,0,0,5521,'2025-12-09','12:30:00',0,259,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',2526,'H','I',290,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:23:52','riya','2025-12-10 16:07:39',0),(16849,2526,0,0,5521,'2025-12-09','12:30:00',0,259,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',2526,'H','I',290,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:23:52','vishal','2025-12-17 13:29:42',0),(16850,2526,0,0,5604,'2025-12-08','12:55:00',594,264,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',239,1,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 12:56:45','vishal','2025-12-09 13:09:09',0),(16851,2526,0,0,5604,'2025-12-08','12:55:00',594,264,'WPRC','WPRC0087','H','N',2.00,500,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',239,2,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 12:56:45','vishal','2025-12-09 13:09:09',0),(16852,2526,0,0,5604,'2025-12-09','12:55:00',594,264,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',239,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 12:56:45','','0000-00-00 00:00:00',0),(16853,2526,0,0,5604,'2025-12-08','12:55:00',594,264,'WPRC','WPRC0089','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',239,3,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 12:56:45','vishal','2025-12-09 13:09:09',0),(16854,2526,0,0,5604,'2025-12-08','12:56:00',594,264,'WPRC','WPRC0089','H','N',2.00,100,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',239,4,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 12:56:45','vishal','2025-12-09 13:09:09',0),(16855,2526,0,0,5604,'2025-12-08','12:56:00',594,264,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',239,5,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 12:56:45','vishal','2025-12-09 13:09:09',0),(16856,2526,0,0,5604,'2025-12-08','12:56:00',594,264,'ROOM','ROOM0008','H','N',2.00,100,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',239,6,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 12:56:45','vishal','2025-12-09 13:09:09',0),(16857,2526,0,0,5658,'2025-12-09','00:00:00',3799,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6238,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 12:57:32','drashti','2025-12-09 12:58:51',0),(16858,2526,0,0,5611,'2025-12-09','12:59:57',2913,0,'OPWD','OPWD0023','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6239,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-09 12:59:57','manshi','2025-12-09 12:59:57',0),(16859,2526,0,0,4688,'2025-12-09','10:30:00',0,218,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:32:49','riya','2025-12-10 12:53:02',0),(16860,2526,0,0,4688,'2025-12-09','10:30:00',0,218,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:32:49','riya','2025-12-10 12:53:02',0),(16861,2526,0,0,4688,'2025-12-09','10:30:00',0,218,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:32:49','riya','2025-12-10 12:53:02',0),(16862,2526,0,0,4688,'2025-12-09','10:30:00',0,218,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:32:49','riya','2025-12-10 12:53:02',0),(16863,2526,0,0,4688,'2025-12-09','10:30:00',0,218,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:32:49','riya','2025-12-10 12:53:02',0),(16864,2526,0,0,5527,'2025-12-09','13:00:00',0,260,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:32:51','vishal','2025-12-09 14:00:12',0),(16865,2526,0,0,5527,'2025-12-09','13:00:00',0,260,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',0,'','',0,8,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:32:51','vishal','2025-12-09 14:00:12',0),(16866,2526,0,0,5527,'2025-12-09','13:00:00',0,260,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',0,'','',0,9,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:32:51','vishal','2025-12-09 14:00:12',0),(16867,2526,0,0,5527,'2025-12-09','13:00:00',0,260,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:32:51','riya','2025-12-13 14:08:10',0),(16868,2526,0,0,5527,'2025-12-09','13:00:00',0,260,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','212','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:32:51','riya','2025-12-13 14:08:10',0),(16869,2526,0,0,5659,'2025-12-09','00:00:00',3800,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6240,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-09 13:11:50','manshi','2025-12-09 13:12:28',0),(16870,2526,0,0,5659,'2025-12-09','13:12:28',3800,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',6240,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-09 13:12:28','manshi','2025-12-09 13:12:28',0),(16871,2526,0,0,5660,'2025-12-09','13:00:00',3790,265,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',241,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 13:24:21','riya','2025-12-10 13:11:52',0),(16872,2526,0,0,5660,'2025-12-09','13:00:00',3790,265,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',241,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 13:24:21','riya','2025-12-10 13:11:52',0),(16873,2526,0,0,5660,'2025-12-09','13:00:00',3790,265,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','211','','','',2526,'H','I',241,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:54:21','riya','2025-12-10 13:11:52',0),(16874,2526,0,0,5660,'2025-12-09','13:00:00',3790,265,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','211','','','',2526,'H','I',241,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:54:21','riya','2025-12-10 13:11:52',0),(16875,2526,0,0,5660,'2025-12-09','13:00:00',3790,265,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','211','','','',2526,'H','I',241,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:54:21','riya','2025-12-10 13:11:52',0),(16876,2526,0,0,5660,'2025-12-10','13:00:00',3790,265,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',241,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:54:21','riya','2025-12-10 13:11:52',0),(16877,2526,0,0,5660,'2025-12-09','13:00:00',3790,265,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','211','','','',2526,'H','I',241,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 00:54:21','riya','2025-12-10 13:11:52',0),(16878,2526,0,0,5443,'2025-12-08','13:36:00',0,257,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',240,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 13:37:37','vishal','2025-12-09 13:47:45',0),(16879,2526,0,0,5443,'2025-12-08','13:37:00',0,257,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',240,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 13:37:37','','0000-00-00 00:00:00',0),(16880,2526,0,0,5443,'2025-12-08','13:37:00',0,257,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',240,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 13:37:37','','0000-00-00 00:00:00',0),(16881,2526,0,0,5443,'2025-12-09','13:37:00',0,257,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',240,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 13:37:37','','0000-00-00 00:00:00',0),(16882,2526,0,0,5443,'2025-12-08','13:46:00',0,257,'SURG','SURG0016','H','N',1.00,30500,30500,'P',0,0,0.00,0.00,30500.00,30500,3,0,0,'',0,0,'','','','','',2526,'H','I',240,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 13:47:45','','0000-00-00 00:00:00',0),(16883,2526,0,0,5443,'2025-12-09','13:46:00',0,257,'SURG','SURG0015','H','N',1.00,10200,10200,'P',0,0,0.00,0.00,10200.00,10200,3,0,0,'',0,0,'','','','','',2526,'H','I',240,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 13:47:45','','0000-00-00 00:00:00',0),(16884,2526,0,0,5641,'2025-12-09','13:49:43',3789,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6241,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 13:49:43','reception','2025-12-09 13:49:43',0),(16885,2526,0,0,5641,'2025-12-09','13:49:43',3789,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6241,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 13:49:43','reception','2025-12-09 13:49:43',0),(16886,2526,0,0,5641,'2025-12-09','13:49:43',3789,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6241,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 13:49:43','reception','2025-12-09 13:49:43',0),(16887,2526,0,0,5661,'2025-12-09','13:49:50',2659,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6242,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 13:49:50','drashti','2025-12-09 13:49:50',0),(16888,2526,0,0,5661,'2025-12-09','13:49:50',2659,0,'OPWD','OPWD0034','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,4,0,0,'',0,0,'','','','','',2526,'H','O',6242,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 13:49:50','drashti','2025-12-09 13:49:50',0),(16889,2526,0,0,5527,'2025-12-08','13:56:00',0,260,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',261,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 13:58:52','riya','2025-12-13 14:08:10',0),(16890,2526,0,0,5527,'2025-12-09','13:56:00',0,260,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',261,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 13:58:52','riya','2025-12-13 14:08:10',0),(16891,2526,0,0,5527,'2025-12-09','13:57:00',0,260,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',261,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 13:58:52','riya','2025-12-13 14:08:10',0),(16892,2526,0,0,5527,'2025-12-09','13:58:00',0,260,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','','','','',2526,'H','I',261,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 13:58:52','riya','2025-12-13 14:08:10',0),(16893,2526,0,0,5527,'2025-12-09','13:59:00',0,260,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',261,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 14:00:12','riya','2025-12-13 14:08:10',0),(16894,2526,0,0,5527,'2025-12-09','13:59:00',0,260,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',261,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 14:00:12','riya','2025-12-13 14:08:10',0),(16895,2526,0,0,5527,'2025-12-09','13:59:00',0,260,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',261,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-09 14:00:12','riya','2025-12-13 14:08:10',0),(16896,2526,0,0,5662,'2025-12-09','00:00:00',3801,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 14:53:29','drashti','2025-12-09 02:23:29',0),(16897,2526,0,0,5662,'2025-12-09','14:55:55',3801,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',6243,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 14:55:55','drashti','2025-12-09 14:55:55',0),(16898,2526,0,0,5662,'2025-12-09','14:55:55',3801,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6243,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 14:55:55','drashti','2025-12-09 14:55:55',0),(16899,2526,0,0,5662,'2025-12-09','14:55:55',3801,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6243,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 14:55:55','drashti','2025-12-09 14:55:55',0),(16900,2526,0,0,5662,'2025-12-09','14:55:55',3801,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',6243,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 14:55:55','drashti','2025-12-09 14:55:55',0),(16901,2526,0,0,5663,'2025-12-09','16:00:00',0,266,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:15:02','riya','2025-12-10 12:29:40',0),(16902,2526,0,0,5663,'2025-12-09','16:00:00',0,266,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:15:02','riya','2025-12-10 12:29:40',0),(16903,2526,0,0,5663,'2025-12-09','16:00:00',0,266,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',255,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 03:45:02','riya','2025-12-10 12:29:40',0),(16904,2526,0,0,5663,'2025-12-09','16:00:00',0,266,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',255,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 03:45:02','riya','2025-12-10 12:29:40',0),(16905,2526,0,0,5663,'2025-12-09','16:00:00',0,266,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',255,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 03:45:02','riya','2025-12-10 12:29:40',0),(16906,2526,0,0,5663,'2025-12-09','16:00:00',0,266,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-09 03:45:02','riya','2025-12-10 12:29:40',0),(16907,2526,0,0,5663,'2025-12-09','16:00:00',0,266,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',255,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 03:45:02','riya','2025-12-10 12:29:40',0),(16908,2526,0,0,5588,'2025-12-08','16:27:00',3730,262,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',249,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:29:19','','0000-00-00 00:00:00',0),(16909,2526,0,0,5588,'2025-12-09','16:27:00',3730,262,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',249,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:29:19','','0000-00-00 00:00:00',0),(16910,2526,0,0,5588,'2025-12-08','16:27:00',3730,262,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',249,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:29:19','','0000-00-00 00:00:00',0),(16911,2526,0,0,5588,'2025-12-08','16:27:00',3730,262,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,3,0,0,'',0,0,'','','','','',2526,'H','I',249,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:29:19','','0000-00-00 00:00:00',0),(16912,2526,0,0,5588,'2025-12-09','16:28:00',3730,262,'WPRC','WPRC0086','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',249,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:29:19','','0000-00-00 00:00:00',0),(16913,2526,0,0,5588,'2025-12-08','16:30:00',3730,262,'SURG','SURG0016','H','N',1.00,50000,50000,'P',0,0,0.00,0.00,50000.00,50000,3,0,0,'',0,0,'','','','','',2526,'H','I',249,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:31:15','riya','2025-12-09 17:54:16',0),(16914,2526,0,0,5588,'2025-12-08','16:30:00',3730,262,'SURG','SURG0015','H','N',1.00,12500,12500,'P',0,0,0.00,0.00,12500.00,12500,3,0,0,'',0,0,'','','','','',2526,'H','I',249,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:31:15','riya','2025-12-09 17:54:16',0),(16915,2526,0,0,5664,'2025-12-09','00:00:00',1544,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6244,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 16:36:05','reception','2025-12-09 16:36:26',0),(16916,2526,0,0,5120,'2025-12-09','16:32:00',0,243,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:36:28','','0000-00-00 00:00:00',0),(16917,2526,0,0,5120,'2025-12-09','16:32:00',0,243,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:36:28','','0000-00-00 00:00:00',0),(16918,2526,0,0,5120,'2025-12-09','16:33:00',0,243,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:36:28','','0000-00-00 00:00:00',0),(16919,2526,0,0,5120,'2025-12-09','16:34:00',0,243,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:36:28','','0000-00-00 00:00:00',0),(16920,2526,0,0,5120,'2025-12-08','16:35:00',0,243,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:36:28','','0000-00-00 00:00:00',0),(16921,2526,0,0,5120,'2025-12-09','16:35:00',0,243,'DRC','DRC0020','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:36:28','vishal','2025-12-11 18:53:42',0),(16922,2526,0,0,5120,'2025-12-09','16:35:00',0,243,'DRC','DRC0020','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:36:28','vishal','2025-12-22 17:54:59',0),(16923,2526,0,0,5120,'2025-12-08','16:36:00',0,243,'WPRC','WPRC0094','H','N',2.00,2625,5250,'P',0,0,0.00,0.00,5250.00,5250,4,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:39:10','riya','2025-12-09 18:21:34',0),(16924,2526,0,0,5120,'2025-12-08','16:38:00',0,243,'WPRC','WPRC0095','H','N',2.00,2625,5250,'A',0,0,0.00,0.00,5250.00,5250,4,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:39:10','vishal','2025-12-11 18:53:42',0),(16925,2526,0,0,5665,'2025-12-09','16:41:54',3781,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6245,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 16:41:53','reception','2025-12-09 16:41:53',0),(16926,2526,0,0,5665,'2025-12-09','16:41:54',3781,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6245,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 16:41:53','reception','2025-12-09 16:41:53',0),(16927,2526,0,0,5426,'2025-12-09','16:41:00',0,256,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',247,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:42:41','','0000-00-00 00:00:00',0),(16928,2526,0,0,5426,'2025-12-09','16:42:00',0,256,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,15,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:42:41','riya','2025-12-10 16:10:31',0),(16929,2526,0,0,4017,'2025-12-09','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,180,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 04:14:11','riya','2025-12-09 16:49:01',0),(16930,2526,0,0,4017,'2025-12-09','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,181,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 04:14:11','riya','2025-12-09 16:49:01',0),(16931,2526,0,0,4017,'2025-12-09','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,182,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 04:14:11','riya','2025-12-09 16:49:01',0),(16932,2526,0,0,4017,'2025-12-09','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,183,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 04:14:11','riya','2025-12-09 16:49:01',0),(16933,2526,0,0,4017,'2025-12-09','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,188,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 04:14:11','vishal','2025-12-21 11:20:51',0),(16934,2526,0,0,4017,'2025-12-08','16:44:00',0,187,'USG','USG0092','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,185,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:49:01','','0000-00-00 00:00:00',0),(16935,2526,0,0,4017,'2025-12-08','16:45:00',0,187,'WPRC','WPRC0092','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,4,0,0,'',0,0,'','','','','',0,'','',0,186,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:49:01','','0000-00-00 00:00:00',0),(16936,2526,0,0,4017,'2025-12-08','16:45:00',0,187,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,38,0,0,'',0,0,'','','','','',0,'','',0,187,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:49:01','','0000-00-00 00:00:00',0),(16937,2526,0,0,5666,'2025-12-09','16:50:48',3121,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',6246,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 16:50:48','reception','2025-12-09 16:50:48',0),(16938,2526,0,0,5667,'2025-12-09','16:53:20',3772,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6247,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 16:53:20','reception','2025-12-09 16:53:20',0),(16939,2526,0,0,5667,'2025-12-09','16:53:20',3772,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6247,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 16:53:20','reception','2025-12-09 16:53:20',0),(16940,2526,0,0,5667,'2025-12-09','16:53:20',3772,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6247,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 16:53:20','reception','2025-12-09 16:53:20',0),(16941,2526,0,0,5668,'2025-12-09','00:00:00',3802,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6250,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 16:56:24','reception','2025-12-09 17:04:09',0),(16942,2526,0,0,4694,'2025-12-09','16:52:00',0,222,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,70,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:57:25','','0000-00-00 00:00:00',0),(16943,2526,0,0,4694,'2025-12-08','16:52:00',0,222,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,71,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:57:25','','0000-00-00 00:00:00',0),(16944,2526,0,0,4694,'2025-12-08','16:53:00',0,222,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',262,72,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 16:57:25','','0000-00-00 00:00:00',0),(16945,2526,0,0,5669,'2025-12-09','17:01:18',3792,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6248,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 17:01:18','reception','2025-12-09 17:01:18',0),(16946,2526,0,0,5669,'2025-12-09','17:01:18',3792,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6248,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 17:01:18','reception','2025-12-09 17:01:18',0),(16947,2526,0,0,5669,'2025-12-09','17:01:18',3792,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6248,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 17:01:18','reception','2025-12-09 17:01:18',0),(16948,2526,0,0,4694,'2025-12-09','17:00:00',0,222,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','213','','','',0,'','',0,73,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 04:32:07','riya','2025-12-09 19:57:31',0),(16949,2526,0,0,4694,'2025-12-09','17:00:00',0,222,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','213','','','',0,'','',0,74,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 04:32:07','riya','2025-12-09 19:57:31',0),(16950,2526,0,0,4694,'2025-12-09','17:00:00',0,222,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','213','','','',2526,'H','I',262,75,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 04:32:07','riya','2025-12-09 17:02:16',0),(16951,2526,0,0,4694,'2025-12-09','17:00:00',0,222,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','213','','','',2526,'H','I',262,76,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 04:32:07','riya','2025-12-09 17:02:16',0),(16952,2526,0,0,4694,'2025-12-09','17:00:00',0,222,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','213','','','',0,'','',0,77,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 04:32:08','riya','2025-12-09 19:57:31',0),(16953,2526,0,0,5670,'2025-12-09','17:03:26',3650,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6249,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 17:03:25','reception','2025-12-09 17:03:25',0),(16954,2526,0,0,5670,'2025-12-09','17:03:26',3650,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6249,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 17:03:25','reception','2025-12-09 17:03:25',0),(16955,2526,0,0,5671,'2025-12-09','00:00:00',3803,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6251,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 17:06:29','reception','2025-12-09 17:07:13',0),(16956,2526,0,0,5672,'2025-12-09','00:00:00',3804,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6252,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 17:08:11','reception','2025-12-09 17:11:38',0),(16957,2526,0,0,5673,'2025-12-09','00:00:00',2803,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6253,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 17:12:18','reception','2025-12-09 17:12:36',0),(16958,2526,0,0,5674,'2025-12-09','00:00:00',2925,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6254,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 17:15:47','reception','2025-12-09 17:17:15',0),(16959,2526,0,0,5668,'2025-12-09','17:21:58',3802,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6255,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 17:21:58','reception','2025-12-09 17:21:58',0),(16960,2526,0,0,5668,'2025-12-09','17:21:58',3802,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6255,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 17:21:58','reception','2025-12-09 17:21:58',0),(16961,2526,0,0,5668,'2025-12-09','17:21:58',3802,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6255,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 17:21:58','reception','2025-12-09 17:21:58',0),(16962,2526,0,0,5676,'2025-12-09','00:00:00',3805,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6256,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 17:25:13','drashti','2025-12-09 17:26:17',0),(16963,2526,0,0,5677,'2025-12-09','00:00:00',3806,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6257,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 17:36:46','reception','2025-12-09 17:37:22',0),(16964,2526,0,0,5678,'2025-12-09','17:30:00',0,267,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',258,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 17:39:45','riya','2025-12-10 16:12:02',0),(16965,2526,0,0,5678,'2025-12-09','17:30:00',0,267,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',258,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 17:39:45','riya','2025-12-10 16:12:02',0),(16966,2526,0,0,5678,'2025-12-09','17:30:00',0,267,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',258,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 05:09:45','riya','2025-12-10 16:12:02',0),(16967,2526,0,0,5678,'2025-12-09','17:30:00',0,267,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',258,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 05:09:45','riya','2025-12-10 16:12:02',0),(16968,2526,0,0,5678,'2025-12-09','17:30:00',0,267,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',258,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 05:09:45','riya','2025-12-10 16:12:02',0),(16969,2526,0,0,5678,'2025-12-09','17:30:00',0,267,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','403','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-09 05:09:45','riya','2025-12-10 16:12:02',0),(16970,2526,0,0,5678,'2025-12-09','17:30:00',0,267,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','403','','','',2526,'H','I',258,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 05:09:45','riya','2025-12-10 16:12:02',0),(16971,2526,0,0,5679,'2025-12-09','00:00:00',3807,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6258,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 17:46:49','reception','2025-12-09 17:47:28',0),(16972,2526,0,0,5680,'2025-12-09','00:00:00',3808,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6259,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 17:50:37','janvi','2025-12-09 17:51:50',0),(16973,2526,0,0,5681,'2025-12-09','00:00:00',3809,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6260,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 17:53:35','janvi','2025-12-09 17:55:39',0),(16974,2526,0,0,5682,'2025-12-09','00:00:00',3324,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6261,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 17:59:27','drashti','2025-12-09 17:59:53',0),(16975,2526,0,0,5683,'2025-12-09','00:00:00',1827,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6262,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 17:59:57','reception','2025-12-09 18:00:12',0),(16976,2526,0,0,5675,'2025-12-09','18:00:32',2919,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6263,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 18:00:32','janvi','2025-12-09 18:00:32',0),(16977,2526,0,0,5684,'2025-12-09','00:00:00',2101,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6264,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 18:02:21','janvi','2025-12-09 18:02:44',0),(16978,2526,0,0,5685,'2025-12-09','00:00:00',3810,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',6265,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 18:03:29','reception','2025-12-09 18:04:12',0),(16979,2526,0,0,5686,'2025-12-09','00:00:00',3811,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6266,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 18:03:34','drashti','2025-12-09 18:04:42',0),(16980,2526,0,0,5687,'2025-12-09','00:00:00',3812,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6267,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 18:04:31','janvi','2025-12-09 18:04:50',0),(16981,2526,0,0,5688,'2025-12-09','00:00:00',3813,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6268,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 18:05:14','reception','2025-12-09 18:05:50',0),(16982,2526,0,0,5689,'2025-12-09','00:00:00',3814,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 18:06:11','janvi','2025-12-09 05:36:11',0),(16983,2526,0,0,5689,'2025-12-09','00:00:00',3814,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6269,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 18:07:56','janvi','2025-12-09 18:08:04',0),(16984,2526,0,0,5690,'2025-12-09','00:00:00',3815,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6271,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 18:13:58','drashti','2025-12-09 18:14:56',0),(16985,2526,0,0,5691,'2025-12-09','18:14:34',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6270,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 18:14:33','reception','2025-12-09 18:14:33',0),(16986,2526,0,0,5692,'2025-12-09','00:00:00',3816,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6272,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 18:17:03','janvi','2025-12-09 18:17:55',0),(16987,2526,0,0,5693,'2025-12-09','00:00:00',3817,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6274,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 18:17:49','drashti','2025-12-09 18:19:42',0),(16988,2526,0,0,5694,'2025-12-09','00:00:00',1676,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6273,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 18:17:59','reception','2025-12-09 18:18:29',0),(16989,2526,0,0,5695,'2025-12-09','00:00:00',3818,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6275,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 18:21:04','drashti','2025-12-09 18:22:38',0),(16990,2526,0,0,5696,'2025-12-09','00:00:00',3819,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 18:21:57','reception','2025-12-09 05:51:57',0),(16991,2526,0,0,5697,'2025-12-09','00:00:00',3820,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6276,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 18:24:29','reception','2025-12-09 18:25:00',0),(16992,2526,0,0,5698,'2025-12-09','00:00:00',3821,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6277,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 18:28:05','janvi','2025-12-09 18:28:33',0),(16993,2526,0,0,5699,'2025-12-09','00:00:00',3822,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6278,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 18:32:32','janvi','2025-12-09 18:33:53',0),(16994,2526,0,0,5700,'2025-12-09','00:00:00',1257,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',6279,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 18:33:59','reception','2025-12-09 18:34:46',0),(16995,2526,0,0,5701,'2025-12-09','00:00:00',3823,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6281,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 18:36:46','janvi','2025-12-09 18:40:28',0),(16996,2526,0,0,5687,'2025-12-09','18:38:31',3812,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6280,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 18:38:31','reception','2025-12-09 18:38:31',0),(16997,2526,0,0,5687,'2025-12-09','18:38:31',3812,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6280,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 18:38:31','reception','2025-12-09 18:38:31',0),(16998,2526,0,0,5702,'2025-12-09','00:00:00',890,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6282,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 18:41:01','janvi','2025-12-09 18:41:12',0),(16999,2526,0,0,5688,'2025-12-09','18:44:15',3813,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6283,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 18:44:15','reception','2025-12-09 18:44:15',0),(17000,2526,0,0,5688,'2025-12-09','18:44:15',3813,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6283,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 18:44:15','reception','2025-12-09 18:44:15',0),(17001,2526,0,0,5703,'2025-12-09','00:00:00',3824,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',6284,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 18:46:55','reception','2025-12-09 18:47:53',0),(17002,2526,0,0,4777,'2025-12-09','14:00:00',0,225,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',0,'','',0,88,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:52','vishal','2025-12-11 18:15:03',0),(17003,2526,0,0,4777,'2025-12-09','14:00:00',0,225,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',0,'','',0,84,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:52','vishal','2025-12-11 18:15:03',0),(17004,2526,0,0,4777,'2025-12-09','14:00:00',0,225,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',0,'','',0,87,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:52','vishal','2025-12-11 18:15:03',0),(17005,2526,0,0,4777,'2025-12-09','14:00:00',0,225,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','406','','','',2526,'H','D',271,78,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:52','vishal','2025-12-11 18:15:03',0),(17006,2526,0,0,4777,'2025-12-09','14:00:00',0,225,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','406','','','',2526,'H','D',271,79,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:52','vishal','2025-12-11 18:15:03',0),(17007,2526,0,0,5163,'2025-12-09','15:00:00',0,245,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:53','riya','2025-12-09 19:00:35',0),(17008,2526,0,0,5163,'2025-12-09','15:00:00',0,245,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:53','riya','2025-12-09 19:00:35',0),(17009,2526,0,0,5163,'2025-12-09','15:00:00',0,245,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:53','riya','2025-12-09 19:00:35',0),(17010,2526,0,0,5163,'2025-12-09','15:00:00',0,245,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:53','riya','2025-12-09 19:00:35',0),(17011,2526,0,0,5163,'2025-12-09','15:00:00',0,245,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:53','riya','2025-12-09 19:00:35',0),(17012,2526,0,0,5307,'2025-12-09','17:30:00',0,250,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:53','riya','2025-12-09 18:55:09',0),(17013,2526,0,0,5307,'2025-12-09','17:30:00',0,250,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:53','riya','2025-12-09 18:55:09',0),(17014,2526,0,0,5307,'2025-12-09','17:30:00',0,250,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:53','riya','2025-12-09 18:55:09',0),(17015,2526,0,0,5307,'2025-12-09','17:30:00',0,250,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','402','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:53','riya','2025-12-09 18:55:09',0),(17016,2526,0,0,5307,'2025-12-09','17:30:00',0,250,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','402','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:53','riya','2025-12-09 18:55:09',0),(17017,2526,0,0,5316,'2025-12-09','17:30:00',0,251,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:54','riya','2025-12-09 19:10:25',0),(17018,2526,0,0,5316,'2025-12-09','17:30:00',0,251,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:54','riya','2025-12-09 19:10:25',0),(17019,2526,0,0,5316,'2025-12-09','17:30:00',0,251,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:54','riya','2025-12-09 19:10:25',0),(17020,2526,0,0,5316,'2025-12-09','17:30:00',0,251,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','407','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:54','riya','2025-12-09 19:10:25',0),(17021,2526,0,0,5316,'2025-12-09','17:30:00',0,251,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','407','','','',2526,'H','I',242,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:54','riya','2025-12-09 19:10:25',0),(17022,2526,0,0,5425,'2025-12-09','16:30:00',0,255,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:54','riya','2025-12-09 18:57:19',0),(17023,2526,0,0,5425,'2025-12-09','16:30:00',0,255,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:54','riya','2025-12-09 18:57:19',0),(17024,2526,0,0,5425,'2025-12-09','16:30:00',0,255,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:54','riya','2025-12-09 18:57:19',0),(17025,2526,0,0,5425,'2025-12-09','16:30:00',0,255,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','305','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:54','riya','2025-12-09 18:57:19',0),(17026,2526,0,0,5425,'2025-12-09','16:30:00',0,255,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','305','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:54','riya','2025-12-09 18:57:19',0),(17027,2526,0,0,5583,'2025-12-09','18:00:00',0,261,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:54','riya','2025-12-09 19:01:27',0),(17028,2526,0,0,5583,'2025-12-09','18:00:00',0,261,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:54','riya','2025-12-09 19:01:27',0),(17029,2526,0,0,5583,'2025-12-09','18:00:00',0,261,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:54','riya','2025-12-10 16:24:16',0),(17030,2526,0,0,5583,'2025-12-09','18:00:00',0,261,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:54','riya','2025-12-10 16:24:16',0),(17031,2526,0,0,5583,'2025-12-09','18:00:00',0,261,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:54','riya','2025-12-10 16:24:16',0),(17032,2526,0,0,5588,'2025-12-09','18:45:00',3730,262,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',249,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:55','riya','2025-12-10 09:57:16',0),(17033,2526,0,0,5588,'2025-12-09','18:45:00',3730,262,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',249,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:55','riya','2025-12-10 09:57:16',0),(17034,2526,0,0,5588,'2025-12-09','18:45:00',3730,262,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',249,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:55','riya','2025-12-10 09:57:16',0),(17035,2526,0,0,5588,'2025-12-09','18:45:00',3730,262,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',2526,'H','I',249,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:55','riya','2025-12-10 09:57:16',0),(17036,2526,0,0,5588,'2025-12-09','18:45:00',3730,262,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',249,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 06:17:55','riya','2025-12-10 09:57:16',0),(17037,2526,0,0,5704,'2025-12-09','00:00:00',3825,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6286,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 18:48:04','drashti','2025-12-09 18:48:58',0),(17038,2526,0,0,5696,'2025-12-09','18:48:42',3819,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6285,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 18:48:42','janvi','2025-12-09 18:48:42',0),(17039,2526,0,0,5705,'2025-12-09','00:00:00',1312,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6287,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 18:50:30','reception','2025-12-09 18:50:49',0),(17040,2526,0,0,5682,'2025-12-09','18:51:29',3324,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6288,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 18:51:29','drashti','2025-12-09 18:51:29',0),(17041,2526,0,0,5706,'2025-12-09','00:00:00',1000,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6289,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 18:55:00','reception','2025-12-09 18:55:18',0),(17042,2526,0,0,5707,'2025-12-09','18:56:16',3305,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6290,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 18:56:16','janvi','2025-12-09 18:56:16',0),(17043,2526,0,0,5708,'2025-12-09','18:57:31',3319,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6291,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 18:57:31','janvi','2025-12-09 18:57:31',0),(17044,2526,0,0,5709,'2025-12-09','00:00:00',1976,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 18:58:28','janvi','2025-12-09 06:28:28',0),(17045,2526,0,0,5710,'2025-12-09','00:00:00',3826,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6292,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 18:59:25','drashti','2025-12-09 19:01:53',0),(17046,2526,0,0,5685,'2025-12-09','19:06:07',3810,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6293,1,92,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 19:06:07','reception','2025-12-09 19:06:07',0),(17047,2526,0,0,5685,'2025-12-09','19:06:07',3810,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6293,2,404,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 19:06:07','reception','2025-12-09 19:06:07',0),(17048,2526,0,0,5685,'2025-12-09','19:06:07',3810,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6293,3,404,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 19:06:07','reception','2025-12-09 19:06:07',0),(17049,2526,0,0,5711,'2025-12-09','00:00:00',3827,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',6304,1,200,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 19:09:55','reception','2025-12-09 20:00:16',0),(17050,2526,0,0,5712,'2025-12-09','00:00:00',3278,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',6294,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 19:11:08','reception','2025-12-09 19:11:49',0),(17051,2526,0,0,5713,'2025-12-09','00:00:00',3828,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6295,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 19:12:44','reception','2025-12-09 19:13:04',0),(17052,2526,0,0,5714,'2025-12-09','19:14:08',3310,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6296,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 19:14:08','janvi','2025-12-09 19:14:08',0),(17053,2526,0,0,5702,'2025-12-09','19:14:36',890,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',6297,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-09 19:14:36','drashti','2025-12-09 19:14:36',0),(17054,2526,0,0,5716,'2025-12-09','00:00:00',3829,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6298,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-09 19:15:39','priyanshi','2025-12-09 19:16:06',0),(17055,2526,0,0,5717,'2025-12-09','00:00:00',3830,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6299,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 19:26:58','reception','2025-12-09 19:27:17',0),(17056,2526,0,0,5709,'2025-12-09','19:30:51',1976,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6300,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 19:30:50','janvi','2025-12-09 19:30:50',0),(17057,2526,0,0,5718,'2025-12-09','19:32:54',3660,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6301,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-09 19:32:54','priyanshi','2025-12-09 19:32:54',0),(17058,2526,0,0,5719,'2025-12-09','00:00:00',3831,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6302,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-09 19:41:53','priyanshi','2025-12-09 19:42:58',0),(17059,2526,0,0,5720,'2025-12-09','00:00:00',3832,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6303,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-09 19:50:53','janvi','2025-12-09 19:53:49',0),(17060,2526,0,0,4694,'2025-12-09','19:56:00',0,222,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,75,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 19:57:31','','0000-00-00 00:00:00',0),(17061,2526,0,0,4694,'2025-12-09','19:56:00',0,222,'CARE','CARE0005','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,76,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 19:57:31','','0000-00-00 00:00:00',0),(17062,2526,0,0,4694,'2025-12-09','19:56:00',0,222,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,77,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 19:57:31','','0000-00-00 00:00:00',0),(17063,2526,0,0,5316,'2025-12-06','19:58:00',0,251,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 20:03:58','','0000-00-00 00:00:00',0),(17064,2526,0,0,5713,'2025-12-09','20:05:21',3828,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6305,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 20:05:21','reception','2025-12-09 20:05:21',0),(17065,2526,0,0,5713,'2025-12-09','20:05:21',3828,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6305,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 20:05:21','reception','2025-12-09 20:05:21',0),(17066,2526,0,0,5316,'2025-12-09','20:03:00',0,251,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 20:11:44','','0000-00-00 00:00:00',0),(17067,2526,0,0,5316,'2025-12-08','20:03:00',0,251,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 20:11:44','','0000-00-00 00:00:00',0),(17068,2526,0,0,5316,'2025-12-09','20:04:00',0,251,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 20:11:44','','0000-00-00 00:00:00',0),(17069,2526,0,0,5316,'2025-12-08','20:08:00',0,251,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,38,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 20:11:44','','0000-00-00 00:00:00',0),(17070,2526,0,0,5316,'2025-12-09','20:09:00',0,251,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 20:11:44','','0000-00-00 00:00:00',0),(17071,2526,0,0,5316,'2025-12-09','20:09:00',0,251,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,52,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 20:11:44','','0000-00-00 00:00:00',0),(17072,2526,0,0,5721,'2025-12-09','20:16:59',3767,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',6306,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-09 20:16:59','reception','2025-12-09 20:16:59',0),(17073,2526,0,0,5722,'2025-12-09','19:30:00',0,268,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',248,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 20:28:36','riya','2025-12-11 12:06:20',0),(17074,2526,0,0,5722,'2025-12-09','19:30:00',0,268,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',248,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 20:28:36','riya','2025-12-11 12:06:20',0),(17075,2526,0,0,5722,'2025-12-09','19:30:00',0,268,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',2526,'H','I',248,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 07:58:36','riya','2025-12-11 12:06:20',0),(17076,2526,0,0,5722,'2025-12-09','19:30:00',0,268,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',2526,'H','I',248,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 07:58:36','riya','2025-12-11 12:06:20',0),(17077,2526,0,0,5722,'2025-12-09','19:30:00',0,268,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',2526,'H','I',248,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 07:58:36','riya','2025-12-11 12:06:20',0),(17078,2526,0,0,5722,'2025-12-09','19:30:00',0,268,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 07:58:36','riya','2025-12-11 12:57:24',0),(17079,2526,0,0,5722,'2025-12-09','19:30:00',0,268,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 07:58:36','riya','2025-12-11 12:57:24',0),(17080,2526,0,0,5723,'2025-12-09','21:15:00',0,269,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',243,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 21:16:04','riya','2025-12-10 12:33:08',0),(17081,2526,0,0,5723,'2025-12-09','21:15:00',0,269,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',243,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 21:16:04','riya','2025-12-10 12:33:08',0),(17082,2526,0,0,5723,'2025-12-09','21:15:00',0,269,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',243,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 08:46:04','riya','2025-12-10 12:33:08',0),(17083,2526,0,0,5723,'2025-12-09','21:15:00',0,269,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',243,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 08:46:04','riya','2025-12-10 12:33:08',0),(17084,2526,0,0,5723,'2025-12-09','21:15:00',0,269,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',243,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 08:46:04','riya','2025-12-10 12:33:08',0),(17085,2526,0,0,5723,'2025-12-09','21:15:00',0,269,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-09 08:46:04','riya','2025-12-10 12:33:08',0),(17086,2526,0,0,5723,'2025-12-09','21:15:00',0,269,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-09 08:46:04','riya','2025-12-10 12:33:08',0),(17087,2526,0,0,5724,'2025-12-10','00:00:00',3001,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6307,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 08:50:59','reception','2025-12-10 08:51:43',0),(17088,2526,0,0,5725,'2025-12-10','08:53:48',3831,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',6308,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-10 08:53:48','urvashi','2025-12-10 08:53:48',0),(17089,2526,0,0,5726,'2025-12-10','00:00:00',3833,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-10 08:54:44','urvashi','2025-12-09 20:24:44',0),(17090,2526,0,0,5726,'2025-12-10','08:55:44',3833,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',6309,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-10 08:55:44','urvashi','2025-12-10 08:55:44',0),(17091,2526,0,0,5726,'2025-12-10','08:55:44',3833,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6309,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-10 08:55:44','urvashi','2025-12-10 08:55:44',0),(17092,2526,0,0,5727,'2025-12-10','08:56:53',3832,0,'OPWD','OPWD0031','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6310,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-10 08:56:53','urvashi','2025-12-10 09:00:28',0),(17093,2526,0,0,5726,'2025-12-10','08:59:08',3833,0,'OPWD','OPWD0013','H','N',1.00,450,450,'P',0,0,0.00,0.00,0.00,450,3,0,0,'',0,0,'','','','','',2526,'H','O',6311,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-10 08:59:08','urvashi','2025-12-10 08:59:08',0),(17094,2526,0,0,5727,'2025-12-10','09:01:56',3832,0,'OPWD','OPWD0031','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6313,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-10 09:01:56','janvi','2025-12-10 09:46:38',0),(17095,2526,0,0,5725,'2025-12-10','09:09:21',3831,0,'OPWD','OPWD0013','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,5,0,0,'',0,0,'','','','','',2526,'H','O',6314,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 09:09:21','reception','2025-12-10 09:09:21',0),(17096,2526,0,0,5725,'2025-12-10','09:09:21',3831,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',6314,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 09:09:21','reception','2025-12-10 09:09:21',0),(17097,2526,0,0,5728,'2025-12-10','09:30:00',0,270,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',244,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 09:36:35','vishal','2025-12-10 20:29:05',0),(17098,2526,0,0,5728,'2025-12-10','09:30:00',0,270,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',244,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 09:36:35','vishal','2025-12-10 20:29:05',0),(17099,2526,0,0,5728,'2025-12-10','09:30:00',0,270,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','302','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-09 21:06:35','vishal','2025-12-10 20:29:05',0),(17100,2526,0,0,5728,'2025-12-10','09:30:00',0,270,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','302','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-09 21:06:35','vishal','2025-12-10 20:29:05',0),(17101,2526,0,0,5728,'2025-12-10','09:30:00',0,270,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','302','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-09 21:06:35','vishal','2025-12-10 20:29:05',0),(17102,2526,0,0,5728,'2025-12-10','09:30:00',0,270,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','302','','','',2526,'H','I',244,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 21:06:35','vishal','2025-12-10 20:29:05',0),(17103,2526,0,0,5728,'2025-12-10','09:30:00',0,270,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','302','','','',2526,'H','I',244,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 21:06:35','vishal','2025-12-10 20:29:05',0),(17104,2526,0,0,5729,'2025-12-10','00:00:00',2022,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6316,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 09:46:33','drashti','2025-12-10 09:47:15',0),(17105,2526,0,0,5730,'2025-12-10','00:00:00',3834,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 09:49:59','drashti','2025-12-09 21:19:59',0),(17106,2526,0,0,5730,'2025-12-10','09:53:38',3834,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',6317,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 09:53:38','drashti','2025-12-10 09:53:38',0),(17107,2526,0,0,5730,'2025-12-10','09:53:38',3834,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6317,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 09:53:38','drashti','2025-12-10 09:53:38',0),(17108,2526,0,0,5730,'2025-12-10','09:53:38',3834,0,'OPWD','OPWD0019','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',6317,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 09:53:38','drashti','2025-12-10 09:53:38',0),(17109,2526,0,0,5730,'2025-12-10','09:53:38',3834,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6317,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 09:53:38','drashti','2025-12-10 09:53:38',0),(17110,2526,0,0,5731,'2025-12-10','00:00:00',1622,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6318,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 09:56:08','reception','2025-12-10 09:57:02',0),(17111,2526,0,0,5732,'2025-12-10','10:00:00',0,271,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',245,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 10:05:37','vishal','2025-12-10 20:25:09',0),(17112,2526,0,0,5732,'2025-12-10','10:00:00',0,271,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',245,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 10:05:37','vishal','2025-12-10 20:25:09',0),(17113,2526,0,0,5732,'2025-12-10','10:00:00',0,271,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','303','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-09 21:35:37','vishal','2025-12-10 20:25:09',0),(17114,2526,0,0,5732,'2025-12-10','10:00:00',0,271,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','303','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-09 21:35:37','vishal','2025-12-10 20:25:09',0),(17115,2526,0,0,5732,'2025-12-10','10:00:00',0,271,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','303','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-09 21:35:37','vishal','2025-12-10 20:25:09',0),(17116,2526,0,0,5732,'2025-12-10','10:00:00',0,271,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','303','','','',2526,'H','I',245,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 21:35:37','vishal','2025-12-10 20:25:09',0),(17117,2526,0,0,5732,'2025-12-10','10:00:00',0,271,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','303','','','',2526,'H','I',245,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-09 21:35:37','vishal','2025-12-10 20:25:09',0),(17118,2526,0,0,5733,'2025-12-10','00:00:00',3835,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6319,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-10 10:07:44','manshi','2025-12-10 10:11:35',0),(17119,2526,0,0,5735,'2025-12-10','00:00:00',3836,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6320,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-10 10:11:00','manshi','2025-12-10 10:11:49',0),(17120,2526,0,0,5736,'2025-12-10','00:00:00',3198,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',6321,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 10:11:44','reception','2025-12-10 10:11:56',0),(17121,2526,0,0,5738,'2025-12-10','00:00:00',3837,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6322,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 10:19:02','reception','2025-12-10 10:19:33',0),(17122,2526,0,0,5740,'2025-12-10','00:00:00',2176,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6324,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 10:22:39','reception','2025-12-10 10:23:06',0),(17123,2526,0,0,5739,'2025-12-10','10:22:45',3720,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6323,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 10:22:45','janvi','2025-12-10 10:22:45',0),(17124,2526,0,0,5741,'2025-12-10','00:00:00',3838,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6325,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 10:24:04','janvi','2025-12-10 10:24:47',0),(17125,2526,0,0,5742,'2025-12-10','00:00:00',3839,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 10:27:49','janvi','2025-12-09 21:57:49',0),(17126,2526,0,0,5743,'2025-12-10','00:00:00',3840,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6327,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 10:29:51','reception','2025-12-10 10:30:22',0),(17127,2526,0,0,5742,'2025-12-10','10:30:08',3839,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',6326,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-12-10 10:30:08','janvi','2025-12-10 10:30:08',0),(17128,2526,0,0,5742,'2025-12-10','10:30:08',3839,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6326,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-12-10 10:30:08','janvi','2025-12-10 10:30:08',0),(17129,2526,0,0,5742,'2025-12-10','10:30:08',3839,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,112,'',0,0,'','','','','',2526,'H','O',6326,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-12-10 10:30:08','janvi','2025-12-10 10:30:08',0),(17130,2526,0,0,5742,'2025-12-10','10:30:08',3839,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',6326,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-12-10 10:30:08','janvi','2025-12-10 10:30:08',0),(17131,2526,0,0,5745,'2025-12-10','00:00:00',860,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6330,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 10:33:10','reception','2025-12-10 10:34:27',0),(17132,2526,0,0,5746,'2025-12-10','00:00:00',3841,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6328,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 10:33:16','drashti','2025-12-10 10:33:35',0),(17133,2526,0,0,5747,'2025-12-10','00:00:00',862,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6329,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 10:33:39','reception','2025-12-10 10:34:06',0),(17134,2526,0,0,5748,'2025-12-10','00:00:00',702,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-10 10:39:57','manshi','2025-12-09 22:09:57',0),(17135,2526,0,0,5749,'2025-12-10','00:00:00',3842,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6331,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 10:42:50','reception','2025-12-10 10:43:11',0),(17136,2526,0,0,5750,'2025-12-10','00:00:00',3249,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6332,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 10:45:41','drashti','2025-12-10 10:46:22',0),(17137,2526,0,0,5734,'2025-12-10','10:47:03',3208,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6333,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 10:47:03','janvi','2025-12-10 10:47:03',0),(17138,2526,0,0,5737,'2025-12-10','10:50:16',3605,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6334,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 10:50:16','janvi','2025-12-10 10:50:16',0),(17139,2526,0,0,5751,'2025-12-10','00:00:00',3843,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',6335,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 10:51:37','reception','2025-12-10 10:53:16',0),(17140,2526,0,0,5752,'2025-12-10','00:00:00',3844,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6336,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 10:58:48','reception','2025-12-10 10:59:14',0),(17141,2526,0,0,5729,'2025-12-10','11:02:16',2022,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',6337,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 11:02:16','janvi','2025-12-10 11:02:16',0),(17142,2526,0,0,5754,'2025-12-10','00:00:00',3845,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6338,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 11:03:09','drashti','2025-12-10 11:03:33',0),(17143,2526,0,0,5755,'2025-12-10','00:00:00',2061,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6339,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 11:06:41','reception','2025-12-10 11:07:05',0),(17144,2526,0,0,5756,'2025-12-10','00:00:00',3846,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6340,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-10 11:07:07','manshi','2025-12-10 11:07:22',0),(17145,2526,0,0,5757,'2025-12-10','00:00:00',3847,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6341,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 11:07:51','reception','2025-12-10 11:08:27',0),(17146,2526,0,0,5758,'2025-12-10','00:00:00',3308,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6342,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 11:09:23','reception','2025-12-10 11:09:47',0),(17147,2526,0,0,5759,'2025-12-10','00:00:00',520,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6343,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 11:11:26','reception','2025-12-10 11:11:47',0),(17148,2526,0,0,5760,'2025-12-10','00:00:00',3848,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6344,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 11:12:20','drashti','2025-12-10 11:12:53',0),(17149,2526,0,0,5727,'2025-12-10','11:14:03',3832,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6345,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 11:14:03','janvi','2025-12-10 11:14:03',0),(17150,2526,0,0,5761,'2025-12-10','00:00:00',3849,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6346,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 11:14:16','reception','2025-12-10 11:14:42',0),(17151,2526,0,0,5762,'2025-12-10','11:17:03',3305,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6347,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 11:17:02','drashti','2025-12-10 11:17:02',0),(17152,2526,0,0,5763,'2025-12-10','11:25:51',2738,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6348,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 11:25:51','janvi','2025-12-10 11:25:51',0),(17153,2526,0,0,5764,'2025-12-10','00:00:00',3850,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6349,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 11:28:24','drashti','2025-12-10 11:29:11',0),(17154,2526,0,0,5765,'2025-12-10','00:00:00',3851,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6351,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 11:29:02','janvi','2025-12-10 11:31:06',0),(17155,2526,0,0,5749,'2025-12-10','11:30:17',3842,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6350,1,105,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 11:30:17','reception','2025-12-10 11:30:17',0),(17156,2526,0,0,5749,'2025-12-10','11:30:17',3842,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6350,2,463,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 11:30:17','reception','2025-12-10 11:30:17',0),(17157,2526,0,0,5749,'2025-12-10','11:30:17',3842,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6350,3,632,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 11:30:17','reception','2025-12-10 11:30:17',0),(17158,2526,0,0,5766,'2025-12-10','00:00:00',2294,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6352,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 11:32:02','reception','2025-12-10 11:32:23',0),(17159,2526,0,0,5767,'2025-12-10','00:00:00',1261,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6353,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 11:32:31','drashti','2025-12-10 11:34:27',0),(17160,2526,0,0,5768,'2025-12-10','00:00:00',3852,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6354,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 11:36:49','reception','2025-12-10 11:37:16',0),(17161,2526,0,0,5769,'2025-12-10','00:00:00',3853,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6355,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 11:37:15','janvi','2025-12-10 11:37:45',0),(17162,2526,0,0,5770,'2025-12-10','00:00:00',1386,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',6356,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 11:39:38','reception','2025-12-10 11:40:03',0),(17163,2526,0,0,5771,'2025-12-10','00:00:00',3854,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6357,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 11:39:59','drashti','2025-12-10 11:40:43',0),(17164,2526,0,0,5772,'2025-12-10','00:00:00',3855,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6358,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 11:42:32','reception','2025-12-10 11:43:40',0),(17165,2526,0,0,5773,'2025-12-10','00:00:00',3856,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6359,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 11:46:18','reception','2025-12-10 11:46:39',0),(17166,2526,0,0,5774,'2025-12-10','00:00:00',3857,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 11:47:09','janvi','2025-12-09 23:17:09',0),(17167,2526,0,0,5775,'2025-12-10','00:00:00',3858,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6360,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 11:50:31','janvi','2025-12-10 11:51:52',0),(17168,2526,0,0,5316,'2025-12-10','11:57:00',0,251,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:00:18','','0000-00-00 00:00:00',0),(17169,2526,0,0,5316,'2025-12-10','11:59:00',0,251,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:00:18','','0000-00-00 00:00:00',0),(17170,2526,0,0,5316,'2025-12-10','11:59:00',0,251,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',242,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:00:18','','0000-00-00 00:00:00',0),(17171,2526,0,0,5776,'2025-12-10','00:00:00',3859,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6361,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 12:00:41','drashti','2025-12-10 12:02:16',0),(17172,2526,0,0,5760,'2025-12-10','12:02:46',3848,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6362,1,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 12:02:46','reception','2025-12-10 12:02:46',0),(17173,2526,0,0,5760,'2025-12-10','12:02:46',3848,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6362,2,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 12:02:46','reception','2025-12-10 12:02:46',0),(17174,2526,0,0,5760,'2025-12-10','12:02:46',3848,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6362,3,471,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 12:02:46','reception','2025-12-10 12:02:46',0),(17175,2526,0,0,5777,'2025-12-10','12:02:51',3265,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6363,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-10 12:02:51','manshi','2025-12-10 12:02:51',0),(17176,2526,0,0,5778,'2025-12-10','00:00:00',3860,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6364,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-10 12:07:27','manshi','2025-12-10 12:07:55',0),(17177,2526,0,0,5779,'2025-12-10','00:00:00',3861,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6365,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 12:07:39','reception','2025-12-10 12:07:59',0),(17178,2526,0,0,5780,'2025-12-10','00:00:00',1226,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6366,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 12:08:39','reception','2025-12-10 12:08:50',0),(17179,2526,0,0,5781,'2025-12-10','00:00:00',3862,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6367,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 12:08:44','drashti','2025-12-10 12:09:49',0),(17180,2526,0,0,5782,'2025-12-10','12:12:35',3516,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6368,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 12:12:34','drashti','2025-12-10 12:12:34',0),(17181,2526,0,0,5783,'2025-12-10','00:00:00',193,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6369,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 12:16:59','reception','2025-12-10 12:17:14',0),(17182,2526,0,0,5784,'2025-12-10','00:00:00',3863,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',6370,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 12:20:32','drashti','2025-12-10 12:21:30',0),(17183,2526,0,0,5785,'2025-12-10','00:00:00',3864,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6373,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 12:20:55','janvi','2025-12-10 12:25:19',0),(17184,2526,0,0,5786,'2025-12-10','00:00:00',3865,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6372,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 12:22:51','drashti','2025-12-10 12:25:09',0),(17185,2526,0,0,5768,'2025-12-10','12:24:53',3852,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6371,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 12:24:53','reception','2025-12-10 12:24:53',0),(17186,2526,0,0,5768,'2025-12-10','12:24:53',3852,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6371,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 12:24:53','reception','2025-12-10 12:24:53',0),(17187,2526,0,0,5768,'2025-12-10','12:24:53',3852,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6371,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 12:24:53','reception','2025-12-10 12:24:53',0),(17188,2526,0,0,5787,'2025-12-10','00:00:00',3866,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6374,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 12:26:39','drashti','2025-12-10 12:27:27',0),(17189,2526,0,0,5788,'2025-12-10','00:00:00',3867,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6375,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 12:27:02','reception','2025-12-10 12:27:30',0),(17190,2526,0,0,5789,'2025-12-10','00:00:00',2240,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6376,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 12:28:33','reception','2025-12-10 12:28:49',0),(17191,2526,0,0,5790,'2025-12-10','00:00:00',3868,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6377,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 12:28:56','drashti','2025-12-10 12:29:48',0),(17192,2526,0,0,5663,'2025-12-09','12:24:00',0,266,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:29:40','','0000-00-00 00:00:00',0),(17193,2526,0,0,5663,'2025-12-09','12:24:00',0,266,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:29:40','','0000-00-00 00:00:00',0),(17194,2526,0,0,5663,'2025-12-09','12:24:00',0,266,'XRY','XRY0045','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:29:40','','0000-00-00 00:00:00',0),(17195,2526,0,0,5663,'2025-12-09','12:26:00',0,266,'WPRC','WPRC0092','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,4,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:29:40','','0000-00-00 00:00:00',0),(17196,2526,0,0,5663,'2025-12-10','12:26:00',0,266,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:29:40','','0000-00-00 00:00:00',0),(17197,2526,0,0,5663,'2025-12-09','12:26:00',0,266,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:29:40','riya','2025-12-12 14:53:28',0),(17198,2526,0,0,5663,'2025-12-10','12:27:00',0,266,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:29:40','','0000-00-00 00:00:00',0),(17199,2526,0,0,5663,'2025-12-09','12:27:00',0,266,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:29:40','','0000-00-00 00:00:00',0),(17200,2526,0,0,5663,'2025-12-09','12:28:00',0,266,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:29:40','','0000-00-00 00:00:00',0),(17201,2526,0,0,5663,'2025-12-10','12:28:00',0,266,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:29:40','','0000-00-00 00:00:00',0),(17202,2526,0,0,5663,'2025-12-10','12:28:00',0,266,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:29:40','','0000-00-00 00:00:00',0),(17203,2526,0,0,5663,'2025-12-10','12:28:00',0,266,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:29:40','','0000-00-00 00:00:00',0),(17204,2526,0,0,5663,'2025-12-09','12:28:00',0,266,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:29:40','','0000-00-00 00:00:00',0),(17205,2526,0,0,5773,'2025-12-10','12:32:22',3856,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6378,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 12:32:22','janvi','2025-12-10 12:32:22',0),(17206,2526,0,0,5757,'2025-12-10','12:32:33',3847,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6379,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 12:32:33','reception','2025-12-10 12:32:33',0),(17207,2526,0,0,5757,'2025-12-10','12:32:33',3847,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6379,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 12:32:33','reception','2025-12-10 12:32:33',0),(17208,2526,0,0,5757,'2025-12-10','12:32:33',3847,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6379,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 12:32:33','reception','2025-12-10 12:32:33',0),(17209,2526,0,0,5723,'2025-12-09','12:30:00',0,269,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',243,6,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:33:08','','0000-00-00 00:00:00',0),(17210,2526,0,0,5723,'2025-12-10','12:30:00',0,269,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',243,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:33:08','','0000-00-00 00:00:00',0),(17211,2526,0,0,5723,'2025-12-09','12:30:00',0,269,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',243,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:33:08','','0000-00-00 00:00:00',0),(17212,2526,0,0,5723,'2025-12-10','12:30:00',0,269,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,9,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:33:08','riya','2025-12-10 17:42:53',0),(17213,2526,0,0,5723,'2025-12-10','12:31:00',0,269,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,10,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:33:08','riya','2025-12-10 17:42:53',0),(17214,2526,0,0,5723,'2025-12-09','12:31:00',0,269,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',243,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:33:08','','0000-00-00 00:00:00',0),(17215,2526,0,0,5723,'2025-12-09','12:31:00',0,269,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',243,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:33:08','','0000-00-00 00:00:00',0),(17216,2526,0,0,5723,'2025-12-10','12:31:00',0,269,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',243,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:33:08','','0000-00-00 00:00:00',0),(17217,2526,0,0,5723,'2025-12-09','12:31:00',0,269,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',243,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:33:08','','0000-00-00 00:00:00',0),(17218,2526,0,0,5723,'2025-12-10','12:32:00',0,269,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',243,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:33:08','','0000-00-00 00:00:00',0),(17219,2526,0,0,5120,'2025-12-10','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 00:03:31','riya','2025-12-10 12:37:24',0),(17220,2526,0,0,5120,'2025-12-10','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 00:03:31','riya','2025-12-10 12:37:24',0),(17221,2526,0,0,5120,'2025-12-10','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 00:03:31','riya','2025-12-10 12:37:24',0),(17222,2526,0,0,5120,'2025-12-10','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 00:03:31','vishal','2025-12-11 18:53:42',0),(17223,2526,0,0,5120,'2025-12-10','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 00:03:31','riya','2025-12-10 15:41:11',0),(17224,2526,0,0,5120,'2025-12-10','12:35:00',0,243,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:37:24','vishal','2025-12-11 18:53:42',0),(17225,2526,0,0,5120,'2025-12-10','12:35:00',0,243,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:37:24','vishal','2025-12-11 18:53:42',0),(17226,2526,0,0,5120,'2025-12-09','12:36:00',0,243,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,174,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:37:24','vishal','2025-12-22 17:57:22',0),(17227,2526,0,0,4017,'2025-12-10','12:40:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,188,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:47:38','','0000-00-00 00:00:00',0),(17228,2526,0,0,4017,'2025-12-10','12:42:00',0,187,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',0,'','',0,189,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:47:38','','0000-00-00 00:00:00',0),(17229,2526,0,0,4017,'2025-12-10','12:42:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,190,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:47:38','','0000-00-00 00:00:00',0),(17230,2526,0,0,4017,'2025-12-10','12:42:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,191,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:47:38','','0000-00-00 00:00:00',0),(17231,2526,0,0,4017,'2025-12-10','12:43:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,192,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:47:38','','0000-00-00 00:00:00',0),(17232,2526,0,0,4017,'2025-12-10','12:44:00',0,187,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,193,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:47:38','','0000-00-00 00:00:00',0),(17233,2526,0,0,4017,'2025-12-09','12:46:00',0,187,'WPRC','WPRC0118','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,183,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:47:38','vishal','2025-12-21 11:20:51',0),(17234,2526,0,0,4017,'2025-12-10','12:46:00',0,187,'DRC','DRC0020','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,8,0,0,'',0,0,'','','','','',0,'','',0,195,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:47:38','vishal','2025-12-21 11:20:51',0),(17235,2526,0,0,5790,'2025-12-10','12:50:44',3868,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6380,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 12:50:44','drashti','2025-12-10 12:50:44',0),(17236,2526,0,0,5790,'2025-12-10','12:50:44',3868,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',6380,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-10 12:50:44','drashti','2025-12-10 12:50:44',0),(17237,2526,0,0,4688,'2025-12-10','10:30:00',0,218,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 00:22:55','riya','2025-12-10 12:53:02',0),(17238,2526,0,0,4688,'2025-12-10','10:30:00',0,218,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 00:22:55','riya','2025-12-10 12:53:02',0),(17239,2526,0,0,4688,'2025-12-10','10:30:00',0,218,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 00:22:55','riya','2025-12-10 12:53:02',0),(17240,2526,0,0,4688,'2025-12-10','10:30:00',0,218,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 00:22:55','riya','2025-12-10 12:53:02',0),(17241,2526,0,0,4688,'2025-12-10','10:30:00',0,218,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','309','','','',2526,'H','I',252,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 00:22:55','riya','2025-12-10 12:53:02',0),(17242,2526,0,0,5791,'2025-12-10','13:00:00',0,272,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',254,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:56:33','riya','2025-12-11 16:10:54',0),(17243,2526,0,0,5791,'2025-12-10','13:00:00',0,272,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',254,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 12:56:33','riya','2025-12-11 16:10:54',0),(17244,2526,0,0,5788,'2025-12-10','13:02:19',3867,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6381,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 13:02:19','reception','2025-12-10 13:02:19',0),(17245,2526,0,0,5788,'2025-12-10','13:02:19',3867,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6381,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 13:02:19','reception','2025-12-10 13:02:19',0),(17246,2526,0,0,5788,'2025-12-10','13:02:19',3867,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6381,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 13:02:19','reception','2025-12-10 13:02:19',0),(17247,2526,0,0,5792,'2025-12-10','00:00:00',2740,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6382,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 13:06:02','reception','2025-12-10 13:06:19',0),(17248,2526,0,0,5660,'2025-12-09','13:07:00',3790,265,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',241,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 13:11:52','','0000-00-00 00:00:00',0),(17249,2526,0,0,5660,'2025-12-09','13:07:00',3790,265,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',241,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 13:11:52','','0000-00-00 00:00:00',0),(17250,2526,0,0,5660,'2025-12-10','13:07:00',3790,265,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',241,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 13:11:52','','0000-00-00 00:00:00',0),(17251,2526,0,0,5660,'2025-12-10','13:08:00',3790,265,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',241,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 13:11:52','','0000-00-00 00:00:00',0),(17252,2526,0,0,5660,'2025-12-09','13:12:00',3790,265,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,276,0,0,'',0,0,'','','','','',2526,'H','I',241,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 13:15:59','','0000-00-00 00:00:00',0),(17253,2526,0,0,5660,'2025-12-09','13:13:00',3790,265,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,276,0,0,'',0,0,'','','','','',2526,'H','I',241,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 13:15:59','','0000-00-00 00:00:00',0),(17254,2526,0,0,5772,'2025-12-10','13:22:27',3855,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6383,1,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 13:22:27','reception','2025-12-10 13:22:27',0),(17255,2526,0,0,5772,'2025-12-10','13:22:27',3855,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6383,2,471,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 13:22:27','reception','2025-12-10 13:22:27',0),(17256,2526,0,0,5772,'2025-12-10','13:22:27',3855,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6383,3,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 13:22:27','reception','2025-12-10 13:22:27',0),(17257,2526,0,0,5793,'2025-12-10','00:00:00',3869,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6384,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 13:28:10','janvi','2025-12-10 13:29:20',0),(17258,2526,0,0,5794,'2025-12-10','00:00:00',3870,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 13:30:47','reception','2025-12-10 01:00:47',0),(17259,2526,0,0,5795,'2025-12-10','00:00:00',939,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6385,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 13:44:38','reception','2025-12-10 13:44:56',0),(17260,2526,0,0,5796,'2025-12-10','00:00:00',3871,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6386,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 14:27:17','reception','2025-12-10 14:29:29',0),(17261,2526,0,0,5797,'2025-12-10','00:00:00',3872,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-10 14:53:34','urvashi','2025-12-10 02:23:34',0),(17262,2526,0,0,5797,'2025-12-10','14:55:09',3872,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',6387,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-10 14:55:09','urvashi','2025-12-10 14:55:09',0),(17263,2526,0,0,5797,'2025-12-10','14:55:09',3872,0,'OPWD','OPWD0013','H','N',5.00,100,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',6387,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-10 14:55:09','urvashi','2025-12-10 14:55:09',0),(17264,2526,0,0,5797,'2025-12-10','14:55:09',3872,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',6387,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-10 14:55:09','urvashi','2025-12-10 14:55:09',0),(17265,2526,0,0,5798,'2025-12-10','00:00:00',3873,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-10 14:58:55','urvashi','2025-12-10 02:28:55',0),(17266,2526,0,0,5798,'2025-12-10','15:01:04',3873,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',6388,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-12-10 15:01:04','urvashi','2025-12-10 15:01:04',0),(17267,2526,0,0,5798,'2025-12-10','15:01:04',3873,0,'OPWD','OPWD0015','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,4,0,0,'',0,0,'','','','','',2526,'H','O',6388,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-12-10 15:01:04','urvashi','2025-12-10 15:01:04',0),(17268,2526,0,0,5798,'2025-12-10','15:01:04',3873,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6388,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-12-10 15:01:04','urvashi','2025-12-10 15:01:04',0),(17269,2526,0,0,5798,'2025-12-10','15:01:04',3873,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,113,'',0,0,'','','','','',2526,'H','O',6388,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-12-10 15:01:04','urvashi','2025-12-10 15:01:04',0),(17270,2526,0,0,4017,'2025-12-10','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,196,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 02:49:30','riya','2025-12-10 15:19:44',0),(17271,2526,0,0,4017,'2025-12-10','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,197,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 02:49:30','riya','2025-12-10 15:19:44',0),(17272,2526,0,0,4017,'2025-12-10','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,198,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 02:49:30','riya','2025-12-10 15:19:44',0),(17273,2526,0,0,4017,'2025-12-10','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,199,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 02:49:30','riya','2025-12-10 15:19:44',0),(17274,2526,0,0,4017,'2025-12-10','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,200,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 02:49:30','riya','2025-12-10 15:19:44',0),(17275,2526,0,0,5120,'2025-12-09','15:39:00',0,243,'WPRC','WPRC0122','H','N',1.00,6000,6000,'P',0,0,0.00,0.00,6000.00,6000,4,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 15:40:08','','0000-00-00 00:00:00',0),(17276,2526,0,0,4777,'2025-12-10','14:00:00',0,225,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',0,'','',0,89,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:17','vishal','2025-12-11 18:15:03',0),(17277,2526,0,0,4777,'2025-12-10','14:00:00',0,225,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',0,'','',0,90,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:17','vishal','2025-12-11 18:15:03',0),(17278,2526,0,0,4777,'2025-12-10','14:00:00',0,225,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',0,'','',0,91,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:17','vishal','2025-12-11 18:15:03',0),(17279,2526,0,0,4777,'2025-12-10','14:00:00',0,225,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','406','','','',2526,'H','D',271,83,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:17','vishal','2025-12-11 18:15:03',0),(17280,2526,0,0,4777,'2025-12-10','14:00:00',0,225,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','406','','','',2526,'H','D',271,82,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:17','vishal','2025-12-11 18:15:03',0),(17281,2526,0,0,5163,'2025-12-10','15:00:00',0,245,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:19','riya','2025-12-10 16:34:44',0),(17282,2526,0,0,5163,'2025-12-10','15:00:00',0,245,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:19','riya','2025-12-10 16:34:44',0),(17283,2526,0,0,5163,'2025-12-10','15:00:00',0,245,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:19','riya','2025-12-10 16:34:44',0),(17284,2526,0,0,5163,'2025-12-10','15:00:00',0,245,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:19','riya','2025-12-10 16:34:44',0),(17285,2526,0,0,5163,'2025-12-10','15:00:00',0,245,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:19','riya','2025-12-10 16:34:44',0),(17286,2526,0,0,5426,'2025-12-09','23:30:00',0,256,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',247,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','riya','2025-12-10 16:10:31',0),(17287,2526,0,0,5426,'2025-12-09','23:30:00',0,256,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',247,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','vishal','2025-12-10 20:58:21',0),(17288,2526,0,0,5426,'2025-12-09','23:30:00',0,256,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','vishal','2025-12-10 20:57:28',0),(17289,2526,0,0,5426,'2025-12-09','23:30:00',0,256,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','vishal','2025-12-10 20:57:28',0),(17290,2526,0,0,5426,'2025-12-09','23:30:00',0,256,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','','','',2526,'H','I',247,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','vishal','2025-12-10 20:58:21',0),(17291,2526,0,0,5445,'2025-12-10','03:30:00',0,258,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',250,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','riya','2025-12-10 17:26:03',0),(17292,2526,0,0,5445,'2025-12-10','03:30:00',0,258,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',250,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','riya','2025-12-10 17:26:03',0),(17293,2526,0,0,5445,'2025-12-10','03:30:00',0,258,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',250,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','riya','2025-12-10 17:26:03',0),(17294,2526,0,0,5445,'2025-12-10','03:30:00',0,258,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',250,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','riya','2025-12-10 17:26:03',0),(17295,2526,0,0,5445,'2025-12-10','03:30:00',0,258,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','304','','','',2526,'H','I',250,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','riya','2025-12-10 17:26:03',0),(17296,2526,0,0,5521,'2025-12-10','12:30:00',0,259,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,23,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','vishal','2025-12-17 13:29:42',0),(17297,2526,0,0,5521,'2025-12-10','12:30:00',0,259,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','riya','2025-12-10 16:07:39',0),(17298,2526,0,0,5521,'2025-12-10','12:30:00',0,259,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','riya','2025-12-10 16:07:39',0),(17299,2526,0,0,5521,'2025-12-10','12:30:00',0,259,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',2526,'H','I',290,16,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','riya','2025-12-10 16:07:39',0),(17300,2526,0,0,5521,'2025-12-10','12:30:00',0,259,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',2526,'H','I',290,19,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','vishal','2025-12-17 13:29:42',0),(17301,2526,0,0,5527,'2025-12-10','13:00:00',0,260,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','riya','2025-12-13 14:08:10',0),(17302,2526,0,0,5527,'2025-12-10','13:00:00',0,260,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','riya','2025-12-13 14:08:10',0),(17303,2526,0,0,5527,'2025-12-10','13:00:00',0,260,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','riya','2025-12-13 14:08:10',0),(17304,2526,0,0,5527,'2025-12-10','13:00:00',0,260,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','riya','2025-12-13 14:08:10',0),(17305,2526,0,0,5527,'2025-12-10','13:00:00',0,260,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:20','riya','2025-12-13 14:08:10',0),(17306,2526,0,0,5603,'2025-12-10','01:00:00',0,263,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',246,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:21','riya','2025-12-10 17:24:13',0),(17307,2526,0,0,5603,'2025-12-10','01:00:00',0,263,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',246,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:21','riya','2025-12-10 17:24:13',0),(17308,2526,0,0,5603,'2025-12-10','01:00:00',0,263,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',246,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:21','riya','2025-12-10 17:24:13',0);
INSERT INTO `service_request` VALUES (17309,2526,0,0,5603,'2025-12-10','01:00:00',0,263,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','305','','','',2526,'H','I',246,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:21','riya','2025-12-10 17:24:13',0),(17310,2526,0,0,5603,'2025-12-10','01:00:00',0,263,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','305','','','',2526,'H','I',246,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:21','riya','2025-12-10 17:24:13',0),(17311,2526,0,0,5791,'2025-12-10','13:00:00',0,272,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',254,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:22','riya','2025-12-11 16:10:54',0),(17312,2526,0,0,5791,'2025-12-10','13:00:00',0,272,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',254,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:22','riya','2025-12-11 16:10:54',0),(17313,2526,0,0,5791,'2025-12-10','13:00:00',0,272,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',254,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:22','riya','2025-12-11 16:10:54',0),(17314,2526,0,0,5791,'2025-12-10','13:00:00',0,272,'DRC','DRC0018','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,5,0,0,'',0,0,'','210','','','',2526,'H','I',254,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:22','riya','2025-12-11 16:13:35',0),(17315,2526,0,0,5791,'2025-12-10','13:00:00',0,272,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','210','','','',2526,'H','I',254,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 03:12:22','riya','2025-12-11 16:10:54',0),(17316,2526,0,0,5521,'2025-12-08','16:02:00',0,259,'ROOM','ROOM0008','H','N',12.00,100,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:07:39','','0000-00-00 00:00:00',0),(17317,2526,0,0,5521,'2025-12-09','16:02:00',0,259,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,19,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:07:39','','0000-00-00 00:00:00',0),(17318,2526,0,0,5521,'2025-12-10','16:02:00',0,259,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,20,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:07:39','','0000-00-00 00:00:00',0),(17319,2526,0,0,5521,'2025-12-08','16:03:00',0,259,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,5,0,0,'',0,0,'','','','','',2526,'H','I',290,21,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:07:39','','0000-00-00 00:00:00',0),(17320,2526,0,0,5521,'2025-12-09','16:03:00',0,259,'XRY','XRY0045','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:07:39','riya','2025-12-10 17:40:44',0),(17321,2526,0,0,5521,'2025-12-10','16:03:00',0,259,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,23,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:07:39','','0000-00-00 00:00:00',0),(17322,2526,0,0,5521,'2025-12-10','16:05:00',0,259,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,5,0,0,'',0,0,'','','','','',2526,'H','I',290,24,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:07:39','','0000-00-00 00:00:00',0),(17323,2526,0,0,5521,'2025-12-08','16:05:00',0,259,'USG','USG0091','H','N',1.00,1200,1200,'A',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:07:39','vishal','2025-12-17 13:07:43',0),(17324,2526,0,0,5521,'2025-12-09','16:06:00',0,259,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',290,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:07:39','vishal','2025-12-17 13:07:43',0),(17325,2526,0,0,5426,'2025-12-10','16:08:00',0,256,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,5,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:10:31','vishal','2025-12-10 20:59:08',0),(17326,2526,0,0,5426,'2025-12-09','16:09:00',0,256,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',247,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:10:31','','0000-00-00 00:00:00',0),(17327,2526,0,0,5678,'2025-12-09','16:11:00',0,267,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,52,0,0,'',0,0,'','','','','',2526,'H','I',258,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:12:02','','0000-00-00 00:00:00',0),(17328,2526,0,0,5799,'2025-12-10','00:00:00',3874,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6392,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 16:12:36','janvi','2025-12-10 16:32:01',0),(17329,2526,0,0,5800,'2025-12-10','00:00:00',524,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6389,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 16:13:33','reception','2025-12-10 16:13:51',0),(17330,2526,0,0,5801,'2025-12-10','00:00:00',3875,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6390,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-10 16:14:08','urvashi','2025-12-10 16:14:18',0),(17331,2526,0,0,5527,'2025-12-10','16:13:00',0,260,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',261,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:14:09','riya','2025-12-13 14:08:10',0),(17332,2526,0,0,5527,'2025-12-10','16:13:00',0,260,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','','','','',2526,'H','I',261,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:14:09','riya','2025-12-13 14:08:10',0),(17333,2526,0,0,5307,'2025-12-10','16:16:00',0,250,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:18:10','','0000-00-00 00:00:00',0),(17334,2526,0,0,5307,'2025-12-09','16:16:00',0,250,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:18:10','','0000-00-00 00:00:00',0),(17335,2526,0,0,5307,'2025-12-08','16:16:00',0,250,'USG','USG0092','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:18:10','riya','2025-12-10 16:37:05',0),(17336,2526,0,0,5307,'2025-12-08','16:18:00',0,250,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:20:28','','0000-00-00 00:00:00',0),(17337,2526,0,0,5307,'2025-12-08','16:18:00',0,250,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:20:28','','0000-00-00 00:00:00',0),(17338,2526,0,0,5307,'2025-12-09','16:19:00',0,250,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:20:28','','0000-00-00 00:00:00',0),(17339,2526,0,0,5583,'2025-12-08','16:22:00',0,261,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',267,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:23:29','riya','2025-12-10 16:24:16',0),(17340,2526,0,0,5583,'2025-12-08','16:22:00',0,261,'WPRC','WPRC0089','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:23:29','riya','2025-12-14 12:31:43',0),(17341,2526,0,0,5583,'2025-12-09','16:22:00',0,261,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:23:29','riya','2025-12-14 12:31:43',0),(17342,2526,0,0,5583,'2025-12-10','16:22:00',0,261,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:23:29','riya','2025-12-14 12:31:43',0),(17343,2526,0,0,5802,'2025-12-10','00:00:00',1613,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6391,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 16:24:30','reception','2025-12-10 16:24:56',0),(17344,2526,0,0,4694,'2025-12-10','16:25:00',0,222,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,78,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:26:29','','0000-00-00 00:00:00',0),(17345,2526,0,0,5803,'2025-12-10','00:00:00',83,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-10 16:30:59','urvashi','2025-12-10 04:00:59',0),(17346,2526,0,0,5804,'2025-12-10','00:00:00',1463,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 16:33:38','reception','2025-12-10 04:03:38',0),(17347,2526,0,0,5163,'2025-12-09','16:28:00',0,245,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:34:16','riya','2025-12-10 16:34:44',0),(17348,2526,0,0,5163,'2025-12-10','16:29:00',0,245,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:34:16','','0000-00-00 00:00:00',0),(17349,2526,0,0,5163,'2025-12-09','16:29:00',0,245,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:34:16','riya','2025-12-10 16:34:44',0),(17350,2526,0,0,5163,'2025-12-09','16:29:00',0,245,'WPRC','WPRC0097','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:34:16','riya','2025-12-10 16:34:44',0),(17351,2526,0,0,5163,'2025-12-08','16:30:00',0,245,'USG','USG0095','H','N',1.00,1200,1200,'A',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:34:16','riya','2025-12-10 16:34:44',0),(17352,2526,0,0,5163,'2025-12-09','16:32:00',0,245,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,56,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:34:16','vishal','2025-12-12 19:32:42',0),(17353,2526,0,0,5163,'2025-12-10','16:32:00',0,245,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:34:16','','0000-00-00 00:00:00',0),(17354,2526,0,0,5163,'2025-12-10','16:32:00',0,245,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:34:16','','0000-00-00 00:00:00',0),(17355,2526,0,0,5163,'2025-12-09','16:32:00',0,245,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:34:16','vishal','2025-12-12 18:31:16',0),(17356,2526,0,0,5163,'2025-12-09','16:33:00',0,245,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:34:16','','0000-00-00 00:00:00',0),(17357,2526,0,0,5588,'2025-12-10','16:35:00',3730,262,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',249,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 16:36:27','riya','2025-12-11 12:52:14',0),(17358,2526,0,0,5425,'2025-12-10','16:30:00',0,255,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','310','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 04:07:58','riya','2025-12-10 17:17:32',0),(17359,2526,0,0,5425,'2025-12-10','16:30:00',0,255,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','310','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 04:07:58','riya','2025-12-10 17:17:32',0),(17360,2526,0,0,5425,'2025-12-10','16:30:00',0,255,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','310','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 04:07:58','riya','2025-12-10 17:17:32',0),(17361,2526,0,0,5425,'2025-12-10','16:30:00',0,255,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','310','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 04:07:58','riya','2025-12-10 17:17:32',0),(17362,2526,0,0,5425,'2025-12-10','16:30:00',0,255,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','310','','','',2526,'H','I',251,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 04:07:58','riya','2025-12-10 17:17:32',0),(17363,2526,0,0,5663,'2025-12-10','16:00:00',0,266,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',255,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 04:07:59','vishal','2025-12-11 20:51:58',0),(17364,2526,0,0,5663,'2025-12-10','16:00:00',0,266,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',255,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 04:07:59','vishal','2025-12-11 20:51:58',0),(17365,2526,0,0,5663,'2025-12-10','16:00:00',0,266,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',255,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 04:07:59','vishal','2025-12-11 20:51:58',0),(17366,2526,0,0,5663,'2025-12-10','16:00:00',0,266,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',255,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 04:07:59','vishal','2025-12-11 20:51:58',0),(17367,2526,0,0,5663,'2025-12-10','16:00:00',0,266,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',255,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 04:07:59','vishal','2025-12-11 20:51:58',0),(17368,2526,0,0,5805,'2025-12-10','00:00:00',74,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 16:39:50','reception','2025-12-10 04:09:50',0),(17369,2526,0,0,5806,'2025-12-10','00:00:00',3876,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6393,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 16:53:51','reception','2025-12-10 16:54:36',0),(17370,2526,0,0,5807,'2025-12-10','00:00:00',1133,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6394,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 16:55:38','reception','2025-12-10 16:56:01',0),(17371,2526,0,0,5808,'2025-12-10','00:00:00',3877,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6395,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-10 16:57:47','manshi','2025-12-10 16:58:15',0),(17372,2526,0,0,5809,'2025-12-10','00:00:00',3878,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6396,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 16:58:02','reception','2025-12-10 16:58:36',0),(17373,2526,0,0,5810,'2025-12-10','00:00:00',3053,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6397,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-10 17:03:39','priyanshi','2025-12-10 17:03:46',0),(17374,2526,0,0,5811,'2025-12-10','00:00:00',3879,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-10 17:06:57','priyanshi','2025-12-10 04:36:57',0),(17375,2526,0,0,5812,'2025-12-10','00:00:00',3880,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',6398,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 17:09:13','reception','2025-12-10 17:09:55',0),(17376,2526,0,0,5813,'2025-12-10','00:00:00',3881,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6399,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-10 17:15:56','priyanshi','2025-12-10 17:16:46',0),(17377,2526,0,0,5425,'2025-12-09','17:10:00',0,255,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 17:17:32','','0000-00-00 00:00:00',0),(17378,2526,0,0,5814,'2025-12-10','00:00:00',3210,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6400,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 17:17:39','reception','2025-12-10 17:18:28',0),(17379,2526,0,0,4688,'2025-12-09','17:18:00',0,218,'ROOM','ROOM0008','H','N',12.00,100,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 17:21:43','','0000-00-00 00:00:00',0),(17380,2526,0,0,4688,'2025-12-09','17:19:00',0,218,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 17:21:43','','0000-00-00 00:00:00',0),(17381,2526,0,0,4688,'2025-12-08','17:21:00',0,218,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,248,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 17:21:43','','0000-00-00 00:00:00',0),(17382,2526,0,0,5815,'2025-12-10','00:00:00',3882,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-10 17:22:22','priyanshi','2025-12-10 04:52:22',0),(17383,2526,0,0,5603,'2025-12-09','17:22:00',0,263,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',246,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 17:24:13','','0000-00-00 00:00:00',0),(17384,2526,0,0,5603,'2025-12-09','17:22:00',0,263,'WPRC','WPRC0078','H','N',2.00,300,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',246,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 17:24:13','','0000-00-00 00:00:00',0),(17385,2526,0,0,5603,'2025-12-09','17:23:00',0,263,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',246,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 17:24:13','','0000-00-00 00:00:00',0),(17386,2526,0,0,5445,'2025-12-10','17:24:00',0,258,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 17:26:03','riya','2025-12-11 13:14:27',0),(17387,2526,0,0,5445,'2025-12-10','17:25:00',0,258,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 17:26:03','','0000-00-00 00:00:00',0),(17388,2526,0,0,4694,'2025-12-10','17:00:00',0,222,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',262,79,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 04:56:41','riya','2025-12-12 10:37:06',0),(17389,2526,0,0,4694,'2025-12-10','17:00:00',0,222,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',262,80,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 04:56:41','riya','2025-12-12 10:37:06',0),(17390,2526,0,0,4694,'2025-12-10','17:00:00',0,222,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',262,81,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 04:56:41','riya','2025-12-12 10:37:06',0),(17391,2526,0,0,4694,'2025-12-10','17:00:00',0,222,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',262,82,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 04:56:41','riya','2025-12-12 10:37:06',0),(17392,2526,0,0,4694,'2025-12-10','17:00:00',0,222,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',262,83,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 04:56:41','riya','2025-12-12 10:37:06',0),(17393,2526,0,0,5816,'2025-12-10','00:00:00',3883,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6401,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 17:28:00','reception','2025-12-10 17:34:38',0),(17394,2526,0,0,5817,'2025-12-10','00:00:00',3884,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6402,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 17:35:49','reception','2025-12-10 17:36:17',0),(17395,2526,0,0,5801,'2025-12-10','17:42:51',3875,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6403,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 17:42:51','reception','2025-12-10 17:42:51',0),(17396,2526,0,0,5801,'2025-12-10','17:42:51',3875,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6403,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 17:42:51','reception','2025-12-10 17:42:51',0),(17397,2526,0,0,5801,'2025-12-10','17:42:51',3875,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6403,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 17:42:51','reception','2025-12-10 17:42:51',0),(17398,2526,0,0,5723,'2025-12-10','17:42:00',0,269,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',243,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 17:42:53','','0000-00-00 00:00:00',0),(17399,2526,0,0,5818,'2025-12-10','00:00:00',1587,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6404,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-10 17:50:59','priyanshi','2025-12-10 17:51:51',0),(17400,2526,0,0,5819,'2025-12-10','00:00:00',3885,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6405,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-10 17:54:12','priyanshi','2025-12-10 17:55:19',0),(17401,2526,0,0,5799,'2025-12-10','17:55:56',3874,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6406,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 17:55:56','reception','2025-12-10 17:55:56',0),(17402,2526,0,0,5799,'2025-12-10','17:55:56',3874,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6406,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 17:55:56','reception','2025-12-10 17:55:56',0),(17403,2526,0,0,5799,'2025-12-10','17:55:56',3874,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6406,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 17:55:56','reception','2025-12-10 17:55:56',0),(17404,2526,0,0,5820,'2025-12-10','00:00:00',3886,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6407,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 17:57:44','reception','2025-12-10 17:58:12',0),(17405,2526,0,0,5821,'2025-12-10','00:00:00',3887,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6408,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 17:59:39','janvi','2025-12-10 18:00:32',0),(17406,2526,0,0,5822,'2025-12-10','00:00:00',994,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6409,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 18:00:22','reception','2025-12-10 18:00:55',0),(17407,2526,0,0,5823,'2025-12-10','00:00:00',3888,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6412,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-10 18:01:09','priyanshi','2025-12-10 18:04:24',0),(17408,2526,0,0,5824,'2025-12-10','00:00:00',1864,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6410,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 18:01:32','reception','2025-12-10 18:01:52',0),(17409,2526,0,0,5825,'2025-12-10','00:00:00',3889,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6411,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 18:02:45','janvi','2025-12-10 18:03:11',0),(17410,2526,0,0,5826,'2025-12-10','18:16:45',2444,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6413,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 18:16:45','reception','2025-12-10 18:16:45',0),(17411,2526,0,0,5817,'2025-12-10','18:24:24',3884,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6414,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 18:24:24','reception','2025-12-10 18:24:24',0),(17412,2526,0,0,5817,'2025-12-10','18:24:24',3884,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6414,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 18:24:24','reception','2025-12-10 18:24:24',0),(17413,2526,0,0,5817,'2025-12-10','18:24:24',3884,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6414,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 18:24:24','reception','2025-12-10 18:24:24',0),(17414,2526,0,0,5820,'2025-12-10','18:26:46',3886,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6415,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 18:26:46','reception','2025-12-10 18:26:46',0),(17415,2526,0,0,5820,'2025-12-10','18:26:46',3886,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6415,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 18:26:46','reception','2025-12-10 18:26:46',0),(17416,2526,0,0,5820,'2025-12-10','18:26:46',3886,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6415,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 18:26:46','reception','2025-12-10 18:26:46',0),(17417,2526,0,0,5827,'2025-12-10','00:00:00',2484,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6416,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 18:29:04','reception','2025-12-10 18:29:21',0),(17418,2526,0,0,5828,'2025-12-10','00:00:00',2279,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6417,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-10 18:32:17','priyanshi','2025-12-10 19:10:12',0),(17419,2526,0,0,5829,'2025-12-10','00:00:00',3890,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-10 18:34:56','manshi','2025-12-10 06:04:56',0),(17420,2526,0,0,5830,'2025-12-10','00:00:00',3891,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6418,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 18:34:58','reception','2025-12-10 18:35:35',0),(17421,2526,0,0,5831,'2025-12-10','18:30:00',0,273,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',276,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 18:37:51','riya','2025-12-12 10:52:04',0),(17422,2526,0,0,5831,'2025-12-10','18:30:00',0,273,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',276,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 18:37:51','riya','2025-12-12 10:52:04',0),(17423,2526,0,0,5831,'2025-12-10','18:30:00',0,273,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',276,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 06:07:51','riya','2025-12-12 10:52:04',0),(17424,2526,0,0,5831,'2025-12-10','18:30:00',0,273,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',276,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 06:07:51','riya','2025-12-12 10:52:04',0),(17425,2526,0,0,5831,'2025-12-10','18:30:00',0,273,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',276,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 06:07:51','riya','2025-12-12 10:52:04',0),(17426,2526,0,0,5831,'2025-12-10','18:30:00',0,273,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 06:07:51','riya','2025-12-12 10:53:05',0),(17427,2526,0,0,5831,'2025-12-10','18:30:00',0,273,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',2526,'H','I',276,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 06:07:51','riya','2025-12-12 10:52:04',0),(17428,2526,0,0,5832,'2025-12-10','00:00:00',3892,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6419,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-10 18:39:13','priyanshi','2025-12-10 18:39:53',0),(17429,2526,0,0,5833,'2025-12-10','00:00:00',1796,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6420,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 18:47:17','reception','2025-12-10 18:47:35',0),(17430,2526,0,0,5834,'2025-12-10','00:00:00',3893,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-10 18:51:11','priyanshi','2025-12-10 06:21:11',0),(17431,2526,0,0,5835,'2025-12-10','00:00:00',1531,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6421,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 18:53:44','reception','2025-12-10 18:54:15',0),(17432,2526,0,0,5836,'2025-12-10','00:00:00',3894,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6422,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 18:57:09','janvi','2025-12-10 18:58:12',0),(17433,2526,0,0,5837,'2025-12-10','00:00:00',3895,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6424,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-10 19:06:14','manshi','2025-12-10 19:16:42',0),(17434,2526,0,0,5838,'2025-12-10','00:00:00',2636,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6426,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-10 19:14:21','shweta','2025-12-10 19:28:39',0),(17435,2526,0,0,5839,'2025-12-10','00:00:00',3896,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-10 19:16:03','reception','2025-12-10 06:46:03',0),(17436,2526,0,0,5840,'2025-12-10','19:23:40',3538,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6425,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 19:23:40','janvi','2025-12-10 19:23:40',0),(17437,2526,0,0,5841,'2025-12-10','00:00:00',2930,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 19:29:42','janvi','2025-12-10 06:59:42',0),(17438,2526,0,0,5842,'2025-12-10','00:00:00',3897,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6427,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 19:31:26','janvi','2025-12-10 19:31:47',0),(17439,2526,0,0,5843,'2025-12-10','00:00:00',3898,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6428,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-10 19:31:53','shweta','2025-12-10 19:32:04',0),(17440,2526,0,0,5844,'2025-12-10','00:00:00',3899,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6429,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-10 19:33:25','shweta','2025-12-10 19:35:11',0),(17441,2526,0,0,5845,'2025-12-10','00:00:00',3900,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6430,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-10 19:37:56','janvi','2025-12-10 19:40:15',0),(17442,2526,0,0,5846,'2025-12-10','00:00:00',3901,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6431,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-10 20:09:37','shweta','2025-12-10 20:11:42',0),(17443,2526,0,0,5847,'2025-12-10','20:17:23',3310,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6432,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-10 20:17:23','shweta','2025-12-10 20:17:23',0),(17444,2526,0,0,5732,'2025-12-10','20:24:00',0,271,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',245,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 20:25:09','','0000-00-00 00:00:00',0),(17445,2526,0,0,5728,'2025-12-10','20:28:00',0,270,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',244,5,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 20:29:05','','0000-00-00 00:00:00',0),(17446,2526,0,0,5728,'2025-12-10','20:31:00',0,270,'CARE','CARE0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',244,6,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 20:33:52','','0000-00-00 00:00:00',0),(17447,2526,0,0,5728,'2025-12-10','20:31:00',0,270,'SURG','SURG0016','H','N',1.00,4350,4350,'P',0,0,0.00,0.00,4350.00,4350,3,0,0,'',0,0,'','','','','',2526,'H','I',244,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 20:33:52','','0000-00-00 00:00:00',0),(17448,2526,0,0,5728,'2025-12-10','20:32:00',0,270,'SURG','SURG0015','H','N',1.00,1450,1450,'P',0,0,0.00,0.00,1450.00,1450,3,0,0,'',0,0,'','','','','',2526,'H','I',244,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 20:33:52','','0000-00-00 00:00:00',0),(17449,2526,0,0,5732,'2025-12-10','20:35:00',0,271,'CARE','CARE0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',245,6,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 20:35:50','','0000-00-00 00:00:00',0),(17450,2526,0,0,5732,'2025-12-10','20:37:00',0,271,'SURG','SURG0014','H','N',1.00,4350,4350,'P',0,0,0.00,0.00,4350.00,4350,3,0,0,'',0,0,'','','','','',2526,'H','I',245,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 20:38:54','','0000-00-00 00:00:00',0),(17451,2526,0,0,5732,'2025-12-10','20:37:00',0,271,'SURG','SURG0015','H','N',1.00,1450,1450,'P',0,0,0.00,0.00,1450.00,1450,3,0,0,'',0,0,'','','','','',2526,'H','I',245,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 20:38:54','','0000-00-00 00:00:00',0),(17452,2526,0,0,5846,'2025-12-10','20:45:01',3901,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',6433,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-10 20:45:01','shweta','2025-12-10 20:45:01',0),(17453,2526,0,0,5426,'2025-12-10','20:53:00',0,256,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,5,0,0,'',0,0,'','','','','',2526,'H','I',247,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 20:55:20','vishal','2025-12-10 20:58:21',0),(17454,2526,0,0,5426,'2025-12-10','20:54:00',0,256,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','I',247,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 20:55:20','','0000-00-00 00:00:00',0),(17455,2526,0,0,5426,'2025-12-10','20:54:00',0,256,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','I',247,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 20:55:20','','0000-00-00 00:00:00',0),(17456,2526,0,0,5426,'2025-12-09','20:56:00',0,256,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','','','','',2526,'H','I',247,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 20:57:28','vishal','2025-12-10 20:58:21',0),(17457,2526,0,0,5426,'2025-12-09','20:56:00',0,256,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','','','','',2526,'H','I',247,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 20:57:28','vishal','2025-12-10 20:58:21',0),(17458,2526,0,0,5848,'2025-12-10','22:15:00',0,274,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 22:51:18','vishal','2025-12-11 20:08:42',0),(17459,2526,0,0,5848,'2025-12-10','22:15:00',0,274,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 22:51:18','vishal','2025-12-11 20:08:42',0),(17460,2526,0,0,5848,'2025-12-10','22:15:00',0,274,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 10:21:18','vishal','2025-12-11 20:08:42',0),(17461,2526,0,0,5848,'2025-12-10','22:15:00',0,274,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 10:21:18','vishal','2025-12-11 20:08:42',0),(17462,2526,0,0,5848,'2025-12-10','22:15:00',0,274,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 10:21:18','vishal','2025-12-11 20:08:42',0),(17463,2526,0,0,5848,'2025-12-11','22:15:00',0,274,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','207','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 10:21:18','riya','2025-12-12 11:57:56',0),(17464,2526,0,0,5848,'2025-12-10','22:15:00',0,274,'DRC','DRC0019','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,78,0,0,'',0,0,'','207','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-10 10:21:18','riya','2025-12-12 11:57:56',0),(17465,2526,0,0,5849,'2025-12-11','00:00:00',3902,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 08:38:55','reception','2025-12-10 20:08:55',0),(17466,2526,0,0,5849,'2025-12-11','08:42:23',3902,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',6434,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 08:42:23','reception','2025-12-11 08:42:23',0),(17467,2526,0,0,5849,'2025-12-11','08:42:23',3902,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6434,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 08:42:23','reception','2025-12-11 08:42:23',0),(17468,2526,0,0,5849,'2025-12-11','08:42:23',3902,0,'OPWD','OPWD0023','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',6434,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 08:42:23','reception','2025-12-11 08:42:23',0),(17469,2526,0,0,5850,'2025-12-11','00:00:00',3903,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6435,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 10:00:40','drashti','2025-12-11 10:02:02',0),(17470,2526,0,0,5851,'2025-12-11','00:00:00',3904,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6436,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 10:19:15','janvi','2025-12-11 10:19:54',0),(17471,2526,0,0,5852,'2025-12-11','00:00:00',1118,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6438,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 10:21:01','drashti','2025-12-11 10:23:15',0),(17472,2526,0,0,5853,'2025-12-11','00:00:00',3905,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6437,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 10:22:35','janvi','2025-12-11 10:23:01',0),(17473,2526,0,0,5854,'2025-12-11','00:00:00',3906,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6439,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 10:31:47','reception','2025-12-11 10:33:39',0),(17474,2526,0,0,5856,'2025-12-11','00:00:00',3907,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6440,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 10:36:32','reception','2025-12-11 10:36:57',0),(17475,2526,0,0,5857,'2025-12-11','00:00:00',3908,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6441,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 10:45:07','reception','2025-12-11 10:45:31',0),(17476,2526,0,0,5858,'2025-12-11','00:00:00',1784,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6442,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 10:47:06','reception','2025-12-11 10:48:36',0),(17477,2526,0,0,5859,'2025-12-11','00:00:00',2220,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6443,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-11 10:51:58','manshi','2025-12-11 10:52:09',0),(17478,2526,0,0,5860,'2025-12-11','00:00:00',3909,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6444,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 10:53:38','drashti','2025-12-11 10:53:58',0),(17479,2526,0,0,5861,'2025-12-11','00:00:00',3910,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6445,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 10:57:37','reception','2025-12-11 10:57:58',0),(17480,2526,0,0,5862,'2025-12-11','00:00:00',2639,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6446,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 10:58:38','reception','2025-12-11 10:58:59',0),(17481,2526,0,0,5863,'2025-12-11','00:00:00',2782,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6447,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 10:59:20','reception','2025-12-11 10:59:31',0),(17482,2526,0,0,5864,'2025-12-11','00:00:00',3231,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6448,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 11:01:45','reception','2025-12-11 11:02:02',0),(17483,2526,0,0,5865,'2025-12-11','00:00:00',2218,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6449,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 11:02:40','reception','2025-12-11 11:03:52',0),(17484,2526,0,0,5854,'2025-12-11','11:05:59',3906,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6450,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 11:05:59','reception','2025-12-11 11:05:59',0),(17485,2526,0,0,5854,'2025-12-11','11:05:59',3906,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6450,2,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 11:05:59','reception','2025-12-11 11:05:59',0),(17486,2526,0,0,5866,'2025-12-11','00:00:00',3500,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',6451,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 11:08:34','reception','2025-12-11 11:08:52',0),(17487,2526,0,0,5867,'2025-12-11','00:00:00',3911,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6454,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-11 11:15:36','manshi','2025-12-11 11:19:39',0),(17488,2526,0,0,5868,'2025-12-11','00:00:00',3382,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6453,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 11:18:30','drashti','2025-12-11 11:19:13',0),(17489,2526,0,0,5859,'2025-12-11','11:19:09',2220,0,'XRY','XRY0390','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',6452,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-11 11:19:09','manshi','2025-12-11 11:19:09',0),(17490,2526,0,0,5869,'2025-12-11','00:00:00',3912,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6456,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 11:21:00','janvi','2025-12-11 11:22:04',0),(17491,2526,0,0,5870,'2025-12-11','00:00:00',1530,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6455,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 11:21:30','drashti','2025-12-11 11:21:44',0),(17492,2526,0,0,5871,'2025-12-11','00:00:00',3913,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6458,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 11:22:55','drashti','2025-12-11 11:23:53',0),(17493,2526,0,0,5855,'2025-12-11','11:23:41',3693,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6457,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 11:23:41','janvi','2025-12-11 11:23:41',0),(17494,2526,0,0,5872,'2025-12-11','11:25:00',2118,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6459,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 11:25:00','janvi','2025-12-11 11:25:00',0),(17495,2526,0,0,5856,'2025-12-11','11:25:07',3907,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6460,1,123,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 11:25:07','reception','2025-12-11 11:25:07',0),(17496,2526,0,0,5856,'2025-12-11','11:25:07',3907,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6460,2,540,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 11:25:07','reception','2025-12-11 11:25:07',0),(17497,2526,0,0,5856,'2025-12-11','11:25:07',3907,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6460,3,737,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 11:25:07','reception','2025-12-11 11:25:07',0),(17498,2526,0,0,5873,'2025-12-11','00:00:00',3914,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6461,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 11:26:09','drashti','2025-12-11 11:26:33',0),(17499,2526,0,0,5874,'2025-12-11','00:00:00',3915,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6462,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 11:27:11','reception','2025-12-11 11:28:01',0),(17500,2526,0,0,5875,'2025-12-11','00:00:00',3306,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6463,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 11:33:11','reception','2025-12-11 11:33:27',0),(17501,2526,0,0,5588,'2025-12-10','18:45:00',3730,262,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',249,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-10 23:05:43','riya','2025-12-11 12:19:21',0),(17502,2526,0,0,5588,'2025-12-10','18:45:00',3730,262,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',249,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-10 23:05:43','riya','2025-12-11 12:19:21',0),(17503,2526,0,0,5588,'2025-12-10','18:45:00',3730,262,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','411','','','',2526,'H','I',249,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-10 23:05:43','riya','2025-12-11 12:19:21',0),(17504,2526,0,0,5588,'2025-12-10','18:45:00',3730,262,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','411','','','',2526,'H','I',249,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-10 23:05:43','riya','2025-12-11 12:19:21',0),(17505,2526,0,0,5588,'2025-12-10','18:45:00',3730,262,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',249,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-10 23:05:43','riya','2025-12-11 12:19:21',0),(17506,2526,0,0,5876,'2025-12-11','00:00:00',3916,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6542,1,200,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 11:36:02','drashti','2025-12-11 19:15:00',0),(17507,2526,0,0,5877,'2025-12-11','00:00:00',185,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6468,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 11:40:16','reception','2025-12-11 11:45:32',0),(17508,2526,0,0,5864,'2025-12-11','11:41:45',3231,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6464,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 11:41:45','drashti','2025-12-11 11:41:45',0),(17509,2526,0,0,5864,'2025-12-11','11:41:45',3231,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',6464,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 11:41:45','drashti','2025-12-11 11:41:45',0),(17510,2526,0,0,5878,'2025-12-11','00:00:00',3917,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6465,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 11:41:48','reception','2025-12-11 11:42:18',0),(17511,2526,0,0,5879,'2025-12-11','00:00:00',3918,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6466,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 11:43:12','reception','2025-12-11 11:43:59',0),(17512,2526,0,0,5880,'2025-12-11','00:00:00',629,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6467,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 11:44:04','drashti','2025-12-11 11:44:23',0),(17513,2526,0,0,5881,'2025-12-11','00:00:00',3919,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-11 11:49:22','manshi','2025-12-10 23:19:22',0),(17514,2526,0,0,5882,'2025-12-11','00:00:00',3920,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6469,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 11:49:39','reception','2025-12-11 11:50:04',0),(17515,2526,0,0,5722,'2025-12-10','19:30:00',0,268,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','308','','','',2526,'H','I',248,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 23:20:02','riya','2025-12-11 12:06:20',0),(17516,2526,0,0,5722,'2025-12-10','19:30:00',0,268,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','308','','','',2526,'H','I',248,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 23:20:02','riya','2025-12-11 12:06:20',0),(17517,2526,0,0,5722,'2025-12-10','19:30:00',0,268,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','308','','','',2526,'H','I',248,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 23:20:02','riya','2025-12-11 12:06:20',0),(17518,2526,0,0,5722,'2025-12-10','19:30:00',0,268,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',2526,'H','I',248,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 23:20:02','riya','2025-12-11 12:06:20',0),(17519,2526,0,0,5722,'2025-12-10','19:30:00',0,268,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',2526,'H','I',248,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-10 23:20:02','riya','2025-12-11 12:06:20',0),(17520,2526,0,0,5881,'2025-12-11','11:50:29',3919,0,'XRY','XRY0189','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6470,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-11 11:50:29','manshi','2025-12-11 11:50:29',0),(17521,2526,0,0,5883,'2025-12-11','11:55:08',2738,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6471,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 11:55:08','drashti','2025-12-11 11:55:08',0),(17522,2526,0,0,5884,'2025-12-11','00:00:00',3037,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6472,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 12:02:09','drashti','2025-12-11 12:03:36',0),(17523,2526,0,0,5885,'2025-12-11','00:00:00',3921,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6473,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 12:04:31','drashti','2025-12-11 12:05:12',0),(17524,2526,0,0,5722,'2025-12-09','12:02:00',0,268,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',248,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 12:06:20','','0000-00-00 00:00:00',0),(17525,2526,0,0,5722,'2025-12-10','12:02:00',0,268,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',248,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 12:06:20','','0000-00-00 00:00:00',0),(17526,2526,0,0,5722,'2025-12-11','12:02:00',0,268,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',248,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 12:06:20','','0000-00-00 00:00:00',0),(17527,2526,0,0,5722,'2025-12-11','12:03:00',0,268,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',248,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 12:06:20','','0000-00-00 00:00:00',0),(17528,2526,0,0,5886,'2025-12-11','00:00:00',3922,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6474,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 12:07:24','drashti','2025-12-11 12:08:21',0),(17529,2526,0,0,5887,'2025-12-11','00:00:00',3923,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6475,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 12:09:14','reception','2025-12-11 12:09:47',0),(17530,2526,0,0,5888,'2025-12-11','00:00:00',3924,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6476,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 12:17:01','drashti','2025-12-11 12:17:40',0),(17531,2526,0,0,5889,'2025-12-11','12:17:41',3605,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6477,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 12:17:41','janvi','2025-12-11 12:17:41',0),(17532,2526,0,0,5890,'2025-12-11','00:00:00',3925,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6478,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 12:19:07','reception','2025-12-11 12:20:27',0),(17533,2526,0,0,5588,'2025-12-11','12:16:00',3730,262,'WPRC','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',249,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 12:19:21','riya','2025-12-11 12:44:34',0),(17534,2526,0,0,5891,'2025-12-11','00:00:00',3926,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6479,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 12:24:39','janvi','2025-12-11 12:25:10',0),(17535,2526,0,0,5892,'2025-12-11','00:00:00',3927,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6480,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 12:29:23','drashti','2025-12-11 12:30:20',0),(17536,2526,0,0,5893,'2025-12-11','00:00:00',399,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6481,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 12:34:15','drashti','2025-12-11 12:34:49',0),(17537,2526,0,0,5894,'2025-12-11','00:00:00',3069,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6482,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 12:35:50','drashti','2025-12-11 12:36:06',0),(17538,2526,0,0,5895,'2025-12-11','00:00:00',3928,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',6483,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 12:36:11','reception','2025-12-11 12:37:30',0),(17539,2526,0,0,5896,'2025-12-11','12:39:42',3305,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6484,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 12:39:42','reception','2025-12-11 12:39:42',0),(17540,2526,0,0,5897,'2025-12-11','00:00:00',3929,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6485,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 12:43:33','drashti','2025-12-11 12:44:09',0),(17541,2526,0,0,5588,'2025-12-11','12:25:00',3730,262,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',249,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 12:44:34','','0000-00-00 00:00:00',0),(17542,2526,0,0,5588,'2025-12-11','12:39:00',3730,262,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',249,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 12:44:34','','0000-00-00 00:00:00',0),(17543,2526,0,0,5899,'2025-12-11','00:00:00',1369,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6486,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 12:45:00','reception','2025-12-11 12:45:15',0),(17544,2526,0,0,5898,'2025-12-11','12:45:35',3673,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6487,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-11 12:45:35','manshi','2025-12-11 12:45:35',0),(17545,2526,0,0,5900,'2025-12-11','00:00:00',3930,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6488,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 12:45:40','drashti','2025-12-11 12:46:22',0),(17546,2526,0,0,5901,'2025-12-11','00:00:00',3931,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6489,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 12:47:27','reception','2025-12-11 12:48:36',0),(17547,2526,0,0,5902,'2025-12-11','00:00:00',3932,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6490,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 12:54:37','reception','2025-12-11 12:55:12',0),(17548,2526,0,0,5897,'2025-12-11','12:57:42',3929,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',6491,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 12:57:42','janvi','2025-12-11 12:57:42',0),(17549,2526,0,0,5903,'2025-12-11','00:00:00',1235,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6492,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 13:10:44','drashti','2025-12-11 13:10:59',0),(17550,2526,0,0,5904,'2025-12-11','00:00:00',3933,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6493,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 13:11:38','janvi','2025-12-11 13:12:13',0),(17551,2526,0,0,5895,'2025-12-11','13:13:08',3928,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6494,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 13:13:08','reception','2025-12-11 13:13:08',0),(17552,2526,0,0,5445,'2025-12-11','13:12:00',0,258,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:14:27','','0000-00-00 00:00:00',0),(17553,2526,0,0,5445,'2025-12-11','13:13:00',0,258,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:14:27','','0000-00-00 00:00:00',0),(17554,2526,0,0,5445,'2025-12-11','13:13:00',0,258,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',250,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:14:27','','0000-00-00 00:00:00',0),(17555,2526,0,0,5905,'2025-12-11','00:00:00',3934,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6495,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 13:19:27','drashti','2025-12-11 13:20:31',0),(17556,2526,0,0,5425,'2025-12-11','13:20:00',0,255,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:23:35','','0000-00-00 00:00:00',0),(17557,2526,0,0,5425,'2025-12-10','13:20:00',0,255,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:23:35','','0000-00-00 00:00:00',0),(17558,2526,0,0,5425,'2025-12-11','13:20:00',0,255,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:23:35','','0000-00-00 00:00:00',0),(17559,2526,0,0,5425,'2025-12-08','13:20:00',0,255,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:23:35','','0000-00-00 00:00:00',0),(17560,2526,0,0,5425,'2025-12-09','13:21:00',0,255,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:23:35','','0000-00-00 00:00:00',0),(17561,2526,0,0,5425,'2025-12-11','13:21:00',0,255,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:23:35','','0000-00-00 00:00:00',0),(17562,2526,0,0,5425,'2025-12-10','13:21:00',0,255,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:23:35','','0000-00-00 00:00:00',0),(17563,2526,0,0,5425,'2025-12-09','13:22:00',0,255,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:23:35','','0000-00-00 00:00:00',0),(17564,2526,0,0,5425,'2025-12-11','13:22:00',0,255,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:23:35','','0000-00-00 00:00:00',0),(17565,2526,0,0,5425,'2025-12-09','13:22:00',0,255,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:23:35','','0000-00-00 00:00:00',0),(17566,2526,0,0,5425,'2025-12-10','13:22:00',0,255,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:23:35','','0000-00-00 00:00:00',0),(17567,2526,0,0,5425,'2025-12-11','13:23:00',0,255,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',251,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:23:35','','0000-00-00 00:00:00',0),(17568,2526,0,0,5874,'2025-12-11','13:35:27',3915,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6496,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 13:35:27','reception','2025-12-11 13:35:27',0),(17569,2526,0,0,5874,'2025-12-11','13:35:27',3915,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6496,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 13:35:27','reception','2025-12-11 13:35:27',0),(17570,2526,0,0,5874,'2025-12-11','13:35:27',3915,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6496,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 13:35:27','reception','2025-12-11 13:35:27',0),(17571,2526,0,0,5307,'2025-12-10','17:30:00',0,250,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 01:06:19','riya','2025-12-11 13:40:38',0),(17572,2526,0,0,5307,'2025-12-10','17:30:00',0,250,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 01:06:19','riya','2025-12-11 13:40:38',0),(17573,2526,0,0,5307,'2025-12-10','17:30:00',0,250,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','402','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 01:06:19','riya','2025-12-11 13:40:38',0),(17574,2526,0,0,5307,'2025-12-10','17:30:00',0,250,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','402','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 01:06:19','riya','2025-12-11 13:40:38',0),(17575,2526,0,0,5307,'2025-12-10','17:30:00',0,250,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',253,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 01:06:19','riya','2025-12-11 13:40:38',0),(17576,2526,0,0,5307,'2025-12-11','13:37:00',0,250,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:40:38','','0000-00-00 00:00:00',0),(17577,2526,0,0,5307,'2025-12-11','13:38:00',0,250,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:40:38','','0000-00-00 00:00:00',0),(17578,2526,0,0,5307,'2025-12-10','13:39:00',0,250,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:40:38','riya','2025-12-11 13:41:36',0),(17579,2526,0,0,5307,'2025-12-11','13:39:00',0,250,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',253,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:40:38','riya','2025-12-11 13:41:36',0),(17580,2526,0,0,5901,'2025-12-11','13:47:26',3931,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6497,1,450,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 13:47:26','reception','2025-12-11 13:47:26',0),(17581,2526,0,0,5901,'2025-12-11','13:47:26',3931,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6497,2,450,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 13:47:26','reception','2025-12-11 13:47:26',0),(17582,2526,0,0,4688,'2025-12-10','13:51:00',0,218,'ROOM','ROOM0008','H','N',9.00,100,900,'P',0,0,0.00,0.00,900.00,900,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:56:07','','0000-00-00 00:00:00',0),(17583,2526,0,0,4688,'2025-12-11','13:51:00',0,218,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:56:07','','0000-00-00 00:00:00',0),(17584,2526,0,0,4688,'2025-12-10','13:51:00',0,218,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:56:07','','0000-00-00 00:00:00',0),(17585,2526,0,0,4688,'2025-12-11','13:53:00',0,218,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','I',252,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 13:56:07','','0000-00-00 00:00:00',0),(17586,2526,0,0,5906,'2025-12-11','00:00:00',3935,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 14:17:22','reception','2025-12-11 01:47:22',0),(17587,2526,0,0,5906,'2025-12-11','14:18:05',3935,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',6498,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 14:18:05','reception','2025-12-11 14:18:05',0),(17588,2526,0,0,5906,'2025-12-11','14:18:05',3935,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',6498,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 14:18:05','reception','2025-12-11 14:18:05',0),(17589,2526,0,0,5907,'2025-12-11','00:00:00',3936,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6499,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 16:02:35','reception','2025-12-11 16:03:09',0),(17590,2526,0,0,4777,'2025-12-09','15:59:00',0,225,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,94,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 16:03:19','','0000-00-00 00:00:00',0),(17591,2526,0,0,4777,'2025-12-10','15:59:00',0,225,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,95,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 16:03:19','','0000-00-00 00:00:00',0),(17592,2526,0,0,4777,'2025-12-11','15:59:00',0,225,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,96,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 16:03:19','','0000-00-00 00:00:00',0),(17593,2526,0,0,4777,'2025-12-09','16:00:00',0,225,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,97,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 16:03:19','','0000-00-00 00:00:00',0),(17594,2526,0,0,4777,'2025-12-10','16:00:00',0,225,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,98,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 16:03:19','','0000-00-00 00:00:00',0),(17595,2526,0,0,4777,'2025-12-11','16:02:00',0,225,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','D',271,87,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 16:03:19','vishal','2025-12-11 18:15:03',0),(17596,2526,0,0,5908,'2025-12-11','00:00:00',3937,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6500,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 16:07:42','reception','2025-12-11 16:32:25',0),(17597,2526,0,0,5791,'2025-12-10','16:09:00',0,272,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',254,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 16:10:54','','0000-00-00 00:00:00',0),(17598,2526,0,0,5791,'2025-12-10','16:09:00',0,272,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',254,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 16:10:54','','0000-00-00 00:00:00',0),(17599,2526,0,0,5791,'2025-12-11','16:09:00',0,272,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',254,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 16:10:54','','0000-00-00 00:00:00',0),(17600,2526,0,0,5791,'2025-12-11','16:10:00',0,272,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',254,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 16:10:54','','0000-00-00 00:00:00',0),(17601,2526,0,0,5791,'2025-12-10','16:10:00',0,272,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',254,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 16:10:54','','0000-00-00 00:00:00',0),(17602,2526,0,0,5791,'2025-12-11','16:10:00',0,272,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','','','','',2526,'H','I',254,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 16:10:54','','0000-00-00 00:00:00',0),(17603,2526,0,0,5909,'2025-12-11','00:00:00',3938,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6501,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 16:33:17','reception','2025-12-11 16:33:53',0),(17604,2526,0,0,5910,'2025-12-11','00:00:00',1286,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6502,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 16:37:56','reception','2025-12-11 16:38:13',0),(17605,2526,0,0,5911,'2025-12-11','00:00:00',3939,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',6503,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 16:39:20','reception','2025-12-11 16:39:36',0),(17606,2526,0,0,5912,'2025-12-11','16:44:19',3891,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6504,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 16:44:19','reception','2025-12-11 16:44:19',0),(17607,2526,0,0,5912,'2025-12-11','16:44:19',3891,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6504,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 16:44:19','reception','2025-12-11 16:44:19',0),(17608,2526,0,0,5913,'2025-12-11','00:00:00',3940,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6505,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 16:45:01','drashti','2025-12-11 16:45:13',0),(17609,2526,0,0,5914,'2025-12-11','16:58:39',3923,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6506,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 16:58:39','reception','2025-12-11 16:58:39',0),(17610,2526,0,0,5914,'2025-12-11','16:58:39',3923,0,'NEU1','NEU10019','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6506,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 16:58:39','reception','2025-12-11 16:58:39',0),(17611,2526,0,0,5914,'2025-12-11','16:58:39',3923,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6506,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 16:58:39','reception','2025-12-11 16:58:39',0),(17612,2526,0,0,5915,'2025-12-11','00:00:00',2670,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6507,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 17:00:09','reception','2025-12-11 17:00:26',0),(17613,2526,0,0,5916,'2025-12-11','00:00:00',3941,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6518,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-11 17:03:43','manshi','2025-12-11 18:10:21',0),(17614,2526,0,0,5907,'2025-12-11','17:04:27',3936,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6508,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 17:04:27','reception','2025-12-11 17:04:27',0),(17615,2526,0,0,5907,'2025-12-11','17:04:27',3936,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6508,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 17:04:27','reception','2025-12-11 17:04:27',0),(17616,2526,0,0,5907,'2025-12-11','17:04:27',3936,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6508,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 17:04:27','reception','2025-12-11 17:04:27',0),(17617,2526,0,0,5917,'2025-12-11','00:00:00',3347,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',6509,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 17:19:11','reception','2025-12-11 17:20:13',0),(17618,2526,0,0,5918,'2025-12-11','00:00:00',3942,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6510,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-11 17:24:55','manshi','2025-12-11 17:25:08',0),(17619,2526,0,0,5913,'2025-12-11','17:27:31',3940,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6511,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 17:27:31','reception','2025-12-11 17:27:31',0),(17620,2526,0,0,5913,'2025-12-11','17:27:31',3940,0,'NEU1','NEU10019','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6511,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 17:27:31','reception','2025-12-11 17:27:31',0),(17621,2526,0,0,5913,'2025-12-11','17:27:31',3940,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6511,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 17:27:31','reception','2025-12-11 17:27:31',0),(17622,2526,0,0,5919,'2025-12-11','00:00:00',3317,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6512,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 17:29:16','reception','2025-12-11 17:29:36',0),(17623,2526,0,0,5920,'2025-12-11','00:00:00',3943,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6513,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-11 17:38:20','manshi','2025-12-11 17:38:54',0),(17624,2526,0,0,5909,'2025-12-11','17:39:53',3938,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6514,1,29,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 17:39:53','reception','2025-12-11 17:39:53',0),(17625,2526,0,0,5909,'2025-12-11','17:39:53',3938,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6514,2,127,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 17:39:53','reception','2025-12-11 17:39:53',0),(17626,2526,0,0,5909,'2025-12-11','17:39:53',3938,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6514,3,144,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 17:39:53','reception','2025-12-11 17:39:53',0),(17627,2526,0,0,5921,'2025-12-11','17:46:11',3310,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6515,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 17:46:11','janvi','2025-12-11 17:46:11',0),(17628,2526,0,0,5922,'2025-12-11','00:00:00',3944,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',6516,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 18:02:39','reception','2025-12-11 18:03:32',0),(17629,2526,0,0,5923,'2025-12-11','00:00:00',1549,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6517,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 18:05:34','reception','2025-12-11 18:05:50',0),(17630,2526,0,0,5924,'2025-12-11','00:00:00',68,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6519,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 18:10:08','reception','2025-12-11 18:10:51',0),(17631,2526,0,0,5925,'2025-12-11','00:00:00',3945,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6520,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 18:14:29','drashti','2025-12-11 18:15:34',0),(17632,2526,0,0,5926,'2025-12-11','00:00:00',3946,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-11 18:14:40','manshi','2025-12-11 05:44:40',0),(17633,2526,0,0,4777,'2025-12-07','18:11:00',0,225,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,88,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(17634,2526,0,0,4777,'2025-12-08','18:11:00',0,225,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,89,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(17635,2526,0,0,4777,'2025-12-09','18:11:00',0,225,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,90,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(17636,2526,0,0,4777,'2025-12-10','18:11:00',0,225,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,91,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(17637,2526,0,0,4777,'2025-12-11','18:11:00',0,225,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,92,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(17638,2526,0,0,4777,'2025-12-07','18:12:00',0,225,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,93,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(17639,2526,0,0,4777,'2025-12-08','18:12:00',0,225,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,94,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(17640,2526,0,0,4777,'2025-12-09','18:12:00',0,225,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,95,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(17641,2526,0,0,4777,'2025-12-10','18:12:00',0,225,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,96,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(17642,2526,0,0,4777,'2025-12-11','18:13:00',0,225,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,97,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(17643,2526,0,0,4777,'2025-12-07','18:13:00',0,225,'CARE','CARE0002','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,98,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(17644,2526,0,0,4777,'2025-12-08','18:13:00',0,225,'CARE','CARE0002','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,99,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(17645,2526,0,0,4777,'2025-12-09','18:13:00',0,225,'CARE','CARE0002','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,100,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(17646,2526,0,0,4777,'2025-12-10','18:13:00',0,225,'CARE','CARE0002','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,101,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(17647,2526,0,0,4777,'2025-12-11','18:13:00',0,225,'CARE','CARE0002','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',271,102,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:15:03','','0000-00-00 00:00:00',0),(17648,2526,0,0,5927,'2025-12-11','00:00:00',3947,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6521,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 18:22:22','drashti','2025-12-11 18:23:31',0),(17649,2526,0,0,5928,'2025-12-11','00:00:00',1883,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6522,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 18:24:14','janvi','2025-12-11 18:24:24',0),(17650,2526,0,0,4017,'2025-12-11','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,201,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:53','vishal','2025-12-11 20:11:33',0),(17651,2526,0,0,4017,'2025-12-11','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,202,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:53','vishal','2025-12-11 20:11:33',0),(17652,2526,0,0,4017,'2025-12-11','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,203,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:53','vishal','2025-12-11 20:11:33',0),(17653,2526,0,0,4017,'2025-12-11','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,205,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:53','vishal','2025-12-21 11:20:51',0),(17654,2526,0,0,4017,'2025-12-11','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,206,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:53','vishal','2025-12-11 20:12:17',0),(17655,2526,0,0,4694,'2025-12-11','17:00:00',0,222,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',262,84,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:54','riya','2025-12-12 10:37:06',0),(17656,2526,0,0,4694,'2025-12-11','17:00:00',0,222,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',262,85,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:54','riya','2025-12-12 10:37:06',0),(17657,2526,0,0,4694,'2025-12-11','17:00:00',0,222,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',262,86,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:54','riya','2025-12-12 10:37:06',0),(17658,2526,0,0,4694,'2025-12-11','17:00:00',0,222,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',262,87,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:54','riya','2025-12-12 10:37:06',0),(17659,2526,0,0,4694,'2025-12-11','17:00:00',0,222,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',262,88,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:54','riya','2025-12-12 10:37:06',0),(17660,2526,0,0,5120,'2025-12-11','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:54','vishal','2025-12-11 18:53:42',0),(17661,2526,0,0,5120,'2025-12-11','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:54','vishal','2025-12-11 18:53:42',0),(17662,2526,0,0,5120,'2025-12-11','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:54','vishal','2025-12-11 18:53:42',0),(17663,2526,0,0,5120,'2025-12-11','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:54','vishal','2025-12-11 18:53:42',0),(17664,2526,0,0,5120,'2025-12-11','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:54','vishal','2025-12-11 18:53:42',0),(17665,2526,0,0,5163,'2025-12-11','15:00:00',0,245,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-12 10:49:04',0),(17666,2526,0,0,5163,'2025-12-11','15:00:00',0,245,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-12 10:49:04',0),(17667,2526,0,0,5163,'2025-12-11','15:00:00',0,245,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-12 10:49:04',0),(17668,2526,0,0,5163,'2025-12-11','15:00:00',0,245,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',257,73,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','vishal','2025-12-12 19:32:42',0),(17669,2526,0,0,5163,'2025-12-11','15:00:00',0,245,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',257,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','vishal','2025-12-12 18:31:16',0),(17670,2526,0,0,5521,'2025-12-11','12:30:00',0,259,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',0,'','',0,27,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-12 12:34:35',0),(17671,2526,0,0,5521,'2025-12-11','12:30:00',0,259,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',0,'','',0,28,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-12 12:34:35',0),(17672,2526,0,0,5521,'2025-12-11','12:30:00',0,259,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',0,'','',0,29,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-12 12:34:35',0),(17673,2526,0,0,5521,'2025-12-11','12:30:00',0,259,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',0,'','',0,30,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-12 12:34:35',0),(17674,2526,0,0,5521,'2025-12-11','12:30:00',0,259,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',0,'','',0,31,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-12 12:34:35',0),(17675,2526,0,0,5527,'2025-12-11','13:00:00',0,260,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-13 14:08:10',0),(17676,2526,0,0,5527,'2025-12-11','13:00:00',0,260,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-13 14:08:10',0),(17677,2526,0,0,5527,'2025-12-11','13:00:00',0,260,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-13 14:08:10',0),(17678,2526,0,0,5527,'2025-12-11','13:00:00',0,260,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-13 14:08:10',0),(17679,2526,0,0,5527,'2025-12-11','13:00:00',0,260,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-13 14:08:10',0),(17680,2526,0,0,5583,'2025-12-10','18:00:00',0,261,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-12 10:45:45',0),(17681,2526,0,0,5583,'2025-12-11','18:00:00',0,261,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-12 10:45:45',0),(17682,2526,0,0,5583,'2025-12-10','18:00:00',0,261,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-12 10:45:45',0),(17683,2526,0,0,5583,'2025-12-11','18:00:00',0,261,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-12 10:45:45',0),(17684,2526,0,0,5583,'2025-12-10','18:00:00',0,261,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-12 10:45:45',0),(17685,2526,0,0,5583,'2025-12-11','18:00:00',0,261,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-12 10:45:45',0),(17686,2526,0,0,5583,'2025-12-10','18:00:00',0,261,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-12 10:45:45',0),(17687,2526,0,0,5583,'2025-12-11','18:00:00',0,261,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-12 10:45:45',0),(17688,2526,0,0,5583,'2025-12-10','18:00:00',0,261,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-12 10:45:45',0),(17689,2526,0,0,5583,'2025-12-11','18:00:00',0,261,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','riya','2025-12-12 10:45:45',0),(17690,2526,0,0,5663,'2025-12-11','16:00:00',0,266,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','212','','','',2526,'H','I',255,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','vishal','2025-12-11 20:51:58',0),(17691,2526,0,0,5663,'2025-12-11','16:00:00',0,266,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','212','','','',2526,'H','I',255,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:55','vishal','2025-12-11 20:51:58',0),(17692,2526,0,0,5663,'2025-12-11','16:00:00',0,266,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','212','','','',2526,'H','I',255,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:56','vishal','2025-12-11 20:51:58',0),(17693,2526,0,0,5663,'2025-12-11','16:00:00',0,266,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',255,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:56','vishal','2025-12-11 20:51:58',0),(17694,2526,0,0,5663,'2025-12-11','16:00:00',0,266,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','212','','','',2526,'H','I',255,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:56','vishal','2025-12-11 20:51:58',0),(17695,2526,0,0,5678,'2025-12-10','17:30:00',0,267,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',258,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:56','riya','2025-12-12 10:41:55',0),(17696,2526,0,0,5678,'2025-12-11','17:30:00',0,267,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',258,17,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:56','riya','2025-12-12 10:41:55',0),(17697,2526,0,0,5678,'2025-12-10','17:30:00',0,267,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',258,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:56','riya','2025-12-12 10:41:55',0),(17698,2526,0,0,5678,'2025-12-11','17:30:00',0,267,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',258,16,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:56','riya','2025-12-12 10:41:55',0),(17699,2526,0,0,5678,'2025-12-10','17:30:00',0,267,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',258,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:56','riya','2025-12-12 10:41:55',0),(17700,2526,0,0,5678,'2025-12-11','17:30:00',0,267,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',258,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:56','riya','2025-12-12 10:41:55',0),(17701,2526,0,0,5678,'2025-12-10','17:30:00',0,267,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','403','','','',2526,'H','I',258,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:56','riya','2025-12-12 10:41:55',0),(17702,2526,0,0,5678,'2025-12-11','17:30:00',0,267,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','403','','','',2526,'H','I',258,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:56','riya','2025-12-12 10:41:55',0),(17703,2526,0,0,5678,'2025-12-10','17:30:00',0,267,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','403','','','',2526,'H','I',258,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:56','riya','2025-12-12 10:41:55',0),(17704,2526,0,0,5678,'2025-12-11','17:30:00',0,267,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','403','','','',2526,'H','I',258,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 05:55:56','riya','2025-12-12 10:41:55',0),(17705,2526,0,0,5929,'2025-12-11','00:00:00',3178,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6523,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-11 18:27:20','manshi','2025-12-11 18:27:33',0),(17706,2526,0,0,5930,'2025-12-11','00:00:00',3948,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6525,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 18:28:13','drashti','2025-12-11 18:29:26',0),(17707,2526,0,0,5931,'2025-12-11','00:00:00',3949,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6524,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 18:28:24','drashti','2025-12-11 19:36:51',0),(17708,2526,0,0,5932,'2025-12-11','00:00:00',3950,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6526,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 18:29:57','janvi','2025-12-11 18:30:25',0),(17709,2526,0,0,5933,'2025-12-11','00:00:00',2812,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6530,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 18:31:27','reception','2025-12-11 18:36:25',0),(17710,2526,0,0,5916,'2025-12-11','18:34:05',3941,0,'XRY','XRY0390','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6527,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-11 18:34:05','manshi','2025-12-11 18:34:05',0),(17711,2526,0,0,5934,'2025-12-11','00:00:00',3951,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6529,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 18:34:38','janvi','2025-12-11 18:36:01',0),(17712,2526,0,0,5935,'2025-12-11','00:00:00',1658,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6528,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 18:34:51','drashti','2025-12-11 18:35:37',0),(17713,2526,0,0,5926,'2025-12-11','18:37:00',3946,0,'XRY','XRY0145','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6531,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-11 18:36:59','manshi','2025-12-11 18:36:59',0),(17714,2526,0,0,5936,'2025-12-11','00:00:00',3952,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6532,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 18:41:28','reception','2025-12-11 18:41:56',0),(17715,2526,0,0,5937,'2025-12-11','00:00:00',3953,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6533,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 18:43:49','reception','2025-12-11 18:44:04',0),(17716,2526,0,0,5938,'2025-12-11','00:00:00',64,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 18:43:53','drashti','2025-12-11 06:13:53',0),(17717,2526,0,0,5939,'2025-12-11','00:00:00',3954,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6534,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 18:46:36','reception','2025-12-11 18:47:08',0),(17718,2526,0,0,5929,'2025-12-11','18:49:12',3178,0,'XRY','XRY0254','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',6535,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-11 18:49:12','manshi','2025-12-11 18:49:12',0),(17719,2526,0,0,5940,'2025-12-11','18:50:09',3637,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6536,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 18:50:09','drashti','2025-12-11 19:42:44',0),(17720,2526,0,0,5120,'2025-12-10','18:42:00',0,243,'WPRC','WPRC0122','H','N',1.00,6000,6000,'A',0,0,0.00,0.00,6000.00,6000,4,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:50:16','vishal','2025-12-11 18:53:42',0),(17721,2526,0,0,5120,'2025-12-11','18:42:00',0,243,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:50:16','','0000-00-00 00:00:00',0),(17722,2526,0,0,5120,'2025-12-09','18:43:00',0,243,'WPRC','WPRC0091','H','N',15.00,500,7500,'P',0,0,0.00,0.00,7500.00,7500,9999,0,0,'',0,0,'','','','','',0,'','',0,99,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:50:16','vishal','2025-12-11 18:53:42',0),(17723,2526,0,0,5120,'2025-12-10','18:43:00',0,243,'WPRC','WPRC0091','H','N',15.00,500,7500,'P',0,0,0.00,0.00,7500.00,7500,9999,0,0,'',0,0,'','','','','',0,'','',0,100,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:50:16','vishal','2025-12-11 18:53:42',0),(17724,2526,0,0,5120,'2025-12-11','18:44:00',0,243,'WPRC','WPRC0091','H','N',15.00,500,7500,'P',0,0,0.00,0.00,7500.00,7500,9999,0,0,'',0,0,'','','','','',0,'','',0,101,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:50:16','vishal','2025-12-11 18:53:42',0),(17725,2526,0,0,5120,'2025-12-07','18:45:00',0,243,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:50:16','vishal','2025-12-11 18:53:42',0),(17726,2526,0,0,5120,'2025-12-10','18:46:00',0,243,'WPRC','WPRC0087','H','N',2.00,500,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:50:16','vishal','2025-12-11 18:53:42',0),(17727,2526,0,0,5120,'2025-12-11','18:46:00',0,243,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:50:16','','0000-00-00 00:00:00',0),(17728,2526,0,0,5120,'2025-12-11','18:48:00',0,243,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:50:16','','0000-00-00 00:00:00',0),(17729,2526,0,0,5941,'2025-12-11','00:00:00',1975,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',6537,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 18:51:10','reception','2025-12-11 19:44:44',0),(17730,2526,0,0,5942,'2025-12-11','00:00:00',3955,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6538,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 18:52:49','drashti','2025-12-11 18:54:12',0),(17731,2526,0,0,5120,'2025-12-11','18:50:00',0,243,'WPRC','WPRC0122','H','N',1.00,6000,6000,'P',0,0,0.00,0.00,6000.00,6000,4,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:53:42','','0000-00-00 00:00:00',0),(17732,2526,0,0,5120,'2025-12-10','18:53:00',0,243,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:58:06','','0000-00-00 00:00:00',0),(17733,2526,0,0,5120,'2025-12-11','18:53:00',0,243,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 18:58:06','','0000-00-00 00:00:00',0),(17734,2526,0,0,5943,'2025-12-11','00:00:00',3956,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',6539,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 18:59:43','reception','2025-12-11 19:00:07',0),(17735,2526,0,0,5944,'2025-12-11','00:00:00',3957,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6540,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 19:07:49','drashti','2025-12-11 19:09:26',0),(17736,2526,0,0,5945,'2025-12-11','00:00:00',3958,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6541,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 19:13:21','janvi','2025-12-11 19:13:41',0),(17737,2526,0,0,5946,'2025-12-11','19:19:39',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6543,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 19:19:39','janvi','2025-12-11 19:19:39',0),(17738,2526,0,0,5939,'2025-12-11','19:19:44',3954,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6544,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 19:19:44','reception','2025-12-11 19:19:44',0),(17739,2526,0,0,5939,'2025-12-11','19:19:44',3954,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6544,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-11 19:19:44','reception','2025-12-11 19:19:44',0),(17740,2526,0,0,5947,'2025-12-11','00:00:00',622,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6545,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 19:21:52','drashti','2025-12-11 19:22:21',0),(17741,2526,0,0,5935,'2025-12-11','19:25:19',1658,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,114,'',0,0,'','','','','',2526,'H','O',6546,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-12-11 19:25:19','janvi','2025-12-11 19:25:19',0),(17742,2526,0,0,5831,'2025-12-11','18:30:00',0,273,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',276,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 07:04:47','riya','2025-12-12 10:52:04',0),(17743,2526,0,0,5831,'2025-12-11','18:30:00',0,273,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',276,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 07:04:47','riya','2025-12-12 10:52:04',0),(17744,2526,0,0,5831,'2025-12-11','18:30:00',0,273,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',276,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 07:04:47','riya','2025-12-12 10:52:04',0),(17745,2526,0,0,5831,'2025-12-11','18:30:00',0,273,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',2526,'H','I',276,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 07:04:47','riya','2025-12-12 10:52:04',0),(17746,2526,0,0,5831,'2025-12-11','18:30:00',0,273,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',2526,'H','I',276,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 07:04:47','riya','2025-12-12 10:52:04',0),(17747,2526,0,0,5931,'2025-12-11','19:38:19',3949,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6548,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-11 19:38:19','drashti','2025-12-11 19:38:19',0),(17748,2526,0,0,5521,'2025-12-11','20:00:00',0,259,'ROOM','ROOM0008','H','N',5.00,100,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,35,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:04:17','vishal','2025-12-17 13:07:43',0),(17749,2526,0,0,5521,'2025-12-11','20:00:00',0,259,'WPRC','WPRC0092','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,39,0,0,'',0,0,'','','','','',2526,'H','I',290,33,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:04:17','','0000-00-00 00:00:00',0),(17750,2526,0,0,5521,'2025-12-11','20:02:00',0,259,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,37,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:04:17','vishal','2025-12-17 13:29:42',0),(17751,2526,0,0,5521,'2025-12-11','20:02:00',0,259,'DRC','DRC0020','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,70,0,0,'',0,0,'','','','','',2526,'H','I',290,36,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:04:17','vishal','2025-12-17 13:29:42',0),(17752,2526,0,0,5948,'2025-12-11','00:00:00',3959,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 20:05:32','janvi','2025-12-11 07:35:32',0),(17753,2526,0,0,5948,'2025-12-11','20:06:01',3959,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6551,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 20:06:01','janvi','2025-12-11 20:06:01',0),(17754,2526,0,0,5848,'2025-12-10','20:06:00',0,274,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:08:42','','0000-00-00 00:00:00',0),(17755,2526,0,0,5848,'2025-12-10','20:06:00',0,274,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:08:42','','0000-00-00 00:00:00',0),(17756,2526,0,0,5848,'2025-12-10','20:07:00',0,274,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,78,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:08:42','','0000-00-00 00:00:00',0),(17757,2526,0,0,5848,'2025-12-10','20:07:00',0,274,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:08:42','','0000-00-00 00:00:00',0),(17758,2526,0,0,5848,'2025-12-11','20:07:00',0,274,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:08:42','','0000-00-00 00:00:00',0),(17759,2526,0,0,5848,'2025-12-10','22:15:00',0,274,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 07:38:45','riya','2025-12-12 11:57:56',0),(17760,2526,0,0,4017,'2025-12-11','20:09:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,206,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:11:33','','0000-00-00 00:00:00',0),(17761,2526,0,0,4017,'2025-12-11','20:09:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,207,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:11:33','','0000-00-00 00:00:00',0),(17762,2526,0,0,4017,'2025-12-11','20:09:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,208,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:11:33','','0000-00-00 00:00:00',0),(17763,2526,0,0,4017,'2025-12-11','20:10:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,209,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:11:33','','0000-00-00 00:00:00',0),(17764,2526,0,0,4017,'2025-12-10','20:10:00',0,187,'WPRC','WPRC0118','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,201,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:11:33','vishal','2025-12-11 20:12:17',0),(17765,2526,0,0,4017,'2025-12-11','20:10:00',0,187,'WPRC','WPRC0118','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,211,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:11:33','','0000-00-00 00:00:00',0),(17766,2526,0,0,4017,'2025-12-11','20:10:00',0,187,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,212,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:11:33','','0000-00-00 00:00:00',0),(17767,2526,0,0,5947,'2025-12-11','20:21:43',622,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',6552,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-11 20:21:43','janvi','2025-12-11 20:21:43',0),(17768,2526,0,0,5663,'2025-12-11','20:48:00',0,266,'USG','USG0092','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:51:58','','0000-00-00 00:00:00',0),(17769,2526,0,0,5663,'2025-12-11','20:49:00',0,266,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:51:58','','0000-00-00 00:00:00',0),(17770,2526,0,0,5663,'2025-12-11','20:49:00',0,266,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:51:58','','0000-00-00 00:00:00',0),(17771,2526,0,0,5663,'2025-12-11','20:51:00',0,266,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:51:58','','0000-00-00 00:00:00',0),(17772,2526,0,0,5663,'2025-12-11','20:51:00',0,266,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:52:40','','0000-00-00 00:00:00',0),(17773,2526,0,0,5663,'2025-12-11','20:52:00',0,266,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:52:40','riya','2025-12-12 14:53:28',0),(17774,2526,0,0,5663,'2025-12-10','20:52:00',0,266,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,212,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-11 20:53:22','','0000-00-00 00:00:00',0),(17775,2526,0,0,5949,'2025-12-12','00:00:00',3960,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,5,0,0,'',0,0,'','','','','',2526,'H','O',6617,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 08:35:28','drashti','2025-12-12 13:05:15',0),(17776,2526,0,0,5949,'2025-12-12','08:37:07',3960,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',6553,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 08:37:07','drashti','2025-12-12 13:03:16',0),(17777,2526,0,0,5949,'2025-12-12','08:37:07',3960,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',6553,2,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 08:37:07','drashti','2025-12-12 13:03:16',0),(17778,2526,0,0,5950,'2025-12-12','00:00:00',3961,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 08:39:21','reception','2025-12-11 20:09:21',0),(17779,2526,0,0,5950,'2025-12-12','08:40:31',3961,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',6554,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-12 08:40:31','reception','2025-12-12 08:40:31',0),(17780,2526,0,0,5950,'2025-12-12','08:40:31',3961,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6554,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-12 08:40:31','reception','2025-12-12 08:40:31',0),(17781,2526,0,0,5950,'2025-12-12','08:40:31',3961,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,115,'',0,0,'','','','','',2526,'H','O',6554,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-12 08:40:31','reception','2025-12-12 08:40:31',0),(17782,2526,0,0,5950,'2025-12-12','08:40:31',3961,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6554,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-12 08:40:31','reception','2025-12-12 08:40:31',0),(17783,2526,0,0,5951,'2025-12-12','00:00:00',3413,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6555,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 08:54:11','reception','2025-12-12 08:54:40',0),(17784,2526,0,0,5951,'2025-12-12','08:54:40',3413,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6555,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 08:54:40','reception','2025-12-12 08:54:40',0),(17785,2526,0,0,5952,'2025-12-12','00:00:00',2408,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6569,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-12 08:57:36','drashti','2025-12-12 10:59:20',0),(17786,2526,0,0,5953,'2025-12-12','00:00:00',905,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6556,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 09:31:21','janvi','2025-12-12 09:31:43',0),(17787,2526,0,0,5954,'2025-12-12','00:00:00',3298,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6557,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 09:47:39','reception','2025-12-12 09:48:07',0),(17788,2526,0,0,5955,'2025-12-12','00:00:00',3343,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6558,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 09:49:19','reception','2025-12-12 09:49:33',0),(17789,2526,0,0,5956,'2025-12-12','00:00:00',3437,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',6559,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 10:15:41','reception','2025-12-12 10:15:53',0),(17790,2526,0,0,5957,'2025-12-12','00:00:00',3962,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6560,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 10:24:15','reception','2025-12-12 10:25:16',0),(17791,2526,0,0,5527,'2025-12-11','10:23:00',0,260,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',261,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:24:44','riya','2025-12-13 14:08:10',0),(17792,2526,0,0,5527,'2025-12-12','10:23:00',0,260,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',261,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:24:44','riya','2025-12-13 14:08:10',0),(17793,2526,0,0,5959,'2025-12-12','00:00:00',3963,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6561,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 10:33:10','reception','2025-12-12 10:33:41',0),(17794,2526,0,0,5960,'2025-12-12','00:00:00',3964,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6562,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 10:33:35','drashti','2025-12-12 10:33:49',0),(17795,2526,0,0,5961,'2025-12-12','00:00:00',1506,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6598,1,200,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 10:37:00','reception','2025-12-12 12:03:29',0),(17796,2526,0,0,4694,'2025-12-11','10:33:00',0,222,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,89,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:37:06','','0000-00-00 00:00:00',0),(17797,2526,0,0,4694,'2025-12-12','10:33:00',0,222,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,90,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:37:06','','0000-00-00 00:00:00',0),(17798,2526,0,0,4694,'2025-12-10','10:34:00',0,222,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',262,91,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:37:06','','0000-00-00 00:00:00',0),(17799,2526,0,0,4694,'2025-12-11','10:36:00',0,222,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',262,92,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:37:06','','0000-00-00 00:00:00',0),(17800,2526,0,0,4694,'2025-12-12','10:36:00',0,222,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',262,93,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:37:06','','0000-00-00 00:00:00',0),(17801,2526,0,0,5962,'2025-12-12','00:00:00',1511,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6606,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 10:41:48','drashti','2025-12-12 12:21:54',0),(17802,2526,0,0,5678,'2025-12-11','10:41:00',0,267,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',258,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:41:55','','0000-00-00 00:00:00',0),(17803,2526,0,0,5583,'2025-12-11','10:44:00',0,261,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:45:45','riya','2025-12-14 12:31:43',0),(17804,2526,0,0,5583,'2025-12-12','10:44:00',0,261,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:45:45','riya','2025-12-14 12:31:43',0),(17805,2526,0,0,5958,'2025-12-12','10:46:25',3590,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6563,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 10:46:25','janvi','2025-12-12 10:46:25',0),(17806,2526,0,0,5963,'2025-12-12','00:00:00',3280,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6564,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 10:47:23','reception','2025-12-12 10:48:12',0),(17807,2526,0,0,5963,'2025-12-12','10:48:19',3280,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6565,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 10:48:19','reception','2025-12-12 12:33:05',0),(17808,2526,0,0,5163,'2025-12-11','10:47:00',0,245,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,68,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:49:04','vishal','2025-12-12 19:32:42',0),(17809,2526,0,0,5163,'2025-12-12','10:47:00',0,245,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:49:04','','0000-00-00 00:00:00',0),(17810,2526,0,0,5163,'2025-12-11','10:47:00',0,245,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:49:04','vishal','2025-12-12 18:31:16',0),(17811,2526,0,0,5163,'2025-12-12','10:48:00',0,245,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:49:04','vishal','2025-12-12 18:30:16',0),(17812,2526,0,0,5964,'2025-12-12','00:00:00',3965,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6566,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 10:51:17','reception','2025-12-12 10:52:00',0),(17813,2526,0,0,5965,'2025-12-12','00:00:00',3966,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6567,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 10:51:57','janvi','2025-12-12 10:52:30',0),(17814,2526,0,0,5831,'2025-12-10','10:50:00',0,273,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',276,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:52:04','','0000-00-00 00:00:00',0),(17815,2526,0,0,5831,'2025-12-12','10:50:00',0,273,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',276,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:52:04','','0000-00-00 00:00:00',0),(17816,2526,0,0,5831,'2025-12-11','10:50:00',0,273,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',276,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:52:04','','0000-00-00 00:00:00',0),(17817,2526,0,0,5831,'2025-12-10','10:51:00',0,273,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',276,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:52:04','','0000-00-00 00:00:00',0),(17818,2526,0,0,5831,'2025-12-11','10:51:00',0,273,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',276,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:52:04','','0000-00-00 00:00:00',0),(17819,2526,0,0,5831,'2025-12-12','10:51:00',0,273,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',276,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:52:04','','0000-00-00 00:00:00',0),(17820,2526,0,0,5966,'2025-12-12','00:00:00',3967,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6568,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 10:52:25','drashti','2025-12-12 10:53:19',0),(17821,2526,0,0,5120,'2025-12-12','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 22:24:06','riya','2025-12-12 10:55:36',0),(17822,2526,0,0,5120,'2025-12-12','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 22:24:06','riya','2025-12-12 10:55:36',0),(17823,2526,0,0,5120,'2025-12-12','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 22:24:06','riya','2025-12-12 10:55:36',0),(17824,2526,0,0,5120,'2025-12-12','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 22:24:06','riya','2025-12-12 10:55:36',0),(17825,2526,0,0,5120,'2025-12-12','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 22:24:06','riya','2025-12-12 10:55:36',0),(17826,2526,0,0,5120,'2025-12-12','10:57:00',0,243,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 10:57:45','','0000-00-00 00:00:00',0),(17827,2526,0,0,5967,'2025-12-12','00:00:00',1841,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',6570,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:02:10','reception','2025-12-12 12:19:04',0),(17828,2526,0,0,5968,'2025-12-12','00:00:00',3360,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6571,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:05:31','reception','2025-12-12 11:06:01',0),(17829,2526,0,0,5969,'2025-12-12','00:00:00',3968,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6572,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-12 11:05:38','manshi','2025-12-12 11:06:34',0),(17830,2526,0,0,5970,'2025-12-12','00:00:00',1832,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6573,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 11:10:38','janvi','2025-12-12 11:10:54',0),(17831,2526,0,0,5971,'2025-12-12','00:00:00',283,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6574,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:12:00','reception','2025-12-12 11:12:20',0),(17832,2526,0,0,5972,'2025-12-12','00:00:00',757,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6575,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 11:14:58','janvi','2025-12-12 11:15:10',0),(17833,2526,0,0,5960,'2025-12-12','11:15:46',3964,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6576,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:15:46','reception','2025-12-12 11:15:46',0),(17834,2526,0,0,5960,'2025-12-12','11:15:46',3964,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6576,2,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:15:46','reception','2025-12-12 11:15:46',0),(17835,2526,0,0,5960,'2025-12-12','11:15:46',3964,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6576,3,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:15:46','reception','2025-12-12 11:15:46',0),(17836,2526,0,0,5960,'2025-12-12','11:15:46',3964,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6576,4,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:15:46','reception','2025-12-12 11:15:46',0),(17837,2526,0,0,5971,'2025-12-12','11:18:52',283,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',6577,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 11:18:52','drashti','2025-12-12 11:18:52',0),(17838,2526,0,0,5951,'2025-12-12','11:20:37',3413,0,'OETR','OETR0003','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6578,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:20:37','reception','2025-12-12 11:20:37',0),(17839,2526,0,0,5973,'2025-12-12','00:00:00',3969,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6590,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-12 11:23:56','manshi','2025-12-12 11:54:05',0),(17840,2526,0,0,5974,'2025-12-12','00:00:00',3970,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6580,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:24:47','reception','2025-12-12 12:26:08',0),(17841,2526,0,0,5970,'2025-12-12','11:24:54',1832,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',6579,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 11:24:54','janvi','2025-12-12 11:24:54',0),(17842,2526,0,0,5975,'2025-12-12','00:00:00',3971,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6581,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 11:25:15','drashti','2025-12-12 11:25:52',0),(17843,2526,0,0,5976,'2025-12-12','00:00:00',3972,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6582,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 11:26:44','drashti','2025-12-12 11:27:19',0),(17844,2526,0,0,5977,'2025-12-12','00:00:00',488,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6584,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:27:26','reception','2025-12-12 11:28:45',0),(17845,2526,0,0,5978,'2025-12-12','00:00:00',3973,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6583,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 11:28:02','janvi','2025-12-12 11:28:18',0),(17846,2526,0,0,5979,'2025-12-12','00:00:00',1096,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6585,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:32:26','reception','2025-12-12 11:32:59',0),(17847,2526,0,0,5980,'2025-12-12','00:00:00',3974,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6586,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 11:33:31','drashti','2025-12-12 11:34:10',0),(17848,2526,0,0,5964,'2025-12-12','11:35:13',3965,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6587,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:35:13','reception','2025-12-12 11:35:13',0),(17849,2526,0,0,5964,'2025-12-12','11:35:13',3965,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6587,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:35:13','reception','2025-12-12 11:35:13',0),(17850,2526,0,0,5964,'2025-12-12','11:35:13',3965,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6587,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:35:13','reception','2025-12-12 11:35:13',0),(17851,2526,0,0,5981,'2025-12-12','00:00:00',3377,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6588,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:37:28','reception','2025-12-12 11:37:53',0),(17852,2526,0,0,5982,'2025-12-12','00:00:00',2843,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6589,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:40:03','reception','2025-12-12 11:40:30',0),(17853,2526,0,0,5983,'2025-12-12','00:00:00',3975,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6591,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 11:41:19','janvi','2025-12-12 11:42:29',0),(17854,2526,0,0,5984,'2025-12-12','00:00:00',3976,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6592,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 11:43:59','drashti','2025-12-12 11:44:44',0),(17855,2526,0,0,5957,'2025-12-12','11:48:01',3962,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6593,1,91,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:48:01','reception','2025-12-12 11:48:01',0),(17856,2526,0,0,5957,'2025-12-12','11:48:01',3962,0,'NEU1','NEU10019','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6593,2,364,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:48:01','reception','2025-12-12 11:48:01',0),(17857,2526,0,0,5957,'2025-12-12','11:48:01',3962,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6593,3,545,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 11:48:01','reception','2025-12-12 11:48:01',0),(17858,2526,0,0,5985,'2025-12-12','00:00:00',1384,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6594,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 11:52:07','janvi','2025-12-12 11:52:25',0),(17859,2526,0,0,5848,'2025-12-11','22:15:00',0,274,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 23:22:31','riya','2025-12-12 11:57:56',0),(17860,2526,0,0,5848,'2025-12-11','22:15:00',0,274,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 23:22:31','riya','2025-12-12 11:57:56',0),(17861,2526,0,0,5848,'2025-12-11','22:15:00',0,274,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-11 23:22:31','riya','2025-12-12 11:57:56',0),(17862,2526,0,0,5848,'2025-12-11','22:15:00',0,274,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','207','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-11 23:22:31','riya','2025-12-12 11:57:56',0),(17863,2526,0,0,5848,'2025-12-11','11:54:00',0,274,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 11:57:56','','0000-00-00 00:00:00',0),(17864,2526,0,0,5848,'2025-12-12','11:54:00',0,274,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 11:57:56','','0000-00-00 00:00:00',0),(17865,2526,0,0,5848,'2025-12-11','11:55:00',0,274,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 11:57:56','','0000-00-00 00:00:00',0),(17866,2526,0,0,5848,'2025-12-12','11:56:00',0,274,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 11:57:56','','0000-00-00 00:00:00',0),(17867,2526,0,0,5986,'2025-12-12','00:00:00',3977,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6596,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 11:58:33','janvi','2025-12-12 11:59:28',0),(17868,2526,0,0,5975,'2025-12-12','12:00:09',3971,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',6597,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 12:00:09','drashti','2025-12-12 12:00:09',0),(17869,2526,0,0,5975,'2025-12-12','12:00:09',3971,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,5,0,0,'',0,0,'','','','','',2526,'H','O',6597,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 12:00:09','drashti','2025-12-12 12:00:09',0),(17870,2526,0,0,5987,'2025-12-12','12:03:41',2738,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6599,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 12:03:41','janvi','2025-12-12 12:03:41',0),(17871,2526,0,0,5988,'2025-12-12','00:00:00',2251,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6600,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 12:05:40','reception','2025-12-12 12:06:32',0),(17872,2526,0,0,5989,'2025-12-12','00:00:00',3978,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6601,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 12:14:58','reception','2025-12-12 12:15:26',0),(17873,2526,0,0,5663,'2025-12-12','12:11:00',0,266,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 12:15:24','riya','2025-12-12 14:53:28',0),(17874,2526,0,0,5663,'2025-12-12','12:11:00',0,266,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 12:15:24','','0000-00-00 00:00:00',0),(17875,2526,0,0,5663,'2025-12-12','12:12:00',0,266,'WPRC','WPRC0088','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,4,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 12:15:24','','0000-00-00 00:00:00',0),(17876,2526,0,0,5663,'2025-12-12','12:12:00',0,266,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 12:15:24','','0000-00-00 00:00:00',0),(17877,2526,0,0,5663,'2025-12-12','12:14:00',0,266,'WPRC','WPRC0087','H','N',4.00,500,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 12:15:24','','0000-00-00 00:00:00',0),(17878,2526,0,0,5990,'2025-12-12','00:00:00',3054,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6602,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 12:16:16','reception','2025-12-12 12:16:37',0),(17879,2526,0,0,5991,'2025-12-12','00:00:00',3979,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6605,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 12:17:42','drashti','2025-12-12 12:20:02',0),(17880,2526,0,0,5967,'2025-12-12','12:22:54',1841,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',6607,1,200,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 12:22:54','reception','2025-12-12 20:10:01',0),(17881,2526,0,0,5974,'2025-12-12','12:27:06',3970,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6609,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 12:27:06','reception','2025-12-12 12:27:06',0),(17882,2526,0,0,5992,'2025-12-12','00:00:00',3980,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6610,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 12:27:24','drashti','2025-12-12 12:27:43',0),(17883,2526,0,0,5993,'2025-12-12','12:31:56',3018,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',6611,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-12 12:31:56','priyanshi','2025-12-12 12:31:56',0),(17884,2526,0,0,5521,'2025-12-12','12:30:00',0,259,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,40,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 00:01:56','vishal','2025-12-17 13:30:22',0),(17885,2526,0,0,5521,'2025-12-12','12:30:00',0,259,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,39,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 00:01:56','vishal','2025-12-17 13:30:22',0),(17886,2526,0,0,5521,'2025-12-12','12:30:00',0,259,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,38,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 00:01:56','vishal','2025-12-17 13:30:22',0),(17887,2526,0,0,5521,'2025-12-12','12:30:00',0,259,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',0,'','',0,34,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 00:01:56','riya','2025-12-12 12:44:06',0),(17888,2526,0,0,5521,'2025-12-12','12:30:00',0,259,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',2526,'H','I',290,41,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 00:01:56','vishal','2025-12-17 13:30:22',0),(17889,2526,0,0,5521,'2025-12-11','12:31:00',0,259,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,36,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 12:34:35','','0000-00-00 00:00:00',0),(17890,2526,0,0,5521,'2025-12-11','12:32:00',0,259,'CARE','CARE0004','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,37,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 12:34:35','','0000-00-00 00:00:00',0),(17891,2526,0,0,5521,'2025-12-11','12:32:00',0,259,'CARE','CARE0003','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,38,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 12:34:35','','0000-00-00 00:00:00',0),(17892,2526,0,0,5521,'2025-12-11','12:32:00',0,259,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','','','','',2526,'H','I',290,39,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 12:34:35','','0000-00-00 00:00:00',0),(17893,2526,0,0,5521,'2025-12-11','12:33:00',0,259,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','','','','',2526,'H','I',290,40,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 12:34:35','','0000-00-00 00:00:00',0),(17894,2526,0,0,5521,'2025-12-12','12:34:00',0,259,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,41,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 12:36:27','','0000-00-00 00:00:00',0),(17895,2526,0,0,5521,'2025-12-11','12:35:00',0,259,'SURG','SURG0014','H','N',1.00,20000,20000,'P',0,0,0.00,0.00,20000.00,20000,70,0,0,'',0,0,'','','','','',2526,'H','I',290,33,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 12:36:27','riya','2025-12-12 12:42:48',0),(17896,2526,0,0,5521,'2025-12-11','12:35:00',0,259,'SURG','SURG0015','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,5000.00,5000,5,0,0,'',0,0,'','','','','',2526,'H','I',290,32,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 12:36:27','riya','2025-12-12 12:42:48',0),(17897,2526,0,0,5994,'2025-12-12','00:00:00',3981,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6613,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 12:38:25','drashti','2025-12-12 12:40:25',0),(17898,2526,0,0,5995,'2025-12-12','00:00:00',3982,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6614,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 12:42:21','drashti','2025-12-12 13:06:40',0),(17899,2526,0,0,5521,'2025-12-12','12:43:00',0,259,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','','','','',2526,'H','I',290,43,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 12:44:06','','0000-00-00 00:00:00',0),(17900,2526,0,0,5996,'2025-12-12','00:00:00',3983,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6615,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 12:53:05','reception','2025-12-12 12:53:37',0),(17901,2526,0,0,4017,'2025-12-12','12:57:00',0,187,'WPRC','WPRC0118','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,213,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 12:58:43','vishal','2025-12-14 20:18:51',0),(17902,2526,0,0,4017,'2025-12-12','12:57:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,214,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 12:58:43','','0000-00-00 00:00:00',0),(17903,2526,0,0,4017,'2025-12-12','12:57:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,216,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 12:58:43','vishal','2025-12-21 11:20:51',0),(17904,2526,0,0,4017,'2025-12-12','12:57:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,217,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 12:58:43','vishal','2025-12-14 20:19:24',0),(17905,2526,0,0,5975,'2025-12-12','13:06:16',3971,0,'OPWD','OPWD0034','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,5,0,0,'',0,0,'','','','','',2526,'H','O',6618,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 13:06:16','reception','2025-12-12 13:06:16',0),(17906,2526,0,0,5995,'2025-12-12','13:11:26',3982,0,'PKG','CASE','H','N',1.00,750,750,'P',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6620,1,350,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 13:11:26','drashti','2025-12-12 13:11:26',0),(17907,2526,0,0,5998,'2025-12-12','00:00:00',3417,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 13:14:38','reception','2025-12-12 00:44:38',0),(17908,2526,0,0,5998,'2025-12-12','13:15:25',3417,0,'OPWD','OPWD0034','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,5,0,0,'',0,0,'','','','','',2526,'H','O',6621,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 13:15:25','reception','2025-12-12 13:15:25',0),(17909,2526,0,0,5998,'2025-12-12','13:15:32',3417,0,'OPWD','OPWD0034','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,5,0,0,'',0,0,'','','','','',2526,'H','O',6622,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 13:15:32','reception','2025-12-12 13:18:34',0),(17910,2526,0,0,5997,'2025-12-12','13:16:59',3955,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6623,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 13:16:59','drashti','2025-12-12 13:16:59',0),(17911,2526,0,0,5997,'2025-12-12','13:16:59',3955,0,'OPWD','OPWD0034','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,4,0,0,'',0,0,'','','','','',2526,'H','O',6623,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 13:16:59','drashti','2025-12-12 13:16:59',0),(17912,2526,0,0,5996,'2025-12-12','13:28:56',3983,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6625,1,31,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 13:28:56','reception','2025-12-12 13:32:52',0),(17913,2526,0,0,5996,'2025-12-12','13:28:56',3983,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6625,2,135,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 13:28:56','reception','2025-12-12 13:32:52',0),(17914,2526,0,0,5996,'2025-12-12','13:28:56',3983,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6625,3,135,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 13:28:56','reception','2025-12-12 13:32:52',0),(17915,2526,0,0,5996,'2025-12-12','13:28:59',3983,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6626,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 13:28:59','reception','2025-12-12 13:28:59',0),(17916,2526,0,0,5996,'2025-12-12','13:28:59',3983,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6626,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 13:28:59','reception','2025-12-12 13:28:59',0),(17917,2526,0,0,5996,'2025-12-12','13:28:59',3983,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6626,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 13:28:59','reception','2025-12-12 13:28:59',0),(17918,2526,0,0,5999,'2025-12-12','00:00:00',3984,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6628,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 13:32:46','janvi','2025-12-12 13:33:44',0),(17919,2526,0,0,6000,'2025-12-12','13:48:35',622,0,'OPWD','OPWD0025','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',6629,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 13:48:35','drashti','2025-12-12 13:48:35',0),(17920,2526,0,0,5663,'2025-12-10','14:51:00',0,266,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 14:53:28','','0000-00-00 00:00:00',0),(17921,2526,0,0,5663,'2025-12-11','14:51:00',0,266,'WPRC','WPRC0101','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 14:53:28','','0000-00-00 00:00:00',0),(17922,2526,0,0,5663,'2025-12-12','14:53:00',0,266,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',255,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 14:53:28','','0000-00-00 00:00:00',0),(17923,2526,0,0,6001,'2025-12-12','00:00:00',3985,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6630,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 16:14:59','reception','2025-12-12 16:19:11',0),(17924,2526,0,0,6002,'2025-12-12','00:00:00',3986,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6631,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 16:23:45','reception','2025-12-12 16:24:36',0),(17925,2526,0,0,6003,'2025-12-12','00:00:00',1028,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6632,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 16:25:45','reception','2025-12-12 16:26:01',0),(17926,2526,0,0,6004,'2025-12-12','00:00:00',2799,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 16:29:08','reception','2025-12-12 03:59:08',0),(17927,2526,0,0,6005,'2025-12-12','00:00:00',1698,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6633,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 16:32:13','reception','2025-12-12 16:33:01',0),(17928,2526,0,0,6006,'2025-12-12','00:00:00',1652,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6634,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 16:35:30','reception','2025-12-12 16:36:02',0),(17929,2526,0,0,6007,'2025-12-12','00:00:00',958,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6635,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 16:36:44','reception','2025-12-12 17:01:59',0),(17930,2526,0,0,6008,'2025-12-12','00:00:00',2798,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 16:37:24','reception','2025-12-12 04:07:24',0),(17931,2526,0,0,6009,'2025-12-12','00:00:00',3987,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6636,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 16:44:53','drashti','2025-12-12 16:45:47',0),(17932,2526,0,0,6010,'2025-12-12','16:53:50',3565,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6637,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 16:53:50','reception','2025-12-12 16:53:50',0),(17933,2526,0,0,6011,'2025-12-12','00:00:00',3988,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 16:55:42','reception','2025-12-12 04:25:42',0),(17934,2526,0,0,6013,'2025-12-12','00:00:00',3989,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6639,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 17:07:58','reception','2025-12-12 17:08:29',0),(17935,2526,0,0,6014,'2025-12-12','00:00:00',3990,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6640,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 17:09:27','drashti','2025-12-12 17:10:21',0),(17936,2526,0,0,6015,'2025-12-12','00:00:00',3991,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 17:10:04','reception','2025-12-12 04:40:04',0),(17937,2526,0,0,4017,'2025-12-12','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,217,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 04:40:19','riya','2025-12-12 17:10:36',0),(17938,2526,0,0,4017,'2025-12-12','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,218,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 04:40:19','riya','2025-12-12 17:10:36',0),(17939,2526,0,0,4017,'2025-12-12','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,219,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 04:40:19','riya','2025-12-12 17:10:36',0),(17940,2526,0,0,4017,'2025-12-12','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,220,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 04:40:19','riya','2025-12-12 17:10:36',0),(17941,2526,0,0,4017,'2025-12-12','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,221,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 04:40:19','riya','2025-12-12 17:10:36',0),(17942,2526,0,0,6016,'2025-12-12','00:00:00',3992,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6641,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 17:13:04','reception','2025-12-12 17:13:30',0),(17943,2526,0,0,6017,'2025-12-12','00:00:00',3993,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6643,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 17:16:48','reception','2025-12-12 17:24:12',0),(17944,2526,0,0,6018,'2025-12-12','17:21:21',2919,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6642,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 17:21:21','drashti','2025-12-12 17:21:21',0),(17945,2526,0,0,6002,'2025-12-12','17:27:10',3986,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6644,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 17:27:10','reception','2025-12-12 17:27:10',0),(17946,2526,0,0,6002,'2025-12-12','17:27:10',3986,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6644,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 17:27:10','reception','2025-12-12 17:27:10',0),(17947,2526,0,0,6019,'2025-12-12','00:00:00',3994,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',6645,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 17:29:09','reception','2025-12-12 17:29:59',0),(17948,2526,0,0,6020,'2025-12-12','00:00:00',3995,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6646,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 17:33:27','reception','2025-12-12 17:34:04',0),(17949,2526,0,0,6021,'2025-12-12','00:00:00',3996,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6647,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 17:46:25','drashti','2025-12-12 17:47:33',0),(17950,2526,0,0,6022,'2025-12-12','00:00:00',2345,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6648,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 17:48:18','reception','2025-12-12 17:48:43',0),(17951,2526,0,0,6023,'2025-12-12','00:00:00',3997,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6649,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 17:55:57','reception','2025-12-12 17:56:24',0),(17952,2526,0,0,6024,'2025-12-12','00:00:00',3998,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',6650,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 17:58:04','reception','2025-12-12 17:58:33',0),(17953,2526,0,0,6025,'2025-12-12','00:00:00',1089,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6651,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 17:59:35','reception','2025-12-12 17:59:56',0),(17954,2526,0,0,5993,'2025-12-12','18:00:08',3018,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',6652,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 18:00:08','drashti','2025-12-12 18:00:08',0),(17955,2526,0,0,6016,'2025-12-12','18:02:03',3992,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6653,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 18:02:03','reception','2025-12-12 18:02:03',0),(17956,2526,0,0,6016,'2025-12-12','18:02:03',3992,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6653,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 18:02:03','reception','2025-12-12 18:02:03',0),(17957,2526,0,0,6026,'2025-12-12','00:00:00',3999,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6654,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 18:05:32','reception','2025-12-12 18:06:09',0),(17958,2526,0,0,6027,'2025-12-12','00:00:00',4000,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6657,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-12 18:11:40','manshi','2025-12-12 18:16:09',0),(17959,2526,0,0,6028,'2025-12-12','00:00:00',4001,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6655,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 18:12:25','reception','2025-12-12 18:12:40',0),(17960,2526,0,0,6029,'2025-12-12','00:00:00',4002,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6656,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 18:14:10','reception','2025-12-12 18:14:40',0),(17961,2526,0,0,6030,'2025-12-12','00:00:00',306,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6658,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 18:15:51','janvi','2025-12-12 18:16:19',0),(17962,2526,0,0,6030,'2025-12-12','18:16:19',306,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,116,'',0,0,'','','','','',2526,'H','O',6658,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'janvi','2025-12-12 18:16:19','janvi','2025-12-12 18:16:19',0),(17963,2526,0,0,6031,'2025-12-12','00:00:00',4003,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6659,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 18:16:32','reception','2025-12-12 18:17:26',0),(17964,2526,0,0,6033,'2025-12-12','00:00:00',4004,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6661,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 18:19:15','drashti','2025-12-12 18:20:02',0),(17965,2526,0,0,6034,'2025-12-12','00:00:00',4005,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6660,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 18:19:16','janvi','2025-12-12 18:19:38',0),(17966,2526,0,0,6032,'2025-12-12','18:20:24',3735,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6662,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-12 18:20:24','manshi','2025-12-12 18:20:24',0),(17967,2526,0,0,6035,'2025-12-12','00:00:00',4006,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6663,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 18:21:05','drashti','2025-12-12 18:21:34',0),(17968,2526,0,0,6036,'2025-12-12','18:21:50',3605,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6664,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 18:21:50','janvi','2025-12-12 18:21:50',0),(17969,2526,0,0,6037,'2025-12-12','00:00:00',4007,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6665,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 18:22:58','drashti','2025-12-12 18:23:41',0),(17970,2526,0,0,6038,'2025-12-12','00:00:00',4008,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6666,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 18:23:37','janvi','2025-12-12 18:24:25',0),(17971,2526,0,0,5163,'2025-12-10','18:22:00',0,245,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 18:30:16','','0000-00-00 00:00:00',0),(17972,2526,0,0,5163,'2025-12-11','18:22:00',0,245,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 18:30:16','','0000-00-00 00:00:00',0),(17973,2526,0,0,5163,'2025-12-12','18:22:00',0,245,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 18:30:16','','0000-00-00 00:00:00',0),(17974,2526,0,0,5163,'2025-12-12','18:29:00',0,245,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 18:30:16','','0000-00-00 00:00:00',0),(17975,2526,0,0,5163,'2025-12-12','18:29:00',0,245,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 18:30:16','','0000-00-00 00:00:00',0),(17976,2526,0,0,6039,'2025-12-12','00:00:00',4009,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6669,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 18:30:26','drashti','2025-12-12 19:05:56',0),(17977,2526,0,0,6040,'2025-12-12','00:00:00',4010,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6667,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-12 18:34:23','manshi','2025-12-12 18:35:04',0),(17978,2526,0,0,6020,'2025-12-12','18:35:26',3995,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6668,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 18:35:25','reception','2025-12-12 18:35:25',0),(17979,2526,0,0,6020,'2025-12-12','18:35:26',3995,0,'NEU1','NEU10019','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6668,2,400,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 18:35:25','reception','2025-12-12 18:35:25',0),(17980,2526,0,0,6020,'2025-12-12','18:35:26',3995,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6668,3,600,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 18:35:25','reception','2025-12-12 18:35:25',0),(17981,2526,0,0,6032,'2025-12-12','18:42:46',3735,0,'XRY','XRY0308','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6670,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-12 18:42:46','manshi','2025-12-12 18:42:46',0),(17982,2526,0,0,6041,'2025-12-12','00:00:00',4011,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6671,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 18:46:08','janvi','2025-12-12 18:47:17',0),(17983,2526,0,0,6042,'2025-12-12','00:00:00',4012,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 18:46:22','drashti','2025-12-12 06:16:22',0),(17984,2526,0,0,6043,'2025-12-12','00:00:00',4013,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6672,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 18:47:30','reception','2025-12-12 18:48:05',0),(17985,2526,0,0,6044,'2025-12-12','00:00:00',2368,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6673,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 18:48:16','janvi','2025-12-12 18:48:30',0),(17986,2526,0,0,6017,'2025-12-12','18:49:16',3993,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6674,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 18:49:16','reception','2025-12-12 18:49:16',0),(17987,2526,0,0,6017,'2025-12-12','18:49:16',3993,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6674,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 18:49:16','reception','2025-12-12 18:49:16',0),(17988,2526,0,0,6045,'2025-12-12','00:00:00',3598,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6675,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 18:49:20','janvi','2025-12-12 19:44:38',0),(17989,2526,0,0,6042,'2025-12-12','18:49:50',4012,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',6676,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 18:49:50','drashti','2025-12-12 18:49:50',0),(17990,2526,0,0,6042,'2025-12-12','18:49:50',4012,0,'OPWD','OPWD0015','H','N',1.00,250,250,'P',0,0,0.00,0.00,0.00,250,4,0,0,'',0,0,'','','','','',2526,'H','O',6676,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 18:49:50','drashti','2025-12-12 18:49:50',0),(17991,2526,0,0,6042,'2025-12-12','18:49:50',4012,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',6676,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 18:49:50','drashti','2025-12-12 18:49:50',0),(17992,2526,0,0,6042,'2025-12-12','18:49:50',4012,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6676,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 18:49:50','drashti','2025-12-12 18:49:50',0),(17993,2526,0,0,6046,'2025-12-12','00:00:00',536,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6677,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 18:50:17','reception','2025-12-12 18:50:28',0),(17994,2526,0,0,6047,'2025-12-12','18:30:00',4002,275,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',269,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 18:52:09','riya','2025-12-14 12:17:19',0),(17995,2526,0,0,6047,'2025-12-12','18:30:00',4002,275,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',269,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 18:52:09','riya','2025-12-14 12:17:19',0),(17996,2526,0,0,6047,'2025-12-12','18:30:00',4002,275,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',269,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 06:22:09','riya','2025-12-14 12:17:19',0),(17997,2526,0,0,6047,'2025-12-12','18:30:00',4002,275,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','402','','','',2526,'H','I',269,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 06:22:09','riya','2025-12-14 12:17:19',0),(17998,2526,0,0,6047,'2025-12-12','18:30:00',4002,275,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',269,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 06:22:09','riya','2025-12-14 12:17:19',0),(17999,2526,0,0,6047,'2025-12-12','18:30:00',4002,275,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 06:22:09','riya','2025-12-14 12:17:19',0),(18000,2526,0,0,6047,'2025-12-12','18:30:00',4002,275,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 06:22:09','riya','2025-12-14 12:17:19',0),(18001,2526,0,0,6048,'2025-12-12','00:00:00',2269,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6678,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-12 18:54:18','manshi','2025-12-12 18:54:51',0),(18002,2526,0,0,6049,'2025-12-12','00:00:00',2174,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6679,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 18:56:03','janvi','2025-12-12 18:56:12',0),(18003,2526,0,0,6050,'2025-12-12','00:00:00',2673,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6680,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 18:58:15','drashti','2025-12-12 18:59:57',0),(18004,2526,0,0,6051,'2025-12-12','00:00:00',1156,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6682,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 18:59:32','janvi','2025-12-12 19:01:39',0),(18005,2526,0,0,6052,'2025-12-12','00:00:00',4014,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6681,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 18:59:52','reception','2025-12-12 19:00:33',0),(18006,2526,0,0,6053,'2025-12-12','00:00:00',2495,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6683,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 19:02:09','drashti','2025-12-12 19:03:41',0),(18007,2526,0,0,6054,'2025-12-12','00:00:00',4015,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6685,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 19:07:52','drashti','2025-12-12 19:08:49',0),(18008,2526,0,0,6056,'2025-12-12','19:00:00',0,276,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',266,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 19:13:30','riya','2025-12-13 18:31:14',0),(18009,2526,0,0,6056,'2025-12-12','19:00:00',0,276,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',266,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 19:13:30','riya','2025-12-13 18:31:14',0),(18010,2526,0,0,6056,'2025-12-12','19:00:00',0,276,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',266,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 06:43:30','riya','2025-12-13 18:31:14',0),(18011,2526,0,0,6056,'2025-12-12','19:00:00',0,276,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',266,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 06:43:30','riya','2025-12-13 18:31:14',0),(18012,2526,0,0,6056,'2025-12-12','19:00:00',0,276,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',266,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 06:43:30','riya','2025-12-13 18:31:14',0),(18013,2526,0,0,6056,'2025-12-12','19:00:00',0,276,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 06:43:30','riya','2025-12-13 18:22:52',0),(18014,2526,0,0,6056,'2025-12-13','19:00:00',0,276,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',266,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 06:43:30','riya','2025-12-13 18:31:14',0),(18015,2526,0,0,6055,'2025-12-12','19:13:30',3310,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6686,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 19:13:30','janvi','2025-12-12 19:13:30',0),(18016,2526,0,0,5994,'2025-12-12','19:15:50',3981,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',6687,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 19:15:50','drashti','2025-12-12 19:15:50',0),(18017,2526,0,0,5994,'2025-12-12','19:15:50',3981,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',6687,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 19:15:50','drashti','2025-12-12 19:15:50',0),(18018,2526,0,0,6057,'2025-12-12','00:00:00',372,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6688,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-12 19:16:04','janvi','2025-12-12 19:16:32',0),(18019,2526,0,0,6058,'2025-12-12','00:00:00',4016,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6689,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 19:25:48','drashti','2025-12-12 19:27:42',0),(18020,2526,0,0,2599,'2025-11-09','19:27:00',0,134,'OETR','OETR0004','H','N',1.00,10398,10398,'P',0,0,0.00,0.00,10398.00,10398,9999,0,0,'',0,0,'','','','','',2526,'H','I',256,23,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 19:27:50','','0000-00-00 00:00:00',0),(18021,2526,0,0,6059,'2025-12-12','00:00:00',348,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6690,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-12 19:28:31','drashti','2025-12-12 19:29:23',0),(18022,2526,0,0,5163,'2025-12-04','19:31:00',0,245,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',257,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 19:31:50','','0000-00-00 00:00:00',0),(18023,2526,0,0,6060,'2025-12-12','00:00:00',4017,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6691,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 19:34:41','reception','2025-12-12 19:36:23',0),(18024,2526,0,0,6061,'2025-12-12','19:50:00',4016,277,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',289,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 19:48:35','riya','2025-12-14 14:19:25',0),(18025,2526,0,0,6061,'2025-12-12','19:50:00',4016,277,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',289,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 19:48:35','riya','2025-12-14 14:19:25',0),(18026,2526,0,0,6062,'2025-12-12','00:00:00',4018,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',6693,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-12 19:49:37','manshi','2025-12-12 19:52:48',0),(18027,2526,0,0,6063,'2025-12-12','00:00:00',4019,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',6694,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 19:52:40','reception','2025-12-12 19:54:37',0),(18028,2526,0,0,6062,'2025-12-12','19:52:48',4018,0,'XRY','XRY0449','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6693,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-12 19:52:48','manshi','2025-12-12 19:52:48',0),(18029,2526,0,0,6064,'2025-12-12','00:00:00',4020,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6695,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-12 20:05:10','shweta','2025-12-12 20:06:29',0),(18030,2526,0,0,5967,'2025-12-12','20:13:15',1841,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',6697,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-12 20:13:15','reception','2025-12-12 20:13:15',0),(18031,2526,0,0,6065,'2025-12-12','00:00:00',4021,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6698,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-12 20:25:41','shweta','2025-12-12 20:26:24',0),(18032,2526,0,0,6066,'2025-12-12','00:00:00',4022,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-12 20:26:58','priyanshi','2025-12-12 07:56:58',0),(18033,2526,0,0,6066,'2025-12-12','20:29:13',4022,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',6699,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'priyanshi','2025-12-12 20:29:13','priyanshi','2025-12-12 20:29:13',0),(18034,2526,0,0,6066,'2025-12-12','20:29:13',4022,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,117,'',0,0,'','','','','',2526,'H','O',6699,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'priyanshi','2025-12-12 20:29:13','priyanshi','2025-12-12 20:29:13',0),(18035,2526,0,0,6066,'2025-12-12','20:29:13',4022,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,0.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',6699,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'priyanshi','2025-12-12 20:29:13','priyanshi','2025-12-12 20:29:13',0),(18036,2526,0,0,6066,'2025-12-12','20:29:13',4022,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,5,0,0,'',0,0,'','','','','',2526,'H','O',6699,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'priyanshi','2025-12-12 20:29:13','priyanshi','2025-12-12 20:29:13',0),(18037,2526,0,0,5848,'2025-12-12','21:12:00',0,274,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 21:13:05','','0000-00-00 00:00:00',0),(18038,2526,0,0,5678,'2025-12-12','17:30:00',0,267,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','','','',2526,'H','I',258,19,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 09:40:42','vishal','2025-12-12 22:14:37',0),(18039,2526,0,0,5678,'2025-12-12','17:30:00',0,267,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',258,20,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 09:40:42','vishal','2025-12-12 22:11:42',0),(18040,2526,0,0,5678,'2025-12-12','17:30:00',0,267,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',258,21,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 09:40:42','vishal','2025-12-12 22:11:42',0),(18041,2526,0,0,5678,'2025-12-12','17:30:00',0,267,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','403','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 09:40:42','vishal','2025-12-12 22:11:42',0),(18042,2526,0,0,5678,'2025-12-12','17:30:00',0,267,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','403','','','',2526,'H','I',258,22,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 09:40:42','vishal','2025-12-12 22:11:42',0),(18043,2526,0,0,5678,'2025-12-12','22:10:00',0,267,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,7,0,0,'',0,0,'','','','','',2526,'H','I',258,23,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-12 22:11:42','','0000-00-00 00:00:00',0),(18044,2526,0,0,6067,'2025-12-13','00:00:00',4023,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 08:38:41','reception','2025-12-12 20:08:41',0),(18045,2526,0,0,6067,'2025-12-13','08:39:18',4023,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6700,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-13 08:39:18','reception','2025-12-13 08:39:18',0),(18046,2526,0,0,6067,'2025-12-13','08:39:18',4023,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,118,'',0,0,'','','','','',2526,'H','O',6700,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-13 08:39:18','reception','2025-12-13 08:39:18',0),(18047,2526,0,0,6068,'2025-12-13','08:40:16',4018,0,'OPWD','OPWD0023','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6701,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 08:40:16','reception','2025-12-13 08:40:16',0),(18048,2526,0,0,6069,'2025-12-13','00:00:00',155,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6702,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 09:36:53','reception','2025-12-13 09:37:52',0),(18049,2526,0,0,6070,'2025-12-13','09:53:00',3980,278,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',268,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 09:55:42','riya','2025-12-14 12:41:07',0),(18050,2526,0,0,6070,'2025-12-13','09:53:00',3980,278,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',268,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 09:55:42','riya','2025-12-14 12:41:07',0),(18051,2526,0,0,6070,'2025-12-13','09:53:00',3980,278,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','306','','','',2526,'H','I',268,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 21:25:42','riya','2025-12-14 12:41:07',0),(18052,2526,0,0,6070,'2025-12-13','09:53:00',3980,278,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','306','','','',2526,'H','I',268,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 21:25:43','riya','2025-12-14 12:41:07',0),(18053,2526,0,0,6070,'2025-12-13','09:53:00',3980,278,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','306','','','',2526,'H','I',268,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 21:25:43','riya','2025-12-14 12:41:07',0),(18054,2526,0,0,6070,'2025-12-13','09:53:00',3980,278,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','306','','','',2526,'H','I',268,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 21:25:43','riya','2025-12-14 12:41:07',0),(18055,2526,0,0,6070,'2025-12-13','09:53:00',3980,278,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','306','','','',2526,'H','I',268,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 21:25:43','riya','2025-12-14 12:41:07',0),(18056,2526,0,0,6072,'2025-12-13','00:00:00',4024,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6703,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 09:58:10','reception','2025-12-13 09:58:26',0),(18057,2526,0,0,6073,'2025-12-13','00:00:00',4025,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6704,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 10:01:16','priyanshi','2025-12-13 10:02:04',0),(18058,2526,0,0,6074,'2025-12-13','00:00:00',4026,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6707,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 10:01:36','drashti','2025-12-13 10:07:59',0),(18059,2526,0,0,6076,'2025-12-13','00:00:00',1130,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6705,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 10:05:27','reception','2025-12-13 10:06:35',0),(18060,2526,0,0,6077,'2025-12-13','00:00:00',3457,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6706,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 10:06:43','priyanshi','2025-12-13 10:07:11',0),(18061,2526,0,0,6078,'2025-12-13','00:00:00',2503,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6708,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 10:08:08','priyanshi','2025-12-13 10:08:55',0),(18062,2526,0,0,6079,'2025-12-13','00:00:00',594,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6709,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 10:08:47','drashti','2025-12-13 10:09:25',0),(18063,2526,0,0,6080,'2025-12-13','00:00:00',4027,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6710,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 10:09:45','reception','2025-12-13 10:10:36',0),(18064,2526,0,0,6082,'2025-12-13','10:19:00',3053,279,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',286,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 10:20:18','riya','2025-12-14 15:16:21',0),(18065,2526,0,0,6082,'2025-12-13','10:19:00',3053,279,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',286,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 10:20:18','riya','2025-12-14 15:16:21',0),(18066,2526,0,0,6082,'2025-12-13','10:19:00',3053,279,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','306','','','',2526,'H','D',286,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 21:50:18','riya','2025-12-14 15:16:21',0),(18067,2526,0,0,6082,'2025-12-13','10:19:00',3053,279,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','306','','','',2526,'H','D',286,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 21:50:18','riya','2025-12-14 15:16:21',0),(18068,2526,0,0,6082,'2025-12-13','10:19:00',3053,279,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','306','','','',2526,'H','D',286,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 21:50:18','riya','2025-12-14 15:16:21',0),(18069,2526,0,0,6082,'2025-12-13','10:19:00',3053,279,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','306','','','',2526,'H','D',286,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 21:50:18','riya','2025-12-14 15:16:21',0),(18070,2526,0,0,6082,'2025-12-13','10:19:00',3053,279,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','306','','','',2526,'H','D',286,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 21:50:18','riya','2025-12-14 15:16:21',0),(18071,2526,0,0,6083,'2025-12-13','00:00:00',3462,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6711,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 10:26:33','reception','2025-12-13 11:21:38',0),(18072,2526,0,0,6084,'2025-12-13','10:27:00',3999,280,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',271,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 10:28:18','riya','2025-12-14 11:52:01',0),(18073,2526,0,0,6084,'2025-12-13','10:27:00',3999,280,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',271,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 10:28:18','riya','2025-12-14 11:52:01',0),(18074,2526,0,0,6084,'2025-12-13','10:27:00',3999,280,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',271,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 21:58:18','riya','2025-12-14 11:52:01',0),(18075,2526,0,0,6084,'2025-12-13','10:27:00',3999,280,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',271,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 21:58:18','riya','2025-12-14 11:52:01',0),(18076,2526,0,0,6084,'2025-12-13','10:27:00',3999,280,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',271,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 21:58:18','riya','2025-12-14 11:52:01',0),(18077,2526,0,0,6084,'2025-12-13','10:27:00',3999,280,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','402','','','',2526,'H','I',271,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 21:58:18','riya','2025-12-14 11:52:01',0),(18078,2526,0,0,6084,'2025-12-13','10:27:00',3999,280,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','402','','','',2526,'H','I',271,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-12 21:58:18','riya','2025-12-14 11:52:01',0),(18079,2526,0,0,6085,'2025-12-13','00:00:00',4028,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6726,1,250,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 10:28:29','priyanshi','2025-12-13 10:53:10',0),(18080,2526,0,0,6086,'2025-12-13','10:30:15',3869,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6712,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 10:30:15','drashti','2025-12-13 10:30:15',0),(18081,2526,0,0,6087,'2025-12-13','00:00:00',4029,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6714,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 10:33:55','drashti','2025-12-13 10:35:35',0),(18082,2526,0,0,6088,'2025-12-13','00:00:00',4030,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6715,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 10:34:00','priyanshi','2025-12-13 10:36:35',0),(18083,2526,0,0,6089,'2025-12-13','00:00:00',4031,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6713,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 10:34:23','reception','2025-12-13 10:34:46',0),(18084,2526,0,0,6090,'2025-12-13','00:00:00',4032,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',6718,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 10:36:18','reception','2025-12-13 10:39:53',0),(18085,2526,0,0,6088,'2025-12-13','10:36:35',4030,0,'XRY','XRY0308','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6715,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 10:36:35','priyanshi','2025-12-13 10:36:35',0),(18086,2526,0,0,6091,'2025-12-13','00:00:00',3386,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 10:36:36','priyanshi','2025-12-12 22:06:36',0),(18087,2526,0,0,6092,'2025-12-13','00:00:00',2235,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6717,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 10:37:18','reception','2025-12-13 10:37:32',0),(18088,2526,0,0,6091,'2025-12-13','10:37:21',3386,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6716,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 10:37:21','priyanshi','2025-12-13 10:37:21',0),(18089,2526,0,0,6093,'2025-12-13','00:00:00',1476,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6720,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 10:38:36','drashti','2025-12-13 10:40:40',0),(18090,2526,0,0,6094,'2025-12-13','00:00:00',4033,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6719,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 10:39:55','priyanshi','2025-12-13 10:40:28',0),(18091,2526,0,0,6095,'2025-12-13','00:00:00',308,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6721,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 10:40:32','reception','2025-12-13 10:40:42',0),(18092,2526,0,0,6096,'2025-12-13','00:00:00',3568,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6722,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 10:41:19','drashti','2025-12-13 10:41:42',0),(18093,2526,0,0,6097,'2025-12-13','00:00:00',3254,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 10:43:23','drashti','2025-12-12 22:13:23',0),(18094,2526,0,0,6081,'2025-12-13','10:45:50',2711,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6723,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 10:45:50','priyanshi','2025-12-13 10:45:50',0),(18095,2526,0,0,6098,'2025-12-13','00:00:00',4034,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6724,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 10:46:22','drashti','2025-12-13 10:47:30',0),(18096,2526,0,0,6099,'2025-12-13','00:00:00',4035,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',6725,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 10:51:57','reception','2025-12-13 10:52:54',0),(18097,2526,0,0,6100,'2025-12-13','00:00:00',1624,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6727,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 10:54:15','reception','2025-12-13 10:54:38',0),(18098,2526,0,0,6101,'2025-12-13','00:00:00',4036,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6739,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 10:55:05','priyanshi','2025-12-13 11:16:47',0),(18099,2526,0,0,6102,'2025-12-13','00:00:00',2474,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6728,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 10:57:54','priyanshi','2025-12-13 10:58:26',0),(18100,2526,0,0,6103,'2025-12-13','00:00:00',3582,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 10:58:36','drashti','2025-12-12 22:28:36',0),(18101,2526,0,0,6104,'2025-12-13','00:00:00',3498,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 10:59:20','priyanshi','2025-12-12 22:29:20',0),(18102,2526,0,0,6105,'2025-12-13','00:00:00',466,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6729,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 11:01:58','reception','2025-12-13 11:02:14',0),(18103,2526,0,0,6106,'2025-12-13','00:00:00',4037,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',6732,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 11:04:23','reception','2025-12-13 11:04:55',0),(18104,2526,0,0,6107,'2025-12-13','00:00:00',4038,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',6731,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 11:04:24','drashti','2025-12-13 11:04:50',0),(18105,2526,0,0,6102,'2025-12-13','11:04:40',2474,0,'XRY','XRY0388','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6730,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 11:04:40','priyanshi','2025-12-13 11:04:40',0),(18106,2526,0,0,6108,'2025-12-13','00:00:00',4039,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6733,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 11:06:11','priyanshi','2025-12-13 11:06:32',0),(18107,2526,0,0,6109,'2025-12-13','00:00:00',4040,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6734,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 11:08:39','reception','2025-12-13 11:10:34',0),(18108,2526,0,0,6111,'2025-12-13','00:00:00',4041,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6735,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 11:13:30','reception','2025-12-13 11:13:44',0),(18109,2526,0,0,6110,'2025-12-13','11:13:49',3704,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6736,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 11:13:49','janvi','2025-12-13 11:39:18',0),(18110,2526,0,0,6112,'2025-12-13','00:00:00',2960,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6737,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 11:14:49','reception','2025-12-13 11:15:01',0),(18111,2526,0,0,6097,'2025-12-13','11:15:20',3254,0,'OPWD','OPWD0007','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6738,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 11:15:20','drashti','2025-12-13 11:15:20',0),(18112,2526,0,0,6113,'2025-12-13','00:00:00',3508,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',6740,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 11:17:44','reception','2025-12-13 11:18:44',0),(18113,2526,0,0,6114,'2025-12-13','00:00:00',1280,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6741,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 11:18:46','drashti','2025-12-13 11:19:17',0),(18114,2526,0,0,6072,'2025-12-13','11:20:30',4024,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6742,1,287,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 11:20:30','reception','2025-12-13 11:20:30',0),(18115,2526,0,0,6072,'2025-12-13','11:20:30',4024,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6742,2,287,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 11:20:30','reception','2025-12-13 11:20:30',0),(18116,2526,0,0,6072,'2025-12-13','11:20:30',4024,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6742,3,326,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 11:20:30','reception','2025-12-13 11:20:30',0),(18117,2526,0,0,6083,'2025-12-13','11:23:46',3462,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6744,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 11:23:46','reception','2025-12-13 11:23:46',0),(18118,2526,0,0,6094,'2025-12-13','11:26:49',4033,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6745,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 11:26:49','priyanshi','2025-12-13 11:26:49',0),(18119,2526,0,0,6115,'2025-12-13','00:00:00',4042,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6746,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 11:27:29','reception','2025-12-13 11:28:51',0),(18120,2526,0,0,6116,'2025-12-13','11:29:36',3305,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6747,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 11:29:36','priyanshi','2025-12-13 11:29:36',0),(18121,2526,0,0,6116,'2025-12-13','11:29:36',3305,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6747,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 11:29:36','priyanshi','2025-12-13 11:29:36',0),(18122,2526,0,0,6117,'2025-12-13','00:00:00',4043,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6748,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 11:30:16','reception','2025-12-13 11:30:41',0),(18123,2526,0,0,6118,'2025-12-13','00:00:00',4044,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 11:30:40','priyanshi','2025-12-12 23:00:40',0),(18124,2526,0,0,6119,'2025-12-13','00:00:00',3523,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6749,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-13 11:32:01','priyanshi','2025-12-13 11:33:00',0),(18125,2526,0,0,6120,'2025-12-13','00:00:00',4045,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6750,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 11:35:39','reception','2025-12-13 11:36:42',0),(18126,2526,0,0,6099,'2025-12-13','11:37:09',4035,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6751,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 11:37:09','reception','2025-12-13 11:37:09',0),(18127,2526,0,0,6099,'2025-12-13','11:37:09',4035,0,'NEU1','NEU10016','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6751,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 11:37:09','reception','2025-12-13 11:37:09',0),(18128,2526,0,0,6087,'2025-12-13','11:38:27',4029,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6752,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 11:38:27','drashti','2025-12-13 11:38:27',0),(18129,2526,0,0,6109,'2025-12-13','11:52:44',4040,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6754,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 11:52:44','reception','2025-12-13 11:52:44',0),(18130,2526,0,0,6109,'2025-12-13','11:52:44',4040,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6754,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 11:52:44','reception','2025-12-13 11:52:44',0),(18131,2526,0,0,6109,'2025-12-13','11:52:44',4040,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6754,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 11:52:44','reception','2025-12-13 11:52:44',0),(18132,2526,0,0,6121,'2025-12-13','11:58:01',3517,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6755,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 11:58:01','drashti','2025-12-13 11:58:01',0),(18133,2526,0,0,6122,'2025-12-13','00:00:00',237,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6756,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 12:03:39','reception','2025-12-13 12:03:56',0),(18134,2526,0,0,6117,'2025-12-13','12:07:25',4043,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6757,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 12:07:25','reception','2025-12-13 12:07:25',0),(18135,2526,0,0,6117,'2025-12-13','12:07:25',4043,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6757,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 12:07:25','reception','2025-12-13 12:07:25',0),(18136,2526,0,0,6117,'2025-12-13','12:07:25',4043,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6757,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 12:07:25','reception','2025-12-13 12:07:25',0),(18137,2526,0,0,6071,'2025-12-13','12:13:35',3973,0,'OPWD','OPWD0023','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,0.00,5000,3,0,0,'',0,0,'','','','','',2526,'H','O',6758,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-13 12:13:35','janvi','2025-12-13 12:13:35',0),(18138,2526,0,0,6123,'2025-12-13','00:00:00',4046,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6759,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 12:14:04','reception','2025-12-13 12:14:42',0),(18139,2526,0,0,6124,'2025-12-13','00:00:00',4047,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6760,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 12:14:41','drashti','2025-12-13 12:15:56',0),(18140,2526,0,0,6125,'2025-12-13','00:00:00',4048,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',6761,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 12:17:35','reception','2025-12-13 12:17:58',0),(18141,2526,0,0,6126,'2025-12-13','00:00:00',4049,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6762,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-13 12:19:27','janvi','2025-12-13 12:20:00',0),(18142,2526,0,0,6106,'2025-12-13','12:21:30',4037,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6763,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 12:21:30','reception','2025-12-13 12:21:30',0),(18143,2526,0,0,6106,'2025-12-13','12:21:30',4037,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6763,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 12:21:30','reception','2025-12-13 12:21:30',0),(18144,2526,0,0,6128,'2025-12-13','00:00:00',1253,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6764,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 12:25:38','reception','2025-12-13 12:26:50',0),(18145,2526,0,0,6129,'2025-12-13','00:00:00',4050,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',6765,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 12:30:22','drashti','2025-12-13 12:31:38',0),(18146,2526,0,0,6130,'2025-12-13','12:31:44',2738,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6766,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-13 12:31:44','janvi','2025-12-13 12:31:44',0),(18147,2526,0,0,6131,'2025-12-13','01:00:00',0,281,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',263,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 12:32:09','riya','2025-12-13 14:42:04',0),(18148,2526,0,0,6131,'2025-12-13','01:00:00',0,281,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',263,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 12:32:09','riya','2025-12-13 14:42:04',0),(18149,2526,0,0,6131,'2025-12-13','01:00:00',0,281,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',263,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 00:02:09','riya','2025-12-13 14:42:04',0),(18150,2526,0,0,6131,'2025-12-13','01:00:00',0,281,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',263,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 00:02:09','riya','2025-12-13 14:42:04',0),(18151,2526,0,0,6131,'2025-12-13','01:00:00',0,281,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',263,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 00:02:09','riya','2025-12-13 14:42:04',0),(18152,2526,0,0,6131,'2025-12-13','01:00:00',0,281,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','410','','','',2526,'H','I',263,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 00:02:09','riya','2025-12-13 14:42:04',0),(18153,2526,0,0,6131,'2025-12-13','01:00:00',0,281,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-13 00:02:09','riya','2025-12-13 14:42:04',0),(18154,2526,0,0,6132,'2025-12-13','00:00:00',4051,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6767,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 12:33:02','reception','2025-12-13 12:34:00',0),(18155,2526,0,0,6133,'2025-12-13','00:00:00',4052,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6769,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 12:34:20','drashti','2025-12-13 12:37:23',0),(18156,2526,0,0,6134,'2025-12-13','00:00:00',4053,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6768,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 12:35:29','drashti','2025-12-13 12:37:04',0),(18157,2526,0,0,6135,'2025-12-13','00:00:00',1053,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6770,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 12:38:01','reception','2025-12-13 12:38:59',0),(18158,2526,0,0,6108,'2025-12-13','12:41:18',4039,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6771,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 12:41:18','reception','2025-12-13 12:41:18',0),(18159,2526,0,0,6108,'2025-12-13','12:41:18',4039,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6771,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 12:41:18','reception','2025-12-13 12:41:18',0),(18160,2526,0,0,5527,'2025-12-12','13:00:00',0,260,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 00:12:29','riya','2025-12-13 14:08:10',0),(18161,2526,0,0,5527,'2025-12-12','13:00:00',0,260,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 00:12:29','riya','2025-12-13 14:08:10',0),(18162,2526,0,0,5527,'2025-12-12','13:00:00',0,260,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 00:12:29','riya','2025-12-13 14:08:10',0),(18163,2526,0,0,5527,'2025-12-12','13:00:00',0,260,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 00:12:29','riya','2025-12-13 14:08:10',0),(18164,2526,0,0,5527,'2025-12-12','13:00:00',0,260,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',261,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 00:12:29','riya','2025-12-13 14:08:10',0),(18165,2526,0,0,6136,'2025-12-13','00:00:00',240,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6772,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-13 12:45:09','janvi','2025-12-13 12:45:24',0),(18166,2526,0,0,5527,'2025-12-13','12:45:00',0,260,'CARE','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',261,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 12:46:04','riya','2025-12-13 14:08:10',0),(18167,2526,0,0,5527,'2025-12-12','12:46:00',0,260,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',261,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 12:48:18','riya','2025-12-13 14:08:10',0),(18168,2526,0,0,6111,'2025-12-13','12:51:46',4041,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6773,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 12:51:45','reception','2025-12-13 12:51:45',0),(18169,2526,0,0,6111,'2025-12-13','12:51:46',4041,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6773,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 12:51:45','reception','2025-12-13 12:51:45',0),(18170,2526,0,0,6111,'2025-12-13','12:51:46',4041,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6773,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 12:51:45','reception','2025-12-13 12:51:45',0),(18171,2526,0,0,4694,'2025-12-12','17:00:00',0,222,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',262,94,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 00:25:43','riya','2025-12-13 12:56:17',0),(18172,2526,0,0,4694,'2025-12-12','17:00:00',0,222,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',262,95,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 00:25:43','riya','2025-12-13 12:56:17',0),(18173,2526,0,0,4694,'2025-12-12','17:00:00',0,222,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',262,96,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 00:25:43','riya','2025-12-13 12:56:17',0),(18174,2526,0,0,4694,'2025-12-12','17:00:00',0,222,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','405','','','',2526,'H','I',262,97,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 00:25:43','riya','2025-12-13 12:56:17',0),(18175,2526,0,0,4694,'2025-12-12','17:00:00',0,222,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',262,98,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 00:25:44','riya','2025-12-13 12:56:17',0),(18176,2526,0,0,6137,'2025-12-13','00:00:00',2193,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6774,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 13:10:42','reception','2025-12-13 13:10:56',0),(18177,2526,0,0,6138,'2025-12-13','00:00:00',4054,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6775,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-13 13:12:13','shweta','2025-12-13 13:13:20',0),(18178,2526,0,0,6139,'2025-12-13','00:00:00',2765,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6776,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-13 13:13:37','drashti','2025-12-13 13:15:29',0),(18179,2526,0,0,6123,'2025-12-13','13:16:58',4046,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6777,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 13:16:58','reception','2025-12-13 13:16:58',0),(18180,2526,0,0,6123,'2025-12-13','13:16:58',4046,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6777,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 13:16:58','reception','2025-12-13 13:16:58',0),(18181,2526,0,0,6138,'2025-12-13','13:35:54',4054,0,'XRY','XRY0292','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',6778,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-13 13:35:54','shweta','2025-12-13 13:35:54',0),(18182,2526,0,0,4694,'2025-12-08','13:47:00',0,222,'SURG','SURG0015','H','N',1.00,7000,7000,'P',0,0,0.00,0.00,7000.00,7000,3,0,0,'',0,0,'','','','','',2526,'H','I',262,98,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 13:49:37','','0000-00-00 00:00:00',0),(18183,2526,0,0,6089,'2025-12-13','13:54:52',4031,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6779,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 13:54:52','reception','2025-12-13 13:54:52',0),(18184,2526,0,0,6089,'2025-12-13','13:54:52',4031,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6779,2,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 13:54:52','reception','2025-12-13 13:54:52',0),(18185,2526,0,0,4694,'2025-12-12','13:52:00',0,222,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',262,99,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 13:56:41','','0000-00-00 00:00:00',0),(18186,2526,0,0,4694,'2025-12-13','13:53:00',0,222,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',262,100,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 13:56:41','','0000-00-00 00:00:00',0),(18187,2526,0,0,4694,'2025-12-12','13:54:00',0,222,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',262,101,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 13:56:41','','0000-00-00 00:00:00',0),(18188,2526,0,0,4694,'2025-12-13','13:54:00',0,222,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',262,102,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 13:56:41','','0000-00-00 00:00:00',0),(18189,2526,0,0,4694,'2025-12-13','13:55:00',0,222,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',262,103,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 13:56:41','','0000-00-00 00:00:00',0),(18190,2526,0,0,6131,'2025-12-13','14:39:00',0,281,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',263,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 14:42:04','','0000-00-00 00:00:00',0),(18191,2526,0,0,6131,'2025-12-13','14:40:00',0,281,'WPRC','WPRC0090','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',263,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 14:42:04','','0000-00-00 00:00:00',0),(18192,2526,0,0,5831,'2025-12-12','18:30:00',0,273,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',276,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 03:42:35','riya','2025-12-13 16:17:08',0),(18193,2526,0,0,5831,'2025-12-12','18:30:00',0,273,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',276,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 03:42:35','riya','2025-12-13 16:17:08',0),(18194,2526,0,0,5831,'2025-12-12','18:30:00',0,273,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',2526,'H','I',276,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 03:42:35','riya','2025-12-13 16:17:08',0),(18195,2526,0,0,5831,'2025-12-12','18:30:00',0,273,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','407','','','',2526,'H','I',276,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 03:42:35','riya','2025-12-13 16:17:08',0),(18196,2526,0,0,5831,'2025-12-12','18:30:00',0,273,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',276,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 03:42:35','riya','2025-12-13 16:17:08',0),(18197,2526,0,0,5831,'2025-12-13','16:12:00',0,273,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',276,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 16:17:08','','0000-00-00 00:00:00',0),(18198,2526,0,0,5831,'2025-12-13','16:13:00',0,273,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',276,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 16:17:08','','0000-00-00 00:00:00',0),(18199,2526,0,0,5831,'2025-12-13','16:15:00',0,273,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',276,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 16:17:08','','0000-00-00 00:00:00',0),(18200,2526,0,0,5831,'2025-12-13','16:16:00',0,273,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',276,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 16:17:08','','0000-00-00 00:00:00',0),(18201,2526,0,0,6140,'2025-12-13','00:00:00',1019,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6780,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 17:11:17','reception','2025-12-13 17:12:40',0),(18202,2526,0,0,6141,'2025-12-13','00:00:00',809,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6781,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 17:13:36','reception','2025-12-13 17:14:12',0),(18203,2526,0,0,6142,'2025-12-13','00:00:00',4055,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6782,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-13 17:34:11','janvi','2025-12-13 17:34:56',0),(18204,2526,0,0,6143,'2025-12-13','00:00:00',4056,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6783,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 17:48:12','reception','2025-12-13 17:48:33',0),(18205,2526,0,0,6145,'2025-12-13','00:00:00',4057,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6784,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 17:57:54','reception','2025-12-13 17:58:18',0),(18206,2526,0,0,6146,'2025-12-13','00:00:00',4058,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6786,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-13 18:01:39','shweta','2025-12-13 18:04:33',0),(18207,2526,0,0,6147,'2025-12-13','18:03:28',3901,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',6785,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-13 18:03:28','janvi','2025-12-13 18:03:28',0),(18208,2526,0,0,6056,'2025-12-13','18:14:00',0,276,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',266,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 18:16:01','riya','2025-12-13 18:31:14',0),(18209,2526,0,0,6056,'2025-12-12','19:00:00',0,276,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',266,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 05:51:11','riya','2025-12-13 18:31:14',0),(18210,2526,0,0,6148,'2025-12-13','18:30:53',3605,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6787,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-13 18:30:53','janvi','2025-12-13 18:30:53',0),(18211,2526,0,0,6056,'2025-12-13','18:31:00',0,276,'USG','USG0092','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',266,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 18:32:07','','0000-00-00 00:00:00',0),(18212,2526,0,0,6149,'2025-12-13','00:00:00',3031,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6788,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 18:34:33','reception','2025-12-13 18:36:03',0),(18213,2526,0,0,6150,'2025-12-13','00:00:00',4059,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6789,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-13 18:42:23','shweta','2025-12-13 18:47:10',0),(18214,2526,0,0,6061,'2025-12-12','19:50:00',4016,277,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',289,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 06:12:26','riya','2025-12-14 14:19:25',0),(18215,2526,0,0,6061,'2025-12-12','19:50:00',4016,277,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',289,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 06:12:26','riya','2025-12-14 14:19:25',0),(18216,2526,0,0,6061,'2025-12-12','19:50:00',4016,277,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',289,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 06:12:26','riya','2025-12-14 14:19:25',0),(18217,2526,0,0,6061,'2025-12-12','19:50:00',4016,277,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-13 06:12:26','riya','2025-12-14 14:19:25',0),(18218,2526,0,0,6061,'2025-12-12','19:50:00',4016,277,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-13 06:12:26','riya','2025-12-14 14:19:25',0),(18219,2526,0,0,6150,'2025-12-13','18:55:57',4059,0,'WPRC','WPRC0037','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,7,0,0,'',0,0,'','','','','',2526,'H','O',6790,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-13 18:55:56','shweta','2025-12-13 18:55:56',0),(18220,2526,0,0,6151,'2025-12-13','18:59:54',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6791,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-13 18:59:54','janvi','2025-12-13 18:59:54',0),(18221,2526,0,0,6152,'2025-12-13','19:03:58',3310,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6792,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-13 19:03:58','janvi','2025-12-13 19:03:58',0),(18222,2526,0,0,6153,'2025-12-13','00:00:00',4060,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6793,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-13 19:26:43','shweta','2025-12-13 19:28:22',0),(18223,2526,0,0,6153,'2025-12-13','19:28:22',4060,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',6793,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-13 19:28:22','shweta','2025-12-13 19:28:22',0),(18224,2526,0,0,6154,'2025-12-13','20:12:26',1476,0,'OPWD','OPWD0023','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',6794,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-13 20:12:26','reception','2025-12-13 20:12:26',0),(18225,2526,0,0,6155,'2025-12-13','21:19:00',4033,282,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',282,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 21:21:36','vishal','2025-12-16 12:02:35',0),(18226,2526,0,0,6155,'2025-12-13','21:19:00',4033,282,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',282,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 21:21:36','vishal','2025-12-16 12:02:35',0),(18227,2526,0,0,6155,'2025-12-13','21:19:00',4033,282,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',282,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 08:51:36','vishal','2025-12-16 12:02:35',0),(18228,2526,0,0,6155,'2025-12-13','21:19:00',4033,282,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',282,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 08:51:36','vishal','2025-12-16 12:02:35',0),(18229,2526,0,0,6155,'2025-12-13','21:19:00',4033,282,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',282,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 08:51:36','vishal','2025-12-16 12:02:35',0),(18230,2526,0,0,6155,'2025-12-14','21:19:00',4033,282,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',282,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 08:51:36','vishal','2025-12-16 12:02:35',0),(18231,2526,0,0,6155,'2025-12-14','21:19:00',4033,282,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',282,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 08:51:36','vishal','2025-12-16 12:02:35',0),(18232,2526,0,0,6156,'2025-12-14','00:00:00',3264,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-14 09:25:18','priyanshi','2025-12-13 20:55:18',0),(18233,2526,0,0,6156,'2025-12-14','09:26:55',3264,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',6795,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-14 09:26:55','priyanshi','2025-12-14 09:26:55',0),(18234,2526,0,0,6156,'2025-12-14','09:26:55',3264,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6795,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-14 09:26:55','priyanshi','2025-12-14 09:26:55',0),(18235,2526,0,0,6157,'2025-12-14','00:00:00',4061,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-14 09:36:01','priyanshi','2025-12-13 21:06:01',0),(18236,2526,0,0,6157,'2025-12-14','09:36:24',4061,0,'SURG','SURG0005','H','N',1.00,1700,1700,'P',0,0,0.00,0.00,0.00,1700,42,0,0,'',0,0,'','','','','',2526,'H','O',6796,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-14 09:36:24','priyanshi','2025-12-14 09:36:24',0),(18237,2526,0,0,6158,'2025-12-14','00:00:00',4062,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-14 09:50:53','priyanshi','2025-12-13 21:20:53',0),(18238,2526,0,0,6158,'2025-12-14','09:52:05',4062,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',6797,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-14 09:52:05','priyanshi','2025-12-14 09:52:05',0),(18239,2526,0,0,6158,'2025-12-14','09:52:05',4062,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',6797,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-14 09:52:05','priyanshi','2025-12-14 09:52:05',0),(18240,2526,0,0,6159,'2025-12-14','00:00:00',4063,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-14 10:01:42','priyanshi','2025-12-13 21:31:42',0),(18241,2526,0,0,6159,'2025-12-14','10:02:02',4063,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,286,0,0,'',0,0,'','','','','',2526,'H','O',6798,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-14 10:02:02','priyanshi','2025-12-14 10:02:02',0),(18242,2526,0,0,5120,'2025-12-13','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 21:37:27','riya','2025-12-14 10:09:07',0),(18243,2526,0,0,5120,'2025-12-14','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 21:37:27','riya','2025-12-14 10:09:07',0),(18244,2526,0,0,5120,'2025-12-13','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 21:37:27','riya','2025-12-14 10:09:07',0),(18245,2526,0,0,5120,'2025-12-14','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 21:37:27','riya','2025-12-14 10:09:07',0),(18246,2526,0,0,5120,'2025-12-13','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 21:37:27','riya','2025-12-14 10:09:07',0),(18247,2526,0,0,5120,'2025-12-14','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 21:37:27','riya','2025-12-14 10:09:07',0),(18248,2526,0,0,5120,'2025-12-13','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 21:37:27','riya','2025-12-14 10:09:07',0),(18249,2526,0,0,5120,'2025-12-14','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 21:37:27','riya','2025-12-14 10:09:07',0),(18250,2526,0,0,5120,'2025-12-13','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 21:37:27','riya','2025-12-14 10:09:07',0),(18251,2526,0,0,5120,'2025-12-14','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 21:37:27','riya','2025-12-14 10:09:07',0),(18252,2526,0,0,6160,'2025-12-14','00:00:00',4064,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-14 10:40:01','priyanshi','2025-12-13 22:10:01',0),(18253,2526,0,0,6160,'2025-12-14','10:42:15',4064,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',6799,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-14 10:42:15','priyanshi','2025-12-14 10:42:15',0),(18254,2526,0,0,6160,'2025-12-14','10:42:15',4064,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6799,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-14 10:42:15','priyanshi','2025-12-14 10:42:15',0),(18255,2526,0,0,6160,'2025-12-14','10:42:15',4064,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6799,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-14 10:42:15','priyanshi','2025-12-14 10:42:15',0),(18256,2526,0,0,6161,'2025-12-14','01:00:00',0,283,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',270,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 10:59:11','vishal','2025-12-14 16:41:40',0),(18257,2526,0,0,6161,'2025-12-14','01:00:00',0,283,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',270,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 10:59:11','vishal','2025-12-14 16:41:40',0),(18258,2526,0,0,6161,'2025-12-14','01:00:00',0,283,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',270,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 22:29:11','vishal','2025-12-14 16:41:40',0),(18259,2526,0,0,6161,'2025-12-14','01:00:00',0,283,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',270,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 22:29:11','vishal','2025-12-14 16:41:40',0),(18260,2526,0,0,6161,'2025-12-14','01:00:00',0,283,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',270,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 22:29:11','vishal','2025-12-14 16:41:40',0),(18261,2526,0,0,6161,'2025-12-14','01:00:00',0,283,'DRC','DRC0018','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','405','','','',2526,'H','I',270,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 22:29:11','vishal','2025-12-14 16:41:40',0),(18262,2526,0,0,6161,'2025-12-14','01:00:00',0,283,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-13 22:29:11','vishal','2025-12-14 16:41:40',0),(18263,2526,0,0,5583,'2025-12-12','18:00:00',0,261,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 22:43:44','riya','2025-12-14 11:15:04',0),(18264,2526,0,0,5583,'2025-12-13','18:00:00',0,261,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 22:43:44','riya','2025-12-14 11:15:04',0),(18265,2526,0,0,5583,'2025-12-12','18:00:00',0,261,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 22:43:44','riya','2025-12-14 11:15:04',0),(18266,2526,0,0,5583,'2025-12-13','18:00:00',0,261,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 22:43:44','riya','2025-12-14 11:15:04',0),(18267,2526,0,0,5583,'2025-12-12','18:00:00',0,261,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 22:43:44','riya','2025-12-14 11:15:04',0),(18268,2526,0,0,5583,'2025-12-13','18:00:00',0,261,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 22:43:44','riya','2025-12-14 11:15:04',0),(18269,2526,0,0,5583,'2025-12-12','18:00:00',0,261,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 22:43:44','riya','2025-12-14 11:15:04',0),(18270,2526,0,0,5583,'2025-12-13','18:00:00',0,261,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 22:43:44','riya','2025-12-14 11:15:04',0),(18271,2526,0,0,5583,'2025-12-12','18:00:00',0,261,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 22:43:44','riya','2025-12-14 11:15:04',0),(18272,2526,0,0,5583,'2025-12-13','18:00:00',0,261,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','412','','','',2526,'H','I',267,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 22:43:44','riya','2025-12-14 11:15:04',0),(18273,2526,0,0,5583,'2025-12-14','11:14:00',0,261,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','I',267,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 11:15:04','','0000-00-00 00:00:00',0),(18274,2526,0,0,6162,'2025-12-14','11:20:58',3305,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6800,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-14 11:20:58','priyanshi','2025-12-14 11:20:58',0),(18275,2526,0,0,6163,'2025-12-14','11:30:00',0,284,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 11:30:38','riya','2025-12-15 13:52:28',0),(18276,2526,0,0,6163,'2025-12-14','11:30:00',0,284,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 11:30:38','riya','2025-12-15 13:52:28',0),(18277,2526,0,0,6163,'2025-12-14','11:30:00',0,284,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 23:00:38','riya','2025-12-15 13:52:28',0),(18278,2526,0,0,6163,'2025-12-14','11:30:00',0,284,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 23:00:38','riya','2025-12-15 13:52:28',0),(18279,2526,0,0,6163,'2025-12-14','11:30:00',0,284,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 23:00:38','riya','2025-12-15 13:52:28',0),(18280,2526,0,0,6163,'2025-12-14','11:30:00',0,284,'DRC','DRC0018','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','207','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 23:00:38','riya','2025-12-15 13:54:56',0),(18281,2526,0,0,6163,'2025-12-14','11:30:00',0,284,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','207','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 23:00:38','riya','2025-12-15 13:54:56',0),(18282,2526,0,0,6084,'2025-12-14','10:27:00',3999,280,'ROOM','ROOM0009','H','N',0.50,2900,1450,'A',0,0,0.00,0.00,1450.00,1450,9999,0,0,'',0,0,'','308','','','',2526,'H','I',271,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 23:20:12','vishal','2025-12-14 17:30:34',0),(18283,2526,0,0,6084,'2025-12-14','10:27:00',3999,280,'AECO','AECO0008','H','N',0.50,300,150,'A',0,0,0.00,0.00,150.00,150,9999,0,0,'',0,0,'','308','','','',2526,'H','I',271,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 23:20:12','vishal','2025-12-14 17:30:34',0),(18284,2526,0,0,6084,'2025-12-14','10:27:00',3999,280,'CARE','CARE0001','H','N',0.50,200,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','308','','','',2526,'H','I',271,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 23:20:12','vishal','2025-12-14 17:30:34',0),(18285,2526,0,0,6084,'2025-12-14','10:27:00',3999,280,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',2526,'H','I',271,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 23:20:12','riya','2025-12-14 11:52:01',0),(18286,2526,0,0,6084,'2025-12-14','10:27:00',3999,280,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','308','','','',0,'','',0,12,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 23:20:12','vishal','2025-12-14 17:30:34',0),(18287,2526,0,0,6084,'2025-12-13','11:50:00',3999,280,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',271,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 11:52:01','','0000-00-00 00:00:00',0),(18288,2526,0,0,6084,'2025-12-13','11:50:00',3999,280,'WPRC','WPRC0080','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',271,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 11:52:01','vishal','2025-12-14 17:30:34',0),(18289,2526,0,0,6084,'2025-12-14','11:51:00',3999,280,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',271,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 11:52:01','','0000-00-00 00:00:00',0),(18290,2526,0,0,6084,'2025-12-14','11:51:00',3999,280,'WPRC','WPRC0078','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',271,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 11:52:01','vishal','2025-12-14 17:32:35',0),(18291,2526,0,0,6047,'2025-12-13','18:30:00',4002,275,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',269,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 23:40:19','riya','2025-12-14 12:17:19',0),(18292,2526,0,0,6047,'2025-12-13','18:30:00',4002,275,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',269,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 23:40:19','riya','2025-12-14 12:17:19',0),(18293,2526,0,0,6047,'2025-12-13','18:30:00',4002,275,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',269,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 23:40:19','riya','2025-12-14 12:17:19',0),(18294,2526,0,0,6047,'2025-12-13','18:30:00',4002,275,'DRC','DRC0018','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','407','','','',2526,'H','I',269,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 23:40:19','riya','2025-12-14 12:17:19',0),(18295,2526,0,0,6047,'2025-12-13','18:30:00',4002,275,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','407','','','',2526,'H','I',269,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-13 23:40:19','riya','2025-12-14 12:17:19',0),(18296,2526,0,0,6047,'2025-12-14','12:15:00',4002,275,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','','','','',2526,'H','I',269,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:17:19','','0000-00-00 00:00:00',0),(18297,2526,0,0,6047,'2025-12-12','12:15:00',4002,275,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',269,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:17:19','','0000-00-00 00:00:00',0),(18298,2526,0,0,6047,'2025-12-13','12:15:00',4002,275,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',269,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:17:19','','0000-00-00 00:00:00',0),(18299,2526,0,0,6047,'2025-12-13','12:16:00',4002,275,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',269,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:17:19','','0000-00-00 00:00:00',0),(18300,2526,0,0,6047,'2025-12-14','12:16:00',4002,275,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',269,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:17:19','','0000-00-00 00:00:00',0),(18301,2526,0,0,6047,'2025-12-12','12:24:00',4002,275,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',269,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:30:34','','0000-00-00 00:00:00',0),(18302,2526,0,0,6047,'2025-12-12','12:24:00',4002,275,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',269,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:30:34','','0000-00-00 00:00:00',0),(18303,2526,0,0,6047,'2025-12-13','12:25:00',4002,275,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','','','','',2526,'H','I',269,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:30:34','','0000-00-00 00:00:00',0),(18304,2526,0,0,6047,'2025-12-13','12:25:00',4002,275,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',269,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:30:34','','0000-00-00 00:00:00',0),(18305,2526,0,0,6047,'2025-12-14','12:25:00',4002,275,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',269,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:30:34','','0000-00-00 00:00:00',0),(18306,2526,0,0,6070,'2025-12-14','09:53:00',3980,278,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','302','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-14 00:07:50','riya','2025-12-14 12:41:07',0),(18307,2526,0,0,6070,'2025-12-14','09:53:00',3980,278,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','302','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-14 00:07:50','riya','2025-12-14 12:41:07',0),(18308,2526,0,0,6070,'2025-12-14','09:53:00',3980,278,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','302','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-14 00:07:50','riya','2025-12-14 12:41:07',0),(18309,2526,0,0,6070,'2025-12-14','09:53:00',3980,278,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','302','','','',2526,'H','I',268,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 00:07:50','riya','2025-12-14 12:41:07',0),(18310,2526,0,0,6070,'2025-12-14','09:53:00',3980,278,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','302','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-14 00:07:50','riya','2025-12-14 12:41:07',0),(18311,2526,0,0,6070,'2025-12-13','12:38:00',3980,278,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',268,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:41:07','','0000-00-00 00:00:00',0),(18312,2526,0,0,6070,'2025-12-13','12:38:00',3980,278,'USG','USG0092','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',268,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:41:07','','0000-00-00 00:00:00',0),(18313,2526,0,0,6070,'2025-12-13','12:39:00',3980,278,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',268,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:41:07','','0000-00-00 00:00:00',0),(18314,2526,0,0,6070,'2025-12-13','12:39:00',3980,278,'WPRC','WPRC0080','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',268,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:41:07','riya','2025-12-14 12:45:43',0),(18315,2526,0,0,6070,'2025-12-14','12:39:00',3980,278,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',268,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:41:07','','0000-00-00 00:00:00',0),(18316,2526,0,0,6070,'2025-12-13','12:40:00',3980,278,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',268,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:41:07','','0000-00-00 00:00:00',0),(18317,2526,0,0,6070,'2025-12-13','12:40:00',3980,278,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',268,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:41:07','','0000-00-00 00:00:00',0),(18318,2526,0,0,6164,'2025-12-14','12:57:45',2738,0,'OTCG','OTCG0003','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6801,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-14 12:57:45','priyanshi','2025-12-14 12:57:45',0),(18319,2526,0,0,6165,'2025-12-14','12:50:00',0,285,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:58:31','vishal','2025-12-16 20:13:08',0),(18320,2526,0,0,6165,'2025-12-14','12:50:00',0,285,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 12:58:31','vishal','2025-12-16 20:13:08',0),(18321,2526,0,0,6165,'2025-12-14','12:50:00',0,285,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 00:28:31','vishal','2025-12-16 20:13:08',0),(18322,2526,0,0,6165,'2025-12-14','12:50:00',0,285,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 00:28:31','vishal','2025-12-16 20:13:08',0),(18323,2526,0,0,6165,'2025-12-14','12:50:00',0,285,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 00:28:31','vishal','2025-12-16 20:13:08',0),(18324,2526,0,0,6165,'2025-12-14','12:50:00',0,285,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-14 00:28:31','vishal','2025-12-16 20:13:08',0),(18325,2526,0,0,6165,'2025-12-14','12:50:00',0,285,'DRC','DRC0019','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,78,0,0,'',0,0,'','404','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 00:28:31','vishal','2025-12-16 20:13:08',0),(18326,2526,0,0,6061,'2025-12-13','19:50:00',4016,277,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',289,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 01:15:03','riya','2025-12-14 14:19:25',0),(18327,2526,0,0,6061,'2025-12-13','19:50:00',4016,277,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',289,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 01:15:03','riya','2025-12-14 14:19:25',0),(18328,2526,0,0,6061,'2025-12-13','19:50:00',4016,277,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',289,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 01:15:03','riya','2025-12-14 14:19:25',0),(18329,2526,0,0,6061,'2025-12-13','19:50:00',4016,277,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','411','','','',2526,'H','I',289,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 01:15:03','riya','2025-12-14 14:19:25',0),(18330,2526,0,0,6061,'2025-12-13','19:50:00',4016,277,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','411','','','',2526,'H','I',289,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 01:15:03','riya','2025-12-14 14:19:25',0),(18331,2526,0,0,6061,'2025-12-12','14:17:00',4016,277,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',289,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 14:19:25','','0000-00-00 00:00:00',0),(18332,2526,0,0,6061,'2025-12-13','14:17:00',4016,277,'USG','USG0092','H','N',1.00,1200,1200,'A',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',289,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 14:19:25','vishal','2025-12-17 12:35:46',0),(18333,2526,0,0,5521,'2025-12-13','12:30:00',0,259,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,44,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 01:51:55','riya','2025-12-14 14:26:47',0),(18334,2526,0,0,5521,'2025-12-14','12:30:00',0,259,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,56,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 01:51:55','vishal','2025-12-17 13:30:22',0),(18335,2526,0,0,5521,'2025-12-13','12:30:00',0,259,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,49,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 01:51:55','vishal','2025-12-17 13:30:22',0),(18336,2526,0,0,5521,'2025-12-14','12:30:00',0,259,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,55,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 01:51:55','vishal','2025-12-17 13:30:22',0),(18337,2526,0,0,5521,'2025-12-13','12:30:00',0,259,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,47,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 01:51:55','vishal','2025-12-17 13:29:42',0),(18338,2526,0,0,5521,'2025-12-14','12:30:00',0,259,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,55,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 01:51:55','vishal','2025-12-17 13:29:42',0),(18339,2526,0,0,5521,'2025-12-13','12:30:00',0,259,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',2526,'H','I',290,46,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 01:51:55','riya','2025-12-14 14:26:47',0),(18340,2526,0,0,5521,'2025-12-14','12:30:00',0,259,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',2526,'H','I',290,51,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 01:51:55','riya','2025-12-14 14:26:47',0),(18341,2526,0,0,5521,'2025-12-13','12:30:00',0,259,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',2526,'H','I',290,46,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 01:51:55','vishal','2025-12-17 13:30:22',0),(18342,2526,0,0,5521,'2025-12-14','12:30:00',0,259,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',0,'','',0,53,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 01:51:55','vishal','2025-12-17 13:05:22',0),(18343,2526,0,0,5521,'2025-12-14','14:23:00',0,259,'ROOM','ROOM0008','H','N',4.00,100,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,57,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 14:26:47','vishal','2025-12-17 13:07:43',0),(18344,2526,0,0,5521,'2025-12-13','14:23:00',0,259,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,55,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 14:26:47','','0000-00-00 00:00:00',0),(18345,2526,0,0,5521,'2025-12-13','14:24:00',0,259,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',290,56,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 14:26:47','','0000-00-00 00:00:00',0),(18346,2526,0,0,5521,'2025-12-12','14:24:00',0,259,'DRC','DRC0020','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,70,0,0,'',0,0,'','','','','',2526,'H','I',290,44,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 14:26:47','vishal','2025-12-17 13:07:43',0),(18347,2526,0,0,5521,'2025-12-13','14:25:00',0,259,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',290,52,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 14:26:47','vishal','2025-12-17 13:07:43',0),(18348,2526,0,0,5120,'2025-12-13','14:27:00',0,243,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 14:34:33','','0000-00-00 00:00:00',0),(18349,2526,0,0,5120,'2025-12-14','14:27:00',0,243,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 14:34:33','vishal','2025-12-22 17:08:50',0),(18350,2526,0,0,5120,'2025-12-12','14:27:00',0,243,'WPRC','WPRC0122','H','N',1.00,6000,6000,'P',0,0,0.00,0.00,6000.00,6000,4,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 14:34:33','','0000-00-00 00:00:00',0),(18351,2526,0,0,5120,'2025-12-13','14:28:00',0,243,'WPRC','WPRC0122','H','N',1.00,6000,6000,'P',0,0,0.00,0.00,6000.00,6000,4,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 14:34:33','','0000-00-00 00:00:00',0),(18352,2526,0,0,5120,'2025-12-12','14:30:00',0,243,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 14:34:33','','0000-00-00 00:00:00',0),(18353,2526,0,0,5120,'2025-12-13','14:30:00',0,243,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 14:34:33','','0000-00-00 00:00:00',0),(18354,2526,0,0,5120,'2025-12-14','14:30:00',0,243,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 14:34:33','vishal','2025-12-16 12:18:21',0),(18355,2526,0,0,5120,'2025-12-12','14:31:00',0,243,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 14:34:33','vishal','2025-12-16 12:18:21',0),(18356,2526,0,0,6082,'2025-12-13','15:13:00',3053,279,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',286,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 15:16:21','','0000-00-00 00:00:00',0),(18357,2526,0,0,6082,'2025-12-13','15:13:00',3053,279,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','D',286,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 15:16:21','','0000-00-00 00:00:00',0),(18358,2526,0,0,6082,'2025-12-14','15:13:00',3053,279,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','D',286,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 15:16:21','','0000-00-00 00:00:00',0),(18359,2526,0,0,6082,'2025-12-13','15:14:00',3053,279,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','D',286,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 15:16:21','','0000-00-00 00:00:00',0),(18360,2526,0,0,6161,'2025-12-14','16:40:00',0,283,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',270,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 16:41:40','','0000-00-00 00:00:00',0),(18361,2526,0,0,6161,'2025-12-14','16:40:00',0,283,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',270,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 16:41:40','','0000-00-00 00:00:00',0),(18362,2526,0,0,6166,'2025-12-14','17:00:00',4000,286,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',307,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 17:21:28','vishal','2025-12-17 17:27:17',0),(18363,2526,0,0,6166,'2025-12-14','17:00:00',4000,286,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',307,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 17:21:28','vishal','2025-12-17 17:27:17',0),(18364,2526,0,0,6166,'2025-12-14','17:00:00',4000,286,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','D',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 04:51:28','vishal','2025-12-17 17:27:17',0),(18365,2526,0,0,6166,'2025-12-14','17:00:00',4000,286,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','D',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 04:51:28','vishal','2025-12-17 17:27:17',0),(18366,2526,0,0,6166,'2025-12-14','17:00:00',4000,286,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','D',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 04:51:28','vishal','2025-12-17 17:27:17',0),(18367,2526,0,0,6166,'2025-12-15','17:00:00',4000,286,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','405','','','',2526,'H','D',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 04:51:28','vishal','2025-12-17 17:30:43',0),(18368,2526,0,0,6166,'2025-12-15','17:00:00',4000,286,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','405','','','',2526,'H','D',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 04:51:28','vishal','2025-12-17 17:30:43',0),(18369,2526,0,0,4017,'2025-12-13','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,222,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:37','vishal','2025-12-14 20:18:51',0),(18370,2526,0,0,4017,'2025-12-14','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,241,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:37','vishal','2025-12-14 20:19:24',0),(18371,2526,0,0,4017,'2025-12-13','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,223,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:37','vishal','2025-12-14 20:18:51',0),(18372,2526,0,0,4017,'2025-12-14','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,242,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:37','vishal','2025-12-14 20:19:24',0),(18373,2526,0,0,4017,'2025-12-13','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,224,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:37','vishal','2025-12-14 20:18:51',0),(18374,2526,0,0,4017,'2025-12-14','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,243,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:37','vishal','2025-12-14 20:19:24',0),(18375,2526,0,0,4017,'2025-12-13','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,231,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:37','vishal','2025-12-21 11:20:51',0),(18376,2526,0,0,4017,'2025-12-14','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,244,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:37','vishal','2025-12-14 20:19:24',0),(18377,2526,0,0,4017,'2025-12-13','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,232,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:37','vishal','2025-12-14 20:19:24',0),(18378,2526,0,0,4017,'2025-12-14','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,245,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:37','vishal','2025-12-14 20:19:24',0),(18379,2526,0,0,5848,'2025-12-13','22:15:00',0,274,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:39','vishal','2025-12-14 19:58:46',0),(18380,2526,0,0,5848,'2025-12-12','22:15:00',0,274,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:39','vishal','2025-12-14 19:58:46',0),(18381,2526,0,0,5848,'2025-12-13','22:15:00',0,274,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:39','vishal','2025-12-14 19:58:46',0),(18382,2526,0,0,5848,'2025-12-12','22:15:00',0,274,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:39','vishal','2025-12-14 19:58:46',0),(18383,2526,0,0,5848,'2025-12-13','22:15:00',0,274,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:39','vishal','2025-12-14 19:58:46',0),(18384,2526,0,0,5848,'2025-12-12','22:15:00',0,274,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','305','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:39','vishal','2025-12-14 19:58:46',0),(18385,2526,0,0,5848,'2025-12-13','22:15:00',0,274,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','305','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:39','vishal','2025-12-14 19:58:46',0),(18386,2526,0,0,5848,'2025-12-12','22:15:00',0,274,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','305','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:39','vishal','2025-12-14 19:58:46',0),(18387,2526,0,0,5848,'2025-12-13','22:15:00',0,274,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','305','','','',0,'','',0,29,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:39','riya','2025-12-15 16:04:46',0),(18388,2526,0,0,5848,'2025-12-12','22:15:00',0,274,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:39','vishal','2025-12-14 19:58:46',0),(18389,2526,0,0,6061,'2025-12-14','19:50:00',4016,277,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',289,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:40','vishal','2025-12-16 21:27:38',0),(18390,2526,0,0,6061,'2025-12-14','19:50:00',4016,277,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',289,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:40','vishal','2025-12-16 21:27:38',0),(18391,2526,0,0,6061,'2025-12-14','19:50:00',4016,277,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',289,16,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:40','vishal','2025-12-17 12:39:41',0),(18392,2526,0,0,6061,'2025-12-14','19:50:00',4016,277,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','411','','','',2526,'H','I',289,17,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:40','vishal','2025-12-17 12:39:41',0),(18393,2526,0,0,6061,'2025-12-14','19:50:00',4016,277,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 07:23:40','vishal','2025-12-16 21:27:38',0),(18394,2526,0,0,4017,'2025-12-13','20:11:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,232,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','','0000-00-00 00:00:00',0),(18395,2526,0,0,4017,'2025-12-14','20:11:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,233,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','','0000-00-00 00:00:00',0),(18396,2526,0,0,4017,'2025-12-13','20:11:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,234,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','','0000-00-00 00:00:00',0),(18397,2526,0,0,4017,'2025-12-14','20:11:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,235,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','','0000-00-00 00:00:00',0),(18398,2526,0,0,4017,'2025-12-13','20:12:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,236,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','','0000-00-00 00:00:00',0),(18399,2526,0,0,4017,'2025-12-14','20:12:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,237,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','','0000-00-00 00:00:00',0),(18400,2526,0,0,4017,'2025-12-12','20:13:00',0,187,'ROOM','ROOM0008','H','N',4.00,100,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',0,'','',0,223,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','vishal','2025-12-14 20:19:24',0),(18401,2526,0,0,4017,'2025-12-13','20:13:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,239,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','','0000-00-00 00:00:00',0),(18402,2526,0,0,4017,'2025-12-14','20:13:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,240,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','','0000-00-00 00:00:00',0),(18403,2526,0,0,4017,'2025-12-12','20:13:00',0,187,'WPRC','WPRC0080','H','N',3.00,500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,224,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','vishal','2025-12-14 20:19:24',0),(18404,2526,0,0,4017,'2025-12-12','20:14:00',0,187,'WPRC','WPRC0091','H','N',5.00,500,2500,'A',0,0,0.00,0.00,2500.00,2500,9999,0,0,'',0,0,'','','','','',0,'','',0,225,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','vishal','2025-12-14 20:19:24',0),(18405,2526,0,0,4017,'2025-12-13','20:15:00',0,187,'USG','USG0092','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,243,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','','0000-00-00 00:00:00',0),(18406,2526,0,0,4017,'2025-12-13','20:15:00',0,187,'WPRC','WPRC0118','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,244,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','','0000-00-00 00:00:00',0),(18407,2526,0,0,4017,'2025-12-14','20:15:00',0,187,'WPRC','WPRC0118','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,245,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','','0000-00-00 00:00:00',0),(18408,2526,0,0,4017,'2025-12-12','20:15:00',0,187,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,226,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','vishal','2025-12-14 20:19:24',0),(18409,2526,0,0,4017,'2025-12-13','20:16:00',0,187,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',0,'','',0,247,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','','0000-00-00 00:00:00',0),(18410,2526,0,0,4017,'2025-12-14','20:16:00',0,187,'WPRC','WPRC0087','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,248,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','','0000-00-00 00:00:00',0),(18411,2526,0,0,4017,'2025-12-11','20:16:00',0,187,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,249,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','','0000-00-00 00:00:00',0),(18412,2526,0,0,4017,'2025-12-12','20:16:00',0,187,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,227,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','vishal','2025-12-14 20:19:24',0),(18413,2526,0,0,4017,'2025-12-13','20:16:00',0,187,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,251,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','','0000-00-00 00:00:00',0),(18414,2526,0,0,4017,'2025-12-14','20:16:00',0,187,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,252,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 20:18:51','vishal','2025-12-21 11:20:51',0),(18415,2526,0,0,6167,'2025-12-14','21:00:00',0,287,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',277,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 21:17:46','vishal','2025-12-15 21:10:41',0),(18416,2526,0,0,6167,'2025-12-14','21:00:00',0,287,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',277,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 21:17:46','vishal','2025-12-15 21:10:41',0),(18417,2526,0,0,6167,'2025-12-14','21:00:00',0,287,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',277,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 08:47:46','vishal','2025-12-15 21:10:41',0),(18418,2526,0,0,6167,'2025-12-14','21:00:00',0,287,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',277,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 08:47:46','vishal','2025-12-15 21:10:41',0),(18419,2526,0,0,6167,'2025-12-14','21:00:00',0,287,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',277,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 08:47:46','vishal','2025-12-15 21:10:41',0),(18420,2526,0,0,6167,'2025-12-14','21:00:00',0,287,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',277,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 08:47:46','vishal','2025-12-15 21:10:41',0),(18421,2526,0,0,6167,'2025-12-14','21:00:00',0,287,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',277,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-14 08:47:46','vishal','2025-12-15 21:10:41',0),(18422,2526,0,0,6168,'2025-12-15','00:00:00',3378,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 08:48:46','reception','2025-12-14 20:18:46',0),(18423,2526,0,0,6168,'2025-12-15','08:49:17',3378,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6802,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 08:49:17','reception','2025-12-15 08:49:17',0),(18424,2526,0,0,6169,'2025-12-15','00:00:00',4065,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 08:50:21','reception','2025-12-14 20:20:21',0),(18425,2526,0,0,6169,'2025-12-15','09:10:50',4065,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',6803,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 09:10:50','reception','2025-12-15 09:10:50',0),(18426,2526,0,0,6169,'2025-12-15','09:10:50',4065,0,'XRY','XRY0017','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','O',6803,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 09:10:50','reception','2025-12-15 09:10:50',0),(18427,2526,0,0,6169,'2025-12-15','09:10:50',4065,0,'XRY','XRY0428','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','O',6803,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 09:10:50','reception','2025-12-15 09:10:50',0),(18428,2526,0,0,6169,'2025-12-15','09:10:50',4065,0,'OPWD','OPWD0013','H','N',7.00,100,700,'P',0,0,0.00,0.00,0.00,700,6,0,0,'',0,0,'','','','','',2526,'H','O',6803,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 09:10:50','reception','2025-12-15 09:10:50',0),(18429,2526,0,0,6170,'2025-12-15','00:00:00',4066,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6804,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-15 09:14:59','priyanshi','2025-12-15 09:16:07',0),(18430,2526,0,0,6171,'2025-12-15','00:00:00',4067,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 09:15:05','reception','2025-12-14 20:45:06',0),(18431,2526,0,0,6171,'2025-12-15','09:17:27',4067,0,'SURG','SURG0005','H','N',1.00,1700,1700,'P',0,0,0.00,0.00,0.00,1700,42,0,0,'',0,0,'','','','','',2526,'H','O',6805,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-15 09:17:27','reception','2025-12-15 09:17:27',0),(18432,2526,0,0,6171,'2025-12-15','09:17:27',4067,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,42,0,0,'',0,0,'','','','','',2526,'H','O',6805,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-15 09:17:27','reception','2025-12-15 09:17:27',0),(18433,2526,0,0,6171,'2025-12-15','09:17:27',4067,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,9999,0,119,'',0,0,'','','','','',2526,'H','O',6805,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-15 09:17:27','reception','2025-12-15 09:17:27',0),(18434,2526,0,0,6171,'2025-12-15','09:17:27',4067,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,42,0,0,'',0,0,'','','','','',2526,'H','O',6805,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-15 09:17:27','reception','2025-12-15 09:17:27',0),(18435,2526,0,0,6172,'2025-12-15','00:00:00',1227,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6806,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 10:06:22','reception','2025-12-15 10:06:33',0),(18436,2526,0,0,6173,'2025-12-15','00:00:00',4068,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',6807,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 10:10:32','reception','2025-12-15 10:11:21',0),(18437,2526,0,0,6174,'2025-12-15','00:00:00',3366,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',6811,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 10:13:54','reception','2025-12-15 10:28:31',0),(18438,2526,0,0,6175,'2025-12-15','00:00:00',4069,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6808,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 10:15:39','drashti','2025-12-15 10:16:37',0),(18439,2526,0,0,6177,'2025-12-15','00:00:00',3514,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6809,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 10:17:37','reception','2025-12-15 10:18:03',0),(18440,2526,0,0,6178,'2025-12-15','00:00:00',4070,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',6810,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 10:25:08','reception','2025-12-15 10:26:01',0),(18441,2526,0,0,6179,'2025-12-15','00:00:00',4071,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6812,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 10:30:15','reception','2025-12-15 10:30:58',0),(18442,2526,0,0,6180,'2025-12-15','00:00:00',2850,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6813,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 10:30:56','drashti','2025-12-15 10:31:11',0),(18443,2526,0,0,6181,'2025-12-15','00:00:00',3712,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6814,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 10:32:25','reception','2025-12-15 10:32:42',0),(18444,2526,0,0,6182,'2025-12-15','00:00:00',4072,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6815,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 10:32:50','shweta','2025-12-15 10:34:11',0),(18445,2526,0,0,6183,'2025-12-15','00:00:00',2239,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6816,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 10:34:25','reception','2025-12-15 10:35:46',0),(18446,2526,0,0,6184,'2025-12-15','00:00:00',2277,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6817,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 10:35:13','drashti','2025-12-15 10:38:14',0),(18447,2526,0,0,6185,'2025-12-15','00:00:00',4073,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6818,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 10:39:47','shweta','2025-12-15 10:40:08',0),(18448,2526,0,0,6186,'2025-12-15','00:00:00',4074,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,3,0,0,'',0,0,'','','','','',2526,'H','O',6851,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-15 10:43:18','priyanshi','2025-12-15 11:31:44',0),(18449,2526,0,0,6187,'2025-12-15','00:00:00',1965,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6819,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 10:45:48','reception','2025-12-15 10:46:13',0),(18450,2526,0,0,6188,'2025-12-15','00:00:00',3695,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6820,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 10:48:08','drashti','2025-12-15 10:48:28',0),(18451,2526,0,0,6189,'2025-12-15','00:00:00',4075,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6821,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 10:48:23','reception','2025-12-15 10:48:46',0),(18452,2526,0,0,6190,'2025-12-15','00:00:00',4076,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6822,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 10:51:10','reception','2025-12-15 10:51:27',0),(18453,2526,0,0,6191,'2025-12-15','10:52:35',3720,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6823,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-15 10:52:35','priyanshi','2025-12-15 10:52:35',0),(18454,2526,0,0,6192,'2025-12-15','00:00:00',4077,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6824,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 10:53:24','reception','2025-12-15 10:54:04',0),(18455,2526,0,0,6193,'2025-12-15','00:00:00',811,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6825,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 10:54:13','drashti','2025-12-15 10:54:54',0),(18456,2526,0,0,6194,'2025-12-15','00:00:00',4078,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6826,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-15 10:54:40','priyanshi','2025-12-15 10:55:23',0),(18457,2526,0,0,6195,'2025-12-15','00:00:00',3755,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6828,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 10:56:37','drashti','2025-12-15 10:57:40',0),(18458,2526,0,0,6196,'2025-12-15','00:00:00',4079,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6827,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 10:56:40','reception','2025-12-15 10:56:59',0),(18459,2526,0,0,6197,'2025-12-15','00:00:00',3148,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6829,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 10:58:06','reception','2025-12-15 10:58:22',0),(18460,2526,0,0,6173,'2025-12-15','11:01:34',4068,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6830,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 11:01:34','reception','2025-12-15 11:01:34',0),(18461,2526,0,0,6199,'2025-12-15','00:00:00',3589,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6831,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 11:02:12','reception','2025-12-15 11:02:46',0),(18462,2526,0,0,6201,'2025-12-15','11:00:00',0,288,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',278,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 11:04:38','vishal','2025-12-16 11:10:52',0),(18463,2526,0,0,6201,'2025-12-15','11:00:00',0,288,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',278,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 11:04:38','vishal','2025-12-16 11:10:52',0),(18464,2526,0,0,6201,'2025-12-15','11:00:00',0,288,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',278,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 22:34:38','vishal','2025-12-16 11:10:52',0),(18465,2526,0,0,6201,'2025-12-15','11:00:00',0,288,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',278,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 22:34:38','vishal','2025-12-16 11:10:52',0),(18466,2526,0,0,6201,'2025-12-15','11:00:00',0,288,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',278,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 22:34:38','vishal','2025-12-16 11:10:52',0),(18467,2526,0,0,6201,'2025-12-16','11:00:00',0,288,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','304','','','',2526,'H','I',278,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 22:34:38','vishal','2025-12-16 11:15:58',0),(18468,2526,0,0,6201,'2025-12-15','11:00:00',0,288,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','304','','','',2526,'H','I',278,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-14 22:34:38','vishal','2025-12-16 11:10:52',0),(18469,2526,0,0,6202,'2025-12-15','00:00:00',4080,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',6832,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 11:07:44','shweta','2025-12-15 11:08:12',0),(18470,2526,0,0,6176,'2025-12-15','11:10:37',3902,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6833,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-15 11:10:37','priyanshi','2025-12-15 11:10:37',0),(18471,2526,0,0,6203,'2025-12-15','11:10:56',3305,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6834,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 11:10:56','drashti','2025-12-15 11:10:56',0),(18472,2526,0,0,6204,'2025-12-15','00:00:00',4081,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6835,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 11:11:13','reception','2025-12-15 11:11:44',0),(18473,2526,0,0,6205,'2025-12-15','00:00:00',1508,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6836,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 11:12:06','reception','2025-12-15 11:12:28',0),(18474,2526,0,0,6206,'2025-12-15','00:00:00',4082,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6838,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-15 11:12:09','priyanshi','2025-12-15 11:13:48',0),(18475,2526,0,0,6207,'2025-12-15','00:00:00',4083,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6837,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-15 11:12:58','priyanshi','2025-12-15 11:13:36',0),(18476,2526,0,0,6208,'2025-12-15','00:00:00',4084,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 11:14:02','shweta','2025-12-14 22:44:02',0),(18477,2526,0,0,6209,'2025-12-15','00:00:00',4085,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6839,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 11:14:09','drashti','2025-12-15 11:14:41',0),(18478,2526,0,0,6210,'2025-12-15','00:00:00',4086,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6840,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-15 11:14:37','priyanshi','2025-12-15 11:15:11',0),(18479,2526,0,0,6211,'2025-12-15','00:00:00',4087,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6844,1,200,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 11:17:17','drashti','2025-12-15 11:21:06',0),(18480,2526,0,0,6212,'2025-12-15','00:00:00',4088,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6841,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 11:17:59','reception','2025-12-15 11:18:22',0),(18481,2526,0,0,6213,'2025-12-15','00:00:00',4089,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6842,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-15 11:19:19','priyanshi','2025-12-15 11:19:53',0),(18482,2526,0,0,6214,'2025-12-15','00:00:00',4090,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',6843,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 11:19:46','reception','2025-12-15 11:20:10',0),(18483,2526,0,0,6215,'2025-12-15','00:00:00',4091,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6845,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 11:20:16','shweta','2025-12-15 11:21:46',0),(18484,2526,0,0,6216,'2025-12-15','00:00:00',3358,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6846,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 11:21:43','reception','2025-12-15 11:22:08',0),(18485,2526,0,0,6217,'2025-12-15','00:00:00',2590,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',6847,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 11:25:21','shweta','2025-12-15 11:25:45',0),(18486,2526,0,0,6218,'2025-12-15','00:00:00',4092,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6848,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 11:26:03','drashti','2025-12-15 11:26:54',0),(18487,2526,0,0,6219,'2025-12-15','00:00:00',4093,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6849,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 11:27:43','shweta','2025-12-15 11:28:52',0),(18488,2526,0,0,6220,'2025-12-15','00:00:00',2733,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-15 11:30:03','priyanshi','2025-12-14 23:00:03',0),(18489,2526,0,0,6221,'2025-12-15','00:00:00',2733,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6852,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-15 11:30:26','drashti','2025-12-15 11:32:11',0),(18490,2526,0,0,6200,'2025-12-15','11:30:36',3382,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6850,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 11:30:36','drashti','2025-12-15 11:30:36',0),(18491,2526,0,0,6222,'2025-12-15','00:00:00',4094,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6856,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 11:30:53','shweta','2025-12-15 11:33:49',0),(18492,2526,0,0,6186,'2025-12-15','11:33:06',4074,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6855,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-15 11:33:06','priyanshi','2025-12-15 11:33:06',0),(18493,2526,0,0,6220,'2025-12-15','00:00:00',2733,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6857,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 11:33:46','drashti','2025-12-15 11:33:57',0),(18494,2526,0,0,6223,'2025-12-15','00:00:00',4095,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6864,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 11:35:05','shweta','2025-12-15 11:44:08',0),(18495,2526,0,0,6178,'2025-12-15','11:36:09',4070,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6858,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 11:36:09','reception','2025-12-15 11:36:09',0),(18496,2526,0,0,6178,'2025-12-15','11:36:09',4070,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6858,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 11:36:09','reception','2025-12-15 11:36:09',0),(18497,2526,0,0,6224,'2025-12-15','00:00:00',4096,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6859,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 11:37:32','reception','2025-12-15 11:38:12',0),(18498,2526,0,0,6225,'2025-12-15','00:00:00',4097,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6860,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 11:37:40','drashti','2025-12-15 11:38:27',0),(18499,2526,0,0,6226,'2025-12-15','00:00:00',4098,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6862,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 11:40:47','drashti','2025-12-15 11:43:10',0),(18500,2526,0,0,6208,'2025-12-15','11:41:38',4084,0,'OPWD','OPWD0023','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,7,0,0,'',0,0,'','','','','',2526,'H','O',6861,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 11:41:38','shweta','2025-12-15 11:41:38',0),(18501,2526,0,0,6228,'2025-12-15','00:00:00',4099,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6863,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 11:43:33','shweta','2025-12-15 11:44:05',0),(18502,2526,0,0,6229,'2025-12-15','00:00:00',3303,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6898,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-15 11:46:07','reception','2025-12-15 12:40:27',0),(18503,2526,0,0,6230,'2025-12-15','00:00:00',4100,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',6865,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 11:47:17','reception','2025-12-15 11:47:34',0),(18504,2526,0,0,6231,'2025-12-15','00:00:00',2075,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6867,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 11:47:50','reception','2025-12-15 11:48:11',0),(18505,2526,0,0,6212,'2025-12-15','11:47:53',4088,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',6866,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-15 11:47:53','priyanshi','2025-12-15 11:47:53',0),(18506,2526,0,0,6212,'2025-12-15','11:47:53',4088,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6866,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-15 11:47:53','priyanshi','2025-12-15 11:47:53',0),(18507,2526,0,0,6232,'2025-12-15','00:00:00',3725,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',6868,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 11:48:13','shweta','2025-12-15 12:44:19',0),(18508,2526,0,0,6233,'2025-12-15','00:00:00',1715,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6869,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-15 11:49:04','priyanshi','2025-12-15 11:49:27',0),(18509,2526,0,0,6234,'2025-12-15','00:00:00',4101,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6870,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 11:51:38','drashti','2025-12-15 11:52:21',0),(18510,2526,0,0,6189,'2025-12-15','11:52:47',4075,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6871,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 11:52:47','reception','2025-12-15 11:52:47',0),(18511,2526,0,0,6189,'2025-12-15','11:52:47',4075,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6871,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 11:52:47','reception','2025-12-15 11:52:47',0),(18512,2526,0,0,6189,'2025-12-15','11:52:47',4075,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6871,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 11:52:47','reception','2025-12-15 11:52:47',0),(18513,2526,0,0,6235,'2025-12-15','00:00:00',4102,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6873,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 11:54:29','shweta','2025-12-15 11:55:34',0),(18514,2526,0,0,6213,'2025-12-15','11:55:26',4089,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',6872,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 11:55:26','drashti','2025-12-15 11:55:26',0),(18515,2526,0,0,6237,'2025-12-15','00:00:00',4103,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6874,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-15 11:57:11','priyanshi','2025-12-15 11:57:56',0),(18516,2526,0,0,6238,'2025-12-15','11:58:22',3854,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6875,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 11:58:22','reception','2025-12-15 11:58:22',0),(18517,2526,0,0,6223,'2025-12-15','12:01:47',4095,0,'XRY','XRY0426','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6876,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 12:01:47','shweta','2025-12-15 12:01:47',0),(18518,2526,0,0,6239,'2025-12-15','00:00:00',3520,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6877,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 12:02:45','drashti','2025-12-15 12:03:10',0),(18519,2526,0,0,6240,'2025-12-15','00:00:00',4104,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6878,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 12:04:46','shweta','2025-12-15 12:05:36',0),(18520,2526,0,0,6241,'2025-12-15','00:00:00',4105,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6880,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 12:06:26','drashti','2025-12-15 12:06:59',0),(18521,2526,0,0,6242,'2025-12-15','00:00:00',2917,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6879,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 12:06:29','reception','2025-12-15 12:06:44',0),(18522,2526,0,0,6228,'2025-12-15','12:07:08',4099,0,'XRY','XRY0019','H','N',2.00,400,800,'P',0,0,0.00,0.00,0.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','O',6881,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 12:07:08','shweta','2025-12-15 12:07:08',0),(18523,2526,0,0,6243,'2025-12-15','00:00:00',4106,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6882,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 12:08:29','urvashi','2025-12-15 12:09:23',0),(18524,2526,0,0,6244,'2025-12-15','00:00:00',2532,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6883,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 12:09:07','reception','2025-12-15 12:10:38',0),(18525,2526,0,0,6245,'2025-12-15','00:00:00',4107,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6884,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 12:11:32','reception','2025-12-15 12:12:07',0),(18526,2526,0,0,6246,'2025-12-15','00:00:00',4108,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6885,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 12:12:44','urvashi','2025-12-15 12:13:11',0),(18527,2526,0,0,6224,'2025-12-15','12:14:00',4096,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6886,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 12:14:00','reception','2025-12-15 12:14:00',0),(18528,2526,0,0,6247,'2025-12-15','00:00:00',4109,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6914,1,250,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 12:15:14','drashti','2025-12-15 14:08:14',0),(18529,2526,0,0,6248,'2025-12-15','00:00:00',4110,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6888,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 12:15:40','shweta','2025-12-15 12:16:29',0),(18530,2526,0,0,6196,'2025-12-15','12:16:02',4079,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6887,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 12:16:02','reception','2025-12-15 12:16:02',0),(18531,2526,0,0,6249,'2025-12-15','00:00:00',4111,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6889,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 12:17:33','drashti','2025-12-15 12:18:02',0),(18532,2526,0,0,6250,'2025-12-15','00:00:00',4112,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6890,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 12:18:18','reception','2025-12-15 12:18:50',0),(18533,2526,0,0,6236,'2025-12-15','12:20:25',3673,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6891,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 12:20:25','shweta','2025-12-15 12:20:25',0),(18534,2526,0,0,6251,'2025-12-15','12:25:33',3265,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6892,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 12:25:33','shweta','2025-12-15 12:25:33',0),(18535,2526,0,0,6251,'2025-12-15','12:25:33',3265,0,'XRY','XRY0019','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',6892,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 12:25:33','shweta','2025-12-15 12:25:33',0),(18536,2526,0,0,6227,'2025-12-15','12:31:03',3887,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6893,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 12:31:03','urvashi','2025-12-15 12:31:03',0),(18537,2526,0,0,6252,'2025-12-15','12:32:52',4044,0,'OPWD','OPWD0007','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',6894,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 12:32:52','drashti','2025-12-15 12:32:52',0),(18538,2526,0,0,6254,'2025-12-15','12:30:00',0,289,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',292,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 12:33:13','vishal','2025-12-17 14:03:45',0),(18539,2526,0,0,6254,'2025-12-15','12:30:00',0,289,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',292,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 12:33:13','vishal','2025-12-17 14:03:45',0),(18540,2526,0,0,6254,'2025-12-15','12:30:00',0,289,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',292,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 00:03:13','vishal','2025-12-17 14:03:45',0),(18541,2526,0,0,6254,'2025-12-15','12:30:00',0,289,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',292,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 00:03:13','vishal','2025-12-17 14:03:45',0),(18542,2526,0,0,6254,'2025-12-15','12:30:00',0,289,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',292,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 00:03:13','vishal','2025-12-17 14:03:45',0),(18543,2526,0,0,6254,'2025-12-15','12:30:00',0,289,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 00:03:13','vishal','2025-12-17 14:15:45',0),(18544,2526,0,0,6254,'2025-12-15','12:30:00',0,289,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',292,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 00:03:13','vishal','2025-12-17 14:03:45',0),(18545,2526,0,0,6253,'2025-12-15','12:34:32',3859,0,'OTCG','OTCG0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6895,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 12:34:32','urvashi','2025-12-15 12:34:32',0),(18546,2526,0,0,6204,'2025-12-15','12:36:35',4081,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6896,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 12:36:35','reception','2025-12-15 12:36:35',0),(18547,2526,0,0,6204,'2025-12-15','12:36:35',4081,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',6896,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 12:36:35','reception','2025-12-15 12:36:35',0),(18548,2526,0,0,6214,'2025-12-15','12:38:43',4090,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6897,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 12:38:43','reception','2025-12-15 12:38:43',0),(18549,2526,0,0,6255,'2025-12-15','00:00:00',4113,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',6899,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 12:39:15','drashti','2025-12-15 12:40:43',0),(18550,2526,0,0,6256,'2025-12-15','00:00:00',4114,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6900,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 12:42:08','reception','2025-12-15 12:42:55',0),(18551,2526,0,0,5521,'2025-12-15','12:30:00',0,259,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,59,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 00:14:57','riya','2025-12-15 12:45:04',0),(18552,2526,0,0,5521,'2025-12-15','12:30:00',0,259,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,60,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 00:14:58','riya','2025-12-15 12:45:04',0),(18553,2526,0,0,5521,'2025-12-15','12:30:00',0,259,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,61,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 00:14:58','riya','2025-12-15 12:45:04',0),(18554,2526,0,0,5521,'2025-12-15','12:30:00',0,259,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',2526,'H','I',290,62,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 00:14:58','riya','2025-12-15 12:45:04',0),(18555,2526,0,0,5521,'2025-12-15','12:30:00',0,259,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',2526,'H','I',290,63,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 00:14:58','riya','2025-12-15 12:45:04',0),(18556,2526,0,0,6245,'2025-12-15','12:51:17',4107,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6902,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 12:51:17','reception','2025-12-15 12:51:17',0),(18557,2526,0,0,6245,'2025-12-15','12:51:17',4107,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6902,2,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 12:51:17','reception','2025-12-15 12:51:17',0),(18558,2526,0,0,6245,'2025-12-15','12:51:17',4107,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6902,3,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 12:51:17','reception','2025-12-15 12:51:17',0),(18559,2526,0,0,6245,'2025-12-15','12:51:17',4107,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6902,4,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 12:51:17','reception','2025-12-15 12:51:17',0),(18560,2526,0,0,6256,'2025-12-15','12:51:36',4114,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,4,0,0,'',0,0,'','','','','',2526,'H','O',6903,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 12:51:36','drashti','2025-12-15 12:51:36',0),(18561,2526,0,0,6246,'2025-12-15','12:56:29',4108,0,'OPWD','OPWD0034','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,5,0,0,'',0,0,'','','','','',2526,'H','O',6904,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 12:56:29','urvashi','2025-12-15 12:56:29',0),(18562,2526,0,0,6257,'2025-12-15','00:00:00',1051,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6905,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 12:59:34','reception','2025-12-15 13:00:05',0),(18563,2526,0,0,6258,'2025-12-15','00:00:00',4115,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 13:02:56','drashti','2025-12-15 00:32:56',0),(18564,2526,0,0,6259,'2025-12-15','13:08:54',3605,0,'OTCG','OTCG0003','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6906,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 13:08:54','drashti','2025-12-15 13:08:54',0),(18565,2526,0,0,6260,'2025-12-15','00:00:00',4116,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6907,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 13:26:45','urvashi','2025-12-15 13:27:45',0),(18566,2526,0,0,6258,'2025-12-15','13:28:56',4115,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',6908,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 13:28:56','drashti','2025-12-15 13:28:56',0),(18567,2526,0,0,6258,'2025-12-15','13:28:56',4115,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6908,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 13:28:56','drashti','2025-12-15 13:28:56',0),(18568,2526,0,0,6261,'2025-12-15','13:30:26',2738,0,'MOPR','MOPR0006','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',6909,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 13:30:26','urvashi','2025-12-15 13:30:26',0),(18569,2526,0,0,6262,'2025-12-15','13:30:00',0,290,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',291,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 13:30:36','vishal','2025-12-17 13:44:20',0),(18570,2526,0,0,6262,'2025-12-15','13:30:00',0,290,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',291,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 13:30:36','vishal','2025-12-17 13:44:20',0),(18571,2526,0,0,6262,'2025-12-15','13:30:00',0,290,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','','','',2526,'H','I',291,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 01:00:36','vishal','2025-12-17 13:44:20',0),(18572,2526,0,0,6262,'2025-12-15','13:30:00',0,290,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',291,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 01:00:36','vishal','2025-12-17 13:44:20',0),(18573,2526,0,0,6262,'2025-12-15','13:30:00',0,290,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',291,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 01:00:36','vishal','2025-12-17 13:44:20',0),(18574,2526,0,0,6262,'2025-12-15','13:30:00',0,290,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-15 01:00:36','vishal','2025-12-17 13:44:20',0),(18575,2526,0,0,6262,'2025-12-15','13:30:00',0,290,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,6,0,0,'',0,0,'','402','','','',2526,'H','I',291,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 01:00:36','vishal','2025-12-17 13:44:20',0),(18576,2526,0,0,6255,'2025-12-15','13:32:01',4113,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,0.00,50,9999,0,120,'',0,0,'','','','','',2526,'H','O',6910,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'urvashi','2025-12-15 13:32:01','urvashi','2025-12-15 13:32:01',0),(18577,2526,0,0,6250,'2025-12-15','13:43:42',4112,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6911,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 13:43:42','reception','2025-12-15 13:43:42',0),(18578,2526,0,0,6250,'2025-12-15','13:43:42',4112,0,'NEU1','NEU10017','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6911,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 13:43:42','reception','2025-12-15 13:43:42',0),(18579,2526,0,0,6250,'2025-12-15','13:44:25',4112,0,'NEU1','NEU10019','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,0.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6912,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 13:44:25','reception','2025-12-15 13:44:25',0),(18580,2526,0,0,6163,'2025-12-15','11:30:00',0,284,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 01:20:14','riya','2025-12-15 13:52:28',0),(18581,2526,0,0,6163,'2025-12-15','11:30:00',0,284,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 01:20:14','riya','2025-12-15 13:52:28',0),(18582,2526,0,0,6163,'2025-12-15','11:30:00',0,284,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 01:20:14','riya','2025-12-15 13:52:28',0),(18583,2526,0,0,6163,'2025-12-15','11:30:00',0,284,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','207','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 01:20:14','riya','2025-12-15 13:54:56',0),(18584,2526,0,0,6163,'2025-12-15','11:30:00',0,284,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','207','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 01:20:14','riya','2025-12-15 13:54:56',0),(18585,2526,0,0,6163,'2025-12-14','13:50:00',0,284,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 13:52:28','','0000-00-00 00:00:00',0),(18586,2526,0,0,6163,'2025-12-14','13:50:00',0,284,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 13:52:28','','0000-00-00 00:00:00',0),(18587,2526,0,0,6163,'2025-12-14','13:51:00',0,284,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,42,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 13:52:28','','0000-00-00 00:00:00',0),(18588,2526,0,0,6163,'2025-12-14','13:51:00',0,284,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 13:52:28','','0000-00-00 00:00:00',0),(18589,2526,0,0,6163,'2025-12-15','13:51:00',0,284,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 13:52:28','','0000-00-00 00:00:00',0),(18590,2526,0,0,6163,'2025-12-15','13:51:00',0,284,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 13:52:28','','0000-00-00 00:00:00',0),(18591,2526,0,0,6163,'2025-12-15','13:51:00',0,284,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 13:52:28','','0000-00-00 00:00:00',0),(18592,2526,0,0,6198,'2025-12-15','14:06:16',3498,0,'OPWD','OPWD0023','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,0.00,4000,3,0,0,'',0,0,'','','','','',2526,'H','O',6913,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 14:06:15','drashti','2025-12-15 14:06:15',0),(18593,2526,0,0,6263,'2025-12-15','14:40:00',0,291,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-15 15:00:09','riya','2025-12-15 17:27:17',0),(18594,2526,0,0,6263,'2025-12-15','14:40:00',0,291,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-15 15:00:09','riya','2025-12-15 17:27:17',0),(18595,2526,0,0,6263,'2025-12-15','14:40:00',0,291,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-15 02:30:09','riya','2025-12-15 17:27:17',0),(18596,2526,0,0,6263,'2025-12-15','14:40:00',0,291,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-15 02:30:09','riya','2025-12-15 17:27:17',0),(18597,2526,0,0,6263,'2025-12-15','14:40:00',0,291,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-15 02:30:09','riya','2025-12-15 17:27:17',0),(18598,2526,0,0,6263,'2025-12-15','14:40:00',0,291,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-15 02:30:09','riya','2025-12-15 17:27:17',0),(18599,2526,0,0,6263,'2025-12-15','14:40:00',0,291,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-15 02:30:09','riya','2025-12-15 17:27:17',0),(18600,2526,0,0,6264,'2025-12-15','15:00:00',0,292,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',285,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 15:26:43','riya','2025-12-16 15:32:13',0),(18601,2526,0,0,6264,'2025-12-15','15:00:00',0,292,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',285,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 15:26:43','riya','2025-12-16 15:32:13',0),(18602,2526,0,0,6264,'2025-12-15','15:00:00',0,292,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','','','',2526,'H','I',285,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 02:56:43','riya','2025-12-16 15:32:13',0),(18603,2526,0,0,6264,'2025-12-15','15:00:00',0,292,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',2526,'H','I',285,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 02:56:43','riya','2025-12-16 15:32:13',0),(18604,2526,0,0,6264,'2025-12-15','15:00:00',0,292,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',2526,'H','I',285,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 02:56:43','riya','2025-12-16 15:32:13',0),(18605,2526,0,0,6264,'2025-12-16','15:00:00',0,292,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','410','','','',2526,'H','I',285,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 02:56:43','riya','2025-12-16 15:32:13',0),(18606,2526,0,0,6264,'2025-12-15','15:00:00',0,292,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','410','','','',2526,'H','I',285,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 02:56:43','riya','2025-12-16 15:32:13',0),(18607,2526,0,0,5848,'2025-12-14','22:15:00',0,274,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 03:29:06','riya','2025-12-15 16:04:46',0),(18608,2526,0,0,5848,'2025-12-14','22:15:00',0,274,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 03:29:06','riya','2025-12-15 16:04:46',0),(18609,2526,0,0,5848,'2025-12-14','22:15:00',0,274,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 03:29:06','riya','2025-12-15 16:04:46',0),(18610,2526,0,0,5848,'2025-12-14','22:15:00',0,274,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','305','','','',2526,'H','I',273,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 03:29:06','riya','2025-12-15 16:04:46',0),(18611,2526,0,0,5848,'2025-12-14','22:15:00',0,274,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-15 03:29:06','riya','2025-12-15 16:04:46',0),(18612,2526,0,0,5848,'2025-12-13','15:59:00',0,274,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 16:04:46','','0000-00-00 00:00:00',0),(18613,2526,0,0,5848,'2025-12-14','15:59:00',0,274,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 16:04:46','','0000-00-00 00:00:00',0),(18614,2526,0,0,5848,'2025-12-15','16:00:00',0,274,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 16:04:46','','0000-00-00 00:00:00',0),(18615,2526,0,0,5848,'2025-12-11','16:00:00',0,274,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 16:04:46','','0000-00-00 00:00:00',0),(18616,2526,0,0,5848,'2025-12-15','16:01:00',0,274,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 16:04:46','','0000-00-00 00:00:00',0),(18617,2526,0,0,5848,'2025-12-13','16:03:00',0,274,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 16:04:46','','0000-00-00 00:00:00',0),(18618,2526,0,0,5848,'2025-12-14','16:04:00',0,274,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',273,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 16:04:46','','0000-00-00 00:00:00',0),(18619,2526,0,0,6265,'2025-12-15','00:00:00',4117,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6915,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 16:27:58','reception','2025-12-15 16:28:30',0),(18620,2526,0,0,4017,'2025-12-15','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,253,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 04:00:56','riya','2025-12-15 16:37:50',0),(18621,2526,0,0,4017,'2025-12-15','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,254,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 04:00:56','riya','2025-12-15 16:37:50',0),(18622,2526,0,0,4017,'2025-12-15','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,257,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 04:00:56','vishal','2025-12-21 11:20:51',0),(18623,2526,0,0,4017,'2025-12-15','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,258,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 04:00:56','vishal','2025-12-16 11:46:44',0),(18624,2526,0,0,4017,'2025-12-15','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,259,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 04:00:56','vishal','2025-12-16 11:46:44',0),(18625,2526,0,0,6266,'2025-12-15','00:00:00',3182,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6916,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 16:35:54','reception','2025-12-15 17:31:41',0),(18626,2526,0,0,4017,'2025-12-15','16:32:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,258,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 16:37:50','','0000-00-00 00:00:00',0),(18627,2526,0,0,4017,'2025-12-15','16:32:00',0,187,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',0,'','',0,259,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 16:37:50','','0000-00-00 00:00:00',0),(18628,2526,0,0,4017,'2025-12-15','16:33:00',0,187,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,260,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 16:37:50','','0000-00-00 00:00:00',0),(18629,2526,0,0,4017,'2025-12-15','16:37:00',0,187,'WPRC','WPRC0118','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,261,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 16:37:50','vishal','2025-12-16 11:45:23',0),(18630,2526,0,0,6267,'2025-12-15','00:00:00',4118,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6917,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 16:41:38','drashti','2025-12-15 16:43:10',0),(18631,2526,0,0,6268,'2025-12-15','00:00:00',3642,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6918,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 16:48:27','reception','2025-12-15 16:49:33',0),(18632,2526,0,0,6269,'2025-12-15','00:00:00',589,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6919,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 16:57:13','reception','2025-12-15 16:57:32',0),(18633,2526,0,0,6270,'2025-12-15','00:00:00',2878,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6920,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 16:58:00','reception','2025-12-15 16:59:10',0),(18634,2526,0,0,6271,'2025-12-15','00:00:00',4119,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6973,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 17:01:22','urvashi','2025-12-15 19:26:50',0),(18635,2526,0,0,6272,'2025-12-15','00:00:00',4120,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',6921,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 17:07:25','reception','2025-12-15 17:07:42',0),(18636,2526,0,0,6273,'2025-12-15','00:00:00',3730,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6958,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 17:07:33','urvashi','2025-12-15 18:43:52',0),(18637,2526,0,0,6274,'2025-12-15','17:00:00',0,293,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',281,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 17:14:21','riya','2025-12-16 13:08:32',0),(18638,2526,0,0,6274,'2025-12-15','17:00:00',0,293,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',281,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 17:14:21','riya','2025-12-16 13:08:32',0),(18639,2526,0,0,6274,'2025-12-15','17:00:00',0,293,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','','','',2526,'H','I',281,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 04:44:21','riya','2025-12-16 13:08:32',0),(18640,2526,0,0,6274,'2025-12-15','17:00:00',0,293,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','I',281,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 04:44:21','riya','2025-12-16 13:08:32',0),(18641,2526,0,0,6274,'2025-12-15','17:00:00',0,293,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','I',281,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 04:44:21','riya','2025-12-16 13:08:32',0),(18642,2526,0,0,6274,'2025-12-16','17:00:00',0,293,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,7,0,0,'',0,0,'','209','','','',2526,'H','I',281,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 04:44:21','riya','2025-12-16 13:08:32',0),(18643,2526,0,0,6274,'2025-12-15','17:00:00',0,293,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,7,0,0,'',0,0,'','209','','','',2526,'H','I',281,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 04:44:21','riya','2025-12-16 13:08:32',0),(18644,2526,0,0,6275,'2025-12-15','00:00:00',4121,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6922,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 17:17:21','reception','2025-12-15 17:17:51',0),(18645,2526,0,0,6276,'2025-12-15','00:00:00',4122,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6923,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 17:20:18','urvashi','2025-12-15 17:21:46',0),(18646,2526,0,0,6277,'2025-12-15','00:00:00',3743,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6924,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 17:21:54','reception','2025-12-15 17:22:10',0),(18647,2526,0,0,6265,'2025-12-15','17:24:23',4117,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6925,1,67,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 17:24:23','reception','2025-12-15 17:24:23',0),(18648,2526,0,0,6265,'2025-12-15','17:24:23',4117,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6925,2,296,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 17:24:23','reception','2025-12-15 17:24:23',0),(18649,2526,0,0,6265,'2025-12-15','17:24:23',4117,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6925,3,337,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 17:24:23','reception','2025-12-15 17:24:23',0),(18650,2526,0,0,6279,'2025-12-15','00:00:00',4123,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6926,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 17:25:45','drashti','2025-12-15 17:26:15',0),(18651,2526,0,0,6280,'2025-12-15','00:00:00',2407,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6927,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 17:26:44','reception','2025-12-15 17:27:05',0),(18652,2526,0,0,6281,'2025-12-15','00:00:00',658,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6928,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 17:27:17','urvashi','2025-12-15 17:27:28',0),(18653,2526,0,0,6282,'2025-12-15','00:00:00',4124,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6930,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 17:32:13','urvashi','2025-12-15 17:32:25',0),(18654,2526,0,0,6283,'2025-12-15','00:00:00',4125,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6931,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 17:32:59','reception','2025-12-15 17:33:44',0),(18655,2526,0,0,6284,'2025-12-15','17:34:21',3819,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6932,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 17:34:21','drashti','2025-12-15 17:34:21',0),(18656,2526,0,0,6285,'2025-12-15','00:00:00',4126,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6933,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 17:41:15','reception','2025-12-15 17:42:12',0),(18657,2526,0,0,6278,'2025-12-15','17:43:55',4057,0,'MOPR','MOPR0006','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6934,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 17:43:55','urvashi','2025-12-15 17:43:55',0),(18658,2526,0,0,6287,'2025-12-15','00:00:00',4127,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',6935,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 17:52:39','drashti','2025-12-15 17:53:38',0),(18659,2526,0,0,6288,'2025-12-15','00:00:00',4128,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',6936,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 17:59:18','shweta','2025-12-15 17:59:52',0),(18660,2526,0,0,6282,'2025-12-15','18:01:47',4124,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6937,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:01:47','reception','2025-12-15 18:01:47',0),(18661,2526,0,0,6282,'2025-12-15','18:01:47',4124,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6937,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:01:47','reception','2025-12-15 18:01:47',0),(18662,2526,0,0,6289,'2025-12-15','00:00:00',4129,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6938,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 18:03:31','urvashi','2025-12-15 18:03:48',0),(18663,2526,0,0,6286,'2025-12-15','18:06:09',3973,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6939,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 18:06:09','urvashi','2025-12-15 18:06:09',0),(18664,2526,0,0,6290,'2025-12-15','00:00:00',4130,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,0.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',6941,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 18:06:31','shweta','2025-12-15 18:08:29',0),(18665,2526,0,0,6291,'2025-12-15','00:00:00',4131,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6940,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 18:06:34','drashti','2025-12-15 18:07:50',0),(18666,2526,0,0,6292,'2025-12-15','00:00:00',4132,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6942,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:08:28','reception','2025-12-15 18:08:54',0),(18667,2526,0,0,6293,'2025-12-15','00:00:00',2497,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6943,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:10:50','reception','2025-12-15 18:11:22',0),(18668,2526,0,0,6288,'2025-12-15','18:13:24',4128,0,'XRY','XRY0186','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',6944,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 18:13:24','shweta','2025-12-15 18:13:24',0),(18669,2526,0,0,6275,'2025-12-15','18:13:30',4121,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6945,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:13:30','reception','2025-12-15 18:13:30',0),(18670,2526,0,0,6275,'2025-12-15','18:13:30',4121,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6945,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:13:30','reception','2025-12-15 18:13:30',0),(18671,2526,0,0,6275,'2025-12-15','18:13:30',4121,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6945,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:13:30','reception','2025-12-15 18:13:30',0),(18672,2526,0,0,6294,'2025-12-15','00:00:00',4133,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6946,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 18:14:37','drashti','2025-12-15 18:15:55',0),(18673,2526,0,0,6295,'2025-12-15','00:00:00',4134,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6948,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:15:27','reception','2025-12-15 19:58:53',0),(18674,2526,0,0,6290,'2025-12-15','18:16:37',4130,0,'XRY','XRY0050','H','N',1.00,600,600,'P',0,0,0.00,0.00,0.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',6947,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 18:16:37','shweta','2025-12-15 18:16:37',0),(18675,2526,0,0,6296,'2025-12-15','00:00:00',1305,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6949,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 18:19:01','drashti','2025-12-15 18:19:28',0),(18676,2526,0,0,6298,'2025-12-15','00:00:00',736,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6951,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 18:22:30','drashti','2025-12-15 18:23:04',0),(18677,2526,0,0,6283,'2025-12-15','18:22:40',4125,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6950,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:22:40','reception','2025-12-15 18:22:40',0),(18678,2526,0,0,6283,'2025-12-15','18:22:40',4125,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6950,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:22:40','reception','2025-12-15 18:22:40',0),(18679,2526,0,0,6283,'2025-12-15','18:22:40',4125,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6950,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:22:40','reception','2025-12-15 18:22:40',0),(18680,2526,0,0,6300,'2025-12-15','00:00:00',4135,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6952,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:28:54','reception','2025-12-15 18:29:35',0),(18681,2526,0,0,6301,'2025-12-15','00:00:00',4136,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6955,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 18:29:00','urvashi','2025-12-15 18:30:39',0),(18682,2526,0,0,6302,'2025-12-15','00:00:00',4137,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6954,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 18:29:06','drashti','2025-12-15 18:30:36',0),(18683,2526,0,0,6303,'2025-12-15','00:00:00',975,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6953,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:30:01','reception','2025-12-15 18:30:19',0),(18684,2526,0,0,6304,'2025-12-15','00:00:00',2755,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6957,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 18:36:50','drashti','2025-12-15 18:41:11',0),(18685,2526,0,0,6285,'2025-12-15','18:41:02',4126,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6956,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:41:02','reception','2025-12-15 18:41:02',0),(18686,2526,0,0,6285,'2025-12-15','18:41:02',4126,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6956,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:41:02','reception','2025-12-15 18:41:02',0),(18687,2526,0,0,6305,'2025-12-15','00:00:00',4138,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6959,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 18:43:02','drashti','2025-12-15 18:44:15',0),(18688,2526,0,0,6306,'2025-12-15','00:00:00',4139,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6960,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:46:36','reception','2025-12-15 18:48:19',0),(18689,2526,0,0,6295,'2025-12-15','18:52:03',4134,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6961,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:52:03','reception','2025-12-15 18:52:03',0),(18690,2526,0,0,6295,'2025-12-15','18:52:03',4134,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6961,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:52:03','reception','2025-12-15 18:52:03',0),(18691,2526,0,0,6309,'2025-12-15','00:00:00',4140,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6963,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 18:55:35','reception','2025-12-15 18:57:31',0),(18692,2526,0,0,6308,'2025-12-15','18:55:53',3319,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6962,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 18:55:53','urvashi','2025-12-15 18:55:53',0),(18693,2526,0,0,6310,'2025-12-15','00:00:00',4141,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6964,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 18:58:57','drashti','2025-12-15 18:59:48',0),(18694,2526,0,0,6311,'2025-12-15','00:00:00',2027,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6965,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 19:01:40','reception','2025-12-15 19:02:06',0),(18695,2526,0,0,6312,'2025-12-15','00:00:00',280,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6966,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 19:03:10','urvashi','2025-12-15 19:03:23',0),(18696,2526,0,0,6212,'2025-12-15','19:03:30',4088,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',6967,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 19:03:30','drashti','2025-12-15 19:03:30',0),(18697,2526,0,0,6313,'2025-12-15','00:00:00',3663,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-15 19:05:57','shweta','2025-12-15 06:35:57',0),(18698,2526,0,0,6314,'2025-12-15','00:00:00',1894,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6968,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 19:17:01','reception','2025-12-15 19:17:13',0),(18699,2526,0,0,6315,'2025-12-15','00:00:00',2538,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 19:19:40','reception','2025-12-15 06:49:40',0),(18700,2526,0,0,6316,'2025-12-15','00:00:00',4142,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6969,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 19:20:31','drashti','2025-12-15 19:21:24',0),(18701,2526,0,0,6318,'2025-12-15','00:00:00',4143,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 19:20:55','reception','2025-12-15 06:50:55',0),(18702,2526,0,0,6317,'2025-12-15','19:21:44',3310,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6970,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 19:21:44','urvashi','2025-12-15 19:21:44',0),(18703,2526,0,0,6319,'2025-12-15','00:00:00',2685,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6972,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 19:22:00','drashti','2025-12-15 19:50:10',0),(18704,2526,0,0,6300,'2025-12-15','19:23:41',4135,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',6971,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 19:23:41','reception','2025-12-15 19:23:41',0),(18705,2526,0,0,6300,'2025-12-15','19:23:41',4135,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6971,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 19:23:41','reception','2025-12-15 19:23:41',0),(18706,2526,0,0,6300,'2025-12-15','19:23:41',4135,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',6971,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 19:23:41','reception','2025-12-15 19:23:41',0),(18707,2526,0,0,6321,'2025-12-15','00:00:00',4144,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6974,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 19:36:14','urvashi','2025-12-15 19:36:43',0),(18708,2526,0,0,6322,'2025-12-15','19:38:41',3854,0,'OPWD','OPWD0023','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',6975,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 19:38:41','urvashi','2025-12-15 19:38:41',0),(18709,2526,0,0,6323,'2025-12-15','19:48:58',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',6976,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 19:48:58','urvashi','2025-12-15 19:48:58',0),(18710,2526,0,0,6295,'2025-12-15','20:01:11',4134,0,'PKG','CASE','H','N',1.00,900,900,'P',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6979,1,300,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 20:01:11','reception','2025-12-15 20:01:11',0),(18711,2526,0,0,6324,'2025-12-15','00:00:00',4145,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6980,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-15 20:02:47','drashti','2025-12-15 20:03:35',0),(18712,2526,0,0,6325,'2025-12-15','00:00:00',4146,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6981,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 20:04:09','urvashi','2025-12-15 20:05:07',0),(18713,2526,0,0,6326,'2025-12-15','20:09:32',3378,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',6982,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-15 20:09:32','urvashi','2025-12-15 20:09:32',0),(18714,2526,0,0,6327,'2025-12-15','00:00:00',4147,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',6983,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 20:16:19','reception','2025-12-15 20:16:50',0),(18715,2526,0,0,6328,'2025-12-15','20:18:51',3827,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',6984,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-15 20:18:51','reception','2025-12-15 20:18:51',0),(18716,2526,0,0,6167,'2025-12-14','21:09:00',0,287,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',277,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 21:10:41','','0000-00-00 00:00:00',0),(18717,2526,0,0,6167,'2025-12-14','21:10:00',0,287,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',277,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 21:10:41','','0000-00-00 00:00:00',0),(18718,2526,0,0,6167,'2025-12-14','21:10:00',0,287,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',277,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 21:10:41','','0000-00-00 00:00:00',0),(18719,2526,0,0,5120,'2025-12-15','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:22','vishal','2025-12-16 12:05:23',0),(18720,2526,0,0,5120,'2025-12-15','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:22','vishal','2025-12-16 12:05:23',0),(18721,2526,0,0,5120,'2025-12-15','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:22','vishal','2025-12-16 12:05:23',0),(18722,2526,0,0,5120,'2025-12-15','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:22','vishal','2025-12-16 12:05:23',0),(18723,2526,0,0,5120,'2025-12-15','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:22','vishal','2025-12-16 12:05:23',0),(18724,2526,0,0,6061,'2025-12-15','19:50:00',4016,277,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','','','',2526,'H','I',289,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:23','vishal','2025-12-16 21:27:38',0),(18725,2526,0,0,6061,'2025-12-15','19:50:00',4016,277,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',289,23,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:23','vishal','2025-12-17 12:39:41',0),(18726,2526,0,0,6061,'2025-12-15','19:50:00',4016,277,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',289,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:23','vishal','2025-12-16 21:27:38',0),(18727,2526,0,0,6061,'2025-12-15','19:50:00',4016,277,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','411','','','',2526,'H','I',289,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:23','vishal','2025-12-16 21:27:38',0),(18728,2526,0,0,6061,'2025-12-15','19:50:00',4016,277,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','411','','','',2526,'H','I',289,20,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:23','vishal','2025-12-17 12:39:41',0),(18729,2526,0,0,6155,'2025-12-14','21:19:00',4033,282,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',282,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:24','vishal','2025-12-16 12:02:35',0),(18730,2526,0,0,6155,'2025-12-14','21:19:00',4033,282,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',282,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:24','vishal','2025-12-16 12:02:35',0),(18731,2526,0,0,6155,'2025-12-14','21:19:00',4033,282,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',282,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:24','vishal','2025-12-16 12:02:35',0),(18732,2526,0,0,6155,'2025-12-15','21:19:00',4033,282,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',282,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:24','vishal','2025-12-16 12:02:35',0),(18733,2526,0,0,6155,'2025-12-15','21:19:00',4033,282,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',282,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:24','vishal','2025-12-16 12:02:35',0),(18734,2526,0,0,6165,'2025-12-15','12:50:00',0,285,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:24','vishal','2025-12-16 21:12:52',0),(18735,2526,0,0,6165,'2025-12-15','12:50:00',0,285,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:24','vishal','2025-12-16 21:12:52',0),(18736,2526,0,0,6165,'2025-12-15','12:50:00',0,285,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:24','vishal','2025-12-16 21:12:52',0),(18737,2526,0,0,6165,'2025-12-15','12:50:00',0,285,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','407','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:24','vishal','2025-12-16 21:12:52',0),(18738,2526,0,0,6165,'2025-12-15','12:50:00',0,285,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:24','vishal','2025-12-16 20:13:08',0),(18739,2526,0,0,6166,'2025-12-15','17:00:00',4000,286,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','','','',2526,'H','D',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:24','vishal','2025-12-17 17:27:17',0),(18740,2526,0,0,6166,'2025-12-15','17:00:00',4000,286,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','D',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:24','vishal','2025-12-17 17:27:17',0),(18741,2526,0,0,6166,'2025-12-15','17:00:00',4000,286,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','D',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:24','vishal','2025-12-17 17:27:17',0),(18742,2526,0,0,6166,'2025-12-16','17:00:00',4000,286,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','405','','','',2526,'H','D',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:24','vishal','2025-12-17 17:30:43',0),(18743,2526,0,0,6166,'2025-12-16','17:00:00',4000,286,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','405','','','',2526,'H','D',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-15 08:43:24','vishal','2025-12-17 17:30:43',0),(18744,2526,0,0,6329,'2025-12-16','09:30:00',0,294,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',286,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 09:35:42','vishal','2025-12-16 17:49:28',0),(18745,2526,0,0,6329,'2025-12-16','09:30:00',0,294,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',286,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 09:35:42','vishal','2025-12-16 17:49:28',0),(18746,2526,0,0,6329,'2025-12-16','09:30:00',0,294,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 21:05:42','vishal','2025-12-16 17:49:28',0),(18747,2526,0,0,6329,'2025-12-16','09:30:00',0,294,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 21:05:42','vishal','2025-12-16 17:49:28',0),(18748,2526,0,0,6329,'2025-12-16','09:30:00',0,294,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 21:05:42','vishal','2025-12-16 17:49:28',0),(18749,2526,0,0,6329,'2025-12-16','09:30:00',0,294,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',2526,'H','I',286,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 21:05:42','vishal','2025-12-16 17:49:28',0),(18750,2526,0,0,6329,'2025-12-16','09:30:00',0,294,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','404','','','',2526,'H','I',286,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 21:05:42','vishal','2025-12-16 17:49:28',0),(18751,2526,0,0,6330,'2025-12-16','12:05:00',0,295,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',287,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 09:56:42','vishal','2025-12-16 19:32:17',0),(18752,2526,0,0,6330,'2025-12-16','12:05:00',0,295,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',287,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 09:56:42','vishal','2025-12-16 19:32:17',0),(18753,2526,0,0,6331,'2025-12-16','00:00:00',2791,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6985,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 09:59:40','drashti','2025-12-16 10:00:13',0),(18754,2526,0,0,6332,'2025-12-16','00:00:00',813,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6986,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 10:00:02','reception','2025-12-16 10:01:28',0),(18755,2526,0,0,6333,'2025-12-16','00:00:00',4148,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 10:02:05','janvi','2025-12-15 21:32:05',0),(18756,2526,0,0,6333,'2025-12-16','00:00:00',4148,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',6987,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 10:02:32','janvi','2025-12-16 10:02:49',0),(18757,2526,0,0,6334,'2025-12-16','02:30:00',0,296,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',288,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 10:02:46','vishal','2025-12-16 19:21:09',0),(18758,2526,0,0,6334,'2025-12-16','02:30:00',0,296,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',288,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 10:02:46','vishal','2025-12-16 19:21:09',0),(18759,2526,0,0,6334,'2025-12-16','02:30:00',0,296,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',288,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 21:32:46','vishal','2025-12-16 19:21:09',0),(18760,2526,0,0,6334,'2025-12-16','02:30:00',0,296,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',288,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 21:32:46','vishal','2025-12-16 19:21:09',0),(18761,2526,0,0,6334,'2025-12-16','02:30:00',0,296,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',288,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 21:32:46','vishal','2025-12-16 19:21:09',0),(18762,2526,0,0,6334,'2025-12-16','02:30:00',0,296,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','210','','','',2526,'H','I',288,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 21:32:46','vishal','2025-12-16 19:21:09',0),(18763,2526,0,0,6334,'2025-12-16','02:30:00',0,296,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','210','','','',2526,'H','I',288,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 21:32:46','vishal','2025-12-16 19:21:09',0),(18764,2526,0,0,6335,'2025-12-16','00:00:00',4149,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',6988,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 10:05:53','drashti','2025-12-16 10:06:52',0),(18765,2526,0,0,6336,'2025-12-16','00:00:00',4150,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6989,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 10:08:39','drashti','2025-12-16 10:10:04',0),(18766,2526,0,0,6337,'2025-12-16','00:00:00',3619,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6990,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 10:13:16','reception','2025-12-16 10:13:34',0),(18767,2526,0,0,6338,'2025-12-16','00:00:00',3569,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6991,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 10:17:25','reception','2025-12-16 10:17:58',0),(18768,2526,0,0,6339,'2025-12-16','00:00:00',2579,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6992,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 10:23:56','reception','2025-12-16 10:24:13',0),(18769,2526,0,0,6340,'2025-12-16','00:00:00',4151,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6993,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 10:25:11','drashti','2025-12-16 10:25:41',0),(18770,2526,0,0,6341,'2025-12-16','00:00:00',4152,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',6994,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 10:28:15','reception','2025-12-16 10:28:24',0),(18771,2526,0,0,6342,'2025-12-16','00:00:00',267,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6995,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 10:29:59','reception','2025-12-16 10:30:14',0),(18772,2526,0,0,6343,'2025-12-16','00:00:00',918,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6996,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 10:37:41','reception','2025-12-16 10:38:01',0),(18773,2526,0,0,6344,'2025-12-16','00:00:00',4153,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',6997,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 10:38:06','drashti','2025-12-16 10:38:56',0),(18774,2526,0,0,6345,'2025-12-16','00:00:00',3571,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,0.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',6998,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-16 10:38:39','shweta','2025-12-16 10:39:08',0),(18775,2526,0,0,6346,'2025-12-16','10:40:00',4056,297,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',0,'','',0,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 10:39:32','riya','2025-12-20 10:34:33',0),(18776,2526,0,0,6346,'2025-12-16','10:40:00',4056,297,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',0,'','',0,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 10:39:32','riya','2025-12-20 10:34:33',0),(18777,2526,0,0,6347,'2025-12-16','10:41:07',1549,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',6999,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 10:41:07','reception','2025-12-16 10:41:07',0),(18778,2526,0,0,6348,'2025-12-16','00:00:00',4154,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7000,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 10:43:47','reception','2025-12-16 10:44:41',0),(18779,2526,0,0,6349,'2025-12-16','00:00:00',1241,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7001,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 10:48:11','drashti','2025-12-16 10:48:38',0),(18780,2526,0,0,6350,'2025-12-16','00:00:00',2908,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7002,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 10:49:13','reception','2025-12-16 10:50:03',0),(18781,2526,0,0,6351,'2025-12-16','00:00:00',4155,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7003,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 10:52:39','reception','2025-12-16 10:53:09',0),(18782,2526,0,0,6163,'2025-12-16','10:54:00',0,284,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 10:55:28','','0000-00-00 00:00:00',0),(18783,2526,0,0,6163,'2025-12-16','10:54:00',0,284,'WPRC','WPRC0090','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 10:55:28','','0000-00-00 00:00:00',0),(18784,2526,0,0,6163,'2025-12-16','10:55:00',0,284,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 10:55:28','','0000-00-00 00:00:00',0),(18785,2526,0,0,6352,'2025-12-16','00:00:00',4156,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7004,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-16 11:01:04','shweta','2025-12-16 11:11:54',0),(18786,2526,0,0,6353,'2025-12-16','00:00:00',4157,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7005,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 11:06:02','reception','2025-12-16 11:06:22',0),(18787,2526,0,0,6354,'2025-12-16','00:00:00',4158,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 11:07:15','janvi','2025-12-15 22:37:15',0),(18788,2526,0,0,6355,'2025-12-16','00:00:00',4159,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7006,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 11:08:55','reception','2025-12-16 11:09:41',0),(18789,2526,0,0,6356,'2025-12-16','00:00:00',4160,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7008,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 11:10:22','drashti','2025-12-16 11:11:37',0),(18790,2526,0,0,6357,'2025-12-16','00:00:00',716,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7007,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 11:10:26','reception','2025-12-16 11:10:42',0),(18791,2526,0,0,6201,'2025-12-16','11:10:00',0,288,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',278,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:10:52','','0000-00-00 00:00:00',0),(18792,2526,0,0,6201,'2025-12-16','11:10:00',0,288,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',278,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:10:52','','0000-00-00 00:00:00',0),(18793,2526,0,0,6352,'2025-12-16','11:13:20',4156,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7010,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-16 11:13:20','shweta','2025-12-16 11:13:20',0),(18794,2526,0,0,6201,'2025-12-15','11:15:00',0,288,'SURG','SURG0014','H','N',1.00,10000,10000,'A',0,0,0.00,0.00,10000.00,10000,3,0,0,'',0,0,'','','','','',2526,'H','I',278,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:15:47','vishal','2025-12-16 11:15:58',0),(18795,2526,0,0,6201,'2025-12-15','11:15:00',0,288,'SURG','SURG0015','H','N',1.00,3100,3100,'P',0,0,0.00,0.00,3100.00,3100,3,0,0,'',0,0,'','','','','',2526,'H','I',278,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:15:47','','0000-00-00 00:00:00',0),(18796,2526,0,0,6336,'2025-12-16','11:15:52',4150,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7011,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 11:15:52','reception','2025-12-16 11:15:52',0),(18797,2526,0,0,6336,'2025-12-16','11:15:52',4150,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7011,2,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 11:15:52','reception','2025-12-16 11:15:52',0),(18798,2526,0,0,6336,'2025-12-16','11:15:52',4150,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7011,3,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 11:15:52','reception','2025-12-16 11:15:52',0),(18799,2526,0,0,6336,'2025-12-16','11:15:52',4150,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7011,4,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 11:15:52','reception','2025-12-16 11:15:52',0),(18800,2526,0,0,6358,'2025-12-16','00:00:00',4161,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7013,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 11:16:47','drashti','2025-12-16 11:18:32',0),(18801,2526,0,0,6359,'2025-12-16','00:00:00',633,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7012,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 11:18:02','drashti','2025-12-16 11:18:20',0),(18802,2526,0,0,6360,'2025-12-16','00:00:00',4162,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7015,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 11:18:10','janvi','2025-12-16 11:19:33',0),(18803,2526,0,0,6352,'2025-12-16','11:19:31',4156,0,'OPWD','OPWD0023','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7014,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-16 11:19:31','shweta','2025-12-16 11:19:31',0),(18804,2526,0,0,6361,'2025-12-16','00:00:00',4163,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7017,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 11:20:09','drashti','2025-12-16 11:21:02',0),(18805,2526,0,0,6331,'2025-12-16','11:20:42',2791,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7016,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 11:20:42','reception','2025-12-16 11:20:42',0),(18806,2526,0,0,6331,'2025-12-16','11:20:42',2791,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',7016,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 11:20:42','reception','2025-12-16 11:20:42',0),(18807,2526,0,0,6363,'2025-12-16','00:00:00',4164,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7018,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 11:27:27','janvi','2025-12-16 11:27:47',0),(18808,2526,0,0,6364,'2025-12-16','00:00:00',4165,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7019,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 11:28:03','drashti','2025-12-16 11:28:54',0),(18809,2526,0,0,6365,'2025-12-16','00:00:00',4166,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7020,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 11:28:58','reception','2025-12-16 11:29:34',0),(18810,2526,0,0,6366,'2025-12-16','00:00:00',912,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7021,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 11:31:09','reception','2025-12-16 11:31:23',0),(18811,2526,0,0,6367,'2025-12-16','00:00:00',2471,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',7022,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-16 11:31:31','shweta','2025-12-16 11:32:23',0),(18812,2526,0,0,6348,'2025-12-16','11:33:53',4154,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7023,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 11:33:53','reception','2025-12-16 11:33:53',0),(18813,2526,0,0,6348,'2025-12-16','11:33:53',4154,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7023,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 11:33:53','reception','2025-12-16 11:33:53',0),(18814,2526,0,0,6368,'2025-12-16','00:00:00',4167,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7025,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 11:34:24','janvi','2025-12-16 11:34:51',0),(18815,2526,0,0,6335,'2025-12-16','11:34:43',4149,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7024,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 11:34:43','drashti','2025-12-16 11:34:43',0),(18816,2526,0,0,6274,'2025-12-15','11:34:00',0,293,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','I',281,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:38:05','riya','2025-12-16 13:08:32',0),(18817,2526,0,0,6274,'2025-12-15','11:35:00',0,293,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',281,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:38:05','riya','2025-12-16 13:08:32',0),(18818,2526,0,0,6274,'2025-12-15','11:35:00',0,293,'WPRC','WPRC0087','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',281,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:38:05','riya','2025-12-16 13:08:32',0),(18819,2526,0,0,6274,'2025-12-16','11:35:00',0,293,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',281,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:38:05','riya','2025-12-16 13:08:32',0),(18820,2526,0,0,6274,'2025-12-15','11:36:00',0,293,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',281,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:38:05','riya','2025-12-16 13:08:32',0),(18821,2526,0,0,6274,'2025-12-15','11:36:00',0,293,'WPRC','WPRC0088','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,7,0,0,'',0,0,'','','','','',2526,'H','I',281,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:38:05','riya','2025-12-16 13:08:32',0),(18822,2526,0,0,6274,'2025-12-15','11:37:00',0,293,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',281,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:38:05','riya','2025-12-16 13:08:32',0),(18823,2526,0,0,6274,'2025-12-15','11:37:00',0,293,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,7,0,0,'',0,0,'','','','','',2526,'H','I',281,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:38:05','riya','2025-12-16 13:08:32',0),(18824,2526,0,0,6274,'2025-12-16','11:37:00',0,293,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',281,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:38:05','riya','2025-12-16 13:08:32',0),(18825,2526,0,0,6369,'2025-12-16','11:40:05',3305,0,'OTCG','OTCG0003','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',7026,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 11:40:05','drashti','2025-12-16 11:40:05',0),(18826,2526,0,0,6370,'2025-12-16','00:00:00',4168,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 11:44:19','drashti','2025-12-15 23:14:19',0),(18827,2526,0,0,6371,'2025-12-16','00:00:00',4169,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7028,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 11:44:49','janvi','2025-12-16 11:45:36',0),(18828,2526,0,0,6370,'2025-12-16','11:45:16',4168,0,'LAB','LAB0446','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,0.00,2000,9999,0,121,'',0,0,'','','','','',2526,'H','O',7027,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'drashti','2025-12-16 11:45:16','drashti','2025-12-16 11:45:16',0),(18829,2526,0,0,4017,'2025-12-16','11:41:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,267,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:45:23','vishal','2025-12-21 11:20:51',0),(18830,2526,0,0,4017,'2025-12-16','11:42:00',0,187,'WPRC','WPRC0118','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,268,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:45:23','vishal','2025-12-18 17:37:17',0),(18831,2526,0,0,4017,'2025-12-15','11:42:00',0,187,'WPRC','WPRC0087','H','N',2.00,500,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',0,'','',0,253,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:45:23','vishal','2025-12-16 11:46:44',0),(18832,2526,0,0,4017,'2025-12-16','11:42:00',0,187,'WPRC','WPRC0087','H','N',2.00,500,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',0,'','',0,269,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:45:23','vishal','2025-12-18 17:37:17',0),(18833,2526,0,0,4017,'2025-12-16','11:43:00',0,187,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,270,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:45:23','vishal','2025-12-18 17:37:17',0),(18834,2526,0,0,4017,'2025-12-15','11:44:00',0,187,'DRC','DRC0020','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,38,0,0,'',0,0,'','','','','',0,'','',0,254,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:45:23','vishal','2025-12-16 11:46:44',0),(18835,2526,0,0,6371,'2025-12-16','11:45:37',4169,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',7028,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 11:45:36','janvi','2025-12-16 11:45:36',0),(18836,2526,0,0,6372,'2025-12-16','00:00:00',4170,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7029,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 11:46:43','drashti','2025-12-16 11:46:58',0),(18837,2526,0,0,6274,'2025-12-15','11:49:00',0,293,'WPRC','WPRC0098','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',281,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:49:35','riya','2025-12-16 13:08:32',0),(18838,2526,0,0,6274,'2025-12-16','11:49:00',0,293,'WPRC','WPRC0098','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',281,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 11:49:35','riya','2025-12-16 13:08:32',0),(18839,2526,0,0,6373,'2025-12-16','00:00:00',4171,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7030,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 11:50:47','reception','2025-12-16 11:51:26',0),(18840,2526,0,0,6374,'2025-12-16','00:00:00',4172,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7031,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 11:51:13','drashti','2025-12-16 12:11:35',0),(18841,2526,0,0,6351,'2025-12-16','11:56:42',4155,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7032,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 11:56:42','reception','2025-12-16 11:56:42',0),(18842,2526,0,0,6351,'2025-12-16','11:56:42',4155,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7032,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 11:56:42','reception','2025-12-16 11:56:42',0),(18843,2526,0,0,6351,'2025-12-16','11:56:42',4155,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7032,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 11:56:42','reception','2025-12-16 11:56:42',0),(18844,2526,0,0,6375,'2025-12-16','00:00:00',4173,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7033,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 11:57:51','drashti','2025-12-16 11:58:43',0),(18845,2526,0,0,6155,'2025-12-15','21:19:00',4033,282,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',282,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 23:28:58','vishal','2025-12-16 12:02:35',0),(18846,2526,0,0,6155,'2025-12-15','21:19:00',4033,282,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',282,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 23:28:58','vishal','2025-12-16 12:02:35',0),(18847,2526,0,0,6155,'2025-12-15','21:19:00',4033,282,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',282,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 23:28:58','vishal','2025-12-16 12:02:35',0),(18848,2526,0,0,6155,'2025-12-16','21:19:00',4033,282,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','401','','','',2526,'H','I',282,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 23:28:58','vishal','2025-12-16 12:02:35',0),(18849,2526,0,0,6155,'2025-12-15','21:19:00',4033,282,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 23:28:58','vishal','2025-12-16 12:02:35',0),(18850,2526,0,0,6376,'2025-12-16','00:00:00',4174,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7034,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 11:59:46','drashti','2025-12-16 12:00:23',0),(18851,2526,0,0,6377,'2025-12-16','00:00:00',2128,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7035,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 12:00:33','reception','2025-12-16 14:11:41',0),(18852,2526,0,0,6155,'2025-12-13','11:59:00',4033,282,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',282,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:02:35','','0000-00-00 00:00:00',0),(18853,2526,0,0,6155,'2025-12-14','11:59:00',4033,282,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',282,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:02:35','','0000-00-00 00:00:00',0),(18854,2526,0,0,6155,'2025-12-16','12:00:00',4033,282,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',282,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:02:35','','0000-00-00 00:00:00',0),(18855,2526,0,0,5120,'2025-12-16','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 23:34:55','vishal','2025-12-22 17:22:21',0),(18856,2526,0,0,5120,'2025-12-16','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 23:34:55','vishal','2025-12-16 12:18:21',0),(18857,2526,0,0,5120,'2025-12-16','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 23:34:55','vishal','2025-12-16 12:18:21',0),(18858,2526,0,0,5120,'2025-12-16','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 23:34:55','vishal','2025-12-22 17:22:21',0),(18859,2526,0,0,5120,'2025-12-16','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-15 23:34:55','vishal','2025-12-16 12:18:21',0),(18860,2526,0,0,5120,'2025-12-14','12:04:00',0,243,'WPRC','WPRC0122','H','N',1.00,6000,6000,'P',0,0,0.00,0.00,6000.00,6000,4,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:05:23','vishal','2025-12-16 12:13:05',0),(18861,2526,0,0,6341,'2025-12-16','12:05:45',4152,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7036,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 12:05:45','reception','2025-12-16 12:05:45',0),(18862,2526,0,0,6341,'2025-12-16','12:05:45',4152,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7036,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 12:05:45','reception','2025-12-16 12:05:45',0),(18863,2526,0,0,6341,'2025-12-16','12:05:45',4152,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7036,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 12:05:45','reception','2025-12-16 12:05:45',0),(18864,2526,0,0,5120,'2025-12-15','12:11:00',0,243,'ROOM','ROOM0008','H','N',8.00,100,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:13:05','vishal','2025-12-16 12:18:21',0),(18865,2526,0,0,5120,'2025-12-15','12:11:00',0,243,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:13:05','vishal','2025-12-22 17:22:21',0),(18866,2526,0,0,5120,'2025-12-15','12:11:00',0,243,'WPRC','WPRC0104','H','N',1.00,8000,8000,'P',0,0,0.00,0.00,8000.00,8000,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:13:05','vishal','2025-12-22 17:20:27',0),(18867,2526,0,0,5120,'2025-12-16','12:12:00',0,243,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:13:05','vishal','2025-12-22 17:22:21',0),(18868,2526,0,0,6378,'2025-12-16','00:00:00',4175,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7058,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 12:14:03','reception','2025-12-16 13:45:15',0),(18869,2526,0,0,6379,'2025-12-16','00:00:00',4176,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7038,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 12:16:01','drashti','2025-12-16 12:16:57',0),(18870,2526,0,0,5120,'2025-12-15','12:13:00',0,243,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:18:21','','0000-00-00 00:00:00',0),(18871,2526,0,0,5120,'2025-12-16','12:14:00',0,243,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:18:21','vishal','2025-12-22 17:20:27',0),(18872,2526,0,0,5120,'2025-12-15','12:15:00',0,243,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:18:21','','0000-00-00 00:00:00',0),(18873,2526,0,0,5120,'2025-12-16','12:15:00',0,243,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:18:21','','0000-00-00 00:00:00',0),(18874,2526,0,0,5120,'2025-12-13','12:16:00',0,243,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:18:21','','0000-00-00 00:00:00',0),(18875,2526,0,0,5120,'2025-12-14','12:17:00',0,243,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:18:21','','0000-00-00 00:00:00',0),(18876,2526,0,0,5120,'2025-12-15','12:17:00',0,243,'DRC','DRC0020','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:18:21','vishal','2025-12-22 17:22:21',0),(18877,2526,0,0,5120,'2025-12-16','12:17:00',0,243,'DRC','DRC0020','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:18:21','vishal','2025-12-22 17:22:21',0),(18878,2526,0,0,5120,'2025-12-15','12:17:00',0,243,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,174,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:18:21','','0000-00-00 00:00:00',0),(18879,2526,0,0,6380,'2025-12-16','00:00:00',4177,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7039,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 12:21:18','drashti','2025-12-16 12:21:53',0),(18880,2526,0,0,6362,'2025-12-16','12:25:26',3538,0,'PKG','CASE','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7040,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 12:25:25','janvi','2025-12-16 12:25:25',0),(18881,2526,0,0,6381,'2025-12-16','00:00:00',4178,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 12:34:20','janvi','2025-12-16 00:04:20',0),(18882,2526,0,0,6373,'2025-12-16','12:36:06',4171,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7041,1,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 12:36:06','reception','2025-12-16 12:36:06',0),(18883,2526,0,0,6373,'2025-12-16','12:36:06',4171,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,0.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7041,2,471,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 12:36:06','reception','2025-12-16 12:36:06',0),(18884,2526,0,0,6373,'2025-12-16','12:36:06',4171,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,0.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7041,3,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 12:36:06','reception','2025-12-16 12:36:06',0),(18885,2526,0,0,6380,'2025-12-16','12:37:26',4177,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',7042,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 12:37:26','drashti','2025-12-16 12:37:26',0),(18886,2526,0,0,6155,'2025-12-13','21:19:00',4033,282,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 00:08:28','vishal','2025-12-16 12:39:17',0),(18887,2526,0,0,6155,'2025-12-13','21:19:00',4033,282,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 00:08:28','vishal','2025-12-16 12:39:17',0),(18888,2526,0,0,6155,'2025-12-14','12:39:00',4033,282,'SURG','SURG0014','H','N',1.00,36000,36000,'P',0,0,0.00,0.00,36000.00,36000,3,0,0,'',0,0,'','','','','',2526,'H','I',282,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:40:37','vishal','2025-12-16 13:58:49',0),(18889,2526,0,0,6155,'2025-12-14','12:39:00',4033,282,'SURG','SURG0015','H','N',1.00,12000,12000,'P',0,0,0.00,0.00,12000.00,12000,3,0,0,'',0,0,'','','','','',2526,'H','I',282,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 12:40:37','vishal','2025-12-16 13:58:49',0),(18890,2526,0,0,6382,'2025-12-16','12:41:47',4116,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,4,0,0,'',0,0,'','','','','',2526,'H','O',7043,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 12:41:47','drashti','2025-12-16 12:41:47',0),(18891,2526,0,0,6383,'2025-12-16','00:00:00',4179,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7044,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 12:44:16','drashti','2025-12-16 12:45:29',0),(18892,2526,0,0,6384,'2025-12-16','12:48:04',4065,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,0.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',7045,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-16 12:48:04','shweta','2025-12-16 12:48:04',0),(18893,2526,0,0,6385,'2025-12-16','00:00:00',3246,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,0.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7046,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 12:51:06','reception','2025-12-16 12:51:38',0),(18894,2526,0,0,6386,'2025-12-16','00:00:00',4180,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7047,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 12:55:15','drashti','2025-12-16 13:15:07',0),(18895,2526,0,0,6383,'2025-12-16','12:58:35',4179,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7048,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 12:58:35','drashti','2025-12-16 12:58:35',0),(18896,2526,0,0,6387,'2025-12-16','00:00:00',4181,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7049,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 12:59:44','reception','2025-12-16 13:01:15',0),(18897,2526,0,0,6388,'2025-12-16','00:00:00',4182,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7050,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 13:08:19','janvi','2025-12-16 13:09:09',0),(18898,2526,0,0,6389,'2025-12-16','00:00:00',4183,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7052,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 13:08:38','drashti','2025-12-16 13:10:47',0),(18899,2526,0,0,6274,'2025-12-15','17:00:00',0,293,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,7,0,0,'',0,0,'','209','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-16 00:39:26','riya','2025-12-16 13:10:54',0),(18900,2526,0,0,6390,'2025-12-16','00:00:00',4184,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,0.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7051,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 13:10:07','reception','2025-12-16 13:10:32',0),(18901,2526,0,0,6392,'2025-12-16','00:00:00',4185,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7053,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 13:13:41','drashti','2025-12-16 13:14:20',0),(18902,2526,0,0,6394,'2025-12-16','00:00:00',4186,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,0.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7055,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 13:16:23','reception','2025-12-16 13:17:05',0),(18903,2526,0,0,6393,'2025-12-16','13:17:14',3841,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,0.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7056,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 13:17:14','reception','2025-12-16 13:17:14',0),(18904,2526,0,0,6387,'2025-12-16','13:21:10',4181,0,'USG','USG0056','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','O',7057,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 13:21:10','drashti','2025-12-16 13:21:10',0),(18905,2526,0,0,6387,'2025-12-16','13:21:10',4181,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,0.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',7057,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-16 13:21:10','drashti','2025-12-16 13:21:10',0),(18906,2526,0,0,6378,'2025-12-16','13:49:40',4175,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,0.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7059,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 13:49:40','reception','2025-12-16 13:49:40',0),(18907,2526,0,0,6378,'2025-12-16','13:49:40',4175,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,0.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',7059,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 13:49:40','reception','2025-12-16 13:49:40',0),(18908,2526,0,0,6381,'2025-12-16','14:04:34',4178,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,0.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',7060,1,500,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 14:04:34','janvi','2025-12-16 14:04:34',0),(18909,2526,0,0,6395,'2025-12-16','14:09:42',2738,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,0.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',7061,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 14:09:42','janvi','2025-12-16 14:09:42',0),(18910,2526,0,0,6396,'2025-12-16','00:00:00',4187,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,0.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7063,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 14:23:02','reception','2025-12-16 14:24:14',0),(18911,2526,0,0,6396,'2025-12-16','14:36:22',4187,0,'OPWD','OPWD0023','H','N',1.00,800,800,'P',0,0,0.00,0.00,0.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7064,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 14:36:22','reception','2025-12-16 14:36:22',0),(18912,2526,0,0,6264,'2025-12-15','14:53:00',0,292,'USG','USG0092','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',285,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 15:00:37','riya','2025-12-16 15:32:13',0),(18913,2526,0,0,6264,'2025-12-15','14:56:00',0,292,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',285,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 15:00:37','riya','2025-12-16 15:32:13',0),(18914,2526,0,0,6264,'2025-12-15','14:57:00',0,292,'WPRC','WPRC0090','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',285,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 15:00:37','riya','2025-12-16 15:32:13',0),(18915,2526,0,0,6264,'2025-12-15','15:00:00',0,292,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 02:37:12','riya','2025-12-16 15:32:48',0),(18916,2526,0,0,6397,'2025-12-16','15:30:00',0,298,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',304,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-16 15:45:00','vishal','2025-12-18 17:39:37',0),(18917,2526,0,0,6397,'2025-12-16','15:30:00',0,298,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',304,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-16 15:45:00','vishal','2025-12-18 17:39:37',0),(18918,2526,0,0,6397,'2025-12-16','15:30:00',0,298,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','RC07','','',2526,'H','I',304,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-16 03:15:00','vishal','2025-12-18 17:39:37',0),(18919,2526,0,0,6397,'2025-12-16','15:30:00',0,298,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',304,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-16 03:15:00','vishal','2025-12-18 17:39:37',0),(18920,2526,0,0,6397,'2025-12-16','15:30:00',0,298,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',304,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-16 03:15:00','vishal','2025-12-18 17:39:37',0),(18921,2526,0,0,6397,'2025-12-16','15:30:00',0,298,'DRC','DRC0018','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','207','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-16 03:15:00','vishal','2025-12-18 19:02:18',0),(18922,2526,0,0,6397,'2025-12-16','15:30:00',0,298,'DRC','DRC0019','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','207','','','',2526,'H','I',304,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-16 03:15:00','vishal','2025-12-18 19:02:18',0),(18923,2526,0,0,6398,'2025-12-16','00:00:00',4188,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7065,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 16:20:07','reception','2025-12-16 16:21:02',0),(18924,2526,0,0,6374,'2025-12-16','16:38:32',4172,0,'PKG','CASE','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7066,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 16:38:32','reception','2025-12-16 16:38:32',0),(18925,2526,0,0,6399,'2025-12-16','00:00:00',4189,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7067,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 16:39:26','reception','2025-12-16 16:40:04',0),(18926,2526,0,0,6400,'2025-12-16','00:00:00',284,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7068,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-16 16:40:08','priyanshi','2025-12-16 16:40:25',0),(18927,2526,0,0,6401,'2025-12-16','00:00:00',4190,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7069,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 16:46:06','reception','2025-12-16 16:46:59',0),(18928,2526,0,0,6402,'2025-12-16','16:57:29',4140,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7070,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 16:57:29','reception','2025-12-16 16:57:29',0),(18929,2526,0,0,6402,'2025-12-16','16:57:29',4140,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7070,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 16:57:29','reception','2025-12-16 16:57:29',0),(18930,2526,0,0,6402,'2025-12-16','16:57:29',4140,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7070,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 16:57:29','reception','2025-12-16 16:57:29',0),(18931,2526,0,0,6403,'2025-12-16','00:00:00',1459,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7071,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 17:11:01','reception','2025-12-16 17:11:18',0),(18932,2526,0,0,6404,'2025-12-16','00:00:00',4191,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7072,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 17:23:58','reception','2025-12-16 17:24:20',0),(18933,2526,0,0,6405,'2025-12-16','00:00:00',4192,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7073,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 17:27:37','urvashi','2025-12-16 17:27:51',0),(18934,2526,0,0,6401,'2025-12-16','17:40:35',4190,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7074,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 17:40:35','reception','2025-12-16 17:40:35',0),(18935,2526,0,0,6401,'2025-12-16','17:40:35',4190,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7074,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 17:40:35','reception','2025-12-16 17:40:35',0),(18936,2526,0,0,6401,'2025-12-16','17:40:35',4190,0,'NEU1','NEU10017','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7074,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 17:40:35','reception','2025-12-16 17:40:35',0),(18937,2526,0,0,6407,'2025-12-16','00:00:00',4193,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7075,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 17:42:47','urvashi','2025-12-16 17:43:21',0),(18938,2526,0,0,6408,'2025-12-16','00:00:00',4194,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7076,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-16 17:42:58','shweta','2025-12-16 17:44:05',0),(18939,2526,0,0,6409,'2025-12-16','00:00:00',964,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7077,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 17:45:39','urvashi','2025-12-16 17:45:50',0),(18940,2526,0,0,6329,'2025-12-16','17:46:00',0,294,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',286,5,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 17:49:28','','0000-00-00 00:00:00',0),(18941,2526,0,0,6329,'2025-12-16','17:49:00',0,294,'CARE','CARE0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',286,6,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 17:49:28','','0000-00-00 00:00:00',0),(18942,2526,0,0,6410,'2025-12-16','00:00:00',4195,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7078,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 17:50:05','reception','2025-12-16 17:51:18',0),(18943,2526,0,0,6411,'2025-12-16','17:54:43',4023,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7079,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 17:54:43','janvi','2025-12-16 17:55:15',0),(18944,2526,0,0,6398,'2025-12-16','17:57:14',4188,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7080,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 17:57:14','reception','2025-12-16 17:57:14',0),(18945,2526,0,0,6398,'2025-12-16','17:57:14',4188,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7080,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 17:57:14','reception','2025-12-16 17:57:14',0),(18946,2526,0,0,6412,'2025-12-16','00:00:00',852,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7081,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 17:58:11','urvashi','2025-12-16 17:58:24',0),(18947,2526,0,0,6413,'2025-12-16','00:00:00',4196,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7082,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 17:58:59','urvashi','2025-12-16 18:00:05',0),(18948,2526,0,0,4017,'2025-12-16','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,268,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:24','vishal','2025-12-18 17:35:55',0),(18949,2526,0,0,4017,'2025-12-16','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,269,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:24','vishal','2025-12-18 17:35:55',0),(18950,2526,0,0,4017,'2025-12-16','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,270,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:24','vishal','2025-12-18 17:35:55',0),(18951,2526,0,0,4017,'2025-12-16','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,271,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:24','vishal','2025-12-18 17:35:55',0),(18952,2526,0,0,4017,'2025-12-16','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','','','',0,'','',0,272,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:24','vishal','2025-12-18 17:35:55',0),(18953,2526,0,0,5521,'2025-12-16','12:30:00',0,259,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','RC04','','',2526,'H','I',290,70,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-17 13:30:22',0),(18954,2526,0,0,5521,'2025-12-16','12:30:00',0,259,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,69,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-17 13:07:43',0),(18955,2526,0,0,5521,'2025-12-16','12:30:00',0,259,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',290,69,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-16 21:31:22',0),(18956,2526,0,0,5521,'2025-12-16','12:30:00',0,259,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',2526,'H','I',290,68,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-17 13:29:42',0),(18957,2526,0,0,5521,'2025-12-16','12:30:00',0,259,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',2526,'H','I',290,66,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-17 13:30:22',0),(18958,2526,0,0,6163,'2025-12-16','11:30:00',0,284,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-18 18:58:56',0),(18959,2526,0,0,6163,'2025-12-16','11:30:00',0,284,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-18 18:58:56',0),(18960,2526,0,0,6163,'2025-12-16','11:30:00',0,284,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-18 18:58:56',0),(18961,2526,0,0,6163,'2025-12-16','11:30:00',0,284,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-18 18:58:56',0),(18962,2526,0,0,6163,'2025-12-16','11:30:00',0,284,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-18 18:58:56',0),(18963,2526,0,0,6165,'2025-12-16','12:50:00',0,285,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','RC04','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-16 21:12:52',0),(18964,2526,0,0,6165,'2025-12-16','12:50:00',0,285,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-16 21:12:52',0),(18965,2526,0,0,6165,'2025-12-16','12:50:00',0,285,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-16 21:12:52',0),(18966,2526,0,0,6165,'2025-12-16','12:50:00',0,285,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','407','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-16 21:12:52',0),(18967,2526,0,0,6165,'2025-12-16','12:50:00',0,285,'DRC','DRC0019','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','407','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-16 21:12:52',0),(18968,2526,0,0,6166,'2025-12-16','17:00:00',4000,286,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','RC04','','',2526,'H','D',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-17 17:27:17',0),(18969,2526,0,0,6166,'2025-12-16','17:00:00',4000,286,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','D',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-17 17:27:17',0),(18970,2526,0,0,6166,'2025-12-16','17:00:00',4000,286,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','D',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-17 17:27:17',0),(18971,2526,0,0,6166,'2025-12-17','17:00:00',4000,286,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','405','','','',2526,'H','D',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-17 17:30:43',0),(18972,2526,0,0,6166,'2025-12-16','17:00:00',4000,286,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:25','vishal','2025-12-17 17:30:43',0),(18973,2526,0,0,6254,'2025-12-16','12:30:00',0,289,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','RC03','','',2526,'H','I',292,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','vishal','2025-12-17 14:13:30',0),(18974,2526,0,0,6254,'2025-12-16','12:30:00',0,289,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',292,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','vishal','2025-12-17 14:15:45',0),(18975,2526,0,0,6254,'2025-12-16','12:30:00',0,289,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',292,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','vishal','2025-12-17 14:03:45',0),(18976,2526,0,0,6254,'2025-12-16','12:30:00',0,289,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',292,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','vishal','2025-12-17 14:03:45',0),(18977,2526,0,0,6254,'2025-12-16','12:30:00',0,289,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','412','','','',2526,'H','I',292,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','vishal','2025-12-17 14:13:30',0),(18978,2526,0,0,6262,'2025-12-16','13:30:00',0,290,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','RC03','','',2526,'H','I',291,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','vishal','2025-12-17 13:44:20',0),(18979,2526,0,0,6262,'2025-12-16','13:30:00',0,290,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',291,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','vishal','2025-12-17 13:44:20',0),(18980,2526,0,0,6262,'2025-12-16','13:30:00',0,290,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',291,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','vishal','2025-12-17 13:44:20',0),(18981,2526,0,0,6262,'2025-12-16','13:30:00',0,290,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,6,0,0,'',0,0,'','402','','','',2526,'H','I',291,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','vishal','2025-12-17 13:44:20',0),(18982,2526,0,0,6262,'2025-12-16','13:30:00',0,290,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,6,0,0,'',0,0,'','402','','','',2526,'H','I',291,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','vishal','2025-12-17 13:44:20',0),(18983,2526,0,0,6330,'2025-12-16','00:05:00',0,295,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','RC03','','',2526,'H','I',287,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','vishal','2025-12-16 19:32:17',0),(18984,2526,0,0,6330,'2025-12-16','00:05:00',0,295,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',287,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','vishal','2025-12-16 19:32:17',0),(18985,2526,0,0,6330,'2025-12-16','00:05:00',0,295,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',287,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','vishal','2025-12-16 19:32:17',0),(18986,2526,0,0,6330,'2025-12-16','00:05:00',0,295,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',2526,'H','I',287,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','vishal','2025-12-16 19:32:17',0),(18987,2526,0,0,6330,'2025-12-16','00:05:00',0,295,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','403','','','',2526,'H','I',287,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','vishal','2025-12-16 19:32:17',0),(18988,2526,0,0,6346,'2025-12-16','10:40:00',4056,297,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','RC03','','',0,'','',0,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','riya','2025-12-20 10:34:33',0),(18989,2526,0,0,6346,'2025-12-16','10:40:00',4056,297,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',0,'','',0,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','riya','2025-12-20 10:34:33',0),(18990,2526,0,0,6346,'2025-12-16','10:40:00',4056,297,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',0,'','',0,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','riya','2025-12-20 10:34:33',0),(18991,2526,0,0,6346,'2025-12-16','10:40:00',4056,297,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','riya','2025-12-20 10:34:33',0),(18992,2526,0,0,6346,'2025-12-16','10:40:00',4056,297,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 05:29:26','riya','2025-12-20 10:34:33',0),(18993,2526,0,0,6414,'2025-12-16','00:00:00',4197,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7083,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 18:01:34','janvi','2025-12-16 18:01:54',0),(18994,2526,0,0,6416,'2025-12-16','00:00:00',4198,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7084,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-16 18:03:50','shweta','2025-12-16 18:05:34',0),(18995,2526,0,0,6417,'2025-12-16','00:00:00',4199,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7085,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 18:05:50','urvashi','2025-12-16 18:22:30',0),(18996,2526,0,0,6418,'2025-12-16','00:00:00',3332,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7086,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-16 18:09:28','shweta','2025-12-16 18:10:49',0),(18997,2526,0,0,6416,'2025-12-16','18:16:28',4198,0,'XRY','XRY0342','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7087,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-16 18:16:28','shweta','2025-12-16 18:16:28',0),(18998,2526,0,0,6419,'2025-12-16','18:18:24',3310,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7088,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 18:18:24','janvi','2025-12-16 18:18:24',0),(18999,2526,0,0,6420,'2025-12-16','00:00:00',4200,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7090,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 18:18:57','urvashi','2025-12-16 18:19:58',0),(19000,2526,0,0,6421,'2025-12-16','18:19:43',4172,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',7089,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 18:19:43','janvi','2025-12-16 18:19:43',0),(19001,2526,0,0,6423,'2025-12-16','00:00:00',2241,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7091,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 18:21:23','urvashi','2025-12-16 18:21:39',0),(19002,2526,0,0,6422,'2025-12-16','18:21:42',2930,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7092,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 18:21:42','janvi','2025-12-16 18:21:42',0),(19003,2526,0,0,6415,'2025-12-16','18:23:36',2542,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7094,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 18:23:36','janvi','2025-12-16 18:23:36',0),(19004,2526,0,0,6424,'2025-12-16','00:00:00',4201,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7095,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 18:24:26','reception','2025-12-16 18:24:44',0),(19005,2526,0,0,6425,'2025-12-16','00:00:00',3694,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7096,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 18:26:12','urvashi','2025-12-16 18:27:27',0),(19006,2526,0,0,6426,'2025-12-16','00:00:00',4202,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7097,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 18:28:19','reception','2025-12-16 18:29:34',0),(19007,2526,0,0,6428,'2025-12-16','00:00:00',4203,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7099,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 18:33:34','urvashi','2025-12-16 18:34:15',0),(19008,2526,0,0,6427,'2025-12-16','18:33:51',3593,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7098,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 18:33:51','janvi','2025-12-16 18:33:51',0),(19009,2526,0,0,6430,'2025-12-16','00:00:00',676,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7100,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 18:44:02','urvashi','2025-12-16 19:37:36',0),(19010,2526,0,0,6431,'2025-12-16','00:00:00',4204,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7101,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 18:45:15','urvashi','2025-12-16 18:45:38',0),(19011,2526,0,0,6432,'2025-12-16','00:00:00',2914,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7102,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 18:45:35','reception','2025-12-16 18:46:19',0),(19012,2526,0,0,6433,'2025-12-16','00:00:00',4205,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7103,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 18:48:04','janvi','2025-12-16 18:48:33',0),(19013,2526,0,0,6434,'2025-12-16','00:00:00',3099,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7104,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 18:50:04','janvi','2025-12-16 18:50:24',0),(19014,2526,0,0,6405,'2025-12-16','18:50:31',4192,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7105,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 18:50:31','reception','2025-12-16 18:50:31',0),(19015,2526,0,0,6405,'2025-12-16','18:50:31',4192,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7105,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 18:50:31','reception','2025-12-16 18:50:31',0),(19016,2526,0,0,6405,'2025-12-16','18:50:31',4192,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7105,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 18:50:31','reception','2025-12-16 18:50:31',0),(19017,2526,0,0,6435,'2025-12-16','00:00:00',3814,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7106,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 18:51:48','urvashi','2025-12-16 18:52:11',0),(19018,2526,0,0,6436,'2025-12-16','00:00:00',2992,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7108,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 18:53:13','urvashi','2025-12-16 18:55:49',0),(19019,2526,0,0,6437,'2025-12-16','00:00:00',245,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7107,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 18:53:44','urvashi','2025-12-16 18:54:10',0),(19020,2526,0,0,6438,'2025-12-16','00:00:00',4206,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7109,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 18:56:41','urvashi','2025-12-16 18:57:37',0),(19021,2526,0,0,6439,'2025-12-16','00:00:00',3599,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7110,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 18:59:19','reception','2025-12-16 18:59:49',0),(19022,2526,0,0,6440,'2025-12-16','00:00:00',4207,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7111,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 19:04:27','urvashi','2025-12-16 19:04:50',0),(19023,2526,0,0,6441,'2025-12-16','00:00:00',4208,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7113,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 19:06:19','reception','2025-12-16 19:08:27',0),(19024,2526,0,0,6438,'2025-12-16','19:08:13',4206,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7112,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 19:08:13','urvashi','2025-12-16 19:08:13',0),(19025,2526,0,0,6442,'2025-12-16','00:00:00',4209,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7114,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 19:09:49','urvashi','2025-12-16 19:10:46',0),(19026,2526,0,0,6443,'2025-12-16','00:00:00',3829,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7115,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 19:14:59','janvi','2025-12-16 19:15:09',0),(19027,2526,0,0,6442,'2025-12-16','19:17:22',4209,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7116,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 19:17:22','urvashi','2025-12-16 19:17:22',0),(19028,2526,0,0,6406,'2025-12-16','19:17:30',4057,0,'OPWD','OPWD0023','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,4000.00,4000,3,0,0,'',0,0,'','','','','',2526,'H','O',7117,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-16 19:17:30','janvi','2025-12-16 19:17:30',0),(19029,2526,0,0,6334,'2025-12-16','19:19:00',0,296,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',288,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 19:21:09','','0000-00-00 00:00:00',0),(19030,2526,0,0,6334,'2025-12-16','19:19:00',0,296,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',288,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 19:21:09','','0000-00-00 00:00:00',0),(19031,2526,0,0,6334,'2025-12-16','19:20:00',0,296,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',288,10,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 19:21:09','','0000-00-00 00:00:00',0),(19032,2526,0,0,6334,'2025-12-16','19:20:00',0,296,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','I',288,11,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 19:21:09','','0000-00-00 00:00:00',0),(19033,2526,0,0,6408,'2025-12-16','19:30:18',4194,0,'XRY','XRY0008','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',7118,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-16 19:30:18','shweta','2025-12-16 19:30:18',0),(19034,2526,0,0,6330,'2025-12-16','19:30:00',0,295,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',287,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 19:32:17','','0000-00-00 00:00:00',0),(19035,2526,0,0,6330,'2025-12-16','19:30:00',0,295,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',287,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 19:32:17','','0000-00-00 00:00:00',0),(19036,2526,0,0,6330,'2025-12-16','19:31:00',0,295,'WPRC','WPRC0090','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',287,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 19:32:17','','0000-00-00 00:00:00',0),(19037,2526,0,0,6330,'2025-12-16','19:32:00',0,295,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',287,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 19:32:17','','0000-00-00 00:00:00',0),(19038,2526,0,0,6444,'2025-12-16','00:00:00',4210,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7119,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 19:36:01','urvashi','2025-12-16 19:36:41',0),(19039,2526,0,0,6440,'2025-12-16','19:37:14',4207,0,'NEU1','NEU10019','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',7120,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 19:37:14','reception','2025-12-16 19:37:14',0),(19040,2526,0,0,6440,'2025-12-16','19:42:12',4207,0,'NEU1','NEU10017','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7122,1,500,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-16 19:42:12','reception','2025-12-16 19:42:12',0),(19041,2526,0,0,6445,'2025-12-16','00:00:00',2454,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 19:42:21','urvashi','2025-12-16 07:12:21',0),(19042,2526,0,0,6446,'2025-12-16','19:48:33',3957,0,'OTCG','OTCG0001','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7123,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-16 19:48:33','urvashi','2025-12-16 19:48:33',0),(19043,2526,0,0,6061,'2025-12-16','19:50:00',4016,277,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','RC03','','',2526,'H','I',289,25,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 07:33:49','vishal','2025-12-17 12:39:41',0),(19044,2526,0,0,6061,'2025-12-16','19:50:00',4016,277,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',2526,'H','I',289,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 07:33:49','vishal','2025-12-16 21:27:38',0),(19045,2526,0,0,6061,'2025-12-16','19:50:00',4016,277,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',2526,'H','I',289,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 07:33:49','vishal','2025-12-16 21:27:38',0),(19046,2526,0,0,6061,'2025-12-16','19:50:00',4016,277,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','411','','','',2526,'H','I',289,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 07:33:49','vishal','2025-12-16 21:27:38',0),(19047,2526,0,0,6061,'2025-12-16','19:50:00',4016,277,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','411','','','',2526,'H','I',289,29,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 07:33:49','vishal','2025-12-17 12:39:41',0),(19048,2526,0,0,6408,'2025-12-16','20:04:02',4194,0,'XRY','XRY0008','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',7124,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-16 20:04:02','shweta','2025-12-16 20:04:02',0),(19049,2526,0,0,6165,'2025-12-15','20:08:00',0,285,'USG','USG0102','H','N',1.00,4300,4300,'A',0,0,0.00,0.00,4300.00,4300,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 20:13:08','vishal','2025-12-16 21:12:52',0),(19050,2526,0,0,6165,'2025-12-14','20:11:00',0,285,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 20:13:08','','0000-00-00 00:00:00',0),(19051,2526,0,0,6165,'2025-12-15','20:11:00',0,285,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 20:13:08','vishal','2025-12-16 21:12:52',0),(19052,2526,0,0,6165,'2025-12-15','20:12:00',0,285,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 20:13:08','vishal','2025-12-16 21:12:52',0),(19053,2526,0,0,6165,'2025-12-15','20:12:00',0,285,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 20:13:08','vishal','2025-12-16 21:12:52',0),(19054,2526,0,0,6165,'2025-12-16','20:12:00',0,285,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 20:13:08','','0000-00-00 00:00:00',0),(19055,2526,0,0,6447,'2025-12-16','20:20:00',4209,299,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',296,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 20:21:25','vishal','2025-12-17 10:00:46',0),(19056,2526,0,0,6447,'2025-12-16','20:20:00',4209,299,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',296,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 20:21:25','vishal','2025-12-17 10:00:46',0),(19057,2526,0,0,6447,'2025-12-16','20:20:00',4209,299,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','RC03','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 07:51:25','vishal','2025-12-17 10:00:46',0),(19058,2526,0,0,6447,'2025-12-16','20:20:00',4209,299,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 07:51:25','vishal','2025-12-17 10:00:46',0),(19059,2526,0,0,6447,'2025-12-16','20:20:00',4209,299,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 07:51:25','vishal','2025-12-17 10:00:46',0),(19060,2526,0,0,6447,'2025-12-16','20:20:00',4209,299,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 07:51:25','vishal','2025-12-17 10:00:46',0),(19061,2526,0,0,6447,'2025-12-16','20:20:00',4209,299,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 07:51:25','vishal','2025-12-17 10:00:46',0),(19062,2526,0,0,6165,'2025-12-16','21:02:00',0,285,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:02:40','','0000-00-00 00:00:00',0),(19063,2526,0,0,6448,'2025-12-16','21:00:00',0,300,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',293,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:05:47','vishal','2025-12-17 18:58:02',0),(19064,2526,0,0,6448,'2025-12-16','21:00:00',0,300,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',293,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:05:47','vishal','2025-12-17 18:58:02',0),(19065,2526,0,0,6448,'2025-12-16','21:00:00',0,300,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','RC04','','',2526,'H','I',293,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 08:35:47','vishal','2025-12-17 18:58:02',0),(19066,2526,0,0,6448,'2025-12-16','21:00:00',0,300,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',293,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 08:35:47','vishal','2025-12-17 18:58:02',0),(19067,2526,0,0,6448,'2025-12-16','21:00:00',0,300,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',293,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 08:35:47','vishal','2025-12-17 18:58:02',0),(19068,2526,0,0,6448,'2025-12-17','21:00:00',0,300,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',293,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 08:35:47','vishal','2025-12-17 18:58:02',0),(19069,2526,0,0,6448,'2025-12-17','21:00:00',0,300,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',293,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 08:35:47','vishal','2025-12-17 18:58:02',0),(19070,2526,0,0,6165,'2025-12-14','21:06:00',0,285,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:12:23','vishal','2025-12-16 21:12:52',0),(19071,2526,0,0,6165,'2025-12-14','21:06:00',0,285,'ROOM','ROOM0008','H','N',9.00,100,900,'A',0,0,0.00,0.00,900.00,900,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:12:23','vishal','2025-12-16 21:12:52',0),(19072,2526,0,0,6165,'2025-12-15','21:06:00',0,285,'WPRC','WPRC0099','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:12:23','vishal','2025-12-16 21:12:52',0),(19073,2526,0,0,6165,'2025-12-15','21:09:00',0,285,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,78,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:12:23','vishal','2025-12-16 21:12:52',0),(19074,2526,0,0,6165,'2025-12-15','21:09:00',0,285,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:12:23','','0000-00-00 00:00:00',0),(19075,2526,0,0,6165,'2025-12-15','21:09:00',0,285,'ROOM','ROOM0008','H','N',12.00,100,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:12:23','vishal','2025-12-18 19:40:42',0),(19076,2526,0,0,6165,'2025-12-16','21:10:00',0,285,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:12:23','','0000-00-00 00:00:00',0),(19077,2526,0,0,6165,'2025-12-16','21:10:00',0,285,'WPRC','WPRC0077','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:12:23','','0000-00-00 00:00:00',0),(19078,2526,0,0,6165,'2025-12-14','21:10:00',0,285,'WPRC','WPRC0105','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:12:23','vishal','2025-12-16 21:12:52',0),(19079,2526,0,0,6165,'2025-12-15','21:10:00',0,285,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:12:23','','0000-00-00 00:00:00',0),(19080,2526,0,0,6165,'2025-12-14','21:10:00',0,285,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:12:23','vishal','2025-12-16 21:12:52',0),(19081,2526,0,0,6165,'2025-12-15','21:10:00',0,285,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:12:23','','0000-00-00 00:00:00',0),(19082,2526,0,0,6165,'2025-12-16','21:10:00',0,285,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:12:23','','0000-00-00 00:00:00',0),(19083,2526,0,0,6165,'2025-12-15','21:11:00',0,285,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,6,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:12:23','','0000-00-00 00:00:00',0),(19084,2526,0,0,6165,'2025-12-16','21:11:00',0,285,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,78,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:12:23','','0000-00-00 00:00:00',0),(19085,2526,0,0,6061,'2025-12-14','21:26:00',4016,277,'ROOM','ROOM0008','H','N',2.00,100,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',289,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:27:38','vishal','2025-12-17 12:35:46',0),(19086,2526,0,0,6061,'2025-12-15','21:26:00',4016,277,'ROOM','ROOM0008','H','N',2.00,100,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',289,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:27:38','vishal','2025-12-17 12:35:46',0),(19087,2526,0,0,6061,'2025-12-16','21:26:00',4016,277,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',289,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:27:38','','0000-00-00 00:00:00',0),(19088,2526,0,0,5521,'2025-12-15','21:28:00',0,259,'ROOM','ROOM0008','H','N',6.00,100,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,65,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:31:03','vishal','2025-12-16 21:31:22',0),(19089,2526,0,0,5521,'2025-12-16','21:28:00',0,259,'ROOM','ROOM0008','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,70,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:31:03','','0000-00-00 00:00:00',0),(19090,2526,0,0,5521,'2025-12-15','21:28:00',0,259,'WPRC','WPRC0083','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',290,66,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:31:03','vishal','2025-12-16 21:31:22',0),(19091,2526,0,0,5521,'2025-12-16','21:28:00',0,259,'WPRC','WPRC0083','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',290,72,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:31:03','vishal','2025-12-17 13:07:43',0),(19092,2526,0,0,5521,'2025-12-14','21:29:00',0,259,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',290,59,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:31:03','vishal','2025-12-16 21:31:22',0),(19093,2526,0,0,6449,'2025-12-17','00:00:00',4211,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 08:40:16','reception','2025-12-16 20:10:16',0),(19094,2526,0,0,6449,'2025-12-17','08:43:30',4211,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',7125,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 08:43:30','reception','2025-12-17 08:43:30',0),(19095,2526,0,0,6449,'2025-12-17','08:43:30',4211,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7125,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 08:43:30','reception','2025-12-17 08:43:30',0),(19096,2526,0,0,6449,'2025-12-17','08:43:30',4211,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',7125,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 08:43:30','reception','2025-12-17 08:43:30',0),(19097,2526,0,0,6450,'2025-12-17','00:00:00',4212,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 08:45:14','reception','2025-12-16 20:15:14',0),(19098,2526,0,0,6450,'2025-12-17','08:46:57',4212,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',7126,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 08:46:57','reception','2025-12-17 08:46:57',0),(19099,2526,0,0,6450,'2025-12-17','08:46:57',4212,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',7126,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 08:46:57','reception','2025-12-17 08:46:57',0),(19100,2526,0,0,6451,'2025-12-17','08:49:19',4185,0,'OPWD','OPWD0013','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,4,0,0,'',0,0,'','','','','',2526,'H','O',7127,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 08:49:19','reception','2025-12-17 08:49:19',0),(19101,2526,0,0,6451,'2025-12-17','08:49:19',4185,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7127,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 08:49:19','reception','2025-12-17 08:49:19',0),(19102,2526,0,0,6452,'2025-12-17','00:00:00',4213,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7128,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 09:50:05','reception','2025-12-17 09:50:39',0),(19103,2526,0,0,5120,'2025-12-17','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','RC04','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:24:10','vishal','2025-12-18 19:14:12',0),(19104,2526,0,0,5120,'2025-12-17','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:24:10','vishal','2025-12-18 19:14:12',0),(19105,2526,0,0,5120,'2025-12-17','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:24:10','vishal','2025-12-18 19:14:12',0),(19106,2526,0,0,5120,'2025-12-17','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:24:10','vishal','2025-12-22 17:22:21',0),(19107,2526,0,0,5120,'2025-12-17','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:24:10','vishal','2025-12-22 17:22:21',0),(19108,2526,0,0,6453,'2025-12-17','00:00:00',4214,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7129,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 09:56:01','reception','2025-12-17 09:56:17',0),(19109,2526,0,0,6447,'2025-12-16','09:59:00',4209,299,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',296,3,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 10:00:46','','0000-00-00 00:00:00',0),(19110,2526,0,0,6447,'2025-12-16','09:59:00',4209,299,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',296,4,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 10:00:46','','0000-00-00 00:00:00',0),(19111,2526,0,0,6447,'2025-12-16','09:59:00',4209,299,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',296,5,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 10:00:46','','0000-00-00 00:00:00',0),(19112,2526,0,0,6447,'2025-12-16','09:59:00',4209,299,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','','','','',0,'','',0,6,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 10:00:46','vishal','2025-12-18 19:30:47',0),(19113,2526,0,0,6455,'2025-12-17','00:00:00',2291,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7130,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 10:06:00','reception','2025-12-17 10:06:39',0),(19114,2526,0,0,6456,'2025-12-17','00:00:00',1844,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7131,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 10:12:39','reception','2025-12-17 10:13:02',0),(19115,2526,0,0,6457,'2025-12-17','00:00:00',3350,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7132,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 10:13:28','reception','2025-12-17 10:13:42',0),(19116,2526,0,0,6458,'2025-12-17','00:00:00',3205,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7133,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 10:14:56','reception','2025-12-17 10:15:27',0),(19117,2526,0,0,6459,'2025-12-17','00:00:00',4215,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7134,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 10:16:46','reception','2025-12-17 10:17:46',0),(19118,2526,0,0,6460,'2025-12-17','00:00:00',3075,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7135,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 10:18:09','reception','2025-12-17 10:18:46',0),(19119,2526,0,0,6461,'2025-12-17','10:15:00',4206,301,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',302,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 10:23:24','riya','2025-12-20 13:37:29',0),(19120,2526,0,0,6461,'2025-12-17','10:15:00',4206,301,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',302,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 10:23:24','riya','2025-12-20 13:37:29',0),(19121,2526,0,0,6461,'2025-12-17','10:15:00',4206,301,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','RC04','','',2526,'H','I',302,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:53:24','riya','2025-12-20 13:37:29',0),(19122,2526,0,0,6461,'2025-12-17','10:15:00',4206,301,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',302,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:53:24','riya','2025-12-20 13:37:29',0),(19123,2526,0,0,6461,'2025-12-17','10:15:00',4206,301,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',302,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:53:24','riya','2025-12-20 13:37:29',0),(19124,2526,0,0,6461,'2025-12-17','10:15:00',4206,301,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',2526,'H','I',302,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:53:24','riya','2025-12-20 13:37:29',0),(19125,2526,0,0,6461,'2025-12-17','10:15:00',4206,301,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',2526,'H','I',302,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 21:53:24','riya','2025-12-20 13:37:29',0),(19126,2526,0,0,6462,'2025-12-17','00:00:00',3091,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7136,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 10:34:44','reception','2025-12-17 10:35:16',0),(19127,2526,0,0,6463,'2025-12-17','00:00:00',4216,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7137,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 10:38:45','reception','2025-12-17 10:39:38',0),(19128,2526,0,0,6464,'2025-12-17','00:00:00',4217,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7138,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-17 10:45:40','priyanshi','2025-12-17 10:48:34',0),(19129,2526,0,0,6465,'2025-12-17','00:00:00',2853,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7139,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 10:49:12','reception','2025-12-17 10:49:58',0),(19130,2526,0,0,6466,'2025-12-17','00:00:00',4218,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7140,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 10:51:17','reception','2025-12-17 12:00:08',0),(19131,2526,0,0,6454,'2025-12-17','10:53:10',4057,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7141,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-17 10:53:10','priyanshi','2025-12-17 10:53:10',0),(19132,2526,0,0,6468,'2025-12-17','00:00:00',4219,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7143,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-17 10:55:54','priyanshi','2025-12-17 10:56:17',0),(19133,2526,0,0,6467,'2025-12-17','10:56:01',3973,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7142,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 10:56:01','drashti','2025-12-17 10:56:01',0),(19134,2526,0,0,6469,'2025-12-17','00:00:00',4220,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7144,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 10:58:07','reception','2025-12-17 10:58:25',0),(19135,2526,0,0,6470,'2025-12-17','00:00:00',3525,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-17 11:01:22','priyanshi','2025-12-16 22:31:22',0),(19136,2526,0,0,6471,'2025-12-17','00:00:00',541,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7145,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 11:02:43','drashti','2025-12-17 11:03:20',0),(19137,2526,0,0,6472,'2025-12-17','00:00:00',4221,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7146,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 11:02:54','reception','2025-12-17 11:03:32',0),(19138,2526,0,0,6473,'2025-12-17','00:00:00',715,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7147,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 11:08:20','reception','2025-12-17 11:08:36',0),(19139,2526,0,0,6474,'2025-12-17','00:00:00',4222,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7149,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 11:09:52','shweta','2025-12-17 11:10:38',0),(19140,2526,0,0,6475,'2025-12-17','00:00:00',25,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7148,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 11:09:57','reception','2025-12-17 11:10:16',0),(19141,2526,0,0,6476,'2025-12-17','00:00:00',3369,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',7150,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 11:11:04','shweta','2025-12-17 11:12:00',0),(19142,2526,0,0,6477,'2025-12-17','00:00:00',4223,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7151,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 11:12:56','shweta','2025-12-17 11:45:29',0),(19143,2526,0,0,6478,'2025-12-17','00:00:00',479,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7152,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 11:13:55','shweta','2025-12-17 11:14:23',0),(19144,2526,0,0,6479,'2025-12-17','00:00:00',2531,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7153,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 11:20:46','drashti','2025-12-17 11:21:34',0),(19145,2526,0,0,6480,'2025-12-17','00:00:00',4224,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7155,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 11:21:24','shweta','2025-12-17 11:22:51',0),(19146,2526,0,0,6452,'2025-12-17','11:22:42',4213,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7154,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 11:22:42','reception','2025-12-17 11:22:42',0),(19147,2526,0,0,6452,'2025-12-17','11:22:42',4213,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7154,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 11:22:42','reception','2025-12-17 11:22:42',0),(19148,2526,0,0,6480,'2025-12-17','11:22:51',4224,0,'WPRC','WPRC0037','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7155,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'shweta','2025-12-17 11:22:51','shweta','2025-12-17 11:22:51',0),(19149,2526,0,0,6480,'2025-12-17','11:22:51',4224,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,50.00,50,9999,0,122,'',0,0,'','','','','',2526,'H','O',7155,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'shweta','2025-12-17 11:22:51','shweta','2025-12-17 11:22:51',0),(19150,2526,0,0,6482,'2025-12-17','00:00:00',4225,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7156,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 11:26:58','drashti','2025-12-17 11:27:56',0),(19151,2526,0,0,6483,'2025-12-17','00:00:00',2214,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7157,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-17 11:28:40','priyanshi','2025-12-17 11:29:02',0),(19152,2526,0,0,6484,'2025-12-17','00:00:00',4226,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7158,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-17 11:29:54','priyanshi','2025-12-17 11:30:27',0),(19153,2526,0,0,6463,'2025-12-17','11:30:39',4216,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7159,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 11:30:39','reception','2025-12-17 11:30:39',0),(19154,2526,0,0,6463,'2025-12-17','11:30:39',4216,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7159,2,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 11:30:39','reception','2025-12-17 11:30:39',0),(19155,2526,0,0,6463,'2025-12-17','11:30:39',4216,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7159,3,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 11:30:39','reception','2025-12-17 11:30:39',0),(19156,2526,0,0,6463,'2025-12-17','11:30:39',4216,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7159,4,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 11:30:39','reception','2025-12-17 11:30:39',0),(19157,2526,0,0,6485,'2025-12-17','00:00:00',2001,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7160,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 11:37:05','reception','2025-12-17 11:37:40',0),(19158,2526,0,0,6453,'2025-12-17','11:42:54',4214,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7161,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 11:42:54','reception','2025-12-17 11:42:54',0),(19159,2526,0,0,6453,'2025-12-17','11:42:54',4214,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7161,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 11:42:54','reception','2025-12-17 11:42:54',0),(19160,2526,0,0,6486,'2025-12-17','00:00:00',4227,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7163,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 11:48:33','shweta','2025-12-17 11:48:48',0),(19161,2526,0,0,6487,'2025-12-17','00:00:00',4228,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7165,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 11:51:22','reception','2025-12-17 11:52:10',0),(19162,2526,0,0,6488,'2025-12-17','00:00:00',4229,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7164,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 11:51:26','drashti','2025-12-17 11:51:52',0),(19163,2526,0,0,6489,'2025-12-17','00:00:00',4230,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7167,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 11:52:55','drashti','2025-12-17 11:54:04',0),(19164,2526,0,0,6478,'2025-12-17','11:53:41',479,0,'XRY','XRY0306','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7166,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 11:53:41','shweta','2025-12-17 11:53:41',0),(19165,2526,0,0,6486,'2025-12-17','11:57:41',4227,0,'XRY','XRY0075','H','N',2.00,600,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7168,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 11:57:41','shweta','2025-12-17 11:57:41',0),(19166,2526,0,0,6490,'2025-12-17','00:00:00',1661,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 11:58:04','shweta','2025-12-16 23:28:04',0),(19167,2526,0,0,6163,'2025-12-17','11:30:00',0,284,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','RC04','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 23:36:23','vishal','2025-12-18 18:58:56',0),(19168,2526,0,0,6163,'2025-12-17','11:30:00',0,284,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 23:36:23','vishal','2025-12-18 18:58:56',0),(19169,2526,0,0,6163,'2025-12-17','11:30:00',0,284,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 23:36:23','vishal','2025-12-18 18:58:56',0),(19170,2526,0,0,6163,'2025-12-17','11:30:00',0,284,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 23:36:23','vishal','2025-12-18 18:58:56',0),(19171,2526,0,0,6163,'2025-12-17','11:30:00',0,284,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-16 23:36:23','vishal','2025-12-18 18:58:56',0),(19172,2526,0,0,6469,'2025-12-17','12:13:40',4220,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7170,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 12:13:40','reception','2025-12-17 12:13:40',0),(19173,2526,0,0,6469,'2025-12-17','12:13:40',4220,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7170,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 12:13:40','reception','2025-12-17 12:13:40',0),(19174,2526,0,0,6469,'2025-12-17','12:13:40',4220,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7170,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 12:13:40','reception','2025-12-17 12:13:40',0),(19175,2526,0,0,6488,'2025-12-17','12:15:44',4229,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7171,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 12:15:44','drashti','2025-12-17 12:15:44',0),(19176,2526,0,0,6489,'2025-12-17','12:18:06',4230,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',7172,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 12:18:06','drashti','2025-12-17 12:18:06',0),(19177,2526,0,0,6451,'2025-12-17','12:26:54',4185,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,4,0,0,'',0,0,'','','','','',2526,'H','O',7173,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 12:26:54','drashti','2025-12-17 12:26:54',0),(19178,2526,0,0,6472,'2025-12-17','12:27:52',4221,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7174,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 12:27:52','reception','2025-12-17 12:27:52',0),(19179,2526,0,0,6472,'2025-12-17','12:27:52',4221,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7174,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 12:27:52','reception','2025-12-17 12:27:52',0),(19180,2526,0,0,6491,'2025-12-17','00:00:00',3080,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7175,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 12:31:40','reception','2025-12-17 12:32:00',0),(19181,2526,0,0,6061,'2025-12-13','12:33:00',4016,277,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',289,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 12:33:40','','0000-00-00 00:00:00',0),(19182,2526,0,0,6061,'2025-12-17','12:33:00',4016,277,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',289,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 12:33:40','','0000-00-00 00:00:00',0),(19183,2526,0,0,6061,'2025-12-17','12:35:00',4016,277,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','I',289,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 12:35:46','','0000-00-00 00:00:00',0),(19184,2526,0,0,6493,'2025-12-17','00:00:00',3772,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7176,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 12:38:08','reception','2025-12-17 12:38:28',0),(19185,2526,0,0,6494,'2025-12-17','00:00:00',4231,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7180,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 12:39:36','drashti','2025-12-17 13:00:44',0),(19186,2526,0,0,6495,'2025-12-17','00:00:00',4232,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7178,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 12:42:56','drashti','2025-12-17 12:43:40',0),(19187,2526,0,0,6492,'2025-12-17','12:43:22',4106,0,'OPWD','OPWD0023','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',7177,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-17 12:43:22','janvi','2025-12-17 12:43:22',0),(19188,2526,0,0,6496,'2025-12-17','00:00:00',4233,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7179,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 12:47:00','reception','2025-12-17 12:47:28',0),(19189,2526,0,0,6497,'2025-12-17','00:00:00',1005,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 12:51:01','shweta','2025-12-17 00:21:01',0),(19190,2526,0,0,5521,'2025-12-17','12:30:00',0,259,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','RC04','','',0,'','',0,73,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 00:23:07','vishal','2025-12-17 13:30:22',0),(19191,2526,0,0,5521,'2025-12-17','12:30:00',0,259,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',0,'','',0,75,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 00:23:07','vishal','2025-12-17 13:30:22',0),(19192,2526,0,0,5521,'2025-12-17','12:30:00',0,259,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',0,'','',0,76,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 00:23:07','vishal','2025-12-17 13:30:22',0),(19193,2526,0,0,5521,'2025-12-17','12:30:00',0,259,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',2526,'H','I',290,76,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 00:23:07','vishal','2025-12-17 13:29:42',0),(19194,2526,0,0,5521,'2025-12-17','12:30:00',0,259,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','408','','','',0,'','',0,78,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 00:23:07','vishal','2025-12-17 13:05:22',0),(19195,2526,0,0,6498,'2025-12-17','00:00:00',3701,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 12:58:07','shweta','2025-12-17 00:28:07',0),(19196,2526,0,0,6499,'2025-12-17','00:00:00',3166,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7181,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 13:02:15','reception','2025-12-17 13:03:36',0),(19197,2526,0,0,6500,'2025-12-17','00:00:00',4234,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7184,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 13:03:12','shweta','2025-12-17 13:08:49',0),(19198,2526,0,0,6501,'2025-12-17','13:04:45',3378,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7182,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-17 13:04:45','janvi','2025-12-17 13:04:45',0),(19199,2526,0,0,5521,'2025-12-08','13:02:00',0,259,'DRC','DRC0021','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,5,0,0,'',0,0,'','','','','',2526,'H','I',290,76,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 13:05:22','','0000-00-00 00:00:00',0),(19200,2526,0,0,6497,'2025-12-17','13:07:21',1005,0,'XRY','XRY0434','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',7183,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 13:07:21','shweta','2025-12-17 13:07:21',0),(19201,2526,0,0,5521,'2025-12-17','13:07:00',0,259,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',290,77,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 13:07:43','','0000-00-00 00:00:00',0),(19202,2526,0,0,6500,'2025-12-17','13:08:49',4234,0,'OPWD','OPWD0023','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',7184,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 13:08:49','shweta','2025-12-17 13:08:49',0),(19203,2526,0,0,6500,'2025-12-17','13:08:49',4234,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,7,0,0,'',0,0,'','','','','',2526,'H','O',7184,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 13:08:49','shweta','2025-12-17 13:08:49',0),(19204,2526,0,0,6500,'2025-12-17','13:08:49',4234,0,'OPWD','OPWD0016','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,7,0,0,'',0,0,'','','','','',2526,'H','O',7184,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 13:08:49','shweta','2025-12-17 13:08:49',0),(19205,2526,0,0,6502,'2025-12-17','00:00:00',4235,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7185,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 13:18:49','reception','2025-12-17 13:18:59',0),(19206,2526,0,0,6503,'2025-12-17','00:00:00',2907,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7186,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 13:19:10','shweta','2025-12-17 13:19:42',0),(19207,2526,0,0,6489,'2025-12-17','13:22:25',4230,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,5,0,0,'',0,0,'','','','','',2526,'H','O',7187,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 13:22:25','reception','2025-12-17 13:22:25',0),(19208,2526,0,0,6504,'2025-12-17','13:27:29',280,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7188,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 13:27:29','reception','2025-12-17 13:27:29',0),(19209,2526,0,0,5521,'2025-12-17','13:26:00',0,259,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',290,78,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 13:29:42','','0000-00-00 00:00:00',0),(19210,2526,0,0,6505,'2025-12-17','13:36:03',3018,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',7189,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 13:36:03','drashti','2025-12-17 13:36:03',0),(19211,2526,0,0,6262,'2025-12-15','13:37:00',0,290,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',291,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 13:44:20','','0000-00-00 00:00:00',0),(19212,2526,0,0,6262,'2025-12-17','13:37:00',0,290,'WPRC','WPRC0123','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',291,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 13:44:20','vishal','2025-12-17 13:55:57',0),(19213,2526,0,0,6262,'2025-12-17','13:40:00',0,290,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,6,0,0,'',0,0,'','','','','',2526,'H','I',291,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 13:44:20','','0000-00-00 00:00:00',0),(19214,2526,0,0,6262,'2025-12-17','13:43:00',0,290,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,6,0,0,'',0,0,'','','','','',2526,'H','I',291,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 13:44:20','','0000-00-00 00:00:00',0),(19215,2526,0,0,6262,'2025-12-16','13:46:00',0,290,'SURG','SURG0016','H','N',1.00,11800,11800,'P',0,0,0.00,0.00,11800.00,11800,6,0,0,'',0,0,'','','','','',2526,'H','I',291,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 13:46:50','','0000-00-00 00:00:00',0),(19216,2526,0,0,6262,'2025-12-16','13:46:00',0,290,'SURG','SURG0015','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,4000.00,4000,6,0,0,'',0,0,'','','','','',2526,'H','I',291,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 13:46:50','','0000-00-00 00:00:00',0),(19217,2526,0,0,6502,'2025-12-17','13:56:23',4235,0,'NEU1','NEU10016','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7190,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 13:56:23','drashti','2025-12-17 13:56:23',0),(19218,2526,0,0,6502,'2025-12-17','13:56:23',4235,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7190,2,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 13:56:23','drashti','2025-12-17 13:56:23',0),(19219,2526,0,0,6254,'2025-12-15','14:01:00',0,289,'ROOM','ROOM0008','H','N',2.00,100,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',292,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 14:03:45','vishal','2025-12-17 14:12:43',0),(19220,2526,0,0,6254,'2025-12-16','14:02:00',0,289,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',292,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 14:03:45','','0000-00-00 00:00:00',0),(19221,2526,0,0,6254,'2025-12-17','14:02:00',0,289,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',292,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 14:03:45','','0000-00-00 00:00:00',0),(19222,2526,0,0,6254,'2025-12-16','14:11:00',0,289,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',292,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 14:12:43','vishal','2025-12-17 14:18:20',0),(19223,2526,0,0,6254,'2025-12-15','14:12:00',0,289,'OTCG','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',292,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 14:12:43','vishal','2025-12-17 14:18:57',0),(19224,2526,0,0,6254,'2025-12-17','14:12:00',0,289,'OTCG','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',292,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 14:13:30','vishal','2025-12-17 14:18:57',0),(19225,2526,0,0,6254,'2025-12-17','14:15:00',0,289,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',292,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 14:15:45','','0000-00-00 00:00:00',0),(19226,2526,0,0,6254,'2025-12-17','14:16:00',0,289,'DRC','DRC0020','H','N',1.00,3500,3500,'P',0,0,0.00,0.00,3500.00,3500,100,0,0,'',0,0,'','','','','',2526,'H','I',292,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 14:17:24','','0000-00-00 00:00:00',0),(19227,2526,0,0,6254,'2025-12-16','14:20:00',0,289,'SURG','SURG0016','H','N',1.00,8000,8000,'P',0,0,0.00,0.00,8000.00,8000,3,0,0,'',0,0,'','','','','',2526,'H','I',292,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 14:21:44','','0000-00-00 00:00:00',0),(19228,2526,0,0,6254,'2025-12-16','14:21:00',0,289,'SURG','SURG0015','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,3,0,0,'',0,0,'','','','','',2526,'H','I',292,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 14:21:44','','0000-00-00 00:00:00',0),(19229,2526,0,0,6504,'2025-12-17','14:51:51',280,0,'XRY','XRY0056','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',7191,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-17 14:51:51','priyanshi','2025-12-17 14:51:51',0),(19230,2526,0,0,6506,'2025-12-17','00:00:00',4236,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 16:17:11','reception','2025-12-17 03:47:12',0),(19231,2526,0,0,6507,'2025-12-17','00:00:00',963,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 16:19:48','reception','2025-12-17 03:49:48',0),(19232,2526,0,0,6508,'2025-12-17','00:00:00',3327,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7192,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 16:24:36','reception','2025-12-17 17:51:04',0),(19233,2526,0,0,6509,'2025-12-17','00:00:00',1640,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 16:43:43','reception','2025-12-17 04:13:43',0),(19234,2526,0,0,6510,'2025-12-17','00:00:00',4237,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7193,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 16:48:00','reception','2025-12-17 16:48:22',0),(19235,2526,0,0,6511,'2025-12-17','00:00:00',1479,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7194,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 16:49:22','reception','2025-12-17 16:49:37',0),(19236,2526,0,0,6512,'2025-12-17','00:00:00',326,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 16:51:48','reception','2025-12-17 04:21:48',0),(19237,2526,0,0,6346,'2025-12-17','10:40:00',4056,297,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','RC03','','',0,'','',0,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 04:23:30','riya','2025-12-20 10:34:33',0),(19238,2526,0,0,6346,'2025-12-17','10:40:00',4056,297,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',0,'','',0,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 04:23:30','riya','2025-12-20 10:34:33',0),(19239,2526,0,0,6346,'2025-12-17','10:40:00',4056,297,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',0,'','',0,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 04:23:30','riya','2025-12-20 10:34:33',0),(19240,2526,0,0,6346,'2025-12-17','10:40:00',4056,297,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',0,'','',0,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 04:23:30','riya','2025-12-20 10:34:33',0),(19241,2526,0,0,6346,'2025-12-17','10:40:00',4056,297,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',0,'','',0,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 04:23:30','riya','2025-12-20 10:34:33',0),(19242,2526,0,0,6513,'2025-12-17','00:00:00',745,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 16:55:29','reception','2025-12-17 04:25:29',0),(19243,2526,0,0,6514,'2025-12-17','00:00:00',888,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7195,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 17:00:05','drashti','2025-12-17 17:00:35',0),(19244,2526,0,0,6515,'2025-12-17','00:00:00',4238,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7196,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 17:03:44','reception','2025-12-17 17:04:51',0),(19245,2526,0,0,6516,'2025-12-17','00:00:00',4239,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7197,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 17:11:03','reception','2025-12-17 17:11:31',0),(19246,2526,0,0,6517,'2025-12-17','00:00:00',4240,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7198,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 17:19:35','reception','2025-12-17 17:20:04',0),(19247,2526,0,0,6518,'2025-12-17','00:00:00',3753,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7199,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 17:22:55','drashti','2025-12-17 17:23:14',0),(19248,2526,0,0,6519,'2025-12-17','00:00:00',4241,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7200,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 17:23:44','reception','2025-12-17 17:24:12',0),(19249,2526,0,0,6166,'2025-12-14','17:23:00',4000,286,'WPRC','WPRC0078','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 17:27:17','vishal','2025-12-17 17:30:43',0),(19250,2526,0,0,6166,'2025-12-15','17:24:00',4000,286,'WPRC','WPRC0124','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 17:27:17','vishal','2025-12-17 17:30:43',0),(19251,2526,0,0,6166,'2025-12-16','17:25:00',4000,286,'XRY','XRY0045','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','D',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 17:27:17','','0000-00-00 00:00:00',0),(19252,2526,0,0,6166,'2025-12-16','17:25:00',4000,286,'USG','USG0091','H','N',1.00,1800,1800,'P',0,0,0.00,0.00,1800.00,1800,9999,0,0,'',0,0,'','','','','',2526,'H','D',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 17:27:17','','0000-00-00 00:00:00',0),(19253,2526,0,0,6166,'2025-12-16','17:26:00',4000,286,'WPRC','WPRC0083','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,6,0,0,'',0,0,'','','','','',2526,'H','D',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 17:27:17','vishal','2025-12-17 17:30:43',0),(19254,2526,0,0,6166,'2025-12-17','17:26:00',4000,286,'WPRC','WPRC0083','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,6,0,0,'',0,0,'','','','','',2526,'H','D',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 17:27:17','vishal','2025-12-17 17:30:43',0),(19255,2526,0,0,6166,'2025-12-16','17:30:00',4000,286,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','D',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 17:30:43','','0000-00-00 00:00:00',0),(19256,2526,0,0,6520,'2025-12-17','00:00:00',4242,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7201,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-17 17:32:11','priyanshi','2025-12-17 17:32:48',0),(19257,2526,0,0,6521,'2025-12-17','00:00:00',4243,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7202,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 17:33:33','reception','2025-12-17 17:34:02',0),(19258,2526,0,0,6522,'2025-12-17','00:00:00',2333,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7203,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 17:35:20','reception','2025-12-17 17:35:31',0),(19259,2526,0,0,6523,'2025-12-17','00:00:00',1811,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7204,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 17:40:15','reception','2025-12-17 17:40:47',0),(19260,2526,0,0,6524,'2025-12-17','00:00:00',2775,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7205,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 17:41:19','reception','2025-12-17 17:41:34',0),(19261,2526,0,0,6525,'2025-12-17','00:00:00',4244,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7206,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-17 17:41:41','priyanshi','2025-12-17 17:42:40',0),(19262,2526,0,0,6526,'2025-12-17','00:00:00',4245,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7207,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 17:48:59','reception','2025-12-17 17:49:21',0),(19263,2526,0,0,6508,'2025-12-17','17:52:36',3327,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7209,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 17:52:36','reception','2025-12-17 17:52:36',0),(19264,2526,0,0,6527,'2025-12-17','00:00:00',4246,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7210,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 17:59:58','reception','2025-12-17 18:49:37',0),(19265,2526,0,0,6528,'2025-12-17','00:00:00',4247,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7211,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 18:02:43','reception','2025-12-17 18:03:02',0),(19266,2526,0,0,6529,'2025-12-17','00:00:00',2732,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7212,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 18:03:25','drashti','2025-12-17 18:04:16',0),(19267,2526,0,0,6530,'2025-12-17','00:00:00',4248,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7213,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 18:06:02','drashti','2025-12-17 18:07:07',0),(19268,2526,0,0,6531,'2025-12-17','00:00:00',4249,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7214,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 18:07:26','reception','2025-12-17 18:09:33',0),(19269,2526,0,0,6532,'2025-12-17','00:00:00',4250,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7215,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-17 18:09:53','priyanshi','2025-12-17 18:10:24',0),(19270,2526,0,0,6533,'2025-12-17','00:00:00',4251,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7216,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 18:10:03','drashti','2025-12-17 18:10:45',0),(19271,2526,0,0,6534,'2025-12-17','00:00:00',4252,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7217,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 18:13:56','drashti','2025-12-17 18:14:49',0),(19272,2526,0,0,6536,'2025-12-17','00:00:00',4253,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7218,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 18:15:33','reception','2025-12-17 18:15:44',0),(19273,2526,0,0,6535,'2025-12-17','18:15:46',3704,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7219,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-17 18:15:46','priyanshi','2025-12-17 18:15:46',0),(19274,2526,0,0,6537,'2025-12-17','00:00:00',2580,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7220,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 18:15:51','drashti','2025-12-17 18:16:15',0),(19275,2526,0,0,6538,'2025-12-17','18:17:51',3720,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7221,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-17 18:17:51','priyanshi','2025-12-17 18:17:51',0),(19276,2526,0,0,6539,'2025-12-17','00:00:00',3052,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7222,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 18:17:55','drashti','2025-12-17 18:18:24',0),(19277,2526,0,0,6540,'2025-12-17','00:00:00',4254,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7223,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 18:19:43','drashti','2025-12-17 18:20:00',0),(19278,2526,0,0,6521,'2025-12-17','18:20:11',4243,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7224,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 18:20:11','reception','2025-12-17 18:20:11',0),(19279,2526,0,0,6521,'2025-12-17','18:20:11',4243,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7224,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 18:20:11','reception','2025-12-17 18:20:11',0),(19280,2526,0,0,6521,'2025-12-17','18:20:11',4243,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7224,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 18:20:11','reception','2025-12-17 18:20:11',0),(19281,2526,0,0,6541,'2025-12-17','00:00:00',4255,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7226,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 18:21:34','shweta','2025-12-17 18:22:34',0),(19282,2526,0,0,6516,'2025-12-17','18:22:19',4239,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',7225,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 18:22:19','drashti','2025-12-17 18:22:19',0),(19283,2526,0,0,6517,'2025-12-17','18:23:14',4240,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7227,1,328,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 18:23:14','reception','2025-12-17 18:23:14',0),(19284,2526,0,0,6517,'2025-12-17','18:23:14',4240,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7227,2,372,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 18:23:14','reception','2025-12-17 18:23:14',0),(19285,2526,0,0,6542,'2025-12-17','18:27:13',2738,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',7228,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-17 18:27:13','janvi','2025-12-17 18:27:13',0),(19286,2526,0,0,6543,'2025-12-17','00:00:00',4256,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7229,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 18:27:23','drashti','2025-12-17 18:28:25',0),(19287,2526,0,0,6544,'2025-12-17','18:29:31',3605,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',7230,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-17 18:29:31','janvi','2025-12-17 18:29:31',0),(19288,2526,0,0,6545,'2025-12-17','00:00:00',4257,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7231,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 18:30:02','reception','2025-12-17 18:30:32',0),(19289,2526,0,0,6546,'2025-12-17','00:00:00',4258,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7232,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 18:33:19','reception','2025-12-17 19:46:24',0),(19290,2526,0,0,6547,'2025-12-17','00:00:00',3429,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-17 18:33:44','janvi','2025-12-17 06:03:44',0),(19291,2526,0,0,6504,'2025-12-17','18:34:34',280,0,'OTCG','OTCG0033','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','O',7233,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 18:34:34','drashti','2025-12-17 18:34:34',0),(19292,2526,0,0,6526,'2025-12-17','18:36:07',4245,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7234,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 18:36:07','reception','2025-12-17 18:36:07',0),(19293,2526,0,0,6526,'2025-12-17','18:36:07',4245,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7234,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 18:36:07','reception','2025-12-17 18:36:07',0),(19294,2526,0,0,6526,'2025-12-17','18:36:07',4245,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7234,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 18:36:07','reception','2025-12-17 18:36:07',0),(19295,2526,0,0,6548,'2025-12-17','18:36:40',3305,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',7235,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-17 18:36:40','janvi','2025-12-17 18:36:40',0),(19296,2526,0,0,6549,'2025-12-17','00:00:00',1497,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7236,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 18:38:08','reception','2025-12-17 19:56:19',0),(19297,2526,0,0,6550,'2025-12-17','18:40:30',4003,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7237,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 18:40:30','drashti','2025-12-17 18:40:30',0),(19298,2526,0,0,6551,'2025-12-17','00:00:00',4259,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7239,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 18:42:22','drashti','2025-12-17 18:44:01',0),(19299,2526,0,0,6552,'2025-12-17','00:00:00',3741,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7238,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-17 18:43:17','janvi','2025-12-17 18:43:55',0),(19300,2526,0,0,6553,'2025-12-17','00:00:00',127,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7240,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 18:48:08','drashti','2025-12-17 18:48:41',0),(19301,2526,0,0,6554,'2025-12-17','00:00:00',696,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7242,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-17 18:48:58','janvi','2025-12-17 18:50:13',0),(19302,2526,0,0,6555,'2025-12-17','00:00:00',1976,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-17 18:50:04','janvi','2025-12-17 06:20:04',0),(19303,2526,0,0,6527,'2025-12-17','18:50:38',4246,0,'PKG','CASE','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7243,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 18:50:38','reception','2025-12-17 18:50:38',0),(19304,2526,0,0,6556,'2025-12-17','00:00:00',4260,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7244,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 18:51:43','drashti','2025-12-17 18:53:14',0),(19305,2526,0,0,6557,'2025-12-17','00:00:00',3715,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7245,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 18:54:33','shweta','2025-12-17 18:56:04',0),(19306,2526,0,0,6558,'2025-12-17','00:00:00',3486,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-17 18:55:02','janvi','2025-12-17 06:25:02',0),(19307,2526,0,0,6559,'2025-12-17','00:00:00',4261,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7247,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 18:56:05','drashti','2025-12-17 18:57:53',0),(19308,2526,0,0,6560,'2025-12-17','00:00:00',4262,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7246,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-17 18:57:21','janvi','2025-12-17 18:57:36',0),(19309,2526,0,0,6448,'2025-12-16','18:57:00',0,300,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',293,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 18:58:02','','0000-00-00 00:00:00',0),(19310,2526,0,0,6561,'2025-12-17','19:00:00',3319,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7248,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-17 19:00:00','janvi','2025-12-17 19:00:00',0),(19311,2526,0,0,6550,'2025-12-17','19:01:02',4003,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',7249,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 19:01:02','drashti','2025-12-17 19:01:02',0),(19312,2526,0,0,6563,'2025-12-17','00:00:00',2794,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7250,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 19:05:19','reception','2025-12-17 19:05:28',0),(19313,2526,0,0,6562,'2025-12-17','19:05:47',3486,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7251,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-17 19:05:47','janvi','2025-12-17 19:05:47',0),(19314,2526,0,0,6564,'2025-12-17','00:00:00',4263,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7252,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-17 19:07:15','janvi','2025-12-17 19:08:46',0),(19315,2526,0,0,6565,'2025-12-17','00:00:00',3612,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 19:09:01','reception','2025-12-17 06:39:01',0),(19316,2526,0,0,6566,'2025-12-17','00:00:00',940,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7253,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 19:13:06','drashti','2025-12-17 19:13:28',0),(19317,2526,0,0,6567,'2025-12-17','00:00:00',4264,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7254,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 19:15:55','drashti','2025-12-17 19:17:16',0),(19318,2526,0,0,6568,'2025-12-17','19:18:33',3901,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',7255,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 19:18:33','drashti','2025-12-17 19:18:33',0),(19319,2526,0,0,4017,'2025-12-17','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','RC07','','',0,'','',0,273,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 06:48:43','vishal','2025-12-18 17:35:55',0),(19320,2526,0,0,4017,'2025-12-17','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,282,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 06:48:43','vishal','2025-12-21 11:20:51',0),(19321,2526,0,0,4017,'2025-12-17','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,283,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 06:48:44','vishal','2025-12-18 17:37:17',0),(19322,2526,0,0,4017,'2025-12-17','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,284,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 06:48:44','vishal','2025-12-18 17:37:17',0),(19323,2526,0,0,4017,'2025-12-17','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,285,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 06:48:44','vishal','2025-12-18 17:37:17',0),(19324,2526,0,0,6165,'2025-12-17','12:50:00',0,285,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','RC04','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 06:48:44','vishal','2025-12-18 19:40:42',0),(19325,2526,0,0,6165,'2025-12-17','12:50:00',0,285,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 06:48:44','vishal','2025-12-18 19:40:42',0),(19326,2526,0,0,6165,'2025-12-17','12:50:00',0,285,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 06:48:44','vishal','2025-12-18 19:40:42',0),(19327,2526,0,0,6165,'2025-12-17','12:50:00',0,285,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','407','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 06:48:44','vishal','2025-12-18 19:40:42',0),(19328,2526,0,0,6165,'2025-12-17','12:50:00',0,285,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 06:48:45','vishal','2025-12-18 19:40:42',0),(19329,2526,0,0,6397,'2025-12-17','15:30:00',0,298,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','RC07','','',2526,'H','I',304,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 06:48:45','vishal','2025-12-18 17:39:37',0),(19330,2526,0,0,6397,'2025-12-17','15:30:00',0,298,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',304,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 06:48:45','vishal','2025-12-18 17:39:37',0),(19331,2526,0,0,6397,'2025-12-17','15:30:00',0,298,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',304,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 06:48:45','vishal','2025-12-18 17:39:37',0),(19332,2526,0,0,6397,'2025-12-17','15:30:00',0,298,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','207','','','',2526,'H','I',304,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 06:48:45','riya','2025-12-20 17:42:13',0),(19333,2526,0,0,6397,'2025-12-17','15:30:00',0,298,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','207','','','',2526,'H','I',304,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 06:48:45','riya','2025-12-20 17:42:13',0),(19334,2526,0,0,6569,'2025-12-17','00:00:00',4265,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7256,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-17 19:28:21','janvi','2025-12-17 19:32:06',0),(19335,2526,0,0,6570,'2025-12-17','00:00:00',3143,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 19:37:54','shweta','2025-12-17 07:07:54',0),(19336,2526,0,0,6571,'2025-12-17','00:00:00',4266,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7258,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 19:38:53','drashti','2025-12-17 19:40:41',0),(19337,2526,0,0,6555,'2025-12-17','19:39:52',1976,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7257,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-17 19:39:52','janvi','2025-12-17 19:39:52',0),(19338,2526,0,0,6546,'2025-12-17','19:47:34',4258,0,'PKG','CASE','H','N',1.00,700,700,'P',0,0,0.00,0.00,700.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7260,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 19:47:34','reception','2025-12-17 19:47:34',0),(19339,2526,0,0,6572,'2025-12-17','00:00:00',4267,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7261,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 19:50:47','drashti','2025-12-17 19:51:09',0),(19340,2526,0,0,6541,'2025-12-17','19:54:57',4255,0,'OPWD','OPWD0023','H','N',1.00,12000,12000,'P',0,0,0.00,0.00,12000.00,12000,6,0,0,'',0,0,'','','','','',2526,'H','O',7262,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-17 19:54:57','shweta','2025-12-17 19:54:57',0),(19341,2526,0,0,6549,'2025-12-17','19:57:17',1497,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7264,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 19:57:17','reception','2025-12-17 19:57:17',0),(19342,2526,0,0,6573,'2025-12-17','00:00:00',4268,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7265,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-17 19:59:09','janvi','2025-12-17 20:00:08',0),(19343,2526,0,0,6574,'2025-12-17','00:00:00',4269,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7266,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-17 20:11:55','reception','2025-12-17 20:12:16',0),(19344,2526,0,0,6575,'2025-12-17','20:20:05',1288,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7267,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-17 20:20:05','drashti','2025-12-17 20:20:05',0),(19345,2526,0,0,6576,'2025-12-17','20:30:00',4269,302,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',301,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 20:35:24','riya','2025-12-20 13:40:33',0),(19346,2526,0,0,6576,'2025-12-17','20:30:00',4269,302,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',301,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 20:35:24','riya','2025-12-20 13:40:33',0),(19347,2526,0,0,6576,'2025-12-17','20:30:00',4269,302,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','RC03','','',2526,'H','I',301,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 08:05:24','riya','2025-12-20 13:40:33',0),(19348,2526,0,0,6576,'2025-12-17','20:30:00',4269,302,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',301,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 08:05:24','riya','2025-12-20 13:40:33',0),(19349,2526,0,0,6576,'2025-12-17','20:30:00',4269,302,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',301,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 08:05:24','riya','2025-12-20 13:40:33',0),(19350,2526,0,0,6576,'2025-12-17','20:30:00',4269,302,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 08:05:24','riya','2025-12-20 13:26:58',0),(19351,2526,0,0,6576,'2025-12-17','20:30:00',4269,302,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-17 08:05:24','riya','2025-12-20 13:26:58',0),(19352,2526,0,0,6577,'2025-12-18','00:00:00',4270,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 08:47:33','reception','2025-12-17 20:17:33',0),(19353,2526,0,0,6577,'2025-12-18','08:48:01',4270,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','O',7268,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 08:48:01','reception','2025-12-18 08:48:01',0),(19354,2526,0,0,6578,'2025-12-18','00:00:00',4271,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 08:50:55','reception','2025-12-17 20:20:55',0),(19355,2526,0,0,6578,'2025-12-18','08:51:16',4271,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7269,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 08:51:16','reception','2025-12-18 08:51:16',0),(19356,2526,0,0,6579,'2025-12-18','00:00:00',4272,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 08:52:22','reception','2025-12-17 20:22:22',0),(19357,2526,0,0,6579,'2025-12-18','08:53:51',4272,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',7270,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 08:53:51','reception','2025-12-18 08:53:51',0),(19358,2526,0,0,6579,'2025-12-18','08:53:51',4272,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7270,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 08:53:51','reception','2025-12-18 08:53:51',0),(19359,2526,0,0,6579,'2025-12-18','08:53:51',4272,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',7270,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 08:53:51','reception','2025-12-18 08:53:51',0),(19360,2526,0,0,6580,'2025-12-18','00:00:00',4273,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7271,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 09:49:47','drashti','2025-12-18 09:50:30',0),(19361,2526,0,0,6581,'2025-12-18','00:00:00',4274,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7292,1,200,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 09:56:04','drashti','2025-12-18 11:05:44',0),(19362,2526,0,0,6582,'2025-12-18','00:00:00',3225,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7272,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 09:57:38','reception','2025-12-18 09:57:53',0),(19363,2526,0,0,6583,'2025-12-18','00:00:00',3274,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7273,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 10:08:09','reception','2025-12-18 10:08:51',0),(19364,2526,0,0,6584,'2025-12-18','00:00:00',3691,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7274,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 10:10:06','reception','2025-12-18 10:11:22',0),(19365,2526,0,0,6585,'2025-12-18','00:00:00',315,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7275,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 10:14:39','reception','2025-12-18 10:15:03',0),(19366,2526,0,0,6586,'2025-12-18','00:00:00',3209,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7276,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 10:26:53','reception','2025-12-18 10:27:53',0),(19367,2526,0,0,6587,'2025-12-18','00:00:00',3737,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7277,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 10:30:48','reception','2025-12-18 10:31:15',0),(19368,2526,0,0,6588,'2025-12-18','00:00:00',4275,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7278,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-18 10:33:57','priyanshi','2025-12-18 14:09:00',0),(19369,2526,0,0,6588,'2025-12-18','10:37:23',4275,0,'OPWD','OPWD0023','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',7278,2,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-18 10:37:23','priyanshi','2025-12-18 14:09:00',0),(19370,2526,0,0,6589,'2025-12-18','00:00:00',4276,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7279,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 10:40:11','reception','2025-12-18 10:40:36',0),(19371,2526,0,0,6590,'2025-12-17','00:00:00',4277,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-18 10:40:14','shweta','2025-12-17 22:10:14',0),(19372,2526,0,0,6591,'2025-12-18','00:00:00',4278,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7280,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 10:43:57','reception','2025-12-18 10:44:13',0),(19373,2526,0,0,6592,'2025-12-18','00:00:00',4279,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7281,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-18 10:44:50','janvi','2025-12-18 10:46:11',0),(19374,2526,0,0,6593,'2025-12-18','00:00:00',1373,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7282,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 10:46:19','reception','2025-12-18 10:46:30',0),(19375,2526,0,0,6594,'2025-12-18','00:00:00',4280,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7284,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 10:47:43','drashti','2025-12-18 10:48:52',0),(19376,2526,0,0,6595,'2025-12-18','00:00:00',4281,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7283,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 10:48:03','reception','2025-12-18 10:48:37',0),(19377,2526,0,0,6596,'2025-12-18','00:00:00',3679,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7285,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 10:49:28','drashti','2025-12-18 10:49:57',0),(19378,2526,0,0,6598,'2025-12-18','00:00:00',4282,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7287,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 10:51:54','drashti','2025-12-18 10:52:37',0),(19379,2526,0,0,6597,'2025-12-18','10:52:04',4129,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7286,1,0,0,0,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-18 10:52:04','janvi','2025-12-18 11:01:15',0),(19380,2526,0,0,6599,'2025-12-18','00:00:00',4283,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7288,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 10:55:44','reception','2025-12-18 10:55:59',0),(19381,2526,0,0,6600,'2025-12-18','00:00:00',4284,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7289,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 11:00:26','drashti','2025-12-18 11:01:04',0),(19382,2526,0,0,6601,'2025-12-18','00:00:00',4285,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7291,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 11:02:16','reception','2025-12-18 11:02:43',0),(19383,2526,0,0,6602,'2025-12-18','00:00:00',1790,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7293,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 11:06:29','reception','2025-12-18 11:06:46',0),(19384,2526,0,0,6605,'2025-12-18','00:00:00',2092,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7294,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-18 11:08:11','janvi','2025-12-18 11:08:57',0),(19385,2526,0,0,6606,'2025-12-18','00:00:00',4286,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7295,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 11:10:44','drashti','2025-12-18 11:12:14',0),(19386,2526,0,0,6607,'2025-12-18','00:00:00',4287,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7296,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 11:12:13','reception','2025-12-18 11:12:35',0),(19387,2526,0,0,6608,'2025-12-18','00:00:00',3079,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7297,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 11:13:30','reception','2025-12-18 11:13:41',0),(19388,2526,0,0,6609,'2025-12-18','00:00:00',4288,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7298,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-18 11:13:33','janvi','2025-12-18 11:13:57',0),(19389,2526,0,0,6610,'2025-12-17','23:16:00',4268,303,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',294,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-18 11:18:17','vishal','2025-12-18 20:26:33',0),(19390,2526,0,0,6610,'2025-12-17','23:16:00',4268,303,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',294,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-18 11:18:17','vishal','2025-12-18 20:26:33',0),(19391,2526,0,0,6610,'2025-12-17','23:16:00',4268,303,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','RC03','','',2526,'H','I',294,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-17 22:48:18','vishal','2025-12-18 20:26:33',0),(19392,2526,0,0,6610,'2025-12-17','23:16:00',4268,303,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',294,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-17 22:48:18','vishal','2025-12-18 20:26:33',0),(19393,2526,0,0,6610,'2025-12-17','23:16:00',4268,303,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',294,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-17 22:48:18','vishal','2025-12-18 20:26:33',0),(19394,2526,0,0,6610,'2025-12-18','23:16:00',4268,303,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',294,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-17 22:48:18','vishal','2025-12-18 20:26:33',0),(19395,2526,0,0,6610,'2025-12-18','23:16:00',4268,303,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',294,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-17 22:48:18','vishal','2025-12-18 20:27:51',0),(19396,2526,0,0,6580,'2025-12-18','11:18:51',4273,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7299,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 11:18:51','reception','2025-12-18 11:18:51',0),(19397,2526,0,0,6580,'2025-12-18','11:18:51',4273,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7299,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 11:18:51','reception','2025-12-18 11:18:51',0),(19398,2526,0,0,6580,'2025-12-18','11:18:51',4273,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7299,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 11:18:51','reception','2025-12-18 11:18:51',0),(19399,2526,0,0,6589,'2025-12-18','11:23:44',4276,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7300,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 11:23:44','reception','2025-12-18 11:23:44',0),(19400,2526,0,0,6589,'2025-12-18','11:23:44',4276,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7300,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 11:23:44','reception','2025-12-18 11:23:44',0),(19401,2526,0,0,6611,'2025-12-18','00:00:00',3154,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7301,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 11:25:08','reception','2025-12-18 11:25:41',0),(19402,2526,0,0,6612,'2025-12-18','00:00:00',4289,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7302,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 11:27:19','reception','2025-12-18 11:28:02',0),(19403,2526,0,0,6613,'2025-12-18','09:00:00',0,304,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',303,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-18 11:28:20','riya','2025-12-20 11:49:31',0),(19404,2526,0,0,6613,'2025-12-18','09:00:00',0,304,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',303,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-18 11:28:20','riya','2025-12-20 11:49:31',0),(19405,2526,0,0,6613,'2025-12-18','09:00:00',0,304,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','408','RC04','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-17 22:58:20','riya','2025-12-20 11:49:31',0),(19406,2526,0,0,6613,'2025-12-18','09:00:00',0,304,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','408','','','',2526,'H','I',303,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-17 22:58:20','riya','2025-12-20 11:50:12',0),(19407,2526,0,0,6613,'2025-12-18','09:00:00',0,304,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','408','','','',2526,'H','I',303,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-17 22:58:20','riya','2025-12-20 11:50:36',0),(19408,2526,0,0,6613,'2025-12-18','09:00:00',0,304,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','408','','','',2526,'H','I',303,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-17 22:58:20','riya','2025-12-20 11:52:49',0),(19409,2526,0,0,6613,'2025-12-18','09:00:00',0,304,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','408','','','',2526,'H','I',303,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-17 22:58:20','riya','2025-12-20 11:52:49',0),(19410,2526,0,0,6614,'2025-12-18','00:00:00',1125,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7303,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-18 11:30:27','shweta','2025-12-18 11:32:36',0),(19411,2526,0,0,6602,'2025-12-18','11:34:17',1790,0,'NEU1','NEU10018','H','N',1.00,3500,3500,'P',0,0,0.00,0.00,3500.00,3500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7304,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 11:34:17','reception','2025-12-18 11:34:17',0),(19412,2526,0,0,6615,'2025-12-18','00:00:00',4290,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7311,1,350,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-18 11:38:01','janvi','2025-12-18 11:52:34',0),(19413,2526,0,0,6616,'2025-12-18','00:00:00',4291,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7305,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 11:40:03','drashti','2025-12-18 11:40:56',0),(19414,2526,0,0,6617,'2025-12-18','00:00:00',4292,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7306,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 11:45:11','drashti','2025-12-18 11:45:29',0),(19415,2526,0,0,6618,'2025-12-18','00:00:00',3328,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7307,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-18 11:47:29','janvi','2025-12-18 11:47:51',0),(19416,2526,0,0,6619,'2025-12-18','00:00:00',4293,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7308,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-18 11:47:38','shweta','2025-12-18 11:48:06',0),(19417,2526,0,0,6620,'2025-12-18','00:00:00',4294,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7309,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 11:49:53','drashti','2025-12-18 11:50:19',0),(19418,2526,0,0,6606,'2025-12-18','11:51:01',4286,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7310,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 11:51:01','reception','2025-12-18 11:51:01',0),(19419,2526,0,0,6606,'2025-12-18','11:51:01',4286,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7310,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 11:51:01','reception','2025-12-18 11:51:01',0),(19420,2526,0,0,6621,'2025-12-18','00:00:00',2529,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7312,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-18 11:54:20','shweta','2025-12-18 11:55:27',0),(19421,2526,0,0,6622,'2025-12-18','00:00:00',3135,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7313,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 11:55:25','reception','2025-12-18 11:55:50',0),(19422,2526,0,0,6623,'2025-12-18','00:00:00',4295,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7314,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-18 11:56:39','janvi','2025-12-18 11:57:06',0),(19423,2526,0,0,6624,'2025-12-18','11:57:20',4032,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',7315,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 11:57:20','reception','2025-12-18 11:57:20',0),(19424,2526,0,0,6625,'2025-12-18','11:59:48',3305,0,'OTCG','OTCG0003','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',7316,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 11:59:48','drashti','2025-12-18 11:59:48',0),(19425,2526,0,0,6626,'2025-12-18','00:00:00',4296,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7323,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-18 12:01:30','priyanshi','2025-12-18 12:25:22',0),(19426,2526,0,0,6619,'2025-12-18','12:04:12',4293,0,'XRY','XRY0151','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7317,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-18 12:04:12','shweta','2025-12-18 12:04:12',0),(19427,2526,0,0,6601,'2025-12-18','12:12:20',4285,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7318,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 12:12:20','reception','2025-12-18 12:12:20',0),(19428,2526,0,0,6601,'2025-12-18','12:12:20',4285,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7318,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 12:12:20','reception','2025-12-18 12:12:20',0),(19429,2526,0,0,6595,'2025-12-18','12:17:23',4281,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7319,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 12:17:23','reception','2025-12-18 12:17:23',0),(19430,2526,0,0,6627,'2025-12-18','12:20:20',4277,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7320,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-18 12:20:20','priyanshi','2025-12-18 12:20:20',0),(19431,2526,0,0,6628,'2025-12-18','00:00:00',4297,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7321,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-18 12:21:39','janvi','2025-12-18 12:21:52',0),(19432,2526,0,0,6629,'2025-12-18','00:00:00',4298,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7322,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 12:21:43','drashti','2025-12-18 12:22:23',0),(19433,2526,0,0,6626,'2025-12-18','12:26:34',4296,0,'XRY','XRY0169','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7324,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-18 12:26:34','priyanshi','2025-12-18 12:26:34',0),(19434,2526,0,0,6630,'2025-12-18','12:27:04',3310,0,'PKG','CASE','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7325,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-18 12:27:04','janvi','2025-12-18 12:27:04',0),(19435,2526,0,0,6631,'2025-12-18','00:00:00',4299,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7326,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 12:28:01','reception','2025-12-18 12:28:19',0),(19436,2526,0,0,6632,'2025-12-18','00:00:00',4300,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7327,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 12:29:20','reception','2025-12-18 12:29:36',0),(19437,2526,0,0,6633,'2025-12-18','00:00:00',4301,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7328,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-18 12:36:06','janvi','2025-12-18 12:36:57',0),(19438,2526,0,0,6634,'2025-12-18','00:00:00',4302,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7329,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 12:41:52','drashti','2025-12-18 12:42:37',0),(19439,2526,0,0,6635,'2025-12-18','00:00:00',4303,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7330,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 12:43:15','reception','2025-12-18 12:43:27',0),(19440,2526,0,0,6636,'2025-12-18','00:00:00',1653,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7331,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 12:51:44','reception','2025-12-18 12:53:10',0),(19441,2526,0,0,6637,'2025-12-18','00:00:00',4304,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7332,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-18 13:45:39','shweta','2025-12-18 13:46:23',0),(19442,2526,0,0,6588,'2025-12-18','14:11:07',4275,0,'PKG','CASE','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7334,1,308,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-18 14:11:07','priyanshi','2025-12-18 14:11:07',0),(19443,2526,0,0,6588,'2025-12-18','14:11:07',4275,0,'OPWD','OPWD0023','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',7334,2,192,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-18 14:11:07','priyanshi','2025-12-18 14:11:07',0),(19444,2526,0,0,6637,'2025-12-18','14:24:34',4304,0,'OPWD','OPWD0023','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',7335,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-18 14:24:34','priyanshi','2025-12-18 14:24:34',0),(19445,2526,0,0,6637,'2025-12-18','14:24:34',4304,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,7,0,0,'',0,0,'','','','','',2526,'H','O',7335,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-18 14:24:34','priyanshi','2025-12-18 14:24:34',0),(19446,2526,0,0,6638,'2025-12-18','00:00:00',4305,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-18 14:44:17','priyanshi','2025-12-18 02:14:17',0),(19447,2526,0,0,6638,'2025-12-18','14:45:54',4305,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',7336,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-18 14:45:54','priyanshi','2025-12-18 14:45:54',0),(19448,2526,0,0,6638,'2025-12-18','14:45:54',4305,0,'OPWD','OPWD0015','H','N',1.00,250,250,'P',0,0,0.00,0.00,250.00,250,5,0,0,'',0,0,'','','','','',2526,'H','O',7336,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-18 14:45:54','priyanshi','2025-12-18 14:45:54',0),(19449,2526,0,0,6638,'2025-12-18','14:45:54',4305,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',7336,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-18 14:45:54','priyanshi','2025-12-18 14:45:54',0),(19450,2526,0,0,6623,'2025-12-18','14:56:02',4295,0,'OPWD','OPWD0036','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',7337,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-18 14:56:02','priyanshi','2025-12-18 14:56:02',0),(19451,2526,0,0,6639,'2025-12-18','00:00:00',4306,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7339,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-18 16:23:35','priyanshi','2025-12-18 16:25:41',0),(19452,2526,0,0,6640,'2025-12-18','00:00:00',4307,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7338,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 16:23:40','reception','2025-12-18 16:24:10',0),(19453,2526,0,0,6641,'2025-12-18','00:00:00',4308,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7340,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 16:26:51','reception','2025-12-18 16:27:32',0),(19454,2526,0,0,6642,'2025-12-18','00:00:00',2623,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7341,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 16:43:55','reception','2025-12-18 16:44:13',0),(19455,2526,0,0,6639,'2025-12-18','17:09:31',4306,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7342,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 17:09:31','reception','2025-12-18 17:09:31',0),(19456,2526,0,0,6643,'2025-12-18','00:00:00',3682,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7343,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 17:10:41','reception','2025-12-18 17:11:04',0),(19457,2526,0,0,6644,'2025-12-18','00:00:00',3739,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7344,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 17:11:30','reception','2025-12-18 17:11:58',0),(19458,2526,0,0,6645,'2025-12-18','00:00:00',3900,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7345,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 17:16:59','drashti','2025-12-18 17:17:26',0),(19459,2526,0,0,6646,'2025-12-18','00:00:00',4309,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7346,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 17:18:29','reception','2025-12-18 17:18:54',0),(19460,2526,0,0,6641,'2025-12-18','17:21:00',4308,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7347,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 17:21:00','reception','2025-12-18 17:21:00',0),(19461,2526,0,0,6641,'2025-12-18','17:21:00',4308,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7347,2,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 17:21:00','reception','2025-12-18 17:21:00',0),(19462,2526,0,0,6641,'2025-12-18','17:21:00',4308,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7347,3,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 17:21:00','reception','2025-12-18 17:21:00',0),(19463,2526,0,0,6641,'2025-12-18','17:21:00',4308,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7347,4,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 17:21:00','reception','2025-12-18 17:21:00',0),(19464,2526,0,0,6647,'2025-12-18','00:00:00',4310,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7349,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-18 17:22:50','manshi','2025-12-18 17:23:33',0),(19465,2526,0,0,6648,'2025-12-18','00:00:00',2589,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7348,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 17:23:02','reception','2025-12-18 18:00:28',0),(19466,2526,0,0,6649,'2025-12-18','00:00:00',2936,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 17:27:07','reception','2025-12-18 04:57:07',0),(19467,2526,0,0,4017,'2025-12-18','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','RC07','','',0,'','',0,293,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 04:59:03','vishal','2025-12-18 17:37:17',0),(19468,2526,0,0,4017,'2025-12-18','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,294,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 04:59:03','vishal','2025-12-18 17:37:17',0),(19469,2526,0,0,4017,'2025-12-18','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,295,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 04:59:03','vishal','2025-12-18 17:37:17',0),(19470,2526,0,0,4017,'2025-12-18','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,296,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 04:59:03','vishal','2025-12-18 17:37:17',0),(19471,2526,0,0,4017,'2025-12-18','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,297,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 04:59:03','vishal','2025-12-18 17:37:17',0),(19472,2526,0,0,6650,'2025-12-18','00:00:00',883,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7350,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 17:32:24','reception','2025-12-18 17:32:40',0),(19473,2526,0,0,4017,'2025-12-15','17:29:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,283,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','','0000-00-00 00:00:00',0),(19474,2526,0,0,4017,'2025-12-16','17:29:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,276,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','vishal','2025-12-18 17:37:17',0),(19475,2526,0,0,4017,'2025-12-17','17:29:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,285,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','','0000-00-00 00:00:00',0),(19476,2526,0,0,4017,'2025-12-18','17:29:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,286,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','','0000-00-00 00:00:00',0),(19477,2526,0,0,4017,'2025-12-15','17:30:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,287,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','','0000-00-00 00:00:00',0),(19478,2526,0,0,4017,'2025-12-16','17:30:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,277,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','vishal','2025-12-18 17:37:17',0),(19479,2526,0,0,4017,'2025-12-17','17:30:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,289,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','','0000-00-00 00:00:00',0),(19480,2526,0,0,4017,'2025-12-18','17:30:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,290,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','','0000-00-00 00:00:00',0),(19481,2526,0,0,4017,'2025-12-15','17:30:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,291,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','','0000-00-00 00:00:00',0),(19482,2526,0,0,4017,'2025-12-16','17:30:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,278,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','vishal','2025-12-18 17:37:17',0),(19483,2526,0,0,4017,'2025-12-17','17:30:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,293,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','','0000-00-00 00:00:00',0),(19484,2526,0,0,4017,'2025-12-18','17:30:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,294,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','','0000-00-00 00:00:00',0),(19485,2526,0,0,4017,'2025-12-17','17:31:00',0,187,'WPRC','WPRC0118','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,295,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','','0000-00-00 00:00:00',0),(19486,2526,0,0,4017,'2025-12-18','17:31:00',0,187,'WPRC','WPRC0118','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,296,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','','0000-00-00 00:00:00',0),(19487,2526,0,0,4017,'2025-12-17','17:32:00',0,187,'WPRC','WPRC0087','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,297,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','','0000-00-00 00:00:00',0),(19488,2526,0,0,4017,'2025-12-18','17:32:00',0,187,'WPRC','WPRC0087','H','N',3.00,500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,298,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','','0000-00-00 00:00:00',0),(19489,2526,0,0,4017,'2025-12-17','17:33:00',0,187,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,299,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','','0000-00-00 00:00:00',0),(19490,2526,0,0,4017,'2025-12-18','17:33:00',0,187,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,300,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','','0000-00-00 00:00:00',0),(19491,2526,0,0,4017,'2025-12-16','17:33:00',0,187,'WPRC','WPRC0111','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,4,0,0,'',0,0,'','','','','',0,'','',0,279,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','vishal','2025-12-18 17:37:17',0),(19492,2526,0,0,4017,'2025-12-16','17:34:00',0,187,'WPRC','WPRC0097','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',0,'','',0,280,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','vishal','2025-12-18 17:37:17',0),(19493,2526,0,0,4017,'2025-12-17','17:34:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,303,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','','0000-00-00 00:00:00',0),(19494,2526,0,0,4017,'2025-12-18','17:34:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,304,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','','0000-00-00 00:00:00',0),(19495,2526,0,0,4017,'2025-12-18','17:35:00',0,187,'USG','USG0092','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,305,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:35:55','','0000-00-00 00:00:00',0),(19496,2526,0,0,6651,'2025-12-18','17:37:30',4064,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7351,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 17:37:30','drashti','2025-12-18 17:37:30',0),(19497,2526,0,0,4017,'2025-12-18','17:37:00',0,187,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',0,'','',0,306,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:38:33','','0000-00-00 00:00:00',0),(19498,2526,0,0,4017,'2025-12-18','17:38:00',0,187,'DRC','DRC0020','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,79,0,0,'',0,0,'','','','','',0,'','',0,307,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:38:33','vishal','2025-12-21 11:20:51',0),(19499,2526,0,0,6397,'2025-12-18','15:30:00',0,298,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','RC07','','',0,'','',0,13,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:09:06','vishal','2025-12-18 17:43:26',0),(19500,2526,0,0,6397,'2025-12-18','15:30:00',0,298,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',0,'','',0,14,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:09:06','vishal','2025-12-18 17:43:26',0),(19501,2526,0,0,6397,'2025-12-18','15:30:00',0,298,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',0,'','',0,15,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:09:06','vishal','2025-12-18 17:43:26',0),(19502,2526,0,0,6397,'2025-12-18','15:30:00',0,298,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','207','','','',2526,'H','I',304,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:09:06','riya','2025-12-20 17:42:13',0),(19503,2526,0,0,6397,'2025-12-18','15:30:00',0,298,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','207','','','',2526,'H','I',304,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:09:06','riya','2025-12-20 17:42:13',0),(19504,2526,0,0,6652,'2025-12-18','17:39:27',3254,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7352,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 17:39:27','drashti','2025-12-18 17:39:27',0),(19505,2526,0,0,6653,'2025-12-18','00:00:00',4311,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7353,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 17:40:38','reception','2025-12-18 17:41:08',0),(19506,2526,0,0,6654,'2025-12-18','00:00:00',3053,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7354,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 17:41:08','drashti','2025-12-18 17:41:28',0),(19507,2526,0,0,6397,'2025-12-18','17:42:00',0,298,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','','','','',2526,'H','I',304,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:43:26','','0000-00-00 00:00:00',0),(19508,2526,0,0,6397,'2025-12-18','17:43:00',0,298,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',304,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:43:26','','0000-00-00 00:00:00',0),(19509,2526,0,0,6397,'2025-12-18','17:43:00',0,298,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',304,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 17:43:26','','0000-00-00 00:00:00',0),(19510,2526,0,0,6655,'2025-12-18','00:00:00',4312,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7355,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-18 17:44:57','manshi','2025-12-18 17:46:18',0),(19511,2526,0,0,6656,'2025-12-18','00:00:00',4313,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7356,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 17:46:38','reception','2025-12-18 17:47:15',0),(19512,2526,0,0,6657,'2025-12-18','00:00:00',2603,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7357,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-18 17:47:20','manshi','2025-12-18 17:47:28',0),(19513,2526,0,0,5120,'2025-12-18','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','RC04','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:18:59','vishal','2025-12-22 17:22:21',0),(19514,2526,0,0,5120,'2025-12-18','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:18:59','vishal','2025-12-22 17:22:21',0),(19515,2526,0,0,5120,'2025-12-18','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:18:59','vishal','2025-12-22 17:22:21',0),(19516,2526,0,0,5120,'2025-12-18','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:18:59','vishal','2025-12-22 17:36:39',0),(19517,2526,0,0,5120,'2025-12-18','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:18:59','vishal','2025-12-22 17:22:21',0),(19518,2526,0,0,6163,'2025-12-18','11:30:00',0,284,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','RC04','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','vishal','2025-12-18 18:58:56',0),(19519,2526,0,0,6163,'2025-12-18','11:30:00',0,284,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','vishal','2025-12-18 18:58:56',0),(19520,2526,0,0,6163,'2025-12-18','11:30:00',0,284,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','vishal','2025-12-18 18:58:56',0),(19521,2526,0,0,6163,'2025-12-18','11:30:00',0,284,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','vishal','2025-12-18 18:58:56',0),(19522,2526,0,0,6163,'2025-12-18','11:30:00',0,284,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','305','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','vishal','2025-12-18 18:58:56',0),(19523,2526,0,0,6165,'2025-12-18','12:50:00',0,285,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','RC04','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','vishal','2025-12-18 19:40:42',0),(19524,2526,0,0,6165,'2025-12-18','12:50:00',0,285,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','407','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','vishal','2025-12-18 19:40:42',0),(19525,2526,0,0,6165,'2025-12-18','12:50:00',0,285,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','407','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','vishal','2025-12-18 19:40:42',0),(19526,2526,0,0,6165,'2025-12-18','12:50:00',0,285,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','407','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','vishal','2025-12-18 19:40:42',0),(19527,2526,0,0,6165,'2025-12-18','12:50:00',0,285,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','407','','','',0,'','',0,46,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','vishal','2025-12-19 20:49:00',0),(19528,2526,0,0,6346,'2025-12-18','10:40:00',4056,297,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','RC03','','',0,'','',0,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','riya','2025-12-20 10:34:33',0),(19529,2526,0,0,6346,'2025-12-18','10:40:00',4056,297,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',0,'','',0,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','riya','2025-12-20 10:34:33',0),(19530,2526,0,0,6346,'2025-12-18','10:40:00',4056,297,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',0,'','',0,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','riya','2025-12-20 10:34:33',0),(19531,2526,0,0,6346,'2025-12-18','10:40:00',4056,297,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',0,'','',0,16,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','riya','2025-12-20 10:34:33',0),(19532,2526,0,0,6346,'2025-12-18','10:40:00',4056,297,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',0,'','',0,17,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','riya','2025-12-20 10:34:33',0),(19533,2526,0,0,6447,'2025-12-17','20:20:00',4209,299,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','RC04','','',2526,'H','I',296,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','vishal','2025-12-18 19:30:47',0),(19534,2526,0,0,6447,'2025-12-17','20:20:00',4209,299,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',296,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','vishal','2025-12-18 19:31:29',0),(19535,2526,0,0,6447,'2025-12-17','20:20:00',4209,299,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',296,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','vishal','2025-12-18 19:31:29',0),(19536,2526,0,0,6447,'2025-12-17','20:20:00',4209,299,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','401','','','',2526,'H','I',296,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','vishal','2025-12-18 19:31:29',0),(19537,2526,0,0,6447,'2025-12-17','20:20:00',4209,299,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','401','','','',2526,'H','I',296,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','vishal','2025-12-18 19:31:29',0),(19538,2526,0,0,6461,'2025-12-18','10:15:00',4206,301,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','304','RC04','','',2526,'H','I',302,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','riya','2025-12-20 13:37:29',0),(19539,2526,0,0,6461,'2025-12-18','10:15:00',4206,301,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','304','','','',2526,'H','I',302,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','riya','2025-12-20 13:37:29',0),(19540,2526,0,0,6461,'2025-12-18','10:15:00',4206,301,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','304','','','',2526,'H','I',302,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','riya','2025-12-20 13:37:29',0),(19541,2526,0,0,6461,'2025-12-18','10:15:00',4206,301,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',2526,'H','I',302,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','riya','2025-12-20 13:37:29',0),(19542,2526,0,0,6461,'2025-12-18','10:15:00',4206,301,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','304','','','',2526,'H','I',302,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 05:19:00','riya','2025-12-20 13:37:29',0),(19543,2526,0,0,6646,'2025-12-18','17:57:01',4309,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7358,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 17:57:01','reception','2025-12-18 17:57:01',0),(19544,2526,0,0,6646,'2025-12-18','17:57:01',4309,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7358,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 17:57:01','reception','2025-12-18 17:57:01',0),(19545,2526,0,0,6658,'2025-12-18','00:00:00',4314,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7359,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-18 17:58:27','urvashi','2025-12-18 17:58:58',0),(19546,2526,0,0,6659,'2025-12-18','00:00:00',4315,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7360,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 17:58:31','reception','2025-12-18 17:59:01',0),(19547,2526,0,0,6660,'2025-12-18','00:00:00',2710,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7361,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-18 17:59:17','manshi','2025-12-18 17:59:26',0),(19548,2526,0,0,6648,'2025-12-18','18:02:17',2589,0,'PKG','CASE','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7363,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 18:02:17','reception','2025-12-18 18:02:17',0),(19549,2526,0,0,6661,'2025-12-18','00:00:00',4316,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7364,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 18:03:34','drashti','2025-12-18 18:04:09',0),(19550,2526,0,0,6662,'2025-12-18','00:00:00',4317,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 18:05:00','reception','2025-12-18 05:35:00',0),(19551,2526,0,0,6664,'2025-12-18','00:00:00',4318,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7366,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-18 18:05:26','urvashi','2025-12-18 18:06:04',0),(19552,2526,0,0,6663,'2025-12-18','18:05:47',1476,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7365,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 18:05:47','drashti','2025-12-18 18:05:47',0),(19553,2526,0,0,6665,'2025-12-18','00:00:00',4319,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7367,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 18:06:22','drashti','2025-12-18 18:07:07',0),(19554,2526,0,0,6666,'2025-12-18','00:00:00',4320,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7368,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-18 18:06:44','manshi','2025-12-18 18:07:41',0),(19555,2526,0,0,6667,'2025-12-18','00:00:00',4321,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7369,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 18:10:07','drashti','2025-12-18 18:13:38',0),(19556,2526,0,0,6668,'2025-12-18','00:00:00',4322,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7370,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 18:11:06','reception','2025-12-18 18:13:55',0),(19557,2526,0,0,6669,'2025-12-18','00:00:00',4323,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7371,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-18 18:11:07','urvashi','2025-12-18 18:14:19',0),(19558,2526,0,0,6670,'2025-12-18','00:00:00',4324,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7372,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-18 18:12:39','urvashi','2025-12-18 18:14:45',0),(19559,2526,0,0,6671,'2025-12-18','00:00:00',4325,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7373,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 18:15:59','drashti','2025-12-18 18:16:49',0),(19560,2526,0,0,6656,'2025-12-18','18:17:39',4313,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7374,1,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 18:17:39','reception','2025-12-18 18:17:39',0),(19561,2526,0,0,6656,'2025-12-18','18:17:39',4313,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7374,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 18:17:39','reception','2025-12-18 18:17:39',0),(19562,2526,0,0,6656,'2025-12-18','18:17:39',4313,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7374,3,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 18:17:39','reception','2025-12-18 18:17:39',0),(19563,2526,0,0,6673,'2025-12-18','00:00:00',3259,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-18 18:18:33','urvashi','2025-12-18 05:48:33',0),(19564,2526,0,0,6674,'2025-12-18','00:00:00',4326,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7376,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-18 18:20:21','urvashi','2025-12-18 18:21:30',0),(19565,2526,0,0,6675,'2025-12-18','00:00:00',756,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7375,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 18:20:25','drashti','2025-12-18 18:21:26',0),(19566,2526,0,0,6647,'2025-12-18','18:21:34',4310,0,'XRY','XRY0358','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7377,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-18 18:21:34','manshi','2025-12-18 18:21:34',0),(19567,2526,0,0,6676,'2025-12-18','00:00:00',4327,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7378,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 18:21:50','reception','2025-12-18 18:22:02',0),(19568,2526,0,0,6678,'2025-12-18','00:00:00',4328,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7381,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 18:24:03','drashti','2025-12-18 18:26:10',0),(19569,2526,0,0,6679,'2025-12-18','00:00:00',4329,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7380,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-18 18:24:58','urvashi','2025-12-18 18:25:47',0),(19570,2526,0,0,6680,'2025-12-18','00:00:00',4330,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7379,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-18 18:25:21','urvashi','2025-12-18 18:25:37',0),(19571,2526,0,0,6681,'2025-12-18','00:00:00',3116,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7383,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 18:26:55','reception','2025-12-18 18:29:06',0),(19572,2526,0,0,6672,'2025-12-18','18:29:00',3498,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7382,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-18 18:29:00','urvashi','2025-12-18 18:29:00',0),(19573,2526,0,0,6682,'2025-12-18','00:00:00',1797,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7384,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 18:30:31','reception','2025-12-18 18:30:44',0),(19574,2526,0,0,6683,'2025-12-18','00:00:00',4331,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7385,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 18:31:59','drashti','2025-12-18 18:32:49',0),(19575,2526,0,0,6686,'2025-12-18','00:00:00',825,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7386,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 18:33:37','reception','2025-12-18 18:33:49',0),(19576,2526,0,0,6684,'2025-12-18','18:35:45',3854,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7387,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-18 18:35:45','urvashi','2025-12-18 18:35:45',0),(19577,2526,0,0,6659,'2025-12-18','18:36:08',4315,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7388,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 18:36:08','reception','2025-12-18 18:36:08',0),(19578,2526,0,0,6659,'2025-12-18','18:36:08',4315,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7388,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 18:36:08','reception','2025-12-18 18:36:08',0),(19579,2526,0,0,6687,'2025-12-18','00:00:00',2544,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 18:36:44','drashti','2025-12-18 06:06:44',0),(19580,2526,0,0,6688,'2025-12-18','00:00:00',2604,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7389,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 18:39:04','reception','2025-12-18 18:39:14',0),(19581,2526,0,0,6689,'2025-12-18','00:00:00',2539,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-18 18:41:23','janvi','2025-12-18 06:11:23',0),(19582,2526,0,0,6685,'2025-12-18','18:42:52',2919,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7390,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-18 18:42:52','janvi','2025-12-18 18:42:52',0),(19583,2526,0,0,6690,'2025-12-18','00:00:00',3584,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7391,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 18:43:45','reception','2025-12-18 18:44:33',0),(19584,2526,0,0,6691,'2025-12-18','00:00:00',1301,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7392,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 18:44:15','drashti','2025-12-18 18:45:11',0),(19585,2526,0,0,6692,'2025-12-18','18:52:39',2738,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',7393,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-18 18:52:39','janvi','2025-12-18 18:52:39',0),(19586,2526,0,0,6678,'2025-12-18','18:52:56',4328,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7394,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 18:52:56','drashti','2025-12-18 18:52:56',0),(19587,2526,0,0,6693,'2025-12-18','00:00:00',4332,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7395,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-18 18:53:48','drashti','2025-12-18 19:21:27',0),(19588,2526,0,0,6694,'2025-12-18','00:00:00',3722,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7397,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 18:56:10','reception','2025-12-18 18:57:36',0),(19589,2526,0,0,6695,'2025-12-18','18:57:33',3605,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',7396,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-18 18:57:33','janvi','2025-12-18 18:57:33',0),(19590,2526,0,0,6680,'2025-12-18','18:58:13',4330,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,50.00,50,9999,0,123,'',0,0,'','','','','',2526,'H','O',7398,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'janvi','2025-12-18 18:58:13','janvi','2025-12-18 18:58:13',0),(19591,2526,0,0,6696,'2025-12-18','00:00:00',4333,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7399,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 18:58:50','reception','2025-12-18 19:02:36',0),(19592,2526,0,0,6163,'2025-12-17','18:55:00',0,284,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 18:58:56','','0000-00-00 00:00:00',0),(19593,2526,0,0,6163,'2025-12-18','18:55:00',0,284,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 18:58:56','riya','2025-12-19 13:42:41',0),(19594,2526,0,0,6163,'2025-12-17','18:55:00',0,284,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 18:58:56','','0000-00-00 00:00:00',0),(19595,2526,0,0,6163,'2025-12-17','18:56:00',0,284,'WPRC','WPRC0084','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 18:58:56','','0000-00-00 00:00:00',0),(19596,2526,0,0,6163,'2025-12-18','18:57:00',0,284,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,42,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 18:58:56','vishal','2025-12-18 19:10:24',0),(19597,2526,0,0,6163,'2025-12-16','18:57:00',0,284,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 18:58:56','','0000-00-00 00:00:00',0),(19598,2526,0,0,6163,'2025-12-18','18:57:00',0,284,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 18:58:56','','0000-00-00 00:00:00',0),(19599,2526,0,0,6163,'2025-12-18','18:58:00',0,284,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,66,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 18:58:56','riya','2025-12-19 13:51:01',0),(19600,2526,0,0,6397,'2025-12-16','19:00:00',0,298,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',304,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:02:18','','0000-00-00 00:00:00',0),(19601,2526,0,0,6397,'2025-12-16','19:00:00',0,298,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',304,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:02:18','','0000-00-00 00:00:00',0),(19602,2526,0,0,6397,'2025-12-16','19:01:00',0,298,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,42,0,0,'',0,0,'','','','','',2526,'H','I',304,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:02:18','','0000-00-00 00:00:00',0),(19603,2526,0,0,6397,'2025-12-17','19:01:00',0,298,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',304,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:02:18','','0000-00-00 00:00:00',0),(19604,2526,0,0,6397,'2025-12-18','19:01:00',0,298,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',304,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:02:18','','0000-00-00 00:00:00',0),(19605,2526,0,0,6163,'2025-12-18','19:09:00',0,284,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:10:24','','0000-00-00 00:00:00',0),(19606,2526,0,0,6697,'2025-12-18','00:00:00',4334,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7400,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-18 19:12:19','manshi','2025-12-18 19:14:46',0),(19607,2526,0,0,5120,'2025-12-17','19:04:00',0,243,'DRC','DRC0020','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:14:12','vishal','2025-12-18 19:17:17',0),(19608,2526,0,0,5120,'2025-12-18','19:04:00',0,243,'DRC','DRC0020','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:14:12','vishal','2025-12-22 17:22:21',0),(19609,2526,0,0,5120,'2025-12-17','19:05:00',0,243,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:14:12','vishal','2025-12-22 17:32:15',0),(19610,2526,0,0,6697,'2025-12-18','19:14:46',4334,0,'OPWD','OPWD0023','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,7,0,0,'',0,0,'','','','','',2526,'H','O',7400,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-18 19:14:46','manshi','2025-12-18 19:14:46',0),(19611,2526,0,0,5120,'2025-12-17','19:13:00',0,243,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:17:17','vishal','2025-12-22 17:22:21',0),(19612,2526,0,0,5120,'2025-12-18','19:13:00',0,243,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:17:17','vishal','2025-12-22 17:22:21',0),(19613,2526,0,0,5120,'2025-12-16','19:14:00',0,243,'WPRC','WPRC0122','H','N',1.00,6000,6000,'A',0,0,0.00,0.00,6000.00,6000,4,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:17:17','vishal','2025-12-22 17:22:21',0),(19614,2526,0,0,5120,'2025-12-18','19:14:00',0,243,'WPRC','WPRC0122','H','N',1.00,6000,6000,'A',0,0,0.00,0.00,6000.00,6000,4,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:17:17','vishal','2025-12-22 17:22:21',0),(19615,2526,0,0,5120,'2025-12-17','19:14:00',0,243,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:17:17','vishal','2025-12-22 17:36:39',0),(19616,2526,0,0,5120,'2025-12-17','19:15:00',0,243,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:17:17','vishal','2025-12-22 17:20:27',0),(19617,2526,0,0,5120,'2025-12-18','19:15:00',0,243,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:17:17','vishal','2025-12-22 17:20:27',0),(19618,2526,0,0,5120,'2025-12-17','19:15:00',0,243,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:17:17','','0000-00-00 00:00:00',0),(19619,2526,0,0,6698,'2025-12-18','00:00:00',4335,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 19:20:01','drashti','2025-12-18 06:50:01',0),(19620,2526,0,0,6699,'2025-12-18','00:00:00',4336,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 19:20:46','drashti','2025-12-18 06:50:46',0),(19621,2526,0,0,6700,'2025-12-18','19:22:06',4300,0,'OPWD','OPWD0023','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,5000.00,5000,3,0,0,'',0,0,'','','','','',2526,'H','O',7402,1,2000,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-18 19:22:06','janvi','2025-12-18 19:22:06',0),(19622,2526,0,0,6693,'2025-12-18','19:23:07',4332,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7403,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 19:23:07','drashti','2025-12-18 19:23:07',0),(19623,2526,0,0,6701,'2025-12-18','00:00:00',4337,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7404,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-18 19:24:05','janvi','2025-12-18 19:24:42',0),(19624,2526,0,0,6447,'2025-12-16','19:22:00',4209,299,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',296,4,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:30:47','vishal','2025-12-18 19:31:29',0),(19625,2526,0,0,6447,'2025-12-17','19:22:00',4209,299,'WPRC','WPRC0090','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',0,'','',0,8,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:30:47','vishal','2025-12-18 22:03:12',0),(19626,2526,0,0,6447,'2025-12-16','19:26:00',4209,299,'WPRC','WPRC0089','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',296,5,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:30:47','vishal','2025-12-18 19:31:29',0),(19627,2526,0,0,6447,'2025-12-17','19:26:00',4209,299,'WPRC','WPRC0089','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',296,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:30:47','vishal','2025-12-18 19:31:29',0),(19628,2526,0,0,6447,'2025-12-18','19:26:00',4209,299,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',296,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:30:47','','0000-00-00 00:00:00',0),(19629,2526,0,0,6704,'2025-12-18','00:00:00',1660,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7405,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 19:38:47','reception','2025-12-18 19:38:59',0),(19630,2526,0,0,6165,'2025-12-16','19:30:00',0,285,'ROOM','ROOM0008','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:40:42','','0000-00-00 00:00:00',0),(19631,2526,0,0,6165,'2025-12-17','19:31:00',0,285,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:40:42','','0000-00-00 00:00:00',0),(19632,2526,0,0,6165,'2025-12-18','19:31:00',0,285,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:40:42','','0000-00-00 00:00:00',0),(19633,2526,0,0,6165,'2025-12-15','19:32:00',0,285,'USG','USG0092','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:40:42','','0000-00-00 00:00:00',0),(19634,2526,0,0,6165,'2025-12-16','19:35:00',0,285,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,62,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:40:42','','0000-00-00 00:00:00',0),(19635,2526,0,0,6165,'2025-12-17','19:37:00',0,285,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,38,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:40:42','','0000-00-00 00:00:00',0),(19636,2526,0,0,6165,'2025-12-17','19:37:00',0,285,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:40:42','','0000-00-00 00:00:00',0),(19637,2526,0,0,6165,'2025-12-17','19:38:00',0,285,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:40:42','','0000-00-00 00:00:00',0),(19638,2526,0,0,6165,'2025-12-18','19:38:00',0,285,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:40:42','','0000-00-00 00:00:00',0),(19639,2526,0,0,6165,'2025-12-18','19:38:00',0,285,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:40:42','','0000-00-00 00:00:00',0),(19640,2526,0,0,6705,'2025-12-18','00:00:00',4338,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7406,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-18 19:48:23','drashti','2025-12-18 19:49:04',0),(19641,2526,0,0,6706,'2025-12-18','19:50:00',0,305,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',308,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:56:26','vishal','2025-12-19 19:05:00',0),(19642,2526,0,0,6706,'2025-12-18','19:50:00',0,305,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',308,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 19:56:26','vishal','2025-12-19 19:05:00',0),(19643,2526,0,0,6706,'2025-12-18','19:50:00',0,305,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','411','RC03','','',0,'','',0,3,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 07:26:26','vishal','2025-12-19 19:06:48',0),(19644,2526,0,0,6706,'2025-12-18','19:50:00',0,305,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','411','','','',0,'','',0,4,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 07:26:26','vishal','2025-12-19 19:06:48',0),(19645,2526,0,0,6706,'2025-12-18','19:50:00',0,305,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','411','','','',0,'','',0,5,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 07:26:26','vishal','2025-12-19 19:06:48',0),(19646,2526,0,0,6706,'2025-12-18','19:50:00',0,305,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 07:26:26','vishal','2025-12-19 19:05:00',0),(19647,2526,0,0,6706,'2025-12-18','19:50:00',0,305,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','411','','','',2526,'H','I',308,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 07:26:26','vishal','2025-12-19 19:06:48',0),(19648,2526,0,0,6656,'2025-12-18','20:16:47',4313,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,2,0,0,'',0,0,'','','','','',2526,'H','O',7407,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-18 20:16:47','reception','2025-12-18 20:16:47',0),(19649,2526,0,0,6707,'2025-12-18','19:30:00',0,306,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',298,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 20:25:35','vishal','2025-12-19 20:30:47',0),(19650,2526,0,0,6707,'2025-12-18','19:30:00',0,306,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',298,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 20:25:35','vishal','2025-12-19 20:30:47',0),(19651,2526,0,0,6707,'2025-12-18','19:30:00',0,306,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','RC04','','',2526,'H','I',298,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 07:55:35','vishal','2025-12-19 20:30:47',0),(19652,2526,0,0,6707,'2025-12-18','19:30:00',0,306,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',298,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 07:55:35','vishal','2025-12-19 20:30:47',0),(19653,2526,0,0,6707,'2025-12-18','19:30:00',0,306,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',298,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 07:55:35','vishal','2025-12-19 20:30:47',0),(19654,2526,0,0,6707,'2025-12-19','19:30:00',0,306,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',298,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 07:55:35','vishal','2025-12-19 20:30:47',0),(19655,2526,0,0,6707,'2025-12-19','19:30:00',0,306,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','404','','','',2526,'H','I',298,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 07:55:35','vishal','2025-12-19 20:31:23',0),(19656,2526,0,0,6610,'2025-12-18','20:25:00',4268,303,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',294,6,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 20:26:33','vishal','2025-12-18 20:27:51',0),(19657,2526,0,0,6447,'2025-12-18','20:20:00',4209,299,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','RC04','','',2526,'H','I',296,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 08:28:52','vishal','2025-12-18 22:03:12',0),(19658,2526,0,0,6447,'2025-12-18','20:20:00',4209,299,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',296,16,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 08:28:52','vishal','2025-12-18 22:03:12',0),(19659,2526,0,0,6447,'2025-12-18','20:20:00',4209,299,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',296,17,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 08:28:52','vishal','2025-12-18 22:03:12',0),(19660,2526,0,0,6447,'2025-12-18','20:20:00',4209,299,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','401','','','',2526,'H','I',296,18,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 08:28:52','vishal','2025-12-18 22:03:12',0),(19661,2526,0,0,6447,'2025-12-18','20:20:00',4209,299,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','401','','','',2526,'H','I',296,19,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 08:28:52','vishal','2025-12-18 22:03:12',0),(19662,2526,0,0,6576,'2025-12-18','20:30:00',4269,302,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','RC03','','',2526,'H','I',301,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 08:28:52','riya','2025-12-20 13:40:33',0),(19663,2526,0,0,6576,'2025-12-18','20:30:00',4269,302,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',301,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 08:28:52','riya','2025-12-20 13:40:33',0),(19664,2526,0,0,6576,'2025-12-18','20:30:00',4269,302,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',301,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 08:28:52','riya','2025-12-20 13:40:33',0),(19665,2526,0,0,6576,'2025-12-18','20:30:00',4269,302,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',301,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 08:28:52','riya','2025-12-20 13:40:33',0),(19666,2526,0,0,6576,'2025-12-18','20:30:00',4269,302,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',301,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-18 08:28:52','riya','2025-12-20 13:40:33',0),(19667,2526,0,0,6708,'2025-12-19','00:00:00',4339,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 08:52:12','reception','2025-12-18 20:22:12',0),(19668,2526,0,0,6708,'2025-12-19','08:53:32',4339,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',7408,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-19 08:53:32','reception','2025-12-19 08:53:32',0),(19669,2526,0,0,6708,'2025-12-19','08:53:32',4339,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,124,'',0,0,'','','','','',2526,'H','O',7408,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-19 08:53:32','reception','2025-12-19 08:53:32',0),(19670,2526,0,0,6708,'2025-12-19','08:53:32',4339,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,5,0,0,'',0,0,'','','','','',2526,'H','O',7408,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-19 08:53:32','reception','2025-12-19 08:53:32',0),(19671,2526,0,0,6708,'2025-12-19','08:53:32',4339,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',7408,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-19 08:53:32','reception','2025-12-19 08:53:32',0),(19672,2526,0,0,6709,'2025-12-19','00:00:00',2650,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7409,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 09:24:38','reception','2025-12-19 09:25:09',0),(19673,2526,0,0,6710,'2025-12-19','00:00:00',1752,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7410,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 09:47:57','reception','2025-12-19 09:48:33',0),(19674,2526,0,0,6711,'2025-12-19','00:00:00',1751,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7411,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 09:49:05','reception','2025-12-19 09:49:17',0),(19675,2526,0,0,6712,'2025-12-19','10:00:00',2738,307,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',297,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 10:08:08','vishal','2025-12-19 19:34:41',0),(19676,2526,0,0,6712,'2025-12-19','10:00:00',2738,307,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',297,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 10:08:08','vishal','2025-12-19 19:34:41',0),(19677,2526,0,0,6712,'2025-12-19','10:00:00',2738,307,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','402','RC03','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-18 21:38:08','vishal','2025-12-19 19:34:41',0),(19678,2526,0,0,6712,'2025-12-19','10:00:00',2738,307,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-18 21:38:08','vishal','2025-12-19 19:34:41',0),(19679,2526,0,0,6712,'2025-12-19','10:00:00',2738,307,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','402','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-18 21:38:08','vishal','2025-12-19 19:34:41',0),(19680,2526,0,0,6712,'2025-12-19','10:00:00',2738,307,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',297,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-18 21:38:08','vishal','2025-12-19 19:34:41',0),(19681,2526,0,0,6712,'2025-12-19','10:00:00',2738,307,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',297,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-18 21:38:08','vishal','2025-12-19 19:34:41',0),(19682,2526,0,0,6713,'2025-12-19','00:00:00',4340,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7412,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 10:10:41','reception','2025-12-19 10:13:09',0),(19683,2526,0,0,6714,'2025-12-19','00:00:00',4341,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7413,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 10:15:17','reception','2025-12-19 10:15:30',0),(19684,2526,0,0,6715,'2025-12-19','00:00:00',3773,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7414,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 10:15:50','reception','2025-12-19 10:16:18',0),(19685,2526,0,0,6716,'2025-12-19','00:00:00',3136,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7415,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 10:19:35','reception','2025-12-19 10:20:10',0),(19686,2526,0,0,6717,'2025-12-19','00:00:00',4342,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7416,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 10:25:10','drashti','2025-12-19 10:25:55',0),(19687,2526,0,0,6718,'2025-12-19','00:00:00',4343,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7417,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 10:28:42','drashti','2025-12-19 10:29:45',0),(19688,2526,0,0,6719,'2025-12-19','00:00:00',4344,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7418,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 10:31:01','drashti','2025-12-19 10:31:45',0),(19689,2526,0,0,6720,'2025-12-19','00:00:00',2718,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7419,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 10:37:22','reception','2025-12-19 10:38:36',0),(19690,2526,0,0,6721,'2025-12-19','00:00:00',4345,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7421,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 10:41:28','reception','2025-12-19 10:42:25',0),(19691,2526,0,0,6722,'2025-12-19','00:00:00',4346,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7420,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 10:41:39','drashti','2025-12-19 10:42:22',0),(19692,2526,0,0,6723,'2025-12-19','00:00:00',1022,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7424,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 10:43:31','reception','2025-12-19 10:47:00',0),(19693,2526,0,0,6724,'2025-12-19','00:00:00',1021,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7423,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 10:44:19','reception','2025-12-19 10:46:15',0),(19694,2526,0,0,6725,'2025-12-19','00:00:00',4347,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7422,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 10:45:32','drashti','2025-12-19 10:46:03',0),(19695,2526,0,0,6726,'2025-12-19','00:00:00',313,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7425,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-19 10:46:55','janvi','2025-12-19 10:47:05',0),(19696,2526,0,0,6727,'2025-12-19','00:00:00',4348,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7427,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 10:49:49','drashti','2025-12-19 10:50:47',0),(19697,2526,0,0,6728,'2025-12-19','00:00:00',3880,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7426,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 10:50:20','reception','2025-12-19 10:50:33',0),(19698,2526,0,0,6729,'2025-12-19','00:00:00',1994,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7428,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 10:52:36','reception','2025-12-19 10:53:22',0),(19699,2526,0,0,6730,'2025-12-19','00:00:00',4349,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7429,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 10:56:09','reception','2025-12-19 10:57:01',0),(19700,2526,0,0,6732,'2025-12-19','00:00:00',1852,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7430,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 10:57:37','reception','2025-12-19 10:57:53',0),(19701,2526,0,0,6731,'2025-12-19','10:57:53',4200,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7431,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 10:57:53','drashti','2025-12-19 10:57:53',0),(19702,2526,0,0,6733,'2025-12-19','00:00:00',2171,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7432,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:03:46','reception','2025-12-19 11:04:09',0),(19703,2526,0,0,6734,'2025-12-19','00:00:00',4350,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7433,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 11:08:42','drashti','2025-12-19 11:09:14',0),(19704,2526,0,0,6735,'2025-12-19','00:00:00',1935,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7434,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:11:38','reception','2025-12-19 11:11:59',0),(19705,2526,0,0,6719,'2025-12-19','11:13:27',4344,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',7435,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-19 11:13:27','janvi','2025-12-19 11:13:27',0),(19706,2526,0,0,6736,'2025-12-19','00:00:00',4351,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7437,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 11:13:34','drashti','2025-12-19 11:15:15',0),(19707,2526,0,0,6737,'2025-12-19','10:00:00',0,308,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-19 11:14:01','','0000-00-00 00:00:00',0),(19708,2526,0,0,6737,'2025-12-19','10:00:00',0,308,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-19 11:14:01','','0000-00-00 00:00:00',0),(19709,2526,0,0,6737,'2025-12-19','10:00:00',0,308,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','306','RC03','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-18 22:44:01','','0000-00-00 00:00:00',0),(19710,2526,0,0,6737,'2025-12-19','10:00:00',0,308,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-18 22:44:01','','0000-00-00 00:00:00',0),(19711,2526,0,0,6737,'2025-12-19','10:00:00',0,308,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-18 22:44:01','','0000-00-00 00:00:00',0),(19712,2526,0,0,6737,'2025-12-19','10:00:00',0,308,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-18 22:44:01','','0000-00-00 00:00:00',0),(19713,2526,0,0,6737,'2025-12-19','10:00:00',0,308,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','306','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-18 22:44:01','','0000-00-00 00:00:00',0),(19714,2526,0,0,6738,'2025-12-19','00:00:00',3969,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7436,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-19 11:14:08','manshi','2025-12-19 11:23:30',0),(19715,2526,0,0,6721,'2025-12-19','11:18:10',4345,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7438,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:18:10','reception','2025-12-19 11:18:10',0),(19716,2526,0,0,6721,'2025-12-19','11:18:10',4345,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7438,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:18:10','reception','2025-12-19 11:18:10',0),(19717,2526,0,0,6721,'2025-12-19','11:18:10',4345,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7438,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:18:10','reception','2025-12-19 11:18:10',0),(19718,2526,0,0,6739,'2025-12-19','00:00:00',4352,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7440,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 11:19:50','drashti','2025-12-19 11:22:11',0),(19719,2526,0,0,6732,'2025-12-19','11:22:05',1852,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7439,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:22:05','reception','2025-12-19 11:22:05',0),(19720,2526,0,0,6739,'2025-12-19','11:22:11',4352,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7440,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 11:22:11','drashti','2025-12-19 11:22:11',0),(19721,2526,0,0,6739,'2025-12-19','11:22:11',4352,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',7440,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 11:22:11','drashti','2025-12-19 11:22:11',0),(19722,2526,0,0,6740,'2025-12-19','00:00:00',4353,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7442,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:23:53','reception','2025-12-19 11:24:26',0),(19723,2526,0,0,6741,'2025-12-19','00:00:00',3174,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7446,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-19 11:24:21','reception','2025-12-19 11:28:49',0),(19724,2526,0,0,6740,'2025-12-19','11:24:26',4353,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7442,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:24:26','reception','2025-12-19 11:24:26',0),(19725,2526,0,0,6742,'2025-12-19','00:00:00',4354,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7443,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-19 11:25:35','janvi','2025-12-19 11:25:49',0),(19726,2526,0,0,6743,'2025-12-19','00:00:00',4355,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7445,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:26:46','reception','2025-12-19 11:27:21',0),(19727,2526,0,0,6744,'2025-12-19','00:00:00',9,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7444,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-19 11:27:02','janvi','2025-12-19 11:27:11',0),(19728,2526,0,0,6745,'2025-12-19','00:00:00',4356,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7447,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:30:41','reception','2025-12-19 11:31:11',0),(19729,2526,0,0,6746,'2025-12-19','00:00:00',3648,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7448,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:32:05','reception','2025-12-19 11:32:15',0),(19730,2526,0,0,6747,'2025-12-19','00:00:00',3628,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7449,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 11:32:34','drashti','2025-12-19 11:32:54',0),(19731,2526,0,0,6748,'2025-12-19','00:00:00',2564,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7451,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:33:22','reception','2025-12-19 11:36:54',0),(19732,2526,0,0,6749,'2025-12-19','00:00:00',4357,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-19 11:34:04','janvi','2025-12-18 23:04:04',0),(19733,2526,0,0,6714,'2025-12-19','11:35:08',4341,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7450,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:35:08','reception','2025-12-19 11:35:08',0),(19734,2526,0,0,6714,'2025-12-19','11:35:08',4341,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7450,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:35:08','reception','2025-12-19 11:35:08',0),(19735,2526,0,0,6714,'2025-12-19','11:35:08',4341,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7450,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:35:08','reception','2025-12-19 11:35:08',0),(19736,2526,0,0,6750,'2025-12-19','00:00:00',4358,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7452,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 11:38:07','drashti','2025-12-19 11:39:04',0),(19737,2526,0,0,6751,'2025-12-19','00:00:00',1037,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7453,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:41:49','reception','2025-12-19 11:42:07',0),(19738,2526,0,0,6752,'2025-12-19','11:44:28',2936,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7454,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-19 11:44:28','janvi','2025-12-19 11:44:28',0),(19739,2526,0,0,6753,'2025-12-19','00:00:00',2744,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7458,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 11:46:14','drashti','2025-12-19 11:48:08',0),(19740,2526,0,0,6730,'2025-12-19','11:46:40',4349,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7455,1,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:46:40','reception','2025-12-19 11:46:40',0),(19741,2526,0,0,6730,'2025-12-19','11:46:40',4349,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7455,2,471,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:46:40','reception','2025-12-19 11:46:40',0),(19742,2526,0,0,6730,'2025-12-19','11:46:40',4349,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7455,3,414,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:46:40','reception','2025-12-19 11:46:40',0),(19743,2526,0,0,6754,'2025-12-19','00:00:00',4359,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7456,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-19 11:46:46','janvi','2025-12-19 11:47:24',0),(19744,2526,0,0,6755,'2025-12-19','00:00:00',2830,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7457,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:47:35','reception','2025-12-19 11:48:03',0),(19745,2526,0,0,6756,'2025-12-19','00:00:00',4360,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7459,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-19 11:48:02','manshi','2025-12-19 11:48:33',0),(19746,2526,0,0,6757,'2025-12-19','00:00:00',4361,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7460,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:50:06','reception','2025-12-19 11:50:43',0),(19747,2526,0,0,6758,'2025-12-19','00:00:00',2178,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7461,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:51:51','reception','2025-12-19 11:52:52',0),(19748,2526,0,0,6718,'2025-12-19','11:54:48',4343,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7462,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:54:48','reception','2025-12-19 11:54:48',0),(19749,2526,0,0,6718,'2025-12-19','11:54:48',4343,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7462,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:54:48','reception','2025-12-19 11:54:48',0),(19750,2526,0,0,6759,'2025-12-19','00:00:00',4362,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7464,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-19 11:55:04','janvi','2025-12-19 11:56:07',0),(19751,2526,0,0,6760,'2025-12-19','00:00:00',4363,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7463,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 11:55:36','drashti','2025-12-19 11:56:04',0),(19752,2526,0,0,6761,'2025-12-19','00:00:00',893,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7465,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-19 11:55:51','janvi','2025-12-19 11:56:55',0),(19753,2526,0,0,6762,'2025-12-19','00:00:00',4364,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7466,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 11:58:15','reception','2025-12-19 11:58:57',0),(19754,2526,0,0,6763,'2025-12-19','00:00:00',4365,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7467,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-19 12:01:01','janvi','2025-12-19 12:01:29',0),(19755,2526,0,0,6764,'2025-12-19','00:00:00',773,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 12:13:31','drashti','2025-12-18 23:43:31',0),(19756,2526,0,0,6728,'2025-12-19','12:13:50',3880,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,2,0,0,'',0,0,'','','','','',2526,'H','O',7468,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 12:13:50','reception','2025-12-19 12:13:50',0),(19757,2526,0,0,6765,'2025-12-19','00:00:00',4366,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7469,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 12:14:50','reception','2025-12-19 12:16:40',0),(19758,2526,0,0,6613,'2025-12-19','09:00:00',0,304,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','RC04','','',2526,'H','I',303,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-18 23:47:03','riya','2025-12-20 11:49:31',0),(19759,2526,0,0,6613,'2025-12-19','09:00:00',0,304,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',303,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-18 23:47:03','riya','2025-12-20 11:49:31',0),(19760,2526,0,0,6613,'2025-12-19','09:00:00',0,304,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',303,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-18 23:47:03','riya','2025-12-20 11:49:31',0),(19761,2526,0,0,6613,'2025-12-19','09:00:00',0,304,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','408','','','',2526,'H','I',303,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-18 23:47:03','riya','2025-12-20 11:49:31',0),(19762,2526,0,0,6613,'2025-12-19','09:00:00',0,304,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','408','','','',2526,'H','I',303,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-18 23:47:03','riya','2025-12-20 11:49:31',0),(19763,2526,0,0,6766,'2025-12-19','00:00:00',4367,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7470,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-19 12:21:08','janvi','2025-12-19 12:22:11',0),(19764,2526,0,0,6767,'2025-12-19','00:00:00',4368,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7471,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 12:23:34','reception','2025-12-19 13:14:42',0),(19765,2526,0,0,6768,'2025-12-19','00:00:00',2721,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7472,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 12:25:01','drashti','2025-12-19 12:25:57',0),(19766,2526,0,0,6769,'2025-12-19','12:00:00',0,309,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 12:26:03','vishal','2025-12-21 11:28:12',0),(19767,2526,0,0,6769,'2025-12-19','12:00:00',0,309,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 12:26:03','vishal','2025-12-21 11:28:12',0),(19768,2526,0,0,6769,'2025-12-19','12:00:00',0,309,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','RC07','','',2526,'H','D',332,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-18 23:56:03','vishal','2025-12-21 11:28:12',0),(19769,2526,0,0,6769,'2025-12-19','12:00:00',0,309,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','D',332,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-18 23:56:03','vishal','2025-12-21 11:28:12',0),(19770,2526,0,0,6769,'2025-12-19','12:00:00',0,309,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','D',332,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-18 23:56:03','vishal','2025-12-21 11:28:12',0),(19771,2526,0,0,6769,'2025-12-19','12:00:00',0,309,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','D',332,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-18 23:56:03','vishal','2025-12-21 11:28:12',0),(19772,2526,0,0,6769,'2025-12-19','12:00:00',0,309,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','D',332,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-18 23:56:03','vishal','2025-12-21 11:28:12',0),(19773,2526,0,0,6770,'2025-12-19','00:00:00',4369,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7473,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 12:28:12','drashti','2025-12-19 12:28:39',0),(19774,2526,0,0,6771,'2025-12-19','12:29:24',3673,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',7474,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-19 12:29:24','manshi','2025-12-19 12:29:24',0),(19775,2526,0,0,6745,'2025-12-19','12:33:00',4356,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7475,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 12:33:00','reception','2025-12-19 12:33:00',0),(19776,2526,0,0,6745,'2025-12-19','12:33:00',4356,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7475,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 12:33:00','reception','2025-12-19 12:33:00',0),(19777,2526,0,0,6745,'2025-12-19','12:33:00',4356,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7475,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 12:33:00','reception','2025-12-19 12:33:00',0),(19778,2526,0,0,6713,'2025-12-19','12:40:09',4340,0,'OPWD','OPWD0023','H','N',1.00,4000,4000,'P',0,0,0.00,0.00,4000.00,4000,3,0,0,'',0,0,'','','','','',2526,'H','O',7476,1,1000,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-19 12:40:09','janvi','2025-12-19 12:40:09',0),(19779,2526,0,0,6772,'2025-12-19','00:00:00',4370,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7477,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 12:41:58','drashti','2025-12-19 12:42:48',0),(19780,2526,0,0,6773,'2025-12-19','00:00:00',4371,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7478,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 12:43:06','reception','2025-12-19 12:43:54',0),(19781,2526,0,0,6774,'2025-12-19','00:00:00',4372,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7479,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 12:47:53','drashti','2025-12-19 12:49:01',0),(19782,2526,0,0,6775,'2025-12-19','00:00:00',4373,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7480,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 12:53:08','reception','2025-12-19 12:53:42',0),(19783,2526,0,0,6165,'2025-12-19','12:50:00',0,285,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','407','RC04','','',0,'','',0,56,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:25:58','riya','2025-12-22 13:57:46',0),(19784,2526,0,0,6165,'2025-12-19','12:50:00',0,285,'AECO','CARE0004','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','407','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:25:58','riya','2025-12-22 13:59:18',0),(19785,2526,0,0,6165,'2025-12-19','12:50:00',0,285,'CARE','CARE0003','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','407','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:25:58','riya','2025-12-22 14:00:20',0),(19786,2526,0,0,6165,'2025-12-19','12:50:00',0,285,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:25:58','vishal','2025-12-19 20:49:00',0),(19787,2526,0,0,6165,'2025-12-19','12:50:00',0,285,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:25:58','vishal','2025-12-19 20:49:00',0),(19788,2526,0,0,6346,'2025-12-19','10:40:00',4056,297,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','RC03','','',0,'','',0,18,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:27:01','riya','2025-12-20 10:34:33',0),(19789,2526,0,0,6346,'2025-12-19','10:40:00',4056,297,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',0,'','',0,19,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:27:01','riya','2025-12-20 10:34:33',0),(19790,2526,0,0,6346,'2025-12-19','10:40:00',4056,297,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',0,'','',0,20,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:27:01','riya','2025-12-20 10:34:33',0),(19791,2526,0,0,6346,'2025-12-19','10:40:00',4056,297,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',0,'','',0,21,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:27:01','riya','2025-12-20 10:34:33',0),(19792,2526,0,0,6346,'2025-12-19','10:40:00',4056,297,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',0,'','',0,22,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:27:01','riya','2025-12-20 10:34:33',0),(19793,2526,0,0,6163,'2025-12-19','11:30:00',0,284,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','RC04','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:27:37','riya','2025-12-19 13:33:38',0),(19794,2526,0,0,6163,'2025-12-19','11:30:00',0,284,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:27:37','riya','2025-12-19 13:33:38',0),(19795,2526,0,0,6163,'2025-12-19','11:30:00',0,284,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:27:37','riya','2025-12-19 13:33:38',0),(19796,2526,0,0,6163,'2025-12-19','11:30:00',0,284,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,42,0,0,'',0,0,'','305','','','',2526,'H','I',295,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:27:37','riya','2025-12-19 13:33:38',0),(19797,2526,0,0,6163,'2025-12-19','11:30:00',0,284,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,42,0,0,'',0,0,'','305','','','',0,'','',0,50,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:27:37','riya','2025-12-19 13:51:01',0),(19798,2526,0,0,6775,'2025-12-19','12:58:33',4373,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7481,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 12:58:33','drashti','2025-12-19 12:58:33',0),(19799,2526,0,0,5120,'2025-12-19','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','RC04','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:29:31','riya','2025-12-19 13:27:14',0),(19800,2526,0,0,5120,'2025-12-19','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:29:31','riya','2025-12-19 13:27:14',0),(19801,2526,0,0,5120,'2025-12-19','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:29:31','riya','2025-12-19 13:27:14',0),(19802,2526,0,0,5120,'2025-12-19','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:29:31','riya','2025-12-19 13:27:14',0),(19803,2526,0,0,5120,'2025-12-19','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 00:29:31','riya','2025-12-19 13:27:14',0),(19804,2526,0,0,6746,'2025-12-19','13:03:00',3648,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7482,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 13:03:00','reception','2025-12-19 13:03:00',0),(19805,2526,0,0,6746,'2025-12-19','13:03:00',3648,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',7482,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 13:03:00','reception','2025-12-19 13:03:00',0),(19806,2526,0,0,6774,'2025-12-19','13:03:15',4372,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7483,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 13:03:15','drashti','2025-12-19 13:03:15',0),(19807,2526,0,0,6776,'2025-12-19','00:00:00',2577,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7485,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 13:21:18','reception','2025-12-19 13:21:31',0),(19808,2526,0,0,6772,'2025-12-19','13:23:26',4370,0,'OPWD','OPWD0024','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',7486,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-19 13:23:26','janvi','2025-12-19 13:23:26',0),(19809,2526,0,0,6772,'2025-12-19','13:23:26',4370,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7486,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-19 13:23:26','janvi','2025-12-19 13:23:26',0),(19810,2526,0,0,6163,'2025-12-19','13:42:00',0,284,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',295,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 13:42:41','','0000-00-00 00:00:00',0),(19811,2526,0,0,6773,'2025-12-19','14:06:03',4371,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7487,1,234,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 14:06:03','reception','2025-12-19 14:06:03',0),(19812,2526,0,0,6773,'2025-12-19','14:06:03',4371,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7487,2,266,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 14:06:03','reception','2025-12-19 14:06:03',0),(19813,2526,0,0,6778,'2025-12-19','00:00:00',1277,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7488,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 14:26:39','reception','2025-12-19 14:26:54',0),(19814,2526,0,0,6779,'2025-12-19','00:00:00',2558,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7489,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-19 15:44:21','priyanshi','2025-12-19 15:44:30',0),(19815,2526,0,0,6780,'2025-12-19','15:38:00',0,310,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',315,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 15:49:52','riya','2025-12-20 10:28:42',0),(19816,2526,0,0,6780,'2025-12-19','15:38:00',0,310,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',315,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 15:49:52','riya','2025-12-20 10:28:42',0),(19817,2526,0,0,6780,'2025-12-19','15:38:00',0,310,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','RC03','','',2526,'H','I',315,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 03:19:52','riya','2025-12-20 10:28:42',0),(19818,2526,0,0,6780,'2025-12-19','15:38:00',0,310,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',315,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 03:19:52','riya','2025-12-20 10:28:42',0),(19819,2526,0,0,6780,'2025-12-19','15:38:00',0,310,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',315,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 03:19:52','riya','2025-12-20 10:28:42',0),(19820,2526,0,0,6780,'2025-12-19','15:38:00',0,310,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 03:19:52','vishal','2025-12-21 12:02:46',0),(19821,2526,0,0,6780,'2025-12-19','15:38:00',0,310,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',315,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 03:19:52','riya','2025-12-20 10:28:42',0),(19822,2526,0,0,6781,'2025-12-19','00:00:00',4374,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7490,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 16:16:35','reception','2025-12-19 16:17:00',0),(19823,2526,0,0,6782,'2025-12-19','00:00:00',4375,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 16:22:03','reception','2025-12-19 03:52:03',0),(19824,2526,0,0,6783,'2025-12-19','00:00:00',4376,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7491,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 16:30:10','reception','2025-12-19 16:31:24',0),(19825,2526,0,0,6784,'2025-12-19','00:00:00',966,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 16:39:07','reception','2025-12-19 04:09:07',0),(19826,2526,0,0,6785,'2025-12-19','16:40:53',4369,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7492,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 16:40:53','reception','2025-12-19 16:40:53',0),(19827,2526,0,0,6785,'2025-12-19','16:40:53',4369,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7492,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 16:40:53','reception','2025-12-19 16:40:53',0),(19828,2526,0,0,6786,'2025-12-19','00:00:00',865,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',7493,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 16:47:01','reception','2025-12-19 16:47:25',0),(19829,2526,0,0,6787,'2025-12-19','00:00:00',4377,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7494,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-19 16:47:57','priyanshi','2025-12-19 16:48:07',0),(19830,2526,0,0,6788,'2025-12-19','00:00:00',3812,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7495,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 16:51:21','reception','2025-12-19 16:51:52',0),(19831,2526,0,0,6789,'2025-12-19','00:00:00',2082,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 16:52:35','reception','2025-12-19 04:22:35',0),(19832,2526,0,0,6790,'2025-12-19','00:00:00',3789,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7496,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 16:54:08','reception','2025-12-19 16:56:09',0),(19833,2526,0,0,6791,'2025-12-19','00:00:00',2664,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 17:00:49','reception','2025-12-19 04:30:49',0),(19834,2526,0,0,6792,'2025-12-19','00:00:00',2627,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7497,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 17:02:38','reception','2025-12-19 17:03:16',0),(19835,2526,0,0,6793,'2025-12-19','00:00:00',4378,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7498,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 17:10:19','reception','2025-12-19 17:10:43',0),(19836,2526,0,0,6794,'2025-12-19','00:00:00',4379,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-19 17:12:20','manshi','2025-12-19 04:42:20',0),(19837,2526,0,0,6795,'2025-12-19','00:00:00',4380,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7499,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-19 17:14:22','priyanshi','2025-12-19 17:15:03',0),(19838,2526,0,0,6796,'2025-12-19','00:00:00',3770,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7500,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 17:16:18','reception','2025-12-19 17:16:36',0),(19839,2526,0,0,6797,'2025-12-19','00:00:00',1765,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7501,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 17:20:02','reception','2025-12-19 17:20:18',0),(19840,2526,0,0,6798,'2025-12-19','00:00:00',4381,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7507,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-19 17:23:57','manshi','2025-12-19 17:46:30',0),(19841,2526,0,0,6799,'2025-12-19','00:00:00',3813,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7502,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 17:26:19','reception','2025-12-19 17:26:50',0),(19842,2526,0,0,6787,'2025-12-19','17:35:32',4377,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7503,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 17:35:32','reception','2025-12-19 17:35:32',0),(19843,2526,0,0,6787,'2025-12-19','17:36:27',4377,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7504,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 17:36:27','reception','2025-12-19 17:36:27',0),(19844,2526,0,0,6800,'2025-12-19','00:00:00',449,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7505,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 17:37:16','drashti','2025-12-19 17:37:58',0),(19845,2526,0,0,6801,'2025-12-19','00:00:00',2393,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7506,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 17:42:49','drashti','2025-12-19 17:43:25',0),(19846,2526,0,0,6802,'2025-12-19','00:00:00',4382,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 17:43:12','reception','2025-12-19 05:13:13',0),(19847,2526,0,0,6804,'2025-12-19','00:00:00',4383,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7508,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 17:49:01','reception','2025-12-19 17:49:33',0),(19848,2526,0,0,6805,'2025-12-19','00:00:00',2656,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7509,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 17:50:52','reception','2025-12-19 17:51:16',0),(19849,2526,0,0,6806,'2025-12-19','00:00:00',4384,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7511,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 17:52:17','drashti','2025-12-19 17:55:26',0),(19850,2526,0,0,6807,'2025-12-19','00:00:00',4385,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7510,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 17:52:48','reception','2025-12-19 17:53:55',0),(19851,2526,0,0,4017,'2025-12-19','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','RC07','','',0,'','',0,308,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 05:26:05','vishal','2025-12-19 19:00:27',0),(19852,2526,0,0,4017,'2025-12-19','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,309,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 05:26:05','vishal','2025-12-19 19:00:27',0),(19853,2526,0,0,4017,'2025-12-19','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,310,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 05:26:05','vishal','2025-12-19 19:00:27',0),(19854,2526,0,0,4017,'2025-12-19','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,312,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 05:26:05','vishal','2025-12-21 11:20:51',0),(19855,2526,0,0,4017,'2025-12-19','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,313,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 05:26:05','vishal','2025-12-21 11:20:51',0),(19856,2526,0,0,6808,'2025-12-19','00:00:00',4386,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7513,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 18:00:18','drashti','2025-12-19 18:00:57',0),(19857,2526,0,0,6809,'2025-12-19','00:00:00',4387,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7512,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 18:00:19','reception','2025-12-19 18:00:44',0),(19858,2526,0,0,6783,'2025-12-19','18:02:26',4376,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7514,1,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 18:02:26','reception','2025-12-19 18:02:26',0),(19859,2526,0,0,6783,'2025-12-19','18:02:26',4376,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7514,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 18:02:26','reception','2025-12-19 18:02:26',0),(19860,2526,0,0,6783,'2025-12-19','18:02:26',4376,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7514,3,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 18:02:26','reception','2025-12-19 18:02:26',0),(19861,2526,0,0,6810,'2025-12-19','00:00:00',1329,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7515,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-19 18:06:59','priyanshi','2025-12-19 18:07:06',0),(19862,2526,0,0,6811,'2025-12-19','00:00:00',2684,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7516,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-19 18:07:35','priyanshi','2025-12-19 18:07:43',0),(19863,2526,0,0,6781,'2025-12-19','18:07:51',4374,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7517,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 18:07:51','reception','2025-12-19 18:07:51',0),(19864,2526,0,0,6781,'2025-12-19','18:07:51',4374,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7517,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 18:07:51','reception','2025-12-19 18:07:51',0),(19865,2526,0,0,6781,'2025-12-19','18:07:51',4374,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7517,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 18:07:51','reception','2025-12-19 18:07:51',0),(19866,2526,0,0,6812,'2025-12-19','00:00:00',3776,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7518,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 18:10:13','reception','2025-12-19 18:10:40',0),(19867,2526,0,0,6813,'2025-12-19','00:00:00',3908,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7519,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 18:18:57','reception','2025-12-19 18:19:11',0),(19868,2526,0,0,6814,'2025-12-19','00:00:00',4388,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7520,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 18:22:36','reception','2025-12-19 18:23:01',0),(19869,2526,0,0,6815,'2025-12-19','18:24:35',3319,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7521,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-19 18:24:35','priyanshi','2025-12-19 18:24:35',0),(19870,2526,0,0,6816,'2025-12-19','00:00:00',3181,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',7522,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 18:25:50','reception','2025-12-19 18:25:59',0),(19871,2526,0,0,6803,'2025-12-19','18:26:49',4078,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7523,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-19 18:26:49','priyanshi','2025-12-19 18:26:49',0),(19872,2526,0,0,6817,'2025-12-19','18:29:16',3887,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7524,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 18:29:16','drashti','2025-12-19 18:29:16',0),(19873,2526,0,0,6819,'2025-12-19','00:00:00',221,0,'PKG','CASE','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7525,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 18:31:17','drashti','2025-12-19 18:32:53',0),(19874,2526,0,0,6821,'2025-12-19','00:00:00',242,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7527,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 18:34:38','drashti','2025-12-19 18:34:54',0),(19875,2526,0,0,6820,'2025-12-19','18:34:42',3259,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7526,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-19 18:34:42','priyanshi','2025-12-19 18:34:42',0),(19876,2526,0,0,6822,'2025-12-19','00:00:00',3476,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7542,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 18:34:43','drashti','2025-12-19 18:58:47',0),(19877,2526,0,0,6823,'2025-12-19','00:00:00',4389,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7528,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-19 18:35:55','priyanshi','2025-12-19 18:37:09',0),(19878,2526,0,0,6824,'2025-12-19','00:00:00',4390,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7529,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-19 18:37:26','manshi','2025-12-19 18:37:47',0),(19879,2526,0,0,6825,'2025-12-19','00:00:00',4391,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7531,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 18:37:49','drashti','2025-12-19 18:38:42',0),(19880,2526,0,0,6807,'2025-12-19','18:38:09',4385,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7530,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 18:38:09','reception','2025-12-19 18:38:09',0),(19881,2526,0,0,6807,'2025-12-19','18:38:09',4385,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7530,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 18:38:09','reception','2025-12-19 18:38:09',0),(19882,2526,0,0,6826,'2025-12-19','18:43:33',4065,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7532,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-19 18:43:33','manshi','2025-12-19 18:43:33',0),(19883,2526,0,0,6827,'2025-12-19','00:00:00',1070,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7533,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-19 18:46:45','priyanshi','2025-12-19 18:46:53',0),(19884,2526,0,0,6828,'2025-12-19','00:00:00',3848,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7534,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 18:46:58','reception','2025-12-19 18:47:18',0),(19885,2526,0,0,6829,'2025-12-19','00:00:00',1049,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7535,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 18:50:12','drashti','2025-12-19 18:50:27',0),(19886,2526,0,0,6832,'2025-12-19','00:00:00',3188,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7536,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 18:51:53','reception','2025-12-19 18:52:22',0),(19887,2526,0,0,6833,'2025-12-19','00:00:00',4392,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7537,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-19 18:51:53','priyanshi','2025-12-19 18:53:51',0),(19888,2526,0,0,6834,'2025-12-19','00:00:00',4393,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7538,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-19 18:53:11','priyanshi','2025-12-19 18:53:57',0),(19889,2526,0,0,6804,'2025-12-19','18:55:08',4383,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7539,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 18:55:08','reception','2025-12-19 18:55:08',0),(19890,2526,0,0,6804,'2025-12-19','18:55:08',4383,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7539,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 18:55:08','reception','2025-12-19 18:55:08',0),(19891,2526,0,0,6830,'2025-12-19','18:55:55',4334,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',7540,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-19 18:55:55','manshi','2025-12-19 18:55:55',0),(19892,2526,0,0,6835,'2025-12-19','18:58:35',3310,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7541,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-19 18:58:35','priyanshi','2025-12-19 18:58:35',0),(19893,2526,0,0,4017,'2025-12-19','18:56:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,313,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:00:27','','0000-00-00 00:00:00',0),(19894,2526,0,0,4017,'2025-12-19','18:58:00',0,187,'WPRC','WPRC0118','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,314,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:00:27','','0000-00-00 00:00:00',0),(19895,2526,0,0,4017,'2025-12-19','18:59:00',0,187,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',0,'','',0,315,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:00:27','','0000-00-00 00:00:00',0),(19896,2526,0,0,4017,'2025-12-19','18:59:00',0,187,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,316,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:00:27','','0000-00-00 00:00:00',0),(19897,2526,0,0,4017,'2025-12-19','18:59:00',0,187,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',0,'','',0,317,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:00:27','','0000-00-00 00:00:00',0),(19898,2526,0,0,6836,'2025-12-19','00:00:00',4394,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7543,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 19:00:50','reception','2025-12-19 19:01:18',0),(19899,2526,0,0,6837,'2025-12-19','00:00:00',4395,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7544,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-19 19:01:27','manshi','2025-12-19 19:02:49',0),(19900,2526,0,0,4017,'2025-12-19','19:00:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'A',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,319,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:01:46','vishal','2025-12-21 11:20:51',0),(19901,2526,0,0,4017,'2025-12-19','19:00:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,320,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:01:46','vishal','2025-12-21 11:20:51',0),(19902,2526,0,0,6838,'2025-12-19','00:00:00',4396,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7548,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 19:02:32','reception','2025-12-19 19:45:29',0),(19903,2526,0,0,6706,'2025-12-18','19:02:00',0,305,'WPRC','WPRC0087','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',308,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:05:00','vishal','2025-12-19 19:06:48',0),(19904,2526,0,0,6706,'2025-12-19','19:03:00',0,305,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',308,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:05:00','','0000-00-00 00:00:00',0),(19905,2526,0,0,6706,'2025-12-18','19:03:00',0,305,'WPRC','WPRC0079','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,5,0,0,'',0,0,'','','','','',2526,'H','I',308,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:05:00','vishal','2025-12-19 19:06:48',0),(19906,2526,0,0,6706,'2025-12-18','19:03:00',0,305,'ROOM','ROOM0008','H','N',1.00,100,100,'A',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',0,'','',0,3,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:05:00','riya','2025-12-20 12:22:06',0),(19907,2526,0,0,6706,'2025-12-19','19:03:00',0,305,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',308,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:05:00','','0000-00-00 00:00:00',0),(19908,2526,0,0,6706,'2025-12-18','19:04:00',0,305,'ROOM','ROOM0008','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',308,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:05:00','riya','2025-12-20 12:22:53',0),(19909,2526,0,0,6706,'2025-12-19','19:04:00',0,305,'DRC','DRC0020','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,41,0,0,'',0,0,'','','','','',2526,'H','I',308,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:05:00','','0000-00-00 00:00:00',0),(19910,2526,0,0,6706,'2025-12-18','19:05:00',0,305,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',308,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:06:48','riya','2025-12-20 12:39:20',0),(19911,2526,0,0,6706,'2025-12-18','19:06:00',0,305,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',308,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:06:48','riya','2025-12-20 12:39:30',0),(19912,2526,0,0,6706,'2025-12-18','19:06:00',0,305,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',308,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:06:48','riya','2025-12-20 12:39:44',0),(19913,2526,0,0,6447,'2025-12-19','19:08:00',4209,299,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','','','','',2526,'H','I',296,20,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:09:12','','0000-00-00 00:00:00',0),(19914,2526,0,0,6447,'2025-12-19','19:08:00',4209,299,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','','','','',2526,'H','I',296,21,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:09:12','','0000-00-00 00:00:00',0),(19915,2526,0,0,6839,'2025-12-19','19:10:15',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7545,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 19:10:15','drashti','2025-12-19 19:10:15',0),(19916,2526,0,0,6840,'2025-12-19','00:00:00',4397,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7546,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-19 19:14:02','drashti','2025-12-19 19:14:48',0),(19917,2526,0,0,6841,'2025-12-19','19:20:47',3378,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7547,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-19 19:20:47','priyanshi','2025-12-19 19:20:47',0),(19918,2526,0,0,6712,'2025-12-19','19:31:00',2738,307,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',297,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:34:41','','0000-00-00 00:00:00',0),(19919,2526,0,0,6712,'2025-12-19','19:33:00',2738,307,'CARE','CARE0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',297,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:34:41','','0000-00-00 00:00:00',0),(19920,2526,0,0,6712,'2025-12-19','19:35:00',2738,307,'WPRC','WPRC0114','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','I',297,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 19:36:05','','0000-00-00 00:00:00',0),(19921,2526,0,0,6809,'2025-12-19','19:52:56',4387,0,'NEU1','NEU10020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',7549,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 19:52:56','reception','2025-12-19 19:52:56',0),(19922,2526,0,0,6838,'2025-12-19','20:03:41',4396,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7550,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-19 20:03:41','reception','2025-12-19 20:03:41',0),(19923,2526,0,0,6707,'2025-12-18','20:29:00',0,306,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',298,6,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 20:30:47','vishal','2025-12-19 20:32:47',0),(19924,2526,0,0,6397,'2025-12-19','15:30:00',0,298,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','RC04','','',2526,'H','I',304,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:44','vishal','2025-12-19 20:55:11',0),(19925,2526,0,0,6397,'2025-12-19','15:30:00',0,298,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',304,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:44','vishal','2025-12-19 20:55:11',0),(19926,2526,0,0,6397,'2025-12-19','15:30:00',0,298,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',304,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:44','vishal','2025-12-19 20:55:11',0),(19927,2526,0,0,6397,'2025-12-19','15:30:00',0,298,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','405','','','',2526,'H','I',304,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:44','riya','2025-12-20 17:42:13',0),(19928,2526,0,0,6397,'2025-12-19','15:30:00',0,298,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','405','','','',2526,'H','I',304,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:44','riya','2025-12-20 17:42:13',0),(19929,2526,0,0,6461,'2025-12-19','10:15:00',4206,301,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','RC04','','',2526,'H','I',302,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:44','riya','2025-12-20 13:37:29',0),(19930,2526,0,0,6461,'2025-12-19','10:15:00',4206,301,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',2526,'H','I',302,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:44','riya','2025-12-20 13:37:29',0),(19931,2526,0,0,6461,'2025-12-19','10:15:00',4206,301,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',2526,'H','I',302,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:44','riya','2025-12-20 13:37:29',0),(19932,2526,0,0,6461,'2025-12-19','10:15:00',4206,301,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','401','','','',2526,'H','I',302,16,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:44','riya','2025-12-20 13:37:29',0),(19933,2526,0,0,6461,'2025-12-19','10:15:00',4206,301,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','401','','','',2526,'H','I',302,17,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:45','riya','2025-12-20 13:37:29',0),(19934,2526,0,0,6576,'2025-12-19','20:30:00',4269,302,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','409','RC03','','',2526,'H','I',301,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:45','riya','2025-12-20 13:40:33',0),(19935,2526,0,0,6576,'2025-12-19','20:30:00',4269,302,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','409','','','',2526,'H','I',301,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:45','riya','2025-12-20 13:40:33',0),(19936,2526,0,0,6576,'2025-12-19','20:30:00',4269,302,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','409','','','',2526,'H','I',301,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:45','riya','2025-12-20 13:40:33',0),(19937,2526,0,0,6576,'2025-12-19','20:30:00',4269,302,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',301,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:45','riya','2025-12-20 13:40:33',0),(19938,2526,0,0,6576,'2025-12-19','20:30:00',4269,302,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','409','','','',2526,'H','I',301,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:45','riya','2025-12-20 13:40:33',0),(19939,2526,0,0,6706,'2025-12-19','19:50:00',0,305,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','207','','','',2526,'H','I',308,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:45','riya','2025-12-20 12:08:21',0),(19940,2526,0,0,6706,'2025-12-19','19:50:00',0,305,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','207','','','',2526,'H','I',308,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:45','riya','2025-12-20 12:08:21',0),(19941,2526,0,0,6706,'2025-12-19','19:50:00',0,305,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','207','','','',2526,'H','I',308,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:45','riya','2025-12-20 12:08:21',0),(19942,2526,0,0,6706,'2025-12-19','19:50:00',0,305,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','207','','','',2526,'H','I',308,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:45','riya','2025-12-20 12:08:21',0),(19943,2526,0,0,6706,'2025-12-19','19:50:00',0,305,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','207','','','',2526,'H','I',308,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:06:45','riya','2025-12-20 12:08:21',0),(19944,2526,0,0,6165,'2025-12-19','20:46:00',0,285,'ROOM','ROOM0008','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 20:49:00','riya','2025-12-22 14:02:45',0),(19945,2526,0,0,6165,'2025-12-17','20:47:00',0,285,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 20:49:00','','0000-00-00 00:00:00',0),(19946,2526,0,0,6165,'2025-12-18','20:47:00',0,285,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 20:49:00','','0000-00-00 00:00:00',0),(19947,2526,0,0,6165,'2025-12-19','20:48:00',0,285,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 20:49:00','','0000-00-00 00:00:00',0),(19948,2526,0,0,6165,'2025-12-19','20:48:00',0,285,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 20:49:00','','0000-00-00 00:00:00',0),(19949,2526,0,0,6576,'2025-12-17','20:52:00',4269,302,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',301,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 20:53:42','riya','2025-12-20 13:40:33',0),(19950,2526,0,0,6576,'2025-12-18','20:52:00',4269,302,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',301,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 20:53:42','riya','2025-12-20 13:40:33',0),(19951,2526,0,0,6576,'2025-12-19','20:52:00',4269,302,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',301,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 20:53:42','riya','2025-12-20 13:40:33',0),(19952,2526,0,0,6576,'2025-12-18','20:52:00',4269,302,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',301,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 20:53:42','riya','2025-12-20 13:40:33',0),(19953,2526,0,0,6576,'2025-12-19','20:52:00',4269,302,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',301,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 20:53:42','riya','2025-12-20 13:40:33',0),(19954,2526,0,0,6576,'2025-12-17','20:53:00',4269,302,'WPRC','WPRC0089','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',301,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 20:53:42','riya','2025-12-20 13:40:33',0),(19955,2526,0,0,6576,'2025-12-18','20:53:00',4269,302,'WPRC','WPRC0089','H','N',4.00,100,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','I',301,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 20:53:42','riya','2025-12-20 13:40:33',0),(19956,2526,0,0,6576,'2025-12-19','20:53:00',4269,302,'WPRC','WPRC0089','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',301,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 20:53:42','riya','2025-12-20 13:40:33',0),(19957,2526,0,0,6397,'2025-12-19','20:54:00',0,298,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',304,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 20:55:11','','0000-00-00 00:00:00',0),(19958,2526,0,0,6843,'2025-12-19','21:00:00',0,311,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',312,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 21:12:23','riya','2025-12-20 10:31:40',0),(19959,2526,0,0,6843,'2025-12-19','21:00:00',0,311,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',312,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 21:12:23','riya','2025-12-20 10:31:40',0),(19960,2526,0,0,6843,'2025-12-19','21:00:00',0,311,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','RC04','','',2526,'H','I',312,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:42:23','riya','2025-12-20 10:31:40',0),(19961,2526,0,0,6843,'2025-12-19','21:00:00',0,311,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',312,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:42:23','riya','2025-12-20 10:31:40',0),(19962,2526,0,0,6843,'2025-12-19','21:00:00',0,311,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',312,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:42:23','riya','2025-12-20 10:31:40',0),(19963,2526,0,0,6843,'2025-12-19','21:00:00',0,311,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,42,0,0,'',0,0,'','404','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:42:23','riya','2025-12-21 12:20:56',0),(19964,2526,0,0,6843,'2025-12-19','21:00:00',0,311,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,42,0,0,'',0,0,'','404','','','',0,'','',0,7,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-19 08:42:23','riya','2025-12-21 12:20:56',0),(19965,2526,0,0,6844,'2025-12-20','00:00:00',3852,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-20 08:47:34','priyanshi','2025-12-19 20:17:34',0),(19966,2526,0,0,6844,'2025-12-20','08:48:40',3852,0,'SURG','SURG0005','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,2,0,0,'',0,0,'','','','','',2526,'H','O',7551,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-20 08:48:40','priyanshi','2025-12-20 08:48:40',0),(19967,2526,0,0,6844,'2025-12-20','08:48:40',3852,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,2,0,0,'',0,0,'','','','','',2526,'H','O',7551,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-20 08:48:40','priyanshi','2025-12-20 08:48:40',0),(19968,2526,0,0,6845,'2025-12-20','00:00:00',4398,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-20 08:50:14','priyanshi','2025-12-19 20:20:14',0),(19969,2526,0,0,6845,'2025-12-20','08:50:53',4398,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',7552,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'priyanshi','2025-12-20 08:50:53','priyanshi','2025-12-20 08:50:53',0),(19970,2526,0,0,6845,'2025-12-20','08:50:53',4398,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7552,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'priyanshi','2025-12-20 08:50:53','priyanshi','2025-12-20 08:50:53',0),(19971,2526,0,0,6845,'2025-12-20','08:50:53',4398,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,125,'',0,0,'','','','','',2526,'H','O',7552,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'priyanshi','2025-12-20 08:50:53','priyanshi','2025-12-20 08:50:53',0),(19972,2526,0,0,6613,'2025-12-20','09:00:00',0,304,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','RC04','','',2526,'H','I',303,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 20:50:52','riya','2025-12-20 11:49:31',0),(19973,2526,0,0,6613,'2025-12-20','09:00:00',0,304,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',303,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 20:50:52','riya','2025-12-20 11:49:31',0),(19974,2526,0,0,6613,'2025-12-20','09:00:00',0,304,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',303,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 20:50:52','riya','2025-12-20 11:49:31',0),(19975,2526,0,0,6613,'2025-12-20','09:00:00',0,304,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','408','','','',2526,'H','I',303,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 20:50:52','riya','2025-12-20 11:49:31',0),(19976,2526,0,0,6613,'2025-12-20','09:00:00',0,304,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,3,0,0,'',0,0,'','408','','','',0,'','',0,16,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 20:50:52','riya','2025-12-20 12:00:45',0),(19977,2526,0,0,5120,'2025-12-20','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','RC04','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 20:55:34','vishal','2025-12-21 12:14:48',0),(19978,2526,0,0,5120,'2025-12-20','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 20:55:34','vishal','2025-12-21 12:14:48',0),(19979,2526,0,0,5120,'2025-12-20','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 20:55:34','vishal','2025-12-22 17:22:21',0),(19980,2526,0,0,5120,'2025-12-20','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 20:55:34','vishal','2025-12-22 17:22:21',0),(19981,2526,0,0,5120,'2025-12-20','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 20:55:34','vishal','2025-12-22 17:22:21',0),(19982,2526,0,0,6846,'2025-12-20','00:00:00',2680,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7553,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-20 09:42:01','drashti','2025-12-20 09:42:45',0),(19983,2526,0,0,6847,'2025-12-20','00:00:00',4399,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7554,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-20 10:19:29','manshi','2025-12-20 10:20:47',0),(19984,2526,0,0,6848,'2025-12-20','00:00:00',3146,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7555,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-20 10:26:17','janvi','2025-12-20 10:26:29',0),(19985,2526,0,0,6780,'2025-12-19','10:27:00',0,310,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',315,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 10:28:42','','0000-00-00 00:00:00',0),(19986,2526,0,0,6780,'2025-12-19','10:28:00',0,310,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',315,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 10:28:42','','0000-00-00 00:00:00',0),(19987,2526,0,0,6843,'2025-12-19','10:30:00',0,311,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',312,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 10:31:40','','0000-00-00 00:00:00',0),(19988,2526,0,0,6843,'2025-12-19','10:30:00',0,311,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',312,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 10:31:40','','0000-00-00 00:00:00',0),(19989,2526,0,0,6843,'2025-12-19','10:30:00',0,311,'WPRC','WPRC0079','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,42,0,0,'',0,0,'','','','','',2526,'H','I',312,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 10:31:40','vishal','2025-12-22 21:15:20',0),(19990,2526,0,0,6850,'2025-12-20','00:00:00',4400,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7556,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-20 10:34:14','drashti','2025-12-20 10:35:06',0),(19991,2526,0,0,6346,'2025-12-16','10:34:00',4056,297,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,24,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 10:34:33','riya','2025-12-20 10:38:05',0),(19992,2526,0,0,6346,'2025-12-16','10:35:00',4056,297,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',0,'','',0,25,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 10:35:50','riya','2025-12-20 10:38:05',0),(19993,2526,0,0,6346,'2025-12-17','10:36:00',4056,297,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,3,0,0,'',0,0,'','','','','',0,'','',0,25,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 10:37:19','','0000-00-00 00:00:00',0),(19994,2526,0,0,6346,'2025-12-16','10:38:00',4056,297,'DRC','DRC0019','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',0,'','',0,26,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 10:40:59','','0000-00-00 00:00:00',0),(19995,2526,0,0,6346,'2025-12-19','10:40:00',4056,297,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',0,'','',0,27,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 10:40:59','','0000-00-00 00:00:00',0),(19996,2526,0,0,6346,'2025-12-20','10:40:00',4056,297,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','410','RC03','','',0,'','',0,28,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 22:11:00','riya','2025-12-20 10:41:31',0),(19997,2526,0,0,6346,'2025-12-20','10:40:00',4056,297,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','410','','','',0,'','',0,29,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 22:11:00','riya','2025-12-20 10:41:31',0),(19998,2526,0,0,6346,'2025-12-20','10:40:00',4056,297,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','410','','','',0,'','',0,30,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 22:11:00','riya','2025-12-20 10:41:31',0),(19999,2526,0,0,6346,'2025-12-20','10:40:00',4056,297,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',0,'','',0,31,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 22:11:00','riya','2025-12-20 10:41:31',0),(20000,2526,0,0,6346,'2025-12-20','10:40:00',4056,297,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','410','','','',0,'','',0,32,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-19 22:11:00','riya','2025-12-20 10:41:31',0),(20001,2526,0,0,6346,'2025-12-16','10:41:00',4056,297,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,62,0,0,'',0,0,'','','','','',0,'','',0,33,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 10:42:08','','0000-00-00 00:00:00',0),(20002,2526,0,0,6851,'2025-12-20','00:00:00',4047,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7570,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-20 10:44:03','drashti','2025-12-20 11:36:50',0),(20003,2526,0,0,6397,'2025-12-20','10:44:00',0,298,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',304,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 10:44:33','riya','2025-12-20 17:24:12',0),(20004,2526,0,0,6849,'2025-12-20','10:55:35',3305,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7557,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-20 10:55:35','janvi','2025-12-20 10:55:35',0),(20005,2526,0,0,6852,'2025-12-20','00:00:00',4401,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7558,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-20 11:00:49','manshi','2025-12-20 11:01:29',0),(20006,2526,0,0,6853,'2025-12-20','00:00:00',4402,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7559,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-20 11:01:39','drashti','2025-12-20 11:02:36',0),(20007,2526,0,0,6854,'2025-12-20','00:00:00',4403,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7562,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-20 11:07:26','manshi','2025-12-20 11:15:19',0),(20008,2526,0,0,6855,'2025-12-20','00:00:00',4404,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7560,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-20 11:09:53','drashti','2025-12-20 11:10:37',0),(20009,2526,0,0,6856,'2025-12-20','00:00:00',4405,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7561,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-20 11:10:36','priyanshi','2025-12-20 11:12:10',0),(20010,2526,0,0,6858,'2025-12-20','00:00:00',4406,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7563,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-20 11:15:46','priyanshi','2025-12-20 11:16:08',0),(20011,2526,0,0,6855,'2025-12-20','11:18:17',4404,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,50.00,50,9999,0,126,'',0,0,'','','','','',2526,'H','O',7564,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'priyanshi','2025-12-20 11:18:17','priyanshi','2025-12-20 11:18:17',0),(20012,2526,0,0,6847,'2025-12-20','11:21:24',4399,0,'XRY','XRY0045','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7565,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-20 11:21:24','manshi','2025-12-20 11:21:24',0),(20013,2526,0,0,6850,'2025-12-20','11:26:49',4400,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7566,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-20 11:26:49','drashti','2025-12-20 11:26:49',0),(20014,2526,0,0,6861,'2025-12-20','00:00:00',4407,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7567,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-20 11:27:11','priyanshi','2025-12-20 11:28:04',0),(20015,2526,0,0,6862,'2025-12-20','00:00:00',251,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7569,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-20 11:28:19','drashti','2025-12-20 11:30:53',0),(20016,2526,0,0,6853,'2025-12-20','11:30:29',4402,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7568,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-20 11:30:29','drashti','2025-12-20 11:30:29',0),(20017,2526,0,0,6863,'2025-12-20','00:00:00',4408,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7571,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-20 11:38:22','janvi','2025-12-20 11:38:48',0),(20018,2526,0,0,6864,'2025-12-20','00:00:00',4409,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7572,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-20 11:44:47','manshi','2025-12-20 11:45:19',0),(20019,2526,0,0,6865,'2025-12-20','00:00:00',4410,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7573,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-20 11:45:40','drashti','2025-12-20 11:46:24',0),(20020,2526,0,0,6866,'2025-12-20','00:00:00',2929,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7574,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-20 11:46:27','priyanshi','2025-12-20 11:48:20',0),(20021,2526,0,0,6867,'2025-12-20','00:00:00',3263,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7575,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-20 11:46:56','priyanshi','2025-12-20 11:48:25',0),(20022,2526,0,0,6868,'2025-12-20','00:00:00',4411,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7576,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-20 11:48:42','drashti','2025-12-20 11:50:12',0),(20023,2526,0,0,6613,'2025-12-18','11:48:00',0,304,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',303,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 11:49:31','','0000-00-00 00:00:00',0),(20024,2526,0,0,6869,'2025-12-20','00:00:00',4412,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7577,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-20 11:53:06','priyanshi','2025-12-20 11:53:41',0),(20025,2526,0,0,6613,'2025-12-18','11:53:00',0,304,'ROOM','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',303,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 11:53:48','riya','2025-12-20 12:42:21',0),(20026,2526,0,0,6613,'2025-12-18','11:54:00',0,304,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',303,19,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 11:55:13','riya','2025-12-20 11:56:30',0),(20027,2526,0,0,6613,'2025-12-18','11:56:00',0,304,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',303,20,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 11:56:53','','0000-00-00 00:00:00',0),(20028,2526,0,0,6613,'2025-12-18','11:56:00',0,304,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,3,0,0,'',0,0,'','','','','',2526,'H','I',303,21,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 11:57:36','','0000-00-00 00:00:00',0),(20029,2526,0,0,6613,'2025-12-18','11:57:00',0,304,'WPRC','WPRC0086','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,9999,0,0,'',0,0,'','','','','',2526,'H','I',303,12,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 11:58:23','riya','2025-12-20 13:04:41',0),(20030,2526,0,0,6613,'2025-12-20','11:58:00',0,304,'WPRC','WPRC0114','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','I',303,22,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 11:58:49','riya','2025-12-20 12:45:08',0),(20031,2526,0,0,6870,'2025-12-20','00:00:00',4413,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-20 12:03:53','priyanshi','2025-12-19 23:33:53',0),(20032,2526,0,0,6870,'2025-12-20','12:04:08',4413,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7578,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-20 12:04:08','priyanshi','2025-12-20 12:04:08',0),(20033,2526,0,0,6461,'2025-12-20','10:15:00',4206,301,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','401','RC04','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drjayant','2025-12-19 23:36:27','riya','2025-12-20 13:37:29',0),(20034,2526,0,0,6461,'2025-12-20','10:15:00',4206,301,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drjayant','2025-12-19 23:36:27','riya','2025-12-20 13:37:29',0),(20035,2526,0,0,6461,'2025-12-20','10:15:00',4206,301,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drjayant','2025-12-19 23:36:27','riya','2025-12-20 13:37:29',0),(20036,2526,0,0,6461,'2025-12-20','10:15:00',4206,301,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,5,0,0,'',0,0,'','401','','','',2526,'H','I',302,18,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'drjayant','2025-12-19 23:36:27','riya','2025-12-20 13:37:29',0),(20037,2526,0,0,6461,'2025-12-20','10:15:00',4206,301,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drjayant','2025-12-19 23:36:27','riya','2025-12-20 13:37:29',0),(20038,2526,0,0,6706,'2025-12-20','12:07:00',0,305,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',308,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 12:08:21','','0000-00-00 00:00:00',0),(20039,2526,0,0,6706,'2025-12-20','12:08:00',0,305,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',308,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 12:08:56','','0000-00-00 00:00:00',0),(20040,2526,0,0,6706,'2025-12-20','12:09:00',0,305,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,5,0,0,'',0,0,'','','','','',2526,'H','I',308,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 12:10:22','','0000-00-00 00:00:00',0),(20041,2526,0,0,6706,'2025-12-19','12:09:00',0,305,'DRC','DRC0018','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,41,0,0,'',0,0,'','','','','',0,'','',0,22,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 12:10:22','riya','2025-12-20 12:21:01',0),(20042,2526,0,0,6863,'2025-12-20','12:14:14',4408,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',7579,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-20 12:14:14','janvi','2025-12-20 12:14:14',0),(20043,2526,0,0,6871,'2025-12-20','00:00:00',4414,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7581,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-20 12:14:26','priyanshi','2025-12-20 12:16:00',0),(20044,2526,0,0,6872,'2025-12-20','00:00:00',4415,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7580,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-20 12:15:19','drashti','2025-12-20 12:50:55',0),(20045,2526,0,0,6873,'2025-12-20','00:00:00',4416,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7582,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-20 12:21:42','manshi','2025-12-20 12:22:20',0),(20046,2526,0,0,6706,'2025-12-19','12:22:00',0,305,'ROOM','ROOM0008','H','N',6.00,100,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','I',308,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 12:22:53','','0000-00-00 00:00:00',0),(20047,2526,0,0,6874,'2025-12-20','00:00:00',4417,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7583,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-20 12:27:47','drashti','2025-12-20 12:28:33',0),(20048,2526,0,0,6875,'2025-12-20','00:00:00',4418,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7585,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-20 12:27:55','shweta','2025-12-20 12:29:29',0),(20049,2526,0,0,6847,'2025-12-20','12:29:11',4399,0,'OPWD','OPWD0023','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,6,0,0,'',0,0,'','','','','',2526,'H','O',7584,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-20 12:29:11','manshi','2025-12-20 12:29:11',0),(20050,2526,0,0,6876,'2025-12-20','00:00:00',4419,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7587,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-20 12:29:58','drashti','2025-12-20 12:32:06',0),(20051,2526,0,0,6877,'2025-12-20','00:00:00',2659,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7586,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-20 12:30:44','drashti','2025-12-20 13:06:56',0),(20052,2526,0,0,6878,'2025-12-20','00:00:00',4420,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7588,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-20 12:32:23','janvi','2025-12-20 12:32:53',0),(20053,2526,0,0,6879,'2025-12-20','00:00:00',4421,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7589,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-20 12:32:56','drashti','2025-12-20 12:33:46',0),(20054,2526,0,0,6875,'2025-12-20','12:42:19',4418,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,50.00,50,9999,0,127,'',0,0,'','','','','',2526,'H','O',7590,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'janvi','2025-12-20 12:42:19','janvi','2025-12-20 12:42:19',0),(20055,2526,0,0,6872,'2025-12-20','12:53:02',4415,0,'PKG','CASE','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7592,1,350,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-20 12:53:02','drashti','2025-12-20 12:53:02',0),(20056,2526,0,0,6880,'2025-12-20','00:00:00',4422,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7593,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-20 13:04:44','manshi','2025-12-20 13:05:39',0),(20057,2526,0,0,6613,'2025-12-18','13:05:00',0,304,'PKG','PKG0009','H','N',1.00,60000,60000,'P',0,0,0.00,0.00,60000.00,60000,3,0,0,'',0,0,'','','','','',2526,'H','I',303,23,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 13:07:00','','0000-00-00 00:00:00',0),(20058,2526,0,0,6860,'2025-12-20','13:08:44',4317,0,'OPWD','OPWD0023','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,3,0,0,'',0,0,'','','','','',2526,'H','O',7595,1,2000,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-20 13:08:44','janvi','2025-12-20 13:08:44',0),(20059,2526,0,0,6881,'2025-12-20','00:00:00',4423,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7596,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-20 13:11:52','shweta','2025-12-20 13:12:25',0),(20060,2526,0,0,6613,'2025-12-20','13:13:00',0,304,'SURG','SURG0015','H','N',1.00,15000,15000,'P',0,0,0.00,0.00,15000.00,15000,3,0,0,'',0,0,'','','','','',2526,'H','I',303,24,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 13:15:01','','0000-00-00 00:00:00',0),(20061,2526,0,0,6576,'2025-12-20','13:19:00',4269,302,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',301,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 13:20:16','riya','2025-12-20 13:40:33',0),(20062,2526,0,0,6576,'2025-12-20','13:20:00',4269,302,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',301,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 13:21:16','riya','2025-12-20 13:40:33',0),(20063,2526,0,0,6576,'2025-12-20','13:26:00',4269,302,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','I',301,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 13:26:39','riya','2025-12-20 13:40:33',0),(20064,2526,0,0,6461,'2025-12-19','13:31:00',4206,301,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,302,0,0,'',0,0,'','','','','',2526,'H','I',302,25,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 13:37:29','riya','2025-12-20 13:56:09',0),(20065,2526,0,0,6461,'2025-12-17','13:34:00',4206,301,'WPRC','WPRC0089','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',302,20,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 13:37:29','','0000-00-00 00:00:00',0),(20066,2526,0,0,6461,'2025-12-18','13:35:00',4206,301,'WPRC','WPRC0089','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',302,21,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 13:37:29','','0000-00-00 00:00:00',0),(20067,2526,0,0,6461,'2025-12-19','13:35:00',4206,301,'WPRC','WPRC0089','H','N',5.00,100,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',302,22,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 13:37:29','','0000-00-00 00:00:00',0),(20068,2526,0,0,6461,'2025-12-20','13:36:00',4206,301,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',302,23,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 13:37:29','','0000-00-00 00:00:00',0),(20069,2526,0,0,6461,'2025-12-17','13:36:00',4206,301,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',302,24,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 13:37:29','','0000-00-00 00:00:00',0),(20070,2526,0,0,6461,'2025-12-17','13:36:00',4206,301,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',302,25,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 13:37:29','','0000-00-00 00:00:00',0),(20071,2526,0,0,6461,'2025-12-18','13:36:00',4206,301,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,5,0,0,'',0,0,'','','','','',2526,'H','I',302,26,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 13:37:29','','0000-00-00 00:00:00',0),(20072,2526,0,0,6881,'2025-12-20','14:01:51',4423,0,'OPWD','OPWD0029','H','N',2.00,1000,2000,'P',0,0,0.00,0.00,2000.00,2000,3,0,0,'',0,0,'','','','','',2526,'H','O',7597,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-20 14:01:51','shweta','2025-12-20 14:01:51',0),(20073,2526,0,0,6882,'2025-12-20','14:30:00',0,312,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',305,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 14:42:00','vishal','2025-12-21 12:05:01',0),(20074,2526,0,0,6882,'2025-12-20','14:30:00',0,312,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',305,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 14:42:00','vishal','2025-12-21 12:05:01',0),(20075,2526,0,0,6882,'2025-12-20','14:30:00',0,312,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','RC03','','',2526,'H','I',305,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 02:12:00','vishal','2025-12-21 12:05:01',0),(20076,2526,0,0,6882,'2025-12-20','14:30:00',0,312,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',305,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 02:12:00','vishal','2025-12-21 12:05:01',0),(20077,2526,0,0,6882,'2025-12-20','14:30:00',0,312,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',305,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 02:12:00','vishal','2025-12-21 12:05:01',0),(20078,2526,0,0,6882,'2025-12-20','14:30:00',0,312,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-20 02:12:00','vishal','2025-12-21 12:05:01',0),(20079,2526,0,0,6882,'2025-12-20','14:30:00',0,312,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,8,0,0,'',0,0,'','412','','','',2526,'H','I',305,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 02:12:00','vishal','2025-12-21 12:05:01',0),(20080,2526,0,0,6883,'2025-12-20','00:00:00',957,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-20 15:37:39','priyanshi','2025-12-20 03:07:39',0),(20081,2526,0,0,6883,'2025-12-20','15:37:57',957,0,'OPWD','OPWD0016','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7598,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-20 15:37:57','priyanshi','2025-12-20 15:37:57',0),(20082,2526,0,0,6884,'2025-12-20','12:30:00',2680,313,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',0,'','',0,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 16:39:45','vishal','2025-12-21 12:08:07',0),(20083,2526,0,0,6884,'2025-12-20','12:30:00',2680,313,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',0,'','',0,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 16:39:45','vishal','2025-12-21 12:08:07',0),(20084,2526,0,0,6884,'2025-12-20','12:30:00',2680,313,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','RC04','','',0,'','',0,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 04:09:45','vishal','2025-12-21 12:08:07',0),(20085,2526,0,0,6884,'2025-12-20','12:30:00',2680,313,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',0,'','',0,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 04:09:45','vishal','2025-12-21 12:08:07',0),(20086,2526,0,0,6884,'2025-12-20','12:30:00',2680,313,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',0,'','',0,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 04:09:45','vishal','2025-12-21 12:08:07',0),(20087,2526,0,0,6884,'2025-12-20','12:30:00',2680,313,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','401','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-20 04:09:45','vishal','2025-12-21 12:08:07',0),(20088,2526,0,0,6884,'2025-12-20','12:30:00',2680,313,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,8,0,0,'',0,0,'','401','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 04:09:45','vishal','2025-12-21 12:08:07',0),(20089,2526,0,0,6397,'2025-12-20','15:30:00',0,298,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',0,'','',0,29,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 04:50:53','riya','2025-12-20 17:22:01',0),(20090,2526,0,0,6397,'2025-12-20','15:30:00',0,298,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',0,'','',0,30,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 04:50:53','riya','2025-12-20 17:22:13',0),(20091,2526,0,0,6397,'2025-12-20','15:30:00',0,298,'DRC','DRC0018','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','405','','','',2526,'H','I',304,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 04:50:53','riya','2025-12-20 17:42:13',0),(20092,2526,0,0,6397,'2025-12-20','15:30:00',0,298,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,42,0,0,'',0,0,'','405','','','',0,'','',0,32,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 04:50:53','riya','2025-12-20 17:28:17',0),(20093,2526,0,0,6397,'2025-12-20','15:30:00',0,298,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-20 04:50:53','riya','2025-12-20 17:21:48',0),(20094,2526,0,0,6885,'2025-12-20','17:41:56',4078,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7599,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-20 17:41:56','janvi','2025-12-20 17:41:56',0),(20095,2526,0,0,6886,'2025-12-20','00:00:00',4424,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7600,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-20 17:56:50','janvi','2025-12-20 17:57:27',0),(20096,2526,0,0,6887,'2025-12-20','00:00:00',4425,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7601,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-20 18:07:51','janvi','2025-12-20 18:08:24',0),(20097,2526,0,0,6888,'2025-12-20','00:00:00',4426,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7602,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-20 19:08:51','manshi','2025-12-20 19:10:05',0),(20098,2526,0,0,6889,'2025-12-20','00:00:00',4427,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7603,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-20 19:12:10','janvi','2025-12-20 19:13:11',0),(20099,2526,0,0,6890,'2025-12-20','19:25:06',4277,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7604,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-20 19:25:06','janvi','2025-12-20 19:25:06',0),(20100,2526,0,0,6891,'2025-12-20','19:31:00',4334,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,7,0,0,'',0,0,'','','','','',2526,'H','O',7605,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-20 19:31:00','manshi','2025-12-20 19:31:00',0),(20101,2526,0,0,6892,'2025-12-20','20:54:00',4224,314,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',306,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 20:56:14','riya','2025-12-22 12:40:34',0),(20102,2526,0,0,6892,'2025-12-20','20:54:00',4224,314,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',306,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 20:56:14','riya','2025-12-22 12:40:34',0),(20103,2526,0,0,6892,'2025-12-20','20:54:00',4224,314,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','RC04','','',2526,'H','I',306,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 08:26:14','riya','2025-12-22 12:40:34',0),(20104,2526,0,0,6892,'2025-12-20','20:54:00',4224,314,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',306,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 08:26:14','riya','2025-12-22 12:40:34',0),(20105,2526,0,0,6892,'2025-12-20','20:54:00',4224,314,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',306,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 08:26:14','riya','2025-12-22 12:40:34',0),(20106,2526,0,0,6892,'2025-12-20','20:54:00',4224,314,'DRC','DRC0019','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,6,0,0,'',0,0,'','408','','','',2526,'H','I',306,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-20 08:26:14','riya','2025-12-22 12:41:31',0),(20107,2526,0,0,6892,'2025-12-20','20:54:00',4224,314,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-20 08:26:14','riya','2025-12-22 12:40:34',0),(20108,2526,0,0,6893,'2025-12-21','00:00:00',4428,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-21 09:13:05','drashti','2025-12-20 20:43:05',0),(20109,2526,0,0,6893,'2025-12-21','09:14:43',4428,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',7606,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-21 09:14:43','drashti','2025-12-21 09:14:43',0),(20110,2526,0,0,6893,'2025-12-21','09:14:43',4428,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',7606,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-21 09:14:43','drashti','2025-12-21 09:14:43',0),(20111,2526,0,0,6893,'2025-12-21','09:14:43',4428,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',7606,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-21 09:14:43','drashti','2025-12-21 09:14:43',0),(20112,2526,0,0,6894,'2025-12-21','00:00:00',4429,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-21 09:16:41','drashti','2025-12-20 20:46:41',0),(20113,2526,0,0,6894,'2025-12-21','09:18:04',4429,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',7607,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-21 09:18:04','drashti','2025-12-21 09:18:04',0),(20114,2526,0,0,6894,'2025-12-21','09:18:04',4429,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',7607,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-21 09:18:04','drashti','2025-12-21 09:18:04',0),(20115,2526,0,0,6895,'2025-12-21','00:00:00',4430,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-21 09:19:08','drashti','2025-12-20 20:49:08',0),(20116,2526,0,0,6895,'2025-12-21','09:20:57',4430,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',7608,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-21 09:20:57','drashti','2025-12-21 09:20:57',0),(20117,2526,0,0,6895,'2025-12-21','09:20:57',4430,0,'WPRC','WPRC0042','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',7608,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-21 09:20:57','drashti','2025-12-21 09:20:57',0),(20118,2526,0,0,6165,'2025-12-20','12:50:00',0,285,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','RC07','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:33:33','vishal','2025-12-21 10:06:40',0),(20119,2526,0,0,6165,'2025-12-20','12:50:00',0,285,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:33:33','vishal','2025-12-21 10:06:40',0),(20120,2526,0,0,6165,'2025-12-20','12:50:00',0,285,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:33:33','vishal','2025-12-21 10:06:40',0),(20121,2526,0,0,6165,'2025-12-20','12:50:00',0,285,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','210','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:33:33','vishal','2025-12-21 10:06:40',0),(20122,2526,0,0,6165,'2025-12-20','12:50:00',0,285,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','210','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:33:33','vishal','2025-12-21 10:06:40',0),(20123,2526,0,0,6165,'2025-12-20','10:03:00',0,285,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 10:06:40','','0000-00-00 00:00:00',0),(20124,2526,0,0,6165,'2025-12-21','10:03:00',0,285,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 10:06:40','','0000-00-00 00:00:00',0),(20125,2526,0,0,6165,'2025-12-20','10:04:00',0,285,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 10:06:40','','0000-00-00 00:00:00',0),(20126,2526,0,0,6165,'2025-12-21','10:04:00',0,285,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 10:06:40','','0000-00-00 00:00:00',0),(20127,2526,0,0,6165,'2025-12-19','10:04:00',0,285,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 10:06:40','','0000-00-00 00:00:00',0),(20128,2526,0,0,6165,'2025-12-19','10:04:00',0,285,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,78,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 10:06:40','','0000-00-00 00:00:00',0),(20129,2526,0,0,6165,'2025-12-20','10:05:00',0,285,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,62,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 10:06:40','','0000-00-00 00:00:00',0),(20130,2526,0,0,6165,'2025-12-20','10:06:00',0,285,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 10:06:40','','0000-00-00 00:00:00',0),(20131,2526,0,0,4017,'2025-12-20','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','208','RC07','','',0,'','',0,329,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:20','vishal','2025-12-21 11:20:51',0),(20132,2526,0,0,4017,'2025-12-20','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','208','','','',0,'','',0,330,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:20','vishal','2025-12-21 11:20:51',0),(20133,2526,0,0,4017,'2025-12-20','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','208','','','',0,'','',0,331,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:20','vishal','2025-12-21 11:20:51',0),(20134,2526,0,0,4017,'2025-12-20','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','208','','','',0,'','',0,332,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:20','vishal','2025-12-21 11:20:51',0),(20135,2526,0,0,4017,'2025-12-20','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:20','vishal','2025-12-21 11:18:31',0),(20136,2526,0,0,5120,'2025-12-21','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','RC04','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:21','vishal','2025-12-21 12:14:48',0),(20137,2526,0,0,5120,'2025-12-21','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:21','vishal','2025-12-21 12:14:48',0),(20138,2526,0,0,5120,'2025-12-21','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:21','vishal','2025-12-21 12:14:48',0),(20139,2526,0,0,5120,'2025-12-21','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:21','vishal','2025-12-22 17:22:21',0),(20140,2526,0,0,5120,'2025-12-21','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:21','vishal','2025-12-21 12:16:07',0),(20141,2526,0,0,6769,'2025-12-20','12:00:00',0,309,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','209','RC07','','',2526,'H','D',332,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:22','vishal','2025-12-21 11:28:12',0),(20142,2526,0,0,6769,'2025-12-20','12:00:00',0,309,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','209','','','',2526,'H','D',332,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:22','vishal','2025-12-21 11:28:12',0),(20143,2526,0,0,6769,'2025-12-20','12:00:00',0,309,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','209','','','',2526,'H','D',332,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:22','vishal','2025-12-21 11:28:12',0),(20144,2526,0,0,6769,'2025-12-20','12:00:00',0,309,'DRC','DRC0018','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','D',332,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:22','vishal','2025-12-21 11:51:32',0),(20145,2526,0,0,6769,'2025-12-20','12:00:00',0,309,'DRC','DRC0019','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,8,0,0,'',0,0,'','209','','','',2526,'H','D',332,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:22','vishal','2025-12-21 11:51:32',0),(20146,2526,0,0,6780,'2025-12-20','15:38:00',0,310,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','RC03','','',2526,'H','I',315,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:22','vishal','2025-12-21 12:02:46',0),(20147,2526,0,0,6780,'2025-12-20','15:38:00',0,310,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',315,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:22','vishal','2025-12-21 12:02:46',0),(20148,2526,0,0,6780,'2025-12-20','15:38:00',0,310,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',315,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:22','vishal','2025-12-21 12:02:46',0),(20149,2526,0,0,6780,'2025-12-20','15:38:00',0,310,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',315,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:22','vishal','2025-12-21 12:02:46',0),(20150,2526,0,0,6780,'2025-12-20','15:38:00',0,310,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',315,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:22','vishal','2025-12-21 12:02:46',0),(20151,2526,0,0,6843,'2025-12-20','21:00:00',0,311,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','RC04','','',2526,'H','I',312,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:22','riya','2025-12-21 12:20:56',0),(20152,2526,0,0,6843,'2025-12-20','21:00:00',0,311,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',312,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:22','riya','2025-12-21 12:20:56',0),(20153,2526,0,0,6843,'2025-12-20','21:00:00',0,311,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',312,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:22','riya','2025-12-21 12:20:56',0),(20154,2526,0,0,6843,'2025-12-20','21:00:00',0,311,'DRC','DRC0018','H','N',1.00,2000,2000,'A',0,0,0.00,0.00,2000.00,2000,42,0,0,'',0,0,'','404','','','',2526,'H','I',312,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:22','riya','2025-12-21 12:20:56',0),(20155,2526,0,0,6843,'2025-12-20','21:00:00',0,311,'DRC','DRC0019','H','N',1.00,1500,1500,'A',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','404','','','',2526,'H','I',312,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 21:43:22','riya','2025-12-21 12:20:56',0),(20156,2526,0,0,4017,'2025-12-20','11:10:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,321,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:18:31','vishal','2025-12-21 11:20:51',0),(20157,2526,0,0,4017,'2025-12-21','11:11:00',0,187,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,324,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:18:31','','0000-00-00 00:00:00',0),(20158,2526,0,0,4017,'2025-12-20','11:11:00',0,187,'WPRC','WPRC0125','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,322,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:18:31','vishal','2025-12-21 11:20:51',0),(20159,2526,0,0,4017,'2025-12-20','11:13:00',0,187,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',0,'','',0,326,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:18:31','','0000-00-00 00:00:00',0),(20160,2526,0,0,4017,'2025-12-20','11:14:00',0,187,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,327,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:18:31','','0000-00-00 00:00:00',0),(20161,2526,0,0,4017,'2025-12-20','11:14:00',0,187,'WPRC','WPRC0087','H','N',2.00,500,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',0,'','',0,328,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:18:31','','0000-00-00 00:00:00',0),(20162,2526,0,0,4017,'2025-12-21','11:14:00',0,187,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,334,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:18:31','vishal','2025-12-21 11:20:51',0),(20163,2526,0,0,4017,'2025-12-20','11:14:00',0,187,'WPRC','WPRC0118','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,330,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:18:31','','0000-00-00 00:00:00',0),(20164,2526,0,0,4017,'2025-12-21','11:14:00',0,187,'WPRC','WPRC0118','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,331,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:18:31','','0000-00-00 00:00:00',0),(20165,2526,0,0,4017,'2025-12-19','11:15:00',0,187,'DRC','DRC0020','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',0,'','',0,308,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:18:31','vishal','2025-12-21 11:20:51',0),(20166,2526,0,0,4017,'2025-12-20','11:16:00',0,187,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',0,'','',0,333,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:18:31','','0000-00-00 00:00:00',0),(20167,2526,0,0,4017,'2025-12-21','11:16:00',0,187,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,3,0,0,'',0,0,'','','','','',0,'','',0,334,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:18:31','','0000-00-00 00:00:00',0),(20168,2526,0,0,4017,'2025-12-20','11:16:00',0,187,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,8,0,0,'',0,0,'','','','','',0,'','',0,335,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:18:31','','0000-00-00 00:00:00',0),(20169,2526,0,0,4017,'2025-11-29','11:18:00',0,187,'DRC','DRC0020','H','N',1.00,2500,2500,'A',0,0,0.00,0.00,2500.00,2500,8,0,0,'',0,0,'','','','','',0,'','',0,70,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:18:31','vishal','2025-12-21 11:20:51',0),(20170,2526,0,0,4017,'2025-12-21','11:19:00',0,187,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,337,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:20:51','','0000-00-00 00:00:00',0),(20171,2526,0,0,4017,'2025-12-20','11:19:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,338,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:20:51','','0000-00-00 00:00:00',0),(20172,2526,0,0,4017,'2025-12-21','11:19:00',0,187,'WPRC','WPRC0085','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',0,'','',0,339,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:20:51','','0000-00-00 00:00:00',0),(20173,2526,0,0,4017,'2025-12-20','11:20:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,340,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:20:51','','0000-00-00 00:00:00',0),(20174,2526,0,0,4017,'2025-12-21','11:20:00',0,187,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',0,'','',0,341,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:20:51','','0000-00-00 00:00:00',0),(20175,2526,0,0,4017,'2025-12-19','11:20:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,342,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:20:51','','0000-00-00 00:00:00',0),(20176,2526,0,0,4017,'2025-12-20','11:20:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,343,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:20:51','','0000-00-00 00:00:00',0),(20177,2526,0,0,4017,'2025-12-21','11:20:00',0,187,'WPRC','WPRC0082','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',0,'','',0,344,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:20:51','','0000-00-00 00:00:00',0),(20178,2526,0,0,6896,'2025-12-21','11:26:11',3310,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7609,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-21 11:26:11','drashti','2025-12-21 11:26:11',0),(20179,2526,0,0,6769,'2025-12-19','11:28:00',0,309,'ROOM','ROOM0008','H','N',2.00,100,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:49:29','vishal','2025-12-21 11:51:32',0),(20180,2526,0,0,6769,'2025-12-19','11:28:00',0,309,'WPRC','WPRC0090','H','N',1.00,1000,1000,'A',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:49:29','vishal','2025-12-21 11:51:32',0),(20181,2526,0,0,6769,'2025-12-20','11:49:00',0,309,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:51:32','','0000-00-00 00:00:00',0),(20182,2526,0,0,6769,'2025-12-20','11:50:00',0,309,'WPRC','WPRC0097','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:51:32','','0000-00-00 00:00:00',0),(20183,2526,0,0,6769,'2025-12-21','11:50:00',0,309,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:51:32','','0000-00-00 00:00:00',0),(20184,2526,0,0,6769,'2025-12-19','11:50:00',0,309,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:51:32','','0000-00-00 00:00:00',0),(20185,2526,0,0,6769,'2025-12-20','11:50:00',0,309,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:51:32','','0000-00-00 00:00:00',0),(20186,2526,0,0,6769,'2025-12-21','11:50:00',0,309,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:51:32','','0000-00-00 00:00:00',0),(20187,2526,0,0,6769,'2025-12-19','11:51:00',0,309,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:51:32','','0000-00-00 00:00:00',0),(20188,2526,0,0,6769,'2025-12-20','11:51:00',0,309,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:51:32','','0000-00-00 00:00:00',0),(20189,2526,0,0,6769,'2025-12-21','11:51:00',0,309,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 11:51:32','','0000-00-00 00:00:00',0),(20190,2526,0,0,6346,'2025-12-21','10:40:00',4056,297,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','410','RC03','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 23:22:06','','0000-00-00 00:00:00',0),(20191,2526,0,0,6346,'2025-12-21','10:40:00',4056,297,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 23:22:06','','0000-00-00 00:00:00',0),(20192,2526,0,0,6346,'2025-12-21','10:40:00',4056,297,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 23:22:06','','0000-00-00 00:00:00',0),(20193,2526,0,0,6346,'2025-12-21','10:40:00',4056,297,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 23:22:06','','0000-00-00 00:00:00',0),(20194,2526,0,0,6346,'2025-12-21','10:40:00',4056,297,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-20 23:22:06','','0000-00-00 00:00:00',0),(20195,2526,0,0,6780,'2025-12-20','12:01:00',0,310,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',0,'','',0,14,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 12:02:46','riya','2025-12-23 12:39:28',0),(20196,2526,0,0,6780,'2025-12-20','12:01:00',0,310,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',315,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 12:02:46','','0000-00-00 00:00:00',0),(20197,2526,0,0,6780,'2025-12-20','12:02:00',0,310,'DRC','DRC0020','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',315,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 12:02:46','','0000-00-00 00:00:00',0),(20198,2526,0,0,6882,'2025-12-20','12:04:00',0,312,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',305,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 12:05:01','','0000-00-00 00:00:00',0),(20199,2526,0,0,6882,'2025-12-21','12:04:00',0,312,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',305,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 12:05:01','','0000-00-00 00:00:00',0),(20200,2526,0,0,6882,'2025-12-20','12:04:00',0,312,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','I',305,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 12:05:01','','0000-00-00 00:00:00',0),(20201,2526,0,0,6897,'2025-12-21','00:00:00',4431,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-21 12:07:53','drashti','2025-12-20 23:37:53',0),(20202,2526,0,0,6884,'2025-12-20','12:05:00',2680,313,'USG','USG0092','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',0,'','',0,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 12:08:07','','0000-00-00 00:00:00',0),(20203,2526,0,0,6884,'2025-12-20','12:06:00',2680,313,'WPRC','WPRC0090','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',0,'','',0,8,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 12:08:07','','0000-00-00 00:00:00',0),(20204,2526,0,0,6884,'2025-12-20','12:07:00',2680,313,'DRC','DRC0021','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,4,0,0,'',0,0,'','','','','',0,'','',0,9,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 12:08:07','','0000-00-00 00:00:00',0),(20205,2526,0,0,6897,'2025-12-21','12:12:00',4431,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',7610,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-21 12:12:00','drashti','2025-12-21 12:12:00',0),(20206,2526,0,0,6897,'2025-12-21','12:12:00',4431,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',7610,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-21 12:12:00','drashti','2025-12-21 12:12:00',0),(20207,2526,0,0,6897,'2025-12-21','12:12:00',4431,0,'OPWD','OPWD0019','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',7610,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-21 12:12:00','drashti','2025-12-21 12:12:00',0),(20208,2526,0,0,6897,'2025-12-21','12:12:00',4431,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',7610,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-21 12:12:00','drashti','2025-12-21 12:12:00',0),(20209,2526,0,0,5120,'2025-12-19','12:13:00',0,243,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 12:14:48','vishal','2025-12-21 12:16:07',0),(20210,2526,0,0,5120,'2025-12-20','12:13:00',0,243,'ROOM','ROOM0008','H','N',3.00,100,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 12:14:48','vishal','2025-12-21 12:16:07',0),(20211,2526,0,0,5120,'2025-12-21','12:13:00',0,243,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 12:14:48','','0000-00-00 00:00:00',0),(20212,2526,0,0,6843,'2025-12-20','12:18:00',0,311,'USG','USG0092','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,9999,0,0,'',0,0,'','','','','',2526,'H','I',312,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-21 12:20:56','','0000-00-00 00:00:00',0),(20213,2526,0,0,6843,'2025-12-20','12:18:00',0,311,'WPRC','WPRC0090','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',312,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-21 12:20:56','','0000-00-00 00:00:00',0),(20214,2526,0,0,6843,'2025-12-20','12:19:00',0,311,'DRC','DRC0020','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',312,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-21 12:20:56','','0000-00-00 00:00:00',0),(20215,2526,0,0,6843,'2025-12-20','12:20:00',0,311,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,303,0,0,'',0,0,'','','','','',2526,'H','I',312,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-21 12:20:56','','0000-00-00 00:00:00',0),(20216,2526,0,0,6769,'2025-12-21','12:00:00',0,309,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','209','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 00:52:37','vishal','2025-12-21 13:25:32',0),(20217,2526,0,0,6769,'2025-12-21','12:00:00',0,309,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','209','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 00:52:37','vishal','2025-12-21 13:25:32',0),(20218,2526,0,0,6769,'2025-12-21','12:00:00',0,309,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','209','','','',2526,'H','D',332,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 00:52:37','vishal','2025-12-21 13:25:32',0),(20219,2526,0,0,6769,'2025-12-21','12:00:00',0,309,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','209','','','',2526,'H','D',332,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 00:52:37','vishal','2025-12-21 13:25:32',0),(20220,2526,0,0,6769,'2025-12-21','12:00:00',0,309,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','209','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 00:52:37','vishal','2025-12-21 13:25:32',0),(20221,2526,0,0,6769,'2025-12-21','13:24:00',0,309,'ROOM','ROOM0009','H','N',1.00,2900,2900,'P',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 13:25:32','','0000-00-00 00:00:00',0),(20222,2526,0,0,6769,'2025-12-21','13:24:00',0,309,'AECO','AECO0008','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 13:25:32','','0000-00-00 00:00:00',0),(20223,2526,0,0,6769,'2025-12-21','13:25:00',0,309,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 13:25:32','','0000-00-00 00:00:00',0),(20224,2526,0,0,4017,'2025-12-21','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:24:12','','0000-00-00 00:00:00',0),(20225,2526,0,0,4017,'2025-12-21','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:24:12','','0000-00-00 00:00:00',0),(20226,2526,0,0,4017,'2025-12-21','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:24:12','','0000-00-00 00:00:00',0),(20227,2526,0,0,4017,'2025-12-21','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:24:12','','0000-00-00 00:00:00',0),(20228,2526,0,0,4017,'2025-12-21','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:24:12','','0000-00-00 00:00:00',0),(20229,2526,0,0,6165,'2025-12-21','12:50:00',0,285,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:58','riya','2025-12-22 13:57:46',0),(20230,2526,0,0,6165,'2025-12-21','12:50:00',0,285,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:58','riya','2025-12-22 13:57:46',0),(20231,2526,0,0,6165,'2025-12-21','12:50:00',0,285,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,78,0,0,'',0,0,'','210','','','',0,'','',0,76,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:58','riya','2025-12-22 14:16:05',0),(20232,2526,0,0,6165,'2025-12-21','12:50:00',0,285,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,78,0,0,'',0,0,'','210','','','',0,'','',0,77,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:58','riya','2025-12-22 14:16:05',0),(20233,2526,0,0,6165,'2025-12-21','12:50:00',0,285,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','210','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:58','riya','2025-12-22 13:57:46',0),(20234,2526,0,0,6780,'2025-12-21','15:38:00',0,310,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','RC03','','',2526,'H','I',315,17,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:58','riya','2025-12-23 09:48:58',0),(20235,2526,0,0,6780,'2025-12-21','15:38:00',0,310,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',315,18,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:58','riya','2025-12-23 09:48:58',0),(20236,2526,0,0,6780,'2025-12-21','15:38:00',0,310,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',315,19,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:58','riya','2025-12-23 09:48:58',0),(20237,2526,0,0,6780,'2025-12-21','15:38:00',0,310,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',315,20,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:58','riya','2025-12-23 09:48:58',0),(20238,2526,0,0,6780,'2025-12-21','15:38:00',0,310,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',315,21,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:58','riya','2025-12-23 09:48:58',0),(20239,2526,0,0,6882,'2025-12-21','14:30:00',0,312,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','I',305,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:59','riya','2025-12-22 12:44:37',0),(20240,2526,0,0,6882,'2025-12-21','14:30:00',0,312,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','I',305,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:59','riya','2025-12-22 12:44:37',0),(20241,2526,0,0,6882,'2025-12-21','14:30:00',0,312,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',305,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:59','riya','2025-12-22 12:44:37',0),(20242,2526,0,0,6882,'2025-12-21','14:30:00',0,312,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','I',305,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:59','riya','2025-12-22 12:44:37',0),(20243,2526,0,0,6882,'2025-12-21','14:30:00',0,312,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','','','',2526,'H','I',305,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:59','riya','2025-12-22 12:44:37',0),(20244,2526,0,0,6884,'2025-12-21','12:30:00',2680,313,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','RC04','','',0,'','',0,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:59','riya','2025-12-23 09:43:03',0),(20245,2526,0,0,6884,'2025-12-21','12:30:00',2680,313,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',0,'','',0,14,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:59','riya','2025-12-23 09:43:03',0),(20246,2526,0,0,6884,'2025-12-21','12:30:00',2680,313,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',0,'','',0,13,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:59','riya','2025-12-23 09:43:03',0),(20247,2526,0,0,6884,'2025-12-21','12:30:00',2680,313,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',0,'','',0,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:59','riya','2025-12-23 09:43:03',0),(20248,2526,0,0,6884,'2025-12-21','12:30:00',2680,313,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',0,'','',0,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:25:59','riya','2025-12-23 09:43:03',0),(20249,2526,0,0,6898,'2025-12-21','14:00:00',0,315,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',314,1,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 20:26:45','riya','2025-12-23 09:35:49',0),(20250,2526,0,0,6898,'2025-12-21','14:00:00',0,315,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',314,2,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 20:26:45','riya','2025-12-23 09:35:49',0),(20251,2526,0,0,6898,'2025-12-21','14:00:00',0,315,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','RC03','','',2526,'H','I',314,3,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:56:45','riya','2025-12-23 09:35:49',0),(20252,2526,0,0,6898,'2025-12-21','14:00:00',0,315,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',314,4,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:56:45','riya','2025-12-23 09:35:49',0),(20253,2526,0,0,6898,'2025-12-21','14:00:00',0,315,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',314,5,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:56:45','riya','2025-12-23 09:35:49',0),(20254,2526,0,0,6898,'2025-12-21','14:00:00',0,315,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',0,'','',0,6,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:56:45','riya','2025-12-23 11:17:49',0),(20255,2526,0,0,6898,'2025-12-21','14:00:00',0,315,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',314,7,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 07:56:45','riya','2025-12-23 09:35:49',0),(20256,2526,0,0,6899,'2025-12-21','18:00:00',4172,316,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',316,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 20:37:59','riya','2025-12-23 09:45:39',0),(20257,2526,0,0,6899,'2025-12-21','18:00:00',4172,316,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',316,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 20:37:59','riya','2025-12-23 09:45:39',0),(20258,2526,0,0,6899,'2025-12-21','18:00:00',4172,316,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','RC04','','',2526,'H','I',316,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 08:07:59','riya','2025-12-23 09:45:39',0),(20259,2526,0,0,6899,'2025-12-21','18:00:00',4172,316,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',316,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 08:07:59','riya','2025-12-23 09:45:39',0),(20260,2526,0,0,6899,'2025-12-21','18:00:00',4172,316,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',316,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 08:07:59','riya','2025-12-23 09:45:39',0),(20261,2526,0,0,6899,'2025-12-21','18:00:00',4172,316,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 08:07:59','vishal','2025-12-23 17:01:33',0),(20262,2526,0,0,6899,'2025-12-21','18:00:00',4172,316,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',316,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 08:07:59','riya','2025-12-23 09:45:39',0),(20263,2526,0,0,6900,'2025-12-21','19:00:00',0,317,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 20:52:07','','0000-00-00 00:00:00',0),(20264,2526,0,0,6900,'2025-12-21','19:00:00',0,317,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 20:52:07','','0000-00-00 00:00:00',0),(20265,2526,0,0,6900,'2025-12-21','19:00:00',0,317,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','304','RC04','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 08:22:07','','0000-00-00 00:00:00',0),(20266,2526,0,0,6900,'2025-12-21','19:00:00',0,317,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 08:22:07','','0000-00-00 00:00:00',0),(20267,2526,0,0,6900,'2025-12-21','19:00:00',0,317,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 08:22:07','','0000-00-00 00:00:00',0),(20268,2526,0,0,6900,'2025-12-21','19:00:00',0,317,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 08:22:07','','0000-00-00 00:00:00',0),(20269,2526,0,0,6900,'2025-12-21','19:00:00',0,317,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','304','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-21 08:22:07','','0000-00-00 00:00:00',0),(20270,2526,0,0,6901,'2025-12-22','00:00:00',4432,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 08:58:19','reception','2025-12-21 20:28:19',0),(20271,2526,0,0,6901,'2025-12-22','08:59:24',4432,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',7611,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 08:59:24','reception','2025-12-22 08:59:24',0),(20272,2526,0,0,6901,'2025-12-22','08:59:24',4432,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',7611,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 08:59:24','reception','2025-12-22 08:59:24',0),(20273,2526,0,0,6902,'2025-12-22','00:00:00',4433,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:01:33','reception','2025-12-21 20:31:33',0),(20274,2526,0,0,6902,'2025-12-22','09:10:13',4433,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',7612,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-22 09:10:13','reception','2025-12-22 09:10:13',0),(20275,2526,0,0,6902,'2025-12-22','09:10:13',4433,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,128,'',0,0,'','','','','',2526,'H','O',7612,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-22 09:10:13','reception','2025-12-22 09:10:13',0),(20276,2526,0,0,6902,'2025-12-22','09:10:13',4433,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',7612,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-22 09:10:13','reception','2025-12-22 09:10:13',0),(20277,2526,0,0,6902,'2025-12-22','09:10:13',4433,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',7612,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',1,'reception','2025-12-22 09:10:13','reception','2025-12-22 09:10:13',0),(20278,2526,0,0,6903,'2025-12-22','09:12:24',4419,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7613,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:12:24','reception','2025-12-22 09:12:24',0),(20279,2526,0,0,6903,'2025-12-22','09:12:24',4419,0,'OPWD','OPWD0013','H','N',7.00,100,700,'P',0,0,0.00,0.00,700.00,700,4,0,0,'',0,0,'','','','','',2526,'H','O',7613,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:12:24','reception','2025-12-22 09:12:24',0),(20280,2526,0,0,6904,'2025-12-22','00:00:00',4434,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:13:23','reception','2025-12-21 20:43:23',0),(20281,2526,0,0,6904,'2025-12-22','09:14:18',4434,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',7614,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'reception','2025-12-22 09:14:18','reception','2025-12-22 09:14:18',0),(20282,2526,0,0,6904,'2025-12-22','09:14:18',4434,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7614,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'reception','2025-12-22 09:14:18','reception','2025-12-22 09:14:18',0),(20283,2526,0,0,6904,'2025-12-22','09:14:18',4434,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,129,'',0,0,'','','','','',2526,'H','O',7614,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'reception','2025-12-22 09:14:18','reception','2025-12-22 09:14:18',0),(20284,2526,0,0,6904,'2025-12-22','09:14:18',4434,0,'OPWD','OPWD0013','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,4,0,0,'',0,0,'','','','','',2526,'H','O',7614,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',2,'reception','2025-12-22 09:14:18','reception','2025-12-22 09:14:18',0),(20285,2526,0,0,6905,'2025-12-22','00:00:00',3755,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:15:55','reception','2025-12-21 20:45:55',0),(20286,2526,0,0,6905,'2025-12-22','09:17:22',3755,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',7615,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'reception','2025-12-22 09:17:22','reception','2025-12-22 09:17:22',0),(20287,2526,0,0,6905,'2025-12-22','09:17:22',3755,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7615,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'reception','2025-12-22 09:17:22','reception','2025-12-22 09:17:22',0),(20288,2526,0,0,6905,'2025-12-22','09:17:22',3755,0,'LAB','LAB0792','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,130,'',0,0,'','','','','',2526,'H','O',7615,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'reception','2025-12-22 09:17:22','reception','2025-12-22 09:17:22',0),(20289,2526,0,0,6905,'2025-12-22','09:17:22',3755,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',7615,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',3,'reception','2025-12-22 09:17:22','reception','2025-12-22 09:17:22',0),(20290,2526,0,0,6906,'2025-12-22','09:18:36',1288,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7616,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:18:36','reception','2025-12-22 09:18:36',0),(20291,2526,0,0,6908,'2025-12-22','00:00:00',4435,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:22:01','reception','2025-12-21 20:52:01',0),(20292,2526,0,0,6907,'2025-12-22','09:25:02',4334,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,7,0,0,'',0,0,'','','','','',2526,'H','O',7617,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:25:02','reception','2025-12-22 09:25:02',0),(20293,2526,0,0,6909,'2025-12-22','00:00:00',4436,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7620,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 09:26:41','janvi','2025-12-22 09:33:23',0),(20294,2526,0,0,6908,'2025-12-22','09:28:51',4435,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,6,0,0,'',0,0,'','','','','',2526,'H','O',7618,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:28:51','reception','2025-12-22 09:28:51',0),(20295,2526,0,0,6908,'2025-12-22','09:28:51',4435,0,'XRY','XRY0045','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',7618,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:28:51','reception','2025-12-22 09:28:51',0),(20296,2526,0,0,6908,'2025-12-22','09:28:51',4435,0,'OPWD','OPWD0023','H','N',1.00,5000,5000,'P',0,0,0.00,0.00,5000.00,5000,6,0,0,'',0,0,'','','','','',2526,'H','O',7618,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:28:51','reception','2025-12-22 09:28:51',0),(20297,2526,0,0,6910,'2025-12-22','00:00:00',4437,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:29:33','reception','2025-12-21 20:59:33',0),(20298,2526,0,0,6910,'2025-12-22','09:30:52',4437,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',7619,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:30:52','reception','2025-12-22 09:30:52',0),(20299,2526,0,0,6910,'2025-12-22','09:30:52',4437,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7619,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:30:52','reception','2025-12-22 09:30:52',0),(20300,2526,0,0,6910,'2025-12-22','09:30:52',4437,0,'XRY','XRY0045','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',7619,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:30:52','reception','2025-12-22 09:30:52',0),(20301,2526,0,0,6910,'2025-12-22','09:30:52',4437,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7619,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:30:52','reception','2025-12-22 09:30:52',0),(20302,2526,0,0,6912,'2025-12-22','00:00:00',4438,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7621,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:32:57','reception','2025-12-22 11:22:25',0),(20303,2526,0,0,6913,'2025-12-22','02:00:00',0,318,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 09:37:42','','0000-00-00 00:00:00',0),(20304,2526,0,0,6913,'2025-12-22','02:00:00',0,318,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 09:37:42','','0000-00-00 00:00:00',0),(20305,2526,0,0,6913,'2025-12-22','02:00:00',0,318,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','212','RC07','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 21:07:42','','0000-00-00 00:00:00',0),(20306,2526,0,0,6913,'2025-12-22','02:00:00',0,318,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 21:07:42','','0000-00-00 00:00:00',0),(20307,2526,0,0,6913,'2025-12-22','02:00:00',0,318,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 21:07:42','','0000-00-00 00:00:00',0),(20308,2526,0,0,6913,'2025-12-22','02:00:00',0,318,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 21:07:42','','0000-00-00 00:00:00',0),(20309,2526,0,0,6913,'2025-12-22','02:00:00',0,318,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 21:07:42','','0000-00-00 00:00:00',0),(20310,2526,0,0,6914,'2025-12-22','00:00:00',4439,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7622,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:42:04','reception','2025-12-22 09:42:25',0),(20311,2526,0,0,6915,'2025-12-22','00:00:00',3302,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7623,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:44:01','reception','2025-12-22 09:44:27',0),(20312,2526,0,0,6916,'2025-12-22','00:00:00',3803,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7624,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:45:42','reception','2025-12-22 09:45:53',0),(20313,2526,0,0,6917,'2025-12-22','09:00:00',0,319,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 09:55:05','','0000-00-00 00:00:00',0),(20314,2526,0,0,6917,'2025-12-22','09:00:00',0,319,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 09:55:05','','0000-00-00 00:00:00',0),(20315,2526,0,0,6917,'2025-12-22','09:00:00',0,319,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','305','RC04','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 21:25:05','','0000-00-00 00:00:00',0),(20316,2526,0,0,6917,'2025-12-22','09:00:00',0,319,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 21:25:05','','0000-00-00 00:00:00',0),(20317,2526,0,0,6917,'2025-12-22','09:00:00',0,319,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 21:25:05','','0000-00-00 00:00:00',0),(20318,2526,0,0,6917,'2025-12-22','09:00:00',0,319,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 21:25:05','','0000-00-00 00:00:00',0),(20319,2526,0,0,6917,'2025-12-22','09:00:00',0,319,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 21:25:05','','0000-00-00 00:00:00',0),(20320,2526,0,0,6918,'2025-12-22','00:00:00',4440,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7625,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 09:59:58','reception','2025-12-22 10:00:50',0),(20321,2526,0,0,6919,'2025-12-22','00:00:00',4441,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7626,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'urvashi','2025-12-22 10:04:05','urvashi','2025-12-22 10:04:40',0),(20322,2526,0,0,6920,'2025-12-22','00:00:00',4442,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7627,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 10:05:17','reception','2025-12-22 10:05:38',0),(20323,2526,0,0,6921,'2025-12-22','00:00:00',2041,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7628,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 10:06:20','reception','2025-12-22 10:06:46',0),(20324,2526,0,0,6922,'2025-12-22','10:00:00',0,320,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',309,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 10:07:35','vishal','2025-12-22 18:20:43',0),(20325,2526,0,0,6922,'2025-12-22','10:00:00',0,320,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',309,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 10:07:35','vishal','2025-12-22 18:20:43',0),(20326,2526,0,0,6922,'2025-12-22','10:00:00',0,320,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','411','RC03','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 21:37:35','vishal','2025-12-22 18:20:43',0),(20327,2526,0,0,6922,'2025-12-22','10:00:00',0,320,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 21:37:35','vishal','2025-12-22 18:20:43',0),(20328,2526,0,0,6922,'2025-12-22','10:00:00',0,320,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 21:37:35','vishal','2025-12-22 18:20:43',0),(20329,2526,0,0,6922,'2025-12-22','10:00:00',0,320,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','411','','','',2526,'H','I',309,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-21 21:37:35','vishal','2025-12-22 18:20:43',0),(20330,2526,0,0,6922,'2025-12-22','10:00:00',0,320,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','411','','','',2526,'H','I',309,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-21 21:37:35','vishal','2025-12-22 18:20:43',0),(20331,2526,0,0,6923,'2025-12-22','00:00:00',4443,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7629,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 10:14:00','janvi','2025-12-22 10:14:55',0),(20332,2526,0,0,6924,'2025-12-22','00:00:00',3695,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7630,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-22 10:16:58','priyanshi','2025-12-22 10:17:17',0),(20333,2526,0,0,6925,'2025-12-22','00:00:00',4444,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7633,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 10:18:36','reception','2025-12-22 10:25:12',0),(20334,2526,0,0,6926,'2025-12-22','00:00:00',4445,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7631,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 10:20:35','janvi','2025-12-22 10:21:27',0),(20335,2526,0,0,6927,'2025-12-22','00:00:00',4446,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7632,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 10:22:45','janvi','2025-12-22 10:23:46',0),(20336,2526,0,0,6928,'2025-12-22','00:00:00',4447,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7634,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-22 10:26:56','priyanshi','2025-12-22 10:27:53',0),(20337,2526,0,0,6929,'2025-12-22','00:00:00',4448,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-22 10:30:41','priyanshi','2025-12-21 22:00:41',0),(20338,2526,0,0,6929,'2025-12-22','10:34:06',4448,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',7635,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-22 10:34:06','priyanshi','2025-12-22 10:34:06',0),(20339,2526,0,0,6929,'2025-12-22','10:34:06',4448,0,'OPWD','OPWD0019','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','O',7635,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-22 10:34:06','priyanshi','2025-12-22 10:34:06',0),(20340,2526,0,0,6929,'2025-12-22','10:34:06',4448,0,'WPRC','WPRC0042','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',7635,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-22 10:34:06','priyanshi','2025-12-22 10:34:06',0),(20341,2526,0,0,6929,'2025-12-22','10:34:06',4448,0,'WPRC','WPRC0049','H','N',1.00,50,50,'P',0,0,0.00,0.00,50.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',7635,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-22 10:34:06','priyanshi','2025-12-22 10:34:06',0),(20342,2526,0,0,6929,'2025-12-22','10:34:06',4448,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7635,5,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-22 10:34:06','priyanshi','2025-12-22 10:34:06',0),(20343,2526,0,0,6930,'2025-12-22','00:00:00',4449,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7636,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 10:34:50','janvi','2025-12-22 10:35:16',0),(20344,2526,0,0,6931,'2025-12-22','00:00:00',3975,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7675,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-22 10:39:32','drashti','2025-12-22 11:40:22',0),(20345,2526,0,0,6932,'2025-12-22','00:00:00',2119,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7637,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 10:40:15','reception','2025-12-22 10:40:59',0),(20346,2526,0,0,6933,'2025-12-22','00:00:00',4450,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7638,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-22 10:43:34','priyanshi','2025-12-22 10:44:05',0),(20347,2526,0,0,6934,'2025-12-22','00:00:00',4451,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7639,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 10:44:25','reception','2025-12-22 10:44:40',0),(20348,2526,0,0,6935,'2025-12-22','00:00:00',4119,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 10:45:16','drashti','2025-12-21 22:15:16',0),(20349,2526,0,0,6936,'2025-12-22','00:00:00',4025,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7640,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 10:46:27','reception','2025-12-22 10:46:47',0),(20350,2526,0,0,6937,'2025-12-22','00:00:00',4452,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7643,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 10:46:35','drashti','2025-12-22 10:50:03',0),(20351,2526,0,0,6938,'2025-12-22','00:00:00',2133,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7641,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 10:47:36','reception','2025-12-22 10:47:47',0),(20352,2526,0,0,6939,'2025-12-22','00:00:00',4453,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7642,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 10:47:53','drashti','2025-12-22 10:49:38',0),(20353,2526,0,0,6940,'2025-12-22','00:00:00',4120,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',7644,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 10:54:16','reception','2025-12-22 10:54:33',0),(20354,2526,0,0,6941,'2025-12-22','00:00:00',4454,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 10:54:58','janvi','2025-12-21 22:24:58',0),(20355,2526,0,0,6942,'2025-12-22','00:00:00',3928,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7645,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 10:55:17','reception','2025-12-22 10:56:11',0),(20356,2526,0,0,6943,'2025-12-22','00:00:00',4455,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7647,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 10:56:19','drashti','2025-12-22 10:57:17',0),(20357,2526,0,0,6941,'2025-12-22','10:56:47',4454,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',7646,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'janvi','2025-12-22 10:56:47','janvi','2025-12-22 10:56:47',0),(20358,2526,0,0,6941,'2025-12-22','10:56:47',4454,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,4,0,0,'',0,0,'','','','','',2526,'H','O',7646,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'janvi','2025-12-22 10:56:47','janvi','2025-12-22 10:56:47',0),(20359,2526,0,0,6941,'2025-12-22','10:56:47',4454,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7646,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'janvi','2025-12-22 10:56:47','janvi','2025-12-22 10:56:47',0),(20360,2526,0,0,6941,'2025-12-22','10:56:47',4454,0,'LAB','LAB0792','H','N',1.00,50,50,'P',0,0,0.00,0.00,50.00,50,9999,0,131,'',0,0,'','','','','',2526,'H','O',7646,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',4,'janvi','2025-12-22 10:56:47','janvi','2025-12-22 10:56:47',0),(20361,2526,0,0,6944,'2025-12-22','00:00:00',3140,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7648,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 10:59:22','drashti','2025-12-22 11:00:34',0),(20362,2526,0,0,6945,'2025-12-22','00:00:00',4088,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7649,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:01:11','reception','2025-12-22 11:01:27',0),(20363,2526,0,0,6927,'2025-12-22','11:02:04',4446,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7650,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 11:02:04','janvi','2025-12-22 11:02:04',0),(20364,2526,0,0,6946,'2025-12-22','00:00:00',4456,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7651,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:02:49','reception','2025-12-22 11:03:12',0),(20365,2526,0,0,6947,'2025-12-22','00:00:00',3228,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7652,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 11:04:47','drashti','2025-12-22 11:05:13',0),(20366,2526,0,0,6948,'2025-12-22','00:00:00',3891,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7653,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 11:09:04','drashti','2025-12-22 11:09:33',0),(20367,2526,0,0,6949,'2025-12-22','00:00:00',4457,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7654,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:10:23','reception','2025-12-22 11:10:50',0),(20368,2526,0,0,6950,'2025-12-22','00:00:00',4458,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7655,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:13:08','reception','2025-12-22 11:14:29',0),(20369,2526,0,0,6951,'2025-12-22','00:00:00',2994,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',7661,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-22 11:14:50','manshi','2025-12-22 11:22:43',0),(20370,2526,0,0,6952,'2025-12-22','00:00:00',4459,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7656,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 11:15:56','drashti','2025-12-22 11:16:17',0),(20371,2526,0,0,6953,'2025-12-22','00:00:00',4460,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7657,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 11:16:08','janvi','2025-12-22 11:16:42',0),(20372,2526,0,0,6954,'2025-12-22','00:00:00',4461,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7658,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:18:11','reception','2025-12-22 11:18:24',0),(20373,2526,0,0,6955,'2025-12-22','00:00:00',4462,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 11:18:34','janvi','2025-12-21 22:48:34',0),(20374,2526,0,0,6918,'2025-12-22','11:21:17',4440,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7659,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:21:17','reception','2025-12-22 11:21:17',0),(20375,2526,0,0,6918,'2025-12-22','11:21:17',4440,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7659,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:21:17','reception','2025-12-22 11:21:17',0),(20376,2526,0,0,6918,'2025-12-22','11:21:17',4440,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7659,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:21:17','reception','2025-12-22 11:21:17',0),(20377,2526,0,0,6951,'2025-12-22','11:22:43',2994,0,'XRY','XRY0254','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',7661,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-22 11:22:43','manshi','2025-12-22 11:22:43',0),(20378,2526,0,0,6909,'2025-12-22','11:22:51',4436,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7662,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 11:22:51','janvi','2025-12-22 11:22:51',0),(20379,2526,0,0,6912,'2025-12-22','11:23:34',4438,0,'PKG','CASE','H','N',1.00,700,700,'P',0,0,0.00,0.00,700.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7663,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:23:34','reception','2025-12-22 11:23:34',0),(20380,2526,0,0,6956,'2025-12-22','00:00:00',2245,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7664,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-22 11:23:34','manshi','2025-12-22 11:23:45',0),(20381,2526,0,0,6957,'2025-12-22','00:00:00',208,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7665,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:25:40','reception','2025-12-22 11:25:51',0),(20382,2526,0,0,6958,'2025-12-22','00:00:00',4463,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7666,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 11:26:32','drashti','2025-12-22 11:26:46',0),(20383,2526,0,0,6959,'2025-12-22','00:00:00',4464,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7667,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:26:42','reception','2025-12-22 11:27:50',0),(20384,2526,0,0,6960,'2025-12-22','00:00:00',4465,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7668,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 11:28:06','janvi','2025-12-22 11:28:22',0),(20385,2526,0,0,6920,'2025-12-22','11:28:41',4442,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7669,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:28:41','reception','2025-12-22 11:28:41',0),(20386,2526,0,0,6920,'2025-12-22','11:28:41',4442,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7669,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:28:41','reception','2025-12-22 11:28:41',0),(20387,2526,0,0,6961,'2025-12-21','11:00:00',0,321,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',310,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 11:33:06','vishal','2025-12-22 18:54:38',0),(20388,2526,0,0,6961,'2025-12-21','11:00:00',0,321,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',310,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 11:33:06','vishal','2025-12-22 18:54:38',0),(20389,2526,0,0,6961,'2025-12-21','11:00:00',0,321,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','305','RC04','','',2526,'H','I',310,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:03:06','vishal','2025-12-22 18:54:38',0),(20390,2526,0,0,6961,'2025-12-22','11:00:00',0,321,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','305','RC04','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:03:06','vishal','2025-12-22 18:54:38',0),(20391,2526,0,0,6961,'2025-12-21','11:00:00',0,321,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','305','','','',2526,'H','I',310,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:03:06','vishal','2025-12-22 18:54:38',0),(20392,2526,0,0,6961,'2025-12-22','11:00:00',0,321,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:03:06','vishal','2025-12-22 18:54:38',0),(20393,2526,0,0,6961,'2025-12-21','11:00:00',0,321,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','305','','','',2526,'H','I',310,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:03:06','vishal','2025-12-22 18:54:38',0),(20394,2526,0,0,6961,'2025-12-22','11:00:00',0,321,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:03:06','vishal','2025-12-22 18:54:38',0),(20395,2526,0,0,6961,'2025-12-21','11:00:00',0,321,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:03:06','vishal','2025-12-22 18:54:38',0),(20396,2526,0,0,6961,'2025-12-22','11:00:00',0,321,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','305','','','',2526,'H','I',310,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:03:06','vishal','2025-12-22 18:54:38',0),(20397,2526,0,0,6961,'2025-12-21','11:00:00',0,321,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:03:06','vishal','2025-12-22 18:54:38',0),(20398,2526,0,0,6961,'2025-12-22','11:00:00',0,321,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','305','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:03:06','vishal','2025-12-22 18:54:38',0),(20399,2526,0,0,6962,'2025-12-22','00:00:00',4466,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7670,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 11:34:47','drashti','2025-12-22 11:35:11',0),(20400,2526,0,0,6963,'2025-12-22','00:00:00',4467,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7672,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 11:36:28','janvi','2025-12-22 11:38:18',0),(20401,2526,0,0,6964,'2025-12-22','00:00:00',3697,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7671,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 11:36:31','drashti','2025-12-22 11:37:43',0),(20402,2526,0,0,6965,'2025-12-22','00:00:00',2880,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7673,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:38:00','reception','2025-12-22 11:38:31',0),(20403,2526,0,0,6956,'2025-12-22','11:39:07',2245,0,'XRY','XRY0244','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7674,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-22 11:39:07','manshi','2025-12-22 11:39:07',0),(20404,2526,0,0,6966,'2025-12-22','00:00:00',4468,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7676,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:41:05','reception','2025-12-22 11:41:18',0),(20405,2526,0,0,6967,'2025-12-22','00:00:00',4469,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7677,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-22 11:43:09','manshi','2025-12-22 11:43:43',0),(20406,2526,0,0,6968,'2025-12-22','00:00:00',4470,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7678,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 11:48:45','drashti','2025-12-22 11:51:56',0),(20407,2526,0,0,6934,'2025-12-22','11:49:54',4451,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7679,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:49:54','reception','2025-12-22 11:49:54',0),(20408,2526,0,0,6934,'2025-12-22','11:49:54',4451,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7679,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:49:54','reception','2025-12-22 11:49:54',0),(20409,2526,0,0,6934,'2025-12-22','11:49:54',4451,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7679,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:49:54','reception','2025-12-22 11:49:54',0),(20410,2526,0,0,6969,'2025-12-22','11:40:00',0,322,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 11:52:42','','0000-00-00 00:00:00',0),(20411,2526,0,0,6969,'2025-12-22','11:40:00',0,322,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 11:52:42','','0000-00-00 00:00:00',0),(20412,2526,0,0,6969,'2025-12-22','11:40:00',0,322,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','310','RC03','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:22:42','','0000-00-00 00:00:00',0),(20413,2526,0,0,6969,'2025-12-22','11:40:00',0,322,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','310','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:22:42','','0000-00-00 00:00:00',0),(20414,2526,0,0,6969,'2025-12-22','11:40:00',0,322,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','310','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:22:42','','0000-00-00 00:00:00',0),(20415,2526,0,0,6969,'2025-12-22','11:40:00',0,322,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','310','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:22:42','','0000-00-00 00:00:00',0),(20416,2526,0,0,6969,'2025-12-22','11:40:00',0,322,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','310','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:22:42','','0000-00-00 00:00:00',0),(20417,2526,0,0,6970,'2025-12-22','00:00:00',4471,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7681,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:56:28','reception','2025-12-22 11:56:57',0),(20418,2526,0,0,6971,'2025-12-22','00:00:00',4472,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7682,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 11:58:52','reception','2025-12-22 11:59:11',0),(20419,2526,0,0,6972,'2025-12-22','00:00:00',4473,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7683,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 12:00:47','reception','2025-12-22 12:01:01',0),(20420,2526,0,0,6940,'2025-12-22','12:05:47',4120,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7684,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 12:05:47','reception','2025-12-22 12:05:47',0),(20421,2526,0,0,6959,'2025-12-22','12:07:09',4464,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7685,1,95,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 12:07:09','reception','2025-12-22 12:07:09',0),(20422,2526,0,0,6959,'2025-12-22','12:07:09',4464,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7685,2,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 12:07:09','reception','2025-12-22 12:07:09',0),(20423,2526,0,0,6959,'2025-12-22','12:07:09',4464,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7685,3,416,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 12:07:09','reception','2025-12-22 12:07:09',0),(20424,2526,0,0,6959,'2025-12-22','12:07:09',4464,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7685,4,473,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 12:07:09','reception','2025-12-22 12:07:09',0),(20425,2526,0,0,6973,'2025-12-22','00:00:00',4474,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7686,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 12:09:32','reception','2025-12-22 12:10:05',0),(20426,2526,0,0,6974,'2025-12-22','12:02:00',0,323,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 12:12:07','','0000-00-00 00:00:00',0),(20427,2526,0,0,6974,'2025-12-22','12:02:00',0,323,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 12:12:07','','0000-00-00 00:00:00',0),(20428,2526,0,0,6974,'2025-12-22','12:02:00',0,323,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','209','RC07','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:42:07','','0000-00-00 00:00:00',0),(20429,2526,0,0,6974,'2025-12-22','12:02:00',0,323,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','209','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:42:07','','0000-00-00 00:00:00',0),(20430,2526,0,0,6974,'2025-12-22','12:02:00',0,323,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','209','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:42:07','','0000-00-00 00:00:00',0),(20431,2526,0,0,6974,'2025-12-22','12:02:00',0,323,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','209','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:42:07','','0000-00-00 00:00:00',0),(20432,2526,0,0,6974,'2025-12-22','12:02:00',0,323,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','209','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:42:07','','0000-00-00 00:00:00',0),(20433,2526,0,0,6975,'2025-12-22','00:00:00',3819,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7687,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 12:13:44','janvi','2025-12-22 12:16:26',0),(20434,2526,0,0,6943,'2025-12-22','12:19:15',4455,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7688,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 12:19:15','drashti','2025-12-22 12:19:15',0),(20435,2526,0,0,6976,'2025-12-22','00:00:00',4475,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7690,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 12:19:15','janvi','2025-12-22 12:19:44',0),(20436,2526,0,0,6967,'2025-12-22','12:19:42',4469,0,'XRY','XRY0254','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',7689,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-22 12:19:42','manshi','2025-12-22 12:19:42',0),(20437,2526,0,0,6977,'2025-12-22','00:00:00',4476,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 12:22:15','janvi','2025-12-21 23:52:15',0),(20438,2526,0,0,6978,'2025-12-22','12:19:00',0,324,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',311,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 12:22:55','vishal','2025-12-22 19:53:43',0),(20439,2526,0,0,6978,'2025-12-22','12:19:00',0,324,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,9999,0,0,'',0,0,'','','','','',2526,'H','I',311,0,0,0,1,'ER','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 12:22:55','vishal','2025-12-22 19:53:43',0),(20440,2526,0,0,6978,'2025-12-22','12:19:00',0,324,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','311','RC03','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:52:55','vishal','2025-12-22 19:53:43',0),(20441,2526,0,0,6978,'2025-12-22','12:19:00',0,324,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','311','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:52:55','vishal','2025-12-22 19:53:43',0),(20442,2526,0,0,6978,'2025-12-22','12:19:00',0,324,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','311','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:52:55','vishal','2025-12-22 19:53:43',0),(20443,2526,0,0,6978,'2025-12-22','12:19:00',0,324,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','311','','','',2526,'H','I',311,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:52:55','vishal','2025-12-22 19:53:43',0),(20444,2526,0,0,6978,'2025-12-22','12:19:00',0,324,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','311','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-21 23:52:55','vishal','2025-12-22 19:53:43',0),(20445,2526,0,0,6925,'2025-12-22','12:30:00',4444,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7691,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 12:30:00','reception','2025-12-22 12:30:00',0),(20446,2526,0,0,6925,'2025-12-22','12:30:00',4444,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7691,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 12:30:00','reception','2025-12-22 12:30:00',0),(20447,2526,0,0,6925,'2025-12-22','12:30:00',4444,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7691,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 12:30:00','reception','2025-12-22 12:30:00',0),(20448,2526,0,0,6903,'2025-12-22','12:33:32',4419,0,'OPWD','OPWD0025','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','O',7692,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 12:33:32','janvi','2025-12-22 12:33:32',0),(20449,2526,0,0,6979,'2025-12-22','00:00:00',4477,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7693,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 12:35:07','reception','2025-12-22 12:35:42',0),(20450,2526,0,0,6892,'2025-12-21','20:54:00',4224,314,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','408','RC04','','',2526,'H','I',306,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 00:06:02','riya','2025-12-22 12:40:34',0),(20451,2526,0,0,6892,'2025-12-21','20:54:00',4224,314,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','408','','','',2526,'H','I',306,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 00:06:02','riya','2025-12-22 12:40:34',0),(20452,2526,0,0,6892,'2025-12-21','20:54:00',4224,314,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','408','','','',2526,'H','I',306,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 00:06:02','riya','2025-12-22 12:40:34',0),(20453,2526,0,0,6892,'2025-12-21','20:54:00',4224,314,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','408','','','',2526,'H','I',306,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 00:06:02','riya','2025-12-22 12:40:34',0),(20454,2526,0,0,6892,'2025-12-21','20:54:00',4224,314,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','408','','','',2526,'H','I',306,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 00:06:02','riya','2025-12-22 12:40:34',0),(20455,2526,0,0,6980,'2025-12-22','00:00:00',4478,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7694,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 12:37:09','reception','2025-12-22 12:37:39',0),(20456,2526,0,0,6981,'2025-12-22','00:00:00',4479,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7695,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-22 12:40:14','priyanshi','2025-12-22 12:40:36',0),(20457,2526,0,0,6892,'2025-12-22','12:40:00',4224,314,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,6,0,0,'',0,0,'','','','','',2526,'H','I',306,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 12:40:34','','0000-00-00 00:00:00',0),(20458,2526,0,0,6892,'2025-12-20','20:54:00',4224,314,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 00:10:34','riya','2025-12-22 12:41:31',0),(20459,2526,0,0,6882,'2025-12-22','12:44:00',0,312,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',305,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 12:44:37','','0000-00-00 00:00:00',0),(20460,2526,0,0,6882,'2025-12-22','12:45:00',0,312,'ROOM','ROOM0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','','','','',2526,'H','I',305,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 12:46:04','riya','2025-12-22 12:47:05',0),(20461,2526,0,0,6952,'2025-12-22','12:59:56',4459,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7696,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 12:59:56','reception','2025-12-22 12:59:56',0),(20462,2526,0,0,6952,'2025-12-22','12:59:56',4459,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7696,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 12:59:56','reception','2025-12-22 12:59:56',0),(20463,2526,0,0,6952,'2025-12-22','12:59:56',4459,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7696,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 12:59:56','reception','2025-12-22 12:59:56',0),(20464,2526,0,0,6982,'2025-12-22','00:00:00',4480,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7697,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-22 13:00:36','priyanshi','2025-12-22 13:00:52',0),(20465,2526,0,0,6983,'2025-12-22','00:00:00',4481,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7698,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 13:07:16','reception','2025-12-22 13:07:41',0),(20466,2526,0,0,6984,'2025-12-22','00:00:00',4482,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7699,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 13:10:58','shweta','2025-12-22 15:08:58',0),(20467,2526,0,0,6976,'2025-12-22','13:18:49',4475,0,'OPWD','OPWD0029','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',7700,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 13:18:49','janvi','2025-12-22 13:18:49',0),(20468,2526,0,0,6983,'2025-12-22','13:20:39',4481,0,'USG','USG0079','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','O',7701,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-22 13:20:39','priyanshi','2025-12-22 13:20:39',0),(20469,2526,0,0,6980,'2025-12-22','13:21:12',4478,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7702,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 13:21:12','reception','2025-12-22 13:21:12',0),(20470,2526,0,0,6980,'2025-12-22','13:21:12',4478,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',7702,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 13:21:12','reception','2025-12-22 13:21:12',0),(20471,2526,0,0,6985,'2025-12-22','00:00:00',4483,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7703,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-22 13:26:02','priyanshi','2025-12-22 13:26:32',0),(20472,2526,0,0,6986,'2025-12-22','00:00:00',4484,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7704,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 13:33:52','janvi','2025-12-22 13:35:40',0),(20473,2526,0,0,6962,'2025-12-22','13:42:42',4466,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7705,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 13:42:42','reception','2025-12-22 13:42:42',0),(20474,2526,0,0,6962,'2025-12-22','13:42:42',4466,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7705,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 13:42:42','reception','2025-12-22 13:42:42',0),(20475,2526,0,0,6165,'2025-12-22','12:50:00',0,285,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','210','RC07','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 01:22:20','riya','2025-12-22 13:57:46',0),(20476,2526,0,0,6165,'2025-12-22','12:50:00',0,285,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',0,'','',0,79,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 01:22:20','riya','2025-12-22 13:59:18',0),(20477,2526,0,0,6165,'2025-12-22','12:50:00',0,285,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',0,'','',0,80,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 01:22:20','riya','2025-12-22 14:00:20',0),(20478,2526,0,0,6165,'2025-12-22','12:50:00',0,285,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,78,0,0,'',0,0,'','210','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 01:22:20','riya','2025-12-22 13:57:46',0),(20479,2526,0,0,6165,'2025-12-22','12:50:00',0,285,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,78,0,0,'',0,0,'','210','','','',0,'','',0,82,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 01:22:20','riya','2025-12-22 14:16:05',0),(20480,2526,0,0,6987,'2025-12-22','00:00:00',4485,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 13:56:15','janvi','2025-12-22 01:26:15',0),(20481,2526,0,0,6987,'2025-12-22','13:56:50',4485,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',7706,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 13:56:50','janvi','2025-12-22 13:56:50',0),(20482,2526,0,0,6165,'2025-12-19','13:56:00',0,285,'ROOM','ROOM0009','H','N',1.00,5500,5500,'P',0,0,0.00,0.00,5500.00,5500,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 13:57:46','','0000-00-00 00:00:00',0),(20483,2526,0,0,6967,'2025-12-22','13:57:52',4469,0,'OPWD','OPWD0013','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7707,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 13:57:52','janvi','2025-12-22 13:57:52',0),(20484,2526,0,0,6165,'2025-12-19','12:50:00',0,285,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,9999,0,0,'',0,0,'','210','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 01:29:18','riya','2025-12-22 14:00:20',0),(20485,2526,0,0,6165,'2025-12-19','12:50:00',0,285,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','210','','','',2526,'H','I',307,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 01:30:20','riya','2025-12-22 14:02:45',0),(20486,2526,0,0,6165,'2025-12-22','14:02:00',0,285,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 14:02:45','','0000-00-00 00:00:00',0),(20487,2526,0,0,6165,'2025-12-21','14:05:00',0,285,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 14:06:28','','0000-00-00 00:00:00',0),(20488,2526,0,0,6165,'2025-12-22','14:06:00',0,285,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 14:06:28','','0000-00-00 00:00:00',0),(20489,2526,0,0,6966,'2025-12-22','14:07:05',4468,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7708,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 14:07:05','reception','2025-12-22 14:07:05',0),(20490,2526,0,0,6966,'2025-12-22','14:07:05',4468,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7708,2,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 14:07:05','reception','2025-12-22 14:07:05',0),(20491,2526,0,0,6165,'2025-12-21','14:07:00',0,285,'WPRC','WPRC0087','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 14:08:01','','0000-00-00 00:00:00',0),(20492,2526,0,0,6983,'2025-12-22','14:13:40',4481,0,'WPRC','WPRC0037','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,4,0,0,'',0,0,'','','','','',2526,'H','O',7709,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-22 14:13:39','shweta','2025-12-22 14:13:39',0),(20493,2526,0,0,6165,'2025-12-21','14:15:00',0,285,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 14:16:05','','0000-00-00 00:00:00',0),(20494,2526,0,0,6165,'2025-12-21','14:16:00',0,285,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 14:17:19','','0000-00-00 00:00:00',0),(20495,2526,0,0,6165,'2025-12-22','14:16:00',0,285,'DRC','DRC0020','H','N',1.00,1600,1600,'P',0,0,0.00,0.00,1600.00,1600,4,0,0,'',0,0,'','','','','',2526,'H','I',307,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 14:17:19','','0000-00-00 00:00:00',0),(20496,2526,0,0,6988,'2025-12-22','00:00:00',3791,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7710,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-22 14:17:41','shweta','2025-12-22 14:18:35',0),(20497,2526,0,0,6989,'2025-12-22','00:00:00',4486,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 14:32:33','drashti','2025-12-22 02:02:33',0),(20498,2526,0,0,6989,'2025-12-22','14:34:41',4486,0,'OPWD','OPWD0030','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',7711,1,600,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 14:34:41','drashti','2025-12-22 14:34:41',0),(20499,2526,0,0,6986,'2025-12-22','14:37:41',4484,0,'XRY','XRY0354','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',7712,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'shweta','2025-12-22 14:37:41','shweta','2025-12-22 14:37:41',0),(20500,2526,0,0,6979,'2025-12-22','14:46:29',4477,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7713,1,31,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 14:46:29','reception','2025-12-22 14:46:29',0),(20501,2526,0,0,6979,'2025-12-22','14:46:29',4477,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7713,2,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 14:46:29','reception','2025-12-22 14:46:29',0),(20502,2526,0,0,6979,'2025-12-22','14:46:29',4477,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7713,3,135,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 14:46:29','reception','2025-12-22 14:46:29',0),(20503,2526,0,0,6990,'2025-12-22','00:00:00',3962,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7715,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 16:20:56','reception','2025-12-22 16:21:11',0),(20504,2526,0,0,6991,'2025-12-22','16:20:00',0,325,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 16:25:05','','0000-00-00 00:00:00',0),(20505,2526,0,0,6991,'2025-12-22','16:20:00',0,325,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 16:25:05','','0000-00-00 00:00:00',0),(20506,2526,0,0,6991,'2025-12-22','16:20:00',0,325,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','308','RC03','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 03:55:05','','0000-00-00 00:00:00',0),(20507,2526,0,0,6991,'2025-12-22','16:20:00',0,325,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 03:55:05','','0000-00-00 00:00:00',0),(20508,2526,0,0,6991,'2025-12-22','16:20:00',0,325,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 03:55:05','','0000-00-00 00:00:00',0),(20509,2526,0,0,6991,'2025-12-22','16:20:00',0,325,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 03:55:05','','0000-00-00 00:00:00',0),(20510,2526,0,0,6991,'2025-12-22','16:20:00',0,325,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','308','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 03:55:05','','0000-00-00 00:00:00',0),(20511,2526,0,0,6992,'2025-12-22','00:00:00',1969,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7716,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 16:25:26','reception','2025-12-22 16:25:56',0),(20512,2526,0,0,5120,'2025-12-22','01:00:00',0,243,'ROOM','ROOM0009','H','N',1.00,3200,3200,'P',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','406','RC04','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 04:11:04','vishal','2025-12-22 17:22:21',0),(20513,2526,0,0,5120,'2025-12-22','01:00:00',0,243,'AECO','AECO0008','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 04:11:04','vishal','2025-12-22 17:22:21',0),(20514,2526,0,0,5120,'2025-12-22','01:00:00',0,243,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 04:11:04','vishal','2025-12-22 17:22:21',0),(20515,2526,0,0,5120,'2025-12-22','01:00:00',0,243,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',2526,'H','I',313,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 04:11:04','vishal','2025-12-22 17:22:21',0),(20516,2526,0,0,5120,'2025-12-22','01:00:00',0,243,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','406','','','',0,'','',0,0,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-22 04:11:04','vishal','2025-12-22 17:36:39',0),(20517,2526,0,0,6993,'2025-12-22','00:00:00',80,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7717,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 16:47:16','reception','2025-12-22 16:47:32',0),(20518,2526,0,0,6994,'2025-12-22','00:00:00',3992,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7718,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 16:48:23','reception','2025-12-22 16:48:34',0),(20519,2526,0,0,6995,'2025-12-22','16:50:04',4480,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7719,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 16:50:04','reception','2025-12-22 16:50:04',0),(20520,2526,0,0,6995,'2025-12-22','16:50:04',4480,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7719,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 16:50:04','reception','2025-12-22 16:50:04',0),(20521,2526,0,0,6996,'2025-12-22','16:51:32',4456,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7720,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 16:51:32','reception','2025-12-22 16:51:32',0),(20522,2526,0,0,6996,'2025-12-22','16:51:32',4456,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7720,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 16:51:32','reception','2025-12-22 16:51:32',0),(20523,2526,0,0,6997,'2025-12-22','00:00:00',1929,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7721,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 16:52:41','reception','2025-12-22 16:54:41',0),(20524,2526,0,0,6998,'2025-12-22','16:54:58',4229,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7722,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 16:54:58','drashti','2025-12-22 16:54:58',0),(20525,2526,0,0,6999,'2025-12-22','00:00:00',1841,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',7723,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 16:56:45','reception','2025-12-22 18:15:57',0),(20526,2526,0,0,7000,'2025-12-22','00:00:00',3995,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7724,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 17:04:59','reception','2025-12-22 17:05:22',0),(20527,2526,0,0,7001,'2025-12-22','00:00:00',3850,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7725,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 17:07:31','reception','2025-12-22 17:08:45',0),(20528,2526,0,0,5120,'2025-12-22','17:08:00',0,243,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 17:08:50','','0000-00-00 00:00:00',0),(20529,2526,0,0,7002,'2025-12-22','00:00:00',4487,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7726,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 17:09:48','reception','2025-12-22 17:10:16',0),(20530,2526,0,0,7003,'2025-12-22','17:14:55',3887,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7727,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 17:14:55','drashti','2025-12-22 17:14:55',0),(20531,2526,0,0,7004,'2025-12-22','00:00:00',3749,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7728,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 17:16:33','reception','2025-12-22 17:17:47',0),(20532,2526,0,0,7005,'2025-12-22','00:00:00',4488,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7729,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 17:16:54','drashti','2025-12-22 17:18:21',0),(20533,2526,0,0,7006,'2025-12-22','00:00:00',4489,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7730,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 17:20:12','reception','2025-12-22 17:20:35',0),(20534,2526,0,0,5120,'2025-12-17','17:14:00',0,243,'WPRC','WPRC0080','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 17:20:27','','0000-00-00 00:00:00',0),(20535,2526,0,0,5120,'2025-12-21','17:14:00',0,243,'WPRC','WPRC0084','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 17:20:27','','0000-00-00 00:00:00',0),(20536,2526,0,0,5120,'2025-12-21','17:19:00',0,243,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 17:20:27','','0000-00-00 00:00:00',0),(20537,2526,0,0,5120,'2025-12-22','17:19:00',0,243,'ROOM','ROOM0004','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 17:20:27','','0000-00-00 00:00:00',0),(20538,2526,0,0,5120,'2025-12-14','17:19:00',0,243,'WPRC','WPRC0082','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 17:20:27','vishal','2025-12-22 17:22:21',0),(20539,2526,0,0,5120,'2025-12-15','17:19:00',0,243,'WPRC','WPRC0082','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 17:20:27','','0000-00-00 00:00:00',0),(20540,2526,0,0,5120,'2025-12-16','17:19:00',0,243,'WPRC','WPRC0082','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 17:20:27','vishal','2025-12-22 17:22:21',0),(20541,2526,0,0,5120,'2025-12-17','17:19:00',0,243,'WPRC','WPRC0082','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 17:20:27','vishal','2025-12-22 17:22:21',0),(20542,2526,0,0,5120,'2025-12-18','17:19:00',0,243,'WPRC','WPRC0082','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 17:20:27','vishal','2025-12-22 17:22:21',0),(20543,2526,0,0,5120,'2025-12-19','17:19:00',0,243,'WPRC','WPRC0082','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 17:20:27','vishal','2025-12-22 17:22:21',0),(20544,2526,0,0,5120,'2025-12-21','17:20:00',0,243,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 17:22:21','','0000-00-00 00:00:00',0),(20545,2526,0,0,5120,'2025-12-22','17:20:00',0,243,'WPRC','WPRC0086','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 17:22:21','','0000-00-00 00:00:00',0),(20546,2526,0,0,7007,'2025-12-22','00:00:00',4490,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7731,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 17:34:33','reception','2025-12-22 17:35:08',0),(20547,2526,0,0,5120,'2025-12-22','17:35:00',0,243,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,174,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 17:36:39','','0000-00-00 00:00:00',0),(20548,2526,0,0,5120,'2025-12-22','17:35:00',0,243,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,37,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 17:36:39','vishal','2025-12-22 21:11:07',0),(20549,2526,0,0,7008,'2025-12-22','00:00:00',2302,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7732,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 17:37:47','janvi','2025-12-22 17:37:59',0),(20550,2526,0,0,7002,'2025-12-22','17:38:01',4487,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7733,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 17:38:01','reception','2025-12-22 17:38:01',0),(20551,2526,0,0,7002,'2025-12-22','17:38:01',4487,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7733,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 17:38:01','reception','2025-12-22 17:38:01',0),(20552,2526,0,0,7009,'2025-12-22','00:00:00',4491,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7734,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 17:40:04','reception','2025-12-22 17:41:05',0),(20553,2526,0,0,7010,'2025-12-22','17:30:00',0,326,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 17:40:16','','0000-00-00 00:00:00',0),(20554,2526,0,0,7010,'2025-12-22','17:30:00',0,326,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 17:40:16','','0000-00-00 00:00:00',0),(20555,2526,0,0,7010,'2025-12-22','17:30:00',0,326,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','408','RC04','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:10:17','','0000-00-00 00:00:00',0),(20556,2526,0,0,7010,'2025-12-22','17:30:00',0,326,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:10:17','','0000-00-00 00:00:00',0),(20557,2526,0,0,7010,'2025-12-22','17:30:00',0,326,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:10:17','','0000-00-00 00:00:00',0),(20558,2526,0,0,7010,'2025-12-22','17:30:00',0,326,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:10:17','','0000-00-00 00:00:00',0),(20559,2526,0,0,7010,'2025-12-22','17:30:00',0,326,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','408','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:10:17','','0000-00-00 00:00:00',0),(20560,2526,0,0,7011,'2025-12-22','00:00:00',4492,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7735,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-22 17:42:31','manshi','2025-12-22 17:45:58',0),(20561,2526,0,0,7012,'2025-12-22','00:00:00',4016,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7736,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 17:47:05','reception','2025-12-22 17:48:30',0),(20562,2526,0,0,7013,'2025-12-22','00:00:00',2827,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7766,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 17:47:37','drashti','2025-12-22 18:42:44',0),(20563,2526,0,0,7014,'2025-12-22','17:50:02',4078,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7737,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 17:50:02','janvi','2025-12-22 17:50:02',0),(20564,2526,0,0,7015,'2025-12-22','00:00:00',4493,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7738,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 17:50:19','drashti','2025-12-22 17:51:33',0),(20565,2526,0,0,7016,'2025-12-22','00:00:00',1916,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7739,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 17:51:08','reception','2025-12-22 17:51:35',0),(20566,2526,0,0,7017,'2025-12-22','00:00:00',4494,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7740,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 17:51:28','janvi','2025-12-22 18:23:22',0),(20567,2526,0,0,7006,'2025-12-22','17:53:20',4489,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7741,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 17:53:20','reception','2025-12-22 17:53:20',0),(20568,2526,0,0,7006,'2025-12-22','17:53:20',4489,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7741,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 17:53:20','reception','2025-12-22 17:53:20',0),(20569,2526,0,0,5120,'2025-12-22','17:54:00',0,243,'DRC','DRC0020','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,78,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 17:54:59','','0000-00-00 00:00:00',0),(20570,2526,0,0,7018,'2025-12-22','17:58:30',2542,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7742,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 17:58:30','janvi','2025-12-22 17:58:30',0),(20571,2526,0,0,7019,'2025-12-22','00:00:00',2175,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',7764,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-22 18:02:11','manshi','2025-12-22 18:39:22',0),(20572,2526,0,0,6843,'2025-12-21','21:00:00',0,311,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','404','RC04','','',2526,'H','I',312,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:32:29','vishal','2025-12-22 21:00:02',0),(20573,2526,0,0,6843,'2025-12-21','21:00:00',0,311,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','404','','','',2526,'H','I',312,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:32:29','vishal','2025-12-22 21:00:02',0),(20574,2526,0,0,6843,'2025-12-21','21:00:00',0,311,'CARE','CARE0001','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','404','','','',2526,'H','I',312,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:32:29','vishal','2025-12-22 21:00:47',0),(20575,2526,0,0,6843,'2025-12-21','21:00:00',0,311,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','404','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:32:29','vishal','2025-12-22 21:00:02',0),(20576,2526,0,0,6843,'2025-12-21','21:00:00',0,311,'DRC','DRC0019','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','404','','','',2526,'H','I',312,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:32:29','vishal','2025-12-22 21:00:47',0),(20577,2526,0,0,6998,'2025-12-22','18:04:37',4229,0,'XRY','XRY0056','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,2526,0,'OPC','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drjayant','2025-12-22 18:04:37','','0000-00-00 00:00:00',0),(20578,2526,0,0,7020,'2025-12-22','00:00:00',4495,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7743,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 18:05:04','reception','2025-12-22 18:05:17',0),(20579,2526,0,0,7021,'2025-12-22','00:00:00',2367,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7744,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-22 18:07:47','manshi','2025-12-22 18:08:40',0),(20580,2526,0,0,7011,'2025-12-22','18:11:52',4492,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7745,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-22 18:11:52','manshi','2025-12-22 18:11:52',0),(20581,2526,0,0,7022,'2025-12-22','00:00:00',4496,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7746,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 18:12:24','reception','2025-12-22 18:12:38',0),(20582,2526,0,0,7023,'2025-12-22','00:00:00',3730,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7747,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 18:13:31','drashti','2025-12-22 18:13:50',0),(20583,2526,0,0,7024,'2025-12-22','00:00:00',4497,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7771,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-22 18:13:32','manshi','2025-12-22 18:48:52',0),(20584,2526,0,0,7026,'2025-12-22','18:15:53',3720,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7748,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 18:15:53','janvi','2025-12-22 18:15:53',0),(20585,2526,0,0,6999,'2025-12-22','18:17:06',1841,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',7750,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 18:17:06','reception','2025-12-22 18:17:06',0),(20586,2526,0,0,7027,'2025-12-22','00:00:00',4498,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7751,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 18:17:48','drashti','2025-12-22 18:19:04',0),(20587,2526,0,0,6922,'2025-12-22','18:20:00',0,320,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',309,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 18:20:43','','0000-00-00 00:00:00',0),(20588,2526,0,0,6922,'2025-12-22','18:20:00',0,320,'CARE','CARE0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',0,'','',0,6,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 18:20:43','vishal','2025-12-22 18:22:36',0),(20589,2526,0,0,7029,'2025-12-22','00:00:00',4499,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7753,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 18:22:05','drashti','2025-12-22 18:22:44',0),(20590,2526,0,0,7028,'2025-12-22','18:22:27',4065,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',7752,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-22 18:22:27','manshi','2025-12-22 18:22:27',0),(20591,2526,0,0,7030,'2025-12-22','00:00:00',3732,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7755,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 18:23:26','reception','2025-12-22 18:23:59',0),(20592,2526,0,0,6922,'2025-12-22','18:22:00',0,320,'CARE','CARE0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',309,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 18:23:32','','0000-00-00 00:00:00',0),(20593,2526,0,0,6922,'2025-12-22','18:23:00',0,320,'WPRC','WPRC0114','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','I',309,7,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 18:24:04','','0000-00-00 00:00:00',0),(20594,2526,0,0,7031,'2025-12-22','00:00:00',3315,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7756,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 18:24:05','drashti','2025-12-22 18:24:59',0),(20595,2526,0,0,7032,'2025-12-22','00:00:00',4033,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 18:25:48','reception','2025-12-22 05:55:48',0),(20596,2526,0,0,7033,'2025-12-22','00:00:00',3993,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7757,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 18:26:38','reception','2025-12-22 18:27:01',0),(20597,2526,0,0,4017,'2025-12-22','15:00:00',0,187,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','208','RC07','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:20','','0000-00-00 00:00:00',0),(20598,2526,0,0,4017,'2025-12-22','15:00:00',0,187,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:20','','0000-00-00 00:00:00',0),(20599,2526,0,0,4017,'2025-12-22','15:00:00',0,187,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:20','','0000-00-00 00:00:00',0),(20600,2526,0,0,4017,'2025-12-22','15:00:00',0,187,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:20','','0000-00-00 00:00:00',0),(20601,2526,0,0,4017,'2025-12-22','15:00:00',0,187,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','208','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:21','','0000-00-00 00:00:00',0),(20602,2526,0,0,6346,'2025-12-22','10:40:00',4056,297,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','410','RC03','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:21','','0000-00-00 00:00:00',0),(20603,2526,0,0,6346,'2025-12-22','10:40:00',4056,297,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:21','','0000-00-00 00:00:00',0),(20604,2526,0,0,6346,'2025-12-22','10:40:00',4056,297,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:21','','0000-00-00 00:00:00',0),(20605,2526,0,0,6346,'2025-12-22','10:40:00',4056,297,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:21','','0000-00-00 00:00:00',0),(20606,2526,0,0,6346,'2025-12-22','10:40:00',4056,297,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','410','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:21','','0000-00-00 00:00:00',0),(20607,2526,0,0,6769,'2025-12-22','12:00:00',0,309,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','412','RC03','','',2526,'H','D',332,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:21','riya','2025-12-23 16:40:16',0),(20608,2526,0,0,6769,'2025-12-22','12:00:00',0,309,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','412','','','',2526,'H','D',332,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:21','riya','2025-12-23 16:40:16',0),(20609,2526,0,0,6769,'2025-12-22','12:00:00',0,309,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','412','','','',2526,'H','D',332,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:21','riya','2025-12-23 16:40:16',0),(20610,2526,0,0,6769,'2025-12-22','12:00:00',0,309,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','D',332,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:21','riya','2025-12-23 16:40:16',0),(20611,2526,0,0,6769,'2025-12-22','12:00:00',0,309,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','D',332,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:21','riya','2025-12-23 16:40:16',0),(20612,2526,0,0,6780,'2025-12-22','15:38:00',0,310,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','403','RC03','','',2526,'H','I',315,22,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:48:58',0),(20613,2526,0,0,6780,'2025-12-22','15:38:00',0,310,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','403','','','',2526,'H','I',315,23,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:48:58',0),(20614,2526,0,0,6780,'2025-12-22','15:38:00',0,310,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','403','','','',2526,'H','I',315,24,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:48:58',0),(20615,2526,0,0,6780,'2025-12-22','15:38:00',0,310,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',315,25,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:48:58',0),(20616,2526,0,0,6780,'2025-12-22','15:38:00',0,310,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','403','','','',2526,'H','I',315,26,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:48:58',0),(20617,2526,0,0,6884,'2025-12-22','12:30:00',2680,313,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','401','RC04','','',0,'','',0,15,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:43:03',0),(20618,2526,0,0,6884,'2025-12-22','12:30:00',2680,313,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','401','','','',0,'','',0,16,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:43:03',0),(20619,2526,0,0,6884,'2025-12-22','12:30:00',2680,313,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','401','','','',0,'','',0,17,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:43:03',0),(20620,2526,0,0,6884,'2025-12-22','12:30:00',2680,313,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',0,'','',0,18,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:43:03',0),(20621,2526,0,0,6884,'2025-12-22','12:30:00',2680,313,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','401','','','',0,'','',0,19,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:43:03',0),(20622,2526,0,0,6898,'2025-12-22','14:00:00',0,315,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,9999,0,0,'',0,0,'','402','RC03','','',2526,'H','I',314,8,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:35:49',0),(20623,2526,0,0,6898,'2025-12-22','14:00:00',0,315,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','402','','','',2526,'H','I',314,9,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:35:49',0),(20624,2526,0,0,6898,'2025-12-22','14:00:00',0,315,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','402','','','',2526,'H','I',314,10,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:35:49',0),(20625,2526,0,0,6898,'2025-12-22','14:00:00',0,315,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',314,11,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:35:49',0),(20626,2526,0,0,6898,'2025-12-22','14:00:00',0,315,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','402','','','',2526,'H','I',314,12,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:35:49',0),(20627,2526,0,0,6899,'2025-12-22','18:00:00',4172,316,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,9999,0,0,'',0,0,'','405','RC04','','',2526,'H','I',316,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:45:39',0),(20628,2526,0,0,6899,'2025-12-22','18:00:00',4172,316,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','405','','','',2526,'H','I',316,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:45:39',0),(20629,2526,0,0,6899,'2025-12-22','18:00:00',4172,316,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','405','','','',2526,'H','I',316,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:45:39',0),(20630,2526,0,0,6899,'2025-12-22','18:00:00',4172,316,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',316,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:45:39',0),(20631,2526,0,0,6899,'2025-12-22','18:00:00',4172,316,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','405','','','',2526,'H','I',316,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 05:57:22','riya','2025-12-23 09:45:39',0),(20632,2526,0,0,7034,'2025-12-22','00:00:00',4500,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7758,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 18:32:02','drashti','2025-12-22 18:33:09',0),(20633,2526,0,0,7035,'2025-12-22','00:00:00',4501,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7759,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 18:32:33','janvi','2025-12-22 18:33:21',0),(20634,2526,0,0,7037,'2025-12-22','00:00:00',4502,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7760,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 18:34:44','drashti','2025-12-22 18:35:37',0),(20635,2526,0,0,7020,'2025-12-22','18:35:38',4495,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7761,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 18:35:38','reception','2025-12-22 18:35:38',0),(20636,2526,0,0,7020,'2025-12-22','18:35:38',4495,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7761,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 18:35:38','reception','2025-12-22 18:35:38',0),(20637,2526,0,0,7020,'2025-12-22','18:37:03',4495,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7762,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 18:37:03','reception','2025-12-22 18:37:03',0),(20638,2526,0,0,7038,'2025-12-22','18:38:36',4254,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7763,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 18:38:36','janvi','2025-12-22 18:38:36',0),(20639,2526,0,0,7039,'2025-12-22','00:00:00',4503,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7769,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-22 18:39:08','manshi','2025-12-22 18:45:18',0),(20640,2526,0,0,7040,'2025-12-22','00:00:00',4504,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7765,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 18:40:14','reception','2025-12-22 18:41:12',0),(20641,2526,0,0,7041,'2025-12-22','00:00:00',4505,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7768,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 18:44:01','janvi','2025-12-22 20:04:28',0),(20642,2526,0,0,7042,'2025-12-22','00:00:00',3954,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7767,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 18:44:10','reception','2025-12-22 18:44:49',0),(20643,2526,0,0,7043,'2025-12-22','18:46:28',3319,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7770,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 18:46:28','janvi','2025-12-22 18:46:28',0),(20644,2526,0,0,7044,'2025-12-22','00:00:00',2764,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7772,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 18:48:54','drashti','2025-12-22 18:49:36',0),(20645,2526,0,0,6939,'2025-12-22','18:49:49',4453,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7773,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 18:49:49','reception','2025-12-22 18:49:49',0),(20646,2526,0,0,7045,'2025-12-22','00:00:00',4506,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 18:50:02','janvi','2025-12-22 06:20:02',0),(20647,2526,0,0,7046,'2025-12-22','00:00:00',4507,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7774,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 18:51:54','drashti','2025-12-22 18:55:26',0),(20648,2526,0,0,7047,'2025-12-22','00:00:00',4508,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7775,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 18:53:49','janvi','2025-12-22 18:54:35',0),(20649,2526,0,0,6961,'2025-12-21','18:54:00',0,321,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',310,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 18:54:38','','0000-00-00 00:00:00',0),(20650,2526,0,0,7049,'2025-12-22','00:00:00',4509,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7778,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 18:56:41','reception','2025-12-22 18:58:02',0),(20651,2526,0,0,7046,'2025-12-22','00:00:00',4507,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,5,0,0,'',0,0,'','','','','',2526,'H','O',7777,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 18:57:03','reception','2025-12-22 19:10:15',0),(20652,2526,0,0,7051,'2025-12-22','00:00:00',4510,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7779,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 19:00:06','drashti','2025-12-22 19:01:35',0),(20653,2526,0,0,7052,'2025-12-22','00:00:00',3433,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7780,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 19:05:13','reception','2025-12-22 19:05:46',0),(20654,2526,0,0,7053,'2025-12-22','00:00:00',4511,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7782,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 19:08:41','drashti','2025-12-22 19:10:25',0),(20655,2526,0,0,7046,'2025-12-22','00:00:00',4507,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7783,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 19:12:22','reception','2025-12-22 19:12:48',0),(20656,2526,0,0,7054,'2025-12-22','19:13:59',3605,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',7784,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 19:13:59','drashti','2025-12-22 19:13:59',0),(20657,2526,0,0,7055,'2025-12-22','00:00:00',4512,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7785,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 19:15:51','drashti','2025-12-22 19:17:06',0),(20658,2526,0,0,7057,'2025-12-22','00:00:00',4000,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7788,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-22 19:17:17','manshi','2025-12-22 19:19:53',0),(20659,2526,0,0,7040,'2025-12-22','19:18:18',4504,0,'OPWD','OPWD0013','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,2,0,0,'',0,0,'','','','','',2526,'H','O',7786,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 19:18:18','reception','2025-12-22 19:18:18',0),(20660,2526,0,0,7056,'2025-12-22','19:19:05',3486,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7787,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 19:19:05','janvi','2025-12-22 19:19:05',0),(20661,2526,0,0,7057,'2025-12-22','19:19:53',4000,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,6,0,0,'',0,0,'','','','','',2526,'H','O',7788,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-22 19:19:53','manshi','2025-12-22 19:19:53',0),(20662,2526,0,0,7058,'2025-12-22','00:00:00',1399,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7789,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 19:24:17','janvi','2025-12-22 19:24:29',0),(20663,2526,0,0,7049,'2025-12-22','19:26:33',4509,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7790,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 19:26:33','reception','2025-12-22 19:26:33',0),(20664,2526,0,0,7049,'2025-12-22','19:26:33',4509,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',7790,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 19:26:33','reception','2025-12-22 19:26:33',0),(20665,2526,0,0,7004,'2025-12-22','19:37:46',3749,0,'OPWD','OPWD0023','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,3,0,0,'',0,0,'','','','','',2526,'H','O',7791,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 19:37:46','janvi','2025-12-22 19:37:46',0),(20666,2526,0,0,7059,'2025-12-22','00:00:00',4513,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7792,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-22 19:50:50','manshi','2025-12-22 19:51:43',0),(20667,2526,0,0,7059,'2025-12-22','19:51:43',4513,0,'OPWD','OPWD0023','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,7,0,0,'',0,0,'','','','','',2526,'H','O',7792,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-22 19:51:43','manshi','2025-12-22 19:51:43',0),(20668,2526,0,0,7060,'2025-12-22','00:00:00',4514,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 19:53:02','janvi','2025-12-22 07:23:02',0),(20669,2526,0,0,6978,'2025-12-22','19:52:00',0,324,'CARE','CARE0007','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,9999,0,0,'',0,0,'','','','','',2526,'H','I',311,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 19:53:43','','0000-00-00 00:00:00',0),(20670,2526,0,0,6978,'2025-12-22','19:52:00',0,324,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',311,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 19:53:43','','0000-00-00 00:00:00',0),(20671,2526,0,0,6978,'2025-12-22','19:53:00',0,324,'WPRC','WPRC0114','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','I',311,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 19:53:43','','0000-00-00 00:00:00',0),(20672,2526,0,0,7061,'2025-12-22','00:00:00',4515,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7793,1,0,0,1,'O','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 19:55:49','reception','2025-12-22 20:26:11',0),(20673,2526,0,0,7048,'2025-12-22','19:57:48',4300,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7794,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-22 19:57:48','janvi','2025-12-22 19:57:48',0),(20674,2526,0,0,7062,'2025-12-22','00:00:00',4516,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7795,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 20:01:53','drashti','2025-12-22 20:02:54',0),(20675,2526,0,0,7063,'2025-12-22','00:00:00',4517,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7797,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-22 20:15:09','drashti','2025-12-22 20:17:24',0),(20676,2526,0,0,7064,'2025-12-22','20:40:24',4334,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,7,0,0,'',0,0,'','','','','',2526,'H','O',7799,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-22 20:40:24','reception','2025-12-22 20:40:24',0),(20677,2526,0,0,6843,'2025-12-22','20:58:00',0,311,'DRC','DRC0018','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,42,0,0,'',0,0,'','','','','',2526,'H','I',312,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 21:00:02','','0000-00-00 00:00:00',0),(20678,2526,0,0,6843,'2025-12-21','20:59:00',0,311,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',312,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 21:00:02','vishal','2025-12-22 21:00:47',0),(20679,2526,0,0,6843,'2025-12-21','20:59:00',0,311,'DRC','DRC0020','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 21:00:02','vishal','2025-12-22 21:14:02',0),(20680,2526,0,0,6843,'2025-12-22','20:59:00',0,311,'DRC','DRC0020','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,8,0,0,'',0,0,'','','','','',2526,'H','I',312,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 21:00:02','','0000-00-00 00:00:00',0),(20681,2526,0,0,7065,'2025-12-22','00:00:00',4518,0,'PKG','CASE','H','N',1.00,1200,1200,'A',0,0,0.00,0.00,1200.00,1200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-22 21:00:20','priyanshi','2025-12-22 08:30:20',0),(20682,2526,0,0,7065,'2025-12-22','21:02:05',4518,0,'SURG','SURG0005','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,7,0,0,'',0,0,'','','','','',2526,'H','O',7800,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-22 21:02:05','priyanshi','2025-12-22 21:02:05',0),(20683,2526,0,0,7065,'2025-12-22','21:02:05',4518,0,'WPRC','WPRC0042','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,7,0,0,'',0,0,'','','','','',2526,'H','O',7800,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'priyanshi','2025-12-22 21:02:05','priyanshi','2025-12-22 21:02:05',0),(20684,2526,0,0,5120,'2025-12-22','21:10:00',0,243,'DRC','DRC0019','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'IPB','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 21:11:07','vishal','2025-12-22 21:49:14',0),(20685,2526,0,0,5120,'2025-12-22','21:27:00',0,243,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,37,0,0,'',0,0,'','','','','',2526,'H','I',313,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 21:28:42','vishal','2025-12-22 21:48:00',0),(20686,2526,0,0,7066,'2025-12-22','21:30:00',4496,327,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 21:41:35','','0000-00-00 00:00:00',0),(20687,2526,0,0,7066,'2025-12-22','21:30:00',4496,327,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 21:41:35','','0000-00-00 00:00:00',0),(20688,2526,0,0,7066,'2025-12-22','21:30:00',4496,327,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','409','RC03','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 09:11:35','','0000-00-00 00:00:00',0),(20689,2526,0,0,7066,'2025-12-22','21:30:00',4496,327,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 09:11:35','','0000-00-00 00:00:00',0),(20690,2526,0,0,7066,'2025-12-22','21:30:00',4496,327,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 09:11:35','','0000-00-00 00:00:00',0),(20691,2526,0,0,7066,'2025-12-22','21:30:00',4496,327,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 09:11:35','','0000-00-00 00:00:00',0),(20692,2526,0,0,7066,'2025-12-22','21:30:00',4496,327,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','409','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 09:11:35','','0000-00-00 00:00:00',0),(20693,2526,0,0,7067,'2025-12-22','22:00:00',0,328,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 22:11:13','','0000-00-00 00:00:00',0),(20694,2526,0,0,7067,'2025-12-22','22:00:00',0,328,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 22:11:13','','0000-00-00 00:00:00',0),(20695,2526,0,0,7067,'2025-12-22','22:00:00',0,328,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','411','RC03','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 09:41:13','','0000-00-00 00:00:00',0),(20696,2526,0,0,7067,'2025-12-22','22:00:00',0,328,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 09:41:13','','0000-00-00 00:00:00',0),(20697,2526,0,0,7067,'2025-12-22','22:00:00',0,328,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 09:41:13','','0000-00-00 00:00:00',0),(20698,2526,0,0,7067,'2025-12-22','22:00:00',0,328,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 09:41:13','','0000-00-00 00:00:00',0),(20699,2526,0,0,7067,'2025-12-22','22:00:00',0,328,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','411','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'vishal','2025-12-22 09:41:13','','0000-00-00 00:00:00',0),(20700,2526,0,0,7068,'2025-12-23','08:42:30',4518,0,'OPWD','OPWD0023','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,7,0,0,'',0,0,'','','','','',2526,'H','O',7801,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 08:42:30','reception','2025-12-23 08:42:30',0),(20701,2526,0,0,7069,'2025-12-23','08:46:22',4305,0,'SURG','SURG0005','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,5,0,0,'',0,0,'','','','','',2526,'H','O',7802,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 08:46:22','reception','2025-12-23 08:46:22',0),(20702,2526,0,0,7069,'2025-12-23','08:46:22',4305,0,'OPWD','OPWD0016','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,5,0,0,'',0,0,'','','','','',2526,'H','O',7802,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 08:46:22','reception','2025-12-23 08:46:22',0),(20703,2526,0,0,7069,'2025-12-23','08:46:22',4305,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,5,0,0,'',0,0,'','','','','',2526,'H','O',7802,3,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 08:46:22','reception','2025-12-23 08:46:22',0),(20704,2526,0,0,7069,'2025-12-23','08:46:22',4305,0,'OPWD','OPWD0013','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,5,0,0,'',0,0,'','','','','',2526,'H','O',7802,4,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 08:46:22','reception','2025-12-23 08:46:22',0),(20705,2526,0,0,6898,'2025-12-21','09:33:00',0,315,'WPRC','WPRC0079','H','N',1.00,750,750,'P',0,0,0.00,0.00,750.00,750,3,0,0,'',0,0,'','','','','',2526,'H','I',314,13,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 09:35:49','','0000-00-00 00:00:00',0),(20706,2526,0,0,6898,'2025-12-21','09:34:00',0,315,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',314,14,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 09:35:49','','0000-00-00 00:00:00',0),(20707,2526,0,0,6898,'2025-12-22','09:34:00',0,315,'WPRC','WPRC0078','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',314,15,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 09:35:49','','0000-00-00 00:00:00',0),(20708,2526,0,0,6898,'2025-12-22','09:35:00',0,315,'USG','USG0097','H','N',1.00,1500,1500,'P',0,0,0.00,0.00,1500.00,1500,9999,0,0,'',0,0,'','','','','',2526,'H','I',314,16,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 09:35:49','','0000-00-00 00:00:00',0),(20709,2526,0,0,6898,'2025-12-22','09:36:00',0,315,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',314,17,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 09:36:44','','0000-00-00 00:00:00',0),(20710,2526,0,0,6898,'2025-12-22','09:40:00',0,315,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','','','','',2526,'H','I',314,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 09:40:56','','0000-00-00 00:00:00',0),(20711,2526,0,0,6884,'2025-12-22','09:42:00',2680,313,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,174,0,0,'',0,0,'','','','','',0,'','',0,20,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 09:43:03','','0000-00-00 00:00:00',0),(20712,2526,0,0,6899,'2025-12-21','09:44:00',4172,316,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',316,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 09:45:39','','0000-00-00 00:00:00',0),(20713,2526,0,0,6899,'2025-12-22','09:45:00',4172,316,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','I',316,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 09:45:39','','0000-00-00 00:00:00',0),(20714,2526,0,0,6899,'2025-12-23','09:45:00',4172,316,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',316,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 09:45:39','vishal','2025-12-23 16:58:12',0),(20715,2526,0,0,6899,'2025-12-22','09:45:00',4172,316,'WPRC','WPRC0105','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','I',316,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 09:46:34','','0000-00-00 00:00:00',0),(20716,2526,0,0,7070,'2025-12-23','00:00:00',4519,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7803,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 09:46:41','drashti','2025-12-23 09:49:45',0),(20717,2526,0,0,6780,'2025-12-20','09:48:00',0,310,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','I',315,27,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 09:48:58','','0000-00-00 00:00:00',0),(20718,2526,0,0,6780,'2025-12-22','09:48:00',0,310,'ROOM','ROOM0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,9999,0,0,'',0,0,'','','','','',2526,'H','I',315,24,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 09:48:58','riya','2025-12-23 12:38:48',0),(20719,2526,0,0,6780,'2025-12-21','09:49:00',0,310,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',315,29,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 09:49:54','','0000-00-00 00:00:00',0),(20720,2526,0,0,6780,'2025-12-22','09:49:00',0,310,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',315,30,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 09:49:54','','0000-00-00 00:00:00',0),(20721,2526,0,0,7071,'2025-12-23','09:55:34',4277,0,'PKG','CASE','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,3,0,0,'',0,0,'','','','','',2526,'H','O',7804,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-23 09:55:34','janvi','2025-12-23 09:55:34',0),(20722,2526,0,0,6913,'2025-12-23','02:00:00',0,318,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','212','RC07','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 21:31:32','','0000-00-00 00:00:00',0),(20723,2526,0,0,6913,'2025-12-23','02:00:00',0,318,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 21:31:32','','0000-00-00 00:00:00',0),(20724,2526,0,0,6913,'2025-12-23','02:00:00',0,318,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 21:31:32','','0000-00-00 00:00:00',0),(20725,2526,0,0,6913,'2025-12-23','02:00:00',0,318,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 21:31:32','','0000-00-00 00:00:00',0),(20726,2526,0,0,6913,'2025-12-23','02:00:00',0,318,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','212','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 21:31:32','','0000-00-00 00:00:00',0),(20727,2526,0,0,7072,'2025-12-23','00:00:00',4520,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7805,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 10:08:02','drashti','2025-12-23 10:08:21',0),(20728,2526,0,0,7073,'2025-12-23','00:00:00',4521,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7806,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 10:08:14','reception','2025-12-23 10:09:02',0),(20729,2526,0,0,7074,'2025-12-23','00:00:00',653,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7807,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 10:12:01','reception','2025-12-23 10:12:39',0),(20730,2526,0,0,7075,'2025-12-23','00:00:00',4522,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7809,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-23 10:16:54','manshi','2025-12-23 10:18:15',0),(20731,2526,0,0,7076,'2025-12-23','00:00:00',4523,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7810,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-23 10:17:45','manshi','2025-12-23 10:18:34',0),(20732,2526,0,0,7077,'2025-12-23','00:00:00',1458,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7808,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 10:17:50','reception','2025-12-23 10:18:03',0),(20733,2526,0,0,7078,'2025-12-23','00:00:00',157,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7811,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 10:21:37','reception','2025-12-23 10:22:09',0),(20734,2526,0,0,7079,'2025-12-23','00:00:00',4524,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7812,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 10:21:55','drashti','2025-12-23 10:23:03',0),(20735,2526,0,0,7080,'2025-12-23','00:00:00',4031,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7813,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 10:24:16','reception','2025-12-23 10:26:00',0),(20736,2526,0,0,7081,'2025-12-23','00:00:00',4525,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7814,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 10:27:17','reception','2025-12-23 10:27:55',0),(20737,2526,0,0,7075,'2025-12-23','10:41:18',4522,0,'XRY','XRY0254','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',7815,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-23 10:41:18','manshi','2025-12-23 10:41:18',0),(20738,2526,0,0,7076,'2025-12-23','10:49:54',4523,0,'XRY','XRY0254','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',7816,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-23 10:49:54','manshi','2025-12-23 10:49:54',0),(20739,2526,0,0,7082,'2025-12-23','00:00:00',4526,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7817,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 10:50:41','reception','2025-12-23 10:51:10',0),(20740,2526,0,0,7083,'2025-12-23','00:00:00',927,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7818,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 10:58:40','reception','2025-12-23 10:58:55',0),(20741,2526,0,0,7084,'2025-12-22','02:00:00',0,329,'REG','REG0001','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-23 10:59:04','','0000-00-00 00:00:00',0),(20742,2526,0,0,7084,'2025-12-22','02:00:00',0,329,'REG','REG0002','H','N',1.00,250,250,'A',0,0,0.00,0.00,250.00,250,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'ER','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-23 10:59:04','','0000-00-00 00:00:00',0),(20743,2526,0,0,7084,'2025-12-22','02:00:00',0,329,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','211','RC07','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 22:29:04','','0000-00-00 00:00:00',0);
INSERT INTO `service_request` VALUES (20744,2526,0,0,7084,'2025-12-23','02:00:00',0,329,'ROOM','ROOM0009','H','N',1.00,5500,5500,'A',0,0,0.00,0.00,5500.00,5500,0,0,0,'',0,0,'','211','RC07','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 22:29:04','','0000-00-00 00:00:00',0),(20745,2526,0,0,7084,'2025-12-22','02:00:00',0,329,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 22:29:04','','0000-00-00 00:00:00',0),(20746,2526,0,0,7084,'2025-12-23','02:00:00',0,329,'AECO','AECO0008','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 22:29:04','','0000-00-00 00:00:00',0),(20747,2526,0,0,7084,'2025-12-22','02:00:00',0,329,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 22:29:04','','0000-00-00 00:00:00',0),(20748,2526,0,0,7084,'2025-12-23','02:00:00',0,329,'CARE','CARE0001','H','N',1.00,600,600,'A',0,0,0.00,0.00,600.00,600,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 22:29:04','','0000-00-00 00:00:00',0),(20749,2526,0,0,7084,'2025-12-22','02:00:00',0,329,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 22:29:04','','0000-00-00 00:00:00',0),(20750,2526,0,0,7084,'2025-12-23','02:00:00',0,329,'DRC','DRC0018','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 22:29:04','','0000-00-00 00:00:00',0),(20751,2526,0,0,7084,'2025-12-22','02:00:00',0,329,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 22:29:04','','0000-00-00 00:00:00',0),(20752,2526,0,0,7084,'2025-12-23','02:00:00',0,329,'DRC','DRC0019','H','N',1.00,1600,1600,'A',0,0,0.00,0.00,1600.00,1600,0,0,0,'',0,0,'','211','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 22:29:04','','0000-00-00 00:00:00',0),(20753,2526,0,0,7085,'2025-12-23','00:00:00',4527,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7819,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-23 10:59:58','janvi','2025-12-23 11:00:27',0),(20754,2526,0,0,7073,'2025-12-23','11:00:32',4521,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7820,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 11:00:32','reception','2025-12-23 11:00:32',0),(20755,2526,0,0,7073,'2025-12-23','11:00:32',4521,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7820,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 11:00:32','reception','2025-12-23 11:00:32',0),(20756,2526,0,0,7073,'2025-12-23','11:00:32',4521,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7820,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 11:00:32','reception','2025-12-23 11:00:32',0),(20757,2526,0,0,7086,'2025-12-23','00:00:00',4528,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7821,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 11:04:20','reception','2025-12-23 11:05:00',0),(20758,2526,0,0,7087,'2025-12-23','00:00:00',4529,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7822,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-23 11:06:21','janvi','2025-12-23 11:06:53',0),(20759,2526,0,0,7088,'2025-12-23','00:00:00',4530,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7823,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 11:07:41','drashti','2025-12-23 11:08:16',0),(20760,2526,0,0,7089,'2025-12-23','00:00:00',4531,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7825,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-23 11:08:43','janvi','2025-12-23 11:09:17',0),(20761,2526,0,0,7090,'2025-12-23','00:00:00',4532,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7826,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 11:08:44','reception','2025-12-23 11:10:16',0),(20762,2526,0,0,7075,'2025-12-23','11:09:16',4522,0,'XRY','XRY0256','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',7824,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-23 11:09:16','manshi','2025-12-23 11:09:16',0),(20763,2526,0,0,7091,'2025-12-23','00:00:00',4533,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7827,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 11:11:22','reception','2025-12-23 11:11:57',0),(20764,2526,0,0,7092,'2025-12-23','00:00:00',441,0,'PKG','CASE','H','N',1.00,1200,1200,'A',0,0,0.00,0.00,1200.00,1200,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-23 11:12:13','manshi','2025-12-22 22:42:13',0),(20765,2526,0,0,7094,'2025-12-23','00:00:00',4534,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7828,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 11:16:19','drashti','2025-12-23 11:16:45',0),(20766,2526,0,0,6898,'2025-12-23','11:17:00',0,315,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',314,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 11:17:49','','0000-00-00 00:00:00',0),(20767,2526,0,0,7095,'2025-12-23','00:00:00',4535,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7829,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-23 11:18:15','janvi','2025-12-23 11:18:42',0),(20768,2526,0,0,7096,'2025-12-23','00:00:00',4536,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7830,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 11:19:29','drashti','2025-12-23 11:19:45',0),(20769,2526,0,0,7097,'2025-12-23','00:00:00',4537,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7831,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 11:20:05','reception','2025-12-23 11:20:26',0),(20770,2526,0,0,7098,'2025-12-23','00:00:00',4538,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7832,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 11:22:00','reception','2025-12-23 11:23:05',0),(20771,2526,0,0,7099,'2025-12-23','00:00:00',4539,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7833,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 11:24:03','drashti','2025-12-23 11:25:06',0),(20772,2526,0,0,7100,'2025-12-23','00:00:00',4540,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7835,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 11:28:41','reception','2025-12-23 11:29:05',0),(20773,2526,0,0,7095,'2025-12-23','11:28:50',4535,0,'OPWD','OPWD0019','H','N',1.00,50,50,'P',0,0,0.00,0.00,50.00,50,9999,0,0,'',0,0,'','','','','',2526,'H','O',7834,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 11:28:50','drashti','2025-12-23 11:28:50',0),(20774,2526,0,0,7102,'2025-12-23','00:00:00',4541,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7836,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 11:35:00','drashti','2025-12-23 11:35:25',0),(20775,2526,0,0,7103,'2025-12-23','00:00:00',3101,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7837,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 11:36:29','reception','2025-12-23 11:36:43',0),(20776,2526,0,0,7104,'2025-12-23','00:00:00',3462,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',7838,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 11:38:01','reception','2025-12-23 11:38:31',0),(20777,2526,0,0,7105,'2025-12-23','00:00:00',4542,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7839,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 11:38:26','drashti','2025-12-23 11:39:13',0),(20778,2526,0,0,7106,'2025-12-23','00:00:00',4543,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7841,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-23 11:39:14','janvi','2025-12-23 11:41:37',0),(20779,2526,0,0,7107,'2025-12-23','00:00:00',1432,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',7840,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-23 11:40:55','manshi','2025-12-23 11:41:05',0),(20780,2526,0,0,7081,'2025-12-23','11:42:14',4525,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7842,1,67,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 11:42:14','reception','2025-12-23 11:42:14',0),(20781,2526,0,0,7081,'2025-12-23','11:42:14',4525,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7842,2,296,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 11:42:14','reception','2025-12-23 11:42:14',0),(20782,2526,0,0,7081,'2025-12-23','11:42:14',4525,0,'NEU1','NEU10024','H','N',1.00,2500,2500,'P',0,0,0.00,0.00,2500.00,2500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7842,3,337,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 11:42:14','reception','2025-12-23 11:42:14',0),(20783,2526,0,0,7108,'2025-12-23','00:00:00',4544,0,'PKG','CASE','H','N',1.00,750,750,'A',0,0,0.00,0.00,750.00,750,4,0,0,'',0,0,'','','','','',2526,'H','O',7843,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 11:46:00','drashti','2025-12-23 11:46:48',0),(20784,2526,0,0,7109,'2025-12-23','00:00:00',4545,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7844,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-23 11:47:15','janvi','2025-12-23 11:47:45',0),(20785,2526,0,0,7110,'2025-12-23','00:00:00',4546,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7845,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 11:47:40','reception','2025-12-23 11:48:12',0),(20786,2526,0,0,7111,'2025-12-23','00:00:00',4547,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,3,0,0,'',0,0,'','','','','',2526,'H','O',7846,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-23 11:48:50','janvi','2025-12-23 11:49:24',0),(20787,2526,0,0,7113,'2025-12-23','00:00:00',592,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7847,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 11:51:55','drashti','2025-12-23 11:52:11',0),(20788,2526,0,0,7114,'2025-12-23','00:00:00',4548,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7848,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 11:51:58','reception','2025-12-23 11:52:23',0),(20789,2526,0,0,7115,'2025-12-23','00:00:00',4549,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7849,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 11:53:26','reception','2025-12-23 11:55:36',0),(20790,2526,0,0,7116,'2025-12-23','00:00:00',3265,0,'PKG','CASE','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,6,0,0,'',0,0,'','','','','',2526,'H','O',7850,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-23 11:57:39','manshi','2025-12-23 11:57:59',0),(20791,2526,0,0,7093,'2025-12-23','12:00:00',2529,0,'CRIP','CRIP0001','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','O',7851,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-23 12:00:00','manshi','2025-12-23 12:00:00',0),(20792,2526,0,0,7091,'2025-12-23','12:00:49',4533,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7852,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 12:00:49','reception','2025-12-23 12:00:49',0),(20793,2526,0,0,7091,'2025-12-23','12:00:49',4533,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7852,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 12:00:49','reception','2025-12-23 12:00:49',0),(20794,2526,0,0,7091,'2025-12-23','12:00:49',4533,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7852,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 12:00:49','reception','2025-12-23 12:00:49',0),(20795,2526,0,0,7090,'2025-12-23','12:01:36',4532,0,'NEU1','NEU10017','H','N',1.00,3000,3000,'P',0,0,0.00,0.00,3000.00,3000,9999,0,0,'',0,0,'','','','','',2526,'H','O',7853,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 12:01:36','reception','2025-12-23 12:01:36',0),(20796,2526,0,0,7117,'2025-12-23','00:00:00',4550,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7854,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 12:09:11','drashti','2025-12-23 12:10:07',0),(20797,2526,0,0,7118,'2025-12-23','12:11:37',4259,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7855,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 12:11:37','reception','2025-12-23 12:11:37',0),(20798,2526,0,0,7119,'2025-12-23','00:00:00',4551,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7856,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-23 12:11:54','janvi','2025-12-23 12:12:43',0),(20799,2526,0,0,7120,'2025-12-23','00:00:00',4552,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7857,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-23 12:14:43','janvi','2025-12-23 12:14:57',0),(20800,2526,0,0,7100,'2025-12-23','12:20:07',4540,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7858,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 12:20:07','reception','2025-12-23 12:20:07',0),(20801,2526,0,0,7100,'2025-12-23','12:20:07',4540,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7858,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 12:20:07','reception','2025-12-23 12:20:07',0),(20802,2526,0,0,6974,'2025-12-23','12:02:00',0,323,'ROOM','ROOM0009','H','N',1.00,3200,3200,'A',0,0,0.00,0.00,3200.00,3200,0,0,0,'',0,0,'','407','RC04','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 23:52:01','','0000-00-00 00:00:00',0),(20803,2526,0,0,6974,'2025-12-23','12:02:00',0,323,'AECO','AECO0008','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 23:52:01','','0000-00-00 00:00:00',0),(20804,2526,0,0,6974,'2025-12-23','12:02:00',0,323,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 23:52:01','','0000-00-00 00:00:00',0),(20805,2526,0,0,6974,'2025-12-23','12:02:00',0,323,'DRC','DRC0018','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 23:52:01','','0000-00-00 00:00:00',0),(20806,2526,0,0,6974,'2025-12-23','12:02:00',0,323,'DRC','DRC0019','H','N',1.00,1100,1100,'A',0,0,0.00,0.00,1100.00,1100,0,0,0,'',0,0,'','407','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'riya','2025-12-22 23:52:01','','0000-00-00 00:00:00',0),(20807,2526,0,0,7072,'2025-12-23','12:22:12',4520,0,'OPWD','OPWD0034','H','N',1.00,1000,1000,'P',0,0,0.00,0.00,1000.00,1000,3,0,0,'',0,0,'','','','','',2526,'H','O',7859,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-23 12:22:12','janvi','2025-12-23 12:22:12',0),(20808,2526,0,0,7072,'2025-12-23','12:22:12',4520,0,'OPWD','OPWD0024','H','N',1.00,1200,1200,'P',0,0,0.00,0.00,1200.00,1200,3,0,0,'',0,0,'','','','','',2526,'H','O',7859,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-23 12:22:12','janvi','2025-12-23 12:22:12',0),(20809,2526,0,0,7118,'2025-12-23','12:25:30',4259,0,'XRY','XRY0056','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,9999,0,0,'',0,0,'','','','','',2526,'H','O',7860,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 12:25:30','drashti','2025-12-23 12:25:30',0),(20810,2526,0,0,7121,'2025-12-23','00:00:00',4553,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7861,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 12:27:27','reception','2025-12-23 12:31:39',0),(20811,2526,0,0,7123,'2025-12-23','00:00:00',4554,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7867,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-23 12:35:05','manshi','2025-12-23 13:03:37',0),(20812,2526,0,0,7122,'2025-12-23','12:35:09',3305,0,'OTCG','OTCG0003','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7862,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 12:35:09','drashti','2025-12-23 12:35:09',0),(20813,2526,0,0,7124,'2025-12-23','00:00:00',4555,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7863,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 12:36:01','reception','2025-12-23 12:37:03',0),(20814,2526,0,0,7094,'2025-12-23','12:39:33',4534,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7864,1,10,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 12:39:33','reception','2025-12-23 12:39:33',0),(20815,2526,0,0,7094,'2025-12-23','12:39:33',4534,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7864,2,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 12:39:33','reception','2025-12-23 12:39:33',0),(20816,2526,0,0,7094,'2025-12-23','12:39:33',4534,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7864,3,45,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 12:39:33','reception','2025-12-23 12:39:33',0),(20817,2526,0,0,6780,'2025-12-23','12:39:00',0,310,'WPRC','WPRC0083','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','I',315,30,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 12:40:17','','0000-00-00 00:00:00',0),(20818,2526,0,0,6780,'2025-12-23','12:40:00',0,310,'DRC','DRC0018','H','N',1.00,800,800,'P',0,0,0.00,0.00,800.00,800,3,0,0,'',0,0,'','','','','',2526,'H','I',315,31,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 12:41:18','','0000-00-00 00:00:00',0),(20819,2526,0,0,7125,'2025-12-23','12:43:34',4185,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7865,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 12:43:34','drashti','2025-12-23 12:43:34',0),(20820,2526,0,0,6780,'2025-12-20','12:41:00',0,310,'PKG','PKG0009','H','N',1.00,15000,15000,'P',0,0,0.00,0.00,15000.00,15000,3,0,0,'',0,0,'','','','','',2526,'H','I',315,32,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 12:44:31','','0000-00-00 00:00:00',0),(20821,2526,0,0,6780,'2025-12-23','12:43:00',0,310,'SURG','SURG0015','H','N',1.00,3750,3750,'P',0,0,0.00,0.00,3750.00,3750,3,0,0,'',0,0,'','','','','',2526,'H','I',315,33,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 12:44:31','','0000-00-00 00:00:00',0),(20822,2526,0,0,7126,'2025-12-23','00:00:00',1317,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7866,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 12:55:58','reception','2025-12-23 12:56:07',0),(20823,2526,0,0,7127,'2025-12-23','00:00:00',4021,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 12:58:36','drashti','2025-12-23 00:28:36',0),(20824,2526,0,0,7126,'2025-12-23','13:05:12',1317,0,'WPRC','WPRC0021','H','N',1.00,300,300,'P',0,0,0.00,0.00,300.00,300,4,0,0,'',0,0,'','','','','',2526,'H','O',7868,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-23 13:05:12','janvi','2025-12-23 13:05:12',0),(20825,2526,0,0,7098,'2025-12-23','13:05:46',4538,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7869,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 13:05:46','reception','2025-12-23 13:05:46',0),(20826,2526,0,0,7098,'2025-12-23','13:05:46',4538,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7869,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 13:05:46','reception','2025-12-23 13:05:46',0),(20827,2526,0,0,7098,'2025-12-23','13:05:46',4538,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7869,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 13:05:46','reception','2025-12-23 13:05:46',0),(20828,2526,0,0,7115,'2025-12-23','13:08:56',4549,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7870,1,41,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 13:08:56','reception','2025-12-23 13:08:56',0),(20829,2526,0,0,7115,'2025-12-23','13:08:56',4549,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7870,2,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 13:08:56','reception','2025-12-23 13:08:56',0),(20830,2526,0,0,7115,'2025-12-23','13:08:56',4549,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7870,3,180,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 13:08:56','reception','2025-12-23 13:08:56',0),(20831,2526,0,0,7128,'2025-12-23','00:00:00',51,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7871,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 13:12:13','reception','2025-12-23 13:12:32',0),(20832,2526,0,0,7129,'2025-12-23','00:00:00',4556,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7872,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 13:17:06','reception','2025-12-23 13:17:43',0),(20833,2526,0,0,7119,'2025-12-23','13:23:34',4551,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7873,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 13:23:34','reception','2025-12-23 13:23:34',0),(20834,2526,0,0,7119,'2025-12-23','13:23:34',4551,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7873,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 13:23:34','reception','2025-12-23 13:23:34',0),(20835,2526,0,0,7124,'2025-12-23','13:39:50',4555,0,'NEU1','NEU10015','H','N',1.00,600,600,'P',0,0,0.00,0.00,600.00,600,9999,0,0,'',0,0,'','','','','',2526,'H','O',7874,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 13:39:50','reception','2025-12-23 13:39:50',0),(20836,2526,0,0,7130,'2025-12-23','00:00:00',4557,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7875,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 13:46:58','reception','2025-12-23 13:47:40',0),(20837,2526,0,0,7131,'2025-12-23','00:00:00',4558,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7876,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 13:51:54','reception','2025-12-23 13:52:24',0),(20838,2526,0,0,7132,'2025-12-23','00:00:00',2448,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7877,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 16:14:04','reception','2025-12-23 16:16:16',0),(20839,2526,0,0,7132,'2025-12-23','16:16:16',2448,0,'NEU1','NEU10015','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,9999,0,0,'',0,0,'','','','','',2526,'H','O',7877,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 16:16:16','reception','2025-12-23 16:16:16',0),(20840,2526,0,0,7133,'2025-12-23','00:00:00',750,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7878,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 16:28:45','reception','2025-12-23 16:28:59',0),(20841,2526,0,0,6769,'2025-12-23','12:00:00',0,309,'ROOM','ROOM0009','H','N',1.00,2900,2900,'A',0,0,0.00,0.00,2900.00,2900,0,0,0,'',0,0,'','412','RC03','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-23 04:07:54','riya','2025-12-23 16:40:16',0),(20842,2526,0,0,6769,'2025-12-23','12:00:00',0,309,'AECO','AECO0008','H','N',1.00,300,300,'A',0,0,0.00,0.00,300.00,300,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-23 04:07:54','riya','2025-12-23 16:40:16',0),(20843,2526,0,0,6769,'2025-12-23','12:00:00',0,309,'CARE','CARE0001','H','N',1.00,200,200,'A',0,0,0.00,0.00,200.00,200,0,0,0,'',0,0,'','412','','','',0,'','',0,0,0,0,1,'','','','','','Y','N','N','Y','N','','','0000-00-00 00:00:00',0,'riya','2025-12-23 04:07:54','riya','2025-12-23 16:40:16',0),(20844,2526,0,0,6769,'2025-12-23','12:00:00',0,309,'DRC','DRC0018','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',2526,'H','D',332,0,0,0,1,'','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 04:07:54','riya','2025-12-23 16:40:16',0),(20845,2526,0,0,6769,'2025-12-23','12:00:00',0,309,'DRC','DRC0019','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,4,0,0,'',0,0,'','412','','','',0,'','',0,35,0,0,1,'','','','','','','N','N','Y','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 04:07:54','riya','2025-12-23 16:45:16',0),(20846,2526,0,0,7134,'2025-12-23','00:00:00',4559,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7879,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 16:38:01','reception','2025-12-23 16:38:31',0),(20847,2526,0,0,6769,'2025-12-22','16:39:00',0,309,'ROOM','ROOM0008','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 16:40:16','','0000-00-00 00:00:00',0),(20848,2526,0,0,6769,'2025-12-23','16:40:00',0,309,'ROOM','ROOM0008','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 16:40:16','','0000-00-00 00:00:00',0),(20849,2526,0,0,6769,'2025-12-22','16:41:00',0,309,'WPRC','WPRC0089','H','N',3.00,100,300,'P',0,0,0.00,0.00,300.00,300,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 16:41:47','','0000-00-00 00:00:00',0),(20850,2526,0,0,6769,'2025-12-23','16:41:00',0,309,'WPRC','WPRC0089','H','N',2.00,100,200,'P',0,0,0.00,0.00,200.00,200,9999,0,0,'',0,0,'','','','','',2526,'H','D',332,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'riya','2025-12-23 16:41:47','','0000-00-00 00:00:00',0),(20851,2526,0,0,7135,'2025-12-23','00:00:00',4560,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7880,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 16:42:17','reception','2025-12-23 16:42:38',0),(20852,2526,0,0,7136,'2025-12-23','00:00:00',2004,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7881,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 16:43:22','reception','2025-12-23 16:44:18',0),(20853,2526,0,0,7137,'2025-12-23','00:00:00',1501,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7882,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 16:46:19','reception','2025-12-23 16:46:35',0),(20854,2526,0,0,7138,'2025-12-23','00:00:00',637,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7883,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 16:54:30','reception','2025-12-23 16:55:04',0),(20855,2526,0,0,7139,'2025-12-23','00:00:00',2970,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7884,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 16:59:23','reception','2025-12-23 17:00:59',0),(20856,2526,0,0,6899,'2025-12-23','16:59:00',4172,316,'DRC','DRC0018','H','N',1.00,1100,1100,'P',0,0,0.00,0.00,1100.00,1100,4,0,0,'',0,0,'','','','','',2526,'H','I',316,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-23 17:01:33','','0000-00-00 00:00:00',0),(20857,2526,0,0,6899,'2025-12-23','16:59:00',4172,316,'DRC','DRC0020','H','N',1.00,2000,2000,'P',0,0,0.00,0.00,2000.00,2000,188,0,0,'',0,0,'','','','','',2526,'H','I',316,0,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-23 17:01:33','','0000-00-00 00:00:00',0),(20858,2526,0,0,6899,'2025-12-22','17:00:00',4172,316,'SURG','SURG0016','H','N',1.00,50000,50000,'P',0,0,0.00,0.00,50000.00,50000,188,0,0,'',0,0,'','','','','',2526,'H','I',316,18,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-23 17:01:33','vishal','2025-12-23 17:04:54',0),(20859,2526,0,0,6899,'2025-12-22','17:01:00',4172,316,'SURG','SURG0015','H','N',1.00,12500,12500,'P',0,0,0.00,0.00,12500.00,12500,4,0,0,'',0,0,'','','','','',2526,'H','I',316,19,0,0,1,'IPB','','','','','','N','N','N','','','','0000-00-00 00:00:00',0,'vishal','2025-12-23 17:01:33','vishal','2025-12-23 17:04:54',0),(20860,2526,0,0,7140,'2025-12-23','00:00:00',4561,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7885,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 17:15:56','reception','2025-12-23 17:16:12',0),(20861,2526,0,0,7141,'2025-12-23','00:00:00',4562,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,7,0,0,'',0,0,'','','','','',2526,'H','O',7886,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-23 17:20:34','manshi','2025-12-23 17:21:41',0),(20862,2526,0,0,7141,'2025-12-23','17:21:41',4562,0,'OPWD','OPWD0023','H','N',1.00,500,500,'P',0,0,0.00,0.00,500.00,500,7,0,0,'',0,0,'','','','','',2526,'H','O',7886,2,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-23 17:21:41','manshi','2025-12-23 17:21:41',0),(20863,2526,0,0,7142,'2025-12-23','00:00:00',1455,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7887,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 17:22:34','drashti','2025-12-23 17:22:59',0),(20864,2526,0,0,7135,'2025-12-23','17:26:42',4560,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7888,1,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 17:26:42','reception','2025-12-23 17:26:42',0),(20865,2526,0,0,7135,'2025-12-23','17:26:42',4560,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7888,2,200,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 17:26:42','reception','2025-12-23 17:26:42',0),(20866,2526,0,0,7143,'2025-12-23','00:00:00',2600,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7889,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 17:27:58','reception','2025-12-23 17:31:19',0),(20867,2526,0,0,7144,'2025-12-23','17:31:50',4078,0,'OPWD','OPWD0008','H','N',1.00,100,100,'P',0,0,0.00,0.00,100.00,100,3,0,0,'',0,0,'','','','','',2526,'H','O',7890,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-23 17:31:50','janvi','2025-12-23 17:31:50',0),(20868,2526,0,0,7145,'2025-12-23','17:33:21',4327,0,'PKG','CASE','H','N',1.00,400,400,'P',0,0,0.00,0.00,400.00,400,2,0,0,'',0,0,'','','','','',2526,'H','O',7891,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 17:33:21','reception','2025-12-23 17:33:21',0),(20869,2526,0,0,7146,'2025-12-23','00:00:00',4563,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,2,0,0,'',0,0,'','','','','',2526,'H','O',7892,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 17:35:12','reception','2025-12-23 17:35:41',0),(20870,2526,0,0,7147,'2025-12-23','00:00:00',4564,0,'PKG','CASE','H','N',1.00,900,900,'A',0,0,0.00,0.00,900.00,900,2,0,0,'',0,0,'','','','','',2526,'H','O',7893,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 17:36:26','reception','2025-12-23 17:36:48',0),(20871,2526,0,0,7148,'2025-12-23','00:00:00',3711,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,0,0,0,'',0,0,'','','','','',0,'','',0,0,0,0,1,'OR','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 17:39:44','drashti','2025-12-23 05:09:44',0),(20872,2526,0,0,7149,'2025-12-23','00:00:00',4565,0,'PKG','CASE','H','N',1.00,500,500,'A',0,0,0.00,0.00,500.00,500,6,0,0,'',0,0,'','','','','',2526,'H','O',7894,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'manshi','2025-12-23 17:42:07','manshi','2025-12-23 17:42:52',0),(20873,2526,0,0,7134,'2025-12-23','17:43:30',4559,0,'NEU1','NEU10019','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7895,1,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 17:43:30','reception','2025-12-23 17:43:30',0),(20874,2526,0,0,7134,'2025-12-23','17:43:30',4559,0,'NEU1','NEU10017','H','N',1.00,2200,2200,'P',0,0,0.00,0.00,2200.00,2200,9999,0,0,'',0,0,'','','','','',2526,'H','O',7895,2,100,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 17:43:30','reception','2025-12-23 17:43:30',0),(20875,2526,0,0,7150,'2025-12-23','00:00:00',868,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,5,0,0,'',0,0,'','','','','',2526,'H','O',7896,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-23 17:44:18','janvi','2025-12-23 17:44:32',0),(20876,2526,0,0,7151,'2025-12-23','00:00:00',4566,0,'PKG','CASE','H','N',1.00,800,800,'A',0,0,0.00,0.00,800.00,800,2,0,0,'',0,0,'','','','','',2526,'H','O',7897,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 17:45:34','reception','2025-12-23 17:46:01',0),(20877,2526,0,0,7152,'2025-12-23','00:00:00',3958,0,'PKG','CASE','H','N',1.00,400,400,'A',0,0,0.00,0.00,400.00,400,4,0,0,'',0,0,'','','','','',2526,'H','O',7898,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'drashti','2025-12-23 17:46:06','drashti','2025-12-23 17:46:39',0),(20878,2526,0,0,7154,'2025-12-23','00:00:00',4567,0,'PKG','CASE','H','N',1.00,700,700,'A',0,0,0.00,0.00,700.00,700,2,0,0,'',0,0,'','','','','',2526,'H','O',7900,1,0,0,1,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'reception','2025-12-23 17:46:53','reception','2025-12-23 17:47:11',0),(20879,2526,0,0,7153,'2025-12-23','17:47:00',2738,0,'OPWD','OPWD0008','H','N',1.00,200,200,'P',0,0,0.00,0.00,200.00,200,3,0,0,'',0,0,'','','','','',2526,'H','O',7899,1,0,0,0,'O','','','','','Y','N','N','N','N','','','0000-00-00 00:00:00',0,'janvi','2025-12-23 17:47:00','janvi','2025-12-23 17:47:00',0);
/*!40000 ALTER TABLE `service_request` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `service_request_action`
--

DROP TABLE IF EXISTS `service_request_action`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `service_request_action` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `visitId` int(11) NOT NULL,
  `serviceReqId` int(11) NOT NULL,
  `providerName` varchar(50) NOT NULL,
  `remark` text NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_request_action`
--

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

--
-- Table structure for table `service_request_backup`
--

DROP TABLE IF EXISTS `service_request_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `service_request_backup` (
  `req_id` int(11) NOT NULL,
  `fyear` int(11) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `req_date` date NOT NULL,
  `opd_reg_id` bigint(20) NOT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `service_grp_cd` varchar(4) NOT NULL,
  `service_cd` varchar(4) NOT NULL,
  `quantity` int(11) NOT NULL,
  `service_amt` float NOT NULL,
  `provider_code` int(11) NOT NULL,
  `test_id` int(11) NOT NULL,
  `doctor_charge_id` int(11) NOT NULL COMMENT 'doctor_charge_id from doctor_visit table',
  `result_id` int(11) NOT NULL COMMENT 'result_id from result table',
  `item_cd` varchar(6) NOT NULL,
  `req_note` varchar(40) NOT NULL,
  `agency` varchar(4) NOT NULL COMMENT 'lab agency name',
  `paid` varchar(1) NOT NULL,
  `r_fyear` int(11) NOT NULL,
  `receipt_cat` varchar(1) NOT NULL,
  `ipd_opd` varchar(1) NOT NULL,
  `receipt_no` int(11) NOT NULL,
  `receipt_sr` int(11) NOT NULL,
  `receipt_discount` int(11) NOT NULL,
  `dept_fyear` int(11) NOT NULL,
  `dept_seq_no` int(11) NOT NULL,
  `request_division` varchar(3) NOT NULL COMMENT 'indicates department or division for which request is genrated(example W-Ward / O-OT)',
  `free` varchar(1) NOT NULL,
  `size` varchar(8) NOT NULL,
  `remark` varchar(30) NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  `IsAdjusted` tinyint(1) DEFAULT '0' COMMENT 'Indicates whether revenue adjusted or not?',
  PRIMARY KEY (`req_id`,`fyear`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_request_backup`
--

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

--
-- Table structure for table `shift_master`
--

DROP TABLE IF EXISTS `shift_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `shift_master` (
  `shift_id` varchar(2) COLLATE utf8_unicode_ci NOT NULL,
  `start_time` time NOT NULL,
  `end_time` time NOT NULL,
  `shift_description` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `break_shift` enum('Y','N') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'N',
  `start_time1` time NOT NULL,
  `end_time1` time NOT NULL,
  `lapse_allowed` float NOT NULL,
  `default_shift` varchar(4) COLLATE utf8_unicode_ci NOT NULL,
  `shift_duration` time NOT NULL,
  `default_weekly_off` varchar(2) COLLATE utf8_unicode_ci NOT NULL,
  `active` enum('Y','N') COLLATE utf8_unicode_ci NOT NULL,
  `createdby` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `createddate` datetime NOT NULL,
  `lastmodifiedby` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `lastmodifieddate` datetime NOT NULL,
  PRIMARY KEY (`shift_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `shift_master`
--

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

--
-- Table structure for table `skill_master`
--

DROP TABLE IF EXISTS `skill_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `skill_master` (
  `skill_id` smallint(6) NOT NULL AUTO_INCREMENT,
  `skill_name` varchar(30) NOT NULL,
  `skill_description` varchar(60) DEFAULT NULL,
  `skills_is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`skill_id`),
  UNIQUE KEY `skill_name` (`skill_name`),
  KEY `FK_skill_created_user` (`created_by`),
  KEY `FK_skill_lastmodified_user` (`lastmodified_by`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `skill_master`
--

LOCK TABLES `skill_master` WRITE;
/*!40000 ALTER TABLE `skill_master` DISABLE KEYS */;
INSERT INTO `skill_master` VALUES (1,'Pathology','Pathology','Y','thims','2019-02-23 13:13:47',NULL,NULL),(2,'Pediatrics','Pediatrics','Y','thims','2019-02-23 13:13:47',NULL,NULL),(3,'Orthopedic','Orthopedic','Y','thims','2019-02-23 13:13:47',NULL,NULL),(4,'General Surgery','General Surgery','Y','thims','2019-02-23 13:13:47',NULL,NULL),(5,'Radiology','Radiology','Y','thims','2019-02-23 13:13:47',NULL,NULL),(6,'Internal Medicine','Internal Medicine','Y','thims','2019-02-23 13:13:47',NULL,NULL);
/*!40000 ALTER TABLE `skill_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sms_setup`
--

DROP TABLE IF EXISTS `sms_setup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sms_setup` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `template_id` varchar(50) NOT NULL,
  `sms_type` enum('S','C') NOT NULL COMMENT 'S - Standard, C - Custom',
  `purpose` varchar(50) NOT NULL,
  `message_content` varchar(250) CHARACTER SET utf8 NOT NULL,
  `message_send_now` enum('N','Y') NOT NULL DEFAULT 'N',
  `auto_sms` enum('A','D') NOT NULL DEFAULT 'D',
  `auto_sms_type` varchar(20) NOT NULL DEFAULT 'T0',
  `schedule_time` time NOT NULL,
  `send_to_patient` enum('N','Y') NOT NULL DEFAULT 'N',
  `send_to_doctor` enum('N','Y') NOT NULL DEFAULT 'N',
  `send_to_list` enum('N','Y') NOT NULL DEFAULT 'N',
  `mobile_no_list` varchar(164) NOT NULL,
  `message_remark` varchar(50) NOT NULL,
  PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sms_setup`
--

LOCK TABLES `sms_setup` WRITE;
/*!40000 ALTER TABLE `sms_setup` DISABLE KEYS */;
INSERT INTO `sms_setup` VALUES (1,0,0,'','S','Appt','&&Aname&& Your Appointment Is Due On &&Adate&&  &&Atime&&','N','D','T0','08:00:00','N','N','N','',''),(2,0,0,'','S','OP_REGISTER','Dear &&Aname&& - Thank you for registration at Hospital. Your permenant UHID is &&patientID&& .','N','D','T0','00:00:00','Y','N','N','',''),(3,0,0,'','S','REFERRAL_DOC','Dear &&referralDoctor&& - Thank you for guiding &&Aname&& to our hospital. We sincerely appreciate your support - Hospital.','N','D','T0','00:00:00','N','Y','N','',''),(4,0,0,'','S','IP_REGISTER','Patient: &&Aname&& ( &&patientGenter&& / &&patientAge&& ) is admitted under &&Cname&& , Room- &&roomNumber&& , &&roomCategory&& Reffered by &&referralDoctor&& Hospital.','N','D','T0','00:00:00','Y','N','Y','7600303648, 9825082989',''),(5,0,0,'','S','IP_DISCHARGE',' &&ipdRegID&&  &&Aname&&  &&patientGenter&&  &&roomNumber&&  &&DishcargeDateTime&&  &&Cname&& ','N','D','T0','00:00:00','N','N','Y','',''),(6,0,0,'','S','LAB_TEST_REPORT','Dear &&Aname&& , your lab report will be ready in 1 hour. Please collect it from Hospital.','N','D','T0','00:00:00','Y','N','N','',''),(7,0,0,'','S','BIRTHDAY_MSG','Wishing you many many happy returns of the day &&Aname&&','N','D','T0','08:00:00','N','N','N','',''),(8,0,0,'','S','APPT_REMINDER','Dear , &&Aname&& Gentle reminder for your follow up consultation to &&Cname&&, on &&Adate&& &&Atime&&, at Viral Multispeciality Hospital. Please confirm your appointment in advance on 0281-2362422/2363614. Thank you. Viral Hospital','N','D','T0','10:00:00','N','N','N','',''),(9,0,0,'','S','GREETING_NEW_YEAR','Wishing you happy and prosperous new year ! :)','N','D','T0','00:00:00','N','N','N','',''),(10,0,0,'','S','Referral Patient Update','Dear &&Rname&&, Thanks for your kind support. The patient &&Pname&&, referred by you, has been consulted by &&Cname&&, and diagnosed to have &&Diag&&. Looking forward for your continuous support in future. Hospital','N','D','V0','19:00:00','N','N','N','',''),(11,0,0,'','S','APPT_BOOKING','Dear , &&Aname&& Your appointment is booked on &&Adate&& &&Atime&& .','N','D','T0','00:00:00','N','N','N','',''),(12,0,0,'','S','FOLLOWUP_MSG','Greetings from Hospital. We are hoping for your Good Health and Fastest Recovery. Feel free to Consult our full time doctor( &&Cname&& ) from 10AM to 5PM, Mon to Sat.','N','D','T0','08:00:00','N','N','N','',''),(13,0,0,'','S','RADIOLOGY_REPORT','Dear &&Aname&& , your Radiology report will be ready in 1 hour. Please collect it from Hospital.','N','D','T0','00:00:00','N','N','N','',''),(14,0,0,'','S','GENERIC_MSG','Please type your custom message.........','N','D','T0','00:00:00','N','N','N','',''),(15,0,0,'','S','ADVANCE_RECEIPT','&&Aname&& – We acknowledge the receipt of Rs. &&billReceiptAmount&& as an advance against IP No. Thank you. Hospital.','N','D','T0','00:00:00','N','N','Y','9825082989,7600303648','This message is sent when any payment is received '),(16,0,0,'','S','IP_REGISTER_RD','Thank you for referring &&Aname&&. He/She has been admitted with &&Cname&&, Navjeevan Hospital on &&AdmitDateTime&&. We assure our best services and sincerely appreciate your support. Hospital.','N','D','T0','00:00:00','N','Y','Y','9825082989,7600303648','This message is sent referral doctor either at the'),(17,0,0,'','S','IP_REGISTER_D',' &&Aname&& has been admitted with &&Cname&&, Hospital on &&AdmitDateTime&& Date and time. IP ID is &&ipdRegID&& and patient is at &&roomNumber&& / &&roomCategory&& ','N','D','T0','00:00:00','N','Y','Y','9825082989,7600303648','This message is sent referral doctor either at the'),(18,0,0,'','S','DISCOUNT_MSG','IP ID &&ipdRegID&& , &&Aname&& , Gross amt : 9999 , Discount Amt : 999, Net Amt : 9999.','N','D','T0','00:00:00','N','N','N','','');
/*!40000 ALTER TABLE `sms_setup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `stock_adjustment`
--

DROP TABLE IF EXISTS `stock_adjustment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stock_adjustment` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `adjustment_trn_no` int(11) NOT NULL,
  `fyear` int(11) NOT NULL,
  `sr_no` int(11) NOT NULL,
  `adjustment_txn_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `store_code` varchar(6) NOT NULL DEFAULT '1',
  `product_id` int(11) NOT NULL,
  `batch_no` varchar(40) DEFAULT NULL,
  `batch_exp` date DEFAULT NULL,
  `unit_price` float(9,2) NOT NULL,
  `unit_price_wo_gst` float(9,2) NOT NULL DEFAULT '0.00',
  `system_stock` int(11) NOT NULL,
  `physical_stock` int(11) DEFAULT NULL,
  `diff_stock` int(11) DEFAULT NULL,
  `created_by` varchar(20) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(20) NOT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`adjustment_trn_no`,`fyear`,`sr_no`,`store_code`) USING BTREE,
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`adjustment_trn_no`,`fyear`,`sr_no`,`store_code`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stock_adjustment`
--

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

--
-- Table structure for table `stock_master`
--

DROP TABLE IF EXISTS `stock_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stock_master` (
  `s_month` date NOT NULL,
  `stock_id` varchar(4) NOT NULL,
  `stock_date` date NOT NULL,
  `stock_type` varchar(8) NOT NULL,
  `o_stock` int(11) NOT NULL,
  `stock` int(11) NOT NULL,
  PRIMARY KEY (`s_month`,`stock_id`,`stock_type`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stock_master`
--

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

--
-- Table structure for table `stock_trans`
--

DROP TABLE IF EXISTS `stock_trans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stock_trans` (
  `stock_id` varchar(4) NOT NULL,
  `stock_type` varchar(8) NOT NULL,
  `s_date` date NOT NULL,
  `t_seq` int(11) NOT NULL,
  `add_sub` varchar(1) NOT NULL,
  `s_qty` int(11) NOT NULL,
  `issue_type` varchar(1) NOT NULL,
  `s_remark` varchar(25) NOT NULL,
  PRIMARY KEY (`stock_id`,`stock_type`,`s_date`,`t_seq`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stock_trans`
--

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

--
-- Table structure for table `sub_department_master`
--

DROP TABLE IF EXISTS `sub_department_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sub_department_master` (
  `sub_department_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  `department_id` tinyint(3) unsigned NOT NULL,
  `sub_department_name` varchar(30) NOT NULL,
  `sub_department_is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`sub_department_id`),
  UNIQUE KEY `sub_department_name` (`sub_department_name`) USING BTREE,
  KEY `FK_department_created_user` (`created_by`),
  KEY `FK_department_lastmodified_user` (`lastmodified_by`),
  KEY `FK_subdept_deptid` (`department_id`),
  CONSTRAINT `FK_subdept_deptid` FOREIGN KEY (`department_id`) REFERENCES `department_master` (`department_id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sub_department_master`
--

LOCK TABLES `sub_department_master` WRITE;
/*!40000 ALTER TABLE `sub_department_master` DISABLE KEYS */;
INSERT INTO `sub_department_master` VALUES (8,15,'OT','Y','kinjal','2019-05-24 12:48:09',NULL,NULL),(9,15,'CSSD','Y','kinjal','2019-05-24 15:18:24',NULL,NULL),(10,15,'General Ward','Y','kinjal','2019-05-24 15:18:37',NULL,NULL),(11,15,'ICU','Y','kinjal','2019-05-24 15:18:46',NULL,NULL),(12,15,'Dialysis','Y','kinjal','2019-05-24 15:18:59',NULL,NULL),(13,15,'Admin','Y','kinjal','2019-05-25 09:57:26',NULL,NULL),(14,15,'ECHO/TMT','Y','kinjal','2019-05-25 09:57:40',NULL,NULL),(15,15,'Ophthalmology','Y','kinjal','2019-05-27 10:44:45',NULL,NULL),(16,15,'Radiology','Y','kinjal','2019-05-27 10:44:55',NULL,NULL),(17,15,'Emergency','Y','kinjal','2019-06-03 16:24:09',NULL,NULL),(18,15,'GYNEC WARD','Y','kinjal','2019-07-09 11:38:04',NULL,NULL);
/*!40000 ALTER TABLE `sub_department_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sufalam_lab_result_header`
--

DROP TABLE IF EXISTS `sufalam_lab_result_header`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sufalam_lab_result_header` (
  `lab_id` varchar(20) NOT NULL,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `integration_order_id` varchar(20) NOT NULL,
  `report_file_url` text NOT NULL,
  `report_pdf_byte` mediumtext NOT NULL,
  `response_date_time` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`integration_order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sufalam_lab_result_header`
--

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

--
-- Table structure for table `sufalam_lab_result_transaction`
--

DROP TABLE IF EXISTS `sufalam_lab_result_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sufalam_lab_result_transaction` (
  `lab_id` varchar(20) NOT NULL,
  `integration_order_id` varchar(20) NOT NULL,
  `order_serial_no` int(11) NOT NULL AUTO_INCREMENT,
  `package_id` varchar(20) NOT NULL,
  `package_name` varchar(30) NOT NULL,
  `service_id` varchar(20) NOT NULL,
  `service_name` varchar(20) NOT NULL,
  `panel_id` varchar(20) NOT NULL,
  `panel_name` varchar(30) NOT NULL,
  `test_id` varchar(20) NOT NULL,
  `name_to_be_printed` varchar(30) NOT NULL,
  `result_value` varchar(30) NOT NULL,
  `unit_name` varchar(10) NOT NULL,
  `BRI_low_value` float NOT NULL,
  `BRI_high_value` float NOT NULL,
  `BR_interval` varchar(10) NOT NULL,
  `approved_by` varchar(30) NOT NULL,
  `approved_on` datetime NOT NULL,
  PRIMARY KEY (`order_serial_no`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sufalam_lab_result_transaction`
--

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

--
-- Table structure for table `supplier_contact`
--

DROP TABLE IF EXISTS `supplier_contact`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `supplier_contact` (
  `supplier_contact_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  `supplier_id` smallint(5) unsigned NOT NULL,
  `supplier_contact_name` varchar(50) NOT NULL,
  `supplier_contact_no` varchar(15) NOT NULL,
  `created_by` varchar(10) DEFAULT NULL,
  `created_date` datetime DEFAULT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`supplier_contact_id`),
  KEY `FK_suppliercontactmaster` (`supplier_id`),
  CONSTRAINT `FK_suppliercontactmaster` FOREIGN KEY (`supplier_id`) REFERENCES `suppliermaster` (`supplier_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `supplier_contact`
--

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

--
-- Table structure for table `supplier_master`
--

DROP TABLE IF EXISTS `supplier_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `supplier_master` (
  `supp_cd` int(11) NOT NULL AUTO_INCREMENT,
  `supp_name` varchar(50) NOT NULL,
  `supp_add` varchar(100) NOT NULL,
  `supp_add2` varchar(300) NOT NULL,
  `contact_name` varchar(100) NOT NULL,
  `Tel_no` varchar(10) NOT NULL,
  `office_no` varchar(10) NOT NULL,
  `email` varchar(20) NOT NULL,
  `sc_id` varchar(5) NOT NULL,
  PRIMARY KEY (`supp_cd`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `supplier_master`
--

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

--
-- Table structure for table `supplier_master_old`
--

DROP TABLE IF EXISTS `supplier_master_old`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `supplier_master_old` (
  `supp_cd` int(11) NOT NULL AUTO_INCREMENT,
  `supp_name` varchar(100) NOT NULL,
  `supp_add` varchar(300) NOT NULL,
  `supp_add2` varchar(300) NOT NULL,
  `contact_name` varchar(20) NOT NULL,
  `Tel_no` bigint(20) NOT NULL,
  `office_no` bigint(20) NOT NULL,
  `email` varchar(20) NOT NULL,
  PRIMARY KEY (`supp_cd`),
  UNIQUE KEY `supp_name` (`supp_name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `supplier_master_old`
--

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

--
-- Table structure for table `supplier_payment_details`
--

DROP TABLE IF EXISTS `supplier_payment_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `supplier_payment_details` (
  `Payment_ID` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `Trn_Fyear` smallint(6) NOT NULL,
  `store_code` varchar(6) COLLATE utf8_unicode_ci NOT NULL,
  `Trn_Type` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `Voucher_No` int(11) NOT NULL,
  `Payment_Vou_Fyear` smallint(6) NOT NULL,
  `Payment_Vou_No` int(11) NOT NULL,
  `Sr_No` int(11) NOT NULL,
  `Bill_Amount_Paid` int(11) NOT NULL,
  `Bill_Amount_Date` date NOT NULL,
  `payment_mode` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `bank` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `cheque_ref_no` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `Payment_Remark` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `trn_status` enum('C','T') COLLATE utf8_unicode_ci NOT NULL,
  `created_by` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
  `lastmodified_date` datetime NOT NULL,
  PRIMARY KEY (`Payment_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `supplier_payment_details`
--

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

--
-- Table structure for table `supplier_product_relationship`
--

DROP TABLE IF EXISTS `supplier_product_relationship`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `supplier_product_relationship` (
  `company_id` tinyint(4) NOT NULL,
  `supplier_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  UNIQUE KEY `supplier_id` (`company_id`,`supplier_id`,`product_id`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `supplier_product_relationship`
--

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

--
-- Table structure for table `suppliermaster`
--

DROP TABLE IF EXISTS `suppliermaster`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `suppliermaster` (
  `supplier_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `supplier_code` varchar(10) DEFAULT NULL COMMENT 'Short name for supplier',
  `supplier_name` varchar(50) NOT NULL,
  `supplier_phone_no` varchar(25) DEFAULT NULL COMMENT 'Supplier office number',
  `supplier_address1` varchar(100) NOT NULL,
  `supplier_address2` varchar(100) DEFAULT NULL,
  `supplier_city` varchar(30) NOT NULL,
  `supplier_state` varchar(30) NOT NULL,
  `supplier_country_code` char(2) CHARACTER SET utf8 NOT NULL DEFAULT 'IN' COMMENT 'country iso code from country table',
  `supplier_pincode` mediumint(9) DEFAULT NULL,
  `supplier_email` varchar(100) DEFAULT NULL,
  `supplier_gstin_no` varchar(20) DEFAULT NULL,
  `supplier_supply_type` enum('intra_state','inter_state') NOT NULL DEFAULT 'intra_state',
  `drug_licence_no` varchar(50) NOT NULL,
  `supplier_type` enum('GEN','PHA','CMN') NOT NULL COMMENT 'PHA - Pharmacy, GEN - General Store, CMN - Common',
  `supplier_bill_format` varchar(50) NOT NULL,
  `supplier_ledger_code` varchar(4) DEFAULT NULL,
  `supplier_is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`supplier_id`),
  KEY `supplier_name` (`supplier_name`,`company_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `suppliermaster`
--

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

--
-- Table structure for table `surgery_cancellation_detail_tracking`
--

DROP TABLE IF EXISTS `surgery_cancellation_detail_tracking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `surgery_cancellation_detail_tracking` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `ip_id` bigint(20) NOT NULL,
  `op_id` bigint(20) NOT NULL,
  `ot_room_id` varchar(4) NOT NULL,
  `ot_room_no` varchar(10) NOT NULL,
  `op_date` date NOT NULL,
  `op_time_from` time NOT NULL,
  `op_time_to` time NOT NULL,
  `Surgery_CreatedBy` varchar(10) NOT NULL,
  `Surgery_CreatedDate` datetime NOT NULL,
  `cancellationBy` varchar(10) NOT NULL,
  `cancellationDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `surgery_cancellation_detail_tracking`
--

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

--
-- Table structure for table `surgery_operative_step_master`
--

DROP TABLE IF EXISTS `surgery_operative_step_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `surgery_operative_step_master` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `service_code` varchar(8) NOT NULL,
  `operative_step` text NOT NULL,
  `is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `surgery_operative_step_master`
--

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

--
-- Table structure for table `surgery_package_detail`
--

DROP TABLE IF EXISTS `surgery_package_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `surgery_package_detail` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `pkg_code` varchar(8) NOT NULL COMMENT 'package header code',
  `rate_card` int(11) NOT NULL,
  `service_sr_no` tinyint(4) NOT NULL,
  `service_type` char(1) NOT NULL DEFAULT 'S',
  `service_code` varchar(8) NOT NULL,
  `product_code` int(11) NOT NULL,
  `is_icu` enum('Y','N') NOT NULL DEFAULT 'N',
  `quantity` float(9,2) NOT NULL,
  `service_amount` float(9,2) NOT NULL,
  `service_discount_type` enum('A','P') NOT NULL DEFAULT 'A',
  `service_discount_percent` float(5,2) NOT NULL,
  `service_discount` float(9,2) NOT NULL,
  `service_netAmount` float(9,2) NOT NULL,
  `CreatedBy` varchar(15) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(15) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`pkg_code`,`rate_card`,`service_type`,`service_code`,`product_code`,`is_icu`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `surgery_package_detail`
--

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

--
-- Table structure for table `surgery_package_header`
--

DROP TABLE IF EXISTS `surgery_package_header`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `surgery_package_header` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `pkg_code` varchar(8) NOT NULL COMMENT 'service code from service master',
  `rate_card` int(11) NOT NULL,
  `room_category` varchar(4) NOT NULL,
  `pkg_description` varchar(100) NOT NULL,
  `pkg_amount` float(9,2) NOT NULL,
  `gross_amount` float(9,2) NOT NULL,
  `discount_type` enum('A','P') NOT NULL DEFAULT 'A',
  `discount_percent` float(5,2) NOT NULL,
  `discount_amount` float(9,2) NOT NULL,
  `net_amount` float(9,2) NOT NULL,
  `is_active` enum('N','Y') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(15) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(15) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`pkg_code`,`rate_card`,`room_category`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `surgery_package_header`
--

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

--
-- Table structure for table `surgery_schedule`
--

DROP TABLE IF EXISTS `surgery_schedule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `surgery_schedule` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `surgery_name` text NOT NULL,
  `date` date NOT NULL,
  `st_time` time NOT NULL,
  `end_time` time NOT NULL,
  `doctor_id` int(11) NOT NULL,
  `assist_surgeons` int(11) NOT NULL,
  `anaesthetist` int(11) NOT NULL,
  `nurses` text NOT NULL,
  `ot_room` int(11) NOT NULL,
  `note` text NOT NULL,
  `schedule_status` char(1) NOT NULL COMMENT 'C for cancelled. R for released',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `patient_id` (`patient_id`,`date`,`st_time`),
  UNIQUE KEY `ot_room` (`ot_room`,`date`,`st_time`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `surgery_schedule`
--

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

--
-- Table structure for table `symptoms_diagnosis`
--

DROP TABLE IF EXISTS `symptoms_diagnosis`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `symptoms_diagnosis` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `patient_reg_id` bigint(20) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `s_d_date` date NOT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `symptoms` varchar(500) NOT NULL,
  `diagnosis` varchar(500) NOT NULL,
  `spo2` varchar(50) NOT NULL,
  `temp` varchar(4) NOT NULL,
  `bp_low` varchar(5) NOT NULL,
  `bp_high` varchar(5) NOT NULL,
  `pulse` varchar(5) NOT NULL,
  `remark` varchar(50) NOT NULL,
  `discount` float NOT NULL,
  `next_visit` varchar(10) NOT NULL,
  `user_id` varchar(10) NOT NULL,
  PRIMARY KEY (`id`,`company_id`,`branch_id`,`patient_reg_id`,`s_d_date`)
) ENGINE=InnoDB AUTO_INCREMENT=5863 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `symptoms_diagnosis`
--

LOCK TABLES `symptoms_diagnosis` WRITE;
/*!40000 ALTER TABLE `symptoms_diagnosis` DISABLE KEYS */;
INSERT INTO `symptoms_diagnosis` VALUES (1,0,0,4,4,'2025-10-08',0,'','','','','','','','',0,'','drjayant'),(2,0,0,13,13,'2025-10-08',0,'','','','','','','','',0,'2025-11-07','darshan'),(3,0,0,23,24,'2025-10-08',0,'','','','','','','','',0,'','drjayant'),(4,0,0,10,10,'2025-10-08',0,'','','','','','','','',0,'2025-11-07','darshan'),(5,0,0,20,20,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(6,0,0,8,8,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(7,0,0,37,41,'2025-10-08',0,'','','','','','','','',0,'','drjayant'),(8,0,0,6,6,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(9,0,0,39,43,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(10,0,0,11,11,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(11,0,0,35,39,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(12,0,0,3,3,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(13,0,0,2,2,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(14,0,0,1,1,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(15,0,0,12,12,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(16,0,0,44,49,'2025-10-08',0,'','','','','','','','',0,'','drjayant'),(17,0,0,18,18,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(18,0,0,30,32,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(19,0,0,31,33,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(20,0,0,19,19,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(21,0,0,15,15,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(22,0,0,25,26,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(23,0,0,27,29,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(24,0,0,28,30,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(25,0,0,55,65,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(26,0,0,49,55,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(27,0,0,29,31,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(28,0,0,9,9,'2025-10-08',0,'','','','','','','','',0,'','drjayant'),(29,0,0,36,40,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(30,0,0,38,42,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(31,0,0,42,46,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(32,0,0,5,5,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(33,0,0,51,58,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(34,0,0,7,7,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(35,0,0,17,17,'2025-10-08',0,'','','','','','','','',0,'','drsagar'),(36,0,0,50,57,'2025-10-08',0,'','','','','','','','',0,'','drsagar'),(37,0,0,53,61,'2025-10-08',0,'','','','','','','','',0,'','drsagar'),(38,0,0,24,25,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(39,0,0,52,59,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(40,0,0,34,38,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(41,0,0,46,52,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(42,0,0,68,79,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(43,0,0,58,69,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(44,0,0,65,76,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(45,0,0,72,83,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(46,0,0,73,84,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(47,0,0,74,85,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(48,0,0,75,86,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(49,0,0,47,53,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(50,0,0,48,54,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(51,0,0,54,64,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(52,0,0,57,68,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(53,0,0,61,72,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(54,0,0,62,73,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(55,0,0,63,74,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(56,0,0,86,97,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(57,0,0,77,88,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(58,0,0,78,89,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(59,0,0,79,90,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(60,0,0,81,92,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(61,0,0,80,91,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(62,0,0,82,93,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(63,0,0,84,95,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(64,0,0,100,111,'2025-10-08',0,'','','','','','','','',0,'','drjayant'),(65,0,0,106,117,'2025-10-08',0,'','','','','','','','',0,'','drjayant'),(66,0,0,97,108,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(67,0,0,96,107,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(68,0,0,83,94,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(69,0,0,109,120,'2025-10-08',0,'','','','','','','','',0,'','drjayant'),(70,0,0,110,121,'2025-10-08',0,'','','','','','','','',0,'','drjayant'),(71,0,0,14,14,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(72,0,0,107,118,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(73,0,0,99,110,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(74,0,0,60,71,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(75,0,0,64,75,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(76,0,0,66,77,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(77,0,0,16,16,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(78,0,0,21,22,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(79,0,0,59,70,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(80,0,0,45,50,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(81,0,0,43,47,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(82,0,0,41,45,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(83,0,0,32,35,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(84,0,0,33,36,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(85,0,0,40,44,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(86,0,0,119,130,'2025-10-08',0,'','','','','','','','',0,'','drjayant'),(87,0,0,105,116,'2025-10-08',0,'','','','','','','','',0,'','drsagar'),(88,0,0,111,122,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(89,0,0,108,119,'2025-10-08',0,'','','','','','','','',0,'','drsagar'),(90,0,0,126,137,'2025-10-08',0,'','','','','','','','',0,'','drjayant'),(91,0,0,121,132,'2025-10-08',0,'','','','','','','','',0,'','drsagar'),(92,0,0,69,80,'2025-10-08',0,'','','','','','','','',0,'','drsagar'),(93,0,0,70,81,'2025-10-08',0,'','','','','','','','',0,'','drsagar'),(94,0,0,116,127,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(95,0,0,117,128,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(96,0,0,128,139,'2025-10-08',0,'','','','','','','','',0,'','drjayant'),(97,0,0,115,126,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(98,0,0,87,98,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(99,0,0,118,129,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(100,0,0,131,142,'2025-10-08',0,'','','','','','','','',0,'','drjayant'),(101,0,0,101,112,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(102,0,0,102,113,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(103,0,0,71,82,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(104,0,0,56,67,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(105,0,0,89,100,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(106,0,0,120,131,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(107,0,0,133,144,'2025-10-08',0,'','','','','','','','',0,'','drsagar'),(108,0,0,90,101,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(109,0,0,135,146,'2025-10-08',0,'','','','','','','','',0,'','drjayant'),(110,0,0,91,102,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(111,0,0,138,149,'2025-10-08',0,'','','','','','','','',0,'','drjayant'),(112,0,0,92,103,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(113,0,0,76,87,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(114,0,0,137,148,'2025-10-08',0,'','','','','','','','',0,'','drsagar'),(115,0,0,139,151,'2025-10-08',0,'','','','','','','','',0,'','drsagar'),(116,0,0,85,96,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(117,0,0,114,125,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(118,0,0,130,141,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(119,0,0,140,152,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(120,0,0,129,140,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(121,0,0,124,135,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(122,0,0,98,109,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(123,0,0,127,138,'2025-10-08',0,'','','','','','','','',0,'','drarchit'),(124,0,0,125,136,'2025-10-08',0,'','','','','','','','',0,'','drpratapsi'),(125,0,0,94,105,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(126,0,0,93,104,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(127,0,0,143,155,'2025-10-08',0,'','','','','','','','',0,'','drsagar'),(128,0,0,144,156,'2025-10-08',0,'','','','','','','','',0,'','drsagar'),(129,0,0,134,145,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(130,0,0,122,133,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(131,0,0,104,115,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(132,0,0,88,99,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(133,0,0,112,123,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(134,0,0,113,124,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(135,0,0,103,114,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(136,0,0,132,143,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(137,0,0,136,147,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(138,0,0,95,106,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(139,0,0,146,158,'2025-10-08',0,'','','','','','','','',0,'','darshan'),(140,0,0,151,166,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(141,0,0,148,161,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(142,0,0,156,172,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(143,0,0,157,173,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(144,0,0,160,176,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(145,0,0,155,171,'2025-10-09',0,'','','','','','','','',0,'','drjayant'),(146,0,0,175,191,'2025-10-09',0,'','','','','','','','',0,'','drjayant'),(147,0,0,161,177,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(148,0,0,180,197,'2025-10-09',0,'','','','','','','','',0,'','drjayant'),(149,0,0,188,205,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(150,0,0,147,160,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(151,0,0,47,159,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(152,0,0,153,169,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(153,0,0,165,181,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(154,0,0,178,195,'2025-10-09',0,'','','','','','','','',0,'','drsagar'),(155,0,0,167,183,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(156,0,0,168,184,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(157,0,0,194,211,'2025-10-09',0,'','','','','','','','',0,'','drjayant'),(158,0,0,170,186,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(159,0,0,171,187,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(160,0,0,177,194,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(161,0,0,179,196,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(162,0,0,193,210,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(163,0,0,183,200,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(164,0,0,149,162,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(165,0,0,150,163,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(166,0,0,154,170,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(167,0,0,159,175,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(168,0,0,196,213,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(169,0,0,192,209,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(170,0,0,185,202,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(171,0,0,152,167,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(172,0,0,189,206,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(173,0,0,186,203,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(174,0,0,158,174,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(175,0,0,204,222,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(176,0,0,164,180,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(177,0,0,169,185,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(178,0,0,201,219,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(179,0,0,205,223,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(180,0,0,208,227,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(181,0,0,209,228,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(182,0,0,212,231,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(183,0,0,215,234,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(184,0,0,216,235,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(185,0,0,220,239,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(186,0,0,191,208,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(187,0,0,181,198,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(188,0,0,197,214,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(189,0,0,202,220,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(190,0,0,190,207,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(191,0,0,182,199,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(192,0,0,214,233,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(193,0,0,227,248,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(194,0,0,187,204,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(195,0,0,184,201,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(196,0,0,176,192,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(197,0,0,173,189,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(198,0,0,172,188,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(199,0,0,222,241,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(200,0,0,166,182,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(201,0,0,162,178,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(202,0,0,231,252,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(203,0,0,239,262,'2025-10-09',0,'','','','','','','','',0,'','drjayant'),(204,0,0,235,258,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(205,0,0,224,244,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(206,0,0,233,254,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(207,0,0,111,255,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(208,0,0,232,253,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(209,0,0,200,218,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(210,0,0,240,263,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(211,0,0,237,260,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(212,0,0,217,236,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(213,0,0,226,247,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(214,0,0,199,217,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(215,0,0,228,249,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(216,0,0,221,240,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(217,0,0,238,261,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(218,0,0,242,265,'2025-10-09',0,'','','','','','','','',0,'','drjayant'),(219,0,0,245,269,'2025-10-09',0,'','','','','','','','',0,'','drjayant'),(220,0,0,234,256,'2025-10-09',0,'','','','','','','','',0,'','drjayant'),(221,0,0,229,250,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(222,0,0,230,251,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(223,0,0,243,266,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(224,0,0,244,267,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(225,0,0,248,273,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(226,0,0,236,259,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(227,0,0,251,276,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(228,0,0,241,264,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(229,0,0,252,277,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(230,0,0,207,226,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(231,0,0,254,279,'2025-10-09',0,'','','','','','','','',0,'','drarchit'),(232,0,0,89,243,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(233,0,0,210,229,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(234,0,0,140,268,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(235,0,0,247,272,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(236,0,0,219,238,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(237,0,0,174,190,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(238,0,0,249,274,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(239,0,0,118,271,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(240,0,0,206,225,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(241,0,0,218,237,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(242,0,0,246,270,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(243,0,0,198,215,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(244,0,0,203,221,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(245,0,0,211,230,'2025-10-09',0,'','','','','','','','',0,'','drpratapsi'),(246,0,0,250,275,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(247,0,0,225,245,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(248,0,0,213,232,'2025-10-09',0,'','','','','','','','',0,'','darshan'),(249,0,0,263,294,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(250,0,0,265,296,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(251,0,0,268,299,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(252,0,0,264,295,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(253,0,0,241,290,'2025-10-10',0,'','','','','','','','',0,'','drarchit'),(254,0,0,259,286,'2025-10-10',0,'','','','','','','','',0,'','drpratapsi'),(255,0,0,270,301,'2025-10-10',0,'','','','','','','','',0,'','drpratapsi'),(256,0,0,47,289,'2025-10-10',0,'','','','','','','','',0,'','drpratapsi'),(257,0,0,260,287,'2025-10-10',0,'','','','','','','','',0,'','drpratapsi'),(258,0,0,147,292,'2025-10-10',0,'','','','','','','','',0,'','drpratapsi'),(259,0,0,271,302,'2025-10-10',0,'','','','','','','','',0,'','drpratapsi'),(260,0,0,275,306,'2025-10-10',0,'','','','','','','','',0,'','drarchit'),(261,0,0,285,316,'2025-10-10',0,'','','','','','','','',0,'','drpratapsi'),(262,0,0,282,313,'2025-10-10',0,'','','','','','','','',0,'','drsagar'),(263,0,0,266,297,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(264,0,0,262,291,'2025-10-10',0,'','','','','','','','',0,'','drjayant'),(265,0,0,269,300,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(266,0,0,286,318,'2025-10-10',0,'','','','','','','','',0,'','drsagar'),(267,0,0,290,322,'2025-10-10',0,'','','','','','','','',0,'','drjayant'),(268,0,0,289,321,'2025-10-10',0,'','','','','','','','',0,'','drpratapsi'),(269,0,0,277,308,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(270,0,0,291,323,'2025-10-10',0,'','','','','','','','',0,'','drpratapsi'),(271,0,0,267,298,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(272,0,0,273,304,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(273,0,0,301,333,'2025-10-10',0,'','','','','','','','',0,'','drsagar'),(274,0,0,278,309,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(275,0,0,302,334,'2025-10-10',0,'','','','','','','','',0,'','drsagar'),(276,0,0,284,315,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(277,0,0,295,327,'2025-10-10',0,'','','','','','','','',0,'','drarchit'),(278,0,0,274,305,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(279,0,0,288,320,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(280,0,0,283,314,'2025-10-10',0,'','','','','','','','',0,'','drjayant'),(281,0,0,303,335,'2025-10-10',0,'','','','','','','','',0,'','drpratapsi'),(282,0,0,297,329,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(283,0,0,298,330,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(284,0,0,306,338,'2025-10-10',0,'','','','','','','','',0,'','drjayant'),(285,0,0,308,340,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(286,0,0,272,303,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(287,0,0,292,324,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(288,0,0,294,326,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(289,0,0,312,344,'2025-10-10',0,'','','','','','','','',0,'','drsagar'),(290,0,0,300,332,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(291,0,0,309,341,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(292,0,0,316,349,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(293,0,0,317,350,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(294,0,0,322,355,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(295,0,0,325,358,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(296,0,0,326,359,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(297,0,0,321,354,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(298,0,0,315,348,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(299,0,0,328,361,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(300,0,0,323,356,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(301,0,0,319,352,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(302,0,0,320,353,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(303,0,0,330,363,'2025-10-10',0,'','','','','','','','',0,'2025-10-17','darshan'),(304,0,0,333,366,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(305,0,0,311,343,'2025-10-10',0,'','','','','','','','',0,'','drsagar'),(306,0,0,261,288,'2025-10-10',0,'','','','','','','','',0,'','drarchit'),(307,0,0,299,331,'2025-10-10',0,'','','','','','','','',0,'','drarchit'),(308,0,0,287,319,'2025-10-10',0,'','','','','','','','',0,'','drarchit'),(309,0,0,293,325,'2025-10-10',0,'','','','','','','','',0,'','drarchit'),(310,0,0,329,362,'2025-10-10',0,'','','','','','','','',0,'','drsagar'),(311,0,0,354,388,'2025-10-10',0,'','','','','','','','',0,'','drsagar'),(312,0,0,340,373,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(313,0,0,353,387,'2025-10-10',0,'','','','','','','','',0,'','drjayant'),(314,0,0,343,376,'2025-10-10',0,'','','','','','','','',0,'','drarchit'),(315,0,0,342,375,'2025-10-10',0,'','','','','','','','',0,'','drarchit'),(316,0,0,352,386,'2025-10-10',0,'','','','','','','','',0,'','drjayant'),(317,0,0,304,336,'2025-10-10',0,'','','','','','','','',0,'','drarchit'),(318,0,0,355,389,'2025-10-10',0,'','','','','','','','',0,'','drarchit'),(319,0,0,347,381,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(320,0,0,337,370,'2025-10-10',0,'','','','','','','','',0,'','drridham'),(321,0,0,339,372,'2025-10-10',0,'','','','','','','','',0,'','drridham'),(322,0,0,314,347,'2025-10-10',0,'','','','','','','','',0,'','drarchit'),(323,0,0,356,390,'2025-10-10',0,'','','','','','','','',0,'','drjayant'),(324,0,0,258,285,'2025-10-10',0,'','','','','','','','',0,'','drjayant'),(325,0,0,279,310,'2025-10-10',0,'','','','','','','','',0,'','drarchit'),(326,0,0,360,395,'2025-10-10',0,'','','','','','','','',0,'','drarchit'),(327,0,0,349,383,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(328,0,0,359,394,'2025-10-10',0,'','','','','','','','',0,'','drarchit'),(329,0,0,327,360,'2025-10-10',0,'','','','','','','','',0,'','drsagar'),(330,0,0,70,401,'2025-10-10',0,'','','','','','','','',0,'','drsagar'),(331,0,0,351,385,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(332,0,0,366,403,'2025-10-10',0,'','','','','','','','',0,'','drarchit'),(333,0,0,358,392,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(334,0,0,331,364,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(335,0,0,345,378,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(336,0,0,338,371,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(337,0,0,369,407,'2025-10-10',0,'','','','','','','','',0,'','drsagar'),(338,0,0,357,391,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(339,0,0,350,384,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(340,0,0,362,398,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(341,0,0,363,399,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(342,0,0,344,377,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(343,0,0,368,405,'2025-10-10',0,'','','','','','','','',0,'','darshan'),(344,0,0,378,424,'2025-10-11',0,'','','','','','','','',0,'2025-10-31','darshan'),(345,0,0,381,429,'2025-10-11',0,'','','','','','','','',0,'2025-10-21','darshan'),(346,0,0,384,433,'2025-10-11',0,'','','','','','','','',0,'2025-11-10','darshan'),(347,0,0,388,438,'2025-10-11',0,'','','','','','','','',0,'2025-10-21','darshan'),(348,0,0,380,427,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(349,0,0,390,440,'2025-10-11',0,'','','','','','','','',0,'2025-11-20','darshan'),(350,0,0,391,441,'2025-10-11',0,'','','','','','','','',0,'2025-10-16','darshan'),(351,0,0,393,443,'2025-10-11',0,'','','','','','','','',0,'2025-12-10','darshan'),(352,0,0,382,431,'2025-10-11',0,'','','','','','','','',0,'','drjayant'),(353,0,0,376,421,'2025-10-11',0,'','','','','','','','',0,'2025-10-27','darshan'),(354,0,0,131,447,'2025-10-11',0,'','','','','','','','',0,'','drjayant'),(355,0,0,395,445,'2025-10-11',0,'','','','','','','','',0,'2025-11-20','darshan'),(356,0,0,408,460,'2025-10-11',0,'','','','','','','','',0,'','drsagar'),(357,0,0,400,451,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(358,0,0,397,448,'2025-10-11',0,'','','','','','','','',0,'2025-12-10','darshan'),(359,0,0,403,454,'2025-10-11',0,'','','','','','','','',0,'','drjayant'),(360,0,0,242,457,'2025-10-11',0,'','','','','','','','',0,'','drjayant'),(361,0,0,375,420,'2025-10-11',0,'','','','','','','','',0,'','drjayant'),(362,0,0,405,456,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(363,0,0,379,425,'2025-10-11',0,'','','','','','','','',0,'2025-10-27','darshan'),(364,0,0,414,467,'2025-10-11',0,'','','','','','','','',0,'','drsagar'),(365,0,0,21,462,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(366,0,0,409,461,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(367,0,0,374,418,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(368,0,0,389,439,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(369,0,0,407,459,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(370,0,0,387,437,'2025-10-11',0,'','','','','','','','',0,'2026-02-09','darshan'),(371,0,0,399,450,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(372,0,0,412,465,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(373,0,0,413,466,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(374,0,0,373,476,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(375,0,0,396,446,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(376,0,0,392,442,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(377,0,0,415,468,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(378,0,0,394,444,'2025-10-11',0,'','','','','','','','',0,'2025-10-27','darshan'),(379,0,0,383,432,'2025-10-11',0,'','','','','','','','',0,'','drridham'),(380,0,0,422,479,'2025-10-11',0,'','','','','','','','',0,'','drridham'),(381,0,0,410,463,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(382,0,0,418,472,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(383,0,0,416,469,'2025-10-11',0,'','','','','','','','',0,'2025-10-31','darshan'),(384,0,0,419,473,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(385,0,0,417,471,'2025-10-11',0,'','','','','','','','',0,'2025-10-18','darshan'),(386,0,0,402,453,'2025-10-11',0,'','','','','','','','',0,'2025-10-27','darshan'),(387,0,0,420,474,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(388,0,0,401,452,'2025-10-11',0,'','','','','','','','',0,'2025-10-21','darshan'),(389,0,0,147,419,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(390,0,0,411,464,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(391,0,0,385,435,'2025-10-11',0,'','','','','','','','',0,'','drjayant'),(392,0,0,421,478,'2025-10-11',0,'','','','','','','','',0,'2025-11-10','darshan'),(393,0,0,43,475,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(394,0,0,404,455,'2025-10-11',0,'','','','','','','','',0,'2025-11-10','darshan'),(395,0,0,424,481,'2025-10-11',0,'','','','','','','','',0,'2025-11-10','darshan'),(396,0,0,428,485,'2025-10-11',0,'','','','','','','','',0,'','drjayant'),(397,0,0,425,482,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(398,0,0,429,486,'2025-10-11',0,'','','','','','','','',0,'','drsagar'),(399,0,0,423,480,'2025-10-11',0,'','','','','','','','',0,'','drarchit'),(400,0,0,433,493,'2025-10-11',0,'','','','','','','','',0,'','drsagar'),(401,0,0,434,495,'2025-10-11',0,'','','','','','','','',0,'','drsagar'),(402,0,0,435,497,'2025-10-11',0,'','','','','','','','',0,'','drsagar'),(403,0,0,430,490,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(404,0,0,386,436,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(405,0,0,432,492,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(406,0,0,436,498,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(407,0,0,437,499,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(408,0,0,439,502,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(409,0,0,140,501,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(410,0,0,440,504,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(411,0,0,118,494,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(412,0,0,377,423,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(413,0,0,398,449,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(414,0,0,303,503,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(415,0,0,438,500,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(416,0,0,54,496,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(417,0,0,431,491,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(418,0,0,426,483,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(419,0,0,406,458,'2025-10-11',0,'','','','','','','','',0,'','drpratapsi'),(420,0,0,463,536,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(421,0,0,147,541,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(422,0,0,140,516,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(423,0,0,303,518,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(424,0,0,451,523,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(425,0,0,450,522,'2025-10-13',0,'','','','','','','','',0,'2025-11-22','darshan'),(426,0,0,458,531,'2025-10-13',0,'','','','','','','','',0,'2025-12-12','darshan'),(427,0,0,465,538,'2025-10-13',0,'','','','','','','','',0,'2025-11-03','darshan'),(428,0,0,454,526,'2025-10-13',0,'','','','','','','','',0,'2025-11-27','darshan'),(429,0,0,483,558,'2025-10-13',0,'','','','','','','','',0,'','drjayant'),(430,0,0,464,537,'2025-10-13',0,'','','','','','','','',0,'','drridham'),(431,0,0,478,553,'2025-10-13',0,'','','','','','','','',0,'','drridham'),(432,0,0,468,542,'2025-10-13',0,'','','','','','','','',0,'','drridham'),(433,0,0,474,549,'2025-10-13',0,'','','','','','','','',0,'2025-10-20','drarchit'),(434,0,0,489,566,'2025-10-13',0,'','','','','','','','',0,'','drridham'),(435,0,0,484,559,'2025-10-13',0,'','','','','','','','',0,'','drridham'),(436,0,0,447,517,'2025-10-13',0,'','','','','','','','',0,'2025-11-24','darshan'),(437,0,0,486,561,'2025-10-13',0,'','','','','','','','',0,'','drsagar'),(438,0,0,457,530,'2025-10-13',0,'','','','','','','','',0,'2025-11-03','darshan'),(439,0,0,490,567,'2025-10-13',0,'','','','','','','','',0,'','drjayant'),(440,0,0,479,554,'2025-10-13',0,'','','','','','','','',0,'','drsagar'),(441,0,0,491,568,'2025-10-13',0,'','','','','','','','',0,'','drsagar'),(442,0,0,444,513,'2025-10-13',0,'','','','','','','','',0,'','drsagar'),(443,0,0,498,576,'2025-10-13',0,'','','','','','','','',0,'','drsagar'),(444,0,0,505,583,'2025-10-13',0,'','','','','','','','',0,'','drjayant'),(445,0,0,455,528,'2025-10-13',0,'','','','','','','','',0,'2026-02-10','darshan'),(446,0,0,494,571,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(447,0,0,456,529,'2025-10-13',0,'','','','','','','','',0,'2025-10-18','darshan'),(448,0,0,503,581,'2025-10-13',0,'','','','','','','','',0,'','drridham'),(449,0,0,462,535,'2025-10-13',0,'','','','','','','','',0,'2025-11-12','darshan'),(450,0,0,445,514,'2025-10-13',0,'','','','','','','','',0,'2025-11-03','darshan'),(451,0,0,460,533,'2025-10-13',0,'','','','','','','','',0,'2025-11-12','darshan'),(452,0,0,459,532,'2025-10-13',0,'','','','','','','','',0,'2025-10-18','darshan'),(453,0,0,446,515,'2025-10-13',0,'','','','','','','','',0,'2025-10-28','darshan'),(454,0,0,515,593,'2025-10-13',0,'','','','','','','','',0,'','drjayant'),(455,0,0,497,575,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(456,0,0,501,579,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(457,0,0,508,586,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(458,0,0,67,564,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(459,0,0,496,573,'2025-10-13',0,'','','','','','','','',0,'2025-11-12','darshan'),(460,0,0,442,511,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(461,0,0,481,556,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(462,0,0,487,563,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(463,0,0,488,565,'2025-10-13',0,'','','','','','','','',0,'2025-12-12','darshan'),(464,0,0,475,550,'2025-10-13',0,'','','','','','','','',0,'2026-02-10','darshan'),(465,0,0,467,540,'2025-10-13',0,'','','','','','','','',0,'2026-01-21','darshan'),(466,0,0,500,578,'2025-10-13',0,'','','','','','','','',0,'2025-12-12','darshan'),(467,0,0,509,587,'2025-10-13',0,'','','','','','','','',0,'2025-11-03','darshan'),(468,0,0,473,547,'2025-10-13',0,'','','','','','','','',0,'2025-10-28','darshan'),(469,0,0,470,544,'2025-10-13',0,'','','','','','','','',0,'2025-11-03','darshan'),(470,0,0,471,545,'2025-10-13',0,'','','','','','','','',0,'2025-11-12','darshan'),(471,0,0,516,594,'2025-10-13',0,'','','','','','','','',0,'2026-04-11','darshan'),(472,0,0,466,539,'2025-10-13',0,'','','','','','','','',0,'2025-12-12','darshan'),(473,0,0,477,552,'2025-10-13',0,'','','','','','','','',0,'2025-10-18','darshan'),(474,0,0,506,584,'2025-10-13',0,'','','','','','','','',0,'2025-12-12','darshan'),(475,0,0,461,534,'2025-10-13',0,'','','','','','','','',0,'2025-10-28','darshan'),(476,0,0,504,582,'2025-10-13',0,'','','','','','','','',0,'','darshan'),(477,0,0,443,512,'2025-10-13',0,'','','','','','','','',0,'','darshan'),(478,0,0,510,588,'2025-10-13',0,'','','','','','','','',0,'2025-11-12','darshan'),(479,0,0,518,596,'2025-10-13',0,'','','','','','','','',0,'2025-10-23','darshan'),(480,0,0,469,543,'2025-10-13',0,'','','','','','','','',0,'2025-10-28','darshan'),(481,0,0,449,521,'2025-10-13',0,'','','','','','','','',0,'2025-11-12','darshan'),(482,0,0,453,525,'2025-10-13',0,'','','','','','','','',0,'2025-10-28','darshan'),(483,0,0,507,585,'2025-10-13',0,'','','','','','','','',0,'2025-11-12','darshan'),(484,0,0,472,546,'2025-10-13',0,'','','','','','','','',0,'2025-11-12','darshan'),(485,0,0,513,591,'2025-10-13',0,'','','','','','','','',0,'2025-10-23','darshan'),(486,0,0,511,589,'2025-10-13',0,'','','','','','','','',0,'2025-10-28','darshan'),(487,0,0,523,603,'2025-10-13',0,'','','','','','','','',0,'2025-11-12','darshan'),(488,0,0,522,602,'2025-10-13',0,'','','','','','','','',0,'2025-11-12','darshan'),(489,0,0,524,604,'2025-10-13',0,'','','','','','','','',0,'2025-12-12','darshan'),(490,0,0,530,611,'2025-10-13',0,'','','','','','','','',0,'2025-12-12','darshan'),(491,0,0,531,612,'2025-10-13',0,'','','','','','','','',0,'2025-10-28','darshan'),(492,0,0,347,381,'2025-10-13',0,'','','','','','','','',0,'','darshan'),(493,0,0,526,607,'2025-10-13',0,'','','','','','','','',0,'2025-11-22','darshan'),(494,0,0,529,610,'2025-10-13',0,'','','','','','','','',0,'2025-12-12','darshan'),(495,0,0,100,613,'2025-10-13',0,'','','','','','','','',0,'','drjayant'),(496,0,0,537,620,'2025-10-13',0,'','','','','','','','',0,'','drjayant'),(497,0,0,534,616,'2025-10-13',0,'','','','','','','','',0,'2025-12-12','darshan'),(498,0,0,495,572,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(499,0,0,493,570,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(500,0,0,541,624,'2025-10-13',0,'','','','','','','','',0,'','drjayant'),(501,0,0,512,590,'2025-10-13',0,'','','','','','','','',0,'','drjayant'),(502,0,0,550,634,'2025-10-13',0,'','','','','','','','',0,'2025-12-12','drarchit'),(503,0,0,545,629,'2025-10-13',0,'','','','','','','','',0,'','drsagar'),(504,0,0,520,599,'2025-10-13',0,'','','','','','','','',0,'2025-11-03','darshan'),(505,0,0,554,639,'2025-10-13',0,'','','','','','','','',0,'','drjayant'),(506,0,0,137,643,'2025-10-13',0,'','','','','','','','',0,'','drsagar'),(507,0,0,547,631,'2025-10-13',0,'','','','','','','','',0,'2025-11-03','darshan'),(508,0,0,514,592,'2025-10-13',0,'','','','','','','','',0,'','drsagar'),(509,0,0,555,644,'2025-10-13',0,'','','','','','','','',0,'','drjayant'),(510,0,0,540,623,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(511,0,0,118,519,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(512,0,0,448,520,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(513,0,0,440,548,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(514,0,0,476,551,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(515,0,0,480,555,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(516,0,0,482,557,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(517,0,0,535,618,'2025-10-13',0,'','','','','','','','',0,'2026-01-12','drarchit'),(518,0,0,485,560,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(519,0,0,532,614,'2025-10-13',0,'','','','','','','','',0,'2026-01-12','darshan'),(520,0,0,406,562,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(521,0,0,499,577,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(522,0,0,519,597,'2025-10-13',0,'','','','','','','','',0,'','drsagar'),(523,0,0,502,580,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(524,0,0,114,642,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(525,0,0,551,635,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(526,0,0,538,621,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(527,0,0,525,606,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(528,0,0,539,622,'2025-10-13',0,'','','','','','','','',0,'2025-10-18','darshan'),(529,0,0,247,626,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(530,0,0,492,569,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(531,0,0,549,633,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(532,0,0,70,638,'2025-10-13',0,'','','','','','','','',0,'','drsagar'),(533,0,0,69,641,'2025-10-13',0,'','','','','','','','',0,'','drsagar'),(534,0,0,552,636,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(535,0,0,521,600,'2025-10-13',0,'','','','','','','','',0,'2025-10-28','darshan'),(536,0,0,533,615,'2025-10-13',0,'','','','','','','','',0,'2025-12-12','drarchit'),(537,0,0,134,640,'2025-10-13',0,'','','','','','','','',0,'2025-10-23','darshan'),(538,0,0,543,627,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(539,0,0,546,630,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(540,0,0,553,637,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(541,0,0,560,652,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(542,0,0,221,655,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(543,0,0,544,628,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(544,0,0,548,632,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(545,0,0,528,609,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(546,0,0,556,646,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(547,0,0,567,660,'2025-10-13',0,'','','','','','','','',0,'','drsagar'),(548,0,0,572,665,'2025-10-13',0,'','','','','','','','',0,'','drsagar'),(549,0,0,542,625,'2025-10-13',0,'','','','','','','','',0,'2025-10-18','darshan'),(550,0,0,563,656,'2025-10-13',0,'','','','','','','','',0,'2026-01-12','drarchit'),(551,0,0,573,666,'2025-10-13',0,'','','','','','','','',0,'','drsagar'),(552,0,0,561,653,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(553,0,0,527,608,'2025-10-13',0,'','','','','','','','',0,'2025-11-03','darshan'),(554,0,0,566,659,'2025-10-13',0,'','','','','','','','',0,'','drjayant'),(555,0,0,517,595,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(556,0,0,569,662,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(557,0,0,562,654,'2025-10-13',0,'','','','','','','','',0,'2025-10-28','darshan'),(558,0,0,564,657,'2025-10-13',0,'','','','','','','','',0,'2025-11-22','darshan'),(559,0,0,559,651,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(560,0,0,536,619,'2025-10-13',0,'','','','','','','','',0,'2025-11-12','darshan'),(561,0,0,571,664,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(562,0,0,452,524,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(563,0,0,568,661,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(564,0,0,558,650,'2025-10-13',0,'','','','','','','','',0,'2025-10-23','darshan'),(565,0,0,570,663,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(566,0,0,557,648,'2025-10-13',0,'','','','','','','','',0,'2025-11-03','darshan'),(567,0,0,574,667,'2025-10-13',0,'','','','','','','','',0,'','drarchit'),(568,0,0,575,669,'2025-10-13',0,'','','','','','','','',0,'','drpratapsi'),(569,0,0,565,658,'2025-10-13',0,'','','','','','','','',0,'2025-11-12','darshan'),(570,0,0,500,578,'2025-10-14',0,'','','','','','','','',0,'2025-12-12','thims'),(571,0,0,587,691,'2025-10-14',0,'','','','','','','','',0,'','drpratapsi'),(572,0,0,575,676,'2025-10-14',0,'','','','','','','','',0,'','drpratapsi'),(573,0,0,590,694,'2025-10-14',0,'','','','','','','','',0,'','drpratapsi'),(574,0,0,595,699,'2025-10-14',0,'','','','','','','','',0,'','drpratapsi'),(575,0,0,583,685,'2025-10-14',0,'','','','','','','','',0,'2025-11-25','darshan'),(576,0,0,586,689,'2025-10-14',0,'','','','','','','','',0,'2025-11-13','drarchit'),(577,0,0,579,679,'2025-10-14',0,'','','','','','','','',0,'','drsagar'),(578,0,0,589,693,'2025-10-14',0,'','','','','','','','',0,'2025-11-13','darshan'),(579,0,0,580,680,'2025-10-14',0,'','','','','','','','',0,'','drsagar'),(580,0,0,592,696,'2025-10-14',0,'','','','','','','','',0,'2025-11-13','darshan'),(581,0,0,601,708,'2025-10-14',0,'','','','','','','','',0,'2025-11-13','drarchit'),(582,0,0,165,702,'2025-10-14',0,'','','','','','','','',0,'','drpratapsi'),(583,0,0,603,710,'2025-10-14',0,'','','','','','','','',0,'','drsagar'),(584,0,0,605,712,'2025-10-14',0,'','','','','','','','',0,'2025-10-21','drarchit'),(585,0,0,588,692,'2025-10-14',0,'','','','','','','','',0,'2025-10-24','darshan'),(586,0,0,599,705,'2025-10-14',0,'','','','','','','','',0,'2025-11-25','darshan'),(587,0,0,600,707,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(588,0,0,594,698,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(589,0,0,591,695,'2025-10-14',0,'','','','','','','','',0,'2025-11-03','darshan'),(590,0,0,609,716,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(591,0,0,596,700,'2025-10-14',0,'','','','','','','','',0,'2025-11-03','darshan'),(592,0,0,612,719,'2025-10-14',0,'','','','','','','','',0,'','drsagar'),(593,0,0,606,713,'2025-10-14',0,'','','','','','','','',0,'2025-10-29','darshan'),(594,0,0,617,724,'2025-10-14',0,'','','','','','','','',0,'','drsagar'),(595,0,0,610,717,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(596,0,0,602,709,'2025-10-14',0,'','','','','','','','',0,'2025-11-13','darshan'),(597,0,0,608,715,'2025-10-14',0,'','','','','','','','',0,'','drsagar'),(598,0,0,171,706,'2025-10-14',0,'','','','','','','','',0,'2025-10-20','darshan'),(599,0,0,604,711,'2025-10-14',0,'','','','','','','','',0,'2025-10-24','darshan'),(600,0,0,614,721,'2025-10-14',0,'','','','','','','','',0,'2025-10-24','darshan'),(601,0,0,618,725,'2025-10-14',0,'','','','','','','','',0,'2025-10-21','drarchit'),(602,0,0,584,686,'2025-10-14',0,'','','','','','','','',0,'2025-10-24','darshan'),(603,0,0,620,727,'2025-10-14',0,'','','','','','','','',0,'2025-10-29','darshan'),(604,0,0,624,731,'2025-10-14',0,'','','','','','','','',0,'2026-01-12','darshan'),(605,0,0,625,732,'2025-10-14',0,'','','','','','','','',0,'2025-11-24','darshan'),(606,0,0,585,688,'2025-10-14',0,'','','','','','','','',0,'2025-10-29','darshan'),(607,0,0,593,697,'2025-10-14',0,'','','','','','','','',0,'2025-10-29','darshan'),(608,0,0,611,718,'2025-10-14',0,'','','','','','','','',0,'2025-11-24','darshan'),(609,0,0,632,740,'2025-10-14',0,'','','','','','','','',0,'2025-11-24','darshan'),(610,0,0,597,703,'2025-10-14',0,'','','','','','','','',0,'2025-10-29','darshan'),(611,0,0,628,735,'2025-10-14',0,'','','','','','','','',0,'2025-11-25','darshan'),(612,0,0,631,739,'2025-10-14',0,'','','','','','','','',0,'2026-01-22','darshan'),(613,0,0,613,720,'2025-10-14',0,'','','','','','','','',0,'2025-10-29','darshan'),(614,0,0,250,742,'2025-10-14',0,'','','','','','','','',0,'2025-11-13','darshan'),(615,0,0,629,736,'2025-10-14',0,'','','','','','','','',0,'','darshan'),(616,0,0,607,714,'2025-10-14',0,'','','','','','','','',0,'2025-10-29','darshan'),(617,0,0,635,745,'2025-10-14',0,'','','','','','','','',0,'','darshan'),(618,0,0,636,747,'2025-10-14',0,'','','','','','','','',0,'2026-01-12','darshan'),(619,0,0,641,752,'2025-10-14',0,'','','','','','','','',0,'2025-11-13','darshan'),(620,0,0,642,753,'2025-10-14',0,'','','','','','','','',0,'2025-10-24','darshan'),(621,0,0,654,766,'2025-10-14',0,'','','','','','','','',0,'','drsagar'),(622,0,0,634,744,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(623,0,0,644,755,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(624,0,0,633,741,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(625,0,0,630,738,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(626,0,0,622,729,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(627,0,0,627,734,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(628,0,0,615,722,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(629,0,0,582,682,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(630,0,0,645,756,'2025-10-14',0,'','','','','','','','',0,'','drsagar'),(631,0,0,647,758,'2025-10-14',0,'','','','','','','','',0,'2025-12-13','darshan'),(632,0,0,652,764,'2025-10-14',0,'','','','','','','','',0,'2025-11-03','darshan'),(633,0,0,621,728,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(634,0,0,640,751,'2025-10-14',0,'','','','','','','','',0,'2025-10-29','darshan'),(635,0,0,626,733,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(636,0,0,598,704,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(637,0,0,660,773,'2025-10-14',0,'','','','','','','','',0,'2025-11-03','darshan'),(638,0,0,663,777,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(639,0,0,662,776,'2025-10-14',0,'','','','','','','','',0,'2025-10-21','darshan'),(640,0,0,658,770,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(641,0,0,646,757,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(642,0,0,616,723,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(643,0,0,643,754,'2025-10-14',0,'','','','','','','','',0,'2026-01-12','darshan'),(644,0,0,577,677,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(645,0,0,649,761,'2025-10-14',0,'','','','','','','','',0,'2025-10-20','darshan'),(646,0,0,638,749,'2025-10-14',0,'','','','','','','','',0,'2025-11-13','darshan'),(647,0,0,673,788,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(648,0,0,671,785,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(649,0,0,666,780,'2025-10-14',0,'','','','','','','','',0,'2025-12-13','darshan'),(650,0,0,661,774,'2025-10-14',0,'','','','','','','','',0,'2026-01-22','darshan'),(651,0,0,668,782,'2025-10-14',0,'','','','','','','','',0,'2026-01-12','drarchit'),(652,0,0,676,791,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(653,0,0,669,783,'2025-10-14',0,'','','','','','','','',0,'2026-01-12','darshan'),(654,0,0,650,762,'2025-10-14',0,'','','','','','','','',0,'2025-12-13','darshan'),(655,0,0,674,789,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(656,0,0,648,759,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(657,0,0,675,790,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(658,0,0,639,750,'2025-10-14',0,'','','','','','','','',0,'2025-11-13','darshan'),(659,0,0,655,767,'2025-10-14',0,'','','','','','','','',0,'2025-11-03','darshan'),(660,0,0,682,798,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(661,0,0,681,797,'2025-10-14',0,'','','','','','','','',0,'','drarchit'),(662,0,0,657,769,'2025-10-14',0,'','','','','','','','',0,'2025-11-24','darshan'),(663,0,0,637,748,'2025-10-14',0,'','','','','','','','',0,'2025-11-13','darshan'),(664,0,0,665,779,'2025-10-14',0,'','','','','','','','',0,'2025-11-24','darshan'),(665,0,0,680,796,'2025-10-14',0,'','','','','','','','',0,'','drsagar'),(666,0,0,677,792,'2025-10-14',0,'','','','','','','','',0,'2025-11-13','darshan'),(667,0,0,679,795,'2025-10-14',0,'','','','','','','','',0,'2025-10-24','darshan'),(668,0,0,653,765,'2025-10-14',0,'','','','','','','','',0,'2025-11-03','darshan'),(669,0,0,693,815,'2025-10-15',0,'','','','','','','','',0,'','drpratapsi'),(670,0,0,702,826,'2025-10-15',0,'','','','','','','','',0,'','drsagar'),(671,0,0,686,805,'2025-10-15',0,'','','','','','','','',0,'2026-02-12','darshan'),(672,0,0,335,831,'2025-10-15',0,'','','','','','','','',0,'','drpratapsi'),(673,0,0,704,829,'2025-10-15',0,'','','','','','','','',0,'','drsagar'),(674,0,0,691,813,'2025-10-15',0,'','','','','','','','',0,'2025-12-15','darshan'),(675,0,0,687,806,'2025-10-15',0,'','','','','','','','',0,'2026-04-13','darshan'),(676,0,0,707,833,'2025-10-15',0,'','','','','','','','',0,'','drsagar'),(677,0,0,697,820,'2025-10-15',0,'','','','','','','','',0,'2025-12-15','darshan'),(678,0,0,16,822,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(679,0,0,708,834,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(680,0,0,685,804,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(681,0,0,276,810,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(682,0,0,181,812,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(683,0,0,698,821,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(684,0,0,26,827,'2025-10-15',0,'','','','','','','','',0,'','drridham'),(685,0,0,706,832,'2025-10-15',0,'','','','','','','','',0,'2025-11-24','darshan'),(686,0,0,79,819,'2025-10-15',0,'','','','','','','','',0,'2025-10-25','darshan'),(687,0,0,713,840,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(688,0,0,703,828,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(689,0,0,705,830,'2025-10-15',0,'','','','','','','','',0,'','drpratapsi'),(690,0,0,696,818,'2025-10-15',0,'','','','','','','','',0,'','drpratapsi'),(691,0,0,711,838,'2025-10-15',0,'','','','','','','','',0,'2025-11-04','darshan'),(692,0,0,695,817,'2025-10-15',0,'','','','','','','','',0,'','drpratapsi'),(693,0,0,47,845,'2025-10-15',0,'','','','','','','','',0,'','drpratapsi'),(694,0,0,701,825,'2025-10-15',0,'','','','','','','','',0,'2025-11-14','darshan'),(695,0,0,715,843,'2025-10-15',0,'','','','','','','','',0,'2025-11-24','darshan'),(696,0,0,714,842,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(697,0,0,423,835,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(698,0,0,712,839,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(699,0,0,689,808,'2025-10-15',0,'','','','','','','','',0,'2025-10-20','darshan'),(700,0,0,709,836,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(701,0,0,720,849,'2025-10-15',0,'','','','','','','','',0,'2025-11-14','darshan'),(702,0,0,718,847,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(703,0,0,717,846,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(704,0,0,719,848,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(705,0,0,710,837,'2025-10-15',0,'','','','','','','','',0,'2025-11-14','darshan'),(706,0,0,723,852,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(707,0,0,690,811,'2025-10-15',0,'','','','','','','','',0,'2025-11-04','darshan'),(708,0,0,724,854,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(709,0,0,728,859,'2025-10-15',0,'','','','','','','','',0,'2026-01-23','darshan'),(710,0,0,721,850,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(711,0,0,692,814,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(712,0,0,722,851,'2025-10-15',0,'','','','','','','','',0,'2025-12-15','darshan'),(713,0,0,730,861,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(714,0,0,725,855,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(715,0,0,727,858,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(716,0,0,700,824,'2025-10-15',0,'','','','','','','','',0,'2025-11-04','darshan'),(717,0,0,407,857,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(718,0,0,733,864,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(719,0,0,716,844,'2025-10-15',0,'','','','','','','','',0,'2025-11-14','darshan'),(720,0,0,734,865,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(721,0,0,735,866,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(722,0,0,732,863,'2025-10-15',0,'','','','','','','','',0,'2025-11-24','darshan'),(723,0,0,726,856,'2025-10-15',0,'','','','','','','','',0,'2025-11-04','darshan'),(724,0,0,736,867,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(725,0,0,739,872,'2025-10-15',0,'','','','','','','','',0,'','drridham'),(726,0,0,740,873,'2025-10-15',0,'','','','','','','','',0,'','drridham'),(727,0,0,738,870,'2025-10-15',0,'','','','','','','','',0,'2025-10-25','darshan'),(728,0,0,699,823,'2025-10-15',0,'','','','','','','','',0,'2025-10-30','darshan'),(729,0,0,743,876,'2025-10-15',0,'','','','','','','','',0,'2026-01-23','darshan'),(730,0,0,746,879,'2025-10-15',0,'','','','','','','','',0,'2025-11-14','darshan'),(731,0,0,748,881,'2025-10-15',0,'','','','','','','','',0,'2025-11-24','darshan'),(732,0,0,744,877,'2025-10-15',0,'','','','','','','','',0,'','darshan'),(733,0,0,745,878,'2025-10-15',0,'','','','','','','','',0,'','darshan'),(734,0,0,742,875,'2025-10-15',0,'','','','','','','','',0,'2025-11-04','darshan'),(735,0,0,752,887,'2025-10-15',0,'','','','','','','','',0,'','drjayant'),(736,0,0,749,883,'2025-10-15',0,'','','','','','','','',0,'2025-10-20','darshan'),(737,0,0,750,885,'2025-10-15',0,'','','','','','','','',0,'2025-11-24','darshan'),(738,0,0,753,888,'2025-10-15',0,'','','','','','','','',0,'','drjayant'),(739,0,0,754,889,'2025-10-15',0,'','','','','','','','',0,'','drjayant'),(740,0,0,751,886,'2025-10-15',0,'','','','','','','','',0,'2025-11-24','darshan'),(741,0,0,245,891,'2025-10-15',0,'','','','','','','','',0,'','drjayant'),(742,0,0,737,869,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(743,0,0,758,894,'2025-10-15',0,'','','','','','','','',0,'2025-11-24','darshan'),(744,0,0,757,893,'2025-10-15',0,'','','','','','','','',0,'','drjayant'),(745,0,0,9,899,'2025-10-15',0,'','','','','','','','',0,'','drjayant'),(746,0,0,759,896,'2025-10-15',0,'','','','','','','','',0,'','drsagar'),(747,0,0,688,807,'2025-10-15',0,'','','','','','','','',0,'','drjayant'),(748,0,0,760,897,'2025-10-15',0,'','','','','','','','',0,'2025-11-29','darshan'),(749,0,0,528,895,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(750,0,0,694,816,'2025-10-15',0,'','','','','','','','',0,'','drsagar'),(751,0,0,729,860,'2025-10-15',0,'','','','','','','','',0,'','drsagar'),(752,0,0,762,902,'2025-10-15',0,'','','','','','','','',0,'2025-11-24','darshan'),(753,0,0,293,898,'2025-10-15',0,'','','','','','','','',0,'','drarchit'),(754,0,0,747,880,'2025-10-15',0,'','','','','','','','',0,'2025-10-30','darshan'),(755,0,0,767,908,'2025-10-15',0,'','','','','','','','',0,'','drjayant'),(756,0,0,741,874,'2025-10-15',0,'','','','','','','','',0,'2025-11-14','darshan'),(757,0,0,764,904,'2025-10-15',0,'','','','','','','','',0,'2026-01-13','darshan'),(758,0,0,772,913,'2025-10-15',0,'','','','','','','','',0,'','drsagar'),(759,0,0,775,917,'2025-10-15',0,'','','','','','','','',0,'','drjayant'),(760,0,0,755,890,'2025-10-15',0,'','','','','','','','',0,'2025-11-14','darshan'),(761,0,0,242,919,'2025-10-15',0,'','','','','','','','',0,'','drjayant'),(762,0,0,776,918,'2025-10-15',0,'','','','','','','','',0,'2025-11-14','darshan'),(763,0,0,766,907,'2025-10-15',0,'','','','','','','','',0,'2025-11-24','darshan'),(764,0,0,769,910,'2025-10-15',0,'','','','','','','','',0,'','drjayant'),(765,0,0,770,911,'2025-10-15',0,'','','','','','','','',0,'','drjayant'),(766,0,0,765,906,'2025-10-15',0,'','','','','','','','',0,'2025-11-04','darshan'),(767,0,0,777,920,'2025-10-15',0,'','','','','','','','',0,'','darshan'),(768,0,0,774,916,'2025-10-15',0,'','','','','','','','',0,'2025-11-04','darshan'),(769,0,0,786,930,'2025-10-15',0,'','','','','','','','',0,'','drpratapsi'),(770,0,0,779,923,'2025-10-15',0,'','','','','','','','',0,'2025-11-04','darshan'),(771,0,0,784,928,'2025-10-15',0,'','','','','','','','',0,'2025-11-29','darshan'),(772,0,0,798,948,'2025-10-16',0,'','','','','','','','',0,'2025-11-25','darshan'),(773,0,0,805,956,'2025-10-16',0,'','','','','','','','',0,'','drpratapsi'),(774,0,0,793,943,'2025-10-16',0,'','','','','','','','',0,'2025-11-27','darshan'),(775,0,0,797,947,'2025-10-16',0,'','','','','','','','',0,'','drjayant'),(776,0,0,809,960,'2025-10-16',0,'','','','','','','','',0,'','drpratapsi'),(777,0,0,217,964,'2025-10-16',0,'','','','','','','','',0,'','drpratapsi'),(778,0,0,811,962,'2025-10-16',0,'','','','','','','','',0,'','drjayant'),(779,0,0,807,958,'2025-10-16',0,'','','','','','','','',0,'2026-01-14','drarchit'),(780,0,0,803,954,'2025-10-16',0,'','','','','','','','',0,'2025-11-25','darshan'),(781,0,0,804,955,'2025-10-16',0,'','','','','','','','',0,'2026-01-24','darshan'),(782,0,0,816,968,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(783,0,0,815,967,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(784,0,0,791,940,'2025-10-16',0,'','','','','','','','',0,'2025-11-15','darshan'),(785,0,0,790,938,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(786,0,0,761,937,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(787,0,0,276,941,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(788,0,0,792,942,'2025-10-16',0,'','','','','','','','',0,'2025-11-25','darshan'),(789,0,0,818,971,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(790,0,0,824,978,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(791,0,0,391,952,'2025-10-16',0,'','','','','','','','',0,'2025-10-27','darshan'),(792,0,0,821,975,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(793,0,0,820,973,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(794,0,0,114,974,'2025-10-16',0,'','','','','','','','',0,'','drpratapsi'),(795,0,0,430,969,'2025-10-16',0,'','','','','','','','',0,'','drpratapsi'),(796,0,0,801,951,'2025-10-16',0,'','','','','','','','',0,'2025-12-15','darshan'),(797,0,0,835,989,'2025-10-16',0,'','','','','','','','',0,'','drjayant'),(798,0,0,795,945,'2025-10-16',0,'','','','','','','','',0,'2025-11-27','darshan'),(799,0,0,799,949,'2025-10-16',0,'','','','','','','','',0,'2025-11-15','darshan'),(800,0,0,826,980,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(801,0,0,831,985,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(802,0,0,828,982,'2025-10-16',0,'','','','','','','','',0,'2025-10-31','darshan'),(803,0,0,823,977,'2025-10-16',0,'','','','','','','','',0,'2025-12-15','darshan'),(804,0,0,833,987,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(805,0,0,800,950,'2025-10-16',0,'','','','','','','','',0,'2025-10-31','darshan'),(806,0,0,834,988,'2025-10-16',0,'','','','','','','','',0,'','drpratapsi'),(807,0,0,845,999,'2025-10-16',0,'','','','','','','','',0,'','drpratapsi'),(808,0,0,839,993,'2025-10-16',0,'','','','','','','','',0,'','drsagar'),(809,0,0,836,990,'2025-10-16',0,'','','','','','','','',0,'','drsagar'),(810,0,0,841,995,'2025-10-16',0,'','','','','','','','',0,'','drsagar'),(811,0,0,846,1000,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(812,0,0,166,1001,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(813,0,0,844,998,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(814,0,0,806,957,'2025-10-16',0,'','','','','','','','',0,'2026-01-14','darshan'),(815,0,0,840,994,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(816,0,0,810,961,'2025-10-16',0,'','','','','','','','',0,'2025-11-25','darshan'),(817,0,0,812,963,'2025-10-16',0,'','','','','','','','',0,'2025-11-15','darshan'),(818,0,0,794,944,'2025-10-16',0,'','','','','','','','',0,'2025-11-15','darshan'),(819,0,0,817,970,'2025-10-16',0,'','','','','','','','',0,'2025-10-31','darshan'),(820,0,0,827,981,'2025-10-16',0,'','','','','','','','',0,'2025-10-27','darshan'),(821,0,0,822,976,'2025-10-16',0,'','','','','','','','',0,'2025-11-25','darshan'),(822,0,0,796,946,'2025-10-16',0,'','','','','','','','',0,'2025-11-15','darshan'),(823,0,0,829,983,'2025-10-16',0,'','','','','','','','',0,'2025-11-05','darshan'),(824,0,0,830,984,'2025-10-16',0,'','','','','','','','',0,'2025-11-27','darshan'),(825,0,0,832,986,'2025-10-16',0,'','','','','','','','',0,'2025-11-15','darshan'),(826,0,0,813,965,'2025-10-16',0,'','','','','','','','',0,'2025-11-15','darshan'),(827,0,0,848,1005,'2025-10-16',0,'','','','','','','','',0,'2025-11-15','darshan'),(828,0,0,843,997,'2025-10-16',0,'','','','','','','','',0,'2025-10-27','darshan'),(829,0,0,842,996,'2025-10-16',0,'','','','','','','','',0,'2025-11-15','darshan'),(830,0,0,838,992,'2025-10-16',0,'','','','','','','','',0,'2025-11-05','darshan'),(831,0,0,802,953,'2025-10-16',0,'','','','','','','','',0,'2025-11-15','darshan'),(832,0,0,850,1007,'2025-10-16',0,'','','','','','','','',0,'2025-11-15','darshan'),(833,0,0,852,1009,'2025-10-16',0,'','','','','','','','',0,'2025-12-15','darshan'),(834,0,0,855,1012,'2025-10-16',0,'','','','','','','','',0,'2025-11-25','darshan'),(835,0,0,856,1013,'2025-10-16',0,'','','','','','','','',0,'2025-11-25','darshan'),(836,0,0,863,1021,'2025-10-16',0,'','','','','','','','',0,'2025-10-31','darshan'),(837,0,0,859,1016,'2025-10-16',0,'','','','','','','','',0,'','drsagar'),(838,0,0,854,1011,'2025-10-16',0,'','','','','','','','',0,'2025-11-05','darshan'),(839,0,0,871,1030,'2025-10-16',0,'','','','','','','','',0,'2025-11-25','darshan'),(840,0,0,837,991,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(841,0,0,808,959,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(842,0,0,814,966,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(843,0,0,819,972,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(844,0,0,873,1032,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(845,0,0,861,1018,'2025-10-16',0,'','','','','','','','',0,'','drjayant'),(846,0,0,860,1017,'2025-10-16',0,'','','','','','','','',0,'2025-12-15','darshan'),(847,0,0,868,1027,'2025-10-16',0,'','','','','','','','',0,'','drjayant'),(848,0,0,870,1029,'2025-10-16',0,'','','','','','','','',0,'','drjayant'),(849,0,0,877,1036,'2025-10-16',0,'','','','','','','','',0,'','drjayant'),(850,0,0,882,1044,'2025-10-16',0,'','','','','','','','',0,'','drjayant'),(851,0,0,881,1043,'2025-10-16',0,'','','','','','','','',0,'','drsagar'),(852,0,0,777,920,'2025-10-16',0,'','','','','','','','',0,'','darshan'),(853,0,0,862,1019,'2025-10-16',0,'','','','','','','','',0,'','darshan'),(854,0,0,360,1040,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(855,0,0,864,1022,'2025-10-16',0,'','','','','','','','',0,'2025-10-27','darshan'),(856,0,0,887,1050,'2025-10-16',0,'','','','','','','','',0,'','drjayant'),(857,0,0,865,1023,'2025-10-16',0,'','','','','','','','',0,'2025-10-27','darshan'),(858,0,0,890,1055,'2025-10-16',0,'','','','','','','','',0,'','drjayant'),(859,0,0,867,1026,'2025-10-16',0,'','','','','','','','',0,'2025-11-15','darshan'),(860,0,0,869,1028,'2025-10-16',0,'','','','','','','','',0,'2025-10-27','darshan'),(861,0,0,888,1052,'2025-10-16',0,'','','','','','','','',0,'2025-12-15','darshan'),(862,0,0,891,1056,'2025-10-16',0,'','','','','','','','',0,'2025-11-15','darshan'),(863,0,0,857,1014,'2025-10-16',0,'','','','','','','','',0,'2025-10-31','darshan'),(864,0,0,41,1051,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(865,0,0,858,1015,'2025-10-16',0,'','','','','','','','',0,'2025-11-05','darshan'),(866,0,0,872,1031,'2025-10-16',0,'','','','','','','','',0,'2025-11-05','darshan'),(867,0,0,876,1035,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(868,0,0,893,1059,'2025-10-16',0,'','','','','','','','',0,'2026-01-14','drarchit'),(869,0,0,880,1039,'2025-10-16',0,'','','','','','','','',0,'2025-10-27','darshan'),(870,0,0,894,1060,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(871,0,0,883,1045,'2025-10-16',0,'','','','','','','','',0,'2025-12-15','darshan'),(872,0,0,875,1034,'2025-10-16',0,'','','','','','','','',0,'2025-10-31','darshan'),(873,0,0,884,1046,'2025-10-16',0,'','','','','','','','',0,'2025-12-01','darshan'),(874,0,0,885,1047,'2025-10-16',0,'','','','','','','','',0,'2025-11-15','darshan'),(875,0,0,244,1062,'2025-10-16',0,'','','','','','','','',0,'','drarchit'),(876,0,0,889,1053,'2025-10-16',0,'','','','','','','','',0,'2026-01-24','darshan'),(877,0,0,895,1061,'2025-10-16',0,'','','','','','','','',0,'2025-11-27','darshan'),(878,0,0,899,1068,'2025-10-16',0,'','','','','','','','',0,'','darshan'),(879,0,0,909,1082,'2025-10-17',0,'','','','','','','','',0,'2026-02-14','darshan'),(880,0,0,207,1084,'2025-10-17',0,'','','','','','','','',0,'2025-11-06','darshan'),(881,0,0,921,1097,'2025-10-17',0,'','','','','','','','',0,'2025-10-27','darshan'),(882,0,0,923,1099,'2025-10-17',0,'','','','','','','','',0,'','drsagar'),(883,0,0,901,1073,'2025-10-17',0,'','','','','','','','',0,'','drsagar'),(884,0,0,922,1098,'2025-10-17',0,'','','','','','','','',0,'2025-10-27','darshan'),(885,0,0,354,1087,'2025-10-17',0,'','','','','','','','',0,'','drsagar'),(886,0,0,906,1079,'2025-10-17',0,'','','','','','','','',0,'','drpratapsi'),(887,0,0,903,1076,'2025-10-17',0,'','','','','','','','',0,'','drpratapsi'),(888,0,0,926,1102,'2025-10-17',0,'','','','','','','','',0,'2025-12-16','darshan'),(889,0,0,910,1083,'2025-10-17',0,'','','','','','','','',0,'','drpratapsi'),(890,0,0,930,1107,'2025-10-17',0,'','','','','','','','',0,'','drjayant'),(891,0,0,480,1091,'2025-10-17',0,'','','','','','','','',0,'','drpratapsi'),(892,0,0,912,1086,'2025-10-17',0,'','','','','','','','',0,'2025-12-16','darshan'),(893,0,0,463,1106,'2025-10-17',0,'','','','','','','','',0,'','drpratapsi'),(894,0,0,917,1093,'2025-10-17',0,'','','','','','','','',0,'2025-11-17','darshan'),(895,0,0,941,1119,'2025-10-17',0,'','','','','','','','',0,'','drsagar'),(896,0,0,908,1081,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(897,0,0,927,1103,'2025-10-17',0,'','','','','','','','',0,'2025-12-16','darshan'),(898,0,0,907,1080,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(899,0,0,905,1078,'2025-10-17',0,'','','','','','','','',0,'2026-01-15','drarchit'),(900,0,0,932,1110,'2025-10-17',0,'','','','','','','','',0,'','darshan'),(901,0,0,920,1096,'2025-10-17',0,'','','','','','','','',0,'','drjayant'),(902,0,0,918,1094,'2025-10-17',0,'','','','','','','','',0,'2025-12-16','darshan'),(903,0,0,939,1117,'2025-10-17',0,'','','','','','','','',0,'2025-12-16','darshan'),(904,0,0,43,1109,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(905,0,0,931,1108,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(906,0,0,904,1077,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(907,0,0,166,1074,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(908,0,0,481,1127,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(909,0,0,944,1122,'2025-10-17',0,'','','','','','','','',0,'','drpratapsi'),(910,0,0,940,1118,'2025-10-17',0,'','','','','','','','',0,'2025-12-16','darshan'),(911,0,0,579,1124,'2025-10-17',0,'','','','','','','','',0,'','drsagar'),(912,0,0,934,1112,'2025-10-17',0,'','','','','','','','',0,'2026-01-15','darshan'),(913,0,0,580,1125,'2025-10-17',0,'','','','','','','','',0,'','drsagar'),(914,0,0,887,1128,'2025-10-17',0,'','','','','','','','',0,'','drjayant'),(915,0,0,946,1126,'2025-10-17',0,'','','','','','','','',0,'','drjayant'),(916,0,0,948,1130,'2025-10-17',0,'','','','','','','','',0,'','drjayant'),(917,0,0,370,1135,'2025-10-17',0,'','','','','','','','',0,'','drpratapsi'),(918,0,0,899,1068,'2025-10-17',0,'','','','','','','','',0,'','darshan'),(919,0,0,259,1134,'2025-10-17',0,'','','','','','','','',0,'','drpratapsi'),(920,0,0,560,1141,'2025-10-17',0,'','','','','','','','',0,'','drpratapsi'),(921,0,0,942,1120,'2025-10-17',0,'','','','','','','','',0,'','drpratapsi'),(922,0,0,925,1101,'2025-10-17',0,'','','','','','','','',0,'2025-11-06','darshan'),(923,0,0,913,1088,'2025-10-17',0,'','','','','','','','',0,'2025-11-01','darshan'),(924,0,0,950,1132,'2025-10-17',0,'','','','','','','','',0,'2025-11-26','darshan'),(925,0,0,928,1104,'2025-10-17',0,'','','','','','','','',0,'2025-11-28','darshan'),(926,0,0,929,1105,'2025-10-17',0,'','','','','','','','',0,'2025-12-16','darshan'),(927,0,0,935,1113,'2025-10-17',0,'','','','','','','','',0,'2025-11-01','darshan'),(928,0,0,911,1085,'2025-10-17',0,'','','','','','','','',0,'2025-11-01','darshan'),(929,0,0,919,1095,'2025-10-17',0,'','','','','','','','',0,'2025-11-01','darshan'),(930,0,0,937,1115,'2025-10-17',0,'','','','','','','','',0,'2025-12-16','darshan'),(931,0,0,943,1121,'2025-10-17',0,'','','','','','','','',0,'2025-11-17','darshan'),(932,0,0,947,1129,'2025-10-17',0,'','','','','','','','',0,'2025-11-17','darshan'),(933,0,0,945,1123,'2025-10-17',0,'','','','','','','','',0,'','darshan'),(934,0,0,924,1100,'2025-10-17',0,'','','','','','','','',0,'2025-11-17','darshan'),(935,0,0,949,1131,'2025-10-17',0,'','','','','','','','',0,'2025-11-26','darshan'),(936,0,0,953,1137,'2025-10-17',0,'','','','','','','','',0,'2025-12-16','darshan'),(937,0,0,956,1146,'2025-10-17',0,'','','','','','','','',0,'2025-11-17','darshan'),(938,0,0,952,1136,'2025-10-17',0,'','','','','','','','',0,'2025-11-17','darshan'),(939,0,0,277,1139,'2025-10-17',0,'','','','','','','','',0,'2025-10-27','darshan'),(940,0,0,958,1149,'2025-10-17',0,'','','','','','','','',0,'','darshan'),(941,0,0,959,1150,'2025-10-17',0,'','','','','','','','',0,'','darshan'),(942,0,0,960,1151,'2025-10-17',0,'','','','','','','','',0,'','darshan'),(943,0,0,963,1154,'2025-10-17',0,'','','','','','','','',0,'','darshan'),(944,0,0,966,1157,'2025-10-17',0,'','','','','','','','',0,'','darshan'),(945,0,0,967,1158,'2025-10-17',0,'','','','','','','','',0,'2025-11-01','darshan'),(946,0,0,964,1155,'2025-10-17',0,'','','','','','','','',0,'2025-11-17','darshan'),(947,0,0,969,1162,'2025-10-17',0,'','','','','','','','',0,'','drridham'),(948,0,0,971,1165,'2025-10-17',0,'','','','','','','','',0,'2025-11-26','darshan'),(949,0,0,965,1156,'2025-10-17',0,'','','','','','','','',0,'2025-11-17','darshan'),(950,0,0,977,1172,'2025-10-17',0,'','','','','','','','',0,'','drjayant'),(951,0,0,981,1177,'2025-10-17',0,'','','','','','','','',0,'','drjayant'),(952,0,0,987,1183,'2025-10-17',0,'','','','','','','','',0,'','drsagar'),(953,0,0,972,1166,'2025-10-17',0,'','','','','','','','',0,'2025-12-16','darshan'),(954,0,0,955,1142,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(955,0,0,902,1075,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(956,0,0,916,1092,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(957,0,0,933,1111,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(958,0,0,936,1114,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(959,0,0,938,1116,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(960,0,0,441,1188,'2025-10-17',0,'','','','','','','','',0,'','drridham'),(961,0,0,957,1148,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(962,0,0,951,1133,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(963,0,0,954,1138,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(964,0,0,713,1145,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(965,0,0,976,1171,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(966,0,0,961,1152,'2025-10-17',0,'','','','','','','','',0,'2025-11-17','darshan'),(967,0,0,878,1192,'2025-10-17',0,'','','','','','','','',0,'','drridham'),(968,0,0,974,1169,'2025-10-17',0,'','','','','','','','',0,'2026-02-14','darshan'),(969,0,0,991,1190,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(970,0,0,986,1182,'2025-10-17',0,'','','','','','','','',0,'2026-01-15','drarchit'),(971,0,0,979,1174,'2025-10-17',0,'','','','','','','','',0,'2025-12-01','darshan'),(972,0,0,201,1187,'2025-10-17',0,'','','','','','','','',0,'2025-11-28','darshan'),(973,0,0,993,1193,'2025-10-17',0,'','','','','','','','',0,'','drridham'),(974,0,0,984,1180,'2025-10-17',0,'','','','','','','','',0,'2025-10-24','darshan'),(975,0,0,998,1200,'2025-10-17',0,'','','','','','','','',0,'','drjayant'),(976,0,0,988,1184,'2025-10-17',0,'','','','','','','','',0,'2026-01-15','drarchit'),(977,0,0,995,1195,'2025-10-17',0,'','','','','','','','',0,'2025-11-17','darshan'),(978,0,0,999,1201,'2025-10-17',0,'','','','','','','','',0,'','drjayant'),(979,0,0,968,1160,'2025-10-17',0,'','','','','','','','',0,'2025-11-01','darshan'),(980,0,0,978,1173,'2025-10-17',0,'','','','','','','','',0,'2025-11-01','darshan'),(981,0,0,997,1198,'2025-10-17',0,'','','','','','','','',0,'','darshan'),(982,0,0,992,1191,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(983,0,0,862,1019,'2025-10-17',0,'','','','','','','','',0,'','darshan'),(984,0,0,1000,1204,'2025-10-17',0,'','','','','','','','',0,'2025-12-16','darshan'),(985,0,0,1001,1205,'2025-10-17',0,'','','','','','','','',0,'','drarchit'),(986,0,0,982,1178,'2025-10-17',0,'','','','','','','','',0,'2025-10-27','darshan'),(987,0,0,975,1170,'2025-10-17',0,'','','','','','','','',0,'2025-11-17','darshan'),(988,0,0,980,1175,'2025-10-17',0,'','','','','','','','',0,'2025-11-01','darshan'),(989,0,0,1003,1207,'2025-10-17',0,'','','','','','','','',0,'','drridham'),(990,0,0,994,1194,'2025-10-17',0,'','','','','','','','',0,'2025-11-06','darshan'),(991,0,0,985,1181,'2025-10-17',0,'','','','','','','','',0,'2025-10-27','darshan'),(992,0,0,990,1186,'2025-10-17',0,'','','','','','','','',0,'2025-12-01','darshan'),(993,0,0,996,1197,'2025-10-17',0,'','','','','','','','',0,'2025-11-06','darshan'),(994,0,0,1007,1212,'2025-10-17',0,'','','','','','','','',0,'2025-10-27','darshan'),(995,0,0,1006,1211,'2025-10-17',0,'','','','','','','','',0,'','drsagar'),(996,0,0,1011,1217,'2025-10-18',0,'','','','','','','','',0,'2025-11-17','darshan'),(997,0,0,1020,1230,'2025-10-18',0,'','','','','','','','',0,'','drsagar'),(998,0,0,1012,1218,'2025-10-18',0,'','','','','','','','',0,'2025-11-27','darshan'),(999,0,0,1019,1229,'2025-10-18',0,'','','','','','','','',0,'','drpratapsi'),(1000,0,0,514,1235,'2025-10-18',0,'','','','','','','','',0,'','drsagar'),(1001,0,0,1008,1214,'2025-10-18',0,'','','','','','','','',0,'','drridham'),(1002,0,0,1022,1232,'2025-10-18',0,'','','','','','','','',0,'2025-12-17','darshan'),(1003,0,0,1009,1215,'2025-10-18',0,'','','','','','','','',0,'','drjayant'),(1004,0,0,1010,1216,'2025-10-18',0,'','','','','','','','',0,'','drjayant'),(1005,0,0,1021,1231,'2025-10-18',0,'','','','','','','','',0,'2025-12-17','darshan'),(1006,0,0,1013,1219,'2025-10-18',0,'','','','','','','','',0,'2025-10-28','darshan'),(1007,0,0,1029,1241,'2025-10-18',0,'','','','','','','','',0,'','drpratapsi'),(1008,0,0,116,1242,'2025-10-18',0,'','','','','','','','',0,'','drpratapsi'),(1009,0,0,1014,1221,'2025-10-18',0,'','','','','','','','',0,'2025-11-07','darshan'),(1010,0,0,70,1246,'2025-10-18',0,'','','','','','','','',0,'','drsagar'),(1011,0,0,1033,1248,'2025-10-18',0,'','','','','','','','',0,'','drsagar'),(1012,0,0,1034,1249,'2025-10-18',0,'','','','','','','','',0,'','drjayant'),(1013,0,0,1031,1244,'2025-10-18',0,'','','','','','','','',0,'2025-11-17','darshan'),(1014,0,0,1043,1258,'2025-10-18',0,'','','','','','','','',0,'','drjayant'),(1015,0,0,1026,1238,'2025-10-18',0,'','','','','','','','',0,'2025-11-17','darshan'),(1016,0,0,1032,1247,'2025-10-18',0,'','','','','','','','',0,'2025-11-17','darshan'),(1017,0,0,1016,1223,'2025-10-18',0,'','','','','','','','',0,'2025-11-07','darshan'),(1018,0,0,1052,1269,'2025-10-18',0,'','','','','','','','',0,'','drjayant'),(1019,0,0,76,1236,'2025-10-18',0,'','','','','','','','',0,'2025-11-29','darshan'),(1020,0,0,1025,1237,'2025-10-18',0,'','','','','','','','',0,'2025-10-28','darshan'),(1021,0,0,1047,1262,'2025-10-18',0,'','','','','','','','',0,'','drsagar'),(1022,0,0,997,1198,'2025-10-18',0,'','','','','','','','',0,'','darshan'),(1023,0,0,1041,1256,'2025-10-18',0,'','','','','','','','',0,'2025-11-29','darshan'),(1024,0,0,1028,1240,'2025-10-18',0,'','','','','','','','',0,'2025-11-17','darshan'),(1025,0,0,1024,1234,'2025-10-18',0,'','','','','','','','',0,'2025-11-07','darshan'),(1026,0,0,1050,1265,'2025-10-18',0,'','','','','','','','',0,'2026-01-26','darshan'),(1027,0,0,1046,1261,'2025-10-18',0,'','','','','','','','',0,'2025-12-17','darshan'),(1028,0,0,1051,1268,'2025-10-18',0,'','','','','','','','',0,'2025-12-17','darshan'),(1029,0,0,1036,1251,'2025-10-18',0,'','','','','','','','',0,'2025-12-17','darshan'),(1030,0,0,1037,1252,'2025-10-18',0,'','','','','','','','',0,'2025-12-17','darshan'),(1031,0,0,1038,1253,'2025-10-18',0,'','','','','','','','',0,'2025-10-28','darshan'),(1032,0,0,1027,1239,'2025-10-18',0,'','','','','','','','',0,'2025-11-07','darshan'),(1033,0,0,1039,1254,'2025-10-18',0,'','','','','','','','',0,'2025-12-17','darshan'),(1034,0,0,1040,1255,'2025-10-18',0,'','','','','','','','',0,'2026-01-16','darshan'),(1035,0,0,1017,1225,'2025-10-18',0,'','','','','','','','',0,'2025-11-17','darshan'),(1036,0,0,1042,1257,'2025-10-18',0,'','','','','','','','',0,'2025-12-17','darshan'),(1037,0,0,1044,1259,'2025-10-18',0,'','','','','','','','',0,'2025-11-17','darshan'),(1038,0,0,1045,1260,'2025-10-18',0,'','','','','','','','',0,'2025-12-17','darshan'),(1039,0,0,1053,1270,'2025-10-18',0,'','','','','','','','',0,'2025-11-17','darshan'),(1040,0,0,1023,1233,'2025-10-18',0,'','','','','','','','',0,'2025-11-17','darshan'),(1041,0,0,1048,1263,'2025-10-18',0,'','','','','','','','',0,'2025-12-17','darshan'),(1042,0,0,1054,1271,'2025-10-18',0,'','','','','','','','',0,'2025-11-27','darshan'),(1043,0,0,1055,1272,'2025-10-18',0,'','','','','','','','',0,'2025-12-02','darshan'),(1044,0,0,1058,1277,'2025-10-18',0,'','','','','','','','',0,'2025-10-28','darshan'),(1045,0,0,1060,1280,'2025-10-18',0,'','','','','','','','',0,'','drsagar'),(1046,0,0,1057,1276,'2025-10-18',0,'','','','','','','','',0,'','drridham'),(1047,0,0,105,1283,'2025-10-18',0,'','','','','','','','',0,'','drsagar'),(1048,0,0,1065,1289,'2025-10-18',0,'','','','','','','','',0,'','drsagar'),(1049,0,0,1067,1297,'2025-10-23',0,'','','','','','','','',0,'','drpratapsi'),(1050,0,0,1004,1299,'2025-10-23',0,'','','','','','','','',0,'','drpratapsi'),(1051,0,0,431,1300,'2025-10-23',0,'','','','','','','','',0,'','drpratapsi'),(1052,0,0,1069,1302,'2025-10-23',0,'','','','','','','','',0,'','drpratapsi'),(1053,0,0,1099,1345,'2025-10-23',0,'','','','','','','','',0,'2026-01-21','darshan'),(1054,0,0,1096,1342,'2025-10-23',0,'','','','','','','','',0,'2025-11-22','darshan'),(1055,0,0,1098,1344,'2025-10-23',0,'','','','','','','','',0,'2025-11-03','darshan'),(1056,0,0,1097,1343,'2025-10-23',0,'','','','','','','','',0,'2025-11-12','darshan'),(1057,0,0,1101,1347,'2025-10-23',0,'','','','','','','','',0,'2025-11-22','darshan'),(1058,0,0,619,1370,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1059,0,0,1122,1375,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1060,0,0,1117,1368,'2025-10-24',0,'','','','','','','','',0,'2025-12-23','darshan'),(1061,0,0,1118,1371,'2025-10-24',0,'','','','','','','','',0,'2025-12-08','darshan'),(1062,0,0,1119,1372,'2025-10-24',0,'','','','','','','','',0,'2025-12-03','darshan'),(1063,0,0,1120,1373,'2025-10-24',0,'','','','','','','','',0,'2026-02-02','darshan'),(1064,0,0,1121,1374,'2025-10-24',0,'','','','','','','','',0,'','drjayant'),(1065,0,0,1123,1376,'2025-10-24',0,'','','','','','','','',0,'','drjayant'),(1066,0,0,1127,1381,'2025-10-24',0,'','','','','','','','',0,'','drjayant'),(1067,0,0,1116,1367,'2025-10-24',0,'','','','','','','','',0,'','drjayant'),(1068,0,0,1125,1378,'2025-10-24',0,'','','','','','','','',0,'','drsagar'),(1069,0,0,859,1379,'2025-10-24',0,'','','','','','','','',0,'','drsagar'),(1070,0,0,839,1391,'2025-10-24',0,'','','','','','','','',0,'','drsagar'),(1071,0,0,131,1389,'2025-10-24',0,'','','','','','','','',0,'','drjayant'),(1072,0,0,1128,1382,'2025-10-24',0,'','','','','','','','',0,'2025-12-23','darshan'),(1073,0,0,1132,1387,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1074,0,0,116,1388,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1075,0,0,1059,1390,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1076,0,0,1124,1377,'2025-10-24',0,'','','','','','','','',0,'','drjayant'),(1077,0,0,340,1384,'2025-10-24',0,'','','','','','','','',0,'2025-12-05','darshan'),(1078,0,0,1113,1364,'2025-10-24',0,'','','','','','','','',0,'','drjayant'),(1079,0,0,1131,1386,'2025-10-24',0,'','','','','','','','',0,'','drjayant'),(1080,0,0,1134,1393,'2025-10-24',0,'','','','','','','','',0,'','drjayant'),(1081,0,0,118,1397,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1082,0,0,1137,1396,'2025-10-24',0,'','','','','','','','',0,'2025-11-24','darshan'),(1083,0,0,1129,1383,'2025-10-24',0,'','','','','','','','',0,'2025-11-03','darshan'),(1084,0,0,1130,1385,'2025-10-24',0,'','','','','','','','',0,'2025-11-13','darshan'),(1085,0,0,1135,1394,'2025-10-24',0,'','','','','','','','',0,'2025-11-03','darshan'),(1086,0,0,424,1401,'2025-10-24',0,'','','','','','','','',0,'2025-11-08','darshan'),(1087,0,0,1136,1395,'2025-10-24',0,'','','','','','','','',0,'2025-11-03','darshan'),(1088,0,0,1141,1406,'2025-10-24',0,'','','','','','','','',0,'2025-11-03','darshan'),(1089,0,0,1144,1409,'2025-10-24',0,'','','','','','','','',0,'2025-12-08','darshan'),(1090,0,0,1143,1408,'2025-10-24',0,'','','','','','','','',0,'2025-11-24','darshan'),(1091,0,0,1142,1407,'2025-10-24',0,'','','','','','','','',0,'','drjayant'),(1092,0,0,1147,1416,'2025-10-24',0,'','','','','','','','',0,'2025-11-24','darshan'),(1093,0,0,1114,1365,'2025-10-24',0,'','','','','','','','',0,'','drjayant'),(1094,0,0,575,1411,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1095,0,0,1105,1410,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1096,0,0,1150,1419,'2025-10-24',0,'','','','','','','','',0,'','drjayant'),(1097,0,0,39,1412,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1098,0,0,305,1413,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1099,0,0,1133,1392,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1100,0,0,1145,1414,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1101,0,0,362,1423,'2025-10-24',0,'','','','','','','','',0,'2025-11-13','darshan'),(1102,0,0,1155,1428,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1103,0,0,1146,1415,'2025-10-24',0,'','','','','','','','',0,'2025-11-24','darshan'),(1104,0,0,270,1421,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1105,0,0,1157,1430,'2025-10-24',0,'','','','','','','','',0,'','drjayant'),(1106,0,0,1148,1417,'2025-10-24',0,'','','','','','','','',0,'','darshan'),(1107,0,0,1004,1404,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1108,0,0,1154,1427,'2025-10-24',0,'','','','','','','','',0,'2025-11-03','darshan'),(1109,0,0,1158,1431,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1110,0,0,1153,1426,'2025-10-24',0,'','','','','','','','',0,'2025-11-24','darshan'),(1111,0,0,983,1425,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1112,0,0,1161,1435,'2025-10-24',0,'','','','','','','','',0,'','drjayant'),(1113,0,0,1160,1433,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1114,0,0,1089,1420,'2025-10-24',0,'','','','','','','','',0,'2025-11-13','darshan'),(1115,0,0,1162,1436,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1116,0,0,1152,1424,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1117,0,0,1149,1418,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1118,0,0,1126,1380,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1119,0,0,1139,1400,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1120,0,0,1140,1402,'2025-10-24',0,'','','','','','','','',0,'','drpratapsi'),(1121,0,0,1167,1445,'2025-10-25',0,'','','','','','','','',0,'2025-12-24','darshan'),(1122,0,0,1170,1448,'2025-10-25',0,'','','','','','','','',0,'2025-11-24','darshan'),(1123,0,0,1171,1449,'2025-10-25',0,'','','','','','','','',0,'2025-11-04','darshan'),(1124,0,0,135,1440,'2025-10-25',0,'','','','','','','','',0,'','drjayant'),(1125,0,0,1174,1452,'2025-10-25',0,'','','','','','','','',0,'2025-12-24','darshan'),(1126,0,0,1178,1456,'2025-10-25',0,'','','','','','','','',0,'','drsagar'),(1127,0,0,1173,1451,'2025-10-25',0,'','','','','','','','',0,'2025-12-09','darshan'),(1128,0,0,1166,1444,'2025-10-25',0,'','','','','','','','',0,'','drsagar'),(1129,0,0,1181,1459,'2025-10-25',0,'','','','','','','','',0,'','drjayant'),(1130,0,0,1184,1462,'2025-10-25',0,'','','','','','','','',0,'','drjayant'),(1131,0,0,1177,1455,'2025-10-25',0,'','','','','','','','',0,'2025-12-24','darshan'),(1132,0,0,1182,1460,'2025-10-25',0,'','','','','','','','',0,'','drjayant'),(1133,0,0,1183,1461,'2025-10-25',0,'','','','','','','','',0,'2025-12-04','darshan'),(1134,0,0,1187,1465,'2025-10-25',0,'','','','','','','','',0,'','drjayant'),(1135,0,0,1180,1458,'2025-10-25',0,'','','','','','','','',0,'','drjayant'),(1136,0,0,1179,1457,'2025-10-25',0,'','','','','','','','',0,'2025-10-30','darshan'),(1137,0,0,1185,1463,'2025-10-25',0,'','','','','','','','',0,'2025-12-24','darshan'),(1138,0,0,1193,1471,'2025-10-25',0,'','','','','','','','',0,'','drjayant'),(1139,0,0,1188,1466,'2025-10-25',0,'','','','','','','','',0,'2025-11-24','darshan'),(1140,0,0,1191,1469,'2025-10-25',0,'','','','','','','','',0,'2025-11-04','darshan'),(1141,0,0,1195,1473,'2025-10-25',0,'','','','','','','','',0,'','drjayant'),(1142,0,0,1168,1446,'2025-10-25',0,'','','','','','','','',0,'2025-11-24','darshan'),(1143,0,0,1172,1450,'2025-10-25',0,'','','','','','','','',0,'','drsagar'),(1144,0,0,1192,1470,'2025-10-25',0,'','','','','','','','',0,'2025-10-30','darshan'),(1145,0,0,1176,1454,'2025-10-25',0,'','','','','','','','',0,'','drpratapsi'),(1146,0,0,1194,1472,'2025-10-25',0,'','','','','','','','',0,'2025-11-24','darshan'),(1147,0,0,560,1478,'2025-10-25',0,'','','','','','','','',0,'','drpratapsi'),(1148,0,0,1132,1477,'2025-10-25',0,'','','','','','','','',0,'','drpratapsi'),(1149,0,0,1197,1476,'2025-10-25',0,'','','','','','','','',0,'','drpratapsi'),(1150,0,0,1169,1447,'2025-10-25',0,'','','','','','','','',0,'2025-11-24','darshan'),(1151,0,0,1175,1453,'2025-10-25',0,'','','','','','','','',0,'2025-11-14','darshan'),(1152,0,0,1198,1480,'2025-10-25',0,'','','','','','','','',0,'','drjayant'),(1153,0,0,1186,1464,'2025-10-25',0,'','','','','','','','',0,'2025-11-14','darshan'),(1154,0,0,1196,1475,'2025-10-25',0,'','','','','','','','',0,'2025-12-09','darshan'),(1155,0,0,216,1479,'2025-10-25',0,'','','','','','','','',0,'2025-12-24','darshan'),(1156,0,0,1190,1468,'2025-10-25',0,'','','','','','','','',0,'2025-11-14','darshan'),(1157,0,0,1199,1481,'2025-10-25',0,'','','','','','','','',0,'2025-11-04','darshan'),(1158,0,0,1189,1467,'2025-10-25',0,'','','','','','','','',0,'2025-11-14','darshan'),(1159,0,0,1202,1484,'2025-10-25',0,'','','','','','','','',0,'','darshan'),(1160,0,0,1207,1491,'2025-10-25',0,'','','','','','','','',0,'','drsagar'),(1161,0,0,1209,1493,'2025-10-25',0,'','','','','','','','',0,'','drsagar'),(1162,0,0,1033,1474,'2025-10-25',0,'','','','','','','','',0,'','drsagar'),(1163,0,0,1208,1492,'2025-10-25',0,'','','','','','','','',0,'','drsagar'),(1164,0,0,1204,1487,'2025-10-25',0,'','','','','','','','',0,'','drpratapsi'),(1165,0,0,1205,1489,'2025-10-25',0,'','','','','','','','',0,'','drpratapsi'),(1166,0,0,111,1488,'2025-10-25',0,'','','','','','','','',0,'','drpratapsi'),(1167,0,0,117,1494,'2025-10-25',0,'','','','','','','','',0,'','drpratapsi'),(1168,0,0,1210,1495,'2025-10-25',0,'','','','','','','','',0,'','drpratapsi'),(1169,0,0,1201,1483,'2025-10-25',0,'','','','','','','','',0,'','drpratapsi'),(1170,0,0,1102,1502,'2025-10-25',0,'','','','','','','','',0,'','drsagar'),(1171,0,0,1019,1498,'2025-10-25',0,'','','','','','','','',0,'','drpratapsi'),(1172,0,0,1212,1499,'2025-10-25',0,'','','','','','','','',0,'','drpratapsi'),(1173,0,0,1049,1500,'2025-10-25',0,'','','','','','','','',0,'','drpratapsi'),(1174,0,0,1206,1490,'2025-10-25',0,'','','','','','','','',0,'','drpratapsi'),(1175,0,0,1203,1486,'2025-10-25',0,'','','','','','','','',0,'','drpratapsi'),(1176,0,0,879,1485,'2025-10-25',0,'','','','','','','','',0,'','drpratapsi'),(1177,0,0,1200,1482,'2025-10-25',0,'','','','','','','','',0,'','drpratapsi'),(1178,0,0,1214,1508,'2025-10-27',0,'','','','','','','','',0,'2025-11-03','drarchit'),(1179,0,0,1227,1525,'2025-10-27',0,'','','','','','','','',0,'','drpratapsi'),(1180,0,0,1222,1518,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1181,0,0,1236,1537,'2025-10-27',0,'','','','','','','','',0,'','drjayant'),(1182,0,0,865,1531,'2025-10-27',0,'','','','','','','','',0,'2025-11-06','darshan'),(1183,0,0,1226,1524,'2025-10-27',0,'','','','','','','','',0,'2025-12-26','darshan'),(1184,0,0,1221,1517,'2025-10-27',0,'','','','','','','','',0,'','darshan'),(1185,0,0,1224,1521,'2025-10-27',0,'','','','','','','','',0,'','drsagar'),(1186,0,0,1234,1534,'2025-10-27',0,'','','','','','','','',0,'2025-11-17','darshan'),(1187,0,0,645,1526,'2025-10-27',0,'','','','','','','','',0,'','drsagar'),(1188,0,0,923,1542,'2025-10-27',0,'','','','','','','','',0,'','drsagar'),(1189,0,0,432,1552,'2025-10-27',0,'','','','','','','','',0,'','drpratapsi'),(1190,0,0,1235,1535,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1191,0,0,1251,1559,'2025-10-27',0,'','','','','','','','',0,'','drpratapsi'),(1192,0,0,1245,1547,'2025-10-27',0,'','','','','','','','',0,'','darshan'),(1193,0,0,178,1549,'2025-10-27',0,'','','','','','','','',0,'','drsagar'),(1194,0,0,1218,1513,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1195,0,0,1225,1522,'2025-10-27',0,'','','','','','','','',0,'','drridham'),(1196,0,0,1232,1532,'2025-10-27',0,'','','','','','','','',0,'','drridham'),(1197,0,0,1219,1514,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1198,0,0,1216,1511,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1199,0,0,1088,1557,'2025-10-27',0,'','','','','','','','',0,'','drsagar'),(1200,0,0,1246,1548,'2025-10-27',0,'','','','','','','','',0,'','drjayant'),(1201,0,0,486,1562,'2025-10-27',0,'','','','','','','','',0,'','drsagar'),(1202,0,0,1250,1556,'2025-10-27',0,'','','','','','','','',0,'2026-01-26','darshan'),(1203,0,0,1220,1515,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1204,0,0,1254,1564,'2025-10-27',0,'','','','','','','','',0,'','drsagar'),(1205,0,0,881,1573,'2025-10-27',0,'','','','','','','','',0,'','drsagar'),(1206,0,0,1229,1528,'2025-10-27',0,'','','','','','','','',0,'2025-11-17','darshan'),(1207,0,0,1238,1539,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1208,0,0,1257,1568,'2025-10-27',0,'','','','','','','','',0,'2025-12-06','darshan'),(1209,0,0,1261,1576,'2025-10-27',0,'','','','','','','','',0,'','drjayant'),(1210,0,0,1243,1545,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1211,0,0,1263,1578,'2025-10-27',0,'','','','','','','','',0,'','drsagar'),(1212,0,0,1259,1571,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1213,0,0,1241,1543,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1214,0,0,721,1558,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1215,0,0,1258,1570,'2025-10-27',0,'','','','','','','','',0,'2025-11-26','darshan'),(1216,0,0,644,1516,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1217,0,0,1237,1538,'2025-10-27',0,'','','','','','','','',0,'2025-11-26','darshan'),(1218,0,0,489,1575,'2025-10-27',0,'','','','','','','','',0,'','drridham'),(1219,0,0,422,1585,'2025-10-27',0,'','','','','','','','',0,'','drridham'),(1220,0,0,709,1550,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1221,0,0,1244,1546,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1222,0,0,580,1589,'2025-10-27',0,'','','','','','','','',0,'','drsagar'),(1223,0,0,1242,1544,'2025-10-27',0,'','','','','','','','',0,'2025-11-01','darshan'),(1224,0,0,21,1569,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1225,0,0,1256,1567,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1226,0,0,1268,1584,'2025-10-27',0,'','','','','','','','',0,'','drpratapsi'),(1227,0,0,430,1588,'2025-10-27',0,'','','','','','','','',0,'','drpratapsi'),(1228,0,0,1152,1523,'2025-10-27',0,'','','','','','','','',0,'','drpratapsi'),(1229,0,0,1049,1555,'2025-10-27',0,'','','','','','','','',0,'','drpratapsi'),(1230,0,0,118,1509,'2025-10-27',0,'','','','','','','','',0,'','drpratapsi'),(1231,0,0,1176,1594,'2025-10-27',0,'','','','','','','','',0,'','drpratapsi'),(1232,0,0,47,1566,'2025-10-27',0,'','','','','','','','',0,'','drpratapsi'),(1233,0,0,1262,1577,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1234,0,0,1255,1565,'2025-10-27',0,'','','','','','','','',0,'','drpratapsi'),(1235,0,0,1228,1527,'2025-10-27',0,'','','','','','','','',0,'2025-11-06','darshan'),(1236,0,0,1264,1579,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1237,0,0,1260,1574,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1238,0,0,1265,1580,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1239,0,0,166,1581,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1240,0,0,1247,1551,'2025-10-27',0,'','','','','','','','',0,'2025-11-11','darshan'),(1241,0,0,1267,1583,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1242,0,0,892,1507,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1243,0,0,1215,1510,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1244,0,0,1249,1554,'2025-10-27',0,'','','','','','','','',0,'2025-11-17','darshan'),(1245,0,0,1266,1582,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1246,0,0,1253,1561,'2025-10-27',0,'','','','','','','','',0,'2025-11-26','darshan'),(1247,0,0,150,1596,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1248,0,0,1239,1540,'2025-10-27',0,'','','','','','','','',0,'2025-11-06','darshan'),(1249,0,0,1273,1592,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1250,0,0,1272,1591,'2025-10-27',0,'','','','','','','','',0,'2025-11-26','darshan'),(1251,0,0,1230,1529,'2025-10-27',0,'','','','','','','','',0,'2025-11-26','darshan'),(1252,0,0,1252,1560,'2025-10-27',0,'','','','','','','','',0,'2025-11-26','darshan'),(1253,0,0,951,1593,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1254,0,0,1274,1595,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1255,0,0,182,1598,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1256,0,0,1248,1553,'2025-10-27',0,'','','','','','','','',0,'2025-11-06','darshan'),(1257,0,0,1233,1533,'2025-10-27',0,'','','','','','','','',0,'2025-11-17','darshan'),(1258,0,0,1231,1530,'2025-10-27',0,'','','','','','','','',0,'','darshan'),(1259,0,0,1240,1541,'2025-10-27',0,'','','','','','','','',0,'2025-11-26','darshan'),(1260,0,0,1275,1597,'2025-10-27',0,'','','','','','','','',0,'2026-02-24','darshan'),(1261,0,0,1278,1602,'2025-10-27',0,'','','','','','','','',0,'','darshan'),(1262,0,0,1271,1590,'2025-10-27',0,'','','','','','','','',0,'','darshan'),(1263,0,0,1277,1600,'2025-10-27',0,'','','','','','','','',0,'2025-12-06','darshan'),(1264,0,0,1270,1587,'2025-10-27',0,'','','','','','','','',0,'2025-11-11','darshan'),(1265,0,0,1269,1586,'2025-10-27',0,'','','','','','','','',0,'2025-12-11','darshan'),(1266,0,0,1282,1607,'2025-10-27',0,'','','','','','','','',0,'2025-12-06','darshan'),(1267,0,0,1284,1610,'2025-10-27',0,'','','','','','','','',0,'2025-12-06','darshan'),(1268,0,0,982,1609,'2025-10-27',0,'','','','','','','','',0,'2025-11-17','darshan'),(1269,0,0,79,1612,'2025-10-27',0,'','','','','','','','',0,'2025-11-11','darshan'),(1270,0,0,1286,1614,'2025-10-27',0,'','','','','','','','',0,'2025-12-11','darshan'),(1271,0,0,1132,1616,'2025-10-27',0,'','','','','','','','',0,'','drpratapsi'),(1272,0,0,1289,1620,'2025-10-27',0,'','','','','','','','',0,'','drsagar'),(1273,0,0,1004,1618,'2025-10-27',0,'','','','','','','','',0,'','drpratapsi'),(1274,0,0,165,1604,'2025-10-27',0,'','','','','','','','',0,'','drpratapsi'),(1275,0,0,1288,1619,'2025-10-27',0,'','','','','','','','',0,'','drpratapsi'),(1276,0,0,451,1623,'2025-10-27',0,'','','','','','','','',0,'','drpratapsi'),(1277,0,0,1290,1621,'2025-10-27',0,'','','','','','','','',0,'2025-11-26','darshan'),(1278,0,0,1291,1622,'2025-10-27',0,'','','','','','','','',0,'2025-11-26','darshan'),(1279,0,0,1293,1626,'2025-10-27',0,'','','','','','','','',0,'','drjayant'),(1280,0,0,1281,1606,'2025-10-27',0,'','','','','','','','',0,'2025-11-06','darshan'),(1281,0,0,1296,1630,'2025-10-27',0,'','','','','','','','',0,'','drjayant'),(1282,0,0,1292,1624,'2025-10-27',0,'','','','','','','','',0,'2025-11-17','darshan'),(1283,0,0,901,1627,'2025-10-27',0,'','','','','','','','',0,'','drsagar'),(1284,0,0,1300,1634,'2025-10-27',0,'','','','','','','','',0,'','drjayant'),(1285,0,0,1280,1605,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1286,0,0,1295,1629,'2025-10-27',0,'','','','','','','','',0,'2025-11-06','darshan'),(1287,0,0,1103,1625,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1288,0,0,1298,1632,'2025-10-27',0,'','','','','','','','',0,'2025-12-06','darshan'),(1289,0,0,1297,1631,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1290,0,0,1301,1635,'2025-10-27',0,'','','','','','','','',0,'','drjayant'),(1291,0,0,1303,1638,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1292,0,0,1299,1633,'2025-10-27',0,'','','','','','','','',0,'2025-11-03','darshan'),(1293,0,0,435,1648,'2025-10-27',0,'','','','','','','','',0,'','drsagar'),(1294,0,0,1060,1642,'2025-10-27',0,'','','','','','','','',0,'','drsagar'),(1295,0,0,1283,1608,'2025-10-27',0,'','','','','','','','',0,'2025-11-11','darshan'),(1296,0,0,1302,1636,'2025-10-27',0,'','','','','','','','',0,'','drsagar'),(1297,0,0,1313,1650,'2025-10-27',0,'','','','','','','','',0,'','drjayant'),(1298,0,0,1285,1613,'2025-10-27',0,'','','','','','','','',0,'2025-11-06','darshan'),(1299,0,0,1312,1649,'2025-10-27',0,'','','','','','','','',0,'2025-12-06','darshan'),(1300,0,0,1287,1617,'2025-10-27',0,'','','','','','','','',0,'2025-11-17','darshan'),(1301,0,0,1308,1644,'2025-10-27',0,'','','','','','','','',0,'2025-12-26','darshan'),(1302,0,0,1311,1647,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1303,0,0,1304,1639,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1304,0,0,1305,1640,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1305,0,0,1309,1645,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1306,0,0,954,1653,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1307,0,0,1307,1643,'2025-10-27',0,'','','','','','','','',0,'','drpratapsi'),(1308,0,0,1310,1646,'2025-10-27',0,'','','','','','','','',0,'2025-11-01','darshan'),(1309,0,0,1316,1655,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1310,0,0,291,1637,'2025-10-27',0,'','','','','','','','',0,'','drpratapsi'),(1311,0,0,1317,1656,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1312,0,0,1306,1641,'2025-10-27',0,'','','','','','','','',0,'2025-11-06','darshan'),(1313,0,0,1318,1657,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1314,0,0,1319,1658,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1315,0,0,1314,1651,'2025-10-27',0,'','','','','','','','',0,'2025-11-26','darshan'),(1316,0,0,1321,1661,'2025-10-27',0,'','','','','','','','',0,'','drarchit'),(1317,0,0,1315,1654,'2025-10-27',0,'','','','','','','','',0,'2025-11-17','darshan'),(1318,0,0,1324,1664,'2025-10-28',0,'','','','','','','','',0,'2026-01-12','darshan'),(1319,0,0,479,1679,'2025-10-28',0,'','','','','','','','',0,'','drsagar'),(1320,0,0,1330,1670,'2025-10-28',0,'','','','','','','','',0,'','drjayant'),(1321,0,0,1341,1685,'2025-10-28',0,'','','','','','','','',0,'','drsagar'),(1322,0,0,1338,1680,'2025-10-28',0,'','','','','','','','',0,'2025-12-27','darshan'),(1323,0,0,1336,1676,'2025-10-28',0,'','','','','','','','',0,'','drjayant'),(1324,0,0,1334,1674,'2025-10-28',0,'','','','','','','','',0,'','drarchit'),(1325,0,0,521,1683,'2025-10-28',0,'','','','','','','','',0,'2025-12-09','darshan'),(1326,0,0,1344,1689,'2025-10-28',0,'','','','','','','','',0,'','drjayant'),(1327,0,0,1340,1684,'2025-10-28',0,'','','','','','','','',0,'2025-12-27','darshan'),(1328,0,0,1331,1671,'2025-10-28',0,'','','','','','','','',0,'','drarchit'),(1329,0,0,1337,1677,'2025-10-28',0,'','','','','','','','',0,'2025-11-12','drarchit'),(1330,0,0,1342,1686,'2025-10-28',0,'','','','','','','','',0,'','darshan'),(1331,0,0,1346,1691,'2025-10-28',0,'','','','','','','','',0,'2026-01-26','darshan'),(1332,0,0,1349,1695,'2025-10-28',0,'','','','','','','','',0,'2026-02-25','darshan'),(1333,0,0,43,1678,'2025-10-28',0,'','','','','','','','',0,'2025-11-04','drarchit'),(1334,0,0,1328,1668,'2025-10-28',0,'','','','','','','','',0,'','drarchit'),(1335,0,0,1350,1696,'2025-10-28',0,'','','','','','','','',0,'2025-11-27','darshan'),(1336,0,0,1339,1681,'2025-10-28',0,'','','','','','','','',0,'2026-01-26','drarchit'),(1337,0,0,1351,1697,'2025-10-28',0,'','','','','','','','',0,'2025-12-27','darshan'),(1338,0,0,1345,1690,'2025-10-28',0,'','','','','','','','',0,'','drarchit'),(1339,0,0,1323,1663,'2025-10-28',0,'','','','','','','','',0,'','drarchit'),(1340,0,0,1347,1692,'2025-10-28',0,'','','','','','','','',0,'2026-01-26','drarchit'),(1341,0,0,1354,1701,'2025-10-28',0,'','','','','','','','',0,'2025-11-04','drarchit'),(1342,0,0,714,1705,'2025-10-28',0,'','','','','','','','',0,'','drarchit'),(1343,0,0,1357,1706,'2025-10-28',0,'','','','','','','','',0,'2026-01-26','darshan'),(1344,0,0,1352,1698,'2025-10-28',0,'','','','','','','','',0,'2026-01-26','drarchit'),(1345,0,0,1361,1710,'2025-10-28',0,'','','','','','','','',0,'2025-12-27','darshan'),(1346,0,0,1327,1667,'2025-10-28',0,'','','','','','','','',0,'2025-11-27','darshan'),(1347,0,0,1359,1708,'2025-10-28',0,'','','','','','','','',0,'','drsagar'),(1348,0,0,1355,1702,'2025-10-28',0,'','','','','','','','',0,'2026-01-26','drarchit'),(1349,0,0,1362,1712,'2025-10-28',0,'','','','','','','','',0,'','darshan'),(1350,0,0,191,1716,'2025-10-28',0,'','','','','','','','',0,'2026-01-26','drarchit'),(1351,0,0,1364,1714,'2025-10-28',0,'','','','','','','','',0,'2026-01-26','darshan'),(1352,0,0,1366,1717,'2025-10-28',0,'','','','','','','','',0,'2026-01-26','drarchit'),(1353,0,0,1326,1666,'2025-10-28',0,'','','','','','','','',0,'2025-11-17','darshan'),(1354,0,0,1335,1675,'2025-10-28',0,'','','','','','','','',0,'2025-11-07','darshan'),(1355,0,0,1348,1693,'2025-10-28',0,'','','','','','','','',0,'2025-11-07','darshan'),(1356,0,0,1369,1722,'2025-10-28',0,'','','','','','','','',0,'2025-12-08','darshan'),(1357,0,0,1353,1699,'2025-10-28',0,'','','','','','','','',0,'2025-11-17','darshan'),(1358,0,0,1356,1703,'2025-10-28',0,'','','','','','','','',0,'2025-11-17','darshan'),(1359,0,0,1365,1715,'2025-10-28',0,'','','','','','','','',0,'2025-11-17','darshan'),(1360,0,0,1367,1720,'2025-10-28',0,'','','','','','','','',0,'2025-11-27','darshan'),(1361,0,0,1372,1729,'2025-10-28',0,'','','','','','','','',0,'2025-12-27','darshan'),(1362,0,0,1373,1730,'2025-10-28',0,'','','','','','','','',0,'2025-12-12','darshan'),(1363,0,0,1374,1731,'2025-10-28',0,'','','','','','','','',0,'2026-02-05','darshan'),(1364,0,0,1376,1733,'2025-10-28',0,'','','','','','','','',0,'2025-12-08','darshan'),(1365,0,0,1377,1734,'2025-10-28',0,'','','','','','','','',0,'','drjayant'),(1366,0,0,1378,1735,'2025-10-28',0,'','','','','','','','',0,'2025-11-27','darshan'),(1367,0,0,1379,1736,'2025-10-28',0,'','','','','','','','',0,'2025-12-27','darshan'),(1368,0,0,1360,1709,'2025-10-28',0,'','','','','','','','',0,'2025-11-27','drarchit'),(1369,0,0,1384,1741,'2025-10-28',0,'','','','','','','','',0,'','drjayant'),(1370,0,0,1363,1713,'2025-10-28',0,'','','','','','','','',0,'','drarchit'),(1371,0,0,594,1704,'2025-10-28',0,'','','','','','','','',0,'','drarchit'),(1372,0,0,916,1682,'2025-10-28',0,'','','','','','','','',0,'','drarchit'),(1373,0,0,1383,1740,'2025-10-28',0,'','','','','','','','',0,'2025-11-17','darshan'),(1374,0,0,1386,1743,'2025-10-28',0,'','','','','','','','',0,'2025-11-17','darshan'),(1375,0,0,1390,1747,'2025-10-28',0,'','','','','','','','',0,'','drsagar'),(1376,0,0,1389,1746,'2025-10-28',0,'','','','','','','','',0,'2025-11-27','darshan'),(1377,0,0,1388,1745,'2025-10-28',0,'','','','','','','','',0,'','drjayant'),(1378,0,0,1385,1742,'2025-10-28',0,'','','','','','','','',0,'','drjayant'),(1379,0,0,1382,1739,'2025-10-28',0,'','','','','','','','',0,'2025-11-27','drarchit'),(1380,0,0,1399,1760,'2025-10-28',0,'','','','','','','','',0,'','drjayant'),(1381,0,0,1387,1744,'2025-10-28',0,'','','','','','','','',0,'2025-11-07','darshan'),(1382,0,0,1380,1737,'2025-10-28',0,'','','','','','','','',0,'','drarchit'),(1383,0,0,1371,1728,'2025-10-28',0,'','','','','','','','',0,'2025-11-07','darshan'),(1384,0,0,464,1751,'2025-10-28',0,'','','','','','','','',0,'','drridham'),(1385,0,0,1395,1754,'2025-10-28',0,'','','','','','','','',0,'','drridham'),(1386,0,0,1401,1762,'2025-10-28',0,'','','','','','','','',0,'','drridham'),(1387,0,0,1375,1732,'2025-10-28',0,'','','','','','','','',0,'2026-01-26','drarchit'),(1388,0,0,597,1750,'2025-10-28',0,'','','','','','','','',0,'2025-11-17','darshan'),(1389,0,0,1381,1738,'2025-10-28',0,'','','','','','','','',0,'2025-11-04','drarchit'),(1390,0,0,1402,1763,'2025-10-28',0,'','','','','','','','',0,'','drjayant'),(1391,0,0,941,1758,'2025-10-28',0,'','','','','','','','',0,'','drsagar'),(1392,0,0,1394,1753,'2025-10-28',0,'','','','','','','','',0,'2026-01-26','drarchit'),(1393,0,0,1407,1770,'2025-10-28',0,'','','','','','','','',0,'','drsagar'),(1394,0,0,1396,1756,'2025-10-28',0,'','','','','','','','',0,'2025-11-07','darshan'),(1395,0,0,1393,1752,'2025-10-28',0,'','','','','','','','',0,'2026-01-26','drarchit'),(1396,0,0,1405,1768,'2025-10-28',0,'','','','','','','','',0,'','drjayant'),(1397,0,0,1392,1749,'2025-10-28',0,'','','','','','','','',0,'2026-01-26','drarchit'),(1398,0,0,1397,1757,'2025-10-28',0,'','','','','','','','',0,'2025-11-03','darshan'),(1399,0,0,1400,1761,'2025-10-28',0,'','','','','','','','',0,'2025-11-04','drarchit'),(1400,0,0,1368,1721,'2025-10-28',0,'','','','','','','','',0,'','drpratapsi'),(1401,0,0,1325,1665,'2025-10-28',0,'','','','','','','','',0,'','drpratapsi'),(1402,0,0,1404,1766,'2025-10-28',0,'','','','','','','','',0,'2025-11-27','drarchit'),(1403,0,0,1329,1669,'2025-10-28',0,'','','','','','','','',0,'','drpratapsi'),(1404,0,0,1332,1672,'2025-10-28',0,'','','','','','','','',0,'','drpratapsi'),(1405,0,0,1391,1748,'2025-10-28',0,'','','','','','','','',0,'','darshan'),(1406,0,0,1406,1769,'2025-10-28',0,'','','','','','','','',0,'2025-11-12','drarchit'),(1407,0,0,1408,1771,'2025-10-28',0,'','','','','','','','',0,'2025-12-27','darshan'),(1408,0,0,1079,1767,'2025-10-28',0,'','','','','','','','',0,'2025-11-04','drarchit'),(1409,0,0,1409,1772,'2025-10-28',0,'','','','','','','','',0,'2025-11-27','darshan'),(1410,0,0,252,1765,'2025-10-28',0,'','','','','','','','',0,'','drarchit'),(1411,0,0,1333,1673,'2025-10-28',0,'','','','','','','','',0,'','drpratapsi'),(1412,0,0,1203,1687,'2025-10-28',0,'','','','','','','','',0,'','drpratapsi'),(1413,0,0,240,1773,'2025-10-28',0,'','','','','','','','',0,'2026-01-26','drarchit'),(1414,0,0,1162,1694,'2025-10-28',0,'','','','','','','','',0,'','drpratapsi'),(1415,0,0,221,1718,'2025-10-28',0,'','','','','','','','',0,'','drpratapsi'),(1416,0,0,1288,1725,'2025-10-28',0,'','','','','','','','',0,'','drpratapsi'),(1417,0,0,1410,1775,'2025-10-28',0,'','','','','','','','',0,'2026-01-26','drarchit'),(1418,0,0,1403,1764,'2025-10-28',0,'','','','','','','','',0,'','drpratapsi'),(1419,0,0,1370,1726,'2025-10-28',0,'','','','','','','','',0,'','drpratapsi'),(1420,0,0,431,1755,'2025-10-28',0,'','','','','','','','',0,'','drpratapsi'),(1421,0,0,575,1774,'2025-10-28',0,'','','','','','','','',0,'','drpratapsi'),(1422,0,0,118,1719,'2025-10-28',0,'','','','','','','','',0,'','drpratapsi'),(1423,0,0,1423,1792,'2025-10-29',0,'','','','','','','','',0,'','drpratapsi'),(1424,0,0,1416,1784,'2025-10-29',0,'','','','','','','','',0,'2026-02-06','darshan'),(1425,0,0,1418,1786,'2025-10-29',0,'','','','','','','','',0,'2025-12-29','darshan'),(1426,0,0,1413,1779,'2025-10-29',0,'','','','','','','','',0,'','drjayant'),(1427,0,0,915,1797,'2025-10-29',0,'','','','','','','','',0,'','drpratapsi'),(1428,0,0,880,1783,'2025-10-29',0,'','','','','','','','',0,'2025-11-28','darshan'),(1429,0,0,1425,1796,'2025-10-29',0,'','','','','','','','',0,'2025-12-29','darshan'),(1430,0,0,1431,1803,'2025-10-29',0,'','','','','','','','',0,'','drjayant'),(1431,0,0,607,1790,'2025-10-29',0,'','','','','','','','',0,'2025-12-10','darshan'),(1432,0,0,1434,1808,'2025-10-29',0,'','','','','','','','',0,'','drjayant'),(1433,0,0,1417,1785,'2025-10-29',0,'','','','','','','','',0,'','drridham'),(1434,0,0,1419,1787,'2025-10-29',0,'','','','','','','','',0,'2025-11-03','darshan'),(1435,0,0,1430,1802,'2025-10-29',0,'','','','','','','','',0,'2026-01-27','drarchit'),(1436,0,0,1432,1805,'2025-10-29',0,'','','','','','','','',0,'','drridham'),(1437,0,0,1421,1789,'2025-10-29',0,'','','','','','','','',0,'2025-12-29','darshan'),(1438,0,0,1085,1804,'2025-10-29',0,'','','','','','','','',0,'2025-11-28','drarchit'),(1439,0,0,545,1811,'2025-10-29',0,'','','','','','','','',0,'','drsagar'),(1440,0,0,1125,1795,'2025-10-29',0,'','','','','','','','',0,'','drsagar'),(1441,0,0,1440,1815,'2025-10-29',0,'','','','','','','','',0,'','drjayant'),(1442,0,0,1436,1810,'2025-10-29',0,'','','','','','','','',0,'2025-12-29','darshan'),(1443,0,0,1446,1821,'2025-10-29',0,'','','','','','','','',0,'','drridham'),(1444,0,0,1426,1798,'2025-10-29',0,'','','','','','','','',0,'2026-02-26','darshan'),(1445,0,0,400,1807,'2025-10-29',0,'','','','','','','','',0,'2026-01-27','drarchit'),(1446,0,0,1428,1800,'2025-10-29',0,'','','','','','','','',0,'2026-02-26','darshan'),(1447,0,0,1429,1801,'2025-10-29',0,'','','','','','','','',0,'2025-12-29','darshan'),(1448,0,0,1445,1820,'2025-10-29',0,'','','','','','','','',0,'2025-11-29','drarchit'),(1449,0,0,1447,1822,'2025-10-29',0,'','','','','','','','',0,'','drpratapsi'),(1450,0,0,1067,1826,'2025-10-29',0,'','','','','','','','',0,'','drpratapsi'),(1451,0,0,1437,1812,'2025-10-29',0,'','','','','','','','',0,'','drjayant'),(1452,0,0,1450,1825,'2025-10-29',0,'','','','','','','','',0,'2025-11-05','drarchit'),(1453,0,0,1439,1814,'2025-10-29',0,'','','','','','','','',0,'2026-01-27','drarchit'),(1454,0,0,1452,1828,'2025-10-29',0,'','','','','','','','',0,'','drsagar'),(1455,0,0,1441,1816,'2025-10-29',0,'','','','','','','','',0,'2025-12-29','drarchit'),(1456,0,0,1449,1824,'2025-10-29',0,'','','','','','','','',0,'2025-12-29','darshan'),(1457,0,0,1443,1818,'2025-10-29',0,'','','','','','','','',0,'2026-01-27','drarchit'),(1458,0,0,1442,1817,'2025-10-29',0,'','','','','','','','',0,'2025-11-05','drarchit'),(1459,0,0,1453,1830,'2025-10-29',0,'','','','','','','','',0,'','drjayant'),(1460,0,0,414,1829,'2025-10-29',0,'','','','','','','','',0,'','drsagar'),(1461,0,0,1362,1712,'2025-10-29',0,'','','','','','','','',0,'','darshan'),(1462,0,0,1444,1819,'2025-10-29',0,'','','','','','','','',0,'2026-01-27','drarchit'),(1463,0,0,1451,1827,'2025-10-29',0,'','','','','','','','',0,'2026-02-26','darshan'),(1464,0,0,1456,1833,'2025-10-29',0,'','','','','','','','',0,'','drsagar'),(1465,0,0,1422,1791,'2025-10-29',0,'','','','','','','','',0,'2026-01-27','drarchit'),(1466,0,0,1457,1834,'2025-10-29',0,'','','','','','','','',0,'2025-11-28','darshan'),(1467,0,0,1424,1793,'2025-10-29',0,'','','','','','','','',0,'2025-11-28','drarchit'),(1468,0,0,1435,1809,'2025-10-29',0,'','','','','','','','',0,'2026-01-27','drarchit'),(1469,0,0,1455,1832,'2025-10-29',0,'','','','','','','','',0,'2025-12-29','drarchit'),(1470,0,0,1461,1838,'2025-10-29',0,'','','','','','','','',0,'2026-01-27','drarchit'),(1471,0,0,1458,1835,'2025-10-29',0,'','','','','','','','',0,'2025-12-29','darshan'),(1472,0,0,1438,1813,'2025-10-29',0,'','','','','','','','',0,'2025-11-28','darshan'),(1473,0,0,1459,1836,'2025-10-29',0,'','','','','','','','',0,'2025-11-28','darshan'),(1474,0,0,1460,1837,'2025-10-29',0,'','','','','','','','',0,'2025-12-29','darshan'),(1475,0,0,1465,1842,'2025-10-29',0,'','','','','','','','',0,'2025-12-29','darshan'),(1476,0,0,1463,1840,'2025-10-29',0,'','','','','','','','',0,'','darshan'),(1477,0,0,1466,1843,'2025-10-29',0,'','','','','','','','',0,'','darshan'),(1478,0,0,1467,1844,'2025-10-29',0,'','','','','','','','',0,'','darshan'),(1479,0,0,1464,1841,'2025-10-29',0,'','','','','','','','',0,'2025-12-08','darshan'),(1480,0,0,1471,1848,'2025-10-29',0,'','','','','','','','',0,'2025-11-28','darshan'),(1481,0,0,1470,1847,'2025-10-29',0,'','','','','','','','',0,'2026-02-06','darshan'),(1482,0,0,1478,1856,'2025-10-29',0,'','','','','','','','',0,'2025-12-29','drjayant'),(1483,0,0,1454,1831,'2025-10-29',0,'','','','','','','','',0,'','drarchit'),(1484,0,0,1420,1788,'2025-10-29',0,'','','','','','','','',0,'2025-11-08','drarchit'),(1485,0,0,593,1859,'2025-10-29',0,'','','','','','','','',0,'2025-12-10','darshan'),(1486,0,0,53,1863,'2025-10-29',0,'','','','','','','','',0,'','drsagar'),(1487,0,0,919,1854,'2025-10-29',0,'','','','','','','','',0,'2025-12-10','darshan'),(1488,0,0,1485,1865,'2025-10-29',0,'','','','','','','','',0,'','drjayant'),(1489,0,0,1484,1864,'2025-10-29',0,'','','','','','','','',0,'','drjayant'),(1490,0,0,1448,1823,'2025-10-29',0,'','','','','','','','',0,'2025-12-29','drarchit'),(1491,0,0,1483,1862,'2025-10-29',0,'','','','','','','','',0,'','drsagar'),(1492,0,0,1486,1866,'2025-10-29',0,'','','','','','','','',0,'','drarchit'),(1493,0,0,1490,1872,'2025-10-29',0,'','','','','','','','',0,'2025-11-28','drarchit'),(1494,0,0,659,1875,'2025-10-29',0,'','','','','','','','',0,'','drpratapsi'),(1495,0,0,1488,1868,'2025-10-29',0,'','','','','','','','',0,'2026-01-27','drarchit'),(1496,0,0,1479,1857,'2025-10-29',0,'','','','','','','','',0,'2025-12-08','darshan'),(1497,0,0,1489,1871,'2025-10-29',0,'','','','','','','','',0,'2026-01-27','drarchit'),(1498,0,0,1462,1839,'2025-10-29',0,'','','','','','','','',0,'2025-11-13','darshan'),(1499,0,0,1414,1780,'2025-10-29',0,'','','','','','','','',0,'','drarchit'),(1500,0,0,1415,1781,'2025-10-29',0,'','','','','','','','',0,'','drarchit'),(1501,0,0,497,1869,'2025-10-29',0,'','','','','','','','',0,'','drarchit'),(1502,0,0,1481,1860,'2025-10-29',0,'','','','','','','','',0,'2025-11-08','darshan'),(1503,0,0,1480,1858,'2025-10-29',0,'','','','','','','','',0,'2026-01-27','drarchit'),(1504,0,0,1411,1777,'2025-10-29',0,'','','','','','','','',0,'','drarchit'),(1505,0,0,1468,1845,'2025-10-29',0,'','','','','','','','',0,'2025-11-28','darshan'),(1506,0,0,976,1870,'2025-10-29',0,'','','','','','','','',0,'','drarchit'),(1507,0,0,1469,1846,'2025-10-29',0,'','','','','','','','',0,'2025-11-08','drarchit'),(1508,0,0,1472,1849,'2025-10-29',0,'','','','','','','','',0,'2025-11-08','darshan'),(1509,0,0,1493,1876,'2025-10-29',0,'','','','','','','','',0,'2025-12-13','darshan'),(1510,0,0,1491,1873,'2025-10-29',0,'','','','','','','','',0,'2025-11-08','drarchit'),(1511,0,0,1482,1861,'2025-10-29',0,'','','','','','','','',0,'','drarchit'),(1512,0,0,1492,1874,'2025-10-29',0,'','','','','','','','',0,'2025-11-03','drarchit'),(1513,0,0,1495,1878,'2025-10-29',0,'','','','','','','','',0,'','drjayant'),(1514,0,0,1477,1855,'2025-10-29',0,'','','','','','','','',0,'2025-11-08','darshan'),(1515,0,0,1126,1879,'2025-10-29',0,'','','','','','','','',0,'','drpratapsi'),(1516,0,0,1494,1877,'2025-10-29',0,'','','','','','','','',0,'2026-04-27','drarchit'),(1517,0,0,1473,1850,'2025-10-29',0,'','','','','','','','',0,'2025-11-18','darshan'),(1518,0,0,1475,1852,'2025-10-29',0,'','','','','','','','',0,'','darshan'),(1519,0,0,1474,1851,'2025-10-29',0,'','','','','','','','',0,'2025-11-13','darshan'),(1520,0,0,562,1880,'2025-10-29',0,'','','','','','','','',0,'2025-11-08','darshan'),(1521,0,0,1497,1883,'2025-10-29',0,'','','','','','','','',0,'2026-02-06','darshan'),(1522,0,0,1500,1886,'2025-10-30',0,'','','','','','','','',0,'2025-11-29','darshan'),(1523,0,0,1505,1895,'2025-10-30',0,'','','','','','','','',0,'2025-11-29','darshan'),(1524,0,0,699,1893,'2025-10-30',0,'','','','','','','','',0,'2025-12-11','darshan'),(1525,0,0,300,1894,'2025-10-30',0,'','','','','','','','',0,'2025-12-11','darshan'),(1526,0,0,757,1900,'2025-10-30',0,'','','','','','','','',0,'2025-12-29','drjayant'),(1527,0,0,1512,1906,'2025-10-30',0,'','','','','','','','',0,'2025-11-06','drarchit'),(1528,0,0,1506,1896,'2025-10-30',0,'','','','','','','','',0,'2025-12-29','darshan'),(1529,0,0,1508,1899,'2025-10-30',0,'','','','','','','','',0,'2025-12-15','darshan'),(1530,0,0,1515,1911,'2025-10-30',0,'','','','','','','','',0,'2026-01-28','drarchit'),(1531,0,0,1521,1918,'2025-10-30',0,'','','','','','','','',0,'','drpratapsi'),(1532,0,0,696,1904,'2025-10-30',0,'','','','','','','','',0,'','drpratapsi'),(1533,0,0,1499,1885,'2025-10-30',0,'','','','','','','','',0,'','drarchit'),(1534,0,0,116,1912,'2025-10-30',0,'','','','','','','','',0,'','drpratapsi'),(1535,0,0,1476,1898,'2025-10-30',0,'','','','','','','','',0,'','drpratapsi'),(1536,0,0,1516,1913,'2025-10-30',0,'','','','','','','','',0,'2025-12-09','darshan'),(1537,0,0,773,1910,'2025-10-30',0,'','','','','','','','',0,'2025-12-29','drarchit'),(1538,0,0,1501,1889,'2025-10-30',0,'','','','','','','','',0,'2025-11-06','darshan'),(1539,0,0,1507,1897,'2025-10-30',0,'','','','','','','','',0,'2025-11-29','darshan'),(1540,0,0,1526,1924,'2025-10-30',0,'','','','','','','','',0,'','drjayant'),(1541,0,0,1524,1921,'2025-10-30',0,'','','','','','','','',0,'2026-01-28','drarchit'),(1542,0,0,118,1926,'2025-10-30',0,'','','','','','','','',0,'','drpratapsi'),(1543,0,0,1525,1922,'2025-10-30',0,'','','','','','','','',0,'2026-01-28','drarchit'),(1544,0,0,1517,1914,'2025-10-30',0,'','','','','','','','',0,'','drpratapsi'),(1545,0,0,469,1887,'2025-10-30',0,'','','','','','','','',0,'2025-12-11','darshan'),(1546,0,0,1520,1917,'2025-10-30',0,'','','','','','','','',0,'2026-01-28','drarchit'),(1547,0,0,1518,1915,'2025-10-30',0,'','','','','','','','',0,'2025-11-10','darshan'),(1548,0,0,1527,1925,'2025-10-30',0,'','','','','','','','',0,'','drpratapsi'),(1549,0,0,1532,1931,'2025-10-30',0,'','','','','','','','',0,'','drjayant'),(1550,0,0,1519,1916,'2025-10-30',0,'','','','','','','','',0,'','drarchit'),(1551,0,0,1503,1891,'2025-10-30',0,'','','','','','','','',0,'2025-11-10','darshan'),(1552,0,0,1509,1901,'2025-10-30',0,'','','','','','','','',0,'2026-02-27','darshan'),(1553,0,0,1070,1902,'2025-10-30',0,'','','','','','','','',0,'','drpratapsi'),(1554,0,0,1535,1935,'2025-10-30',0,'','','','','','','','',0,'','drpratapsi'),(1555,0,0,292,1909,'2025-10-30',0,'','','','','','','','',0,'2025-11-29','darshan'),(1556,0,0,1531,1930,'2025-10-30',0,'','','','','','','','',0,'2025-12-09','darshan'),(1557,0,0,1522,1919,'2025-10-30',0,'','','','','','','','',0,'','darshan'),(1558,0,0,1534,1933,'2025-10-30',0,'','','','','','','','',0,'2025-11-29','darshan'),(1559,0,0,1529,1928,'2025-10-30',0,'','','','','','','','',0,'2025-11-10','drarchit'),(1560,0,0,1511,1905,'2025-10-30',0,'','','','','','','','',0,'2025-11-10','drarchit'),(1561,0,0,1504,1892,'2025-10-30',0,'','','','','','','','',0,'2025-11-29','darshan'),(1562,0,0,1530,1929,'2025-10-30',0,'','','','','','','','',0,'2025-12-09','darshan'),(1563,0,0,1510,1903,'2025-10-30',0,'','','','','','','','',0,'2025-11-29','darshan'),(1564,0,0,1533,1932,'2025-10-30',0,'','','','','','','','',0,'2025-11-14','drarchit'),(1565,0,0,1537,1938,'2025-10-30',0,'','','','','','','','',0,'2025-11-04','drarchit'),(1566,0,0,1523,1920,'2025-10-30',0,'','','','','','','','',0,'2025-11-29','darshan'),(1567,0,0,1538,1939,'2025-10-30',0,'','','','','','','','',0,'2025-11-29','drarchit'),(1568,0,0,1514,1908,'2025-10-30',0,'','','','','','','','',0,'2025-11-04','drarchit'),(1569,0,0,1133,1945,'2025-10-30',0,'','','','','','','','',0,'','drpratapsi'),(1570,0,0,294,1943,'2025-10-30',0,'','','','','','','','',0,'2025-12-09','darshan'),(1571,0,0,1540,1946,'2025-10-30',0,'','','','','','','','',0,'2025-11-19','darshan'),(1572,0,0,1544,1950,'2025-10-30',0,'','','','','','','','',0,'2025-11-29','darshan'),(1573,0,0,1541,1947,'2025-10-30',0,'','','','','','','','',0,'2026-01-28','darshan'),(1574,0,0,1542,1948,'2025-10-30',0,'','','','','','','','',0,'2025-11-04','darshan'),(1575,0,0,753,1959,'2025-10-30',0,'','','','','','','','',0,'2025-11-29','drjayant'),(1576,0,0,1547,1955,'2025-10-30',0,'','','','','','','','',0,'2025-12-09','darshan'),(1577,0,0,1553,1962,'2025-10-30',0,'','','','','','','','',0,'','drpratapsi'),(1578,0,0,1549,1957,'2025-10-30',0,'','','','','','','','',0,'2025-12-09','darshan'),(1579,0,0,1551,1960,'2025-10-30',0,'','','','','','','','',0,'2026-01-28','drarchit'),(1580,0,0,1543,1949,'2025-10-30',0,'','','','','','','','',0,'2025-11-19','darshan'),(1581,0,0,1502,1890,'2025-10-30',0,'','','','','','','','',0,'','drarchit'),(1582,0,0,1554,1963,'2025-10-30',0,'','','','','','','','',0,'2025-12-29','darshan'),(1583,0,0,1556,1966,'2025-10-30',0,'','','','','','','','',0,'2025-11-06','drarchit'),(1584,0,0,1545,1951,'2025-10-30',0,'','','','','','','','',0,'2025-12-29','darshan'),(1585,0,0,1546,1952,'2025-10-30',0,'','','','','','','','',0,'2025-11-10','darshan'),(1586,0,0,1558,1968,'2025-10-30',0,'','','','','','','','',0,'2026-01-28','drarchit'),(1587,0,0,951,1923,'2025-10-30',0,'','','','','','','','',0,'2025-11-10','drarchit'),(1588,0,0,911,1953,'2025-10-30',0,'','','','','','','','',0,'2025-11-10','darshan'),(1589,0,0,1560,1970,'2025-10-30',0,'','','','','','','','',0,'2026-01-28','drarchit'),(1590,0,0,1562,1972,'2025-10-30',0,'','','','','','','','',0,'','drpratapsi'),(1591,0,0,1105,1973,'2025-10-30',0,'','','','','','','','',0,'','drpratapsi'),(1592,0,0,1550,1958,'2025-10-30',0,'','','','','','','','',0,'2025-11-29','darshan'),(1593,0,0,1561,1971,'2025-10-30',0,'','','','','','','','',0,'','drjayant'),(1594,0,0,1552,1961,'2025-10-30',0,'','','','','','','','',0,'2025-11-04','darshan'),(1595,0,0,1566,1977,'2025-10-30',0,'','','','','','','','',0,'','drjayant'),(1596,0,0,1475,1852,'2025-10-30',0,'','','','','','','','',0,'','darshan'),(1597,0,0,1564,1975,'2025-10-30',0,'','','','','','','','',0,'','drsagar'),(1598,0,0,1555,1964,'2025-10-30',0,'','','','','','','','',0,'2025-12-09','darshan'),(1599,0,0,1567,1978,'2025-10-30',0,'','','','','','','','',0,'','drjayant'),(1600,0,0,1539,1944,'2025-10-30',0,'','','','','','','','',0,'2025-11-29','darshan'),(1601,0,0,1179,1965,'2025-10-30',0,'','','','','','','','',0,'2025-11-10','darshan'),(1602,0,0,976,1870,'2025-10-30',0,'','','','','','','','',0,'','drarchit'),(1603,0,0,1570,1982,'2025-10-30',0,'','','','','','','','',0,'','drjayant'),(1604,0,0,1548,1956,'2025-10-30',0,'','','','','','','','',0,'2025-11-10','darshan'),(1605,0,0,680,1984,'2025-10-30',0,'','','','','','','','',0,'','drsagar'),(1606,0,0,1414,1980,'2025-10-30',0,'','','','','','','','',0,'','drarchit'),(1607,0,0,1565,1976,'2025-10-30',0,'','','','','','','','',0,'','drarchit'),(1608,0,0,427,1983,'2025-10-30',0,'','','','','','','','',0,'2025-12-29','drarchit'),(1609,0,0,1559,1969,'2025-10-30',0,'','','','','','','','',0,'2025-11-19','darshan'),(1610,0,0,1569,1981,'2025-10-30',0,'','','','','','','','',0,'','darshan'),(1611,0,0,1582,2002,'2025-10-31',0,'','','','','','','','',0,'','drpratapsi'),(1612,0,0,1586,2006,'2025-10-31',0,'','','','','','','','',0,'','drpratapsi'),(1613,0,0,985,2000,'2025-10-31',0,'','','','','','','','',0,'2025-11-10','darshan'),(1614,0,0,1583,2003,'2025-10-31',0,'','','','','','','','',0,'2025-12-30','darshan'),(1615,0,0,1574,1990,'2025-10-31',0,'','','','','','','','',0,'','drsagar'),(1616,0,0,1588,2008,'2025-10-31',0,'','','','','','','','',0,'2026-01-29','drarchit'),(1617,0,0,1602,2026,'2025-10-31',0,'','','','','','','','',0,'','drpratapsi'),(1618,0,0,1587,2007,'2025-10-31',0,'','','','','','','','',0,'2026-01-29','drarchit'),(1619,0,0,1575,1991,'2025-10-31',0,'','','','','','','','',0,'2025-12-10','darshan'),(1620,0,0,1236,2025,'2025-10-31',0,'','','','','','','','',0,'','drjayant'),(1621,0,0,1576,1992,'2025-10-31',0,'','','','','','','','',0,'','darshan'),(1622,0,0,1600,2022,'2025-10-31',0,'','','','','','','','',0,'','drjayant'),(1623,0,0,1242,1997,'2025-10-31',0,'','','','','','','','',0,'2025-11-10','darshan'),(1624,0,0,1593,2014,'2025-10-31',0,'','','','','','','','',0,'2025-12-30','darshan'),(1625,0,0,988,2023,'2025-10-31',0,'','','','','','','','',0,'2025-12-30','drarchit'),(1626,0,0,1616,2042,'2025-10-31',0,'','','','','','','','',0,'2026-01-29','drjayant'),(1627,0,0,1590,2011,'2025-10-31',0,'','','','','','','','',0,'2025-11-07','drarchit'),(1628,0,0,1605,2030,'2025-10-31',0,'','','','','','','','',0,'2026-02-09','drarchit'),(1629,0,0,1608,2033,'2025-10-31',0,'','','','','','','','',0,'2026-01-29','drarchit'),(1630,0,0,1604,2029,'2025-10-31',0,'','','','','','','','',0,'2025-11-10','drarchit'),(1631,0,0,1610,2035,'2025-10-31',0,'','','','','','','','',0,'2025-12-30','darshan'),(1632,0,0,600,2001,'2025-10-31',0,'','','','','','','','',0,'','drarchit'),(1633,0,0,1611,2036,'2025-10-31',0,'','','','','','','','',0,'2025-11-07','drarchit'),(1634,0,0,1615,2041,'2025-10-31',0,'','','','','','','','',0,'2026-01-29','drarchit'),(1635,0,0,1625,2052,'2025-10-31',0,'','','','','','','','',0,'','drsagar'),(1636,0,0,1613,2039,'2025-10-31',0,'','','','','','','','',0,'2025-12-10','darshan'),(1637,0,0,1627,2054,'2025-10-31',0,'','','','','','','','',0,'','drsagar'),(1638,0,0,1589,2009,'2025-10-31',0,'','','','','','','','',0,'','darshan'),(1639,0,0,1606,2031,'2025-10-31',0,'','','','','','','','',0,'2025-12-26','drarchit'),(1640,0,0,1614,2040,'2025-10-31',0,'','','','','','','','',0,'','drsagar'),(1641,0,0,1578,1994,'2025-10-31',0,'','','','','','','','',0,'2025-11-20','darshan'),(1642,0,0,632,2010,'2025-10-31',0,'','','','','','','','',0,'','darshan'),(1643,0,0,1591,2012,'2025-10-31',0,'','','','','','','','',0,'2025-12-30','darshan'),(1644,0,0,1568,1979,'2025-10-31',0,'','','','','','','','',0,'','drarchit'),(1645,0,0,1596,2017,'2025-10-31',0,'','','','','','','','',0,'','darshan'),(1646,0,0,1579,1996,'2025-10-31',0,'','','','','','','','',0,'2025-12-01','darshan'),(1647,0,0,1629,2057,'2025-10-31',0,'','','','','','','','',0,'2026-01-29','drarchit'),(1648,0,0,1622,2049,'2025-10-31',0,'','','','','','','','',0,'2025-12-10','darshan'),(1649,0,0,1630,2058,'2025-10-31',0,'','','','','','','','',0,'2026-01-29','drarchit'),(1650,0,0,1626,2053,'2025-10-31',0,'','','','','','','','',0,'2025-12-01','darshan'),(1651,0,0,1618,2044,'2025-10-31',0,'','','','','','','','',0,'2026-01-29','drarchit'),(1652,0,0,1595,2016,'2025-10-31',0,'','','','','','','','',0,'2025-11-20','darshan'),(1653,0,0,1599,2021,'2025-10-31',0,'','','','','','','','',0,'2025-12-30','darshan'),(1654,0,0,1597,2019,'2025-10-31',0,'','','','','','','','',0,'2025-11-20','darshan'),(1655,0,0,1628,2055,'2025-10-31',0,'','','','','','','','',0,'2025-12-30','darshan'),(1656,0,0,1601,2024,'2025-10-31',0,'','','','','','','','',0,'2025-11-10','darshan'),(1657,0,0,1580,1998,'2025-10-31',0,'','','','','','','','',0,'2025-12-01','darshan'),(1658,0,0,1607,2032,'2025-10-31',0,'','','','','','','','',0,'','darshan'),(1659,0,0,1581,1999,'2025-10-31',0,'','','','','','','','',0,'2025-11-15','darshan'),(1660,0,0,1624,2051,'2025-10-31',0,'','','','','','','','',0,'2025-12-15','darshan'),(1661,0,0,1609,2034,'2025-10-31',0,'','','','','','','','',0,'2025-11-10','darshan'),(1662,0,0,1634,2062,'2025-10-31',0,'','','','','','','','',0,'2025-12-30','darshan'),(1663,0,0,1617,2043,'2025-10-31',0,'','','','','','','','',0,'2025-11-10','darshan'),(1664,0,0,1612,2037,'2025-10-31',0,'','','','','','','','',0,'','darshan'),(1665,0,0,1620,2046,'2025-10-31',0,'','','','','','','','',0,'2025-12-01','darshan'),(1666,0,0,1028,2048,'2025-10-31',0,'','','','','','','','',0,'2025-11-15','darshan'),(1667,0,0,331,2056,'2025-10-31',0,'','','','','','','','',0,'2025-12-10','darshan'),(1668,0,0,1631,2059,'2025-10-31',0,'','','','','','','','',0,'2025-12-01','darshan'),(1669,0,0,1636,2064,'2025-10-31',0,'','','','','','','','',0,'2025-12-30','darshan'),(1670,0,0,300,1894,'2025-10-31',0,'','','','','','','','',0,'2025-12-11','darshan'),(1671,0,0,1639,2069,'2025-10-31',0,'','','','','','','','',0,'','darshan'),(1672,0,0,1640,2070,'2025-10-31',0,'','','','','','','','',0,'','darshan'),(1673,0,0,1642,2072,'2025-10-31',0,'','','','','','','','',0,'','darshan'),(1674,0,0,1641,2071,'2025-10-31',0,'','','','','','','','',0,'2025-12-01','darshan'),(1675,0,0,585,2066,'2025-10-31',0,'','','','','','','','',0,'2025-12-12','darshan'),(1676,0,0,1638,2068,'2025-10-31',0,'','','','','','','','',0,'2025-12-30','darshan'),(1677,0,0,1644,2075,'2025-10-31',0,'','','','','','','','',0,'2025-12-01','darshan'),(1678,0,0,1645,2077,'2025-10-31',0,'','','','','','','','',0,'2026-02-09','darshan'),(1679,0,0,1573,1989,'2025-10-31',0,'','','','','','','','',0,'','drjayant'),(1680,0,0,1647,2081,'2025-10-31',0,'','','','','','','','',0,'2025-11-10','darshan'),(1681,0,0,1654,2090,'2025-10-31',0,'','','','','','','','',0,'','drjayant'),(1682,0,0,1569,1981,'2025-10-31',0,'','','','','','','','',0,'','darshan'),(1683,0,0,1646,2079,'2025-10-31',0,'','','','','','','','',0,'','drsagar'),(1684,0,0,1633,2061,'2025-10-31',0,'','','','','','','','',0,'','drarchit'),(1685,0,0,1656,2092,'2025-10-31',0,'','','','','','','','',0,'','drarchit'),(1686,0,0,1655,2091,'2025-10-31',0,'','','','','','','','',0,'','darshan'),(1687,0,0,1632,2060,'2025-10-31',0,'','','','','','','','',0,'','drarchit'),(1688,0,0,1658,2096,'2025-10-31',0,'','','','','','','','',0,'','drjayant'),(1689,0,0,1657,2095,'2025-10-31',0,'','','','','','','','',0,'2026-01-29','drarchit'),(1690,0,0,1662,2104,'2025-10-31',0,'','','','','','','','',0,'','drjayant'),(1691,0,0,1293,2110,'2025-10-31',0,'','','','','','','','',0,'','drjayant'),(1692,0,0,350,2103,'2025-10-31',0,'','','','','','','','',0,'2025-11-20','darshan'),(1693,0,0,627,2102,'2025-10-31',0,'','','','','','','','',0,'2025-11-15','drarchit'),(1694,0,0,1134,2113,'2025-10-31',0,'','','','','','','','',0,'','drjayant'),(1695,0,0,1304,2106,'2025-10-31',0,'','','','','','','','',0,'','drarchit'),(1696,0,0,1667,2114,'2025-10-31',0,'','','','','','','','',0,'','drjayant'),(1697,0,0,1666,2112,'2025-10-31',0,'','','','','','','','',0,'2026-01-29','drarchit'),(1698,0,0,1661,2100,'2025-10-31',0,'','','','','','','','',0,'','drridham'),(1699,0,0,1446,2101,'2025-10-31',0,'','','','','','','','',0,'','drridham'),(1700,0,0,1670,2118,'2025-10-31',0,'','','','','','','','',0,'','drridham'),(1701,0,0,739,2120,'2025-10-31',0,'','','','','','','','',0,'','drridham'),(1702,0,0,1648,2082,'2025-10-31',0,'','','','','','','','',0,'2025-11-15','darshan'),(1703,0,0,1674,2123,'2025-10-31',0,'','','','','','','','',0,'2025-11-10','drarchit'),(1704,0,0,1651,2085,'2025-10-31',0,'','','','','','','','',0,'2026-02-09','darshan'),(1705,0,0,1677,2126,'2025-10-31',0,'','','','','','','','',0,'2025-11-07','drarchit'),(1706,0,0,1637,2067,'2025-10-31',0,'','','','','','','','',0,'','drjayant'),(1707,0,0,1668,2116,'2025-10-31',0,'','','','','','','','',0,'','drjayant'),(1708,0,0,1650,2084,'2025-10-31',0,'','','','','','','','',0,'2025-12-01','darshan'),(1709,0,0,1665,2111,'2025-10-31',0,'','','','','','','','',0,'2025-12-30','darshan'),(1710,0,0,1671,2119,'2025-10-31',0,'','','','','','','','',0,'','darshan'),(1711,0,0,567,2131,'2025-10-31',0,'','','','','','','','',0,'','drsagar'),(1712,0,0,1669,2117,'2025-10-31',0,'','','','','','','','',0,'','drpratapsi'),(1713,0,0,1307,2107,'2025-10-31',0,'','','','','','','','',0,'','drpratapsi'),(1714,0,0,1673,2122,'2025-10-31',0,'','','','','','','','',0,'','drpratapsi'),(1715,0,0,1664,2109,'2025-10-31',0,'','','','','','','','',0,'2025-11-07','darshan'),(1716,0,0,1635,2063,'2025-10-31',0,'','','','','','','','',0,'','drpratapsi'),(1717,0,0,1577,1993,'2025-10-31',0,'','','','','','','','',0,'','drpratapsi'),(1718,0,0,416,2087,'2025-10-31',0,'','','','','','','','',0,'2025-11-20','darshan'),(1719,0,0,1584,2004,'2025-10-31',0,'','','','','','','','',0,'','drpratapsi'),(1720,0,0,1659,2098,'2025-10-31',0,'','','','','','','','',0,'2026-02-28','darshan'),(1721,0,0,1592,2013,'2025-10-31',0,'','','','','','','','',0,'','drpratapsi'),(1722,0,0,651,2097,'2025-10-31',0,'','','','','','','','',0,'','drpratapsi'),(1723,0,0,1203,2080,'2025-10-31',0,'','','','','','','','',0,'','drpratapsi'),(1724,0,0,1623,2050,'2025-10-31',0,'','','','','','','','',0,'','drpratapsi'),(1725,0,0,63,2038,'2025-10-31',0,'','','','','','','','',0,'','drpratapsi'),(1726,0,0,1652,2086,'2025-10-31',0,'','','','','','','','',0,'','darshan'),(1727,0,0,213,2105,'2025-10-31',0,'','','','','','','','',0,'2025-12-01','darshan'),(1728,0,0,1679,2128,'2025-10-31',0,'','','','','','','','',0,'2025-12-30','darshan'),(1729,0,0,1653,2088,'2025-10-31',0,'','','','','','','','',0,'2025-11-15','darshan'),(1730,0,0,240,2130,'2025-10-31',0,'','','','','','','','',0,'','drarchit'),(1731,0,0,885,2093,'2025-10-31',0,'','','','','','','','',0,'2025-11-15','darshan'),(1732,0,0,1649,2083,'2025-10-31',0,'','','','','','','','',0,'2025-11-15','darshan'),(1733,0,0,1682,2133,'2025-10-31',0,'','','','','','','','',0,'','drsagar'),(1734,0,0,975,2094,'2025-10-31',0,'','','','','','','','',0,'2025-12-10','darshan'),(1735,0,0,1672,2121,'2025-10-31',0,'','','','','','','','',0,'2025-12-01','drarchit'),(1736,0,0,1660,2099,'2025-10-31',0,'','','','','','','','',0,'2025-11-20','darshan'),(1737,0,0,1675,2124,'2025-10-31',0,'','','','','','','','',0,'2025-11-10','darshan'),(1738,0,0,1663,2108,'2025-10-31',0,'','','','','','','','',0,'2025-11-10','darshan'),(1739,0,0,875,2115,'2025-10-31',0,'','','','','','','','',0,'2025-11-20','darshan'),(1740,0,0,1676,2125,'2025-10-31',0,'','','','','','','','',0,'2025-12-30','darshan'),(1741,0,0,1678,2127,'2025-10-31',0,'','','','','','','','',0,'2025-11-05','darshan'),(1742,0,0,1680,2129,'2025-10-31',0,'','','','','','','','',0,'2025-12-30','darshan'),(1743,0,0,1683,2134,'2025-10-31',0,'','','','','','','','',0,'2025-12-01','darshan'),(1744,0,0,913,2143,'2025-11-01',0,'','','','','','','','',0,'2025-12-13','darshan'),(1745,0,0,1702,2161,'2025-11-01',0,'','','','','','','','',0,'2026-01-30','drjayant'),(1746,0,0,1694,2148,'2025-11-01',0,'','','','','','','','',0,'','drridham'),(1747,0,0,1701,2160,'2025-11-01',0,'','','','','','','','',0,'','drridham'),(1748,0,0,1689,2141,'2025-11-01',0,'','','','','','','','',0,'2025-12-31','darshan'),(1749,0,0,1149,2155,'2025-11-01',0,'','','','','','','','',0,'','drpratapsi'),(1750,0,0,1705,2165,'2025-11-01',0,'','','','','','','','',0,'2025-12-31','drjayant'),(1751,0,0,1696,2151,'2025-11-01',0,'','','','','','','','',0,'2026-02-09','darshan'),(1752,0,0,1710,2172,'2025-11-01',0,'','','','','','','','',0,'2025-12-31','drjayant'),(1753,0,0,800,2156,'2025-11-01',0,'','','','','','','','',0,'2025-12-13','darshan'),(1754,0,0,1686,2138,'2025-11-01',0,'','','','','','','','',0,'2025-11-08','darshan'),(1755,0,0,1699,2158,'2025-11-01',0,'','','','','','','','',0,'','drpratapsi'),(1756,0,0,1712,2174,'2025-11-01',0,'','','','','','','','',0,'2025-12-31','drjayant'),(1757,0,0,1652,2086,'2025-11-01',0,'','','','','','','','',0,'','darshan'),(1758,0,0,1688,2140,'2025-11-01',0,'','','','','','','','',0,'','drjayant'),(1759,0,0,1703,2163,'2025-11-01',0,'','','','','','','','',0,'','drpratapsi'),(1760,0,0,1708,2170,'2025-11-01',0,'','','','','','','','',0,'','drpratapsi'),(1761,0,0,1691,2145,'2025-11-01',0,'','','','','','','','',0,'2025-12-01','darshan'),(1762,0,0,1715,2177,'2025-11-01',0,'','','','','','','','',0,'','drpratapsi'),(1763,0,0,1132,2182,'2025-11-01',0,'','','','','','','','',0,'','drpratapsi'),(1764,0,0,1261,2162,'2025-11-01',0,'','','','','','','','',0,'2025-12-11','drjayant'),(1765,0,0,1713,2175,'2025-11-01',0,'','','','','','','','',0,'2025-11-08','drarchit'),(1766,0,0,1607,2032,'2025-11-01',0,'','','','','','','','',0,'','darshan'),(1767,0,0,1255,2183,'2025-11-01',0,'','','','','','','','',0,'','drpratapsi'),(1768,0,0,1332,2185,'2025-11-01',0,'','','','','','','','',0,'','drpratapsi'),(1769,0,0,1695,2150,'2025-11-01',0,'','','','','','','','',0,'2025-12-01','darshan'),(1770,0,0,1718,2180,'2025-11-01',0,'','','','','','','','',0,'2026-01-30','drarchit'),(1771,0,0,1719,2181,'2025-11-01',0,'','','','','','','','',0,'2025-11-11','drarchit'),(1772,0,0,1172,2153,'2025-11-01',0,'','','','','','','','',0,'','drsagar'),(1773,0,0,1033,2154,'2025-11-01',0,'','','','','','','','',0,'','drsagar'),(1774,0,0,1729,2196,'2025-11-01',0,'','','','','','','','',0,'','drsagar'),(1775,0,0,1716,2178,'2025-11-01',0,'','','','','','','','',0,'','darshan'),(1776,0,0,1706,2166,'2025-11-01',0,'','','','','','','','',0,'2025-12-31','darshan'),(1777,0,0,1724,2189,'2025-11-01',0,'','','','','','','','',0,'2025-12-31','drarchit'),(1778,0,0,1728,2194,'2025-11-01',0,'','','','','','','','',0,'','drjayant'),(1779,0,0,1732,2199,'2025-11-01',0,'','','','','','','','',0,'','drjayant'),(1780,0,0,1720,2184,'2025-11-01',0,'','','','','','','','',0,'2025-12-16','darshan'),(1781,0,0,1723,2188,'2025-11-01',0,'','','','','','','','',0,'2026-04-30','darshan'),(1782,0,0,1725,2190,'2025-11-01',0,'','','','','','','','',0,'2025-12-01','darshan'),(1783,0,0,1737,2204,'2025-11-01',0,'','','','','','','','',0,'','drjayant'),(1784,0,0,1730,2197,'2025-11-01',0,'','','','','','','','',0,'2025-12-31','darshan'),(1785,0,0,1697,2152,'2025-11-01',0,'','','','','','','','',0,'2026-01-30','darshan'),(1786,0,0,1698,2157,'2025-11-01',0,'','','','','','','','',0,'2025-12-06','darshan'),(1787,0,0,1704,2164,'2025-11-01',0,'','','','','','','','',0,'2026-01-30','drarchit'),(1788,0,0,1717,2179,'2025-11-01',0,'','','','','','','','',0,'2025-11-11','drarchit'),(1789,0,0,1700,2159,'2025-11-01',0,'','','','','','','','',0,'2025-12-01','darshan'),(1790,0,0,1738,2205,'2025-11-01',0,'','','','','','','','',0,'','drjayant'),(1791,0,0,1707,2168,'2025-11-01',0,'','','','','','','','',0,'2025-12-31','darshan'),(1792,0,0,287,2167,'2025-11-01',0,'','','','','','','','',0,'2025-11-08','drarchit'),(1793,0,0,1692,2146,'2025-11-01',0,'','','','','','','','',0,'2025-11-11','darshan'),(1794,0,0,1733,2200,'2025-11-01',0,'','','','','','','','',0,'2025-11-11','drarchit'),(1795,0,0,1735,2202,'2025-11-01',0,'','','','','','','','',0,'2025-12-01','darshan'),(1796,0,0,1096,2169,'2025-11-01',0,'','','','','','','','',0,'','darshan'),(1797,0,0,1709,2171,'2025-11-01',0,'','','','','','','','',0,'2025-11-11','drarchit'),(1798,0,0,1687,2139,'2025-11-01',0,'','','','','','','','',0,'2025-11-11','darshan'),(1799,0,0,1690,2142,'2025-11-01',0,'','','','','','','','',0,'2025-12-01','darshan'),(1800,0,0,1726,2191,'2025-11-01',0,'','','','','','','','',0,'2025-11-11','darshan'),(1801,0,0,1693,2147,'2025-11-01',0,'','','','','','','','',0,'2025-12-01','darshan'),(1802,0,0,1714,2176,'2025-11-01',0,'','','','','','','','',0,'2025-11-21','darshan'),(1803,0,0,376,2192,'2025-11-01',0,'','','','','','','','',0,'2025-11-17','darshan'),(1804,0,0,1734,2201,'2025-11-01',0,'','','','','','','','',0,'2025-11-11','darshan'),(1805,0,0,1721,2186,'2025-11-01',0,'','','','','','','','',0,'2025-11-11','darshan'),(1806,0,0,1736,2203,'2025-11-01',0,'','','','','','','','',0,'2025-11-11','darshan'),(1807,0,0,738,2206,'2025-11-01',0,'','','','','','','','',0,'2025-11-11','darshan'),(1808,0,0,1731,2198,'2025-11-01',0,'','','','','','','','',0,'2025-11-11','darshan'),(1809,0,0,364,2215,'2025-11-01',0,'','','','','','','','',0,'','drpratapsi'),(1810,0,0,431,2213,'2025-11-01',0,'','','','','','','','',0,'','drpratapsi'),(1811,0,0,1744,2218,'2025-11-01',0,'','','','','','','','',0,'','drsagar'),(1812,0,0,1740,2208,'2025-11-01',0,'','','','','','','','',0,'','drsagar'),(1813,0,0,1307,2217,'2025-11-01',0,'','','','','','','','',0,'','drpratapsi'),(1814,0,0,1743,2212,'2025-11-01',0,'','','','','','','','',0,'','drpratapsi'),(1815,0,0,1742,2211,'2025-11-01',0,'','','','','','','','',0,'','drpratapsi'),(1816,0,0,1741,2210,'2025-11-01',0,'','','','','','','','',0,'','drpratapsi'),(1817,0,0,1711,2173,'2025-11-01',0,'','','','','','','','',0,'','drpratapsi'),(1818,0,0,1722,2187,'2025-11-01',0,'','','','','','','','',0,'','drpratapsi'),(1819,0,0,1739,2207,'2025-11-01',0,'','','','','','','','',0,'','drpratapsi'),(1820,0,0,1004,2209,'2025-11-01',0,'','','','','','','','',0,'','drpratapsi'),(1821,0,0,1203,2243,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1822,0,0,1307,2232,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1823,0,0,1223,2244,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1824,0,0,1288,2246,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1825,0,0,1760,2247,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1826,0,0,1755,2237,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1827,0,0,1752,2230,'2025-11-03',0,'','','','','','','','',0,'2025-12-13','darshan'),(1828,0,0,1224,2242,'2025-11-03',0,'','','','','','','','',0,'','drsagar'),(1829,0,0,1751,2229,'2025-11-03',0,'','','','','','','','',0,'2025-12-18','darshan'),(1830,0,0,1766,2253,'2025-11-03',0,'','','','','','','','',0,'','drjayant'),(1831,0,0,1768,2256,'2025-11-03',0,'','','','','','','','',0,'','drjayant'),(1832,0,0,1067,2255,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1833,0,0,1757,2239,'2025-11-03',0,'','','','','','','','',0,'2025-12-03','darshan'),(1834,0,0,1776,2266,'2025-11-03',0,'','','','','','','','',0,'2026-01-02','drjayant'),(1835,0,0,1775,2265,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1836,0,0,1770,2259,'2025-11-03',0,'','','','','','','','',0,'2026-03-03','darshan'),(1837,0,0,1009,2235,'2025-11-03',0,'','','','','','','','',0,'','drjayant'),(1838,0,0,1753,2231,'2025-11-03',0,'','','','','','','','',0,'','drjayant'),(1839,0,0,1655,2091,'2025-11-03',0,'','','','','','','','',0,'','darshan'),(1840,0,0,1769,2258,'2025-11-03',0,'','','','','','','','',0,'','darshan'),(1841,0,0,1777,2267,'2025-11-03',0,'','','','','','','','',0,'2025-12-03','darshan'),(1842,0,0,1761,2248,'2025-11-03',0,'','','','','','','','',0,'2026-02-02','darshan'),(1843,0,0,1782,2274,'2025-11-03',0,'','','','','','','','',0,'2026-03-03','drjayant'),(1844,0,0,1764,2251,'2025-11-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(1845,0,0,1765,2252,'2025-11-03',0,'','','','','','','','',0,'2025-12-13','darshan'),(1846,0,0,1781,2273,'2025-11-03',0,'','','','','','','','',0,'','drjayant'),(1847,0,0,1284,2257,'2025-11-03',0,'','','','','','','','',0,'2025-12-13','darshan'),(1848,0,0,1669,2277,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1849,0,0,1786,2280,'2025-11-03',0,'','','','','','','','',0,'','drjayant'),(1850,0,0,1763,2250,'2025-11-03',0,'','','','','','','','',0,'','drjayant'),(1851,0,0,1772,2261,'2025-11-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(1852,0,0,1783,2276,'2025-11-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(1853,0,0,1785,2279,'2025-11-03',0,'','','','','','','','',0,'2025-11-13','darshan'),(1854,0,0,1792,2288,'2025-11-03',0,'','','','','','','','',0,'','drsagar'),(1855,0,0,1788,2284,'2025-11-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(1856,0,0,1432,2275,'2025-11-03',0,'','','','','','','','',0,'','drridham'),(1857,0,0,1794,2291,'2025-11-03',0,'','','','','','','','',0,'2026-03-03','darshan'),(1858,0,0,1791,2287,'2025-11-03',0,'','','','','','','','',0,'','drsagar'),(1859,0,0,1773,2262,'2025-11-03',0,'','','','','','','','',0,'2025-11-24','darshan'),(1860,0,0,1299,2269,'2025-11-03',0,'','','','','','','','',0,'2025-11-13','darshan'),(1861,0,0,1795,2292,'2025-11-03',0,'','','','','','','','',0,'','drsagar'),(1862,0,0,1787,2283,'2025-11-03',0,'','','','','','','','',0,'','drsagar'),(1863,0,0,514,2270,'2025-11-03',0,'','','','','','','','',0,'','drsagar'),(1864,0,0,1125,2281,'2025-11-03',0,'','','','','','','','',0,'','drsagar'),(1865,0,0,1779,2271,'2025-11-03',0,'','','','','','','','',0,'2025-11-24','darshan'),(1866,0,0,1798,2295,'2025-11-03',0,'','','','','','','','',0,'','drjayant'),(1867,0,0,1796,2293,'2025-11-03',0,'','','','','','','','',0,'2025-12-13','darshan'),(1868,0,0,1799,2296,'2025-11-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(1869,0,0,1790,2286,'2025-11-03',0,'','','','','','','','',0,'2025-12-18','darshan'),(1870,0,0,1780,2272,'2025-11-03',0,'','','','','','','','',0,'2025-12-18','darshan'),(1871,0,0,1758,2241,'2025-11-03',0,'','','','','','','','',0,'2025-11-13','darshan'),(1872,0,0,1801,2299,'2025-11-03',0,'','','','','','','','',0,'','drsagar'),(1873,0,0,1784,2278,'2025-11-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(1874,0,0,1419,2282,'2025-11-03',0,'','','','','','','','',0,'2025-11-08','darshan'),(1875,0,0,1793,2289,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1876,0,0,1759,2245,'2025-11-03',0,'','','','','','','','',0,'2025-11-13','darshan'),(1877,0,0,1767,2254,'2025-11-03',0,'','','','','','','','',0,'2025-11-13','darshan'),(1878,0,0,1789,2285,'2025-11-03',0,'','','','','','','','',0,'2025-12-03','darshan'),(1879,0,0,1778,2268,'2025-11-03',0,'','','','','','','','',0,'2025-12-03','darshan'),(1880,0,0,1800,2297,'2025-11-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(1881,0,0,1797,2294,'2025-11-03',0,'','','','','','','','',0,'2025-11-24','darshan'),(1882,0,0,1807,2306,'2025-11-03',0,'','','','','','','','',0,'2025-12-03','darshan'),(1883,0,0,978,2307,'2025-11-03',0,'','','','','','','','',0,'2025-11-18','darshan'),(1884,0,0,1809,2309,'2025-11-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(1885,0,0,1811,2311,'2025-11-03',0,'','','','','','','','',0,'2025-12-13','darshan'),(1886,0,0,1814,2314,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1887,0,0,1162,2290,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1888,0,0,1802,2300,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1889,0,0,1206,2315,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1890,0,0,1812,2312,'2025-11-03',0,'','','','','','','','',0,'2025-11-08','darshan'),(1891,0,0,1805,2304,'2025-11-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(1892,0,0,1774,2263,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1893,0,0,1813,2313,'2025-11-03',0,'','','','','','','','',0,'2025-12-03','darshan'),(1894,0,0,1476,2318,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1895,0,0,1803,2301,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1896,0,0,1771,2260,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1897,0,0,1756,2238,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1898,0,0,1804,2303,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1899,0,0,1808,2308,'2025-11-03',0,'','','','','','','','',0,'2025-11-13','darshan'),(1900,0,0,1810,2310,'2025-11-03',0,'','','','','','','','',0,'','drjayant'),(1901,0,0,1806,2305,'2025-11-03',0,'','','','','','','','',0,'2025-11-13','darshan'),(1902,0,0,1823,2327,'2025-11-03',0,'','','','','','','','',0,'','drjayant'),(1903,0,0,1818,2321,'2025-11-03',0,'','','','','','','','',0,'','drjayant'),(1904,0,0,1816,2317,'2025-11-03',0,'','','','','','','','',0,'','darshan'),(1905,0,0,1821,2325,'2025-11-03',0,'','','','','','','','',0,'2026-02-11','darshan'),(1906,0,0,1822,2326,'2025-11-03',0,'','','','','','','','',0,'','drjayant'),(1907,0,0,527,2320,'2025-11-03',0,'','','','','','','','',0,'2025-12-13','darshan'),(1908,0,0,1828,2335,'2025-11-03',0,'','','','','','','','',0,'','drjayant'),(1909,0,0,1483,2324,'2025-11-03',0,'','','','','','','','',0,'','drsagar'),(1910,0,0,1829,2336,'2025-11-03',0,'','','','','','','','',0,'','drjayant'),(1911,0,0,1830,2337,'2025-11-03',0,'','','','','','','','',0,'','drjayant'),(1912,0,0,1826,2332,'2025-11-03',0,'','','','','','','','',0,'','drsagar'),(1913,0,0,1819,2322,'2025-11-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(1914,0,0,1820,2323,'2025-11-03',0,'','','','','','','','',0,'2026-01-17','darshan'),(1915,0,0,1832,2339,'2025-11-03',0,'','','','','','','','',0,'','drjayant'),(1916,0,0,1817,2319,'2025-11-03',0,'','','','','','','','',0,'','drjayant'),(1917,0,0,1831,2338,'2025-11-03',0,'','','','','','','','',0,'2025-12-13','darshan'),(1918,0,0,1815,2316,'2025-11-03',0,'','','','','','','','',0,'2025-11-24','darshan'),(1919,0,0,1824,2328,'2025-11-03',0,'','','','','','','','',0,'','darshan'),(1920,0,0,1825,2331,'2025-11-03',0,'','','','','','','','',0,'2025-11-13','darshan'),(1921,0,0,1838,2351,'2025-11-03',0,'','','','','','','','',0,'','drjayant'),(1922,0,0,328,2330,'2025-11-03',0,'','','','','','','','',0,'2025-11-24','darshan'),(1923,0,0,1827,2333,'2025-11-03',0,'','','','','','','','',0,'2025-12-13','darshan'),(1924,0,0,1836,2347,'2025-11-03',0,'','','','','','','','',0,'','drsagar'),(1925,0,0,1839,2352,'2025-11-03',0,'','','','','','','','',0,'','drsagar'),(1926,0,0,1833,2341,'2025-11-03',0,'','','','','','','','',0,'2025-11-13','darshan'),(1927,0,0,983,2340,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1928,0,0,451,2344,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1929,0,0,1521,2329,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1930,0,0,1835,2345,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1931,0,0,118,2346,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1932,0,0,1358,2348,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1933,0,0,1837,2350,'2025-11-03',0,'','','','','','','','',0,'','drpratapsi'),(1934,0,0,1840,2353,'2025-11-03',0,'','','','','','','','',0,'','drsagar'),(1935,0,0,1834,2342,'2025-11-03',0,'','','','','','','','',0,'2025-12-03','darshan'),(1936,0,0,1841,2354,'2025-11-03',0,'','','','','','','','',0,'2025-11-10','darshan'),(1937,0,0,1847,2361,'2025-11-04',0,'','','','','','','','',0,'','drpratapsi'),(1938,0,0,1843,2357,'2025-11-04',0,'','','','','','','','',0,'2026-01-03','darshan'),(1939,0,0,1844,2358,'2025-11-04',0,'','','','','','','','',0,'2025-12-15','darshan'),(1940,0,0,1853,2369,'2025-11-04',0,'','','','','','','','',0,'','drpratapsi'),(1941,0,0,1848,2362,'2025-11-04',0,'','','','','','','','',0,'','drjayant'),(1942,0,0,1855,2371,'2025-11-04',0,'','','','','','','','',0,'','drjayant'),(1943,0,0,629,2363,'2025-11-04',0,'','','','','','','','',0,'2025-12-04','darshan'),(1944,0,0,1849,2364,'2025-11-04',0,'','','','','','','','',0,'2025-11-10','darshan'),(1945,0,0,1854,2370,'2025-11-04',0,'','','','','','','','',0,'2026-01-03','darshan'),(1946,0,0,1856,2372,'2025-11-04',0,'','','','','','','','',0,'','drjayant'),(1947,0,0,1860,2377,'2025-11-04',0,'','','','','','','','',0,'','drjayant'),(1948,0,0,1669,2382,'2025-11-04',0,'','','','','','','','',0,'','drpratapsi'),(1949,0,0,1552,2366,'2025-11-04',0,'','','','','','','','',0,'2025-11-10','darshan'),(1950,0,0,1858,2375,'2025-11-04',0,'','','','','','','','',0,'','drridham'),(1951,0,0,1863,2380,'2025-11-04',0,'','','','','','','','',0,'','drridham'),(1952,0,0,1865,2383,'2025-11-04',0,'','','','','','','','',0,'','drsagar'),(1953,0,0,1864,2381,'2025-11-04',0,'','','','','','','','',0,'2026-01-03','darshan'),(1954,0,0,1852,2368,'2025-11-04',0,'','','','','','','','',0,'2025-12-19','darshan'),(1955,0,0,1859,2376,'2025-11-04',0,'','','','','','','','',0,'2025-11-10','darshan'),(1956,0,0,1868,2387,'2025-11-04',0,'','','','','','','','',0,'','drjayant'),(1957,0,0,1861,2378,'2025-11-04',0,'','','','','','','','',0,'2025-12-04','darshan'),(1958,0,0,1191,2388,'2025-11-04',0,'','','','','','','','',0,'2025-12-16','darshan'),(1959,0,0,1850,2365,'2025-11-04',0,'','','','','','','','',0,'2025-11-24','darshan'),(1960,0,0,774,2374,'2025-11-04',0,'','','','','','','','',0,'2025-12-04','darshan'),(1961,0,0,1871,2391,'2025-11-04',0,'','','','','','','','',0,'2026-01-03','drjayant'),(1962,0,0,1845,2359,'2025-11-04',0,'','','','','','','','',0,'2025-12-04','darshan'),(1963,0,0,1867,2385,'2025-11-04',0,'','','','','','','','',0,'','darshan'),(1964,0,0,1869,2389,'2025-11-04',0,'','','','','','','','',0,'2025-11-24','darshan'),(1965,0,0,1857,2373,'2025-11-04',0,'','','','','','','','',0,'2025-11-14','darshan'),(1966,0,0,1873,2394,'2025-11-04',0,'','','','','','','','',0,'2026-01-03','darshan'),(1967,0,0,1851,2367,'2025-11-04',0,'','','','','','','','',0,'2025-12-04','darshan'),(1968,0,0,1862,2379,'2025-11-04',0,'','','','','','','','',0,'2025-11-24','darshan'),(1969,0,0,1866,2384,'2025-11-04',0,'','','','','','','','',0,'2025-11-14','darshan'),(1970,0,0,1872,2393,'2025-11-04',0,'','','','','','','','',0,'2025-12-04','darshan'),(1971,0,0,1734,2386,'2025-11-04',0,'','','','','','','','',0,'2025-11-10','darshan'),(1972,0,0,1870,2390,'2025-11-04',0,'','','','','','','','',0,'','drpratapsi'),(1973,0,0,1288,2403,'2025-11-04',0,'','','','','','','','',0,'','drpratapsi'),(1974,0,0,1133,2396,'2025-11-04',0,'','','','','','','','',0,'','drpratapsi'),(1975,0,0,1874,2397,'2025-11-04',0,'','','','','','','','',0,'2026-01-03','darshan'),(1976,0,0,1846,2360,'2025-11-04',0,'','','','','','','','',0,'','drpratapsi'),(1977,0,0,1875,2398,'2025-11-04',0,'','','','','','','','',0,'2025-11-14','darshan'),(1978,0,0,1542,2399,'2025-11-04',0,'','','','','','','','',0,'2025-11-10','darshan'),(1979,0,0,1876,2401,'2025-11-04',0,'','','','','','','','',0,'2025-12-04','darshan'),(1980,0,0,520,2402,'2025-11-04',0,'','','','','','','','',0,'2025-12-04','darshan'),(1981,0,0,1877,2404,'2025-11-04',0,'','','','','','','','',0,'2025-12-15','darshan'),(1982,0,0,1878,2405,'2025-11-04',0,'','','','','','','','',0,'2026-02-12','darshan'),(1983,0,0,1879,2406,'2025-11-04',0,'','','','','','','','',0,'2025-12-04','darshan'),(1984,0,0,1883,2410,'2025-11-04',0,'','','','','','','','',0,'','drjayant'),(1985,0,0,1884,2413,'2025-11-04',0,'','','','','','','','',0,'','drjayant'),(1986,0,0,1882,2409,'2025-11-04',0,'','','','','','','','',0,'2025-11-10','darshan'),(1987,0,0,1129,2414,'2025-11-04',0,'','','','','','','','',0,'2025-12-04','darshan'),(1988,0,0,1302,2417,'2025-11-04',0,'','','','','','','','',0,'','drsagar'),(1989,0,0,1887,2420,'2025-11-04',0,'','','','','','','','',0,'','drjayant'),(1990,0,0,1886,2418,'2025-11-04',0,'','','','','','','','',0,'2025-12-04','darshan'),(1991,0,0,1341,2426,'2025-11-04',0,'','','','','','','','',0,'','drsagar'),(1992,0,0,690,2422,'2025-11-04',0,'','','','','','','','',0,'2025-12-04','darshan'),(1993,0,0,1889,2423,'2025-11-04',0,'','','','','','','','',0,'','drjayant'),(1994,0,0,1881,2408,'2025-11-04',0,'','','','','','','','',0,'2025-11-14','darshan'),(1995,0,0,1892,2428,'2025-11-04',0,'','','','','','','','',0,'','drsagar'),(1996,0,0,1888,2421,'2025-11-04',0,'','','','','','','','',0,'2026-01-03','darshan'),(1997,0,0,1890,2424,'2025-11-04',0,'','','','','','','','',0,'2025-11-11','darshan'),(1998,0,0,862,2427,'2025-11-04',0,'','','','','','','','',0,'2025-12-04','darshan'),(1999,0,0,1824,2328,'2025-11-04',0,'','','','','','','','',0,'','darshan'),(2000,0,0,766,2430,'2025-11-04',0,'','','','','','','','',0,'2025-12-15','darshan'),(2001,0,0,1274,2432,'2025-11-04',0,'','','','','','','','',0,'','drjayant'),(2002,0,0,1885,2416,'2025-11-04',0,'','','','','','','','',0,'2025-12-04','darshan'),(2003,0,0,1891,2425,'2025-11-04',0,'','','','','','','','',0,'2025-12-04','darshan'),(2004,0,0,1894,2433,'2025-11-04',0,'','','','','','','','',0,'2025-12-04','darshan'),(2005,0,0,1896,2438,'2025-11-05',0,'','','','','','','','',0,'','drpratapsi'),(2006,0,0,1897,2439,'2025-11-05',0,'','','','','','','','',0,'2026-01-05','darshan'),(2007,0,0,1900,2443,'2025-11-05',0,'','','','','','','','',0,'2026-02-13','darshan'),(2008,0,0,591,2440,'2025-11-05',0,'','','','','','','','',0,'2025-11-25','darshan'),(2009,0,0,1902,2445,'2025-11-05',0,'','','','','','','','',0,'2026-01-05','drjayant'),(2010,0,0,1293,2447,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2011,0,0,470,2446,'2025-11-05',0,'','','','','','','','',0,'2025-12-05','darshan'),(2012,0,0,693,2455,'2025-11-05',0,'','','','','','','','',0,'','drsagar'),(2013,0,0,1903,2448,'2025-11-05',0,'','','','','','','','',0,'2025-12-15','darshan'),(2014,0,0,457,2450,'2025-11-05',0,'','','','','','','','',0,'2025-11-25','darshan'),(2015,0,0,1904,2449,'2025-11-05',0,'','','','','','','','',0,'2025-12-05','drjayant'),(2016,0,0,1911,2460,'2025-11-05',0,'','','','','','','','',0,'2026-01-05','darshan'),(2017,0,0,1763,2453,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2018,0,0,1917,2467,'2025-11-05',0,'','','','','','','','',0,'2026-01-05','drjayant'),(2019,0,0,1898,2441,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2020,0,0,1915,2464,'2025-11-05',0,'','','','','','','','',0,'2026-02-13','darshan'),(2021,0,0,1918,2468,'2025-11-05',0,'','','','','','','','',0,'','drsagar'),(2022,0,0,1919,2469,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2023,0,0,1906,2452,'2025-11-05',0,'','','','','','','','',0,'2025-11-15','darshan'),(2024,0,0,1921,2471,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2025,0,0,1923,2473,'2025-11-05',0,'','','','','','','','',0,'','drsagar'),(2026,0,0,1907,2454,'2025-11-05',0,'','','','','','','','',0,'2026-01-05','darshan'),(2027,0,0,1916,2466,'2025-11-05',0,'','','','','','','','',0,'2025-12-20','darshan'),(2028,0,0,1924,2475,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2029,0,0,1930,2481,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2030,0,0,1669,2474,'2025-11-05',0,'','','','','','','','',0,'','drpratapsi'),(2031,0,0,461,2456,'2025-11-05',0,'','','','','','','','',0,'2025-11-20','darshan'),(2032,0,0,1895,2436,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2033,0,0,1927,2478,'2025-11-05',0,'','','','','','','','',0,'2026-01-05','darshan'),(2034,0,0,1933,2485,'2025-11-05',0,'','','','','','','','',0,'','drpratapsi'),(2035,0,0,1931,2482,'2025-11-05',0,'','','','','','','','',0,'2026-02-03','darshan'),(2036,0,0,1574,2465,'2025-11-05',0,'','','','','','','','',0,'','drsagar'),(2037,0,0,1908,2457,'2025-11-05',0,'','','','','','','','',0,'2026-01-05','darshan'),(2038,0,0,1926,2477,'2025-11-05',0,'','','','','','','','',0,'','drpratapsi'),(2039,0,0,1276,2483,'2025-11-05',0,'','','','','','','','',0,'','drpratapsi'),(2040,0,0,1909,2458,'2025-11-05',0,'','','','','','','','',0,'2025-11-12','darshan'),(2041,0,0,1207,2487,'2025-11-05',0,'','','','','','','','',0,'','drsagar'),(2042,0,0,1928,2479,'2025-11-05',0,'','','','','','','','',0,'','drsagar'),(2043,0,0,1910,2459,'2025-11-05',0,'','','','','','','','',0,'2026-01-05','darshan'),(2044,0,0,1901,2444,'2025-11-05',0,'','','','','','','','',0,'2025-11-15','darshan'),(2045,0,0,1936,2489,'2025-11-05',0,'','','','','','','','',0,'','drsagar'),(2046,0,0,1899,2442,'2025-11-05',0,'','','','','','','','',0,'2025-11-20','darshan'),(2047,0,0,1937,2490,'2025-11-05',0,'','','','','','','','',0,'','drsagar'),(2048,0,0,1932,2484,'2025-11-05',0,'','','','','','','','',0,'2025-12-15','darshan'),(2049,0,0,1934,2486,'2025-11-05',0,'','','','','','','','',0,'2026-01-05','darshan'),(2050,0,0,1913,2462,'2025-11-05',0,'','','','','','','','',0,'2025-11-20','darshan'),(2051,0,0,1912,2461,'2025-11-05',0,'','','','','','','','',0,'2025-11-10','darshan'),(2052,0,0,1925,2476,'2025-11-05',0,'','','','','','','','',0,'2026-01-05','darshan'),(2053,0,0,1133,2492,'2025-11-05',0,'','','','','','','','',0,'','drpratapsi'),(2054,0,0,1914,2463,'2025-11-05',0,'','','','','','','','',0,'2025-11-25','darshan'),(2055,0,0,1929,2480,'2025-11-05',0,'','','','','','','','',0,'2025-12-20','darshan'),(2056,0,0,1935,2488,'2025-11-05',0,'','','','','','','','',0,'2025-12-15','darshan'),(2057,0,0,1939,2493,'2025-11-05',0,'','','','','','','','',0,'2026-01-05','darshan'),(2058,0,0,72,2494,'2025-11-05',0,'','','','','','','','',0,'','darshan'),(2059,0,0,1940,2495,'2025-11-05',0,'','','','','','','','',0,'','darshan'),(2060,0,0,1941,2496,'2025-11-05',0,'','','','','','','','',0,'','darshan'),(2061,0,0,322,2497,'2025-11-05',0,'','','','','','','','',0,'','darshan'),(2062,0,0,655,2498,'2025-11-05',0,'','','','','','','','',0,'2025-12-05','darshan'),(2063,0,0,1943,2500,'2025-11-05',0,'','','','','','','','',0,'2026-02-13','darshan'),(2064,0,0,94,2501,'2025-11-05',0,'','','','','','','','',0,'2025-11-25','darshan'),(2065,0,0,1945,2503,'2025-11-05',0,'','','','','','','','',0,'2025-11-10','darshan'),(2066,0,0,1947,2506,'2025-11-05',0,'','','','','','','','',0,'2025-12-05','darshan'),(2067,0,0,1948,2507,'2025-11-05',0,'','','','','','','','',0,'2026-02-03','darshan'),(2068,0,0,1944,2502,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2069,0,0,1950,2510,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2070,0,0,1956,2519,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2071,0,0,1952,2513,'2025-11-05',0,'','','','','','','','',0,'2026-01-05','darshan'),(2072,0,0,1958,2521,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2073,0,0,1938,2491,'2025-11-05',0,'','','','','','','','',0,'','drsagar'),(2074,0,0,1964,2528,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2075,0,0,1962,2525,'2025-11-05',0,'','','','','','','','',0,'2026-02-03','drjayant'),(2076,0,0,1960,2523,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2077,0,0,1959,2522,'2025-11-05',0,'','','','','','','','',0,'','drsagar'),(2078,0,0,1966,2533,'2025-11-05',0,'','','','','','','','',0,'2026-01-05','drjayant'),(2079,0,0,1281,2512,'2025-11-05',0,'','','','','','','','',0,'2025-12-17','darshan'),(2080,0,0,1946,2504,'2025-11-05',0,'','','','','','','','',0,'2025-12-05','darshan'),(2081,0,0,1606,2532,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2082,0,0,1955,2517,'2025-11-05',0,'','','','','','','','',0,'','darshan'),(2083,0,0,1678,2508,'2025-11-05',0,'','','','','','','','',0,'2025-11-15','darshan'),(2084,0,0,704,2536,'2025-11-05',0,'','','','','','','','',0,'','drsagar'),(2085,0,0,1969,2537,'2025-11-05',0,'','','','','','','','',0,'2025-12-15','darshan'),(2086,0,0,1951,2511,'2025-11-05',0,'','','','','','','','',0,'','darshan'),(2087,0,0,1954,2516,'2025-11-05',0,'','','','','','','','',0,'2025-12-05','darshan'),(2088,0,0,1034,2539,'2025-11-05',0,'','','','','','','','',0,'2026-02-03','drjayant'),(2089,0,0,1972,2543,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2090,0,0,1971,2541,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2091,0,0,1000,2542,'2025-11-05',0,'','','','','','','','',0,'2025-12-05','darshan'),(2092,0,0,1816,2317,'2025-11-05',0,'','','','','','','','',0,'','darshan'),(2093,0,0,1942,2499,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2094,0,0,1965,2529,'2025-11-05',0,'','','','','','','','',0,'2025-12-15','darshan'),(2095,0,0,1949,2509,'2025-11-05',0,'','','','','','','','',0,'2025-11-15','darshan'),(2096,0,0,1967,2534,'2025-11-05',0,'','','','','','','','',0,'2025-11-20','darshan'),(2097,0,0,109,2548,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2098,0,0,110,2549,'2025-11-05',0,'','','','','','','','',0,'','drjayant'),(2099,0,0,1975,2546,'2025-11-05',0,'','','','','','','','',0,'2025-11-12','darshan'),(2100,0,0,1970,2540,'2025-11-05',0,'','','','','','','','',0,'2025-11-15','darshan'),(2101,0,0,1973,2544,'2025-11-05',0,'','','','','','','','',0,'','darshan'),(2102,0,0,1963,2527,'2025-11-05',0,'','','','','','','','',0,'2025-11-15','darshan'),(2103,0,0,1501,2557,'2025-11-06',0,'','','','','','','','',0,'2025-11-17','darshan'),(2104,0,0,1983,2559,'2025-11-06',0,'','','','','','','','',0,'2026-01-05','darshan'),(2105,0,0,1982,2558,'2025-11-06',0,'','','','','','','','',0,'2025-12-16','darshan'),(2106,0,0,1986,2563,'2025-11-06',0,'','','','','','','','',0,'','drjayant'),(2107,0,0,1245,2568,'2025-11-06',0,'','','','','','','','',0,'2025-12-06','darshan'),(2108,0,0,861,2569,'2025-11-06',0,'','','','','','','','',0,'2026-01-05','drjayant'),(2109,0,0,1981,2554,'2025-11-06',0,'','','','','','','','',0,'','drjayant'),(2110,0,0,1984,2560,'2025-11-06',0,'','','','','','','','',0,'2025-11-17','darshan'),(2111,0,0,1989,2566,'2025-11-06',0,'','','','','','','','',0,'2026-01-05','darshan'),(2112,0,0,1248,2567,'2025-11-06',0,'','','','','','','','',0,'2025-12-06','darshan'),(2113,0,0,1997,2579,'2025-11-06',0,'','','','','','','','',0,'','drjayant'),(2114,0,0,1980,2553,'2025-11-06',0,'','','','','','','','',0,'','drsagar'),(2115,0,0,1985,2562,'2025-11-06',0,'','','','','','','','',0,'','drsagar'),(2116,0,0,1994,2575,'2025-11-06',0,'','','','','','','','',0,'2026-02-04','darshan'),(2117,0,0,1987,2564,'2025-11-06',0,'','','','','','','','',0,'2026-01-05','darshan'),(2118,0,0,25,2578,'2025-11-06',0,'','','','','','','','',0,'2025-12-22','darshan'),(2119,0,0,1999,2582,'2025-11-06',0,'','','','','','','','',0,'2026-01-05','darshan'),(2120,0,0,1988,2565,'2025-11-06',0,'','','','','','','','',0,'2025-11-17','darshan'),(2121,0,0,2001,2585,'2025-11-06',0,'','','','','','','','',0,'2025-12-16','darshan'),(2122,0,0,1995,2576,'2025-11-06',0,'','','','','','','','',0,'2026-03-06','darshan'),(2123,0,0,2006,2592,'2025-11-06',0,'','','','','','','','',0,'','drjayant'),(2124,0,0,2004,2588,'2025-11-06',0,'','','','','','','','',0,'2025-12-16','darshan'),(2125,0,0,2009,2596,'2025-11-06',0,'','','','','','','','',0,'','drjayant'),(2126,0,0,1998,2580,'2025-11-06',0,'','','','','','','','',0,'2025-12-16','darshan'),(2127,0,0,2000,2583,'2025-11-06',0,'','','','','','','','',0,'2026-03-06','darshan'),(2128,0,0,2011,2598,'2025-11-06',0,'','','','','','','','',0,'','drjayant'),(2129,0,0,1991,2571,'2025-11-06',0,'','','','','','','','',0,'2025-11-17','darshan'),(2130,0,0,2008,2595,'2025-11-06',0,'','','','','','','','',0,'2026-01-05','darshan'),(2131,0,0,1990,2570,'2025-11-06',0,'','','','','','','','',0,'2025-12-06','darshan'),(2132,0,0,1992,2572,'2025-11-06',0,'','','','','','','','',0,'2025-11-17','darshan'),(2133,0,0,2002,2586,'2025-11-06',0,'','','','','','','','',0,'','darshan'),(2134,0,0,1993,2574,'2025-11-06',0,'','','','','','','','',0,'2025-11-17','darshan'),(2135,0,0,838,2594,'2025-11-06',0,'','','','','','','','',0,'2025-12-06','darshan'),(2136,0,0,1996,2577,'2025-11-06',0,'','','','','','','','',0,'2025-12-06','darshan'),(2137,0,0,2010,2597,'2025-11-06',0,'','','','','','','','',0,'2025-11-17','darshan'),(2138,0,0,2014,2607,'2025-11-06',0,'','','','','','','','',0,'2026-01-26','darshan'),(2139,0,0,2013,2605,'2025-11-06',0,'','','','','','','','',0,'2025-12-16','darshan'),(2140,0,0,1285,2608,'2025-11-06',0,'','','','','','','','',0,'2025-12-18','darshan'),(2141,0,0,2018,2616,'2025-11-06',0,'','','','','','','','',0,'','drjayant'),(2142,0,0,2016,2612,'2025-11-06',0,'','','','','','','','',0,'2025-11-11','darshan'),(2143,0,0,2019,2617,'2025-11-06',0,'','','','','','','','',0,'','drjayant'),(2144,0,0,2020,2618,'2025-11-06',0,'','','','','','','','',0,'','drjayant'),(2145,0,0,2022,2621,'2025-11-06',0,'','','','','','','','',0,'','drjayant'),(2146,0,0,865,2614,'2025-11-06',0,'','','','','','','','',0,'2025-11-17','darshan'),(2147,0,0,2025,2625,'2025-11-06',0,'','','','','','','','',0,'','drjayant'),(2148,0,0,1973,2544,'2025-11-06',0,'','','','','','','','',0,'','darshan'),(2149,0,0,2026,2626,'2025-11-06',0,'','','','','','','','',0,'2026-02-04','drjayant'),(2150,0,0,2023,2622,'2025-11-06',0,'','','','','','','','',0,'','drjayant'),(2151,0,0,2012,2603,'2025-11-06',0,'','','','','','','','',0,'2025-11-26','darshan'),(2152,0,0,2015,2611,'2025-11-06',0,'','','','','','','','',0,'2025-11-17','darshan'),(2153,0,0,811,2631,'2025-11-06',0,'','','','','','','','',0,'','drjayant'),(2154,0,0,2028,2628,'2025-11-06',0,'','','','','','','','',0,'2026-03-06','drjayant'),(2155,0,0,2027,2627,'2025-11-06',0,'','','','','','','','',0,'2026-01-05','darshan'),(2156,0,0,2017,2613,'2025-11-06',0,'','','','','','','','',0,'2025-11-26','darshan'),(2157,0,0,2032,2636,'2025-11-06',0,'','','','','','','','',0,'2026-02-14','darshan'),(2158,0,0,2030,2630,'2025-11-06',0,'','','','','','','','',0,'','drsagar'),(2159,0,0,2024,2623,'2025-11-06',0,'','','','','','','','',0,'','drsagar'),(2160,0,0,2029,2629,'2025-11-06',0,'','','','','','','','',0,'2026-01-05','darshan'),(2161,0,0,2035,2641,'2025-11-06',0,'','','','','','','','',0,'','drjayant'),(2162,0,0,2031,2634,'2025-11-06',0,'','','','','','','','',0,'','darshan'),(2163,0,0,2034,2639,'2025-11-06',0,'','','','','','','','',0,'2025-11-13','darshan'),(2164,0,0,2038,2644,'2025-11-07',0,'','','','','','','','',0,'2026-01-06','darshan'),(2165,0,0,158,2652,'2025-11-07',0,'','','','','','','','',0,'2026-01-06','darshan'),(2166,0,0,2036,2642,'2025-11-07',0,'','','','','','','','',0,'','drjayant'),(2167,0,0,2051,2659,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2168,0,0,2043,2650,'2025-11-07',0,'','','','','','','','',0,'','drsagar'),(2169,0,0,2044,2651,'2025-11-07',0,'','','','','','','','',0,'','drjayant'),(2170,0,0,2049,2657,'2025-11-07',0,'','','','','','','','',0,'','drjayant'),(2171,0,0,2041,2647,'2025-11-07',0,'','','','','','','','',0,'2026-01-06','darshan'),(2172,0,0,2052,2660,'2025-11-07',0,'','','','','','','','',0,'','drjayant'),(2173,0,0,10,2649,'2025-11-07',0,'','','','','','','','',0,'2026-01-06','darshan'),(2174,0,0,2053,2661,'2025-11-07',0,'','','','','','','','',0,'','drjayant'),(2175,0,0,2054,2663,'2025-11-07',0,'','','','','','','','',0,'','drjayant'),(2176,0,0,2046,2654,'2025-11-07',0,'','','','','','','','',0,'2026-01-06','darshan'),(2177,0,0,2059,2670,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2178,0,0,1343,2665,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2179,0,0,1348,2664,'2025-11-07',0,'','','','','','','','',0,'2025-12-19','darshan'),(2180,0,0,2063,2675,'2025-11-07',0,'','','','','','','','',0,'2026-02-05','drjayant'),(2181,0,0,1928,2671,'2025-11-07',0,'','','','','','','','',0,'','drsagar'),(2182,0,0,2057,2668,'2025-11-07',0,'','','','','','','','',0,'2026-01-06','darshan'),(2183,0,0,2065,2679,'2025-11-07',0,'','','','','','','','',0,'','drsagar'),(2184,0,0,2068,2683,'2025-11-07',0,'','','','','','','','',0,'','drjayant'),(2185,0,0,2058,2669,'2025-11-07',0,'','','','','','','','',0,'2025-11-27','darshan'),(2186,0,0,340,2678,'2025-11-07',0,'','','','','','','','',0,'2025-11-17','darshan'),(2187,0,0,1532,2662,'2025-11-07',0,'','','','','','','','',0,'','drjayant'),(2188,0,0,2056,2667,'2025-11-07',0,'','','','','','','','',0,'2025-12-17','darshan'),(2189,0,0,2071,2687,'2025-11-07',0,'','','','','','','','',0,'','drjayant'),(2190,0,0,2066,2680,'2025-11-07',0,'','','','','','','','',0,'2025-11-12','darshan'),(2191,0,0,2040,2646,'2025-11-07',0,'','','','','','','','',0,'2025-12-08','darshan'),(2192,0,0,2067,2682,'2025-11-07',0,'','','','','','','','',0,'2025-12-22','darshan'),(2193,0,0,2060,2672,'2025-11-07',0,'','','','','','','','',0,'2025-11-12','darshan'),(2194,0,0,2072,2688,'2025-11-07',0,'','','','','','','','',0,'','drjayant'),(2195,0,0,2045,2653,'2025-11-07',0,'','','','','','','','',0,'2025-12-08','darshan'),(2196,0,0,994,2686,'2025-11-07',0,'','','','','','','','',0,'2025-12-08','darshan'),(2197,0,0,2050,2658,'2025-11-07',0,'','','','','','','','',0,'2025-11-27','darshan'),(2198,0,0,2062,2674,'2025-11-07',0,'','','','','','','','',0,'2025-12-08','darshan'),(2199,0,0,2061,2673,'2025-11-07',0,'','','','','','','','',0,'2025-12-08','darshan'),(2200,0,0,2047,2655,'2025-11-07',0,'','','','','','','','',0,'2025-11-17','darshan'),(2201,0,0,2055,2666,'2025-11-07',0,'','','','','','','','',0,'','darshan'),(2202,0,0,2064,2676,'2025-11-07',0,'','','','','','','','',0,'','darshan'),(2203,0,0,2048,2656,'2025-11-07',0,'','','','','','','','',0,'','darshan'),(2204,0,0,2074,2690,'2025-11-07',0,'','','','','','','','',0,'','darshan'),(2205,0,0,2069,2684,'2025-11-07',0,'','','','','','','','',0,'2025-11-17','darshan'),(2206,0,0,2042,2648,'2025-11-07',0,'','','','','','','','',0,'2025-12-17','darshan'),(2207,0,0,2075,2692,'2025-11-07',0,'','','','','','','','',0,'2025-12-08','darshan'),(2208,0,0,2070,2685,'2025-11-07',0,'','','','','','','','',0,'2025-11-27','darshan'),(2209,0,0,963,2696,'2025-11-07',0,'','','','','','','','',0,'','darshan'),(2210,0,0,2080,2698,'2025-11-07',0,'','','','','','','','',0,'','darshan'),(2211,0,0,2081,2699,'2025-11-07',0,'','','','','','','','',0,'','darshan'),(2212,0,0,2082,2700,'2025-11-07',0,'','','','','','','','',0,'','darshan'),(2213,0,0,2084,2702,'2025-11-07',0,'','','','','','','','',0,'','darshan'),(2214,0,0,2077,2694,'2025-11-07',0,'','','','','','','','',0,'2026-02-16','darshan'),(2215,0,0,2083,2701,'2025-11-07',0,'','','','','','','','',0,'2026-02-16','darshan'),(2216,0,0,2079,2697,'2025-11-07',0,'','','','','','','','',0,'2025-11-17','darshan'),(2217,0,0,207,2705,'2025-11-07',0,'','','','','','','','',0,'2025-11-27','darshan'),(2218,0,0,2017,2613,'2025-11-07',0,'','','','','','','','',0,'2025-11-26','darshan'),(2219,0,0,2078,2695,'2025-11-07',0,'','','','','','','','',0,'2026-01-06','darshan'),(2220,0,0,2085,2703,'2025-11-07',0,'','','','','','','','',0,'2025-11-17','darshan'),(2221,0,0,2089,2710,'2025-11-07',0,'','','','','','','','',0,'','darshan'),(2222,0,0,2090,2711,'2025-11-07',0,'','','','','','','','',0,'','drjayant'),(2223,0,0,1548,2709,'2025-11-07',0,'','','','','','','','',0,'2025-12-19','darshan'),(2224,0,0,2086,2704,'2025-11-07',0,'','','','','','','','',0,'2025-11-12','darshan'),(2225,0,0,2087,2707,'2025-11-07',0,'','','','','','','','',0,'2025-12-08','darshan'),(2226,0,0,2076,2693,'2025-11-07',0,'','','','','','','','',0,'2025-11-17','darshan'),(2227,0,0,1102,2724,'2025-11-07',0,'','','','','','','','',0,'','drsagar'),(2228,0,0,2091,2712,'2025-11-07',0,'','','','','','','','',0,'2026-03-07','darshan'),(2229,0,0,2037,2643,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2230,0,0,854,2726,'2025-11-07',0,'','','','','','','','',0,'2025-12-08','darshan'),(2231,0,0,2039,2645,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2232,0,0,1774,2677,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2233,0,0,1669,2681,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2234,0,0,2073,2689,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2235,0,0,1477,2717,'2025-11-07',0,'','','','','','','','',0,'2025-12-08','darshan'),(2236,0,0,2092,2713,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2237,0,0,2095,2719,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2238,0,0,2093,2714,'2025-11-07',0,'','','','','','','','',0,'2025-12-08','darshan'),(2239,0,0,1387,2715,'2025-11-07',0,'','','','','','','','',0,'2025-11-17','darshan'),(2240,0,0,1132,2723,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2241,0,0,1288,2732,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2242,0,0,2094,2716,'2025-11-07',0,'','','','','','','','',0,'2025-12-17','darshan'),(2243,0,0,2098,2725,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2244,0,0,1719,2720,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2245,0,0,2102,2731,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2246,0,0,2005,2706,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2247,0,0,2099,2727,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2248,0,0,2101,2730,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2249,0,0,1306,2733,'2025-11-07',0,'','','','','','','','',0,'2025-11-17','darshan'),(2250,0,0,827,2734,'2025-11-07',0,'','','','','','','','',0,'2025-11-27','darshan'),(2251,0,0,2096,2721,'2025-11-07',0,'','','','','','','','',0,'2025-11-17','darshan'),(2252,0,0,270,2738,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2253,0,0,1744,2735,'2025-11-07',0,'','','','','','','','',0,'','drsagar'),(2254,0,0,2097,2722,'2025-11-07',0,'','','','','','','','',0,'2025-11-14','darshan'),(2255,0,0,1976,2740,'2025-11-07',0,'','','','','','','','',0,'','drpratapsi'),(2256,0,0,2088,2708,'2025-11-07',0,'','','','','','','','',0,'2025-11-22','darshan'),(2257,0,0,567,2737,'2025-11-07',0,'','','','','','','','',0,'','drsagar'),(2258,0,0,923,2739,'2025-11-07',0,'','','','','','','','',0,'','drsagar'),(2259,0,0,943,2728,'2025-11-07',0,'','','','','','','','',0,'2025-11-12','darshan'),(2260,0,0,2031,2634,'2025-11-07',0,'','','','','','','','',0,'2025-11-18','darshan'),(2261,0,0,2113,2752,'2025-11-08',0,'','','','','','','','',0,'','drpratapsi'),(2262,0,0,2108,2746,'2025-11-08',0,'','','','','','','','',0,'2025-12-23','darshan'),(2263,0,0,2115,2754,'2025-11-08',0,'','','','','','','','',0,'','drpratapsi'),(2264,0,0,2109,2748,'2025-11-08',0,'','','','','','','','',0,'2025-12-18','darshan'),(2265,0,0,1019,2756,'2025-11-08',0,'','','','','','','','',0,'','drpratapsi'),(2266,0,0,221,2760,'2025-11-08',0,'','','','','','','','',0,'','drpratapsi'),(2267,0,0,2104,2742,'2025-11-08',0,'','','','','','','','',0,'','drjayant'),(2268,0,0,2106,2744,'2025-11-08',0,'','','','','','','','',0,'','drjayant'),(2269,0,0,2118,2759,'2025-11-08',0,'','','','','','','','',0,'','drpratapsi'),(2270,0,0,2116,2755,'2025-11-08',0,'','','','','','','','',0,'','drjayant'),(2271,0,0,2117,2758,'2025-11-08',0,'','','','','','','','',0,'2025-12-23','darshan'),(2272,0,0,2119,2761,'2025-11-08',0,'','','','','','','','',0,'2025-12-18','darshan'),(2273,0,0,2107,2745,'2025-11-08',0,'','','','','','','','',0,'2026-03-09','darshan'),(2274,0,0,1452,2764,'2025-11-08',0,'','','','','','','','',0,'','drsagar'),(2275,0,0,1472,2757,'2025-11-08',0,'','','','','','','','',0,'2025-12-20','darshan'),(2276,0,0,303,2769,'2025-11-08',0,'','','','','','','','',0,'','drpratapsi'),(2277,0,0,2126,2771,'2025-11-08',0,'','','','','','','','',0,'','drpratapsi'),(2278,0,0,1020,2768,'2025-11-08',0,'','','','','','','','',0,'','drsagar'),(2279,0,0,2121,2763,'2025-11-08',0,'','','','','','','','',0,'2026-01-07','darshan'),(2280,0,0,2112,2751,'2025-11-08',0,'','','','','','','','',0,'2026-01-07','darshan'),(2281,0,0,2124,2767,'2025-11-08',0,'','','','','','','','',0,'','drsagar'),(2282,0,0,2105,2743,'2025-11-08',0,'','','','','','','','',0,'','drpratapsi'),(2283,0,0,1669,2775,'2025-11-08',0,'','','','','','','','',0,'','drpratapsi'),(2284,0,0,696,2777,'2025-11-08',0,'','','','','','','','',0,'','drpratapsi'),(2285,0,0,2123,2766,'2025-11-08',0,'','','','','','','','',0,'','drsagar'),(2286,0,0,1837,2779,'2025-11-08',0,'','','','','','','','',0,'','drpratapsi'),(2287,0,0,2114,2753,'2025-11-08',0,'','','','','','','','',0,'2025-12-08','darshan'),(2288,0,0,2120,2762,'2025-11-08',0,'','','','','','','','',0,'2026-01-07','darshan'),(2289,0,0,2125,2770,'2025-11-08',0,'','','','','','','','',0,'2026-01-07','darshan'),(2290,0,0,1310,2772,'2025-11-08',0,'','','','','','','','',0,'2025-11-28','darshan'),(2291,0,0,1860,2784,'2025-11-08',0,'','','','','','','','',0,'','drjayant'),(2292,0,0,1738,2787,'2025-11-08',0,'','','','','','','','',0,'','drjayant'),(2293,0,0,2131,2781,'2025-11-08',0,'','','','','','','','',0,'2026-01-07','darshan'),(2294,0,0,2135,2789,'2025-11-08',0,'','','','','','','','',0,'','drjayant'),(2295,0,0,2134,2788,'2025-11-08',0,'','','','','','','','',0,'','drpratapsi'),(2296,0,0,2133,2783,'2025-11-08',0,'','','','','','','','',0,'2025-12-18','darshan'),(2297,0,0,80,2774,'2025-11-08',0,'','','','','','','','',0,'2025-12-18','darshan'),(2298,0,0,2128,2776,'2025-11-08',0,'','','','','','','','',0,'2025-12-08','darshan'),(2299,0,0,2137,2791,'2025-11-08',0,'','','','','','','','',0,'','drpratapsi'),(2300,0,0,2111,2750,'2025-11-08',0,'','','','','','','','',0,'2025-11-28','darshan'),(2301,0,0,2110,2749,'2025-11-08',0,'','','','','','','','',0,'2025-11-28','darshan'),(2302,0,0,2122,2765,'2025-11-08',0,'','','','','','','','',0,'2025-11-18','darshan'),(2303,0,0,89,2785,'2025-11-08',0,'','','','','','','','',0,'2025-12-08','darshan'),(2304,0,0,507,2786,'2025-11-08',0,'','','','','','','','',0,'2026-01-07','darshan'),(2305,0,0,2132,2782,'2025-11-08',0,'','','','','','','','',0,'2025-11-28','darshan'),(2306,0,0,2127,2773,'2025-11-08',0,'','','','','','','','',0,'2025-11-18','darshan'),(2307,0,0,2138,2792,'2025-11-08',0,'','','','','','','','',0,'2026-02-16','darshan'),(2308,0,0,2139,2794,'2025-11-08',0,'','','','','','','','',0,'','darshan'),(2309,0,0,2129,2778,'2025-11-08',0,'','','','','','','','',0,'2025-11-28','darshan'),(2310,0,0,2136,2790,'2025-11-08',0,'','','','','','','','',0,'2025-11-18','darshan'),(2311,0,0,2130,2780,'2025-11-08',0,'','','','','','','','',0,'2025-12-08','darshan'),(2312,0,0,2141,2796,'2025-11-08',0,'','','','','','','','',0,'2025-11-18','darshan'),(2313,0,0,2142,2798,'2025-11-08',0,'','','','','','','','',0,'','drsagar'),(2314,0,0,1088,2799,'2025-11-08',0,'','','','','','','','',0,'','drsagar'),(2315,0,0,2143,2800,'2025-11-08',0,'','','','','','','','',0,'','drsagar'),(2316,0,0,2144,2802,'2025-11-08',0,'','','','','','','','',0,'','drsagar'),(2317,0,0,140,2833,'2025-11-10',0,'','','','','','','','',0,'','drpratapsi'),(2318,0,0,2005,2835,'2025-11-10',0,'','','','','','','','',0,'','drpratapsi'),(2319,0,0,1288,2816,'2025-11-10',0,'','','','','','','','',0,'','drpratapsi'),(2320,0,0,2105,2818,'2025-11-10',0,'','','','','','','','',0,'','drpratapsi'),(2321,0,0,525,2838,'2025-11-10',0,'','','','','','','','',0,'','drpratapsi'),(2322,0,0,2145,2823,'2025-11-10',0,'','','','','','','','',0,'','drpratapsi'),(2323,0,0,2153,2822,'2025-11-10',0,'','','','','','','','',0,'','drpratapsi'),(2324,0,0,2157,2830,'2025-11-10',0,'','','','','','','','',0,'2025-12-01','darshan'),(2325,0,0,1335,2821,'2025-11-10',0,'','','','','','','','',0,'2025-12-22','darshan'),(2326,0,0,1609,2832,'2025-11-10',0,'','','','','','','','',0,'2025-12-10','darshan'),(2327,0,0,2162,2840,'2025-11-10',0,'','','','','','','','',0,'2026-03-10','darshan'),(2328,0,0,12,2827,'2025-11-10',0,'','','','','','','','',0,'2025-11-15','darshan'),(2329,0,0,404,2828,'2025-11-10',0,'','','','','','','','',0,'2025-12-25','darshan'),(2330,0,0,2156,2829,'2025-11-10',0,'','','','','','','','',0,'2026-01-09','darshan'),(2331,0,0,2167,2847,'2025-11-10',0,'','','','','','','','',0,'2025-11-20','darshan'),(2332,0,0,1617,2856,'2025-11-10',0,'','','','','','','','',0,'2025-11-25','darshan'),(2333,0,0,1125,2846,'2025-11-10',0,'','','','','','','','',0,'','drsagar'),(2334,0,0,1574,2865,'2025-11-10',0,'','','','','','','','',0,'','drsagar'),(2335,0,0,2174,2860,'2025-11-10',0,'','','','','','','','',0,'2025-12-10','darshan'),(2336,0,0,2166,2845,'2025-11-10',0,'','','','','','','','',0,'','drsagar'),(2337,0,0,2169,2851,'2025-11-10',0,'','','','','','','','',0,'','drsagar'),(2338,0,0,1938,2857,'2025-11-10',0,'','','','','','','','',0,'','drsagar'),(2339,0,0,2149,2815,'2025-11-10',0,'','','','','','','','',0,'','darshan'),(2340,0,0,2164,2842,'2025-11-10',0,'','','','','','','','',0,'2025-12-10','darshan'),(2341,0,0,2179,2867,'2025-11-10',0,'','','','','','','','',0,'2025-12-30','darshan'),(2342,0,0,2150,2817,'2025-11-10',0,'','','','','','','','',0,'','drridham'),(2343,0,0,1614,2872,'2025-11-10',0,'','','','','','','','',0,'','drsagar'),(2344,0,0,208,2855,'2025-11-10',0,'','','','','','','','',0,'2025-12-20','darshan'),(2345,0,0,2155,2826,'2025-11-10',0,'','','','','','','','',0,'2025-12-01','darshan'),(2346,0,0,1675,2874,'2025-11-10',0,'','','','','','','','',0,'2025-12-22','darshan'),(2347,0,0,2171,2854,'2025-11-10',0,'','','','','','','','',0,'2025-12-20','darshan'),(2348,0,0,2160,2836,'2025-11-10',0,'','','','','','','','',0,'2025-11-25','darshan'),(2349,0,0,2172,2858,'2025-11-10',0,'','','','','','','','',0,'2025-11-20','darshan'),(2350,0,0,2178,2864,'2025-11-10',0,'','','','','','','','',0,'2025-12-20','darshan'),(2351,0,0,2159,2834,'2025-11-10',0,'','','','','','','','',0,'2025-11-25','darshan'),(2352,0,0,2170,2852,'2025-11-10',0,'','','','','','','','',0,'2025-11-20','darshan'),(2353,0,0,2184,2873,'2025-11-10',0,'','','','','','','','',0,'2025-11-17','darshan'),(2354,0,0,2182,2870,'2025-11-10',0,'','','','','','','','',0,'2025-11-20','darshan'),(2355,0,0,2176,2862,'2025-11-10',0,'','','','','','','','',0,'2025-11-20','darshan'),(2356,0,0,2185,2875,'2025-11-10',0,'','','','','','','','',0,'2025-11-17','darshan'),(2357,0,0,2186,2877,'2025-11-10',0,'','','','','','','','',0,'2026-01-09','darshan'),(2358,0,0,864,2878,'2025-11-10',0,'','','','','','','','',0,'2025-11-20','darshan'),(2359,0,0,1503,2880,'2025-11-10',0,'','','','','','','','',0,'2025-12-01','darshan'),(2360,0,0,1859,2881,'2025-11-10',0,'','','','','','','','',0,'2025-11-17','darshan'),(2361,0,0,2187,2882,'2025-11-10',0,'','','','','','','','',0,'2026-01-09','darshan'),(2362,0,0,1612,2883,'2025-11-10',0,'','','','','','','','',0,'2025-12-22','darshan'),(2363,0,0,524,2885,'2025-11-10',0,'','','','','','','','',0,'2025-12-10','darshan'),(2364,0,0,2192,2892,'2025-11-10',0,'','','','','','','','',0,'2025-11-20','darshan'),(2365,0,0,2194,2896,'2025-11-10',0,'','','','','','','','',0,'','drsagar'),(2366,0,0,2193,2894,'2025-11-10',0,'','','','','','','','',0,'2025-12-10','darshan'),(2367,0,0,1826,2901,'2025-11-10',0,'','','','','','','','',0,'','drsagar'),(2368,0,0,653,2902,'2025-11-10',0,'','','','','','','','',0,'2025-12-20','darshan'),(2369,0,0,2188,2884,'2025-11-10',0,'','','','','','','','',0,'2025-12-01','darshan'),(2370,0,0,2200,2909,'2025-11-10',0,'','','','','','','','',0,'','drsagar'),(2371,0,0,2195,2899,'2025-11-10',0,'','','','','','','','',0,'2026-01-09','darshan'),(2372,0,0,2139,2794,'2025-11-10',0,'','','','','','','','',0,'','darshan'),(2373,0,0,2199,2907,'2025-11-10',0,'','','','','','','','',0,'','darshan'),(2374,0,0,2189,2887,'2025-11-10',0,'','','','','','','','',0,'2025-12-01','darshan'),(2375,0,0,941,2913,'2025-11-10',0,'','','','','','','','',0,'','drsagar'),(2376,0,0,1912,2912,'2025-11-10',0,'','','','','','','','',0,'2025-11-17','darshan'),(2377,0,0,2196,2903,'2025-11-10',0,'','','','','','','','',0,'2025-11-20','darshan'),(2378,0,0,2204,2917,'2025-11-10',0,'','','','','','','','',0,'2026-02-09','darshan'),(2379,0,0,509,2923,'2025-11-11',0,'','','','','','','','',0,'2025-12-23','darshan'),(2380,0,0,1692,2922,'2025-11-11',0,'','','','','','','','',0,'2025-11-26','darshan'),(2381,0,0,1223,2936,'2025-11-11',0,'','','','','','','','',0,'','drpratapsi'),(2382,0,0,2217,2939,'2025-11-11',0,'','','','','','','','',0,'','drsagar'),(2383,0,0,1736,2932,'2025-11-11',0,'','','','','','','','',0,'2025-12-23','darshan'),(2384,0,0,493,2929,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2385,0,0,2220,2945,'2025-11-11',0,'','','','','','','','',0,'','drsagar'),(2386,0,0,1865,2952,'2025-11-11',0,'','','','','','','','',0,'','drsagar'),(2387,0,0,1033,2959,'2025-11-11',0,'','','','','','','','',0,'','drsagar'),(2388,0,0,2211,2931,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2389,0,0,1247,2951,'2025-11-11',0,'','','','','','','','',0,'2025-12-23','darshan'),(2390,0,0,2210,2930,'2025-11-11',0,'','','','','','','','',0,'2026-01-10','darshan'),(2391,0,0,2226,2957,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2392,0,0,2212,2933,'2025-11-11',0,'','','','','','','','',0,'2026-01-10','darshan'),(2393,0,0,2225,2956,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2394,0,0,1734,2940,'2025-11-11',0,'','','','','','','','',0,'2025-11-21','darshan'),(2395,0,0,1713,2925,'2025-11-11',0,'','','','','','','','',0,'2025-11-17','drarchit'),(2396,0,0,2215,2937,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2397,0,0,638,2943,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','darshan'),(2398,0,0,1928,2974,'2025-11-11',0,'','','','','','','','',0,'','drsagar'),(2399,0,0,2219,2942,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2400,0,0,1228,2965,'2025-11-11',0,'','','','','','','','',0,'2025-12-23','darshan'),(2401,0,0,2218,2941,'2025-11-11',0,'','','','','','','','',0,'2025-12-01','darshan'),(2402,0,0,1420,2944,'2025-11-11',0,'','','','','','','','',0,'','drarchit'),(2403,0,0,2208,2926,'2025-11-11',0,'','','','','','','','',0,'2025-11-18','drarchit'),(2404,0,0,166,2928,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2405,0,0,1548,2948,'2025-11-11',0,'','','','','','','','',0,'2025-11-21','darshan'),(2406,0,0,2234,2968,'2025-11-11',0,'','','','','','','','',0,'2026-01-10','darshan'),(2407,0,0,2214,2935,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2408,0,0,2223,2954,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2409,0,0,2222,2953,'2025-11-11',0,'','','','','','','','',0,'2025-12-22','darshan'),(2410,0,0,1273,2967,'2025-11-11',0,'','','','','','','','',0,'2025-11-18','drarchit'),(2411,0,0,2228,2960,'2025-11-11',0,'','','','','','','','',0,'2025-12-01','darshan'),(2412,0,0,2224,2955,'2025-11-11',0,'','','','','','','','',0,'2026-01-10','darshan'),(2413,0,0,2206,2920,'2025-11-11',0,'','','','','','','','',0,'2025-12-11','darshan'),(2414,0,0,2230,2962,'2025-11-11',0,'','','','','','','','',0,'2025-11-18','drarchit'),(2415,0,0,309,2981,'2025-11-11',0,'','','','','','','','',0,'2025-12-26','darshan'),(2416,0,0,816,2975,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2417,0,0,1945,2988,'2025-11-11',0,'','','','','','','','',0,'2025-11-18','darshan'),(2418,0,0,2237,2973,'2025-11-11',0,'','','','','','','','',0,'2026-01-10','darshan'),(2419,0,0,2236,2971,'2025-11-11',0,'','','','','','','','',0,'2025-11-17','drarchit'),(2420,0,0,1085,2972,'2025-11-11',0,'','','','','','','','',0,'2025-11-18','drarchit'),(2421,0,0,284,2993,'2025-11-11',0,'','','','','','','','',0,'2025-12-11','darshan'),(2422,0,0,2238,2976,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2423,0,0,2213,2934,'2025-11-11',0,'','','','','','','','',0,'2025-12-01','darshan'),(2424,0,0,2229,2961,'2025-11-11',0,'','','','','','','','',0,'','drarchit'),(2425,0,0,538,2977,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2426,0,0,2239,2980,'2025-11-11',0,'','','','','','','','',0,'2025-12-11','darshan'),(2427,0,0,21,2992,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2428,0,0,2240,2982,'2025-11-11',0,'','','','','','','','',0,'2025-12-11','darshan'),(2429,0,0,1511,2990,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2430,0,0,2241,2983,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2431,0,0,2242,2984,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2432,0,0,2243,2985,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2433,0,0,2207,2924,'2025-11-11',0,'','','','','','','','',0,'2025-12-01','darshan'),(2434,0,0,773,2970,'2025-11-11',0,'','','','','','','','',0,'2025-12-11','drarchit'),(2435,0,0,2199,2907,'2025-11-11',0,'','','','','','','','',0,'2025-11-21','darshan'),(2436,0,0,2232,2964,'2025-11-11',0,'','','','','','','','',0,'2025-11-26','drarchit'),(2437,0,0,508,2989,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2438,0,0,2231,2963,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2439,0,0,2216,2938,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2440,0,0,2235,2969,'2025-11-11',0,'','','','','','','','',0,'2025-12-11','darshan'),(2441,0,0,2246,2995,'2025-11-11',0,'','','','','','','','',0,'2026-02-19','drarchit'),(2442,0,0,2248,2997,'2025-11-11',0,'','','','','','','','',0,'2025-11-21','darshan'),(2443,0,0,2244,2986,'2025-11-11',0,'','','','','','','','',0,'','darshan'),(2444,0,0,997,3000,'2025-11-11',0,'','','','','','','','',0,'2025-12-11','darshan'),(2445,0,0,2249,2998,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','darshan'),(2446,0,0,460,3003,'2025-11-11',0,'','','','','','','','',0,'2026-01-10','darshan'),(2447,0,0,347,3009,'2025-11-11',0,'','','','','','','','',0,'2025-12-23','darshan'),(2448,0,0,2252,3005,'2025-11-11',0,'','','','','','','','',0,'2025-11-18','drarchit'),(2449,0,0,2089,2710,'2025-11-11',0,'','','','','','','','',0,'','darshan'),(2450,0,0,2227,2958,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2451,0,0,2251,3001,'2025-11-11',0,'','','','','','','','',0,'2025-12-11','darshan'),(2452,0,0,2254,3010,'2025-11-11',0,'','','','','','','','',0,'2025-12-01','drarchit'),(2453,0,0,1674,3012,'2025-11-11',0,'','','','','','','','',0,'2025-11-18','drarchit'),(2454,0,0,1985,2978,'2025-11-11',0,'','','','','','','','',0,'','drsagar'),(2455,0,0,2245,2991,'2025-11-11',0,'','','','','','','','',0,'','drsagar'),(2456,0,0,2221,2947,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2457,0,0,2256,3013,'2025-11-11',0,'','','','','','','','',0,'2025-11-26','drarchit'),(2458,0,0,2250,2999,'2025-11-11',0,'','','','','','','','',0,'2025-11-21','darshan'),(2459,0,0,2258,3016,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2460,0,0,2259,3017,'2025-11-11',0,'','','','','','','','',0,'2025-11-18','drarchit'),(2461,0,0,1397,3025,'2025-11-11',0,'','','','','','','','',0,'2025-11-17','darshan'),(2462,0,0,357,3028,'2025-11-11',0,'','','','','','','','',0,'2025-12-22','darshan'),(2463,0,0,2233,2966,'2025-11-11',0,'','','','','','','','',0,'2025-11-21','drarchit'),(2464,0,0,2005,3014,'2025-11-11',0,'','','','','','','','',0,'','drpratapsi'),(2465,0,0,2118,3021,'2025-11-11',0,'','','','','','','','',0,'','drpratapsi'),(2466,0,0,2265,3024,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2467,0,0,118,3036,'2025-11-11',0,'','','','','','','','',0,'','drpratapsi'),(2468,0,0,2191,2949,'2025-11-11',0,'','','','','','','','',0,'','drpratapsi'),(2469,0,0,271,2946,'2025-11-11',0,'','','','','','','','',0,'','drpratapsi'),(2470,0,0,2198,2950,'2025-11-11',0,'','','','','','','','',0,'','drpratapsi'),(2471,0,0,2276,3042,'2025-11-11',0,'','','','','','','','',0,'','drpratapsi'),(2472,0,0,2247,2996,'2025-11-11',0,'','','','','','','','',0,'','drpratapsi'),(2473,0,0,1133,3008,'2025-11-11',0,'','','','','','','','',0,'','drpratapsi'),(2474,0,0,2266,3026,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2475,0,0,2262,3020,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2476,0,0,1976,3004,'2025-11-11',0,'','','','','','','','',0,'','drpratapsi'),(2477,0,0,1663,3040,'2025-11-11',0,'','','','','','','','',0,'2025-11-21','darshan'),(2478,0,0,1521,3043,'2025-11-11',0,'','','','','','','','',0,'','drpratapsi'),(2479,0,0,983,3044,'2025-11-11',0,'','','','','','','','',0,'','drpratapsi'),(2480,0,0,2270,3033,'2025-11-11',0,'','','','','','','','',0,'2025-12-11','drarchit'),(2481,0,0,2269,3032,'2025-11-11',0,'','','','','','','','',0,'','drsagar'),(2482,0,0,2260,3018,'2025-11-11',0,'','','','','','','','',0,'','drpratapsi'),(2483,0,0,892,3034,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2484,0,0,2253,3007,'2025-11-11',0,'','','','','','','','',0,'','drpratapsi'),(2485,0,0,2257,3015,'2025-11-11',0,'','','','','','','','',0,'2025-11-21','darshan'),(2486,0,0,2263,3022,'2025-11-11',0,'','','','','','','','',0,'2026-02-19','drarchit'),(2487,0,0,2267,3030,'2025-11-11',0,'','','','','','','','',0,'','darshan'),(2488,0,0,2274,3039,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2489,0,0,2264,3023,'2025-11-11',0,'','','','','','','','',0,'2025-12-01','darshan'),(2490,0,0,2271,3035,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2491,0,0,2273,3038,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2492,0,0,2278,3046,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2493,0,0,2268,3031,'2025-11-11',0,'','','','','','','','',0,'2025-11-21','darshan'),(2494,0,0,2279,3047,'2025-11-11',0,'','','','','','','','',0,'','drarchit'),(2495,0,0,2261,3019,'2025-11-11',0,'','','','','','','','',0,'2025-12-01','darshan'),(2496,0,0,2280,3048,'2025-11-11',0,'','','','','','','','',0,'','drarchit'),(2497,0,0,1321,3029,'2025-11-11',0,'','','','','','','','',0,'','drarchit'),(2498,0,0,2272,3037,'2025-11-11',0,'','','','','','','','',0,'2025-11-18','drarchit'),(2499,0,0,2277,3045,'2025-11-11',0,'','','','','','','','',0,'2025-12-01','darshan'),(2500,0,0,2281,3050,'2025-11-11',0,'','','','','','','','',0,'2025-11-18','drarchit'),(2501,0,0,2282,3051,'2025-11-11',0,'','','','','','','','',0,'2025-11-18','drarchit'),(2502,0,0,2283,3052,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2503,0,0,2284,3053,'2025-11-11',0,'','','','','','','','',0,'2026-02-09','drarchit'),(2504,0,0,2294,3066,'2025-11-12',0,'','','','','','','','',0,'2026-01-12','darshan'),(2505,0,0,2292,3061,'2025-11-12',0,'','','','','','','','',0,'2026-02-10','drarchit'),(2506,0,0,2293,3063,'2025-11-12',0,'','','','','','','','',0,'','drarchit'),(2507,0,0,1097,3068,'2025-11-12',0,'','','','','','','','',0,'2025-12-22','darshan'),(2508,0,0,2295,3067,'2025-11-12',0,'','','','','','','','',0,'2026-02-10','drarchit'),(2509,0,0,1715,3062,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2510,0,0,1288,3077,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2511,0,0,2289,3058,'2025-11-12',0,'','','','','','','','',0,'2025-12-12','drarchit'),(2512,0,0,2301,3075,'2025-11-12',0,'','','','','','','','',0,'','drsagar'),(2513,0,0,2297,3070,'2025-11-12',0,'','','','','','','','',0,'2026-01-12','darshan'),(2514,0,0,2296,3069,'2025-11-12',0,'','','','','','','','',0,'2026-02-10','drarchit'),(2515,0,0,2298,3071,'2025-11-12',0,'','','','','','','','',0,'2026-02-10','darshan'),(2516,0,0,2309,3085,'2025-11-12',0,'','','','','','','','',0,'','drsagar'),(2517,0,0,1235,3076,'2025-11-12',0,'','','','','','','','',0,'2026-02-10','drarchit'),(2518,0,0,2303,3079,'2025-11-12',0,'','','','','','','','',0,'2025-11-19','darshan'),(2519,0,0,2310,3086,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2520,0,0,2305,3081,'2025-11-12',0,'','','','','','','','',0,'2026-02-10','drarchit'),(2521,0,0,2302,3078,'2025-11-12',0,'','','','','','','','',0,'2025-12-22','darshan'),(2522,0,0,2312,3091,'2025-11-12',0,'','','','','','','','',0,'','drsagar'),(2523,0,0,2315,3095,'2025-11-12',0,'','','','','','','','',0,'','drsagar'),(2524,0,0,472,3072,'2025-11-12',0,'','','','','','','','',0,'2025-12-27','darshan'),(2525,0,0,2304,3080,'2025-11-12',0,'','','','','','','','',0,'2026-03-12','darshan'),(2526,0,0,1824,3064,'2025-11-12',0,'','','','','','','','',0,'2025-11-22','darshan'),(2527,0,0,2307,3083,'2025-11-12',0,'','','','','','','','',0,'2025-11-27','darshan'),(2528,0,0,2318,3099,'2025-11-12',0,'','','','','','','','',0,'2026-02-10','drarchit'),(2529,0,0,2313,3093,'2025-11-12',0,'','','','','','','','',0,'2026-01-12','darshan'),(2530,0,0,2308,3084,'2025-11-12',0,'','','','','','','','',0,'2026-03-12','darshan'),(2531,0,0,20,3065,'2025-11-12',0,'','','','','','','','',0,'2026-01-12','drarchit'),(2532,0,0,2316,3096,'2025-11-12',0,'','','','','','','','',0,'2026-03-12','darshan'),(2533,0,0,764,3087,'2025-11-12',0,'','','','','','','','',0,'2025-12-27','darshan'),(2534,0,0,2320,3102,'2025-11-12',0,'','','','','','','','',0,'2026-02-20','drarchit'),(2535,0,0,755,3089,'2025-11-12',0,'','','','','','','','',0,'2025-12-12','darshan'),(2536,0,0,2072,3101,'2025-11-12',0,'','','','','','','','',0,'2025-11-19','drarchit'),(2537,0,0,2314,3094,'2025-11-12',0,'','','','','','','','',0,'2026-01-12','darshan'),(2538,0,0,2322,3106,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2539,0,0,2299,3073,'2025-11-12',0,'','','','','','','','',0,'2025-12-27','darshan'),(2540,0,0,2319,3100,'2025-11-12',0,'','','','','','','','',0,'2026-02-10','drarchit'),(2541,0,0,510,3090,'2025-11-12',0,'','','','','','','','',0,'2025-12-22','darshan'),(2542,0,0,2321,3104,'2025-11-12',0,'','','','','','','','',0,'','drarchit'),(2543,0,0,199,3105,'2025-11-12',0,'','','','','','','','',0,'2025-11-27','drarchit'),(2544,0,0,2291,3060,'2025-11-12',0,'','','','','','','','',0,'2025-12-12','darshan'),(2545,0,0,1556,3092,'2025-11-12',0,'','','','','','','','',0,'2025-11-19','drarchit'),(2546,0,0,2317,3098,'2025-11-12',0,'','','','','','','','',0,'2025-11-19','darshan'),(2547,0,0,2326,3110,'2025-11-12',0,'','','','','','','','',0,'2025-11-19','drarchit'),(2548,0,0,562,3103,'2025-11-12',0,'','','','','','','','',0,'2025-12-12','darshan'),(2549,0,0,2324,3108,'2025-11-12',0,'','','','','','','','',0,'2026-02-10','drarchit'),(2550,0,0,240,3097,'2025-11-12',0,'','','','','','','','',0,'','drarchit'),(2551,0,0,2300,3074,'2025-11-12',0,'','','','','','','','',0,'2025-12-02','darshan'),(2552,0,0,2325,3109,'2025-11-12',0,'','','','','','','','',0,'2025-11-17','drarchit'),(2553,0,0,1011,3116,'2025-11-12',0,'','','','','','','','',0,'2025-12-22','darshan'),(2554,0,0,2330,3117,'2025-11-12',0,'','','','','','','','',0,'','darshan'),(2555,0,0,1463,3118,'2025-11-12',0,'','','','','','','','',0,'','darshan'),(2556,0,0,745,3120,'2025-11-12',0,'','','','','','','','',0,'','darshan'),(2557,0,0,2331,3121,'2025-11-12',0,'','','','','','','','',0,'','darshan'),(2558,0,0,750,3119,'2025-11-12',0,'','','','','','','','',0,'2025-12-22','darshan'),(2559,0,0,2334,3125,'2025-11-12',0,'','','','','','','','',0,'2026-01-12','darshan'),(2560,0,0,1089,3123,'2025-11-12',0,'','','','','','','','',0,'2025-12-12','darshan'),(2561,0,0,2335,3126,'2025-11-12',0,'','','','','','','','',0,'2026-02-20','darshan'),(2562,0,0,2337,3129,'2025-11-12',0,'','','','','','','','',0,'2025-11-17','darshan'),(2563,0,0,2345,3139,'2025-11-12',0,'','','','','','','','',0,'2025-12-12','darshan'),(2564,0,0,2328,3112,'2025-11-12',0,'','','','','','','','',0,'','drsagar'),(2565,0,0,1060,3152,'2025-11-12',0,'','','','','','','','',0,'','drsagar'),(2566,0,0,2343,3135,'2025-11-12',0,'','','','','','','','',0,'2026-01-12','darshan'),(2567,0,0,1467,3127,'2025-11-12',0,'','','','','','','','',0,'','darshan'),(2568,0,0,2344,3137,'2025-11-12',0,'','','','','','','','',0,'2026-01-12','darshan'),(2569,0,0,2342,3134,'2025-11-12',0,'','','','','','','','',0,'2025-11-22','darshan'),(2570,0,0,2311,3088,'2025-11-12',0,'','','','','','','','',0,'2026-02-10','drarchit'),(2571,0,0,2348,3144,'2025-11-12',0,'','','','','','','','',0,'2026-01-12','darshan'),(2572,0,0,2346,3140,'2025-11-12',0,'','','','','','','','',0,'2026-02-10','drarchit'),(2573,0,0,2287,3056,'2025-11-12',0,'','','','','','','','',0,'','drarchit'),(2574,0,0,2333,3124,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2575,0,0,943,3155,'2025-11-12',0,'','','','','','','','',0,'','darshan'),(2576,0,0,2341,3133,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2577,0,0,2339,3131,'2025-11-12',0,'','','','','','','','',0,'2025-12-02','darshan'),(2578,0,0,2005,3141,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2579,0,0,2290,3059,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2580,0,0,2336,3128,'2025-11-12',0,'','','','','','','','',0,'2025-12-12','darshan'),(2581,0,0,2347,3143,'2025-11-12',0,'','','','','','','','',0,'2026-02-10','drarchit'),(2582,0,0,1759,3153,'2025-11-12',0,'','','','','','','','',0,'2025-12-12','darshan'),(2583,0,0,2095,3142,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2584,0,0,2356,3157,'2025-11-12',0,'','','','','','','','',0,'2026-02-20','drarchit'),(2585,0,0,2349,3145,'2025-11-12',0,'','','','','','','','',0,'2025-11-22','drarchit'),(2586,0,0,592,3148,'2025-11-12',0,'','','','','','','','',0,'2025-12-22','darshan'),(2587,0,0,2118,3163,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2588,0,0,1976,3160,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2589,0,0,221,3158,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2590,0,0,2051,3138,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2591,0,0,1953,3136,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2592,0,0,2353,3151,'2025-11-12',0,'','','','','','','','',0,'2026-01-12','drarchit'),(2593,0,0,2340,3132,'2025-11-12',0,'','','','','','','','',0,'2025-11-22','darshan'),(2594,0,0,2358,3161,'2025-11-12',0,'','','','','','','','',0,'2026-02-10','drarchit'),(2595,0,0,2352,3150,'2025-11-12',0,'','','','','','','','',0,'2025-11-17','darshan'),(2596,0,0,2338,3130,'2025-11-12',0,'','','','','','','','',0,'2026-02-10','drarchit'),(2597,0,0,494,3170,'2025-11-12',0,'','','','','','','','',0,'2026-02-20','drarchit'),(2598,0,0,2367,3174,'2025-11-12',0,'','','','','','','','',0,'','drsagar'),(2599,0,0,2362,3168,'2025-11-12',0,'','','','','','','','',0,'2025-11-19','darshan'),(2600,0,0,1585,3167,'2025-11-12',0,'','','','','','','','',0,'','drarchit'),(2601,0,0,2332,3122,'2025-11-12',0,'','','','','','','','',0,'2026-02-10','drarchit'),(2602,0,0,2350,3147,'2025-11-12',0,'','','','','','','','',0,'','darshan'),(2603,0,0,2361,3166,'2025-11-12',0,'','','','','','','','',0,'2025-11-19','darshan'),(2604,0,0,2369,3177,'2025-11-12',0,'','','','','','','','',0,'2026-02-20','drarchit'),(2605,0,0,2371,3179,'2025-11-12',0,'','','','','','','','',0,'2026-02-20','drarchit'),(2606,0,0,2373,3181,'2025-11-12',0,'','','','','','','','',0,'2026-01-12','darshan'),(2607,0,0,2376,3184,'2025-11-12',0,'','','','','','','','',0,'','drsagar'),(2608,0,0,618,3146,'2025-11-12',0,'','','','','','','','',0,'2026-02-10','drarchit'),(2609,0,0,2363,3169,'2025-11-12',0,'','','','','','','','',0,'2025-11-19','drarchit'),(2610,0,0,2377,3186,'2025-11-12',0,'','','','','','','','',0,'','darshan'),(2611,0,0,2329,3115,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2612,0,0,2378,3187,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2613,0,0,1978,3189,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2614,0,0,1775,3185,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2615,0,0,2360,3165,'2025-11-12',0,'','','','','','','','',0,'','drpratapsi'),(2616,0,0,2368,3175,'2025-11-12',0,'','','','','','','','',0,'2025-12-12','drarchit'),(2617,0,0,2370,3178,'2025-11-12',0,'','','','','','','','',0,'2025-11-22','drarchit'),(2618,0,0,2374,3182,'2025-11-12',0,'','','','','','','','',0,'2025-12-02','darshan'),(2619,0,0,1491,3188,'2025-11-12',0,'','','','','','','','',0,'2025-12-12','drarchit'),(2620,0,0,1767,3197,'2025-11-13',0,'','','','','','','','',0,'2025-12-25','darshan'),(2621,0,0,813,3199,'2025-11-13',0,'','','','','','','','',0,'2025-12-13','darshan'),(2622,0,0,2379,3191,'2025-11-13',0,'','','','','','','','',0,'','drarchit'),(2623,0,0,2386,3202,'2025-11-13',0,'','','','','','','','',0,'2025-12-13','darshan'),(2624,0,0,2391,3210,'2025-11-13',0,'','','','','','','','',0,'','drpratapsi'),(2625,0,0,2382,3195,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(2626,0,0,1053,3204,'2025-11-13',0,'','','','','','','','',0,'2025-12-13','darshan'),(2627,0,0,2384,3200,'2025-11-13',0,'','','','','','','','',0,'2026-01-12','darshan'),(2628,0,0,2381,3193,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(2629,0,0,2380,3192,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(2630,0,0,2357,3159,'2025-11-13',0,'','','','','','','','',0,'','drarchit'),(2631,0,0,2394,3214,'2025-11-13',0,'','','','','','','','',0,'2026-01-12','darshan'),(2632,0,0,2395,3215,'2025-11-13',0,'','','','','','','','',0,'','drpratapsi'),(2633,0,0,1130,3207,'2025-11-13',0,'','','','','','','','',0,'2025-12-13','darshan'),(2634,0,0,514,3216,'2025-11-13',0,'','','','','','','','',0,'','drsagar'),(2635,0,0,2393,3212,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(2636,0,0,2396,3217,'2025-11-13',0,'','','','','','','','',0,'2025-11-20','drarchit'),(2637,0,0,2387,3203,'2025-11-13',0,'','','','','','','','',0,'2026-01-12','darshan'),(2638,0,0,601,3213,'2025-11-13',0,'','','','','','','','',0,'2026-01-12','drarchit'),(2639,0,0,2400,3222,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(2640,0,0,1758,3205,'2025-11-13',0,'','','','','','','','',0,'2025-12-25','darshan'),(2641,0,0,2389,3208,'2025-11-13',0,'','','','','','','','',0,'2025-12-23','darshan'),(2642,0,0,2405,3229,'2025-11-13',0,'','','','','','','','',0,'2025-12-23','darshan'),(2643,0,0,721,3223,'2025-11-13',0,'','','','','','','','',0,'2025-11-28','drarchit'),(2644,0,0,2392,3211,'2025-11-13',0,'','','','','','','','',0,'2025-11-18','darshan'),(2645,0,0,2404,3227,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(2646,0,0,1747,3228,'2025-11-13',0,'','','','','','','','',0,'2025-11-24','drarchit'),(2647,0,0,1687,3218,'2025-11-13',0,'','','','','','','','',0,'2025-12-25','darshan'),(2648,0,0,2398,3220,'2025-11-13',0,'','','','','','','','',0,'2025-12-13','darshan'),(2649,0,0,2355,3156,'2025-11-13',0,'','','','','','','','',0,'','drarchit'),(2650,0,0,1866,3230,'2025-11-13',0,'','','','','','','','',0,'2025-11-24','darshan'),(2651,0,0,943,3155,'2025-11-13',0,'','','','','','','','',0,'2025-11-24','darshan'),(2652,0,0,708,3231,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(2653,0,0,2402,3225,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(2654,0,0,349,3234,'2025-11-13',0,'','','','','','','','',0,'2025-12-03','darshan'),(2655,0,0,2403,3226,'2025-11-13',0,'','','','','','','','',0,'2025-11-20','drarchit'),(2656,0,0,2287,3056,'2025-11-13',0,'','','','','','','','',0,'','drarchit'),(2657,0,0,2390,3209,'2025-11-13',0,'','','','','','','','',0,'2025-11-24','darshan'),(2658,0,0,1096,3243,'2025-11-13',0,'','','','','','','','',0,'2025-12-13','darshan'),(2659,0,0,2399,3221,'2025-11-13',0,'','','','','','','','',0,'2025-11-24','darshan'),(2660,0,0,2409,3239,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(2661,0,0,2410,3240,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(2662,0,0,2406,3233,'2025-11-13',0,'','','','','','','','',0,'2025-12-03','darshan'),(2663,0,0,2411,3241,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(2664,0,0,1100,3237,'2025-11-13',0,'','','','','','','','',0,'','drarchit'),(2665,0,0,2385,3201,'2025-11-13',0,'','','','','','','','',0,'2025-11-20','drarchit'),(2666,0,0,2401,3224,'2025-11-13',0,'','','','','','','','',0,'','drarchit'),(2667,0,0,2413,3245,'2025-11-13',0,'','','','','','','','',0,'','drarchit'),(2668,0,0,2383,3198,'2025-11-13',0,'','','','','','','','',0,'2026-03-13','darshan'),(2669,0,0,2408,3238,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(2670,0,0,2407,3235,'2025-11-13',0,'','','','','','','','',0,'2025-11-24','darshan'),(2671,0,0,1189,3246,'2025-11-13',0,'','','','','','','','',0,'2025-12-03','darshan'),(2672,0,0,1882,3244,'2025-11-13',0,'','','','','','','','',0,'2025-12-03','darshan'),(2673,0,0,2415,3248,'2025-11-13',0,'','','','','','','','',0,'2026-02-21','darshan'),(2674,0,0,2417,3251,'2025-11-13',0,'','','','','','','','',0,'2025-12-13','darshan'),(2675,0,0,1806,3256,'2025-11-13',0,'','','','','','','','',0,'2025-11-24','darshan'),(2676,0,0,2421,3255,'2025-11-13',0,'','','','','','','','',0,'2025-12-29','darshan'),(2677,0,0,2420,3254,'2025-11-13',0,'','','','','','','','',0,'2025-12-13','darshan'),(2678,0,0,1462,3257,'2025-11-13',0,'','','','','','','','',0,'2025-12-13','darshan'),(2679,0,0,2422,3258,'2025-11-13',0,'','','','','','','','',0,'2026-01-12','darshan'),(2680,0,0,2425,3261,'2025-11-13',0,'','','','','','','','',0,'2026-01-12','darshan'),(2681,0,0,545,3268,'2025-11-13',0,'','','','','','','','',0,'','drsagar'),(2682,0,0,2428,3265,'2025-11-13',0,'','','','','','','','',0,'2026-01-12','darshan'),(2683,0,0,2431,3269,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','darshan'),(2684,0,0,2419,3253,'2025-11-13',0,'','','','','','','','',0,'2025-12-03','darshan'),(2685,0,0,2397,3219,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(2686,0,0,2350,3147,'2025-11-13',0,'','','','','','','','',0,'2025-12-03','darshan'),(2687,0,0,2416,3249,'2025-11-13',0,'','','','','','','','',0,'2025-12-13','drarchit'),(2688,0,0,2356,3250,'2025-11-13',0,'','','','','','','','',0,'','drarchit'),(2689,0,0,2424,3260,'2025-11-13',0,'','','','','','','','',0,'2025-12-03','darshan'),(2690,0,0,2429,3266,'2025-11-13',0,'','','','','','','','',0,'2025-11-18','darshan'),(2691,0,0,2432,3270,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(2692,0,0,2097,3280,'2025-11-13',0,'','','','','','','','',0,'2025-11-20','darshan'),(2693,0,0,2423,3259,'2025-11-13',0,'','','','','','','','',0,'2025-12-03','darshan'),(2694,0,0,580,3286,'2025-11-13',0,'','','','','','','','',0,'','drsagar'),(2695,0,0,2436,3277,'2025-11-13',0,'','','','','','','','',0,'','drarchit'),(2696,0,0,2435,3276,'2025-11-13',0,'','','','','','','','',0,'','drarchit'),(2697,0,0,2426,3262,'2025-11-13',0,'','','','','','','','',0,'2025-12-03','darshan'),(2698,0,0,662,3281,'2025-11-13',0,'','','','','','','','',0,'2025-11-18','darshan'),(2699,0,0,2440,3289,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(2700,0,0,637,3273,'2025-11-13',0,'','','','','','','','',0,'2025-12-23','darshan'),(2701,0,0,2359,3162,'2025-11-13',0,'','','','','','','','',0,'2026-02-10','drarchit'),(2702,0,0,2437,3278,'2025-11-13',0,'','','','','','','','',0,'2026-01-12','darshan'),(2703,0,0,2433,3271,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(2704,0,0,2438,3282,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(2705,0,0,536,3288,'2025-11-13',0,'','','','','','','','',0,'2025-12-13','darshan'),(2706,0,0,2388,3206,'2025-11-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(2707,0,0,1156,3284,'2025-11-13',0,'','','','','','','','',0,'2025-12-13','drarchit'),(2708,0,0,1606,3283,'2025-11-13',0,'','','','','','','','',0,'2025-11-24','drarchit'),(2709,0,0,2447,3300,'2025-11-14',0,'','','','','','','','',0,'2026-02-12','drarchit'),(2710,0,0,1857,3305,'2025-11-14',0,'','','','','','','','',0,'2025-12-04','darshan'),(2711,0,0,2452,3308,'2025-11-14',0,'','','','','','','','',0,'2026-01-13','darshan'),(2712,0,0,2453,3309,'2025-11-14',0,'','','','','','','','',0,'2026-02-23','darshan'),(2713,0,0,2449,3304,'2025-11-14',0,'','','','','','','','',0,'2026-03-14','darshan'),(2714,0,0,586,3312,'2025-11-14',0,'','','','','','','','',0,'2026-02-12','drarchit'),(2715,0,0,495,3303,'2025-11-14',0,'','','','','','','','',0,'2025-11-24','drarchit'),(2716,0,0,2456,3313,'2025-11-14',0,'','','','','','','','',0,'2026-01-13','darshan'),(2717,0,0,589,3320,'2025-11-14',0,'','','','','','','','',0,'2025-12-24','darshan'),(2718,0,0,2464,3326,'2025-11-14',0,'','','','','','','','',0,'2026-01-13','darshan'),(2719,0,0,2467,3330,'2025-11-14',0,'','','','','','','','',0,'','drsagar'),(2720,0,0,2457,3314,'2025-11-14',0,'','','','','','','','',0,'2026-02-12','darshan'),(2721,0,0,741,3319,'2025-11-14',0,'','','','','','','','',0,'2026-01-13','darshan'),(2722,0,0,2444,3296,'2025-11-14',0,'','','','','','','','',0,'2025-11-24','drarchit'),(2723,0,0,2446,3298,'2025-11-14',0,'','','','','','','','',0,'2025-12-04','darshan'),(2724,0,0,1928,3334,'2025-11-14',0,'','','','','','','','',0,'','drsagar'),(2725,0,0,923,3339,'2025-11-14',0,'','','','','','','','',0,'','drsagar'),(2726,0,0,2473,3338,'2025-11-14',0,'','','','','','','','',0,'2025-11-24','drarchit'),(2727,0,0,2451,3307,'2025-11-14',0,'','','','','','','','',0,'2025-12-04','darshan'),(2728,0,0,2462,3324,'2025-11-14',0,'','','','','','','','',0,'2026-05-13','drarchit'),(2729,0,0,2474,3340,'2025-11-14',0,'','','','','','','','',0,'','drsagar'),(2730,0,0,2454,3310,'2025-11-14',0,'','','','','','','','',0,'','drarchit'),(2731,0,0,2466,3329,'2025-11-14',0,'','','','','','','','',0,'2025-11-24','drarchit'),(2732,0,0,2479,3345,'2025-11-14',0,'','','','','','','','',0,'','drsagar'),(2733,0,0,2460,3321,'2025-11-14',0,'','','','','','','','',0,'2025-11-24','drarchit'),(2734,0,0,2450,3306,'2025-11-14',0,'','','','','','','','',0,'2025-11-24','drarchit'),(2735,0,0,1356,3331,'2025-11-14',0,'','','','','','','','',0,'2025-12-24','darshan'),(2736,0,0,2463,3325,'2025-11-14',0,'','','','','','','','',0,'','darshan'),(2737,0,0,2448,3302,'2025-11-14',0,'','','','','','','','',0,'2025-11-24','darshan'),(2738,0,0,2475,3341,'2025-11-14',0,'','','','','','','','',0,'','drarchit'),(2739,0,0,2459,3318,'2025-11-14',0,'','','','','','','','',0,'','drarchit'),(2740,0,0,2455,3311,'2025-11-14',0,'','','','','','','','',0,'2025-11-19','darshan'),(2741,0,0,2476,3342,'2025-11-14',0,'','','','','','','','',0,'2026-01-13','darshan'),(2742,0,0,2469,3333,'2025-11-14',0,'','','','','','','','',0,'2026-02-12','drarchit'),(2743,0,0,2481,3347,'2025-11-14',0,'','','','','','','','',0,'2025-11-21','drarchit'),(2744,0,0,2478,3344,'2025-11-14',0,'','','','','','','','',0,'2026-02-12','drarchit'),(2745,0,0,2484,3355,'2025-11-14',0,'','','','','','','','',0,'2025-12-04','darshan'),(2746,0,0,2490,3363,'2025-11-14',0,'','','','','','','','',0,'2026-01-13','darshan'),(2747,0,0,1642,3351,'2025-11-14',0,'','','','','','','','',0,'','darshan'),(2748,0,0,1147,3353,'2025-11-14',0,'','','','','','','','',0,'2025-12-04','darshan'),(2749,0,0,75,3354,'2025-11-14',0,'','','','','','','','',0,'','darshan'),(2750,0,0,2485,3356,'2025-11-14',0,'','','','','','','','',0,'','darshan'),(2751,0,0,2482,3350,'2025-11-14',0,'','','','','','','','',0,'','drarchit'),(2752,0,0,2487,3359,'2025-11-14',0,'','','','','','','','',0,'','darshan'),(2753,0,0,325,3362,'2025-11-14',0,'','','','','','','','',0,'','darshan'),(2754,0,0,2488,3360,'2025-11-14',0,'','','','','','','','',0,'2026-02-12','drarchit'),(2755,0,0,210,3357,'2025-11-14',0,'','','','','','','','',0,'2026-03-14','darshan'),(2756,0,0,2480,3346,'2025-11-14',0,'','','','','','','','',0,'','drsagar'),(2757,0,0,2144,3374,'2025-11-14',0,'','','','','','','','',0,'','drsagar'),(2758,0,0,639,3365,'2025-11-14',0,'','','','','','','','',0,'2025-12-29','darshan'),(2759,0,0,2496,3372,'2025-11-14',0,'','','','','','','','',0,'2026-02-12','drarchit'),(2760,0,0,1901,3371,'2025-11-14',0,'','','','','','','','',0,'2025-11-24','darshan'),(2761,0,0,2493,3368,'2025-11-14',0,'','','','','','','','',0,'2025-12-04','darshan'),(2762,0,0,2412,3242,'2025-11-14',0,'','','','','','','','',0,'','drarchit'),(2763,0,0,2492,3367,'2025-11-14',0,'','','','','','','','',0,'2026-01-09','drarchit'),(2764,0,0,2497,3373,'2025-11-14',0,'','','','','','','','',0,'2025-12-15','darshan'),(2765,0,0,2502,3381,'2025-11-14',0,'','','','','','','','',0,'','drsagar'),(2766,0,0,1390,3382,'2025-11-14',0,'','','','','','','','',0,'','drsagar'),(2767,0,0,710,3377,'2025-11-14',0,'','','','','','','','',0,'2025-12-15','darshan'),(2768,0,0,2470,3335,'2025-11-14',0,'','','','','','','','',0,'2026-02-12','drarchit'),(2769,0,0,2500,3379,'2025-11-14',0,'','','','','','','','',0,'2026-03-14','darshan'),(2770,0,0,2504,3385,'2025-11-14',0,'','','','','','','','',0,'2025-11-24','drarchit'),(2771,0,0,645,3383,'2025-11-14',0,'','','','','','','','',0,'','drsagar'),(2772,0,0,2501,3380,'2025-11-14',0,'','','','','','','','',0,'2026-02-12','darshan'),(2773,0,0,2495,3370,'2025-11-14',0,'','','','','','','','',0,'','drarchit'),(2774,0,0,2030,3393,'2025-11-14',0,'','','','','','','','',0,'','drsagar'),(2775,0,0,2477,3343,'2025-11-14',0,'','','','','','','','',0,'','drarchit'),(2776,0,0,2483,3352,'2025-11-14',0,'','','','','','','','',0,'2025-11-29','darshan'),(2777,0,0,2486,3358,'2025-11-14',0,'','','','','','','','',0,'2025-12-04','darshan'),(2778,0,0,2505,3386,'2025-11-14',0,'','','','','','','','',0,'2026-02-12','drarchit'),(2779,0,0,2491,3364,'2025-11-14',0,'','','','','','','','',0,'2026-02-12','drarchit'),(2780,0,0,2489,3361,'2025-11-14',0,'','','','','','','','',0,'2025-11-24','darshan'),(2781,0,0,2512,3397,'2025-11-14',0,'','','','','','','','',0,'2026-02-12','drarchit'),(2782,0,0,2142,3398,'2025-11-14',0,'','','','','','','','',0,'','drsagar'),(2783,0,0,2282,3387,'2025-11-14',0,'','','','','','','','',0,'2025-11-21','drarchit'),(2784,0,0,2281,3388,'2025-11-14',0,'','','','','','','','',0,'','drarchit'),(2785,0,0,2507,3391,'2025-11-14',0,'','','','','','','','',0,'2026-02-12','drarchit'),(2786,0,0,764,3087,'2025-11-14',0,'','','','','','','','',0,'2025-12-27','darshan'),(2787,0,0,2508,3392,'2025-11-14',0,'','','','','','','','',0,'2026-02-12','drarchit'),(2788,0,0,2509,3394,'2025-11-14',0,'','','','','','','','',0,'2026-02-12','drarchit'),(2789,0,0,787,3399,'2025-11-14',0,'','','','','','','','',0,'','drarchit'),(2790,0,0,2510,3395,'2025-11-14',0,'','','','','','','','',0,'2026-01-13','drarchit'),(2791,0,0,2511,3396,'2025-11-14',0,'','','','','','','','',0,'2025-11-21','drarchit'),(2792,0,0,2515,3404,'2025-11-15',0,'','','','','','','','',0,'2026-01-14','darshan'),(2793,0,0,2520,3410,'2025-11-15',0,'','','','','','','','',0,'2026-01-14','darshan'),(2794,0,0,1988,3413,'2025-11-15',0,'','','','','','','','',0,'2025-11-25','darshan'),(2795,0,0,2523,3414,'2025-11-15',0,'','','','','','','','',0,'2026-01-14','darshan'),(2796,0,0,2499,3378,'2025-11-15',0,'','','','','','','','',0,'','drarchit'),(2797,0,0,2518,3408,'2025-11-15',0,'','','','','','','','',0,'2026-02-13','drarchit'),(2798,0,0,2524,3415,'2025-11-15',0,'','','','','','','','',0,'2026-01-14','darshan'),(2799,0,0,1649,3416,'2025-11-15',0,'','','','','','','','',0,'2025-12-27','darshan'),(2800,0,0,812,3417,'2025-11-15',0,'','','','','','','','',0,'2025-12-30','darshan'),(2801,0,0,2516,3406,'2025-11-15',0,'','','','','','','','',0,'2027-08-07','drarchit'),(2802,0,0,1949,3419,'2025-11-15',0,'','','','','','','','',0,'2025-12-27','darshan'),(2803,0,0,818,3418,'2025-11-15',0,'','','','','','','','',0,'2025-12-15','drarchit'),(2804,0,0,2519,3409,'2025-11-15',0,'','','','','','','','',0,'','drsagar'),(2805,0,0,2123,3425,'2025-11-15',0,'','','','','','','','',0,'','drsagar'),(2806,0,0,2528,3427,'2025-11-15',0,'','','','','','','','',0,'','drsagar'),(2807,0,0,2531,3433,'2025-11-15',0,'','','','','','','','',0,'2026-02-13','drarchit'),(2808,0,0,1397,3423,'2025-11-15',0,'','','','','','','','',0,'','darshan'),(2809,0,0,627,3426,'2025-11-15',0,'','','','','','','','',0,'2026-01-14','drarchit'),(2810,0,0,2529,3429,'2025-11-15',0,'','','','','','','','',0,'','drsagar'),(2811,0,0,496,3430,'2025-11-15',0,'','','','','','','','',0,'2025-12-30','darshan'),(2812,0,0,2514,3403,'2025-11-15',0,'','','','','','','','',0,'','drarchit'),(2813,0,0,1017,3432,'2025-11-15',0,'','','','','','','','',0,'2025-12-30','darshan'),(2814,0,0,2522,3412,'2025-11-15',0,'','','','','','','','',0,'','darshan'),(2815,0,0,1678,3435,'2025-11-15',0,'','','','','','','','',0,'2025-12-01','darshan'),(2816,0,0,2525,3420,'2025-11-15',0,'','','','','','','','',0,'2025-12-25','darshan'),(2817,0,0,1490,1872,'2025-11-15',0,'','','','','','','','',0,'2025-11-28','drarchit'),(2818,0,0,1474,3437,'2025-11-15',0,'','','','','','','','',0,'2025-12-27','darshan'),(2819,0,0,1945,3439,'2025-11-15',0,'','','','','','','','',0,'2025-11-20','darshan'),(2820,0,0,2517,3407,'2025-11-15',0,'','','','','','','','',0,'2025-11-25','darshan'),(2821,0,0,2535,3441,'2025-11-15',0,'','','','','','','','',0,'2025-12-25','darshan'),(2822,0,0,1464,3442,'2025-11-15',0,'','','','','','','','',0,'','darshan'),(2823,0,0,2527,3422,'2025-11-15',0,'','','','','','','','',0,'2025-11-25','darshan'),(2824,0,0,2532,3434,'2025-11-15',0,'','','','','','','','',0,'2025-12-15','darshan'),(2825,0,0,2536,3443,'2025-11-15',0,'','','','','','','','',0,'2025-11-25','darshan'),(2826,0,0,2526,3421,'2025-11-15',0,'','','','','','','','',0,'2025-11-25','darshan'),(2827,0,0,2537,3444,'2025-11-15',0,'','','','','','','','',0,'2025-11-20','darshan'),(2828,0,0,2538,3445,'2025-11-15',0,'','','','','','','','',0,'2025-11-20','darshan'),(2829,0,0,2534,3440,'2025-11-15',0,'','','','','','','','',0,'2025-11-25','darshan'),(2830,0,0,2540,3447,'2025-11-15',0,'','','','','','','','',0,'2025-12-05','darshan'),(2831,0,0,2546,3460,'2025-11-15',0,'','','','','','','','',0,'','drsagar'),(2832,0,0,1980,3458,'2025-11-15',0,'','','','','','','','',0,'','drsagar'),(2833,0,0,2194,3461,'2025-11-15',0,'','','','','','','','',0,'','drsagar'),(2834,0,0,1421,3480,'2025-11-17',0,'','','','','','','','',0,'2025-12-27','darshan'),(2835,0,0,2557,3483,'2025-11-17',0,'','','','','','','','',0,'2026-01-16','darshan'),(2836,0,0,2047,3485,'2025-11-17',0,'','','','','','','','',0,'2025-11-27','darshan'),(2837,0,0,1993,3486,'2025-11-17',0,'','','','','','','','',0,'2025-12-08','darshan'),(2838,0,0,2560,3491,'2025-11-17',0,'','','','','','','','',0,'','drsagar'),(2839,0,0,2062,3488,'2025-11-17',0,'','','','','','','','',0,'2025-12-08','darshan'),(2840,0,0,2069,3487,'2025-11-17',0,'','','','','','','','',0,'2025-11-27','darshan'),(2841,0,0,2561,3493,'2025-11-17',0,'','','','','','','','',0,'','drsagar'),(2842,0,0,315,3481,'2025-11-17',0,'','','','','','','','',0,'2026-01-16','darshan'),(2843,0,0,2558,3484,'2025-11-17',0,'','','','','','','','',0,'2025-12-17','darshan'),(2844,0,0,759,3494,'2025-11-17',0,'','','','','','','','',0,'','drsagar'),(2845,0,0,2556,3482,'2025-11-17',0,'','','','','','','','',0,'','darshan'),(2846,0,0,1928,3508,'2025-11-17',0,'','','','','','','','',0,'','drsagar'),(2847,0,0,2245,3506,'2025-11-17',0,'','','','','','','','',0,'','drsagar'),(2848,0,0,2568,3509,'2025-11-17',0,'','','','','','','','',0,'','drsagar'),(2849,0,0,2065,3510,'2025-11-17',0,'','','','','','','','',0,'','drsagar'),(2850,0,0,384,3503,'2025-11-17',0,'','','','','','','','',0,'2026-01-01','darshan'),(2851,0,0,1992,3492,'2025-11-17',0,'','','','','','','','',0,'2025-11-27','darshan'),(2852,0,0,961,3504,'2025-11-17',0,'','','','','','','','',0,'2025-12-27','darshan'),(2853,0,0,2562,3495,'2025-11-17',0,'','','','','','','','',0,'2026-02-25','darshan'),(2854,0,0,1353,3496,'2025-11-17',0,'','','','','','','','',0,'2025-12-17','darshan'),(2855,0,0,2559,3489,'2025-11-17',0,'','','','','','','','',0,'2025-11-27','darshan'),(2856,0,0,2056,3497,'2025-11-17',0,'','','','','','','','',0,'2025-12-17','darshan'),(2857,0,0,2141,3499,'2025-11-17',0,'','','','','','','','',0,'2025-12-08','darshan'),(2858,0,0,2565,3502,'2025-11-17',0,'','','','','','','','',0,'2026-01-31','darshan'),(2859,0,0,2570,3513,'2025-11-17',0,'','','','','','','','',0,'2026-02-25','darshan'),(2860,0,0,2563,3498,'2025-11-17',0,'','','','','','','','',0,'2025-11-27','darshan'),(2861,0,0,2572,3515,'2025-11-17',0,'','','','','','','','',0,'2026-01-16','darshan'),(2862,0,0,2567,3507,'2025-11-17',0,'','','','','','','','',0,'2025-11-27','darshan'),(2863,0,0,848,3512,'2025-11-17',0,'','','','','','','','',0,'2025-12-17','darshan'),(2864,0,0,2571,3514,'2025-11-17',0,'','','','','','','','',0,'2025-11-27','darshan'),(2865,0,0,2564,3500,'2025-11-17',0,'','','','','','','','',0,'2025-12-17','darshan'),(2866,0,0,27,3516,'2025-11-17',0,'','','','','','','','',0,'2026-01-16','darshan'),(2867,0,0,2573,3518,'2025-11-17',0,'','','','','','','','',0,'2026-01-16','darshan'),(2868,0,0,2566,3505,'2025-11-17',0,'','','','','','','','',0,'2025-11-27','darshan'),(2869,0,0,796,3520,'2025-11-17',0,'','','','','','','','',0,'2026-01-16','darshan'),(2870,0,0,952,3523,'2025-11-17',0,'','','','','','','','',0,'2026-01-16','darshan'),(2871,0,0,2096,3525,'2025-11-17',0,'','','','','','','','',0,'','darshan'),(2872,0,0,219,3526,'2025-11-17',0,'','','','','','','','',0,'2025-12-27','darshan'),(2873,0,0,1875,3533,'2025-11-17',0,'','','','','','','','',0,'2025-11-27','darshan'),(2874,0,0,2582,3535,'2025-11-17',0,'','','','','','','','',0,'','drsagar'),(2875,0,0,2577,3529,'2025-11-17',0,'','','','','','','','',0,'','darshan'),(2876,0,0,2583,3537,'2025-11-17',0,'','','','','','','','',0,'2025-12-27','darshan'),(2877,0,0,2585,3541,'2025-11-17',0,'','','','','','','','',0,'','drsagar'),(2878,0,0,1540,3536,'2025-11-17',0,'','','','','','','','',0,'2025-12-17','darshan'),(2879,0,0,995,3539,'2025-11-17',0,'','','','','','','','',0,'2026-01-01','darshan'),(2880,0,0,1386,3538,'2025-11-17',0,'','','','','','','','',0,'2025-12-02','darshan'),(2881,0,0,2575,3527,'2025-11-17',0,'','','','','','','','',0,'2025-12-08','darshan'),(2882,0,0,2587,3544,'2025-11-17',0,'','','','','','','','',0,'2025-11-27','darshan'),(2883,0,0,2200,3548,'2025-11-17',0,'','','','','','','','',0,'','drsagar'),(2884,0,0,2578,3530,'2025-11-17',0,'','','','','','','','',0,'2025-11-27','darshan'),(2885,0,0,776,3545,'2025-11-17',0,'','','','','','','','',0,'2025-12-27','darshan'),(2886,0,0,2579,3531,'2025-11-17',0,'','','','','','','','',0,'2025-11-27','darshan'),(2887,0,0,2074,3542,'2025-11-17',0,'','','','','','','','',0,'2025-12-29','darshan'),(2888,0,0,2588,3547,'2025-11-17',0,'','','','','','','','',0,'','darshan'),(2889,0,0,2580,3532,'2025-11-17',0,'','','','','','','','',0,'2025-12-17','darshan'),(2890,0,0,2584,3540,'2025-11-17',0,'','','','','','','','',0,'2025-12-02','darshan'),(2891,0,0,2589,3549,'2025-11-17',0,'','','','','','','','',0,'2025-12-17','darshan'),(2892,0,0,1277,3550,'2025-11-17',0,'','','','','','','','',0,'2025-12-17','darshan'),(2893,0,0,2594,3558,'2025-11-18',0,'','','','','','','','',0,'2026-03-18','darshan'),(2894,0,0,2595,3559,'2025-11-18',0,'','','','','','','','',0,'2025-12-03','darshan'),(2895,0,0,2597,3562,'2025-11-18',0,'','','','','','','','',0,'2026-01-17','darshan'),(2896,0,0,2166,3560,'2025-11-18',0,'','','','','','','','',0,'','drsagar'),(2897,0,0,168,3565,'2025-11-18',0,'','','','','','','','',0,'2026-01-17','darshan'),(2898,0,0,2127,3569,'2025-11-18',0,'','','','','','','','',0,'2025-12-30','darshan'),(2899,0,0,917,3571,'2025-11-18',0,'','','','','','','','',0,'2026-01-17','darshan'),(2900,0,0,2220,3574,'2025-11-18',0,'','','','','','','','',0,'','drsagar'),(2901,0,0,865,3572,'2025-11-18',0,'','','','','','','','',0,'2025-12-08','darshan'),(2902,0,0,2599,3573,'2025-11-18',0,'','','','','','','','',0,'2025-12-03','darshan'),(2903,0,0,2602,3577,'2025-11-18',0,'','','','','','','','',0,'2026-01-17','darshan'),(2904,0,0,2603,3579,'2025-11-18',0,'','','','','','','','',0,'','drsagar'),(2905,0,0,2600,3575,'2025-11-18',0,'','','','','','','','',0,'2025-12-18','darshan'),(2906,0,0,2596,3561,'2025-11-18',0,'','','','','','','','',0,'2025-12-18','darshan'),(2907,0,0,2605,3584,'2025-11-18',0,'','','','','','','','',0,'2026-03-18','darshan'),(2908,0,0,1714,3587,'2025-11-18',0,'','','','','','','','',0,'2025-12-08','darshan'),(2909,0,0,2609,3589,'2025-11-18',0,'','','','','','','','',0,'2026-02-26','darshan'),(2910,0,0,2604,3583,'2025-11-18',0,'','','','','','','','',0,'2025-11-28','darshan'),(2911,0,0,250,3593,'2025-11-18',0,'','','','','','','','',0,'2026-01-17','darshan'),(2912,0,0,2607,3586,'2025-11-18',0,'','','','','','','','',0,'2025-11-28','darshan'),(2913,0,0,2610,3590,'2025-11-18',0,'','','','','','','','',0,'2025-12-08','darshan'),(2914,0,0,2612,3596,'2025-11-18',0,'','','','','','','','',0,'','darshan'),(2915,0,0,2611,3592,'2025-11-18',0,'','','','','','','','',0,'2025-11-28','darshan'),(2916,0,0,321,3601,'2025-11-18',0,'','','','','','','','',0,'2026-01-17','darshan'),(2917,0,0,2616,3602,'2025-11-18',0,'','','','','','','','',0,'2025-11-28','darshan'),(2918,0,0,212,3603,'2025-11-18',0,'','','','','','','','',0,'2026-01-17','darshan'),(2919,0,0,2617,3604,'2025-11-18',0,'','','','','','','','',0,'2026-01-17','darshan'),(2920,0,0,2014,3607,'2025-11-18',0,'','','','','','','','',0,'2025-12-03','darshan'),(2921,0,0,2615,3600,'2025-11-18',0,'','','','','','','','',0,'2025-11-28','darshan'),(2922,0,0,2614,3598,'2025-11-18',0,'','','','','','','','',0,'2025-12-18','darshan'),(2923,0,0,2622,3615,'2025-11-18',0,'','','','','','','','',0,'2026-01-17','darshan'),(2924,0,0,1207,3616,'2025-11-18',0,'','','','','','','','',0,'','drsagar'),(2925,0,0,2624,3619,'2025-11-18',0,'','','','','','','','',0,'2026-02-26','darshan'),(2926,0,0,2619,3609,'2025-11-18',0,'','','','','','','','',0,'2025-12-03','darshan'),(2927,0,0,2623,3617,'2025-11-18',0,'','','','','','','','',0,'2025-12-18','darshan'),(2928,0,0,2630,3629,'2025-11-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(2929,0,0,2632,3634,'2025-11-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(2930,0,0,2626,3624,'2025-11-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(2931,0,0,19,3628,'2025-11-19',0,'','','','','','','','',0,'2025-12-29','darshan'),(2932,0,0,2172,3631,'2025-11-19',0,'','','','','','','','',0,'2025-12-31','darshan'),(2933,0,0,278,3646,'2025-11-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(2934,0,0,2625,3622,'2025-11-19',0,'','','','','','','','',0,'','drsagar'),(2935,0,0,924,3633,'2025-11-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(2936,0,0,1985,3656,'2025-11-19',0,'','','','','','','','',0,'','drsagar'),(2937,0,0,2122,3647,'2025-11-19',0,'','','','','','','','',0,'2025-12-31','darshan'),(2938,0,0,2641,3651,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(2939,0,0,2633,3636,'2025-11-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(2940,0,0,395,3650,'2025-11-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(2941,0,0,2645,3658,'2025-11-19',0,'','','','','','','','',0,'','drsagar'),(2942,0,0,2635,3640,'2025-11-19',0,'','','','','','','','',0,'2026-02-27','darshan'),(2943,0,0,2637,3644,'2025-11-19',0,'','','','','','','','',0,'2025-11-24','darshan'),(2944,0,0,2653,3667,'2025-11-19',0,'','','','','','','','',0,'','drsagar'),(2945,0,0,2649,3663,'2025-11-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(2946,0,0,2303,3635,'2025-11-19',0,'','','','','','','','',0,'2025-12-09','darshan'),(2947,0,0,2638,3645,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','darshan'),(2948,0,0,2651,3665,'2025-11-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(2949,0,0,2642,3652,'2025-11-19',0,'','','','','','','','',0,'2025-12-04','darshan'),(2950,0,0,2646,3659,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(2951,0,0,2654,3668,'2025-11-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(2952,0,0,2628,3626,'2025-11-19',0,'','','','','','','','',0,'2025-12-09','darshan'),(2953,0,0,2648,3661,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(2954,0,0,2656,3671,'2025-11-19',0,'','','','','','','','',0,'2026-02-27','darshan'),(2955,0,0,15,3655,'2025-11-19',0,'','','','','','','','',0,'2025-12-19','darshan'),(2956,0,0,2647,3660,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(2957,0,0,602,3682,'2025-11-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(2958,0,0,508,3674,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(2959,0,0,2627,3625,'2025-11-19',0,'','','','','','','','',0,'2025-12-19','darshan'),(2960,0,0,2165,3670,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(2961,0,0,2640,3649,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(2962,0,0,1454,3678,'2025-11-19',0,'','','','','','','','',0,'2025-12-19','drarchit'),(2963,0,0,2659,3677,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(2964,0,0,2634,3639,'2025-11-19',0,'','','','','','','','',0,'2026-01-19','drarchit'),(2965,0,0,2658,3676,'2025-11-19',0,'','','','','','','','',0,'2025-11-26','drarchit'),(2966,0,0,1190,3673,'2025-11-19',0,'','','','','','','','',0,'2025-12-19','darshan'),(2967,0,0,2661,3681,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(2968,0,0,2660,3679,'2025-11-19',0,'','','','','','','','',0,'2025-11-29','darshan'),(2969,0,0,2639,3648,'2025-11-19',0,'','','','','','','','',0,'2025-12-09','darshan'),(2970,0,0,931,3685,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(2971,0,0,2553,3638,'2025-11-19',0,'','','','','','','','',0,'','drarchit'),(2972,0,0,2650,3664,'2025-11-19',0,'','','','','','','','',0,'2025-12-19','darshan'),(2973,0,0,2636,3642,'2025-11-19',0,'','','','','','','','',0,'2026-01-14','drarchit'),(2974,0,0,2657,3672,'2025-11-19',0,'','','','','','','','',0,'2025-11-29','darshan'),(2975,0,0,1326,3686,'2025-11-19',0,'','','','','','','','',0,'2025-12-29','darshan'),(2976,0,0,2663,3688,'2025-11-19',0,'','','','','','','','',0,'','darshan'),(2977,0,0,2664,3689,'2025-11-19',0,'','','','','','','','',0,'','darshan'),(2978,0,0,2665,3690,'2025-11-19',0,'','','','','','','','',0,'','darshan'),(2979,0,0,83,3691,'2025-11-19',0,'','','','','','','','',0,'','darshan'),(2980,0,0,2666,3692,'2025-11-19',0,'','','','','','','','',0,'','darshan'),(2981,0,0,2667,3693,'2025-11-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(2982,0,0,1555,3694,'2025-11-19',0,'','','','','','','','',0,'2025-12-09','darshan'),(2983,0,0,2668,3697,'2025-11-19',0,'','','','','','','','',0,'2025-11-29','darshan'),(2984,0,0,2669,3699,'2025-11-19',0,'','','','','','','','',0,'2025-11-24','darshan'),(2985,0,0,1652,3700,'2025-11-19',0,'','','','','','','','',0,'2025-12-09','darshan'),(2986,0,0,2670,3701,'2025-11-19',0,'','','','','','','','',0,'2025-12-09','darshan'),(2987,0,0,1734,3695,'2025-11-19',0,'','','','','','','','',0,'2025-12-04','darshan'),(2988,0,0,2015,3709,'2025-11-19',0,'','','','','','','','',0,'2025-12-31','darshan'),(2989,0,0,1125,3680,'2025-11-19',0,'','','','','','','','',0,'','drsagar'),(2990,0,0,2682,3720,'2025-11-19',0,'','','','','','','','',0,'','drsagar'),(2991,0,0,1959,3722,'2025-11-19',0,'','','','','','','','',0,'','drsagar'),(2992,0,0,362,3715,'2025-11-19',0,'','','','','','','','',0,'2025-12-29','darshan'),(2993,0,0,2671,3702,'2025-11-19',0,'','','','','','','','',0,'2025-11-29','drarchit'),(2994,0,0,2679,3716,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(2995,0,0,2144,3728,'2025-11-19',0,'','','','','','','','',0,'','drsagar'),(2996,0,0,2577,3529,'2025-11-19',0,'','','','','','','','',0,'','darshan'),(2997,0,0,2673,3706,'2025-11-19',0,'','','','','','','','',0,'2025-12-19','drarchit'),(2998,0,0,2684,3724,'2025-11-19',0,'','','','','','','','',0,'2025-12-19','drarchit'),(2999,0,0,2678,3713,'2025-11-19',0,'','','','','','','','',0,'2025-11-29','darshan'),(3000,0,0,2675,3708,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(3001,0,0,2676,3710,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(3002,0,0,957,3714,'2025-11-19',0,'','','','','','','','',0,'2025-11-26','drarchit'),(3003,0,0,982,3739,'2025-11-19',0,'','','','','','','','',0,'2025-12-09','darshan'),(3004,0,0,1274,3662,'2025-11-19',0,'','','','','','','','',0,'2026-01-19','drarchit'),(3005,0,0,2686,3726,'2025-11-19',0,'','','','','','','','',0,'2026-02-27','darshan'),(3006,0,0,2680,3717,'2025-11-19',0,'','','','','','','','',0,'2025-11-26','drarchit'),(3007,0,0,2687,3727,'2025-11-19',0,'','','','','','','','',0,'2025-11-26','drarchit'),(3008,0,0,2196,3733,'2025-11-19',0,'','','','','','','','',0,'2025-12-31','darshan'),(3009,0,0,2690,3732,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(3010,0,0,2693,3740,'2025-11-19',0,'','','','','','','','',0,'2025-11-24','darshan'),(3011,0,0,2691,3735,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(3012,0,0,2692,3738,'2025-11-19',0,'','','','','','','','',0,'2025-12-19','drarchit'),(3013,0,0,2685,3725,'2025-11-19',0,'','','','','','','','',0,'2025-11-26','drarchit'),(3014,0,0,2688,3729,'2025-11-19',0,'','','','','','','','',0,'2025-11-26','drarchit'),(3015,0,0,2694,3743,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(3016,0,0,2696,3745,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(3017,0,0,2697,3746,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(3018,0,0,2700,3749,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(3019,0,0,2699,3748,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(3020,0,0,2698,3747,'2025-11-19',0,'','','','','','','','',0,'','drarchit'),(3021,0,0,2702,3751,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(3022,0,0,634,3723,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(3023,0,0,1860,3752,'2025-11-19',0,'','','','','','','','',0,'2025-11-29','drarchit'),(3024,0,0,2704,3754,'2025-11-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(3025,0,0,2721,3779,'2025-11-20',0,'','','','','','','','',0,'2026-02-18','drarchit'),(3026,0,0,2723,3781,'2025-11-20',0,'','','','','','','','',0,'2026-02-18','drarchit'),(3027,0,0,2710,3765,'2025-11-20',0,'','','','','','','','',0,'','drsagar'),(3028,0,0,2725,3787,'2025-11-20',0,'','','','','','','','',0,'2025-12-20','drarchit'),(3029,0,0,1548,3770,'2025-11-20',0,'','','','','','','','',0,'2025-12-05','darshan'),(3030,0,0,2724,3786,'2025-11-20',0,'','','','','','','','',0,'2026-02-18','drarchit'),(3031,0,0,1899,3772,'2025-11-20',0,'','','','','','','','',0,'2025-12-01','darshan'),(3032,0,0,2528,3796,'2025-11-20',0,'','','','','','','','',0,'','drsagar'),(3033,0,0,2727,3789,'2025-11-20',0,'','','','','','','','',0,'2026-02-18','drarchit'),(3034,0,0,1913,3782,'2025-11-20',0,'','','','','','','','',0,'2025-12-01','darshan'),(3035,0,0,2286,3792,'2025-11-20',0,'','','','','','','','',0,'2026-01-19','drarchit'),(3036,0,0,2176,3775,'2025-11-20',0,'','','','','','','','',0,'2025-12-10','darshan'),(3037,0,0,2728,3790,'2025-11-20',0,'','','','','','','','',0,'2026-01-19','drarchit'),(3038,0,0,2708,3761,'2025-11-20',0,'','','','','','','','',0,'','drarchit'),(3039,0,0,2730,3794,'2025-11-20',0,'','','','','','','','',0,'2026-02-18','drarchit'),(3040,0,0,2722,3780,'2025-11-20',0,'','','','','','','','',0,'','drridham'),(3041,0,0,1571,3791,'2025-11-20',0,'','','','','','','','',0,'','drridham'),(3042,0,0,1858,3797,'2025-11-20',0,'','','','','','','','',0,'','drridham'),(3043,0,0,2707,3760,'2025-11-20',0,'','','','','','','','',0,'2026-02-18','drarchit'),(3044,0,0,2731,3795,'2025-11-20',0,'','','','','','','','',0,'2026-01-19','darshan'),(3045,0,0,2732,3798,'2025-11-20',0,'','','','','','','','',0,'2025-12-20','drarchit'),(3046,0,0,2733,3799,'2025-11-20',0,'','','','','','','','',0,'2025-12-20','drarchit'),(3047,0,0,2709,3762,'2025-11-20',0,'','','','','','','','',0,'2025-12-01','darshan'),(3048,0,0,2142,3813,'2025-11-20',0,'','','','','','','','',0,'','drsagar'),(3049,0,0,2735,3802,'2025-11-20',0,'','','','','','','','',0,'2025-11-27','darshan'),(3050,0,0,2713,3768,'2025-11-20',0,'','','','','','','','',0,'2025-12-01','darshan'),(3051,0,0,2716,3773,'2025-11-20',0,'','','','','','','','',0,'','darshan'),(3052,0,0,2712,3767,'2025-11-20',0,'','','','','','','','',0,'2025-12-01','darshan'),(3053,0,0,2706,3757,'2025-11-20',0,'','','','','','','','',0,'2025-11-27','drarchit'),(3054,0,0,2736,3803,'2025-11-20',0,'','','','','','','','',0,'2025-11-25','drarchit'),(3055,0,0,1287,3812,'2025-11-20',0,'','','','','','','','',0,'2025-12-30','darshan'),(3056,0,0,1243,3758,'2025-11-20',0,'','','','','','','','',0,'2025-12-20','drarchit'),(3057,0,0,2182,3816,'2025-11-20',0,'','','','','','','','',0,'2025-12-01','darshan'),(3058,0,0,2739,3806,'2025-11-20',0,'','','','','','','','',0,'2026-02-18','drarchit'),(3059,0,0,2714,3769,'2025-11-20',0,'','','','','','','','',0,'2025-12-01','darshan'),(3060,0,0,615,3800,'2025-11-20',0,'','','','','','','','',0,'2025-11-27','drarchit'),(3061,0,0,373,3814,'2025-11-20',0,'','','','','','','','',0,'2026-05-19','drarchit'),(3062,0,0,2718,3776,'2025-11-20',0,'','','','','','','','',0,'2025-12-20','darshan'),(3063,0,0,2729,3793,'2025-11-20',0,'','','','','','','','',0,'2025-12-10','darshan'),(3064,0,0,2715,3771,'2025-11-20',0,'','','','','','','','',0,'2025-12-01','darshan'),(3065,0,0,2734,3801,'2025-11-20',0,'','','','','','','','',0,'2026-01-15','drarchit'),(3066,0,0,2740,3807,'2025-11-20',0,'','','','','','','','',0,'2025-12-10','darshan'),(3067,0,0,1589,3819,'2025-11-20',0,'','','','','','','','',0,'2026-01-05','darshan'),(3068,0,0,2743,3811,'2025-11-20',0,'','','','','','','','',0,'2025-12-20','drarchit'),(3069,0,0,191,3817,'2025-11-20',0,'','','','','','','','',0,'2025-11-27','drarchit'),(3070,0,0,2079,2697,'2025-11-20',0,'','','','','','','','',0,'','darshan'),(3071,0,0,2737,3804,'2025-11-20',0,'','','','','','','','',0,'2025-12-10','darshan'),(3072,0,0,2661,3681,'2025-11-20',0,'','','','','','','','',0,'2026-02-17','drarchit'),(3073,0,0,2745,3822,'2025-11-20',0,'','','','','','','','',0,'2026-01-05','darshan'),(3074,0,0,2747,3824,'2025-11-20',0,'','','','','','','','',0,'2025-11-25','darshan'),(3075,0,0,2136,3828,'2025-11-20',0,'','','','','','','','',0,'2026-01-01','darshan'),(3076,0,0,2749,3827,'2025-11-20',0,'','','','','','','','',0,'2026-01-19','darshan'),(3077,0,0,2754,3835,'2025-11-20',0,'','','','','','','','',0,'2026-02-18','drarchit'),(3078,0,0,2746,3823,'2025-11-20',0,'','','','','','','','',0,'2025-12-01','darshan'),(3079,0,0,1346,3829,'2025-11-20',0,'','','','','','','','',0,'2025-12-20','darshan'),(3080,0,0,2366,3838,'2025-11-20',0,'','','','','','','','',0,'2026-02-18','drarchit'),(3081,0,0,2744,3820,'2025-11-20',0,'','','','','','','','',0,'2025-12-20','darshan'),(3082,0,0,2750,3830,'2025-11-20',0,'','','','','','','','',0,'','drsagar'),(3083,0,0,2758,3845,'2025-11-20',0,'','','','','','','','',0,'2025-11-27','drarchit'),(3084,0,0,2751,3831,'2025-11-20',0,'','','','','','','','',0,'2026-02-18','darshan'),(3085,0,0,1362,3843,'2025-11-20',0,'','','','','','','','',0,'2025-12-20','darshan'),(3086,0,0,2753,3833,'2025-11-20',0,'','','','','','','','',0,'2025-12-01','darshan'),(3087,0,0,2760,3850,'2025-11-20',0,'','','','','','','','',0,'2026-01-19','drarchit'),(3088,0,0,1597,3834,'2025-11-20',0,'','','','','','','','',0,'2025-12-30','darshan'),(3089,0,0,390,3841,'2025-11-20',0,'','','','','','','','',0,'2026-01-19','darshan'),(3090,0,0,2761,3852,'2025-11-20',0,'','','','','','','','',0,'2026-02-18','drarchit'),(3091,0,0,2757,3840,'2025-11-20',0,'','','','','','','','',0,'','drridham'),(3092,0,0,2574,3848,'2025-11-20',0,'','','','','','','','',0,'','drridham'),(3093,0,0,2586,3849,'2025-11-20',0,'','','','','','','','',0,'','drridham'),(3094,0,0,2762,3853,'2025-11-20',0,'','','','','','','','',0,'','drridham'),(3095,0,0,2748,3826,'2025-11-20',0,'','','','','','','','',0,'2025-12-01','darshan'),(3096,0,0,984,3842,'2025-11-20',0,'','','','','','','','',0,'2025-12-05','darshan'),(3097,0,0,832,3844,'2025-11-20',0,'','','','','','','','',0,'2025-12-30','darshan'),(3098,0,0,900,3856,'2025-11-20',0,'','','','','','','','',0,'','drsagar'),(3099,0,0,2752,3832,'2025-11-20',0,'','','','','','','','',0,'2025-12-01','darshan'),(3100,0,0,1317,3858,'2025-11-20',0,'','','','','','','','',0,'2025-11-27','drarchit'),(3101,0,0,2759,3846,'2025-11-20',0,'','','','','','','','',0,'2026-01-19','darshan'),(3102,0,0,1314,3855,'2025-11-20',0,'','','','','','','','',0,'2025-12-30','darshan'),(3103,0,0,2755,3837,'2025-11-20',0,'','','','','','','','',0,'2026-02-18','drarchit'),(3104,0,0,2763,3860,'2025-11-20',0,'','','','','','','','',0,'2026-01-19','darshan'),(3105,0,0,1012,3866,'2025-11-21',0,'','','','','','','','',0,'2026-01-20','darshan'),(3106,0,0,2771,3873,'2025-11-21',0,'','','','','','','','',0,'2025-12-31','darshan'),(3107,0,0,2773,3875,'2025-11-21',0,'','','','','','','','',0,'2026-01-20','darshan'),(3108,0,0,2367,3876,'2025-11-21',0,'','','','','','','','',0,'','drsagar'),(3109,0,0,2781,3887,'2025-11-21',0,'','','','','','','','',0,'','drsagar'),(3110,0,0,2708,3864,'2025-11-21',0,'','','','','','','','',0,'','drarchit'),(3111,0,0,2780,3886,'2025-11-21',0,'','','','','','','','',0,'2025-12-01','darshan'),(3112,0,0,2770,3871,'2025-11-21',0,'','','','','','','','',0,'2026-02-19','drarchit'),(3113,0,0,2766,3867,'2025-11-21',0,'','','','','','','','',0,'2026-02-19','drarchit'),(3114,0,0,1921,3882,'2025-11-21',0,'','','','','','','','',0,'2026-02-19','drarchit'),(3115,0,0,2777,3880,'2025-11-21',0,'','','','','','','','',0,'','darshan'),(3116,0,0,746,3881,'2025-11-21',0,'','','','','','','','',0,'2026-01-20','darshan'),(3117,0,0,1234,3895,'2025-11-21',0,'','','','','','','','',0,'2025-12-22','darshan'),(3118,0,0,2786,3893,'2025-11-21',0,'','','','','','','','',0,'2025-11-26','drarchit'),(3119,0,0,2785,3892,'2025-11-21',0,'','','','','','','','',0,'2025-11-26','darshan'),(3120,0,0,2769,3870,'2025-11-21',0,'','','','','','','','',0,'2025-12-22','drarchit'),(3121,0,0,1731,3897,'2025-11-21',0,'','','','','','','','',0,'2025-12-01','darshan'),(3122,0,0,2779,3884,'2025-11-21',0,'','','','','','','','',0,'2025-11-28','drarchit'),(3123,0,0,2789,3898,'2025-11-21',0,'','','','','','','','',0,'2026-02-19','darshan'),(3124,0,0,2772,3874,'2025-11-21',0,'','','','','','','','',0,'2025-12-01','darshan'),(3125,0,0,2790,3899,'2025-11-21',0,'','','','','','','','',0,'2026-03-02','darshan'),(3126,0,0,2784,3890,'2025-11-21',0,'','','','','','','','',0,'2026-02-19','drarchit'),(3127,0,0,2775,3878,'2025-11-21',0,'','','','','','','','',0,'2025-12-11','darshan'),(3128,0,0,2788,3896,'2025-11-21',0,'','','','','','','','',0,'2026-02-19','drarchit'),(3129,0,0,2787,3894,'2025-11-21',0,'','','','','','','','',0,'2026-02-19','drarchit'),(3130,0,0,2791,3900,'2025-11-21',0,'','','','','','','','',0,'2025-12-11','darshan'),(3131,0,0,1795,3872,'2025-11-21',0,'','','','','','','','',0,'','drsagar'),(3132,0,0,1928,3891,'2025-11-21',0,'','','','','','','','',0,'','drsagar'),(3133,0,0,2782,3888,'2025-11-21',0,'','','','','','','','',0,'2025-12-11','darshan'),(3134,0,0,2764,3862,'2025-11-21',0,'','','','','','','','',0,'2025-12-22','drarchit'),(3135,0,0,2776,3879,'2025-11-21',0,'','','','','','','','',0,'2026-03-02','darshan'),(3136,0,0,1629,3810,'2025-11-21',0,'','','','','','','','',0,'','drarchit'),(3137,0,0,2793,3904,'2025-11-21',0,'','','','','','','','',0,'2026-01-05','darshan'),(3138,0,0,1028,3901,'2025-11-21',0,'','','','','','','','',0,'2025-12-11','darshan'),(3139,0,0,2794,3905,'2025-11-21',0,'','','','','','','','',0,'2026-02-19','drarchit'),(3140,0,0,2792,3903,'2025-11-21',0,'','','','','','','','',0,'2025-12-22','darshan'),(3141,0,0,1585,3908,'2025-11-21',0,'','','','','','','','',0,'','drarchit'),(3142,0,0,2801,3915,'2025-11-21',0,'','','','','','','','',0,'2026-03-21','darshan'),(3143,0,0,2797,3910,'2025-11-21',0,'','','','','','','','',0,'','darshan'),(3144,0,0,2798,3911,'2025-11-21',0,'','','','','','','','',0,'','darshan'),(3145,0,0,316,3913,'2025-11-21',0,'','','','','','','','',0,'','darshan'),(3146,0,0,2800,3914,'2025-11-21',0,'','','','','','','','',0,'','darshan'),(3147,0,0,2799,3912,'2025-11-21',0,'','','','','','','','',0,'','darshan'),(3148,0,0,966,3919,'2025-11-21',0,'','','','','','','','',0,'','darshan'),(3149,0,0,2806,3921,'2025-11-21',0,'','','','','','','','',0,'2026-03-02','darshan'),(3150,0,0,2192,3924,'2025-11-21',0,'','','','','','','','',0,'2025-12-22','darshan'),(3151,0,0,2802,3916,'2025-11-21',0,'','','','','','','','',0,'2026-03-21','drarchit'),(3152,0,0,2808,3926,'2025-11-21',0,'','','','','','','','',0,'2026-05-20','drarchit'),(3153,0,0,2257,3927,'2025-11-21',0,'','','','','','','','',0,'2026-01-02','darshan'),(3154,0,0,2809,3928,'2025-11-21',0,'','','','','','','','',0,'2026-03-02','darshan'),(3155,0,0,2592,3932,'2025-11-21',0,'','','','','','','','',0,'','drarchit'),(3156,0,0,2805,3920,'2025-11-21',0,'','','','','','','','',0,'2026-02-19','drarchit'),(3157,0,0,2795,3906,'2025-11-21',0,'','','','','','','','',0,'','drsagar'),(3158,0,0,2519,3930,'2025-11-21',0,'','','','','','','','',0,'','drsagar'),(3159,0,0,2811,3933,'2025-11-21',0,'','','','','','','','',0,'2026-01-20','darshan'),(3160,0,0,871,3931,'2025-11-21',0,'','','','','','','','',0,'2026-02-19','darshan'),(3161,0,0,665,3935,'2025-11-21',0,'','','','','','','','',0,'2026-01-20','darshan'),(3162,0,0,2803,3917,'2025-11-21',0,'','','','','','','','',0,'2025-12-11','darshan'),(3163,0,0,2742,3809,'2025-11-21',0,'','','','','','','','',0,'','drarchit'),(3164,0,0,2813,3937,'2025-11-21',0,'','','','','','','','',0,'','darshan'),(3165,0,0,2199,3940,'2025-11-21',0,'','','','','','','','',0,'2025-12-11','darshan'),(3166,0,0,2783,3889,'2025-11-21',0,'','','','','','','','',0,'2025-12-22','drarchit'),(3167,0,0,2765,3863,'2025-11-21',0,'','','','','','','','',0,'','drarchit'),(3168,0,0,2817,3945,'2025-11-21',0,'','','','','','','','',0,'','drsagar'),(3169,0,0,2705,3756,'2025-11-21',0,'','','','','','','','',0,'2025-11-25','drarchit'),(3170,0,0,2513,3938,'2025-11-21',0,'','','','','','','','',0,'2026-02-19','drarchit'),(3171,0,0,2268,3947,'2025-11-21',0,'','','','','','','','',0,'2026-01-02','darshan'),(3172,0,0,2810,3929,'2025-11-21',0,'','','','','','','','',0,'2025-12-01','darshan'),(3173,0,0,2812,3936,'2025-11-21',0,'','','','','','','','',0,'2025-12-11','darshan'),(3174,0,0,1491,3942,'2025-11-21',0,'','','','','','','','',0,'','drarchit'),(3175,0,0,2816,3943,'2025-11-21',0,'','','','','','','','',0,'2026-02-19','drarchit'),(3176,0,0,2814,3939,'2025-11-21',0,'','','','','','','','',0,'2026-02-19','drarchit'),(3177,0,0,1085,3944,'2025-11-21',0,'','','','','','','','',0,'2026-01-20','drarchit'),(3178,0,0,2820,3949,'2025-11-21',0,'','','','','','','','',0,'2025-11-26','darshan'),(3179,0,0,1422,3922,'2025-11-21',0,'','','','','','','','',0,'2025-12-01','drarchit'),(3180,0,0,2823,3953,'2025-11-22',0,'','','','','','','','',0,'2026-02-05','darshan'),(3181,0,0,706,3955,'2025-11-22',0,'','','','','','','','',0,'2026-01-21','darshan'),(3182,0,0,2826,3958,'2025-11-22',0,'','','','','','','','',0,'2026-01-21','darshan'),(3183,0,0,2828,3963,'2025-11-22',0,'','','','','','','','',0,'2025-12-22','darshan'),(3184,0,0,2832,3967,'2025-11-22',0,'','','','','','','','',0,'2026-01-21','darshan'),(3185,0,0,2825,3957,'2025-11-22',0,'','','','','','','','',0,'2025-11-29','drarchit'),(3186,0,0,2835,3970,'2025-11-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(3187,0,0,2833,3968,'2025-11-22',0,'','','','','','','','',0,'','drarchit'),(3188,0,0,2818,3973,'2025-11-22',0,'','','','','','','','',0,'','drarchit'),(3189,0,0,611,3976,'2025-11-22',0,'','','','','','','','',0,'2026-01-21','darshan'),(3190,0,0,2708,3971,'2025-11-22',0,'','','','','','','','',0,'2026-02-20','drarchit'),(3191,0,0,2815,3941,'2025-11-22',0,'','','','','','','','',0,'','drarchit'),(3192,0,0,2838,3975,'2025-11-22',0,'','','','','','','','',0,'2025-11-27','drarchit'),(3193,0,0,2842,3983,'2025-11-22',0,'','','','','','','','',0,'2025-12-02','darshan'),(3194,0,0,2830,3965,'2025-11-22',0,'','','','','','','','',0,'2025-12-02','darshan'),(3195,0,0,2839,3977,'2025-11-22',0,'','','','','','','','',0,'','drsagar'),(3196,0,0,2829,3964,'2025-11-22',0,'','','','','','','','',0,'','drsagar'),(3197,0,0,251,3980,'2025-11-22',0,'','','','','','','','',0,'','drarchit'),(3198,0,0,1656,3986,'2025-11-22',0,'','','','','','','','',0,'','drarchit'),(3199,0,0,2834,3969,'2025-11-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(3200,0,0,2846,3989,'2025-11-22',0,'','','','','','','','',0,'2026-01-21','darshan'),(3201,0,0,2847,3990,'2025-11-22',0,'','','','','','','','',0,'2025-11-27','darshan'),(3202,0,0,2837,3974,'2025-11-22',0,'','','','','','','','',0,'2025-12-12','drarchit'),(3203,0,0,2848,3991,'2025-11-22',0,'','','','','','','','',0,'2025-12-02','darshan'),(3204,0,0,2849,3992,'2025-11-22',0,'','','','','','','','',0,'2026-03-23','darshan'),(3205,0,0,2843,3984,'2025-11-22',0,'','','','','','','','',0,'2025-12-12','darshan'),(3206,0,0,2827,3960,'2025-11-22',0,'','','','','','','','',0,'2026-02-20','drarchit'),(3207,0,0,1346,3829,'2025-11-22',0,'','','','','','','','',0,'2025-12-02','darshan'),(3208,0,0,2845,3988,'2025-11-22',0,'','','','','','','','',0,'2026-02-20','drarchit'),(3209,0,0,2852,3995,'2025-11-22',0,'','','','','','','','',0,'2026-02-20','drarchit'),(3210,0,0,2844,3987,'2025-11-22',0,'','','','','','','','',0,'2025-12-02','darshan'),(3211,0,0,2840,3978,'2025-11-22',0,'','','','','','','','',0,'2026-02-20','drarchit'),(3212,0,0,2854,3998,'2025-11-22',0,'','','','','','','','',0,'2025-11-29','drarchit'),(3213,0,0,2853,3996,'2025-11-22',0,'','','','','','','','',0,'2025-12-22','darshan'),(3214,0,0,2831,3966,'2025-11-22',0,'','','','','','','','',0,'2025-12-08','drarchit'),(3215,0,0,2856,4000,'2025-11-22',0,'','','','','','','','',0,'2025-12-08','darshan'),(3216,0,0,2855,3999,'2025-11-22',0,'','','','','','','','',0,'2026-02-20','drarchit'),(3217,0,0,2528,4004,'2025-11-22',0,'','','','','','','','',0,'','drsagar'),(3218,0,0,2858,4007,'2025-11-22',0,'','','','','','','','',0,'','drsagar'),(3219,0,0,2407,4030,'2025-11-24',0,'','','','','','','','',0,'2025-12-04','darshan'),(3220,0,0,2871,4032,'2025-11-24',0,'','','','','','','','',0,'2026-01-23','darshan'),(3221,0,0,2390,4040,'2025-11-24',0,'','','','','','','','',0,'2026-01-05','darshan'),(3222,0,0,1500,4031,'2025-11-24',0,'','','','','','','','',0,'2026-01-23','darshan'),(3223,0,0,2880,4046,'2025-11-24',0,'','','','','','','','',0,'2025-12-15','darshan'),(3224,0,0,1850,4033,'2025-11-24',0,'','','','','','','','',0,'2026-03-04','darshan'),(3225,0,0,2399,4051,'2025-11-24',0,'','','','','','','','',0,'2025-12-15','darshan'),(3226,0,0,2884,4056,'2025-11-24',0,'','','','','','','','',0,'','drsagar'),(3227,0,0,2561,4067,'2025-11-24',0,'','','','','','','','',0,'','drsagar'),(3228,0,0,2489,4053,'2025-11-24',0,'','','','','','','','',0,'2026-01-05','darshan'),(3229,0,0,2897,4074,'2025-11-24',0,'','','','','','','','',0,'','drsagar'),(3230,0,0,2867,4026,'2025-11-24',0,'','','','','','','','',0,'2026-02-23','drarchit'),(3231,0,0,2866,4025,'2025-11-24',0,'','','','','','','','',0,'2025-12-01','drarchit'),(3232,0,0,1334,4059,'2025-11-24',0,'','','','','','','','',0,'','drarchit'),(3233,0,0,2886,4058,'2025-11-24',0,'','','','','','','','',0,'2026-02-23','drarchit'),(3234,0,0,2876,4041,'2025-11-24',0,'','','','','','','','',0,'2025-12-04','darshan'),(3235,0,0,2863,4021,'2025-11-24',0,'','','','','','','','',0,'2025-12-04','drarchit'),(3236,0,0,2899,4077,'2025-11-24',0,'','','','','','','','',0,'','drsagar'),(3237,0,0,2881,4049,'2025-11-24',0,'','','','','','','','',0,'2026-02-23','drarchit'),(3238,0,0,151,4038,'2025-11-24',0,'','','','','','','','',0,'2026-01-23','darshan'),(3239,0,0,2892,4068,'2025-11-24',0,'','','','','','','','',0,'2026-01-23','darshan'),(3240,0,0,2891,4066,'2025-11-24',0,'','','','','','','','',0,'2026-02-23','drarchit'),(3241,0,0,1188,4081,'2025-11-24',0,'','','','','','','','',0,'2026-01-08','darshan'),(3242,0,0,21,4079,'2025-11-24',0,'','','','','','','','',0,'2026-02-23','drarchit'),(3243,0,0,2893,4069,'2025-11-24',0,'','','','','','','','',0,'2025-12-04','drarchit'),(3244,0,0,2898,4075,'2025-11-24',0,'','','','','','','','',0,'2026-01-23','drarchit'),(3245,0,0,2693,4045,'2025-11-24',0,'','','','','','','','',0,'2025-11-29','darshan'),(3246,0,0,2669,4048,'2025-11-24',0,'','','','','','','','',0,'2025-11-29','darshan'),(3247,0,0,2905,4086,'2025-11-24',0,'','','','','','','','',0,'2025-12-24','darshan'),(3248,0,0,2896,4073,'2025-11-24',0,'','','','','','','','',0,'2026-01-23','drarchit'),(3249,0,0,2894,4070,'2025-11-24',0,'','','','','','','','',0,'','drarchit'),(3250,0,0,2869,4028,'2025-11-24',0,'','','','','','','','',0,'','drarchit'),(3251,0,0,627,4076,'2025-11-24',0,'','','','','','','','',0,'','drarchit'),(3252,0,0,2885,4057,'2025-11-24',0,'','','','','','','','',0,'','drarchit'),(3253,0,0,2882,4052,'2025-11-24',0,'','','','','','','','',0,'2025-12-04','darshan'),(3254,0,0,2906,4088,'2025-11-24',0,'','','','','','','','',0,'2026-01-23','darshan'),(3255,0,0,2900,4080,'2025-11-24',0,'','','','','','','','',0,'2026-03-24','darshan'),(3256,0,0,2877,4042,'2025-11-24',0,'','','','','','','','',0,'2025-12-04','darshan'),(3257,0,0,2875,4037,'2025-11-24',0,'','','','','','','','',0,'','drarchit'),(3258,0,0,2305,4089,'2025-11-24',0,'','','','','','','','',0,'','drarchit'),(3259,0,0,2909,4094,'2025-11-24',0,'','','','','','','','',0,'2025-11-29','drarchit'),(3260,0,0,2873,4035,'2025-11-24',0,'','','','','','','','',0,'2025-12-09','drarchit'),(3261,0,0,2872,4034,'2025-11-24',0,'','','','','','','','',0,'','drarchit'),(3262,0,0,1194,4071,'2025-11-24',0,'','','','','','','','',0,'2026-01-23','darshan'),(3263,0,0,2902,4083,'2025-11-24',0,'','','','','','','','',0,'2026-02-23','drarchit'),(3264,0,0,2878,4043,'2025-11-24',0,'','','','','','','','',0,'2025-12-15','darshan'),(3265,0,0,2901,4082,'2025-11-24',0,'','','','','','','','',0,'2025-12-15','darshan'),(3266,0,0,2904,4085,'2025-11-24',0,'','','','','','','','',0,'2025-12-04','darshan'),(3267,0,0,2887,4060,'2025-11-24',0,'','','','','','','','',0,'2025-12-24','darshan'),(3268,0,0,2908,4093,'2025-11-24',0,'','','','','','','','',0,'2025-12-04','darshan'),(3269,0,0,937,4099,'2025-11-24',0,'','','','','','','','',0,'2025-12-24','darshan'),(3270,0,0,2895,4072,'2025-11-24',0,'','','','','','','','',0,'2025-12-24','darshan'),(3271,0,0,842,4091,'2025-11-24',0,'','','','','','','','',0,'2025-12-24','darshan'),(3272,0,0,2914,4101,'2025-11-24',0,'','','','','','','','',0,'','darshan'),(3273,0,0,1169,4104,'2025-11-24',0,'','','','','','','','',0,'2026-01-03','darshan'),(3274,0,0,1281,4105,'2025-11-24',0,'','','','','','','','',0,'2025-12-15','darshan'),(3275,0,0,2317,4108,'2025-11-24',0,'','','','','','','','',0,'2025-12-01','darshan'),(3276,0,0,798,4115,'2025-11-24',0,'','','','','','','','',0,'2026-01-23','darshan'),(3277,0,0,1363,4087,'2025-11-24',0,'','','','','','','','',0,'2025-12-24','drarchit'),(3278,0,0,1026,4116,'2025-11-24',0,'','','','','','','','',0,'2026-01-03','darshan'),(3279,0,0,2889,4063,'2025-11-24',0,'','','','','','','','',0,'2025-11-29','drarchit'),(3280,0,0,2920,4117,'2025-11-24',0,'','','','','','','','',0,'2025-11-29','drarchit'),(3281,0,0,1826,4114,'2025-11-24',0,'','','','','','','','',0,'','drsagar'),(3282,0,0,2370,4119,'2025-11-24',0,'','','','','','','','',0,'','drarchit'),(3283,0,0,1102,4112,'2025-11-24',0,'','','','','','','','',0,'','drsagar'),(3284,0,0,2913,4100,'2025-11-24',0,'','','','','','','','',0,'','drsagar'),(3285,0,0,2907,4090,'2025-11-24',0,'','','','','','','','',0,'','drsagar'),(3286,0,0,2922,4122,'2025-11-24',0,'','','','','','','','',0,'2025-11-29','darshan'),(3287,0,0,2707,4106,'2025-11-24',0,'','','','','','','','',0,'','drarchit'),(3288,0,0,2917,4107,'2025-11-24',0,'','','','','','','','',0,'2025-12-15','darshan'),(3289,0,0,2444,4121,'2025-11-24',0,'','','','','','','','',0,'2025-12-04','drarchit'),(3290,0,0,2864,4022,'2025-11-24',0,'','','','','','','','',0,'','drarchit'),(3291,0,0,2924,4126,'2025-11-24',0,'','','','','','','','',0,'','drsagar'),(3292,0,0,2241,4129,'2025-11-24',0,'','','','','','','','',0,'','drarchit'),(3293,0,0,2926,4128,'2025-11-24',0,'','','','','','','','',0,'','drsagar'),(3294,0,0,2144,4133,'2025-11-24',0,'','','','','','','','',0,'','drsagar'),(3295,0,0,2585,4135,'2025-11-24',0,'','','','','','','','',0,'','drsagar'),(3296,0,0,2918,4109,'2025-11-24',0,'','','','','','','','',0,'2025-12-15','darshan'),(3297,0,0,2927,4132,'2025-11-24',0,'','','','','','','','',0,'2026-02-23','drarchit'),(3298,0,0,2916,4103,'2025-11-24',0,'','','','','','','','',0,'','drarchit'),(3299,0,0,2340,4139,'2025-11-24',0,'','','','','','','','',0,'2025-12-09','darshan'),(3300,0,0,2671,4137,'2025-11-24',0,'','','','','','','','',0,'','drarchit'),(3301,0,0,2929,4136,'2025-11-24',0,'','','','','','','','',0,'2025-12-04','drarchit'),(3302,0,0,2931,4141,'2025-11-24',0,'','','','','','','','',0,'','darshan'),(3303,0,0,2925,4127,'2025-11-24',0,'','','','','','','','',0,'2025-12-15','darshan'),(3304,0,0,2932,4142,'2025-11-24',0,'','','','','','','','',0,'2025-11-29','darshan'),(3305,0,0,2935,4147,'2025-11-24',0,'','','','','','','','',0,'2025-12-01','drarchit'),(3306,0,0,2911,4097,'2025-11-24',0,'','','','','','','','',0,'','drridham'),(3307,0,0,2574,4120,'2025-11-24',0,'','','','','','','','',0,'','drridham'),(3308,0,0,2938,4151,'2025-11-24',0,'','','','','','','','',0,'2025-12-01','drarchit'),(3309,0,0,2343,4002,'2025-11-24',0,'','','','','','','','',0,'','darshan'),(3310,0,0,2933,4145,'2025-11-24',0,'','','','','','','','',0,'','drridham'),(3311,0,0,2937,4150,'2025-11-24',0,'','','','','','','','',0,'','drridham'),(3312,0,0,2528,4144,'2025-11-24',0,'','','','','','','','',0,'','drsagar'),(3313,0,0,2939,4152,'2025-11-24',0,'','','','','','','','',0,'','drsagar'),(3314,0,0,2159,4160,'2025-11-25',0,'','','','','','','','',0,'2025-12-25','darshan'),(3315,0,0,2942,4157,'2025-11-25',0,'','','','','','','','',0,'2026-01-09','darshan'),(3316,0,0,1239,4162,'2025-11-25',0,'','','','','','','','',0,'2025-12-05','darshan'),(3317,0,0,2448,4165,'2025-11-25',0,'','','','','','','','',0,'2025-12-15','darshan'),(3318,0,0,2948,4173,'2025-11-25',0,'','','','','','','','',0,'','drpratapsi'),(3319,0,0,2824,4164,'2025-11-25',0,'','','','','','','','',0,'','drpratapsi'),(3320,0,0,2957,4182,'2025-11-25',0,'','','','','','','','',0,'','drpratapsi'),(3321,0,0,2959,4184,'2025-11-25',0,'','','','','','','','',0,'','drpratapsi'),(3322,0,0,1617,4168,'2025-11-25',0,'','','','','','','','',0,'2025-12-10','darshan'),(3323,0,0,2539,4185,'2025-11-25',0,'','','','','','','','',0,'','drpratapsi'),(3324,0,0,2949,4174,'2025-11-25',0,'','','','','','','','',0,'2026-01-24','darshan'),(3325,0,0,1153,4169,'2025-11-25',0,'','','','','','','','',0,'2026-01-24','darshan'),(3326,0,0,1797,4190,'2025-11-25',0,'','','','','','','','',0,'2025-12-15','darshan'),(3327,0,0,2955,4180,'2025-11-25',0,'','','','','','','','',0,'2026-01-24','darshan'),(3328,0,0,2968,4195,'2025-11-25',0,'','','','','','','','',0,'','drpratapsi'),(3329,0,0,2956,4181,'2025-11-25',0,'','','','','','','','',0,'2026-02-23','drarchit'),(3330,0,0,2963,4189,'2025-11-25',0,'','','','','','','','',0,'2026-02-23','drarchit'),(3331,0,0,2958,4183,'2025-11-25',0,'','','','','','','','',0,'2026-03-25','darshan'),(3332,0,0,2916,4103,'2025-11-25',0,'','','','','','','','',0,'','drarchit'),(3333,0,0,2964,4191,'2025-11-25',0,'','','','','','','','',0,'2026-03-25','darshan'),(3334,0,0,2966,4193,'2025-11-25',0,'','','','','','','','',0,'2026-02-23','drarchit'),(3335,0,0,2962,4188,'2025-11-25',0,'','','','','','','','',0,'2025-12-01','drarchit'),(3336,0,0,2969,4198,'2025-11-25',0,'','','','','','','','',0,'2026-01-24','darshan'),(3337,0,0,2967,4194,'2025-11-25',0,'','','','','','','','',0,'2025-12-25','drarchit'),(3338,0,0,2970,4199,'2025-11-25',0,'','','','','','','','',0,'2025-12-05','darshan'),(3339,0,0,2945,4170,'2025-11-25',0,'','','','','','','','',0,'2025-12-15','darshan'),(3340,0,0,2943,4163,'2025-11-25',0,'','','','','','','','',0,'','drarchit'),(3341,0,0,2961,4187,'2025-11-25',0,'','','','','','','','',0,'','drarchit'),(3342,0,0,855,4200,'2025-11-25',0,'','','','','','','','',0,'2026-01-24','darshan'),(3343,0,0,2971,4202,'2025-11-25',0,'','','','','','','','',0,'2025-12-25','drarchit'),(3344,0,0,2160,4201,'2025-11-25',0,'','','','','','','','',0,'2025-12-05','darshan'),(3345,0,0,2301,4203,'2025-11-25',0,'','','','','','','','',0,'','drsagar'),(3346,0,0,2946,4171,'2025-11-25',0,'','','','','','','','',0,'2025-12-05','drarchit'),(3347,0,0,1928,4197,'2025-11-25',0,'','','','','','','','',0,'','drsagar'),(3348,0,0,2960,4186,'2025-11-25',0,'','','','','','','','',0,'2025-12-15','darshan'),(3349,0,0,2952,4177,'2025-11-25',0,'','','','','','','','',0,'2025-12-25','drarchit'),(3350,0,0,2965,4192,'2025-11-25',0,'','','','','','','','',0,'2025-12-05','darshan'),(3351,0,0,2951,4176,'2025-11-25',0,'','','','','','','','',0,'2026-02-23','drarchit'),(3352,0,0,1815,4206,'2025-11-25',0,'','','','','','','','',0,'2026-01-05','darshan'),(3353,0,0,2974,4208,'2025-11-25',0,'','','','','','','','',0,'2026-01-24','darshan'),(3354,0,0,2975,4209,'2025-11-25',0,'','','','','','','','',0,'','darshan'),(3355,0,0,2981,4219,'2025-11-25',0,'','','','','','','','',0,'','darshan'),(3356,0,0,2988,4228,'2025-11-25',0,'','','','','','','','',0,'','drsagar'),(3357,0,0,2982,4220,'2025-11-25',0,'','','','','','','','',0,'2026-01-24','darshan'),(3358,0,0,2972,4204,'2025-11-25',0,'','','','','','','','',0,'','drarchit'),(3359,0,0,884,4223,'2025-11-25',0,'','','','','','','','',0,'2025-12-10','darshan'),(3360,0,0,2953,4178,'2025-11-25',0,'','','','','','','','',0,'','drarchit'),(3361,0,0,2954,4179,'2025-11-25',0,'','','','','','','','',0,'','drarchit'),(3362,0,0,2973,4207,'2025-11-25',0,'','','','','','','','',0,'2025-12-25','drarchit'),(3363,0,0,2985,4224,'2025-11-25',0,'','','','','','','','',0,'2026-02-23','drarchit'),(3364,0,0,2688,4210,'2025-11-25',0,'','','','','','','','',0,'','drarchit'),(3365,0,0,2990,4231,'2025-11-25',0,'','','','','','','','',0,'2026-02-23','drarchit'),(3366,0,0,407,4212,'2025-11-25',0,'','','','','','','','',0,'','drarchit'),(3367,0,0,2097,4232,'2025-11-25',0,'','','','','','','','',0,'2025-12-05','darshan'),(3368,0,0,2685,4225,'2025-11-25',0,'','','','','','','','',0,'','drarchit'),(3369,0,0,2914,4101,'2025-11-25',0,'','','','','','','','',0,'','darshan'),(3370,0,0,2978,4216,'2025-11-25',0,'','','','','','','','',0,'2026-02-23','drarchit'),(3371,0,0,2993,4238,'2025-11-25',0,'','','','','','','','',0,'','drsagar'),(3372,0,0,2536,4230,'2025-11-25',0,'','','','','','','','',0,'','darshan'),(3373,0,0,2983,4221,'2025-11-25',0,'','','','','','','','',0,'2026-03-05','drarchit'),(3374,0,0,2976,4214,'2025-11-25',0,'','','','','','','','',0,'2025-12-15','darshan'),(3375,0,0,1018,4234,'2025-11-25',0,'','','','','','','','',0,'2026-01-24','drarchit'),(3376,0,0,2941,4156,'2025-11-25',0,'','','','','','','','',0,'','drarchit'),(3377,0,0,2980,4218,'2025-11-25',0,'','','','','','','','',0,'2025-12-05','darshan'),(3378,0,0,2984,4222,'2025-11-25',0,'','','','','','','','',0,'2025-12-02','drarchit'),(3379,0,0,2996,4241,'2025-11-25',0,'','','','','','','','',0,'2025-12-05','darshan'),(3380,0,0,2992,4236,'2025-11-25',0,'','','','','','','','',0,'2025-12-25','drarchit'),(3381,0,0,2986,4226,'2025-11-25',0,'','','','','','','','',0,'2025-12-05','darshan'),(3382,0,0,662,4243,'2025-11-25',0,'','','','','','','','',0,'2025-12-01','darshan'),(3383,0,0,2989,4229,'2025-11-25',0,'','','','','','','','',0,'2025-12-05','darshan'),(3384,0,0,2987,4227,'2025-11-25',0,'','','','','','','','',0,'2025-12-05','darshan'),(3385,0,0,2998,4244,'2025-11-25',0,'','','','','','','','',0,'2025-12-05','darshan'),(3386,0,0,64,4249,'2025-11-25',0,'','','','','','','','',0,'','drarchit'),(3387,0,0,1422,4251,'2025-11-25',0,'','','','','','','','',0,'2025-12-05','drarchit'),(3388,0,0,3001,4257,'2025-11-26',0,'','','','','','','','',0,'','drpratapsi'),(3389,0,0,3002,4258,'2025-11-26',0,'','','','','','','','',0,'','drpratapsi'),(3390,0,0,2785,4263,'2025-11-26',0,'','','','','','','','',0,'2025-12-01','darshan'),(3391,0,0,3003,4259,'2025-11-26',0,'','','','','','','','',0,'2025-12-03','darshan'),(3392,0,0,2526,4264,'2025-11-26',0,'','','','','','','','',0,'2026-01-07','darshan'),(3393,0,0,2070,4269,'2025-11-26',0,'','','','','','','','',0,'2026-01-07','darshan'),(3394,0,0,3004,4260,'2025-11-26',0,'','','','','','','','',0,'2026-01-26','darshan'),(3395,0,0,1288,4271,'2025-11-26',0,'','','','','','','','',0,'','drpratapsi'),(3396,0,0,1171,4267,'2025-11-26',0,'','','','','','','','',0,'2025-12-06','darshan'),(3397,0,0,3012,4277,'2025-11-26',0,'','','','','','','','',0,'2025-12-03','drarchit'),(3398,0,0,3007,4272,'2025-11-26',0,'','','','','','','','',0,'','drpratapsi'),(3399,0,0,3009,4274,'2025-11-26',0,'','','','','','','','',0,'2026-01-26','darshan'),(3400,0,0,2677,4268,'2025-11-26',0,'','','','','','','','',0,'','drpratapsi'),(3401,0,0,3010,4275,'2025-11-26',0,'','','','','','','','',0,'2025-12-01','drarchit'),(3402,0,0,3013,4278,'2025-11-26',0,'','','','','','','','',0,'','drpratapsi'),(3403,0,0,3014,4279,'2025-11-26',0,'','','','','','','','',0,'2026-02-24','drarchit'),(3404,0,0,3015,4280,'2025-11-26',0,'','','','','','','','',0,'2026-01-26','darshan'),(3405,0,0,3008,4273,'2025-11-26',0,'','','','','','','','',0,'2025-12-26','drarchit'),(3406,0,0,3017,4284,'2025-11-26',0,'','','','','','','','',0,'2026-01-26','drarchit'),(3407,0,0,1240,4281,'2025-11-26',0,'','','','','','','','',0,'2026-01-05','darshan'),(3408,0,0,240,4292,'2025-11-26',0,'','','','','','','','',0,'','drarchit'),(3409,0,0,3018,4285,'2025-11-26',0,'','','','','','','','',0,'2025-12-06','drarchit'),(3410,0,0,2818,4282,'2025-11-26',0,'','','','','','','','',0,'','drarchit'),(3411,0,0,3024,4293,'2025-11-26',0,'','','','','','','','',0,'2025-12-03','drarchit'),(3412,0,0,3023,4291,'2025-11-26',0,'','','','','','','','',0,'2026-03-06','darshan'),(3413,0,0,822,4294,'2025-11-26',0,'','','','','','','','',0,'2026-01-10','darshan'),(3414,0,0,508,4296,'2025-11-26',0,'','','','','','','','',0,'','drarchit'),(3415,0,0,949,4300,'2025-11-26',0,'','','','','','','','',0,'2026-01-26','darshan'),(3416,0,0,1137,4301,'2025-11-26',0,'','','','','','','','',0,'2026-01-26','darshan'),(3417,0,0,3011,4276,'2025-11-26',0,'','','','','','','','',0,'2025-12-11','darshan'),(3418,0,0,2979,4217,'2025-11-26',0,'','','','','','','','',0,'','drarchit'),(3419,0,0,3022,4290,'2025-11-26',0,'','','','','','','','',0,'2025-12-26','darshan'),(3420,0,0,3029,4302,'2025-11-26',0,'','','','','','','','',0,'2025-12-11','darshan'),(3421,0,0,1533,4303,'2025-11-26',0,'','','','','','','','',0,'2025-12-26','drarchit'),(3422,0,0,1298,4307,'2025-11-26',0,'','','','','','','','',0,'2026-01-26','darshan'),(3423,0,0,345,4309,'2025-11-26',0,'','','','','','','','',0,'2026-01-05','darshan'),(3424,0,0,1467,4308,'2025-11-26',0,'','','','','','','','',0,'','darshan'),(3425,0,0,3032,4310,'2025-11-26',0,'','','','','','','','',0,'','darshan'),(3426,0,0,1973,4311,'2025-11-26',0,'','','','','','','','',0,'2025-12-26','darshan'),(3427,0,0,326,4312,'2025-11-26',0,'','','','','','','','',0,'','darshan'),(3428,0,0,2735,4315,'2025-11-26',0,'','','','','','','','',0,'2025-12-03','darshan'),(3429,0,0,3027,4298,'2025-11-26',0,'','','','','','','','',0,'2025-12-06','drarchit'),(3430,0,0,3035,4316,'2025-11-26',0,'','','','','','','','',0,'2025-12-03','drarchit'),(3431,0,0,3037,4318,'2025-11-26',0,'','','','','','','','',0,'2025-12-03','drarchit'),(3432,0,0,3033,4313,'2025-11-26',0,'','','','','','','','',0,'2025-12-06','darshan'),(3433,0,0,3039,4320,'2025-11-26',0,'','','','','','','','',0,'2026-01-26','darshan'),(3434,0,0,3041,4323,'2025-11-26',0,'','','','','','','','',0,'2025-12-01','drarchit'),(3435,0,0,2393,4321,'2025-11-26',0,'','','','','','','','',0,'2025-12-26','drarchit'),(3436,0,0,3040,4322,'2025-11-26',0,'','','','','','','','',0,'2025-12-06','darshan'),(3437,0,0,3038,4319,'2025-11-26',0,'','','','','','','','',0,'2025-12-26','drarchit'),(3438,0,0,3042,4324,'2025-11-26',0,'','','','','','','','',0,'2025-12-06','darshan'),(3439,0,0,3028,4299,'2025-11-26',0,'','','','','','','','',0,'2026-01-26','drarchit'),(3440,0,0,3005,4262,'2025-11-26',0,'','','','','','','','',0,'','drpratapsi'),(3441,0,0,3006,4270,'2025-11-26',0,'','','','','','','','',0,'','drpratapsi'),(3442,0,0,2540,4326,'2025-11-26',0,'','','','','','','','',0,'2025-12-06','darshan'),(3443,0,0,2333,4328,'2025-11-26',0,'','','','','','','','',0,'','drpratapsi'),(3444,0,0,3044,4327,'2025-11-26',0,'','','','','','','','',0,'','drpratapsi'),(3445,0,0,3031,4306,'2025-11-26',0,'','','','','','','','',0,'','drpratapsi'),(3446,0,0,3025,4295,'2025-11-26',0,'','','','','','','','',0,'','drpratapsi'),(3447,0,0,3043,4325,'2025-11-26',0,'','','','','','','','',0,'2025-12-26','drarchit'),(3448,0,0,2681,4286,'2025-11-26',0,'','','','','','','','',0,'','drpratapsi'),(3449,0,0,3019,4287,'2025-11-26',0,'','','','','','','','',0,'2026-02-24','drarchit'),(3450,0,0,3020,4288,'2025-11-26',0,'','','','','','','','',0,'2026-01-26','drarchit'),(3451,0,0,3030,4304,'2025-11-26',0,'','','','','','','','',0,'2026-02-24','drarchit'),(3452,0,0,3046,4331,'2025-11-26',0,'','','','','','','','',0,'2026-02-24','drarchit'),(3453,0,0,3049,4335,'2025-11-26',0,'','','','','','','','',0,'2025-12-06','darshan'),(3454,0,0,3047,4333,'2025-11-26',0,'','','','','','','','',0,'','drarchit'),(3455,0,0,3045,4329,'2025-11-26',0,'','','','','','','','',0,'2026-02-24','drarchit'),(3456,0,0,3048,4334,'2025-11-26',0,'','','','','','','','',0,'2025-12-03','drarchit'),(3457,0,0,3051,4338,'2025-11-26',0,'','','','','','','','',0,'2026-02-24','drarchit'),(3458,0,0,3053,4340,'2025-11-26',0,'','','','','','','','',0,'','drpratapsi'),(3459,0,0,1343,4343,'2025-11-26',0,'','','','','','','','',0,'','drpratapsi'),(3460,0,0,1251,4332,'2025-11-26',0,'','','','','','','','',0,'','drpratapsi'),(3461,0,0,3050,4337,'2025-11-26',0,'','','','','','','','',0,'','drpratapsi'),(3462,0,0,332,4330,'2025-11-26',0,'','','','','','','','',0,'','drpratapsi'),(3463,0,0,3056,4345,'2025-11-26',0,'','','','','','','','',0,'2026-02-24','drarchit'),(3464,0,0,3052,4339,'2025-11-26',0,'','','','','','','','',0,'','drarchit'),(3465,0,0,3057,4346,'2025-11-26',0,'','','','','','','','',0,'','drarchit'),(3466,0,0,3058,4347,'2025-11-26',0,'','','','','','','','',0,'','drarchit'),(3467,0,0,3059,4348,'2025-11-26',0,'','','','','','','','',0,'2026-03-06','drarchit'),(3468,0,0,2563,4362,'2025-11-27',0,'','','','','','','','',0,'2026-01-08','darshan'),(3469,0,0,1854,4360,'2025-11-27',0,'','','','','','','','',0,'2025-12-27','darshan'),(3470,0,0,1471,4365,'2025-11-27',0,'','','','','','','','',0,'2026-01-26','darshan'),(3471,0,0,3064,4356,'2025-11-27',0,'','','','','','','','',0,'2026-01-26','darshan'),(3472,0,0,3065,4358,'2025-11-27',0,'','','','','','','','',0,'2026-02-25','drarchit'),(3473,0,0,2889,4369,'2025-11-27',0,'','','','','','','','',0,'','drarchit'),(3474,0,0,1378,4388,'2025-11-27',0,'','','','','','','','',0,'2026-01-06','darshan'),(3475,0,0,3066,4361,'2025-11-27',0,'','','','','','','','',0,'2026-02-25','darshan'),(3476,0,0,3085,4389,'2025-11-27',0,'','','','','','','','',0,'2026-02-25','darshan'),(3477,0,0,2566,4386,'2025-11-27',0,'','','','','','','','',0,'2026-01-08','darshan'),(3478,0,0,3083,4385,'2025-11-27',0,'','','','','','','','',0,'2026-03-07','darshan'),(3479,0,0,3070,4368,'2025-11-27',0,'','','','','','','','',0,'2026-03-27','darshan'),(3480,0,0,3071,4370,'2025-11-27',0,'','','','','','','','',0,'2025-12-02','darshan'),(3481,0,0,3069,4367,'2025-11-27',0,'','','','','','','','',0,'2026-01-22','drarchit'),(3482,0,0,3073,4372,'2025-11-27',0,'','','','','','','','',0,'2026-01-26','darshan'),(3483,0,0,3079,4378,'2025-11-27',0,'','','','','','','','',0,'2025-12-17','darshan'),(3484,0,0,3084,4387,'2025-11-27',0,'','','','','','','','',0,'2025-12-27','darshan'),(3485,0,0,3080,4379,'2025-11-27',0,'','','','','','','','',0,'2025-12-08','darshan'),(3486,0,0,3092,4400,'2025-11-27',0,'','','','','','','','',0,'2025-12-27','drarchit'),(3487,0,0,3090,4398,'2025-11-27',0,'','','','','','','','',0,'','drjayant'),(3488,0,0,49,4392,'2025-11-27',0,'','','','','','','','',0,'2026-01-26','darshan'),(3489,0,0,632,4402,'2025-11-27',0,'','','','','','','','',0,'2026-01-06','darshan'),(3490,0,0,1653,4393,'2025-11-27',0,'','','','','','','','',0,'2025-12-17','darshan'),(3491,0,0,3075,4374,'2025-11-27',0,'','','','','','','','',0,'2025-12-17','darshan'),(3492,0,0,3088,4396,'2025-11-27',0,'','','','','','','','',0,'2026-01-26','darshan'),(3493,0,0,3089,4397,'2025-11-27',0,'','','','','','','','',0,'2026-03-27','darshan'),(3494,0,0,3054,4364,'2025-11-27',0,'','','','','','','','',0,'2025-12-17','darshan'),(3495,0,0,3074,4373,'2025-11-27',0,'','','','','','','','',0,'2025-12-08','darshan'),(3496,0,0,3094,4404,'2025-11-27',0,'','','','','','','','',0,'2026-01-12','darshan'),(3497,0,0,3091,4399,'2025-11-27',0,'','','','','','','','',0,'2025-12-08','darshan'),(3498,0,0,3095,4405,'2025-11-27',0,'','','','','','','','',0,'2025-12-08','darshan'),(3499,0,0,3096,4406,'2025-11-27',0,'','','','','','','','',0,'','darshan'),(3500,0,0,2615,4411,'2025-11-27',0,'','','','','','','','',0,'2026-01-08','darshan'),(3501,0,0,1644,4412,'2025-11-27',0,'','','','','','','','',0,'2026-01-06','darshan'),(3502,0,0,1032,4414,'2025-11-27',0,'','','','','','','','',0,'2026-01-06','darshan'),(3503,0,0,2604,4419,'2025-11-27',0,'','','','','','','','',0,'2025-12-08','darshan'),(3504,0,0,3101,4420,'2025-11-27',0,'','','','','','','','',0,'2025-12-17','darshan'),(3505,0,0,2528,4423,'2025-11-27',0,'','','','','','','','',0,'','drsagar'),(3506,0,0,3102,4421,'2025-11-27',0,'','','','','','','','',0,'2026-02-25','darshan'),(3507,0,0,2710,4427,'2025-11-27',0,'','','','','','','','',0,'','drsagar'),(3508,0,0,751,4428,'2025-11-27',0,'','','','','','','','',0,'2026-01-26','darshan'),(3509,0,0,3077,4376,'2025-11-27',0,'','','','','','','','',0,'2026-01-26','drarchit'),(3510,0,0,3028,4407,'2025-11-27',0,'','','','','','','','',0,'','drarchit'),(3511,0,0,3097,4413,'2025-11-27',0,'','','','','','','','',0,'','drarchit'),(3512,0,0,3078,4377,'2025-11-27',0,'','','','','','','','',0,'2026-02-19','drarchit'),(3513,0,0,1540,4429,'2025-11-27',0,'','','','','','','','',0,'2025-12-27','darshan'),(3514,0,0,3076,4375,'2025-11-27',0,'','','','','','','','',0,'2026-02-25','drarchit'),(3515,0,0,3107,4433,'2025-11-27',0,'','','','','','','','',0,'','drsagar'),(3516,0,0,3105,4426,'2025-11-27',0,'','','','','','','','',0,'2026-02-25','drjayant'),(3517,0,0,2471,4395,'2025-11-27',0,'','','','','','','','',0,'','drridham'),(3518,0,0,3100,4418,'2025-11-27',0,'','','','','','','','',0,'','drridham'),(3519,0,0,3108,4434,'2025-11-27',0,'','','','','','','','',0,'2026-02-25','drarchit'),(3520,0,0,3104,4425,'2025-11-27',0,'','','','','','','','',0,'2026-02-25','drjayant'),(3521,0,0,3106,4431,'2025-11-27',0,'','','','','','','','',0,'2026-02-25','drarchit'),(3522,0,0,3110,4437,'2025-11-27',0,'','','','','','','','',0,'','drsagar'),(3523,0,0,3118,4450,'2025-11-27',0,'','','','','','','','',0,'','drjayant'),(3524,0,0,3103,4422,'2025-11-27',0,'','','','','','','','',0,'2025-12-04','drarchit'),(3525,0,0,2805,4435,'2025-11-27',0,'','','','','','','','',0,'','drarchit'),(3526,0,0,3111,4438,'2025-11-27',0,'','','','','','','','',0,'','drsagar'),(3527,0,0,2245,4439,'2025-11-27',0,'','','','','','','','',0,'','drsagar'),(3528,0,0,494,4454,'2025-11-27',0,'','','','','','','','',0,'2025-12-02','drarchit'),(3529,0,0,1071,4451,'2025-11-27',0,'','','','','','','','',0,'','drarchit'),(3530,0,0,3113,4442,'2025-11-27',0,'','','','','','','','',0,'','drsagar'),(3531,0,0,2090,4453,'2025-11-27',0,'','','','','','','','',0,'','drjayant'),(3532,0,0,3119,4452,'2025-11-27',0,'','','','','','','','',0,'','drjayant'),(3533,0,0,3120,4455,'2025-11-27',0,'','','','','','','','',0,'2026-01-22','drarchit'),(3534,0,0,2817,4448,'2025-11-27',0,'','','','','','','','',0,'','drsagar'),(3535,0,0,3063,4355,'2025-11-27',0,'','','','','','','','',0,'','drsagar'),(3536,0,0,3124,4460,'2025-11-27',0,'','','','','','','','',0,'','drjayant'),(3537,0,0,3114,4445,'2025-11-27',0,'','','','','','','','',0,'','drjayant'),(3538,0,0,3123,4459,'2025-11-27',0,'','','','','','','','',0,'2026-02-25','drarchit'),(3539,0,0,3121,4457,'2025-11-27',0,'','','','','','','','',0,'2025-12-02','darshan'),(3540,0,0,435,4462,'2025-11-27',0,'','','','','','','','',0,'','drsagar'),(3541,0,0,3116,4447,'2025-11-27',0,'','','','','','','','',0,'','darshan'),(3542,0,0,3052,4339,'2025-11-27',0,'','','','','','','','',0,'','drarchit'),(3543,0,0,565,4461,'2025-11-27',0,'','','','','','','','',0,'2025-12-27','darshan'),(3544,0,0,3062,4354,'2025-11-27',0,'','','','','','','','',0,'','drjayant'),(3545,0,0,3125,4463,'2025-11-27',0,'','','','','','','','',0,'2025-12-04','drarchit'),(3546,0,0,3047,4333,'2025-11-27',0,'','','','','','','','',0,'','drarchit'),(3547,0,0,3109,4436,'2025-11-27',0,'','','','','','','','',0,'2025-12-27','darshan'),(3548,0,0,3081,4380,'2025-11-27',0,'','','','','','','','',0,'','drjayant'),(3549,0,0,3086,4390,'2025-11-27',0,'','','','','','','','',0,'','drjayant'),(3550,0,0,3117,4449,'2025-11-27',0,'','','','','','','','',0,'2025-12-04','drarchit'),(3551,0,0,3126,4466,'2025-11-27',0,'','','','','','','','',0,'2026-02-25','drarchit'),(3552,0,0,3129,4472,'2025-11-28',0,'','','','','','','','',0,'2026-03-28','darshan'),(3553,0,0,2012,4477,'2025-11-28',0,'','','','','','','','',0,'2026-01-07','darshan'),(3554,0,0,3132,4476,'2025-11-28',0,'','','','','','','','',0,'2026-02-26','darshan'),(3555,0,0,3128,4470,'2025-11-28',0,'','','','','','','','',0,'2025-12-05','drarchit'),(3556,0,0,3130,4473,'2025-11-28',0,'','','','','','','','',0,'','drjayant'),(3557,0,0,1224,4497,'2025-11-28',0,'','','','','','','','',0,'','drsagar'),(3558,0,0,3133,4478,'2025-11-28',0,'','','','','','','','',0,'','drsagar'),(3559,0,0,10,4474,'2025-11-28',0,'','','','','','','','',0,'2026-01-27','darshan'),(3560,0,0,594,4496,'2025-11-28',0,'','','','','','','','',0,'2025-12-29','drarchit'),(3561,0,0,1375,4471,'2025-11-28',0,'','','','','','','','',0,'','drarchit'),(3562,0,0,1715,4505,'2025-11-28',0,'','','','','','','','',0,'','drpratapsi'),(3563,0,0,2559,4491,'2025-11-28',0,'','','','','','','','',0,'2025-12-18','darshan'),(3564,0,0,1343,4515,'2025-11-28',0,'','','','','','','','',0,'','drpratapsi'),(3565,0,0,3137,4484,'2025-11-28',0,'','','','','','','','',0,'2026-02-26','drarchit'),(3566,0,0,2874,4482,'2025-11-28',0,'','','','','','','','',0,'','drpratapsi'),(3567,0,0,1258,4498,'2025-11-28',0,'','','','','','','','',0,'2026-01-07','darshan'),(3568,0,0,2768,4483,'2025-11-28',0,'','','','','','','','',0,'','drpratapsi'),(3569,0,0,2092,4485,'2025-11-28',0,'','','','','','','','',0,'','drpratapsi'),(3570,0,0,2290,4487,'2025-11-28',0,'','','','','','','','',0,'','drpratapsi'),(3571,0,0,3021,4490,'2025-11-28',0,'','','','','','','','',0,'','drpratapsi'),(3572,0,0,2883,4500,'2025-11-28',0,'','','','','','','','',0,'','drpratapsi'),(3573,0,0,3151,4513,'2025-11-28',0,'','','','','','','','',0,'','drjayant'),(3574,0,0,3146,4504,'2025-11-28',0,'','','','','','','','',0,'','drpratapsi'),(3575,0,0,3134,4479,'2025-11-28',0,'','','','','','','','',0,'2026-02-26','drarchit'),(3576,0,0,3143,4499,'2025-11-28',0,'','','','','','','','',0,'','drsagar'),(3577,0,0,3144,4502,'2025-11-28',0,'','','','','','','','',0,'2026-02-26','drarchit'),(3578,0,0,2110,4507,'2025-11-28',0,'','','','','','','','',0,'2026-01-07','darshan'),(3579,0,0,3160,4523,'2025-11-28',0,'','','','','','','','',0,'','drsagar'),(3580,0,0,1468,4488,'2025-11-28',0,'','','','','','','','',0,'2026-01-27','darshan'),(3581,0,0,3150,4512,'2025-11-28',0,'','','','','','','','',0,'2026-02-26','drarchit'),(3582,0,0,3149,4511,'2025-11-28',0,'','','','','','','','',0,'2025-12-08','drarchit'),(3583,0,0,1367,4509,'2025-11-28',0,'','','','','','','','',0,'2026-01-12','darshan'),(3584,0,0,3145,4503,'2025-11-28',0,'','','','','','','','',0,'','drarchit'),(3585,0,0,2636,4508,'2025-11-28',0,'','','','','','','','',0,'2025-12-29','drarchit'),(3586,0,0,3158,4521,'2025-11-28',0,'','','','','','','','',0,'2026-02-26','drarchit'),(3587,0,0,836,4528,'2025-11-28',0,'','','','','','','','',0,'','drsagar'),(3588,0,0,3159,4522,'2025-11-28',0,'','','','','','','','',0,'2025-12-18','darshan'),(3589,0,0,3155,4518,'2025-11-28',0,'','','','','','','','',0,'','darshan'),(3590,0,0,3156,4519,'2025-11-28',0,'','','','','','','','',0,'','darshan'),(3591,0,0,758,4501,'2025-11-28',0,'','','','','','','','',0,'2026-01-27','darshan'),(3592,0,0,3096,4406,'2025-11-28',0,'','','','','','','','',0,'','darshan'),(3593,0,0,3141,4494,'2025-11-28',0,'','','','','','','','',0,'2026-01-27','darshan'),(3594,0,0,3142,4495,'2025-11-28',0,'','','','','','','','',0,'2026-03-09','darshan'),(3595,0,0,3131,4475,'2025-11-28',0,'','','','','','','','',0,'2025-12-29','darshan'),(3596,0,0,3135,4480,'2025-11-28',0,'','','','','','','','',0,'2025-12-18','darshan'),(3597,0,0,1507,4532,'2025-11-28',0,'','','','','','','','',0,'2026-01-12','darshan'),(3598,0,0,3136,4481,'2025-11-28',0,'','','','','','','','',0,'2025-12-18','darshan'),(3599,0,0,3147,4506,'2025-11-28',0,'','','','','','','','',0,'2025-12-29','darshan'),(3600,0,0,3157,4520,'2025-11-28',0,'','','','','','','','',0,'2025-12-08','darshan'),(3601,0,0,3161,4524,'2025-11-28',0,'','','','','','','','',0,'','darshan'),(3602,0,0,3162,4525,'2025-11-28',0,'','','','','','','','',0,'','darshan'),(3603,0,0,3166,4531,'2025-11-28',0,'','','','','','','','',0,'2025-12-08','darshan'),(3604,0,0,3154,4517,'2025-11-28',0,'','','','','','','','',0,'2025-12-18','darshan'),(3605,0,0,3170,4536,'2025-11-28',0,'','','','','','','','',0,'2025-12-18','darshan'),(3606,0,0,1186,4539,'2025-11-28',0,'','','','','','','','',0,'2025-12-29','darshan'),(3607,0,0,3171,4538,'2025-11-28',0,'','','','','','','','',0,'2025-12-03','darshan'),(3608,0,0,3172,4541,'2025-11-28',0,'','','','','','','','',0,'','darshan'),(3609,0,0,3169,4535,'2025-11-28',0,'','','','','','','','',0,'','darshan'),(3610,0,0,3173,4542,'2025-11-28',0,'','','','','','','','',0,'','drpratapsi'),(3611,0,0,2323,4540,'2025-11-28',0,'','','','','','','','',0,'','drpratapsi'),(3612,0,0,3167,4533,'2025-11-28',0,'','','','','','','','',0,'','drarchit'),(3613,0,0,1725,4552,'2025-11-28',0,'','','','','','','','',0,'2026-01-07','darshan'),(3614,0,0,3186,4562,'2025-11-28',0,'','','','','','','','',0,'','drpratapsi'),(3615,0,0,3185,4559,'2025-11-28',0,'','','','','','','','',0,'','drpratapsi'),(3616,0,0,3180,4551,'2025-11-28',0,'','','','','','','','',0,'2025-12-08','darshan'),(3617,0,0,3153,4516,'2025-11-28',0,'','','','','','','','',0,'2026-01-23','drarchit'),(3618,0,0,3164,4527,'2025-11-28',0,'','','','','','','','',0,'','drarchit'),(3619,0,0,3179,4550,'2025-11-28',0,'','','','','','','','',0,'','darshan'),(3620,0,0,3165,4529,'2025-11-28',0,'','','','','','','','',0,'','drarchit'),(3621,0,0,2742,4557,'2025-11-28',0,'','','','','','','','',0,'2025-12-03','drarchit'),(3622,0,0,545,4560,'2025-11-28',0,'','','','','','','','',0,'','drsagar'),(3623,0,0,3182,4554,'2025-11-28',0,'','','','','','','','',0,'2025-12-18','darshan'),(3624,0,0,187,4566,'2025-11-28',0,'','','','','','','','',0,'2025-12-08','drarchit'),(3625,0,0,3181,4553,'2025-11-28',0,'','','','','','','','',0,'2025-12-05','darshan'),(3626,0,0,1288,4565,'2025-11-28',0,'','','','','','','','',0,'','drpratapsi'),(3627,0,0,786,4568,'2025-11-28',0,'','','','','','','','',0,'','drpratapsi'),(3628,0,0,3178,4547,'2025-11-28',0,'','','','','','','','',0,'','drsagar'),(3629,0,0,3189,4569,'2025-11-28',0,'','','','','','','','',0,'','drjayant'),(3630,0,0,525,4570,'2025-11-28',0,'','','','','','','','',0,'','drpratapsi'),(3631,0,0,2910,4572,'2025-11-28',0,'','','','','','','','',0,'','drpratapsi'),(3632,0,0,109,4575,'2025-11-28',0,'','','','','','','','',0,'2025-12-29','drjayant'),(3633,0,0,3190,4574,'2025-11-28',0,'','','','','','','','',0,'2026-02-26','drarchit'),(3634,0,0,110,4573,'2025-11-28',0,'','','','','','','','',0,'','drjayant'),(3635,0,0,566,4561,'2025-11-28',0,'','','','','','','','',0,'','drjayant'),(3636,0,0,3183,4555,'2025-11-28',0,'','','','','','','','',0,'','drjayant'),(3637,0,0,3175,4544,'2025-11-28',0,'','','','','','','','',0,'','drjayant'),(3638,0,0,2166,4556,'2025-11-28',0,'','','','','','','','',0,'','drsagar'),(3639,0,0,3191,4576,'2025-11-28',0,'','','','','','','','',0,'2026-02-26','drarchit'),(3640,0,0,2269,4567,'2025-11-28',0,'','','','','','','','',0,'','drsagar'),(3641,0,0,3140,4493,'2025-11-28',0,'','','','','','','','',0,'','drjayant'),(3642,0,0,3196,4584,'2025-11-28',0,'','','','','','','','',0,'2025-12-05','drarchit'),(3643,0,0,1543,4571,'2025-11-28',0,'','','','','','','','',0,'2025-12-29','darshan'),(3644,0,0,2220,4578,'2025-11-28',0,'','','','','','','','',0,'','drsagar'),(3645,0,0,2528,4588,'2025-11-28',0,'','','','','','','','',0,'','drsagar'),(3646,0,0,3168,4534,'2025-11-28',0,'','','','','','','','',0,'','drjayant'),(3647,0,0,2250,4580,'2025-11-28',0,'','','','','','','','',0,'2025-12-13','darshan'),(3648,0,0,3197,4585,'2025-11-28',0,'','','','','','','','',0,'2025-12-05','drarchit'),(3649,0,0,3152,4514,'2025-11-28',0,'','','','','','','','',0,'','drarchit'),(3650,0,0,3076,4593,'2025-11-28',0,'','','','','','','','',0,'','drarchit'),(3651,0,0,3187,4563,'2025-11-28',0,'','','','','','','','',0,'2025-12-08','darshan'),(3652,0,0,3194,4582,'2025-11-28',0,'','','','','','','','',0,'','drsagar'),(3653,0,0,3195,4583,'2025-11-28',0,'','','','','','','','',0,'','drsagar'),(3654,0,0,1323,4589,'2025-11-28',0,'','','','','','','','',0,'2026-02-26','drarchit'),(3655,0,0,3174,4543,'2025-11-28',0,'','','','','','','','',0,'2025-12-08','darshan'),(3656,0,0,3163,4526,'2025-11-28',0,'','','','','','','','',0,'2026-02-26','drarchit'),(3657,0,0,118,4590,'2025-11-28',0,'','','','','','','','',0,'','drpratapsi'),(3658,0,0,2506,4591,'2025-11-28',0,'','','','','','','','',0,'2026-02-26','drarchit'),(3659,0,0,3199,4587,'2025-11-28',0,'','','','','','','','',0,'','darshan'),(3660,0,0,3116,4447,'2025-11-28',0,'','','','','','','','',0,'','darshan'),(3661,0,0,3200,4592,'2025-11-28',0,'','','','','','','','',0,'2026-02-26','drarchit'),(3662,0,0,3188,4564,'2025-11-28',0,'','','','','','','','',0,'2025-12-18','darshan'),(3663,0,0,3192,4579,'2025-11-28',0,'','','','','','','','',0,'2026-02-26','darshan'),(3664,0,0,3198,4586,'2025-11-28',0,'','','','','','','','',0,'2025-12-03','darshan'),(3665,0,0,1550,4601,'2025-11-29',0,'','','','','','','','',0,'2026-01-08','darshan'),(3666,0,0,3208,4605,'2025-11-29',0,'','','','','','','','',0,'','drpratapsi'),(3667,0,0,1690,4599,'2025-11-29',0,'','','','','','','','',0,'2026-01-08','darshan'),(3668,0,0,180,4616,'2025-11-29',0,'','','','','','','','',0,'','drjayant'),(3669,0,0,3204,4598,'2025-11-29',0,'','','','','','','','',0,'2025-12-15','drarchit'),(3670,0,0,446,4604,'2025-11-29',0,'','','','','','','','',0,'2025-12-09','darshan'),(3671,0,0,1424,4607,'2025-11-29',0,'','','','','','','','',0,'2026-01-28','drarchit'),(3672,0,0,1579,4619,'2025-11-29',0,'','','','','','','','',0,'2026-01-13','darshan'),(3673,0,0,3216,4618,'2025-11-29',0,'','','','','','','','',0,'2026-01-28','drjayant'),(3674,0,0,3214,4614,'2025-11-29',0,'','','','','','','','',0,'','drarchit'),(3675,0,0,3212,4610,'2025-11-29',0,'','','','','','','','',0,'','drarchit'),(3676,0,0,3215,4617,'2025-11-29',0,'','','','','','','','',0,'','drarchit'),(3677,0,0,3230,4639,'2025-11-29',0,'','','','','','','','',0,'','drsagar'),(3678,0,0,2560,4627,'2025-11-29',0,'','','','','','','','',0,'','drsagar'),(3679,0,0,3226,4634,'2025-11-29',0,'','','','','','','','',0,'2025-12-06','drarchit'),(3680,0,0,3229,4638,'2025-11-29',0,'','','','','','','','',0,'2026-01-28','drjayant'),(3681,0,0,3235,4646,'2025-11-29',0,'','','','','','','','',0,'','drsagar'),(3682,0,0,2769,4612,'2025-11-29',0,'','','','','','','','',0,'2025-12-06','drarchit'),(3683,0,0,3220,4625,'2025-11-29',0,'','','','','','','','',0,'2025-12-06','drarchit'),(3684,0,0,2132,4615,'2025-11-29',0,'','','','','','','','',0,'2026-01-08','darshan'),(3685,0,0,1865,4649,'2025-11-29',0,'','','','','','','','',0,'','drsagar'),(3686,0,0,1928,4642,'2025-11-29',0,'','','','','','','','',0,'','drsagar'),(3687,0,0,3221,4628,'2025-11-29',0,'','','','','','','','',0,'2026-02-27','drarchit'),(3688,0,0,3227,4635,'2025-11-29',0,'','','','','','','','',0,'','drjayant'),(3689,0,0,2847,4621,'2025-11-29',0,'','','','','','','','',0,'2025-12-04','darshan'),(3690,0,0,3231,4640,'2025-11-29',0,'','','','','','','','',0,'','drarchit'),(3691,0,0,3228,4636,'2025-11-29',0,'','','','','','','','',0,'2026-01-28','darshan'),(3692,0,0,3224,4632,'2025-11-29',0,'','','','','','','','',0,'','drjayant'),(3693,0,0,3232,4641,'2025-11-29',0,'','','','','','','','',0,'2025-12-29','drarchit'),(3694,0,0,3233,4644,'2025-11-29',0,'','','','','','','','',0,'2025-12-09','drarchit'),(3695,0,0,3239,4653,'2025-11-29',0,'','','','','','','','',0,'2026-01-28','darshan'),(3696,0,0,3213,4611,'2025-11-29',0,'','','','','','','','',0,'2026-01-28','darshan'),(3697,0,0,3218,4622,'2025-11-29',0,'','','','','','','','',0,'2025-12-19','darshan'),(3698,0,0,3240,4654,'2025-11-29',0,'','','','','','','','',0,'2025-12-29','drjayant'),(3699,0,0,3236,4648,'2025-11-29',0,'','','','','','','','',0,'','drjayant'),(3700,0,0,3127,4655,'2025-11-29',0,'','','','','','','','',0,'','darshan'),(3701,0,0,1704,4652,'2025-11-29',0,'','','','','','','','',0,'','drarchit'),(3702,0,0,1504,4656,'2025-11-29',0,'','','','','','','','',0,'2026-01-08','darshan'),(3703,0,0,3251,4670,'2025-11-29',0,'','','','','','','','',0,'2025-12-06','drarchit'),(3704,0,0,2483,4637,'2025-11-29',0,'','','','','','','','',0,'2025-12-29','darshan'),(3705,0,0,1626,4623,'2025-11-29',0,'','','','','','','','',0,'2025-12-29','darshan'),(3706,0,0,1274,4643,'2025-11-29',0,'','','','','','','','',0,'','drjayant'),(3707,0,0,3237,4650,'2025-11-29',0,'','','','','','','','',0,'2025-12-29','drarchit'),(3708,0,0,3206,4602,'2025-11-29',0,'','','','','','','','',0,'','drjayant'),(3709,0,0,3199,4587,'2025-11-29',0,'','','','','','','','',0,'','darshan'),(3710,0,0,3207,4603,'2025-11-29',0,'','','','','','','','',0,'','drjayant'),(3711,0,0,3242,4660,'2025-11-29',0,'','','','','','','','',0,'2025-12-09','drarchit'),(3712,0,0,3241,4659,'2025-11-29',0,'','','','','','','','',0,'2026-02-27','drarchit'),(3713,0,0,3223,4631,'2025-11-29',0,'','','','','','','','',0,'2026-01-28','drjayant'),(3714,0,0,3201,4595,'2025-11-29',0,'','','','','','','','',0,'','drjayant'),(3715,0,0,3217,4620,'2025-11-29',0,'','','','','','','','',0,'','drjayant'),(3716,0,0,3248,4666,'2025-11-29',0,'','','','','','','','',0,'','darshan'),(3717,0,0,1629,4667,'2025-11-29',0,'','','','','','','','',0,'','drarchit'),(3718,0,0,3205,4600,'2025-11-29',0,'','','','','','','','',0,'2025-12-19','darshan'),(3719,0,0,3209,4606,'2025-11-29',0,'','','','','','','','',0,'2025-12-19','darshan'),(3720,0,0,3250,4669,'2025-11-29',0,'','','','','','','','',0,'2026-01-28','darshan'),(3721,0,0,3238,4651,'2025-11-29',0,'','','','','','','','',0,'2026-01-28','darshan'),(3722,0,0,3210,4608,'2025-11-29',0,'','','','','','','','',0,'2025-12-09','darshan'),(3723,0,0,3222,4629,'2025-11-29',0,'','','','','','','','',0,'2026-02-27','drjayant'),(3724,0,0,3203,4597,'2025-11-29',0,'','','','','','','','',0,'','drjayant'),(3725,0,0,3243,4661,'2025-11-29',0,'','','','','','','','',0,'2025-12-09','darshan'),(3726,0,0,3219,4624,'2025-11-29',0,'','','','','','','','',0,'2025-12-19','darshan'),(3727,0,0,3244,4662,'2025-11-29',0,'','','','','','','','',0,'2026-01-28','darshan'),(3728,0,0,3225,4633,'2025-11-29',0,'','','','','','','','',0,'2025-12-19','darshan'),(3729,0,0,3245,4663,'2025-11-29',0,'','','','','','','','',0,'2025-12-29','darshan'),(3730,0,0,3211,4609,'2025-11-29',0,'','','','','','','','',0,'2025-12-19','darshan'),(3731,0,0,3246,4664,'2025-11-29',0,'','','','','','','','',0,'2025-12-09','darshan'),(3732,0,0,3252,4672,'2025-11-29',0,'','','','','','','','',0,'2025-12-19','darshan'),(3733,0,0,3254,4677,'2025-11-29',0,'','','','','','','','',0,'','drpratapsi'),(3734,0,0,2503,4626,'2025-11-29',0,'','','','','','','','',0,'','drpratapsi'),(3735,0,0,3021,4647,'2025-11-29',0,'','','','','','','','',0,'','drpratapsi'),(3736,0,0,3255,4678,'2025-11-29',0,'','','','','','','','',0,'','drsagar'),(3737,0,0,2472,4657,'2025-11-29',0,'','','','','','','','',0,'','drpratapsi'),(3738,0,0,3247,4665,'2025-11-29',0,'','','','','','','','',0,'','drpratapsi'),(3739,0,0,3025,4671,'2025-11-29',0,'','','','','','','','',0,'','drpratapsi'),(3740,0,0,2738,4679,'2025-11-29',0,'','','','','','','','',0,'','drpratapsi'),(3741,0,0,3256,4680,'2025-11-29',0,'','','','','','','','',0,'','drpratapsi'),(3742,0,0,2260,4681,'2025-11-29',0,'','','','','','','','',0,'','drpratapsi'),(3743,0,0,2903,4682,'2025-11-29',0,'','','','','','','','',0,'','drpratapsi'),(3744,0,0,3257,4683,'2025-11-29',0,'','','','','','','','',0,'','drsagar'),(3745,0,0,3258,4684,'2025-11-29',0,'','','','','','','','',0,'','drpratapsi'),(3746,0,0,1288,4696,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3747,0,0,3270,4706,'2025-12-01',0,'','','','','','','','',0,'2026-01-30','darshan'),(3748,0,0,2207,4704,'2025-12-01',0,'','','','','','','','',0,'2026-01-10','darshan'),(3749,0,0,2709,4708,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','darshan'),(3750,0,0,2446,4702,'2025-12-01',0,'','','','','','','','',0,'2025-12-31','darshan'),(3751,0,0,3013,4726,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3752,0,0,3276,4719,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3753,0,0,2716,4717,'2025-12-01',0,'','','','','','','','',0,'','darshan'),(3754,0,0,2155,4703,'2025-12-01',0,'','','','','','','','',0,'2025-12-31','darshan'),(3755,0,0,3263,4695,'2025-12-01',0,'','','','','','','','',0,'2025-12-08','drarchit'),(3756,0,0,3266,4699,'2025-12-01',0,'','','','','','','','',0,'','drarchit'),(3757,0,0,3267,4700,'2025-12-01',0,'','','','','','','','',0,'2026-01-30','drarchit'),(3758,0,0,930,4713,'2025-12-01',0,'','','','','','','','',0,'2026-01-30','drjayant'),(3759,0,0,3271,4707,'2025-12-01',0,'','','','','','','','',0,'2026-01-30','drarchit'),(3760,0,0,3269,4705,'2025-12-01',0,'','','','','','','','',0,'2026-03-02','darshan'),(3761,0,0,3076,4718,'2025-12-01',0,'','','','','','','','',0,'2025-12-06','drarchit'),(3762,0,0,3279,4728,'2025-12-01',0,'','','','','','','','',0,'2026-01-30','drjayant'),(3763,0,0,2714,4715,'2025-12-01',0,'','','','','','','','',0,'2026-01-12','darshan'),(3764,0,0,3275,4716,'2025-12-01',0,'','','','','','','','',0,'2025-12-06','darshan'),(3765,0,0,3264,4697,'2025-12-01',0,'','','','','','','','',0,'','drsagar'),(3766,0,0,3265,4698,'2025-12-01',0,'','','','','','','','',0,'','drsagar'),(3767,0,0,1033,4739,'2025-12-01',0,'','','','','','','','',0,'','drsagar'),(3768,0,0,3283,4732,'2025-12-01',0,'','','','','','','','',0,'2026-01-30','drarchit'),(3769,0,0,1230,4720,'2025-12-01',0,'','','','','','','','',0,'2026-01-30','darshan'),(3770,0,0,3289,4743,'2025-12-01',0,'','','','','','','','',0,'','drjayant'),(3771,0,0,2844,4723,'2025-12-01',0,'','','','','','','','',0,'2025-12-31','darshan'),(3772,0,0,1506,4724,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','darshan'),(3773,0,0,3281,4730,'2025-12-01',0,'','','','','','','','',0,'2026-03-02','drarchit'),(3774,0,0,2277,4746,'2025-12-01',0,'','','','','','','','',0,'2025-12-22','darshan'),(3775,0,0,3284,4733,'2025-12-01',0,'','','','','','','','',0,'2026-03-02','drarchit'),(3776,0,0,2346,4738,'2025-12-01',0,'','','','','','','','',0,'','drarchit'),(3777,0,0,3268,4701,'2025-12-01',0,'','','','','','','','',0,'','drarchit'),(3778,0,0,2885,4734,'2025-12-01',0,'','','','','','','','',0,'','drarchit'),(3779,0,0,2941,4725,'2025-12-01',0,'','','','','','','','',0,'2025-12-08','drarchit'),(3780,0,0,178,4756,'2025-12-01',0,'','','','','','','','',0,'','drsagar'),(3781,0,0,2182,4752,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','darshan'),(3782,0,0,3292,4747,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3783,0,0,2643,4741,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3784,0,0,3282,4731,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','darshan'),(3785,0,0,1535,4750,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3786,0,0,3287,4737,'2025-12-01',0,'','','','','','','','',0,'2026-01-30','darshan'),(3787,0,0,3299,4759,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3788,0,0,3021,4740,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3789,0,0,3300,4761,'2025-12-01',0,'','','','','','','','',0,'','drsagar'),(3790,0,0,1120,4748,'2025-12-01',0,'','','','','','','','',0,'2026-03-02','darshan'),(3791,0,0,3297,4757,'2025-12-01',0,'','','','','','','','',0,'2026-03-02','darshan'),(3792,0,0,3288,4742,'2025-12-01',0,'','','','','','','','',0,'','drarchit'),(3793,0,0,3286,4736,'2025-12-01',0,'','','','','','','','',0,'2025-12-08','drarchit'),(3794,0,0,2894,4727,'2025-12-01',0,'','','','','','','','',0,'2025-12-31','drarchit'),(3795,0,0,3293,4749,'2025-12-01',0,'','','','','','','','',0,'2025-12-06','drarchit'),(3796,0,0,2254,4760,'2025-12-01',0,'','','','','','','','',0,'2026-03-02','drarchit'),(3797,0,0,1781,4769,'2025-12-01',0,'','','','','','','','',0,'2026-01-30','drjayant'),(3798,0,0,3304,4765,'2025-12-01',0,'','','','','','','','',0,'','drjayant'),(3799,0,0,3272,4709,'2025-12-01',0,'','','','','','','','',0,'2025-12-31','darshan'),(3800,0,0,3301,4762,'2025-12-01',0,'','','','','','','','',0,'2025-12-06','drarchit'),(3801,0,0,3294,4753,'2025-12-01',0,'','','','','','','','',0,'2028-05-19','drarchit'),(3802,0,0,3302,4763,'2025-12-01',0,'','','','','','','','',0,'','darshan'),(3803,0,0,3273,4712,'2025-12-01',0,'','','','','','','','',0,'2025-12-31','darshan'),(3804,0,0,3296,4755,'2025-12-01',0,'','','','','','','','',0,'','drarchit'),(3805,0,0,3295,4754,'2025-12-01',0,'','','','','','','','',0,'2025-12-08','drarchit'),(3806,0,0,199,4766,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','drarchit'),(3807,0,0,3274,4714,'2025-12-01',0,'','','','','','','','',0,'2026-01-12','darshan'),(3808,0,0,3303,4764,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','darshan'),(3809,0,0,3280,4729,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','darshan'),(3810,0,0,3307,4770,'2025-12-01',0,'','','','','','','','',0,'2026-03-11','darshan'),(3811,0,0,3308,4771,'2025-12-01',0,'','','','','','','','',0,'','darshan'),(3812,0,0,3298,4758,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','darshan'),(3813,0,0,3278,4722,'2025-12-01',0,'','','','','','','','',0,'2025-12-06','darshan'),(3814,0,0,2534,4772,'2025-12-01',0,'','','','','','','','',0,'2026-01-12','darshan'),(3815,0,0,3306,4768,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','darshan'),(3816,0,0,1170,4773,'2025-12-01',0,'','','','','','','','',0,'2026-02-14','darshan'),(3817,0,0,2748,4782,'2025-12-01',0,'','','','','','','','',0,'','darshan'),(3818,0,0,3121,4784,'2025-12-01',0,'','','','','','','','',0,'2025-12-06','darshan'),(3819,0,0,1834,4785,'2025-12-01',0,'','','','','','','','',0,'2025-12-31','darshan'),(3820,0,0,2746,4786,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','darshan'),(3821,0,0,3313,4789,'2025-12-01',0,'','','','','','','','',0,'2025-12-06','darshan'),(3822,0,0,1436,4792,'2025-12-01',0,'','','','','','','','',0,'2026-01-10','darshan'),(3823,0,0,3316,4796,'2025-12-01',0,'','','','','','','','',0,'','darshan'),(3824,0,0,2188,4799,'2025-12-01',0,'','','','','','','','',0,'2025-12-22','darshan'),(3825,0,0,2529,4794,'2025-12-01',0,'','','','','','','','',0,'','drsagar'),(3826,0,0,1371,4805,'2025-12-01',0,'','','','','','','','',0,'2026-01-12','darshan'),(3827,0,0,3247,4791,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3828,0,0,3305,4767,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3829,0,0,3259,4775,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3830,0,0,3314,4790,'2025-12-01',0,'','','','','','','','',0,'2025-12-31','drarchit'),(3831,0,0,3310,4776,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3832,0,0,1102,4806,'2025-12-01',0,'','','','','','','','',0,'','drsagar'),(3833,0,0,2804,4820,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3834,0,0,3053,4783,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3835,0,0,3034,4804,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3836,0,0,1501,4811,'2025-12-01',0,'','','','','','','','',0,'','darshan'),(3837,0,0,3315,4793,'2025-12-01',0,'','','','','','','','',0,'2025-12-06','drarchit'),(3838,0,0,3326,4818,'2025-12-01',0,'','','','','','','','',0,'2026-01-30','drjayant'),(3839,0,0,1523,4817,'2025-12-01',0,'','','','','','','','',0,'2026-01-15','darshan'),(3840,0,0,2681,4832,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3841,0,0,3328,4821,'2025-12-01',0,'','','','','','','','',0,'','darshan'),(3842,0,0,3336,4838,'2025-12-01',0,'','','','','','','','',0,'2026-01-30','drarchit'),(3843,0,0,303,4840,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3844,0,0,760,4822,'2025-12-01',0,'','','','','','','','',0,'2026-01-10','darshan'),(3845,0,0,3335,4835,'2025-12-01',0,'','','','','','','','',0,'','drjayant'),(3846,0,0,3331,4825,'2025-12-01',0,'','','','','','','','',0,'','drjayant'),(3847,0,0,3332,4828,'2025-12-01',0,'','','','','','','','',0,'','drsagar'),(3848,0,0,3318,4798,'2025-12-01',0,'','','','','','','','',0,'','drjayant'),(3849,0,0,3330,4824,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','darshan'),(3850,0,0,3325,4815,'2025-12-01',0,'','','','','','','','',0,'','drjayant'),(3851,0,0,3277,4721,'2025-12-01',0,'','','','','','','','',0,'2026-03-11','drarchit'),(3852,0,0,3317,4797,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','darshan'),(3853,0,0,3010,4795,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','drarchit'),(3854,0,0,3327,4819,'2025-12-01',0,'','','','','','','','',0,'2026-01-30','darshan'),(3855,0,0,3338,4841,'2025-12-01',0,'','','','','','','','',0,'2026-01-30','drjayant'),(3856,0,0,1701,4710,'2025-12-01',0,'','','','','','','','',0,'','drridham'),(3857,0,0,1238,4827,'2025-12-01',0,'','','','','','','','',0,'2025-12-31','drarchit'),(3858,0,0,3285,4735,'2025-12-01',0,'','','','','','','','',0,'','drridham'),(3859,0,0,416,4833,'2025-12-01',0,'','','','','','','','',0,'2025-12-22','darshan'),(3860,0,0,3322,4809,'2025-12-01',0,'','','','','','','','',0,'','drridham'),(3861,0,0,3323,4810,'2025-12-01',0,'','','','','','','','',0,'','drridham'),(3862,0,0,2115,4843,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3863,0,0,2005,4844,'2025-12-01',0,'','','','','','','','',0,'','drpratapsi'),(3864,0,0,3290,4744,'2025-12-01',0,'','','','','','','','',0,'2026-02-23','drarchit'),(3865,0,0,3312,4788,'2025-12-01',0,'','','','','','','','',0,'2025-12-06','darshan'),(3866,0,0,1672,4812,'2025-12-01',0,'','','','','','','','',0,'2026-01-30','drarchit'),(3867,0,0,3324,4813,'2025-12-01',0,'','','','','','','','',0,'2025-12-08','drarchit'),(3868,0,0,3341,4848,'2025-12-01',0,'','','','','','','','',0,'','drjayant'),(3869,0,0,3337,4839,'2025-12-01',0,'','','','','','','','',0,'2025-12-08','drarchit'),(3870,0,0,2772,4814,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','darshan'),(3871,0,0,3320,4803,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','darshan'),(3872,0,0,3124,4850,'2025-12-01',0,'','','','','','','','',0,'','drjayant'),(3873,0,0,2268,4836,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','darshan'),(3874,0,0,574,4826,'2025-12-01',0,'','','','','','','','',0,'2026-03-02','drarchit'),(3875,0,0,1480,4846,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','drarchit'),(3876,0,0,3342,4849,'2025-12-01',0,'','','','','','','','',0,'','drjayant'),(3877,0,0,3311,4779,'2025-12-01',0,'','','','','','','','',0,'','drarchit'),(3878,0,0,3291,4745,'2025-12-01',0,'','','','','','','','',0,'','drarchit'),(3879,0,0,2752,4842,'2025-12-01',0,'','','','','','','','',0,'2026-01-12','darshan'),(3880,0,0,3339,4845,'2025-12-01',0,'','','','','','','','',0,'2025-12-31','darshan'),(3881,0,0,1274,4837,'2025-12-01',0,'','','','','','','','',0,'2025-12-31','drarchit'),(3882,0,0,1455,4830,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','drarchit'),(3883,0,0,2567,4851,'2025-12-01',0,'','','','','','','','',0,'2026-01-12','darshan'),(3884,0,0,3329,4823,'2025-12-01',0,'','','','','','','','',0,'2025-12-11','drarchit'),(3885,0,0,3333,4829,'2025-12-01',0,'','','','','','','','',0,'2026-03-02','drarchit'),(3886,0,0,3340,4847,'2025-12-01',0,'','','','','','','','',0,'2025-12-06','drarchit'),(3887,0,0,3321,4807,'2025-12-01',0,'','','','','','','','',0,'2026-03-02','drarchit'),(3888,0,0,3346,4858,'2025-12-02',0,'','','','','','','','',0,'2026-03-12','darshan'),(3889,0,0,3348,4862,'2025-12-02',0,'','','','','','','','',0,'','drpratapsi'),(3890,0,0,1505,4860,'2025-12-02',0,'','','','','','','','',0,'2026-01-16','darshan'),(3891,0,0,1227,4873,'2025-12-02',0,'','','','','','','','',0,'','drpratapsi'),(3892,0,0,2874,4878,'2025-12-02',0,'','','','','','','','',0,'','drpratapsi'),(3893,0,0,3352,4872,'2025-12-02',0,'','','','','','','','',0,'','drarchit'),(3894,0,0,3316,4796,'2025-12-02',0,'','','','','','','','',0,'2025-12-12','darshan'),(3895,0,0,755,4869,'2025-12-02',0,'','','','','','','','',0,'2026-01-31','darshan'),(3896,0,0,3353,4875,'2025-12-02',0,'','','','','','','','',0,'2025-12-08','drarchit'),(3897,0,0,3351,4871,'2025-12-02',0,'','','','','','','','',0,'2026-01-31','darshan'),(3898,0,0,3345,4856,'2025-12-02',0,'','','','','','','','',0,'2026-01-31','darshan'),(3899,0,0,1440,4870,'2025-12-02',0,'','','','','','','','',0,'','drjayant'),(3900,0,0,3355,4877,'2025-12-02',0,'','','','','','','','',0,'2026-03-02','drarchit'),(3901,0,0,3347,4859,'2025-12-02',0,'','','','','','','','',0,'2025-12-09','darshan'),(3902,0,0,3344,4854,'2025-12-02',0,'','','','','','','','',0,'2025-12-08','darshan'),(3903,0,0,625,4879,'2025-12-02',0,'','','','','','','','',0,'2026-01-31','darshan'),(3904,0,0,1335,4861,'2025-12-02',0,'','','','','','','','',0,'2025-12-12','darshan'),(3905,0,0,3362,4890,'2025-12-02',0,'','','','','','','','',0,'','drsagar'),(3906,0,0,3367,4895,'2025-12-02',0,'','','','','','','','',0,'','drjayant'),(3907,0,0,1432,4889,'2025-12-02',0,'','','','','','','','',0,'','drridham'),(3908,0,0,3356,4882,'2025-12-02',0,'','','','','','','','',0,'2026-03-02','drarchit'),(3909,0,0,3357,4883,'2025-12-02',0,'','','','','','','','',0,'2026-01-31','darshan'),(3910,0,0,3363,4891,'2025-12-02',0,'','','','','','','','',0,'2025-12-09','drarchit'),(3911,0,0,3071,4885,'2025-12-02',0,'','','','','','','','',0,'2025-12-12','darshan'),(3912,0,0,3335,4835,'2025-12-02',0,'','','','','','','','',0,'2026-01-31','drjayant'),(3913,0,0,3368,4896,'2025-12-02',0,'','','','','','','','',0,'2026-03-02','drarchit'),(3914,0,0,3365,4893,'2025-12-02',0,'','','','','','','','',0,'2026-03-02','darshan'),(3915,0,0,2842,4865,'2025-12-02',0,'','','','','','','','',0,'2026-01-01','darshan'),(3916,0,0,3371,4899,'2025-12-02',0,'','','','','','','','',0,'','drsagar'),(3917,0,0,3370,4898,'2025-12-02',0,'','','','','','','','',0,'2025-12-09','drarchit'),(3918,0,0,180,4616,'2025-12-02',0,'','','','','','','','',0,'2026-01-31','drjayant'),(3919,0,0,3372,4900,'2025-12-02',0,'','','','','','','','',0,'2026-01-31','drarchit'),(3920,0,0,3373,4901,'2025-12-02',0,'','','','','','','','',0,'2026-03-02','darshan'),(3921,0,0,1346,4874,'2025-12-02',0,'','','','','','','','',0,'2026-01-01','darshan'),(3922,0,0,3343,4853,'2025-12-02',0,'','','','','','','','',0,'2025-12-12','darshan'),(3923,0,0,3374,4902,'2025-12-02',0,'','','','','','','','',0,'','drarchit'),(3924,0,0,3359,4886,'2025-12-02',0,'','','','','','','','',0,'2026-01-16','darshan'),(3925,0,0,3364,4892,'2025-12-02',0,'','','','','','','','',0,'2026-03-02','darshan'),(3926,0,0,3376,4904,'2025-12-02',0,'','','','','','','','',0,'2025-12-08','drarchit'),(3927,0,0,3350,4867,'2025-12-02',0,'','','','','','','','',0,'2025-12-17','darshan'),(3928,0,0,951,4880,'2025-12-02',0,'','','','','','','','',0,'','drarchit'),(3929,0,0,3366,4894,'2025-12-02',0,'','','','','','','','',0,'2025-12-22','darshan'),(3930,0,0,3380,4910,'2025-12-02',0,'','','','','','','','',0,'2025-12-08','drarchit'),(3931,0,0,3358,4884,'2025-12-02',0,'','','','','','','','',0,'2025-12-12','darshan'),(3932,0,0,3265,4908,'2025-12-02',0,'','','','','','','','',0,'','drsagar'),(3933,0,0,2848,4909,'2025-12-02',0,'','','','','','','','',0,'2025-12-22','darshan'),(3934,0,0,2279,4912,'2025-12-02',0,'','','','','','','','',0,'2025-12-09','drarchit'),(3935,0,0,2952,4917,'2025-12-02',0,'','','','','','','','',0,'','drarchit'),(3936,0,0,3382,4913,'2025-12-02',0,'','','','','','','','',0,'2026-03-12','drarchit'),(3937,0,0,3375,4903,'2025-12-02',0,'','','','','','','','',0,'2025-12-12','darshan'),(3938,0,0,303,4918,'2025-12-02',0,'','','','','','','','',0,'','drpratapsi'),(3939,0,0,3360,4887,'2025-12-02',0,'','','','','','','','',0,'2025-12-12','darshan'),(3940,0,0,1501,4811,'2025-12-02',0,'','','','','','','','',0,'','darshan'),(3941,0,0,3361,4888,'2025-12-02',0,'','','','','','','','',0,'2025-12-12','darshan'),(3942,0,0,3377,4905,'2025-12-02',0,'','','','','','','','',0,'2025-12-12','darshan'),(3943,0,0,3381,4911,'2025-12-02',0,'','','','','','','','',0,'2025-12-12','darshan'),(3944,0,0,1054,4919,'2025-12-02',0,'','','','','','','','',0,'2026-01-31','darshan'),(3945,0,0,1503,4923,'2025-12-02',0,'','','','','','','','',0,'2026-01-12','darshan'),(3946,0,0,2423,4928,'2025-12-02',0,'','','','','','','','',0,'2025-12-22','darshan'),(3947,0,0,979,4929,'2025-12-02',0,'','','','','','','','',0,'2026-01-31','darshan'),(3948,0,0,3388,4930,'2025-12-02',0,'','','','','','','','',0,'2026-04-01','darshan'),(3949,0,0,1891,4934,'2025-12-02',0,'','','','','','','','',0,'2026-01-12','darshan'),(3950,0,0,2932,4938,'2025-12-02',0,'','','','','','','','',0,'2025-12-09','darshan'),(3951,0,0,3389,4932,'2025-12-02',0,'','','','','','','','',0,'2026-03-02','drarchit'),(3952,0,0,3390,4933,'2025-12-02',0,'','','','','','','','',0,'2026-03-02','drarchit'),(3953,0,0,3397,4945,'2025-12-02',0,'','','','','','','','',0,'2026-03-02','drjayant'),(3954,0,0,3393,4937,'2025-12-02',0,'','','','','','','','',0,'2026-01-12','darshan'),(3955,0,0,3234,4645,'2025-12-02',0,'','','','','','','','',0,'','drarchit'),(3956,0,0,2257,4941,'2025-12-02',0,'','','','','','','','',0,'2025-12-12','darshan'),(3957,0,0,3399,4947,'2025-12-02',0,'','','','','','','','',0,'','drjayant'),(3958,0,0,3394,4940,'2025-12-02',0,'','','','','','','','',0,'2026-06-01','drarchit'),(3959,0,0,3392,4936,'2025-12-02',0,'','','','','','','','',0,'','drjayant'),(3960,0,0,3391,4935,'2025-12-02',0,'','','','','','','','',0,'2026-03-02','drjayant'),(3961,0,0,3387,4924,'2025-12-02',0,'','','','','','','','',0,'','drpratapsi'),(3962,0,0,3396,4943,'2025-12-02',0,'','','','','','','','',0,'2026-03-02','drarchit'),(3963,0,0,2711,4927,'2025-12-02',0,'','','','','','','','',0,'','drpratapsi'),(3964,0,0,3400,4948,'2025-12-02',0,'','','','','','','','',0,'2025-12-09','drarchit'),(3965,0,0,3378,4906,'2025-12-02',0,'','','','','','','','',0,'','drpratapsi'),(3966,0,0,3349,4864,'2025-12-02',0,'','','','','','','','',0,'','drpratapsi'),(3967,0,0,3072,4866,'2025-12-02',0,'','','','','','','','',0,'','drpratapsi'),(3968,0,0,2584,4944,'2025-12-02',0,'','','','','','','','',0,'2025-12-22','darshan'),(3969,0,0,3402,4952,'2025-12-02',0,'','','','','','','','',0,'2026-03-02','drarchit'),(3970,0,0,1775,4955,'2025-12-02',0,'','','','','','','','',0,'','drpratapsi'),(3971,0,0,3005,4925,'2025-12-02',0,'','','','','','','','',0,'','drpratapsi'),(3972,0,0,856,4949,'2025-12-02',0,'','','','','','','','',0,'2026-01-12','darshan'),(3973,0,0,3401,4951,'2025-12-02',0,'','','','','','','','',0,'2026-03-02','drarchit'),(3974,0,0,2713,4956,'2025-12-02',0,'','','','','','','','',0,'2026-01-13','darshan'),(3975,0,0,2930,4950,'2025-12-02',0,'','','','','','','','',0,'','drpratapsi'),(3976,0,0,3404,4957,'2025-12-02',0,'','','','','','','','',0,'2026-03-02','drarchit'),(3977,0,0,1288,4959,'2025-12-02',0,'','','','','','','','',0,'','drpratapsi'),(3978,0,0,1953,4958,'2025-12-02',0,'','','','','','','','',0,'','drpratapsi'),(3979,0,0,3354,4876,'2025-12-02',0,'','','','','','','','',0,'','drpratapsi'),(3980,0,0,3386,4922,'2025-12-02',0,'','','','','','','','',0,'','drpratapsi'),(3981,0,0,2118,4926,'2025-12-02',0,'','','','','','','','',0,'','drpratapsi'),(3982,0,0,3310,4953,'2025-12-02',0,'','','','','','','','',0,'','drpratapsi'),(3983,0,0,3403,4954,'2025-12-02',0,'','','','','','','','',0,'2025-12-09','drarchit'),(3984,0,0,3407,4962,'2025-12-02',0,'','','','','','','','',0,'2026-01-31','drjayant'),(3985,0,0,3405,4960,'2025-12-02',0,'','','','','','','','',0,'2026-03-02','drarchit'),(3986,0,0,2507,4963,'2025-12-02',0,'','','','','','','','',0,'2025-12-09','drarchit'),(3987,0,0,3103,4965,'2025-12-02',0,'','','','','','','','',0,'2025-12-08','drarchit'),(3988,0,0,3395,4942,'2025-12-02',0,'','','','','','','','',0,'2026-01-01','darshan'),(3989,0,0,3406,4961,'2025-12-02',0,'','','','','','','','',0,'','drarchit'),(3990,0,0,3264,4931,'2025-12-02',0,'','','','','','','','',0,'','drsagar'),(3991,0,0,3398,4946,'2025-12-02',0,'','','','','','','','',0,'2025-12-09','drarchit'),(3992,0,0,2528,4964,'2025-12-02',0,'','','','','','','','',0,'','drsagar'),(3993,0,0,3408,4966,'2025-12-02',0,'','','','','','','','',0,'2025-12-12','drarchit'),(3994,0,0,3379,4907,'2025-12-02',0,'','','','','','','','',0,'','drarchit'),(3995,0,0,3409,4967,'2025-12-02',0,'','','','','','','','',0,'2025-12-17','drarchit'),(3996,0,0,2965,4971,'2025-12-03',0,'','','','','','','','',0,'2026-01-14','darshan'),(3997,0,0,3412,4974,'2025-12-03',0,'','','','','','','','',0,'2026-02-02','darshan'),(3998,0,0,1777,4988,'2025-12-03',0,'','','','','','','','',0,'2026-02-02','darshan'),(3999,0,0,2419,4989,'2025-12-03',0,'','','','','','','','',0,'2026-01-12','darshan'),(4000,0,0,3416,4980,'2025-12-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(4001,0,0,1144,4981,'2025-12-03',0,'','','','','','','','',0,'2026-01-12','darshan'),(4002,0,0,3425,4997,'2025-12-03',0,'','','','','','','','',0,'','drjayant'),(4003,0,0,3427,5000,'2025-12-03',0,'','','','','','','','',0,'','drjayant'),(4004,0,0,3411,4972,'2025-12-03',0,'','','','','','','','',0,'','drsagar'),(4005,0,0,3415,4979,'2025-12-03',0,'','','','','','','','',0,'','drjayant'),(4006,0,0,693,4983,'2025-12-03',0,'','','','','','','','',0,'','drsagar'),(4007,0,0,3419,4986,'2025-12-03',0,'','','','','','','','',0,'2025-12-18','drarchit'),(4008,0,0,3421,4990,'2025-12-03',0,'','','','','','','','',0,'2026-02-02','darshan'),(4009,0,0,3422,4991,'2025-12-03',0,'','','','','','','','',0,'2026-02-02','darshan'),(4010,0,0,33,5007,'2025-12-03',0,'','','','','','','','',0,'2025-12-06','drarchit'),(4011,0,0,3428,5002,'2025-12-03',0,'','','','','','','','',0,'2026-02-02','darshan'),(4012,0,0,3432,5011,'2025-12-03',0,'','','','','','','','',0,'2026-01-02','drjayant'),(4013,0,0,3424,4994,'2025-12-03',0,'','','','','','','','',0,'2026-03-03','drarchit'),(4014,0,0,3259,5001,'2025-12-03',0,'','','','','','','','',0,'','drpratapsi'),(4015,0,0,834,4976,'2025-12-03',0,'','','','','','','','',0,'','drpratapsi'),(4016,0,0,708,5013,'2025-12-03',0,'','','','','','','','',0,'2025-12-10','drarchit'),(4017,0,0,2290,5008,'2025-12-03',0,'','','','','','','','',0,'','drpratapsi'),(4018,0,0,1595,5005,'2025-12-03',0,'','','','','','','','',0,'2026-02-02','darshan'),(4019,0,0,1556,4985,'2025-12-03',0,'','','','','','','','',0,'','drarchit'),(4020,0,0,3435,5015,'2025-12-03',0,'','','','','','','','',0,'','drjayant'),(4021,0,0,3414,4978,'2025-12-03',0,'','','','','','','','',0,'','drjayant'),(4022,0,0,3423,4992,'2025-12-03',0,'','','','','','','','',0,'2025-12-09','darshan'),(4023,0,0,3413,4975,'2025-12-03',0,'','','','','','','','',0,'2025-12-13','darshan'),(4024,0,0,3438,5022,'2025-12-03',0,'','','','','','','','',0,'','drpratapsi'),(4025,0,0,1856,5009,'2025-12-03',0,'','','','','','','','',0,'','drarchit'),(4026,0,0,2689,5023,'2025-12-03',0,'','','','','','','','',0,'','drpratapsi'),(4027,0,0,3439,5024,'2025-12-03',0,'','','','','','','','',0,'2025-12-08','drarchit'),(4028,0,0,2406,5004,'2025-12-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(4029,0,0,3431,5010,'2025-12-03',0,'','','','','','','','',0,'2026-03-03','darshan'),(4030,0,0,3429,5003,'2025-12-03',0,'','','','','','','','',0,'','drarchit'),(4031,0,0,3440,5026,'2025-12-03',0,'','','','','','','','',0,'2026-03-03','drarchit'),(4032,0,0,1457,5025,'2025-12-03',0,'','','','','','','','',0,'2026-02-02','darshan'),(4033,0,0,3038,5027,'2025-12-03',0,'','','','','','','','',0,'','drarchit'),(4034,0,0,1928,5021,'2025-12-03',0,'','','','','','','','',0,'','drsagar'),(4035,0,0,3436,5017,'2025-12-03',0,'','','','','','','','',0,'2026-03-03','drarchit'),(4036,0,0,3410,4973,'2025-12-03',0,'','','','','','','','',0,'','drarchit'),(4037,0,0,3434,5014,'2025-12-03',0,'','','','','','','','',0,'2025-12-08','darshan'),(4038,0,0,101,4993,'2025-12-03',0,'','','','','','','','',0,'2026-03-03','drarchit'),(4039,0,0,3392,4936,'2025-12-03',0,'','','','','','','','',0,'','drjayant'),(4040,0,0,1807,5016,'2025-12-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(4041,0,0,3420,4987,'2025-12-03',0,'','','','','','','','',0,'2026-03-13','drarchit'),(4042,0,0,3248,4666,'2025-12-03',0,'','','','','','','','',0,'','darshan'),(4043,0,0,3441,5028,'2025-12-03',0,'','','','','','','','',0,'','drarchit'),(4044,0,0,3399,4947,'2025-12-03',0,'','','','','','','','',0,'2026-01-02','drjayant'),(4045,0,0,3437,5018,'2025-12-03',0,'','','','','','','','',0,'2025-12-13','darshan'),(4046,0,0,3430,5006,'2025-12-03',0,'','','','','','','','',0,'2026-03-03','drarchit'),(4047,0,0,3444,5032,'2025-12-03',0,'','','','','','','','',0,'2026-01-02','drarchit'),(4048,0,0,3418,4984,'2025-12-03',0,'','','','','','','','',0,'2025-12-23','darshan'),(4049,0,0,3443,5031,'2025-12-03',0,'','','','','','','','',0,'2025-12-10','drarchit'),(4050,0,0,931,5030,'2025-12-03',0,'','','','','','','','',0,'2026-03-03','drarchit'),(4051,0,0,3433,5012,'2025-12-03',0,'','','','','','','','',0,'2025-12-23','darshan'),(4052,0,0,1683,5034,'2025-12-03',0,'','','','','','','','',0,'2026-01-12','darshan'),(4053,0,0,3445,5033,'2025-12-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(4054,0,0,2424,5042,'2025-12-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(4055,0,0,3448,5044,'2025-12-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(4056,0,0,72,5037,'2025-12-03',0,'','','','','','','','',0,'','darshan'),(4057,0,0,3446,5039,'2025-12-03',0,'','','','','','','','',0,'','darshan'),(4058,0,0,963,5040,'2025-12-03',0,'','','','','','','','',0,'','darshan'),(4059,0,0,1951,5043,'2025-12-03',0,'','','','','','','','',0,'','darshan'),(4060,0,0,1941,5046,'2025-12-03',0,'','','','','','','','',0,'','darshan'),(4061,0,0,2493,5050,'2025-12-03',0,'','','','','','','','',0,'2026-01-12','darshan'),(4062,0,0,1017,5053,'2025-12-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(4063,0,0,2426,5058,'2025-12-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(4064,0,0,2356,5035,'2025-12-03',0,'','','','','','','','',0,'','drarchit'),(4065,0,0,1329,5054,'2025-12-03',0,'','','','','','','','',0,'','drpratapsi'),(4066,0,0,3442,5029,'2025-12-03',0,'','','','','','','','',0,'','drpratapsi'),(4067,0,0,2727,5072,'2025-12-03',0,'','','','','','','','',0,'2026-03-03','drarchit'),(4068,0,0,3456,5057,'2025-12-03',0,'','','','','','','','',0,'','drpratapsi'),(4069,0,0,3463,5066,'2025-12-03',0,'','','','','','','','',0,'','drarchit'),(4070,0,0,3467,5070,'2025-12-03',0,'','','','','','','','',0,'','drjayant'),(4071,0,0,3426,4999,'2025-12-03',0,'','','','','','','','',0,'','drpratapsi'),(4072,0,0,3461,5063,'2025-12-03',0,'','','','','','','','',0,'','drsagar'),(4073,0,0,3465,5068,'2025-12-03',0,'','','','','','','','',0,'2026-02-02','drarchit'),(4074,0,0,3475,5079,'2025-12-03',0,'','','','','','','','',0,'2025-12-08','darshan'),(4075,0,0,3458,5060,'2025-12-03',0,'','','','','','','','',0,'2026-02-02','darshan'),(4076,0,0,3481,5086,'2025-12-03',0,'','','','','','','','',0,'','drpratapsi'),(4077,0,0,3466,5069,'2025-12-03',0,'','','','','','','','',0,'2026-03-03','drarchit'),(4078,0,0,3328,4821,'2025-12-03',0,'','','','','','','','',0,'','darshan'),(4079,0,0,3468,5071,'2025-12-03',0,'','','','','','','','',0,'2025-12-08','drarchit'),(4080,0,0,3473,5077,'2025-12-03',0,'','','','','','','','',0,'2026-02-02','drjayant'),(4081,0,0,3460,5062,'2025-12-03',0,'','','','','','','','',0,'2026-02-02','darshan'),(4082,0,0,2685,5083,'2025-12-03',0,'','','','','','','','',0,'2025-12-08','drarchit'),(4083,0,0,3453,5052,'2025-12-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(4084,0,0,3472,5076,'2025-12-03',0,'','','','','','','','',0,'2025-12-08','drarchit'),(4085,0,0,789,5090,'2025-12-03',0,'','','','','','','','',0,'','drpratapsi'),(4086,0,0,3471,5075,'2025-12-03',0,'','','','','','','','',0,'','drjayant'),(4087,0,0,2722,5019,'2025-12-03',0,'','','','','','','','',0,'','drridham'),(4088,0,0,3450,5047,'2025-12-03',0,'','','','','','','','',0,'','drridham'),(4089,0,0,3451,5048,'2025-12-03',0,'','','','','','','','',0,'','drridham'),(4090,0,0,3452,5049,'2025-12-03',0,'','','','','','','','',0,'','drridham'),(4091,0,0,3469,5073,'2025-12-03',0,'','','','','','','','',0,'2025-12-13','drarchit'),(4092,0,0,3455,5056,'2025-12-03',0,'','','','','','','','',0,'','drridham'),(4093,0,0,3459,5061,'2025-12-03',0,'','','','','','','','',0,'','drridham'),(4094,0,0,3474,5078,'2025-12-03',0,'','','','','','','','',0,'','drridham'),(4095,0,0,3483,5088,'2025-12-03',0,'','','','','','','','',0,'2026-02-02','drjayant'),(4096,0,0,3454,5055,'2025-12-03',0,'','','','','','','','',0,'2025-12-13','darshan'),(4097,0,0,2995,5093,'2025-12-03',0,'','','','','','','','',0,'','drpratapsi'),(4098,0,0,3476,5080,'2025-12-03',0,'','','','','','','','',0,'2026-02-02','drarchit'),(4099,0,0,3480,5085,'2025-12-03',0,'','','','','','','','',0,'2026-03-03','drarchit'),(4100,0,0,3457,5059,'2025-12-03',0,'','','','','','','','',0,'2025-12-13','darshan'),(4101,0,0,3487,5095,'2025-12-03',0,'','','','','','','','',0,'2026-02-02','drjayant'),(4102,0,0,3447,5041,'2025-12-03',0,'','','','','','','','',0,'','drjayant'),(4103,0,0,3482,5087,'2025-12-03',0,'','','','','','','','',0,'2026-03-03','drarchit'),(4104,0,0,3449,5045,'2025-12-03',0,'','','','','','','','',0,'2026-01-02','drjayant'),(4105,0,0,3491,5100,'2025-12-03',0,'','','','','','','','',0,'','darshan'),(4106,0,0,3464,5067,'2025-12-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(4107,0,0,787,5107,'2025-12-03',0,'','','','','','','','',0,'','drsagar'),(4108,0,0,1085,5099,'2025-12-03',0,'','','','','','','','',0,'2026-02-02','drarchit'),(4109,0,0,3489,5097,'2025-12-03',0,'','','','','','','','',0,'2025-12-08','darshan'),(4110,0,0,3486,5094,'2025-12-03',0,'','','','','','','','',0,'','drpratapsi'),(4111,0,0,1288,5101,'2025-12-03',0,'','','','','','','','',0,'','drpratapsi'),(4112,0,0,3021,5105,'2025-12-03',0,'','','','','','','','',0,'','drpratapsi'),(4113,0,0,1147,5065,'2025-12-03',0,'','','','','','','','',0,'2026-01-12','darshan'),(4114,0,0,2033,5106,'2025-12-03',0,'','','','','','','','',0,'','drpratapsi'),(4115,0,0,3310,5104,'2025-12-03',0,'','','','','','','','',0,'','drpratapsi'),(4116,0,0,3462,5064,'2025-12-03',0,'','','','','','','','',0,'2025-12-13','darshan'),(4117,0,0,3493,5103,'2025-12-03',0,'','','','','','','','',0,'2026-03-13','darshan'),(4118,0,0,3470,5074,'2025-12-03',0,'','','','','','','','',0,'2026-01-02','darshan'),(4119,0,0,3477,5081,'2025-12-03',0,'','','','','','','','',0,'2026-03-13','darshan'),(4120,0,0,3484,5091,'2025-12-03',0,'','','','','','','','',0,'2025-12-13','darshan'),(4121,0,0,3187,4563,'2025-12-03',0,'','','','','','','','',0,'2025-12-08','darshan'),(4122,0,0,2407,5111,'2025-12-04',0,'','','','','','','','',0,'2025-12-15','darshan'),(4123,0,0,2486,5114,'2025-12-04',0,'','','','','','','','',0,'2026-01-13','darshan'),(4124,0,0,2908,5116,'2025-12-04',0,'','','','','','','','',0,'2025-12-15','darshan'),(4125,0,0,3500,5121,'2025-12-04',0,'','','','','','','','',0,'2025-12-11','darshan'),(4126,0,0,3499,5118,'2025-12-04',0,'','','','','','','','',0,'2026-03-04','drarchit'),(4127,0,0,3497,5112,'2025-12-04',0,'','','','','','','','',0,'2026-02-02','drjayant'),(4128,0,0,3496,5110,'2025-12-04',0,'','','','','','','','',0,'','drjayant'),(4129,0,0,3501,5122,'2025-12-04',0,'','','','','','','','',0,'2025-12-15','darshan'),(4130,0,0,1857,5126,'2025-12-04',0,'','','','','','','','',0,'2025-12-24','darshan'),(4131,0,0,3502,5123,'2025-12-04',0,'','','','','','','','',0,'2026-03-14','darshan'),(4132,0,0,3510,5135,'2025-12-04',0,'','','','','','','','',0,'','drarchit'),(4133,0,0,3504,5128,'2025-12-04',0,'','','','','','','','',0,'2026-03-04','drarchit'),(4134,0,0,2712,5124,'2025-12-04',0,'','','','','','','','',0,'2026-01-15','darshan'),(4135,0,0,2300,5127,'2025-12-04',0,'','','','','','','','',0,'2026-01-03','darshan'),(4136,0,0,3503,5125,'2025-12-04',0,'','','','','','','','',0,'2025-12-09','drarchit'),(4137,0,0,3506,5130,'2025-12-04',0,'','','','','','','','',0,'2026-02-02','darshan'),(4138,0,0,3509,5134,'2025-12-04',0,'','','','','','','','',0,'2025-12-11','drarchit'),(4139,0,0,3511,5137,'2025-12-04',0,'','','','','','','','',0,'2025-12-24','darshan'),(4140,0,0,1924,5139,'2025-12-04',0,'','','','','','','','',0,'','drjayant'),(4141,0,0,3513,5140,'2025-12-04',0,'','','','','','','','',0,'2025-12-11','drarchit'),(4142,0,0,3507,5132,'2025-12-04',0,'','','','','','','','',0,'','drridham'),(4143,0,0,3515,5142,'2025-12-04',0,'','','','','','','','',0,'2026-01-03','drjayant'),(4144,0,0,3517,5145,'2025-12-04',0,'','','','','','','','',0,'2025-12-11','drarchit'),(4145,0,0,3508,5133,'2025-12-04',0,'','','','','','','','',0,'2025-12-15','darshan'),(4146,0,0,3519,5147,'2025-12-04',0,'','','','','','','','',0,'2025-12-11','drarchit'),(4147,0,0,2256,5119,'2025-12-04',0,'','','','','','','','',0,'','drarchit'),(4148,0,0,2592,5149,'2025-12-04',0,'','','','','','','','',0,'2025-12-09','drarchit'),(4149,0,0,3516,5144,'2025-12-04',0,'','','','','','','','',0,'2025-12-11','drarchit'),(4150,0,0,3520,5150,'2025-12-04',0,'','','','','','','','',0,'2025-12-15','drjayant'),(4151,0,0,3523,5155,'2025-12-04',0,'','','','','','','','',0,'2025-12-11','drarchit'),(4152,0,0,3512,5138,'2025-12-04',0,'','','','','','','','',0,'','darshan'),(4153,0,0,3518,5146,'2025-12-04',0,'','','','','','','','',0,'2026-04-03','darshan'),(4154,0,0,1526,5153,'2025-12-04',0,'','','','','','','','',0,'','drjayant'),(4155,0,0,3521,5151,'2025-12-04',0,'','','','','','','','',0,'2026-04-03','darshan'),(4156,0,0,3522,5152,'2025-12-04',0,'','','','','','','','',0,'2026-03-04','darshan'),(4157,0,0,3505,5129,'2025-12-04',0,'','','','','','','','',0,'2025-12-11','drarchit'),(4158,0,0,1862,5158,'2025-12-04',0,'','','','','','','','',0,'2026-01-13','darshan'),(4159,0,0,3526,5159,'2025-12-04',0,'','','','','','','','',0,'','drarchit'),(4160,0,0,3494,5108,'2025-12-04',0,'','','','','','','','',0,'','drjayant'),(4161,0,0,1631,5161,'2025-12-04',0,'','','','','','','','',0,'2026-01-19','darshan'),(4162,0,0,3527,5160,'2025-12-04',0,'','','','','','','','',0,'2025-12-15','darshan'),(4163,0,0,3514,5141,'2025-12-04',0,'','','','','','','','',0,'2025-12-15','darshan'),(4164,0,0,513,5143,'2025-12-04',0,'','','','','','','','',0,'2025-12-15','darshan'),(4165,0,0,3498,5115,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4166,0,0,1343,1688,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4167,0,0,3531,5170,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4168,0,0,2767,3868,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4169,0,0,2678,5166,'2025-12-04',0,'','','','','','','','',0,'2026-01-15','darshan'),(4170,0,0,3534,5174,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4171,0,0,2903,4084,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4172,0,0,2830,5167,'2025-12-04',0,'','','','','','','','',0,'2025-12-24','darshan'),(4173,0,0,2711,3766,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4174,0,0,3208,4605,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4175,0,0,3305,5136,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4176,0,0,3532,5171,'2025-12-04',0,'','','','','','','','',0,'2026-01-03','darshan'),(4177,0,0,3535,5177,'2025-12-04',0,'','','','','','','','',0,'2026-02-02','darshan'),(4178,0,0,3536,5179,'2025-12-04',0,'','','','','','','','',0,'2026-02-02','darshan'),(4179,0,0,3538,5183,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4180,0,0,1885,5180,'2025-12-04',0,'','','','','','','','',0,'2026-01-13','darshan'),(4181,0,0,3537,5181,'2025-12-04',0,'','','','','','','','',0,'','drridham'),(4182,0,0,3386,5131,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4183,0,0,3319,5117,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4184,0,0,803,5176,'2025-12-04',0,'','','','','','','','',0,'2026-02-02','darshan'),(4185,0,0,3525,5157,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4186,0,0,2738,5184,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4187,0,0,3127,5178,'2025-12-04',0,'','','','','','','','',0,'','darshan'),(4188,0,0,3533,5173,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4189,0,0,721,5182,'2025-12-04',0,'','','','','','','','',0,'2026-02-02','drarchit'),(4190,0,0,3528,5165,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4191,0,0,3491,5100,'2025-12-04',0,'','','','','','','','',0,'','darshan'),(4192,0,0,774,5187,'2025-12-04',0,'','','','','','','','',0,'2026-01-13','darshan'),(4193,0,0,2710,5193,'2025-12-04',0,'','','','','','','','',0,'','drsagar'),(4194,0,0,3539,5185,'2025-12-04',0,'','','','','','','','',0,'2026-03-14','darshan'),(4195,0,0,3543,5194,'2025-12-04',0,'','','','','','','','',0,'','drsagar'),(4196,0,0,3542,5189,'2025-12-04',0,'','','','','','','','',0,'2026-01-03','drarchit'),(4197,0,0,1005,5190,'2025-12-04',0,'','','','','','','','',0,'','drridham'),(4198,0,0,3545,5197,'2025-12-04',0,'','','','','','','','',0,'','drridham'),(4199,0,0,3018,5192,'2025-12-04',0,'','','','','','','','',0,'2025-12-11','drarchit'),(4200,0,0,3181,5191,'2025-12-04',0,'','','','','','','','',0,'2025-12-15','darshan'),(4201,0,0,833,5196,'2025-12-04',0,'','','','','','','','',0,'2026-01-03','drarchit'),(4202,0,0,3547,5204,'2025-12-04',0,'','','','','','','','',0,'','drjayant'),(4203,0,0,2510,5199,'2025-12-04',0,'','','','','','','','',0,'2026-01-03','drarchit'),(4204,0,0,2692,5202,'2025-12-04',0,'','','','','','','','',0,'','drarchit'),(4205,0,0,3529,5168,'2025-12-04',0,'','','','','','','','',0,'2025-12-24','darshan'),(4206,0,0,3544,5195,'2025-12-04',0,'','','','','','','','',0,'2025-12-15','darshan'),(4207,0,0,766,5198,'2025-12-04',0,'','','','','','','','',0,'2026-02-02','darshan'),(4208,0,0,3479,5084,'2025-12-04',0,'','','','','','','','',0,'','drarchit'),(4209,0,0,2877,5203,'2025-12-04',0,'','','','','','','','',0,'2025-12-24','darshan'),(4210,0,0,1288,5207,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4211,0,0,3548,5205,'2025-12-04',0,'','','','','','','','',0,'2026-03-14','drarchit'),(4212,0,0,3546,5201,'2025-12-04',0,'','','','','','','','',0,'2026-03-04','drarchit'),(4213,0,0,3549,5209,'2025-12-04',0,'','','','','','','','',0,'2025-12-09','darshan'),(4214,0,0,3486,5094,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4215,0,0,2662,5162,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4216,0,0,2333,5200,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4217,0,0,3310,5206,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4218,0,0,3541,5188,'2025-12-04',0,'','','','','','','','',0,'','drpratapsi'),(4219,0,0,3540,5186,'2025-12-04',0,'','','','','','','','',0,'2025-12-11','drarchit'),(4220,0,0,3550,5210,'2025-12-04',0,'','','','','','','','',0,'2025-12-09','darshan'),(4221,0,0,3123,5208,'2025-12-04',0,'','','','','','','','',0,'','drarchit'),(4222,0,0,3552,5213,'2025-12-04',0,'','','','','','','','',0,'','drarchit'),(4223,0,0,3551,5211,'2025-12-04',0,'','','','','','','','',0,'2026-01-13','darshan'),(4224,0,0,1721,5212,'2025-12-04',0,'','','','','','','','',0,'2025-12-24','darshan'),(4225,0,0,554,5214,'2025-12-04',0,'','','','','','','','',0,'','drjayant'),(4226,0,0,2952,5215,'2025-12-04',0,'','','','','','','','',0,'2025-12-15','drarchit'),(4227,0,0,1580,5220,'2025-12-05',0,'','','','','','','','',0,'2026-01-05','darshan'),(4228,0,0,2980,5219,'2025-12-05',0,'','','','','','','','',0,'2026-01-16','darshan'),(4229,0,0,2062,5228,'2025-12-05',0,'','','','','','','','',0,'2026-01-05','darshan'),(4230,0,0,3208,5224,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4231,0,0,3563,5233,'2025-12-05',0,'','','','','','','','',0,'','drjayant'),(4232,0,0,3556,5222,'2025-12-05',0,'','','','','','','','',0,'2026-03-16','darshan'),(4233,0,0,3568,5238,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4234,0,0,3319,5242,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4235,0,0,2295,5230,'2025-12-05',0,'','','','','','','','',0,'2026-03-05','drarchit'),(4236,0,0,3571,5243,'2025-12-05',0,'','','','','','','','',0,'','drsagar'),(4237,0,0,3561,5231,'2025-12-05',0,'','','','','','','','',0,'2026-03-05','drarchit'),(4238,0,0,3557,5225,'2025-12-05',0,'','','','','','','','',0,'2026-03-05','drarchit'),(4239,0,0,3559,5227,'2025-12-05',0,'','','','','','','','',0,'2026-01-14','darshan'),(4240,0,0,3564,5234,'2025-12-05',0,'','','','','','','','',0,'2025-12-10','drarchit'),(4241,0,0,3566,5236,'2025-12-05',0,'','','','','','','','',0,'2026-03-05','darshan'),(4242,0,0,3576,5248,'2025-12-05',0,'','','','','','','','',0,'2026-03-05','drarchit'),(4243,0,0,1575,5240,'2025-12-05',0,'','','','','','','','',0,'2026-01-19','darshan'),(4244,0,0,3577,5252,'2025-12-05',0,'','','','','','','','',0,'2025-12-10','drarchit'),(4245,0,0,3573,5245,'2025-12-05',0,'','','','','','','','',0,'','drjayant'),(4246,0,0,3574,5246,'2025-12-05',0,'','','','','','','','',0,'','drsagar'),(4247,0,0,3575,5247,'2025-12-05',0,'','','','','','','','',0,'','drsagar'),(4248,0,0,164,5249,'2025-12-05',0,'','','','','','','','',0,'2025-12-25','darshan'),(4249,0,0,3076,5254,'2025-12-05',0,'','','','','','','','',0,'','drarchit'),(4250,0,0,2987,5251,'2025-12-05',0,'','','','','','','','',0,'2026-01-16','darshan'),(4251,0,0,3581,5257,'2025-12-05',0,'','','','','','','','',0,'2025-12-10','drarchit'),(4252,0,0,1510,5250,'2025-12-05',0,'','','','','','','','',0,'2026-01-14','darshan'),(4253,0,0,3572,5244,'2025-12-05',0,'','','','','','','','',0,'2025-12-15','darshan'),(4254,0,0,3579,5255,'2025-12-05',0,'','','','','','','','',0,'2025-12-12','drarchit'),(4255,0,0,3578,5253,'2025-12-05',0,'','','','','','','','',0,'2025-12-10','darshan'),(4256,0,0,3582,5258,'2025-12-05',0,'','','','','','','','',0,'2026-01-05','drarchit'),(4257,0,0,3555,5221,'2025-12-05',0,'','','','','','','','',0,'2025-12-25','darshan'),(4258,0,0,3585,5261,'2025-12-05',0,'','','','','','','','',0,'2025-12-10','drarchit'),(4259,0,0,3558,5226,'2025-12-05',0,'','','','','','','','',0,'2026-01-05','darshan'),(4260,0,0,3583,5259,'2025-12-05',0,'','','','','','','','',0,'2026-02-03','darshan'),(4261,0,0,3586,5263,'2025-12-05',0,'','','','','','','','',0,'2025-12-15','drarchit'),(4262,0,0,3230,5262,'2025-12-05',0,'','','','','','','','',0,'','drsagar'),(4263,0,0,3560,5229,'2025-12-05',0,'','','','','','','','',0,'2025-12-25','darshan'),(4264,0,0,3305,5217,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4265,0,0,3538,5264,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4266,0,0,3562,5232,'2025-12-05',0,'','','','','','','','',0,'2025-12-15','darshan'),(4267,0,0,3565,5235,'2025-12-05',0,'','','','','','','','',0,'2026-01-05','darshan'),(4268,0,0,3587,5265,'2025-12-05',0,'','','','','','','','',0,'','drsagar'),(4269,0,0,3569,5239,'2025-12-05',0,'','','','','','','','',0,'2025-12-15','darshan'),(4270,0,0,3580,5256,'2025-12-05',0,'','','','','','','','',0,'2025-12-25','darshan'),(4271,0,0,3588,5266,'2025-12-05',0,'','','','','','','','',0,'2025-12-10','darshan'),(4272,0,0,3584,5260,'2025-12-05',0,'','','','','','','','',0,'2025-12-15','darshan'),(4273,0,0,2081,5267,'2025-12-05',0,'','','','','','','','',0,'','darshan'),(4274,0,0,2331,5270,'2025-12-05',0,'','','','','','','','',0,'','darshan'),(4275,0,0,2485,5271,'2025-12-05',0,'','','','','','','','',0,'','darshan'),(4276,0,0,2084,5272,'2025-12-05',0,'','','','','','','','',0,'','darshan'),(4277,0,0,1129,5273,'2025-12-05',0,'','','','','','','','',0,'2026-01-05','darshan'),(4278,0,0,349,5269,'2025-12-05',0,'','','','','','','','',0,'2026-01-05','darshan'),(4279,0,0,3591,5275,'2025-12-05',0,'','','','','','','','',0,'2025-12-15','darshan'),(4280,0,0,3275,5279,'2025-12-05',0,'','','','','','','','',0,'2025-12-10','darshan'),(4281,0,0,3423,5281,'2025-12-05',0,'','','','','','','','',0,'','darshan'),(4282,0,0,1555,5283,'2025-12-05',0,'','','','','','','','',0,'2026-01-14','darshan'),(4283,0,0,526,5288,'2025-12-05',0,'','','','','','','','',0,'2026-02-03','darshan'),(4284,0,0,3121,5276,'2025-12-05',0,'','','','','','','','',0,'2025-12-10','darshan'),(4285,0,0,2256,5277,'2025-12-05',0,'','','','','','','','',0,'','drarchit'),(4286,0,0,3592,5284,'2025-12-05',0,'','','','','','','','',0,'2025-12-10','darshan'),(4287,0,0,3590,5274,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4288,0,0,3598,5298,'2025-12-05',0,'','','','','','','','',0,'2025-12-12','drarchit'),(4289,0,0,2919,5280,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4290,0,0,1288,5303,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4291,0,0,2738,5302,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4292,0,0,2882,5294,'2025-12-05',0,'','','','','','','','',0,'2025-12-15','darshan'),(4293,0,0,3600,5305,'2025-12-05',0,'','','','','','','','',0,'2025-12-10','darshan'),(4294,0,0,2519,5297,'2025-12-05',0,'','','','','','','','',0,'','drsagar'),(4295,0,0,3595,5289,'2025-12-05',0,'','','','','','','','',0,'','drridham'),(4296,0,0,2535,5285,'2025-12-05',0,'','','','','','','','',0,'2025-12-15','darshan'),(4297,0,0,3594,5287,'2025-12-05',0,'','','','','','','','',0,'2025-12-15','darshan'),(4298,0,0,3593,5286,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4299,0,0,175,5313,'2025-12-05',0,'','','','','','','','',0,'2026-01-05','drjayant'),(4300,0,0,3187,4563,'2025-12-05',0,'','','','','','','','',0,'','darshan'),(4301,0,0,1005,5312,'2025-12-05',0,'','','','','','','','',0,'','drridham'),(4302,0,0,3258,5290,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4303,0,0,2989,5304,'2025-12-05',0,'','','','','','','','',0,'2025-12-15','darshan'),(4304,0,0,1564,5299,'2025-12-05',0,'','','','','','','','',0,'','drsagar'),(4305,0,0,3254,5293,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4306,0,0,2503,5292,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4307,0,0,3567,5237,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4308,0,0,3603,5310,'2025-12-05',0,'','','','','','','','',0,'2026-03-05','drarchit'),(4309,0,0,3601,5308,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4310,0,0,3589,5268,'2025-12-05',0,'','','','','','','','',0,'2025-12-15','darshan'),(4311,0,0,3604,5311,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4312,0,0,1539,5306,'2025-12-05',0,'','','','','','','','',0,'2026-01-14','darshan'),(4313,0,0,3602,5309,'2025-12-05',0,'','','','','','','','',0,'2026-03-05','drarchit'),(4314,0,0,1968,5315,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4315,0,0,2115,5324,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4316,0,0,2681,5322,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4317,0,0,3606,5317,'2025-12-05',0,'','','','','','','','',0,'2026-03-05','drarchit'),(4318,0,0,3553,5216,'2025-12-05',0,'','','','','','','','',0,'','drarchit'),(4319,0,0,1422,5319,'2025-12-05',0,'','','','','','','','',0,'2026-03-05','drarchit'),(4320,0,0,3597,5296,'2025-12-05',0,'','','','','','','','',0,'2026-03-05','drarchit'),(4321,0,0,3599,5300,'2025-12-05',0,'','','','','','','','',0,'2025-12-15','darshan'),(4322,0,0,3608,5320,'2025-12-05',0,'','','','','','','','',0,'2026-03-05','drarchit'),(4323,0,0,3554,5218,'2025-12-05',0,'','','','','','','','',0,'','drarchit'),(4324,0,0,3607,5318,'2025-12-05',0,'','','','','','','','',0,'2026-01-14','darshan'),(4325,0,0,3610,5323,'2025-12-05',0,'','','','','','','','',0,'2026-01-05','drarchit'),(4326,0,0,3596,5295,'2025-12-05',0,'','','','','','','','',0,'2025-12-25','darshan'),(4327,0,0,3611,5325,'2025-12-05',0,'','','','','','','','',0,'','drjayant'),(4328,0,0,3614,5329,'2025-12-05',0,'','','','','','','','',0,'2025-12-10','darshan'),(4329,0,0,3613,5328,'2025-12-05',0,'','','','','','','','',0,'2025-12-20','drarchit'),(4330,0,0,3612,5326,'2025-12-05',0,'','','','','','','','',0,'2026-03-05','drarchit'),(4331,0,0,3609,5321,'2025-12-05',0,'','','','','','','','',0,'','drarchit'),(4332,0,0,3616,5331,'2025-12-05',0,'','','','','','','','',0,'2025-12-08','darshan'),(4333,0,0,3617,5332,'2025-12-05',0,'','','','','','','','',0,'2025-12-10','darshan'),(4334,0,0,480,5327,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4335,0,0,3615,5330,'2025-12-05',0,'','','','','','','','',0,'2026-03-05','drarchit'),(4336,0,0,761,5333,'2025-12-05',0,'','','','','','','','',0,'2026-01-05','drarchit'),(4337,0,0,3310,5334,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4338,0,0,1070,5282,'2025-12-05',0,'','','','','','','','',0,'','drpratapsi'),(4339,0,0,823,5340,'2025-12-06',0,'','','','','','','','',0,'2026-02-04','darshan'),(4340,0,0,1993,5350,'2025-12-06',0,'','','','','','','','',0,'2025-12-26','darshan'),(4341,0,0,3091,5348,'2025-12-06',0,'','','','','','','','',0,'2025-12-16','darshan'),(4342,0,0,1990,5356,'2025-12-06',0,'','','','','','','','',0,'2026-01-05','darshan'),(4343,0,0,3319,5364,'2025-12-06',0,'','','','','','','','',0,'','drpratapsi'),(4344,0,0,3620,5343,'2025-12-06',0,'','','','','','','','',0,'2025-12-11','drarchit'),(4345,0,0,1789,5344,'2025-12-06',0,'','','','','','','','',0,'2026-02-04','darshan'),(4346,0,0,450,5346,'2025-12-06',0,'','','','','','','','',0,'2026-02-04','darshan'),(4347,0,0,3629,5361,'2025-12-06',0,'','','','','','','','',0,'','drarchit'),(4348,0,0,548,5362,'2025-12-06',0,'','','','','','','','',0,'2026-01-05','drarchit'),(4349,0,0,3632,5374,'2025-12-06',0,'','','','','','','','',0,'','drpratapsi'),(4350,0,0,3625,5355,'2025-12-06',0,'','','','','','','','',0,'2026-04-06','darshan'),(4351,0,0,2281,5351,'2025-12-06',0,'','','','','','','','',0,'2025-12-16','drarchit'),(4352,0,0,1183,5365,'2025-12-06',0,'','','','','','','','',0,'2026-02-04','darshan'),(4353,0,0,3622,5349,'2025-12-06',0,'','','','','','','','',0,'2026-02-04','darshan'),(4354,0,0,1520,5368,'2025-12-06',0,'','','','','','','','',0,'2025-12-11','drarchit'),(4355,0,0,3623,5352,'2025-12-06',0,'','','','','','','','',0,'2026-02-04','darshan'),(4356,0,0,3166,5353,'2025-12-06',0,'','','','','','','','',0,'2025-12-16','darshan'),(4357,0,0,3627,5358,'2025-12-06',0,'','','','','','','','',0,'','darshan'),(4358,0,0,3633,5376,'2025-12-06',0,'','','','','','','','',0,'','drarchit'),(4359,0,0,1996,5360,'2025-12-06',0,'','','','','','','','',0,'2026-01-15','darshan'),(4360,0,0,3634,5378,'2025-12-06',0,'','','','','','','','',0,'2026-03-06','drarchit'),(4361,0,0,3631,5371,'2025-12-06',0,'','','','','','','','',0,'2026-02-04','darshan'),(4362,0,0,3301,5379,'2025-12-06',0,'','','','','','','','',0,'2025-12-11','drarchit'),(4363,0,0,3427,5370,'2025-12-06',0,'','','','','','','','',0,'','drjayant'),(4364,0,0,3161,5366,'2025-12-06',0,'','','','','','','','',0,'2025-12-22','darshan'),(4365,0,0,2122,5385,'2025-12-06',0,'','','','','','','','',0,'2025-12-16','darshan'),(4366,0,0,3570,5241,'2025-12-06',0,'','','','','','','','',0,'','drarchit'),(4367,0,0,3641,5392,'2025-12-06',0,'','','','','','','','',0,'2026-02-04','drjayant'),(4368,0,0,3626,5357,'2025-12-06',0,'','','','','','','','',0,'2026-01-31','drarchit'),(4369,0,0,3640,5390,'2025-12-06',0,'','','','','','','','',0,'2026-03-06','darshan'),(4370,0,0,3401,4951,'2025-12-06',0,'','','','','','','','',0,'2026-03-02','drarchit'),(4371,0,0,3637,5383,'2025-12-06',0,'','','','','','','','',0,'2026-01-05','drarchit'),(4372,0,0,3624,5354,'2025-12-06',0,'','','','','','','','',0,'2025-12-26','darshan'),(4373,0,0,3646,5398,'2025-12-06',0,'','','','','','','','',0,'2025-12-26','drjayant'),(4374,0,0,3643,5394,'2025-12-06',0,'','','','','','','','',0,'2026-02-04','drarchit'),(4375,0,0,1256,5384,'2025-12-06',0,'','','','','','','','',0,'2025-12-11','drarchit'),(4376,0,0,1534,5369,'2025-12-06',0,'','','','','','','','',0,'2026-02-04','darshan'),(4377,0,0,3018,5397,'2025-12-06',0,'','','','','','','','',0,'','drarchit'),(4378,0,0,2887,5377,'2025-12-06',0,'','','','','','','','',0,'','darshan'),(4379,0,0,3647,5399,'2025-12-06',0,'','','','','','','','',0,'2026-03-06','drarchit'),(4380,0,0,2540,5373,'2025-12-06',0,'','','','','','','','',0,'2026-01-05','darshan'),(4381,0,0,3619,5342,'2025-12-06',0,'','','','','','','','',0,'2025-12-16','darshan'),(4382,0,0,3639,5389,'2025-12-06',0,'','','','','','','','',0,'2026-01-03','darshan'),(4383,0,0,3630,5363,'2025-12-06',0,'','','','','','','','',0,'2025-12-16','darshan'),(4384,0,0,1248,5400,'2025-12-06',0,'','','','','','','','',0,'2026-01-20','darshan'),(4385,0,0,3636,5381,'2025-12-06',0,'','','','','','','','',0,'2025-12-26','darshan'),(4386,0,0,3642,5393,'2025-12-06',0,'','','','','','','','',0,'2026-01-05','darshan'),(4387,0,0,2856,5401,'2025-12-06',0,'','','','','','','','',0,'2025-12-16','darshan'),(4388,0,0,3649,5403,'2025-12-06',0,'','','','','','','','',0,'2025-12-26','darshan'),(4389,0,0,3648,5402,'2025-12-06',0,'','','','','','','','',0,'2025-12-16','darshan'),(4390,0,0,3650,5404,'2025-12-06',0,'','','','','','','','',0,'','darshan'),(4391,0,0,1102,5406,'2025-12-06',0,'','','','','','','','',0,'','drsagar'),(4392,0,0,3265,5372,'2025-12-06',0,'','','','','','','','',0,'','drsagar'),(4393,0,0,3635,5380,'2025-12-06',0,'','','','','','','','',0,'','drsagar'),(4394,0,0,3644,5395,'2025-12-06',0,'','','','','','','','',0,'','drridham'),(4395,0,0,3651,5405,'2025-12-06',0,'','','','','','','','',0,'','drridham'),(4396,0,0,3652,5408,'2025-12-06',0,'','','','','','','','',0,'','drsagar'),(4397,0,0,3653,5409,'2025-12-06',0,'','','','','','','','',0,'','drridham'),(4398,0,0,2585,5411,'2025-12-06',0,'','','','','','','','',0,'','drsagar'),(4399,0,0,3654,5412,'2025-12-06',0,'','','','','','','','',0,'','drsagar'),(4400,0,0,3655,5413,'2025-12-06',0,'','','','','','','','',0,'','drsagar'),(4401,0,0,3656,5414,'2025-12-06',0,'','','','','','','','',0,'','drridham'),(4402,0,0,1735,5450,'2025-12-08',0,'','','','','','','','',0,'2026-01-07','darshan'),(4403,0,0,3310,5429,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4404,0,0,3305,5433,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4405,0,0,1149,5439,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4406,0,0,3677,5452,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4407,0,0,792,5449,'2025-12-08',0,'','','','','','','','',0,'2026-02-06','darshan'),(4408,0,0,1535,5465,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4409,0,0,3684,5460,'2025-12-08',0,'','','','','','','','',0,'','drridham'),(4410,0,0,3676,5447,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4411,0,0,3688,5466,'2025-12-08',0,'','','','','','','','',0,'2025-12-15','drarchit'),(4412,0,0,2738,5477,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4413,0,0,3695,5476,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4414,0,0,3689,5467,'2025-12-08',0,'','','','','','','','',0,'2026-01-17','darshan'),(4415,0,0,78,5464,'2025-12-08',0,'','','','','','','','',0,'2026-01-22','darshan'),(4416,0,0,3672,5441,'2025-12-08',0,'','','','','','','','',0,'2026-01-07','drarchit'),(4417,0,0,3696,5479,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4418,0,0,3510,5448,'2025-12-08',0,'','','','','','','','',0,'2026-01-07','drarchit'),(4419,0,0,3701,5485,'2025-12-08',0,'','','','','','','','',0,'','drridham'),(4420,0,0,3693,5474,'2025-12-08',0,'','','','','','','','',0,'2025-12-13','drarchit'),(4421,0,0,3704,5488,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4422,0,0,3674,5444,'2025-12-08',0,'','','','','','','','',0,'2026-01-19','darshan'),(4423,0,0,3662,5427,'2025-12-08',0,'','','','','','','','',0,'','drsagar'),(4424,0,0,3663,5428,'2025-12-08',0,'','','','','','','','',0,'','drsagar'),(4425,0,0,3673,5442,'2025-12-08',0,'','','','','','','','',0,'','drsagar'),(4426,0,0,3686,5462,'2025-12-08',0,'','','','','','','','',0,'','drsagar'),(4427,0,0,3694,5475,'2025-12-08',0,'','','','','','','','',0,'2025-12-15','drarchit'),(4428,0,0,3687,5463,'2025-12-08',0,'','','','','','','','',0,'2026-03-09','drarchit'),(4429,0,0,3707,5494,'2025-12-08',0,'','','','','','','','',0,'','drridham'),(4430,0,0,3660,5431,'2025-12-08',0,'','','','','','','','',0,'','drarchit'),(4431,0,0,3712,5501,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4432,0,0,3705,5489,'2025-12-08',0,'','','','','','','','',0,'2026-03-09','drarchit'),(4433,0,0,3565,5478,'2025-12-08',0,'','','','','','','','',0,'','darshan'),(4434,0,0,3715,5504,'2025-12-08',0,'','','','','','','','',0,'','drsagar'),(4435,0,0,3703,5487,'2025-12-08',0,'','','','','','','','',0,'2026-03-09','drarchit'),(4436,0,0,2040,5454,'2025-12-08',0,'','','','','','','','',0,'2026-01-17','darshan'),(4437,0,0,3714,5503,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4438,0,0,3675,5446,'2025-12-08',0,'','','','','','','','',0,'2026-03-09','drarchit'),(4439,0,0,3680,5456,'2025-12-08',0,'','','','','','','','',0,'2025-12-18','darshan'),(4440,0,0,3667,5435,'2025-12-08',0,'','','','','','','','',0,'2025-12-13','drarchit'),(4441,0,0,2610,5469,'2025-12-08',0,'','','','','','','','',0,'2025-12-29','darshan'),(4442,0,0,2045,5493,'2025-12-08',0,'','','','','','','','',0,'2026-01-07','darshan'),(4443,0,0,2343,5484,'2025-12-08',0,'','','','','','','','',0,'2026-01-07','darshan'),(4444,0,0,3711,5498,'2025-12-08',0,'','','','','','','','',0,'2025-12-18','drarchit'),(4445,0,0,3682,5458,'2025-12-08',0,'','','','','','','','',0,'2025-12-15','darshan'),(4446,0,0,2393,5505,'2025-12-08',0,'','','','','','','','',0,'','drarchit'),(4447,0,0,3681,5457,'2025-12-08',0,'','','','','','','','',0,'2025-12-29','darshan'),(4448,0,0,1928,5513,'2025-12-08',0,'','','','','','','','',0,'','drsagar'),(4449,0,0,2128,5471,'2025-12-08',0,'','','','','','','','',0,'2026-01-17','darshan'),(4450,0,0,990,5509,'2025-12-08',0,'','','','','','','','',0,'2026-01-22','darshan'),(4451,0,0,3713,5502,'2025-12-08',0,'','','','','','','','',0,'2026-03-09','drarchit'),(4452,0,0,3671,5440,'2025-12-08',0,'','','','','','','','',0,'2025-12-29','darshan'),(4453,0,0,254,5515,'2025-12-08',0,'','','','','','','','',0,'2025-12-18','drarchit'),(4454,0,0,3018,5525,'2025-12-08',0,'','','','','','','','',0,'','drarchit'),(4455,0,0,3697,5480,'2025-12-08',0,'','','','','','','','',0,'2025-12-23','drarchit'),(4456,0,0,2451,5512,'2025-12-08',0,'','','','','','','','',0,'2026-03-09','darshan'),(4457,0,0,3683,5459,'2025-12-08',0,'','','','','','','','',0,'2025-12-13','drarchit'),(4458,0,0,2245,5508,'2025-12-08',0,'','','','','','','','',0,'','drsagar'),(4459,0,0,3678,5453,'2025-12-08',0,'','','','','','','','',0,'2025-12-29','darshan'),(4460,0,0,3406,5506,'2025-12-08',0,'','','','','','','','',0,'2025-12-18','drarchit'),(4461,0,0,3723,5523,'2025-12-08',0,'','','','','','','','',0,'2025-12-13','drarchit'),(4462,0,0,676,5522,'2025-12-08',0,'','','','','','','','',0,'2025-12-13','drarchit'),(4463,0,0,3445,5491,'2025-12-08',0,'','','','','','','','',0,'2026-01-07','darshan'),(4464,0,0,3517,5499,'2025-12-08',0,'','','','','','','','',0,'2025-12-15','drarchit'),(4465,0,0,3706,5492,'2025-12-08',0,'','','','','','','','',0,'2026-02-06','darshan'),(4466,0,0,3708,5495,'2025-12-08',0,'','','','','','','','',0,'2025-12-29','darshan'),(4467,0,0,3710,5497,'2025-12-08',0,'','','','','','','','',0,'2026-02-06','darshan'),(4468,0,0,3691,5472,'2025-12-08',0,'','','','','','','','',0,'2025-12-18','darshan'),(4469,0,0,3702,5486,'2025-12-08',0,'','','','','','','','',0,'2026-01-07','darshan'),(4470,0,0,298,5500,'2025-12-08',0,'','','','','','','','',0,'2026-03-18','darshan'),(4471,0,0,3716,5507,'2025-12-08',0,'','','','','','','','',0,'2026-01-07','darshan'),(4472,0,0,3698,5481,'2025-12-08',0,'','','','','','','','',0,'2026-01-07','darshan'),(4473,0,0,3718,5511,'2025-12-08',0,'','','','','','','','',0,'','darshan'),(4474,0,0,3721,5519,'2025-12-08',0,'','','','','','','','',0,'2025-12-13','darshan'),(4475,0,0,3434,5516,'2025-12-08',0,'','','','','','','','',0,'2025-12-13','darshan'),(4476,0,0,3590,5526,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4477,0,0,3727,5530,'2025-12-08',0,'','','','','','','','',0,'','darshan'),(4478,0,0,3700,5483,'2025-12-08',0,'','','','','','','','',0,'2026-01-07','darshan'),(4479,0,0,3699,5482,'2025-12-08',0,'','','','','','','','',0,'2025-12-18','darshan'),(4480,0,0,3728,5531,'2025-12-08',0,'','','','','','','','',0,'','darshan'),(4481,0,0,3729,5532,'2025-12-08',0,'','','','','','','','',0,'2026-02-06','darshan'),(4482,0,0,2575,5535,'2025-12-08',0,'','','','','','','','',0,'2026-01-17','darshan'),(4483,0,0,2189,5537,'2025-12-08',0,'','','','','','','','',0,'2026-01-17','darshan'),(4484,0,0,3736,5542,'2025-12-08',0,'','','','','','','','',0,'2025-12-29','darshan'),(4485,0,0,3738,5544,'2025-12-08',0,'','','','','','','','',0,'2025-12-18','darshan'),(4486,0,0,3725,5528,'2025-12-08',0,'','','','','','','','',0,'','drridham'),(4487,0,0,3074,5549,'2025-12-08',0,'','','','','','','','',0,'2026-01-19','darshan'),(4488,0,0,3737,5543,'2025-12-08',0,'','','','','','','','',0,'2025-12-18','darshan'),(4489,0,0,3709,5496,'2025-12-08',0,'','','','','','','','',0,'2026-03-09','drarchit'),(4490,0,0,3722,5520,'2025-12-08',0,'','','','','','','','',0,'','drarchit'),(4491,0,0,3740,5546,'2025-12-08',0,'','','','','','','','',0,'2025-12-13','drarchit'),(4492,0,0,2946,5514,'2025-12-08',0,'','','','','','','','',0,'','drarchit'),(4493,0,0,3664,5430,'2025-12-08',0,'','','','','','','','',0,'','drarchit'),(4494,0,0,3332,5559,'2025-12-08',0,'','','','','','','','',0,'','drsagar'),(4495,0,0,3726,5529,'2025-12-08',0,'','','','','','','','',0,'','drridham'),(4496,0,0,1694,5554,'2025-12-08',0,'','','','','','','','',0,'','drridham'),(4497,0,0,3742,5548,'2025-12-08',0,'','','','','','','','',0,'2025-12-13','darshan'),(4498,0,0,3734,5540,'2025-12-08',0,'','','','','','','','',0,'2025-12-18','darshan'),(4499,0,0,3747,5557,'2025-12-08',0,'','','','','','','','',0,'2026-03-09','drarchit'),(4500,0,0,3750,5564,'2025-12-08',0,'','','','','','','','',0,'2026-03-18','darshan'),(4501,0,0,3748,5561,'2025-12-08',0,'','','','','','','','',0,'2025-12-15','drarchit'),(4502,0,0,3752,5566,'2025-12-08',0,'','','','','','','','',0,'2026-03-09','drarchit'),(4503,0,0,3732,5538,'2025-12-08',0,'','','','','','','','',0,'2025-12-18','darshan'),(4504,0,0,367,5563,'2025-12-08',0,'','','','','','','','',0,'2025-12-15','drarchit'),(4505,0,0,995,5568,'2025-12-08',0,'','','','','','','','',0,'','darshan'),(4506,0,0,943,5572,'2025-12-08',0,'','','','','','','','',0,'2026-01-07','darshan'),(4507,0,0,3755,5574,'2025-12-08',0,'','','','','','','','',0,'2025-12-15','drarchit'),(4508,0,0,3754,5570,'2025-12-08',0,'','','','','','','','',0,'','drsagar'),(4509,0,0,3741,5547,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4510,0,0,3122,5550,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4511,0,0,3170,5573,'2025-12-08',0,'','','','','','','','',0,'2026-01-07','darshan'),(4512,0,0,3759,5580,'2025-12-08',0,'','','','','','','','',0,'','drarchit'),(4513,0,0,1288,5584,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4514,0,0,3194,5575,'2025-12-08',0,'','','','','','','','',0,'','drsagar'),(4515,0,0,3735,5541,'2025-12-08',0,'','','','','','','','',0,'','drsagar'),(4516,0,0,3444,5585,'2025-12-08',0,'','','','','','','','',0,'','drarchit'),(4517,0,0,3743,5551,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4518,0,0,3719,5517,'2025-12-08',0,'','','','','','','','',0,'2025-12-13','drarchit'),(4519,0,0,3757,5577,'2025-12-08',0,'','','','','','','','',0,'','darshan'),(4520,0,0,3746,5555,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4521,0,0,3739,5545,'2025-12-08',0,'','','','','','','','',0,'2025-12-18','darshan'),(4522,0,0,3329,5586,'2025-12-08',0,'','','','','','','','',0,'2025-12-18','drarchit'),(4523,0,0,2030,5592,'2025-12-08',0,'','','','','','','','',0,'','drsagar'),(4524,0,0,2217,5567,'2025-12-08',0,'','','','','','','','',0,'','drsagar'),(4525,0,0,3756,5576,'2025-12-08',0,'','','','','','','','',0,'','darshan'),(4526,0,0,3731,5534,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4527,0,0,3761,5591,'2025-12-08',0,'','','','','','','','',0,'2025-12-13','drarchit'),(4528,0,0,3758,5578,'2025-12-08',0,'','','','','','','','',0,'2026-02-06','darshan'),(4529,0,0,3378,5560,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4530,0,0,3749,5562,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4531,0,0,3753,5569,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4532,0,0,1464,5579,'2025-12-08',0,'','','','','','','','',0,'2025-12-23','darshan'),(4533,0,0,2995,5571,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4534,0,0,3762,5593,'2025-12-08',0,'','','','','','','','',0,'','drsagar'),(4535,0,0,3763,5595,'2025-12-08',0,'','','','','','','','',0,'','drridham'),(4536,0,0,3751,5565,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4537,0,0,2711,5582,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4538,0,0,3720,5518,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4539,0,0,89,5581,'2025-12-08',0,'','','','','','','','',0,'2026-01-07','darshan'),(4540,0,0,3730,5533,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4541,0,0,2542,5468,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4542,0,0,3692,5473,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4543,0,0,1602,5590,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4544,0,0,3525,5596,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4545,0,0,3669,5437,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4546,0,0,3679,5455,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4547,0,0,3733,5539,'2025-12-08',0,'','','','','','','','',0,'','drpratapsi'),(4548,0,0,3242,5599,'2025-12-08',0,'','','','','','','','',0,'','drarchit'),(4549,0,0,2607,5587,'2025-12-08',0,'','','','','','','','',0,'2025-12-18','darshan'),(4550,0,0,3760,5589,'2025-12-08',0,'','','','','','','','',0,'2025-12-13','drarchit'),(4551,0,0,3724,5524,'2025-12-08',0,'','','','','','','','',0,'2026-01-07','drarchit'),(4552,0,0,2261,5594,'2025-12-08',0,'','','','','','','','',0,'2026-01-07','darshan'),(4553,0,0,3764,5600,'2025-12-08',0,'','','','','','','','',0,'','darshan'),(4554,0,0,3243,5613,'2025-12-09',0,'','','','','','','','',0,'2025-12-19','darshan'),(4555,0,0,351,5605,'2025-12-09',0,'','','','','','','','',0,'2026-01-19','darshan'),(4556,0,0,2628,5612,'2025-12-09',0,'','','','','','','','',0,'2026-01-19','darshan'),(4557,0,0,865,5618,'2025-12-09',0,'','','','','','','','',0,'2025-12-19','darshan'),(4558,0,0,3767,5607,'2025-12-09',0,'','','','','','','','',0,'','drarchit'),(4559,0,0,2913,5611,'2025-12-09',0,'','','','','','','','',0,'','drsagar'),(4560,0,0,3780,5629,'2025-12-09',0,'','','','','','','','',0,'2026-03-19','darshan'),(4561,0,0,3774,5619,'2025-12-09',0,'','','','','','','','',0,'2026-02-07','darshan'),(4562,0,0,3779,5628,'2025-12-09',0,'','','','','','','','',0,'','drsagar'),(4563,0,0,3786,5636,'2025-12-09',0,'','','','','','','','',0,'2025-12-24','drarchit'),(4564,0,0,3788,5640,'2025-12-09',0,'','','','','','','','',0,'','drsagar'),(4565,0,0,489,5635,'2025-12-09',0,'','','','','','','','',0,'','drridham'),(4566,0,0,3775,5620,'2025-12-09',0,'','','','','','','','',0,'2026-03-19','drarchit'),(4567,0,0,3766,5602,'2025-12-09',0,'','','','','','','','',0,'','drarchit'),(4568,0,0,3769,5610,'2025-12-09',0,'','','','','','','','',0,'2026-01-19','darshan'),(4569,0,0,2645,5643,'2025-12-09',0,'','','','','','','','',0,'','drsagar'),(4570,0,0,3771,5615,'2025-12-09',0,'','','','','','','','',0,'2026-01-08','drarchit'),(4571,0,0,3718,5511,'2025-12-09',0,'','','','','','','','',0,'','darshan'),(4572,0,0,3720,5608,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4573,0,0,3593,5624,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4574,0,0,3605,5621,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4575,0,0,2874,5638,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4576,0,0,3772,5616,'2025-12-09',0,'','','','','','','','',0,'','darshan'),(4577,0,0,3782,5631,'2025-12-09',0,'','','','','','','','',0,'2025-12-15','drarchit'),(4578,0,0,156,5642,'2025-12-09',0,'','','','','','','','',0,'2026-02-07','darshan'),(4579,0,0,3791,5645,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4580,0,0,2392,5623,'2025-12-09',0,'','','','','','','','',0,'2025-12-29','darshan'),(4581,0,0,273,5625,'2025-12-09',0,'','','','','','','','',0,'2026-02-07','darshan'),(4582,0,0,3777,5626,'2025-12-09',0,'','','','','','','','',0,'2026-02-07','darshan'),(4583,0,0,3784,5633,'2025-12-09',0,'','','','','','','','',0,'','drarchit'),(4584,0,0,2603,5653,'2025-12-09',0,'','','','','','','','',0,'','drsagar'),(4585,0,0,3797,5654,'2025-12-09',0,'','','','','','','','',0,'','drsagar'),(4586,0,0,3798,5655,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4587,0,0,3787,5639,'2025-12-09',0,'','','','','','','','',0,'2026-01-08','drarchit'),(4588,0,0,2606,5656,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4589,0,0,3781,5630,'2025-12-09',0,'','','','','','','','',0,'','darshan'),(4590,0,0,3174,5651,'2025-12-09',0,'','','','','','','','',0,'2025-12-19','darshan'),(4591,0,0,1455,5657,'2025-12-09',0,'','','','','','','','',0,'','drarchit'),(4592,0,0,3799,5658,'2025-12-09',0,'','','','','','','','',0,'2026-03-09','drarchit'),(4593,0,0,3793,5647,'2025-12-09',0,'','','','','','','','',0,'2025-12-19','darshan'),(4594,0,0,3790,5644,'2025-12-09',0,'','','','','','','','',0,'2026-03-09','drarchit'),(4595,0,0,3792,5646,'2025-12-09',0,'','','','','','','','',0,'','darshan'),(4596,0,0,1168,5649,'2025-12-09',0,'','','','','','','','',0,'2026-01-08','darshan'),(4597,0,0,3783,5632,'2025-12-09',0,'','','','','','','','',0,'2026-04-08','darshan'),(4598,0,0,3776,5622,'2025-12-09',0,'','','','','','','','',0,'2025-12-19','darshan'),(4599,0,0,3785,5634,'2025-12-09',0,'','','','','','','','',0,'2025-12-19','darshan'),(4600,0,0,294,5637,'2025-12-09',0,'','','','','','','','',0,'2026-01-19','darshan'),(4601,0,0,3768,5609,'2025-12-09',0,'','','','','','','','',0,'2026-01-08','darshan'),(4602,0,0,3778,5627,'2025-12-09',0,'','','','','','','','',0,'2026-01-08','darshan'),(4603,0,0,3795,5650,'2025-12-09',0,'','','','','','','','',0,'2025-12-15','darshan'),(4604,0,0,3770,5614,'2025-12-09',0,'','','','','','','','',0,'2025-12-19','darshan'),(4605,0,0,3796,5652,'2025-12-09',0,'','','','','','','','',0,'2026-04-08','darshan'),(4606,0,0,3773,5617,'2025-12-09',0,'','','','','','','','',0,'2025-12-19','darshan'),(4607,0,0,3794,5648,'2025-12-09',0,'','','','','','','','',0,'2025-12-29','darshan'),(4608,0,0,3789,5641,'2025-12-09',0,'','','','','','','','',0,'2025-12-19','darshan'),(4609,0,0,2540,5373,'2025-12-09',0,'','','','','','','','',0,'2025-12-06','darshan'),(4610,0,0,1544,5664,'2025-12-09',0,'','','','','','','','',0,'2026-01-19','darshan'),(4611,0,0,3121,5666,'2025-12-09',0,'','','','','','','','',0,'2025-12-15','darshan'),(4612,0,0,3804,5672,'2025-12-09',0,'','','','','','','','',0,'2026-02-07','darshan'),(4613,0,0,3803,5671,'2025-12-09',0,'','','','','','','','',0,'2025-12-19','darshan'),(4614,0,0,3800,5659,'2025-12-09',0,'','','','','','','','',0,'','drridham'),(4615,0,0,2803,5673,'2025-12-09',0,'','','','','','','','',0,'2026-01-19','darshan'),(4616,0,0,2925,5674,'2025-12-09',0,'','','','','','','','',0,'2026-01-08','darshan'),(4617,0,0,3806,5677,'2025-12-09',0,'','','','','','','','',0,'2026-02-07','darshan'),(4618,0,0,3809,5681,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4619,0,0,3764,5600,'2025-12-09',0,'','','','','','','','',0,'2025-12-19','darshan'),(4620,0,0,2919,5675,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4621,0,0,3807,5679,'2025-12-09',0,'','','','','','','','',0,'2026-02-07','darshan'),(4622,0,0,3744,5552,'2025-12-09',0,'','','','','','','','',0,'','drarchit'),(4623,0,0,1827,5683,'2025-12-09',0,'','','','','','','','',0,'2026-02-07','darshan'),(4624,0,0,3745,5553,'2025-12-09',0,'','','','','','','','',0,'','drarchit'),(4625,0,0,3805,5676,'2025-12-09',0,'','','','','','','','',0,'2025-12-15','drarchit'),(4626,0,0,2101,5684,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4627,0,0,1288,5691,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4628,0,0,3811,5686,'2025-12-09',0,'','','','','','','','',0,'','drjayant'),(4629,0,0,3816,5692,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4630,0,0,3808,5680,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4631,0,0,2659,5661,'2025-12-09',0,'','','','','','','','',0,'2025-12-24','drarchit'),(4632,0,0,3815,5690,'2025-12-09',0,'','','','','','','','',0,'','drjayant'),(4633,0,0,3819,5696,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4634,0,0,3821,5698,'2025-12-09',0,'','','','','','','','',0,'2026-02-07','drjayant'),(4635,0,0,3650,5404,'2025-12-09',0,'','','','','','','','',0,'','darshan'),(4636,0,0,3818,5695,'2025-12-09',0,'','','','','','','','',0,'2026-03-09','drarchit'),(4637,0,0,3801,5662,'2025-12-09',0,'','','','','','','','',0,'','drarchit'),(4638,0,0,1257,5700,'2025-12-09',0,'','','','','','','','',0,'2026-01-19','darshan'),(4639,0,0,1676,5694,'2025-12-09',0,'','','','','','','','',0,'2026-01-08','darshan'),(4640,0,0,3817,5693,'2025-12-09',0,'','','','','','','','',0,'2025-12-24','drarchit'),(4641,0,0,890,5702,'2025-12-09',0,'','','','','','','','',0,'','drjayant'),(4642,0,0,3802,5668,'2025-12-09',0,'','','','','','','','',0,'2026-01-08','darshan'),(4643,0,0,1312,5705,'2025-12-09',0,'','','','','','','','',0,'2026-01-19','darshan'),(4644,0,0,3319,5708,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4645,0,0,3305,5707,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4646,0,0,3820,5697,'2025-12-09',0,'','','','','','','','',0,'2026-03-09','darshan'),(4647,0,0,3611,5715,'2025-12-09',0,'','','','','','','','',0,'2026-01-08','drjayant'),(4648,0,0,3310,5714,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4649,0,0,3822,5699,'2025-12-09',0,'','','','','','','','',0,'2026-03-09','drarchit'),(4650,0,0,3824,5703,'2025-12-09',0,'','','','','','','','',0,'2026-01-08','darshan'),(4651,0,0,3324,5682,'2025-12-09',0,'','','','','','','','',0,'2025-12-16','drarchit'),(4652,0,0,3829,5716,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4653,0,0,1976,5709,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4654,0,0,3823,5701,'2025-12-09',0,'','','','','','','','',0,'','drpratapsi'),(4655,0,0,3825,5704,'2025-12-09',0,'','','','','','','','',0,'2026-03-09','drarchit'),(4656,0,0,3826,5710,'2025-12-09',0,'','','','','','','','',0,'','drjayant'),(4657,0,0,3830,5717,'2025-12-09',0,'','','','','','','','',0,'2026-03-09','drarchit'),(4658,0,0,3812,5687,'2025-12-09',0,'','','','','','','','',0,'2025-12-19','darshan'),(4659,0,0,3814,5689,'2025-12-09',0,'','','','','','','','',0,'','drarchit'),(4660,0,0,3660,5718,'2025-12-09',0,'','','','','','','','',0,'','drarchit'),(4661,0,0,3831,5719,'2025-12-09',0,'','','','','','','','',0,'','drjayant'),(4662,0,0,1000,5706,'2025-12-09',0,'','','','','','','','',0,'2026-01-08','darshan'),(4663,0,0,3813,5688,'2025-12-09',0,'','','','','','','','',0,'2025-12-19','darshan'),(4664,0,0,3827,5711,'2025-12-09',0,'','','','','','','','',0,'2025-12-15','darshan'),(4665,0,0,3810,5685,'2025-12-09',0,'','','','','','','','',0,'2026-01-08','darshan'),(4666,0,0,3278,5712,'2025-12-09',0,'','','','','','','','',0,'2025-12-29','darshan'),(4667,0,0,3828,5713,'2025-12-09',0,'','','','','','','','',0,'2025-12-24','darshan'),(4668,0,0,975,2094,'2025-12-09',0,'','','','','','','','',0,'2025-12-10','darshan'),(4669,0,0,3001,5724,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4670,0,0,3208,5734,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4671,0,0,3605,5737,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4672,0,0,3720,5739,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4673,0,0,3837,5738,'2025-12-10',0,'','','','','','','','',0,'2026-02-09','darshan'),(4674,0,0,2176,5740,'2025-12-10',0,'','','','','','','','',0,'2025-12-30','darshan'),(4675,0,0,3838,5741,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4676,0,0,3840,5743,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4677,0,0,860,5745,'2025-12-10',0,'','','','','','','','',0,'2026-02-09','darshan'),(4678,0,0,1070,5744,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4679,0,0,862,5747,'2025-12-10',0,'','','','','','','','',0,'2026-01-19','darshan'),(4680,0,0,3258,5753,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4681,0,0,1622,5731,'2025-12-10',0,'','','','','','','','',0,'2026-02-09','darshan'),(4682,0,0,3841,5746,'2025-12-10',0,'','','','','','','','',0,'2025-12-25','drarchit'),(4683,0,0,3198,5736,'2025-12-10',0,'','','','','','','','',0,'2025-12-17','darshan'),(4684,0,0,3835,5733,'2025-12-10',0,'','','','','','','','',0,'','drridham'),(4685,0,0,3832,5727,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4686,0,0,3836,5735,'2025-12-10',0,'','','','','','','','',0,'','drridham'),(4687,0,0,2738,5763,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4688,0,0,3305,5762,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4689,0,0,3833,5726,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4690,0,0,3249,5750,'2025-12-10',0,'','','','','','','','',0,'2025-12-20','drarchit'),(4691,0,0,702,5748,'2025-12-10',0,'','','','','','','','',0,'','drsagar'),(4692,0,0,3308,5758,'2025-12-10',0,'','','','','','','','',0,'2025-12-30','darshan'),(4693,0,0,3846,5756,'2025-12-10',0,'','','','','','','','',0,'','drsagar'),(4694,0,0,2022,5729,'2025-12-10',0,'','','','','','','','',0,'2026-02-09','drjayant'),(4695,0,0,3851,5765,'2025-12-10',0,'','','','','','','','',0,'2025-12-17','drarchit'),(4696,0,0,1261,5767,'2025-12-10',0,'','','','','','','','',0,'2026-02-09','drjayant'),(4697,0,0,3844,5752,'2025-12-10',0,'','','','','','','','',0,'2026-03-20','darshan'),(4698,0,0,3849,5761,'2025-12-10',0,'','','','','','','','',0,'2026-04-09','darshan'),(4699,0,0,3850,5764,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4700,0,0,3845,5754,'2025-12-10',0,'','','','','','','','',0,'2026-02-09','darshan'),(4701,0,0,2061,5755,'2025-12-10',0,'','','','','','','','',0,'2026-01-09','darshan'),(4702,0,0,3265,5777,'2025-12-10',0,'','','','','','','','',0,'','drsagar'),(4703,0,0,3860,5778,'2025-12-10',0,'','','','','','','','',0,'','drsagar'),(4704,0,0,3859,5776,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4705,0,0,520,5759,'2025-12-10',0,'','','','','','','','',0,'2026-01-19','darshan'),(4706,0,0,3856,5773,'2025-12-10',0,'','','','','','','','',0,'','drjayant'),(4707,0,0,3839,5742,'2025-12-10',0,'','','','','','','','',0,'2026-03-10','drarchit'),(4708,0,0,3842,5749,'2025-12-10',0,'','','','','','','','',0,'2025-12-25','darshan'),(4709,0,0,3861,5779,'2025-12-10',0,'','','','','','','','',0,'','drarchit'),(4710,0,0,3516,5782,'2025-12-10',0,'','','','','','','','',0,'','drarchit'),(4711,0,0,3853,5769,'2025-12-10',0,'','','','','','','','',0,'','drarchit'),(4712,0,0,2294,5766,'2025-12-10',0,'','','','','','','','',0,'2026-01-19','darshan'),(4713,0,0,3843,5751,'2025-12-10',0,'','','','','','','','',0,'2025-12-17','darshan'),(4714,0,0,3864,5785,'2025-12-10',0,'','','','','','','','',0,'2026-03-10','drarchit'),(4715,0,0,193,5783,'2025-12-10',0,'','','','','','','','',0,'2026-03-10','darshan'),(4716,0,0,3848,5760,'2025-12-10',0,'','','','','','','','',0,'2025-12-20','darshan'),(4717,0,0,3868,5790,'2025-12-10',0,'','','','','','','','',0,'2025-12-17','drarchit'),(4718,0,0,1226,5780,'2025-12-10',0,'','','','','','','','',0,'2026-03-10','darshan'),(4719,0,0,1386,5770,'2025-12-10',0,'','','','','','','','',0,'2025-12-25','darshan'),(4720,0,0,2240,5789,'2025-12-10',0,'','','','','','','','',0,'2026-01-19','darshan'),(4721,0,0,3852,5768,'2025-12-10',0,'','','','','','','','',0,'2026-01-09','darshan'),(4722,0,0,2740,5792,'2025-12-10',0,'','','','','','','','',0,'2026-01-24','darshan'),(4723,0,0,3847,5757,'2025-12-10',0,'','','','','','','','',0,'2026-01-09','darshan'),(4724,0,0,3863,5784,'2025-12-10',0,'','','','','','','','',0,'2025-12-20','darshan'),(4725,0,0,3867,5788,'2025-12-10',0,'','','','','','','','',0,'2026-01-09','darshan'),(4726,0,0,3870,5794,'2025-12-10',0,'','','','','','','','',0,'','darshan'),(4727,0,0,3795,5650,'2025-12-10',0,'','','','','','','','',0,'2025-12-15','darshan'),(4728,0,0,3855,5772,'2025-12-10',0,'','','','','','','','',0,'2026-01-09','darshan'),(4729,0,0,939,5795,'2025-12-10',0,'','','','','','','','',0,'2026-02-09','darshan'),(4730,0,0,3871,5796,'2025-12-10',0,'','','','','','','','',0,'2026-02-09','darshan'),(4731,0,0,1613,5802,'2025-12-10',0,'','','','','','','','',0,'2026-02-09','darshan'),(4732,0,0,524,5800,'2025-12-10',0,'','','','','','','','',0,'2026-01-19','darshan'),(4733,0,0,83,5803,'2025-12-10',0,'','','','','','','','',0,'','darshan'),(4734,0,0,1463,5804,'2025-12-10',0,'','','','','','','','',0,'','darshan'),(4735,0,0,74,5805,'2025-12-10',0,'','','','','','','','',0,'','darshan'),(4736,0,0,3883,5816,'2025-12-10',0,'','','','','','','','',0,'2026-01-19','darshan'),(4737,0,0,3880,5812,'2025-12-10',0,'','','','','','','','',0,'2025-12-30','darshan'),(4738,0,0,3210,5814,'2025-12-10',0,'','','','','','','','',0,'2026-01-21','darshan'),(4739,0,0,3876,5806,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4740,0,0,1133,5807,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4741,0,0,3858,5775,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4742,0,0,3857,5774,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4743,0,0,3854,5771,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4744,0,0,3053,5810,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4745,0,0,3878,5809,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4746,0,0,3879,5811,'2025-12-10',0,'','','','','','','','',0,'','drarchit'),(4747,0,0,3887,5821,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4748,0,0,3881,5813,'2025-12-10',0,'','','','','','','','',0,'2025-12-15','drarchit'),(4749,0,0,3875,5801,'2025-12-10',0,'','','','','','','','',0,'2026-01-09','darshan'),(4750,0,0,3882,5815,'2025-12-10',0,'','','','','','','','',0,'2026-03-10','drarchit'),(4751,0,0,3866,5787,'2025-12-10',0,'','','','','','','','',0,'','drarchit'),(4752,0,0,994,5822,'2025-12-10',0,'','','','','','','','',0,'2026-01-24','darshan'),(4753,0,0,1587,5818,'2025-12-10',0,'','','','','','','','',0,'2026-02-09','drarchit'),(4754,0,0,3874,5799,'2025-12-10',0,'','','','','','','','',0,'2025-12-30','darshan'),(4755,0,0,3885,5819,'2025-12-10',0,'','','','','','','','',0,'2026-03-10','drarchit'),(4756,0,0,1864,5824,'2025-12-10',0,'','','','','','','','',0,'2026-01-19','darshan'),(4757,0,0,3884,5817,'2025-12-10',0,'','','','','','','','',0,'2025-12-25','darshan'),(4758,0,0,2444,5826,'2025-12-10',0,'','','','','','','','',0,'2026-02-09','drarchit'),(4759,0,0,3815,5690,'2025-12-10',0,'','','','','','','','',0,'','drjayant'),(4760,0,0,3834,5730,'2025-12-10',0,'','','','','','','','',0,'','drarchit'),(4761,0,0,3889,5825,'2025-12-10',0,'','','','','','','','',0,'2025-12-15','drarchit'),(4762,0,0,3892,5832,'2025-12-10',0,'','','','','','','','',0,'','drjayant'),(4763,0,0,3869,5793,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4764,0,0,2484,5827,'2025-12-10',0,'','','','','','','','',0,'2026-01-19','darshan'),(4765,0,0,2279,5828,'2025-12-10',0,'','','','','','','','',0,'','drarchit'),(4766,0,0,3894,5836,'2025-12-10',0,'','','','','','','','',0,'','drpratapsi'),(4767,0,0,3890,5829,'2025-12-10',0,'','','','','','','','',0,'','drsagar'),(4768,0,0,3891,5830,'2025-12-10',0,'','','','','','','','',0,'','darshan'),(4769,0,0,3893,5834,'2025-12-10',0,'','','','','','','','',0,'2026-03-10','drarchit'),(4770,0,0,1531,5835,'2025-12-10',0,'','','','','','','','',0,'2026-02-09','darshan'),(4771,0,0,3886,5820,'2025-12-10',0,'','','','','','','','',0,'2026-01-09','darshan'),(4772,0,0,3897,5842,'2025-12-10',0,'','','','','','','','',0,'','drarchit'),(4773,0,0,1796,5833,'2025-12-10',0,'','','','','','','','',0,'2026-01-24','darshan'),(4774,0,0,3896,5839,'2025-12-10',0,'','','','','','','','',0,'2026-01-09','darshan'),(4775,0,0,890,5702,'2025-12-10',0,'','','','','','','','',0,'','drjayant'),(4776,0,0,2636,5838,'2025-12-10',0,'','','','','','','','',0,'','drarchit'),(4777,0,0,3898,5843,'2025-12-10',0,'','','','','','','','',0,'2026-01-09','drarchit'),(4778,0,0,3899,5844,'2025-12-10',0,'','','','','','','','',0,'','drarchit'),(4779,0,0,3901,5846,'2025-12-10',0,'','','','','','','','',0,'','drarchit'),(4780,0,0,1118,5852,'2025-12-11',0,'','','','','','','','',0,'2026-01-26','darshan'),(4781,0,0,3905,5853,'2025-12-11',0,'','','','','','','','',0,'2026-02-09','darshan'),(4782,0,0,2220,5859,'2025-12-11',0,'','','','','','','','',0,'','drsagar'),(4783,0,0,3903,5850,'2025-12-11',0,'','','','','','','','',0,'','drjayant'),(4784,0,0,2782,5863,'2025-12-11',0,'','','','','','','','',0,'2026-01-20','darshan'),(4785,0,0,3909,5860,'2025-12-11',0,'','','','','','','','',0,'','drjayant'),(4786,0,0,3908,5857,'2025-12-11',0,'','','','','','','','',0,'2025-12-16','darshan'),(4787,0,0,3911,5867,'2025-12-11',0,'','','','','','','','',0,'','drsagar'),(4788,0,0,3913,5871,'2025-12-11',0,'','','','','','','','',0,'2026-02-09','drjayant'),(4789,0,0,1784,5858,'2025-12-11',0,'','','','','','','','',0,'2026-02-09','darshan'),(4790,0,0,3912,5869,'2025-12-11',0,'','','','','','','','',0,'2026-03-11','drarchit'),(4791,0,0,3382,5868,'2025-12-11',0,'','','','','','','','',0,'2026-03-21','drarchit'),(4792,0,0,2218,5865,'2025-12-11',0,'','','','','','','','',0,'2026-01-20','darshan'),(4793,0,0,3910,5861,'2025-12-11',0,'','','','','','','','',0,'2026-01-10','darshan'),(4794,0,0,3693,5855,'2025-12-11',0,'','','','','','','','',0,'2025-12-22','drarchit'),(4795,0,0,3306,5875,'2025-12-11',0,'','','','','','','','',0,'2026-01-22','darshan'),(4796,0,0,3231,5864,'2025-12-11',0,'','','','','','','','',0,'2026-03-11','drarchit'),(4797,0,0,2639,5862,'2025-12-11',0,'','','','','','','','',0,'2026-01-20','darshan'),(4798,0,0,3914,5873,'2025-12-11',0,'','','','','','','','',0,'2025-12-18','drarchit'),(4799,0,0,3906,5854,'2025-12-11',0,'','','','','','','','',0,'2025-12-22','darshan'),(4800,0,0,3037,5884,'2025-12-11',0,'','','','','','','','',0,'2025-12-16','drarchit'),(4801,0,0,3921,5885,'2025-12-11',0,'','','','','','','','',0,'2025-12-22','drarchit'),(4802,0,0,3918,5879,'2025-12-11',0,'','','','','','','','',0,'2026-01-10','darshan'),(4803,0,0,185,5877,'2025-12-11',0,'','','','','','','','',0,'2026-02-09','darshan'),(4804,0,0,3500,5866,'2025-12-11',0,'','','','','','','','',0,'2025-12-22','darshan'),(4805,0,0,3920,5882,'2025-12-11',0,'','','','','','','','',0,'','drjayant'),(4806,0,0,3927,5892,'2025-12-11',0,'','','','','','','','',0,'2026-03-11','drarchit'),(4807,0,0,3917,5878,'2025-12-11',0,'','','','','','','','',0,'2026-01-20','darshan'),(4808,0,0,3925,5890,'2025-12-11',0,'','','','','','','','',0,'2025-12-26','drarchit'),(4809,0,0,399,5893,'2025-12-11',0,'','','','','','','','',0,'2026-03-11','drarchit'),(4810,0,0,3922,5886,'2025-12-11',0,'','','','','','','','',0,'2026-03-11','drarchit'),(4811,0,0,1530,5870,'2025-12-11',0,'','','','','','','','',0,'2026-01-26','darshan'),(4812,0,0,3924,5888,'2025-12-11',0,'','','','','','','','',0,'2026-01-10','drjayant'),(4813,0,0,3923,5887,'2025-12-11',0,'','','','','','','','',0,'','darshan'),(4814,0,0,3930,5900,'2025-12-11',0,'','','','','','','','',0,'2026-03-11','drarchit'),(4815,0,0,3929,5897,'2025-12-11',0,'','','','','','','','',0,'2026-01-10','drarchit'),(4816,0,0,3907,5856,'2025-12-11',0,'','','','','','','','',0,'2025-12-31','darshan'),(4817,0,0,3892,5832,'2025-12-11',0,'','','','','','','','',0,'','drjayant'),(4818,0,0,3926,5891,'2025-12-11',0,'','','','','','','','',0,'','drjayant'),(4819,0,0,629,5880,'2025-12-11',0,'','','','','','','','',0,'2026-02-09','darshan'),(4820,0,0,3932,5902,'2025-12-11',0,'','','','','','','','',0,'2026-04-10','darshan'),(4821,0,0,1369,5899,'2025-12-11',0,'','','','','','','','',0,'2026-02-09','darshan'),(4822,0,0,3928,5895,'2025-12-11',0,'','','','','','','','',0,'2025-12-22','darshan'),(4823,0,0,3915,5874,'2025-12-11',0,'','','','','','','','',0,'2025-12-31','darshan'),(4824,0,0,3931,5901,'2025-12-11',0,'','','','','','','','',0,'2025-12-22','darshan'),(4825,0,0,3937,5908,'2025-12-11',0,'','','','','','','','',0,'2026-04-10','darshan'),(4826,0,0,1286,5910,'2025-12-11',0,'','','','','','','','',0,'2026-02-09','darshan'),(4827,0,0,3939,5911,'2025-12-11',0,'','','','','','','','',0,'2025-12-26','darshan'),(4828,0,0,3347,5917,'2025-12-11',0,'','','','','','','','',0,'','darshan'),(4829,0,0,2670,5915,'2025-12-11',0,'','','','','','','','',0,'2026-01-20','darshan'),(4830,0,0,3317,5919,'2025-12-11',0,'','','','','','','','',0,'2026-01-22','darshan'),(4831,0,0,3891,5830,'2025-12-11',0,'','','','','','','','',0,'','darshan'),(4832,0,0,3942,5918,'2025-12-11',0,'','','','','','','','',0,'','drsagar'),(4833,0,0,3673,5898,'2025-12-11',0,'','','','','','','','',0,'','drsagar'),(4834,0,0,3919,5881,'2025-12-11',0,'','','','','','','','',0,'','drsagar'),(4835,0,0,3935,5906,'2025-12-11',0,'','','','','','','','',0,'','drsagar'),(4836,0,0,3069,5894,'2025-12-11',0,'','','','','','','','',0,'2026-01-10','drarchit'),(4837,0,0,1549,5923,'2025-12-11',0,'','','','','','','','',0,'2025-12-31','darshan'),(4838,0,0,3943,5920,'2025-12-11',0,'','','','','','','','',0,'','drsagar'),(4839,0,0,3941,5916,'2025-12-11',0,'','','','','','','','',0,'','drsagar'),(4840,0,0,3944,5922,'2025-12-11',0,'','','','','','','','',0,'2026-01-10','darshan'),(4841,0,0,3946,5926,'2025-12-11',0,'','','','','','','','',0,'','drsagar'),(4842,0,0,68,5924,'2025-12-11',0,'','','','','','','','',0,'2026-01-20','darshan'),(4843,0,0,1235,5903,'2025-12-11',0,'','','','','','','','',0,'','drarchit'),(4844,0,0,3947,5927,'2025-12-11',0,'','','','','','','','',0,'2025-12-18','drarchit'),(4845,0,0,2812,5933,'2025-12-11',0,'','','','','','','','',0,'2026-01-20','darshan'),(4846,0,0,3888,5823,'2025-12-11',0,'','','','','','','','',0,'','drjayant'),(4847,0,0,3949,5931,'2025-12-11',0,'','','','','','','','',0,'2026-03-11','drarchit'),(4848,0,0,3178,5929,'2025-12-11',0,'','','','','','','','',0,'','drsagar'),(4849,0,0,3948,5930,'2025-12-11',0,'','','','','','','','',0,'2026-03-11','drarchit'),(4850,0,0,3936,5907,'2025-12-11',0,'','','','','','','','',0,'2026-01-10','darshan'),(4851,0,0,3952,5936,'2025-12-11',0,'','','','','','','','',0,'2025-12-16','drjayant'),(4852,0,0,1883,5928,'2025-12-11',0,'','','','','','','','',0,'2026-02-09','drjayant'),(4853,0,0,3940,5913,'2025-12-11',0,'','','','','','','','',0,'2025-12-31','darshan'),(4854,0,0,3957,5944,'2025-12-11',0,'','','','','','','','',0,'2025-12-16','drjayant'),(4855,0,0,3916,5876,'2025-12-11',0,'','','','','','','','',0,'2025-12-26','drarchit'),(4856,0,0,3938,5909,'2025-12-11',0,'','','','','','','','',0,'2026-01-10','darshan'),(4857,0,0,3945,5925,'2025-12-11',0,'','','','','','','','',0,'','drjayant'),(4858,0,0,3934,5905,'2025-12-11',0,'','','','','','','','',0,'','drjayant'),(4859,0,0,64,5938,'2025-12-11',0,'','','','','','','','',0,'','drarchit'),(4860,0,0,3953,5937,'2025-12-11',0,'','','','','','','','',0,'','darshan'),(4861,0,0,1658,5935,'2025-12-11',0,'','','','','','','','',0,'2026-03-11','drarchit'),(4862,0,0,3933,5904,'2025-12-11',0,'','','','','','','','',0,'','drjayant'),(4863,0,0,3951,5934,'2025-12-11',0,'','','','','','','','',0,'2025-12-22','drarchit'),(4864,0,0,3637,5940,'2025-12-11',0,'','','','','','','','',0,'','drarchit'),(4865,0,0,1975,5941,'2025-12-11',0,'','','','','','','','',0,'','darshan'),(4866,0,0,3954,5939,'2025-12-11',0,'','','','','','','','',0,'2025-12-22','darshan'),(4867,0,0,3956,5943,'2025-12-11',0,'','','','','','','','',0,'2025-12-16','darshan'),(4868,0,0,3958,5945,'2025-12-11',0,'','','','','','','','',0,'2026-01-10','drarchit'),(4869,0,0,3298,5954,'2025-12-12',0,'','','','','','','','',0,'2026-01-12','darshan'),(4870,0,0,3437,5956,'2025-12-12',0,'','','','','','','','',0,'2026-01-01','darshan'),(4871,0,0,3343,5955,'2025-12-12',0,'','','','','','','','',0,'2026-01-23','darshan'),(4872,0,0,905,5953,'2025-12-12',0,'','','','','','','','',0,'2026-03-12','drarchit'),(4873,0,0,283,5971,'2025-12-12',0,'','','','','','','','',0,'','drjayant'),(4874,0,0,1832,5970,'2025-12-12',0,'','','','','','','','',0,'2025-12-22','drjayant'),(4875,0,0,3280,5963,'2025-12-12',0,'','','','','','','','',0,'2025-12-22','darshan'),(4876,0,0,3360,5968,'2025-12-12',0,'','','','','','','','',0,'2026-01-12','darshan'),(4877,0,0,757,5972,'2025-12-12',0,'','','','','','','','',0,'','drjayant'),(4878,0,0,2408,5952,'2025-12-12',0,'','','','','','','','',0,'2026-03-12','drarchit'),(4879,0,0,3968,5969,'2025-12-12',0,'','','','','','','','',0,'','drsagar'),(4880,0,0,3963,5959,'2025-12-12',0,'','','','','','','','',0,'2026-03-12','darshan'),(4881,0,0,3972,5976,'2025-12-12',0,'','','','','','','','',0,'2025-12-19','drarchit'),(4882,0,0,3969,5973,'2025-12-12',0,'','','','','','','','',0,'','drsagar'),(4883,0,0,3971,5975,'2025-12-12',0,'','','','','','','','',0,'','drjayant'),(4884,0,0,488,5977,'2025-12-12',0,'','','','','','','','',0,'2026-03-12','darshan'),(4885,0,0,1384,5985,'2025-12-12',0,'','','','','','','','',0,'','drjayant'),(4886,0,0,3347,5917,'2025-12-12',0,'','','','','','','','',0,'2025-12-22','darshan'),(4887,0,0,1506,5961,'2025-12-12',0,'','','','','','','','',0,'2026-02-10','darshan'),(4888,0,0,1841,5967,'2025-12-12',0,'','','','','','','','',0,'2025-12-17','darshan'),(4889,0,0,2843,5982,'2025-12-12',0,'','','','','','','','',0,'2026-01-12','darshan'),(4890,0,0,1511,5962,'2025-12-12',0,'','','','','','','','',0,'2026-03-23','drarchit'),(4891,0,0,3970,5974,'2025-12-12',0,'','','','','','','','',0,'2026-04-11','darshan'),(4892,0,0,3976,5984,'2025-12-12',0,'','','','','','','','',0,'2026-03-12','drarchit'),(4893,0,0,1096,5979,'2025-12-12',0,'','','','','','','','',0,'2026-01-26','darshan'),(4894,0,0,3979,5991,'2025-12-12',0,'','','','','','','','',0,'2025-12-22','drarchit'),(4895,0,0,3377,5981,'2025-12-12',0,'','','','','','','','',0,'2026-01-23','darshan'),(4896,0,0,3964,5960,'2025-12-12',0,'','','','','','','','',0,'2026-01-01','darshan'),(4897,0,0,2251,5988,'2025-12-12',0,'','','','','','','','',0,'2026-01-26','darshan'),(4898,0,0,3977,5986,'2025-12-12',0,'','','','','','','','',0,'2025-12-17','drarchit'),(4899,0,0,3054,5990,'2025-12-12',0,'','','','','','','','',0,'2026-01-26','darshan'),(4900,0,0,3965,5964,'2025-12-12',0,'','','','','','','','',0,'2025-12-22','darshan'),(4901,0,0,3966,5965,'2025-12-12',0,'','','','','','','','',0,'2026-03-12','drarchit'),(4902,0,0,3967,5966,'2025-12-12',0,'','','','','','','','',0,'2026-03-12','drarchit'),(4903,0,0,3982,5995,'2025-12-12',0,'','','','','','','','',0,'2025-12-19','drarchit'),(4904,0,0,3974,5980,'2025-12-12',0,'','','','','','','','',0,'2026-03-12','drarchit'),(4905,0,0,3978,5989,'2025-12-12',0,'','','','','','','','',0,'2026-01-01','darshan'),(4906,0,0,3962,5957,'2025-12-12',0,'','','','','','','','',0,'2025-12-22','darshan'),(4907,0,0,3018,5993,'2025-12-12',0,'','','','','','','','',0,'','drarchit'),(4908,0,0,3961,5950,'2025-12-12',0,'','','','','','','','',0,'','drarchit'),(4909,0,0,3960,5949,'2025-12-12',0,'','','','','','','','',0,'','drjayant'),(4910,0,0,3413,5951,'2025-12-12',0,'','','','','','','','',0,'2025-12-27','darshan'),(4911,0,0,3983,5996,'2025-12-12',0,'','','','','','','','',0,'2025-12-27','darshan'),(4912,0,0,1652,6006,'2025-12-12',0,'','','','','','','','',0,'2026-01-01','darshan'),(4913,0,0,1698,6005,'2025-12-12',0,'','','','','','','','',0,'2026-02-10','darshan'),(4914,0,0,2799,6004,'2025-12-12',0,'','','','','','','','',0,'','darshan'),(4915,0,0,958,6007,'2025-12-12',0,'','','','','','','','',0,'','darshan'),(4916,0,0,2798,6008,'2025-12-12',0,'','','','','','','','',0,'','darshan'),(4917,0,0,3988,6011,'2025-12-12',0,'','','','','','','','',0,'','darshan'),(4918,0,0,3989,6013,'2025-12-12',0,'','','','','','','','',0,'2026-03-12','darshan'),(4919,0,0,3991,6015,'2025-12-12',0,'','','','','','','','',0,'2025-12-22','darshan'),(4920,0,0,3985,6001,'2025-12-12',0,'','','','','','','','',0,'2025-12-22','darshan'),(4921,0,0,1028,6003,'2025-12-12',0,'','','','','','','','',0,'2026-01-12','darshan'),(4922,0,0,622,6000,'2025-12-12',0,'','','','','','','','',0,'','drarchit'),(4923,0,0,2345,6022,'2025-12-12',0,'','','','','','','','',0,'2026-01-21','darshan'),(4924,0,0,3987,6009,'2025-12-12',0,'','','','','','','','',0,'2025-12-22','drarchit'),(4925,0,0,3981,5994,'2025-12-12',0,'','','','','','','','',0,'2025-12-19','drarchit'),(4926,0,0,3565,6010,'2025-12-12',0,'','','','','','','','',0,'2026-01-01','darshan'),(4927,0,0,3996,6021,'2025-12-12',0,'','','','','','','','',0,'2026-01-12','drarchit'),(4928,0,0,3999,6026,'2025-12-12',0,'','','','','','','','',0,'','drarchit'),(4929,0,0,4002,6029,'2025-12-12',0,'','','','','','','','',0,'','drarchit'),(4930,0,0,4004,6033,'2025-12-12',0,'','','','','','','','',0,'2026-03-23','drarchit'),(4931,0,0,3998,6024,'2025-12-12',0,'','','','','','','','',0,'2026-01-21','darshan'),(4932,0,0,3990,6014,'2025-12-12',0,'','','','','','','','',0,'','drjayant'),(4933,0,0,3997,6023,'2025-12-12',0,'','','','','','','','',0,'2026-03-12','darshan'),(4934,0,0,4000,6027,'2025-12-12',0,'','','','','','','','',0,'','drsagar'),(4935,0,0,4006,6035,'2025-12-12',0,'','','','','','','','',0,'2026-03-12','drarchit'),(4936,0,0,3735,6032,'2025-12-12',0,'','','','','','','','',0,'','drsagar'),(4937,0,0,306,6030,'2025-12-12',0,'','','','','','','','',0,'2026-02-10','drjayant'),(4938,0,0,4007,6037,'2025-12-12',0,'','','','','','','','',0,'2026-03-12','drarchit'),(4939,0,0,3994,6019,'2025-12-12',0,'','','','','','','','',0,'2026-01-01','darshan'),(4940,0,0,4003,6031,'2025-12-12',0,'','','','','','','','',0,'2025-12-15','drjayant'),(4941,0,0,3986,6002,'2025-12-12',0,'','','','','','','','',0,'2025-12-22','darshan'),(4942,0,0,3975,5983,'2025-12-12',0,'','','','','','','','',0,'2026-01-12','drarchit'),(4943,0,0,3924,5888,'2025-12-12',0,'','','','','','','','',0,'2026-01-10','drjayant'),(4944,0,0,1089,6025,'2025-12-12',0,'','','','','','','','',0,'2026-01-21','darshan'),(4945,0,0,4010,6040,'2025-12-12',0,'','','','','','','','',0,'','drridham'),(4946,0,0,4012,6042,'2025-12-12',0,'','','','','','','','',0,'','drarchit'),(4947,0,0,4008,6038,'2025-12-12',0,'','','','','','','','',0,'2026-03-12','drarchit'),(4948,0,0,4005,6034,'2025-12-12',0,'','','','','','','','',0,'2026-02-10','drjayant'),(4949,0,0,4013,6043,'2025-12-12',0,'','','','','','','','',0,'2026-01-01','darshan'),(4950,0,0,3955,5997,'2025-12-12',0,'','','','','','','','',0,'2026-03-12','drarchit'),(4951,0,0,2269,6048,'2025-12-12',0,'','','','','','','','',0,'','drsagar'),(4952,0,0,4009,6039,'2025-12-12',0,'','','','','','','','',0,'','drarchit'),(4953,0,0,4014,6052,'2025-12-12',0,'','','','','','','','',0,'2026-02-10','drjayant'),(4954,0,0,3992,6016,'2025-12-12',0,'','','','','','','','',0,'2025-12-22','darshan'),(4955,0,0,4001,6028,'2025-12-12',0,'','','','','','','','',0,'2025-12-22','darshan'),(4956,0,0,3980,5992,'2025-12-12',0,'','','','','','','','',0,'','drarchit'),(4957,0,0,3995,6020,'2025-12-12',0,'','','','','','','','',0,'2025-12-22','darshan'),(4958,0,0,4011,6041,'2025-12-12',0,'','','','','','','','',0,'2026-03-12','drarchit'),(4959,0,0,1975,5941,'2025-12-12',0,'','','','','','','','',0,'','darshan'),(4960,0,0,2368,6044,'2025-12-12',0,'','','','','','','','',0,'2026-01-12','drarchit'),(4961,0,0,4016,6058,'2025-12-12',0,'','','','','','','','',0,'','drjayant'),(4962,0,0,2673,6050,'2025-12-12',0,'','','','','','','','',0,'2026-01-12','drarchit'),(4963,0,0,3993,6017,'2025-12-12',0,'','','','','','','','',0,'2025-12-22','darshan'),(4964,0,0,3598,6045,'2025-12-12',0,'','','','','','','','',0,'2025-12-19','drarchit'),(4965,0,0,536,6046,'2025-12-12',0,'','','','','','','','',0,'2026-02-10','darshan'),(4966,0,0,1156,6051,'2025-12-12',0,'','','','','','','','',0,'2026-02-10','drarchit'),(4967,0,0,2174,6049,'2025-12-12',0,'','','','','','','','',0,'2026-01-26','darshan'),(4968,0,0,2495,6053,'2025-12-12',0,'','','','','','','','',0,'2026-03-12','drarchit'),(4969,0,0,372,6057,'2025-12-12',0,'','','','','','','','',0,'','drarchit'),(4970,0,0,4015,6054,'2025-12-12',0,'','','','','','','','',0,'','drarchit'),(4971,0,0,348,6059,'2025-12-12',0,'','','','','','','','',0,'2026-03-23','drarchit'),(4972,0,0,4019,6063,'2025-12-12',0,'','','','','','','','',0,'2026-01-21','darshan'),(4973,0,0,4017,6060,'2025-12-12',0,'','','','','','','','',0,'2026-03-12','drarchit'),(4974,0,0,3973,6071,'2025-12-13',0,'','','','','','','','',0,'','drpratapsi'),(4975,0,0,2503,6078,'2025-12-13',0,'','','','','','','','',0,'','drpratapsi'),(4976,0,0,2711,6081,'2025-12-13',0,'','','','','','','','',0,'','drpratapsi'),(4977,0,0,3902,6075,'2025-12-13',0,'','','','','','','','',0,'','drpratapsi'),(4978,0,0,4025,6073,'2025-12-13',0,'','','','','','','','',0,'','drpratapsi'),(4979,0,0,3869,6086,'2025-12-13',0,'','','','','','','','',0,'','drpratapsi'),(4980,0,0,4028,6085,'2025-12-13',0,'','','','','','','','',0,'','drpratapsi'),(4981,0,0,1130,6076,'2025-12-13',0,'','','','','','','','',0,'2026-01-12','darshan'),(4982,0,0,3568,6096,'2025-12-13',0,'','','','','','','','',0,'','drpratapsi'),(4983,0,0,3386,6091,'2025-12-13',0,'','','','','','','','',0,'','drpratapsi'),(4984,0,0,4018,6068,'2025-12-13',0,'','','','','','','','',0,'','drsagar'),(4985,0,0,4030,6088,'2025-12-13',0,'','','','','','','','',0,'','drsagar'),(4986,0,0,3457,6077,'2025-12-13',0,'','','','','','','','',0,'2025-12-23','darshan'),(4987,0,0,1476,6093,'2025-12-13',0,'','','','','','','','',0,'','drpratapsi'),(4988,0,0,3498,6104,'2025-12-13',0,'','','','','','','','',0,'','drpratapsi'),(4989,0,0,2474,6102,'2025-12-13',0,'','','','','','','','',0,'','drsagar'),(4990,0,0,4023,6067,'2025-12-13',0,'','','','','','','','',0,'','drarchit'),(4991,0,0,3462,6083,'2025-12-13',0,'','','','','','','','',0,'2025-12-23','darshan'),(4992,0,0,594,6079,'2025-12-13',0,'','','','','','','','',0,'2026-01-12','drarchit'),(4993,0,0,2235,6092,'2025-12-13',0,'','','','','','','','',0,'2026-01-12','darshan'),(4994,0,0,3582,6103,'2025-12-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(4995,0,0,155,6069,'2025-12-13',0,'','','','','','','','',0,'2026-03-13','drjayant'),(4996,0,0,1624,6100,'2025-12-13',0,'','','','','','','','',0,'2026-01-27','darshan'),(4997,0,0,4026,6074,'2025-12-13',0,'','','','','','','','',0,'','drjayant'),(4998,0,0,4034,6098,'2025-12-13',0,'','','','','','','','',0,'2025-12-20','drarchit'),(4999,0,0,4036,6101,'2025-12-13',0,'','','','','','','','',0,'2026-02-11','drjayant'),(5000,0,0,4027,6080,'2025-12-13',0,'','','','','','','','',0,'2025-12-23','darshan'),(5001,0,0,1280,6114,'2025-12-13',0,'','','','','','','','',0,'2026-02-11','drarchit'),(5002,0,0,466,6105,'2025-12-13',0,'','','','','','','','',0,'2026-02-11','darshan'),(5003,0,0,4029,6087,'2025-12-13',0,'','','','','','','','',0,'2025-12-20','drarchit'),(5004,0,0,4032,6090,'2025-12-13',0,'','','','','','','','',0,'2025-12-18','darshan'),(5005,0,0,4044,6118,'2025-12-13',0,'','','','','','','','',0,'2025-12-18','drarchit'),(5006,0,0,308,6095,'2025-12-13',0,'','','','','','','','',0,'2026-02-11','darshan'),(5007,0,0,3990,6014,'2025-12-13',0,'','','','','','','','',0,'','drjayant'),(5008,0,0,3517,6121,'2025-12-13',0,'','','','','','','','',0,'2025-12-18','drarchit'),(5009,0,0,2960,6112,'2025-12-13',0,'','','','','','','','',0,'2026-01-22','darshan'),(5010,0,0,4038,6107,'2025-12-13',0,'','','','','','','','',0,'2025-12-18','darshan'),(5011,0,0,237,6122,'2025-12-13',0,'','','','','','','','',0,'2025-12-20','drarchit'),(5012,0,0,4047,6124,'2025-12-13',0,'','','','','','','','',0,'2026-02-07','drarchit'),(5013,0,0,3971,5975,'2025-12-13',0,'','','','','','','','',0,'','drjayant'),(5014,0,0,4035,6099,'2025-12-13',0,'','','','','','','','',0,'2026-01-12','darshan'),(5015,0,0,4049,6126,'2025-12-13',0,'','','','','','','','',0,'2026-01-12','drarchit'),(5016,0,0,3523,6119,'2025-12-13',0,'','','','','','','','',0,'2025-12-20','drarchit'),(5017,0,0,4042,6115,'2025-12-13',0,'','','','','','','','',0,'','drarchit'),(5018,0,0,4051,6132,'2025-12-13',0,'','','','','','','','',0,'2026-03-13','drarchit'),(5019,0,0,3508,6113,'2025-12-13',0,'','','','','','','','',0,'2026-01-02','darshan'),(5020,0,0,3920,6127,'2025-12-13',0,'','','','','','','','',0,'','drjayant'),(5021,0,0,4045,6120,'2025-12-13',0,'','','','','','','','',0,'2025-12-18','darshan'),(5022,0,0,3979,5991,'2025-12-13',0,'','','','','','','','',0,'2025-12-22','drarchit'),(5023,0,0,4024,6072,'2025-12-13',0,'','','','','','','','',0,'2026-01-12','darshan'),(5024,0,0,4015,6054,'2025-12-13',0,'','','','','','','','',0,'','drarchit'),(5025,0,0,4052,6133,'2025-12-13',0,'','','','','','','','',0,'','drjayant'),(5026,0,0,4040,6109,'2025-12-13',0,'','','','','','','','',0,'2025-12-23','darshan'),(5027,0,0,2765,6139,'2025-12-13',0,'','','','','','','','',0,'2025-12-20','drarchit'),(5028,0,0,4048,6125,'2025-12-13',0,'','','','','','','','',0,'2025-12-18','darshan'),(5029,0,0,4053,6134,'2025-12-13',0,'','','','','','','','',0,'','drjayant'),(5030,0,0,4043,6117,'2025-12-13',0,'','','','','','','','',0,'2026-01-02','darshan'),(5031,0,0,4050,6129,'2025-12-13',0,'','','','','','','','',0,'2025-12-29','drjayant'),(5032,0,0,4037,6106,'2025-12-13',0,'','','','','','','','',0,'2025-12-23','darshan'),(5033,0,0,4039,6108,'2025-12-13',0,'','','','','','','','',0,'2025-12-29','darshan'),(5034,0,0,4041,6111,'2025-12-13',0,'','','','','','','','',0,'2026-01-02','darshan'),(5035,0,0,1253,6128,'2025-12-13',0,'','','','','','','','',0,'2026-01-22','darshan'),(5036,0,0,4046,6123,'2025-12-13',0,'','','','','','','','',0,'2025-12-23','darshan'),(5037,0,0,1053,6135,'2025-12-13',0,'','','','','','','','',0,'2026-01-12','darshan'),(5038,0,0,2193,6137,'2025-12-13',0,'','','','','','','','',0,'2026-02-11','darshan'),(5039,0,0,4031,6089,'2025-12-13',0,'','','','','','','','',0,'2026-01-12','darshan'),(5040,0,0,1019,6140,'2025-12-13',0,'','','','','','','','',0,'','drpratapsi'),(5041,0,0,3305,6116,'2025-12-13',0,'','','','','','','','',0,'','drpratapsi'),(5042,0,0,809,6141,'2025-12-13',0,'','','','','','','','',0,'','drpratapsi'),(5043,0,0,4058,6146,'2025-12-13',0,'','','','','','','','',0,'','drridham'),(5044,0,0,2542,6144,'2025-12-13',0,'','','','','','','','',0,'','drpratapsi'),(5045,0,0,4054,6138,'2025-12-13',0,'','','','','','','','',0,'','drsagar'),(5046,0,0,3605,6148,'2025-12-13',0,'','','','','','','','',0,'','drpratapsi'),(5047,0,0,3031,6149,'2025-12-13',0,'','','','','','','','',0,'','drpratapsi'),(5048,0,0,1288,6151,'2025-12-13',0,'','','','','','','','',0,'','drpratapsi'),(5049,0,0,4066,6170,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5050,0,0,3366,6174,'2025-12-15',0,'','','','','','','','',0,'2026-01-05','darshan'),(5051,0,0,1227,6172,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5052,0,0,3378,6168,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5053,0,0,3902,6176,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5054,0,0,2277,6184,'2025-12-15',0,'','','','','','','','',0,'2026-01-14','darshan'),(5055,0,0,4071,6179,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5056,0,0,3755,6195,'2025-12-15',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5057,0,0,2850,6180,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5058,0,0,3514,6177,'2025-12-15',0,'','','','','','','','',0,'2026-01-26','darshan'),(5059,0,0,3712,6181,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5060,0,0,3148,6197,'2025-12-15',0,'','','','','','','','',0,'2026-02-13','drarchit'),(5061,0,0,3589,6199,'2025-12-15',0,'','','','','','','','',0,'2026-01-26','darshan'),(5062,0,0,4074,6186,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5063,0,0,4065,6169,'2025-12-15',0,'','','','','','','','',0,'','drsagar'),(5064,0,0,4085,6209,'2025-12-15',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5065,0,0,4069,6175,'2025-12-15',0,'','','','','','','','',0,'2026-02-13','drjayant'),(5066,0,0,3695,6188,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5067,0,0,3720,6191,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5068,0,0,2239,6183,'2025-12-15',0,'','','','','','','','',0,'2026-01-29','darshan'),(5069,0,0,4089,6213,'2025-12-15',0,'','','','','','','','',0,'','drjayant'),(5070,0,0,4077,6192,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5071,0,0,4092,6218,'2025-12-15',0,'','','','','','','','',0,'2026-01-14','drarchit'),(5072,0,0,4097,6225,'2025-12-15',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5073,0,0,1965,6187,'2025-12-15',0,'','','','','','','','',0,'2026-02-13','darshan'),(5074,0,0,4095,6223,'2025-12-15',0,'','','','','','','','',0,'','drsagar'),(5075,0,0,4103,6237,'2025-12-15',0,'','','','','','','','',0,'','drjayant'),(5076,0,0,4098,6226,'2025-12-15',0,'','','','','','','','',0,'2025-12-20','drarchit'),(5077,0,0,4076,6190,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5078,0,0,4078,6194,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5079,0,0,4101,6234,'2025-12-15',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5080,0,0,3520,6239,'2025-12-15',0,'','','','','','','','',0,'','drjayant'),(5081,0,0,3305,6203,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5082,0,0,1508,6205,'2025-12-15',0,'','','','','','','','',0,'2026-02-13','darshan'),(5083,0,0,4086,6210,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5084,0,0,4099,6228,'2025-12-15',0,'','','','','','','','',0,'','drsagar'),(5085,0,0,4109,6247,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5086,0,0,3887,6227,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5087,0,0,4110,6248,'2025-12-15',0,'','','','','','','','',0,'','drsagar'),(5088,0,0,2532,6244,'2025-12-15',0,'','','','','','','','',0,'2026-01-24','darshan'),(5089,0,0,1715,6233,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5090,0,0,757,5972,'2025-12-15',0,'','','','','','','','',0,'2026-02-12','drjayant'),(5091,0,0,3854,6238,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5092,0,0,3498,6198,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5093,0,0,2917,6242,'2025-12-15',0,'','','','','','','','',0,'2026-01-14','darshan'),(5094,0,0,4106,6243,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5095,0,0,3382,6200,'2025-12-15',0,'','','','','','','','',0,'2025-12-20','drarchit'),(5096,0,0,4044,6252,'2025-12-15',0,'','','','','','','','',0,'','drarchit'),(5097,0,0,4104,6240,'2025-12-15',0,'','','','','','','','',0,'','drsagar'),(5098,0,0,4111,6249,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5099,0,0,3358,6216,'2025-12-15',0,'','','','','','','','',0,'2025-12-25','darshan'),(5100,0,0,4108,6246,'2025-12-15',0,'','','','','','','','',0,'2026-01-14','drjayant'),(5101,0,0,3303,6229,'2025-12-15',0,'','','','','','','','',0,'2025-12-25','darshan'),(5102,0,0,3673,6236,'2025-12-15',0,'','','','','','','','',0,'','drsagar'),(5103,0,0,4068,6173,'2025-12-15',0,'','','','','','','','',0,'2025-12-25','darshan'),(5104,0,0,3265,6251,'2025-12-15',0,'','','','','','','','',0,'','drsagar'),(5105,0,0,2075,6231,'2025-12-15',0,'','','','','','','','',0,'2026-01-14','darshan'),(5106,0,0,4100,6230,'2025-12-15',0,'','','','','','','','',0,'2026-01-14','darshan'),(5107,0,0,4114,6256,'2025-12-15',0,'','','','','','','','',0,'2025-12-22','drarchit'),(5108,0,0,4070,6178,'2025-12-15',0,'','','','','','','','',0,'2025-12-25','darshan'),(5109,0,0,4087,6211,'2025-12-15',0,'','','','','','','','',0,'2026-02-09','drarchit'),(5110,0,0,4075,6189,'2025-12-15',0,'','','','','','','','',0,'2025-12-25','darshan'),(5111,0,0,4096,6224,'2025-12-15',0,'','','','','','','','',0,'2025-12-25','darshan'),(5112,0,0,4113,6255,'2025-12-15',0,'','','','','','','','',0,'2026-02-13','drjayant'),(5113,0,0,4105,6241,'2025-12-15',0,'','','','','','','','',0,'','drjayant'),(5114,0,0,1051,6257,'2025-12-15',0,'','','','','','','','',0,'2026-01-14','darshan'),(5115,0,0,4083,6207,'2025-12-15',0,'','','','','','','','',0,'','drjayant'),(5116,0,0,4082,6206,'2025-12-15',0,'','','','','','','','',0,'','drjayant'),(5117,0,0,811,6193,'2025-12-15',0,'','','','','','','','',0,'2026-02-13','drjayant'),(5118,0,0,4079,6196,'2025-12-15',0,'','','','','','','','',0,'2026-01-14','darshan'),(5119,0,0,4081,6204,'2025-12-15',0,'','','','','','','','',0,'2025-12-25','darshan'),(5120,0,0,4090,6214,'2025-12-15',0,'','','','','','','','',0,'2026-01-05','darshan'),(5121,0,0,4107,6245,'2025-12-15',0,'','','','','','','','',0,'2025-12-25','darshan'),(5122,0,0,4112,6250,'2025-12-15',0,'','','','','','','','',0,'2026-01-05','darshan'),(5123,0,0,2738,6261,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5124,0,0,3605,6259,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5125,0,0,4115,6258,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5126,0,0,3859,6253,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5127,0,0,4119,6271,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5128,0,0,3730,6273,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5129,0,0,3182,6266,'2025-12-15',0,'','','','','','','','',0,'2026-01-05','darshan'),(5130,0,0,2878,6270,'2025-12-15',0,'','','','','','','','',0,'2026-01-14','darshan'),(5131,0,0,4120,6272,'2025-12-15',0,'','','','','','','','',0,'2025-12-25','darshan'),(5132,0,0,3743,6277,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5133,0,0,4057,6278,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5134,0,0,3642,6268,'2025-12-15',0,'','','','','','','','',0,'2026-01-14','darshan'),(5135,0,0,589,6269,'2025-12-15',0,'','','','','','','','',0,'2026-02-13','darshan'),(5136,0,0,3819,6284,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5137,0,0,3973,6286,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5138,0,0,4128,6288,'2025-12-15',0,'','','','','','','','',0,'','drsagar'),(5139,0,0,2407,6280,'2025-12-15',0,'','','','','','','','',0,'2025-12-30','darshan'),(5140,0,0,4088,6212,'2025-12-15',0,'','','','','','','','',0,'','drarchit'),(5141,0,0,2497,6293,'2025-12-15',0,'','','','','','','','',0,'2026-01-29','darshan'),(5142,0,0,658,6281,'2025-12-15',0,'','','','','','','','',0,'2026-02-13','drarchit'),(5143,0,0,4129,6289,'2025-12-15',0,'','','','','','','','',0,'2025-12-20','drarchit'),(5144,0,0,4117,6265,'2025-12-15',0,'','','','','','','','',0,'2026-01-14','darshan'),(5145,0,0,4127,6287,'2025-12-15',0,'','','','','','','','',0,'2026-03-16','drjayant'),(5146,0,0,4131,6291,'2025-12-15',0,'','','','','','','','',0,'2026-01-14','drarchit'),(5147,0,0,4132,6292,'2025-12-15',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5148,0,0,1305,6296,'2025-12-15',0,'','','','','','','','',0,'2026-01-14','drarchit'),(5149,0,0,4133,6294,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5150,0,0,4124,6282,'2025-12-15',0,'','','','','','','','',0,'2025-12-25','darshan'),(5151,0,0,2118,6297,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5152,0,0,736,6298,'2025-12-15',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5153,0,0,3319,6308,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5154,0,0,4123,6279,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5155,0,0,975,6303,'2025-12-15',0,'','','','','','','','',0,'2026-02-13','darshan'),(5156,0,0,4121,6275,'2025-12-15',0,'','','','','','','','',0,'2025-12-25','darshan'),(5157,0,0,4136,6301,'2025-12-15',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5158,0,0,3879,6299,'2025-12-15',0,'','','','','','','','',0,'2025-12-25','drarchit'),(5159,0,0,2755,6304,'2025-12-15',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5160,0,0,4125,6283,'2025-12-15',0,'','','','','','','','',0,'2025-12-25','darshan'),(5161,0,0,4138,6305,'2025-12-15',0,'','','','','','','','',0,'2025-12-25','drarchit'),(5162,0,0,2027,6311,'2025-12-15',0,'','','','','','','','',0,'2026-01-14','darshan'),(5163,0,0,4139,6306,'2025-12-15',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5164,0,0,4141,6310,'2025-12-15',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5165,0,0,4126,6285,'2025-12-15',0,'','','','','','','','',0,'2025-12-25','darshan'),(5166,0,0,280,6312,'2025-12-15',0,'','','','','','','','',0,'2025-12-20','drarchit'),(5167,0,0,4134,6295,'2025-12-15',0,'','','','','','','','',0,'2025-12-25','darshan'),(5168,0,0,2685,6319,'2025-12-15',0,'','','','','','','','',0,'','drarchit'),(5169,0,0,1894,6314,'2025-12-15',0,'','','','','','','','',0,'2026-01-24','darshan'),(5170,0,0,4144,6321,'2025-12-15',0,'','','','','','','','',0,'2025-12-22','drarchit'),(5171,0,0,1288,6323,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5172,0,0,4135,6300,'2025-12-15',0,'','','','','','','','',0,'2026-01-05','darshan'),(5173,0,0,3870,6320,'2025-12-15',0,'','','','','','','','',0,'','darshan'),(5174,0,0,4145,6324,'2025-12-15',0,'','','','','','','','',0,'2025-12-22','drarchit'),(5175,0,0,3310,6317,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5176,0,0,3243,6307,'2025-12-15',0,'','','','','','','','',0,'','darshan'),(5177,0,0,4140,6309,'2025-12-15',0,'','','','','','','','',0,'','darshan'),(5178,0,0,4143,6318,'2025-12-15',0,'','','','','','','','',0,'2025-12-20','darshan'),(5179,0,0,2538,6315,'2025-12-15',0,'','','','','','','','',0,'2025-12-20','darshan'),(5180,0,0,4142,6316,'2025-12-15',0,'','','','','','','','',0,'2025-12-25','darshan'),(5181,0,0,4147,6327,'2025-12-15',0,'','','','','','','','',0,'2025-12-25','darshan'),(5182,0,0,3827,5711,'2025-12-15',0,'','','','','','','','',0,'','darshan'),(5183,0,0,4122,6276,'2025-12-15',0,'','','','','','','','',0,'','drpratapsi'),(5184,0,0,3619,6337,'2025-12-16',0,'','','','','','','','',0,'2025-12-26','darshan'),(5185,0,0,813,6332,'2025-12-16',0,'','','','','','','','',0,'2026-01-26','darshan'),(5186,0,0,3571,6345,'2025-12-16',0,'','','','','','','','',0,'','drsagar'),(5187,0,0,2579,6339,'2025-12-16',0,'','','','','','','','',0,'2026-01-27','darshan'),(5188,0,0,4160,6356,'2025-12-16',0,'','','','','','','','',0,'','drarchit'),(5189,0,0,4149,6335,'2025-12-16',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5190,0,0,2908,6350,'2025-12-16',0,'','','','','','','','',0,'2026-01-05','darshan'),(5191,0,0,4151,6340,'2025-12-16',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5192,0,0,267,6342,'2025-12-16',0,'','','','','','','','',0,'2026-01-26','darshan'),(5193,0,0,3569,6338,'2025-12-16',0,'','','','','','','','',0,'2025-12-26','darshan'),(5194,0,0,4153,6344,'2025-12-16',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5195,0,0,4162,6360,'2025-12-16',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5196,0,0,4165,6364,'2025-12-16',0,'','','','','','','','',0,'2026-01-15','drjayant'),(5197,0,0,1241,6349,'2025-12-16',0,'','','','','','','','',0,'2025-12-23','drarchit'),(5198,0,0,716,6357,'2025-12-16',0,'','','','','','','','',0,'2026-01-15','darshan'),(5199,0,0,918,6343,'2025-12-16',0,'','','','','','','','',0,'2026-02-14','darshan'),(5200,0,0,4173,6375,'2025-12-16',0,'','','','','','','','',0,'2026-01-15','drjayant'),(5201,0,0,4159,6355,'2025-12-16',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5202,0,0,4161,6358,'2025-12-16',0,'','','','','','','','',0,'2026-03-26','drarchit'),(5203,0,0,4156,6352,'2025-12-16',0,'','','','','','','','',0,'','drsagar'),(5204,0,0,1549,6347,'2025-12-16',0,'','','','','','','','',0,'','darshan'),(5205,0,0,4169,6371,'2025-12-16',0,'','','','','','','','',0,'','drjayant'),(5206,0,0,3305,6369,'2025-12-16',0,'','','','','','','','',0,'','drpratapsi'),(5207,0,0,3538,6362,'2025-12-16',0,'','','','','','','','',0,'','drpratapsi'),(5208,0,0,4158,6354,'2025-12-16',0,'','','','','','','','',0,'','drpratapsi'),(5209,0,0,633,6359,'2025-12-16',0,'','','','','','','','',0,'2025-12-23','drarchit'),(5210,0,0,4174,6376,'2025-12-16',0,'','','','','','','','',0,'2026-01-15','drjayant'),(5211,0,0,4168,6370,'2025-12-16',0,'','','','','','','','',0,'','drjayant'),(5212,0,0,2471,6367,'2025-12-16',0,'','','','','','','','',0,'','drridham'),(5213,0,0,4166,6365,'2025-12-16',0,'','','','','','','','',0,'2025-12-23','drarchit'),(5214,0,0,4157,6353,'2025-12-16',0,'','','','','','','','',0,'2026-01-05','darshan'),(5215,0,0,4144,6321,'2025-12-16',0,'','','','','','','','',0,'2025-12-22','drarchit'),(5216,0,0,4170,6372,'2025-12-16',0,'','','','','','','','',0,'','drarchit'),(5217,0,0,912,6366,'2025-12-16',0,'','','','','','','','',0,'2026-02-14','darshan'),(5218,0,0,2791,6331,'2025-12-16',0,'','','','','','','','',0,'2026-01-15','darshan'),(5219,0,0,4180,6386,'2025-12-16',0,'','','','','','','','',0,'2025-12-23','drarchit'),(5220,0,0,4150,6336,'2025-12-16',0,'','','','','','','','',0,'2026-01-15','darshan'),(5221,0,0,4154,6348,'2025-12-16',0,'','','','','','','','',0,'2025-12-26','darshan'),(5222,0,0,4116,6382,'2025-12-16',0,'','','','','','','','',0,'2025-12-22','drarchit'),(5223,0,0,4179,6383,'2025-12-16',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5224,0,0,3246,6385,'2025-12-16',0,'','','','','','','','',0,'2026-01-27','darshan'),(5225,0,0,4182,6388,'2025-12-16',0,'','','','','','','','',0,'2026-02-14','drjayant'),(5226,0,0,4181,6387,'2025-12-16',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5227,0,0,4183,6389,'2025-12-16',0,'','','','','','','','',0,'','drarchit'),(5228,0,0,4185,6392,'2025-12-16',0,'','','','','','','','',0,'2026-02-10','drarchit'),(5229,0,0,4155,6351,'2025-12-16',0,'','','','','','','','',0,'2026-01-05','darshan'),(5230,0,0,3841,6393,'2025-12-16',0,'','','','','','','','',0,'','drarchit'),(5231,0,0,4186,6394,'2025-12-16',0,'','','','','','','','',0,'','drarchit'),(5232,0,0,2128,6377,'2025-12-16',0,'','','','','','','','',0,'','darshan'),(5233,0,0,4184,6390,'2025-12-16',0,'','','','','','','','',0,'','darshan'),(5234,0,0,4171,6373,'2025-12-16',0,'','','','','','','','',0,'2025-12-26','darshan'),(5235,0,0,4152,6341,'2025-12-16',0,'','','','','','','','',0,'','darshan'),(5236,0,0,4175,6378,'2025-12-16',0,'','','','','','','','',0,'2025-12-26','darshan'),(5237,0,0,4187,6396,'2025-12-16',0,'','','','','','','','',0,'2025-12-22','darshan'),(5238,0,0,4189,6399,'2025-12-16',0,'','','','','','','','',0,'2026-03-26','darshan'),(5239,0,0,284,6400,'2025-12-16',0,'','','','','','','','',0,'2026-01-15','darshan'),(5240,0,0,1459,6403,'2025-12-16',0,'','','','','','','','',0,'2026-01-30','darshan'),(5241,0,0,964,6409,'2025-12-16',0,'','','','','','','','',0,'2026-01-26','darshan'),(5242,0,0,4172,6374,'2025-12-16',0,'','','','','','','','',0,'','drarchit'),(5243,0,0,4138,6305,'2025-12-16',0,'','','','','','','','',0,'2025-12-25','drarchit'),(5244,0,0,4195,6410,'2025-12-16',0,'','','','','','','','',0,'2025-12-26','darshan'),(5245,0,0,4193,6407,'2025-12-16',0,'','','','','','','','',0,'2025-12-26','darshan'),(5246,0,0,4199,6417,'2025-12-16',0,'','','','','','','','',0,'','drjayant'),(5247,0,0,2542,6415,'2025-12-16',0,'','','','','','','','',0,'','drpratapsi'),(5248,0,0,3310,6419,'2025-12-16',0,'','','','','','','','',0,'','drpratapsi'),(5249,0,0,4191,6404,'2025-12-16',0,'','','','','','','','',0,'2026-01-15','drarchit'),(5250,0,0,852,6412,'2025-12-16',0,'','','','','','','','',0,'2026-02-14','darshan'),(5251,0,0,4057,6406,'2025-12-16',0,'','','','','','','','',0,'','drpratapsi'),(5252,0,0,2738,6395,'2025-12-16',0,'','','','','','','','',0,'','drpratapsi'),(5253,0,0,4198,6416,'2025-12-16',0,'','','','','','','','',0,'','drsagar'),(5254,0,0,2930,6422,'2025-12-16',0,'','','','','','','','',0,'','drpratapsi'),(5255,0,0,4065,6384,'2025-12-16',0,'','','','','','','','',0,'','drsagar'),(5256,0,0,3332,6418,'2025-12-16',0,'','','','','','','','',0,'','drsagar'),(5257,0,0,4148,6333,'2025-12-16',0,'','','','','','','','',0,'','drpratapsi'),(5258,0,0,4167,6368,'2025-12-16',0,'','','','','','','','',0,'','drpratapsi'),(5259,0,0,4177,6380,'2025-12-16',0,'','','','','','','','',0,'','drpratapsi'),(5260,0,0,4023,6411,'2025-12-16',0,'','','','','','','','',0,'2026-01-15','drarchit'),(5261,0,0,4178,6381,'2025-12-16',0,'','','','','','','','',0,'','drpratapsi'),(5262,0,0,4106,6391,'2025-12-16',0,'','','','','','','','',0,'','drpratapsi'),(5263,0,0,3593,6427,'2025-12-16',0,'','','','','','','','',0,'','drpratapsi'),(5264,0,0,4140,6309,'2025-12-16',0,'','','','','','','','',0,'','darshan'),(5265,0,0,4163,6361,'2025-12-16',0,'','','','','','','','',0,'2025-12-26','drarchit'),(5266,0,0,64,6429,'2025-12-16',0,'','','','','','','','',0,'2026-02-14','drarchit'),(5267,0,0,4202,6426,'2025-12-16',0,'','','','','','','','',0,'2025-12-26','darshan'),(5268,0,0,4196,6413,'2025-12-16',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5269,0,0,4197,6414,'2025-12-16',0,'','','','','','','','',0,'2025-12-23','drarchit'),(5270,0,0,4190,6401,'2025-12-16',0,'','','','','','','','',0,'2025-12-26','darshan'),(5271,0,0,4200,6420,'2025-12-16',0,'','','','','','','','',0,'2025-12-22','drarchit'),(5272,0,0,245,6437,'2025-12-16',0,'','','','','','','','',0,'','drjayant'),(5273,0,0,4188,6398,'2025-12-16',0,'','','','','','','','',0,'2025-12-26','darshan'),(5274,0,0,2241,6423,'2025-12-16',0,'','','','','','','','',0,'','drarchit'),(5275,0,0,4206,6438,'2025-12-16',0,'','','','','','','','',0,'2025-12-22','drjayant'),(5276,0,0,3694,6425,'2025-12-16',0,'','','','','','','','',0,'2025-12-23','drarchit'),(5277,0,0,2914,6432,'2025-12-16',0,'','','','','','','','',0,'2026-01-05','darshan'),(5278,0,0,4204,6431,'2025-12-16',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5279,0,0,4209,6442,'2025-12-16',0,'','','','','','','','',0,'','drjayant'),(5280,0,0,4201,6424,'2025-12-16',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5281,0,0,3599,6439,'2025-12-16',0,'','','','','','','','',0,'2026-01-05','darshan'),(5282,0,0,3099,6434,'2025-12-16',0,'','','','','','','','',0,'','drpratapsi'),(5283,0,0,3829,6443,'2025-12-16',0,'','','','','','','','',0,'','drpratapsi'),(5284,0,0,4194,6408,'2025-12-16',0,'','','','','','','','',0,'','drridham'),(5285,0,0,676,6430,'2025-12-16',0,'','','','','','','','',0,'','drarchit'),(5286,0,0,4208,6441,'2025-12-16',0,'','','','','','','','',0,'2026-01-15','darshan'),(5287,0,0,3814,6435,'2025-12-16',0,'','','','','','','','',0,'2026-01-15','drarchit'),(5288,0,0,2992,6436,'2025-12-16',0,'','','','','','','','',0,'2026-01-15','drarchit'),(5289,0,0,4176,6379,'2025-12-16',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5290,0,0,4164,6363,'2025-12-16',0,'','','','','','','','',0,'2026-03-16','drarchit'),(5291,0,0,4192,6405,'2025-12-16',0,'','','','','','','','',0,'2026-01-05','darshan'),(5292,0,0,3957,6446,'2025-12-16',0,'','','','','','','','',0,'','drjayant'),(5293,0,0,4210,6444,'2025-12-16',0,'','','','','','','','',0,'2025-12-22','darshan'),(5294,0,0,2454,6445,'2025-12-16',0,'','','','','','','','',0,'','drarchit'),(5295,0,0,4207,6440,'2025-12-16',0,'','','','','','','','',0,'2025-12-26','darshan'),(5296,0,0,4057,6454,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5297,0,0,3350,6457,'2025-12-17',0,'','','','','','','','',0,'2025-12-27','darshan'),(5298,0,0,1844,6456,'2025-12-17',0,'','','','','','','','',0,'2026-02-16','darshan'),(5299,0,0,3973,6467,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5300,0,0,3525,6470,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5301,0,0,4215,6459,'2025-12-17',0,'','','','','','','','',0,'2026-01-16','darshan'),(5302,0,0,3075,6460,'2025-12-17',0,'','','','','','','','',0,'2026-01-16','darshan'),(5303,0,0,4203,6428,'2025-12-17',0,'','','','','','','','',0,'','drarchit'),(5304,0,0,3205,6458,'2025-12-17',0,'','','','','','','','',0,'2026-01-16','darshan'),(5305,0,0,4222,6474,'2025-12-17',0,'','','','','','','','',0,'','drsagar'),(5306,0,0,4219,6468,'2025-12-17',0,'','','','','','','','',0,'2026-01-16','drjayant'),(5307,0,0,715,6473,'2025-12-17',0,'','','','','','','','',0,'2026-01-26','darshan'),(5308,0,0,541,6471,'2025-12-17',0,'','','','','','','','',0,'2026-02-16','drjayant'),(5309,0,0,4185,6451,'2025-12-17',0,'','','','','','','','',0,'','drarchit'),(5310,0,0,4211,6449,'2025-12-17',0,'','','','','','','','',0,'','drarchit'),(5311,0,0,4223,6477,'2025-12-17',0,'','','','','','','','',0,'','drsagar'),(5312,0,0,2291,6455,'2025-12-17',0,'','','','','','','','',0,'2026-01-26','darshan'),(5313,0,0,3091,6462,'2025-12-17',0,'','','','','','','','',0,'2026-01-16','darshan'),(5314,0,0,479,6478,'2025-12-17',0,'','','','','','','','',0,'','drsagar'),(5315,0,0,4172,6421,'2025-12-17',0,'','','','','','','','',0,'','drarchit'),(5316,0,0,4224,6480,'2025-12-17',0,'','','','','','','','',0,'','drsagar'),(5317,0,0,2853,6465,'2025-12-17',0,'','','','','','','','',0,'2026-01-26','darshan'),(5318,0,0,2531,6479,'2025-12-17',0,'','','','','','','','',0,'2026-03-17','drarchit'),(5319,0,0,2001,6485,'2025-12-17',0,'','','','','','','','',0,'2026-01-26','darshan'),(5320,0,0,2214,6483,'2025-12-17',0,'','','','','','','','',0,'2026-02-16','drarchit'),(5321,0,0,4218,6466,'2025-12-17',0,'','','','','','','','',0,'2025-12-27','darshan'),(5322,0,0,4225,6482,'2025-12-17',0,'','','','','','','','',0,'','drarchit'),(5323,0,0,4228,6487,'2025-12-17',0,'','','','','','','','',0,'2026-03-27','darshan'),(5324,0,0,4230,6489,'2025-12-17',0,'','','','','','','','',0,'','drjayant'),(5325,0,0,4229,6488,'2025-12-17',0,'','','','','','','','',0,'2026-01-16','drjayant'),(5326,0,0,4213,6452,'2025-12-17',0,'','','','','','','','',0,'2025-12-27','darshan'),(5327,0,0,25,6475,'2025-12-17',0,'','','','','','','','',0,'2026-01-26','darshan'),(5328,0,0,4216,6463,'2025-12-17',0,'','','','','','','','',0,'2026-01-16','darshan'),(5329,0,0,4232,6495,'2025-12-17',0,'','','','','','','','',0,'2026-02-16','drarchit'),(5330,0,0,4214,6453,'2025-12-17',0,'','','','','','','','',0,'2025-12-27','darshan'),(5331,0,0,3080,6491,'2025-12-17',0,'','','','','','','','',0,'2026-01-06','darshan'),(5332,0,0,4106,6492,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5333,0,0,4231,6494,'2025-12-17',0,'','','','','','','','',0,'2026-02-11','drarchit'),(5334,0,0,3772,6493,'2025-12-17',0,'','','','','','','','',0,'','darshan'),(5335,0,0,4233,6496,'2025-12-17',0,'','','','','','','','',0,'2026-04-16','darshan'),(5336,0,0,4220,6469,'2025-12-17',0,'','','','','','','','',0,'2025-12-27','darshan'),(5337,0,0,3166,6499,'2025-12-17',0,'','','','','','','','',0,'2026-01-28','darshan'),(5338,0,0,4221,6472,'2025-12-17',0,'','','','','','','','',0,'2025-12-27','darshan'),(5339,0,0,4235,6502,'2025-12-17',0,'','','','','','','','',0,'2026-01-16','darshan'),(5340,0,0,1479,6511,'2025-12-17',0,'','','','','','','','',0,'2026-01-26','darshan'),(5341,0,0,4236,6506,'2025-12-17',0,'','','','','','','','',0,'','darshan'),(5342,0,0,963,6507,'2025-12-17',0,'','','','','','','','',0,'','darshan'),(5343,0,0,1640,6509,'2025-12-17',0,'','','','','','','','',0,'','darshan'),(5344,0,0,326,6512,'2025-12-17',0,'','','','','','','','',0,'','darshan'),(5345,0,0,745,6513,'2025-12-17',0,'','','','','','','','',0,'','darshan'),(5346,0,0,4237,6510,'2025-12-17',0,'','','','','','','','',0,'2025-12-27','darshan'),(5347,0,0,888,6514,'2025-12-17',0,'','','','','','','','',0,'2026-02-16','darshan'),(5348,0,0,3327,6508,'2025-12-17',0,'','','','','','','','',0,'2026-01-06','darshan'),(5349,0,0,2907,6503,'2025-12-17',0,'','','','','','','','',0,'','drsagar'),(5350,0,0,2775,6524,'2025-12-17',0,'','','','','','','','',0,'2026-01-26','darshan'),(5351,0,0,4239,6516,'2025-12-17',0,'','','','','','','','',0,'2026-01-01','drjayant'),(5352,0,0,4250,6532,'2025-12-17',0,'','','','','','','','',0,'2026-03-17','drjayant'),(5353,0,0,4255,6541,'2025-12-17',0,'','','','','','','','',0,'','drsagar'),(5354,0,0,4212,6450,'2025-12-17',0,'','','','','','','','',0,'','drjayant'),(5355,0,0,4241,6519,'2025-12-17',0,'','','','','','','','',0,'2026-03-17','drarchit'),(5356,0,0,3605,6544,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5357,0,0,3305,6548,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5358,0,0,2738,6542,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5359,0,0,3720,6538,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5360,0,0,4253,6536,'2025-12-17',0,'','','','','','','','',0,'2025-12-22','darshan'),(5361,0,0,3704,6535,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5362,0,0,4244,6525,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5363,0,0,3753,6518,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5364,0,0,3378,6501,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5365,0,0,4226,6484,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5366,0,0,3052,6539,'2025-12-17',0,'','','','','','','','',0,'2026-03-17','drarchit'),(5367,0,0,4246,6527,'2025-12-17',0,'','','','','','','','',0,'2026-01-16','darshan'),(5368,0,0,3741,6552,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5369,0,0,4217,6464,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5370,0,0,2732,6529,'2025-12-17',0,'','','','','','','','',0,'2026-01-01','drarchit'),(5371,0,0,1811,6523,'2025-12-17',0,'','','','','','','','',0,'2026-01-16','darshan'),(5372,0,0,2580,6537,'2025-12-17',0,'','','','','','','','',0,'2026-01-26','darshan'),(5373,0,0,4003,6550,'2025-12-17',0,'','','','','','','','',0,'','drjayant'),(5374,0,0,1976,6555,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5375,0,0,696,6554,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5376,0,0,3486,6558,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5377,0,0,280,6504,'2025-12-17',0,'','','','','','','','',0,'','drarchit'),(5378,0,0,3319,6561,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5379,0,0,4248,6530,'2025-12-17',0,'','','','','','','','',0,'2025-12-22','drarchit'),(5380,0,0,2333,6522,'2025-12-17',0,'','','','','','','','',0,'','drpratapsi'),(5381,0,0,4247,6528,'2025-12-17',0,'','','','','','','','',0,'2025-12-27','darshan'),(5382,0,0,3429,6547,'2025-12-17',0,'','','','','','','','',0,'','drarchit'),(5383,0,0,4256,6543,'2025-12-17',0,'','','','','','','','',0,'','drarchit'),(5384,0,0,4243,6521,'2025-12-17',0,'','','','','','','','',0,'2026-01-16','darshan'),(5385,0,0,4251,6533,'2025-12-17',0,'','','','','','','','',0,'2026-04-16','darshan'),(5386,0,0,4249,6531,'2025-12-17',0,'','','','','','','','',0,'2025-12-22','drarchit'),(5387,0,0,4240,6517,'2025-12-17',0,'','','','','','','','',0,'2026-01-16','darshan'),(5388,0,0,4252,6534,'2025-12-17',0,'','','','','','','','',0,'2025-12-24','drarchit'),(5389,0,0,4238,6515,'2025-12-17',0,'','','','','','','','',0,'2026-03-17','drarchit'),(5390,0,0,4257,6545,'2025-12-17',0,'','','','','','','','',0,'2026-01-16','drarchit'),(5391,0,0,4259,6551,'2025-12-17',0,'','','','','','','','',0,'2025-12-22','drarchit'),(5392,0,0,127,6553,'2025-12-17',0,'','','','','','','','',0,'','drarchit'),(5393,0,0,4245,6526,'2025-12-17',0,'','','','','','','','',0,'2025-12-27','darshan'),(5394,0,0,4265,6569,'2025-12-17',0,'','','','','','','','',0,'2025-12-22','drjayant'),(5395,0,0,4261,6559,'2025-12-17',0,'','','','','','','','',0,'2025-12-24','drarchit'),(5396,0,0,4258,6546,'2025-12-17',0,'','','','','','','','',0,'2025-12-22','darshan'),(5397,0,0,3715,6557,'2025-12-17',0,'','','','','','','','',0,'','drsagar'),(5398,0,0,4262,6560,'2025-12-17',0,'','','','','','','','',0,'2026-01-01','drarchit'),(5399,0,0,3143,6570,'2025-12-17',0,'','','','','','','','',0,'','drsagar'),(5400,0,0,1497,6549,'2025-12-17',0,'','','','','','','','',0,'2026-01-01','darshan'),(5401,0,0,4266,6571,'2025-12-17',0,'','','','','','','','',0,'','drjayant'),(5402,0,0,940,6566,'2025-12-17',0,'','','','','','','','',0,'2026-02-16','darshan'),(5403,0,0,2794,6563,'2025-12-17',0,'','','','','','','','',0,'','drarchit'),(5404,0,0,4267,6572,'2025-12-17',0,'','','','','','','','',0,'','drjayant'),(5405,0,0,4263,6564,'2025-12-17',0,'','','','','','','','',0,'2025-12-27','drarchit'),(5406,0,0,4268,6573,'2025-12-17',0,'','','','','','','','',0,'','drarchit'),(5407,0,0,3612,6565,'2025-12-17',0,'','','','','','','','',0,'','drarchit'),(5408,0,0,4264,6567,'2025-12-17',0,'','','','','','','','',0,'2026-03-17','drarchit'),(5409,0,0,3274,6583,'2025-12-18',0,'','','','','','','','',0,'2026-01-07','darshan'),(5410,0,0,4280,6594,'2025-12-18',0,'','','','','','','','',0,'2026-03-18','drarchit'),(5411,0,0,3691,6584,'2025-12-18',0,'','','','','','','','',0,'2026-01-07','darshan'),(5412,0,0,4270,6577,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5413,0,0,4282,6598,'2025-12-18',0,'','','','','','','','',0,'2025-12-29','drarchit'),(5414,0,0,3209,6586,'2025-12-18',0,'','','','','','','','',0,'2026-01-27','darshan'),(5415,0,0,4129,6597,'2025-12-18',0,'','','','','','','','',0,'','drarchit'),(5416,0,0,3679,6596,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5417,0,0,3225,6582,'2025-12-18',0,'','','','','','','','',0,'2026-01-17','darshan'),(5418,0,0,4274,6581,'2025-12-18',0,'','','','','','','','',0,'2025-12-23','drarchit'),(5419,0,0,315,6585,'2025-12-18',0,'','','','','','','','',0,'2026-02-16','darshan'),(5420,0,0,4008,6603,'2025-12-18',0,'','','','','','','','',0,'','drarchit'),(5421,0,0,4007,6604,'2025-12-18',0,'','','','','','','','',0,'','drarchit'),(5422,0,0,4287,6607,'2025-12-18',0,'','','','','','','','',0,'2025-12-25','drarchit'),(5423,0,0,3737,6587,'2025-12-18',0,'','','','','','','','',0,'2025-12-29','darshan'),(5424,0,0,4279,6592,'2025-12-18',0,'','','','','','','','',0,'','drjayant'),(5425,0,0,4278,6591,'2025-12-18',0,'','','','','','','','',0,'2026-03-28','darshan'),(5426,0,0,1373,6593,'2025-12-18',0,'','','','','','','','',0,'2026-02-16','darshan'),(5427,0,0,4288,6609,'2025-12-18',0,'','','','','','','','',0,'2026-02-16','drjayant'),(5428,0,0,4285,6601,'2025-12-18',0,'','','','','','','','',0,'2025-12-29','darshan'),(5429,0,0,1125,6614,'2025-12-18',0,'','','','','','','','',0,'','drsagar'),(5430,0,0,4284,6600,'2025-12-18',0,'','','','','','','','',0,'2025-12-29','darshan'),(5431,0,0,4290,6615,'2025-12-18',0,'','','','','','','','',0,'2026-03-18','drarchit'),(5432,0,0,3079,6608,'2025-12-18',0,'','','','','','','','',0,'2026-01-27','darshan'),(5433,0,0,4291,6616,'2025-12-18',0,'','','','','','','','',0,'2026-03-18','drarchit'),(5434,0,0,3154,6611,'2025-12-18',0,'','','','','','','','',0,'2026-01-27','darshan'),(5435,0,0,3305,6625,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5436,0,0,4272,6579,'2025-12-18',0,'','','','','','','','',0,'','drarchit'),(5437,0,0,2529,6621,'2025-12-18',0,'','','','','','','','',0,'','drsagar'),(5438,0,0,3328,6618,'2025-12-18',0,'','','','','','','','',0,'2026-01-29','darshan'),(5439,0,0,4273,6580,'2025-12-18',0,'','','','','','','','',0,'2026-01-07','darshan'),(5440,0,0,4293,6619,'2025-12-18',0,'','','','','','','','',0,'','drsagar'),(5441,0,0,4297,6628,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5442,0,0,3135,6622,'2025-12-18',0,'','','','','','','','',0,'2026-01-27','darshan'),(5443,0,0,3310,6630,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5444,0,0,4276,6589,'2025-12-18',0,'','','','','','','','',0,'2026-01-07','darshan'),(5445,0,0,4298,6629,'2025-12-18',0,'','','','','','','','',0,'','drjayant'),(5446,0,0,4299,6631,'2025-12-18',0,'','','','','','','','',0,'2026-03-18','drarchit'),(5447,0,0,4032,6624,'2025-12-18',0,'','','','','','','','',0,'2025-12-23','darshan'),(5448,0,0,4301,6633,'2025-12-18',0,'','','','','','','','',0,'','drjayant'),(5449,0,0,4302,6634,'2025-12-18',0,'','','','','','','','',0,'','drjayant'),(5450,0,0,4294,6620,'2025-12-18',0,'','','','','','','','',0,'2025-12-29','darshan'),(5451,0,0,4286,6606,'2025-12-18',0,'','','','','','','','',0,'2025-12-29','darshan'),(5452,0,0,4281,6595,'2025-12-18',0,'','','','','','','','',0,'2026-01-07','darshan'),(5453,0,0,1790,6602,'2025-12-18',0,'','','','','','','','',0,'2026-02-02','darshan'),(5454,0,0,4303,6635,'2025-12-18',0,'','','','','','','','',0,'2026-04-17','darshan'),(5455,0,0,1653,6636,'2025-12-18',0,'','','','','','','','',0,'2026-01-17','darshan'),(5456,0,0,4307,6640,'2025-12-18',0,'','','','','','','','',0,'2026-02-16','darshan'),(5457,0,0,3739,6644,'2025-12-18',0,'','','','','','','','',0,'2026-01-29','darshan'),(5458,0,0,2623,6642,'2025-12-18',0,'','','','','','','','',0,'2026-01-17','darshan'),(5459,0,0,3900,6645,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5460,0,0,3682,6643,'2025-12-18',0,'','','','','','','','',0,'2025-12-23','darshan'),(5461,0,0,4292,6617,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5462,0,0,2589,6648,'2025-12-18',0,'','','','','','','','',0,'2026-02-02','darshan'),(5463,0,0,4064,6651,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5464,0,0,2936,6649,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5465,0,0,4306,6639,'2025-12-18',0,'','','','','','','','',0,'2025-12-29','darshan'),(5466,0,0,3053,6654,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5467,0,0,4311,6653,'2025-12-18',0,'','','','','','','','',0,'2026-02-16','darshan'),(5468,0,0,883,6650,'2025-12-18',0,'','','','','','','','',0,'2026-03-18','darshan'),(5469,0,0,3254,6652,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5470,0,0,2092,6605,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5471,0,0,4305,6638,'2025-12-18',0,'','','','','','','','',0,'','drjayant'),(5472,0,0,1476,6663,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5473,0,0,4317,6662,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5474,0,0,4300,6632,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5475,0,0,4319,6665,'2025-12-18',0,'','','','','','','','',0,'2026-01-17','drjayant'),(5476,0,0,4308,6641,'2025-12-18',0,'','','','','','','','',0,'2026-01-02','darshan'),(5477,0,0,4316,6661,'2025-12-18',0,'','','','','','','','',0,'2025-12-23','drarchit'),(5478,0,0,3498,6672,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5479,0,0,3859,6677,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5480,0,0,3259,6673,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5481,0,0,3854,6684,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5482,0,0,4325,6671,'2025-12-18',0,'','','','','','','','',0,'2026-03-28','drarchit'),(5483,0,0,4277,6627,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5484,0,0,4289,6612,'2025-12-18',0,'','','','','','','','',0,'','drarchit'),(5485,0,0,4271,6578,'2025-12-18',0,'','','','','','','','',0,'','drarchit'),(5486,0,0,4314,6658,'2025-12-18',0,'','','','','','','','',0,'2026-03-09','darshan'),(5487,0,0,4321,6667,'2025-12-18',0,'','','','','','','','',0,'2026-02-16','drjayant'),(5488,0,0,2603,6657,'2025-12-18',0,'','','','','','','','',0,'','drsagar'),(5489,0,0,756,6675,'2025-12-18',0,'','','','','','','','',0,'2026-03-18','drarchit'),(5490,0,0,2919,6685,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5491,0,0,4326,6674,'2025-12-18',0,'','','','','','','','',0,'2026-03-18','drarchit'),(5492,0,0,4322,6668,'2025-12-18',0,'','','','','','','','',0,'2026-01-17','drjayant'),(5493,0,0,2544,6687,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5494,0,0,4323,6669,'2025-12-18',0,'','','','','','','','',0,'','drjayant'),(5495,0,0,2710,6660,'2025-12-18',0,'','','','','','','','',0,'','drsagar'),(5496,0,0,4296,6626,'2025-12-18',0,'','','','','','','','',0,'','drsagar'),(5497,0,0,4312,6655,'2025-12-18',0,'','','','','','','','',0,'','drsagar'),(5498,0,0,2539,6689,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5499,0,0,4327,6676,'2025-12-18',0,'','','','','','','','',0,'2025-12-23','darshan'),(5500,0,0,4329,6679,'2025-12-18',0,'','','','','','','','',0,'2025-12-25','drarchit'),(5501,0,0,4324,6670,'2025-12-18',0,'','','','','','','','',0,'2026-02-16','drjayant'),(5502,0,0,2738,6692,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5503,0,0,4330,6680,'2025-12-18',0,'','','','','','','','',0,'2026-01-02','drarchit'),(5504,0,0,1797,6682,'2025-12-18',0,'','','','','','','','',0,'2026-01-27','darshan'),(5505,0,0,4310,6647,'2025-12-18',0,'','','','','','','','',0,'','drsagar'),(5506,0,0,1301,6691,'2025-12-18',0,'','','','','','','','',0,'2026-01-17','drjayant'),(5507,0,0,4309,6646,'2025-12-18',0,'','','','','','','','',0,'2025-12-29','darshan'),(5508,0,0,2604,6688,'2025-12-18',0,'','','','','','','','',0,'2026-01-07','darshan'),(5509,0,0,3584,6690,'2025-12-18',0,'','','','','','','','',0,'2026-01-07','darshan'),(5510,0,0,825,6686,'2025-12-18',0,'','','','','','','','',0,'2026-03-18','drarchit'),(5511,0,0,4332,6693,'2025-12-18',0,'','','','','','','','',0,'2026-03-18','drarchit'),(5512,0,0,4313,6656,'2025-12-18',0,'','','','','','','','',0,'2026-01-02','darshan'),(5513,0,0,3722,6694,'2025-12-18',0,'','','','','','','','',0,'2026-01-17','drarchit'),(5514,0,0,4335,6698,'2025-12-18',0,'','','','','','','','',0,'2026-03-18','drarchit'),(5515,0,0,4336,6699,'2025-12-18',0,'','','','','','','','',0,'2026-03-18','drarchit'),(5516,0,0,4333,6696,'2025-12-18',0,'','','','','','','','',0,'2025-12-29','darshan'),(5517,0,0,4295,6623,'2025-12-18',0,'','','','','','','','',0,'2026-01-17','drarchit'),(5518,0,0,4315,6659,'2025-12-18',0,'','','','','','','','',0,'2025-12-29','darshan'),(5519,0,0,4337,6701,'2025-12-18',0,'','','','','','','','',0,'','drpratapsi'),(5520,0,0,3116,6681,'2025-12-18',0,'','','','','','','','',0,'2026-01-17','darshan'),(5521,0,0,3980,6702,'2025-12-18',0,'','','','','','','','',0,'','drarchit'),(5522,0,0,2538,6703,'2025-12-18',0,'','','','','','','','',0,'2025-12-23','darshan'),(5523,0,0,4338,6705,'2025-12-18',0,'','','','','','','','',0,'2026-03-18','drarchit'),(5524,0,0,1660,6704,'2025-12-18',0,'','','','','','','','',0,'2025-12-29','darshan'),(5525,0,0,1752,6710,'2025-12-19',0,'','','','','','','','',0,'2026-02-17','darshan'),(5526,0,0,1751,2229,'2025-12-19',0,'','','','','','','','',0,'2026-02-17','darshan'),(5527,0,0,3773,6715,'2025-12-19',0,'','','','','','','','',0,'2026-01-30','darshan'),(5528,0,0,2718,6720,'2025-12-19',0,'','','','','','','','',0,'2026-02-17','darshan'),(5529,0,0,4342,6717,'2025-12-19',0,'','','','','','','','',0,'2026-03-19','drarchit'),(5530,0,0,3880,6728,'2025-12-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(5531,0,0,4350,6734,'2025-12-19',0,'','','','','','','','',0,'','drpratapsi'),(5532,0,0,4200,6731,'2025-12-19',0,'','','','','','','','',0,'','drarchit'),(5533,0,0,2650,6709,'2025-12-19',0,'','','','','','','','',0,'2026-01-28','darshan'),(5534,0,0,313,6726,'2025-12-19',0,'','','','','','','','',0,'2026-03-19','drarchit'),(5535,0,0,3969,6738,'2025-12-19',0,'','','','','','','','',0,'','drsagar'),(5536,0,0,4321,6667,'2025-12-19',0,'','','','','','','','',0,'2026-02-16','drjayant'),(5537,0,0,3136,6716,'2025-12-19',0,'','','','','','','','',0,'2026-01-28','darshan'),(5538,0,0,4323,6669,'2025-12-19',0,'','','','','','','','',0,'','drjayant'),(5539,0,0,4322,6668,'2025-12-19',0,'','','','','','','','',0,'2026-01-17','drjayant'),(5540,0,0,4344,6719,'2025-12-19',0,'','','','','','','','',0,'2025-12-26','drarchit'),(5541,0,0,3628,6747,'2025-12-19',0,'','','','','','','','',0,'2025-12-26','drarchit'),(5542,0,0,4346,6722,'2025-12-19',0,'','','','','','','','',0,'','drjayant'),(5543,0,0,4348,6727,'2025-12-19',0,'','','','','','','','',0,'','drjayant'),(5544,0,0,4358,6750,'2025-12-19',0,'','','','','','','','',0,'2026-02-17','drarchit'),(5545,0,0,4357,6749,'2025-12-19',0,'','','','','','','','',0,'2026-03-19','drarchit'),(5546,0,0,2936,6752,'2025-12-19',0,'','','','','','','','',0,'','drpratapsi'),(5547,0,0,4354,6742,'2025-12-19',0,'','','','','','','','',0,'2026-02-17','drjayant'),(5548,0,0,4351,6736,'2025-12-19',0,'','','','','','','','',0,'2026-06-17','drarchit'),(5549,0,0,9,6744,'2025-12-19',0,'','','','','','','','',0,'2026-02-17','drjayant'),(5550,0,0,4359,6754,'2025-12-19',0,'','','','','','','','',0,'','drpratapsi'),(5551,0,0,3174,6741,'2025-12-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(5552,0,0,1022,6723,'2025-12-19',0,'','','','','','','','',0,'2026-02-17','darshan'),(5553,0,0,4362,6759,'2025-12-19',0,'','','','','','','','',0,'2026-06-17','drarchit'),(5554,0,0,1021,6724,'2025-12-19',0,'','','','','','','','',0,'2026-02-17','darshan'),(5555,0,0,4363,6760,'2025-12-19',0,'','','','','','','','',0,'2026-03-19','drarchit'),(5556,0,0,1994,6729,'2025-12-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(5557,0,0,4360,6756,'2025-12-19',0,'','','','','','','','',0,'','drsagar'),(5558,0,0,4364,6762,'2025-12-19',0,'','','','','','','','',0,'2026-06-17','drarchit'),(5559,0,0,4365,6763,'2025-12-19',0,'','','','','','','','',0,'2026-03-19','drarchit'),(5560,0,0,2171,6733,'2025-12-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(5561,0,0,1037,6751,'2025-12-19',0,'','','','','','','','',0,'2026-02-17','darshan'),(5562,0,0,1852,6732,'2025-12-19',0,'','','','','','','','',0,'2026-02-02','darshan'),(5563,0,0,773,6764,'2025-12-19',0,'','','','','','','','',0,'','drarchit'),(5564,0,0,4339,6708,'2025-12-19',0,'','','','','','','','',0,'','drjayant'),(5565,0,0,2721,6768,'2025-12-19',0,'','','','','','','','',0,'2025-12-26','drarchit'),(5566,0,0,4353,6740,'2025-12-19',0,'','','','','','','','',0,'2026-04-18','darshan'),(5567,0,0,4366,6765,'2025-12-19',0,'','','','','','','','',0,'2025-12-29','darshan'),(5568,0,0,3673,6771,'2025-12-19',0,'','','','','','','','',0,'','drsagar'),(5569,0,0,4345,6721,'2025-12-19',0,'','','','','','','','',0,'2026-01-03','darshan'),(5570,0,0,1935,6735,'2025-12-19',0,'','','','','','','','',0,'2026-02-17','darshan'),(5571,0,0,4355,6743,'2025-12-19',0,'','','','','','','','',0,'2026-02-17','darshan'),(5572,0,0,893,6761,'2025-12-19',0,'','','','','','','','',0,'2026-03-19','drarchit'),(5573,0,0,4341,6714,'2025-12-19',0,'','','','','','','','',0,'2026-01-03','darshan'),(5574,0,0,4373,6775,'2025-12-19',0,'','','','','','','','',0,'2025-12-24','drjayant'),(5575,0,0,2564,6748,'2025-12-19',0,'','','','','','','','',0,'2026-02-02','darshan'),(5576,0,0,4352,6739,'2025-12-19',0,'','','','','','','','',0,'2025-12-26','drarchit'),(5577,0,0,4349,6730,'2025-12-19',0,'','','','','','','','',0,'2026-01-08','darshan'),(5578,0,0,4368,6767,'2025-12-19',0,'','','','','','','','',0,'2026-01-08','darshan'),(5579,0,0,2744,6753,'2025-12-19',0,'','','','','','','','',0,'2026-02-07','darshan'),(5580,0,0,2830,6755,'2025-12-19',0,'','','','','','','','',0,'2026-01-08','darshan'),(5581,0,0,4361,6757,'2025-12-19',0,'','','','','','','','',0,'2025-12-29','darshan'),(5582,0,0,4372,6774,'2025-12-19',0,'','','','','','','','',0,'2025-12-24','drarchit'),(5583,0,0,4343,6718,'2025-12-19',0,'','','','','','','','',0,'2025-12-29','darshan'),(5584,0,0,2178,6758,'2025-12-19',0,'','','','','','','','',0,'2026-02-17','darshan'),(5585,0,0,4369,6770,'2025-12-19',0,'','','','','','','','',0,'','darshan'),(5586,0,0,4356,6745,'2025-12-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(5587,0,0,3648,6746,'2025-12-19',0,'','','','','','','','',0,'2025-12-29','darshan'),(5588,0,0,2577,6776,'2025-12-19',0,'','','','','','','','',0,'2026-01-28','darshan'),(5589,0,0,4371,6773,'2025-12-19',0,'','','','','','','','',0,'2026-01-08','darshan'),(5590,0,0,1277,6778,'2025-12-19',0,'','','','','','','','',0,'2026-01-28','darshan'),(5591,0,0,4375,6782,'2025-12-19',0,'','','','','','','','',0,'','darshan'),(5592,0,0,865,6786,'2025-12-19',0,'','','','','','','','',0,'2025-12-29','darshan'),(5593,0,0,2558,6779,'2025-12-19',0,'','','','','','','','',0,'2026-02-17','darshan'),(5594,0,0,966,6784,'2025-12-19',0,'','','','','','','','',0,'','darshan'),(5595,0,0,2082,6789,'2025-12-19',0,'','','','','','','','',0,'','darshan'),(5596,0,0,2627,6792,'2025-12-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(5597,0,0,3770,6796,'2025-12-19',0,'','','','','','','','',0,'2026-01-08','darshan'),(5598,0,0,4382,6802,'2025-12-19',0,'','','','','','','','',0,'2025-12-29','darshan'),(5599,0,0,2664,6791,'2025-12-19',0,'','','','','','','','',0,'','darshan'),(5600,0,0,3813,6799,'2025-12-19',0,'','','','','','','','',0,'2025-12-29','darshan'),(5601,0,0,3812,6788,'2025-12-19',0,'','','','','','','','',0,'2026-01-30','darshan'),(5602,0,0,449,6800,'2025-12-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(5603,0,0,3789,6790,'2025-12-19',0,'','','','','','','','',0,'2025-12-29','darshan'),(5604,0,0,4328,6678,'2025-12-19',0,'','','','','','','','',0,'','drarchit'),(5605,0,0,4160,6777,'2025-12-19',0,'','','','','','','','',0,'','drarchit'),(5606,0,0,4384,6806,'2025-12-19',0,'','','','','','','','',0,'2026-03-19','drarchit'),(5607,0,0,4378,6793,'2025-12-19',0,'','','','','','','','',0,'2025-12-29','darshan'),(5608,0,0,3776,6812,'2025-12-19',0,'','','','','','','','',0,'2025-12-29','darshan'),(5609,0,0,2656,6805,'2025-12-19',0,'','','','','','','','',0,'2026-01-30','darshan'),(5610,0,0,4388,6814,'2025-12-19',0,'','','','','','','','',0,'2025-12-22','drjayant'),(5611,0,0,4380,6795,'2025-12-19',0,'','','','','','','','',0,'2026-03-19','drarchit'),(5612,0,0,242,6821,'2025-12-19',0,'','','','','','','','',0,'2026-03-30','drjayant'),(5613,0,0,2684,6811,'2025-12-19',0,'','','','','','','','',0,'2026-01-19','drarchit'),(5614,0,0,4256,6543,'2025-12-19',0,'','','','','','','','',0,'','drarchit'),(5615,0,0,3476,6822,'2025-12-19',0,'','','','','','','','',0,'','drarchit'),(5616,0,0,4377,6787,'2025-12-19',0,'','','','','','','','',0,'2026-01-08','darshan'),(5617,0,0,1765,6797,'2025-12-19',0,'','','','','','','','',0,'2026-02-17','darshan'),(5618,0,0,4389,6823,'2025-12-19',0,'','','','','','','','',0,'2026-03-19','drarchit'),(5619,0,0,4390,6824,'2025-12-19',0,'','','','','','','','',0,'','drsagar'),(5620,0,0,4065,6826,'2025-12-19',0,'','','','','','','','',0,'','drsagar'),(5621,0,0,4391,6825,'2025-12-19',0,'','','','','','','','',0,'2026-03-30','drarchit'),(5622,0,0,4376,6783,'2025-12-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(5623,0,0,4392,6833,'2025-12-19',0,'','','','','','','','',0,'2026-03-19','drarchit'),(5624,0,0,4393,6834,'2025-12-19',0,'','','','','','','','',0,'2026-03-30','drarchit'),(5625,0,0,4374,6781,'2025-12-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(5626,0,0,3848,6828,'2025-12-19',0,'','','','','','','','',0,'2026-01-08','darshan'),(5627,0,0,3980,6831,'2025-12-19',0,'','','','','','','','',0,'','drarchit'),(5628,0,0,4394,6836,'2025-12-19',0,'','','','','','','','',0,'2025-12-24','drarchit'),(5629,0,0,4397,6840,'2025-12-19',0,'','','','','','','','',0,'2026-01-19','drarchit'),(5630,0,0,4331,6683,'2025-12-19',0,'','','','','','','','',0,'','drarchit'),(5631,0,0,3908,6813,'2025-12-19',0,'','','','','','','','',0,'2025-12-24','darshan'),(5632,0,0,4385,6807,'2025-12-19',0,'','','','','','','','',0,'2025-12-29','darshan'),(5633,0,0,3181,6816,'2025-12-19',0,'','','','','','','','',0,'2025-12-24','darshan'),(5634,0,0,3188,6832,'2025-12-19',0,'','','','','','','','',0,'2026-01-19','darshan'),(5635,0,0,4387,6809,'2025-12-19',0,'','','','','','','','',0,'2026-01-08','darshan'),(5636,0,0,4383,6804,'2025-12-19',0,'','','','','','','','',0,'2025-12-29','darshan'),(5637,0,0,3870,6842,'2025-12-19',0,'','','','','','','','',0,'','darshan'),(5638,0,0,4396,6838,'2025-12-19',0,'','','','','','','','',0,'2025-12-29','darshan'),(5639,0,0,4117,6265,'2025-12-19',0,'','','','','','','','',0,'2026-01-14','darshan'),(5640,0,0,2393,6801,'2025-12-20',0,'','','','','','','','',0,'','drarchit'),(5641,0,0,4404,6855,'2025-12-20',0,'','','','','','','','',0,'2026-01-19','drarchit'),(5642,0,0,4402,6853,'2025-12-20',0,'','','','','','','','',0,'2025-12-25','drjayant'),(5643,0,0,4406,6858,'2025-12-20',0,'','','','','','','','',0,'2026-03-20','drarchit'),(5644,0,0,4405,6856,'2025-12-20',0,'','','','','','','','',0,'2026-03-20','drjayant'),(5645,0,0,4407,6861,'2025-12-20',0,'','','','','','','','',0,'2025-12-25','drarchit'),(5646,0,0,4401,6852,'2025-12-20',0,'','','','','','','','',0,'','drsagar'),(5647,0,0,4047,6851,'2025-12-20',0,'','','','','','','','',0,'2025-12-25','drarchit'),(5648,0,0,4399,6847,'2025-12-20',0,'','','','','','','','',0,'','drsagar'),(5649,0,0,251,6862,'2025-12-20',0,'','','','','','','','',0,'2026-03-20','drarchit'),(5650,0,0,280,6857,'2025-12-20',0,'','','','','','','','',0,'2025-12-30','drarchit'),(5651,0,0,4400,6850,'2025-12-20',0,'','','','','','','','',0,'','drjayant'),(5652,0,0,4403,6854,'2025-12-20',0,'','','','','','','','',0,'','drsagar'),(5653,0,0,4410,6865,'2025-12-20',0,'','','','','','','','',0,'2026-01-19','drarchit'),(5654,0,0,4413,6870,'2025-12-20',0,'','','','','','','','',0,'2025-12-25','drarchit'),(5655,0,0,3263,6867,'2025-12-20',0,'','','','','','','','',0,'2025-12-30','drarchit'),(5656,0,0,2929,6866,'2025-12-20',0,'','','','','','','','',0,'2026-01-05','drarchit'),(5657,0,0,4412,6869,'2025-12-20',0,'','','','','','','','',0,'2025-12-30','drarchit'),(5658,0,0,4409,6864,'2025-12-20',0,'','','','','','','','',0,'','drsagar'),(5659,0,0,4408,6863,'2025-12-20',0,'','','','','','','','',0,'2026-03-20','drarchit'),(5660,0,0,4252,6859,'2025-12-20',0,'','','','','','','','',0,'','drarchit'),(5661,0,0,4398,6845,'2025-12-20',0,'','','','','','','','',0,'','drarchit'),(5662,0,0,2680,6846,'2025-12-20',0,'','','','','','','','',0,'','drarchit'),(5663,0,0,4415,6872,'2025-12-20',0,'','','','','','','','',0,'2025-12-25','drarchit'),(5664,0,0,4417,6874,'2025-12-20',0,'','','','','','','','',0,'2026-02-18','drjayant'),(5665,0,0,4414,6871,'2025-12-20',0,'','','','','','','','',0,'2025-12-25','drarchit'),(5666,0,0,4419,6876,'2025-12-20',0,'','','','','','','','',0,'2026-03-30','drarchit'),(5667,0,0,4421,6879,'2025-12-20',0,'','','','','','','','',0,'2026-03-20','drarchit'),(5668,0,0,2659,6877,'2025-12-20',0,'','','','','','','','',0,'2026-01-19','drarchit'),(5669,0,0,4416,6873,'2025-12-20',0,'','','','','','','','',0,'','drsagar'),(5670,0,0,4439,6914,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5671,0,0,4445,6926,'2025-12-22',0,'','','','','','','','',0,'2025-12-29','drarchit'),(5672,0,0,3302,6915,'2025-12-22',0,'','','','','','','','',0,'2026-01-21','darshan'),(5673,0,0,4438,6912,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5674,0,0,4454,6941,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','drarchit'),(5675,0,0,4452,6937,'2025-12-22',0,'','','','','','','','',0,'2026-03-23','drarchit'),(5676,0,0,2119,6932,'2025-12-22',0,'','','','','','','','',0,'2026-02-20','darshan'),(5677,0,0,4435,6908,'2025-12-22',0,'','','','','','','','',0,'','drsagar'),(5678,0,0,3140,6944,'2025-12-22',0,'','','','','','','','',0,'','drjayant'),(5679,0,0,4449,6930,'2025-12-22',0,'','','','','','','','',0,'2026-02-20','drjayant'),(5680,0,0,1288,6906,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5681,0,0,2133,6938,'2025-12-22',0,'','','','','','','','',0,'2026-02-20','darshan'),(5682,0,0,4448,6929,'2025-12-22',0,'','','','','','','','',0,'','drjayant'),(5683,0,0,4447,6928,'2025-12-22',0,'','','','','','','','',0,'2025-12-29','drarchit'),(5684,0,0,2041,6921,'2025-12-22',0,'','','','','','','','',0,'2026-02-05','darshan'),(5685,0,0,3975,6931,'2025-12-22',0,'','','','','','','','',0,'','drarchit'),(5686,0,0,4446,6927,'2025-12-22',0,'','','','','','','','',0,'2026-04-01','drarchit'),(5687,0,0,2245,6956,'2025-12-22',0,'','','','','','','','',0,'','drsagar'),(5688,0,0,208,6957,'2025-12-22',0,'','','','','','','','',0,'2026-02-20','darshan'),(5689,0,0,3891,6948,'2025-12-22',0,'','','','','','','','',0,'2026-01-12','darshan'),(5690,0,0,4465,6960,'2025-12-22',0,'','','','','','','','',0,'2026-02-20','drarchit'),(5691,0,0,4433,6902,'2025-12-22',0,'','','','','','','','',0,'2025-12-27','drjayant'),(5692,0,0,4467,6963,'2025-12-22',0,'','','','','','','','',0,'2026-01-12','drjayant'),(5693,0,0,3928,6942,'2025-12-22',0,'','','','','','','','',0,'2026-01-12','darshan'),(5694,0,0,4455,6943,'2025-12-22',0,'','','','','','','','',0,'','drjayant'),(5695,0,0,3803,6916,'2025-12-22',0,'','','','','','','','',0,'2026-02-02','darshan'),(5696,0,0,3697,6964,'2025-12-22',0,'','','','','','','','',0,'2026-01-21','drarchit'),(5697,0,0,4419,6903,'2025-12-22',0,'','','','','','','','',0,'','drarchit'),(5698,0,0,4456,6946,'2025-12-22',0,'','','','','','','','',0,'','darshan'),(5699,0,0,3228,6947,'2025-12-22',0,'','','','','','','','',0,'2026-01-21','darshan'),(5700,0,0,4472,6971,'2025-12-22',0,'','','','','','','','',0,'2026-03-23','drarchit'),(5701,0,0,4470,6968,'2025-12-22',0,'','','','','','','','',0,'','drarchit'),(5702,0,0,2880,6965,'2025-12-22',0,'','','','','','','','',0,'2026-01-21','darshan'),(5703,0,0,4457,6949,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5704,0,0,4458,6950,'2025-12-22',0,'','','','','','','','',0,'2025-12-29','darshan'),(5705,0,0,4469,6967,'2025-12-22',0,'','','','','','','','',0,'','drsagar'),(5706,0,0,4334,6907,'2025-12-22',0,'','','','','','','','',0,'','drridham'),(5707,0,0,3819,6975,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5708,0,0,4441,6919,'2025-12-22',0,'','','','','','','','',0,'','drridham'),(5709,0,0,4025,6936,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5710,0,0,2994,6951,'2025-12-22',0,'','','','','','','','',0,'','drridham'),(5711,0,0,4088,6945,'2025-12-22',0,'','','','','','','','',0,'2025-12-27','drarchit'),(5712,0,0,4460,6953,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5713,0,0,4120,6940,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5714,0,0,4461,6954,'2025-12-22',0,'','','','','','','','',0,'2026-06-20','darshan'),(5715,0,0,4463,6958,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5716,0,0,4440,6918,'2025-12-22',0,'','','','','','','','',0,'2026-01-21','darshan'),(5717,0,0,4480,6982,'2025-12-22',0,'','','','','','','','',0,'','darshan'),(5718,0,0,4450,6933,'2025-12-22',0,'','','','','','','','',0,'','drjayant'),(5719,0,0,4442,6920,'2025-12-22',0,'','','','','','','','',0,'2026-01-12','darshan'),(5720,0,0,4451,6934,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5721,0,0,4464,6959,'2025-12-22',0,'','','','','','','','',0,'2026-01-21','darshan'),(5722,0,0,4475,6976,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5723,0,0,4444,6925,'2025-12-22',0,'','','','','','','','',0,'2026-01-12','darshan'),(5724,0,0,4119,6935,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5725,0,0,3305,6911,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5726,0,0,4483,6985,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5727,0,0,4462,6955,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5728,0,0,3695,6924,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5729,0,0,4476,6977,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5730,0,0,4471,6970,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5731,0,0,4443,6923,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5732,0,0,4485,6987,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5733,0,0,4459,6952,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5734,0,0,4478,6980,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5735,0,0,4473,6972,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5736,0,0,4466,6962,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5737,0,0,4474,6973,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5738,0,0,4468,6966,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5739,0,0,4482,6984,'2025-12-22',0,'','','','','','','','',0,'','darshan'),(5740,0,0,4477,6979,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5741,0,0,1969,6992,'2025-12-22',0,'','','','','','','','',0,'2026-02-20','darshan'),(5742,0,0,80,6993,'2025-12-22',0,'','','','','','','','',0,'2026-02-20','darshan'),(5743,0,0,3992,6994,'2025-12-22',0,'','','','','','','','',0,'2026-02-02','darshan'),(5744,0,0,3962,6990,'2025-12-22',0,'','','','','','','','',0,'2026-02-02','darshan'),(5745,0,0,1929,6997,'2025-12-22',0,'','','','','','','','',0,'2026-02-20','darshan'),(5746,0,0,3995,7000,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5747,0,0,2302,7008,'2025-12-22',0,'','','','','','','','',0,'2026-02-20','darshan'),(5748,0,0,4490,7007,'2025-12-22',0,'','','','','','','','',0,'2026-02-02','darshan'),(5749,0,0,4229,6998,'2025-12-22',0,'','','','','','','','',0,'','drjayant'),(5750,0,0,1841,6999,'2025-12-22',0,'','','','','','','','',0,'2025-12-27','darshan'),(5751,0,0,4016,7012,'2025-12-22',0,'','','','','','','','',0,'2026-01-21','drjayant'),(5752,0,0,4491,7009,'2025-12-22',0,'','','','','','','','',0,'2026-03-23','darshan'),(5753,0,0,1916,7016,'2025-12-22',0,'','','','','','','','',0,'2026-01-31','darshan'),(5754,0,0,4436,6909,'2025-12-22',0,'','','','','','','','',0,'2026-03-23','drarchit'),(5755,0,0,4493,7015,'2025-12-22',0,'','','','','','','','',0,'2026-01-21','drjayant'),(5756,0,0,4488,7005,'2025-12-22',0,'','','','','','','','',0,'2025-12-27','drarchit'),(5757,0,0,4479,6981,'2025-12-22',0,'','','','','','','','',0,'2025-12-29','drarchit'),(5758,0,0,3720,7026,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5759,0,0,4497,7024,'2025-12-22',0,'','','','','','','','',0,'','drsagar'),(5760,0,0,2367,7021,'2025-12-22',0,'','','','','','','','',0,'','drsagar'),(5761,0,0,4078,7014,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5762,0,0,4065,7028,'2025-12-22',0,'','','','','','','','',0,'','drsagar'),(5763,0,0,2827,7013,'2025-12-22',0,'','','','','','','','',0,'','drarchit'),(5764,0,0,4498,7027,'2025-12-22',0,'','','','','','','','',0,'','drjayant'),(5765,0,0,3732,7030,'2025-12-22',0,'','','','','','','','',0,'2026-02-02','darshan'),(5766,0,0,3993,7033,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5767,0,0,4437,6910,'2025-12-22',0,'','','','','','','','',0,'2025-12-27','drarchit'),(5768,0,0,4502,7037,'2025-12-22',0,'','','','','','','','',0,'2025-12-27','drjayant'),(5769,0,0,4492,7011,'2025-12-22',0,'','','','','','','','',0,'','drridham'),(5770,0,0,4487,7002,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5771,0,0,3315,7031,'2025-12-22',0,'','','','','','','','',0,'2026-01-21','drarchit'),(5772,0,0,4500,7034,'2025-12-22',0,'','','','','','','','',0,'2026-01-21','drarchit'),(5773,0,0,2175,7019,'2025-12-22',0,'','','','','','','','',0,'','drridham'),(5774,0,0,4503,7039,'2025-12-22',0,'','','','','','','','',0,'','drridham'),(5775,0,0,3954,7042,'2025-12-22',0,'','','','','','','','',0,'2026-02-02','darshan'),(5776,0,0,4453,6939,'2025-12-22',0,'','','','','','','','',0,'2026-03-23','drarchit'),(5777,0,0,4489,7006,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5778,0,0,2764,7044,'2025-12-22',0,'','','','','','','','',0,'2026-01-21','drarchit'),(5779,0,0,4504,7040,'2025-12-22',0,'','','','','','','','',0,'2026-01-21','darshan'),(5780,0,0,4508,7047,'2025-12-22',0,'','','','','','','','',0,'2026-02-20','drarchit'),(5781,0,0,4495,7020,'2025-12-22',0,'','','','','','','','',0,'2026-01-12','darshan'),(5782,0,0,4510,7051,'2025-12-22',0,'','','','','','','','',0,'2026-04-01','drarchit'),(5783,0,0,1399,7058,'2025-12-22',0,'','','','','','','','',0,'','drjayant'),(5784,0,0,4000,7057,'2025-12-22',0,'','','','','','','','',0,'','drsagar'),(5785,0,0,3433,7052,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5786,0,0,4511,7053,'2025-12-22',0,'','','','','','','','',0,'2026-03-23','drarchit'),(5787,0,0,3730,7023,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5788,0,0,3486,7056,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5789,0,0,4512,7055,'2025-12-22',0,'','','','','','','','',0,'2026-03-23','drarchit'),(5790,0,0,4254,7038,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5791,0,0,4507,7046,'2025-12-22',0,'','','','','','','','',0,'2026-01-21','darshan'),(5792,0,0,4509,7049,'2025-12-22',0,'','','','','','','','',0,'2026-01-01','darshan'),(5793,0,0,4505,7041,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5794,0,0,4106,7050,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5795,0,0,4300,7048,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5796,0,0,4420,6878,'2025-12-22',0,'','','','','','','','',0,'','drarchit'),(5797,0,0,3605,7054,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5798,0,0,4516,7062,'2025-12-22',0,'','','','','','','','',0,'2026-01-21','drarchit'),(5799,0,0,3319,7043,'2025-12-22',0,'','','','','','','','',0,'','drpratapsi'),(5800,0,0,4518,7068,'2025-12-23',0,'','','','','','','','',0,'','drridham'),(5801,0,0,4523,7076,'2025-12-23',0,'','','','','','','','',0,'','drridham'),(5802,0,0,4522,7075,'2025-12-23',0,'','','','','','','','',0,'','drridham'),(5803,0,0,4277,7071,'2025-12-23',0,'','','','','','','','',0,'','drpratapsi'),(5804,0,0,653,7074,'2025-12-23',0,'','','','','','','','',0,'2026-02-21','darshan'),(5805,0,0,1458,7077,'2025-12-23',0,'','','','','','','','',0,'2026-02-21','darshan'),(5806,0,0,157,7078,'2025-12-23',0,'','','','','','','','',0,'2026-01-22','darshan'),(5807,0,0,4527,7085,'2025-12-23',0,'','','','','','','','',0,'2026-03-23','drjayant'),(5808,0,0,4305,7069,'2025-12-23',0,'','','','','','','','',0,'','drjayant'),(5809,0,0,4031,7080,'2025-12-23',0,'','','','','','','','',0,'2026-02-03','darshan'),(5810,0,0,4531,7089,'2025-12-23',0,'','','','','','','','',0,'2026-03-23','drarchit'),(5811,0,0,2529,7093,'2025-12-23',0,'','','','','','','','',0,'','drsagar'),(5812,0,0,4537,7097,'2025-12-23',0,'','','','','','','','',0,'2026-03-23','drarchit'),(5813,0,0,4536,7096,'2025-12-23',0,'','','','','','','','',0,'','drjayant'),(5814,0,0,4535,7095,'2025-12-23',0,'','','','','','','','',0,'','drjayant'),(5815,0,0,4539,7099,'2025-12-23',0,'','','','','','','','',0,'2026-01-02','drarchit'),(5816,0,0,4482,6984,'2025-12-23',0,'','','','','','','','',0,'','darshan'),(5817,0,0,4530,7088,'2025-12-23',0,'','','','','','','','',0,'2026-03-23','drarchit'),(5818,0,0,4541,7102,'2025-12-23',0,'','','','','','','','',0,'2026-03-23','drarchit'),(5819,0,0,4526,7082,'2025-12-23',0,'','','','','','','','',0,'2025-12-29','darshan'),(5820,0,0,4542,7105,'2025-12-23',0,'','','','','','','','',0,'2026-03-23','drarchit'),(5821,0,0,927,7083,'2025-12-23',0,'','','','','','','','',0,'2026-02-21','darshan'),(5822,0,0,4519,7070,'2025-12-23',0,'','','','','','','','',0,'2025-12-29','drarchit'),(5823,0,0,4545,7109,'2025-12-23',0,'','','','','','','','',0,'2026-02-17','drarchit'),(5824,0,0,3265,7116,'2025-12-23',0,'','','','','','','','',0,'','drsagar'),(5825,0,0,3462,7104,'2025-12-23',0,'','','','','','','','',0,'2026-01-07','darshan'),(5826,0,0,4524,7079,'2025-12-23',0,'','','','','','','','',0,'2026-03-23','drarchit'),(5827,0,0,4528,7086,'2025-12-23',0,'','','','','','','','',0,'2026-01-02','darshan'),(5828,0,0,4552,7120,'2025-12-23',0,'','','','','','','','',0,'2026-03-23','drarchit'),(5829,0,0,441,7092,'2025-12-23',0,'','','','','','','','',0,'','drridham'),(5830,0,0,1432,7107,'2025-12-23',0,'','','','','','','','',0,'','drridham'),(5831,0,0,3101,7103,'2025-12-23',0,'','','','','','','','',0,'2026-02-02','darshan'),(5832,0,0,4340,7101,'2025-12-23',0,'','','','','','','','',0,'','drpratapsi'),(5833,0,0,4546,7110,'2025-12-23',0,'','','','','','','','',0,'','drjayant'),(5834,0,0,4543,7106,'2025-12-23',0,'','','','','','','','',0,'','drpratapsi'),(5835,0,0,3305,7122,'2025-12-23',0,'','','','','','','','',0,'','drpratapsi'),(5836,0,0,4185,7125,'2025-12-23',0,'','','','','','','','',0,'2025-12-29','drarchit'),(5837,0,0,592,7113,'2025-12-23',0,'','','','','','','','',0,'2026-02-02','darshan'),(5838,0,0,4547,7111,'2025-12-23',0,'','','','','','','','',0,'','drpratapsi'),(5839,0,0,4548,7114,'2025-12-23',0,'','','','','','','','',0,'2026-02-21','darshan'),(5840,0,0,4317,7112,'2025-12-23',0,'','','','','','','','',0,'','drpratapsi'),(5841,0,0,4521,7073,'2025-12-23',0,'','','','','','','','',0,'2026-01-22','darshan'),(5842,0,0,4529,7087,'2025-12-23',0,'','','','','','','','',0,'','drpratapsi'),(5843,0,0,4544,7108,'2025-12-23',0,'','','','','','','','',0,'','drarchit'),(5844,0,0,4021,7127,'2025-12-23',0,'','','','','','','','',0,'2026-02-21','drarchit'),(5845,0,0,4533,7091,'2025-12-23',0,'','','','','','','','',0,'2026-01-22','darshan'),(5846,0,0,4259,7118,'2025-12-23',0,'','','','','','','','',0,'2025-12-30','drarchit'),(5847,0,0,4532,7090,'2025-12-23',0,'','','','','','','','',0,'2026-01-22','darshan'),(5848,0,0,4540,7100,'2025-12-23',0,'','','','','','','','',0,'2026-01-02','darshan'),(5849,0,0,4534,7094,'2025-12-23',0,'','','','','','','','',0,'2026-01-22','darshan'),(5850,0,0,4525,7081,'2025-12-23',0,'','','','','','','','',0,'2026-01-12','darshan'),(5851,0,0,4538,7098,'2025-12-23',0,'','','','','','','','',0,'2026-01-02','darshan'),(5852,0,0,4549,7115,'2025-12-23',0,'','','','','','','','',0,'2026-01-02','darshan'),(5853,0,0,51,7128,'2025-12-23',0,'','','','','','','','',0,'2026-03-09','darshan'),(5854,0,0,4556,7129,'2025-12-23',0,'','','','','','','','',0,'2026-01-22','darshan'),(5855,0,0,4557,7130,'2025-12-23',0,'','','','','','','','',0,'','darshan'),(5856,0,0,4551,7119,'2025-12-23',0,'','','','','','','','',0,'2026-01-07','darshan'),(5857,0,0,4555,7124,'2025-12-23',0,'','','','','','','','',0,'2026-01-12','darshan'),(5858,0,0,4558,7131,'2025-12-23',0,'','','','','','','','',0,'2026-04-22','darshan'),(5859,0,0,2004,7136,'2025-12-23',0,'','','','','','','','',0,'2026-02-21','darshan'),(5860,0,0,637,7138,'2025-12-23',0,'','','','','','','','',0,'2026-02-21','darshan'),(5861,0,0,750,7133,'2025-12-23',0,'','','','','','','','',0,'2026-02-21','darshan'),(5862,0,0,2448,7132,'2025-12-23',0,'','','','','','','','',0,'2026-01-12','darshan');
/*!40000 ALTER TABLE `symptoms_diagnosis` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tappering_dose_master`
--

DROP TABLE IF EXISTS `tappering_dose_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tappering_dose_master` (
  `company_id` int(11) NOT NULL,
  `t_dose_code` int(11) NOT NULL,
  `t_dose_desc` varchar(15) NOT NULL,
  `t_dose_type` varchar(10) NOT NULL COMMENT 'dose type tapering or weekly',
  `t_days_in_week` tinyint(4) NOT NULL COMMENT 'store no. days in a week ',
  `t_dose_srno` int(11) NOT NULL AUTO_INCREMENT COMMENT 'tappering dose serial number',
  `t_dose_std` varchar(20) NOT NULL COMMENT 'tappering standerd dose',
  `t_dose_non_std_guj` varchar(80) NOT NULL COMMENT 'tappering none standerd dose in gujarati',
  `t_dose_non_std_hin` varchar(80) NOT NULL COMMENT 'non standard dose in hindi',
  `t_dose_non_std_eng` varchar(80) NOT NULL COMMENT 'non standard dose in english',
  `t_frequency` varchar(4) NOT NULL COMMENT 'frequency form general master master code MFREQ',
  `t_no_of_frequency` int(11) NOT NULL,
  `t_active_flag` char(1) NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`t_dose_code`,`t_dose_srno`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tappering_dose_master`
--

LOCK TABLES `tappering_dose_master` WRITE;
/*!40000 ALTER TABLE `tappering_dose_master` DISABLE KEYS */;
INSERT INTO `tappering_dose_master` VALUES (0,1,'TP10','Tapering',0,3,'1-0-0','','','','Dy',3,'Y','thims','2018-10-23 18:03:43','thims','2018-10-23 18:03:43'),(0,5,'T3D','Tapering',0,1,'1-1-1','','','','Dy',3,'Y','thims','2018-10-25 17:55:33','thims','2018-10-25 17:55:33'),(0,2,'TP20','Tapering',0,2,'1-0-1','','','','Dy',3,'Y','thims','2018-10-20 15:22:12','thims','2018-10-20 15:22:12'),(0,2,'TP20','Tapering',0,1,'1-1-1','','','','Dy',3,'Y','thims','2018-10-20 15:22:12','thims','2018-10-20 15:22:12'),(0,1,'TP10','Tapering',0,2,'1-0-1','','','','Dy',2,'Y','thims','2018-10-23 18:03:43','thims','2018-10-23 18:03:43'),(0,1,'TP10','Tapering',0,1,'1-1-1','','','','Dy',1,'Y','thims','2018-10-23 18:03:43','thims','2018-10-23 18:03:43'),(0,2,'TP20','Tapering',0,3,'1-0-0','','','','Dy',5,'Y','thims','2018-10-20 15:22:12','thims','2018-10-20 15:22:12'),(0,3,'3DW','Weekly',3,1,'1-0-1','','','','Wk',3,'Y','thims','2018-10-25 12:44:38','thims','2018-10-25 12:44:38'),(0,4,'2DW','Weekly',2,1,'1-0-0','','','','Wk',3,'Y','thims','2018-10-20 15:35:58','thims','2018-10-20 15:35:58'),(0,5,'T3D','Tapering',0,2,'1-0-1','','','','Dy',3,'Y','thims','2018-10-25 17:55:33','thims','2018-10-25 17:55:33'),(0,5,'T3D','Tapering',0,3,'1-0-0','','','','Dy',3,'Y','thims','2018-10-25 17:55:33','thims','2018-10-25 17:55:33'),(0,6,'T2D','Tapering',0,1,'1-1-1','','','','Dy',2,'Y','thims','2018-10-25 17:56:28','thims','2018-10-25 17:56:28'),(0,6,'T2D','Tapering',0,2,'1-0-1','','','','Dy',2,'Y','thims','2018-10-25 17:56:28','thims','2018-10-25 17:56:28'),(0,6,'T2D','Tapering',0,3,'1-0-0','','','','Dy',2,'Y','thims','2018-10-25 17:56:28','thims','2018-10-25 17:56:28');
/*!40000 ALTER TABLE `tappering_dose_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `temp_ipd_opd_monthly_summary`
--

DROP TABLE IF EXISTS `temp_ipd_opd_monthly_summary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temp_ipd_opd_monthly_summary` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `date` date NOT NULL,
  `opbill_amt` int(11) NOT NULL,
  `opbill_dis` float NOT NULL,
  `opbillamt_final` float NOT NULL,
  `ipbill_amt` int(11) NOT NULL,
  `ipbill_dis` float NOT NULL,
  `ipbillamt_final` float NOT NULL,
  `advance_cash` int(11) NOT NULL,
  `advance_bank` int(11) NOT NULL,
  `refund_cash` int(11) NOT NULL,
  `refund_bank` int(11) NOT NULL,
  `bill_cash` int(11) NOT NULL,
  `bill_bank` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_ipd_opd_monthly_summary`
--

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

--
-- Table structure for table `temp_ledger_report`
--

DROP TABLE IF EXISTS `temp_ledger_report`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temp_ledger_report` (
  `DocOrServiceGrpName` varchar(50) NOT NULL,
  `ServiceDesc` varchar(35) NOT NULL,
  `Amount` float(9,2) NOT NULL,
  `Discount` float(9,2) NOT NULL,
  `NetAmount` float(9,2) NOT NULL,
  `ProviderCode` int(11) NOT NULL,
  `ReceiptDate` date NOT NULL,
  `ServiceCode` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_ledger_report`
--

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

--
-- Table structure for table `temp_medicine_id`
--

DROP TABLE IF EXISTS `temp_medicine_id`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temp_medicine_id` (
  `mapping_id` int(10) unsigned NOT NULL COMMENT 'Mapping product_master.product_id'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_medicine_id`
--

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

--
-- Table structure for table `temp_nonmoving_products`
--

DROP TABLE IF EXISTS `temp_nonmoving_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temp_nonmoving_products` (
  `product_id` int(11) NOT NULL,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `product_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `puom` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
  `suom` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
  `current_stock` float NOT NULL DEFAULT '0',
  `rate` float(9,2) NOT NULL DEFAULT '0.00',
  `amount` float(9,2) NOT NULL DEFAULT '0.00',
  `last_purchase_date` date DEFAULT NULL,
  `last_purchase_voucher_no` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `last_purchase_duration` int(11) DEFAULT NULL,
  `last_sale_date` date DEFAULT NULL,
  `last_sale_voucher_no` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `last_sale_duration` int(11) DEFAULT NULL,
  `product_requested_by` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_nonmoving_products`
--

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

--
-- Table structure for table `temp_pha_bills_redu_receipt_details`
--

DROP TABLE IF EXISTS `temp_pha_bills_redu_receipt_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temp_pha_bills_redu_receipt_details` (
  `rcpt_fyear` smallint(6) NOT NULL,
  `rcpt_type` char(6) NOT NULL,
  `rcpt_no` int(11) NOT NULL,
  `amount_received` float NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_pha_bills_redu_receipt_details`
--

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

--
-- Table structure for table `temp_product_batch_rate`
--

DROP TABLE IF EXISTS `temp_product_batch_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temp_product_batch_rate` (
  `product_id` int(11) NOT NULL,
  `batch_no` varchar(15) DEFAULT NULL,
  `price_per_unit` float(9,2) NOT NULL DEFAULT '0.00'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_product_batch_rate`
--

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

--
-- Table structure for table `temp_product_unit_price`
--

DROP TABLE IF EXISTS `temp_product_unit_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temp_product_unit_price` (
  `trn_fyear` int(11) NOT NULL,
  `trn_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `batch_no` varchar(15) DEFAULT NULL,
  `unit_price_with_gst` float NOT NULL,
  `unit_price_without_gst` float NOT NULL,
  `landed_cost` float NOT NULL,
  `total_quantity` float NOT NULL,
  `gst_percentage` float NOT NULL,
  `unit_price_with_gst_calc` float NOT NULL,
  `unit_price_without_gst_calc` float NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_product_unit_price`
--

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

--
-- Table structure for table `temp_receipt_transaction`
--

DROP TABLE IF EXISTS `temp_receipt_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temp_receipt_transaction` (
  `fyear` varchar(4) NOT NULL,
  `receipt_cat` varchar(1) NOT NULL,
  `ipd_opd` varchar(1) NOT NULL,
  `receipt_no` int(11) NOT NULL,
  `receipt_sr` int(11) NOT NULL,
  `service_date` date NOT NULL,
  `service_cd` varchar(8) NOT NULL,
  `service_qty` float(9,2) NOT NULL,
  `service_disc` int(11) NOT NULL,
  `service_amt` int(11) NOT NULL,
  `finalAdjustment` float(9,2) NOT NULL,
  `netServiceAmt` float(9,2) NOT NULL,
  `percent_share_doctor` float(5,2) NOT NULL,
  `percent_share_hospital` float(5,2) NOT NULL,
  `amount_share_doctor` float(10,2) NOT NULL,
  `amount_share_hospital` float(10,2) NOT NULL,
  `service_note` varchar(10) NOT NULL,
  `primaryDoctor` int(11) NOT NULL,
  `provider_code` int(11) NOT NULL,
  `eligiblity_for_primary_doctor` char(1) NOT NULL,
  `final_provider_code` int(11) NOT NULL,
  `final_provider_type` enum('P','S') NOT NULL,
  `room_cat` varchar(11) NOT NULL,
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`fyear`,`receipt_cat`,`ipd_opd`,`receipt_no`,`receipt_sr`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_receipt_transaction`
--

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

--
-- Table structure for table `temp_stock_correction_debit`
--

DROP TABLE IF EXISTS `temp_stock_correction_debit`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temp_stock_correction_debit` (
  `trn_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `batch_no` varchar(15) DEFAULT NULL,
  `price_per_unit` float(9,2) NOT NULL DEFAULT '0.00',
  `created_date` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_stock_correction_debit`
--

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

--
-- Table structure for table `temp_stock_ledger`
--

DROP TABLE IF EXISTS `temp_stock_ledger`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temp_stock_ledger` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `trn_fyear` smallint(6) NOT NULL COMMENT 'Transaction Financial Year',
  `trn_type` char(6) NOT NULL COMMENT 'Transaction Type P-Purchase I-Issue PR-Purchase Return IR-Issue Return',
  `trn_id` int(11) NOT NULL,
  `trn_sr_no` smallint(6) NOT NULL,
  `trn_date` date DEFAULT NULL COMMENT 'Transaction Date',
  `ledger_type` enum('C','D') NOT NULL,
  `to_store_code` varchar(6) DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL COMMENT 'product_master - product_id',
  `product_name` varchar(100) NOT NULL COMMENT 'Medicine/Item Name',
  `reference_no` varchar(20) DEFAULT ' ' COMMENT 'Stores Purchase Bill No if P or PR trn_type and patient_id or ph_cust_id if I or IR trn type',
  `opening_stock` float DEFAULT '0',
  `opening_rate` float DEFAULT '0' COMMENT 'To store opening rate',
  `opening_price` float DEFAULT '0',
  `batch_no` varchar(40) DEFAULT '-',
  `batch_exp` date DEFAULT NULL COMMENT 'To store batch expiry month and year (it will store date as 1st of that given month)',
  `pur_qty` float DEFAULT '0',
  `pur_rate` float DEFAULT '0',
  `pur_price` float DEFAULT '0',
  `issue_qty` float DEFAULT '0',
  `issue_rate` float DEFAULT '0',
  `issue_price` float DEFAULT '0',
  `created_date` datetime DEFAULT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`trn_fyear`,`trn_type`,`trn_id`,`trn_sr_no`),
  KEY `product_id` (`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_stock_ledger`
--

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

--
-- Table structure for table `temp_stock_ledger_avgrate`
--

DROP TABLE IF EXISTS `temp_stock_ledger_avgrate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temp_stock_ledger_avgrate` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `avg_rate` float NOT NULL DEFAULT '0',
  PRIMARY KEY (`company_id`,`branch_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_stock_ledger_avgrate`
--

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

--
-- Table structure for table `temp_stock_ledger_balance`
--

DROP TABLE IF EXISTS `temp_stock_ledger_balance`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temp_stock_ledger_balance` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `product_id` int(10) unsigned NOT NULL COMMENT 'product_master - product_id',
  `product_name` varchar(100) NOT NULL COMMENT 'Medicine/Item Name',
  `category_abbrev` varchar(10) DEFAULT ' ' COMMENT 'Category abbreviation',
  `category` varchar(10) DEFAULT ' ' COMMENT 'Category abbreviation',
  `suom` varchar(5) DEFAULT ' ' COMMENT 'Stock unit of measure for Product',
  `opening_stock` float DEFAULT '0',
  `opening_rate` float DEFAULT '0' COMMENT 'Opening Rate',
  `opening_price` float DEFAULT '0',
  `total_pur_qty` float NOT NULL DEFAULT '0',
  `total_pur_amt` float NOT NULL DEFAULT '0',
  `total_issue_qty` float NOT NULL DEFAULT '0',
  `total_issue_amt` float NOT NULL DEFAULT '0',
  PRIMARY KEY (`company_id`,`branch_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_stock_ledger_balance`
--

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

--
-- Table structure for table `temp_stock_ledger_summary`
--

DROP TABLE IF EXISTS `temp_stock_ledger_summary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temp_stock_ledger_summary` (
  `summary_id` tinyint(4) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `trn_type` char(6) NOT NULL,
  `ledger_type` enum('C','D') NOT NULL,
  `to_store_code` varchar(6) DEFAULT NULL,
  `display_trn_type` varchar(50) DEFAULT NULL,
  `display_store_name` text,
  `total_pur_qty` float NOT NULL DEFAULT '0',
  `total_pur_amt` float NOT NULL DEFAULT '0',
  `total_issue_qty` float NOT NULL DEFAULT '0',
  `total_issue_amt` float NOT NULL DEFAULT '0',
  PRIMARY KEY (`summary_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_stock_ledger_summary`
--

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

--
-- Table structure for table `temp_stock_rate`
--

DROP TABLE IF EXISTS `temp_stock_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temp_stock_rate` (
  `trn_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `batch_no` varchar(25) DEFAULT NULL,
  `rate` float NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temp_stock_rate`
--

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

--
-- Table structure for table `template`
--

DROP TABLE IF EXISTS `template`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `template` (
  `template_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `template_name` text NOT NULL,
  `template_content` text CHARACTER SET utf8 NOT NULL,
  `template_type` varchar(10) NOT NULL,
  `default_template` enum('Y','N') NOT NULL DEFAULT 'N',
  `service_cd` varchar(8) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`template_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10121 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `template`
--

LOCK TABLES `template` WRITE;
/*!40000 ALTER TABLE `template` DISABLE KEYS */;
INSERT INTO `template` VALUES (1,0,0,'ADMISSION RECORD','<h3 style=\"text-align:center\"><ins><strong>Registration</strong></ins></h3>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"vertical-align:middle; width:20%\">\r\n			<p><span style=\"line-height:1.5\">Name Of Patient:</span></p>\r\n			</td>\r\n			<td style=\"width:30%\">\r\n			<p><span style=\"line-height:1.5\">:&nbsp;<span style=\"font-size:12px\"><span class=\"marker\">Patient Name</span>&nbsp;</span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:middle; width:10%\">\r\n			<p>Patient ID</p>\r\n			</td>\r\n			<td style=\"width:25%\">\r\n			<p>:<span style=\"font-size:12px\">&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:middle; width:20%\">\r\n			<p><span style=\"line-height:1.5\">Age/Sex&nbsp;</span></p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"line-height:1.5\">:&nbsp;<span style=\"font-size:12px\"><span class=\"marker\">Age</span>&nbsp;/&nbsp;<span class=\"marker\">Gender</span>&nbsp;</span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:middle\">\r\n			<p>OP&nbsp;ID</p>\r\n			</td>\r\n			<td>\r\n			<p>:&nbsp;<span style=\"font-size:12px\"><span class=\"marker\">OP ID</span>&nbsp;</span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:middle\">\r\n			<p><span style=\"line-height:1.5\">Marital status</span></p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"line-height:1.5\">:<span style=\"font-size:12px\">&nbsp;<span class=\"marker\">Marital Status</span>&nbsp;</span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:middle\">\r\n			<p>Mail Id</p>\r\n			</td>\r\n			<td>\r\n			<p>:</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"line-height:1.5\">Fathers/Husband Name</span></p>\r\n			</td>\r\n			<td colspan=\"3\" rowspan=\"1\">\r\n			<p><span style=\"line-height:1.5\">:</span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:top; width:20%\">\r\n			<p><span style=\"line-height:1.5\">Address</span></p>\r\n			</td>\r\n			<td colspan=\"5\" style=\"width:20%\">\r\n			<p><span style=\"line-height:1.5\">:&nbsp;<span style=\"font-size:12px\"><span class=\"marker\">Add Line 1</span>,&nbsp;<span class=\"marker\">Add Line 2</span></span>,&nbsp;<span class=\"marker\">City</span>,&nbsp;<span class=\"marker\">Pin</span>&nbsp;&nbsp;</span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"line-height:1.5\">Referral Doctor(If Any)</span></p>\r\n			</td>\r\n			<td colspan=\"6\">\r\n			<p><span style=\"line-height:1.5\"><span style=\"font-size:12px\">:&nbsp;<span class=\"marker\">Referral Doctor</span>&nbsp;</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"line-height:1.5\">Identity card(name with photocopy)</span></p>\r\n			</td>\r\n			<td colspan=\"6\">\r\n			<p><span style=\"line-height:1.5\">:</span></p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<h3 style=\"text-align:center\"><ins><strong>General Consent</strong></ins></h3>\r\n\r\n<p><span style=\"line-height:1.5\">The undersigned patient and/or responsible relative or person here by consent to and authorize <strong>AIMS hospital&rsquo;s </strong>physicians and medical professionals to administer and perform medical examination, routine investigations, medical treatments, out patient procedures, general nursing care, diet and physiotherapy assessment during the patient&rsquo;s care as an out patient, be deemed visible or necessary.</span></p>\r\n\r\n<p><span style=\"line-height:1.5\">The undersigned also consent to the hospital to use of medical information for insurance coverage and contacting him or her by telephone if needed regarding appointments and follow-up needs.</span></p>\r\n\r\n<p><span style=\"line-height:1.5\">Patient/ Relative sign:</span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>(Gujarati consent)</p>\r\n','CONT','N','','Y','thims','0000-00-00 00:00:00','vishal','2020-01-02 11:29:13'),(2,0,0,'HIV Consent','<p style=\"text-align:center\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\"><strong>INFORMED CONSENT TO PERFORM HIV TESTING</strong></span></span></span></span></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\"><strong>My health care provider (Doctor/Nurse) has answered any questions I have about HIV/AIDS. I have been provided information with the following details about HIV testing:</strong></span></span></span></span></p>\r\n\r\n<ul>\r\n	<li style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">HIV is the virus that causes AIDS and can be transmitted through unprotected sex (vaginal, anal, or oral sex) with someone who has HIV; contact with blood as in sharing needles (piercing, tattooing, drug equipment including needles), by HIV-infected pregnant women to their infants during pregnancy or delivery, or while breast feeding.</span></span></span></span></li>\r\n	<li style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">There are treatments for HIV/AIDS that can help an individual stay healthy. </span></span></span></span></li>\r\n	<li style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">Individuals with HIV/AIDS can adopt safe practices to protect uninfected and infected people in their lives from becoming infected or being infected themselves with different strains of HIV.</span></span></span></span></li>\r\n	<li style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">Testing is voluntary and can be done anonymously at a public testing center. </span></span></span></span></li>\r\n	<li style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">The law protects the confidentiality of HIV test results and other related information. </span></span></span></span></li>\r\n	<li style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">The law prohibits discrimination based on an individual&rsquo;s HIV status and services are available to help with such consequences. </span></span></span></span></li>\r\n</ul>\r\n\r\n<p style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:100%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">I agree to be tested for HIV infection. If the results show I have HIV, I agree to additional testing which may occur on the sample I provide today to determine the best treatment for me and to help guide HIV prevention programs. I also agree to future tests to guide my treatment. I understand that I can withdraw my consent for future tests at any time. If I test positive for HIV infection, I understand that my health care provider will talk with me about telling my sex or needle-sharing partners of possible exposure. </span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:100%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">I may revoke my consent orally or in writing at any time. </span></span></span></span></p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td>\r\n			<p style=\"text-align:left\">&nbsp;</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">Name</span></span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">Signature/Left thumb impression</span></span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">Date</span></span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">Time</span></span></span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"width:25%\">\r\n			<p style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">Patient/ Patient Relative</span></span></span></span></p>\r\n			</td>\r\n			<td style=\"width:20%\">\r\n			<p style=\"text-align:left\"><span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"height:50px; width:30%\">\r\n			<p style=\"text-align:left\">&nbsp;</p>\r\n			</td>\r\n			<td style=\"width:12%\">\r\n			<p style=\"text-align:left\">&nbsp;</p>\r\n			</td>\r\n			<td style=\"width:12%\">\r\n			<p style=\"text-align:left\">&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">Doctor/Lab Staff</span></span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"height:50px\">\r\n			<p style=\"text-align:left\">&nbsp;</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\">&nbsp;</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\">&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p style=\"text-align:left\"><br />\r\n&nbsp;</p>\r\n','CONT','N',' ','Y','thims','2018-11-21 18:51:51','thims','2018-11-26 11:25:38'),(3,0,0,'Surgery Consent','<p style=\"text-align:center\"><span style=\"font-size:12pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><strong>CONSENT FOR SURGERY</strong></span></span></span></p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"vertical-align:top; width:20%\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Patient&rsquo;s Name</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:30%\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:10%\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Patient ID</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:25%\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Age</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">Age</span>&nbsp;</span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">IP ID</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">IP ID</span>&nbsp;</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Sex</span></span></span></p>\r\n			</td>\r\n			<td colspan=\"3\" rowspan=\"1\" style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">Gender</span>&nbsp;</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Date of Admission</span></span></span></p>\r\n			</td>\r\n			<td colspan=\"3\" rowspan=\"1\" style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">Admit Date</span>&nbsp;</span></span></p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">I (Patient or Guardian), hereby authorize&nbsp;</span><span class=\"marker\">Consultant Doctor</span>&nbsp;<span style=\"font-family:Arial,serif\">and his team to perform (surgery/procedure) </span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">I was explained that the exact procedure may change according to the operative findings and I accept that such a change can happen according to the surgical need. I understand the reason for the procedure is: </span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span class=\"marker-blue\">TextArea</span>&nbsp;</span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><strong>ALTERNATIVES </strong>to performing this procedure include: </span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span class=\"marker-blue\">TextArea</span>&nbsp;</span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><strong>RISKS:</strong> This authorization is given with the understanding that any surgery or procedure involves some risks and hazards The more common risks include infection, bleeding (including severe loss of blood requiring a blood transfusion), nerve injury, blood clots. These are not all the possible risks associated with this procedure, but these risks can be serious and possibly fatal.</span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Some significant and substantial risks of this particular surgery or procedure include:</span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span class=\"marker-blue\">TextArea</span>&nbsp;</span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">I understand that no guarantee or assurance has been made as to the results of the procedure and it may not cure the condition. I have read and fully understand this consent form. I understand I should not sign this form if all items, including my questions, have not been explained or answered to my satisfaction, or if I do not understand any of the terms or words contained in this consent form. I understand that I can withdraw this consent to the surgery/procedure at any time before the beginning of the surgery/procedure.</span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><strong>SURGEON DECLARATION</strong>: I have explained to the patient/patient&rsquo;s representative the surgery / procedure and the risks, benefits and alternatives (including the probable or likely consequences if no treatment is pursued).I have answered all of the patient&rsquo;s questions and to the best of my knowledge, I believe the patient has been adequately informed</span></span></span></p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Particular</span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Name</span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Signature/Thumb Impression</span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Date</span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Time</span></span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:top; width:20%\">\r\n			<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Patient/Relative </span></span></span></p>\r\n\r\n			<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Name</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:20%\">\r\n			<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span class=\"marker\">Patient Name</span>&nbsp;</span></span></p>\r\n			</td>\r\n			<td style=\"height:50px; width:30%\">\r\n			<p style=\"text-align:left\">&nbsp;</p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:75px\">\r\n			<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span class=\"marker\">Date</span>&nbsp;</span></span></p>\r\n			</td>\r\n			<td style=\"width:75px\">\r\n			<p style=\"text-align:left\">&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:top\">\r\n			<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Surgeon</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span class=\"marker\">Consultant Doctor</span>&nbsp;</span></span></p>\r\n			</td>\r\n			<td style=\"height:50px\">\r\n			<p style=\"text-align:left\">&nbsp;</p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p style=\"text-align:left\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span class=\"marker\">Date</span>&nbsp;</span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\">&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p style=\"text-align:left\"><br />\r\n&nbsp;</p>\r\n','CONT','N',' ','Y','thims','2018-11-22 17:40:03','thims','2018-11-28 15:25:02'),(4,0,0,'USG Consent','<p style=\"text-align:center\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\"><strong>ARAVALLI INSTITUTE OF MEDICAL SCIENCE</strong></span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\"><strong>FORM G </strong></span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\"><strong>CONSENT FOR ULTRASONOGRAPHY</strong></span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif; font-size:medium\">(For invasivetechniques)</span></span></p>\r\n\r\n<p style=\"text-align:justify\"><br />\r\n&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">I, </span></span></span></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\"> wife/daughter of </span></span></span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;<span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\"> Age </span></span></span></span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\"> years residing at </span></span></span></span>&nbsp;<span class=\"marker\">Add Line 1</span>,</span>&nbsp;<span class=\"marker\">Add Line 2</span>&nbsp;<span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">hereby state that I have been explained fully the probable side effects and after effects of the pre-natal diagnostic procedures. </span></span></span></span></span></p>\r\n\r\n<ul>\r\n	<li style=\"text-align:justify\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">I wish to undergo the pre-implantation<strong>/</strong>pre-natal diagnostic technique/test/proceduresin my own interest to findout the possibility of any abnormality(i.e. Disease/deformity/disorder) in the child I am carrying. </span></span></span></li>\r\n	<li style=\"text-align:justify\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">I undertake not to terminate the pregnancy if the pre-natal procedure/technique/test conducted show the absence of disease/deformity/disorder. </span></span></span></li>\r\n	<li style=\"text-align:justify\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">I understand that the sex of the foetus will not be disclosed to me. </span></span></span></li>\r\n	<li style=\"text-align:justify\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">I understand that breach of this undertaking will make me liable to penalty as prescribed in the Pre-natal Diagnostic Techniques (Regulation and Prevention of Misuse) Act, 1994 (57 of 1994) and rules framed thereunder. </span></span></span></li>\r\n</ul>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Date&amp; Time Signature of the pregnant woman. </span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Place </span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><br />\r\n&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><br />\r\n&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><br />\r\n&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">I have explained the contents of the above to the patient and her companion (Name </span></span></span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;<span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\"> Address </span></span></span></span>&nbsp;<span class=\"marker\">Add Line 1</span>,&nbsp;<span class=\"marker\">Add Line 2</span>&nbsp;<span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\"> Relationship</span></span></span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;)<span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">&nbsp;in a language she/ they understand. </span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:right\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Name, Signature and/Registration number of </span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:right\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Gynaecologist/Medical Geneticist/Radiologist/Paediatrician</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:right\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Date&amp; time:</span></span></span></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</span></p>\r\n','CONT','N',' ','Y','thims','2018-11-26 11:36:57','thims','2018-11-26 16:45:06'),(5,0,0,'BT Consent','<p style=\"text-align:center\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:large\"><strong>BLOOD TRANSFUSION CONSENT FORM</strong></span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">It has been explained to me by</span></span></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;<span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\"> that I need or may need a transfusion of blood and/or one of its products during treatment, for the following reason(s):</span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\">&nbsp;<span class=\"marker-blue\">TextArea</span>&nbsp;</span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">I understand in general what a blood transfusion is, the procedures that will be used, and the benefits of receiving a transfusion and possible risks. These risks include hepatitis, allergic reactions, fever, transfusion-related acute lung injury, hemolysis and volume overload. Other risks include exposure to the AIDS virus but that risk is very remote. I understand that these risks exist despite the fact that the blood has been carefully tested. No assurances or guarantees have been made to me about the outcome of the transfusion or the fitness or quality of the blood to be used.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">By signing below, I state that I am 18 years of age or older, or otherwise authorized to consent. I have read or have had explained to me the contents of this form. I have had a chance to ask questions and all of my questions have been answered. </span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\"><strong>Doctor Declaration </strong></span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">In case of Emergency / Life Threatening circumstances informed consent is not obtained.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Because of a life threatening / emergent medical condition I have not provided the patient with information sufficient to be considered informed consent and I have proceeded with enduring blood / blood products to be administered in sufficient quantity to after, improve or reverse a life threatening / emergent medical condition.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Particular</span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Name</span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Signature/Thumb Impression</span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Date</span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Time</span></span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:top; width:20%\">\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Patient/Relative </span></span></span></p>\r\n\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Name</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:20%\">\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span class=\"marker\">Patient Name</span>&nbsp;</span></p>\r\n			</td>\r\n			<td style=\"height:50px; width:30%\">\r\n			<p style=\"text-align:left\">&nbsp;</p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:75px\">\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span class=\"marker\">Date</span>&nbsp;</span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:75px\">\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span class=\"marker-blue\">Textbox</span>&nbsp;</span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:top\">\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Surgeon</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"line-height:15px\"><span class=\"marker\">Consultant Doctor</span>&nbsp;</span></p>\r\n			</td>\r\n			<td style=\"height:50px\">\r\n			<p style=\"text-align:left\">&nbsp;</p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span class=\"marker\">Date</span>&nbsp;</span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span class=\"marker-blue\">Textbox</span>&nbsp;</span></p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n','CONT','N',' ','Y','thims','2018-11-26 11:43:55','thims','2018-11-26 15:29:18'),(6,0,0,'Anesthesia Consent','<p style=\"text-align:center\"><span style=\"font-size:11pt\"><span style=\"line-height:100%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:large\"><strong>INFORMED CONSENT FOR ANESTHESIA</strong></span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-size:small\">I, </span></span></span>&nbsp;<span class=\"marker\">Patient Name</span><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-size:small\">, the Patient, or (representative of patient</span></span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;<span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-size:small\">), </span><span style=\"font-size:small\">have (please tick the correct option above and below)</span></span></span></p>\r\n\r\n<ul>\r\n	<li style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-size:small\">read </span></span></span></li>\r\n	<li style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-size:small\">been explained this consent form in</span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;<span style=\"font-size:11pt\"><span style=\"font-size:small\">(ENGLISH) which I fully understand, </span><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">that I would require &#39; Anesthesiology Services&#39; for getting the said operation/procedure performed.</span></span></span></span></li>\r\n</ul>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:20px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">It has been explained to me that all forms of anesthesia involve some risks, and though rare, anesthesia related complications like drug reactions, infections, bleeding, blood clots, loss of sensation, loss of limb function, paralysis, stroke, brain damage, heart attack and death can occur. I understand that these risks apply to all forms of anesthesia and that additional risks specific for the type of anesthesia as applicable in my case and marked below have been explained to me as well. I understand that the type(s) of anesthesia service checked below will be used for my procedure and that the anesthetic technique to be used is determined by many factors including my physical condition, the type of procedure my doctor is to perform, anesthesiologist&#39;s judgement to best suit requirements of the procedure and accommodating my preference to the extent feasible. It has been explained to me that sometimes, an anesthesia technique particularly involving the use of local anesthetics, with or without sedation, may fail to produce desired effect and therefore may have to be supplemented with another technique including administering general anesthesia</span></span></span></span></p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td colspan=\"1\" rowspan=\"3\" style=\"width:20%\">\r\n			<p style=\"text-align:left\">&bull;<span style=\"font-size:12px\"><span style=\"line-height:15px\"><strong>General</strong>&nbsp;<strong>Anesthesia</strong></span></span></p>\r\n			</td>\r\n			<td style=\"width:20px\">\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:15px\">Technique</span></span></p>\r\n			</td>\r\n			<td style=\"width:60%\">\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">Drug injected into the bloodstream, </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">breathed into the lungs, o</span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">r&nbsp;by other routes.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:15px\">Expected result</span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:15px\">Total unconscious state,&nbsp;</span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">possible placement of a </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">tube into the windpipe.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:15px\">Major Risks</span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:15px\">Mouth or throat pain, hoarseness, </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">injury to mouth or teeth, </span></span></p>\r\n\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:15px\">awareness&nbsp;under anesthesia, </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">injury to blood vessels, aspiration, </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">pneumonia,</span></span></p>\r\n\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:15px\">Convulsions, Pneumothorax.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td colspan=\"1\" rowspan=\"3\">\r\n			<p>&bull;<span style=\"font-size:12px\"><span style=\"line-height:15px\"><strong>Spinal or&nbsp;Epidural Analgesia</strong></span></span></p>\r\n\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\"><strong>&nbsp; &nbsp; &nbsp; </strong></span></span>&bull;<span style=\"font-size:12px\"><span style=\"line-height:15px\"><strong>With sedation</strong></span></span></p>\r\n\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\"><strong>&nbsp; &nbsp; &nbsp; </strong></span></span>&bull;<span style=\"font-size:12px\"><span style=\"line-height:15px\"><strong>Without&nbsp;sedation</strong></span></span></p>\r\n			</td>\r\n			<td rowspan=\"1\"><span style=\"font-size:12px\"><span style=\"line-height:15px\">Technique</span></span></td>\r\n			<td>\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">Drug injected through a </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">needle/catheter placed </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">either directly in </span></span></p>\r\n\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">the </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">spinal canal or immediately&nbsp;</span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">outside the spinal canal or both.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:15px\">Expected result</span></span></p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">Temporary numbness and </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">loss of sensation </span></span></p>\r\n\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">and/or&nbsp;</span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">inability to move the </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">affected part of the body.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:15px\">Major risks</span></span></p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">Headache, backache, </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">buzzing in the ears, convulsions, </span></span></p>\r\n\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">infection, persistent weakness </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">and/or suppression </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">of </span></span></p>\r\n\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">normal breathing, </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">numbness, &#39;total spinal&#39;, </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">injury to blood vessels,</span></span></p>\r\n\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">residual pain, Paralysis.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td colspan=\"1\" rowspan=\"3\">\r\n			<p>&bull;<span style=\"font-size:12px\"><span style=\"line-height:15px\"><strong>Nerve Block</strong></span></span></p>\r\n\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\"><strong>&nbsp; &nbsp; &nbsp; </strong></span></span>&bull;<span style=\"font-size:12px\"><span style=\"line-height:15px\"><strong>With sedation</strong></span></span></p>\r\n\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\"><strong>&nbsp; &nbsp; &nbsp; </strong></span></span>&bull;<span style=\"font-size:12px\"><span style=\"line-height:15px\"><strong>Without&nbsp;sedation</strong></span></span></p>\r\n			</td>\r\n			<td><span style=\"font-size:12px\"><span style=\"line-height:15px\">Technique</span></span></td>\r\n			<td>\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">Drug injected near </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">nerves causing </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">loss of sensation </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">to the area of the </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">operation.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">Expected result</span></span></p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">Temporary loss of feeling and/or </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">movement of a specific limb or area</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">Major risks</span></span></p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">Convulsions, persistent numbness, </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">residual pain, </span></span></p>\r\n\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">infection, </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">injury to blood vessels, </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">Allergic Reaction.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td colspan=\"1\" rowspan=\"3\">\r\n			<p>&bull;<strong><span style=\"font-size:12px\"><span style=\"line-height:15px\">Intravenous Regional Anesthesia</span></span></strong></p>\r\n\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\"><strong>&nbsp; &nbsp; &nbsp; </strong></span></span>&bull;<span style=\"font-size:12px\"><span style=\"line-height:15px\"><strong>With sedation</strong></span></span></p>\r\n\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\"><strong>&nbsp; &nbsp; &nbsp; </strong></span></span>&bull;<span style=\"font-size:12px\"><span style=\"line-height:15px\"><strong>Without&nbsp;sedation</strong></span></span></p>\r\n			</td>\r\n			<td><span style=\"font-size:12px\"><span style=\"line-height:15px\">Technique</span></span></td>\r\n			<td>\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">Drug injected </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">into veins of arm </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">or leg while using a tourniquet.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td><span style=\"font-size:12px\"><span style=\"line-height:15px\">Expected Result</span></span></td>\r\n			<td>\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">Temporary loss of </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">sensation and/or movement of a limb.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td><span style=\"font-size:12px\"><span style=\"line-height:15px\">Major risks</span></span></td>\r\n			<td>\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">Convulsions, weakness, </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">persistent numbness, residual pain,</span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">infection, </span></span></p>\r\n\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">injury to blood vessels, </span></span><span style=\"font-size:12px\"><span style=\"line-height:15px\">Allergic Reaction.</span></span></p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:100%\"><span style=\"font-size:small\"><strong>Initials of Patient/Patients Representative </strong></span><span style=\"font-size:small\">(only if patient is unable to sign him/herself) ____________________</span></span></span></p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td colspan=\"1\" rowspan=\"3\" style=\"width:20%\">\r\n			<p><span style=\"line-height:15px\">&bull;<span style=\"font-size:12px\"><strong>Monitored&nbsp;Anesthesia </strong></span></span><span style=\"line-height:15px\"><span style=\"font-size:12px\"><strong>Care&nbsp;</strong></span></span></p>\r\n\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\"><strong>&nbsp;with sedation</strong></span></span></p>\r\n			</td>\r\n			<td style=\"width:20px\">\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Technique</span></span></p>\r\n			</td>\r\n			<td style=\"width:60%\">\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Drug injected into the bloodstream, breathed into the lungs, or</span></span></p>\r\n\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">by other routes producing a semiconscious state.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Expected result</span></span></p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Reduced anxiety and pain, partial or total amnesia.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Major Risks</span></span></p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">An unconscious state, depressed breathing </span></span><span style=\"line-height:15px\"><span style=\"font-size:12px\">(requiring Ventilation), injury to </span></span></p>\r\n\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">blood vessels.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td colspan=\"1\" rowspan=\"3\">\r\n			<p><span style=\"line-height:15px\">&bull;<span style=\"font-size:12px\"><strong>Monitored&nbsp;Anesthesia </strong></span></span><span style=\"line-height:15px\"><span style=\"font-size:12px\"><strong>Care&nbsp;</strong></span></span></p>\r\n\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\"><strong>&nbsp;without sedation</strong></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Technique</span></span></p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">None</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Expected result</span></span></p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Measurement of vital signs, availability of anesthesia provider</span></span></p>\r\n\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">for interventions as deemed fit.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Major Risks</span></span></p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Awareness, anxiety and/or procedure related discomfort.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td colspan=\"1\" rowspan=\"3\">\r\n			<p><span style=\"line-height:15px\">&bull;<span style=\"font-size:12px\"><strong>Rectal/Vaginal/</strong></span></span><span style=\"line-height:15px\"><span style=\"font-size:12px\"><strong>Dermal&nbsp;</strong></span></span></p>\r\n\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\"><strong>&nbsp;Medications</strong></span></span></p>\r\n			</td>\r\n			<td><span style=\"line-height:15px\"><span style=\"font-size:12px\">Technique</span></span></td>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Medicine introduced through Rectum/Vagina/Skin to produce loss</span></span></p>\r\n\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">of sensation.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Expected result</span></span></p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Producing loss of sedation in patients who can&#39;t take oral/IV/IM</span></span></p>\r\n\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">medication or in whom injections are to be avoided.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Major Risks</span></span></p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Discomfort</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td colspan=\"1\" rowspan=\"3\">\r\n			<p><span style=\"line-height:15px\">&bull;<span style=\"font-size:12px\"><strong>Vascular&nbsp;Cannulation</strong></span></span></p>\r\n			</td>\r\n			<td><span style=\"line-height:15px\"><span style=\"font-size:12px\">Technique</span></span></td>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Cannulation of artery or large veins.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Expected result</span></span></p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Measurement of invasive arterial pressures/fill up pressures.</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Major Risks</span></span></p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12px\">Hematoma, bleeding, ischemic related complications.</span></span></p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:20px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">BY SIGNING THIS FORM, I GIVE MY FULL, FREE, VOLUNTARY CONSENT WITHOUT ANY RESERVATION TO </span></span></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;<span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">(name of doctor administering Anesthesia) or his/her associates, for administering anesthesia to MYSELF or MY PATIENT</span></span></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\"> (name of patient), being fully aware of the nature, risks and complications.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td>\r\n			<p style=\"text-align:left\">&nbsp;</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-family:Arial,serif\">Signature / Thumb Impression*</span></span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-family:Arial,serif\">Name</span></span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-family:Arial,serif\">Date</span></span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-family:Arial,serif\">Time</span></span></span></span></p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"width:20%\">\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-family:Arial,serif\">Patient</span></span></span></span></p>\r\n			</td>\r\n			<td style=\"height:50px; width:20%\">\r\n			<p style=\"text-align:left\">&nbsp;</p>\r\n			</td>\r\n			<td style=\"width:40%\">\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\">&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</span></p>\r\n			</td>\r\n			<td style=\"width:10%\">\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\">&nbsp;<span class=\"marker\">Date</span>&nbsp;</span></p>\r\n			</td>\r\n			<td style=\"width:10%\">\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\">&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</span></p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n	<tbody>\r\n		<tr>\r\n			<td rowspan=\"2\">\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-family:Arial,serif\">Surrogate</span></span></span></span></p>\r\n\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-family:Arial,serif\">(if applicable)</span></span></span></span></p>\r\n			</td>\r\n			<td rowspan=\"2\" style=\"height:50px\">\r\n			<p style=\"text-align:left\">&nbsp;</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\">&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</span></p>\r\n\r\n			<p style=\"text-align:left\">&nbsp;</p>\r\n			</td>\r\n			<td rowspan=\"2\">\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\">&nbsp;<span class=\"marker\">Date</span>&nbsp;</span></p>\r\n			</td>\r\n			<td rowspan=\"2\">\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\">&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\">Please write relationship with patient</span></span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-family:Arial,serif\">Witness</span></span></span></span></p>\r\n			</td>\r\n			<td style=\"height:50px\">&nbsp;</td>\r\n			<td><span style=\"font-size:12px\">&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</span></td>\r\n			<td><span style=\"font-size:12px\">&nbsp;<span class=\"marker\">Date</span>&nbsp;</span></td>\r\n			<td><span style=\"font-size:12px\">&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</span></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-family:Arial,serif\">Interpreter </span></span></span></span></p>\r\n\r\n			<p style=\"text-align:left\"><span style=\"font-size:12px\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-family:Arial,serif\">(if applicable)</span></span></span></span></p>\r\n			</td>\r\n			<td style=\"height:50px\">&nbsp;</td>\r\n			<td><span style=\"font-size:12px\">&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</span></td>\r\n			<td><span style=\"font-size:12px\">&nbsp;<span class=\"marker\">Date</span>&nbsp;</span></td>\r\n			<td><span style=\"font-size:12px\">&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</span></td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">I, the undersigned Doctor, have explained the nature, potential risks and complications, expected benefits, expected post-anesthesia recovery, and possible alternatives to the patient/patient representative. I am confident that he / she has understood the information provided in this document.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"width:25%\">\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Consent obtained by: </span></span></span></p>\r\n			</td>\r\n			<td style=\"width:25%\"><span style=\"font-size:12px\"><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</span></span></td>\r\n			<td style=\"width:25%\">\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Signature</span></span></span></p>\r\n			</td>\r\n			<td style=\"height:50px; width:50%\"><span style=\"font-size:12px\">:</span></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td><span style=\"font-size:12px\"><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">Date</span>&nbsp;</span></span></td>\r\n			<td><span style=\"font-size:12px\">Time</span></td>\r\n			<td>\r\n			<p><span style=\"font-size:12px\"><span style=\"line-height:15px\">:&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</span></span></p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">Patient&rsquo;s physical condition at the time of consent:</span></span></span></p>\r\n\r\n<table align=\"left\" border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:192px\">\r\n	<tbody>\r\n		<tr>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\"><strong>ASA</strong></span></span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">1</span></span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">2</span></span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">3</span></span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">4</span></span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">5</span></span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">6</span></span></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">E</span></span></span></span></p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">Does this patient require an <strong>additional&nbsp;</strong></span></span><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">HIGH RISK consent? (</span></span><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\"><em>ASA 3 and above</em>) </span></span></span></span></p>\r\n\r\n<ul>\r\n	<li style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">YES </span></span></span></span></li>\r\n	<li style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">NO</span></span></span></span></li>\r\n</ul>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">Doctor administering Anesthesia: Dr.</span></span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;<span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">Signature:</span></span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</span></p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n','CONT','N',' ','Y','thims','2018-11-26 13:14:39','thims','2018-11-27 15:27:22'),(7,0,0,'High Risk Consent','<p style=\"text-align:center\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:large\"><strong>High Risks Consent</strong></span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">This has been informed to me and my relative that my patient</span></span></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">ward </span></span></span>&nbsp;<span class=\"marker\">Room Category</span>&nbsp;<span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">bed</span></span></span>&nbsp;<span class=\"marker\">Room Type/No</span><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">, Who has been diagnosed/ is a case of</span></span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;<span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">and he requires the following Surgery/ Procedure/ Treatment:</span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\">&nbsp;<span class=\"marker-blue\">TextArea</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">I have been informed that due to his/her disease/ condition/ proposed surgery/ procedure/ treatment, he is at high risk. The reasons of high risks to my patient have been told to me as:</span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\">&nbsp;<span class=\"marker-blue\">TextArea</span>&nbsp;<span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\"> </span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">It has been explained to me that during the surgery/ treatment/ procedure and even after the surgery/ treatment/ procedure, the prognosis is grave/ poor. I understand that my patient may not survive.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">I offer my free consent for any type of treatment &amp; decision to be taken by doctor. In case of Death, I will not hold the Hospital / Doctors or any other hospital staff responsible for the consequences.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:20px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Signature of Relative: </span></span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:20px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Relation: </span></span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:20px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Name of Doctor who has explained the risk: </span></span></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:20px\"><span style=\"font-size:11pt\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Signature: &hellip;&hellip;&hellip;&hellip;&hellip;&hellip;&hellip;&hellip;&hellip;&hellip;&hellip;&hellip;&hellip;&hellip;&hellip;&hellip;.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Witness:</span></span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">1.</span></span></span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">2.</span></span></span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n','CONT','N',' ','Y','thims','2018-11-26 14:53:56','thims','2018-11-26 14:59:08'),(8,0,0,'PSGP Consent','<p style=\"text-align:center\"><strong>CONSENT FOR PARASURGICAL PROCEDURE</strong><br />\r\n&nbsp;</p>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"vertical-align:top; width:20%\">\r\n			<p><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">Patient&rsquo;s Name</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:30%\">\r\n			<p><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:10%\">\r\n			<p><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">Patient ID</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:25%\">\r\n			<p><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">Age</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">Age</span>&nbsp;</span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">IP ID</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">IP ID</span>&nbsp;</span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:small\">Sex</span></span></span></p>\r\n			</td>\r\n			<td colspan=\"3\" rowspan=\"1\" style=\"vertical-align:top\">\r\n			<p><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">Gender</span>&nbsp;</span></p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\">I (Patient or Guardian), hereby authorize</span></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;<span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\">and his team to perform (operation/procedure) </span></span></p>\r\n\r\n<p style=\"text-align:left\"><span class=\"marker-blue\">TextArea</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\">I was explained that the exact procedure may change according to the operative findings and I accept that such a change can happen according to the surgical need. I understand the reason for the procedure is:</span></span></p>\r\n\r\n<p style=\"text-align:left\"><span class=\"marker-blue\">TextArea</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><strong>ALTERNATIVES </strong></span><span style=\"font-family:Arial,serif\">to performing this procedure include: </span></span></p>\r\n\r\n<p style=\"text-align:left\"><span class=\"marker-blue\">TextArea</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><strong>RISKS:</strong></span><span style=\"font-family:Arial,serif\"> This authorization is given with the understanding that any operation or procedure involves some risks and hazards the more common risks include infection, bleeding (including severe loss of blood requiring a blood transfusion), nerve injury, blood clots and heart attack. These are not all the possible risks associated with this procedure, but these risks can be serious and possibly fatal.</span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\">Some significant and substantial risks of this particular operation or procedure include:</span></span></p>\r\n\r\n<p style=\"text-align:left\"><span class=\"marker-blue\">TextArea</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\">I understand that no guarantee or assurance has been made as to the results of the procedure and it may not cure the condition. I have read and fully understand this consent form. I understand I should not sign this form if all items, including my questions, have not been explained or answered to my satisfaction, or if I do not understand any of the terms or words contained in this consent form. I understand that I can withdraw this consent to the operation/procedure at any time before the beginning of the procedure/operation.</span></span></p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<table border=\"1\" cellpadding=\"1\" cellspacing=\"1\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"height:50px\">&nbsp;</td>\r\n			<td>&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"width:60%\">\r\n			<p><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\">Patient /Responsible Party Signature (state relationship)</span></span></p>\r\n			</td>\r\n			<td style=\"width:40%\">\r\n			<p style=\"text-align:center\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\">Witness Signature</span></span></p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\">Date:</span></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:150%\"><span style=\"font-family:Arial,serif\">Time:</span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;<span style=\"line-height:150%\"><span style=\"font-family:Arial,serif\"> </span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\">PHYSICIAN DECLARATION: I have explained to the patient/patient&rsquo;s representative the procedure/ operation and the risks, benefits, recuperation and alternatives (including the probable or likely consequences if no treatment is pursued).I have answered all of the patient&rsquo;s questions and to the best of my knowledge, I believe the patient has been adequately informed.</span></span></p>\r\n\r\n<p style=\"text-align:left\"><br />\r\n&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\">Physician Signature</span></span></p>\r\n','CONT','N',' ','Y','thims','2018-11-26 15:02:42','thims','2018-11-26 15:46:38'),(9,0,0,'Restraint Consent','<p style=\"text-align:center\"><span style=\"font-size:18px\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><strong>ARAVALLI INSTITUTE OF MEDICAL SCIENCE</strong></span></span></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:18px\"><strong>RESTRAINT CONSENT FORM</strong></span></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"vertical-align:top; width:20%\">\r\n			<p><span style=\"font-size:16px\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Patient&rsquo;s Name</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:30%\">\r\n			<p><span style=\"font-size:16px\"><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:10%\">\r\n			<p><span style=\"font-size:16px\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Patient ID</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:25%\">\r\n			<p><span style=\"font-size:16px\"><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:16px\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Age</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:16px\"><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">Age</span>&nbsp;</span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:16px\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">IP ID</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:16px\"><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">IP ID</span>&nbsp;</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:16px\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\">Sex</span></span></span></p>\r\n			</td>\r\n			<td colspan=\"3\" rowspan=\"1\" style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:16px\"><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">Gender</span>&nbsp;</span></span></p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">In order to protect the patient from harm or to promote a higher level of independence, it is sometimes necessary and desirable to use a physical restraining device.</span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Concerned physician and inter-disciplinary care team have determined that use of a restraint will benefit your patient&rsquo;s condition, however, a restraint not be used without your written consent.</span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Physician Restraints are defined as any method or physical or mechanical device, material, or equipment attached or adjacent to the patient&rsquo;s body that the individual cannot remove easily which restricts freedom of movement or normal access to one&rsquo;s body.</span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Soft belts, side rails etc may be considered restraints if these restrict a patient from voluntarily getting out of the bed or chair.</span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Restraints may be used only after other less restrictive measures have been shown to be ineffective or insufficient.</span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">The following type of restraint has been recommended for the specific medical reason noted:</span></span></span></p>\r\n\r\n<ol>\r\n	<li>\r\n	<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Type:</span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Medical Reason:</span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</span></p>\r\n	</li>\r\n</ol>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">If you consent to the use of recommended restraint, the use of the restraint will be reviewed as frequently as necessary at your patient&rsquo;s care plan meeting. Every effort will be made to address the underlying cause that resulted in recommendation of a restraint. The facility will continue to take steps to try to reduce or eliminate the need for therestraint.</span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Your decision to allow the use of restraint is important and you should fully consider the benefits and risks of restraint use. The following is a comparison of potential benefits and risks.</span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">The list includes, but is not limited to:</span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\">&nbsp;<span class=\"marker-blue\">TextArea</span>&nbsp;</span><br />\r\n&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\"><strong>Potential benefits and potential risks</strong></span></span></span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">In certain situations and /or timeframes:</span></span></span></p>\r\n\r\n<ul>\r\n	<li>\r\n	<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Protection from accidents or injuries</span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Protection of other residents /staff from physical harm</span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">The patient experience increased feeling of safety and security</span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Pressure sores, incidence of infections</span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Function decline: loss of muscle tone, balance, independent mobility</span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Increased agitation or delirium</span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Symptoms of depression, withdrawal</span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Reduced Independence, loss of dignity</span></span></span></p>\r\n	</li>\r\n</ul>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<ol>\r\n	<li>\r\n	<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\"><strong>I do / do not </strong>consent to the use of restraints if the appropriate healthcare professionals have assessed the need for such and a restraining device is indicated as part of my patient&rsquo;s recommended plan of care.</span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">I have been fully informed of the potential benefits and risks of restraint use and hereby assume full liability for any adverse outcomes related to my decision.</span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">I have had the opportunity to fully discuss restraint use with concerned physician and other personnel responsible for my medical care. All of my questions have been answered to my full satisfaction.</span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"text-align:left\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">I understand that I have the right to alter my decision concerning restraints at any time and that any change must be indicated in writing.</span></span></span></p>\r\n	</li>\r\n</ol>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Name</span></span></span></p>\r\n			</td>\r\n			<td>:&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</td>\r\n			<td colspan=\"2\" style=\"height:50px\">&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td colspan=\"2\">&nbsp;</td>\r\n			<td colspan=\"2\">\r\n			<p style=\"text-align:center\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">(Authorized staff completing this Form)</span></span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Relationship</span></span></span></p>\r\n			</td>\r\n			<td>:&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</td>\r\n			<td colspan=\"2\" style=\"height:50px\">&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td colspan=\"2\" rowspan=\"1\">&nbsp;</td>\r\n			<td colspan=\"2\">\r\n			<p style=\"text-align:center\"><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">(Signature of the RMO/Consultant)</span></span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"width:25%\">\r\n			<p><span style=\"line-height:115%\"><span style=\"font-family:Arial,serif\"><span style=\"font-size:medium\">Date</span></span></span></p>\r\n			</td>\r\n			<td style=\"width:25%\">:&nbsp;<span class=\"marker\">Date</span>&nbsp;</td>\r\n			<td style=\"width:25%\">Time</td>\r\n			<td style=\"width:25%\">:&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n','CONT','N',' ','Y','thims','2018-11-26 15:12:11','thims','2018-11-26 15:47:32'),(10,0,0,'MLC Certificate','<p style=\"text-align:center\"><span style=\"line-height:15px\"><strong><span style=\"font-size:18px\">Injury Treatment Certificate</span></strong></span></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:16px\"><span style=\"line-height:15px\"><ins>To whom so ever it may concern</ins></span></span></p>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"vertical-align:top; width:20%\">\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:14px\"><span style=\"font-family:Arial,serif\">Patient&rsquo;s Name</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:30%\">\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:14px\">: [&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;]&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</span></span></p>\r\n\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:14px\">&nbsp; <span class=\"marker\">Age</span>&nbsp;/&nbsp;<span class=\"marker\">Gender</span>&nbsp;</span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:10%\">\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:14px\"><span style=\"font-family:Arial,serif\">Date</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:25%\">\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:14px\">:&nbsp;<span class=\"marker\">Date</span>&nbsp;</span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:14px\"><span style=\"font-family:Arial,serif\">IP ID</span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:14px\">:&nbsp;<span class=\"marker\">IP ID</span>&nbsp;</span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:14px\">MLC No</span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:14px\">:&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</span></span></p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;This is to certify that the above mentioned patient was admitted to our hospital on&nbsp;<span class=\"marker\">Admit Date</span>&nbsp;at&nbsp;<span class=\"marker\">Admit Time</span>&nbsp;and discharged on&nbsp;<span class=\"marker\">Discharge Date</span>&nbsp;at&nbsp;<span class=\"marker\">Discharge Time</span>.</span></p>\r\n\r\n<p style=\"text-align:left\"><span style=\"line-height:15px\">Surgery was done for his injuries. The injuries sustained by him to the best of my knowledge is as described under.</span></p>\r\n\r\n<p style=\"text-align:left\"><span class=\"marker\">Provisional Diagnosis</span>&nbsp;</p>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"width:20%\"><span style=\"line-height:15px\">Consultant Name</span></td>\r\n			<td style=\"width:20%\"><span style=\"line-height:15px\">:&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</span></td>\r\n			<td style=\"height:50px; width:60%\">&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td>&nbsp;</td>\r\n			<td>&nbsp;</td>\r\n			<td style=\"text-align:center\"><span style=\"line-height:15px\">(Consultant Signature)</span></td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n','CERT','N',' ','Y','thims','2018-11-27 13:48:32','thims','2018-11-27 17:00:24'),(11,0,0,'TEST','<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"width:25%\">\r\n			<p><span style=\"font-size:12pt\"><span style=\"line-height:115%\"><strong>NAME</strong></span></span></p>\r\n			</td>\r\n			<td colspan=\"3\" rowspan=\"1\" style=\"width:75%\">\r\n			<p>:&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"font-size:12pt\"><span style=\"line-height:115%\"><strong>AGE/SEX</strong></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p>:&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><span style=\"line-height:115%\"><strong>/</strong></span></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"font-size:12pt\"><span style=\"line-height:115%\"><strong>STUDY</strong></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p>:&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"font-size:12pt\"><span style=\"line-height:115%\"><strong>REF.BY</strong></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p>:&nbsp;<span class=\"marker\">Referral Doctor</span>&nbsp;<span style=\"font-size:12pt\"><span style=\"line-height:115%\"><strong>&nbsp;</strong></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"font-size:12pt\"><span style=\"line-height:115%\"><strong>DATE</strong></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p>:&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:100%\"><span style=\"font-family:Arial,sans-serif\"><strong>CT SCAN OF BRAIN:</strong></span></span></span></p>\r\n\r\n<p>&nbsp;<span class=\"marker-blue\">TextArea</span>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:100%\"><strong>OBSERVATION: </strong></span></span></p>\r\n\r\n<p>&nbsp;<span class=\"marker-blue\">TextArea</span>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:100%\"><strong>IMPRESSION:</strong></span></span></p>\r\n\r\n<p>&nbsp;<span class=\"marker-blue\">TextArea</span>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n','RAD','N','','Y','thims','2018-12-22 16:22:05','vishal','2020-01-02 11:35:24'),(12,0,0,'USG MALE','<p><span style=\"line-height:15px\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:12pt\"><strong>USG REPORT</strong></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Liver appears normal in size, shape and echotexture.No focal or diffuse lesion noted in liver. No evidence of IHBRD noted.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Gall bladder is partially distended and appears grossly normal.&nbsp;</span></span></p>\r\n\r\n<p><br />\r\n<span style=\"font-size:12pt\"><span style=\"line-height:15px\">Common bile duct appears normal in size.<br />\r\nPortal vein appears normal. No evidence of any thrombus noted.</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Pancreas appears normal in size and echopattern.&nbsp;<br />\r\nSpleen appears normal in size and echotexture.&nbsp;</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Right kidney measures &nbsp;&nbsp;<br />\r\nLeft kidney measures &nbsp;&nbsp;<br />\r\nBoth kidneys are normal in size, shape and echopattern with preserved Cortico-medullary differentiation. No evidence of calculus, hydronephrosis or mass is seen on either side.</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">No evidence of significant pre or para aortic lymphadenopathy.<br />\r\nNo evidence of abnormal dilatation of bowel loops or bowel wall thickening is seen.</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Urinary bladder is distended and appears normal. No evidence of any calculus or wall thickening or any mass lesion noted.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Prostate appears normal in size and echopattern.</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">No evidence of ascites or effusion noted.</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">IMPRESSION:</span></strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;No significant abnormality detected.</span></strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','3189','N','thims','2019-02-18 16:18:30','parul','2021-05-13 15:07:29'),(13,0,0,'USG FEMALE','<p><strong><span style=\"line-height:15px\">NAME :&nbsp;</span></strong>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<strong>&nbsp;</strong>&nbsp;<span class=\"marker\">Age</span>&nbsp;<strong><span style=\"line-height:15px\">/</span></strong>&nbsp;<span class=\"marker\">Gender</span>&nbsp;<br />\r\n<strong><span style=\"line-height:15px\">REF BY :</span></strong>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;<strong><span style=\"line-height:15px\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br />\r\nUHID :</span></strong>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<strong><span style=\"line-height:15px\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br />\r\nINVESTIGATION : SONOGRAPHY OF ABDOMEN<br />\r\nDATE :</span></strong>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"line-height:15px\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<strong><span style=\"font-size:12pt\">USG REPORT</span></strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Liver appears normal in size, shape and echotexture.No focal or diffuse lesion noted in liver. No evidence of IHBRD noted.</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Gall bladder is partially distended and appears grossly normal.&nbsp;<br />\r\nCommon bile duct appears normal in size.<br />\r\nPortal vein appears normal. No evidence of any thrombus noted.</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Pancreas appears normal in size and echopattern.&nbsp;<br />\r\nSpleen appears normal in size and echotexture.&nbsp;</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Right kidney measures &nbsp;&nbsp;<br />\r\nLeft kidney measures &nbsp;&nbsp;<br />\r\nBoth kidneys are normal in size, shape and echopattern with preserved Cortico-medullary differentiation. No evidence of calculus, hydronephrosis or mass is seen on either side.</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">No evidence of significant pre or para aortic lymphadenopathy.<br />\r\nNo evidence of abnormal dilatation of bowel loops or bowel wall thickening is seen.</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Urinary bladder is distended and appears normal. No evidence of any calculus or wall thickening or any mass lesion noted.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Uterus appears normal in size, shape and echopattern.</span></span><br />\r\n<span style=\"font-size:12pt\"><span style=\"line-height:15px\">No evidence of any adnexal mass noted.</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">No evidence of ascites or effusion noted.</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">IMPRESSION:</span></strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;No significant abnormality detected.</span></span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','3189','N','thims','2019-02-18 16:29:10','parul','2021-05-13 15:48:56'),(14,0,0,'USG NECK AND AXILLA','<p><span style=\"line-height:15px\"><strong><span style=\"font-size:12pt\">NAME :&nbsp;</span></strong></span><span class=\"marker\">Patient Name</span><span style=\"line-height:15px\"><strong><span style=\"font-size:12pt\">&nbsp;</span></strong></span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"line-height:15px\"><strong><span style=\"font-size:12pt\">/</span></strong></span>&nbsp;<span class=\"marker\">Gender</span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><strong><span style=\"font-size:12pt\">REF BY :&nbsp;</span></strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><strong><span style=\"font-size:12pt\">INVESTIGATION&nbsp; : &nbsp; USG NECK AND AXILLA</span></strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><strong><span style=\"font-size:12pt\">DATE :</span></strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<br />\r\n&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">USG REPORT</span></strong></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\">Both lobes of thyroid gland appear normal in size, shape and echotexture.<br />\r\nNo evidence of any focal or diffuse lesion noted in lobes of thyroid or isthmus.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Submandibular glands appear normal on either side.<br />\r\nVisualized parotid glad appear normal on both side.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Major neck vessels appear normal.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">No evidence of lymphadenopathy is seen on either side.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">No significant lymphadenopathy noted in axillary region.</span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Impression:</span></strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;No significant abnormality detected.</span></p>\r\n','USG','N',' ','Y','thims','2019-02-18 16:37:51','leena','2019-02-20 09:44:59'),(15,0,0,'USG NECK','<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>NAME&nbsp;:&nbsp;</strong></span></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong> </strong></span></span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong> / </strong></span></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>UHID :&nbsp;</strong></span></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>REF BY&nbsp; :&nbsp;</strong></span></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;USG NECK</strong></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>DATE&nbsp; : </strong></span></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"line-height:15px\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">USG REPORT</span></span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\">Right lobe of thyroid measures&nbsp;<br />\r\nLeft lobe of thyroid measures<br />\r\nIsthmus measures&nbsp;</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Both lobes of thyroid gland appear normal in size and echotexture.<br />\r\nNo evidence of any focal or diffuse lesion is seen in lobes of thyroid or isthmus.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Submandibular glands appear normal on both sides.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Visualised parotid glands appear normal on both side.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Major neck vessels appear normal.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">No evidence of pathological &nbsp;lymphadenopathy is seen on either side.</span></p>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','3179','N','thims','2019-02-18 16:42:21','manisham','2022-06-09 17:24:15'),(16,0,0,'NORMAL CXR','<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>NAME&nbsp;:&nbsp;</strong></span></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</strong></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>UHID :&nbsp;</strong></span></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span></span><span class=\"marker-yellow\">CHEST &nbsp;X RAY PA VIEW</span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span></span><span class=\"marker\">Date</span>&nbsp;<br />\r\n<span style=\"line-height:15px\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">REPORT</span></span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\">.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Both lung fields appear clear.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;No obvious evidence of consolidation or mass lesion is seen.<br />\r\n&nbsp;<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Both costophrenic angles are clear.&nbsp;</span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Cardiac shadow appears within normal limits.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Both hilar shadows appear normal.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Both domes of diaphragm appear normal.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Bony thorax appears normal.</span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\">DR.LEENA PANDYA<br />\r\nCONSULTANT RADIOLOGIST</span><br />\r\n&nbsp;</p>\r\n','XRY','N','','Y','thims','2019-02-18 16:50:20','vishal','2020-01-02 11:30:42'),(17,0,0,'X RAY SOFT TISSUE NA','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong>/ </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY:</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY SOFT TISSUE NASOPHARYNX&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE&nbsp;:</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>.</p>\r\n\r\n<p>Mild soft tissue prominence is seen at base of skull &nbsp;&ndash; suggestive of &nbsp;mildly enlarged adenoids.</p>\r\n\r\n<p>However no e/o narrowing of nasopharyngeal airway is seen.</p>\r\n\r\n<p>Pre vertebral soft tissue shadow appears normal.</p>\r\n','XRY','N',' ','Y','thims','2019-02-18 17:00:31','leena','2019-02-20 09:47:04'),(18,0,0,'WRIST AP VIEW','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY RIGHT WRIST AP-LAT VIEW&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp; &nbsp; </strong></span>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><br />\r\nWrist joint appears normal.</p>\r\n\r\n<p>Distal end of radius and ulna appear normal.</p>\r\n\r\n<p>Carpals, metacarpals and phalanges appear normal.&nbsp;</p>\r\n\r\n<p>No obvious&nbsp;evidence of fracture or dislocation is seen.</p>\r\n\r\n<p>Bones show normal mineralization.</p>\r\n\r\n<p><br />\r\n&nbsp;</p>\r\n','XRY','N',' ','Y','thims','2019-02-18 17:07:03','leena','2019-02-20 09:47:52'),(19,0,0,'X RAY  ELBOW AP ','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY&nbsp; ELBOW AP / LAT. VIEW&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><br />\r\nElbow joint appears normal.</p>\r\n\r\n<p>Visualized distal&nbsp;end of humerus, proximal end of radius and ulna appear normal.&nbsp;</p>\r\n\r\n<p>No definite evidence of fracture or dislocation is seen.&nbsp;</p>\r\n\r\n<p>Bones show normal mineralization.</p>\r\n\r\n<p>&nbsp;<span class=\"marker-blue\">TextArea</span>&nbsp;</p>\r\n\r\n<p>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','XRY','N',' ','Y','thims','2019-02-18 17:16:30','thims','2019-06-11 16:27:19'),(20,0,0,'X RAY SHOULDER AP AN','<p><span style=\"font-size:12pt\"><strong>NAME :</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong>/</strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID :</strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X RAY&nbsp; SHOULDER AP AND LATERAL VIEW&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><br />\r\nShoulder joint appears normal.</p>\r\n\r\n<p>No definite evidence of fracture or dislocation. &nbsp;</p>\r\n\r\n<p>Visualized proximal humerus appears normal.</p>\r\n\r\n<p>Acromio-clavicular joint appear normal.<br />\r\n&nbsp;</p>\r\n','XRY','N',' ','Y','thims','2019-02-18 17:23:59','leena','2019-02-20 09:49:39'),(21,0,0,'X RAY BOTH HIPS AP V','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong>/ </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID :</strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY BOTH HIPS AP VIEW&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><br />\r\nBoth hip joints appear normal.&nbsp;</p>\r\n\r\n<p>Head of femur and visualized upper shaft of femur appear normal.</p>\r\n\r\n<p>Both superior and inferior pubic rami appear normal.</p>\r\n\r\n<p>No evidence of fracture or dislocation is seen.</p>\r\n\r\n<p>Bones show normal mineralization.</p>\r\n\r\n<p>No evidence of any osteolytic or osteosclerotic lesion noted.</p>\r\n','XRY','N',' ','Y','thims','2019-02-18 17:37:50','leena','2019-02-20 09:50:23'),(22,0,0,'X-RAY HIP WITH FEMUR','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;X-RAY&nbsp; HIP WITH FEMUR AP - LAT VIEW&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><br />\r\nHip joint appears normal.&nbsp;</p>\r\n\r\n<p>Head of femur and visualized upper shaft of femur appear normal.</p>\r\n\r\n<p>No evidence of fracture or dislocation is seen.</p>\r\n\r\n<p>Bones show normal mineralization.</p>\r\n\r\n<p><br />\r\n&nbsp;</p>\r\n','XRY','N',' ','Y','thims','2019-02-18 17:42:34','leena','2019-02-20 09:51:01'),(23,0,0,'X RAY KNEE AP â€“ LA','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X RAY &nbsp;KNEE AP &ndash; LAT VIEW</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\">Knee joint appears normal.</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">Lower end of femur and upper end of tibia and fibula appear normal.&nbsp;</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">Patella appears normal.Patello-femoral joint appears normal.</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">No evidence of fracture or dislocation seen.</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">No evidence of osteolytic or osteosclerotic lesion is seen.&nbsp;</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">Bones show normal mineralization.</span></p>\r\n','XRY','N',' ','Y','thims','2019-02-18 17:47:24','leena','2019-02-20 09:52:13'),(24,0,0,'OA KNEE','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X-RAY KNEE AP-LAT VIEW</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\">Degenerative changes are seen in form of osteophytes formation.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">There is&nbsp;reduction in joint space noted more marked in medial and patello-femoral compartment suggest osteoarthritis.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Patella,&nbsp; lower end of femur and upper end of tibia and fibula&nbsp;appear normal otherwise.&nbsp;</span></p>\r\n\r\n<p><span style=\"line-height:15px\">No evidence of fracture or dislocation seen.</span></p>\r\n','XRY','N',' ','Y','thims','2019-02-18 17:51:47','leena','2019-02-20 09:53:30'),(25,0,0,'X RAY ANKLE AP-LAT V','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X-RAY RIGHT ANKLE AP-LAT VIEW</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><span style=\"font-size:10pt\">Ankle joint appears normal.</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">Distal end of tibia and fibula appear normal.&nbsp;</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">Visualised tarsal bones appear normal.</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">No evidence of fracture or dislocation seen.</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">No evidence of any osteolytic or osteosclerotic lesion noted.</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">Bones show normal mineralisation.</span></p>\r\n','XRY','N',' ','Y','thims','2019-02-18 17:55:01','leena','2019-02-20 09:54:44'),(26,0,0,'X-RAY FOOT AP / OBL ','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X-RAY&nbsp; FOOT&nbsp;AP-OBL VIEW</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\">All tarsal, metatarsal bones and phalanges&nbsp; appear normal.</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">Visualised ankle joint appears normal.</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">No evidence of fracture or dislocation seen.</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">No evidence of osteolytic or osteosclerotic lesion is seen.&nbsp;</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">Bones show normal mineralization.</span></p>\r\n','XRY','N','2995','Y','thims','2019-02-18 17:58:44','manisham','2021-08-10 11:47:26'),(27,0,0,'X RAY L S SPINE AP -','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X RAY L S SPINE AP &ndash; LAT VIEW</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Normal alignment and mineralization of lumbar spine noted.<br />\r\nVertebral bodies and intervertebral disc spaces appear normal.<br />\r\nNo evidence of wedging or collapse of vertebral bodies noted.&nbsp;<br />\r\nVertebral appendages, apophyseal joints and spinous process appear normal.<br />\r\nNo evidence of spondylolysis or listhesis is seen.<br />\r\nPre &amp; paravertebral soft tissue appears normal.</span></span></p>\r\n','XRY','N',' ','Y','thims','2019-02-18 18:05:44','leena','2019-02-20 09:56:32'),(28,0,0,'X-RAY BOTH HIP AP VI','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X-RAY BOTH HIP AP VIEW</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Flattening of femoral head with cortical irregularity, subchondral cystic changes along pararticular aspect of femoral head &amp; neck and acetabulum and reduction in joint space is seen involving right hip joint more marked in superior &amp; medial compartment suggests degenerative changes.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both iliac bones, superior and inferior pubic rami and sacral ala appear normal.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Left hip joints &amp; both SI joints appear normal.&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Head of femur and visualized upper shaft of femur appear normal on left side.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of fracture or dislocation is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Bones show normal mineralization.</span></span></p>\r\n','XRY','N',' ','Y','thims','2019-02-18 18:14:00','','0000-00-00 00:00:00'),(29,0,0,'X RAY LS SPINE AP - ','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X RAY LS SPINE AP - LAT VIEW</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Diffuse osteoporosis noted.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Degenerative changes are seen in form of osteophytes formation with reduced intervertebral disc space between L4-L5 &amp; L5-S1 level.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of lytic or sclerotic lesions seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No definite evidence of lysis or lysthesis is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Visualized pelvic bones appear normal.</span></span></p>\r\n','XRY','N',' ','Y','thims','2019-02-18 18:19:16','','0000-00-00 00:00:00'),(30,0,0,'X-RAY CERVICAL SPINE','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X-RAY CERVICAL SPINE LAT</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:10pt\">&bull;&nbsp;&nbsp; &nbsp;Early degenerative changes are seen in form of marginal osteophytes formation.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Normal alignment and mineralization of cervical spine noted.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Vertebral bodies otherwise and intervertebral disc spaces appear normal.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No evidence of wedging or collapse of vertebral bodies noted.&nbsp;<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Vertebral appendages, aspophyseal joints and spinous process appear normal.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No definite evidence of atlanto-axial subluxation noted.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Pre &amp; paravertebral soft tissue appears normal.</span></span></p>\r\n','XRY','N',' ','Y','thims','2019-02-18 18:20:57','','0000-00-00 00:00:00'),(31,0,0,'X-RAY KNEE AP-LAT VI','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X-RAY KNEE AP-LAT VIEW</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">&bull;&nbsp;&nbsp; &nbsp;Early degenerative changes are seen in form of marginal osteophytes formation with mild reduction in joint space more marked in medial and patello-femoral compartment suggest osteoarthritis&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">&bull;&nbsp;&nbsp; &nbsp;Patella, visualized lower end of femur and upper end of tibia and fibula otherwise appear normal.&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">&bull;&nbsp;&nbsp; &nbsp;No evidence of fracture or dislocation seen.</span></span></p>\r\n','XRY','N',' ','Y','thims','2019-02-18 18:23:03','','0000-00-00 00:00:00'),(32,0,0,'X-RAY LS SPINE AP - ','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X-RAY LS SPINE AP - LAT VIEW</span></span></strong><span style=\"font-size:12pt\"><strong> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Vertebral bodies show marginal osteophytes along antero-lateral borders, suggest changes of spondylosis.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Generalized reduced bone density noted.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Intervertebral disc spaces appear normal.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No evidence of wedging or collapse of vertebral bodies noted.&nbsp;<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Vertebral appendages, apophyseal joints and spinous process appear normal.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No evidence of spondylolysis or listhesis is seen.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Pre &amp; paravertebral soft tissue appears normal.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Visualized pelvic bones appear normal.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Falope rings noted in pelvis.</span></span></p>\r\n','XRY','N',' ','Y','thims','2019-02-18 18:25:49','','0000-00-00 00:00:00'),(33,0,0,'X-RAY CERVICAL SPINE','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X-RAY CERVICAL SPINE AP-LAT VIEW</span></span></strong><span style=\"font-size:12pt\"><strong> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:10pt\">&bull;&nbsp;&nbsp; &nbsp;Normal alignment and mineralization of cervical spine noted.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Vertebral bodies and intervertebral disc spaces appear normal.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No evidence of wedging or collapse of vertebral bodies noted.&nbsp;<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Vertebral appendages, apophyseal joints and spinous process appear normal.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No definite evidence of atlanto-axial subluxation noted.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Pre paravertebral soft tissue appears normal.</span></span></p>\r\n','XRY','N',' ','Y','thims','2019-02-18 18:28:56','thims','2019-06-24 12:28:14'),(34,0,0,'BILATERAL MAMMOGRAPH','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">BILATERAL MAMMOGRAPHY</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">BILATERAL &nbsp;MAMMOGRAM</span></strong></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:9pt\">(<em>Dedicated digital mammography with Craniocaudal and media lateral oblique view was performed</em>.)</span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>On Mammography</strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Normal&nbsp; breast parenchyma is noted in breast on either side.&nbsp;<br />\r\nNo evidence of clustered micro-calcification.<br />\r\nNo evidence of mass or architectural distortion is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of any speculated mass lesion noted.</span></span><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of skin thickening or nipple retraction is seen.<br />\r\nNo evidence of axillary lymphadenopathy.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><strong>On sonography</strong></span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:10pt\">Normal breast parenchyma is seen on either side.&nbsp;<br />\r\nNipple and retroareolar regions appear normal on either side.<br />\r\nNo evidence of solid or cystic mass lesion is seen.<br />\r\nNo evidence of axillary lymphadenopathy on either side.</span></span></p>\r\n\r\n<p><strong><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Comments:&nbsp;</span></span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No significant abnormality detected. (BIRADS - I).<br />\r\nNo direct or indirect sign of malignancy seen.</span></span></p>\r\n\r\n<p><span style=\"font-size:9pt\"><span style=\"line-height:15px\"><strong>BIRADS Categories</strong>:</span></span><br />\r\n<span style=\"font-size:8pt\"><span style=\"line-height:15px\">0 &nbsp; &nbsp; &nbsp;Need imaging evaluation.<br />\r\nI &nbsp; &nbsp; &nbsp; Negative&nbsp;<br />\r\nII &nbsp; &nbsp; &nbsp;Benign finding<br />\r\nIII &nbsp; &nbsp; probably benign finding.<br />\r\nIV &nbsp; &nbsp; Suspicious abnormality.<br />\r\nV &nbsp; &nbsp; &nbsp;Highly suggestive of malignancy.</span></span></p>\r\n\r\n<p><span style=\"font-size:8pt\"><span style=\"line-height:15px\">The false negative mammography is approximately 10%. Management of a palpable abnormality must be based upon clinical grounds.</span></span></p>\r\n','USG','N',' ','Y','thims','2019-02-18 18:35:08','leena','2019-02-20 10:03:55'),(35,0,0,'MAMMO DENSE','<table border=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"vertical-align:top; width:25%\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">NAME </span></span></strong></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:25%\">\r\n			<p>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:25%\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">AGE/SEX&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></strong></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:25%\">\r\n			<p>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">/</span></span></strong></span></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">REF BY:</span></span></strong></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">DATE </span></span></strong></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:11pt\"><strong>BILATERAL MAMMOGRAM WITH USG OF BREAST :</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\">Dedicated digital mammography with Cranio-caudal and medio-lateral view was performed.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">The mammary parenchyma is inhomogeneously dense &ndash; because of prominent fibro-glandular tissues. This somewhat lowers the sensitivity of mammography. No suspicious focal mass or clustered microcalcifications are seen, although the dense surrounding tissue could obscure a lesion. No evidence of skin thickening or nipple retraction noted on either side.</span></p>\r\n\r\n<p><strong><span style=\"font-size:11pt\">USG Breast:</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\">Breast tissues appear normal. &nbsp;No evidence of any solid or cystic lesion noted.<br />\r\nBilateral nipple and retroareolar region appears normal.&nbsp;<br />\r\nNo evidence of dilatation of lactiferous ducts on either side.<br />\r\nNo evidence of significant pathological axillary lymphadenopathy seen.&nbsp;</span></p>\r\n\r\n<p><strong><span style=\"font-size:11pt\">Comments:</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Mammographically dense mammary parenchyma &ndash; because of prominent fibro-glandular tissues.&nbsp;<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No secondary mammographic signs of malignancy.&nbsp;<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No significant abnormality is detected.</span></p>\r\n\r\n<p><span style=\"font-size:9pt\"><strong>BIRADS Classifications:</strong></span><br />\r\n<span style=\"font-size:8pt\"><span style=\"line-height:15px\">(0)&nbsp;&nbsp; &nbsp;Incomplete (needs additional evaluation)<br />\r\n(1)&nbsp;&nbsp; &nbsp;Negative&nbsp;<br />\r\n(2)&nbsp;&nbsp; &nbsp;Benign<br />\r\n(3)&nbsp;&nbsp; &nbsp;Probably Benign&nbsp;<br />\r\n(4)&nbsp;&nbsp; &nbsp;Suspicious&nbsp;<br />\r\n(5)&nbsp;&nbsp; &nbsp;Highly suggestive of malignancy</span></span></p>\r\n\r\n<p><br />\r\n<span style=\"font-size:8pt\"><span style=\"line-height:15px\">The false negative mammography is approximately 10%. Management of a palpable abnormality must be based upon clinical grounds.&nbsp;</span></span><br />\r\n&nbsp;</p>\r\n','USG','N',' ','Y','thims','2019-02-18 18:44:46','','0000-00-00 00:00:00'),(36,0,0,'Transplant Doppler with rejection','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">RENAL Doppler</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Clinical profile:</strong> k/c/o Chronic Kidney Ds. with renal transplant</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On grey scale imaging,</strong>&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Right kidney &ndash; 55 x 23 mm.<br />\r\nLeft kidney &ndash; 56 x 31 mm.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Both kidneys appear small in size and show raised cortical echogenecity with partial to complete loss of cortico-medullary differentiation.&nbsp;<br />\r\nSmall simple cyst is seen in upper pole of right kidney.<br />\r\nNo evidence of calculus, hydronephrosis or mass is seen on either side.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Transplant kidney in right iliac fossa measures 104 x 44 and shows raised cortical echogenecity with preserved cortico-medullary differentiation.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.<br />\r\nProstate appears normal in size (12 cc) and echotexture.&nbsp;</span></span></p>\r\n\r\n<p><strong><span style=\"line-height:15px\"><span style=\"font-size:12pt\">On colour doppler mode,</span></span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Transplant kidney shows high resistance waveform with absence of diastolic flow suggests renal parenchymal disease.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Right external iliac artery shows normal color flow and filling.&nbsp;<br />\r\nNo secondary signs (tardus-parvus waveform) or definite e/o stenosis at anastomotic site are seen.&nbsp;</span></span></p>\r\n\r\n<p><strong><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Comments:</span></span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Raised cortical echogenecity with high resistance waveform and absence of diastolic flow in transplant kidney suggest possibility of renal parenchymal disease.<br />\r\nClinical correlation and further evaluation would be of help.</span></span><br />\r\n&nbsp;</p>\r\n','DOP','N',' ','Y','thims','2019-02-19 15:54:44','thims','2019-02-19 15:55:56'),(37,0,0,'RENAL DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">RENAL Doppler</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On grey scale imaging,</strong>&nbsp;<br />\r\nRight Kidney measures&nbsp;<br />\r\nLeft Kidney measures&nbsp;<br />\r\nBoth kidneys are normal in size, shape and echopattern.Both kidney&nbsp; show normal cortico-medullary&nbsp;with normal cortical thickness. No evidence of calculus or hydronephrosis.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On colour Doppler mode</strong>&nbsp;<br />\r\nAbdominal aorta shows normal color flow and filling.&nbsp;<br />\r\nBoth sided renal arteries, intrarenal segmental and arcuate arteries show normal colour flow, spectral waveform and velocities.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of renal artery stenosis is seen on either side.<br />\r\nBoth renal veins appear normal.</span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong>&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">&bull;&nbsp;&nbsp; &nbsp;Normal renal Doppler study.</span></span></p>\r\n','DOP','N',' ','Y','thims','2019-02-19 15:58:10','leena','2019-02-19 17:43:49'),(38,0,0,'PORTAL & HEPATIC VENOUS DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">PORTAL &amp; HEPATIC VENOUS DOPPLER</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">DOPPLER REPORT</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Portal vein is prominent measures 15 mm at porta.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Intrahepatic part of the portal vein appears normal. No e/o of thrombus is seen in the portal vein.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;The portal vein shows normal hepatopetal flow and spectral wave form with maintained respiratory variation.&nbsp;</span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Right middle and left Hepatic veins appear normal in calibre with normal flow and spectral waveform.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Intrahepatic IVC appear normal show normal flow.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Splenic vein and superior mesenteric vein show normal color &nbsp;flow.</span></p>\r\n\r\n<p><span style=\"line-height:15px\"><strong>Impression:</strong> &nbsp; &nbsp; &nbsp;</span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Prominent portal vein measures 15 mm at porta. &nbsp;</span><br />\r\n&bull;&nbsp;&nbsp; &nbsp;Essentially &nbsp;normal study otherwise. No evidence of thrombus.</p>\r\n\r\n<p>&nbsp;</p>\r\n','DOP','N',' ','Y','thims','2019-02-19 16:02:20','','0000-00-00 00:00:00'),(39,0,0,'CAROTID DOPPLER IMT','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">CAROTID DOPPLER</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On grey scale imaging:</strong>&nbsp;<br />\r\nCommon carotid arteries , internal carotid aretry and external carotid artery are normal in course on both sides.&nbsp;<br />\r\nDiffuse intimal thickening (Intimo-medial thickness is 1.2 mm) noted in bilateral carotid arteries.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of any calcified or fibrofatty&nbsp;plaques seen.</span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On Colour Flow Imaging:</strong><br />\r\nCCA, ICA and ECA on both sides show normal colour uptake and spectral waveforms with normal peak systolic velocities.<br />\r\nNo evidence of any haemodynamically significant stenosis&nbsp; is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Vertebral arteries on either side show normal colour filling, velocities and spectral waveforms.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong>&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Normal doppler study of both carotid arteries.<br />\r\nDiffuse intimal thickening in bilateral carotid arteries.</span></span><br />\r\n&nbsp;</p>\r\n','DOP','N',' ','Y','thims','2019-02-19 16:04:59','leena','2019-02-19 17:42:38'),(40,0,0,'CAROTID DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">CAROTID DOPPLER</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On grey scale imaging:</strong></span></span><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\">common&nbsp; carotid artery, internal carotid and external carotid artery&nbsp;appear normal in course and caliber on both sides.&nbsp;<br />\r\nIntimo-medial thickness is normal on both sides.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of any calciifed or fibrofatty plaques seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On Colour Flow Imaging:</strong></span></span><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\">CCA, ICA and ECA on both sides show normal colour filling and spectral waveforms with normal peak systolic velocities.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of any haemodynamically significant stenosis or block is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Vertebral arteries on either side show normal colour filling, velocities and spectral waveforms.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong>&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Normal doppler study of carotid arteries .&nbsp;</span></span></p>\r\n','DOP','N',' ','Y','thims','2019-02-19 16:09:49','leena','2019-02-19 17:40:09'),(41,0,0,'BOTH LOWER LIMB VENOUS DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">BOTH LOWER LIMB VENOUS DOPPLER</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>B MODE:</strong> </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Both external iliac, common femoral, superficial femoral, deep femoral, popliteal, anterior &amp; posterior tibial veins appear normal. </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of Deep venous thrombosis&nbsp;noted.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>COLOUR DOPPLER</strong> </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">The deep as well as superficial veins show normal color filling and compressibility. No evidence of thrombosis is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Both Sapheno-femoral and sapheno-popliteal junction are normal. No evidence of incompetence is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of varicosities are seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of significant subcutaneous edema seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong>&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Normal both lower limb venous Doppler.<br />\r\nNo evidence of deep venous thrombosis on present study.</span></span><br />\r\n&nbsp;</p>\r\n','DOP','N',' ','Y','thims','2019-02-19 16:12:28','leena','2019-02-19 17:35:39'),(42,0,0,'BOTH LOWER LIMB ARTERIAL DOPPLER ','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">BOTH LOWER LIMB ARTERIAL DOPPLER </span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\">On grey scale imaging, Both Common iliac, external iliac, common femoral, superficial femoral, deep femoral, popliteal, anterior and posterior tibial arteries appear normal in course and caliber. No evidence of thrombus seen. On colour flow imaging, Both common femoral, superficial femoral, deep femoral, popliteal, anterior and posterior tibial arteries show normal color uptake&nbsp;and triphasic pattern of spectral waveform. No obvious evidence of any significant stenosis or thrombosis seen. Comments: &nbsp; Normal arterial doppler study of the both lower limb.</span></p>\r\n','DOP','N','4065','Y','thims','2019-02-19 16:18:54','leena','2019-08-07 12:47:45'),(43,0,0,'ADPKD','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\n\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\n\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\n\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">SONOGRAPHY OF ABDOMEN AND PELVIS </span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\n\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\n\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">USG REPORT</span></strong></p>\n\n<p>&nbsp;</p>\n\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Liver is normal in size, shape and echopattern.No&nbsp;focal or diffuse lesion noted. No IHBRD noted.</span></span></p>\n\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Gall bladder is distended and normal. No evidence of calculus, wall thickening&nbsp;or mass lesion is seen.&nbsp;<br />\nCommon bile duct appears normal in caliber.<br />\nPortal vein appears normal.</span></span></p>\n\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Pancreas appears normal in size and echopattern. No evidence of any mass lesion, intra or peripancreatic fluid collection is seen.&nbsp;<br />\nSpleen appears normal in size and echotexture.&nbsp;</span></span></p>\n\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Right kidney measures&nbsp;&nbsp;</span></span></p>\n\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Left kidney measures&nbsp;<br />\nBoth kidneys appear grossly enlarged in size and show multiple well defined cysts of varying sizes completely replacing normal renal parenchyma with few hyperechoic foci- &nbsp;calcification/ calculi within and complete loss of Cortico-medullary differentiation.<br />\nThe largest cyst in lower pole of right kidney measures&nbsp; &nbsp;&nbsp;</span></span></p>\n\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of significant pre-para aortic or mesenteric lymphadenopathy.<br />\nNo evidence of abnormal dilatation of bowel loops is seen.</span></span></p>\n\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.<br />\nProstate appears normal in size (14 cc) and echotexture.&nbsp;</span></span></p>\n\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of ascites or free fluid in pelvis.</span></span></p>\n\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\"><strong>Comments:</strong><br />\nGrossly enlarged both kidneys with multiple well defined cysts of varying sizes completely replacing normal renal parenchyma and complete loss of Cortico-medullary differentiation suggests possibility of polycystic kidney disease </span>.</span><br />\n&nbsp;</p>\n','USG','N',' ','Y','thims','2019-02-19 16:21:52','leena','2019-02-19 17:32:11'),(44,0,0,'ANTENATAL USG I TRIMESTER','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">ANTENATAL USG </span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">USG REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>LMP:</strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<strong>GA by LMP:</strong>&nbsp;<br />\r\n&nbsp;&nbsp; &nbsp; &nbsp;<br />\r\nSingle live intrauterine foetus.<br />\r\nFoetal cardiac pulsation and foetal movements are present.<br />\r\n<strong>Heart Rate</strong> &ndash;&nbsp; &nbsp; bpm.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Placenta is encircling.<br />\r\nLiquor amount is adequate for gestational age&nbsp;</span></span></p>\r\n\r\n<p><strong><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Foetal Maturity :</span></span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">BPD&nbsp; &nbsp;&nbsp;<br />\r\nFL&nbsp; &nbsp;&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Average Gestational Age ( by USG) :</strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<strong>EDD by Average G.A.</strong> =&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Cervical length measures&nbsp; &nbsp; &nbsp; . &nbsp;Internal O.S. is closed.&nbsp;<br />\r\nNo obvious congenital anomaly detected on present study.&nbsp;<br />\r\nNasal bone is present.<br />\r\nNT measures&nbsp; &nbsp;mm ( within normal limits.)</span></span></p>\r\n\r\n<p><strong><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Impression:</span></span></strong></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">A Single live intrauterine fetus of average gestational age&nbsp;<br />\r\nNo obvious congenital anomaly detected on present study.</span>&nbsp;</span></p>\r\n','USG','N','6351','Y','thims','2019-02-19 16:25:54','leena','2019-08-07 12:45:22'),(45,0,0,'ANTENATAL USG ii trimester','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">ANTENATAL USG </span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">USG REPORT</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Single live intrauterine foetus.</span></span><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\">Foetal cardiac pulsation and foetal movements are present.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Heart Rate</strong> &ndash; 150 &nbsp;bpm.<br />\r\nPlacenta is&nbsp; &nbsp; &nbsp;grade &nbsp;maturity.<br />\r\nNo Placenta praevia is seen.<br />\r\nLiquor amount is adequate for gestational age&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Foetal Maturity :</strong></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">BPD&nbsp; &nbsp;&nbsp;<br />\r\nHC&nbsp; &nbsp;<br />\r\nAC&nbsp; &nbsp;<br />\r\nFL&nbsp; &nbsp;&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Average Gestational Age:</strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>EDD by Average G.A</strong>.&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Cervical length measures . &nbsp;Internal O.S. is closed.&nbsp;<br />\r\nNo obvious congenital anomaly detected on present study.&nbsp;<br />\r\nFoetal cardiac shadow is on left side.Foetal stomach bubble noted. &nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Foetal spine appears normal.<br />\r\nBoth kidneys and bladder appear normal.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Impression:</strong></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">A Single live intrauterine foetus of maturity .&nbsp;<br />\r\nNo obvious congenital anomaly detected on present study.&nbsp;</span></span></p>\r\n','USG','N',' ','Y','thims','2019-02-19 16:30:12','leena','2019-02-19 17:27:03'),(46,0,0,'BOTH UPPER LIMB VENOUS DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">BOTH UPPER LIMB VENOUS DOPPLER</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Both subclavian, axillary, brachial, cephalic, basilic, radial and ulnar veins appears normal in course and compressibility.&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">These veins show normal color filling and compressibility with augmentation of flow. </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of thrombosis is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No e/o subcutaneous edema is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong>&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Normal both upper limb venous Doppler.</span></span><br />\r\n&nbsp;</p>\r\n','DOP','N',' ','Y','thims','2019-02-19 16:40:48','leena','2019-02-19 17:24:40'),(47,0,0,'CHRONIC DVT','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\n\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\n\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\n\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">BOTH LOWER LIMB VENOUS DOPPLER</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\n\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\n\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\n\n<p><br />\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On Right side:</strong><br />\nExternal iliac, common femoral, superficial femoral, deep femoral, popliteal, anterior &amp; posterior tibial veins appear normal.<br />\nThe deep veins show normal color filling and compressibility. No obvious evidence of thrombosis is seen.</span></span></p>\n\n<p><br />\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On left side:</strong><br />\nLeft distal popliteal and proximal posterior tibial veins show mildly thickened echogenic wall with near complete ( 70 to 80%) recanalisation of lumen and are partially compressible with normal colour flow within residual lumen.</span></span></p>\n\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Left external iliac, common femoral, superficial femoral, deep femoral, proximal popliteal, anterior &amp; distal posterior tibial veins appear normal.<br />\nThe deep veins show normal color filling and compressibility. No evidence of thrombosis is seen.</span></span></p>\n\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of significant subcutaneous edema seen on either side.</span></span></p>\n\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Approx. mm sized well-defined lobulated cystic lesion is seen in popliteal fossa on left side possibility of baker&rsquo;s cyst likely.</span></span></p>\n\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong>&nbsp;<br />\nMildly thickened echogenic wall with near complete recanalisation of lumen of left distal popliteal and proximal posterior tibial veins.<br />\nNormal right lower limb venous Doppler. No e/o DVT on right side.</span></span></p>\n','DOP','N',' ','Y','thims','2019-02-19 16:42:48','leena','2019-02-19 17:23:54'),(48,0,0,'UPPER LIMB ARTERIAL DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">&nbsp;UPPER LIMB ARTERIAL DOPPLER</span></strong></span></span><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On grey scale imaging,</strong>&nbsp;subclavian, axillary, brachial, radial and ulnar arteries appear normal in course and caliber.&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On colour flow imaging,</strong> left subclavian, axillary, brachial, radial and ulnar arteries show normal color uptake&nbsp;and triphasic pattern of waveform.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No definite evidence of stenosis or thrombosis seen.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">No evidence of wall thickening noted.</span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong>&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Normal&nbsp; upper limb arterial Doppler.</span></span></p>\r\n','DOP','N',' ','Y','thims','2019-02-19 16:45:12','leena','2019-02-19 17:22:32'),(49,0,0,'X-RAY ABDOMEN (STANDING) VIEW','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY ABDOMEN (STANDING) VIEW&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align: center;\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\">No evidence of free gas is seen under both domes of diaphragm.&nbsp;</span></p>\r\n\r\n<p><span class=\"marker-yellow\">No evidence of multiple air-fluid levels noted.</span></p>\r\n','XRY','N',' ','Y','thims','2019-03-06 11:41:02','','0000-00-00 00:00:00'),(50,0,0,'USG OF ABDOMEN AND PELVIS','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : SONOGRAPHY OF ABDOMEN AND PELVIS&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">Liver is normal in size, shape and echopattern. </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">No evidence of focal or diffuse lesion seen. Intrahepatic biliary radicles are normal. </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">Gall bladder is distended and normal. No evidence of calculus, changes of cholecystitis or mass lesion is seen.&nbsp; </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">Common bile duct appears normal in caliber. </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">Portal vein appears normal. </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">Pancreas appears normal in size and echopattern. No evidence of any mass lesion, intra or peripancreatic fluid collection is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">Spleen appears normal in size and echotexture.&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">Right kidney is not seen in right renal fossa or any other ectopic site may suggest atrophic/absent right kidney. </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">Left kidney shows compensatory hypertrophy (121 x 55 mm) with normal echopattern &amp; preserved Cortico-medullary differentiation. No evidence of calculus, hydronephrosis or mass is seen on left side.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">No evidence of significant pre-para aortic or mesenteric lymphadenopathy.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">No evidence of abnormal dilatation of bowel loops is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen. </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">Prostate appears normal in size and echotexture.&nbsp; No evidence of ascites or free fluid in pelvis.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>Comments:</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\">Right kidney is not seen in right renal fossa or any other ectopic site may suggest atrophic/absent right kidney.</span></p>\r\n','USG','N','','Y','thims','2019-03-06 12:04:57','vishal','2019-12-26 11:38:59'),(51,0,0,'SONOGRAPHY OF ABDOMEN AND PELVIS','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : SONOGRAPHY OF ABDOMEN AND PELVIS&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>USG REPORT</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Liver is normal in size, shape and echopattern.<br />\r\nNo evidence of focal or diffuse lesion seen. Intrahepatic biliary radicles are normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Gall bladder is distended and normal. No evidence of calculus, changes of cholecystitis or mass lesion is seen.&nbsp;<br />\r\nCommon bile duct appears normal in caliber.<br />\r\nPortal vein appears normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Pancreas appears normal in size and echopattern. No evidence of any mass lesion, intra or peripancreatic fluid collection is seen.&nbsp;<br />\r\nSpleen appears normal in size and echotexture.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Right kidney measures 171 x 92 mm. Left kidney measures 199 x 96 mm.<br />\r\nBoth kidneys appear grossly enlarged in size and show multiple well defined cysts of varying sizes completely replacing normal renal parenchyma with few hyperechoic foci- &nbsp;calcification/ calculi within and complete loss of Cortico-medullary differentiation.<br />\r\nThe largest cyst in lower pole of right kidney measures 68 x 37 mm and in midpole of left kidney measures 72 x 66 mm.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of significant pre-para aortic or mesenteric lymphadenopathy.<br />\r\nNo evidence of abnormal dilatation of bowel loops is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.<br />\r\nProstate appears normal in size (14 cc) and echotexture.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of ascites or free fluid in pelvis.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>Comments:</strong></span><br />\r\n&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Grossly enlarged both kidneys with multiple well defined cysts of varying sizes completely replacing normal renal parenchyma and complete loss of Cortico-medullary differentiation suggests possibility of polycystic kidney disease .</span></span></span></p>\r\n','USG','N',' ','Y','thims','2019-03-06 12:11:42','','0000-00-00 00:00:00'),(52,0,0,'SONOGRAPHY OF ABDOMEN AND PELVIS','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : SONOGRAPHY OF ABDOMEN AND PELVIS&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>USG REPORT</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Liver is normal in size, shape and echopattern.<br />\r\nNo evidence of focal or diffuse lesion seen. Intrahepatic biliary radicles are normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Gall bladder is distended and normal. No evidence of calculus, changes of cholecystitis or mass lesion is seen.&nbsp;<br />\r\nCommon bile duct appears normal in caliber.<br />\r\nPortal vein appears normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Pancreas appears normal in size and echopattern. No evidence of any mass lesion, intra or peripancreatic fluid collection is seen.&nbsp;<br />\r\nSpleen appears normal in size and echotexture.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Right kidney measures 171 x 92 mm. Left kidney measures 199 x 96 mm.<br />\r\nBoth kidneys appear grossly enlarged in size and show multiple well defined cysts of varying sizes completely replacing normal renal parenchyma with few hyperechoic foci- &nbsp;calcification/ calculi within and complete loss of Cortico-medullary differentiation.<br />\r\nThe largest cyst in lower pole of right kidney measures 68 x 37 mm and in midpole of left kidney measures 72 x 66 mm.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of significant pre-para aortic or mesenteric lymphadenopathy.<br />\r\nNo evidence of abnormal dilatation of bowel loops is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.<br />\r\nProstate appears normal in size (14 cc) and echotexture.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of ascites or free fluid in pelvis.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>Comments:</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Grossly enlarged both kidneys with multiple well defined cysts of varying sizes completely replacing normal renal parenchyma and complete loss of Cortico-medullary differentiation suggests possibility of polycystic kidney disease .</span></span></span><br />\r\n&nbsp;</p>\r\n','USG','N',' ','Y','thims','2019-03-06 12:16:33','','0000-00-00 00:00:00'),(53,0,0,'CT SCAN THORAX WITH ABDOMEN AND PELVIS','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : </strong><strong>CT SCAN THORAX WITH ABDOMEN AND PELVIS</strong><strong>&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span><span style=\"font-size:10pt\"> &nbsp;<span class=\"marker-yellow\">MDCT imaging was performed using thin contiguous axial scan of thorax, abdomen and pelvis with oral, per rectal and intravenous contrast.</span></span></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Findings:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">The study reveals evidence of well defined lobulated heterogenously enhancing soft tissue density mass lesion in left hilar region encasing &amp; compressing left pulmonary artery at bifurcation. The size measures&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Multiple similar characteristic necrotic lesions are seen in pre-vascular, pre-para-tracheal, para-aortic, subcarinal region with few of them showing hyperdense areas within. The largest in subcarinal region measures 52 x 25 mm on coronal scan.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Well defined heterogenously enhancing soft tissue density lesion is seen involving lateral aspect of right 10th rib with destruction of bony cortex.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Few small calcified lesions are seen scattered in both lung fields, more marked on left side possibly old granulomatous lesions.<br />\r\nFew fibrotic lesions are seen in apico-posterior segment of left upper lobe.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Left adrenal gland appears thickened and shows well defined peripherally enhancing hypodense lesion with non-enhancing necrotic areas within &amp; perilesional areas of fat stranding. The largest component measures 42 x 18 mm on axial scan &amp; 60 x 28 mm on coronal scan.<br />\r\nRight adrenal gland appears normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Multiple enlarged heterogenously enhancing necrotic pre-aortic, aortocaval and left para-aortic lymphnodes noted with perilesional areas of fat stranding. The largest in left para-aortic region measures 29 x 18 mm and encases left renal artery.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Few well defined heterogenously enhancing nodular soft tissue density lesions are seen in left perinephric space along posterior aspect of left kidney abutting upper end of left psoas muscle. The largest measures 30 x 29 mm on sagittal scan.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Duplex pelvicalyceal system noted on left side with two separate proximal ureters uniting distally. The upper 2/3RD of left upper moiety ureter shows mild enhancing wall thickening with perilesional areas of fat stranding.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Rest of the lung fields appears normal.&nbsp;<br />\r\nTrachea and major bronchi appear normal.<br />\r\nArch of aorta and major vessels appear normal.<br />\r\nNo evidence of pleural or pericardial effusion.<br />\r\nVisualized esophagus appears normal.</span></span></span></p>\r\n','CTSN','N',' ','Y','thims','2019-03-06 12:20:25','leena','2019-03-07 12:19:02'),(54,0,0,'CT SCAN BRAIN (PLAIN + CONTRAST)','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN BRAIN (PLAIN + CONTRAST) &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Technique:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">MDCT imaging was performed using thin sequential axial plain scan of brain from base to vertex with and without contrast.</span></span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Findings:</strong></span></span></p>\r\n\r\n<p>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;<br />\r\n<span style=\"line-height:15px\"><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Mild age related cerebral and cerebellar atrophy noted.&nbsp;<br />\r\nBoth cerebral hemispheres otherwise appear normal. No e/o any focal lesion is seen.<br />\r\nNo e/o any abnormal enhancement is seen on post contrast study.<br />\r\nVentricular system and basal cisterns appear normal.<br />\r\nNo evidence of midline shift is seen.<br />\r\nCerebellum and brainstem appear normal.<br />\r\nNo evidence of subdural, extradural or intraparenchymal haemorrhage is seen.<br />\r\nBony skull vault appears normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Small peripherally calcified saccular outpouching is seen in relation to supraclinoid segment of right ICA near origin of MCA p/o aneurysm most likely.</span></span></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">COMMENTS:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Mild age related cerebral and cerebellar atrophy.</span></span></span></p>\r\n','CTSN','N',' ','Y','thims','2019-03-06 12:25:06','mayur','2019-03-14 15:07:02'),(55,0,0,'ANGIO OF ABDOMEN (NORMAL)','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\n\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\n\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\n\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\n\n<p>&nbsp;</p>\n\n<p><span style=\"font-size:12pt\"><strong>MSCT ANGIO OF ABDOMEN:</strong></span></p>\n\n<p>&nbsp;</p>\n\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">MSCT angiography of abdomen was performed after I.V. injection of 150ml contrast media.&nbsp;</span></span></span></p>\n\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">The descending abdominal aorta appears normal.</span></span></span></p>\n\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Superior &amp; inferior mesenteric arteries appear normal. No evidence of thrombosis, block or aneurysm is seen.&nbsp;</span></span></span></p>\n\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">The coeliac arteries &amp; its branches appear normal.</span></span></span></p>\n\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both renal arteries appear normal.</span></span></span></p>\n\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of any abnormally enhancing lesion is seen involving small or large bowel wall to suggest angio dysplasia or arterio-venous malformation.</span></span></span></p>\n\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Liver, gall bladder, spleen, pancreas &amp; both kidneys appear normal.</span></span></span></p>\n\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">The small and large bowel loops appear normal. No evident abnormal dilatation is seen.</span></span></span></p>\n\n<p>&nbsp;</p>\n\n<p><span style=\"font-size:12pt\"><strong>IMPRESSION:</strong></span></p>\n\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Normal CT abdominal angiography.</span></span></span></p>\n\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evident aneurysm, angiodysplasia or arterio-venous malformation.</span></span></span></p>\n','CTSN','N',' ','Y','thims','2019-03-06 12:31:32','','0000-00-00 00:00:00'),(56,0,0,'CT SCAN ANGIOGRAPHY OF AORTA','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN ANGIOGRAPHY OF AORTA&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\"><strong>Technique:</strong></span></span><span style=\"font-size:10pt\"><span style=\"line-height:15px\"> <span class=\"marker-yellow\">MSCT angiography of aorta was performed after giving intra venous non-ionic contrast.</span></span></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Findings:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Ascending and descending aorta and arch of aorta appear normal.&nbsp;<br />\r\nPulsation artefacts are noted at aortic arch and mid part of descending aorta.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">However, no definite evidence of dissection is seen.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Bilateral subclavian arteries appear normal.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Descending thoracic and abdominal aorta appear normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Both carotid arteries are unremarkable.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Coeliac, superior mesenteric and inferior mesenteric arteries appear normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Both renal arteries appear normal.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Impression:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Normal angiography of aorta.&nbsp;<br />\r\nNo definite evidence of dissection or stenosis on the present examination.</span></span></span></p>\r\n','CTSN','N',' ','Y','thims','2019-03-06 12:37:37','','0000-00-00 00:00:00'),(57,0,0,'ANGIO ARCH OF AORTA AND THORACIC AORTA (NORMAL)','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>MSCT ANGIOGRAPHY OF ARCH OF AORTA &nbsp;&amp; THORACIC AORTA:</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">MSCT angiography was performed after injecting non-ionic contrast through antecubital vein. These images were reviewed with MIP, SSD and Volume Rendering.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Arch of aorta and thoracic aorta appear normal in calibre and course.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of abnormal aneurysmal dilatation or leak is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Branches of arch of aorta appear normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of dissection or stenosis is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both subclavian and brachiocephalic trunk appear normal.&nbsp;</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">IMPRESSION:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Normal arch and thoracic aorta.&nbsp;<br />\r\nNo evidence of aneurysm, dissection, stenosis or leaking on the present examination.</span></span></span></p>\r\n','CTSN','N',' ','Y','thims','2019-03-06 12:43:19','','0000-00-00 00:00:00'),(58,0,0,'ANGIO BIFURCATION AORTOGRAPHY WITH RUN OFF - NORMAL','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong><span style=\"font-size:12pt\">MSCT ANGIOGRAPHY OF ARCH OF AORTA &nbsp;&amp; THORACIC AORTA:</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">MSCT bifurcation angiography was performed after giving intra venous non-ionic contrast.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Bifurcation appears normal.</span></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Right lower limb:&nbsp;</strong></span><br />\r\n<span style=\"font-size:10pt\"><span class=\"marker-yellow\">Common femoral artery appears normal.<br />\r\nCommon iliac artery appears normal. Internal and external iliac arteries appear normal. No evidence of stenosis is seen.<br />\r\nProfunda femoral artery appears normal.<br />\r\nSuperior femoral artery appears normal.<br />\r\nPopliteal artery and trifurcation appears normal.<br />\r\nDorsalis pedis artery is well-visualized. No evidence of stenosis is seen.</span></span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Left lower limb:</strong></span><br />\r\n<span style=\"font-size:10pt\"><span class=\"marker-yellow\">Common femoral artery appears normal.<br />\r\nCommon iliac artery appears normal. Internal and external iliac arteries appear normal. No evidence of stenosis is seen.<br />\r\nProfunda femoral artery appears normal.<br />\r\nSuperior femoral artery appears normal.<br />\r\nPopliteal artery and trifurcation appears normal.<br />\r\nDorsalis pedis artery is well-visualized. No evidence of stenosis is seen.</span></span></span></p>\r\n','CTSN','N',' ','Y','thims','2019-03-06 12:48:51','','0000-00-00 00:00:00'),(59,0,0,'ANGIO OF BILATERAL LOWER LIMBS WITH DISTAL AORTA','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>MSCT ANGIOGRAPHY OF BILATERAL LOWER LIMBS WITH DISTAL AORTA:</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">MSCT angiography was performed after injecting non-ionic contrast through antecubital vein. These images were reviewed with MIP, SSD and Volume Rendering.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">There are noted multiple calcified and atheromatous plaques involving lower abdominal aorta, bifurcation and proximal common iliac artery with partial luminal narrowing.<br />\r\nBoth common femoral, Superior femoris and profunda femoral arteries appear normal.</span></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><strong>On the right side,</strong> <span class=\"marker-yellow\">there is seen thrombus formation in proximal popliteal artery with collateral circulation around the knee joint and resultant reformation of trifurcation. Anterior tibial, posterior tibial and paroneal arteries appear normal.</span></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><strong>On the left side,</strong> <span class=\"marker-yellow\">complete block of proximal posterior tibial artery with large collateral circulation from descending genicular &nbsp;resulting into reformation of posterior tibial and peroneal arteries. Normal appearance of popliteal and anterior tibial arteries.</span></span></span></p>\r\n','CTSN','N',' ','Y','thims','2019-03-06 12:53:06','','0000-00-00 00:00:00'),(60,0,0,'MSCT ANGIOGRAPHY OF BOTH LOWER LIMBS','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : MSCT ANGIOGRAPHY OF BOTH LOWER LIMBS&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span><span style=\"font-size:10pt\"> <span class=\"marker-yellow\">MSCT angiography of both lower limbs was performed after giving intra venous non-ionic contrast.</span></span></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Findings:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Bifurcation appears normal.</span></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><strong><span style=\"font-size:12pt\">Right lower limb:</span></strong><span style=\"font-size:10pt\">&nbsp;</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Common femoral artery appears normal.<br />\r\nCommon iliac artery appears normal. Internal and external iliac arteries appear normal. No evidence of stenosis is seen.<br />\r\nProfunda femoral artery appears normal.<br />\r\nSuperficial femoral artery appears normal.<br />\r\nPopliteal artery and trifurcation appears normal.<br />\r\nDorsalis pedis artery is well-visualized. No evidence of stenosis is seen.</span></span></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Left lower limb:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Common femoral artery appears normal.<br />\r\nCommon iliac artery appears normal. Internal and external iliac arteries appear normal. No evidence of stenosis is seen.<br />\r\nProfunda femoral artery appears normal.<br />\r\nSuperficial femoral artery appears normal.<br />\r\nPopliteal artery and trifurcation appears normal.<br />\r\nDorsalis pedis artery is well-visualized. No evidence of stenosis is seen.</span></span></span></p>\r\n','CTSN','N',' ','Y','thims','2019-03-06 13:37:30','','0000-00-00 00:00:00'),(61,0,0,'MSCT INTRACRANIAL ANGIOGRAPHY OF BRAIN','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : MSCT INTRACRANIAL ANGIOGRAPHY OF BRAIN&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span><span style=\"font-size:10pt\"> <span class=\"marker-yellow\">MSCT angiography of brain was performed after I.V. injection of non-ionic contrast. The angiogram was viewed in multiple projections to bring all visualised arteries.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Brain Plain:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both cerebral hemispheres appear normal. No e/o any focal or diffuse lesion is seen.<br />\r\nVentricular system and basal cisterns appear normal.<br />\r\nNo evidence of midline shift is seen.<br />\r\nCerebellum and brainstem appear normal.<br />\r\nNo evidence of subdural, extradural or intraparenchymal haemorrhage is seen.<br />\r\nBony skull vault appears normal.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">On brain angiography:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both middle cerebral arteries arise normally from the internal carotid on either side and forms normal insular loops. There is no circumscribed vascular narrowing or dilatation.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">The internal carotid arteries show normal course and caliber and are symmetrically disposed. Each carotid siphon is normal, showing no displacement or extrinsic compression.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">The anterior cerebral artery shows no signs of narrowing or displacement.&nbsp;<br />\r\nThe basilar artery shows a normal course and caliber and divides into normal size posterior cerebral arteries. The anterior and posterior communicating arteries on each side are normally developed and of normal size.&nbsp;<br />\r\nBoth vertebral arteries appear normal.</span></span></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Impression:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">The CT angiography reveals normal appearance of intracranial vessels.&nbsp;<br />\r\nNo evidence of AVM or aneurysm.</span></span></span></p>\r\n','CTSN','N',' ','Y','thims','2019-03-06 13:42:03','','0000-00-00 00:00:00'),(62,0,0,'CT SCAN ANGIOGRAPHY OF HEAD & NECK','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN ANGIOGRAPHY OF HEAD &amp; NECK&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span><span style=\"font-size:10pt\"> <span class=\"marker-yellow\">MSCT angiography of head and neck was performed after I.V. injection of non-ionic contrast. The angiogram was viewed in multiple projections to bring all visualised arteries.</span></span></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Findings:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both middle cerebral arteries arise normally from the internal carotid on either side and forms normal insular loops. There is no circumscribed vascular narrowing or dilatation.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">The anterior cerebral artery shows no signs of narrowing or displacement.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">The basilar artery shows a normal course and caliber and divides into normal size posterior cerebral arteries. The anterior and posterior communicating arteries on each side are normally developed and of normal size.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">The other evaluable portions of the neurocranium show no abnormalities.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Common carotid artery, carotid bulb and bifurcation appear normal on either side.&nbsp;<br />\r\nBoth internal carotid and external carotid arteries appear normal.<br />\r\nNo stenosis, AVM or aneurysm is seen.<br />\r\nBoth vertebral arteries appear normal.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Impression:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">The CT angiography of head and neck vessels reveals normal appearance.<br />\r\nNo stenosis, AVM or aneurysm.</span></span></span></p>\r\n','CTSN','N',' ','Y','thims','2019-03-06 13:45:57','','0000-00-00 00:00:00'),(63,0,0,'MSCT ANGIOGRAPHY OF RIGHT UPPER LIMB','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : MSCT ANGIOGRAPHY OF RIGHT UPPER LIMB&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Technique:</span></span></strong><span style=\"font-size:10pt\"><span style=\"line-height:15px\"> <span class=\"marker-yellow\">MSCT angiography was performed after injecting non-ionic contrast through antecubital vein. These images were reviewed with MIP, SSD and Volume Rendering.</span>&nbsp;</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Findings:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Both subclavian arteries appear normal in course and calibre.&nbsp;<br />\r\nBoth axillary and brachial arteries show normal course and calibre.<br />\r\nRadial and ulnar arteries also appear normal on both sides.<br />\r\nNo evidence of any abnormal feeder artery or draining vein is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Screening of cervical spine does not reveal any abnormality. No evidence of osteophytes or neural foraminal narrowing. &nbsp;</span></span></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Impression:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Normal CT angiography study of both upper limbs. No compression over subclavian artery on either side.&nbsp;<br />\r\nNormal cervical spine.&nbsp;</span></span></span></p>\r\n','CTSN','N',' ','Y','thims','2019-03-06 13:49:33','','0000-00-00 00:00:00'),(64,0,0,'X-RAY RIGHT ANKLE AP-LAT VIEW','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY RIGHT ANKLE AP-LAT VIEW &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\"><span class=\"marker-yellow\">Ankle joint appears normal.</span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span class=\"marker-yellow\">Lower tibia and fibula appear normal.&nbsp;</span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span class=\"marker-yellow\">Tarsal bones under vision appear normal.</span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span class=\"marker-yellow\">No evidence of fracture or dislocation seen.</span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span class=\"marker-yellow\">No evidence of lytic or sclerotic lesions seen.&nbsp;</span></span></p>\r\n','XRY','N',' ','Y','thims','2019-03-06 13:52:30','','0000-00-00 00:00:00'),(65,0,0,'ANTENATAL USG 1st TRIMESTER','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : </strong><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,sans-serif\"><strong>ANTENATAL USG</strong></span></span><strong> &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>USG REPORT</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><strong>LMP:</strong> </span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;<span style=\"line-height:15px\"><span style=\"font-size:10pt\">, &nbsp; <strong>GA by LMP: </strong></span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;<br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:10pt\">&nbsp;&nbsp; &nbsp; &nbsp;<br />\r\n<span class=\"marker-yellow\">Single live intrauterine foetus.<br />\r\nFoetal cardiac pulsation and foetal movements are present.<br />\r\nHeart Rate -&nbsp;160 &nbsp;bpm.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Placenta is encircling, more on right side posterior and of grade I maturity.<br />\r\nLiquor amount is adequate for gestational age&nbsp;</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Foetal Maturity:</span></strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">BPD&nbsp; &nbsp;&nbsp;</span></span><span class=\"marker-blue\">Textbox</span>&nbsp;<br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:10pt\">FL&nbsp; &nbsp; &nbsp; </span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Average Age (by USG) :</strong></span><span style=\"font-size:10pt\">&nbsp; &nbsp;</span></span>&nbsp;<span class=\"marker-blue\">Textbox</span><span style=\"line-height:15px\"><span style=\"font-size:10pt\">&nbsp; &nbsp; &nbsp; &nbsp;</span><span style=\"font-size:12pt\"><strong>EDD by Average G.A.</strong></span><span style=\"font-size:10pt\"> = </span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Cervical length is adequate (4.3 cm). &nbsp;Internal O.S. is closed.&nbsp;<br />\r\nNo obvious congenital anomaly detected on present study.&nbsp;<br />\r\nNasal bone is present.<br />\r\nNT measures 1.4 mm (within normal limits.)</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Impression:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">A Single live intrauterine fetus of maturity &nbsp;w &nbsp;d.&nbsp;<br />\r\nNo obvious congenital anomaly detected on present study.&nbsp;</span></span></span></p>\r\n','USG','N',' ','Y','thims','2019-03-06 14:11:56','thims','2019-03-06 14:14:25'),(66,0,0,'ANTENATAL USG 2nd TRIMESTER','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : ANTENATAL USG &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>USG REPORT</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Single live intrauterine foetus.<br />\r\nFoetal cardiac pulsation and foetal movements are present.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Heart Rate -&nbsp;150 &nbsp;bpm.<br />\r\nPlacenta is &nbsp;anterior of grade I maturity.<br />\r\nNo Placenta praevia is seen.<br />\r\nLiquor amount is adequate for gestational age&nbsp;</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Foetal Maturity:</span></strong></span></p>\r\n\r\n<table border=\"0\" cellpadding=\"1\" cellspacing=\"1\" style=\"width:500px\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"width:25%\">\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">BPD</span></span></p>\r\n			</td>\r\n			<td style=\"width:25%\">&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</td>\r\n			<td>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;week&nbsp;&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;days</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">HC</span></span></p>\r\n			</td>\r\n			<td>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</td>\r\n			<td>\r\n			<p>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;week&nbsp;&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;days</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">FL</span></span></p>\r\n			</td>\r\n			<td>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</td>\r\n			<td>\r\n			<p>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;week&nbsp;&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;days</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Average Age:</strong>&nbsp; &nbsp;</span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;<span style=\"line-height:15px\"><span style=\"font-size:12pt\"> weeks </span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;<span style=\"line-height:15px\"><span style=\"font-size:12pt\"> day &nbsp; &nbsp; &nbsp;<strong>EDD by Average G.A.</strong> = </span></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Cervical length is adequate. &nbsp;Internal O.S. is closed.&nbsp;<br />\r\nNo obvious congenital anomaly detected on present study.&nbsp;<br />\r\nFoetal stomach bubble noted. &nbsp;Foetal spine appears normal&nbsp;<br />\r\nBoth kidneys and bladder appear normal.</span></span></span></p>\r\n\r\n<p><strong><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Impression:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">A Single live intrauterine foetus of maturity&nbsp; w d.&nbsp;<br />\r\nNo obvious congenital anomaly detected on present study.&nbsp;</span></span></span></p>\r\n','USG','N',' ','Y','thims','2019-03-06 14:24:11','','0000-00-00 00:00:00'),(67,0,0,'CT ANGIOGRAPHY OF THE AORTA','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT ANGIOGRAPHY OF THE AORTA&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span><br />\r\n<span style=\"font-size:10pt\"><span class=\"marker-yellow\">MDCT Angiography of thoracic aorta was performed after IV injection of contrast medium. The angiogram was performed from the level of the aortic arch till aortic bifurcation.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Findings:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">The study reveals evidence of aneurysmal dilatation of ascending aorta with large intimal flap extending from aortic root through ascending aorta, arch of aorta and descending aorta upto aortic bifurcation ( aortic dissection Stanford type A).</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">There is seen possible extension of dissection into proximal right innominate, left carotid &amp; left subclavian arteries and proximal left common iliac artery. However no e/o thrombosis of these vessels is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Maximum diameter of ascending aorta is- 6.5 cm, Arch of aorta is- 3.5 cm, descending thoracic aorta-3.3 cm and abdominal aorta 2.8 cm.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">There is seen spiraling of false lumen along outer aspect of aorta with decreased opacification as compared to true lumen. However no e/o thrombosis of false lumen is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Celiac &amp; superior mesenteric arteries are mainly seen to arise from true lumen with extension of flap at ostium, however the caliber is normal.<br />\r\nRight renal artery arises from true lumen and has normal caliber.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Major neck vessels and left renal artery arise from false lumen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Mild bilateral pleural effusion noted.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Patchy areas of ground glass haziness with mild interlobular septal thickening and mosaic attenuation are seen in both lung fields.</span></span></span></p>\r\n','CTSN','N',' ','Y','thims','2019-03-06 14:44:58','','0000-00-00 00:00:00'),(68,0,0,'CT ANGIOGRAPHY OF THE THORACIC AORTA','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT ANGIOGRAPHY OF THE THORACIC AORTA&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Technique:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">MDCT Angiography of thoracic aorta was performed after IV injection of contrast medium. The aniogram was performed from the level of the aortic arch till the upper abdomen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Findings:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">There is e/o large intimal defect flap seen originating from the proximal ascending aorta. Flap is extending to the ascending aorta, aortic arch, descending thoracic aorta and infradiaphragmatically in abdominal aorta.&nbsp;<br />\r\nOn contrast images, true lumen and false lumen can be made out. False lumen shows delayed excretion of contrast. &nbsp;<br />\r\nMaximum diameter of ascending aorta is-52 mm.<br />\r\n&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;Arch of aorta is-40mm.<br />\r\n&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;Descending aorta-35mm.<br />\r\nFindings suggest possibility of changes of aortic dissection.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">(Suggested clinical correlation)</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">There is e/o mild thrombosis seen in the proximal ascending aorta extending to the arch of aorta.<br />\r\nAtheromatous changes are noted in ascending aorta, arch of aorta and descending aorta with calcification.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">The defect is not seen to be extending to any of the branches of aortic arch with normal origin of brachiocephalic trunk, left common carotid artery, left subclavian artery.</span></span></span></p>\r\n','CTSN','N',' ','Y','thims','2019-03-06 14:51:09','','0000-00-00 00:00:00'),(69,0,0,'SONOGRAPHY OF ABDOMEN AND PELVIS','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : </strong><span style=\"line-height:100%\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,sans-serif\"><strong>SONOGRAPHY OF ABDOMEN AND PELVIS</strong></span></span></span><strong> &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>USG REPORT</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Liver is normal in size, shape and echopattern.<br />\r\nNo evidence of focal or diffuse lesion seen. Intrahepatic biliary radicles are normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Gall bladder is distended and normal. No evidence of calculus, changes of cholecystitis or mass lesion is seen.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Common bile duct appears normal in caliber.<br />\r\nPortal vein appears normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Pancreas appears normal in size and echopattern. No evidence of any mass lesion, intra or peripancreatic fluid collection is seen.&nbsp;<br />\r\nSpleen appears normal in size and echotexture.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both kidneys are normal in size, shape and echopattern with preserved Cortico-medullary differentiation. No evidence of calculus, hydronephrosis or mass is seen on either side.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of significant pre-para aortic or mesenteric lymphadenopathy.<br />\r\nNo evidence of abnormal dilatation of bowel loops is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.<br />\r\nProstate appears normal in size and echotexture.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Approx. 8 mm sized distended fluid filled, blind ended, tubular, aperistaltic and non-compressible structure is seen in RIF s/o appendix with approx. 8 mm sized echogenic material within (appendicolith).<br />\r\nMinimal peri-appendiceal fluid is seen with few subcentimeter sized adjacent mesenteric lymphnodes.<br />\r\nAbove findings are suggest changes of acute appendicitis.</span></span></span></p>\r\n','USG','N',' ','Y','thims','2019-03-06 14:55:49','','0000-00-00 00:00:00'),(70,0,0,'X-RAY CHEST - PA (STANDING) VIEW','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY&nbsp; ELBOW AP / LAT. VIEW&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Cardiomegaly noted with RV type of contour.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Prominent vascular markings are seen in both lung fields.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">ADV: 2D ECHO to rule out ASD.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Both lung fields otherwise appear normal. No definite evidence of collapse, consolidation or mass lesion is seen.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Both costophrenic angles are clear.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Both domes of diaphragm appear normal.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Visualised bony thorax appears normal.</span></span></p>\r\n','XRY','N',' ','Y','thims','2019-03-06 15:00:44','','0000-00-00 00:00:00'),(71,0,0,'CT SCAN THORAX','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN THORAX&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span><span style=\"font-size:10pt\"> &nbsp;<span class=\"marker-yellow\">MDCT imaging was performed using thin contiguous axial plain &amp; contrast scan of thorax from thoracic inlet to lung bases after giving I.V. contrast.&nbsp;</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Findings:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">The study reveals evidence of multiple small nodular opacities scattered in anterior segment of right upper lobe, right middle lobe, superior and lateral basal segment of right lower lobe, apico-posterior segment of left upper lobe and superior segment of left lower lobe with few of them showing irregular margins.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Multiple enlarged heterogenously enhancing para-aortic and left axillary lymphnodes noted with adjacent areas of fat stranding. The largest in axillary region measures 19 x 15 mm.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Few subcentimeter sized pre-paratracheal lymphnodes noted.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Rest of the lung parenchyma appears normal.<br />\r\nTrachea and major bronchi appear normal.<br />\r\nArch of aorta and major vessels appear normal.<br />\r\nNo evidence of pleural or pericardial effusion.<br />\r\nVisualized esophagus appears normal.&nbsp;<br />\r\nBony thorax appears normal except degenerative changes.</span></span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>COMMENTS:</strong></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Multiple small nodular opacities scattered in anterior segment of right upper lobe, right middle lobe, superior and lateral basal segment of right lower lobe, apico-posterior segment of left upper lobe and superior segment of left lower lobe with few of them showing irregular margins.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Multiple enlarged heterogenously enhancing para-aortic and left axillary lymphnodes noted with adjacent areas of fat stranding.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Above findings suggest possibility of infective etiology most likely.<br />\r\nClinical correlation and further evaluation would be of help.</span></span></span></p>\r\n','CTSN','N',' ','Y','thims','2019-03-06 15:06:13','leena','2019-03-07 14:50:51'),(72,0,0,'X RAY KNEE JOINT','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : &nbsp;<span style=\"line-height:15px\">X-RAY PELVIS WITH BOTH HIP AP VIEW<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; X-RAY LEFT KNEE AP LAT<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; X-RAY CERVICAL SPINE LAT<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; X-RAY L-S SPINE LAT</span></strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Old displaced fracture noted through roof and posterior wall of left acetabulum extending into ischium with widening of left acetabular fossa.<br />\r\nMild superior dislocation of left femoral head noted with flattening of left femoral head along supero-medial aspect, cortical irregularity and subchondral cystic changes suggests degenerative changes.<br />\r\nDiffuse osteoporosis noted.<br />\r\nDegenerative changes with osteophytes and facetal arthropathy at L4-L5 &amp; L5-S1 level is seen in lumbar and cervical spine.<br />\r\nEarly osteoarthritic changes in left knee joint. No e/o fracture or dislocation</span></span></span><br />\r\n&nbsp;</p>\r\n','XRY','N',' ','Y','thims','2019-03-06 15:12:45','leena','2019-03-14 14:11:25'),(73,0,0,'CT SCAN CERVICAL SPINE - PLAIN','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN CERVICAL SPINE - PLAIN&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\"><strong>Technique:</strong></span></span><span style=\"font-size:10pt\"><span style=\"line-height:15px\"> <span class=\"marker-yellow\">MDCT imaging was performed using thin axial plain scan of cervical spine.</span>&nbsp;</span></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Findings:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">The study reveals evidence of basilar invagination / impression with high position of odontoid process and C2 vertebral body causing marked compression over cervico-medullary junction with angulation and thinning.&nbsp;<br />\r\nAssociated severe thinning of visualised spinal cord and syrinx noted.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">The tip of dens is about 14 mm above the chamberlain&rsquo;s line.<br />\r\nPlatybasia is noted as evidenced by increase in basal angle / welcher angle ( nasion &ndash; tuberculum &ndash; basion angle) which measures approx. 144 - 146 degree.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Occipitalisation of atlas is noted. Congenital fusion of C2 and C3 vertebra is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">There is seen increased distance between anterior arch of atlas and tip of odontoid, measuring approx. 6 mm on sagittal plane -&nbsp;suggest atlanto-axial subluxation.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Rest of the vertebral bodies appears normal in size, shape, alignment and signal intensity.<br />\r\nNo definite fracture, erosion or sclerosis is seen. Facet joint appears normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Prominent anterior basal cisterns and anterior subarachnoid space noted.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Marginally low lying cerebellar tonsils is noted.<br />\r\nThere is no significant movement of dense seen on flexion and extension of cervical spine.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Impression:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Occipitalisation of atlas with basilar invagination, platybasia and atlanto-axial subluxation causing marked compression over cervico-medullary junction with angulation and severe thinning.<br />\r\nSyrinx formation with thinning of cervical cord as described above.</span></span></span></p>\r\n','CTSN','N',' ','Y','thims','2019-03-06 15:24:35','mayur','2019-03-14 15:04:43'),(74,0,0,'X-RAY KUB','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY KUB&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Small abnormal radio-opaque shadow is seen at the level of transverse process of L2 vertebrae on left side s/o renal calculus.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Another tiny abnormal radio-opaque shadow is seen at the level of intervertebral disc of L2-L3 vertebrae on right side s/o renal calculus.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Ureteric stent noted in situ on left side.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No abnormal bowel gas pattern is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Degenerative changes are seen in lumbar spine.</span></span></span></p>\r\n','XRY','N',' ','Y','thims','2019-03-06 15:28:04','','0000-00-00 00:00:00'),(75,0,0,'USG THORAX (PORTABLE)','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : USG THORAX (PORTABLE)&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Mild to moderate pleural effusion is seen on either side with passive atelectasis of adjacent lung.<br />\r\nApprox. 300 cc on right side and 450 cc on left side.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Air sonogram is seen in collapsed left lower zone possibly due to underlying consolidation.</span></span></span><br />\r\n&nbsp;</p>\r\n','USG','N',' ','Y','thims','2019-03-06 15:32:56','','0000-00-00 00:00:00'),(76,0,0,'X-RAY CHEST AP (SITTING) VIEW','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY CHEST AP (SITTING) VIEW&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Blunting of both costophrenic angles noted with haziness in left lower zone s/o bilateral effusion, more on left side.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Rests of the lung fields appear clear.&nbsp;</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Transverse cardiac size is within normal limits.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Both hilar shadows appear normal.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Both domes of diaphragm appear normal.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Bony thorax appears normal.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">No evidence of cervical rib noted.</span></span></p>\r\n','XRY','N',' ','Y','thims','2019-03-06 15:46:20','','0000-00-00 00:00:00'),(77,0,0,'X-RAY CHEST PA (STANDING) VIEW','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY CHEST PA (STANDING) VIEW&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Blunting of left costophrenic angle noted with haziness in left lung field s/o left sided effusion.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Blunting of right costophrenic angle noted s/o effusion.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Cardiac size &nbsp;cannot be commented</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Bony thorax appears normal.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">No evidence of cervical rib noted.</span></span></p>\r\n','XRY','N',' ','Y','thims','2019-03-06 15:48:39','','0000-00-00 00:00:00'),(78,0,0,'X-RAY KUB','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY KUB&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">DJ stent is seen in situ on both sides.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Small radio-opacity is noted in the right renal fossa at the level of L1-L2 vertebrae possibility of calculus.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Both psoas lines appear normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">No abnormal bowel gas pattern is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Bones and joints under vision appear normal.</span></span></span></p>\r\n','XRY','N',' ','Y','thims','2019-03-06 15:53:46','','0000-00-00 00:00:00'),(79,0,0,'BOTH LOWER LIMB VENOUS DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : BOTH LOWER LIMB VENOUS DOPPLER &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>B MODE:</strong></span><span style=\"font-size:10pt\"> <span class=\"marker-yellow\">Both external iliac, common femoral, superficial femoral, deep femoral, popliteal, anterior &amp; posterior tibial veins appear normal. No evidence of DVT noted.</span></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>COLOUR DOPPLER:</strong></span><span style=\"font-size:10pt\"> <span class=\"marker-yellow\">The deep as well as superficial veins show normal color filling and compressibility. &nbsp;No evidence of thrombosis is seen.<br />\r\nBilateral &nbsp;SPJ appear competent.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both Sapheno-femoral junctions show reflux on valsalva suggest incompetent valves. &nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Bilateral GSV appears dilated in upper thigh, measures 8 mm on right side and 6 mm on left side.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Superficial venous varicosities noted along medial aspect of thigh and medial aspect of leg on right side and postero-medial aspect of left leg; majority of them are draining into GSV territory. Small venous varicosities noted at bilateral ankle regions.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Incompetent perforator noted in upper 1/3rd and middle 1/3rd of leg on right side along medial aspect and &nbsp; middle 1/3rd of postero-medial aspect of left leg.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of significant subcutaneous edema seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Comments:&nbsp;</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Changes of varicose vein as described (right &gt; left) with incompetent bilateral SFJ and perforators as described.<br />\r\nNo evidence of DVT.</span></span></span></p>\r\n','DOP','N',' ','Y','thims','2019-03-06 15:58:10','leena','2019-03-07 15:07:59'),(80,0,0,'BOTH LOWER LIMB VENOUS DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : BOTH LOWER LIMB VENOUS DOPPLER&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>B MODE:</strong></span><span style=\"font-size:10pt\"> <span class=\"marker-yellow\">Both external iliac, common femoral, superficial femoral, deep femoral, popliteal, anterior &amp; posterior tibial veins appear normal. The veins distend well on valsalva. No evidence of DVT noted.</span></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>COLOUR DOPPLER:</strong> </span><span class=\"marker-yellow\"><span style=\"font-size:10pt\">The deep as well as superficial veins show normal color filling and compressibility. No evidence of thrombosis is seen.<br />\r\nBoth sapheno-popliteal junctions are normal. No evidence of incompetence is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">There is seen reflux on valsalva at bilateral SFJ, suggest incompetent valves.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">The great saphenous vein appears dilated along the course on either side.<br />\r\nOn right side it measures 7 mm and 9 mm on left side. On left side dilated GSV appears tortuous in course.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">An incompetent perforator noted in both leg in lower 1/3rd, along medial aspect.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Multiple large dilated superficial venous varicosities seen in medial aspect of left leg and lower thigh.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Small superficial venous varicosities noted in medial aspect of right leg.</span></span></span></p>\r\n\r\n<p><strong><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Comments:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Changes of varicose veins on either side as described (left &gt; right).<br />\r\nNo evidence of deep venous thrombosis on present study.</span></span></span></p>\r\n','DOP','N',' ','Y','thims','2019-03-06 16:04:35','','0000-00-00 00:00:00'),(81,0,0,'USG KUB','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : USG KUB&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Rt kidney measures- 107 x 46 mm<br />\r\nLt kidney measures-115 x 49 mm</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both kidneys show moderate hydronephrosis and hydroureter upto its distal end. No evidence of calculus or mass lesion is seen on either side.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both kidneys appear normal in size, shape, position and echotexture.<br />\r\nCortico-medullary differentiation is preserved on both sides.<br />\r\nNo evidence of perinephric collection is seen on either side.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Urinary bladder is distended and shows mild wall thickening 5-6 mm and approx 47 x 31 mm sized heterogenous echotexture lesion within lumen, along base and left lateral wall of urinary bladder involving both vesico-ureteric junction -&nbsp;suggest possibility of malignant mass lesion most likely.&nbsp;<br />\r\nNo evidence of calculus is seen.<br />\r\nClinical correlation and further evaluation/ biopsy would be of confirmatory help.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Visualized prostate appears normal in size and shows&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Pre void volume measures 300 cc.<br />\r\nPost void volume measures 230 cc. (significant)</span></span></span></p>\r\n','USG','N',' ','Y','thims','2019-03-06 16:10:13','','0000-00-00 00:00:00'),(82,0,0,'SONOGRAPHY OF ABDOMEN AND PELVIS (SCREENING)','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : SONOGRAPHY OF ABDOMEN AND PELVIS (SCREENING)&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>USG REPORT</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\"><strong>Clinical profile:</strong></span></span><span style=\"font-size:10pt\"><span style=\"line-height:15px\"> <span class=\"marker-yellow\">ca prostate. Post radical prostatectomy.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Liver is normal in size, shape and echopattern.<br />\r\nNo evidence of focal or diffuse lesion seen. Intrahepatic biliary radicles are normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Gall bladder is distended and normal. No evidence of calculus, changes of cholecystitis or mass lesion is seen.&nbsp;<br />\r\nCommon bile duct appears normal in caliber.<br />\r\nPortal vein appears normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Pancreas appears normal in size and echopattern. No evidence of any mass lesion, intra or peripancreatic fluid collection is seen.&nbsp;<br />\r\nSpleen appears normal in size and echotexture.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Both kidneys are normal in size, shape and echopattern with preserved Cortico-medullary differentiation. No evidence of calculus, hydronephrosis or mass is seen on either side.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">No evidence of significant pre-para aortic or mesenteric lymphadenopathy.<br />\r\nNo evidence of abnormal dilatation of bowel loops is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Urinary bladder is distended and shows multiple mobile calculi within largest measuring, 12 mm. No evidence of wall thickening or mass lesion is seen.<br />\r\nPre void- 350 cc. &nbsp; &nbsp; &nbsp; Post- void- 115 cc.<br />\r\nProstate is not seen- Post-operative.<br />\r\nNo evidence of recurrent mass lesion is seen in prostatic fossa.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">No e/o ascites seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\"><strong>Comments:</strong></span></span><br />\r\n<span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span class=\"marker-yellow\">Post prostatectomy status.&nbsp;<br />\r\nMultiple bladder calculi.</span></span></span></p>\r\n','USG','N',' ','Y','thims','2019-03-06 16:41:04','','0000-00-00 00:00:00'),(83,0,0,'USG KUB - SCREENING','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : USG KUB - SCREENING&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>USG REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Rt kidney measures - 93 x 43 mm.<br />\r\nLt kidney measures -105 x 58 mm.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Approx 47 x 44 mm sized exophytic simple cortical cyst is seen in lower pole of left kidney.<br />\r\nBoth kidneys are normal in size, shape and position and show mildly raised cortical echopattern.&nbsp;<br />\r\nCortico-medullary differentiation is preserved on both sides.<br />\r\nNo evidence of calculus, hydronephrosis or mass lesion is seen on either side.<br />\r\nNo evidence of perinephric collection is seen on either side.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Urinary bladder is distended and shows mild wall thickening with trabeculations, inner crenated margins (maximum wall thickness of 6 mm) and moving internal echoes within.<br />\r\nTwo diverticulae with moving internal echoes are seen arising from posterior and right lateral wall of urinary bladder lying adjacent to each other, one measuring 68 x 59 x 54 mm (110cc) with 8 mm neck and another 68 x 39 x 24 mm (40 cc) with 5 mm neck.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Pre void volume measures 130 cc.&nbsp;<br />\r\nPatient is unable to void.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Residual prostate appears normal in size (12 cc) and echotexture.</span></span></span></p>\r\n','USG','N',' ','Y','thims','2019-03-06 16:44:52','','0000-00-00 00:00:00'),(84,0,0,'CT SCAN ABDOMEN AND PELVIS FEMALE','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN ABDOMEN AND PELVIS&nbsp;&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Clinical profile:</strong></span><span style=\"font-size:10pt\"> <span class=\"marker-yellow\">K/C/O bladder TCC. Post TUR status</span></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span><span style=\"font-size:10pt\"> <span class=\"marker-yellow\">MDCT imaging was performed using thin contiguous axial scan of abdomen and pelvis with oral, per rectal and intravenous contrast.</span></span></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Findings:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">The study reveals evidence of well defined nodular mild heterogeneously enhancing soft tissue thickening along antero-superior and right lateral aspect of urinary bladder.&nbsp;<br />\r\nThe maximum thickness measures 18 mm.<br />\r\nNo evidence of calculus is seen.<br />\r\nBoth vesico-ureteric junctions appear normal. No e/o involvement is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Liver is normal in size and shape. No evidence of focal or diffuse lesion seen.&nbsp;<br />\r\nGall bladder doesn&rsquo;t reveal any radiodense calculus or mass lesion.&nbsp;<br />\r\nCommon bile duct appears normal in caliber. Intrahepatic biliary radicles are normal.<br />\r\nPancreas appears normal in size. No evidence of calcification, intra or peripancreatic fluid collection is seen.&nbsp;<br />\r\nSpleen appears normal in size.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both kidneys are normal in size, shape and position. No evidence of calculus, hydronephrosis or mass lesion is seen on either side.<br />\r\nBoth adrenal glands appear normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of significant peri-portal, peri-pancreatic, pre-para aortic or mesenteric lymphadenopathy.<br />\r\nAorta and both psoas muscles appear normal.<br />\r\nOpacified bowel loops appear normal. No evidence of abnormal dilatation, wall thickening or enhancing mass lesion is seen</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Prostate appears mildly enlarged in size and shows normal homogenous enhancement.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of free or loculated fluid collection is seen.</span></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>COMMENTS:&nbsp;</strong></span><br />\r\n<span style=\"font-size:10pt\"><span class=\"marker-yellow\">Well defined nodular mild heterogeneously enhancing soft tissue thickening along antero-superior &amp; right lateral aspect of urinary bladder- suggest possibility of residual/recurrent lesion most likely</span>.</span></span></p>\r\n','CTSN','N',' ','Y','thims','2019-03-06 16:48:13','leena','2019-03-07 12:49:59'),(85,0,0,'SONOGRAPHY OF ABDOMEN AND PELVIS','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : SONOGRAPHY OF ABDOMEN AND PELVIS&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Clinical profile:</strong></span><span style=\"font-size:10pt\"> <span class=\"marker-yellow\">k/c/o bladder transitional cell carcinoma.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Liver is normal in size, shape and echopattern.<br />\r\nNo evidence of focal or diffuse lesion seen. Intrahepatic biliary radicles are normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Gall bladder is distended and normal. No evidence of calculus, changes of cholecystitis or mass lesion is seen.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Common bile duct appears normal in caliber.<br />\r\nPortal and splenic vein appear normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Pancreas appears normal in size and echopattern. No evidence of any mass lesion, intra or peripancreatic fluid collection is seen.&nbsp;<br />\r\nSpleen appears normal in size and echotexture.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Right kidney shows mildly raised cortical echogenecity with moderate to gross hydronephrosis and hydroureter upto its distal end. Cortical thickness at mid pole is 7 mm.<br />\r\nBoth kidneys are normal in size, shape and position with preserved Cortico-medullary differentiation. No evidence of calculus, hydronephrosis or mass is seen on left side.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of significant pre-para aortic or mesenteric lymphadenopathy.<br />\r\nNo evidence of abnormal dilatation of bowel loops is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Urinary bladder is distended and shows approx. 40 x 18 mm sized lesion at bladder base involving right vesico-ureteric junction and possibly left vesico-ureteric junction. The fat plane between the lesion and fundus of uterus is lost suggest p/o invasion. No evidence of calculus.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of adnexal mass lesion is seen on either side.<br />\r\nNo evidence of ascites or free fluid in pelvis.</span></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong></span><br />\r\n<span style=\"font-size:10pt\"><span class=\"marker-yellow\">Lesion at bladder base involving right vesico-ureteric junction and possibly left vesico-ureteric junction with moderate to gross hydronephrosis and hydroureter on right side suggest possibility of mass lesion most likely.</span></span></span></p>\r\n','USG','N','3189','Y','thims','2019-03-06 16:53:30','leena','2019-08-07 12:42:11'),(86,0,0,'LEFT LOWER LIMB ARTERIAL DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : </strong><span style=\"line-height:100%\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,sans-serif\"><strong>LEFT LOWER LIMB ARTERIAL DOPPLER</strong></span></span></span><strong>&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Diffuse atheromatous changes noted in form of wall thickening and calcification causing diffuse narrowing of major arterial vessels on left side.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Left common femoral artery shows normal colour filling and monophasic waveform with approx. velocity of 220 cm/sec.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Stent noted in superficial femoral artery with no evidence of colour filling in proximal or distal half of superficial femoral and popliteal artery even on power doppler mode.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Left anterior tibial and proximal posterior tibial arteries appear significantly narrowed with reduced monophasic flow on colour Doppler study, possibly filled by collaterals</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Left posterior tibial artery at ankle appears blocked with no evidence of colour filling even on power doppler mode.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Multiple collaterals are seen in thigh and leg region.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Mild subcutaneous edema noted in back of knee, lower one third of thigh and leg region.</span></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong></span><span style=\"font-size:10pt\"> &nbsp;<br />\r\n<span class=\"marker-yellow\">Significant narrowing with almost absent flow involving superficial femoral, popliteal and posterior tibial artery at ankle with significantly decreased flow in anterior tibial and proximal posterior tibial arteries as mentioned.<br />\r\nCT ANGIO would be of confirmatory help.</span></span></span></p>\r\n','DOP','N',' ','Y','thims','2019-03-06 17:01:06','','0000-00-00 00:00:00'),(87,0,0,'USG KUB','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : USG KUB &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Rt kidney measures- 95 x 43 mm<br />\r\nLt kidney measures- 107 x 50 mm</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Both kidneys show multiple well defined simple cystic lesions of varying sizes largest measuring approx. 30 x 27 mm in mid pole of right kidney and 22 x 19 mm in lower pole of left kidney.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Both kidneys appear normal in size, shape, position and echotexture.<br />\r\nCortico-medullary differentiation is preserved on both sides.<br />\r\nNo evidence of calculus, hydronephrosis or mass lesion is seen on either side.<br />\r\nNo evidence of perinephric collection is seen on either side.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Urinary bladder is distended and shows ill defined hyperechoic lesion ( 40 x 36 mm) devoid of vascularity near base of bladder which moves on changing position possibility of blood clots most likely. No evidence of calculus is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Pre void volume measures 490 cc.<br />\r\nPost void volume measures 67 cc.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Prostate appears enlarged in size (55 cc).</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Multiple GB calculi noted.</span></span></span></p>\r\n','USG','N',' ','Y','thims','2019-03-06 17:03:31','','0000-00-00 00:00:00'),(88,0,0,'X-RAY RIGHT KNEE AP-LAT VIEW','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY RIGHT KNEE AP-LAT VIEW&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Well-defined sclerotic lesion is seen in medial aspect of metaphysis of upper end of tibia? bone infarct.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Knee joint appears normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Articular surface and joint space appears normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Patella, visualized lower end of femur and upper end fibula appear normal.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of fracture or dislocation seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Bones show normal mineralization.</span></span></span></p>\r\n','XRY','N',' ','Y','thims','2019-03-06 17:06:13','','0000-00-00 00:00:00'),(89,0,0,'BOTH LOWER LIMB ARTERIAL DOPPLER ','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : BOTH LOWER LIMB ARTERIAL DOPPLER&nbsp;&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><br />\r\n<span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">On grey scale imaging, Both Common iliac, external iliac, common femoral, superficial femoral, deep femoral, popliteal, anterior and posterior tibial arteries appear normal in course and caliber. No evidence of thrombus seen.</span></span></span></p>\r\n\r\n<p><br />\r\n<span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">On colour flow imaging, Both common femoral, superficial femoral, deep femoral, popliteal, anterior and posterior tibial arteries show normal color filling and triphasic spectral waveform.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">No evidence of any haemodynamically significant stenosis or thrombosis seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Comments: &nbsp;</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Normal arterial doppler study of the both lower limb.</span></span></span></p>\r\n','DOP','N',' ','Y','thims','2019-03-06 17:09:52','','0000-00-00 00:00:00'),(90,0,0,'BOTH LOWER LIMB VENOUS DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : BOTH LOWER LIMB VENOUS DOPPLER&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>B MODE:</strong></span><span style=\"font-size:10pt\"> <span class=\"marker-yellow\">Both external iliac, common femoral, superficial femoral, deep femoral, popliteal, anterior &amp; posterior tibial veins appear normal. No evidence of DVT noted.</span></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>COLOUR DOPPLER:</strong></span><span style=\"font-size:10pt\"> <span class=\"marker-yellow\">The deep as well as superficial veins show normal color filling and compressibility. No evidence of thrombosis is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both Sapheno-femoral and sapheno-popliteal junction are normal. No evidence of incompetence is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of varicosities are seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of significant subcutaneous edema seen.</span></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><strong>Comments:</strong>&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span class=\"marker-yellow\">Normal both lower limb venous Doppler.<br />\r\nNo evidence of deep venous thrombosis on present study.</span></span></span><br />\r\n&nbsp;</p>\r\n','DOP','N',' ','Y','thims','2019-03-06 17:16:12','','0000-00-00 00:00:00'),(91,0,0,'BOTH UPPER LIMB VENOUS DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : BOTH UPPER LIMB VENOUS DOPPLER&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Both subclavian, axillary, brachial, cephalic, basilic, radial and ulnar veins appears normal in course and compressibility.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">These veins show normal color filling and compressibility with augmentation of flow. No evidence of thrombosis is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">No e/o subcutaneous edema is seen.</span></span></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Comments:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Normal both upper limb venous Doppler.</span></span></span></p>\r\n','DOP','N',' ','Y','thims','2019-03-06 17:19:14','','0000-00-00 00:00:00'),(92,0,0,'BOTH UPPER LIMB VENOUS DOPPLER (FISTULA)','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : </strong><span style=\"line-height:100%\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,sans-serif\"><strong>BOTH UPPER LIMB VENOUS DOPPLER</strong></span></span></span><strong> &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>B MODE:</strong></span><span style=\"font-size:10pt\">&nbsp;<br />\r\n<span class=\"marker-yellow\">Both subclavian, axillary, brachial, cephalic, basilic, radial and ulnar veins appear normal in course and compressibility. The veins distend well on valsalva. No evidence of DVT noted.</span></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Colour Doppler:</strong></span><span style=\"font-size:10pt\">&nbsp;<br />\r\n<span class=\"marker-yellow\">Both subclavian, axillary, brachial, cephalic, basilic, radial and ulnar veins appear normal in course and compressibility.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">These veins show normal color filling and compressibility with augmentation of flow. No evidence of thrombosis is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No e/o subcutaneous edema is seen.</span></span></span></p>\r\n','DOP','N',' ','Y','thims','2019-03-06 17:21:41','thims','2019-03-06 17:22:31'),(93,0,0,'SONOGRAPHY OF BOTH BREASTS','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : SONOGRAPHY OF BOTH BREASTS&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>USG REPORT</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>RIGHT BREAST:</strong>&nbsp;</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Soft tissue of breast appears normal.<br />\r\nNo evidence of focal hypoechoic lesions.<br />\r\nNo evidence of skin thickening or nipple retraction is seen.<br />\r\nRetroareolar region appears normal.<br />\r\nThere is no evidence of dilatation of lactiferous ducts.<br />\r\nNo evidence of axillary lymphadenopathy is seen.</span></span></span></p>\r\n\r\n<p><strong><span style=\"line-height:15px\"><span style=\"font-size:12pt\">LEFT BREAST:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Soft tissue of breast appears normal.<br />\r\nNo evidence of focal hypoechoic lesions.<br />\r\nNo evidence of skin thickening or nipple retraction is seen.<br />\r\nRetroareolar region appears normal.<br />\r\nThere is no evidence of dilatation of lactiferous ducts.<br />\r\nNo evidence of axillary lymphadenopathy is seen.</span></span></span></p>\r\n\r\n<p><strong><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Comments:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Normal sonography of both breasts.</span></span></span></p>\r\n','USG','N',' ','Y','thims','2019-03-06 17:25:37','','0000-00-00 00:00:00'),(94,0,0,'X-RAY CHEST - PA (STANDING) VIEW','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY CHEST - PA (STANDING) VIEW&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Bronchiectatic changes are seen in left mid and lower zone.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Both costophrenic angles are clear.&nbsp;</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Transverse cardiac size is within normal limits.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Both hilar shadows appear normal.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Both domes of diaphragm appear normal.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Bony thorax appears normal.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">No evidence of cervical rib noted.</span></span></p>\r\n','XRY','N',' ','Y','thims','2019-03-06 17:27:41','','0000-00-00 00:00:00'),(95,0,0,'CT SCAN THORAX (PLAIN)','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN THORAX (PLAIN)&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\"><strong>Technique:&nbsp;</strong></span></span><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">MDCT imaging was performed using thin contiguous axial scan of thorax from thoracic inlet to lung bases without I.V. contrast.&nbsp;</span></span></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Findings:</span></span></strong></p>\r\n\r\n<p>&nbsp;<span class=\"marker-blue\">TextArea</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">The study reveals evidence of diffuse mild bronchial wall thickening involving segmental and subsegmental bronchi in both lungs along with areas of increased and decreased attenuation (mosaic perfusion) -- suggest changes of bronchitis / bronchiolitis. </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">Small subsegmental fibrotic collapse noted in superior segment of right lower lobe. Small subpleural fibro-nodular opacities noted in posterior basal segment of right lower lobe with mild thickening of adjacent pleura showing calcified foci. </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">Trachea and major bronchi appear normal. Arch of aorta and major vessels appear normal. No evidence of enlarged mediastinal or hilar lymphnodes is seen on unenhanced scan. </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">No evidence of pleural or pericardial effusion. Visualized esophagus appears normal.&nbsp; </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">Old healed fractures noted in right 3rd &amp; 4th ribs. Visualized portion of liver and adrenal glands appear normal.</span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong></span><br />\r\n<span style=\"font-size:10pt\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br />\r\n<span class=\"marker-yellow\">CT visualization of diffuse mild bronchial wall thickening involving segmental and subsegmental bronchi in both lungs along with areas of increased and decreased attenuation (mosaic perfusion) -- suggest changes of bronchitis / bronchiolitis.<br />\r\nSmall subsegmental fibrotic collapse in superior segment of right lower lobe.<br />\r\nSmall subpleural fibro-nodular opacities in posterior basal segment of right lower lobe with mild thickening of adjacent pleura showing calcified foci.</span></span></span></p>\r\n','RAD','N',' ','Y','thims','2019-03-06 17:31:26','leena','2019-03-07 14:47:25'),(96,0,0,'USG BOTH BREAST','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : USG BOTH BREAST&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><strong><span style=\"line-height:15px\"><span style=\"font-size:12pt\">RIGHT BREAST:&nbsp;</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Soft tissue of right breast appears normal.<br />\r\nNo evidence of focal lesions, skin thickening or nipple retraction is seen.<br />\r\nNo evidence of axillary lymphadenopathy is seen.</span></span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><strong><span style=\"font-size:12pt\">LEFT BREAST:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Approx. 26 x 15 mm sized ill defined lobulated hypoechoic lesion with vascularity within is seen in lower and outer quadrant.<br />\r\nAnother approx. 20 x 15 mm sized similar characteristic lesion with posterior acoustic shadowing is seen in upper and outer quadrant.<br />\r\nNo evidence of significant axillary lymphadenopathy is seen on present study.</span></span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><strong><span style=\"font-size:12pt\">COMMENTS:</span></strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span class=\"marker-yellow\">Two ill defined lobulated hypoechoic lesions with posterior acoustic shadowing in upper and outer quadrant and lower and outer quadrant of left breast suggest possibility of malignant etiology most likely. &nbsp;(BIRADS 4)<br />\r\nBiopsy would be confirmatory.</span></span></span></p>\r\n','USG','N',' ','Y','thims','2019-03-06 17:36:35','','0000-00-00 00:00:00'),(97,0,0,'SONOGRAPHY OF ABDOMEN AND PELVIS','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : SONOGRAPHY OF ABDOMEN AND PELVIS&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>USG REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Clinical profile: Known case of ca. cervix. Post RT-CT status.<br />\r\nLiver is normal in size, shape and echopattern.<br />\r\nNo evidence of focal or diffuse lesion seen. Intrahepatic biliary radicles are normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Gall bladder is distended and normal. No evidence of calculus, changes of cholecystitis or mass lesion is seen.&nbsp;<br />\r\nCommon bile duct appears normal in caliber.<br />\r\nPortal vein appears normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Pancreas appears normal in size and echopattern. No evidence of any mass lesion, intra or peripancreatic fluid collection is seen.&nbsp;<br />\r\nSpleen appears normal in size and echotexture.&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Mild to moderate hydronephrosis &amp; hydroureter upto their lower end noted on both sides, more on right side. However both VUJ are not dilated. Renal pelvis on right side measures 20 mm &amp; on left side measures 12 mm.<br />\r\nBoth kidneys are normal in size, shape and show mildly raised echopattern with preserved Cortico-medullary differentiation. No evidence of calculus or mass is seen on either side.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">No evidence of significant pre-para aortic or mesenteric lymphadenopathy.<br />\r\nNo evidence of abnormal dilatation of bowel loops is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen. Pre void volume 400 cc. Post void volume is 365 cc.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">Uterus appears bulky and shows well defined collection within endometrial cavity. The size measures approx. 51 x 31 x 42 mm-35 cc.<br />\r\nCervix appears heterogenous in echotexture and shows air foci within with surrounding soft tissue edema.<br />\r\nRectum shows mild wall thickening with surrounding edema and loss of adjacent fat plane with cervix.<br />\r\nNo evidence of adnexal mass lesion is seen on either side.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"line-height:15px\">No evidence of ascites or free fluid in pelvis.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\"><strong>Comments:</strong></span></span><br />\r\n<span style=\"font-size:10pt\"><span style=\"line-height:15px\"><span class=\"marker-yellow\">Mild to moderate hydronephrosis &amp; hydroureter upto their lower end on both sides, more on right side.<br />\r\nHeterogenous cervix with surrounding soft tissue edema and well defined collection within endometrial cavity.<br />\r\nMild wall thickening of rectum with surrounding edema and loss of adjacent fat plane with cervix.</span></span></span></p>\r\n\r\n<p><br />\r\n&nbsp;</p>\r\n','USG','N',' ','Y','thims','2019-03-06 17:40:05','','0000-00-00 00:00:00'),(98,0,0,'CT SCAN THORAX','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN THORAX&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Clinical profile:</strong></span> &nbsp;<span class=\"marker-yellow\">h/o dysphagia. Limited scan is possible due to streak artefacts of barium.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span> &nbsp;<span class=\"marker-yellow\">MDCT imaging was performed using thin contiguous axial plain &amp; contrast scan of thorax from thoracic inlet to lung bases after giving I.V. contrast.&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Findings:</strong></span><br />\r\n<span class=\"marker-yellow\">The study reveals evidence of asymmetrical heterogenously enhancing circumferential wall thickening involving lower esophagus (extending from D8 to D10 vertebral body) causing significant luminal narrowing and moderate dilatation of proximal esophagus.<br />\r\nThe maximum wall thickness measures 18 mm.<br />\r\nThe length of affected segment measures 4 cm.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Stomach is collapsed. However no definite e/o extension to gastro-esophageal junction or gastric fundus is seen.&nbsp;</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">The fat planes between the lesion, descending aorta left atrium and vertebral bodies are preserved.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Few subcentimeter sized lymphnodes are seen around gastric cardia, largest measures 8 x 5 mm.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Few patchy areas of ground glass haziness with alveolar-nodular infiltrations are seen in right middle lobe and superior segment of right lower lobe.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Trachea and major bronchi appear normal.<br />\r\nArch of aorta and major vessels appear normal.<br />\r\nNo evidence of enlarged mediastinal or hilar lymphnodes is seen.<br />\r\nNo evidence of pleural or pericardial effusion.<br />\r\nBony thorax appears normal. No definite e/o skeletal metastases are seen.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Liver is normal in size and shape and shows small ill defined hypodense area in subcapsular location in segment IV B of liver possibly focal fatty infiltration.<br />\r\nHyperdense sludge/ tiny calculi noted within gall bladder.<br />\r\nCommon bile duct &amp; MPD appear mildly prominent. Intrahepatic biliary radicles are normal.<br />\r\nPancreas appears normal in size. Spleen appears normal in size.&nbsp;<br />\r\nBoth kidneys &amp; adrenal glands are normal in size, shape and position. No evidence of calculus, hydronephrosis or mass lesion is seen on either side.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\"><strong>COMMENTS:</strong>&nbsp;</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Asymmetrical heterogenously enhancing circumferential wall thickening involving lower esophagus with significant luminal narrowing, moderate dilatation of proximal esophagus and extension as mentioned above- suggest possibility of malignant mass lesion most likely.<br />\r\nFew patchy areas of ground glass haziness with alveolar-nodular infiltrations in right middle lobe and superior segment of right lower lobe may suggest changes of pneumonitis.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Clinical correlation and further evaluation/ biopsy would be of confirmatory help.</span></span></p>\r\n','CTSN','N',' ','Y','thims','2019-03-06 17:45:22','','0000-00-00 00:00:00'),(99,0,0,'CT SCAN ABDOMEN AND PELVIS MALE','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN ABDOMEN AND PELVIS&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Clinical profile:</strong></span> <span class=\"marker-yellow\">operated case of ca. penis with metastatic inguinal nodes. Post CT-RT status. Previous scans are not available for comparison</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span> &nbsp;<span class=\"marker-yellow\">MDCT imaging was performed using thin contiguous axial scan of abdomen and pelvis with oral, per rectal and intravenous contrast.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Findings:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">The study reveals evidence of ill defined mild heterogenously predominantly peripherally enhancing hypodense lesion in right inguinal region extending along external iliac vessels with non-enhancing hypodense areas &amp; air foci within , surrounding mild fat stranding &nbsp;and overlying soft tissue defect in inguinal region. The largest component measures 65 x 43 mm.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Post operative changes are seen in left inguinal region.&nbsp;<br />\r\nNo e/o any focal enhancing mass lesion is seen in left inguinal region or residual penile shaft on present study.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Single hetrogenously enhancing necrotic node is seen in aortocaval region. The size measures 17 x 13 mm.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Liver is normal in size and shape. No evidence of focal or diffuse lesion seen.&nbsp;<br />\r\nGall bladder doesn&rsquo;t reveal any radiodense calculus or mass lesion.&nbsp;<br />\r\nCommon bile duct appears normal in caliber. Intrahepatic biliary radicles are normal.<br />\r\nPancreas appears normal in size. Spleen appears normal in size.&nbsp;</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Both kidneys are normal in size, shape and position. No evidence of calculus, hydronephrosis or mass lesion is seen on either side.<br />\r\nBoth adrenal glands appear normal.<br />\r\nOpacified bowel loops appear normal. No evidence of abnormal dilatation, wall thickening or enhancing mass lesion is seen.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.<br />\r\nSeminal vesicles appear mildly enlarged in size.<br />\r\nProstate appears normal in size and echotexture.&nbsp;<br />\r\nNo evidence of free or loculated fluid collection is seen.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">There is seen cortical erosion of posterior end of right 12th rib, adjacent right pedicle of D12 vertebrae and antero-left lateral aspect of L5 vertebrae with adjacent well defined heterogeneously enhancing soft tissue density lesion s/o metastasis most likely.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Mild to moderate fluid is seen within right scrotal sac.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Few tiny calcified lesions are seen scattered in visualized both lung fields.</span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>COMMENTS:</strong></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Ill defined heterogenously predominantly peripherally enhancing hypodense lesion in right inguinal region extending along external iliac vessels with non-enhancing hypodense areas &amp; air foci within, surrounding mild fat stranding and overlying soft tissue defect in inguinal region suggest possibility of post radiation changes more likely than residual mass lesion.&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; Clinical correlation and further evaluation/ follow up would be of help.</span></span></p>\r\n','CTSN','N',' ','Y','thims','2019-03-06 17:49:22','leena','2019-03-07 12:50:42'),(100,0,0,'X-RAY CHEST - AP (SITTING) PORTABLE','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY CHEST - AP (SITTING) PORTABLE&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\">Both lung fields are clear. No definite evidence of collapse, consolidation or mass lesion is seen.</span></p>\r\n\r\n<p><span class=\"marker-yellow\">Both costophrenic angles are clear.&nbsp;</span></p>\r\n\r\n<p><span class=\"marker-yellow\">Cardiac size cannot be commented upon.</span></p>\r\n\r\n<p><span class=\"marker-yellow\">Both domes of diaphragm appear normal.</span></p>\r\n\r\n<p><span class=\"marker-yellow\">Bony thorax appears normal.</span></p>\r\n\r\n<p><span class=\"marker-yellow\">Central venous line, endotracheal tube and Ryle&rsquo;s tube noted.</span></p>\r\n\r\n<p><span class=\"marker-yellow\">ICD is seen on the left side.</span></p>\r\n\r\n<p><span class=\"marker-yellow\">Drainage tubes are seen in the region of mediastinum.</span></p>\r\n\r\n<p><span class=\"marker-yellow\">Sternal sutures noted.</span><br />\r\n&nbsp;</p>\r\n','XRY','N',' ','Y','thims','2019-03-06 17:54:18','','0000-00-00 00:00:00'),(101,0,0,'BILATERAL MAMMOGRAPHY','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : BILATERAL MAMMOGRAPHY&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>BILATERAL MAMMOGRAPHY</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:9pt\"><span style=\"line-height:100%\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,sans-serif\"><em>(Dedicated digital mammography with Craniocaudal and media lateral oblique view was performed.)</em></span></span></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,sans-serif\">Normal fibroglandular breast parenchyma is noted in breast on either side.&nbsp;<br />\r\nNo evidence of clustered micro-calcification.<br />\r\nNo evidence of mass or architectural distortion is seen.<br />\r\nNo evidence of skin thickening or nipple retraction is seen.<br />\r\nNo evidence of axillary lymphadenopathy.</span></span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,sans-serif\"><strong>Comments:</strong>&nbsp;</span></span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,sans-serif\">No significant abnormality detected. (BIRADS - I).<br />\r\nNo direct or indirect sign of malignancy seen.</span></span></span></span></span></p>\r\n\r\n<p><span style=\"line-height:10px\"><span style=\"font-size:8pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,sans-serif\"><strong>BIRADS Categories:</strong></span></span></span></span></p>\r\n\r\n<p><span style=\"line-height:10px\"><span style=\"font-size:8pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,sans-serif\">0 Need imaging evaluation.</span></span></span></span></p>\r\n\r\n<p><span style=\"line-height:10px\"><span style=\"font-size:8pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,sans-serif\">I Negative </span></span></span></span></p>\r\n\r\n<p><span style=\"line-height:10px\"><span style=\"font-size:8pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,sans-serif\">II Benign finding</span></span></span></span></p>\r\n\r\n<p><span style=\"line-height:10px\"><span style=\"font-size:8pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,sans-serif\">III probably benign finding.</span></span></span></span></p>\r\n\r\n<p><span style=\"line-height:10px\"><span style=\"font-size:8pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,sans-serif\">IV Suspicious abnormality.</span></span></span></span></p>\r\n\r\n<p><span style=\"line-height:10px\"><span style=\"font-size:8pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,sans-serif\">V Highly suggestive of malignancy.</span></span></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:9pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,sans-serif\">The false negative mammography is approximately 10%. Management of a palpable abnormality must be based upon clinical grounds.</span></span></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:9pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,sans-serif\">The false negative mammography is approximately 10%. Management of a palpable abnormality must be based upon clinical grounds.&nbsp;<br />\r\nNote : USG Breast is not included in this investigation proforma. Breast USG would be of further help in case of clinical indication.&nbsp;</span></span></span></span></p>\r\n','USG','N',' ','Y','thims','2019-03-06 18:06:44','','0000-00-00 00:00:00'),(102,0,0,'X-RAY CHEST - PA (STANDING) VIEW','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY CHEST - PA (STANDING) VIEW&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\">Cardiomegaly noted.</span></p>\r\n\r\n<p><span class=\"marker-yellow\">Blunting of left costophrenic angle noted with haziness in left lower zone s/p/o effusion.</span></p>\r\n\r\n<p><span class=\"marker-yellow\">Both lung fields under vision are clear. No definite evidence of collapse, consolidation or mass lesion is seen.<br />\r\n&nbsp;<br />\r\nRight costophrenic angle is clear.&nbsp;</span></p>\r\n\r\n<p><span class=\"marker-yellow\">Both domes of diaphragm appear normal.</span></p>\r\n\r\n<p><span class=\"marker-yellow\">Bony thorax appears normal.</span></p>\r\n\r\n<p><span class=\"marker-yellow\">No evidence of cervical rib noted.</span></p>\r\n\r\n<p><span class=\"marker-yellow\">Sternal sutures noted.</span><br />\r\n&nbsp;</p>\r\n','XRY','N',' ','Y','thims','2019-03-06 18:09:48','','0000-00-00 00:00:00'),(103,0,0,'CAROTID DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : </strong><span style=\"line-height:100%\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:Arial,sans-serif\"><strong>CAROTID DOPPLER</strong></span></span></span><strong>&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>On grey scale imaging:</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">CCA, ICA and ECA are normal in course and caliber on both sides.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Intimo-medial thickness is normal on both sides.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">No evidence of any plaques seen.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>On Colour Flow Imaging:</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">CCA, ICA and ECA on both sides show normal colour filling and spectral waveforms with normal peak systolic velocities.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">No evidence of any haemodynamically significant stenosis or block is seen.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Vertebral arteries on either side show normal colour filling, velocities and spectral waveforms.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>Comments:&nbsp;</strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\">Normal carotid Doppler study.</span></span></p>\r\n','DOP','N',' ','Y','thims','2019-03-06 18:19:49','','0000-00-00 00:00:00'),(104,0,0,'CT SCAN ANGIO OF BRAIN','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : </strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">CT SCAN ANGIO. OF BRAIN</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span> <span class=\"marker-yellow\">MDCT angiography &amp; venography of brain was performed after giving intra venous non-ionic contrast.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Findings:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">MDCT angiography &amp; venography of brain was performed after I.V. &nbsp;injection of non-ionic contrast. The angiogram and venogram was viewed in multiple projections to bring all visualised arteries.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Both middle cerebral arteries arise normally from the internal carotid on either side. There is no vascular narrowing.&nbsp;</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">The internal carotid arteries show normal course and calibre.No evidence of any dilatation or stenosis noted. Each carotid siphon is normal, showing no displacement or extrinsic compression.&nbsp;</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">The anterior cerebral artery shows no signs of narrowing or displacement.&nbsp;<br />\r\nThe basilar artery shows a normal course and caliber and divides into normal size posterior cerebral arteries. The anterior and posterior communicating arteries on each side are normally developed and show no evidence of any dilatation or stenosis noted.&nbsp;</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Both vertebral arteries appear normal.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">During venous phase, there is noted bifid superior saggital sinus anteriorly.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Both transverse and sigmoid sinuses appear normal.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Straight sinus and vein of galen appear normal.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">No evidence of venous thrombosis is seen.</span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>IMPRESSION:</strong></span><br />\r\n<span class=\"marker-yellow\">Normal intra-cranial CT angiography and venography.<br />\r\nNo evidence of aneurysm, AVM or stenosis on the present examination.<br />\r\nNo evidence of venous thrombosis.</span></span><br />\r\n&nbsp;</p>\r\n','CTSN','N',' ','Y','leena','2019-03-07 12:38:36','','0000-00-00 00:00:00'),(105,0,0,'CT IVP','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT IVP&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span><span style=\"font-size:10pt\"> &nbsp;<span class=\"marker-yellow\">MDCT imaging was performed using thin contiguous plain and contrast axial scan of KUB region.</span></span></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Findings:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Right kidney measures: mm<br />\r\nLeft kidney measures: mm</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both kidneys appear normal in size, shape and position.<br />\r\nNo evidence of calculus, hydronephrosis or mass lesion is seen on either side within pelvicalyceal system.<br />\r\nBoth kidneys show normal and equally dense nephrogram.<br />\r\nBoth kidneys show prompt excretion of contrast with normal pelvi-calyceal system filling.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both adrenal glands appear normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both ureters appear normal in course and caliber. No evidence of any radiodense calculus or hydroureter is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Uterus and both adnexa appear normal.&nbsp;<br />\r\nNo evidence of adnexal mass is seen on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n','CTSN','N','2895','N','leena','2019-03-07 12:47:08','manisham','2022-05-14 15:00:04'),(106,0,0,'CT SCAN DORSAL SPINE - PLAIN','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN DORSAL SPINE - PLAIN&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Technique:</span></strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\">MDCT imaging was performed using thin axial plain scan of dorsal spine.&nbsp;</span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Findings:</span></span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\">Normal alignment and mineralization of dorso-lumbar spine noted.<br />\r\nVertebral bodies and intervertebral disc spaces appear normal.<br />\r\nNo evidence of wedging , compression or collapse of vertebral bodies noted.&nbsp;<br />\r\nVertebral appendages, apophyseal joints and spinous process appear normal.<br />\r\nNo evidence of any osteolytic or osteosclerotic lesion noted in vertebral body.<br />\r\nNo evidence of spondylolysis or listhesis is seen.<br />\r\nPre &amp; paravertebral soft tissue appears normal.</span></p>\r\n','CTSN','N',' ','Y','leena','2019-03-07 12:57:53','','0000-00-00 00:00:00'),(107,0,0,'CT ELBOW','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT ELBOW&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Technique:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">MDCT imaging is performed using thin axial plain scan of elbow with 3D reconstruction.</span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><strong><span style=\"font-size:12pt\">Findings:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Distal end of humerus, radial head, olecranon &amp; coronoid process of ulna and visualized proximal shaft of ulna appears normal. No e/o fracture is seen.<br />\r\nProximal shaft of radius appear normal , no evidence of any fracture noted.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">No osteolytic or osteosclerotic lesion noted.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Elbow joint appears normal. No e/o fracture or dislocation is seen.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Bones show normal mineralization.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Visualised lower end of humerus appears normal. Trochlea, capitulum, medial &amp; lateral epicondyle appears normal.</span></span></p>\r\n','CTSN','N',' ','Y','leena','2019-03-07 13:00:40','','0000-00-00 00:00:00'),(108,0,0,'CT SCAN KUB - PLAIN (FEMALE)','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN KUB - PLAIN&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span> &nbsp;<span class=\"marker-yellow\">MDCT imaging was performed using thin contiguous axial scan of KUB region.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Findings:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Right kidney measures: mm<br />\r\nLeft kidney measures: mm</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Approx. mm (AP-ML-CC) sized radiodense (HU) calculus is seen.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Both kidneys appear normal in size, shape and position.No evidence of any malrotation or fused kidneys.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">No radiodense calculus is noted on either side within pelvicalyceal system.<br />\r\nNo evidence of perinephric collection or perinephric stranding seen on either side.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Both ureters appear normal in course and caliber. No evidence of any radiodense calculus is seen.No evidence of any periureteric collection or stranding noted.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Both adrenal glands appear normal.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Uterus and both adnexa appear normal. No evidence of adnexal mass is seen on either side.</span></span></p>\r\n','CTSN','N',' ','Y','leena','2019-03-07 13:03:57','','0000-00-00 00:00:00'),(109,0,0,'CT SCAN LUMBAR SPINE - PLAIN','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN LUMBAR SPINE - PLAIN &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Technique:</span></strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">MDCT imaging was performed using thin axial plain scan of lumbar spine.</span>&nbsp;</span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Findings:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Normal alignment and mineralization of lumbar spine noted.<br />\r\nVertebral bodies and intervertebral disc spaces appear normal.<br />\r\nNo wedging, compression or collapse of vertebral bodies noted.&nbsp;<br />\r\nVertebral appendages, apophyseal joints and spinous process appear normal.<br />\r\nNo evidence of any osteolytic or osteosclerotic lesion noted in vertebral bodies.<br />\r\nNo evidence of spondylolysis or listhesis is seen.<br />\r\nPre &amp; paravertebral soft tissue appears normal.<br />\r\nVisualized pelvic bones appear normal.</span></span><br />\r\n&nbsp;</p>\r\n','CTSN','N',' ','Y','leena','2019-03-07 13:06:58','','0000-00-00 00:00:00'),(110,0,0,'CT SCAN PELVIS ','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN PELVIS&nbsp;&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span><br />\r\n<span class=\"marker-yellow\">MDCT imaging is performed using thin axial plain scan of pelvis.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Findings:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Both iliac bones, superior and inferior pubic rami and sacral ala appear normal.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Both hip joints &amp; SI joints appear normal.&nbsp;</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Head of femur and visualized proximal femur appears normal on either side.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">No evidence of fracture or dislocation in visualized bones.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">No focal osteolytic or osteosclerotic leison noted.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Urinary bladder is partially distended. No evidence of calculus, wall thickening or mass lesion is seen.</span></span><br />\r\n&nbsp;</p>\r\n','CTSN','N',' ','Y','leena','2019-03-07 13:10:39','','0000-00-00 00:00:00'),(111,0,0,'CT SCAN NECK + THORAX (PLAIN + CONTRAST)','<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span> &nbsp;<span class=\"marker-yellow\">MDCT imaging was performed using thin contiguous axial plain &amp; contrast scan of thorax from skull base to lung bases after giving I.V. contrast.&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><strong><span style=\"font-size:12pt\">Findings:</span></strong><br />\r\n<span class=\"marker-yellow\">Oral cavity is normal. Oral tongue, base of tongue and floor of mouth is normal.&nbsp;<br />\r\nAlveolar arches appear normal.<br />\r\nNasopharynx, oropharynx and hypopharynx are normal. Larynx is normal.&nbsp;<br />\r\nNo evidence of lymphadenopathy on either side of neck.<br />\r\nSubmandibular and parotid glands are normal on both sides.<br />\r\nParanasal sinuses and both orbits are normal.<br />\r\nMajor neck vessels are normal.<br />\r\nNo evidence of any nodules noted in thyroid glands.<br />\r\nBoth lung fields appear normal.No evidence of any soft tissue opacities or air-bronchogram noted.<br />\r\nNo evidence of any nodular opacities noted.No evidence of any ground glass attenuation, reticulo-nodular opacities or mosaic attenuation is seen.<br />\r\nNo evidence of any enhancing mass lesion noted.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Trachea and major bronchi appear normal.<br />\r\nArch of aorta and major vessels appear normal.No evidence of any abnormal dilatation or calcification noted in major vessels.<br />\r\nNo evidence of enlarged mediastinal or hilar lymphnodes is seen. No evidence of any enhancing lymph nodes noted.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">No evidence of pleural or pericardial effusion.<br />\r\nVisualized esophagus appears normal.&nbsp;<br />\r\nBony window cuts appears normal.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Visualized portion of liver and adrenal glands appear normal.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong></span>&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br />\r\n<span class=\"marker-yellow\">Normal CT Thorax study.</span></span><br />\r\n&nbsp;</p>\r\n','CTSN','N',' ','Y','leena','2019-03-07 13:12:53','','0000-00-00 00:00:00'),(112,0,0,'CT SCAN NECK','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN NECK&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span><br />\r\n<span class=\"marker-yellow\">MDCT imaging was performed using thin axial plain and post contrast scan of from skull base to clavicle.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Findings:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Oral cavity is normal. Oral tongue, base of tongue and floor of mouth is normal.&nbsp;<br />\r\nAlveolar arches appear normal.<br />\r\nNasopharynx, oropharynx and hypopharynx are normal. Larynx is normal.&nbsp;<br />\r\nNo evidence of lymphadenopathy on either side of neck.<br />\r\nSubmandibular and parotid glands are normal on both sides.<br />\r\nParanasal sinuses and both orbits are normal.<br />\r\nMajor neck vessels are normal.<br />\r\nNo evidence of any nodules noted in thyroid glands.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\"><strong>Conclusion:</strong>&nbsp;</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Normal CT scan study of neck.</span></span><br />\r\n&nbsp;</p>\r\n','CTSN','N',' ','Y','leena','2019-03-07 13:18:19','','0000-00-00 00:00:00'),(113,0,0,'CT SCAN PNS NECK','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN PNS NECK&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Technique:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">MDCT imaging was performed using thin axial plain and post contrast scan of from skull base to clavicle.</span></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Findings:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Oral cavity is normal. Oral tongue, base of tongue and floor of mouth is normal.&nbsp;<br />\r\nAlveolar arches appear normal.<br />\r\nNasopharynx, oropharynx and hypopharynx are normal. Larynx is normal.&nbsp;<br />\r\nNo evidence of lymphadenopathy on either side of neck.<br />\r\nSubmandibular and parotid glands are normal on both sides.<br />\r\nMajor neck vessels are normal.<br />\r\nNo evidence of any nodules noted in thyroid glands.<br />\r\nAll paranasal sinuses appear normal.<br />\r\nNo mucosal thickening or hypodense fluid collection noted.<br />\r\nBony sinus walls appear normal. No cortical erosion or destruction is seen.<br />\r\nBoth ostio-meatal complex and frontal recesses appear clear.<br />\r\nNasal septum is noted in midline.No evidence of deviated nasal septum or bony spur noted.<br />\r\nTurbinates appear normal.<br />\r\nThe nasal cavity, naso-pharynx and imaged parapharyngeal structures appear normal.<br />\r\nMastoid air cells appear normal.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>COMMENTS:</strong></span>&nbsp;<br />\r\n<span class=\"marker-yellow\">Findings suggest normal CT scan of PNS and NECK.</span></span></p>\r\n','CTSN','N',' ','N','leena','2019-03-07 13:21:24','','0000-00-00 00:00:00'),(114,0,0,'CT SCAN THORAX (PLAIN)','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN THORAX (PLAIN)&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span> <span class=\"marker-yellow\">MDCT imaging was performed using thin contiguous axial scan of thorax from thoracic inlet to lung bases without I.V. contrast.</span>&nbsp;</span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Findings:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Both lung fields appear normal.No evidence of any soft tissue opacities or air-bronchogram noted.<br />\r\nNo evidence of any nodular opacities noted.No evidence of any ground glass attenuation, reticulo-nodular opacities or mosaic attenuation is seen.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Trachea and major bronchi appear normal.<br />\r\nArch of aorta and major vessels appear normal.No evidence of any abnormal dilatation or calcification noted in major vessels.<br />\r\nNo evidence of enlarged mediastinal or hilar lymphnodes is seen.<br />\r\nNo evidence of pleural or pericardial effusion.<br />\r\nVisualized esophagus appears normal.&nbsp;<br />\r\nBony window cuts appears normal.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Visualized portion of liver and adrenal glands appear normal.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong></span><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br />\r\n<span class=\"marker-yellow\">Normal CT Thorax study.</span><br />\r\n&nbsp;</span></p>\r\n','RAD','N',' ','Y','thims','2019-03-07 14:26:18','leena','2019-03-07 14:51:46'),(115,0,0,'CT SCAN ANGIO -TRIPHASIC','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN ANGIO -TRIPHASIC&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span> &nbsp;<span class=\"marker-yellow\">MDCT imaging was performed using thin contiguous axial scan of abdomen and pelvis with oral, per rectal and intravenous contrast.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Findings:</span></strong></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Abdominal aorta appears normal in course and caliber.No evidence of any abnormal dilatation noted.<br />\r\nCeliac axis, SMA &amp; IMA show normal caliber. No e/o significant stenosis or thrombosis is seen.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">No e/o any active intraluminal leak of contrast is seen on present study.<br />\r\nNo secondary signs of mesenteric ischemia noted.<br />\r\nLiver is normal in size and shape. No focal or diffuse lesion noted in liver.No evidence of any enhancing lesion noted.&nbsp;</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Gall bladder doesn&rsquo;t reveal any radiodense calculus or enhancing mass lesion.No evidence of any wall thickening noted.&nbsp;<br />\r\nCommon bile duct appears normal in caliber. Intrahepatic biliary radicles are normal.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Pancreas appears normal in size. No evidence of any focal fluid collection or enhancing mass lesion noted.<br />\r\nSpleen appears normal in size. No evidence of enhancing focal or diffuse lesion seen.&nbsp;</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Both kidneys are normal in size, shape and position. No evidence of calculus, hydronephrosis or mass lesion is seen on either side. Both adrenal glands appear normal.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">No evidence of significant peri-portal, peri-pancreatic, pre-para aortic or mesenteric lymphadenopathy.<br />\r\nOpacified bowel loops appear normal. No evidence of abnormal dilatation, wall thickening or enhancing mass lesion is seen.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Urinary bladder is distended and normal. No e/o calculus, wall thickening or mass lesion is seen.<br />\r\nProstate appears normal in size.<br />\r\nAorta and both psoas muscles appear normal.</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">No evidence of free or loculated fluid collection is seen.<br />\r\nVisualized bone window cuts appear normal.<br />\r\nVisualized lung window cuts appear normal.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\"><strong>COMMENTS:</strong>&nbsp;</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NORMAL CT ABDOMEN &amp; PELVIS STUDY.</span></span><br />\r\n&nbsp;</p>\r\n','CTSN','N',' ','Y','thims','2019-03-07 14:30:13','','0000-00-00 00:00:00'),(116,0,0,'CT SCAN BRAIN + PNS - PLAIN','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN BRAIN + PNS - PLAIN&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Technique:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">MDCT imaging was performed using thin sequential axial plain scan of brain &amp; paranasal sinuses from maxilla to vertex.</span></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Findings:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Both cerebral hemispheres appear normal. No e/o any focal or diffuse lesion is seen.<br />\r\nVentricular system and basal cisterns appear normal.<br />\r\nNo evidence of midline shift is seen.<br />\r\nCerebellum and brainstem appear normal.<br />\r\nNo evidence of subdural, extradural ,intraparenchymal haemorrhage or intraventricular hemorrhage is seen.<br />\r\nBony skull vault appears normal.<br />\r\nAll paranasal sinuses appear normal.<br />\r\nNo mucosal thickening or hypodense fluid collection noted.<br />\r\nBony sinus walls appear normal. No cortical erosion or destruction is seen.<br />\r\nBoth ostio-meatal complex and frontal recesses appear clear.<br />\r\nNasal septum is noted in midline.No evidence of deviated nasal septum or bony spur noted.<br />\r\nTurbinates appear normal.<br />\r\nThe nasal cavity, naso-pharynx and imaged parapharyngeal structures appear normal.<br />\r\nMastoid air cells appear normal.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\"><strong>COMMENTS:</strong>&nbsp;</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Normal CT scan brain and &nbsp;PNS</span></span><br />\r\n&nbsp;</p>\r\n','CTSN','N',' ','Y','thims','2019-03-07 14:34:35','','0000-00-00 00:00:00'),(117,0,0,'CT SCAN FACIAL BONES - PLAIN','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT SCAN FACIAL BONES - PLAIN &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span> <span class=\"marker-yellow\">MDCT imaging was performed using thin sequential axial plain scan of facial bones with 3D reconstruction.</span></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Findings:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Bony orbital walls appear normal.<br />\r\nAll paranasal sinuses appear normal. No e/o fracture seen.No evidence of any hemosinus seen.<br />\r\nBoth nasal bones appear normal.<br />\r\nMandible appears normal.Alveolar processes appear normal.<br />\r\nBoth zygoma and zygomatic arches appear normal.<br />\r\nMedial and lateral pterygoid plates on either side appear normal.<br />\r\nVisualised cervical spine appears normal.&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><strong>Comments:</strong>&nbsp;</span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span class=\"marker-yellow\">Normal plain CT scan facial bones.</span></span><br />\r\n&nbsp;</p>\r\n','CTSN','N',' ','Y','thims','2019-03-07 14:37:24','','0000-00-00 00:00:00'),(118,0,0,'MEMMOGRAM','<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">NAME&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :&nbsp;&nbsp; Y / FEMALE</span></strong></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">REG&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :&nbsp;&nbsp;&nbsp;&nbsp; </span></strong></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">REF BY&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :&nbsp;&nbsp;&nbsp; </span></strong></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">INVESTIGATION&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :&nbsp;&nbsp; MAMMOGRAPHY</span></strong></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">DATE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:&nbsp;&nbsp; 24.05.2019</span></strong></span></span></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:14.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">UNILATERAL LEFT &nbsp;MAMMOGRAM</span></span></strong><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\"> :-</span></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Clinical profile: H/o operated for Ca.right breast (right mastectomy).</span></span></span></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal fibroglandular breast parenchyma is noted in right breast.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of clustered microcalcification.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of mass or architectural distortion is seen.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of skin thickening or nipple retraction is seen.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of right axillary lymphadenopathy.</span></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">On sonography, </span></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal breast parenchyma is seen. </span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of solid or cystic mass lesion is seen.</span></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comment</span></strong><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">: </span></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No significant abnormality detected. (BIRADS - I).</span></strong></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No direct or indirect sign of malignancy seen.</span></strong></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:9.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">BIRADS Categories:</span></span></strong></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Need imaging evaluation.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">I&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Negative </span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">II&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Benign finding</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">III&nbsp;&nbsp;&nbsp;&nbsp; probably benign finding.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">IV&nbsp;&nbsp;&nbsp;&nbsp; Suspicious abnormality.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">V&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Highly suggestive of malignancy.</span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><em><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">The false negative mammography is approximately 10%. Management of a palpable abnormality must be based upon clinical grounds.</span></span></em></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','DOP','N',' ','Y','mayur','2019-03-14 15:13:26','','0000-00-00 00:00:00'),(119,0,0,' BILATERAL LEFT MEMMOGRAM ','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : BILATERAL LEFT MAMMOGRAPHY&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><ins><strong><span style=\"font-size:12pt\">BILATERAL LEFT MAMMOGRAPHY</span></strong></ins></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">Clinical profile: H/o operated for Ca.right breast (right mastectomy).</span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Normal fibroglandular breast parenchyma is noted in right breast.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No evidence of clustered microcalcification.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No evidence of mass or architectural distortion is seen.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No evidence of skin thickening or nipple retraction is seen.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No evidence of right axillary lymphadenopathy.</span></span></span></p>\r\n\r\n<p><strong><span style=\"font-size:11pt\"><span class=\"marker-yellow\"><ins><span style=\"line-height:15px\">On sonography,&nbsp;</span></ins></span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Normal breast parenchyma is seen.&nbsp;<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No evidence of solid or cystic mass lesion is seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><span class=\"marker-yellow\"><ins><strong><span style=\"line-height:15px\">Comment:&nbsp;</span></strong></ins></span></span></p>\r\n\r\n<p><strong><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;No significant abnormality detected. (BIRADS - I).<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No direct or indirect sign of malignancy seen.</span></span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><strong>BIRADS Categories:</strong><br />\r\n<span style=\"font-size:11pt\">0 &nbsp; &nbsp; &nbsp;Need imaging evaluation.<br />\r\nI &nbsp; &nbsp; &nbsp; Negative&nbsp;<br />\r\nII &nbsp; &nbsp; &nbsp;Benign finding<br />\r\nIII &nbsp; &nbsp; probably benign finding.<br />\r\nIV &nbsp; &nbsp; Suspicious abnormality.<br />\r\nV &nbsp; &nbsp; &nbsp;Highly suggestive of malignancy.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\">The false negative mammography is approximately 10%. Management of a palpable abnormality must be based upon clinical grounds.</span></span><br />\r\n&nbsp;</p>\r\n','USG','N',' ','Y','leena','2019-03-18 17:31:17','leena','2019-03-18 17:39:09'),(120,0,0,'BILATERAL RIGHT MAMMOGRAM','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : BILATERAL RIGHT&nbsp;MAMMOGRAPHY&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><ins><strong><span style=\"font-size:12pt\">BILATERAL RIGHT&nbsp;MAMMOGRAPHY</span></strong></ins></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Clinical profile: H/o operated for Ca. left breast (left mastectomy).</span></span></span></span></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal fibroglandular breast parenchyma is noted in right breast.</span></span></span></span></span></li>\r\n	<li><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of clustered microcalcification.</span></span></span></span></span></li>\r\n	<li><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of mass or architectural distortion is seen.</span></span></span></span></span></li>\r\n	<li><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of skin thickening or nipple retraction is seen.</span></span></span></span></span></li>\r\n	<li><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of right axillary lymphadenopathy.</span></span></span></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><ins><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">On sonography, </span></strong></span></span></ins></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal breast parenchyma is seen. </span></span></span></span></span></li>\r\n	<li><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of solid or cystic mass lesion is seen.</span></span></span></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comment</span></strong><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">: </span></strong></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No significant abnormality detected. (BIRADS - I).</span></strong></span></span></span></span></li>\r\n	<li><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No direct or indirect sign of malignancy seen.</span></strong></span></span></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">BIRADS Categories:</span></strong></span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Need imaging evaluation.</span></span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">I&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Negative </span></span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">II&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Benign finding</span></span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">III&nbsp;&nbsp;&nbsp;&nbsp; probably benign finding.</span></span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">IV&nbsp;&nbsp;&nbsp;&nbsp; Suspicious abnormality.</span></span></span>&nbsp;</span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">V&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Highly suggestive of malignancy.</span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><em><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">The false negative mammography is approximately 10%. Management of a palpable abnormality must be based upon clinical grounds.</span></em></span></span></span></span></p>\r\n','USG','N',' ','Y','leena','2019-03-18 17:37:20','','0000-00-00 00:00:00'),(121,0,0,'RENAL ANGIO','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">MDCT RENAL ANGIOGRAPHY </span></span></strong></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><ins><span style=\"font-size:12pt\"><strong>REPORT</strong></span></ins></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><ins><strong>Technique:</strong></ins> MDCT angiography of brain was performed after I.V. injection of non-ionic contrast. The angiogram was viewed in multiple projections to bring all visualised arteries.</span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong>Findings:</strong></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">Right kidney measures:</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">Left kidney measures:</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">Normal size, shape and location of both kidneys noted. No evidence of radiodense calculus. </span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">Single renal arterial supply is noted on both side.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">Right main renal artery at osteum measures about &ndash; mm. Distance from osteum to bifurcation is about &ndash; mm.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">Left main renal artery at osteum measures about &ndash; mm. distance from osteum to bifurcation is about &ndash; mm.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">Both renal arteries appear normal in course, calibre and branching pattern. Intrarenal branches also appear normal.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">No evidence of aneurysm, AVM or pathological circulation is noted.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">Celiac, superior mesenteric and inferior mesenteric arteries appear normal in course and calibre. No definite encasement, stenosis or abnormal dilatation is seen.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">Normal venous drainage on the either side.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">During excretory phase there is seen normal excretions of contrast on either side in pelvicalyceal system, ureter and urinary bladder. </span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong>Impression:</strong></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<ul>\r\n	<li style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong>Normal venous drainage in both kidneys.</strong></span></span></span></span></li>\r\n	<li style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong>Normal CT excretory urography.</strong></span></span></span></span></li>\r\n</ul>\r\n','CTSN','N',' ','Y','leena','2019-03-18 17:57:14','','0000-00-00 00:00:00'),(122,0,0,' MDCT ANGIOGRAPHY OF BRAIN','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : </strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">MDCT ANGIOGRAPHY OF BRAIN </span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><ins><span style=\"font-size:12pt\"><strong>REPORT</strong></span></ins></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,sans-serif\">MDCT angiography of brain was performed after I.V.&nbsp; injection of non-ionic contrast. The angiogram was viewed in multiple projections to bring all visualised arteries.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,sans-serif\"><strong>ON ANGIOGRAPHY: </strong></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,sans-serif\"><strong>A single saccular aneurysm is seen arising from anterior communicating artery. It measures 11.7 x 13.4 x 11.3 mm (AP x TR x CC) in size. </strong></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,sans-serif\"><strong>The aneurysm has broad base neck. No definite apical tit appreciated on CT angiography. No evidence of thrombosis within aneurysm. </strong></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,sans-serif\"><strong>There is evidence of diffuse luminal narrowing of A1 segment of bilateral anterior cerebral arteries, possibility of ? Spasm ?? Hypoplastic A1 segment. </strong></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,sans-serif\">A2, A3 segments of the anterior cerebral arteries bilaterally and branches appear normal. </span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,sans-serif\">Bilateral internal carotid artery, middle cerebral artery, posterior cerebral artery and their branches appear normal. </span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,sans-serif\">Vertebro basilar arterial system appears normal. </span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,sans-serif\"><strong>ON SCREENING OF BRAIN:- </strong></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,sans-serif\"><strong>Subarachnoid haemorrhage is seen in interhemispheric fissure, sulci of bilateral parietal lobes in paramedian location, left sylvian fissure and sulci of left parietal lobe. </strong></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,sans-serif\"><strong>Intra-ventricular haemorrhage is noted involving all four ventricles. </strong></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,sans-serif\"><strong>IMPRESSION:</strong></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,sans-serif\"><strong>The CT findings suggestive of: </strong></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<ul style=\"list-style-type:square\">\r\n	<li style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"line-height:15px\"><span style=\"font-family:Arial,sans-serif\"><strong>A single patent anterior communicating artery aneurysm with subarachnoid haemorrhage, suggestive of aneurysm rupture as described above. </strong></span></span></span></span></li>\r\n</ul>\r\n','CTSN','N',' ','Y','mayur','2019-03-19 15:29:57','','0000-00-00 00:00:00'),(123,0,0,'CT SCAN THORAX PLAIN + CONTRAST','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : </strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">CT SCAN THORAX (PLAIN + CONTRAST)</span></span></strong><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\"> </span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><ins><span style=\"font-size:12pt\"><strong>REPORT</strong></span></ins></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><ins><strong><span style=\"font-size:11.0pt\">Technique:</span></strong></ins><span style=\"font-size:11.0pt\">&nbsp; MDCT imaging was performed using thin contiguous axial plain &amp; contrast scan of thorax from thoracic inlet to lung bases after giving I.V. contrast. </span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><ins><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></span></strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></span></span></span></ins></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both lung fields appear normal.No evidence of any soft tissue opacities or air-bronchogram noted.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of any nodular opacities noted.No evidence of any ground glass attenuation, reticulo-nodular opacities or mosaic attenuation is seen.</span></span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of any enhancing mass lesion noted.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Trachea and major bronchi appear normal.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Arch of aorta and major vessels appear normal.No evidence of any abnormal dilatation or calcification noted in major vessels.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of enlarged mediastinal or hilar lymphnodes is seen. No evidence of any enhancing lymph nodes noted.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of pleural or pericardial effusion.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized esophagus appears normal. </span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Bony window cuts appears normal.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized portion of liver and adrenal glands appear normal.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><ins><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments: </span></span></strong></span></span></ins></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </strong></span></span></span></p>\r\n\r\n<ul>\r\n	<li style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal CT Thorax study.</span></span></strong></span></span></span></li>\r\n</ul>\r\n','CTSN','N',' ','Y','mayur','2019-03-19 15:38:15','mayur','2019-03-19 15:51:05'),(124,0,0,' CT SCAN THORAX PLAIN ','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : </strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">CT SCAN THORAX (PLAIN) </span></span></strong></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><ins><span style=\"font-size:12pt\"><strong>REPORT</strong></span></ins></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><span style=\"font-size:11.0pt\"><ins>Technique</ins>:</span></strong><span style=\"font-size:11.0pt\"> <span class=\"marker-yellow\">MDCT imaging was performed using thin contiguous axial scan of thorax from thoracic inlet to lung bases without I.V. contrast. </span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><ins><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></span></span></ins></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both lung fields appear normal.No evidence of any soft tissue opacities or air-bronchogram noted.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of any nodular opacities noted.No evidence of any ground glass attenuation, reticulo-nodular opacities or mosaic attenuation is seen.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Trachea and major bronchi appear normal.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Arch of aorta and major vessels appear normal.No evidence of any abnormal dilatation or calcification noted in major vessels.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of enlarged mediastinal or hilar lymphnodes is seen.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of pleural or pericardial effusion.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized esophagus appears normal. </span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized portion of liver and adrenal glands appear normal.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><ins><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments</span></strong><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:-</span></strong></span></span></ins></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </strong></span></span></p>\r\n\r\n<ul>\r\n	<li style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal CT Thorax study.</span></strong></span></span></span></li>\r\n</ul>\r\n','CTSN','N','','Y','mayur','2019-03-19 15:50:24','parul','2021-04-03 15:03:35'),(125,0,0,'INTRA & EXTRA CRANIAL ANGIOGRAPHY ','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : MSCT </strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">INTRA &amp; EXTRA CRANIAL ANGIOGRAPHY </span></span></strong></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><ins><span style=\"font-size:12pt\"><strong>REPORT</strong></span></ins></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">T<span style=\"line-height:20px\">ECHNIQUE:</span></span></span></strong><span style=\"line-height:20px\"> <span class=\"marker-yellow\"><span style=\"font-size:11.0pt\">MDCT angiography of brain was performed after I.V. injection of non-ionic contrast. The angiogram was viewed in multiple projections to bring all visualised arteries.</span></span></span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">BRAIN PLAIN:</span></strong></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">Both cerebral hemispheres appear normal. No e/o any focal or diffuse lesion is seen.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">Ventricular system and basal cisterns appear normal.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">No evidence of midline shift is seen.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">Cerebellum and brainstem appear normal.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">No evidence of subdural, extradural or intraparenchymal haemorrhage is seen.</span></span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">Bony skull vault appears normal.</span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">EXTRA &amp; INTRA CRANIAL ANGIOGRAPHY:- </span></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">Common carotid artery, carotid bulb and bifurcation appear normal on either side. </span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">Both internal carotid and external carotid arteries appear normal.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">No stenosis, AVM or aneurysm is seen.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">Both vertebral arteries appear normal.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">Both middle cerebral arteries arise normally from the internal carotid on either side and forms normal insular loops. There is no circumscribed vascular narrowing or dilatation. </span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">The internal carotid arteries show normal course and caliber and are symmetrically disposed. Each carotid siphon is normal, showing no displacement or extrinsic compression. </span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">The anterior cerebral artery shows no signs of narrowing or displacement. </span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><span style=\"font-size:11.0pt\">The basilar artery shows a normal course and caliber and divides into normal size posterior cerebral arteries. The anterior and posterior communicating arteries on each side are normally developed and of normal size. </span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><span style=\"font-size:13.0pt\"><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">IMPRESSION:</span></span></strong></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<ul>\r\n	<li style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong>The CT angiography reveals normal appearance of intracranial vessels. </strong></span></span></span></span></li>\r\n	<li style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong>No evidence of AVM or aneurysm.</strong></span></span></span></span></li>\r\n</ul>\r\n','CTSN','N',' ','Y','mayur','2019-03-19 16:02:33','','0000-00-00 00:00:00'),(126,0,0,'CT PULMONARY ANGIOGRAPHY','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : </strong><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">CT PULMONARY ANGIOGRAPHY</span></strong></span></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\"> </span></span></strong></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><ins><span style=\"font-size:12pt\"><strong>REPORT</strong></span></ins></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><em><span style=\"font-size:11.0pt\"><ins>Technique</ins>:</span></em></strong><em><span style=\"font-size:11.0pt\">&nbsp; <span class=\"marker-yellow\"><span style=\"line-height:15px\">MDCT pulmonary angiography imaging was performed using thin contiguous axial scan of thorax from thoracic inlet to lung bases with I.V. contrast. Arterial and venous phases were obtained.</span></span></span></em></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><ins><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></span></span></ins></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Major pulmonary artery and right &amp; left pulmonary arteries appear normal.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Major pulmonary artery measures&nbsp;&nbsp;&nbsp; </span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right pulmonary artery measures&nbsp;&nbsp;&nbsp; </span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left pulmonary artery measures&nbsp;&nbsp; </span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No obvious filling defect is seen in major pulmonary artery, right &amp; left pulmonary arteries or their branches upto segmental &ndash;subsegmental level.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No abnormal dilatation or calcification seen in pulmonary arteries or its branches.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pulmonary veins appear normal and drain into left atrium.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cardiac chambers appear normal. </span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized lung fields appear normal.No evidence of any wedge shaped infarct noted in lung fields. No e/o any focal parenchymal lesion, mediastinal lymphadenopathy or pleural effusion is seen.</span></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\">&nbsp;</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><ins><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments: </span></strong></span></span></ins></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<ul>\r\n	<li style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal ct pulmonary angiography.</span></strong></span></span></span></li>\r\n</ul>\r\n','CTSN','N',' ','Y','mayur','2019-03-19 16:10:18','','0000-00-00 00:00:00'),(127,0,0,'CT SCAN PNS PLAIN ','<table cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:undefined; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;Patient Name&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;Date&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;Patient Id&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;Age&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;Consultant Doctor&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;Gender&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><ins><span style=\"font-size:12pt\"><strong>REPORT</strong></span></ins></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\"><ins>Technique</ins>: </span></strong><span class=\"marker-yellow\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">MDCT imaging of PNS region was performed using thin axial plain scan. Coronal reconstruction is done.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><ins><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings:</span></strong></span></span></ins></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">All paranasal sinuses appear normal.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No mucosal thickening or hypodense fluid collection noted.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Bony sinus walls appear normal. No cortical erosion or destruction is seen.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both ostio-meatal complex and frontal recesses appear clear.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Nasal septum is noted in midline.No evidence of deviated nasal septum or bony spur noted.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Turbinates appear normal.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">The nasal cavity, naso-pharynx and imaged parapharyngeal structures appear normal.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Mastoid air cells appear normal.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p><ins><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments: </span></strong></span></span></ins></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span class=\"marker-yellow\"><strong><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><em>Normal study of CT scan PNS.</em></span></span></strong></span></li>\r\n</ul>\r\n','CTSN','N','2908','N','mayur','2019-03-19 16:15:44','parul','2021-05-12 12:34:28'),(128,0,0,'ANTENATAL DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : </strong><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">ANTENATAL DOPPLER</span></strong></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><ins><span style=\"font-size:12pt\"><strong>USG REPORT</strong></span></ins></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">A Single live intrauterine foetus noted with cephalic presentation.</span></span></span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Foetal cardiac pulsation and foetal movements are present. Heart Rate &ndash; 140 bpm.</span></span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Placenta is fundo-anterior (Grade II maturity).No Placenta praevia is seen.</span></span></span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Liquor amount is adequate for gestational age. AFI measures 9 - 10.</span></span></span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\">&nbsp;</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Foetal Maturity</span></span></strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\"> :-</span></span></span></span></span></p>\r\n\r\n<table border=\"1\" cellspacing=\"0\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"vertical-align:top; width:63.0pt\">\r\n			<p style=\"text-align:center\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">BPD</span></span></strong></span></span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:90.0pt\">\r\n			<p style=\"text-align:center\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">49.0</span></span></span></span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:144.0pt\">\r\n			<p style=\"text-align:center\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">20 week 6 days</span></span></span></span></span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:top; width:63.0pt\">\r\n			<p style=\"text-align:center\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">HC</span></span></strong></span></span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:90.0pt\">\r\n			<p style=\"text-align:center\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">186</span></span></span></span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:144.0pt\">\r\n			<p style=\"text-align:center\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">21 week 0 days</span></span></span></span></span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:top; width:63.0pt\">\r\n			<p style=\"text-align:center\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">AC</span></span></strong></span></span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:90.0pt\">\r\n			<p style=\"text-align:center\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">155</span></span></span></span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:144.0pt\">\r\n			<p style=\"text-align:center\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">20 week 5 days</span></span></span></span></span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:top; width:63.0pt\">\r\n			<p style=\"text-align:center\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">FL</span></span></strong></span></span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:90.0pt\">\r\n			<p style=\"text-align:center\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">36.0</span></span></span></span></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:144.0pt\">\r\n			<p style=\"text-align:center\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">21 week 3 days</span></span></span></span></span></span></p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Average Age: -&nbsp;&nbsp; 33 weeks 5 day&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EDD by Average G.A. =&nbsp;&nbsp; 8.11.2014.</span></span></span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Approximate fetal weight is 2280 grams.</span></span></span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cervical length is adequate (3.5 cm).&nbsp; Internal O.S. is closed. </span></span></span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No obvious congenital anomaly detected on present study. </span></span></span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Foetal stomach bubble noted.&nbsp; Foetal spine appears normal </span></span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">On Doppler study:</span></span></strong></span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">MCA shows normal flow pattern. RI measures 0.9, PI measures 2.45</span></span></span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of brain sparing seen on present study.</span></span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Umbilical artery shows normal low resistance waveform at three different sites; </span></span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Average RI measures 0.5, PI measures 0.9, S/D measures 2.4</span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both uterine arteries show normal waveform RI measures 0.5 and PI measures 0.8.</span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">IMPRESSION&nbsp; :-</span></strong></span></span></span></p>\r\n\r\n<ul>\r\n	<li><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><em><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">A Single live intrauterine fetus of 33 wk 5 days with cephalic presentation.</span></em></strong></span></span></span></span></li>\r\n	<li><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><em><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Doppler study does not reveal significant abnormality.&nbsp; No sign of foeto-placental or materno-placental circulation compromise.</span></em></strong></span></span></span></span></li>\r\n</ul>\r\n','DOP','N',' ','Y','mayur','2019-03-19 16:30:08','','0000-00-00 00:00:00'),(129,0,0,'BOTH UPPER LIMB VENOUS DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : </strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">BOTH UPPER LIMB VENOUS DOPPLER</span></span></strong></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><ins><span style=\"font-size:12pt\"><strong>REPORT</strong></span></ins></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both brachial, basilic, radial and ulnar veins appear normal in course and compressibility. </span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">These veins show normal color filling and compressibility with augmentation of flow. No evidence of thrombosis is seen.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Skin marking for basilic veins done &ndash; appears patent. Diameter of basilic vein in arm is 3.5 mm on right side and 4.0 mm on left side. </span></strong></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Skin marking for cephalic veins done &ndash; appears patent. Diameter of cephalic vein in distal forearm is 2.6 mm on right side and 2.4 mm on left side. </span></strong></span></span></span></span></p>\r\n','DOP','N',' ','Y','mayur','2019-03-19 16:34:05','','0000-00-00 00:00:00'),(130,0,0,'LEFT UPPER LIMB VENOUS DOPPLER ','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : </strong></span><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">LEFT UPPER LIMB VENOUS DOPPLER </span></strong></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><ins><span style=\"font-size:12pt\"><strong>REPORT</strong></span></ins></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left brachial, basilic, radial and ulnar veins appear normal in course and compressibility. </span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">These veins show normal color filling and compressibility with augmentation of flow. No evidence of thrombosis is seen.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Skin marking for basilic vein done. Diameter of basilic vein in arm is 2.2 mm, mild wall thickening noted. &nbsp;Chronic thrombophlebitis noted in basilic vein at and distal to elbow.</span></strong></span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<h1>&nbsp;</h1>\r\n','DOP','N',' ','Y','mayur','2019-03-19 16:36:59','','0000-00-00 00:00:00'),(131,0,0,'PORTAL & HEPATIC VENOUS DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : </strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">PORTAL &amp; HEPATIC VENOUS DOPPLER</span></span></strong><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\"> </span></strong></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><ins><span style=\"font-size:12pt\"><strong>DOPPLER REPORT</strong></span></ins></p>\r\n\r\n<ul>\r\n	<li><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Portal vein is prominent measures 15 mm at porta.</span></strong></span></span></span></span></li>\r\n	<li><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Intrahepatic part of the portal vein appears normal. No e/o of thrombus is seen in the portal vein.</span></span></span></span></span></li>\r\n	<li><span class=\"marker-yellow\"><span style=\"line-height:20px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">The portal vein shows normal hepatopetal flow and spectral wave form with maintained respiratory variation. </span></span></span></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"line-height:10px\"><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right middle and left Hepatic veins appear normal in calibre with normal flow and spectral waveform.</span></span></span></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"line-height:10px\"><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Intrahepatic IVC appear normal show normal flow.</span></span></span></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"line-height:10px\"><span class=\"marker-yellow\"><span style=\"font-size:11pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Splenic vein and superior mesenteric vein show normal color&nbsp; flow.</span></span></span></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<ins>Impression:</ins></span></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Prominent portal vein measures 15 mm at porta.&nbsp; </span></strong></span></span></span></span></li>\r\n	<li><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Essentially &nbsp;normal study otherwise. No evidence of thrombus.</span></strong></span></span></span></span></li>\r\n</ul>\r\n','DOP','N',' ','Y','mayur','2019-03-19 17:06:12','mayur','2019-03-19 17:07:44'),(132,0,0,'XRAY GEN','<p>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n\r\n<p>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;/&nbsp;<span class=\"marker\">Age</span>&nbsp;/&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p>&nbsp;<span class=\"marker\">IP ID</span>&nbsp;</p>\r\n\r\n<p>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<h1 style=\"text-align:center\">Report&nbsp;</h1>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;<span class=\"marker-blue\">Textboxaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</span>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;<span class=\"marker-blue\">TextAreaaaaaaaaaaaaaaaaaaaaaaaaa</span></p>\r\n','XRY','N',' ','Y','thims','2019-06-12 14:38:16','thims','2019-06-12 14:40:02'),(133,0,0,'New Template test','<p>Both lung fields appear clear.</p>\r\n\r\n<p>No obvious evidence of consolidation or mass lesion is seen.</p>\r\n\r\n<p>Both costophrenic angles are clear.&nbsp;</p>\r\n\r\n<p>Cardiac shadow appears within normal limits.</p>\r\n\r\n<p>Both hilar shadows appear normal.</p>\r\n\r\n<p>Both domes of diaphragm appear normal.</p>\r\n\r\n<p>Bony thorax appears normal.<br />\r\n&nbsp;</p>\r\n','USG','N',' ','Y','lEENA','2019-06-15 11:17:35','','0000-00-00 00:00:00'),(134,0,0,'XRAY GENERAL','<p><span style=\"font-size:12pt\"><strong>NAME&nbsp; &nbsp; : </strong>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<strong> / </strong>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID&nbsp; &nbsp; &nbsp; : </strong></span>&nbsp;<span style=\"font-size:12pt\"><span class=\"marker\">Patient Id</span>&nbsp;<strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span style=\"font-size:12pt\"><span class=\"marker\">Consultant Doctor</span>&nbsp;<strong>&nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE&nbsp; &nbsp; &nbsp;: </strong></span>&nbsp;<span style=\"font-size:12pt\"><span class=\"marker\">Date</span>&nbsp;</span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span>&nbsp;<span style=\"font-size:14pt\"><span class=\"marker-blue\">Textbox</span>&nbsp;</span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:14pt\"><u>R E P O R T</u></span></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<p>&nbsp;<span style=\"font-size:12pt\"><span class=\"marker-blue\">TextArea</span>&nbsp;</span></p>\r\n\r\n<p>&nbsp;</p>\r\n','XRY','N',' ','Y','thims','2019-06-15 12:31:10','','0000-00-00 00:00:00'),(135,0,0,'RADIOLOGY TEMPLATE','<p><span style=\"font-size:12pt\"><strong>NAME&nbsp; &nbsp; &nbsp;: </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;/&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID&nbsp; &nbsp; &nbsp; &nbsp;: </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY&nbsp; :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE&nbsp; &nbsp; &nbsp; :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong>R E P O R T</strong></span></u></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:11pt\">&nbsp;</span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n','XRY','N','','N','thims','2019-06-20 11:03:21','thims','2021-02-10 16:37:40'),(136,0,0,'USG STD','<p><span style=\"font-size:12pt\"><strong>NAME&nbsp; &nbsp; &nbsp;: </strong></span>&nbsp;<span class=\"marker\">Patient Name /</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID&nbsp; &nbsp; &nbsp; &nbsp;: </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY&nbsp; :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE&nbsp; &nbsp; &nbsp; :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong><span class=\"marker-yellow\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;</span></span></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong>R E P O R T</strong></span></u></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:11pt\"><span class=\"marker-yellow\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"line-height:15px\">DR.LEENA PANDYA<br />\r\nCONSULTANT RADIOLOGIST</span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:11pt\">&nbsp;</span></p>\r\n','USG','N',' ','Y','thims','2019-06-20 11:05:46','thims','2019-06-22 16:59:24'),(137,0,0,'CTS STD','<p><strong>NAME&nbsp; &nbsp; &nbsp;: </strong>&nbsp;&nbsp;<span class=\"marker\">Patient Name /</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;/<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><strong>UHID&nbsp; &nbsp; &nbsp; &nbsp;: </strong>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n\r\n<p><strong>REF BY&nbsp; :&nbsp;</strong>&nbsp;&nbsp;<span class=\"marker\">Referral Doctor</span>&nbsp;</p>\r\n\r\n<p><strong>DATE&nbsp; &nbsp; &nbsp; :&nbsp;</strong>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>INVESTIGATION :<span style=\"font-size:12pt\">&nbsp;</span></strong><span style=\"font-size:12pt\"><span class=\"marker-yellow\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><strong>R E P O R T</strong></u></p>\r\n\r\n<p><span style=\"font-size:11pt\"><span class=\"marker-yellow\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\">DR.LEENA PANDYA<br />\r\nCONSULTANT RADIOLOGIST</span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','CTSN','N',' ','Y','thims','2019-06-20 11:09:26','thims','2019-06-22 17:00:41'),(138,0,0,'NEW TEMP FOR AP','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY&nbsp; ELBOW AP / LAT. VIEW&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><br />\r\nElbow joint appears normal.</p>\r\n\r\n<p>Visualized distal&nbsp;end of humerus, proximal end of radius and ulna appear normal.&nbsp;</p>\r\n\r\n<p>No definite evidence of fracture or dislocation is seen.&nbsp;</p>\r\n\r\n<p>Bones show normal mineralization.</p>\r\n\r\n<p>&nbsp;<span class=\"marker-blue\">TextArea</span>&nbsp;</p>\r\n\r\n<p>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</p>\r\n','XRY','N','2927','Y','yatin','2021-01-29 16:14:13','','0000-00-00 00:00:00'),(140,0,0,'RADIOLOGY TEMPLATE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">UH ID / IP ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;/&nbsp;<span class=\"marker\">IP ID</span>&nbsp;&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n','RAD','Y','','Y','thims','2021-02-10 16:42:03','thims','2021-02-26 15:03:29'),(141,0,0,'CT KUB PLAIN','<p>&nbsp;</p>\r\n\r\n<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Referral Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;<br />\r\n<span style=\"font-size:12pt\"><strong>Technique: </strong>&nbsp;MDCT imaging was performed using thin contiguous axial scan of KUB region.</span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>Findings:</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>Right kidney measures: mm<br />\r\nLeft kidney measures: mm</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\">Both kidneys appear normal in size, shape and position.No evidence of any malrotation or fused kidneys.</span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\">No radiodense calculus is noted on either side within pelvicalyceal system.<br />\r\nNo evidence of perinephric collection or perinephric stranding seen on either side.</span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\">Both ureters appear normal in course and caliber. No evidence of any radiodense calculus is seen.No evidence of any periureteric collection or stranding noted.</span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\">Both adrenal glands appear normal.</span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\">Prostate appears normal in size.</span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><u><strong>Comments:-</strong></u><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span><br />\r\n&nbsp;</p>\r\n','CTSN','N','6186','Y','yatin','2021-02-12 17:01:02','parul','2021-05-15 13:02:10'),(142,0,0,'CT KUB UROGRAM','<p>&nbsp;</p>\r\n\r\n<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Referral Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;<br />\r\n<strong>Technique: </strong>&nbsp;MDCT imaging was performed using thin contiguous axial scan of KUB region.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Findings:</strong></p>\r\n\r\n<p><strong>Right kidney measures: mm<br />\r\nLeft kidney measures: mm</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Both kidneys appear normal in size, shape and position.No evidence of any malrotation or fused kidneys.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>No radiodense calculus is noted on either side within pelvicalyceal system.<br />\r\nNo evidence of perinephric collection or perinephric stranding seen on either side.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Both ureters appear normal in course and caliber. No evidence of any radiodense calculus is seen.No evidence of any periureteric collection or stranding noted.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Both adrenal glands appear normal.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Prostate appears normal in size.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><u><strong>Comments:-</strong></u><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n','CTSN','N','2894','Y','yatin','2021-02-12 17:03:54','','0000-00-00 00:00:00'),(143,0,0,'X-RAY CHEST AP','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both lung fields appear clear.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No obvious evidence of consolidation or mass lesion is seen.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both costophrenic angles are clear. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cardiac shadow appears within normal limits.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both hilar shadows appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both domes of diaphragm appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Bony thorax appears normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n','XRY','N','2943','Y','thims','2021-03-03 13:52:57','','0000-00-00 00:00:00'),(144,0,0,'X-RAY KUB','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No obvious radiopaque shadow in pelvis.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">DJ stent is noted on right side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Drain tube seen on right side. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized lumbar vertebrae appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n','XRY','N','2963','Y','thims','2021-03-03 13:55:22','','0000-00-00 00:00:00'),(145,0,0,'X-RAY KUB','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No obvious radiopaque shadow in pelvis.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">DJ stent is noted on right side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Drain tube seen on right side. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized lumbar vertebrae appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n','XRY','N','3980','Y','thims','2021-03-03 13:57:02','','0000-00-00 00:00:00'),(146,0,0,'CT ABDOMEN - MALE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><u>Technique:</u></strong>&nbsp; MDCT imaging was performed using thin contiguous axial scan of abdomen with oral, per rectal and intravenous contrast.</span></span></p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></u></strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></u></span></span></p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Liver is normal in size and shape. No focal or diffuse lesion noted in liver. No evidence of any enhancing lesion noted. </span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Gall bladder doesn&rsquo;t reveal any radiodense calculus or enhancing mass lesion. No evidence of any wall thickening noted.<strong> </strong></span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Common bile duct appears normal in caliber. Intrahepatic biliary radicles are normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pancreas appears normal in size. No evidence of any focal fluid collection or enhancing mass lesion noted.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Spleen appears normal in size. No evidence of enhancing focal or diffuse lesion seen. </span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys are normal in size, shape and position. No evidence of calculus, hydronephrosis or mass lesion is seen on either side. Both adrenal glands appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of significant peri-portal, peri-pancreatic, pre-para aortic or mesenteric lymphadenopathy.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Opacified bowel loops appear normal. No evidence of abnormal dilatation, wall thickening or enhancing mass lesion is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No e/o calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Prostate appears normal in size. </span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Aorta and both psoas muscles appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of free or loculated fluid collection is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized bone window cuts appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized lung window cuts appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">COMMENTS: </span></u></strong></span></span></p>\r\n','CTSN','N','2878','Y','thims','2021-03-03 14:04:02','thims','2021-03-03 14:05:20'),(147,0,0,'CT ABDOMEN - FEMALE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-right:6px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><u>Technique:</u></strong>&nbsp; MDCT imaging was performed using thin contiguous axial scan of abdomen with oral, per rectal and intravenous contrast.</span></span></p>\r\n\r\n<p style=\"margin-right:6px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:6px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></u></strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></u></span></span></p>\r\n\r\n<p style=\"margin-right:6px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:6px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Liver is normal in size and shape. No focal or diffuse lesion noted in liver. No evidence of any enhancing lesion noted. </span></span></span></p>\r\n\r\n<p style=\"margin-right:6px\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:6px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Gall bladder doesn&rsquo;t reveal any radiodense calculus or enhancing mass lesion. No evidence of any wall thickening noted.<strong> </strong></span></span></span></p>\r\n\r\n<p style=\"margin-right:6px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Common bile duct appears normal in caliber. Intrahepatic biliary radicles are normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:6px\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:6px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pancreas appears normal in size. No evidence of any focal fluid collection or enhancing mass lesion noted.</span></span></span></p>\r\n\r\n<p style=\"margin-right:6px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Spleen appears normal in size. No evidence of enhancing focal or diffuse lesion seen. </span></span></span></p>\r\n\r\n<p style=\"margin-right:6px\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:6px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys are normal in size, shape and position. No evidence of calculus, hydronephrosis or mass lesion is seen on either side. Both adrenal glands appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:6px\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:6px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of significant peri-portal, peri-pancreatic, pre-para aortic or mesenteric lymphadenopathy.</span></span></span></p>\r\n\r\n<p style=\"margin-right:6px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Opacified bowel loops appear normal. No evidence of abnormal dilatation, wall thickening or enhancing mass lesion is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:6px\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:6px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No e/o calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:6px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Uterus and adnexa appears normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:6px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Aorta and both psoas muscles appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:6px\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:6px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of free or loculated fluid collection is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:6px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized bone window cuts appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:6px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized lung window cuts appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:6px\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:6px\"><strong><u><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">COMMENTS:</span></span></u></strong></p>\r\n\r\n<p style=\"margin-right:6px\">&nbsp;</p>\r\n','CTSN','N','2878','Y','thims','2021-03-03 14:08:11','','0000-00-00 00:00:00'),(148,0,0,'CT BRAIN','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-right:-16px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Technique</span></u></strong><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></strong><strong> </strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">MDCT imaging was performed using thin sequential axial plain scan of brain from base to vertex.</span></span></span></span></p>\r\n\r\n<p style=\"margin-right:-16px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-16px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></u></strong><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></strong></span></span></p>\r\n\r\n<p style=\"margin-left:48px; margin-right:1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cerebral atrophic changes are noted in the form of prominence of sulci, gyri, ventricular system and cisterns. </span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Confluent hypodensities are noted in bilateral periventricular white matter and centrum semiovale &ndash; suggest possibility of small vessel ischemic changes.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-right:1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both cerebral hemispheres appear normal. No e/o any focal or diffuse lesion is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Ventricular system and basal cisterns appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of midline shift is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cerebellum and brainstem appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of subdural, extradural, intraparenchymal hemorrhage or intraventricular hemorrhage is seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Bony skull vault appears normal.</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">IMPRESSION</span></u></strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></span></span></p>\r\n','CTSN','N','2888','Y','thims','2021-03-03 14:12:10','parul','2021-05-14 11:53:06'),(149,0,0,'CT THORAX PLAIN','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><u><span style=\"font-size:11.0pt\">Technique:</span></u></strong><span style=\"font-size:11.0pt\"> MDCT imaging was performed using thin contiguous axial scan of thorax from thoracic inlet to lung bases. </span></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></u></strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></u></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">There is evidence of multifocal bilateral patchy ground glass opacities with interstitial thickening and focally dilated bronchi noted &ndash; suggest possibility of viral pneumonitis.</span></span></span></p>\r\n\r\n<p style=\"margin-right:2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">CT severity index is </span></span></span></p>\r\n\r\n<p style=\"margin-right:2px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both lung fields appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of any ground glass opacities , reticulo-nodular infiltrations or mosaic attenuation noted.</span></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\">&nbsp;</span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Trachea and major bronchi appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Arch of aorta and major vessels appear normal. No evidence of any abnormal dilatation or calcification noted in major vessels.</span></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of any mediastinal or hilar nodes noted.</span></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of pleural or pericardial effusion.</span></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized esophagus appears normal. </span></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized portion of adrenal glands appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">COMMENTS</span></u></strong><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:-</span></strong></span></span></p>\r\n','CTSN','N','2896','Y','thims','2021-03-03 14:19:02','parul','2021-04-03 15:04:17'),(150,0,0,'USG KUB - MALE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right kidney measures- mm</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left kidney measures- mm</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys appear normal in size, shape, position and echotexture.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cortico-medullary differentiation is preserved on both sides.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of calculus, hydronephrosis or mass lesion is seen on either side.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of perinephric collection is seen on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><em>Pre-void volume measures </em></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Post-void volume measures</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Prostate appears normal in size and echopattern.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments:</span></u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','3178','Y','thims','2021-03-03 14:21:59','','0000-00-00 00:00:00'),(151,0,0,'USG KUB - FEMALE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right kidney measures- mm</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left kidney measures- mm</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys appear normal in size, shape, position and echotexture.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cortico-medullary differentiation is preserved on both sides.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of calculus, hydronephrosis or mass lesion is seen on either side.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of perinephric collection is seen on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><em>Pre-void volume measures </em></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Post-void volume measures</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Uterus appears normal in size and echopattern. No evidence of adnexal mass is seen on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">IMPRESSION:</span></u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','3178','Y','thims','2021-03-03 14:23:17','','0000-00-00 00:00:00'),(152,0,0,'X-RAY KUB PROTABLE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>No obvious radiopaque shadow in pelvis.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>DJ stent is noted on right side.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Drain tube seen on right side.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Visualized lumbar vertebrae appear normal.</p>\r\n\r\n<p>&nbsp;</p>\r\n','XRY','N','4219','Y','thims','2021-03-09 15:19:48','','0000-00-00 00:00:00'),(153,0,0,'X-RAY KUB PROTABLE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>No obvious radiopaque shadow in pelvis.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>DJ stent is noted on right side.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Drain tube seen on right side.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Visualized lumbar vertebrae appear normal.</p>\r\n\r\n<p>&nbsp;</p>\r\n','XRY','N','4424','Y','thims','2021-03-09 15:21:22','','0000-00-00 00:00:00'),(154,0,0,'X-RAY CHEST PA','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both lung fields appear clear.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No obvious evidence of consolidation or mass lesion is seen.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both costophrenic angles are clear. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cardiac shadow appears within normal limits.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both hilar shadows appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both domes of diaphragm appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Bony thorax appears normal.</span></span></span></p>\r\n','XRY','N','2946','Y','parul','2021-03-27 13:01:27','parul','2021-05-10 17:13:07'),(9998,0,0,'COVERING LETTER','','OTHER','N','','Y','thims','2022-03-22 10:16:49','thims','2022-03-22 12:02:21'),(9999,0,0,'MASTER TEMPLATE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','RAD','N','','Y','thims','2020-04-21 02:00:00','thims','2021-03-03 13:54:00'),(10000,0,0,'NEW TEMPLATE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','CTSN','N','2908','N','parul','2021-05-11 14:27:37','parul','2021-05-12 11:36:10'),(10001,0,0,'NEW TEMPLATE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','CTSN','N','2908','N','parul','2021-05-11 14:30:02','parul','2021-05-12 11:36:00'),(10002,0,0,'CT SCAN PNS PLAIN ','<table cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:undefined; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;Patient Name&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;Date&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;Patient Id&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;Age&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;Consultant Doctor&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;Gender&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><ins><span style=\"font-size:12pt\"><strong>REPORT</strong></span></ins></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\"><ins>Technique</ins>: </span></strong><span class=\"marker-yellow\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">MDCT imaging of PNS region was performed using thin axial plain scan. Coronal reconstruction is done.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><ins><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings:</span></strong></span></span></ins></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">All paranasal sinuses appear normal.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No mucosal thickening or hypodense fluid collection noted.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Bony sinus walls appear normal. No cortical erosion or destruction is seen.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both ostio-meatal complex and frontal recesses appear clear.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Nasal septum is noted in midline.No evidence of deviated nasal septum or bony spur noted.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Turbinates appear normal.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">The nasal cavity, naso-pharynx and imaged parapharyngeal structures appear normal.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span class=\"marker-yellow\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Mastoid air cells appear normal.</span></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p><ins><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments: </span></strong></span></span></ins></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span class=\"marker-yellow\"><strong><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><em>Normal study of CT scan PNS.</em></span></span></strong></span></li>\r\n</ul>\r\n','CTSN','N','2908','N','parul','2021-05-12 12:24:48','parul','2021-05-12 12:34:16'),(10003,0,0,'CT PNS PLAIN','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-right:-16px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Technique: </span></strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">MDCT imaging of PNS region was performed using thin axial plain scan. Coronal reconstruction is done.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-16px\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-16px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings:</span></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-16px\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-16px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">All paranasal sinuses appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-16px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No mucosal thickening or hypodense fluid collection noted.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-16px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Bony sinus walls appear normal. No cortical erosion or destruction is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-16px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both ostio-meatal complex and frontal recesses appear clear.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-16px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Nasal septum is noted in midline.No evidence of deviated nasal septum or bony spur noted.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-16px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Turbinates appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-16px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">The nasal cavity, naso-pharynx and imaged parapharyngeal structures appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-16px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Mastoid air cells appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-16px\">&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments: </span></u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><strong><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><em>Normal study of CT scan PNS.</em></span></span></strong></li>\r\n</ul>\r\n\r\n<h1 style=\"margin-right:60px\">&nbsp;</h1>\r\n','CTSN','N','2908','Y','parul','2021-05-12 12:39:06','parul','2021-05-25 10:55:50'),(10004,0,0,'TEMPORAL BONE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"line-height:14.4pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Technique:</span></u></strong>&nbsp; </span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"line-height:14.4pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">C.T. Scan of temporal bones was performed with sub-millimeter high-resolution axial images; Images were reformatted in coronal &amp; sagittal planes in Multi Planner Reconstruction. </span></span></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Report:</span></u></strong></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"line-height:15.6pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Bilateral external auditory canal and tympanic membrane appears normal. </span></span></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"line-height:15.6pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Bilateral middle ear cavity and its ossicles appear normal. No evidence of scutum or tegmental erosion on either side. </span></span></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"line-height:15.6pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Bilateral mastoid air cells show normal pneumatization. </span></span></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"line-height:15.6pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both bony internal auditory canals appear unremarkable.</span></span></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"line-height:15.6pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Bony facial canal appears normal on both sides. </span></span></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"line-height:15.6pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Bilateral cochlea, vestibule and semi-circular canals appear normal.</span></span></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"line-height:15.6pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cochlear duct on both sides appears normal.</span></span></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"line-height:15.6pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Bilateral petrous bone, carotid canal and jugular foramen appear normal. No evidence of high jugular bulb or aberrant carotid course. </span></span></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments:</span></u></strong></span></span></p>\r\n\r\n<p style=\"margin-right:5px; text-align:justify\">&nbsp;</p>\r\n\r\n<ul>\r\n	<li style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal HRCT temporal bone study.</span></strong></span></span></li>\r\n</ul>\r\n\r\n<p style=\"margin-left:-29px; margin-right:-29px; text-align:justify\">&nbsp;</p>\r\n','CTSN','N','2911','Y','parul','2021-05-12 14:07:09','','0000-00-00 00:00:00'),(10005,0,0,'USG MALE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Liver appears normal in size, shape and echotexture.No focal lesion noted in liver. No evidence of IHBRD noted.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Gall bladder is partially distended and appears grossly normal. </span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Common bile duct appears normal in size.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Portal vein appears normal. No evidence of any thrombus noted.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized pancreas appears normal in size and echopattern. </span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Spleen appears normal in size and echotexture. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right kidney measures </span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left kidney measures </span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys are normal in size, shape and echopattern with preserved Cortico-medullary differentiation. No evidence of calculus, hydronephrosis or mass is seen on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of significant pre or para aortic lymphadenopathy.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of abnormal dilatation of bowel loops or bowel wall thickening is seen.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Prostate appears normal in size, shape and echopattern.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of ascites or effusion noted.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">IMPRESSION:</span></u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','3189','Y','parul','2021-05-13 15:09:51','manisham','2023-01-03 13:08:45'),(10006,0,0,'CT BRAIN ANGIO','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><u><span style=\"font-size:11.0pt\">Technique:</span></u></strong><span style=\"font-size:11.0pt\"> <strong>MDCT angiography &amp; venography of brain was performed after giving intra venous non-ionic contrast.</strong></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:-29px; margin-right:-29px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong>&nbsp; &nbsp; &nbsp; &nbsp;<u>Findings</u></strong><u>:</u></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">MDCT angiography &amp; venography of brain was performed after I.V.&nbsp; injection of non-ionic contrast. The angiogram and venogram was viewed in multiple projections to bring all visualised arteries.</span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">Both middle cerebral arteries arise normally from the internal carotid on either side. There is no vascular narrowing. </span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">The internal carotid arteries show normal course and calibre.No evidence of any dilatation or stenosis noted. Each carotid siphon is normal, showing no displacement or extrinsic compression. </span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">The anterior cerebral artery shows no signs of narrowing or displacement. </span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">The basilar artery shows a normal course and caliber and divides into normal size posterior cerebral arteries. The anterior and posterior communicating arteries on each side are normally developed and show no evidence of any dilatation or stenosis noted. </span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">Both vertebral arteries appear normal.</span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">During venous phase, there is noted bifid superior saggital sinus anteriorly.</span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">Both transverse and sigmoid sinuses appear normal.</span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">Straight sinus and vein of galen appear normal.</span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">No evidence of venous thrombosis is seen.</span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><u>IMPRESSION:</u></strong></span></span></p>\r\n\r\n<ul>\r\n	<li style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong>Normal intra-cranial CT angiography and venography.</strong></span></span></li>\r\n	<li style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong>No evidence of aneurysm, AVM or stenosis on the present examination.</strong></span></span></li>\r\n	<li style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong>No evidence of venous thrombosis.</strong></span></span></li>\r\n</ul>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n','CTSN','N','2879','Y','parul','2021-05-13 16:24:59','','0000-00-00 00:00:00'),(10007,0,0,'USG FEMALE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Liver appears normal in size and echotexture. No focal or diffuse lesion noted in liver. No evidence of IHBRD noted.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Gall bladder is partially distended and appears grossly normal. </span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Common bile duct appears normal in size.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Portal vein appears normal. No evidence of any thrombus noted.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\">Visualized p<span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">ancreas appears normal in size and echopattern. </span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Spleen appears normal in size and echotexture. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right kidney measures </span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left kidney measures </span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys are normal in size, shape and echopattern with preserved Cortico-medullary differentiation. No evidence of calculus, hydronephrosis or mass is seen on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of significant pre or para aortic lymphadenopathy.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of abnormal dilatation of bowel loops or bowel wall thickening is seen.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and appears normal. No evidence of any calculus or wall thickening or any mass lesion noted.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Uterus appears normal in size, shape and echopattern.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No adnexal mass lesion noted.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of ascites or effusion noted.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">IMPRESSION:</span></u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No significant abnormality is detected. </span></strong></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<h1 style=\"margin-right:60px\">&nbsp;</h1>\r\n','USG','N','3189','Y','parul','2021-05-14 12:27:39','manisham','2023-01-03 11:21:52'),(10008,0,0,'MALE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><u>Technique:</u></strong>&nbsp; MDCT imaging was performed using thin contiguous axial scan of abdomen without oral, per rectal and intravenous contrast.</span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-29px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></u></strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></u></span></span></p>\r\n\r\n<p style=\"margin-right:-29px; text-align:justify\">&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Liver is normal in size and shape. No focal or diffuse lesion noted in liver. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Gall bladder doesn&rsquo;t reveal any radiodense calculus. No evidence of any wall thickening noted.<strong> </strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Common bile duct appears normal in caliber. Intrahepatic biliary radicles are normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pancreas appears normal in size. No evidence of any focal fluid collection noted.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Spleen appears normal in size. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys are normal in size, shape and position. No evidence of calculus, hydronephrosis or mass lesion is seen on either side. Both adrenal glands appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of significant peri-portal, peri-pancreatic, pre-para aortic or mesenteric lymphadenopathy.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Unopacified bowel loops appear normal. No evidence of abnormal dilatation, wall thickening seen.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No e/o calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Prostate appears normal in size.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Aorta and both psoas muscles appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of free or loculated fluid collection is seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized bone window cuts appear normal.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized lung window cuts appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-29px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-29px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments: </span></u></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-29px; text-align:justify\">&nbsp;</p>\r\n\r\n<ul>\r\n	<li><strong><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">No significant abnormality is seen.</span></span></strong></li>\r\n</ul>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-29px; text-align:justify\">&nbsp;</p>\r\n','CTSN','N','2913','Y','parul','2021-05-14 16:07:24','manisham','2023-01-03 13:08:59'),(10009,0,0,'FEMALE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><u>Technique:</u></strong>&nbsp; MDCT imaging was performed using thin contiguous axial scan of abdomen without oral, per rectal and intravenous contrast.</span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-29px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></u></strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></u></span></span></p>\r\n\r\n<p style=\"margin-right:-29px; text-align:justify\">&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Liver is normal in size and shape. No focal or diffuse lesion noted in liver. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Gall bladder doesn&rsquo;t reveal any radiodense calculus. No evidence of any wall thickening noted.<strong> </strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Common bile duct appears normal in caliber. Intrahepatic biliary radicles are normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pancreas appears normal in size. No evidence of any focal fluid collection noted.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Spleen appears normal in size. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys are normal in size, shape and position. No evidence of calculus, hydronephrosis or mass lesion is seen on either side. Both adrenal glands appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of significant peri-portal, peri-pancreatic, pre-para aortic or mesenteric lymphadenopathy.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Unopacified bowel loops appear normal. No evidence of abnormal dilatation, wall thickening seen.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No e/o calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Uterus is normal. </span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Aorta and both psoas muscles appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of free or loculated fluid collection is seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized bone window cuts appear normal.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized lung window cuts appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-29px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-29px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments: </span></u></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-29px; text-align:justify\">&nbsp;</p>\r\n\r\n<ul>\r\n	<li><strong><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><em>No significant abnormality is seen.</em></span></span></strong></li>\r\n</ul>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-29px; text-align:justify\">&nbsp;</p>\r\n','CTSN','N','2913','Y','parul','2021-05-15 12:02:19','','0000-00-00 00:00:00'),(10010,0,0,'X-RAY CHEST AP (PORTABLE)','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both lung fields appear normal. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No obvious evidence of consolidation or mass lesion is seen.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both costophrenic angles are clear. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cardiac shadow appears within normal limits.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both hilar shadows appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both domes of diaphragm appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Bony thorax appears normal.</span></span></span></p>\r\n\r\n<h1 style=\"margin-left:96px; margin-right:60px\">&nbsp;</h1>\r\n','XRY','N','4199','Y','parul','2021-05-15 12:19:51','','0000-00-00 00:00:00'),(10011,0,0,'LS SPINE LAT','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal alignment and mineralization of lumbar spine noted.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral bodies and intervertebral disc spaces appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of wedging or collapse of vertebral bodies noted.</span> </span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral appendages, apophyseal joints and spinous process appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of spondylolysis or listhesis is seen.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pre &amp; paravertebral soft tissue appears normal.</span></span></span></li>\r\n</ul>\r\n','XRY','N','2967','Y','parul','2021-05-15 12:59:16','','0000-00-00 00:00:00'),(10012,0,0,'LS SPINE ','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal alignment and mineralization of lumbar spine noted.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral bodies and intervertebral disc spaces appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of wedging or collapse of vertebral bodies noted.</span> </span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral appendages, apophyseal joints and spinous process appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of spondylolysis or listhesis is seen.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pre &amp; paravertebral soft tissue appears normal.</span></span></span></li>\r\n</ul>\r\n','XRY','N','2966','Y','parul','2021-05-15 13:00:09','','0000-00-00 00:00:00'),(10013,0,0,'LS SPINE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal alignment and mineralization of lumbar spine noted.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral bodies and intervertebral disc spaces appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of wedging or collapse of vertebral bodies noted.</span> </span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral appendages, apophyseal joints and spinous process appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of spondylolysis or listhesis is seen.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pre &amp; paravertebral soft tissue appears normal.</span></span></span></li>\r\n</ul>\r\n','XRY','N','2965','Y','parul','2021-05-15 13:00:32','','0000-00-00 00:00:00'),(10014,0,0,'CERVICAL SPINE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal alignment and mineralization of cervical spine noted.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral bodies and intervertebral disc spaces appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of wedging or collapse of vertebral bodies noted.</span> </span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral appendages, apophyseal joints and spinous process appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No definite evidence of atlanto-axial subluxation noted.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pre paravertebral soft tissue appears normal.</span></span></span></li>\r\n</ul>\r\n','XRY','N','2942','Y','parul','2021-05-15 13:04:21','','0000-00-00 00:00:00'),(10015,0,0,'RIGHT LOWER LIMB VENOUS DOPPLER','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right external iliac, common femoral, superficial femoral, deep femoral, popliteal, anterior &amp; posterior tibial veins appear normal.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">The deep veins show normal color filling and compressibility. No evidence of thrombosis is seen.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right Sapheno-femoral and sapheno-popliteal junction is normal. No evidence of incompetence is seen.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No definite evidence of varicosities seen. </span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No e/o significant subcutaneous edema is seen.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments: </span></u></strong></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<ul>\r\n	<li style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal right lower limb venous Doppler.</span></strong></span></span></li>\r\n	<li style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of deep venous thrombosis on present study.</span></strong></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','4072','Y','parul','2021-05-17 16:31:11','','0000-00-00 00:00:00'),(10016,0,0,'LEFT LOWER LIMB VENOUS DOPPLER','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left external iliac, common femoral, superficial femoral, deep femoral, popliteal, anterior &amp; posterior tibial veins appear normal.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">The deep veins show normal color filling and compressibility. No evidence of thrombosis is seen.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left Sapheno-femoral and sapheno-popliteal junction is normal. No evidence of incompetence is seen.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No definite evidence of varicosities seen. </span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No e/o significant subcutaneous edema is seen.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments: </span></u></strong></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<ul>\r\n	<li style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal left lower limb venous Doppler.</span></strong></span></span></li>\r\n	<li style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of deep venous thrombosis on present study.</span></strong></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','4072','Y','parul','2021-05-17 16:32:07','','0000-00-00 00:00:00'),(10017,0,0,'USG BREAST','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">RIGHT BREAST: </span></u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Soft tissue of breast appears normal.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of focal hypoechoic lesions.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of skin thickening or nipple retraction is seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Retroareolar region appears normal.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No obvious dilatation of lactiferous ducts noted.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No lymphnodes are noted in right axilla</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">LEFT BREAST:</span></u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Soft tissue of breast appears normal.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of focal hypoechoic lesions.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of skin thickening or nipple retraction is seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Retroareolar region appears normal.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No obvious dilatation of lactiferous ducts noted.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No lymphnodes are noted in left axilla</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">IMPRESSION:</span></u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u>&nbsp;</u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','3175','Y','parul','2021-05-18 12:54:35','','0000-00-00 00:00:00'),(10018,0,0,'CT ABDOMEN - FEMALE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><u>Technique:</u></strong>&nbsp; MDCT imaging was performed using thin contiguous axial scan of abdomen with oral, per rectal and intravenous contrast.</span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-29px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></u></strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></u></span></span></p>\r\n\r\n<p style=\"margin-right:-29px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Liver is normal in size and shape. No focal or diffuse lesion noted in liver. No evidence of any enhancing lesion noted. </span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Gall bladder doesn&rsquo;t reveal any radiodense calculus or enhancing mass lesion. No evidence of any wall thickening noted.<strong> </strong></span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Common bile duct appears normal in caliber. Intrahepatic biliary radicles are normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pancreas appears normal in size. No evidence of any focal fluid collection or enhancing mass lesion noted.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Spleen appears normal in size. No evidence of enhancing focal or diffuse lesion seen. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys are normal in size, shape and position. No evidence of calculus, hydronephrosis or mass lesion is seen on either side. Both adrenal glands appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of significant peri-portal, peri-pancreatic, pre-para aortic or mesenteric lymphadenopathy.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Opacified bowel loops appear normal. No evidence of abnormal dilatation, wall thickening or enhancing mass lesion is seen.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No e/o calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Uterus and adnexa appears normal.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Aorta and both psoas muscles appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of free or loculated fluid collection is seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized bone window cuts appear normal.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized lung window cuts appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-29px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-29px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">COMMENTS: </span></u></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-29px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-29px; text-align:justify\">&nbsp;</p>\r\n','CTSN','N','2912','Y','parul','2021-05-19 13:48:25','','0000-00-00 00:00:00'),(10019,0,0,'CT ABDOMEN - MALE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><u>Technique:</u></strong>&nbsp; MDCT imaging was performed using thin contiguous axial scan of abdomen with oral, per rectal and intravenous contrast.</span></span></p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></u></strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></u></span></span></p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Liver is normal in size and shape. No focal or diffuse lesion noted in liver. No evidence of any enhancing lesion noted. </span></span></span></p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Gall bladder doesn&rsquo;t reveal any radiodense calculus or enhancing mass lesion. No evidence of any wall thickening noted.<strong> </strong></span></span></span></p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Common bile duct appears normal in caliber. Intrahepatic biliary radicles are normal.</span></span></span></p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pancreas appears normal in size. No evidence of any focal fluid collection or enhancing mass lesion noted.</span></span></span></p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Spleen appears normal in size. No evidence of enhancing focal or diffuse lesion seen. </span></span></span></p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys are normal in size, shape and position. No evidence of calculus, hydronephrosis or mass lesion is seen on either side. Both adrenal glands appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of significant peri-portal, peri-pancreatic, pre-para aortic or mesenteric lymphadenopathy.</span></span></span></p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Opacified bowel loops appear normal. No evidence of abnormal dilatation, wall thickening or enhancing mass lesion is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No e/o calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Prostate appears normal in size. </span></span></span></p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Aorta and both psoas muscles appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of free or loculated fluid collection is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized bone window cuts appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized lung window cuts appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\"><u><strong>COMMENTS</strong></u>:&nbsp;</span></span></span></p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:28px; margin-right:36px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:-29px; margin-right:-29px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:-29px; margin-right:-29px; text-align:justify\">&nbsp;</p>\r\n','CTSN','N','2912','Y','parul','2021-05-19 13:50:10','','0000-00-00 00:00:00'),(10020,0,0,'USG PELVIS ','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Uterus is anteverted and appears normal in size and echotexture.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Endometrial thickness measures 2 mm</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\">&nbsp;</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both ovaries appear normal in size and echotexture.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of adnexal mass lesion is seen on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and appears normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of free fluid is seen in pelvis.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">COMMENTS:</span></span></u></strong></span></span></p>\r\n\r\n<ul>\r\n	<li><strong><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal USG pelvis.</span></span></span></strong></li>\r\n</ul>\r\n','USG','N','3182','Y','parul','2021-05-19 16:00:38','','0000-00-00 00:00:00'),(10021,0,0,'CT THORAX CONTRAST','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><u>Technique:</u></strong>&nbsp; MDCT imaging was performed using thin contiguous axial plain &amp; contrast scan of thorax from thoracic inlet to lung bases after giving I.V. contrast. </span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></u></strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:&nbsp; </span></u></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both lung fields appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of any ground glass attenuation, reticulo-nodular opacities or mosaic attenuation noted.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Trachea and main bronchi appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Arch of aorta and major vessels appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of any mediastinal or hilar lymphnodes noted.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No pleural or pericardial effusion noted.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized esophagus appears normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Bony thorax appears normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized portion of liver and adrenal glands appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">COMMENTS: </span></u></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:-29px; margin-right:-29px; text-align:justify\">&nbsp;</p>\r\n','CTSN','N','2897','Y','parul','2021-05-21 12:42:40','','0000-00-00 00:00:00'),(10022,0,0,'ANGIO HEAD AND NECK','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">TECHNIQUE:</span></strong><strong> </strong>MDCT angiography of head and neck was performed after I.V. injection of non-ionic contrast. The angiogram was viewed in multiple projections to bring all visualised arteries.</span></span></p>\r\n\r\n<p style=\"margin-left:-29px; margin-right:-29px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:-29px; margin-right:-29px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">&nbsp; &nbsp; &nbsp;FINDINGS</span></strong><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">:</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">Both middle cerebral arteries arise normally from the internal carotid on either side and forms normal insular loops. There is no circumscribed vascular narrowing or dilatation.</span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">The anterior cerebral artery shows no signs of narrowing or displacement.</span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">The basilar artery shows a normal course and caliber and divides into normal size posterior cerebral arteries. The anterior and posterior communicating arteries on each side are normally developed and of normal size.</span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">The other evaluable portions of the neurocranium show no abnormalities.</span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">Common carotid artery, carotid bulb and bifurcation appear normal on either side.</span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">Both internal carotid and external carotid arteries appear normal.</span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">No stenosis, AVM or aneurysm is seen.</span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\">Both vertebral arteries appear normal.</span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><u><span style=\"font-size:14.0pt\"><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">IMPRESSION</span></span></u></strong><strong><span style=\"font-size:14.0pt\"><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">:-</span></span></strong></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<ul style=\"list-style-type:square\">\r\n	<li style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong>The CT angiography of head and neck vessels reveals normal appearance.</strong></span></span></li>\r\n	<li style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong>No stenosis, AVM or aneurysm.</strong></span></span></li>\r\n</ul>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n','CTSN','N','2880','Y','parul','2021-05-25 12:50:17','','0000-00-00 00:00:00'),(10023,0,0,'CT LS SPINE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-right:-16px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Technique:</span></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-16px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-16px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">MDCT imaging was performed using thin axial plain scan of lumbar spine. </span></span></span></p>\r\n\r\n<p style=\"margin-right:-16px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-16px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings:</span></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-16px; text-align:justify\">&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal alignment and mineralization of lumbar spine noted.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral bodies and intervertebral disc spaces appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No wedging, compression or collapse of vertebral bodies noted.</span> </span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral appendages, apophyseal joints and spinous process appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of any osteolytic or osteosclerotic lesion noted in vertebral bodies.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of spondylolysis or listhesis is seen.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pre &amp; paravertebral soft tissue appears normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized pelvic bones appear normal.</span></span></span></li>\r\n</ul>\r\n\r\n<p style=\"margin-left:48px\">&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','CTSN','N','2900','Y','parul','2021-05-31 10:01:51','','0000-00-00 00:00:00'),(10024,0,0,'X-RAY KUB PROTABLE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>No obvious radiopaque shadow in pelvis.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>DJ stent is noted on right side.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Drain tube seen on right side.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Visualized lumbar vertebrae appear normal.</p>\r\n\r\n<p>&nbsp;</p>\r\n','XRY','N','4219','Y','parul','2021-05-31 12:41:30','','0000-00-00 00:00:00'),(10025,0,0,'CERVICAL SPINE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal alignment and mineralization of cervical spine noted.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral bodies and intervertebral disc spaces appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of wedging or collapse of vertebral bodies noted.</span> </span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral appendages, apophyseal joints and spinous process appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No definite evidence of atlanto-axial subluxation noted.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pre paravertebral soft tissue appears normal.</span></span></span></li>\r\n</ul>\r\n\r\n<p style=\"margin-left:24px\">&nbsp;</p>\r\n','XRY','N','2941','Y','parul','2021-06-01 12:28:21','','0000-00-00 00:00:00'),(10026,0,0,'LS SPINE ','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal alignment and mineralization of lumbar spine noted.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral bodies and intervertebral disc spaces appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of wedging or collapse of vertebral bodies noted.</span> </span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral appendages, apophyseal joints and spinous process appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of spondylolysis or listhesis is seen.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pre &amp; paravertebral soft tissue appears normal.</span></span></span></li>\r\n</ul>\r\n','XRY','N','2966','Y','parul','2021-06-01 12:33:46','','0000-00-00 00:00:00'),(10027,0,0,'LS SPINE ','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal alignment and mineralization of lumbar spine noted.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral bodies and intervertebral disc spaces appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of wedging or collapse of vertebral bodies noted.</span> </span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral appendages, apophyseal joints and spinous process appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of spondylolysis or listhesis is seen.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pre &amp; paravertebral soft tissue appears normal.</span></span></span></li>\r\n</ul>\r\n','XRY','N','2966','N','parul','2021-06-01 12:36:04','','0000-00-00 00:00:00'),(10028,0,0,'LS SPINE ','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal alignment and mineralization of lumbar spine noted.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral bodies and intervertebral disc spaces appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of wedging or collapse of vertebral bodies noted.</span> </span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral appendages, apophyseal joints and spinous process appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of spondylolysis or listhesis is seen.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pre &amp; paravertebral soft tissue appears normal.</span></span></span></li>\r\n</ul>\r\n','XRY','N','2966','Y','parul','2021-06-01 12:36:52','','0000-00-00 00:00:00'),(10029,0,0,'LS SPINE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal alignment and mineralization of lumbar spine noted.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral bodies and intervertebral disc spaces appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of wedging or collapse of vertebral bodies noted.</span> </span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Vertebral appendages, apophyseal joints and spinous process appear normal.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of spondylolysis or listhesis is seen.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pre &amp; paravertebral soft tissue appears normal.</span></span></span></li>\r\n</ul>\r\n\r\n<p style=\"margin-left:24px\">&nbsp;</p>\r\n','XRY','N','3046','Y','parul','2021-06-01 12:40:31','','0000-00-00 00:00:00'),(10030,0,0,'CT ANGIO PULMONARY ','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,sans-serif\"><strong><em><u><span style=\"font-size:11.0pt\">Technique:</span></u></em></strong><em><span style=\"font-size:11.0pt\">&nbsp; MDCT pulmonary angiography imaging was performed using thin contiguous axial scan of thorax from thoracic inlet to lung bases with I.V. contrast. Arterial and venous phases were obtained.</span></em></span></span></p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></u></strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></u></span></span></p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Major pulmonary artery and right &amp; left pulmonary arteries appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Major pulmonary artery measures&nbsp;&nbsp;&nbsp; </span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right pulmonary artery measures&nbsp;&nbsp;&nbsp; </span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left pulmonary artery measures&nbsp;&nbsp; </span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No obvious filling defect is seen in major pulmonary artery, right &amp; left pulmonary arteries or their branches upto segmental &ndash;subsegmental level.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No abnormal dilatation or calcification seen in pulmonary arteries or its branches.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pulmonary veins appear normal and drain into left atrium.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cardiac chambers appear normal. </span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized lung fields appear normal.No evidence of any wedge shaped infarct noted in lung fields. No e/o any focal parenchymal lesion, mediastinal lymphadenopathy or pleural effusion is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments: </span></u></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\">&nbsp;</p>\r\n\r\n<ul>\r\n	<li style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal CT pulmonary angiography.</span></strong></span></span></li>\r\n</ul>\r\n\r\n<p style=\"margin-right:-2px; text-align:justify\">&nbsp;</p>\r\n','CTSN','N','2882','Y','parul','2021-06-03 15:09:53','','0000-00-00 00:00:00'),(10031,0,0,'MAMMOGRAPHY','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><em><span style=\"font-size:10.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">(Dedicated digital mammography with Craniocaudal and media lateral oblique view was performed.)</span></span></em></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal fibroglandular breast parenchyma is noted in breast on either side. </span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of clustered micro-calcification.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of mass or architectural distortion is seen.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of skin thickening or nipple retraction is seen.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of axillary lymphadenopathy.</span></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">On sonography,</span></strong> </span></span></p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal breast parenchyma is seen on either side. </span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of solid or cystic mass lesion is seen.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of axillary lymphadenopathy on either side.</span></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments</span></u></strong><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">: </span></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No significant abnormality detected. (BIRADS - I).</span></strong></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No direct or indirect sign of malignancy seen.</span></strong></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:9.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">BIRADS Categories:</span></span></strong></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Need imaging evaluation.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">I&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Negative </span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">II&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Benign finding</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">III&nbsp;&nbsp;&nbsp;&nbsp; probably benign finding.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">IV&nbsp;&nbsp;&nbsp;&nbsp; Suspicious abnormality.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">V&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Highly suggestive of malignancy.</span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><em><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">The false negative mammography is approximately 10%. Management of a palpable abnormality must be based upon clinical grounds.</span></span></em></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','3981','Y','parul','2021-06-11 12:58:56','','0000-00-00 00:00:00'),(10032,0,0,'MAMMOGRAPHY','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><em><span style=\"font-size:10.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">(Dedicated digital mammography with Craniocaudal and media lateral oblique view was performed.)</span></span></em></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal fibroglandular breast parenchyma is noted in breast on either side. </span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of clustered micro-calcification.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of mass or architectural distortion is seen.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of skin thickening or nipple retraction is seen.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of axillary lymphadenopathy.</span></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">On sonography,</span></strong> </span></span></p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal breast parenchyma is seen on either side. </span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of solid or cystic mass lesion is seen.</span></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of axillary lymphadenopathy on either side.</span></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments</span></u></strong><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">: </span></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No significant abnormality detected. (BIRADS - I).</span></strong></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No direct or indirect sign of malignancy seen.</span></strong></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:9.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">BIRADS Categories:</span></span></strong></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Need imaging evaluation.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">I&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Negative </span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">II&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Benign finding</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">III&nbsp;&nbsp;&nbsp;&nbsp; probably benign finding.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">IV&nbsp;&nbsp;&nbsp;&nbsp; Suspicious abnormality.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">V&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Highly suggestive of malignancy.</span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><em><span style=\"font-size:8.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">The false negative mammography is approximately 10%. Management of a palpable abnormality must be based upon clinical grounds.</span></span></em></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','XRY','N','4083','Y','parul','2021-06-11 13:03:55','','0000-00-00 00:00:00'),(10033,0,0,'CT IVP FEMALE','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : CT IVP&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span><span style=\"font-size:10pt\"> &nbsp;<span class=\"marker-yellow\">MDCT imaging was performed using thin contiguous plain and contrast axial scan of KUB region.</span></span></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Findings:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Right kidney measures: mm<br />\r\nLeft kidney measures: mm</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both kidneys appear normal in size, shape and position.<br />\r\nNo evidence of calculus, hydronephrosis or mass lesion is seen on either side within pelvicalyceal system.<br />\r\nBoth kidneys show normal and equally dense nephrogram.<br />\r\nBoth kidneys show prompt excretion of contrast with normal pelvi-calyceal system filling.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both adrenal glands appear normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both ureters appear normal in course and caliber. No evidence of any radiodense calculus or hydroureter is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Uterus and both adnexa appear normal.&nbsp;<br />\r\nNo evidence of adnexal mass is seen on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n','CTSN','N','2895','N','manisham','2022-03-04 16:13:17','manisham','2022-05-14 14:59:29'),(10034,0,0,'MCU','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','XRY','N','4068','N','manisham','2022-03-04 16:20:22','manisham','2022-03-04 16:28:41'),(10035,0,0,'MCU','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','XRY','N','4068','N','manisham','2022-03-04 16:22:18','manisham','2022-03-04 16:28:59'),(10036,0,0,'MCU','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','XRY','N','4068','N','manisham','2022-03-04 16:23:10','manisham','2022-03-04 16:29:08'),(10037,0,0,'MCU','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-left:48px; text-align:center\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong>&nbsp;</strong><strong><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">MICTURATING CYSTOURETHROGRAM-MCU</span></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Procedure:</span></u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">300 cc of 50% diluted non-ionic contrast media was instilled in the urinary bladder through the catheter under proper aseptic precautions. MCU was performed in both supine position. Frontal &amp; oblique views are taken during micturation.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings:</span></u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and appears normal. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No e/o leakage of contrast </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Visualized urethra appears normal</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of vesico-ureteric reflux on either side.</span></span></span></p>\r\n\r\n<p style=\"margin-left:48px\">&nbsp;</p>\r\n','XRY','N','4068','Y','manisham','2022-03-04 16:27:37','manisham','2022-09-10 17:01:39'),(10038,0,0,'MCU','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Procedure:</span></u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">300 cc of 50% diluted non-ionic contrast media was instilled in the urinary bladder through the catheter under proper aseptic precautions. MCU was performed in both supine position. Frontal &amp; oblique views are taken during micturation.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings:</span></u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and appears normal. No e/o any trabeculations or filling defect is seen.</span></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No e/o leakage of contrast </span></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urethra appears normal. No e/o any narrowing is seen.</span></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No e/o retention of contrast is seen on post void film.</span></strong></span></span></p>\r\n','XRY','N','4068','Y','manisham','2022-03-04 17:37:33','','0000-00-00 00:00:00'),(10039,0,0,'MALE IVP','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,&quot;sans-serif&quot;\"><strong><u><span style=\"font-size:11.0pt\">Technique:</span></u></strong><span style=\"font-size:11.0pt\">&nbsp; MDCT imaging was performed using thin contiguous </span><span style=\"font-size:11.0pt\">plain and contrast </span><span style=\"font-size:11.0pt\">axial scan of KUB region.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></u></strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></u></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right kidney measures: mm.</span></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left kidney measures: mm</span></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys appear normal in size, shape and position.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of calculus, hydronephrosis or mass lesion is seen on either side within pelvicalyceal system.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys show normal and equally dense nephrogram.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys show prompt excretion of contrast with normal pelvi-calyceal system filling.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both adrenal glands appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both ureters appear normal in course and caliber. No evidence of any radiodense calculus or hydroureter is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Prostate appear normal in size.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">IMPRESSION</span></u></strong><strong><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">:</span></strong></span></span></p>\r\n','CTSN','N','2895','N','manisham','2022-03-08 14:06:20','manisham','2022-05-14 14:58:40'),(10040,0,0,'CT IVP FEMALE','<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,&quot;sans-serif&quot;\"><strong><u><span style=\"font-size:11.0pt\">Technique:</span></u></strong><span style=\"font-size:11.0pt\">&nbsp; MDCT imaging was performed using thin contiguous </span><span style=\"font-size:11.0pt\">plain and contrast </span><span style=\"font-size:11.0pt\">axial scan of KUB region.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></u></strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></u></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right kidney measures: mm.</span></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left kidney measures: mm</span></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys appear normal in size, shape and position.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of calculus, hydronephrosis or mass lesion is seen on either side within pelvicalyceal system.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys show normal and equally dense nephrogram.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys show prompt excretion of contrast with normal pelvi-calyceal system filling.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both adrenal glands appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both ureters appear normal in course and caliber. No evidence of any radiodense calculus or hydroureter is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Uterus and bilateral adnexa appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">IMPRESSION</span></u></strong><strong><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">:</span></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n','CTSN','N','2895','N','manisham','2022-03-08 14:07:22','manisham','2022-05-14 17:42:51'),(10041,0,0,'SCANOGRAM','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Hip joints appear unremarkable on either side.</span></span></span></span></span></li>\r\n</ul>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both knee joints show changes of osteoarthritis with varus angle measuring 13&nbsp;degrees on right side and 10 degrees on left side.</span></span></span></span></span></li>\r\n</ul>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both femora and tibia &ndash; fibula appear unremarkable.</span></span></span></span></span></li>\r\n</ul>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of any lytic or sclerotic lesion seen.</span></span></span></span></span></li>\r\n</ul>\r\n','CTSN','N','6761','Y','manisham','2022-03-08 14:22:43','','0000-00-00 00:00:00'),(10042,0,0,'DR. HIMANSHU','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><u><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></u></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-left:40px\"><span style=\"font-size:14pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"line-height:115%\"><strong><u>MEASURMENTS:</u></strong></span></span></span></p>\r\n\r\n<p style=\"margin-left:40px\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:40px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"line-height:115%\">AO/LA&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; 25/28&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;MITRAL VALVE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2.13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span></p>\r\n\r\n<p style=\"margin-left:40px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"line-height:115%\">LVD/LVS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;46/24&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;TRICUSPID VALVE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1.25&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span></p>\r\n\r\n<p style=\"margin-left:40px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"line-height:115%\">LVEF&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 60%&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;PULMONARY VALVE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6.85</span></span></span></p>\r\n\r\n<p style=\"margin-left:40px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"line-height:115%\">IVS/LVPW&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;10/11&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AORTIC VALVE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1.21&nbsp; &nbsp; &nbsp; &nbsp;11.86</span></span></span></p>\r\n\r\n<p style=\"margin-left:40px\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:40px\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:40px\"><span style=\"font-size:14pt\"><strong><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"line-height:115%\"><u>COMMENTS:</u></span></span></strong></span></p>\r\n\r\n<p style=\"margin-left:40px\">&nbsp;</p>\r\n\r\n<ul>\r\n	<li>\r\n	<p style=\"margin-left:40px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"line-height:115%\"><span style=\"line-height:115%\">Normal internal dimensions of all four cardiac chambers. </span></span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"margin-left:40px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"line-height:115%\"><span style=\"line-height:115%\">Structurally normal all four cardiac valves. </span></span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"margin-left:40px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"line-height:115%\"><span style=\"line-height:115%\">Normal LV systolic function. LVEF: 60%</span></span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"margin-left:40px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"line-height:115%\"><span style=\"line-height:115%\">NORMAL LV COMPLIANCE. // GRADE 1 DIASTOLIC DYSFUNCTION.</span></span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"margin-left:40px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"line-height:115%\"><span style=\"line-height:115%\">No RWMA at rest.</span></span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"margin-left:40px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"line-height:115%\"><span style=\"line-height:115%\">IVS &amp; IAS are Intact.</span></span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"margin-left:40px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"line-height:115%\"><span style=\"line-height:115%\">NO TR. No PAH. &nbsp;</span></span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"margin-left:40px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"line-height:115%\"><span style=\"line-height:115%\">No clot / vegetation.</span></span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"margin-left:40px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"line-height:115%\"><span style=\"line-height:115%\">No Pericardial effusion seen. </span></span></span></span></p>\r\n	</li>\r\n</ul>\r\n\r\n<p style=\"margin-left:40px\"><span style=\"font-size:14pt\"><strong><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"line-height:115%\"><u><span style=\"line-height:115%\">Conclusion:</span></u></span></span></strong></span></p>\r\n\r\n<ul>\r\n	<li>\r\n	<p style=\"margin-left:40px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"line-height:115%\"><span style=\"line-height:115%\">Normal LV function. NO PAH,</span></span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"margin-left:40px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"line-height:115%\"><span style=\"line-height:115%\">No RWMA at rest LVEF 60%</span></span></span></span></p>\r\n	</li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','4038','Y','namrata','2022-03-08 15:55:15','namrata','2022-03-16 15:42:12'),(10043,0,0,'DR. SANJIV BHATIA','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><u><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></u></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span style=\"line-height:normal\"><strong><u>Doppler Measurements:</u>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></span></span></p>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span style=\"line-height:normal\">Mitral Valve<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NORMAL&nbsp;&nbsp;</span></span></span></p>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span style=\"line-height:normal\">Tricuspid Valve<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NORMAL NO TR NO PAH</span></span></span></p>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span style=\"line-height:normal\">Aortic Valve<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.1M/S // THICKENED AND CALCIFIC</span></span></span></p>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span style=\"line-height:normal\">Pulmonary Valve<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.4 M/S</span></span></span></p>\r\n\r\n<h1 style=\"margin-left:40px; text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><u><strong><span style=\"line-height:150%\"><span style=\"line-height:150%\">M Mode Measurements:</span></span></strong></u></span></span></h1>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span style=\"line-height:150%\"><span style=\"line-height:150%\">Aorta<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;2.0 MM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></span></span></span></p>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span style=\"line-height:normal\">LA<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;2.4 MM</span></span></span></p>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><u><span style=\"line-height:normal\"><strong>Left Ventricle:</strong></span></u></span></span></p>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span style=\"line-height:normal\">IVS<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.7/1.1 MM</span></span></span></p>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span style=\"line-height:normal\">LVPW<strong>:</strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0.7/1.1 MM</span></span></span></p>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span style=\"line-height:normal\">LVDID<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3.7 MM</span></span></span></p>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span style=\"line-height:normal\">LVDIS<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;2.4 MM</span></span></span></p>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span style=\"line-height:normal\"><strong>LVEF: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;60%</strong></span></span></span></p>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><u><span style=\"line-height:normal\"><strong>OBSERVATIONS:</strong></span></u></span></span></p>\r\n\r\n<p style=\"margin-left:40px; text-align:justify\">&nbsp;</p>\r\n\r\n<ol>\r\n	<li>\r\n	<p style=\"margin-left:40px\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span style=\"line-height:normal\">NO LV RWMA. LV EF 60%</span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"margin-left:40px\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span style=\"line-height:normal\">ALL VALVES ARE STRUCTURALLY NORMAL.</span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"margin-left:40px\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span style=\"line-height:normal\">NORMAL ALL CARDIAC CHAMBER.</span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"margin-left:40px\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span style=\"line-height:normal\">NORMAL LV COMPLIANCE.// GRADE 1 DIASTOLIC DYSFUNCTION.</span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"margin-left:40px\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span style=\"line-height:normal\">NO TR. NO PAH.</span></span></span></p>\r\n	</li>\r\n	<li>\r\n	<p style=\"margin-left:40px\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span style=\"line-height:normal\">NO PERICARDIAL EFFUSION.NO CLOT/VEGETATION.</span></span></span></p>\r\n	</li>\r\n</ol>\r\n\r\n<p style=\"margin-left:40px\">&nbsp;</p>\r\n','USG','N','4039','Y','namrata','2022-03-08 16:03:09','namrata','2022-03-16 15:41:46'),(10044,0,0,'HEALTH PACKAGE (H/S)','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:14pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><u><strong><strong>ECHO CARDIOGRAPHY</strong></strong></u></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><strong><u>Doppler Measurements:</u>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Mitral Valve<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NORMAL</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Tricuspid Valve<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NORMAL NO TR NO PAH</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Aortic Valve<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.1M/S // THICKENED AND CALCIFIC</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Pulmonary Valve<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.4 M/S</span></span></p>\r\n\r\n<h1><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><u><strong>M Mode Measurements:</strong></u></span></span></h1>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Aorta<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;2.0 MM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">LA<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;2.4 MM</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><u><strong>Left Ventricle:</strong></u></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">IVS<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.7/1.1 MM</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">LVPW<strong>:</strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0.7/1.1 MM</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">LVDID<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3.7 MM</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">LVDIS<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;2.4 MM</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><strong>LVEF: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;60%</strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><u><strong>OBSERVATIONS:</strong></u></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ol>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">NO LV RWMA. LV EF 60%</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">ALL VALVES ARE STRUCTURALLY NORMAL.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">NORMAL ALL CARDIAC CHAMBER.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">NORMAL LV COMPLIANCE. // GRADE 1 DIASTOLIC DYSFUNCTION.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">NO TR. NO PAH.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">NO PERICARDIAL EFFUSION.NO CLOT/VEGETATION.</span></span></p>\r\n	</li>\r\n</ol>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">======================================================</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><strong><u>MEASURMENTS:</u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">AO/LA&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;25/28&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MITRAL VALVE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2.13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">LVD/LVS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 46/24&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TRICUSPID VALVE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1.25&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">LVEF&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 60%&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;PULMONARY VALVE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6.85</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">IVS/LVPW&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;10/11&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AORTIC VALVE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.21&nbsp; &nbsp; &nbsp; &nbsp;11.86</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"font-family:Arial,Helvetica,sans-serif\"><u>COMMENTS:</u></span></strong></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Normal internal dimensions of all four cardiac chambers.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Structurally normal all four cardiac valves.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Normal LV systolic function. LVEF: 60%</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">NORMAL LV COMPLIANCE. // GRADE 1 DIASTOLIC DYSFUNCTION.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">No RWMA at rest.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">IVS &amp; IAS are Intact.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">NO TR. No PAH. &nbsp;</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">No clot / vegetation.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">No Pericardial effusion seen.</span></span></p>\r\n	</li>\r\n</ul>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"font-family:Arial,Helvetica,sans-serif\"><u>Conclusion:</u></span></strong></span></p>\r\n\r\n<ul>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Normal LV function. NO PAH,</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">No RWMA at rest LVEF 60%</span></span></p>\r\n	</li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','7439','Y','namrata','2022-03-09 14:09:58','namrata','2022-03-16 15:43:10'),(10045,0,0,'USG NECK','<p><span style=\"line-height:15px\">Right lobe of thyroid measures&nbsp;<br />\r\nLeft lobe of thyroid measures<br />\r\nIsthmus measures&nbsp;</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Both lobes of thyroid gland appear normal in size and echotexture.<br />\r\nNo evidence of any focal or diffuse lesion is seen in lobes of thyroid or isthmus.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Submandibular glands appear normal on both sides.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Visualised parotid glands appear normal on both side.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Major neck vessels appear normal.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">No evidence of pathological &nbsp;lymphadenopathy is seen on either side.</span></p>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','3179','N','manisham','2022-03-09 15:40:14','manisham','2022-06-09 17:23:39'),(10046,0,0,'USG CHEST','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of pleural effusion on either side.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of loculated collection seen.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No e/o internal septations or echoes are seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No e/o air sonogram noted.</span></span></span></p>\r\n','USG','N','3176','Y','manisham','2022-03-09 17:45:58','manisham','2022-12-12 11:37:58'),(10047,0,0,'NEW TEMPLATE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">On grey scale imaging,</span></strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\"> Both Common iliac, external iliac, common femoral, superficial femoral, deep femoral, popliteal, anterior and posterior tibial arteries appear normal in course and caliber. No evidence of thrombus seen.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">On colour flow imaging,</span></strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\"> Both common femoral, superficial femoral, deep femoral, popliteal, anterior and posterior tibial arteries show normal color filling and triphasic spectral waveform.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of any haemodynamically significant stenosis or thrombosis seen.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments:&nbsp; </span></u></strong></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<ul>\r\n	<li style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal arterial Doppler study of the both lower limb.</span></strong></span></span></li>\r\n</ul>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n','USG','N','4065','Y','manisham','2022-03-11 17:13:27','','0000-00-00 00:00:00'),(10048,0,0,'PORTABLE ECHO','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><strong><u>Doppler Measurements:</u>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Mitral Valve<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NORMAL</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Tricuspid Valve<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NORMAL NO TR NO PAH</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Aortic Valve<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.1M/S // THICKENED AND CALCIFIC</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Pulmonary Valve<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.4 M/S</span></span></p>\r\n\r\n<h1><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><u><strong>M Mode Measurements:</strong></u></span></span></h1>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Aorta<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;2.0 MM&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">LA<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;2.4 MM</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><u><strong>Left Ventricle:</strong></u></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">IVS<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.7/1.1 MM</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">LVPW<strong>:</strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0.7/1.1 MM</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">LVDID<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3.7 MM</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">LVDIS<strong>:</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;2.4 MM</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><strong>LVEF: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;60%</strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><u><strong>OBSERVATIONS:</strong></u></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ol>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">NO LV RWMA. LV EF 60%</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">ALL VALVES ARE STRUCTURALLY NORMAL.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">NORMAL ALL CARDIAC CHAMBER.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">NORMAL LV COMPLIANCE. // GRADE 1 DIASTOLIC DYSFUNCTION.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">NO TR. NO PAH.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">NO PERICARDIAL EFFUSION.NO CLOT/VEGETATION.</span></span></p>\r\n	</li>\r\n</ol>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">======================================================</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><strong><u>MEASURMENTS:</u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">AO/LA&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;25/28&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MITRAL VALVE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2.13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">LVD/LVS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 46/24&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TRICUSPID VALVE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1.25&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">LVEF&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 60%&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;PULMONARY VALVE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6.85</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">IVS/LVPW&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;10/11&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AORTIC VALVE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.21&nbsp; &nbsp; &nbsp; &nbsp;11.86</span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><strong><u>COMMENTS:</u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Normal internal dimensions of all four cardiac chambers.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Structurally normal all four cardiac valves.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Normal LV systolic function. LVEF: 60%</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">NORMAL LV COMPLIANCE. // GRADE 1 DIASTOLIC DYSFUNCTION.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">No RWMA at rest.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">IVS &amp; IAS are Intact.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">NO TR. No PAH. &nbsp;</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">No clot / vegetation.</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">No Pericardial effusion seen.</span></span></p>\r\n	</li>\r\n</ul>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><strong><u>Conclusion:</u></strong></span></span></p>\r\n\r\n<ul>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Normal LV function. NO PAH,</span></span></p>\r\n	</li>\r\n	<li>\r\n	<p><span style=\"font-size:12pt\"><span style=\"font-family:Arial,Helvetica,sans-serif\">No RWMA at rest LVEF 60%</span></span></p>\r\n	</li>\r\n</ul>\r\n','USG','N','4040','Y','namrata','2022-03-12 08:06:16','namrata','2022-03-16 15:44:05'),(10049,0,0,'CT IVP FEMALE','<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Technique:</strong></span><span style=\"font-size:10pt\"> &nbsp;<span class=\"marker-yellow\">MDCT imaging was performed using thin contiguous plain and contrast axial scan of KUB region.</span></span></span></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">Findings:</span></span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Right kidney measures: mm<br />\r\nLeft kidney measures: mm</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both kidneys appear normal in size, shape and position.<br />\r\nNo evidence of calculus, hydronephrosis or mass lesion is seen on either side within pelvicalyceal system.<br />\r\nBoth kidneys show normal and equally dense nephrogram.<br />\r\nBoth kidneys show prompt excretion of contrast with normal pelvi-calyceal system filling.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both adrenal glands appear normal.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both ureters appear normal in course and caliber. No evidence of any radiodense calculus or hydroureter is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p><span class=\"marker-yellow\"><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Uterus and both adnexa appear normal.&nbsp;<br />\r\nNo evidence of adnexal mass is seen on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n','CTSN','N','2895','N','manisham','2022-04-04 17:46:23','manisham','2022-05-14 14:58:57'),(10050,0,0,'CT IVP MALE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,&quot;sans-serif&quot;\"><strong><u><span style=\"font-size:11.0pt\">Technique:</span></u></strong><span style=\"font-size:11.0pt\">&nbsp; MDCT imaging was performed using thin contiguous </span><span style=\"font-size:11.0pt\">plain and contrast </span><span style=\"font-size:11.0pt\">axial scan of KUB region.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></u></strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></u></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right kidney measures: mm.</span></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left kidney measures: mm</span></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys appear normal in size, shape and position.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of calculus, hydronephrosis or mass lesion is seen on either side within pelvicalyceal system.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys show normal and equally dense nephrogram.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys show prompt excretion of contrast with normal pelvi-calyceal system filling.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both adrenal glands appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both ureters appear normal in course and caliber. No evidence of any radiodense calculus or hydroureter is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Prostate appear normal in size.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">IMPRESSION</span></u></strong><strong><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">:</span></strong></span></span></p>\r\n','CTSN','N','2895','N','manisham','2022-04-04 17:47:19','manisham','2022-05-14 14:58:12'),(10051,0,0,'CT KUB UROGRAM','<p>&nbsp;</p>\r\n\r\n<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Referral Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;<br />\r\n<strong>Technique: </strong>&nbsp;MDCT imaging was performed using thin contiguous axial scan of KUB region.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Findings:</strong></p>\r\n\r\n<p><strong>Right kidney measures: mm<br />\r\nLeft kidney measures: mm</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Both kidneys appear normal in size, shape and position.No evidence of any malrotation or fused kidneys.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>No radiodense calculus is noted on either side within pelvicalyceal system.<br />\r\nNo evidence of perinephric collection or perinephric stranding seen on either side.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Both ureters appear normal in course and caliber. No evidence of any radiodense calculus is seen.No evidence of any periureteric collection or stranding noted.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Both adrenal glands appear normal.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Prostate appears normal in size.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><u><strong>Comments:-</strong></u><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n','CTSN','N','2894','Y','manisham','2022-04-07 09:46:20','','0000-00-00 00:00:00'),(10052,0,0,'CT KUB MALE UROGRAM','<p>&nbsp;</p>\r\n\r\n<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Referral Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;<br />\r\n<strong>Technique: </strong>&nbsp;MDCT imaging was performed using thin contiguous axial scan of KUB region.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Findings:</strong></p>\r\n\r\n<p><strong>Right kidney measures: mm<br />\r\nLeft kidney measures: mm</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Both kidneys appear normal in size, shape and position.No evidence of any malrotation or fused kidneys.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>No radiodense calculus is noted on either side within pelvicalyceal system.<br />\r\nNo evidence of perinephric collection or perinephric stranding seen on either side.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Both ureters appear normal in course and caliber. No evidence of any radiodense calculus is seen.No evidence of any periureteric collection or stranding noted.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Both adrenal glands appear normal.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Prostate appears normal in size.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><u><strong>Comments:-</strong></u><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n','CTSN','N','2894','Y','manisham','2022-04-07 09:46:52','','0000-00-00 00:00:00'),(10053,0,0,'CT KUB FEMALE UROGRAM','<p>&nbsp;</p>\r\n\r\n<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Referral Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,&quot;sans-serif&quot;\"><strong><u><span style=\"font-size:11.0pt\">Technique:</span></u></strong><span style=\"font-size:11.0pt\">&nbsp; MDCT imaging was performed using thin contiguous axial scan of KUB region.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></u></strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></u></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right kidney measures: mm</span></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left kidney measures: mm</span></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys appear normal in size, shape and position. No evidence of any malrotation or fused kidneys.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No radiodense calculus is noted on either side within pelvicalyceal system.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of perinephric collection or perinephric stranding seen on either side.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both ureters appear normal in course and caliber. No evidence of any radiodense calculus is seen. No evidence of any periureteric collection or stranding noted.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both adrenal glands appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,&quot;sans-serif&quot;\">Uterus and both adnexa appear normal. No evidence of adnexal mass is seen on either side.</span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">IMPRESSION</span></span></u></strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">: </span></span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n','CTSN','N','2894','Y','manisham','2022-04-07 09:48:18','','0000-00-00 00:00:00'),(10054,0,0,'X-RAY CHEST PA','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both lung fields appear normal / Prominent broncho-vascular markings are seen in both lung fields. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No obvious evidence of consolidation or mass lesion is seen.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both costophrenic angles are clear. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cardiomegaly is noted. Cardiac shadow appears within normal limits.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both hilar shadows appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both domes of diaphragm appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Bony thorax appears normal.</span></span></span></p>\r\n','XRY','N','2946','N','manisham','2022-04-12 11:25:42','manisham','2022-04-28 10:04:28'),(10055,0,0,'X-RAY CHEST PA','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both lung fields appear normal./ Prominent broncho-vascular markings are seen in both lung fields. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No obvious evidence of consolidation or mass lesion is seen.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both costophrenic angles are clear. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cardiomegaly is noted.</span></strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">/ Cardiac shadow appears within normal limits.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both hilar shadows appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both domes of diaphragm appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Bony thorax appears normal.</span></span></span></p>\r\n','XRY','N','2946','N','manisham','2022-04-12 13:35:39','manisham','2022-04-28 10:04:50'),(10056,0,0,'USG KUB WITH PVR','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right kidney measures- mm</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left kidney measures- mm</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys appear normal in size, shape, position and echotexture.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cortico-medullary differentiation is preserved on both sides.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of calculus, hydronephrosis or mass lesion is seen on either side.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of perinephric collection is seen on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<h1 style=\"margin-right:60px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,&quot;sans-serif&quot;\"><em>Pre-void volume measures </em></span></span></h1>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Post-void volume measures</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Prostate appears normal in size and echopattern.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments:</span></u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','3178','Y','manisham','2022-04-16 15:17:19','','0000-00-00 00:00:00'),(10057,0,0,'USG WHOLE ABDOMEN MALE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Liver appears normal in size, shape and echotexture.No focal or diffuse lesion noted in liver. No evidence of IHBRD noted.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Gall bladder is partially distended and appears grossly normal. </span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Common bile duct appears normal in size.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Portal vein appears normal. No evidence of any thrombus noted.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Pancreas appears normal in size and echopattern. </span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Spleen appears normal in size and echotexture. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right kidney measures </span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left kidney measures </span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys are normal in size, shape and echopattern with preserved Cortico-medullary differentiation. No evidence of calculus, hydronephrosis or mass is seen on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of significant pre or para aortic lymphadenopathy.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of abnormal dilatation of bowel loops or bowel wall thickening is seen.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Prostate appears normal in size, shape and echopattern.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of ascites or effusion noted.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">IMPRESSION:</span></u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','4447','Y','manisham','2022-04-29 17:16:19','','0000-00-00 00:00:00'),(10058,0,0,'USG KUB WITH PROSTATE WITH PVR','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right kidney measures- mm</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left kidney measures- mm</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys appear normal in size, shape, position and echotexture.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cortico-medullary differentiation is preserved on both sides.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of calculus, hydronephrosis or mass lesion is seen on either side.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of perinephric collection is seen on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<h1 style=\"margin-right:60px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,&quot;sans-serif&quot;\"><em>Pre-void volume measures </em></span></span></h1>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Post-void volume measures</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Prostate appears normal in size and echopattern.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments:</span></u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n','XRY','N','2963','Y','manisham','2022-05-12 14:18:55','','0000-00-00 00:00:00'),(10059,0,0,'USG SINGLE LIMB ARTERIAL ','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">On grey scale imaging,</span></strong> </span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\"><strong>Left/Right</strong>&nbsp;common femoral, superficial femoral, deep femoral, popliteal, anterior and posterior tibial arteries appear normal in course , caliber and mode of branching. No evidence of thrombus seen.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">On colour flow imaging,</span></strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\"> <strong>Left / Right</strong> common femoral, superficial femoral, deep femoral, popliteal, anterior and posterior tibial arteries show normal color filling and triphasic spectral waveform with peak systolic and diastolic velocities within normal range.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of any stenosis seen.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments: &nbsp;</span></u></strong></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<ul>\r\n	<li style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal arterial Doppler study of the </span></strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">left/right</span><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\"> lower limb. </span></strong></span></span></li>\r\n</ul>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n','USG','N','4067','Y','manisham','2022-05-14 14:51:15','manisham','2022-10-01 15:47:39'),(10060,0,0,'CT IVP MALE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,&quot;sans-serif&quot;\"><strong><u><span style=\"font-size:11.0pt\">Technique:</span></u></strong><span style=\"font-size:11.0pt\">&nbsp; MDCT imaging was performed using thin contiguous </span><span style=\"font-size:11.0pt\">plain and contrast </span><span style=\"font-size:11.0pt\">axial scan of KUB region.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></u></strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></u></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right kidney measures: mm.</span></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left kidney measures: mm</span></strong></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys appear normal in size, shape and position.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of calculus, hydronephrosis or mass lesion is seen on either side within pelvicalyceal system.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys show normal and equally dense nephrogram.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys show prompt excretion of contrast with normal pelvi-calyceal system filling.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both adrenal glands appear normal.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both ureters appear normal in course and caliber. No evidence of any radiodense calculus or hydroureter is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Prostate appear normal in size.</span></span></span></p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"margin-right:-1px; text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">IMPRESSION</span></u></strong><strong><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">:</span></strong></span></span></p>\r\n','CTSN','N','2895','Y','manisham','2022-05-14 15:01:11','','0000-00-00 00:00:00'),(10061,0,0,'CT  IVP FEMALE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,&quot;sans-serif&quot;\"><strong><u><span style=\"font-size:11.0pt\">Technique:</span></u></strong><span style=\"font-size:11.0pt\">&nbsp; MDCT imaging was performed using thin contiguous </span><span style=\"font-size:11.0pt\">plain and contrast </span><span style=\"font-size:11.0pt\">axial scan of KUB region.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings</span></u></strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:</span></u></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right kidney measures: mm.</span></strong></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left kidney measures: mm</span></strong></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys appear normal in size, shape and position.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of calculus, hydronephrosis or mass lesion is seen on either side within pelvicalyceal system.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys show normal and equally dense nephrogram.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys show prompt excretion of contrast with normal pelvi-calyceal system filling.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both adrenal glands appear normal.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both ureters appear normal in course and caliber. No evidence of any radiodense calculus or hydroureter is seen.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Uterus and bilateral adnexa appear normal.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">IMPRESSION</span></u></strong><strong><span style=\"font-family:&quot;Arial Black&quot;,&quot;sans-serif&quot;\">:</span></strong></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n','CTSN','N','2895','Y','manisham','2022-05-14 17:44:17','','0000-00-00 00:00:00'),(10062,0,0,'USG PELVIS/LOWER ABDOMEN','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Uterus is anteverted and appears normal in size and echotexture.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Endometrial thickness measures 2 mm</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">&nbsp;</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right ovary measures</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left ovary measures</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both ovaries appear normal in size and echotexture / <strong>shows multiple small similar sized follicles arranged peripherally -- suggest possibility of polycystic ovarian morphology.</strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of adnexal mass lesion is seen on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and appears normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of free fluid is seen in pelvis.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">COMMENTS:</span></span></u></strong></span></span></p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal USG pelvis/ <strong>polycystic ovarian morphology</strong>. </span></span></span></li>\r\n</ul>\r\n','USG','N','3182','Y','manisham','2022-05-18 16:22:59','','0000-00-00 00:00:00'),(10063,0,0,'USG RENAL DOPPLER','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">On grey scale imaging,</span></strong> </span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right kidney measures </span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left kidney measures </span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys are normal in size, shape and echopattern and show normal CMD with normal cortical thickness. No evidence of calculus or hydronephrosis.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">URINARY BLADDER : &nbsp;</span></strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal.<strong> </strong></span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">On colour Doppler mode</span></strong> </span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Abdominal aorta shows normal color flow and filling. </span></span></span></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both sided renal arteries, intrarenal segmental and arcuate arteries show normal colour flow, spectral waveform .</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of renal artery stenosis is seen on either side. Both renal veins appear normal.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments:</span></u></strong> </span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No significant abnormality is detected. </span></strong></span></span></li>\r\n</ul>\r\n','USG','N','4077','Y','manisham','2022-05-26 14:51:32','','0000-00-00 00:00:00'),(10064,0,0,'USG KUB WITH PROSTATE AND PVR','<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right kidney measures- mm</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left kidney measures- mm</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys appear normal in size, shape, position and echotexture.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cortico-medullary differentiation is preserved on both sides.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of calculus, hydronephrosis or mass lesion is seen on either side.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of perinephric collection is seen on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></span></p>\r\n\r\n<h1 style=\"margin-right:60px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,&quot;sans-serif&quot;\"><em>Pre-void volume measures </em></span></span></h1>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Post-void volume measures</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Prostate appears normal in size and echopattern.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments:</span></u></strong></span></span></p>\r\n','USG','N','6776','N','manisham','2022-06-03 15:01:45','manisham','2022-06-03 15:03:49'),(10065,0,0,'USG NECK','<p>&nbsp;<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>NAME&nbsp;:&nbsp;</strong></span></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong> </strong></span></span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong> / </strong></span></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>UHID :&nbsp;</strong></span></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>REF BY&nbsp; :&nbsp;</strong></span></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;USG NECK</strong></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>DATE&nbsp; : </strong></span></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"line-height:15px\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">USG REPORT</span></span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\">Right lobe of thyroid measures&nbsp;<br />\r\nLeft lobe of thyroid measures<br />\r\nIsthmus measures&nbsp;</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Both lobes of thyroid gland appear normal in size and echotexture.<br />\r\nNo evidence of any focal or diffuse lesion is seen in lobes of thyroid or isthmus.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Submandibular glands appear normal on both sides.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Visualised parotid glands appear normal on both side.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Major neck vessels appear normal.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">No evidence of pathological &nbsp;lymphadenopathy is seen on either side.</span></p>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','3179','N','manisham','2022-07-01 10:49:33','manisham','2022-09-28 14:57:14'),(10066,0,0,'USG BOTH LOWER LIMB VENOUS DOPPLER','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">B MODE</span></strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">: Both external iliac, common femoral, superficial femoral, deep femoral, popliteal, anterior &amp; posterior tibial veins appear normal. No evidence of DVT noted.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">COLOUR DOPPLER</span></strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\"> The deep as well as superficial veins show normal color filling and compressibility. No evidence of thrombosis is seen.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both Sapheno-femoral and sapheno-popliteal junction are normal. No evidence of incompetence is seen.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of varicosities are seen.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of significant subcutaneous edema seen.</span></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments: </span></u></strong></span></span></p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<ul>\r\n	<li style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Normal both lower limb venous Doppler.</span></strong></span></span></li>\r\n	<li style=\"text-align:justify\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of deep venous thrombosis on present study.</span></strong></span></span></li>\r\n</ul>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n\r\n<p style=\"text-align:justify\">&nbsp;</p>\r\n','USG','N','4070','Y','manisham','2022-07-20 16:06:51','','0000-00-00 00:00:00'),(10067,0,0,'RETROGRADE URETHROGRAM','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Procedure:</span></u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">300 cc of 50% diluted non-ionic contrast media was instilled in the urinary bladder through the catheter under proper aseptic precautions. RGU was performed in both supine position. Frontal &amp; oblique views are taken during micturation.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Findings:</span></u></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is partially distended and appears normal. </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No e/o leakage of contrast.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Anterior and posterior urethra appears normal with normal contrast opacification. </span></span></span></p>\r\n','XRY','N','4071','Y','manisham','2022-07-26 17:42:29','','0000-00-00 00:00:00'),(10068,0,0,'USG ANTENATAL FETAL DOPPLER','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">LMP: .14.05.2019,&nbsp;&nbsp; GA by LMP: 40 weeks 1 day.</span></span></strong></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; </span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">LMP: .00.00.0000,&nbsp;&nbsp; GA by LMP: 00 weeks 0 day.</span></span></strong></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; </span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Single live intrauterine gestation.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Fetal cardiac activity appears normal.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Fetal movements are well appreciated.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">FHR measures ~ &nbsp;bpm.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Presentation:.</span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Placenta is posterior &nbsp;&nbsp;&nbsp;of grade III maturity. </span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No Placenta praevia is seen.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Liquor amount is adequate for gestational age (AFI ~ cms) .</span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><strong><u><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Foetal Maturity</span></span></u></strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\"> :-</span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Average Age</span></span></strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">: -&nbsp;&nbsp; 00 weeks 0 days&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>EDD by Average G.A</strong> <strong>by USG</strong> ~00.00.0000</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">EFW +- gms.</span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RI&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PI&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; S/D</span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right uterine artery&nbsp; :&nbsp;&nbsp;&nbsp;&nbsp; 0.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.00 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.0.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left uterine artery&nbsp;&nbsp;&nbsp; :&nbsp;&nbsp;&nbsp;&nbsp; 0.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;0.0 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">MCA&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:&nbsp;&nbsp;&nbsp;&nbsp; 0.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.99&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.0</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Umbilical artery&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :&nbsp;&nbsp;&nbsp;&nbsp; 0.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1.00&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.0 </span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Raised RI and PI values of bilateral uterine arteries are noted with diastolic notching.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cervical length is adequate.&nbsp; Internal O.S. is closed. </span></span></span></span></p>\r\n\r\n<p style=\"margin-left:48px\">&nbsp;</p>\r\n\r\n<p style=\"margin-left:48px\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-size:14.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Impression</span></span></u></strong><strong><span style=\"font-size:14.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:-</span></span></strong></span></span></p>\r\n\r\n<p style=\"margin-left:48px\">&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">A Single live intrauterine fetus of maturity w6d.&nbsp; </span></span></strong></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','3171','Y','manisham','2022-08-31 16:47:32','','0000-00-00 00:00:00'),(10069,0,0,'USG ANTENATAL ( ANOMALY)','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','3168','Y','manisham','2022-09-08 09:53:20','manisham','2022-09-12 15:31:40'),(10070,0,0,'NEW TEMPLATE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right kidney measures- mm</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left kidney measures- mm</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both kidneys appear normal in size, shape, position and echotexture.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cortico-medullary differentiation is preserved on both sides.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of calculus, hydronephrosis or mass lesion is seen on either side.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of perinephric collection is seen on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Urinary bladder is distended showing wall thickening and irregularities.</span></span></span></p>\r\n\r\n<h1 style=\"margin-right:60px\"><span style=\"font-size:12pt\"><span style=\"font-family:Arial,&quot;sans-serif&quot;\"><em>Pre-void volume measures </em></span></span></h1>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Post-void volume measures</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Prostate appears enlarged in size and measures --cc.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments:</span></u></strong></span></span></p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Changes of cystitis.</span></strong></span></span></li>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Prostatomegaly.</span></strong></span></span></li>\r\n</ul>\r\n','USG','N','6776','Y','manisham','2022-09-12 15:30:29','','0000-00-00 00:00:00'),(10071,0,0,'USG OVULATION / FOLLICULAR STUDY','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Uterus appears normal in size and echotexture.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right ovary measures.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left ovary measures </span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both ovaries are normal in size and echogenicity.</span></span></span></p>\r\n\r\n<p style=\"margin-left:24px\">&nbsp;</p>\r\n\r\n<table border=\"1\" cellspacing=\"0\" class=\"Table\" style=\"border-collapse:collapse; border:solid windowtext 1.0pt; width:673px\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"height:20.65pt; vertical-align:top; width:68.4pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">DATE</span></span></strong></span></span></p>\r\n			</td>\r\n			<td style=\"height:20.65pt; vertical-align:top; width:40.5pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">DAY</span></span></strong></span></span></p>\r\n			</td>\r\n			<td style=\"height:20.65pt; vertical-align:top; width:148.5pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">RIGHT OVARY</span></span></strong></span></span></p>\r\n			</td>\r\n			<td style=\"height:20.65pt; vertical-align:top; width:144.0pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">LEFT OVARY</span></span></strong></span></span></p>\r\n			</td>\r\n			<td style=\"height:20.65pt; vertical-align:top; width:58.5pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">ET</span></span></strong></span></span></p>\r\n			</td>\r\n			<td style=\"height:20.65pt; vertical-align:top; width:45.0pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Free Fluid in POD</span></span></strong></span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"height:22.0pt; vertical-align:top; width:68.4pt\">\r\n			<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">01.08.2022</span></span></span></span></p>\r\n			</td>\r\n			<td style=\"height:22.0pt; vertical-align:top; width:40.5pt\">\r\n			<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><sup><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">th</span></span></sup> </span></span></p>\r\n			</td>\r\n			<td style=\"height:22.0pt; vertical-align:top; width:148.5pt\">\r\n			<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Largest follicle &ndash;mm.</span></span></span></span></p>\r\n			</td>\r\n			<td style=\"height:22.0pt; vertical-align:top; width:144.0pt\">\r\n			<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Largest follicle &nbsp;mm.</span></span></span></span></p>\r\n			</td>\r\n			<td style=\"height:22.0pt; vertical-align:top; width:58.5pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">&nbsp;mm</span></span></span></span></p>\r\n\r\n			<p style=\"text-align:center\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Triple line</span></span></span></span></p>\r\n			</td>\r\n			<td style=\"height:22.0pt; vertical-align:top; width:45.0pt\">\r\n			<p style=\"text-align:center\">&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"height:22.4pt; vertical-align:top; width:68.4pt\">\r\n			<p>&nbsp;</p>\r\n			</td>\r\n			<td style=\"height:22.4pt; vertical-align:top; width:40.5pt\">\r\n			<p>&nbsp;</p>\r\n			</td>\r\n			<td style=\"height:22.4pt; vertical-align:top; width:148.5pt\">\r\n			<p>&nbsp;</p>\r\n			</td>\r\n			<td style=\"height:22.4pt; vertical-align:top; width:144.0pt\">\r\n			<p>&nbsp;</p>\r\n			</td>\r\n			<td style=\"height:22.4pt; vertical-align:top; width:58.5pt\">\r\n			<p style=\"text-align:center\">&nbsp;</p>\r\n			</td>\r\n			<td style=\"height:22.4pt; vertical-align:top; width:45.0pt\">\r\n			<p style=\"text-align:center\">&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"height:23.65pt; vertical-align:top; width:68.4pt\">\r\n			<p>&nbsp;</p>\r\n			</td>\r\n			<td style=\"height:23.65pt; vertical-align:top; width:40.5pt\">\r\n			<p>&nbsp;</p>\r\n			</td>\r\n			<td style=\"height:23.65pt; vertical-align:top; width:148.5pt\">\r\n			<p>&nbsp;</p>\r\n			</td>\r\n			<td style=\"height:23.65pt; vertical-align:top; width:144.0pt\">\r\n			<p>&nbsp;</p>\r\n			</td>\r\n			<td style=\"height:23.65pt; vertical-align:top; width:58.5pt\">\r\n			<p style=\"text-align:center\">&nbsp;</p>\r\n			</td>\r\n			<td style=\"height:23.65pt; vertical-align:top; width:45.0pt\">\r\n			<p style=\"text-align:center\">&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"height:23.65pt; vertical-align:top; width:68.4pt\">\r\n			<p>&nbsp;</p>\r\n			</td>\r\n			<td style=\"height:23.65pt; vertical-align:top; width:40.5pt\">\r\n			<p>&nbsp;</p>\r\n			</td>\r\n			<td style=\"height:23.65pt; vertical-align:top; width:148.5pt\">\r\n			<p>&nbsp;</p>\r\n			</td>\r\n			<td style=\"height:23.65pt; vertical-align:top; width:144.0pt\">\r\n			<p>&nbsp;</p>\r\n			</td>\r\n			<td style=\"height:23.65pt; vertical-align:top; width:58.5pt\">\r\n			<p style=\"text-align:center\">&nbsp;</p>\r\n			</td>\r\n			<td style=\"height:23.65pt; vertical-align:top; width:45.0pt\">\r\n			<p style=\"text-align:center\">&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','3181','Y','manisham','2022-09-16 12:39:07','','0000-00-00 00:00:00'),(10072,0,0,'ANGIOGRAPHY REPORT','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"margin-left:96px\"><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"font-size:18.0pt\"><span style=\"line-height:115%\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></span><u><span style=\"font-size:18.0pt\"><span style=\"line-height:115%\">CORONARY ANGIOGRAPHY REPORT</span></span></u></strong></span></span></span></p>\r\n\r\n<p style=\"margin-left:96px\">&nbsp;</p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"font-size:14.0pt\"><span style=\"line-height:115%\">DIAGNOSIS &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :</span></span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"font-size:14.0pt\"><span style=\"line-height:115%\">APPROACH&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :</span></span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"font-size:14.0pt\"><span style=\"line-height:115%\">LMCA&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;:</span></span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"font-size:14.0pt\"><span style=\"line-height:115%\">LAD&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :</span></span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"font-size:14.0pt\"><span style=\"line-height:115%\">LCX&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :</span></span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"font-size:14.0pt\"><span style=\"line-height:115%\">RAMUS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :</span></span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"font-size:14.0pt\"><span style=\"line-height:115%\">RCA&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :</span></span></strong></span></span></span></p>\r\n\r\n<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"border-collapse:collapse; border:solid black 1.0pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"border-color:black; vertical-align:top; width:478.8pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><u><span style=\"font-size:18.0pt\">CONCLUSION</span></u></strong></span></span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"border-color:black; vertical-align:top; width:478.8pt\">\r\n			<ul>\r\n				<li>&nbsp;</li>\r\n				<li>&nbsp;</li>\r\n			</ul>\r\n\r\n			<p>&nbsp;</p>\r\n\r\n			<p>&nbsp;</p>\r\n\r\n			<p>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n','OTHER','N','','N','rohit','2022-09-25 16:54:29','rohit','2022-09-25 16:55:27'),(10073,0,0,'USG SCROTUM','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both testes &amp; epididymis appear normal in size.&nbsp;</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of hydrocele is seen on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of varicocele is seen on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Scrotal wall thickness is normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments:</span></u></strong></span></span></p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No significant abnormality is detected.</span></strong></span></span></li>\r\n</ul>\r\n','USG','N','3184','Y','manisham','2022-09-26 13:34:06','','0000-00-00 00:00:00');
INSERT INTO `template` VALUES (10074,0,0,'CORONARY ANGIOGRAPHY (CAG) PACKAGE','<p style=\"text-align:center\"><span style=\"font-size:16pt\"><u><strong>ANGIOGRAPHY REPORT</strong></u></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Cardiologist:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\"><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Technician:</span></span></span></td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">&nbsp;</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\"><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Cath Number:</span></span></span></td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\"><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Scrub Nurse</span></span></span>:</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">&nbsp;</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">&nbsp;</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">&nbsp;</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\">&nbsp; &nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:16pt\"><u><strong>CORONARY ANGIOGRAPHY REPORT</strong></u></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"font-size:14.0pt\"><span style=\"line-height:115%\">DIAGNOSIS&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;:</span></span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"font-size:14.0pt\"><span style=\"line-height:115%\">APPROACH&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;:</span></span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"font-size:14.0pt\"><span style=\"line-height:115%\">LMCA&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp;:</span></span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"font-size:14.0pt\"><span style=\"line-height:115%\">LAD&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :</span></span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"font-size:14.0pt\"><span style=\"line-height:115%\">LCX&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :</span></span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"font-size:14.0pt\"><span style=\"line-height:115%\">RAMUS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :</span></span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"font-size:14.0pt\"><span style=\"line-height:115%\">RCA&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :</span></span></strong></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"border-collapse:collapse; border:1pt solid black; width:700px\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"border-color:black; vertical-align:top; width:478.8pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><u><span style=\"font-size:18.0pt\">CONCLUSION</span></u></strong></span></span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"border-color:black; vertical-align:top; width:478.8pt\">\r\n			<ul>\r\n				<li>&nbsp;</li>\r\n			</ul>\r\n\r\n			<p>&nbsp;</p>\r\n\r\n			<ul>\r\n			</ul>\r\n\r\n			<p>&nbsp;</p>\r\n\r\n			<p>&nbsp;</p>\r\n\r\n			<p>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:16pt\"><u><strong>RECOMMENDATION</strong></u></span></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<table border=\"1\" cellpadding=\"1\" cellspacing=\"1\" style=\"width:700px\">\r\n	<tbody>\r\n		<tr>\r\n			<td>&nbsp;</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n','CARP','N','7627','Y','rohit','2022-09-27 17:00:34','parth','2022-11-15 10:54:34'),(10075,0,0,'NEW TEMPLATE','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of collection or mass lesion.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of enlarged lymphnodes noted.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Subcutaneous tissue appears normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Muscles and underlying cortical surface of bones appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments:</span></u></strong></span></span></p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:Arial,&quot;sans-serif&quot;\"><em>No significant abnormality is detected.</em></span></span></li>\r\n</ul>\r\n','USG','N','3974','N','manisham','2022-09-28 14:45:17','manisham','2022-09-28 14:55:40'),(10076,0,0,'USG LOCAL PART','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of collection or mass lesion.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of enlarged lymphnodes noted.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Subcutaneous tissue appears normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Muscles and underlying cortical surface of bones appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Comments:</span></u></strong></span></span></p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:12pt\"><span style=\"font-family:Arial,&quot;sans-serif&quot;\"><em>No significant abnormality is detected.</em></span></span></li>\r\n</ul>\r\n','USG','N','3974','Y','manisham','2022-09-28 14:47:56','','0000-00-00 00:00:00'),(10077,0,0,'USG NECK','<table border=\"1\" cellpadding=\"1\" cellspacing=\"1\" style=\"width:500px\">\r\n	<tbody>\r\n		<tr>\r\n			<td>&nbsp;<span class=\"marker\">Patient&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Name</span>&nbsp;</td>\r\n			<td>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</td>\r\n			<td>&nbsp; &nbsp;<span class=\"marker\">Date</span>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</td>\r\n			<td>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n\r\n			<p>&nbsp;</p>\r\n			</td>\r\n			<td>&nbsp;</td>\r\n			<td>&nbsp; &nbsp;<span class=\"marker\">Age</span>&nbsp;</td>\r\n			<td>&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td>&nbsp;<span class=\"marker\">Reffered by&nbsp;</span></td>\r\n			<td>&nbsp;</td>\r\n			<td>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</td>\r\n			<td>&nbsp;</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><u><span style=\"font-size:14.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">USG REPORT</span></span></u></strong></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right lobe of thyroid measures </span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left lobe of thyroid measures</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Isthmus measures </span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Both lobes of thyroid gland appear normal in size and echotexture.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of any focal or diffuse lesion is seen.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Submandibular glands appear normal on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Major neck vessels appear normal.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No evidence of lymphadenopathy is seen on either side.</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','3179','N','manisham','2022-09-28 15:05:45','manisham','2022-11-23 13:39:03'),(10078,0,0,'PTCA FORMAT','<p style=\"text-align:center\"><span style=\"font-size:16pt\"><u><strong>ANGIOPLASTY&nbsp;REPORT</strong></u></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Cardiologist:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\"><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Technician:</span></span></span></td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">&nbsp;</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\"><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Cath Number:</span></span></span></td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\"><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Scrub Nurse</span></span></span>:</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">&nbsp;</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">&nbsp;</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">&nbsp;</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\">&nbsp; &nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:16pt\"><u><strong>CORONARY ANGIOPLASTY REPORT</strong></u></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">Target Vessel&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; :</span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">Approach&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; :</span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><strong><span style=\"line-height:115%\"><span style=\"font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;\">Guiding Catheter</span></span></strong><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">&nbsp; &nbsp; &nbsp;:</span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><strong><span style=\"line-height:115%\"><span style=\"font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;\">Guide wire</span></span></strong><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:</span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><strong><span style=\"line-height:115%\"><span style=\"font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;\">Pre Dilatation</span></span></strong><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;:</span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><strong><span style=\"line-height:115%\"><span style=\"font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;\">Stent (DES)</span></span></strong><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:</span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><strong><span style=\"line-height:115%\"><span style=\"font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;\">Post Dilatation</span></span></strong><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">&nbsp;</span><span style=\"font-size:14.0pt\"><span style=\"line-height:115%\">&nbsp;&nbsp;&nbsp;&nbsp;</span></span></strong></span></span></span><span style=\"font-size:10pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">&nbsp; &nbsp;:</span></strong></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"border-collapse:collapse; border:1pt solid black; width:700px\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"border-color:black; vertical-align:top; width:478.8pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-family:Calibri,sans-serif\"><span style=\"font-size:24px\"><strong><u>RESULT</u></strong></span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"border-color:black; vertical-align:top; width:478.8pt\">\r\n			<ul>\r\n				<li>EXCELLENT TIMI III FLOW</li>\r\n				<li>NO RESIDUAL STENOSIS</li>\r\n				<li>NO DISSECTION</li>\r\n			</ul>\r\n\r\n			<p>&nbsp;</p>\r\n\r\n			<ul>\r\n			</ul>\r\n\r\n			<p>&nbsp;</p>\r\n\r\n			<p>&nbsp;</p>\r\n\r\n			<p>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:16pt\"><u><strong>RECOMMENDATION</strong></u></span></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<table border=\"1\" cellpadding=\"1\" cellspacing=\"1\" style=\"width:700px\">\r\n	<tbody>\r\n		<tr>\r\n			<td>&nbsp;</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n','CARP','N','7592','Y','parth','2022-11-15 10:39:20','parth','2022-11-15 10:54:45'),(10079,0,0,'PTCA TEMPLATE','<p style=\"text-align:center\"><span style=\"font-size:16pt\"><u><strong>ANGIOPLASTY&nbsp;REPORT</strong></u></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Cardiologist:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\"><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Technician:</span></span></span></td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">&nbsp;</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\"><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Cath Number:</span></span></span></td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\"><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Scrub Nurse</span></span></span>:</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">&nbsp;</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">&nbsp;</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">&nbsp;</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\">&nbsp; &nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:16pt\"><u><strong>CORONARY ANGIOPLASTY REPORT</strong></u></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">Target Vessel&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; :</span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">Approach&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; :</span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><strong><span style=\"line-height:115%\"><span style=\"font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;\">Guiding Catheter</span></span></strong><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">&nbsp; &nbsp; &nbsp;:</span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><strong><span style=\"line-height:115%\"><span style=\"font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;\">Guide wire</span></span></strong><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:</span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><strong><span style=\"line-height:115%\"><span style=\"font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;\">Pre Dilatation</span></span></strong><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;:</span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><strong><span style=\"line-height:115%\"><span style=\"font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;\">Stent (DES)</span></span></strong><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:</span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><strong><span style=\"line-height:115%\"><span style=\"font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;\">Post Dilatation</span></span></strong><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">&nbsp;</span><span style=\"font-size:14.0pt\"><span style=\"line-height:115%\">&nbsp;&nbsp;&nbsp;&nbsp;</span></span></strong></span></span></span><span style=\"font-size:10pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">&nbsp; &nbsp;:</span></strong></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"border-collapse:collapse; border:1pt solid black; width:700px\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"border-color:black; vertical-align:top; width:478.8pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-family:Calibri,sans-serif\"><span style=\"font-size:24px\"><strong><u>RESULT</u></strong></span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"border-color:black; vertical-align:top; width:478.8pt\">\r\n			<ul>\r\n				<li>EXCELLENT TIMI III FLOW</li>\r\n				<li>NO RESIDUAL STENOSIS</li>\r\n				<li>NO DISSECTION</li>\r\n			</ul>\r\n\r\n			<p>&nbsp;</p>\r\n\r\n			<ul>\r\n			</ul>\r\n\r\n			<p>&nbsp;</p>\r\n\r\n			<p>&nbsp;</p>\r\n\r\n			<p>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:16pt\"><u><strong>RECOMMENDATION</strong></u></span></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<table border=\"1\" cellpadding=\"1\" cellspacing=\"1\" style=\"width:700px\">\r\n	<tbody>\r\n		<tr>\r\n			<td>&nbsp;</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n','CARP','N','7627','Y','parth','2022-11-15 10:55:43','','0000-00-00 00:00:00'),(10080,0,0,'PTCA TEMPLATE','<p style=\"text-align:center\"><span style=\"font-size:16pt\"><u><strong>ANGIOPLASTY&nbsp;REPORT</strong></u></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Cardiologist:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\"><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Technician:</span></span></span></td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">&nbsp;</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\"><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Cath Number:</span></span></span></td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\"><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Scrub Nurse</span></span></span>:</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">&nbsp;</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">&nbsp;</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">&nbsp;</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\">&nbsp; &nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:16pt\"><u><strong>CORONARY ANGIOPLASTY REPORT</strong></u></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">Target Vessel&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; :</span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">Approach&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; :</span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><strong><span style=\"line-height:115%\"><span style=\"font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;\">Guiding Catheter</span></span></strong><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">&nbsp; &nbsp; &nbsp;:</span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><strong><span style=\"line-height:115%\"><span style=\"font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;\">Guide wire</span></span></strong><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:</span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><strong><span style=\"line-height:115%\"><span style=\"font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;\">Pre Dilatation</span></span></strong><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;:</span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><strong><span style=\"line-height:115%\"><span style=\"font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;\">Stent (DES)</span></span></strong><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:</span></strong></span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><strong><span style=\"line-height:115%\"><span style=\"font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;\">Post Dilatation</span></span></strong><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">&nbsp;</span><span style=\"font-size:14.0pt\"><span style=\"line-height:115%\">&nbsp;&nbsp;&nbsp;&nbsp;</span></span></strong></span></span></span><span style=\"font-size:10pt\"><span style=\"line-height:115%\"><span style=\"font-family:Calibri,&quot;sans-serif&quot;\"><strong><span style=\"line-height:115%\">&nbsp; &nbsp;:</span></strong></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"border-collapse:collapse; border:1pt solid black; width:700px\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"border-color:black; vertical-align:top; width:478.8pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-family:Calibri,sans-serif\"><span style=\"font-size:24px\"><strong><u>RESULT</u></strong></span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"border-color:black; vertical-align:top; width:478.8pt\">\r\n			<ul>\r\n				<li>EXCELLENT TIMI III FLOW</li>\r\n				<li>NO RESIDUAL STENOSIS</li>\r\n				<li>NO DISSECTION</li>\r\n			</ul>\r\n\r\n			<p>&nbsp;</p>\r\n\r\n			<ul>\r\n			</ul>\r\n\r\n			<p>&nbsp;</p>\r\n\r\n			<p>&nbsp;</p>\r\n\r\n			<p>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:16pt\"><u><strong>RECOMMENDATION</strong></u></span></p>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<table border=\"1\" cellpadding=\"1\" cellspacing=\"1\" style=\"width:700px\">\r\n	<tbody>\r\n		<tr>\r\n			<td>&nbsp;</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p style=\"text-align:center\">&nbsp;</p>\r\n\r\n<p style=\"text-align:left\">&nbsp;</p>\r\n','CARP','N','7593','Y','parth','2022-11-15 10:56:28','','0000-00-00 00:00:00'),(10081,0,0,'USG ANTENATAL FETAL DOPPLER','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><u><span style=\"font-size:14pt\"><strong><span style=\"font-family:Times New Roman,Times,serif\"><span class=\"marker\">Service Name</span></span></strong></span></u></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">LMP</span></span></strong><strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">: .00.00.2022,&nbsp;&nbsp; GA by </span></span></strong><strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">LMP</span></span></strong><strong><span style=\"font-size:11.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">: 00w 00d.</span></span></strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Single live intrauterine gestation.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Fetal cardiac activity appears normal.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Fetal movements are well appreciated.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">FHR measures ~ &nbsp;&nbsp;bpm.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Presentation:&nbsp; Cephalic at present.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Placenta is noted posteriorly of grade II maturity </span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">No Placenta praevia is seen.</span></span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Liquor amount is adequate for gestational age (AFI ~ cms) .</span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><strong><u><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Foetal Maturity</span></span></u></strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\"> :-</span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<table border=\"1\" cellspacing=\"0\" class=\"Table\" style=\"border-collapse:collapse; border:solid black 1.0pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"border-color:black; vertical-align:top; width:68.4pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">BPD</span></strong></span></span></p>\r\n			</td>\r\n			<td style=\"border-color:black; vertical-align:top; width:144.0pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">&nbsp; 00&nbsp;weeks 0 days</span></span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"border-color:black; vertical-align:top; width:68.4pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">HC</span></strong></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:144.0pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">&nbsp; 00&nbsp;weeks 0&nbsp;days</span></span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"border-color:black; vertical-align:top; width:68.4pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">AC</span></strong></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:144.0pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">&nbsp; 00&nbsp;weeks 0&nbsp;days</span></span></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"border-color:black; vertical-align:top; width:68.4pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">FL</span></strong></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:144.0pt\">\r\n			<p style=\"text-align:center\"><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">00&nbsp;weeks 0&nbsp;day</span></span></span></p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Average Age</span></span></strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">: -&nbsp;&nbsp; 00 weeks 0 days&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>EDD by Average G.A</strong> <strong>by USG</strong> ~00.00.0000</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">EFW +- gms.</span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RI&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PI&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; S/D</span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Right uterine artery&nbsp; :&nbsp;&nbsp;&nbsp;&nbsp; 0.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.0 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Left uterine artery&nbsp;&nbsp;&nbsp; :&nbsp;&nbsp;&nbsp;&nbsp; 0.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">MCA&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:&nbsp;&nbsp;&nbsp;&nbsp; 0.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.00&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.0 </span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Umbilical artery&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :&nbsp;&nbsp;&nbsp;&nbsp; 0.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.00&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.0</span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Doppler indices are within normal limits.</span></span></span></span></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cervical length is adequate.&nbsp; Internal O.S. is closed.</span></span></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,&quot;serif&quot;\"><strong><u><span style=\"font-size:14.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Impression</span></span></u></strong><strong><span style=\"font-size:14.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">:-</span></span></strong></span></span></p>\r\n\r\n<ul>\r\n	<li><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Courier New&quot;\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">A Single live intrauterine fetus of maturity 00 w 0d.&nbsp; </span></span></strong></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n','USG','N','4459','Y','manisham','2022-12-09 16:40:42','','0000-00-00 00:00:00'),(10082,0,0,'X-RAY LS SPINE AP - ','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X-RAY LS SPINE AP - LAT VIEW</span></span></strong><span style=\"font-size:12pt\"><strong> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><span style=\"font-size:10pt\"><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Vertebral bodies show marginal osteophytes along antero-lateral borders, suggest changes of spondylosis.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Generalized reduced bone density noted.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Intervertebral disc spaces appear normal.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No evidence of wedging or collapse of vertebral bodies noted.&nbsp;<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Vertebral appendages, apophyseal joints and spinous process appear normal.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No evidence of spondylolysis or listhesis is seen.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Pre &amp; paravertebral soft tissue appears normal.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Visualized pelvic bones appear normal.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Falope rings noted in pelvis.</span></span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10083,0,0,'X-RAY KNEE AP-LAT VI','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X-RAY KNEE AP-LAT VIEW</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">&bull;&nbsp;&nbsp; </span></span><span class=\"marker-yellow\">&nbsp;Early degenerative changes are seen in form of marginal osteophytes formation with mild reduction in joint space more marked in medial and patello-femoral compartment suggest osteoarthritis&nbsp;</span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">&bull;&nbsp;&nbsp; &nbsp;Patella, visualized lower end of femur and upper end of tibia and fibula otherwise appear normal.&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">&bull;&nbsp;&nbsp; &nbsp;No evidence of fracture or dislocation seen.</span></span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10084,0,0,'X-RAY HIP WITH FEMUR','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;X-RAY&nbsp; HIP WITH FEMUR AP - LAT VIEW&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><br />\r\nHip joint appears normal.&nbsp;</p>\r\n\r\n<p>Head of femur and visualized upper shaft of femur appear normal.</p>\r\n\r\n<p>No evidence of fracture or dislocation is seen.</p>\r\n\r\n<p>Bones show normal mineralization.</p>\r\n\r\n<p><br />\r\n&nbsp;</p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10085,0,0,'X-RAY FOOT AP / OBL ','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X-RAY&nbsp; FOOT&nbsp;AP-OBL VIEW</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:10pt\">All tarsal, metatarsal bones and phalanges&nbsp; appear normal.</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">Visualised ankle joint appears normal.</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">No evidence of fracture or dislocation seen.</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">No evidence of osteolytic or osteosclerotic lesion is seen.&nbsp;</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">Bones show normal mineralization.</span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10086,0,0,'X-RAY CERVICAL SPINE','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X-RAY CERVICAL SPINE LAT</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:10pt\">&bull;&nbsp;&nbsp; &nbsp;Early degenerative changes are seen in form of marginal osteophytes formation.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Normal alignment and mineralization of cervical spine noted.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Vertebral bodies otherwise and intervertebral disc spaces appear normal.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No evidence of wedging or collapse of vertebral bodies noted.&nbsp;<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Vertebral appendages, aspophyseal joints and spinous process appear normal.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No definite evidence of atlanto-axial subluxation noted.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Pre &amp; paravertebral soft tissue appears normal.</span></span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10087,0,0,'X-RAY CERVICAL SPINE','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X-RAY CERVICAL SPINE AP-LAT VIEW</span></span></strong><span style=\"font-size:12pt\"><strong> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:10pt\">&bull;&nbsp;&nbsp; &nbsp;Normal alignment and mineralization of cervical spine noted.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Vertebral bodies and intervertebral disc spaces appear normal.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No evidence of wedging or collapse of vertebral bodies noted.&nbsp;<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Vertebral appendages, apophyseal joints and spinous process appear normal.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No definite evidence of atlanto-axial subluxation noted.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Pre paravertebral soft tissue appears normal.</span></span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10088,0,0,'X-RAY BOTH HIP AP VI','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X-RAY BOTH HIP AP VIEW</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Flattening of femoral head with cortical irregularity, subchondral cystic changes along pararticular aspect of femoral head &amp; neck and acetabulum and reduction in joint space is seen involving right hip joint more marked in superior &amp; medial compartment suggests degenerative changes.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Both iliac bones, superior and inferior pubic rami and sacral ala appear normal.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Left hip joints &amp; both SI joints appear normal.&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Head of femur and visualized upper shaft of femur appear normal on left side.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of fracture or dislocation is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Bones show normal mineralization.</span></span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10089,0,0,'X RAY SOFT TISSUE NA','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong>/ </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY:</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY SOFT TISSUE NASOPHARYNX&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE&nbsp;:</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>.</p>\r\n\r\n<p>Mild soft tissue prominence is seen at base of skull &nbsp;&ndash; suggestive of &nbsp;mildly enlarged adenoids.</p>\r\n\r\n<p>However no e/o narrowing of nasopharyngeal airway is seen.</p>\r\n\r\n<p>Pre vertebral soft tissue shadow appears normal.</p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10090,0,0,'X RAY SHOULDER AP AN','<p><span style=\"font-size:12pt\"><strong>NAME :</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong>/</strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID :</strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X RAY&nbsp; SHOULDER AP AND LATERAL VIEW&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><br />\r\nShoulder joint appears normal.</p>\r\n\r\n<p>No definite evidence of fracture or dislocation. &nbsp;</p>\r\n\r\n<p>Visualized proximal humerus appears normal.</p>\r\n\r\n<p>Acromio-clavicular joint appear normal.<br />\r\n&nbsp;</p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10091,0,0,'X RAY LS SPINE AP - ','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X RAY LS SPINE AP - LAT VIEW</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Diffuse osteoporosis noted.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Degenerative changes are seen in form of osteophytes formation with reduced intervertebral disc space between L4-L5 &amp; L5-S1 level.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of lytic or sclerotic lesions seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No definite evidence of lysis or lysthesis is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Visualized pelvic bones appear normal.</span></span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10092,0,0,'X RAY L S SPINE AP -','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X RAY L S SPINE AP &ndash; LAT VIEW</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Normal alignment and mineralization of lumbar spine noted.<br />\r\nVertebral bodies and intervertebral disc spaces appear normal.<br />\r\nNo evidence of wedging or collapse of vertebral bodies noted.&nbsp;<br />\r\nVertebral appendages, apophyseal joints and spinous process appear normal.<br />\r\nNo evidence of spondylolysis or listhesis is seen.<br />\r\nPre &amp; paravertebral soft tissue appears normal.</span></span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10093,0,0,'X RAY KNEE AP LAT','<p><span style=\"font-family:Arial,Helvetica,sans-serif\"><strong><span style=\"font-size:12pt\">&nbsp; &nbsp; &nbsp;UHID&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; :</span>&nbsp;</strong><span style=\"font-size:12pt\"><span class=\"marker\">Patient Id</span>&nbsp;<strong>&nbsp;</strong></span></span><strong><span style=\"font-size:12pt\">&nbsp; &nbsp; &nbsp; &nbsp; </span></strong></p>\r\n\r\n<p><strong><span style=\"font-size:12pt\">&nbsp; &nbsp; &nbsp;PATIENT NAME&nbsp; :</span>&nbsp;</strong><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<strong> / </strong>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</span></span></p>\r\n\r\n<p><span style=\"font-family:Arial,Helvetica,sans-serif\"><strong><span style=\"font-size:12pt\">&nbsp; &nbsp; &nbsp;REF BY&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;:</span>&nbsp;</strong><span style=\"font-size:12pt\"><span class=\"marker\">Consultant Doctor</span>&nbsp;</span></span></p>\r\n\r\n<p><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp;INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\">X RAY &nbsp;KNEE AP &ndash; LAT VIEW</span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></span></p>\r\n\r\n<p><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp;DATE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: </strong></span>&nbsp;<span style=\"font-size:12pt\"><span class=\"marker\">Date</span>&nbsp;</span></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:16pt\"><strong>REPORT</strong></span></span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<ul>\r\n	<li><span style=\"line-height:20px\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\">Knee joint appears </span><span class=\"marker-yellow\">normal/abnormal</span><span style=\"font-size:12pt\">.</span></span></span></li>\r\n	<li><span style=\"line-height:20px\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\">Lower end of femur and upper end of tibia and fibula appear normal.&nbsp;</span></span></span></li>\r\n	<li><span style=\"line-height:20px\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\">Patella appears normal.Patello-femoral joint appears normal.</span></span></span></li>\r\n	<li><span style=\"line-height:20px\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\">No evidence of fracture or dislocation seen.</span></span></span></li>\r\n	<li><span style=\"line-height:20px\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\">No evidence of osteolytic or osteosclerotic lesion is seen.&nbsp;</span></span></span></li>\r\n	<li><span style=\"line-height:20px\"><span style=\"font-family:Arial,Helvetica,sans-serif\"><span style=\"font-size:12pt\">Bones show normal mineralization.</span></span></span></li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:10px\"><span style=\"font-family:Arial,Helvetica,sans-serif\">Dr. LEENA PANDYA</span></span></span></p>\r\n\r\n<p><span style=\"font-size:11pt\"><span style=\"line-height:10px\"><span style=\"font-family:Arial,Helvetica,sans-serif\">CONSULTANT RADIOLOGIST</span></span></span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10094,0,0,'X RAY BOTH HIPS AP V','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong>/ </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID :</strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY BOTH HIPS AP VIEW&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><br />\r\nBoth hip joints appear normal.&nbsp;</p>\r\n\r\n<p>Head of femur and visualized upper shaft of femur appear normal.</p>\r\n\r\n<p>Both superior and inferior pubic rami appear normal.</p>\r\n\r\n<p>No evidence of fracture or dislocation is seen.</p>\r\n\r\n<p>Bones show normal mineralization.</p>\r\n\r\n<p>No evidence of any osteolytic or osteosclerotic lesion noted.</p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10095,0,0,'X RAY ANKLE AP-LAT V','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X-RAY RIGHT ANKLE AP-LAT VIEW</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><span style=\"font-size:10pt\">Ankle joint appears normal.</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">Distal end of tibia and fibula appear normal.&nbsp;</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">Visualised tarsal bones appear normal.</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">No evidence of fracture or dislocation seen.</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">No evidence of any osteolytic or osteosclerotic lesion noted.</span></p>\r\n\r\n<p><span style=\"font-size:10pt\">Bones show normal mineralisation.</span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10096,0,0,'X RAY  ELBOW AP ','<p><span style=\"font-size:12pt\"><strong>NAME :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY&nbsp; ELBOW AP / LAT. VIEW&nbsp; &nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><span class=\"marker-yellow\">Elbow joint appears normal. Visualized distal&nbsp;end of humerus, proximal end of radius and ulna appear normal.&nbsp; No definite evidence of fracture or dislocation is seen.&nbsp;</span></p>\r\n\r\n<p>Bones show normal mineralization.</p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10097,0,0,'WRIST AP VIEW','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION : X-RAY RIGHT WRIST AP-LAT VIEW&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp; &nbsp; </strong></span>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong>REPORT</strong></span></p>\r\n\r\n<p><br />\r\nWrist joint appears normal.</p>\r\n\r\n<p>Distal end of radius and ulna appear normal.</p>\r\n\r\n<p>Carpals, metacarpals and phalanges appear normal.&nbsp;</p>\r\n\r\n<p>No obvious&nbsp;evidence of fracture or dislocation is seen.</p>\r\n\r\n<p>Bones show normal mineralization.</p>\r\n\r\n<p><br />\r\n&nbsp;</p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10098,0,0,'USG NECK AND AXILLA','<p><span style=\"line-height:15px\"><strong><span style=\"font-size:12pt\">NAME :&nbsp;</span></strong></span><span class=\"marker\">Patient Name</span><span style=\"line-height:15px\"><strong><span style=\"font-size:12pt\">&nbsp;</span></strong></span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"line-height:15px\"><strong><span style=\"font-size:12pt\">/</span></strong></span>&nbsp;<span class=\"marker\">Gender</span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><strong><span style=\"font-size:12pt\">REF BY :&nbsp;</span></strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><strong><span style=\"font-size:12pt\">INVESTIGATION&nbsp; : &nbsp; USG NECK AND AXILLA</span></strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><strong><span style=\"font-size:12pt\">DATE :</span></strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<br />\r\n&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">USG REPORT</span></strong></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\">Both lobes of thyroid gland appear normal in size, shape and echotexture.<br />\r\nNo evidence of any focal or diffuse lesion noted in lobes of thyroid or isthmus.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Submandibular glands appear normal on either side.<br />\r\nVisualized parotid glad appear normal on both side.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Major neck vessels appear normal.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">No evidence of lymphadenopathy is seen on either side.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">No significant lymphadenopathy noted in axillary region.</span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">Impression:</span></strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;No significant abnormality detected.</span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10099,0,0,'USG NECK','<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>NAME&nbsp;:&nbsp;</strong></span></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong> </strong></span></span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong> / </strong></span></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>UHID :&nbsp;</strong></span></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>REF BY&nbsp; :&nbsp;</strong></span></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;USG NECK</strong></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>DATE&nbsp; : </strong></span></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;<span style=\"line-height:15px\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">USG REPORT</span></span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\">Right lobe of thyroid measures&nbsp;<br />\r\nLeft lobe of thyroid measures<br />\r\nIsthmus measures&nbsp;</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Both lobes of thyroid gland appear normal in size and echotexture.<br />\r\nNo evidence of any focal or diffuse lesion is seen in lobes of thyroid or isthmus.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Submandibular glands appear normal on both sides.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Visualised parotid glands appear normal on both side.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Major neck vessels appear normal.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">No evidence of pathological &nbsp;lymphadenopathy is seen on either side.</span></p>\r\n\r\n<p>&nbsp;</p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10100,0,0,'USG Male','<p><span style=\"line-height:20px\"><strong><span style=\"font-size:12pt\">NAME : </span></strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"line-height:20px\"><strong><span style=\"font-size:12pt\">/</span></strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;<br />\r\n<span style=\"line-height:20px\"><strong><span style=\"font-size:12pt\">REF BY :&nbsp;</span></strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;<span style=\"line-height:20px\"><strong><span style=\"font-size:12pt\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />\r\nUHID&nbsp;:&nbsp;</span></strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"line-height:20px\"><strong><span style=\"font-size:12pt\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br />\r\nINVESTIGATION : </span></strong></span>&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;<br />\r\n<span style=\"line-height:20px\"><strong><span style=\"font-size:12pt\">DATE :&nbsp;</span></strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align: center;\"><span style=\"line-height:15px\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:12pt\"><strong>USG REPORT</strong></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\">Liver appears normal in size, shape and echotexture.No focal or diffuse lesion noted in liver. No evidence of IHBRD noted.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Gall bladder is partially distended and appears grossly normal.&nbsp;<br />\r\nCommon bile duct appears normal in size.<br />\r\nPortal vein appears normal. No evidence of any thrombus noted.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Pancreas appears normal in size and echopattern.&nbsp;<br />\r\nSpleen appears normal in size and echotexture.&nbsp;</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Right kidney measures &nbsp;&nbsp;<br />\r\nLeft kidney measures &nbsp;&nbsp;<br />\r\nBoth kidneys are normal in size, shape and echopattern with preserved Cortico-medullary differentiation. No evidence of calculus, hydronephrosis or mass is seen on either side.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">No evidence of significant pre or para aortic lymphadenopathy.<br />\r\nNo evidence of abnormal dilatation of bowel loops or bowel wall thickening is seen.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Urinary bladder is distended and appears normal. No evidence of any calculus or wall thickening or any mass lesion noted.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Prostate appears normal in size and echopattern.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">No evidence of ascites or effusion noted.</span></p>\r\n\r\n<p><strong><span style=\"line-height:15px\">IMPRESSION:</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;No significant abnormality detected.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">DR LEENA PANDYA<br />\r\nCONSULATANT &nbsp;RADIOLOGIST&nbsp;</span><br />\r\n&nbsp;</p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10101,0,0,'USG Female','<p><strong><span style=\"line-height:15px\">NAME :&nbsp;</span></strong>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<strong>&nbsp;</strong>&nbsp;<span class=\"marker\">Age</span>&nbsp;<strong><span style=\"line-height:15px\">/</span></strong>&nbsp;<span class=\"marker\">Gender</span>&nbsp;<br />\r\n<strong><span style=\"line-height:15px\">REF BY :</span></strong>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;<strong><span style=\"line-height:15px\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br />\r\nUHID :</span></strong>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<strong><span style=\"line-height:15px\"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br />\r\nINVESTIGATION : SONOGRAPHY OF ABDOMEN<br />\r\nDATE :</span></strong>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><span style=\"line-height:15px\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<strong><span style=\"font-size:12pt\">USG REPORT</span></strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\">Liver appears normal in size, shape and echotexture.No focal or diffuse lesion noted in liver. No evidence of IHBRD noted.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Gall bladder is partially distended and appears grossly normal.&nbsp;<br />\r\nCommon bile duct appears normal in size.<br />\r\nPortal vein appears normal. No evidence of any thrombus noted.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Pancreas appears normal in size and echopattern.&nbsp;<br />\r\nSpleen appears normal in size and echotexture.&nbsp;</span></p>\r\n\r\n<p><span class=\"marker-yellow\">Right kidney measures &nbsp;&nbsp; Left kidney measures &nbsp;&nbsp;</span><br />\r\n<span style=\"line-height:15px\">Both kidneys are normal in size, shape and echopattern with preserved Cortico-medullary differentiation. No evidence of calculus, hydronephrosis or mass is seen on either side.</span></p>\r\n\r\n<p><span class=\"marker-yellow\">No evidence of significant pre or para aortic lymphadenopathy. No evidence of abnormal dilatation of bowel loops or bowel wall thickening is seen.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Urinary bladder is distended and appears normal. No evidence of any calculus or wall thickening or any mass lesion noted.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Uterus appears normal in size, shape and echopattern.<br />\r\nNo evidence of any adnexal mass noted.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">No evidence of ascites or effusion noted.</span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong><span style=\"line-height:15px\">IMPRESSION:</span></strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;No significant abnormality detected.</span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\">DR LEENA PANDYA<br />\r\nCONSULATANT &nbsp;RADIOLOGIST&nbsp;</span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10102,0,0,'UPPER LIMB ARTERIAL DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><span style=\"font-size:12pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">&nbsp;UPPER LIMB ARTERIAL DOPPLER</span></strong></span></span><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On grey scale imaging,</strong>&nbsp;subclavian, axillary, brachial, radial and ulnar arteries appear normal in course and caliber.&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On colour flow imaging,</strong> left subclavian, axillary, brachial, radial and ulnar arteries show normal color uptake&nbsp;and triphasic pattern of waveform.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No definite evidence of stenosis or thrombosis seen.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">No evidence of wall thickening noted.</span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong>&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Normal&nbsp; upper limb arterial Doppler.</span></span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10103,0,0,'Transplant Doppler with rejection','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">RENAL Doppler</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Clinical profile:</strong> k/c/o Chronic Kidney Ds. with renal transplant</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On grey scale imaging,</strong>&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Right kidney &ndash; 55 x 23 mm.<br />\r\nLeft kidney &ndash; 56 x 31 mm.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Both kidneys appear small in size and show raised cortical echogenecity with partial to complete loss of cortico-medullary differentiation.&nbsp;<br />\r\nSmall simple cyst is seen in upper pole of right kidney.<br />\r\nNo evidence of calculus, hydronephrosis or mass is seen on either side.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Transplant kidney in right iliac fossa measures 104 x 44 and shows raised cortical echogenecity with preserved cortico-medullary differentiation.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.<br />\r\nProstate appears normal in size (12 cc) and echotexture.&nbsp;</span></span></p>\r\n\r\n<p><strong><span style=\"line-height:15px\"><span style=\"font-size:12pt\">On colour doppler mode,</span></span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Transplant kidney shows high resistance waveform with absence of diastolic flow suggests renal parenchymal disease.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Right external iliac artery shows normal color flow and filling.&nbsp;<br />\r\nNo secondary signs (tardus-parvus waveform) or definite e/o stenosis at anastomotic site are seen.&nbsp;</span></span></p>\r\n\r\n<p><strong><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Comments:</span></span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Raised cortical echogenecity with high resistance waveform and absence of diastolic flow in transplant kidney suggest possibility of renal parenchymal disease.<br />\r\nClinical correlation and further evaluation would be of help.</span></span><br />\r\n&nbsp;</p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10104,0,0,'TEST','<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"width:25%\">\r\n			<p><span style=\"font-size:12pt\"><span style=\"line-height:115%\"><strong>NAME</strong></span></span></p>\r\n			</td>\r\n			<td colspan=\"3\" rowspan=\"1\" style=\"width:75%\">\r\n			<p>:&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"font-size:12pt\"><span style=\"line-height:115%\"><strong>AGE/SEX</strong></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p>:&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><span style=\"line-height:115%\"><strong>/</strong></span></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"font-size:12pt\"><span style=\"line-height:115%\"><strong>STUDY</strong></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p>:&nbsp;<span class=\"marker-blue\">Textbox</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p><span style=\"font-size:12pt\"><span style=\"line-height:115%\"><strong>REF.BY</strong></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p>:&nbsp;<span class=\"marker\">Referral Doctor</span>&nbsp;<span style=\"font-size:12pt\"><span style=\"line-height:115%\"><strong>&nbsp;</strong></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p><span style=\"font-size:12pt\"><span style=\"line-height:115%\"><strong>DATE</strong></span></span></p>\r\n			</td>\r\n			<td>\r\n			<p>:&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:100%\"><span style=\"font-family:Arial,sans-serif\"><strong>CT SCAN OF BRAIN:</strong></span></span></span></p>\r\n\r\n<p>&nbsp;<span class=\"marker-blue\">TextArea</span>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:100%\"><strong>OBSERVATION: </strong></span></span></p>\r\n\r\n<p>&nbsp;<span class=\"marker-blue\">TextArea</span>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:100%\"><strong>IMPRESSION:</strong></span></span></p>\r\n\r\n<p>&nbsp;<span class=\"marker-blue\">TextArea</span>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10105,0,0,'RENAL DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">RENAL Doppler</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On grey scale imaging,</strong>&nbsp;<br />\r\nRight Kidney measures&nbsp;<br />\r\nLeft Kidney measures&nbsp;<br />\r\nBoth kidneys are normal in size, shape and echopattern.Both kidney&nbsp; show normal cortico-medullary&nbsp;with normal cortical thickness. No evidence of calculus or hydronephrosis.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On colour Doppler mode</strong>&nbsp;<br />\r\nAbdominal aorta shows normal color flow and filling.&nbsp;<br />\r\nBoth sided renal arteries, intrarenal segmental and arcuate arteries show normal colour flow, spectral waveform and velocities.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of renal artery stenosis is seen on either side.<br />\r\nBoth renal veins appear normal.</span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong>&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">&bull;&nbsp;&nbsp; &nbsp;Normal renal Doppler study.</span></span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10106,0,0,'PORTAL & HEPATIC VENOUS DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">PORTAL &amp; HEPATIC VENOUS DOPPLER</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">DOPPLER REPORT</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Portal vein is prominent measures 15 mm at porta.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Intrahepatic part of the portal vein appears normal. No e/o of thrombus is seen in the portal vein.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;The portal vein shows normal hepatopetal flow and spectral wave form with maintained respiratory variation.&nbsp;</span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Right middle and left Hepatic veins appear normal in calibre with normal flow and spectral waveform.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Intrahepatic IVC appear normal show normal flow.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Splenic vein and superior mesenteric vein show normal color &nbsp;flow.</span></p>\r\n\r\n<p><span style=\"line-height:15px\"><strong>Impression:</strong> &nbsp; &nbsp; &nbsp;</span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Prominent portal vein measures 15 mm at porta. &nbsp;</span><br />\r\n&bull;&nbsp;&nbsp; &nbsp;Essentially &nbsp;normal study otherwise. No evidence of thrombus.</p>\r\n\r\n<p>&nbsp;</p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10107,0,0,'OA KNEE','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">X-RAY KNEE AP-LAT VIEW</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\">Degenerative changes are seen in form of osteophytes formation.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">There is&nbsp;reduction in joint space noted more marked in medial and patello-femoral compartment suggest osteoarthritis.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">Patella,&nbsp; lower end of femur and upper end of tibia and fibula&nbsp;appear normal otherwise.&nbsp;</span></p>\r\n\r\n<p><span style=\"line-height:15px\">No evidence of fracture or dislocation seen.</span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10108,0,0,'Normal CXR','<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>NAME&nbsp;:&nbsp;</strong></span></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</strong></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>UHID :&nbsp;</strong></span></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;CHEST &nbsp;X RAY PA VIEW</strong></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>DATE :&nbsp;</strong></span></span><span class=\"marker\">Date</span>&nbsp;<br />\r\n<span style=\"line-height:15px\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></p>\r\n\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size:12pt\"><span style=\"line-height:15px\">REPORT</span></span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\">.<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Both lung fields appear clear.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;No obvious evidence of consolidation or mass lesion is seen.<br />\r\n&nbsp;<br />\r\n&bull;&nbsp;&nbsp; &nbsp;Both costophrenic angles are clear.&nbsp;</span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Cardiac shadow appears within normal limits.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Both hilar shadows appear normal.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Both domes of diaphragm appear normal.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Bony thorax appears normal.</span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\">DR.LEENA PANDYA<br />\r\nCONSULTANT RADIOLOGIST</span><br />\r\n&nbsp;</p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10109,0,0,'MAMMO DENSE','<table border=\"0\" cellspacing=\"0\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"vertical-align:top; width:25%\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">NAME </span></span></strong></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:25%\">\r\n			<p>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:25%\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">AGE/SEX&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></strong></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top; width:25%\">\r\n			<p>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">/</span></span></strong></span></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">REF BY:</span></span></strong></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p><span style=\"font-size:10pt\"><span style=\"font-family:&quot;Times New Roman&quot;,serif\"><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">DATE </span></span></strong></span></span></p>\r\n			</td>\r\n			<td style=\"vertical-align:top\">\r\n			<p>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:11pt\"><strong>BILATERAL MAMMOGRAM WITH USG OF BREAST :</strong></span></p>\r\n\r\n<p><span style=\"line-height:15px\">Dedicated digital mammography with Cranio-caudal and medio-lateral view was performed.</span></p>\r\n\r\n<p><span style=\"line-height:15px\">The mammary parenchyma is inhomogeneously dense &ndash; because of prominent fibro-glandular tissues. This somewhat lowers the sensitivity of mammography. No suspicious focal mass or clustered microcalcifications are seen, although the dense surrounding tissue could obscure a lesion. No evidence of skin thickening or nipple retraction noted on either side.</span></p>\r\n\r\n<p><strong><span style=\"font-size:11pt\">USG Breast:</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\">Breast tissues appear normal. &nbsp;No evidence of any solid or cystic lesion noted.<br />\r\nBilateral nipple and retroareolar region appears normal.&nbsp;<br />\r\nNo evidence of dilatation of lactiferous ducts on either side.<br />\r\nNo evidence of significant pathological axillary lymphadenopathy seen.&nbsp;</span></p>\r\n\r\n<p><strong><span style=\"font-size:11pt\">Comments:</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\">&bull;&nbsp;&nbsp; &nbsp;Mammographically dense mammary parenchyma &ndash; because of prominent fibro-glandular tissues.&nbsp;<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No secondary mammographic signs of malignancy.&nbsp;<br />\r\n&bull;&nbsp;&nbsp; &nbsp;No significant abnormality is detected.</span></p>\r\n\r\n<p><span style=\"font-size:9pt\"><strong>BIRADS Classifications:</strong></span><br />\r\n<span style=\"font-size:8pt\"><span style=\"line-height:15px\">(0)&nbsp;&nbsp; &nbsp;Incomplete (needs additional evaluation)<br />\r\n(1)&nbsp;&nbsp; &nbsp;Negative&nbsp;<br />\r\n(2)&nbsp;&nbsp; &nbsp;Benign<br />\r\n(3)&nbsp;&nbsp; &nbsp;Probably Benign&nbsp;<br />\r\n(4)&nbsp;&nbsp; &nbsp;Suspicious&nbsp;<br />\r\n(5)&nbsp;&nbsp; &nbsp;Highly suggestive of malignancy</span></span></p>\r\n\r\n<p><br />\r\n<span style=\"font-size:8pt\"><span style=\"line-height:15px\">The false negative mammography is approximately 10%. Management of a palpable abnormality must be based upon clinical grounds.&nbsp;</span></span><br />\r\n&nbsp;</p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10110,0,0,'CHRONIC DVT','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">BOTH LOWER LIMB VENOUS DOPPLER</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On Right side:</strong><br />\r\nExternal iliac, common femoral, superficial femoral, deep femoral, popliteal, anterior &amp; posterior tibial veins appear normal.<br />\r\nThe deep veins show normal color filling and compressibility. No obvious evidence of thrombosis is seen.</span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On left side:</strong><br />\r\nLeft distal popliteal and proximal posterior tibial veins show mildly thickened echogenic wall with near complete ( 70 to 80%) recanalisation of lumen and are partially compressible with normal colour flow within residual lumen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Left external iliac, common femoral, superficial femoral, deep femoral, proximal popliteal, anterior &amp; distal posterior tibial veins appear normal.<br />\r\nThe deep veins show normal color filling and compressibility. No evidence of thrombosis is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of significant subcutaneous edema seen on either side.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Approx. mm sized well-defined lobulated cystic lesion is seen in popliteal fossa on left side possibility of baker&rsquo;s cyst likely.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong>&nbsp;<br />\r\nMildly thickened echogenic wall with near complete recanalisation of lumen of left distal popliteal and proximal posterior tibial veins.<br />\r\nNormal right lower limb venous Doppler. No e/o DVT on right side.</span></span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10111,0,0,'CAROTID DOPPLER IMT','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">CAROTID DOPPLER</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On grey scale imaging:</strong>&nbsp;<br />\r\nCommon carotid arteries , internal carotid aretry and external carotid artery are normal in course on both sides.&nbsp;<br />\r\nDiffuse intimal thickening (Intimo-medial thickness is 1.2 mm) noted in bilateral carotid arteries.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of any calcified or fibrofatty&nbsp;plaques seen.</span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On Colour Flow Imaging:</strong><br />\r\nCCA, ICA and ECA on both sides show normal colour uptake and spectral waveforms with normal peak systolic velocities.<br />\r\nNo evidence of any haemodynamically significant stenosis&nbsp; is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Vertebral arteries on either side show normal colour filling, velocities and spectral waveforms.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong>&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Normal doppler study of both carotid arteries.<br />\r\nDiffuse intimal thickening in bilateral carotid arteries.</span></span><br />\r\n&nbsp;</p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10112,0,0,'CAROTID DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">CAROTID DOPPLER</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On grey scale imaging:</strong></span></span><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\">common&nbsp; carotid artery, internal carotid and external carotid artery&nbsp;appear normal in course and caliber on both sides.&nbsp;<br />\r\nIntimo-medial thickness is normal on both sides.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of any calciifed or fibrofatty plaques seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On Colour Flow Imaging:</strong></span></span><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\">CCA, ICA and ECA on both sides show normal colour filling and spectral waveforms with normal peak systolic velocities.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of any haemodynamically significant stenosis or block is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Vertebral arteries on either side show normal colour filling, velocities and spectral waveforms.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong>&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Normal doppler study of carotid arteries .&nbsp;</span></span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10113,0,0,'BOTH UPPER LIMB VENOUS DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">BOTH UPPER LIMB VENOUS DOPPLER</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Both subclavian, axillary, brachial, cephalic, basilic, radial and ulnar veins appears normal in course and compressibility.&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">These veins show normal color filling and compressibility with augmentation of flow. </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of thrombosis is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No e/o subcutaneous edema is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong>&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Normal both upper limb venous Doppler.</span></span><br />\r\n&nbsp;</p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10114,0,0,'BOTH LOWER LIMB VENOUS DOPPLER','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">BOTH LOWER LIMB VENOUS DOPPLER</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>B MODE:</strong> </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Both external iliac, common femoral, superficial femoral, deep femoral, popliteal, anterior &amp; posterior tibial veins appear normal. </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of Deep venous thrombosis&nbsp;noted.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>COLOUR DOPPLER</strong> </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">The deep as well as superficial veins show normal color filling and compressibility. No evidence of thrombosis is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Both Sapheno-femoral and sapheno-popliteal junction are normal. No evidence of incompetence is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of varicosities are seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of significant subcutaneous edema seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong>&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Normal both lower limb venous Doppler.<br />\r\nNo evidence of deep venous thrombosis on present study.</span></span><br />\r\n&nbsp;</p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10115,0,0,'BOTH LOWER LIMB ARTERIAL DOPPLER ','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">BOTH LOWER LIMB ARTERIAL DOPPLER </span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On grey scale imaging,</strong> </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Both Common iliac, external iliac, common femoral, superficial femoral, deep femoral, popliteal, anterior and posterior tibial arteries appear normal in course and caliber. No evidence of thrombus seen.</span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>On colour flow imaging,</strong> </span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Both common femoral, superficial femoral, deep femoral, popliteal, anterior and posterior tibial arteries show normal color uptake&nbsp;and triphasic pattern of spectral waveform.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No obvious evidence of any significant stenosis or thrombosis seen.</span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Comments:</strong> &nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Normal arterial doppler study of the both lower limb.</span></span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10116,0,0,'BILATERAL MAMMOGRAPH','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">BILATERAL MAMMOGRAPHY</span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">BILATERAL &nbsp;MAMMOGRAM</span></strong></p>\r\n\r\n<p style=\"text-align:center\"><span style=\"font-size:9pt\">(<em>Dedicated digital mammography with Craniocaudal and media lateral oblique view was performed</em>.)</span></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>On Mammography</strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Normal&nbsp; breast parenchyma is noted in breast on either side.&nbsp;<br />\r\nNo evidence of clustered micro-calcification.<br />\r\nNo evidence of mass or architectural distortion is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of any speculated mass lesion noted.</span></span><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:10pt\">No evidence of skin thickening or nipple retraction is seen.<br />\r\nNo evidence of axillary lymphadenopathy.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\"><strong>On sonography</strong></span></span></p>\r\n\r\n<p><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:10pt\">Normal breast parenchyma is seen on either side.&nbsp;<br />\r\nNipple and retroareolar regions appear normal on either side.<br />\r\nNo evidence of solid or cystic mass lesion is seen.<br />\r\nNo evidence of axillary lymphadenopathy on either side.</span></span></p>\r\n\r\n<p><strong><span style=\"line-height:15px\"><span style=\"font-size:10pt\">Comments:&nbsp;</span></span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:10pt\">No significant abnormality detected. (BIRADS - I).<br />\r\nNo direct or indirect sign of malignancy seen.</span></span></p>\r\n\r\n<p><span style=\"font-size:9pt\"><span style=\"line-height:15px\"><strong>BIRADS Categories</strong>:</span></span><br />\r\n<span style=\"font-size:8pt\"><span style=\"line-height:15px\">0 &nbsp; &nbsp; &nbsp;Need imaging evaluation.<br />\r\nI &nbsp; &nbsp; &nbsp; Negative&nbsp;<br />\r\nII &nbsp; &nbsp; &nbsp;Benign finding<br />\r\nIII &nbsp; &nbsp; probably benign finding.<br />\r\nIV &nbsp; &nbsp; Suspicious abnormality.<br />\r\nV &nbsp; &nbsp; &nbsp;Highly suggestive of malignancy.</span></span></p>\r\n\r\n<p><span style=\"font-size:8pt\"><span style=\"line-height:15px\">The false negative mammography is approximately 10%. Management of a palpable abnormality must be based upon clinical grounds.</span></span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10117,0,0,'ANTENATAL USG ii trimester','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">ANTENATAL USG </span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">USG REPORT</span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Single live intrauterine foetus.</span></span><br />\r\n<span style=\"line-height:15px\"><span style=\"font-size:12pt\">Foetal cardiac pulsation and foetal movements are present.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Heart Rate</strong> &ndash; 150 &nbsp;bpm.<br />\r\nPlacenta is&nbsp; &nbsp; &nbsp;grade &nbsp;maturity.<br />\r\nNo Placenta praevia is seen.<br />\r\nLiquor amount is adequate for gestational age&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Foetal Maturity :</strong></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">BPD&nbsp; &nbsp;&nbsp;<br />\r\nHC&nbsp; &nbsp;<br />\r\nAC&nbsp; &nbsp;<br />\r\nFL&nbsp; &nbsp;&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Average Gestational Age:</strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>EDD by Average G.A</strong>.&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Cervical length measures . &nbsp;Internal O.S. is closed.&nbsp;<br />\r\nNo obvious congenital anomaly detected on present study.&nbsp;<br />\r\nFoetal cardiac shadow is on left side.Foetal stomach bubble noted. &nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Foetal spine appears normal.<br />\r\nBoth kidneys and bladder appear normal.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Impression:</strong></span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">A Single live intrauterine foetus of maturity .&nbsp;<br />\r\nNo obvious congenital anomaly detected on present study.&nbsp;</span></span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10118,0,0,'ANTENATAL USG i trimester','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">ANTENATAL USG </span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">USG REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>LMP:</strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<strong>GA by LMP:</strong>&nbsp;<br />\r\n&nbsp;&nbsp; &nbsp; &nbsp;<br />\r\nSingle live intrauterine foetus.<br />\r\nFoetal cardiac pulsation and foetal movements are present.<br />\r\n<strong>Heart Rate</strong> &ndash;&nbsp; &nbsp; bpm.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Placenta is encircling.<br />\r\nLiquor amount is adequate for gestational age&nbsp;</span></span></p>\r\n\r\n<p><strong><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Foetal Maturity :</span></span></strong></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">BPD&nbsp; &nbsp;&nbsp;<br />\r\nFL&nbsp; &nbsp;&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\"><strong>Average Gestational Age ( by USG) :</strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<strong>EDD by Average G.A.</strong> =&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Cervical length measures&nbsp; &nbsp; &nbsp; . &nbsp;Internal O.S. is closed.&nbsp;<br />\r\nNo obvious congenital anomaly detected on present study.&nbsp;<br />\r\nNasal bone is present.<br />\r\nNT measures&nbsp; &nbsp;mm ( within normal limits.)</span></span></p>\r\n\r\n<p><strong><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Impression:</span></span></strong></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\">A Single live intrauterine fetus of average gestational age&nbsp;<br />\r\nNo obvious congenital anomaly detected on present study.</span>&nbsp;</span></p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10119,0,0,'ADPKD','<p><span style=\"font-size:12pt\"><strong>NAME : </strong></span>&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;<span class=\"marker\">Age</span>&nbsp;<span style=\"font-size:12pt\"><strong> / </strong></span>&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>UHID : </strong></span>&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;<span style=\"font-size:12pt\"><strong>&nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>REF BY :&nbsp;</strong></span>&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>INVESTIGATION :&nbsp;</strong></span><strong><span style=\"font-size:12.0pt\"><span style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">SONOGRAPHY OF ABDOMEN AND PELVIS </span></span></strong><span style=\"font-size:12pt\"><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><strong>DATE : </strong></span>&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n\r\n<p style=\"text-align:center\"><strong><span style=\"font-size:12pt\">USG REPORT</span></strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Liver is normal in size, shape and echopattern.No&nbsp;focal or diffuse lesion noted. No IHBRD noted.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Gall bladder is distended and normal. No evidence of calculus, wall thickening&nbsp;or mass lesion is seen.&nbsp;<br />\r\nCommon bile duct appears normal in caliber.<br />\r\nPortal vein appears normal.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Pancreas appears normal in size and echopattern. No evidence of any mass lesion, intra or peripancreatic fluid collection is seen.&nbsp;<br />\r\nSpleen appears normal in size and echotexture.&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Right kidney measures&nbsp;&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Left kidney measures&nbsp;<br />\r\nBoth kidneys appear grossly enlarged in size and show multiple well defined cysts of varying sizes completely replacing normal renal parenchyma with few hyperechoic foci- &nbsp;calcification/ calculi within and complete loss of Cortico-medullary differentiation.<br />\r\nThe largest cyst in lower pole of right kidney measures&nbsp; &nbsp;&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of significant pre-para aortic or mesenteric lymphadenopathy.<br />\r\nNo evidence of abnormal dilatation of bowel loops is seen.</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">Urinary bladder is distended and normal. No evidence of calculus, wall thickening or mass lesion is seen.<br />\r\nProstate appears normal in size (14 cc) and echotexture.&nbsp;</span></span></p>\r\n\r\n<p><span style=\"line-height:15px\"><span style=\"font-size:12pt\">No evidence of ascites or free fluid in pelvis.</span></span></p>\r\n\r\n<p><span style=\"font-size:12pt\"><span style=\"line-height:15px\"><strong>Comments:</strong><br />\r\nGrossly enlarged both kidneys with multiple well defined cysts of varying sizes completely replacing normal renal parenchyma and complete loss of Cortico-medullary differentiation suggests possibility of polycystic kidney disease </span>.</span><br />\r\n&nbsp;</p>\r\n','RAD','N','','Y','thims','0000-00-00 00:00:00','thims','0000-00-00 00:00:00'),(10120,0,0,'MEDICAL','<table border=\"1\" cellspacing=\"0\" class=\"MsoTableGrid\" style=\"background:#e5e5e5; border-collapse:collapse; border:solid windowtext 1.0pt; margin-left:6px; width:526.5pt\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient Name:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Name</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Date:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Patient ID: &nbsp;</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Patient Id</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Age:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Age</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:89.35pt\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Referred By:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:230.15pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Consultant Doctor</span>&nbsp;</p>\r\n			</td>\r\n			<td style=\"background-color:#e5e5e5; height:15.85pt; width:1.25in\">\r\n			<p><span style=\"font-size:11pt\"><span style=\"line-height:normal\"><span style=\"font-family:Calibri,sans-serif\">Gender:</span></span></span></p>\r\n			</td>\r\n			<td style=\"background-color:white; height:15.85pt; width:117.0pt\">\r\n			<p>&nbsp;&nbsp;<span class=\"marker\">Gender</span>&nbsp;</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp; &nbsp;&nbsp;</p>\r\n\r\n<p>&nbsp; &nbsp; &nbsp;</p>\r\n\r\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Date&nbsp;:&nbsp;&nbsp;<span class=\"marker\">Date</span>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<hr />\r\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <strong>&nbsp;MEDICAL CERTIFICATE</strong></p>\r\n\r\n<hr />\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>To whom so ever it may concern that &nbsp;<span class=\"marker\">Patient Name</span>&nbsp;, &nbsp;<span class=\"marker\">Gender</span>&nbsp;, &nbsp;<span class=\"marker\">Age</span>&nbsp;,<br />\r\nhas been consulted by me for c/o .</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>His/Her diagnosis is &nbsp;<span class=\"marker\">OP Diagnosis</span>&nbsp;.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>I have advised him/her&nbsp;&nbsp;rest for same from today ( ).</strong></p>\r\n\r\n<p><br />\r\n<strong>She/He is advised to have regular follow up with me.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Dr Darshan Bhatt</strong><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Consultant ENT surgeon</p>\r\n\r\n<p>&nbsp;</p>\r\n','CERT','N','','Y','thims','2025-10-14 17:31:53','thims','2025-11-13 10:47:08');
/*!40000 ALTER TABLE `template` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `template_inventory`
--

DROP TABLE IF EXISTS `template_inventory`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `template_inventory` (
  `inv_template_id` int(11) NOT NULL AUTO_INCREMENT,
  `inv_template_type` varchar(10) NOT NULL,
  `inv_template_name` varchar(25) NOT NULL,
  `inv_template_content` text NOT NULL,
  `is_active` enum('N','Y') NOT NULL DEFAULT 'Y',
  `created_by` varchar(15) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(15) NOT NULL,
  `lastmodified_date` datetime NOT NULL,
  PRIMARY KEY (`inv_template_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `template_inventory`
--

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

--
-- Table structure for table `termination_reason_master`
--

DROP TABLE IF EXISTS `termination_reason_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `termination_reason_master` (
  `termination_reason_id` tinyint(4) NOT NULL AUTO_INCREMENT,
  `termination_reason_name` varchar(30) NOT NULL,
  `termination_reason_is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`termination_reason_id`),
  UNIQUE KEY `termination_reason_name` (`termination_reason_name`),
  KEY `FK_terminationreason_createduser` (`created_by`),
  KEY `FK_terminationreason_lastmodifieduser` (`lastmodified_by`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `termination_reason_master`
--

LOCK TABLES `termination_reason_master` WRITE;
/*!40000 ALTER TABLE `termination_reason_master` DISABLE KEYS */;
INSERT INTO `termination_reason_master` VALUES (1,'Resigned','Y','thims','2019-02-23 00:00:00',NULL,NULL);
/*!40000 ALTER TABLE `termination_reason_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `test_group_master`
--

DROP TABLE IF EXISTS `test_group_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `test_group_master` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `test_grp_cd` int(11) NOT NULL,
  `test_grp_desc` varchar(150) NOT NULL,
  `test_cd` varchar(200) NOT NULL,
  `title_flag` enum('Y','N') NOT NULL DEFAULT 'Y',
  `test_type` varchar(20) NOT NULL,
  `test_classification` tinyint(4) NOT NULL,
  `sample_type` varchar(20) NOT NULL,
  `test_grp_header_remark` text NOT NULL,
  `test_grp_body_remark` text NOT NULL,
  `test_grp_footer_remark` text NOT NULL,
  `outsource` enum('Y','N','E') NOT NULL DEFAULT 'N',
  `active_YN` enum('N','Y') NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`test_grp_cd`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `test_group_master`
--

LOCK TABLES `test_group_master` WRITE;
/*!40000 ALTER TABLE `test_group_master` DISABLE KEYS */;
INSERT INTO `test_group_master` VALUES (0,0,1,'URINE EXAMINATION','T0301,T0028,T0029,T0030,T0031,T0033,T0377,T0378,T0302,T0035,T0036,T0037,T0066,T1265,T1266,T1100,T0303,T0040,T0042,T0045,T0046,T0048,T0050,T0051,T0058','Y','',0,'','','','','Y','Y','thims','2018-07-31 19:28:52','poojapatel','2021-11-12 15:48:32'),(0,0,2,'URINE hCG (PREGNANCY) TEST','T0067,T0070,T0074','Y','',0,'','','','Fact sheet for interpretation\r\n\r\nReactive : Means hCG concentration in urine strong enough to suggest the possibility of pregnancy gestation.other rare causes are hCG secreting neoplasms.Hence should also consider along with clinical interpretation.\r\n\r\nNon Reactive : Means hcG concentration in urine less enough to rule out the possibility of pregnancy gestation at the time of submission of urine sample. hCG concentration vary with stage of gestation.','Y','Y','thims','2018-07-31 19:38:15','thims','2018-08-14 11:07:07'),(0,0,3,'GRAM STAIN FOR DIPHTHERIA','T0078,T0081,T0087','Y','',0,'','','','','Y','Y','thims','2018-07-31 19:42:08','nimisha','2018-10-09 07:33:52'),(0,0,4,'HISTOPATHOLOGY REPORT','T0078,T0084,T0085,T0087','N','',0,'','','\r\n\r\n\r\nREMARKS : SLIDES & BLOCKS ARE GIVEN WITH THIS REPORT.','','Y','Y','thims','2018-07-31 19:46:30','thims','2018-08-30 11:17:10'),(0,0,5,'TORCH EVALUATION (By ELISA)','T0143,T0144,T0145,T0146,T0147,T0148,T0149,T0150','Y','',0,'','[Toxoplasma ,Rubella,CMV,Herpes]','','','Y','Y','thims','2018-08-01 13:22:50','thims','2018-08-02 17:20:51'),(0,0,6,'TUMOR MARKERS-By Chemiluminescence','T0152,T0153,T0154,T0156,T0157,T0158,T0159,T0160','Y','',0,'','[By Chemiluminescence]','','[All Tumor markers alone are not of diagnostic value as specific test of cancer.Hence clinical correlation required.]','Y','Y','thims','2018-08-01 14:08:08','thims','2018-08-02 17:23:45'),(0,0,7,'SPUTUM FOR AFB','T0321','Y','',0,'','','','','Y','Y','thims','2018-08-01 14:21:16','nimisha','2018-10-09 09:24:29'),(0,0,8,'HEMOGRAM REPORT','T0001,T0002,T0008,T0009,T0297,T0021,T0022,T0023,T0024,T0025,T0170,T0298,T0034,T0004,T0005,T0006,T0007,T0038,T0039','Y','',0,'','','','','Y','Y','thims','2018-08-01 14:46:25','bhumi','2019-10-21 17:34:27'),(0,0,9,'BLOOD CHEMISTRY REPORT','T0094,T0061,T0062,T0063,T0064,T0065','Y','',0,'','By Landwind LW C200i Fully Automated Bio.Analyser','','','Y','Y','thims','2018-08-01 15:12:48','thims','2019-03-09 14:20:09'),(0,0,10,'STOOL ANALYSIS','T0301,T0028,T0029,T0161,T0182,T0162,T0163,T0164,T0165,T0302,T0166,T0033,T0303,T0040,T0253,T0168,T0045,T0179,T0171,T0172,T0174,T0169,T0178,T0176,T0177','Y','',0,'','','','\r\n','Y','Y','thims','2018-08-01 15:13:57','bhumi','2019-11-18 16:43:37'),(0,0,11,'BIOCHEMICAL TESTS','T0160','Y','',0,'','[By Landwind LW C200i Fully Automated Bio-Analiser]','','','Y','Y','thims','2018-08-01 15:14:23','jainil','2022-12-31 15:55:38'),(0,0,12,'ARTERIAL BLOOD GAS ANALYSIS (ABGA)','T0101,T0099,T0100,T0104,T0102,T0103,T0105,T1274,T1275,T1276,T1277','Y','',0,'','By i-STAT ABG Analyser- Abbott-U.S.A','','','Y','Y','thims','2018-08-01 15:18:59','parthesh','2021-12-29 14:19:06'),(0,0,13,'SERUM ELECTROLYTES','T0106,T0107,T0283','Y','',0,'','By i-STAT ABG Analyser- Abbott-U.S.A','','','Y','Y','thims','2018-08-01 15:20:20','thims','2018-08-17 09:48:31'),(0,0,14,'STOOL FOR OCCULT BLOOD','T0187,T0188,T0189','Y','',0,'','','','','Y','Y','thims','2018-08-01 15:20:21','thims','2018-08-01 15:32:52'),(0,0,15,'RA TEST','T0185','Y','',0,'','','','','Y','Y','thims','2018-08-01 15:25:37','bhumi','2019-06-13 16:26:59'),(0,0,16,'BLOOD GLUCOSE ANALYSIS','T0115,T0075','Y','',0,'','','','','Y','Y','thims','2018-08-01 15:26:54','bhumi','2019-07-22 15:34:12'),(0,0,17,'CARDIAC MARKERS','T0117,T0118,T0119,T0120,T0087','Y','',0,'','[By Fully Automated Immunoassay analyser -mini Vidas]','','','Y','Y','thims','2018-08-01 15:28:15','thims','2018-08-02 16:46:56'),(0,0,18,'COAGULATION PROFILE','T0234,T0235,T0236,T0238','Y','',0,'','[By Coa-Data501 Coagu.Analyser]','','','Y','Y','thims','2018-08-01 15:29:19','nimisha','2018-09-16 06:34:50'),(0,0,19,'CULTURE EXAMINATION','T0078,T0122,T0123,T0124,T0125,T0126,T0127,T0128','Y','',0,'','','Remark : Colony count more then 1,00,000 indicates active infaction and less then 10,000 rules out it. Colony count between 10,000 and 1,00,000 is unusal and undetermine, occuring if patient is taking anti-biotics and diuretics or may occur due to contamination from normal flora. kindly corelate clinically. it is advisable to repeate sample. sensitivity testing was performed to guide clinician if he/she considers it as pathogenic.','','Y','Y','thims','2018-08-01 15:30:11','thims','2018-09-14 06:35:49'),(0,0,20,'CYTOLOGY','T0324,T0312,T0310','N','',0,'','','','Remark : However biopsy is confirmatory for final diagnosis and varius types of tumor. ','Y','Y','thims','2018-08-01 15:31:39','thims','2018-12-06 08:08:01'),(0,0,21,'FERTILITY PROFILE-FEMALE','T0315,T0131,T0244,T0240,T0241','Y','',0,'','','','','Y','Y','thims','2018-08-01 15:33:22','bhumi','2019-01-28 12:00:34'),(0,0,22,'IMMUNOLOGICAL TEST FOR DENGUE PROFILE BY CARD','T0137,T0138,T0139','Y','',0,'','','<p>[Test device:Advantage Dengue lgG/lgM+NS1 Ag(early detection) combi card - J-Mitra Ltd] [Note : Result must be confirmed by Elisa Method or RT-PCR etc.]</p>\r\n','<p>Diagnosis of Dengue infection should not be made solely based on this results alone but in conjuction with other clinical signs &amp; symptoms and other laboratory findings &amp; epidemiological factors.</p>\r\n','Y','Y','thims','2018-08-01 15:35:22','suraj','2021-07-30 16:29:39'),(0,0,23,'FERTILITY PROFILE- MALE','T0196,T0197,T0198,T0199,T0200','Y','',0,'','','','[By Fully Automated Immunoassy analyser- mini Vidas]','Y','Y','thims','2018-08-01 15:36:18','thims','2018-08-02 16:57:58'),(0,0,24,'PLURAL FLUID EXAMINATION','T0301,T0028,T0029,T0031,T0264,T0190,T0163,T0162,T0302,T0194,T0193,T0036,T0303,T0195,T0021,T0022,T0192,T0294,T0124,T0122,T0191','Y','',0,'','','','','Y','Y','thims','2018-08-01 15:45:32','thims','2018-08-29 10:07:31'),(0,0,25,'S. ACETONE','T0116','Y','',0,'','','','','Y','Y','thims','2018-08-01 15:54:14','thims','2018-08-01 15:57:53'),(0,0,26,'SERUM CHOLINESTERASE','T0064','Y','',0,'','','','','Y','Y','thims','2018-08-01 15:54:42','bhumi','2019-05-03 10:48:48'),(0,0,27,'GLYCOSYLATED HEMOGLOBIN ESTIMATION','T0140,T0309','Y','',0,'','','','','Y','Y','thims','2018-08-01 15:56:55','bhumi','2019-03-13 10:21:46'),(0,0,28,'ANAEMIA PROFILE','T0151,T0155','Y','',0,'','','A vitamin 12 that is used for several body functions including metabolism,the maintenance of the central nervous system,and the creation of red blood cells.B12 deficiency,can lead to megaloblastic anemia as well nerve and brain damage,which may eventually become irreversible.','','Y','Y','thims','2018-08-01 15:58:05','thims','2018-08-02 17:05:45'),(0,0,29,'SEMEN ANALYSIS','T0301,T0201,T0202,T0203,T0204,T0028,T0029,T0205,T0302,T0033,T0206,T0303,T0207,T0208,T0209,T0210,T0211,T1280,T0306,T0040,T0183,T0045','Y','',0,'','','','','Y','Y','thims','2018-08-01 16:00:49','nilesh','2022-01-13 12:09:15'),(0,0,30,'G6PD Enzyme Test','T0214','Y','',0,'','','','','Y','Y','thims','2018-08-01 16:21:11','poojapatel','2021-10-14 17:00:59'),(0,0,31,'PF / PV Malaria by Card','T0215,T0217','Y','',0,'','','Test is done by PF/PV Antigen Card - J.Mitra.','','Y','Y','thims','2018-08-01 16:22:00','thims','2018-08-02 17:36:24'),(0,0,32,'QBC for MALARIA','T0217,T0218','Y','',0,'','[By B.D QBC SYSTEM]','','','Y','Y','thims','2018-08-01 16:22:21','thims','2018-08-02 17:37:02'),(0,0,33,'LIPID PROFILE ','T0216,T0220,T0219,T0221,T0222,T0223,T0227','Y','',0,'','','','','Y','Y','thims','2018-08-01 16:24:57','bhumi','2019-02-04 15:27:03'),(0,0,34,'SEROLOGICAL TEST FOR HIV I & HIV II ANTIBODIES','T0215,T0226,T0228','Y','',0,'','Method : Rapid Immunochramatographic.','Interpretation Notes:\r\n[1. Final confirmation should be done by perfoming Western bolt analysis.]\r\n[2. In general the sensivity and specificity of all HIV Rapid Tests. is range between 97 % 99.9% so that an occasional false positive and false negative result can occur.]\r\n[3. A negative test does not exclude the possibility of prior exposure.especially a recent one.]\r\n[4. Final diagnosis of HIV infection must be based on clinical correlation with lab test result.]','','Y','Y','thims','2018-08-01 16:35:34','thims','2018-08-20 06:49:14'),(0,0,35,'SEROLOGICAL TEST FOR HBsAg','T0215,T0225,T0217','Y','',0,'','','','','Y','Y','thims','2018-08-01 16:36:08','thims','2018-08-01 16:41:17'),(0,0,36,'VDRL TEST BY CARD','T0224','Y','',0,'','','','','Y','Y','thims','2018-08-01 16:36:19','parthesh','2022-07-23 10:50:41'),(0,0,37,'SERUM LIPOPROTEINS','T0230,T0231,T0232,T0233','Y','',0,'','','','','Y','Y','thims','2018-08-01 16:49:22','thims','2018-08-01 16:49:39'),(0,0,38,'Serum Lipase','T0063','Y','',0,'','','','','Y','Y','thims','2018-08-08 10:41:11','thims','2018-08-08 10:41:53'),(0,0,39,'THYROID FUNCTION TEST','T0240,T0241,T0242,T0243,T0244','Y','',0,'','Chemiluminescent Microparticle Immunoassay','','','Y','Y','thims','2018-08-09 09:41:53','bhumi','2019-03-13 10:20:31'),(0,0,40,'Cerebro - Spinal Fluid Examination','T0301,T0028,T0029,T0031,T0247,T0190,T0163,T0302,T0249,T0250,T0251,T0303,T0252,T0021,T0022,T0253,T0294,T0124,T0122,T0254','Y','',0,'','','','','Y','Y','thims','2018-08-09 09:45:51','thims','2018-08-29 10:26:33'),(0,0,41,'SYNOVIAL FLUID EXAMINATION.','T0295,T0255,T0031,T0247,T0029,T0264,T0163,T0302,T0194,T0251,T0303,T0195,T0277,T0021,T0022,T0256,T0294,T0124,T0122,T0087','N','',0,'','','','','Y','Y','thims','2018-08-09 09:51:05','nimisha','2018-10-26 07:20:20'),(0,0,42,'WIDAL TEST','T0257,T0307,T0258,T0259,T0260,T0261','Y','',0,'','','','(1) \'H\' & \'O\' agglutinins appear in the serum after 10 days.Increase into peak in third to fifth\r\n       weeks than gradully  fall  for sevral weeks. There is no increase during relapse.\r\n(2) \'O\' agglutinins  appear  before \'H\' and  is usually higher at first. Lateron  \'H\' is higher.\r\n(3) Usual criteria  for  diagnosis  is both  \'O\'  and  \'H\' 1:80 or more.\r\n(4) Positive reaction  could  occur on account of typhoid vaccination or previous typhoid infection.\r\n      Nonspecific  febrile   desease may cause this titre to increase. (Anamnestic reaction)\r\n(5) Rising titre may be necessary for proper evaluation.\r\n(6) Early   treatment   with    specific drug  may cause titre to remain negative.\r\n(7) Increase in \'O\' titre  may  reflect  infection  with  any Salmonella organisms.\r\n(8) Urine or Stool culture is preferable  when illness of more than four weeks duration.\r\n(9)Result of slide technique should always be confirmed by tube technique.','Y','Y','thims','2018-08-10 12:46:42','thims','2018-08-29 10:38:29'),(0,0,43,'S.WIDAL TEST','T0257,T0258,T0259','Y','',0,'','','','Note: Rapid side Result must me confirmed by tube agglutination method, if Widal Test is positive. ','Y','Y','thims','2018-08-10 12:49:35','thims','2018-08-10 12:50:23'),(0,0,44,'CREATININE','T0077','Y','',0,'','','','','Y','Y','thims','2018-08-11 05:40:50','thims','2018-08-11 05:41:56'),(0,0,45,'RBS','T0041,T0270','Y','',0,'','','','','Y','Y','thims','2018-08-11 05:42:24','bhumi','2019-01-22 10:50:34'),(0,0,46,'BLOOD GROUP','T0173','Y','',0,'','','','','Y','Y','thims','2018-08-14 07:14:06','thims','2018-08-14 07:14:32'),(0,0,47,'S. CALCIUM','T0094','Y','',0,'','','','','Y','Y','thims','2018-08-14 07:16:28','thims','2019-03-09 14:21:11'),(0,0,48,'PERIPHERAL SMEAR STUDY','T0262,T0263,T0047,T0087','N','',0,'','','','','Y','Y','thims','2018-08-14 09:37:39','yatin','2021-05-24 13:01:11'),(0,0,49,'Urine For B. J. Protein','T0265','Y','',0,'','','','','Y','Y','thims','2018-08-14 11:15:07','thims','2018-08-14 11:16:06'),(0,0,50,'Urine Acetone','T0111','Y','',0,'','','','','Y','Y','thims','2018-08-14 11:18:37','thims','2018-08-14 11:19:11'),(0,0,51,'Urine For AFB','T0272,T0273,T0274','Y','',0,'','','','','Y','Y','thims','2018-08-14 11:59:07','thims','2018-08-14 11:59:32'),(0,0,52,'HEMOGRAM REPORT2','T0008,T0022,T0023,T0024,T0021,T0170,T0001,T0005,T0006,T0002,T0004,T0034,T0275,T0009,T0038,T0039,T0276,T0012,T0013,T0049,T0173','Y','',0,'','','','','Y','Y','thims','2018-08-14 13:10:31','thims','2018-08-29 08:59:17'),(0,0,53,'BLOOD UREA','T0076','Y','',0,'','','','','Y','Y','thims','2018-08-17 08:20:47','thims','2018-08-17 08:21:13'),(0,0,54,'S. BILIRUBIN','T0080,T0082,T0083','Y','',0,'','','','','Y','Y','thims','2018-08-17 08:43:12','thims','2018-12-06 07:14:18'),(0,0,55,'S.G.P.T.','T0086','Y','',0,'','','','','Y','Y','thims','2018-08-17 08:46:33','thims','2018-08-17 08:47:53'),(0,0,56,'S.G.O.T.','T0088','Y','',0,'','','','','Y','Y','thims','2018-08-17 08:48:18','thims','2018-08-17 08:48:46'),(0,0,57,'S. ALKALINE PHOSPHATASE','T0089','Y','',0,'','','','','Y','Y','thims','2018-08-17 08:50:35','thims','2018-08-17 08:51:11'),(0,0,58,'S. PROTEIN WITH A/G RATIO','T0095,T0096,T0097,T0098','Y','',0,'','','','','Y','Y','thims','2018-08-17 08:54:08','thims','2018-08-17 08:54:42'),(0,0,59,'S. CHOLESTEROL','T0216','Y','',0,'','','','','Y','Y','thims','2018-08-17 08:58:59','thims','2018-08-17 09:07:18'),(0,0,60,'S. AMYLASE','T0062','Y','',0,'','','','','Y','Y','thims','2018-08-17 08:59:20','thims','2019-03-09 14:07:10'),(0,0,61,'S. LIPASE','T0063','Y','',0,'','','','','N','Y','thims','2018-08-17 08:59:33','thims','2018-08-17 09:09:10'),(0,0,62,'S. URIC ACID','T0092','Y','',0,'','','','','Y','Y','thims','2018-08-17 08:59:47','thims','2018-08-17 09:09:43'),(0,0,63,'S. ACID PHOSPHATASE','T0065','Y','',0,'','','','','Y','Y','thims','2018-08-17 09:00:29','thims','2018-08-17 09:10:31'),(0,0,64,'S. CHOLINESTERASE','T0064','Y','',0,'','','','','N','Y','thims','2018-08-17 09:00:57','thims','2018-08-17 09:11:29'),(0,0,65,'CPK TOTAL','T0117','Y','',0,'','','','','Y','Y','thims','2018-08-17 09:01:27','thims','2018-08-17 09:11:48'),(0,0,66,'CK - MB','T0118','Y','',0,'','','','','Y','Y','thims','2018-08-17 09:01:39','thims','2018-08-17 09:12:06'),(0,0,67,'LDH','T0278','Y','',0,'','','','','Y','Y','thims','2018-08-17 09:01:56','thims','2018-08-17 09:17:57'),(0,0,68,'S. IRON','T0279','Y','',0,'','','','','Y','Y','thims','2018-08-17 09:02:28','thims','2018-08-17 09:20:44'),(0,0,69,'S. TIBC','T0280','Y','',0,'','','','','Y','Y','thims','2018-08-17 09:03:11','thims','2018-08-17 09:34:22'),(0,0,70,'S. FERRITIN','T0281','Y','',0,'','','','','Y','Y','thims','2018-08-17 09:03:35','thims','2018-08-17 09:24:32'),(0,0,71,'S. GGT','T0282','Y','',0,'','','','','Y','Y','thims','2018-08-17 09:03:49','thims','2018-08-17 09:26:32'),(0,0,72,'VITAMIN B-12 ','T0151','Y','',0,'','','A vitamin B12 that is used for several body functions including metabolism,the maintenance of the central nervous system,and the creation of red blood cells. B12 deficiency,can lead to megaloblastic anemia as well nerve and brain damage,which may eventually become irreversible.','','Y','Y','thims','2018-08-17 09:05:13','thims','2018-09-08 06:14:00'),(0,0,73,'SERUM SODIUM (Na+), POTASSIUM (K+)','T0106,T0107','Y','',0,'','','','','N','Y','thims','2018-08-17 09:50:09','thims','2018-08-17 09:55:10'),(0,0,74,'SERUM SODIUM (Na+)','T0106','Y','',0,'','','','','Y','Y','thims','2018-08-17 09:50:45','thims','2018-08-17 09:55:33'),(0,0,75,'SERUM POTASSIUM (K+)','T0107','Y','',0,'','','','','Y','Y','thims','2018-08-17 09:51:07','thims','2018-08-17 09:56:16'),(0,0,76,'SERUM CHLORIDES (Cl+)','T0283','Y','',0,'','','','','Y','Y','thims','2018-08-17 09:51:41','thims','2018-08-17 09:57:04'),(0,0,78,'SERUM PHOSPHOROUS','T0286','Y','',0,'','','','','Y','Y','thims','2018-08-17 09:53:12','thims','2018-08-17 10:00:19'),(0,0,79,'SERUM MAGNESIUM (Mg++)','T0287','Y','',0,'','','','','Y','Y','thims','2018-08-17 09:53:52','thims','2018-08-17 10:00:46'),(0,0,80,'BLEEDING TIME (BT)','T0055','Y','',0,'','','','','Y','Y','thims','2018-08-17 10:07:16','thims','2018-08-17 10:10:04'),(0,0,81,'CLOTTING TIME (CT)','T0057','Y','',0,'','','','','Y','Y','thims','2018-08-17 10:07:34','thims','2018-08-17 10:10:37'),(0,0,82,'PROTHROMBIN TIME (PT)','T0234,T0235,T0236','Y','',0,'','','','','Y','Y','thims','2018-08-17 10:09:37','thims','2018-08-30 10:02:32'),(0,0,83,'TSH, T3, T4','T0244,T0240,T0241','Y','',0,'','','','','Y','Y','thims','2018-08-17 10:15:24','thims','2018-08-17 10:21:07'),(0,0,84,'TSH','T0244','Y','',0,'','','','','Y','Y','thims','2018-08-17 10:15:33','nimisha','2018-10-13 10:32:15'),(0,0,85,'T4','T0241','Y','',0,'','','','','Y','Y','thims','2018-08-17 10:15:41','thims','2018-08-17 10:23:14'),(0,0,86,'T3','T0240','Y','',0,'','','','','Y','Y','thims','2018-08-17 10:15:48','thims','2018-08-17 10:23:37'),(0,0,87,'FSH','T0196','Y','',0,'','','','','Y','Y','thims','2018-08-17 10:16:00','thims','2018-08-17 10:26:23'),(0,0,88,'LH','T0197','Y','',0,'','','','','Y','Y','thims','2018-08-17 10:16:09','thims','2018-08-17 10:27:38'),(0,0,89,'FT3 ,FT4','T0242,T0243','Y','',0,'','','','','N','Y','thims','2018-08-17 10:17:13','thims','2018-08-17 10:28:21'),(0,0,90,'PROLACTIN','T0131','Y','',0,'','','','','Y','Y','thims','2018-08-17 10:17:36','thims','2018-08-17 10:29:13'),(0,0,91,'B -  HCG','T0134','Y','',0,'','','','','N','Y','thims','2018-08-17 10:18:25','thims','2018-08-17 10:31:23'),(0,0,92,'PROSTATIC SPECIFIC ANTIGEN','T0154','Y','',0,'','','','','Y','Y','thims','2018-08-17 10:18:34','thims','2019-02-11 11:18:45'),(0,0,93,'TROPONIN - I','T0119,T0120','Y','',0,'','','','','Y','Y','thims','2018-08-17 10:19:08','thims','2018-08-17 11:14:42'),(0,0,94,'HEMOGLOBIN','T0001','Y','',0,'','','','','Y','Y','thims','2018-08-17 11:31:36','thims','2018-08-17 11:31:53'),(0,0,95,'ESR','T0012,T0013','Y','',0,'','','','','Y','Y','thims','2018-08-17 11:38:30','bhumi','2019-03-07 11:07:34'),(0,0,96,'PS FOR MP','T0288','Y','',0,'','','','','Y','Y','thims','2018-08-17 11:48:58','thims','2018-08-17 11:53:58'),(0,0,97,'MP BY CARD','T0859','Y','',0,'','','','','Y','Y','thims','2018-08-17 11:49:23','suraj','2021-07-29 16:40:24'),(0,0,98,'BAND CELLS','T0170','Y','',0,'','','','','Y','Y','thims','2018-08-17 11:55:12','thims','2018-08-17 11:56:33'),(0,0,99,'HCV BY CARD','T0289','Y','',0,'','','','','Y','Y','thims','2018-08-17 12:10:53','suraj','2021-07-29 12:59:13'),(0,0,100,'MANTOUX TEST','T0290,T1137','Y','',0,'','','','','Y','Y','thims','2018-08-17 12:13:21','bhumi','2019-03-13 17:18:04'),(0,0,101,'ASO TITRE','T0186','Y','',0,'','','','','Y','Y','thims','2018-08-17 12:15:53','thims','2018-08-17 12:16:20'),(0,0,102,'Typhiod IgG & IgM Antibodies','T0291,T0292','Y','',0,'','','\r\n\r\n\r\nINTERPRETATION:\r\nOnly IgM Positive              : Acute Typhoid Fever \r\nIgG & IgM Both Positive   :  Acute Typhoid Fever (In Middle Stage)\r\nOnly IgG Positve                : Previous Infection and /or relapse \r\nIgG & IgM Both Negative : Probably  not Typhoid','','Y','Y','thims','2018-08-24 06:36:25','thims','2018-08-24 06:38:30'),(0,0,103,'24 Hours Urinary Protein','T0293','Y','',0,'','','','','Y','Y','thims','2018-08-27 10:58:10','thims','2018-08-27 10:59:02'),(0,0,104,'HS - CRP','T0308','Y','',0,'','','','','Y','Y','thims','2018-08-30 07:20:10','thims','2018-08-30 07:20:52'),(0,0,105,'PAP SMEAR','T0312,T0087','N','',0,'','','','','Y','Y','thims','2018-08-31 06:06:01','thims','2018-12-06 08:52:19'),(0,0,106,'TESTOSTERONE','T0311','Y','',0,'','','','','Y','Y','thims','2018-09-08 05:44:39','bhumi','2019-06-28 13:50:40'),(0,0,107,'VITAMIN D','T0155','Y','',0,'','','','','Y','Y','thims','2018-09-08 06:15:01','thims','2018-09-08 06:15:23'),(0,0,108,'FINAL NEEDLE ASPIRATION CYTOLOGY [FNAC]','T0313,T0314,T0079,T0312,T0310','N','',0,'','','','Remark : However biopsy is confirmatory for final diagnosis and varius types of tumor. ','Y','Y','thims','2018-09-13 08:28:49','nimisha','2018-10-09 07:09:25'),(0,0,109,'IMMUNOLOGICAL TEST','T0322,T0323','Y','',0,'','','','','Y','Y','nimisha','2018-10-12 10:05:52','nimisha','2018-11-13 12:24:14'),(0,0,110,'HEMOEXPERT','T0001,T0263,T0262,T0047,T0297,T0026,T0016,T0017,T0018,T0019,T0170,T0021,T0023,T0022,T0024,T0025,T0027','Y','',0,'','','','','Y','Y','thims','2018-12-06 09:35:59','thims','2018-12-06 09:40:15'),(0,0,111,'SPUTUM EXAMINATION','T0301,T0028,T0029,T0031,T0033,T0303,T0040,T0042,T0045,T0048,T0122,T0124,T0123','Y','',0,'','','','','Y','Y','thims','2018-12-07 06:41:28','bhumi','2019-01-28 11:51:43'),(0,0,112,'ANTENATAL PROFILE','','Y','',0,'','','','','N','Y','thims','2018-12-07 08:47:26','','0000-00-00 00:00:00'),(0,0,113,'ANTIBIOTIC SENSITIVITY REPORT (NEGATIVE)','T0325,T0326,T0327,T0328,T0329,T0330,T0331,T0372,T0332,T0333,T0334,T0373,T0335,T0336,T0337,T0338,T0339,T0340,T0341,T0342,T0343,T0344,T0345,T0346,T0347,T0348,T0349,T0350','Y','Sensitivity',0,'','','','','Y','Y','thims','2018-12-07 09:55:48','thims','2018-12-14 09:00:39'),(0,0,114,'ANTIBIOTIC SENSITIVITY REPORT (POSITIVE)','T0351,T0352,T0353,T0354,T0372,T0355,T0356,T0332,T0357,T0358,T0336,T0359,T0360,T0361,T0362,T0374,T0363,T0364,T0365,T0342,T0366,T0367,T0368,T0346,T0369,T0348,T0370,T0371','Y','Sensitivity',0,'','','','','Y','Y','thims','2018-12-07 10:21:03','thims','2018-12-14 09:01:13'),(0,0,115,'ASCITIC FLUID EXAMINATION','T0301,T0028,T0029,T0031,T0033,T0190,T0163,T0162,T0302,T0194,T0193,T0036,T0303,T0195,T0021,T0022,T0192,T0294,T0124,T0122,T0191','Y','',0,'','','','','Y','Y','thims','2018-12-07 10:59:25','thims','2018-12-07 11:06:27'),(0,0,116,'POSITIVE TESTING ','','Y','',0,'','','','','N','Y','thims','2018-12-11 07:53:30','','0000-00-00 00:00:00'),(0,0,117,'FBS','T0109,T0266','Y','Normal',0,'','','','','Y','Y','thims','2019-01-21 11:47:12','bhumi','2019-01-22 10:49:24'),(0,0,118,'PPBS','T0319,T0268','Y','Normal',0,'','','','','Y','Y','thims','2019-01-21 11:50:45','bhumi','2019-01-22 10:50:02'),(0,0,119,'TEST GROUP','','Y','Normal',0,'','','','','N','Y','bhumi','2019-01-21 15:19:12','','0000-00-00 00:00:00'),(0,0,120,'17? HYDROXY PROGESTERON','T0381','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','thims','2019-01-30 17:30:00'),(0,0,121,'24 HOUR URINE ADRENALIN (EPINEPHRINE)','T0382','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,122,'24 HOUR URINE CHLORIDE(CL-)','T0383','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','parth','2021-07-23 10:07:56'),(0,0,123,'24 HOUR URINE COPPER','T0384','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,124,'24 HOUR URINE CORTISOL','T0385','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,125,'24 HOUR URINE CREATININE','T0386','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,126,'24 HOUR URINE CREATININE CLEARENC TEST(CCT)','T0387','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,127,'24 HOUR URINE MAGNESIUM','T0388','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,128,'24 HOUR URINE METANEPHRINE','T0389','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,129,'24 HOUR URINE MICROALBUMIN','T0390','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,130,'24 HOUR URINE PHOSPHOROUS','T0391','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,131,'24 HOUR URINE POTASSIUM(K+)','T0392','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,132,'24 HOUR URINE SODIUM (NA+)','T0393','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,133,'24 HOUR URINE UREA','T0394','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,134,'24 HOUR URINE UREA NITROGEN (BUN)','T0395','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,135,'24 HOUR URINE URIC ACID','T0396','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,136,'24 HOUR URINE VMA (WITH CREATININE RATIO)','T0397','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,137,'24 URINE CALCIUM','T0398','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,138,'VITAMIN D','T0155','Y','',0,'','','','','Y','N','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,139,'ACE (ANGIOTENSIN CONVERTING ENZYME)','T0400','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,140,'ACETONE, URINE','T0401','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,141,'ACETYLCHOLINE RECEPTOR AUTOANTIBODIES (ACHR?AB)','T0402','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,142,'ACID FAST BACILLI (ATYPICAL MYCOBACTERIA) SPECIES IDENTIFICATION','T0403','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,143,'ACID FAST BACILLI CULTURE','T0404','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,144,'ACID FAST BACILLI CULTURE - BONE MARROW','T0405','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,145,'ACID FAST BACILLI CULTURE BLOOD','T0406','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,146,'ACID FAST BACILLI SENSITIVITY (10 DRUGS)','T0407','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,147,'ACID FAST BACILLI SENSITIVITY (13 DRUGS)','T0408','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,148,'ACID FAST BACILLI SENSITIVITY FIRST LINE DRUGS (SIREP)','T0409','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,149,'ACID FAST BACILLI SENSITIVITY SECOND LINE DRUGS (5 DRUGS)','T0410','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,150,'ACID FAST BACILLI SENSITIVITY SINGLE DRUG','T0411','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,151,'ACID FAST BACILLI STAIN','T0412','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,152,'ACID FAST BACILLI STAIN (3 SAMPLE)','T0413','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,153,'ACID PHOSPHOTASE (FOR WALKING PATEINT)','T0414','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,154,'ACTIVATED PROTEIN C RESISTANCE (APCR)','T0415','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,155,'ADA (ADENOSINE DEAMINASE)','T0416','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,156,'ADRENALIN (EPINEPHRINE)','T0417','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,157,'ADRENOCORTICOTROPIC HORMONE (ACTH)','T0418','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,158,'AEC (ABSOLUTE EOSINOPHIL COUNT)','T0419','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,159,'AEROBIC BLOOD CULTURE','T0420','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,160,'AFB SENSITIVITY (LINE PROBE ASSAY) ( MOR-TB) (ISONIAZIDE AND RIFAMPICIN)','','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,161,'AFB SENSITIVITY(LINE PROBE ASSAY)(MDR +XOR?TB) (ISONIAZID, RIFAMPICIN, ETHAMUTOL, FLUROOUINOLONES. AMINOGLYCOSIDES, CAPREOMYCIN)','','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,162,'AFB SENSITIVITY(LINE PROBE ASSAY)(XDR-TB) (ETHAMUTOL, FLUROQUINOLONES. AMINOGLYCOSIDES, CAPREOMYCIN)','','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,163,'AFB SMEAR BY IMMUNOFLUROSCENCE (3 SAMPLE)','T0424','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,164,'AFB SMEAR BY IMMUNOFLUROSCENCE (SINGLE SAMPLE)','T0425','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,165,'AFP?MOM (NEURAL TUBE DEFECT (NTO) ASSESMENT)','T0426','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,166,'ALBERTS STAIN','T0427','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,167,'ALDOSTERONE','T0428','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,168,'ALDOSTERONE(URINE)','T0429','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,169,'ALKALINE PHOSPHATASE','T0089','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','thims','2019-03-09 14:15:33'),(0,0,170,'ALL PANEL : CYTOGENETICS + FISH BCR/ABL, TEUAML,\n MLL GENE REARRANGEMENT AND PCR FOR T(1;19)OR E2A-PBX1','','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,171,'ALPHA+ANTITRYPSIN','T0432','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,172,'ALPHA-FETOPROTEIN ( AFP)','T0433','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,173,'ANA BY ELISA','T1231','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','parthesh','2021-12-31 15:17:04'),(0,0,174,'AMA BY IFA (ANTI MITOCHONDRIAL ANTIBODIES)','T0435','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,175,'AML PANEL : CYTOGENETICS + FISH FOR PMURARA, AMUETO,CBFL3/ MYH11, MLL GENE REARRANGEMENT','','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,176,'AMOEBIASIS ANTIBODIES?IGG','T0437','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,177,'AMYLASE','T0062','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','thims','2019-03-09 14:06:28'),(0,0,178,'SERUM AMYLASE ','T0062','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','thims','2019-03-09 14:07:38'),(0,0,179,'ANA BY IFA','T0440','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,180,'ANA PROFILE','T0441','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,181,'ANABYCLIA','T0442','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,182,'ANAEROBIC BLOOD CULTURE + AEROBIC BLOOD CULTURE','','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,183,'ANCA C (PR3 ) BY ELISA','T0444','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,184,'ANCA C AND P BY IFA','T0445','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,185,'ANCA P (MPO) BY ELISA','T0446','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,186,'ANDROSTENEDIONE','T0447','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,187,'ANION GAP','T0448','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,188,'ANTI CARDIOLIPIN (ACA) IGM ANTIBODIES','T0449','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,189,'ANTI CARDIOLIPIN(ACA) IGG ANTIBODIES','T0450','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,190,'ANTI CCP','T0451','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,191,'ANTI DNASE B','T0452','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,192,'ANTI DS DNA BY IFA','T0453','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,193,'ANTI DS DNA ELISA','T0454','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,194,'ANTI GAD65 TEST','T0455','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,195,'ANTI GLOMERULAR BASEMENT MEMBRANE ANTIBODIES (ANTI GBM)','T0456','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,196,'ANTI HBC IGM (CORE IGM)','T0457','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,197,'ANTI HBC TOTAL','T0458','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,198,'ANTI HBE','T0459','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,199,'ANTI HBS','T0460','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,200,'ANTI HCV BY CMIA','T0461','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','yashpancha','2022-02-16 13:52:19'),(0,0,201,'ANTI INSULIN ANTIBODIES','T0462','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,202,'ANTI ISLET CELL ANTIBODY','T0463','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,203,'ANTI MAG AB','T0464','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,204,'ANTI MUSK AB','T0465','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,205,'ANTI NMO ANTIBODY, CSF','T0466','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,206,'ANTI NMO ANTIBODY, SERUM','T0467','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,207,'ANTI PARIETAL CELL ANTIBODY (APCA)','T0468','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,208,'ANTI PHOSPHDLIPID IGM (APA)','T0469','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','bhumi','2019-07-22 16:20:02'),(0,0,209,'ANTI PHOSPHOLIPID IGG (APA)','T0470','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','bhumi','2019-07-22 16:20:15'),(0,0,210,'ANTI SMOOTH MUSCLE ANTIBODIES (ASMA) WITH TITRE BY IFA','T0471','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,211,'ANTI SPERM ANTIBODIES','T0472','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,212,'ANTI STREPTOLYSIN?O ANTIBODIES (ASO )TITRE','T0473','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,213,'ANTI THROMBIN ILL','T0474','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,214,'ANTI THYROGLOBULIN (ATG)','T0475','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,215,'ANTI THYROID ANTIBODY (ATG+ANTI TPO)','T0476','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,216,'ANTI TPO','T0477','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,217,'ANTI VGKC','T0478','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,218,'ANTIBIOTIC LEVEL-BLOOD VANCOMYCIN LEVEL','T0479','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,219,'ANTIEPILEPTIC DRUG PANEL (PHENOBARBITONE, PHENYTOIN, CARBAMAZEPINE +\n ITS EPOXIDE,\n OXCARBAZEPINE + ITS MONO? HYDROXY METABOLITE)','','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,220,'ANTIEPILEPTIC DRUG PANEL BLOOD LEVETIRACETAM','T0481','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,221,'ANTIEPILEPTIC DRUGS IN SERUM?CARBAMAZEPINE AND ITS EPOXIDE','T0482','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,222,'ANTIEPILEPTIC DRUGS IN SERUM?OXCARBAZEPINE AND ITS MONO-HYDROXY METABOLITE','T0483','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,223,'ANTIEPILEPTIC DRUGS IN SERUM?PHENOBARBITONE','T0484','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,224,'ANTIEPILEPTIC DRUGS IN SERUM?PHENYTOIN','T0485','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,225,'ANTIFUNGAL DRUGS? BLOOD VORICONAZOLE LEVEL','T0486','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,226,'ANTIFUNGAL DRUGS-BLOOD POSACONAZOLE LEVEL','T0487','Y','',0,'','','<p>Referenence Range: Although much debated, clinical studies suggest trough levels of &gt;0.7 mg/l for prophylaxis<br />\r\nand trough levels of &gt;1.0&ndash;1.25 mg/l for treatment of IFI.</p>\r\n','','Y','Y','thims','2019-01-30 17:30:00','suraj','2021-05-31 17:59:21'),(0,0,227,'ANTISACCHAROMYCES CEREVISIAE (ASCA), LGA','T0488','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,228,'ANTISACCHAROMYCES CEREVISIAE (ASCA), LGG','T0489','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,229,'ANY SPECIAL STAIN','T0490','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,230,'APDLIPOPROTEIN A?I','T0491','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,231,'APOLIPOPROTEIN B','T0492','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,232,'APTT (ACTIVATED PARTIAL THROMBOPLASTIN TIME)','T0493','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','yatin','2022-04-09 11:53:08'),(0,0,233,'AQUAPORIN?4 ANTIBODIES (NMO-LGG), CSF','T0494','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,234,'AQUAPORIN?4 ANTIBOOIES (NMO?LGG ), SERUM','T0495','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,235,'ARTERIAL BLOOD GAS (ABG)','T0496','Y','',0,'','','','','N','N','thims','2019-01-30 17:30:00','parthesh','2021-12-29 11:00:29'),(0,0,236,'ASPERGILLUS (GALACTOMENON) AG','T0497','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,237,'ASPERGILUS LGG','T0498','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,238,'ASPERGILUS LGM','T0499','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,239,'AUTO HEMOLYSIS TEST','T0500','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,240,'AVIDITY CMV LGG','T0501','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,241,'AVIDITY T, RUB LGG','T0502','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,242,'AVIDITY TOXO LGG','T0503','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,243,'B12 LEVEL','T0504','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,244,'BENCE-JONES PROTEIN','T0505','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,245,'BETA 2 GLYCOPROTEIN IGG','T0506','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','yashpancha','2022-02-19 15:44:15'),(0,0,246,'BETA 2 GLYCOPROTEIN IGM','T0507','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','yashpancha','2022-02-19 15:44:27'),(0,0,247,'BETA 2 MICROGLOBULIN,SERUM','T0508','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,248,'BETA 2 MICROGLOBULINE,URINE','T0509','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,249,'BETA HCG','T0134','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','thims','2019-04-08 12:59:11'),(0,0,250,'BETHESDA ASSAY','T0511','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,251,'BILIRUBIN','T0512','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,252,'BIOAVAILABLE TESTOSTERONE','T0513','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,253,'BIOPSY ACETYLCHOLINESTERASE (ACHE STAIN)','T0514','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,254,'BIOPSY BREAST(MODIFIED RADICAL MASTECTOMY + ER?PR+HER2NEU) + KL67','T0515','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,255,'BIOPSY BREAST(MODIFIED RADICAL MASTECTOMY + ER-PR)','T0516','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,256,'BIOPSY BREAST(MODIFIED RADICAL MASTECTOMY + ER-PR+HER2NEU)','T0517','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,257,'BIOPSY BREAST(MODIFIED RADICAL MASTECTOMY)','T0518','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,258,'BIOPSY ELECTRON MICROSCOPY','T0519','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,259,'BIOPSY KIDNEY WITH SPECIAL STAINS AND IF','T0520','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,260,'BIOPSY LARGE (1)','T0521','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,261,'BIOPSY LARGE (3) (EXTRA LARGE)','T0522','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','poojapatel','2021-10-21 15:23:24'),(0,0,262,'BIOPSY LARGE(2) - ALL CANCER RESECTIONS','T0523','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,263,'BIOPSY LARGE(4) - RADICAL PROSTATECTOMY, WHIPPLE\'S RESECTION','T0524','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,264,'BIOPSY LARGE(5) -\n POST CHEMOTHERAPY BONE','T0525','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,265,'BIOPSY LARGE(6) - AMPUTATION','T0526','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,266,'BIOPSY LIVER WITH SPECIAL STAINS','T0527','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,267,'BIOPSY MEDIUM (1)\n (SIZE - 1 TO 3 CM)','T0528','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,268,'BIOPSY MEDIUM(2)(SIZE - 3 T0 5CM)','T0529','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,269,'BIOPSY MEDIUM(3)(SIZE - 5 T0 8CM)','T0530','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,270,'BIOPSY MEDIUM(4)','T0531','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,271,'BIOPSY MUSCLE WITH SPECIAL STAINS & IHC','T0532','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,272,'BIOPSY NERVE WITH SPECIAL STAINS','T0533','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,273,'BIOPSY- PROSTATE CORE','T0534','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,274,'BIOPSY RENAL 3 BOTILE (PARAFFIN, IF AND EM)','T0535','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,275,'BIOPSY RENAL TRANSPLANT WITH C4D (WITHOUT IF)','T0536','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,276,'BIOPSY SKIN','T0537','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,277,'BIOPSY SKIN WITH IF','T0538','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,278,'BIOPSY SMALL (1) -1 CM PUNCH BIOPSY','','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','poojapatel','2021-10-21 15:22:22'),(0,0,279,'BIOPSY TURBT/BLADDER TUMOUR','T0540','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,280,'BIOPSY TURP/ PROSTATIC CHIPS','T0541','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,281,'BIOPSY UTERUS WITH ADNEXA AND FIBROID','T0542','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,282,'BIOPSY UTERUS WITH CERVIX','T0543','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,283,'BL CARBONATE(HC03)','T0544','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,284,'BLOOD (SERUM) ALCOHOL LEVEL','T0545','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,285,'BLOOD ALCOHOL LEVEL','T0546','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,286,'BLOOD LEAD LEVEL','T0547','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,287,'BLOOD METHEMOGLOBIN LEVEL','T0548','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,288,'BLOOD PARACETAMOL LEVEL','T0549','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,289,'BM ASPIRATION','T0550','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,290,'BM IRON STAIN','T0551','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,291,'BM REPORTING','T0552','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,292,'BODY FLUID CULTURE','T0553','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,293,'BONE CULTURE','T0554','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,294,'BRAF V600E MUTATION DETECTION','T0555','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,295,'BRUCELLA IGG','T0556','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','suraj','2021-08-06 15:15:07'),(0,0,296,'BRUCELLA IGM','T0557','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','suraj','2021-08-06 15:15:29'),(0,0,297,'BRUCELLOSIS(SERUM AGGLUTINATION TEST)','T0558','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,298,'BUN','T0559','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,299,'BUN/ CREATININE RATIO, SERUM','T0560','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,300,'C-PEPTIDE 2 HOUR AFTER GLUCOSE','T0561','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','poojapatel','2021-10-14 17:10:17'),(0,0,301,'C-PEPTIDE FASTING','T0562','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','poojapatel','2021-10-14 17:10:34'),(0,0,302,'C-PEPTIDE POST PRANDIAL','T0563','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','poojapatel','2021-10-14 17:10:44'),(0,0,303,'C-PEPTIDE RANDOM','T0564','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','poojapatel','2021-10-14 17:10:55'),(0,0,304,'C3 (COMPLEMENT PROTEIN CONCENTRATION','T0565','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,305,'C4 (COMPLEMENT PROTEIN CONCENTRATION )','T0566','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,306,'CA 15?3','T0567','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,307,'CALCITONIN','T0568','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,309,'CALCIUM IONIZED(CA++)','T0570','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','kevalc','2021-09-21 11:34:14'),(0,0,310,'CALPROTECTINE, STOOL','T0571','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,311,'CARBAMAZEPINE (TEGRETOL)','T0572','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,312,'CBC WITH PS','T0573','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,313,'CBC WITHOUT DC','T0574','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,314,'CD19 COUNT','T0575','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,315,'CD20COUNT','T0576','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,316,'CD3 CD4 COB COUNT','T0577','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,317,'CD3 COUNT','T0578','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,318,'CD34 COUNT (ISHAGE PROTOCOL)','T0579','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,319,'CD4 CD8 COUNT','T0580','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','suraj','2021-09-08 15:40:41'),(0,0,320,'CDS COUNT','T0581','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,321,'CEA (CARCINOEMBRYONIC ANTIGEN)','T0582','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,322,'CERULOPLASMIN','T0583','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,323,'CHIKUNGUNYA IGM (RAPID)','T0584','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','parthesh','2021-10-04 13:35:11'),(0,0,324,'CHLAMYDIA LGG ANTIBODIES','T0585','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,325,'CHLAMYDIA LGM ANTIBODIES','T0586','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,326,'CHLORIDE(CL?)','T0587','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,327,'CHOLINESTERASE (PSEUDO) (SERUM CHOLINESTERASE)','T0588','Y','',0,'','','','<p>Normal Expected Range will change with Pregnancy and female taking contraceptive.</p>\r\n','Y','Y','thims','2019-01-30 17:30:00','parthesh','2021-12-13 15:49:41'),(0,0,328,'CHROMOGRANIN A','T0589','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,329,'CK MM','T0590','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,330,'CLL PANEL : FISH FOR TRISOMY 12, DEL(17)(P), DEL(11)(Q), DEL(13)(Q)','','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,331,'CLOSTRIDIUM DIFFICILE TOXIN DETECTION','T0592','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,332,'CLOT RETRACTION','T0593','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,333,'CMV LGG','T0594','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,334,'CMV LGM','T0595','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,335,'COLD AGGLUTININ TITRE','T0596','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,336,'COPPER LEVEL ? SERUM','T0597','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,337,'CORTISOL AM','T0598','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,338,'CORTISOL PM','T0599','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,339,'CPK MB MASS','T0118','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','thims','2019-03-09 14:27:26'),(0,0,341,'CRP HS','T0308','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','thims','2019-03-09 15:05:02'),(0,0,342,'CRYOGLOBULIN','T0603','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,343,'CRYPTOCOCCAL ANTIGEN CSF','T0604','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,344,'CRYPTOCOCCAL ANTIGEN SERUM','T0605','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,345,'CS MOIT (MYCOBACTERIA OTHER THAN TUBERCULOSIS)','T0606','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,346,'CSF CELL COUNTS','T0607','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,347,'CSF CYTOSPIN','T0608','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,348,'CSF HSV IG G','T0609','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','parthesh','2021-12-31 14:45:51'),(0,0,349,'CSF LGG','T0610','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,350,'CSF LGG INDEX','T0611','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,351,'CSF MANOMETRY','T0612','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,352,'CSF MEASELES (RUBEOLO) LGG AB','T0613','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,353,'CSF OLIGOCLONAL BAND','T0614','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,354,'CSF PROCEDURE ?','T0615','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,355,'CSF PROTEIN','T0616','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,356,'CSF TPHA','T0617','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,357,'CSF VARICELLA LGG','T0618','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,358,'CULTURE AND SENSITIVITY- (AEROBIC)( PUS)','T0619','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,359,'CULTURE AND SENSITIVITY- (ANAEROBIC )PUS','T0620','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,360,'CULTURE AND SENSITIVITY AEROBIC- CSF','T0621','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,361,'CULTURE AND SENSITIVITY- BAL FLUID','T0622','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,362,'CULTURE AND SENSITIVITY -BLOOD (AUTOMATED)-AEROBIC(ADULT)','T0623','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,363,'CULTURE AND SENSITIVITY- EAR SWAB','T0624','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,364,'CULTURE AND SENSITIVITY- EYE SWAB','T0625','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,365,'CULTURE AND SENSITIVITY FLUID (EXCEPT CSF)-AEROBIC','T0626','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,366,'CULTURE AND SENSITIVITY FLUID(CSF)(AUTOMATED)','T0627','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,367,'CULTURE AND SENSITIVITY FLUID(PERICARDIAL)(AUTOMATED)','T0628','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,368,'CULTURE AND SENSITIVITY FLUID(PERITONEAL)(AUTOMATED)+A67','T0629','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,369,'CULTURE AND SENSITIVITY FLUID(PLEURAL)(AUTOMATED)','T0630','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,370,'CULTURE AND SENSITIVITY FLUID(SYNOVIAL)(AUTOMATED)','T0631','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,371,'CULTURE AND SENSITIVITY- SEMEN','T0632','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,372,'CULTURE AND SENSITIVITY- THROAT SWAB','T0633','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,373,'CULTURE AND SENSITIVITY- TISSUE','T0634','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,374,'CULTURE AND SENSITIVITY- URINE','T0078,T1129,T0303,T0040,T0183,T1131,T0299,T0124,T1130,T0127','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','bhumi','2019-02-04 12:14:20'),(0,0,375,'CULTURE AND SENSITIVITY- VAGINAL SWAB','T0636','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,376,'CULTURE AND SENSITIVITY-BLOOD ( AUTOMATED)-ANAEROBIC','T0637','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,377,'CULTURE AND SENSITIVITY-BLOOD (AUTOMATED)? AEROBIC(PAEDIATRIC)','T0638','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,378,'CULTURE AND SENSITIVITY-ET (ENDOTRACHEAL ASPIRATE)','T0639','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,379,'CULTURE AND SENSITIVITY-SPUTUM','T1307','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','jainil','2022-12-10 12:12:25'),(0,0,380,'CULTURE AND SENSITIVITY-STOOL','T0641','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,381,'CULTURE AND SENSITIVITY-WOUND SWAB','T0642','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,382,'CULTURE BLOOD/BONE MARROW FUNGUS','T0643','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,383,'CULTURE FOR NEISSERIA GONORRHOEAE','T0644','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,384,'CYCLOSPORINE','T0645','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,385,'CYSTATIN C','T0646','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,386,'CYTOLOGY - PAP SMEAR (TWO SLIDES ONLY)','T0647','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,387,'CYTOLOGY  LBC PAP SMEAR','T0648','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,388,'D - DIMER','T0649','Y','',0,'','','<p>This parameter results may vary from instrument to instrument and laboratory to laboratory. Clinical co<br />\r\nrelation is required for interpretation of result.</p>\r\n','','Y','Y','thims','2019-01-30 17:30:00','suraj','2021-05-22 12:36:24'),(0,0,389,'D - DIMER','T0650','Y','',0,'','','<p>This parameter results may vary from instrument to instrument and laboratory to laboratory. Clinical co<br />\r\nrelation is required for interpretation of result.</p>\r\n','','N','Y','thims','2019-01-30 17:30:00','suraj','2021-05-22 12:39:03'),(0,0,390,'D3-HYDROXYBUTYRATE','T0651','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,391,'DCT (DIRECT COOMBS TEST)','T0652','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,392,'DENGUE IGG BY CARD','T0653','Y','',0,'','','<p>[Test device:Advantage Dengue lgG/lgM+NS1 Ag(early detection) combi card - J-Mitra Ltd] [Note : Result must be confirmed by Elisa Method or RT-PCR etc.]</p>\r\n','<p>Diagnosis of Dengue infection should not be made solely based on this results alone but in conjuction with other clinical signs &amp; symptoms and other laboratory findings &amp; epidemiological factors.</p>\r\n','Y','Y','thims','2019-01-30 17:30:00','suraj','2021-07-30 16:32:15'),(0,0,393,'DENGUE IGM BY CARD','T0654','Y','',0,'','','<p>[Test device:Advantage Dengue lgG/lgM+NS1 Ag(early detection) combi card - J-Mitra Ltd] [Note : Result must be confirmed by Elisa Method or RT-PCR etc.]</p>\r\n','<p>Diagnosis of Dengue infection should not be made solely based on this results alone but in conjuction with other clinical signs &amp; symptoms and other laboratory findings &amp; epidemiological factors.</p>\r\n','Y','Y','thims','2019-01-30 17:30:00','suraj','2021-07-30 16:33:24'),(0,0,394,'DESMOGLEIN I & III ANTIBODY','T0655','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','jayeshc','2022-03-04 17:23:30'),(0,0,395,'DETECTION OF COMMON STEROIDS IN UNKNOWN DRUG PREPARATION','T0656','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,396,'DGPIGA','T0657','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,397,'DGPIGG','T0658','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,398,'DHEA','T0659','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,399,'DHEAS (DEHYDROEPIANDRO? STERON E?SULFATE)','T0660','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,400,'DIGOXIN (LANOXIN)','T0661','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,401,'DIHYDROTESTOSTERONE(DHT)','T0662','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,402,'DNA EXTRACTION','T0663','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,403,'DRUG OF ABUSE (9 DRUGS) IN URINE','T0664','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,404,'EBV ESNA LGG','T0665','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,405,'EBV PANEL','T0666','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,406,'EBV VGA / EA LGG','T0667','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,407,'EBVVCA LGM','T0668','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,408,'ECHINOCOCCUS (HYDATID CYST) LGG','T0669','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,409,'ELECTROLYTES','T0670','Y','',0,'','','','','N','N','thims','2019-01-30 17:30:00','parthesh','2021-12-29 11:30:43'),(0,0,410,'ELT(EUGLOBULIN LYSIS TIME)','T0671','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,411,'EMA BINDING TEST FOR HEREDITARY SPHEROCYTOSIS','T0672','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,412,'ENDOMYSIAL ANTIBODY, SERUM','T0673','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,413,'ERYTHROPOIETIN (EPO)','T0674','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,414,'ESR','T0675','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,415,'ESTRADIOL(E2)','T0676','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,416,'ESTRIOL(E3)','T0677','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,417,'FACTOR 10 ASSAY','T0678','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,418,'FACTOR 11 ASSAY','T0679','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,419,'FACTOR 12 ASSAY','T0680','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,420,'FACTOR 13 SCREEN','T0681','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,421,'FACTOR 2 ASSAY','T0682','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,422,'FACTOR 5 ASSAY','T0683','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,423,'FACTOR 7 ASSAY','T0684','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,424,'FACTOR 8 ASSAY','T0685','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,425,'FACTOR 9 ASSAY','T0686','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,426,'FDP','T0687','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,427,'FERRITIN','T0688','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,428,'FIBRINOGEN','T0689','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,429,'FINE NIDDLE ASPIRATION CYTOLOGY - EFFUSION CYTOLOGY + CELL BLOCK','T0690','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,430,'FINE NIDDLE ASPIRATION CYTOLOGY ? ONLY REPORTING','T0691','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,431,'FINE NIDDLE ASPIRATION CYTOLOGY - PROCEDURE WITH REPORTING','T0692','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,432,'FISH 1P19Q','T0693','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,433,'FISH ALK MUTATION STUDY','T0694','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,434,'FISH AMUETO 1(8;21)','T0695','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,435,'FISH BCL1/IGH 1(11;14)','T0696','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,436,'FISH BCR-ABU 1(9:22) / (PHILADELPHIA CHROMOSOME)','T0697','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,437,'FISH CEP XV (CHIMERISM)','T0698','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,438,'FISH CEP XV (CHIMERISM)','T0699','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,439,'FISH DEL 130','T0700','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,440,'FISH DEL 140','T0701','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,441,'FISH DEL 15011/15024 (PRADER WILLI SYNDROME)','T0702','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,442,'FISH DEL 17P / DEL 110','T0703','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,443,'FISH DEL 22011/22013 (DIGEORGE SYNDROME)','T0704','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,444,'FISH DEL 5Q','T0705','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,445,'FISH DEL 7Q','T0706','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,446,'FISH FGFR3/IGH 1(4;14)','T0707','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,447,'FISH HER 2 NEU','T0708','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,448,'FISH INV(16)','T0709','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,449,'FISH MAF/IGH 1(14;16)','T0710','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,450,'FISH MLL GENE REARRANGEMENT','T0711','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,451,'FISH ON ABORTUS MATERIAL ( 13,18,21,X &Y)','T0712','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,452,'FISH SEMEN (13,18,21,X & Y)','T0713','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,453,'FISH TEUAML 1(12;21)','T0714','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,454,'FISH TRISOMY 12','T0715','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,455,'FISH UNCULTURED AMNIOCYTES','T0716','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,456,'FISH: PMU RARA 1(15:17)','T0717','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,457,'FLUID CYTOLOGY(URINE/CSF CYTOLOGY)','T0718','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,458,'FOLIC ACID','T0719','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,459,'FOLLICLE STIMULATING HORMONE (FSH)','T0720','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,460,'FREE ANDROGEN INDEX','T0721','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,461,'FREE BETA HCG (FBHCG)','T0722','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,462,'FREE KAPPA LITE CHAIN ASSAY','T0723','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,463,'FREE LAMBDA LITE CHAIN ASSAY','T0724','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,464,'FREE LITE CHAIN ASSAY','T0725','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,465,'FREE PROTEIN S','T0726','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,466,'FREE PSA','T0727','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,467,'FREE TESTOSTERONE','T0728','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,468,'FROZEN - 2','T0729','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,469,'FROZEN - 3','T0730','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,470,'FROZEN -1','T0731','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,471,'FT3 (FREE TRIIODOTHYRONINE)','T0732','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,472,'FT4 (FREE THYROXINE)','T0733','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,473,'FUNGAL CULTURE','T0734','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,474,'FUNGAL IDENTIFICATION','T0735','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,475,'FUNGAL IDENTIFICATION AND SENSITIVITY','T0736','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,476,'FUNGAL SENSITIVITY','T0737','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,477,'FUNGAL STAIN(CALCOFLOUR WHITE)','T0738','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,478,'FUNGAL STAIN(KOH PREPARATION)','T0739','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,479,'G6PD QUANTITATIVE','T0740','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,480,'GASTRIC LAVAGE FOR DRUGS','T0741','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,481,'GASTRIC LAVAGE FOR HEMOSIDEROPHAGE','T0742','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,482,'GASTRIC LAVAGE FOR SUSPECTED PESTICIDES','T0743','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,483,'GASTRIN','T0744','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,484,'GFR','T0745','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,485,'GLIADIN LGA','T0746','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,486,'GLIADIN LGG','T0747','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,487,'GLUTAMIC ACID DECARBOXYLASE (GAD) IGG ANTIBODIES\n (ANTI GAD 65 AB)','T0748','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,488,'GLYCOSYLATED HEMOGLOBIN (HBA1C)','T0140','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','thims','2019-03-09 15:00:47'),(0,0,489,'GONORRHOEA -MICROSCOPY','T0750','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,490,'GRAM AND ZN STAIN','T0751','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,491,'GROWTH HORMONE (GH)','T0752','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,492,'H. PYLORI LGA','T0753','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,493,'H. PYLORI LGG','T0754','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,494,'H.PYLORI ANTIGEN TEST','T0755','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,495,'HAM TEST','T0756','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,496,'HAPTOGLOBIN','T0757','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,497,'HAV LGG','T0758','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,498,'HAV LGM','T0759','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,499,'HB ELECTROPHORESIS BY CE','T0760','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,500,'HB H PREPARATION','T0761','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,501,'HBEAG','T0762','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,502,'HBSAG','T0763','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,503,'HBSAG BY CARD','T0764','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,504,'HBV BY TAQMAN ','T0765','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','parthesh','2021-12-23 13:06:57'),(0,0,505,'HDL CHOLESTEROL','T0766','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,506,'HE4 ? ROMA INDEX HUMAN EPIDIDYMIS PROTEIN-4 , SERUM','T0767','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,507,'HEINZ BODIES','T0768','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,508,'HERPES ZOSTER ? LGG','T0769','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,509,'HERPES ZOSTER  LGM','T0770','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,510,'HEV LGM','T0771','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,511,'HEV? LGG','T0772','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,512,'HIV WESTERN BLOT','T0773','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,513,'HIV1 & 2','T0774','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,514,'HIV1 & 2 BY CARD','T0215,T0226,T0228','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','thims','2019-02-04 15:48:05'),(0,0,515,'HLA B27 BY FLOWCYTOMETRY','T0776','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,516,'HOMA INDEX INSULIN RESISTANCE TEST','T0777','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,517,'HOMOCYSTEINE','T0778','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,518,'HSV 1 IG M','T0779','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','parthesh','2021-12-31 14:44:41'),(0,0,519,'HSV 2 IG G','T0780','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','parthesh','2021-12-31 14:44:54'),(0,0,520,'HSV 2 IG M','T0781','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','parthesh','2021-12-31 14:45:10'),(0,0,521,'HSV I IG G','T0782','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','parthesh','2021-12-31 14:45:27'),(0,0,522,'ICT (INDIRECT COOMBS TEST)','T0783','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,523,'ICT (INDIRECT COOMBS TEST) TITRE','T0784','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,524,'IGF?1 (INSULIN LIKE GROWTH FACTOR?1)','T0785','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,525,'IHC ANY SINGLE MARKER (HER2NEU/C4D/EBER/KI67)','T0786','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,526,'IHC ER-PR','T0787','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,527,'IHC ER-PR, HER2NEU','T0788','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,528,'IHC EXTENDED PANEL (>10 MARKERS)? LYMPHOMA/MUO/MSI','T0789','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,529,'IHC PANEL UPTO 5 MARKERS','T0790','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,530,'IMMUNO FIXATION ELECTROPHORESIS','T0791','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,531,'IMMUNOPHENOTYPING FOR AUTOIMMUNE LYMPHOPROLIFERATIVE DISORDER (ALPS)','T0792','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,532,'IMMUNOPHENOTYPING LEUKEMIA PANEL','T0793','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,533,'IMMUNOPHENOTYPING LYMPHOMA PANEL','T0794','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,534,'INFECTIOUS MONONUCLEOSIS','T0795','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,535,'INHIBIN A','T0796','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,536,'INHIBIN B','T0797','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,537,'INHIBITOR SCREEN','T0798','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,538,'INSULIN 1 HOUR AFTER GLUCOSE','T0799','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,539,'INSULIN 2 HOUR AFTER GLUCOSE','T0800','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,540,'INSULIN FASTING','T0801','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,541,'INSULIN PP','T0802','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,542,'INSULIN RANDOM','T0803','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,543,'INTRINSIC FACTOR LGG','T0804','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,544,'IONIZED CALCIUM(CA++)','T0805','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,545,'IRON','T0279','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','thims','2019-03-09 14:43:56'),(0,0,546,'ISLET CELL ANTIBODIES','T0807','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,547,'KARYOTYPE - BONE MARROW','T0808','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,548,'KARYOTYPE - PERIPHERAL BLOOD (COUPLE)','T0809','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,549,'KARYOTYPE PERIPHERAL BLOOD','T0810','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','bhumi','2019-03-12 17:03:33'),(0,0,550,'KARYOTYPE -AMNIOTIC FLUID','T0811','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,551,'KARYOTYPING-CHORIONIC VILU SAMPLE','T0812','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,552,'KARYOTYPING-PRODUCT OF CONCEPTION','T0813','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,553,'KCT (KAOLIN CLOTIING TIME)','T0814','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,554,'LACTATE LEVEL CSF','T0815','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,555,'LACTATE LEVEL?PLASMA','T0816','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,556,'LAP SCORE','T0817','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,557,'LDH FLUID','T0818','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,558,'LDL?DIRECT','T0819','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,559,'LEGIONELLA PNEUMOPHILA AG, URINE','T0820','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,560,'LEPTOSPIRA IGM','T0821','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,561,'LGA','T0822','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,562,'LGE, TOTAL','T0823','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,563,'LGF 1 BP-3','T0824','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,564,'LGG','T0825','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,565,'LGG, CSF','T0826','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,566,'LGG4','T0827','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,567,'LGM','T0828','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,568,'LH','T0829','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,569,'LIPASE','T0063','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','thims','2019-03-09 14:56:00'),(0,0,570,'LIPOPROTEIN(A)(LP(A))','T0831','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,571,'LITHIUM','T0832','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,572,'LKM 1 ANTIBODY','T0833','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,573,'LUPUS ANTICOAGULANT','T0834','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,574,'LYMPHOCYTE SUBSET ANALYSIS','T0835','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,575,'MAGNESIUM','T0287','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','thims','2019-03-09 14:46:15'),(0,0,576,'MANTOUX (TUBERCULIN) TEST','T0837','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,577,'MDS PANEL : CYTOGENETICS\n + FISH','T0838','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,578,'MEASLES IGG','T0839','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,579,'MEASLES IGM','T0840','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,580,'METANEPHRINE ? FREE PLASMA','T0841','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,581,'METHAEMOGLOBIN','T0842','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,582,'ALBUMIN/CREATENINE RATIO URINE(ACR)','T0843','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','bhumi','2019-08-09 13:21:38'),(0,0,583,'MICROFILARIA ANTIBODY','T0844','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,584,'MIXING STUDY (FACTOR 10)','T0845','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,585,'MIXING STUDY (FACTOR 11)','T0846','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,586,'MIXING STUDY (FACTOR 12)','T0847','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,587,'MIXING STUDY (FACTOR 2)','T0848','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,588,'MIXING STUDY (FACTOR 5)','T0849','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,589,'MIXING STUDY (FACTOR 7)','T0850','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,590,'MIXING STUDY (FACTOR 8)','T0851','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,591,'MIXING STUDY (FACTOR 9)','T0852','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,592,'MIXING STUDY FOR PROLONGED APTI (FACTOR 8,9,11, 12)','T0853','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,593,'MIXING STUDY FOR PROLONGED PT & APTI (FIBRINOGEN & FACTOR 2,5, 10)','T0854','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,594,'MIXING STUDY FOR\n PROLONGED PT (FACTOR 2,5,7, 10)','T0855','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,595,'MIXING STUDY? PT (CONTROL PLASMA)','T0856','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,596,'MODIFIED ZN STAIN FOR NOCARDIA','T0857','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,597,'MODIFIED ZN STAIN FOR STOOL','T0858','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,598,'MP BY CARD','T0859','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,599,'MP BY QBC','T0860','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,600,'MPD PANEL : CYTOGENETICS\n +FISH FOR BCR/ABL + JAK2 MUTATION ANALYSIS','T0861','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,601,'MUMPS LGG','T0862','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,602,'MUMPS LGM','T0863','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,603,'MYCOPLASMA LGM','T0864','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,604,'MYELOMA PANEL: DEL(13)(0), DEL(11)(0), DEL(17)(P), T(11;14), T(4;14),T(14;16)','','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,605,'MYOGLOBIN','T0866','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,606,'NK CELL (CD16 + CD56)','T0867','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,607,'NMDA ANTIBODY, CSF','T0868','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,608,'NMDA ANTIBODY, SERUM','T0869','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,609,'NOCARDIA CULTURE','T0870','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,610,'DENGUE NS1 AG BY ELISA','T0871','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','suraj','2021-07-30 16:37:49'),(0,0,611,'DENGUE NS1 AG BY CARD','T0872','Y','',0,'','','<p>[Test device:Advantage Dengue lgG/lgM+NS1 Ag(early detection) combi card - J-Mitra Ltd] [Note : Result must be confirmed by Elisa Method or RT-PCR etc.]</p>\r\n','<p>Diagnosis of Dengue infection should not be made solely based on this results alone but in conjuction with other clinical signs &amp; symptoms and other laboratory findings &amp; epidemiological factors.</p>\r\n','Y','Y','thims','2019-01-30 17:30:00','suraj','2021-07-30 16:37:17'),(0,0,612,'NT PRO BNP','T0873','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','parthesh','2021-10-04 13:37:42'),(0,0,613,'OPERATION THEATER MICROBIOLOGICAL SURVEILLANCE','T0874','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,614,'OSMOLALITY, SERUM','T0875','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,615,'OSMOLALITY, URINE','T0876','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,616,'PARANEOPLASTIC (NEURONAL ANTIBODIES PROFILE)','T0877','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,617,'PARASITE IDENTIFICATION','T0878','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,618,'PARVOVIRUS 819 LGM','T0879','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,619,'PCR !DH 1/2 MUTATION DETECTION','T0880','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,620,'PCR 5FU PANEL','T0881','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,621,'PCR ABL KINASE DIMAIN MUTATIONS FOR IMATINIB RESISTANCE','T0882','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,622,'PCR ADENO VIRUS QUALITAITVE','T0883','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,623,'PCR ADENO VIRUS QUANTITATIVE','T0884','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,624,'PCR APC GENE MUTATION FAMILY SCREENING','T0885','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,625,'PCR APC GENE MUTATION\n - PATIENT','T0886','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,626,'PCR B.K. VIRUS QUANTITATIVE (!VD APPROVED)','T0887','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,627,'PCR BCR/ABL QUALITATIVE MAJOR (P210)','T0888','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,628,'PCR BCR/ABL QUALITATIVE MINOR (P190)','T0889','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,629,'PCR CAL R MUTATION DETECTION','T0890','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,630,'PCR CBFB/MYH11 FOR INV 16','T0891','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,631,'PCR CEBPAMUTATION DETECTION','T0892','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,632,'PCR CHIKUNGUNIYA AND DENGUE - QUALITATIVE','T0893','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,633,'PCR CHIKUNGUNIYA\n -QUALITATIVE','T0894','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,634,'PCR CHIMERISM FOLLOW UP','T0895','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,635,'PCR C-KIT MUTATION','T0896','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,636,'PCR CMV (QUALITATIVE)','T0897','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,637,'PCR CMV QUANTITATIVE','T0898','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,638,'PCR COMPLET CHIMERISM BY VNTR','T0899','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,639,'PCR CYSTIC FIBROSIS','T0900','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,640,'PCR DENGUE - TYPING','T0901','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,641,'PCR DENGUE -QUALITATIVE','T0902','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,642,'PCR DPD GENE MUTATION DETECTION','T0903','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,643,'PCR E2/PBX1 1(1;19)','T0904','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,644,'PCR EBV (QUALITATIVE) PCR','T0905','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,645,'PCR EBV (QUANTITATIVE) PCR','T0906','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,646,'PCR EGFR MUTATION','T0907','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,647,'PCR FACTOR V LEIDEN MUTATION (G1691A) DETECTION','T0908','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,648,'PCR FLT- 3 (ITD, D835Y) MUTATION','T0909','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,649,'PCR GAG REPEAT FOR HUNTINGTON DISEASE','T0910','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,650,'PCR GALT MUTATION','T0911','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,651,'PCR H RAS MUTATION DETECTION','T0912','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,652,'PCR HBV QUALITATIVE','T0913','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,653,'PCR HBV QUANTITATIVE','T0914','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','parthesh','2021-12-23 13:15:53'),(0,0,654,'PCR HGV GENOTYPING','T0915','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,655,'PCR HGV RNA QUALITATIVE','T0916','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,656,'PCR HCV RNA QUANTITATIVE (IVD APPROVED)','T0917','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','yashpancha','2022-02-16 13:53:06'),(0,0,657,'PCR HIGH RESOLUTION HLA TYPING','T0918','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,658,'PCR HIV PROVIRAL DNA','T0919','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,659,'PCR HIV QUALITATIVE','T0920','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,660,'PCR HIV VIRAL LOAD (QUANTITATIVE) (IVD APPROVED)','T0921','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,661,'PCR HIV VIRAL LOAD (QUANTITATIVE) FDA APPROVED','T0922','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,662,'PCR HLA B5701','T0923','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','bhumi','2019-08-17 10:57:19'),(0,0,663,'PCR HLA A,B,DR TYPING','T0924','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,664,'PCR HLA B27','T0925','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,665,'PCR HLA TYPING - A , B','T0926','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,666,'PCR HLA TYPING DR','T0927','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,667,'PCR HPV DNA','T0928','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,668,'PCR HSV (1 & 2) QUANTITATIVE','T0929','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','nilesh','2020-08-06 13:09:03'),(0,0,669,'PCR IS BCR/ABL - QUANTITATIVE\n (PHILADELPHIA CHROMOSOME)','T0930','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,670,'PCR JAK 2 EXON 12 MUTATION DETECTION','T0931','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,671,'PCR JAK2 (V617F) MUTATION','T0932','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,672,'PCR JAPANES ENCEPHALITIS VIRUS- CSF','T0933','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,673,'PCR K-RAS MUTATION','T0934','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,674,'PCR MICROSATELITE INSTABILITY IN COLON CANCER','T0935','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,675,'PCR MLUAF41(4:11)','T0936','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,676,'PCR MPL MUTATION DETECTION','T0937','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,677,'PCR MTHFR (C677T, A1298C) MUTATION DETECTION','T0938','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,678,'PCR MUTYH GENE MUTATION FAMILY SCREENING','T0939','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,679,'PCR MUTYH GENE MUTATION\n ? PATIENT','T0940','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,680,'PCR MYBPC3 (CARDIOMYOPATHY PREDISPOSITION)','T0941','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,681,'PCR N RAS MUTATION DETECTION','T0942','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,682,'PCR NPM-1','T0943','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,683,'PCR P53 MUTATION DETECTION','T0944','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,684,'PCR PAI 1 GENOTYPING','T0945','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,685,'PCR PARVOVIRUS B19 DNA','T0946','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,686,'PCR PIK3CA MUTATION DETECTION','T0947','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,687,'PCR PML RARA 1(15:17), QUALITATIVE\"','T0948','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,688,'PCR PML RARA 1(15:17), QUANTIATIVE','T0949','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,689,'PCR PROTHROMBINE MUTATION (G20210A)','T0950','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,690,'PCR PRSS1 GENOTYPIND','T0951','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,691,'PCR PTEN MUTATION DETECTION','T0952','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,692,'PCR RET MUTATION DETECTION','T0953','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,693,'PCR RFC1 (REPLICATION FACTORC1) (80 G>A)','T0954','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,694,'PCR SIL/TAL1 FOR MICRODELETION 1P32','T0955','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,695,'PCR SLC01B1 (SIMVASTATIN) GENOTYPING','T0956','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,696,'PCR SPINK 1 GENOTYPING','T0957','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,697,'PCR T CELL GENE REARRANGEMENT','T0958','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,698,'PCR TB/NTM DETECTION','T0959','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,699,'PCR THROMBOPHILIA MUTATION','T0960','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,700,'PCR TPMT GENOTYPING','T0961','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,701,'PCR UGTIA1 MUTATION','T0962','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,702,'PCR UGTIA1 MUTATION DITTCTION','T0963','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,703,'PCR VARICELLA ZOSTER VIRUS','T0964','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,704,'PCR VIRAL MENINGITIS? QUALITATIVE','T0965','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,705,'PCR WARFARIN PANEL','T0966','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,706,'PCR Y CHROMOSOME MICRODELETION','T0967','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,707,'PCRTEUAML11(12:21)','T0968','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,708,'PDBS(POST DINNER BLOOD SUGAR)','T0969','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,709,'PERICARDIAL FLUID ROUTINE','T0970','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,710,'PERIPHERAL SMEAR STUDY - OLD','T0971','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','thims','2019-02-05 18:54:41'),(0,0,711,'PH FOR FLUID','T0972','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,712,'PHOSPHORUS','T0973','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,713,'PHYNYTOIN (DILANTIN,EPTOIN)','T0974','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,714,'PLA2 RECEPTOR ANTIBODY','T0975','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,715,'PLASMA CHOLINESTERASE ACTIVITY','T0976','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,716,'PLASMA RENIN','T0977','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,717,'PLATELET ANTIGEN (GPIIB/IIIA & GPIB) STUDY BY FLOWCYTOMETRY FOR GT AND BSS','T0978','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,718,'PLATELET ANTIGEN (GPIIB/IIIA & GPIB) STUDY BY FLOWCYTOMETRY\n FOR GT AND BSS','T0979','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,719,'PNEUMOSLIDE PANEL','T0980','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,720,'PNH BY FLOW (WBC FLAER & C0157 AND RBC CD 59)','T0981','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,721,'PNH WORKUP(HAMTEST,SLT&\n URINE HEMOSIDERIN)','','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,722,'POTASIUM (K +)','T0983','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,723,'PPBS','T0112,T0268','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','bhumi','2019-03-19 16:53:14'),(0,0,724,'PREGNANCY ASSOCIATED PLASMA PROTEIN-A (PAPP? A)','T0985','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,725,'PRENATAL KARYOTYPE AND FISH','T0986','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,726,'PROCALCITONIN','T0987','Y','',0,'','','<p>Procalcitonin (PCT) is a protein that can act as a hormone and a cytokine. It can be produced by several types of cells and many organs in response to<br />\r\nproinflammatory stimuli, particularly bacterial infection. It is released under the stimulation of sepsis. PCT levels rise within 6 to 12 hours of bacterial<br />\r\ninfection with septic consequences. PCT concentration remain high for up to 48 hours, falling to their baseline values over several days if the infection is<br />\r\ncontrolled. PCT can be a useful test for diagnosis and prognosis of bacterial infection and is usually ordered along with other tests to help detect or rule<br />\r\nout sepsis in those who are seriously ill and in children with a fever of unknown origin.<br />\r\nInterpretation<br />\r\n&lt;0.5 : Low risk for progression to severe systemic infection<br />\r\n&gt;= 0.5 to &lt; 2.0 : Moderate risk for progression to severe systemic infection<br />\r\n&gt;= 2.0 to &lt; 10.0 : High risk for progression to severe systemic infection<br />\r\n&gt;=10.0 : High likelihood of severe sepsis or septic shock<br />\r\nLimitations<br />\r\nProcalcitonin levels in the serum are elevated in a variety of inflammatory conditions, including bacterial infection, malaria, burns, pancreatitis, and<br />\r\ntraumatic injury.<br />\r\nPCT results should be used in conjuction with other data e.g. symptoms, results of other tests and clinical impression<br />\r\nIf the PCT results are inconsistent with clinical evidence, additional testing is recommended.</p>\r\n','','Y','Y','thims','2019-01-30 17:30:00','nilesh','2022-02-12 13:35:09'),(0,0,727,'PROGESTERONE','T0988','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,728,'PROLACTIN','T0989','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,729,'PROTEIN C','T0990','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,730,'PROTEIN ELECTROPHORESIS','T0991','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,731,'PROTEIN WITH A/G RATIO','T0095,T0096,T0097,T0098','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','bhumi','2019-06-07 11:24:46'),(0,0,732,'PS FOR MP','T0993','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,733,'PSA','T0994','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','thims','2019-02-11 11:17:57'),(0,0,734,'PSA PROFILE\n (PSA + FREE PSA+RATIO)','T0995','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,735,'PSA? FREE','T0996','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,736,'PTH, INTACT','T0997','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,737,'PUS ROUTINE EXAMINATION','T0998','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,738,'QUANTIFERON (TB GOLD)','T0999','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,739,'RBC CHOLINESTERASE ACTIVITY','T1000','Y','',0,'','','','<p>Low levels are seen in OP (organophosphate) poisoning. RBC cholinesterase is a beter marker of tocicity than plasma cholinesterase.</p>\r\n\r\n<p>Toxic range:</p>\r\n\r\n<p>Moderate poisoning: RBC cholinesterase levels less than 50% of the lower limit.</p>\r\n\r\n<p>Sever poisoning: RBC cholinesterase levels less than 80 % of lower limit.</p>\r\n','Y','Y','thims','2019-01-30 17:30:00','parthesh','2021-12-13 15:43:19'),(0,0,740,'REVIEW OF 1 SLIDE AND BLOCK\n (200/ADDITIONAL BLOCK AND 100/ADDITIONAL SLIDE)','T1001','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,741,'RIPA (RISTOCETIN INDUCED PLATELET AGGREGATION)','T1002','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,742,'RNA ISOLATION','T1003','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,743,'ROTA VIRUS, STOOL','T1004','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,744,'RPR(RAPID PLASMA REAGIN TEST)','T1005','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,745,'SBB (SUDAN BLACK B) STAIN','T1006','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,746,'SCRUB TYPHUS ANTIBODY','T1007','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','bhumi','2020-02-25 11:08:55'),(0,0,747,'SEMEN ','T1008','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','bhumi','2019-05-29 12:54:27'),(0,0,748,'SEX HORMONES BINDING GLOBULIN (SHBG)','T1009','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,749,'SGOT(AST)','T0088','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','thims','2019-03-09 16:08:58'),(0,0,750,'SGPT(ALT)','T0086','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','thims','2019-03-09 15:56:28'),(0,0,751,'SICKLING TEST','T1012','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,752,'SODIUM(NA+)','T1013','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,753,'SPERM DNA FRAGMENTATION','T1014','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,754,'STERILITY TEST FOR BIOLOGICAL INDICATOR','T1015','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,755,'STERILITY TEST FOR BLOOD PRODUCTS','T1016','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,756,'STERILITY TEST FOR WATER','T1017','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,757,'STONE ANALYSIS BY FTIR TECHNOLOGY','T1018','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,758,'STOOL HANGING DROP FOR VIBRIO CHOLERAE','T1019','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,759,'STOOL OCCULT BLOOD','T1020','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,760,'STRESS CYTOGENETICS (FANCONI ANEMIA)','T1021','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,761,'SUCROSE LYSIS TEST','T1022','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,762,'SYPHILIS ANTIBODY BY CMIA','T1023','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,763,'T3(TRIODOTHYRONINE)','T1024','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,764,'T4 (THYROXINE)','T1025','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,765,'TACROLIMUS','T1026','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,766,'TB GOLD (GAMMA INTERFERON)','T1027','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,767,'TB PCR','T1028','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,768,'TB PCR BY GENE EXPERT','T1029','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,769,'GENEXPERT -TB (PCR)','T1030','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','thims','2019-05-03 11:19:12'),(0,0,770,'TESTOSTERONE, TOTAL','T1031','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,771,'THIO-T/ CONGO STAIN','T1032','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,772,'THROMBIN TIME','T1033','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,773,'THYROID STIMULATING IMMUNOGLOBULIN (TSI)','T1034','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,774,'THYROXINE-BINDING GLOBULIN (TBG) LEVEL','T1035','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,775,'TIBC(TOTAL IRON BINDING CAPACITY)','T1036','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,776,'TIG LGA','T1037','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,777,'TIG LGG','T1038','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,778,'TORCH COMPLEXIGG & LGM ANTIBODIES EVALUATION (10 PARAMETERS) (TOXO LGG/LGM , RUB LGG/LGM/CMV IGG/LGM, HSV1 LGG/LGM,HSV2 LGG/LGM)','','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','bhumi','2019-03-11 10:30:55'),(0,0,779,'TORCH COMPLEXIGG & LGM ANTIBODIES EVALUATION\n (8 PARAMETERS) (TOXD IGG/LGM,\n RUB LGG/IGM/CMV LGG/LGM, HSV2 LGG/LGM)','','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,780,'TORCH IGG (5 PARAMETERS) (TOXD IGG, RUB IGG,CMV IGG, HSV 1 IGG,HSV2 IGG)','','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,781,'TORCH LGM ANTIBODIES (5PARAMETERS) (TOXO LGM, RUB LGM,CMV LGM ,HSV1 LGM, HSV2 LGM)','','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,782,'TOTAL CHOLESTEROL','T0216','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','thims','2019-03-26 17:10:53'),(0,0,783,'TPHA','T1044','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,784,'TPHA BY CARD','T1045','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,785,'TRANSFERRIN SATURATION','T1046','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,786,'TRIGLYCERIDE','T1047','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,787,'TROPONIN T QUANTITATIVE','T1048','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','nilesh','2022-02-03 13:02:11'),(0,0,788,'TSH (THYROID STIMULATING HORMONE)','T1049','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,789,'TSH RECEPTOR AB (TREAB)','T1050','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,790,'TYPHIDOT','T0292,T0291','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','bhumi','2019-05-07 16:01:46'),(0,0,791,'UBJ PROTEIN','T1052','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,792,'UBJ PROTEIN','T1053','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,793,'UIBC','T1054','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,794,'UNCONJUGATED( E3)','T1055','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,795,'UNSTABLE HB','T1056','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,796,'UREA','T0076','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','thims','2019-03-09 14:50:28'),(0,0,797,'URIC ACID','T0092','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','thims','2019-03-09 14:54:05'),(0,0,798,'URINE ALBUMIN','T1059','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,799,'URINE CALCIUM (RANDOM)','T1060','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,800,'URINE CALCIUM / CREAT RATIO','T1061','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','bhumi','2019-06-22 14:02:52'),(0,0,801,'URINE CHLORIDE\n (WITH CREATININE RATIO)','T1062','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,802,'URINE COLOR TEST FOR COMMON DRUGS (SCREEN-1)','T1063','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,803,'URINE CREATININE','T1064','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,804,'URINE DELTA-AMINOLEVULINIC ACID (ALA)','T1065','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,805,'URINE DRUG (26 DRUGS) SCREENING (BY TOXILAB A)','T1066','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,806,'URINE DRUG SCREEN (9 DRUGS)','T1067','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,807,'URINE DRUG SCREEN ? BENZODIAZEPINE','T1068','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,808,'URINE DRUG SCREEN ? COCAINE/BENZOYLECGONINE','T1069','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,809,'URINE DRUG SCREEN ? METHADONE','T1070','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,810,'URINE DRUG SCREEN ? METHAMPHETAMINE','T1071','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,811,'URINE DRUG SCREEN ? OPIATES/MORPHINE','T1072','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,812,'URINE DRUG SCREEN  MARIJUANA','T1073','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,813,'URINE DRUG SCREEN  TETRA HYDRO CANNABINOL','T1074','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,814,'URINE DRUG SCREEN\n ? PHENCYCLIDINE','T1075','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,815,'URINE DRUG SCREEN? AMPHETAMINE?','T1076','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,816,'URINE DRUG SCREEN? BARBITURATE','T1077','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,817,'URINE ELECTROLYTES (WITH CREATININE RATIO)','T1078','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,818,'URINE FOR PHASE CONTRAST MICROSCOPY','T1079','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,819,'URINE FOR PROTEIN ELECTROPHORESIS','T1080','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,820,'URINE FOR REDUCING SUBSTANCES','T1081','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,821,'URINE FOR SPECIFIC GRAVITY','T1082','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,822,'URINE HEMOGLOBIN','T1083','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,823,'URINE HEMOSIDERIN','T1084','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,824,'URINE MANGNESIUM','T1085','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,825,'URINE MYOGLOBULIN','T1086','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,826,'URINE PH','T1087','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,827,'URINE PHENOL','T1088','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,828,'URINE PHOSPHORUS CREATININE RATIO','T1089','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,829,'URINE PHOUSPOROUS','T1090','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,830,'URINE PORPHOBILINOGEN','T1091','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,831,'URINE PORPHOBILINOGEN','T1092','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,832,'URINE POTIASIUM\n (WITH CREATININE RATIO)','T1093','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,833,'URINE PROTEIN','T1094','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,834,'URINE PROTEIN /CREAT RATIO','T1095','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','bhumi','2019-02-18 12:56:47'),(0,0,835,'URINE SODIUM (WITH CREATININE RATIO)','T1096','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,836,'URINE UREA','T1097','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,837,'URINE UREA NITROGEN','T1098','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,838,'URINE URIC ACID','T1099','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,839,'URINE UROBILINOGEN','T1100','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,840,'URINE UROBILINOGEN','T1101','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,841,'VALPROIC ACID (SODIUM VALPORATE)','T1102','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,842,'VARICELLA ZOSTER IGG','T1103','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','poojapatel','2021-10-21 11:01:03'),(0,0,843,'VARICELLA ZOSTER IGM','T1104','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','poojapatel','2021-10-21 11:01:18'),(0,0,844,'VITAMIN D','T0155','Y','',0,'','','','','Y','N','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,845,'VITEK IDENTIFICATION','T1106','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,846,'VITEK IDENTIFICATION AND SENSITIVITY','T1107','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,847,'VITEK SENSITIVITY','T1108','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,848,'VON WILLEBRAND FACTOR\n STUDY (AG, ACTIVITY, ACTIVITY/AG RATIO)','','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,849,'WEIL FELIX TEST','T1110','Y','',0,'','','','','Y','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,850,'WIDAL','T1111','Y','',0,'','','','','N','Y','thims','2019-01-30 17:30:00','','0000-00-00 00:00:00'),(0,0,851,'LOH','T1112','Y','',0,'','','','','Y','Y','thims','2019-02-01 11:16:43','thims','2019-02-01 11:17:02'),(0,0,852,'RETICULOCYTE COUNT','T0010','Y','',0,'','','','','Y','Y','thims','2019-02-01 11:28:14','thims','2019-02-01 11:28:30'),(0,0,853,'PT','T1114','Y','',0,'','','','','Y','Y','thims','2019-02-01 12:04:07','thims','2019-02-01 12:05:50'),(0,0,854,'PRL(PROLACTIN)','T1115','Y','',0,'','','','','Y','Y','thims','2019-02-01 12:20:50','suraj','2021-07-15 12:43:18'),(0,0,855,'G6PDOUANTITATIVE','T1116','Y','',0,'','','','','Y','Y','thims','2019-02-01 12:24:30','thims','2019-02-01 12:26:58'),(0,0,856,'OSMOTIC FRAGILITY TEST','T1117','Y','',0,'','','','','Y','Y','thims','2019-02-01 12:28:48','thims','2019-02-01 12:29:11'),(0,0,857,'HAEMOGLOBINURIA','T1118','Y','',0,'','','','','Y','Y','thims','2019-02-01 12:33:45','thims','2019-02-01 12:34:05'),(0,0,858,'FBS - PPBS','T0109,T0266,T0112,T0268','Y','',0,'','','','','N','Y','bhumi','2019-02-01 13:08:25','bhumi','2019-03-19 16:52:38'),(0,0,859,'RFT','T0092,T0077,T0076','Y','',0,'','','','','Y','Y','bhumi','2019-02-01 15:25:56','bhumi','2019-02-01 15:31:34'),(0,0,860,'LFT','T0080,T0082,T0083,T0086,T0088,T0430,T0095,T0096,T0097,T0098','Y','',0,'','','','','Y','Y','bhumi','2019-02-01 15:32:47','suraj','2021-10-05 10:42:16'),(0,0,861,'PURCHASE_ORDER_HEADER','','Y','',0,'','','','','N','Y','thims','2019-02-01 15:45:05','','0000-00-00 00:00:00'),(0,0,862,' PROTEIN WITH A:G','T1119','Y','',0,'','','','','Y','Y','thims','2019-02-01 15:47:57','thims','2019-02-01 15:48:42'),(0,0,863,'IMMUNOGLOBU LINS','T1120','Y','',0,'','','','','Y','Y','thims','2019-02-01 16:22:30','thims','2019-02-01 16:22:56'),(0,0,864,'B2 MICROGLOBULIN','T1121','Y','',0,'','','','','N','Y','thims','2019-02-01 16:25:09','thims','2019-02-01 16:25:27'),(0,0,865,'BM BIOPSY','T1122','Y','',0,'','','','','Y','Y','thims','2019-02-01 16:29:29','thims','2019-02-01 16:29:53'),(0,0,866,'RETIC','T1123','Y','',0,'','','','','Y','Y','thims','2019-02-01 16:47:03','thims','2019-02-01 16:47:18'),(0,0,867,'ACA166 & LGM','T1124','Y','',0,'','','','','Y','Y','thims','2019-02-01 16:52:24','thims','2019-02-01 16:52:49'),(0,0,868,'B2GLYCOPROTEIN-1166 & LGM','T1125','Y','',0,'','','','','Y','Y','thims','2019-02-01 16:55:34','thims','2019-02-01 16:56:00'),(0,0,869,'PROTEIN C','','Y','',0,'','','','','N','Y','thims','2019-02-01 17:00:04','','0000-00-00 00:00:00'),(0,0,870,'MTHFR & PROTHROMBIN','T1127','Y','',0,'','','','','Y','Y','thims','2019-02-01 17:12:08','thims','2019-02-01 17:12:31'),(0,0,871,'HCG E3UN','T1128','Y','',0,'','','','','Y','Y','thims','2019-02-01 17:54:05','thims','2019-02-01 17:54:22'),(0,0,872,'CBC WITH SMEAR STUDY','','Y','',0,'','','','','N','Y','thims','2019-02-04 15:58:49','','0000-00-00 00:00:00'),(0,0,873,'CRP','T0308','Y','',0,'','','','','Y','Y','bhumi','2019-02-05 16:52:37','bhumi','2019-02-05 16:53:32'),(0,0,874,'SERUM TOTAL PROTEIN','T0095','Y','',0,'','','','','Y','Y','bhumi','2019-02-06 10:19:50','bhumi','2019-02-06 10:20:48'),(0,0,875,'RA FACTOR','T0185','Y','',0,'','','','','Y','Y','bhumi','2019-02-07 12:00:36','bhumi','2019-04-30 17:12:04'),(0,0,876,'URINE PROTEIN/CREATININE RATIO','','Y','',0,'','','','','N','Y','bhumi','2019-02-18 12:55:16','','0000-00-00 00:00:00'),(0,0,877,'SERUM IGE','T1132','Y','Normal',0,'','','','','Y','Y','thims','2019-02-21 12:36:30','bhumi','2019-02-21 16:40:52'),(0,0,878,'HBSAG BY ELISA','T1134','Y','',0,'','','','','Y','Y','bhumi','2019-03-05 12:05:59','suraj','2021-08-02 11:20:49'),(0,0,879,'TISSUE TRANSGLUTAMINASE IGA (TTIGA)','T1135','Y','',0,'','(By Chorus Trio, ELISA)','','','Y','Y','bhumi','2019-03-12 12:14:17','bhumi','2019-03-13 10:27:25'),(0,0,880,'SERUM IGA','T1136','Y','',0,'','(Immunoturbidometry)','','','Y','Y','bhumi','2019-03-12 12:33:04','bhumi','2019-03-13 10:25:29'),(0,0,881,'AMMONIA','T0316','Y','',0,'','','','','Y','Y','bhumi','2019-03-14 13:41:23','bhumi','2019-03-14 13:41:41'),(0,0,882,'CD8 COUNT','T1138','Y','',0,'','','','','Y','Y','bhumi','2019-03-16 17:24:23','bhumi','2019-03-16 17:24:45'),(0,0,883,'PRE-OP. MAJOR ','T0573,T0173,T0041,T0086,T0077,T0764,T0775,T0289,T0670,T0234','Y','',0,'','','','','N','N','bhumi','2019-03-23 10:48:57','parthesh','2021-12-29 11:28:11'),(0,0,884,'SERUM IGG','T1139','Y','',0,'','','','','Y','Y','bhumi','2019-03-27 10:46:14','bhumi','2019-03-27 10:48:06'),(0,0,885,'HBA2(HEMOGLOBIN A2)','T1140','Y','',0,'','','','','Y','Y','bhumi','2019-03-28 09:49:43','bhumi','2019-03-28 09:50:10'),(0,0,886,'ANTI HCV AB','T1141','Y','',0,'','','','','Y','Y','bhumi','2019-04-01 16:49:13','bhumi','2019-04-01 16:49:31'),(0,0,887,'CA - 125','T0157','Y','Normal',0,'','','','','Y','Y','thims','2019-04-04 10:55:15','thims','2019-04-04 10:55:42'),(0,0,888,'S.Albumin','T0096','Y','',0,'','','','','Y','Y','thims','2019-04-09 14:17:45','suraj','2021-10-16 09:29:40'),(0,0,889,'GANGLIOSIDE GQ1B ANTIBODY, IGG','T1142','Y','',0,'','','','','Y','Y','bhumi','2019-04-19 15:38:21','bhumi','2019-04-19 15:39:12'),(0,0,890,'MIX ALLERGY PROFILE (FOOD,INHALANT,DRUGS)','T1143','Y','',0,'','','','','Y','Y','bhumi','2019-04-20 11:53:35','bhumi','2019-04-20 11:54:07'),(0,0,891,'ANTI-MUSK ANTIBODY','T1144','Y','',0,'','','','','Y','Y','bhumi','2019-04-22 17:53:39','thims','2019-04-22 18:16:33'),(0,0,892,'DOUBLE MARKER TEST','T0722,T0985','Y','',0,'','','','','Y','Y','bhumi','2019-04-25 12:04:05','bhumi','2019-04-25 12:04:36'),(0,0,893,'AMH (ANTI MULLERIAN HORMONE)','T0315','Y','Normal',0,'','','','','Y','Y','THIMS','2019-04-30 17:11:01','bhumi','2019-05-21 16:48:36'),(0,0,894,'IMMUNOHISTOCHEMISTRY','T1146','Y','',0,'','','','','Y','Y','bhumi','2019-05-02 12:57:33','bhumi','2019-05-02 12:57:51'),(0,0,895,'CALCIUM PHOSPHATE','T1147','Y','',0,'','','','','N','Y','bhumi','2019-05-04 12:14:10','bhumi','2019-05-04 12:14:35'),(0,0,896,'BACTERIAL CULTURE AND SENSITIVITY','T1148','Y','',0,'','','','','N','Y','bhumi','2019-05-09 14:16:14','bhumi','2019-05-09 14:16:44'),(0,0,897,'ANTI HAV ANTIBODY (IGM)','T1149','Y','',0,'','','','','Y','Y','bhumi','2019-05-17 13:04:14','bhumi','2019-05-17 13:04:46'),(0,0,898,'ANTI HEV ANTIBODY (IGM)','T1150','Y','',0,'','','','','Y','Y','bhumi','2019-05-17 13:05:09','bhumi','2019-05-17 13:05:59'),(0,0,899,'ANTI HEV ANTIBODY (IGG)','T1151','Y','',0,'','','','','Y','Y','bhumi','2019-05-17 13:05:34','bhumi','2019-05-17 13:06:30'),(0,0,900,'ZINC (ZN)','T1152','Y','',0,'','','','','Y','Y','bhumi','2019-05-22 10:44:29','bhumi','2019-05-22 10:45:05'),(0,0,901,'PLASMA RENIN ACTIVITY','T1153','Y','',0,'','','','','Y','Y','bhumi','2019-05-28 18:01:14','thims','2019-05-29 12:51:34'),(0,0,902,'PLASMA ALDOSTERON','T1154','Y','',0,'','','','','N','Y','bhumi','2019-05-28 18:02:20','bhumi','2019-05-28 18:02:57'),(0,0,903,'PLASMA ALDOSTERON/RENIN RATIO','T1155','Y','',0,'','','','','Y','Y','bhumi','2019-05-28 18:03:23','bhumi','2019-05-28 18:03:36'),(0,0,904,'IG E SPECIFIC FOR ASPERGILLUS','T1156','Y','',0,'','','','','Y','Y','bhumi','2019-05-30 17:38:42','bhumi','2019-05-30 17:39:14'),(0,0,905,'SPUTUM EXAMINATION (R/M)','','Y','',0,'','','','','N','Y','bhumi','2019-06-03 10:41:27','','0000-00-00 00:00:00'),(0,0,906,'AUTOIMMUNE PANEL FOR ENCEPHALITIS','T1158','Y','',0,'','','','','Y','Y','bhumi','2019-06-05 11:05:30','bhumi','2019-06-05 11:06:53'),(0,0,907,'FNAC','T1159','Y','',0,'','','','','Y','Y','bhumi','2019-06-07 18:00:48','bhumi','2019-06-07 18:01:04'),(0,0,908,'RUBELLA IGG','T0145','Y','Normal',0,'','','','','Y','Y','thims','2019-06-08 17:16:14','thims','2019-06-08 17:16:51'),(0,0,909,'HIV 1&2 BY CMIA','T1160','Y','',0,'','','','','Y','Y','bhumi','2019-06-15 17:55:12','bhumi','2019-06-15 17:55:57'),(0,0,910,'HBSAG BY CMIA','T1161','Y','',0,'','','','','Y','Y','bhumi','2019-06-15 17:55:26','bhumi','2019-06-15 17:56:12'),(0,0,911,'TPHA BY CLIA','T1162','Y','',0,'','','','','Y','Y','bhumi','2019-06-15 17:55:40','bhumi','2019-06-15 17:57:04'),(0,0,912,'PRE-OP DAY CARE','T0573,T0173,T0775,T0763,T0289,T0041','Y','Normal',0,'','','','','N','Y','thims','2019-06-18 11:01:09','thims','2019-06-18 11:10:21'),(0,0,913,'GLUCOSE TOLERANCE TEST','T0109,T1165,T1166','Y','',0,'','','','','Y','Y','bhumi','2019-06-18 11:09:29','bhumi','2019-06-19 11:07:18'),(0,0,914,'HIV Ab/Ag combi(CLIA)','T1164','Y','',0,'','','','','Y','Y','bhumi','2019-06-18 11:57:36','drashish','2022-12-26 18:32:04'),(0,0,915,'BLOOD CULTURE FOR FUNGUS','T1167','Y','',0,'','','','','Y','Y','bhumi','2019-06-20 12:53:02','bhumi','2019-06-20 12:53:45'),(0,0,916,'SPINO-CEREBELLAR ATAXIA PANEL','T1168','Y','',0,'','','','','Y','Y','bhumi','2019-06-22 18:10:33','bhumi','2019-06-22 18:10:49'),(0,0,917,'TEST FOR DMD(DUCHENNE MUSCULAR DYSTROPHY)(26 EXON)','T1169','Y','',0,'','','','','Y','Y','bhumi','2019-07-01 16:00:47','bhumi','2019-07-06 12:02:03'),(0,0,918,'URINE MICROALBUMIN (RANDOM) ','T1170','Y','',0,'','','','','Y','Y','bhumi','2019-07-04 14:16:32','bhumi','2019-07-04 14:17:25'),(0,0,919,'TEST FOR DMD(DUCHENNE MUSCULAR DYSTROPHY)(79 EXON)','T1171','Y','',0,'','','','','Y','Y','bhumi','2019-07-06 12:03:38','bhumi','2019-07-06 12:04:32'),(0,0,920,'FREE KAPPA AND LAMDA RATIO','T1172','Y','',0,'','','','','N','Y','bhumi','2019-07-13 18:22:05','bhumi','2019-07-13 18:22:31'),(0,0,921,'HBC AG','T1173','Y','',0,'','','','','N','Y','bhumi','2019-07-16 17:59:09','bhumi','2019-07-16 18:00:02'),(0,0,922,'CA 19.9','T0158','Y','',0,'','','','','Y','Y','bhumi','2019-07-17 17:33:28','parthesh','2021-12-31 16:09:35'),(0,0,923,'1,25-DIHYDROXYCHOLECALCIFEROL(CALCITRIOL)','T1174','Y','',0,'','','','','Y','Y','bhumi','2019-07-22 10:37:01','bhumi','2019-07-22 10:37:23'),(0,0,924,'URINE SODIUM (RANDOM)','T1175','Y','',0,'','','','','Y','Y','bhumi','2019-07-25 10:26:19','bhumi','2019-07-25 10:26:44'),(0,0,925,'PLATELET COUNT','T0009','Y','',0,'','','','','Y','Y','bhumi','2019-08-06 11:45:32','bhumi','2019-08-06 11:45:53'),(0,0,926,'EMPLOYEE HEALTH PACKAGE','T0573','Y','Normal',0,'','','','','N','Y','vishal','2019-08-06 12:41:19','bhumi','2019-08-06 12:49:25'),(0,0,927,'DENGUE NS1 BY ELISA','T1176','Y','',0,'','','','','Y','Y','bhumi','2019-08-28 14:06:43','bhumi','2019-08-28 14:07:14'),(0,0,928,'DENGUE IGM BY ELISA','T1177','Y','',0,'','','','','Y','Y','bhumi','2019-08-28 14:07:28','bhumi','2019-08-28 14:07:43'),(0,0,929,'DENGUE IGG BY ELISA','T1178','Y','',0,'','','','','Y','Y','bhumi','2019-08-28 14:07:55','bhumi','2019-08-28 14:08:12'),(0,0,930,'AFB CULTURE','T1179','Y','',0,'','','','','Y','Y','bhumi','2019-09-03 10:53:06','bhumi','2019-09-03 10:53:17'),(0,0,931,'AMYLASE (BODY FLUID)','T1180','Y','',0,'','','','','Y','Y','bhumi','2019-09-04 16:18:57','bhumi','2019-09-04 16:19:10'),(0,0,932,'LIPASE (BODY FLUID)','T1181','Y','',0,'','','','','Y','Y','bhumi','2019-09-04 16:19:25','bhumi','2019-09-04 16:19:39'),(0,0,933,'IUI(SEMEN PREPARATION)','T1182','Y','',0,'','','','','Y','Y','bhumi','2019-09-06 12:45:05','bhumi','2019-09-06 12:45:18'),(0,0,934,'IMMUNOFIXATION','','Y','',0,'','','','','N','Y','bhumi','2019-09-10 12:59:32','','0000-00-00 00:00:00'),(0,0,935,'LAPTOSPIRA IGM','T1184','Y','',0,'','','','','N','Y','suraj','2019-09-18 10:19:13','suraj','2019-09-18 10:19:34'),(0,0,936,'AFB SENSITIVITY 1ST LINE DRUGS','T1185','Y','',0,'','','','','Y','Y','bhumi','2019-09-19 11:58:02','bhumi','2019-09-19 11:58:48'),(0,0,937,'AFB SENSITIVITY 2ND LINE DRUGS','T1186','Y','',0,'','','','','Y','Y','bhumi','2019-09-19 11:58:26','bhumi','2019-09-19 11:59:00'),(0,0,938,'S.PHENYTOIN','T1187','Y','',0,'','','','','Y','Y','bhumi','2019-09-21 12:08:03','bhumi','2019-09-21 12:08:22'),(0,0,939,'H1N1 FOR SWINE FLU','T1188','Y','',0,'','','','','Y','Y','bhumi','2019-09-23 11:00:26','bhumi','2019-09-23 11:00:39'),(0,0,940,'IMMATURE PLATELET FRACTION (IPF)','T1189','Y','',0,'','','','','Y','Y','bhumi','2019-09-25 10:15:39','bhumi','2019-09-25 10:15:52'),(0,0,941,'VITAMIN A','T1190','Y','',0,'','','','','Y','Y','bhumi','2019-09-25 12:51:14','bhumi','2019-09-25 12:51:27'),(0,0,942,'HIV PVL QUANTITATIVE BY COBAS TECHMAN','T1191','Y','',0,'','','','','Y','Y','bhumi','2019-10-09 14:47:53','thims','2019-10-09 14:56:39'),(0,0,943,'URINE MICROALBUMIN','T1170','Y','',0,'','','','','N','Y','bhumi','2019-10-09 15:01:10','bhumi','2019-10-09 15:01:53'),(0,0,944,'MOTT PANNEL (SPECIES IDENTIFICATION AND DRUG SENS)','T1193','Y','',0,'','','','','Y','Y','bhumi','2019-10-10 17:15:02','bhumi','2019-10-10 17:15:16'),(0,0,945,'ANTI GAD ANTIBODY FOR PARANEOPLASTIC SYNDROME','T1194','Y','',0,'','','','','Y','Y','bhumi','2019-10-19 15:25:42','bhumi','2019-10-19 15:25:54'),(0,0,946,'AVIAN ANTIGEN PANEL FOR HP','T1195','Y','',0,'','','','','Y','Y','bhumi','2019-10-19 15:34:15','bhumi','2019-10-19 15:34:37'),(0,0,947,'RAST (RADIOALLERGOSORBENT TEST)','T1196','Y','',0,'','','','','N','Y','bhumi','2019-10-25 12:20:13','bhumi','2019-10-25 12:20:28'),(0,0,948,'GYANSATRA SILVER PACKAGE','','Y','Normal',0,'','','','','N','Y','vishal','2019-10-30 11:27:12','','0000-00-00 00:00:00'),(0,0,949,'LYME SEROLOGY FOR BORRELIA (IGM,IGG)','T1199','Y','',0,'','','','','Y','Y','bhumi','2019-11-19 17:10:37','bhumi','2019-11-19 17:20:34'),(0,0,950,'THROMBOPHILIA PROFILE','T1200','Y','',0,'','','','','Y','Y','bhumi','2019-11-21 10:47:37','vishal','2019-11-21 10:58:13'),(0,0,951,'BRCA1 & BRCA2','T1203','Y','',0,'','','','','Y','Y','bhumi','2019-11-26 14:12:09','bhumi','2019-11-26 14:13:15'),(0,0,952,'RENAL BIOPSY FOR IF','T1204','Y','',0,'','','','','Y','Y','bhumi','2019-12-24 15:14:38','bhumi','2019-12-24 15:14:50'),(0,0,953,'LACTATE-CSF','T0815','Y','',0,'','','','','N','Y','bhumi','2019-12-26 11:05:55','bhumi','2019-12-26 11:06:26'),(0,0,954,'IGG SPECIFIC FOR ASPERGILUS','T1206','Y','',0,'','','','','Y','Y','bhumi','2019-12-30 12:07:53','bhumi','2019-12-30 12:08:31'),(0,0,955,'GIEMSA STAIN','T1207','Y','',0,'','','','','Y','Y','bhumi','2020-01-01 11:18:20','bhumi','2020-01-01 11:18:38'),(0,0,956,'CBC WITH ESR','T1209','Y','Normal',0,'','','','','Y','Y','vishal','2020-01-13 14:45:33','vishal','2020-01-13 14:45:56'),(0,0,957,'HBA1C','T0140','Y','Normal',0,'','','','','Y','Y','vishal','2020-01-13 15:07:23','vishal','2020-01-13 15:08:25'),(0,0,958,'S.BILIRUBIN DIRECT','T0082','Y','Normal',0,'','','','','Y','Y','vishal','2020-01-13 15:20:52','vishal','2020-01-13 15:21:56'),(0,0,959,'S.BILIRUBIN INDIRECT','T0083','Y','Normal',0,'','','','','Y','Y','vishal','2020-01-13 15:21:02','vishal','2020-01-13 15:21:26'),(0,0,960,'ALBUMIN / BILIRUBIN RATIO','','Y','Normal',0,'','','','','Y','Y','vishal','2020-01-13 15:24:01','','0000-00-00 00:00:00'),(0,0,961,'CHLAMYDIAL ANTIBODIES(IGM&IGG)','T1212','Y','',0,'','','','','Y','Y','bhumi','2020-01-24 11:52:36','bhumi','2020-01-24 11:52:53'),(0,0,962,'TRIPLE MARKER TEST','T1213','Y','',0,'','','','','Y','Y','bhumi','2020-02-04 17:50:56','bhumi','2020-02-04 17:51:07'),(0,0,963,'FILARIAL ANTIGEN DETECTION','T1214','Y','',0,'','','','','Y','Y','Bhumi','2020-03-14 17:51:42','Bhumi','2020-03-14 17:51:57'),(0,0,964,'STOOL CALPROTECTIN','T1215','Y','',0,'','','','','N','Y','suraj','2020-03-19 12:34:34','suraj','2020-03-19 12:34:46'),(0,0,965,'IGG4 SUBCLASS','T1216','Y','',0,'','','','','Y','Y','suraj','2020-03-21 13:44:31','suraj','2020-03-21 13:44:50'),(0,0,966,'ANTIFUNGAL SENSITIVITY BY VITAC','T1217','Y','',0,'','','','','Y','Y','suraj','2020-03-23 15:42:32','suraj','2020-03-23 15:43:08'),(0,0,967,'COVID-19 TEST (BY RT PCR)','T1218','Y','',0,'','','','','Y','Y','nilesh','2020-04-21 11:38:43','Parth','2020-04-21 15:15:05'),(0,0,968,'APLA PROFILE','T1219','Y','',0,'','','','','Y','Y','suraj','2020-05-20 16:07:44','suraj','2020-05-20 16:08:01'),(0,0,969,'ALUMINIUM','T1220','Y','',0,'','','','','Y','Y','suraj','2020-05-22 12:42:17','suraj','2020-05-22 12:42:28'),(0,0,970,'FOSFOMYCIN SENSITIVITY','T1222','Y','',0,'','','','','N','Y','Bhumi','2020-06-16 17:00:58','Bhumi','2020-06-16 17:01:14'),(0,0,971,'CEFTAZIDIME AVIBACTAM SENSITIVITY','T1223','Y','',0,'','','','','N','Y','Bhumi','2020-06-16 17:01:41','Bhumi','2020-06-16 17:01:57'),(0,0,972,'NOR METANEPHRINE(FREE PLASMA)','T1221','Y','',0,'','','','','N','Y','Bhumi','2020-06-16 17:02:18','Bhumi','2020-06-16 17:02:34'),(0,0,973,'INTERLEUKIN 6(IL 6)','T1224','Y','',0,'','','<p>Interleukin-6 (IL-6) is a mediator of the immune system, which has a wide variety of biological actions. Many<br />\r\ndifferent cells are capable of IL-6 synthesis including monocytes/ macrophages, fibroblasts, endothelial cells,<br />\r\nkeratinocytes, mast cells, T cells and many tumor cell lines.<br />\r\n1. IL-6 is an early indicator of inflammatory response to illness or injury. It rises within hours of substantial<br />\r\nInjury or infection. With a half-life of 45 minutes, IL-6 can be monitored to reveal if a patient is suffering an<br />\r\nacute response to surgery, trauma, or infection, and if the response is waning slowly or rapidly, which can<br />\r\nhelp to predict the patient&#39;s risks and prognosis.<br />\r\n2. Patients with severe covid 19 could be at risk for cytokine storm syndrome, therefore cytokine tests<br />\r\nparticularly IL-6 should be used to assess severe patients suspected to hyperinflammation.<br />\r\n3. IL-6 can help to predict infection at the onset of a new fever before microbiological culture results are<br />\r\navailable and can alert the clinician that the patient has a greater postsurgical sepsis risk before other signs<br />\r\nand symptoms appear.<br />\r\n4. IL-6 levels can help predict if a patient with hospital-acquired pneumonia is likely to progress to septic<br />\r\nshock.<br />\r\n5. Elevated IL-6 can indicate late-onset neonatal sepsis 1-2 days before sepsis manifests clinically.<br />\r\n6. IL-6 levels is useful in patients with suspected chronic inflammatory disorders, such as rheumatoid arthritis,<br />\r\nsystemic lupus erythematosus, ankylosing spondylitis, or inflammatory bowel disease<br />\r\nSample is stable at room temperature for only eight hours, after that can be stored at 2-8 C for 48 hours.<br />\r\nIn case of abnormally high result which can not be correlated clinically please repeat with fresh sample to<br />\r\nrule out preanalytical error as it is a labile parameter.</p>\r\n','','Y','Y','Bhumi','2020-06-22 12:15:17','nilesh','2021-05-10 15:38:46'),(0,0,974,'BETA-D-GLUCAN (BDG)','T1225','Y','',0,'','','','','Y','Y','suraj','2020-07-28 13:00:27','suraj','2020-07-28 13:00:48'),(0,0,975,'24HR URINE METABOLIC WORK UP','T1226','Y','',0,'','','','','Y','Y','suraj','2020-07-28 16:17:54','suraj','2020-07-28 16:18:17'),(0,0,976,'HCV VIRAL LOAD','T1227','Y','',0,'','','','','Y','Y','nilesh','2020-07-31 15:09:04','nilesh','2020-07-31 15:09:17'),(0,0,977,'URINE TOXIN EXAMINATION','T1228','Y','',0,'','','','','Y','Y','suraj','2020-10-17 17:23:18','suraj','2020-10-17 17:23:31'),(0,0,978,'COVID 19 (IGG)ANTIBODY TESTING','T1229','Y','',0,'','','','','Y','Y','nilesh','2020-11-03 17:38:15','nilesh','2020-11-03 17:38:33'),(0,0,979,'HCV BY ELISA','T1230','Y','Normal',0,'','','','','Y','Y','yatin','2021-03-27 14:25:23','parthesh','2021-12-29 15:11:08'),(0,0,980,'ALLERGY TEST DRUG(ALLERGY PROFILE)','T1234','Y','Normal',0,'','','','','N','Y','suraj','2021-08-04 12:19:35','suraj','2021-08-04 12:20:00'),(0,0,981,'CULTURE AND SENSTIVITY TT ( TRACHEOSTOMY SECRETION','T1233','Y','Normal',0,'','','','','Y','Y','suraj','2021-08-05 16:51:54','suraj','2021-08-05 16:52:46'),(0,0,982,'BODY FLUID ROUTINE MICRO EXAMINATION','','Y','Normal',0,'','','','','Y','N','suraj','2021-08-05 17:01:51','suraj','2021-08-05 17:44:42'),(0,0,983,'BAL FLUID ROUTINE MICRO EXAMINATION','T1237','Y','Normal',0,'','','','','N','Y','suraj','2021-08-05 17:16:07','suraj','2021-08-05 17:19:06'),(0,0,984,'BAL FLUID CYTOLOGY','T1238','Y','Normal',0,'','','','','Y','Y','suraj','2021-08-05 17:21:44','suraj','2021-08-05 17:42:45'),(0,0,985,'BODY FLUID ROUTINE MICRO EXAMINATION','T1239','Y','Normal',0,'','','','','Y','Y','suraj','2021-08-05 17:28:13','suraj','2021-08-05 17:45:45'),(0,0,986,'BAL FLUID CYTOLOGY WITH BLOCK PREPRATION','T1240','Y','Normal',0,'','','','','N','Y','suraj','2021-08-05 17:34:39','suraj','2021-08-05 17:35:11'),(0,0,987,'CULTURE AND SENSITIVITY BODY FLUID ','T1241','Y','',0,'','','','','Y','Y','suraj','2021-08-05 17:46:44','suraj','2021-08-05 17:47:10'),(0,0,988,'BODY FLUID CYTOLOGY','T1242','Y','',0,'','','','','Y','Y','suraj','2021-08-05 17:47:58','suraj','2021-08-05 17:49:01'),(0,0,989,'BODY FLUID CYTOLOGY WITH CELL BLOCK PREPARATION','T1243','Y','',0,'','','','','Y','Y','suraj','2021-08-05 17:49:36','suraj','2021-08-05 17:50:00'),(0,0,990,'DRAIN FLUID ROUTINE MICRO EXAMINATION','T1244','Y','',0,'','','','','Y','Y','suraj','2021-08-05 17:50:51','suraj','2021-08-05 17:51:15'),(0,0,991,'CULTURE AND SENSITIVITY DRAIN FLUID ','T1245','Y','',0,'','','','','Y','Y','suraj','2021-08-05 17:56:26','suraj','2021-08-05 17:57:04'),(0,0,992,'DRAIN FLUID CYTOLOGY','T1246','Y','',0,'','','','','Y','Y','suraj','2021-08-05 18:01:55','suraj','2021-08-05 18:02:29'),(0,0,993,'DRAIN FLUID CYTOLOGY WITH CELL BLOCK PREPARATION','T1247','Y','',0,'','','','','Y','Y','suraj','2021-08-05 18:03:16','suraj','2021-08-05 18:03:46'),(0,0,994,'PLEURAL FLUID ROUTINE AND MICRO EXAMINATION','T1248','Y','',0,'','','','','Y','Y','suraj','2021-08-05 18:04:43','suraj','2021-08-05 18:05:24'),(0,0,995,'CULTURE AND SENSITIVITY PLEURAL FLUID ','T1249','Y','',0,'','','','','Y','Y','suraj','2021-08-05 18:06:00','suraj','2021-08-05 18:06:52'),(0,0,996,'PLEURAL FLUID CYTOLOGY','T1251','Y','',0,'','','','','N','Y','suraj','2021-08-05 18:07:59','suraj','2021-08-05 18:08:29'),(0,0,997,'PLEURAL FLUID CYTOLOGY WITH CELL BLOCK PREPARATION','T1252','Y','',0,'','','','','Y','Y','suraj','2021-08-05 18:08:55','suraj','2021-08-05 18:09:28'),(0,0,998,'ASCITIC FLUID ROUTINE MICRO EXAMINATION','T1253','Y','',0,'','','','','Y','Y','suraj','2021-08-05 18:09:59','suraj','2021-08-05 18:10:32'),(0,0,999,'CULTURE AND SENSITIVITY ASCITIC FLUID ','T1254','Y','',0,'','','','','Y','Y','suraj','2021-08-05 18:10:58','suraj','2021-08-05 18:11:30'),(0,0,1000,'ASCITIC FLUID CYTOLOGY','T1255','Y','',0,'','','','','Y','Y','suraj','2021-08-05 18:12:11','suraj','2021-08-05 18:12:35'),(0,0,1001,'ASCITIC FLUID CYTOLOGY WITH CELL BLOCK PREPARATION','T1256','Y','Normal',0,'','','','','Y','Y','suraj','2021-08-05 18:13:24','suraj','2021-08-05 18:13:48'),(0,0,1002,'HLA B 27 BY PCR','T1257','Y','',0,'','','','','Y','Y','suraj','2021-08-05 18:14:32','suraj','2021-08-05 18:14:54'),(0,0,1003,'CULTURE AND SENSITIVITY CVP TIP ','T1258','Y','',0,'','','','','Y','Y','suraj','2021-08-05 18:15:38','suraj','2021-08-05 18:16:27'),(0,0,1004,'CULTURE AND SENSITIVITY WATER','T1259','Y','',0,'','','','','Y','Y','suraj','2021-08-05 18:18:55','suraj','2021-08-05 18:19:18'),(0,0,1005,'24 HOUR URINE OXALATE','T1261','Y','Normal',0,'','','','','N','Y','yatin','2021-08-20 17:59:04','yatin','2021-08-20 17:59:32'),(0,0,1006,'24 HOUR URINE CITRATE','T1260','Y','Normal',0,'','','','','N','Y','yatin','2021-08-20 17:59:55','yatin','2021-08-20 18:00:11'),(0,0,1007,'ANAEROBIC BLOOD CULTURE','T1262','Y','Sensitivity',0,'','','','','N','Y','suraj','2021-10-06 15:14:44','suraj','2021-10-06 15:15:54'),(0,0,1008,'CYSTICERCOSIS (TAENIA SOLIUM) ANTIBODY IGG SEROLOG','T1263','Y','Normal',0,'','','','','N','Y','suraj','2021-10-07 10:17:50','suraj','2021-10-07 10:26:26'),(0,0,1009,'CYSTICERCOSIS (TAENIA SOLIUM) ANTIBODY IGG SEROLOG','','Y','Normal',0,'','','','','N','Y','suraj','2021-10-07 10:23:37','','0000-00-00 00:00:00'),(0,0,1010,'25 HYDROXY VITAMIN D','T1264','Y','Normal',0,'','','','','Y','Y','yatin','2021-10-14 13:35:00','yatin','2021-10-14 13:35:26'),(0,0,1011,'Nitrite','T1265','Y','',0,'','','','','N','Y','poojapatel','2021-11-12 15:27:38','poojapatel','2021-11-12 15:31:24'),(0,0,1012,'FLUID ALBUMIN','T1267','Y','',0,'','','','','Y','Y','poojapatel','2021-11-15 17:11:43','poojapatel','2021-11-15 17:12:51'),(0,0,1013,'ABGA WITH LACTATE','T0101,T0099,T0100,T0104,T0102,T0103,T0105,T1268','Y','',0,'','','','','Y','Y','parthesh','2021-11-26 15:10:03','yatin','2022-01-04 11:13:48'),(0,0,1014,'SERUM ASCITES ALBUMIN GRADIENT (SAAG)','T1269','Y','Normal',0,'','','','','Y','Y','nilesh','2021-11-27 10:11:28','nilesh','2021-11-27 10:13:59'),(0,0,1015,'AFB CULTURE BY BACTEC (MGIT) METHOD - FF ','T1270','Y','',0,'','','','','Y','Y','nilesh','2021-11-29 12:28:25','nilesh','2021-11-29 12:28:45'),(0,0,1016,'CULTURE AND SENSITIVITY CSF FLUID','T1271','Y','',0,'','','','','Y','Y','parthesh','2021-12-10 10:54:45','parthesh','2021-12-10 10:58:13'),(0,0,1017,'IMMUNOGLOBULIN PROFILE IGG, IGM, IGA, AND IGE ','T1272','Y','Normal',0,'','','','','N','Y','nilesh','2021-12-17 10:55:43','nilesh','2021-12-17 10:56:28'),(0,0,1018,'CRYPTOCOCCAL ANTIGEN- CSF','T1273','Y','',0,'','','','','N','N','nilesh','2021-12-27 16:39:26','nilesh','2021-12-27 17:02:22'),(0,0,1019,'AMA BY ELISA (ANTI MITOCHONDRIAL ANTIBODIES)','T1278','Y','',0,'','','','','N','Y','parthesh','2021-12-31 15:25:53','parthesh','2021-12-31 15:26:12'),(0,0,1020,'VITAMIN D GOLD (COVERS VITAMIN D2 VITAMIN D3 & D)','T1279','Y','',0,'','','','','Y','Y','yashpancha','2022-01-08 10:41:34','yashpancha','2022-01-08 10:44:22'),(0,0,1021,'TROPONIN T BY CARD QUALITATIVE','T1281','Y','',0,'','','','','Y','N','nilesh','2022-02-03 13:05:11','yashpancha','2022-02-10 12:20:19'),(0,0,1022,'BIOPSY RENAL 2 BOTTLE ( LM-HISTOPATHOLOGY, IF)','','Y','',0,'','','','','Y','Y','nilesh','2022-02-12 12:36:39','','0000-00-00 00:00:00'),(0,0,1023,'TOXOPLASMA - IGG','T0143','Y','',0,'','','','','Y','Y','parthesh','2022-02-15 12:10:11','parthesh','2022-02-15 12:10:48'),(0,0,1024,'TOXOPLASMA - IGM','T0144','Y','',0,'','','','','Y','Y','parthesh','2022-02-15 12:11:31','parthesh','2022-02-15 12:12:18'),(0,0,1025,'TOXOPLASMA - IGG ( CSF )','T1283','Y','',0,'','','','','N','Y','parthesh','2022-02-15 13:17:18','parthesh','2022-02-15 13:17:39'),(0,0,1026,'TOXOPLASMA - IGM ( CSF )','T1284','Y','',0,'','','','','N','Y','parthesh','2022-02-15 13:18:05','parthesh','2022-02-15 13:18:29'),(0,0,1027,'CULTURE AND SENSITIVITY URINE CATHETER TIP','T1285','Y','',0,'','','','','N','Y','jayeshc','2022-03-02 12:51:35','jayeshc','2022-03-02 12:52:20'),(0,0,1028,'URINE FLUID CYTOLOGY','T1286','Y','',0,'','','','','N','Y','jayeshc','2022-03-02 12:55:59','jayeshc','2022-03-02 12:57:17'),(0,0,1029,'RUBELLA (GERMAN MEASLES) AVIDITY, IGG','T1287','Y','',0,'','','','','','Y','parthesh','2022-03-17 15:40:20','parthesh','2022-03-17 15:40:57'),(0,0,1030,'Urine Glucose','T1288','Y','',0,'','','','','N','Y','thims','2022-03-29 15:22:46','','0000-00-00 00:00:00'),(0,0,1031,'BIO FIRE PANEL','T1289','Y','',0,'','','','','Y','Y','jayeshc','2022-04-18 10:30:24','jayeshc','2022-04-18 10:30:46'),(0,0,1032,'BIO FIRE PANEL FROM BODY FLUID EXCEPT BLOOD','T1290','Y','',0,'','','','','Y','Y','jayeshc','2022-04-18 10:31:24','jayeshc','2022-04-18 10:31:42'),(0,0,1033,'RUBELLA IGM','T0146','Y','',0,'','','','','','Y','jayeshc','2022-04-26 15:00:49','jayeshc','2022-04-26 15:23:48'),(0,0,1034,'MALDITOF TEST (NOCARDIA SPECIES IDENTIFICATION) ','T1291','Y','',0,'','','','','Y','Y','parthesh','2022-04-27 16:09:44','rohit','2022-04-27 16:46:54'),(0,0,1035,'PROGRAMMED DEATH LIGAND (PDL 1)','T1292','Y','',0,'','','','','Y','Y','jayeshc','2022-05-06 14:22:17','rohit','2022-05-06 14:48:14'),(0,0,1036,'HYPERSENSITIVITY PNEUMONITIS PANEL','T1293','Y','',0,'','','','','Y','Y','jayeshc','2022-05-10 09:52:04','rohit','2022-05-10 10:30:20'),(0,0,1037,'CATECHOLAMINES FROM PLASMA','T1294','Y','',0,'','','','','','Y','poojapatel','2022-05-23 12:36:04','poojapatel','2022-05-23 12:36:32'),(0,0,1038,'URINE CYTOLOGY','','Y','',0,'','','','','','Y','poojapatel','2022-05-23 12:37:23','','0000-00-00 00:00:00'),(0,0,1039,'VITAMIN E ','T1296','Y','',0,'','','','','Y','Y','poojapatel','2022-05-26 12:07:44','poojapatel','2022-05-26 12:10:22'),(0,0,1040,'CHRONICPANCREATITISPANELCASR CFTR CTRC PRSS1 SPINK','T1297','Y','',0,'','','','','','Y','nilesh','2022-06-10 14:49:13','rohit','2022-06-10 15:47:21'),(0,0,1041,'BILE ACID SERUM ','T1298','Y','',0,'','','','','Y','Y','parthesh','2022-07-12 09:57:07','rohit','2022-07-12 10:27:30'),(0,0,1042,'AFB SENSITIVITY FOR MOTT','T1299','Y','',0,'','','','','Y','Y','parthesh','2022-07-12 15:35:27','parthesh','2022-07-12 15:37:49'),(0,0,1043,'GLUCOSE CHALLENGE TEST(GCT)','T1300','Y','',0,'','','','<p>2 hours after 75gms glucose</p>\r\n','N','Y','parthesh','2022-07-14 10:43:15','parthesh','2022-07-14 10:44:55'),(0,0,1044,'IG G','T0141','Y','',0,'','','','','Y','Y','parthesh','2022-07-21 15:13:39','parthesh','2022-07-21 15:20:27'),(0,0,1045,'IG G','','Y','',0,'','','','','N','Y','parthesh','2022-07-21 15:14:57','','0000-00-00 00:00:00'),(0,0,1046,'CRYPTOSPORIDUM ANTIGEN FOR STOOL','T1303','Y','Normal',0,'','','','','Y','Y','rohit','2022-08-26 11:09:54','rohit','2022-08-27 10:01:14'),(0,0,1047,'FILARIA  ANTIGEN','','Y','',0,'','','','','Y','Y','rohit','2022-10-12 14:40:58','','0000-00-00 00:00:00'),(0,0,1048,'QUANTITATIVE ANTIBODY TITER','T1306','Y','Normal',0,'','','','','Y','N','jainil','2022-11-29 09:52:18','jainil','2022-11-29 10:28:21'),(0,0,1049,'Tetanus toxoid IgG antibodies (ELISA)','T1306','Y','',0,'','','','','N','Y','jainil','2022-11-29 09:56:54','jainil','2022-11-29 10:31:44'),(0,0,1050,'CULTURE AND SENSITIVITY','T1308','Y','Sensitivity',0,'','','','','Y','Y','jainil','2022-12-10 12:11:24','jainil','2022-12-14 13:49:07'),(0,0,1051,'RESPIRATORY TRACT INFECTION PANAL BY RTPCR','','Y','Normal',0,'','','','','Y','Y','drashish','2022-12-17 16:43:39','','0000-00-00 00:00:00'),(0,0,1052,'THYROGLOBULIN','T0160','Y','Normal',0,'','','','','N','Y','thims','2022-12-31 16:24:02','thims','2022-12-31 16:24:34'),(0,0,1053,'CPK MM','T1309','Y','Normal',0,'','','','','Y','Y','drashish','2023-01-04 11:28:19','jainil','2023-01-04 12:44:27');
/*!40000 ALTER TABLE `test_group_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `test_request_for_med_device`
--

DROP TABLE IF EXISTS `test_request_for_med_device`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `test_request_for_med_device` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `test_req_date` date NOT NULL,
  `test_req_fy` int(11) NOT NULL,
  `test_id` int(11) NOT NULL,
  `test_id_serial_no` int(11) NOT NULL,
  `test_result_source` int(11) NOT NULL,
  `test_code` varchar(10) NOT NULL,
  `instrument_name` varchar(50) NOT NULL,
  `instrument_test_code` varchar(20) NOT NULL,
  `test_result` varchar(8) NOT NULL,
  `test_updated_flag` char(1) NOT NULL,
  `test_result_sent_flag` char(1) NOT NULL DEFAULT 'N',
  `test_result_sent_datetime` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `test_id` (`test_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `test_request_for_med_device`
--

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

--
-- Table structure for table `tp_software_interface_configuration`
--

DROP TABLE IF EXISTS `tp_software_interface_configuration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tp_software_interface_configuration` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `lis_software` varchar(20) NOT NULL,
  `lis_domain_name` varchar(50) NOT NULL,
  `lis_user_id` varchar(10) NOT NULL,
  `lis_password` varchar(100) DEFAULT NULL,
  `lis_branch_id` varchar(10) NOT NULL,
  `lis_b2b_id_op` varchar(10) DEFAULT NULL,
  `lis_b2b_id_ip` varchar(10) NOT NULL,
  `lis_b2b_id_emergency` varchar(10) NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`lis_software`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Third Party Lab Software API configuration table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tp_software_interface_configuration`
--

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

--
-- Table structure for table `unit_master`
--

DROP TABLE IF EXISTS `unit_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `unit_master` (
  `unit_id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `unit_abbrev` varchar(5) NOT NULL COMMENT 'unit abbreviation e.g. STRP, BTL etc.',
  `unit_name` varchar(10) NOT NULL COMMENT 'unit name e.g. strip, bottle',
  `unit_is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`unit_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `unit_master`
--

LOCK TABLES `unit_master` WRITE;
/*!40000 ALTER TABLE `unit_master` DISABLE KEYS */;
INSERT INTO `unit_master` VALUES (1,0,'STRP','Strip','Y','thims','2019-01-05 07:26:54',NULL,NULL),(2,0,'NUM','Number','Y','thims','2019-01-05 07:26:54',NULL,NULL),(3,0,'BOX','Box','Y','thims','2019-01-05 07:26:54',NULL,NULL),(4,0,'PCS','Pcs','Y','thims','2019-09-07 10:23:17',NULL,NULL),(5,0,'OTH','Other','Y','thims','2019-09-07 10:23:17',NULL,NULL),(6,0,'LITER','Liter','Y','thims','2019-02-05 12:08:03',NULL,NULL),(7,0,'KG','Kilogram','Y','thims','2019-02-05 12:15:03',NULL,NULL),(8,0,'METER','Meter','Y','thims','2019-09-07 10:22:51',NULL,NULL),(9,0,'FEET','Feet','Y','thims','2019-09-22 11:13:38',NULL,NULL);
/*!40000 ALTER TABLE `unit_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user`
--

DROP TABLE IF EXISTS `user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `user_id` varchar(20) NOT NULL,
  `user_ip_address` varchar(45) NOT NULL COMMENT 'if value is blank then dont check,if value is standard then chack into provider & if id mentioned then check that ip.',
  `email` varchar(80) NOT NULL,
  `email_password` char(50) NOT NULL,
  `user_pwd` varchar(25) NOT NULL,
  `old_pwd1` varchar(25) NOT NULL,
  `old_pwd1_datetime` datetime NOT NULL,
  `old_pwd2` varchar(25) NOT NULL,
  `old_pwd2_datetime` datetime NOT NULL,
  `User_Role` varchar(30) NOT NULL,
  `user_module` varchar(100) NOT NULL,
  `User_FName` varchar(15) NOT NULL,
  `User_MName` varchar(15) NOT NULL,
  `User_LName` varchar(15) NOT NULL,
  `remark` varchar(50) NOT NULL,
  `dept_id` varchar(5) NOT NULL,
  `user_dob` date NOT NULL,
  `user_contact` bigint(20) NOT NULL,
  `user_email` varchar(100) NOT NULL,
  `user_profile_picture` varchar(50) NOT NULL,
  `user_skin` varchar(25) NOT NULL DEFAULT 'skin-blue',
  `User_Desg` varchar(15) NOT NULL,
  `User_Speciality` varchar(15) NOT NULL,
  `user_signature` varchar(50) NOT NULL,
  `user_doctor_id` int(11) NOT NULL,
  `super_user` varchar(1) NOT NULL,
  `data_access` enum('Y','N') NOT NULL DEFAULT 'Y',
  `active` enum('Y','N') NOT NULL DEFAULT 'Y',
  `Menu_Expand` enum('Y','N') NOT NULL DEFAULT 'N',
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`company_id`,`branch_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Store Users and their roles within application for access';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user`
--

LOCK TABLES `user` WRITE;
/*!40000 ALTER TABLE `user` DISABLE KEYS */;
INSERT INTO `user` VALUES (0,0,'darshan','','','','Darshan#1234','','0000-00-00 00:00:00','','0000-00-00 00:00:00','Doctor','','DR.DARSHAN','','BHATT','','','0000-00-00',0,'','','skin-blue','','','',2,'','Y','Y','N','thims','2025-09-29 17:53:01','','0000-00-00 00:00:00'),(0,0,'dharmishthaben','','','','Dharmishthaben#1234','','0000-00-00 00:00:00','','0000-00-00 00:00:00','Accountant','','Dharmishthaben','','','','','0000-00-00',0,'','','skin-blue','','','',0,'','Y','Y','N','thims','2025-10-03 14:59:31','','0000-00-00 00:00:00'),(0,0,'drarchit','','','','Drarchit#1234','','0000-00-00 00:00:00','','0000-00-00 00:00:00','Doctor','','DR.ARCHIT','V','RATHOD','','','0000-00-00',0,'','','skin-blue','','','',4,'','Y','Y','N','thims','2025-10-03 15:21:45','thims','2025-10-16 12:35:22'),(0,0,'drashti','','','','Drashti#1234','','0000-00-00 00:00:00','','0000-00-00 00:00:00','Receptionist','','Drashti','','','','HOSP','0000-00-00',0,'','../../thims2_genesis007/user/drashti.png','skin-blue','','','',0,'','Y','Y','N','thims','2025-10-03 14:47:30','drashti','2025-12-23 16:40:27'),(0,0,'Drjayant','','','','Drjayant#1234','','0000-00-00 00:00:00','','0000-00-00 00:00:00','Doctor','','DR.JAYANT','K','MEHTA','','','0000-00-00',0,'','','skin-blue','','','',5,'','Y','Y','N','thims','2025-10-03 15:22:16','thims','2025-10-31 13:43:44'),(0,0,'Drpratapsinh','','','','Drpratapsinh#1234','Drpratapsihn#1234','2025-10-10 17:44:18','Drpratapsihn#1234','2025-10-10 17:44:54','Doctor','','DR.PRATAPSINH','','DODIYA','','','0000-00-00',0,'','','skin-blue','','','',3,'','Y','Y','N','thims','2025-10-03 15:21:19','thims','2025-10-16 12:36:41'),(0,0,'Drridham','','','','Drridham#1234','','0000-00-00 00:00:00','','0000-00-00 00:00:00','Doctor','','DR.RIDHAM','','KHANDERIYA','','','0000-00-00',0,'','','skin-blue','','','',7,'','Y','Y','N','thims','2025-10-03 15:23:02','thims','2025-11-13 10:16:13'),(0,0,'Drsagar','','','','Drsagar#1234','','0000-00-00 00:00:00','','0000-00-00 00:00:00','Doctor','','DR.SAGAR','','KHANPARA','','','0000-00-00',0,'','','skin-blue','','','',6,'','Y','Y','N','thims','2025-10-03 15:22:39','thims','2025-10-16 12:36:49'),(0,0,'janvi','','','','Janvi#1234','','0000-00-00 00:00:00','','0000-00-00 00:00:00','Receptionist','','Janhvi','','','','BBNK','0000-00-00',0,'','../../thims2_genesis007/user/janvi.png','skin-black','','','',0,'','Y','Y','N','thims','2025-10-03 14:46:55','janvi','2025-12-07 12:35:32'),(0,0,'manshi','','','','Manisha#1234','Manshi#1234','2025-10-08 11:44:15','','0000-00-00 00:00:00','Receptionist','','Manisha','','','','HOSP','0000-00-00',0,'','','skin-blue','','','',0,'','Y','Y','N','thims','2025-10-03 14:48:38','manshi','2025-10-08 11:47:24'),(0,0,'mo','','','','Mo#1234','','0000-00-00 00:00:00','','0000-00-00 00:00:00','MO','','Mo','','','','','0000-00-00',0,'','','skin-blue','','','',0,'','Y','Y','N','thims','2025-10-03 14:59:52','','0000-00-00 00:00:00'),(0,0,'priyanshi','','','','Priyanshi#1234','','0000-00-00 00:00:00','','0000-00-00 00:00:00','Receptionist','','Priyanshi','','','','','0000-00-00',0,'','','skin-blue','','','',0,'','Y','Y','N','thims','2025-10-03 14:45:10','','0000-00-00 00:00:00'),(0,0,'reception','','','','Reception#1234','Reception#1234','2025-10-10 10:03:29','Anjali#1234','2025-10-10 17:39:44','Receptionist','','ANJALI','','','','HOSP','0000-00-00',0,'','','skin-blue','','','',0,'','Y','Y','N','thims','2025-09-29 17:45:39','reception','2025-10-11 13:06:13'),(0,0,'riya','','','','@TUSHU9933','Riya#1234','2025-12-22 13:41:09','','0000-00-00 00:00:00','Accountant','','TUSHAR ','NAKUM ','','','HOSP','0000-00-00',9662419933,'','../../thims2_genesis007/user/riya.png','skin-purple','','','',0,'','Y','Y','N','thims','2025-10-03 14:48:59','riya','2025-12-22 13:42:35'),(0,0,'shweta','','','','Shweta#1234','','0000-00-00 00:00:00','','0000-00-00 00:00:00','Receptionist','','Sweta','','','','HOSP','0000-00-00',9409426842,'genesishospital.rajkot@gmail.com','../../thims2_genesis007/user/shweta.png','skin-blue','','','',0,'','Y','Y','N','thims','2025-10-03 14:48:06','shweta','2025-12-13 11:29:39'),(0,0,'thims','','techsmithbackup@gmail.com','thalteJ@501','himalaya#370','Smvs#501','2019-03-25 08:47:53','','0000-00-00 00:00:00','Executive / Sr executive','superadmin','superadmin','','','','HOSP','0000-00-00',0,'','../../thims1_masterdb_v3/user/thims.png','skin-blue','','','',0,'Y','Y','Y','N','','0000-00-00 00:00:00','thims','2023-05-17 16:06:49'),(0,0,'urvashi','','','','Urvashi#1234','','0000-00-00 00:00:00','','0000-00-00 00:00:00','Accountant','','Urvashi','','','','BBNK','0000-00-00',0,'','../../thims2_genesis007/user/urvashi.png','skin-purple','','','',0,'','Y','Y','N','thims','2025-10-03 14:45:55','urvashi','2025-12-09 08:49:38'),(0,0,'vishal','','','','Vishal#1234','','0000-00-00 00:00:00','','0000-00-00 00:00:00','Accountant','','Vishal','','','','','0000-00-00',0,'','','skin-blue','','','',0,'','Y','Y','N','thims','2025-10-03 14:58:45','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `user` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_access_control`
--

DROP TABLE IF EXISTS `user_access_control`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_access_control` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `User_Id` varchar(15) NOT NULL,
  `Main_Menu_Code` char(5) NOT NULL,
  `Sub_Menu_Code` char(5) NOT NULL,
  `Menu_Expand` enum('Y','N') NOT NULL DEFAULT 'N',
  `Updated_By` varchar(15) NOT NULL,
  `Updated_Datetime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`company_id`,`branch_id`,`User_Id`,`Main_Menu_Code`,`Sub_Menu_Code`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_access_control`
--

LOCK TABLES `user_access_control` WRITE;
/*!40000 ALTER TABLE `user_access_control` DISABLE KEYS */;
INSERT INTO `user_access_control` VALUES (0,0,'darshan','M0001','S0014','N','thims','2025-09-29 12:16:01'),(0,0,'darshan','M0001','S0021','N','thims','2025-09-29 12:16:01'),(0,0,'darshan','M0001','S0022','N','thims','2025-09-29 12:16:01'),(0,0,'darshan','M0002','S0398','N','thims','2025-09-29 12:23:29'),(0,0,'darshan','M0004','S0043','N','thims','2025-09-29 12:17:47'),(0,0,'darshan','M0004','S0044','N','thims','2025-09-29 12:17:47'),(0,0,'darshan','M0004','S0171','N','thims','2025-09-29 12:17:47'),(0,0,'darshan','M0005','S0049','N','thims','2025-12-05 05:48:29'),(0,0,'darshan','M0005','S0140','N','thims','2025-12-05 05:48:29'),(0,0,'darshan','M0005','S0141','N','thims','2025-12-05 05:48:29'),(0,0,'darshan','M0005','S0143','N','thims','2025-12-05 05:48:29'),(0,0,'darshan','M0005','S0144','N','thims','2025-12-05 05:48:29'),(0,0,'darshan','M0005','S0147','N','thims','2025-12-05 05:48:29'),(0,0,'darshan','M0005','S0148','N','thims','2025-12-05 05:48:29'),(0,0,'darshan','M0005','S0170','N','thims','2025-12-05 05:48:29'),(0,0,'darshan','M0005','S0234','N','thims','2025-12-05 05:48:29'),(0,0,'darshan','M0005','S0567','N','thims','2025-12-05 05:48:29'),(0,0,'darshan','M0016','S0035','N','thims','2025-09-29 12:16:17'),(0,0,'darshan','M0016','S0394','N','thims','2025-09-29 12:16:17'),(0,0,'darshan','M0016','S0416','N','thims','2025-09-29 12:16:17'),(0,0,'darshan','M0017','S0039','N','thims','2025-09-29 12:19:00'),(0,0,'darshan','M0017','S0040','N','thims','2025-09-29 12:19:00'),(0,0,'darshan','M0017','S0150','N','thims','2025-09-29 12:19:00'),(0,0,'darshan','M0017','S0378','N','thims','2025-09-29 12:19:00'),(0,0,'darshan','M0017','S0379','N','thims','2025-09-29 12:19:00'),(0,0,'darshan','M0017','S0383','N','thims','2025-09-29 12:19:00'),(0,0,'darshan','M0021','S0131','N','thims','2025-10-10 13:07:57'),(0,0,'darshan','M0021','S0155','N','thims','2025-10-10 13:07:57'),(0,0,'darshan','M0021','S0419','N','thims','2025-10-10 13:07:57'),(0,0,'darshan','M0021','S0565','N','thims','2025-10-10 13:07:57'),(0,0,'darshan','M0023','S0177','N','thims','2025-09-29 12:16:59'),(0,0,'darshan','M0023','S0179','N','thims','2025-09-29 12:16:59'),(0,0,'darshan','M0023','S0180','N','thims','2025-09-29 12:16:59'),(0,0,'darshan','M0023','S0184','N','thims','2025-09-29 12:16:59'),(0,0,'darshan','M0023','S0233','N','thims','2025-09-29 12:16:59'),(0,0,'darshan','M0023','S0236','N','thims','2025-09-29 12:16:59'),(0,0,'darshan','M0023','S0237','N','thims','2025-09-29 12:16:59'),(0,0,'darshan','M0023','S0417','N','thims','2025-09-29 12:16:59'),(0,0,'darshan','M0024','S0198','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0024','S0199','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0024','S0200','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0024','S0201','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0024','S0203','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0024','S0204','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0024','S0205','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0024','S0207','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0024','S0209','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0024','S0212','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0024','S0213','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0024','S0214','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0024','S0215','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0024','S0216','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0024','S0217','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0024','S0218','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0024','S0239','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0024','S0240','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0024','S0363','N','thims','2025-09-29 12:18:38'),(0,0,'darshan','M0028','','N','thims','2025-09-29 12:17:14'),(0,0,'dharmishthaben','M0001','S0014','N','thims','2025-10-08 05:10:52'),(0,0,'dharmishthaben','M0001','S0021','N','thims','2025-10-08 05:10:52'),(0,0,'dharmishthaben','M0001','S0022','N','thims','2025-10-08 05:10:52'),(0,0,'dharmishthaben','M0004','S0043','N','thims','2025-10-08 05:15:20'),(0,0,'dharmishthaben','M0004','S0044','N','thims','2025-10-08 05:15:20'),(0,0,'dharmishthaben','M0004','S0171','N','thims','2025-10-08 05:15:20'),(0,0,'dharmishthaben','M0005','S0049','N','thims','2025-10-08 05:16:29'),(0,0,'dharmishthaben','M0005','S0140','N','thims','2025-10-08 05:16:29'),(0,0,'dharmishthaben','M0005','S0141','N','thims','2025-10-08 05:16:29'),(0,0,'dharmishthaben','M0005','S0142','N','thims','2025-10-08 05:16:29'),(0,0,'dharmishthaben','M0005','S0143','N','thims','2025-10-08 05:16:29'),(0,0,'dharmishthaben','M0005','S0144','N','thims','2025-10-08 05:16:29'),(0,0,'dharmishthaben','M0005','S0145','N','thims','2025-10-08 05:16:29'),(0,0,'dharmishthaben','M0005','S0146','N','thims','2025-10-08 05:16:29'),(0,0,'dharmishthaben','M0005','S0147','N','thims','2025-10-08 05:16:29'),(0,0,'dharmishthaben','M0005','S0148','N','thims','2025-10-08 05:16:29'),(0,0,'dharmishthaben','M0005','S0168','N','thims','2025-10-08 05:16:29'),(0,0,'dharmishthaben','M0005','S0169','N','thims','2025-10-08 05:16:29'),(0,0,'dharmishthaben','M0005','S0170','N','thims','2025-10-08 05:16:29'),(0,0,'dharmishthaben','M0005','S0234','N','thims','2025-10-08 05:16:29'),(0,0,'dharmishthaben','M0005','S0350','N','thims','2025-10-08 05:16:29'),(0,0,'dharmishthaben','M0005','S0391','N','thims','2025-10-08 05:16:29'),(0,0,'dharmishthaben','M0005','S0535','N','thims','2025-10-08 05:16:29'),(0,0,'dharmishthaben','M0005','S0536','N','thims','2025-10-08 05:16:29'),(0,0,'dharmishthaben','M0016','S0035','N','thims','2025-10-08 05:11:12'),(0,0,'dharmishthaben','M0016','S0394','N','thims','2025-10-08 05:11:12'),(0,0,'dharmishthaben','M0016','S0416','N','thims','2025-10-08 05:11:12'),(0,0,'dharmishthaben','M0017','S0039','N','thims','2025-10-08 05:15:00'),(0,0,'dharmishthaben','M0017','S0040','N','thims','2025-10-08 05:15:00'),(0,0,'dharmishthaben','M0017','S0150','N','thims','2025-10-08 05:15:00'),(0,0,'dharmishthaben','M0017','S0383','N','thims','2025-10-08 05:15:00'),(0,0,'dharmishthaben','M0023','S0177','N','thims','2025-10-08 06:49:26'),(0,0,'dharmishthaben','M0023','S0179','N','thims','2025-10-08 06:49:26'),(0,0,'dharmishthaben','M0023','S0180','N','thims','2025-10-08 06:49:26'),(0,0,'dharmishthaben','M0023','S0182','N','thims','2025-10-08 06:49:26'),(0,0,'dharmishthaben','M0023','S0184','N','thims','2025-10-08 06:49:26'),(0,0,'dharmishthaben','M0023','S0278','N','thims','2025-10-08 06:49:26'),(0,0,'dharmishthaben','M0023','S0371','N','thims','2025-10-08 06:49:26'),(0,0,'dharmishthaben','M0023','S0380','N','thims','2025-10-08 06:49:26'),(0,0,'dharmishthaben','M0023','S0417','N','thims','2025-10-08 06:49:26'),(0,0,'dharmishthaben','M0023','S0533','N','thims','2025-10-08 06:49:26'),(0,0,'dharmishthaben','M0023','S0562','N','thims','2025-10-08 06:49:26'),(0,0,'dharmishthaben','M0024','S0198','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0201','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0203','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0204','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0205','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0207','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0209','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0213','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0214','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0215','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0216','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0218','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0239','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0240','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0307','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0308','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0363','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0364','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0368','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0024','S0534','N','thims','2025-10-08 05:18:06'),(0,0,'dharmishthaben','M0028','','N','thims','2025-10-08 05:10:40'),(0,0,'drarchit','M0001','S0014','N','thims','2025-09-29 12:16:01'),(0,0,'drarchit','M0001','S0021','N','thims','2025-09-29 12:16:01'),(0,0,'drarchit','M0001','S0022','N','thims','2025-09-29 12:16:01'),(0,0,'drarchit','M0002','S0398','N','thims','2025-09-29 12:23:29'),(0,0,'drarchit','M0004','S0043','N','thims','2025-09-29 12:17:47'),(0,0,'drarchit','M0004','S0044','N','thims','2025-09-29 12:17:47'),(0,0,'drarchit','M0004','S0171','N','thims','2025-09-29 12:17:47'),(0,0,'drarchit','M0005','S0049','N','thims','2025-09-29 12:19:42'),(0,0,'drarchit','M0005','S0140','N','thims','2025-09-29 12:19:42'),(0,0,'drarchit','M0005','S0141','N','thims','2025-09-29 12:19:42'),(0,0,'drarchit','M0005','S0143','N','thims','2025-09-29 12:19:42'),(0,0,'drarchit','M0005','S0144','N','thims','2025-09-29 12:19:42'),(0,0,'drarchit','M0005','S0147','N','thims','2025-09-29 12:19:42'),(0,0,'drarchit','M0005','S0148','N','thims','2025-09-29 12:19:42'),(0,0,'drarchit','M0005','S0170','N','thims','2025-09-29 12:19:42'),(0,0,'drarchit','M0005','S0234','N','thims','2025-09-29 12:19:42'),(0,0,'drarchit','M0016','S0035','N','thims','2025-09-29 12:16:17'),(0,0,'drarchit','M0016','S0394','N','thims','2025-09-29 12:16:17'),(0,0,'drarchit','M0016','S0416','N','thims','2025-09-29 12:16:17'),(0,0,'drarchit','M0017','S0039','N','thims','2025-09-29 12:19:00'),(0,0,'drarchit','M0017','S0040','N','thims','2025-09-29 12:19:00'),(0,0,'drarchit','M0017','S0150','N','thims','2025-09-29 12:19:00'),(0,0,'drarchit','M0017','S0378','N','thims','2025-09-29 12:19:00'),(0,0,'drarchit','M0017','S0379','N','thims','2025-09-29 12:19:00'),(0,0,'drarchit','M0017','S0383','N','thims','2025-09-29 12:19:00'),(0,0,'drarchit','M0021','S0131','N','thims','2025-10-10 13:08:09'),(0,0,'drarchit','M0021','S0155','N','thims','2025-10-10 13:08:09'),(0,0,'drarchit','M0021','S0419','N','thims','2025-10-10 13:08:09'),(0,0,'drarchit','M0021','S0565','N','thims','2025-10-10 13:08:09'),(0,0,'drarchit','M0023','S0177','N','thims','2025-09-29 12:16:59'),(0,0,'drarchit','M0023','S0179','N','thims','2025-09-29 12:16:59'),(0,0,'drarchit','M0023','S0180','N','thims','2025-09-29 12:16:59'),(0,0,'drarchit','M0023','S0184','N','thims','2025-09-29 12:16:59'),(0,0,'drarchit','M0023','S0233','N','thims','2025-09-29 12:16:59'),(0,0,'drarchit','M0023','S0236','N','thims','2025-09-29 12:16:59'),(0,0,'drarchit','M0023','S0237','N','thims','2025-09-29 12:16:59'),(0,0,'drarchit','M0023','S0417','N','thims','2025-09-29 12:16:59'),(0,0,'drarchit','M0024','S0198','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0024','S0199','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0024','S0200','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0024','S0201','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0024','S0203','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0024','S0204','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0024','S0205','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0024','S0207','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0024','S0209','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0024','S0212','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0024','S0213','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0024','S0214','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0024','S0215','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0024','S0216','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0024','S0217','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0024','S0218','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0024','S0239','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0024','S0240','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0024','S0363','N','thims','2025-09-29 12:18:38'),(0,0,'drarchit','M0028','','N','thims','2025-09-29 12:17:14'),(0,0,'drashti','M0001','S0014','N','thims','2025-10-08 05:10:52'),(0,0,'drashti','M0001','S0021','N','thims','2025-10-08 05:10:52'),(0,0,'drashti','M0001','S0022','N','thims','2025-10-08 05:10:52'),(0,0,'drashti','M0004','S0043','N','thims','2025-10-08 05:15:20'),(0,0,'drashti','M0004','S0044','N','thims','2025-10-08 05:15:20'),(0,0,'drashti','M0004','S0171','N','thims','2025-10-08 05:15:20'),(0,0,'drashti','M0005','S0049','N','thims','2025-10-08 05:16:29'),(0,0,'drashti','M0005','S0140','N','thims','2025-10-08 05:16:29'),(0,0,'drashti','M0005','S0141','N','thims','2025-10-08 05:16:29'),(0,0,'drashti','M0005','S0142','N','thims','2025-10-08 05:16:29'),(0,0,'drashti','M0005','S0143','N','thims','2025-10-08 05:16:29'),(0,0,'drashti','M0005','S0144','N','thims','2025-10-08 05:16:29'),(0,0,'drashti','M0005','S0145','N','thims','2025-10-08 05:16:29'),(0,0,'drashti','M0005','S0146','N','thims','2025-10-08 05:16:29'),(0,0,'drashti','M0005','S0147','N','thims','2025-10-08 05:16:29'),(0,0,'drashti','M0005','S0148','N','thims','2025-10-08 05:16:29'),(0,0,'drashti','M0005','S0168','N','thims','2025-10-08 05:16:29'),(0,0,'drashti','M0005','S0169','N','thims','2025-10-08 05:16:29'),(0,0,'drashti','M0005','S0170','N','thims','2025-10-08 05:16:29'),(0,0,'drashti','M0005','S0234','N','thims','2025-10-08 05:16:29'),(0,0,'drashti','M0005','S0350','N','thims','2025-10-08 05:16:29'),(0,0,'drashti','M0005','S0391','N','thims','2025-10-08 05:16:29'),(0,0,'drashti','M0005','S0535','N','thims','2025-10-08 05:16:29'),(0,0,'drashti','M0005','S0536','N','thims','2025-10-08 05:16:29'),(0,0,'drashti','M0016','S0035','N','thims','2025-10-08 08:12:44'),(0,0,'drashti','M0016','S0293','N','thims','2025-10-08 08:12:44'),(0,0,'drashti','M0016','S0394','N','thims','2025-10-08 08:12:44'),(0,0,'drashti','M0016','S0416','N','thims','2025-10-08 08:12:44'),(0,0,'drashti','M0017','S0039','N','thims','2025-10-08 05:15:00'),(0,0,'drashti','M0017','S0040','N','thims','2025-10-08 05:15:00'),(0,0,'drashti','M0017','S0150','N','thims','2025-10-08 05:15:00'),(0,0,'drashti','M0017','S0383','N','thims','2025-10-08 05:15:00'),(0,0,'drashti','M0023','S0177','N','thims','2025-11-04 04:03:17'),(0,0,'drashti','M0023','S0178','N','thims','2025-11-04 04:03:17'),(0,0,'drashti','M0023','S0179','N','thims','2025-11-04 04:03:17'),(0,0,'drashti','M0023','S0180','N','thims','2025-11-04 04:03:17'),(0,0,'drashti','M0023','S0182','N','thims','2025-11-04 04:03:17'),(0,0,'drashti','M0023','S0184','N','thims','2025-11-04 04:03:17'),(0,0,'drashti','M0023','S0186','N','thims','2025-11-04 04:03:17'),(0,0,'drashti','M0023','S0278','N','thims','2025-11-04 04:03:17'),(0,0,'drashti','M0023','S0371','N','thims','2025-11-04 04:03:17'),(0,0,'drashti','M0023','S0380','N','thims','2025-11-04 04:03:17'),(0,0,'drashti','M0023','S0417','N','thims','2025-11-04 04:03:17'),(0,0,'drashti','M0023','S0533','N','thims','2025-11-04 04:03:17'),(0,0,'drashti','M0023','S0562','N','thims','2025-11-04 04:03:17'),(0,0,'drashti','M0024','S0198','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0201','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0203','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0204','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0205','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0207','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0209','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0213','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0214','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0215','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0216','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0218','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0239','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0240','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0307','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0308','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0363','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0364','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0368','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0024','S0534','N','thims','2025-10-08 05:18:06'),(0,0,'drashti','M0028','','N','thims','2025-10-08 05:10:40'),(0,0,'Drjayant','M0001','S0014','N','thims','2025-09-29 12:16:01'),(0,0,'Drjayant','M0001','S0021','N','thims','2025-09-29 12:16:01'),(0,0,'Drjayant','M0001','S0022','N','thims','2025-09-29 12:16:01'),(0,0,'Drjayant','M0002','S0398','N','thims','2025-09-29 12:23:29'),(0,0,'Drjayant','M0004','S0043','N','thims','2025-09-29 12:17:47'),(0,0,'Drjayant','M0004','S0044','N','thims','2025-09-29 12:17:47'),(0,0,'Drjayant','M0004','S0171','N','thims','2025-09-29 12:17:47'),(0,0,'Drjayant','M0005','S0049','N','thims','2025-09-29 12:19:42'),(0,0,'Drjayant','M0005','S0140','N','thims','2025-09-29 12:19:42'),(0,0,'Drjayant','M0005','S0141','N','thims','2025-09-29 12:19:42'),(0,0,'Drjayant','M0005','S0143','N','thims','2025-09-29 12:19:42'),(0,0,'Drjayant','M0005','S0144','N','thims','2025-09-29 12:19:42'),(0,0,'Drjayant','M0005','S0147','N','thims','2025-09-29 12:19:42'),(0,0,'Drjayant','M0005','S0148','N','thims','2025-09-29 12:19:42'),(0,0,'Drjayant','M0005','S0170','N','thims','2025-09-29 12:19:42'),(0,0,'Drjayant','M0005','S0234','N','thims','2025-09-29 12:19:42'),(0,0,'Drjayant','M0016','S0035','N','thims','2025-09-29 12:16:17'),(0,0,'Drjayant','M0016','S0394','N','thims','2025-09-29 12:16:17'),(0,0,'Drjayant','M0016','S0416','N','thims','2025-09-29 12:16:17'),(0,0,'Drjayant','M0017','S0039','N','thims','2025-09-29 12:19:00'),(0,0,'Drjayant','M0017','S0040','N','thims','2025-09-29 12:19:00'),(0,0,'Drjayant','M0017','S0150','N','thims','2025-09-29 12:19:00'),(0,0,'Drjayant','M0017','S0378','N','thims','2025-09-29 12:19:00'),(0,0,'Drjayant','M0017','S0379','N','thims','2025-09-29 12:19:00'),(0,0,'Drjayant','M0017','S0383','N','thims','2025-09-29 12:19:00'),(0,0,'Drjayant','M0021','S0131','N','thims','2025-10-10 13:08:27'),(0,0,'Drjayant','M0021','S0155','N','thims','2025-10-10 13:08:27'),(0,0,'Drjayant','M0021','S0419','N','thims','2025-10-10 13:08:27'),(0,0,'Drjayant','M0021','S0565','N','thims','2025-10-10 13:08:27'),(0,0,'Drjayant','M0023','S0177','N','thims','2025-09-29 12:16:59'),(0,0,'Drjayant','M0023','S0179','N','thims','2025-09-29 12:16:59'),(0,0,'Drjayant','M0023','S0180','N','thims','2025-09-29 12:16:59'),(0,0,'Drjayant','M0023','S0184','N','thims','2025-09-29 12:16:59'),(0,0,'Drjayant','M0023','S0233','N','thims','2025-09-29 12:16:59'),(0,0,'Drjayant','M0023','S0236','N','thims','2025-09-29 12:16:59'),(0,0,'Drjayant','M0023','S0237','N','thims','2025-09-29 12:16:59'),(0,0,'Drjayant','M0023','S0417','N','thims','2025-09-29 12:16:59'),(0,0,'Drjayant','M0024','S0198','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0024','S0199','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0024','S0200','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0024','S0201','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0024','S0203','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0024','S0204','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0024','S0205','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0024','S0207','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0024','S0209','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0024','S0212','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0024','S0213','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0024','S0214','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0024','S0215','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0024','S0216','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0024','S0217','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0024','S0218','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0024','S0239','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0024','S0240','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0024','S0363','N','thims','2025-09-29 12:18:38'),(0,0,'Drjayant','M0028','','N','thims','2025-09-29 12:17:14'),(0,0,'Drpratapsinh','M0001','S0014','N','thims','2025-09-29 12:16:01'),(0,0,'Drpratapsinh','M0001','S0021','N','thims','2025-09-29 12:16:01'),(0,0,'Drpratapsinh','M0001','S0022','N','thims','2025-09-29 12:16:01'),(0,0,'Drpratapsinh','M0002','S0398','N','thims','2025-09-29 12:23:29'),(0,0,'Drpratapsinh','M0004','S0043','N','thims','2025-09-29 12:17:47'),(0,0,'Drpratapsinh','M0004','S0044','N','thims','2025-09-29 12:17:47'),(0,0,'Drpratapsinh','M0004','S0171','N','thims','2025-09-29 12:17:47'),(0,0,'Drpratapsinh','M0005','S0049','N','thims','2025-09-29 12:19:42'),(0,0,'Drpratapsinh','M0005','S0140','N','thims','2025-09-29 12:19:42'),(0,0,'Drpratapsinh','M0005','S0141','N','thims','2025-09-29 12:19:42'),(0,0,'Drpratapsinh','M0005','S0143','N','thims','2025-09-29 12:19:42'),(0,0,'Drpratapsinh','M0005','S0144','N','thims','2025-09-29 12:19:42'),(0,0,'Drpratapsinh','M0005','S0147','N','thims','2025-09-29 12:19:42'),(0,0,'Drpratapsinh','M0005','S0148','N','thims','2025-09-29 12:19:42'),(0,0,'Drpratapsinh','M0005','S0170','N','thims','2025-09-29 12:19:42'),(0,0,'Drpratapsinh','M0005','S0234','N','thims','2025-09-29 12:19:42'),(0,0,'Drpratapsinh','M0016','S0035','N','thims','2025-09-29 12:16:17'),(0,0,'Drpratapsinh','M0016','S0394','N','thims','2025-09-29 12:16:17'),(0,0,'Drpratapsinh','M0016','S0416','N','thims','2025-09-29 12:16:17'),(0,0,'Drpratapsinh','M0017','S0039','N','thims','2025-09-29 12:19:00'),(0,0,'Drpratapsinh','M0017','S0040','N','thims','2025-09-29 12:19:00'),(0,0,'Drpratapsinh','M0017','S0150','N','thims','2025-09-29 12:19:00'),(0,0,'Drpratapsinh','M0017','S0378','N','thims','2025-09-29 12:19:00'),(0,0,'Drpratapsinh','M0017','S0379','N','thims','2025-09-29 12:19:00'),(0,0,'Drpratapsinh','M0017','S0383','N','thims','2025-09-29 12:19:00'),(0,0,'Drpratapsinh','M0021','S0131','N','thims','2025-10-10 13:08:39'),(0,0,'Drpratapsinh','M0021','S0155','N','thims','2025-10-10 13:08:39'),(0,0,'Drpratapsinh','M0021','S0419','N','thims','2025-10-10 13:08:39'),(0,0,'Drpratapsinh','M0021','S0565','N','thims','2025-10-10 13:08:39'),(0,0,'Drpratapsinh','M0023','S0177','N','thims','2025-09-29 12:16:59'),(0,0,'Drpratapsinh','M0023','S0179','N','thims','2025-09-29 12:16:59'),(0,0,'Drpratapsinh','M0023','S0180','N','thims','2025-09-29 12:16:59'),(0,0,'Drpratapsinh','M0023','S0184','N','thims','2025-09-29 12:16:59'),(0,0,'Drpratapsinh','M0023','S0233','N','thims','2025-09-29 12:16:59'),(0,0,'Drpratapsinh','M0023','S0236','N','thims','2025-09-29 12:16:59'),(0,0,'Drpratapsinh','M0023','S0237','N','thims','2025-09-29 12:16:59'),(0,0,'Drpratapsinh','M0023','S0417','N','thims','2025-09-29 12:16:59'),(0,0,'Drpratapsinh','M0024','S0198','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0024','S0199','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0024','S0200','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0024','S0201','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0024','S0203','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0024','S0204','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0024','S0205','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0024','S0207','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0024','S0209','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0024','S0212','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0024','S0213','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0024','S0214','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0024','S0215','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0024','S0216','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0024','S0217','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0024','S0218','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0024','S0239','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0024','S0240','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0024','S0363','N','thims','2025-09-29 12:18:38'),(0,0,'Drpratapsinh','M0028','','N','thims','2025-09-29 12:17:14'),(0,0,'Drridham','M0001','S0014','N','thims','2025-09-29 12:16:01'),(0,0,'Drridham','M0001','S0021','N','thims','2025-09-29 12:16:01'),(0,0,'Drridham','M0001','S0022','N','thims','2025-09-29 12:16:01'),(0,0,'Drridham','M0002','S0398','N','thims','2025-09-29 12:23:29'),(0,0,'Drridham','M0004','S0043','N','thims','2025-09-29 12:17:47'),(0,0,'Drridham','M0004','S0044','N','thims','2025-09-29 12:17:47'),(0,0,'Drridham','M0004','S0171','N','thims','2025-09-29 12:17:47'),(0,0,'Drridham','M0005','S0049','N','thims','2025-09-29 12:19:42'),(0,0,'Drridham','M0005','S0140','N','thims','2025-09-29 12:19:42'),(0,0,'Drridham','M0005','S0141','N','thims','2025-09-29 12:19:42'),(0,0,'Drridham','M0005','S0143','N','thims','2025-09-29 12:19:42'),(0,0,'Drridham','M0005','S0144','N','thims','2025-09-29 12:19:42'),(0,0,'Drridham','M0005','S0147','N','thims','2025-09-29 12:19:42'),(0,0,'Drridham','M0005','S0148','N','thims','2025-09-29 12:19:42'),(0,0,'Drridham','M0005','S0170','N','thims','2025-09-29 12:19:42'),(0,0,'Drridham','M0005','S0234','N','thims','2025-09-29 12:19:42'),(0,0,'Drridham','M0016','S0035','N','thims','2025-09-29 12:16:17'),(0,0,'Drridham','M0016','S0394','N','thims','2025-09-29 12:16:17'),(0,0,'Drridham','M0016','S0416','N','thims','2025-09-29 12:16:17'),(0,0,'Drridham','M0017','S0039','N','thims','2025-09-29 12:19:00'),(0,0,'Drridham','M0017','S0040','N','thims','2025-09-29 12:19:00'),(0,0,'Drridham','M0017','S0150','N','thims','2025-09-29 12:19:00'),(0,0,'Drridham','M0017','S0378','N','thims','2025-09-29 12:19:00'),(0,0,'Drridham','M0017','S0379','N','thims','2025-09-29 12:19:00'),(0,0,'Drridham','M0017','S0383','N','thims','2025-09-29 12:19:00'),(0,0,'Drridham','M0021','S0131','N','thims','2025-10-10 13:08:52'),(0,0,'Drridham','M0021','S0155','N','thims','2025-10-10 13:08:52'),(0,0,'Drridham','M0021','S0419','N','thims','2025-10-10 13:08:52'),(0,0,'Drridham','M0021','S0565','N','thims','2025-10-10 13:08:52'),(0,0,'Drridham','M0023','S0177','N','thims','2025-09-29 12:16:59'),(0,0,'Drridham','M0023','S0179','N','thims','2025-09-29 12:16:59'),(0,0,'Drridham','M0023','S0180','N','thims','2025-09-29 12:16:59'),(0,0,'Drridham','M0023','S0184','N','thims','2025-09-29 12:16:59'),(0,0,'Drridham','M0023','S0233','N','thims','2025-09-29 12:16:59'),(0,0,'Drridham','M0023','S0236','N','thims','2025-09-29 12:16:59'),(0,0,'Drridham','M0023','S0237','N','thims','2025-09-29 12:16:59'),(0,0,'Drridham','M0023','S0417','N','thims','2025-09-29 12:16:59'),(0,0,'Drridham','M0024','S0198','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0024','S0199','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0024','S0200','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0024','S0201','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0024','S0203','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0024','S0204','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0024','S0205','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0024','S0207','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0024','S0209','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0024','S0212','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0024','S0213','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0024','S0214','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0024','S0215','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0024','S0216','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0024','S0217','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0024','S0218','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0024','S0239','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0024','S0240','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0024','S0363','N','thims','2025-09-29 12:18:38'),(0,0,'Drridham','M0028','','N','thims','2025-09-29 12:17:14'),(0,0,'Drsagar','M0001','S0014','N','thims','2025-09-29 12:16:01'),(0,0,'Drsagar','M0001','S0021','N','thims','2025-09-29 12:16:01'),(0,0,'Drsagar','M0001','S0022','N','thims','2025-09-29 12:16:01'),(0,0,'Drsagar','M0002','S0398','N','thims','2025-09-29 12:23:29'),(0,0,'Drsagar','M0004','S0043','N','thims','2025-09-29 12:17:47'),(0,0,'Drsagar','M0004','S0044','N','thims','2025-09-29 12:17:47'),(0,0,'Drsagar','M0004','S0171','N','thims','2025-09-29 12:17:47'),(0,0,'Drsagar','M0005','S0049','N','thims','2025-09-29 12:19:42'),(0,0,'Drsagar','M0005','S0140','N','thims','2025-09-29 12:19:42'),(0,0,'Drsagar','M0005','S0141','N','thims','2025-09-29 12:19:42'),(0,0,'Drsagar','M0005','S0143','N','thims','2025-09-29 12:19:42'),(0,0,'Drsagar','M0005','S0144','N','thims','2025-09-29 12:19:42'),(0,0,'Drsagar','M0005','S0147','N','thims','2025-09-29 12:19:42'),(0,0,'Drsagar','M0005','S0148','N','thims','2025-09-29 12:19:42'),(0,0,'Drsagar','M0005','S0170','N','thims','2025-09-29 12:19:42'),(0,0,'Drsagar','M0005','S0234','N','thims','2025-09-29 12:19:42'),(0,0,'Drsagar','M0016','S0035','N','thims','2025-09-29 12:16:17'),(0,0,'Drsagar','M0016','S0394','N','thims','2025-09-29 12:16:17'),(0,0,'Drsagar','M0016','S0416','N','thims','2025-09-29 12:16:17'),(0,0,'Drsagar','M0017','S0039','N','thims','2025-09-29 12:19:00'),(0,0,'Drsagar','M0017','S0040','N','thims','2025-09-29 12:19:00'),(0,0,'Drsagar','M0017','S0150','N','thims','2025-09-29 12:19:00'),(0,0,'Drsagar','M0017','S0378','N','thims','2025-09-29 12:19:00'),(0,0,'Drsagar','M0017','S0379','N','thims','2025-09-29 12:19:00'),(0,0,'Drsagar','M0017','S0383','N','thims','2025-09-29 12:19:00'),(0,0,'Drsagar','M0021','S0131','N','thims','2025-10-10 13:09:09'),(0,0,'Drsagar','M0021','S0132','N','thims','2025-10-10 13:09:09'),(0,0,'Drsagar','M0021','S0155','N','thims','2025-10-10 13:09:09'),(0,0,'Drsagar','M0021','S0419','N','thims','2025-10-10 13:09:09'),(0,0,'Drsagar','M0021','S0565','N','thims','2025-10-10 13:09:09'),(0,0,'Drsagar','M0023','S0177','N','thims','2025-09-29 12:16:59'),(0,0,'Drsagar','M0023','S0179','N','thims','2025-09-29 12:16:59'),(0,0,'Drsagar','M0023','S0180','N','thims','2025-09-29 12:16:59'),(0,0,'Drsagar','M0023','S0184','N','thims','2025-09-29 12:16:59'),(0,0,'Drsagar','M0023','S0233','N','thims','2025-09-29 12:16:59'),(0,0,'Drsagar','M0023','S0236','N','thims','2025-09-29 12:16:59'),(0,0,'Drsagar','M0023','S0237','N','thims','2025-09-29 12:16:59'),(0,0,'Drsagar','M0023','S0417','N','thims','2025-09-29 12:16:59'),(0,0,'Drsagar','M0024','S0198','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0024','S0199','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0024','S0200','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0024','S0201','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0024','S0203','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0024','S0204','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0024','S0205','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0024','S0207','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0024','S0209','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0024','S0212','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0024','S0213','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0024','S0214','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0024','S0215','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0024','S0216','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0024','S0217','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0024','S0218','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0024','S0239','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0024','S0240','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0024','S0363','N','thims','2025-09-29 12:18:38'),(0,0,'Drsagar','M0028','','N','thims','2025-09-29 12:17:14'),(0,0,'janvi','M0001','S0014','N','thims','2025-10-08 05:10:52'),(0,0,'janvi','M0001','S0021','N','thims','2025-10-08 05:10:52'),(0,0,'janvi','M0001','S0022','N','thims','2025-10-08 05:10:52'),(0,0,'janvi','M0004','S0043','N','thims','2025-10-08 05:15:20'),(0,0,'janvi','M0004','S0044','N','thims','2025-10-08 05:15:20'),(0,0,'janvi','M0004','S0171','N','thims','2025-10-08 05:15:20'),(0,0,'janvi','M0005','S0049','N','thims','2025-10-08 05:16:29'),(0,0,'janvi','M0005','S0140','N','thims','2025-10-08 05:16:29'),(0,0,'janvi','M0005','S0141','N','thims','2025-10-08 05:16:29'),(0,0,'janvi','M0005','S0142','N','thims','2025-10-08 05:16:29'),(0,0,'janvi','M0005','S0143','N','thims','2025-10-08 05:16:29'),(0,0,'janvi','M0005','S0144','N','thims','2025-10-08 05:16:29'),(0,0,'janvi','M0005','S0145','N','thims','2025-10-08 05:16:29'),(0,0,'janvi','M0005','S0146','N','thims','2025-10-08 05:16:29'),(0,0,'janvi','M0005','S0147','N','thims','2025-10-08 05:16:29'),(0,0,'janvi','M0005','S0148','N','thims','2025-10-08 05:16:29'),(0,0,'janvi','M0005','S0168','N','thims','2025-10-08 05:16:29'),(0,0,'janvi','M0005','S0169','N','thims','2025-10-08 05:16:29'),(0,0,'janvi','M0005','S0170','N','thims','2025-10-08 05:16:29'),(0,0,'janvi','M0005','S0234','N','thims','2025-10-08 05:16:29'),(0,0,'janvi','M0005','S0350','N','thims','2025-10-08 05:16:29'),(0,0,'janvi','M0005','S0391','N','thims','2025-10-08 05:16:29'),(0,0,'janvi','M0005','S0535','N','thims','2025-10-08 05:16:29'),(0,0,'janvi','M0005','S0536','N','thims','2025-10-08 05:16:29'),(0,0,'janvi','M0014','S0560','N','thims','2025-11-26 05:11:28'),(0,0,'janvi','M0016','S0035','N','thims','2025-10-08 08:12:52'),(0,0,'janvi','M0016','S0293','N','thims','2025-10-08 08:12:52'),(0,0,'janvi','M0016','S0394','N','thims','2025-10-08 08:12:52'),(0,0,'janvi','M0016','S0416','N','thims','2025-10-08 08:12:52'),(0,0,'janvi','M0017','S0039','N','thims','2025-10-08 05:15:00'),(0,0,'janvi','M0017','S0040','N','thims','2025-10-08 05:15:00'),(0,0,'janvi','M0017','S0150','N','thims','2025-10-08 05:15:00'),(0,0,'janvi','M0017','S0383','N','thims','2025-10-08 05:15:00'),(0,0,'janvi','M0023','S0177','N','thims','2025-12-10 08:03:37'),(0,0,'janvi','M0023','S0178','N','thims','2025-12-10 08:03:37'),(0,0,'janvi','M0023','S0179','N','thims','2025-12-10 08:03:37'),(0,0,'janvi','M0023','S0180','N','thims','2025-12-10 08:03:37'),(0,0,'janvi','M0023','S0182','N','thims','2025-12-10 08:03:37'),(0,0,'janvi','M0023','S0184','N','thims','2025-12-10 08:03:37'),(0,0,'janvi','M0023','S0186','N','thims','2025-12-10 08:03:37'),(0,0,'janvi','M0023','S0278','N','thims','2025-12-10 08:03:37'),(0,0,'janvi','M0023','S0380','N','thims','2025-12-10 08:03:37'),(0,0,'janvi','M0023','S0417','N','thims','2025-12-10 08:03:37'),(0,0,'janvi','M0023','S0533','N','thims','2025-12-10 08:03:37'),(0,0,'janvi','M0023','S0562','N','thims','2025-12-10 08:03:37'),(0,0,'janvi','M0024','S0198','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0201','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0203','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0204','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0205','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0207','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0209','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0213','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0214','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0215','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0216','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0218','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0239','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0240','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0307','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0308','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0363','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0364','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0368','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0024','S0534','N','thims','2025-10-08 05:18:06'),(0,0,'janvi','M0028','','N','thims','2025-10-08 05:10:40'),(0,0,'janvi','M0056','S0548','N','thims','2025-11-26 05:11:42'),(0,0,'manshi','M0001','S0014','N','thims','2025-10-08 05:10:52'),(0,0,'manshi','M0001','S0021','N','thims','2025-10-08 05:10:52'),(0,0,'manshi','M0001','S0022','N','thims','2025-10-08 05:10:52'),(0,0,'manshi','M0004','S0043','N','thims','2025-10-08 05:15:20'),(0,0,'manshi','M0004','S0044','N','thims','2025-10-08 05:15:20'),(0,0,'manshi','M0004','S0171','N','thims','2025-10-08 05:15:20'),(0,0,'manshi','M0005','S0049','N','thims','2025-10-08 05:16:29'),(0,0,'manshi','M0005','S0140','N','thims','2025-10-08 05:16:29'),(0,0,'manshi','M0005','S0141','N','thims','2025-10-08 05:16:29'),(0,0,'manshi','M0005','S0142','N','thims','2025-10-08 05:16:29'),(0,0,'manshi','M0005','S0143','N','thims','2025-10-08 05:16:29'),(0,0,'manshi','M0005','S0144','N','thims','2025-10-08 05:16:29'),(0,0,'manshi','M0005','S0145','N','thims','2025-10-08 05:16:29'),(0,0,'manshi','M0005','S0146','N','thims','2025-10-08 05:16:29'),(0,0,'manshi','M0005','S0147','N','thims','2025-10-08 05:16:29'),(0,0,'manshi','M0005','S0148','N','thims','2025-10-08 05:16:29'),(0,0,'manshi','M0005','S0168','N','thims','2025-10-08 05:16:29'),(0,0,'manshi','M0005','S0169','N','thims','2025-10-08 05:16:29'),(0,0,'manshi','M0005','S0170','N','thims','2025-10-08 05:16:29'),(0,0,'manshi','M0005','S0234','N','thims','2025-10-08 05:16:29'),(0,0,'manshi','M0005','S0350','N','thims','2025-10-08 05:16:29'),(0,0,'manshi','M0005','S0391','N','thims','2025-10-08 05:16:29'),(0,0,'manshi','M0005','S0535','N','thims','2025-10-08 05:16:29'),(0,0,'manshi','M0005','S0536','N','thims','2025-10-08 05:16:29'),(0,0,'manshi','M0016','S0035','N','thims','2025-10-08 08:13:11'),(0,0,'manshi','M0016','S0293','N','thims','2025-10-08 08:13:11'),(0,0,'manshi','M0016','S0394','N','thims','2025-10-08 08:13:11'),(0,0,'manshi','M0016','S0416','N','thims','2025-10-08 08:13:11'),(0,0,'manshi','M0017','S0039','N','thims','2025-10-08 05:15:00'),(0,0,'manshi','M0017','S0040','N','thims','2025-10-08 05:15:00'),(0,0,'manshi','M0017','S0150','N','thims','2025-10-08 05:15:00'),(0,0,'manshi','M0017','S0383','N','thims','2025-10-08 05:15:00'),(0,0,'manshi','M0023','S0177','N','thims','2025-12-10 08:03:56'),(0,0,'manshi','M0023','S0178','N','thims','2025-12-10 08:03:56'),(0,0,'manshi','M0023','S0179','N','thims','2025-12-10 08:03:56'),(0,0,'manshi','M0023','S0180','N','thims','2025-12-10 08:03:56'),(0,0,'manshi','M0023','S0182','N','thims','2025-12-10 08:03:56'),(0,0,'manshi','M0023','S0184','N','thims','2025-12-10 08:03:56'),(0,0,'manshi','M0023','S0186','N','thims','2025-12-10 08:03:56'),(0,0,'manshi','M0023','S0278','N','thims','2025-12-10 08:03:56'),(0,0,'manshi','M0023','S0380','N','thims','2025-12-10 08:03:56'),(0,0,'manshi','M0023','S0417','N','thims','2025-12-10 08:03:56'),(0,0,'manshi','M0023','S0533','N','thims','2025-12-10 08:03:56'),(0,0,'manshi','M0023','S0562','N','thims','2025-12-10 08:03:56'),(0,0,'manshi','M0024','S0198','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0201','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0203','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0204','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0205','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0207','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0209','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0213','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0214','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0215','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0216','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0218','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0239','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0240','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0307','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0308','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0363','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0364','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0368','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0024','S0534','N','thims','2025-10-08 05:18:06'),(0,0,'manshi','M0028','','N','thims','2025-10-08 05:10:40'),(0,0,'mo','M0001','S0022','N','thims','2025-11-26 05:32:18'),(0,0,'mo','M0017','S0040','N','thims','2025-10-03 10:25:10'),(0,0,'mo','M0023','S0182','N','thims','2025-11-26 05:32:09'),(0,0,'mo','M0023','S0186','N','thims','2025-11-26 05:32:09'),(0,0,'mo','M0023','S0380','N','thims','2025-11-26 05:32:09'),(0,0,'mo','M0024','S0199','N','thims','2025-12-02 08:08:44'),(0,0,'mo','M0024','S0200','N','thims','2025-12-02 08:08:44'),(0,0,'mo','M0024','S0213','N','thims','2025-12-02 08:08:44'),(0,0,'priyanshi','M0001','S0014','N','thims','2025-10-08 05:10:52'),(0,0,'priyanshi','M0001','S0021','N','thims','2025-10-08 05:10:52'),(0,0,'priyanshi','M0001','S0022','N','thims','2025-10-08 05:10:52'),(0,0,'priyanshi','M0004','S0043','N','thims','2025-10-08 05:15:20'),(0,0,'priyanshi','M0004','S0044','N','thims','2025-10-08 05:15:20'),(0,0,'priyanshi','M0004','S0171','N','thims','2025-10-08 05:15:20'),(0,0,'priyanshi','M0005','S0049','N','thims','2025-10-08 05:16:29'),(0,0,'priyanshi','M0005','S0140','N','thims','2025-10-08 05:16:29'),(0,0,'priyanshi','M0005','S0141','N','thims','2025-10-08 05:16:29'),(0,0,'priyanshi','M0005','S0142','N','thims','2025-10-08 05:16:29'),(0,0,'priyanshi','M0005','S0143','N','thims','2025-10-08 05:16:29'),(0,0,'priyanshi','M0005','S0144','N','thims','2025-10-08 05:16:29'),(0,0,'priyanshi','M0005','S0145','N','thims','2025-10-08 05:16:29'),(0,0,'priyanshi','M0005','S0146','N','thims','2025-10-08 05:16:29'),(0,0,'priyanshi','M0005','S0147','N','thims','2025-10-08 05:16:29'),(0,0,'priyanshi','M0005','S0148','N','thims','2025-10-08 05:16:29'),(0,0,'priyanshi','M0005','S0168','N','thims','2025-10-08 05:16:29'),(0,0,'priyanshi','M0005','S0169','N','thims','2025-10-08 05:16:29'),(0,0,'priyanshi','M0005','S0170','N','thims','2025-10-08 05:16:29'),(0,0,'priyanshi','M0005','S0234','N','thims','2025-10-08 05:16:29'),(0,0,'priyanshi','M0005','S0350','N','thims','2025-10-08 05:16:29'),(0,0,'priyanshi','M0005','S0391','N','thims','2025-10-08 05:16:29'),(0,0,'priyanshi','M0005','S0535','N','thims','2025-10-08 05:16:29'),(0,0,'priyanshi','M0005','S0536','N','thims','2025-10-08 05:16:29'),(0,0,'priyanshi','M0014','S0560','N','thims','2025-11-26 05:48:30'),(0,0,'priyanshi','M0016','S0035','N','thims','2025-10-08 06:47:05'),(0,0,'priyanshi','M0016','S0293','N','thims','2025-10-08 06:47:05'),(0,0,'priyanshi','M0016','S0394','N','thims','2025-10-08 06:47:05'),(0,0,'priyanshi','M0016','S0416','N','thims','2025-10-08 06:47:05'),(0,0,'priyanshi','M0017','S0039','N','thims','2025-10-08 05:15:00'),(0,0,'priyanshi','M0017','S0040','N','thims','2025-10-08 05:15:00'),(0,0,'priyanshi','M0017','S0150','N','thims','2025-10-08 05:15:00'),(0,0,'priyanshi','M0017','S0383','N','thims','2025-10-08 05:15:00'),(0,0,'priyanshi','M0023','S0177','N','thims','2025-12-10 08:04:27'),(0,0,'priyanshi','M0023','S0178','N','thims','2025-12-10 08:04:27'),(0,0,'priyanshi','M0023','S0179','N','thims','2025-12-10 08:04:27'),(0,0,'priyanshi','M0023','S0180','N','thims','2025-12-10 08:04:27'),(0,0,'priyanshi','M0023','S0182','N','thims','2025-12-10 08:04:27'),(0,0,'priyanshi','M0023','S0184','N','thims','2025-12-10 08:04:27'),(0,0,'priyanshi','M0023','S0186','N','thims','2025-12-10 08:04:27'),(0,0,'priyanshi','M0023','S0278','N','thims','2025-12-10 08:04:27'),(0,0,'priyanshi','M0023','S0380','N','thims','2025-12-10 08:04:27'),(0,0,'priyanshi','M0023','S0417','N','thims','2025-12-10 08:04:27'),(0,0,'priyanshi','M0023','S0533','N','thims','2025-12-10 08:04:27'),(0,0,'priyanshi','M0023','S0562','N','thims','2025-12-10 08:04:27'),(0,0,'priyanshi','M0024','S0198','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0201','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0203','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0204','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0205','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0207','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0209','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0213','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0214','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0215','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0216','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0218','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0239','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0240','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0307','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0308','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0363','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0364','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0368','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0024','S0534','N','thims','2025-10-08 05:18:06'),(0,0,'priyanshi','M0028','','N','thims','2025-10-08 05:10:40'),(0,0,'priyanshi','M0056','S0548','N','thims','2025-11-26 05:48:42'),(0,0,'reception','M0001','S0014','N','thims','2025-10-08 05:10:52'),(0,0,'reception','M0001','S0021','N','thims','2025-10-08 05:10:52'),(0,0,'reception','M0001','S0022','N','thims','2025-10-08 05:10:52'),(0,0,'reception','M0004','S0043','N','thims','2025-10-08 05:15:20'),(0,0,'reception','M0004','S0044','N','thims','2025-10-08 05:15:20'),(0,0,'reception','M0004','S0171','N','thims','2025-10-08 05:15:20'),(0,0,'reception','M0005','S0049','N','thims','2025-10-08 05:16:29'),(0,0,'reception','M0005','S0140','N','thims','2025-10-08 05:16:29'),(0,0,'reception','M0005','S0141','N','thims','2025-10-08 05:16:29'),(0,0,'reception','M0005','S0142','N','thims','2025-10-08 05:16:29'),(0,0,'reception','M0005','S0143','N','thims','2025-10-08 05:16:29'),(0,0,'reception','M0005','S0144','N','thims','2025-10-08 05:16:29'),(0,0,'reception','M0005','S0145','N','thims','2025-10-08 05:16:29'),(0,0,'reception','M0005','S0146','N','thims','2025-10-08 05:16:29'),(0,0,'reception','M0005','S0147','N','thims','2025-10-08 05:16:29'),(0,0,'reception','M0005','S0148','N','thims','2025-10-08 05:16:29'),(0,0,'reception','M0005','S0168','N','thims','2025-10-08 05:16:29'),(0,0,'reception','M0005','S0169','N','thims','2025-10-08 05:16:29'),(0,0,'reception','M0005','S0170','N','thims','2025-10-08 05:16:29'),(0,0,'reception','M0005','S0234','N','thims','2025-10-08 05:16:29'),(0,0,'reception','M0005','S0350','N','thims','2025-10-08 05:16:29'),(0,0,'reception','M0005','S0391','N','thims','2025-10-08 05:16:29'),(0,0,'reception','M0005','S0535','N','thims','2025-10-08 05:16:29'),(0,0,'reception','M0005','S0536','N','thims','2025-10-08 05:16:29'),(0,0,'reception','M0014','S0560','N','thims','2025-11-26 05:12:07'),(0,0,'reception','M0016','S0035','N','thims','2025-10-08 08:13:37'),(0,0,'reception','M0016','S0293','N','thims','2025-10-08 08:13:37'),(0,0,'reception','M0016','S0394','N','thims','2025-10-08 08:13:37'),(0,0,'reception','M0016','S0416','N','thims','2025-10-08 08:13:37'),(0,0,'reception','M0017','S0039','N','thims','2025-10-10 11:48:57'),(0,0,'reception','M0017','S0040','N','thims','2025-10-10 11:48:57'),(0,0,'reception','M0017','S0150','N','thims','2025-10-10 11:48:57'),(0,0,'reception','M0017','S0378','N','thims','2025-10-10 11:48:57'),(0,0,'reception','M0017','S0379','N','thims','2025-10-10 11:48:57'),(0,0,'reception','M0017','S0383','N','thims','2025-10-10 11:48:57'),(0,0,'reception','M0021','S0131','N','thims','2025-10-10 12:08:31'),(0,0,'reception','M0021','S0155','N','thims','2025-10-10 12:08:31'),(0,0,'reception','M0021','S0157','N','thims','2025-10-10 12:08:31'),(0,0,'reception','M0023','S0177','N','thims','2025-12-10 08:04:40'),(0,0,'reception','M0023','S0178','N','thims','2025-12-10 08:04:40'),(0,0,'reception','M0023','S0179','N','thims','2025-12-10 08:04:40'),(0,0,'reception','M0023','S0180','N','thims','2025-12-10 08:04:40'),(0,0,'reception','M0023','S0182','N','thims','2025-12-10 08:04:40'),(0,0,'reception','M0023','S0184','N','thims','2025-12-10 08:04:40'),(0,0,'reception','M0023','S0186','N','thims','2025-12-10 08:04:40'),(0,0,'reception','M0023','S0278','N','thims','2025-12-10 08:04:40'),(0,0,'reception','M0023','S0380','N','thims','2025-12-10 08:04:40'),(0,0,'reception','M0023','S0417','N','thims','2025-12-10 08:04:40'),(0,0,'reception','M0023','S0533','N','thims','2025-12-10 08:04:40'),(0,0,'reception','M0023','S0562','N','thims','2025-12-10 08:04:40'),(0,0,'reception','M0024','S0198','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0201','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0203','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0204','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0205','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0207','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0209','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0213','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0214','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0215','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0216','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0218','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0239','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0240','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0307','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0308','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0363','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0364','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0368','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0024','S0534','N','thims','2025-10-08 05:18:06'),(0,0,'reception','M0028','','N','thims','2025-10-08 05:10:40'),(0,0,'reception','M0056','S0548','N','thims','2025-11-26 05:11:55'),(0,0,'riya','M0004','S0043','N','thims','2025-12-13 08:37:27'),(0,0,'riya','M0004','S0044','N','thims','2025-12-13 08:37:27'),(0,0,'riya','M0004','S0171','N','thims','2025-12-13 08:37:27'),(0,0,'riya','M0004','S0563','N','thims','2025-12-13 08:37:27'),(0,0,'riya','M0005','S0049','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0140','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0141','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0142','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0143','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0144','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0145','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0146','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0147','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0148','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0168','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0169','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0170','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0224','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0234','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0350','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0391','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0393','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0412','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0535','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0005','S0536','N','thims','2025-11-01 12:22:04'),(0,0,'riya','M0016','S0035','N','thims','2025-10-08 05:11:12'),(0,0,'riya','M0016','S0394','N','thims','2025-10-08 05:11:12'),(0,0,'riya','M0016','S0416','N','thims','2025-10-08 05:11:12'),(0,0,'riya','M0017','S0039','N','thims','2025-10-10 12:13:22'),(0,0,'riya','M0017','S0040','N','thims','2025-10-10 12:13:22'),(0,0,'riya','M0017','S0150','N','thims','2025-10-10 12:13:22'),(0,0,'riya','M0017','S0378','N','thims','2025-10-10 12:13:22'),(0,0,'riya','M0017','S0379','N','thims','2025-10-10 12:13:22'),(0,0,'riya','M0017','S0383','N','thims','2025-10-10 12:13:22'),(0,0,'riya','M0021','S0131','N','thims','2025-12-02 08:25:49'),(0,0,'riya','M0021','S0155','N','thims','2025-12-02 08:25:49'),(0,0,'riya','M0021','S0157','N','thims','2025-12-02 08:25:49'),(0,0,'riya','M0021','S0158','N','thims','2025-12-02 08:25:49'),(0,0,'riya','M0021','S0159','N','thims','2025-12-02 08:25:49'),(0,0,'riya','M0023','S0177','N','thims','2025-12-10 08:04:56'),(0,0,'riya','M0023','S0179','N','thims','2025-12-10 08:04:56'),(0,0,'riya','M0023','S0180','N','thims','2025-12-10 08:04:56'),(0,0,'riya','M0023','S0182','N','thims','2025-12-10 08:04:56'),(0,0,'riya','M0023','S0184','N','thims','2025-12-10 08:04:56'),(0,0,'riya','M0023','S0186','N','thims','2025-12-10 08:04:56'),(0,0,'riya','M0023','S0278','N','thims','2025-12-10 08:04:56'),(0,0,'riya','M0023','S0326','N','thims','2025-12-10 08:04:56'),(0,0,'riya','M0023','S0380','N','thims','2025-12-10 08:04:56'),(0,0,'riya','M0023','S0417','N','thims','2025-12-10 08:04:56'),(0,0,'riya','M0023','S0491','N','thims','2025-12-10 08:04:56'),(0,0,'riya','M0023','S0533','N','thims','2025-12-10 08:04:56'),(0,0,'riya','M0023','S0562','N','thims','2025-12-10 08:04:56'),(0,0,'riya','M0024','S0198','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0201','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0202','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0203','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0204','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0205','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0207','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0209','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0213','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0214','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0215','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0216','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0218','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0239','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0240','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0307','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0308','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0359','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0363','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0364','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0365','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0368','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0534','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0024','S0566','N','thims','2025-10-14 08:43:06'),(0,0,'riya','M0028','','N','thims','2025-10-08 05:10:40'),(0,0,'riya','M0035','S0418','N','thims','2025-10-08 07:15:50'),(0,0,'shweta','M0001','S0014','N','thims','2025-10-08 05:10:52'),(0,0,'shweta','M0001','S0021','N','thims','2025-10-08 05:10:52'),(0,0,'shweta','M0001','S0022','N','thims','2025-10-08 05:10:52'),(0,0,'shweta','M0004','S0043','N','thims','2025-10-08 05:15:20'),(0,0,'shweta','M0004','S0044','N','thims','2025-10-08 05:15:20'),(0,0,'shweta','M0004','S0171','N','thims','2025-10-08 05:15:20'),(0,0,'shweta','M0005','S0049','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0140','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0141','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0142','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0143','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0144','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0145','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0146','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0147','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0148','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0168','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0169','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0170','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0234','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0350','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0391','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0393','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0412','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0535','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0005','S0536','N','thims','2025-11-03 05:42:53'),(0,0,'shweta','M0016','S0035','N','thims','2025-10-08 06:47:59'),(0,0,'shweta','M0016','S0293','N','thims','2025-10-08 06:47:59'),(0,0,'shweta','M0016','S0394','N','thims','2025-10-08 06:47:59'),(0,0,'shweta','M0016','S0416','N','thims','2025-10-08 06:47:59'),(0,0,'shweta','M0017','S0039','N','thims','2025-10-08 05:15:00'),(0,0,'shweta','M0017','S0040','N','thims','2025-10-08 05:15:00'),(0,0,'shweta','M0017','S0150','N','thims','2025-10-08 05:15:00'),(0,0,'shweta','M0017','S0383','N','thims','2025-10-08 05:15:00'),(0,0,'shweta','M0021','S0131','N','thims','2025-10-08 06:25:54'),(0,0,'shweta','M0023','S0177','N','thims','2025-12-10 08:05:10'),(0,0,'shweta','M0023','S0178','N','thims','2025-12-10 08:05:10'),(0,0,'shweta','M0023','S0179','N','thims','2025-12-10 08:05:10'),(0,0,'shweta','M0023','S0180','N','thims','2025-12-10 08:05:10'),(0,0,'shweta','M0023','S0182','N','thims','2025-12-10 08:05:10'),(0,0,'shweta','M0023','S0184','N','thims','2025-12-10 08:05:10'),(0,0,'shweta','M0023','S0186','N','thims','2025-12-10 08:05:10'),(0,0,'shweta','M0023','S0278','N','thims','2025-12-10 08:05:10'),(0,0,'shweta','M0023','S0380','N','thims','2025-12-10 08:05:10'),(0,0,'shweta','M0023','S0417','N','thims','2025-12-10 08:05:10'),(0,0,'shweta','M0023','S0533','N','thims','2025-12-10 08:05:10'),(0,0,'shweta','M0023','S0562','N','thims','2025-12-10 08:05:10'),(0,0,'shweta','M0024','S0198','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0201','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0203','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0204','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0205','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0207','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0209','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0213','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0214','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0215','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0216','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0218','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0239','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0240','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0307','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0308','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0363','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0364','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0368','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0024','S0534','N','thims','2025-10-08 05:18:06'),(0,0,'shweta','M0028','','N','thims','2025-10-08 05:10:40'),(0,0,'thims','M0001','','N','thims','2024-05-02 13:15:39'),(0,0,'thims','M0001','S0001','N','ts-admin','2018-03-28 06:14:49'),(0,0,'thims','M0001','S0002','N','ts-admin','2018-03-28 06:14:49'),(0,0,'thims','M0001','S0003','N','ts-admin','2018-03-28 06:14:49'),(0,0,'thims','M0001','S0014','N','thims','2024-05-02 13:15:39'),(0,0,'thims','M0001','S0021','N','thims','2024-05-02 13:15:39'),(0,0,'thims','M0001','S0022','N','thims','2024-05-02 13:15:39'),(0,0,'thims','M0001','S0265','N','thims','2024-05-02 13:15:39'),(0,0,'thims','M0001','S0266','N','thims','2024-05-02 13:15:39'),(0,0,'thims','M0001','S0311','N','thims','2024-05-02 13:15:39'),(0,0,'thims','M0001','S0492','N','thims','2024-05-02 13:15:39'),(0,0,'thims','M0002','','N','thims','2022-03-10 05:46:26'),(0,0,'thims','M0002','S0024','N','thims','2022-03-10 05:46:26'),(0,0,'thims','M0002','S0313','N','thims','2022-03-10 05:46:26'),(0,0,'thims','M0002','S0314','N','thims','2022-03-10 05:46:26'),(0,0,'thims','M0002','S0398','N','thims','2022-03-10 05:46:26'),(0,0,'thims','M0002','S0421','N','thims','2022-03-10 05:46:26'),(0,0,'thims','M0003','','N','thims','2024-05-02 13:17:15'),(0,0,'thims','M0003','S0029','N','thims','2024-05-02 13:17:15'),(0,0,'thims','M0003','S0030','N','thims','2024-05-02 13:17:15'),(0,0,'thims','M0003','S0032','N','thims','2024-05-02 13:17:15'),(0,0,'thims','M0003','S0034','N','thims','2024-05-02 13:17:15'),(0,0,'thims','M0003','S0382','N','thims','2024-05-02 13:17:15'),(0,0,'thims','M0004','','N','thims','2024-09-19 12:00:19'),(0,0,'thims','M0004','S0043','N','thims','2024-09-19 12:00:19'),(0,0,'thims','M0004','S0044','N','thims','2024-09-19 12:00:19'),(0,0,'thims','M0004','S0045','N','thims','2024-09-19 12:00:19'),(0,0,'thims','M0004','S0171','N','thims','2024-09-19 12:00:19'),(0,0,'thims','M0004','S0252','N','thims','2024-09-19 12:00:19'),(0,0,'thims','M0004','S0254','N','thims','2024-09-19 12:00:19'),(0,0,'thims','M0004','S0388','N','thims','2024-09-19 12:00:19'),(0,0,'thims','M0004','S0413','N','thims','2024-09-19 12:00:19'),(0,0,'thims','M0004','S0518','N','thims','2024-09-19 12:00:19'),(0,0,'thims','M0004','S0530','N','thims','2024-09-19 12:00:19'),(0,0,'thims','M0004','S0563','N','thims','2024-09-19 12:00:19'),(0,0,'thims','M0005','','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0049','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0140','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0141','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0142','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0143','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0144','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0145','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0146','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0147','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0148','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0168','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0169','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0170','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0172','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0173','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0176','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0224','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0230','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0231','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0232','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0234','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0235','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0277','N','thims','2022-07-08 12:54:57'),(0,0,'thims','M0005','S0312','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0329','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0349','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0350','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0372','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0373','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0385','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0387','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0391','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0393','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0412','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0415','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0435','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0436','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0511','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0515','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0520','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0521','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0522','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0523','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0524','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0531','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0532','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0535','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0536','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0561','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0005','S0567','N','thims','2025-12-05 05:47:26'),(0,0,'thims','M0006','','N','thims','2024-06-24 09:23:58'),(0,0,'thims','M0006','S0056','N','thims','2024-06-24 09:23:58'),(0,0,'thims','M0006','S0057','N','thims','2024-06-24 09:23:58'),(0,0,'thims','M0006','S0063','N','thims','2024-06-24 09:23:58'),(0,0,'thims','M0006','S0547','N','thims','2024-06-24 09:23:58'),(0,0,'thims','M0007','','N','thims','2021-07-21 14:01:07'),(0,0,'thims','M0007','S0064','N','thims','2021-07-21 14:01:07'),(0,0,'thims','M0007','S0306','N','thims','2021-07-21 14:01:07'),(0,0,'thims','M0007','S0327','N','thims','2021-07-21 14:01:07'),(0,0,'thims','M0007','S0355','N','thims','2021-07-21 14:01:07'),(0,0,'thims','M0012','','N','thims','2024-05-02 13:27:45'),(0,0,'thims','M0012','S0094','N','thims','2024-05-02 13:27:45'),(0,0,'thims','M0012','S0095','N','thims','2024-05-02 13:27:45'),(0,0,'thims','M0012','S0096','N','thims','2024-05-02 13:27:45'),(0,0,'thims','M0012','S0097','N','thims','2024-05-02 13:27:45'),(0,0,'thims','M0012','S0098','N','thims','2024-05-02 13:27:45'),(0,0,'thims','M0012','S0238','N','thims','2024-05-02 13:27:45'),(0,0,'thims','M0012','S0366','N','thims','2024-05-02 13:27:45'),(0,0,'thims','M0013','','N','thims','2024-05-02 13:26:43'),(0,0,'thims','M0013','S0101','N','thims','2024-05-02 13:26:43'),(0,0,'thims','M0013','S0102','N','thims','2024-05-02 13:26:43'),(0,0,'thims','M0013','S0105','N','thims','2024-05-02 13:26:43'),(0,0,'thims','M0013','S0125','N','thims','2024-05-02 13:26:43'),(0,0,'thims','M0013','S0126','N','thims','2024-05-02 13:26:43'),(0,0,'thims','M0013','S0165','N','thims','2024-05-02 13:26:43'),(0,0,'thims','M0013','S0166','N','thims','2024-05-02 13:26:43'),(0,0,'thims','M0013','S0267','N','thims','2024-05-02 13:26:43'),(0,0,'thims','M0013','S0269','N','thims','2024-05-02 13:26:43'),(0,0,'thims','M0013','S0275','N','thims','2024-05-02 13:26:43'),(0,0,'thims','M0013','S0369','N','thims','2024-05-02 13:26:43'),(0,0,'thims','M0013','S0389','N','thims','2024-05-02 13:26:43'),(0,0,'thims','M0013','S0390','N','thims','2024-05-02 13:26:43'),(0,0,'thims','M0014','','N','thims','2024-07-10 11:28:32'),(0,0,'thims','M0014','S0118','N','thims','2024-07-10 11:28:32'),(0,0,'thims','M0014','S0121','N','thims','2024-07-10 11:28:32'),(0,0,'thims','M0014','S0258','N','thims','2024-07-10 11:28:32'),(0,0,'thims','M0014','S0560','N','thims','2024-07-10 11:28:32'),(0,0,'thims','M0015','','N','thims','2024-05-03 08:59:00'),(0,0,'thims','M0015','S0309','N','thims','2024-05-03 08:59:00'),(0,0,'thims','M0015','S0310','N','thims','2024-05-03 08:59:00'),(0,0,'thims','M0015','S0344','N','thims','2024-05-03 08:59:00'),(0,0,'thims','M0015','S0351','N','thims','2024-05-03 08:59:00'),(0,0,'thims','M0015','S0352','N','thims','2024-05-03 08:59:00'),(0,0,'thims','M0015','S0374','N','thims','2024-05-03 08:59:00'),(0,0,'thims','M0015','S0375','N','thims','2024-05-03 08:59:00'),(0,0,'thims','M0015','S0488','N','thims','2024-05-03 08:59:00'),(0,0,'thims','M0015','S0496','N','thims','2024-05-03 08:59:00'),(0,0,'thims','M0015','S0505','N','thims','2024-05-03 08:59:00'),(0,0,'thims','M0016','','N','thims','2024-05-03 12:09:21'),(0,0,'thims','M0016','S0035','N','thims','2024-05-03 12:09:21'),(0,0,'thims','M0016','S0293','N','thims','2024-05-03 12:09:21'),(0,0,'thims','M0016','S0394','N','thims','2024-05-03 12:09:21'),(0,0,'thims','M0016','S0416','N','thims','2024-05-03 12:09:21'),(0,0,'thims','M0016','S0529','N','thims','2024-05-03 12:09:21'),(0,0,'thims','M0017','','N','thims','2024-05-03 06:23:21'),(0,0,'thims','M0017','S0039','N','thims','2024-05-03 06:23:21'),(0,0,'thims','M0017','S0040','N','thims','2024-05-03 06:23:21'),(0,0,'thims','M0017','S0150','N','thims','2024-05-03 06:23:21'),(0,0,'thims','M0017','S0378','N','thims','2024-05-03 06:23:21'),(0,0,'thims','M0017','S0379','N','thims','2024-05-03 06:23:21'),(0,0,'thims','M0017','S0383','N','thims','2024-05-03 06:23:21'),(0,0,'thims','M0017','S0494','N','thims','2024-05-03 06:23:21'),(0,0,'thims','M0017','S0495','N','thims','2024-05-03 06:23:21'),(0,0,'thims','M0018','','N','thims','2024-05-02 13:26:07'),(0,0,'thims','M0019','','N','ts-admin','2018-03-29 10:57:29'),(0,0,'thims','M0020','','N','ts-admin','2018-03-29 10:29:46'),(0,0,'thims','M0021','','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0131','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0132','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0133','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0134','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0135','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0136','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0137','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0138','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0139','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0153','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0154','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0155','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0156','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0157','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0158','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0159','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0160','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0161','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0163','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0164','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0248','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0249','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0253','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0255','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0256','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0257','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0268','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0271','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0377','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0396','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0403','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0407','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0410','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0411','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0419','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0420','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0489','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0490','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0493','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0500','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0501','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0502','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0503','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0504','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0506','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0507','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0513','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0514','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0021','S0565','N','thims','2025-10-10 12:39:13'),(0,0,'thims','M0022','','N','thims','2020-10-15 11:58:13'),(0,0,'thims','M0023','','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0177','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0178','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0179','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0180','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0182','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0183','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0184','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0185','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0186','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0187','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0188','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0189','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0190','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0191','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0233','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0236','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0237','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0278','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0279','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0326','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0348','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0371','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0380','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0400','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0417','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0491','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0512','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0519','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0533','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0023','S0562','N','thims','2024-09-05 06:37:14'),(0,0,'thims','M0024','','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0198','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0199','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0200','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0201','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0202','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0203','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0204','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0205','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0207','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0209','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0212','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0213','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0214','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0215','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0216','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0217','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0218','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0223','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0239','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0240','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0291','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0292','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0307','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0308','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0346','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0347','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0358','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0359','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0361','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0362','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0363','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0364','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0365','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0367','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0368','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0376','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0384','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0395','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0437','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0510','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0516','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0517','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0525','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0526','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0527','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0528','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0534','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0024','S0566','N','thims','2025-10-13 05:54:02'),(0,0,'thims','M0025','','N','thims','2024-05-02 13:22:56'),(0,0,'thims','M0025','S0225','N','thims','2024-05-02 13:22:56'),(0,0,'thims','M0025','S0226','N','thims','2024-05-02 13:22:56'),(0,0,'thims','M0025','S0227','N','thims','2024-05-02 13:22:56'),(0,0,'thims','M0025','S0228','N','thims','2024-05-02 13:22:56'),(0,0,'thims','M0025','S0229','N','thims','2024-05-02 13:22:56'),(0,0,'thims','M0027','','N','thims','2024-05-03 07:30:11'),(0,0,'thims','M0027','S0250','N','thims','2024-05-03 07:30:11'),(0,0,'thims','M0027','S0251','N','thims','2024-05-03 07:30:11'),(0,0,'thims','M0027','S0429','N','thims','2024-05-03 07:30:11'),(0,0,'thims','M0027','S0431','N','thims','2024-05-03 07:30:11'),(0,0,'thims','M0027','S0498','N','thims','2024-05-03 07:30:11'),(0,0,'thims','M0027','S0499','N','thims','2024-05-03 07:30:11'),(0,0,'thims','M0028','','N','thims','2018-07-03 12:40:45'),(0,0,'thims','M0029','','N','thims','2024-05-02 13:19:07'),(0,0,'thims','M0029','S0259','N','thims','2024-05-02 13:19:07'),(0,0,'thims','M0029','S0260','N','thims','2024-05-02 13:19:07'),(0,0,'thims','M0029','S0261','N','thims','2024-05-02 13:19:07'),(0,0,'thims','M0029','S0290','N','thims','2024-05-02 13:19:07'),(0,0,'thims','M0029','S0356','N','thims','2024-05-02 13:19:07'),(0,0,'thims','M0029','S0432','N','thims','2024-05-02 13:19:07'),(0,0,'thims','M0030','','N','thims','2024-05-02 13:21:07'),(0,0,'thims','M0030','S0262','N','thims','2024-05-02 13:21:07'),(0,0,'thims','M0030','S0263','N','thims','2024-05-02 13:21:07'),(0,0,'thims','M0030','S0264','N','thims','2024-05-02 13:21:07'),(0,0,'thims','M0030','S0274','N','thims','2024-05-02 13:21:07'),(0,0,'thims','M0031','','N','thims','2020-01-16 07:25:05'),(0,0,'thims','M0031','S0281','N','thims','2020-01-16 07:25:05'),(0,0,'thims','M0031','S0282','N','thims','2020-01-16 07:25:05'),(0,0,'thims','M0031','S0283','N','thims','2020-01-16 07:25:05'),(0,0,'thims','M0031','S0284','N','thims','2020-01-16 07:25:05'),(0,0,'thims','M0031','S0285','N','thims','2020-01-16 07:25:05'),(0,0,'thims','M0031','S0288','N','thims','2020-01-16 07:25:05'),(0,0,'thims','M0031','S0294','N','thims','2020-01-16 07:25:05'),(0,0,'thims','M0031','S0304','N','thims','2020-01-16 07:25:05'),(0,0,'thims','M0031','S0305','N','thims','2020-01-16 07:25:05'),(0,0,'thims','M0031','S0315','N','thims','2020-01-16 07:25:05'),(0,0,'thims','M0031','S0316','N','thims','2020-01-16 07:25:05'),(0,0,'thims','M0031','S0317','N','thims','2020-01-16 07:25:05'),(0,0,'thims','M0031','S0331','N','thims','2020-01-16 07:25:05'),(0,0,'thims','M0031','S0353','N','thims','2020-01-16 07:25:05'),(0,0,'thims','M0032','','N','thims','2024-05-02 13:14:10'),(0,0,'thims','M0032','S0295','N','thims','2024-05-02 13:14:10'),(0,0,'thims','M0032','S0296','N','thims','2024-05-02 13:14:10'),(0,0,'thims','M0032','S0297','N','thims','2024-05-02 13:14:10'),(0,0,'thims','M0032','S0298','N','thims','2024-05-02 13:14:10'),(0,0,'thims','M0032','S0299','N','thims','2024-05-02 13:14:10'),(0,0,'thims','M0032','S0300','N','thims','2024-05-02 13:14:10'),(0,0,'thims','M0032','S0302','N','thims','2024-05-02 13:14:10'),(0,0,'thims','M0032','S0325','N','thims','2024-05-02 13:14:10'),(0,0,'thims','M0032','S0328','N','thims','2024-05-02 13:14:10'),(0,0,'thims','M0032','S0330','N','thims','2024-05-02 13:14:10'),(0,0,'thims','M0032','S0354','N','thims','2024-05-02 13:14:10'),(0,0,'thims','M0032','S0402','N','thims','2024-05-02 13:14:10'),(0,0,'thims','M0033','','N','thims','2019-04-30 08:29:18'),(0,0,'thims','M0034','','N','thims','2024-05-02 13:19:20'),(0,0,'thims','M0034','S0318','N','thims','2024-05-02 13:19:20'),(0,0,'thims','M0034','S0319','N','thims','2024-05-02 13:19:20'),(0,0,'thims','M0034','S0320','N','thims','2024-05-02 13:19:20'),(0,0,'thims','M0034','S0321','N','thims','2024-05-02 13:19:20'),(0,0,'thims','M0034','S0322','N','thims','2024-05-02 13:19:20'),(0,0,'thims','M0034','S0323','N','thims','2024-05-02 13:19:20'),(0,0,'thims','M0034','S0324','N','thims','2024-05-02 13:19:20'),(0,0,'thims','M0034','S0334','N','thims','2024-05-02 13:19:20'),(0,0,'thims','M0034','S0338','N','thims','2024-05-02 13:19:20'),(0,0,'thims','M0034','S0339','N','thims','2024-05-02 13:19:20'),(0,0,'thims','M0034','S0340','N','thims','2024-05-02 13:19:20'),(0,0,'thims','M0034','S0341','N','thims','2024-05-02 13:19:20'),(0,0,'thims','M0034','S0414','N','thims','2024-05-02 13:19:20'),(0,0,'thims','M0034','S0433','N','thims','2024-05-02 13:19:20'),(0,0,'thims','M0034','S0434','N','thims','2024-05-02 13:19:20'),(0,0,'thims','M0035','','N','thims','2022-03-23 11:13:01'),(0,0,'thims','M0035','S0333','N','thims','2022-03-23 11:13:01'),(0,0,'thims','M0035','S0343','N','thims','2022-03-23 11:13:01'),(0,0,'thims','M0035','S0418','N','thims','2022-03-23 11:13:01'),(0,0,'thims','M0036','','N','thims','2024-05-02 13:19:52'),(0,0,'thims','M0036','S0336','N','thims','2024-05-02 13:19:52'),(0,0,'thims','M0036','S0337','N','thims','2024-05-02 13:19:52'),(0,0,'thims','M0036','S0342','N','thims','2024-05-02 13:19:52'),(0,0,'thims','M0037','','N','thims','2020-06-27 09:43:45'),(0,0,'thims','M0038','','N','thims','2020-09-22 06:27:50'),(0,0,'thims','M0039','','N','thims','2023-02-25 09:52:12'),(0,0,'thims','M0040','','N','thims','2024-05-02 13:15:01'),(0,0,'thims','M0041','','N','thims','2023-03-10 11:31:32'),(0,0,'thims','M0042','','N','thims','2022-04-28 09:41:41'),(0,0,'thims','M0042','S0424','N','thims','2022-04-28 09:41:41'),(0,0,'thims','M0042','S0425','N','thims','2022-04-28 09:41:41'),(0,0,'thims','M0042','S0426','N','thims','2022-04-28 09:41:41'),(0,0,'thims','M0042','S0427','N','thims','2022-04-28 09:41:41'),(0,0,'thims','M0042','S0428','N','thims','2022-04-28 09:41:41'),(0,0,'thims','M0043','','N','thims','2024-05-02 13:17:49'),(0,0,'thims','M0044','','N','thims','2023-02-25 13:53:22'),(0,0,'thims','M0044','S0438','N','thims','2023-02-25 13:53:22'),(0,0,'thims','M0044','S0439','N','thims','2023-02-25 13:53:22'),(0,0,'thims','M0044','S0440','N','thims','2023-02-25 13:53:22'),(0,0,'thims','M0044','S0441','N','thims','2023-02-25 13:53:22'),(0,0,'thims','M0044','S0442','N','thims','2023-02-25 13:53:22'),(0,0,'thims','M0044','S0443','N','thims','2023-02-25 13:53:22'),(0,0,'thims','M0044','S0444','N','thims','2023-02-25 13:53:22'),(0,0,'thims','M0044','S0445','N','thims','2023-02-25 13:53:22'),(0,0,'thims','M0045','','N','thims','2023-02-25 13:54:07'),(0,0,'thims','M0046','','N','thims','2023-02-25 13:54:56'),(0,0,'thims','M0046','S0446','N','thims','2023-02-25 13:54:56'),(0,0,'thims','M0046','S0447','N','thims','2023-02-25 13:54:56'),(0,0,'thims','M0046','S0448','N','thims','2023-02-25 13:54:56'),(0,0,'thims','M0046','S0449','N','thims','2023-02-25 13:54:56'),(0,0,'thims','M0046','S0450','N','thims','2023-02-25 13:54:56'),(0,0,'thims','M0046','S0451','N','thims','2023-02-25 13:54:56'),(0,0,'thims','M0047','','N','thims','2023-02-25 13:55:27'),(0,0,'thims','M0047','S0452','N','thims','2023-02-25 13:55:27'),(0,0,'thims','M0047','S0453','N','thims','2023-02-25 13:55:27'),(0,0,'thims','M0047','S0454','N','thims','2023-02-25 13:55:27'),(0,0,'thims','M0047','S0455','N','thims','2023-02-25 13:55:27'),(0,0,'thims','M0047','S0456','N','thims','2023-02-25 13:55:27'),(0,0,'thims','M0048','','N','thims','2023-02-25 13:55:49'),(0,0,'thims','M0048','S0457','N','thims','2023-02-25 13:55:49'),(0,0,'thims','M0048','S0458','N','thims','2023-02-25 13:55:49'),(0,0,'thims','M0049','','N','thims','2023-02-25 13:56:07'),(0,0,'thims','M0049','S0459','N','thims','2023-02-25 13:56:07'),(0,0,'thims','M0049','S0460','N','thims','2023-02-25 13:56:07'),(0,0,'thims','M0049','S0461','N','thims','2023-02-25 13:56:07'),(0,0,'thims','M0049','S0462','N','thims','2023-02-25 13:56:07'),(0,0,'thims','M0049','S0463','N','thims','2023-02-25 13:56:07'),(0,0,'thims','M0049','S0464','N','thims','2023-02-25 13:56:07'),(0,0,'thims','M0049','S0465','N','thims','2023-02-25 13:56:07'),(0,0,'thims','M0049','S0466','N','thims','2023-02-25 13:56:07'),(0,0,'thims','M0049','S0467','N','thims','2023-02-25 13:56:07'),(0,0,'thims','M0049','S0468','N','thims','2023-02-25 13:56:07'),(0,0,'thims','M0049','S0469','N','thims','2023-02-25 13:56:07'),(0,0,'thims','M0049','S0470','N','thims','2023-02-25 13:56:07'),(0,0,'thims','M0049','S0471','N','thims','2023-02-25 13:56:07'),(0,0,'thims','M0050','','N','thims','2023-02-25 13:56:29'),(0,0,'thims','M0050','S0472','N','thims','2023-02-25 13:56:29'),(0,0,'thims','M0050','S0473','N','thims','2023-02-25 13:56:29'),(0,0,'thims','M0050','S0474','N','thims','2023-02-25 13:56:29'),(0,0,'thims','M0050','S0475','N','thims','2023-02-25 13:56:29'),(0,0,'thims','M0050','S0476','N','thims','2023-02-25 13:56:29'),(0,0,'thims','M0050','S0477','N','thims','2023-02-25 13:56:29'),(0,0,'thims','M0051','','N','thims','2023-02-25 13:56:55'),(0,0,'thims','M0051','S0478','N','thims','2023-02-25 13:56:55'),(0,0,'thims','M0051','S0479','N','thims','2023-02-25 13:56:55'),(0,0,'thims','M0051','S0480','N','thims','2023-02-25 13:56:55'),(0,0,'thims','M0051','S0481','N','thims','2023-02-25 13:56:55'),(0,0,'thims','M0051','S0482','N','thims','2023-02-25 13:56:55'),(0,0,'thims','M0051','S0483','N','thims','2023-02-25 13:56:55'),(0,0,'thims','M0051','S0484','N','thims','2023-02-25 13:56:55'),(0,0,'thims','M0051','S0485','N','thims','2023-02-25 13:56:55'),(0,0,'thims','M0052','','N','thims','2023-02-25 13:57:13'),(0,0,'thims','M0052','S0486','N','thims','2023-02-25 13:57:13'),(0,0,'thims','M0052','S0487','N','thims','2023-02-25 13:57:13'),(0,0,'thims','M0053','','N','thims','2023-11-09 12:49:25'),(0,0,'thims','M0054','','N','thims','2024-05-03 12:00:06'),(0,0,'thims','M0055','','N','thims','2024-05-21 12:59:04'),(0,0,'thims','M0055','S0537','N','thims','2024-05-21 12:59:04'),(0,0,'thims','M0055','S0538','N','thims','2024-05-21 12:59:04'),(0,0,'thims','M0055','S0539','N','thims','2024-05-21 12:59:04'),(0,0,'thims','M0055','S0540','N','thims','2024-05-21 12:59:04'),(0,0,'thims','M0055','S0541','N','thims','2024-05-21 12:59:04'),(0,0,'thims','M0055','S0542','N','thims','2024-05-21 12:59:04'),(0,0,'thims','M0055','S0543','N','thims','2024-05-21 12:59:04'),(0,0,'thims','M0055','S0544','N','thims','2024-05-21 12:59:04'),(0,0,'thims','M0055','S0545','N','thims','2024-05-21 12:59:04'),(0,0,'thims','M0055','S0546','N','thims','2024-05-21 12:59:04'),(0,0,'thims','M0056','','N','thims','2024-07-10 11:28:47'),(0,0,'thims','M0056','S0548','N','thims','2024-07-10 11:28:47'),(0,0,'thims','M0056','S0549','N','thims','2024-07-10 11:28:47'),(0,0,'thims','M0056','S0550','N','thims','2024-07-10 11:28:47'),(0,0,'thims','M0056','S0551','N','thims','2024-07-10 11:28:47'),(0,0,'thims','M0056','S0552','N','thims','2024-07-10 11:28:47'),(0,0,'thims','M0056','S0553','N','thims','2024-07-10 11:28:47'),(0,0,'thims','M0056','S0554','N','thims','2024-07-10 11:28:47'),(0,0,'thims','M0056','S0555','N','thims','2024-07-10 11:28:47'),(0,0,'thims','M0056','S0556','N','thims','2024-07-10 11:28:47'),(0,0,'thims','M0056','S0557','N','thims','2024-07-10 11:28:47'),(0,0,'thims','M0056','S0558','N','thims','2024-07-10 11:28:47'),(0,0,'thims','M0056','S0559','N','thims','2024-07-10 11:28:47'),(0,0,'thims','S0034','C0009','N','thims','2022-03-15 10:45:10'),(0,0,'thims','S0034','C0010','N','thims','2022-03-15 10:45:10'),(0,0,'thims','S0034','C0011','N','thims','2022-03-15 10:45:10'),(0,0,'thims','S0034','C0073','N','thims','2022-03-15 10:45:10'),(0,0,'thims','S0034','C0074','N','thims','2022-03-15 10:45:10'),(0,0,'thims','S0034','C0236','N','thims','2022-03-15 10:45:10'),(0,0,'thims','S0034','C0246','N','thims','2022-03-15 10:45:10'),(0,0,'thims','S0094','','N','thims','2024-05-02 13:27:38'),(0,0,'thims','S0094','C0063','N','thims','2024-05-02 13:27:38'),(0,0,'thims','S0094','C0068','N','thims','2024-05-02 13:27:38'),(0,0,'thims','S0094','C0069','N','thims','2024-05-02 13:27:38'),(0,0,'thims','S0094','C0070','N','thims','2024-05-02 13:27:38'),(0,0,'thims','S0259','','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0075','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0076','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0077','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0078','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0079','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0080','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0115','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0116','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0117','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0118','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0176','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0181','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0184','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0185','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0186','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0187','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0188','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0200','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0218','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0219','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0220','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0224','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0225','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0228','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0235','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0237','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0238','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0239','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0259','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0259','C0261','N','thims','2024-05-02 13:18:16'),(0,0,'thims','S0260','C0081','N','thims','2023-08-16 10:18:22'),(0,0,'thims','S0260','C0082','N','thims','2023-08-16 10:18:22'),(0,0,'thims','S0260','C0083','N','thims','2023-08-16 10:18:22'),(0,0,'thims','S0260','C0084','N','thims','2023-08-16 10:18:22'),(0,0,'thims','S0260','C0085','N','thims','2023-08-16 10:18:22'),(0,0,'thims','S0260','C0086','N','thims','2023-08-16 10:18:22'),(0,0,'thims','S0260','C0087','N','thims','2023-08-16 10:18:22'),(0,0,'thims','S0260','C0088','N','thims','2023-08-16 10:18:22'),(0,0,'thims','S0260','C0258','N','thims','2023-08-16 10:18:22'),(0,0,'thims','S0261','C0089','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0090','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0091','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0092','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0093','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0094','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0095','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0096','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0097','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0098','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0099','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0100','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0101','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0138','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0139','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0157','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0167','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0175','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0178','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0179','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0191','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0192','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0193','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0196','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0197','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0198','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0199','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0205','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0207','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0208','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0210','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0213','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0214','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0215','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0216','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0226','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0227','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0229','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0230','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0231','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0234','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0241','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0242','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0247','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0248','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0257','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0261','C0260','N','thims','2023-08-16 10:25:14'),(0,0,'thims','S0262','C0102','N','thims','2022-09-22 07:28:17'),(0,0,'thims','S0262','C0103','N','thims','2022-09-22 07:28:17'),(0,0,'thims','S0262','C0104','N','thims','2022-09-22 07:28:17'),(0,0,'thims','S0262','C0105','N','thims','2022-09-22 07:28:17'),(0,0,'thims','S0262','C0119','N','thims','2022-09-22 07:28:17'),(0,0,'thims','S0262','C0120','N','thims','2022-09-22 07:28:17'),(0,0,'thims','S0262','C0121','N','thims','2022-09-22 07:28:17'),(0,0,'thims','S0262','C0124','N','thims','2022-09-22 07:28:17'),(0,0,'thims','S0262','C0209','N','thims','2022-09-22 07:28:17'),(0,0,'thims','S0262','C0221','N','thims','2022-09-22 07:28:17'),(0,0,'thims','S0262','C0222','N','thims','2022-09-22 07:28:17'),(0,0,'thims','S0262','C0223','N','thims','2022-09-22 07:28:17'),(0,0,'thims','S0262','C0243','N','thims','2022-09-22 07:28:17'),(0,0,'thims','S0262','C0244','N','thims','2022-09-22 07:28:17'),(0,0,'thims','S0262','C0245','N','thims','2022-09-22 07:28:17'),(0,0,'thims','S0263','C0106','N','thims','2020-06-25 06:33:10'),(0,0,'thims','S0263','C0107','N','thims','2020-06-25 06:33:10'),(0,0,'thims','S0263','C0108','N','thims','2020-06-25 06:33:10'),(0,0,'thims','S0263','C0109','N','thims','2020-06-25 06:33:10'),(0,0,'thims','S0263','C0110','N','thims','2020-06-25 06:33:10'),(0,0,'thims','S0263','C0111','N','thims','2020-06-25 06:33:10'),(0,0,'thims','S0263','C0112','N','thims','2020-06-25 06:33:10'),(0,0,'thims','S0263','C0206','N','thims','2020-06-25 06:33:10'),(0,0,'thims','S0264','C0113','N','thims','2020-12-07 09:41:13'),(0,0,'thims','S0264','C0114','N','thims','2020-12-07 09:41:13'),(0,0,'thims','S0264','C0162','N','thims','2020-12-07 09:41:13'),(0,0,'thims','S0264','C0163','N','thims','2020-12-07 09:41:13'),(0,0,'thims','S0264','C0164','N','thims','2020-12-07 09:41:13'),(0,0,'thims','S0264','C0165','N','thims','2020-12-07 09:41:13'),(0,0,'thims','S0264','C0166','N','thims','2020-12-07 09:41:13'),(0,0,'thims','S0264','C0180','N','thims','2020-12-07 09:41:13'),(0,0,'thims','S0264','C0190','N','thims','2020-12-07 09:41:13'),(0,0,'thims','S0264','C0211','N','thims','2020-12-07 09:41:13'),(0,0,'thims','S0264','C0212','N','thims','2020-12-07 09:41:13'),(0,0,'thims','S0264','C0232','N','thims','2020-12-07 09:41:13'),(0,0,'thims','S0274','C0122','N','thims','2022-10-07 07:23:39'),(0,0,'thims','S0274','C0123','N','thims','2022-10-07 07:23:39'),(0,0,'thims','S0274','C0233','N','thims','2022-10-07 07:23:39'),(0,0,'thims','S0281','C0126','N','thims','2019-05-23 11:01:56'),(0,0,'thims','S0281','C0127','N','thims','2019-05-23 11:01:56'),(0,0,'thims','S0281','C0128','N','thims','2019-05-23 11:01:56'),(0,0,'thims','S0281','C0156','N','thims','2019-05-23 11:01:56'),(0,0,'thims','S0281','C0161','N','thims','2019-05-23 11:01:56'),(0,0,'thims','S0282','C0129','N','thims','2019-02-26 12:21:37'),(0,0,'thims','S0282','C0130','N','thims','2019-02-26 12:21:37'),(0,0,'thims','S0283','C0131','N','thims','2019-04-20 10:11:48'),(0,0,'thims','S0283','C0132','N','thims','2019-04-20 10:11:48'),(0,0,'thims','S0283','C0136','N','thims','2019-04-20 10:11:48'),(0,0,'thims','S0283','C0141','N','thims','2019-04-20 10:11:48'),(0,0,'thims','S0283','C0149','N','thims','2019-04-20 10:11:48'),(0,0,'thims','S0284','C0137','N','thims','2019-06-21 12:57:42'),(0,0,'thims','S0284','C0142','N','thims','2019-06-21 12:57:42'),(0,0,'thims','S0284','C0143','N','thims','2019-06-21 12:57:42'),(0,0,'thims','S0284','C0169','N','thims','2019-06-21 12:57:42'),(0,0,'thims','S0284','C0170','N','thims','2019-06-21 12:57:42'),(0,0,'thims','S0284','C0171','N','thims','2019-06-21 12:57:42'),(0,0,'thims','S0284','C0172','N','thims','2019-06-21 12:57:42'),(0,0,'thims','S0294','C0144','N','thims','2019-10-24 11:13:15'),(0,0,'thims','S0294','C0145','N','thims','2019-10-24 11:13:15'),(0,0,'thims','S0294','C0146','N','thims','2019-10-24 11:13:15'),(0,0,'thims','S0294','C0147','N','thims','2019-10-24 11:13:15'),(0,0,'thims','S0294','C0148','N','thims','2019-10-24 11:13:15'),(0,0,'thims','S0294','C0154','N','thims','2019-10-24 11:13:15'),(0,0,'thims','S0294','C0155','N','thims','2019-10-24 11:13:15'),(0,0,'thims','S0294','C0158','N','thims','2019-10-24 11:13:15'),(0,0,'thims','S0294','C0159','N','thims','2019-10-24 11:13:15'),(0,0,'thims','S0294','C0160','N','thims','2019-10-24 11:13:15'),(0,0,'thims','S0294','C0168','N','thims','2019-10-24 11:13:15'),(0,0,'thims','S0294','C0189','N','thims','2019-10-24 11:13:15'),(0,0,'thims','S0304','C0150','N','thims','2019-05-02 10:11:59'),(0,0,'thims','S0304','C0151','N','thims','2019-05-02 10:11:59'),(0,0,'thims','S0304','C0152','N','thims','2019-05-02 10:11:59'),(0,0,'thims','S0304','C0153','N','thims','2019-05-02 10:11:59'),(0,0,'thims','S0315','C0173','N','thims','2019-07-06 11:28:32'),(0,0,'thims','S0315','C0174','N','thims','2019-07-06 11:28:32'),(0,0,'thims','S0315','C0177','N','thims','2019-07-06 11:28:32'),(0,0,'thims','S0334','C0182','N','thims','2024-05-02 13:19:28'),(0,0,'thims','S0334','C0183','N','thims','2024-05-02 13:19:28'),(0,0,'thims','S0353','C0194','N','thims','2020-01-16 07:25:11'),(0,0,'thims','S0353','C0195','N','thims','2020-01-16 07:25:11'),(0,0,'thims','S0356','C0201','N','thims','2021-09-13 07:36:50'),(0,0,'thims','S0356','C0202','N','thims','2021-09-13 07:36:50'),(0,0,'thims','S0356','C0203','N','thims','2021-09-13 07:36:50'),(0,0,'thims','S0356','C0204','N','thims','2021-09-13 07:36:50'),(0,0,'thims','S0356','C0240','N','thims','2021-09-13 07:36:50'),(0,0,'thims','S0432','C0249','N','thims','2022-05-06 06:43:25'),(0,0,'thims','S0432','C0250','N','thims','2022-05-06 06:43:25'),(0,0,'thims','S0432','C0251','N','thims','2022-05-06 06:43:25'),(0,0,'thims','S0432','C0252','N','thims','2022-05-06 06:43:25'),(0,0,'thims','S0432','C0253','N','thims','2022-05-06 06:43:25'),(0,0,'thims','S0432','C0254','N','thims','2022-05-06 06:43:25'),(0,0,'thims','S0432','C0255','N','thims','2022-05-06 06:43:25'),(0,0,'thims','S0432','C0256','N','thims','2022-05-06 06:43:25'),(0,0,'urvashi','M0001','S0014','N','thims','2025-10-08 05:10:52'),(0,0,'urvashi','M0001','S0021','N','thims','2025-10-08 05:10:52'),(0,0,'urvashi','M0001','S0022','N','thims','2025-10-08 05:10:52'),(0,0,'urvashi','M0004','S0043','N','thims','2025-10-08 05:15:20'),(0,0,'urvashi','M0004','S0044','N','thims','2025-10-08 05:15:20'),(0,0,'urvashi','M0004','S0171','N','thims','2025-10-08 05:15:20'),(0,0,'urvashi','M0005','S0049','N','thims','2025-10-08 05:16:29'),(0,0,'urvashi','M0005','S0140','N','thims','2025-10-08 05:16:29'),(0,0,'urvashi','M0005','S0141','N','thims','2025-10-08 05:16:29'),(0,0,'urvashi','M0005','S0142','N','thims','2025-10-08 05:16:29'),(0,0,'urvashi','M0005','S0143','N','thims','2025-10-08 05:16:29'),(0,0,'urvashi','M0005','S0144','N','thims','2025-10-08 05:16:29'),(0,0,'urvashi','M0005','S0145','N','thims','2025-10-08 05:16:29'),(0,0,'urvashi','M0005','S0146','N','thims','2025-10-08 05:16:29'),(0,0,'urvashi','M0005','S0147','N','thims','2025-10-08 05:16:29'),(0,0,'urvashi','M0005','S0148','N','thims','2025-10-08 05:16:29'),(0,0,'urvashi','M0005','S0168','N','thims','2025-10-08 05:16:29'),(0,0,'urvashi','M0005','S0169','N','thims','2025-10-08 05:16:29'),(0,0,'urvashi','M0005','S0170','N','thims','2025-10-08 05:16:29'),(0,0,'urvashi','M0005','S0234','N','thims','2025-10-08 05:16:29'),(0,0,'urvashi','M0005','S0350','N','thims','2025-10-08 05:16:29'),(0,0,'urvashi','M0005','S0391','N','thims','2025-10-08 05:16:29'),(0,0,'urvashi','M0005','S0535','N','thims','2025-10-08 05:16:29'),(0,0,'urvashi','M0005','S0536','N','thims','2025-10-08 05:16:29'),(0,0,'urvashi','M0016','S0035','N','thims','2025-10-08 08:14:00'),(0,0,'urvashi','M0016','S0293','N','thims','2025-10-08 08:14:00'),(0,0,'urvashi','M0016','S0394','N','thims','2025-10-08 08:14:00'),(0,0,'urvashi','M0016','S0416','N','thims','2025-10-08 08:14:00'),(0,0,'urvashi','M0017','S0039','N','thims','2025-10-08 05:15:00'),(0,0,'urvashi','M0017','S0040','N','thims','2025-10-08 05:15:00'),(0,0,'urvashi','M0017','S0150','N','thims','2025-10-08 05:15:00'),(0,0,'urvashi','M0017','S0383','N','thims','2025-10-08 05:15:00'),(0,0,'urvashi','M0023','S0177','N','thims','2025-12-10 08:05:26'),(0,0,'urvashi','M0023','S0178','N','thims','2025-12-10 08:05:26'),(0,0,'urvashi','M0023','S0179','N','thims','2025-12-10 08:05:26'),(0,0,'urvashi','M0023','S0180','N','thims','2025-12-10 08:05:26'),(0,0,'urvashi','M0023','S0182','N','thims','2025-12-10 08:05:26'),(0,0,'urvashi','M0023','S0184','N','thims','2025-12-10 08:05:26'),(0,0,'urvashi','M0023','S0186','N','thims','2025-12-10 08:05:26'),(0,0,'urvashi','M0023','S0278','N','thims','2025-12-10 08:05:26'),(0,0,'urvashi','M0023','S0380','N','thims','2025-12-10 08:05:26'),(0,0,'urvashi','M0023','S0417','N','thims','2025-12-10 08:05:26'),(0,0,'urvashi','M0023','S0533','N','thims','2025-12-10 08:05:26'),(0,0,'urvashi','M0023','S0562','N','thims','2025-12-10 08:05:26'),(0,0,'urvashi','M0024','S0198','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0201','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0203','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0204','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0205','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0207','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0209','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0213','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0214','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0215','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0216','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0218','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0239','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0240','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0307','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0308','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0363','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0364','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0368','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0024','S0534','N','thims','2025-10-08 05:18:06'),(0,0,'urvashi','M0028','','N','thims','2025-10-08 05:10:40'),(0,0,'urvashi','M0035','S0418','N','thims','2025-11-20 07:13:23'),(0,0,'vishal','M0001','S0014','N','thims','2025-10-08 05:10:52'),(0,0,'vishal','M0001','S0021','N','thims','2025-10-08 05:10:52'),(0,0,'vishal','M0001','S0022','N','thims','2025-10-08 05:10:52'),(0,0,'vishal','M0004','S0043','N','thims','2025-10-11 12:26:06'),(0,0,'vishal','M0004','S0044','N','thims','2025-10-11 12:26:06'),(0,0,'vishal','M0004','S0045','N','thims','2025-10-11 12:26:06'),(0,0,'vishal','M0004','S0171','N','thims','2025-10-11 12:26:06'),(0,0,'vishal','M0004','S0252','N','thims','2025-10-11 12:26:06'),(0,0,'vishal','M0005','S0049','N','thims','2025-10-08 05:16:29'),(0,0,'vishal','M0005','S0140','N','thims','2025-10-08 05:16:29'),(0,0,'vishal','M0005','S0141','N','thims','2025-10-08 05:16:29'),(0,0,'vishal','M0005','S0142','N','thims','2025-10-08 05:16:29'),(0,0,'vishal','M0005','S0143','N','thims','2025-10-08 05:16:29'),(0,0,'vishal','M0005','S0144','N','thims','2025-10-08 05:16:29'),(0,0,'vishal','M0005','S0145','N','thims','2025-10-08 05:16:29'),(0,0,'vishal','M0005','S0146','N','thims','2025-10-08 05:16:29'),(0,0,'vishal','M0005','S0147','N','thims','2025-10-08 05:16:29'),(0,0,'vishal','M0005','S0148','N','thims','2025-10-08 05:16:29'),(0,0,'vishal','M0005','S0168','N','thims','2025-10-08 05:16:29'),(0,0,'vishal','M0005','S0169','N','thims','2025-10-08 05:16:29'),(0,0,'vishal','M0005','S0170','N','thims','2025-10-08 05:16:29'),(0,0,'vishal','M0005','S0234','N','thims','2025-10-08 05:16:29'),(0,0,'vishal','M0005','S0350','N','thims','2025-10-08 05:16:29'),(0,0,'vishal','M0005','S0391','N','thims','2025-10-08 05:16:29'),(0,0,'vishal','M0005','S0535','N','thims','2025-10-08 05:16:29'),(0,0,'vishal','M0005','S0536','N','thims','2025-10-08 05:16:29'),(0,0,'vishal','M0016','S0035','N','thims','2025-10-08 08:14:07'),(0,0,'vishal','M0016','S0293','N','thims','2025-10-08 08:14:07'),(0,0,'vishal','M0016','S0394','N','thims','2025-10-08 08:14:07'),(0,0,'vishal','M0016','S0416','N','thims','2025-10-08 08:14:07'),(0,0,'vishal','M0017','S0039','N','thims','2025-10-10 12:13:10'),(0,0,'vishal','M0017','S0040','N','thims','2025-10-10 12:13:10'),(0,0,'vishal','M0017','S0150','N','thims','2025-10-10 12:13:10'),(0,0,'vishal','M0017','S0378','N','thims','2025-10-10 12:13:10'),(0,0,'vishal','M0017','S0379','N','thims','2025-10-10 12:13:10'),(0,0,'vishal','M0017','S0383','N','thims','2025-10-10 12:13:10'),(0,0,'vishal','M0021','S0131','N','thims','2025-10-11 12:39:39'),(0,0,'vishal','M0021','S0158','N','thims','2025-10-11 12:39:39'),(0,0,'vishal','M0021','S0159','N','thims','2025-10-11 12:39:39'),(0,0,'vishal','M0023','S0177','N','thims','2025-12-10 08:05:39'),(0,0,'vishal','M0023','S0179','N','thims','2025-12-10 08:05:39'),(0,0,'vishal','M0023','S0180','N','thims','2025-12-10 08:05:39'),(0,0,'vishal','M0023','S0182','N','thims','2025-12-10 08:05:39'),(0,0,'vishal','M0023','S0184','N','thims','2025-12-10 08:05:39'),(0,0,'vishal','M0023','S0186','N','thims','2025-12-10 08:05:39'),(0,0,'vishal','M0023','S0278','N','thims','2025-12-10 08:05:39'),(0,0,'vishal','M0023','S0380','N','thims','2025-12-10 08:05:39'),(0,0,'vishal','M0023','S0417','N','thims','2025-12-10 08:05:39'),(0,0,'vishal','M0023','S0533','N','thims','2025-12-10 08:05:39'),(0,0,'vishal','M0023','S0562','N','thims','2025-12-10 08:05:39'),(0,0,'vishal','M0024','S0198','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0201','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0203','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0204','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0205','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0207','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0209','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0213','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0214','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0215','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0216','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0218','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0239','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0240','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0307','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0308','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0363','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0364','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0368','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0534','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0024','S0566','N','thims','2025-10-13 05:55:14'),(0,0,'vishal','M0028','','N','thims','2025-10-08 05:10:40'),(0,0,'vishal','M0035','S0418','N','thims','2025-10-11 12:24:50');
/*!40000 ALTER TABLE `user_access_control` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_employee_mapping`
--

DROP TABLE IF EXISTS `user_employee_mapping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_employee_mapping` (
  `user_id` varchar(20) NOT NULL,
  `employee_id` int(11) NOT NULL,
  UNIQUE KEY `user_id` (`user_id`),
  UNIQUE KEY `employee_id` (`employee_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_employee_mapping`
--

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

--
-- Table structure for table `user_for_backup_notification`
--

DROP TABLE IF EXISTS `user_for_backup_notification`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_for_backup_notification` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `emp_id` varchar(100) NOT NULL,
  `emp_name` varchar(100) NOT NULL,
  `emp_role` varchar(100) NOT NULL,
  `emp_email` varchar(100) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `emp_email` (`emp_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_for_backup_notification`
--

LOCK TABLES `user_for_backup_notification` WRITE;
/*!40000 ALTER TABLE `user_for_backup_notification` DISABLE KEYS */;
INSERT INTO `user_for_backup_notification` VALUES (1,'thims','jigar oza','admin','techsmith.backupstatus@gmail.com');
/*!40000 ALTER TABLE `user_for_backup_notification` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_login_audit_trial`
--

DROP TABLE IF EXISTS `user_login_audit_trial`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_login_audit_trial` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `provider_code` varchar(20) NOT NULL,
  `user_id` varchar(10) NOT NULL,
  `login_time_stamp` datetime NOT NULL,
  `logout_time_stamp` datetime NOT NULL,
  `ip_address` varbinary(16) NOT NULL,
  `active` enum('Y','N') NOT NULL DEFAULT 'N' COMMENT 'if Y then login and if N then logout',
  `login_status` varchar(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4248 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_login_audit_trial`
--

LOCK TABLES `user_login_audit_trial` WRITE;
/*!40000 ALTER TABLE `user_login_audit_trial` DISABLE KEYS */;
INSERT INTO `user_login_audit_trial` VALUES (1,0,0,'masterdbv3','thims','2024-05-20 15:07:42','2024-05-21 17:34:25','','N','Success'),(2,0,0,'masterdbv3','thims','2024-05-20 17:22:25','2024-05-21 17:34:25','','N','Success'),(3,0,0,'masterdbv3','thims','2024-05-21 10:53:28','2024-05-21 17:34:25','','N','Success'),(4,0,0,'masterdbv3','thims','2024-05-21 17:33:12','2024-05-21 17:34:25','','N','Success'),(5,0,0,'masterdbv3','thims','2024-05-21 17:48:03','2024-05-23 11:43:01','','N','Success'),(6,0,0,'masterdbv3','thims','2024-05-21 18:25:39','2024-05-23 11:43:01','','N','Success'),(7,0,0,'masterdbv3','thims','2024-05-22 12:36:53','2024-05-23 11:43:01','','N','Success'),(8,0,0,'masterdbv3','thims','2024-05-23 11:28:15','2024-05-23 11:43:01',_binary '192.168.1.240','N','Success'),(9,0,0,'masterdbv3','thims','2024-05-24 11:22:03','2024-07-31 18:35:17',_binary '192.168.1.239','N','Success'),(10,0,0,'masterdbv3','thims','2024-06-05 14:17:11','2024-07-31 18:35:17','','N','Success'),(11,0,0,'masterdbv3','thims','2024-06-24 14:50:38','2024-07-31 18:35:17','','N','Success'),(12,0,0,'masterdbv3','thims','2024-06-25 12:36:41','2024-07-31 18:35:17','','N','Success'),(13,0,0,'masterdbv3','thims','2024-07-10 16:38:27','2024-07-31 18:35:17','','N','Success'),(14,0,0,'masterdbv3','thims','2024-07-12 18:08:41','2024-07-31 18:35:17','','N','Success'),(15,0,0,'masterdbv3','thims','2024-07-12 18:08:50','2024-07-31 18:35:17','','N','Success'),(16,0,0,'masterdbv3','thims','2024-07-20 10:46:20','2024-07-31 18:35:17','','N','Success'),(17,0,0,'masterdbv3','thims','2024-07-31 18:30:58','2024-07-31 18:35:17','','N','Success'),(18,0,0,'masterdbv3','thims','2024-08-09 17:12:25','2024-09-11 12:06:06','','N','Success'),(19,0,0,'masterdbv3','thims','2024-08-12 10:23:29','2024-09-11 12:06:06','','N','Success'),(20,0,0,'masterdbv3','thims','2024-08-22 19:18:50','2024-09-11 12:06:06','','N','Success'),(21,0,0,'masterdbv3','thims','2024-09-05 12:05:20','2024-09-11 12:06:06','','N','Success'),(22,0,0,'masterdbv3','thims','2024-09-11 12:04:22','2024-09-11 12:06:06','','N','Success'),(23,0,0,'masterdbv3','thims','2024-09-11 12:04:31','2024-09-11 12:06:06','','N','Success'),(24,0,0,'masterdbv3','thims','2024-09-11 15:05:10','2024-10-21 16:34:44','','N','Success'),(25,0,0,'masterdbv3','thims','2024-09-19 17:29:38','2024-10-21 16:34:44','','N','Success'),(26,0,0,'masterdbv3','thims','2024-09-21 15:50:08','2024-10-21 16:34:44','','N','Success'),(27,0,0,'masterdbv3','thims','2024-10-03 11:34:01','2024-10-21 16:34:44','','N','Success'),(28,0,0,'masterdbv3','thims','2024-10-21 16:26:18','2024-10-21 16:34:44','','N','Success'),(29,0,0,'masterdbv3','thims','2024-10-25 15:00:02','2025-03-31 15:09:21','','N','Success'),(30,0,0,'masterdbv3','thims','2024-11-12 10:54:28','2025-03-31 15:09:21','','N','Success'),(31,0,0,'masterdbv3','thims','2024-11-20 15:59:49','2025-03-31 15:09:21','','N','Success'),(32,0,0,'masterdbv3','thims','2024-11-27 12:31:07','2025-03-31 15:09:21','','N','Success'),(33,0,0,'masterdbv3','thims','2024-12-10 10:54:11','2025-03-31 15:09:21','','N','Success'),(34,0,0,'masterdbv3','thims','2024-12-16 14:25:51','2025-03-31 15:09:21','','N','Success'),(35,0,0,'masterdbv3','thims','2025-01-20 15:06:33','2025-03-31 15:09:21','','N','Success'),(36,0,0,'masterdbv3','thims','2025-01-21 12:50:03','2025-03-31 15:09:21','','N','Success'),(37,0,0,'masterdbv3','thims','2025-01-29 17:49:03','2025-03-31 15:09:21','','N','Success'),(38,0,0,'masterdbv3','thims','2025-02-03 17:42:24','2025-03-31 15:09:21','','N','Success'),(39,0,0,'masterdbv3','thims','2025-02-06 16:38:38','2025-03-31 15:09:21','','N','Success'),(40,0,0,'masterdbv3','thims','2025-03-31 15:08:45','2025-03-31 15:09:21','','N','Success'),(41,0,0,'masterdbv3','thims','2025-04-11 12:21:09','0000-00-00 00:00:00','','Y','Success'),(42,0,0,'masterdbv3','thims','2025-06-04 18:14:04','0000-00-00 00:00:00','','Y','Success'),(43,0,0,'masterdbv3','thims','2025-06-10 16:52:44','0000-00-00 00:00:00','','Y','Success'),(44,0,0,'masterdbv3','thims','2025-07-02 14:40:52','0000-00-00 00:00:00','','Y','Success'),(45,0,0,'masterdbv3','thims','2025-07-11 15:36:32','0000-00-00 00:00:00','','Y','Success'),(46,0,0,'masterdbv3','thims','2025-07-15 15:45:12','0000-00-00 00:00:00','','Y','Success'),(47,0,0,'masterdbv3','thims','2025-09-03 16:38:13','0000-00-00 00:00:00','','Y','Success'),(48,0,0,'masterdbv3','thims','2025-09-11 16:08:00','0000-00-00 00:00:00','','Y','Success'),(49,0,0,'genesis007','thims','2025-09-29 17:34:04','0000-00-00 00:00:00','','Y','Success'),(50,0,0,'genesis007','thims','2025-10-03 14:43:15','0000-00-00 00:00:00','','Y','Success'),(51,0,0,'genesis007','thims','2025-10-03 14:43:24','0000-00-00 00:00:00','','Y','Success'),(52,0,0,'genesis007','thims','2025-10-03 15:06:19','0000-00-00 00:00:00','','Y','Success'),(53,0,0,'genesis007','thims','2025-10-03 15:27:24','0000-00-00 00:00:00','','Y','Success'),(54,0,0,'genesis007','thims','2025-10-06 14:28:29','0000-00-00 00:00:00','','Y','Success'),(55,0,0,'gen005','reception','2025-10-06 14:32:45','2025-10-06 14:52:23','','N','Success'),(56,0,0,'gen005','priyanshi','2025-10-06 14:57:57','2025-10-06 14:59:27','','N','Success'),(57,0,0,'gen005','darshan','2025-10-06 14:59:44','2025-10-06 15:30:22','','N','Success'),(58,0,0,'GEN005','priyanshi','2025-10-06 15:01:07','2025-10-06 15:24:27','','N','Success'),(59,0,0,'GEN005','priyanshi','2025-10-06 15:48:43','2025-10-06 15:49:47','','N','Success'),(60,0,0,'gen005','VISHAL','2025-10-06 19:51:31','2025-10-08 10:37:44','','N','Success'),(61,0,0,'gen005','thims','2025-10-07 09:55:53','2025-10-08 11:22:16','','N','Success'),(62,0,0,'gen005','priyanshi','2025-10-07 12:07:47','2025-10-07 12:08:14','','N','Success'),(63,0,0,'gen005','Sweta','2025-10-07 19:35:31','2025-10-07 19:35:31','','N','Failure'),(64,0,0,'gen005','Shweta','2025-10-07 19:35:42','2025-10-08 15:06:08','','N','Success'),(65,0,0,'GEN005','URVASHI','2025-10-07 19:39:14','2025-10-07 19:39:14','','N','Failure'),(66,0,0,'GEN005','URVASHI','2025-10-07 19:39:15','2025-10-07 19:39:15','','N','Failure'),(67,0,0,'GEN005','Urvashi','2025-10-07 19:39:50','2025-10-07 19:39:50','','N','Failure'),(68,0,0,'GEN005','Urvashi','2025-10-07 19:39:51','2025-10-07 19:39:51','','N','Failure'),(69,0,0,'GEN005','Urvashi','2025-10-07 19:39:52','2025-10-07 19:39:52','','N','Failure'),(70,0,0,'GEN005','Urvashi','2025-10-07 19:39:53','2025-10-07 19:39:53','','N','Failure'),(71,0,0,'GEN005','Urvashi','2025-10-07 19:40:04','2025-10-07 19:40:04','','N','Failure'),(72,0,0,'GEN005','Urvashi','2025-10-07 19:40:04','2025-10-07 19:40:04','','N','Failure'),(73,0,0,'gen005','jayant','2025-10-07 19:42:30','2025-10-07 19:42:30','','N','Failure'),(74,0,0,'gen005','Jayant','2025-10-07 19:42:44','2025-10-07 19:42:44','','N','Failure'),(75,0,0,'gen005','Jayant','2025-10-07 19:43:16','2025-10-07 19:43:16','','N','Failure'),(76,0,0,'gen005','Drjayant','2025-10-07 19:44:02','2025-10-08 19:40:41','','N','Success'),(77,0,0,'gen005','drarchit','2025-10-07 19:53:34','2025-10-07 19:53:34','','N','Failure'),(78,0,0,'gen005','drarchit','2025-10-07 19:53:48','2025-10-10 17:29:57','','N','Success'),(79,0,0,'gen005','drarchit','2025-10-07 19:56:21','2025-10-10 17:29:57','','N','Success'),(80,0,0,'gen005','drarchit','2025-10-07 19:57:47','2025-10-10 17:29:57','','N','Success'),(81,0,0,'gen005','darshan','2025-10-07 20:12:07','2025-10-09 10:59:20','','N','Success'),(82,0,0,'GEN005','drashti','2025-10-08 09:50:59','2025-10-08 12:13:58','','N','Success'),(83,0,0,'gen005','SWETA','2025-10-08 09:52:10','2025-10-08 09:52:10','','N','Failure'),(84,0,0,'gen005','sweta','2025-10-08 09:52:25','2025-10-08 09:52:25','','N','Failure'),(85,0,0,'gen005','sweta','2025-10-08 09:52:31','2025-10-08 09:52:31','','N','Failure'),(86,0,0,'gen005','sweta','2025-10-08 09:52:49','2025-10-08 09:52:49','','N','Failure'),(87,0,0,'gen005','sweta','2025-10-08 09:52:54','2025-10-08 09:52:54','','N','Failure'),(88,0,0,'gen005','Sweta','2025-10-08 09:53:03','2025-10-08 09:53:03','','N','Failure'),(89,0,0,'gen005','shweta','2025-10-08 09:58:22','2025-10-08 15:06:08','','N','Success'),(90,0,0,'gen005','janvi','2025-10-08 10:00:03','2025-10-08 16:55:30','','N','Success'),(91,0,0,'gen005','Riya','2025-10-08 10:28:25','2025-10-08 10:29:23','','N','Success'),(92,0,0,'gen005','Reception','2025-10-08 10:29:41','2025-10-08 10:35:50','','N','Success'),(93,0,0,'gen005','thims','2025-10-08 10:32:08','2025-10-08 11:22:16','','N','Success'),(94,0,0,'GEN005','shweta','2025-10-08 10:32:24','2025-10-08 15:06:08','','N','Success'),(95,0,0,'GEN005','Manshi','2025-10-08 10:33:50','2025-10-08 11:44:18','','N','Success'),(96,0,0,'gen005','Riya','2025-10-08 10:36:01','2025-10-08 10:36:09','','N','Success'),(97,0,0,'gen005','Vishal','2025-10-08 10:36:24','2025-10-08 10:37:44','','N','Success'),(98,0,0,'gen005','Reception','2025-10-08 10:38:08','2025-10-08 11:31:50','','N','Success'),(99,0,0,'gen005','darshan','2025-10-08 10:45:54','2025-10-09 10:59:20','','N','Success'),(100,0,0,'gen005','pratap','2025-10-08 10:47:39','2025-10-08 10:47:39','','N','Failure'),(101,0,0,'gen005','Drpratapsi','2025-10-08 10:51:20','0000-00-00 00:00:00','','Y','Success'),(102,0,0,'GEN005','Riya','2025-10-08 11:02:42','2025-10-08 11:13:09','','N','Success'),(103,0,0,'gen005','Drjayant','2025-10-08 11:03:02','2025-10-08 19:40:41','','N','Success'),(104,0,0,'GEN005','drarchit','2025-10-08 11:12:28','2025-10-10 17:29:57','','N','Success'),(105,0,0,'GEN005','drashti','2025-10-08 11:13:16','2025-10-08 12:13:58','','N','Success'),(106,0,0,'gen005','Mo','2025-10-08 11:16:13','2025-10-10 12:17:46','','N','Success'),(107,0,0,'gen005','thims','2025-10-08 11:28:46','2025-10-08 11:57:51','','N','Success'),(108,0,0,'gen005','Mo','2025-10-08 11:31:22','2025-10-10 12:17:46','','N','Success'),(109,0,0,'gen005','Riya','2025-10-08 11:31:56','2025-10-08 12:47:48','','N','Success'),(110,0,0,'GEN005','Manisha','2025-10-08 11:46:07','2025-10-08 11:46:07','','N','Failure'),(111,0,0,'GEN005','Manisha','2025-10-08 11:46:11','2025-10-08 11:46:11','','N','Failure'),(112,0,0,'GEN005','Manshi','2025-10-08 11:46:16','2025-10-08 11:46:16','','N','Failure'),(113,0,0,'GEN005','Manshi','2025-10-08 11:46:19','2025-10-08 11:46:19','','N','Failure'),(114,0,0,'GEN005','Manshi','2025-10-08 11:46:22','2025-10-08 11:46:22','','N','Failure'),(115,0,0,'GEN005','Manshi','2025-10-08 11:46:43','2025-10-09 19:41:15','','N','Success'),(116,0,0,'gen005','thims','2025-10-08 11:53:03','2025-10-08 11:57:51','','N','Success'),(117,0,0,'gen005','thims','2025-10-08 12:11:01','2025-10-08 12:51:03','','N','Success'),(118,0,0,'gen005','priyanshi','2025-10-08 12:14:05','2025-10-08 12:14:44','','N','Success'),(119,0,0,'gen005','drashti','2025-10-08 12:14:54','2025-10-08 12:15:32','','N','Success'),(120,0,0,'gen005','priyanshi','2025-10-08 12:15:39','2025-10-08 12:18:26','','N','Success'),(121,0,0,'gen005','drashti','2025-10-08 12:18:32','2025-10-08 14:27:12','','N','Success'),(122,0,0,'gen005','thims','2025-10-08 12:45:29','2025-10-08 12:51:03','','N','Success'),(123,0,0,'gen005','Riya','2025-10-08 12:47:53','2025-10-08 12:52:18','','N','Success'),(124,0,0,'gen005','Riya','2025-10-08 12:51:19','2025-10-08 12:52:18','','N','Success'),(125,0,0,'gen005','thims','2025-10-08 12:52:38','2025-10-10 11:26:47','','N','Success'),(126,0,0,'GEN005','Sagar','2025-10-08 13:34:24','2025-10-08 13:34:24','','N','Failure'),(127,0,0,'GEN005','Drsagar','2025-10-08 13:35:24','2025-10-08 15:05:41','','N','Success'),(128,0,0,'gen005','thims','2025-10-08 13:42:24','2025-10-10 11:26:47','','N','Success'),(129,0,0,'gen005','thims','2025-10-08 13:51:19','2025-10-10 11:26:47','','N','Success'),(130,0,0,'gen005','thims','2025-10-08 14:15:16','2025-10-10 11:26:47','','N','Success'),(131,0,0,'GEN005','priyanshi','2025-10-08 14:27:18','2025-10-08 16:58:07','','N','Success'),(132,0,0,'gen005','darshan','2025-10-08 15:13:15','2025-10-09 10:59:20','','N','Success'),(133,0,0,'gen005','shweta','2025-10-08 16:38:28','2025-10-08 17:01:56','','N','Success'),(134,0,0,'gen005','janvi','2025-10-08 16:46:41','2025-10-08 16:55:30','','N','Success'),(135,0,0,'gen005','sweta','2025-10-08 16:55:46','2025-10-08 16:55:46','','N','Failure'),(136,0,0,'gen005','sweta','2025-10-08 16:55:49','2025-10-08 16:55:49','','N','Failure'),(137,0,0,'gen005','sweta','2025-10-08 16:56:02','2025-10-08 16:56:02','','N','Failure'),(138,0,0,'gen005','sweta','2025-10-08 16:56:03','2025-10-08 16:56:03','','N','Failure'),(139,0,0,'gen005','Sweta','2025-10-08 16:56:23','2025-10-08 16:56:23','','N','Failure'),(140,0,0,'gen005','Sweta','2025-10-08 16:56:25','2025-10-08 16:56:25','','N','Failure'),(141,0,0,'gen005','Sweta','2025-10-08 16:56:26','2025-10-08 16:56:26','','N','Failure'),(142,0,0,'gen005','Sweta','2025-10-08 16:56:26','2025-10-08 16:56:26','','N','Failure'),(143,0,0,'gen005','Shweta','2025-10-08 16:56:48','2025-10-08 17:01:56','','N','Success'),(144,0,0,'GEN005','shweta','2025-10-08 16:58:11','2025-10-08 17:01:56','','N','Success'),(145,0,0,'gen005','janvi','2025-10-08 17:02:04','2025-10-13 14:34:19','','N','Success'),(146,0,0,'gen005','darshan','2025-10-08 17:07:44','2025-10-09 10:59:20','','N','Success'),(147,0,0,'gen005','Manisha','2025-10-08 17:14:27','2025-10-08 17:14:27','','N','Failure'),(148,0,0,'gen005','Manshi','2025-10-08 17:14:39','2025-10-08 17:14:39','','N','Failure'),(149,0,0,'gen005','Manshi','2025-10-08 17:14:57','2025-10-09 19:41:15','','N','Success'),(150,0,0,'gen005','Drpratapsi','2025-10-08 17:16:59','0000-00-00 00:00:00','','Y','Success'),(151,0,0,'GEN005','Urvashi','2025-10-08 17:39:16','2025-10-08 21:06:36','','N','Success'),(152,0,0,'gen005','Drjayant','2025-10-08 17:52:59','2025-10-08 19:40:41','','N','Success'),(153,0,0,'GEN005','drarchit','2025-10-08 18:23:42','2025-10-10 17:29:57','','N','Success'),(154,0,0,'gen005','Vishal','2025-10-08 18:25:48','2025-10-09 10:54:26','','N','Success'),(155,0,0,'GEN005','Drsagar','2025-10-08 18:27:43','0000-00-00 00:00:00','','Y','Success'),(156,0,0,'GEN005','drarchit','2025-10-08 18:31:14','2025-10-10 17:29:57','','N','Success'),(157,0,0,'GEN005','shweta','2025-10-08 19:54:22','2025-10-09 10:18:41','','N','Success'),(158,0,0,'gen005','Mo','2025-10-08 23:14:06','2025-10-10 12:17:46','','N','Success'),(159,0,0,'gen005','Mo','2025-10-08 23:57:08','2025-10-10 12:17:46','','N','Success'),(160,0,0,'gen005','Shweta','2025-10-09 09:00:08','2025-10-09 10:18:41','','N','Success'),(161,0,0,'gen005','Shweta','2025-10-09 09:00:09','2025-10-09 10:18:41','','N','Success'),(162,0,0,'gen005','janvi','2025-10-09 09:16:20','2025-10-13 14:34:19','','N','Success'),(163,0,0,'GEN005','shweta','2025-10-09 09:18:47','2025-10-09 10:18:41','','N','Success'),(164,0,0,'GEN005','VISHAL','2025-10-09 09:29:43','2025-10-09 09:29:43','','N','Failure'),(165,0,0,'GEN005','VISHAL','2025-10-09 09:29:51','2025-10-09 10:54:26','','N','Success'),(166,0,0,'gen005','Manisha','2025-10-09 10:17:10','2025-10-09 10:17:10','','N','Failure'),(167,0,0,'gen005','Manshi','2025-10-09 10:17:14','2025-10-09 10:17:14','','N','Failure'),(168,0,0,'gen005','Manshi','2025-10-09 10:17:34','2025-10-09 19:41:15','','N','Success'),(169,0,0,'GEN005','Urvashi','2025-10-09 10:18:47','2025-10-09 14:59:06','','N','Success'),(170,0,0,'gen005','darshan','2025-10-09 10:44:07','2025-10-09 10:44:07','','N','Failure'),(171,0,0,'gen005','darshan','2025-10-09 10:44:17','2025-10-09 10:59:20','','N','Success'),(172,0,0,'GEN005','Urvashi','2025-10-09 10:51:09','2025-10-09 14:59:06','','N','Success'),(173,0,0,'GEN005','VISHAL','2025-10-09 10:54:20','2025-10-09 10:54:26','','N','Success'),(174,0,0,'GEN005','VISHAL','2025-10-09 10:57:29','2025-10-09 10:57:34','','N','Success'),(175,0,0,'GEN005','Reception','2025-10-09 10:57:47','2025-10-09 10:57:58','','N','Success'),(176,0,0,'GEN005','drarchit','2025-10-09 10:58:05','2025-10-10 17:29:57','','N','Success'),(177,0,0,'GEN005','Darshan','2025-10-09 10:58:14','2025-10-09 10:59:20','','N','Success'),(178,0,0,'GEN005','VISHAL','2025-10-09 10:59:25','2025-10-09 11:02:23','','N','Success'),(179,0,0,'GEN005','VISHAL','2025-10-09 11:02:26','2025-10-09 11:02:32','','N','Success'),(180,0,0,'GEN005','Reception','2025-10-09 11:03:04','2025-10-09 11:03:15','','N','Success'),(181,0,0,'GEN005','Darshan','2025-10-09 11:03:27','2025-10-09 11:08:19','','N','Success'),(182,0,0,'GEN005','VISHAL','2025-10-09 11:08:22','2025-10-09 14:42:40','','N','Success'),(183,0,0,'gen005','Drjayant','2025-10-09 11:14:52','2025-10-10 17:30:41','','N','Success'),(184,0,0,'gen005','janvi','2025-10-09 11:44:12','2025-10-13 14:34:19','','N','Success'),(185,0,0,'gen005','Urvashi','2025-10-09 11:44:48','2025-10-09 14:59:06','','N','Success'),(186,0,0,'gen005','janvi','2025-10-09 11:53:42','2025-10-13 14:34:19','','N','Success'),(187,0,0,'gen005','Urvashi','2025-10-09 11:54:19','2025-10-09 14:59:06','','N','Success'),(188,0,0,'GEN005','Mo','2025-10-09 11:55:21','2025-10-10 12:17:46','','N','Success'),(189,0,0,'GEN005','VISHAL','2025-10-09 12:01:01','2025-10-09 14:42:40','','N','Success'),(190,0,0,'gen005','Drpratapsi','2025-10-09 12:05:21','0000-00-00 00:00:00','','Y','Success'),(191,0,0,'GEN005','Manshi','2025-10-09 12:11:03','2025-10-09 19:41:15','','N','Success'),(192,0,0,'GEN005','Drsagar','2025-10-09 12:11:04','0000-00-00 00:00:00','','Y','Success'),(193,0,0,'gen005','Manshi','2025-10-09 12:12:53','2025-10-09 19:41:15','','N','Success'),(194,0,0,'gen005','Mo','2025-10-09 13:01:44','2025-10-10 12:17:46','','N','Success'),(195,0,0,'gen005','Mo','2025-10-09 13:02:54','2025-10-10 12:17:46','','N','Success'),(196,0,0,'gen005','Drjayant','2025-10-09 13:14:25','2025-10-10 17:30:41','','N','Success'),(197,0,0,'GEN005','Mo','2025-10-09 13:15:09','2025-10-10 12:17:46','','N','Success'),(198,0,0,'GEN005','VISHAL','2025-10-09 13:21:27','2025-10-09 14:42:40','','N','Success'),(199,0,0,'gen005','Shweta','2025-10-09 13:22:04','2025-10-09 14:25:05','','N','Success'),(200,0,0,'gen005','Shweta','2025-10-09 13:41:20','2025-10-09 14:25:05','','N','Success'),(201,0,0,'GEN005','VISHAL','2025-10-09 14:30:34','2025-10-09 14:42:40','','N','Success'),(202,0,0,'GEN005','VISHAL','2025-10-09 14:42:44','2025-10-09 16:41:07','','N','Success'),(203,0,0,'GEN005','Mo','2025-10-09 15:38:20','2025-10-10 12:17:46','','N','Success'),(204,0,0,'GEN005','VISHAL','2025-10-09 16:21:45','2025-10-09 16:41:07','','N','Success'),(205,0,0,'gen005','shweta','2025-10-09 16:40:51','2025-10-09 17:57:08','','N','Success'),(206,0,0,'GEN005','VISHAL','2025-10-09 16:41:11','2025-10-10 17:34:15','','N','Success'),(207,0,0,'gen005','darshan','2025-10-09 16:47:14','2025-10-10 11:28:00','','N','Success'),(208,0,0,'gen005','Mo','2025-10-09 16:54:41','2025-10-10 12:17:46','','N','Success'),(209,0,0,'gen005','janvi','2025-10-09 17:07:41','2025-10-13 14:34:19','','N','Success'),(210,0,0,'gen005','Manshi','2025-10-09 17:19:43','2025-10-09 19:41:15','','N','Success'),(211,0,0,'GEN005','VISHAL','2025-10-09 17:42:23','2025-10-10 17:34:15','','N','Success'),(212,0,0,'GEN005','Urvashi','2025-10-09 17:57:14','2025-10-14 15:19:25','','N','Success'),(213,0,0,'gen005','Drjayant','2025-10-09 18:04:31','2025-10-10 17:30:41','','N','Success'),(214,0,0,'gen005','Drpratapsi','2025-10-09 18:21:24','0000-00-00 00:00:00','','Y','Success'),(215,0,0,'GEN005','drarchit','2025-10-09 18:26:49','2025-10-10 17:29:57','','N','Success'),(216,0,0,'gen005','Manshi','2025-10-09 19:18:13','2025-10-09 19:41:15','','N','Success'),(217,0,0,'GEN005','Urvashi','2025-10-09 19:26:35','2025-10-14 15:19:25','','N','Success'),(218,0,0,'gen005','Mo','2025-10-09 19:27:24','2025-10-10 12:17:46','','N','Success'),(219,0,0,'GEN005','Manshi','2025-10-09 19:54:01','2025-10-10 11:42:52','','N','Success'),(220,0,0,'gen005','Shweta','2025-10-09 20:04:22','2025-10-10 10:42:10','','N','Success'),(221,0,0,'GEN005','VISHAL','2025-10-09 23:01:47','2025-10-10 17:34:15','','N','Success'),(222,0,0,'gen005','Mo','2025-10-09 23:50:46','2025-10-10 12:17:46','','N','Success'),(223,0,0,'gen005','priyanshi','2025-10-10 08:57:15','2025-10-10 10:01:06','','N','Success'),(224,0,0,'GEN005','drashti','2025-10-10 08:58:04','2025-10-10 10:39:48','','N','Success'),(225,0,0,'gen005','janvi','2025-10-10 09:16:57','2025-10-13 14:34:19','','N','Success'),(226,0,0,'gen005','Reception','2025-10-10 10:01:34','2025-10-10 10:03:31','','N','Success'),(227,0,0,'gen005','anjali','2025-10-10 10:03:46','2025-10-10 10:03:46','','N','Failure'),(228,0,0,'gen005','Reception','2025-10-10 10:03:59','2025-10-10 13:38:50','','N','Success'),(229,0,0,'gen005','Manshi','2025-10-10 10:11:37','2025-10-10 11:42:52','','N','Success'),(230,0,0,'gen005','Mo','2025-10-10 10:33:30','2025-10-10 12:17:46','','N','Success'),(231,0,0,'GEN005','sweta','2025-10-10 10:39:56','2025-10-10 10:39:56','','N','Failure'),(232,0,0,'GEN005','shweta','2025-10-10 10:40:03','2025-10-10 10:42:10','','N','Success'),(233,0,0,'gen005','darshan','2025-10-10 10:40:53','2025-10-10 11:28:00','','N','Success'),(234,0,0,'GEN005','drashti','2025-10-10 10:42:20','2025-10-10 17:29:30','','N','Success'),(235,0,0,'GEN005','drashti','2025-10-10 10:46:31','2025-10-10 17:29:30','','N','Success'),(236,0,0,'gen005','Mo','2025-10-10 10:57:26','2025-10-10 12:17:46','','N','Success'),(237,0,0,'gen005','Drpratapsi','2025-10-10 11:01:24','0000-00-00 00:00:00','','Y','Success'),(238,0,0,'gen005','drarchit','2025-10-10 11:06:16','2025-10-10 17:29:57','','N','Success'),(239,0,0,'gen005','Drjayant','2025-10-10 11:13:05','2025-10-10 17:30:41','','N','Success'),(240,0,0,'gen005','thims','2025-10-10 11:21:21','2025-10-10 11:26:47','','N','Success'),(241,0,0,'gen005','darshan','2025-10-10 11:27:00','2025-10-10 11:28:00','','N','Success'),(242,0,0,'gen005','thims','2025-10-10 11:28:05','2025-10-10 11:29:25','','N','Success'),(243,0,0,'gen005','darshan','2025-10-10 11:29:38','2025-10-10 17:35:48','','N','Success'),(244,0,0,'GEN005','Manshi','2025-10-10 12:08:07','2025-10-10 19:23:36','','N','Success'),(245,0,0,'GEN005','Manshi','2025-10-10 12:15:18','2025-10-10 19:23:36','','N','Success'),(246,0,0,'gen005','Mo','2025-10-10 12:23:32','2025-10-11 10:48:23','','N','Success'),(247,0,0,'gen005','Drjayant','2025-10-10 12:50:26','2025-10-10 17:30:41','','N','Success'),(248,0,0,'GEN005','drarchit','2025-10-10 12:53:28','2025-10-10 17:29:57','','N','Success'),(249,0,0,'GEN005','Reception','2025-10-10 13:40:14','2025-10-10 14:52:21','','N','Success'),(250,0,0,'gen005','darshan','2025-10-10 14:22:16','2025-10-10 17:35:48','','N','Success'),(251,0,0,'gen005','priyanshi','2025-10-10 15:22:54','2025-10-10 16:22:31','','N','Success'),(252,0,0,'gen005','thims','2025-10-10 15:44:18','2025-10-10 16:05:24','','N','Success'),(253,0,0,'gen005','thims','2025-10-10 15:50:59','2025-10-10 16:05:24','','N','Success'),(254,0,0,'GEN005','Reception','2025-10-10 16:05:04','2025-10-10 17:36:20','','N','Success'),(255,0,0,'gen005','Drsagar','2025-10-10 16:05:38','0000-00-00 00:00:00','','Y','Success'),(256,0,0,'gen005','shweta','2025-10-10 16:22:37','2025-10-10 16:31:48','','N','Success'),(257,0,0,'gen005','drashti','2025-10-10 16:31:56','2025-10-10 17:29:30','','N','Success'),(258,0,0,'gen005','janvi','2025-10-10 16:34:41','2025-10-13 14:34:19','','N','Success'),(259,0,0,'gen005','Mo','2025-10-10 16:50:55','2025-10-11 10:48:23','','N','Success'),(260,0,0,'gen005','VISHAL','2025-10-10 16:54:01','2025-10-10 17:34:15','','N','Success'),(261,0,0,'gen005','Manshi','2025-10-10 17:00:53','2025-10-10 17:00:53','','N','Failure'),(262,0,0,'gen005','Manshi','2025-10-10 17:01:02','2025-10-10 19:23:36','','N','Success'),(263,0,0,'gen005','darshan','2025-10-10 17:12:59','2025-10-10 17:35:48','','N','Success'),(264,0,0,'gen005','thims','2025-10-10 17:17:58','2025-10-10 17:48:49','','N','Success'),(265,0,0,'GEN005','drarchit','2025-10-10 17:29:48','2025-10-10 17:29:57','','N','Success'),(266,0,0,'gen005','Drjayant','2025-10-10 17:30:16','2025-10-10 17:30:41','','N','Success'),(267,0,0,'gen005','Drdarshan','2025-10-10 17:30:56','2025-10-10 17:30:56','','N','Failure'),(268,0,0,'gen005','Darshan','2025-10-10 17:31:19','2025-10-10 17:35:48','','N','Success'),(269,0,0,'gen005','VISHAL','2025-10-10 17:34:18','2025-10-10 19:16:14','','N','Success'),(270,0,0,'GEN005','Reception','2025-10-10 17:35:57','2025-10-10 17:36:20','','N','Success'),(271,0,0,'gen005','Reception','2025-10-10 17:36:24','2025-10-10 17:36:39','','N','Success'),(272,0,0,'GEN005','Reception','2025-10-10 17:36:45','2025-10-10 17:36:53','','N','Success'),(273,0,0,'gen005','Reception','2025-10-10 17:37:06','2025-10-10 17:37:06','','N','Failure'),(274,0,0,'gen005','thims','2025-10-10 17:37:07','2025-10-10 17:48:49','','N','Success'),(275,0,0,'gen005','Reception','2025-10-10 17:38:43','2025-10-10 17:38:43','','N','Failure'),(276,0,0,'gen005','Reception','2025-10-10 17:38:46','2025-10-10 17:38:46','','N','Failure'),(277,0,0,'gen005','Reception','2025-10-10 17:38:53','2025-10-10 17:38:53','','N','Failure'),(278,0,0,'gen005','Reception','2025-10-10 17:39:09','2025-10-10 17:39:09','','N','Failure'),(279,0,0,'gen005','Reception','2025-10-10 17:40:02','2025-10-10 17:43:36','','N','Success'),(280,0,0,'GEN005','Drpratapsi','2025-10-10 17:43:59','2025-10-10 17:43:59','','N','Failure'),(281,0,0,'gen005','Drpratapsi','2025-10-10 17:44:40','2025-10-10 17:44:40','','N','Failure'),(282,0,0,'gen005','Drpratapsi','2025-10-10 17:46:36','2025-10-10 17:46:36','','N','Failure'),(283,0,0,'gen005','Drpratapsi','2025-10-10 17:49:07','0000-00-00 00:00:00','','Y','Success'),(284,0,0,'gen005','thims','2025-10-10 17:49:57','2025-10-10 17:56:30','','N','Success'),(285,0,0,'gen005','drashti','2025-10-10 17:51:36','2025-10-11 19:11:41','','N','Success'),(286,0,0,'gen005','darshan','2025-10-10 17:56:46','2025-10-10 18:36:46','','N','Success'),(287,0,0,'gen005','thims','2025-10-10 18:06:06','2025-10-10 18:34:04','','N','Success'),(288,0,0,'GEN005','Drsagar','2025-10-10 18:06:48','0000-00-00 00:00:00','','Y','Success'),(289,0,0,'GEN005','drarchit','2025-10-10 18:13:59','2025-10-14 13:08:28','','N','Success'),(290,0,0,'GEN005','Mo','2025-10-10 18:15:57','2025-10-11 10:48:23','','N','Success'),(291,0,0,'gen005','Drjayant','2025-10-10 18:17:34','2025-10-13 19:58:00','','N','Success'),(292,0,0,'gen005','VISHAL','2025-10-10 18:18:16','2025-10-10 19:16:14','','N','Success'),(293,0,0,'gen005','thims','2025-10-10 18:34:19','2025-10-10 18:34:50','','N','Success'),(294,0,0,'gen005','Drdarshn','2025-10-10 18:35:06','2025-10-10 18:35:06','','N','Failure'),(295,0,0,'gen005','Drdarshan','2025-10-10 18:35:28','2025-10-10 18:35:28','','N','Failure'),(296,0,0,'gen005','Darshan','2025-10-10 18:35:43','2025-10-10 18:36:46','','N','Success'),(297,0,0,'gen005','thims','2025-10-10 18:37:03','2025-10-11 11:00:07','','N','Success'),(298,0,0,'gen005','thims','2025-10-10 18:39:35','2025-10-11 11:00:07','','N','Success'),(299,0,0,'GEN005','Drridham','2025-10-10 18:40:25','2025-12-02 13:37:44','','N','Success'),(300,0,0,'gen005','VISHAL','2025-10-10 19:16:17','2025-10-10 21:27:19','','N','Success'),(301,0,0,'gen005','Reception','2025-10-10 19:25:45','2025-10-10 19:43:00','','N','Success'),(302,0,0,'gen005','Manshi','2025-10-10 19:44:16','2025-10-15 13:03:39','','N','Success'),(303,0,0,'gen005','VISHAL','2025-10-10 21:27:22','2025-10-10 21:34:31','','N','Success'),(304,0,0,'gen005','VISHAL','2025-10-10 21:34:34','2025-10-11 10:36:34','','N','Success'),(305,0,0,'GEN005','Mo','2025-10-10 23:48:56','2025-10-11 10:48:23','','N','Success'),(306,0,0,'GEN005','Mo','2025-10-11 01:18:06','2025-10-11 10:48:23','','N','Success'),(307,0,0,'gen005','priyanshi','2025-10-11 08:54:48','2025-10-11 09:34:57','','N','Success'),(308,0,0,'gen005','reception','2025-10-11 09:04:29','2025-10-11 09:04:29','','N','Failure'),(309,0,0,'gen005','reception','2025-10-11 09:04:40','2025-10-11 09:04:40','','N','Failure'),(310,0,0,'gen005','reception','2025-10-11 09:05:14','2025-10-11 09:05:14','','N','Failure'),(311,0,0,'gen005','RICEPTION','2025-10-11 09:05:23','2025-10-11 09:05:23','','N','Failure'),(312,0,0,'gen005','reception','2025-10-11 09:06:01','2025-10-11 09:06:01','','N','Failure'),(313,0,0,'gen005','reception','2025-10-11 09:06:04','2025-10-11 09:06:04','','N','Failure'),(314,0,0,'gen005','anjali','2025-10-11 09:06:43','2025-10-11 09:06:43','','N','Failure'),(315,0,0,'gen005','reception','2025-10-11 09:07:09','2025-10-11 09:07:09','','N','Failure'),(316,0,0,'gen005','reception','2025-10-11 09:07:10','2025-10-11 09:07:10','','N','Failure'),(317,0,0,'gen005','reception','2025-10-11 09:07:12','2025-10-11 09:07:12','','N','Failure'),(318,0,0,'gen005','reception','2025-10-11 09:07:14','2025-10-11 09:07:14','','N','Failure'),(319,0,0,'gen005','reception','2025-10-11 09:07:26','2025-10-11 12:58:57','','N','Success'),(320,0,0,'gen005','janvi','2025-10-11 09:09:36','2025-10-13 14:34:19','','N','Success'),(321,0,0,'gen005','VISHAL','2025-10-11 09:13:48','2025-10-11 10:36:34','','N','Success'),(322,0,0,'gen005','drashti','2025-10-11 09:35:03','2025-10-11 19:11:41','','N','Success'),(323,0,0,'gen005','Mo','2025-10-11 09:47:50','2025-10-11 10:48:23','','N','Success'),(324,0,0,'gen005','darshan','2025-10-11 09:48:13','2025-10-11 09:48:13','','N','Failure'),(325,0,0,'gen005','darshan','2025-10-11 09:48:28','2025-10-13 14:42:01','','N','Success'),(326,0,0,'gen005','VISHAL','2025-10-11 09:56:15','2025-10-11 10:36:34','','N','Success'),(327,0,0,'gen005','Manshi','2025-10-11 10:07:22','2025-10-15 13:03:39','','N','Success'),(328,0,0,'gen005','VISHAL','2025-10-11 10:37:36','2025-10-11 10:43:36','','N','Success'),(329,0,0,'gen005','MO','2025-10-11 10:43:59','2025-10-11 10:43:59','','N','Failure'),(330,0,0,'gen005','Mo','2025-10-11 10:44:08','2025-10-11 10:44:08','','N','Failure'),(331,0,0,'gen005','Mo','2025-10-11 10:44:32','2025-10-11 10:44:32','','N','Failure'),(332,0,0,'gen005','Mo','2025-10-11 10:44:46','2025-10-11 10:48:23','','N','Success'),(333,0,0,'gen005','VISHAL','2025-10-11 10:48:35','2025-10-11 11:30:26','','N','Success'),(334,0,0,'GEN005','drarchit','2025-10-11 10:52:27','2025-10-14 13:08:28','','N','Success'),(335,0,0,'gen005','thims','2025-10-11 10:58:48','2025-10-11 11:00:07','','N','Success'),(336,0,0,'gen005','Darshan','2025-10-11 11:00:31','2025-10-13 14:42:01','','N','Success'),(337,0,0,'GEN005','Mo','2025-10-11 11:11:29','2025-10-12 12:18:39','','N','Success'),(338,0,0,'gen005','Drjayant','2025-10-11 11:13:25','2025-10-13 19:58:00','','N','Success'),(339,0,0,'gen005','Reception','2025-10-11 11:31:12','2025-10-11 12:58:57','','N','Success'),(340,0,0,'gen005','VISHAL','2025-10-11 11:33:04','2025-10-11 11:54:51','','N','Success'),(341,0,0,'GEN005','Drsagar','2025-10-11 11:33:31','0000-00-00 00:00:00','','Y','Success'),(342,0,0,'GEN005','VISHAL','2025-10-11 11:54:40','2025-10-11 11:54:51','','N','Success'),(343,0,0,'gen005','Reception','2025-10-11 11:57:04','2025-10-11 12:58:57','','N','Success'),(344,0,0,'gen005','VISHAL','2025-10-11 12:00:24','2025-10-11 13:30:18','','N','Success'),(345,0,0,'GEN005','Drridham','2025-10-11 12:22:51','2025-12-02 13:37:44','','N','Success'),(346,0,0,'gen005','VISHAL','2025-10-11 12:22:54','2025-10-11 13:30:18','','N','Success'),(347,0,0,'gen005','Drpratapsi','2025-10-11 12:35:07','2025-10-11 12:35:07','','N','Failure'),(348,0,0,'gen005','Drpratapsi','2025-10-11 12:35:17','2025-10-11 12:35:17','','N','Failure'),(349,0,0,'gen005','Drpratapsi','2025-10-11 12:35:22','2025-10-11 12:35:22','','N','Failure'),(350,0,0,'gen005','drashti','2025-10-11 12:36:16','2025-10-11 19:11:41','','N','Success'),(351,0,0,'gen005','Drpratapsi','2025-10-11 12:36:24','2025-10-11 12:36:24','','N','Failure'),(352,0,0,'gen005','Drpratapsi','2025-10-11 12:40:22','0000-00-00 00:00:00','','Y','Success'),(353,0,0,'gen005','thims','2025-10-11 12:59:46','2025-10-13 14:47:29','','N','Success'),(354,0,0,'gen005','reception','2025-10-11 13:03:43','2025-10-11 13:06:24','','N','Success'),(355,0,0,'gen005','ANJALI','2025-10-11 13:07:08','2025-10-11 13:07:08','','N','Failure'),(356,0,0,'gen005','reception','2025-10-11 13:07:14','2025-10-11 17:49:32','','N','Success'),(357,0,0,'gen005','VISHAL','2025-10-11 13:37:46','2025-10-11 15:54:00','','N','Success'),(358,0,0,'gen005','priyanshi','2025-10-11 15:42:53','2025-10-15 10:18:35','','N','Success'),(359,0,0,'gen005','VISHAL','2025-10-11 15:44:12','2025-10-11 15:54:00','','N','Success'),(360,0,0,'gen005','VISHAL','2025-10-11 15:54:05','2025-10-11 15:54:15','','N','Success'),(361,0,0,'gen005','Reception','2025-10-11 15:54:27','2025-10-11 17:49:32','','N','Success'),(362,0,0,'gen005','VISHAL','2025-10-11 15:55:43','2025-10-11 16:56:39','','N','Success'),(363,0,0,'gen005','VISHAL','2025-10-11 15:56:09','2025-10-11 16:56:39','','N','Success'),(364,0,0,'gen005','VISHAL','2025-10-11 15:59:26','2025-10-11 16:56:39','','N','Success'),(365,0,0,'gen005','VISHAL','2025-10-11 16:01:05','2025-10-11 16:56:39','','N','Success'),(366,0,0,'gen005','drashti','2025-10-11 16:30:41','2025-10-11 19:11:41','','N','Success'),(367,0,0,'gen005','reception','2025-10-11 16:39:03','2025-10-11 17:49:32','','N','Success'),(368,0,0,'gen005','VISHAL','2025-10-11 16:56:43','2025-10-11 17:30:25','','N','Success'),(369,0,0,'GEN005','Mo','2025-10-11 17:15:30','2025-10-12 12:18:39','','N','Success'),(370,0,0,'gen005','Urvashi','2025-10-11 17:18:55','2025-10-14 15:19:25','','N','Success'),(371,0,0,'gen005','Manshi','2025-10-11 17:23:48','2025-10-15 13:03:39','','N','Success'),(372,0,0,'gen005','VISHAL','2025-10-11 17:31:50','2025-10-11 18:40:16','','N','Success'),(373,0,0,'GEN005','drashti','2025-10-11 17:41:28','2025-10-11 19:11:41','','N','Success'),(374,0,0,'gen005','thims','2025-10-11 17:44:27','2025-10-13 14:47:29','','N','Success'),(375,0,0,'gen005','Reception','2025-10-11 17:45:37','2025-10-11 17:49:32','','N','Success'),(376,0,0,'gen005','reception','2025-10-11 17:49:17','2025-10-11 17:49:32','','N','Success'),(377,0,0,'gen005','Reception','2025-10-11 17:49:36','2025-10-12 14:23:34','','N','Success'),(378,0,0,'gen005','reception','2025-10-11 18:16:27','2025-10-12 14:23:34','','N','Success'),(379,0,0,'gen005','Mo','2025-10-11 18:34:42','2025-10-12 12:18:39','','N','Success'),(380,0,0,'gen005','VISHAL','2025-10-11 18:40:19','2025-10-11 18:51:54','','N','Success'),(381,0,0,'gen005','VISHAL','2025-10-11 18:51:58','2025-10-12 10:41:44','','N','Success'),(382,0,0,'GEN005','drashti','2025-10-11 19:14:00','2025-10-15 14:04:09','','N','Success'),(383,0,0,'gen005','Drpratapsi','2025-10-11 19:21:27','0000-00-00 00:00:00','','Y','Success'),(384,0,0,'gen005','Mo','2025-10-11 20:15:13','2025-10-12 12:18:39','','N','Success'),(385,0,0,'gen005','Mo','2025-10-11 20:52:50','2025-10-12 12:18:39','','N','Success'),(386,0,0,'gen005','Reception','2025-10-11 21:23:05','2025-10-12 14:23:34','','N','Success'),(387,0,0,'gen005','VISHAL','2025-10-11 22:12:38','2025-10-12 10:41:44','','N','Success'),(388,0,0,'gen005','Mo','2025-10-11 22:18:15','2025-10-12 12:18:39','','N','Success'),(389,0,0,'gen005','Mo','2025-10-12 00:10:06','2025-10-12 12:18:39','','N','Success'),(390,0,0,'gen005','Mo','2025-10-12 00:40:52','2025-10-12 12:18:39','','N','Success'),(391,0,0,'gen005','Mo','2025-10-12 08:43:49','2025-10-12 12:18:39','','N','Success'),(392,0,0,'GEN005','janvi ','2025-10-12 09:12:14','2025-10-12 09:12:14','','N','Failure'),(393,0,0,'GEN005','janvi ','2025-10-12 09:12:17','2025-10-12 09:12:17','','N','Failure'),(394,0,0,'GEN005','janvi ','2025-10-12 09:12:18','2025-10-12 09:12:18','','N','Failure'),(395,0,0,'GEN005','janvi ','2025-10-12 09:12:27','2025-10-12 09:12:27','','N','Failure'),(396,0,0,'GEN005','janvi ','2025-10-12 09:12:30','2025-10-12 09:12:30','','N','Failure'),(397,0,0,'GEN005','janvi ','2025-10-12 09:12:52','2025-10-12 09:12:52','','N','Failure'),(398,0,0,'GEN005','Janvi ','2025-10-12 09:12:59','2025-10-12 09:12:59','','N','Failure'),(399,0,0,'GEN005','Janvi ','2025-10-12 09:13:01','2025-10-12 09:13:01','','N','Failure'),(400,0,0,'gen005','janvi','2025-10-12 09:18:07','2025-10-13 14:34:19','','N','Success'),(401,0,0,'gen005','VISHAL','2025-10-12 09:57:12','2025-10-12 10:41:44','','N','Success'),(402,0,0,'gen005','Mo','2025-10-12 10:37:01','2025-10-12 12:18:39','','N','Success'),(403,0,0,'gen005','VISHAL','2025-10-12 10:41:48','2025-10-12 11:15:51','','N','Success'),(404,0,0,'gen005','VISHAL','2025-10-12 11:00:20','2025-10-12 11:15:51','','N','Success'),(405,0,0,'gen005','VISHAL','2025-10-12 11:15:57','2025-10-12 12:07:11','','N','Success'),(406,0,0,'gen005','Mo','2025-10-12 11:26:06','2025-10-12 12:18:39','','N','Success'),(407,0,0,'gen005','janvi','2025-10-12 11:44:19','2025-10-13 14:34:19','','N','Success'),(408,0,0,'gen005','Mo','2025-10-12 12:05:27','2025-10-12 12:18:39','','N','Success'),(409,0,0,'gen005','Mo','2025-10-12 12:07:34','2025-10-12 12:18:39','','N','Success'),(410,0,0,'gen005','VISHAL','2025-10-12 12:18:43','2025-10-12 14:18:11','','N','Success'),(411,0,0,'gen005','VISHAL','2025-10-12 14:16:20','2025-10-12 14:18:11','','N','Success'),(412,0,0,'gen005','VISHAL','2025-10-12 14:18:14','2025-10-12 14:18:21','','N','Success'),(413,0,0,'gen005','RECEPTION','2025-10-12 14:19:14','2025-10-12 14:23:34','','N','Success'),(414,0,0,'gen005','VISHAL','2025-10-12 14:23:41','2025-10-12 14:52:50','','N','Success'),(415,0,0,'gen005','RECEPTION','2025-10-12 14:52:55','2025-10-12 14:59:53','','N','Success'),(416,0,0,'gen005','VISHAL','2025-10-12 14:59:59','2025-10-12 15:16:29','','N','Success'),(417,0,0,'gen005','RECEPTION','2025-10-12 15:16:33','2025-10-12 16:23:51','','N','Success'),(418,0,0,'gen005','VISHAL','2025-10-12 16:23:56','2025-10-12 17:14:17','','N','Success'),(419,0,0,'gen005','VISHAL','2025-10-12 17:12:26','2025-10-12 17:14:17','','N','Success'),(420,0,0,'gen005','VISHAL','2025-10-12 17:14:20','2025-10-12 18:14:26','','N','Success'),(421,0,0,'gen005','Vishal','2025-10-12 17:48:25','2025-10-12 18:14:26','','N','Success'),(422,0,0,'gen005','Vishal','2025-10-12 18:06:12','2025-10-12 18:14:26','','N','Success'),(423,0,0,'gen005','VISHAL','2025-10-12 18:17:38','2025-10-12 18:28:56','','N','Success'),(424,0,0,'gen005','RECEPTION','2025-10-12 18:29:04','2025-10-12 18:31:27','','N','Success'),(425,0,0,'gen005','VISHAL','2025-10-12 18:31:32','2025-10-12 21:21:04','','N','Success'),(426,0,0,'gen005','VISHAL','2025-10-12 18:36:13','2025-10-12 21:21:04','','N','Success'),(427,0,0,'gen005','Mo','2025-10-12 20:38:21','2025-10-13 22:56:17','','N','Success'),(428,0,0,'gen005','VISHAL','2025-10-12 21:17:52','2025-10-12 21:21:04','','N','Success'),(429,0,0,'gen005','RECEPTION','2025-10-12 21:21:10','2025-10-12 21:26:35','','N','Success'),(430,0,0,'gen005','RECEPTION','2025-10-12 21:26:39','2025-10-12 21:26:48','','N','Success'),(431,0,0,'gen005','VISHAL','2025-10-12 21:26:52','2025-10-12 21:49:03','','N','Success'),(432,0,0,'gen005','VISHAL','2025-10-12 21:49:06','2025-10-12 21:49:14','','N','Success'),(433,0,0,'gen005','RECEPTION','2025-10-12 21:49:18','2025-10-13 12:27:32','','N','Success'),(434,0,0,'gen005','Mo','2025-10-12 23:42:30','2025-10-13 22:56:17','','N','Success'),(435,0,0,'GEN005','shweta','2025-10-13 09:09:26','2025-10-13 15:18:04','','N','Success'),(436,0,0,'gen005','Reception','2025-10-13 09:12:13','2025-10-13 09:12:13','','N','Failure'),(437,0,0,'gen005','Reception','2025-10-13 09:12:21','2025-10-13 12:27:32','','N','Success'),(438,0,0,'gen005','janvi','2025-10-13 09:14:39','2025-10-13 14:34:19','','N','Success'),(439,0,0,'gen005','Vishal','2025-10-13 09:26:25','2025-10-13 09:50:38','','N','Success'),(440,0,0,'gen005','Vishal','2025-10-13 09:50:43','2025-10-13 10:12:34','','N','Success'),(441,0,0,'gen005','Vishal','2025-10-13 10:04:13','2025-10-13 10:12:34','','N','Success'),(442,0,0,'gen005','Manshi','2025-10-13 10:07:49','2025-10-15 13:03:39','','N','Success'),(443,0,0,'gen005','Reception','2025-10-13 10:12:52','2025-10-13 12:27:32','','N','Success'),(444,0,0,'gen005','janvi','2025-10-13 10:25:52','2025-10-13 14:34:19','','N','Success'),(445,0,0,'gen005','Drpratapsi','2025-10-13 10:27:30','0000-00-00 00:00:00','','Y','Success'),(446,0,0,'gen005','Darshan','2025-10-13 10:28:17','2025-10-13 14:42:01','','N','Success'),(447,0,0,'GEN005','drashti','2025-10-13 10:29:14','2025-10-15 14:04:09','','N','Success'),(448,0,0,'GEN005','drarchit','2025-10-13 10:34:51','2025-10-14 13:08:28','','N','Success'),(449,0,0,'gen005','Drjayant','2025-10-13 10:58:16','2025-10-13 19:58:00','','N','Success'),(450,0,0,'gen005','janvi','2025-10-13 11:06:04','2025-10-13 14:34:19','','N','Success'),(451,0,0,'GEN005','drashti','2025-10-13 11:08:37','2025-10-15 14:04:09','','N','Success'),(452,0,0,'GEN005','Drridham','2025-10-13 11:16:15','2025-12-02 13:37:44','','N','Success'),(453,0,0,'gen005','thims','2025-10-13 11:17:21','2025-10-13 14:47:29','','N','Success'),(454,0,0,'gen005','thims','2025-10-13 11:22:00','2025-10-13 14:47:29','','N','Success'),(455,0,0,'gen005','Mo','2025-10-13 11:29:06','2025-10-13 22:56:17','','N','Success'),(456,0,0,'GEN005','Drsagar','2025-10-13 11:32:21','0000-00-00 00:00:00','','Y','Success'),(457,0,0,'gen005','Mo','2025-10-13 12:11:53','2025-10-13 22:56:17','','N','Success'),(458,0,0,'GEN005','Vishal','2025-10-13 12:28:19','2025-10-13 12:37:11','','N','Success'),(459,0,0,'gen005','VISHAL','2025-10-13 12:37:05','2025-10-13 12:37:11','','N','Success'),(460,0,0,'gen005','Reception','2025-10-13 12:37:17','2025-10-13 14:15:21','','N','Success'),(461,0,0,'gen005','VISHAL','2025-10-13 13:18:46','2025-10-13 14:08:41','','N','Success'),(462,0,0,'GEN005','Vishal','2025-10-13 14:08:44','2025-10-13 14:08:55','','N','Success'),(463,0,0,'gen005','Reception','2025-10-13 14:09:11','2025-10-13 14:15:21','','N','Success'),(464,0,0,'GEN005','Vishal','2025-10-13 14:09:31','2025-10-13 14:11:33','','N','Success'),(465,0,0,'GEN005','Vishal','2025-10-13 14:11:36','2025-10-13 14:50:57','','N','Success'),(466,0,0,'gen005','thims','2025-10-13 14:12:35','2025-10-13 14:47:29','','N','Success'),(467,0,0,'gen005','shweta','2025-10-13 14:17:10','2025-10-13 14:17:10','','N','Failure'),(468,0,0,'gen005','shweta','2025-10-13 14:17:29','2025-10-13 14:17:29','','N','Failure'),(469,0,0,'gen005','shweta','2025-10-13 14:17:31','2025-10-13 14:17:31','','N','Failure'),(470,0,0,'gen005','shweta','2025-10-13 14:17:32','2025-10-13 14:17:32','','N','Failure'),(471,0,0,'gen005','shweta','2025-10-13 14:17:43','2025-10-13 15:18:04','','N','Success'),(472,0,0,'gen005','shweta','2025-10-13 14:17:44','2025-10-13 15:18:04','','N','Success'),(473,0,0,'gen005','Mo','2025-10-13 14:42:23','2025-10-13 22:56:17','','N','Success'),(474,0,0,'gen005','darshan','2025-10-13 14:42:25','2025-10-14 20:32:46','','N','Success'),(475,0,0,'gen005','thims','2025-10-13 14:45:41','2025-10-13 14:47:29','','N','Success'),(476,0,0,'gen005','darshan','2025-10-13 14:47:40','2025-10-14 20:32:46','','N','Success'),(477,0,0,'gen005','darshan','2025-10-13 15:00:49','2025-10-14 20:32:46','','N','Success'),(478,0,0,'gen005','shweta','2025-10-13 15:18:49','2025-10-13 17:17:22','','N','Success'),(479,0,0,'gen005','Mo','2025-10-13 15:52:36','2025-10-13 22:56:17','','N','Success'),(480,0,0,'GEN005','Reception','2025-10-13 15:52:58','2025-10-13 17:19:46','','N','Success'),(481,0,0,'GEN005','Vishal','2025-10-13 16:04:53','2025-10-15 15:03:54','','N','Success'),(482,0,0,'GEN005','Vishal','2025-10-13 16:10:14','2025-10-15 15:03:54','','N','Success'),(483,0,0,'gen005','shweta','2025-10-13 16:41:35','2025-10-13 17:17:22','','N','Success'),(484,0,0,'GEN005','Vishal','2025-10-13 16:52:30','2025-10-15 15:03:54','','N','Success'),(485,0,0,'gen005','Mo','2025-10-13 16:54:35','2025-10-13 22:56:17','','N','Success'),(486,0,0,'gen005','thims','2025-10-13 16:56:42','2025-10-16 12:33:01','','N','Success'),(487,0,0,'gen005','darshan','2025-10-13 16:58:34','2025-10-13 16:58:34','','N','Failure'),(488,0,0,'gen005','darshan','2025-10-13 16:58:37','2025-10-13 16:58:37','','N','Failure'),(489,0,0,'gen005','darshan','2025-10-13 17:00:01','2025-10-13 17:00:01','','N','Failure'),(490,0,0,'gen005','darshan','2025-10-13 17:00:13','2025-10-14 20:32:46','','N','Success'),(491,0,0,'gen005','janvi','2025-10-13 17:03:38','2025-10-15 13:58:22','','N','Success'),(492,0,0,'gen005','Reception','2025-10-13 17:17:30','2025-10-13 17:19:46','','N','Success'),(493,0,0,'gen005','Manshi','2025-10-13 17:18:14','2025-10-15 13:03:39','','N','Success'),(494,0,0,'GEN005','drashti','2025-10-13 17:19:53','2025-10-15 14:04:09','','N','Success'),(495,0,0,'gen005','Riya','2025-10-13 17:47:24','2025-10-13 17:53:03','','N','Success'),(496,0,0,'gen005','Riya','2025-10-13 17:50:43','2025-10-13 17:53:03','','N','Success'),(497,0,0,'gen005','Riya','2025-10-13 17:53:06','2025-10-13 19:24:54','','N','Success'),(498,0,0,'gen005','Drjayant','2025-10-13 18:05:12','2025-10-13 19:58:00','','N','Success'),(499,0,0,'GEN005','drarchit','2025-10-13 18:07:14','2025-10-14 13:08:28','','N','Success'),(500,0,0,'gen005','Riya','2025-10-13 18:22:47','2025-10-13 19:24:54','','N','Success'),(501,0,0,'gen005','Drpratapsi','2025-10-13 18:40:27','0000-00-00 00:00:00','','Y','Success'),(502,0,0,'gen005','Mo','2025-10-13 18:40:36','2025-10-13 22:56:17','','N','Success'),(503,0,0,'gen005','Drpratapsi','2025-10-13 18:40:43','0000-00-00 00:00:00','','Y','Success'),(504,0,0,'GEN005','Drridham','2025-10-13 19:10:32','2025-12-02 13:37:44','','N','Success'),(505,0,0,'GEN005','Manshi','2025-10-13 19:16:55','2025-10-15 13:03:39','','N','Success'),(506,0,0,'gen005','Riya','2025-10-13 19:25:30','2025-10-14 13:51:10','','N','Success'),(507,0,0,'GEN005','Drsagar','2025-10-13 19:29:11','0000-00-00 00:00:00','','Y','Success'),(508,0,0,'gen005','janvi','2025-10-13 19:35:19','2025-10-15 13:58:22','','N','Success'),(509,0,0,'gen005','drashti','2025-10-13 19:36:57','2025-10-15 14:04:09','','N','Success'),(510,0,0,'gen005','drashti','2025-10-13 19:37:47','2025-10-15 14:04:09','','N','Success'),(511,0,0,'gen005','Drjayant','2025-10-13 19:45:12','2025-10-13 19:58:00','','N','Success'),(512,0,0,'gen005','Drpratapsi','2025-10-13 19:46:30','0000-00-00 00:00:00','','Y','Success'),(513,0,0,'GEN005','drarchit','2025-10-13 20:24:04','2025-10-14 13:08:28','','N','Success'),(514,0,0,'GEN005','Mo','2025-10-13 20:49:13','2025-10-13 22:56:17','','N','Success'),(515,0,0,'gen005','Reception','2025-10-13 20:52:53','2025-10-14 10:10:40','','N','Success'),(516,0,0,'GEN005','Mo','2025-10-13 20:58:29','2025-10-13 22:56:17','','N','Success'),(517,0,0,'GEN005','Mo','2025-10-13 21:45:30','2025-10-13 22:56:17','','N','Success'),(518,0,0,'GEN005','Mo','2025-10-13 22:20:01','2025-10-13 22:56:17','','N','Success'),(519,0,0,'gen005','Riya','2025-10-13 22:21:24','2025-10-14 13:51:10','','N','Success'),(520,0,0,'GEN005','Mo','2025-10-13 23:07:33','2025-10-14 09:06:45','','N','Success'),(521,0,0,'gen005','shweta','2025-10-14 08:47:38','2025-10-14 09:33:03','','N','Success'),(522,0,0,'GEN005','Mo','2025-10-14 08:58:50','2025-10-14 09:06:45','','N','Success'),(523,0,0,'gen005','riya','2025-10-14 09:01:35','2025-10-14 09:01:35','','N','Failure'),(524,0,0,'gen005','riya','2025-10-14 09:01:52','2025-10-14 09:01:52','','N','Failure'),(525,0,0,'gen005','riya','2025-10-14 09:02:22','2025-10-14 09:02:22','','N','Failure'),(526,0,0,'gen005','riya','2025-10-14 09:02:24','2025-10-14 09:02:24','','N','Failure'),(527,0,0,'gen005','riya','2025-10-14 09:02:25','2025-10-14 09:02:25','','N','Failure'),(528,0,0,'gen005','riya','2025-10-14 09:02:41','2025-10-14 13:51:10','','N','Success'),(529,0,0,'GEN005','Mo','2025-10-14 09:05:14','2025-10-14 09:06:45','','N','Success'),(530,0,0,'gen005','Mo','2025-10-14 09:06:36','2025-10-14 09:06:45','','N','Success'),(531,0,0,'gen005','Reception','2025-10-14 09:06:52','2025-10-14 10:10:40','','N','Success'),(532,0,0,'gen005','janvi','2025-10-14 09:13:43','2025-10-15 13:58:22','','N','Success'),(533,0,0,'gen005','Reception','2025-10-14 09:33:11','2025-10-14 10:10:40','','N','Success'),(534,0,0,'gen005','thims','2025-10-14 09:55:17','2025-10-16 12:33:01','','N','Success'),(535,0,0,'gen005','Manshi','2025-10-14 10:07:49','2025-10-15 13:03:39','','N','Success'),(536,0,0,'GEN005','drashti','2025-10-14 10:10:56','2025-10-15 14:04:09','','N','Success'),(537,0,0,'gen005','MO','2025-10-14 10:20:54','2025-10-14 10:20:54','','N','Failure'),(538,0,0,'gen005','MO','2025-10-14 10:21:10','2025-10-14 10:21:10','','N','Failure'),(539,0,0,'gen005','mo','2025-10-14 10:21:43','2025-10-14 10:21:43','','N','Failure'),(540,0,0,'gen005','Mo','2025-10-14 10:21:57','2025-10-14 10:30:34','','N','Success'),(541,0,0,'gen005','Mo','2025-10-14 10:22:26','2025-10-14 10:30:34','','N','Success'),(542,0,0,'gen005','Drpratapsi','2025-10-14 10:31:54','0000-00-00 00:00:00','','Y','Success'),(543,0,0,'gen005','thims','2025-10-14 10:34:00','2025-10-16 12:33:01','','N','Success'),(544,0,0,'gen005','Mo','2025-10-14 10:34:12','2025-10-14 21:38:59','','N','Success'),(545,0,0,'gen005','darshan','2025-10-14 10:47:50','2025-10-14 20:32:46','','N','Success'),(546,0,0,'GEN005','Manshi','2025-10-14 10:55:56','2025-10-15 13:03:39','','N','Success'),(547,0,0,'GEN005','drarchit','2025-10-14 10:57:48','2025-10-14 13:08:28','','N','Success'),(548,0,0,'gen005','Mo','2025-10-14 11:50:56','2025-10-14 21:38:59','','N','Success'),(549,0,0,'gen005','Mo','2025-10-14 12:02:53','2025-10-14 21:38:59','','N','Success'),(550,0,0,'gen005','Mo','2025-10-14 12:16:44','2025-10-14 21:38:59','','N','Success'),(551,0,0,'GEN005','drashti','2025-10-14 12:34:26','2025-10-15 14:04:09','','N','Success'),(552,0,0,'gen005','Reception','2025-10-14 12:34:31','2025-10-14 17:16:48','','N','Success'),(553,0,0,'gen005','Mo','2025-10-14 12:35:27','2025-10-14 21:38:59','','N','Success'),(554,0,0,'gen005','Mo','2025-10-14 12:41:00','2025-10-14 21:38:59','','N','Success'),(555,0,0,'gen005','Mo','2025-10-14 12:47:13','2025-10-14 21:38:59','','N','Success'),(556,0,0,'gen005','riya','2025-10-14 13:00:34','2025-10-14 13:51:10','','N','Success'),(557,0,0,'gen005','Urvashi','2025-10-14 13:03:31','2025-10-14 15:19:25','','N','Success'),(558,0,0,'GEN005','drarchit','2025-10-14 13:10:33','2025-10-14 20:33:42','','N','Success'),(559,0,0,'gen005','thims','2025-10-14 13:14:09','2025-10-16 12:33:01','','N','Success'),(560,0,0,'GEN005','Manshi','2025-10-14 13:31:15','2025-10-15 13:03:39','','N','Success'),(561,0,0,'gen005','thims','2025-10-14 13:51:14','2025-10-16 12:33:01','','N','Success'),(562,0,0,'gen005','riya','2025-10-14 13:51:36','2025-10-14 13:52:01','','N','Success'),(563,0,0,'gen005','riya','2025-10-14 13:52:04','2025-10-14 14:27:02','','N','Success'),(564,0,0,'gen005','thims','2025-10-14 14:12:04','2025-10-16 12:33:01','','N','Success'),(565,0,0,'gen005','Mo','2025-10-14 14:24:53','2025-10-14 21:38:59','','N','Success'),(566,0,0,'gen005','riya','2025-10-14 14:27:12','2025-10-14 19:41:24','','N','Success'),(567,0,0,'gen005','shweta','2025-10-14 15:34:08','2025-10-14 16:40:44','','N','Success'),(568,0,0,'GEN005','shweta','2025-10-14 15:58:37','2025-10-14 16:40:44','','N','Success'),(569,0,0,'gen005','Mo','2025-10-14 16:00:39','2025-10-14 21:38:59','','N','Success'),(570,0,0,'gen005','janvi','2025-10-14 16:39:17','2025-10-15 13:58:22','','N','Success'),(571,0,0,'gen005','Reception','2025-10-14 16:40:50','2025-10-14 17:16:48','','N','Success'),(572,0,0,'gen005','Manshi','2025-10-14 17:04:27','2025-10-15 13:03:39','','N','Success'),(573,0,0,'GEN005','drashti','2025-10-14 17:06:07','2025-10-15 14:04:09','','N','Success'),(574,0,0,'gen005','Urvashi','2025-10-14 17:17:06','2025-10-24 10:48:30','','N','Success'),(575,0,0,'gen005','darshan','2025-10-14 17:19:23','2025-10-14 20:32:46','','N','Success'),(576,0,0,'gen005','thims','2025-10-14 17:25:00','2025-10-16 12:33:01','','N','Success'),(577,0,0,'gen005','thims','2025-10-14 17:28:10','2025-10-16 12:33:01','','N','Success'),(578,0,0,'gen005','Mo','2025-10-14 17:49:06','2025-10-14 21:38:59','','N','Success'),(579,0,0,'gen005','Vishal','2025-10-14 18:06:17','2025-10-15 15:03:54','','N','Success'),(580,0,0,'GEN005','drarchit','2025-10-14 18:14:42','2025-10-14 20:33:42','','N','Success'),(581,0,0,'GEN005','Manshi','2025-10-14 18:27:13','2025-10-15 13:03:39','','N','Success'),(582,0,0,'gen005','riya','2025-10-14 18:41:26','2025-10-14 19:41:24','','N','Success'),(583,0,0,'gen005','Mo','2025-10-14 18:55:59','2025-10-14 21:38:59','','N','Success'),(584,0,0,'GEN005','drashti','2025-10-14 19:03:03','2025-10-15 14:04:09','','N','Success'),(585,0,0,'GEN005','Manshi','2025-10-14 19:03:03','2025-10-15 13:03:39','','N','Success'),(586,0,0,'gen005','janvi','2025-10-14 19:03:41','2025-10-15 13:58:22','','N','Success'),(587,0,0,'gen005','Vishal','2025-10-14 19:41:28','2025-10-15 15:03:54','','N','Success'),(588,0,0,'GEN005','Drsagar','2025-10-14 20:16:06','0000-00-00 00:00:00','','Y','Success'),(589,0,0,'gen005','Mo','2025-10-14 20:26:32','2025-10-14 21:38:59','','N','Success'),(590,0,0,'gen005','Vishal','2025-10-14 21:05:15','2025-10-15 15:03:54','','N','Success'),(591,0,0,'gen005','Mo','2025-10-14 21:22:47','2025-10-14 21:38:59','','N','Success'),(592,0,0,'gen005','Mo','2025-10-14 22:50:37','2025-10-23 09:02:53','','N','Success'),(593,0,0,'GEN005','priyanshi','2025-10-15 08:52:01','2025-10-15 10:18:35','','N','Success'),(594,0,0,'gen005','janvi','2025-10-15 08:59:30','2025-10-15 13:58:22','','N','Success'),(595,0,0,'gen005','reception','2025-10-15 09:07:22','2025-10-15 09:07:22','','N','Failure'),(596,0,0,'gen005','Reception','2025-10-15 09:07:58','2025-10-16 11:25:46','','N','Success'),(597,0,0,'gen005','Vishal','2025-10-15 09:14:02','2025-10-15 15:03:54','','N','Success'),(598,0,0,'gen005','Manshi','2025-10-15 10:06:21','2025-10-15 13:03:39','','N','Success'),(599,0,0,'gen005','Drpratapsi','2025-10-15 10:15:02','2025-10-15 10:15:02','','N','Failure'),(600,0,0,'gen005','Drpratapsi','2025-10-15 10:15:46','0000-00-00 00:00:00','','Y','Success'),(601,0,0,'GEN005','drashti','2025-10-15 10:19:09','2025-10-15 14:04:09','','N','Success'),(602,0,0,'gen005','thims','2025-10-15 10:35:54','2025-10-16 12:33:01','','N','Success'),(603,0,0,'gen005','Mo','2025-10-15 10:36:45','2025-10-23 09:02:53','','N','Success'),(604,0,0,'gen005','darshan','2025-10-15 10:48:12','2025-10-15 10:48:12','','N','Failure'),(605,0,0,'gen005','darshan','2025-10-15 10:52:54','2025-10-15 10:52:54','','N','Failure'),(606,0,0,'gen005','darshan','2025-10-15 11:00:37','2025-10-15 11:00:37','','N','Failure'),(607,0,0,'gen005','darshan','2025-10-15 11:01:10','2025-10-15 11:01:10','','N','Failure'),(608,0,0,'gen005','darshan','2025-10-15 11:01:35','2025-10-15 11:01:35','','N','Failure'),(609,0,0,'gen005','darshan','2025-10-15 11:01:53','2025-10-15 13:58:30','','N','Success'),(610,0,0,'gen005','drarchit','2025-10-15 11:05:48','2025-10-15 12:47:43','','N','Success'),(611,0,0,'GEN005','Drridham','2025-10-15 11:38:21','2025-12-02 13:37:44','','N','Success'),(612,0,0,'gen005','Mo','2025-10-15 11:44:32','2025-10-23 09:02:53','','N','Success'),(613,0,0,'gen005','Vishal','2025-10-15 12:00:21','2025-10-15 15:03:54','','N','Success'),(614,0,0,'gen005','Vishal','2025-10-15 12:07:00','2025-10-15 15:03:54','','N','Success'),(615,0,0,'gen005','Dharmistha','2025-10-15 12:30:37','2025-10-15 12:30:37','','N','Failure'),(616,0,0,'gen005','Dharmishth','2025-10-15 12:31:00','0000-00-00 00:00:00','','Y','Success'),(617,0,0,'GEN005','Drsagar','2025-10-15 12:45:36','0000-00-00 00:00:00','','Y','Success'),(618,0,0,'GEN005','drarchit','2025-10-15 12:50:03','2025-10-15 12:55:49','','N','Success'),(619,0,0,'GEN005','drarchit','2025-10-15 12:59:26','2025-10-17 12:32:43','','N','Success'),(620,0,0,'gen005','Mo','2025-10-15 13:04:27','2025-10-23 09:02:53','','N','Success'),(621,0,0,'GEN005','Manshi','2025-10-15 13:07:32','2025-10-24 19:06:05','','N','Success'),(622,0,0,'gen005','janvi','2025-10-15 13:58:28','2025-10-24 13:54:24','','N','Success'),(623,0,0,'gen005','darshan','2025-10-15 13:59:31','2025-10-16 12:21:01','','N','Success'),(624,0,0,'gen005','priyanshi','2025-10-15 14:07:19','2025-10-15 17:26:35','','N','Success'),(625,0,0,'gen005','priyanshi','2025-10-15 16:02:20','2025-10-15 17:26:35','','N','Success'),(626,0,0,'gen005','janvi','2025-10-15 16:03:14','2025-10-24 13:54:24','','N','Success'),(627,0,0,'gen005','Reception','2025-10-15 16:28:08','2025-10-16 11:25:46','','N','Success'),(628,0,0,'gen005','janvi','2025-10-15 16:34:08','2025-10-24 13:54:24','','N','Success'),(629,0,0,'gen005','darshan','2025-10-15 17:04:43','2025-10-16 12:21:01','','N','Success'),(630,0,0,'gen005','RIYA','2025-10-15 17:07:23','2025-10-15 17:07:23','','N','Failure'),(631,0,0,'gen005','riya','2025-10-15 17:08:06','2025-10-15 19:03:00','','N','Success'),(632,0,0,'GEN005','Manshi','2025-10-15 17:22:48','2025-10-24 19:06:05','','N','Success'),(633,0,0,'gen005','drashti','2025-10-15 17:26:44','2025-10-15 17:26:56','','N','Success'),(634,0,0,'gen005','drashti','2025-10-15 17:27:00','2025-10-16 09:34:11','','N','Success'),(635,0,0,'gen005','janvi','2025-10-15 17:35:17','2025-10-24 13:54:24','','N','Success'),(636,0,0,'GEN005','Mo','2025-10-15 17:51:54','2025-10-23 09:02:53','','N','Success'),(637,0,0,'gen005','Drjayant','2025-10-15 17:53:44','2025-10-15 19:48:49','','N','Success'),(638,0,0,'gen005','drarchit','2025-10-15 18:21:11','2025-10-17 12:32:43','','N','Success'),(639,0,0,'GEN005','Drsagar','2025-10-15 18:22:09','0000-00-00 00:00:00','','Y','Success'),(640,0,0,'gen005','Drpratapsi','2025-10-15 18:27:10','0000-00-00 00:00:00','','Y','Success'),(641,0,0,'GEN005','Drsagar','2025-10-15 18:33:00','0000-00-00 00:00:00','','Y','Success'),(642,0,0,'gen005','riya','2025-10-15 19:03:54','2025-10-17 19:41:32','','N','Success'),(643,0,0,'GEN005','Mo','2025-10-15 19:14:18','2025-10-23 09:02:53','','N','Success'),(644,0,0,'gen005','riya','2025-10-15 19:46:39','2025-10-17 19:41:32','','N','Success'),(645,0,0,'gen005','riya','2025-10-15 21:12:57','2025-10-17 19:41:32','','N','Success'),(646,0,0,'GEN005','Mo','2025-10-15 21:44:37','2025-10-23 09:02:53','','N','Success'),(647,0,0,'GEN005','Mo','2025-10-15 21:51:42','2025-10-23 09:02:53','','N','Success'),(648,0,0,'GEN005','Mo','2025-10-16 00:30:44','2025-10-23 09:02:53','','N','Success'),(649,0,0,'gen005','Vishal','2025-10-16 08:21:47','2025-10-16 11:23:07','','N','Success'),(650,0,0,'GEN005','Mo','2025-10-16 08:34:48','2025-10-23 09:02:53','','N','Success'),(651,0,0,'gen005','shweta','2025-10-16 08:59:09','2025-10-16 09:29:52','','N','Success'),(652,0,0,'gen005','Reception','2025-10-16 09:11:00','2025-10-16 11:25:46','','N','Success'),(653,0,0,'gen005','drashti','2025-10-16 09:30:05','2025-10-16 09:34:11','','N','Success'),(654,0,0,'gen005','drashti','2025-10-16 09:34:16','2025-10-16 11:35:04','','N','Success'),(655,0,0,'gen005','janvi','2025-10-16 09:35:36','2025-10-24 13:54:24','','N','Success'),(656,0,0,'gen005','Manshi','2025-10-16 10:16:51','2025-10-24 19:06:05','','N','Success'),(657,0,0,'gen005','Drjayant','2025-10-16 10:44:29','2025-10-16 12:37:28','','N','Success'),(658,0,0,'gen005','darshan','2025-10-16 10:51:47','2025-10-16 10:51:47','','N','Failure'),(659,0,0,'gen005','darshan','2025-10-16 10:51:58','2025-10-16 12:21:01','','N','Success'),(660,0,0,'gen005','Drpratapsi','2025-10-16 10:58:51','0000-00-00 00:00:00','','Y','Success'),(661,0,0,'gen005','janvi','2025-10-16 11:03:53','2025-10-24 13:54:24','','N','Success'),(662,0,0,'GEN005','d','2025-10-16 11:05:35','2025-10-16 11:05:35','','N','Failure'),(663,0,0,'GEN005','drashti','2025-10-16 11:05:38','2025-10-16 11:35:04','','N','Success'),(664,0,0,'GEN005','drarchit','2025-10-16 11:10:18','2025-10-17 12:32:43','','N','Success'),(665,0,0,'GEN005','Mo','2025-10-16 11:12:50','2025-10-23 09:02:53','','N','Success'),(666,0,0,'gen005','Vishal','2025-10-16 11:19:27','2025-10-16 11:23:07','','N','Success'),(667,0,0,'gen005','Vishal','2025-10-16 11:22:57','2025-10-16 11:23:07','','N','Success'),(668,0,0,'gen005','Reception','2025-10-16 11:23:26','2025-10-16 11:25:46','','N','Success'),(669,0,0,'gen005','Vishal','2025-10-16 11:25:51','2025-10-19 10:46:44','','N','Success'),(670,0,0,'gen005','drashti','2025-10-16 11:35:12','2025-10-16 12:20:23','','N','Success'),(671,0,0,'GEN005','Manshi','2025-10-16 11:47:49','2025-10-24 19:06:05','','N','Success'),(672,0,0,'gen005','Darshan','2025-10-16 12:20:36','2025-10-16 12:21:01','','N','Success'),(673,0,0,'gen005','Drarchit','2025-10-16 12:21:40','2025-10-17 12:32:43','','N','Success'),(674,0,0,'gen005','drashti','2025-10-16 12:23:58','2025-10-16 12:34:28','','N','Success'),(675,0,0,'gen005','thims','2025-10-16 12:31:36','2025-10-16 12:33:01','','N','Success'),(676,0,0,'gen005','Darshan','2025-10-16 12:33:15','2025-10-16 12:34:48','','N','Success'),(677,0,0,'gen005','Drarchit','2025-10-16 12:34:42','2025-10-16 12:34:42','','N','Failure'),(678,0,0,'gen005','Drarchit','2025-10-16 12:34:49','2025-10-16 12:34:49','','N','Failure'),(679,0,0,'gen005','thims','2025-10-16 12:34:57','2025-10-16 12:47:56','','N','Success'),(680,0,0,'gen005','Darshan','2025-10-16 12:35:01','2025-10-16 12:35:36','','N','Success'),(681,0,0,'gen005','Drjayant','2025-10-16 12:35:52','2025-10-16 12:37:28','','N','Success'),(682,0,0,'gen005','Drarchit','2025-10-16 12:38:23','2025-10-17 12:32:43','','N','Success'),(683,0,0,'gen005','drashti','2025-10-16 12:39:12','2025-10-16 14:51:59','','N','Success'),(684,0,0,'GEN005','Drsagar','2025-10-16 12:48:27','0000-00-00 00:00:00','','Y','Success'),(685,0,0,'GEN005','Manshi','2025-10-16 12:48:36','2025-10-24 19:06:05','','N','Success'),(686,0,0,'gen005','drashti','2025-10-16 12:48:40','2025-10-16 14:51:59','','N','Success'),(687,0,0,'gen005','janvi','2025-10-16 12:48:55','2025-10-24 13:54:24','','N','Success'),(688,0,0,'gen005','Drjayant','2025-10-16 12:49:11','2025-10-17 19:55:15','','N','Success'),(689,0,0,'gen005','Vishal','2025-10-16 12:49:45','2025-10-19 10:46:44','','N','Success'),(690,0,0,'gen005','Drpratapsi','2025-10-16 12:59:37','0000-00-00 00:00:00','','Y','Success'),(691,0,0,'GEN005','Drsagar','2025-10-16 13:12:53','0000-00-00 00:00:00','','Y','Success'),(692,0,0,'gen005','Vishal','2025-10-16 13:42:29','2025-10-19 10:46:44','','N','Success'),(693,0,0,'GEN005','Mo','2025-10-16 14:42:24','2025-10-23 09:02:53','','N','Success'),(694,0,0,'gen005','shweta','2025-10-16 15:13:31','2025-10-16 15:13:31','','N','Failure'),(695,0,0,'gen005','shweta','2025-10-16 15:13:54','2025-10-16 15:13:54','','N','Failure'),(696,0,0,'gen005','shweta','2025-10-16 15:13:57','2025-10-16 15:13:57','','N','Failure'),(697,0,0,'gen005','shweta','2025-10-16 15:14:22','2025-10-16 16:38:30','','N','Success'),(698,0,0,'gen005','shweta','2025-10-16 15:14:23','2025-10-16 16:38:30','','N','Success'),(699,0,0,'GEN005','Mo','2025-10-16 16:26:11','2025-10-23 09:02:53','','N','Success'),(700,0,0,'gen005','drashti','2025-10-16 16:34:57','2025-10-17 14:08:38','','N','Success'),(701,0,0,'gen005','Reception','2025-10-16 16:38:53','2025-10-16 16:38:53','','N','Failure'),(702,0,0,'gen005','Reception','2025-10-16 16:39:11','2025-10-17 14:52:39','','N','Success'),(703,0,0,'gen005','Riya','2025-10-16 17:13:05','2025-10-17 19:41:32','','N','Success'),(704,0,0,'gen005','Manshi','2025-10-16 17:18:00','2025-10-24 19:06:05','','N','Success'),(705,0,0,'gen005','darshan','2025-10-16 17:19:47','2025-10-24 13:35:37','','N','Success'),(706,0,0,'GEN005','drashti','2025-10-16 17:23:58','2025-10-17 14:08:38','','N','Success'),(707,0,0,'gen005','janvi','2025-10-16 17:30:54','2025-10-24 13:54:24','','N','Success'),(708,0,0,'gen005','Mo','2025-10-16 17:40:53','2025-10-23 09:02:53','','N','Success'),(709,0,0,'GEN005','Drsagar','2025-10-16 17:58:15','0000-00-00 00:00:00','','Y','Success'),(710,0,0,'gen005','Riya','2025-10-16 18:08:25','2025-10-16 18:08:25','','N','Failure'),(711,0,0,'gen005','Riya','2025-10-16 18:08:51','2025-10-16 18:08:51','','N','Failure'),(712,0,0,'gen005','Riya','2025-10-16 18:09:11','2025-10-17 19:41:32','','N','Success'),(713,0,0,'GEN005','drarchit','2025-10-16 18:19:07','2025-10-17 12:32:43','','N','Success'),(714,0,0,'gen005','Drjayant','2025-10-16 18:21:13','2025-10-17 19:55:15','','N','Success'),(715,0,0,'gen005','darshan','2025-10-16 18:23:53','2025-10-24 13:35:37',_binary '192.168.1.236','N','Success'),(716,0,0,'gen005','janvi','2025-10-16 18:24:50','2025-10-24 13:54:24','','N','Success'),(717,0,0,'gen005','riya','2025-10-16 18:26:04','2025-10-16 18:26:04','','N','Failure'),(718,0,0,'gen005','riya','2025-10-16 18:26:21','2025-10-17 19:41:32','','N','Success'),(719,0,0,'GEN005','Drsagar','2025-10-16 18:45:28','0000-00-00 00:00:00','','Y','Success'),(720,0,0,'gen005','Mo','2025-10-16 18:46:02','2025-10-23 09:02:53','','N','Success'),(721,0,0,'GEN005','drarchit','2025-10-16 18:51:24','2025-10-17 12:32:43','','N','Success'),(722,0,0,'gen005','riya','2025-10-16 19:08:29','2025-10-17 19:41:32','','N','Success'),(723,0,0,'gen005','janvi','2025-10-16 19:14:15','2025-10-24 13:54:24','','N','Success'),(724,0,0,'gen005','Mo','2025-10-16 19:15:02','2025-10-23 09:02:53','','N','Success'),(725,0,0,'gen005','riya','2025-10-16 19:15:44','2025-10-16 19:15:44','','N','Failure'),(726,0,0,'gen005','riya','2025-10-16 19:16:05','2025-10-16 19:16:05','','N','Failure'),(727,0,0,'gen005','riya','2025-10-16 19:16:15','2025-10-16 19:16:15','','N','Failure'),(728,0,0,'gen005','riya','2025-10-16 19:16:35','2025-10-16 19:16:35','','N','Failure'),(729,0,0,'gen005','riya','2025-10-16 19:16:41','2025-10-16 19:16:41','','N','Failure'),(730,0,0,'gen005','riya','2025-10-16 19:16:45','2025-10-16 19:16:45','','N','Failure'),(731,0,0,'gen005','riya','2025-10-16 19:16:46','2025-10-16 19:16:46','','N','Failure'),(732,0,0,'gen005','riya','2025-10-16 19:17:03','2025-10-16 19:17:03','','N','Failure'),(733,0,0,'gen005','riya','2025-10-16 19:17:09','2025-10-16 19:17:09','','N','Failure'),(734,0,0,'gen005','riya','2025-10-16 19:17:15','2025-10-16 19:17:15','','N','Failure'),(735,0,0,'gen005','riya','2025-10-16 19:17:30','2025-10-16 19:17:30','','N','Failure'),(736,0,0,'gen005','riya','2025-10-16 19:17:48','2025-10-16 19:17:48','','N','Failure'),(737,0,0,'gen005','riya','2025-10-16 19:17:50','2025-10-16 19:17:50','','N','Failure'),(738,0,0,'gen005','riya','2025-10-16 19:17:53','2025-10-16 19:17:53','','N','Failure'),(739,0,0,'gen005','riya','2025-10-16 19:17:54','2025-10-16 19:17:54','','N','Failure'),(740,0,0,'gen005','riya','2025-10-16 19:17:56','2025-10-16 19:17:56','','N','Failure'),(741,0,0,'gen005','riya','2025-10-16 19:19:07','2025-10-16 19:19:07','','N','Failure'),(742,0,0,'gen005','riya','2025-10-16 19:19:08','2025-10-16 19:19:08','','N','Failure'),(743,0,0,'gen005','riya','2025-10-16 19:19:20','2025-10-16 19:19:20','','N','Failure'),(744,0,0,'gen005','riya','2025-10-16 19:19:21','2025-10-16 19:19:21','','N','Failure'),(745,0,0,'gen005','riya','2025-10-16 19:20:42','2025-10-16 19:20:42','','N','Failure'),(746,0,0,'Gen005','riya','2025-10-16 19:21:18','2025-10-16 19:21:18','','N','Failure'),(747,0,0,'Gen005','riya','2025-10-16 19:21:19','2025-10-16 19:21:19','','N','Failure'),(748,0,0,'Gen005','riya','2025-10-16 19:21:54','2025-10-16 19:21:54','','N','Failure'),(749,0,0,'Gen005','riya','2025-10-16 19:22:04','2025-10-16 19:22:04','','N','Failure'),(750,0,0,'gen005','riya','2025-10-16 19:22:39','2025-10-17 19:41:32','','N','Success'),(751,0,0,'gen005','janvi','2025-10-16 19:31:15','2025-10-24 13:54:24','','N','Success'),(752,0,0,'gen005','janvi','2025-10-16 19:34:36','2025-10-24 13:54:24','','N','Success'),(753,0,0,'gen005','Mo','2025-10-16 19:38:18','2025-10-23 09:02:53','','N','Success'),(754,0,0,'gen005','janvi','2025-10-16 19:45:06','2025-10-24 13:54:24','','N','Success'),(755,0,0,'gen005','Drpratapsi','2025-10-16 19:54:13','0000-00-00 00:00:00','','Y','Success'),(756,0,0,'gen005','Mo','2025-10-16 20:01:42','2025-10-23 09:02:53','','N','Success'),(757,0,0,'GEN005','Manshi','2025-10-16 20:17:49','2025-10-24 19:06:05','','N','Success'),(758,0,0,'gen005','Mo','2025-10-16 20:44:20','2025-10-23 09:02:53','','N','Success'),(759,0,0,'GEN005','drashti','2025-10-16 20:52:42','2025-10-17 14:08:38','','N','Success'),(760,0,0,'GEN005','Mo','2025-10-16 21:34:39','2025-10-23 09:02:53','','N','Success'),(761,0,0,'gen005','Mo','2025-10-16 22:39:50','2025-10-23 09:02:53','','N','Success'),(762,0,0,'gen005','Mo','2025-10-16 23:02:44','2025-10-23 09:02:53','','N','Success'),(763,0,0,'gen005','shweta','2025-10-17 09:01:30','2025-10-17 10:00:42','','N','Success'),(764,0,0,'gen005','Reception','2025-10-17 09:04:24','2025-10-17 14:52:39','','N','Success'),(765,0,0,'gen005','janvi','2025-10-17 09:12:17','2025-10-24 13:54:24','','N','Success'),(766,0,0,'gen005','Vishal','2025-10-17 09:15:07','2025-10-19 10:46:44','','N','Success'),(767,0,0,'gen005','Mo','2025-10-17 09:19:15','2025-10-23 09:02:53','','N','Success'),(768,0,0,'GEN005','drashti','2025-10-17 10:00:50','2025-10-17 14:08:38','','N','Success'),(769,0,0,'gen005','janvi','2025-10-17 10:07:51','2025-10-24 13:54:24','','N','Success'),(770,0,0,'gen005','Manshi','2025-10-17 10:12:17','2025-10-24 19:06:05','','N','Success'),(771,0,0,'gen005','Vishal','2025-10-17 10:32:27','2025-10-19 10:46:44','','N','Success'),(772,0,0,'gen005','darshan','2025-10-17 10:37:50','2025-10-24 13:35:37','','N','Success'),(773,0,0,'GEN005','drarchit','2025-10-17 10:52:29','2025-10-17 12:32:43','','N','Success'),(774,0,0,'GEN005','Mo','2025-10-17 10:54:59','2025-10-23 09:02:53','','N','Success'),(775,0,0,'gen005','Drjayant','2025-10-17 11:07:06','2025-10-17 19:55:15','','N','Success'),(776,0,0,'GEN005','Drsagar','2025-10-17 11:17:37','0000-00-00 00:00:00','','Y','Success'),(777,0,0,'gen005','Drpratapsi','2025-10-17 11:24:04','0000-00-00 00:00:00','','Y','Success'),(778,0,0,'GEN005','Mo','2025-10-17 11:38:43','2025-10-23 09:02:53','','N','Success'),(779,0,0,'gen005','Vishal','2025-10-17 11:40:20','2025-10-19 10:46:44','','N','Success'),(780,0,0,'GEN005','Drsagar','2025-10-17 12:04:24','0000-00-00 00:00:00','','Y','Success'),(781,0,0,'GEN005','drarchit','2025-10-17 12:34:26','2025-10-27 13:45:55','','N','Success'),(782,0,0,'gen005','Vishal','2025-10-17 13:03:31','2025-10-19 10:46:44','','N','Success'),(783,0,0,'gen005','shweta','2025-10-17 14:08:45','2025-10-17 16:35:21','','N','Success'),(784,0,0,'gen005','Vishal','2025-10-17 14:09:22','2025-10-19 10:46:44','','N','Success'),(785,0,0,'gen005','Vishal','2025-10-17 14:37:36','2025-10-19 10:46:44','','N','Success'),(786,0,0,'gen005','shweta','2025-10-17 15:44:41','2025-10-17 15:44:41','','N','Failure'),(787,0,0,'gen005','shweta','2025-10-17 15:44:43','2025-10-17 15:44:43','','N','Failure'),(788,0,0,'gen005','shweta','2025-10-17 15:45:06','2025-10-17 15:45:06','','N','Failure'),(789,0,0,'gen005','shweta','2025-10-17 15:45:07','2025-10-17 15:45:07','','N','Failure'),(790,0,0,'gen005','shweta','2025-10-17 15:45:08','2025-10-17 15:45:08','','N','Failure'),(791,0,0,'gen005','shweta','2025-10-17 15:45:08','2025-10-17 15:45:08','','N','Failure'),(792,0,0,'gen005','shweta','2025-10-17 15:45:09','2025-10-17 15:45:09','','N','Failure'),(793,0,0,'gen005','shweta','2025-10-17 15:45:10','2025-10-17 15:45:10','','N','Failure'),(794,0,0,'gen005','shweta','2025-10-17 15:45:10','2025-10-17 15:45:10','','N','Failure'),(795,0,0,'gen005','shweta','2025-10-17 15:45:11','2025-10-17 15:45:11','','N','Failure'),(796,0,0,'gen005','shweta','2025-10-17 15:45:47','2025-10-17 15:45:47','','N','Failure'),(797,0,0,'gen005','shweta','2025-10-17 15:45:50','2025-10-17 15:45:50','','N','Failure'),(798,0,0,'gen005','shweta','2025-10-17 15:45:51','2025-10-17 15:45:51','','N','Failure'),(799,0,0,'gen005','shweta','2025-10-17 15:45:52','2025-10-17 15:45:52','','N','Failure'),(800,0,0,'gen005','shweta','2025-10-17 15:45:56','2025-10-17 15:45:56','','N','Failure'),(801,0,0,'gen005','Shweta','2025-10-17 15:45:59','2025-10-17 15:45:59','','N','Failure'),(802,0,0,'gen005','Shweta','2025-10-17 15:46:00','2025-10-17 15:46:00','','N','Failure'),(803,0,0,'gen005','Shweta','2025-10-17 15:46:10','2025-10-17 15:46:10','','N','Failure'),(804,0,0,'gen005','Shweta','2025-10-17 15:46:13','2025-10-17 15:46:13','','N','Failure'),(805,0,0,'gen005','Shweta','2025-10-17 15:46:14','2025-10-17 15:46:14','','N','Failure'),(806,0,0,'gen005','Shweta','2025-10-17 15:46:15','2025-10-17 15:46:15','','N','Failure'),(807,0,0,'gen005','shweta','2025-10-17 15:46:23','2025-10-17 16:35:21','','N','Success'),(808,0,0,'gen005','shweta','2025-10-17 15:46:24','2025-10-17 16:35:21','','N','Success'),(809,0,0,'GEN005','Mo','2025-10-17 16:27:52','2025-10-23 09:02:53','','N','Success'),(810,0,0,'gen005','Reception','2025-10-17 16:35:27','2025-10-17 20:40:11','','N','Success'),(811,0,0,'GEN005','drashti','2025-10-17 16:59:10','2025-10-18 11:33:19','','N','Success'),(812,0,0,'gen005','RIYA','2025-10-17 17:04:27','2025-10-17 19:41:32','','N','Success'),(813,0,0,'gen005','darshan','2025-10-17 17:08:27','2025-10-24 13:35:37','','N','Success'),(814,0,0,'gen005','janvi','2025-10-17 17:12:07','2025-10-24 13:54:24','','N','Success'),(815,0,0,'gen005','Manshi','2025-10-17 17:15:32','2025-10-24 19:06:05','','N','Success'),(816,0,0,'GEN005','Drridham','2025-10-17 17:44:49','2025-12-02 13:37:44','','N','Success'),(817,0,0,'gen005','Drjayant','2025-10-17 17:50:43','2025-10-17 19:55:15','','N','Success'),(818,0,0,'GEN005','Drsagar','2025-10-17 17:56:45','0000-00-00 00:00:00','','Y','Success'),(819,0,0,'GEN005','drarchit','2025-10-17 18:08:17','2025-10-27 13:45:55','','N','Success'),(820,0,0,'GEN005','Mo','2025-10-17 18:38:50','2025-10-23 09:02:53','','N','Success'),(821,0,0,'gen005','Drpratapsi','2025-10-17 18:50:59','0000-00-00 00:00:00','','Y','Success'),(822,0,0,'gen005','RIYA','2025-10-17 19:14:04','2025-10-17 19:41:32','','N','Success'),(823,0,0,'gen005','Manshi','2025-10-17 19:15:10','2025-10-24 19:06:05','','N','Success'),(824,0,0,'gen005','RIYA','2025-10-17 20:08:34','2025-10-18 16:03:55','','N','Success'),(825,0,0,'gen005','priyanshi','2025-10-17 21:26:52','2025-10-25 16:47:48','','N','Success'),(826,0,0,'GEN005','Mo','2025-10-17 23:36:59','2025-10-23 09:02:53','','N','Success'),(827,0,0,'GEN005','Mo','2025-10-18 00:52:20','2025-10-23 09:02:53','','N','Success'),(828,0,0,'GEN005','Mo','2025-10-18 08:36:37','2025-10-23 09:02:53','','N','Success'),(829,0,0,'gen005','shweta','2025-10-18 08:51:06','2025-10-18 08:51:06','','N','Failure'),(830,0,0,'gen005','shweta','2025-10-18 08:51:21','2025-10-18 08:51:21','','N','Failure'),(831,0,0,'gen005','shweta','2025-10-18 08:51:23','2025-10-18 08:51:23','','N','Failure'),(832,0,0,'gen005','shweta','2025-10-18 08:51:23','2025-10-18 08:51:23','','N','Failure'),(833,0,0,'gen005','shweta','2025-10-18 08:51:24','2025-10-18 08:51:24','','N','Failure'),(834,0,0,'gen005','shweta','2025-10-18 08:51:25','2025-10-18 08:51:25','','N','Failure'),(835,0,0,'gen005','shweta','2025-10-18 08:51:25','2025-10-18 08:51:25','','N','Failure'),(836,0,0,'gen005','shweta','2025-10-18 08:51:32','2025-10-18 08:51:32','','N','Failure'),(837,0,0,'gen005','shweta','2025-10-18 08:51:34','2025-10-18 08:51:34','','N','Failure'),(838,0,0,'gen005','shweta','2025-10-18 08:51:34','2025-10-18 08:51:34','','N','Failure'),(839,0,0,'gen005','shweta','2025-10-18 08:51:35','2025-10-18 08:51:35','','N','Failure'),(840,0,0,'gen005','shweta','2025-10-18 08:51:35','2025-10-18 08:51:35','','N','Failure'),(841,0,0,'gen005','shweta','2025-10-18 08:51:36','2025-10-18 08:51:36','','N','Failure'),(842,0,0,'gen005','shweta','2025-10-18 08:51:38','2025-10-18 08:51:38','','N','Failure'),(843,0,0,'gen005','shweta','2025-10-18 08:51:40','2025-10-18 08:51:40','','N','Failure'),(844,0,0,'gen005','shweta','2025-10-18 08:51:40','2025-10-18 08:51:40','','N','Failure'),(845,0,0,'gen005','shweta','2025-10-18 08:51:41','2025-10-18 08:51:41','','N','Failure'),(846,0,0,'gen005','shweta','2025-10-18 08:51:42','2025-10-18 08:51:42','','N','Failure'),(847,0,0,'GEN005','SHWETA','2025-10-18 08:55:45','2025-10-18 08:55:45','','N','Failure'),(848,0,0,'GEN005','SHWETA','2025-10-18 08:55:46','2025-10-18 08:55:46','','N','Failure'),(849,0,0,'GEN005','SHWETA','2025-10-18 08:55:46','2025-10-18 08:55:46','','N','Failure'),(850,0,0,'GEN005','SHWETA','2025-10-18 08:55:47','2025-10-18 08:55:47','','N','Failure'),(851,0,0,'GEN005','SHWETA','2025-10-18 08:55:47','2025-10-18 08:55:47','','N','Failure'),(852,0,0,'GEN005','SHWETA','2025-10-18 08:55:50','2025-10-18 08:55:50','','N','Failure'),(853,0,0,'GEN005','SHWETA','2025-10-18 08:55:51','2025-10-18 08:55:51','','N','Failure'),(854,0,0,'GEN005','SHWETA','2025-10-18 08:55:54','2025-10-18 08:55:54','','N','Failure'),(855,0,0,'GEN005','SHWETA','2025-10-18 08:55:55','2025-10-18 08:55:55','','N','Failure'),(856,0,0,'GEN005','SHWETA','2025-10-18 08:55:58','2025-10-18 08:55:58','','N','Failure'),(857,0,0,'GEN005','SHWETA','2025-10-18 08:56:06','2025-10-18 08:56:06','','N','Failure'),(858,0,0,'GEN005','SHWETA','2025-10-18 08:56:07','2025-10-18 08:56:07','','N','Failure'),(859,0,0,'GEN005','SHWETA','2025-10-18 08:56:08','2025-10-18 08:56:08','','N','Failure'),(860,0,0,'GEN005','SHWETA','2025-10-18 08:56:13','2025-10-18 08:56:13','','N','Failure'),(861,0,0,'GEN005','SHWETA','2025-10-18 08:56:14','2025-10-18 08:56:14','','N','Failure'),(862,0,0,'GEN005','SHWETA','2025-10-18 08:56:14','2025-10-18 08:56:14','','N','Failure'),(863,0,0,'GEN005','SHWETA','2025-10-18 08:56:15','2025-10-18 08:56:15','','N','Failure'),(864,0,0,'GEN005','SHWETA','2025-10-18 08:56:15','2025-10-18 08:56:15','','N','Failure'),(865,0,0,'GEN005','SHWETA','2025-10-18 08:56:22','2025-10-18 08:56:22','','N','Failure'),(866,0,0,'GEN005','SHWETA','2025-10-18 08:56:23','2025-10-18 08:56:23','','N','Failure'),(867,0,0,'GEN005','SHWETA','2025-10-18 08:56:50','2025-10-18 08:56:50','','N','Failure'),(868,0,0,'GEN005','SHWETA','2025-10-18 08:56:53','2025-10-18 08:56:53','','N','Failure'),(869,0,0,'GEN005','SHWETA','2025-10-18 08:56:54','2025-10-18 08:56:54','','N','Failure'),(870,0,0,'GEN005','SHWETA','2025-10-18 08:56:55','2025-10-18 08:56:55','','N','Failure'),(871,0,0,'GEN005','SHWETA','2025-10-18 08:57:06','2025-10-18 08:57:06','','N','Failure'),(872,0,0,'GEN005','SHWETA','2025-10-18 08:57:07','2025-10-18 08:57:07','','N','Failure'),(873,0,0,'GEN005','SHWETA','2025-10-18 08:57:39','2025-10-18 08:57:39','','N','Failure'),(874,0,0,'GEN005','SHWETA','2025-10-18 08:57:40','2025-10-18 08:57:40','','N','Failure'),(875,0,0,'GEN005','SHWETA','2025-10-18 08:57:40','2025-10-18 08:57:40','','N','Failure'),(876,0,0,'GEN005','SHWETA','2025-10-18 08:57:41','2025-10-18 08:57:41','','N','Failure'),(877,0,0,'GEN005','SHWETA','2025-10-18 08:58:24','2025-10-18 09:38:33','','N','Success'),(878,0,0,'GEN005','SHWETA','2025-10-18 08:58:25','2025-10-18 09:38:33','','N','Success'),(879,0,0,'gen005','riya','2025-10-18 09:36:17','2025-10-18 09:36:17','','N','Failure'),(880,0,0,'gen005','riya','2025-10-18 09:36:30','2025-10-18 09:36:30','','N','Failure'),(881,0,0,'gen005','riya','2025-10-18 09:36:36','2025-10-18 09:36:36','','N','Failure'),(882,0,0,'gen005','riya','2025-10-18 09:36:49','2025-10-18 09:36:49','','N','Failure'),(883,0,0,'gen005','riya','2025-10-18 09:37:20','2025-10-18 09:37:20','','N','Failure'),(884,0,0,'gen005','riya','2025-10-18 09:37:30','2025-10-18 16:03:55','','N','Success'),(885,0,0,'GEN005','Reception','2025-10-18 09:38:54','2025-10-18 15:12:48','','N','Success'),(886,0,0,'gen005','riya','2025-10-18 09:40:27','2025-10-18 16:03:55','','N','Success'),(887,0,0,'gen005','janvi','2025-10-18 09:53:03','2025-10-24 13:54:24','','N','Success'),(888,0,0,'gen005','drashti','2025-10-18 10:12:03','2025-10-18 11:33:19','','N','Success'),(889,0,0,'gen005','Manshi','2025-10-18 10:15:07','2025-10-24 19:06:05','','N','Success'),(890,0,0,'GEN005','drarchit','2025-10-18 10:23:22','2025-10-27 13:45:55','','N','Success'),(891,0,0,'gen005','Mo','2025-10-18 10:33:47','2025-10-23 09:02:53','','N','Success'),(892,0,0,'gen005','darshan','2025-10-18 10:44:35','2025-10-24 13:35:37','','N','Success'),(893,0,0,'gen005','Drpratapsi','2025-10-18 11:03:33','0000-00-00 00:00:00','','Y','Success'),(894,0,0,'GEN005','Drridham','2025-10-18 11:22:24','2025-12-02 13:37:44','','N','Success'),(895,0,0,'gen005','Drjayant','2025-10-18 11:23:34','2025-10-28 13:23:50','','N','Success'),(896,0,0,'GEN005','drashti','2025-10-18 11:33:27','2025-10-18 19:13:08','','N','Success'),(897,0,0,'gen005','drashti','2025-10-18 11:59:44','2025-10-18 19:13:08','','N','Success'),(898,0,0,'gen005','Mo','2025-10-18 12:00:14','2025-10-23 09:02:53','','N','Success'),(899,0,0,'gen005','Mo','2025-10-18 12:19:36','2025-10-23 09:02:53','','N','Success'),(900,0,0,'GEN005','Manshi','2025-10-18 12:55:41','2025-10-24 19:06:05','','N','Success'),(901,0,0,'GEN005','Manshi','2025-10-18 12:56:03','2025-10-24 19:06:05','','N','Success'),(902,0,0,'gen005','Mo','2025-10-18 13:41:22','2025-10-23 09:02:53','','N','Success'),(903,0,0,'gen005','Mo','2025-10-18 14:39:34','2025-10-23 09:02:53','','N','Success'),(904,0,0,'gen005','Mo','2025-10-18 15:18:46','2025-10-23 09:02:53','','N','Success'),(905,0,0,'GEN005','SHWETA','2025-10-18 15:22:50','2025-10-27 15:13:21','','N','Success'),(906,0,0,'GEN005','SHWETA','2025-10-18 15:22:51','2025-10-27 15:13:21','','N','Success'),(907,0,0,'gen005','Mo','2025-10-18 15:27:20','2025-10-23 09:02:53','','N','Success'),(908,0,0,'gen005','Mo','2025-10-18 15:35:01','2025-10-23 09:02:53','','N','Success'),(909,0,0,'gen005','riya','2025-10-18 15:43:32','2025-10-18 16:03:55','','N','Success'),(910,0,0,'gen005','riya','2025-10-18 16:04:02','2025-10-18 17:38:10','','N','Success'),(911,0,0,'GEN005','drashti','2025-10-18 16:20:25','2025-10-18 19:13:08','','N','Success'),(912,0,0,'gen005','Mo','2025-10-18 16:39:43','2025-10-23 09:02:53','','N','Success'),(913,0,0,'GEN005','Reception','2025-10-18 16:59:58','2025-10-18 19:04:05','','N','Success'),(914,0,0,'gen005','Manshi','2025-10-18 17:23:47','2025-10-24 19:06:05','','N','Success'),(915,0,0,'gen005','janvi','2025-10-18 17:34:29','2025-10-24 13:54:24','','N','Success'),(916,0,0,'gen005','janvi','2025-10-18 17:34:44','2025-10-24 13:54:24','','N','Success'),(917,0,0,'gen005','riya','2025-10-18 17:40:13','2025-10-18 19:35:23','','N','Success'),(918,0,0,'gen005','riya','2025-10-18 17:42:54','2025-10-18 19:35:23','','N','Success'),(919,0,0,'GEN005','Mo','2025-10-18 18:09:31','2025-10-23 09:02:53','','N','Success'),(920,0,0,'gen005','Manshi','2025-10-18 18:12:11','2025-10-24 19:06:05','','N','Success'),(921,0,0,'GEN005','Drridham','2025-10-18 18:12:28','2025-12-02 13:37:44','','N','Success'),(922,0,0,'GEN005','drashti','2025-10-18 18:26:59','2025-10-18 19:13:08','','N','Success'),(923,0,0,'GEN005','Reception','2025-10-18 19:08:36','2025-10-19 10:44:03','','N','Success'),(924,0,0,'gen005','drashti','2025-10-18 19:12:45','2025-10-18 19:13:08','','N','Success'),(925,0,0,'gen005','Manshi','2025-10-18 19:13:20','2025-10-24 19:06:05','','N','Success'),(926,0,0,'gen005','janvi','2025-10-18 19:13:50','2025-10-24 13:54:24','','N','Success'),(927,0,0,'gen005','riya','2025-10-18 19:31:52','2025-10-18 19:35:23','','N','Success'),(928,0,0,'gen005','VISHAL','2025-10-18 19:35:48','2025-10-18 19:35:48','','N','Failure'),(929,0,0,'gen005','VISHAL','2025-10-18 19:35:58','2025-10-19 10:46:44','','N','Success'),(930,0,0,'gen005','janvi','2025-10-18 20:03:53','2025-10-24 13:54:24','','N','Success'),(931,0,0,'GEN005','Manshi','2025-10-18 20:04:04','2025-10-24 19:06:05','','N','Success'),(932,0,0,'gen005','Manshi','2025-10-18 20:17:19','2025-10-24 19:06:05','','N','Success'),(933,0,0,'gen005','riya','2025-10-18 20:30:09','2025-10-23 18:33:05','','N','Success'),(934,0,0,'GEN005','Mo','2025-10-18 20:42:09','2025-10-23 09:02:53','','N','Success'),(935,0,0,'gen005','riya','2025-10-18 21:58:54','2025-10-23 18:33:05','','N','Success'),(936,0,0,'gen005','Mo','2025-10-18 21:58:55','2025-10-23 09:02:53','','N','Success'),(937,0,0,'GEN005','Mo','2025-10-18 22:14:34','2025-10-23 09:02:53','','N','Success'),(938,0,0,'GEN005','Mo','2025-10-18 23:08:16','2025-10-23 09:02:53','','N','Success'),(939,0,0,'gen005','Mo','2025-10-18 23:39:09','2025-10-23 09:02:53','','N','Success'),(940,0,0,'GEN005','Mo','2025-10-19 01:30:33','2025-10-23 09:02:53','','N','Success'),(941,0,0,'gen005','Vishal','2025-10-19 10:07:39','2025-10-19 10:07:39','','N','Failure'),(942,0,0,'gen005','Vishal','2025-10-19 10:07:45','2025-10-19 10:46:44','','N','Success'),(943,0,0,'gen005','Reception','2025-10-19 10:12:42','2025-10-19 10:44:03','','N','Success'),(944,0,0,'GEN005','Mo','2025-10-19 10:21:21','2025-10-23 09:02:53','','N','Success'),(945,0,0,'gen005','Vishal','2025-10-19 10:44:18','2025-10-19 10:46:44','','N','Success'),(946,0,0,'gen005','Vishal','2025-10-19 10:47:02','2025-10-19 15:33:25','','N','Success'),(947,0,0,'GEN005','Mo','2025-10-19 12:12:44','2025-10-23 09:02:53','','N','Success'),(948,0,0,'gen005','Vishal','2025-10-19 13:12:48','2025-10-19 15:33:25','','N','Success'),(949,0,0,'gen005','Vishal','2025-10-19 18:01:18','2025-10-19 18:26:29','','N','Success'),(950,0,0,'gen005','Vishal','2025-10-19 18:09:59','2025-10-19 18:26:29','','N','Success'),(951,0,0,'gen005','Vishal','2025-10-19 18:31:43','2025-10-19 21:18:03','','N','Success'),(952,0,0,'GEN005','Mo','2025-10-19 20:57:31','2025-10-23 09:02:53','','N','Success'),(953,0,0,'GEN005','Mo','2025-10-20 09:04:22','2025-10-23 09:02:53','','N','Success'),(954,0,0,'gen005','Vishal','2025-10-20 10:46:49','2025-10-20 14:34:04','','N','Success'),(955,0,0,'GEN005','Mo','2025-10-20 10:55:24','2025-10-23 09:02:53','','N','Success'),(956,0,0,'gen005','Vishal','2025-10-20 11:35:57','2025-10-20 14:34:04','','N','Success'),(957,0,0,'gen005','Vishal','2025-10-20 13:21:21','2025-10-20 14:34:04','','N','Success'),(958,0,0,'gen005','Vishal','2025-10-20 14:23:02','2025-10-20 14:34:04','','N','Success'),(959,0,0,'gen005','Vishal','2025-10-20 14:24:01','2025-10-20 14:34:04','','N','Success'),(960,0,0,'gen005','Reception','2025-10-20 14:34:39','2025-10-20 14:36:51','','N','Success'),(961,0,0,'gen005','Vishal','2025-10-20 14:36:55','2025-10-20 19:31:32','','N','Success'),(962,0,0,'gen005','Vishal','2025-10-20 19:20:44','2025-10-20 19:31:32','','N','Success'),(963,0,0,'gen005','Vishal','2025-10-20 19:36:03','2025-10-21 15:29:24','','N','Success'),(964,0,0,'gen005','Vishal','2025-10-20 20:06:43','2025-10-21 15:29:24','','N','Success'),(965,0,0,'GEN005','Mo','2025-10-21 10:24:01','2025-10-23 09:02:53','','N','Success'),(966,0,0,'gen005','Vishal','2025-10-21 11:19:15','2025-10-21 15:29:24','','N','Success'),(967,0,0,'gen005','Vishal','2025-10-21 12:38:39','2025-10-21 15:29:24','','N','Success'),(968,0,0,'GEN005','Mo','2025-10-21 14:00:37','2025-10-23 09:02:53','','N','Success'),(969,0,0,'GEN005','Mo','2025-10-21 14:55:23','2025-10-23 09:02:53','','N','Success'),(970,0,0,'gen005','Vishal','2025-10-21 15:08:29','2025-10-21 15:29:24','','N','Success'),(971,0,0,'gen005','Vishal','2025-10-21 18:29:49','2025-10-23 08:54:29','','N','Success'),(972,0,0,'GEN005','Mo','2025-10-21 18:49:55','2025-10-23 09:02:53','','N','Success'),(973,0,0,'gen005','Vishal','2025-10-21 19:12:23','2025-10-23 08:54:29','','N','Success'),(974,0,0,'gen005','Mo','2025-10-21 20:36:44','2025-10-23 09:02:53','','N','Success'),(975,0,0,'GEN005','Mo','2025-10-21 22:58:15','2025-10-23 09:02:53','','N','Success'),(976,0,0,'GEN005','Mo','2025-10-22 10:28:38','2025-10-23 09:02:53','','N','Success'),(977,0,0,'gen005','Vishal','2025-10-22 10:53:26','2025-10-23 08:54:29','','N','Success'),(978,0,0,'GEN005','Mo','2025-10-22 11:15:22','2025-10-23 09:02:53','','N','Success'),(979,0,0,'gen005','Vishal','2025-10-22 12:39:11','2025-10-23 08:54:29','','N','Success'),(980,0,0,'GEN005','Mo','2025-10-22 12:57:14','2025-10-23 09:02:53','','N','Success'),(981,0,0,'gen005','Vishal','2025-10-22 13:05:00','2025-10-23 08:54:29','','N','Success'),(982,0,0,'GEN005','Mo','2025-10-22 13:20:34','2025-10-23 09:02:53','','N','Success'),(983,0,0,'GEN005','Mo','2025-10-22 17:57:43','2025-10-23 09:02:53','','N','Success'),(984,0,0,'gen005','Vishal','2025-10-22 20:06:28','2025-10-23 08:54:29','','N','Success'),(985,0,0,'gen005','Mo','2025-10-22 23:25:39','2025-10-23 09:02:53','','N','Success'),(986,0,0,'GEN005','Mo','2025-10-22 23:43:39','2025-10-23 09:02:53','','N','Success'),(987,0,0,'gen005','Vishal','2025-10-23 08:11:36','2025-10-23 08:54:29','','N','Success'),(988,0,0,'gen005','MO','2025-10-23 08:54:51','2025-10-23 08:54:51','','N','Failure'),(989,0,0,'gen005','Mo','2025-10-23 08:55:11','2025-10-23 09:02:53','','N','Success'),(990,0,0,'gen005','drashti','2025-10-23 08:56:54','2025-10-23 11:17:43','','N','Success'),(991,0,0,'gen005','drashti','2025-10-23 09:01:31','2025-10-23 11:17:43','','N','Success'),(992,0,0,'gen005','Vishal','2025-10-23 09:02:57','2025-10-23 17:38:58','','N','Success'),(993,0,0,'gen005','Vishal','2025-10-23 10:36:53','2025-10-23 17:38:58','','N','Success'),(994,0,0,'gen005','shweta','2025-10-23 11:06:02','2025-10-23 11:06:02','','N','Failure'),(995,0,0,'gen005','shweta','2025-10-23 11:06:03','2025-10-23 11:06:03','','N','Failure'),(996,0,0,'gen005','shweta','2025-10-23 11:06:12','2025-10-27 15:13:21','','N','Success'),(997,0,0,'gen005','Drpratapsi','2025-10-23 11:11:33','0000-00-00 00:00:00','','Y','Success'),(998,0,0,'gen005','Vishal','2025-10-23 11:25:21','2025-10-23 17:38:58','','N','Success'),(999,0,0,'gen005','drashti','2025-10-23 11:26:45','2025-10-23 12:56:59','','N','Success'),(1000,0,0,'gen005','darshan','2025-10-23 11:27:21','2025-10-24 13:35:37','','N','Success'),(1001,0,0,'GEN005','Mo','2025-10-23 11:34:48','2025-10-23 17:56:15','','N','Success'),(1002,0,0,'gen005','Vishal','2025-10-23 12:06:52','2025-10-23 17:38:58','','N','Success'),(1003,0,0,'gen005','shweta','2025-10-23 12:11:34','2025-10-23 12:11:34','','N','Failure'),(1004,0,0,'gen005','shweta','2025-10-23 12:11:36','2025-10-23 12:11:36','','N','Failure'),(1005,0,0,'gen005','shweta','2025-10-23 12:11:36','2025-10-23 12:11:36','','N','Failure'),(1006,0,0,'gen005','shweta','2025-10-23 12:11:37','2025-10-23 12:11:37','','N','Failure'),(1007,0,0,'gen005','shweta','2025-10-23 12:11:49','2025-10-27 15:13:21','','N','Success'),(1008,0,0,'gen005','drashti','2025-10-23 12:57:56','2025-10-24 13:46:52','','N','Success'),(1009,0,0,'GEN005','Mo','2025-10-23 15:03:58','2025-10-23 17:56:15','','N','Success'),(1010,0,0,'gen005','Vishal','2025-10-23 17:19:55','2025-10-23 17:38:58','','N','Success'),(1011,0,0,'gen005','darshan','2025-10-23 17:22:12','2025-10-24 13:35:37','','N','Success'),(1012,0,0,'gen005','Urvashi','2025-10-23 17:26:22','2025-10-24 10:48:30','','N','Success'),(1013,0,0,'GEN005','Mo','2025-10-23 17:37:15','2025-10-23 17:56:15','','N','Success'),(1014,0,0,'gen005','Vishal','2025-10-23 17:39:03','2025-10-23 18:09:53','','N','Success'),(1015,0,0,'gen005','Vishal','2025-10-23 17:39:22','2025-10-23 18:09:53','','N','Success'),(1016,0,0,'GEN005','VISHAL','2025-10-23 17:56:23','2025-10-23 18:09:53','','N','Success'),(1017,0,0,'gen005','Riya','2025-10-23 18:32:25','2025-10-23 18:33:05','','N','Success'),(1018,0,0,'gen005','Reception','2025-10-23 18:33:29','2025-10-23 18:33:54','','N','Success'),(1019,0,0,'gen005','Reception','2025-10-23 18:33:57','2025-10-23 18:35:06','','N','Success'),(1020,0,0,'gen005','Reception','2025-10-23 18:35:16','2025-10-23 18:35:41','','N','Success'),(1021,0,0,'gen005','Vishal','2025-10-23 18:35:46','2025-10-25 13:40:01','','N','Success'),(1022,0,0,'gen005','Vishal','2025-10-23 18:47:14','2025-10-25 13:40:01','','N','Success'),(1023,0,0,'GEN005','Mo','2025-10-23 20:10:24','2025-10-23 21:43:04','','N','Success'),(1024,0,0,'GEN005','Mo','2025-10-23 21:09:42','2025-10-23 21:43:04','','N','Success'),(1025,0,0,'GEN005','Mo','2025-10-24 00:27:36','2025-10-27 12:37:46','','N','Success'),(1026,0,0,'GEN005','Mo','2025-10-24 00:57:37','2025-10-27 12:37:46','','N','Success'),(1027,0,0,'gen005','Mo','2025-10-24 07:00:42','2025-10-27 12:37:46','','N','Success'),(1028,0,0,'gen005','Urvashi','2025-10-24 08:54:25','2025-10-24 10:48:30','','N','Success'),(1029,0,0,'gen005','Reception','2025-10-24 09:05:51','2025-10-24 19:55:24','','N','Success'),(1030,0,0,'gen005','drashti','2025-10-24 09:23:24','2025-10-24 13:46:52','','N','Success'),(1031,0,0,'gen005','riya','2025-10-24 09:31:22','2025-10-24 11:05:57','','N','Success'),(1032,0,0,'gen005','riya','2025-10-24 09:35:03','2025-10-24 11:05:57','','N','Success'),(1033,0,0,'gen005','Drpratapsi','2025-10-24 10:03:49','0000-00-00 00:00:00','','Y','Success'),(1034,0,0,'GEN005','Mo','2025-10-24 10:11:15','2025-10-27 12:37:46','','N','Success'),(1035,0,0,'gen005','Janvi','2025-10-24 10:12:42','2025-10-24 13:54:24','','N','Success'),(1036,0,0,'gen005','drashti','2025-10-24 10:21:37','2025-10-24 13:46:52','','N','Success'),(1037,0,0,'gen005','Manshi','2025-10-24 10:25:56','2025-10-24 19:06:05','','N','Success'),(1038,0,0,'gen005','darshan','2025-10-24 10:46:20','2025-10-24 13:35:37','','N','Success'),(1039,0,0,'gen005','priyanshi','2025-10-24 10:48:51','2025-10-25 16:47:48','','N','Success'),(1040,0,0,'gen005','Drjayant','2025-10-24 10:59:25','2025-10-28 13:23:50','','N','Success'),(1041,0,0,'GEN005','Mo','2025-10-24 11:26:27','2025-10-27 12:37:46','','N','Success'),(1042,0,0,'gen005','riya','2025-10-24 11:28:23','2025-10-24 13:51:19','','N','Success'),(1043,0,0,'gen005','riya','2025-10-24 11:34:41','2025-10-24 13:51:19','','N','Success'),(1044,0,0,'GEN005','Drsagar','2025-10-24 11:41:56','0000-00-00 00:00:00','','Y','Success'),(1045,0,0,'gen005','Reception ','2025-10-24 11:52:37','2025-10-24 11:52:37','','N','Failure'),(1046,0,0,'gen005','Reception ','2025-10-24 11:52:38','2025-10-24 11:52:38','','N','Failure'),(1047,0,0,'gen005','Reception ','2025-10-24 11:52:39','2025-10-24 11:52:39','','N','Failure'),(1048,0,0,'gen005','Reception ','2025-10-24 11:52:41','2025-10-24 11:52:41','','N','Failure'),(1049,0,0,'gen005','Reception ','2025-10-24 11:52:43','2025-10-24 11:52:43','','N','Failure'),(1050,0,0,'gen005','Manshi','2025-10-24 12:43:50','2025-10-24 19:06:05','','N','Success'),(1051,0,0,'gen005','darshan','2025-10-24 13:39:44','2025-10-27 12:10:42','','N','Success'),(1052,0,0,'gen005','drashti','2025-10-24 13:47:16','2025-10-24 18:04:14','','N','Success'),(1053,0,0,'gen005','RECEPTION','2025-10-24 13:51:45','2025-10-24 13:51:45','','N','Failure'),(1054,0,0,'gen005','RECEPTION','2025-10-24 13:51:49','2025-10-24 19:55:24','','N','Success'),(1055,0,0,'gen005','Reception ','2025-10-24 13:55:49','2025-10-24 13:55:49','','N','Failure'),(1056,0,0,'gen005','Reception ','2025-10-24 13:55:53','2025-10-24 13:55:53','','N','Failure'),(1057,0,0,'gen005','RECEPTION','2025-10-24 13:56:17','2025-10-24 19:55:24','','N','Success'),(1058,0,0,'GEN005','priyanshi','2025-10-24 14:05:29','2025-10-25 16:47:48','','N','Success'),(1059,0,0,'gen005','riya','2025-10-24 14:46:03','2025-10-25 14:10:42','','N','Success'),(1060,0,0,'gen005','Mo','2025-10-24 14:47:18','2025-10-27 12:37:46','','N','Success'),(1061,0,0,'GEN005','priyanshi','2025-10-24 14:53:56','2025-10-25 16:47:48','','N','Success'),(1062,0,0,'gen005','Mo','2025-10-24 15:42:20','2025-10-27 12:37:46','','N','Success'),(1063,0,0,'gen005','drashti','2025-10-24 16:34:04','2025-10-24 18:04:14','','N','Success'),(1064,0,0,'gen005','Mo','2025-10-24 16:34:43','2025-10-27 12:37:46','','N','Success'),(1065,0,0,'gen005','Reception','2025-10-24 16:38:05','2025-10-24 19:55:24','','N','Success'),(1066,0,0,'GEN005','Janvi','2025-10-24 16:51:59','2025-10-25 16:37:18','','N','Success'),(1067,0,0,'gen005','Mo','2025-10-24 16:57:12','2025-10-27 12:37:46','','N','Success'),(1068,0,0,'gen005','riya','2025-10-24 17:10:34','2025-10-25 14:10:42','','N','Success'),(1069,0,0,'gen005','darshan','2025-10-24 17:19:18','2025-10-27 12:10:42','','N','Success'),(1070,0,0,'gen005','Manshi','2025-10-24 17:19:30','2025-10-24 19:06:05','','N','Success'),(1071,0,0,'gen005','Manshi','2025-10-24 17:35:18','2025-10-24 19:06:05','','N','Success'),(1072,0,0,'gen005','Manshi','2025-10-24 17:35:46','2025-10-24 19:06:05','','N','Success'),(1073,0,0,'gen005','Drjayant','2025-10-24 17:57:49','2025-10-28 13:23:50','','N','Success'),(1074,0,0,'gen005','drashti','2025-10-24 18:05:59','2025-10-24 19:36:22','','N','Success'),(1075,0,0,'gen005','Drpratapsi','2025-10-24 18:17:44','0000-00-00 00:00:00','','Y','Success'),(1076,0,0,'GEN005','Drsagar','2025-10-24 18:41:08','0000-00-00 00:00:00','','Y','Success'),(1077,0,0,'GEN005','Mo','2025-10-24 19:02:46','2025-10-27 12:37:46','','N','Success'),(1078,0,0,'gen005','riya','2025-10-24 19:28:19','2025-10-25 14:10:42','','N','Success'),(1079,0,0,'gen005','drashti','2025-10-24 19:36:47','2025-10-25 11:06:11','','N','Success'),(1080,0,0,'gen005','Manshi','2025-10-24 19:38:11','2025-10-24 20:53:17','','N','Success'),(1081,0,0,'gen005','riya','2025-10-24 19:46:53','2025-10-25 14:10:42','','N','Success'),(1082,0,0,'GEN005','Manshi','2025-10-24 20:05:51','2025-10-24 20:53:17','','N','Success'),(1083,0,0,'gen005','Mo','2025-10-24 23:05:31','2025-10-27 12:37:46','','N','Success'),(1084,0,0,'gen005','riya','2025-10-24 23:06:08','2025-10-25 14:10:42','','N','Success'),(1085,0,0,'gen005','Mo','2025-10-25 02:00:19','2025-10-27 12:37:46','','N','Success'),(1086,0,0,'GEN005','priyanshi','2025-10-25 08:52:38','2025-10-25 16:47:48','','N','Success'),(1087,0,0,'gen005','Reception','2025-10-25 09:03:08','2025-10-25 10:33:46','','N','Success'),(1088,0,0,'gen005','drashti','2025-10-25 09:21:54','2025-10-25 11:06:11','','N','Success'),(1089,0,0,'gen005','Drpratapsi','2025-10-25 09:24:01','0000-00-00 00:00:00','','Y','Success'),(1090,0,0,'gen005','riya','2025-10-25 09:36:46','2025-10-25 14:10:42','','N','Success'),(1091,0,0,'gen005','riya','2025-10-25 09:57:04','2025-10-25 14:10:42','','N','Success'),(1092,0,0,'gen005','Manshi','2025-10-25 10:02:43','2025-10-25 11:36:01','','N','Success'),(1093,0,0,'gen005','Mo','2025-10-25 10:16:00','2025-10-27 12:37:46','','N','Success'),(1094,0,0,'gen005','Reception','2025-10-25 10:34:05','2025-10-25 20:01:41','','N','Success'),(1095,0,0,'gen005','darshan','2025-10-25 10:35:31','2025-10-27 12:10:42','','N','Success'),(1096,0,0,'gen005','drashti','2025-10-25 10:57:57','2025-10-25 11:06:11','','N','Success'),(1097,0,0,'GEN005','Manshi','2025-10-25 11:02:58','2025-10-25 11:36:01','','N','Success'),(1098,0,0,'gen005','drashti','2025-10-25 11:07:54','2025-10-25 12:38:04','','N','Success'),(1099,0,0,'gen005','Drjayant','2025-10-25 11:13:05','2025-10-28 13:23:50','','N','Success'),(1100,0,0,'gen005','Mo','2025-10-25 11:17:00','2025-10-27 12:37:46','','N','Success'),(1101,0,0,'GEN005','Janvi','2025-10-25 11:20:48','2025-10-25 16:37:18','','N','Success'),(1102,0,0,'gen005','Manshi','2025-10-25 11:39:18','2025-10-28 12:29:38','','N','Success'),(1103,0,0,'gen005','Manshi','2025-10-25 12:06:03','2025-10-28 12:29:38','','N','Success'),(1104,0,0,'gen005','Manshi','2025-10-25 12:06:34','2025-10-28 12:29:38','','N','Success'),(1105,0,0,'gen005','Manshi','2025-10-25 12:07:30','2025-10-28 12:29:38','','N','Success'),(1106,0,0,'gen005','VISHAL','2025-10-25 12:36:52','2025-10-25 13:40:01','','N','Success'),(1107,0,0,'gen005','drashti','2025-10-25 12:40:40','2025-10-25 20:23:53','','N','Success'),(1108,0,0,'gen005','riya','2025-10-25 13:42:36','2025-10-25 14:10:42','','N','Success'),(1109,0,0,'gen005','drashti','2025-10-25 13:45:59','2025-10-25 20:23:53','','N','Success'),(1110,0,0,'gen005','riya','2025-10-25 14:10:06','2025-10-25 14:10:42','','N','Success'),(1111,0,0,'gen005','riya','2025-10-25 14:15:11','2025-10-25 21:45:35','','N','Success'),(1112,0,0,'gen005','Reception','2025-10-25 14:34:54','2025-10-25 20:01:41','','N','Success'),(1113,0,0,'GEN005','Mo','2025-10-25 14:59:04','2025-10-27 12:37:46','','N','Success'),(1114,0,0,'gen005','priyanshi','2025-10-25 15:15:23','2025-10-25 16:47:48','','N','Success'),(1115,0,0,'gen005','riya','2025-10-25 15:53:29','2025-10-25 21:45:35','','N','Success'),(1116,0,0,'gen005','drashti','2025-10-25 16:36:24','2025-10-25 20:23:53','','N','Success'),(1117,0,0,'gen005','Janvi','2025-10-25 16:36:33','2025-10-25 16:37:18','','N','Success'),(1118,0,0,'gen005','priyanshi','2025-10-25 16:37:24','2025-10-25 16:47:48','','N','Success'),(1119,0,0,'gen005','Janvi','2025-10-25 16:47:53','2025-10-29 12:27:56','','N','Success'),(1120,0,0,'gen005','Reception','2025-10-25 17:05:17','2025-10-25 20:01:41','','N','Success'),(1121,0,0,'gen005','Janvi','2025-10-25 17:16:46','2025-10-29 12:27:56','','N','Success'),(1122,0,0,'gen005','Manshi','2025-10-25 17:21:31','2025-10-28 12:29:38','','N','Success'),(1123,0,0,'gen005','drashti','2025-10-25 17:38:38','2025-10-25 20:23:53','','N','Success'),(1124,0,0,'GEN005','Drsagar','2025-10-25 18:35:03','0000-00-00 00:00:00','','Y','Success'),(1125,0,0,'GEN005','Mo','2025-10-25 18:36:52','2025-10-27 12:37:46','','N','Success'),(1126,0,0,'gen005','riya','2025-10-25 18:43:28','2025-10-25 21:45:35','','N','Success'),(1127,0,0,'gen005','Drpratapsi','2025-10-25 19:02:46','0000-00-00 00:00:00','','Y','Success'),(1128,0,0,'gen005','Mo','2025-10-25 20:08:16','2025-10-27 12:37:46','','N','Success'),(1129,0,0,'gen005','shweta','2025-10-25 20:24:12','2025-10-27 15:13:21','','N','Success'),(1130,0,0,'GEN005','Mo','2025-10-25 21:20:29','2025-10-27 12:37:46','','N','Success'),(1131,0,0,'GEN005','Mo','2025-10-25 22:03:44','2025-10-27 12:37:46','','N','Success'),(1132,0,0,'GEN005','Mo','2025-10-26 08:14:51','2025-10-27 12:37:46','','N','Success'),(1133,0,0,'gen005','Urvashi','2025-10-26 09:27:50','2025-10-26 12:28:25','','N','Success'),(1134,0,0,'GEN005','Mo','2025-10-26 09:40:17','2025-10-27 12:37:46','','N','Success'),(1135,0,0,'gen005','riya','2025-10-26 10:14:17','2025-10-26 10:19:57','','N','Success'),(1136,0,0,'gen005','riya','2025-10-26 10:18:19','2025-10-26 10:19:57','','N','Success'),(1137,0,0,'gen005','riya','2025-10-26 12:15:47','2025-10-27 14:52:58','','N','Success'),(1138,0,0,'GEN005','Mo','2025-10-26 12:20:53','2025-10-27 12:37:46','','N','Success'),(1139,0,0,'gen005','riya','2025-10-26 12:25:08','2025-10-27 14:52:58','','N','Success'),(1140,0,0,'GEN005','Mo','2025-10-26 13:39:18','2025-10-27 12:37:46','','N','Success'),(1141,0,0,'gen005','riya','2025-10-26 16:32:52','2025-10-27 14:52:58','','N','Success'),(1142,0,0,'gen005','riya','2025-10-26 19:22:38','2025-10-27 14:52:58','','N','Success'),(1143,0,0,'gen005','riya','2025-10-26 21:02:10','2025-10-27 14:52:58','','N','Success'),(1144,0,0,'GEN005','Mo','2025-10-26 23:40:56','2025-10-27 12:37:46','','N','Success'),(1145,0,0,'GEN005','Mo','2025-10-27 07:42:23','2025-10-27 12:37:46','','N','Success'),(1146,0,0,'gen005','Urvashi','2025-10-27 08:45:21','2025-10-27 09:22:13','','N','Success'),(1147,0,0,'gen005','Reception','2025-10-27 09:05:02','2025-10-27 09:22:24','','N','Success'),(1148,0,0,'gen005','janvi','2025-10-27 09:15:47','2025-10-29 12:27:56','','N','Success'),(1149,0,0,'gen005','Urvashi','2025-10-27 09:22:54','2025-10-27 12:10:58','','N','Success'),(1150,0,0,'gen005','Reception','2025-10-27 09:23:13','2025-10-27 13:42:37','','N','Success'),(1151,0,0,'gen005','janvi','2025-10-27 09:24:27','2025-10-29 12:27:56','','N','Success'),(1152,0,0,'gen005','riya','2025-10-27 09:51:50','2025-10-27 14:52:58','','N','Success'),(1153,0,0,'GEN005','Mo','2025-10-27 10:01:40','2025-10-27 12:37:46','','N','Success'),(1154,0,0,'gen005','Manshi','2025-10-27 10:08:15','2025-10-28 12:29:38','','N','Success'),(1155,0,0,'gen005','Reception','2025-10-27 10:19:21','2025-10-27 10:19:21','','N','Failure'),(1156,0,0,'gen005','Reception','2025-10-27 10:19:24','2025-10-27 10:19:24','','N','Failure'),(1157,0,0,'gen005','Reception','2025-10-27 10:19:39','2025-10-27 13:42:37','','N','Success'),(1158,0,0,'gen005','riya','2025-10-27 10:24:50','2025-10-27 14:52:58','','N','Success'),(1159,0,0,'gen005','Drpratapsi','2025-10-27 10:36:11','0000-00-00 00:00:00','','Y','Success'),(1160,0,0,'gen005','darshan','2025-10-27 10:40:10','2025-10-27 12:10:42','','N','Success'),(1161,0,0,'gen005','drarchit','2025-10-27 10:45:04','2025-10-27 13:45:55','','N','Success'),(1162,0,0,'gen005','Drjayant','2025-10-27 10:55:11','2025-10-28 13:23:50','','N','Success'),(1163,0,0,'GEN005','Mo','2025-10-27 10:57:56','2025-10-27 12:37:46','','N','Success'),(1164,0,0,'GEN005','Drsagar','2025-10-27 11:03:07','0000-00-00 00:00:00','','Y','Success'),(1165,0,0,'gen005','janvi','2025-10-27 11:17:40','2025-10-29 12:27:56','','N','Success'),(1166,0,0,'GEN005','Drridham','2025-10-27 11:33:34','2025-12-02 13:37:44','','N','Success'),(1167,0,0,'GEN005','Mo','2025-10-27 11:41:30','2025-10-27 12:37:46','','N','Success'),(1168,0,0,'gen005','drashti','2025-10-27 12:11:14','2025-10-27 18:04:35','','N','Success'),(1169,0,0,'gen005','darshan','2025-10-27 12:15:35','2025-10-31 13:41:58','','N','Success'),(1170,0,0,'GEN005','Mo','2025-10-27 12:42:13','2025-10-30 19:12:22','','N','Success'),(1171,0,0,'gen005','shweta','2025-10-27 13:42:45','2025-10-27 15:13:21','','N','Success'),(1172,0,0,'GEN005','drarchit','2025-10-27 13:48:21','2025-10-28 13:21:54','','N','Success'),(1173,0,0,'gen005','riya','2025-10-27 15:06:41','2025-10-28 14:59:01','','N','Success'),(1174,0,0,'gen005','Dharmishth','2025-10-27 15:41:31','0000-00-00 00:00:00','','Y','Success'),(1175,0,0,'gen005','Dharmishth','2025-10-27 15:43:11','0000-00-00 00:00:00','','Y','Success'),(1176,0,0,'gen005','Dharmishth','2025-10-27 16:13:23','0000-00-00 00:00:00','','Y','Success'),(1177,0,0,'gen005','Dharmishth','2025-10-27 16:13:37','0000-00-00 00:00:00','','Y','Success'),(1178,0,0,'GEN005','Mo','2025-10-27 16:20:15','2025-10-30 19:12:22','','N','Success'),(1179,0,0,'gen005','Reception','2025-10-27 16:22:24','2025-10-28 14:42:38','','N','Success'),(1180,0,0,'gen005','Dharmishth','2025-10-27 16:31:13','0000-00-00 00:00:00','','Y','Success'),(1181,0,0,'gen005','riya','2025-10-27 16:33:39','2025-10-28 14:59:01','','N','Success'),(1182,0,0,'gen005','riya','2025-10-27 16:39:59','2025-10-28 14:59:01','','N','Success'),(1183,0,0,'gen005','darshan','2025-10-27 16:59:48','2025-10-31 13:41:58','','N','Success'),(1184,0,0,'gen005','Manshi','2025-10-27 17:12:03','2025-10-28 12:29:38','','N','Success'),(1185,0,0,'gen005','janvi','2025-10-27 17:18:03','2025-10-29 12:27:56','','N','Success'),(1186,0,0,'gen005','janvi','2025-10-27 17:20:49','2025-10-29 12:27:56','','N','Success'),(1187,0,0,'gen005','Dharmishth','2025-10-27 17:32:08','0000-00-00 00:00:00','','Y','Success'),(1188,0,0,'gen005','Drjayant','2025-10-27 17:40:01','2025-10-28 13:23:50','','N','Success'),(1189,0,0,'gen005','Dharmishth','2025-10-27 17:55:17','0000-00-00 00:00:00','','Y','Success'),(1190,0,0,'gen005','Drpratapsi','2025-10-27 17:59:34','0000-00-00 00:00:00','','Y','Success'),(1191,0,0,'GEN005','Mo','2025-10-27 18:04:36','2025-10-30 19:12:22','','N','Success'),(1192,0,0,'GEN005','shweta','2025-10-27 18:04:41','2025-10-27 20:28:12','','N','Success'),(1193,0,0,'gen005','VISHAL','2025-10-27 18:25:39','2025-10-27 18:25:39','','N','Failure'),(1194,0,0,'gen005','VISHAL','2025-10-27 18:25:50','2025-10-27 18:25:50','','N','Failure'),(1195,0,0,'gen005','VISHAL','2025-10-27 18:25:56','2025-10-28 21:29:21','','N','Success'),(1196,0,0,'gen005','drarchit','2025-10-27 18:27:35','2025-10-28 13:21:54','','N','Success'),(1197,0,0,'GEN005','Drridham','2025-10-27 18:48:58','2025-12-02 13:37:44','','N','Success'),(1198,0,0,'gen005','janvi','2025-10-27 18:49:39','2025-10-29 12:27:56','','N','Success'),(1199,0,0,'gen005','Mo','2025-10-27 18:59:58','2025-10-30 19:12:22','','N','Success'),(1200,0,0,'gen005','janvi','2025-10-27 19:06:26','2025-10-29 12:27:56','','N','Success'),(1201,0,0,'gen005','Dharmishth','2025-10-27 19:10:27','0000-00-00 00:00:00','','Y','Success'),(1202,0,0,'GEN005','Manshi','2025-10-27 19:47:15','2025-10-28 12:29:38','','N','Success'),(1203,0,0,'gen005','Drpratapsi','2025-10-27 19:51:40','0000-00-00 00:00:00','','Y','Success'),(1204,0,0,'gen005','Manshi','2025-10-27 20:32:31','2025-10-28 12:29:38','','N','Success'),(1205,0,0,'GEN005','Mo','2025-10-27 20:53:02','2025-10-30 19:12:22','','N','Success'),(1206,0,0,'GEN005','Mo','2025-10-27 23:07:03','2025-10-30 19:12:22','','N','Success'),(1207,0,0,'GEN005','Mo','2025-10-28 07:57:30','2025-10-30 19:12:22','','N','Success'),(1208,0,0,'gen005','Reception','2025-10-28 08:55:05','2025-10-28 08:55:05','','N','Failure'),(1209,0,0,'gen005','Reception','2025-10-28 08:55:24','2025-10-28 14:42:38','','N','Success'),(1210,0,0,'gen005','Urvashi','2025-10-28 09:06:31','2025-10-28 09:45:33','','N','Success'),(1211,0,0,'GEN005','Mo','2025-10-28 09:09:42','2025-10-30 19:12:22','','N','Success'),(1212,0,0,'gen005','janvi','2025-10-28 09:12:13','2025-10-29 12:27:56','','N','Success'),(1213,0,0,'gen005','janvi','2025-10-28 09:22:14','2025-10-29 12:27:56','','N','Success'),(1214,0,0,'gen005','drashti','2025-10-28 09:45:43','2025-10-28 16:48:41','','N','Success'),(1215,0,0,'gen005','riya','2025-10-28 09:55:01','2025-10-28 14:59:01','','N','Success'),(1216,0,0,'gen005','Drpratapsi','2025-10-28 10:05:33','0000-00-00 00:00:00','','Y','Success'),(1217,0,0,'gen005','darshan','2025-10-28 10:43:41','2025-10-31 13:41:58','','N','Success'),(1218,0,0,'gen005','riya','2025-10-28 10:50:45','2025-10-28 14:59:01','','N','Success'),(1219,0,0,'gen005','Manshi','2025-10-28 10:58:51','2025-10-28 12:29:38','','N','Success'),(1220,0,0,'GEN005','Drsagar','2025-10-28 11:12:26','0000-00-00 00:00:00','','Y','Success'),(1221,0,0,'gen005','Drjayant','2025-10-28 11:16:18','2025-10-28 13:23:50','','N','Success'),(1222,0,0,'GEN005','drarchit','2025-10-28 11:25:41','2025-10-28 13:21:54','','N','Success'),(1223,0,0,'GEN005','Mo','2025-10-28 11:33:17','2025-10-30 19:12:22','','N','Success'),(1224,0,0,'gen005','riya','2025-10-28 11:49:40','2025-10-28 14:59:01','','N','Success'),(1225,0,0,'gen005','Dharmishth','2025-10-28 12:05:39','0000-00-00 00:00:00','','Y','Success'),(1226,0,0,'gen005','Manshi','2025-10-28 12:31:11','2025-10-29 18:49:14','','N','Success'),(1227,0,0,'GEN005','Mo','2025-10-28 13:18:05','2025-10-30 19:12:22','','N','Success'),(1228,0,0,'GEN005','drarchit','2025-10-28 13:33:05','2025-10-28 19:59:51','','N','Success'),(1229,0,0,'gen005','Dharmishth','2025-10-28 14:06:16','0000-00-00 00:00:00','','Y','Success'),(1230,0,0,'gen005','riya','2025-10-28 15:15:11','2025-10-29 16:52:37','','N','Success'),(1231,0,0,'GEN005','Mo','2025-10-28 15:17:04','2025-10-30 19:12:22','','N','Success'),(1232,0,0,'Gen005','Mo','2025-10-28 15:24:18','2025-10-30 19:12:22','','N','Success'),(1233,0,0,'gen005','Reception','2025-10-28 15:38:12','2025-10-28 19:56:12','','N','Success'),(1234,0,0,'GEN005','drashti','2025-10-28 16:35:55','2025-10-28 16:48:41','','N','Success'),(1235,0,0,'gen005','riya','2025-10-28 16:41:28','2025-10-29 16:52:37','','N','Success'),(1236,0,0,'GEN005','drashti','2025-10-28 16:52:14','2025-10-29 09:32:31','','N','Success'),(1237,0,0,'gen005','darshan','2025-10-28 17:11:36','2025-10-31 13:41:58','','N','Success'),(1238,0,0,'gen005','janvi','2025-10-28 17:17:23','2025-10-29 12:27:56','','N','Success'),(1239,0,0,'gen005','Dharmishth','2025-10-28 17:41:31','0000-00-00 00:00:00','','Y','Success'),(1240,0,0,'gen005','Drjayant','2025-10-28 17:45:41','2025-10-29 13:26:34','','N','Success'),(1241,0,0,'gen005','Manshi','2025-10-28 18:01:42','2025-10-29 18:49:14','','N','Success'),(1242,0,0,'gen005','drarchit','2025-10-28 18:08:46','2025-10-28 19:59:51','','N','Success'),(1243,0,0,'GEN005','Drridham','2025-10-28 18:18:36','2025-12-02 13:37:44','','N','Success'),(1244,0,0,'GEN005','Drsagar','2025-10-28 18:59:43','0000-00-00 00:00:00','','Y','Success'),(1245,0,0,'gen005','Drpratapsi','2025-10-28 19:19:18','0000-00-00 00:00:00','','Y','Success'),(1246,0,0,'GEN005','Reception','2025-10-28 19:40:28','2025-10-28 19:56:12','','N','Success'),(1247,0,0,'gen005','Vishal','2025-10-28 19:51:55','2025-10-28 19:51:55','','N','Failure'),(1248,0,0,'gen005','Vishal','2025-10-28 19:52:04','2025-10-28 19:52:04','','N','Failure'),(1249,0,0,'gen005','Vishal','2025-10-28 19:52:09','2025-10-28 21:29:21','','N','Success'),(1250,0,0,'gen005','Dharmishth','2025-10-28 20:07:04','0000-00-00 00:00:00','','Y','Success'),(1251,0,0,'GEN005','drarchit','2025-10-28 20:13:15','2025-10-29 12:48:37','','N','Success'),(1252,0,0,'Gen005','Mo','2025-10-28 21:19:01','2025-10-30 19:12:22','','N','Success'),(1253,0,0,'gen005','Vishal','2025-10-28 21:31:49','2025-10-29 17:15:05','','N','Success'),(1254,0,0,'gen005','Vishal','2025-10-28 22:23:28','2025-10-29 17:15:05','','N','Success'),(1255,0,0,'gen005','Mo','2025-10-29 01:22:11','2025-10-30 19:12:22','','N','Success'),(1256,0,0,'gen005','Reception','2025-10-29 08:50:43','2025-10-29 14:34:03','','N','Success'),(1257,0,0,'GEN005','Urvashi','2025-10-29 08:51:20','2025-10-29 09:32:08','','N','Success'),(1258,0,0,'gen005','janvi','2025-10-29 09:10:29','2025-10-29 12:27:56','','N','Success'),(1259,0,0,'gen005','riya','2025-10-29 09:32:01','2025-10-29 16:52:37','','N','Success'),(1260,0,0,'GEN005','drashti','2025-10-29 09:32:20','2025-10-29 09:32:31','','N','Success'),(1261,0,0,'GEN005','drashti','2025-10-29 09:32:45','2025-10-29 13:19:44','','N','Success'),(1262,0,0,'gen005','riya','2025-10-29 09:37:48','2025-10-29 16:52:37','','N','Success'),(1263,0,0,'gen005','riya','2025-10-29 09:52:38','2025-10-29 16:52:37','','N','Success'),(1264,0,0,'gen005','Reception','2025-10-29 09:58:18','2025-10-29 14:34:03','','N','Success'),(1265,0,0,'gen005','Manshi','2025-10-29 10:03:29','2025-10-29 18:49:14','','N','Success'),(1266,0,0,'GEN005','Mo','2025-10-29 10:06:30','2025-10-30 19:12:22','','N','Success'),(1267,0,0,'gen005','Drpratapsi','2025-10-29 10:13:25','0000-00-00 00:00:00','','Y','Success'),(1268,0,0,'gen005','Dharmishth','2025-10-29 10:24:28','0000-00-00 00:00:00','','Y','Success'),(1269,0,0,'gen005','Dharmishth','2025-10-29 10:25:01','0000-00-00 00:00:00','','Y','Success'),(1270,0,0,'gen005','Manshi','2025-10-29 10:48:48','2025-10-29 18:49:14','','N','Success'),(1271,0,0,'gen005','darshan','2025-10-29 10:53:50','2025-10-31 13:41:58','','N','Success'),(1272,0,0,'gen005','riya','2025-10-29 10:54:27','2025-10-29 16:52:37','','N','Success'),(1273,0,0,'gen005','Drjayant','2025-10-29 11:04:35','2025-10-29 13:26:34','','N','Success'),(1274,0,0,'GEN005','drarchit','2025-10-29 11:18:04','2025-10-29 12:48:37','','N','Success'),(1275,0,0,'GEN005','Drridham','2025-10-29 11:20:36','2025-12-02 13:37:44','','N','Success'),(1276,0,0,'GEN005','Manshi','2025-10-29 11:35:45','2025-10-29 18:49:14','','N','Success'),(1277,0,0,'GEN005','Mo','2025-10-29 11:35:57','2025-10-30 19:12:22','','N','Success'),(1278,0,0,'GEN005','Drsagar','2025-10-29 11:38:31','0000-00-00 00:00:00','','Y','Success'),(1279,0,0,'gen005','Dharmishth','2025-10-29 12:01:35','0000-00-00 00:00:00','','Y','Success'),(1280,0,0,'gen005','thims','2025-10-29 12:03:33','2025-10-31 13:40:25','','N','Success'),(1281,0,0,'Gen005','Mo','2025-10-29 12:24:22','2025-10-30 19:12:22','','N','Success'),(1282,0,0,'gen005','Dharmishth','2025-10-29 12:31:21','0000-00-00 00:00:00','','Y','Success'),(1283,0,0,'gen005','janvi','2025-10-29 12:44:30','2025-10-30 15:31:50','','N','Success'),(1284,0,0,'GEN005','drarchit','2025-10-29 12:50:46','2025-10-29 19:41:14','','N','Success'),(1285,0,0,'gen005','drashti','2025-10-29 13:21:12','2025-10-30 13:59:06','','N','Success'),(1286,0,0,'gen005','janvi','2025-10-29 14:08:39','2025-10-30 15:31:50','','N','Success'),(1287,0,0,'GEN005','Mo','2025-10-29 14:10:11','2025-10-30 19:12:22','','N','Success'),(1288,0,0,'GEN005','Mo','2025-10-29 14:53:43','2025-10-30 19:12:22','','N','Success'),(1289,0,0,'gen005','Reception','2025-10-29 14:57:15','2025-10-30 14:28:01','','N','Success'),(1290,0,0,'GEN005','Mo','2025-10-29 16:03:33','2025-10-30 19:12:22','','N','Success'),(1291,0,0,'gen005','Reception','2025-10-29 16:12:54','2025-10-30 14:28:01','','N','Success'),(1292,0,0,'GEN005','drashti','2025-10-29 16:44:12','2025-10-30 13:59:06','','N','Success'),(1293,0,0,'gen005','riya','2025-10-29 17:02:32','2025-10-30 12:11:46','','N','Success'),(1294,0,0,'gen005','priyanshi','2025-10-29 17:05:51','2025-11-03 09:36:32','','N','Success'),(1295,0,0,'gen005','Vishal','2025-10-29 17:08:47','2025-10-29 17:15:05','','N','Success'),(1296,0,0,'gen005','Manshi','2025-10-29 17:12:56','2025-10-29 18:49:14','','N','Success'),(1297,0,0,'gen005','Vishal','2025-10-29 17:15:08','2025-10-29 18:15:40','','N','Success'),(1298,0,0,'gen005','darshan','2025-10-29 17:23:41','2025-10-31 13:41:58','','N','Success'),(1299,0,0,'gen005','priyanshi','2025-10-29 17:27:35','2025-11-03 09:36:32','','N','Success'),(1300,0,0,'gen005','thims','2025-10-29 17:48:53','2025-10-31 13:40:25','','N','Success'),(1301,0,0,'gen005','Drjayant','2025-10-29 17:55:13','2025-10-31 14:02:14','','N','Success'),(1302,0,0,'gen005','janvi','2025-10-29 17:55:18','2025-10-30 15:31:50','','N','Success'),(1303,0,0,'GEN005','Mo','2025-10-29 18:04:21','2025-10-30 19:12:22','','N','Success'),(1304,0,0,'GEN005','drarchit','2025-10-29 18:05:55','2025-10-29 19:41:14','','N','Success'),(1305,0,0,'gen005','shweta','2025-10-29 18:14:18','2025-10-29 19:00:55','','N','Success'),(1306,0,0,'GEN005','Mo','2025-10-29 18:16:59','2025-10-30 19:12:22','','N','Success'),(1307,0,0,'gen005','Vishal','2025-10-29 18:19:16','2025-10-29 18:59:45','','N','Success'),(1308,0,0,'gen005','Drpratapsi','2025-10-29 18:32:35','0000-00-00 00:00:00','','Y','Success'),(1309,0,0,'gen005','Manshi','2025-10-29 18:51:28','2025-10-30 11:46:26','','N','Success'),(1310,0,0,'gen005','Manshi','2025-10-29 18:51:55','2025-10-30 11:46:26','','N','Success'),(1311,0,0,'GEN005','drashti','2025-10-29 19:01:05','2025-10-30 13:59:06','','N','Success'),(1312,0,0,'gen005','Vishal','2025-10-29 19:01:49','2025-10-31 13:42:16','','N','Success'),(1313,0,0,'GEN005','drarchit','2025-10-29 19:41:37','2025-11-11 20:09:37','','N','Success'),(1314,0,0,'gen005','Mo','2025-10-29 20:16:13','2025-10-30 19:12:22','','N','Success'),(1315,0,0,'gen005','Vishal','2025-10-29 22:13:48','2025-10-31 13:42:16','','N','Success'),(1316,0,0,'gen005','Mo','2025-10-29 22:46:50','2025-10-30 19:12:22','','N','Success'),(1317,0,0,'gen005','Mo','2025-10-30 00:36:31','2025-10-30 19:12:22','','N','Success'),(1318,0,0,'GEN005','Urvashi','2025-10-30 09:00:19','2025-10-30 09:19:22','','N','Success'),(1319,0,0,'gen005','Reception','2025-10-30 09:00:27','2025-10-30 14:28:01','','N','Success'),(1320,0,0,'gen005','janvi','2025-10-30 09:06:18','2025-10-30 15:31:50','','N','Success'),(1321,0,0,'GEN005','drashti','2025-10-30 09:19:30','2025-10-30 13:59:06','','N','Success'),(1322,0,0,'gen005','riya','2025-10-30 09:38:30','2025-10-30 09:38:30','','N','Failure'),(1323,0,0,'gen005','riya','2025-10-30 09:38:41','2025-10-30 09:38:41','','N','Failure'),(1324,0,0,'gen005','riya','2025-10-30 09:38:59','2025-10-30 12:11:46','','N','Success'),(1325,0,0,'gen005','Mo','2025-10-30 09:47:05','2025-10-30 19:12:22','','N','Success'),(1326,0,0,'gen005','janvi','2025-10-30 10:14:57','2025-10-30 15:31:50','','N','Success'),(1327,0,0,'gen005','Manshi','2025-10-30 10:16:04','2025-10-30 11:46:26','','N','Success'),(1328,0,0,'gen005','riya','2025-10-30 10:32:34','2025-10-30 12:11:46','','N','Success'),(1329,0,0,'gen005','darshan','2025-10-30 10:34:38','2025-10-31 13:41:58','','N','Success'),(1330,0,0,'gen005','Dharmishth','2025-10-30 10:38:54','0000-00-00 00:00:00','','Y','Success'),(1331,0,0,'gen005','Dharmishth','2025-10-30 10:39:18','0000-00-00 00:00:00','','Y','Success'),(1332,0,0,'GEN005','drarchit','2025-10-30 10:55:34','2025-11-11 20:09:37','','N','Success'),(1333,0,0,'gen005','Dharmishth','2025-10-30 10:58:08','0000-00-00 00:00:00','','Y','Success'),(1334,0,0,'GEN005','Mo','2025-10-30 11:01:30','2025-10-30 19:12:22','','N','Success'),(1335,0,0,'gen005','Drjayant','2025-10-30 11:06:21','2025-10-31 14:02:14','','N','Success'),(1336,0,0,'gen005','Drpratapsi','2025-10-30 11:50:29','0000-00-00 00:00:00','','Y','Success'),(1337,0,0,'gen005','Manshi','2025-10-30 11:51:50','2025-11-01 11:46:04','','N','Success'),(1338,0,0,'gen005','riya','2025-10-30 12:11:54','2025-10-30 19:02:59','','N','Success'),(1339,0,0,'gen005','Dharmishth','2025-10-30 12:15:45','0000-00-00 00:00:00','','Y','Success'),(1340,0,0,'gen005','Dharmishth','2025-10-30 12:17:44','0000-00-00 00:00:00','','Y','Success'),(1341,0,0,'gen005','Dharmishth','2025-10-30 12:19:51','0000-00-00 00:00:00','','Y','Success'),(1342,0,0,'gen005','Drjayant','2025-10-30 13:47:05','2025-10-31 14:02:14','','N','Success'),(1343,0,0,'gen005','riya','2025-10-30 13:51:11','2025-10-30 19:02:59','','N','Success'),(1344,0,0,'GEN005','Urvashi','2025-10-30 14:07:02','2025-10-31 09:41:23','','N','Success'),(1345,0,0,'GEN005','Urvashi','2025-10-30 14:51:46','2025-10-31 09:41:23','','N','Success'),(1346,0,0,'gen005','janvi','2025-10-30 15:23:16','2025-10-30 15:31:50','','N','Success'),(1347,0,0,'gen005','riya','2025-10-30 15:46:23','2025-10-30 19:02:59','','N','Success'),(1348,0,0,'gen005','Reception','2025-10-30 16:03:06','2025-10-30 16:03:06','','N','Failure'),(1349,0,0,'gen005','Reception','2025-10-30 16:03:09','2025-10-30 20:58:04','','N','Success'),(1350,0,0,'gen005','riya','2025-10-30 16:12:24','2025-10-30 19:02:59','','N','Success'),(1351,0,0,'gen005','priyanshi','2025-10-30 16:47:55','2025-11-03 09:36:32','','N','Success'),(1352,0,0,'GEN005','drashti','2025-10-30 16:49:31','2025-10-30 20:11:43','','N','Success'),(1353,0,0,'gen005','Drpratapsi','2025-10-30 16:50:27','0000-00-00 00:00:00','','Y','Success'),(1354,0,0,'gen005','darshan','2025-10-30 17:10:57','2025-10-31 13:41:58','','N','Success'),(1355,0,0,'gen005','Manshi','2025-10-30 17:12:38','2025-11-01 11:46:04','','N','Success'),(1356,0,0,'gen005','janvi','2025-10-30 17:16:52','2025-10-31 13:12:33','','N','Success'),(1357,0,0,'gen005','Drjayant','2025-10-30 17:37:00','2025-10-31 14:02:14','','N','Success'),(1358,0,0,'GEN005','MO','2025-10-30 18:12:01','2025-10-30 18:12:01','','N','Failure'),(1359,0,0,'GEN005','Mo','2025-10-30 18:12:21','2025-10-30 18:12:21','','N','Failure'),(1360,0,0,'GEN005','Mo','2025-10-30 18:12:24','2025-10-30 18:12:24','','N','Failure'),(1361,0,0,'GEN005','Mo','2025-10-30 18:12:28','2025-10-30 18:12:28','','N','Failure'),(1362,0,0,'GEN005','Mo','2025-10-30 18:12:29','2025-10-30 18:12:29','','N','Failure'),(1363,0,0,'gen005','Mo','2025-10-30 18:16:06','2025-10-30 19:12:22','','N','Success'),(1364,0,0,'gen005','drarchit','2025-10-30 18:17:11','2025-11-11 20:09:37','','N','Success'),(1365,0,0,'GEN005','Manisha','2025-10-30 18:40:40','2025-10-30 18:40:40','','N','Failure'),(1366,0,0,'GEN005','Manisha','2025-10-30 18:40:47','2025-10-30 18:40:47','','N','Failure'),(1367,0,0,'GEN005','Manshi','2025-10-30 18:41:00','2025-11-01 11:46:04','','N','Success'),(1368,0,0,'gen005','Mo','2025-10-30 19:03:11','2025-10-30 19:12:22','','N','Success'),(1369,0,0,'gen005','Vishal','2025-10-30 19:12:35','2025-10-31 13:42:16','','N','Success'),(1370,0,0,'GEN005','Manshi','2025-10-30 19:24:17','2025-11-01 11:46:04','','N','Success'),(1371,0,0,'GEN005','Mo','2025-10-30 20:41:29','2025-10-31 19:45:58','','N','Success'),(1372,0,0,'gen005','shweta','2025-10-30 20:58:51','2025-10-30 20:58:51','','N','Failure'),(1373,0,0,'gen005','shweta','2025-10-30 20:58:52','2025-10-30 20:58:52','','N','Failure'),(1374,0,0,'gen005','shweta','2025-10-30 20:58:53','2025-10-30 20:58:53','','N','Failure'),(1375,0,0,'gen005','shweta','2025-10-30 20:58:54','2025-10-30 20:58:54','','N','Failure'),(1376,0,0,'gen005','shweta','2025-10-30 20:58:55','2025-10-30 20:58:55','','N','Failure'),(1377,0,0,'gen005','shweta','2025-10-30 20:59:05','2025-10-30 20:59:05','','N','Failure'),(1378,0,0,'gen005','shweta','2025-10-30 20:59:06','2025-10-30 20:59:06','','N','Failure'),(1379,0,0,'gen005','shweta','2025-10-30 20:59:07','2025-10-30 20:59:07','','N','Failure'),(1380,0,0,'gen005','shweta','2025-10-30 20:59:12','2025-10-30 20:59:12','','N','Failure'),(1381,0,0,'gen005','shweta','2025-10-30 20:59:32','2025-11-03 12:46:53','','N','Success'),(1382,0,0,'gen005','Vishal','2025-10-30 21:18:59','2025-10-31 13:42:16','','N','Success'),(1383,0,0,'gen005','Mo','2025-10-30 23:02:30','2025-10-31 19:45:58','','N','Success'),(1384,0,0,'gen005','Reception','2025-10-31 08:42:26','2025-10-31 08:42:26','','N','Failure'),(1385,0,0,'gen005','Reception','2025-10-31 08:42:39','2025-11-01 11:59:46','','N','Success'),(1386,0,0,'gen005','Urvashi','2025-10-31 08:54:56','2025-10-31 09:41:23','','N','Success'),(1387,0,0,'gen005','Vishal','2025-10-31 09:38:39','2025-10-31 13:42:16','','N','Success'),(1388,0,0,'gen005','drashti','2025-10-31 09:46:27','2025-11-01 14:45:07','','N','Success'),(1389,0,0,'gen005','janvi','2025-10-31 09:56:10','2025-10-31 13:12:33','','N','Success'),(1390,0,0,'gen005','Manshi','2025-10-31 10:11:24','2025-11-01 11:46:04','','N','Success'),(1391,0,0,'gen005','Drpratapsi','2025-10-31 10:13:58','0000-00-00 00:00:00','','Y','Success'),(1392,0,0,'gen005','Dharmishth','2025-10-31 10:43:51','0000-00-00 00:00:00','','Y','Success'),(1393,0,0,'gen005','Dharmishth','2025-10-31 10:43:56','0000-00-00 00:00:00','','Y','Success'),(1394,0,0,'gen005','Dharmishth','2025-10-31 10:44:03','0000-00-00 00:00:00','','Y','Success'),(1395,0,0,'gen005','darshan','2025-10-31 10:50:31','2025-10-31 13:41:58','','N','Success'),(1396,0,0,'gen005','Vishal','2025-10-31 11:02:01','2025-10-31 13:42:16','','N','Success'),(1397,0,0,'gen005','Drjayant','2025-10-31 11:14:28','2025-10-31 14:02:14','','N','Success'),(1398,0,0,'gen005','drarchit','2025-10-31 11:23:55','2025-11-11 20:09:37','','N','Success'),(1399,0,0,'gen005','Vishal','2025-10-31 11:28:14','2025-10-31 13:42:16','','N','Success'),(1400,0,0,'gen005','Manshi','2025-10-31 11:39:32','2025-11-01 11:46:04','','N','Success'),(1401,0,0,'GEN005','Mo','2025-10-31 12:16:04','2025-10-31 19:45:58','','N','Success'),(1402,0,0,'gen005','janvi','2025-10-31 13:14:46','2025-11-01 16:17:55','','N','Success'),(1403,0,0,'GEN005','drarchit','2025-10-31 13:33:38','2025-11-11 20:09:37','','N','Success'),(1404,0,0,'gen005','thims','2025-10-31 13:40:03','2025-10-31 13:40:25','','N','Success'),(1405,0,0,'gen005','Darshan','2025-10-31 13:40:46','2025-10-31 13:41:58','','N','Success'),(1406,0,0,'gen005','thims','2025-10-31 13:42:07','2025-11-05 12:01:19','','N','Success'),(1407,0,0,'gen005','drjayant','2025-10-31 13:42:47','2025-10-31 14:02:14','','N','Success'),(1408,0,0,'gen005','Dharmishth','2025-10-31 13:56:39','0000-00-00 00:00:00','','Y','Success'),(1409,0,0,'gen005','Dharmishth','2025-10-31 13:57:08','0000-00-00 00:00:00','','Y','Success'),(1410,0,0,'gen005','Vishal','2025-10-31 14:02:59','2025-10-31 19:43:50','','N','Success'),(1411,0,0,'gen005','Vishal','2025-10-31 14:05:16','2025-10-31 19:43:50','','N','Success'),(1412,0,0,'GEN005','Mo','2025-10-31 14:48:16','2025-10-31 19:45:58','','N','Success'),(1413,0,0,'GEN005','Mo','2025-10-31 15:51:33','2025-10-31 19:45:58','','N','Success'),(1414,0,0,'gen005','Reception','2025-10-31 16:10:52','2025-11-01 11:59:46','','N','Success'),(1415,0,0,'gen005','janvi','2025-10-31 16:52:22','2025-11-01 16:17:55','','N','Success'),(1416,0,0,'gen005','darshan','2025-10-31 17:04:39','2025-11-03 12:23:43','','N','Success'),(1417,0,0,'gen005','Manshi','2025-10-31 17:08:09','2025-11-01 11:46:04','','N','Success'),(1418,0,0,'GEN005','Mo','2025-10-31 17:27:04','2025-10-31 19:45:58','','N','Success'),(1419,0,0,'gen005','Vishal','2025-10-31 17:31:12','2025-10-31 19:43:50','','N','Success'),(1420,0,0,'gen005','Drjayant','2025-10-31 17:32:23','2025-10-31 19:41:45','','N','Success'),(1421,0,0,'GEN005','Drsagar','2025-10-31 18:06:48','0000-00-00 00:00:00','','Y','Success'),(1422,0,0,'GEN005','drarchit','2025-10-31 18:16:43','2025-11-11 20:09:37','','N','Success'),(1423,0,0,'GEN005','Drridham','2025-10-31 18:17:19','2025-12-02 13:37:44','','N','Success'),(1424,0,0,'gen005','mo','2025-10-31 18:44:43','2025-10-31 18:44:43','','N','Failure'),(1425,0,0,'gen005','mo','2025-10-31 18:44:52','2025-10-31 18:44:52','','N','Failure'),(1426,0,0,'gen005','mo','2025-10-31 18:45:05','2025-10-31 18:45:05','','N','Failure'),(1427,0,0,'gen005','Mo','2025-10-31 18:47:43','2025-10-31 19:45:58','','N','Success'),(1428,0,0,'gen005','Mo','2025-10-31 18:48:17','2025-10-31 19:45:58','','N','Success'),(1429,0,0,'GEN005','Mo','2025-10-31 19:02:49','2025-10-31 19:45:58','','N','Success'),(1430,0,0,'gen005','Dharmishth','2025-10-31 19:16:35','0000-00-00 00:00:00','','Y','Success'),(1431,0,0,'gen005','Drpratapsi','2025-10-31 19:18:07','0000-00-00 00:00:00','','Y','Success'),(1432,0,0,'GEN005','drarchit','2025-10-31 19:19:36','2025-11-11 20:09:37','','N','Success'),(1433,0,0,'gen005','Mo','2025-10-31 19:44:13','2025-10-31 19:45:58','','N','Success'),(1434,0,0,'gen005','Vishal','2025-10-31 19:46:09','2025-11-01 14:48:00','','N','Success'),(1435,0,0,'gen005','Riya','2025-10-31 20:07:55','2025-10-31 21:38:27','','N','Success'),(1436,0,0,'GEN005','Mo','2025-10-31 21:04:28','2025-11-01 16:06:47','','N','Success'),(1437,0,0,'gen005','Vishal','2025-10-31 21:43:15','2025-11-01 14:48:00','','N','Success'),(1438,0,0,'GEN005','Mo','2025-10-31 22:44:10','2025-11-01 16:06:47','','N','Success'),(1439,0,0,'gen005','Mo','2025-10-31 22:58:34','2025-11-01 16:06:47','','N','Success'),(1440,0,0,'gen005','Reception','2025-11-01 09:00:49','2025-11-01 11:59:46','','N','Success'),(1441,0,0,'gen005','Urvashi','2025-11-01 09:06:51','2025-11-01 10:11:57','','N','Success'),(1442,0,0,'gen005','janvi','2025-11-01 09:18:13','2025-11-01 16:17:55','','N','Success'),(1443,0,0,'gen005','drashti','2025-11-01 10:12:14','2025-11-01 14:45:07','','N','Success'),(1444,0,0,'gen005','drashti','2025-11-01 10:13:31','2025-11-01 14:45:07','','N','Success'),(1445,0,0,'gen005','Manshi','2025-11-01 10:15:47','2025-11-01 11:46:04','','N','Success'),(1446,0,0,'gen005','Drpratapsi','2025-11-01 10:19:09','0000-00-00 00:00:00','','Y','Success'),(1447,0,0,'gen005','darshan','2025-11-01 10:31:48','2025-11-03 12:23:43','','N','Success'),(1448,0,0,'gen005','Drjayant','2025-11-01 10:52:34','2025-11-04 13:32:17','','N','Success'),(1449,0,0,'gen005','Vishal','2025-11-01 10:57:17','2025-11-01 14:48:00','','N','Success'),(1450,0,0,'GEN005','Drridham','2025-11-01 11:01:43','2025-12-02 13:37:44','','N','Success'),(1451,0,0,'GEN005','Mo','2025-11-01 11:04:35','2025-11-01 16:06:47','','N','Success'),(1452,0,0,'GEN005','drarchit','2025-11-01 11:22:39','2025-11-11 20:09:37','','N','Success'),(1453,0,0,'GEN005','Drsagar','2025-11-01 11:32:30','0000-00-00 00:00:00','','Y','Success'),(1454,0,0,'GEN005','Mo','2025-11-01 11:39:15','2025-11-01 16:06:47','','N','Success'),(1455,0,0,'gen005','janvi','2025-11-01 11:53:09','2025-11-01 16:17:55','','N','Success'),(1456,0,0,'gen005','Manshi','2025-11-01 11:53:43','2025-11-01 18:31:06','','N','Success'),(1457,0,0,'GEN005','drashti','2025-11-01 11:55:45','2025-11-01 14:45:07','','N','Success'),(1458,0,0,'gen005','Vishal','2025-11-01 11:57:12','2025-11-01 14:48:00','','N','Success'),(1459,0,0,'gen005','Reception','2025-11-01 11:59:55','2025-11-03 14:28:53','','N','Success'),(1460,0,0,'GEN005','Mo','2025-11-01 12:09:34','2025-11-01 16:06:47','','N','Success'),(1461,0,0,'GEN005','Drsagar','2025-11-01 12:19:05','0000-00-00 00:00:00','','Y','Success'),(1462,0,0,'gen005','Vishal','2025-11-01 12:31:40','2025-11-01 14:48:00','','N','Success'),(1463,0,0,'gen005','darshan','2025-11-01 13:27:52','2025-11-03 12:23:43','','N','Success'),(1464,0,0,'gen005','Mo','2025-11-01 13:50:31','2025-11-01 16:06:47','','N','Success'),(1465,0,0,'gen005','Vishal','2025-11-01 14:39:58','2025-11-01 14:48:00','','N','Success'),(1466,0,0,'GEN005','Urvashi','2025-11-01 14:46:40','2025-11-08 19:01:08','','N','Success'),(1467,0,0,'gen005','janvi','2025-11-01 14:47:49','2025-11-01 16:17:55','','N','Success'),(1468,0,0,'gen005','Vishal','2025-11-01 14:54:12','2025-11-01 15:41:39','','N','Success'),(1469,0,0,'gen005','mo','2025-11-01 15:10:34','2025-11-01 15:10:34','','N','Failure'),(1470,0,0,'gen005','Urvashi','2025-11-01 15:11:04','2025-11-08 19:01:08','','N','Success'),(1471,0,0,'gen005','Mo','2025-11-01 15:11:14','2025-11-01 16:06:47','','N','Success'),(1472,0,0,'gen005','Vishal','2025-11-01 15:41:44','2025-11-01 15:54:47','','N','Success'),(1473,0,0,'gen005','Mo','2025-11-01 15:55:00','2025-11-01 16:06:47','','N','Success'),(1474,0,0,'gen005','Vishal','2025-11-01 16:06:52','2025-11-01 18:01:46','','N','Success'),(1475,0,0,'gen005','Reception','2025-11-01 16:17:57','2025-11-03 14:28:53','','N','Success'),(1476,0,0,'gen005','Manshi','2025-11-01 17:00:45','2025-11-01 18:31:06','','N','Success'),(1477,0,0,'gen005','janvi','2025-11-01 17:10:50','2025-11-01 20:33:23','','N','Success'),(1478,0,0,'gen005','riya','2025-11-01 17:11:01','2025-11-01 17:16:29','','N','Success'),(1479,0,0,'gen005','riya','2025-11-01 17:23:46','2025-11-01 17:34:18','','N','Success'),(1480,0,0,'GEN005','Manshi','2025-11-01 17:24:14','2025-11-01 18:31:06','','N','Success'),(1481,0,0,'gen005','Reception','2025-11-01 17:25:02','2025-11-03 14:28:53','','N','Success'),(1482,0,0,'GEN005','drashti','2025-11-01 17:26:06','2025-11-01 19:00:37','','N','Success'),(1483,0,0,'GEN005','drashti','2025-11-01 17:26:08','2025-11-01 19:00:37','','N','Success'),(1484,0,0,'gen005','riya','2025-11-01 17:34:21','2025-11-01 17:37:39','','N','Success'),(1485,0,0,'gen005','Reception ','2025-11-01 17:37:55','2025-11-01 17:37:55','','N','Failure'),(1486,0,0,'gen005','Reception ','2025-11-01 17:38:04','2025-11-01 17:38:04','','N','Failure'),(1487,0,0,'gen005','Reception ','2025-11-01 17:38:22','2025-11-01 17:38:22','','N','Failure'),(1488,0,0,'gen005','riya','2025-11-01 17:38:28','2025-11-01 17:43:22','','N','Success'),(1489,0,0,'gen005','thims','2025-11-01 17:42:53','2025-11-05 12:01:19','','N','Success'),(1490,0,0,'gen005','riya','2025-11-01 17:43:25','2025-11-01 17:59:02','','N','Success'),(1491,0,0,'gen005','thims','2025-11-01 17:50:45','2025-11-05 12:01:19','','N','Success'),(1492,0,0,'gen005','Drpratapsi','2025-11-01 17:54:48','0000-00-00 00:00:00','','Y','Success'),(1493,0,0,'gen005','Vishal','2025-11-01 17:59:09','2025-11-01 18:01:46','','N','Success'),(1494,0,0,'gen005','Vishal','2025-11-01 18:05:15','2025-11-03 18:22:03','','N','Success'),(1495,0,0,'GEN005','Drsagar','2025-11-01 18:20:00','0000-00-00 00:00:00','','Y','Success'),(1496,0,0,'gen005','Manshi','2025-11-01 18:39:46','2025-11-01 19:39:50','','N','Success'),(1497,0,0,'GEN005','Manshi','2025-11-01 19:03:30','2025-11-01 19:39:50','','N','Success'),(1498,0,0,'gen005','Manshi','2025-11-01 19:17:17','2025-11-01 19:39:50','','N','Success'),(1499,0,0,'GEN005','Drsagar','2025-11-01 19:25:58','0000-00-00 00:00:00','','Y','Success'),(1500,0,0,'gen005','VISHAL','2025-11-01 19:33:11','2025-11-03 18:22:03','','N','Success'),(1501,0,0,'gen005','janvi','2025-11-01 19:39:23','2025-11-01 20:33:23','','N','Success'),(1502,0,0,'GEN005','Riya','2025-11-01 19:40:01','2025-11-01 20:23:28','','N','Success'),(1503,0,0,'gen005','janvi','2025-11-01 20:14:16','2025-11-01 20:33:23','','N','Success'),(1504,0,0,'gen005','Drpratapsi','2025-11-01 20:15:05','0000-00-00 00:00:00','','Y','Success'),(1505,0,0,'GEN005','Janvi','2025-11-01 20:33:10','2025-11-01 20:33:23','','N','Success'),(1506,0,0,'GEN005','Janvi','2025-11-01 20:34:28','2025-11-01 20:55:39','','N','Success'),(1507,0,0,'gen005','Vishal','2025-11-01 21:44:19','2025-11-03 18:22:03','','N','Success'),(1508,0,0,'gen005','Mo','2025-11-01 21:58:39','2025-11-08 13:58:55','','N','Success'),(1509,0,0,'gen005','Mo','2025-11-01 21:59:35','2025-11-08 13:58:55','','N','Success'),(1510,0,0,'gen005','Mo','2025-11-01 23:02:23','2025-11-08 13:58:55','','N','Success'),(1511,0,0,'gen005','Mo','2025-11-02 09:28:34','2025-11-08 13:58:55','','N','Success'),(1512,0,0,'gen005','riya','2025-11-02 09:37:47','2025-11-02 12:47:23','','N','Success'),(1513,0,0,'gen005','shweta','2025-11-02 09:39:21','2025-11-03 12:46:53','','N','Success'),(1514,0,0,'GEN005','Mo','2025-11-02 10:04:37','2025-11-08 13:58:55','','N','Success'),(1515,0,0,'gen005','Mo','2025-11-02 10:16:04','2025-11-08 13:58:55','','N','Success'),(1516,0,0,'gen005','shweta','2025-11-02 11:31:44','2025-11-03 12:46:53','','N','Success'),(1517,0,0,'gen005','Mo','2025-11-02 11:56:18','2025-11-08 13:58:55','','N','Success'),(1518,0,0,'gen005','shweta','2025-11-02 12:45:21','2025-11-03 12:46:53','','N','Success'),(1519,0,0,'gen005','riya','2025-11-02 12:59:43','2025-11-05 11:18:14','','N','Success'),(1520,0,0,'gen005','Mo','2025-11-02 13:04:27','2025-11-08 13:58:55','','N','Success'),(1521,0,0,'gen005','riya','2025-11-02 13:09:31','2025-11-05 11:18:14','','N','Success'),(1522,0,0,'gen005','Mo','2025-11-02 14:28:49','2025-11-08 13:58:55','','N','Success'),(1523,0,0,'gen005','Janvi','2025-11-02 16:06:06','2025-11-03 11:02:12','','N','Success'),(1524,0,0,'gen005','Mo','2025-11-02 16:07:21','2025-11-08 13:58:55','','N','Success'),(1525,0,0,'gen005','riya','2025-11-02 16:08:05','2025-11-05 11:18:14','','N','Success'),(1526,0,0,'GEN005','Mo','2025-11-02 17:00:37','2025-11-08 13:58:55','','N','Success'),(1527,0,0,'gen005','riya','2025-11-02 17:27:01','2025-11-05 11:18:14','','N','Success'),(1528,0,0,'GEN005','Mo','2025-11-02 18:15:11','2025-11-08 13:58:55','','N','Success'),(1529,0,0,'GEN005','Mo','2025-11-02 20:13:17','2025-11-08 13:58:55','','N','Success'),(1530,0,0,'gen005','riya','2025-11-02 20:14:07','2025-11-05 11:18:14','','N','Success'),(1531,0,0,'GEN005','Mo','2025-11-02 21:13:41','2025-11-08 13:58:55','','N','Success'),(1532,0,0,'gen005','Reception','2025-11-03 08:43:49','2025-11-03 14:28:53','','N','Success'),(1533,0,0,'gen005','priyanshi','2025-11-03 09:03:36','2025-11-03 09:36:32','','N','Success'),(1534,0,0,'gen005','janvi','2025-11-03 09:17:27','2025-11-03 11:02:12','','N','Success'),(1535,0,0,'gen005','drashti','2025-11-03 09:36:41','2025-11-03 11:31:32','','N','Success'),(1536,0,0,'gen005','Vishal','2025-11-03 09:54:37','2025-11-03 18:22:03','','N','Success'),(1537,0,0,'gen005','Drpratapsi','2025-11-03 10:02:37','0000-00-00 00:00:00','','Y','Success'),(1538,0,0,'gen005','Manshi','2025-11-03 10:06:31','2025-11-03 11:04:13','','N','Success'),(1539,0,0,'GEN005','Manshi','2025-11-03 10:39:43','2025-11-03 11:04:13','','N','Success'),(1540,0,0,'gen005','darshan','2025-11-03 10:43:01','2025-11-03 12:23:43','','N','Success'),(1541,0,0,'GEN005','Drsagar','2025-11-03 11:00:45','0000-00-00 00:00:00','','Y','Success'),(1542,0,0,'gen005','Drjayant','2025-11-03 11:02:13','2025-11-04 13:32:17','','N','Success'),(1543,0,0,'gen005','Shweta','2025-11-03 11:02:17','2025-11-03 12:46:53','','N','Success'),(1544,0,0,'gen005','Vishal','2025-11-03 11:04:21','2025-11-03 18:22:03','','N','Success'),(1545,0,0,'gen005','thims','2025-11-03 11:08:47','2025-11-05 12:01:19','','N','Success'),(1546,0,0,'GEN005','drashti','2025-11-03 11:33:05','2025-11-03 14:04:40','','N','Success'),(1547,0,0,'GEN005','Mo','2025-11-03 11:57:06','2025-11-08 13:58:55','','N','Success'),(1548,0,0,'GEN005','Drridham','2025-11-03 12:20:21','2025-12-02 13:37:44','','N','Success'),(1549,0,0,'gen005','darshan','2025-11-03 12:24:41','2025-12-17 19:03:58','','N','Success'),(1550,0,0,'gen005','Vishal','2025-11-03 12:34:43','2025-11-03 18:22:03','','N','Success'),(1551,0,0,'gen005','Shweta','2025-11-03 12:48:29','2025-11-03 18:21:19','','N','Success'),(1552,0,0,'gen005','Vishal','2025-11-03 13:01:26','2025-11-03 18:22:03','','N','Success'),(1553,0,0,'GEN005','priyanshi','2025-11-03 14:04:59','2025-11-03 16:25:05','','N','Success'),(1554,0,0,'gen005','Reception','2025-11-03 14:33:43','2025-11-03 17:13:25','','N','Success'),(1555,0,0,'gen005','Reception','2025-11-03 15:42:40','2025-11-03 17:13:25','','N','Success'),(1556,0,0,'GEN005','priyanshi','2025-11-03 15:53:36','2025-11-03 16:25:05','','N','Success'),(1557,0,0,'GEN005','drashti','2025-11-03 16:25:26','2025-11-03 19:42:46','','N','Success'),(1558,0,0,'gen005','darshan','2025-11-03 17:04:17','2025-12-17 19:03:58','','N','Success'),(1559,0,0,'gen005','janvi','2025-11-03 17:08:33','2025-11-03 18:21:41','','N','Success'),(1560,0,0,'gen005','Reception','2025-11-03 17:14:23','2025-11-04 20:35:25','','N','Success'),(1561,0,0,'GEN005','Manshi','2025-11-03 17:21:37','2025-11-04 13:09:40','','N','Success'),(1562,0,0,'gen005','Drpratapsi','2025-11-03 17:26:16','0000-00-00 00:00:00','','Y','Success'),(1563,0,0,'GEN005','Vishal','2025-11-03 17:39:37','2025-11-03 18:22:03','','N','Success'),(1564,0,0,'GEN005','Mo','2025-11-03 17:53:15','2025-11-08 13:58:55','','N','Success'),(1565,0,0,'gen005','Drjayant','2025-11-03 18:06:12','2025-11-04 13:32:17','','N','Success'),(1566,0,0,'gen005','Shweta','2025-11-03 18:14:17','2025-11-03 18:21:19','','N','Success'),(1567,0,0,'gen005','janvi','2025-11-03 18:21:25','2025-11-03 18:21:41','','N','Success'),(1568,0,0,'gen005','Shweta','2025-11-03 18:21:47','2025-11-03 18:24:14','','N','Success'),(1569,0,0,'gen005','Vishal','2025-11-03 18:22:36','2025-11-03 18:49:48','','N','Success'),(1570,0,0,'gen005','janvi','2025-11-03 18:24:19','2025-11-03 19:28:30','','N','Success'),(1571,0,0,'gen005','Vishal','2025-11-03 18:49:52','2025-11-04 11:56:43','','N','Success'),(1572,0,0,'GEN005','Drridham','2025-11-03 18:50:23','2025-12-02 13:37:44','','N','Success'),(1573,0,0,'gen005','Mo','2025-11-03 19:20:24','2025-11-08 13:58:55','','N','Success'),(1574,0,0,'gen005','Mo','2025-11-03 19:20:26','2025-11-08 13:58:55','','N','Success'),(1575,0,0,'gen005','Shweta','2025-11-03 19:28:35','2025-11-03 19:29:15','','N','Success'),(1576,0,0,'gen005','janvi','2025-11-03 19:29:19','2025-11-05 19:28:00','','N','Success'),(1577,0,0,'gen005','Dharmishth','2025-11-03 19:37:41','0000-00-00 00:00:00','','Y','Success'),(1578,0,0,'gen005','Drpratapsi','2025-11-03 19:46:20','0000-00-00 00:00:00','','Y','Success'),(1579,0,0,'GEN005','Urvashi','2025-11-03 19:46:55','2025-11-08 19:01:08','','N','Success'),(1580,0,0,'gen005','janvi','2025-11-03 19:56:54','2025-11-05 19:28:00','','N','Success'),(1581,0,0,'gen005','Mo','2025-11-03 20:25:58','2025-11-08 13:58:55','','N','Success'),(1582,0,0,'gen005','Mo','2025-11-03 22:31:52','2025-11-08 13:58:55','','N','Success'),(1583,0,0,'gen005','Reception','2025-11-04 08:43:58','2025-11-04 20:35:25','','N','Success'),(1584,0,0,'gen005','janvi','2025-11-04 09:12:26','2025-11-05 19:28:00','','N','Success'),(1585,0,0,'GEN005','priyanshi','2025-11-04 09:16:09','2025-11-05 09:29:02','','N','Success'),(1586,0,0,'gen005','thims','2025-11-04 09:32:26','2025-11-05 12:01:19','','N','Success'),(1587,0,0,'gen005','thims','2025-11-04 09:38:33','2025-11-05 12:01:19','','N','Success'),(1588,0,0,'gen005','thims','2025-11-04 10:03:26','2025-11-05 12:01:19','','N','Success'),(1589,0,0,'gen005','Drpratapsi','2025-11-04 10:08:45','0000-00-00 00:00:00','','Y','Success'),(1590,0,0,'gen005','Manshi','2025-11-04 10:12:05','2025-11-04 13:09:40','','N','Success'),(1591,0,0,'gen005','Vishal','2025-11-04 10:18:32','2025-11-04 11:56:43','','N','Success'),(1592,0,0,'gen005','vishal','2025-11-04 10:19:34','2025-11-04 11:56:43','','N','Success'),(1593,0,0,'GEN005','drashti','2025-11-04 10:22:26','2025-11-04 11:52:39','','N','Success'),(1594,0,0,'gen005','darshan','2025-11-04 10:33:19','2025-12-17 19:03:58','','N','Success'),(1595,0,0,'gen005','Drjayant','2025-11-04 10:56:20','2025-11-04 13:32:17','','N','Success'),(1596,0,0,'GEN005','Mo','2025-11-04 11:23:25','2025-11-08 13:58:55','','N','Success'),(1597,0,0,'GEN005','Mo','2025-11-04 11:28:12','2025-11-08 13:58:55','','N','Success'),(1598,0,0,'GEN005','Drsagar','2025-11-04 11:33:31','0000-00-00 00:00:00','','Y','Success'),(1599,0,0,'GEN005','Drridham','2025-11-04 11:42:10','2025-12-02 13:37:44','','N','Success'),(1600,0,0,'gen005','drashti','2025-11-04 11:55:39','2025-11-04 21:00:00','','N','Success'),(1601,0,0,'gen005','vishal','2025-11-04 11:56:47','2025-11-04 18:02:34','','N','Success'),(1602,0,0,'gen005','drashti','2025-11-04 12:05:51','2025-11-04 21:00:00','','N','Success'),(1603,0,0,'gen005','janvi','2025-11-04 12:20:44','2025-11-05 19:28:00','','N','Success'),(1604,0,0,'gen005','drashti','2025-11-04 12:21:11','2025-11-04 21:00:00','','N','Success'),(1605,0,0,'GEN005','Drsagar','2025-11-04 12:31:27','0000-00-00 00:00:00','','Y','Success'),(1606,0,0,'gen005','Drpratapsi','2025-11-04 12:46:54','0000-00-00 00:00:00','','Y','Success'),(1607,0,0,'GEN005','Mo','2025-11-04 13:08:40','2025-11-08 13:58:55','','N','Success'),(1608,0,0,'gen005','Manshi','2025-11-04 13:11:43','2025-11-06 18:41:06','','N','Success'),(1609,0,0,'gen005','Manshi','2025-11-04 13:14:08','2025-11-06 18:41:06','','N','Success'),(1610,0,0,'GEN005','priyanshi','2025-11-04 13:51:37','2025-11-05 09:29:02','','N','Success'),(1611,0,0,'GEN005','priyanshi','2025-11-04 14:08:54','2025-11-05 09:29:02','','N','Success'),(1612,0,0,'GEN005','priyanshi','2025-11-04 15:11:45','2025-11-05 09:29:02','','N','Success'),(1613,0,0,'GEN005','Mo','2025-11-04 15:51:09','2025-11-08 13:58:55','','N','Success'),(1614,0,0,'gen005','Reception','2025-11-04 15:54:43','2025-11-04 20:35:25','','N','Success'),(1615,0,0,'gen005','Vishal','2025-11-04 16:33:31','2025-11-04 18:02:34','','N','Success'),(1616,0,0,'gen005','janvi','2025-11-04 16:41:29','2025-11-05 19:28:00','','N','Success'),(1617,0,0,'gen005','Drpratapsi','2025-11-04 16:46:17','0000-00-00 00:00:00','','Y','Success'),(1618,0,0,'gen005','drashti','2025-11-04 16:49:07','2025-11-04 21:00:00','','N','Success'),(1619,0,0,'gen005','Manshi','2025-11-04 17:05:48','2025-11-06 18:41:06','','N','Success'),(1620,0,0,'gen005','Vishal','2025-11-04 17:08:25','2025-11-04 17:08:25','','N','Failure'),(1621,0,0,'gen005','Vishal','2025-11-04 17:08:27','2025-11-04 18:02:34','','N','Success'),(1622,0,0,'gen005','darshan','2025-11-04 17:19:05','2025-12-17 19:03:58','','N','Success'),(1623,0,0,'GEN005','Mo','2025-11-04 17:53:42','2025-11-08 13:58:55','','N','Success'),(1624,0,0,'gen005','Drjayant','2025-11-04 17:53:52','2025-11-04 19:50:19','','N','Success'),(1625,0,0,'gen005','darshan','2025-11-04 18:03:01','2025-12-17 19:03:58','','N','Success'),(1626,0,0,'gen005','drashti','2025-11-04 18:03:16','2025-11-04 21:00:00','','N','Success'),(1627,0,0,'gen005','Vishal','2025-11-04 18:03:56','2025-11-05 20:23:58','','N','Success'),(1628,0,0,'GEN005','Manshi','2025-11-04 18:08:39','2025-11-06 18:41:06','','N','Success'),(1629,0,0,'GEN005','Drsagar','2025-11-04 18:23:12','0000-00-00 00:00:00','','Y','Success'),(1630,0,0,'gen005','Mo','2025-11-04 18:39:56','2025-11-08 13:58:55','','N','Success'),(1631,0,0,'gen005','Vishal','2025-11-04 19:00:33','2025-11-05 20:23:58','','N','Success'),(1632,0,0,'gen005','Vishal','2025-11-04 19:15:41','2025-11-05 20:23:58','','N','Success'),(1633,0,0,'gen005','Mo','2025-11-04 20:02:45','2025-11-08 13:58:55','','N','Success'),(1634,0,0,'gen005','shweta','2025-11-04 20:53:36','2025-11-10 09:34:56','','N','Success'),(1635,0,0,'gen005','Mo','2025-11-04 21:36:39','2025-11-08 13:58:55','','N','Success'),(1636,0,0,'gen005','Mo','2025-11-05 08:43:04','2025-11-08 13:58:55','','N','Success'),(1637,0,0,'gen005','Reception','2025-11-05 08:49:10','2025-11-05 20:38:57','','N','Success'),(1638,0,0,'GEN005','priyanshi','2025-11-05 09:04:41','2025-11-05 09:29:02','','N','Success'),(1639,0,0,'gen005','janvi','2025-11-05 09:20:55','2025-11-05 19:28:00','','N','Success'),(1640,0,0,'gen005','riya','2025-11-05 09:24:55','2025-11-05 09:24:55','','N','Failure'),(1641,0,0,'gen005','riya','2025-11-05 09:25:01','2025-11-05 09:25:01','','N','Failure'),(1642,0,0,'Gen005','riya','2025-11-05 09:25:07','2025-11-05 09:25:07','','N','Failure'),(1643,0,0,'Gen005','riya','2025-11-05 09:25:17','2025-11-05 09:25:17','','N','Failure'),(1644,0,0,'Gen005','riya','2025-11-05 09:25:41','2025-11-05 11:18:14','','N','Success'),(1645,0,0,'GEN005','drashti','2025-11-05 09:29:14','2025-11-05 09:32:01','','N','Success'),(1646,0,0,'GEN005','drashti','2025-11-05 09:32:07','2025-11-05 11:02:16','','N','Success'),(1647,0,0,'gen005','Drpratapsi','2025-11-05 09:48:13','0000-00-00 00:00:00','','Y','Success'),(1648,0,0,'gen005','Manshi','2025-11-05 10:11:43','2025-11-06 18:41:06','','N','Success'),(1649,0,0,'gen005','Dharmishth','2025-11-05 10:21:09','0000-00-00 00:00:00','','Y','Success'),(1650,0,0,'gen005','Mo','2025-11-05 10:27:30','2025-11-08 13:58:55','','N','Success'),(1651,0,0,'gen005','darshan','2025-11-05 10:37:46','2025-12-17 19:03:58','','N','Success'),(1652,0,0,'Gen005','riya','2025-11-05 10:46:32','2025-11-05 11:18:14','','N','Success'),(1653,0,0,'gen005','Drjayant','2025-11-05 10:51:19','2025-11-05 19:53:26','','N','Success'),(1654,0,0,'GEN005','drashti','2025-11-05 11:03:00','2025-11-05 13:27:35','','N','Success'),(1655,0,0,'GEN005','Drsagar','2025-11-05 11:07:46','0000-00-00 00:00:00','','Y','Success'),(1656,0,0,'gen005','Mo','2025-11-05 11:13:10','2025-11-08 13:58:55','','N','Success'),(1657,0,0,'Gen005','riya','2025-11-05 11:22:59','2025-11-05 16:45:33','','N','Success'),(1658,0,0,'GEN005','drashti','2025-11-05 11:57:24','2025-11-05 13:27:35','','N','Success'),(1659,0,0,'gen005','darshan','2025-11-05 11:57:26','2025-12-17 19:03:58','','N','Success'),(1660,0,0,'GEN005','Manshi','2025-11-05 11:57:26','2025-11-06 18:41:06','','N','Success'),(1661,0,0,'gen005','Dharmishth','2025-11-05 11:57:33','0000-00-00 00:00:00','','Y','Success'),(1662,0,0,'gen005','janvi','2025-11-05 11:57:59','2025-11-05 19:28:00','','N','Success'),(1663,0,0,'gen005','Drjayant','2025-11-05 11:58:48','2025-11-05 19:53:26','','N','Success'),(1664,0,0,'gen005','thims','2025-11-05 12:01:03','2025-11-05 12:01:19','','N','Success'),(1665,0,0,'Gen005','riya','2025-11-05 12:02:37','2025-11-05 16:45:33','','N','Success'),(1666,0,0,'gen005','janvi','2025-11-05 12:03:56','2025-11-05 19:28:00','','N','Success'),(1667,0,0,'GEN005','Drsagar','2025-11-05 12:05:53','0000-00-00 00:00:00','','Y','Success'),(1668,0,0,'Gen005','riya','2025-11-05 12:07:30','2025-11-05 16:45:33','','N','Success'),(1669,0,0,'gen005','Drpratapsi','2025-11-05 12:28:09','0000-00-00 00:00:00','','Y','Success'),(1670,0,0,'gen005','Manshi','2025-11-05 12:39:21','2025-11-06 18:41:06','','N','Success'),(1671,0,0,'Gen005','riya','2025-11-05 12:53:33','2025-11-05 16:45:33','','N','Success'),(1672,0,0,'gen005','Drjayant','2025-11-05 13:14:36','2025-11-05 19:53:26','','N','Success'),(1673,0,0,'GEN005','drashti','2025-11-05 13:29:59','2025-11-05 14:31:37','','N','Success'),(1674,0,0,'GEN005','drashti','2025-11-05 13:36:02','2025-11-05 14:31:37','','N','Success'),(1675,0,0,'gen005','Mo','2025-11-05 14:20:05','2025-11-08 13:58:55','','N','Success'),(1676,0,0,'GEN005','priyanshi','2025-11-05 14:31:45','2025-11-05 16:54:30','','N','Success'),(1677,0,0,'gen005','Reception','2025-11-05 15:59:28','2025-11-05 20:38:57','','N','Success'),(1678,0,0,'Gen005','riya','2025-11-05 16:39:14','2025-11-05 16:45:33','','N','Success'),(1679,0,0,'gen005','janvi','2025-11-05 16:50:47','2025-11-05 19:28:00','','N','Success'),(1680,0,0,'GEN005','priyanshi','2025-11-05 16:52:17','2025-11-05 16:54:30','','N','Success'),(1681,0,0,'GEN005','drashti','2025-11-05 16:54:38','2025-11-05 19:19:26','','N','Success'),(1682,0,0,'Gen005','Vishal','2025-11-05 16:56:05','2025-11-05 16:56:05','','N','Failure'),(1683,0,0,'Gen005','Vishal','2025-11-05 16:56:06','2025-11-05 20:23:58','','N','Success'),(1684,0,0,'gen005','darshan','2025-11-05 17:20:01','2025-12-17 19:03:58','','N','Success'),(1685,0,0,'gen005','Manshi','2025-11-05 17:28:46','2025-11-06 18:41:06','','N','Success'),(1686,0,0,'gen005','Drjayant','2025-11-05 17:53:21','2025-11-05 19:53:26','','N','Success'),(1687,0,0,'gen005','darshan','2025-11-05 18:09:53','2025-12-17 19:03:58','','N','Success'),(1688,0,0,'gen005','darshan','2025-11-05 18:18:06','2025-12-17 19:03:58','','N','Success'),(1689,0,0,'Gen005','Vishal','2025-11-05 18:25:23','2025-11-05 20:23:58','','N','Success'),(1690,0,0,'gen005','Mo','2025-11-05 18:32:39','2025-11-08 13:58:55','','N','Success'),(1691,0,0,'gen005','darshan','2025-11-05 18:33:51','2025-12-17 19:03:58','','N','Success'),(1692,0,0,'gen005','Mo','2025-11-05 19:27:45','2025-11-08 13:58:55','','N','Success'),(1693,0,0,'GEN005','drashti','2025-11-05 19:35:25','2025-11-05 21:05:42','','N','Success'),(1694,0,0,'gen005','janvi','2025-11-05 19:37:30','2025-11-06 09:30:50','','N','Success'),(1695,0,0,'gen005','janvi','2025-11-05 19:37:43','2025-11-06 09:30:50','','N','Success'),(1696,0,0,'Gen005','Vishal','2025-11-05 19:55:55','2025-11-05 20:23:58','','N','Success'),(1697,0,0,'gen005','Drpratapsi','2025-11-05 20:00:24','0000-00-00 00:00:00','','Y','Success'),(1698,0,0,'gen005','Mo','2025-11-05 20:18:33','2025-11-08 13:58:55','','N','Success'),(1699,0,0,'gen005','Mo','2025-11-05 20:23:51','2025-11-08 13:58:55','','N','Success'),(1700,0,0,'Gen005','Vishal','2025-11-05 20:25:35','2025-11-06 10:53:58','','N','Success'),(1701,0,0,'gen005','Mo','2025-11-06 08:05:08','2025-11-08 13:58:55','','N','Success'),(1702,0,0,'gen005','RECEPTION','2025-11-06 08:31:58','2025-11-06 08:31:58','','N','Failure'),(1703,0,0,'gen005','RECEPTION','2025-11-06 08:32:04','2025-11-06 08:32:04','','N','Failure'),(1704,0,0,'gen005','RECEPTION','2025-11-06 08:32:12','2025-11-06 08:32:12','','N','Failure'),(1705,0,0,'GEN005','RECEPTION','2025-11-06 08:32:25','2025-11-06 08:32:25','','N','Failure'),(1706,0,0,'GEN005','Reception','2025-11-06 08:32:45','2025-11-06 14:44:57','','N','Success'),(1707,0,0,'GEN005','priyanshi','2025-11-06 09:08:37','2025-11-06 11:16:52','','N','Success'),(1708,0,0,'GEN005','Mo','2025-11-06 09:19:03','2025-11-08 13:58:55','','N','Success'),(1709,0,0,'Gen005','riya','2025-11-06 09:20:46','2025-11-07 11:54:30','','N','Success'),(1710,0,0,'Gen005','Vishal','2025-11-06 09:23:45','2025-11-06 10:53:58','','N','Success'),(1711,0,0,'gen005','janvi','2025-11-06 09:30:46','2025-11-06 09:30:50','','N','Success'),(1712,0,0,'gen005','priyanshi','2025-11-06 09:30:56','2025-11-06 11:16:52','','N','Success'),(1713,0,0,'gen005','drashti','2025-11-06 09:32:07','2025-11-06 14:04:39','','N','Success'),(1714,0,0,'gen005','Manshi','2025-11-06 10:14:02','2025-11-06 18:41:06','','N','Success'),(1715,0,0,'gen005','Dharmishth','2025-11-06 10:19:58','0000-00-00 00:00:00','','Y','Success'),(1716,0,0,'GEN005','Mo','2025-11-06 10:28:43','2025-11-08 13:58:55','','N','Success'),(1717,0,0,'gen005','darshan','2025-11-06 10:45:53','2025-12-17 19:03:58','','N','Success'),(1718,0,0,'gen005','Drjayant','2025-11-06 10:53:33','2025-11-07 13:38:51','','N','Success'),(1719,0,0,'Gen005','Vishal','2025-11-06 11:01:05','2025-11-08 09:51:42','','N','Success'),(1720,0,0,'gen005','janvi','2025-11-06 11:16:57','2025-11-07 13:43:40','','N','Success'),(1721,0,0,'gen005','Manshi','2025-11-06 11:23:45','2025-11-06 18:41:06','','N','Success'),(1722,0,0,'GEN005','Mo','2025-11-06 11:25:52','2025-11-08 13:58:55','','N','Success'),(1723,0,0,'gen005','Dharmishth','2025-11-06 11:27:47','0000-00-00 00:00:00','','Y','Success'),(1724,0,0,'GEN005','Drsagar','2025-11-06 11:43:01','0000-00-00 00:00:00','','Y','Success'),(1725,0,0,'Gen005','Vishal','2025-11-06 12:33:24','2025-11-08 09:51:42','','N','Success'),(1726,0,0,'gen005','Dharmishth','2025-11-06 12:43:41','0000-00-00 00:00:00','','Y','Success'),(1727,0,0,'gen005','darshan','2025-11-06 12:53:49','2025-11-06 12:53:49','','N','Failure'),(1728,0,0,'gen005','darshan','2025-11-06 12:53:56','2025-11-06 12:53:56','','N','Failure'),(1729,0,0,'gen005','darshan','2025-11-06 12:54:30','2025-11-06 12:54:30','','N','Failure'),(1730,0,0,'gen005','darshan','2025-11-06 12:55:55','2025-12-17 19:03:58','','N','Success'),(1731,0,0,'gen005','Manshi','2025-11-06 13:09:05','2025-11-06 18:41:06','','N','Success'),(1732,0,0,'gen005','darshan','2025-11-06 13:13:25','2025-12-17 19:03:58','','N','Success'),(1733,0,0,'GEN005','priyanshi','2025-11-06 14:04:44','2025-11-06 17:18:04','','N','Success'),(1734,0,0,'Gen005','Vishal','2025-11-06 14:18:03','2025-11-08 09:51:42','','N','Success'),(1735,0,0,'gen005','Mo','2025-11-06 14:33:30','2025-11-08 13:58:55','','N','Success'),(1736,0,0,'Gen005','Vishal','2025-11-06 14:42:13','2025-11-08 09:51:42','','N','Success'),(1737,0,0,'GEN005','priyanshi','2025-11-06 15:09:11','2025-11-06 17:18:04','','N','Success'),(1738,0,0,'Gen005','riya','2025-11-06 15:16:44','2025-11-07 11:54:30','','N','Success'),(1739,0,0,'GEN005','Reception','2025-11-06 15:57:16','2025-11-07 13:39:54','','N','Success'),(1740,0,0,'GEN005','priyanshi','2025-11-06 16:26:32','2025-11-06 17:18:04','','N','Success'),(1741,0,0,'Gen005','riya','2025-11-06 16:27:27','2025-11-07 11:54:30','','N','Success'),(1742,0,0,'gen005','Mo','2025-11-06 16:27:37','2025-11-08 13:58:55','','N','Success'),(1743,0,0,'gen005','janvi','2025-11-06 16:30:05','2025-11-07 13:43:40','','N','Success'),(1744,0,0,'gen005','darshan','2025-11-06 17:07:23','2025-12-17 19:03:58','','N','Success'),(1745,0,0,'gen005','Manshi','2025-11-06 17:10:47','2025-11-06 18:41:06','','N','Success'),(1746,0,0,'GEN005','drashti','2025-11-06 17:18:13','2025-11-06 19:04:44','','N','Success'),(1747,0,0,'Gen005','Vishal','2025-11-06 17:21:40','2025-11-08 09:51:42','','N','Success'),(1748,0,0,'gen005','Drjayant','2025-11-06 17:46:19','2025-11-07 13:38:51','','N','Success'),(1749,0,0,'gen005','Mo','2025-11-06 17:55:43','2025-11-08 13:58:55','','N','Success'),(1750,0,0,'GEN005','Manshi','2025-11-06 18:17:41','2025-11-06 18:41:06','','N','Success'),(1751,0,0,'GEN005','Manshi','2025-11-06 18:56:16','2025-11-07 12:02:33','','N','Success'),(1752,0,0,'gen005','drashti','2025-11-06 19:07:16','2025-11-06 20:12:06','','N','Success'),(1753,0,0,'GEN005','Mo','2025-11-06 19:24:46','2025-11-08 13:58:55','','N','Success'),(1754,0,0,'Gen005','Vishal','2025-11-06 20:01:03','2025-11-08 09:51:42','','N','Success'),(1755,0,0,'gen005','shweta','2025-11-06 20:12:14','2025-11-10 09:34:56','','N','Success'),(1756,0,0,'GEN005','Mo','2025-11-06 23:43:39','2025-11-08 13:58:55','','N','Success'),(1757,0,0,'gen005','Dharmishth','2025-11-07 08:32:13','0000-00-00 00:00:00','','Y','Success'),(1758,0,0,'GEN005','Mo','2025-11-07 08:33:22','2025-11-08 13:58:55','','N','Success'),(1759,0,0,'GEN005','Reception','2025-11-07 08:41:26','2025-11-07 13:39:54','','N','Success'),(1760,0,0,'gen005','priyanshi','2025-11-07 09:02:36','2025-11-07 09:33:01','','N','Success'),(1761,0,0,'gen005','riya','2025-11-07 09:12:59','2025-11-07 11:54:30','','N','Success'),(1762,0,0,'gen005','janvi','2025-11-07 09:13:34','2025-11-07 13:43:40','','N','Success'),(1763,0,0,'gen005','drashti','2025-11-07 09:33:08','2025-11-07 13:32:00','','N','Success'),(1764,0,0,'gen005','Dharmishth','2025-11-07 09:59:10','0000-00-00 00:00:00','','Y','Success'),(1765,0,0,'gen005','riya','2025-11-07 10:02:13','2025-11-07 11:54:30','','N','Success'),(1766,0,0,'gen005','Dharmishth','2025-11-07 10:02:57','0000-00-00 00:00:00','','Y','Success'),(1767,0,0,'gen005','Manshi','2025-11-07 10:02:58','2025-11-07 12:02:33','','N','Success'),(1768,0,0,'gen005','Drpratapsi','2025-11-07 10:23:30','0000-00-00 00:00:00','','Y','Success'),(1769,0,0,'GEN005','Mo','2025-11-07 10:40:38','2025-11-08 13:58:55','','N','Success'),(1770,0,0,'gen005','janvi','2025-11-07 10:44:10','2025-11-07 13:43:40','','N','Success'),(1771,0,0,'gen005','darshan','2025-11-07 10:46:26','2025-12-17 19:03:58','','N','Success'),(1772,0,0,'gen005','Drjayant','2025-11-07 11:05:21','2025-11-07 13:38:51','','N','Success'),(1773,0,0,'gen005','riya','2025-11-07 11:13:21','2025-11-07 11:54:30','','N','Success'),(1774,0,0,'GEN005','Mo','2025-11-07 11:51:22','2025-11-08 13:58:55','','N','Success'),(1775,0,0,'gen005','riya','2025-11-07 12:08:23','2025-11-07 17:06:02','','N','Success'),(1776,0,0,'gen005','Manshi','2025-11-07 12:13:37','2025-11-10 18:40:13','','N','Success'),(1777,0,0,'gen005','Manshi','2025-11-07 12:45:48','2025-11-10 18:40:13','','N','Success'),(1778,0,0,'GEN005','drashti','2025-11-07 13:40:06','2025-11-07 19:12:30','','N','Success'),(1779,0,0,'GEN005','Reception','2025-11-07 13:45:07','2025-11-08 14:38:10','','N','Success'),(1780,0,0,'GEN005','Reception','2025-11-07 13:46:41','2025-11-08 14:38:10','','N','Success'),(1781,0,0,'GEN005','priyanshi','2025-11-07 13:57:04','2025-11-07 16:55:49','','N','Success'),(1782,0,0,'gen005','Mo','2025-11-07 13:57:45','2025-11-08 13:58:55','','N','Success'),(1783,0,0,'gen005','riya','2025-11-07 14:18:15','2025-11-07 17:06:02','','N','Success'),(1784,0,0,'gen005','Mo','2025-11-07 14:49:29','2025-11-08 13:58:55','','N','Success'),(1785,0,0,'gen005','riya','2025-11-07 15:10:35','2025-11-07 17:06:02','','N','Success'),(1786,0,0,'gen005','riya','2025-11-07 15:13:17','2025-11-07 17:06:02','','N','Success'),(1787,0,0,'GEN005','Reception','2025-11-07 15:35:18','2025-11-08 14:38:10','','N','Success'),(1788,0,0,'GEN005','priyanshi','2025-11-07 16:39:10','2025-11-07 16:55:49','','N','Success'),(1789,0,0,'gen005','janvi','2025-11-07 16:55:59','2025-11-08 14:30:50','','N','Success'),(1790,0,0,'GEN005','drashti','2025-11-07 16:56:00','2025-11-07 19:12:30','','N','Success'),(1791,0,0,'gen005','darshan','2025-11-07 17:05:05','2025-12-17 19:03:58','','N','Success'),(1792,0,0,'gen005','Manshi','2025-11-07 17:09:43','2025-11-10 18:40:13','','N','Success'),(1793,0,0,'gen005','janvi','2025-11-07 17:30:01','2025-11-08 14:30:50','','N','Success'),(1794,0,0,'gen005','Drjayant','2025-11-07 17:51:15','2025-11-07 18:01:03','','N','Success'),(1795,0,0,'gen005','Drjayant','2025-11-07 17:53:03','2025-11-07 18:01:03','','N','Success'),(1796,0,0,'gen005','Drjayant','2025-11-07 18:09:20','2025-11-27 13:07:45','','N','Success'),(1797,0,0,'gen005','riya','2025-11-07 18:10:33','2025-11-09 12:07:32','','N','Success'),(1798,0,0,'gen005','Drpratapsi','2025-11-07 18:32:29','0000-00-00 00:00:00','','Y','Success'),(1799,0,0,'gen005','Dharmishth','2025-11-07 18:35:53','0000-00-00 00:00:00','','Y','Success'),(1800,0,0,'gen005','Mo','2025-11-07 18:44:18','2025-11-08 13:58:55','','N','Success'),(1801,0,0,'GEN005','drashti','2025-11-07 19:15:13','2025-11-08 13:28:06','','N','Success'),(1802,0,0,'gen005','Mo','2025-11-07 19:49:26','2025-11-08 13:58:55','','N','Success'),(1803,0,0,'gen005','Mo','2025-11-07 20:17:51','2025-11-08 13:58:55','','N','Success'),(1804,0,0,'GEN005','SHWETA','2025-11-07 20:34:39','2025-11-10 09:34:56','','N','Success'),(1805,0,0,'GEN005','SHWETA','2025-11-07 20:34:40','2025-11-10 09:34:56','','N','Success'),(1806,0,0,'gen005','Mo','2025-11-07 21:40:56','2025-11-08 13:58:55','','N','Success'),(1807,0,0,'gen005','Dharmishth','2025-11-08 08:21:18','0000-00-00 00:00:00','','Y','Success'),(1808,0,0,'gen005','Reception','2025-11-08 08:45:16','2025-11-08 14:38:10','','N','Success'),(1809,0,0,'gen005','Vishal','2025-11-08 08:57:06','2025-11-08 09:51:42','','N','Success'),(1810,0,0,'gen005','Mo','2025-11-08 08:59:05','2025-11-08 13:58:55','','N','Success'),(1811,0,0,'gen005','Vishal','2025-11-08 09:06:33','2025-11-08 09:51:42','','N','Success'),(1812,0,0,'gen005','janvi','2025-11-08 09:22:27','2025-11-08 14:30:50','','N','Success'),(1813,0,0,'GEN005','drashti','2025-11-08 09:36:07','2025-11-08 13:28:06','','N','Success'),(1814,0,0,'gen005','Vishal','2025-11-08 09:51:54','2025-11-11 20:12:43','','N','Success'),(1815,0,0,'gen005','Drpratapsi','2025-11-08 10:07:18','0000-00-00 00:00:00','','Y','Success'),(1816,0,0,'GEN005','Mo','2025-11-08 10:17:06','2025-11-08 13:58:55','','N','Success'),(1817,0,0,'gen005','Manshi','2025-11-08 10:23:18','2025-11-10 18:40:13','','N','Success'),(1818,0,0,'gen005','Vishal','2025-11-08 10:31:49','2025-11-11 20:12:43','','N','Success'),(1819,0,0,'gen005','darshan','2025-11-08 10:40:53','2025-12-17 19:03:58','','N','Success'),(1820,0,0,'gen005','Drjayant','2025-11-08 10:51:05','2025-11-27 13:07:45','','N','Success'),(1821,0,0,'gen005','Dharmishth','2025-11-08 10:59:27','0000-00-00 00:00:00','','Y','Success'),(1822,0,0,'GEN005','Mo','2025-11-08 11:37:18','2025-11-08 13:58:55','','N','Success'),(1823,0,0,'gen005','Vishal','2025-11-08 11:47:33','2025-11-11 20:12:43','','N','Success'),(1824,0,0,'gen005','drashti','2025-11-08 12:25:53','2025-11-08 13:28:06','','N','Success'),(1825,0,0,'gen005','Dharmishth','2025-11-08 12:31:16','0000-00-00 00:00:00','','Y','Success'),(1826,0,0,'gen005','Drjayant','2025-11-08 12:32:26','2025-11-27 13:07:45','','N','Success'),(1827,0,0,'gen005','Dharmishth','2025-11-08 12:32:36','0000-00-00 00:00:00','','Y','Success'),(1828,0,0,'GEN005','Mo','2025-11-08 12:48:00','2025-11-08 13:58:55','','N','Success'),(1829,0,0,'gen005','Manshi','2025-11-08 13:03:28','2025-11-10 18:40:13','','N','Success'),(1830,0,0,'gen005','Vishal','2025-11-08 13:26:34','2025-11-11 20:12:43','','N','Success'),(1831,0,0,'GEN005','priyanshi','2025-11-08 13:28:10','2025-11-08 14:01:20','','N','Success'),(1832,0,0,'gen005','Vishal','2025-11-08 13:57:34','2025-11-11 20:12:43','','N','Success'),(1833,0,0,'GEN005','shweta','2025-11-08 14:01:28','2025-11-10 09:34:56','','N','Success'),(1834,0,0,'gen005','Dharmishth','2025-11-08 14:15:21','0000-00-00 00:00:00','','Y','Success'),(1835,0,0,'gen005','SHWETA','2025-11-08 14:38:29','2025-11-08 14:38:29','','N','Failure'),(1836,0,0,'gen005','SHWETA','2025-11-08 14:38:32','2025-11-08 14:38:32','','N','Failure'),(1837,0,0,'gen005','SHWETA','2025-11-08 14:38:33','2025-11-08 14:38:33','','N','Failure'),(1838,0,0,'gen005','SHWETA','2025-11-08 14:38:34','2025-11-08 14:38:34','','N','Failure'),(1839,0,0,'gen005','SHWETA','2025-11-08 14:38:55','2025-11-10 09:34:56','','N','Success'),(1840,0,0,'gen005','Vishal','2025-11-08 15:40:58','2025-11-11 20:12:43','','N','Success'),(1841,0,0,'gen005','Mo','2025-11-08 16:08:30','2025-11-11 20:15:01','','N','Success'),(1842,0,0,'gen005','Mo','2025-11-08 16:11:26','2025-11-11 20:15:01','','N','Success'),(1843,0,0,'GEN005','Janvi','2025-11-08 16:40:02','2025-11-08 16:44:35','','N','Success'),(1844,0,0,'GEN005','Manshi','2025-11-08 16:44:41','2025-11-10 18:40:13','','N','Success'),(1845,0,0,'gen005','urvashi','2025-11-08 17:05:55','2025-11-08 17:05:55','','N','Failure'),(1846,0,0,'gen005','urvashi','2025-11-08 17:05:57','2025-11-08 17:05:57','','N','Failure'),(1847,0,0,'gen005','urvashi','2025-11-08 17:05:58','2025-11-08 17:05:58','','N','Failure'),(1848,0,0,'gen005','urvashi','2025-11-08 17:06:10','2025-11-08 17:06:10','','N','Failure'),(1849,0,0,'gen005','urvashi','2025-11-08 17:06:13','2025-11-08 17:06:13','','N','Failure'),(1850,0,0,'gen005','Urvashi','2025-11-08 17:06:37','2025-11-08 19:01:08','','N','Success'),(1851,0,0,'gen005','Vishal','2025-11-08 17:09:33','2025-11-11 20:12:43','','N','Success'),(1852,0,0,'gen005','Manshi','2025-11-08 17:13:47','2025-11-10 18:40:13','','N','Success'),(1853,0,0,'gen005','janvi','2025-11-08 17:29:01','2025-11-11 14:06:43','','N','Success'),(1854,0,0,'GEN005','drashti','2025-11-08 17:32:00','2025-11-08 18:46:42','','N','Success'),(1855,0,0,'gen005','Manshi','2025-11-08 17:43:34','2025-11-10 18:40:13','','N','Success'),(1856,0,0,'gen005','Mo','2025-11-08 17:58:19','2025-11-11 20:15:01','','N','Success'),(1857,0,0,'gen005','riya','2025-11-08 18:40:54','2025-11-09 12:07:32','','N','Success'),(1858,0,0,'GEN005','priyanshi','2025-11-08 18:46:47','2025-11-08 20:24:36','','N','Success'),(1859,0,0,'gen005','Mo','2025-11-08 19:08:59','2025-11-11 20:15:01','','N','Success'),(1860,0,0,'GEN005','Manshi','2025-11-08 19:10:36','2025-11-10 18:40:13','','N','Success'),(1861,0,0,'gen005','Urvashi','2025-11-08 19:11:09','2025-11-08 20:46:04','','N','Success'),(1862,0,0,'gen005','Mo','2025-11-08 19:48:02','2025-11-11 20:15:01','','N','Success'),(1863,0,0,'GEN005','priyanshi','2025-11-08 20:25:22','2025-11-13 11:16:10','','N','Success'),(1864,0,0,'gen005','riya','2025-11-08 20:40:24','2025-11-09 12:07:32','','N','Success'),(1865,0,0,'gen005','Mo','2025-11-08 22:12:14','2025-11-11 20:15:01','','N','Success'),(1866,0,0,'gen005','Mo','2025-11-09 00:10:05','2025-11-11 20:15:01','','N','Success'),(1867,0,0,'gen005','Mo','2025-11-09 01:11:40','2025-11-11 20:15:01','','N','Success'),(1868,0,0,'gen005','riya','2025-11-09 08:39:46','2025-11-09 12:07:32','','N','Success'),(1869,0,0,'gen005','Reception','2025-11-09 09:13:26','2025-11-09 13:08:28','','N','Success'),(1870,0,0,'gen005','riya','2025-11-09 10:02:18','2025-11-09 12:07:32','','N','Success'),(1871,0,0,'gen005','Reception','2025-11-09 10:10:51','2025-11-09 13:08:28','','N','Success'),(1872,0,0,'gen005','Mo','2025-11-09 10:12:12','2025-11-11 20:15:01','','N','Success'),(1873,0,0,'gen005','riya','2025-11-09 10:34:41','2025-11-09 12:07:32','','N','Success'),(1874,0,0,'gen005','Mo','2025-11-09 10:58:56','2025-11-11 20:15:01','','N','Success'),(1875,0,0,'gen005','Mo','2025-11-09 11:45:31','2025-11-11 20:15:01','','N','Success'),(1876,0,0,'gen005','riya','2025-11-09 11:47:36','2025-11-09 12:07:32','','N','Success'),(1877,0,0,'gen005','riya','2025-11-09 12:09:00','2025-11-13 11:28:35','','N','Success'),(1878,0,0,'gen005','Mo','2025-11-09 12:40:14','2025-11-11 20:15:01','','N','Success'),(1879,0,0,'gen005','Mo','2025-11-09 13:08:49','2025-11-11 20:15:01','','N','Success'),(1880,0,0,'gen005','Mo','2025-11-09 13:58:03','2025-11-11 20:15:01','','N','Success'),(1881,0,0,'gen005','riya','2025-11-09 14:20:21','2025-11-13 11:28:35','','N','Success'),(1882,0,0,'gen005','Mo','2025-11-09 14:35:38','2025-11-11 20:15:01','','N','Success'),(1883,0,0,'gen005','darshan','2025-11-09 16:29:41','2025-12-17 19:03:58',_binary '192.168.1.12','N','Success'),(1884,0,0,'gen005','Mo','2025-11-09 16:46:07','2025-11-11 20:15:01','','N','Success'),(1885,0,0,'gen005','riya','2025-11-09 17:39:21','2025-11-13 11:28:35','','N','Success'),(1886,0,0,'GEN005','Mo','2025-11-09 18:37:26','2025-11-11 20:15:01','','N','Success'),(1887,0,0,'gen005','Reception','2025-11-10 08:46:48','2025-11-10 14:34:15','','N','Success'),(1888,0,0,'gen005','shweta','2025-11-10 09:15:48','2025-11-10 09:34:56','','N','Success'),(1889,0,0,'gen005','shweta','2025-11-10 09:15:50','2025-11-10 09:34:56','','N','Success'),(1890,0,0,'gen005','janvi','2025-11-10 09:15:57','2025-11-11 14:06:43','','N','Success'),(1891,0,0,'gen005','drashti','2025-11-10 09:35:04','2025-11-10 13:27:51','','N','Success'),(1892,0,0,'gen005','riya','2025-11-10 09:44:47','2025-11-13 11:28:35','','N','Success'),(1893,0,0,'gen005','Manshi','2025-11-10 10:09:07','2025-11-10 18:40:13','','N','Success'),(1894,0,0,'gen005','Drpratapsi','2025-11-10 10:23:52','0000-00-00 00:00:00','','Y','Success'),(1895,0,0,'gen005','darshan','2025-11-10 10:59:43','2025-12-17 19:03:58','','N','Success'),(1896,0,0,'gen005','Mo','2025-11-10 11:11:54','2025-11-11 20:15:01','','N','Success'),(1897,0,0,'gen005','riya','2025-11-10 11:17:14','2025-11-13 11:28:35','','N','Success'),(1898,0,0,'GEN005','Drsagar','2025-11-10 11:19:54','0000-00-00 00:00:00','','Y','Success'),(1899,0,0,'gen005','Dharmishth','2025-11-10 11:28:07','0000-00-00 00:00:00','','Y','Success'),(1900,0,0,'GEN005','Drridham','2025-11-10 12:00:19','2025-12-02 13:37:44','','N','Success'),(1901,0,0,'gen005','riya','2025-11-10 12:07:27','2025-11-13 11:28:35','','N','Success'),(1902,0,0,'GEN005','Mo','2025-11-10 12:24:03','2025-11-11 20:15:01','','N','Success'),(1903,0,0,'gen005','Manshi','2025-11-10 12:39:36','2025-11-10 18:40:13','','N','Success'),(1904,0,0,'GEN005','Mo','2025-11-10 12:52:17','2025-11-11 20:15:01','','N','Success'),(1905,0,0,'gen005','riya','2025-11-10 13:08:17','2025-11-13 11:28:35','','N','Success'),(1906,0,0,'gen005','drashti','2025-11-10 13:35:12','2025-11-10 14:25:28','','N','Success'),(1907,0,0,'gen005','riya','2025-11-10 13:46:43','2025-11-13 11:28:35','','N','Success'),(1908,0,0,'gen005','shweta','2025-11-10 14:25:35','2025-11-10 15:05:16','','N','Success'),(1909,0,0,'GEN005','Mo','2025-11-10 14:34:54','2025-11-11 20:15:01','','N','Success'),(1910,0,0,'gen005','riya','2025-11-10 15:29:39','2025-11-13 11:28:35','','N','Success'),(1911,0,0,'gen005','Reception','2025-11-10 15:38:14','2025-11-10 20:09:34','','N','Success'),(1912,0,0,'gen005','shweta','2025-11-10 15:41:02','2025-11-10 16:27:49','','N','Success'),(1913,0,0,'gen005','Reception','2025-11-10 16:17:15','2025-11-10 20:09:34','','N','Success'),(1914,0,0,'gen005','drashti','2025-11-10 16:47:19','2025-11-10 20:03:54','','N','Success'),(1915,0,0,'gen005','darshan','2025-11-10 17:04:03','2025-12-17 19:03:58','','N','Success'),(1916,0,0,'gen005','Manshi','2025-11-10 17:09:34','2025-11-10 18:40:13','','N','Success'),(1917,0,0,'gen005','Manshi','2025-11-10 17:09:53','2025-11-10 18:40:13','','N','Success'),(1918,0,0,'gen005','janvi','2025-11-10 17:23:03','2025-11-11 14:06:43','','N','Success'),(1919,0,0,'GEN005','Mo','2025-11-10 17:31:11','2025-11-11 20:15:01','','N','Success'),(1920,0,0,'GEN005','Mo','2025-11-10 17:32:12','2025-11-11 20:15:01','','N','Success'),(1921,0,0,'GEN005','Drridham','2025-11-10 18:20:42','2025-12-02 13:37:44','','N','Success'),(1922,0,0,'gen005','Manshi','2025-11-10 18:52:37','2025-11-13 18:37:31','','N','Success'),(1923,0,0,'gen005','riya','2025-11-10 18:59:22','2025-11-13 11:28:35','','N','Success'),(1924,0,0,'gen005','Manshi','2025-11-10 19:08:11','2025-11-13 18:37:31','','N','Success'),(1925,0,0,'gen005','Manshi','2025-11-10 19:08:32','2025-11-13 18:37:31','','N','Success'),(1926,0,0,'GEN005','Mo','2025-11-10 20:00:40','2025-11-11 20:15:01','','N','Success'),(1927,0,0,'gen005','Manshi','2025-11-10 20:06:38','2025-11-13 18:37:31','','N','Success'),(1928,0,0,'gen005','Reception','2025-11-10 20:23:50','2025-11-10 20:39:15','','N','Success'),(1929,0,0,'GEN005','Mo','2025-11-10 20:26:20','2025-11-11 20:15:01','','N','Success'),(1930,0,0,'gen005','Manisha','2025-11-10 20:36:16','2025-11-10 20:36:16','','N','Failure'),(1931,0,0,'gen005','Manisha','2025-11-10 20:36:19','2025-11-10 20:36:19','','N','Failure'),(1932,0,0,'gen005','Janvi','2025-11-10 20:36:23','2025-11-11 14:06:43','','N','Success'),(1933,0,0,'GEN005','Mo','2025-11-10 23:10:37','2025-11-11 20:15:01','','N','Success'),(1934,0,0,'GEN005','Mo','2025-11-11 08:35:13','2025-11-11 20:15:01','','N','Success'),(1935,0,0,'gen005','Reception','2025-11-11 08:51:26','2025-11-11 14:05:54','','N','Success'),(1936,0,0,'gen005','janvi','2025-11-11 09:26:06','2025-11-11 14:06:43','','N','Success'),(1937,0,0,'gen005','Dharmishth','2025-11-11 09:42:27','0000-00-00 00:00:00','','Y','Success'),(1938,0,0,'GEN005','Mo','2025-11-11 09:43:58','2025-11-11 20:15:01','','N','Success'),(1939,0,0,'gen005','drashti','2025-11-11 09:45:46','2025-11-11 14:02:10','','N','Success'),(1940,0,0,'gen005','riya','2025-11-11 09:52:21','2025-11-13 11:28:35','','N','Success'),(1941,0,0,'gen005','riya','2025-11-11 09:56:41','2025-11-13 11:28:35','','N','Success'),(1942,0,0,'GEN005','Mo','2025-11-11 10:07:23','2025-11-11 20:15:01','','N','Success'),(1943,0,0,'gen005','Drpratapsi','2025-11-11 10:07:39','0000-00-00 00:00:00','','Y','Success'),(1944,0,0,'gen005','Manshi','2025-11-11 10:26:51','2025-11-13 18:37:31','','N','Success'),(1945,0,0,'gen005','darshan','2025-11-11 10:51:45','2025-12-17 19:03:58','','N','Success'),(1946,0,0,'gen005','riya','2025-11-11 11:13:48','2025-11-13 11:28:35','','N','Success'),(1947,0,0,'gen005','drarchit','2025-11-11 11:17:54','2025-11-11 20:09:37','','N','Success'),(1948,0,0,'GEN005','Mo','2025-11-11 11:19:07','2025-11-11 20:15:01','','N','Success'),(1949,0,0,'gen005','Dharmishth','2025-11-11 11:39:18','0000-00-00 00:00:00','','Y','Success'),(1950,0,0,'GEN005','Mo','2025-11-11 11:55:25','2025-11-11 20:15:01','','N','Success'),(1951,0,0,'gen005','riya','2025-11-11 11:56:05','2025-11-13 11:28:35','','N','Success'),(1952,0,0,'gen005','Dharmishth','2025-11-11 12:24:27','0000-00-00 00:00:00','','Y','Success'),(1953,0,0,'gen005','thims','2025-11-11 12:28:36','2025-11-20 13:03:31','','N','Success'),(1954,0,0,'gen005','riya','2025-11-11 12:30:58','2025-11-13 11:28:35','','N','Success'),(1955,0,0,'gen005','riya','2025-11-11 13:37:10','2025-11-13 11:28:35','','N','Success'),(1956,0,0,'gen005','drashti','2025-11-11 13:48:51','2025-11-11 14:02:10','','N','Success'),(1957,0,0,'gen005','drashti','2025-11-11 14:05:56','2025-11-12 11:14:26','','N','Success'),(1958,0,0,'gen005','SHWETA','2025-11-11 14:06:19','2025-11-11 14:31:11','','N','Success'),(1959,0,0,'gen005','janvi','2025-11-11 14:09:10','2025-11-12 12:12:59','','N','Success'),(1960,0,0,'gen005','SHWETA','2025-11-11 14:31:42','2025-11-11 16:15:38','','N','Success'),(1961,0,0,'gen005','darshan','2025-11-11 14:43:41','2025-12-17 19:03:58','','N','Success'),(1962,0,0,'GEN005','Mo','2025-11-11 15:07:34','2025-11-11 20:15:01','','N','Success'),(1963,0,0,'gen005','SHWETA','2025-11-11 15:52:36','2025-11-11 16:15:38','','N','Success'),(1964,0,0,'gen005','SHWETA','2025-11-11 15:52:38','2025-11-11 16:15:38','','N','Success'),(1965,0,0,'gen005','riya','2025-11-11 16:27:25','2025-11-13 11:28:35','','N','Success'),(1966,0,0,'gen005','SHWETA','2025-11-11 16:28:25','2025-11-11 17:05:29','','N','Success'),(1967,0,0,'gen005','drashti','2025-11-11 16:32:30','2025-11-12 11:14:26','','N','Success'),(1968,0,0,'gen005','priyanshi','2025-11-11 17:05:43','2025-11-13 11:16:10','','N','Success'),(1969,0,0,'gen005','janvi','2025-11-11 17:09:45','2025-11-12 12:12:59','','N','Success'),(1970,0,0,'gen005','darshan','2025-11-11 17:09:49','2025-12-17 19:03:58','','N','Success'),(1971,0,0,'gen005','Vishal','2025-11-11 17:14:37','2025-11-11 20:12:43','','N','Success'),(1972,0,0,'gen005','Manshi','2025-11-11 17:16:49','2025-11-13 18:37:31','','N','Success'),(1973,0,0,'GEN005','drarchit','2025-11-11 17:55:37','2025-11-11 20:09:37','','N','Success'),(1974,0,0,'gen005','Vishal','2025-11-11 18:12:11','2025-11-11 20:12:43','','N','Success'),(1975,0,0,'GEN005','Drsagar','2025-11-11 18:23:57','0000-00-00 00:00:00','','Y','Success'),(1976,0,0,'GEN005','Mo','2025-11-11 18:39:15','2025-11-11 20:15:01','','N','Success'),(1977,0,0,'gen005','Drpratapsi','2025-11-11 18:47:41','0000-00-00 00:00:00','','Y','Success'),(1978,0,0,'gen005','Drpratapsi','2025-11-11 19:16:11','0000-00-00 00:00:00','','Y','Success'),(1979,0,0,'GEN005','Mo','2025-11-11 20:06:02','2025-11-11 20:15:01','','N','Success'),(1980,0,0,'gen005','Vishal','2025-11-11 20:08:57','2025-11-11 20:12:43','','N','Success'),(1981,0,0,'GEN005','drarchit','2025-11-11 20:09:46','2025-11-12 13:07:49','','N','Success'),(1982,0,0,'gen005','Vishal','2025-11-11 20:56:03','2025-11-12 12:45:18','','N','Success'),(1983,0,0,'GEN005','Mo','2025-11-11 21:21:02','2025-11-15 19:04:56','','N','Success'),(1984,0,0,'GEN005','Mo','2025-11-11 21:21:44','2025-11-15 19:04:56','','N','Success'),(1985,0,0,'GEN005','Mo','2025-11-11 23:38:25','2025-11-15 19:04:56','','N','Success'),(1986,0,0,'gen005','Reception','2025-11-12 08:45:34','2025-11-12 08:45:34','','N','Failure'),(1987,0,0,'gen005','Reception','2025-11-12 08:45:38','2025-11-12 08:45:38','','N','Failure'),(1988,0,0,'gen005','Reception','2025-11-12 08:45:53','2025-11-12 14:04:52','','N','Success'),(1989,0,0,'gen005','janvi','2025-11-12 09:23:28','2025-11-12 12:12:59','','N','Success'),(1990,0,0,'gen005','Dharmishth','2025-11-12 09:33:10','0000-00-00 00:00:00','','Y','Success'),(1991,0,0,'gen005','drashti','2025-11-12 09:38:32','2025-11-12 11:14:26','','N','Success'),(1992,0,0,'gen005','janvi','2025-11-12 09:52:49','2025-11-12 12:12:59','','N','Success'),(1993,0,0,'gen005','Manshi','2025-11-12 10:09:29','2025-11-13 18:37:31','','N','Success'),(1994,0,0,'gen005','Vishal','2025-11-12 10:11:42','2025-11-12 12:45:18','','N','Success'),(1995,0,0,'GEN005','Mo','2025-11-12 10:35:45','2025-11-15 19:04:56','','N','Success'),(1996,0,0,'gen005','darshan','2025-11-12 10:40:40','2025-12-17 19:03:58','','N','Success'),(1997,0,0,'gen005','Manshi','2025-11-12 10:56:22','2025-11-13 18:37:31','','N','Success'),(1998,0,0,'gen005','drarchit','2025-11-12 11:01:28','2025-11-12 13:07:49','','N','Success'),(1999,0,0,'GEN005','shweta','2025-11-12 11:14:32','2025-11-12 11:36:50','','N','Success'),(2000,0,0,'GEN005','shweta','2025-11-12 11:14:35','2025-11-12 11:36:50','','N','Success'),(2001,0,0,'GEN005','Mo','2025-11-12 11:14:41','2025-11-15 19:04:56','','N','Success'),(2002,0,0,'GEN005','Drsagar','2025-11-12 11:16:51','0000-00-00 00:00:00','','Y','Success'),(2003,0,0,'gen005','Drpratapsi','2025-11-12 11:17:52','0000-00-00 00:00:00','','Y','Success'),(2004,0,0,'gen005','Vishal','2025-11-12 11:25:52','2025-11-12 12:45:18','','N','Success'),(2005,0,0,'gen005','Drpratapsi','2025-11-12 11:33:15','0000-00-00 00:00:00','','Y','Success'),(2006,0,0,'gen005','drashti','2025-11-12 11:37:00','2025-11-12 14:24:40','','N','Success'),(2007,0,0,'gen005','Vishal','2025-11-12 11:49:00','2025-11-12 12:45:18','','N','Success'),(2008,0,0,'gen005','janvi','2025-11-12 12:13:04','2025-11-13 11:20:38','','N','Success'),(2009,0,0,'gen005','janvi','2025-11-12 12:14:15','2025-11-13 11:20:38','','N','Success'),(2010,0,0,'GEN005','Vishal','2025-11-12 12:31:48','2025-11-12 12:45:18','','N','Success'),(2011,0,0,'gen005','Manshi','2025-11-12 12:45:59','2025-11-13 18:37:31','','N','Success'),(2012,0,0,'GEN005','drarchit','2025-11-12 13:09:21','2025-11-12 13:20:46','','N','Success'),(2013,0,0,'GEN005','drarchit','2025-11-12 13:21:11','2025-11-12 13:29:21','','N','Success'),(2014,0,0,'gen005','janvi','2025-11-12 13:35:34','2025-11-13 11:20:38','','N','Success'),(2015,0,0,'GEN005','drarchit','2025-11-12 13:39:14','2025-11-12 14:07:43','','N','Success'),(2016,0,0,'gen005','Vishal','2025-11-12 15:03:47','2025-11-12 16:30:11','','N','Success'),(2017,0,0,'gen005','Reception','2025-11-12 15:08:18','2025-11-13 14:29:13','','N','Success'),(2018,0,0,'GEN005','shweta','2025-11-12 15:10:28','2025-11-12 15:26:23','','N','Success'),(2019,0,0,'gen005','Vishal','2025-11-12 15:40:52','2025-11-12 16:30:11','','N','Success'),(2020,0,0,'GEN005','shweta','2025-11-12 15:54:45','2025-11-12 16:40:37','','N','Success'),(2021,0,0,'gen005','Vishal','2025-11-12 16:30:15','2025-11-14 18:25:51','','N','Success'),(2022,0,0,'gen005','Drpratapsi','2025-11-12 16:33:46','0000-00-00 00:00:00','','Y','Success'),(2023,0,0,'GEN005','drashti','2025-11-12 16:44:34','2025-11-14 18:12:56','','N','Success'),(2024,0,0,'gen005','darshan','2025-11-12 17:01:45','2025-12-17 19:03:58','','N','Success'),(2025,0,0,'gen005','Manshi','2025-11-12 17:02:50','2025-11-13 18:37:31','','N','Success'),(2026,0,0,'gen005','janvi','2025-11-12 17:04:05','2025-11-13 11:20:38','','N','Success'),(2027,0,0,'gen005','Manshi','2025-11-12 17:25:42','2025-11-13 18:37:31','','N','Success'),(2028,0,0,'GEN005','Manshi','2025-11-12 17:56:27','2025-11-13 18:37:31','','N','Success'),(2029,0,0,'GEN005','Mo','2025-11-12 17:56:37','2025-11-15 19:04:56','','N','Success'),(2030,0,0,'GEN005','Drsagar','2025-11-12 18:01:37','0000-00-00 00:00:00','','Y','Success'),(2031,0,0,'gen005','Vishal','2025-11-12 18:05:31','2025-11-14 18:25:51','','N','Success'),(2032,0,0,'GEN005','drarchit','2025-11-12 18:23:44','2025-11-12 20:36:57','','N','Success'),(2033,0,0,'gen005','Vishal','2025-11-12 18:40:11','2025-11-14 18:25:51','','N','Success'),(2034,0,0,'gen005','Drpratapsi','2025-11-12 18:42:10','0000-00-00 00:00:00','','Y','Success'),(2035,0,0,'gen005','Manshi','2025-11-12 18:46:10','2025-11-13 18:37:31','','N','Success'),(2036,0,0,'GEN005','Drridham','2025-11-12 18:57:52','2025-12-02 13:37:44','','N','Success'),(2037,0,0,'GEN005','Drsagar','2025-11-12 18:58:41','0000-00-00 00:00:00','','Y','Success'),(2038,0,0,'GEN005','Mo','2025-11-12 19:04:47','2025-11-15 19:04:56','','N','Success'),(2039,0,0,'gen005','Drpratapsi','2025-11-12 20:29:26','0000-00-00 00:00:00','','Y','Success'),(2040,0,0,'GEN005','drarchit','2025-11-12 20:37:10','2025-11-13 12:42:14','','N','Success'),(2041,0,0,'GEN005','drarchit','2025-11-12 20:42:52','2025-11-13 12:42:14','','N','Success'),(2042,0,0,'GEN005','Mo','2025-11-12 21:59:57','2025-11-15 19:04:56','','N','Success'),(2043,0,0,'GEN005','MO','2025-11-12 22:50:54','2025-11-12 22:50:54','','N','Failure'),(2044,0,0,'GEN005','MO','2025-11-12 22:51:07','2025-11-12 22:51:07','','N','Failure'),(2045,0,0,'GEN005','MO','2025-11-12 22:51:16','2025-11-12 22:51:16','','N','Failure'),(2046,0,0,'GEN005','MO','2025-11-12 22:52:17','2025-11-12 22:52:17','','N','Failure'),(2047,0,0,'GEN005','MO','2025-11-12 22:52:33','2025-11-12 22:52:33','','N','Failure'),(2048,0,0,'gen005','MO','2025-11-12 22:53:04','2025-11-15 19:04:56','','N','Success'),(2049,0,0,'GEN005','Mo','2025-11-12 23:12:08','2025-11-15 19:04:56','','N','Success'),(2050,0,0,'GEN005','Mo','2025-11-13 08:35:02','2025-11-15 19:04:56','','N','Success'),(2051,0,0,'gen005','Reception','2025-11-13 08:50:05','2025-11-13 14:29:13','','N','Success'),(2052,0,0,'gen005','janvi','2025-11-13 08:59:51','2025-11-13 11:20:38','','N','Success'),(2053,0,0,'gen005','riya','2025-11-13 09:05:34','2025-11-13 11:28:35','','N','Success'),(2054,0,0,'gen005','Dharmishth','2025-11-13 09:28:42','0000-00-00 00:00:00','','Y','Success'),(2055,0,0,'gen005','priyanshi','2025-11-13 09:52:03','2025-11-13 11:16:10','','N','Success'),(2056,0,0,'gen005','Reception','2025-11-13 09:56:59','2025-11-13 14:29:13','','N','Success'),(2057,0,0,'gen005','Manshi','2025-11-13 10:14:34','2025-11-13 18:37:31','','N','Success'),(2058,0,0,'gen005','thims','2025-11-13 10:14:58','2025-11-20 13:03:31','','N','Success'),(2059,0,0,'gen005','Drpratapsi','2025-11-13 10:16:22','0000-00-00 00:00:00','','Y','Success'),(2060,0,0,'gen005','Dharmishth','2025-11-13 10:16:27','0000-00-00 00:00:00','','Y','Success'),(2061,0,0,'gen005','thims','2025-11-13 10:32:59','2025-11-20 13:03:31','','N','Success'),(2062,0,0,'GEN005','Mo','2025-11-13 10:35:38','2025-11-15 19:04:56','','N','Success'),(2063,0,0,'gen005','thims','2025-11-13 10:37:44','2025-11-20 13:03:31','','N','Success'),(2064,0,0,'gen005','darshan','2025-11-13 10:46:24','2025-12-17 19:03:58','','N','Success'),(2065,0,0,'GEN005','drarchit','2025-11-13 10:58:44','2025-11-13 12:42:14','','N','Success'),(2066,0,0,'GEN005','Riya','2025-11-13 11:16:14','2025-11-13 11:28:35','','N','Success'),(2067,0,0,'gen005','shweta','2025-11-13 11:16:17','2025-11-13 11:18:17','','N','Success'),(2068,0,0,'gen005','priyanshi','2025-11-13 11:18:24','2025-11-13 11:23:38','','N','Success'),(2069,0,0,'GEN005','Riya','2025-11-13 11:20:03','2025-11-13 11:28:35','','N','Success'),(2070,0,0,'gen005','janvi','2025-11-13 11:20:43','2025-11-14 13:25:07','','N','Success'),(2071,0,0,'gen005','shweta','2025-11-13 11:23:44','2025-11-13 11:43:43','','N','Success'),(2072,0,0,'GEN005','Mo','2025-11-13 11:28:41','2025-11-15 19:04:56','','N','Success'),(2073,0,0,'GEN005','Drsagar','2025-11-13 11:33:35','0000-00-00 00:00:00','','Y','Success'),(2074,0,0,'gen005','priyanshi','2025-11-13 11:43:49','2025-11-13 12:12:03','','N','Success'),(2075,0,0,'GEN005','priyanshi','2025-11-13 12:11:56','2025-11-13 12:12:03','','N','Success'),(2076,0,0,'GEN005','Manshi','2025-11-13 12:12:22','2025-11-13 18:37:31','','N','Success'),(2077,0,0,'gen005','Mo','2025-11-13 12:32:19','2025-11-13 12:32:19','','N','Failure'),(2078,0,0,'gen005','Mo','2025-11-13 12:32:26','2025-11-13 12:32:26','','N','Failure'),(2079,0,0,'gen005','Mo','2025-11-13 12:32:27','2025-11-13 12:32:27','','N','Failure'),(2080,0,0,'gen005','Mo','2025-11-13 12:33:03','2025-11-15 19:04:56','','N','Success'),(2081,0,0,'GEN005','drarchit','2025-11-13 12:43:23','2025-11-13 13:16:13','','N','Success'),(2082,0,0,'GEN005','Manshi','2025-11-13 12:56:08','2025-11-13 18:37:31','','N','Success'),(2083,0,0,'gen005','Drpratapsi','2025-11-13 13:14:53','0000-00-00 00:00:00','','Y','Success'),(2084,0,0,'GEN005','Mo','2025-11-13 13:20:23','2025-11-15 19:04:56','','N','Success'),(2085,0,0,'GEN005','drarchit','2025-11-13 13:22:59','2025-11-14 12:51:51','','N','Success'),(2086,0,0,'gen005','shweta','2025-11-13 14:00:22','2025-11-13 16:45:42','','N','Success'),(2087,0,0,'gen005','riya','2025-11-13 14:23:51','2025-11-14 12:59:36','','N','Success'),(2088,0,0,'GEN005','Mo','2025-11-13 15:24:37','2025-11-15 19:04:56','','N','Success'),(2089,0,0,'gen005','Reception','2025-11-13 15:51:33','2025-11-14 14:15:22','','N','Success'),(2090,0,0,'gen005','riya','2025-11-13 16:02:03','2025-11-14 12:59:36','','N','Success'),(2091,0,0,'gen005','priyanshi','2025-11-13 16:45:48','2025-11-14 17:36:24','','N','Success'),(2092,0,0,'gen005','Shweta','2025-11-13 16:46:58','2025-11-14 12:12:25','','N','Success'),(2093,0,0,'gen005','darshan','2025-11-13 17:03:24','2025-12-17 19:03:58','','N','Success'),(2094,0,0,'gen005','Manshi','2025-11-13 17:07:11','2025-11-13 18:37:31','','N','Success'),(2095,0,0,'gen005','Shweta','2025-11-13 17:18:46','2025-11-14 12:12:25','','N','Success'),(2096,0,0,'gen005','riya','2025-11-13 17:33:50','2025-11-14 12:59:36','','N','Success'),(2097,0,0,'gen005','Manshi','2025-11-13 18:00:50','2025-11-13 18:37:31','','N','Success'),(2098,0,0,'GEN005','drarchit','2025-11-13 18:19:14','2025-11-14 12:51:51','','N','Success'),(2099,0,0,'gen005','Manshi','2025-11-13 18:40:43','2025-11-14 11:41:31','','N','Success'),(2100,0,0,'gen005','Vishal','2025-11-13 19:01:13','2025-11-14 18:25:51','','N','Success'),(2101,0,0,'gen005','Shweta','2025-11-13 19:23:50','2025-11-14 12:12:25','','N','Success'),(2102,0,0,'GEN005','priyanshi','2025-11-13 19:23:55','2025-11-14 17:36:24','','N','Success'),(2103,0,0,'gen005','Vishal','2025-11-13 19:24:51','2025-11-14 18:25:51','','N','Success'),(2104,0,0,'gen005','Manshi','2025-11-13 19:28:25','2025-11-14 11:41:31','','N','Success'),(2105,0,0,'gen005','Manshi','2025-11-13 19:51:27','2025-11-14 11:41:31','','N','Success'),(2106,0,0,'gen005','Manshi','2025-11-13 19:52:05','2025-11-14 11:41:31','','N','Success'),(2107,0,0,'GEN005','drarchit','2025-11-13 20:22:04','2025-11-14 12:51:51','','N','Success'),(2108,0,0,'GEN005','Mo','2025-11-13 20:28:39','2025-11-15 19:04:56','','N','Success'),(2109,0,0,'GEN005','Mo','2025-11-13 20:46:42','2025-11-15 19:04:56','','N','Success'),(2110,0,0,'gen005','Urvashi','2025-11-13 20:48:13','2025-11-14 12:00:20','','N','Success'),(2111,0,0,'gen005','Urvashi','2025-11-13 21:21:13','2025-11-14 12:00:20','','N','Success'),(2112,0,0,'gen005','Vishal','2025-11-13 21:38:32','2025-11-14 18:25:51','','N','Success'),(2113,0,0,'gen005','Mo','2025-11-13 21:46:36','2025-11-15 19:04:56','','N','Success'),(2114,0,0,'GEN005','Mo','2025-11-13 23:28:14','2025-11-15 19:04:56','','N','Success'),(2115,0,0,'gen005','Reception','2025-11-14 08:44:49','2025-11-14 14:15:22','','N','Success'),(2116,0,0,'gen005','janvi','2025-11-14 09:12:29','2025-11-14 13:25:07','','N','Success'),(2117,0,0,'gen005','Dharmishth','2025-11-14 09:19:37','0000-00-00 00:00:00','','Y','Success'),(2118,0,0,'gen005','riya','2025-11-14 09:20:37','2025-11-14 12:59:36','','N','Success'),(2119,0,0,'gen005','Manshi','2025-11-14 10:11:01','2025-11-14 11:41:31','','N','Success'),(2120,0,0,'gen005','Urvashi','2025-11-14 10:45:46','2025-11-14 12:00:20','','N','Success'),(2121,0,0,'GEN005','drarchit','2025-11-14 10:54:23','2025-11-14 12:51:51','','N','Success'),(2122,0,0,'gen005','darshan','2025-11-14 11:00:03','2025-12-17 19:03:58','','N','Success'),(2123,0,0,'GEN005','Mo','2025-11-14 11:37:53','2025-11-15 19:04:56','','N','Success'),(2124,0,0,'gen005','Manshi','2025-11-14 11:47:57','2025-11-16 13:02:04','','N','Success'),(2125,0,0,'GEN005','Drsagar','2025-11-14 12:00:08','0000-00-00 00:00:00','','Y','Success'),(2126,0,0,'GEN005','Drsagar','2025-11-14 12:00:14','0000-00-00 00:00:00','','Y','Success'),(2127,0,0,'GEN005','shweta','2025-11-14 12:00:51','2025-11-14 12:12:25','','N','Success'),(2128,0,0,'GEN005','shweta','2025-11-14 12:00:54','2025-11-14 12:12:25','','N','Success'),(2129,0,0,'GEN005','Urvashi','2025-11-14 12:12:35','2025-11-14 14:20:33','','N','Success'),(2130,0,0,'GEN005','drarchit','2025-11-14 12:54:38','2025-11-20 20:07:24','','N','Success'),(2131,0,0,'GEN005','drarchit','2025-11-14 12:54:40','2025-11-20 20:07:24','','N','Success'),(2132,0,0,'gen005','darshan','2025-11-14 13:11:11','2025-12-17 19:03:58','','N','Success'),(2133,0,0,'gen005','Shweta','2025-11-14 13:25:18','2025-11-14 15:58:54','','N','Success'),(2134,0,0,'gen005','riya','2025-11-14 13:28:00','2025-11-14 19:17:32','','N','Success'),(2135,0,0,'gen005','Mo','2025-11-14 13:49:13','2025-11-15 19:04:56','','N','Success'),(2136,0,0,'gen005','Mo','2025-11-14 14:25:28','2025-11-15 19:04:56','','N','Success'),(2137,0,0,'GEN005','shweta','2025-11-14 14:26:44','2025-11-14 15:58:54','','N','Success'),(2138,0,0,'GEN005','Mo','2025-11-14 15:00:16','2025-11-15 19:04:56','','N','Success'),(2139,0,0,'gen005','Reception','2025-11-14 15:28:48','2025-11-15 13:04:58','','N','Success'),(2140,0,0,'gen005','riya','2025-11-14 15:41:49','2025-11-14 19:17:32','','N','Success'),(2141,0,0,'gen005','shweta','2025-11-14 16:22:13','2025-11-14 16:42:27','','N','Success'),(2142,0,0,'gen005','Reception','2025-11-14 16:22:54','2025-11-15 13:04:58','','N','Success'),(2143,0,0,'gen005','shweta','2025-11-14 16:29:17','2025-11-14 16:42:27','','N','Success'),(2144,0,0,'gen005','riya','2025-11-14 16:37:55','2025-11-14 19:17:32','','N','Success'),(2145,0,0,'gen005','drashti','2025-11-14 16:42:42','2025-11-14 18:12:56','','N','Success'),(2146,0,0,'gen005','priyanshi','2025-11-14 17:07:24','2025-11-14 17:36:24','','N','Success'),(2147,0,0,'gen005','Manshi','2025-11-14 17:10:28','2025-11-16 13:02:04','','N','Success'),(2148,0,0,'gen005','Vishal','2025-11-14 17:17:09','2025-11-14 18:25:51','','N','Success'),(2149,0,0,'GEN005','Drridham','2025-11-14 17:23:22','2025-12-02 13:37:44','','N','Success'),(2150,0,0,'gen005','janvi','2025-11-14 17:36:31','2025-11-17 19:12:58','','N','Success'),(2151,0,0,'gen005','darshan','2025-11-14 17:43:58','2025-12-17 19:03:58','','N','Success'),(2152,0,0,'gen005','Vishal','2025-11-14 17:47:26','2025-11-14 18:25:51','','N','Success'),(2153,0,0,'GEN005','drashti','2025-11-14 18:13:37','2025-11-14 19:46:43','','N','Success'),(2154,0,0,'GEN005','drarchit','2025-11-14 18:13:55','2025-11-20 20:07:24','','N','Success'),(2155,0,0,'GEN005','Drsagar','2025-11-14 18:20:18','0000-00-00 00:00:00','','Y','Success'),(2156,0,0,'gen005','riya','2025-11-14 18:25:55','2025-11-14 19:17:32','','N','Success'),(2157,0,0,'gen005','Mo','2025-11-14 18:31:21','2025-11-15 19:04:56','','N','Success'),(2158,0,0,'GEN005','Manshi','2025-11-14 18:37:54','2025-11-16 13:02:04','','N','Success'),(2159,0,0,'gen005','Mo','2025-11-14 19:11:13','2025-11-15 19:04:56','','N','Success'),(2160,0,0,'gen005','Vishal','2025-11-14 19:17:39','2025-11-15 18:23:01','','N','Success'),(2161,0,0,'GEN005','drashti','2025-11-14 20:03:42','2025-11-15 13:58:55','','N','Success'),(2162,0,0,'gen005','Vishal','2025-11-14 20:10:30','2025-11-15 18:23:01','','N','Success'),(2163,0,0,'gen005','Mo','2025-11-14 20:27:06','2025-11-15 19:04:56','','N','Success'),(2164,0,0,'gen005','Mo','2025-11-14 22:10:31','2025-11-15 19:04:56','','N','Success'),(2165,0,0,'gen005','Vishal','2025-11-14 22:14:08','2025-11-15 18:23:01','','N','Success'),(2166,0,0,'gen005','Mo','2025-11-15 08:42:12','2025-11-15 19:04:56','','N','Success'),(2167,0,0,'gen005','Reception','2025-11-15 08:45:09','2025-11-15 13:04:58','','N','Success'),(2168,0,0,'GEN005','priyanshi','2025-11-15 09:08:09','2025-11-20 16:48:47','','N','Success'),(2169,0,0,'gen005','janvi','2025-11-15 09:14:29','2025-11-17 19:12:58','','N','Success'),(2170,0,0,'gen005','riya','2025-11-15 09:21:02','2025-11-16 14:45:20','','N','Success'),(2171,0,0,'GEN005','drashti','2025-11-15 09:39:25','2025-11-15 13:58:55','','N','Success'),(2172,0,0,'gen005','Manshi','2025-11-15 10:05:38','2025-11-16 13:02:04','','N','Success'),(2173,0,0,'gen005','Mo','2025-11-15 10:13:27','2025-11-15 19:04:56','','N','Success'),(2174,0,0,'gen005','darshan','2025-11-15 10:38:03','2025-12-17 19:03:58','','N','Success'),(2175,0,0,'gen005','darshan','2025-11-15 11:02:37','2025-12-17 19:03:58','','N','Success'),(2176,0,0,'GEN005','drarchit','2025-11-15 11:05:25','2025-11-20 20:07:24','','N','Success'),(2177,0,0,'gen005','Mo','2025-11-15 11:38:46','2025-11-15 19:04:56','','N','Success'),(2178,0,0,'gen005','Reception','2025-11-15 13:05:07','2025-11-15 14:33:04','','N','Success'),(2179,0,0,'GEN005','priyanshi','2025-11-15 13:59:51','2025-11-20 16:48:47','','N','Success'),(2180,0,0,'gen005','darshan','2025-11-15 14:21:06','2025-12-17 19:03:58','','N','Success'),(2181,0,0,'GEN005','priyanshi','2025-11-15 15:18:44','2025-11-20 16:48:47','','N','Success'),(2182,0,0,'gen005','Mo','2025-11-15 15:32:06','2025-11-15 19:04:56','','N','Success'),(2183,0,0,'gen005','Mo','2025-11-15 16:17:57','2025-11-15 19:04:56','','N','Success'),(2184,0,0,'gen005','riya','2025-11-15 16:29:09','2025-11-16 14:45:20','','N','Success'),(2185,0,0,'GEN005','priyanshi','2025-11-15 16:35:25','2025-11-20 16:48:47','','N','Success'),(2186,0,0,'gen005','janvi','2025-11-15 16:46:47','2025-11-17 19:12:58','','N','Success'),(2187,0,0,'gen005','VISHAL','2025-11-15 16:54:36','2025-11-15 18:23:01','','N','Success'),(2188,0,0,'gen005','Reception','2025-11-15 17:20:24','2025-11-15 19:48:05','','N','Success'),(2189,0,0,'gen005','Reception','2025-11-15 17:36:35','2025-11-15 19:48:05','','N','Success'),(2190,0,0,'gen005','VISHAL','2025-11-15 18:23:04','2025-11-15 22:20:35','','N','Success'),(2191,0,0,'GEN005','Drsagar','2025-11-15 18:26:45','0000-00-00 00:00:00','','Y','Success'),(2192,0,0,'GEN005','Mo','2025-11-15 18:37:45','2025-11-15 19:04:56','','N','Success'),(2193,0,0,'GEN005','Mo','2025-11-15 19:02:59','2025-11-15 19:04:56','','N','Success'),(2194,0,0,'GEN005','Mo','2025-11-15 19:13:04','2025-11-17 14:04:58','','N','Success'),(2195,0,0,'gen005','VISHAL','2025-11-15 20:08:11','2025-11-15 22:20:35','','N','Success'),(2196,0,0,'GEN005','Vishal','2025-11-15 22:17:47','2025-11-15 22:20:35','','N','Success'),(2197,0,0,'gen005','VISHAL','2025-11-15 22:38:20','2025-11-17 18:32:07','','N','Success'),(2198,0,0,'GEN005','Mo','2025-11-15 23:15:57','2025-11-17 14:04:58','','N','Success'),(2199,0,0,'GEN005','Mo','2025-11-16 07:45:13','2025-11-17 14:04:58','','N','Success'),(2200,0,0,'GEN005','Vishal','2025-11-16 07:47:21','2025-11-17 18:32:07','','N','Success'),(2201,0,0,'GEN005','Mo','2025-11-16 07:49:34','2025-11-17 14:04:58','','N','Success'),(2202,0,0,'GEN005','Mo','2025-11-16 08:54:21','2025-11-17 14:04:58','','N','Success'),(2203,0,0,'gen005','Manshi','2025-11-16 09:03:25','2025-11-16 13:02:04','','N','Success'),(2204,0,0,'gen005','riya','2025-11-16 10:18:30','2025-11-16 14:45:20','','N','Success'),(2205,0,0,'gen005','Mo','2025-11-16 10:37:55','2025-11-17 14:04:58','','N','Success'),(2206,0,0,'GEN005','Mo','2025-11-16 10:53:41','2025-11-17 14:04:58','','N','Success'),(2207,0,0,'GEN005','Mo','2025-11-16 11:58:50','2025-11-17 14:04:58','','N','Success'),(2208,0,0,'GEN005','Mo','2025-11-16 12:32:36','2025-11-17 14:04:58','','N','Success'),(2209,0,0,'gen005','riya','2025-11-16 13:39:03','2025-11-16 14:45:20','','N','Success'),(2210,0,0,'GEN005','Riya','2025-11-16 14:35:26','2025-11-16 14:45:20','','N','Success'),(2211,0,0,'GEN005','Mo','2025-11-16 15:40:04','2025-11-17 14:04:58','','N','Success'),(2212,0,0,'gen005','riya','2025-11-16 17:10:10','2025-11-18 09:54:12','','N','Success'),(2213,0,0,'GEN005','Mo','2025-11-16 19:33:46','2025-11-17 14:04:58','','N','Success'),(2214,0,0,'GEN005','Mo','2025-11-16 19:46:00','2025-11-17 14:04:58','','N','Success'),(2215,0,0,'GEN005','Mo','2025-11-17 00:30:46','2025-11-17 14:04:58','','N','Success'),(2216,0,0,'GEN005','Mo','2025-11-17 00:50:16','2025-11-17 14:04:58','','N','Success'),(2217,0,0,'gen005','Reception','2025-11-17 08:43:26','2025-11-17 14:51:17','','N','Success'),(2218,0,0,'gen005','riya','2025-11-17 09:09:53','2025-11-17 09:09:53','','N','Failure'),(2219,0,0,'gen005','riya','2025-11-17 09:10:13','2025-11-18 09:54:12','','N','Success'),(2220,0,0,'gen005','drashti','2025-11-17 09:16:06','2025-11-17 14:00:13','','N','Success'),(2221,0,0,'GEN005','Mo','2025-11-17 09:43:50','2025-11-17 14:04:58','','N','Success'),(2222,0,0,'gen005','riya','2025-11-17 09:59:57','2025-11-18 09:54:12','','N','Success'),(2223,0,0,'gen005','Shweta','2025-11-17 10:30:28','2025-11-17 14:13:23','','N','Success'),(2224,0,0,'gen005','Mo','2025-11-17 10:35:32','2025-11-17 14:04:58','','N','Success'),(2225,0,0,'GEN005','Mo','2025-11-17 11:00:01','2025-11-17 14:04:58','','N','Success'),(2226,0,0,'gen005','darshan','2025-11-17 11:02:19','2025-12-17 19:03:58','','N','Success'),(2227,0,0,'GEN005','Drsagar','2025-11-17 11:12:38','0000-00-00 00:00:00','','Y','Success'),(2228,0,0,'gen005','urvashi','2025-11-17 11:15:43','2025-11-17 11:15:43','','N','Failure'),(2229,0,0,'gen005','urvashi','2025-11-17 11:16:00','2025-11-17 11:16:00','','N','Failure'),(2230,0,0,'gen005','urvashi','2025-11-17 11:16:04','2025-11-17 11:16:04','','N','Failure'),(2231,0,0,'gen005','urvashi','2025-11-17 11:17:49','2025-11-17 11:17:49','','N','Failure'),(2232,0,0,'gen005','urvashi','2025-11-17 11:17:52','2025-11-17 11:17:52','','N','Failure'),(2233,0,0,'gen005','urvashi','2025-11-17 11:18:02','2025-11-17 11:18:02','','N','Failure'),(2234,0,0,'gen005','Urvashi','2025-11-17 11:19:22','2025-11-17 11:51:50','','N','Success'),(2235,0,0,'gen005','Janvi','2025-11-17 11:51:59','2025-11-17 19:12:58','','N','Success'),(2236,0,0,'gen005','riya','2025-11-17 12:41:15','2025-11-18 09:54:12','','N','Success'),(2237,0,0,'gen005','Janvi','2025-11-17 12:48:39','2025-11-17 19:12:58','','N','Success'),(2238,0,0,'gen005','Janvi','2025-11-17 13:04:30','2025-11-17 19:12:58','','N','Success'),(2239,0,0,'GEN005','Janvi','2025-11-17 13:04:47','2025-11-17 19:12:58','','N','Success'),(2240,0,0,'gen005','Janvi','2025-11-17 13:12:06','2025-11-17 19:12:58','','N','Success'),(2241,0,0,'gen005','Janvi','2025-11-17 13:12:54','2025-11-17 19:12:58','','N','Success'),(2242,0,0,'gen005','priyanshi','2025-11-17 13:49:07','2025-11-20 16:48:47','','N','Success'),(2243,0,0,'GEN005','shweta','2025-11-17 14:00:18','2025-11-17 14:13:23','','N','Success'),(2244,0,0,'gen005','Riya','2025-11-17 14:05:08','2025-11-18 09:54:12','','N','Success'),(2245,0,0,'GEN005','shweta','2025-11-17 14:16:10','2025-11-17 22:34:47','','N','Success'),(2246,0,0,'gen005','Mo','2025-11-17 14:31:24','2025-11-19 09:55:35','','N','Success'),(2247,0,0,'GEN005','shweta','2025-11-17 14:41:56','2025-11-17 22:34:47','','N','Success'),(2248,0,0,'gen005','Reception','2025-11-17 15:37:41','2025-11-17 20:35:02','','N','Success'),(2249,0,0,'gen005','Vishal','2025-11-17 15:50:21','2025-11-17 18:32:07','','N','Success'),(2250,0,0,'gen005','Vishal','2025-11-17 16:00:53','2025-11-17 18:32:07','','N','Success'),(2251,0,0,'gen005','Reception','2025-11-17 16:39:21','2025-11-17 20:35:02','','N','Success'),(2252,0,0,'GEN005','shweta','2025-11-17 16:40:20','2025-11-17 22:34:47','','N','Success'),(2253,0,0,'gen005','janvi','2025-11-17 16:48:35','2025-11-17 19:12:58','','N','Success'),(2254,0,0,'GEN005','drashti','2025-11-17 16:56:37','2025-11-17 18:36:25','','N','Success'),(2255,0,0,'gen005','darshan','2025-11-17 17:13:41','2025-12-17 19:03:58','','N','Success'),(2256,0,0,'gen005','Manshi','2025-11-17 17:15:46','2025-11-18 19:22:39','','N','Success'),(2257,0,0,'GEN005','Mo','2025-11-17 17:31:30','2025-11-19 09:55:35','','N','Success'),(2258,0,0,'gen005','Vishal','2025-11-17 17:54:08','2025-11-17 18:32:07','','N','Success'),(2259,0,0,'gen005','janvi','2025-11-17 18:23:51','2025-11-17 19:12:58','','N','Success'),(2260,0,0,'gen005','Vishal','2025-11-17 18:32:10','2025-11-19 18:09:20','','N','Success'),(2261,0,0,'gen005','drashti','2025-11-17 18:40:32','2025-11-17 19:19:53','','N','Success'),(2262,0,0,'gen005','Vishal','2025-11-17 18:46:40','2025-11-19 18:09:20','','N','Success'),(2263,0,0,'GEN005','Mo','2025-11-17 19:09:24','2025-11-19 09:55:35','','N','Success'),(2264,0,0,'gen005','drashti','2025-11-17 19:24:55','2025-11-18 18:20:09','','N','Success'),(2265,0,0,'gen005','Vishal','2025-11-17 19:43:31','2025-11-19 18:09:20','','N','Success'),(2266,0,0,'gen005','janvi','2025-11-17 19:45:50','2025-11-18 19:47:04','','N','Success'),(2267,0,0,'gen005','janvi','2025-11-17 19:45:56','2025-11-18 19:47:04','','N','Success'),(2268,0,0,'gen005','Urvashi','2025-11-17 19:58:58','2025-11-19 14:47:34','','N','Success'),(2269,0,0,'gen005','Vishal','2025-11-17 20:11:49','2025-11-19 18:09:20','','N','Success'),(2270,0,0,'GEN005','Mo','2025-11-17 20:40:24','2025-11-19 09:55:35','','N','Success'),(2271,0,0,'GEN005','Mo','2025-11-17 21:12:15','2025-11-19 09:55:35','','N','Success'),(2272,0,0,'GEN005','shweta','2025-11-17 22:33:46','2025-11-17 22:34:47','','N','Success'),(2273,0,0,'GEN005','Mo','2025-11-17 22:34:52','2025-11-19 09:55:35','','N','Success'),(2274,0,0,'GEN005','Mo','2025-11-17 23:27:39','2025-11-19 09:55:35','','N','Success'),(2275,0,0,'gen005','Reception','2025-11-18 08:46:36','2025-11-19 14:35:22','','N','Success'),(2276,0,0,'GEN005','Mo','2025-11-18 08:48:16','2025-11-19 09:55:35','','N','Success'),(2277,0,0,'gen005','janvi','2025-11-18 09:13:20','2025-11-18 19:47:04','','N','Success'),(2278,0,0,'gen005','drashti','2025-11-18 09:21:35','2025-11-18 18:20:09','','N','Success'),(2279,0,0,'gen005','Dharmishth','2025-11-18 09:27:30','0000-00-00 00:00:00','','Y','Success'),(2280,0,0,'gen005','riya','2025-11-18 09:34:12','2025-11-18 09:54:12','','N','Success'),(2281,0,0,'gen005','janvi','2025-11-18 09:39:52','2025-11-18 19:47:04','','N','Success'),(2282,0,0,'GEN005','Riya','2025-11-18 09:45:15','2025-11-18 09:54:12','','N','Success'),(2283,0,0,'gen005','Manshi','2025-11-18 10:12:32','2025-11-18 19:22:39','','N','Success'),(2284,0,0,'GEN005','Mo','2025-11-18 10:20:23','2025-11-19 09:55:35','','N','Success'),(2285,0,0,'gen005','Mo','2025-11-18 10:21:16','2025-11-19 09:55:35','','N','Success'),(2286,0,0,'gen005','thims','2025-11-18 10:25:52','2025-11-20 13:03:31','','N','Success'),(2287,0,0,'gen005','darshan','2025-11-18 10:44:36','2025-12-17 19:03:58','','N','Success'),(2288,0,0,'gen005','Dharmishth','2025-11-18 10:57:10','0000-00-00 00:00:00','','Y','Success'),(2289,0,0,'gen005','Dharmishth','2025-11-18 10:58:56','0000-00-00 00:00:00','','Y','Success'),(2290,0,0,'GEN005','Drridham','2025-11-18 11:08:05','2025-12-02 13:37:44','','N','Success'),(2291,0,0,'gen005','Manshi','2025-11-18 11:25:05','2025-11-18 19:22:39','','N','Success'),(2292,0,0,'GEN005','drashti','2025-11-18 11:48:45','2025-11-18 18:20:09','','N','Success'),(2293,0,0,'gen005','Mo','2025-11-18 11:49:40','2025-11-19 09:55:35','','N','Success'),(2294,0,0,'GEN005','drashti','2025-11-18 12:45:49','2025-11-18 18:20:09','','N','Success'),(2295,0,0,'GEN005','priyanshi','2025-11-18 15:09:55','2025-11-20 16:48:47','','N','Success'),(2296,0,0,'gen005','Reception','2025-11-18 15:38:20','2025-11-19 14:35:22','','N','Success'),(2297,0,0,'GEN005','drashti','2025-11-18 16:42:43','2025-11-18 18:20:09','','N','Success'),(2298,0,0,'gen005','thims','2025-11-18 16:47:01','2025-11-20 13:03:31','','N','Success'),(2299,0,0,'gen005','thims','2025-11-18 16:52:06','2025-11-20 13:03:31','','N','Success'),(2300,0,0,'gen005','Vishal','2025-11-18 17:00:42','2025-11-19 18:09:20','','N','Success'),(2301,0,0,'gen005','darshan','2025-11-18 17:05:47','2025-12-17 19:03:58','','N','Success'),(2302,0,0,'gen005','Manshi','2025-11-18 17:10:09','2025-11-18 19:22:39','','N','Success'),(2303,0,0,'gen005','janvi','2025-11-18 17:12:36','2025-11-18 19:47:04','','N','Success'),(2304,0,0,'gen005','Vishal','2025-11-18 17:25:00','2025-11-19 18:09:20','','N','Success'),(2305,0,0,'gen005','Vishal','2025-11-18 18:06:46','2025-11-19 18:09:20','','N','Success'),(2306,0,0,'GEN005','drashti','2025-11-18 18:44:21','2025-11-19 20:32:34','','N','Success'),(2307,0,0,'gen005','Vishal','2025-11-18 19:14:30','2025-11-19 18:09:20','','N','Success'),(2308,0,0,'gen005','Dharmishth','2025-11-18 19:37:38','0000-00-00 00:00:00','','Y','Success'),(2309,0,0,'gen005','Manshi','2025-11-18 19:45:40','2025-11-18 19:52:19','','N','Success'),(2310,0,0,'gen005','Manshi','2025-11-18 19:45:42','2025-11-18 19:52:19','','N','Success'),(2311,0,0,'GEN005','Drridham','2025-11-18 19:49:39','2025-12-02 13:37:44','','N','Success'),(2312,0,0,'gen005','janvi','2025-11-18 19:50:38','2025-11-19 16:48:47','','N','Success'),(2313,0,0,'GEN005','drashti','2025-11-18 19:55:17','2025-11-19 20:32:34','','N','Success'),(2314,0,0,'gen005','Vishal','2025-11-18 21:53:33','2025-11-19 18:09:20','','N','Success'),(2315,0,0,'gen005','Mo','2025-11-18 22:31:24','2025-11-19 09:55:35','','N','Success'),(2316,0,0,'gen005','Vishal','2025-11-18 23:04:42','2025-11-19 18:09:20','','N','Success'),(2317,0,0,'gen005','Riya','2025-11-18 23:10:44','2025-11-19 09:58:10','','N','Success'),(2318,0,0,'gen005','Mo','2025-11-19 00:07:03','2025-11-19 09:55:35','','N','Success'),(2319,0,0,'gen005','Reception','2025-11-19 08:45:09','2025-11-19 14:35:22','','N','Success'),(2320,0,0,'GEN005','Mo','2025-11-19 08:58:46','2025-11-19 09:55:35','','N','Success'),(2321,0,0,'gen005','riya','2025-11-19 09:10:53','2025-11-19 09:58:10','','N','Success'),(2322,0,0,'gen005','janvi','2025-11-19 09:17:11','2025-11-19 16:48:47','','N','Success'),(2323,0,0,'gen005','Dharmishth','2025-11-19 09:36:04','0000-00-00 00:00:00','','Y','Success'),(2324,0,0,'gen005','Urvashi','2025-11-19 09:54:06','2025-11-19 14:47:34','','N','Success'),(2325,0,0,'GEN005','Riya','2025-11-19 09:55:43','2025-11-19 09:58:10','','N','Success'),(2326,0,0,'gen005','Manshi','2025-11-19 10:14:50','2025-11-19 11:45:24','','N','Success'),(2327,0,0,'GEN005','Riya','2025-11-19 10:34:22','2025-11-19 10:55:05','','N','Success'),(2328,0,0,'gen005','darshan','2025-11-19 10:39:56','2025-12-17 19:03:58','','N','Success'),(2329,0,0,'GEN005','Mo','2025-11-19 10:55:12','2025-11-19 11:10:07','','N','Success'),(2330,0,0,'GEN005','Riya','2025-11-19 11:10:14','2025-11-19 11:50:03','','N','Success'),(2331,0,0,'gen005','drarchit','2025-11-19 11:24:53','2025-11-20 20:07:24','','N','Success'),(2332,0,0,'gen005','thims','2025-11-19 11:31:47','2025-11-20 13:03:31','','N','Success'),(2333,0,0,'GEN005','Mo','2025-11-19 11:47:19','2025-11-19 11:47:55','','N','Success'),(2334,0,0,'GEN005','Riya','2025-11-19 11:48:02','2025-11-19 11:50:03','','N','Success'),(2335,0,0,'GEN005','Mo','2025-11-19 11:50:10','2025-11-19 12:45:54','','N','Success'),(2336,0,0,'gen005','Manshi','2025-11-19 11:53:06','2025-11-20 12:44:21','','N','Success'),(2337,0,0,'gen005','Manshi','2025-11-19 12:09:35','2025-11-20 12:44:21','','N','Success'),(2338,0,0,'GEN005','Riya','2025-11-19 12:46:06','2025-11-19 13:55:32','','N','Success'),(2339,0,0,'gen005','riya','2025-11-19 14:01:33','2025-11-19 20:32:57','','N','Success'),(2340,0,0,'GEN005','Mo','2025-11-19 14:11:19','2025-11-20 15:10:08','','N','Success'),(2341,0,0,'gen005','shweta','2025-11-19 14:47:40','2025-11-19 17:31:06','','N','Success'),(2342,0,0,'gen005','Reception','2025-11-19 15:38:39','2025-11-20 14:29:46','','N','Success'),(2343,0,0,'gen005','janvi','2025-11-19 16:37:37','2025-11-19 16:48:47','','N','Success'),(2344,0,0,'gen005','drashti','2025-11-19 16:48:27','2025-11-19 20:32:34','','N','Success'),(2345,0,0,'gen005','Shweta','2025-11-19 16:48:52','2025-11-19 17:31:06','','N','Success'),(2346,0,0,'gen005','Vishal','2025-11-19 16:54:44','2025-11-19 18:09:20','','N','Success'),(2347,0,0,'gen005','darshan','2025-11-19 17:01:06','2025-12-17 19:03:58','','N','Success'),(2348,0,0,'gen005','Manshi','2025-11-19 17:21:28','2025-11-20 12:44:21','','N','Success'),(2349,0,0,'gen005','Urvashi','2025-11-19 17:32:01','2025-11-20 12:46:44','','N','Success'),(2350,0,0,'gen005','Vishal','2025-11-19 17:41:07','2025-11-19 18:09:20','','N','Success'),(2351,0,0,'GEN005','Drsagar','2025-11-19 18:09:18','0000-00-00 00:00:00','','Y','Success'),(2352,0,0,'gen005','Vishal','2025-11-19 18:09:24','2025-11-19 18:35:32','','N','Success'),(2353,0,0,'GEN005','Mo','2025-11-19 18:15:36','2025-11-20 15:10:08','','N','Success'),(2354,0,0,'GEN005','drarchit','2025-11-19 18:19:28','2025-11-20 20:07:24','','N','Success'),(2355,0,0,'GEN005','Vishal','2025-11-19 18:34:02','2025-11-19 18:35:32','','N','Success'),(2356,0,0,'GEN005','Mo','2025-11-19 18:37:11','2025-11-20 15:10:08','','N','Success'),(2357,0,0,'GEN005','Mo','2025-11-19 19:41:44','2025-11-20 15:10:08','','N','Success'),(2358,0,0,'GEN005','Drridham','2025-11-19 20:15:37','2025-12-02 13:37:44','','N','Success'),(2359,0,0,'gen005','Riya','2025-11-19 20:32:43','2025-11-19 20:32:57','','N','Success'),(2360,0,0,'gen005','VISHAL','2025-11-19 20:33:05','2025-11-20 17:36:07','','N','Success'),(2361,0,0,'gen005','priyanshi','2025-11-19 20:38:16','2025-11-20 16:48:47','','N','Success'),(2362,0,0,'gen005','Vishal','2025-11-19 20:50:01','2025-11-20 17:36:07','','N','Success'),(2363,0,0,'GEN005','Mo','2025-11-19 21:35:23','2025-11-20 15:10:08','','N','Success'),(2364,0,0,'GEN005','Vishal','2025-11-19 21:58:20','2025-11-20 17:36:07','','N','Success'),(2365,0,0,'GEN005','Mo','2025-11-19 22:25:17','2025-11-20 15:10:08','','N','Success'),(2366,0,0,'GEN005','Mo','2025-11-19 23:10:49','2025-11-20 15:10:08','','N','Success'),(2367,0,0,'gen005','Reception','2025-11-20 08:44:48','2025-11-20 14:29:46','','N','Success'),(2368,0,0,'gen005','janvi','2025-11-20 09:24:54','2025-11-21 14:01:25','','N','Success'),(2369,0,0,'gen005','drashti','2025-11-20 09:25:03','2025-11-20 12:43:45','','N','Success'),(2370,0,0,'gen005','riya','2025-11-20 09:25:37','2025-11-20 12:47:59','','N','Success'),(2371,0,0,'gen005','Manshi','2025-11-20 10:06:25','2025-11-20 12:44:21','','N','Success'),(2372,0,0,'GEN005','VISHAL','2025-11-20 10:08:56','2025-11-20 17:36:07','','N','Success'),(2373,0,0,'gen005','Dharmishth','2025-11-20 10:31:37','0000-00-00 00:00:00','','Y','Success'),(2374,0,0,'GEN005','Mo','2025-11-20 10:39:58','2025-11-20 15:10:08','','N','Success'),(2375,0,0,'gen005','darshan','2025-11-20 10:41:44','2025-12-17 19:03:58','','N','Success'),(2376,0,0,'GEN005','drarchit','2025-11-20 11:08:57','2025-11-20 20:07:24','','N','Success'),(2377,0,0,'GEN005','Drsagar','2025-11-20 11:28:15','0000-00-00 00:00:00','','Y','Success'),(2378,0,0,'gen005','Dharmishth','2025-11-20 12:06:37','0000-00-00 00:00:00','','Y','Success'),(2379,0,0,'GEN005','Drridham','2025-11-20 12:10:40','2025-12-02 13:37:44','','N','Success'),(2380,0,0,'gen005','Dharmishth','2025-11-20 12:35:50','0000-00-00 00:00:00','','Y','Success'),(2381,0,0,'gen005','mo','2025-11-20 12:38:46','2025-11-20 12:38:46','','N','Failure'),(2382,0,0,'gen005','mo','2025-11-20 12:38:49','2025-11-20 12:38:49','','N','Failure'),(2383,0,0,'gen005','Mo','2025-11-20 12:39:12','2025-11-20 15:10:08','','N','Success'),(2384,0,0,'gen005','thims','2025-11-20 12:42:52','2025-11-20 13:03:31','','N','Success'),(2385,0,0,'gen005','Urvashi','2025-11-20 12:43:51','2025-11-20 12:46:44','','N','Success'),(2386,0,0,'GEN005','Riya','2025-11-20 12:44:28','2025-11-20 12:47:59','','N','Success'),(2387,0,0,'gen005','Riya','2025-11-20 12:46:49','2025-11-20 12:47:59','','N','Success'),(2388,0,0,'gen005','Urvashi','2025-11-20 12:48:06','2025-11-20 14:01:38','','N','Success'),(2389,0,0,'GEN005','Riya','2025-11-20 13:29:29','2025-11-20 13:39:30','','N','Success'),(2390,0,0,'gen005','mo','2025-11-20 13:50:29','2025-11-20 15:10:08','','N','Success'),(2391,0,0,'gen005','riya','2025-11-20 13:56:25','2025-11-20 15:12:43','','N','Success'),(2392,0,0,'gen005','drashti','2025-11-20 14:02:02','2025-11-20 14:02:40','','N','Success'),(2393,0,0,'gen005','priyanshi','2025-11-20 14:02:46','2025-11-20 16:48:47','','N','Success'),(2394,0,0,'GEN005','Mo','2025-11-20 14:54:57','2025-11-20 15:10:08','','N','Success'),(2395,0,0,'gen005','drarchit','2025-11-20 14:59:13','2025-11-20 20:07:24','','N','Success'),(2396,0,0,'GEN005','Riya','2025-11-20 15:10:14','2025-11-20 15:12:43','','N','Success'),(2397,0,0,'GEN005','Mo','2025-11-20 15:15:19','2025-11-20 17:02:58','','N','Success'),(2398,0,0,'gen005','priyanshi','2025-11-20 16:06:39','2025-11-20 16:48:47','','N','Success'),(2399,0,0,'gen005','priyanshi','2025-11-20 16:30:31','2025-11-20 16:48:47','','N','Success'),(2400,0,0,'GEN005','Mo','2025-11-20 16:31:08','2025-11-20 17:02:58','','N','Success'),(2401,0,0,'gen005','mo','2025-11-20 16:42:38','2025-11-20 17:02:58','','N','Success'),(2402,0,0,'gen005','riya','2025-11-20 16:46:14','2025-11-20 16:49:10','','N','Success'),(2403,0,0,'gen005','priyanshi','2025-11-20 16:46:39','2025-11-20 16:48:47','','N','Success'),(2404,0,0,'gen005','drashti','2025-11-20 16:48:55','2025-11-20 17:10:41','','N','Success'),(2405,0,0,'gen005','Vishal','2025-11-20 16:49:28','2025-11-20 17:36:07','','N','Success'),(2406,0,0,'gen005','Reception','2025-11-20 16:50:53','2025-11-24 09:17:03','','N','Success'),(2407,0,0,'gen005','VISHAL','2025-11-20 17:03:04','2025-11-20 17:36:07','','N','Success'),(2408,0,0,'GEN005','drashti','2025-11-20 17:10:49','2025-11-20 18:42:05','','N','Success'),(2409,0,0,'GEN005','drashti','2025-11-20 17:11:48','2025-11-20 18:42:05','','N','Success'),(2410,0,0,'gen005','janvi','2025-11-20 17:12:39','2025-11-21 14:01:25','','N','Success'),(2411,0,0,'gen005','VISHAL','2025-11-20 17:12:51','2025-11-20 17:36:07','','N','Success'),(2412,0,0,'gen005','Manshi','2025-11-20 17:15:13','2025-11-21 13:34:21','','N','Success'),(2413,0,0,'gen005','darshan','2025-11-20 17:18:49','2025-12-17 19:03:58','','N','Success'),(2414,0,0,'GEN005','Vishal','2025-11-20 17:36:17','2025-11-20 17:37:10','','N','Success'),(2415,0,0,'gen005','Vishal','2025-11-20 17:41:28','2025-11-21 13:30:14','','N','Success'),(2416,0,0,'gen005','Vishal','2025-11-20 17:42:34','2025-11-21 13:30:14','','N','Success'),(2417,0,0,'GEN005','Mo','2025-11-20 17:59:30','2025-11-24 20:29:42','','N','Success'),(2418,0,0,'gen005','Manshi','2025-11-20 18:14:38','2025-11-21 13:34:21','','N','Success'),(2419,0,0,'GEN005','drarchit','2025-11-20 18:17:55','2025-11-20 20:07:24','','N','Success'),(2420,0,0,'GEN005','drashti','2025-11-20 18:42:34','2025-11-20 20:24:32','','N','Success'),(2421,0,0,'gen005','Mo','2025-11-20 18:45:26','2025-11-24 20:29:42','','N','Success'),(2422,0,0,'gen005','mo','2025-11-20 19:44:02','2025-11-20 19:44:02','','N','Failure'),(2423,0,0,'gen005','mo','2025-11-20 19:44:26','2025-11-24 20:29:42','','N','Success'),(2424,0,0,'GEN005','drarchit','2025-11-20 20:08:46','2025-11-21 19:40:56','','N','Success'),(2425,0,0,'GEN005','drashti','2025-11-20 20:25:40','2025-11-22 14:01:44','','N','Success'),(2426,0,0,'gen005','Mo','2025-11-20 22:37:14','2025-11-24 20:29:42','','N','Success'),(2427,0,0,'gen005','Vishal','2025-11-20 22:56:29','2025-11-21 13:30:14','','N','Success'),(2428,0,0,'gen005','Mo','2025-11-20 23:11:18','2025-11-24 20:29:42','','N','Success'),(2429,0,0,'gen005','URVASHI','2025-11-21 08:48:52','2025-11-21 08:48:52','','N','Failure'),(2430,0,0,'gen005','URVASHI','2025-11-21 08:49:10','2025-11-21 08:49:10','','N','Failure'),(2431,0,0,'gen005','URVASHI','2025-11-21 08:49:16','2025-11-21 08:49:16','','N','Failure'),(2432,0,0,'gen005','URVASHI','2025-11-21 08:49:17','2025-11-21 08:49:17','','N','Failure'),(2433,0,0,'gen005','URVASHI','2025-11-21 08:49:23','2025-11-21 08:49:23','','N','Failure'),(2434,0,0,'GEN005','URVASHI','2025-11-21 08:50:59','2025-11-21 08:50:59','','N','Failure'),(2435,0,0,'GEN005','URVASHI','2025-11-21 08:51:00','2025-11-21 08:51:00','','N','Failure'),(2436,0,0,'GEN005','URVASHI','2025-11-21 08:51:01','2025-11-21 08:51:01','','N','Failure'),(2437,0,0,'GEN005','URVASHI','2025-11-21 08:51:02','2025-11-21 08:51:02','','N','Failure'),(2438,0,0,'GEN005','URVASHI','2025-11-21 08:51:02','2025-11-21 08:51:02','','N','Failure'),(2439,0,0,'GEN005','URVASHI','2025-11-21 08:51:03','2025-11-21 08:51:03','','N','Failure'),(2440,0,0,'GEN005','URVASHI','2025-11-21 08:51:03','2025-11-21 08:51:03','','N','Failure'),(2441,0,0,'GEN005','URVASHI','2025-11-21 08:51:04','2025-11-21 08:51:04','','N','Failure'),(2442,0,0,'GEN005','URVASHI','2025-11-21 08:51:04','2025-11-21 08:51:04','','N','Failure'),(2443,0,0,'gen005','URVASHI','2025-11-21 08:51:26','2025-11-21 08:51:26','','N','Failure'),(2444,0,0,'gen005','URVASHI','2025-11-21 08:51:27','2025-11-21 08:51:27','','N','Failure'),(2445,0,0,'gen005','URVASHI','2025-11-21 08:51:28','2025-11-21 08:51:28','','N','Failure'),(2446,0,0,'gen005','URVASHI','2025-11-21 08:51:29','2025-11-21 08:51:29','','N','Failure'),(2447,0,0,'gen005','URVASHI','2025-11-21 08:51:29','2025-11-21 08:51:29','','N','Failure'),(2448,0,0,'gen005','URVASHI','2025-11-21 08:51:29','2025-11-21 08:51:29','','N','Failure'),(2449,0,0,'gen005','URVASHI','2025-11-21 08:51:30','2025-11-21 08:51:30','','N','Failure'),(2450,0,0,'gen005','URVASHI','2025-11-21 08:51:30','2025-11-21 08:51:30','','N','Failure'),(2451,0,0,'gen005','URVASHI','2025-11-21 08:51:31','2025-11-21 08:51:31','','N','Failure'),(2452,0,0,'gen005','urvashi','2025-11-21 08:52:28','2025-11-21 08:52:28','','N','Failure'),(2453,0,0,'gen005','urvashi','2025-11-21 08:52:29','2025-11-21 08:52:29','','N','Failure'),(2454,0,0,'gen005','urvashi','2025-11-21 08:52:30','2025-11-21 08:52:30','','N','Failure'),(2455,0,0,'gen005','urvashi','2025-11-21 08:52:41','2025-11-21 08:52:41','','N','Failure'),(2456,0,0,'gen005','Urvashi','2025-11-21 08:52:54','2025-11-22 14:20:32','','N','Success'),(2457,0,0,'GEN005','priyanshi','2025-11-21 08:55:06','2025-11-21 09:40:52','','N','Success'),(2458,0,0,'gen005','Vishal','2025-11-21 09:12:04','2025-11-21 13:30:14','','N','Success'),(2459,0,0,'gen005','janvi','2025-11-21 09:12:11','2025-11-21 14:01:25','','N','Success'),(2460,0,0,'gen005','Vishal','2025-11-21 09:18:13','2025-11-21 13:30:14','','N','Success'),(2461,0,0,'GEN005','drashti','2025-11-21 09:41:01','2025-11-22 14:01:44','','N','Success'),(2462,0,0,'gen005','Mo','2025-11-21 10:17:55','2025-11-24 20:29:42','','N','Success'),(2463,0,0,'gen005','Dharmishth','2025-11-21 10:17:57','0000-00-00 00:00:00','','Y','Success'),(2464,0,0,'gen005','Manshi','2025-11-21 10:25:16','2025-11-21 13:34:21','','N','Success'),(2465,0,0,'gen005','Vishal','2025-11-21 10:26:50','2025-11-21 13:30:14','','N','Success'),(2466,0,0,'gen005','darshan','2025-11-21 10:49:08','2025-12-17 19:03:58','','N','Success'),(2467,0,0,'GEN005','drarchit','2025-11-21 11:22:25','2025-11-21 19:40:56','','N','Success'),(2468,0,0,'gen005','Manshi','2025-11-21 11:24:03','2025-11-21 13:34:21','','N','Success'),(2469,0,0,'GEN005','Mo','2025-11-21 12:02:27','2025-11-24 20:29:42','','N','Success'),(2470,0,0,'GEN005','Mo','2025-11-21 12:15:06','2025-11-24 20:29:42','','N','Success'),(2471,0,0,'GEN005','Drsagar','2025-11-21 12:45:04','0000-00-00 00:00:00','','Y','Success'),(2472,0,0,'gen005','Vishal','2025-11-21 13:21:29','2025-11-21 13:30:14','','N','Success'),(2473,0,0,'gen005','Manshi','2025-11-21 13:35:15','2025-11-21 18:41:53','','N','Success'),(2474,0,0,'gen005','Manshi','2025-11-21 13:38:59','2025-11-21 18:41:53','','N','Success'),(2475,0,0,'gen005','janvi','2025-11-21 14:08:52','2025-11-22 10:15:50','','N','Success'),(2476,0,0,'GEN005','priyanshi','2025-11-21 14:10:36','2025-11-21 14:10:45','','N','Success'),(2477,0,0,'GEN005','shweta','2025-11-21 14:10:52','2025-11-21 14:34:00','','N','Success'),(2478,0,0,'gen005','Vishal','2025-11-21 14:27:05','2025-11-25 10:31:15','','N','Success'),(2479,0,0,'GEN005','priyanshi','2025-11-21 14:34:07','2025-11-21 16:56:04','','N','Success'),(2480,0,0,'gen005','Vishal','2025-11-21 14:38:09','2025-11-25 10:31:15','','N','Success'),(2481,0,0,'GEN005','VISHAL','2025-11-21 15:41:58','2025-11-25 10:31:15','','N','Success'),(2482,0,0,'GEN005','VISHAL','2025-11-21 16:02:25','2025-11-25 10:31:15','','N','Success'),(2483,0,0,'GEN005','Mo','2025-11-21 16:17:01','2025-11-24 20:29:42','','N','Success'),(2484,0,0,'gen005','Urvashi','2025-11-21 16:32:16','2025-11-22 14:20:32','','N','Success'),(2485,0,0,'gen005','priyanshi','2025-11-21 16:32:20','2025-11-21 16:56:04','','N','Success'),(2486,0,0,'gen005','janvi','2025-11-21 16:50:06','2025-11-22 10:15:50','','N','Success'),(2487,0,0,'gen005','drashti','2025-11-21 16:56:12','2025-11-22 14:01:44','','N','Success'),(2488,0,0,'gen005','Manshi','2025-11-21 16:59:30','2025-11-21 18:41:53','','N','Success'),(2489,0,0,'gen005','janvi','2025-11-21 17:07:16','2025-11-22 10:15:50','','N','Success'),(2490,0,0,'gen005','Vishal','2025-11-21 17:09:25','2025-11-25 10:31:15','','N','Success'),(2491,0,0,'gen005','darshan','2025-11-21 17:16:04','2025-12-17 19:03:58','','N','Success'),(2492,0,0,'GEN005','drarchit','2025-11-21 18:01:32','2025-11-21 19:40:56','','N','Success'),(2493,0,0,'GEN005','Drsagar','2025-11-21 18:05:07','0000-00-00 00:00:00','','Y','Success'),(2494,0,0,'GEN005','Mo','2025-11-21 18:25:18','2025-11-24 20:29:42','','N','Success'),(2495,0,0,'gen005','Vishal','2025-11-21 18:31:52','2025-11-25 10:31:15','','N','Success'),(2496,0,0,'gen005','Manshi','2025-11-21 18:53:22','2025-11-25 11:48:09','','N','Success'),(2497,0,0,'gen005','Manshi','2025-11-21 19:02:25','2025-11-25 11:48:09','','N','Success'),(2498,0,0,'GEN005','Drsagar','2025-11-21 19:06:12','0000-00-00 00:00:00','','Y','Success'),(2499,0,0,'GEN005','drarchit','2025-11-21 19:42:44','2025-11-21 20:15:38','','N','Success'),(2500,0,0,'GEN005','drashti','2025-11-21 19:43:05','2025-11-22 14:01:44','','N','Success'),(2501,0,0,'gen005','Mo','2025-11-21 19:46:25','2025-11-24 20:29:42','','N','Success'),(2502,0,0,'GEN005','Mo','2025-11-21 20:09:14','2025-11-24 20:29:42','','N','Success'),(2503,0,0,'GEN005','drarchit','2025-11-21 20:22:02','2025-11-24 12:58:48','','N','Success'),(2504,0,0,'GEN005','drarchit','2025-11-21 20:27:43','2025-11-24 12:58:48','','N','Success'),(2505,0,0,'GEN005','drarchit','2025-11-21 20:47:02','2025-11-24 12:58:48','','N','Success'),(2506,0,0,'gen005','Mo','2025-11-21 21:25:29','2025-11-24 20:29:42','','N','Success'),(2507,0,0,'GEN005','Manshi','2025-11-21 21:44:55','2025-11-25 11:48:09','','N','Success'),(2508,0,0,'gen005','Mo','2025-11-21 21:49:24','2025-11-24 20:29:42','','N','Success'),(2509,0,0,'gen005','Mo','2025-11-22 00:32:06','2025-11-24 20:29:42','','N','Success'),(2510,0,0,'gen005','Mo','2025-11-22 00:33:57','2025-11-24 20:29:42','','N','Success'),(2511,0,0,'GEN005','priyanshi','2025-11-22 09:03:06','2025-11-22 09:16:46','','N','Success'),(2512,0,0,'gen005','priyanshi','2025-11-22 09:05:18','2025-11-22 09:16:46','','N','Success'),(2513,0,0,'GEN005','drashti','2025-11-22 09:17:04','2025-11-22 14:01:44','','N','Success'),(2514,0,0,'gen005','janvi','2025-11-22 09:29:52','2025-11-22 10:15:50','','N','Success'),(2515,0,0,'gen005','riya','2025-11-22 09:39:44','2025-11-22 16:44:40','','N','Success'),(2516,0,0,'gen005','Janvi','2025-11-22 10:00:03','2025-11-22 10:15:50','','N','Success'),(2517,0,0,'gen005','Urvashi','2025-11-22 10:15:56','2025-11-22 14:20:32','','N','Success'),(2518,0,0,'gen005','darshan','2025-11-22 10:38:26','2025-12-17 19:03:58','','N','Success'),(2519,0,0,'GEN005','drarchit','2025-11-22 11:10:01','2025-11-24 12:58:48','','N','Success'),(2520,0,0,'gen005','Mo','2025-11-22 11:17:52','2025-11-24 20:29:42','','N','Success'),(2521,0,0,'gen005','riya','2025-11-22 11:39:40','2025-11-22 16:44:40','','N','Success'),(2522,0,0,'gen005','Mo','2025-11-22 11:59:27','2025-11-24 20:29:42','','N','Success'),(2523,0,0,'gen005','VISHAL','2025-11-22 12:00:23','2025-11-25 10:31:15','','N','Success'),(2524,0,0,'GEN005','Janvi','2025-11-22 12:03:01','2025-11-25 20:37:37','','N','Success'),(2525,0,0,'GEN005','Drsagar','2025-11-22 12:03:55','0000-00-00 00:00:00','','Y','Success'),(2526,0,0,'GEN005','Janvi','2025-11-22 12:04:12','2025-11-25 20:37:37','','N','Success'),(2527,0,0,'GEN005','Janvi','2025-11-22 12:13:13','2025-11-25 20:37:37','','N','Success'),(2528,0,0,'gen005','Mo','2025-11-22 12:18:22','2025-11-24 20:29:42','','N','Success'),(2529,0,0,'GEN005','priyanshi','2025-11-22 14:08:26','2025-11-25 09:20:12','','N','Success'),(2530,0,0,'gen005','riya','2025-11-22 14:34:54','2025-11-22 16:44:40','','N','Success'),(2531,0,0,'GEN005','Mo','2025-11-22 14:39:19','2025-11-24 20:29:42','','N','Success'),(2532,0,0,'gen005','Dharmishth','2025-11-22 14:48:03','0000-00-00 00:00:00','','Y','Success'),(2533,0,0,'gen005','mo','2025-11-22 15:01:59','2025-11-24 20:29:42','','N','Success'),(2534,0,0,'gen005','riya','2025-11-22 15:12:04','2025-11-22 16:44:40','','N','Success'),(2535,0,0,'GEN005','Riya','2025-11-22 16:03:14','2025-11-22 16:44:40','','N','Success'),(2536,0,0,'gen005','Dharmishth','2025-11-22 16:37:01','0000-00-00 00:00:00','','Y','Success'),(2537,0,0,'GEN005','Mo','2025-11-22 16:48:34','2025-11-24 20:29:42','','N','Success'),(2538,0,0,'gen005','Urvashi','2025-11-22 17:15:40','2025-11-26 09:20:23','','N','Success'),(2539,0,0,'gen005','riya','2025-11-22 17:19:48','2025-11-23 13:49:05','','N','Success'),(2540,0,0,'gen005','Janvi','2025-11-22 17:24:16','2025-11-25 20:37:37','','N','Success'),(2541,0,0,'gen005','Mo','2025-11-22 17:57:38','2025-11-24 20:29:42','','N','Success'),(2542,0,0,'GEN005','Janvi','2025-11-22 18:23:59','2025-11-25 20:37:37','','N','Success'),(2543,0,0,'GEN005','Drsagar','2025-11-22 19:28:39','0000-00-00 00:00:00','','Y','Success'),(2544,0,0,'gen005','Janvi','2025-11-22 19:47:27','2025-11-25 20:37:37','','N','Success'),(2545,0,0,'gen005','riya','2025-11-22 20:46:59','2025-11-23 13:49:05','','N','Success'),(2546,0,0,'GEN005','Mo','2025-11-22 23:51:33','2025-11-24 20:29:42','','N','Success'),(2547,0,0,'gen005','drashti','2025-11-23 08:57:20','2025-11-24 15:16:59','','N','Success'),(2548,0,0,'gen005','riya','2025-11-23 09:53:10','2025-11-23 13:49:05','','N','Success'),(2549,0,0,'gen005','drashti','2025-11-23 09:58:12','2025-11-24 15:16:59','','N','Success'),(2550,0,0,'GEN005','drarchit','2025-11-23 10:42:19','2025-11-24 12:58:48','','N','Success'),(2551,0,0,'GEN005','Mo','2025-11-23 12:35:20','2025-11-24 20:29:42','','N','Success'),(2552,0,0,'gen005','riya','2025-11-23 13:51:05','2025-11-23 17:36:16','','N','Success'),(2553,0,0,'GEN005','Mo','2025-11-23 14:00:32','2025-11-24 20:29:42','','N','Success'),(2554,0,0,'GEN005','Mo','2025-11-23 14:00:35','2025-11-24 20:29:42','','N','Success'),(2555,0,0,'GEN005','Mo','2025-11-23 14:23:17','2025-11-24 20:29:42','','N','Success'),(2556,0,0,'gen005','riya','2025-11-23 15:19:38','2025-11-23 17:36:16','','N','Success'),(2557,0,0,'GEN005','Mo','2025-11-23 15:41:27','2025-11-24 20:29:42','','N','Success'),(2558,0,0,'GEN005','Mo','2025-11-23 15:46:27','2025-11-24 20:29:42','','N','Success'),(2559,0,0,'gen005','riya','2025-11-23 17:12:57','2025-11-23 17:36:16','','N','Success'),(2560,0,0,'GEN005','Riya','2025-11-23 17:29:12','2025-11-23 17:36:16','','N','Success'),(2561,0,0,'GEN005','Mo','2025-11-23 17:37:59','2025-11-24 20:29:42','','N','Success'),(2562,0,0,'gen005','riya','2025-11-23 17:52:07','2025-11-24 13:40:02','','N','Success'),(2563,0,0,'GEN005','Mo','2025-11-23 18:51:42','2025-11-24 20:29:42','','N','Success'),(2564,0,0,'gen005','riya','2025-11-23 20:09:58','2025-11-24 13:40:02','','N','Success'),(2565,0,0,'GEN005','Mo','2025-11-23 21:22:44','2025-11-24 20:29:42','','N','Success'),(2566,0,0,'GEN005','Mo','2025-11-24 00:49:29','2025-11-24 20:29:42','','N','Success'),(2567,0,0,'gen005','Recepption','2025-11-24 08:44:38','2025-11-24 08:44:38','','N','Failure'),(2568,0,0,'gen005','Recepption','2025-11-24 08:44:46','2025-11-24 08:44:46','','N','Failure'),(2569,0,0,'gen005','Reception','2025-11-24 08:45:04','2025-11-24 09:17:03','','N','Success'),(2570,0,0,'GEN005','riya','2025-11-24 08:47:57','2025-11-24 08:47:57','','N','Failure'),(2571,0,0,'GEN005','riya','2025-11-24 08:48:15','2025-11-24 13:40:02','','N','Success'),(2572,0,0,'gen005','janvi','2025-11-24 09:15:58','2025-11-25 20:37:37','','N','Success'),(2573,0,0,'gen005','Reception','2025-11-24 09:17:37','2025-11-24 20:25:03','','N','Success'),(2574,0,0,'gen005','Vishal','2025-11-24 09:21:35','2025-11-25 10:31:15','','N','Success'),(2575,0,0,'gen005','drashti','2025-11-24 09:22:06','2025-11-24 15:16:59','','N','Success'),(2576,0,0,'gen005','Dharmishth','2025-11-24 09:33:43','0000-00-00 00:00:00','','Y','Success'),(2577,0,0,'GEN005','riya','2025-11-24 09:43:30','2025-11-24 13:40:02','','N','Success'),(2578,0,0,'gen005','Dharmishth','2025-11-24 09:43:46','0000-00-00 00:00:00','','Y','Success'),(2579,0,0,'gen005','Manshi','2025-11-24 10:09:41','2025-11-25 11:48:09','','N','Success'),(2580,0,0,'gen005','mo','2025-11-24 10:27:27','2025-11-24 20:29:42','','N','Success'),(2581,0,0,'GEN005','Mo','2025-11-24 10:28:18','2025-11-24 20:29:42','','N','Success'),(2582,0,0,'gen005','darshan','2025-11-24 10:37:30','2025-12-17 19:03:58','','N','Success'),(2583,0,0,'GEN005','drarchit','2025-11-24 11:28:28','2025-11-24 12:58:48','','N','Success'),(2584,0,0,'GEN005','drarchit','2025-11-24 11:28:52','2025-11-24 12:58:48','','N','Success'),(2585,0,0,'GEN005','Drsagar','2025-11-24 11:40:02','0000-00-00 00:00:00','','Y','Success'),(2586,0,0,'GEN005','Mo','2025-11-24 12:23:21','2025-11-24 20:29:42','','N','Success'),(2587,0,0,'gen005','Manshi','2025-11-24 12:50:45','2025-11-25 11:48:09','','N','Success'),(2588,0,0,'GEN005','drarchit','2025-11-24 13:02:19','2025-11-24 13:32:00','','N','Success'),(2589,0,0,'GEN005','drarchit','2025-11-24 13:02:21','2025-11-24 13:32:00','','N','Success'),(2590,0,0,'GEN005','drarchit','2025-11-24 13:36:51','2025-11-24 13:42:41','','N','Success'),(2591,0,0,'GEN005','riya','2025-11-24 13:40:29','2025-11-26 18:18:55','','N','Success'),(2592,0,0,'GEN005','Drsagar','2025-11-24 13:43:41','0000-00-00 00:00:00','','Y','Success'),(2593,0,0,'GEN005','drarchit','2025-11-24 13:43:42','2025-11-24 13:54:38','','N','Success'),(2594,0,0,'GEN005','drarchit','2025-11-24 14:09:04','2025-11-25 20:45:19','','N','Success'),(2595,0,0,'GEN005','Mo','2025-11-24 14:46:10','2025-11-24 20:29:42','','N','Success'),(2596,0,0,'gen005','priyanshi','2025-11-24 15:17:05','2025-11-25 09:20:12','','N','Success'),(2597,0,0,'gen005','Reception','2025-11-24 15:44:17','2025-11-24 20:25:03','','N','Success'),(2598,0,0,'GEN005','Mo','2025-11-24 16:03:46','2025-11-24 20:29:42','','N','Success'),(2599,0,0,'GEN005','riya','2025-11-24 16:13:16','2025-11-26 18:18:55','','N','Success'),(2600,0,0,'gen005','drashti','2025-11-24 16:41:43','2025-11-25 13:21:15','','N','Success'),(2601,0,0,'gen005','drashti','2025-11-24 16:41:49','2025-11-25 13:21:15','','N','Success'),(2602,0,0,'gen005','darshan','2025-11-24 16:58:51','2025-12-17 19:03:58','','N','Success'),(2603,0,0,'gen005','janvi','2025-11-24 17:16:50','2025-11-25 20:37:37','','N','Success'),(2604,0,0,'gen005','Manshi','2025-11-24 17:18:49','2025-11-25 11:48:09','','N','Success'),(2605,0,0,'GEN005','Vishal','2025-11-24 17:40:27','2025-11-25 10:31:15','','N','Success'),(2606,0,0,'GEN005','drarchit','2025-11-24 18:01:33','2025-11-25 20:45:19','','N','Success'),(2607,0,0,'GEN005','Drsagar','2025-11-24 18:04:24','0000-00-00 00:00:00','','Y','Success'),(2608,0,0,'GEN005','Vishal','2025-11-24 18:16:11','2025-11-25 10:31:15','','N','Success'),(2609,0,0,'GEN005','Mo','2025-11-24 18:17:20','2025-11-24 20:29:42','','N','Success'),(2610,0,0,'gen005','mo','2025-11-24 18:38:57','2025-11-24 20:29:42','','N','Success'),(2611,0,0,'GEN005','Mo','2025-11-24 18:58:20','2025-11-24 20:29:42','','N','Success'),(2612,0,0,'GEN005','Mo','2025-11-24 19:29:14','2025-11-24 20:29:42','','N','Success'),(2613,0,0,'GEN005','Drridham','2025-11-24 19:31:29','2025-12-02 13:37:44','','N','Success'),(2614,0,0,'GEN005','Mo','2025-11-24 19:41:58','2025-11-24 20:29:42','','N','Success'),(2615,0,0,'gen005','Dharmishth','2025-11-24 20:52:41','0000-00-00 00:00:00','','Y','Success'),(2616,0,0,'GEN005','Mo','2025-11-24 21:01:27','2025-11-26 15:25:01','','N','Success'),(2617,0,0,'GEN005','Vishal','2025-11-24 21:15:27','2025-11-25 10:31:15','','N','Success'),(2618,0,0,'gen005','mo','2025-11-24 21:34:29','2025-11-26 15:25:01','','N','Success'),(2619,0,0,'GEN005','Mo','2025-11-24 22:12:33','2025-11-26 15:25:01','','N','Success'),(2620,0,0,'GEN005','Mo','2025-11-25 01:09:58','2025-11-26 15:25:01','','N','Success'),(2621,0,0,'gen005','Reception','2025-11-25 08:43:45','2025-11-25 20:36:14','','N','Success'),(2622,0,0,'gen005','mo','2025-11-25 08:53:42','2025-11-26 15:25:01','','N','Success'),(2623,0,0,'gen005','Vishal','2025-11-25 09:06:40','2025-11-25 10:31:15','','N','Success'),(2624,0,0,'gen005','janvi','2025-11-25 09:09:21','2025-11-25 20:37:37','','N','Success'),(2625,0,0,'gen005','priyanshi','2025-11-25 09:16:33','2025-11-25 09:20:12','','N','Success'),(2626,0,0,'gen005','drashti','2025-11-25 09:20:19','2025-11-25 13:21:15','','N','Success'),(2627,0,0,'gen005','Dharmishth','2025-11-25 09:26:05','0000-00-00 00:00:00','','Y','Success'),(2628,0,0,'gen005','Dharmishth','2025-11-25 10:04:16','0000-00-00 00:00:00','','Y','Success'),(2629,0,0,'gen005','Manshi','2025-11-25 10:11:26','2025-11-25 11:48:09','','N','Success'),(2630,0,0,'gen005','Dharmishth','2025-11-25 10:14:27','0000-00-00 00:00:00','','Y','Success'),(2631,0,0,'gen005','Vishal','2025-11-25 10:31:19','2025-11-25 16:17:40','','N','Success'),(2632,0,0,'gen005','darshan','2025-11-25 10:37:07','2025-12-17 19:03:58','','N','Success'),(2633,0,0,'gen005','admin','2025-11-25 10:38:43','2025-11-25 10:38:43','','N','Failure'),(2634,0,0,'gen005','admin','2025-11-25 10:38:51','2025-11-25 10:38:51','','N','Failure'),(2635,0,0,'gen005','Admin','2025-11-25 10:39:11','2025-11-25 10:39:11','','N','Failure'),(2636,0,0,'gen005','Admin','2025-11-25 10:39:22','2025-11-25 10:39:22','','N','Failure'),(2637,0,0,'gen005','Vishal','2025-11-25 10:40:05','2025-11-25 16:17:40','','N','Success'),(2638,0,0,'gen005','Drpratapsi','2025-11-25 11:05:21','0000-00-00 00:00:00','','Y','Success'),(2639,0,0,'gen005','Vishal','2025-11-25 11:08:02','2025-11-25 16:17:40','','N','Success'),(2640,0,0,'GEN005','drarchit','2025-11-25 11:27:47','2025-11-25 20:45:19','','N','Success'),(2641,0,0,'GEN005','Mo','2025-11-25 11:40:01','2025-11-26 15:25:01','','N','Success'),(2642,0,0,'GEN005','Mo','2025-11-25 11:48:25','2025-11-26 15:25:01','','N','Success'),(2643,0,0,'gen005','Manshi','2025-11-25 12:05:04','2025-11-25 18:48:42','','N','Success'),(2644,0,0,'gen005','Manshi','2025-11-25 12:07:35','2025-11-25 18:48:42','','N','Success'),(2645,0,0,'GEN005','drashti','2025-11-25 13:35:45','2025-11-25 13:54:34','','N','Success'),(2646,0,0,'GEN005','priyanshi','2025-11-25 13:54:39','2025-11-25 17:05:09','','N','Success'),(2647,0,0,'gen005','Vishal','2025-11-25 15:19:58','2025-11-25 16:17:40','','N','Success'),(2648,0,0,'gen005','Mo','2025-11-25 16:06:49','2025-11-26 15:25:01','','N','Success'),(2649,0,0,'gen005','Vishal','2025-11-25 16:17:45','2025-11-25 18:33:01','','N','Success'),(2650,0,0,'gen005','mo','2025-11-25 16:21:36','2025-11-26 15:25:01','','N','Success'),(2651,0,0,'gen005','Reception','2025-11-25 16:41:03','2025-11-25 20:36:14','','N','Success'),(2652,0,0,'GEN005','drashti','2025-11-25 17:05:17','2025-11-25 18:35:33','','N','Success'),(2653,0,0,'gen005','janvi','2025-11-25 17:07:48','2025-11-25 20:37:37','','N','Success'),(2654,0,0,'gen005','darshan','2025-11-25 17:09:34','2025-12-17 19:03:58','','N','Success'),(2655,0,0,'gen005','Manshi','2025-11-25 17:13:36','2025-11-25 18:48:42','','N','Success'),(2656,0,0,'GEN005','Mo','2025-11-25 17:44:12','2025-11-26 15:25:01','','N','Success'),(2657,0,0,'GEN005','Mo','2025-11-25 17:44:18','2025-11-26 15:25:01','','N','Success'),(2658,0,0,'GEN005','drarchit','2025-11-25 18:15:25','2025-11-25 20:45:19','','N','Success'),(2659,0,0,'gen005','riya','2025-11-25 18:34:34','2025-11-25 18:34:34','','N','Failure'),(2660,0,0,'gen005','riya','2025-11-25 18:34:42','2025-11-26 18:18:55','','N','Success'),(2661,0,0,'gen005','Manshi','2025-11-25 18:42:31','2025-11-25 18:48:42','','N','Success'),(2662,0,0,'GEN005','drashti','2025-11-25 18:44:28','2025-11-25 20:14:53','','N','Success'),(2663,0,0,'gen005','Manshi','2025-11-25 18:49:06','2025-11-26 18:57:04','','N','Success'),(2664,0,0,'GEN005','Drridham','2025-11-25 20:02:21','2025-12-02 13:37:44','','N','Success'),(2665,0,0,'GEN005','Mo','2025-11-25 20:23:29','2025-11-26 15:25:01','','N','Success'),(2666,0,0,'GEN005','drarchit','2025-11-25 20:31:32','2025-11-25 20:45:19','','N','Success'),(2667,0,0,'gen005','Janvi','2025-11-25 20:34:13','2025-11-25 20:37:37','','N','Success'),(2668,0,0,'gen005','Urvashi','2025-11-25 20:37:44','2025-11-26 09:20:23','','N','Success'),(2669,0,0,'gen005','reception','2025-11-25 20:39:58','2025-11-27 13:49:14','','N','Success'),(2670,0,0,'GEN005','drarchit','2025-11-25 20:51:11','2025-11-26 13:02:07','','N','Success'),(2671,0,0,'gen005','riya','2025-11-25 21:16:04','2025-11-26 18:18:55','','N','Success'),(2672,0,0,'GEN005','Mo','2025-11-25 22:46:35','2025-11-26 15:25:01','','N','Success'),(2673,0,0,'GEN005','Mo','2025-11-26 00:09:01','2025-11-26 15:25:01','','N','Success'),(2674,0,0,'GEN005','Mo','2025-11-26 00:41:57','2025-11-26 15:25:01','','N','Success'),(2675,0,0,'gen005','Reception','2025-11-26 08:36:20','2025-11-27 13:49:14','','N','Success'),(2676,0,0,'GEN005','Mo','2025-11-26 09:01:31','2025-11-26 15:25:01','','N','Success'),(2677,0,0,'gen005','janvi','2025-11-26 09:18:04','2025-11-26 10:52:07','','N','Success'),(2678,0,0,'gen005','Vishal','2025-11-26 09:19:36','2025-11-27 22:52:27','','N','Success'),(2679,0,0,'gen005','Urvashi','2025-11-26 09:19:55','2025-11-26 09:20:23','','N','Success'),(2680,0,0,'gen005','drashti','2025-11-26 09:20:35','2025-11-26 10:50:42','','N','Success'),(2681,0,0,'gen005','Vishal','2025-11-26 09:39:23','2025-11-27 22:52:27','','N','Success'),(2682,0,0,'gen005','Vishal','2025-11-26 09:40:16','2025-11-27 22:52:27','','N','Success'),(2683,0,0,'gen005','janvi','2025-11-26 09:44:46','2025-11-26 10:52:07','','N','Success'),(2684,0,0,'gen005','Manshi','2025-11-26 10:18:50','2025-11-26 18:57:04','','N','Success'),(2685,0,0,'GEN005','Mo','2025-11-26 10:22:25','2025-11-26 15:25:01','','N','Success'),(2686,0,0,'gen005','Drpratapsi','2025-11-26 10:28:40','0000-00-00 00:00:00','','Y','Success'),(2687,0,0,'gen005','thims','2025-11-26 10:40:53','2025-11-28 12:15:53','','N','Success'),(2688,0,0,'gen005','darshan','2025-11-26 10:46:50','2025-12-17 19:03:58','','N','Success'),(2689,0,0,'gen005','sweta','2025-11-26 10:50:51','2025-11-26 10:50:51','','N','Failure'),(2690,0,0,'gen005','shweta','2025-11-26 10:50:57','2025-11-26 10:51:44','','N','Success'),(2691,0,0,'gen005','Janvi','2025-11-26 10:51:55','2025-11-26 10:52:07','','N','Success'),(2692,0,0,'gen005','drashti','2025-11-26 10:52:16','2025-11-26 13:59:11','','N','Success'),(2693,0,0,'gen005','VISHAL','2025-11-26 11:04:08','2025-11-27 22:52:27','','N','Success'),(2694,0,0,'gen005','Urvashi','2025-11-26 11:05:21','2025-11-26 11:13:46','','N','Success'),(2695,0,0,'gen005','janvi','2025-11-26 11:13:54','2025-11-28 19:59:54','','N','Success'),(2696,0,0,'gen005','drarchit','2025-11-26 11:22:50','2025-11-26 13:02:07','','N','Success'),(2697,0,0,'gen005','Vishal','2025-11-26 12:10:30','2025-11-27 22:52:27','','N','Success'),(2698,0,0,'gen005','drarchit','2025-11-26 13:04:48','2025-11-26 20:22:14','','N','Success'),(2699,0,0,'gen005','Riya','2025-11-26 13:15:29','2025-11-26 18:18:55','','N','Success'),(2700,0,0,'gen005','priyanshi','2025-11-26 14:01:09','2025-11-26 16:33:33','','N','Success'),(2701,0,0,'GEN005','Mo','2025-11-26 14:15:17','2025-11-26 15:25:01','','N','Success'),(2702,0,0,'gen005','Reception','2025-11-26 15:46:03','2025-11-27 13:49:14','','N','Success'),(2703,0,0,'gen005','Vishal','2025-11-26 16:18:31','2025-11-27 22:52:27','','N','Success'),(2704,0,0,'GEN005','Mo','2025-11-26 16:20:39','2025-12-02 18:20:28','','N','Success'),(2705,0,0,'gen005','priyanshi','2025-11-26 16:28:11','2025-11-26 16:33:33','','N','Success'),(2706,0,0,'gen005','Riya','2025-11-26 16:31:57','2025-11-26 18:18:55','','N','Success'),(2707,0,0,'gen005','drashti','2025-11-26 16:33:46','2025-11-27 11:02:40','','N','Success'),(2708,0,0,'gen005','darshan','2025-11-26 16:58:18','2025-12-17 19:03:58','','N','Success'),(2709,0,0,'gen005','janvi','2025-11-26 17:07:43','2025-11-28 19:59:54','','N','Success'),(2710,0,0,'gen005','Manshi','2025-11-26 17:26:53','2025-11-26 18:57:04','','N','Success'),(2711,0,0,'GEN005','Mo','2025-11-26 17:53:21','2025-12-02 18:20:28','','N','Success'),(2712,0,0,'gen005','drarchit','2025-11-26 18:00:50','2025-11-26 20:22:14','','N','Success'),(2713,0,0,'gen005','drashti','2025-11-26 18:14:16','2025-11-27 11:02:40','','N','Success'),(2714,0,0,'gen005','Riya','2025-11-26 18:20:52','2025-11-26 20:16:19','','N','Success'),(2715,0,0,'gen005','Drpratapsi','2025-11-26 18:37:39','0000-00-00 00:00:00','','Y','Success'),(2716,0,0,'gen005','Riya','2025-11-26 18:46:23','2025-11-26 20:16:19','','N','Success'),(2717,0,0,'gen005','Riya','2025-11-26 18:52:10','2025-11-26 20:16:19','','N','Success'),(2718,0,0,'GEN005','Manshi','2025-11-26 19:15:28','2025-11-27 12:14:57','','N','Success'),(2719,0,0,'GEN005','Manshi','2025-11-26 19:15:32','2025-11-27 12:14:57','','N','Success'),(2720,0,0,'GEN005','Manshi','2025-11-26 19:28:00','2025-11-27 12:14:57','','N','Success'),(2721,0,0,'gen005','Riya','2025-11-26 20:22:24','2025-11-26 20:22:40','','N','Success'),(2722,0,0,'gen005','Riya','2025-11-26 20:23:40','2025-12-02 13:11:26','','N','Success'),(2723,0,0,'gen005','Mo','2025-11-26 21:25:29','2025-12-02 18:20:28','','N','Success'),(2724,0,0,'gen005','Mo','2025-11-26 21:25:33','2025-12-02 18:20:28','','N','Success'),(2725,0,0,'gen005','mo','2025-11-26 22:05:40','2025-12-02 18:20:28','','N','Success'),(2726,0,0,'GEN005','Mo','2025-11-26 23:20:48','2025-12-02 18:20:28','','N','Success'),(2727,0,0,'gen005','Reception','2025-11-27 08:43:56','2025-11-27 13:49:14','','N','Success'),(2728,0,0,'gen005','riya','2025-11-27 09:13:44','2025-12-02 13:11:26','','N','Success'),(2729,0,0,'gen005','Mo','2025-11-27 09:15:19','2025-12-02 18:20:28','','N','Success'),(2730,0,0,'gen005','priyanshi','2025-11-27 09:22:57','2025-11-27 13:26:13','','N','Success'),(2731,0,0,'gen005','drashti','2025-11-27 09:23:21','2025-11-27 11:02:40','','N','Success'),(2732,0,0,'gen005','janvi','2025-11-27 09:38:43','2025-11-28 19:59:54','','N','Success'),(2733,0,0,'gen005','Vishal','2025-11-27 09:53:37','2025-11-27 22:52:27','','N','Success'),(2734,0,0,'gen005','Vishal','2025-11-27 10:17:26','2025-11-27 22:52:27','','N','Success'),(2735,0,0,'gen005','Manshi','2025-11-27 10:22:20','2025-11-27 12:14:57','','N','Success'),(2736,0,0,'gen005','darshan','2025-11-27 10:45:01','2025-12-17 19:03:58','','N','Success'),(2737,0,0,'GEN005','Mo','2025-11-27 11:00:23','2025-12-02 18:20:28','','N','Success'),(2738,0,0,'GEN005','Mo','2025-11-27 11:00:27','2025-12-02 18:20:28','','N','Success'),(2739,0,0,'gen005','priyanshi','2025-11-27 11:02:45','2025-11-27 13:26:13','','N','Success'),(2740,0,0,'GEN005','drarchit','2025-11-27 11:27:38','2025-11-27 20:46:29','','N','Success'),(2741,0,0,'gen005','Drjayant','2025-11-27 11:53:35','2025-11-27 13:07:45','','N','Success'),(2742,0,0,'gen005','Mo','2025-11-27 11:59:54','2025-12-02 18:20:28','','N','Success'),(2743,0,0,'GEN005','Manshi','2025-11-27 12:40:54','2025-11-27 17:04:39','','N','Success'),(2744,0,0,'gen005','drashti','2025-11-27 13:26:37','2025-11-28 20:54:05','','N','Success'),(2745,0,0,'gen005','drashti','2025-11-27 13:33:37','2025-11-28 20:54:05','','N','Success'),(2746,0,0,'GEN005','Mo','2025-11-27 13:42:18','2025-12-02 18:20:28','','N','Success'),(2747,0,0,'gen005','Reception','2025-11-27 13:49:52','2025-11-27 20:13:24','','N','Success'),(2748,0,0,'gen005','drashti','2025-11-27 14:49:16','2025-11-28 20:54:05','','N','Success'),(2749,0,0,'GEN005','Mo','2025-11-27 14:50:25','2025-12-02 18:20:28','','N','Success'),(2750,0,0,'GEN005','Mo','2025-11-27 15:11:51','2025-12-02 18:20:28','','N','Success'),(2751,0,0,'GEN005','Mo','2025-11-27 15:13:06','2025-12-02 18:20:28','','N','Success'),(2752,0,0,'gen005','janvi','2025-11-27 15:58:52','2025-11-28 19:59:54','','N','Success'),(2753,0,0,'gen005','Reception','2025-11-27 16:04:17','2025-11-27 20:13:24','','N','Success'),(2754,0,0,'gen005','drashti','2025-11-27 16:26:03','2025-11-28 20:54:05','','N','Success'),(2755,0,0,'gen005','drashti','2025-11-27 16:36:18','2025-11-28 20:54:05','','N','Success'),(2756,0,0,'gen005','drashti','2025-11-27 16:36:22','2025-11-28 20:54:05','','N','Success'),(2757,0,0,'GEN005','Mo','2025-11-27 16:45:42','2025-12-02 18:20:28','','N','Success'),(2758,0,0,'gen005','Manshi','2025-11-27 17:02:18','2025-11-27 17:04:39','','N','Success'),(2759,0,0,'gen005','Manshi','2025-11-27 17:04:44','2025-11-27 18:34:58','','N','Success'),(2760,0,0,'gen005','darshan','2025-11-27 17:08:11','2025-12-17 19:03:58','','N','Success'),(2761,0,0,'gen005','janvi','2025-11-27 17:15:03','2025-11-28 19:59:54','','N','Success'),(2762,0,0,'GEN005','drarchit','2025-11-27 18:11:22','2025-11-27 20:46:29','','N','Success'),(2763,0,0,'gen005','Drjayant','2025-11-27 18:20:34','2025-11-27 19:53:44','','N','Success'),(2764,0,0,'GEN005','Drridham','2025-11-27 18:22:50','2025-12-02 13:37:44','','N','Success'),(2765,0,0,'gen005','Manshi','2025-11-27 18:37:58','2025-11-28 12:07:50','','N','Success'),(2766,0,0,'gen005','Manshi','2025-11-27 18:38:15','2025-11-28 12:07:50','','N','Success'),(2767,0,0,'GEN005','Mo','2025-11-27 18:40:46','2025-12-02 18:20:28','','N','Success'),(2768,0,0,'GEN005','drarchit','2025-11-27 19:17:19','2025-11-27 20:46:29','','N','Success'),(2769,0,0,'GEN005','drarchit','2025-11-27 19:22:58','2025-11-27 20:46:29','','N','Success'),(2770,0,0,'gen005','drashti','2025-11-27 20:12:05','2025-11-28 20:54:05','','N','Success'),(2771,0,0,'GEN005','drarchit','2025-11-27 20:21:36','2025-11-27 20:46:29','','N','Success'),(2772,0,0,'GEN005','drarchit','2025-11-27 21:13:17','2025-11-28 20:19:41','','N','Success'),(2773,0,0,'gen005','Vishal','2025-11-27 22:36:17','2025-11-27 22:52:27','','N','Success'),(2774,0,0,'gen005','Vishal','2025-11-27 23:17:55','2025-11-29 11:50:44','','N','Success'),(2775,0,0,'GEN005','Mo','2025-11-28 00:05:38','2025-12-02 18:20:28','','N','Success'),(2776,0,0,'gen005','Mo','2025-11-28 02:06:30','2025-12-02 18:20:28','','N','Success'),(2777,0,0,'gen005','Vishal','2025-11-28 02:24:03','2025-11-29 11:50:44','','N','Success'),(2778,0,0,'GEN005','Mo','2025-11-28 08:30:37','2025-12-02 18:20:28','','N','Success'),(2779,0,0,'gen005','Reception','2025-11-28 08:37:52','2025-11-28 18:56:16','','N','Success'),(2780,0,0,'gen005','Urvashi','2025-11-28 08:54:30','2025-11-28 09:27:05','','N','Success'),(2781,0,0,'gen005','drashti','2025-11-28 09:27:15','2025-11-28 20:54:05','','N','Success'),(2782,0,0,'gen005','janvi','2025-11-28 09:31:54','2025-11-28 19:59:54','','N','Success'),(2783,0,0,'gen005','Vishal','2025-11-28 09:49:06','2025-11-29 11:50:44','','N','Success'),(2784,0,0,'gen005','Manshi','2025-11-28 10:07:42','2025-11-28 12:07:50','','N','Success'),(2785,0,0,'gen005','Vishal','2025-11-28 10:08:26','2025-11-29 11:50:44','','N','Success'),(2786,0,0,'gen005','Manshi','2025-11-28 10:10:50','2025-11-28 12:07:50','','N','Success'),(2787,0,0,'gen005','Manshi','2025-11-28 10:11:30','2025-11-28 12:07:50','','N','Success'),(2788,0,0,'gen005','Manshi','2025-11-28 10:24:03','2025-11-28 12:07:50','','N','Success'),(2789,0,0,'GEN005','Mo','2025-11-28 10:38:54','2025-12-02 18:20:28','','N','Success'),(2790,0,0,'gen005','darshan','2025-11-28 10:48:28','2025-12-17 19:03:58','','N','Success'),(2791,0,0,'gen005','Vishal','2025-11-28 10:52:21','2025-11-29 11:50:44','','N','Success'),(2792,0,0,'gen005','drashti','2025-11-28 11:00:41','2025-11-28 20:54:05','','N','Success'),(2793,0,0,'GEN005','Drsagar','2025-11-28 11:01:34','0000-00-00 00:00:00','','Y','Success'),(2794,0,0,'GEN005','Mo','2025-11-28 11:01:37','2025-12-02 18:20:28','','N','Success'),(2795,0,0,'GEN005','drarchit','2025-11-28 11:08:12','2025-11-28 20:19:41','','N','Success'),(2796,0,0,'gen005','Vishal','2025-11-28 11:10:39','2025-11-29 11:50:44','','N','Success'),(2797,0,0,'gen005','Vishal','2025-11-28 11:12:08','2025-11-29 11:50:44','','N','Success'),(2798,0,0,'gen005','Drjayant','2025-11-28 11:21:22','2025-11-28 19:46:02','','N','Success'),(2799,0,0,'gen005','Vishal','2025-11-28 11:26:11','2025-11-29 11:50:44','','N','Success'),(2800,0,0,'gen005','Drpratapsi','2025-11-28 11:39:02','0000-00-00 00:00:00','','Y','Success'),(2801,0,0,'GEN005','Vishal','2025-11-28 11:40:58','2025-11-29 11:50:44','','N','Success'),(2802,0,0,'gen005','thims','2025-11-28 11:42:13','2025-11-28 12:15:53','','N','Success'),(2803,0,0,'GEN005','Drsagar','2025-11-28 12:13:11','0000-00-00 00:00:00','','Y','Success'),(2804,0,0,'gen005','Manshi','2025-11-28 12:14:31','2025-11-28 13:56:09','','N','Success'),(2805,0,0,'gen005','janvi','2025-11-28 12:31:38','2025-11-28 19:59:54','','N','Success'),(2806,0,0,'gen005','darshan','2025-11-28 12:37:04','2025-12-17 19:03:58','','N','Success'),(2807,0,0,'GEN005','drarchit','2025-11-28 12:39:44','2025-11-28 20:19:41','','N','Success'),(2808,0,0,'GEN005','Mo','2025-11-28 12:43:17','2025-12-02 18:20:28','','N','Success'),(2809,0,0,'GEN005','Drsagar','2025-11-28 12:43:25','0000-00-00 00:00:00','','Y','Success'),(2810,0,0,'gen005','darshan','2025-11-28 12:58:21','2025-12-17 19:03:58',_binary '192.0.0.4','N','Success'),(2811,0,0,'gen005','darshan','2025-11-28 13:01:53','2025-12-17 19:03:58','','N','Success'),(2812,0,0,'gen005','Urvashi','2025-11-28 13:30:59','2025-11-30 11:55:07','','N','Success'),(2813,0,0,'gen005','Manshi','2025-11-28 13:43:01','2025-11-28 13:56:09','','N','Success'),(2814,0,0,'gen005','thims','2025-11-28 13:47:24','2025-12-01 16:42:38','','N','Success'),(2815,0,0,'gen005','Reception','2025-11-28 13:56:15','2025-11-28 18:56:16','','N','Success'),(2816,0,0,'GEN005','Mo','2025-11-28 15:19:03','2025-12-02 18:20:28','','N','Success'),(2817,0,0,'gen005','Vishal','2025-11-28 15:34:15','2025-11-29 11:50:44','','N','Success'),(2818,0,0,'gen005','drashti','2025-11-28 15:35:43','2025-11-28 20:54:05','','N','Success'),(2819,0,0,'gen005','Vishal','2025-11-28 15:47:28','2025-11-29 11:50:44','','N','Success'),(2820,0,0,'gen005','Reception','2025-11-28 16:06:33','2025-11-28 18:56:16','','N','Success'),(2821,0,0,'gen005','drashti','2025-11-28 16:24:12','2025-11-28 20:54:05','','N','Success'),(2822,0,0,'gen005','Mo','2025-11-28 16:39:28','2025-12-02 18:20:28','','N','Success'),(2823,0,0,'gen005','darshan','2025-11-28 17:01:22','2025-12-17 19:03:58','','N','Success'),(2824,0,0,'gen005','darshan','2025-11-28 17:01:26','2025-12-17 19:03:58','','N','Success'),(2825,0,0,'GEN005','Manshi','2025-11-28 17:11:25','2025-12-01 12:11:42','','N','Success'),(2826,0,0,'gen005','janvi','2025-11-28 17:11:50','2025-11-28 19:59:54','','N','Success'),(2827,0,0,'gen005','Mo','2025-11-28 17:34:02','2025-12-02 18:20:28','','N','Success'),(2828,0,0,'gen005','Drpratapsi','2025-11-28 18:10:00','0000-00-00 00:00:00','','Y','Success'),(2829,0,0,'GEN005','Drsagar','2025-11-28 18:10:52','0000-00-00 00:00:00','','Y','Success'),(2830,0,0,'gen005','drarchit','2025-11-28 18:11:19','2025-11-28 20:19:41','','N','Success'),(2831,0,0,'gen005','drarchit','2025-11-28 18:11:21','2025-11-28 20:19:41','','N','Success'),(2832,0,0,'gen005','Drjayant','2025-11-28 18:22:46','2025-11-28 19:46:02','','N','Success'),(2833,0,0,'GEN005','Manshi','2025-11-28 18:54:13','2025-12-01 12:11:42','','N','Success'),(2834,0,0,'GEN005','Mo','2025-11-28 18:54:37','2025-12-02 18:20:28','','N','Success'),(2835,0,0,'gen005','Reception','2025-11-28 18:56:27','2025-11-29 11:51:10','','N','Success'),(2836,0,0,'gen005','Drpratapsi','2025-11-28 19:08:52','0000-00-00 00:00:00','','Y','Success'),(2837,0,0,'GEN005','Drsagar','2025-11-28 19:43:20','0000-00-00 00:00:00','','Y','Success'),(2838,0,0,'gen005','RIYA','2025-11-28 19:45:10','2025-12-02 13:11:26','','N','Success'),(2839,0,0,'gen005','janvi','2025-11-28 20:16:28','2025-11-28 20:47:43','','N','Success'),(2840,0,0,'GEN005','Mo','2025-11-28 21:05:42','2025-12-02 18:20:28','','N','Success'),(2841,0,0,'GEN005','Mo','2025-11-29 00:04:52','2025-12-02 18:20:28','','N','Success'),(2842,0,0,'GEN005','Mo','2025-11-29 08:32:06','2025-12-02 18:20:28','','N','Success'),(2843,0,0,'gen005','Reception','2025-11-29 08:46:35','2025-11-29 11:51:10','','N','Success'),(2844,0,0,'gen005','janvi','2025-11-29 09:07:06','2025-12-04 13:35:17','','N','Success'),(2845,0,0,'gen005','Vishal','2025-11-29 09:16:48','2025-11-29 09:16:48','','N','Failure'),(2846,0,0,'gen005','Vishal','2025-11-29 09:17:05','2025-11-29 09:17:05','','N','Failure'),(2847,0,0,'gen005','Vishal','2025-11-29 09:17:21','2025-11-29 11:50:44','','N','Success'),(2848,0,0,'gen005','drashti','2025-11-29 09:19:55','2025-11-29 13:34:07','','N','Success'),(2849,0,0,'gen005','Vishal','2025-11-29 09:29:08','2025-11-29 11:50:44','','N','Success'),(2850,0,0,'gen005','Vishal','2025-11-29 09:29:48','2025-11-29 11:50:44','','N','Success'),(2851,0,0,'gen005','Vishal','2025-11-29 09:36:27','2025-11-29 11:50:44','','N','Success'),(2852,0,0,'gen005','Vishal','2025-11-29 10:09:32','2025-11-29 11:50:44','','N','Success'),(2853,0,0,'GEN005','Mo','2025-11-29 10:15:29','2025-12-02 18:20:28','','N','Success'),(2854,0,0,'gen005','Manshi','2025-11-29 10:24:53','2025-12-01 12:11:42','','N','Success'),(2855,0,0,'gen005','darshan','2025-11-29 10:49:51','2025-12-17 19:03:58','','N','Success'),(2856,0,0,'gen005','Drpratapsi','2025-11-29 11:00:21','0000-00-00 00:00:00','','Y','Success'),(2857,0,0,'gen005','Drjayant','2025-11-29 11:11:47','2025-11-29 13:52:03','','N','Success'),(2858,0,0,'gen005','Vishal','2025-11-29 11:12:47','2025-11-29 11:50:44','','N','Success'),(2859,0,0,'GEN005','drarchit','2025-11-29 11:15:26','2025-12-01 19:45:41','','N','Success'),(2860,0,0,'GEN005','drarchit','2025-11-29 11:15:30','2025-12-01 19:45:41','','N','Success'),(2861,0,0,'gen005','mo','2025-11-29 11:18:52','2025-11-29 11:18:52','','N','Failure'),(2862,0,0,'gen005','mo','2025-11-29 11:19:04','2025-12-02 18:20:28','','N','Success'),(2863,0,0,'gen005','Manshi','2025-11-29 11:50:16','2025-11-29 11:50:16','','N','Failure'),(2864,0,0,'gen005','Mansi','2025-11-29 11:50:37','2025-11-29 11:50:37','','N','Failure'),(2865,0,0,'gen005','Vishal','2025-11-29 11:51:16','2025-11-30 11:57:10','','N','Success'),(2866,0,0,'gen005','Reception','2025-11-29 11:51:23','2025-11-29 15:08:13','','N','Success'),(2867,0,0,'gen005','janvi','2025-11-29 11:52:51','2025-12-04 13:35:17','','N','Success'),(2868,0,0,'GEN005','Mo','2025-11-29 11:53:35','2025-12-02 18:20:28','','N','Success'),(2869,0,0,'GEN005','drarchit','2025-11-29 11:57:08','2025-12-01 19:45:41','','N','Success'),(2870,0,0,'GEN005','Drsagar','2025-11-29 11:57:26','0000-00-00 00:00:00','','Y','Success'),(2871,0,0,'gen005','Vishal','2025-11-29 13:30:46','2025-11-30 11:57:10','','N','Success'),(2872,0,0,'gen005','Janvi','2025-11-29 13:37:21','2025-12-04 13:35:17','','N','Success'),(2873,0,0,'GEN005','Mo','2025-11-29 13:48:27','2025-12-02 18:20:28','','N','Success'),(2874,0,0,'gen005','shweta','2025-11-29 15:08:41','2025-11-29 15:08:41','','N','Failure'),(2875,0,0,'gen005','shweta','2025-11-29 15:08:42','2025-11-29 15:08:42','','N','Failure'),(2876,0,0,'gen005','shweta','2025-11-29 15:08:44','2025-11-29 15:08:44','','N','Failure'),(2877,0,0,'gen005','shweta','2025-11-29 15:08:45','2025-11-29 15:08:45','','N','Failure'),(2878,0,0,'gen005','shweta','2025-11-29 15:09:00','2025-11-29 15:09:00','','N','Failure'),(2879,0,0,'gen005','shweta','2025-11-29 15:09:03','2025-11-29 15:09:03','','N','Failure'),(2880,0,0,'gen005','shweta','2025-11-29 15:09:16','2025-11-29 15:09:16','','N','Failure'),(2881,0,0,'gen005','shweta','2025-11-29 15:09:18','2025-11-29 15:09:18','','N','Failure'),(2882,0,0,'gen005','shweta','2025-11-29 15:09:44','2025-11-29 15:09:44','','N','Failure'),(2883,0,0,'gen005','shweta','2025-11-29 15:09:45','2025-11-29 15:09:45','','N','Failure'),(2884,0,0,'gen005','shweta','2025-11-29 15:09:55','2025-12-01 17:24:49','','N','Success'),(2885,0,0,'gen005','shweta','2025-11-29 15:09:57','2025-12-01 17:24:49','','N','Success'),(2886,0,0,'gen005','Manshi','2025-11-29 17:32:41','2025-12-01 12:11:42','','N','Success'),(2887,0,0,'gen005','janvi','2025-11-29 17:54:34','2025-12-04 13:35:17','','N','Success'),(2888,0,0,'GEN005','drashti','2025-11-29 17:55:05','2025-12-01 14:08:55','','N','Success'),(2889,0,0,'gen005','Reception','2025-11-29 17:55:24','2025-11-29 20:13:00','','N','Success'),(2890,0,0,'gen005','Drpratapsi','2025-11-29 18:15:47','0000-00-00 00:00:00','','Y','Success'),(2891,0,0,'GEN005','Drsagar','2025-11-29 18:19:42','0000-00-00 00:00:00','','Y','Success'),(2892,0,0,'GEN005','Vishal','2025-11-29 18:20:13','2025-11-30 11:57:10','','N','Success'),(2893,0,0,'GEN005','Vishal','2025-11-29 18:30:49','2025-11-30 11:57:10','','N','Success'),(2894,0,0,'GEN005','Mo','2025-11-29 18:49:14','2025-12-02 18:20:28','','N','Success'),(2895,0,0,'gen005','Reception','2025-11-29 19:16:18','2025-11-29 20:13:00','','N','Success'),(2896,0,0,'gen005','Manshi','2025-11-29 19:49:12','2025-12-01 12:11:42','','N','Success'),(2897,0,0,'GEN005','Mo','2025-11-29 20:40:33','2025-12-02 18:20:28','','N','Success'),(2898,0,0,'GEN005','Vishal','2025-11-29 20:54:08','2025-11-30 11:57:10','','N','Success'),(2899,0,0,'GEN005','Mo','2025-11-30 00:53:21','2025-12-02 18:20:28','','N','Success'),(2900,0,0,'GEN005','Mo','2025-11-30 00:56:57','2025-12-02 18:20:28','','N','Success'),(2901,0,0,'gen005','Urvashi','2025-11-30 09:25:48','2025-11-30 11:55:07','','N','Success'),(2902,0,0,'gen005','Vishal','2025-11-30 10:15:51','2025-11-30 11:57:10','','N','Success'),(2903,0,0,'GEN005','Mo','2025-11-30 10:31:53','2025-12-02 18:20:28','','N','Success'),(2904,0,0,'GEN005','Mo','2025-11-30 11:34:59','2025-12-02 18:20:28','','N','Success'),(2905,0,0,'gen005','Vishal','2025-11-30 11:55:43','2025-11-30 11:57:10','','N','Success'),(2906,0,0,'gen005','Urvashi','2025-11-30 11:57:15','2025-12-03 14:03:47','','N','Success'),(2907,0,0,'gen005','Vishal','2025-11-30 12:12:40','2025-11-30 15:19:56','','N','Success'),(2908,0,0,'gen005','Urvashi','2025-11-30 12:50:45','2025-12-03 14:03:47','','N','Success'),(2909,0,0,'GEN005','Mo','2025-11-30 13:29:02','2025-12-02 18:20:28','','N','Success'),(2910,0,0,'gen005','Vishal','2025-11-30 15:24:33','2025-11-30 19:22:15','','N','Success'),(2911,0,0,'gen005','Mo','2025-11-30 15:26:22','2025-12-02 18:20:28','','N','Success'),(2912,0,0,'gen005','Mo','2025-11-30 16:17:33','2025-12-02 18:20:28','','N','Success'),(2913,0,0,'gen005','Mo','2025-11-30 17:32:01','2025-12-02 18:20:28','','N','Success'),(2914,0,0,'gen005','Vishal','2025-11-30 17:40:09','2025-11-30 19:22:15','','N','Success'),(2915,0,0,'GEN005','Mo','2025-11-30 18:22:54','2025-12-02 18:20:28','','N','Success'),(2916,0,0,'gen005','Vishal','2025-11-30 19:22:27','2025-11-30 21:21:15','','N','Success'),(2917,0,0,'gen005','Vishal','2025-11-30 19:50:16','2025-11-30 21:21:15','','N','Success'),(2918,0,0,'gen005','Vishal','2025-11-30 21:22:04','2025-12-03 19:31:38','','N','Success'),(2919,0,0,'GEN005','Mo','2025-11-30 23:25:36','2025-12-02 18:20:28','','N','Success'),(2920,0,0,'GEN005','Mo','2025-11-30 23:26:39','2025-12-02 18:20:28','','N','Success'),(2921,0,0,'gen005','Reception','2025-12-01 08:38:28','2025-12-01 20:30:21','','N','Success'),(2922,0,0,'gen005','drashti','2025-12-01 09:32:21','2025-12-01 14:08:55','','N','Success'),(2923,0,0,'gen005','Vishal','2025-12-01 09:34:15','2025-12-03 19:31:38','','N','Success'),(2924,0,0,'gen005','janvi','2025-12-01 09:38:51','2025-12-04 13:35:17','','N','Success'),(2925,0,0,'GEN005','Mo','2025-12-01 09:51:36','2025-12-02 18:20:28','','N','Success'),(2926,0,0,'gen005','riya','2025-12-01 09:59:08','2025-12-02 13:11:26','','N','Success'),(2927,0,0,'gen005','Manshi','2025-12-01 10:12:06','2025-12-01 12:11:42','','N','Success'),(2928,0,0,'GEN005','Mo','2025-12-01 10:17:30','2025-12-02 18:20:28','','N','Success'),(2929,0,0,'gen005','Drpratapsi','2025-12-01 10:18:29','0000-00-00 00:00:00','','Y','Success'),(2930,0,0,'gen005','darshan','2025-12-01 10:38:56','2025-12-17 19:03:58','','N','Success'),(2931,0,0,'gen005','Vishal','2025-12-01 10:55:05','2025-12-03 19:31:38','','N','Success'),(2932,0,0,'GEN005','drarchit','2025-12-01 11:10:26','2025-12-01 19:45:41','','N','Success'),(2933,0,0,'gen005','Manshi','2025-12-01 11:10:43','2025-12-01 12:11:42','','N','Success'),(2934,0,0,'gen005','Drjayant','2025-12-01 11:11:57','2025-12-01 14:08:50','','N','Success'),(2935,0,0,'GEN005','Mo','2025-12-01 11:30:00','2025-12-02 18:20:28','','N','Success'),(2936,0,0,'GEN005','Mo','2025-12-01 11:30:03','2025-12-02 18:20:28','','N','Success'),(2937,0,0,'GEN005','Drsagar','2025-12-01 11:33:29','0000-00-00 00:00:00','','Y','Success'),(2938,0,0,'GEN005','Drsagar','2025-12-01 11:42:05','0000-00-00 00:00:00','','Y','Success'),(2939,0,0,'GEN005','drarchit','2025-12-01 12:12:36','2025-12-01 19:45:41','','N','Success'),(2940,0,0,'gen005','Manshi','2025-12-01 12:16:54','2025-12-01 19:46:59','','N','Success'),(2941,0,0,'gen005','Mo','2025-12-01 12:22:46','2025-12-02 18:20:28','','N','Success'),(2942,0,0,'gen005','Manshi','2025-12-01 12:28:13','2025-12-01 19:46:59','','N','Success'),(2943,0,0,'gen005','Drpratapsi','2025-12-01 12:28:45','0000-00-00 00:00:00','','Y','Success'),(2944,0,0,'GEN005','Mo','2025-12-01 12:46:40','2025-12-02 18:20:28','','N','Success'),(2945,0,0,'GEN005','Mo','2025-12-01 13:09:08','2025-12-02 18:20:28','','N','Success'),(2946,0,0,'GEN005','Mo','2025-12-01 13:34:40','2025-12-02 18:20:28','','N','Success'),(2947,0,0,'gen005','Mo','2025-12-01 13:50:12','2025-12-02 18:20:28','','N','Success'),(2948,0,0,'gen005','drashti','2025-12-01 14:14:34','2025-12-01 20:20:06','','N','Success'),(2949,0,0,'gen005','shweta','2025-12-01 14:23:18','2025-12-01 17:24:49','','N','Success'),(2950,0,0,'gen005','thims','2025-12-01 14:26:31','2025-12-01 16:42:38','','N','Success'),(2951,0,0,'GEN005','MO','2025-12-01 15:21:33','2025-12-01 15:21:33','','N','Failure'),(2952,0,0,'GEN005','MO','2025-12-01 15:21:42','2025-12-01 15:21:42','','N','Failure'),(2953,0,0,'GEN005','MO','2025-12-01 15:21:46','2025-12-01 15:21:46','','N','Failure'),(2954,0,0,'gen005','Reception','2025-12-01 16:03:30','2025-12-01 20:30:21','','N','Success'),(2955,0,0,'gen005','riya','2025-12-01 16:12:49','2025-12-02 13:11:26','','N','Success'),(2956,0,0,'gen005','janvi','2025-12-01 16:45:10','2025-12-04 13:35:17','','N','Success'),(2957,0,0,'gen005','drashti','2025-12-01 16:47:00','2025-12-01 20:20:06','','N','Success'),(2958,0,0,'gen005','Shweta','2025-12-01 16:50:25','2025-12-01 17:24:49','','N','Success'),(2959,0,0,'gen005','darshan','2025-12-01 17:03:49','2025-12-17 19:03:58','','N','Success'),(2960,0,0,'gen005','darshan','2025-12-01 17:03:53','2025-12-17 19:03:58','','N','Success'),(2961,0,0,'GEN005','Manshi','2025-12-01 17:09:54','2025-12-01 19:46:59','','N','Success'),(2962,0,0,'gen005','janvi','2025-12-01 17:24:55','2025-12-04 13:35:17','','N','Success'),(2963,0,0,'GEN005','drarchit','2025-12-01 18:11:06','2025-12-01 19:45:41','','N','Success'),(2964,0,0,'gen005','Drjayant','2025-12-01 18:16:43','2025-12-01 19:56:32','','N','Success'),(2965,0,0,'gen005','Drpratapsi','2025-12-01 18:17:24','0000-00-00 00:00:00','','Y','Success'),(2966,0,0,'gen005','Drjayant','2025-12-01 18:21:58','2025-12-01 19:56:32','','N','Success'),(2967,0,0,'GEN005','Drridham','2025-12-01 18:27:34','2025-12-02 13:37:44','','N','Success'),(2968,0,0,'GEN005','Drridham','2025-12-01 18:27:41','2025-12-02 13:37:44','','N','Success'),(2969,0,0,'GEN005','MO','2025-12-01 18:45:15','2025-12-01 18:45:15','','N','Failure'),(2970,0,0,'GEN005','MO','2025-12-01 18:45:17','2025-12-01 18:45:17','','N','Failure'),(2971,0,0,'GEN005','MO','2025-12-01 18:45:28','2025-12-01 18:45:28','','N','Failure'),(2972,0,0,'GEN005','MO','2025-12-01 18:45:31','2025-12-01 18:45:31','','N','Failure'),(2973,0,0,'GEN005','MO','2025-12-01 18:45:34','2025-12-01 18:45:34','','N','Failure'),(2974,0,0,'GEN005','MO','2025-12-01 18:45:53','2025-12-02 18:20:28','','N','Success'),(2975,0,0,'GEN005','drarchit','2025-12-01 19:46:02','2025-12-01 19:46:12','','N','Success'),(2976,0,0,'GEN005','drarchit','2025-12-01 19:49:16','2025-12-02 12:36:07','','N','Success'),(2977,0,0,'gen005','shweta','2025-12-01 20:20:13','2025-12-02 12:25:24','','N','Success'),(2978,0,0,'GEN005','MO','2025-12-01 21:28:10','2025-12-02 18:20:28','','N','Success'),(2979,0,0,'GEN005','MO','2025-12-01 22:18:02','2025-12-02 18:20:28','','N','Success'),(2980,0,0,'GEN005','MO','2025-12-02 00:27:22','2025-12-02 18:20:28','','N','Success'),(2981,0,0,'gen005','Reception','2025-12-02 08:49:20','2025-12-02 08:58:41','','N','Success'),(2982,0,0,'gen005','Reception','2025-12-02 08:59:31','2025-12-02 14:57:36','','N','Success'),(2983,0,0,'gen005','shweta','2025-12-02 09:12:12','2025-12-02 12:25:24','','N','Success'),(2984,0,0,'gen005','riya','2025-12-02 09:36:07','2025-12-02 13:11:26','','N','Success'),(2985,0,0,'gen005','janvi','2025-12-02 10:04:54','2025-12-04 13:35:17','','N','Success'),(2986,0,0,'gen005','Vishal','2025-12-02 10:08:44','2025-12-03 19:31:38','','N','Success'),(2987,0,0,'gen005','Drpratapsi','2025-12-02 10:35:44','0000-00-00 00:00:00','','Y','Success'),(2988,0,0,'gen005','Manshi','2025-12-02 10:37:25','2025-12-02 12:17:05','','N','Success'),(2989,0,0,'gen005','darshan','2025-12-02 10:38:23','2025-12-17 19:03:58','','N','Success'),(2990,0,0,'GEN005','shweta','2025-12-02 10:48:20','2025-12-02 12:25:24','','N','Success'),(2991,0,0,'gen005','Vishal','2025-12-02 10:58:44','2025-12-03 19:31:38','','N','Success'),(2992,0,0,'GEN005','drarchit','2025-12-02 11:05:26','2025-12-02 12:36:07','','N','Success'),(2993,0,0,'GEN005','shweta','2025-12-02 11:15:20','2025-12-02 12:25:24','','N','Success'),(2994,0,0,'gen005','Drjayant','2025-12-02 11:15:28','2025-12-02 13:01:01','','N','Success'),(2995,0,0,'GEN005','sweta','2025-12-02 11:26:16','2025-12-02 11:26:16','','N','Failure'),(2996,0,0,'GEN005','sweta','2025-12-02 11:26:17','2025-12-02 11:26:17','','N','Failure'),(2997,0,0,'GEN005','sweta','2025-12-02 11:26:18','2025-12-02 11:26:18','','N','Failure'),(2998,0,0,'GEN005','shweta','2025-12-02 11:26:28','2025-12-02 12:25:24','','N','Success'),(2999,0,0,'gen005','Dharmishth','2025-12-02 11:41:20','0000-00-00 00:00:00','','Y','Success'),(3000,0,0,'GEN005','Drridham','2025-12-02 11:46:47','2025-12-02 13:37:44','','N','Success'),(3001,0,0,'gen005','Manshi','2025-12-02 12:23:49','2025-12-02 13:42:32','','N','Success'),(3002,0,0,'GEN005','Janvi','2025-12-02 12:25:29','2025-12-04 13:35:17','','N','Success'),(3003,0,0,'gen005','Manshi','2025-12-02 12:30:59','2025-12-02 13:42:32','','N','Success'),(3004,0,0,'GEN005','drarchit','2025-12-02 12:37:38','2025-12-02 12:44:19','','N','Success'),(3005,0,0,'GEN005','drarchit','2025-12-02 12:47:42','2025-12-02 19:44:43','','N','Success'),(3006,0,0,'GEN005','Drsagar','2025-12-02 13:05:13','0000-00-00 00:00:00','','Y','Success'),(3007,0,0,'gen005','riya','2025-12-02 13:12:42','2025-12-02 15:19:47','','N','Success'),(3008,0,0,'gen005','Drpratapsi','2025-12-02 13:26:56','0000-00-00 00:00:00','','Y','Success'),(3009,0,0,'GEN005','Manshi','2025-12-02 13:27:23','2025-12-02 13:42:32','','N','Success'),(3010,0,0,'GEN005','Drridham','2025-12-02 13:28:41','2025-12-02 13:37:44','','N','Success'),(3011,0,0,'GEN005','drarchit','2025-12-02 13:29:10','2025-12-02 19:44:43','','N','Success'),(3012,0,0,'gen005','thims','2025-12-02 13:38:05','2025-12-11 11:33:32','','N','Success'),(3013,0,0,'gen005','Shweta','2025-12-02 13:42:08','2025-12-02 16:05:58','','N','Success'),(3014,0,0,'GEN005','Manshi','2025-12-02 13:42:39','2025-12-02 13:42:50','','N','Success'),(3015,0,0,'GEN005','Manshi','2025-12-02 13:43:01','2025-12-02 13:45:34','','N','Success'),(3016,0,0,'GEN005','MO','2025-12-02 13:45:43','2025-12-02 18:20:28','','N','Success'),(3017,0,0,'gen005','riya','2025-12-02 13:48:02','2025-12-02 15:19:47','','N','Success'),(3018,0,0,'gen005','thims','2025-12-02 13:54:48','2025-12-11 11:33:32','','N','Success'),(3019,0,0,'GEN005','Drridham','2025-12-02 14:13:34','2025-12-06 20:01:44','','N','Success'),(3020,0,0,'gen005','SHWETA','2025-12-02 15:18:36','2025-12-02 16:05:58','','N','Success'),(3021,0,0,'gen005','riya','2025-12-02 15:36:27','2025-12-03 11:17:51','','N','Success'),(3022,0,0,'gen005','Reception','2025-12-02 16:06:15','2025-12-03 20:29:37','','N','Success'),(3023,0,0,'gen005','MO','2025-12-02 16:08:22','2025-12-02 18:20:28','','N','Success'),(3024,0,0,'gen005','shweta','2025-12-02 16:09:02','2025-12-02 17:51:59','','N','Success'),(3025,0,0,'gen005','Mo','2025-12-02 16:23:54','2025-12-02 18:20:28','','N','Success'),(3026,0,0,'GEN005','MO','2025-12-02 16:44:40','2025-12-02 18:20:28','','N','Success'),(3027,0,0,'GEN005','MO','2025-12-02 16:50:38','2025-12-02 18:20:28','','N','Success'),(3028,0,0,'gen005','darshan','2025-12-02 17:10:19','2025-12-17 19:03:58','','N','Success'),(3029,0,0,'gen005','Vishal','2025-12-02 17:13:33','2025-12-03 19:31:38','','N','Success'),(3030,0,0,'gen005','Manshi','2025-12-02 17:16:37','2025-12-02 17:18:22','','N','Success'),(3031,0,0,'gen005','janvi','2025-12-02 17:17:16','2025-12-04 13:35:17','','N','Success'),(3032,0,0,'gen005','Manshi','2025-12-02 17:18:31','2025-12-02 18:57:18','','N','Success'),(3033,0,0,'gen005','Manshi','2025-12-02 17:28:20','2025-12-02 18:57:18','','N','Success'),(3034,0,0,'GEN005','shweta','2025-12-02 17:52:13','2025-12-02 20:34:26','','N','Success'),(3035,0,0,'gen005','Drjayant','2025-12-02 18:05:01','2025-12-03 13:21:14','','N','Success'),(3036,0,0,'gen005','drarchit','2025-12-02 18:08:59','2025-12-02 19:44:43','','N','Success'),(3037,0,0,'gen005','MO','2025-12-02 18:34:01','2025-12-04 22:07:31','','N','Success'),(3038,0,0,'gen005','Drpratapsi','2025-12-02 18:34:28','0000-00-00 00:00:00','','Y','Success'),(3039,0,0,'gen005','MO','2025-12-02 18:37:48','2025-12-04 22:07:31','','N','Success'),(3040,0,0,'gen005','Vishal','2025-12-02 18:44:23','2025-12-03 19:31:38','','N','Success'),(3041,0,0,'GEN005','Manshi','2025-12-02 18:50:27','2025-12-02 18:57:18','','N','Success'),(3042,0,0,'GEN005','Manshi','2025-12-02 19:03:09','2025-12-03 10:13:11','','N','Success'),(3043,0,0,'GEN005','Drsagar','2025-12-02 19:15:26','0000-00-00 00:00:00','','Y','Success'),(3044,0,0,'gen005','janvi','2025-12-02 19:34:20','2025-12-04 13:35:17','','N','Success'),(3045,0,0,'GEN005','drarchit','2025-12-02 19:45:44','2025-12-03 12:42:28','','N','Success'),(3046,0,0,'gen005','MO','2025-12-02 19:53:13','2025-12-04 22:07:31','','N','Success'),(3047,0,0,'GEN005','Drridham','2025-12-02 19:56:52','2025-12-06 20:01:44','','N','Success'),(3048,0,0,'gen005','Vishal','2025-12-02 20:32:37','2025-12-03 19:31:38','','N','Success'),(3049,0,0,'GEN005','Janvi','2025-12-02 20:34:31','2025-12-04 13:35:17','','N','Success'),(3050,0,0,'GEN005','MO','2025-12-02 23:44:45','2025-12-04 22:07:31','','N','Success'),(3051,0,0,'gen005','MO','2025-12-03 00:53:18','2025-12-04 22:07:31','','N','Success'),(3052,0,0,'gen005','Reception','2025-12-03 08:40:39','2025-12-03 20:29:37','','N','Success'),(3053,0,0,'gen005','janvi','2025-12-03 09:03:35','2025-12-04 13:35:17','','N','Success'),(3054,0,0,'gen005','riya','2025-12-03 09:34:36','2025-12-03 11:17:51','','N','Success'),(3055,0,0,'gen005','Dharmishth','2025-12-03 09:35:46','0000-00-00 00:00:00','','Y','Success'),(3056,0,0,'gen005','Dharmishth','2025-12-03 09:48:57','0000-00-00 00:00:00','','Y','Success'),(3057,0,0,'gen005','Dharmishth','2025-12-03 09:50:50','0000-00-00 00:00:00','','Y','Success'),(3058,0,0,'gen005','Dharmishth','2025-12-03 09:51:10','0000-00-00 00:00:00','','Y','Success'),(3059,0,0,'GEN005','MO','2025-12-03 10:06:58','2025-12-04 22:07:31','','N','Success'),(3060,0,0,'gen005','Reception','2025-12-03 10:11:03','2025-12-03 20:29:37','','N','Success'),(3061,0,0,'GEN005','Manshi','2025-12-03 10:12:56','2025-12-03 10:13:11','','N','Success'),(3062,0,0,'GEN005','Manshi','2025-12-03 10:13:06','2025-12-03 10:13:11','','N','Success'),(3063,0,0,'GEN005','Manshi','2025-12-03 10:13:32','2025-12-03 20:04:18','','N','Success'),(3064,0,0,'gen005','Urvashi','2025-12-03 10:20:31','2025-12-03 14:03:47','','N','Success'),(3065,0,0,'gen005','darshan','2025-12-03 10:37:04','2025-12-17 19:03:58','','N','Success'),(3066,0,0,'gen005','Drpratapsi','2025-12-03 10:51:42','0000-00-00 00:00:00','','Y','Success'),(3067,0,0,'gen005','Drjayant','2025-12-03 11:06:46','2025-12-03 13:21:14','','N','Success'),(3068,0,0,'gen005','drarchit','2025-12-03 11:12:08','2025-12-03 12:42:28','','N','Success'),(3069,0,0,'gen005','riya','2025-12-03 11:18:04','2025-12-03 12:54:27','','N','Success'),(3070,0,0,'gen005','riya','2025-12-03 11:23:06','2025-12-03 12:54:27','','N','Success'),(3071,0,0,'GEN005','Drsagar','2025-12-03 11:28:41','0000-00-00 00:00:00','','Y','Success'),(3072,0,0,'GEN005','MO','2025-12-03 11:40:30','2025-12-04 22:07:31','','N','Success'),(3073,0,0,'gen005','Manshi','2025-12-03 11:52:20','2025-12-03 20:04:18','','N','Success'),(3074,0,0,'gen005','Manshi','2025-12-03 11:53:50','2025-12-03 20:04:18','','N','Success'),(3075,0,0,'gen005','Manshi','2025-12-03 12:17:15','2025-12-03 20:04:18','','N','Success'),(3076,0,0,'gen005','Dharmishth','2025-12-03 12:18:22','0000-00-00 00:00:00','','Y','Success'),(3077,0,0,'GEN005','drarchit','2025-12-03 12:43:16','2025-12-03 12:44:11','','N','Success'),(3078,0,0,'GEN005','drarchit','2025-12-03 12:43:18','2025-12-03 12:44:11','','N','Success'),(3079,0,0,'GEN005','drarchit','2025-12-03 12:44:50','2025-12-04 19:49:14','','N','Success'),(3080,0,0,'GEN005','drarchit','2025-12-03 12:44:57','2025-12-04 19:49:14','','N','Success'),(3081,0,0,'gen005','riya','2025-12-03 12:48:51','2025-12-03 12:54:27','','N','Success'),(3082,0,0,'GEN005','MO','2025-12-03 12:58:58','2025-12-04 22:07:31','','N','Success'),(3083,0,0,'gen005','riya','2025-12-03 13:11:56','2025-12-03 14:42:11','','N','Success'),(3084,0,0,'GEN005','MO','2025-12-03 13:40:32','2025-12-04 22:07:31','','N','Success'),(3085,0,0,'gen005','riya','2025-12-03 13:45:42','2025-12-03 14:42:11','','N','Success'),(3086,0,0,'gen005','shweta','2025-12-03 14:03:54','2025-12-03 17:15:29','','N','Success'),(3087,0,0,'gen005','riya','2025-12-03 14:11:14','2025-12-03 14:42:11','','N','Success'),(3088,0,0,'gen005','shweta','2025-12-03 14:46:33','2025-12-03 17:15:29','','N','Success'),(3089,0,0,'gen005','Reception','2025-12-03 15:15:36','2025-12-03 20:29:37','','N','Success'),(3090,0,0,'GEN005','MO','2025-12-03 15:21:10','2025-12-04 22:07:31','','N','Success'),(3091,0,0,'gen005','riya','2025-12-03 15:21:42','2025-12-03 22:21:39','','N','Success'),(3092,0,0,'gen005','shweta','2025-12-03 16:35:36','2025-12-03 17:15:29','','N','Success'),(3093,0,0,'gen005','shweta','2025-12-03 16:35:38','2025-12-03 17:15:29','','N','Success'),(3094,0,0,'gen005','janvi','2025-12-03 16:40:07','2025-12-04 13:35:17','','N','Success'),(3095,0,0,'gen005','darshan','2025-12-03 16:58:14','2025-12-17 19:03:58','','N','Success'),(3096,0,0,'gen005','Manshi','2025-12-03 17:08:24','2025-12-03 20:04:18','','N','Success'),(3097,0,0,'GEN005','Urvashi','2025-12-03 17:15:35','2025-12-04 15:07:01','','N','Success'),(3098,0,0,'gen005','Vishal','2025-12-03 17:33:28','2025-12-03 19:31:38','','N','Success'),(3099,0,0,'gen005','darshan','2025-12-03 17:56:53','2025-12-17 19:03:58',_binary '192.0.0.4','N','Success'),(3100,0,0,'gen005','janvi','2025-12-03 17:57:14','2025-12-04 13:35:17','','N','Success'),(3101,0,0,'gen005','Vishal','2025-12-03 18:07:50','2025-12-03 19:31:38','','N','Success'),(3102,0,0,'gen005','Drpratapsi','2025-12-03 18:09:53','0000-00-00 00:00:00','','Y','Success'),(3103,0,0,'gen005','drarchit','2025-12-03 18:12:32','2025-12-04 19:49:14','','N','Success'),(3104,0,0,'gen005','Drjayant','2025-12-03 18:19:10','2025-12-03 19:50:26','','N','Success'),(3105,0,0,'GEN005','Drsagar','2025-12-03 18:31:45','0000-00-00 00:00:00','','Y','Success'),(3106,0,0,'GEN005','Drridham','2025-12-03 18:52:41','2025-12-06 20:01:44','','N','Success'),(3107,0,0,'GEN005','Drsagar','2025-12-03 19:16:02','0000-00-00 00:00:00','','Y','Success'),(3108,0,0,'gen005','Vishal','2025-12-03 19:31:44','2025-12-03 20:44:37','','N','Success'),(3109,0,0,'GEN005','Vishal','2025-12-03 20:39:16','2025-12-03 20:44:37','','N','Success'),(3110,0,0,'GEN005','Vishal','2025-12-03 20:44:52','2025-12-03 21:59:06','','N','Success'),(3111,0,0,'gen005','Vishal','2025-12-03 20:49:34','2025-12-03 21:59:06','','N','Success'),(3112,0,0,'GEN005','Urvashi','2025-12-03 20:52:18','2025-12-04 15:07:01','','N','Success'),(3113,0,0,'GEN005','Urvashi','2025-12-03 20:56:21','2025-12-04 15:07:01','','N','Success'),(3114,0,0,'gen005','MO','2025-12-03 21:08:47','2025-12-04 22:07:31','','N','Success'),(3115,0,0,'gen005','MO','2025-12-03 21:12:55','2025-12-04 22:07:31','','N','Success'),(3116,0,0,'gen005','Mo','2025-12-03 21:55:13','2025-12-04 22:07:31','','N','Success'),(3117,0,0,'gen005','Vishal','2025-12-03 21:59:12','2025-12-03 22:34:07','','N','Success'),(3118,0,0,'gen005','Vishal','2025-12-03 21:59:15','2025-12-03 22:34:07','','N','Success'),(3119,0,0,'gen005','SWETA','2025-12-03 22:16:23','2025-12-03 22:16:23','','N','Failure'),(3120,0,0,'gen005','Sweta','2025-12-03 22:16:28','2025-12-03 22:16:28','','N','Failure'),(3121,0,0,'gen005','Reception','2025-12-03 22:16:45','2025-12-03 22:18:31','','N','Success'),(3122,0,0,'gen005','Riya','2025-12-03 22:18:54','2025-12-03 22:21:39','','N','Success'),(3123,0,0,'gen005','Vishal','2025-12-03 22:21:45','2025-12-03 22:34:07','','N','Success'),(3124,0,0,'gen005','Vishal','2025-12-03 22:51:30','2025-12-04 19:16:22','','N','Success'),(3125,0,0,'gen005','MO','2025-12-03 23:40:10','2025-12-04 22:07:31','','N','Success'),(3126,0,0,'gen005','Mo','2025-12-04 00:23:58','2025-12-04 22:07:31','','N','Success'),(3127,0,0,'gen005','MO','2025-12-04 01:04:22','2025-12-04 22:07:31','','N','Success'),(3128,0,0,'gen005','Mo','2025-12-04 06:26:50','2025-12-04 22:07:31','','N','Success'),(3129,0,0,'GEN005','Vishal','2025-12-04 06:54:20','2025-12-04 19:16:22','','N','Success'),(3130,0,0,'gen005','MO','2025-12-04 07:40:31','2025-12-04 22:07:31','','N','Success'),(3131,0,0,'gen005','Reception','2025-12-04 08:39:43','2025-12-04 10:20:24','','N','Success'),(3132,0,0,'GEN005','MO','2025-12-04 08:45:08','2025-12-04 22:07:31','','N','Success'),(3133,0,0,'gen005','janvi','2025-12-04 09:12:30','2025-12-04 13:35:17','','N','Success'),(3134,0,0,'gen005','Dharmishth','2025-12-04 09:20:09','0000-00-00 00:00:00','','Y','Success'),(3135,0,0,'gen005','riya','2025-12-04 09:34:07','2025-12-04 09:57:32','','N','Success'),(3136,0,0,'gen005','Dharmishth','2025-12-04 09:36:36','0000-00-00 00:00:00','','Y','Success'),(3137,0,0,'gen005','Dharmishth','2025-12-04 09:37:29','0000-00-00 00:00:00','','Y','Success'),(3138,0,0,'gen005','Riya','2025-12-04 09:52:25','2025-12-04 09:57:32','','N','Success'),(3139,0,0,'gen005','Riya','2025-12-04 09:58:18','2025-12-04 10:02:37','','N','Success'),(3140,0,0,'gen005','MO','2025-12-04 10:15:32','2025-12-04 22:07:31','','N','Success'),(3141,0,0,'gen005','shweta','2025-12-04 10:21:08','2025-12-04 10:54:00','','N','Success'),(3142,0,0,'gen005','shweta','2025-12-04 10:21:09','2025-12-04 10:54:00','','N','Success'),(3143,0,0,'gen005','Urvashi','2025-12-04 10:24:40','2025-12-04 15:07:01','','N','Success'),(3144,0,0,'gen005','Manshi','2025-12-04 10:37:31','2025-12-04 12:08:01','','N','Success'),(3145,0,0,'gen005','Manshi','2025-12-04 10:37:39','2025-12-04 12:08:01','','N','Success'),(3146,0,0,'gen005','darshan','2025-12-04 10:47:28','2025-12-17 19:03:58','','N','Success'),(3147,0,0,'gen005','Reception','2025-12-04 10:54:12','2025-12-04 20:34:41','','N','Success'),(3148,0,0,'gen005','Drjayant','2025-12-04 11:11:32','2025-12-04 18:21:12','','N','Success'),(3149,0,0,'GEN005','drarchit','2025-12-04 11:22:08','2025-12-04 19:49:14','','N','Success'),(3150,0,0,'gen005','Manshi','2025-12-04 11:26:18','2025-12-04 12:08:01','','N','Success'),(3151,0,0,'GEN005','MO','2025-12-04 11:35:17','2025-12-04 22:07:31','','N','Success'),(3152,0,0,'GEN005','Drridham','2025-12-04 11:50:00','2025-12-06 20:01:44','','N','Success'),(3153,0,0,'gen005','Manshi','2025-12-04 12:08:20','2025-12-04 13:38:42','','N','Success'),(3154,0,0,'gen005','Manshi','2025-12-04 12:08:34','2025-12-04 13:38:42','','N','Success'),(3155,0,0,'GEN005','MO','2025-12-04 12:33:53','2025-12-04 22:07:31','','N','Success'),(3156,0,0,'gen005','Manshi','2025-12-04 12:53:05','2025-12-04 13:38:42','','N','Success'),(3157,0,0,'gen005','riya','2025-12-04 13:17:16','2025-12-04 15:37:44','','N','Success'),(3158,0,0,'gen005','janvi','2025-12-04 13:37:22','2025-12-04 15:22:52','','N','Success'),(3159,0,0,'gen005','Drpratapsi','2025-12-04 13:43:42','0000-00-00 00:00:00','','Y','Success'),(3160,0,0,'GEN005','shweta','2025-12-04 15:10:44','2025-12-04 17:23:14','','N','Success'),(3161,0,0,'gen005','Mo','2025-12-04 15:36:16','2025-12-04 22:07:31','','N','Success'),(3162,0,0,'gen005','riya','2025-12-04 15:40:41','2025-12-04 16:34:29','','N','Success'),(3163,0,0,'GEN005','MO','2025-12-04 15:52:28','2025-12-04 22:07:31','','N','Success'),(3164,0,0,'gen005','Reception','2025-12-04 16:06:20','2025-12-04 20:34:41','','N','Success'),(3165,0,0,'gen005','shweta','2025-12-04 16:33:13','2025-12-04 17:23:14','','N','Success'),(3166,0,0,'gen005','shweta','2025-12-04 16:33:14','2025-12-04 17:23:14','','N','Success'),(3167,0,0,'gen005','janvi','2025-12-04 16:37:17','2025-12-06 14:08:31','','N','Success'),(3168,0,0,'gen005','janvi','2025-12-04 16:37:39','2025-12-06 14:08:31','','N','Success'),(3169,0,0,'gen005','riya','2025-12-04 16:38:40','2025-12-04 17:05:21','','N','Success'),(3170,0,0,'gen005','Reception','2025-12-04 16:39:57','2025-12-04 20:34:41','','N','Success'),(3171,0,0,'gen005','Drpratapsi','2025-12-04 16:47:30','0000-00-00 00:00:00','','Y','Success'),(3172,0,0,'GEN005','MO','2025-12-04 16:47:55','2025-12-04 22:07:31','','N','Success'),(3173,0,0,'gen005','darshan','2025-12-04 17:05:47','2025-12-17 19:03:58','','N','Success'),(3174,0,0,'gen005','Vishal','2025-12-04 17:05:51','2025-12-04 19:16:22','','N','Success'),(3175,0,0,'gen005','Vishal','2025-12-04 17:22:21','2025-12-04 17:22:21','','N','Failure'),(3176,0,0,'gen005','janvi','2025-12-04 17:22:30','2025-12-06 14:08:31','','N','Success'),(3177,0,0,'gen005','Vishal','2025-12-04 17:22:31','2025-12-04 19:16:22','','N','Success'),(3178,0,0,'gen005','Manshi','2025-12-04 17:22:40','2025-12-04 18:59:07','','N','Success'),(3179,0,0,'GEN005','Urvashi','2025-12-04 17:23:21','2025-12-05 14:27:02','','N','Success'),(3180,0,0,'GEN005','drarchit','2025-12-04 17:59:22','2025-12-04 19:49:14','','N','Success'),(3181,0,0,'gen005','drjayant','2025-12-04 18:09:19','2025-12-04 18:09:19','','N','Failure'),(3182,0,0,'gen005','drjayant','2025-12-04 18:10:38','2025-12-04 18:10:38','','N','Failure'),(3183,0,0,'gen005','drjayant','2025-12-04 18:11:28','2025-12-04 18:11:28','','N','Failure'),(3184,0,0,'GEN005','MO','2025-12-04 18:12:45','2025-12-04 22:07:31','','N','Success'),(3185,0,0,'gen005','drjayant','2025-12-04 18:15:16','2025-12-04 18:15:16','','N','Failure'),(3186,0,0,'gen005','drjayant','2025-12-04 18:19:17','2025-12-04 18:19:17','','N','Failure'),(3187,0,0,'gen005','Drjayant','2025-12-04 18:20:52','2025-12-04 18:21:12','','N','Success'),(3188,0,0,'gen005','Drjayant','2025-12-04 18:21:19','2025-12-05 13:15:57','','N','Success'),(3189,0,0,'gen005','Manshi','2025-12-04 19:00:39','2025-12-05 11:56:18','','N','Success'),(3190,0,0,'gen005','Manshi','2025-12-04 19:02:15','2025-12-05 11:56:18','','N','Success'),(3191,0,0,'gen005','janvi','2025-12-04 19:03:40','2025-12-06 14:08:31','','N','Success'),(3192,0,0,'gen005','Vishal','2025-12-04 19:16:26','2025-12-04 19:38:19','','N','Success'),(3193,0,0,'gen005','riya','2025-12-04 19:38:25','2025-12-04 19:38:50','','N','Success'),(3194,0,0,'gen005','Vishal','2025-12-04 19:38:54','2025-12-04 19:39:05','','N','Success'),(3195,0,0,'gen005','riya','2025-12-04 19:39:10','2025-12-04 22:08:11','','N','Success'),(3196,0,0,'GEN005','drarchit','2025-12-04 20:08:59','2025-12-05 13:01:49','','N','Success'),(3197,0,0,'GEN005','drarchit','2025-12-04 20:10:42','2025-12-05 13:01:49','','N','Success'),(3198,0,0,'gen005','Mo','2025-12-04 22:05:07','2025-12-04 22:07:31','','N','Success'),(3199,0,0,'gen005','Mo','2025-12-04 22:07:54','2025-12-04 22:33:52','','N','Success'),(3200,0,0,'gen005','Mo','2025-12-04 22:08:20','2025-12-04 22:33:52','','N','Success'),(3201,0,0,'gen005','Vishal','2025-12-04 22:33:57','2025-12-04 22:37:54','','N','Success'),(3202,0,0,'gen005','Vishal','2025-12-04 22:37:58','2025-12-08 18:20:28','','N','Success'),(3203,0,0,'GEN005','Manshi','2025-12-05 00:36:53','2025-12-05 11:56:18','','N','Success'),(3204,0,0,'GEN005','MO','2025-12-05 00:37:03','2025-12-05 00:48:48','','N','Success'),(3205,0,0,'GEN005','MO','2025-12-05 01:00:11','2025-12-05 07:20:51','','N','Success'),(3206,0,0,'GEN005','MO','2025-12-05 06:50:39','2025-12-05 07:20:51','','N','Success'),(3207,0,0,'GEN005','MO','2025-12-05 06:53:50','2025-12-05 07:20:51','','N','Success'),(3208,0,0,'GEN005','MO','2025-12-05 07:15:35','2025-12-05 07:20:51','','N','Success'),(3209,0,0,'GEN005','MO','2025-12-05 08:04:37','2025-12-10 15:59:18','','N','Success'),(3210,0,0,'gen005','Reception','2025-12-05 08:37:22','2025-12-05 15:07:51','','N','Success'),(3211,0,0,'gen005','thims','2025-12-05 08:59:09','2025-12-11 11:33:32','','N','Success'),(3212,0,0,'GEN005','MO','2025-12-05 09:01:36','2025-12-10 15:59:18','','N','Success'),(3213,0,0,'gen005','janvi','2025-12-05 09:09:52','2025-12-06 14:08:31','','N','Success'),(3214,0,0,'gen005','Dharmishth','2025-12-05 09:11:56','0000-00-00 00:00:00','','Y','Success'),(3215,0,0,'gen005','Dharmishth','2025-12-05 09:33:03','0000-00-00 00:00:00','','Y','Success'),(3216,0,0,'gen005','janvi','2025-12-05 09:38:11','2025-12-06 14:08:31','','N','Success'),(3217,0,0,'GEN005','shweta','2025-12-05 09:44:52','2025-12-05 10:19:34','','N','Success'),(3218,0,0,'GEN005','shweta','2025-12-05 09:46:04','2025-12-05 10:19:34','','N','Success'),(3219,0,0,'gen005','Vishal','2025-12-05 09:47:12','2025-12-08 18:20:28','','N','Success'),(3220,0,0,'gen005','Mo','2025-12-05 10:16:06','2025-12-10 15:59:18','','N','Success'),(3221,0,0,'gen005','Dharmishth','2025-12-05 10:16:19','0000-00-00 00:00:00','','Y','Success'),(3222,0,0,'GEN005','Urvashi','2025-12-05 10:19:42','2025-12-05 14:27:02','','N','Success'),(3223,0,0,'gen005','Manshi','2025-12-05 10:25:58','2025-12-05 11:56:18','','N','Success'),(3224,0,0,'gen005','darshan','2025-12-05 10:47:38','2025-12-17 19:03:58','','N','Success'),(3225,0,0,'gen005','Drpratapsi','2025-12-05 10:48:39','0000-00-00 00:00:00','','Y','Success'),(3226,0,0,'gen005','Drjayant','2025-12-05 11:03:46','2025-12-05 11:03:46','','N','Failure'),(3227,0,0,'gen005','thims','2025-12-05 11:09:14','2025-12-11 11:33:32','','N','Success'),(3228,0,0,'gen005','Vishal','2025-12-05 11:10:38','2025-12-08 18:20:28','','N','Success'),(3229,0,0,'gen005','Drjayant','2025-12-05 11:12:49','2025-12-05 13:15:57','','N','Success'),(3230,0,0,'gen005','mo','2025-12-05 11:21:20','2025-12-10 15:59:18','','N','Success'),(3231,0,0,'GEN005','drarchit','2025-12-05 11:23:55','2025-12-05 13:01:49','','N','Success'),(3232,0,0,'gen005','Vishal','2025-12-05 11:31:14','2025-12-08 18:20:28','','N','Success'),(3233,0,0,'gen005','Vishal','2025-12-05 11:45:42','2025-12-08 18:20:28','','N','Success'),(3234,0,0,'GEN005','Manshi','2025-12-05 12:15:22','2025-12-05 18:50:36','','N','Success'),(3235,0,0,'GEN005','drarchit','2025-12-05 13:04:01','2025-12-08 12:46:15','','N','Success'),(3236,0,0,'gen005','Drpratapsi','2025-12-05 13:05:24','0000-00-00 00:00:00','','Y','Success'),(3237,0,0,'gen005','shweta','2025-12-05 14:36:17','2025-12-05 17:35:03','','N','Success'),(3238,0,0,'gen005','Reception','2025-12-05 15:45:21','2025-12-06 14:37:54','','N','Success'),(3239,0,0,'gen005','shweta','2025-12-05 16:28:23','2025-12-05 17:35:03','','N','Success'),(3240,0,0,'gen005','Vishal','2025-12-05 16:53:45','2025-12-08 18:20:28','','N','Success'),(3241,0,0,'gen005','janvi','2025-12-05 16:56:27','2025-12-06 14:08:31','','N','Success'),(3242,0,0,'GEN005','mo','2025-12-05 16:59:52','2025-12-10 15:59:18','','N','Success'),(3243,0,0,'gen005','Vishal','2025-12-05 17:04:04','2025-12-08 18:20:28','','N','Success'),(3244,0,0,'gen005','darshan','2025-12-05 17:05:04','2025-12-17 19:03:58','','N','Success'),(3245,0,0,'gen005','Manshi','2025-12-05 17:20:23','2025-12-05 18:50:36','','N','Success'),(3246,0,0,'gen005','Manshi','2025-12-05 17:20:31','2025-12-05 18:50:36','','N','Success'),(3247,0,0,'GEN005','Urvashi','2025-12-05 17:35:10','2025-12-06 14:26:33','','N','Success'),(3248,0,0,'gen005','Drjayant','2025-12-05 18:06:39','2025-12-05 19:44:02','','N','Success'),(3249,0,0,'GEN005','drarchit','2025-12-05 18:10:28','2025-12-08 12:46:15','','N','Success'),(3250,0,0,'GEN005','mo','2025-12-05 18:13:31','2025-12-10 15:59:18','','N','Success'),(3251,0,0,'gen005','Drpratapsi','2025-12-05 18:18:46','0000-00-00 00:00:00','','Y','Success'),(3252,0,0,'GEN005','Drridham','2025-12-05 18:28:33','2025-12-06 20:01:44','','N','Success'),(3253,0,0,'gen005','Manshi','2025-12-05 18:52:44','2025-12-10 11:44:19','','N','Success'),(3254,0,0,'gen005','Manshi','2025-12-05 18:52:56','2025-12-10 11:44:19','','N','Success'),(3255,0,0,'GEN005','mo','2025-12-05 19:26:56','2025-12-10 15:59:18','','N','Success'),(3256,0,0,'gen005','Riya ','2025-12-05 19:37:51','2025-12-05 19:37:51','','N','Failure'),(3257,0,0,'gen005','Riya ','2025-12-05 19:38:05','2025-12-05 19:38:05','','N','Failure'),(3258,0,0,'gen005','Riya','2025-12-05 19:38:10','2025-12-05 21:36:15','','N','Success'),(3259,0,0,'GEN005','mo','2025-12-05 20:58:16','2025-12-10 15:59:18','','N','Success'),(3260,0,0,'gen005','Vishal','2025-12-05 21:40:48','2025-12-08 18:20:28','','N','Success'),(3261,0,0,'gen005','Mo','2025-12-05 22:01:07','2025-12-10 15:59:18','','N','Success'),(3262,0,0,'GEN005','mo','2025-12-06 01:11:00','2025-12-10 15:59:18','','N','Success'),(3263,0,0,'gen005','Reception','2025-12-06 08:44:54','2025-12-06 14:37:54','','N','Success'),(3264,0,0,'gen005','riya','2025-12-06 09:18:22','2025-12-06 09:18:22','','N','Failure'),(3265,0,0,'gen005','riya','2025-12-06 09:18:46','2025-12-06 11:29:50','','N','Success'),(3266,0,0,'gen005','shweta','2025-12-06 09:20:45','2025-12-06 10:21:01','','N','Success'),(3267,0,0,'gen005','Dharmishth','2025-12-06 09:33:00','0000-00-00 00:00:00','','Y','Success'),(3268,0,0,'gen005','janvi','2025-12-06 09:37:54','2025-12-06 14:08:31','','N','Success'),(3269,0,0,'GEN005','mo','2025-12-06 09:45:06','2025-12-10 15:59:18','','N','Success'),(3270,0,0,'gen005','Dharmishth','2025-12-06 09:56:31','0000-00-00 00:00:00','','Y','Success'),(3271,0,0,'gen005','Dharmishth','2025-12-06 10:16:54','0000-00-00 00:00:00','','Y','Success'),(3272,0,0,'gen005','Manshi','2025-12-06 10:18:54','2025-12-10 11:44:19','','N','Success'),(3273,0,0,'gen005','Dharmishth','2025-12-06 10:21:01','0000-00-00 00:00:00','','Y','Success'),(3274,0,0,'GEN005','Urvashi','2025-12-06 10:21:07','2025-12-06 14:26:33','','N','Success'),(3275,0,0,'gen005','Drpratapsi','2025-12-06 10:32:35','0000-00-00 00:00:00','','Y','Success'),(3276,0,0,'gen005','darshan','2025-12-06 10:55:19','2025-12-17 19:03:58','','N','Success'),(3277,0,0,'gen005','riya','2025-12-06 11:22:54','2025-12-06 11:29:50','','N','Success'),(3278,0,0,'GEN005','Drridham','2025-12-06 11:23:53','2025-12-06 20:01:44','','N','Success'),(3279,0,0,'GEN005','drarchit','2025-12-06 11:27:21','2025-12-08 12:46:15','','N','Success'),(3280,0,0,'gen005','riya','2025-12-06 11:34:40','2025-12-06 14:56:37','','N','Success'),(3281,0,0,'gen005','Drjayant','2025-12-06 11:59:41','2025-12-06 13:27:17','','N','Success'),(3282,0,0,'GEN005','mo','2025-12-06 12:02:11','2025-12-10 15:59:18','','N','Success'),(3283,0,0,'gen005','darshan','2025-12-06 12:18:20','2025-12-17 19:03:58','','N','Success'),(3284,0,0,'gen005','riya','2025-12-06 12:18:29','2025-12-06 14:56:37','','N','Success'),(3285,0,0,'GEN005','mo','2025-12-06 12:19:22','2025-12-10 15:59:18','','N','Success'),(3286,0,0,'GEN005','drarchit','2025-12-06 12:23:05','2025-12-08 12:46:15','','N','Success'),(3287,0,0,'gen005','riya','2025-12-06 13:17:28','2025-12-06 14:56:37','','N','Success'),(3288,0,0,'gen005','thims','2025-12-06 14:01:03','2025-12-11 11:33:32','','N','Success'),(3289,0,0,'gen005','shweta','2025-12-06 14:26:39','2025-12-06 14:49:16','','N','Success'),(3290,0,0,'GEN005','mo','2025-12-06 14:38:08','2025-12-10 15:59:18','','N','Success'),(3291,0,0,'gen005','shweta','2025-12-06 15:02:23','2025-12-06 17:19:54','','N','Success'),(3292,0,0,'gen005','riya','2025-12-06 15:43:24','2025-12-08 17:04:10','','N','Success'),(3293,0,0,'gen005','Reception','2025-12-06 16:13:08','2025-12-08 15:03:54','','N','Success'),(3294,0,0,'GEN005','mo','2025-12-06 16:23:28','2025-12-10 15:59:18','','N','Success'),(3295,0,0,'gen005','shweta','2025-12-06 16:31:27','2025-12-06 17:19:54','','N','Success'),(3296,0,0,'gen005','Manshi','2025-12-06 16:57:25','2025-12-10 11:44:19','','N','Success'),(3297,0,0,'GEN005','Urvashi','2025-12-06 17:19:59','2025-12-06 19:25:33','','N','Success'),(3298,0,0,'gen005','Reception','2025-12-06 17:25:05','2025-12-08 15:03:54','','N','Success'),(3299,0,0,'GEN005','Drsagar','2025-12-06 17:25:26','0000-00-00 00:00:00','','Y','Success'),(3300,0,0,'GEN005','Drridham','2025-12-06 17:47:29','2025-12-06 20:01:44','','N','Success'),(3301,0,0,'gen005','riya','2025-12-06 18:23:13','2025-12-08 17:04:10','','N','Success'),(3302,0,0,'GEN005','mo','2025-12-06 18:34:38','2025-12-10 15:59:18','','N','Success'),(3303,0,0,'gen005','Urvashi','2025-12-06 18:43:21','2025-12-06 19:25:33','','N','Success'),(3304,0,0,'gen005','riya','2025-12-06 18:55:23','2025-12-08 17:04:10','','N','Success'),(3305,0,0,'GEN005','drarchit','2025-12-06 18:56:23','2025-12-08 12:46:15','','N','Success'),(3306,0,0,'gen005','Urvashi','2025-12-06 19:12:12','2025-12-06 19:25:33','','N','Success'),(3307,0,0,'GEN005','mo','2025-12-06 19:21:22','2025-12-10 15:59:18','','N','Success'),(3308,0,0,'gen005','Urvashi','2025-12-06 19:27:19','2025-12-07 12:02:49','','N','Success'),(3309,0,0,'GEN005','Drridham','2025-12-06 20:05:29','2025-12-08 19:29:33','','N','Success'),(3310,0,0,'gen005','riya','2025-12-06 20:10:24','2025-12-08 17:04:10','','N','Success'),(3311,0,0,'gen005','riya','2025-12-06 20:41:50','2025-12-08 17:04:10','','N','Success'),(3312,0,0,'gen005','riya','2025-12-06 20:48:15','2025-12-08 17:04:10','','N','Success'),(3313,0,0,'GEN005','Urvashi','2025-12-06 21:30:09','2025-12-07 12:02:49','','N','Success'),(3314,0,0,'GEN005','mo','2025-12-06 21:30:25','2025-12-10 15:59:18','','N','Success'),(3315,0,0,'gen005','riya','2025-12-06 22:09:53','2025-12-08 17:04:10','','N','Success'),(3316,0,0,'GEN005','mo','2025-12-07 00:03:49','2025-12-10 15:59:18','','N','Success'),(3317,0,0,'GEN005','mo','2025-12-07 08:58:02','2025-12-10 15:59:18','','N','Success'),(3318,0,0,'gen005','Janvi','2025-12-07 09:31:28','2025-12-07 12:02:38','','N','Success'),(3319,0,0,'gen005','Janvi','2025-12-07 10:40:30','2025-12-07 12:02:38','','N','Success'),(3320,0,0,'GEN005','mo','2025-12-07 11:00:40','2025-12-10 15:59:18','','N','Success'),(3321,0,0,'gen005','Vishal','2025-12-07 11:41:58','2025-12-08 18:20:28','','N','Success'),(3322,0,0,'gen005','Urvashi','2025-12-07 12:02:44','2025-12-07 12:02:49','','N','Success'),(3323,0,0,'gen005','shweta','2025-12-07 12:02:57','2025-12-07 12:03:02','','N','Success'),(3324,0,0,'gen005','Janvi','2025-12-07 12:03:06','2025-12-08 17:04:03','','N','Success'),(3325,0,0,'gen005','Janvi','2025-12-07 12:37:50','2025-12-08 17:04:03','','N','Success'),(3326,0,0,'GEN005','mo','2025-12-07 14:30:54','2025-12-10 15:59:18','','N','Success'),(3327,0,0,'gen005','Mo','2025-12-07 14:43:51','2025-12-10 15:59:18','','N','Success'),(3328,0,0,'gen005','Vishal','2025-12-07 16:44:41','2025-12-08 18:20:28','','N','Success'),(3329,0,0,'GEN005','mo','2025-12-07 17:02:47','2025-12-10 15:59:18','','N','Success'),(3330,0,0,'gen005','Vishal','2025-12-07 18:23:34','2025-12-08 18:20:28','','N','Success'),(3331,0,0,'GEN005','mo','2025-12-07 19:13:21','2025-12-10 15:59:18','','N','Success'),(3332,0,0,'gen005','Vishal','2025-12-07 19:22:13','2025-12-08 18:20:28','','N','Success'),(3333,0,0,'GEN005','mo','2025-12-07 21:16:14','2025-12-10 15:59:18','','N','Success'),(3334,0,0,'gen005','Vishal','2025-12-07 21:21:50','2025-12-08 18:20:28','','N','Success'),(3335,0,0,'gen005','Mo','2025-12-07 21:34:57','2025-12-10 15:59:18','','N','Success'),(3336,0,0,'gen005','Vishal','2025-12-07 23:13:05','2025-12-08 18:20:28','','N','Success'),(3337,0,0,'gen005','Vishal','2025-12-07 23:53:43','2025-12-08 18:20:28','','N','Success'),(3338,0,0,'GEN005','mo','2025-12-08 00:25:33','2025-12-10 15:59:18','','N','Success'),(3339,0,0,'gen005','Reception','2025-12-08 08:38:07','2025-12-08 15:03:54','','N','Success'),(3340,0,0,'gen005','Urvashi','2025-12-08 08:45:38','2025-12-08 09:28:01','','N','Success'),(3341,0,0,'gen005','Dharmishth','2025-12-08 09:02:34','0000-00-00 00:00:00','','Y','Success'),(3342,0,0,'GEN005','mo','2025-12-08 09:15:52','2025-12-10 15:59:18','','N','Success'),(3343,0,0,'gen005','janvi','2025-12-08 09:16:34','2025-12-08 17:04:03','','N','Success'),(3344,0,0,'gen005','drashti','2025-12-08 09:28:10','2025-12-08 14:47:28','','N','Success'),(3345,0,0,'gen005','riya','2025-12-08 09:30:19','2025-12-08 17:04:10','','N','Success'),(3346,0,0,'gen005','Dharmishth','2025-12-08 09:43:27','0000-00-00 00:00:00','','Y','Success'),(3347,0,0,'gen005','Manshi','2025-12-08 10:09:07','2025-12-10 11:44:19','','N','Success'),(3348,0,0,'gen005','Drpratapsi','2025-12-08 10:13:34','0000-00-00 00:00:00','','Y','Success'),(3349,0,0,'gen005','darshan','2025-12-08 10:39:31','2025-12-08 10:39:31','','N','Failure'),(3350,0,0,'gen005','darshan','2025-12-08 10:39:36','2025-12-08 10:39:36','','N','Failure'),(3351,0,0,'gen005','darshan','2025-12-08 10:39:56','2025-12-08 10:39:56','','N','Failure'),(3352,0,0,'gen005','darshan','2025-12-08 10:40:12','2025-12-08 10:40:12','','N','Failure'),(3353,0,0,'gen005','darshan','2025-12-08 10:40:36','2025-12-08 10:40:36','','N','Failure'),(3354,0,0,'gen005','darshan','2025-12-08 10:40:53','2025-12-17 19:03:58','','N','Success'),(3355,0,0,'gen005','Drpratapsi','2025-12-08 10:41:05','0000-00-00 00:00:00','','Y','Success'),(3356,0,0,'GEN005','mo','2025-12-08 10:49:13','2025-12-10 15:59:18','','N','Success'),(3357,0,0,'GEN005','Drridham','2025-12-08 11:01:21','2025-12-08 19:29:33','','N','Success'),(3358,0,0,'GEN005','drarchit','2025-12-08 11:15:54','2025-12-08 12:46:15','','N','Success'),(3359,0,0,'GEN005','Drsagar','2025-12-08 11:48:11','0000-00-00 00:00:00','','Y','Success'),(3360,0,0,'GEN005','drarchit','2025-12-08 12:51:21','2025-12-08 13:26:32','','N','Success'),(3361,0,0,'GEN005','Drridham','2025-12-08 12:59:08','2025-12-08 19:29:33','','N','Success'),(3362,0,0,'GEN005','drarchit','2025-12-08 13:26:43','2025-12-08 13:30:56','','N','Success'),(3363,0,0,'GEN005','drarchit','2025-12-08 13:31:49','2025-12-10 20:07:16','','N','Success'),(3364,0,0,'GEN005','drarchit','2025-12-08 13:48:01','2025-12-10 20:07:16','','N','Success'),(3365,0,0,'gen005','Drpratapsi','2025-12-08 14:39:44','0000-00-00 00:00:00','','Y','Success'),(3366,0,0,'gen005','Urvashi','2025-12-08 14:47:57','2025-12-08 16:50:30','','N','Success'),(3367,0,0,'gen005','riya','2025-12-08 15:18:06','2025-12-08 17:04:10','','N','Success'),(3368,0,0,'gen005','Reception','2025-12-08 16:20:16','2025-12-08 20:57:53','','N','Success'),(3369,0,0,'gen005','drashti','2025-12-08 16:50:40','2025-12-08 20:38:27','','N','Success'),(3370,0,0,'gen005','janvi','2025-12-08 16:50:55','2025-12-08 17:04:03','','N','Success'),(3371,0,0,'gen005','drashti','2025-12-08 16:51:05','2025-12-08 20:38:27','','N','Success'),(3372,0,0,'GEN005','mo','2025-12-08 16:55:47','2025-12-10 15:59:18','','N','Success'),(3373,0,0,'gen005','darshan','2025-12-08 17:01:05','2025-12-17 19:03:58','','N','Success'),(3374,0,0,'gen005','Manshi','2025-12-08 17:02:54','2025-12-10 11:44:19','','N','Success'),(3375,0,0,'gen005','priyanshi','2025-12-08 17:04:09','2025-12-08 17:29:51','','N','Success'),(3376,0,0,'gen005','riya','2025-12-08 17:05:06','2025-12-09 21:14:20','','N','Success'),(3377,0,0,'gen005','riya','2025-12-08 17:07:59','2025-12-09 21:14:20','','N','Success'),(3378,0,0,'gen005','janvi','2025-12-08 17:29:58','2025-12-09 13:32:54','','N','Success'),(3379,0,0,'gen005','Manshi','2025-12-08 17:41:14','2025-12-10 11:44:19','','N','Success'),(3380,0,0,'GEN005','Drridham','2025-12-08 17:56:04','2025-12-08 19:29:33','','N','Success'),(3381,0,0,'GEN005','drarchit','2025-12-08 18:07:32','2025-12-10 20:07:16','','N','Success'),(3382,0,0,'gen005','Vishal','2025-12-08 18:10:29','2025-12-08 18:20:28','','N','Success'),(3383,0,0,'gen005','Vishal','2025-12-08 18:26:26','2025-12-08 20:05:14','','N','Success'),(3384,0,0,'gen005','Drpratapsi','2025-12-08 18:49:33','0000-00-00 00:00:00','','Y','Success'),(3385,0,0,'GEN005','Drridham','2025-12-08 19:45:37','2025-12-10 12:55:35','','N','Success'),(3386,0,0,'gen005','Vishal','2025-12-08 20:04:05','2025-12-08 20:05:14','','N','Success'),(3387,0,0,'gen005','Vishal','2025-12-08 20:05:44','2025-12-08 20:58:04','','N','Success'),(3388,0,0,'GEN005','drarchit','2025-12-08 20:16:19','2025-12-10 20:07:16','','N','Success'),(3389,0,0,'GEN005','mo','2025-12-08 20:27:45','2025-12-10 15:59:18','','N','Success'),(3390,0,0,'gen005','VISHAL','2025-12-08 20:38:32','2025-12-08 20:58:04','','N','Success'),(3391,0,0,'gen005','shweta','2025-12-08 20:58:10','2025-12-09 20:47:21','','N','Success'),(3392,0,0,'gen005','Vishal','2025-12-08 21:50:40','2025-12-10 22:56:17','','N','Success'),(3393,0,0,'GEN005','mo','2025-12-08 23:11:54','2025-12-10 15:59:18','','N','Success'),(3394,0,0,'gen005','mo','2025-12-09 01:35:40','2025-12-10 15:59:18','','N','Success'),(3395,0,0,'gen005','Reception','2025-12-09 08:39:58','2025-12-09 14:48:50','','N','Success'),(3396,0,0,'gen005','Urvashi','2025-12-09 08:48:04','2025-12-09 09:24:18','','N','Success'),(3397,0,0,'gen005','Vishal','2025-12-09 09:17:05','2025-12-10 22:56:17','','N','Success'),(3398,0,0,'gen005','drashti','2025-12-09 09:24:26','2025-12-09 13:46:29','','N','Success'),(3399,0,0,'gen005','janvi','2025-12-09 09:26:23','2025-12-09 13:32:54','','N','Success'),(3400,0,0,'GEN005','mo','2025-12-09 09:37:28','2025-12-10 15:59:18','','N','Success'),(3401,0,0,'gen005','Vishal','2025-12-09 09:50:33','2025-12-10 22:56:17','','N','Success'),(3402,0,0,'gen005','Manshi','2025-12-09 10:10:24','2025-12-10 11:44:19','','N','Success'),(3403,0,0,'gen005','Dharmishth','2025-12-09 10:16:09','0000-00-00 00:00:00','','Y','Success'),(3404,0,0,'gen005','darshan','2025-12-09 10:46:14','2025-12-17 19:03:58','','N','Success'),(3405,0,0,'GEN005','Drsagar','2025-12-09 11:11:18','0000-00-00 00:00:00','','Y','Success'),(3406,0,0,'gen005','Mo','2025-12-09 11:11:46','2025-12-10 15:59:18','','N','Success'),(3407,0,0,'GEN005','drarchit','2025-12-09 11:17:18','2025-12-10 20:07:16','','N','Success'),(3408,0,0,'GEN005','mo','2025-12-09 11:19:24','2025-12-10 15:59:18','','N','Success'),(3409,0,0,'GEN005','Drridham','2025-12-09 11:30:53','2025-12-10 12:55:35','','N','Success'),(3410,0,0,'GEN005','mo','2025-12-09 12:10:06','2025-12-10 15:59:18','','N','Success'),(3411,0,0,'gen005','Drpratapsi','2025-12-09 12:12:41','0000-00-00 00:00:00','','Y','Success'),(3412,0,0,'GEN005','drarchit','2025-12-09 12:17:03','2025-12-10 20:07:16','','N','Success'),(3413,0,0,'GEN005','drarchit','2025-12-09 12:38:48','2025-12-10 20:07:16','','N','Success'),(3414,0,0,'gen005','Mo','2025-12-09 12:46:30','2025-12-10 15:59:18','','N','Success'),(3415,0,0,'gen005','Vishal','2025-12-09 12:51:09','2025-12-10 22:56:17','','N','Success'),(3416,0,0,'GEN005','mo','2025-12-09 13:02:50','2025-12-10 15:59:18','','N','Success'),(3417,0,0,'GEN005','mo','2025-12-09 13:32:51','2025-12-10 15:59:18','','N','Success'),(3418,0,0,'gen005','janvi','2025-12-09 13:47:08','2025-12-13 13:50:09','','N','Success'),(3419,0,0,'gen005','drashti','2025-12-09 13:48:00','2025-12-09 19:14:43','','N','Success'),(3420,0,0,'gen005','Reception','2025-12-09 15:46:59','2025-12-09 20:43:31','','N','Success'),(3421,0,0,'gen005','riya','2025-12-09 16:12:39','2025-12-09 21:14:20','','N','Success'),(3422,0,0,'gen005','Mo','2025-12-09 16:37:02','2025-12-10 15:59:18','','N','Success'),(3423,0,0,'gen005','drashti','2025-12-09 16:46:08','2025-12-09 19:14:43','','N','Success'),(3424,0,0,'gen005','darshan','2025-12-09 16:59:38','2025-12-17 19:03:58','','N','Success'),(3425,0,0,'gen005','janvi','2025-12-09 16:59:59','2025-12-13 13:50:09','','N','Success'),(3426,0,0,'GEN005','Manshi','2025-12-09 17:19:55','2025-12-10 11:44:19','','N','Success'),(3427,0,0,'GEN005','mo','2025-12-09 17:40:03','2025-12-10 15:59:18','','N','Success'),(3428,0,0,'gen005','Drpratapsi','2025-12-09 17:59:01','0000-00-00 00:00:00','','Y','Success'),(3429,0,0,'gen005','Drjayant','2025-12-09 18:08:34','2025-12-09 20:05:56','','N','Success'),(3430,0,0,'GEN005','drarchit','2025-12-09 18:11:38','2025-12-10 20:07:16','','N','Success'),(3431,0,0,'gen005','Dharmishth','2025-12-09 18:56:41','0000-00-00 00:00:00','','Y','Success'),(3432,0,0,'gen005','Manshi','2025-12-09 19:00:35','2025-12-10 11:44:19','','N','Success'),(3433,0,0,'GEN005','priyanshi','2025-12-09 19:14:49','2025-12-09 20:03:48','','N','Success'),(3434,0,0,'GEN005','mo','2025-12-09 19:22:29','2025-12-10 15:59:18','','N','Success'),(3435,0,0,'gen005','Mo','2025-12-09 19:23:14','2025-12-10 15:59:18','','N','Success'),(3436,0,0,'GEN005','Drridham','2025-12-09 19:25:34','2025-12-10 12:55:35','','N','Success'),(3437,0,0,'gen005','shweta','2025-12-09 20:03:54','2025-12-09 20:47:21','','N','Success'),(3438,0,0,'gen005','Dharmishth','2025-12-09 20:07:07','0000-00-00 00:00:00','','Y','Success'),(3439,0,0,'gen005','Dharmishth','2025-12-09 20:45:21','0000-00-00 00:00:00','','Y','Success'),(3440,0,0,'gen005','Reception','2025-12-09 21:00:12','2025-12-10 20:24:31','','N','Success'),(3441,0,0,'gen005','riya','2025-12-09 21:14:15','2025-12-09 21:14:20','','N','Success'),(3442,0,0,'gen005','riya','2025-12-09 21:14:25','2025-12-10 17:08:55','','N','Success'),(3443,0,0,'GEN005','mo','2025-12-09 23:23:10','2025-12-10 15:59:18','','N','Success'),(3444,0,0,'GEN005','mo','2025-12-10 00:22:03','2025-12-10 15:59:18','','N','Success'),(3445,0,0,'gen005','Reception','2025-12-10 08:42:05','2025-12-10 20:24:31','','N','Success'),(3446,0,0,'gen005','Urvashi','2025-12-10 08:51:31','2025-12-10 09:23:38','','N','Success'),(3447,0,0,'gen005','janvi','2025-12-10 09:03:27','2025-12-13 13:50:09','','N','Success'),(3448,0,0,'gen005','Dharmishth','2025-12-10 09:10:31','0000-00-00 00:00:00','','Y','Success'),(3449,0,0,'GEN005','mo','2025-12-10 09:13:52','2025-12-10 15:59:18','','N','Success'),(3450,0,0,'gen005','drashti','2025-12-10 09:23:45','2025-12-10 13:59:59','','N','Success'),(3451,0,0,'GEN005','riya','2025-12-10 09:33:27','2025-12-10 17:08:55','','N','Success'),(3452,0,0,'gen005','Dharmishth','2025-12-10 09:41:54','0000-00-00 00:00:00','','Y','Success'),(3453,0,0,'gen005','thims','2025-12-10 09:50:34','2025-12-11 11:33:32','','N','Success'),(3454,0,0,'gen005','Dharmishth','2025-12-10 10:03:24','0000-00-00 00:00:00','','Y','Success'),(3455,0,0,'gen005','Manshi','2025-12-10 10:07:00','2025-12-10 11:44:19','','N','Success'),(3456,0,0,'gen005','Dharmishth','2025-12-10 10:34:58','0000-00-00 00:00:00','','Y','Success'),(3457,0,0,'gen005','thims','2025-12-10 10:35:06','2025-12-11 11:33:32','','N','Success'),(3458,0,0,'gen005','Drpratapsi','2025-12-10 10:46:21','0000-00-00 00:00:00','','Y','Success'),(3459,0,0,'gen005','darshan','2025-12-10 10:48:16','2025-12-17 19:03:58','','N','Success'),(3460,0,0,'gen005','Mo','2025-12-10 11:00:59','2025-12-10 15:59:18','','N','Success'),(3461,0,0,'gen005','Dharmishth','2025-12-10 11:02:16','0000-00-00 00:00:00','','Y','Success'),(3462,0,0,'gen005','drarchit','2025-12-10 11:13:25','2025-12-10 20:07:16','','N','Success'),(3463,0,0,'GEN005','riya','2025-12-10 11:14:10','2025-12-10 17:08:55','','N','Success'),(3464,0,0,'gen005','thims','2025-12-10 11:22:09','2025-12-11 11:33:32','','N','Success'),(3465,0,0,'gen005','Drjayant','2025-12-10 11:28:22','2025-12-10 20:03:17','','N','Success'),(3466,0,0,'gen005','Manshi','2025-12-10 11:59:57','2025-12-10 16:58:19','','N','Success'),(3467,0,0,'gen005','Dharmishth','2025-12-10 12:00:04','0000-00-00 00:00:00','','Y','Success'),(3468,0,0,'gen005','Drjayant','2025-12-10 12:23:56','2025-12-10 20:03:17','','N','Success'),(3469,0,0,'gen005','Mo','2025-12-10 12:37:31','2025-12-10 15:59:18','','N','Success'),(3470,0,0,'GEN005','mo','2025-12-10 12:39:08','2025-12-10 15:59:18','','N','Success'),(3471,0,0,'gen005','Manshi','2025-12-10 12:51:14','2025-12-10 16:58:19','','N','Success'),(3472,0,0,'GEN005','mo','2025-12-10 13:08:21','2025-12-10 15:59:18','','N','Success'),(3473,0,0,'gen005','thims','2025-12-10 13:33:07','2025-12-11 11:33:32','','N','Success'),(3474,0,0,'gen005','Urvashi','2025-12-10 14:02:45','2025-12-10 16:52:43','','N','Success'),(3475,0,0,'gen005','Drpratapsi','2025-12-10 14:15:12','0000-00-00 00:00:00','','Y','Success'),(3476,0,0,'GEN005','Urvashi','2025-12-10 15:16:19','2025-12-10 16:52:43','','N','Success'),(3477,0,0,'GEN005','mo','2025-12-10 15:16:39','2025-12-10 15:59:18','','N','Success'),(3478,0,0,'GEN005','riya','2025-12-10 15:19:16','2025-12-10 17:08:55','','N','Success'),(3479,0,0,'gen005','Reception','2025-12-10 15:48:17','2025-12-10 20:24:31','','N','Success'),(3480,0,0,'GEN005','riya','2025-12-10 16:00:15','2025-12-10 16:00:15','','N','Failure'),(3481,0,0,'GEN005','riya','2025-12-10 16:00:23','2025-12-10 16:00:23','','N','Failure'),(3482,0,0,'GEN005','riya','2025-12-10 16:00:30','2025-12-10 16:00:30','','N','Failure'),(3483,0,0,'GEN005','Riya','2025-12-10 16:00:34','2025-12-10 16:00:34','','N','Failure'),(3484,0,0,'GEN005','Riya','2025-12-10 16:00:39','2025-12-10 16:00:39','','N','Failure'),(3485,0,0,'GEN005','riya','2025-12-10 16:00:59','2025-12-10 17:08:55','','N','Success'),(3486,0,0,'gen005','janvi','2025-12-10 16:29:31','2025-12-13 13:50:09','','N','Success'),(3487,0,0,'GEN005','riya','2025-12-10 16:44:12','2025-12-10 17:08:55','','N','Success'),(3488,0,0,'gen005','priyanshi','2025-12-10 16:52:52','2025-12-10 19:28:12','','N','Success'),(3489,0,0,'GEN005','Manshi','2025-12-10 16:57:07','2025-12-10 16:58:19','','N','Success'),(3490,0,0,'gen005','Mo','2025-12-10 16:57:46','2025-12-14 11:36:46','','N','Success'),(3491,0,0,'gen005','Manshi','2025-12-10 16:58:34','2025-12-10 18:36:22','','N','Success'),(3492,0,0,'gen005','darshan','2025-12-10 17:05:42','2025-12-17 19:03:58','','N','Success'),(3493,0,0,'GEN005','riya','2025-12-10 17:10:11','2025-12-12 13:54:11','','N','Success'),(3494,0,0,'gen005','janvi','2025-12-10 17:19:10','2025-12-13 13:50:09','','N','Success'),(3495,0,0,'GEN005','mo','2025-12-10 17:52:03','2025-12-14 11:36:46','','N','Success'),(3496,0,0,'GEN005','riya','2025-12-10 17:58:36','2025-12-12 13:54:11','','N','Success'),(3497,0,0,'gen005','Drpratapsi','2025-12-10 18:06:03','0000-00-00 00:00:00','','Y','Success'),(3498,0,0,'GEN005','drarchit','2025-12-10 18:15:05','2025-12-10 20:07:16','','N','Success'),(3499,0,0,'GEN005','Vishal','2025-12-10 18:19:45','2025-12-10 22:56:17','','N','Success'),(3500,0,0,'gen005','Drjayant','2025-12-10 18:28:52','2025-12-10 20:03:17','','N','Success'),(3501,0,0,'GEN005','Manshi','2025-12-10 18:40:13','2025-12-11 12:49:31','','N','Success'),(3502,0,0,'gen005','Manshi','2025-12-10 18:40:22','2025-12-11 12:49:31','','N','Success'),(3503,0,0,'gen005','Dharmishth','2025-12-10 19:24:16','0000-00-00 00:00:00','','Y','Success'),(3504,0,0,'GEN005','shweta','2025-12-10 19:28:18','2025-12-11 14:57:54','','N','Success'),(3505,0,0,'gen005','Dharmishth','2025-12-10 19:33:52','0000-00-00 00:00:00','','Y','Success'),(3506,0,0,'GEN005','drarchit','2025-12-10 20:07:54','2025-12-11 13:09:34','','N','Success'),(3507,0,0,'GEN005','mo','2025-12-10 20:11:18','2025-12-14 11:36:46','','N','Success'),(3508,0,0,'gen005','Reception','2025-12-10 20:32:02','2025-12-10 20:32:02','','N','Failure'),(3509,0,0,'gen005','Reception','2025-12-10 20:32:07','2025-12-10 20:32:07','','N','Failure'),(3510,0,0,'gen005','Reception','2025-12-10 20:32:17','2025-12-11 14:41:52','','N','Success'),(3511,0,0,'GEN005','Vishal','2025-12-10 22:25:48','2025-12-10 22:56:17','','N','Success'),(3512,0,0,'GEN005','Vishal','2025-12-10 23:00:45','2025-12-10 23:01:11','','N','Success'),(3513,0,0,'GEN005','Vishal','2025-12-10 23:01:15','2025-12-11 22:52:29','','N','Success'),(3514,0,0,'GEN005','mo','2025-12-10 23:35:02','2025-12-14 11:36:46','','N','Success'),(3515,0,0,'gen005','Reception','2025-12-11 08:27:18','2025-12-11 14:41:52','','N','Success'),(3516,0,0,'gen005','Dharmishth','2025-12-11 08:46:25','0000-00-00 00:00:00','','Y','Success'),(3517,0,0,'gen005','janvi','2025-12-11 09:20:31','2025-12-13 13:50:09','','N','Success'),(3518,0,0,'gen005','drashti','2025-12-11 09:28:19','2025-12-11 14:06:50','','N','Success'),(3519,0,0,'gen005','Dharmishth','2025-12-11 09:33:32','0000-00-00 00:00:00','','Y','Success'),(3520,0,0,'gen005','Dharmishth','2025-12-11 09:43:31','0000-00-00 00:00:00','','Y','Success'),(3521,0,0,'gen005','Reception','2025-12-11 09:50:25','2025-12-11 14:41:52','','N','Success'),(3522,0,0,'gen005','thims','2025-12-11 10:12:56','2025-12-11 11:33:32','','N','Success'),(3523,0,0,'gen005','Manshi','2025-12-11 10:14:45','2025-12-11 12:49:31','','N','Success'),(3524,0,0,'gen005','Priyanshi','2025-12-11 10:22:17','2025-12-11 10:25:27','','N','Success'),(3525,0,0,'gen005','Riya','2025-12-11 10:25:55','2025-12-12 13:54:11','','N','Success'),(3526,0,0,'gen005','Dharmishth','2025-12-11 10:41:16','0000-00-00 00:00:00','','Y','Success'),(3527,0,0,'gen005','darshan','2025-12-11 10:41:44','2025-12-17 19:03:58','','N','Success'),(3528,0,0,'gen005','Priyanshi','2025-12-11 10:53:06','2025-12-11 11:47:33','','N','Success'),(3529,0,0,'gen005','janvi','2025-12-11 10:58:53','2025-12-13 13:50:09','','N','Success'),(3530,0,0,'GEN005','Drridham','2025-12-11 11:02:05','0000-00-00 00:00:00','','Y','Success'),(3531,0,0,'GEN005','mo','2025-12-11 11:02:37','2025-12-14 11:36:46','','N','Success'),(3532,0,0,'gen005','Drjayant','2025-12-11 11:11:14','2025-12-11 13:32:49','','N','Success'),(3533,0,0,'GEN005','Drsagar','2025-12-11 11:11:56','0000-00-00 00:00:00','','Y','Success'),(3534,0,0,'gen005','thims','2025-12-11 11:18:04','2025-12-11 11:33:32','','N','Success'),(3535,0,0,'GEN005','drarchit','2025-12-11 11:20:47','2025-12-11 13:09:34','','N','Success'),(3536,0,0,'gen005','Riya','2025-12-11 11:48:59','2025-12-12 13:54:11','','N','Success'),(3537,0,0,'gen005','Mo','2025-12-11 11:53:55','2025-12-14 11:36:46','','N','Success'),(3538,0,0,'gen005','Manshi','2025-12-11 12:51:42','2025-12-12 13:36:19','','N','Success'),(3539,0,0,'GEN005','drarchit','2025-12-11 13:11:32','2025-12-11 19:50:10','','N','Success'),(3540,0,0,'gen005','Manshi','2025-12-11 13:23:20','2025-12-12 13:36:19','','N','Success'),(3541,0,0,'GEN005','mo','2025-12-11 13:24:38','2025-12-14 11:36:46','','N','Success'),(3542,0,0,'gen005','Mo','2025-12-11 14:33:39','2025-12-14 11:36:46','','N','Success'),(3543,0,0,'gen005','shweta','2025-12-11 14:45:19','2025-12-11 14:57:54','','N','Success'),(3544,0,0,'gen005','shweta','2025-12-11 15:04:26','2025-12-11 16:39:59','','N','Success'),(3545,0,0,'gen005','Reception','2025-12-11 15:32:44','2025-12-12 10:32:28','','N','Success'),(3546,0,0,'gen005','Mo','2025-12-11 15:43:58','2025-12-14 11:36:46','','N','Success'),(3547,0,0,'gen005','shweta','2025-12-11 16:32:05','2025-12-11 16:39:59','','N','Success'),(3548,0,0,'gen005','drashti','2025-12-11 16:40:09','2025-12-11 18:10:20','','N','Success'),(3549,0,0,'gen005','darshan','2025-12-11 16:54:58','2025-12-17 19:03:58','','N','Success'),(3550,0,0,'GEN005','Manshi','2025-12-11 16:58:11','2025-12-12 13:36:19','','N','Success'),(3551,0,0,'gen005','janvi','2025-12-11 17:11:32','2025-12-13 13:50:09','','N','Success'),(3552,0,0,'gen005','janvi','2025-12-11 17:11:34','2025-12-13 13:50:09','','N','Success'),(3553,0,0,'GEN005','Drridham','2025-12-11 17:50:44','0000-00-00 00:00:00','','Y','Success'),(3554,0,0,'gen005','Vishal','2025-12-11 18:05:47','2025-12-11 22:52:29','','N','Success'),(3555,0,0,'gen005','drashti','2025-12-11 18:11:06','2025-12-11 20:52:53','','N','Success'),(3556,0,0,'gen005','drarchit','2025-12-11 18:15:57','2025-12-11 19:50:10','','N','Success'),(3557,0,0,'gen005','Drjayant','2025-12-11 18:23:23','2025-12-11 20:03:45','','N','Success'),(3558,0,0,'gen005','Vishal','2025-12-11 18:38:31','2025-12-11 22:52:29','','N','Success'),(3559,0,0,'GEN005','Drridham','2025-12-11 18:48:24','0000-00-00 00:00:00','','Y','Success'),(3560,0,0,'GEN005','drarchit','2025-12-11 19:52:41','2025-12-12 13:19:32','','N','Success'),(3561,0,0,'gen005','mo','2025-12-11 20:06:52','2025-12-14 11:36:46','','N','Success'),(3562,0,0,'gen005','Dharmishth','2025-12-11 20:15:06','0000-00-00 00:00:00','','Y','Success'),(3563,0,0,'gen005','Dharmishth','2025-12-11 20:18:41','0000-00-00 00:00:00','','Y','Success'),(3564,0,0,'gen005','Reception','2025-12-11 20:21:09','2025-12-12 10:32:28','','N','Success'),(3565,0,0,'gen005','mo','2025-12-11 22:19:22','2025-12-14 11:36:46','','N','Success'),(3566,0,0,'gen005','Vishal','2025-12-11 22:43:44','2025-12-11 22:52:29','','N','Success'),(3567,0,0,'gen005','Vishal','2025-12-11 22:52:33','2025-12-12 20:16:09','','N','Success'),(3568,0,0,'gen005','mo','2025-12-12 00:04:01','2025-12-14 11:36:46','','N','Success'),(3569,0,0,'gen005','Reception','2025-12-12 08:33:59','2025-12-12 10:32:28','','N','Success'),(3570,0,0,'GEN005','Urvashi','2025-12-12 08:53:36','2025-12-12 09:00:02','','N','Success'),(3571,0,0,'GEN005','Urvashi','2025-12-12 08:58:50','2025-12-12 09:00:02','','N','Success'),(3572,0,0,'GEN005','mo','2025-12-12 09:00:11','2025-12-14 11:36:46','','N','Success'),(3573,0,0,'gen005','Reception','2025-12-12 09:05:20','2025-12-12 10:32:28','','N','Success'),(3574,0,0,'gen005','Reception','2025-12-12 09:12:29','2025-12-12 10:32:28','','N','Success'),(3575,0,0,'gen005','Reception','2025-12-12 09:13:15','2025-12-12 10:32:28','','N','Success'),(3576,0,0,'gen005','janvi','2025-12-12 09:16:05','2025-12-13 13:50:09','','N','Success'),(3577,0,0,'gen005','drashti','2025-12-12 09:30:38','2025-12-12 12:30:01','','N','Success'),(3578,0,0,'gen005','riya','2025-12-12 09:32:01','2025-12-12 13:54:11','','N','Success'),(3579,0,0,'gen005','Reception','2025-12-12 09:39:58','2025-12-12 10:32:28','','N','Success'),(3580,0,0,'gen005','Reception','2025-12-12 10:10:07','2025-12-12 10:32:28','','N','Success'),(3581,0,0,'gen005','Manshi','2025-12-12 10:21:29','2025-12-12 13:36:19','','N','Success'),(3582,0,0,'gen005','riya','2025-12-12 10:22:04','2025-12-12 13:54:11','','N','Success'),(3583,0,0,'gen005','Reception','2025-12-12 10:32:33','2025-12-12 13:17:08','','N','Success'),(3584,0,0,'gen005','darshan','2025-12-12 10:35:37','2025-12-17 19:03:58','','N','Success'),(3585,0,0,'GEN005','drarchit','2025-12-12 11:01:58','2025-12-12 13:19:32','','N','Success'),(3586,0,0,'gen005','Drjayant','2025-12-12 11:08:40','2025-12-13 13:35:55','','N','Success'),(3587,0,0,'GEN005','mo','2025-12-12 11:28:23','2025-12-14 11:36:46','','N','Success'),(3588,0,0,'gen005','Reception','2025-12-12 11:43:24','2025-12-12 13:17:08','','N','Success'),(3589,0,0,'gen005','priyanshi','2025-12-12 12:30:09','2025-12-13 11:34:35','','N','Success'),(3590,0,0,'gen005','drashti','2025-12-12 12:35:05','2025-12-12 16:36:01','','N','Success'),(3591,0,0,'gen005','Drjayant','2025-12-12 13:01:46','2025-12-13 13:35:55','','N','Success'),(3592,0,0,'gen005','janvi','2025-12-12 13:14:49','2025-12-13 13:50:09','','N','Success'),(3593,0,0,'gen005','Mo','2025-12-12 13:17:16','2025-12-14 11:36:46','','N','Success'),(3594,0,0,'gen005','Reception','2025-12-12 13:17:19','2025-12-12 20:38:26','','N','Success'),(3595,0,0,'GEN005','drarchit','2025-12-12 13:23:33','2025-12-12 19:51:11','','N','Success'),(3596,0,0,'gen005','drashti','2025-12-12 13:42:52','2025-12-12 16:36:01','','N','Success'),(3597,0,0,'gen005','riya','2025-12-12 13:53:15','2025-12-12 13:54:11','','N','Success'),(3598,0,0,'gen005','Drjayant','2025-12-12 13:54:27','2025-12-13 13:35:55','','N','Success'),(3599,0,0,'GEN005','mo','2025-12-12 14:26:18','2025-12-14 11:36:46','','N','Success'),(3600,0,0,'gen005','riya','2025-12-12 14:48:41','2025-12-13 13:28:18','','N','Success'),(3601,0,0,'gen005','Mo','2025-12-12 14:51:56','2025-12-14 11:36:46','','N','Success'),(3602,0,0,'gen005','Urvashi','2025-12-12 15:14:05','2025-12-12 16:12:52','','N','Success'),(3603,0,0,'gen005','Reception','2025-12-12 15:33:26','2025-12-12 20:38:26','','N','Success'),(3604,0,0,'gen005','Reception','2025-12-12 15:33:39','2025-12-12 20:38:26','','N','Success'),(3605,0,0,'gen005','Reception','2025-12-12 16:14:14','2025-12-12 20:38:26','','N','Success'),(3606,0,0,'gen005','Urvashi','2025-12-12 16:22:45','2025-12-12 16:35:40','','N','Success'),(3607,0,0,'GEN005','mo','2025-12-12 16:28:11','2025-12-14 11:36:46','','N','Success'),(3608,0,0,'gen005','drashti','2025-12-12 16:35:48','2025-12-12 16:36:01','','N','Success'),(3609,0,0,'gen005','drashti','2025-12-12 16:36:06','2025-12-12 18:12:09','','N','Success'),(3610,0,0,'GEN005','mo','2025-12-12 16:57:55','2025-12-14 11:36:46','','N','Success'),(3611,0,0,'GEN005','mo','2025-12-12 17:04:07','2025-12-14 11:36:46','','N','Success'),(3612,0,0,'gen005','darshan','2025-12-12 17:06:01','2025-12-17 19:03:58','','N','Success'),(3613,0,0,'gen005','janvi','2025-12-12 17:07:35','2025-12-13 13:50:09','','N','Success'),(3614,0,0,'gen005','riya','2025-12-12 17:10:03','2025-12-13 13:28:18','','N','Success'),(3615,0,0,'gen005','Manshi','2025-12-12 17:10:40','2025-12-12 18:41:52','','N','Success'),(3616,0,0,'gen005','Manshi','2025-12-12 17:10:50','2025-12-12 18:41:52','','N','Success'),(3617,0,0,'GEN005','drarchit','2025-12-12 18:03:55','2025-12-12 19:51:11','','N','Success'),(3618,0,0,'GEN005','drashti','2025-12-12 18:12:49','2025-12-12 20:02:22','','N','Success'),(3619,0,0,'gen005','Vishal','2025-12-12 18:21:00','2025-12-12 20:16:09','','N','Success'),(3620,0,0,'gen005','Drjayant','2025-12-12 18:26:19','2025-12-13 13:35:55','','N','Success'),(3621,0,0,'gen005','Drjayant','2025-12-12 18:26:44','2025-12-13 13:35:55','','N','Success'),(3622,0,0,'gen005','Manshi','2025-12-12 18:42:16','2025-12-18 18:43:19','','N','Success'),(3623,0,0,'gen005','Vishal','2025-12-12 18:46:08','2025-12-12 20:16:09','','N','Success'),(3624,0,0,'gen005','Manshi','2025-12-12 18:52:58','2025-12-18 18:43:19','','N','Success'),(3625,0,0,'GEN005','Drridham','2025-12-12 19:01:12','0000-00-00 00:00:00','','Y','Success'),(3626,0,0,'GEN005','drarchit','2025-12-12 19:51:38','2025-12-13 12:43:55','','N','Success'),(3627,0,0,'GEN005','shweta','2025-12-12 20:02:29','2025-12-13 11:33:46','','N','Success'),(3628,0,0,'gen005','priyanshi','2025-12-12 20:05:06','2025-12-13 11:34:35','','N','Success'),(3629,0,0,'gen005','Manshi','2025-12-12 20:06:23','2025-12-18 18:43:19','','N','Success'),(3630,0,0,'GEN005','drarchit','2025-12-12 20:09:48','2025-12-13 12:43:55','','N','Success'),(3631,0,0,'gen005','Mo','2025-12-12 20:45:13','2025-12-14 11:36:46','','N','Success'),(3632,0,0,'gen005','Vishal','2025-12-12 21:11:29','2025-12-14 16:49:40','','N','Success'),(3633,0,0,'gen005','mo','2025-12-12 21:26:16','2025-12-14 11:36:46','','N','Success'),(3634,0,0,'gen005','mo','2025-12-13 00:34:03','2025-12-14 11:36:46','','N','Success'),(3635,0,0,'GEN005','mo','2025-12-13 08:25:55','2025-12-14 11:36:46','','N','Success'),(3636,0,0,'gen005','Reception','2025-12-13 08:36:30','2025-12-13 11:01:00','','N','Success'),(3637,0,0,'gen005','Reception','2025-12-13 08:56:09','2025-12-13 11:01:00','','N','Success'),(3638,0,0,'gen005','priyanshi','2025-12-13 09:13:31','2025-12-13 11:34:35','','N','Success'),(3639,0,0,'gen005','Reception','2025-12-13 09:27:04','2025-12-13 11:01:00','','N','Success'),(3640,0,0,'gen005','RIYA','2025-12-13 09:51:05','2025-12-13 13:28:18','','N','Success'),(3641,0,0,'gen005','drashti','2025-12-13 09:54:17','2025-12-13 11:29:16','','N','Success'),(3642,0,0,'gen005','Drpratapsi','2025-12-13 10:06:03','0000-00-00 00:00:00','','Y','Success'),(3643,0,0,'gen005','priyanshi','2025-12-13 10:31:02','2025-12-13 11:34:35','','N','Success'),(3644,0,0,'GEN005','mo','2025-12-13 10:45:06','2025-12-14 11:36:46','','N','Success'),(3645,0,0,'gen005','darshan','2025-12-13 10:51:44','2025-12-17 19:03:58','','N','Success'),(3646,0,0,'gen005','thims','2025-12-13 10:52:37','2025-12-23 17:50:38','','N','Success'),(3647,0,0,'gen005','drarchit','2025-12-13 11:12:59','2025-12-13 12:43:55','','N','Success'),(3648,0,0,'gen005','Drjayant','2025-12-13 11:23:02','2025-12-13 13:35:55','','N','Success'),(3649,0,0,'gen005','shweta','2025-12-13 11:29:27','2025-12-13 11:33:46','','N','Success'),(3650,0,0,'gen005','drashti','2025-12-13 11:33:53','2025-12-13 13:52:13','','N','Success'),(3651,0,0,'gen005','janvi','2025-12-13 11:34:41','2025-12-13 13:50:09','','N','Success'),(3652,0,0,'gen005','thims','2025-12-13 11:43:45','2025-12-23 17:50:38','','N','Success'),(3653,0,0,'gen005','shweta','2025-12-13 12:17:49','2025-12-13 18:59:57','','N','Success'),(3654,0,0,'GEN005','mo','2025-12-13 12:40:47','2025-12-14 11:36:46','','N','Success'),(3655,0,0,'GEN005','drarchit','2025-12-13 12:45:00','2025-12-13 13:21:00','','N','Success'),(3656,0,0,'GEN005','drarchit','2025-12-13 13:15:16','2025-12-13 13:21:00','','N','Success'),(3657,0,0,'GEN005','drarchit','2025-12-13 13:22:08','2025-12-16 13:30:50','','N','Success'),(3658,0,0,'GEN005','drarchit','2025-12-13 13:22:59','2025-12-16 13:30:50','','N','Success'),(3659,0,0,'GEN005','mo','2025-12-13 13:25:53','2025-12-14 11:36:46','','N','Success'),(3660,0,0,'gen005','Dharmistha','2025-12-13 13:28:36','2025-12-13 13:28:36','','N','Failure'),(3661,0,0,'gen005','Dharmista','2025-12-13 13:29:02','2025-12-13 13:29:02','','N','Failure'),(3662,0,0,'gen005','riya','2025-12-13 13:29:24','2025-12-13 13:59:02','','N','Success'),(3663,0,0,'gen005','Reception','2025-12-13 13:50:00','2025-12-13 14:04:05','','N','Success'),(3664,0,0,'GEN005','priyanshi','2025-12-13 13:52:19','2025-12-13 13:54:03','','N','Success'),(3665,0,0,'gen005','Dharmishth','2025-12-13 13:53:09','0000-00-00 00:00:00','','Y','Success'),(3666,0,0,'gen005','janvi','2025-12-13 13:53:11','2025-12-16 19:18:54','','N','Success'),(3667,0,0,'GEN005','priyanshi','2025-12-13 13:54:07','2025-12-13 14:22:18','','N','Success'),(3668,0,0,'gen005','riya','2025-12-13 14:00:17','2025-12-13 14:23:55','','N','Success'),(3669,0,0,'gen005','thims','2025-12-13 14:00:34','2025-12-23 17:50:38','','N','Success'),(3670,0,0,'gen005','Reception','2025-12-13 14:12:09','2025-12-13 20:34:48','','N','Success'),(3671,0,0,'GEN005','riya','2025-12-13 14:22:21','2025-12-13 14:23:55','','N','Success'),(3672,0,0,'GEN005','priyanshi','2025-12-13 14:24:01','2025-12-14 09:56:27','','N','Success'),(3673,0,0,'gen005','riya','2025-12-13 15:47:42','2025-12-14 10:00:42','','N','Success'),(3674,0,0,'gen005','Reception','2025-12-13 16:41:05','2025-12-13 20:34:48','','N','Success'),(3675,0,0,'gen005','Reception','2025-12-13 17:10:49','2025-12-13 20:34:48','','N','Success'),(3676,0,0,'gen005','janvi','2025-12-13 17:11:01','2025-12-16 19:18:54','','N','Success'),(3677,0,0,'gen005','riya','2025-12-13 17:22:32','2025-12-14 10:00:42','','N','Success'),(3678,0,0,'GEN005','SHWETA','2025-12-13 17:27:42','2025-12-13 17:27:42','','N','Failure'),(3679,0,0,'GEN005','SHWETA','2025-12-13 17:27:43','2025-12-13 17:27:43','','N','Failure'),(3680,0,0,'GEN005','SHWETA','2025-12-13 17:28:31','2025-12-13 17:28:31','','N','Failure'),(3681,0,0,'GEN005','SHWETA','2025-12-13 17:28:32','2025-12-13 17:28:32','','N','Failure'),(3682,0,0,'GEN005','SHWETA','2025-12-13 17:28:33','2025-12-13 17:28:33','','N','Failure'),(3683,0,0,'GEN005','SHWETA','2025-12-13 17:29:00','2025-12-13 17:29:00','','N','Failure'),(3684,0,0,'GEN005','SHWETA','2025-12-13 17:29:01','2025-12-13 17:29:01','','N','Failure'),(3685,0,0,'GEN005','SHWETA','2025-12-13 17:29:01','2025-12-13 17:29:01','','N','Failure'),(3686,0,0,'GEN005','SHWETA','2025-12-13 17:29:18','2025-12-13 18:59:57','','N','Success'),(3687,0,0,'gen005','janvi','2025-12-13 17:42:13','2025-12-16 19:18:54','','N','Success'),(3688,0,0,'gen005','Drpratapsi','2025-12-13 18:08:27','0000-00-00 00:00:00','','Y','Success'),(3689,0,0,'GEN005','mo','2025-12-13 18:09:17','2025-12-14 11:36:46','','N','Success'),(3690,0,0,'GEN005','Drridham','2025-12-13 18:16:05','0000-00-00 00:00:00','','Y','Success'),(3691,0,0,'GEN005','SHWETA','2025-12-13 18:40:38','2025-12-13 18:59:57','','N','Success'),(3692,0,0,'gen005','Riya','2025-12-13 18:50:12','2025-12-14 10:00:42','','N','Success'),(3693,0,0,'GEN005','Drsagar','2025-12-13 18:50:57','0000-00-00 00:00:00','','Y','Success'),(3694,0,0,'GEN005','SHWETA','2025-12-13 19:03:47','2025-12-14 09:59:03','','N','Success'),(3695,0,0,'gen005','janvi','2025-12-13 19:26:58','2025-12-16 19:18:54','','N','Success'),(3696,0,0,'gen005','janvi','2025-12-13 19:36:40','2025-12-16 19:18:54','','N','Success'),(3697,0,0,'GEN005','SHWETA','2025-12-13 20:03:43','2025-12-14 09:59:03','','N','Success'),(3698,0,0,'GEN005','mo','2025-12-13 20:10:12','2025-12-14 11:36:46','','N','Success'),(3699,0,0,'gen005','shweta','2025-12-13 20:35:27','2025-12-13 20:35:27','','N','Failure'),(3700,0,0,'gen005','shweta','2025-12-13 20:35:28','2025-12-13 20:35:28','','N','Failure'),(3701,0,0,'gen005','shweta','2025-12-13 20:35:34','2025-12-14 09:59:03','','N','Success'),(3702,0,0,'gen005','shweta','2025-12-13 20:35:35','2025-12-14 09:59:03','','N','Success'),(3703,0,0,'GEN005','mo','2025-12-13 20:45:29','2025-12-14 11:36:46','','N','Success'),(3704,0,0,'gen005','riya','2025-12-13 21:18:43','2025-12-14 10:00:42','','N','Success'),(3705,0,0,'GEN005','mo','2025-12-13 23:29:44','2025-12-14 11:36:46','','N','Success'),(3706,0,0,'GEN005','priyanshi','2025-12-14 09:24:02','2025-12-14 09:56:27','','N','Success'),(3707,0,0,'gen005','mo','2025-12-14 09:26:39','2025-12-14 11:36:46','','N','Success'),(3708,0,0,'GEN005','priyanshi','2025-12-14 09:54:31','2025-12-14 09:56:27','','N','Success'),(3709,0,0,'GEN005','shweta','2025-12-14 09:56:33','2025-12-14 09:59:03','','N','Success'),(3710,0,0,'GEN005','riya','2025-12-14 09:59:14','2025-12-14 10:00:42','','N','Success'),(3711,0,0,'GEN005','priyanshi','2025-12-14 10:00:49','2025-12-14 11:21:06','','N','Success'),(3712,0,0,'gen005','riya','2025-12-14 10:07:11','2025-12-14 11:19:23','','N','Success'),(3713,0,0,'GEN005','mo','2025-12-14 10:54:17','2025-12-14 11:36:46','','N','Success'),(3714,0,0,'gen005','priyanshi','2025-12-14 11:19:30','2025-12-14 11:21:06','','N','Success'),(3715,0,0,'gen005','riya','2025-12-14 11:21:13','2025-12-14 11:38:43','','N','Success'),(3716,0,0,'GEN005','priyanshi','2025-12-14 11:26:15','2025-12-15 11:58:03','','N','Success'),(3717,0,0,'GEN005','riya','2025-12-14 11:36:54','2025-12-14 11:38:43','','N','Success'),(3718,0,0,'GEN005','mo','2025-12-14 11:38:48','2025-12-14 11:46:36','','N','Success'),(3719,0,0,'GEN005','riya','2025-12-14 11:46:42','2025-12-14 11:57:46','','N','Success'),(3720,0,0,'GEN005','mo','2025-12-14 11:57:51','2025-12-14 13:17:26','','N','Success'),(3721,0,0,'GEN005','riya','2025-12-14 13:17:32','2025-12-14 13:50:17','','N','Success'),(3722,0,0,'gen005','riya','2025-12-14 13:53:26','2025-12-14 14:50:30','','N','Success'),(3723,0,0,'GEN005','mo','2025-12-14 13:57:27','2025-12-14 14:39:58','','N','Success'),(3724,0,0,'GEN005','riya','2025-12-14 14:40:06','2025-12-14 14:50:30','','N','Success'),(3725,0,0,'GEN005','mo','2025-12-14 15:23:23','2025-12-14 16:38:01','','N','Success'),(3726,0,0,'GEN005','Vishal','2025-12-14 16:38:14','2025-12-14 16:49:40','','N','Success'),(3727,0,0,'GEN005','mo','2025-12-14 16:49:58','2025-12-15 22:24:08','','N','Success'),(3728,0,0,'GEN005','Vishal','2025-12-14 16:51:33','2025-12-14 17:03:16','','N','Success'),(3729,0,0,'GEN005','mo','2025-12-14 17:03:22','2025-12-15 22:24:08','','N','Success'),(3730,0,0,'gen005','Vishal','2025-12-14 17:16:26','2025-12-15 17:38:56','','N','Success'),(3731,0,0,'GEN005','mo','2025-12-14 18:50:46','2025-12-15 22:24:08','','N','Success'),(3732,0,0,'gen005','Vishal','2025-12-14 19:38:00','2025-12-15 17:38:56','','N','Success'),(3733,0,0,'gen005','Vishal','2025-12-14 19:57:52','2025-12-15 17:38:56','','N','Success'),(3734,0,0,'GEN005','mo','2025-12-14 22:07:43','2025-12-15 22:24:08','','N','Success'),(3735,0,0,'GEN005','mo','2025-12-15 06:58:01','2025-12-15 22:24:08','','N','Success'),(3736,0,0,'gen005','Dharmishth','2025-12-15 08:24:18','0000-00-00 00:00:00','','Y','Success'),(3737,0,0,'GEN005','mo','2025-12-15 08:35:05','2025-12-15 22:24:08','','N','Success'),(3738,0,0,'gen005','Reception','2025-12-15 08:38:14','2025-12-15 09:53:32','','N','Success'),(3739,0,0,'gen005','priyanshi','2025-12-15 09:09:25','2025-12-15 11:58:03','','N','Success'),(3740,0,0,'gen005','drashti','2025-12-15 09:23:48','2025-12-15 13:23:05','','N','Success'),(3741,0,0,'gen005','priyanshi','2025-12-15 09:24:10','2025-12-15 11:58:03','','N','Success'),(3742,0,0,'gen005','Dharmishth','2025-12-15 09:27:28','0000-00-00 00:00:00','','Y','Success'),(3743,0,0,'gen005','riya','2025-12-15 09:34:24','2025-12-15 11:27:54','','N','Success'),(3744,0,0,'gen005','Reception','2025-12-15 09:53:43','2025-12-15 14:30:28','','N','Success'),(3745,0,0,'GEN005','mo','2025-12-15 09:59:42','2025-12-15 22:24:08','','N','Success'),(3746,0,0,'GEN005','SHWETA','2025-12-15 10:32:03','2025-12-16 12:20:40','','N','Success'),(3747,0,0,'GEN005','SHWETA','2025-12-15 10:32:05','2025-12-16 12:20:40','','N','Success'),(3748,0,0,'gen005','riya','2025-12-15 10:44:54','2025-12-15 11:27:54','','N','Success'),(3749,0,0,'gen005','Drpratapsi','2025-12-15 10:47:58','0000-00-00 00:00:00','','Y','Success'),(3750,0,0,'gen005','darshan','2025-12-15 10:52:29','2025-12-17 19:03:58','','N','Success'),(3751,0,0,'GEN005','drarchit','2025-12-15 11:12:43','2025-12-16 13:30:50','','N','Success'),(3752,0,0,'gen005','Drjayant','2025-12-15 11:29:41','2025-12-15 19:59:54','','N','Success'),(3753,0,0,'GEN005','Drsagar','2025-12-15 11:32:44','0000-00-00 00:00:00','','Y','Success'),(3754,0,0,'gen005','Drpratapsi','2025-12-15 11:37:09','0000-00-00 00:00:00','','Y','Success'),(3755,0,0,'GEN005','Drridham','2025-12-15 11:38:05','0000-00-00 00:00:00','','Y','Success'),(3756,0,0,'GEN005','mo','2025-12-15 11:54:35','2025-12-15 22:24:08','','N','Success'),(3757,0,0,'gen005','Urvashi','2025-12-15 11:58:20','2025-12-16 19:13:28','','N','Success'),(3758,0,0,'gen005','riya','2025-12-15 11:58:55','2025-12-15 16:27:26','','N','Success'),(3759,0,0,'gen005','Dharmishth','2025-12-15 12:46:50','0000-00-00 00:00:00','','Y','Success'),(3760,0,0,'GEN005','drarchit','2025-12-15 13:26:37','2025-12-16 13:30:50','','N','Success'),(3761,0,0,'gen005','riya','2025-12-15 13:28:12','2025-12-15 16:27:26','','N','Success'),(3762,0,0,'gen005','drashti','2025-12-15 13:28:31','2025-12-15 14:12:56','','N','Success'),(3763,0,0,'GEN005','mo','2025-12-15 13:46:50','2025-12-15 22:24:08','','N','Success'),(3764,0,0,'gen005','priyanshi','2025-12-15 14:13:02','2025-12-15 16:21:11','','N','Success'),(3765,0,0,'gen005','riya','2025-12-15 14:40:12','2025-12-15 16:27:26','','N','Success'),(3766,0,0,'gen005','riya','2025-12-15 14:55:13','2025-12-15 16:27:26','','N','Success'),(3767,0,0,'gen005','drashti','2025-12-15 16:21:19','2025-12-15 18:02:07','','N','Success'),(3768,0,0,'gen005','Reception','2025-12-15 16:22:10','2025-12-15 20:47:37','','N','Success'),(3769,0,0,'gen005','Urvashi','2025-12-15 16:23:48','2025-12-16 19:13:28','','N','Success'),(3770,0,0,'gen005','riya','2025-12-15 16:29:35','2025-12-15 17:36:56','','N','Success'),(3771,0,0,'GEN005','mo','2025-12-15 16:37:10','2025-12-15 22:24:08','','N','Success'),(3772,0,0,'GEN005','mo','2025-12-15 16:45:36','2025-12-15 22:24:08','','N','Success'),(3773,0,0,'gen005','Drpratapsi','2025-12-15 16:55:52','0000-00-00 00:00:00','','Y','Success'),(3774,0,0,'GEN005','SHWETA','2025-12-15 17:03:40','2025-12-16 12:20:40','','N','Success'),(3775,0,0,'gen005','darshan','2025-12-15 17:04:43','2025-12-17 19:03:58','','N','Success'),(3776,0,0,'gen005','Vishal','2025-12-15 17:37:09','2025-12-15 17:38:56','','N','Success'),(3777,0,0,'gen005','Vishal','2025-12-15 17:38:59','2025-12-15 17:45:20','','N','Success'),(3778,0,0,'gen005','thims','2025-12-15 17:40:12','2025-12-23 17:50:38','','N','Success'),(3779,0,0,'gen005','riya','2025-12-15 17:45:24','2025-12-15 17:53:39','','N','Success'),(3780,0,0,'GEN005','mo','2025-12-15 17:50:50','2025-12-15 22:24:08','','N','Success'),(3781,0,0,'gen005','Vishal','2025-12-15 17:53:46','2025-12-16 13:07:39','','N','Success'),(3782,0,0,'gen005','drashti','2025-12-15 18:05:26','2025-12-15 20:47:22','','N','Success'),(3783,0,0,'GEN005','drarchit','2025-12-15 18:18:12','2025-12-16 13:30:50','','N','Success'),(3784,0,0,'gen005','Drjayant','2025-12-15 18:31:10','2025-12-15 19:59:54','','N','Success'),(3785,0,0,'gen005','Vishal','2025-12-15 19:15:08','2025-12-16 13:07:39','','N','Success'),(3786,0,0,'gen005','Vishal','2025-12-15 19:31:57','2025-12-15 19:31:57','','N','Failure'),(3787,0,0,'GEN005','Drridham','2025-12-15 19:33:21','0000-00-00 00:00:00','','Y','Success'),(3788,0,0,'gen005','Dharmishth','2025-12-15 19:56:29','0000-00-00 00:00:00','','Y','Success'),(3789,0,0,'gen005','Drjayant','2025-12-15 19:58:51','2025-12-15 19:59:54','','N','Success'),(3790,0,0,'gen005','drarchit','2025-12-15 20:02:30','2025-12-16 13:30:50','','N','Success'),(3791,0,0,'GEN005','drarchit','2025-12-15 20:14:38','2025-12-16 13:30:50','','N','Success'),(3792,0,0,'GEN005','drashti','2025-12-15 20:47:15','2025-12-15 20:47:22','','N','Success'),(3793,0,0,'GEN005','mo','2025-12-15 20:47:43','2025-12-15 22:24:08','','N','Success'),(3794,0,0,'gen005','Vishal','2025-12-15 21:08:45','2025-12-15 21:08:45','','N','Failure'),(3795,0,0,'gen005','Vishal','2025-12-15 21:08:50','2025-12-16 13:07:39','','N','Success'),(3796,0,0,'gen005','riya','2025-12-15 21:12:01','2025-12-18 11:28:49','','N','Success'),(3797,0,0,'gen005','mo','2025-12-15 22:24:41','2025-12-16 09:07:52','','N','Success'),(3798,0,0,'GEN005','mo','2025-12-15 22:34:56','2025-12-16 09:07:52','','N','Success'),(3799,0,0,'GEN005','mo','2025-12-16 00:13:31','2025-12-16 09:07:52','','N','Success'),(3800,0,0,'GEN005','mo','2025-12-16 00:19:39','2025-12-16 09:07:52','','N','Success'),(3801,0,0,'GEN005','mo','2025-12-16 01:12:44','2025-12-16 09:07:52','','N','Success'),(3802,0,0,'gen005','Reception','2025-12-16 08:33:26','2025-12-16 14:43:06','','N','Success'),(3803,0,0,'gen005','mo','2025-12-16 09:07:07','2025-12-16 09:07:52','','N','Success'),(3804,0,0,'gen005','priyanshi','2025-12-16 09:07:58','2025-12-17 09:26:13','','N','Success'),(3805,0,0,'gen005','Reception','2025-12-16 09:19:43','2025-12-16 14:43:06','','N','Success'),(3806,0,0,'gen005','mo','2025-12-16 09:20:02','2025-12-18 09:17:29','','N','Success'),(3807,0,0,'gen005','janvi','2025-12-16 09:25:20','2025-12-16 19:18:54','','N','Success'),(3808,0,0,'gen005','Dharmishth','2025-12-16 09:30:39','0000-00-00 00:00:00','','Y','Success'),(3809,0,0,'gen005','Dharmishth','2025-12-16 09:31:40','0000-00-00 00:00:00','','Y','Success'),(3810,0,0,'gen005','Vishal','2025-12-16 09:32:22','2025-12-16 13:07:39','','N','Success'),(3811,0,0,'gen005','drashti','2025-12-16 09:47:38','2025-12-17 12:11:47','','N','Success'),(3812,0,0,'gen005','Vishal','2025-12-16 09:52:32','2025-12-16 13:07:39','','N','Success'),(3813,0,0,'gen005','Drpratapsi','2025-12-16 10:18:41','0000-00-00 00:00:00','','Y','Success'),(3814,0,0,'GEN005','SHWETA','2025-12-16 10:28:02','2025-12-16 12:20:40','','N','Success'),(3815,0,0,'GEN005','SHWETA','2025-12-16 10:28:03','2025-12-16 12:20:40','','N','Success'),(3816,0,0,'gen005','darshan','2025-12-16 10:30:30','2025-12-17 19:03:58',_binary '192.168.1.104','N','Success'),(3817,0,0,'gen005','Dharmishth','2025-12-16 10:39:06','0000-00-00 00:00:00','','Y','Success'),(3818,0,0,'GEN005','mo','2025-12-16 10:39:45','2025-12-18 09:17:29','','N','Success'),(3819,0,0,'gen005','darshan','2025-12-16 10:49:53','2025-12-17 19:03:58','','N','Success'),(3820,0,0,'gen005','mo','2025-12-16 11:11:57','2025-12-18 09:17:29','','N','Success'),(3821,0,0,'gen005','Drjayant','2025-12-16 11:14:23','2025-12-16 13:35:44','','N','Success'),(3822,0,0,'GEN005','drarchit','2025-12-16 11:25:49','2025-12-16 13:30:50','','N','Success'),(3823,0,0,'GEN005','Drsagar','2025-12-16 11:50:29','0000-00-00 00:00:00','','Y','Success'),(3824,0,0,'gen005','Vishal','2025-12-16 12:05:48','2025-12-16 13:07:39','','N','Success'),(3825,0,0,'gen005','Drpratapsi','2025-12-16 12:17:53','0000-00-00 00:00:00','','Y','Success'),(3826,0,0,'GEN005','SHWETA','2025-12-16 12:22:37','2025-12-16 13:52:58','','N','Success'),(3827,0,0,'GEN005','Drridham','2025-12-16 12:25:23','0000-00-00 00:00:00','','Y','Success'),(3828,0,0,'gen005','mo','2025-12-16 12:41:28','2025-12-16 12:41:28','','N','Failure'),(3829,0,0,'gen005','mo','2025-12-16 12:41:32','2025-12-16 12:41:32','','N','Failure'),(3830,0,0,'gen005','mo','2025-12-16 12:41:40','2025-12-18 09:17:29','','N','Success'),(3831,0,0,'gen005','Riya','2025-12-16 13:07:51','2025-12-18 11:28:49','','N','Success'),(3832,0,0,'gen005','Drjayant','2025-12-16 13:17:09','2025-12-16 13:35:44','','N','Success'),(3833,0,0,'GEN005','mo','2025-12-16 13:19:22','2025-12-18 09:17:29','','N','Success'),(3834,0,0,'GEN005','mo','2025-12-16 13:32:02','2025-12-18 09:17:29','','N','Success'),(3835,0,0,'GEN005','drarchit','2025-12-16 13:33:58','2025-12-17 20:05:13','','N','Success'),(3836,0,0,'GEN005','mo','2025-12-16 13:37:51','2025-12-18 09:17:29','','N','Success'),(3837,0,0,'GEN005','drarchit','2025-12-16 13:38:35','2025-12-17 20:05:13','','N','Success'),(3838,0,0,'gen005','Vishal','2025-12-16 13:52:29','2025-12-16 15:31:48','','N','Success'),(3839,0,0,'gen005','Drpratapsi','2025-12-16 14:01:15','0000-00-00 00:00:00','','Y','Success'),(3840,0,0,'gen005','priyanshi','2025-12-16 14:08:44','2025-12-17 09:26:13','','N','Success'),(3841,0,0,'GEN005','riya','2025-12-16 14:12:43','2025-12-18 11:28:49','','N','Success'),(3842,0,0,'gen005','thims','2025-12-16 14:40:35','2025-12-23 17:50:38','','N','Success'),(3843,0,0,'gen005','Riya','2025-12-16 15:31:52','2025-12-18 11:28:49',_binary '175.100.134.228','N','Success'),(3844,0,0,'gen005','Reception','2025-12-16 15:44:42','2025-12-16 20:33:20',_binary '175.100.134.228','N','Success'),(3845,0,0,'gen005','Reception','2025-12-16 16:14:38','2025-12-16 20:33:20',_binary '175.100.134.228','N','Success'),(3846,0,0,'gen005','priyanshi','2025-12-16 16:28:57','2025-12-17 09:26:13',_binary '175.100.134.228','N','Success'),(3847,0,0,'gen005','Urvashi','2025-12-16 16:43:44','2025-12-16 19:13:28',_binary '175.100.134.228','N','Success'),(3848,0,0,'gen005','darshan','2025-12-16 17:08:45','2025-12-17 19:03:58',_binary '175.100.134.228','N','Success'),(3849,0,0,'GEN005','SHWETA','2025-12-16 17:08:55','2025-12-16 18:39:22',_binary '175.100.134.228','N','Success'),(3850,0,0,'gen005','Riya','2025-12-16 17:15:04','2025-12-18 11:28:49',_binary '175.100.134.228','N','Success'),(3851,0,0,'gen005','janvi','2025-12-16 17:20:12','2025-12-16 19:18:54',_binary '175.100.134.228','N','Success'),(3852,0,0,'gen005','Vishal','2025-12-16 17:47:15','2025-12-17 17:24:12',_binary '175.100.134.228','N','Success'),(3853,0,0,'gen005','Drjayant','2025-12-16 17:59:51','2025-12-17 13:47:44',_binary '175.100.134.228','N','Success'),(3854,0,0,'GEN005','drarchit','2025-12-16 18:02:04','2025-12-17 20:05:13',_binary '175.100.134.228','N','Success'),(3855,0,0,'gen005','Drpratapsi','2025-12-16 18:16:52','0000-00-00 00:00:00',_binary '175.100.134.228','Y','Success'),(3856,0,0,'GEN005','SHWETA','2025-12-16 18:40:46','2025-12-16 19:22:05',_binary '175.100.134.228','N','Success'),(3857,0,0,'GEN005','SHWETA','2025-12-16 18:40:47','2025-12-16 19:22:05',_binary '175.100.134.228','N','Success'),(3858,0,0,'gen005','Vishal','2025-12-16 19:08:07','2025-12-17 17:24:12',_binary '175.100.134.228','N','Success'),(3859,0,0,'gen005','Urvashi','2025-12-16 19:09:16','2025-12-16 19:13:28',_binary '175.100.134.228','N','Success'),(3860,0,0,'GEN005','Drridham','2025-12-16 19:14:52','0000-00-00 00:00:00',_binary '175.100.134.228','Y','Success'),(3861,0,0,'gen005','Darshan','2025-12-16 19:19:21','2025-12-17 19:03:58',_binary '175.100.134.228','N','Success'),(3862,0,0,'gen005','janvi','2025-12-16 19:21:51','2025-12-17 14:34:50',_binary '175.100.134.228','N','Success'),(3863,0,0,'GEN005','SHWETA','2025-12-16 19:25:38','2025-12-17 13:05:16',_binary '175.100.134.228','N','Success'),(3864,0,0,'gen005','SHWETA','2025-12-16 20:44:02','2025-12-17 13:05:16',_binary '175.100.134.228','N','Success'),(3865,0,0,'GEN005','mo','2025-12-16 21:17:53','2025-12-18 09:17:29',_binary '175.100.134.228','N','Success'),(3866,0,0,'gen005','Reception','2025-12-17 08:37:59','2025-12-17 14:39:33',_binary '175.100.132.30','N','Success'),(3867,0,0,'gen005','Dharmishth','2025-12-17 09:10:09','0000-00-00 00:00:00',_binary '175.100.132.30','Y','Success'),(3868,0,0,'gen005','priyanshi','2025-12-17 09:16:31','2025-12-17 09:26:13',_binary '175.100.132.30','N','Success'),(3869,0,0,'gen005','priyanshi','2025-12-17 09:17:23','2025-12-17 09:26:13',_binary '175.100.134.228','N','Success'),(3870,0,0,'gen005','drashti','2025-12-17 09:26:20','2025-12-17 12:11:47',_binary '175.100.132.30','N','Success'),(3871,0,0,'gen005','Vishal','2025-12-17 09:33:50','2025-12-17 17:24:12',_binary '175.100.134.63','N','Success'),(3872,0,0,'gen005','Dharmishth','2025-12-17 09:42:24','0000-00-00 00:00:00',_binary '175.100.134.63','Y','Success'),(3873,0,0,'gen005','Dharmishth','2025-12-17 09:43:35','0000-00-00 00:00:00',_binary '175.100.134.63','Y','Success'),(3874,0,0,'gen005','Reception','2025-12-17 09:49:24','2025-12-17 14:39:33',_binary '175.100.134.63','N','Success'),(3875,0,0,'GEN005','SHWETA','2025-12-17 10:21:46','2025-12-17 13:05:16',_binary '175.100.134.63','N','Success'),(3876,0,0,'GEN005','SHWETA','2025-12-17 10:22:12','2025-12-17 13:05:16',_binary '175.100.134.63','N','Success'),(3877,0,0,'gen005','Drpratapsi','2025-12-17 10:43:43','0000-00-00 00:00:00',_binary '175.100.134.63','Y','Success'),(3878,0,0,'gen005','Drpratapsi','2025-12-17 10:44:00','0000-00-00 00:00:00',_binary '175.100.134.63','Y','Success'),(3879,0,0,'GEN005','mo','2025-12-17 10:47:06','2025-12-18 09:17:29',_binary '175.100.134.63','N','Success'),(3880,0,0,'gen005','darshan','2025-12-17 10:53:26','2025-12-17 19:03:58',_binary '175.100.134.63','N','Success'),(3881,0,0,'GEN005','drarchit','2025-12-17 10:53:40','2025-12-17 20:05:13',_binary '175.100.134.63','N','Success'),(3882,0,0,'gen005','darshan','2025-12-17 10:58:38','2025-12-17 19:03:58',_binary '175.100.134.63','N','Success'),(3883,0,0,'gen005','Drjayant','2025-12-17 11:13:24','2025-12-17 13:47:44',_binary '175.100.134.63','N','Success'),(3884,0,0,'GEN005','mo','2025-12-17 11:15:24','2025-12-18 09:17:29',_binary '175.100.134.63','N','Success'),(3885,0,0,'GEN005','Drridham','2025-12-17 11:25:17','0000-00-00 00:00:00',_binary '175.100.134.63','Y','Success'),(3886,0,0,'gen005','janvi','2025-12-17 11:31:12','2025-12-17 14:34:50',_binary '175.100.134.63','N','Success'),(3887,0,0,'gen005','Vishal','2025-12-17 12:02:17','2025-12-17 17:24:12',_binary '175.100.134.63','N','Success'),(3888,0,0,'gen005','drashti','2025-12-17 12:14:46','2025-12-17 19:03:16',_binary '175.100.134.63','N','Success'),(3889,0,0,'gen005','Vishal','2025-12-17 12:18:01','2025-12-17 17:24:12',_binary '175.100.134.63','N','Success'),(3890,0,0,'GEN005','mo','2025-12-17 12:27:07','2025-12-18 09:17:29',_binary '175.100.134.63','N','Success'),(3891,0,0,'GEN005','drarchit','2025-12-17 12:38:11','2025-12-17 20:05:13',_binary '175.100.134.63','N','Success'),(3892,0,0,'GEN005','SHWETA','2025-12-17 13:05:23','2025-12-18 12:18:11',_binary '175.100.134.63','N','Success'),(3893,0,0,'gen005','Vishal','2025-12-17 13:07:56','2025-12-17 17:24:12',_binary '175.100.134.63','N','Success'),(3894,0,0,'GEN005','mo','2025-12-17 13:18:30','2025-12-18 09:17:29',_binary '175.100.134.63','N','Success'),(3895,0,0,'gen005','darshan','2025-12-17 13:18:38','2025-12-17 13:18:38',_binary '175.100.134.63','N','Failure'),(3896,0,0,'gen005','darshan','2025-12-17 13:18:48','2025-12-17 19:03:58',_binary '175.100.134.63','N','Success'),(3897,0,0,'gen005','Drjayant','2025-12-17 13:18:59','2025-12-17 13:47:44',_binary '175.100.134.63','N','Success'),(3898,0,0,'gen005','Vishal','2025-12-17 13:19:01','2025-12-17 17:24:12',_binary '175.100.134.63','N','Success'),(3899,0,0,'gen005','Vishal','2025-12-17 13:38:07','2025-12-17 17:24:12',_binary '175.100.134.63','N','Success'),(3900,0,0,'gen005','mo','2025-12-17 14:05:32','2025-12-18 09:17:29',_binary '175.100.134.63','N','Success'),(3901,0,0,'gen005','priyanshi','2025-12-17 14:50:48','2025-12-17 16:34:09',_binary '175.100.134.204','N','Success'),(3902,0,0,'GEN005','mo','2025-12-17 15:45:58','2025-12-18 09:17:29',_binary '175.100.134.204','N','Success'),(3903,0,0,'gen005','Reception','2025-12-17 16:15:33','2025-12-17 20:31:09',_binary '175.100.134.63','N','Success'),(3904,0,0,'gen005','Vishal','2025-12-17 16:19:40','2025-12-17 17:24:12',_binary '175.100.134.204','N','Success'),(3905,0,0,'gen005','drashti','2025-12-17 16:34:19','2025-12-17 19:03:16',_binary '175.100.134.204','N','Success'),(3906,0,0,'gen005','priyanshi','2025-12-17 16:48:10','2025-12-17 18:20:41',_binary '175.100.134.63','N','Success'),(3907,0,0,'GEN005','mo','2025-12-17 17:11:51','2025-12-18 09:17:29',_binary '175.100.134.204','N','Success'),(3908,0,0,'gen005','darshan','2025-12-17 17:14:41','2025-12-17 19:03:58',_binary '175.100.134.204','N','Success'),(3909,0,0,'gen005','Vishal','2025-12-17 17:24:21','2025-12-18 18:42:08',_binary '175.100.134.204','N','Success'),(3910,0,0,'GEN005','SHWETA','2025-12-17 17:24:31','2025-12-18 12:18:11',_binary '175.100.134.204','N','Success'),(3911,0,0,'GEN005','Drsagar','2025-12-17 18:08:11','0000-00-00 00:00:00',_binary '175.100.134.204','Y','Success'),(3912,0,0,'gen005','Drjayant','2025-12-17 18:10:04','2025-12-17 19:07:42',_binary '175.100.134.204','N','Success'),(3913,0,0,'GEN005','Drridham','2025-12-17 18:10:15','0000-00-00 00:00:00',_binary '175.100.134.204','Y','Success'),(3914,0,0,'gen005','janvi','2025-12-17 18:20:48','2025-12-18 13:27:15',_binary '175.100.134.204','N','Success'),(3915,0,0,'GEN005','drarchit','2025-12-17 18:25:10','2025-12-17 20:05:13',_binary '175.100.134.204','N','Success'),(3916,0,0,'gen005','Drpratapsi','2025-12-17 18:37:32','0000-00-00 00:00:00',_binary '175.100.134.63','Y','Success'),(3917,0,0,'gen005','Vishal','2025-12-17 18:39:42','2025-12-18 18:42:08',_binary '175.100.134.204','N','Success'),(3918,0,0,'GEN005','mo','2025-12-17 18:57:20','2025-12-18 09:17:29',_binary '175.100.134.204','N','Success'),(3919,0,0,'gen005','Darshan','2025-12-17 19:03:31','2025-12-17 19:03:58',_binary '175.100.134.204','N','Success'),(3920,0,0,'gen005','Drjayant','2025-12-17 19:04:12','2025-12-17 19:07:42',_binary '175.100.134.204','N','Success'),(3921,0,0,'gen005','drashti','2025-12-17 19:07:51','2025-12-18 13:18:33',_binary '175.100.134.204','N','Success'),(3922,0,0,'GEN005','drarchit','2025-12-17 20:05:49','2025-12-18 12:21:57',_binary '175.100.134.204','N','Success'),(3923,0,0,'GEN005','drarchit','2025-12-17 20:10:51','2025-12-18 12:21:57',_binary '175.100.134.204','N','Success'),(3924,0,0,'GEN005','mo','2025-12-17 20:37:59','2025-12-18 09:17:29',_binary '175.100.134.204','N','Success'),(3925,0,0,'gen005','shweta','2025-12-17 20:45:56','2025-12-18 12:18:11',_binary '175.100.134.204','N','Success'),(3926,0,0,'gen005','shweta','2025-12-17 20:45:57','2025-12-18 12:18:11',_binary '175.100.134.204','N','Success'),(3927,0,0,'GEN005','mo','2025-12-17 21:35:20','2025-12-18 09:17:29',_binary '175.100.134.204','N','Success'),(3928,0,0,'GEN005','mo','2025-12-17 22:25:33','2025-12-18 09:17:29',_binary '175.100.134.204','N','Success'),(3929,0,0,'gen005','Reception','2025-12-18 08:45:00','2025-12-18 09:50:46',_binary '175.100.131.114','N','Success'),(3930,0,0,'gen005','janvi','2025-12-18 09:11:31','2025-12-18 13:27:15',_binary '175.100.131.114','N','Success'),(3931,0,0,'gen005','janvi','2025-12-18 09:11:32','2025-12-18 13:27:15',_binary '175.100.131.114','N','Success'),(3932,0,0,'gen005','mo','2025-12-18 09:17:23','2025-12-18 09:17:29',_binary '175.100.131.114','N','Success'),(3933,0,0,'gen005','priyanshi','2025-12-18 09:17:35','2025-12-18 09:40:49',_binary '175.100.131.114','N','Success'),(3934,0,0,'gen005','Dharmishth','2025-12-18 09:28:10','0000-00-00 00:00:00',_binary '175.100.131.114','Y','Success'),(3935,0,0,'gen005','Dharmishth','2025-12-18 09:38:03','0000-00-00 00:00:00',_binary '175.100.131.114','Y','Success'),(3936,0,0,'gen005','drashti','2025-12-18 09:41:02','2025-12-18 13:18:33',_binary '175.100.131.114','N','Success'),(3937,0,0,'gen005','Dharmishth','2025-12-18 09:43:18','0000-00-00 00:00:00',_binary '175.100.131.114','Y','Success'),(3938,0,0,'gen005','Dharmishth','2025-12-18 09:48:31','0000-00-00 00:00:00',_binary '175.100.131.114','Y','Success'),(3939,0,0,'gen005','Reception','2025-12-18 09:51:07','2025-12-18 13:52:44',_binary '175.100.131.114','N','Success'),(3940,0,0,'gen005','Dharmishth','2025-12-18 10:13:52','0000-00-00 00:00:00',_binary '175.100.131.114','Y','Success'),(3941,0,0,'gen005','Riya','2025-12-18 10:14:44','2025-12-18 11:28:49',_binary '175.100.131.114','N','Success'),(3942,0,0,'GEN005','drarchit','2025-12-18 10:21:03','2025-12-18 12:21:57',_binary '175.100.131.114','N','Success'),(3943,0,0,'GEN005','SHWETA','2025-12-18 10:21:37','2025-12-18 12:18:11',_binary '175.100.131.114','N','Success'),(3944,0,0,'gen005','darshan','2025-12-18 10:32:08','0000-00-00 00:00:00',_binary '175.100.131.114','Y','Success'),(3945,0,0,'gen005','Riya','2025-12-18 10:47:49','2025-12-18 10:47:49',_binary '175.100.131.114','N','Failure'),(3946,0,0,'gen005','Drpratapsi','2025-12-18 10:51:38','0000-00-00 00:00:00',_binary '175.100.131.114','Y','Success'),(3947,0,0,'gen005','Riya','2025-12-18 11:06:25','2025-12-18 11:28:49',_binary '175.100.131.114','N','Success'),(3948,0,0,'gen005','Drpratapsi','2025-12-18 11:15:06','0000-00-00 00:00:00',_binary '175.100.131.114','Y','Success'),(3949,0,0,'gen005','Drjayant','2025-12-18 11:18:25','2025-12-18 13:35:16',_binary '175.100.131.114','N','Success'),(3950,0,0,'GEN005','mo','2025-12-18 11:19:16','2025-12-20 12:35:39',_binary '175.100.131.114','N','Success'),(3951,0,0,'gen005','Drarchit','2025-12-18 11:29:08','2025-12-18 12:21:57',_binary '175.100.131.114','N','Success'),(3952,0,0,'gen005','Riya','2025-12-18 12:06:39','2025-12-20 12:34:39',_binary '175.100.131.114','N','Success'),(3953,0,0,'GEN005','Priyanshi','2025-12-18 12:18:40','2025-12-18 16:35:51',_binary '175.100.131.114','N','Success'),(3954,0,0,'GEN005','drarchit','2025-12-18 12:35:52','2025-12-20 12:34:08',_binary '175.100.131.114','N','Success'),(3955,0,0,'gen005','Riya','2025-12-18 12:39:22','2025-12-20 12:34:39',_binary '175.100.131.114','N','Success'),(3956,0,0,'gen005','darshan','2025-12-18 13:10:06','0000-00-00 00:00:00',_binary '175.100.135.226','Y','Success'),(3957,0,0,'GEN005','SHWETA','2025-12-18 13:10:41','2025-12-18 13:44:26',_binary '175.100.131.114','N','Success'),(3958,0,0,'gen005','drashti','2025-12-18 13:23:53','2025-12-18 13:38:11',_binary '175.100.135.226','N','Success'),(3959,0,0,'gen005','janvi','2025-12-18 13:37:03','2025-12-18 14:07:02',_binary '175.100.135.93','N','Success'),(3960,0,0,'GEN005','mo','2025-12-18 13:37:25','2025-12-20 12:35:39',_binary '175.100.135.93','N','Success'),(3961,0,0,'gen005','priyanshi','2025-12-18 13:38:22','2025-12-18 16:35:51',_binary '175.100.135.93','N','Success'),(3962,0,0,'GEN005','SHWETA','2025-12-18 13:44:30','2025-12-19 20:22:46',_binary '175.100.132.247','N','Success'),(3963,0,0,'gen005','priyanshi','2025-12-18 13:47:02','2025-12-18 16:35:51',_binary '175.100.132.247','N','Success'),(3964,0,0,'gen005','priyanshi','2025-12-18 13:57:22','2025-12-18 16:35:51',_binary '175.100.131.92','N','Success'),(3965,0,0,'gen005','Riya','2025-12-18 14:02:02','2025-12-20 12:34:39',_binary '175.100.131.92','N','Success'),(3966,0,0,'gen005','priyanshi','2025-12-18 14:18:48','2025-12-18 16:35:51',_binary '175.100.135.91','N','Success'),(3967,0,0,'gen005','Riya','2025-12-18 14:44:12','2025-12-18 14:44:12',_binary '175.100.134.84','N','Failure'),(3968,0,0,'gen005','Riya','2025-12-18 14:44:41','2025-12-18 14:44:41',_binary '175.100.134.84','N','Failure'),(3969,0,0,'gen005','Riya','2025-12-18 14:45:03','2025-12-18 14:45:03',_binary '175.100.134.84','N','Failure'),(3970,0,0,'GEN005','mo','2025-12-18 14:45:49','2025-12-20 12:35:39',_binary '175.100.134.84','N','Success'),(3971,0,0,'gen005','Riya','2025-12-18 14:46:09','2025-12-18 14:46:09',_binary '175.100.134.84','N','Failure'),(3972,0,0,'gen005','Riya','2025-12-18 14:46:26','2025-12-18 14:46:26',_binary '175.100.134.84','N','Failure'),(3973,0,0,'gen005','Riya','2025-12-18 14:46:28','2025-12-18 14:46:28',_binary '175.100.134.84','N','Failure'),(3974,0,0,'gen005','Riya','2025-12-18 14:46:55','2025-12-20 12:34:39',_binary '175.100.134.84','N','Success'),(3975,0,0,'gen005','priyanshi','2025-12-18 15:42:31','2025-12-18 16:35:51',_binary '175.100.134.84','N','Success'),(3976,0,0,'GEN005','mo','2025-12-18 15:42:54','2025-12-20 12:35:39',_binary '175.100.134.84','N','Success'),(3977,0,0,'gen005','Reception','2025-12-18 15:45:30','2025-12-18 20:18:07',_binary '175.100.134.84','N','Success'),(3978,0,0,'gen005','Riya','2025-12-18 16:12:48','2025-12-20 12:34:39',_binary '175.100.134.84','N','Success'),(3979,0,0,'gen005','drashti','2025-12-18 16:35:59','2025-12-18 18:37:17',_binary '175.100.134.84','N','Success'),(3980,0,0,'gen005','priyanshi','2025-12-18 16:37:14','2025-12-18 17:17:30',_binary '175.100.134.84','N','Success'),(3981,0,0,'gen005','priyanshi','2025-12-18 16:37:29','2025-12-18 17:17:30',_binary '175.100.134.84','N','Success'),(3982,0,0,'gen005','darshan','2025-12-18 17:03:09','0000-00-00 00:00:00',_binary '175.100.134.84','Y','Success'),(3983,0,0,'gen005','Manshi','2025-12-18 17:12:07','2025-12-18 18:43:19',_binary '175.100.134.84','N','Success'),(3984,0,0,'GEN005','drashti','2025-12-18 17:16:18','2025-12-18 18:37:17',_binary '175.100.134.84','N','Success'),(3985,0,0,'gen005','Urvashi','2025-12-18 17:17:35','2025-12-18 18:37:10',_binary '175.100.134.84','N','Success'),(3986,0,0,'gen005','Vishal','2025-12-18 17:28:37','2025-12-18 18:42:08',_binary '175.100.134.84','N','Success'),(3987,0,0,'gen005','Drpratapsi','2025-12-18 17:34:42','0000-00-00 00:00:00',_binary '175.100.134.84','Y','Success'),(3988,0,0,'gen005','Vishal','2025-12-18 17:55:53','2025-12-18 18:42:08',_binary '175.100.134.84','N','Success'),(3989,0,0,'gen005','Drjayant','2025-12-18 18:06:09','2025-12-19 19:54:56',_binary '175.100.134.84','N','Success'),(3990,0,0,'GEN005','Drsagar','2025-12-18 18:16:46','0000-00-00 00:00:00',_binary '175.100.134.84','Y','Success'),(3991,0,0,'GEN005','drarchit','2025-12-18 18:18:51','2025-12-20 12:34:08',_binary '175.100.134.84','N','Success'),(3992,0,0,'gen005','mo','2025-12-18 18:22:32','2025-12-20 12:35:39',_binary '175.100.134.84','N','Success'),(3993,0,0,'GEN005','Drridham','2025-12-18 18:29:16','0000-00-00 00:00:00',_binary '175.100.134.84','Y','Success'),(3994,0,0,'gen005','janvi','2025-12-18 18:37:15','2025-12-19 13:31:39',_binary '175.100.134.84','N','Success'),(3995,0,0,'gen005','Vishal','2025-12-18 18:37:23','2025-12-18 18:42:08',_binary '175.100.134.84','N','Success'),(3996,0,0,'GEN005','drashti','2025-12-18 18:42:21','2025-12-19 14:35:32',_binary '175.100.134.84','N','Success'),(3997,0,0,'gen005','Manshi','2025-12-18 18:43:27','2025-12-19 13:19:01',_binary '175.100.134.84','N','Success'),(3998,0,0,'gen005','Manshi','2025-12-18 18:43:40','2025-12-19 13:19:01',_binary '175.100.134.84','N','Success'),(3999,0,0,'gen005','Vishal','2025-12-18 18:54:24','2025-12-19 20:56:56',_binary '175.100.134.84','N','Success'),(4000,0,0,'gen005','Vishal','2025-12-18 20:21:28','2025-12-19 20:56:56',_binary '175.100.134.84','N','Success'),(4001,0,0,'gen005','Vishal','2025-12-18 22:00:00','2025-12-19 20:56:56',_binary '175.100.134.84','N','Success'),(4002,0,0,'gen005','Reception ','2025-12-19 08:48:46','2025-12-19 08:48:46',_binary '175.100.131.230','N','Failure'),(4003,0,0,'gen005','Reception ','2025-12-19 08:48:55','2025-12-19 08:48:55',_binary '175.100.131.230','N','Failure'),(4004,0,0,'gen005','Reception ','2025-12-19 08:49:03','2025-12-19 08:49:03',_binary '175.100.131.230','N','Failure'),(4005,0,0,'gen005','Reception','2025-12-19 08:49:54','2025-12-19 14:42:30',_binary '175.100.131.230','N','Success'),(4006,0,0,'gen005','janvi','2025-12-19 09:13:41','2025-12-19 13:31:39',_binary '175.100.134.84','N','Success'),(4007,0,0,'GEN005','priyanshi','2025-12-19 09:14:59','2025-12-19 09:46:19',_binary '175.100.131.230','N','Success'),(4008,0,0,'gen005','riya','2025-12-19 09:19:00','2025-12-20 12:34:39',_binary '175.100.131.230','N','Success'),(4009,0,0,'gen005','riya','2025-12-19 09:33:33','2025-12-19 09:33:33',_binary '175.100.131.230','N','Failure'),(4010,0,0,'gen005','riya','2025-12-19 09:33:53','2025-12-20 12:34:39',_binary '175.100.131.230','N','Success'),(4011,0,0,'gen005','riya','2025-12-19 09:35:48','2025-12-19 09:35:48',_binary '175.100.131.230','N','Failure'),(4012,0,0,'gen005','riya','2025-12-19 09:36:03','2025-12-19 09:36:03',_binary '175.100.131.230','N','Failure'),(4013,0,0,'gen005','riya','2025-12-19 09:36:25','2025-12-20 12:34:39',_binary '175.100.131.230','N','Success'),(4014,0,0,'GEN005','drashti','2025-12-19 09:46:30','2025-12-19 14:35:32',_binary '175.100.131.230','N','Success'),(4015,0,0,'gen005','Manshi','2025-12-19 10:10:11','2025-12-19 13:19:01',_binary '175.100.131.230','N','Success'),(4016,0,0,'gen005','Drpratapsi','2025-12-19 10:30:15','0000-00-00 00:00:00',_binary '175.100.131.230','Y','Success'),(4017,0,0,'gen005','darshan','2025-12-19 10:40:34','0000-00-00 00:00:00',_binary '175.100.131.230','Y','Success'),(4018,0,0,'gen005','Dharmishth','2025-12-19 11:02:49','0000-00-00 00:00:00',_binary '175.100.131.230','Y','Success'),(4019,0,0,'gen005','Dharmishth','2025-12-19 11:03:32','0000-00-00 00:00:00',_binary '175.100.131.230','Y','Success'),(4020,0,0,'GEN005','drarchit','2025-12-19 11:06:12','2025-12-20 12:34:08',_binary '175.100.131.230','N','Success'),(4021,0,0,'gen005','mo','2025-12-19 11:17:38','2025-12-20 12:35:39',_binary '175.100.131.230','N','Success'),(4022,0,0,'gen005','Drjayant','2025-12-19 11:23:08','2025-12-19 19:54:56',_binary '175.100.131.230','N','Success'),(4023,0,0,'gen005','Dharmishth','2025-12-19 11:28:27','0000-00-00 00:00:00',_binary '175.100.131.230','Y','Success'),(4024,0,0,'gen005','mo','2025-12-19 13:05:55','2025-12-20 12:35:39',_binary '175.100.131.230','N','Success'),(4025,0,0,'GEN005','Manshi','2025-12-19 13:22:45','2025-12-20 12:16:53',_binary '175.100.131.230','N','Success'),(4026,0,0,'GEN005','Manshi','2025-12-19 13:22:51','2025-12-20 12:16:53',_binary '175.100.131.230','N','Success'),(4027,0,0,'GEN005','drarchit','2025-12-19 13:24:15','2025-12-20 12:34:08',_binary '175.100.131.230','N','Success'),(4028,0,0,'gen005','janvi','2025-12-19 13:34:53','2025-12-20 14:03:01',_binary '175.100.131.230','N','Success'),(4029,0,0,'gen005','priyanshi','2025-12-19 14:35:37','2025-12-19 16:40:00',_binary '175.100.131.230','N','Success'),(4030,0,0,'gen005','priyanshi','2025-12-19 14:59:37','2025-12-19 16:40:00',_binary '175.100.132.158','N','Success'),(4031,0,0,'gen005','Reception','2025-12-19 16:13:23','2025-12-19 20:21:26',_binary '175.100.132.158','N','Success'),(4032,0,0,'GEN005','mo','2025-12-19 16:20:59','2025-12-20 12:35:39',_binary '175.100.132.158','N','Success'),(4033,0,0,'GEN005','mo','2025-12-19 16:23:43','2025-12-20 12:35:39',_binary '175.100.132.158','N','Success'),(4034,0,0,'GEN005','mo','2025-12-19 16:27:12','2025-12-20 12:35:39',_binary '175.100.132.158','N','Success'),(4035,0,0,'gen005','priyanshi','2025-12-19 16:32:24','2025-12-19 16:40:00',_binary '175.100.132.158','N','Success'),(4036,0,0,'gen005','drashti','2025-12-19 16:40:09','2025-12-19 19:36:49',_binary '175.100.132.158','N','Success'),(4037,0,0,'gen005','Manshi','2025-12-19 17:10:56','2025-12-20 12:16:53',_binary '175.100.132.158','N','Success'),(4038,0,0,'gen005','priyanshi','2025-12-19 17:11:52','2025-12-19 20:24:09',_binary '175.100.132.158','N','Success'),(4039,0,0,'gen005','darshan','2025-12-19 17:14:38','0000-00-00 00:00:00',_binary '175.100.132.158','Y','Success'),(4040,0,0,'gen005','mo','2025-12-19 17:26:45','2025-12-20 12:35:39',_binary '175.100.132.158','N','Success'),(4041,0,0,'gen005','Vishal','2025-12-19 17:52:20','2025-12-19 20:56:56',_binary '175.100.132.158','N','Success'),(4042,0,0,'GEN005','mo','2025-12-19 18:08:31','2025-12-20 12:35:39',_binary '175.100.132.158','N','Success'),(4043,0,0,'GEN005','Drridham','2025-12-19 18:11:54','0000-00-00 00:00:00',_binary '175.100.132.158','Y','Success'),(4044,0,0,'gen005','Drjayant','2025-12-19 18:21:09','2025-12-19 19:54:56',_binary '175.100.132.158','N','Success'),(4045,0,0,'GEN005','drarchit','2025-12-19 18:21:20','2025-12-20 12:34:08',_binary '175.100.132.158','N','Success'),(4046,0,0,'gen005','Vishal','2025-12-19 18:55:34','2025-12-19 20:56:56',_binary '175.100.132.158','N','Success'),(4047,0,0,'GEN005','mo','2025-12-19 19:01:39','2025-12-20 12:35:39',_binary '175.100.132.158','N','Success'),(4048,0,0,'gen005','Vishal','2025-12-19 19:10:52','2025-12-19 20:56:56',_binary '175.100.132.158','N','Success'),(4049,0,0,'gen005','shweta','2025-12-19 19:37:00','2025-12-19 20:22:46',_binary '175.100.132.158','N','Success'),(4050,0,0,'gen005','Reception','2025-12-19 20:24:11','2025-12-22 15:01:59',_binary '175.100.132.158','N','Success'),(4051,0,0,'gen005','Shweta','2025-12-19 20:25:27','2025-12-22 16:25:50',_binary '175.100.132.158','N','Success'),(4052,0,0,'gen005','Shweta','2025-12-19 20:35:09','2025-12-22 16:25:50',_binary '175.100.132.158','N','Success'),(4053,0,0,'GEN005','mo','2025-12-19 20:41:09','2025-12-20 12:35:39',_binary '175.100.132.158','N','Success'),(4054,0,0,'GEN005','VISHAL','2025-12-19 20:45:26','2025-12-19 20:56:56',_binary '175.100.132.158','N','Success'),(4055,0,0,'gen005','Vishal','2025-12-19 22:21:18','2025-12-21 12:16:18',_binary '175.100.132.158','N','Success'),(4056,0,0,'GEN005','mo','2025-12-19 22:55:00','2025-12-20 12:35:39',_binary '175.100.132.158','N','Success'),(4057,0,0,'GEN005','mo','2025-12-20 01:15:09','2025-12-20 12:35:39',_binary '175.100.132.158','N','Success'),(4058,0,0,'gen005','priyanshi','2025-12-20 08:44:00','2025-12-20 09:35:55',_binary '175.100.131.225','N','Success'),(4059,0,0,'gen005','priyanshi','2025-12-20 08:44:13','2025-12-20 09:35:55',_binary '175.100.131.225','N','Success'),(4060,0,0,'gen005','janvi','2025-12-20 09:12:38','2025-12-20 14:03:01',_binary '175.100.131.225','N','Success'),(4061,0,0,'gen005','riya','2025-12-20 09:17:00','2025-12-20 12:34:39',_binary '175.100.131.225','N','Success'),(4062,0,0,'gen005','drashti','2025-12-20 09:36:02','2025-12-20 11:10:50',_binary '175.100.131.225','N','Success'),(4063,0,0,'gen005','Priyanshi','2025-12-20 09:37:55','2025-12-20 12:17:17',_binary '175.100.131.225','N','Success'),(4064,0,0,'gen005','janvi','2025-12-20 10:16:00','2025-12-20 14:03:01',_binary '175.100.131.225','N','Success'),(4065,0,0,'gen005','Manshi','2025-12-20 10:16:05','2025-12-20 12:16:53',_binary '175.100.131.225','N','Success'),(4066,0,0,'gen005','riya','2025-12-20 10:26:35','2025-12-20 12:34:39',_binary '175.100.131.225','N','Success'),(4067,0,0,'gen005','riya','2025-12-20 10:49:02','2025-12-20 12:34:39',_binary '175.100.131.225','N','Success'),(4068,0,0,'gen005','mo','2025-12-20 10:53:04','2025-12-20 12:35:39',_binary '175.100.131.225','N','Success'),(4069,0,0,'GEN005','mo','2025-12-20 11:01:43','2025-12-20 12:35:39',_binary '175.100.131.225','N','Success'),(4070,0,0,'GEN005','drarchit','2025-12-20 11:03:58','2025-12-20 12:34:08',_binary '175.100.131.225','N','Success'),(4071,0,0,'gen005','Priyanshi','2025-12-20 11:09:48','2025-12-20 12:17:17',_binary '175.100.131.225','N','Success'),(4072,0,0,'gen005','drashti','2025-12-20 11:11:24','2025-12-20 14:05:54',_binary '175.100.131.225','N','Success'),(4073,0,0,'GEN005','Drsagar','2025-12-20 11:14:12','0000-00-00 00:00:00',_binary '175.100.131.225','Y','Success'),(4074,0,0,'gen005','Drjayant','2025-12-20 11:25:35','2025-12-20 13:33:19',_binary '175.100.131.225','N','Success'),(4075,0,0,'GEN005','mo','2025-12-20 11:28:49','2025-12-20 12:35:39',_binary '175.100.131.225','N','Success'),(4076,0,0,'gen005','Dharmishth','2025-12-20 11:31:06','0000-00-00 00:00:00',_binary '175.100.131.225','Y','Success'),(4077,0,0,'gen005','shweta','2025-12-20 12:17:42','2025-12-22 16:25:50',_binary '175.100.131.225','N','Success'),(4078,0,0,'gen005','Manshi','2025-12-20 12:17:47','2025-12-22 13:49:47',_binary '175.100.131.225','N','Success'),(4079,0,0,'GEN005','Drridham','2025-12-20 12:18:17','0000-00-00 00:00:00',_binary '175.100.131.225','Y','Success'),(4080,0,0,'gen005','shweta','2025-12-20 12:18:41','2025-12-22 16:25:50',_binary '175.100.131.225','N','Success'),(4081,0,0,'GEN005','drarchit','2025-12-20 12:34:45','2025-12-20 12:39:21',_binary '175.100.131.225','N','Success'),(4082,0,0,'gen005','Mo','2025-12-20 12:34:52','2025-12-20 12:35:39',_binary '175.100.131.225','N','Success'),(4083,0,0,'gen005','riya','2025-12-20 12:35:49','2025-12-20 13:03:17',_binary '175.100.131.225','N','Success'),(4084,0,0,'GEN005','drarchit','2025-12-20 12:39:29','2025-12-20 12:40:18',_binary '175.100.131.225','N','Success'),(4085,0,0,'GEN005','drarchit','2025-12-20 12:41:37','2025-12-22 12:23:06',_binary '175.100.131.225','N','Success'),(4086,0,0,'gen005','Dharmishth','2025-12-20 12:45:25','0000-00-00 00:00:00',_binary '175.100.131.225','Y','Success'),(4087,0,0,'gen005','Dharmishth','2025-12-20 12:45:50','0000-00-00 00:00:00',_binary '175.100.131.225','Y','Success'),(4088,0,0,'gen005','riya','2025-12-20 13:03:43','2025-12-20 13:03:43',_binary '175.100.131.225','N','Failure'),(4089,0,0,'gen005','riya','2025-12-20 13:04:07','2025-12-20 20:29:50',_binary '175.100.131.225','N','Success'),(4090,0,0,'GEN005','Drsagar','2025-12-20 13:20:17','0000-00-00 00:00:00',_binary '175.100.131.225','Y','Success'),(4091,0,0,'GEN005','drashti','2025-12-20 13:29:22','2025-12-20 14:05:54',_binary '175.100.131.225','N','Success'),(4092,0,0,'GEN005','priyanshi','2025-12-20 14:05:59','2025-12-22 10:44:19',_binary '175.100.131.225','N','Success'),(4093,0,0,'GEN005','priyanshi','2025-12-20 15:36:17','2025-12-22 10:44:19',_binary '175.100.131.178','N','Success'),(4094,0,0,'gen005','riya','2025-12-20 15:41:23','2025-12-20 15:41:23',_binary '175.100.131.178','N','Failure'),(4095,0,0,'gen005','riya','2025-12-20 15:41:29','2025-12-20 15:41:29',_binary '175.100.131.178','N','Failure'),(4096,0,0,'gen005','riya','2025-12-20 15:42:05','2025-12-20 20:29:50',_binary '175.100.131.178','N','Success'),(4097,0,0,'gen005','Dharmishth','2025-12-20 16:03:44','0000-00-00 00:00:00',_binary '175.100.131.178','Y','Success'),(4098,0,0,'gen005','Dharmishth','2025-12-20 16:03:51','0000-00-00 00:00:00',_binary '175.100.131.178','Y','Success'),(4099,0,0,'gen005','riya','2025-12-20 16:24:23','2025-12-20 16:24:23',_binary '175.100.131.178','N','Failure'),(4100,0,0,'gen005','riya','2025-12-20 16:24:38','2025-12-20 16:24:38',_binary '175.100.131.178','N','Failure'),(4101,0,0,'gen005','riya','2025-12-20 16:24:45','2025-12-20 16:24:45',_binary '175.100.131.178','N','Failure'),(4102,0,0,'gen005','riya','2025-12-20 16:25:00','2025-12-20 20:29:50',_binary '175.100.131.178','N','Success'),(4103,0,0,'gen005','Urvashi','2025-12-20 16:43:54','2025-12-20 18:22:11',_binary '175.100.131.178','N','Success'),(4104,0,0,'gen005','janvi','2025-12-20 17:20:19','2025-12-23 13:45:05',_binary '175.100.131.225','N','Success'),(4105,0,0,'gen005','mo','2025-12-20 17:20:40','2025-12-21 12:00:34',_binary '175.100.131.178','N','Success'),(4106,0,0,'gen005','Manshi','2025-12-20 17:24:33','2025-12-22 13:49:47',_binary '175.100.131.178','N','Success'),(4107,0,0,'GEN005','Urvashi','2025-12-20 17:42:29','2025-12-20 18:22:11',_binary '175.100.131.178','N','Success'),(4108,0,0,'gen005','shweta','2025-12-20 18:22:16','2025-12-22 16:25:50',_binary '175.100.131.178','N','Success'),(4109,0,0,'gen005','Manshi','2025-12-20 18:44:19','2025-12-22 13:49:47',_binary '175.100.131.178','N','Success'),(4110,0,0,'GEN005','mo','2025-12-20 18:48:55','2025-12-21 12:00:34',_binary '175.100.131.178','N','Success'),(4111,0,0,'gen005','janvi','2025-12-20 18:55:28','2025-12-23 13:45:05',_binary '175.100.131.178','N','Success'),(4112,0,0,'gen005','riya','2025-12-20 20:01:02','2025-12-20 20:29:50',_binary '175.100.131.178','N','Success'),(4113,0,0,'gen005','Manshi','2025-12-20 20:01:10','2025-12-22 13:49:47',_binary '175.100.131.178','N','Success'),(4114,0,0,'gen005','Manshi','2025-12-20 20:50:35','2025-12-22 13:49:47',_binary '175.100.131.178','N','Success'),(4115,0,0,'gen005','riya','2025-12-20 20:50:39','2025-12-20 20:50:39',_binary '175.100.131.178','N','Failure'),(4116,0,0,'gen005','riya','2025-12-20 20:50:50','2025-12-20 21:07:21',_binary '175.100.131.178','N','Success'),(4117,0,0,'gen005','Manshi','2025-12-20 20:59:41','2025-12-22 13:49:47',_binary '175.100.131.178','N','Success'),(4118,0,0,'gen005','drashti','2025-12-21 09:06:56','2025-12-21 10:37:09',_binary '175.100.134.71','N','Success'),(4119,0,0,'gen005','Vishal','2025-12-21 10:03:09','2025-12-21 12:16:18',_binary '175.100.134.71','N','Success'),(4120,0,0,'gen005','drashti','2025-12-21 10:28:48','2025-12-21 10:37:09',_binary '175.100.134.71','N','Success'),(4121,0,0,'GEN005','mo','2025-12-21 10:35:36','2025-12-21 12:00:34',_binary '175.100.134.71','N','Success'),(4122,0,0,'gen005','Vishal','2025-12-21 11:10:22','2025-12-21 12:16:18',_binary '175.100.134.71','N','Success'),(4123,0,0,'gen005','Vishal','2025-12-21 11:12:19','2025-12-21 12:16:18',_binary '175.100.134.71','N','Success'),(4124,0,0,'gen005','drashti','2025-12-21 11:25:04','2025-12-22 10:02:37',_binary '175.100.134.71','N','Success'),(4125,0,0,'GEN005','Vishal','2025-12-21 12:00:43','2025-12-21 12:16:18',_binary '175.100.134.71','N','Success'),(4126,0,0,'GEN005','Vishal','2025-12-21 12:16:21','0000-00-00 00:00:00',_binary '175.100.134.71','Y','Success'),(4127,0,0,'GEN005','riya','2025-12-21 12:19:59','2025-12-21 12:21:08',_binary '175.100.134.71','N','Success'),(4128,0,0,'GEN005','mo','2025-12-21 12:22:37','2025-12-23 09:30:43',_binary '175.100.134.71','N','Success'),(4129,0,0,'GEN005','mo','2025-12-21 13:42:03','2025-12-23 09:30:43',_binary '175.100.134.71','N','Success'),(4130,0,0,'GEN005','mo','2025-12-21 16:02:08','2025-12-23 09:30:43',_binary '175.100.134.171','N','Success'),(4131,0,0,'Gen005','Vishal','2025-12-21 19:52:22','0000-00-00 00:00:00',_binary '175.100.134.171','Y','Success'),(4132,0,0,'Gen005','Vishal','2025-12-21 20:24:17','0000-00-00 00:00:00',_binary '175.100.134.171','Y','Success'),(4133,0,0,'GEN005','mo','2025-12-22 00:55:10','2025-12-23 09:30:43',_binary '175.100.134.171','N','Success'),(4134,0,0,'gen005','Reception','2025-12-22 08:43:01','2025-12-22 15:01:59',_binary '175.100.131.176','N','Success'),(4135,0,0,'gen005','janvi','2025-12-22 09:19:17','2025-12-23 13:45:05',_binary '175.100.131.176','N','Success'),(4136,0,0,'gen005','riya','2025-12-22 09:21:40','2025-12-22 13:41:13',_binary '175.100.131.176','N','Success'),(4137,0,0,'gen005','drashti','2025-12-22 09:35:40','2025-12-22 10:02:37',_binary '175.100.131.176','N','Success'),(4138,0,0,'gen005','Urvashi','2025-12-22 10:02:50','2025-12-22 10:05:02',_binary '175.100.131.176','N','Success'),(4139,0,0,'gen005','priyanshi','2025-12-22 10:05:11','2025-12-22 10:44:19',_binary '175.100.131.176','N','Success'),(4140,0,0,'gen005','priyanshi','2025-12-22 10:05:46','2025-12-22 10:44:19',_binary '175.100.131.176','N','Success'),(4141,0,0,'gen005','Manshi','2025-12-22 10:13:15','2025-12-22 13:49:47',_binary '175.100.131.176','N','Success'),(4142,0,0,'gen005','darshan','2025-12-22 10:40:04','0000-00-00 00:00:00',_binary '175.100.131.176','Y','Success'),(4143,0,0,'GEN005','drashti','2025-12-22 10:44:26','2025-12-22 12:17:08',_binary '175.100.131.176','N','Success'),(4144,0,0,'GEN005','drarchit','2025-12-22 10:51:26','2025-12-22 12:23:06',_binary '175.100.131.176','N','Success'),(4145,0,0,'gen005','Drjayant','2025-12-22 11:03:05','0000-00-00 00:00:00',_binary '175.100.131.176','Y','Success'),(4146,0,0,'gen005','Drjayant','2025-12-22 11:09:29','0000-00-00 00:00:00',_binary '175.100.131.176','Y','Success'),(4147,0,0,'gen005','Drpratapsi','2025-12-22 11:14:08','0000-00-00 00:00:00',_binary '175.100.131.176','Y','Success'),(4148,0,0,'GEN005','Drsagar','2025-12-22 11:15:56','0000-00-00 00:00:00',_binary '175.100.131.176','Y','Success'),(4149,0,0,'GEN005','Drridham','2025-12-22 11:48:57','0000-00-00 00:00:00',_binary '175.100.131.176','Y','Success'),(4150,0,0,'gen005','mo','2025-12-22 12:13:45','2025-12-23 09:30:43',_binary '175.100.131.176','N','Success'),(4151,0,0,'GEN005','Manshi','2025-12-22 12:15:51','2025-12-22 13:49:47',_binary '175.100.131.176','N','Success'),(4152,0,0,'gen005','drashti','2025-12-22 12:18:00','2025-12-22 12:20:22',_binary '175.100.131.176','N','Success'),(4153,0,0,'gen005','priyanshi','2025-12-22 12:20:27','2025-12-22 14:07:06',_binary '175.100.131.176','N','Success'),(4154,0,0,'GEN005','drarchit','2025-12-22 12:26:24','2025-12-22 12:34:42',_binary '175.100.131.176','N','Success'),(4155,0,0,'GEN005','drarchit','2025-12-22 12:36:09','2025-12-22 19:53:58',_binary '175.100.131.176','N','Success'),(4156,0,0,'gen005','Drpratapsi','2025-12-22 12:53:14','0000-00-00 00:00:00',_binary '175.100.131.176','Y','Success'),(4157,0,0,'GEN005','mo','2025-12-22 13:05:07','2025-12-23 09:30:43',_binary '175.100.131.176','N','Success'),(4158,0,0,'gen005','Manshi','2025-12-22 13:13:52','2025-12-22 13:49:47',_binary '175.100.131.176','N','Success'),(4159,0,0,'GEN005','drarchit','2025-12-22 13:19:13','2025-12-22 19:53:58',_binary '175.100.131.176','N','Success'),(4160,0,0,'gen005','riya','2025-12-22 13:36:33','2025-12-22 13:36:33',_binary '175.100.131.176','N','Failure'),(4161,0,0,'gen005','riya','2025-12-22 13:36:41','2025-12-22 13:41:13',_binary '175.100.131.176','N','Success'),(4162,0,0,'gen005','TUSHARNAKU','2025-12-22 13:41:34','2025-12-22 13:41:34',_binary '175.100.131.176','N','Failure'),(4163,0,0,'gen005','riya','2025-12-22 13:41:47','2025-12-22 13:41:47',_binary '175.100.131.176','N','Failure'),(4164,0,0,'gen005','riya','2025-12-22 13:41:51','2025-12-22 13:41:51',_binary '175.100.131.176','N','Failure'),(4165,0,0,'gen005','riya','2025-12-22 13:41:54','2025-12-22 13:41:54',_binary '175.100.131.176','N','Failure'),(4166,0,0,'gen005','riya','2025-12-22 13:42:04','2025-12-22 15:13:24',_binary '175.100.131.176','N','Success'),(4167,0,0,'gen005','riya','2025-12-22 13:42:06','2025-12-22 15:13:24',_binary '175.100.131.176','N','Success'),(4168,0,0,'gen005','riya','2025-12-22 13:51:50','2025-12-22 15:13:24',_binary '175.100.131.176','N','Success'),(4169,0,0,'GEN005','shweta','2025-12-22 14:07:24','2025-12-22 16:25:50',_binary '175.100.131.176','N','Success'),(4170,0,0,'gen005','drashti','2025-12-22 14:31:43','2025-12-22 20:47:12',_binary '175.100.131.176','N','Success'),(4171,0,0,'gen005','Dharmishth','2025-12-22 14:43:54','0000-00-00 00:00:00',_binary '175.100.134.83','Y','Success'),(4172,0,0,'gen005','riya','2025-12-22 15:15:59','2025-12-23 09:51:10',_binary '175.100.134.83','N','Success'),(4173,0,0,'gen005','Reception','2025-12-22 16:07:46','2025-12-22 20:59:35',_binary '175.100.134.83','N','Success'),(4174,0,0,'gen005','Dharmishth','2025-12-22 16:16:53','0000-00-00 00:00:00',_binary '175.100.134.83','Y','Success'),(4175,0,0,'gen005','riya','2025-12-22 16:18:32','2025-12-23 09:51:10',_binary '175.100.134.83','N','Success'),(4176,0,0,'GEN005','drashti','2025-12-22 16:26:21','2025-12-22 20:47:12',_binary '175.100.134.83','N','Success'),(4177,0,0,'gen005','Dharmishth','2025-12-22 16:35:00','0000-00-00 00:00:00',_binary '175.100.134.83','Y','Success'),(4178,0,0,'gen005','Dharmishth','2025-12-22 16:46:56','0000-00-00 00:00:00',_binary '175.100.134.83','Y','Success'),(4179,0,0,'gen005','janvi','2025-12-22 16:53:01','2025-12-23 13:45:05',_binary '175.100.131.176','N','Success'),(4180,0,0,'gen005','Manshi','2025-12-22 16:55:07','2025-12-23 12:06:47',_binary '175.100.134.83','N','Success'),(4181,0,0,'gen005','Drpratapsi','2025-12-22 16:57:54','0000-00-00 00:00:00',_binary '175.100.134.83','Y','Success'),(4182,0,0,'gen005','riya','2025-12-22 16:59:35','2025-12-22 16:59:35',_binary '175.100.134.83','N','Failure'),(4183,0,0,'gen005','riya','2025-12-22 16:59:37','2025-12-22 16:59:37',_binary '175.100.134.83','N','Failure'),(4184,0,0,'gen005','Vishal','2025-12-22 16:59:51','0000-00-00 00:00:00',_binary '175.100.134.83','Y','Success'),(4185,0,0,'gen005','darshan','2025-12-22 17:08:42','0000-00-00 00:00:00',_binary '175.100.134.83','Y','Success'),(4186,0,0,'gen005','janvi','2025-12-22 17:29:39','2025-12-23 13:45:05',_binary '175.100.131.176','N','Success'),(4187,0,0,'gen005','Drjayant','2025-12-22 18:02:02','0000-00-00 00:00:00',_binary '175.100.134.83','Y','Success'),(4188,0,0,'GEN005','mo','2025-12-22 18:15:13','2025-12-23 09:30:43',_binary '175.100.134.83','N','Success'),(4189,0,0,'GEN005','Drsagar','2025-12-22 18:20:22','0000-00-00 00:00:00',_binary '175.100.134.83','Y','Success'),(4190,0,0,'GEN005','drarchit','2025-12-22 18:20:53','2025-12-22 19:53:58',_binary '175.100.134.83','N','Success'),(4191,0,0,'gen005','Drpratapsi','2025-12-22 18:30:48','0000-00-00 00:00:00',_binary '175.100.134.83','Y','Success'),(4192,0,0,'gen005','Drpratapsi','2025-12-22 18:30:49','0000-00-00 00:00:00',_binary '175.100.134.83','Y','Success'),(4193,0,0,'GEN005','drarchit','2025-12-22 19:59:07','2025-12-23 13:18:29',_binary '175.100.134.83','N','Success'),(4194,0,0,'GEN005','drarchit','2025-12-22 20:00:36','2025-12-23 13:18:29',_binary '175.100.134.83','N','Success'),(4195,0,0,'GEN005','mo','2025-12-22 20:23:07','2025-12-23 09:30:43',_binary '175.100.134.83','N','Success'),(4196,0,0,'gen005','Priyanshi','2025-12-22 20:59:53','0000-00-00 00:00:00',_binary '175.100.134.83','Y','Success'),(4197,0,0,'gen005','priyanshi','2025-12-22 21:09:44','0000-00-00 00:00:00',_binary '175.100.134.83','Y','Success'),(4198,0,0,'GEN005','priyanshi','2025-12-22 21:12:27','0000-00-00 00:00:00',_binary '175.100.134.83','Y','Success'),(4199,0,0,'GEN005','mo','2025-12-22 21:13:49','2025-12-23 09:30:43',_binary '175.100.134.83','N','Success'),(4200,0,0,'GEN005','mo','2025-12-22 23:33:57','2025-12-23 09:30:43',_binary '175.100.134.83','N','Success'),(4201,0,0,'GEN005','mo','2025-12-23 01:32:13','2025-12-23 09:30:43',_binary '175.100.134.83','N','Success'),(4202,0,0,'gen005','Reception','2025-12-23 08:41:04','2025-12-23 15:25:51',_binary '175.100.132.123','N','Success'),(4203,0,0,'gen005','Dharmishth','2025-12-23 08:50:04','0000-00-00 00:00:00',_binary '175.100.132.123','Y','Success'),(4204,0,0,'GEN005','mo','2025-12-23 08:56:13','2025-12-23 09:30:43',_binary '175.100.132.123','N','Success'),(4205,0,0,'gen005','janvi','2025-12-23 09:15:41','2025-12-23 13:45:05',_binary '175.100.132.123','N','Success'),(4206,0,0,'gen005','riya','2025-12-23 09:18:02','2025-12-23 09:51:10',_binary '175.100.132.123','N','Success'),(4207,0,0,'gen005','shweta','2025-12-23 09:28:34','2025-12-23 09:37:23',_binary '175.100.132.123','N','Success'),(4208,0,0,'GEN005','riya','2025-12-23 09:31:15','2025-12-23 09:51:10',_binary '175.100.132.123','N','Success'),(4209,0,0,'gen005','drashti','2025-12-23 09:37:31','2025-12-23 14:14:40',_binary '175.100.132.123','N','Success'),(4210,0,0,'gen005','Dharmishth','2025-12-23 09:51:01','0000-00-00 00:00:00',_binary '175.100.132.123','Y','Success'),(4211,0,0,'gen005','Manshi','2025-12-23 10:16:13','2025-12-23 12:06:47',_binary '175.100.132.123','N','Success'),(4212,0,0,'gen005','Dharmishth','2025-12-23 10:17:06','0000-00-00 00:00:00',_binary '175.100.132.123','Y','Success'),(4213,0,0,'GEN005','Drridham','2025-12-23 10:40:29','0000-00-00 00:00:00',_binary '175.100.132.123','Y','Success'),(4214,0,0,'gen005','darshan','2025-12-23 10:43:14','0000-00-00 00:00:00',_binary '175.100.132.123','Y','Success'),(4215,0,0,'gen005','Drpratapsi','2025-12-23 10:48:31','0000-00-00 00:00:00',_binary '175.100.132.123','Y','Success'),(4216,0,0,'GEN005','drarchit','2025-12-23 10:58:23','2025-12-23 13:18:29',_binary '175.100.132.123','N','Success'),(4217,0,0,'GEN005','mo','2025-12-23 11:02:13','0000-00-00 00:00:00',_binary '175.100.132.123','Y','Success'),(4218,0,0,'gen005','Drjayant','2025-12-23 11:08:37','0000-00-00 00:00:00',_binary '175.100.132.123','Y','Success'),(4219,0,0,'gen005','riya','2025-12-23 11:20:43','2025-12-23 16:48:32',_binary '175.100.132.123','N','Success'),(4220,0,0,'GEN005','mo','2025-12-23 12:13:01','0000-00-00 00:00:00',_binary '175.100.132.123','Y','Success'),(4221,0,0,'gen005','Manshi','2025-12-23 12:31:19','0000-00-00 00:00:00',_binary '175.100.132.123','Y','Success'),(4222,0,0,'gen005','Manshi','2025-12-23 12:31:51','0000-00-00 00:00:00',_binary '175.100.132.123','Y','Success'),(4223,0,0,'GEN005','drarchit','2025-12-23 13:19:20','2025-12-23 13:36:34',_binary '175.100.132.123','N','Success'),(4224,0,0,'gen005','janvi','2025-12-23 13:53:19','2025-12-23 14:00:42',_binary '175.100.132.123','N','Success'),(4225,0,0,'gen005','Shweta','2025-12-23 14:00:52','0000-00-00 00:00:00',_binary '175.100.132.123','Y','Success'),(4226,0,0,'gen005','m0','2025-12-23 14:50:58','2025-12-23 14:50:58',_binary '175.100.132.1','N','Failure'),(4227,0,0,'gen005','mo','2025-12-23 14:51:23','2025-12-23 14:51:23',_binary '175.100.132.1','N','Failure'),(4228,0,0,'gen005','mo','2025-12-23 14:54:27','0000-00-00 00:00:00',_binary '175.100.132.1','Y','Success'),(4229,0,0,'GEN005','shweta','2025-12-23 15:00:58','0000-00-00 00:00:00',_binary '175.100.132.1','Y','Success'),(4230,0,0,'GEN005','Drridham','2025-12-23 15:22:32','0000-00-00 00:00:00',_binary '175.100.132.1','Y','Success'),(4231,0,0,'gen005','mo','2025-12-23 15:22:54','0000-00-00 00:00:00',_binary '175.100.132.1','Y','Success'),(4232,0,0,'gen005','Reception','2025-12-23 16:04:49','0000-00-00 00:00:00',_binary '175.100.132.1','Y','Success'),(4233,0,0,'gen005','mo','2025-12-23 16:10:52','0000-00-00 00:00:00',_binary '175.100.132.1','Y','Success'),(4234,0,0,'GEN005','shweta','2025-12-23 16:26:19','0000-00-00 00:00:00',_binary '175.100.132.1','Y','Success'),(4235,0,0,'gen005','RIYA ','2025-12-23 16:36:44','2025-12-23 16:36:44',_binary '175.100.132.1','N','Failure'),(4236,0,0,'gen005','RIYA ','2025-12-23 16:36:50','2025-12-23 16:36:50',_binary '175.100.132.1','N','Failure'),(4237,0,0,'gen005','riya','2025-12-23 16:36:58','2025-12-23 16:48:32',_binary '175.100.132.1','N','Success'),(4238,0,0,'GEN005','drashti','2025-12-23 16:39:54','0000-00-00 00:00:00',_binary '175.100.132.1','Y','Success'),(4239,0,0,'gen005','Vishal','2025-12-23 16:54:07','0000-00-00 00:00:00',_binary '175.100.132.1','Y','Success'),(4240,0,0,'gen005','janvi','2025-12-23 16:57:39','0000-00-00 00:00:00',_binary '175.100.132.123','Y','Success'),(4241,0,0,'gen005','Vishal','2025-12-23 17:06:16','0000-00-00 00:00:00',_binary '175.100.132.1','Y','Success'),(4242,0,0,'gen005','darshan','2025-12-23 17:12:36','0000-00-00 00:00:00',_binary '175.100.132.1','Y','Success'),(4243,0,0,'gen005','Manshi','2025-12-23 17:18:39','0000-00-00 00:00:00',_binary '175.100.132.1','Y','Success'),(4244,0,0,'GEN005','mo','2025-12-23 17:39:56','0000-00-00 00:00:00',_binary '175.100.132.1','Y','Success'),(4245,0,0,'gen005','thims','2025-12-23 17:49:59','2025-12-23 17:50:38',_binary '45.113.106.111','N','Success'),(4246,0,0,'gen005','thims','2025-12-23 17:51:33','0000-00-00 00:00:00',_binary '45.113.106.111','Y','Success'),(4247,0,0,'gen005','thims','2025-12-23 17:54:37','0000-00-00 00:00:00',_binary '45.113.106.111','Y','Success');
/*!40000 ALTER TABLE `user_login_audit_trial` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_notification`
--

DROP TABLE IF EXISTS `user_notification`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_notification` (
  `notification_id` int(11) NOT NULL AUTO_INCREMENT,
  `notifiction` text COLLATE utf8_unicode_ci NOT NULL,
  `notification_type` enum('System','User') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'System',
  `notification_time` int(4) NOT NULL,
  `is_active` enum('Y','N') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`notification_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_notification`
--

LOCK TABLES `user_notification` WRITE;
/*!40000 ALTER TABLE `user_notification` DISABLE KEYS */;
INSERT INTO `user_notification` VALUES (1,'<P><SPAN STYLE=\"COLOR:#F02020\"><SPAN STYLE=\"FONT-SIZE:20PX\"><EM><STRONG>You have an outstanding payment. Request to clear for smooth operation. Thanks.&nbsp;</STRONG></EM></SPAN></SPAN></P>','System',60,'N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(2,'<P><SPAN STYLE=\"COLOR:#F02020\"><SPAN STYLE=\"FONT-SIZE:20PX\"><EM><STRONG>\r\n<P>Contact numbers of our support team members are changed as below.</P>\r\n\r\n<P>9099444971 THIMS Support  1 (Jigar)</P>\r\n\r\n<P>9099444972  THIMS Support 2 (Raghu)</P> \r\n\r\n<P>Please make necessary corrections in your contact list.\r\n\r\n&nbsp;</STRONG></EM></SPAN></SPAN></P>','User',15,'N','','0000-00-00 00:00:00','','0000-00-00 00:00:00'),(3,'<P><SPAN STYLE=\"COLOR:#F02020\"><SPAN STYLE=\"FONT-SIZE:20PX\"><EM><STRONG>\r\n<P>We are observing holidays from Monday, 20/10/2025 to Thursday,23/10/2025 on account of Dipawali festivals \r\n\r\n&nbsp;</STRONG></EM></SPAN></SPAN></P>','User',0,'N','Thims','0000-00-00 00:00:00','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `user_notification` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_notification_mapping`
--

DROP TABLE IF EXISTS `user_notification_mapping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_notification_mapping` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` varchar(25) COLLATE utf8_unicode_ci NOT NULL,
  `notification_id` int(11) NOT NULL,
  `count` int(11) NOT NULL,
  `is_active` enum('Y','N') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Y',
  `CreatedBy` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_notification_mapping`
--

LOCK TABLES `user_notification_mapping` WRITE;
/*!40000 ALTER TABLE `user_notification_mapping` DISABLE KEYS */;
INSERT INTO `user_notification_mapping` VALUES (1,'thims',2,1,'N','thims','2025-06-04 18:14:05','thims','2025-06-10 16:52:48'),(2,'thims',2,1,'N','thims','2025-06-04 18:14:05','thims','2025-06-10 16:52:48'),(3,'reception',2,1,'N','reception','2025-10-06 14:32:49','reception','2025-10-06 14:32:59'),(4,'priyanshi',2,1,'N','priyanshi','2025-10-06 14:58:01','priyanshi','2025-10-06 14:58:04'),(5,'darshan',2,1,'N','darshan','2025-10-06 14:59:46','darshan','2025-10-06 14:59:49'),(6,'vishal',2,1,'N','vishal','2025-10-06 19:51:33','vishal','2025-10-06 19:51:36'),(7,'shweta',2,1,'N','shweta','2025-10-07 19:35:50','shweta','2025-10-08 09:58:29'),(8,'drjayant',2,1,'N','drjayant','2025-10-07 19:44:07','drjayant','2025-10-07 19:44:19'),(9,'drarchit',2,1,'N','drarchit','2025-10-07 19:53:52','drarchit','2025-10-07 19:53:55'),(10,'drashti',2,1,'N','drashti','2025-10-08 09:51:03','drashti','2025-10-08 09:51:11'),(11,'janvi',2,1,'N','janvi','2025-10-08 10:00:07','janvi','2025-10-08 10:00:11'),(12,'riya',2,1,'N','riya','2025-10-08 10:28:29','riya','2025-10-08 10:28:33'),(13,'manshi',2,31,'Y','manshi','2025-10-08 10:33:52','manshi','2025-10-17 10:12:22'),(14,'drpratapsihn',2,1,'N','drpratapsihn','2025-10-08 10:51:24','drpratapsihn','2025-10-08 10:51:34'),(15,'mo',2,1,'N','mo','2025-10-08 11:16:18','mo','2025-10-08 11:16:21'),(16,'drsagar',2,1,'N','drsagar','2025-10-08 13:35:32','drsagar','2025-10-08 13:35:39'),(17,'urvashi',2,1,'N','urvashi','2025-10-08 17:39:18','urvashi','2025-10-08 17:39:20'),(18,'drpratapsinh',2,13,'Y','drpratapsinh','2025-10-10 17:49:08','drpratapsinh','2025-10-17 11:24:53'),(19,'drridham',2,6,'Y','drridham','2025-10-10 18:40:30','drridham','2025-10-15 11:38:26'),(20,'dharmishthaben',2,1,'N','dharmishthaben','2025-10-15 12:31:05','dharmishthaben','2025-10-15 12:31:07'),(21,'mo',3,1,'N','mo','2025-10-17 11:38:46','mo','2025-10-17 16:27:57');
/*!40000 ALTER TABLE `user_notification_mapping` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_wise_floor`
--

DROP TABLE IF EXISTS `user_wise_floor`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_wise_floor` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `user_id` varchar(10) NOT NULL,
  `floor` varchar(30) NOT NULL,
  `room_cat` varchar(10) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`user_id`),
  UNIQUE KEY `company_id_2` (`company_id`,`branch_id`,`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_wise_floor`
--

LOCK TABLES `user_wise_floor` WRITE;
/*!40000 ALTER TABLE `user_wise_floor` DISABLE KEYS */;
INSERT INTO `user_wise_floor` VALUES (1,0,0,'mo','',''),(2,0,0,'drjayant','',''),(3,0,0,'riya','','');
/*!40000 ALTER TABLE `user_wise_floor` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `visit`
--

DROP TABLE IF EXISTS `visit`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `visit` (
  `visit_id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `visit_type` varchar(1) NOT NULL,
  `d_visit` enum('D','V','N') NOT NULL DEFAULT 'N' COMMENT 'IF req from L,R OR Direct bill OR virtual visit',
  `fyear` varchar(4) NOT NULL,
  `opd_reg_id` bigint(20) NOT NULL,
  `ipd_reg_id` bigint(20) NOT NULL,
  `visit_date` date NOT NULL,
  `patient_reg_end_date` date NOT NULL,
  `patient_id` int(11) NOT NULL,
  `bill_to` int(11) NOT NULL,
  `patient_reg_id` bigint(20) NOT NULL,
  `mlc_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `mlc_type` varchar(15) NOT NULL,
  `trauma_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `trauma_type` varchar(15) NOT NULL,
  `reg_remark` varchar(50) NOT NULL,
  `visitReason` varchar(50) NOT NULL,
  `emergencyVisit` enum('Y','N') NOT NULL DEFAULT 'N',
  `dayCare` enum('Y','N') NOT NULL DEFAULT 'N',
  `dept_id` varchar(5) NOT NULL,
  `profile` varchar(20) NOT NULL,
  `pregnancy` enum('Y','N') NOT NULL DEFAULT 'N',
  `reff_doctor` int(11) NOT NULL,
  `reff_to_doctor` varchar(30) NOT NULL,
  `doctor_id` varchar(5) NOT NULL,
  `fees` int(11) NOT NULL,
  `center_code` varchar(5) NOT NULL COMMENT 'if multilocation is Y in Provider master then this field will be used',
  `business_entity_code` varchar(4) NOT NULL COMMENT 'if $p_Business_Entity_Doctor_Tagging value is Y then this will used.',
  `NRI` enum('Y','N') NOT NULL DEFAULT 'N',
  `NRI_Residence` varchar(20) NOT NULL,
  `cancellation_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `cancel_remark` varchar(40) NOT NULL,
  `payment_by` enum('P','S') NOT NULL DEFAULT 'P',
  `insurance_mediclaim` varchar(1) NOT NULL,
  `cashless` varchar(1) NOT NULL,
  `insurance_company` varchar(6) NOT NULL,
  `insurance_TPA` varchar(6) NOT NULL,
  `insurance_claim_no` varchar(40) NOT NULL,
  `insurance_aproval_date` date NOT NULL,
  `ins_id_card_no` varchar(30) NOT NULL,
  `policy_no` varchar(30) NOT NULL,
  `patient_accident` varchar(1) NOT NULL,
  `patient_rate_card` int(11) NOT NULL,
  `is_package_available` enum('Y','N') NOT NULL DEFAULT 'N',
  `is_ph_ptr_applicable` enum('N','Y') NOT NULL DEFAULT 'N',
  `hosp_name_on_ph_bill` enum('Y','N') NOT NULL DEFAULT 'N' COMMENT 'Hospital Name On Pharmacy Bill',
  `admit_time` time NOT NULL,
  `discharge_date` date NOT NULL,
  `discharge_remark` varchar(30) NOT NULL,
  `discharge_type` varchar(20) NOT NULL,
  `discharge_summary_prepared_by` varchar(20) NOT NULL,
  `discharge_summary_submit_flag` enum('Y','N') NOT NULL DEFAULT 'N',
  `patient_in_time` time NOT NULL,
  `patient_out_time` time NOT NULL,
  `force_exit` char(1) NOT NULL,
  `pending_for_report` char(1) NOT NULL,
  `is_visit_flagged` enum('N','R','O','B','Y') NOT NULL DEFAULT 'N',
  `is_rx_opened` enum('Y','N') NOT NULL DEFAULT 'N' COMMENT 'OP Patient Care screen opened or not',
  `unit` tinyint(4) DEFAULT NULL,
  `patient_type` enum('G','O') NOT NULL DEFAULT 'O' COMMENT 'G generated, O original',
  `case_type` enum('N','O') NOT NULL DEFAULT 'N' COMMENT 'N new case, O old case(only for bgh)',
  `token_no` varchar(4) NOT NULL,
  `user_name` varchar(20) NOT NULL,
  `last_update_date` datetime NOT NULL,
  `queue_id` varchar(15) NOT NULL,
  `queue_time` time NOT NULL,
  `queue_priority` int(11) NOT NULL,
  `category` varchar(10) NOT NULL COMMENT 'patient category',
  `CreatedBy` varchar(20) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(20) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`visit_id`),
  KEY `patient_id` (`patient_id`),
  KEY `visit_date` (`visit_date`),
  KEY `discharge_date` (`dayCare`,`discharge_date`) USING BTREE,
  KEY `patient_reg_id` (`patient_reg_id`),
  KEY `visit_type` (`visit_type`,`visit_date`),
  KEY `ipd_reg_id` (`ipd_reg_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7155 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `visit`
--

LOCK TABLES `visit` WRITE;
/*!40000 ALTER TABLE `visit` DISABLE KEYS */;
INSERT INTO `visit` VALUES (1,0,0,'O','N','2526',1,0,'2025-10-08','2026-01-07',1,0,1,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:03:00','0000-00-00','','','','N','10:03:00','11:53:36','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','3','10:52:17',0,'','janvi','2025-10-08 10:03:17','drpratapsihn','2025-10-08 11:53:36'),(2,0,0,'O','N','2526',2,0,'2025-10-08','2026-01-07',2,0,2,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:09:00','0000-00-00','','','','N','10:09:00','11:48:54','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','3','10:52:17',0,'','janvi','2025-10-08 10:09:27','drpratapsihn','2025-10-08 11:48:54'),(3,0,0,'O','N','2526',3,0,'2025-10-08','2026-01-07',3,0,3,'N','','N','','','EMR','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:12:00','0000-00-00','','','','N','10:12:00','11:48:44','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','3','10:52:17',0,'','janvi','2025-10-08 10:13:01','drpratapsihn','2025-10-08 11:48:44'),(4,0,0,'O','N','2526',4,0,'2025-10-08','2026-01-07',4,0,4,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','11:19:19','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','5','10:16:06',0,'','janvi','2025-10-08 10:16:06','drjayant','2025-10-08 11:19:19'),(5,0,0,'O','N','2526',5,0,'2025-10-08','2026-01-07',5,0,5,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','13:31:33','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:16:14',0,'','shweta','2025-10-08 10:16:14','darshan','2025-10-08 13:31:33'),(6,0,0,'O','N','2526',6,0,'2025-10-08','2026-01-07',6,0,6,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:19:00','0000-00-00','','','','N','10:19:00','11:44:50','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:19:48',0,'','shweta','2025-10-08 10:19:48','darshan','2025-10-08 11:44:50'),(7,0,0,'O','N','2526',7,0,'2025-10-08','2026-01-07',7,0,7,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:21:00','0000-00-00','','','','N','10:21:00','13:35:56','','N','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','2','10:21:15',0,'','drashti','2025-10-08 10:21:15','darshan','2025-10-08 13:35:56'),(8,0,0,'O','N','2526',8,0,'2025-10-08','2026-01-07',8,0,8,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:21:00','0000-00-00','','','','N','10:21:00','11:41:38','','','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:21:52',0,'','shweta','2025-10-08 10:21:52','darshan','2025-10-08 11:41:38'),(9,0,0,'O','N','2526',9,0,'2025-10-08','2026-01-07',9,0,9,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:22:00','0000-00-00','','','','N','10:22:00','12:56:38','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','5','10:22:11',0,'','janvi','2025-10-08 10:22:11','drjayant','2025-10-08 12:56:38'),(10,0,0,'O','N','2526',10,0,'2025-10-08','2026-01-07',10,0,10,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:23:00','0000-00-00','','','','N','10:23:00','11:37:46','','','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:23:44',0,'','drashti','2025-10-08 10:23:44','darshan','2025-10-08 11:37:46'),(11,0,0,'O','N','2526',11,0,'2025-10-08','2026-01-07',11,0,11,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:24:00','0000-00-00','','','','N','10:24:00','11:46:42','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','3','10:52:17',0,'','janvi','2025-10-08 10:24:32','drpratapsihn','2025-10-08 11:46:42'),(12,0,0,'O','N','2526',12,0,'2025-10-08','2026-01-07',12,0,12,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:24:00','0000-00-00','','','','N','10:24:00','11:53:47','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','2','10:24:33',0,'','shweta','2025-10-08 10:24:33','darshan','2025-10-08 11:53:47'),(13,0,0,'O','N','2526',13,0,'2025-10-08','2026-01-07',13,0,13,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:25:00','0000-00-00','','','','N','10:25:00','11:27:20','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','10:25:29',0,'','drashti','2025-10-08 10:25:28','darshan','2025-10-08 11:27:20'),(14,0,0,'O','N','2526',14,0,'2025-10-08','2026-01-07',14,0,14,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:26:00','0000-00-00','','','','N','10:26:00','18:31:51','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','4','10:27:03',0,'','janvi','2025-10-08 10:27:03','drarchit','2025-10-08 18:31:51'),(15,0,0,'O','N','2526',15,0,'2025-10-08','2026-01-07',15,0,15,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:30:00','0000-00-00','','','','N','10:30:00','12:23:34','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','2','11:05:24',0,'','shweta','2025-10-08 10:30:51','darshan','2025-10-08 12:23:34'),(16,0,0,'O','N','2526',16,0,'2025-10-08','2026-01-07',16,0,16,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','18:38:57','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','4','10:33:30',0,'','drashti','2025-10-08 10:33:30','drarchit','2025-10-08 18:38:57'),(17,0,0,'O','N','2526',17,0,'2025-10-08','2026-01-07',17,0,17,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:42:00','0000-00-00','','','','N','10:42:00','19:14:32','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','6','13:36:49',0,'','manshi','2025-10-08 10:42:31','drsagar','2025-10-08 19:14:32'),(18,0,0,'O','N','2526',18,0,'2025-10-08','2026-01-07',18,0,18,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:52:00','0000-00-00','','','','N','10:52:00','12:05:56','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','2','10:52:51',0,'','shweta','2025-10-08 10:52:51','darshan','2025-10-08 12:05:56'),(19,0,0,'O','N','2526',19,0,'2025-10-08','2026-01-07',19,0,19,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','12:20:30','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','2','10:55:50',0,'','drashti','2025-10-08 10:55:50','darshan','2025-10-08 12:20:30'),(20,0,0,'O','N','2526',20,0,'2025-10-08','2026-01-07',20,0,20,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','11:40:09','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','4','10:56:51',0,'','janvi','2025-10-08 10:56:51','drarchit','2025-10-08 11:40:09'),(21,0,0,'I','N','2526',0,1,'2025-10-04','2026-01-03',21,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:45:00','2025-10-09','','1','mo','N','13:45:00','09:50:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-10-08 10:57:38','mo','2025-10-09 13:21:12'),(22,0,0,'O','N','2526',21,0,'2025-10-08','2026-01-07',22,0,21,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','18:39:06','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','4','10:59:38',0,'','drashti','2025-10-08 10:59:38','drarchit','2025-10-08 18:39:06'),(23,0,0,'O','N','2526',22,0,'2025-10-08','2026-01-07',23,0,22,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','00:00:00','','','N','N',NULL,'O','N','Z17','','0000-00-00 00:00:00','','00:00:00',0,'','manshi','2025-10-08 11:03:05','','0000-00-00 00:00:00'),(24,0,0,'O','N','2526',23,0,'2025-10-08','2026-01-07',24,0,23,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','11:33:18','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','5','11:08:39',0,'','riya','2025-10-08 11:08:39','drjayant','2025-10-08 11:33:18'),(25,0,0,'O','N','2526',24,0,'2025-10-08','2026-01-07',25,0,24,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','13:48:19','','N','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','11:10:39',0,'','riya','2025-10-08 11:10:39','darshan','2025-10-08 13:48:19'),(26,0,0,'O','N','2526',25,0,'2025-10-08','2026-01-07',26,0,25,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','12:26:57','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:11:35',0,'','janvi','2025-10-08 11:11:35','darshan','2025-10-08 12:26:57'),(27,0,0,'O','N','2526',26,0,'2025-10-08','2026-01-07',27,0,26,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','00:00:00','','','N','N',NULL,'O','N','Z19','','0000-00-00 00:00:00','','00:00:00',0,'','manshi','2025-10-08 11:11:41','','0000-00-00 00:00:00'),(28,0,0,'I','N','2526',0,2,'2025-10-04','2026-01-03',28,0,0,'N','','N','','','','N','N','D27','','N',0,'','8',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','2025-10-10','','1','mo','N','18:00:00','11:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-10-08 11:12:41','vishal','2025-10-10 21:23:12'),(29,0,0,'O','N','2526',27,0,'2025-10-08','2026-01-07',29,0,27,'N','','N','','','FV','Y','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','12:40:33','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','2','11:14:16',0,'','shweta','2025-10-08 11:14:16','darshan','2025-10-08 12:40:33'),(30,0,0,'O','N','2526',28,0,'2025-10-08','2026-01-07',30,0,28,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','12:44:47','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','2','11:16:16',0,'','drashti','2025-10-08 11:16:16','darshan','2025-10-08 12:44:47'),(31,0,0,'O','N','2526',29,0,'2025-10-08','2026-01-07',31,0,29,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','12:56:18','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','2','11:18:24',0,'','shweta','2025-10-08 11:18:24','darshan','2025-10-08 12:56:18'),(32,0,0,'O','N','2526',30,0,'2025-10-08','2026-01-07',32,0,30,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','12:15:33','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','2','11:27:20',0,'','janvi','2025-10-08 11:19:02','darshan','2025-10-08 12:15:33'),(33,0,0,'O','N','2526',31,0,'2025-10-08','2026-01-07',33,0,31,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','12:17:38','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','2','11:27:20',0,'','drashti','2025-10-08 11:19:23','darshan','2025-10-08 12:17:38'),(34,0,0,'I','N','2526',0,3,'2025-10-03','2026-01-02',34,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','2025-10-09','','1','mo','N','10:00:00','11:50:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-10-08 11:24:24','mo','2025-10-09 12:29:35'),(35,0,0,'O','N','2526',32,0,'2025-10-08','2026-01-07',35,0,32,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','18:40:10','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','4','11:25:23',0,'','drashti','2025-10-08 11:25:23','drarchit','2025-10-08 18:40:10'),(36,0,0,'O','N','2526',33,0,'2025-10-08','2026-01-07',36,0,33,'N','','N','','','NC','','N','D27','','N',6,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','18:40:19','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','4','11:28:49',0,'','drashti','2025-10-08 11:28:49','drarchit','2025-10-08 18:40:19'),(37,0,0,'I','N','2526',0,4,'2025-10-07','2026-01-06',37,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','2025-10-08','','1','mo','N','13:00:00','11:25:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-10-08 11:29:13','mo','2025-10-08 12:00:00'),(38,0,0,'O','N','2526',34,0,'2025-10-08','2026-01-07',38,0,34,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','14:17:36','','N','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:41:38',0,'','shweta','2025-10-08 11:30:06','darshan','2025-10-08 14:17:36'),(39,0,0,'O','N','2526',35,0,'2025-10-08','2026-01-07',39,0,35,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','11:48:30','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','3','11:32:01',0,'','janvi','2025-10-08 11:32:01','drpratapsihn','2025-10-08 11:48:30'),(40,0,0,'O','N','2526',36,0,'2025-10-08','2026-01-07',40,0,36,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','13:00:01','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','2','11:41:38',0,'','drashti','2025-10-08 11:32:43','darshan','2025-10-08 13:00:01'),(41,0,0,'O','N','2526',37,0,'2025-10-08','2026-01-07',41,0,37,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','11:44:03','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','5','11:39:09',0,'','janvi','2025-10-08 11:39:09','drjayant','2025-10-08 11:44:03'),(42,0,0,'O','N','2526',38,0,'2025-10-08','2026-01-07',42,0,38,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','13:12:32','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','2','11:41:38',0,'','shweta','2025-10-08 11:40:41','darshan','2025-10-08 13:12:32'),(43,0,0,'O','N','2526',39,0,'2025-10-08','2026-01-07',43,0,39,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','11:46:29','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','3','11:41:02',0,'','janvi','2025-10-08 11:41:02','drpratapsihn','2025-10-08 11:46:29'),(44,0,0,'O','N','2526',40,0,'2025-10-08','2026-01-07',44,0,40,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','18:40:32','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','4','11:43:10',0,'','drashti','2025-10-08 11:43:10','drarchit','2025-10-08 18:40:32'),(45,0,0,'O','N','2526',41,0,'2025-10-08','2026-01-07',45,0,41,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','18:39:58','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','4','11:43:45',0,'','janvi','2025-10-08 11:43:45','drarchit','2025-10-08 18:39:58'),(46,0,0,'O','N','2526',42,0,'2025-10-08','2026-01-07',46,0,42,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','13:22:20','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','2','12:05:56',0,'','shweta','2025-10-08 11:46:00','darshan','2025-10-08 13:22:20'),(47,0,0,'O','N','2526',43,0,'2025-10-08','2026-01-07',47,0,43,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','18:39:38','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','4','11:47:59',0,'','drashti','2025-10-08 11:47:59','drarchit','2025-10-08 18:39:38'),(48,0,0,'I','N','2526',0,5,'2025-10-06','2026-01-05',48,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:00:00','2025-10-14','','4','mo','N','11:00:00','15:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-08 11:50:36','riya','2025-10-14 15:24:27'),(49,0,0,'O','N','2526',44,0,'2025-10-08','2026-01-07',49,0,44,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','11:58:42','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','5','11:52:08',0,'','drashti','2025-10-08 11:52:08','drjayant','2025-10-08 11:58:42'),(50,0,0,'O','N','2526',45,0,'2025-10-08','2026-01-07',50,0,45,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:55:00','0000-00-00','','','','N','11:55:00','18:39:28','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','4','11:55:07',0,'','drashti','2025-10-08 11:55:07','drarchit','2025-10-08 18:39:28'),(51,0,0,'I','N','2526',0,6,'2025-10-03','2026-01-02',51,0,0,'N','','N','','','','N','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','2025-10-08','','1','','N','18:30:00','18:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-08 11:56:05','vishal','2025-10-08 18:45:34'),(52,0,0,'O','N','2526',46,0,'2025-10-08','2026-01-07',52,0,46,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:57:00','0000-00-00','','','','N','11:57:00','14:20:09','','N','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','12:05:56',0,'','shweta','2025-10-08 11:57:18','darshan','2025-10-08 14:20:09'),(53,0,0,'O','N','2526',47,0,'2025-10-08','2026-01-07',53,0,47,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:57:00','0000-00-00','','','','N','11:57:00','17:17:37','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','3','11:57:29',0,'','janvi','2025-10-08 11:57:29','drpratapsihn','2025-10-08 17:17:37'),(54,0,0,'O','N','2526',48,0,'2025-10-08','2026-01-07',54,0,48,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:59:00','0000-00-00','','','','N','11:59:00','17:18:03','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','3','11:59:26',0,'','janvi','2025-10-08 11:59:26','drpratapsihn','2025-10-08 17:18:03'),(55,0,0,'O','N','2526',49,0,'2025-10-08','2026-01-07',55,0,49,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','12:51:29','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','12:05:56',0,'','drashti','2025-10-08 12:00:08','darshan','2025-10-08 12:51:29'),(56,0,0,'I','N','2526',0,7,'2025-10-07','2026-01-06',56,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','2025-10-11','','1','mo','N','11:15:00','12:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-08 12:07:46','mo','2025-10-11 12:52:40'),(57,0,0,'O','N','2526',50,0,'2025-10-08','2026-01-07',57,0,50,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:08:00','0000-00-00','','','','N','12:08:00','13:37:55','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','6','13:36:49',0,'','manshi','2025-10-08 12:08:14','drsagar','2025-10-08 13:37:55'),(58,0,0,'O','N','2526',51,0,'2025-10-08','2026-01-07',58,0,51,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:08:00','0000-00-00','','','','N','12:08:00','13:34:09','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','2','12:20:30',0,'','shweta','2025-10-08 12:08:15','darshan','2025-10-08 13:34:08'),(59,0,0,'O','N','2526',52,0,'2025-10-08','2026-01-07',59,0,52,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','13:58:55','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','2','12:20:30',0,'','drashti','2025-10-08 12:09:04','darshan','2025-10-08 13:58:55'),(60,0,0,'I','N','2526',0,8,'2025-10-06','2026-01-05',60,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:30:00','2025-10-10','','1','mo','N','13:30:00','12:05:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-08 12:11:01','vishal','2025-10-10 21:22:04'),(61,0,0,'O','N','2526',53,0,'2025-10-08','2026-01-07',61,0,53,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:12:00','0000-00-00','','','','N','12:12:00','13:38:05','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','6','13:36:49',0,'','manshi','2025-10-08 12:12:08','drsagar','2025-10-08 13:38:05'),(62,0,0,'I','N','2526',0,9,'2025-10-06','2026-01-05',62,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:15:00','2025-10-10','','1','mo','N','12:15:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-08 12:13:52','vishal','2025-10-10 21:21:33'),(63,0,0,'I','N','2526',0,10,'2025-10-07','2026-01-06',63,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','2025-10-13','','1','mo','N','10:55:00','12:10:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-08 12:20:02','mo','2025-10-13 13:49:49'),(64,0,0,'O','N','2526',54,0,'2025-10-08','2026-01-07',64,0,54,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:20:00','0000-00-00','','','','N','12:20:00','17:18:45','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','3','12:21:01',0,'','drashti','2025-10-08 12:21:01','drpratapsihn','2025-10-08 17:18:45'),(65,0,0,'O','N','2526',55,0,'2025-10-08','2026-01-07',65,0,55,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:23:00','0000-00-00','','','','N','12:23:00','12:47:48','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:26:57',0,'','janvi','2025-10-08 12:23:42','darshan','2025-10-08 12:47:48'),(66,0,0,'I','N','2526',0,11,'2025-10-08','2026-01-07',66,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','2025-10-11','','1','mo','N','12:00:00','12:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-08 12:23:43','mo','2025-10-13 11:31:47'),(67,0,0,'O','N','2526',56,0,'2025-10-08','2026-01-07',67,0,56,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:25:00','0000-00-00','','','','N','12:25:00','19:07:16','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','4','12:25:03',0,'','drashti','2025-10-08 12:25:03','drarchit','2025-10-08 19:07:16'),(68,0,0,'O','N','2526',57,0,'2025-10-08','2026-01-07',68,0,57,'N','','N','','','','','N','D02','','N',9,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:25:00','0000-00-00','','','','N','12:25:00','17:19:17','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','3','12:25:55',0,'','janvi','2025-10-08 12:25:55','drpratapsihn','2025-10-08 17:19:17'),(69,0,0,'O','N','2526',58,0,'2025-10-08','2026-01-07',69,0,58,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','14:32:18','','N','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','12:40:33',0,'','shweta','2025-10-08 12:27:21','darshan','2025-10-08 14:32:18'),(70,0,0,'O','N','2526',59,0,'2025-10-08','2026-01-07',70,0,59,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','0000-00-00','','','','N','12:30:00','18:39:18','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','4','12:31:02',0,'','janvi','2025-10-08 12:31:01','drarchit','2025-10-08 18:39:18'),(71,0,0,'O','N','2526',60,0,'2025-10-08','2026-01-07',71,0,60,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:31:00','0000-00-00','','','','N','12:31:00','18:37:51','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','4','12:31:35',0,'','drashti','2025-10-08 12:31:35','drarchit','2025-10-08 18:37:51'),(72,0,0,'O','N','2526',61,0,'2025-10-08','2026-01-07',72,0,61,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:32:00','0000-00-00','','','','N','12:32:00','17:19:30','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','3','12:32:40',0,'','janvi','2025-10-08 12:32:40','drpratapsihn','2025-10-08 17:19:30'),(73,0,0,'O','N','2526',62,0,'2025-10-08','2026-01-07',73,0,62,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:37:00','0000-00-00','','','','N','12:37:00','17:22:21','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','3','12:37:11',0,'','janvi','2025-10-08 12:37:11','drpratapsihn','2025-10-08 17:22:21'),(74,0,0,'O','N','2526',63,0,'2025-10-08','2026-01-07',74,0,63,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:49:00','0000-00-00','','','','N','12:49:00','17:23:06','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','3','12:49:06',0,'','janvi','2025-10-08 12:49:06','drpratapsihn','2025-10-08 17:23:06'),(75,0,0,'O','N','2526',64,0,'2025-10-08','2026-01-07',75,0,64,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','0000-00-00','','','','N','13:00:00','18:38:00','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','4','13:00:26',0,'','janvi','2025-10-08 13:00:26','drarchit','2025-10-08 18:38:00'),(76,0,0,'O','N','2526',65,0,'2025-10-08','2026-01-07',76,0,65,'N','','N','','','NV','','N','D06','','N',10,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:01:00','0000-00-00','','','','N','13:01:00','14:51:12','','N','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','2','13:01:34',0,'','shweta','2025-10-08 13:01:34','darshan','2025-10-08 14:51:12'),(77,0,0,'O','N','2526',66,0,'2025-10-08','2026-01-07',77,0,66,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:14:00','0000-00-00','','','','N','13:14:00','18:38:47','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','4','13:14:07',0,'','drashti','2025-10-08 13:14:07','drarchit','2025-10-08 18:38:47'),(78,0,0,'O','N','2526',67,0,'2025-10-08','2026-01-07',78,0,67,'N','','N','','','NC','','N','D27','','N',11,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:17:00','0000-00-00','','','','N','13:17:00','18:31:32','Y','','N','N',NULL,'O','N','Z56','','0000-00-00 00:00:00','4','13:17:57',0,'','drashti','2025-10-08 13:17:57','','0000-00-00 00:00:00'),(79,0,0,'O','N','2526',68,0,'2025-10-08','2026-01-07',79,0,68,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:22:00','0000-00-00','','','','N','13:22:00','14:26:55','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','2','13:22:52',0,'','janvi','2025-10-08 13:22:52','darshan','2025-10-08 14:26:55'),(80,0,0,'O','N','2526',69,0,'2025-10-08','2026-01-07',80,0,69,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:40:00','0000-00-00','','','','N','15:40:00','18:56:47','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','6','18:27:55',0,'','priyanshi','2025-10-08 15:40:07','drsagar','2025-10-08 18:56:47'),(81,0,0,'O','N','2526',70,0,'2025-10-08','2026-01-07',81,0,70,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:40:00','0000-00-00','','','','N','15:40:00','18:56:57','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','6','18:27:55',0,'','priyanshi','2025-10-08 15:40:50','drsagar','2025-10-08 18:56:57'),(82,0,0,'O','N','2526',71,0,'2025-10-08','2026-01-07',82,0,71,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:50:00','0000-00-00','','','','N','15:50:00','19:07:08','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','4','18:31:32',0,'','priyanshi','2025-10-08 15:50:20','drarchit','2025-10-08 19:07:08'),(83,0,0,'O','N','2526',72,0,'2025-10-08','2026-01-07',83,0,72,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:12:00','0000-00-00','','','','N','16:12:00','17:08:40','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','2','16:12:11',0,'','priyanshi','2025-10-08 16:12:11','darshan','2025-10-08 17:08:40'),(84,0,0,'O','N','2526',73,0,'2025-10-08','2026-01-07',84,0,73,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:33:00','0000-00-00','','','','N','16:33:00','17:09:25','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','2','16:33:34',0,'','priyanshi','2025-10-08 16:33:34','darshan','2025-10-08 17:09:25'),(85,0,0,'O','N','2526',74,0,'2025-10-08','2026-01-07',85,0,74,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:38:00','0000-00-00','','','','N','16:38:00','17:12:25','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','2','16:38:38',0,'','priyanshi','2025-10-08 16:38:38','darshan','2025-10-08 17:12:25'),(86,0,0,'O','N','2526',75,0,'2025-10-08','2026-01-07',86,0,75,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:39:00','0000-00-00','','','','N','16:39:00','17:13:11','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','2','16:39:25',0,'','priyanshi','2025-10-08 16:39:25','darshan','2025-10-08 17:13:11'),(87,0,0,'O','N','2526',76,0,'2025-10-08','2026-01-07',87,0,76,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:41:00','0000-00-00','','','','N','16:41:00','19:31:15','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:41:25',0,'','shweta','2025-10-08 16:41:25','darshan','2025-10-08 19:31:15'),(88,0,0,'O','N','2526',77,0,'2025-10-08','2026-01-07',88,0,77,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:51:00','0000-00-00','','','','N','16:51:00','17:28:02','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:51:04',0,'','shweta','2025-10-08 16:51:04','darshan','2025-10-08 17:28:02'),(89,0,0,'O','N','2526',78,0,'2025-10-08','2026-01-07',89,0,78,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:00:00','0000-00-00','','','','N','17:00:00','17:32:28','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:00:50',0,'','shweta','2025-10-08 17:00:50','darshan','2025-10-08 17:32:28'),(90,0,0,'O','N','2526',79,0,'2025-10-08','2026-01-07',90,0,79,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:05:00','0000-00-00','','','','N','17:05:00','17:36:27','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:05:14',0,'','janvi','2025-10-08 17:05:14','darshan','2025-10-08 17:36:27'),(91,0,0,'O','N','2526',80,0,'2025-10-08','2026-01-07',91,0,80,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:06:00','0000-00-00','','','','N','17:06:00','17:46:11','','','N','Y',NULL,'O','N','Z65','','0000-00-00 00:00:00','2','17:06:50',0,'','shweta','2025-10-08 17:06:50','darshan','2025-10-08 17:46:11'),(92,0,0,'O','N','2526',81,0,'2025-10-08','2026-01-07',92,0,81,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:07:00','0000-00-00','','','','N','17:07:00','17:41:37','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:07:52',0,'','shweta','2025-10-08 17:07:52','darshan','2025-10-08 17:41:37'),(93,0,0,'O','N','2526',82,0,'2025-10-08','2026-01-07',93,0,82,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:09:00','0000-00-00','','','','N','17:09:00','17:50:33','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','2','17:09:26',0,'','shweta','2025-10-08 17:09:26','darshan','2025-10-08 17:50:33'),(94,0,0,'O','N','2526',83,0,'2025-10-08','2026-01-07',94,0,83,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:14:00','0000-00-00','','','','N','17:14:00','18:21:05','','','N','Y',NULL,'O','N','Z67','','0000-00-00 00:00:00','2','17:14:28',0,'','shweta','2025-10-08 17:14:28','darshan','2025-10-08 18:21:05'),(95,0,0,'O','N','2526',84,0,'2025-10-08','2026-01-07',95,0,84,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:14:00','0000-00-00','','','','N','17:14:00','17:56:19','','','N','Y',NULL,'O','N','Z68','','0000-00-00 00:00:00','2','17:14:58',0,'','shweta','2025-10-08 17:14:58','darshan','2025-10-08 17:56:19'),(96,0,0,'O','N','2526',85,0,'2025-10-08','2026-01-07',96,0,85,'N','','N','','','FC              ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:15:00','0000-00-00','','','','N','17:15:00','19:36:24','','','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','4','18:31:32',0,'','shweta','2025-10-08 17:15:44','drarchit','2025-10-08 19:36:24'),(97,0,0,'O','N','2526',86,0,'2025-10-08','2026-01-07',97,0,86,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:15:00','0000-00-00','','','','N','17:15:00','17:23:31','','','N','Y',NULL,'O','N','Z70','','0000-00-00 00:00:00','3','17:15:58',0,'','janvi','2025-10-08 17:15:58','drpratapsihn','2025-10-08 17:23:31'),(98,0,0,'O','N','2526',87,0,'2025-10-08','2026-01-07',98,0,87,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','19:04:43','','','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','3','17:20:22',0,'','shweta','2025-10-08 17:20:21','drpratapsihn','2025-10-08 19:04:43'),(99,0,0,'O','N','2526',88,0,'2025-10-08','2026-01-07',99,0,88,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:26:00','0000-00-00','','','','N','17:26:00','20:24:50','','N','N','Y',NULL,'O','N','Z72','','0000-00-00 00:00:00','2','17:26:19',0,'','shweta','2025-10-08 17:26:19','darshan','2025-10-08 20:24:50'),(100,0,0,'O','N','2526',89,0,'2025-10-08','2026-01-07',100,0,89,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:26:00','0000-00-00','','','','N','17:26:00','19:07:46','','','N','Y',NULL,'O','N','Z73','','0000-00-00 00:00:00','2','17:26:48',0,'','shweta','2025-10-08 17:26:48','darshan','2025-10-08 19:07:46'),(101,0,0,'O','N','2526',90,0,'2025-10-08','2026-01-07',101,0,90,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','19:17:13','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','2','17:27:58',0,'','shweta','2025-10-08 17:27:58','darshan','2025-10-08 19:17:13'),(102,0,0,'O','N','2526',91,0,'2025-10-08','2026-01-07',102,0,91,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:30:00','0000-00-00','','','','N','17:30:00','19:20:20','','','N','Y',NULL,'O','N','Z75','','0000-00-00 00:00:00','2','17:30:19',0,'','shweta','2025-10-08 17:30:19','darshan','2025-10-08 19:20:20'),(103,0,0,'O','N','2526',92,0,'2025-10-08','2026-01-07',103,0,92,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:31:00','0000-00-00','','','','N','17:31:00','19:30:59','','','N','Y',NULL,'O','N','Z76','','0000-00-00 00:00:00','2','17:31:36',0,'','janvi','2025-10-08 17:31:36','darshan','2025-10-08 19:30:59'),(104,0,0,'O','N','2526',93,0,'2025-10-08','2026-01-07',104,0,93,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:36:00','0000-00-00','','','','N','17:36:00','19:50:09','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:36:06',0,'','shweta','2025-10-08 17:36:06','darshan','2025-10-08 19:50:09'),(105,0,0,'O','N','2526',94,0,'2025-10-08','2026-01-07',105,0,94,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:37:00','0000-00-00','','','','N','17:37:00','19:49:23','','','N','Y',NULL,'O','N','Z77','','0000-00-00 00:00:00','2','17:37:32',0,'','janvi','2025-10-08 17:37:32','darshan','2025-10-08 19:49:23'),(106,0,0,'O','N','2526',95,0,'2025-10-08','2026-01-07',106,0,95,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:38:00','0000-00-00','','','','N','17:38:00','20:49:32','','N','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:38:38',0,'','shweta','2025-10-08 17:38:38','darshan','2025-10-08 20:49:32'),(107,0,0,'O','N','2526',96,0,'2025-10-08','2026-01-07',107,0,96,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','18:18:43','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:41:41',0,'','shweta','2025-10-08 17:41:41','darshan','2025-10-08 18:18:43'),(108,0,0,'O','N','2526',97,0,'2025-10-08','2026-01-07',108,0,97,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:43:00','0000-00-00','','','','N','17:43:00','18:14:33','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','17:43:23',0,'','shweta','2025-10-08 17:43:23','darshan','2025-10-08 18:14:33'),(109,0,0,'O','N','2526',98,0,'2025-10-08','2026-01-07',109,0,98,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:44:00','0000-00-00','','','','N','17:44:00','19:38:23','','','N','Y',NULL,'O','N','Z78','','0000-00-00 00:00:00','4','18:31:32',0,'','urvashi','2025-10-08 17:44:12','drarchit','2025-10-08 19:38:23'),(110,0,0,'O','N','2526',99,0,'2025-10-08','2026-01-07',110,0,99,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','18:37:37','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','2','17:46:11',0,'','shweta','2025-10-08 17:46:05','darshan','2025-10-08 18:37:37'),(111,0,0,'O','N','2526',100,0,'2025-10-08','2026-01-07',111,0,100,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','18:11:32','','','N','Y',NULL,'O','N','Z79','','0000-00-00 00:00:00','5','17:48:59',0,'','janvi','2025-10-08 17:48:59','drjayant','2025-10-08 18:11:32'),(112,0,0,'O','N','2526',101,0,'2025-10-08','2026-01-07',112,0,101,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','19:06:27','','','N','Y',NULL,'O','N','Z80','','0000-00-00 00:00:00','4','18:31:32',0,'','urvashi','2025-10-08 17:52:19','drarchit','2025-10-08 19:06:27'),(113,0,0,'O','N','2526',102,0,'2025-10-08','2026-01-07',113,0,102,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:53:00','0000-00-00','','','','N','17:53:00','19:06:41','','','N','Y',NULL,'O','N','Z81','','0000-00-00 00:00:00','4','18:31:32',0,'','urvashi','2025-10-08 17:53:41','drarchit','2025-10-08 19:06:41'),(114,0,0,'O','N','2526',103,0,'2025-10-08','2026-01-07',114,0,103,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:54:00','0000-00-00','','','','N','17:54:00','20:40:59','','N','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','2','17:54:33',0,'','shweta','2025-10-08 17:54:33','darshan','2025-10-08 20:40:59'),(115,0,0,'O','N','2526',104,0,'2025-10-08','2026-01-07',115,0,104,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','20:19:44','','','N','Y',NULL,'O','N','Z82','','0000-00-00 00:00:00','2','17:57:16',0,'','shweta','2025-10-08 17:57:16','darshan','2025-10-08 20:19:44'),(116,0,0,'O','N','2526',105,0,'2025-10-08','2026-01-07',116,0,105,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','0000-00-00','','','','N','18:00:00','18:45:31','','','N','Y',NULL,'O','N','Z83','','0000-00-00 00:00:00','6','18:27:55',0,'','manshi','2025-10-08 18:00:15','drsagar','2025-10-08 18:45:31'),(117,0,0,'O','N','2526',106,0,'2025-10-08','2026-01-07',117,0,106,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:06:00','0000-00-00','','','','N','18:06:00','18:14:31','','','N','Y',NULL,'O','N','Z84','','0000-00-00 00:00:00','5','18:06:03',0,'','urvashi','2025-10-08 18:06:03','drjayant','2025-10-08 18:14:31'),(118,0,0,'O','N','2526',107,0,'2025-10-08','2026-01-07',118,0,107,'N','','N','','','FC              ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','18:37:36','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','4','18:31:32',0,'','urvashi','2025-10-08 18:07:27','drarchit','2025-10-08 18:37:36'),(119,0,0,'O','N','2526',108,0,'2025-10-08','2026-01-07',119,0,108,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:08:00','0000-00-00','','','','N','18:08:00','18:52:42','','','N','Y',NULL,'O','N','Z85','','0000-00-00 00:00:00','6','18:27:55',0,'','manshi','2025-10-08 18:08:43','drsagar','2025-10-08 18:52:42'),(120,0,0,'O','N','2526',109,0,'2025-10-08','2026-01-07',120,0,109,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:24:10','','','N','Y',NULL,'O','N','Z86','','0000-00-00 00:00:00','5','18:09:45',0,'','janvi','2025-10-08 18:09:45','drjayant','2025-10-08 18:24:10'),(121,0,0,'O','N','2526',110,0,'2025-10-08','2026-01-07',121,0,110,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','18:24:39','','','N','Y',NULL,'O','N','Z87','','0000-00-00 00:00:00','5','18:10:45',0,'','janvi','2025-10-08 18:10:44','drjayant','2025-10-08 18:24:39'),(122,0,0,'O','N','2526',111,0,'2025-10-08','2026-01-07',122,0,111,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','18:48:04','','','N','Y',NULL,'O','N','Z88','','0000-00-00 00:00:00','3','18:10:53',0,'','urvashi','2025-10-08 18:10:53','drpratapsihn','2025-10-08 18:48:04'),(123,0,0,'O','N','2526',112,0,'2025-10-08','2026-01-07',123,0,112,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','20:29:01','','','N','Y',NULL,'O','N','Z89','','0000-00-00 00:00:00','2','18:14:33',0,'','shweta','2025-10-08 18:12:51','darshan','2025-10-08 20:29:01'),(124,0,0,'O','N','2526',113,0,'2025-10-08','2026-01-07',124,0,113,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','20:39:39','','','N','Y',NULL,'O','N','Z90','','0000-00-00 00:00:00','2','18:18:43',0,'','urvashi','2025-10-08 18:14:52','darshan','2025-10-08 20:39:39'),(125,0,0,'O','N','2526',114,0,'2025-10-08','2026-01-07',125,0,114,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','19:36:25','','','N','Y',NULL,'O','N','Z91','','0000-00-00 00:00:00','3','18:15:22',0,'','janvi','2025-10-08 18:15:22','drpratapsihn','2025-10-08 19:36:25'),(126,0,0,'O','N','2526',115,0,'2025-10-08','2026-01-07',126,0,115,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:20:00','0000-00-00','','','','N','18:20:00','19:02:10','','','N','Y',NULL,'O','N','Z92','','0000-00-00 00:00:00','3','18:20:23',0,'','urvashi','2025-10-08 18:20:23','drpratapsihn','2025-10-08 19:02:10'),(127,0,0,'O','N','2526',116,0,'2025-10-08','2026-01-07',127,0,116,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','18:57:12','','','N','Y',NULL,'O','N','Z93','','0000-00-00 00:00:00','3','18:21:44',0,'','janvi','2025-10-08 18:21:44','drpratapsihn','2025-10-08 18:57:12'),(128,0,0,'O','N','2526',117,0,'2025-10-08','2026-01-07',128,0,117,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','18:57:35','','','N','Y',NULL,'O','N','Z94','','0000-00-00 00:00:00','3','18:24:03',0,'','urvashi','2025-10-08 18:24:03','drpratapsihn','2025-10-08 18:57:35'),(129,0,0,'O','N','2526',118,0,'2025-10-08','2026-01-07',129,0,118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:25:00','0000-00-00','','','','N','18:25:00','19:05:03','','','N','Y',NULL,'O','N','Z95','','0000-00-00 00:00:00','3','18:25:25',0,'','janvi','2025-10-08 18:25:25','drpratapsihn','2025-10-08 19:05:03'),(130,0,0,'O','N','2526',119,0,'2025-10-08','2026-01-07',130,0,119,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','18:44:21','','','N','Y',NULL,'O','N','Z96','','0000-00-00 00:00:00','5','18:28:46',0,'','janvi','2025-10-08 18:28:46','drjayant','2025-10-08 18:44:21'),(131,0,0,'O','N','2526',120,0,'2025-10-08','2026-01-07',131,0,120,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','19:08:11','','','N','Y',NULL,'O','N','Z97','','0000-00-00 00:00:00','2','18:29:33',0,'','shweta','2025-10-08 18:29:33','darshan','2025-10-08 19:08:11'),(132,0,0,'O','N','2526',121,0,'2025-10-08','2026-01-07',132,0,121,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','18:56:36','','','N','Y',NULL,'O','N','Z98','','0000-00-00 00:00:00','6','18:33:37',0,'','manshi','2025-10-08 18:33:37','drsagar','2025-10-08 18:56:36'),(133,0,0,'O','N','2526',122,0,'2025-10-08','2026-01-07',133,0,122,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:38:00','0000-00-00','','','','N','18:38:00','20:07:28','','','N','Y',NULL,'O','N','Z99','','0000-00-00 00:00:00','2','18:38:22',0,'','shweta','2025-10-08 18:38:22','darshan','2025-10-08 20:07:28'),(134,0,0,'O','N','2526',123,0,'2025-10-08','2026-01-07',134,0,123,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:41:00','0000-00-00','','','','N','18:41:00','00:00:00','','','N','N',NULL,'O','N','L13','','0000-00-00 00:00:00','4','18:41:14',0,'','urvashi','2025-10-08 18:41:14','','0000-00-00 00:00:00'),(135,0,0,'O','N','2526',124,0,'2025-10-08','2026-01-07',135,0,124,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:42:00','0000-00-00','','','','N','18:42:00','19:38:12','','','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','4','18:42:15',0,'','shweta','2025-10-08 18:42:15','drarchit','2025-10-08 19:38:12'),(136,0,0,'O','N','2526',125,0,'2025-10-08','2026-01-07',136,0,125,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','19:43:26','','','N','Y',NULL,'O','N','Z100','','0000-00-00 00:00:00','3','18:43:25',0,'','janvi','2025-10-08 18:43:25','drpratapsihn','2025-10-08 19:43:26'),(137,0,0,'O','N','2526',126,0,'2025-10-08','2026-01-07',137,0,126,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','18:54:31','','','N','Y',NULL,'O','N','Z101','','0000-00-00 00:00:00','5','18:46:23',0,'','janvi','2025-10-08 18:46:23','drjayant','2025-10-08 18:54:31'),(138,0,0,'O','N','2526',127,0,'2025-10-08','2026-01-07',138,0,127,'N','','N','','','FC              ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','19:38:33','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','18:48:32',0,'','shweta','2025-10-08 18:48:31','drarchit','2025-10-08 19:38:33'),(139,0,0,'O','N','2526',128,0,'2025-10-08','2026-01-07',139,0,128,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','18:58:08','','','N','Y',NULL,'O','N','Z102','','0000-00-00 00:00:00','5','18:51:53',0,'','janvi','2025-10-08 18:51:53','drjayant','2025-10-08 18:58:08'),(140,0,0,'O','N','2526',129,0,'2025-10-08','2026-01-07',140,0,129,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:53:00','0000-00-00','','','','N','18:53:00','19:36:42','','','N','Y',NULL,'O','N','Z103','','0000-00-00 00:00:00','4','18:53:53',0,'','urvashi','2025-10-08 18:53:53','drarchit','2025-10-08 19:36:42'),(141,0,0,'O','N','2526',130,0,'2025-10-08','2026-01-07',141,0,130,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','19:36:34','','','N','Y',NULL,'O','N','Z104','','0000-00-00 00:00:00','4','18:54:57',0,'','urvashi','2025-10-08 18:54:57','drarchit','2025-10-08 19:36:34'),(142,0,0,'O','N','2526',131,0,'2025-10-08','2026-01-07',142,0,131,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:55:00','0000-00-00','','','','N','18:55:00','19:06:13','','','N','Y',NULL,'O','N','Z105','','0000-00-00 00:00:00','5','18:55:45',0,'','janvi','2025-10-08 18:55:45','drjayant','2025-10-08 19:06:13'),(143,0,0,'O','N','2526',132,0,'2025-10-08','2026-01-07',143,0,132,'N','','N','','','NE','','N','D06','','N',12,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:01:00','0000-00-00','','','','N','19:01:00','20:45:44','','','N','Y',NULL,'O','N','Z106','','0000-00-00 00:00:00','2','19:07:46',0,'','shweta','2025-10-08 19:01:42','darshan','2025-10-08 20:45:44'),(144,0,0,'O','N','2526',133,0,'2025-10-08','2026-01-07',144,0,133,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:07:00','0000-00-00','','','','N','19:07:00','19:14:12','','','N','Y',NULL,'O','N','Z107','','0000-00-00 00:00:00','6','19:07:17',0,'','manshi','2025-10-08 19:07:17','drsagar','2025-10-08 19:14:12'),(145,0,0,'O','N','2526',134,0,'2025-10-08','2026-01-07',145,0,134,'N','','N','','','NE','','N','D06','','N',6,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:07:00','0000-00-00','','','','N','19:07:00','20:00:54','','','N','Y',NULL,'O','N','Z108','','0000-00-00 00:00:00','2','19:07:46',0,'','shweta','2025-10-08 19:07:36','darshan','2025-10-08 20:00:54'),(146,0,0,'O','N','2526',135,0,'2025-10-08','2026-01-07',146,0,135,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:13:00','0000-00-00','','','','N','19:13:00','19:20:16','','','N','Y',NULL,'O','N','Z109','','0000-00-00 00:00:00','5','19:13:10',0,'','urvashi','2025-10-08 19:13:10','drjayant','2025-10-08 19:20:16'),(147,0,0,'O','N','2526',136,0,'2025-10-08','2026-01-07',147,0,136,'N','','N','','','NE ','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:16:00','0000-00-00','','','','N','19:16:00','20:49:08','','','N','Y',NULL,'O','N','Z110','','0000-00-00 00:00:00','2','19:17:13',0,'','urvashi','2025-10-08 19:16:17','darshan','2025-10-08 20:49:08'),(148,0,0,'O','N','2526',137,0,'2025-10-08','2026-01-07',148,0,137,'N','','N','','','','','N','D03','','N',14,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:17:00','0000-00-00','','','','N','19:17:00','19:35:37','','','N','Y',NULL,'O','N','Z111','','0000-00-00 00:00:00','6','19:17:44',0,'','manshi','2025-10-08 19:17:44','drsagar','2025-10-08 19:35:37'),(149,0,0,'O','N','2526',138,0,'2025-10-08','2026-01-07',149,0,138,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:20:00','0000-00-00','','','','N','19:20:00','19:28:21','','','N','Y',NULL,'O','N','Z112','','0000-00-00 00:00:00','5','19:20:23',0,'','janvi','2025-10-08 19:20:23','drjayant','2025-10-08 19:28:21'),(150,0,0,'I','N','2526',16,12,'2025-10-08','2026-01-07',16,0,16,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:20:00','2025-10-11','','1','mo','N','19:20:00','18:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-08 19:24:21','vishal','2025-10-11 18:42:14'),(151,0,0,'O','N','2526',139,0,'2025-10-08','2026-01-07',150,0,139,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:32:00','0000-00-00','','','','N','19:32:00','19:36:08','','','N','Y',NULL,'O','N','Z113','','0000-00-00 00:00:00','6','19:32:12',0,'','manshi','2025-10-08 19:32:12','drsagar','2025-10-08 19:36:08'),(152,0,0,'O','N','2526',140,0,'2025-10-08','2026-01-07',151,0,140,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:32:00','0000-00-00','','','','N','19:32:00','19:36:37','','','N','Y',NULL,'O','N','Z114','','0000-00-00 00:00:00','3','19:32:29',0,'','janvi','2025-10-08 19:32:29','drpratapsihn','2025-10-08 19:36:37'),(153,0,0,'O','N','2526',141,0,'2025-10-08','2026-01-07',152,0,141,'N','','N','','','NC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:35:00','0000-00-00','','','','N','19:35:00','00:00:00','','','N','N',NULL,'O','N','Z115','','0000-00-00 00:00:00','4','19:35:16',0,'','urvashi','2025-10-08 19:35:16','','0000-00-00 00:00:00'),(154,0,0,'O','N','2526',142,0,'2025-10-08','2026-01-07',153,0,142,'N','','N','','','','','N','D02','','N',16,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:44:00','0000-00-00','','','','N','19:44:00','00:00:00','','','N','N',NULL,'O','N','Z116','','0000-00-00 00:00:00','3','19:44:17',0,'','janvi','2025-10-08 19:44:17','','0000-00-00 00:00:00'),(155,0,0,'O','N','2526',143,0,'2025-10-08','2026-01-07',154,0,143,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:45:00','0000-00-00','','','','N','19:45:00','19:52:10','','','N','Y',NULL,'O','N','Z117','','0000-00-00 00:00:00','6','19:45:05',0,'','manshi','2025-10-08 19:45:05','drsagar','2025-10-08 19:52:10'),(156,0,0,'O','N','2526',144,0,'2025-10-08','2026-01-07',155,0,144,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:48:00','0000-00-00','','','','N','19:48:00','19:52:21','','','N','Y',NULL,'O','N','Z118','','0000-00-00 00:00:00','6','19:48:14',0,'','manshi','2025-10-08 19:48:14','drsagar','2025-10-08 19:52:21'),(157,0,0,'O','N','2526',145,0,'2025-10-08','2026-01-07',156,0,145,'N','','N','','','NC','','N','D27','','N',17,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:51:00','0000-00-00','','','','N','19:51:00','00:00:00','','','N','N',NULL,'O','N','Z119','','0000-00-00 00:00:00','4','19:51:53',0,'','urvashi','2025-10-08 19:51:53','','0000-00-00 00:00:00'),(158,0,0,'O','N','2526',146,0,'2025-10-08','2026-01-07',157,0,146,'N','','N','','','FV','Y','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:09:00','0000-00-00','','','','N','20:09:00','20:56:04','','','N','Y',NULL,'O','N','Z120','','0000-00-00 00:00:00','2','20:09:47',0,'','shweta','2025-10-08 20:09:47','darshan','2025-10-08 20:56:04'),(159,0,0,'O','N','2526',47,0,'2025-10-09','0000-00-00',53,0,47,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:45:00','0000-00-00','','','','N','08:45:00','12:10:51','','','N','Y',NULL,'O','O','Z01','','0000-00-00 00:00:00','3','09:01:47',0,'','shweta','2025-10-09 09:01:47','drpratapsihn','2025-10-09 12:10:51'),(160,0,0,'O','N','2526',147,0,'2025-10-09','2026-01-08',158,0,147,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:48:00','0000-00-00','','','','N','08:48:00','12:10:18','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','3','09:05:22',0,'','shweta','2025-10-09 09:05:22','drpratapsihn','2025-10-09 12:10:18'),(161,0,0,'O','N','2526',148,0,'2025-10-09','2026-01-08',159,0,148,'N','','N','','','ER','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:49:00','0000-00-00','','','','N','08:49:00','10:48:04','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','2','09:07:03',0,'','shweta','2025-10-09 09:07:03','darshan','2025-10-09 10:48:04'),(162,0,0,'O','N','2526',149,0,'2025-10-09','2026-01-08',160,0,149,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:52:00','0000-00-00','','','','N','08:52:00','13:04:41','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','4','09:10:07',0,'','shweta','2025-10-09 09:10:07','drarchit','2025-10-09 13:04:41'),(163,0,0,'O','N','2526',150,0,'2025-10-09','2026-01-08',161,0,150,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:18:00','0000-00-00','','','','N','09:18:00','13:04:50','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','4','09:18:44',0,'','janvi','2025-10-09 09:18:44','drarchit','2025-10-09 13:04:50'),(165,0,0,'I','N','2526',0,13,'2025-10-09','2026-01-08',162,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:15:00','2025-10-09','','1','mo','N','09:15:00','19:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-09 09:35:58','mo','2025-10-09 19:38:02'),(166,0,0,'O','N','2526',151,0,'2025-10-09','2026-01-08',163,0,151,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:43:00','0000-00-00','','','','N','09:43:00','13:09:28','','','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','09:43:55',0,'','shweta','2025-10-09 09:43:55','darshan','2025-10-09 13:09:28'),(167,0,0,'O','N','2526',152,0,'2025-10-09','2026-01-08',164,0,152,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:47:00','0000-00-00','','','','N','09:47:00','13:31:04','','N','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','2','09:47:56',0,'','shweta','2025-10-09 09:47:56','darshan','2025-10-09 13:31:04'),(168,0,0,'I','N','2526',0,14,'2025-10-09','2026-01-08',165,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-10-10','','1','mo','N','09:30:00','11:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-09 09:49:18','vishal','2025-10-27 19:41:59'),(169,0,0,'O','N','2526',153,0,'2025-10-09','2026-01-08',166,0,153,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:10:00','0000-00-00','','','','N','10:10:00','12:11:07','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','3','10:10:37',0,'','janvi','2025-10-09 10:10:37','drpratapsihn','2025-10-09 12:11:07'),(170,0,0,'O','N','2526',154,0,'2025-10-09','2026-01-08',167,0,154,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:17:00','0000-00-00','','','','N','10:17:00','13:05:01','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','4','10:17:38',0,'','shweta','2025-10-09 10:17:38','drarchit','2025-10-09 13:05:01'),(171,0,0,'O','N','2526',155,0,'2025-10-09','2026-01-08',168,0,155,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:27:00','0000-00-00','','','','N','10:27:00','11:19:54','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','5','11:15:37',0,'','shweta','2025-10-09 10:27:25','drjayant','2025-10-09 11:19:54'),(172,0,0,'O','N','2526',156,0,'2025-10-09','2026-01-08',169,0,156,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:34:00','0000-00-00','','','','N','10:34:00','11:05:34','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','10:34:58',0,'','shweta','2025-10-09 10:34:58','darshan','2025-10-09 11:05:34'),(173,0,0,'O','N','2526',157,0,'2025-10-09','2026-01-08',170,0,157,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:36:00','0000-00-00','','','','N','10:36:00','11:10:41','','','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:36:35',0,'','shweta','2025-10-09 10:36:35','darshan','2025-10-09 11:10:41'),(174,0,0,'O','N','2526',158,0,'2025-10-09','2026-01-08',171,0,158,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','14:02:59','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:37:55',0,'','shweta','2025-10-09 10:37:55','darshan','2025-10-09 14:02:59'),(175,0,0,'O','N','2526',159,0,'2025-10-09','2026-01-08',172,0,159,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','13:05:14','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','4','10:39:59',0,'','urvashi','2025-10-09 10:39:59','drarchit','2025-10-09 13:05:14'),(176,0,0,'O','N','2526',160,0,'2025-10-09','2026-01-08',173,0,160,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:42:00','0000-00-00','','','','N','10:42:00','11:16:01','','','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:42:43',0,'','shweta','2025-10-09 10:42:43','darshan','2025-10-09 11:16:01'),(177,0,0,'O','N','2526',161,0,'2025-10-09','2026-01-08',174,0,161,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','11:31:22','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','10:44:28',0,'','shweta','2025-10-09 10:44:28','darshan','2025-10-09 11:31:22'),(178,0,0,'O','N','2526',162,0,'2025-10-09','2026-01-08',175,0,162,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','18:42:30','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','4','10:46:52',0,'','urvashi','2025-10-09 10:46:52','drarchit','2025-10-09 18:42:30'),(179,0,0,'O','N','2526',163,0,'2025-10-09','2026-01-08',176,0,163,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','00:00:00','','','N','N',NULL,'O','N','Z12','','0000-00-00 00:00:00','','00:00:00',0,'','manshi','2025-10-09 10:48:37','','0000-00-00 00:00:00'),(180,0,0,'O','N','2526',164,0,'2025-10-09','2026-01-08',177,0,164,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','14:11:20','','N','N','Y',NULL,'O','N','F04','','0000-00-00 00:00:00','2','10:48:57',0,'','shweta','2025-10-09 10:48:57','darshan','2025-10-09 14:11:20'),(181,0,0,'O','N','2526',165,0,'2025-10-09','2026-01-08',178,0,165,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:50:00','0000-00-00','','','','N','10:50:00','12:11:20','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','3','10:50:57',0,'','janvi','2025-10-09 10:50:57','drpratapsihn','2025-10-09 12:11:20'),(182,0,0,'O','N','2526',166,0,'2025-10-09','2026-01-08',179,0,166,'N','','N','','','FC ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','18:42:20','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','4','10:51:45',0,'','urvashi','2025-10-09 10:51:45','drarchit','2025-10-09 18:42:20'),(183,0,0,'O','N','2526',167,0,'2025-10-09','2026-01-08',180,0,167,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:52:00','0000-00-00','','','','N','10:52:00','12:11:44','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','3','10:52:10',0,'','janvi','2025-10-09 10:52:10','drpratapsihn','2025-10-09 12:11:44'),(184,0,0,'O','N','2526',168,0,'2025-10-09','2026-01-08',181,0,168,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:52:00','0000-00-00','','','','N','10:52:00','12:12:41','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','10:52:59',0,'','shweta','2025-10-09 10:52:59','darshan','2025-10-09 12:12:41'),(185,0,0,'O','N','2526',169,0,'2025-10-09','2026-01-08',182,0,169,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','14:28:18','','N','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','2','10:54:55',0,'','shweta','2025-10-09 10:54:55','darshan','2025-10-09 14:28:18'),(186,0,0,'O','N','2526',170,0,'2025-10-09','2026-01-08',183,0,170,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','12:33:24','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','2','10:57:53',0,'','shweta','2025-10-09 10:57:53','darshan','2025-10-09 12:33:24'),(187,0,0,'O','N','2526',171,0,'2025-10-09','2026-01-08',184,0,171,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','12:36:34','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','10:59:16',0,'','shweta','2025-10-09 10:59:16','darshan','2025-10-09 12:36:34'),(188,0,0,'O','N','2526',172,0,'2025-10-09','2026-01-08',185,0,172,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','18:38:05','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','4','11:01:13',0,'','janvi','2025-10-09 11:01:13','drarchit','2025-10-09 18:38:05'),(189,0,0,'O','N','2526',173,0,'2025-10-09','2026-01-08',186,0,173,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','18:37:54','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','4','11:06:38',0,'','urvashi','2025-10-09 11:06:38','drarchit','2025-10-09 18:37:54'),(190,0,0,'O','N','2526',174,0,'2025-10-09','2026-01-08',187,0,174,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','19:51:45','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','3','11:09:08',0,'','janvi','2025-10-09 11:09:08','drpratapsihn','2025-10-09 19:51:45'),(191,0,0,'O','N','2526',175,0,'2025-10-09','2026-01-08',188,0,175,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','11:30:44','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','5','11:15:37',0,'','urvashi','2025-10-09 11:12:24','drjayant','2025-10-09 11:30:44'),(192,0,0,'O','N','2526',176,0,'2025-10-09','2026-01-08',189,0,176,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','18:37:37','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','4','11:13:26',0,'','urvashi','2025-10-09 11:13:26','drarchit','2025-10-09 18:37:37'),(193,0,0,'I','N','2526',150,15,'2025-10-09','2026-01-08',161,0,150,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','2025-10-11','','1','mo','N','11:15:00','11:10:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-09 11:18:34','vishal','2025-10-11 11:50:58'),(194,0,0,'O','N','2526',177,0,'2025-10-09','2026-01-08',190,0,177,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','12:41:09','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','2','11:57:06',0,'','shweta','2025-10-09 11:21:44','darshan','2025-10-09 12:41:09'),(195,0,0,'O','N','2526',178,0,'2025-10-09','2026-01-08',191,0,178,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','12:11:34','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','6','11:24:22',0,'','manshi','2025-10-09 11:24:22','drsagar','2025-10-09 12:11:34'),(196,0,0,'O','N','2526',179,0,'2025-10-09','2026-01-08',192,0,179,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','12:43:48','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:57:06',0,'','shweta','2025-10-09 11:25:18','darshan','2025-10-09 12:43:48'),(197,0,0,'O','N','2526',180,0,'2025-10-09','2026-01-08',193,0,180,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','11:36:18','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','5','11:29:18',0,'','janvi','2025-10-09 11:29:18','drjayant','2025-10-09 11:36:18'),(198,0,0,'O','N','2526',181,0,'2025-10-09','2026-01-08',194,0,181,'N','','N','','','IRON INJ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','18:29:00','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','4','11:30:17',0,'','urvashi','2025-10-09 11:30:17','drarchit','2025-10-09 18:29:00'),(199,0,0,'O','N','2526',182,0,'2025-10-09','2026-01-08',195,0,182,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','18:29:48','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','4','11:32:30',0,'','janvi','2025-10-09 11:32:30','drarchit','2025-10-09 18:29:48'),(200,0,0,'O','N','2526',183,0,'2025-10-09','2026-01-08',196,0,183,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','12:50:06','','N','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','11:57:06',0,'','shweta','2025-10-09 11:36:59','darshan','2025-10-09 12:50:06'),(201,0,0,'O','N','2526',184,0,'2025-10-09','2026-01-08',197,0,184,'N','','N','','','FC              ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','18:37:00','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','4','11:39:01',0,'','urvashi','2025-10-09 11:39:01','drarchit','2025-10-09 18:37:00'),(202,0,0,'O','N','2526',185,0,'2025-10-09','2026-01-08',198,0,185,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','13:30:31','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','2','11:57:06',0,'','shweta','2025-10-09 11:39:12','darshan','2025-10-09 13:30:31'),(203,0,0,'O','N','2526',186,0,'2025-10-09','2026-01-08',199,0,186,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','14:02:47','','N','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','11:57:06',0,'','shweta','2025-10-09 11:43:11','darshan','2025-10-09 14:02:47'),(204,0,0,'O','N','2526',187,0,'2025-10-09','2026-01-08',200,0,187,'N','','N','','','NC','','N','D27','','N',18,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','18:36:49','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','4','11:46:05',0,'','urvashi','2025-10-09 11:46:05','drarchit','2025-10-09 18:36:49'),(205,0,0,'O','N','2526',188,0,'2025-10-09','2026-01-08',201,0,188,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','12:08:28','','','N','Y',NULL,'O','N','H06','','0000-00-00 00:00:00','2','11:57:06',0,'','shweta','2025-10-09 11:50:14','darshan','2025-10-09 12:08:28'),(206,0,0,'O','N','2526',189,0,'2025-10-09','2026-01-08',202,0,189,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','14:01:29','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','2','11:57:06',0,'','shweta','2025-10-09 11:52:47','darshan','2025-10-09 14:01:29'),(207,0,0,'O','N','2526',190,0,'2025-10-09','2026-01-08',203,0,190,'N','','N','','','FC              ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:55:00','0000-00-00','','','','N','11:55:00','18:29:38','','','N','Y',NULL,'O','N','H07','','0000-00-00 00:00:00','4','11:55:20',0,'','urvashi','2025-10-09 11:55:20','drarchit','2025-10-09 18:29:38'),(208,0,0,'O','N','2526',191,0,'2025-10-09','2026-01-08',204,0,191,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:04:00','0000-00-00','','','','N','12:04:00','18:28:52','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','4','12:04:21',0,'','urvashi','2025-10-09 12:04:21','drarchit','2025-10-09 18:28:52'),(209,0,0,'O','N','2526',192,0,'2025-10-09','2026-01-08',205,0,192,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:07:00','0000-00-00','','','','N','12:07:00','13:25:51','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:07:49',0,'','shweta','2025-10-09 12:07:49','darshan','2025-10-09 13:25:51'),(210,0,0,'O','N','2526',193,0,'2025-10-09','2026-01-08',206,0,193,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:12:00','0000-00-00','','','','N','12:12:00','12:46:52','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','12:12:32',0,'','shweta','2025-10-09 12:12:32','darshan','2025-10-09 12:46:52'),(211,0,0,'O','N','2526',194,0,'2025-10-09','2026-01-08',207,0,194,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:16:00','0000-00-00','','','','N','12:16:00','12:28:28','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','5','12:16:44',0,'','janvi','2025-10-09 12:16:44','drjayant','2025-10-09 12:28:28'),(212,0,0,'O','N','2526',195,0,'2025-10-09','2026-01-08',208,0,195,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:18:00','0000-00-00','','','','N','12:18:00','00:00:00','','','N','N',NULL,'O','N','Z31','','0000-00-00 00:00:00','','00:00:00',0,'','manshi','2025-10-09 12:18:21','','0000-00-00 00:00:00'),(213,0,0,'O','N','2526',196,0,'2025-10-09','2026-01-08',209,0,196,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:19:00','0000-00-00','','','','N','12:19:00','13:15:27','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','12:19:53',0,'','shweta','2025-10-09 12:19:53','darshan','2025-10-09 13:15:27'),(214,0,0,'O','N','2526',197,0,'2025-10-09','2026-01-08',210,0,197,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:22:00','0000-00-00','','','','N','12:22:00','18:29:09','','','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','4','13:04:41',0,'','urvashi','2025-10-09 12:22:14','drarchit','2025-10-09 18:29:09'),(215,0,0,'O','N','2526',198,0,'2025-10-09','2026-01-08',211,0,198,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','0000-00-00','','','','N','12:30:00','20:07:35','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','3','12:30:44',0,'','janvi','2025-10-09 12:30:44','drpratapsihn','2025-10-09 20:07:35'),(216,0,0,'I','N','2526',166,16,'2025-10-09','2026-01-08',179,0,166,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','2025-10-15','','1','mo','N','12:30:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-09 12:33:11','mo','2025-10-15 12:45:31'),(217,0,0,'O','N','2526',199,0,'2025-10-09','2026-01-08',212,0,199,'N','','N','','','NC','','N','D27','','N',19,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:42:00','0000-00-00','','','','N','12:42:00','18:57:26','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','4','13:04:41',0,'','urvashi','2025-10-09 12:42:48','drarchit','2025-10-09 18:57:26'),(218,0,0,'O','N','2526',200,0,'2025-10-09','2026-01-08',213,0,200,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:44:00','0000-00-00','','','','N','12:44:00','18:52:12','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','3','12:44:28',0,'','janvi','2025-10-09 12:44:28','drpratapsihn','2025-10-09 18:52:12'),(219,0,0,'O','N','2526',201,0,'2025-10-09','2026-01-08',214,0,201,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:54:00','0000-00-00','','','','N','12:54:00','14:31:41','','N','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','2','12:54:07',0,'','shweta','2025-10-09 12:54:07','darshan','2025-10-09 14:31:41'),(220,0,0,'O','N','2526',202,0,'2025-10-09','2026-01-08',215,0,202,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:01:00','0000-00-00','','','','N','13:01:00','18:29:18','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','4','13:04:41',0,'','janvi','2025-10-09 13:01:51','drarchit','2025-10-09 18:29:18'),(221,0,0,'O','N','2526',203,0,'2025-10-09','2026-01-08',216,0,203,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:05:00','0000-00-00','','','','N','13:05:00','20:07:58','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','3','13:05:28',0,'','janvi','2025-10-09 13:05:28','drpratapsihn','2025-10-09 20:07:58'),(222,0,0,'O','N','2526',204,0,'2025-10-09','2026-01-08',217,0,204,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:43:00','0000-00-00','','','','N','13:43:00','14:05:43','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','13:43:25',0,'','shweta','2025-10-09 13:43:25','darshan','2025-10-09 14:05:43'),(223,0,0,'O','N','2526',205,0,'2025-10-09','2026-01-08',218,0,205,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:46:00','0000-00-00','','','','N','13:46:00','14:36:27','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','2','13:46:16',0,'','shweta','2025-10-09 13:46:16','darshan','2025-10-09 14:36:27'),(224,0,0,'I','N','2526',116,17,'2025-10-09','2026-01-08',127,0,116,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:30:00','2025-10-16','','3','mo','N','14:30:00','18:06:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-09 14:36:28','mo','2025-10-16 19:08:19'),(225,0,0,'O','N','2526',206,0,'2025-10-09','2026-01-08',219,0,206,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:28:00','0000-00-00','','','','N','16:28:00','19:56:11','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','3','16:28:49',0,'','shweta','2025-10-09 16:28:49','drpratapsihn','2025-10-09 19:56:11'),(226,0,0,'O','N','2526',207,0,'2025-10-09','2026-01-08',220,0,207,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:41:00','0000-00-00','','','','N','16:41:00','19:32:46','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:41:55',0,'','shweta','2025-10-09 16:41:55','darshan','2025-10-09 19:32:46'),(227,0,0,'O','N','2526',208,0,'2025-10-09','2026-01-08',221,0,208,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:41:00','0000-00-00','','','','N','16:41:00','17:06:03','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:41:58',0,'','shweta','2025-10-09 16:41:58','darshan','2025-10-09 17:06:03'),(228,0,0,'O','N','2526',209,0,'2025-10-09','2026-01-08',222,0,209,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:45:00','0000-00-00','','','','N','16:45:00','17:09:20','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','16:45:29',0,'','shweta','2025-10-09 16:45:29','darshan','2025-10-09 17:09:20'),(229,0,0,'O','N','2526',210,0,'2025-10-09','2026-01-08',223,0,210,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:54:00','0000-00-00','','','','N','16:54:00','19:44:36','','N','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','2','16:54:14',0,'','shweta','2025-10-09 16:54:14','darshan','2025-10-09 19:44:36'),(230,0,0,'O','N','2526',211,0,'2025-10-09','2026-01-08',224,0,211,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:54:00','0000-00-00','','','','N','16:54:00','20:08:15','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','3','16:54:14',0,'','shweta','2025-10-09 16:54:14','drpratapsihn','2025-10-09 20:08:15'),(231,0,0,'O','N','2526',212,0,'2025-10-09','2026-01-08',225,0,212,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:01:00','0000-00-00','','','','N','17:01:00','17:44:03','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:01:51',0,'','shweta','2025-10-09 17:01:51','darshan','2025-10-09 17:44:03'),(232,0,0,'O','N','2526',213,0,'2025-10-09','2026-01-08',226,0,213,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:08:00','0000-00-00','','','','N','17:08:00','20:25:26','','N','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','2','17:08:17',0,'','shweta','2025-10-09 17:08:17','darshan','2025-10-09 20:25:26'),(233,0,0,'O','N','2526',214,0,'2025-10-09','2026-01-08',227,0,214,'N','','N','','','NV','','N','D06','','N',20,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:15:00','0000-00-00','','','','N','17:15:00','18:30:43','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','2','17:15:30',0,'','shweta','2025-10-09 17:15:30','darshan','2025-10-09 18:30:43'),(234,0,0,'O','N','2526',215,0,'2025-10-09','2026-01-08',228,0,215,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:19:00','0000-00-00','','','','N','17:19:00','17:46:50','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:19:38',0,'','shweta','2025-10-09 17:19:38','darshan','2025-10-09 17:46:50'),(235,0,0,'O','N','2526',216,0,'2025-10-09','2026-01-08',229,0,216,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:24:00','0000-00-00','','','','N','17:24:00','18:00:08','','','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:24:11',0,'','shweta','2025-10-09 17:24:11','darshan','2025-10-09 18:00:08'),(236,0,0,'O','N','2526',217,0,'2025-10-09','2026-01-08',230,0,217,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:25:00','0000-00-00','','','','N','17:25:00','18:56:06','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','3','17:25:55',0,'','janvi','2025-10-09 17:25:55','drpratapsihn','2025-10-09 18:56:06'),(237,0,0,'O','N','2526',218,0,'2025-10-09','2026-01-08',231,0,218,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','19:56:50','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','3','17:27:23',0,'','janvi','2025-10-09 17:27:23','drpratapsihn','2025-10-09 19:56:50'),(238,0,0,'O','N','2526',219,0,'2025-10-09','2026-01-08',232,0,219,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:28:00','0000-00-00','','','','N','17:28:00','19:50:28','','N','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:28:35',0,'','shweta','2025-10-09 17:28:35','darshan','2025-10-09 19:50:28'),(239,0,0,'O','N','2526',220,0,'2025-10-09','2026-01-08',233,0,220,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','18:17:22','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:32:46',0,'','shweta','2025-10-09 17:32:46','darshan','2025-10-09 18:17:22'),(240,0,0,'O','N','2526',221,0,'2025-10-09','2026-01-08',234,0,221,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','18:59:08','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','3','17:40:27',0,'','janvi','2025-10-09 17:40:26','drpratapsihn','2025-10-09 18:59:08'),(241,0,0,'O','N','2526',222,0,'2025-10-09','2026-01-08',235,0,222,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','18:38:51','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','17:42:25',0,'','shweta','2025-10-09 17:42:25','darshan','2025-10-09 18:38:51'),(242,0,0,'O','N','2526',223,0,'2025-10-09','2026-01-08',236,0,223,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:47:00','0000-00-00','','','','N','17:47:00','00:00:00','','','N','N',NULL,'O','N','L09','','0000-00-00 00:00:00','4','17:47:35',0,'','shweta','2025-10-09 17:47:35','','0000-00-00 00:00:00'),(243,0,0,'O','N','2526',89,0,'2025-10-09','0000-00-00',100,0,89,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','19:40:18','','N','N','Y',NULL,'O','O','Z48','','0000-00-00 00:00:00','2','17:49:44',0,'','shweta','2025-10-09 17:49:44','darshan','2025-10-09 19:40:18'),(244,0,0,'O','N','2526',224,0,'2025-10-09','2026-01-08',237,0,224,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','18:47:15','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','2','17:50:38',0,'','janvi','2025-10-09 17:50:38','darshan','2025-10-09 18:47:15'),(245,0,0,'O','N','2526',225,0,'2025-10-09','2026-01-08',238,0,225,'N','','N','','','NV','','N','D06','','N',21,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:56:00','0000-00-00','','','','N','17:56:00','20:25:16','','N','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','2','17:56:12',0,'','shweta','2025-10-09 17:56:12','darshan','2025-10-09 20:25:16'),(246,0,0,'I','N','2526',0,18,'2025-10-09','2026-01-08',239,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','2025-10-18','','3','mo','N','18:00:00','12:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-09 18:00:34','mo','2025-10-18 14:19:44'),(247,0,0,'O','N','2526',226,0,'2025-10-09','2026-01-08',240,0,226,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','0000-00-00','','','','N','18:00:00','18:57:13','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','4','18:28:52',0,'','urvashi','2025-10-09 18:00:42','drarchit','2025-10-09 18:57:13'),(248,0,0,'O','N','2526',227,0,'2025-10-09','2026-01-08',241,0,227,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:01:00','0000-00-00','','','','N','18:01:00','18:35:02','','','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','2','18:01:13',0,'','shweta','2025-10-09 18:01:13','darshan','2025-10-09 18:35:02'),(249,0,0,'O','N','2526',228,0,'2025-10-09','2026-01-08',242,0,228,'N','','N','','','NC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','18:57:43','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','4','18:28:52',0,'','urvashi','2025-10-09 18:05:35','drarchit','2025-10-09 18:57:43'),(250,0,0,'O','N','2526',229,0,'2025-10-09','2026-01-08',243,0,229,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','19:18:36','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','2','18:05:36',0,'','shweta','2025-10-09 18:05:36','darshan','2025-10-09 19:18:36'),(251,0,0,'O','N','2526',230,0,'2025-10-09','2026-01-08',244,0,230,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','19:18:46','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','2','18:07:39',0,'','shweta','2025-10-09 18:07:39','darshan','2025-10-09 19:18:46'),(252,0,0,'O','N','2526',231,0,'2025-10-09','2026-01-08',245,0,231,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','18:44:59','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','3','18:11:01',0,'','urvashi','2025-10-09 18:11:01','drpratapsihn','2025-10-09 18:44:59'),(253,0,0,'O','N','2526',232,0,'2025-10-09','2026-01-08',246,0,232,'N','','N','','','','','N','D02','','N',22,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','18:51:40','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','3','18:11:07',0,'','janvi','2025-10-09 18:11:07','drpratapsihn','2025-10-09 18:51:40'),(254,0,0,'O','N','2526',233,0,'2025-10-09','2026-01-08',247,0,233,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','18:48:41','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','3','18:12:48',0,'','shweta','2025-10-09 18:12:48','drpratapsihn','2025-10-09 18:48:41'),(255,0,0,'O','N','2526',111,0,'2025-10-09','0000-00-00',122,0,111,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:13:00','0000-00-00','','','','N','18:13:00','18:48:57','','','N','Y',NULL,'O','O','Z55','','0000-00-00 00:00:00','3','18:14:00',0,'','urvashi','2025-10-09 18:14:00','drpratapsihn','2025-10-09 18:48:57'),(256,0,0,'O','N','2526',234,0,'2025-10-09','2026-01-08',248,0,234,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:17:00','0000-00-00','','','','N','18:17:00','19:09:16','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','5','18:17:55',0,'','janvi','2025-10-09 18:17:55','drjayant','2025-10-09 19:09:16'),(257,0,0,'I','N','2526',0,19,'2025-10-08','2026-01-07',249,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:00:00','2025-10-10','','1','mo','N','14:00:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-09 18:19:11','vishal','2025-10-10 21:20:58'),(258,0,0,'O','N','2526',235,0,'2025-10-09','2026-01-08',250,0,235,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','18:46:28','','','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','4','18:28:52',0,'','janvi','2025-10-09 18:23:47','drarchit','2025-10-09 18:46:28'),(259,0,0,'O','N','2526',236,0,'2025-10-09','2026-01-08',251,0,236,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','19:29:07','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','2','18:24:04',0,'','shweta','2025-10-09 18:24:04','darshan','2025-10-09 19:29:07'),(260,0,0,'O','N','2526',237,0,'2025-10-09','2026-01-08',252,0,237,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','18:55:18','','','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','4','18:28:52',0,'','urvashi','2025-10-09 18:28:43','drarchit','2025-10-09 18:55:18'),(261,0,0,'O','N','2526',238,0,'2025-10-09','2026-01-08',253,0,238,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','19:00:29','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','4','18:32:31',0,'','urvashi','2025-10-09 18:32:31','drarchit','2025-10-09 19:00:29'),(262,0,0,'O','N','2526',239,0,'2025-10-09','2026-01-08',254,0,239,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','18:46:23','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','5','18:33:40',0,'','janvi','2025-10-09 18:33:40','drjayant','2025-10-09 18:46:23'),(263,0,0,'O','N','2526',240,0,'2025-10-09','2026-01-08',255,0,240,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','18:54:33','','','N','Y',NULL,'O','N','L17','','0000-00-00 00:00:00','4','18:34:17',0,'','urvashi','2025-10-09 18:34:17','drarchit','2025-10-09 18:54:33'),(264,0,0,'O','N','2526',241,0,'2025-10-09','2026-01-08',256,0,241,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','19:31:53','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','4','18:48:14',0,'','urvashi','2025-10-09 18:48:14','drarchit','2025-10-09 19:31:53'),(265,0,0,'O','N','2526',242,0,'2025-10-09','2026-01-08',257,0,242,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','19:08:09','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','5','18:48:35',0,'','janvi','2025-10-09 18:48:35','drjayant','2025-10-09 19:08:09'),(266,0,0,'O','N','2526',243,0,'2025-10-09','2026-01-08',258,0,243,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:50:00','0000-00-00','','','','N','18:50:00','19:19:20','','','N','Y',NULL,'O','N','L18','','0000-00-00 00:00:00','4','18:50:17',0,'','urvashi','2025-10-09 18:50:17','drarchit','2025-10-09 19:19:20'),(267,0,0,'O','N','2526',244,0,'2025-10-09','2026-01-08',259,0,244,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:55:00','0000-00-00','','','','N','18:55:00','19:19:30','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','4','18:55:51',0,'','urvashi','2025-10-09 18:55:51','drarchit','2025-10-09 19:19:30'),(268,0,0,'O','N','2526',140,0,'2025-10-09','0000-00-00',151,0,140,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:59:00','0000-00-00','','','','N','18:59:00','19:47:15','','','N','Y',NULL,'O','O','Z62','','0000-00-00 00:00:00','3','18:59:51',0,'','janvi','2025-10-09 18:59:51','drpratapsihn','2025-10-09 19:47:15'),(269,0,0,'O','N','2526',245,0,'2025-10-09','2026-01-08',260,0,245,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:00:00','0000-00-00','','','','N','19:00:00','19:09:02','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','5','19:00:50',0,'','janvi','2025-10-09 19:00:50','drjayant','2025-10-09 19:09:02'),(270,0,0,'O','N','2526',246,0,'2025-10-09','2026-01-08',261,0,246,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:01:00','0000-00-00','','','','N','19:01:00','19:57:38','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','2','19:01:02',0,'','urvashi','2025-10-09 19:01:02','darshan','2025-10-09 19:57:38'),(271,0,0,'O','N','2526',118,0,'2025-10-09','0000-00-00',129,0,118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:01:00','0000-00-00','','','','N','19:01:00','19:54:41','','','N','Y',NULL,'O','O','Z65','','0000-00-00 00:00:00','3','19:01:33',0,'','janvi','2025-10-09 19:01:33','drpratapsihn','2025-10-09 19:54:41'),(272,0,0,'O','N','2526',247,0,'2025-10-09','2026-01-08',262,0,247,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:11:00','0000-00-00','','','','N','19:11:00','19:49:25','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','3','19:11:10',0,'','janvi','2025-10-09 19:11:10','drpratapsihn','2025-10-09 19:49:25'),(273,0,0,'O','N','2526',248,0,'2025-10-09','2026-01-08',263,0,248,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:11:00','0000-00-00','','','','N','19:11:00','19:19:40','','','N','Y',NULL,'O','N','Z67','','0000-00-00 00:00:00','4','19:11:18',0,'','urvashi','2025-10-09 19:11:18','drarchit','2025-10-09 19:19:40'),(274,0,0,'O','N','2526',249,0,'2025-10-09','2026-01-08',264,0,249,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:12:00','0000-00-00','','','','N','19:12:00','19:52:16','','','N','Y',NULL,'O','N','Z68','','0000-00-00 00:00:00','3','19:12:39',0,'','janvi','2025-10-09 19:12:39','drpratapsihn','2025-10-09 19:52:16'),(275,0,0,'O','N','2526',250,0,'2025-10-09','2026-01-08',265,0,250,'N','','N','','','NV','','N','D06','','N',23,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:12:00','0000-00-00','','','','N','19:12:00','20:35:15','','','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','2','19:12:52',0,'','shweta','2025-10-09 19:12:52','darshan','2025-10-09 20:35:15'),(276,0,0,'O','N','2526',251,0,'2025-10-09','2026-01-08',266,0,251,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:15:00','0000-00-00','','','','N','19:15:00','19:31:42','','','N','Y',NULL,'O','N','Z70','','0000-00-00 00:00:00','4','19:15:22',0,'','urvashi','2025-10-09 19:15:22','drarchit','2025-10-09 19:31:42'),(277,0,0,'O','N','2526',252,0,'2025-10-09','2026-01-08',267,0,252,'N','','N','','','NC','','N','D27','','N',24,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:17:00','0000-00-00','','','','N','19:17:00','19:32:02','','','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','4','19:17:36',0,'','shweta','2025-10-09 19:17:36','drarchit','2025-10-09 19:32:02'),(278,0,0,'O','N','2526',253,0,'2025-10-09','2026-01-08',268,0,253,'N','','N','','','','','N','D02','','N',25,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:25:00','0000-00-00','','','','N','19:25:00','00:00:00','','','N','N',NULL,'O','N','Z72','','0000-00-00 00:00:00','3','19:25:58',0,'','janvi','2025-10-09 19:25:58','janvi','2025-10-09 19:26:56'),(279,0,0,'O','N','2526',254,0,'2025-10-09','2026-01-08',269,0,254,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:27:00','0000-00-00','','','','N','19:27:00','19:36:32','','','N','Y',NULL,'O','N','Z73','','0000-00-00 00:00:00','4','19:27:23',0,'','urvashi','2025-10-09 19:27:23','drarchit','2025-10-09 19:36:32'),(280,0,0,'O','N','2526',255,0,'2025-10-09','2026-01-08',270,0,255,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:31:00','0000-00-00','','','','N','19:31:00','00:00:00','','','N','N',NULL,'O','N','L19','','0000-00-00 00:00:00','4','19:31:56',0,'','urvashi','2025-10-09 19:31:56','','0000-00-00 00:00:00'),(281,0,0,'O','N','2526',256,0,'2025-10-09','2026-01-08',271,0,256,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:34:00','0000-00-00','','','','N','19:34:00','00:00:00','','','N','N',NULL,'O','N','L20','','0000-00-00 00:00:00','4','19:34:32',0,'','urvashi','2025-10-09 19:34:32','','0000-00-00 00:00:00'),(282,0,0,'O','N','2526',257,0,'2025-10-09','2026-01-08',272,0,257,'N','','N','','','','','N','D02','','N',26,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:52:00','0000-00-00','','','','N','19:52:00','00:00:00','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','3','19:52:29',0,'','janvi','2025-10-09 19:52:29','','0000-00-00 00:00:00'),(283,0,0,'I','N','2526',0,20,'2025-10-09','2026-01-08',273,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:00:00','2025-10-11','','4','mo','N','20:00:00','10:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-09 20:04:52','mo','2025-10-11 10:25:30'),(284,0,0,'I','N','2526',0,21,'2025-10-09','2026-01-08',274,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','23:00:00','2025-10-18','','1','mo','N','23:00:00','11:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-09 23:06:49','mo','2025-10-18 12:50:56'),(285,0,0,'O','N','2526',258,0,'2025-10-10','2026-01-09',275,0,258,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:03:00','0000-00-00','','','','N','09:03:00','18:59:12','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','5','09:03:08',0,'','drashti','2025-10-10 09:03:07','drjayant','2025-10-10 18:59:12'),(286,0,0,'O','N','2526',259,0,'2025-10-10','2026-01-09',276,0,259,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:06:00','0000-00-00','','','','N','09:06:00','11:07:35','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','3','09:06:33',0,'','drashti','2025-10-10 09:06:33','drpratapsihn','2025-10-10 11:07:35'),(287,0,0,'O','N','2526',260,0,'2025-10-10','2026-01-09',37,0,260,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:07:00','0000-00-00','','','','N','09:07:00','11:14:27','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','3','09:07:33',0,'','priyanshi','2025-10-10 09:07:33','drpratapsihn','2025-10-10 11:14:27'),(288,0,0,'O','N','2526',261,0,'2025-10-10','2026-01-09',277,0,261,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:09:00','0000-00-00','','','','N','09:09:00','18:19:24','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','4','09:09:15',0,'','priyanshi','2025-10-10 09:09:15','drarchit','2025-10-10 18:19:24'),(289,0,0,'O','N','2526',47,0,'2025-10-10','0000-00-00',53,0,47,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:11:00','0000-00-00','','','','N','09:11:00','11:13:55','','','N','Y',NULL,'O','O','Z05','','0000-00-00 00:00:00','3','09:11:54',0,'','priyanshi','2025-10-10 09:11:54','drpratapsihn','2025-10-10 11:13:55'),(290,0,0,'O','N','2526',241,0,'2025-10-10','0000-00-00',256,0,241,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:12:00','0000-00-00','','','','N','09:12:00','11:06:58','','','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','4','09:12:42',0,'','priyanshi','2025-10-10 09:12:42','drarchit','2025-10-10 11:06:58'),(291,0,0,'O','N','2526',262,0,'2025-10-10','2026-01-09',278,0,262,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:15:00','0000-00-00','','','','N','09:15:00','11:34:00','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','5','09:15:50',0,'','priyanshi','2025-10-10 09:15:50','drjayant','2025-10-10 11:34:00'),(292,0,0,'O','N','2526',147,0,'2025-10-10','0000-00-00',158,0,147,'N','','N','','','INJECTION','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:17:00','0000-00-00','','','','N','09:17:00','11:14:39','','','N','Y',NULL,'O','O','Z08','','0000-00-00 00:00:00','3','09:17:37',0,'','janvi','2025-10-10 09:17:37','drpratapsihn','2025-10-10 11:14:39'),(293,0,0,'O','N','2526',147,0,'2025-10-10','0000-00-00',158,0,147,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:22:00','0000-00-00','','','','N','09:22:00','11:14:48','','','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','3','09:22:19',0,'','janvi','2025-10-10 09:22:19','drpratapsihn','2025-10-10 11:14:48'),(294,0,0,'O','N','2526',263,0,'2025-10-10','2026-01-09',279,0,263,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:25:00','0000-00-00','','','','N','09:25:00','10:46:34','','','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','09:25:42',0,'','priyanshi','2025-10-10 09:25:42','darshan','2025-10-10 10:46:34'),(295,0,0,'O','N','2526',264,0,'2025-10-10','2026-01-09',280,0,264,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:55:00','0000-00-00','','','','N','09:55:00','11:00:40','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','2','09:56:01',0,'','priyanshi','2025-10-10 09:56:01','darshan','2025-10-10 11:00:40'),(296,0,0,'O','N','2526',265,0,'2025-10-10','2026-01-09',281,0,265,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','0000-00-00','','','','N','10:00:00','10:52:34','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','10:00:54',0,'','drashti','2025-10-10 10:00:54','darshan','2025-10-10 10:52:34'),(297,0,0,'O','N','2526',266,0,'2025-10-10','2026-01-09',282,0,266,'N','','N','','','FV                ','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:08:00','0000-00-00','','','','N','10:08:00','11:31:02','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','2','10:08:06',0,'','reception','2025-10-10 10:08:06','darshan','2025-10-10 11:31:02'),(298,0,0,'O','N','2526',267,0,'2025-10-10','2026-01-09',283,0,267,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:11:00','0000-00-00','','','','N','10:11:00','11:44:00','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','10:11:08',0,'','reception','2025-10-10 10:11:08','darshan','2025-10-10 11:44:00'),(299,0,0,'O','N','2526',268,0,'2025-10-10','2026-01-09',284,0,268,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:14:00','0000-00-00','','','','N','10:14:00','10:55:54','','','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:14:43',0,'','reception','2025-10-10 10:14:43','darshan','2025-10-10 10:55:54'),(300,0,0,'O','N','2526',269,0,'2025-10-10','2026-01-09',285,0,269,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:18:00','0000-00-00','','','','N','10:18:00','11:35:26','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','10:18:43',0,'','reception','2025-10-10 10:18:43','darshan','2025-10-10 11:35:26'),(301,0,0,'O','N','2526',270,0,'2025-10-10','2026-01-09',286,0,270,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:27:00','0000-00-00','','','','N','10:27:00','11:13:00','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','3','10:27:30',0,'','janvi','2025-10-10 10:27:30','drpratapsihn','2025-10-10 11:13:00'),(302,0,0,'O','N','2526',271,0,'2025-10-10','2026-01-09',287,0,271,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','11:15:07','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','3','10:28:21',0,'','drashti','2025-10-10 10:28:21','drpratapsihn','2025-10-10 11:15:07'),(303,0,0,'O','N','2526',272,0,'2025-10-10','2026-01-09',288,0,272,'N','','N','','','REPORT','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:36:00','0000-00-00','','','','N','10:36:00','13:34:17','','N','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','2','10:36:05',0,'','reception','2025-10-10 10:36:05','darshan','2025-10-10 13:34:17'),(304,0,0,'O','N','2526',273,0,'2025-10-10','2026-01-09',289,0,273,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','','N','10:40:00','12:03:17','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','2','10:40:45',0,'','reception','2025-10-10 10:40:45','darshan','2025-10-10 12:03:17'),(305,0,0,'O','N','2526',274,0,'2025-10-10','2026-01-09',290,0,274,'N','','N','','','FV                ','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','12:39:14','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','10:48:15',0,'','reception','2025-10-10 10:48:15','darshan','2025-10-10 12:39:14'),(306,0,0,'O','N','2526',275,0,'2025-10-10','2026-01-09',291,0,275,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','11:30:00','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','4','10:55:29',0,'','janvi','2025-10-10 10:55:29','drarchit','2025-10-10 11:30:00'),(307,0,0,'O','N','2526',276,0,'2025-10-10','2026-01-09',292,0,276,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','00:00:00','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','4','10:58:02',0,'','drashti','2025-10-10 10:58:02','','0000-00-00 00:00:00'),(308,0,0,'O','N','2526',277,0,'2025-10-10','2026-01-09',293,0,277,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','11:39:33','','','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','2','11:01:32',0,'','reception','2025-10-10 11:01:32','darshan','2025-10-10 11:39:33'),(309,0,0,'O','N','2526',278,0,'2025-10-10','2026-01-09',294,0,278,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','12:18:04','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','11:03:51',0,'','reception','2025-10-10 11:03:51','darshan','2025-10-10 12:18:04'),(310,0,0,'O','N','2526',279,0,'2025-10-10','2026-01-09',295,0,279,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','19:10:22','','','N','Y',NULL,'O','N','G05','','0000-00-00 00:00:00','4','11:05:50',0,'','janvi','2025-10-10 11:05:50','drarchit','2025-10-10 19:10:22'),(311,0,0,'O','N','2526',280,0,'2025-10-10','2026-01-09',296,0,280,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','00:00:00','','','N','N',NULL,'O','N','Z17','','0000-00-00 00:00:00','4','11:13:33',0,'','drashti','2025-10-10 11:13:33','','0000-00-00 00:00:00'),(312,0,0,'O','N','2526',281,0,'2025-10-10','2026-01-09',297,0,281,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','00:00:00','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','3','11:13:40',0,'','janvi','2025-10-10 11:13:40','','0000-00-00 00:00:00'),(313,0,0,'O','N','2526',282,0,'2025-10-10','2026-01-09',298,0,282,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','11:30:12','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','6','11:15:15',0,'','manshi','2025-10-10 11:15:15','drsagar','2025-10-10 11:30:12'),(314,0,0,'O','N','2526',283,0,'2025-10-10','2026-01-09',299,0,283,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','12:54:49','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','5','11:15:23',0,'','reception','2025-10-10 11:15:23','drjayant','2025-10-10 12:54:49'),(315,0,0,'O','N','2526',284,0,'2025-10-10','2026-01-09',300,0,284,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','12:26:50','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:17:57',0,'','reception','2025-10-10 11:17:57','darshan','2025-10-10 12:26:50'),(316,0,0,'O','N','2526',285,0,'2025-10-10','2026-01-09',301,0,285,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','11:30:07','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','3','11:18:33',0,'','drashti','2025-10-10 11:18:33','drpratapsihn','2025-10-10 11:30:07'),(317,0,0,'O','N','2526',47,0,'2025-10-10','0000-00-00',53,0,47,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','11:37:30','','','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','3','11:19:56',0,'','reception','2025-10-10 11:19:56','drpratapsihn','2025-10-10 11:37:30'),(318,0,0,'O','N','2526',286,0,'2025-10-10','2026-01-09',302,0,286,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','11:36:56','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','6','11:20:35',0,'','manshi','2025-10-10 11:20:35','drsagar','2025-10-10 11:36:56'),(319,0,0,'O','N','2526',287,0,'2025-10-10','2026-01-09',303,0,287,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:22:00','0000-00-00','','','','N','11:22:00','18:19:41','','','N','Y',NULL,'O','N','G06','','0000-00-00 00:00:00','4','11:22:17',0,'','drashti','2025-10-10 11:22:17','drarchit','2025-10-10 18:19:41'),(320,0,0,'O','N','2526',288,0,'2025-10-10','2026-01-09',304,0,288,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:22:00','0000-00-00','','','','N','11:22:00','12:46:11','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:22:25',0,'','reception','2025-10-10 11:22:25','darshan','2025-10-10 12:46:11'),(321,0,0,'O','N','2526',289,0,'2025-10-10','2026-01-09',305,0,289,'N','','N','','','NE','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','11:39:29','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','3','11:25:14',0,'','reception','2025-10-10 11:25:14','drpratapsihn','2025-10-10 11:39:29'),(322,0,0,'O','N','2526',290,0,'2025-10-10','2026-01-09',306,0,290,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','11:37:48','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','5','11:25:37',0,'','drashti','2025-10-10 11:25:37','drjayant','2025-10-10 11:37:48'),(323,0,0,'O','N','2526',291,0,'2025-10-10','2026-01-09',307,0,291,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','11:43:47','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','3','11:27:06',0,'','reception','2025-10-10 11:27:06','drpratapsihn','2025-10-10 11:43:47'),(324,0,0,'O','N','2526',292,0,'2025-10-10','2026-01-09',308,0,292,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:34:00','0000-00-00','','','','N','11:34:00','13:46:25','','N','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','11:34:46',0,'','reception','2025-10-10 11:34:46','darshan','2025-10-10 13:46:25'),(325,0,0,'O','N','2526',293,0,'2025-10-10','2026-01-09',309,0,293,'N','','N','','','NC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','18:19:50','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','4','11:38:38',0,'','drashti','2025-10-10 11:38:38','drarchit','2025-10-10 18:19:50'),(326,0,0,'O','N','2526',294,0,'2025-10-10','2026-01-09',310,0,294,'N','','N','','','NV','','N','D06','','N',27,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','13:53:21','','N','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','2','11:44:31',0,'','reception','2025-10-10 11:44:31','darshan','2025-10-10 13:53:21'),(327,0,0,'O','N','2526',295,0,'2025-10-10','2026-01-09',311,0,295,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','12:38:39','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','4','11:50:24',0,'','drashti','2025-10-10 11:50:24','drarchit','2025-10-10 12:38:39'),(328,0,0,'O','N','2526',296,0,'2025-10-10','2026-01-09',312,0,296,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:57:00','0000-00-00','','','','N','11:57:00','00:00:00','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','3','11:57:54',0,'','janvi','2025-10-10 11:57:54','','0000-00-00 00:00:00'),(329,0,0,'O','N','2526',297,0,'2025-10-10','2026-01-09',313,0,297,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','13:02:44','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','12:02:32',0,'','reception','2025-10-10 12:02:32','darshan','2025-10-10 13:02:44'),(330,0,0,'O','N','2526',298,0,'2025-10-10','2026-01-09',314,0,298,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:04:00','0000-00-00','','','','N','12:04:00','13:07:54','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','12:04:37',0,'','reception','2025-10-10 12:04:37','darshan','2025-10-10 13:07:54'),(331,0,0,'O','N','2526',299,0,'2025-10-10','2026-01-09',315,0,299,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:07:00','0000-00-00','','','','N','12:07:00','18:19:32','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','4','12:07:54',0,'','drashti','2025-10-10 12:07:53','drarchit','2025-10-10 18:19:32'),(332,0,0,'O','N','2526',300,0,'2025-10-10','2026-01-09',316,0,300,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:08:00','0000-00-00','','','','N','12:08:00','14:04:50','','N','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','2','12:08:05',0,'','reception','2025-10-10 12:08:05','darshan','2025-10-10 14:04:50'),(333,0,0,'O','N','2526',301,0,'2025-10-10','2026-01-09',317,0,301,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','12:16:14','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','6','12:09:17',0,'','manshi','2025-10-10 12:09:17','drsagar','2025-10-10 12:16:14'),(334,0,0,'O','N','2526',302,0,'2025-10-10','2026-01-09',318,0,302,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:11:00','0000-00-00','','','','N','12:11:00','12:19:34','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','6','12:11:43',0,'','manshi','2025-10-10 12:11:43','drsagar','2025-10-10 12:19:34'),(335,0,0,'O','N','2526',303,0,'2025-10-10','2026-01-09',319,0,303,'N','','N','','','DRESSING','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:26:00','0000-00-00','','','','N','12:26:00','12:56:22','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','3','12:26:40',0,'','janvi','2025-10-10 12:26:40','drpratapsihn','2025-10-10 12:56:22'),(336,0,0,'O','N','2526',304,0,'2025-10-10','2026-01-09',320,0,304,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:44:00','0000-00-00','','','','N','12:44:00','18:41:29','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','4','12:44:13',0,'','drashti','2025-10-10 12:44:13','drarchit','2025-10-10 18:41:29'),(337,0,0,'O','N','2526',305,0,'2025-10-10','2026-01-09',321,0,305,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:56:00','0000-00-00','','','','N','12:56:00','00:00:00','','','N','N',NULL,'O','N','Z35','','0000-00-00 00:00:00','3','12:56:12',0,'','drashti','2025-10-10 12:56:12','','0000-00-00 00:00:00'),(338,0,0,'O','N','2526',306,0,'2025-10-10','2026-01-09',322,0,306,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:57:00','0000-00-00','','','','N','12:57:00','13:12:57','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','5','12:57:41',0,'','janvi','2025-10-10 12:57:41','drjayant','2025-10-10 13:12:57'),(339,0,0,'O','N','2526',307,0,'2025-10-10','2026-01-09',323,0,307,'N','','N','','','NC','','N','D02','','N',22,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:08:00','0000-00-00','','','','N','13:08:00','00:00:00','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','3','13:08:54',0,'','drashti','2025-10-10 13:08:54','','0000-00-00 00:00:00'),(340,0,0,'O','N','2526',308,0,'2025-10-10','2026-01-09',324,0,308,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:09:00','0000-00-00','','','','N','13:09:00','13:33:35','','','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','2','13:09:48',0,'','reception','2025-10-10 13:09:48','darshan','2025-10-10 13:33:35'),(341,0,0,'O','N','2526',309,0,'2025-10-10','2026-01-09',325,0,309,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:16:00','0000-00-00','','','','N','13:16:00','14:49:15','','N','N','Y',NULL,'O','N','K02','','0000-00-00 00:00:00','2','13:16:46',0,'','reception','2025-10-10 13:16:46','darshan','2025-10-10 14:49:15'),(342,0,0,'O','N','2526',310,0,'2025-10-10','2026-01-09',326,0,310,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:20:00','0000-00-00','','','','N','13:20:00','00:00:00','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','3','13:20:18',0,'','janvi','2025-10-10 13:20:18','','0000-00-00 00:00:00'),(343,0,0,'O','N','2526',311,0,'2025-10-10','2026-01-09',327,0,311,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:36:00','0000-00-00','','','','N','13:36:00','18:15:33','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','6','13:36:42',0,'','manshi','2025-10-10 13:36:42','drsagar','2025-10-10 18:15:33'),(344,0,0,'O','N','2526',312,0,'2025-10-10','2026-01-09',328,0,312,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:47:00','0000-00-00','','','','N','13:47:00','14:04:41','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','6','13:47:31',0,'','manshi','2025-10-10 13:47:31','drsagar','2025-10-10 14:04:41'),(345,0,0,'O','N','2526',313,0,'2025-10-10','2026-01-09',329,0,313,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:00:00','0000-00-00','','','','N','14:00:00','00:00:00','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','4','14:00:51',0,'','drashti','2025-10-10 14:00:51','','0000-00-00 00:00:00'),(346,0,0,'O','N','2526',291,0,'2025-10-10','0000-00-00',307,0,291,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:23:00','0000-00-00','','','','N','15:23:00','00:00:00','','','N','N',NULL,'O','O','Y03','','0000-00-00 00:00:00','3','15:23:11',0,'','priyanshi','2025-10-10 15:23:11','','0000-00-00 00:00:00'),(347,0,0,'O','N','2526',314,0,'2025-10-10','2026-01-09',330,0,314,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:00:00','0000-00-00','','','','N','16:00:00','18:49:37','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','4','16:00:16',0,'','priyanshi','2025-10-10 16:00:16','drarchit','2025-10-10 18:49:37'),(348,0,0,'O','N','2526',315,0,'2025-10-10','2026-01-09',331,0,315,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:21:00','0000-00-00','','','','N','16:21:00','17:29:59','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','2','16:21:28',0,'','priyanshi','2025-10-10 16:21:28','darshan','2025-10-10 17:29:59'),(349,0,0,'O','N','2526',316,0,'2025-10-10','2026-01-09',332,0,316,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:34:00','0000-00-00','','','','N','16:34:00','17:13:57','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','2','16:34:29',0,'','reception','2025-10-10 16:34:29','darshan','2025-10-10 17:13:57'),(350,0,0,'O','N','2526',317,0,'2025-10-10','2026-01-09',333,0,317,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:36:00','0000-00-00','','','','N','16:36:00','17:14:30','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','2','16:36:20',0,'','drashti','2025-10-10 16:36:20','darshan','2025-10-10 17:14:30'),(351,0,0,'O','N','2526',318,0,'2025-10-10','2026-01-09',334,0,318,'N','','N','','','NC','','N','D02','','N',28,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:36:00','0000-00-00','','','','N','16:36:00','00:00:00','','','N','N',NULL,'O','N','Z46','','0000-00-00 00:00:00','3','16:36:29',0,'','janvi','2025-10-10 16:36:29','','0000-00-00 00:00:00'),(352,0,0,'O','N','2526',319,0,'2025-10-10','2026-01-09',335,0,319,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:36:00','0000-00-00','','','','N','16:36:00','17:42:24','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','16:37:03',0,'','reception','2025-10-10 16:37:03','darshan','2025-10-10 17:42:24'),(353,0,0,'O','N','2526',320,0,'2025-10-10','2026-01-09',336,0,320,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:39:00','0000-00-00','','','','N','16:39:00','17:45:58','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','2','16:39:54',0,'','reception','2025-10-10 16:39:54','darshan','2025-10-10 17:45:58'),(354,0,0,'O','N','2526',321,0,'2025-10-10','2026-01-09',337,0,321,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:40:00','0000-00-00','','','','N','16:40:00','17:24:44','','','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:40:38',0,'','drashti','2025-10-10 16:40:38','darshan','2025-10-10 17:24:44'),(355,0,0,'O','N','2526',322,0,'2025-10-10','2026-01-09',338,0,322,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:44:00','0000-00-00','','','','N','16:44:00','17:15:11','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','2','16:45:00',0,'','reception','2025-10-10 16:45:00','darshan','2025-10-10 17:15:11'),(356,0,0,'O','N','2526',323,0,'2025-10-10','2026-01-09',339,0,323,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:50:00','0000-00-00','','','','N','16:50:00','17:37:33','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:50:17',0,'','reception','2025-10-10 16:50:17','darshan','2025-10-10 17:37:33'),(357,0,0,'O','N','2526',324,0,'2025-10-10','2026-01-09',340,0,324,'N','','N','','','','','N','D02','','N',29,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:50:00','0000-00-00','','','','N','16:50:00','00:00:00','','','N','N',NULL,'O','N','Z50','','0000-00-00 00:00:00','3','16:50:49',0,'','drashti','2025-10-10 16:50:49','','0000-00-00 00:00:00'),(358,0,0,'O','N','2526',325,0,'2025-10-10','2026-01-09',341,0,325,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:54:00','0000-00-00','','','','N','16:54:00','17:16:22','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','2','16:54:43',0,'','reception','2025-10-10 16:54:43','darshan','2025-10-10 17:16:22'),(359,0,0,'O','N','2526',326,0,'2025-10-10','2026-01-09',342,0,326,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:59:00','0000-00-00','','','','N','16:59:00','17:19:02','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','2','16:59:52',0,'','reception','2025-10-10 16:59:51','darshan','2025-10-10 17:19:02'),(360,0,0,'O','N','2526',327,0,'2025-10-10','2026-01-09',343,0,327,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:02:00','0000-00-00','','','','N','17:02:00','19:11:22','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','6','17:02:18',0,'','manshi','2025-10-10 17:02:18','drsagar','2025-10-10 19:11:22'),(361,0,0,'O','N','2526',328,0,'2025-10-10','2026-01-09',344,0,328,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:04:00','0000-00-00','','','','N','17:04:00','17:32:56','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:04:32',0,'','reception','2025-10-10 17:04:32','darshan','2025-10-10 17:32:56'),(362,0,0,'O','N','2526',329,0,'2025-10-10','2026-01-09',345,0,329,'N','','N','','','','','N','D03','','N',30,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:05:00','0000-00-00','','','','N','17:05:00','18:25:32','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','6','17:05:50',0,'','manshi','2025-10-10 17:05:50','drsagar','2025-10-10 18:25:32'),(363,0,0,'O','N','2526',330,0,'2025-10-10','2026-01-09',346,0,330,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:10:00','0000-00-00','','','','N','17:10:00','18:02:16','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:10:07',0,'','reception','2025-10-10 17:10:07','darshan','2025-10-10 18:02:16'),(364,0,0,'O','N','2526',331,0,'2025-10-10','2026-01-09',347,0,331,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:11:00','0000-00-00','','','','N','17:11:00','19:25:43','','N','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:11:47',0,'','reception','2025-10-10 17:11:47','darshan','2025-10-10 19:25:43'),(365,0,0,'O','N','2526',332,0,'2025-10-10','2026-01-09',348,0,332,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:24:00','0000-00-00','','','','N','17:24:00','00:00:00','','','N','N',NULL,'O','N','Z55','','0000-00-00 00:00:00','3','17:24:38',0,'','drashti','2025-10-10 17:24:38','','0000-00-00 00:00:00'),(366,0,0,'O','N','2526',333,0,'2025-10-10','2026-01-09',349,0,333,'N','','N','','','FV                ','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:25:00','0000-00-00','','','','N','17:25:00','18:07:50','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','2','17:25:52',0,'','reception','2025-10-10 17:25:52','darshan','2025-10-10 18:07:50'),(367,0,0,'O','N','2526',334,0,'2025-10-10','2026-01-09',350,0,334,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','00:00:00','','','N','N',NULL,'O','N','Z57','','0000-00-00 00:00:00','3','17:32:53',0,'','janvi','2025-10-10 17:32:53','','0000-00-00 00:00:00'),(368,0,0,'O','N','2526',335,0,'2025-10-10','2026-01-09',351,0,335,'N','','N','','','FC              ','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:33:00','0000-00-00','','','','N','17:33:00','00:00:00','','','N','N',NULL,'O','N','Z58','','0000-00-00 00:00:00','3','17:33:03',0,'','reception','2025-10-10 17:33:03','','0000-00-00 00:00:00'),(369,0,0,'O','N','2526',336,0,'2025-10-10','2026-01-09',352,0,336,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:34:00','0000-00-00','','','','N','17:34:00','00:00:00','','','N','N',NULL,'O','N','Z59','','0000-00-00 00:00:00','3','17:34:38',0,'','janvi','2025-10-10 17:34:38','','0000-00-00 00:00:00'),(370,0,0,'O','N','2526',337,0,'2025-10-10','2026-01-09',353,0,337,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:38:00','0000-00-00','','','','N','17:38:00','18:49:20','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','7','18:47:45',0,'','manshi','2025-10-10 17:38:18','drridham','2025-10-10 18:49:20'),(371,0,0,'O','N','2526',338,0,'2025-10-10','2026-01-09',354,0,338,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:38:00','0000-00-00','','','','N','17:38:00','19:31:39','','N','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','2','18:01:06',0,'','reception','2025-10-10 17:38:33','darshan','2025-10-10 19:31:39'),(372,0,0,'O','N','2526',339,0,'2025-10-10','2026-01-09',355,0,339,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:38:00','0000-00-00','','','','N','17:38:00','18:49:32','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','7','18:47:45',0,'','manshi','2025-10-10 17:38:35','drridham','2025-10-10 18:49:32'),(373,0,0,'O','N','2526',340,0,'2025-10-10','2026-01-09',356,0,340,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','18:33:24','','','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','18:01:06',0,'','reception','2025-10-10 17:41:00','darshan','2025-10-10 18:33:24'),(374,0,0,'O','N','2526',341,0,'2025-10-10','2026-01-09',357,0,341,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','00:00:00','','','N','N',NULL,'O','N','Z63','','0000-00-00 00:00:00','3','17:46:38',0,'','reception','2025-10-10 17:46:38','','0000-00-00 00:00:00'),(375,0,0,'O','N','2526',342,0,'2025-10-10','2026-01-09',358,0,342,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','18:41:10','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','4','18:19:24',0,'','janvi','2025-10-10 17:47:12','drarchit','2025-10-10 18:41:10'),(376,0,0,'O','N','2526',343,0,'2025-10-10','2026-01-09',359,0,343,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:47:00','0000-00-00','','','','N','17:47:00','18:41:00','','','N','Y',NULL,'O','N','Z65','','0000-00-00 00:00:00','4','18:19:24',0,'','janvi','2025-10-10 17:48:03','drarchit','2025-10-10 18:41:00'),(377,0,0,'O','N','2526',344,0,'2025-10-10','2026-01-09',360,0,344,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','20:09:27','','N','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','18:01:06',0,'','reception','2025-10-10 17:50:08','darshan','2025-10-10 20:09:27'),(378,0,0,'O','N','2526',345,0,'2025-10-10','2026-01-09',361,0,345,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','19:30:10','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','2','18:01:06',0,'','janvi','2025-10-10 17:51:02','darshan','2025-10-10 19:30:10'),(379,0,0,'O','N','2526',111,0,'2025-10-10','0000-00-00',122,0,111,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:53:00','0000-00-00','','','','N','17:53:00','00:00:00','','','N','N',NULL,'O','O','Z67','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-10-10 17:54:01','','0000-00-00 00:00:00'),(380,0,0,'O','N','2526',346,0,'2025-10-10','2026-01-09',362,0,346,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:54:00','0000-00-00','','','','N','17:54:00','00:00:00','','','N','N',NULL,'O','N','Z68','','0000-00-00 00:00:00','4','18:19:24',0,'','drashti','2025-10-10 17:54:19','','0000-00-00 00:00:00'),(381,0,0,'O','N','2526',347,0,'2025-10-10','2026-01-09',363,0,347,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:54:00','0000-00-00','','','','N','17:54:00','18:05:01','','N','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','18:01:06',0,'','reception','2025-10-10 17:54:48','darshan','2025-10-13 18:05:01'),(382,0,0,'O','N','2526',348,0,'2025-10-10','2026-01-09',364,0,348,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:55:00','0000-00-00','','','','N','17:55:00','00:00:00','','','N','N',NULL,'O','N','L09','','0000-00-00 00:00:00','4','18:19:24',0,'','janvi','2025-10-10 17:55:30','','0000-00-00 00:00:00'),(383,0,0,'O','N','2526',349,0,'2025-10-10','2026-01-09',365,0,349,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:01:00','0000-00-00','','','','N','18:01:00','19:10:35','','','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','2','18:01:06',0,'','drashti','2025-10-10 18:01:06','darshan','2025-10-10 19:10:35'),(384,0,0,'O','N','2526',350,0,'2025-10-10','2026-01-09',366,0,350,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','19:55:52','','N','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','2','18:03:49',0,'','reception','2025-10-10 18:03:49','darshan','2025-10-10 19:55:52'),(385,0,0,'O','N','2526',351,0,'2025-10-10','2026-01-09',367,0,351,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','19:16:08','','','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','2','18:09:55',0,'','reception','2025-10-10 18:09:55','darshan','2025-10-10 19:16:08'),(386,0,0,'O','N','2526',352,0,'2025-10-10','2026-01-09',368,0,352,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','18:41:20','','','N','Y',NULL,'O','N','Z70','','0000-00-00 00:00:00','5','18:20:06',0,'','janvi','2025-10-10 18:10:40','drjayant','2025-10-10 18:41:20'),(387,0,0,'O','N','2526',353,0,'2025-10-10','2026-01-09',369,0,353,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:13:00','0000-00-00','','','','N','18:13:00','18:36:21','','','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','5','18:20:06',0,'','janvi','2025-10-10 18:14:07','drjayant','2025-10-10 18:36:21'),(388,0,0,'O','N','2526',354,0,'2025-10-10','2026-01-09',370,0,354,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','18:32:03','','','N','Y',NULL,'O','N','Z72','','0000-00-00 00:00:00','6','18:19:06',0,'','manshi','2025-10-10 18:19:06','drsagar','2025-10-10 18:32:03'),(389,0,0,'O','N','2526',355,0,'2025-10-10','2026-01-09',371,0,355,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','18:45:23','','','N','Y',NULL,'O','N','Z73','','0000-00-00 00:00:00','4','18:19:47',0,'','drashti','2025-10-10 18:19:47','drarchit','2025-10-10 18:45:23'),(390,0,0,'O','N','2526',356,0,'2025-10-10','2026-01-09',372,0,356,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:20:00','0000-00-00','','','','N','18:20:00','18:57:08','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','5','18:21:07',0,'','janvi','2025-10-10 18:21:07','drjayant','2025-10-10 18:57:08'),(391,0,0,'O','N','2526',357,0,'2025-10-10','2026-01-09',373,0,357,'N','','N','','','FV                ','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:22:00','0000-00-00','','','','N','18:22:00','19:47:12','','','N','Y',NULL,'O','N','Z75','','0000-00-00 00:00:00','2','18:22:55',0,'','reception','2025-10-10 18:22:55','darshan','2025-10-10 19:47:12'),(392,0,0,'O','N','2526',358,0,'2025-10-10','2026-01-09',374,0,358,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','19:18:59','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','2','18:24:04',0,'','drashti','2025-10-10 18:24:04','darshan','2025-10-10 19:18:59'),(393,0,0,'O','N','2526',118,0,'2025-10-10','0000-00-00',129,0,118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','00:00:00','','','N','N',NULL,'O','O','Z76','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-10-10 18:31:04','','0000-00-00 00:00:00'),(394,0,0,'O','N','2526',359,0,'2025-10-10','2026-01-09',375,0,359,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','19:10:51','','','N','Y',NULL,'O','N','Z77','','0000-00-00 00:00:00','4','18:31:22',0,'','drashti','2025-10-10 18:31:22','drarchit','2025-10-10 19:10:51'),(395,0,0,'O','N','2526',360,0,'2025-10-10','2026-01-09',376,0,360,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','19:10:33','','','N','Y',NULL,'O','N','Z78','','0000-00-00 00:00:00','4','18:32:04',0,'','reception','2025-10-10 18:32:04','drarchit','2025-10-10 19:10:33'),(396,0,0,'O','N','2526',140,0,'2025-10-10','0000-00-00',151,0,140,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','00:00:00','','','N','N',NULL,'O','O','Z79','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-10-10 18:33:24','','0000-00-00 00:00:00'),(397,0,0,'O','N','2526',361,0,'2025-10-10','2026-01-09',377,0,361,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','00:00:00','','','N','N',NULL,'O','N','Z80','','0000-00-00 00:00:00','4','18:33:29',0,'','drashti','2025-10-10 18:33:29','','0000-00-00 00:00:00'),(398,0,0,'O','N','2526',362,0,'2025-10-10','2026-01-09',378,0,362,'N','','N','','','','','N','D06','','N',5,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','19:56:05','','','N','Y',NULL,'O','N','Z81','','0000-00-00 00:00:00','2','18:36:08',0,'','reception','2025-10-10 18:36:08','darshan','2025-10-10 19:56:05'),(399,0,0,'O','N','2526',363,0,'2025-10-10','2026-01-09',379,0,363,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','20:06:05','','','N','Y',NULL,'O','N','Z82','','0000-00-00 00:00:00','2','19:58:54',0,'','reception','2025-10-10 18:40:25','darshan','2025-10-10 20:06:05'),(400,0,0,'O','N','2526',364,0,'2025-10-10','2026-01-09',380,0,364,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','00:00:00','','','N','N',NULL,'O','N','Z83','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-10-10 18:55:06','','0000-00-00 00:00:00'),(401,0,0,'O','N','2526',70,0,'2025-10-10','0000-00-00',81,0,70,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:57:00','0000-00-00','','','','N','18:57:00','19:11:40','','','N','Y',NULL,'O','O','Z84','','0000-00-00 00:00:00','6','18:57:41',0,'','manshi','2025-10-10 18:57:41','drsagar','2025-10-10 19:11:40'),(402,0,0,'O','N','2526',365,0,'2025-10-10','2026-01-09',381,0,365,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:04:00','0000-00-00','','','','N','19:04:00','00:00:00','','','N','N',NULL,'O','N','Z85','','0000-00-00 00:00:00','4','19:04:54',0,'','drashti','2025-10-10 19:04:54','','0000-00-00 00:00:00'),(403,0,0,'O','N','2526',366,0,'2025-10-10','2026-01-09',382,0,366,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:08:00','0000-00-00','','','','N','19:08:00','19:16:29','','','N','Y',NULL,'O','N','Z86','','0000-00-00 00:00:00','4','19:08:34',0,'','drashti','2025-10-10 19:08:34','drarchit','2025-10-10 19:16:29'),(404,0,0,'O','N','2526',367,0,'2025-10-10','2026-01-09',383,0,367,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:09:00','0000-00-00','','','','N','19:09:00','00:00:00','','','N','N',NULL,'O','N','Z87','','0000-00-00 00:00:00','4','19:09:25',0,'','janvi','2025-10-10 19:09:25','','0000-00-00 00:00:00'),(405,0,0,'O','N','2526',368,0,'2025-10-10','2026-01-09',384,0,368,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:12:00','0000-00-00','','','','N','19:12:00','20:14:32','','','N','Y',NULL,'O','N','Z88','','0000-00-00 00:00:00','2','19:58:54',0,'','drashti','2025-10-10 19:12:04','darshan','2025-10-10 20:14:32'),(406,0,0,'I','N','2526',0,22,'2025-10-10','2026-01-09',385,0,0,'N','','N','','','','N','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:20:00','2025-10-14','','1','mo','N','19:20:00','12:45:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-10 19:21:47','mo','2025-10-14 13:17:46'),(407,0,0,'O','N','2526',369,0,'2025-10-10','2026-01-09',386,0,369,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:22:00','0000-00-00','','','','N','19:22:00','19:33:31','','','N','Y',NULL,'O','N','Z89','','0000-00-00 00:00:00','6','19:23:00',0,'','manshi','2025-10-10 19:23:00','drsagar','2025-10-10 19:33:31'),(408,0,0,'O','N','2526',370,0,'2025-10-10','2026-01-09',387,0,370,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:27:00','0000-00-00','','','','N','19:27:00','00:00:00','','','N','N',NULL,'O','N','Z90','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-10-10 19:27:52','','0000-00-00 00:00:00'),(409,0,0,'I','N','2526',0,23,'2025-09-30','2026-01-04',388,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:00:00','2025-09-30','','1','mo','N','09:00:00','04:36:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-10 19:36:40','mo','2025-10-14 13:01:01'),(410,0,0,'O','N','2526',371,0,'2025-10-10','2026-01-09',389,0,371,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:44:00','0000-00-00','','','','N','19:44:00','00:00:00','','','N','N',NULL,'O','N','Z91','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-10-10 19:44:32','','0000-00-00 00:00:00'),(411,0,0,'O','N','2526',372,0,'2025-10-10','2026-01-09',390,0,372,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:48:00','0000-00-00','','','','N','19:48:00','00:00:00','','','N','N',NULL,'O','N','Z92','','0000-00-00 00:00:00','4','19:48:10',0,'','drashti','2025-10-10 19:48:10','','0000-00-00 00:00:00'),(412,0,0,'O','N','2526',373,0,'2025-10-10','2026-01-09',391,0,373,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:01:00','0000-00-00','','','','N','20:01:00','00:00:00','','','N','Y',NULL,'O','N','Z93','','0000-00-00 00:00:00','4','20:01:29',0,'','drashti','2025-10-10 20:01:29','','0000-00-00 00:00:00'),(413,0,0,'I','N','2526',259,24,'2025-10-10','2026-01-09',276,0,259,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:30:00','2025-10-13','','1','mo','N','20:30:00','12:10:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-10 20:35:54','mo','2025-10-13 13:45:29'),(414,0,0,'I','N','2526',0,25,'2025-10-10','2026-01-09',392,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','03:45:00','2025-11-01','','1','mo','N','03:45:00','12:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-10 21:06:54','mo','2025-11-01 14:13:29'),(415,0,0,'I','N','2526',0,26,'2025-10-10','2026-01-09',393,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','2025-10-13','','1','mo','N','11:45:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-10 21:10:26','mo','2025-10-13 12:37:00'),(416,0,0,'I','N','2526',276,27,'2025-10-10','2026-01-09',292,0,276,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:40:00','2025-10-14','','1','mo','N','12:40:00','19:10:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-10 21:14:01','mo','2025-10-14 19:34:33'),(417,0,0,'I','N','2526',0,28,'2025-10-10','2026-01-09',394,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:30:00','2025-10-12','','4','mo','Y','14:30:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-10 21:53:07','mo','2025-10-12 12:06:24'),(418,0,0,'O','N','2526',374,0,'2025-10-11','2026-01-10',395,0,374,'N','','N','','','FC ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:57:00','0000-00-00','','','','N','08:57:00','12:03:18','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','08:57:27',0,'','priyanshi','2025-10-11 08:57:27','drarchit','2025-10-11 12:03:18'),(419,0,0,'O','N','2526',147,0,'2025-10-11','0000-00-00',158,0,147,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:15:00','0000-00-00','','','','N','09:15:00','12:44:30','','','N','Y',NULL,'O','O','Z02','','0000-00-00 00:00:00','3','12:42:29',0,'','reception','2025-10-11 09:15:03','drpratapsinh','2025-10-11 12:44:30'),(420,0,0,'O','N','2526',375,0,'2025-10-11','2026-01-10',396,0,375,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:17:00','0000-00-00','','','','N','09:17:00','11:44:24','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','5','09:17:10',0,'','reception','2025-10-11 09:17:10','drjayant','2025-10-11 11:44:24'),(421,0,0,'O','N','2526',376,0,'2025-10-11','2026-01-10',397,0,376,'N','','N','','','NV','','N','D06','','N',31,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:17:00','0000-00-00','','','','N','09:17:00','11:44:39','','N','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','2','09:17:31',0,'','priyanshi','2025-10-11 09:17:31','darshan','2025-10-11 11:44:39'),(422,0,0,'I','N','2526',305,29,'2025-10-11','2026-01-10',321,0,305,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:00:00','2025-10-11','','1','mo','N','09:00:00','19:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-11 09:25:22','vishal','2025-10-11 19:52:45'),(423,0,0,'O','N','2526',377,0,'2025-10-11','2026-01-10',398,0,377,'N','','N','','','','','N','D02','','N',32,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:29:00','0000-00-00','','','','N','09:29:00','19:56:21','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','3','12:42:29',0,'','priyanshi','2025-10-11 09:29:53','drpratapsinh','2025-10-11 19:56:21'),(424,0,0,'O','N','2526',378,0,'2025-10-11','2026-01-10',399,0,378,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:35:00','0000-00-00','','','','N','09:35:00','10:05:58','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','2','09:35:48',0,'','reception','2025-10-11 09:35:48','darshan','2025-10-11 10:05:58'),(425,0,0,'O','N','2526',379,0,'2025-10-11','2026-01-10',400,0,379,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:36:00','0000-00-00','','','','N','09:36:00','12:14:23','','N','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','2','09:36:43',0,'','janvi','2025-10-11 09:36:43','darshan','2025-10-11 12:14:23'),(426,0,0,'I','N','2526',221,30,'2025-10-11','2026-01-10',234,0,221,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:00:00','2025-10-12','','1','mo','N','08:00:00','13:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-11 09:39:44','mo','2025-10-12 13:26:41'),(427,0,0,'O','N','2526',380,0,'2025-10-11','2026-01-10',401,0,380,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:40:00','0000-00-00','','','','N','09:40:00','10:55:05','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','4','09:40:31',0,'','drashti','2025-10-11 09:40:30','drarchit','2025-10-11 10:55:05'),(428,0,0,'I','N','2526',211,31,'2025-10-11','2026-01-10',224,0,211,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:15:00','2025-10-12','','1','mo','N','09:15:00','09:40:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-11 09:45:46','vishal','2025-10-12 09:57:36'),(429,0,0,'O','N','2526',381,0,'2025-10-11','2026-01-10',402,0,381,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:47:00','0000-00-00','','','','N','09:47:00','10:25:20','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','2','09:47:26',0,'','reception','2025-10-11 09:47:26','darshan','2025-10-11 10:25:20'),(430,0,0,'I','N','2526',0,32,'2025-10-11','2026-01-10',403,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:00:00','2025-10-13','','1','mo','N','09:00:00','17:05:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-11 10:01:01','vishal','2025-10-13 17:10:33'),(431,0,0,'O','N','2526',382,0,'2025-10-11','2026-01-10',404,0,382,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:09:00','0000-00-00','','','','N','10:09:00','11:16:55','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','5','10:09:15',0,'','janvi','2025-10-11 10:09:15','drjayant','2025-10-11 11:16:55'),(432,0,0,'O','N','2526',383,0,'2025-10-11','2026-01-10',405,0,383,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:09:00','0000-00-00','','','','N','10:09:00','12:23:17','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','7','10:09:19',0,'','manshi','2025-10-11 10:09:19','drridham','2025-10-11 12:23:17'),(433,0,0,'O','N','2526',384,0,'2025-10-11','2026-01-10',406,0,384,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:13:00','0000-00-00','','','','N','10:13:00','10:30:49','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','10:13:19',0,'','drashti','2025-10-11 10:13:19','darshan','2025-10-11 10:30:49'),(434,0,0,'I','N','2526',270,33,'2025-10-11','2026-01-10',286,0,270,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-10-12','','1','mo','N','09:30:00','12:45:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-11 10:17:57','mo','2025-10-12 13:08:36'),(435,0,0,'O','N','2526',385,0,'2025-10-11','2026-01-10',407,0,385,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:23:00','0000-00-00','','','','N','10:23:00','12:45:03','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','5','10:24:00',0,'','drashti','2025-10-11 10:24:00','drjayant','2025-10-11 12:45:03'),(436,0,0,'O','N','2526',386,0,'2025-10-11','2026-01-10',408,0,386,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:26:00','0000-00-00','','','','N','10:26:00','19:26:25','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','3','12:42:29',0,'','janvi','2025-10-11 10:26:15','drpratapsinh','2025-10-11 19:26:25'),(437,0,0,'O','N','2526',387,0,'2025-10-11','2026-01-10',409,0,387,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','12:04:19','','N','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','10:28:25',0,'','reception','2025-10-11 10:28:25','darshan','2025-10-11 12:04:19'),(438,0,0,'O','N','2526',388,0,'2025-10-11','2026-01-10',410,0,388,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:31:00','0000-00-00','','','','N','10:31:00','10:48:40','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','2','10:31:05',0,'','reception','2025-10-11 10:31:05','darshan','2025-10-11 10:48:40'),(439,0,0,'O','N','2526',389,0,'2025-10-11','2026-01-10',411,0,389,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:32:00','0000-00-00','','','','N','10:32:00','12:03:27','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','4','10:32:47',0,'','drashti','2025-10-11 10:32:47','drarchit','2025-10-11 12:03:27'),(440,0,0,'O','N','2526',390,0,'2025-10-11','2026-01-10',412,0,390,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:36:00','0000-00-00','','','','N','10:36:00','10:56:45','','','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:36:43',0,'','reception','2025-10-11 10:36:43','darshan','2025-10-11 10:56:45'),(441,0,0,'O','N','2526',391,0,'2025-10-11','2026-01-10',413,0,391,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','11:04:53','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','2','10:43:54',0,'','reception','2025-10-11 10:43:54','darshan','2025-10-11 11:04:53'),(442,0,0,'O','N','2526',392,0,'2025-10-11','2026-01-10',414,0,392,'N','','N','','','NC','','N','D27','','N',33,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','12:12:15','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','4','10:43:57',0,'','drashti','2025-10-11 10:43:57','drarchit','2025-10-11 12:12:15'),(443,0,0,'O','N','2526',393,0,'2025-10-11','2026-01-10',415,0,393,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','11:12:11','','','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:46:34',0,'','reception','2025-10-11 10:46:33','darshan','2025-10-11 11:12:11'),(444,0,0,'O','N','2526',394,0,'2025-10-11','2026-01-10',416,0,394,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:00:00','0000-00-00','','','','N','11:00:00','12:32:10','','N','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','11:00:12',0,'','reception','2025-10-11 11:00:12','darshan','2025-10-11 12:32:10'),(445,0,0,'O','N','2526',395,0,'2025-10-11','2026-01-10',417,0,395,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','11:33:52','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','11:01:40',0,'','drashti','2025-10-11 11:01:40','darshan','2025-10-11 11:33:52'),(446,0,0,'O','N','2526',396,0,'2025-10-11','2026-01-10',418,0,396,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','12:50:25','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','4','11:04:21',0,'','drashti','2025-10-11 11:04:21','drarchit','2025-10-11 12:50:25'),(447,0,0,'O','N','2526',131,0,'2025-10-11','0000-00-00',142,0,131,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','11:33:22','','','N','Y',NULL,'O','O','Z20','','0000-00-00 00:00:00','5','11:12:39',0,'','janvi','2025-10-11 11:12:38','drjayant','2025-10-11 11:33:22'),(448,0,0,'O','N','2526',397,0,'2025-10-11','2026-01-10',419,0,397,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','11:44:27','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','2','11:13:35',0,'','reception','2025-10-11 11:13:35','darshan','2025-10-11 11:44:27'),(449,0,0,'O','N','2526',398,0,'2025-10-11','2026-01-10',420,0,398,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','19:56:32','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','3','12:42:29',0,'','janvi','2025-10-11 11:14:30','drpratapsinh','2025-10-11 19:56:32'),(450,0,0,'O','N','2526',399,0,'2025-10-11','2026-01-10',421,0,399,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','12:05:20','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','4','11:15:49',0,'','drashti','2025-10-11 11:15:49','drarchit','2025-10-11 12:05:20'),(451,0,0,'O','N','2526',400,0,'2025-10-11','2026-01-10',422,0,400,'N','','N','','','REPORT','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','11:35:59','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','4','11:16:45',0,'','janvi','2025-10-11 11:16:45','drarchit','2025-10-11 11:35:59'),(452,0,0,'O','N','2526',401,0,'2025-10-11','2026-01-10',423,0,401,'N','','N','','','NV','','N','D06','','N',34,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','12:42:17','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','2','11:16:53',0,'','reception','2025-10-11 11:16:53','darshan','2025-10-11 12:42:17'),(453,0,0,'O','N','2526',402,0,'2025-10-11','2026-01-10',424,0,402,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','12:47:31','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','11:17:47',0,'','reception','2025-10-11 11:17:47','darshan','2025-10-11 12:47:31'),(454,0,0,'O','N','2526',403,0,'2025-10-11','2026-01-10',425,0,403,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','11:43:28','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','5','11:18:42',0,'','janvi','2025-10-11 11:18:42','drjayant','2025-10-11 11:43:28'),(455,0,0,'O','N','2526',404,0,'2025-10-11','2026-01-10',426,0,404,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','13:00:16','','N','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','2','11:19:31',0,'','reception','2025-10-11 11:19:31','darshan','2025-10-11 13:00:16'),(456,0,0,'O','N','2526',405,0,'2025-10-11','2026-01-10',427,0,405,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','11:47:59','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','4','11:19:38',0,'','drashti','2025-10-11 11:19:38','drarchit','2025-10-11 11:47:59'),(457,0,0,'O','N','2526',242,0,'2025-10-11','0000-00-00',257,0,242,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','11:43:53','','','N','Y',NULL,'O','O','Z27','','0000-00-00 00:00:00','5','11:19:39',0,'','janvi','2025-10-11 11:19:39','drjayant','2025-10-11 11:43:53'),(458,0,0,'O','N','2526',406,0,'2025-10-11','2026-01-10',428,0,406,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:22:00','0000-00-00','','','','N','11:22:00','20:01:23','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','3','12:42:29',0,'','janvi','2025-10-11 11:22:31','drpratapsinh','2025-10-11 20:01:23'),(459,0,0,'O','N','2526',407,0,'2025-10-11','2026-01-10',429,0,407,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','12:03:54','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','4','11:23:23',0,'','drashti','2025-10-11 11:23:23','drarchit','2025-10-11 12:03:54'),(460,0,0,'O','N','2526',408,0,'2025-10-11','2026-01-10',430,0,408,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','11:34:08','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','6','11:25:23',0,'','manshi','2025-10-11 11:25:23','drsagar','2025-10-11 11:34:08'),(461,0,0,'O','N','2526',409,0,'2025-10-11','2026-01-10',431,0,409,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','12:03:11','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','4','11:25:32',0,'','janvi','2025-10-11 11:25:32','drarchit','2025-10-11 12:03:10'),(462,0,0,'O','N','2526',21,0,'2025-10-11','0000-00-00',22,0,21,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','12:03:02','','','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','4','11:26:36',0,'','reception','2025-10-11 11:26:36','drarchit','2025-10-11 12:03:02'),(463,0,0,'O','N','2526',410,0,'2025-10-11','2026-01-10',432,0,410,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','12:23:56','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','4','11:30:36',0,'','drashti','2025-10-11 11:30:35','drarchit','2025-10-11 12:23:56'),(464,0,0,'O','N','2526',411,0,'2025-10-11','2026-01-10',433,0,411,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','12:44:49','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','3','12:42:29',0,'','drashti','2025-10-11 11:35:06','drpratapsinh','2025-10-11 12:44:49'),(465,0,0,'O','N','2526',412,0,'2025-10-11','2026-01-10',434,0,412,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','12:07:50','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','4','11:35:43',0,'','janvi','2025-10-11 11:35:43','drarchit','2025-10-11 12:07:50'),(466,0,0,'O','N','2526',413,0,'2025-10-11','2026-01-10',435,0,413,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:37:00','0000-00-00','','','','N','11:37:00','12:08:01','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','4','11:37:26',0,'','janvi','2025-10-11 11:37:26','drarchit','2025-10-11 12:08:01'),(467,0,0,'O','N','2526',414,0,'2025-10-11','2026-01-10',436,0,414,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','12:42:16','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','6','11:39:57',0,'','manshi','2025-10-11 11:39:57','drsagar','2025-10-11 12:42:16'),(468,0,0,'O','N','2526',415,0,'2025-10-11','2026-01-10',437,0,415,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','12:16:36','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','4','11:40:47',0,'','drashti','2025-10-11 11:40:47','drarchit','2025-10-11 12:16:36'),(469,0,0,'O','N','2526',416,0,'2025-10-11','2026-01-10',438,0,416,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','12:26:20','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:44:46',0,'','reception','2025-10-11 11:44:46','darshan','2025-10-11 12:26:20'),(470,0,0,'I','N','2526',131,34,'2025-10-11','2026-01-10',142,0,131,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','2025-10-16','','1','mo','N','11:40:00','11:35:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-11 11:45:07','mo','2025-10-16 12:16:12'),(471,0,0,'O','N','2526',417,0,'2025-10-11','2026-01-10',439,0,417,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','12:31:31','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','11:47:12',0,'','reception','2025-10-11 11:47:12','darshan','2025-10-11 12:31:31'),(472,0,0,'O','N','2526',418,0,'2025-10-11','2026-01-10',440,0,418,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','12:25:41','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','4','11:47:54',0,'','drashti','2025-10-11 11:47:54','drarchit','2025-10-11 12:25:41'),(473,0,0,'O','N','2526',419,0,'2025-10-11','2026-01-10',441,0,419,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','12:26:40','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','4','11:52:13',0,'','drashti','2025-10-11 11:52:13','drarchit','2025-10-11 12:26:40'),(474,0,0,'O','N','2526',420,0,'2025-10-11','2026-01-10',442,0,420,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','12:37:40','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','4','11:56:45',0,'','drashti','2025-10-11 11:56:45','drarchit','2025-10-11 12:37:40'),(475,0,0,'O','N','2526',43,0,'2025-10-11','0000-00-00',47,0,43,'N','','N','','','REPORT','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:57:00','0000-00-00','','','','N','11:57:00','12:48:06','','','N','Y',NULL,'O','O','Z41','','0000-00-00 00:00:00','4','12:03:02',0,'','janvi','2025-10-11 11:57:32','drarchit','2025-10-11 12:48:06'),(476,0,0,'O','N','2526',373,0,'2025-10-11','0000-00-00',391,0,373,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:57:00','0000-00-00','','','','N','11:57:00','12:11:43','','Y','N','Y',NULL,'O','O','H05','','0000-00-00 00:00:00','4','12:03:02',0,'','reception','2025-10-11 11:57:45','drarchit','2025-10-11 12:45:31'),(477,0,0,'I','N','2526',21,35,'2025-10-11','2026-01-10',22,0,21,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','2025-10-13','','1','mo','N','12:00:00','22:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-11 12:02:49','mo','2025-10-13 22:53:20'),(478,0,0,'O','N','2526',421,0,'2025-10-11','2026-01-10',443,0,421,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:05:00','0000-00-00','','','','N','12:05:00','12:47:15','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','12:05:06',0,'','reception','2025-10-11 12:05:06','darshan','2025-10-11 12:47:15'),(479,0,0,'O','N','2526',422,0,'2025-10-11','2026-01-10',444,0,422,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:11:00','0000-00-00','','','','N','12:11:00','12:23:29','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','7','12:11:03',0,'','manshi','2025-10-11 12:11:02','drridham','2025-10-11 12:23:29'),(480,0,0,'O','N','2526',423,0,'2025-10-11','2026-01-10',445,0,423,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:13:00','0000-00-00','','','','N','12:13:00','13:24:51','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','4','12:13:13',0,'','drashti','2025-10-11 12:13:13','drarchit','2025-10-11 13:24:51'),(481,0,0,'O','N','2526',424,0,'2025-10-11','2026-01-10',446,0,424,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:19:00','0000-00-00','','','','N','12:19:00','13:00:02','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','12:19:59',0,'','reception','2025-10-11 12:19:59','darshan','2025-10-11 13:00:02'),(482,0,0,'O','N','2526',425,0,'2025-10-11','2026-01-10',447,0,425,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','13:10:41','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','4','12:21:24',0,'','janvi','2025-10-11 12:21:24','drarchit','2025-10-11 13:10:41'),(483,0,0,'O','N','2526',426,0,'2025-10-11','2026-01-10',448,0,426,'N','','N','','','','','N','D02','','N',35,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:42:00','0000-00-00','','','','N','12:42:00','20:01:08','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','3','12:42:29',0,'','drashti','2025-10-11 12:42:29','drpratapsinh','2025-10-11 20:01:08'),(484,0,0,'O','N','2526',427,0,'2025-10-11','2026-01-10',449,0,427,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:50:00','0000-00-00','','','','N','12:50:00','00:00:00','','','N','N',NULL,'O','N','Z46','','0000-00-00 00:00:00','4','12:50:38',0,'','drashti','2025-10-11 12:50:38','','0000-00-00 00:00:00'),(485,0,0,'O','N','2526',428,0,'2025-10-11','2026-01-10',450,0,428,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:55:00','0000-00-00','','','','N','12:55:00','13:10:34','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','5','12:56:13',0,'','janvi','2025-10-11 12:56:13','drjayant','2025-10-11 13:10:34'),(486,0,0,'O','N','2526',429,0,'2025-10-11','2026-01-10',451,0,429,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:10:00','0000-00-00','','','','N','13:10:00','13:18:25','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','6','13:10:55',0,'','manshi','2025-10-11 13:10:55','drsagar','2025-10-11 13:18:25'),(487,0,0,'I','N','2526',60,36,'2025-10-11','2026-01-10',71,0,60,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:10:00','2025-10-15','','1','mo','N','14:10:00','11:25:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-11 14:11:10','mo','2025-10-15 11:52:18'),(488,0,0,'I','N','2526',407,37,'2025-10-11','2026-01-10',429,0,407,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:30:00','2025-10-11','','1','mo','N','13:30:00','11:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-11 14:19:58','mo','2025-10-11 22:28:56'),(489,0,0,'I','N','2526',0,38,'2025-10-11','2026-01-10',452,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:00:00','2025-10-25','','1','mo','N','17:00:00','19:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-11 17:33:27','mo','2025-10-25 21:21:49'),(490,0,0,'O','N','2526',430,0,'2025-10-11','2026-01-10',453,0,430,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','19:22:35','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','3','17:42:29',0,'','drashti','2025-10-11 17:42:29','drpratapsinh','2025-10-11 19:22:35'),(491,0,0,'O','N','2526',431,0,'2025-10-11','2026-01-10',454,0,431,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','20:00:34','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','3','17:51:15',0,'','reception','2025-10-11 17:51:15','drpratapsinh','2025-10-11 20:00:34'),(492,0,0,'O','N','2526',432,0,'2025-10-11','2026-01-10',455,0,432,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:53:00','0000-00-00','','','','N','17:53:00','19:30:13','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','3','17:53:33',0,'','urvashi','2025-10-11 17:53:33','drpratapsinh','2025-10-11 19:30:13'),(493,0,0,'O','N','2526',433,0,'2025-10-11','2026-01-10',456,0,433,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:08:00','0000-00-00','','','','N','18:08:00','18:23:30','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','6','18:08:11',0,'','manshi','2025-10-11 18:08:11','drsagar','2025-10-11 18:23:30'),(494,0,0,'O','N','2526',118,0,'2025-10-11','0000-00-00',129,0,118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','19:55:22','','','N','Y',NULL,'O','O','Z53','','0000-00-00 00:00:00','3','18:14:36',0,'','urvashi','2025-10-11 18:14:36','drpratapsinh','2025-10-11 19:55:22'),(495,0,0,'O','N','2526',434,0,'2025-10-11','2026-01-10',457,0,434,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','18:26:40','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','6','18:16:19',0,'','manshi','2025-10-11 18:16:19','drsagar','2025-10-11 18:26:40'),(496,0,0,'O','N','2526',54,0,'2025-10-11','0000-00-00',64,0,54,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','20:00:22','','','N','Y',NULL,'O','O','Z55','','0000-00-00 00:00:00','3','18:18:18',0,'','reception','2025-10-11 18:18:18','drpratapsinh','2025-10-11 20:00:22'),(497,0,0,'O','N','2526',435,0,'2025-10-11','2026-01-10',458,0,435,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','18:36:47','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','6','18:21:19',0,'','manshi','2025-10-11 18:21:19','drsagar','2025-10-11 18:36:47'),(498,0,0,'O','N','2526',436,0,'2025-10-11','2026-01-10',459,0,436,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','19:33:45','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','3','18:24:08',0,'','drashti','2025-10-11 18:24:08','drpratapsinh','2025-10-11 19:33:45'),(499,0,0,'O','N','2526',437,0,'2025-10-11','2026-01-10',460,0,437,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','19:45:28','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','3','18:36:56',0,'','drashti','2025-10-11 18:36:56','drpratapsinh','2025-10-11 19:45:28'),(500,0,0,'O','N','2526',438,0,'2025-10-11','2026-01-10',461,0,438,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:39:00','0000-00-00','','','','N','18:39:00','19:59:47','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','3','18:39:51',0,'','urvashi','2025-10-11 18:39:51','drpratapsinh','2025-10-11 19:59:47'),(501,0,0,'O','N','2526',140,0,'2025-10-11','0000-00-00',151,0,140,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:41:00','0000-00-00','','','','N','18:41:00','19:48:14','','','N','Y',NULL,'O','O','Z60','','0000-00-00 00:00:00','3','18:41:27',0,'','urvashi','2025-10-11 18:41:27','drpratapsinh','2025-10-11 19:48:14'),(502,0,0,'O','N','2526',439,0,'2025-10-11','2026-01-10',462,0,439,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:45:00','0000-00-00','','','','N','18:45:00','19:47:57','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','3','18:45:46',0,'','drashti','2025-10-11 18:45:46','drpratapsinh','2025-10-11 19:47:57'),(503,0,0,'O','N','2526',303,0,'2025-10-11','0000-00-00',319,0,303,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:47:00','0000-00-00','','','','N','18:47:00','19:59:37','','','N','Y',NULL,'O','O','Z62','','0000-00-00 00:00:00','3','19:22:35',0,'','urvashi','2025-10-11 18:47:44','drpratapsinh','2025-10-11 19:59:37'),(504,0,0,'O','N','2526',440,0,'2025-10-11','2026-01-10',463,0,440,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:14:00','0000-00-00','','','','N','19:14:00','19:50:37','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','3','19:22:35',0,'','drashti','2025-10-11 19:14:50','drpratapsinh','2025-10-11 19:50:37'),(505,0,0,'I','N','2526',0,39,'2025-10-11','2026-01-10',464,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:15:00','2025-10-13','','1','mo','N','19:15:00','22:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-11 19:21:56','mo','2025-10-30 11:39:13'),(506,0,0,'I','N','2526',0,40,'2025-10-11','2026-01-10',465,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','22:00:00','2025-10-13','','1','mo','N','22:00:00','20:05:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-11 22:22:07','riya','2025-10-13 20:12:11'),(507,0,0,'O','N','2526',147,0,'2025-10-12','0000-00-00',158,0,147,'N','','N','','','INJECTION','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:18:00','0000-00-00','','','','N','09:18:00','00:00:00','','','N','N',NULL,'O','O','Z01','','0000-00-00 00:00:00','3','09:18:49',0,'','janvi','2025-10-12 09:18:49','','0000-00-00 00:00:00'),(508,0,0,'O','N','2526',441,0,'2025-10-12','2026-01-11',466,0,441,'N','','N','','','DRESSING','Y','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:21:00','0000-00-00','','','','N','09:21:00','00:00:00','','','N','N',NULL,'O','N','Z02','','0000-00-00 00:00:00','7','09:21:13',0,'','janvi','2025-10-12 09:21:13','','0000-00-00 00:00:00'),(509,0,0,'I','N','2526',0,41,'2025-10-12','2026-01-11',467,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:00:00','2025-10-14','','1','mo','N','11:00:00','12:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-12 11:06:05','mo','2025-10-14 12:28:34'),(510,0,0,'I','N','2526',40,42,'2025-10-12','2026-01-11',44,0,40,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:45:00','2025-10-12','','1','mo','N','12:45:00','21:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-12 12:54:14','mo','2025-10-12 21:53:47'),(511,0,0,'O','N','2526',442,0,'2025-10-13','2026-01-12',468,0,442,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:45:00','0000-00-00','','','','N','08:45:00','13:17:29','','N','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','09:11:39',0,'','shweta','2025-10-13 09:11:39','drarchit','2025-10-13 13:17:29'),(512,0,0,'O','N','2526',443,0,'2025-10-13','2026-01-12',469,0,443,'N','','N','','','ER','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:47:00','0000-00-00','','','','N','08:47:00','14:31:40','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','2','09:14:44',0,'','shweta','2025-10-13 09:14:44','darshan','2025-10-13 14:31:40'),(513,0,0,'O','N','2526',444,0,'2025-10-13','2026-01-12',470,0,444,'N','','N','','','ER','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:49:00','0000-00-00','','','','N','08:49:00','12:00:23','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','6','09:16:11',0,'','shweta','2025-10-13 09:16:11','drsagar','2025-10-13 12:00:23'),(514,0,0,'O','N','2526',445,0,'2025-10-13','2026-01-12',471,0,445,'N','','N','','','NV','','N','D06','','N',43,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:18:00','0000-00-00','','','','N','09:18:00','13:54:52','','N','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','2','09:18:42',0,'','janvi','2025-10-13 09:18:42','darshan','2025-10-13 13:54:52'),(515,0,0,'O','N','2526',446,0,'2025-10-13','2026-01-12',472,0,446,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:18:00','0000-00-00','','','','N','09:18:00','13:55:25','','N','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','2','09:18:52',0,'','janvi','2025-10-13 09:18:52','darshan','2025-10-13 13:55:25'),(516,0,0,'O','N','2526',140,0,'2025-10-13','0000-00-00',151,0,140,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:52:00','0000-00-00','','','','N','08:52:00','10:43:04','','','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','3','09:20:21',0,'','shweta','2025-10-13 09:20:21','drpratapsinh','2025-10-13 10:43:04'),(517,0,0,'O','N','2526',447,0,'2025-10-13','2026-01-12',473,0,447,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:20:00','0000-00-00','','','','N','09:20:00','11:41:54','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','2','09:20:30',0,'','reception','2025-10-13 09:20:30','darshan','2025-10-13 11:41:54'),(518,0,0,'O','N','2526',303,0,'2025-10-13','0000-00-00',319,0,303,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:53:00','0000-00-00','','','','N','08:53:00','10:43:15','','','N','Y',NULL,'O','O','Z08','','0000-00-00 00:00:00','3','09:21:35',0,'','shweta','2025-10-13 09:21:35','drpratapsinh','2025-10-13 10:43:15'),(519,0,0,'O','N','2526',118,0,'2025-10-13','0000-00-00',129,0,118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:43:00','0000-00-00','','','','N','08:43:00','18:51:50','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','3','09:22:29',0,'','shweta','2025-10-13 09:22:29','drpratapsinh','2025-10-13 18:51:50'),(520,0,0,'O','N','2526',448,0,'2025-10-13','2026-01-12',474,0,448,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:56:00','0000-00-00','','','','N','08:56:00','18:54:45','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','3','09:23:57',0,'','shweta','2025-10-13 09:23:57','drpratapsinh','2025-10-13 18:54:45'),(521,0,0,'O','N','2526',449,0,'2025-10-13','2026-01-12',475,0,449,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:24:00','0000-00-00','','','','N','09:24:00','14:54:32','','N','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','2','09:24:41',0,'','janvi','2025-10-13 09:24:41','darshan','2025-10-13 14:54:32'),(522,0,0,'O','N','2526',450,0,'2025-10-13','2026-01-12',476,0,450,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:24:00','0000-00-00','','','','N','09:24:00','10:55:56','','','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','09:24:44',0,'','reception','2025-10-13 09:24:44','darshan','2025-10-13 10:55:56'),(523,0,0,'O','N','2526',451,0,'2025-10-13','2026-01-12',477,0,451,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:59:00','0000-00-00','','','','N','08:59:00','10:49:03','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','3','09:26:05',0,'','shweta','2025-10-13 09:26:05','drpratapsinh','2025-10-13 10:49:03'),(524,0,0,'O','N','2526',452,0,'2025-10-13','2026-01-12',478,0,452,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:27:00','0000-00-00','','','','N','09:27:00','20:06:00','','N','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','4','09:27:32',0,'','janvi','2025-10-13 09:27:32','drarchit','2025-10-13 20:06:00'),(525,0,0,'O','N','2526',453,0,'2025-10-13','2026-01-12',479,0,453,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:28:00','0000-00-00','','','','N','09:28:00','15:14:36','','N','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','2','09:28:58',0,'','reception','2025-10-13 09:28:58','darshan','2025-10-13 15:14:36'),(526,0,0,'O','N','2526',454,0,'2025-10-13','2026-01-12',480,0,454,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:38:00','0000-00-00','','','','N','09:38:00','11:25:18','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','09:38:06',0,'','reception','2025-10-13 09:38:06','darshan','2025-10-13 11:25:18'),(527,0,0,'I','N','2526',370,43,'2025-10-13','2026-01-12',387,0,370,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-10-13','','1','mo','N','09:30:00','17:05:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-13 09:38:44','mo','2025-10-13 17:46:53'),(528,0,0,'O','N','2526',455,0,'2025-10-13','2026-01-12',481,0,455,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:46:00','0000-00-00','','','','N','09:46:00','12:28:17','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','09:46:39',0,'','reception','2025-10-13 09:46:39','darshan','2025-10-13 12:28:17'),(529,0,0,'O','N','2526',456,0,'2025-10-13','2026-01-12',482,0,456,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:53:00','0000-00-00','','','','N','09:53:00','12:37:47','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','2','09:53:29',0,'','reception','2025-10-13 09:53:29','darshan','2025-10-13 12:37:47'),(530,0,0,'O','N','2526',457,0,'2025-10-13','2026-01-12',483,0,457,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:54:00','0000-00-00','','','','N','09:54:00','11:45:48','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','09:54:12',0,'','janvi','2025-10-13 09:54:12','darshan','2025-10-13 11:45:48'),(531,0,0,'O','N','2526',458,0,'2025-10-13','2026-01-12',484,0,458,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:57:00','0000-00-00','','','','N','09:57:00','10:58:57','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','09:57:23',0,'','reception','2025-10-13 09:57:23','darshan','2025-10-13 10:58:57'),(532,0,0,'O','N','2526',459,0,'2025-10-13','2026-01-12',485,0,459,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:01:00','0000-00-00','','','','N','10:01:00','13:14:24','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','2','10:01:08',0,'','reception','2025-10-13 10:01:07','darshan','2025-10-13 13:14:24'),(533,0,0,'O','N','2526',460,0,'2025-10-13','2026-01-12',486,0,460,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:05:00','0000-00-00','','','','N','10:05:00','12:58:23','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','10:05:44',0,'','reception','2025-10-13 10:05:44','darshan','2025-10-13 12:58:23'),(534,0,0,'O','N','2526',461,0,'2025-10-13','2026-01-12',487,0,461,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:10:00','0000-00-00','','','','N','10:10:00','14:35:08','','N','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','2','10:10:13',0,'','reception','2025-10-13 10:10:13','darshan','2025-10-13 14:35:08'),(535,0,0,'O','N','2526',462,0,'2025-10-13','2026-01-12',488,0,462,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:13:00','0000-00-00','','','','N','10:13:00','12:46:51','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','2','10:55:56',0,'','reception','2025-10-13 10:13:44','darshan','2025-10-13 12:46:51'),(536,0,0,'O','N','2526',463,0,'2025-10-13','2026-01-12',489,0,463,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:13:00','0000-00-00','','','','N','10:13:00','10:35:28','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','3','10:13:48',0,'','shweta','2025-10-13 10:13:48','drpratapsinh','2025-10-13 10:35:28'),(537,0,0,'O','N','2526',464,0,'2025-10-13','2026-01-12',490,0,464,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:14:00','0000-00-00','','','','N','10:14:00','11:30:46','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','7','10:14:45',0,'','manshi','2025-10-13 10:14:45','drridham','2025-10-13 11:30:46'),(538,0,0,'O','N','2526',465,0,'2025-10-13','2026-01-12',491,0,465,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','0000-00-00','','','','N','10:15:00','11:04:03','','','N','Y',NULL,'O','N','E02','','0000-00-00 00:00:00','2','10:55:56',0,'','reception','2025-10-13 10:15:20','darshan','2025-10-13 11:04:03'),(539,0,0,'O','N','2526',466,0,'2025-10-13','2026-01-12',492,0,466,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','14:18:13','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','2','10:55:56',0,'','janvi','2025-10-13 10:16:30','darshan','2025-10-13 14:18:13'),(540,0,0,'O','N','2526',467,0,'2025-10-13','2026-01-12',493,0,467,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','13:26:00','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','2','10:55:56',0,'','shweta','2025-10-13 10:16:45','darshan','2025-10-13 13:26:00'),(541,0,0,'O','N','2526',147,0,'2025-10-13','0000-00-00',158,0,147,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:18:00','0000-00-00','','','','N','10:18:00','10:37:49','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','3','10:18:46',0,'','reception','2025-10-13 10:18:46','drpratapsinh','2025-10-13 10:37:49'),(542,0,0,'O','N','2526',468,0,'2025-10-13','2026-01-12',494,0,468,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:27:00','0000-00-00','','','','N','10:27:00','11:31:12','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','7','10:27:29',0,'','manshi','2025-10-13 10:27:29','drridham','2025-10-13 11:31:12'),(543,0,0,'O','N','2526',469,0,'2025-10-13','2026-01-12',495,0,469,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:27:00','0000-00-00','','','','N','10:27:00','15:03:47','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:55:56',0,'','reception','2025-10-13 10:27:32','darshan','2025-10-13 15:03:47'),(544,0,0,'O','N','2526',470,0,'2025-10-13','2026-01-12',496,0,470,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:30:00','0000-00-00','','','','N','10:30:00','14:24:25','','N','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:55:56',0,'','drashti','2025-10-13 10:30:25','darshan','2025-10-13 14:24:25'),(545,0,0,'O','N','2526',471,0,'2025-10-13','2026-01-12',497,0,471,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:32:00','0000-00-00','','','','N','10:32:00','14:11:07','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','2','10:55:56',0,'','reception','2025-10-13 10:32:13','darshan','2025-10-13 14:11:07'),(546,0,0,'O','N','2526',472,0,'2025-10-13','2026-01-12',498,0,472,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','15:28:50','','N','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','2','10:55:56',0,'','drashti','2025-10-13 10:33:18','darshan','2025-10-13 15:28:50'),(547,0,0,'O','N','2526',473,0,'2025-10-13','2026-01-12',499,0,473,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','14:05:21','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','2','10:55:56',0,'','reception','2025-10-13 10:38:44','darshan','2025-10-13 14:05:21'),(548,0,0,'O','N','2526',440,0,'2025-10-13','0000-00-00',463,0,440,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','18:54:57','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','3','10:46:42',0,'','janvi','2025-10-13 10:46:42','drpratapsinh','2025-10-13 18:54:57'),(549,0,0,'O','N','2526',474,0,'2025-10-13','2026-01-12',500,0,474,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','18:19:33','','N','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','4','10:51:55',0,'','drashti','2025-10-13 10:51:55','drarchit','2025-10-13 18:19:33'),(550,0,0,'O','N','2526',475,0,'2025-10-13','2026-01-12',501,0,475,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','13:23:09','','','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','13:14:32',0,'','reception','2025-10-13 10:58:23','darshan','2025-10-13 13:23:09'),(551,0,0,'O','N','2526',476,0,'2025-10-13','2026-01-12',502,0,476,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','18:55:14','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','3','10:58:58',0,'','janvi','2025-10-13 10:58:58','drpratapsinh','2025-10-13 18:55:14'),(552,0,0,'O','N','2526',477,0,'2025-10-13','2026-01-12',503,0,477,'N','','N','','','NV','','N','D06','','N',7,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','14:21:13','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','2','13:14:32',0,'','drashti','2025-10-13 10:59:55','darshan','2025-10-13 14:21:13'),(553,0,0,'O','N','2526',478,0,'2025-10-13','2026-01-12',504,0,478,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:00:00','0000-00-00','','','','N','11:00:00','11:30:59','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','7','11:00:45',0,'','manshi','2025-10-13 11:00:45','drridham','2025-10-13 11:30:59'),(554,0,0,'O','N','2526',479,0,'2025-10-13','2026-01-12',505,0,479,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','11:53:31','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','6','11:04:08',0,'','manshi','2025-10-13 11:04:08','drsagar','2025-10-13 11:53:31'),(555,0,0,'O','N','2526',480,0,'2025-10-13','2026-01-12',506,0,480,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','18:55:27','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','3','11:06:53',0,'','janvi','2025-10-13 11:06:53','drpratapsinh','2025-10-13 18:55:27'),(556,0,0,'O','N','2526',481,0,'2025-10-13','2026-01-12',507,0,481,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','13:17:40','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','4','11:13:30',0,'','drashti','2025-10-13 11:13:30','drarchit','2025-10-13 13:17:40'),(557,0,0,'O','N','2526',482,0,'2025-10-13','2026-01-12',508,0,482,'N','','N','','','','','N','D02','','N',22,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','18:56:01','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','3','11:14:22',0,'','janvi','2025-10-13 11:14:22','drpratapsinh','2025-10-13 18:56:01'),(558,0,0,'O','N','2526',483,0,'2025-10-13','2026-01-12',509,0,483,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','11:26:31','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','5','11:15:13',0,'','reception','2025-10-13 11:15:13','drjayant','2025-10-13 11:26:31'),(559,0,0,'O','N','2526',484,0,'2025-10-13','2026-01-12',510,0,484,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','11:32:36','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','7','11:15:52',0,'','manshi','2025-10-13 11:15:52','drridham','2025-10-13 11:32:36'),(560,0,0,'O','N','2526',485,0,'2025-10-13','2026-01-12',511,0,485,'N','','N','','','','','N','D02','','N',29,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','18:56:38','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','3','11:21:13',0,'','janvi','2025-10-13 11:21:13','drpratapsinh','2025-10-13 18:56:38'),(561,0,0,'O','N','2526',486,0,'2025-10-13','2026-01-12',510,0,486,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','11:42:35','','','N','Y',NULL,'O','N','Y01','','0000-00-00 00:00:00','6','11:21:31',0,'','manshi','2025-10-13 11:21:31','drsagar','2025-10-13 11:42:35'),(562,0,0,'O','N','2526',406,0,'2025-10-13','0000-00-00',428,0,406,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','18:56:55','','','N','Y',NULL,'O','O','Z42','','0000-00-00 00:00:00','3','11:23:08',0,'','janvi','2025-10-13 11:23:08','drpratapsinh','2025-10-13 18:56:55'),(563,0,0,'O','N','2526',487,0,'2025-10-13','2026-01-12',512,0,487,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','13:17:50','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','4','11:25:21',0,'','drashti','2025-10-13 11:25:21','drarchit','2025-10-13 13:17:50'),(564,0,0,'O','N','2526',67,0,'2025-10-13','0000-00-00',78,0,67,'N','','N','','','FOLLOWUP C','','N','D27','','N',11,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','13:17:11','','N','N','Y',NULL,'O','O','Z44','','0000-00-00 00:00:00','4','11:27:50',0,'','drashti','2025-10-13 11:27:50','drarchit','2025-10-13 13:17:11'),(565,0,0,'O','N','2526',488,0,'2025-10-13','2026-01-12',513,0,488,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','13:20:34','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','13:14:32',0,'','reception','2025-10-13 11:28:20','darshan','2025-10-13 13:20:34'),(566,0,0,'O','N','2526',489,0,'2025-10-13','2026-01-12',514,0,489,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','11:31:24','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','7','11:29:16',0,'','manshi','2025-10-13 11:29:16','drridham','2025-10-13 11:31:24'),(567,0,0,'O','N','2526',490,0,'2025-10-13','2026-01-12',515,0,490,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','11:52:43','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','5','11:32:43',0,'','janvi','2025-10-13 11:32:43','drjayant','2025-10-13 11:52:43'),(568,0,0,'O','N','2526',491,0,'2025-10-13','2026-01-12',516,0,491,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','11:59:40','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','6','11:33:31',0,'','manshi','2025-10-13 11:33:31','drsagar','2025-10-13 11:59:40'),(569,0,0,'O','N','2526',492,0,'2025-10-13','2026-01-12',517,0,492,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','19:00:54','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','4','11:33:45',0,'','drashti','2025-10-13 11:33:45','drarchit','2025-10-13 19:00:54'),(570,0,0,'O','N','2526',493,0,'2025-10-13','2026-01-12',518,0,493,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:37:00','0000-00-00','','','','N','11:37:00','18:19:20','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','4','11:37:20',0,'','janvi','2025-10-13 11:37:20','drarchit','2025-10-13 18:19:20'),(571,0,0,'O','N','2526',494,0,'2025-10-13','2026-01-12',519,0,494,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','12:30:03','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','11:38:55',0,'','drashti','2025-10-13 11:38:55','drarchit','2025-10-13 12:30:03'),(572,0,0,'O','N','2526',495,0,'2025-10-13','2026-01-12',520,0,495,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','18:19:08','','N','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','4','11:43:32',0,'','janvi','2025-10-13 11:43:32','drarchit','2025-10-13 18:19:08'),(573,0,0,'O','N','2526',496,0,'2025-10-13','2026-01-12',521,0,496,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','13:18:03','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','2','13:14:32',0,'','reception','2025-10-13 11:45:22','darshan','2025-10-13 13:18:03'),(574,0,0,'I','N','2526',481,44,'2025-10-13','2026-01-12',507,0,481,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','2025-10-16','','1','mo','N','11:30:00','09:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-10-13 11:46:29','mo','2025-10-16 11:25:20'),(575,0,0,'O','N','2526',497,0,'2025-10-13','2026-01-12',522,0,497,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','13:15:52','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','4','11:47:39',0,'','drashti','2025-10-13 11:47:39','drarchit','2025-10-13 13:15:52'),(576,0,0,'O','N','2526',498,0,'2025-10-13','2026-01-12',523,0,498,'N','','N','','','','','N','D03','','N',44,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','12:07:58','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','6','11:47:51',0,'','manshi','2025-10-13 11:47:50','drsagar','2025-10-13 12:07:58'),(577,0,0,'O','N','2526',499,0,'2025-10-13','2026-01-12',524,0,499,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','18:57:14','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','3','11:50:41',0,'','reception','2025-10-13 11:50:41','drpratapsinh','2025-10-13 18:57:14'),(578,0,0,'O','N','2526',500,0,'2025-10-13','2026-01-12',525,0,500,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','13:28:50','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','13:14:32',0,'','janvi','2025-10-13 11:51:13','darshan','2025-10-13 13:28:50'),(579,0,0,'O','N','2526',501,0,'2025-10-13','2026-01-12',526,0,501,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:53:00','0000-00-00','','','','N','11:53:00','13:16:01','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','4','11:53:46',0,'','drashti','2025-10-13 11:53:46','drarchit','2025-10-13 13:16:01'),(580,0,0,'O','N','2526',502,0,'2025-10-13','2026-01-12',527,0,502,'N','','N','','','','','N','D02','','N',45,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','18:57:38','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','3','11:54:39',0,'','janvi','2025-10-13 11:54:39','drpratapsinh','2025-10-13 18:57:38'),(581,0,0,'O','N','2526',503,0,'2025-10-13','2026-01-12',528,0,503,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:55:00','0000-00-00','','','','N','11:55:00','12:44:41','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','7','11:55:25',0,'','manshi','2025-10-13 11:55:25','drridham','2025-10-13 12:44:41'),(582,0,0,'O','N','2526',504,0,'2025-10-13','2026-01-12',529,0,504,'N','','N','','','NV','','N','D06','','N',21,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:07:00','0000-00-00','','','','N','12:07:00','14:31:26','','Y','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','2','13:14:32',0,'','reception','2025-10-13 12:07:15','darshan','2025-10-13 18:16:16'),(583,0,0,'O','N','2526',505,0,'2025-10-13','2026-01-12',530,0,505,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:08:00','0000-00-00','','','','N','12:08:00','12:18:37','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','5','12:08:51',0,'','drashti','2025-10-13 12:08:51','drjayant','2025-10-13 12:18:37'),(584,0,0,'O','N','2526',506,0,'2025-10-13','2026-01-12',531,0,506,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:17:00','0000-00-00','','','','N','12:17:00','14:23:26','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','2','13:14:32',0,'','janvi','2025-10-13 12:17:51','darshan','2025-10-13 14:23:26'),(585,0,0,'O','N','2526',507,0,'2025-10-13','2026-01-12',532,0,507,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:19:00','0000-00-00','','','','N','12:19:00','15:21:26','','N','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','13:14:32',0,'','janvi','2025-10-13 12:19:20','darshan','2025-10-13 15:21:26'),(586,0,0,'O','N','2526',508,0,'2025-10-13','2026-01-12',533,0,508,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','13:16:11','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','4','12:21:05',0,'','janvi','2025-10-13 12:21:05','drarchit','2025-10-13 13:16:11'),(587,0,0,'O','N','2526',509,0,'2025-10-13','2026-01-12',534,0,509,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:22:00','0000-00-00','','','','N','12:22:00','13:44:49','','','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','2','13:14:32',0,'','drashti','2025-10-13 12:22:51','darshan','2025-10-13 13:44:49'),(588,0,0,'O','N','2526',510,0,'2025-10-13','2026-01-12',535,0,510,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:25:00','0000-00-00','','','','N','12:25:00','14:33:58','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','2','13:14:32',0,'','reception','2025-10-13 12:25:05','darshan','2025-10-13 14:33:58'),(589,0,0,'O','N','2526',511,0,'2025-10-13','2026-01-12',536,0,511,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','15:50:58','','N','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','2','13:14:32',0,'','reception','2025-10-13 12:28:44','darshan','2025-10-13 15:50:58'),(590,0,0,'O','N','2526',512,0,'2025-10-13','2026-01-12',537,0,512,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:40:00','0000-00-00','','','','N','12:40:00','18:22:07','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','5','12:40:39',0,'','janvi','2025-10-13 12:40:39','drjayant','2025-10-13 18:22:07'),(591,0,0,'O','N','2526',513,0,'2025-10-13','2026-01-12',538,0,513,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:44:00','0000-00-00','','','','N','12:44:00','15:28:34','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','2','13:14:32',0,'','reception','2025-10-13 12:44:42','darshan','2025-10-13 15:28:34'),(592,0,0,'O','N','2526',514,0,'2025-10-13','2026-01-12',539,0,514,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','0000-00-00','','','','N','13:00:00','18:48:08','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','6','13:00:59',0,'','manshi','2025-10-13 13:00:59','drsagar','2025-10-13 18:48:08'),(593,0,0,'O','N','2526',515,0,'2025-10-13','2026-01-12',540,0,515,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:02:00','0000-00-00','','','','N','13:02:00','13:12:57','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','5','13:02:33',0,'','janvi','2025-10-13 13:02:33','drjayant','2025-10-13 13:12:57'),(594,0,0,'O','N','2526',516,0,'2025-10-13','2026-01-12',541,0,516,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:06:00','0000-00-00','','','','N','13:06:00','14:15:25','','','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','2','13:14:32',0,'','drashti','2025-10-13 13:06:42','darshan','2025-10-13 14:15:25'),(595,0,0,'O','N','2526',517,0,'2025-10-13','2026-01-12',542,0,517,'N','','N','','','NC','','N','D27','','N',47,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:36:00','0000-00-00','','','','N','13:36:00','19:46:05','','','N','Y',NULL,'O','N','Z65','','0000-00-00 00:00:00','4','13:36:53',0,'','drashti','2025-10-13 13:36:53','drarchit','2025-10-13 19:46:05'),(596,0,0,'O','N','2526',518,0,'2025-10-13','2026-01-12',543,0,518,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:12:00','0000-00-00','','','','N','14:12:00','14:48:19','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','2','14:18:13',0,'','drashti','2025-10-13 14:12:21','darshan','2025-10-13 14:48:19'),(597,0,0,'O','N','2526',519,0,'2025-10-13','2026-01-12',544,0,519,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:34:00','0000-00-00','','','','N','15:34:00','18:57:32','','','N','Y',NULL,'O','N','Z67','','0000-00-00 00:00:00','6','15:34:56',0,'','shweta','2025-10-13 15:34:56','drsagar','2025-10-13 18:57:32'),(598,0,0,'I','N','2526',0,45,'2025-10-04','2026-01-09',545,0,0,'N','','N','','','','N','N','D02','','N',0,'','42',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-10-05','','1','','N','09:30:00','10:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-13 16:09:56','vishal','2025-10-13 16:57:57'),(599,0,0,'O','N','2526',520,0,'2025-10-13','2026-01-12',546,0,520,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:32:00','0000-00-00','','','','N','16:32:00','18:52:17','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:32:39',0,'','reception','2025-10-13 16:32:39','darshan','2025-10-13 18:52:17'),(600,0,0,'O','N','2526',521,0,'2025-10-13','2026-01-12',547,0,521,'N','','N','','','NV','','N','D06','','N',48,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:44:00','0000-00-00','','','','N','16:44:00','19:38:16','','N','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:44:14',0,'','shweta','2025-10-13 16:44:14','darshan','2025-10-13 19:38:16'),(601,0,0,'O','N','2526',347,0,'2025-10-13','0000-00-00',363,0,347,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:46:00','0000-00-00','','','','N','16:46:00','18:50:00','','N','N','Y',NULL,'O','O','Z68','','0000-00-00 00:00:00','2','16:46:50',0,'','shweta','2025-10-13 16:46:50','darshan','2025-10-13 18:50:00'),(602,0,0,'O','N','2526',522,0,'2025-10-13','2026-01-12',548,0,522,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:49:00','0000-00-00','','','','N','16:49:00','17:32:56','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','16:49:56',0,'','reception','2025-10-13 16:49:56','darshan','2025-10-13 17:32:56'),(603,0,0,'O','N','2526',523,0,'2025-10-13','2026-01-12',549,0,523,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:57:00','0000-00-00','','','','N','16:57:00','17:23:12','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','16:57:12',0,'','shweta','2025-10-13 16:57:12','darshan','2025-10-13 17:23:12'),(604,0,0,'O','N','2526',524,0,'2025-10-13','2026-01-12',550,0,524,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:59:00','0000-00-00','','','','N','16:59:00','17:39:08','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','16:59:09',0,'','shweta','2025-10-13 16:59:09','darshan','2025-10-13 17:39:08'),(605,0,0,'O','N','2526',504,0,'2025-10-13','0000-00-00',529,0,504,'N','','N','','','REPORTS','','N','D06','','N',21,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:05:00','0000-00-00','','','','N','17:05:00','19:01:06','','N','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','2','17:05:07',0,'','shweta','2025-10-13 17:05:06','darshan','2025-10-13 19:01:06'),(606,0,0,'O','N','2526',525,0,'2025-10-13','2026-01-12',551,0,525,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:14:00','0000-00-00','','','','N','17:14:00','18:59:34','','','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','3','17:14:33',0,'','janvi','2025-10-13 17:14:33','drpratapsinh','2025-10-13 18:59:34'),(607,0,0,'O','N','2526',526,0,'2025-10-13','2026-01-12',552,0,526,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:18:00','0000-00-00','','','','N','17:18:00','18:08:24','','','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:18:29',0,'','reception','2025-10-13 17:18:29','darshan','2025-10-13 18:08:24'),(608,0,0,'O','N','2526',527,0,'2025-10-13','2026-01-12',553,0,527,'N','','N','','','NV','','N','D06','','N',49,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:18:00','0000-00-00','','','','N','17:18:00','20:00:55','','N','N','Y',NULL,'O','N','Z70','','0000-00-00 00:00:00','2','17:18:42',0,'','reception','2025-10-13 17:18:42','darshan','2025-10-13 20:00:55'),(609,0,0,'O','N','2526',528,0,'2025-10-13','2026-01-12',554,0,528,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:19:00','0000-00-00','','','','N','17:19:00','19:19:33','','','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','4','17:19:42',0,'','janvi','2025-10-13 17:19:42','drarchit','2025-10-13 19:19:33'),(610,0,0,'O','N','2526',529,0,'2025-10-13','2026-01-12',555,0,529,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:25:00','0000-00-00','','','','N','17:25:00','18:10:50','','','N','Y',NULL,'O','N','Z72','','0000-00-00 00:00:00','2','17:25:51',0,'','reception','2025-10-13 17:25:51','darshan','2025-10-13 18:10:50'),(611,0,0,'O','N','2526',530,0,'2025-10-13','2026-01-12',556,0,530,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:26:00','0000-00-00','','','','N','17:26:00','17:51:56','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:26:20',0,'','drashti','2025-10-13 17:26:20','darshan','2025-10-13 17:51:56'),(612,0,0,'O','N','2526',531,0,'2025-10-13','2026-01-12',557,0,531,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:28:00','0000-00-00','','','','N','17:28:00','17:57:18','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:28:29',0,'','drashti','2025-10-13 17:28:29','darshan','2025-10-13 17:57:18'),(613,0,0,'O','N','2526',100,0,'2025-10-13','0000-00-00',111,0,100,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','18:11:03','','','N','Y',NULL,'O','O','Z73','','0000-00-00 00:00:00','5','17:41:27',0,'','janvi','2025-10-13 17:41:27','drjayant','2025-10-13 18:11:03'),(614,0,0,'O','N','2526',532,0,'2025-10-13','2026-01-12',558,0,532,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','18:57:00','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','2','17:42:25',0,'','reception','2025-10-13 17:42:25','darshan','2025-10-13 18:57:00'),(615,0,0,'O','N','2526',533,0,'2025-10-13','2026-01-12',559,0,533,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:43:00','0000-00-00','','','','N','17:43:00','19:15:18','','N','N','Y',NULL,'O','N','Z75','','0000-00-00 00:00:00','4','17:43:01',0,'','drashti','2025-10-13 17:43:01','drarchit','2025-10-13 19:15:18'),(616,0,0,'O','N','2526',534,0,'2025-10-13','2026-01-12',560,0,534,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:44:00','0000-00-00','','','','N','17:44:00','18:19:23','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','17:44:09',0,'','reception','2025-10-13 17:44:09','darshan','2025-10-13 18:19:23'),(617,0,0,'O','N','2526',303,0,'2025-10-13','0000-00-00',319,0,303,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:47:00','0000-00-00','','','','N','17:47:00','18:59:18','','','N','Y',NULL,'O','O','Y03','','0000-00-00 00:00:00','3','17:47:04',0,'','janvi','2025-10-13 17:47:04','drpratapsinh','2025-10-13 18:59:18'),(618,0,0,'O','N','2526',535,0,'2025-10-13','2026-01-12',561,0,535,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','18:57:20','','','N','Y',NULL,'O','N','Z76','','0000-00-00 00:00:00','4','17:49:58',0,'','drashti','2025-10-13 17:49:58','drarchit','2025-10-13 18:57:20'),(619,0,0,'O','N','2526',536,0,'2025-10-13','2026-01-12',562,0,536,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','20:03:14','','N','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','2','17:51:13',0,'','reception','2025-10-13 17:51:13','darshan','2025-10-13 20:03:14'),(620,0,0,'O','N','2526',537,0,'2025-10-13','2026-01-12',563,0,537,'N','','N','','','FC              ','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:53:00','0000-00-00','','','','N','17:53:00','18:16:50','','','N','Y',NULL,'O','N','Z77','','0000-00-00 00:00:00','5','17:53:33',0,'','drashti','2025-10-13 17:53:33','drjayant','2025-10-13 18:16:50'),(621,0,0,'O','N','2526',538,0,'2025-10-13','2026-01-12',564,0,538,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:55:00','0000-00-00','','','','N','17:55:00','18:59:17','','','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','4','17:55:13',0,'','reception','2025-10-13 17:55:13','drarchit','2025-10-13 18:59:17'),(622,0,0,'O','N','2526',539,0,'2025-10-13','2026-01-12',565,0,539,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','18:59:44','','','N','Y',NULL,'O','N','Z78','','0000-00-00 00:00:00','2','18:03:30',0,'','reception','2025-10-13 18:03:30','darshan','2025-10-13 18:59:44'),(623,0,0,'O','N','2526',540,0,'2025-10-13','2026-01-12',566,0,540,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','18:51:37','','','N','Y',NULL,'O','N','Z79','','0000-00-00 00:00:00','3','18:04:54',0,'','drashti','2025-10-13 18:04:54','drpratapsinh','2025-10-13 18:51:37'),(624,0,0,'O','N','2526',541,0,'2025-10-13','2026-01-12',567,0,541,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','18:21:51','','','N','Y',NULL,'O','N','Z80','','0000-00-00 00:00:00','5','18:05:15',0,'','janvi','2025-10-13 18:05:15','drjayant','2025-10-13 18:21:51'),(625,0,0,'O','N','2526',542,0,'2025-10-13','2026-01-12',568,0,542,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:06:00','0000-00-00','','','','N','18:06:00','19:37:27','','','N','Y',NULL,'O','N','Z81','','0000-00-00 00:00:00','2','18:06:45',0,'','reception','2025-10-13 18:06:45','darshan','2025-10-13 19:37:27'),(626,0,0,'O','N','2526',247,0,'2025-10-13','0000-00-00',262,0,247,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:06:00','0000-00-00','','','','N','18:06:00','18:59:46','','','N','Y',NULL,'O','O','Z82','','0000-00-00 00:00:00','3','18:07:00',0,'','janvi','2025-10-13 18:07:00','drpratapsinh','2025-10-13 18:59:46'),(627,0,0,'O','N','2526',543,0,'2025-10-13','2026-01-12',569,0,543,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','19:15:31','','','N','Y',NULL,'O','N','Z83','','0000-00-00 00:00:00','4','18:07:42',0,'','drashti','2025-10-13 18:07:42','drarchit','2025-10-13 19:15:31'),(628,0,0,'O','N','2526',544,0,'2025-10-13','2026-01-12',570,0,544,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','19:17:32','','','N','Y',NULL,'O','N','Z84','','0000-00-00 00:00:00','3','18:09:10',0,'','janvi','2025-10-13 18:09:10','drpratapsinh','2025-10-13 19:17:32'),(629,0,0,'O','N','2526',545,0,'2025-10-13','2026-01-12',571,0,545,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:29:15','','','N','Y',NULL,'O','N','Z85','','0000-00-00 00:00:00','6','18:09:34',0,'','manshi','2025-10-13 18:09:34','drsagar','2025-10-13 18:29:15'),(630,0,0,'O','N','2526',546,0,'2025-10-13','2026-01-12',572,0,546,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','19:15:45','','','N','Y',NULL,'O','N','Z86','','0000-00-00 00:00:00','4','18:10:39',0,'','drashti','2025-10-13 18:10:39','drarchit','2025-10-13 19:15:45'),(631,0,0,'O','N','2526',547,0,'2025-10-13','2026-01-12',573,0,547,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','18:49:40','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','2','18:10:52',0,'','reception','2025-10-13 18:10:52','darshan','2025-10-13 18:49:40'),(632,0,0,'O','N','2526',548,0,'2025-10-13','2026-01-12',574,0,548,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','19:19:23','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','4','18:14:40',0,'','drashti','2025-10-13 18:14:40','drarchit','2025-10-13 19:19:23'),(633,0,0,'O','N','2526',549,0,'2025-10-13','2026-01-12',575,0,549,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','19:01:24','','','N','Y',NULL,'O','N','Z87','','0000-00-00 00:00:00','3','18:51:37',0,'','janvi','2025-10-13 18:15:18','drpratapsinh','2025-10-13 19:01:24'),(634,0,0,'O','N','2526',550,0,'2025-10-13','2026-01-12',576,0,550,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','18:25:49','','','N','Y',NULL,'O','N','Z88','','0000-00-00 00:00:00','4','18:16:52',0,'','reception','2025-10-13 18:16:52','drarchit','2025-10-13 18:25:49'),(635,0,0,'O','N','2526',551,0,'2025-10-13','2026-01-12',577,0,551,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','18:58:35','','','N','Y',NULL,'O','N','Z89','','0000-00-00 00:00:00','3','18:51:37',0,'','drashti','2025-10-13 18:18:43','drpratapsinh','2025-10-13 18:58:35'),(636,0,0,'O','N','2526',552,0,'2025-10-13','2026-01-12',578,0,552,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','19:03:57','','','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','4','18:19:08',0,'','janvi','2025-10-13 18:19:08','drarchit','2025-10-13 19:03:57'),(637,0,0,'O','N','2526',553,0,'2025-10-13','2026-01-12',579,0,553,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','19:16:40','','','N','Y',NULL,'O','N','Z90','','0000-00-00 00:00:00','3','18:51:37',0,'','janvi','2025-10-13 18:21:13','drpratapsinh','2025-10-13 19:16:40'),(638,0,0,'O','N','2526',70,0,'2025-10-13','0000-00-00',81,0,70,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','19:03:24','','','N','Y',NULL,'O','O','Z91','','0000-00-00 00:00:00','6','18:21:32',0,'','manshi','2025-10-13 18:21:32','drsagar','2025-10-13 19:03:24'),(639,0,0,'O','N','2526',554,0,'2025-10-13','2026-01-12',580,0,554,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:22:00','0000-00-00','','','','N','18:22:00','18:32:20','','','N','Y',NULL,'O','N','Z92','','0000-00-00 00:00:00','5','18:22:32',0,'','drashti','2025-10-13 18:22:31','drjayant','2025-10-13 18:32:20'),(640,0,0,'O','N','2526',134,0,'2025-10-13','0000-00-00',145,0,134,'N','','N','','','FE','','N','D06','','N',6,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:22:00','0000-00-00','','','','N','18:22:00','19:15:44','','','N','Y',NULL,'O','O','Z93','','0000-00-00 00:00:00','2','18:22:53',0,'','reception','2025-10-13 18:22:53','darshan','2025-10-13 19:15:44'),(641,0,0,'O','N','2526',69,0,'2025-10-13','0000-00-00',80,0,69,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','19:03:35','','','N','Y',NULL,'O','O','Z94','','0000-00-00 00:00:00','6','18:24:26',0,'','manshi','2025-10-13 18:24:26','drsagar','2025-10-13 19:03:35'),(642,0,0,'O','N','2526',114,0,'2025-10-13','0000-00-00',125,0,114,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','18:58:24','','','N','Y',NULL,'O','O','Z95','','0000-00-00 00:00:00','3','18:51:37',0,'','janvi','2025-10-13 18:31:45','drpratapsinh','2025-10-13 18:58:24'),(643,0,0,'O','N','2526',137,0,'2025-10-13','0000-00-00',148,0,137,'N','','N','','','','','N','D03','','N',14,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:37:00','0000-00-00','','','','N','18:37:00','18:47:10','','','N','Y',NULL,'O','O','Z96','','0000-00-00 00:00:00','6','18:37:51',0,'','manshi','2025-10-13 18:37:51','drsagar','2025-10-13 18:47:10'),(644,0,0,'O','N','2526',555,0,'2025-10-13','2026-01-12',581,0,555,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:41:00','0000-00-00','','','','N','18:41:00','18:48:15','','','N','Y',NULL,'O','N','Z97','','0000-00-00 00:00:00','5','18:41:27',0,'','drashti','2025-10-13 18:41:27','drjayant','2025-10-13 18:48:15'),(645,0,0,'I','N','2526',0,46,'2025-10-13','2026-01-12',582,0,0,'N','','N','','','','N','N','D27','','N',0,'','8',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','2025-10-16','','1','mo','N','18:40:00','11:10:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-13 18:42:07','mo','2025-10-16 12:57:48'),(646,0,0,'O','N','2526',556,0,'2025-10-13','2026-01-12',583,0,556,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','19:22:53','','','N','Y',NULL,'O','N','Z98','','0000-00-00 00:00:00','4','18:43:38',0,'','drashti','2025-10-13 18:43:38','drarchit','2025-10-13 19:22:53'),(647,0,0,'O','N','2526',140,0,'2025-10-13','0000-00-00',151,0,140,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','19:01:47','','','N','Y',NULL,'O','O','Y04','','0000-00-00 00:00:00','3','18:51:37',0,'','drashti','2025-10-13 18:46:45','drpratapsinh','2025-10-13 19:01:47'),(648,0,0,'O','N','2526',557,0,'2025-10-13','2026-01-12',584,0,557,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','20:18:05','','N','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','2','18:48:51',0,'','reception','2025-10-13 18:48:51','darshan','2025-10-13 20:18:05'),(649,0,0,'O','N','2526',118,0,'2025-10-13','0000-00-00',129,0,118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','19:02:05','','','N','Y',NULL,'O','O','Y05','','0000-00-00 00:00:00','3','18:51:37',0,'','janvi','2025-10-13 18:49:03','drpratapsinh','2025-10-13 19:02:05'),(650,0,0,'O','N','2526',558,0,'2025-10-13','2026-01-12',585,0,558,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','20:09:44','','','N','Y',NULL,'O','N','Z99','','0000-00-00 00:00:00','2','18:49:38',0,'','drashti','2025-10-13 18:49:38','darshan','2025-10-13 20:09:44'),(651,0,0,'O','N','2526',559,0,'2025-10-13','2026-01-12',586,0,559,'N','','N','','','NC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:57:17','','','N','Y',NULL,'O','N','Z100','','0000-00-00 00:00:00','4','18:51:33',0,'','janvi','2025-10-13 18:51:33','drarchit','2025-10-13 19:57:17'),(652,0,0,'O','N','2526',560,0,'2025-10-13','2026-01-12',587,0,560,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:53:00','0000-00-00','','','','N','18:53:00','19:16:56','','','N','Y',NULL,'O','N','Z101','','0000-00-00 00:00:00','3','18:56:01',0,'','janvi','2025-10-13 18:53:10','drpratapsinh','2025-10-13 19:16:56'),(653,0,0,'O','N','2526',561,0,'2025-10-13','2026-01-12',588,0,561,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:53:00','0000-00-00','','','','N','18:53:00','19:44:52','','','N','Y',NULL,'O','N','Z102','','0000-00-00 00:00:00','4','18:53:44',0,'','drashti','2025-10-13 18:53:44','drarchit','2025-10-13 19:44:52'),(654,0,0,'O','N','2526',562,0,'2025-10-13','2026-01-12',589,0,562,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','19:51:05','','','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','2','18:54:07',0,'','reception','2025-10-13 18:54:07','darshan','2025-10-13 19:51:05'),(655,0,0,'O','N','2526',221,0,'2025-10-13','0000-00-00',234,0,221,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','19:17:13','','','N','Y',NULL,'O','O','Z103','','0000-00-00 00:00:00','3','18:56:01',0,'','janvi','2025-10-13 18:54:52','drpratapsinh','2025-10-13 19:17:13'),(656,0,0,'O','N','2526',563,0,'2025-10-13','2026-01-12',590,0,563,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','19:44:02','','','N','Y',NULL,'O','N','Z104','','0000-00-00 00:00:00','4','18:56:34',0,'','janvi','2025-10-13 18:56:34','drarchit','2025-10-13 19:44:02'),(657,0,0,'O','N','2526',564,0,'2025-10-13','2026-01-12',591,0,564,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:58:00','0000-00-00','','','','N','18:58:00','19:54:07','','','N','Y',NULL,'O','N','L17','','0000-00-00 00:00:00','2','18:58:47',0,'','reception','2025-10-13 18:58:47','darshan','2025-10-13 19:54:07'),(658,0,0,'O','N','2526',565,0,'2025-10-13','2026-01-12',592,0,565,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:06:00','0000-00-00','','','','N','19:06:00','20:25:09','','','N','Y',NULL,'O','N','Z105','','0000-00-00 00:00:00','2','19:06:15',0,'','reception','2025-10-13 19:06:15','darshan','2025-10-13 20:25:09'),(659,0,0,'O','N','2526',566,0,'2025-10-13','2026-01-12',593,0,566,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:10:00','0000-00-00','','','','N','19:10:00','19:45:49','','','N','Y',NULL,'O','N','Z106','','0000-00-00 00:00:00','5','19:10:51',0,'','drashti','2025-10-13 19:10:51','drjayant','2025-10-13 19:45:49'),(660,0,0,'O','N','2526',567,0,'2025-10-13','2026-01-12',594,0,567,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:18:00','0000-00-00','','','','N','19:18:00','19:34:02','','','N','Y',NULL,'O','N','Z107','','0000-00-00 00:00:00','6','19:18:17',0,'','manshi','2025-10-13 19:18:17','drsagar','2025-10-13 19:34:02'),(661,0,0,'O','N','2526',568,0,'2025-10-13','2026-01-12',595,0,568,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:18:00','0000-00-00','','','','N','19:18:00','20:06:11','','','N','Y',NULL,'O','N','Z108','','0000-00-00 00:00:00','4','19:18:44',0,'','reception','2025-10-13 19:18:44','drarchit','2025-10-13 20:06:11'),(662,0,0,'O','N','2526',569,0,'2025-10-13','2026-01-12',596,0,569,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:21:00','0000-00-00','','','','N','19:21:00','19:47:19','','','N','Y',NULL,'O','N','Z109','','0000-00-00 00:00:00','3','19:21:07',0,'','janvi','2025-10-13 19:21:07','drpratapsinh','2025-10-13 19:47:19'),(663,0,0,'O','N','2526',570,0,'2025-10-13','2026-01-12',597,0,570,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:23:00','0000-00-00','','','','N','19:23:00','20:11:18','','','N','Y',NULL,'O','N','Z110','','0000-00-00 00:00:00','4','19:23:27',0,'','janvi','2025-10-13 19:23:27','drarchit','2025-10-13 20:11:18'),(664,0,0,'O','N','2526',571,0,'2025-10-13','2026-01-12',598,0,571,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:25:00','0000-00-00','','','','N','19:25:00','20:05:03','','','N','Y',NULL,'O','N','L18','','0000-00-00 00:00:00','4','19:25:45',0,'','drashti','2025-10-13 19:25:45','drarchit','2025-10-13 20:05:03'),(665,0,0,'O','N','2526',572,0,'2025-10-13','2026-01-12',599,0,572,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:26:00','0000-00-00','','','','N','19:26:00','19:34:12','','','N','Y',NULL,'O','N','Z111','','0000-00-00 00:00:00','6','19:26:24',0,'','manshi','2025-10-13 19:26:24','drsagar','2025-10-13 19:34:12'),(666,0,0,'O','N','2526',573,0,'2025-10-13','2026-01-12',600,0,573,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:29:00','0000-00-00','','','','N','19:29:00','19:38:48','','','N','Y',NULL,'O','N','Z112','','0000-00-00 00:00:00','6','19:29:28',0,'','manshi','2025-10-13 19:29:28','drsagar','2025-10-13 19:38:48'),(667,0,0,'O','N','2526',574,0,'2025-10-13','2026-01-12',601,0,574,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:32:00','0000-00-00','','','','N','19:32:00','20:18:36','','','N','Y',NULL,'O','N','Z113','','0000-00-00 00:00:00','4','19:32:04',0,'','drashti','2025-10-13 19:32:04','drarchit','2025-10-13 20:18:36'),(668,0,0,'I','N','2526',0,47,'2025-09-25','2026-01-12',602,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:15:00','2025-09-26','','1','mo','N','12:15:00','11:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-13 19:32:07','mo','2025-10-14 09:19:49'),(669,0,0,'O','N','2526',575,0,'2025-10-13','2026-01-12',603,0,575,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:32:00','0000-00-00','','','','N','19:32:00','20:21:54','','','N','Y',NULL,'O','N','Z114','','0000-00-00 00:00:00','3','19:32:31',0,'','janvi','2025-10-13 19:32:31','drpratapsinh','2025-10-13 20:21:54'),(670,0,0,'O','N','2526',221,0,'2025-10-13','0000-00-00',234,0,221,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:39:00','0000-00-00','','','','N','19:39:00','20:21:26','','','N','Y',NULL,'O','O','Y06','','0000-00-00 00:00:00','3','19:39:40',0,'','drashti','2025-10-13 19:39:40','drpratapsinh','2025-10-13 20:21:26'),(671,0,0,'O','N','2526',576,0,'2025-10-13','2026-01-12',604,0,576,'N','','N','','','ECG','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:47:00','0000-00-00','','','','N','19:47:00','00:00:00','','','N','N',NULL,'O','N','Z115','','0000-00-00 00:00:00','4','19:47:43',0,'','drashti','2025-10-13 19:47:43','','0000-00-00 00:00:00'),(672,0,0,'I','N','2526',0,48,'2025-10-09','2026-01-08',165,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-10-10','','1','','N','09:30:00','11:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-13 21:36:04','riya','2025-10-13 21:47:40'),(673,0,0,'I','N','2526',0,49,'2025-10-06','2026-01-12',605,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','2025-10-07','','1','mo','N','10:00:00','13:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-13 21:58:40','mo','2025-10-17 09:39:27'),(674,0,0,'I','N','2526',0,50,'2025-10-13','2026-01-12',606,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','22:24:00','2025-10-16','','1','mo','N','22:24:00','11:20:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-13 22:26:30','mo','2025-10-16 11:46:33'),(675,0,0,'I','N','2526',0,51,'2025-10-13','2026-01-12',607,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','22:34:00','2025-10-14','','1','mo','N','22:34:00','20:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-13 22:36:35','vishal','2025-10-14 21:06:08'),(676,0,0,'O','N','2526',575,0,'2025-10-14','0000-00-00',603,0,575,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:42:00','0000-00-00','','','','N','08:42:00','10:35:57','','','N','Y',NULL,'O','O','Z01','','0000-00-00 00:00:00','3','08:48:29',0,'','shweta','2025-10-14 08:48:28','drpratapsinh','2025-10-14 10:35:57'),(677,0,0,'O','N','2526',577,0,'2025-10-14','2026-01-13',608,0,577,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:44:00','0000-00-00','','','','N','08:44:00','18:53:12','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','08:51:13',0,'','shweta','2025-10-14 08:51:13','drarchit','2025-10-14 18:53:12'),(678,0,0,'O','N','2526',578,0,'2025-10-14','2026-01-13',609,0,578,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:48:00','0000-00-00','','','','N','08:48:00','00:00:00','','','N','N',NULL,'O','N','Z03','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-14 08:53:37','','0000-00-00 00:00:00'),(679,0,0,'O','N','2526',579,0,'2025-10-14','2026-01-13',610,0,579,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:50:00','0000-00-00','','','','N','08:50:00','11:05:08','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','6','08:55:40',0,'','shweta','2025-10-14 08:55:40','drsagar','2025-10-14 11:05:08'),(680,0,0,'O','N','2526',580,0,'2025-10-14','2026-01-13',611,0,580,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:51:00','0000-00-00','','','','N','08:51:00','11:23:50','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','6','08:57:30',0,'','shweta','2025-10-14 08:57:30','drsagar','2025-10-14 11:23:50'),(681,0,0,'O','N','2526',581,0,'2025-10-14','2026-01-13',612,0,581,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:56:00','0000-00-00','','','','N','08:56:00','00:00:00','','','N','N',NULL,'O','N','Z06','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-14 08:59:36','','0000-00-00 00:00:00'),(682,0,0,'O','N','2526',582,0,'2025-10-14','2026-01-13',613,0,582,'N','','N','','','','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:56:00','0000-00-00','','','','N','08:56:00','18:18:31','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','4','09:00:57',0,'','shweta','2025-10-14 09:00:57','drarchit','2025-10-14 18:18:31'),(683,0,0,'I','N','2526',431,52,'2025-10-14','2026-01-13',454,0,431,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:03:00','2025-10-14','','1','mo','N','09:03:00','21:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-14 09:05:16','vishal','2025-10-14 19:42:03'),(684,0,0,'I','N','2526',0,53,'2025-09-30','2026-01-13',388,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:00:00','2025-09-30','','1','mo','N','09:00:00','04:36:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-14 09:20:50','riya','2025-10-14 09:40:39'),(685,0,0,'O','N','2526',583,0,'2025-10-14','2026-01-13',614,0,583,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:32:00','0000-00-00','','','','N','09:32:00','10:55:01','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','2','09:32:19',0,'','shweta','2025-10-14 09:32:19','darshan','2025-10-14 10:55:01'),(686,0,0,'O','N','2526',584,0,'2025-10-14','2026-01-13',615,0,584,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:45:00','0000-00-00','','','','N','09:45:00','13:31:06','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','09:45:57',0,'','reception','2025-10-14 09:45:57','darshan','2025-10-14 13:31:06'),(687,0,0,'I','N','2526',482,54,'2025-10-14','2026-01-13',508,0,482,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-10-15','','1','mo','N','09:30:00','10:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-14 09:57:04','mo','2025-10-15 12:49:10'),(688,0,0,'O','N','2526',585,0,'2025-10-14','2026-01-13',616,0,585,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:06:00','0000-00-00','','','','N','10:06:00','13:52:27','','N','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:06:29',0,'','reception','2025-10-14 10:06:29','darshan','2025-10-14 13:52:27'),(689,0,0,'O','N','2526',586,0,'2025-10-14','2026-01-13',21,0,586,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:09:00','0000-00-00','','','','N','10:09:00','11:06:18','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','4','10:09:47',0,'','reception','2025-10-14 10:09:47','drarchit','2025-10-14 11:06:18'),(690,0,0,'I','N','2526',0,55,'2025-10-14','2026-01-13',66,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','2025-10-15','','1','mo','N','10:00:00','12:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-14 10:13:28','mo','2025-10-15 13:06:22'),(691,0,0,'O','N','2526',587,0,'2025-10-14','2026-01-13',617,0,587,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','0000-00-00','','','','N','10:15:00','10:34:57','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','3','10:15:58',0,'','janvi','2025-10-14 10:15:58','drpratapsinh','2025-10-14 10:34:57'),(692,0,0,'O','N','2526',588,0,'2025-10-14','2026-01-13',618,0,588,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:20:00','0000-00-00','','','','N','10:20:00','11:44:29','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','2','10:20:38',0,'','reception','2025-10-14 10:20:38','darshan','2025-10-14 11:44:29'),(693,0,0,'O','N','2526',589,0,'2025-10-14','2026-01-13',619,0,589,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:30:00','0000-00-00','','','','N','10:30:00','11:20:57','','','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:30:24',0,'','reception','2025-10-14 10:30:24','darshan','2025-10-14 11:20:57'),(694,0,0,'O','N','2526',590,0,'2025-10-14','2026-01-13',620,0,590,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:32:00','0000-00-00','','','','N','10:32:00','10:36:24','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','3','10:32:16',0,'','drashti','2025-10-14 10:32:16','drpratapsinh','2025-10-14 10:36:24'),(695,0,0,'O','N','2526',591,0,'2025-10-14','2026-01-13',621,0,591,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:32:00','0000-00-00','','','','N','10:32:00','11:53:12','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','2','10:32:20',0,'','reception','2025-10-14 10:32:20','darshan','2025-10-14 11:53:12'),(696,0,0,'O','N','2526',592,0,'2025-10-14','2026-01-13',622,0,592,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:35:00','0000-00-00','','','','N','10:35:00','11:25:20','','','N','Y',NULL,'O','N','F04','','0000-00-00 00:00:00','2','10:35:50',0,'','reception','2025-10-14 10:35:50','darshan','2025-10-14 11:25:20'),(697,0,0,'O','N','2526',593,0,'2025-10-14','2026-01-13',623,0,593,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:35:00','0000-00-00','','','','N','10:35:00','14:15:26','','N','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','10:35:52',0,'','drashti','2025-10-14 10:35:52','darshan','2025-10-14 14:15:26'),(698,0,0,'O','N','2526',594,0,'2025-10-14','2026-01-13',624,0,594,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','11:49:11','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','4','10:38:40',0,'','drashti','2025-10-14 10:38:40','drarchit','2025-10-14 11:49:11'),(699,0,0,'O','N','2526',595,0,'2025-10-14','2026-01-13',625,0,595,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','','N','10:40:00','10:46:39','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','3','10:40:25',0,'','janvi','2025-10-14 10:40:25','drpratapsinh','2025-10-14 10:46:39'),(700,0,0,'O','N','2526',596,0,'2025-10-14','2026-01-13',626,0,596,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','12:15:34','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:48:04',0,'','reception','2025-10-14 10:48:03','darshan','2025-10-14 12:15:34'),(701,0,0,'I','N','2526',595,56,'2025-10-14','2026-01-13',625,0,595,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','2025-10-15','','1','mo','N','10:48:00','12:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-14 10:49:41','mo','2025-10-15 13:22:23'),(702,0,0,'O','N','2526',165,0,'2025-10-14','0000-00-00',178,0,165,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','11:27:28','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','3','10:53:23',0,'','janvi','2025-10-14 10:53:23','drpratapsinh','2025-10-14 11:27:28'),(703,0,0,'O','N','2526',597,0,'2025-10-14','2026-01-13',627,0,597,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','14:12:53','','N','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','2','10:55:31',0,'','reception','2025-10-14 10:55:31','darshan','2025-10-14 14:12:53'),(704,0,0,'O','N','2526',598,0,'2025-10-14','2026-01-13',628,0,598,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','18:38:59','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','4','10:56:34',0,'','drashti','2025-10-14 10:56:34','drarchit','2025-10-14 18:38:59'),(705,0,0,'O','N','2526',599,0,'2025-10-14','2026-01-13',629,0,599,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','11:47:55','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','11:02:50',0,'','reception','2025-10-14 11:02:50','darshan','2025-10-14 11:47:55'),(706,0,0,'O','N','2526',171,0,'2025-10-14','0000-00-00',184,0,171,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','12:40:37','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','2','11:03:37',0,'','drashti','2025-10-14 11:03:37','darshan','2025-10-14 12:40:37'),(707,0,0,'O','N','2526',600,0,'2025-10-14','2026-01-13',630,0,600,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','11:48:44','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','4','11:04:47',0,'','janvi','2025-10-14 11:04:47','drarchit','2025-10-14 11:48:44'),(708,0,0,'O','N','2526',601,0,'2025-10-14','2026-01-13',631,0,601,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','18:49:15','','N','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','4','11:06:49',0,'','drashti','2025-10-14 11:06:49','drarchit','2025-10-14 18:49:15'),(709,0,0,'O','N','2526',602,0,'2025-10-14','2026-01-13',632,0,602,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','12:25:05','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:11:58',0,'','reception','2025-10-14 11:11:58','darshan','2025-10-14 12:25:05'),(710,0,0,'O','N','2526',603,0,'2025-10-14','2026-01-13',633,0,603,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','11:31:17','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','6','11:12:59',0,'','manshi','2025-10-14 11:12:59','drsagar','2025-10-14 11:31:17'),(711,0,0,'O','N','2526',604,0,'2025-10-14','2026-01-13',634,0,604,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','13:00:51','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','2','11:14:17',0,'','drashti','2025-10-14 11:14:17','darshan','2025-10-14 13:00:51'),(712,0,0,'O','N','2526',605,0,'2025-10-14','2026-01-13',635,0,605,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','11:41:25','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','4','11:16:01',0,'','drashti','2025-10-14 11:16:01','drarchit','2025-10-14 11:41:25'),(713,0,0,'O','N','2526',606,0,'2025-10-14','2026-01-13',636,0,606,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','12:07:35','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','11:17:07',0,'','reception','2025-10-14 11:17:07','darshan','2025-10-14 12:07:35'),(714,0,0,'O','N','2526',607,0,'2025-10-14','2026-01-13',637,0,607,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','14:57:49','','N','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','2','11:18:49',0,'','reception','2025-10-14 11:18:49','darshan','2025-10-14 14:57:49'),(715,0,0,'O','N','2526',608,0,'2025-10-14','2026-01-13',638,0,608,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','12:27:51','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','6','11:28:17',0,'','manshi','2025-10-14 11:28:17','drsagar','2025-10-14 12:27:51'),(716,0,0,'O','N','2526',609,0,'2025-10-14','2026-01-13',639,0,609,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','11:58:22','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','4','11:40:21',0,'','drashti','2025-10-14 11:40:21','drarchit','2025-10-14 11:58:22'),(717,0,0,'O','N','2526',610,0,'2025-10-14','2026-01-13',640,0,610,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','12:18:14','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','4','11:40:54',0,'','janvi','2025-10-14 11:40:54','drarchit','2025-10-14 12:18:14'),(718,0,0,'O','N','2526',611,0,'2025-10-14','2026-01-13',641,0,611,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','13:45:24','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','2','11:42:06',0,'','reception','2025-10-14 11:42:06','darshan','2025-10-14 13:45:24'),(719,0,0,'O','N','2526',612,0,'2025-10-14','2026-01-13',642,0,612,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','12:02:30','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','6','11:48:11',0,'','manshi','2025-10-14 11:48:11','drsagar','2025-10-14 12:02:30'),(720,0,0,'O','N','2526',613,0,'2025-10-14','2026-01-13',643,0,613,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','14:35:45','','N','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:51:11',0,'','reception','2025-10-14 11:51:11','darshan','2025-10-14 14:35:45'),(721,0,0,'O','N','2526',614,0,'2025-10-14','2026-01-13',644,0,614,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:59:00','0000-00-00','','','','N','11:59:00','13:05:45','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','11:59:33',0,'','reception','2025-10-14 11:59:33','darshan','2025-10-14 13:05:45'),(722,0,0,'O','N','2526',615,0,'2025-10-14','2026-01-13',645,0,615,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','18:18:13','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','4','12:09:53',0,'','janvi','2025-10-14 12:09:53','drarchit','2025-10-14 18:18:13'),(723,0,0,'O','N','2526',616,0,'2025-10-14','2026-01-13',646,0,616,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:12:00','0000-00-00','','','','N','12:12:00','18:49:05','','N','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','4','12:12:10',0,'','drashti','2025-10-14 12:12:10','drarchit','2025-10-14 18:49:05'),(724,0,0,'O','N','2526',617,0,'2025-10-14','2026-01-13',647,0,617,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:13:00','0000-00-00','','','','N','12:13:00','12:17:18','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','6','12:13:56',0,'','manshi','2025-10-14 12:13:55','drsagar','2025-10-14 12:17:18'),(725,0,0,'O','N','2526',618,0,'2025-10-14','2026-01-13',648,0,618,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:16:00','0000-00-00','','','','N','12:16:00','18:24:54','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','4','12:16:13',0,'','drashti','2025-10-14 12:16:13','drarchit','2025-10-14 18:24:54'),(726,0,0,'O','N','2526',619,0,'2025-10-14','2026-01-13',649,0,619,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:18:00','0000-00-00','','','','N','12:18:00','00:00:00','','','N','N',NULL,'O','N','Z33','','0000-00-00 00:00:00','3','12:18:32',0,'','janvi','2025-10-14 12:18:32','','0000-00-00 00:00:00'),(727,0,0,'O','N','2526',620,0,'2025-10-14','2026-01-13',650,0,620,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:18:00','0000-00-00','','','','N','12:18:00','13:17:31','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','12:18:57',0,'','reception','2025-10-14 12:18:57','darshan','2025-10-14 13:17:31'),(728,0,0,'O','N','2526',621,0,'2025-10-14','2026-01-13',651,0,621,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','18:24:39','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','4','12:28:00',0,'','drashti','2025-10-14 12:28:00','drarchit','2025-10-14 18:24:39'),(729,0,0,'O','N','2526',622,0,'2025-10-14','2026-01-13',652,0,622,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:32:00','0000-00-00','','','','N','12:32:00','18:15:43','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','4','12:32:01',0,'','drashti','2025-10-14 12:32:01','drarchit','2025-10-14 18:15:43'),(730,0,0,'O','N','2526',623,0,'2025-10-14','2026-01-13',653,0,623,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','00:00:00','','','N','N',NULL,'O','N','Z36','','0000-00-00 00:00:00','3','12:35:42',0,'','drashti','2025-10-14 12:35:42','','0000-00-00 00:00:00'),(731,0,0,'O','N','2526',624,0,'2025-10-14','2026-01-13',654,0,624,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','13:20:28','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:35:49',0,'','reception','2025-10-14 12:35:49','darshan','2025-10-14 13:20:28'),(732,0,0,'O','N','2526',625,0,'2025-10-14','2026-01-13',655,0,625,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:36:00','0000-00-00','','','','N','12:36:00','13:23:07','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','12:36:19',0,'','janvi','2025-10-14 12:36:19','darshan','2025-10-14 13:23:07'),(733,0,0,'O','N','2526',626,0,'2025-10-14','2026-01-13',656,0,626,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:38:00','0000-00-00','','','','N','12:38:00','18:38:50','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','4','12:38:14',0,'','janvi','2025-10-14 12:38:13','drarchit','2025-10-14 18:38:50'),(734,0,0,'O','N','2526',627,0,'2025-10-14','2026-01-13',657,0,627,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:42:00','0000-00-00','','','','N','12:42:00','18:18:03','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','4','12:42:44',0,'','drashti','2025-10-14 12:42:44','drarchit','2025-10-14 18:18:03'),(735,0,0,'O','N','2526',628,0,'2025-10-14','2026-01-13',658,0,628,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:44:00','0000-00-00','','','','N','12:44:00','14:09:05','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','2','12:44:18',0,'','reception','2025-10-14 12:44:18','darshan','2025-10-14 14:09:05'),(736,0,0,'O','N','2526',629,0,'2025-10-14','2026-01-13',659,0,629,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:46:00','0000-00-00','','','','N','12:46:00','18:50:35','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','2','12:46:52',0,'','reception','2025-10-14 12:46:52','darshan','2025-10-14 18:50:35'),(737,0,0,'I','N','2526',0,57,'2025-09-30','2026-01-13',388,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:00:00','2025-09-30','','1','mo','N','09:00:00','16:36:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-14 12:49:00','mo','2025-10-14 17:51:39'),(738,0,0,'O','N','2526',630,0,'2025-10-14','2026-01-13',660,0,630,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:55:00','0000-00-00','','','','N','12:55:00','18:15:32','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','4','12:55:08',0,'','janvi','2025-10-14 12:55:08','drarchit','2025-10-14 18:15:32'),(739,0,0,'O','N','2526',631,0,'2025-10-14','2026-01-13',661,0,631,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:06:00','0000-00-00','','','','N','13:06:00','14:12:08','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','2','13:06:19',0,'','urvashi','2025-10-14 13:06:19','darshan','2025-10-14 14:12:08'),(740,0,0,'O','N','2526',632,0,'2025-10-14','2026-01-13',662,0,632,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:11:00','0000-00-00','','','','N','13:11:00','13:58:20','','','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','2','13:11:59',0,'','urvashi','2025-10-14 13:11:59','darshan','2025-10-14 13:58:20'),(741,0,0,'O','N','2526',633,0,'2025-10-14','2026-01-13',663,0,633,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:13:00','0000-00-00','','','','N','13:13:00','18:15:18','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','4','13:13:43',0,'','drashti','2025-10-14 13:13:43','drarchit','2025-10-14 18:15:18'),(742,0,0,'O','N','2526',250,0,'2025-10-14','0000-00-00',265,0,250,'N','','N','','','REPORTS','','N','D06','','N',23,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:15:00','0000-00-00','','','','N','13:15:00','14:57:59','','N','N','Y',NULL,'O','O','Z44','','0000-00-00 00:00:00','2','13:15:37',0,'','urvashi','2025-10-14 13:15:37','darshan','2025-10-14 14:57:59'),(743,0,0,'I','N','2526',619,58,'2025-10-14','2026-01-13',649,0,619,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:27:00','2025-10-15','','1','mo','N','13:27:00','14:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-14 13:35:47','mo','2025-10-15 12:54:42'),(744,0,0,'O','N','2526',634,0,'2025-10-14','2026-01-13',664,0,634,'N','','N','','','REPORT','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:46:00','0000-00-00','','','','N','13:46:00','18:15:00','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','4','13:46:18',0,'','janvi','2025-10-14 13:46:18','drarchit','2025-10-14 18:15:00'),(745,0,0,'O','N','2526',635,0,'2025-10-14','2026-01-13',665,0,635,'N','','N','','','NE','','N','D06','','N',51,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:37:00','0000-00-00','','','','N','14:37:00','14:55:25','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','2','14:37:31',0,'','urvashi','2025-10-14 14:37:31','darshan','2025-10-14 14:55:25'),(746,0,0,'O','N','2526',629,0,'2025-10-14','0000-00-00',659,0,629,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:41:00','0000-00-00','','','','N','16:41:00','19:27:01','','N','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','2','16:41:37',0,'','reception','2025-10-14 16:41:37','darshan','2025-10-14 19:27:01'),(747,0,0,'O','N','2526',636,0,'2025-10-14','2026-01-13',666,0,636,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:51:00','0000-00-00','','','','N','16:51:00','17:23:02','','','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:51:10',0,'','reception','2025-10-14 16:51:10','darshan','2025-10-14 17:23:02'),(748,0,0,'O','N','2526',637,0,'2025-10-14','2026-01-13',667,0,637,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:51:00','0000-00-00','','','','N','16:51:00','20:17:39','','N','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','16:51:56',0,'','shweta','2025-10-14 16:51:56','darshan','2025-10-14 20:17:39'),(749,0,0,'O','N','2526',638,0,'2025-10-14','2026-01-13',668,0,638,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:53:00','0000-00-00','','','','N','16:53:00','19:49:21','','N','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:53:10',0,'','reception','2025-10-14 16:53:10','darshan','2025-10-14 19:49:21'),(750,0,0,'O','N','2526',639,0,'2025-10-14','2026-01-13',669,0,639,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:58:00','0000-00-00','','','','N','16:58:00','20:00:00','','N','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','16:58:11',0,'','reception','2025-10-14 16:58:11','darshan','2025-10-14 20:00:00'),(751,0,0,'O','N','2526',640,0,'2025-10-14','2026-01-13',670,0,640,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:12:00','0000-00-00','','','','N','17:12:00','18:38:54','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','2','17:12:31',0,'','reception','2025-10-14 17:12:31','darshan','2025-10-14 18:38:54'),(752,0,0,'O','N','2526',641,0,'2025-10-14','2026-01-13',671,0,641,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:14:00','0000-00-00','','','','N','17:14:00','17:38:44','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:14:17',0,'','drashti','2025-10-14 17:14:17','darshan','2025-10-14 17:38:44'),(753,0,0,'O','N','2526',642,0,'2025-10-14','2026-01-13',672,0,642,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:17:00','0000-00-00','','','','N','17:17:00','18:07:50','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','2','17:17:47',0,'','urvashi','2025-10-14 17:17:47','darshan','2025-10-14 18:07:50'),(754,0,0,'O','N','2526',643,0,'2025-10-14','2026-01-13',673,0,643,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:18:00','0000-00-00','','','','N','17:18:00','18:53:22','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','2','17:18:29',0,'','drashti','2025-10-14 17:18:29','darshan','2025-10-14 18:53:22'),(755,0,0,'O','N','2526',644,0,'2025-10-14','2026-01-13',674,0,644,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','00:00:00','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','4','17:27:46',0,'','drashti','2025-10-14 17:27:46','drarchit','2025-10-14 18:15:09'),(756,0,0,'O','N','2526',645,0,'2025-10-14','2026-01-13',675,0,645,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:38:00','0000-00-00','','','','N','17:38:00','18:19:48','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','6','17:38:55',0,'','manshi','2025-10-14 17:38:55','drsagar','2025-10-14 18:19:48'),(757,0,0,'O','N','2526',646,0,'2025-10-14','2026-01-13',676,0,646,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','18:48:47','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','4','18:15:00',0,'','urvashi','2025-10-14 17:40:48','drarchit','2025-10-14 18:48:47'),(758,0,0,'O','N','2526',647,0,'2025-10-14','2026-01-13',677,0,647,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','18:20:52','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:42:26',0,'','urvashi','2025-10-14 17:42:26','darshan','2025-10-14 18:20:52'),(759,0,0,'O','N','2526',648,0,'2025-10-14','2026-01-13',678,0,648,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:44:00','0000-00-00','','','','N','17:44:00','19:25:17','','','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','4','18:15:00',0,'','drashti','2025-10-14 17:44:19','drarchit','2025-10-14 19:25:17'),(760,0,0,'O','N','2526',305,0,'2025-10-14','0000-00-00',321,0,305,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:44:00','0000-00-00','','','','N','17:44:00','00:00:00','','','N','N',NULL,'O','O','Z54','','0000-00-00 00:00:00','3','17:44:30',0,'','janvi','2025-10-14 17:44:30','','0000-00-00 00:00:00'),(761,0,0,'O','N','2526',649,0,'2025-10-14','2026-01-13',679,0,649,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:45:00','0000-00-00','','','','N','17:45:00','18:57:14','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','2','17:45:58',0,'','urvashi','2025-10-14 17:45:58','darshan','2025-10-14 18:57:14'),(762,0,0,'O','N','2526',650,0,'2025-10-14','2026-01-13',680,0,650,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:47:00','0000-00-00','','','','N','17:47:00','19:16:50','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','2','17:47:25',0,'','urvashi','2025-10-14 17:47:25','darshan','2025-10-14 19:16:50'),(763,0,0,'O','N','2526',651,0,'2025-10-14','2026-01-13',681,0,651,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:47:00','0000-00-00','','','','N','17:47:00','00:00:00','','','N','N',NULL,'O','N','Z57','','0000-00-00 00:00:00','3','17:47:37',0,'','janvi','2025-10-14 17:47:37','','0000-00-00 00:00:00'),(764,0,0,'O','N','2526',652,0,'2025-10-14','2026-01-13',682,0,652,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','18:24:38','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:50:23',0,'','drashti','2025-10-14 17:50:23','darshan','2025-10-14 18:24:38'),(765,0,0,'O','N','2526',653,0,'2025-10-14','2026-01-13',683,0,653,'N','','N','','','NV','','N','D06','','N',53,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','20:29:54','','N','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:51:14',0,'','urvashi','2025-10-14 17:51:14','darshan','2025-10-14 20:29:54'),(766,0,0,'O','N','2526',654,0,'2025-10-14','2026-01-13',684,0,654,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:54:00','0000-00-00','','','','N','17:54:00','18:10:56','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','6','17:54:47',0,'','manshi','2025-10-14 17:54:47','drsagar','2025-10-14 18:10:56'),(767,0,0,'O','N','2526',655,0,'2025-10-14','2026-01-13',685,0,655,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:56:00','0000-00-00','','','','N','17:56:00','19:41:30','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','2','17:56:48',0,'','drashti','2025-10-14 17:56:48','darshan','2025-10-14 19:41:30'),(768,0,0,'O','N','2526',656,0,'2025-10-14','2026-01-13',686,0,656,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','00:00:00','','','N','N',NULL,'O','N','Z60','','0000-00-00 00:00:00','3','17:57:27',0,'','urvashi','2025-10-14 17:57:27','','0000-00-00 00:00:00'),(769,0,0,'O','N','2526',657,0,'2025-10-14','2026-01-13',687,0,657,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','19:52:49','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','17:57:30',0,'','janvi','2025-10-14 17:57:30','darshan','2025-10-14 19:52:49'),(770,0,0,'O','N','2526',658,0,'2025-10-14','2026-01-13',688,0,658,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','18:48:29','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','4','18:15:00',0,'','drashti','2025-10-14 17:59:19','drarchit','2025-10-14 18:48:29'),(771,0,0,'O','N','2526',111,0,'2025-10-14','0000-00-00',122,0,111,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','0000-00-00','','','','N','18:00:00','00:00:00','','','N','N',NULL,'O','O','Z62','','0000-00-00 00:00:00','3','18:00:09',0,'','janvi','2025-10-14 18:00:09','','0000-00-00 00:00:00'),(772,0,0,'O','N','2526',659,0,'2025-10-14','2026-01-13',689,0,659,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','00:00:00','','','N','N',NULL,'O','N','Z63','','0000-00-00 00:00:00','3','18:02:50',0,'','janvi','2025-10-14 18:02:50','','0000-00-00 00:00:00'),(773,0,0,'O','N','2526',660,0,'2025-10-14','2026-01-13',690,0,660,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','18:42:03','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','2','18:04:01',0,'','urvashi','2025-10-14 18:04:01','darshan','2025-10-14 18:42:03'),(774,0,0,'O','N','2526',661,0,'2025-10-14','2026-01-13',691,0,661,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','19:10:44','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','2','18:11:15',0,'','urvashi','2025-10-14 18:11:15','darshan','2025-10-14 19:10:44'),(775,0,0,'O','N','2526',249,0,'2025-10-14','0000-00-00',264,0,249,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','00:00:00','','','N','N',NULL,'O','O','Z65','','0000-00-00 00:00:00','3','18:11:55',0,'','drashti','2025-10-14 18:11:55','','0000-00-00 00:00:00'),(776,0,0,'O','N','2526',662,0,'2025-10-14','2026-01-13',692,0,662,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','18:45:35','','','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','2','18:20:52',0,'','urvashi','2025-10-14 18:18:51','darshan','2025-10-14 18:45:35'),(777,0,0,'O','N','2526',663,0,'2025-10-14','2026-01-13',693,0,663,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:20:00','0000-00-00','','','','N','18:20:00','18:43:55','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','4','18:20:25',0,'','drashti','2025-10-14 18:20:25','drarchit','2025-10-14 18:43:55'),(778,0,0,'O','N','2526',664,0,'2025-10-14','2026-01-13',694,0,664,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','00:00:00','','','N','N',NULL,'O','N','Z66','','0000-00-00 00:00:00','4','18:21:28',0,'','janvi','2025-10-14 18:21:28','','0000-00-00 00:00:00'),(779,0,0,'O','N','2526',665,0,'2025-10-14','2026-01-13',695,0,665,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','20:13:17','','','N','Y',NULL,'O','N','Z67','','0000-00-00 00:00:00','2','18:24:38',0,'','urvashi','2025-10-14 18:21:45','darshan','2025-10-14 20:13:17'),(780,0,0,'O','N','2526',666,0,'2025-10-14','2026-01-13',696,0,666,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','19:07:48','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','2','18:24:38',0,'','drashti','2025-10-14 18:23:35','darshan','2025-10-14 19:07:48'),(781,0,0,'O','N','2526',667,0,'2025-10-14','2026-01-13',697,0,667,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','00:00:00','','','N','N',NULL,'O','N','Z68','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-10-14 18:26:34','','0000-00-00 00:00:00'),(782,0,0,'O','N','2526',668,0,'2025-10-14','2026-01-13',698,0,668,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:27:00','0000-00-00','','','','N','18:27:00','19:12:35','','','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','4','18:27:11',0,'','drashti','2025-10-14 18:27:11','drarchit','2025-10-14 19:12:35'),(783,0,0,'O','N','2526',669,0,'2025-10-14','2026-01-13',699,0,669,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','19:13:07','','','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','2','18:42:03',0,'','urvashi','2025-10-14 18:28:57','darshan','2025-10-14 19:13:07'),(784,0,0,'O','N','2526',670,0,'2025-10-14','2026-01-13',700,0,670,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','00:00:00','','','N','N',NULL,'O','N','Z70','','0000-00-00 00:00:00','4','18:30:24',0,'','janvi','2025-10-14 18:30:24','','0000-00-00 00:00:00'),(785,0,0,'O','N','2526',671,0,'2025-10-14','2026-01-13',62,0,671,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','19:04:30','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','18:31:06',0,'','drashti','2025-10-14 18:31:05','drarchit','2025-10-14 19:04:30'),(786,0,0,'O','N','2526',303,0,'2025-10-14','0000-00-00',319,0,303,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','00:00:00','','','N','N',NULL,'O','O','Z71','','0000-00-00 00:00:00','3','18:31:21',0,'','janvi','2025-10-14 18:31:21','','0000-00-00 00:00:00'),(787,0,0,'O','N','2526',672,0,'2025-10-14','2026-01-13',701,0,672,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','00:00:00','','','N','N',NULL,'O','N','Z72','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-10-14 18:34:38','','0000-00-00 00:00:00'),(788,0,0,'O','N','2526',673,0,'2025-10-14','2026-01-13',702,0,673,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','19:04:21','','','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','4','18:36:20',0,'','drashti','2025-10-14 18:36:20','drarchit','2025-10-14 19:04:21'),(789,0,0,'O','N','2526',674,0,'2025-10-14','2026-01-13',703,0,674,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','19:19:45','','','N','Y',NULL,'O','N','L17','','0000-00-00 00:00:00','4','18:46:51',0,'','drashti','2025-10-14 18:46:51','drarchit','2025-10-14 19:19:45'),(790,0,0,'O','N','2526',675,0,'2025-10-14','2026-01-13',704,0,675,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','19:27:37','','','N','Y',NULL,'O','N','Z73','','0000-00-00 00:00:00','4','18:56:25',0,'','drashti','2025-10-14 18:56:25','drarchit','2025-10-14 19:27:37'),(791,0,0,'O','N','2526',676,0,'2025-10-14','2026-01-13',705,0,676,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:58:00','0000-00-00','','','','N','18:58:00','19:12:50','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','4','18:58:13',0,'','drashti','2025-10-14 18:58:13','drarchit','2025-10-14 19:12:50'),(792,0,0,'O','N','2526',677,0,'2025-10-14','2026-01-13',706,0,677,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:03:00','0000-00-00','','','','N','19:03:00','20:16:53','','','N','Y',NULL,'O','N','Z75','','0000-00-00 00:00:00','2','19:03:50',0,'','urvashi','2025-10-14 19:03:50','darshan','2025-10-14 20:16:53'),(793,0,0,'O','N','2526',118,0,'2025-10-14','0000-00-00',129,0,118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:04:00','0000-00-00','','','','N','19:04:00','00:00:00','','','N','N',NULL,'O','O','Z76','','0000-00-00 00:00:00','3','19:04:40',0,'','urvashi','2025-10-14 19:04:40','','0000-00-00 00:00:00'),(794,0,0,'O','N','2526',678,0,'2025-10-14','2026-01-13',707,0,678,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:05:00','0000-00-00','','','','N','19:05:00','00:00:00','','','N','N',NULL,'O','N','L18','','0000-00-00 00:00:00','4','19:05:21',0,'','drashti','2025-10-14 19:05:21','','0000-00-00 00:00:00'),(795,0,0,'O','N','2526',679,0,'2025-10-14','2026-01-13',708,0,679,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:05:00','0000-00-00','','','','N','19:05:00','20:25:10','','','N','Y',NULL,'O','N','Z77','','0000-00-00 00:00:00','2','19:05:46',0,'','janvi','2025-10-14 19:05:46','darshan','2025-10-14 20:25:10'),(796,0,0,'O','N','2526',680,0,'2025-10-14','2026-01-13',709,0,680,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:12:00','0000-00-00','','','','N','19:12:00','20:16:22','','','N','Y',NULL,'O','N','Z78','','0000-00-00 00:00:00','6','19:12:09',0,'','manshi','2025-10-14 19:12:09','drsagar','2025-10-14 20:16:22'),(797,0,0,'O','N','2526',681,0,'2025-10-14','2026-01-13',710,0,681,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:15:00','0000-00-00','','','','N','19:15:00','19:44:25','','','N','Y',NULL,'O','N','Z79','','0000-00-00 00:00:00','4','19:15:36',0,'','drashti','2025-10-14 19:15:36','drarchit','2025-10-14 19:44:25'),(798,0,0,'O','N','2526',682,0,'2025-10-14','2026-01-13',711,0,682,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:18:00','0000-00-00','','','','N','19:18:00','19:44:12','','','N','Y',NULL,'O','N','L19','','0000-00-00 00:00:00','4','19:18:57',0,'','drashti','2025-10-14 19:18:57','drarchit','2025-10-14 19:44:12'),(799,0,0,'O','N','2526',291,0,'2025-10-14','0000-00-00',307,0,291,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:20:00','0000-00-00','','','','N','19:20:00','00:00:00','','','N','N',NULL,'O','O','Z80','','0000-00-00 00:00:00','3','19:20:35',0,'','urvashi','2025-10-14 19:20:35','','0000-00-00 00:00:00'),(800,0,0,'O','N','2526',683,0,'2025-10-14','2026-01-13',712,0,683,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:39:00','0000-00-00','','','','N','19:39:00','00:00:00','','','N','N',NULL,'O','N','Z81','','0000-00-00 00:00:00','4','19:39:25',0,'','drashti','2025-10-14 19:39:25','','0000-00-00 00:00:00'),(801,0,0,'O','N','2526',1,0,'2025-10-14','0000-00-00',1,0,1,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:47:00','0000-00-00','','','','N','19:47:00','00:00:00','','','N','Y',NULL,'O','O','Z82','','0000-00-00 00:00:00','3','19:47:28',0,'','janvi','2025-10-14 19:47:28','','0000-00-00 00:00:00'),(802,0,0,'O','N','2526',684,0,'2025-10-14','2026-01-13',713,0,684,'N','','N','','','EMR','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:48:00','0000-00-00','','','','N','19:48:00','00:00:00','','','N','N',NULL,'O','N','Z83','','0000-00-00 00:00:00','4','19:48:09',0,'','urvashi','2025-10-14 19:48:09','','0000-00-00 00:00:00'),(803,0,0,'I','N','2526',0,59,'2025-10-14','2026-01-13',714,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','21:30:00','2025-10-16','','1','mo','N','21:30:00','12:10:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-14 21:50:36','mo','2025-10-16 12:52:05'),(804,0,0,'O','N','2526',685,0,'2025-10-15','2026-01-14',715,0,685,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:07:00','0000-00-00','','','','N','09:07:00','11:32:18','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','11:10:49',0,'','priyanshi','2025-10-15 09:07:13','drarchit','2025-10-15 11:32:18'),(805,0,0,'O','N','2526',686,0,'2025-10-15','2026-01-14',716,0,686,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:09:00','0000-00-00','','','','N','09:09:00','11:10:24','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','11:03:39',0,'','reception','2025-10-15 09:10:00','darshan','2025-10-15 11:10:24'),(806,0,0,'O','N','2526',687,0,'2025-10-15','2026-01-14',717,0,687,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:10:00','0000-00-00','','','','N','09:10:00','11:18:08','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','2','11:03:39',0,'','janvi','2025-10-15 09:11:02','darshan','2025-10-15 11:18:08'),(807,0,0,'O','N','2526',688,0,'2025-10-15','2026-01-14',718,0,688,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:13:00','0000-00-00','','','','N','09:13:00','18:30:54','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','5','17:54:15',0,'','priyanshi','2025-10-15 09:13:55','drjayant','2025-10-15 18:30:54'),(808,0,0,'O','N','2526',689,0,'2025-10-15','2026-01-14',719,0,689,'N','','N','','','ER','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:17:00','0000-00-00','','','','N','09:17:00','14:06:47','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','2','11:03:39',0,'','priyanshi','2025-10-15 09:17:19','darshan','2025-10-15 14:06:47'),(809,0,0,'I','N','2526',0,60,'2025-10-15','2026-01-14',720,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:00:00','2025-10-16','','1','mo','N','09:00:00','18:05:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-15 09:25:23','mo','2025-10-16 18:53:04'),(810,0,0,'O','N','2526',276,0,'2025-10-15','0000-00-00',292,0,276,'N','','N','','','INJECTION','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:28:00','0000-00-00','','','','N','09:28:00','11:32:26','','','N','Y',NULL,'O','O','Z05','','0000-00-00 00:00:00','4','11:10:49',0,'','priyanshi','2025-10-15 09:28:31','drarchit','2025-10-15 11:32:26'),(811,0,0,'O','N','2526',690,0,'2025-10-15','2026-01-14',721,0,690,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:33:00','0000-00-00','','','','N','09:33:00','13:20:46','','N','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','2','11:03:39',0,'','reception','2025-10-15 09:33:03','darshan','2025-10-15 13:20:46'),(812,0,0,'O','N','2526',181,0,'2025-10-15','0000-00-00',194,0,181,'N','','N','','','INJECTION','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:39:00','0000-00-00','','','','N','09:39:00','11:32:38','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','4','11:10:49',0,'','priyanshi','2025-10-15 09:39:23','drarchit','2025-10-15 11:32:38'),(813,0,0,'O','N','2526',691,0,'2025-10-15','2026-01-14',722,0,691,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:41:00','0000-00-00','','','','N','09:41:00','11:13:51','','','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','11:03:39',0,'','reception','2025-10-15 09:41:18','darshan','2025-10-15 11:13:51'),(814,0,0,'O','N','2526',692,0,'2025-10-15','2026-01-14',723,0,692,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:56:00','0000-00-00','','','','N','09:56:00','13:14:59','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','4','11:10:49',0,'','janvi','2025-10-15 09:57:04','drarchit','2025-10-15 13:14:59'),(815,0,0,'O','N','2526',693,0,'2025-10-15','2026-01-14',724,0,693,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:03:00','0000-00-00','','','','N','10:03:00','10:17:40','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','3','10:03:00',0,'','priyanshi','2025-10-15 10:03:00','drpratapsinh','2025-10-15 10:17:40'),(816,0,0,'O','N','2526',694,0,'2025-10-15','2026-01-14',725,0,694,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:22:00','0000-00-00','','','','N','10:22:00','18:33:42','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','6','10:22:14',0,'','manshi','2025-10-15 10:22:14','drsagar','2025-10-15 18:33:42'),(817,0,0,'O','N','2526',695,0,'2025-10-15','2026-01-14',726,0,695,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:26:00','0000-00-00','','','','N','10:26:00','11:58:42','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','3','10:26:27',0,'','reception','2025-10-15 10:26:27','drpratapsinh','2025-10-15 11:58:42'),(818,0,0,'O','N','2526',696,0,'2025-10-15','2026-01-14',727,0,696,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','11:56:41','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','3','10:33:57',0,'','drashti','2025-10-15 10:33:57','drpratapsinh','2025-10-15 11:56:41'),(819,0,0,'O','N','2526',79,0,'2025-10-15','0000-00-00',90,0,79,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','14:31:13','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','2','11:03:39',0,'','reception','2025-10-15 10:37:04','darshan','2025-10-15 14:31:13'),(820,0,0,'O','N','2526',697,0,'2025-10-15','2026-01-14',728,0,697,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','11:24:32','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','11:03:39',0,'','reception','2025-10-15 10:39:14','darshan','2025-10-15 11:24:32'),(821,0,0,'O','N','2526',698,0,'2025-10-15','2026-01-14',729,0,698,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','11:32:52','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','4','11:10:49',0,'','drashti','2025-10-15 10:46:05','drarchit','2025-10-15 11:32:52'),(822,0,0,'O','N','2526',16,0,'2025-10-15','0000-00-00',16,0,16,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','11:33:06','','','N','Y',NULL,'O','O','Z14','','0000-00-00 00:00:00','4','11:10:49',0,'','drashti','2025-10-15 10:46:36','drarchit','2025-10-15 11:33:06'),(823,0,0,'O','N','2526',699,0,'2025-10-15','2026-01-14',730,0,699,'N','','N','','','NV','','N','D06','','N',54,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','14:31:32','','N','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','11:03:39',0,'','reception','2025-10-15 10:46:43','darshan','2025-10-15 14:31:32'),(824,0,0,'O','N','2526',700,0,'2025-10-15','2026-01-14',731,0,700,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','13:44:23','','N','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','11:03:39',0,'','reception','2025-10-15 10:48:21','darshan','2025-10-15 13:44:23'),(825,0,0,'O','N','2526',701,0,'2025-10-15','2026-01-14',732,0,701,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:49:00','0000-00-00','','','','N','10:49:00','12:00:27','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','2','11:03:39',0,'','janvi','2025-10-15 10:49:41','darshan','2025-10-15 12:00:27'),(826,0,0,'O','N','2526',702,0,'2025-10-15','2026-01-14',733,0,702,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','11:03:15','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','6','10:57:12',0,'','manshi','2025-10-15 10:57:12','drsagar','2025-10-15 11:03:15'),(827,0,0,'O','N','2526',26,0,'2025-10-15','0000-00-00',27,0,26,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','11:38:39','','','N','Y',NULL,'O','O','Z18','','0000-00-00 00:00:00','7','10:58:52',0,'','manshi','2025-10-15 10:58:52','drridham','2025-10-15 11:38:39'),(828,0,0,'O','N','2526',703,0,'2025-10-15','2026-01-14',734,0,703,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','11:55:32','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','4','11:10:49',0,'','drashti','2025-10-15 10:59:26','drarchit','2025-10-15 11:55:32'),(829,0,0,'O','N','2526',704,0,'2025-10-15','2026-01-14',735,0,704,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:00:00','0000-00-00','','','','N','11:00:00','11:12:34','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','6','11:00:31',0,'','manshi','2025-10-15 11:00:31','drsagar','2025-10-15 11:12:34'),(830,0,0,'O','N','2526',705,0,'2025-10-15','2026-01-14',736,0,705,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','11:56:01','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','3','11:01:20',0,'','drashti','2025-10-15 11:01:20','drpratapsinh','2025-10-15 11:56:01'),(831,0,0,'O','N','2526',335,0,'2025-10-15','0000-00-00',351,0,335,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','11:11:24','','','N','Y',NULL,'O','O','Z22','','0000-00-00 00:00:00','3','11:03:19',0,'','drashti','2025-10-15 11:03:19','drpratapsinh','2025-10-15 11:11:24'),(832,0,0,'O','N','2526',706,0,'2025-10-15','2026-01-14',737,0,706,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','11:43:44','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','2','11:06:19',0,'','reception','2025-10-15 11:06:19','darshan','2025-10-15 11:43:44'),(833,0,0,'O','N','2526',707,0,'2025-10-15','2026-01-14',738,0,707,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','11:20:34','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','6','11:09:21',0,'','manshi','2025-10-15 11:09:21','drsagar','2025-10-15 11:20:34'),(834,0,0,'O','N','2526',708,0,'2025-10-15','2026-01-14',739,0,708,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','11:32:07','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','4','11:11:34',0,'','drashti','2025-10-15 11:11:34','drarchit','2025-10-15 11:32:07'),(835,0,0,'O','N','2526',423,0,'2025-10-15','0000-00-00',445,0,423,'N','','N','','','REPORT','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','12:13:23','','N','N','Y',NULL,'O','O','Z24','','0000-00-00 00:00:00','4','11:16:56',0,'','drashti','2025-10-15 11:16:56','drarchit','2025-10-15 12:13:23'),(836,0,0,'O','N','2526',709,0,'2025-10-15','2026-01-14',740,0,709,'N','','N','','','NC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','12:36:13','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','4','11:19:11',0,'','drashti','2025-10-15 11:19:10','drarchit','2025-10-15 12:36:13'),(837,0,0,'O','N','2526',710,0,'2025-10-15','2026-01-14',741,0,710,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','12:46:08','','N','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','2','11:20:19',0,'','reception','2025-10-15 11:20:19','darshan','2025-10-15 12:46:08'),(838,0,0,'O','N','2526',711,0,'2025-10-15','2026-01-14',742,0,711,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','17:30:22','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','11:23:44',0,'','reception','2025-10-15 11:23:44','darshan','2025-10-15 17:30:22'),(839,0,0,'O','N','2526',712,0,'2025-10-15','2026-01-14',743,0,712,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','12:13:37','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','4','11:23:57',0,'','janvi','2025-10-15 11:23:57','drarchit','2025-10-15 12:13:37'),(840,0,0,'O','N','2526',713,0,'2025-10-15','2026-01-14',744,0,713,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','11:48:27','','','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','4','11:25:12',0,'','janvi','2025-10-15 11:25:12','drarchit','2025-10-15 11:48:27'),(841,0,0,'I','N','2526',451,61,'2025-10-15','2026-01-14',477,0,451,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','2025-10-16','','1','mo','N','11:25:00','18:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-15 11:28:12','mo','2025-10-16 18:50:02'),(842,0,0,'O','N','2526',714,0,'2025-10-15','2026-01-14',745,0,714,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','12:06:51','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','11:29:15',0,'','drashti','2025-10-15 11:29:15','drarchit','2025-10-15 12:06:51'),(843,0,0,'O','N','2526',715,0,'2025-10-15','2026-01-14',746,0,715,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','12:05:33','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','2','11:31:07',0,'','reception','2025-10-15 11:31:07','darshan','2025-10-15 12:05:33'),(844,0,0,'O','N','2526',716,0,'2025-10-15','2026-01-14',747,0,716,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','13:47:39','','N','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','11:38:55',0,'','reception','2025-10-15 11:38:55','darshan','2025-10-15 13:47:39'),(845,0,0,'O','N','2526',47,0,'2025-10-15','0000-00-00',53,0,47,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','11:59:00','','','N','Y',NULL,'O','O','Z27','','0000-00-00 00:00:00','3','11:44:49',0,'','janvi','2025-10-15 11:44:49','drpratapsinh','2025-10-15 11:59:00'),(846,0,0,'O','N','2526',717,0,'2025-10-15','2026-01-14',748,0,717,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:49:00','0000-00-00','','','','N','11:49:00','12:41:17','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','4','11:49:15',0,'','drashti','2025-10-15 11:49:15','drarchit','2025-10-15 12:41:17'),(847,0,0,'O','N','2526',718,0,'2025-10-15','2026-01-14',749,0,718,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','12:41:07','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','4','11:51:40',0,'','drashti','2025-10-15 11:51:40','drarchit','2025-10-15 12:41:07'),(848,0,0,'O','N','2526',719,0,'2025-10-15','2026-01-14',750,0,719,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','12:42:34','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','4','11:52:17',0,'','janvi','2025-10-15 11:52:17','drarchit','2025-10-15 12:42:34'),(849,0,0,'O','N','2526',720,0,'2025-10-15','2026-01-14',751,0,720,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','12:38:03','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','2','11:52:55',0,'','reception','2025-10-15 11:52:54','darshan','2025-10-15 12:38:03'),(850,0,0,'O','N','2526',721,0,'2025-10-15','2026-01-14',752,0,721,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:53:00','0000-00-00','','','','N','11:53:00','13:12:51','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','4','11:53:55',0,'','drashti','2025-10-15 11:53:55','drarchit','2025-10-15 13:12:51'),(851,0,0,'O','N','2526',722,0,'2025-10-15','2026-01-14',753,0,722,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','13:16:56','','N','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','2','11:54:12',0,'','reception','2025-10-15 11:54:12','darshan','2025-10-15 13:16:56'),(852,0,0,'O','N','2526',723,0,'2025-10-15','2026-01-14',754,0,723,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','13:01:01','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','4','12:06:57',0,'','drashti','2025-10-15 12:06:57','drarchit','2025-10-15 13:01:01'),(853,0,0,'O','N','2526',476,0,'2025-10-15','0000-00-00',502,0,476,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:10:00','0000-00-00','','','','N','12:10:00','00:00:00','','','N','N',NULL,'O','O','Z30','','0000-00-00 00:00:00','3','12:10:08',0,'','janvi','2025-10-15 12:10:08','','0000-00-00 00:00:00'),(854,0,0,'O','N','2526',724,0,'2025-10-15','2026-01-14',755,0,724,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:10:00','0000-00-00','','','','N','12:10:00','13:09:18','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','4','12:10:10',0,'','drashti','2025-10-15 12:10:10','drarchit','2025-10-15 13:09:18'),(855,0,0,'O','N','2526',725,0,'2025-10-15','2026-01-14',756,0,725,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:11:00','0000-00-00','','','','N','12:11:00','13:23:12','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','4','12:11:53',0,'','janvi','2025-10-15 12:11:53','drarchit','2025-10-15 13:23:12'),(856,0,0,'O','N','2526',726,0,'2025-10-15','2026-01-14',757,0,726,'N','','N','','','NV','','N','D06','','N',55,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:13:00','0000-00-00','','','','N','12:13:00','17:18:08','','N','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','2','12:13:16',0,'','reception','2025-10-15 12:13:16','darshan','2025-10-15 17:18:08'),(857,0,0,'O','N','2526',407,0,'2025-10-15','0000-00-00',429,0,407,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:14:00','0000-00-00','','','','N','12:14:00','13:31:06','','','N','Y',NULL,'O','O','Z34','','0000-00-00 00:00:00','4','12:14:06',0,'','janvi','2025-10-15 12:14:05','drarchit','2025-10-15 13:31:06'),(858,0,0,'O','N','2526',727,0,'2025-10-15','2026-01-14',758,0,727,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:20:00','0000-00-00','','','','N','12:20:00','13:30:13','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','4','12:20:27',0,'','janvi','2025-10-15 12:20:27','drarchit','2025-10-15 13:30:13'),(859,0,0,'O','N','2526',728,0,'2025-10-15','2026-01-14',759,0,728,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:20:00','0000-00-00','','','','N','12:20:00','13:13:14','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','12:20:34',0,'','drashti','2025-10-15 12:20:34','darshan','2025-10-15 13:13:14'),(860,0,0,'O','N','2526',729,0,'2025-10-15','2026-01-14',760,0,729,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:23:00','0000-00-00','','','','N','12:23:00','18:33:53','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','6','12:23:50',0,'','manshi','2025-10-15 12:23:49','drsagar','2025-10-15 18:33:53'),(861,0,0,'O','N','2526',730,0,'2025-10-15','2026-01-14',761,0,730,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','13:18:35','','','N','Y',NULL,'O','N','J04','','0000-00-00 00:00:00','4','12:27:05',0,'','janvi','2025-10-15 12:27:05','drarchit','2025-10-15 13:18:35'),(862,0,0,'O','N','2526',731,0,'2025-10-15','2026-01-14',762,0,731,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:31:00','0000-00-00','','','','N','12:31:00','00:00:00','','','N','N',NULL,'O','N','J05','','0000-00-00 00:00:00','4','12:31:02',0,'','drashti','2025-10-15 12:31:02','','0000-00-00 00:00:00'),(863,0,0,'O','N','2526',732,0,'2025-10-15','2026-01-14',763,0,732,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','13:53:14','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','12:35:04',0,'','reception','2025-10-15 12:35:04','darshan','2025-10-15 13:53:14'),(864,0,0,'O','N','2526',733,0,'2025-10-15','2026-01-14',764,0,733,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:39:00','0000-00-00','','','','N','12:39:00','13:40:38','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','4','12:40:03',0,'','reception','2025-10-15 12:40:03','drarchit','2025-10-15 13:40:38'),(865,0,0,'O','N','2526',734,0,'2025-10-15','2026-01-14',765,0,734,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:50:00','0000-00-00','','','','N','12:50:00','13:44:24','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','4','12:50:47',0,'','drashti','2025-10-15 12:50:47','drarchit','2025-10-15 13:44:24'),(866,0,0,'O','N','2526',735,0,'2025-10-15','2026-01-14',766,0,735,'N','','N','','','NV','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:59:00','0000-00-00','','','','N','12:59:00','13:51:56','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','4','13:00:01',0,'','reception','2025-10-15 13:00:01','drarchit','2025-10-15 13:51:56'),(867,0,0,'O','N','2526',736,0,'2025-10-15','2026-01-14',767,0,736,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:06:00','0000-00-00','','','','N','13:06:00','13:57:50','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','4','13:06:17',0,'','drashti','2025-10-15 13:06:17','drarchit','2025-10-15 13:57:50'),(868,0,0,'O','N','2526',440,0,'2025-10-15','0000-00-00',463,0,440,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:22:00','0000-00-00','','','','N','13:22:00','00:00:00','','','N','N',NULL,'O','O','Z42','','0000-00-00 00:00:00','3','13:22:05',0,'','reception','2025-10-15 13:22:05','','0000-00-00 00:00:00'),(869,0,0,'O','N','2526',737,0,'2025-10-15','2026-01-14',768,0,737,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:23:00','0000-00-00','','','','N','13:23:00','18:26:02','','','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','4','13:23:34',0,'','reception','2025-10-15 13:23:34','drarchit','2025-10-15 18:26:02'),(870,0,0,'O','N','2526',738,0,'2025-10-15','2026-01-14',769,0,738,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:25:00','0000-00-00','','','','N','13:25:00','14:13:28','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','2','13:25:48',0,'','reception','2025-10-15 13:25:48','darshan','2025-10-15 14:13:28'),(871,0,0,'I','N','2526',721,62,'2025-10-15','2026-01-14',752,0,721,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:23:00','2025-10-17','','1','mo','N','13:23:00','09:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-15 13:29:27','mo','2025-10-17 12:02:33'),(872,0,0,'O','N','2526',739,0,'2025-10-15','2026-01-14',770,0,739,'N','','N','','','FOC','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:50:00','0000-00-00','','','','N','13:50:00','14:12:51','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','7','13:50:19',0,'','manshi','2025-10-15 13:50:19','drridham','2025-10-15 14:12:51'),(873,0,0,'O','N','2526',740,0,'2025-10-15','2026-01-14',771,0,740,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:52:00','0000-00-00','','','','N','13:52:00','14:12:59','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','7','13:52:37',0,'','manshi','2025-10-15 13:52:37','drridham','2025-10-15 14:12:59'),(874,0,0,'O','N','2526',741,0,'2025-10-15','2026-01-14',772,0,741,'N','','N','','','NV','','N','D06','','N',56,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:03:00','0000-00-00','','','','N','16:03:00','19:22:30','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:03:49',0,'','priyanshi','2025-10-15 16:03:49','darshan','2025-10-15 19:22:30'),(875,0,0,'O','N','2526',742,0,'2025-10-15','2026-01-14',773,0,742,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:30:00','0000-00-00','','','','N','16:30:00','17:56:53','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','2','16:30:34',0,'','reception','2025-10-15 16:30:34','darshan','2025-10-15 17:56:53'),(876,0,0,'O','N','2526',743,0,'2025-10-15','2026-01-14',774,0,743,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:32:00','0000-00-00','','','','N','16:32:00','17:17:50','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:32:33',0,'','priyanshi','2025-10-15 16:32:33','darshan','2025-10-15 17:17:50'),(877,0,0,'O','N','2526',744,0,'2025-10-15','2026-01-14',775,0,744,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:42:00','0000-00-00','','','','N','16:42:00','17:52:02','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','16:42:37',0,'','priyanshi','2025-10-15 16:42:37','darshan','2025-10-15 17:52:02'),(878,0,0,'O','N','2526',745,0,'2025-10-15','2026-01-14',776,0,745,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:50:00','0000-00-00','','','','N','16:50:00','17:53:21','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','2','16:50:32',0,'','priyanshi','2025-10-15 16:50:32','darshan','2025-10-15 17:53:21'),(879,0,0,'O','N','2526',746,0,'2025-10-15','2026-01-14',777,0,746,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:00:00','0000-00-00','','','','N','17:00:00','17:38:22','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:00:44',0,'','reception','2025-10-15 17:00:44','darshan','2025-10-15 17:38:22'),(880,0,0,'O','N','2526',747,0,'2025-10-15','2026-01-14',778,0,747,'N','','N','','','NV','','N','D06','','N',59,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:02:00','0000-00-00','','','','N','17:02:00','18:59:41','','N','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:02:32',0,'','priyanshi','2025-10-15 17:02:32','darshan','2025-10-15 18:59:41'),(881,0,0,'O','N','2526',748,0,'2025-10-15','2026-01-14',779,0,748,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:07:00','0000-00-00','','','','N','17:07:00','17:49:02','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:07:03',0,'','reception','2025-10-15 17:07:03','darshan','2025-10-15 17:49:02'),(882,0,0,'I','N','2526',0,63,'2025-10-15','2026-01-14',780,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:00:00','2025-10-18','','1','mo','N','17:00:00','12:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-15 17:10:52','mo','2025-10-18 13:10:22'),(883,0,0,'O','N','2526',749,0,'2025-10-15','2026-01-14',781,0,749,'N','','N','','','NE','','N','D06','','N',58,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:18:00','0000-00-00','','','','N','17:18:00','18:04:31','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','2','17:18:15',0,'','reception','2025-10-15 17:18:15','darshan','2025-10-15 18:04:31'),(884,0,0,'O','N','2526',211,0,'2025-10-15','0000-00-00',224,0,211,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:31:00','0000-00-00','','','','N','17:31:00','00:00:00','','','N','N',NULL,'O','O','Z50','','0000-00-00 00:00:00','3','17:31:21',0,'','drashti','2025-10-15 17:31:21','','0000-00-00 00:00:00'),(885,0,0,'O','N','2526',750,0,'2025-10-15','2026-01-14',782,0,750,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:35:00','0000-00-00','','','','N','17:35:00','18:07:58','','','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:35:34',0,'','reception','2025-10-15 17:35:34','darshan','2025-10-15 18:07:58'),(886,0,0,'O','N','2526',751,0,'2025-10-15','2026-01-14',783,0,751,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','18:14:02','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','2','17:40:50',0,'','drashti','2025-10-15 17:40:50','darshan','2025-10-15 18:14:02'),(887,0,0,'O','N','2526',752,0,'2025-10-15','2026-01-14',784,0,752,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','18:02:27','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','5','17:54:15',0,'','janvi','2025-10-15 17:41:34','drjayant','2025-10-15 18:02:27'),(888,0,0,'O','N','2526',753,0,'2025-10-15','2026-01-14',785,0,753,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:45:00','0000-00-00','','','','N','17:45:00','18:08:31','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','5','17:54:15',0,'','drashti','2025-10-15 17:45:14','drjayant','2025-10-15 18:08:31'),(889,0,0,'O','N','2526',754,0,'2025-10-15','2026-01-14',786,0,754,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:45:00','0000-00-00','','','','N','17:45:00','18:12:03','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','5','17:54:15',0,'','janvi','2025-10-15 17:45:40','drjayant','2025-10-15 18:12:03'),(890,0,0,'O','N','2526',755,0,'2025-10-15','2026-01-14',787,0,755,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','19:28:36','','N','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:50:06',0,'','reception','2025-10-15 17:50:06','darshan','2025-10-15 19:28:36'),(891,0,0,'O','N','2526',245,0,'2025-10-15','0000-00-00',260,0,245,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','18:15:49','','','N','Y',NULL,'O','O','Z55','','0000-00-00 00:00:00','5','17:54:15',0,'','drashti','2025-10-15 17:50:24','drjayant','2025-10-15 18:15:49'),(892,0,0,'O','N','2526',756,0,'2025-10-15','2026-01-14',788,0,756,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','00:00:00','','','N','N',NULL,'O','N','L08','','0000-00-00 00:00:00','4','17:51:51',0,'','drashti','2025-10-15 17:51:51','','0000-00-00 00:00:00'),(893,0,0,'O','N','2526',757,0,'2025-10-15','2026-01-14',56,0,757,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:54:00','0000-00-00','','','','N','17:54:00','18:26:43','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','5','17:54:34',0,'','janvi','2025-10-15 17:54:34','drjayant','2025-10-15 18:26:43'),(894,0,0,'O','N','2526',758,0,'2025-10-15','2026-01-14',789,0,758,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:58:00','0000-00-00','','','','N','17:58:00','18:26:54','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','17:58:40',0,'','reception','2025-10-15 17:58:40','darshan','2025-10-15 18:26:54'),(895,0,0,'O','N','2526',528,0,'2025-10-15','0000-00-00',554,0,528,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:08:00','0000-00-00','','','','N','18:08:00','18:33:23','','','N','Y',NULL,'O','O','L10','','0000-00-00 00:00:00','4','18:08:00',0,'','drashti','2025-10-15 18:08:00','drarchit','2025-10-15 18:33:23'),(896,0,0,'O','N','2526',759,0,'2025-10-15','2026-01-14',790,0,759,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:08:00','0000-00-00','','','','N','18:08:00','18:28:13','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','6','18:08:31',0,'','manshi','2025-10-15 18:08:31','drsagar','2025-10-15 18:28:13'),(897,0,0,'O','N','2526',760,0,'2025-10-15','2026-01-14',791,0,760,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','18:31:46','','','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','2','18:11:56',0,'','reception','2025-10-15 18:11:56','darshan','2025-10-15 18:31:46'),(898,0,0,'O','N','2526',293,0,'2025-10-15','0000-00-00',309,0,293,'N','','N','','','FOLLOWUP C','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','18:36:34','','','N','Y',NULL,'O','O','L12','','0000-00-00 00:00:00','4','18:12:24',0,'','drashti','2025-10-15 18:12:24','drarchit','2025-10-15 18:36:34'),(899,0,0,'O','N','2526',9,0,'2025-10-15','0000-00-00',9,0,9,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','18:27:14','','','N','Y',NULL,'O','O','Z58','','0000-00-00 00:00:00','5','18:14:57',0,'','janvi','2025-10-15 18:14:57','drjayant','2025-10-15 18:27:14'),(900,0,0,'O','N','2526',761,0,'2025-10-15','2026-01-14',792,0,761,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','00:00:00','','','N','N',NULL,'O','N','Z59','','0000-00-00 00:00:00','4','18:15:20',0,'','reception','2025-10-15 18:15:19','','0000-00-00 00:00:00'),(901,0,0,'O','N','2526',753,0,'2025-10-15','0000-00-00',785,0,753,'N','','N','','','INJECTION','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','18:31:21','','','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','5','18:17:03',0,'','janvi','2025-10-15 18:17:03','drjayant','2025-10-15 18:31:21'),(902,0,0,'O','N','2526',762,0,'2025-10-15','2026-01-14',793,0,762,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','18:36:45','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','2','18:23:13',0,'','reception','2025-10-15 18:23:13','darshan','2025-10-15 18:36:45'),(903,0,0,'O','N','2526',763,0,'2025-10-15','2026-01-14',794,0,763,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:25:00','0000-00-00','','','','N','18:25:00','00:00:00','','','N','N',NULL,'O','N','L14','','0000-00-00 00:00:00','4','18:25:50',0,'','drashti','2025-10-15 18:25:50','','0000-00-00 00:00:00'),(904,0,0,'O','N','2526',764,0,'2025-10-15','2026-01-14',795,0,764,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','19:01:54','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','2','18:29:34',0,'','reception','2025-10-15 18:29:34','darshan','2025-10-15 19:01:54'),(905,0,0,'O','N','2526',177,0,'2025-10-15','0000-00-00',190,0,177,'N','','N','','','FOLLOWUP C','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','18:43:54','Y','','N','N',NULL,'O','O','Z61','','0000-00-00 00:00:00','2','18:30:24',0,'','drashti','2025-10-15 18:30:24','','0000-00-00 00:00:00'),(906,0,0,'O','N','2526',765,0,'2025-10-15','2026-01-14',796,0,765,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','19:55:44','','N','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','2','18:30:52',0,'','reception','2025-10-15 18:30:52','darshan','2025-10-15 19:55:44'),(907,0,0,'O','N','2526',766,0,'2025-10-15','2026-01-14',797,0,766,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','19:27:40','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','2','18:34:00',0,'','reception','2025-10-15 18:34:00','darshan','2025-10-15 19:27:39'),(908,0,0,'O','N','2526',767,0,'2025-10-15','2026-01-14',798,0,767,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','18:45:02','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','5','18:34:41',0,'','drashti','2025-10-15 18:34:41','drjayant','2025-10-15 18:45:02'),(909,0,0,'O','N','2526',768,0,'2025-10-15','2026-01-14',799,0,768,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:35:00','0000-00-00','','','','N','18:35:00','00:00:00','','','N','N',NULL,'O','N','Z64','','0000-00-00 00:00:00','4','18:35:19',0,'','janvi','2025-10-15 18:35:19','','0000-00-00 00:00:00'),(910,0,0,'O','N','2526',769,0,'2025-10-15','2026-01-14',800,0,769,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','19:33:11','','','N','Y',NULL,'O','N','Z65','','0000-00-00 00:00:00','5','18:36:23',0,'','janvi','2025-10-15 18:36:23','drjayant','2025-10-15 19:33:11'),(911,0,0,'O','N','2526',770,0,'2025-10-15','2026-01-14',801,0,770,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:38:00','0000-00-00','','','','N','18:38:00','19:38:01','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','5','18:38:56',0,'','janvi','2025-10-15 18:38:56','drjayant','2025-10-15 19:38:00'),(912,0,0,'O','N','2526',771,0,'2025-10-15','2026-01-14',802,0,771,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:39:00','0000-00-00','','','','N','18:39:00','00:00:00','','','N','N',NULL,'O','N','Z67','','0000-00-00 00:00:00','4','18:39:59',0,'','drashti','2025-10-15 18:39:59','','0000-00-00 00:00:00'),(913,0,0,'O','N','2526',772,0,'2025-10-15','2026-01-14',803,0,772,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','19:02:57','','','N','Y',NULL,'O','N','Z68','','0000-00-00 00:00:00','6','18:40:21',0,'','manshi','2025-10-15 18:40:21','drsagar','2025-10-15 19:02:57'),(914,0,0,'O','N','2526',341,0,'2025-10-15','0000-00-00',357,0,341,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','00:00:00','','','N','N',NULL,'O','O','Z69','','0000-00-00 00:00:00','3','18:40:55',0,'','janvi','2025-10-15 18:40:55','','0000-00-00 00:00:00'),(915,0,0,'O','N','2526',773,0,'2025-10-15','2026-01-14',804,0,773,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:42:00','0000-00-00','','','','N','18:42:00','00:00:00','','','N','N',NULL,'O','N','Z70','','0000-00-00 00:00:00','4','18:42:46',0,'','drashti','2025-10-15 18:42:46','','0000-00-00 00:00:00'),(916,0,0,'O','N','2526',774,0,'2025-10-15','2026-01-14',805,0,774,'N','','N','','','NV','','N','D06','','N',4,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','20:05:24','','N','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','2','18:49:02',0,'','reception','2025-10-15 18:49:02','darshan','2025-10-15 20:05:24'),(917,0,0,'O','N','2526',775,0,'2025-10-15','2026-01-14',806,0,775,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:13:08','','','N','Y',NULL,'O','N','Z72','','0000-00-00 00:00:00','5','18:51:25',0,'','janvi','2025-10-15 18:51:25','drjayant','2025-10-15 19:13:08'),(918,0,0,'O','N','2526',776,0,'2025-10-15','2026-01-14',807,0,776,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','19:21:12','','','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','2','18:54:04',0,'','reception','2025-10-15 18:54:03','darshan','2025-10-15 19:21:12'),(919,0,0,'O','N','2526',242,0,'2025-10-15','0000-00-00',257,0,242,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:04:00','0000-00-00','','','','N','19:04:00','19:16:47','','','N','Y',NULL,'O','O','Z73','','0000-00-00 00:00:00','5','19:04:30',0,'','drashti','2025-10-15 19:04:30','drjayant','2025-10-15 19:16:47'),(920,0,0,'O','N','2526',777,0,'2025-10-15','2026-01-14',808,0,777,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:08:00','0000-00-00','','','','N','19:08:00','18:48:28','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','2','19:08:07',0,'','reception','2025-10-15 19:08:07','darshan','2025-10-16 18:48:28'),(921,0,0,'O','N','2526',778,0,'2025-10-15','2026-01-14',809,0,778,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:09:00','0000-00-00','','','','N','19:09:00','00:00:00','','','N','N',NULL,'O','N','Z75','','0000-00-00 00:00:00','3','19:09:57',0,'','janvi','2025-10-15 19:09:57','','0000-00-00 00:00:00'),(922,0,0,'O','N','2526',140,0,'2025-10-15','0000-00-00',151,0,140,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:13:00','0000-00-00','','','','N','19:13:00','00:00:00','','','N','N',NULL,'O','O','Z76','','0000-00-00 00:00:00','3','19:13:52',0,'','janvi','2025-10-15 19:13:52','','0000-00-00 00:00:00'),(923,0,0,'O','N','2526',779,0,'2025-10-15','2026-01-14',810,0,779,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:21:00','0000-00-00','','','','N','19:21:00','20:05:03','','','N','Y',NULL,'O','N','Z77','','0000-00-00 00:00:00','2','19:21:20',0,'','reception','2025-10-15 19:21:20','darshan','2025-10-15 20:05:03'),(924,0,0,'O','N','2526',780,0,'2025-10-15','2026-01-14',811,0,780,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:24:00','0000-00-00','','','','N','19:24:00','00:00:00','','','N','N',NULL,'O','N','Z78','','0000-00-00 00:00:00','4','19:24:29',0,'','drashti','2025-10-15 19:24:29','','0000-00-00 00:00:00'),(925,0,0,'O','N','2526',781,0,'2025-10-15','2026-01-14',812,0,781,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:24:00','0000-00-00','','','','N','19:24:00','00:00:00','','','N','N',NULL,'O','N','Z79','','0000-00-00 00:00:00','4','19:24:46',0,'','janvi','2025-10-15 19:24:46','','0000-00-00 00:00:00'),(926,0,0,'O','N','2526',782,0,'2025-10-15','2026-01-14',813,0,782,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:37:00','0000-00-00','','','','N','19:37:00','00:00:00','','','N','N',NULL,'O','N','Z80','','0000-00-00 00:00:00','3','19:37:36',0,'','janvi','2025-10-15 19:37:36','','0000-00-00 00:00:00'),(927,0,0,'O','N','2526',783,0,'2025-10-15','2026-01-14',814,0,783,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:38:00','0000-00-00','','','','N','19:38:00','00:00:00','','','N','N',NULL,'O','N','Z81','','0000-00-00 00:00:00','3','19:38:10',0,'','reception','2025-10-15 19:38:10','','0000-00-00 00:00:00'),(928,0,0,'O','N','2526',784,0,'2025-10-15','2026-01-14',815,0,784,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:42:00','0000-00-00','','','','N','19:42:00','20:15:30','','','N','Y',NULL,'O','N','Z82','','0000-00-00 00:00:00','2','19:42:37',0,'','reception','2025-10-15 19:42:37','darshan','2025-10-15 20:15:30'),(929,0,0,'O','N','2526',785,0,'2025-10-15','2026-01-14',816,0,785,'N','','N','','','NC','','N','D27','','N',60,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:43:00','0000-00-00','','','','N','19:43:00','00:00:00','','','N','N',NULL,'O','N','Z83','','0000-00-00 00:00:00','4','19:43:44',0,'','janvi','2025-10-15 19:43:44','','0000-00-00 00:00:00'),(930,0,0,'O','N','2526',786,0,'2025-10-15','2026-01-14',817,0,786,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:57:00','0000-00-00','','','','N','19:57:00','20:03:00','','','N','Y',NULL,'O','N','Z84','','0000-00-00 00:00:00','3','19:57:50',0,'','reception','2025-10-15 19:57:50','drpratapsinh','2025-10-15 20:03:00'),(931,0,0,'O','N','2526',787,0,'2025-10-15','2026-01-14',818,0,787,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:03:00','0000-00-00','','','','N','20:03:00','00:00:00','','','N','N',NULL,'O','N','Z85','','0000-00-00 00:00:00','4','20:03:51',0,'','reception','2025-10-15 20:03:51','','0000-00-00 00:00:00'),(932,0,0,'O','N','2526',788,0,'2025-10-15','2026-01-14',819,0,788,'N','','N','','','','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:05:00','0000-00-00','','','','N','20:05:00','00:00:00','','','N','N',NULL,'O','N','Z86','','0000-00-00 00:00:00','4','20:05:31',0,'','reception','2025-10-15 20:05:31','','0000-00-00 00:00:00'),(933,0,0,'O','N','2526',789,0,'2025-10-15','2026-01-14',820,0,789,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:07:00','0000-00-00','','','','N','20:07:00','00:00:00','','','N','Y',NULL,'O','N','Z87','','0000-00-00 00:00:00','3','20:08:02',0,'','janvi','2025-10-15 20:08:02','','0000-00-00 00:00:00'),(934,0,0,'O','N','2526',166,0,'2025-10-15','0000-00-00',179,0,166,'N','','N','','','INJECTION','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:16:00','0000-00-00','','','','N','20:16:00','00:00:00','','','N','N',NULL,'O','O','Z88','','0000-00-00 00:00:00','4','20:16:31',0,'','drashti','2025-10-15 20:16:31','','0000-00-00 00:00:00'),(935,0,0,'O','N','2526',276,0,'2025-10-15','0000-00-00',292,0,276,'N','','N','','','','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:52:00','0000-00-00','','','','N','20:52:00','00:00:00','','','N','N',NULL,'O','O','Y02','','0000-00-00 00:00:00','4','20:52:40',0,'','reception','2025-10-15 20:52:40','','0000-00-00 00:00:00'),(936,0,0,'I','N','2526',769,64,'2025-10-15','2026-01-14',800,0,769,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','22:00:00','2025-10-18','','4','mo','Y','22:00:00','15:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-16 08:26:11','mo','2025-10-18 15:23:10'),(937,0,0,'O','N','2526',761,0,'2025-10-16','0000-00-00',792,0,761,'N','','N','','','','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:45:00','0000-00-00','','','','N','08:45:00','11:39:32','','','N','Y',NULL,'O','O','Z01','','0000-00-00 00:00:00','4','09:00:38',0,'','shweta','2025-10-16 09:00:38','drarchit','2025-10-16 11:39:32'),(938,0,0,'O','N','2526',790,0,'2025-10-16','2026-01-15',821,0,790,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:46:00','0000-00-00','','','','N','08:46:00','11:39:23','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','09:03:35',0,'','shweta','2025-10-16 09:03:35','drarchit','2025-10-16 11:39:23'),(939,0,0,'I','N','2526',709,65,'2025-10-15','2026-01-14',740,0,709,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','22:30:00','2025-10-20','','1','mo','N','22:30:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-16 09:07:59','mo','2025-10-20 11:57:40'),(940,0,0,'O','N','2526',791,0,'2025-10-16','2026-01-15',822,0,791,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:13:00','0000-00-00','','','','N','09:13:00','11:39:04','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','2','09:14:01',0,'','reception','2025-10-16 09:14:01','darshan','2025-10-16 11:39:04'),(941,0,0,'O','N','2526',276,0,'2025-10-16','0000-00-00',292,0,276,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:23:00','0000-00-00','','','','N','09:23:00','11:39:51','','','N','Y',NULL,'O','O','Z04','','0000-00-00 00:00:00','4','09:23:23',0,'','shweta','2025-10-16 09:23:23','drarchit','2025-10-16 11:39:51'),(942,0,0,'O','N','2526',792,0,'2025-10-16','2026-01-15',823,0,792,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:27:00','0000-00-00','','','','N','09:27:00','11:44:42','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','09:27:59',0,'','reception','2025-10-16 09:27:59','darshan','2025-10-16 11:44:42'),(943,0,0,'O','N','2526',793,0,'2025-10-16','2026-01-15',824,0,793,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:34:00','0000-00-00','','','','N','09:34:00','11:09:07','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','09:34:13',0,'','reception','2025-10-16 09:34:13','darshan','2025-10-16 11:09:07'),(944,0,0,'O','N','2526',794,0,'2025-10-16','2026-01-15',825,0,794,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:36:00','0000-00-00','','','','N','09:36:00','14:10:51','','N','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','09:36:16',0,'','reception','2025-10-16 09:36:16','darshan','2025-10-16 14:10:51'),(945,0,0,'O','N','2526',795,0,'2025-10-16','2026-01-15',826,0,795,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:48:00','0000-00-00','','','','N','09:48:00','12:31:20','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','2','09:48:15',0,'','reception','2025-10-16 09:48:15','darshan','2025-10-16 12:31:20'),(946,0,0,'O','N','2526',796,0,'2025-10-16','2026-01-15',827,0,796,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:11:00','0000-00-00','','','','N','10:11:00','14:20:03','','N','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','10:11:41',0,'','reception','2025-10-16 10:11:41','darshan','2025-10-16 14:20:03'),(947,0,0,'O','N','2526',797,0,'2025-10-16','2026-01-15',828,0,797,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','11:09:20','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','5','10:51:41',0,'','drashti','2025-10-16 10:16:41','drjayant','2025-10-16 11:09:20'),(948,0,0,'O','N','2526',798,0,'2025-10-16','2026-01-15',829,0,798,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:19:00','0000-00-00','','','','N','10:19:00','11:05:46','','','N','Y',NULL,'O','N','E02','','0000-00-00 00:00:00','2','10:19:26',0,'','reception','2025-10-16 10:19:26','darshan','2025-10-16 11:05:46'),(949,0,0,'O','N','2526',799,0,'2025-10-16','2026-01-15',830,0,799,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:21:00','0000-00-00','','','','N','10:21:00','12:33:58','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','2','10:21:35',0,'','reception','2025-10-16 10:21:35','darshan','2025-10-16 12:33:58'),(950,0,0,'O','N','2526',800,0,'2025-10-16','2026-01-15',831,0,800,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:24:00','0000-00-00','','','','N','10:24:00','13:30:23','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:24:03',0,'','reception','2025-10-16 10:24:03','darshan','2025-10-16 13:30:23'),(951,0,0,'O','N','2526',801,0,'2025-10-16','2026-01-15',832,0,801,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','12:20:37','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','10:28:47',0,'','reception','2025-10-16 10:28:47','darshan','2025-10-16 12:20:37'),(952,0,0,'O','N','2526',391,0,'2025-10-16','0000-00-00',413,0,391,'N','','N','','','FOLLOWUP E','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:31:00','0000-00-00','','','','N','10:31:00','11:59:12','','','N','Y',NULL,'O','O','G03','','0000-00-00 00:00:00','2','10:31:48',0,'','drashti','2025-10-16 10:31:48','darshan','2025-10-16 11:59:12'),(953,0,0,'O','N','2526',802,0,'2025-10-16','2026-01-15',833,0,802,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','15:22:32','','N','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','2','10:33:23',0,'','reception','2025-10-16 10:33:23','darshan','2025-10-16 15:22:32'),(954,0,0,'O','N','2526',803,0,'2025-10-16','2026-01-15',834,0,803,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:34:00','0000-00-00','','','','N','10:34:00','11:25:37','','','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:34:20',0,'','drashti','2025-10-16 10:34:20','darshan','2025-10-16 11:25:37'),(955,0,0,'O','N','2526',804,0,'2025-10-16','2026-01-15',835,0,804,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','11:30:08','','','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:38:26',0,'','reception','2025-10-16 10:38:26','darshan','2025-10-16 11:30:08'),(956,0,0,'O','N','2526',805,0,'2025-10-16','2026-01-15',836,0,805,'N','','N','','','','','N','D02','','N',61,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:42:00','0000-00-00','','','','N','10:42:00','11:07:43','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','3','10:42:44',0,'','janvi','2025-10-16 10:42:44','drpratapsinh','2025-10-16 11:07:43'),(957,0,0,'O','N','2526',806,0,'2025-10-16','2026-01-15',837,0,806,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','13:36:41','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','2','10:44:08',0,'','reception','2025-10-16 10:44:08','darshan','2025-10-16 13:36:41'),(958,0,0,'O','N','2526',807,0,'2025-10-16','2026-01-15',838,0,807,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','11:28:15','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','4','10:44:56',0,'','drashti','2025-10-16 10:44:56','drarchit','2025-10-16 11:28:15'),(959,0,0,'O','N','2526',808,0,'2025-10-16','2026-01-15',839,0,808,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:47:00','0000-00-00','','','','N','10:47:00','18:20:08','','','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','4','10:48:08',0,'','janvi','2025-10-16 10:48:08','drarchit','2025-10-16 18:20:08'),(960,0,0,'O','N','2526',809,0,'2025-10-16','2026-01-15',840,0,809,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:50:00','0000-00-00','','','','N','10:50:00','11:10:13','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','3','10:50:43',0,'','janvi','2025-10-16 10:50:43','drpratapsinh','2025-10-16 11:10:13'),(961,0,0,'O','N','2526',810,0,'2025-10-16','2026-01-15',841,0,810,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','13:40:32','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','2','11:05:46',0,'','reception','2025-10-16 10:51:19','darshan','2025-10-16 13:40:32'),(962,0,0,'O','N','2526',811,0,'2025-10-16','2026-01-15',842,0,811,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','11:14:08','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','5','10:56:01',0,'','janvi','2025-10-16 10:56:01','drjayant','2025-10-16 11:14:08'),(963,0,0,'O','N','2526',812,0,'2025-10-16','2026-01-15',843,0,812,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','13:45:07','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','11:05:46',0,'','reception','2025-10-16 10:57:39','darshan','2025-10-16 13:45:07'),(964,0,0,'O','N','2526',217,0,'2025-10-16','0000-00-00',230,0,217,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','11:12:32','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','3','10:58:49',0,'','janvi','2025-10-16 10:58:49','drpratapsinh','2025-10-16 11:12:32'),(965,0,0,'O','N','2526',813,0,'2025-10-16','2026-01-15',844,0,813,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','15:02:12','','N','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','2','11:25:37',0,'','reception','2025-10-16 11:06:20','darshan','2025-10-16 15:02:12'),(966,0,0,'O','N','2526',814,0,'2025-10-16','2026-01-15',845,0,814,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','19:33:35','','N','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','4','11:08:21',0,'','drashti','2025-10-16 11:08:21','drarchit','2025-10-16 19:33:35'),(967,0,0,'O','N','2526',815,0,'2025-10-16','2026-01-15',846,0,815,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','11:38:36','','','N','Y',NULL,'O','N','G05','','0000-00-00 00:00:00','4','11:12:49',0,'','drashti','2025-10-16 11:12:49','drarchit','2025-10-16 11:38:36'),(968,0,0,'O','N','2526',816,0,'2025-10-16','2026-01-15',847,0,816,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','11:38:18','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','4','11:14:32',0,'','drashti','2025-10-16 11:14:32','drarchit','2025-10-16 11:38:18'),(969,0,0,'O','N','2526',430,0,'2025-10-16','0000-00-00',453,0,430,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','12:11:55','','','N','Y',NULL,'O','O','Z20','','0000-00-00 00:00:00','3','11:17:02',0,'','drashti','2025-10-16 11:17:02','drpratapsinh','2025-10-16 12:11:55'),(970,0,0,'O','N','2526',817,0,'2025-10-16','2026-01-15',848,0,817,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','14:00:40','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','2','11:25:37',0,'','reception','2025-10-16 11:23:52','darshan','2025-10-16 14:00:40'),(971,0,0,'O','N','2526',818,0,'2025-10-16','2026-01-15',849,0,818,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','11:48:05','','','N','Y',NULL,'O','N','G06','','0000-00-00 00:00:00','4','11:25:13',0,'','drashti','2025-10-16 11:25:13','drarchit','2025-10-16 11:48:05'),(972,0,0,'O','N','2526',819,0,'2025-10-16','2026-01-15',850,0,819,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','18:20:30','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','4','11:26:21',0,'','janvi','2025-10-16 11:26:21','drarchit','2025-10-16 18:20:30'),(973,0,0,'O','N','2526',820,0,'2025-10-16','2026-01-15',851,0,820,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','12:03:15','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','11:28:00',0,'','drashti','2025-10-16 11:28:00','drarchit','2025-10-16 12:03:15'),(974,0,0,'O','N','2526',114,0,'2025-10-16','0000-00-00',125,0,114,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','12:11:41','','','N','Y',NULL,'O','O','Z23','','0000-00-00 00:00:00','3','11:28:26',0,'','janvi','2025-10-16 11:28:26','drpratapsinh','2025-10-16 12:11:41'),(975,0,0,'O','N','2526',821,0,'2025-10-16','2026-01-15',852,0,821,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','12:03:03','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','4','11:29:52',0,'','drashti','2025-10-16 11:29:52','drarchit','2025-10-16 12:03:03'),(976,0,0,'O','N','2526',822,0,'2025-10-16','2026-01-15',853,0,822,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','14:10:07','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','2','11:39:04',0,'','reception','2025-10-16 11:31:47','darshan','2025-10-16 14:10:07'),(977,0,0,'O','N','2526',823,0,'2025-10-16','2026-01-15',854,0,823,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','12:59:11','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','11:39:04',0,'','reception','2025-10-16 11:33:34','darshan','2025-10-16 12:59:11'),(978,0,0,'O','N','2526',824,0,'2025-10-16','2026-01-15',855,0,824,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','11:54:36','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','4','11:35:44',0,'','drashti','2025-10-16 11:35:44','drarchit','2025-10-16 11:54:36'),(979,0,0,'O','N','2526',825,0,'2025-10-16','2026-01-15',856,0,825,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','00:00:00','','Y','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','4','11:41:52',0,'','janvi','2025-10-16 11:41:52','drarchit','2025-10-16 18:25:25'),(980,0,0,'O','N','2526',826,0,'2025-10-16','2026-01-15',857,0,826,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','12:34:15','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','4','11:42:25',0,'','reception','2025-10-16 11:42:25','drarchit','2025-10-16 12:34:15'),(981,0,0,'O','N','2526',827,0,'2025-10-16','2026-01-15',858,0,827,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','14:17:07','','N','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:59:12',0,'','reception','2025-10-16 11:43:34','darshan','2025-10-16 14:17:07'),(982,0,0,'O','N','2526',828,0,'2025-10-16','2026-01-15',859,0,828,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','12:51:55','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','11:59:12',0,'','reception','2025-10-16 11:45:05','darshan','2025-10-16 12:51:55'),(983,0,0,'O','N','2526',829,0,'2025-10-16','2026-01-15',860,0,829,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','14:16:15','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','2','11:59:12',0,'','drashti','2025-10-16 11:45:49','darshan','2025-10-16 14:16:15'),(984,0,0,'O','N','2526',830,0,'2025-10-16','2026-01-15',861,0,830,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','14:24:54','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','2','11:59:12',0,'','reception','2025-10-16 11:47:26','darshan','2025-10-16 14:24:54'),(985,0,0,'O','N','2526',831,0,'2025-10-16','2026-01-15',862,0,831,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','12:51:08','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','4','11:54:01',0,'','drashti','2025-10-16 11:54:01','drarchit','2025-10-16 12:51:08'),(986,0,0,'O','N','2526',832,0,'2025-10-16','2026-01-15',863,0,832,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','14:48:03','','N','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','2','11:59:12',0,'','reception','2025-10-16 11:56:59','darshan','2025-10-16 14:48:03'),(987,0,0,'O','N','2526',833,0,'2025-10-16','2026-01-15',864,0,833,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:59:00','0000-00-00','','','','N','11:59:00','12:56:39','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','4','11:59:56',0,'','drashti','2025-10-16 11:59:56','drarchit','2025-10-16 12:56:39'),(988,0,0,'O','N','2526',834,0,'2025-10-16','2026-01-15',865,0,834,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:12:00','0000-00-00','','','','N','12:12:00','13:05:06','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','3','12:12:33',0,'','janvi','2025-10-16 12:12:33','drpratapsinh','2025-10-16 13:05:06'),(989,0,0,'O','N','2526',835,0,'2025-10-16','2026-01-15',866,0,835,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:14:00','0000-00-00','','','','N','12:14:00','12:23:09','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','5','12:14:11',0,'','drashti','2025-10-16 12:14:11','drjayant','2025-10-16 12:23:09'),(990,0,0,'O','N','2526',836,0,'2025-10-16','2026-01-15',867,0,836,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:15:00','0000-00-00','','','','N','12:15:00','13:15:51','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','6','12:15:51',0,'','manshi','2025-10-16 12:15:51','drsagar','2025-10-16 13:15:51'),(991,0,0,'O','N','2526',837,0,'2025-10-16','2026-01-15',868,0,837,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:18:00','0000-00-00','','','','N','12:18:00','18:19:59','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','4','12:18:44',0,'','drashti','2025-10-16 12:18:44','drarchit','2025-10-16 18:19:59'),(992,0,0,'O','N','2526',838,0,'2025-10-16','2026-01-15',869,0,838,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:23:00','0000-00-00','','','','N','12:23:00','15:14:45','','N','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','2','12:59:11',0,'','reception','2025-10-16 12:23:36','darshan','2025-10-16 15:14:45'),(993,0,0,'O','N','2526',839,0,'2025-10-16','2026-01-15',870,0,839,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:26:00','0000-00-00','','','','N','12:26:00','13:08:18','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','6','12:26:38',0,'','manshi','2025-10-16 12:26:38','drsagar','2025-10-16 13:08:18'),(994,0,0,'O','N','2526',840,0,'2025-10-16','2026-01-15',871,0,840,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','13:37:31','','','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','4','12:27:28',0,'','drashti','2025-10-16 12:27:28','drarchit','2025-10-16 13:37:31'),(995,0,0,'O','N','2526',841,0,'2025-10-16','2026-01-15',872,0,841,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:32:00','0000-00-00','','','','N','12:32:00','13:21:23','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','6','12:32:45',0,'','manshi','2025-10-16 12:32:45','drsagar','2025-10-16 13:21:23'),(996,0,0,'O','N','2526',842,0,'2025-10-16','2026-01-15',873,0,842,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:33:00','0000-00-00','','','','N','12:33:00','15:11:49','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','2','12:59:11',0,'','reception','2025-10-16 12:33:15','darshan','2025-10-16 15:11:49'),(997,0,0,'O','N','2526',843,0,'2025-10-16','2026-01-15',874,0,843,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:37:00','0000-00-00','','','','N','12:37:00','20:07:41','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','2','12:59:11',0,'','reception','2025-10-16 12:38:02','darshan','2025-10-16 20:07:41'),(998,0,0,'O','N','2526',844,0,'2025-10-16','2026-01-15',875,0,844,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:50:00','0000-00-00','','','','N','12:50:00','13:35:10','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','4','12:50:44',0,'','drashti','2025-10-16 12:50:44','drarchit','2025-10-16 13:35:10'),(999,0,0,'O','N','2526',845,0,'2025-10-16','2026-01-15',876,0,845,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:52:00','0000-00-00','','','','N','12:52:00','13:05:25','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','3','12:53:06',0,'','janvi','2025-10-16 12:53:06','drpratapsinh','2025-10-16 13:05:25'),(1000,0,0,'O','N','2526',846,0,'2025-10-16','2026-01-15',877,0,846,'N','','N','','','NC','','N','D27','','N',7,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:11:00','0000-00-00','','','','N','13:11:00','13:32:04','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','4','13:11:48',0,'','janvi','2025-10-16 13:11:48','drarchit','2025-10-16 13:32:04'),(1001,0,0,'O','N','2526',166,0,'2025-10-16','0000-00-00',179,0,166,'N','','N','','','INJECTION','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:24:00','0000-00-00','','','','N','13:24:00','13:34:57','','','N','Y',NULL,'O','O','Z43','','0000-00-00 00:00:00','4','13:24:40',0,'','drashti','2025-10-16 13:24:40','drarchit','2025-10-16 13:34:57'),(1002,0,0,'O','N','2526',847,0,'2025-10-16','2026-01-15',878,0,847,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:26:00','0000-00-00','','','','N','13:26:00','00:00:00','','','N','N',NULL,'O','N','Z44','','0000-00-00 00:00:00','3','13:27:00',0,'','janvi','2025-10-16 13:27:00','','0000-00-00 00:00:00'),(1003,0,0,'O','N','2526',834,0,'2025-10-16','0000-00-00',865,0,834,'N','','N','','','PROCEDURE','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:10:00','0000-00-00','','','','N','14:10:00','00:00:00','','','N','N',NULL,'O','O','Y01','','0000-00-00 00:00:00','3','14:10:52',0,'','drashti','2025-10-16 14:10:52','','0000-00-00 00:00:00'),(1004,0,0,'I','N','2526',0,66,'2025-10-16','2026-01-15',879,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:50:00','2025-10-18','','4','mo','N','13:50:00','17:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-16 14:11:22','riya','2025-10-18 16:56:13'),(1005,0,0,'O','N','2526',848,0,'2025-10-16','2026-01-15',880,0,848,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:38:00','0000-00-00','','','','N','14:38:00','14:55:04','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','2','14:39:00',0,'','reception','2025-10-16 14:39:00','darshan','2025-10-16 14:55:04'),(1006,0,0,'O','N','2526',849,0,'2025-10-16','2026-01-15',881,0,849,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:01:00','0000-00-00','','','','N','15:01:00','00:00:00','','','N','N',NULL,'O','N','Z46','','0000-00-00 00:00:00','4','15:01:14',0,'','reception','2025-10-16 15:01:14','','0000-00-00 00:00:00'),(1007,0,0,'O','N','2526',850,0,'2025-10-16','2026-01-15',882,0,850,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:36:00','0000-00-00','','','','N','16:36:00','17:24:18','','','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:36:31',0,'','drashti','2025-10-16 16:36:31','darshan','2025-10-16 17:24:18'),(1008,0,0,'O','N','2526',851,0,'2025-10-16','2026-01-15',883,0,851,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:46:00','0000-00-00','','','','N','16:46:00','00:00:00','','','N','N',NULL,'O','N','Z47','','0000-00-00 00:00:00','3','16:46:05',0,'','reception','2025-10-16 16:46:05','','0000-00-00 00:00:00'),(1009,0,0,'O','N','2526',852,0,'2025-10-16','2026-01-15',884,0,852,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:54:00','0000-00-00','','','','N','16:54:00','17:29:20','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:54:09',0,'','reception','2025-10-16 16:54:08','darshan','2025-10-16 17:29:20'),(1010,0,0,'O','N','2526',853,0,'2025-10-16','2026-01-15',885,0,853,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:59:00','0000-00-00','','','','N','16:59:00','00:00:00','','','N','N',NULL,'O','N','Z48','','0000-00-00 00:00:00','3','16:59:55',0,'','reception','2025-10-16 16:59:55','','0000-00-00 00:00:00'),(1011,0,0,'O','N','2526',854,0,'2025-10-16','2026-01-15',886,0,854,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:01:00','0000-00-00','','','','N','17:01:00','18:13:22','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','2','17:01:58',0,'','drashti','2025-10-16 17:01:58','darshan','2025-10-16 18:13:22'),(1012,0,0,'O','N','2526',855,0,'2025-10-16','2026-01-15',887,0,855,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:10:00','0000-00-00','','','','N','17:10:00','17:42:13','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:10:57',0,'','reception','2025-10-16 17:10:57','darshan','2025-10-16 17:42:13'),(1013,0,0,'O','N','2526',856,0,'2025-10-16','2026-01-15',888,0,856,'N','','N','','','FV','','N','D06','','N',63,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:11:00','0000-00-00','','','','N','17:11:00','17:49:29','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:11:55',0,'','drashti','2025-10-16 17:11:55','darshan','2025-10-16 17:49:29'),(1014,0,0,'O','N','2526',857,0,'2025-10-16','2026-01-15',889,0,857,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','19:38:52','','N','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:20:16',0,'','drashti','2025-10-16 17:20:16','darshan','2025-10-16 19:38:52'),(1015,0,0,'O','N','2526',858,0,'2025-10-16','2026-01-15',890,0,858,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:23:00','0000-00-00','','','','N','17:23:00','19:28:00','','N','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','2','17:23:28',0,'','reception','2025-10-16 17:23:28','darshan','2025-10-16 19:28:00'),(1016,0,0,'O','N','2526',859,0,'2025-10-16','2026-01-15',891,0,859,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:34:00','0000-00-00','','','','N','17:34:00','18:02:12','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','6','17:34:28',0,'','manshi','2025-10-16 17:34:28','drsagar','2025-10-16 18:02:12'),(1017,0,0,'O','N','2526',860,0,'2025-10-16','2026-01-15',892,0,860,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:34:00','0000-00-00','','','','N','17:34:00','18:38:42','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','2','17:34:45',0,'','reception','2025-10-16 17:34:45','darshan','2025-10-16 18:38:42'),(1018,0,0,'O','N','2526',861,0,'2025-10-16','2026-01-15',893,0,861,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:35:00','0000-00-00','','','','N','17:35:00','18:32:50','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','5','17:36:03',0,'','janvi','2025-10-16 17:36:03','drjayant','2025-10-16 18:32:50'),(1019,0,0,'O','N','2526',862,0,'2025-10-16','2026-01-15',894,0,862,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:36:00','0000-00-00','','','','N','17:36:00','19:35:06','','N','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','2','17:36:10',0,'','reception','2025-10-16 17:36:10','darshan','2025-10-17 19:35:06'),(1020,0,0,'O','N','2526',777,0,'2025-10-16','0000-00-00',808,0,777,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:37:00','0000-00-00','','','','N','17:37:00','18:58:24','','N','N','Y',NULL,'O','O','Z55','','0000-00-00 00:00:00','2','17:37:31',0,'','reception','2025-10-16 17:37:31','darshan','2025-10-16 18:58:24'),(1021,0,0,'O','N','2526',863,0,'2025-10-16','2026-01-15',895,0,863,'N','','N','','','NV','','N','D06','','N',64,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','18:02:26','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','2','17:41:04',0,'','drashti','2025-10-16 17:41:04','darshan','2025-10-16 18:02:26'),(1022,0,0,'O','N','2526',864,0,'2025-10-16','2026-01-15',896,0,864,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','18:52:27','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','2','17:42:48',0,'','reception','2025-10-16 17:42:48','darshan','2025-10-16 18:52:27'),(1023,0,0,'O','N','2526',865,0,'2025-10-16','2026-01-15',897,0,865,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','18:57:35','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','2','17:43:04',0,'','janvi','2025-10-16 17:43:04','darshan','2025-10-16 18:57:35'),(1024,0,0,'O','N','2526',303,0,'2025-10-16','0000-00-00',319,0,303,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:45:00','0000-00-00','','','','N','17:45:00','00:00:00','','','N','N',NULL,'O','O','Z59','','0000-00-00 00:00:00','3','17:46:08',0,'','janvi','2025-10-16 17:46:08','','0000-00-00 00:00:00'),(1025,0,0,'O','N','2526',866,0,'2025-10-16','2026-01-15',898,0,866,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','00:00:00','','','N','N',NULL,'O','N','Z60','','0000-00-00 00:00:00','7','17:46:11',0,'','manshi','2025-10-16 17:46:11','','0000-00-00 00:00:00'),(1026,0,0,'O','N','2526',867,0,'2025-10-16','2026-01-15',899,0,867,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','19:03:36','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','2','17:46:19',0,'','drashti','2025-10-16 17:46:19','darshan','2025-10-16 19:03:36'),(1027,0,0,'O','N','2526',868,0,'2025-10-16','2026-01-15',900,0,868,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','18:35:44','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','5','17:49:47',0,'','drashti','2025-10-16 17:49:47','drjayant','2025-10-16 18:35:44'),(1028,0,0,'O','N','2526',869,0,'2025-10-16','2026-01-15',901,0,869,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','19:13:19','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','2','17:51:14',0,'','reception','2025-10-16 17:51:14','darshan','2025-10-16 19:13:19'),(1029,0,0,'O','N','2526',870,0,'2025-10-16','2026-01-15',902,0,870,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','18:37:19','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','5','17:51:44',0,'','drashti','2025-10-16 17:51:44','drjayant','2025-10-16 18:37:19'),(1030,0,0,'O','N','2526',871,0,'2025-10-16','2026-01-15',903,0,871,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','18:19:47','','','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:53:01',0,'','janvi','2025-10-16 17:53:01','darshan','2025-10-16 18:19:47'),(1031,0,0,'O','N','2526',872,0,'2025-10-16','2026-01-15',904,0,872,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:53:00','0000-00-00','','','','N','17:53:00','19:30:34','','','N','Y',NULL,'O','N','Z65','','0000-00-00 00:00:00','2','17:54:02',0,'','reception','2025-10-16 17:54:02','darshan','2025-10-16 19:30:34'),(1032,0,0,'O','N','2526',873,0,'2025-10-16','2026-01-15',905,0,873,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','18:25:02','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','4','17:57:13',0,'','drashti','2025-10-16 17:57:13','drarchit','2025-10-16 18:25:02'),(1033,0,0,'O','N','2526',874,0,'2025-10-16','2026-01-15',906,0,874,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','00:00:00','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','4','17:59:14',0,'','drashti','2025-10-16 17:59:14','','0000-00-00 00:00:00'),(1034,0,0,'O','N','2526',875,0,'2025-10-16','2026-01-15',907,0,875,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','20:18:16','','N','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:59:34',0,'','reception','2025-10-16 17:59:34','darshan','2025-10-16 20:18:16'),(1035,0,0,'O','N','2526',876,0,'2025-10-16','2026-01-15',908,0,876,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','19:34:19','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','4','18:02:07',0,'','drashti','2025-10-16 18:02:07','drarchit','2025-10-16 19:34:19'),(1036,0,0,'O','N','2526',877,0,'2025-10-16','2026-01-15',909,0,877,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','18:40:48','','','N','Y',NULL,'O','N','Z67','','0000-00-00 00:00:00','5','18:05:23',0,'','drashti','2025-10-16 18:05:23','drjayant','2025-10-16 18:40:48'),(1037,0,0,'O','N','2526',878,0,'2025-10-16','2026-01-15',910,0,878,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:06:00','0000-00-00','','','','N','18:06:00','00:00:00','','','N','N',NULL,'O','N','Z68','','0000-00-00 00:00:00','7','18:06:36',0,'','manshi','2025-10-16 18:06:36','','0000-00-00 00:00:00'),(1038,0,0,'O','N','2526',879,0,'2025-10-16','2026-01-15',911,0,879,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','00:00:00','','','N','N',NULL,'O','N','Z69','','0000-00-00 00:00:00','3','18:07:27',0,'','janvi','2025-10-16 18:07:27','','0000-00-00 00:00:00'),(1039,0,0,'O','N','2526',880,0,'2025-10-16','2026-01-15',912,0,880,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:08:00','0000-00-00','','','','N','18:08:00','19:41:55','','','N','Y',NULL,'O','N','Z70','','0000-00-00 00:00:00','2','18:08:04',0,'','reception','2025-10-16 18:08:04','darshan','2025-10-16 19:41:55'),(1040,0,0,'O','N','2526',360,0,'2025-10-16','0000-00-00',376,0,360,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','18:50:20','','Y','N','Y',NULL,'O','O','L10','','0000-00-00 00:00:00','4','18:12:21',0,'','drashti','2025-10-16 18:12:21','drarchit','2025-10-16 18:50:21'),(1041,0,0,'O','N','2526',57,0,'2025-10-16','0000-00-00',68,0,57,'N','','N','','','','','N','D02','','N',9,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','00:00:00','','','N','N',NULL,'O','O','Z71','','0000-00-00 00:00:00','3','18:15:31',0,'','janvi','2025-10-16 18:15:31','','0000-00-00 00:00:00'),(1042,0,0,'O','N','2526',814,0,'2025-10-16','0000-00-00',845,0,814,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','19:29:12','','','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','4','18:26:36',0,'','janvi','2025-10-16 18:26:36','drarchit','2025-10-16 19:29:12'),(1043,0,0,'O','N','2526',881,0,'2025-10-16','2026-01-15',913,0,881,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','18:45:58','','','N','Y',NULL,'O','N','Z72','','0000-00-00 00:00:00','6','18:26:42',0,'','manshi','2025-10-16 18:26:41','drsagar','2025-10-16 18:45:58'),(1044,0,0,'O','N','2526',882,0,'2025-10-16','2026-01-15',914,0,882,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','18:43:54','','','N','Y',NULL,'O','N','Z73','','0000-00-00 00:00:00','5','18:26:50',0,'','drashti','2025-10-16 18:26:50','drjayant','2025-10-16 18:43:54'),(1045,0,0,'O','N','2526',883,0,'2025-10-16','2026-01-15',915,0,883,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','19:45:45','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','2','18:29:30',0,'','reception','2025-10-16 18:29:30','darshan','2025-10-16 19:45:45'),(1046,0,0,'O','N','2526',884,0,'2025-10-16','2026-01-15',916,0,884,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','19:53:43','','','N','Y',NULL,'O','N','Z75','','0000-00-00 00:00:00','2','18:32:38',0,'','reception','2025-10-16 18:32:38','darshan','2025-10-16 19:53:43'),(1047,0,0,'O','N','2526',885,0,'2025-10-16','2026-01-15',917,0,885,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','19:59:41','','','N','Y',NULL,'O','N','Z76','','0000-00-00 00:00:00','2','18:40:11',0,'','reception','2025-10-16 18:40:11','darshan','2025-10-16 19:59:41'),(1048,0,0,'O','N','2526',221,0,'2025-10-16','0000-00-00',234,0,221,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:41:00','0000-00-00','','','','N','18:41:00','00:00:00','','','N','N',NULL,'O','O','Z77','','0000-00-00 00:00:00','3','18:41:25',0,'','janvi','2025-10-16 18:41:25','','0000-00-00 00:00:00'),(1049,0,0,'O','N','2526',886,0,'2025-10-16','2026-01-15',918,0,886,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:45:00','0000-00-00','','','','N','18:45:00','00:00:00','','','N','Y',NULL,'O','N','Z78','','0000-00-00 00:00:00','6','18:45:40',0,'','manshi','2025-10-16 18:45:40','','0000-00-00 00:00:00'),(1050,0,0,'O','N','2526',887,0,'2025-10-16','2026-01-15',919,0,887,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','18:51:41','','','N','Y',NULL,'O','N','Z79','','0000-00-00 00:00:00','5','18:47:09',0,'','janvi','2025-10-16 18:47:08','drjayant','2025-10-16 18:51:41'),(1051,0,0,'O','N','2526',41,0,'2025-10-16','0000-00-00',45,0,41,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','19:25:53','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','4','18:48:46',0,'','drashti','2025-10-16 18:48:46','drarchit','2025-10-16 19:25:53'),(1052,0,0,'O','N','2526',888,0,'2025-10-16','2026-01-15',920,0,888,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:17:35','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','2','18:51:23',0,'','janvi','2025-10-16 18:51:23','darshan','2025-10-16 19:17:35'),(1053,0,0,'O','N','2526',889,0,'2025-10-16','2026-01-15',921,0,889,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','20:02:01','','','N','Y',NULL,'O','N','Z80','','0000-00-00 00:00:00','2','18:51:45',0,'','reception','2025-10-16 18:51:45','darshan','2025-10-16 20:02:01'),(1054,0,0,'O','N','2526',575,0,'2025-10-16','0000-00-00',603,0,575,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:52:00','0000-00-00','','','','N','18:52:00','00:00:00','','','N','N',NULL,'O','O','Z81','','0000-00-00 00:00:00','3','18:52:42',0,'','janvi','2025-10-16 18:52:42','','0000-00-00 00:00:00'),(1055,0,0,'O','N','2526',890,0,'2025-10-16','2026-01-15',922,0,890,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:53:00','0000-00-00','','','','N','18:53:00','18:58:51','','','N','Y',NULL,'O','N','Z82','','0000-00-00 00:00:00','5','18:53:50',0,'','janvi','2025-10-16 18:53:50','drjayant','2025-10-16 18:58:51'),(1056,0,0,'O','N','2526',891,0,'2025-10-16','2026-01-15',923,0,891,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:55:00','0000-00-00','','','','N','18:55:00','19:20:36','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','2','18:55:06',0,'','drashti','2025-10-16 18:55:06','darshan','2025-10-16 19:20:36'),(1057,0,0,'O','N','2526',892,0,'2025-10-16','2026-01-15',924,0,892,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:58:00','0000-00-00','','','','N','18:58:00','00:00:00','','Y','N','Y',NULL,'O','N','Z83','','0000-00-00 00:00:00','4','18:58:14',0,'','drashti','2025-10-16 18:58:14','drarchit','2025-10-16 19:49:09'),(1058,0,0,'O','N','2526',118,0,'2025-10-16','0000-00-00',129,0,118,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:58:00','0000-00-00','','','','N','18:58:00','00:00:00','','','N','N',NULL,'O','O','Z84','','0000-00-00 00:00:00','3','18:58:30',0,'','janvi','2025-10-16 18:58:30','','0000-00-00 00:00:00'),(1059,0,0,'O','N','2526',893,0,'2025-10-16','2026-01-15',925,0,893,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:01:00','0000-00-00','','','','N','19:01:00','19:43:16','','','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','4','19:01:36',0,'','drashti','2025-10-16 19:01:36','drarchit','2025-10-16 19:43:16'),(1060,0,0,'O','N','2526',894,0,'2025-10-16','2026-01-15',926,0,894,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:02:00','0000-00-00','','','','N','19:02:00','19:43:28','','','N','Y',NULL,'O','N','Z85','','0000-00-00 00:00:00','4','19:02:40',0,'','janvi','2025-10-16 19:02:40','drarchit','2025-10-16 19:43:28'),(1061,0,0,'O','N','2526',895,0,'2025-10-16','2026-01-15',927,0,895,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:02:00','0000-00-00','','','','N','19:02:00','20:30:00','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','2','19:02:49',0,'','reception','2025-10-16 19:02:49','darshan','2025-10-16 20:30:00'),(1062,0,0,'O','N','2526',244,0,'2025-10-16','0000-00-00',259,0,244,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:06:00','0000-00-00','','','','N','19:06:00','20:01:15','','','N','Y',NULL,'O','O','Z86','','0000-00-00 00:00:00','4','19:06:39',0,'','drashti','2025-10-16 19:06:39','drarchit','2025-10-16 20:01:15'),(1063,0,0,'O','N','2526',896,0,'2025-10-16','2026-01-15',928,0,896,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:07:00','0000-00-00','','','','N','19:07:00','00:00:00','','','N','N',NULL,'O','N','Z87','','0000-00-00 00:00:00','3','19:07:19',0,'','janvi','2025-10-16 19:07:19','','0000-00-00 00:00:00'),(1064,0,0,'O','N','2526',727,0,'2025-10-16','0000-00-00',758,0,727,'N','','N','','','INJECTION','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:16:00','0000-00-00','','','','N','19:16:00','00:00:00','','','N','N',NULL,'O','O','Z88','','0000-00-00 00:00:00','4','19:16:31',0,'','janvi','2025-10-16 19:16:31','','0000-00-00 00:00:00'),(1065,0,0,'O','N','2526',897,0,'2025-10-16','2026-01-15',929,0,897,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:30:00','0000-00-00','','','','N','19:30:00','00:00:00','','','N','N',NULL,'O','N','Z89','','0000-00-00 00:00:00','4','19:30:46',0,'','drashti','2025-10-16 19:30:46','','0000-00-00 00:00:00'),(1066,0,0,'O','N','2526',898,0,'2025-10-16','2026-01-15',930,0,898,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:35:00','0000-00-00','','','','N','19:35:00','00:00:00','','','N','N',NULL,'O','N','Z90','','0000-00-00 00:00:00','4','19:35:48',0,'','drashti','2025-10-16 19:35:48','','0000-00-00 00:00:00'),(1067,0,0,'O','N','2526',54,0,'2025-10-16','0000-00-00',64,0,54,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:45:00','0000-00-00','','','','N','19:45:00','00:00:00','','','N','N',NULL,'O','O','Z91','','0000-00-00 00:00:00','3','19:45:39',0,'','janvi','2025-10-16 19:45:39','','0000-00-00 00:00:00'),(1068,0,0,'O','N','2526',899,0,'2025-10-16','2026-01-15',931,0,899,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:49:00','0000-00-00','','','','N','19:49:00','13:07:35','','','N','Y',NULL,'O','N','Z92','','0000-00-00 00:00:00','2','19:49:21',0,'','reception','2025-10-16 19:49:21','darshan','2025-10-17 13:07:35'),(1069,0,0,'O','N','2526',900,0,'2025-10-16','2026-01-15',926,0,900,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:54:00','0000-00-00','','','','N','19:54:00','00:00:00','','','N','N',NULL,'O','N','Y03','','0000-00-00 00:00:00','6','19:54:11',0,'','manshi','2025-10-16 19:54:11','','0000-00-00 00:00:00'),(1070,0,0,'O','N','2526',276,0,'2025-10-16','0000-00-00',292,0,276,'N','','N','','','INJECTION','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:01:00','0000-00-00','','','','N','20:01:00','00:00:00','','','N','N',NULL,'O','O','Y04','','0000-00-00 00:00:00','4','20:02:03',0,'','janvi','2025-10-16 20:02:03','','0000-00-00 00:00:00'),(1071,0,0,'O','N','2526',901,0,'2025-10-16','2026-01-15',932,0,901,'N','','N','','','','Y','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:07:00','0000-00-00','','','','N','20:07:00','00:00:00','','','N','N',NULL,'O','N','Z93','','0000-00-00 00:00:00','6','20:07:56',0,'','manshi','2025-10-16 20:07:56','','0000-00-00 00:00:00'),(1072,0,0,'I','N','2526',0,67,'2025-10-16','2026-01-15',933,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','21:00:00','2025-10-18','','4','mo','N','21:00:00','13:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-16 21:50:22','mo','2025-10-18 13:02:42'),(1073,0,0,'O','N','2526',901,0,'2025-10-17','0000-00-00',932,0,901,'N','','N','','','','Y','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:45:00','0000-00-00','','','','N','08:45:00','11:18:52','','','N','Y',NULL,'O','O','Z01','','0000-00-00 00:00:00','6','09:02:10',0,'','shweta','2025-10-17 09:02:10','drsagar','2025-10-17 11:18:52'),(1074,0,0,'O','N','2526',166,0,'2025-10-17','0000-00-00',179,0,166,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:04:00','0000-00-00','','','','N','09:04:00','12:11:34','','','N','Y',NULL,'O','O','Z02','','0000-00-00 00:00:00','4','09:04:46',0,'','shweta','2025-10-17 09:04:46','drarchit','2025-10-17 12:11:34'),(1075,0,0,'O','N','2526',902,0,'2025-10-17','2026-01-16',934,0,902,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:48:00','0000-00-00','','','','N','08:48:00','18:11:54','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','4','09:10:30',0,'','shweta','2025-10-17 09:10:30','drarchit','2025-10-17 18:11:54'),(1076,0,0,'O','N','2526',903,0,'2025-10-17','2026-01-16',935,0,903,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:52:00','0000-00-00','','','','N','08:52:00','11:27:21','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','3','09:12:38',0,'','shweta','2025-10-17 09:12:38','drpratapsinh','2025-10-17 11:27:21'),(1077,0,0,'O','N','2526',904,0,'2025-10-17','2026-01-16',936,0,904,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:54:00','0000-00-00','','','','N','08:54:00','12:11:01','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','4','09:16:10',0,'','shweta','2025-10-17 09:16:10','drarchit','2025-10-17 12:11:01'),(1078,0,0,'O','N','2526',905,0,'2025-10-17','2026-01-16',937,0,905,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:17:00','0000-00-00','','','','N','09:17:00','11:58:17','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','4','09:18:09',0,'','janvi','2025-10-17 09:18:09','drarchit','2025-10-17 11:58:17'),(1079,0,0,'O','N','2526',906,0,'2025-10-17','2026-01-16',63,0,906,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:21:00','0000-00-00','','','','N','09:21:00','11:26:52','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','3','09:21:54',0,'','janvi','2025-10-17 09:21:54','drpratapsinh','2025-10-17 11:26:52'),(1080,0,0,'O','N','2526',907,0,'2025-10-17','2026-01-16',938,0,907,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','0000-00-00','','','','N','09:30:00','11:58:03','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','4','09:30:17',0,'','janvi','2025-10-17 09:30:17','drarchit','2025-10-17 11:58:03'),(1081,0,0,'O','N','2526',908,0,'2025-10-17','2026-01-16',939,0,908,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:43:00','0000-00-00','','','','N','09:43:00','11:57:46','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','4','09:43:42',0,'','janvi','2025-10-17 09:43:42','drarchit','2025-10-17 11:57:46'),(1082,0,0,'O','N','2526',909,0,'2025-10-17','2026-01-16',940,0,909,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:47:00','0000-00-00','','','','N','09:47:00','10:44:31','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','09:47:12',0,'','reception','2025-10-17 09:47:12','darshan','2025-10-17 10:44:31'),(1083,0,0,'O','N','2526',910,0,'2025-10-17','2026-01-16',941,0,910,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:48:00','0000-00-00','','','','N','09:48:00','11:38:37','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','3','09:48:41',0,'','janvi','2025-10-17 09:48:41','drpratapsinh','2025-10-17 11:38:37'),(1084,0,0,'O','N','2526',207,0,'2025-10-17','0000-00-00',220,0,207,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:54:00','0000-00-00','','','','N','09:54:00','10:48:15','','','N','Y',NULL,'O','O','Z10','','0000-00-00 00:00:00','2','09:54:45',0,'','reception','2025-10-17 09:54:45','darshan','2025-10-17 10:48:15'),(1085,0,0,'O','N','2526',911,0,'2025-10-17','2026-01-16',942,0,911,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:01:00','0000-00-00','','','','N','10:01:00','14:06:23','','N','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','2','10:01:47',0,'','reception','2025-10-17 10:01:47','darshan','2025-10-17 14:06:23'),(1086,0,0,'O','N','2526',912,0,'2025-10-17','2026-01-16',943,0,912,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:05:00','0000-00-00','','','','N','10:05:00','11:47:24','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','2','10:05:38',0,'','reception','2025-10-17 10:05:38','darshan','2025-10-17 11:47:24'),(1087,0,0,'O','N','2526',354,0,'2025-10-17','0000-00-00',370,0,354,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:13:00','0000-00-00','','','','N','10:13:00','11:23:43','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','6','10:13:25',0,'','manshi','2025-10-17 10:13:25','drsagar','2025-10-17 11:23:43'),(1088,0,0,'O','N','2526',913,0,'2025-10-17','2026-01-16',944,0,913,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:13:00','0000-00-00','','','','N','10:13:00','13:37:34','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:13:33',0,'','reception','2025-10-17 10:13:33','darshan','2025-10-17 13:37:34'),(1089,0,0,'O','N','2526',914,0,'2025-10-17','2026-01-16',945,0,914,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:21:00','0000-00-00','','','','N','10:21:00','00:00:00','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','3','10:21:38',0,'','janvi','2025-10-17 10:21:38','','0000-00-00 00:00:00'),(1090,0,0,'O','N','2526',915,0,'2025-10-17','2026-01-16',946,0,915,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:22:00','0000-00-00','','','','N','10:22:00','00:00:00','','','N','N',NULL,'O','N','Z15','','0000-00-00 00:00:00','3','10:22:39',0,'','janvi','2025-10-17 10:22:39','','0000-00-00 00:00:00'),(1091,0,0,'O','N','2526',480,0,'2025-10-17','0000-00-00',506,0,480,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:23:00','0000-00-00','','','','N','10:23:00','11:45:35','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','3','10:24:05',0,'','janvi','2025-10-17 10:24:05','drpratapsinh','2025-10-17 11:45:35'),(1092,0,0,'O','N','2526',916,0,'2025-10-17','2026-01-16',947,0,916,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:27:00','0000-00-00','','','','N','10:27:00','18:12:02','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','4','10:27:38',0,'','janvi','2025-10-17 10:27:38','drarchit','2025-10-17 18:12:02'),(1093,0,0,'O','N','2526',917,0,'2025-10-17','2026-01-16',948,0,917,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:31:00','0000-00-00','','','','N','10:31:00','11:53:11','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','10:32:00',0,'','reception','2025-10-17 10:32:00','darshan','2025-10-17 11:53:11'),(1094,0,0,'O','N','2526',918,0,'2025-10-17','2026-01-16',949,0,918,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:47:00','0000-00-00','','','','N','10:47:00','12:02:35','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','2','10:47:31',0,'','reception','2025-10-17 10:47:31','darshan','2025-10-17 12:02:35'),(1095,0,0,'O','N','2526',919,0,'2025-10-17','2026-01-16',950,0,919,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:49:00','0000-00-00','','','','N','10:49:00','14:28:52','','N','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','10:49:22',0,'','drashti','2025-10-17 10:49:22','darshan','2025-10-17 14:28:52'),(1096,0,0,'O','N','2526',920,0,'2025-10-17','2026-01-16',951,0,920,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:50:00','0000-00-00','','','','N','10:50:00','12:01:28','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','5','10:50:58',0,'','janvi','2025-10-17 10:50:58','drjayant','2025-10-17 12:01:28'),(1097,0,0,'O','N','2526',921,0,'2025-10-17','2026-01-16',952,0,921,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:50:00','0000-00-00','','','','N','10:50:00','11:17:23','','','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:51:00',0,'','reception','2025-10-17 10:51:00','darshan','2025-10-17 11:17:23'),(1098,0,0,'O','N','2526',922,0,'2025-10-17','2026-01-16',953,0,922,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','11:21:01','','','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:53:45',0,'','reception','2025-10-17 10:53:45','darshan','2025-10-17 11:21:01'),(1099,0,0,'O','N','2526',923,0,'2025-10-17','2026-01-16',954,0,923,'N','','N','','','','','N','D03','','N',4,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','11:18:36','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','6','10:54:38',0,'','manshi','2025-10-17 10:54:38','drsagar','2025-10-17 11:18:36'),(1100,0,0,'O','N','2526',924,0,'2025-10-17','2026-01-16',955,0,924,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','14:32:37','','N','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','2','10:57:17',0,'','reception','2025-10-17 10:57:17','darshan','2025-10-17 14:32:37'),(1101,0,0,'O','N','2526',925,0,'2025-10-17','2026-01-16',956,0,925,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','13:13:27','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','2','10:57:27',0,'','drashti','2025-10-17 10:57:27','darshan','2025-10-17 13:13:27'),(1102,0,0,'O','N','2526',926,0,'2025-10-17','2026-01-16',957,0,926,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','11:30:32','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','10:59:43',0,'','reception','2025-10-17 10:59:43','darshan','2025-10-17 11:30:32'),(1103,0,0,'O','N','2526',927,0,'2025-10-17','2026-01-16',958,0,927,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','11:58:02','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','11:12:07',0,'','drashti','2025-10-17 11:12:07','darshan','2025-10-17 11:58:02'),(1104,0,0,'O','N','2526',928,0,'2025-10-17','2026-01-16',959,0,928,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','13:26:13','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','11:13:21',0,'','reception','2025-10-17 11:13:21','darshan','2025-10-17 13:26:13'),(1105,0,0,'O','N','2526',929,0,'2025-10-17','2026-01-16',960,0,929,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','13:29:18','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','2','11:16:41',0,'','reception','2025-10-17 11:16:41','darshan','2025-10-17 13:29:18'),(1106,0,0,'O','N','2526',463,0,'2025-10-17','0000-00-00',489,0,463,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','11:49:14','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','3','11:19:04',0,'','janvi','2025-10-17 11:19:04','drpratapsinh','2025-10-17 11:49:14'),(1107,0,0,'O','N','2526',930,0,'2025-10-17','2026-01-16',961,0,930,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','11:39:19','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','5','11:20:45',0,'','janvi','2025-10-17 11:20:45','drjayant','2025-10-17 11:39:19'),(1108,0,0,'O','N','2526',931,0,'2025-10-17','2026-01-16',962,0,931,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','12:10:29','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','4','11:21:02',0,'','drashti','2025-10-17 11:21:02','drarchit','2025-10-17 12:10:29'),(1109,0,0,'O','N','2526',43,0,'2025-10-17','0000-00-00',47,0,43,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:22:00','0000-00-00','','','','N','11:22:00','12:09:44','','','N','Y',NULL,'O','O','Z27','','0000-00-00 00:00:00','4','11:22:53',0,'','janvi','2025-10-17 11:22:53','drarchit','2025-10-17 12:09:44'),(1110,0,0,'O','N','2526',932,0,'2025-10-17','2026-01-16',963,0,932,'N','','N','','','REPORT','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','11:59:06','','N','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','2','11:29:02',0,'','reception','2025-10-17 11:29:02','darshan','2025-10-17 11:59:06'),(1111,0,0,'O','N','2526',933,0,'2025-10-17','2026-01-16',964,0,933,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','18:12:10','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','4','11:33:17',0,'','drashti','2025-10-17 11:33:17','drarchit','2025-10-17 18:12:10'),(1112,0,0,'O','N','2526',934,0,'2025-10-17','2026-01-16',965,0,934,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:34:00','0000-00-00','','','','N','11:34:00','12:20:28','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','11:34:11',0,'','reception','2025-10-17 11:34:10','darshan','2025-10-17 12:20:28'),(1113,0,0,'O','N','2526',935,0,'2025-10-17','2026-01-16',966,0,935,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:37:00','0000-00-00','','','','N','11:37:00','13:34:09','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','2','11:37:47',0,'','reception','2025-10-17 11:37:47','darshan','2025-10-17 13:34:09'),(1114,0,0,'O','N','2526',936,0,'2025-10-17','2026-01-16',967,0,936,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','18:12:21','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','4','11:38:34',0,'','janvi','2025-10-17 11:38:34','drarchit','2025-10-17 18:12:21'),(1115,0,0,'O','N','2526',937,0,'2025-10-17','2026-01-16',968,0,937,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','13:48:57','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','2','11:39:51',0,'','reception','2025-10-17 11:39:51','darshan','2025-10-17 13:48:57'),(1116,0,0,'O','N','2526',938,0,'2025-10-17','2026-01-16',969,0,938,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','18:12:32','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','4','11:40:42',0,'','drashti','2025-10-17 11:40:42','drarchit','2025-10-17 18:12:32'),(1117,0,0,'O','N','2526',939,0,'2025-10-17','2026-01-16',970,0,939,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','12:10:22','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:47:24',0,'','reception','2025-10-17 11:41:56','darshan','2025-10-17 12:10:22'),(1118,0,0,'O','N','2526',940,0,'2025-10-17','2026-01-16',971,0,940,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','12:17:18','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','11:53:11',0,'','reception','2025-10-17 11:51:20','darshan','2025-10-17 12:17:18'),(1119,0,0,'O','N','2526',941,0,'2025-10-17','2026-01-16',972,0,941,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','11:56:00','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','6','11:51:44',0,'','manshi','2025-10-17 11:51:44','drsagar','2025-10-17 11:56:00'),(1120,0,0,'O','N','2526',942,0,'2025-10-17','2026-01-16',973,0,942,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','13:12:33','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','3','11:55:06',0,'','janvi','2025-10-17 11:55:06','drpratapsinh','2025-10-17 13:12:33'),(1121,0,0,'O','N','2526',943,0,'2025-10-17','2026-01-16',974,0,943,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','13:55:11','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','2','12:00:37',0,'','reception','2025-10-17 12:00:37','darshan','2025-10-17 13:55:11'),(1122,0,0,'O','N','2526',944,0,'2025-10-17','2026-01-16',975,0,944,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:03:00','0000-00-00','','','','N','12:03:00','12:13:31','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','3','12:03:24',0,'','drashti','2025-10-17 12:03:24','drpratapsinh','2025-10-17 12:13:31'),(1123,0,0,'O','N','2526',945,0,'2025-10-17','2026-01-16',976,0,945,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:03:00','0000-00-00','','','','N','12:03:00','14:15:31','','N','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','12:03:57',0,'','reception','2025-10-17 12:03:57','darshan','2025-10-17 14:15:31'),(1124,0,0,'O','N','2526',579,0,'2025-10-17','0000-00-00',610,0,579,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:05:00','0000-00-00','','','','N','12:05:00','12:20:15','','','N','Y',NULL,'O','O','Z38','','0000-00-00 00:00:00','6','12:05:03',0,'','manshi','2025-10-17 12:05:03','drsagar','2025-10-17 12:20:15'),(1125,0,0,'O','N','2526',580,0,'2025-10-17','0000-00-00',611,0,580,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:05:00','0000-00-00','','','','N','12:05:00','12:20:29','','','N','Y',NULL,'O','O','Z39','','0000-00-00 00:00:00','6','12:05:43',0,'','manshi','2025-10-17 12:05:43','drsagar','2025-10-17 12:20:29'),(1126,0,0,'O','N','2526',946,0,'2025-10-17','2026-01-16',977,0,946,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:08:00','0000-00-00','','','','N','12:08:00','12:29:10','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','5','12:09:00',0,'','janvi','2025-10-17 12:09:00','drjayant','2025-10-17 12:29:10'),(1127,0,0,'O','N','2526',481,0,'2025-10-17','0000-00-00',507,0,481,'N','','N','','','INJECTION','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:10:00','0000-00-00','','','','N','12:10:00','12:11:44','','','N','Y',NULL,'O','O','Z41','','0000-00-00 00:00:00','4','12:10:08',0,'','drashti','2025-10-17 12:10:08','drarchit','2025-10-17 12:11:44'),(1128,0,0,'O','N','2526',887,0,'2025-10-17','0000-00-00',919,0,887,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:10:00','0000-00-00','','','','N','12:10:00','12:26:04','','','N','Y',NULL,'O','O','Z42','','0000-00-00 00:00:00','5','12:10:59',0,'','janvi','2025-10-17 12:10:59','drjayant','2025-10-17 12:26:04'),(1129,0,0,'O','N','2526',947,0,'2025-10-17','2026-01-16',978,0,947,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:12:00','0000-00-00','','','','N','12:12:00','14:34:32','','N','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','12:12:25',0,'','reception','2025-10-17 12:12:25','darshan','2025-10-17 14:34:32'),(1130,0,0,'O','N','2526',948,0,'2025-10-17','2026-01-16',979,0,948,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:14:00','0000-00-00','','','','N','12:14:00','12:33:05','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','5','12:14:15',0,'','janvi','2025-10-17 12:14:15','drjayant','2025-10-17 12:33:05'),(1131,0,0,'O','N','2526',949,0,'2025-10-17','2026-01-16',980,0,949,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:19:00','0000-00-00','','','','N','12:19:00','14:21:55','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','2','12:19:56',0,'','drashti','2025-10-17 12:19:56','darshan','2025-10-17 14:21:55'),(1132,0,0,'O','N','2526',950,0,'2025-10-17','2026-01-16',981,0,950,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:29:00','0000-00-00','','','','N','12:29:00','13:22:21','','','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','2','12:29:06',0,'','reception','2025-10-17 12:29:06','darshan','2025-10-17 13:22:21'),(1133,0,0,'O','N','2526',951,0,'2025-10-17','2026-01-16',982,0,951,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:29:00','0000-00-00','','','','N','12:29:00','18:18:03','','','N','Y',NULL,'O','N','J04','','0000-00-00 00:00:00','4','12:29:40',0,'','drashti','2025-10-17 12:29:40','drarchit','2025-10-17 18:18:03'),(1134,0,0,'O','N','2526',259,0,'2025-10-17','0000-00-00',276,0,259,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:37:00','0000-00-00','','','','N','12:37:00','13:11:47','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','3','12:37:06',0,'','drashti','2025-10-17 12:37:06','drpratapsinh','2025-10-17 13:11:47'),(1135,0,0,'O','N','2526',370,0,'2025-10-17','0000-00-00',387,0,370,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:37:00','0000-00-00','','','','N','12:37:00','12:42:02','','','N','Y',NULL,'O','O','Z46','','0000-00-00 00:00:00','3','12:38:07',0,'','janvi','2025-10-17 12:38:07','drpratapsinh','2025-10-17 12:42:02'),(1136,0,0,'O','N','2526',952,0,'2025-10-17','2026-01-16',983,0,952,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:41:00','0000-00-00','','','','N','12:41:00','15:11:23','','N','N','Y',NULL,'O','N','J05','','0000-00-00 00:00:00','2','12:41:04',0,'','reception','2025-10-17 12:41:04','darshan','2025-10-17 15:11:23'),(1137,0,0,'O','N','2526',953,0,'2025-10-17','2026-01-16',984,0,953,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:42:00','0000-00-00','','','','N','12:42:00','14:59:12','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','13:13:27',0,'','drashti','2025-10-17 12:42:09','darshan','2025-10-17 14:59:12'),(1138,0,0,'O','N','2526',954,0,'2025-10-17','2026-01-16',985,0,954,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:44:00','0000-00-00','','','','N','12:44:00','18:18:14','','','N','Y',NULL,'O','N','J06','','0000-00-00 00:00:00','4','12:44:23',0,'','reception','2025-10-17 12:44:23','drarchit','2025-10-17 18:18:14'),(1139,0,0,'O','N','2526',277,0,'2025-10-17','0000-00-00',293,0,277,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:05:00','0000-00-00','','','','N','13:05:00','15:10:51','','','N','Y',NULL,'O','O','Z48','','0000-00-00 00:00:00','2','13:13:27',0,'','drashti','2025-10-17 13:05:05','darshan','2025-10-17 15:10:51'),(1140,0,0,'I','N','2526',938,68,'2025-10-17','2026-01-16',969,0,938,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','2025-10-18','','1','mo','N','13:00:00','03:45:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-17 13:06:01','riya','2025-10-18 16:05:01'),(1141,0,0,'O','N','2526',560,0,'2025-10-17','0000-00-00',587,0,560,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:06:00','0000-00-00','','','','N','13:06:00','13:12:01','','','N','Y',NULL,'O','O','Z49','','0000-00-00 00:00:00','3','13:06:54',0,'','janvi','2025-10-17 13:06:54','drpratapsinh','2025-10-17 13:12:01'),(1142,0,0,'O','N','2526',955,0,'2025-10-17','2026-01-16',986,0,955,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:21:00','0000-00-00','','','','N','13:21:00','18:11:45','','','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','4','13:22:01',0,'','reception','2025-10-17 13:22:01','drarchit','2025-10-17 18:11:45'),(1143,0,0,'O','N','2526',426,0,'2025-10-17','0000-00-00',448,0,426,'N','','N','','','','','N','D02','','N',35,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:51:00','0000-00-00','','','','N','13:51:00','00:00:00','','','N','N',NULL,'O','O','Z50','','0000-00-00 00:00:00','3','13:51:55',0,'','janvi','2025-10-17 13:51:55','','0000-00-00 00:00:00'),(1144,0,0,'I','N','2526',0,69,'2025-10-17','2026-01-16',987,0,0,'N','','N','','','','N','N','D27','','N',0,'','8',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:00:00','2025-10-22','','1','mo','N','14:00:00','11:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-17 14:04:50','vishal','2025-10-22 10:54:17'),(1145,0,0,'O','N','2526',713,0,'2025-10-17','0000-00-00',744,0,713,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:21:00','0000-00-00','','','','N','14:21:00','18:18:30','','','N','Y',NULL,'O','O','Z51','','0000-00-00 00:00:00','4','14:21:30',0,'','shweta','2025-10-17 14:21:30','drarchit','2025-10-17 18:18:30'),(1146,0,0,'O','N','2526',956,0,'2025-10-17','2026-01-16',988,0,956,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:55:00','0000-00-00','','','','N','14:55:00','15:02:57','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','2','14:55:52',0,'','shweta','2025-10-17 14:55:52','darshan','2025-10-17 15:02:57'),(1147,0,0,'I','N','2526',0,70,'2025-10-17','2026-01-16',989,0,0,'N','','N','','','','N','N','D27','','N',0,'','8',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:00:00','2025-10-25','','1','mo','N','15:00:00','11:40:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-17 15:08:19','mo','2025-10-25 12:04:57'),(1148,0,0,'O','N','2526',957,0,'2025-10-17','2026-01-16',990,0,957,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:47:00','0000-00-00','','','','N','15:47:00','18:17:53','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','4','15:47:15',0,'','shweta','2025-10-17 15:47:15','drarchit','2025-10-17 18:17:53'),(1149,0,0,'O','N','2526',958,0,'2025-10-17','2026-01-16',991,0,958,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:37:00','0000-00-00','','','','N','16:37:00','17:16:52','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','2','16:37:17',0,'','reception','2025-10-17 16:37:17','darshan','2025-10-17 17:16:52'),(1150,0,0,'O','N','2526',959,0,'2025-10-17','2026-01-16',992,0,959,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:39:00','0000-00-00','','','','N','16:39:00','17:20:24','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','2','16:39:29',0,'','reception','2025-10-17 16:39:29','darshan','2025-10-17 17:20:24'),(1151,0,0,'O','N','2526',960,0,'2025-10-17','2026-01-16',993,0,960,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:40:00','0000-00-00','','','','N','16:40:00','17:22:49','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','2','16:40:54',0,'','reception','2025-10-17 16:40:54','darshan','2025-10-17 17:22:49'),(1152,0,0,'O','N','2526',961,0,'2025-10-17','2026-01-16',994,0,961,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:47:00','0000-00-00','','','','N','16:47:00','18:41:07','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:47:57',0,'','reception','2025-10-17 16:47:57','darshan','2025-10-17 18:41:07'),(1153,0,0,'O','N','2526',962,0,'2025-10-17','2026-01-16',995,0,962,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:51:00','0000-00-00','','','','N','16:51:00','00:00:00','','','N','N',NULL,'O','N','Z57','','0000-00-00 00:00:00','3','16:51:39',0,'','reception','2025-10-17 16:51:39','','0000-00-00 00:00:00'),(1154,0,0,'O','N','2526',963,0,'2025-10-17','2026-01-16',996,0,963,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:55:00','0000-00-00','','','','N','16:55:00','17:25:35','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','2','16:55:04',0,'','reception','2025-10-17 16:55:04','darshan','2025-10-17 17:25:35'),(1155,0,0,'O','N','2526',964,0,'2025-10-17','2026-01-16',997,0,964,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:58:00','0000-00-00','','','','N','16:58:00','17:45:12','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','2','16:58:53',0,'','reception','2025-10-17 16:58:53','darshan','2025-10-17 17:45:12'),(1156,0,0,'O','N','2526',965,0,'2025-10-17','2026-01-16',998,0,965,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:00:00','0000-00-00','','','','N','17:00:00','17:58:03','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','2','17:00:17',0,'','drashti','2025-10-17 17:00:17','darshan','2025-10-17 17:58:03'),(1157,0,0,'O','N','2526',966,0,'2025-10-17','2026-01-16',999,0,966,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:01:00','0000-00-00','','','','N','17:01:00','17:26:43','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','2','17:01:37',0,'','reception','2025-10-17 17:01:37','darshan','2025-10-17 17:26:43'),(1158,0,0,'O','N','2526',967,0,'2025-10-17','2026-01-16',1000,0,967,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:01:00','0000-00-00','','','','N','17:01:00','17:31:37','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','17:01:53',0,'','drashti','2025-10-17 17:01:53','darshan','2025-10-17 17:31:37'),(1159,0,0,'O','N','2526',595,0,'2025-10-17','0000-00-00',625,0,595,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:02:00','0000-00-00','','','','N','17:02:00','00:00:00','','','N','N',NULL,'O','O','Z62','','0000-00-00 00:00:00','3','17:02:04',0,'','reception','2025-10-17 17:02:04','','0000-00-00 00:00:00'),(1160,0,0,'O','N','2526',968,0,'2025-10-17','2026-01-16',1001,0,968,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:03:00','0000-00-00','','','','N','17:03:00','19:27:50','','N','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:03:25',0,'','drashti','2025-10-17 17:03:25','darshan','2025-10-17 19:27:50'),(1161,0,0,'O','N','2526',438,0,'2025-10-17','0000-00-00',461,0,438,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:06:00','0000-00-00','','','','N','17:06:00','00:00:00','','','N','N',NULL,'O','O','Z63','','0000-00-00 00:00:00','3','17:06:43',0,'','reception','2025-10-17 17:06:43','','0000-00-00 00:00:00'),(1162,0,0,'O','N','2526',969,0,'2025-10-17','2026-01-16',1002,0,969,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:17:00','0000-00-00','','','','N','17:17:00','17:46:13','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','7','17:17:06',0,'','manshi','2025-10-17 17:17:06','drridham','2025-10-17 17:46:13'),(1163,0,0,'O','N','2526',945,0,'2025-10-17','0000-00-00',976,0,945,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:19:00','0000-00-00','','','','N','17:19:00','19:05:44','','N','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','2','17:19:30',0,'','reception','2025-10-17 17:19:30','darshan','2025-10-17 19:05:44'),(1164,0,0,'O','N','2526',970,0,'2025-10-17','2026-01-16',1003,0,970,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:24:00','0000-00-00','','','','N','17:24:00','00:00:00','','','N','N',NULL,'O','N','Z65','','0000-00-00 00:00:00','3','17:24:37',0,'','janvi','2025-10-17 17:24:37','','0000-00-00 00:00:00'),(1165,0,0,'O','N','2526',971,0,'2025-10-17','2026-01-16',1004,0,971,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:25:00','0000-00-00','','','','N','17:25:00','17:53:13','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:25:36',0,'','reception','2025-10-17 17:25:36','darshan','2025-10-17 17:53:13'),(1166,0,0,'O','N','2526',972,0,'2025-10-17','2026-01-16',1005,0,972,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:30:00','0000-00-00','','','','N','17:30:00','18:11:14','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','2','17:30:29',0,'','reception','2025-10-17 17:30:29','darshan','2025-10-17 18:11:14'),(1167,0,0,'O','N','2526',973,0,'2025-10-17','2026-01-16',1006,0,973,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:31:00','0000-00-00','','','','N','17:31:00','00:00:00','','','N','N',NULL,'O','N','Z67','','0000-00-00 00:00:00','3','17:31:22',0,'','janvi','2025-10-17 17:31:22','','0000-00-00 00:00:00'),(1168,0,0,'O','N','2526',305,0,'2025-10-17','0000-00-00',321,0,305,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:37:00','0000-00-00','','','','N','17:37:00','00:00:00','','','N','N',NULL,'O','O','Z68','','0000-00-00 00:00:00','3','17:37:26',0,'','janvi','2025-10-17 17:37:26','','0000-00-00 00:00:00'),(1169,0,0,'O','N','2526',974,0,'2025-10-17','2026-01-16',1007,0,974,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:38:00','0000-00-00','','','','N','17:38:00','18:25:43','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:38:34',0,'','reception','2025-10-17 17:38:34','darshan','2025-10-17 18:25:43'),(1170,0,0,'O','N','2526',975,0,'2025-10-17','2026-01-16',1008,0,975,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:39:00','0000-00-00','','','','N','17:39:00','19:49:19','','','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','2','17:39:31',0,'','janvi','2025-10-17 17:39:31','darshan','2025-10-17 19:49:19'),(1171,0,0,'O','N','2526',976,0,'2025-10-17','2026-01-16',1009,0,976,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','18:18:43','','','N','Y',NULL,'O','N','Z70','','0000-00-00 00:00:00','4','17:41:14',0,'','drashti','2025-10-17 17:41:14','drarchit','2025-10-17 18:18:43'),(1172,0,0,'O','N','2526',977,0,'2025-10-17','2026-01-16',1010,0,977,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','18:00:05','','','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','5','17:42:56',0,'','janvi','2025-10-17 17:42:56','drjayant','2025-10-17 18:00:05'),(1173,0,0,'O','N','2526',978,0,'2025-10-17','2026-01-16',1011,0,978,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:43:00','0000-00-00','','','','N','17:43:00','19:38:05','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:43:08',0,'','reception','2025-10-17 17:43:08','darshan','2025-10-17 19:38:05'),(1174,0,0,'O','N','2526',979,0,'2025-10-17','2026-01-16',1012,0,979,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:45:00','0000-00-00','','','','N','17:45:00','18:29:40','','','N','Y',NULL,'O','N','Z72','','0000-00-00 00:00:00','2','17:46:03',0,'','reception','2025-10-17 17:46:03','darshan','2025-10-17 18:29:40'),(1175,0,0,'O','N','2526',980,0,'2025-10-17','2026-01-16',1013,0,980,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','20:11:23','','N','N','Y',NULL,'O','N','Z73','','0000-00-00 00:00:00','2','17:48:13',0,'','reception','2025-10-17 17:48:13','darshan','2025-10-17 20:11:23'),(1176,0,0,'O','N','2526',862,0,'2025-10-17','0000-00-00',894,0,862,'N','','N','','','REPORT','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','19:56:14','','N','N','Y',NULL,'O','O','Z74','','0000-00-00 00:00:00','2','17:48:20',0,'','drashti','2025-10-17 17:48:20','darshan','2025-10-17 19:56:14'),(1177,0,0,'O','N','2526',981,0,'2025-10-17','2026-01-16',1014,0,981,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','18:03:11','','','N','Y',NULL,'O','N','Z75','','0000-00-00 00:00:00','5','17:48:49',0,'','janvi','2025-10-17 17:48:49','drjayant','2025-10-17 18:03:11'),(1178,0,0,'O','N','2526',982,0,'2025-10-17','2026-01-16',1015,0,982,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','19:58:28','','N','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:50:49',0,'','reception','2025-10-17 17:50:49','darshan','2025-10-17 19:58:28'),(1179,0,0,'O','N','2526',983,0,'2025-10-17','2026-01-16',403,0,983,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','00:00:00','','','N','N',NULL,'O','N','Z76','','0000-00-00 00:00:00','3','17:51:42',0,'','janvi','2025-10-17 17:51:42','','0000-00-00 00:00:00'),(1180,0,0,'O','N','2526',984,0,'2025-10-17','2026-01-16',1016,0,984,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:54:00','0000-00-00','','','','N','17:54:00','18:59:36','','','N','Y',NULL,'O','N','Z77','','0000-00-00 00:00:00','2','17:55:00',0,'','reception','2025-10-17 17:55:00','darshan','2025-10-17 18:59:36'),(1181,0,0,'O','N','2526',985,0,'2025-10-17','2026-01-16',1017,0,985,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','20:10:52','','','N','Y',NULL,'O','N','Z78','','0000-00-00 00:00:00','2','17:57:40',0,'','reception','2025-10-17 17:57:40','darshan','2025-10-17 20:10:52'),(1182,0,0,'O','N','2526',986,0,'2025-10-17','2026-01-16',1018,0,986,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','18:29:33','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','4','18:02:12',0,'','reception','2025-10-17 18:02:12','drarchit','2025-10-17 18:29:33'),(1183,0,0,'O','N','2526',987,0,'2025-10-17','2026-01-16',1019,0,987,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','18:07:50','','','N','Y',NULL,'O','N','Z79','','0000-00-00 00:00:00','6','18:02:19',0,'','manshi','2025-10-17 18:02:19','drsagar','2025-10-17 18:07:50'),(1184,0,0,'O','N','2526',988,0,'2025-10-17','2026-01-16',1020,0,988,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','19:41:24','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','4','18:02:26',0,'','janvi','2025-10-17 18:02:26','drarchit','2025-10-17 19:41:24'),(1185,0,0,'O','N','2526',989,0,'2025-10-17','2026-01-16',1021,0,989,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','00:00:00','','','N','N',NULL,'O','N','Z80','','0000-00-00 00:00:00','3','18:05:10',0,'','janvi','2025-10-17 18:05:10','','0000-00-00 00:00:00'),(1186,0,0,'O','N','2526',990,0,'2025-10-17','2026-01-16',1022,0,990,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','20:18:33','','','N','Y',NULL,'O','N','Z81','','0000-00-00 00:00:00','2','18:05:15',0,'','reception','2025-10-17 18:05:15','darshan','2025-10-17 20:18:33'),(1187,0,0,'O','N','2526',201,0,'2025-10-17','0000-00-00',214,0,201,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','18:39:21','','','N','Y',NULL,'O','O','L10','','0000-00-00 00:00:00','2','18:05:46',0,'','drashti','2025-10-17 18:05:46','darshan','2025-10-17 18:39:21'),(1188,0,0,'O','N','2526',441,0,'2025-10-17','0000-00-00',466,0,441,'N','','N','','','','Y','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','18:17:23','','','N','Y',NULL,'O','O','Z82','','0000-00-00 00:00:00','7','18:07:11',0,'','manshi','2025-10-17 18:07:11','drridham','2025-10-17 18:17:23'),(1189,0,0,'O','N','2526',431,0,'2025-10-17','0000-00-00',454,0,431,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','00:00:00','','','N','N',NULL,'O','O','Z83','','0000-00-00 00:00:00','3','18:09:51',0,'','janvi','2025-10-17 18:09:51','','0000-00-00 00:00:00'),(1190,0,0,'O','N','2526',991,0,'2025-10-17','2026-01-16',1023,0,991,'N','','N','','','NC','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:15:00','0000-00-00','','','','N','16:15:00','18:26:52','','','N','Y',NULL,'O','N','Z84','','0000-00-00 00:00:00','4','18:11:27',0,'','drashti','2025-10-17 18:11:27','drarchit','2025-10-17 18:26:52'),(1191,0,0,'O','N','2526',992,0,'2025-10-17','2026-01-16',1024,0,992,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:13:00','0000-00-00','','','','N','18:13:00','19:27:47','','','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','4','18:13:58',0,'','drashti','2025-10-17 18:13:58','drarchit','2025-10-17 19:27:47'),(1192,0,0,'O','N','2526',878,0,'2025-10-17','0000-00-00',910,0,878,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','18:23:23','','','N','Y',NULL,'O','O','Z85','','0000-00-00 00:00:00','7','18:18:01',0,'','manshi','2025-10-17 18:18:01','drridham','2025-10-17 18:23:23'),(1193,0,0,'O','N','2526',993,0,'2025-10-17','2026-01-16',1025,0,993,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','18:53:36','','','N','Y',NULL,'O','N','Z86','','0000-00-00 00:00:00','7','18:21:35',0,'','manshi','2025-10-17 18:21:35','drridham','2025-10-17 18:53:36'),(1194,0,0,'O','N','2526',994,0,'2025-10-17','2026-01-16',1026,0,994,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:25:00','0000-00-00','','','','N','18:25:00','20:13:29','','N','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','2','18:25:22',0,'','reception','2025-10-17 18:25:22','darshan','2025-10-17 20:13:29'),(1195,0,0,'O','N','2526',995,0,'2025-10-17','2026-01-16',1027,0,995,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','19:04:28','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','2','18:28:58',0,'','reception','2025-10-17 18:28:58','darshan','2025-10-17 19:04:28'),(1196,0,0,'O','N','2526',140,0,'2025-10-17','0000-00-00',151,0,140,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','00:00:00','','','N','N',NULL,'O','O','Z87','','0000-00-00 00:00:00','3','18:34:48',0,'','janvi','2025-10-17 18:34:48','','0000-00-00 00:00:00'),(1197,0,0,'O','N','2526',996,0,'2025-10-17','2026-01-16',1028,0,996,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:35:00','0000-00-00','','','','N','18:35:00','20:21:48','','','N','Y',NULL,'O','N','Z88','','0000-00-00 00:00:00','2','18:35:57',0,'','reception','2025-10-17 18:35:57','darshan','2025-10-17 20:21:48'),(1198,0,0,'O','N','2526',997,0,'2025-10-17','2026-01-16',1029,0,997,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','12:55:42','','','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','2','18:39:21',0,'','drashti','2025-10-17 18:36:23','darshan','2025-10-18 12:55:42'),(1199,0,0,'O','N','2526',247,0,'2025-10-17','0000-00-00',262,0,247,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','00:00:00','','','N','N',NULL,'O','O','Z89','','0000-00-00 00:00:00','3','18:45:06',0,'','janvi','2025-10-17 18:45:06','','0000-00-00 00:00:00'),(1200,0,0,'O','N','2526',998,0,'2025-10-17','2026-01-16',1030,0,998,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','18:59:59','','','N','Y',NULL,'O','N','Z90','','0000-00-00 00:00:00','5','18:48:49',0,'','janvi','2025-10-17 18:48:49','drjayant','2025-10-17 18:59:59'),(1201,0,0,'O','N','2526',999,0,'2025-10-17','2026-01-16',1031,0,999,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','19:06:29','','','N','Y',NULL,'O','N','Z91','','0000-00-00 00:00:00','5','18:50:11',0,'','janvi','2025-10-17 18:50:11','drjayant','2025-10-17 19:06:29'),(1202,0,0,'O','N','2526',291,0,'2025-10-17','0000-00-00',307,0,291,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','00:00:00','','','N','N',NULL,'O','O','Z92','','0000-00-00 00:00:00','3','18:51:45',0,'','drashti','2025-10-17 18:51:45','','0000-00-00 00:00:00'),(1203,0,0,'O','N','2526',270,0,'2025-10-17','0000-00-00',286,0,270,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:58:00','0000-00-00','','','','N','18:58:00','00:00:00','','','N','N',NULL,'O','O','Z93','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-10-17 18:58:13','','0000-00-00 00:00:00'),(1204,0,0,'O','N','2526',1000,0,'2025-10-17','2026-01-16',1032,0,1000,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:02:00','0000-00-00','','','','N','19:02:00','19:37:21','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','2','19:02:28',0,'','reception','2025-10-17 19:02:28','darshan','2025-10-17 19:37:21'),(1205,0,0,'O','N','2526',1001,0,'2025-10-17','2026-01-16',1033,0,1001,'N','','N','','','FC ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:10:00','0000-00-00','','','','N','19:10:00','19:41:16','','','N','Y',NULL,'O','N','Z94','','0000-00-00 00:00:00','4','19:10:34',0,'','drashti','2025-10-17 19:10:34','drarchit','2025-10-17 19:41:16'),(1206,0,0,'O','N','2526',1002,0,'2025-10-17','2026-01-16',1034,0,1002,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:11:00','0000-00-00','','','','N','19:11:00','00:00:00','','','N','N',NULL,'O','N','Z95','','0000-00-00 00:00:00','4','19:11:45',0,'','janvi','2025-10-17 19:11:45','','0000-00-00 00:00:00'),(1207,0,0,'O','N','2526',1003,0,'2025-10-17','2026-01-16',1035,0,1003,'N','','N','','','','','N','D14','','N',67,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:28:00','0000-00-00','','','','N','19:28:00','19:54:41','','','N','Y',NULL,'O','N','Z96','','0000-00-00 00:00:00','7','19:28:41',0,'','manshi','2025-10-17 19:28:41','drridham','2025-10-17 19:54:41'),(1208,0,0,'O','N','2526',1004,0,'2025-10-17','2026-01-16',1036,0,1004,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:33:00','0000-00-00','','','','N','19:33:00','00:00:00','','','N','N',NULL,'O','N','Z97','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-10-17 19:33:13','','0000-00-00 00:00:00'),(1209,0,0,'O','N','2526',1005,0,'2025-10-17','2026-01-16',1037,0,1005,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:33:00','0000-00-00','','','','N','19:33:00','00:00:00','','','N','Y',NULL,'O','N','Z98','','0000-00-00 00:00:00','7','19:33:38',0,'','manshi','2025-10-17 19:33:38','','0000-00-00 00:00:00'),(1210,0,0,'O','N','2526',901,0,'2025-10-17','0000-00-00',932,0,901,'N','','N','','','','Y','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:37:00','0000-00-00','','','','N','19:37:00','19:41:12','','','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','6','19:37:57',0,'','manshi','2025-10-17 19:37:57','drsagar','2025-10-17 19:41:12'),(1211,0,0,'O','N','2526',1006,0,'2025-10-17','2026-01-16',1038,0,1006,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:58:00','0000-00-00','','','','N','19:58:00','20:42:31','','','N','Y',NULL,'O','N','Z99','','0000-00-00 00:00:00','6','19:58:24',0,'','manshi','2025-10-17 19:58:24','drsagar','2025-10-17 20:42:31'),(1212,0,0,'O','N','2526',1007,0,'2025-10-17','2026-01-16',1039,0,1007,'N','','N','','','NE','Y','N','D06','','N',5,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:08:00','0000-00-00','','','','N','20:08:00','20:26:14','','','N','Y',NULL,'O','N','Z100','','0000-00-00 00:00:00','2','20:08:01',0,'','drashti','2025-10-17 20:08:01','darshan','2025-10-17 20:26:14'),(1213,0,0,'I','N','2526',0,71,'2025-10-17','2026-01-16',1040,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:50:00','2025-10-22','','1','mo','N','20:50:00','13:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-17 20:55:33','vishal','2025-10-22 13:20:21'),(1214,0,0,'O','N','2526',1008,0,'2025-10-18','2026-01-17',1041,0,1008,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:45:00','0000-00-00','','','','N','08:45:00','11:22:42','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','7','09:02:33',0,'','shweta','2025-10-18 09:02:33','drridham','2025-10-18 11:22:42'),(1215,0,0,'O','N','2526',1009,0,'2025-10-18','2026-01-17',1042,0,1009,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:48:00','0000-00-00','','','','N','08:48:00','11:24:49','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','5','11:24:04',0,'','shweta','2025-10-18 09:05:40','drjayant','2025-10-18 11:24:49'),(1216,0,0,'O','N','2526',1010,0,'2025-10-18','2026-01-17',1043,0,1010,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:52:00','0000-00-00','','','','N','08:52:00','11:25:55','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','5','11:24:04',0,'','shweta','2025-10-18 09:08:16','drjayant','2025-10-18 11:25:55'),(1217,0,0,'O','N','2526',1011,0,'2025-10-18','2026-01-17',1044,0,1011,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:41:00','0000-00-00','','','','N','09:41:00','13:01:46','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','2','09:41:20',0,'','reception','2025-10-18 09:41:20','darshan','2025-10-18 13:01:46'),(1218,0,0,'O','N','2526',1012,0,'2025-10-18','2026-01-17',1045,0,1012,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:42:00','0000-00-00','','','','N','09:42:00','11:10:35','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','09:42:36',0,'','reception','2025-10-18 09:42:36','darshan','2025-10-18 11:10:35'),(1219,0,0,'O','N','2526',1013,0,'2025-10-18','2026-01-17',1046,0,1013,'N','','N','','','FV ','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:47:00','0000-00-00','','','','N','09:47:00','11:31:38','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','2','09:48:03',0,'','reception','2025-10-18 09:48:03','darshan','2025-10-18 11:31:38'),(1220,0,0,'I','N','2526',0,72,'2025-10-18','2026-01-17',1047,0,0,'N','','N','','','','N','N','D02','','N',0,'','70',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-10-20','','1','mo','N','09:30:00','11:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-18 09:48:58','mo','2025-10-20 11:42:28'),(1221,0,0,'O','N','2526',1014,0,'2025-10-18','2026-01-17',1048,0,1014,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:50:00','0000-00-00','','','','N','09:50:00','11:36:44','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','2','09:50:25',0,'','reception','2025-10-18 09:50:25','darshan','2025-10-18 11:36:44'),(1222,0,0,'O','N','2526',1015,0,'2025-10-18','2026-01-17',1049,0,1015,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:53:00','0000-00-00','','','','N','09:53:00','00:00:00','','','N','N',NULL,'O','N','Z07','','0000-00-00 00:00:00','4','09:53:42',0,'','janvi','2025-10-18 09:53:42','','0000-00-00 00:00:00'),(1223,0,0,'O','N','2526',1016,0,'2025-10-18','2026-01-17',1050,0,1016,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:02:00','0000-00-00','','','','N','10:02:00','12:42:01','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:02:08',0,'','reception','2025-10-18 10:02:08','darshan','2025-10-18 12:42:01'),(1224,0,0,'O','N','2526',644,0,'2025-10-18','0000-00-00',674,0,644,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:08:00','0000-00-00','','','','N','10:08:00','00:00:00','','','N','N',NULL,'O','O','Z08','','0000-00-00 00:00:00','4','10:08:58',0,'','janvi','2025-10-18 10:08:58','','0000-00-00 00:00:00'),(1225,0,0,'O','N','2526',1017,0,'2025-10-18','2026-01-17',1051,0,1017,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:12:00','0000-00-00','','','','N','10:12:00','14:30:28','','N','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','2','10:12:10',0,'','reception','2025-10-18 10:12:10','darshan','2025-10-18 14:30:28'),(1226,0,0,'O','N','2526',191,0,'2025-10-18','0000-00-00',204,0,191,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:13:00','0000-00-00','','','','N','10:13:00','00:00:00','','','N','N',NULL,'O','O','Z10','','0000-00-00 00:00:00','4','10:14:10',0,'','janvi','2025-10-18 10:14:10','','0000-00-00 00:00:00'),(1227,0,0,'O','N','2526',997,0,'2025-10-18','0000-00-00',1029,0,997,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','13:02:02','','N','N','Y',NULL,'O','O','Z11','','0000-00-00 00:00:00','2','10:16:44',0,'','reception','2025-10-18 10:16:44','darshan','2025-10-18 13:02:02'),(1228,0,0,'O','N','2526',1018,0,'2025-10-18','2026-01-17',1052,0,1018,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:24:00','0000-00-00','','','','N','10:24:00','00:00:00','','','N','N',NULL,'O','N','Z12','','0000-00-00 00:00:00','4','10:24:35',0,'','reception','2025-10-18 10:24:35','','0000-00-00 00:00:00'),(1229,0,0,'O','N','2526',1019,0,'2025-10-18','2026-01-17',1053,0,1019,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','','N','10:40:00','11:11:29','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','3','10:40:32',0,'','janvi','2025-10-18 10:40:32','drpratapsinh','2025-10-18 11:11:29'),(1230,0,0,'O','N','2526',1020,0,'2025-10-18','2026-01-17',1054,0,1020,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:45:00','0000-00-00','','','','N','10:45:00','11:10:12','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','6','10:45:05',0,'','manshi','2025-10-18 10:45:04','drsagar','2025-10-18 11:10:12'),(1231,0,0,'O','N','2526',1021,0,'2025-10-18','2026-01-17',1055,0,1021,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','11:27:35','','','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:53:40',0,'','reception','2025-10-18 10:53:40','darshan','2025-10-18 11:27:35'),(1232,0,0,'O','N','2526',1022,0,'2025-10-18','2026-01-17',1056,0,1022,'N','','N','','','FV ','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','11:24:39','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','10:55:08',0,'','reception','2025-10-18 10:55:08','darshan','2025-10-18 11:24:39'),(1233,0,0,'O','N','2526',1023,0,'2025-10-18','2026-01-17',1057,0,1023,'N','','N','','','NV','','N','D06','','N',72,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','15:01:36','','N','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','10:56:25',0,'','drashti','2025-10-18 10:56:25','darshan','2025-10-18 15:01:36'),(1234,0,0,'O','N','2526',1024,0,'2025-10-18','2026-01-17',1058,0,1024,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','13:41:44','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','11:06:23',0,'','reception','2025-10-18 11:06:23','darshan','2025-10-18 13:41:44'),(1235,0,0,'O','N','2526',514,0,'2025-10-18','0000-00-00',539,0,514,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','11:21:11','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','6','11:08:17',0,'','manshi','2025-10-18 11:08:17','drsagar','2025-10-18 11:21:11'),(1236,0,0,'O','N','2526',76,0,'2025-10-18','0000-00-00',87,0,76,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','12:32:42','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','2','11:09:48',0,'','reception','2025-10-18 11:09:48','darshan','2025-10-18 12:32:42'),(1237,0,0,'O','N','2526',1025,0,'2025-10-18','2026-01-17',1059,0,1025,'N','','N','','','NV','','N','D06','','N',75,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','12:41:27','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','11:10:55',0,'','drashti','2025-10-18 11:10:55','darshan','2025-10-18 12:41:27'),(1238,0,0,'O','N','2526',1026,0,'2025-10-18','2026-01-17',1060,0,1026,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','12:25:18','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','11:17:09',0,'','drashti','2025-10-18 11:17:09','darshan','2025-10-18 12:25:18'),(1239,0,0,'O','N','2526',1027,0,'2025-10-18','2026-01-17',1061,0,1027,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','14:14:38','','N','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','11:18:49',0,'','reception','2025-10-18 11:18:49','darshan','2025-10-18 14:14:38'),(1240,0,0,'O','N','2526',1028,0,'2025-10-18','2026-01-17',1062,0,1028,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','13:07:49','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','2','11:21:35',0,'','reception','2025-10-18 11:21:35','darshan','2025-10-18 13:07:49'),(1241,0,0,'O','N','2526',1029,0,'2025-10-18','2026-01-17',1063,0,1029,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','11:33:56','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','3','11:23:03',0,'','drashti','2025-10-18 11:23:03','drpratapsinh','2025-10-18 11:33:56'),(1242,0,0,'O','N','2526',116,0,'2025-10-18','0000-00-00',127,0,116,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','11:34:08','','','N','Y',NULL,'O','O','Z21','','0000-00-00 00:00:00','3','11:24:41',0,'','janvi','2025-10-18 11:24:41','drpratapsinh','2025-10-18 11:34:08'),(1243,0,0,'O','N','2526',1030,0,'2025-10-18','2026-01-17',1064,0,1030,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','00:00:00','','','N','N',NULL,'O','N','Z22','','0000-00-00 00:00:00','4','11:25:57',0,'','reception','2025-10-18 11:25:57','','0000-00-00 00:00:00'),(1244,0,0,'O','N','2526',1031,0,'2025-10-18','2026-01-17',1065,0,1031,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','12:06:21','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','2','11:29:01',0,'','reception','2025-10-18 11:29:01','darshan','2025-10-18 12:06:21'),(1245,0,0,'O','N','2526',481,0,'2025-10-18','0000-00-00',507,0,481,'N','','N','','','INJECTION','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','00:00:00','','','N','N',NULL,'O','O','Z23','','0000-00-00 00:00:00','4','11:29:52',0,'','janvi','2025-10-18 11:29:52','','0000-00-00 00:00:00'),(1246,0,0,'O','N','2526',70,0,'2025-10-18','0000-00-00',81,0,70,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','11:47:40','','','N','Y',NULL,'O','O','Z24','','0000-00-00 00:00:00','6','11:30:48',0,'','manshi','2025-10-18 11:30:48','drsagar','2025-10-18 11:47:40'),(1247,0,0,'O','N','2526',1032,0,'2025-10-18','2026-01-17',1066,0,1032,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','12:28:15','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:32:24',0,'','reception','2025-10-18 11:32:24','darshan','2025-10-18 12:28:15'),(1248,0,0,'O','N','2526',1033,0,'2025-10-18','2026-01-17',1067,0,1033,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','11:47:49','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','6','11:33:00',0,'','manshi','2025-10-18 11:33:00','drsagar','2025-10-18 11:47:49'),(1249,0,0,'O','N','2526',1034,0,'2025-10-18','2026-01-17',1068,0,1034,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:34:00','0000-00-00','','','','N','11:34:00','12:01:59','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','5','11:34:47',0,'','drashti','2025-10-18 11:34:47','drjayant','2025-10-18 12:01:59'),(1250,0,0,'O','N','2526',1035,0,'2025-10-18','2026-01-17',1069,0,1035,'N','','N','','','','','N','D02','','N',73,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:34:00','0000-00-00','','','','N','11:34:00','00:00:00','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','3','11:34:55',0,'','janvi','2025-10-18 11:34:55','','0000-00-00 00:00:00'),(1251,0,0,'O','N','2526',1036,0,'2025-10-18','2026-01-17',1070,0,1036,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','13:35:32','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','2','11:36:02',0,'','reception','2025-10-18 11:36:01','darshan','2025-10-18 13:35:32'),(1252,0,0,'O','N','2526',1037,0,'2025-10-18','2026-01-17',1071,0,1037,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','13:40:50','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','2','11:38:41',0,'','reception','2025-10-18 11:38:41','darshan','2025-10-18 13:40:50'),(1253,0,0,'O','N','2526',1038,0,'2025-10-18','2026-01-17',1072,0,1038,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','13:48:25','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','2','11:40:17',0,'','reception','2025-10-18 11:40:17','darshan','2025-10-18 13:48:25'),(1254,0,0,'O','N','2526',1039,0,'2025-10-18','2026-01-17',1073,0,1039,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','14:00:33','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','2','12:06:21',0,'','janvi','2025-10-18 11:40:47','darshan','2025-10-18 14:00:33'),(1255,0,0,'O','N','2526',1040,0,'2025-10-18','2026-01-17',1074,0,1040,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','14:03:54','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','2','12:06:21',0,'','drashti','2025-10-18 11:41:46','darshan','2025-10-18 14:03:54'),(1256,0,0,'O','N','2526',1041,0,'2025-10-18','2026-01-17',1075,0,1041,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','12:58:12','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','12:06:21',0,'','reception','2025-10-18 11:42:33','darshan','2025-10-18 12:58:12'),(1257,0,0,'O','N','2526',1042,0,'2025-10-18','2026-01-17',1076,0,1042,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','14:13:18','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','12:06:21',0,'','reception','2025-10-18 11:44:55','darshan','2025-10-18 14:13:18'),(1258,0,0,'O','N','2526',1043,0,'2025-10-18','2026-01-17',1077,0,1043,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','12:07:32','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','5','11:45:46',0,'','janvi','2025-10-18 11:45:46','drjayant','2025-10-18 12:07:32'),(1259,0,0,'O','N','2526',1044,0,'2025-10-18','2026-01-17',1078,0,1044,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','14:18:56','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','2','12:06:21',0,'','drashti','2025-10-18 11:46:35','darshan','2025-10-18 14:18:56'),(1260,0,0,'O','N','2526',1045,0,'2025-10-18','2026-01-17',1079,0,1045,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','14:34:53','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','2','12:06:21',0,'','drashti','2025-10-18 11:50:32','darshan','2025-10-18 14:34:53'),(1261,0,0,'O','N','2526',1046,0,'2025-10-18','2026-01-17',1080,0,1046,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','13:19:21','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','12:06:21',0,'','drashti','2025-10-18 11:52:24','darshan','2025-10-18 13:19:21'),(1262,0,0,'O','N','2526',1047,0,'2025-10-18','2026-01-17',1081,0,1047,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:55:00','0000-00-00','','','','N','11:55:00','12:48:08','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','6','11:55:59',0,'','manshi','2025-10-18 11:55:59','drsagar','2025-10-18 12:48:08'),(1263,0,0,'O','N','2526',1048,0,'2025-10-18','2026-01-17',1082,0,1048,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','14:56:47','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','12:06:21',0,'','reception','2025-10-18 12:02:43','darshan','2025-10-18 14:56:47'),(1264,0,0,'O','N','2526',1049,0,'2025-10-18','2026-01-17',1083,0,1049,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:04:00','0000-00-00','','','','N','12:04:00','00:00:00','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','3','12:04:55',0,'','janvi','2025-10-18 12:04:55','','0000-00-00 00:00:00'),(1265,0,0,'O','N','2526',1050,0,'2025-10-18','2026-01-17',1084,0,1050,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:07:00','0000-00-00','','','','N','12:07:00','13:16:32','','','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','2','13:07:49',0,'','reception','2025-10-18 12:07:46','darshan','2025-10-18 13:16:32'),(1266,0,0,'I','N','2526',879,73,'2025-10-18','2026-01-17',911,0,879,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','2025-10-18','','1','mo','N','12:00:00','18:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-18 12:12:56','riya','2025-10-18 18:13:35'),(1267,0,0,'O','N','2526',21,0,'2025-10-18','0000-00-00',22,0,21,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:15:00','0000-00-00','','','','N','12:15:00','00:00:00','','','N','N',NULL,'O','O','Z39','','0000-00-00 00:00:00','4','12:15:12',0,'','drashti','2025-10-18 12:15:12','','0000-00-00 00:00:00'),(1268,0,0,'O','N','2526',1051,0,'2025-10-18','2026-01-17',1085,0,1051,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:16:00','0000-00-00','','','','N','12:16:00','13:22:06','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','13:07:49',0,'','reception','2025-10-18 12:16:21','darshan','2025-10-18 13:22:06'),(1269,0,0,'O','N','2526',1052,0,'2025-10-18','2026-01-17',606,0,1052,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:24:00','0000-00-00','','','','N','12:24:00','12:31:51','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','5','12:24:53',0,'','janvi','2025-10-18 12:24:53','drjayant','2025-10-18 12:31:51'),(1270,0,0,'O','N','2526',1053,0,'2025-10-18','2026-01-17',1086,0,1053,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','15:09:57','','N','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','13:07:49',0,'','drashti','2025-10-18 12:28:05','darshan','2025-10-18 15:09:57'),(1271,0,0,'O','N','2526',1054,0,'2025-10-18','2026-01-17',1087,0,1054,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:40:00','0000-00-00','','','','N','12:40:00','15:00:57','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','2','13:07:49',0,'','reception','2025-10-18 12:40:48','darshan','2025-10-18 15:00:57'),(1272,0,0,'O','N','2526',1055,0,'2025-10-18','2026-01-17',1088,0,1055,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:45:00','0000-00-00','','','','N','12:45:00','15:08:25','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','2','13:07:49',0,'','reception','2025-10-18 12:45:16','darshan','2025-10-18 15:08:25'),(1273,0,0,'O','N','2526',552,0,'2025-10-18','0000-00-00',578,0,552,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:58:00','0000-00-00','','','','N','12:58:00','00:00:00','','','N','N',NULL,'O','O','Z43','','0000-00-00 00:00:00','4','12:58:17',0,'','drashti','2025-10-18 12:58:17','','0000-00-00 00:00:00'),(1274,0,0,'O','N','2526',1056,0,'2025-10-18','2026-01-17',1089,0,1056,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:02:00','0000-00-00','','','','N','13:02:00','00:00:00','','','N','N',NULL,'O','N','Z44','','0000-00-00 00:00:00','3','13:03:04',0,'','janvi','2025-10-18 13:03:04','','0000-00-00 00:00:00'),(1275,0,0,'O','N','2526',310,0,'2025-10-18','0000-00-00',326,0,310,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:08:00','0000-00-00','','','','N','13:08:00','00:00:00','','','N','N',NULL,'O','O','Z45','','0000-00-00 00:00:00','3','13:08:10',0,'','reception','2025-10-18 13:08:09','','0000-00-00 00:00:00'),(1276,0,0,'O','N','2526',1057,0,'2025-10-18','2026-01-17',1090,0,1057,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:25:00','0000-00-00','','','','N','13:25:00','18:12:48','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','7','13:25:17',0,'','manshi','2025-10-18 13:25:17','drridham','2025-10-18 18:12:48'),(1277,0,0,'O','N','2526',1058,0,'2025-10-18','2026-01-17',1091,0,1058,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:51:00','0000-00-00','','','','N','13:51:00','15:17:20','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','13:51:49',0,'','reception','2025-10-18 13:51:49','darshan','2025-10-18 15:17:20'),(1278,0,0,'O','N','2526',1059,0,'2025-10-18','2026-01-17',1092,0,1059,'N','','N','','','','','N','D02','','N',76,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:12:00','0000-00-00','','','','N','14:12:00','00:00:00','','','N','N',NULL,'O','N','Z48','','0000-00-00 00:00:00','3','14:12:44',0,'','janvi','2025-10-18 14:12:44','','0000-00-00 00:00:00'),(1279,0,0,'I','N','2526',0,74,'2025-10-18','2026-01-17',1093,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:00:00','2025-10-19','','1','mo','N','15:00:00','10:40:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-18 15:49:26','mo','2025-10-19 10:59:40'),(1280,0,0,'O','N','2526',1060,0,'2025-10-18','2026-01-17',1094,0,1060,'N','','N','','','EMERGENCY','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:21:00','0000-00-00','','','','N','16:21:00','17:30:25','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','6','16:21:53',0,'','drashti','2025-10-18 16:21:53','drsagar','2025-10-18 17:30:25'),(1281,0,0,'I','N','2526',0,75,'2025-10-18','2026-01-17',1095,0,0,'N','','N','','','','N','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:27:00','2025-10-19','','1','mo','N','17:27:00','10:40:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-18 17:30:22','mo','2025-10-19 12:19:08'),(1282,0,0,'O','N','2526',1061,0,'2025-10-18','2026-01-17',1096,0,1061,'N','','N','','','NE','Y','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','00:00:00','','','N','N',NULL,'O','N','Z50','','0000-00-00 00:00:00','2','17:32:51',0,'','reception','2025-10-18 17:32:51','','0000-00-00 00:00:00'),(1283,0,0,'O','N','2526',105,0,'2025-10-18','0000-00-00',116,0,105,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','18:25:59','','','N','Y',NULL,'O','O','Z51','','0000-00-00 00:00:00','6','18:12:51',0,'','manshi','2025-10-18 18:12:51','drsagar','2025-10-18 18:25:59'),(1284,0,0,'O','N','2526',544,0,'2025-10-18','0000-00-00',570,0,544,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','00:00:00','','','N','N',NULL,'O','O','Z52','','0000-00-00 00:00:00','3','18:16:54',0,'','janvi','2025-10-18 18:16:54','','0000-00-00 00:00:00'),(1285,0,0,'O','N','2526',1062,0,'2025-10-18','2026-01-17',1097,0,1062,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','00:00:00','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','7','18:21:23',0,'','manshi','2025-10-18 18:21:23','','0000-00-00 00:00:00'),(1286,0,0,'O','N','2526',1063,0,'2025-10-18','2026-01-17',607,0,1063,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','00:00:00','','','N','N',NULL,'O','N','Z54','','0000-00-00 00:00:00','3','18:24:09',0,'','janvi','2025-10-18 18:24:09','','0000-00-00 00:00:00'),(1287,0,0,'O','N','2526',118,0,'2025-10-18','0000-00-00',129,0,118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:13:00','0000-00-00','','','','N','19:13:00','00:00:00','','','N','N',NULL,'O','O','Z55','','0000-00-00 00:00:00','3','19:14:12',0,'','janvi','2025-10-18 19:14:12','','0000-00-00 00:00:00'),(1288,0,0,'O','N','2526',1064,0,'2025-10-18','2026-01-17',1098,0,1064,'N','','N','','','','','N','D14','','N',77,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:14:00','0000-00-00','','','','N','19:14:00','00:00:00','','','N','N',NULL,'O','N','Z56','','0000-00-00 00:00:00','7','19:14:58',0,'','manshi','2025-10-18 19:14:58','','0000-00-00 00:00:00'),(1289,0,0,'O','N','2526',1065,0,'2025-10-18','2026-01-17',1099,0,1065,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:17:00','0000-00-00','','','','N','19:17:00','19:34:46','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','6','19:17:23',0,'','manshi','2025-10-18 19:17:23','drsagar','2025-10-18 19:34:46'),(1290,0,0,'O','N','2526',1066,0,'2025-10-18','2026-01-17',1100,0,1066,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:36:00','0000-00-00','','','','N','19:36:00','00:00:00','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','6','19:36:31',0,'','manshi','2025-10-18 19:36:31','','0000-00-00 00:00:00'),(1291,0,0,'I','N','2526',0,76,'2025-10-18','2026-01-17',1101,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:30:00','2025-10-18','','4','mo','N','20:30:00','22:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-18 20:31:43','mo','2025-10-18 22:10:47'),(1292,0,0,'I','N','2526',0,77,'2025-10-19','2026-01-18',1102,0,0,'N','','N','','','','N','N','D02','','N',0,'','78',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','02:30:00','2025-10-23','','3','mo','N','02:30:00','08:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-10-19 10:14:48','vishal','2025-10-23 08:43:26'),(1293,0,0,'I','N','2526',0,78,'2025-10-19','2026-01-18',1103,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','2025-10-28','','1','mo','N','10:15:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-10-19 10:35:30','mo','2025-10-28 11:57:57'),(1294,0,0,'I','N','2526',0,79,'2025-10-20','2026-01-19',1104,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:00:00','2025-10-23','','1','mo','N','08:00:00','20:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-20 11:09:16','mo','2025-10-23 21:21:52'),(1295,0,0,'I','N','2526',0,80,'2025-10-20','2026-01-19',1105,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:00:00','2025-10-21','','1','mo','N','17:00:00','15:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-20 19:39:00','mo','2025-10-21 15:11:35'),(1296,0,0,'I','N','2526',951,81,'2025-10-21','2026-01-20',982,0,951,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:45:00','2025-10-25','','4','mo','N','13:45:00','13:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-21 14:01:59','mo','2025-10-25 13:40:54'),(1297,0,0,'O','N','2526',1067,0,'2025-10-23','2026-01-22',1106,0,1067,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:55:00','0000-00-00','','','','N','09:55:00','11:48:13','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','3','09:56:00',0,'','drashti','2025-10-23 09:56:00','drpratapsinh','2025-10-23 11:48:12'),(1298,0,0,'I','N','2526',0,82,'2025-10-22','2026-01-22',1107,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','23:30:00','2025-10-28','','1','mo','N','23:30:00','12:50:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-23 10:39:29','mo','2025-10-28 13:53:32'),(1299,0,0,'O','N','2526',1004,0,'2025-10-23','0000-00-00',1036,0,1004,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','11:48:40','','','N','Y',NULL,'O','O','Z02','','0000-00-00 00:00:00','3','11:28:33',0,'','drashti','2025-10-23 11:28:33','drpratapsinh','2025-10-23 11:48:40'),(1300,0,0,'O','N','2526',431,0,'2025-10-23','0000-00-00',454,0,431,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:34:00','0000-00-00','','','','N','11:34:00','11:48:53','','','N','Y',NULL,'O','O','Z03','','0000-00-00 00:00:00','3','11:34:04',0,'','drashti','2025-10-23 11:34:04','drpratapsinh','2025-10-23 11:48:53'),(1301,0,0,'O','N','2526',1068,0,'2025-10-18','2026-01-17',1108,0,1068,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-23 11:39:54','','0000-00-00 00:00:00'),(1302,0,0,'O','N','2526',1069,0,'2025-10-23','2026-01-22',1109,0,1069,'N','','N','','','NC','','N','D02','','N',80,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','12:00:15','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','3','11:41:16',0,'','drashti','2025-10-23 11:41:16','drpratapsinh','2025-10-23 12:00:15'),(1303,0,0,'O','N','2526',1070,0,'2025-10-23','2026-01-22',1110,0,1070,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','00:00:00','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','3','11:45:11',0,'','drashti','2025-10-23 11:45:11','','0000-00-00 00:00:00'),(1304,0,0,'O','N','2526',221,0,'2025-10-19','0000-00-00',234,0,221,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','00:00:00','','','N','N',NULL,'O','O','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-23 11:47:53','','0000-00-00 00:00:00'),(1305,0,0,'O','N','2526',1071,0,'2025-10-18','2026-01-17',1111,0,1071,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:49:00','0000-00-00','','','','N','11:49:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-10-23 11:49:31','','0000-00-00 00:00:00'),(1306,0,0,'O','N','2526',1072,0,'2025-10-19','2026-01-18',1112,0,1072,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-23 11:52:53','','0000-00-00 00:00:00'),(1307,0,0,'O','N','2526',1073,0,'2025-10-19','2026-01-18',1113,0,1073,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-23 11:56:39','','0000-00-00 00:00:00'),(1308,0,0,'O','N','2526',1074,0,'2025-10-20','2026-01-19',1114,0,1074,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-10-23 12:00:21','','0000-00-00 00:00:00'),(1309,0,0,'O','N','2526',1075,0,'2025-10-20','2026-01-19',1115,0,1075,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-23 12:00:24','','0000-00-00 00:00:00'),(1310,0,0,'O','N','2526',1076,0,'2025-10-21','2026-01-20',1116,0,1076,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:04:00','0000-00-00','','','','N','12:04:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-23 12:04:10','','0000-00-00 00:00:00'),(1311,0,0,'O','N','2526',1077,0,'2025-10-21','2026-01-20',1117,0,1077,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:04:00','0000-00-00','','','','N','12:04:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-10-23 12:04:31','','0000-00-00 00:00:00'),(1312,0,0,'O','N','2526',1078,0,'2025-10-21','2026-01-20',1118,0,1078,'N','','N','','','NC','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:10:00','0000-00-00','','','','N','12:10:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-10-23 12:10:54','','0000-00-00 00:00:00'),(1313,0,0,'O','N','2526',1079,0,'2025-10-22','2026-01-21',1119,0,1079,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:13:00','0000-00-00','','','','N','12:13:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-23 12:13:57','','0000-00-00 00:00:00'),(1314,0,0,'O','N','2526',1080,0,'2025-10-18','2026-01-17',1120,0,1080,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:16:00','0000-00-00','','','','N','12:16:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-23 12:16:41','','0000-00-00 00:00:00'),(1315,0,0,'O','N','2526',904,0,'2025-10-19','0000-00-00',936,0,904,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:18:00','0000-00-00','','','','N','12:18:00','00:00:00','','','N','N',NULL,'O','O','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-23 12:18:19','','0000-00-00 00:00:00'),(1316,0,0,'O','N','2526',1081,0,'2025-10-19','2026-01-18',1121,0,1081,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:20:00','0000-00-00','','','','N','12:20:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-10-23 12:20:25','','0000-00-00 00:00:00'),(1317,0,0,'O','N','2526',1082,0,'2025-10-19','2026-01-18',1122,0,1082,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:22:00','0000-00-00','','','','N','12:22:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-23 12:22:34','','0000-00-00 00:00:00'),(1318,0,0,'O','N','2526',1083,0,'2025-10-19','2026-01-18',1123,0,1083,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:24:00','0000-00-00','','','','N','12:24:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-23 12:24:24','','0000-00-00 00:00:00'),(1319,0,0,'O','N','2526',1084,0,'2025-10-19','2026-01-18',1124,0,1084,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:24:00','0000-00-00','','','','N','12:24:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-10-23 12:24:42','','0000-00-00 00:00:00'),(1320,0,0,'O','N','2526',879,0,'2025-10-19','0000-00-00',911,0,879,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','00:00:00','','','N','N',NULL,'O','O','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-23 12:27:27','','0000-00-00 00:00:00'),(1321,0,0,'O','N','2526',901,0,'2025-10-19','0000-00-00',932,0,901,'N','','N','','','','Y','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','00:00:00','','','N','N',NULL,'O','O','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-23 12:28:34','','0000-00-00 00:00:00'),(1322,0,0,'O','N','2526',140,0,'2025-10-19','0000-00-00',151,0,140,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','00:00:00','','','N','N',NULL,'O','O','','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-10-23 12:28:54','','0000-00-00 00:00:00'),(1323,0,0,'O','N','2526',1085,0,'2025-10-20','2026-01-19',714,0,1085,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','0000-00-00','','','','N','12:30:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-23 12:30:27','','0000-00-00 00:00:00'),(1324,0,0,'O','N','2526',1086,0,'2025-10-19','2026-01-18',1125,0,1086,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:31:00','0000-00-00','','','','N','12:31:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-10-23 12:31:21','','0000-00-00 00:00:00'),(1325,0,0,'O','N','2526',118,0,'2025-10-23','0000-00-00',129,0,118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:32:00','0000-00-00','','','','N','12:32:00','00:00:00','','','N','N',NULL,'O','O','Z06','','0000-00-00 00:00:00','3','12:32:59',0,'','shweta','2025-10-23 12:32:59','','0000-00-00 00:00:00'),(1326,0,0,'O','N','2526',1087,0,'2025-10-20','2026-01-19',1126,0,1087,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:33:00','0000-00-00','','','','N','12:33:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-10-23 12:33:34','','0000-00-00 00:00:00'),(1327,0,0,'O','N','2526',280,0,'2025-10-20','0000-00-00',296,0,280,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','00:00:00','','','N','N',NULL,'O','O','','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-10-23 12:35:56','','0000-00-00 00:00:00'),(1328,0,0,'O','N','2526',452,0,'2025-10-20','0000-00-00',478,0,452,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:36:00','0000-00-00','','','','N','12:36:00','00:00:00','','','N','N',NULL,'O','O','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-23 12:36:50','','0000-00-00 00:00:00'),(1329,0,0,'O','N','2526',575,0,'2025-10-20','0000-00-00',603,0,575,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:39:00','0000-00-00','','','','N','12:39:00','00:00:00','','','N','N',NULL,'O','O','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-23 12:39:39','','0000-00-00 00:00:00'),(1330,0,0,'O','N','2526',1088,0,'2025-10-23','2026-01-22',1127,0,1088,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:43:00','0000-00-00','','','','N','12:43:00','00:00:00','','','N','N',NULL,'O','N','Z07','','0000-00-00 00:00:00','6','12:43:44',0,'','shweta','2025-10-23 12:43:44','','0000-00-00 00:00:00'),(1331,0,0,'O','N','2526',1089,0,'2025-10-20','2026-01-19',1128,0,1089,'N','','N','','','NC','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:46:00','0000-00-00','','','','N','12:46:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-10-23 12:46:11','','0000-00-00 00:00:00'),(1332,0,0,'O','N','2526',1090,0,'2025-10-20','2026-01-19',1129,0,1090,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:50:00','0000-00-00','','','','N','12:50:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-23 12:50:30','','0000-00-00 00:00:00'),(1333,0,0,'O','N','2526',442,0,'2025-10-23','0000-00-00',468,0,442,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:52:00','0000-00-00','','','','N','12:52:00','00:00:00','','','N','N',NULL,'O','O','Z08','','0000-00-00 00:00:00','4','12:52:26',0,'','drashti','2025-10-23 12:52:26','','0000-00-00 00:00:00'),(1334,0,0,'O','N','2526',1091,0,'2025-10-23','2026-01-22',1130,0,1091,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:56:00','0000-00-00','','','','N','12:56:00','00:00:00','','','N','N',NULL,'O','N','Z09','','0000-00-00 00:00:00','3','12:56:47',0,'','shweta','2025-10-23 12:56:47','','0000-00-00 00:00:00'),(1335,0,0,'O','N','2526',1092,0,'2025-10-23','2026-01-22',1131,0,1092,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:58:00','0000-00-00','','','','N','12:58:00','00:00:00','','','N','N',NULL,'O','N','Z10','','0000-00-00 00:00:00','5','12:58:12',0,'','drashti','2025-10-23 12:58:12','','0000-00-00 00:00:00'),(1336,0,0,'O','N','2526',1093,0,'2025-10-23','2026-01-22',1047,0,1093,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:59:00','0000-00-00','','','','N','12:59:00','00:00:00','','','N','N',NULL,'O','N','Z11','','0000-00-00 00:00:00','3','12:59:56',0,'','shweta','2025-10-23 12:59:56','','0000-00-00 00:00:00'),(1337,0,0,'O','N','2526',1094,0,'2025-10-23','2026-01-22',1132,0,1094,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','0000-00-00','','','','N','13:00:00','00:00:00','','','N','N',NULL,'O','N','Z12','','0000-00-00 00:00:00','4','13:00:08',0,'','drashti','2025-10-23 13:00:08','','0000-00-00 00:00:00'),(1338,0,0,'O','N','2526',1095,0,'2025-10-21','2026-01-20',1133,0,1095,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:05:00','0000-00-00','','','','N','13:05:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-10-23 13:05:28','','0000-00-00 00:00:00'),(1339,0,0,'I','N','2526',1067,83,'2025-10-23','2026-01-22',1106,0,1067,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:15:00','2025-10-24','','1','mo','N','13:15:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-23 13:17:40','riya','2025-10-24 11:30:41'),(1340,0,0,'O','N','2526',992,0,'2025-10-23','0000-00-00',1024,0,992,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:17:00','0000-00-00','','','','N','13:17:00','00:00:00','','','N','N',NULL,'O','O','Z13','','0000-00-00 00:00:00','4','13:17:53',0,'','shweta','2025-10-23 13:17:53','','0000-00-00 00:00:00'),(1341,0,0,'I','N','2526',1004,84,'2025-10-23','2026-01-22',1036,0,1004,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:30:00','2025-10-24','','1','mo','N','13:30:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-23 13:31:53','riya','2025-10-24 11:29:11'),(1342,0,0,'O','N','2526',1096,0,'2025-10-23','2026-01-22',1134,0,1096,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','18:35:01','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','17:27:14',0,'','urvashi','2025-10-23 17:27:14','darshan','2025-10-23 18:35:01'),(1343,0,0,'O','N','2526',1097,0,'2025-10-23','2026-01-22',1135,0,1097,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:28:00','0000-00-00','','','','N','17:28:00','00:00:00','','Y','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','17:28:32',0,'','urvashi','2025-10-23 17:28:32','darshan','2025-10-23 17:56:43'),(1344,0,0,'O','N','2526',1098,0,'2025-10-23','2026-01-22',1136,0,1098,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:30:00','0000-00-00','','','','N','17:30:00','18:45:55','','N','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:30:40',0,'','urvashi','2025-10-23 17:30:40','darshan','2025-10-23 18:45:55'),(1345,0,0,'O','N','2526',1099,0,'2025-10-23','2026-01-22',1137,0,1099,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:34:00','0000-00-00','','','','N','17:34:00','18:09:54','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:34:24',0,'','urvashi','2025-10-23 17:34:24','darshan','2025-10-23 18:09:54'),(1346,0,0,'O','N','2526',1100,0,'2025-10-23','2026-01-22',1138,0,1100,'N','','N','','','EMR','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:43:00','0000-00-00','','','','N','17:43:00','00:00:00','','','N','N',NULL,'O','N','Z14','','0000-00-00 00:00:00','4','17:43:34',0,'','urvashi','2025-10-23 17:43:34','','0000-00-00 00:00:00'),(1347,0,0,'O','N','2526',1101,0,'2025-10-23','2026-01-22',1139,0,1101,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','19:25:39','','N','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','17:46:53',0,'','urvashi','2025-10-23 17:46:53','darshan','2025-10-23 19:25:39'),(1348,0,0,'O','N','2526',1102,0,'2025-10-23','2026-01-22',1140,0,1102,'N','','N','','','EMR','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:56:00','0000-00-00','','','','N','17:56:00','00:00:00','','','N','N',NULL,'O','N','Z16','','0000-00-00 00:00:00','6','17:56:03',0,'','urvashi','2025-10-23 17:56:03','','0000-00-00 00:00:00'),(1349,0,0,'O','N','2526',1103,0,'2025-10-23','2026-01-22',1141,0,1103,'N','','N','','','EMR','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:39:00','0000-00-00','','','','N','18:39:00','00:00:00','','','N','N',NULL,'O','N','Z17','','0000-00-00 00:00:00','4','18:39:19',0,'','urvashi','2025-10-23 18:39:19','','0000-00-00 00:00:00'),(1350,0,0,'O','N','2526',1104,0,'2025-10-23','2026-01-22',1142,0,1104,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:42:00','0000-00-00','','','','N','18:42:00','00:00:00','','','N','N',NULL,'O','N','Z18','','0000-00-00 00:00:00','6','18:42:53',0,'','urvashi','2025-10-23 18:42:53','','0000-00-00 00:00:00'),(1351,0,0,'O','N','2526',835,0,'2025-10-23','0000-00-00',866,0,835,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','00:00:00','','','N','N',NULL,'O','O','Z19','','0000-00-00 00:00:00','5','18:44:02',0,'','urvashi','2025-10-23 18:44:02','','0000-00-00 00:00:00'),(1352,0,0,'O','N','2526',1105,0,'2025-10-23','2026-01-22',1143,0,1105,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:45:00','0000-00-00','','','','N','18:45:00','00:00:00','','','N','N',NULL,'O','N','Z20','','0000-00-00 00:00:00','3','18:45:23',0,'','urvashi','2025-10-23 18:45:23','','0000-00-00 00:00:00'),(1353,0,0,'O','N','2526',1106,0,'2025-10-23','2026-01-22',1144,0,1106,'N','','N','','','EMR','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:47:00','0000-00-00','','','','N','18:47:00','00:00:00','','','N','N',NULL,'O','N','Z21','','0000-00-00 00:00:00','4','18:47:12',0,'','urvashi','2025-10-23 18:47:12','','0000-00-00 00:00:00'),(1354,0,0,'O','N','2526',1107,0,'2025-10-23','2026-01-22',1145,0,1107,'N','','N','','','EMR','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:50:00','0000-00-00','','','','N','18:50:00','00:00:00','','','N','N',NULL,'O','N','Z22','','0000-00-00 00:00:00','4','18:50:26',0,'','urvashi','2025-10-23 18:50:26','','0000-00-00 00:00:00'),(1355,0,0,'O','N','2526',879,0,'2025-10-23','0000-00-00',911,0,879,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:53:00','0000-00-00','','','','N','18:53:00','00:00:00','','','N','N',NULL,'O','O','Z23','','0000-00-00 00:00:00','3','18:53:46',0,'','urvashi','2025-10-23 18:53:46','','0000-00-00 00:00:00'),(1356,0,0,'O','N','2526',303,0,'2025-10-23','0000-00-00',319,0,303,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','00:00:00','','','N','N',NULL,'O','O','Z24','','0000-00-00 00:00:00','3','18:54:36',0,'','urvashi','2025-10-23 18:54:36','','0000-00-00 00:00:00'),(1357,0,0,'O','N','2526',1108,0,'2025-10-23','2026-01-22',1146,0,1108,'N','','N','','','EMR','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:55:00','0000-00-00','','','','N','18:55:00','00:00:00','','','N','N',NULL,'O','N','Z25','','0000-00-00 00:00:00','4','18:55:55',0,'','urvashi','2025-10-23 18:55:55','','0000-00-00 00:00:00'),(1358,0,0,'O','N','2526',1109,0,'2025-10-23','2026-01-22',1147,0,1109,'N','','N','','','EMR','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:57:00','0000-00-00','','','','N','18:57:00','00:00:00','','','N','N',NULL,'O','N','Z26','','0000-00-00 00:00:00','6','18:57:26',0,'','urvashi','2025-10-23 18:57:26','','0000-00-00 00:00:00'),(1359,0,0,'O','N','2526',1110,0,'2025-10-23','2026-01-22',1148,0,1110,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:08:00','0000-00-00','','','','N','19:08:00','00:00:00','','','N','N',NULL,'O','N','Z27','','0000-00-00 00:00:00','5','19:08:28',0,'','urvashi','2025-10-23 19:08:28','','0000-00-00 00:00:00'),(1360,0,0,'O','N','2526',1111,0,'2025-10-23','2026-01-22',1149,0,1111,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:10:00','0000-00-00','','','','N','19:10:00','00:00:00','','','N','N',NULL,'O','N','Z28','','0000-00-00 00:00:00','6','19:10:49',0,'','urvashi','2025-10-23 19:10:49','','0000-00-00 00:00:00'),(1361,0,0,'O','N','2526',1112,0,'2025-10-23','2026-01-22',1150,0,1112,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:13:00','0000-00-00','','','','N','19:13:00','00:00:00','','','N','N',NULL,'O','N','Z29','','0000-00-00 00:00:00','5','19:13:53',0,'','urvashi','2025-10-23 19:13:53','','0000-00-00 00:00:00'),(1362,0,0,'I','N','2526',0,85,'2025-10-23','2026-01-22',1151,0,0,'N','','N','','','','N','N','D02','','N',0,'','70',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:15:00','2025-10-25','','1','mo','N','19:15:00','10:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-23 19:30:53','mo','2025-10-25 10:37:29'),(1363,0,0,'I','N','2526',0,86,'2025-10-23','2026-01-22',1152,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:00:00','2025-10-29','','1','mo','N','20:00:00','18:20:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-23 20:20:17','mo','2025-10-29 18:43:22'),(1364,0,0,'O','N','2526',1113,0,'2025-10-24','2026-01-23',1153,0,1113,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:55:00','0000-00-00','','','','N','08:55:00','12:27:36','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','5','08:55:31',0,'','urvashi','2025-10-24 08:55:31','drjayant','2025-10-24 12:27:36'),(1365,0,0,'O','N','2526',1114,0,'2025-10-24','2026-01-23',1154,0,1114,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:57:00','0000-00-00','','','','N','08:57:00','18:18:08','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','5','08:57:45',0,'','urvashi','2025-10-24 08:57:45','drjayant','2025-10-24 18:18:08'),(1366,0,0,'O','N','2526',1115,0,'2025-10-24','2026-01-23',1155,0,1115,'N','','N','','','EMR','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:01:00','0000-00-00','','','','N','09:01:00','00:00:00','','','N','N',NULL,'O','N','Z03','','0000-00-00 00:00:00','4','09:01:25',0,'','urvashi','2025-10-24 09:01:25','','0000-00-00 00:00:00'),(1367,0,0,'O','N','2526',1116,0,'2025-10-24','2026-01-23',1156,0,1116,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:03:00','0000-00-00','','','','N','09:03:00','11:25:29','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','5','09:03:43',0,'','urvashi','2025-10-24 09:03:43','drjayant','2025-10-24 11:25:29'),(1368,0,0,'O','N','2526',1117,0,'2025-10-24','2026-01-23',1157,0,1117,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:31:00','0000-00-00','','','','N','09:31:00','10:50:03','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','09:31:01',0,'','reception','2025-10-24 09:31:01','darshan','2025-10-24 10:50:03'),(1369,0,0,'I','N','2526',0,87,'2025-10-24','2026-01-23',1158,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-10-26','','1','mo','N','09:30:00','09:10:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-24 09:36:43','riya','2025-10-26 10:20:14'),(1370,0,0,'O','N','2526',619,0,'2025-10-24','0000-00-00',649,0,619,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:05:00','0000-00-00','','','','N','10:05:00','10:10:15','','','N','Y',NULL,'O','O','Z05','','0000-00-00 00:00:00','3','10:06:11',0,'','drashti','2025-10-24 10:06:11','drpratapsinh','2025-10-24 10:10:15'),(1371,0,0,'O','N','2526',1118,0,'2025-10-24','2026-01-23',1159,0,1118,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:08:00','0000-00-00','','','','N','10:08:00','11:00:12','','','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:09:08',0,'','drashti','2025-10-24 10:09:08','darshan','2025-10-24 11:00:12'),(1372,0,0,'O','N','2526',1119,0,'2025-10-24','2026-01-23',1160,0,1119,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:14:00','0000-00-00','','','','N','10:14:00','11:07:00','','','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:14:07',0,'','urvashi','2025-10-24 10:14:07','darshan','2025-10-24 11:07:00'),(1373,0,0,'O','N','2526',1120,0,'2025-10-24','2026-01-23',1161,0,1120,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','0000-00-00','','','','N','10:15:00','11:13:48','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:15:37',0,'','drashti','2025-10-24 10:15:37','darshan','2025-10-24 11:13:48'),(1374,0,0,'O','N','2526',1121,0,'2025-10-24','2026-01-23',1162,0,1121,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','11:18:00','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','5','10:16:06',0,'','janvi','2025-10-24 10:16:06','drjayant','2025-10-24 11:18:00'),(1375,0,0,'O','N','2526',1122,0,'2025-10-24','2026-01-23',1163,0,1122,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:26:00','0000-00-00','','','','N','10:26:00','10:38:09','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','3','10:26:24',0,'','drashti','2025-10-24 10:26:24','drpratapsinh','2025-10-24 10:38:09'),(1376,0,0,'O','N','2526',1123,0,'2025-10-24','2026-01-23',1164,0,1123,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','','N','10:40:00','11:18:47','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','5','10:40:43',0,'','drashti','2025-10-24 10:40:42','drjayant','2025-10-24 11:18:47'),(1377,0,0,'O','N','2526',1124,0,'2025-10-24','2026-01-23',1165,0,1124,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','12:08:03','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','5','10:43:17',0,'','drashti','2025-10-24 10:43:17','drjayant','2025-10-24 12:08:03'),(1378,0,0,'O','N','2526',1125,0,'2025-10-24','2026-01-23',1095,0,1125,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','11:42:22','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','6','10:50:58',0,'','manshi','2025-10-24 10:50:58','drsagar','2025-10-24 11:42:22'),(1379,0,0,'O','N','2526',859,0,'2025-10-24','0000-00-00',891,0,859,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','11:42:40','','','N','Y',NULL,'O','O','Z11','','0000-00-00 00:00:00','6','11:12:11',0,'','manshi','2025-10-24 11:12:11','drsagar','2025-10-24 11:42:40'),(1380,0,0,'O','N','2526',1126,0,'2025-10-24','2026-01-23',1166,0,1126,'N','','N','','','','','N','D02','','N',81,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','20:46:38','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','3','11:12:21',0,'','priyanshi','2025-10-24 11:12:21','drpratapsinh','2025-10-24 20:46:38'),(1381,0,0,'O','N','2526',1127,0,'2025-10-24','2026-01-23',1167,0,1127,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','11:24:05','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','5','11:17:17',0,'','drashti','2025-10-24 11:17:17','drjayant','2025-10-24 11:24:05'),(1382,0,0,'O','N','2526',1128,0,'2025-10-24','2026-01-23',1168,0,1128,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','11:55:23','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:31:21',0,'','priyanshi','2025-10-24 11:31:21','darshan','2025-10-24 11:55:23'),(1383,0,0,'O','N','2526',1129,0,'2025-10-24','2026-01-23',1169,0,1129,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','12:53:17','','N','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:32:56',0,'','priyanshi','2025-10-24 11:32:56','darshan','2025-10-24 12:53:17'),(1384,0,0,'O','N','2526',340,0,'2025-10-24','0000-00-00',356,0,340,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:34:00','0000-00-00','','','','N','11:34:00','12:09:04','','','N','Y',NULL,'O','O','H03','','0000-00-00 00:00:00','2','11:34:19',0,'','priyanshi','2025-10-24 11:34:19','darshan','2025-10-24 12:09:04'),(1385,0,0,'O','N','2526',1130,0,'2025-10-24','2026-01-23',1170,0,1130,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','13:19:17','','N','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','2','11:35:30',0,'','janvi','2025-10-24 11:35:30','darshan','2025-10-24 13:19:17'),(1386,0,0,'O','N','2526',1131,0,'2025-10-24','2026-01-23',1171,0,1131,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','12:29:00','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','5','11:36:44',0,'','drashti','2025-10-24 11:36:44','drjayant','2025-10-24 12:29:00'),(1387,0,0,'O','N','2526',1132,0,'2025-10-24','2026-01-23',1172,0,1132,'N','','N','','','','','N','D02','','N',82,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','11:56:20','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','3','11:39:10',0,'','drashti','2025-10-24 11:39:10','drpratapsinh','2025-10-24 11:56:20'),(1388,0,0,'O','N','2526',116,0,'2025-10-24','0000-00-00',127,0,116,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','11:56:40','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','3','11:40:43',0,'','janvi','2025-10-24 11:40:43','drpratapsinh','2025-10-24 11:56:40'),(1389,0,0,'O','N','2526',131,0,'2025-10-24','0000-00-00',142,0,131,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','11:52:35','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','5','11:41:53',0,'','janvi','2025-10-24 11:41:53','drjayant','2025-10-24 11:52:35'),(1390,0,0,'O','N','2526',1059,0,'2025-10-24','0000-00-00',1092,0,1059,'N','','N','','','','','N','D02','','N',76,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','11:58:00','','','N','Y',NULL,'O','O','Z18','','0000-00-00 00:00:00','3','11:43:49',0,'','priyanshi','2025-10-24 11:43:49','drpratapsinh','2025-10-24 11:58:00'),(1391,0,0,'O','N','2526',839,0,'2025-10-24','0000-00-00',870,0,839,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','11:51:28','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','6','11:44:48',0,'','manshi','2025-10-24 11:44:48','drsagar','2025-10-24 11:51:28'),(1392,0,0,'O','N','2526',1133,0,'2025-10-24','2026-01-23',1173,0,1133,'N','','N','','','','','N','D02','','N',11,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','18:32:36','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','3','11:50:48',0,'','priyanshi','2025-10-24 11:50:48','drpratapsinh','2025-10-24 18:32:36'),(1393,0,0,'O','N','2526',1134,0,'2025-10-24','2026-01-23',1174,0,1134,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','12:35:21','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','5','11:51:59',0,'','drashti','2025-10-24 11:51:59','drjayant','2025-10-24 12:35:21'),(1394,0,0,'O','N','2526',1135,0,'2025-10-24','2026-01-23',1175,0,1135,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','13:45:40','','N','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','11:58:57',0,'','priyanshi','2025-10-24 11:58:57','darshan','2025-10-24 13:45:40'),(1395,0,0,'O','N','2526',1136,0,'2025-10-24','2026-01-23',1176,0,1136,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:04:00','0000-00-00','','','','N','12:04:00','17:24:48','','N','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','12:04:22',0,'','priyanshi','2025-10-24 12:04:22','darshan','2025-10-24 17:24:48'),(1396,0,0,'O','N','2526',1137,0,'2025-10-24','2026-01-23',1177,0,1137,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','12:44:26','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','12:06:31',0,'','priyanshi','2025-10-24 12:06:31','darshan','2025-10-24 12:44:26'),(1397,0,0,'O','N','2526',118,0,'2025-10-24','0000-00-00',129,0,118,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:23:00','0000-00-00','','','','N','12:23:00','12:36:03','','','N','Y',NULL,'O','O','Z22','','0000-00-00 00:00:00','3','12:23:43',0,'','janvi','2025-10-24 12:23:43','drpratapsinh','2025-10-24 12:36:03'),(1398,0,0,'O','N','2526',118,0,'2025-10-24','0000-00-00',129,0,118,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:24:00','0000-00-00','','','','N','12:24:00','12:36:16','','','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','3','12:24:57',0,'','drashti','2025-10-24 12:24:57','drpratapsinh','2025-10-24 12:36:16'),(1399,0,0,'O','N','2526',1138,0,'2025-10-24','2026-01-23',1178,0,1138,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:34:00','0000-00-00','','','','N','12:34:00','00:00:00','','','N','N',NULL,'O','N','Z23','','0000-00-00 00:00:00','4','12:34:02',0,'','drashti','2025-10-24 12:34:02','','0000-00-00 00:00:00'),(1400,0,0,'O','N','2526',1139,0,'2025-10-24','2026-01-23',1179,0,1139,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:36:00','0000-00-00','','','','N','12:36:00','20:47:54','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','3','12:36:37',0,'','drashti','2025-10-24 12:36:37','drpratapsinh','2025-10-24 20:47:54'),(1401,0,0,'O','N','2526',424,0,'2025-10-24','0000-00-00',446,0,424,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:14:00','0000-00-00','','','','N','13:14:00','13:30:44','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','2','13:14:57',0,'','priyanshi','2025-10-24 13:14:57','darshan','2025-10-24 13:30:44'),(1402,0,0,'O','N','2526',1140,0,'2025-10-24','2026-01-23',1180,0,1140,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:48:00','0000-00-00','','','','N','13:48:00','20:48:41','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','3','13:48:32',0,'','drashti','2025-10-24 13:48:32','drpratapsinh','2025-10-24 20:48:41'),(1403,0,0,'O','N','2526',1004,0,'2025-10-24','0000-00-00',1036,0,1004,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:52:00','0000-00-00','','','','N','13:52:00','19:07:43','','','N','Y',NULL,'O','O','Z27','','0000-00-00 00:00:00','3','13:52:45',0,'','reception','2025-10-24 13:52:45','drpratapsinh','2025-10-24 19:07:43'),(1404,0,0,'O','N','2526',1004,0,'2025-10-24','0000-00-00',1036,0,1004,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:53:00','0000-00-00','','','','N','13:53:00','19:07:20','','','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','3','13:53:53',0,'','reception','2025-10-24 13:53:53','drpratapsinh','2025-10-24 19:07:20'),(1405,0,0,'I','N','2526',1140,88,'2025-10-24','2026-01-23',1180,0,1140,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:47:00','2025-10-25','','4','mo','N','14:47:00','14:45:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-24 14:48:00','mo','2025-10-25 13:09:21'),(1406,0,0,'O','N','2526',1141,0,'2025-10-24','2026-01-23',1181,0,1141,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:35:00','0000-00-00','','','','N','16:35:00','17:21:47','','','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:35:58',0,'','drashti','2025-10-24 16:35:58','darshan','2025-10-24 17:21:47'),(1407,0,0,'O','N','2526',1142,0,'2025-10-24','2026-01-23',1182,0,1142,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:44:00','0000-00-00','','','','N','16:44:00','17:58:49','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','5','16:44:20',0,'','drashti','2025-10-24 16:44:20','drjayant','2025-10-24 17:58:49'),(1408,0,0,'O','N','2526',1143,0,'2025-10-24','2026-01-23',1183,0,1143,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:49:00','0000-00-00','','','','N','16:49:00','18:02:50','','N','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:49:27',0,'','reception','2025-10-24 16:49:27','darshan','2025-10-24 18:02:50'),(1409,0,0,'O','N','2526',1144,0,'2025-10-24','2026-01-23',1184,0,1144,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:01:00','0000-00-00','','','','N','17:01:00','17:33:49','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:01:57',0,'','reception','2025-10-24 17:01:57','darshan','2025-10-24 17:33:49'),(1410,0,0,'O','N','2526',1105,0,'2025-10-24','0000-00-00',1143,0,1105,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:02:00','0000-00-00','','','','N','17:02:00','18:20:39','','','N','Y',NULL,'O','O','Z29','','0000-00-00 00:00:00','3','17:02:26',0,'','janvi','2025-10-24 17:02:26','drpratapsinh','2025-10-24 18:20:39'),(1411,0,0,'O','N','2526',575,0,'2025-10-24','0000-00-00',603,0,575,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:04:00','0000-00-00','','','','N','17:04:00','18:20:20','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','3','17:04:47',0,'','drashti','2025-10-24 17:04:47','drpratapsinh','2025-10-24 18:20:20'),(1412,0,0,'O','N','2526',39,0,'2025-10-24','0000-00-00',43,0,39,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:07:00','0000-00-00','','','','N','17:07:00','18:24:10','','','N','Y',NULL,'O','O','Z31','','0000-00-00 00:00:00','3','17:07:30',0,'','reception','2025-10-24 17:07:30','drpratapsinh','2025-10-24 18:24:10'),(1413,0,0,'O','N','2526',305,0,'2025-10-24','0000-00-00',321,0,305,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:44:00','0000-00-00','','','','N','17:44:00','18:30:11','','','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','3','17:44:38',0,'','drashti','2025-10-24 17:44:38','drpratapsinh','2025-10-24 18:30:11'),(1414,0,0,'O','N','2526',1145,0,'2025-10-24','2026-01-23',1185,0,1145,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:44:00','0000-00-00','','','','N','17:44:00','18:35:25','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','3','17:44:57',0,'','janvi','2025-10-24 17:44:57','drpratapsinh','2025-10-24 18:35:25'),(1415,0,0,'O','N','2526',1146,0,'2025-10-24','2026-01-23',1186,0,1146,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','18:55:59','','N','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:46:16',0,'','reception','2025-10-24 17:46:16','darshan','2025-10-24 18:55:59'),(1416,0,0,'O','N','2526',1147,0,'2025-10-24','2026-01-23',1187,0,1147,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','0000-00-00','','','','N','18:00:00','19:14:30','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','18:00:37',0,'','reception','2025-10-24 18:00:37','darshan','2025-10-24 19:14:30'),(1417,0,0,'O','N','2526',1148,0,'2025-10-24','2026-01-23',1188,0,1148,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:06:00','0000-00-00','','','','N','18:06:00','19:07:01','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','18:06:51',0,'','janvi','2025-10-24 18:06:51','darshan','2025-10-24 19:07:01'),(1418,0,0,'O','N','2526',1149,0,'2025-10-24','2026-01-23',1189,0,1149,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','20:45:57','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','3','18:07:39',0,'','drashti','2025-10-24 18:07:39','drpratapsinh','2025-10-24 20:45:57'),(1419,0,0,'O','N','2526',1150,0,'2025-10-24','2026-01-23',1190,0,1150,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:22:13','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','5','18:09:05',0,'','janvi','2025-10-24 18:09:05','drjayant','2025-10-24 18:22:13'),(1420,0,0,'O','N','2526',1089,0,'2025-10-24','0000-00-00',1128,0,1089,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','00:00:00','','Y','N','Y',NULL,'O','O','Z36','','0000-00-00 00:00:00','2','18:09:22',0,'','reception','2025-10-24 18:09:22','darshan','2025-10-24 19:06:37'),(1421,0,0,'O','N','2526',270,0,'2025-10-24','0000-00-00',286,0,270,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','19:00:13','','','N','Y',NULL,'O','O','Z37','','0000-00-00 00:00:00','3','18:09:50',0,'','drashti','2025-10-24 18:09:50','drpratapsinh','2025-10-24 19:00:13'),(1422,0,0,'O','N','2526',1151,0,'2025-10-24','2026-01-23',1191,0,1151,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','00:00:00','','','N','N',NULL,'O','N','Z38','','0000-00-00 00:00:00','3','18:11:55',0,'','drashti','2025-10-24 18:11:55','','0000-00-00 00:00:00'),(1423,0,0,'O','N','2526',362,0,'2025-10-24','0000-00-00',378,0,362,'N','','N','','','FV','','N','D06','','N',5,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','18:36:21','','','N','Y',NULL,'O','O','L07','','0000-00-00 00:00:00','2','18:12:12',0,'','reception','2025-10-24 18:12:12','darshan','2025-10-24 18:36:21'),(1424,0,0,'O','N','2526',1152,0,'2025-10-24','2026-01-23',1192,0,1152,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','20:45:23','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','3','18:14:12',0,'','drashti','2025-10-24 18:14:12','drpratapsinh','2025-10-24 20:45:23'),(1425,0,0,'O','N','2526',983,0,'2025-10-24','0000-00-00',403,0,983,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:20:00','0000-00-00','','','','N','18:20:00','19:26:04','','','N','Y',NULL,'O','O','Z40','','0000-00-00 00:00:00','3','18:20:20',0,'','drashti','2025-10-24 18:20:04','drpratapsinh','2025-10-24 19:26:04'),(1426,0,0,'O','N','2526',1153,0,'2025-10-24','2026-01-23',1193,0,1153,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','19:23:03','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','18:24:23',0,'','reception','2025-10-24 18:24:23','darshan','2025-10-24 19:23:03'),(1427,0,0,'O','N','2526',1154,0,'2025-10-24','2026-01-23',1194,0,1154,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:37:00','0000-00-00','','','','N','18:37:00','19:31:08','','N','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','2','18:38:01',0,'','reception','2025-10-24 18:38:01','darshan','2025-10-24 19:31:08'),(1428,0,0,'O','N','2526',1155,0,'2025-10-24','2026-01-23',66,0,1155,'N','','N','','','FC','','N','D02','','N',6,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','18:55:26','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','3','18:43:51',0,'','drashti','2025-10-24 18:43:51','drpratapsinh','2025-10-24 18:55:26'),(1429,0,0,'O','N','2526',1156,0,'2025-10-24','2026-01-23',1195,0,1156,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','00:00:00','','','N','N',NULL,'O','N','Z43','','0000-00-00 00:00:00','4','18:46:23',0,'','reception','2025-10-24 18:46:23','','0000-00-00 00:00:00'),(1430,0,0,'O','N','2526',1157,0,'2025-10-24','2026-01-23',1196,0,1157,'N','','N','','','NC','','N','D27','','N',17,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:47:00','0000-00-00','','','','N','18:47:00','19:01:43','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','5','18:47:12',0,'','drashti','2025-10-24 18:47:12','drjayant','2025-10-24 19:01:43'),(1431,0,0,'O','N','2526',1158,0,'2025-10-24','2026-01-23',1197,0,1158,'N','','N','','','NC','','N','D02','','N',83,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:18:51','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','3','18:51:03',0,'','drashti','2025-10-24 18:51:03','drpratapsinh','2025-10-24 19:18:51'),(1432,0,0,'O','N','2526',1159,0,'2025-10-24','2026-01-23',1198,0,1159,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:05:00','0000-00-00','','','','N','19:05:00','00:00:00','','','N','N',NULL,'O','N','Z46','','0000-00-00 00:00:00','3','19:05:09',0,'','drashti','2025-10-24 19:05:09','','0000-00-00 00:00:00'),(1433,0,0,'O','N','2526',1160,0,'2025-10-24','2026-01-23',1199,0,1160,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:08:00','0000-00-00','','','','N','19:08:00','19:38:41','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','3','19:08:03',0,'','drashti','2025-10-24 19:08:03','drpratapsinh','2025-10-24 19:38:41'),(1434,0,0,'I','N','2526',1002,89,'2025-10-24','2026-01-23',1034,0,1002,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:18:00','2025-10-26','','1','mo','N','19:18:00','12:05:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-24 19:18:55','riya','2025-10-26 12:29:54'),(1435,0,0,'O','N','2526',1161,0,'2025-10-24','2026-01-23',1200,0,1161,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:26:00','0000-00-00','','','','N','19:26:00','19:33:41','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','5','19:26:43',0,'','janvi','2025-10-24 19:26:43','drjayant','2025-10-24 19:33:41'),(1436,0,0,'O','N','2526',1162,0,'2025-10-24','2026-01-23',1201,0,1162,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:47:00','0000-00-00','','','','N','19:47:00','20:44:53','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','3','19:47:46',0,'','janvi','2025-10-24 19:47:46','drpratapsinh','2025-10-24 20:44:53'),(1437,0,0,'I','N','2526',1134,90,'2025-10-24','2026-01-23',1174,0,1134,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:47:00','2025-10-27','','1','mo','N','19:47:00','18:05:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-24 19:49:15','mo','2025-10-27 18:51:48'),(1438,0,0,'I','N','2526',1139,91,'2025-10-24','2026-01-23',1179,0,1139,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:16:00','2025-10-29','','4','mo','N','20:16:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-24 20:17:57','mo','2025-10-29 12:36:47'),(1439,0,0,'O','N','2526',1163,0,'2025-10-25','2026-01-24',1202,0,1163,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:00:00','0000-00-00','','','','N','09:00:00','00:00:00','','','N','N',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','09:00:13',0,'','priyanshi','2025-10-25 09:00:13','','0000-00-00 00:00:00'),(1440,0,0,'O','N','2526',135,0,'2025-10-25','0000-00-00',146,0,135,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:01:00','0000-00-00','','','','N','09:01:00','11:17:18','','','N','Y',NULL,'O','O','Z02','','0000-00-00 00:00:00','5','09:01:43',0,'','priyanshi','2025-10-25 09:01:43','drjayant','2025-10-25 11:17:18'),(1441,0,0,'O','N','2526',1164,0,'2025-10-25','2026-01-24',1203,0,1164,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:03:00','0000-00-00','','','','N','09:03:00','00:00:00','','','N','N',NULL,'O','N','Z03','','0000-00-00 00:00:00','4','09:03:05',0,'','priyanshi','2025-10-25 09:03:05','','0000-00-00 00:00:00'),(1442,0,0,'O','N','2526',1165,0,'2025-10-25','2026-01-24',1204,0,1165,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:05:00','0000-00-00','','','','N','09:05:00','00:00:00','','','N','N',NULL,'O','N','Z04','','0000-00-00 00:00:00','4','09:05:53',0,'','priyanshi','2025-10-25 09:05:53','','0000-00-00 00:00:00'),(1443,0,0,'I','N','2526',1149,92,'2025-10-25','2026-01-24',1189,0,1149,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:37:00','2025-10-27','','1','mo','N','09:37:00','12:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-25 09:39:47','mo','2025-11-04 20:03:41'),(1444,0,0,'O','N','2526',1166,0,'2025-10-25','2026-01-24',1205,0,1166,'N','','N','','','ER','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:44:00','0000-00-00','','','','N','09:44:00','11:35:51','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','6','09:44:58',0,'','priyanshi','2025-10-25 09:44:58','drsagar','2025-10-25 11:35:51'),(1445,0,0,'O','N','2526',1167,0,'2025-10-25','2026-01-24',1206,0,1167,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:48:00','0000-00-00','','','','N','09:48:00','10:38:45','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','09:48:57',0,'','reception','2025-10-25 09:48:57','darshan','2025-10-25 10:38:45'),(1446,0,0,'O','N','2526',1168,0,'2025-10-25','2026-01-24',1207,0,1168,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:50:00','0000-00-00','','','','N','09:50:00','12:49:43','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','09:50:53',0,'','reception','2025-10-25 09:50:53','darshan','2025-10-25 12:49:43'),(1447,0,0,'O','N','2526',1169,0,'2025-10-25','2026-01-24',1208,0,1169,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:56:00','0000-00-00','','','','N','09:56:00','13:15:38','','N','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','09:56:14',0,'','reception','2025-10-25 09:56:14','darshan','2025-10-25 13:15:38'),(1448,0,0,'O','N','2526',1170,0,'2025-10-25','2026-01-24',1209,0,1170,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:01:00','0000-00-00','','','','N','10:01:00','11:06:19','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','10:01:04',0,'','reception','2025-10-25 10:01:04','darshan','2025-10-25 11:06:19'),(1449,0,0,'O','N','2526',1171,0,'2025-10-25','2026-01-24',1210,0,1171,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:02:00','0000-00-00','','','','N','10:02:00','11:13:48','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','2','10:02:44',0,'','priyanshi','2025-10-25 10:02:44','darshan','2025-10-25 11:13:48'),(1450,0,0,'O','N','2526',1172,0,'2025-10-25','2026-01-24',1211,0,1172,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:08:00','0000-00-00','','','','N','10:08:00','12:34:48','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','6','10:08:17',0,'','manshi','2025-10-25 10:08:17','drsagar','2025-10-25 12:34:48'),(1451,0,0,'O','N','2526',1173,0,'2025-10-25','2026-01-24',1212,0,1173,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','11:35:57','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','2','10:16:58',0,'','reception','2025-10-25 10:16:58','darshan','2025-10-25 11:35:57'),(1452,0,0,'O','N','2526',1174,0,'2025-10-25','2026-01-24',1213,0,1174,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:32:00','0000-00-00','','','','N','10:32:00','11:31:39','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:32:48',0,'','reception','2025-10-25 10:32:48','darshan','2025-10-25 11:31:39'),(1453,0,0,'O','N','2526',1175,0,'2025-10-25','2026-01-24',1214,0,1175,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','13:22:50','','N','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:44:48',0,'','priyanshi','2025-10-25 10:44:48','darshan','2025-10-25 13:22:50'),(1454,0,0,'O','N','2526',1176,0,'2025-10-25','2026-01-24',1215,0,1176,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','12:45:14','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','3','10:59:37',0,'','drashti','2025-10-25 10:59:37','drpratapsinh','2025-10-25 12:45:14'),(1455,0,0,'O','N','2526',1177,0,'2025-10-25','2026-01-24',1216,0,1177,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','11:44:56','','','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:59:42',0,'','reception','2025-10-25 10:59:42','darshan','2025-10-25 11:44:56'),(1456,0,0,'O','N','2526',1178,0,'2025-10-25','2026-01-24',1217,0,1178,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','11:35:14','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','6','11:04:00',0,'','manshi','2025-10-25 11:04:00','drsagar','2025-10-25 11:35:14'),(1457,0,0,'O','N','2526',1179,0,'2025-10-25','2026-01-24',1218,0,1179,'N','','N','','','FOLLOWUP E','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','12:58:22','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','2','11:05:28',0,'','priyanshi','2025-10-25 11:05:28','darshan','2025-10-25 12:58:22'),(1458,0,0,'O','N','2526',1180,0,'2025-10-25','2026-01-24',1219,0,1180,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','11:54:12','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','5','11:08:54',0,'','drashti','2025-10-25 11:08:54','drjayant','2025-10-25 11:54:12'),(1459,0,0,'O','N','2526',1181,0,'2025-10-25','2026-01-24',1220,0,1181,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','11:39:25','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','5','11:19:32',0,'','reception','2025-10-25 11:19:32','drjayant','2025-10-25 11:39:25'),(1460,0,0,'O','N','2526',1182,0,'2025-10-25','2026-01-24',1221,0,1182,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','11:46:27','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','5','11:20:45',0,'','drashti','2025-10-25 11:20:44','drjayant','2025-10-25 11:46:27'),(1461,0,0,'O','N','2526',1183,0,'2025-10-25','2026-01-24',1222,0,1183,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','11:51:02','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','11:23:02',0,'','reception','2025-10-25 11:23:02','darshan','2025-10-25 11:51:02'),(1462,0,0,'O','N','2526',1184,0,'2025-10-25','2026-01-24',1223,0,1184,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','11:43:30','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','5','11:24:45',0,'','drashti','2025-10-25 11:24:45','drjayant','2025-10-25 11:43:30'),(1463,0,0,'O','N','2526',1185,0,'2025-10-25','2026-01-24',1224,0,1185,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','12:00:31','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:25:53',0,'','reception','2025-10-25 11:25:53','darshan','2025-10-25 12:00:31'),(1464,0,0,'O','N','2526',1186,0,'2025-10-25','2026-01-24',1225,0,1186,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','13:19:26','','N','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','11:27:01',0,'','janvi','2025-10-25 11:27:01','darshan','2025-10-25 13:19:26'),(1465,0,0,'O','N','2526',1187,0,'2025-10-25','2026-01-24',1226,0,1187,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','11:50:57','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','5','11:29:04',0,'','drashti','2025-10-25 11:29:04','drjayant','2025-10-25 11:50:57'),(1466,0,0,'O','N','2526',1188,0,'2025-10-25','2026-01-24',1227,0,1188,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','12:15:48','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:40:48',0,'','reception','2025-10-25 11:40:48','darshan','2025-10-25 12:15:48'),(1467,0,0,'O','N','2526',1189,0,'2025-10-25','2026-01-24',1228,0,1189,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','14:08:39','','N','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','2','11:43:07',0,'','janvi','2025-10-25 11:43:07','darshan','2025-10-25 14:08:39'),(1468,0,0,'O','N','2526',1190,0,'2025-10-25','2026-01-24',1229,0,1190,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','13:48:18','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','11:43:20',0,'','reception','2025-10-25 11:43:20','darshan','2025-10-25 13:48:18'),(1469,0,0,'O','N','2526',1191,0,'2025-10-25','2026-01-24',1230,0,1191,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','14:04:56','','N','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','11:45:06',0,'','janvi','2025-10-25 11:45:06','darshan','2025-10-25 14:04:56'),(1470,0,0,'O','N','2526',1192,0,'2025-10-25','2026-01-24',1231,0,1192,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','12:44:06','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','2','11:45:56',0,'','reception','2025-10-25 11:45:56','darshan','2025-10-25 12:44:06'),(1471,0,0,'O','N','2526',1193,0,'2025-10-25','2026-01-24',1232,0,1193,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','12:05:00','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','5','11:52:17',0,'','janvi','2025-10-25 11:52:17','drjayant','2025-10-25 12:05:00'),(1472,0,0,'O','N','2526',1194,0,'2025-10-25','2026-01-24',1233,0,1194,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','12:48:17','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','12:02:05',0,'','reception','2025-10-25 12:02:05','darshan','2025-10-25 12:48:17'),(1473,0,0,'O','N','2526',1195,0,'2025-10-25','2026-01-24',1234,0,1195,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:24:00','0000-00-00','','','','N','12:24:00','12:29:37','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','5','12:24:28',0,'','janvi','2025-10-25 12:24:28','drjayant','2025-10-25 12:29:37'),(1474,0,0,'O','N','2526',1033,0,'2025-10-25','0000-00-00',1067,0,1033,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:26:00','0000-00-00','','','','N','12:26:00','18:55:16','','','N','Y',NULL,'O','O','Z22','','0000-00-00 00:00:00','6','12:26:08',0,'','manshi','2025-10-25 12:26:08','drsagar','2025-10-25 18:55:16'),(1475,0,0,'O','N','2526',1196,0,'2025-10-25','2026-01-24',1235,0,1196,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','13:18:42','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:27:22',0,'','reception','2025-10-25 12:27:22','darshan','2025-10-25 13:18:42'),(1476,0,0,'O','N','2526',1197,0,'2025-10-25','2026-01-24',1236,0,1197,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','12:53:56','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','3','12:35:10',0,'','janvi','2025-10-25 12:35:10','drpratapsinh','2025-10-25 12:53:56'),(1477,0,0,'O','N','2526',1132,0,'2025-10-25','0000-00-00',1172,0,1132,'N','','N','','','','','N','D02','','N',82,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:36:00','0000-00-00','','','','N','12:36:00','12:49:47','','','N','Y',NULL,'O','O','Z24','','0000-00-00 00:00:00','3','12:36:14',0,'','drashti','2025-10-25 12:36:14','drpratapsinh','2025-10-25 12:49:47'),(1478,0,0,'O','N','2526',560,0,'2025-10-25','0000-00-00',587,0,560,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:42:00','0000-00-00','','','','N','12:42:00','12:48:18','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','3','12:42:05',0,'','drashti','2025-10-25 12:42:05','drpratapsinh','2025-10-25 12:48:18'),(1479,0,0,'O','N','2526',216,0,'2025-10-25','0000-00-00',229,0,216,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:49:00','0000-00-00','','','','N','12:49:00','13:33:53','','','N','Y',NULL,'O','O','Z26','','0000-00-00 00:00:00','2','12:49:01',0,'','janvi','2025-10-25 12:49:01','darshan','2025-10-25 13:33:53'),(1480,0,0,'O','N','2526',1198,0,'2025-10-25','2026-01-24',1237,0,1198,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:54:00','0000-00-00','','','','N','12:54:00','13:12:35','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','5','12:54:21',0,'','reception','2025-10-25 12:54:21','drjayant','2025-10-25 13:12:35'),(1481,0,0,'O','N','2526',1199,0,'2025-10-25','2026-01-24',1238,0,1199,'N','','N','','','NV','','N','D06','','N',85,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:08:00','0000-00-00','','','','N','13:08:00','14:04:41','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','2','13:08:49',0,'','reception','2025-10-25 13:08:49','darshan','2025-10-25 14:04:41'),(1482,0,0,'O','N','2526',1200,0,'2025-10-25','2026-01-24',1239,0,1200,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:16:00','0000-00-00','','','','N','13:16:00','20:26:53','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','3','13:16:37',0,'','janvi','2025-10-25 13:16:37','drpratapsinh','2025-10-25 20:26:53'),(1483,0,0,'O','N','2526',1201,0,'2025-10-25','2026-01-24',1240,0,1201,'N','','N','','','','','N','D02','','N',86,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:41:00','0000-00-00','','','','N','13:41:00','19:43:23','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','3','13:41:04',0,'','janvi','2025-10-25 13:41:04','drpratapsinh','2025-10-25 19:43:23'),(1484,0,0,'O','N','2526',1202,0,'2025-10-25','2026-01-24',1241,0,1202,'N','','N','','','NC','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:50:00','0000-00-00','','','','N','13:50:00','14:28:03','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','2','13:50:32',0,'','drashti','2025-10-25 13:50:32','darshan','2025-10-25 14:28:03'),(1485,0,0,'O','N','2526',879,0,'2025-10-25','0000-00-00',911,0,879,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:37:00','0000-00-00','','','','N','16:37:00','20:26:33','','','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','3','16:37:40',0,'','priyanshi','2025-10-25 16:37:40','drpratapsinh','2025-10-25 20:26:33'),(1486,0,0,'O','N','2526',1203,0,'2025-10-25','2026-01-24',1242,0,1203,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:37:00','0000-00-00','','','','N','16:37:00','20:26:21','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','3','16:37:51',0,'','drashti','2025-10-25 16:37:51','drpratapsinh','2025-10-25 20:26:21'),(1487,0,0,'O','N','2526',1204,0,'2025-10-25','2026-01-24',1243,0,1204,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','19:06:05','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','3','17:40:17',0,'','drashti','2025-10-25 17:40:17','drpratapsinh','2025-10-25 19:06:05'),(1488,0,0,'O','N','2526',111,0,'2025-10-25','0000-00-00',122,0,111,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','19:27:07','','','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','3','17:40:59',0,'','janvi','2025-10-25 17:40:59','drpratapsinh','2025-10-25 19:27:07'),(1489,0,0,'O','N','2526',1205,0,'2025-10-25','2026-01-24',1244,0,1205,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:44:00','0000-00-00','','','','N','17:44:00','19:21:59','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','3','17:44:31',0,'','drashti','2025-10-25 17:44:31','drpratapsinh','2025-10-25 19:21:59'),(1490,0,0,'O','N','2526',1206,0,'2025-10-25','2026-01-24',1245,0,1206,'N','','N','','','FC','','N','','','N',0,'','',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','20:26:01','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','3','17:52:45',0,'','drashti','2025-10-25 17:52:45','vishal','2025-11-03 18:08:10'),(1491,0,0,'O','N','2526',1207,0,'2025-10-25','2026-01-24',1246,0,1207,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','18:47:25','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','6','18:07:29',0,'','manshi','2025-10-25 18:07:29','drsagar','2025-10-25 18:47:25'),(1492,0,0,'O','N','2526',1208,0,'2025-10-25','2026-01-24',1247,0,1208,'N','','N','','','FOC','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','18:58:53','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','6','18:36:50',0,'','manshi','2025-10-25 18:36:50','drsagar','2025-10-25 18:58:53'),(1493,0,0,'O','N','2526',1209,0,'2025-10-25','2026-01-24',1248,0,1209,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:41:00','0000-00-00','','','','N','18:41:00','18:55:03','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','6','18:41:06',0,'','manshi','2025-10-25 18:41:06','drsagar','2025-10-25 18:55:03'),(1494,0,0,'O','N','2526',117,0,'2025-10-25','0000-00-00',128,0,117,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:41:00','0000-00-00','','','','N','18:41:00','19:29:37','','','N','Y',NULL,'O','O','Z41','','0000-00-00 00:00:00','3','18:41:58',0,'','janvi','2025-10-25 18:41:58','drpratapsinh','2025-10-25 19:29:37'),(1495,0,0,'O','N','2526',1210,0,'2025-10-25','2026-01-24',1249,0,1210,'N','','N','','','NC','','N','D02','','N',87,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','19:36:47','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','3','18:49:55',0,'','drashti','2025-10-25 18:49:55','drpratapsinh','2025-10-25 19:36:47'),(1496,0,0,'O','N','2526',184,0,'2025-10-25','0000-00-00',197,0,184,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:52:00','0000-00-00','','','','N','18:52:00','00:00:00','','','N','N',NULL,'O','O','Z43','','0000-00-00 00:00:00','4','18:52:22',0,'','janvi','2025-10-25 18:52:22','','0000-00-00 00:00:00'),(1497,0,0,'O','N','2526',1211,0,'2025-10-25','2026-01-24',1250,0,1211,'N','','N','','','INJECTION','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','00:00:00','','','N','N',NULL,'O','N','Z44','','0000-00-00 00:00:00','5','18:54:52',0,'','drashti','2025-10-25 18:54:52','','0000-00-00 00:00:00'),(1498,0,0,'O','N','2526',1019,0,'2025-10-25','0000-00-00',1053,0,1019,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:03:00','0000-00-00','','','','N','19:03:00','19:46:06','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','3','19:03:11',0,'','janvi','2025-10-25 19:03:11','drpratapsinh','2025-10-25 19:46:06'),(1499,0,0,'O','N','2526',1212,0,'2025-10-25','2026-01-24',1251,0,1212,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:05:00','0000-00-00','','','','N','19:05:00','19:51:38','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','3','19:05:32',0,'','janvi','2025-10-25 19:05:32','drpratapsinh','2025-10-25 19:51:38'),(1500,0,0,'O','N','2526',1049,0,'2025-10-25','0000-00-00',1083,0,1049,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:09:00','0000-00-00','','','','N','19:09:00','20:22:02','','','N','Y',NULL,'O','O','Z47','','0000-00-00 00:00:00','3','19:09:40',0,'','drashti','2025-10-25 19:09:40','drpratapsinh','2025-10-25 20:22:02'),(1501,0,0,'I','N','2526',1156,93,'2025-10-25','2026-01-24',1195,0,1156,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:22:00','2025-10-29','','1','mo','N','19:22:00','20:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-25 19:24:03','mo','2025-10-29 20:27:44'),(1502,0,0,'O','N','2526',1102,0,'2025-10-25','0000-00-00',1140,0,1102,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:33:00','0000-00-00','','','','N','19:33:00','19:45:25','','','N','Y',NULL,'O','O','Z48','','0000-00-00 00:00:00','6','19:33:13',0,'','manshi','2025-10-25 19:33:13','drsagar','2025-10-25 19:45:25'),(1503,0,0,'O','N','2526',1213,0,'2025-10-26','2026-01-25',1252,0,1213,'N','','N','','','','Y','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:03:00','0000-00-00','','','','N','10:03:00','00:00:00','','','N','N',NULL,'O','N','Z01','','0000-00-00 00:00:00','5','10:03:52',0,'','urvashi','2025-10-26 10:03:52','','0000-00-00 00:00:00'),(1504,0,0,'I','N','2526',0,94,'2025-10-25','2026-01-24',1253,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','23:00:00','2025-10-27','','1','mo','N','23:00:00','12:45:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-26 10:43:28','mo','2025-10-27 13:52:03'),(1505,0,0,'I','N','2526',0,95,'2025-10-26','2026-01-25',1254,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','2025-10-27','','1','mo','N','11:15:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-26 11:27:14','mo','2025-10-27 12:30:29'),(1506,0,0,'I','N','2526',184,96,'2025-10-26','2026-01-25',197,0,184,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:17:00','2025-10-27','','1','mo','N','12:17:00','21:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-26 12:18:42','mo','2025-10-27 21:29:09'),(1507,0,0,'O','N','2526',892,0,'2025-10-27','0000-00-00',924,0,892,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:42:00','0000-00-00','','','','N','08:42:00','13:16:50','','','N','Y',NULL,'O','O','Z01','','0000-00-00 00:00:00','4','08:48:08',0,'','urvashi','2025-10-27 08:48:08','drarchit','2025-10-27 13:16:50'),(1508,0,0,'O','N','2526',1214,0,'2025-10-27','2026-01-26',1255,0,1214,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:49:00','0000-00-00','','','','N','08:49:00','10:53:17','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','08:49:33',0,'','urvashi','2025-10-27 08:49:33','drarchit','2025-10-27 10:53:17'),(1509,0,0,'O','N','2526',118,0,'2025-10-27','0000-00-00',129,0,118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:52:00','0000-00-00','','','','N','08:52:00','12:53:45','','','N','Y',NULL,'O','O','Z03','','0000-00-00 00:00:00','3','08:52:27',0,'','urvashi','2025-10-27 08:52:27','drpratapsinh','2025-10-27 12:53:45'),(1510,0,0,'O','N','2526',1215,0,'2025-10-27','2026-01-26',1256,0,1215,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:54:00','0000-00-00','','','','N','08:54:00','13:16:58','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','4','08:54:54',0,'','urvashi','2025-10-27 08:54:54','drarchit','2025-10-27 13:16:58'),(1511,0,0,'O','N','2526',1216,0,'2025-10-27','2026-01-26',1257,0,1216,'N','','N','','','EMR','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:02:00','0000-00-00','','','','N','09:02:00','11:35:12','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','4','09:02:29',0,'','urvashi','2025-10-27 09:02:29','drarchit','2025-10-27 11:35:12'),(1512,0,0,'O','N','2526',1217,0,'2025-10-27','2026-01-26',1258,0,1217,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:07:00','0000-00-00','','','','N','09:07:00','00:00:00','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','3','09:07:36',0,'','urvashi','2025-10-27 09:07:36','','0000-00-00 00:00:00'),(1513,0,0,'O','N','2526',1218,0,'2025-10-27','2026-01-26',1259,0,1218,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:16:00','0000-00-00','','','','N','09:16:00','11:33:54','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','4','09:16:55',0,'','janvi','2025-10-27 09:16:55','drarchit','2025-10-27 11:33:54'),(1514,0,0,'O','N','2526',1219,0,'2025-10-27','2026-01-26',1260,0,1219,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:18:00','0000-00-00','','','','N','09:18:00','11:34:25','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','4','09:18:25',0,'','janvi','2025-10-27 09:18:25','drarchit','2025-10-27 11:34:25'),(1515,0,0,'O','N','2526',1220,0,'2025-10-27','2026-01-26',1261,0,1220,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:18:00','0000-00-00','','','','N','09:18:00','11:50:25','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','4','09:18:53',0,'','urvashi','2025-10-27 09:18:53','drarchit','2025-10-27 11:50:25'),(1516,0,0,'O','N','2526',644,0,'2025-10-27','0000-00-00',674,0,644,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:26:00','0000-00-00','','','','N','09:26:00','12:28:13','','','N','Y',NULL,'O','O','Z10','','0000-00-00 00:00:00','4','09:26:40',0,'','janvi','2025-10-27 09:26:40','drarchit','2025-10-27 12:28:13'),(1517,0,0,'O','N','2526',1221,0,'2025-10-27','2026-01-26',1262,0,1221,'N','','N','','','EMR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:28:00','0000-00-00','','','','N','09:28:00','11:08:51','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','2','09:28:44',0,'','reception','2025-10-27 09:28:44','darshan','2025-10-27 11:08:51'),(1518,0,0,'O','N','2526',1222,0,'2025-10-27','2026-01-26',1263,0,1222,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:39:00','0000-00-00','','','','N','09:39:00','10:57:34','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','4','09:39:54',0,'','urvashi','2025-10-27 09:39:54','drarchit','2025-10-27 10:57:34'),(1519,0,0,'I','N','2526',1133,97,'2025-10-27','2026-01-26',1173,0,1133,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:57:00','2025-10-27','','1','mo','N','09:57:00','17:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-27 09:58:19','riya','2025-10-27 16:36:58'),(1520,0,0,'O','N','2526',1223,0,'2025-10-27','2026-01-26',1264,0,1223,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:01:00','0000-00-00','','','','N','10:01:00','00:00:00','','','N','N',NULL,'O','N','Z12','','0000-00-00 00:00:00','3','10:02:05',0,'','janvi','2025-10-27 10:02:05','','0000-00-00 00:00:00'),(1521,0,0,'O','N','2526',1224,0,'2025-10-27','2026-01-26',1265,0,1224,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:11:00','0000-00-00','','','','N','10:11:00','11:11:14','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','6','10:11:01',0,'','manshi','2025-10-27 10:11:01','drsagar','2025-10-27 11:11:14'),(1522,0,0,'O','N','2526',1225,0,'2025-10-27','2026-01-26',1266,0,1225,'N','','N','','','','','N','D14','','N',89,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:18:00','0000-00-00','','','','N','10:18:00','11:33:55','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','7','10:18:21',0,'','manshi','2025-10-27 10:18:21','drridham','2025-10-27 11:33:55'),(1523,0,0,'O','N','2526',1152,0,'2025-10-27','0000-00-00',1192,0,1152,'N','','N','','','REPORT','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:18:00','0000-00-00','','','','N','10:18:00','12:51:06','','','N','Y',NULL,'O','O','Z15','','0000-00-00 00:00:00','3','10:19:07',0,'','janvi','2025-10-27 10:19:07','drpratapsinh','2025-10-27 12:51:06'),(1524,0,0,'O','N','2526',1226,0,'2025-10-27','2026-01-26',1267,0,1226,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:20:00','0000-00-00','','','','N','10:20:00','11:08:03','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','10:20:43',0,'','reception','2025-10-27 10:20:43','darshan','2025-10-27 11:08:03'),(1525,0,0,'O','N','2526',1227,0,'2025-10-27','2026-01-26',1268,0,1227,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:20:00','0000-00-00','','','','N','10:20:00','10:55:37','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','3','10:20:47',0,'','janvi','2025-10-27 10:20:47','drpratapsinh','2025-10-27 10:55:37'),(1526,0,0,'O','N','2526',645,0,'2025-10-27','0000-00-00',675,0,645,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:21:00','0000-00-00','','','','N','10:21:00','11:17:21','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','6','10:21:29',0,'','manshi','2025-10-27 10:21:29','drsagar','2025-10-27 11:17:21'),(1527,0,0,'O','N','2526',1228,0,'2025-10-27','2026-01-26',1269,0,1228,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:22:00','0000-00-00','','','','N','10:22:00','13:45:21','','N','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','10:22:21',0,'','reception','2025-10-27 10:22:21','darshan','2025-10-27 13:45:21'),(1528,0,0,'O','N','2526',1229,0,'2025-10-27','2026-01-26',1270,0,1229,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:23:00','0000-00-00','','','','N','10:23:00','11:57:49','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','10:23:32',0,'','reception','2025-10-27 10:23:32','darshan','2025-10-27 11:57:49'),(1529,0,0,'O','N','2526',1230,0,'2025-10-27','2026-01-26',1271,0,1230,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:29:00','0000-00-00','','','','N','10:29:00','14:14:03','','N','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','10:29:21',0,'','reception','2025-10-27 10:29:21','darshan','2025-10-27 14:14:03'),(1530,0,0,'O','N','2526',1231,0,'2025-10-27','2026-01-26',1272,0,1231,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:32:00','0000-00-00','','','','N','10:32:00','14:05:22','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:32:04',0,'','reception','2025-10-27 10:32:04','darshan','2025-10-27 14:05:22'),(1531,0,0,'O','N','2526',865,0,'2025-10-27','0000-00-00',897,0,865,'N','','N','','','FOLLOWUP E','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:34:00','0000-00-00','','','','N','10:34:00','11:04:52','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:34:14',0,'','reception','2025-10-27 10:34:14','darshan','2025-10-27 11:04:52'),(1532,0,0,'O','N','2526',1232,0,'2025-10-27','2026-01-26',1273,0,1232,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:35:00','0000-00-00','','','','N','10:35:00','11:34:09','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','7','10:35:38',0,'','manshi','2025-10-27 10:35:38','drridham','2025-10-27 11:34:09'),(1533,0,0,'O','N','2526',1233,0,'2025-10-27','2026-01-26',1274,0,1233,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','14:19:55','','N','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','2','10:38:25',0,'','reception','2025-10-27 10:38:25','darshan','2025-10-27 14:19:55'),(1534,0,0,'O','N','2526',1234,0,'2025-10-27','2026-01-26',1275,0,1234,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:45:00','0000-00-00','','','','N','10:45:00','11:12:45','','','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:45:08',0,'','urvashi','2025-10-27 10:45:08','darshan','2025-10-27 11:12:45'),(1535,0,0,'O','N','2526',1235,0,'2025-10-27','2026-01-26',1276,0,1235,'N','','N','','','','','N','D27','','N',55,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:47:00','0000-00-00','','','','N','10:47:00','11:27:39','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','4','10:47:33',0,'','urvashi','2025-10-27 10:47:33','drarchit','2025-10-27 11:27:39'),(1536,0,0,'I','N','2526',1223,98,'2025-10-27','2026-01-26',1264,0,1223,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','2025-10-29','','1','mo','N','10:48:00','11:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-27 10:49:47','mo','2025-10-29 12:53:21'),(1537,0,0,'O','N','2526',1236,0,'2025-10-27','2026-01-26',1277,0,1236,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:50:00','0000-00-00','','','','N','10:50:00','11:01:19','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','5','10:50:18',0,'','janvi','2025-10-27 10:50:18','drjayant','2025-10-27 11:01:19'),(1538,0,0,'O','N','2526',1237,0,'2025-10-27','2026-01-26',1278,0,1237,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:50:00','0000-00-00','','','','N','10:50:00','12:32:34','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','2','10:50:31',0,'','reception','2025-10-27 10:50:31','darshan','2025-10-27 12:32:34'),(1539,0,0,'O','N','2526',1238,0,'2025-10-27','2026-01-26',1279,0,1238,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','11:59:50','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','4','10:53:20',0,'','urvashi','2025-10-27 10:53:19','drarchit','2025-10-27 11:59:50'),(1540,0,0,'O','N','2526',1239,0,'2025-10-27','2026-01-26',1280,0,1239,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','13:52:32','','N','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','2','10:53:27',0,'','reception','2025-10-27 10:53:27','darshan','2025-10-27 13:52:32'),(1541,0,0,'O','N','2526',1240,0,'2025-10-27','2026-01-26',1281,0,1240,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','14:58:49','','N','N','Y',NULL,'O','N','F04','','0000-00-00 00:00:00','2','10:55:52',0,'','reception','2025-10-27 10:55:52','darshan','2025-10-27 14:58:49'),(1542,0,0,'O','N','2526',923,0,'2025-10-27','0000-00-00',954,0,923,'N','','N','','','','','N','D03','','N',4,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','11:23:16','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','6','10:57:37',0,'','manshi','2025-10-27 10:57:37','drsagar','2025-10-27 11:23:16'),(1543,0,0,'O','N','2526',1241,0,'2025-10-27','2026-01-26',1282,0,1241,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','12:22:01','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','4','10:57:53',0,'','urvashi','2025-10-27 10:57:53','drarchit','2025-10-27 12:22:01'),(1544,0,0,'O','N','2526',1242,0,'2025-10-27','2026-01-26',1283,0,1242,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','12:40:40','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','2','10:58:04',0,'','reception','2025-10-27 10:58:04','darshan','2025-10-27 12:40:40'),(1545,0,0,'O','N','2526',1243,0,'2025-10-27','2026-01-26',1284,0,1243,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','12:08:55','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','4','11:01:14',0,'','urvashi','2025-10-27 11:01:14','drarchit','2025-10-27 12:08:55'),(1546,0,0,'O','N','2526',1244,0,'2025-10-27','2026-01-26',1285,0,1244,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','12:39:21','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','4','11:02:11',0,'','janvi','2025-10-27 11:02:11','drarchit','2025-10-27 12:39:21'),(1547,0,0,'O','N','2526',1245,0,'2025-10-27','2026-01-26',1286,0,1245,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','11:30:38','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','2','11:04:13',0,'','reception','2025-10-27 11:04:13','darshan','2025-10-27 11:30:38'),(1548,0,0,'O','N','2526',1246,0,'2025-10-27','2026-01-26',1287,0,1246,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','11:36:39','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','5','11:06:07',0,'','urvashi','2025-10-27 11:06:07','drjayant','2025-10-27 11:36:39'),(1549,0,0,'O','N','2526',178,0,'2025-10-27','0000-00-00',191,0,178,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','11:30:42','','','N','Y',NULL,'O','O','Z31','','0000-00-00 00:00:00','6','11:07:06',0,'','manshi','2025-10-27 11:07:06','drsagar','2025-10-27 11:30:42'),(1550,0,0,'O','N','2526',709,0,'2025-10-27','0000-00-00',740,0,709,'N','','N','','','FC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','12:35:05','','','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','4','11:07:27',0,'','janvi','2025-10-27 11:07:27','drarchit','2025-10-27 12:35:05'),(1551,0,0,'O','N','2526',1247,0,'2025-10-27','2026-01-26',1288,0,1247,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','13:48:28','','N','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:09:18',0,'','reception','2025-10-27 11:09:18','darshan','2025-10-27 13:48:28'),(1552,0,0,'O','N','2526',432,0,'2025-10-27','0000-00-00',455,0,432,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','11:24:45','','','N','Y',NULL,'O','O','Z33','','0000-00-00 00:00:00','3','11:09:55',0,'','urvashi','2025-10-27 11:09:55','drpratapsinh','2025-10-27 11:24:45'),(1553,0,0,'O','N','2526',1248,0,'2025-10-27','2026-01-26',1289,0,1248,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','14:22:04','','N','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','2','11:13:54',0,'','urvashi','2025-10-27 11:13:54','darshan','2025-10-27 14:22:04'),(1554,0,0,'O','N','2526',1249,0,'2025-10-27','2026-01-26',1290,0,1249,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','13:22:35','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','2','11:17:26',0,'','reception','2025-10-27 11:17:26','darshan','2025-10-27 13:22:35'),(1555,0,0,'O','N','2526',1049,0,'2025-10-27','0000-00-00',1083,0,1049,'N','','N','','','REPORT','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','12:53:14','','','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','3','11:20:10',0,'','janvi','2025-10-27 11:20:10','drpratapsinh','2025-10-27 12:53:14'),(1556,0,0,'O','N','2526',1250,0,'2025-10-27','2026-01-26',1291,0,1250,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','11:46:27','','','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','2','11:20:12',0,'','reception','2025-10-27 11:20:12','darshan','2025-10-27 11:46:27'),(1557,0,0,'O','N','2526',1088,0,'2025-10-27','0000-00-00',1127,0,1088,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','11:36:11','','','N','Y',NULL,'O','O','Z36','','0000-00-00 00:00:00','6','11:20:35',0,'','manshi','2025-10-27 11:20:35','drsagar','2025-10-27 11:36:11'),(1558,0,0,'O','N','2526',721,0,'2025-10-27','0000-00-00',752,0,721,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','12:25:25','','','N','Y',NULL,'O','O','G05','','0000-00-00 00:00:00','4','11:21:09',0,'','urvashi','2025-10-27 11:21:09','drarchit','2025-10-27 12:25:25'),(1559,0,0,'O','N','2526',1251,0,'2025-10-27','2026-01-26',1292,0,1251,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:22:00','0000-00-00','','','','N','11:22:00','11:28:01','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','3','11:22:53',0,'','janvi','2025-10-27 11:22:53','drpratapsinh','2025-10-27 11:28:01'),(1560,0,0,'O','N','2526',1252,0,'2025-10-27','2026-01-26',1293,0,1252,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','13:44:32','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','2','11:25:02',0,'','reception','2025-10-27 11:25:02','darshan','2025-10-27 13:44:32'),(1561,0,0,'O','N','2526',1253,0,'2025-10-27','2026-01-26',1294,0,1253,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','13:28:13','','','N','Y',NULL,'O','N','G06','','0000-00-00 00:00:00','2','11:30:38',0,'','janvi','2025-10-27 11:27:22','darshan','2025-10-27 13:28:13'),(1562,0,0,'O','N','2526',486,0,'2025-10-27','0000-00-00',510,0,486,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','11:41:25','','','N','Y',NULL,'O','O','Z39','','0000-00-00 00:00:00','6','11:27:39',0,'','manshi','2025-10-27 11:27:39','drsagar','2025-10-27 11:41:25'),(1563,0,0,'I','N','2526',0,99,'2025-10-27','2026-01-26',1295,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','2025-10-29','','1','mo','N','11:25:00','17:45:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-27 11:28:57','mo','2025-10-29 19:29:45'),(1564,0,0,'O','N','2526',1254,0,'2025-10-27','2026-01-26',455,0,1254,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','11:57:09','','','N','Y',NULL,'O','N','Y01','','0000-00-00 00:00:00','6','11:32:14',0,'','manshi','2025-10-27 11:32:14','drsagar','2025-10-27 11:57:09'),(1565,0,0,'O','N','2526',1255,0,'2025-10-27','2026-01-26',1296,0,1255,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:34:00','0000-00-00','','','','N','11:34:00','13:00:44','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','3','11:35:00',0,'','janvi','2025-10-27 11:35:00','drpratapsinh','2025-10-27 13:00:44'),(1566,0,0,'O','N','2526',47,0,'2025-10-27','0000-00-00',53,0,47,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','12:55:03','','','N','Y',NULL,'O','O','Z41','','0000-00-00 00:00:00','3','11:36:03',0,'','janvi','2025-10-27 11:36:03','drpratapsinh','2025-10-27 12:55:03'),(1567,0,0,'O','N','2526',1256,0,'2025-10-27','2026-01-26',1297,0,1256,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','12:48:49','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','4','11:36:43',0,'','urvashi','2025-10-27 11:36:43','drarchit','2025-10-27 12:48:49'),(1568,0,0,'O','N','2526',1257,0,'2025-10-27','2026-01-26',1298,0,1257,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','12:01:02','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','11:46:27',0,'','reception','2025-10-27 11:38:24','darshan','2025-10-27 12:01:02'),(1569,0,0,'O','N','2526',21,0,'2025-10-27','0000-00-00',22,0,21,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','12:45:06','','','N','Y',NULL,'O','O','H04','','0000-00-00 00:00:00','4','11:41:11',0,'','urvashi','2025-10-27 11:41:11','drarchit','2025-10-27 12:45:06'),(1570,0,0,'O','N','2526',1258,0,'2025-10-27','2026-01-26',1299,0,1258,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','12:25:43','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','2','11:46:27',0,'','reception','2025-10-27 11:41:30','darshan','2025-10-27 12:25:43'),(1571,0,0,'O','N','2526',1259,0,'2025-10-27','2026-01-26',1300,0,1259,'N','','N','','','NC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','12:21:13','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','4','11:41:58',0,'','janvi','2025-10-27 11:41:58','drarchit','2025-10-27 12:21:13'),(1572,0,0,'I','N','2526',1235,100,'2025-10-27','2026-01-26',1276,0,1235,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','2025-10-29','','1','mo','N','11:43:00','12:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-27 11:44:28','mo','2025-10-29 12:45:02'),(1573,0,0,'O','N','2526',881,0,'2025-10-27','0000-00-00',913,0,881,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','11:57:23','','','N','Y',NULL,'O','O','Z43','','0000-00-00 00:00:00','6','11:46:50',0,'','manshi','2025-10-27 11:46:50','drsagar','2025-10-27 11:57:23'),(1574,0,0,'O','N','2526',1260,0,'2025-10-27','2026-01-26',1301,0,1260,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','13:06:25','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','4','11:48:14',0,'','urvashi','2025-10-27 11:48:14','drarchit','2025-10-27 13:06:25'),(1575,0,0,'O','N','2526',489,0,'2025-10-27','0000-00-00',514,0,489,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:49:00','0000-00-00','','','','N','11:49:00','12:29:33','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','7','11:49:07',0,'','manshi','2025-10-27 11:49:07','drridham','2025-10-27 12:29:33'),(1576,0,0,'O','N','2526',1261,0,'2025-10-27','2026-01-26',1302,0,1261,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:49:00','0000-00-00','','','','N','11:49:00','12:07:17','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','5','11:49:31',0,'','janvi','2025-10-27 11:49:31','drjayant','2025-10-27 12:07:17'),(1577,0,0,'O','N','2526',1262,0,'2025-10-27','2026-01-26',1303,0,1262,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','12:55:34','','','N','Y',NULL,'O','N','H06','','0000-00-00 00:00:00','4','11:50:10',0,'','urvashi','2025-10-27 11:50:10','drarchit','2025-10-27 12:55:34'),(1578,0,0,'O','N','2526',1263,0,'2025-10-27','2026-01-26',1304,0,1263,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','12:13:14','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','6','11:51:09',0,'','manshi','2025-10-27 11:51:09','drsagar','2025-10-27 12:13:14'),(1579,0,0,'O','N','2526',1264,0,'2025-10-27','2026-01-26',274,0,1264,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','13:06:16','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','4','11:52:33',0,'','urvashi','2025-10-27 11:52:33','drarchit','2025-10-27 13:06:16'),(1580,0,0,'O','N','2526',1265,0,'2025-10-27','2026-01-26',1104,0,1265,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','13:06:35','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','4','11:59:50',0,'','janvi','2025-10-27 11:52:49','drarchit','2025-10-27 13:06:35'),(1581,0,0,'O','N','2526',166,0,'2025-10-27','0000-00-00',179,0,166,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','13:10:07','','','N','Y',NULL,'O','O','I04','','0000-00-00 00:00:00','4','11:59:50',0,'','urvashi','2025-10-27 11:54:56','drarchit','2025-10-27 13:10:07'),(1582,0,0,'O','N','2526',1266,0,'2025-10-27','2026-01-26',1305,0,1266,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:57:00','0000-00-00','','','','N','11:57:00','13:23:35','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','4','11:59:50',0,'','urvashi','2025-10-27 11:57:05','drarchit','2025-10-27 13:23:35'),(1583,0,0,'O','N','2526',1267,0,'2025-10-27','2026-01-26',1306,0,1267,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:01:00','0000-00-00','','','','N','12:01:00','13:15:34','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','4','12:22:01',0,'','urvashi','2025-10-27 12:01:18','drarchit','2025-10-27 13:15:34'),(1584,0,0,'O','N','2526',1268,0,'2025-10-27','2026-01-26',1307,0,1268,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','12:48:51','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','3','12:09:02',0,'','janvi','2025-10-27 12:09:02','drpratapsinh','2025-10-27 12:48:50'),(1585,0,0,'O','N','2526',422,0,'2025-10-27','0000-00-00',444,0,422,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','12:31:50','','','N','Y',NULL,'O','O','Z52','','0000-00-00 00:00:00','7','12:09:27',0,'','manshi','2025-10-27 12:09:27','drridham','2025-10-27 12:31:50'),(1586,0,0,'O','N','2526',1269,0,'2025-10-27','2026-01-26',1308,0,1269,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','15:00:24','','N','N','Y',NULL,'O','N','I05','','0000-00-00 00:00:00','2','12:09:56',0,'','urvashi','2025-10-27 12:09:55','darshan','2025-10-27 15:00:24'),(1587,0,0,'O','N','2526',1270,0,'2025-10-27','2026-01-26',1309,0,1270,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:12:00','0000-00-00','','','','N','12:12:00','15:11:42','','N','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:25:43',0,'','reception','2025-10-27 12:12:37','darshan','2025-10-27 15:11:42'),(1588,0,0,'O','N','2526',430,0,'2025-10-27','0000-00-00',453,0,430,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:13:00','0000-00-00','','','','N','12:13:00','12:50:45','','','N','Y',NULL,'O','O','Z53','','0000-00-00 00:00:00','3','12:13:12',0,'','drashti','2025-10-27 12:13:12','drpratapsinh','2025-10-27 12:50:45'),(1589,0,0,'O','N','2526',580,0,'2025-10-27','0000-00-00',611,0,580,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:16:00','0000-00-00','','','','N','12:16:00','12:39:31','','','N','Y',NULL,'O','O','Z54','','0000-00-00 00:00:00','6','12:16:42',0,'','manshi','2025-10-27 12:16:42','drsagar','2025-10-27 12:39:31'),(1590,0,0,'O','N','2526',1271,0,'2025-10-27','2026-01-26',1310,0,1271,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:19:00','0000-00-00','','','','N','12:19:00','18:11:19','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','2','12:25:43',0,'','reception','2025-10-27 12:19:53','darshan','2025-10-27 18:11:19'),(1591,0,0,'O','N','2526',1272,0,'2025-10-27','2026-01-26',1311,0,1272,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:31:00','0000-00-00','','','','N','12:31:00','13:37:05','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','12:40:40',0,'','reception','2025-10-27 12:31:24','darshan','2025-10-27 13:37:05'),(1592,0,0,'O','N','2526',1273,0,'2025-10-27','2026-01-26',1312,0,1273,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:36:00','0000-00-00','','','','N','12:36:00','13:31:44','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','4','12:36:21',0,'','drashti','2025-10-27 12:36:21','drarchit','2025-10-27 13:31:44'),(1593,0,0,'O','N','2526',951,0,'2025-10-27','0000-00-00',982,0,951,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:48:00','0000-00-00','','','','N','12:48:00','13:44:34','','','N','Y',NULL,'O','O','Z57','','0000-00-00 00:00:00','4','12:48:49',0,'','drashti','2025-10-27 12:48:49','drarchit','2025-10-27 13:44:34'),(1594,0,0,'O','N','2526',1176,0,'2025-10-27','0000-00-00',1215,0,1176,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:49:00','0000-00-00','','','','N','12:49:00','12:53:59','','','N','Y',NULL,'O','O','Z58','','0000-00-00 00:00:00','3','12:49:18',0,'','janvi','2025-10-27 12:49:18','drpratapsinh','2025-10-27 12:53:59'),(1595,0,0,'O','N','2526',1274,0,'2025-10-27','2026-01-26',1313,0,1274,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:52:00','0000-00-00','','','','N','12:52:00','13:48:36','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','4','12:52:02',0,'','janvi','2025-10-27 12:52:02','drarchit','2025-10-27 13:48:36'),(1596,0,0,'O','N','2526',150,0,'2025-10-27','0000-00-00',161,0,150,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:52:00','0000-00-00','','','','N','12:52:00','13:26:56','','','N','Y',NULL,'O','O','J04','','0000-00-00 00:00:00','4','12:52:31',0,'','drashti','2025-10-27 12:52:31','drarchit','2025-10-27 13:26:55'),(1597,0,0,'O','N','2526',1275,0,'2025-10-27','2026-01-26',1314,0,1275,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:54:00','0000-00-00','','','','N','12:54:00','14:12:36','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','2','13:22:35',0,'','reception','2025-10-27 12:54:05','darshan','2025-10-27 14:12:36'),(1598,0,0,'O','N','2526',182,0,'2025-10-27','0000-00-00',195,0,182,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:56:00','0000-00-00','','','','N','12:56:00','13:53:17','','','N','Y',NULL,'O','O','Z61','','0000-00-00 00:00:00','4','12:56:07',0,'','drashti','2025-10-27 12:56:07','drarchit','2025-10-27 13:53:17'),(1599,0,0,'O','N','2526',1276,0,'2025-10-27','2026-01-26',1315,0,1276,'N','','N','','','','','N','D02','','N',4,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:07:00','0000-00-00','','','','N','13:07:00','00:00:00','','','N','N',NULL,'O','N','Z62','','0000-00-00 00:00:00','3','13:07:51',0,'','janvi','2025-10-27 13:07:51','','0000-00-00 00:00:00'),(1600,0,0,'O','N','2526',1277,0,'2025-10-27','2026-01-26',1316,0,1277,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:08:00','0000-00-00','','','','N','13:08:00','14:56:10','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','2','13:22:35',0,'','reception','2025-10-27 13:08:48','darshan','2025-10-27 14:56:10'),(1601,0,0,'I','N','2526',627,101,'2025-10-27','2026-01-26',657,0,627,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-10-28','','1','mo','N','09:30:00','15:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-27 13:19:46','mo','2025-10-31 20:53:38'),(1602,0,0,'O','N','2526',1278,0,'2025-10-27','2026-01-26',1317,0,1278,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:21:00','0000-00-00','','','','N','13:21:00','14:35:45','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','2','13:22:35',0,'','reception','2025-10-27 13:21:37','darshan','2025-10-27 14:35:45'),(1603,0,0,'O','N','2526',1279,0,'2025-10-27','2026-01-26',1318,0,1279,'N','','N','','','NC','','N','D02','','N',41,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:23:00','0000-00-00','','','','N','13:23:00','00:00:00','','','N','N',NULL,'O','N','Z65','','0000-00-00 00:00:00','3','13:23:08',0,'','drashti','2025-10-27 13:23:08','','0000-00-00 00:00:00'),(1604,0,0,'O','N','2526',165,0,'2025-10-27','0000-00-00',178,0,165,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:51:00','0000-00-00','','','','N','13:51:00','18:10:40','','','N','Y',NULL,'O','O','Z66','','0000-00-00 00:00:00','3','13:51:33',0,'','janvi','2025-10-27 13:51:33','drpratapsinh','2025-10-27 18:10:40'),(1605,0,0,'O','N','2526',1280,0,'2025-10-27','2026-01-26',1319,0,1280,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:55:00','0000-00-00','','','','N','13:55:00','18:41:18','','','N','Y',NULL,'O','N','Z67','','0000-00-00 00:00:00','4','13:55:13',0,'','janvi','2025-10-27 13:55:13','drarchit','2025-10-27 18:41:18'),(1606,0,0,'O','N','2526',1281,0,'2025-10-27','2026-01-26',1320,0,1281,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:22:00','0000-00-00','','','','N','16:22:00','18:37:06','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:22:22',0,'','drashti','2025-10-27 16:22:22','darshan','2025-10-27 18:37:06'),(1607,0,0,'O','N','2526',1282,0,'2025-10-27','2026-01-26',1321,0,1282,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:23:00','0000-00-00','','','','N','16:23:00','17:03:19','','','N','Y',NULL,'O','N','Z68','','0000-00-00 00:00:00','2','16:23:53',0,'','drashti','2025-10-27 16:23:53','darshan','2025-10-27 17:03:19'),(1608,0,0,'O','N','2526',1283,0,'2025-10-27','2026-01-26',1322,0,1283,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:35:00','0000-00-00','','','','N','16:35:00','19:24:44','','N','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','2','16:35:37',0,'','reception','2025-10-27 16:35:37','darshan','2025-10-27 19:24:44'),(1609,0,0,'O','N','2526',982,0,'2025-10-27','0000-00-00',1015,0,982,'N','','N','','','FOLLOWUP','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:41:00','0000-00-00','','','','N','16:41:00','17:34:19','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','16:41:48',0,'','reception','2025-10-27 16:41:48','darshan','2025-10-27 17:34:19'),(1610,0,0,'O','N','2526',1284,0,'2025-10-27','2026-01-26',1323,0,1284,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:45:00','0000-00-00','','','','N','16:45:00','17:23:49','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','16:45:56',0,'','reception','2025-10-27 16:45:56','darshan','2025-10-27 17:23:49'),(1611,0,0,'O','N','2526',1278,0,'2025-10-27','0000-00-00',1317,0,1278,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:14:00','0000-00-00','','','','N','17:14:00','19:22:28','','N','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','2','17:14:18',0,'','reception','2025-10-27 17:14:18','darshan','2025-10-27 19:22:28'),(1612,0,0,'O','N','2526',79,0,'2025-10-27','0000-00-00',90,0,79,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:18:00','0000-00-00','','','','N','17:18:00','17:39:14','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','17:19:10',0,'','reception','2025-10-27 17:19:10','darshan','2025-10-27 17:39:14'),(1613,0,0,'O','N','2526',1285,0,'2025-10-27','2026-01-26',1324,0,1285,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:21:00','0000-00-00','','','','N','17:21:00','19:45:52','','N','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:21:08',0,'','reception','2025-10-27 17:21:08','darshan','2025-10-27 19:45:52'),(1614,0,0,'O','N','2526',1286,0,'2025-10-27','2026-01-26',1325,0,1286,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:22:00','0000-00-00','','','','N','17:22:00','17:51:54','','','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:22:29',0,'','reception','2025-10-27 17:22:29','darshan','2025-10-27 17:51:54'),(1615,0,0,'O','N','2526',303,0,'2025-10-27','0000-00-00',319,0,303,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:26:00','0000-00-00','','','','N','17:26:00','00:00:00','','','N','N',NULL,'O','O','Z70','','0000-00-00 00:00:00','3','17:26:51',0,'','janvi','2025-10-27 17:26:51','','0000-00-00 00:00:00'),(1616,0,0,'O','N','2526',1132,0,'2025-10-27','0000-00-00',1172,0,1132,'N','','N','','','FC','','N','D02','','N',82,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','18:00:02','','','N','Y',NULL,'O','O','Z71','','0000-00-00 00:00:00','3','17:32:31',0,'','janvi','2025-10-27 17:32:31','drpratapsinh','2025-10-27 18:00:02'),(1617,0,0,'O','N','2526',1287,0,'2025-10-27','2026-01-26',1326,0,1287,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:34:00','0000-00-00','','','','N','17:34:00','20:12:52','','N','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:34:05',0,'','reception','2025-10-27 17:34:05','darshan','2025-10-27 20:12:52'),(1618,0,0,'O','N','2526',1004,0,'2025-10-27','0000-00-00',1036,0,1004,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','18:10:18','','','N','Y',NULL,'O','O','Z72','','0000-00-00 00:00:00','3','17:41:01',0,'','janvi','2025-10-27 17:41:01','drpratapsinh','2025-10-27 18:10:18'),(1619,0,0,'O','N','2526',1288,0,'2025-10-27','2026-01-26',1327,0,1288,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','18:10:54','','','N','Y',NULL,'O','N','Z73','','0000-00-00 00:00:00','3','17:42:13',0,'','drashti','2025-10-27 17:42:13','drpratapsinh','2025-10-27 18:10:54'),(1620,0,0,'O','N','2526',1289,0,'2025-10-27','2026-01-26',1328,0,1289,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:44:00','0000-00-00','','','','N','17:44:00','18:06:17','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','6','17:44:09',0,'','manshi','2025-10-27 17:44:09','drsagar','2025-10-27 18:06:17'),(1621,0,0,'O','N','2526',1290,0,'2025-10-27','2026-01-26',1329,0,1290,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:44:00','0000-00-00','','','','N','17:44:00','18:17:17','','','N','Y',NULL,'O','N','Z75','','0000-00-00 00:00:00','2','17:44:37',0,'','reception','2025-10-27 17:44:37','darshan','2025-10-27 18:17:17'),(1622,0,0,'O','N','2526',1291,0,'2025-10-27','2026-01-26',1330,0,1291,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:45:00','0000-00-00','','','','N','17:45:00','19:49:29','','N','N','Y',NULL,'O','N','Z76','','0000-00-00 00:00:00','2','17:45:45',0,'','reception','2025-10-27 17:45:45','darshan','2025-10-27 19:49:29'),(1623,0,0,'O','N','2526',451,0,'2025-10-27','0000-00-00',477,0,451,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','18:14:25','','','N','Y',NULL,'O','O','Z77','','0000-00-00 00:00:00','3','17:49:15',0,'','janvi','2025-10-27 17:49:15','drpratapsinh','2025-10-27 18:14:25'),(1624,0,0,'O','N','2526',1292,0,'2025-10-27','2026-01-26',1331,0,1292,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','18:34:54','','','N','Y',NULL,'O','N','Z78','','0000-00-00 00:00:00','2','17:57:28',0,'','reception','2025-10-27 17:57:28','darshan','2025-10-27 18:34:54'),(1625,0,0,'O','N','2526',1103,0,'2025-10-27','0000-00-00',1141,0,1103,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','18:43:43','','','N','Y',NULL,'O','O','Z79','','0000-00-00 00:00:00','4','17:57:28',0,'','janvi','2025-10-27 17:57:28','drarchit','2025-10-27 18:43:43'),(1626,0,0,'O','N','2526',1293,0,'2025-10-27','2026-01-26',1332,0,1293,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','0000-00-00','','','','N','18:00:00','18:25:18','','','N','Y',NULL,'O','N','Z80','','0000-00-00 00:00:00','5','18:00:26',0,'','janvi','2025-10-27 18:00:26','drjayant','2025-10-27 18:25:18'),(1627,0,0,'O','N','2526',901,0,'2025-10-27','0000-00-00',932,0,901,'N','','N','','','','Y','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','18:35:44','','','N','Y',NULL,'O','O','Z81','','0000-00-00 00:00:00','6','18:02:01',0,'','manshi','2025-10-27 18:02:01','drsagar','2025-10-27 18:35:44'),(1628,0,0,'O','N','2526',1294,0,'2025-10-27','2026-01-26',1333,0,1294,'N','','N','','','','','N','D02','','N',41,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','00:00:00','','','N','Y',NULL,'O','N','Z82','','0000-00-00 00:00:00','3','18:09:07',0,'','janvi','2025-10-27 18:09:07','','0000-00-00 00:00:00'),(1629,0,0,'O','N','2526',1295,0,'2025-10-27','2026-01-26',1334,0,1295,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:43:15','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','18:09:14',0,'','reception','2025-10-27 18:09:14','darshan','2025-10-27 18:43:15'),(1630,0,0,'O','N','2526',1296,0,'2025-10-27','2026-01-26',1335,0,1296,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:20:00','0000-00-00','','','','N','18:20:00','18:30:35','','','N','Y',NULL,'O','N','Z83','','0000-00-00 00:00:00','5','18:20:19',0,'','janvi','2025-10-27 18:20:19','drjayant','2025-10-27 18:30:35'),(1631,0,0,'O','N','2526',1297,0,'2025-10-27','2026-01-26',1336,0,1297,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:22:00','0000-00-00','','','','N','18:22:00','18:51:39','','','N','Y',NULL,'O','N','Z84','','0000-00-00 00:00:00','4','18:22:09',0,'','janvi','2025-10-27 18:22:09','drarchit','2025-10-27 18:51:39'),(1632,0,0,'O','N','2526',1298,0,'2025-10-27','2026-01-26',1337,0,1298,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','18:49:42','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','18:24:06',0,'','reception','2025-10-27 18:24:06','darshan','2025-10-27 18:49:42'),(1633,0,0,'O','N','2526',1299,0,'2025-10-27','2026-01-26',1338,0,1299,'N','','N','','','NE','','N','D06','','N',21,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:27:00','0000-00-00','','','','N','18:27:00','19:00:50','','','N','Y',NULL,'O','N','Z85','','0000-00-00 00:00:00','2','18:27:47',0,'','reception','2025-10-27 18:27:47','darshan','2025-10-27 19:00:49'),(1634,0,0,'O','N','2526',1300,0,'2025-10-27','2026-01-26',1339,0,1300,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','18:38:07','','','N','Y',NULL,'O','N','Z86','','0000-00-00 00:00:00','5','18:28:47',0,'','janvi','2025-10-27 18:28:47','drjayant','2025-10-27 18:38:07'),(1635,0,0,'O','N','2526',1301,0,'2025-10-27','2026-01-26',1340,0,1301,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','18:57:53','','','N','Y',NULL,'O','N','Z87','','0000-00-00 00:00:00','5','18:31:12',0,'','janvi','2025-10-27 18:31:12','drjayant','2025-10-27 18:57:53'),(1636,0,0,'O','N','2526',1302,0,'2025-10-27','2026-01-26',1341,0,1302,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','19:17:02','','','N','Y',NULL,'O','N','Z88','','0000-00-00 00:00:00','6','18:32:38',0,'','manshi','2025-10-27 18:32:38','drsagar','2025-10-27 19:17:02'),(1637,0,0,'O','N','2526',291,0,'2025-10-27','0000-00-00',307,0,291,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','20:01:06','','','N','Y',NULL,'O','O','Z89','','0000-00-00 00:00:00','3','18:34:00',0,'','janvi','2025-10-27 18:34:00','drpratapsinh','2025-10-27 20:01:06'),(1638,0,0,'O','N','2526',1303,0,'2025-10-27','2026-01-26',1342,0,1303,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','18:58:07','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','4','18:41:21',0,'','reception','2025-10-27 18:36:21','drarchit','2025-10-27 18:58:07'),(1639,0,0,'O','N','2526',1304,0,'2025-10-27','2026-01-26',1343,0,1304,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','19:50:34','','','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','4','18:41:21',0,'','janvi','2025-10-27 18:37:00','drarchit','2025-10-27 19:50:34'),(1640,0,0,'O','N','2526',1305,0,'2025-10-27','2026-01-26',1344,0,1305,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','19:50:45','','','N','Y',NULL,'O','N','Z90','','0000-00-00 00:00:00','4','18:41:21',0,'','janvi','2025-10-27 18:40:15','drarchit','2025-10-27 19:50:45'),(1641,0,0,'O','N','2526',1306,0,'2025-10-27','2026-01-26',1345,0,1306,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','20:16:31','','N','N','Y',NULL,'O','N','Z91','','0000-00-00 00:00:00','2','18:40:37',0,'','reception','2025-10-27 18:40:37','darshan','2025-10-27 20:16:31'),(1642,0,0,'O','N','2526',1060,0,'2025-10-27','0000-00-00',1094,0,1060,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','19:05:51','','','N','Y',NULL,'O','O','Z92','','0000-00-00 00:00:00','6','18:40:56',0,'','manshi','2025-10-27 18:40:56','drsagar','2025-10-27 19:05:51'),(1643,0,0,'O','N','2526',1307,0,'2025-10-27','2026-01-26',1346,0,1307,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','19:57:40','','','N','Y',NULL,'O','N','Z93','','0000-00-00 00:00:00','3','18:44:51',0,'','shweta','2025-10-27 18:44:51','drpratapsinh','2025-10-27 19:57:40'),(1644,0,0,'O','N','2526',1308,0,'2025-10-27','2026-01-26',1347,0,1308,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:47:00','0000-00-00','','','','N','18:47:00','19:48:17','','','N','Y',NULL,'O','N','Z94','','0000-00-00 00:00:00','2','18:47:12',0,'','reception','2025-10-27 18:47:12','darshan','2025-10-27 19:48:17'),(1645,0,0,'O','N','2526',1309,0,'2025-10-27','2026-01-26',1348,0,1309,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:50:00','0000-00-00','','','','N','18:50:00','19:54:08','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','4','18:50:42',0,'','janvi','2025-10-27 18:50:41','drarchit','2025-10-27 19:54:08'),(1646,0,0,'O','N','2526',1310,0,'2025-10-27','2026-01-26',1349,0,1310,'N','','N','','','NE','','N','D06','','N',90,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:59:31','','','N','Y',NULL,'O','N','Z95','','0000-00-00 00:00:00','2','18:51:40',0,'','reception','2025-10-27 18:51:40','darshan','2025-10-27 19:59:31'),(1647,0,0,'O','N','2526',1311,0,'2025-10-27','2026-01-26',1350,0,1311,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:50:25','','','N','Y',NULL,'O','N','Z96','','0000-00-00 00:00:00','4','18:51:46',0,'','shweta','2025-10-27 18:51:46','drarchit','2025-10-27 19:50:25'),(1648,0,0,'O','N','2526',435,0,'2025-10-27','0000-00-00',458,0,435,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:55:00','0000-00-00','','','','N','18:55:00','19:03:50','','','N','Y',NULL,'O','O','Z97','','0000-00-00 00:00:00','6','18:55:01',0,'','manshi','2025-10-27 18:55:01','drsagar','2025-10-27 19:03:50'),(1649,0,0,'O','N','2526',1312,0,'2025-10-27','2026-01-26',1351,0,1312,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:57:00','0000-00-00','','','','N','18:57:00','19:31:56','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','2','18:57:08',0,'','reception','2025-10-27 18:57:08','darshan','2025-10-27 19:31:56'),(1650,0,0,'O','N','2526',1313,0,'2025-10-27','2026-01-26',1352,0,1313,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:04:00','0000-00-00','','','','N','19:04:00','19:19:56','','','N','Y',NULL,'O','N','Z98','','0000-00-00 00:00:00','5','19:04:04',0,'','shweta','2025-10-27 19:04:04','drjayant','2025-10-27 19:19:56'),(1651,0,0,'O','N','2526',1314,0,'2025-10-27','2026-01-26',1353,0,1314,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:04:00','0000-00-00','','','','N','19:04:00','20:31:02','','','N','Y',NULL,'O','N','Z99','','0000-00-00 00:00:00','2','19:05:03',0,'','reception','2025-10-27 19:05:02','darshan','2025-10-27 20:31:02'),(1652,0,0,'O','N','2526',442,0,'2025-10-27','0000-00-00',468,0,442,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:07:00','0000-00-00','','','','N','19:07:00','00:00:00','','','N','N',NULL,'O','O','Z100','','0000-00-00 00:00:00','4','19:07:04',0,'','shweta','2025-10-27 19:07:04','','0000-00-00 00:00:00'),(1653,0,0,'O','N','2526',954,0,'2025-10-27','0000-00-00',985,0,954,'N','','N','','','REPORT','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:07:00','0000-00-00','','','','N','19:07:00','19:54:29','','','N','Y',NULL,'O','O','Z101','','0000-00-00 00:00:00','4','19:07:52',0,'','janvi','2025-10-27 19:07:52','drarchit','2025-10-27 19:54:29'),(1654,0,0,'O','N','2526',1315,0,'2025-10-27','2026-01-26',1354,0,1315,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:13:00','0000-00-00','','','','N','19:13:00','20:40:54','','','N','Y',NULL,'O','N','Z102','','0000-00-00 00:00:00','2','19:13:39',0,'','reception','2025-10-27 19:13:39','darshan','2025-10-27 20:40:54'),(1655,0,0,'O','N','2526',1316,0,'2025-10-27','2026-01-26',1355,0,1316,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:20:00','0000-00-00','','','','N','19:20:00','20:00:51','','','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','4','19:20:30',0,'','janvi','2025-10-27 19:20:30','drarchit','2025-10-27 20:00:51'),(1656,0,0,'O','N','2526',1317,0,'2025-10-27','2026-01-26',1356,0,1317,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:31:00','0000-00-00','','','','N','19:31:00','20:02:07','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','19:31:07',0,'','janvi','2025-10-27 19:31:07','drarchit','2025-10-27 20:02:07'),(1657,0,0,'O','N','2526',1318,0,'2025-10-27','2026-01-26',1357,0,1318,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:42:00','0000-00-00','','','','N','19:42:00','20:16:55','','','N','Y',NULL,'O','N','Z103','','0000-00-00 00:00:00','4','19:42:17',0,'','shweta','2025-10-27 19:42:17','drarchit','2025-10-27 20:16:55'),(1658,0,0,'O','N','2526',1319,0,'2025-10-27','2026-01-26',1358,0,1319,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:45:00','0000-00-00','','','','N','19:45:00','20:17:06','','','N','Y',NULL,'O','N','Z104','','0000-00-00 00:00:00','4','19:45:23',0,'','shweta','2025-10-27 19:45:23','drarchit','2025-10-27 20:17:06'),(1659,0,0,'O','N','2526',1320,0,'2025-10-27','2026-01-26',1359,0,1320,'N','','N','','','NC','','N','D27','','N',91,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:48:00','0000-00-00','','','','N','19:48:00','00:00:00','','','N','N',NULL,'O','N','Z105','','0000-00-00 00:00:00','4','19:48:26',0,'','shweta','2025-10-27 19:48:26','','0000-00-00 00:00:00'),(1660,0,0,'I','N','2526',0,102,'2025-10-27','2026-01-26',1360,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:45:00','2025-10-31','','1','mo','N','19:45:00','12:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-27 20:06:14','mo','2025-10-31 12:40:06'),(1661,0,0,'O','N','2526',1321,0,'2025-10-27','2026-01-26',1361,0,1321,'N','','N','','','FOLLOWUP C','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:10:00','0000-00-00','','','','N','20:10:00','20:36:31','','','N','Y',NULL,'O','N','Z106','','0000-00-00 00:00:00','4','20:10:19',0,'','shweta','2025-10-27 20:10:19','drarchit','2025-10-27 20:36:31'),(1662,0,0,'O','N','2526',1322,0,'2025-10-27','2026-01-26',1362,0,1322,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:39:00','0000-00-00','','','','N','20:39:00','00:00:00','','','N','N',NULL,'O','N','Z107','','0000-00-00 00:00:00','3','20:39:49',0,'','reception','2025-10-27 20:39:49','','0000-00-00 00:00:00'),(1663,0,0,'O','N','2526',1323,0,'2025-10-28','2026-01-27',1363,0,1323,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:07:00','0000-00-00','','','','N','09:07:00','12:16:51','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','09:07:39',0,'','urvashi','2025-10-28 09:07:38','drarchit','2025-10-28 12:16:51'),(1664,0,0,'O','N','2526',1324,0,'2025-10-28','2026-01-27',1364,0,1324,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:29:00','0000-00-00','','','','N','09:29:00','11:10:47','','','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','09:29:30',0,'','reception','2025-10-28 09:29:30','darshan','2025-10-28 11:10:47'),(1665,0,0,'O','N','2526',1325,0,'2025-10-28','2026-01-27',1365,0,1325,'N','','N','','','','','N','D02','','N',90,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:40:00','0000-00-00','','','','N','09:40:00','19:24:57','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','3','09:40:57',0,'','reception','2025-10-28 09:40:57','drpratapsinh','2025-10-28 19:24:57'),(1666,0,0,'O','N','2526',1326,0,'2025-10-28','2026-01-27',1366,0,1326,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:44:00','0000-00-00','','','','N','09:44:00','13:56:49','','N','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','09:44:40',0,'','reception','2025-10-28 09:44:39','darshan','2025-10-28 13:56:49'),(1667,0,0,'O','N','2526',1327,0,'2025-10-28','2026-01-27',1367,0,1327,'N','','N','','','NV','','N','D06','','N',92,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:49:00','0000-00-00','','','','N','09:49:00','13:12:59','','N','N','Y',NULL,'O','N','E02','','0000-00-00 00:00:00','2','09:49:43',0,'','reception','2025-10-28 09:49:43','darshan','2025-10-28 13:12:59'),(1668,0,0,'O','N','2526',1328,0,'2025-10-28','2026-01-27',1368,0,1328,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:04:00','0000-00-00','','','','N','10:04:00','12:04:43','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','4','10:04:40',0,'','reception','2025-10-28 10:04:40','drarchit','2025-10-28 12:04:42'),(1669,0,0,'O','N','2526',1329,0,'2025-10-28','2026-01-27',1369,0,1329,'N','','N','','','NC','','N','D02','','N',93,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:07:00','0000-00-00','','','','N','10:07:00','19:32:35','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','3','10:07:47',0,'','drashti','2025-10-28 10:07:47','drpratapsinh','2025-10-28 19:32:35'),(1670,0,0,'O','N','2526',1330,0,'2025-10-28','2026-01-27',1370,0,1330,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:08:00','0000-00-00','','','','N','10:08:00','11:22:29','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','5','10:08:53',0,'','janvi','2025-10-28 10:08:53','drjayant','2025-10-28 11:22:29'),(1671,0,0,'O','N','2526',1331,0,'2025-10-28','2026-01-27',1371,0,1331,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:21:00','0000-00-00','','','','N','10:21:00','11:46:44','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','4','10:21:15',0,'','janvi','2025-10-28 10:21:15','drarchit','2025-10-28 11:46:44'),(1672,0,0,'O','N','2526',1332,0,'2025-10-28','2026-01-27',1372,0,1332,'N','','N','','','','','N','D02','','N',95,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:26:00','0000-00-00','','','','N','10:26:00','19:33:22','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','3','10:26:58',0,'','reception','2025-10-28 10:26:58','drpratapsinh','2025-10-28 19:33:22'),(1673,0,0,'O','N','2526',1333,0,'2025-10-28','2026-01-27',1373,0,1333,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:30:00','0000-00-00','','','','N','10:30:00','19:44:41','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','3','10:30:13',0,'','janvi','2025-10-28 10:30:13','drpratapsinh','2025-10-28 19:44:41'),(1674,0,0,'O','N','2526',1334,0,'2025-10-28','2026-01-27',1374,0,1334,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','11:36:06','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','4','10:44:09',0,'','janvi','2025-10-28 10:44:09','drarchit','2025-10-28 11:36:06'),(1675,0,0,'O','N','2526',1335,0,'2025-10-28','2026-01-27',1375,0,1335,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','13:56:35','','N','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','2','10:48:10',0,'','reception','2025-10-28 10:48:10','darshan','2025-10-28 13:56:35'),(1676,0,0,'O','N','2526',1336,0,'2025-10-28','2026-01-27',1376,0,1336,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','11:32:26','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','5','10:57:13',0,'','drashti','2025-10-28 10:57:13','drjayant','2025-10-28 11:32:26'),(1677,0,0,'O','N','2526',1337,0,'2025-10-28','2026-01-27',1377,0,1337,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','18:24:00','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','4','10:57:28',0,'','janvi','2025-10-28 10:57:28','drarchit','2025-10-28 18:24:00'),(1678,0,0,'O','N','2526',43,0,'2025-10-28','0000-00-00',47,0,43,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:00:00','0000-00-00','','','','N','11:00:00','12:04:32','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','4','11:00:18',0,'','janvi','2025-10-28 11:00:18','drarchit','2025-10-28 12:04:32'),(1679,0,0,'O','N','2526',479,0,'2025-10-28','0000-00-00',505,0,479,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','11:22:03','','','N','Y',NULL,'O','O','Z10','','0000-00-00 00:00:00','6','11:01:08',0,'','manshi','2025-10-28 11:01:08','drsagar','2025-10-28 11:22:03'),(1680,0,0,'O','N','2526',1338,0,'2025-10-28','2026-01-27',1378,0,1338,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','11:27:18','','','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','2','11:01:39',0,'','reception','2025-10-28 11:01:39','darshan','2025-10-28 11:27:18'),(1681,0,0,'O','N','2526',1339,0,'2025-10-28','2026-01-27',1379,0,1339,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','12:14:35','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','4','11:04:49',0,'','drashti','2025-10-28 11:04:49','drarchit','2025-10-28 12:14:35'),(1682,0,0,'O','N','2526',916,0,'2025-10-28','0000-00-00',947,0,916,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','18:13:09','','','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','4','11:05:44',0,'','drashti','2025-10-28 11:05:44','drarchit','2025-10-28 18:13:09'),(1683,0,0,'O','N','2526',521,0,'2025-10-28','0000-00-00',547,0,521,'N','','N','','','FOLLOWUP V','','N','D06','','N',48,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','11:39:58','','','N','Y',NULL,'O','O','G05','','0000-00-00 00:00:00','2','11:09:51',0,'','reception','2025-10-28 11:09:51','darshan','2025-10-28 11:39:58'),(1684,0,0,'O','N','2526',1340,0,'2025-10-28','2026-01-27',1380,0,1340,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','11:43:50','','','N','Y',NULL,'O','N','G06','','0000-00-00 00:00:00','2','11:11:55',0,'','reception','2025-10-28 11:11:55','darshan','2025-10-28 11:43:50'),(1685,0,0,'O','N','2526',1341,0,'2025-10-28','2026-01-27',1381,0,1341,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','11:26:50','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','6','11:15:19',0,'','manshi','2025-10-28 11:15:19','drsagar','2025-10-28 11:26:50'),(1686,0,0,'O','N','2526',1342,0,'2025-10-28','2026-01-27',1382,0,1342,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:22:00','0000-00-00','','','','N','11:22:00','11:54:23','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','2','11:22:40',0,'','reception','2025-10-28 11:22:40','darshan','2025-10-28 11:54:23'),(1687,0,0,'O','N','2526',1203,0,'2025-10-28','0000-00-00',1242,0,1203,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','19:44:53','','','N','Y',NULL,'O','O','Z15','','0000-00-00 00:00:00','3','11:23:21',0,'','janvi','2025-10-28 11:23:21','drpratapsinh','2025-10-28 19:44:53'),(1688,0,0,'O','N','2526',1343,0,'2025-10-28','2026-01-27',1383,0,1343,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','16:51:14','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','3','11:26:30',0,'','janvi','2025-10-28 11:26:30','drpratapsinh','2025-12-04 16:51:13'),(1689,0,0,'O','N','2526',1344,0,'2025-10-28','2026-01-27',1384,0,1344,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','11:40:29','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','5','11:26:39',0,'','drashti','2025-10-28 11:26:39','drjayant','2025-10-28 11:40:29'),(1690,0,0,'O','N','2526',1345,0,'2025-10-28','2026-01-27',1385,0,1345,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','12:15:15','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','4','11:28:52',0,'','drashti','2025-10-28 11:28:52','drarchit','2025-10-28 12:15:15'),(1691,0,0,'O','N','2526',1346,0,'2025-10-28','2026-01-27',1386,0,1346,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','11:57:21','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','11:29:41',0,'','reception','2025-10-28 11:29:41','darshan','2025-10-28 11:57:21'),(1692,0,0,'O','N','2526',1347,0,'2025-10-28','2026-01-27',1387,0,1347,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','12:23:08','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','4','11:31:08',0,'','drashti','2025-10-28 11:31:08','drarchit','2025-10-28 12:23:07'),(1693,0,0,'O','N','2526',1348,0,'2025-10-28','2026-01-27',1388,0,1348,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','14:15:08','','N','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','11:32:07',0,'','reception','2025-10-28 11:32:06','darshan','2025-10-28 14:15:08'),(1694,0,0,'O','N','2526',1162,0,'2025-10-28','0000-00-00',1201,0,1162,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','19:48:26','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','3','11:32:38',0,'','janvi','2025-10-28 11:32:38','drpratapsinh','2025-10-28 19:48:26'),(1695,0,0,'O','N','2526',1349,0,'2025-10-28','2026-01-27',1389,0,1349,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','12:03:48','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','2','11:35:50',0,'','reception','2025-10-28 11:35:50','darshan','2025-10-28 12:03:48'),(1696,0,0,'O','N','2526',1350,0,'2025-10-28','2026-01-27',1390,0,1350,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:37:00','0000-00-00','','','','N','11:37:00','12:09:37','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','11:37:55',0,'','reception','2025-10-28 11:37:55','darshan','2025-10-28 12:09:37'),(1697,0,0,'O','N','2526',1351,0,'2025-10-28','2026-01-27',1391,0,1351,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','12:14:34','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','2','11:39:58',0,'','reception','2025-10-28 11:39:58','darshan','2025-10-28 12:14:34'),(1698,0,0,'O','N','2526',1352,0,'2025-10-28','2026-01-27',1392,0,1352,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','12:43:31','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','4','11:41:36',0,'','drashti','2025-10-28 11:41:36','drarchit','2025-10-28 12:43:31'),(1699,0,0,'O','N','2526',1353,0,'2025-10-28','2026-01-27',1393,0,1353,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','14:22:54','','N','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','11:50:24',0,'','reception','2025-10-28 11:50:24','darshan','2025-10-28 14:22:54'),(1700,0,0,'I','N','2526',1307,103,'2025-10-28','2026-01-27',1346,0,1307,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','2025-10-30','','1','mo','N','11:45:00','11:50:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-28 11:51:11','mo','2025-10-30 12:39:20'),(1701,0,0,'O','N','2526',1354,0,'2025-10-28','2026-01-27',1394,0,1354,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','12:28:49','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','4','11:51:20',0,'','janvi','2025-10-28 11:51:20','drarchit','2025-10-28 12:28:49'),(1702,0,0,'O','N','2526',1355,0,'2025-10-28','2026-01-27',1395,0,1355,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:53:00','0000-00-00','','','','N','11:53:00','13:11:51','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','4','11:53:13',0,'','drashti','2025-10-28 11:53:13','drarchit','2025-10-28 13:11:51'),(1703,0,0,'O','N','2526',1356,0,'2025-10-28','2026-01-27',1396,0,1356,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','14:31:16','','N','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','2','11:58:47',0,'','reception','2025-10-28 11:58:47','darshan','2025-10-28 14:31:16'),(1704,0,0,'O','N','2526',594,0,'2025-10-28','0000-00-00',624,0,594,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:04:00','0000-00-00','','','','N','12:04:00','18:12:58','','','N','Y',NULL,'O','O','Z23','','0000-00-00 00:00:00','4','12:04:42',0,'','drashti','2025-10-28 12:04:42','drarchit','2025-10-28 18:12:58'),(1705,0,0,'O','N','2526',714,0,'2025-10-28','0000-00-00',745,0,714,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','12:37:38','','','N','Y',NULL,'O','O','Z24','','0000-00-00 00:00:00','4','12:06:12',0,'','janvi','2025-10-28 12:06:12','drarchit','2025-10-28 12:37:38'),(1706,0,0,'O','N','2526',1357,0,'2025-10-28','2026-01-27',1397,0,1357,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:14:00','0000-00-00','','','','N','12:14:00','12:41:52','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','12:14:21',0,'','reception','2025-10-28 12:14:21','darshan','2025-10-28 12:41:52'),(1707,0,0,'O','N','2526',1358,0,'2025-10-28','2026-01-27',1398,0,1358,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:17:00','0000-00-00','','','','N','12:17:00','00:00:00','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','3','12:17:36',0,'','drashti','2025-10-28 12:17:36','','0000-00-00 00:00:00'),(1708,0,0,'O','N','2526',1359,0,'2025-10-28','2026-01-27',1399,0,1359,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','12:52:06','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','6','12:21:56',0,'','manshi','2025-10-28 12:21:56','drsagar','2025-10-28 12:52:06'),(1709,0,0,'O','N','2526',1360,0,'2025-10-28','2026-01-27',1400,0,1360,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:26:00','0000-00-00','','','','N','12:26:00','18:12:32','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','4','12:26:07',0,'','drashti','2025-10-28 12:26:07','drarchit','2025-10-28 18:12:32'),(1710,0,0,'O','N','2526',1361,0,'2025-10-28','2026-01-27',1401,0,1361,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','12:45:20','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','2','12:28:27',0,'','reception','2025-10-28 12:28:27','darshan','2025-10-28 12:45:20'),(1711,0,0,'I','N','2526',1343,104,'2025-10-28','2026-01-27',1383,0,1343,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','2025-11-04','','1','mo','N','12:30:00','17:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-28 12:28:35','mo','2025-11-04 17:56:00'),(1712,0,0,'O','N','2526',1362,0,'2025-10-28','2026-01-27',1402,0,1362,'N','','N','','','NV','','N','D06','','N',96,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:31:00','0000-00-00','','','','N','12:31:00','13:09:37','','Y','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','2','12:31:27',0,'','reception','2025-10-28 12:31:27','darshan','2025-10-29 10:56:59'),(1713,0,0,'O','N','2526',1363,0,'2025-10-28','2026-01-27',1403,0,1363,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:32:00','0000-00-00','','','','N','12:32:00','18:12:49','','','N','Y',NULL,'O','N','J04','','0000-00-00 00:00:00','4','12:32:16',0,'','drashti','2025-10-28 12:32:16','drarchit','2025-10-28 18:12:49'),(1714,0,0,'O','N','2526',1364,0,'2025-10-28','2026-01-27',1404,0,1364,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','13:12:32','','','N','Y',NULL,'O','N','J05','','0000-00-00 00:00:00','2','12:35:53',0,'','reception','2025-10-28 12:35:53','darshan','2025-10-28 13:12:32'),(1715,0,0,'O','N','2526',1365,0,'2025-10-28','2026-01-27',1405,0,1365,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:42:00','0000-00-00','','','','N','12:42:00','14:38:31','','N','N','Y',NULL,'O','N','J06','','0000-00-00 00:00:00','2','12:42:18',0,'','reception','2025-10-28 12:42:18','darshan','2025-10-28 14:38:31'),(1716,0,0,'O','N','2526',191,0,'2025-10-28','0000-00-00',204,0,191,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:44:00','0000-00-00','','','','N','12:44:00','13:11:37','','','N','Y',NULL,'O','O','J07','','0000-00-00 00:00:00','4','12:44:36',0,'','janvi','2025-10-28 12:44:36','drarchit','2025-10-28 13:11:37'),(1717,0,0,'O','N','2526',1366,0,'2025-10-28','2026-01-27',1406,0,1366,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:51:00','0000-00-00','','','','N','12:51:00','13:33:41','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','4','12:51:58',0,'','drashti','2025-10-28 12:51:58','drarchit','2025-10-28 13:33:41'),(1718,0,0,'O','N','2526',221,0,'2025-10-28','0000-00-00',234,0,221,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:59:00','0000-00-00','','','','N','12:59:00','19:48:41','','','N','Y',NULL,'O','O','Z31','','0000-00-00 00:00:00','3','12:59:27',0,'','drashti','2025-10-28 12:59:27','drpratapsinh','2025-10-28 19:48:41'),(1719,0,0,'O','N','2526',118,0,'2025-10-28','0000-00-00',129,0,118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:01:00','0000-00-00','','','','N','13:01:00','20:03:43','','','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','3','13:01:55',0,'','janvi','2025-10-28 13:01:55','drpratapsinh','2025-10-28 20:03:43'),(1720,0,0,'O','N','2526',1367,0,'2025-10-28','2026-01-27',1407,0,1367,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:08:00','0000-00-00','','','','N','13:08:00','14:58:31','','N','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','2','13:08:34',0,'','reception','2025-10-28 13:08:34','darshan','2025-10-28 14:58:31'),(1721,0,0,'O','N','2526',1368,0,'2025-10-28','2026-01-27',1408,0,1368,'N','','N','','','NC','','N','D02','','N',70,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:11:00','0000-00-00','','','','N','13:11:00','19:23:54','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','3','13:11:16',0,'','drashti','2025-10-28 13:11:15','drpratapsinh','2025-10-28 19:23:54'),(1722,0,0,'O','N','2526',1369,0,'2025-10-28','2026-01-27',1409,0,1369,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:12:00','0000-00-00','','','','N','13:12:00','14:09:19','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','2','13:12:12',0,'','reception','2025-10-28 13:12:12','darshan','2025-10-28 14:09:19'),(1723,0,0,'I','N','2526',1368,105,'2025-10-28','2026-01-27',1408,0,1368,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:50:00','2025-11-03','','1','mo','N','13:50:00','12:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-28 13:48:54','mo','2025-11-03 13:15:47'),(1724,0,0,'I','N','2526',0,106,'2025-10-28','2026-01-27',1410,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:00:00','2025-10-29','','1','mo','N','14:00:00','14:40:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-28 14:05:20','mo','2025-10-29 14:46:40'),(1725,0,0,'O','N','2526',1288,0,'2025-10-28','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:09:00','0000-00-00','','','','N','14:09:00','19:55:47','','','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','3','14:09:36',0,'','drashti','2025-10-28 14:09:36','drpratapsinh','2025-10-28 19:55:47'),(1726,0,0,'O','N','2526',1370,0,'2025-10-28','2026-01-27',1411,0,1370,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:33:00','0000-00-00','','','','N','14:33:00','20:00:23','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','3','14:33:13',0,'','drashti','2025-10-28 14:33:13','drpratapsinh','2025-10-28 20:00:23'),(1727,0,0,'I','N','2526',1363,107,'2025-10-28','2026-01-27',1403,0,1363,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:26:00','2025-11-01','','1','mo','N','15:26:00','13:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-28 15:29:16','vishal','2025-11-01 13:02:51'),(1728,0,0,'O','N','2526',1371,0,'2025-10-28','2026-01-27',1412,0,1371,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:51:00','0000-00-00','','','','N','16:51:00','18:54:25','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:51:12',0,'','reception','2025-10-28 16:51:12','darshan','2025-10-28 18:54:25'),(1729,0,0,'O','N','2526',1372,0,'2025-10-28','2026-01-27',1413,0,1372,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:08:00','0000-00-00','','','','N','17:08:00','17:28:04','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','17:08:13',0,'','reception','2025-10-28 17:08:13','darshan','2025-10-28 17:28:04'),(1730,0,0,'O','N','2526',1373,0,'2025-10-28','2026-01-27',1414,0,1373,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:15:00','0000-00-00','','','','N','17:15:00','17:33:38','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','17:15:19',0,'','reception','2025-10-28 17:15:19','darshan','2025-10-28 17:33:38'),(1731,0,0,'O','N','2526',1374,0,'2025-10-28','2026-01-27',1415,0,1374,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:25:00','0000-00-00','','','','N','17:25:00','17:45:28','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:26:01',0,'','reception','2025-10-28 17:26:01','darshan','2025-10-28 17:45:28'),(1732,0,0,'O','N','2526',1375,0,'2025-10-28','2026-01-27',1416,0,1375,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:33:00','0000-00-00','','','','N','17:33:00','18:50:11','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','4','17:33:07',0,'','drashti','2025-10-28 17:33:07','drarchit','2025-10-28 18:50:11'),(1733,0,0,'O','N','2526',1376,0,'2025-10-28','2026-01-27',1417,0,1376,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:35:00','0000-00-00','','','','N','17:35:00','17:54:54','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:35:58',0,'','reception','2025-10-28 17:35:58','darshan','2025-10-28 17:54:54'),(1734,0,0,'O','N','2526',1377,0,'2025-10-28','2026-01-27',1418,0,1377,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:37:00','0000-00-00','','','','N','17:37:00','17:56:15','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','5','17:46:24',0,'','drashti','2025-10-28 17:37:21','drjayant','2025-10-28 17:56:15'),(1735,0,0,'O','N','2526',1378,0,'2025-10-28','2026-01-27',1419,0,1378,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:38:00','0000-00-00','','','','N','17:38:00','18:07:52','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:38:35',0,'','reception','2025-10-28 17:38:35','darshan','2025-10-28 18:07:52'),(1736,0,0,'O','N','2526',1379,0,'2025-10-28','2026-01-27',1420,0,1379,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','18:10:28','','','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:40:35',0,'','reception','2025-10-28 17:40:35','darshan','2025-10-28 18:10:28'),(1737,0,0,'O','N','2526',1380,0,'2025-10-28','2026-01-27',1421,0,1380,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:47:00','0000-00-00','','','','N','17:47:00','18:41:39','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','4','17:47:32',0,'','drashti','2025-10-28 17:47:32','drarchit','2025-10-28 18:41:39'),(1738,0,0,'O','N','2526',1381,0,'2025-10-28','2026-01-27',1422,0,1381,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','18:56:08','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','4','17:50:41',0,'','janvi','2025-10-28 17:50:41','drarchit','2025-10-28 18:56:08'),(1739,0,0,'O','N','2526',1382,0,'2025-10-28','2026-01-27',1423,0,1382,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','18:31:57','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','4','17:50:44',0,'','drashti','2025-10-28 17:50:44','drarchit','2025-10-28 18:31:57'),(1740,0,0,'O','N','2526',1383,0,'2025-10-28','2026-01-27',1424,0,1383,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','18:16:31','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','2','17:50:59',0,'','reception','2025-10-28 17:50:59','darshan','2025-10-28 18:16:31'),(1741,0,0,'O','N','2526',1384,0,'2025-10-28','2026-01-27',1425,0,1384,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','18:12:18','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','5','17:52:17',0,'','janvi','2025-10-28 17:52:17','drjayant','2025-10-28 18:12:18'),(1742,0,0,'O','N','2526',1385,0,'2025-10-28','2026-01-27',1426,0,1385,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:53:00','0000-00-00','','','','N','17:53:00','18:26:02','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','5','17:53:29',0,'','janvi','2025-10-28 17:53:29','drjayant','2025-10-28 18:26:02'),(1743,0,0,'O','N','2526',1386,0,'2025-10-28','2026-01-27',1427,0,1386,'N','','N','','','RFE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:53:00','0000-00-00','','','','N','17:53:00','18:19:32','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','2','17:53:29',0,'','reception','2025-10-28 17:53:29','darshan','2025-10-28 18:19:32'),(1744,0,0,'O','N','2526',1387,0,'2025-10-28','2026-01-27',1428,0,1387,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:55:00','0000-00-00','','','','N','17:55:00','18:35:06','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','2','17:55:25',0,'','reception','2025-10-28 17:55:25','darshan','2025-10-28 18:35:06'),(1745,0,0,'O','N','2526',1388,0,'2025-10-28','2026-01-27',393,0,1388,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','18:25:30','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','5','17:57:16',0,'','drashti','2025-10-28 17:57:16','drjayant','2025-10-28 18:25:30'),(1746,0,0,'O','N','2526',1389,0,'2025-10-28','2026-01-27',1429,0,1389,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','18:24:06','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','18:02:34',0,'','reception','2025-10-28 18:02:34','darshan','2025-10-28 18:24:06'),(1747,0,0,'O','N','2526',1390,0,'2025-10-28','2026-01-27',1430,0,1390,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','18:19:09','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','6','18:02:41',0,'','manshi','2025-10-28 18:02:41','drsagar','2025-10-28 18:19:09'),(1748,0,0,'O','N','2526',1391,0,'2025-10-28','2026-01-27',1431,0,1391,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','19:34:20','','N','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','2','18:04:16',0,'','reception','2025-10-28 18:04:16','darshan','2025-10-28 19:34:20'),(1749,0,0,'O','N','2526',1392,0,'2025-10-28','2026-01-27',1432,0,1392,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','19:18:18','','','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','4','18:04:27',0,'','drashti','2025-10-28 18:04:27','drarchit','2025-10-28 19:18:18'),(1750,0,0,'O','N','2526',597,0,'2025-10-28','0000-00-00',627,0,597,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:06:00','0000-00-00','','','','N','18:06:00','18:51:36','','','N','Y',NULL,'O','O','L12','','0000-00-00 00:00:00','2','18:06:27',0,'','reception','2025-10-28 18:06:27','darshan','2025-10-28 18:51:36'),(1751,0,0,'O','N','2526',464,0,'2025-10-28','0000-00-00',490,0,464,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','18:48:19','','','N','Y',NULL,'O','O','Z48','','0000-00-00 00:00:00','7','18:10:32',0,'','manshi','2025-10-28 18:10:32','drridham','2025-10-28 18:48:19'),(1752,0,0,'O','N','2526',1393,0,'2025-10-28','2026-01-27',1433,0,1393,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:13:00','0000-00-00','','','','N','18:13:00','19:09:10','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','4','18:13:46',0,'','drashti','2025-10-28 18:13:46','drarchit','2025-10-28 19:09:10'),(1753,0,0,'O','N','2526',1394,0,'2025-10-28','2026-01-27',1434,0,1394,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','19:03:51','','','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','4','18:15:39',0,'','drashti','2025-10-28 18:15:39','drarchit','2025-10-28 19:03:51'),(1754,0,0,'O','N','2526',1395,0,'2025-10-28','2026-01-27',1435,0,1395,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','18:48:27','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','7','18:15:47',0,'','manshi','2025-10-28 18:15:47','drridham','2025-10-28 18:48:27'),(1755,0,0,'O','N','2526',431,0,'2025-10-28','0000-00-00',454,0,431,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','20:00:38','','','N','Y',NULL,'O','O','Z50','','0000-00-00 00:00:00','3','18:16:14',0,'','janvi','2025-10-28 18:16:14','drpratapsinh','2025-10-28 20:00:38'),(1756,0,0,'O','N','2526',1396,0,'2025-10-28','2026-01-27',1436,0,1396,'N','','N','','','RFV','','N','D06','','N',97,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','19:08:56','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','2','18:18:50',0,'','reception','2025-10-28 18:18:50','darshan','2025-10-28 19:08:56'),(1757,0,0,'O','N','2526',1397,0,'2025-10-28','2026-01-27',1437,0,1397,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','19:20:44','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','2','18:23:20',0,'','reception','2025-10-28 18:23:20','darshan','2025-10-28 19:20:44'),(1758,0,0,'O','N','2526',941,0,'2025-10-28','0000-00-00',972,0,941,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','19:00:01','','','N','Y',NULL,'O','O','Z53','','0000-00-00 00:00:00','6','18:24:13',0,'','manshi','2025-10-28 18:24:13','drsagar','2025-10-28 19:00:01'),(1759,0,0,'O','N','2526',1398,0,'2025-10-28','2026-01-27',1438,0,1398,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:27:00','0000-00-00','','','','N','18:27:00','00:00:00','','','N','N',NULL,'O','N','Z54','','0000-00-00 00:00:00','4','18:27:14',0,'','drashti','2025-10-28 18:27:14','','0000-00-00 00:00:00'),(1760,0,0,'O','N','2526',1399,0,'2025-10-28','2026-01-27',1439,0,1399,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','18:33:31','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','5','18:28:44',0,'','drashti','2025-10-28 18:28:44','drjayant','2025-10-28 18:33:31'),(1761,0,0,'O','N','2526',1400,0,'2025-10-28','2026-01-27',1440,0,1400,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','19:21:32','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','4','18:33:35',0,'','drashti','2025-10-28 18:33:35','drarchit','2025-10-28 19:21:32'),(1762,0,0,'O','N','2526',1401,0,'2025-10-28','2026-01-27',1441,0,1401,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','18:48:34','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','7','18:36:13',0,'','manshi','2025-10-28 18:36:13','drridham','2025-10-28 18:48:34'),(1763,0,0,'O','N','2526',1402,0,'2025-10-28','2026-01-27',1442,0,1402,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:42:00','0000-00-00','','','','N','18:42:00','18:57:39','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','5','18:42:23',0,'','drashti','2025-10-28 18:42:23','drjayant','2025-10-28 18:57:39'),(1764,0,0,'O','N','2526',1403,0,'2025-10-28','2026-01-27',1443,0,1403,'N','','N','','','NC','','N','D02','','N',98,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','19:58:27','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','3','18:44:58',0,'','drashti','2025-10-28 18:44:58','drpratapsinh','2025-10-28 19:58:27'),(1765,0,0,'O','N','2526',252,0,'2025-10-28','0000-00-00',267,0,252,'N','','N','','','FC','','N','D27','','N',24,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:45:00','0000-00-00','','','','N','18:45:00','19:41:15','','','N','Y',NULL,'O','O','Z60','','0000-00-00 00:00:00','4','18:45:10',0,'','janvi','2025-10-28 18:45:09','drarchit','2025-10-28 19:41:15'),(1766,0,0,'O','N','2526',1404,0,'2025-10-28','2026-01-27',1444,0,1404,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:50:00','0000-00-00','','','','N','18:50:00','19:29:53','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','18:50:46',0,'','janvi','2025-10-28 18:50:46','drarchit','2025-10-28 19:29:53'),(1767,0,0,'O','N','2526',1079,0,'2025-10-28','0000-00-00',1119,0,1079,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:58:00','0000-00-00','','','','N','18:58:00','19:40:35','','','N','Y',NULL,'O','O','Z61','','0000-00-00 00:00:00','4','18:58:00',0,'','drashti','2025-10-28 18:58:00','drarchit','2025-10-28 19:40:35'),(1768,0,0,'O','N','2526',1405,0,'2025-10-28','2026-01-27',1445,0,1405,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:58:00','0000-00-00','','','','N','18:58:00','19:11:11','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','5','18:58:28',0,'','janvi','2025-10-28 18:58:28','drjayant','2025-10-28 19:11:11'),(1769,0,0,'O','N','2526',1406,0,'2025-10-28','2026-01-27',1446,0,1406,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:00:00','0000-00-00','','','','N','19:00:00','19:52:28','','N','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','4','19:00:29',0,'','drashti','2025-10-28 19:00:29','drarchit','2025-10-28 19:52:28'),(1770,0,0,'O','N','2526',1407,0,'2025-10-28','2026-01-27',1447,0,1407,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:05:00','0000-00-00','','','','N','19:05:00','19:06:24','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','6','19:05:14',0,'','manshi','2025-10-28 19:05:14','drsagar','2025-10-28 19:06:24'),(1771,0,0,'O','N','2526',1408,0,'2025-10-28','2026-01-27',1448,0,1408,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:12:00','0000-00-00','','','','N','19:12:00','19:37:33','','','N','Y',NULL,'O','N','L17','','0000-00-00 00:00:00','2','19:12:12',0,'','janvi','2025-10-28 19:12:12','darshan','2025-10-28 19:37:33'),(1772,0,0,'O','N','2526',1409,0,'2025-10-28','2026-01-27',1449,0,1409,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:17:00','0000-00-00','','','','N','19:17:00','19:42:50','','','N','Y',NULL,'O','N','L18','','0000-00-00 00:00:00','2','19:17:00',0,'','drashti','2025-10-28 19:17:00','darshan','2025-10-28 19:42:50'),(1773,0,0,'O','N','2526',240,0,'2025-10-28','0000-00-00',255,0,240,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:36:00','0000-00-00','','','','N','19:36:00','19:50:33','','','N','Y',NULL,'O','O','L19','','0000-00-00 00:00:00','4','19:36:30',0,'','drashti','2025-10-28 19:36:30','drarchit','2025-10-28 19:50:33'),(1774,0,0,'O','N','2526',575,0,'2025-10-28','0000-00-00',603,0,575,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:44:00','0000-00-00','','','','N','19:44:00','20:01:49','','','N','Y',NULL,'O','O','Z64','','0000-00-00 00:00:00','3','19:44:47',0,'','janvi','2025-10-28 19:44:47','drpratapsinh','2025-10-28 20:01:49'),(1775,0,0,'O','N','2526',1410,0,'2025-10-28','2026-01-27',1450,0,1410,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:45:00','0000-00-00','','','','N','19:45:00','19:57:26','','','N','Y',NULL,'O','N','L20','','0000-00-00 00:00:00','4','19:45:07',0,'','drashti','2025-10-28 19:45:07','drarchit','2025-10-28 19:57:26'),(1776,0,0,'O','N','2526',47,0,'2025-10-29','0000-00-00',53,0,47,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:52:00','0000-00-00','','','','N','08:52:00','00:00:00','','','N','N',NULL,'O','O','Z01','','0000-00-00 00:00:00','3','08:52:05',0,'','urvashi','2025-10-29 08:52:05','','0000-00-00 00:00:00'),(1777,0,0,'O','N','2526',1411,0,'2025-10-29','2026-01-28',1451,0,1411,'N','','N','','','EMR','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:53:00','0000-00-00','','','','N','08:53:00','19:16:10','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','08:53:32',0,'','urvashi','2025-10-29 08:53:32','drarchit','2025-10-29 19:16:10'),(1778,0,0,'O','N','2526',1412,0,'2025-10-29','2026-01-28',1452,0,1412,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:55:00','0000-00-00','','','','N','08:55:00','00:00:00','','','N','N',NULL,'O','N','Z03','','0000-00-00 00:00:00','3','08:55:55',0,'','urvashi','2025-10-29 08:55:55','','0000-00-00 00:00:00'),(1779,0,0,'O','N','2526',1413,0,'2025-10-29','2026-01-28',1453,0,1413,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:57:00','0000-00-00','','','','N','08:57:00','11:06:17','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','5','08:57:40',0,'','urvashi','2025-10-29 08:57:40','drjayant','2025-10-29 11:06:17'),(1780,0,0,'O','N','2526',1414,0,'2025-10-29','2026-01-28',1454,0,1414,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:00:00','0000-00-00','','','','N','09:00:00','19:06:29','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','4','09:00:11',0,'','urvashi','2025-10-29 09:00:11','drarchit','2025-10-29 19:06:29'),(1781,0,0,'O','N','2526',1415,0,'2025-10-29','2026-01-28',1455,0,1415,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:03:00','0000-00-00','','','','N','09:03:00','19:06:37','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','4','09:03:01',0,'','urvashi','2025-10-29 09:03:01','drarchit','2025-10-29 19:06:37'),(1782,0,0,'I','N','2526',0,108,'2025-10-29','2026-01-28',1456,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','06:30:00','2025-11-01','','1','mo','N','06:30:00','11:20:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-29 09:40:51','mo','2025-11-01 12:20:49'),(1783,0,0,'O','N','2526',880,0,'2025-10-29','0000-00-00',912,0,880,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:41:00','0000-00-00','','','','N','09:41:00','14:12:00','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','2','09:51:40',0,'','drashti','2025-10-29 09:51:40','darshan','2025-10-29 14:12:00'),(1784,0,0,'O','N','2526',1416,0,'2025-10-29','2026-01-28',1457,0,1416,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:05:00','0000-00-00','','','','N','10:05:00','11:00:07','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','10:05:12',0,'','reception','2025-10-29 10:05:12','darshan','2025-10-29 11:00:07'),(1785,0,0,'O','N','2526',1417,0,'2025-10-29','2026-01-28',1458,0,1417,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:05:00','0000-00-00','','','','N','10:05:00','11:20:54','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','7','10:05:18',0,'','manshi','2025-10-29 10:05:18','drridham','2025-10-29 11:20:54'),(1786,0,0,'O','N','2526',1418,0,'2025-10-29','2026-01-28',1459,0,1418,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:08:00','0000-00-00','','','','N','10:08:00','11:05:30','','','N','Y',NULL,'O','N','E02','','0000-00-00 00:00:00','2','10:08:32',0,'','reception','2025-10-29 10:08:32','darshan','2025-10-29 11:05:30'),(1787,0,0,'O','N','2526',1419,0,'2025-10-29','2026-01-28',1460,0,1419,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:13:00','0000-00-00','','','','N','10:13:00','11:29:41','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','2','10:13:07',0,'','reception','2025-10-29 10:13:07','darshan','2025-10-29 11:29:41'),(1788,0,0,'O','N','2526',1420,0,'2025-10-29','2026-01-28',1461,0,1420,'N','','N','','','NC','','N','D27','','N',99,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','18:15:59','','N','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','4','10:16:09',0,'','drashti','2025-10-29 10:16:09','drarchit','2025-10-29 18:15:59'),(1789,0,0,'O','N','2526',1421,0,'2025-10-29','2026-01-28',1462,0,1421,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:19:00','0000-00-00','','','','N','10:19:00','11:37:47','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:19:25',0,'','reception','2025-10-29 10:19:25','darshan','2025-10-29 11:37:47'),(1790,0,0,'O','N','2526',607,0,'2025-10-29','0000-00-00',637,0,607,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:21:00','0000-00-00','','','','N','10:21:00','11:20:06','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','2','10:21:52',0,'','reception','2025-10-29 10:21:52','darshan','2025-10-29 11:20:06'),(1791,0,0,'O','N','2526',1422,0,'2025-10-29','2026-01-28',1463,0,1422,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:22:00','0000-00-00','','','','N','10:22:00','12:56:56','','N','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','4','10:22:35',0,'','drashti','2025-10-29 10:22:35','drarchit','2025-10-29 12:56:56'),(1792,0,0,'O','N','2526',1423,0,'2025-10-29','2026-01-28',1464,0,1423,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:24:00','0000-00-00','','','','N','10:24:00','10:33:24','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','3','10:24:44',0,'','janvi','2025-10-29 10:24:44','drpratapsinh','2025-10-29 10:33:24'),(1793,0,0,'O','N','2526',1424,0,'2025-10-29','2026-01-28',1465,0,1424,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','13:05:11','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','4','10:39:32',0,'','janvi','2025-10-29 10:39:32','drarchit','2025-10-29 13:05:11'),(1794,0,0,'O','N','2526',1362,0,'2025-10-29','0000-00-00',1402,0,1362,'N','','N','','','REPORTS','','N','D06','','N',96,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','13:10:23','','N','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','2','10:46:16',0,'','reception','2025-10-29 10:46:16','darshan','2025-10-29 13:10:23'),(1795,0,0,'O','N','2526',1125,0,'2025-10-29','0000-00-00',1095,0,1125,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:49:00','0000-00-00','','','','N','10:49:00','11:42:27','','','N','Y',NULL,'O','O','Z14','','0000-00-00 00:00:00','6','10:49:44',0,'','manshi','2025-10-29 10:49:44','drsagar','2025-10-29 11:42:27'),(1796,0,0,'O','N','2526',1425,0,'2025-10-29','2026-01-28',1466,0,1425,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:52:00','0000-00-00','','','','N','10:52:00','11:14:49','','','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:52:05',0,'','reception','2025-10-29 10:52:05','darshan','2025-10-29 11:14:49'),(1797,0,0,'O','N','2526',915,0,'2025-10-29','0000-00-00',946,0,915,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','11:09:32','','','N','Y',NULL,'O','O','Z15','','0000-00-00 00:00:00','3','10:53:42',0,'','drashti','2025-10-29 10:53:42','drpratapsinh','2025-10-29 11:09:32'),(1798,0,0,'O','N','2526',1426,0,'2025-10-29','2026-01-28',1467,0,1426,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','11:54:27','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','2','10:55:26',0,'','reception','2025-10-29 10:55:26','darshan','2025-10-29 11:54:27'),(1799,0,0,'O','N','2526',1427,0,'2025-10-29','2026-01-28',1468,0,1427,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','00:00:00','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','3','10:55:54',0,'','drashti','2025-10-29 10:55:54','','0000-00-00 00:00:00'),(1800,0,0,'O','N','2526',1428,0,'2025-10-29','2026-01-28',1469,0,1428,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','12:05:07','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','10:55:58',0,'','janvi','2025-10-29 10:55:58','darshan','2025-10-29 12:05:07'),(1801,0,0,'O','N','2526',1429,0,'2025-10-29','2026-01-28',1470,0,1429,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','12:09:59','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','10:57:10',0,'','reception','2025-10-29 10:57:10','darshan','2025-10-29 12:09:59'),(1802,0,0,'O','N','2526',1430,0,'2025-10-29','2026-01-28',1471,0,1430,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','11:33:55','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','4','10:59:09',0,'','drashti','2025-10-29 10:59:09','drarchit','2025-10-29 11:33:55'),(1803,0,0,'O','N','2526',1431,0,'2025-10-29','2026-01-28',1472,0,1431,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','11:14:23','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','5','11:01:53',0,'','janvi','2025-10-29 11:01:53','drjayant','2025-10-29 11:14:23'),(1804,0,0,'O','N','2526',1085,0,'2025-10-29','0000-00-00',714,0,1085,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','11:42:26','','','N','Y',NULL,'O','O','Z21','','0000-00-00 00:00:00','4','11:02:14',0,'','drashti','2025-10-29 11:02:14','drarchit','2025-10-29 11:42:26'),(1805,0,0,'O','N','2526',1432,0,'2025-10-29','2026-01-28',1473,0,1432,'N','','N','','','','','N','D14','','N',102,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','11:53:44','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','7','11:03:52',0,'','manshi','2025-10-29 11:03:52','drridham','2025-10-29 11:53:44'),(1806,0,0,'O','N','2526',1433,0,'2025-10-29','2026-01-28',1474,0,1433,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','12:07:08','Y','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','2','11:05:12',0,'','reception','2025-10-29 11:05:12','','0000-00-00 00:00:00'),(1807,0,0,'O','N','2526',400,0,'2025-10-29','0000-00-00',422,0,400,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','12:02:32','','N','N','Y',NULL,'O','O','H04','','0000-00-00 00:00:00','4','11:05:58',0,'','janvi','2025-10-29 11:05:58','drarchit','2025-10-29 12:02:32'),(1808,0,0,'O','N','2526',1434,0,'2025-10-29','2026-01-28',1475,0,1434,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','11:20:24','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','5','11:07:20',0,'','janvi','2025-10-29 11:07:20','drjayant','2025-10-29 11:20:24'),(1809,0,0,'O','N','2526',1435,0,'2025-10-29','2026-01-28',1476,0,1435,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','13:12:31','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','4','11:14:09',0,'','drashti','2025-10-29 11:14:09','drarchit','2025-10-29 13:12:31'),(1810,0,0,'O','N','2526',1436,0,'2025-10-29','2026-01-28',1477,0,1436,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','11:44:30','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','11:16:04',0,'','reception','2025-10-29 11:16:04','darshan','2025-10-29 11:44:30'),(1811,0,0,'O','N','2526',545,0,'2025-10-29','0000-00-00',571,0,545,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','11:42:13','','','N','Y',NULL,'O','O','Z26','','0000-00-00 00:00:00','6','11:17:49',0,'','manshi','2025-10-29 11:17:49','drsagar','2025-10-29 11:42:13'),(1812,0,0,'O','N','2526',1437,0,'2025-10-29','2026-01-28',1478,0,1437,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','12:11:51','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','5','11:24:06',0,'','janvi','2025-10-29 11:24:06','drjayant','2025-10-29 12:11:51'),(1813,0,0,'O','N','2526',1438,0,'2025-10-29','2026-01-28',1479,0,1438,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','14:08:15','','N','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','2','11:24:37',0,'','reception','2025-10-29 11:24:37','darshan','2025-10-29 14:08:15'),(1814,0,0,'O','N','2526',1439,0,'2025-10-29','2026-01-28',1480,0,1439,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','12:28:02','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','4','11:26:45',0,'','drashti','2025-10-29 11:26:45','drarchit','2025-10-29 12:28:02'),(1815,0,0,'O','N','2526',1440,0,'2025-10-29','2026-01-28',1481,0,1440,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','11:43:28','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','5','11:31:55',0,'','janvi','2025-10-29 11:31:55','drjayant','2025-10-29 11:43:28'),(1816,0,0,'O','N','2526',1441,0,'2025-10-29','2026-01-28',1482,0,1441,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','12:31:56','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','4','11:43:24',0,'','drashti','2025-10-29 11:43:24','drarchit','2025-10-29 12:31:56'),(1817,0,0,'O','N','2526',1442,0,'2025-10-29','2026-01-28',1483,0,1442,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','12:48:22','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','4','11:43:24',0,'','janvi','2025-10-29 11:43:24','drarchit','2025-10-29 12:48:22'),(1818,0,0,'O','N','2526',1443,0,'2025-10-29','2026-01-28',1484,0,1443,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','12:44:18','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','4','11:44:33',0,'','janvi','2025-10-29 11:44:33','drarchit','2025-10-29 12:44:18'),(1819,0,0,'O','N','2526',1444,0,'2025-10-29','2026-01-28',1485,0,1444,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','12:52:17','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','4','11:46:19',0,'','drashti','2025-10-29 11:46:19','drarchit','2025-10-29 12:52:17'),(1820,0,0,'O','N','2526',1445,0,'2025-10-29','2026-01-28',1486,0,1445,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','12:10:23','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','4','11:46:24',0,'','reception','2025-10-29 11:46:24','drarchit','2025-10-29 12:10:23'),(1821,0,0,'O','N','2526',1446,0,'2025-10-29','2026-01-28',1487,0,1446,'N','','N','','','FOC','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','11:51:50','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','7','11:46:46',0,'','manshi','2025-10-29 11:46:46','drridham','2025-10-29 11:51:50'),(1822,0,0,'O','N','2526',1447,0,'2025-10-29','2026-01-28',1488,0,1447,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','12:11:24','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','3','11:56:39',0,'','drashti','2025-10-29 11:56:39','drpratapsinh','2025-10-29 12:11:24'),(1823,0,0,'O','N','2526',1448,0,'2025-10-29','2026-01-28',1489,0,1448,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','18:35:09','','','N','Y',NULL,'O','N','H06','','0000-00-00 00:00:00','4','11:56:49',0,'','janvi','2025-10-29 11:56:49','drarchit','2025-10-29 18:35:09'),(1824,0,0,'O','N','2526',1449,0,'2025-10-29','2026-01-28',1490,0,1449,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:59:00','0000-00-00','','','','N','11:59:00','12:40:54','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:59:33',0,'','reception','2025-10-29 11:59:33','darshan','2025-10-29 12:40:54'),(1825,0,0,'O','N','2526',1450,0,'2025-10-29','2026-01-28',1491,0,1450,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:01:00','0000-00-00','','','','N','12:01:00','12:28:20','','N','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','4','12:02:32',0,'','drashti','2025-10-29 12:01:00','drarchit','2025-10-29 12:28:20'),(1826,0,0,'O','N','2526',1067,0,'2025-10-29','0000-00-00',1106,0,1067,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','12:11:43','','','N','Y',NULL,'O','O','Z38','','0000-00-00 00:00:00','3','12:06:26',0,'','janvi','2025-10-29 12:06:26','drpratapsinh','2025-10-29 12:11:43'),(1827,0,0,'O','N','2526',1451,0,'2025-10-29','2026-01-28',1492,0,1451,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:17:00','0000-00-00','','','','N','12:17:00','12:55:54','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','12:17:56',0,'','reception','2025-10-29 12:17:56','darshan','2025-10-29 12:55:54'),(1828,0,0,'O','N','2526',1452,0,'2025-10-29','2026-01-28',1493,0,1452,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','12:29:23','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','6','12:21:42',0,'','manshi','2025-10-29 12:21:42','drsagar','2025-10-29 12:29:23'),(1829,0,0,'O','N','2526',414,0,'2025-10-29','0000-00-00',436,0,414,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:22:00','0000-00-00','','','','N','12:22:00','12:47:25','','','N','Y',NULL,'O','O','Z40','','0000-00-00 00:00:00','6','12:22:29',0,'','manshi','2025-10-29 12:22:29','drsagar','2025-10-29 12:47:25'),(1830,0,0,'O','N','2526',1453,0,'2025-10-29','2026-01-28',1494,0,1453,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:22:00','0000-00-00','','','','N','12:22:00','12:46:56','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','5','12:22:47',0,'','janvi','2025-10-29 12:22:47','drjayant','2025-10-29 12:46:56'),(1831,0,0,'O','N','2526',1454,0,'2025-10-29','2026-01-28',1495,0,1454,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:31:00','0000-00-00','','','','N','12:31:00','18:06:15','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','4','12:31:43',0,'','drashti','2025-10-29 12:31:43','drarchit','2025-10-29 18:06:15'),(1832,0,0,'O','N','2526',1455,0,'2025-10-29','2026-01-28',1496,0,1455,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','13:22:15','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','4','12:35:01',0,'','drashti','2025-10-29 12:35:01','drarchit','2025-10-29 13:22:15'),(1833,0,0,'O','N','2526',1456,0,'2025-10-29','2026-01-28',1497,0,1456,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:39:00','0000-00-00','','','','N','12:39:00','12:55:10','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','6','12:39:24',0,'','manshi','2025-10-29 12:39:24','drsagar','2025-10-29 12:55:10'),(1834,0,0,'O','N','2526',1457,0,'2025-10-29','2026-01-28',1498,0,1457,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:41:00','0000-00-00','','','','N','12:41:00','13:02:22','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','12:41:18',0,'','reception','2025-10-29 12:41:18','darshan','2025-10-29 13:02:22'),(1835,0,0,'O','N','2526',1458,0,'2025-10-29','2026-01-28',1499,0,1458,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:43:00','0000-00-00','','','','N','12:43:00','13:35:23','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','2','12:43:09',0,'','reception','2025-10-29 12:43:09','darshan','2025-10-29 13:35:23'),(1836,0,0,'O','N','2526',1459,0,'2025-10-29','2026-01-28',1500,0,1459,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:56:00','0000-00-00','','','','N','12:56:00','13:56:49','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','2','12:56:52',0,'','reception','2025-10-29 12:56:52','darshan','2025-10-29 13:56:49'),(1837,0,0,'O','N','2526',1460,0,'2025-10-29','2026-01-28',1501,0,1460,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:07:00','0000-00-00','','','','N','13:07:00','14:15:24','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','13:07:20',0,'','reception','2025-10-29 13:07:20','darshan','2025-10-29 14:15:24'),(1838,0,0,'O','N','2526',1461,0,'2025-10-29','2026-01-28',1502,0,1461,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:18:00','0000-00-00','','','','N','13:18:00','13:34:49','','','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','4','13:18:12',0,'','janvi','2025-10-29 13:18:12','drarchit','2025-10-29 13:34:49'),(1839,0,0,'O','N','2526',1462,0,'2025-10-29','2026-01-28',1503,0,1462,'N','','N','','','EMR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:37:00','0000-00-00','','','','N','15:37:00','19:03:46','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','2','15:37:33',0,'','reception','2025-10-29 15:37:33','darshan','2025-10-29 19:03:46'),(1840,0,0,'O','N','2526',1463,0,'2025-10-29','2026-01-28',1504,0,1463,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:27:00','0000-00-00','','','','N','16:27:00','17:28:47','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','2','16:27:45',0,'','reception','2025-10-29 16:27:45','darshan','2025-10-29 17:28:47'),(1841,0,0,'O','N','2526',1464,0,'2025-10-29','2026-01-28',1505,0,1464,'N','','N','','','FV                ','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:34:00','0000-00-00','','','','N','16:34:00','17:41:04','','','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:34:30',0,'','reception','2025-10-29 16:34:30','darshan','2025-10-29 17:41:04'),(1842,0,0,'O','N','2526',1465,0,'2025-10-29','2026-01-28',1506,0,1465,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:38:00','0000-00-00','','','','N','16:38:00','17:27:22','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','2','16:38:31',0,'','reception','2025-10-29 16:38:31','darshan','2025-10-29 17:27:22'),(1843,0,0,'O','N','2526',1466,0,'2025-10-29','2026-01-28',1507,0,1466,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:44:00','0000-00-00','','','','N','16:44:00','17:34:34','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','2','16:44:12',0,'','reception','2025-10-29 16:44:12','darshan','2025-10-29 17:34:34'),(1844,0,0,'O','N','2526',1467,0,'2025-10-29','2026-01-28',1508,0,1467,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:48:00','0000-00-00','','','','N','16:48:00','17:34:56','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','2','16:48:44',0,'','reception','2025-10-29 16:48:44','darshan','2025-10-29 17:34:56'),(1845,0,0,'O','N','2526',1468,0,'2025-10-29','2026-01-28',1509,0,1468,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:09:00','0000-00-00','','','','N','17:09:00','19:20:30','','N','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','17:09:31',0,'','reception','2025-10-29 17:09:31','darshan','2025-10-29 19:20:30'),(1846,0,0,'O','N','2526',1469,0,'2025-10-29','2026-01-28',1510,0,1469,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:17:00','0000-00-00','','','','N','17:17:00','19:24:28','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','4','17:17:15',0,'','drashti','2025-10-29 17:17:15','drarchit','2025-10-29 19:24:28'),(1847,0,0,'O','N','2526',1470,0,'2025-10-29','2026-01-28',1511,0,1470,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','17:57:24','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','2','17:20:37',0,'','reception','2025-10-29 17:20:37','darshan','2025-10-29 17:57:24'),(1848,0,0,'O','N','2526',1471,0,'2025-10-29','2026-01-28',1512,0,1471,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','17:54:52','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:27:17',0,'','reception','2025-10-29 17:27:17','darshan','2025-10-29 17:54:52'),(1849,0,0,'O','N','2526',1472,0,'2025-10-29','2026-01-28',1513,0,1472,'N','','N','','','NV','','N','D06','','N',103,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:29:00','0000-00-00','','','','N','17:29:00','19:42:27','','N','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:29:36',0,'','reception','2025-10-29 17:29:36','darshan','2025-10-29 19:42:27'),(1850,0,0,'O','N','2526',1473,0,'2025-10-29','2026-01-28',1514,0,1473,'N','','N','','','NV','','N','D06','','N',104,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','20:02:47','','N','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:32:46',0,'','reception','2025-10-29 17:32:46','darshan','2025-10-29 20:02:47'),(1851,0,0,'O','N','2526',1474,0,'2025-10-29','2026-01-28',1515,0,1474,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:35:00','0000-00-00','','','','N','17:35:00','20:05:59','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:35:51',0,'','reception','2025-10-29 17:35:51','darshan','2025-10-29 20:05:59'),(1852,0,0,'O','N','2526',1475,0,'2025-10-29','2026-01-28',1516,0,1475,'N','','N','','','NV','','N','D06','','N',90,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','18:59:08','','N','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','2','17:42:01',0,'','reception','2025-10-29 17:42:01','darshan','2025-10-30 18:59:08'),(1853,0,0,'O','N','2526',1476,0,'2025-10-29','2026-01-28',1517,0,1476,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','00:00:00','','','N','N',NULL,'O','N','Z56','','0000-00-00 00:00:00','3','17:42:38',0,'','priyanshi','2025-10-29 17:42:38','','0000-00-00 00:00:00'),(1854,0,0,'O','N','2526',919,0,'2025-10-29','0000-00-00',950,0,919,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:44:00','0000-00-00','','','','N','17:44:00','18:29:19','','','N','Y',NULL,'O','O','L07','','0000-00-00 00:00:00','2','17:44:55',0,'','reception','2025-10-29 17:44:55','darshan','2025-10-29 18:29:19'),(1855,0,0,'O','N','2526',1477,0,'2025-10-29','2026-01-28',1518,0,1477,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','19:51:24','','N','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:50:23',0,'','reception','2025-10-29 17:50:23','darshan','2025-10-29 19:51:24'),(1856,0,0,'O','N','2526',1478,0,'2025-10-29','2026-01-28',1519,0,1478,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','18:02:24','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','5','17:57:08',0,'','janvi','2025-10-29 17:57:08','drjayant','2025-10-29 18:02:24'),(1857,0,0,'O','N','2526',1479,0,'2025-10-29','2026-01-28',1520,0,1479,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','18:58:23','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','2','17:59:48',0,'','reception','2025-10-29 17:59:48','darshan','2025-10-29 18:58:23'),(1858,0,0,'O','N','2526',1480,0,'2025-10-29','2026-01-28',1521,0,1480,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','19:14:53','','N','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','4','18:02:19',0,'','janvi','2025-10-29 18:02:19','drarchit','2025-10-29 19:14:53'),(1859,0,0,'O','N','2526',593,0,'2025-10-29','0000-00-00',623,0,593,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','18:25:24','','','N','Y',NULL,'O','O','L09','','0000-00-00 00:00:00','2','18:04:09',0,'','reception','2025-10-29 18:04:09','darshan','2025-10-29 18:25:24'),(1860,0,0,'O','N','2526',1481,0,'2025-10-29','2026-01-28',1522,0,1481,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:08:00','0000-00-00','','','','N','18:08:00','19:15:12','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','2','18:08:34',0,'','reception','2025-10-29 18:08:34','darshan','2025-10-29 19:15:12'),(1861,0,0,'O','N','2526',1482,0,'2025-10-29','2026-01-28',1523,0,1482,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','19:32:45','','','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','4','18:15:20',0,'','reception','2025-10-29 18:15:20','drarchit','2025-10-29 19:32:45'),(1862,0,0,'O','N','2526',1483,0,'2025-10-29','2026-01-28',1524,0,1483,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','18:37:12','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','6','18:16:10',0,'','manshi','2025-10-29 18:16:10','drsagar','2025-10-29 18:37:12'),(1863,0,0,'O','N','2526',53,0,'2025-10-29','0000-00-00',61,0,53,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','18:27:58','','','N','Y',NULL,'O','O','Z61','','0000-00-00 00:00:00','6','18:19:27',0,'','manshi','2025-10-29 18:19:27','drsagar','2025-10-29 18:27:58'),(1864,0,0,'O','N','2526',1484,0,'2025-10-29','2026-01-28',1525,0,1484,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','18:32:58','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','5','18:19:28',0,'','janvi','2025-10-29 18:19:28','drjayant','2025-10-29 18:32:58'),(1865,0,0,'O','N','2526',1485,0,'2025-10-29','2026-01-28',1526,0,1485,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','18:31:04','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','5','18:22:15',0,'','shweta','2025-10-29 18:21:20','drjayant','2025-10-29 18:31:04'),(1866,0,0,'O','N','2526',1486,0,'2025-10-29','2026-01-28',1527,0,1486,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','18:43:11','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','4','18:26:19',0,'','shweta','2025-10-29 18:26:19','drarchit','2025-10-29 18:43:11'),(1867,0,0,'O','N','2526',1487,0,'2025-10-29','2026-01-28',1528,0,1487,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','00:00:00','','','N','Y',NULL,'O','N','Z65','','0000-00-00 00:00:00','3','18:29:59',0,'','janvi','2025-10-29 18:29:59','','0000-00-00 00:00:00'),(1868,0,0,'O','N','2526',1488,0,'2025-10-29','2026-01-28',1529,0,1488,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','19:00:01','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','4','18:31:32',0,'','shweta','2025-10-29 18:31:32','drarchit','2025-10-29 19:00:01'),(1869,0,0,'O','N','2526',497,0,'2025-10-29','0000-00-00',522,0,497,'N','','N','','','FC ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','19:10:44','','','N','Y',NULL,'O','O','L12','','0000-00-00 00:00:00','4','18:32:57',0,'','reception','2025-10-29 18:32:56','drarchit','2025-10-29 19:10:44'),(1870,0,0,'O','N','2526',976,0,'2025-10-29','0000-00-00',1009,0,976,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','19:20:25','','','N','Y',NULL,'O','O','Z67','','0000-00-00 00:00:00','4','18:33:37',0,'','janvi','2025-10-29 18:33:37','drarchit','2025-10-30 19:20:25'),(1871,0,0,'O','N','2526',1489,0,'2025-10-29','2026-01-28',1530,0,1489,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:35:00','0000-00-00','','','','N','18:35:00','19:04:43','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','4','18:35:54',0,'','janvi','2025-10-29 18:35:54','drarchit','2025-10-29 19:04:43'),(1872,0,0,'O','N','2526',1490,0,'2025-10-29','2026-01-28',1531,0,1490,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','12:35:04','','','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','4','18:36:33',0,'','shweta','2025-10-29 18:36:33','drarchit','2025-11-15 12:35:04'),(1873,0,0,'O','N','2526',1491,0,'2025-10-29','2026-01-28',1532,0,1491,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','19:31:48','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','18:40:02',0,'','shweta','2025-10-29 18:40:02','drarchit','2025-10-29 19:31:48'),(1874,0,0,'O','N','2526',1492,0,'2025-10-29','2026-01-28',1533,0,1492,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','19:37:04','','','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','4','18:40:55',0,'','reception','2025-10-29 18:40:55','drarchit','2025-10-29 19:37:04'),(1875,0,0,'O','N','2526',659,0,'2025-10-29','0000-00-00',689,0,659,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','18:53:09','','','N','Y',NULL,'O','O','Z68','','0000-00-00 00:00:00','3','18:47:00',0,'','janvi','2025-10-29 18:47:00','drpratapsinh','2025-10-29 18:53:09'),(1876,0,0,'O','N','2526',1493,0,'2025-10-29','2026-01-28',1534,0,1493,'N','','N','','','FV                ','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:03:00','0000-00-00','','','','N','19:03:00','19:32:03','','','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','2','19:03:15',0,'','reception','2025-10-29 19:03:15','darshan','2025-10-29 19:32:03'),(1877,0,0,'O','N','2526',1494,0,'2025-10-29','2026-01-28',1535,0,1494,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:06:00','0000-00-00','','','','N','19:06:00','19:43:18','','','N','Y',NULL,'O','N','L17','','0000-00-00 00:00:00','4','19:06:28',0,'','drashti','2025-10-29 19:06:28','drarchit','2025-10-29 19:43:18'),(1878,0,0,'O','N','2526',1495,0,'2025-10-29','2026-01-28',1536,0,1495,'N','','N','','','','','N','D27','','N',90,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:14:00','0000-00-00','','','','N','19:14:00','19:36:21','','','N','Y',NULL,'O','N','Z70','','0000-00-00 00:00:00','5','19:14:54',0,'','reception','2025-10-29 19:14:54','drjayant','2025-10-29 19:36:21'),(1879,0,0,'O','N','2526',1126,0,'2025-10-29','0000-00-00',1166,0,1126,'N','','N','','','','','N','D02','','N',81,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:36:00','0000-00-00','','','','N','19:36:00','19:39:00','','','N','Y',NULL,'O','O','Z71','','0000-00-00 00:00:00','3','19:36:35',0,'','janvi','2025-10-29 19:36:35','drpratapsinh','2025-10-29 19:39:00'),(1880,0,0,'O','N','2526',562,0,'2025-10-29','0000-00-00',589,0,562,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:37:00','0000-00-00','','','','N','19:37:00','20:13:35','','','N','Y',NULL,'O','O','L18','','0000-00-00 00:00:00','2','19:37:37',0,'','reception','2025-10-29 19:37:37','darshan','2025-10-29 20:13:35'),(1881,0,0,'O','N','2526',1496,0,'2025-10-29','2026-01-28',1537,0,1496,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:39:00','0000-00-00','','','','N','19:39:00','00:00:00','','','N','Y',NULL,'O','N','Z72','','0000-00-00 00:00:00','3','19:39:54',0,'','janvi','2025-10-29 19:39:54','','0000-00-00 00:00:00'),(1882,0,0,'O','N','2526',54,0,'2025-10-29','0000-00-00',64,0,54,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:53:00','0000-00-00','','','','N','19:53:00','00:00:00','','','N','N',NULL,'O','O','Z73','','0000-00-00 00:00:00','3','19:53:56',0,'','janvi','2025-10-29 19:53:55','','0000-00-00 00:00:00'),(1883,0,0,'O','N','2526',1497,0,'2025-10-29','2026-01-28',1538,0,1497,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:55:00','0000-00-00','','','','N','19:55:00','20:18:24','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','2','19:55:19',0,'','reception','2025-10-29 19:55:19','darshan','2025-10-29 20:18:24'),(1884,0,0,'O','N','2526',1498,0,'2025-10-30','2026-01-29',1539,0,1498,'N','','N','','','EMR','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:03:00','0000-00-00','','','','N','09:03:00','00:00:00','','','N','N',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','09:03:25',0,'','urvashi','2025-10-30 09:03:25','','0000-00-00 00:00:00'),(1885,0,0,'O','N','2526',1499,0,'2025-10-30','2026-01-29',1540,0,1499,'N','','N','','','EMR','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:05:00','0000-00-00','','','','N','09:05:00','11:52:50','','N','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','09:05:14',0,'','urvashi','2025-10-30 09:05:14','drarchit','2025-10-30 11:52:50'),(1886,0,0,'O','N','2526',1500,0,'2025-10-30','2026-01-29',1541,0,1500,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:31:00','0000-00-00','','','','N','09:31:00','10:46:08','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','2','09:31:19',0,'','reception','2025-10-30 09:31:19','darshan','2025-10-30 10:46:08'),(1887,0,0,'O','N','2526',469,0,'2025-10-30','0000-00-00',495,0,469,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:33:00','0000-00-00','','','','N','09:33:00','12:29:12','','','N','Y',NULL,'O','O','Z04','','0000-00-00 00:00:00','2','09:33:42',0,'','reception','2025-10-30 09:33:42','darshan','2025-10-30 12:29:12'),(1888,0,0,'I','N','2526',1454,109,'2025-10-30','2026-01-29',1495,0,1454,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:40:00','2025-10-31','','1','mo','N','09:40:00','21:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-30 09:40:40','riya','2025-10-31 21:13:25'),(1889,0,0,'O','N','2526',1501,0,'2025-10-30','2026-01-29',1542,0,1501,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:18:00','0000-00-00','','','','N','10:18:00','12:01:11','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','2','10:18:32',0,'','reception','2025-10-30 10:18:32','darshan','2025-10-30 12:01:11'),(1890,0,0,'O','N','2526',1502,0,'2025-10-30','2026-01-29',1543,0,1502,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','18:22:56','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','4','10:28:09',0,'','drashti','2025-10-30 10:28:09','drarchit','2025-10-30 18:22:56'),(1891,0,0,'O','N','2526',1503,0,'2025-10-30','2026-01-29',1544,0,1503,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:30:00','0000-00-00','','','','N','10:30:00','13:12:50','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:30:13',0,'','reception','2025-10-30 10:30:13','darshan','2025-10-30 13:12:50'),(1892,0,0,'O','N','2526',1504,0,'2025-10-30','2026-01-29',1545,0,1504,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','13:37:08','','N','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','2','10:39:56',0,'','reception','2025-10-30 10:39:56','darshan','2025-10-30 13:37:08'),(1893,0,0,'O','N','2526',699,0,'2025-10-30','0000-00-00',730,0,699,'N','','N','','','FOLLOWUP V','','N','D06','','N',54,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:41:00','0000-00-00','','','','N','10:41:00','11:14:14','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:41:16',0,'','reception','2025-10-30 10:41:16','darshan','2025-10-30 11:14:14'),(1894,0,0,'O','N','2526',300,0,'2025-10-30','0000-00-00',316,0,300,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','15:24:10','','','N','Y',NULL,'O','O','F03','','0000-00-00 00:00:00','2','10:43:18',0,'','reception','2025-10-30 10:43:18','darshan','2025-10-31 15:24:09'),(1895,0,0,'O','N','2526',1505,0,'2025-10-30','2026-01-29',1546,0,1505,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','11:07:32','','','N','Y',NULL,'O','N','F04','','0000-00-00 00:00:00','2','10:44:58',0,'','reception','2025-10-30 10:44:58','darshan','2025-10-30 11:07:32'),(1896,0,0,'O','N','2526',1506,0,'2025-10-30','2026-01-29',1547,0,1506,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','11:39:32','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','10:46:53',0,'','reception','2025-10-30 10:46:53','darshan','2025-10-30 11:39:32'),(1897,0,0,'O','N','2526',1507,0,'2025-10-30','2026-01-29',1548,0,1507,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','12:05:30','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','2','10:56:15',0,'','reception','2025-10-30 10:56:15','darshan','2025-10-30 12:05:30'),(1898,0,0,'O','N','2526',1476,0,'2025-10-30','0000-00-00',1517,0,1476,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','11:53:14','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','3','10:57:02',0,'','janvi','2025-10-30 10:57:02','drpratapsinh','2025-10-30 11:53:14'),(1899,0,0,'O','N','2526',1508,0,'2025-10-30','2026-01-29',1549,0,1508,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','11:43:15','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','11:02:13',0,'','reception','2025-10-30 11:02:13','darshan','2025-10-30 11:43:15'),(1900,0,0,'O','N','2526',757,0,'2025-10-30','0000-00-00',56,0,757,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','11:27:51','','','N','Y',NULL,'O','O','Z10','','0000-00-00 00:00:00','5','11:03:52',0,'','drashti','2025-10-30 11:03:52','drjayant','2025-10-30 11:27:51'),(1901,0,0,'O','N','2526',1509,0,'2025-10-30','2026-01-29',1550,0,1509,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','12:48:39','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','2','11:04:34',0,'','reception','2025-10-30 11:04:34','darshan','2025-10-30 12:48:39'),(1902,0,0,'O','N','2526',1070,0,'2025-10-30','0000-00-00',1110,0,1070,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','12:50:09','','','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','3','11:05:49',0,'','janvi','2025-10-30 11:05:49','drpratapsinh','2025-10-30 12:50:09'),(1903,0,0,'O','N','2526',1510,0,'2025-10-30','2026-01-29',1551,0,1510,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','13:41:14','','N','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','2','11:06:15',0,'','reception','2025-10-30 11:06:15','darshan','2025-10-30 13:41:14'),(1904,0,0,'O','N','2526',696,0,'2025-10-30','0000-00-00',727,0,696,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','11:52:02','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','3','11:07:10',0,'','janvi','2025-10-30 11:07:10','drpratapsinh','2025-10-30 11:52:02'),(1905,0,0,'O','N','2526',1511,0,'2025-10-30','2026-01-29',1552,0,1511,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','13:26:27','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','4','11:09:17',0,'','drashti','2025-10-30 11:09:17','drarchit','2025-10-30 13:26:27'),(1906,0,0,'O','N','2526',1512,0,'2025-10-30','2026-01-29',1553,0,1512,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','11:33:14','','','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','4','11:12:32',0,'','drashti','2025-10-30 11:12:32','drarchit','2025-10-30 11:33:14'),(1907,0,0,'O','N','2526',1513,0,'2025-10-30','2026-01-29',1554,0,1513,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','00:00:00','','','N','N',NULL,'O','N','Z15','','0000-00-00 00:00:00','4','11:17:59',0,'','janvi','2025-10-30 11:17:59','','0000-00-00 00:00:00'),(1908,0,0,'O','N','2526',1514,0,'2025-10-30','2026-01-29',1555,0,1514,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','18:22:02','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','4','11:20:56',0,'','drashti','2025-10-30 11:20:56','drarchit','2025-10-30 18:22:02'),(1909,0,0,'O','N','2526',292,0,'2025-10-30','0000-00-00',308,0,292,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','12:56:47','','','N','Y',NULL,'O','O','J01','','0000-00-00 00:00:00','2','11:28:44',0,'','reception','2025-10-30 11:28:44','darshan','2025-10-30 12:56:47'),(1910,0,0,'O','N','2526',773,0,'2025-10-30','0000-00-00',804,0,773,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','12:03:18','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','4','11:29:22',0,'','drashti','2025-10-30 11:29:22','drarchit','2025-10-30 12:03:18'),(1911,0,0,'O','N','2526',1515,0,'2025-10-30','2026-01-29',1556,0,1515,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','11:51:47','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','4','11:33:10',0,'','drashti','2025-10-30 11:33:10','drarchit','2025-10-30 11:51:47'),(1912,0,0,'O','N','2526',116,0,'2025-10-30','0000-00-00',127,0,116,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','11:52:57','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','3','11:35:32',0,'','janvi','2025-10-30 11:35:32','drpratapsinh','2025-10-30 11:52:57'),(1913,0,0,'O','N','2526',1516,0,'2025-10-30','2026-01-29',1557,0,1516,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','11:56:43','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','11:35:39',0,'','reception','2025-10-30 11:35:39','darshan','2025-10-30 11:56:43'),(1914,0,0,'O','N','2526',1517,0,'2025-10-30','2026-01-29',1558,0,1517,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','12:24:24','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','3','11:36:52',0,'','janvi','2025-10-30 11:36:52','drpratapsinh','2025-10-30 12:24:24'),(1915,0,0,'O','N','2526',1518,0,'2025-10-30','2026-01-29',1559,0,1518,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','12:39:49','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:43:01',0,'','reception','2025-10-30 11:43:01','darshan','2025-10-30 12:39:49'),(1916,0,0,'O','N','2526',1519,0,'2025-10-30','2026-01-29',1560,0,1519,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','12:42:49','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','4','11:43:20',0,'','drashti','2025-10-30 11:43:20','drarchit','2025-10-30 12:42:49'),(1917,0,0,'O','N','2526',1520,0,'2025-10-30','2026-01-29',1561,0,1520,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','12:41:40','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','4','11:45:02',0,'','drashti','2025-10-30 11:45:02','drarchit','2025-10-30 12:41:40'),(1918,0,0,'O','N','2526',1521,0,'2025-10-30','2026-01-29',1562,0,1521,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','11:51:17','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','3','11:45:59',0,'','janvi','2025-10-30 11:45:59','drpratapsinh','2025-10-30 11:51:17'),(1919,0,0,'O','N','2526',1522,0,'2025-10-30','2026-01-29',1563,0,1522,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','13:05:43','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','2','11:50:39',0,'','reception','2025-10-30 11:50:39','darshan','2025-10-30 13:05:43'),(1920,0,0,'O','N','2526',1523,0,'2025-10-30','2026-01-29',1564,0,1523,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','17:11:36','','N','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','11:51:34',0,'','reception','2025-10-30 11:51:34','darshan','2025-10-30 17:11:36'),(1921,0,0,'O','N','2526',1524,0,'2025-10-30','2026-01-29',1565,0,1524,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','12:21:34','','','N','Y',NULL,'O','N','H06','','0000-00-00 00:00:00','4','11:52:26',0,'','drashti','2025-10-30 11:52:26','drarchit','2025-10-30 12:21:34'),(1922,0,0,'O','N','2526',1525,0,'2025-10-30','2026-01-29',1566,0,1525,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','12:29:57','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','4','11:54:27',0,'','drashti','2025-10-30 11:54:27','drarchit','2025-10-30 12:29:57'),(1923,0,0,'O','N','2526',951,0,'2025-10-30','0000-00-00',982,0,951,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','19:12:00','','','N','Y',NULL,'O','O','Z22','','0000-00-00 00:00:00','4','11:56:34',0,'','drashti','2025-10-30 11:56:34','drarchit','2025-10-30 19:12:00'),(1924,0,0,'O','N','2526',1526,0,'2025-10-30','2026-01-29',1567,0,1526,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','12:15:05','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','5','11:58:42',0,'','drashti','2025-10-30 11:58:42','drjayant','2025-10-30 12:15:05'),(1925,0,0,'O','N','2526',1527,0,'2025-10-30','2026-01-29',1568,0,1527,'N','','N','','','','','N','D02','','N',76,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:05:00','0000-00-00','','','','N','12:05:00','12:40:07','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','3','12:05:58',0,'','janvi','2025-10-30 12:05:58','drpratapsinh','2025-10-30 12:40:07'),(1926,0,0,'O','N','2526',118,0,'2025-10-30','0000-00-00',129,0,118,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:07:00','0000-00-00','','','','N','12:07:00','12:20:43','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','3','12:07:05',0,'','drashti','2025-10-30 12:07:05','drpratapsinh','2025-10-30 12:20:43'),(1927,0,0,'O','N','2526',1528,0,'2025-10-30','2026-01-29',1569,0,1528,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:08:00','0000-00-00','','','','N','12:08:00','00:00:00','','','N','N',NULL,'O','N','Z26','','0000-00-00 00:00:00','7','12:08:55',0,'','manshi','2025-10-30 12:08:55','','0000-00-00 00:00:00'),(1928,0,0,'O','N','2526',1529,0,'2025-10-30','2026-01-29',1570,0,1529,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:10:00','0000-00-00','','','','N','12:10:00','13:14:13','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','4','12:10:43',0,'','drashti','2025-10-30 12:10:43','drarchit','2025-10-30 13:14:13'),(1929,0,0,'O','N','2526',1530,0,'2025-10-30','2026-01-29',1571,0,1530,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:17:00','0000-00-00','','','','N','12:17:00','13:25:21','','','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','2','12:17:16',0,'','reception','2025-10-30 12:17:16','darshan','2025-10-30 13:25:21'),(1930,0,0,'O','N','2526',1531,0,'2025-10-30','2026-01-29',1572,0,1531,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:25:00','0000-00-00','','','','N','12:25:00','13:00:30','','','N','Y',NULL,'O','N','I05','','0000-00-00 00:00:00','2','12:25:46',0,'','reception','2025-10-30 12:25:46','darshan','2025-10-30 13:00:30'),(1931,0,0,'O','N','2526',1532,0,'2025-10-30','2026-01-29',1573,0,1532,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:33:00','0000-00-00','','','','N','12:33:00','12:40:40','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','5','12:33:47',0,'','janvi','2025-10-30 12:33:47','drjayant','2025-10-30 12:40:40'),(1932,0,0,'O','N','2526',1533,0,'2025-10-30','2026-01-29',452,0,1533,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:37:00','0000-00-00','','','','N','12:37:00','13:40:54','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','4','12:37:46',0,'','drashti','2025-10-30 12:37:46','drarchit','2025-10-30 13:40:54'),(1933,0,0,'O','N','2526',1534,0,'2025-10-30','2026-01-29',1574,0,1534,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:38:00','0000-00-00','','','','N','12:38:00','13:11:11','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:38:59',0,'','reception','2025-10-30 12:38:59','darshan','2025-10-30 13:11:11'),(1934,0,0,'I','N','2526',0,110,'2025-10-30','2026-01-29',1575,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:40:00','2025-10-30','','4','mo','N','12:40:00','18:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-30 12:43:19','mo','2025-10-30 19:00:49'),(1935,0,0,'O','N','2526',1535,0,'2025-10-30','2026-01-29',1576,0,1535,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:47:00','0000-00-00','','','','N','12:47:00','12:53:46','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','3','12:47:43',0,'','janvi','2025-10-30 12:47:43','drpratapsinh','2025-10-30 12:53:46'),(1936,0,0,'I','N','2526',1514,111,'2025-10-30','2026-01-29',1555,0,1514,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:50:00','2025-11-01','','4','mo','N','12:50:00','15:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-30 12:55:32','mo','2025-11-01 15:50:46'),(1937,0,0,'O','N','2526',1536,0,'2025-10-30','2026-01-29',1577,0,1536,'N','','N','','','FOC','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','0000-00-00','','','','N','13:00:00','00:00:00','','','N','N',NULL,'O','N','Z30','','0000-00-00 00:00:00','7','13:00:44',0,'','manshi','2025-10-30 13:00:44','','0000-00-00 00:00:00'),(1938,0,0,'O','N','2526',1537,0,'2025-10-30','2026-01-29',1578,0,1537,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:04:00','0000-00-00','','','','N','13:04:00','13:47:54','','N','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','4','13:05:00',0,'','janvi','2025-10-30 13:05:00','drarchit','2025-10-30 13:47:54'),(1939,0,0,'O','N','2526',1538,0,'2025-10-30','2026-01-29',1579,0,1538,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:40:00','0000-00-00','','','','N','13:40:00','13:54:06','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','4','13:40:53',0,'','janvi','2025-10-30 13:40:53','drarchit','2025-10-30 13:54:06'),(1940,0,0,'I','N','2526',1532,112,'2025-10-30','2026-01-29',1573,0,1532,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:52:00','2025-11-03','','1','mo','N','13:52:00','12:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-30 13:55:03','mo','2025-11-03 13:33:07'),(1941,0,0,'I','N','2526',0,113,'2025-10-30','2026-01-29',1580,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:56:00','2025-11-03','','1','mo','N','13:56:00','12:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-30 13:58:09','mo','2025-11-03 13:46:07'),(1942,0,0,'I','N','2526',0,114,'2025-10-30','2026-01-29',1581,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:00:00','2025-10-31','','1','mo','N','14:00:00','14:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-30 14:21:16','mo','2025-10-31 13:13:43'),(1943,0,0,'O','N','2526',294,0,'2025-10-30','0000-00-00',310,0,294,'N','','N','','','FV','','N','D06','','N',27,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:05:00','0000-00-00','','','','N','16:05:00','17:14:16','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','16:05:20',0,'','reception','2025-10-30 16:05:20','darshan','2025-10-30 17:14:15'),(1944,0,0,'O','N','2526',1539,0,'2025-10-30','2026-01-29',1582,0,1539,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:47:00','0000-00-00','','','','N','16:47:00','19:28:50','','N','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:47:10',0,'','reception','2025-10-30 16:47:10','darshan','2025-10-30 19:28:50'),(1945,0,0,'O','N','2526',1133,0,'2025-10-30','0000-00-00',1173,0,1133,'N','','N','','','','','N','D02','','N',11,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:49:00','0000-00-00','','','','N','16:49:00','16:51:00','','','N','Y',NULL,'O','O','Z33','','0000-00-00 00:00:00','3','16:49:50',0,'','priyanshi','2025-10-30 16:49:50','drpratapsinh','2025-10-30 16:51:00'),(1946,0,0,'O','N','2526',1540,0,'2025-10-30','2026-01-29',1583,0,1540,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:52:00','0000-00-00','','','','N','16:52:00','18:16:42','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','2','16:52:14',0,'','reception','2025-10-30 16:52:14','darshan','2025-10-30 18:16:42'),(1947,0,0,'O','N','2526',1541,0,'2025-10-30','2026-01-29',1584,0,1541,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:59:00','0000-00-00','','','','N','16:59:00','17:39:29','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','16:59:53',0,'','reception','2025-10-30 16:59:52','darshan','2025-10-30 17:39:29'),(1948,0,0,'O','N','2526',1542,0,'2025-10-30','2026-01-29',1585,0,1542,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:00:00','0000-00-00','','','','N','17:00:00','18:01:02','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','2','17:01:02',0,'','reception','2025-10-30 17:01:02','darshan','2025-10-30 18:01:02'),(1949,0,0,'O','N','2526',1543,0,'2025-10-30','2026-01-29',1586,0,1543,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:05:00','0000-00-00','','','','N','17:05:00','18:22:11','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','2','17:05:42',0,'','reception','2025-10-30 17:05:42','darshan','2025-10-30 18:22:11'),(1950,0,0,'O','N','2526',1544,0,'2025-10-30','2026-01-29',1587,0,1544,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:07:00','0000-00-00','','','','N','17:07:00','18:18:56','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:07:41',0,'','reception','2025-10-30 17:07:40','darshan','2025-10-30 18:18:56'),(1951,0,0,'O','N','2526',1545,0,'2025-10-30','2026-01-29',1588,0,1545,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:09:00','0000-00-00','','','','N','17:09:00','18:28:53','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','17:09:40',0,'','reception','2025-10-30 17:09:40','darshan','2025-10-30 18:28:53'),(1952,0,0,'O','N','2526',1546,0,'2025-10-30','2026-01-29',1589,0,1546,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:11:00','0000-00-00','','','','N','17:11:00','18:33:19','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','2','17:11:57',0,'','reception','2025-10-30 17:11:57','darshan','2025-10-30 18:33:19'),(1953,0,0,'O','N','2526',911,0,'2025-10-30','0000-00-00',942,0,911,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:12:00','0000-00-00','','','','N','17:12:00','18:40:02','','','N','Y',NULL,'O','O','Z39','','0000-00-00 00:00:00','2','17:12:37',0,'','reception','2025-10-30 17:12:37','darshan','2025-10-30 18:40:02'),(1954,0,0,'O','N','2526',1475,0,'2025-10-30','0000-00-00',1516,0,1475,'N','','N','','','REPORTS','','N','D06','','N',90,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:13:00','0000-00-00','','','','N','17:13:00','19:02:17','','N','N','Y',NULL,'O','O','Z40','','0000-00-00 00:00:00','2','17:13:33',0,'','reception','2025-10-30 17:13:33','darshan','2025-10-30 19:02:17'),(1955,0,0,'O','N','2526',1547,0,'2025-10-30','2026-01-29',1590,0,1547,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:16:00','0000-00-00','','','','N','17:16:00','18:04:29','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:17:03',0,'','reception','2025-10-30 17:17:03','darshan','2025-10-30 18:04:29'),(1956,0,0,'O','N','2526',1548,0,'2025-10-30','2026-01-29',1591,0,1548,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:33:00','0000-00-00','','','','N','17:33:00','19:34:01','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:34:02',0,'','reception','2025-10-30 17:34:02','darshan','2025-10-30 19:34:01'),(1957,0,0,'O','N','2526',1549,0,'2025-10-30','2026-01-29',1592,0,1549,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:36:00','0000-00-00','','','','N','17:36:00','18:11:00','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:36:29',0,'','reception','2025-10-30 17:36:29','darshan','2025-10-30 18:11:00'),(1958,0,0,'O','N','2526',1550,0,'2025-10-30','2026-01-29',1593,0,1550,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:39:00','0000-00-00','','','','N','17:39:00','18:51:17','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','2','17:39:10',0,'','reception','2025-10-30 17:39:10','darshan','2025-10-30 18:51:17'),(1959,0,0,'O','N','2526',753,0,'2025-10-30','0000-00-00',785,0,753,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:43:00','0000-00-00','','','','N','17:43:00','18:01:50','','','N','Y',NULL,'O','O','Z42','','0000-00-00 00:00:00','5','17:43:18',0,'','drashti','2025-10-30 17:43:18','drjayant','2025-10-30 18:01:50'),(1960,0,0,'O','N','2526',1551,0,'2025-10-30','2026-01-29',1594,0,1551,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:44:00','0000-00-00','','','','N','17:44:00','18:21:42','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','4','17:44:49',0,'','drashti','2025-10-30 17:44:49','drarchit','2025-10-30 18:21:42'),(1961,0,0,'O','N','2526',1552,0,'2025-10-30','2026-01-29',1595,0,1552,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','18:54:31','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','2','17:49:43',0,'','reception','2025-10-30 17:49:43','darshan','2025-10-30 18:54:31'),(1962,0,0,'O','N','2526',1553,0,'2025-10-30','2026-01-29',1596,0,1553,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','18:05:34','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','3','17:57:31',0,'','janvi','2025-10-30 17:57:31','drpratapsinh','2025-10-30 18:05:34'),(1963,0,0,'O','N','2526',1554,0,'2025-10-30','2026-01-29',1597,0,1554,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','18:26:08','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','18:02:39',0,'','reception','2025-10-30 18:02:39','darshan','2025-10-30 18:26:08'),(1964,0,0,'O','N','2526',1555,0,'2025-10-30','2026-01-29',1598,0,1555,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','19:01:45','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','18:04:11',0,'','reception','2025-10-30 18:04:11','darshan','2025-10-30 19:01:45'),(1965,0,0,'O','N','2526',1179,0,'2025-10-30','0000-00-00',1218,0,1179,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','19:16:30','','','N','Y',NULL,'O','O','Z46','','0000-00-00 00:00:00','2','18:14:33',0,'','reception','2025-10-30 18:14:33','darshan','2025-10-30 19:16:30'),(1966,0,0,'O','N','2526',1556,0,'2025-10-30','2026-01-29',1599,0,1556,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','18:27:11','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','4','18:14:48',0,'','drashti','2025-10-30 18:14:48','drarchit','2025-10-30 18:27:11'),(1967,0,0,'O','N','2526',1557,0,'2025-10-30','2026-01-29',1600,0,1557,'N','','N','','','','','N','D02','','N',106,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','00:00:00','','','N','N',NULL,'O','N','Z48','','0000-00-00 00:00:00','3','18:16:47',0,'','janvi','2025-10-30 18:16:47','','0000-00-00 00:00:00'),(1968,0,0,'O','N','2526',1558,0,'2025-10-30','2026-01-29',1601,0,1558,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','18:36:38','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','4','18:16:48',0,'','drashti','2025-10-30 18:16:48','drarchit','2025-10-30 18:36:38'),(1969,0,0,'O','N','2526',1559,0,'2025-10-30','2026-01-29',1602,0,1559,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','19:58:59','','N','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','2','18:18:59',0,'','reception','2025-10-30 18:18:59','darshan','2025-10-30 19:58:59'),(1970,0,0,'O','N','2526',1560,0,'2025-10-30','2026-01-29',1603,0,1560,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','18:49:32','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','4','18:19:33',0,'','drashti','2025-10-30 18:19:33','drarchit','2025-10-30 18:49:32'),(1971,0,0,'O','N','2526',1561,0,'2025-10-30','2026-01-29',1604,0,1561,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:27:00','0000-00-00','','','','N','18:27:00','18:51:34','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','5','18:27:03',0,'','drashti','2025-10-30 18:27:03','drjayant','2025-10-30 18:51:34'),(1972,0,0,'O','N','2526',1562,0,'2025-10-30','2026-01-29',1605,0,1562,'N','','N','','','','','N','D02','','N',107,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','18:49:04','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','3','18:33:30',0,'','janvi','2025-10-30 18:33:30','drpratapsinh','2025-10-30 18:49:04'),(1973,0,0,'O','N','2526',1105,0,'2025-10-30','0000-00-00',1143,0,1105,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:35:00','0000-00-00','','','','N','18:35:00','18:49:40','','','N','Y',NULL,'O','O','Z51','','0000-00-00 00:00:00','3','18:35:06',0,'','drashti','2025-10-30 18:35:06','drpratapsinh','2025-10-30 18:49:40'),(1974,0,0,'O','N','2526',1563,0,'2025-10-30','2026-01-29',1606,0,1563,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','00:00:00','','','N','N',NULL,'O','N','L13','','0000-00-00 00:00:00','4','18:40:27',0,'','drashti','2025-10-30 18:40:27','','0000-00-00 00:00:00'),(1975,0,0,'O','N','2526',1564,0,'2025-10-30','2026-01-29',1607,0,1564,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:42:00','0000-00-00','','','','N','18:42:00','19:00:16','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','6','18:42:27',0,'','manshi','2025-10-30 18:42:27','drsagar','2025-10-30 19:00:16'),(1976,0,0,'O','N','2526',1565,0,'2025-10-30','2026-01-29',1608,0,1565,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','19:35:46','','N','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','4','18:43:16',0,'','drashti','2025-10-30 18:43:16','drarchit','2025-10-30 19:35:46'),(1977,0,0,'O','N','2526',1566,0,'2025-10-30','2026-01-29',1609,0,1566,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','18:56:16','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','5','18:46:05',0,'','drashti','2025-10-30 18:46:05','drjayant','2025-10-30 18:56:16'),(1978,0,0,'O','N','2526',1567,0,'2025-10-30','2026-01-29',1610,0,1567,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:04:37','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','5','18:51:23',0,'','janvi','2025-10-30 18:51:23','drjayant','2025-10-30 19:04:37'),(1979,0,0,'O','N','2526',1568,0,'2025-10-30','2026-01-29',1611,0,1568,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:52:00','0000-00-00','','','','N','18:52:00','13:10:27','','N','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','4','18:52:41',0,'','drashti','2025-10-30 18:52:41','drarchit','2025-10-31 13:10:27'),(1980,0,0,'O','N','2526',1414,0,'2025-10-30','0000-00-00',1454,0,1414,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:07:00','0000-00-00','','','','N','19:07:00','19:34:57','','','N','Y',NULL,'O','O','Z57','','0000-00-00 00:00:00','4','19:07:48',0,'','drashti','2025-10-30 19:07:48','drarchit','2025-10-30 19:34:57'),(1981,0,0,'O','N','2526',1569,0,'2025-10-30','2026-01-29',1612,0,1569,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:15:00','0000-00-00','','','','N','19:15:00','18:03:14','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','2','19:15:53',0,'','reception','2025-10-30 19:15:53','darshan','2025-10-31 18:03:14'),(1982,0,0,'O','N','2526',1570,0,'2025-10-30','2026-01-29',1613,0,1570,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:18:00','0000-00-00','','','','N','19:18:00','19:23:28','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','5','19:17:59',0,'','drashti','2025-10-30 19:17:59','drjayant','2025-10-30 19:23:28'),(1983,0,0,'O','N','2526',427,0,'2025-10-30','0000-00-00',449,0,427,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:19:00','0000-00-00','','','','N','19:19:00','19:42:55','','','N','Y',NULL,'O','O','Z60','','0000-00-00 00:00:00','4','19:19:45',0,'','janvi','2025-10-30 19:19:45','drarchit','2025-10-30 19:42:55'),(1984,0,0,'O','N','2526',680,0,'2025-10-30','0000-00-00',709,0,680,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:24:00','0000-00-00','','','','N','19:24:00','19:31:08','','','N','Y',NULL,'O','O','Z61','','0000-00-00 00:00:00','6','19:24:36',0,'','manshi','2025-10-30 19:24:36','drsagar','2025-10-30 19:31:08'),(1985,0,0,'O','N','2526',221,0,'2025-10-30','0000-00-00',234,0,221,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:27:00','0000-00-00','','','','N','19:27:00','00:00:00','','','N','N',NULL,'O','O','Z62','','0000-00-00 00:00:00','3','19:27:34',0,'','drashti','2025-10-30 19:27:34','','0000-00-00 00:00:00'),(1986,0,0,'O','N','2526',1571,0,'2025-10-30','2026-01-29',1614,0,1571,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:01:00','0000-00-00','','','','N','20:01:00','00:00:00','','','N','N',NULL,'O','N','Z63','','0000-00-00 00:00:00','7','20:01:49',0,'','drashti','2025-10-30 20:01:49','','0000-00-00 00:00:00'),(1987,0,0,'O','N','2526',1572,0,'2025-10-30','2026-01-29',1615,0,1572,'N','','N','','','FC','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:09:00','0000-00-00','','','','N','20:09:00','00:00:00','','','N','N',NULL,'O','N','Z64','','0000-00-00 00:00:00','4','20:09:48',0,'','janvi','2025-10-30 20:09:48','','0000-00-00 00:00:00'),(1988,0,0,'I','N','2526',0,115,'2025-10-30','2026-01-29',1616,0,0,'N','','N','','','','N','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:30:00','2025-10-31','','1','mo','N','20:30:00','17:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-30 22:22:38','mo','2025-10-31 18:04:31'),(1989,0,0,'O','N','2526',1573,0,'2025-10-31','2026-01-30',1617,0,1573,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:56:00','0000-00-00','','','','N','08:56:00','17:35:47','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','5','08:56:35',0,'','urvashi','2025-10-31 08:56:34','drjayant','2025-10-31 17:35:47'),(1990,0,0,'O','N','2526',1574,0,'2025-10-31','2026-01-30',1618,0,1574,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:59:00','0000-00-00','','','','N','08:59:00','11:19:47','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','6','08:59:52',0,'','urvashi','2025-10-31 08:59:52','drsagar','2025-10-31 11:19:47'),(1991,0,0,'O','N','2526',1575,0,'2025-10-31','2026-01-30',1619,0,1575,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:02:00','0000-00-00','','','','N','09:02:00','11:40:27','','','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','09:02:38',0,'','reception','2025-10-31 09:02:38','darshan','2025-10-31 11:40:27'),(1992,0,0,'O','N','2526',1576,0,'2025-10-31','2026-01-30',1620,0,1576,'N','','N','','','EMERGENCY','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:05:00','0000-00-00','','','','N','09:05:00','11:41:45','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','2','09:05:10',0,'','urvashi','2025-10-31 09:05:10','darshan','2025-10-31 11:41:45'),(1993,0,0,'O','N','2526',1577,0,'2025-10-31','2026-01-30',1621,0,1577,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:18:00','0000-00-00','','','','N','09:18:00','19:24:43','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','3','09:18:44',0,'','reception','2025-10-31 09:18:44','drpratapsinh','2025-10-31 19:24:43'),(1994,0,0,'O','N','2526',1578,0,'2025-10-31','2026-01-30',1622,0,1578,'N','','N','','','NV','','N','D06','','N',107,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:46:00','0000-00-00','','','','N','09:46:00','13:41:11','','N','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','09:46:42',0,'','reception','2025-10-31 09:46:42','darshan','2025-10-31 13:41:11'),(1995,0,0,'I','N','2526',1206,116,'2025-10-31','2026-01-30',1245,0,1206,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:15:00','2025-11-02','','1','mo','N','09:15:00','17:20:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-31 09:47:33','mo','2025-11-06 19:39:50'),(1996,0,0,'O','N','2526',1579,0,'2025-10-31','2026-01-30',1623,0,1579,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:52:00','0000-00-00','','','','N','09:52:00','13:51:22','','N','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','2','09:52:05',0,'','reception','2025-10-31 09:52:05','darshan','2025-10-31 13:51:22'),(1997,0,0,'O','N','2526',1242,0,'2025-10-31','0000-00-00',1283,0,1242,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:53:00','0000-00-00','','','','N','09:53:00','11:44:42','','','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','2','09:53:19',0,'','reception','2025-10-31 09:53:19','darshan','2025-10-31 11:44:42'),(1998,0,0,'O','N','2526',1580,0,'2025-10-31','2026-01-30',1624,0,1580,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','0000-00-00','','','','N','10:00:00','14:27:48','','N','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','2','10:00:23',0,'','reception','2025-10-31 10:00:23','darshan','2025-10-31 14:27:48'),(1999,0,0,'O','N','2526',1581,0,'2025-10-31','2026-01-30',1625,0,1581,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:01:00','0000-00-00','','','','N','10:01:00','14:30:53','','N','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','2','10:01:26',0,'','reception','2025-10-31 10:01:26','darshan','2025-10-31 14:30:53'),(2000,0,0,'O','N','2526',985,0,'2025-10-31','0000-00-00',1017,0,985,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:02:00','0000-00-00','','','','N','10:02:00','14:01:57','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','10:02:50',0,'','reception','2025-10-31 10:02:50','darshan','2025-10-31 14:01:57'),(2001,0,0,'O','N','2526',600,0,'2025-10-31','0000-00-00',630,0,600,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:04:00','0000-00-00','','','','N','10:04:00','12:33:43','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','4','10:05:01',0,'','janvi','2025-10-31 10:05:01','drarchit','2025-10-31 12:33:43'),(2002,0,0,'O','N','2526',1582,0,'2025-10-31','2026-01-30',1626,0,1582,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:11:00','0000-00-00','','','','N','10:11:00','10:25:23','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','3','10:11:50',0,'','reception','2025-10-31 10:11:50','drpratapsinh','2025-10-31 10:25:23'),(2003,0,0,'O','N','2526',1583,0,'2025-10-31','2026-01-30',1627,0,1583,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','11:16:27','','','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:16:57',0,'','reception','2025-10-31 10:16:57','darshan','2025-10-31 11:16:27'),(2004,0,0,'O','N','2526',1584,0,'2025-10-31','2026-01-30',1628,0,1584,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:19:00','0000-00-00','','','','N','10:19:00','19:27:47','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','3','10:19:13',0,'','reception','2025-10-31 10:19:13','drpratapsinh','2025-10-31 19:27:47'),(2005,0,0,'O','N','2526',1585,0,'2025-10-31','2026-01-30',1629,0,1585,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:31:00','0000-00-00','','','','N','10:31:00','00:00:00','','N','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','4','10:31:13',0,'','drashti','2025-10-31 10:31:13','drarchit','2025-10-31 18:19:55'),(2006,0,0,'O','N','2526',1586,0,'2025-10-31','2026-01-30',1630,0,1586,'N','','N','','','NC','','N','D02','','N',108,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','10:48:05','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','3','10:33:20',0,'','drashti','2025-10-31 10:33:20','drpratapsinh','2025-10-31 10:48:05'),(2007,0,0,'O','N','2526',1587,0,'2025-10-31','2026-01-30',1631,0,1587,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:36:00','0000-00-00','','','','N','10:36:00','11:41:05','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','4','10:36:27',0,'','reception','2025-10-31 10:36:27','drarchit','2025-10-31 11:41:05'),(2008,0,0,'O','N','2526',1588,0,'2025-10-31','2026-01-30',1632,0,1588,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:36:00','0000-00-00','','','','N','10:36:00','11:36:18','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','4','10:36:55',0,'','drashti','2025-10-31 10:36:55','drarchit','2025-10-31 11:36:18'),(2009,0,0,'O','N','2526',1589,0,'2025-10-31','2026-01-30',1633,0,1589,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','12:54:31','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','2','10:38:39',0,'','reception','2025-10-31 10:38:39','darshan','2025-10-31 12:54:31'),(2010,0,0,'O','N','2526',632,0,'2025-10-31','0000-00-00',662,0,632,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','','N','10:40:00','13:05:03','','','N','Y',NULL,'O','O','Z15','','0000-00-00 00:00:00','2','10:40:05',0,'','drashti','2025-10-31 10:40:05','darshan','2025-10-31 13:05:02'),(2011,0,0,'O','N','2526',1590,0,'2025-10-31','2026-01-30',1634,0,1590,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','12:16:37','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','4','10:48:48',0,'','janvi','2025-10-31 10:48:48','drarchit','2025-10-31 12:16:37'),(2012,0,0,'O','N','2526',1591,0,'2025-10-31','2026-01-30',1635,0,1591,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:49:00','0000-00-00','','','','N','10:49:00','13:07:00','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','2','10:49:34',0,'','reception','2025-10-31 10:49:34','darshan','2025-10-31 13:07:00'),(2013,0,0,'O','N','2526',1592,0,'2025-10-31','2026-01-30',1636,0,1592,'N','','N','','','','','N','D02','','N',109,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:52:00','0000-00-00','','','','N','10:52:00','19:29:37','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','3','10:52:51',0,'','janvi','2025-10-31 10:52:51','drpratapsinh','2025-10-31 19:29:37'),(2014,0,0,'O','N','2526',1593,0,'2025-10-31','2026-01-30',1637,0,1593,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','12:00:13','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','2','10:53:22',0,'','reception','2025-10-31 10:53:22','darshan','2025-10-31 12:00:13'),(2015,0,0,'O','N','2526',1594,0,'2025-10-31','2026-01-30',1638,0,1594,'N','','N','','','','','N','D02','','N',108,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','00:00:00','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','3','10:56:29',0,'','janvi','2025-10-31 10:56:29','','0000-00-00 00:00:00'),(2016,0,0,'O','N','2526',1595,0,'2025-10-31','2026-01-30',1639,0,1595,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','14:17:47','','N','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','2','10:58:13',0,'','reception','2025-10-31 10:58:13','darshan','2025-10-31 14:17:47'),(2017,0,0,'O','N','2526',1596,0,'2025-10-31','2026-01-30',1640,0,1596,'N','','N','','','NV','','N','D06','','N',110,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','19:40:41','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','2','11:02:10',0,'','reception','2025-10-31 11:02:10','darshan','2025-10-31 19:40:41'),(2018,0,0,'I','N','2526',0,117,'2025-10-31','2026-01-30',1641,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:45:00','2025-11-05','','7','mo','N','10:45:00','09:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-31 11:04:58','mo','2025-11-05 11:21:30'),(2019,0,0,'O','N','2526',1597,0,'2025-10-31','2026-01-30',1642,0,1597,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','14:06:53','','N','N','Y',NULL,'O','N','G05','','0000-00-00 00:00:00','2','11:08:33',0,'','reception','2025-10-31 11:08:33','darshan','2025-10-31 14:06:53'),(2020,0,0,'O','N','2526',1598,0,'2025-10-31','2026-01-30',1643,0,1598,'N','','N','','','','','N','D02','','N',111,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','00:00:00','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','3','11:10:38',0,'','janvi','2025-10-31 11:10:38','','0000-00-00 00:00:00'),(2021,0,0,'O','N','2526',1599,0,'2025-10-31','2026-01-30',1644,0,1599,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','13:40:27','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','2','11:19:24',0,'','reception','2025-10-31 11:19:24','darshan','2025-10-31 13:40:27'),(2022,0,0,'O','N','2526',1600,0,'2025-10-31','2026-01-30',1645,0,1600,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','11:42:11','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','5','11:20:23',0,'','drashti','2025-10-31 11:20:23','drjayant','2025-10-31 11:42:11'),(2023,0,0,'O','N','2526',988,0,'2025-10-31','0000-00-00',1020,0,988,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','12:03:54','','','N','Y',NULL,'O','O','G06','','0000-00-00 00:00:00','4','11:22:04',0,'','janvi','2025-10-31 11:22:04','drarchit','2025-10-31 12:03:54'),(2024,0,0,'O','N','2526',1601,0,'2025-10-31','2026-01-30',1646,0,1601,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:22:00','0000-00-00','','','','N','11:22:00','14:00:15','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','2','11:40:27',0,'','reception','2025-10-31 11:22:12','darshan','2025-10-31 14:00:15'),(2025,0,0,'O','N','2526',1236,0,'2025-10-31','0000-00-00',1277,0,1236,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','11:41:28','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','5','11:24:02',0,'','janvi','2025-10-31 11:24:02','drjayant','2025-10-31 11:41:28'),(2026,0,0,'O','N','2526',1602,0,'2025-10-31','2026-01-30',1158,0,1602,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','11:37:52','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','3','11:26:16',0,'','janvi','2025-10-31 11:26:15','drpratapsinh','2025-10-31 11:37:52'),(2027,0,0,'I','N','2526',0,118,'2025-10-31','2026-01-30',1647,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','07:00:00','2025-11-02','','7','mo','N','07:00:00','11:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-31 11:30:00','riya','2025-11-02 11:04:19'),(2028,0,0,'O','N','2526',1603,0,'2025-10-31','2026-01-30',1648,0,1603,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','00:00:00','','','N','N',NULL,'O','N','Z27','','0000-00-00 00:00:00','3','11:32:18',0,'','janvi','2025-10-31 11:32:18','','0000-00-00 00:00:00'),(2029,0,0,'O','N','2526',1604,0,'2025-10-31','2026-01-30',1649,0,1604,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:37:00','0000-00-00','','','','N','11:37:00','12:33:24','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','4','11:37:02',0,'','drashti','2025-10-31 11:37:02','drarchit','2025-10-31 12:33:24'),(2030,0,0,'O','N','2526',1605,0,'2025-10-31','2026-01-30',1650,0,1605,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','12:23:42','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','4','11:38:20',0,'','janvi','2025-10-31 11:38:20','drarchit','2025-10-31 12:23:42'),(2031,0,0,'O','N','2526',1606,0,'2025-10-31','2026-01-30',1651,0,1606,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','12:59:34','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','4','11:39:48',0,'','drashti','2025-10-31 11:39:48','drarchit','2025-10-31 12:59:34'),(2032,0,0,'O','N','2526',1607,0,'2025-10-31','2026-01-30',1652,0,1607,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','12:02:05','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','2','11:40:27',0,'','reception','2025-10-31 11:40:11','darshan','2025-11-01 12:02:05'),(2033,0,0,'O','N','2526',1608,0,'2025-10-31','2026-01-30',1653,0,1608,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','12:29:55','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','11:40:13',0,'','janvi','2025-10-31 11:40:13','drarchit','2025-10-31 12:29:55'),(2034,0,0,'O','N','2526',1609,0,'2025-10-31','2026-01-30',1654,0,1609,'N','','N','','','NV','','N','D06','','N',112,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','14:49:11','','N','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','2','11:45:08',0,'','reception','2025-10-31 11:45:08','darshan','2025-10-31 14:49:11'),(2035,0,0,'O','N','2526',1610,0,'2025-10-31','2026-01-30',1655,0,1610,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','12:33:53','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','12:00:13',0,'','reception','2025-10-31 11:46:45','darshan','2025-10-31 12:33:53'),(2036,0,0,'O','N','2526',1611,0,'2025-10-31','2026-01-30',1656,0,1611,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','12:36:26','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','4','11:50:57',0,'','drashti','2025-10-31 11:50:57','drarchit','2025-10-31 12:36:26'),(2037,0,0,'O','N','2526',1612,0,'2025-10-31','2026-01-30',1657,0,1612,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:53:00','0000-00-00','','','','N','11:53:00','17:48:56','','N','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','12:00:13',0,'','reception','2025-10-31 11:54:05','darshan','2025-10-31 17:48:56'),(2038,0,0,'O','N','2526',63,0,'2025-10-31','0000-00-00',74,0,63,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','19:31:58','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','3','11:55:58',0,'','drashti','2025-10-31 11:55:58','drpratapsinh','2025-10-31 19:31:58'),(2039,0,0,'O','N','2526',1613,0,'2025-10-31','2026-01-30',1658,0,1613,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','12:46:43','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','2','12:00:13',0,'','reception','2025-10-31 11:58:57','darshan','2025-10-31 12:46:43'),(2040,0,0,'O','N','2526',1614,0,'2025-10-31','2026-01-30',1659,0,1614,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:01:00','0000-00-00','','','','N','12:01:00','13:00:54','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','6','12:01:54',0,'','manshi','2025-10-31 12:01:53','drsagar','2025-10-31 13:00:54'),(2041,0,0,'O','N','2526',1615,0,'2025-10-31','2026-01-30',1660,0,1615,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:05:00','0000-00-00','','','','N','12:05:00','12:40:59','','','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','4','12:05:07',0,'','drashti','2025-10-31 12:05:07','drarchit','2025-10-31 12:40:59'),(2042,0,0,'O','N','2526',1616,0,'2025-10-31','2026-01-30',1661,0,1616,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:05:00','0000-00-00','','','','N','12:05:00','12:13:57','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','5','12:05:55',0,'','janvi','2025-10-31 12:05:55','drjayant','2025-10-31 12:13:57'),(2043,0,0,'O','N','2526',1617,0,'2025-10-31','2026-01-30',1662,0,1617,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:15:00','0000-00-00','','','','N','12:15:00','14:57:35','','N','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','12:54:31',0,'','reception','2025-10-31 12:15:46','darshan','2025-10-31 14:57:34'),(2044,0,0,'O','N','2526',1618,0,'2025-10-31','2026-01-30',1663,0,1618,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:15:00','0000-00-00','','','','N','12:15:00','18:25:27','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','4','12:15:49',0,'','janvi','2025-10-31 12:15:49','drarchit','2025-10-31 18:25:27'),(2045,0,0,'O','N','2526',1619,0,'2025-10-31','2026-01-30',1664,0,1619,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:16:00','0000-00-00','','','','N','12:16:00','00:00:00','','','N','N',NULL,'O','N','Z34','','0000-00-00 00:00:00','3','12:16:15',0,'','drashti','2025-10-31 12:16:15','','0000-00-00 00:00:00'),(2046,0,0,'O','N','2526',1620,0,'2025-10-31','2026-01-30',1665,0,1620,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:18:00','0000-00-00','','','','N','12:18:00','14:44:01','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','2','12:54:31',0,'','reception','2025-10-31 12:18:59','darshan','2025-10-31 14:44:01'),(2047,0,0,'O','N','2526',1621,0,'2025-10-31','2026-01-30',1666,0,1621,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:18:00','0000-00-00','','','','N','12:18:00','00:00:00','','','N','N',NULL,'O','N','Z36','','0000-00-00 00:00:00','3','12:19:02',0,'','janvi','2025-10-31 12:19:02','','0000-00-00 00:00:00'),(2048,0,0,'O','N','2526',1028,0,'2025-10-31','0000-00-00',1062,0,1028,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:19:00','0000-00-00','','','','N','12:19:00','14:48:37','','','N','Y',NULL,'O','O','Z37','','0000-00-00 00:00:00','2','12:54:31',0,'','reception','2025-10-31 12:19:42','darshan','2025-10-31 14:48:37'),(2049,0,0,'O','N','2526',1622,0,'2025-10-31','2026-01-30',1667,0,1622,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:20:00','0000-00-00','','','','N','12:20:00','13:28:39','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:54:31',0,'','reception','2025-10-31 12:20:28','darshan','2025-10-31 13:28:39'),(2050,0,0,'O','N','2526',1623,0,'2025-10-31','2026-01-30',1668,0,1623,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','0000-00-00','','','','N','12:30:00','19:30:56','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','3','12:30:51',0,'','janvi','2025-10-31 12:30:51','drpratapsinh','2025-10-31 19:30:56'),(2051,0,0,'O','N','2526',1624,0,'2025-10-31','2026-01-30',1669,0,1624,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:31:00','0000-00-00','','','','N','12:31:00','14:22:13','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','12:54:31',0,'','reception','2025-10-31 12:31:56','darshan','2025-10-31 14:22:13'),(2052,0,0,'O','N','2526',1625,0,'2025-10-31','2026-01-30',1670,0,1625,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:36:00','0000-00-00','','','','N','12:36:00','12:44:58','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','6','12:36:19',0,'','manshi','2025-10-31 12:36:19','drsagar','2025-10-31 12:44:58'),(2053,0,0,'O','N','2526',1626,0,'2025-10-31','2026-01-30',1671,0,1626,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:46:00','0000-00-00','','','','N','12:46:00','13:32:37','','','N','Y',NULL,'O','N','J04','','0000-00-00 00:00:00','2','12:54:31',0,'','reception','2025-10-31 12:46:17','darshan','2025-10-31 13:32:37'),(2054,0,0,'O','N','2526',1627,0,'2025-10-31','2026-01-30',1672,0,1627,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:46:00','0000-00-00','','','','N','12:46:00','12:53:49','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','6','12:46:53',0,'','manshi','2025-10-31 12:46:53','drsagar','2025-10-31 12:53:49'),(2055,0,0,'O','N','2526',1628,0,'2025-10-31','2026-01-30',1673,0,1628,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:48:00','0000-00-00','','','','N','12:48:00','13:50:28','','','N','Y',NULL,'O','N','J05','','0000-00-00 00:00:00','2','12:54:31',0,'','reception','2025-10-31 12:48:31','darshan','2025-10-31 13:50:28'),(2056,0,0,'O','N','2526',331,0,'2025-10-31','0000-00-00',347,0,331,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:50:00','0000-00-00','','','','N','12:50:00','14:56:56','','','N','Y',NULL,'O','O','Z41','','0000-00-00 00:00:00','2','12:54:31',0,'','reception','2025-10-31 12:50:18','darshan','2025-10-31 14:56:56'),(2057,0,0,'O','N','2526',1629,0,'2025-10-31','2026-01-30',1674,0,1629,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:03:00','0000-00-00','','','','N','13:03:00','13:21:31','','','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','4','13:03:10',0,'','drashti','2025-10-31 13:03:10','drarchit','2025-10-31 13:21:31'),(2058,0,0,'O','N','2526',1630,0,'2025-10-31','2026-01-30',1675,0,1630,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:08:00','0000-00-00','','','','N','13:08:00','18:25:18','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','4','13:08:36',0,'','drashti','2025-10-31 13:08:36','drarchit','2025-10-31 18:25:18'),(2059,0,0,'O','N','2526',1631,0,'2025-10-31','2026-01-30',1676,0,1631,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:11:00','0000-00-00','','','','N','13:11:00','15:10:50','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','2','14:00:24',0,'','reception','2025-10-31 13:12:05','darshan','2025-10-31 15:10:50'),(2060,0,0,'O','N','2526',1632,0,'2025-10-31','2026-01-30',1677,0,1632,'N','','N','','','NC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:13:00','0000-00-00','','','','N','13:13:00','18:19:40','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','4','13:13:47',0,'','drashti','2025-10-31 13:13:47','drarchit','2025-10-31 18:19:40'),(2061,0,0,'O','N','2526',1633,0,'2025-10-31','2026-01-30',1678,0,1633,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:15:00','0000-00-00','','','','N','13:15:00','18:18:24','','','N','Y',NULL,'O','N','K02','','0000-00-00 00:00:00','4','13:15:33',0,'','drashti','2025-10-31 13:15:33','drarchit','2025-10-31 18:18:24'),(2062,0,0,'O','N','2526',1634,0,'2025-10-31','2026-01-30',1679,0,1634,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:50:00','0000-00-00','','','','N','13:50:00','14:35:53','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','2','14:00:24',0,'','drashti','2025-10-31 13:50:18','darshan','2025-10-31 14:35:53'),(2063,0,0,'O','N','2526',1635,0,'2025-10-31','2026-01-30',1680,0,1635,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:10:00','0000-00-00','','','','N','14:10:00','19:22:49','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','3','14:10:30',0,'','drashti','2025-10-31 14:10:30','drpratapsinh','2025-10-31 19:22:49'),(2064,0,0,'O','N','2526',1636,0,'2025-10-31','2026-01-30',1681,0,1636,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:24:00','0000-00-00','','','','N','14:24:00','15:13:48','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','14:24:15',0,'','reception','2025-10-31 14:24:15','darshan','2025-10-31 15:13:48'),(2065,0,0,'I','N','2526',1635,119,'2025-10-31','2026-01-30',1680,0,1635,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:34:00','2025-11-02','','1','mo','N','14:34:00','09:45:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-10-31 14:38:07','mo','2025-11-02 10:18:42'),(2066,0,0,'O','N','2526',585,0,'2025-10-31','0000-00-00',616,0,585,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:11:00','0000-00-00','','','','N','16:11:00','17:17:07','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','16:11:45',0,'','reception','2025-10-31 16:11:45','darshan','2025-10-31 17:17:07'),(2067,0,0,'O','N','2526',1637,0,'2025-10-31','2026-01-30',1682,0,1637,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:11:00','0000-00-00','','','','N','16:11:00','19:02:13','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','5','17:33:27',0,'','drashti','2025-10-31 16:11:57','drjayant','2025-10-31 19:02:13'),(2068,0,0,'O','N','2526',1638,0,'2025-10-31','2026-01-30',1683,0,1638,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:24:00','0000-00-00','','','','N','16:24:00','17:21:31','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:24:06',0,'','reception','2025-10-31 16:24:06','darshan','2025-10-31 17:21:31'),(2069,0,0,'O','N','2526',1639,0,'2025-10-31','2026-01-30',1684,0,1639,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:26:00','0000-00-00','','','','N','16:26:00','17:07:09','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','2','16:26:50',0,'','reception','2025-10-31 16:26:50','darshan','2025-10-31 17:07:09'),(2070,0,0,'O','N','2526',1640,0,'2025-10-31','2026-01-30',1685,0,1640,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:34:00','0000-00-00','','','','N','16:34:00','17:07:41','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','2','16:34:22',0,'','reception','2025-10-31 16:34:22','darshan','2025-10-31 17:07:41'),(2071,0,0,'O','N','2526',1641,0,'2025-10-31','2026-01-30',1686,0,1641,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:42:00','0000-00-00','','','','N','16:42:00','17:13:32','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','16:42:59',0,'','reception','2025-10-31 16:42:59','darshan','2025-10-31 17:13:32'),(2072,0,0,'O','N','2526',1642,0,'2025-10-31','2026-01-30',1687,0,1642,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:46:00','0000-00-00','','','','N','16:46:00','17:09:41','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','2','16:46:12',0,'','reception','2025-10-31 16:46:12','darshan','2025-10-31 17:09:41'),(2073,0,0,'O','N','2526',1643,0,'2025-10-31','2026-01-30',1688,0,1643,'N','','N','','','MR','','N','D06','','N',0,'','',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:47:00','0000-00-00','','','','N','16:47:00','00:00:00','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-10-31 16:47:26','reception','2025-10-31 16:53:17'),(2074,0,0,'O','N','2526',1612,0,'2025-10-31','0000-00-00',1657,0,1612,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:59:00','0000-00-00','','','','N','16:59:00','18:24:12','','N','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','2','16:59:29',0,'','reception','2025-10-31 16:59:29','darshan','2025-10-31 18:24:12'),(2075,0,0,'O','N','2526',1644,0,'2025-10-31','2026-01-30',1689,0,1644,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:02:00','0000-00-00','','','','N','17:02:00','17:27:33','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','2','17:02:44',0,'','reception','2025-10-31 17:02:44','darshan','2025-10-31 17:27:33'),(2076,0,0,'O','N','2526',1569,0,'2025-10-31','0000-00-00',1612,0,1569,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:03:00','0000-00-00','','','','N','17:03:00','18:30:58','','N','N','Y',NULL,'O','O','Z54','','0000-00-00 00:00:00','2','17:03:53',0,'','reception','2025-10-31 17:03:53','darshan','2025-10-31 18:30:58'),(2077,0,0,'O','N','2526',1645,0,'2025-10-31','2026-01-30',1690,0,1645,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:07:00','0000-00-00','','','','N','17:07:00','17:30:18','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:07:46',0,'','reception','2025-10-31 17:07:46','darshan','2025-10-31 17:30:17'),(2078,0,0,'O','N','2526',1589,0,'2025-10-31','0000-00-00',1633,0,1589,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:09:00','0000-00-00','','','','N','17:09:00','19:11:06','','N','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','2','17:09:13',0,'','reception','2025-10-31 17:09:13','darshan','2025-10-31 19:11:06'),(2079,0,0,'O','N','2526',1646,0,'2025-10-31','2026-01-30',1691,0,1646,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:10:00','0000-00-00','','','','N','17:10:00','18:15:15','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','6','17:10:48',0,'','manshi','2025-10-31 17:10:48','drsagar','2025-10-31 18:15:15'),(2080,0,0,'O','N','2526',1203,0,'2025-10-31','0000-00-00',1242,0,1203,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:11:00','0000-00-00','','','','N','17:11:00','19:30:29','','','N','Y',NULL,'O','O','Z56','','0000-00-00 00:00:00','3','17:11:46',0,'','janvi','2025-10-31 17:11:46','drpratapsinh','2025-10-31 19:30:29'),(2081,0,0,'O','N','2526',1647,0,'2025-10-31','2026-01-30',1692,0,1647,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:12:00','0000-00-00','','','','N','17:12:00','17:42:37','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:12:30',0,'','janvi','2025-10-31 17:12:30','darshan','2025-10-31 17:42:37'),(2082,0,0,'O','N','2526',1648,0,'2025-10-31','2026-01-30',1693,0,1648,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:12:00','0000-00-00','','','','N','17:12:00','18:46:27','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','2','17:12:52',0,'','reception','2025-10-31 17:12:52','darshan','2025-10-31 18:46:27'),(2083,0,0,'O','N','2526',1649,0,'2025-10-31','2026-01-30',1694,0,1649,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:15:00','0000-00-00','','','','N','17:15:00','20:26:17','','N','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','2','17:15:19',0,'','reception','2025-10-31 17:15:19','darshan','2025-10-31 20:26:17'),(2084,0,0,'O','N','2526',1650,0,'2025-10-31','2026-01-30',1695,0,1650,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:16:00','0000-00-00','','','','N','17:16:00','19:06:21','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:16:21',0,'','reception','2025-10-31 17:16:21','darshan','2025-10-31 19:06:21'),(2085,0,0,'O','N','2526',1651,0,'2025-10-31','2026-01-30',1696,0,1651,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','18:57:09','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','2','17:20:25',0,'','reception','2025-10-31 17:20:25','darshan','2025-10-31 18:57:09'),(2086,0,0,'O','N','2526',1652,0,'2025-10-31','2026-01-30',1697,0,1652,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:23:00','0000-00-00','','','','N','17:23:00','11:39:11','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','2','17:23:59',0,'','reception','2025-10-31 17:23:59','darshan','2025-11-01 11:39:11'),(2087,0,0,'O','N','2526',416,0,'2025-10-31','0000-00-00',438,0,416,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','19:26:46','','','N','Y',NULL,'O','O','Z61','','0000-00-00 00:00:00','2','17:27:34',0,'','reception','2025-10-31 17:27:33','darshan','2025-10-31 19:26:46'),(2088,0,0,'O','N','2526',1653,0,'2025-10-31','2026-01-30',1698,0,1653,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:37:00','0000-00-00','','','','N','17:37:00','20:35:06','','N','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:37:17',0,'','drashti','2025-10-31 17:37:17','darshan','2025-10-31 20:35:06'),(2089,0,0,'O','N','2526',1596,0,'2025-10-31','0000-00-00',1640,0,1596,'N','','N','','','REPORTS','','N','D06','','N',110,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:39:00','0000-00-00','','','','N','17:39:00','19:57:17','','N','N','Y',NULL,'O','O','Y03','','0000-00-00 00:00:00','2','17:39:19',0,'','reception','2025-10-31 17:39:19','darshan','2025-10-31 19:57:17'),(2090,0,0,'O','N','2526',1654,0,'2025-10-31','2026-01-30',1699,0,1654,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:43:00','0000-00-00','','','','N','17:43:00','17:49:08','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','5','17:43:43',0,'','drashti','2025-10-31 17:43:43','drjayant','2025-10-31 17:49:08'),(2091,0,0,'O','N','2526',1655,0,'2025-10-31','2026-01-30',1700,0,1655,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','11:38:34','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:46:34',0,'','reception','2025-10-31 17:46:34','darshan','2025-11-03 11:38:33'),(2092,0,0,'O','N','2526',1656,0,'2025-10-31','2026-01-30',1701,0,1656,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:47:00','0000-00-00','','','','N','17:47:00','18:19:28','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','4','17:47:45',0,'','janvi','2025-10-31 17:47:45','drarchit','2025-10-31 18:19:28'),(2093,0,0,'O','N','2526',885,0,'2025-10-31','0000-00-00',917,0,885,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:47:00','0000-00-00','','','','N','17:47:00','20:06:41','','','N','Y',NULL,'O','O','Z64','','0000-00-00 00:00:00','2','17:47:56',0,'','drashti','2025-10-31 17:47:56','darshan','2025-10-31 20:06:41'),(2094,0,0,'O','N','2526',975,0,'2025-10-31','0000-00-00',1008,0,975,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','20:42:25','','','N','Y',NULL,'O','O','Z65','','0000-00-00 00:00:00','2','17:48:31',0,'','reception','2025-10-31 17:48:31','darshan','2025-12-09 20:42:25'),(2095,0,0,'O','N','2526',1657,0,'2025-10-31','2026-01-30',1702,0,1657,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','18:24:30','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','4','17:49:18',0,'','janvi','2025-10-31 17:49:18','drarchit','2025-10-31 18:24:30'),(2096,0,0,'O','N','2526',1658,0,'2025-10-31','2026-01-30',1703,0,1658,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','18:20:04','','','N','Y',NULL,'O','N','Z67','','0000-00-00 00:00:00','5','17:51:10',0,'','drashti','2025-10-31 17:51:10','drjayant','2025-10-31 18:20:04'),(2097,0,0,'O','N','2526',651,0,'2025-10-31','0000-00-00',681,0,651,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','19:30:07','','','N','Y',NULL,'O','O','Z68','','0000-00-00 00:00:00','3','17:52:55',0,'','janvi','2025-10-31 17:52:55','drpratapsinh','2025-10-31 19:30:07'),(2098,0,0,'O','N','2526',1659,0,'2025-10-31','2026-01-30',1704,0,1659,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:54:00','0000-00-00','','','','N','17:54:00','19:30:17','','','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','2','17:54:46',0,'','reception','2025-10-31 17:54:46','darshan','2025-10-31 19:30:17'),(2099,0,0,'O','N','2526',1660,0,'2025-10-31','2026-01-30',1705,0,1660,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:01:00','0000-00-00','','','','N','18:01:00','20:17:58','','','N','Y',NULL,'O','N','Z70','','0000-00-00 00:00:00','2','18:19:28',0,'','reception','2025-10-31 18:01:59','darshan','2025-10-31 20:17:58'),(2100,0,0,'O','N','2526',1661,0,'2025-10-31','2026-01-30',1706,0,1661,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','18:39:55','','','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','7','18:02:40',0,'','manshi','2025-10-31 18:02:40','drridham','2025-10-31 18:39:55'),(2101,0,0,'O','N','2526',1446,0,'2025-10-31','0000-00-00',1487,0,1446,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','18:40:07','','','N','Y',NULL,'O','O','Z72','','0000-00-00 00:00:00','7','18:04:40',0,'','manshi','2025-10-31 18:04:40','drridham','2025-10-31 18:40:07'),(2102,0,0,'O','N','2526',627,0,'2025-10-31','0000-00-00',657,0,627,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','18:33:08','','','N','Y',NULL,'O','O','Z73','','0000-00-00 00:00:00','4','18:05:10',0,'','drashti','2025-10-31 18:05:10','drarchit','2025-10-31 18:33:08'),(2103,0,0,'O','N','2526',350,0,'2025-10-31','0000-00-00',366,0,350,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:06:00','0000-00-00','','','','N','18:06:00','18:30:19','','','N','Y',NULL,'O','O','L09','','0000-00-00 00:00:00','2','18:19:28',0,'','reception','2025-10-31 18:06:44','darshan','2025-10-31 18:30:19'),(2104,0,0,'O','N','2526',1662,0,'2025-10-31','2026-01-30',1707,0,1662,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','18:23:57','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','5','18:07:27',0,'','janvi','2025-10-31 18:07:27','drjayant','2025-10-31 18:23:57'),(2105,0,0,'O','N','2526',213,0,'2025-10-31','0000-00-00',226,0,213,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','19:46:18','','','N','Y',NULL,'O','O','L10','','0000-00-00 00:00:00','2','18:19:28',0,'','reception','2025-10-31 18:10:25','darshan','2025-10-31 19:46:18'),(2106,0,0,'O','N','2526',1304,0,'2025-10-31','0000-00-00',1343,0,1304,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','18:35:53','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','4','18:11:28',0,'','janvi','2025-10-31 18:11:28','drarchit','2025-10-31 18:35:53'),(2107,0,0,'O','N','2526',1307,0,'2025-10-31','0000-00-00',1346,0,1307,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:13:00','0000-00-00','','','','N','18:13:00','19:21:54','','','N','Y',NULL,'O','O','Z75','','0000-00-00 00:00:00','3','18:13:09',0,'','janvi','2025-10-31 18:13:09','drpratapsinh','2025-10-31 19:21:54'),(2108,0,0,'O','N','2526',1663,0,'2025-10-31','2026-01-30',1708,0,1663,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:13:00','0000-00-00','','','','N','18:13:00','20:25:05','','','N','Y',NULL,'O','N','Z76','','0000-00-00 00:00:00','2','18:19:28',0,'','reception','2025-10-31 18:13:18','darshan','2025-10-31 20:25:05'),(2109,0,0,'O','N','2526',1664,0,'2025-10-31','2026-01-30',1709,0,1664,'N','','N','','','NE','','N','D06','','N',113,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:13:00','0000-00-00','','','','N','18:13:00','19:23:34','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','2','18:19:28',0,'','drashti','2025-10-31 18:13:20','darshan','2025-10-31 19:23:34'),(2110,0,0,'O','N','2526',1293,0,'2025-10-31','0000-00-00',1332,0,1293,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','18:28:12','','','N','Y',NULL,'O','O','Z77','','0000-00-00 00:00:00','5','18:14:07',0,'','janvi','2025-10-31 18:14:07','drjayant','2025-10-31 18:28:12'),(2111,0,0,'O','N','2526',1665,0,'2025-10-31','2026-01-30',1710,0,1665,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','19:09:44','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','2','18:19:28',0,'','reception','2025-10-31 18:15:23','darshan','2025-10-31 19:09:44'),(2112,0,0,'O','N','2526',1666,0,'2025-10-31','2026-01-30',1711,0,1666,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','18:40:15','','','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','4','18:18:21',0,'','drashti','2025-10-31 18:18:21','drarchit','2025-10-31 18:40:15'),(2113,0,0,'O','N','2526',1134,0,'2025-10-31','0000-00-00',1174,0,1134,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','18:34:38','','','N','Y',NULL,'O','O','Z78','','0000-00-00 00:00:00','5','18:18:31',0,'','janvi','2025-10-31 18:18:31','drjayant','2025-10-31 18:34:38'),(2114,0,0,'O','N','2526',1667,0,'2025-10-31','2026-01-30',1712,0,1667,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:20:00','0000-00-00','','','','N','18:20:00','18:50:51','','','N','Y',NULL,'O','N','Z79','','0000-00-00 00:00:00','5','18:20:46',0,'','drashti','2025-10-31 18:20:46','drjayant','2025-10-31 18:50:51'),(2115,0,0,'O','N','2526',875,0,'2025-10-31','0000-00-00',907,0,875,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:22:00','0000-00-00','','','','N','18:22:00','20:34:30','','','N','Y',NULL,'O','O','Z80','','0000-00-00 00:00:00','2','19:06:21',0,'','reception','2025-10-31 18:22:28','darshan','2025-10-31 20:34:30'),(2116,0,0,'O','N','2526',1668,0,'2025-10-31','2026-01-30',1713,0,1668,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','19:02:42','','','N','Y',NULL,'O','N','Z81','','0000-00-00 00:00:00','5','18:23:31',0,'','drashti','2025-10-31 18:23:31','drjayant','2025-10-31 19:02:42'),(2117,0,0,'O','N','2526',1669,0,'2025-10-31','2026-01-30',1714,0,1669,'N','','N','','','','','N','D02','','N',4,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','19:20:58','','','N','Y',NULL,'O','N','Z82','','0000-00-00 00:00:00','3','18:24:10',0,'','janvi','2025-10-31 18:24:10','drpratapsinh','2025-10-31 19:20:58'),(2118,0,0,'O','N','2526',1670,0,'2025-10-31','2026-01-30',1715,0,1670,'N','','N','','','','','N','D14','','N',95,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','18:40:21','','','N','Y',NULL,'O','N','Z83','','0000-00-00 00:00:00','7','18:24:54',0,'','manshi','2025-10-31 18:24:54','drridham','2025-10-31 18:40:21'),(2119,0,0,'O','N','2526',1671,0,'2025-10-31','2026-01-30',1716,0,1671,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','19:13:35','','','N','Y',NULL,'O','N','Z84','','0000-00-00 00:00:00','2','19:06:21',0,'','reception','2025-10-31 18:29:00','darshan','2025-10-31 19:13:35'),(2120,0,0,'O','N','2526',739,0,'2025-10-31','0000-00-00',770,0,739,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','18:40:33','','','N','Y',NULL,'O','O','Z85','','0000-00-00 00:00:00','7','18:29:26',0,'','manshi','2025-10-31 18:29:26','drridham','2025-10-31 18:40:33'),(2121,0,0,'O','N','2526',1672,0,'2025-10-31','2026-01-30',1717,0,1672,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','20:15:23','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','18:29:31',0,'','drashti','2025-10-31 18:29:31','drarchit','2025-10-31 20:15:23'),(2122,0,0,'O','N','2526',1673,0,'2025-10-31','2026-01-30',1718,0,1673,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','19:22:10','','','N','Y',NULL,'O','N','Z86','','0000-00-00 00:00:00','3','19:20:58',0,'','janvi','2025-10-31 18:31:29','drpratapsinh','2025-10-31 19:22:10'),(2123,0,0,'O','N','2526',1674,0,'2025-10-31','2026-01-30',1719,0,1674,'N','','N','','','NC','','N','D27','','N',114,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','18:57:11','','','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','4','18:31:54',0,'','drashti','2025-10-31 18:31:54','drarchit','2025-10-31 18:57:11'),(2124,0,0,'O','N','2526',1675,0,'2025-10-31','2026-01-30',1720,0,1675,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','20:41:37','','N','N','Y',NULL,'O','N','L17','','0000-00-00 00:00:00','2','19:06:21',0,'','reception','2025-10-31 18:33:22','darshan','2025-10-31 20:41:37'),(2125,0,0,'O','N','2526',1676,0,'2025-10-31','2026-01-30',1721,0,1676,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:37:00','0000-00-00','','','','N','18:37:00','20:41:03','','','N','Y',NULL,'O','N','Z87','','0000-00-00 00:00:00','2','19:06:21',0,'','reception','2025-10-31 18:37:59','darshan','2025-10-31 20:41:03'),(2126,0,0,'O','N','2526',1677,0,'2025-10-31','2026-01-30',1722,0,1677,'N','','N','','','NC','','N','D27','','N',99,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:38:00','0000-00-00','','','','N','18:38:00','19:31:07','','','N','Y',NULL,'O','N','Z88','','0000-00-00 00:00:00','4','18:38:54',0,'','drashti','2025-10-31 18:38:54','drarchit','2025-10-31 19:31:07'),(2127,0,0,'O','N','2526',1678,0,'2025-10-31','2026-01-30',1723,0,1678,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','20:46:03','','','N','Y',NULL,'O','N','Z89','','0000-00-00 00:00:00','2','19:06:21',0,'','reception','2025-10-31 18:40:06','darshan','2025-10-31 20:46:03'),(2128,0,0,'O','N','2526',1679,0,'2025-10-31','2026-01-30',1724,0,1679,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:42:00','0000-00-00','','','','N','18:42:00','19:50:15','','','N','Y',NULL,'O','N','L18','','0000-00-00 00:00:00','2','19:06:21',0,'','reception','2025-10-31 18:42:29','darshan','2025-10-31 19:50:15'),(2129,0,0,'O','N','2526',1680,0,'2025-10-31','2026-01-30',1725,0,1680,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','20:48:22','','','N','Y',NULL,'O','N','Z90','','0000-00-00 00:00:00','2','19:06:21',0,'','reception','2025-10-31 18:51:46','darshan','2025-10-31 20:48:22'),(2130,0,0,'O','N','2526',240,0,'2025-10-31','0000-00-00',255,0,240,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:07:00','0000-00-00','','','','N','19:07:00','20:06:33','','','N','Y',NULL,'O','O','L19','','0000-00-00 00:00:00','4','19:07:30',0,'','janvi','2025-10-31 19:07:30','drarchit','2025-10-31 20:06:33'),(2131,0,0,'O','N','2526',567,0,'2025-10-31','0000-00-00',594,0,567,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:14:00','0000-00-00','','','','N','19:14:00','19:19:58','','','N','Y',NULL,'O','O','Z91','','0000-00-00 00:00:00','6','19:14:44',0,'','manshi','2025-10-31 19:14:44','drsagar','2025-10-31 19:19:58'),(2132,0,0,'O','N','2526',1681,0,'2025-10-31','2026-01-30',1726,0,1681,'N','','N','','','INJECTION','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:29:00','0000-00-00','','','','N','19:29:00','00:00:00','','Y','N','Y',NULL,'O','N','Z92','','0000-00-00 00:00:00','4','19:29:24',0,'','drashti','2025-10-31 19:29:24','drarchit','2025-10-31 20:08:17'),(2133,0,0,'O','N','2526',1682,0,'2025-10-31','2026-01-30',1727,0,1682,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:38:00','0000-00-00','','','','N','19:38:00','20:10:14','','','N','Y',NULL,'O','N','Z93','','0000-00-00 00:00:00','6','19:38:59',0,'','manshi','2025-10-31 19:38:59','drsagar','2025-10-31 20:10:14'),(2134,0,0,'O','N','2526',1683,0,'2025-10-31','2026-01-30',1728,0,1683,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:56:00','0000-00-00','','','','N','20:56:00','21:23:32','','','N','Y',NULL,'O','N','Z94','','0000-00-00 00:00:00','2','20:56:06',0,'','reception','2025-10-31 20:56:06','darshan','2025-10-31 21:23:32'),(2135,0,0,'I','N','2526',0,120,'2025-10-31','2026-01-30',1729,0,0,'Y','Poison','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:45:00','2025-11-07','','1','mo','N','20:45:00','12:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-10-31 21:08:03','mo','2025-11-07 12:51:32'),(2136,0,0,'O','N','2526',1684,0,'2025-11-01','2026-01-31',1730,0,1684,'N','','N','','','EMR','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:10:00','0000-00-00','','','','N','09:10:00','00:00:00','','Y','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','09:10:31',0,'','urvashi','2025-11-01 09:10:31','drarchit','2025-11-01 11:25:15'),(2137,0,0,'O','N','2526',1685,0,'2025-11-01','2026-01-31',1731,0,1685,'N','','N','','','EMR','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:14:00','0000-00-00','','','','N','09:14:00','00:00:00','','','N','N',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','09:14:04',0,'','urvashi','2025-11-01 09:14:04','','0000-00-00 00:00:00'),(2138,0,0,'O','N','2526',1686,0,'2025-11-01','2026-01-31',1732,0,1686,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:14:00','0000-00-00','','','','N','09:14:00','11:34:25','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','2','09:14:27',0,'','reception','2025-11-01 09:14:27','darshan','2025-11-01 11:34:25'),(2139,0,0,'O','N','2526',1687,0,'2025-11-01','2026-01-31',1733,0,1687,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:16:00','0000-00-00','','','','N','09:16:00','14:14:08','','N','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','2','09:16:11',0,'','reception','2025-11-01 09:16:11','darshan','2025-11-01 14:14:08'),(2140,0,0,'O','N','2526',1688,0,'2025-11-01','2026-01-31',1734,0,1688,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:16:00','0000-00-00','','','','N','09:16:00','11:39:00','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','5','10:53:21',0,'','urvashi','2025-11-01 09:16:34','drjayant','2025-11-01 11:39:00'),(2141,0,0,'O','N','2526',1689,0,'2025-11-01','2026-01-31',1735,0,1689,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:47:00','0000-00-00','','','','N','09:47:00','11:06:41','','','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','09:47:22',0,'','urvashi','2025-11-01 09:47:22','darshan','2025-11-01 11:06:41'),(2142,0,0,'O','N','2526',1690,0,'2025-11-01','2026-01-31',1736,0,1690,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:48:00','0000-00-00','','','','N','09:48:00','14:24:53','','N','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','2','09:48:44',0,'','reception','2025-11-01 09:48:44','darshan','2025-11-01 14:24:53'),(2143,0,0,'O','N','2526',913,0,'2025-11-01','0000-00-00',944,0,913,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:59:00','0000-00-00','','','','N','09:59:00','10:42:35','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','09:59:48',0,'','reception','2025-11-01 09:59:48','darshan','2025-11-01 10:42:35'),(2144,0,0,'O','N','2526',1652,0,'2025-11-01','0000-00-00',1697,0,1652,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:02:00','0000-00-00','','','','N','10:02:00','12:50:36','','N','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','2','10:02:39',0,'','reception','2025-11-01 10:02:39','darshan','2025-11-01 12:50:36'),(2145,0,0,'O','N','2526',1691,0,'2025-11-01','2026-01-31',1737,0,1691,'N','','N','','','NV','','N','D06','','N',93,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:13:00','0000-00-00','','','','N','10:13:00','11:56:16','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','2','10:13:27',0,'','reception','2025-11-01 10:13:27','darshan','2025-11-01 11:56:16'),(2146,0,0,'O','N','2526',1692,0,'2025-11-01','2026-01-31',1738,0,1692,'N','','N','','','NV','','N','D06','','N',116,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:19:00','0000-00-00','','','','N','10:19:00','14:01:01','','N','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:19:30',0,'','drashti','2025-11-01 10:19:30','darshan','2025-11-01 14:01:01'),(2147,0,0,'O','N','2526',1693,0,'2025-11-01','2026-01-31',1739,0,1693,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:21:00','0000-00-00','','','','N','10:21:00','14:28:50','','N','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','10:21:56',0,'','reception','2025-11-01 10:21:56','darshan','2025-11-01 14:28:50'),(2148,0,0,'O','N','2526',1694,0,'2025-11-01','2026-01-31',1740,0,1694,'N','','N','','','','','N','D14','','N',117,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:23:00','0000-00-00','','','','N','10:23:00','11:02:25','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','7','10:23:39',0,'','manshi','2025-11-01 10:23:39','drridham','2025-11-01 11:02:25'),(2149,0,0,'O','N','2526',1607,0,'2025-11-01','0000-00-00',1652,0,1607,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:24:00','0000-00-00','','','','N','10:24:00','13:00:36','','N','N','Y',NULL,'O','O','Z10','','0000-00-00 00:00:00','2','10:24:53',0,'','reception','2025-11-01 10:24:53','darshan','2025-11-01 13:00:36'),(2150,0,0,'O','N','2526',1695,0,'2025-11-01','2026-01-31',1741,0,1695,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:25:00','0000-00-00','','','','N','10:25:00','12:08:19','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:25:04',0,'','drashti','2025-11-01 10:25:04','darshan','2025-11-01 12:08:19'),(2151,0,0,'O','N','2526',1696,0,'2025-11-01','2026-01-31',1742,0,1696,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','11:25:21','','','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:33:26',0,'','reception','2025-11-01 10:33:26','darshan','2025-11-01 11:25:21'),(2152,0,0,'O','N','2526',1697,0,'2025-11-01','2026-01-31',1743,0,1697,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:36:00','0000-00-00','','','','N','10:36:00','13:13:56','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','2','10:36:28',0,'','reception','2025-11-01 10:36:28','darshan','2025-11-01 13:13:55'),(2153,0,0,'O','N','2526',1172,0,'2025-11-01','0000-00-00',1211,0,1172,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:36:00','0000-00-00','','','','N','10:36:00','12:27:56','','','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','6','10:37:01',0,'','manshi','2025-11-01 10:37:01','drsagar','2025-11-01 12:27:56'),(2154,0,0,'O','N','2526',1033,0,'2025-11-01','0000-00-00',1067,0,1033,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','12:28:10','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','6','10:37:54',0,'','manshi','2025-11-01 10:37:54','drsagar','2025-11-01 12:28:10'),(2155,0,0,'O','N','2526',1149,0,'2025-11-01','0000-00-00',1189,0,1149,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','11:06:50','','','N','Y',NULL,'O','O','Z14','','0000-00-00 00:00:00','3','10:38:30',0,'','janvi','2025-11-01 10:38:30','drpratapsinh','2025-11-01 11:06:50'),(2156,0,0,'O','N','2526',800,0,'2025-11-01','0000-00-00',831,0,800,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','11:30:02','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','2','10:38:49',0,'','reception','2025-11-01 10:38:49','darshan','2025-11-01 11:30:02'),(2157,0,0,'O','N','2526',1698,0,'2025-11-01','2026-01-31',1744,0,1698,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','13:19:39','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','10:46:17',0,'','reception','2025-11-01 10:46:17','darshan','2025-11-01 13:19:39'),(2158,0,0,'O','N','2526',1699,0,'2025-11-01','2026-01-31',1745,0,1699,'N','','N','','','','','N','D02','','N',118,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:47:00','0000-00-00','','','','N','10:47:00','11:34:01','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','3','10:47:40',0,'','janvi','2025-11-01 10:47:40','drpratapsinh','2025-11-01 11:34:01'),(2159,0,0,'O','N','2526',1700,0,'2025-11-01','2026-01-31',1746,0,1700,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','13:23:07','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','2','10:48:40',0,'','reception','2025-11-01 10:48:40','darshan','2025-11-01 13:23:07'),(2160,0,0,'O','N','2526',1701,0,'2025-11-01','2026-01-31',1747,0,1701,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','11:02:39','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','7','10:48:41',0,'','manshi','2025-11-01 10:48:41','drridham','2025-11-01 11:02:39'),(2161,0,0,'O','N','2526',1702,0,'2025-11-01','2026-01-31',1748,0,1702,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:49:00','0000-00-00','','','','N','10:49:00','11:10:11','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','5','10:53:21',0,'','drashti','2025-11-01 10:49:15','drjayant','2025-11-01 11:10:11'),(2162,0,0,'O','N','2526',1261,0,'2025-11-01','0000-00-00',1302,0,1261,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:50:00','0000-00-00','','','','N','10:50:00','11:58:43','','','N','Y',NULL,'O','O','Z20','','0000-00-00 00:00:00','5','10:53:21',0,'','janvi','2025-11-01 10:50:17','drjayant','2025-11-01 11:58:43'),(2163,0,0,'O','N','2526',1703,0,'2025-11-01','2026-01-31',1749,0,1703,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','11:42:45','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','3','10:51:43',0,'','drashti','2025-11-01 10:51:42','drpratapsinh','2025-11-01 11:42:45'),(2164,0,0,'O','N','2526',1704,0,'2025-11-01','2026-01-31',1750,0,1704,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','13:20:00','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','4','10:54:55',0,'','drashti','2025-11-01 10:54:55','drarchit','2025-11-01 13:20:00'),(2165,0,0,'O','N','2526',1705,0,'2025-11-01','2026-01-31',1107,0,1705,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','13:21:26','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','5','10:59:48',0,'','drashti','2025-11-01 10:59:48','drjayant','2025-11-01 13:21:26'),(2166,0,0,'O','N','2526',1706,0,'2025-11-01','2026-01-31',1751,0,1706,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:00:00','0000-00-00','','','','N','11:00:00','12:31:04','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:06:41',0,'','reception','2025-11-01 11:00:32','darshan','2025-11-01 12:31:03'),(2167,0,0,'O','N','2526',287,0,'2025-11-01','0000-00-00',303,0,287,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','13:31:12','','','N','Y',NULL,'O','O','G03','','0000-00-00 00:00:00','4','11:05:12',0,'','janvi','2025-11-01 11:05:12','drarchit','2025-11-01 13:31:12'),(2168,0,0,'O','N','2526',1707,0,'2025-11-01','2026-01-31',1752,0,1707,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','13:29:31','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','2','11:25:21',0,'','reception','2025-11-01 11:08:42','darshan','2025-11-01 13:29:31'),(2169,0,0,'O','N','2526',1096,0,'2025-11-01','0000-00-00',1134,0,1096,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','13:40:38','','','N','Y',NULL,'O','O','Z24','','0000-00-00 00:00:00','2','11:25:21',0,'','reception','2025-11-01 11:09:18','darshan','2025-11-01 13:40:38'),(2170,0,0,'O','N','2526',1708,0,'2025-11-01','2026-01-31',1753,0,1708,'N','','N','','','','','N','D02','','N',119,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','11:52:29','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','3','11:12:02',0,'','janvi','2025-11-01 11:12:02','drpratapsinh','2025-11-01 11:52:29'),(2171,0,0,'O','N','2526',1709,0,'2025-11-01','2026-01-31',1754,0,1709,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','13:46:25','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','11:12:24',0,'','drashti','2025-11-01 11:12:24','drarchit','2025-11-01 13:46:25'),(2172,0,0,'O','N','2526',1710,0,'2025-11-01','2026-01-31',1152,0,1710,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','12:47:42','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','5','11:13:54',0,'','janvi','2025-11-01 11:13:54','drjayant','2025-11-01 12:47:42'),(2173,0,0,'O','N','2526',1711,0,'2025-11-01','2026-01-31',1755,0,1711,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','20:23:59','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','3','11:15:33',0,'','janvi','2025-11-01 11:15:33','drpratapsinh','2025-11-01 20:23:59'),(2174,0,0,'O','N','2526',1712,0,'2025-11-01','2026-01-31',1756,0,1712,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','11:38:49','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','5','11:15:51',0,'','reception','2025-11-01 11:15:51','drjayant','2025-11-01 11:38:49'),(2175,0,0,'O','N','2526',1713,0,'2025-11-01','2026-01-31',1757,0,1713,'N','','N','','','NC','','N','D27','','N',120,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','12:03:33','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','4','11:16:08',0,'','drashti','2025-11-01 11:16:08','drarchit','2025-11-01 12:03:33'),(2176,0,0,'O','N','2526',1714,0,'2025-11-01','2026-01-31',1758,0,1714,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','14:51:49','','N','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','2','11:25:21',0,'','reception','2025-11-01 11:17:40','darshan','2025-11-01 14:51:49'),(2177,0,0,'O','N','2526',1715,0,'2025-11-01','2026-01-31',1759,0,1715,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','11:57:42','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','3','11:19:52',0,'','drashti','2025-11-01 11:19:52','drpratapsinh','2025-11-01 11:57:42'),(2178,0,0,'O','N','2526',1716,0,'2025-11-01','2026-01-31',1760,0,1716,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','12:28:55','','N','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','2','11:25:21',0,'','reception','2025-11-01 11:19:57','darshan','2025-11-01 12:28:55'),(2179,0,0,'O','N','2526',1717,0,'2025-11-01','2026-01-31',1761,0,1717,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:22:00','0000-00-00','','','','N','11:22:00','13:22:33','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','4','11:22:47',0,'','janvi','2025-11-01 11:22:47','drarchit','2025-11-01 13:22:33'),(2180,0,0,'O','N','2526',1718,0,'2025-11-01','2026-01-31',1762,0,1718,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','12:15:04','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','4','11:25:53',0,'','drashti','2025-11-01 11:25:53','drarchit','2025-11-01 12:15:04'),(2181,0,0,'O','N','2526',1719,0,'2025-11-01','2026-01-31',1763,0,1719,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','12:33:13','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','4','11:31:22',0,'','drashti','2025-11-01 11:31:22','drarchit','2025-11-01 12:33:13'),(2182,0,0,'O','N','2526',1132,0,'2025-11-01','0000-00-00',1172,0,1132,'N','','N','','','','','N','D02','','N',82,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','11:58:30','','','N','Y',NULL,'O','O','Z34','','0000-00-00 00:00:00','3','11:32:57',0,'','janvi','2025-11-01 11:32:57','drpratapsinh','2025-11-01 11:58:30'),(2183,0,0,'O','N','2526',1255,0,'2025-11-01','0000-00-00',1296,0,1255,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','12:03:06','','','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','3','11:37:02',0,'','janvi','2025-11-01 11:37:02','drpratapsinh','2025-11-01 12:03:06'),(2184,0,0,'O','N','2526',1720,0,'2025-11-01','2026-01-31',1764,0,1720,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','12:54:26','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','2','12:08:19',0,'','reception','2025-11-01 11:40:55','darshan','2025-11-01 12:54:26'),(2185,0,0,'O','N','2526',1332,0,'2025-11-01','0000-00-00',1372,0,1332,'N','','N','','','','','N','D02','','N',95,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','12:07:52','','','N','Y',NULL,'O','O','Z36','','0000-00-00 00:00:00','3','11:42:31',0,'','janvi','2025-11-01 11:42:31','drpratapsinh','2025-11-01 12:07:52'),(2186,0,0,'O','N','2526',1721,0,'2025-11-01','2026-01-31',1765,0,1721,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','15:08:17','','N','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','12:08:19',0,'','reception','2025-11-01 11:45:18','darshan','2025-11-01 15:08:17'),(2187,0,0,'O','N','2526',1722,0,'2025-11-01','2026-01-31',1766,0,1722,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','20:25:04','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','3','11:46:19',0,'','janvi','2025-11-01 11:46:19','drpratapsinh','2025-11-01 20:25:04'),(2188,0,0,'O','N','2526',1723,0,'2025-11-01','2026-01-31',1767,0,1723,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','12:59:51','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','12:08:19',0,'','reception','2025-11-01 11:48:44','darshan','2025-11-01 12:59:51'),(2189,0,0,'O','N','2526',1724,0,'2025-11-01','2026-01-31',1768,0,1724,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:55:00','0000-00-00','','','','N','11:55:00','12:36:26','','N','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','4','11:56:09',0,'','janvi','2025-11-01 11:56:09','drarchit','2025-11-01 12:36:26'),(2190,0,0,'O','N','2526',1725,0,'2025-11-01','2026-01-31',1769,0,1725,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','13:05:17','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','12:08:19',0,'','reception','2025-11-01 12:00:18','darshan','2025-11-01 13:05:17'),(2191,0,0,'O','N','2526',1726,0,'2025-11-01','2026-01-31',1770,0,1726,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:03:00','0000-00-00','','','','N','12:03:00','14:08:58','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','2','12:08:19',0,'','reception','2025-11-01 12:03:54','darshan','2025-11-01 14:08:58'),(2192,0,0,'O','N','2526',376,0,'2025-11-01','0000-00-00',397,0,376,'N','','N','','','FV','','N','D06','','N',31,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:08:00','0000-00-00','','','','N','12:08:00','14:24:07','','','N','Y',NULL,'O','O','Z41','','0000-00-00 00:00:00','2','12:59:51',0,'','reception','2025-11-01 12:08:28','darshan','2025-11-01 14:24:07'),(2193,0,0,'O','N','2526',1727,0,'2025-11-01','2026-01-31',1103,0,1727,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:16:00','0000-00-00','','','','N','12:16:00','00:00:00','','','N','N',NULL,'O','N','I04','','0000-00-00 00:00:00','4','12:16:43',0,'','drashti','2025-11-01 12:16:43','','0000-00-00 00:00:00'),(2194,0,0,'O','N','2526',1728,0,'2025-11-01','2026-01-31',1771,0,1728,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:16:00','0000-00-00','','','','N','12:16:00','12:39:48','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','5','12:17:12',0,'','janvi','2025-11-01 12:17:12','drjayant','2025-11-01 12:39:48'),(2195,0,0,'I','N','2526',0,121,'2025-11-01','2026-01-31',1772,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','2025-11-08','','1','mo','N','12:00:00','09:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-01 12:19:42','mo','2025-11-08 09:07:23'),(2196,0,0,'O','N','2526',1729,0,'2025-11-01','2026-01-31',1773,0,1729,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:20:00','0000-00-00','','','','N','12:20:00','12:28:41','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','6','12:20:46',0,'','manshi','2025-11-01 12:20:46','drsagar','2025-11-01 12:28:41'),(2197,0,0,'O','N','2526',1730,0,'2025-11-01','2026-01-31',1774,0,1730,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:23:00','0000-00-00','','','','N','12:23:00','13:08:18','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','12:59:51',0,'','reception','2025-11-01 12:23:22','darshan','2025-11-01 13:08:18'),(2198,0,0,'O','N','2526',1731,0,'2025-11-01','2026-01-31',1775,0,1731,'N','','N','','','NV','','N','D06','','N',121,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:26:00','0000-00-00','','','','N','12:26:00','15:12:36','','N','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','2','12:59:51',0,'','reception','2025-11-01 12:26:57','darshan','2025-11-01 15:12:36'),(2199,0,0,'O','N','2526',1732,0,'2025-11-01','2026-01-31',1776,0,1732,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:34:00','0000-00-00','','','','N','12:34:00','12:51:57','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','5','12:34:17',0,'','janvi','2025-11-01 12:34:17','drjayant','2025-11-01 12:51:57'),(2200,0,0,'O','N','2526',1733,0,'2025-11-01','2026-01-31',1777,0,1733,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:45:00','0000-00-00','','','','N','12:45:00','13:52:23','','N','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','4','12:45:05',0,'','drashti','2025-11-01 12:45:05','drarchit','2025-11-01 13:52:23'),(2201,0,0,'O','N','2526',1734,0,'2025-11-01','2026-01-31',1778,0,1734,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:48:00','0000-00-00','','','','N','12:48:00','14:41:27','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','12:59:51',0,'','reception','2025-11-01 12:49:04','darshan','2025-11-01 14:41:27'),(2202,0,0,'O','N','2526',1735,0,'2025-11-01','2026-01-31',1779,0,1735,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:51:00','0000-00-00','','','','N','12:51:00','13:40:10','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:59:51',0,'','reception','2025-11-01 12:51:49','darshan','2025-11-01 13:40:10'),(2203,0,0,'O','N','2526',1736,0,'2025-11-01','2026-01-31',1780,0,1736,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:54:00','0000-00-00','','','','N','12:54:00','15:08:37','','N','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','12:59:51',0,'','reception','2025-11-01 12:54:56','darshan','2025-11-01 15:08:37'),(2204,0,0,'O','N','2526',1737,0,'2025-11-01','2026-01-31',1781,0,1737,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:57:00','0000-00-00','','','','N','12:57:00','13:05:28','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','5','12:57:18',0,'','drashti','2025-11-01 12:57:17','drjayant','2025-11-01 13:05:28'),(2205,0,0,'O','N','2526',1738,0,'2025-11-01','2026-01-31',1782,0,1738,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:58:00','0000-00-00','','','','N','12:58:00','13:28:04','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','5','12:58:28',0,'','janvi','2025-11-01 12:58:28','drjayant','2025-11-01 13:28:04'),(2206,0,0,'O','N','2526',738,0,'2025-11-01','0000-00-00',769,0,738,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:19:00','0000-00-00','','','','N','14:19:00','15:00:59','','','N','Y',NULL,'O','O','Z50','','0000-00-00 00:00:00','2','14:19:26',0,'','reception','2025-11-01 14:19:26','darshan','2025-11-01 15:00:59'),(2207,0,0,'O','N','2526',1739,0,'2025-11-01','2026-01-31',1783,0,1739,'N','','N','','','','','N','D02','','N',122,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:26:00','0000-00-00','','','','N','16:26:00','20:25:43','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','3','16:26:55',0,'','reception','2025-11-01 16:26:55','drpratapsinh','2025-11-01 20:25:43'),(2208,0,0,'O','N','2526',1740,0,'2025-11-01','2026-01-31',1784,0,1740,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:05:00','0000-00-00','','','','N','17:05:00','19:31:26','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','6','17:05:54',0,'','manshi','2025-11-01 17:05:54','drsagar','2025-11-01 19:31:26'),(2209,0,0,'O','N','2526',1004,0,'2025-11-01','0000-00-00',1036,0,1004,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:26:00','0000-00-00','','','','N','17:26:00','20:26:33','','','N','Y',NULL,'O','O','Z53','','0000-00-00 00:00:00','3','17:26:25',0,'','reception','2025-11-01 17:26:25','drpratapsinh','2025-11-01 20:26:33'),(2210,0,0,'O','N','2526',1741,0,'2025-11-01','2026-01-31',1785,0,1741,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:30:00','0000-00-00','','','','N','17:30:00','20:23:31','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','3','17:30:57',0,'','janvi','2025-11-01 17:30:57','drpratapsinh','2025-11-01 20:23:31'),(2211,0,0,'O','N','2526',1742,0,'2025-11-01','2026-01-31',1786,0,1742,'N','','N','','','','','N','D02','','N',41,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:08:00','0000-00-00','','','','N','18:08:00','20:20:40','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','3','18:08:43',0,'','drashti','2025-11-01 18:08:43','drpratapsinh','2025-11-01 20:20:40'),(2212,0,0,'O','N','2526',1743,0,'2025-11-01','2026-01-31',1787,0,1743,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','20:20:05','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','3','18:09:06',0,'','reception','2025-11-01 18:09:06','drpratapsinh','2025-11-01 20:20:05'),(2213,0,0,'O','N','2526',431,0,'2025-11-01','0000-00-00',454,0,431,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','18:41:38','','','N','Y',NULL,'O','O','Z57','','0000-00-00 00:00:00','3','18:12:42',0,'','reception','2025-11-01 18:12:42','drpratapsinh','2025-11-01 18:41:38'),(2214,0,0,'I','N','2526',0,122,'2025-11-01','2026-01-31',1788,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','2025-11-02','','1','mo','N','18:00:00','17:20:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-01 18:17:46','riya','2025-11-02 17:33:19'),(2215,0,0,'O','N','2526',364,0,'2025-11-01','0000-00-00',380,0,364,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','18:41:12','','','N','Y',NULL,'O','O','Z58','','0000-00-00 00:00:00','3','18:19:54',0,'','reception','2025-11-01 18:19:54','drpratapsinh','2025-11-01 18:41:12'),(2216,0,0,'O','N','2526',901,0,'2025-11-01','0000-00-00',932,0,901,'N','','N','','','','Y','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','00:00:00','','','N','Y',NULL,'O','O','Z59','','0000-00-00 00:00:00','6','18:40:15',0,'','manshi','2025-11-01 18:40:15','','0000-00-00 00:00:00'),(2217,0,0,'O','N','2526',1307,0,'2025-11-01','0000-00-00',1346,0,1307,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:15:00','0000-00-00','','','','N','19:15:00','20:19:04','','','N','Y',NULL,'O','O','Z60','','0000-00-00 00:00:00','3','19:15:40',0,'','manshi','2025-11-01 19:15:40','drpratapsinh','2025-11-01 20:19:04'),(2218,0,0,'O','N','2526',1744,0,'2025-11-01','2026-01-31',1789,0,1744,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:19:00','0000-00-00','','','','N','19:19:00','19:30:54','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','6','19:19:32',0,'','manshi','2025-11-01 19:19:32','drsagar','2025-11-01 19:30:54'),(2219,0,0,'I','N','2526',0,123,'2025-11-01','2026-01-31',1790,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:00:00','2025-11-01','','1','','N','20:00:00','20:19:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-01 19:52:30','riya','2025-11-01 20:22:47'),(2220,0,0,'O','N','2526',1745,0,'2025-11-01','2026-01-31',1791,0,1745,'N','','N','','','','Y','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:09:00','0000-00-00','','','','N','20:09:00','00:00:00','','','N','N',NULL,'O','N','Z62','','0000-00-00 00:00:00','6','20:09:23',0,'','manshi','2025-11-01 20:09:23','','0000-00-00 00:00:00'),(2221,0,0,'O','N','2526',1746,0,'2025-11-01','2026-01-31',1792,0,1746,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:34:00','0000-00-00','','','','N','20:34:00','00:00:00','','','N','N',NULL,'O','N','Z63','','0000-00-00 00:00:00','3','20:34:49',0,'','janvi','2025-11-01 20:34:49','','0000-00-00 00:00:00'),(2222,0,0,'O','N','2526',1747,0,'2025-11-02','2026-02-01',1456,0,1747,'N','','N','','','','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:15:00','0000-00-00','','','','N','09:15:00','00:00:00','','','N','N',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','09:40:07',0,'','shweta','2025-11-02 09:40:07','','0000-00-00 00:00:00'),(2223,0,0,'O','N','2526',1669,0,'2025-11-02','0000-00-00',1714,0,1669,'N','','N','','','','Y','N','D02','','N',4,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','00:00:00','','','N','N',NULL,'O','O','Z02','','0000-00-00 00:00:00','3','11:33:15',0,'','shweta','2025-11-02 11:33:14','','0000-00-00 00:00:00'),(2224,0,0,'O','N','2526',1748,0,'2025-11-02','2026-02-01',1793,0,1748,'N','','N','','','','Y','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','00:00:00','','','N','N',NULL,'O','N','Z03','','0000-00-00 00:00:00','7','11:51:49',0,'','shweta','2025-11-02 11:51:49','','0000-00-00 00:00:00'),(2225,0,0,'O','N','2526',1749,0,'2025-11-02','2026-02-01',1794,0,1749,'N','','N','','','','Y','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:51:00','0000-00-00','','','','N','12:51:00','00:00:00','','','N','N',NULL,'O','N','Z04','','0000-00-00 00:00:00','7','12:51:52',0,'','shweta','2025-11-02 12:51:52','','0000-00-00 00:00:00'),(2226,0,0,'I','N','2526',0,124,'2025-11-02','2026-02-01',1795,0,0,'Y','Accident','N','','','','N','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','2025-11-03','','1','mo','N','13:00:00','18:55:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-02 13:04:43','mo','2025-11-03 19:07:56'),(2227,0,0,'O','N','2526',1068,0,'2025-11-03','0000-00-00',1108,0,1068,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:05:00','0000-00-00','','','','N','09:05:00','00:00:00','','','N','N',NULL,'O','O','Z01','','0000-00-00 00:00:00','4','09:05:31',0,'','priyanshi','2025-11-03 09:05:31','','0000-00-00 00:00:00'),(2228,0,0,'O','N','2526',1750,0,'2025-11-03','2026-02-02',1796,0,1750,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:08:00','0000-00-00','','','','N','09:08:00','00:00:00','','','N','N',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','09:08:33',0,'','priyanshi','2025-11-03 09:08:33','','0000-00-00 00:00:00'),(2229,0,0,'O','N','2526',1751,0,'2025-11-03','2026-02-02',1797,0,1751,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:08:00','0000-00-00','','','','N','09:08:00','11:12:18','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','09:08:39',0,'','reception','2025-11-03 09:08:39','darshan','2025-11-03 11:12:18'),(2230,0,0,'O','N','2526',1752,0,'2025-11-03','2026-02-02',1798,0,1752,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:11:00','0000-00-00','','','','N','09:11:00','11:00:41','','','N','Y',NULL,'O','N','E02','','0000-00-00 00:00:00','2','09:11:15',0,'','reception','2025-11-03 09:11:15','darshan','2025-11-03 11:00:41'),(2231,0,0,'O','N','2526',1753,0,'2025-11-03','2026-02-02',1799,0,1753,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:11:00','0000-00-00','','','','N','09:11:00','11:31:16','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','5','09:11:40',0,'','priyanshi','2025-11-03 09:11:40','drjayant','2025-11-03 11:31:16'),(2232,0,0,'O','N','2526',1307,0,'2025-11-03','0000-00-00',1346,0,1307,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:16:00','0000-00-00','','','','N','09:16:00','10:21:37','','','N','Y',NULL,'O','O','Z04','','0000-00-00 00:00:00','3','09:16:47',0,'','priyanshi','2025-11-03 09:16:47','drpratapsinh','2025-11-03 10:21:37'),(2233,0,0,'O','N','2526',1414,0,'2025-11-03','0000-00-00',1454,0,1414,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:17:00','0000-00-00','','','','N','09:17:00','00:00:00','','','N','N',NULL,'O','O','Z05','','0000-00-00 00:00:00','4','09:17:48',0,'','priyanshi','2025-11-03 09:17:48','','0000-00-00 00:00:00'),(2234,0,0,'O','N','2526',1747,0,'2025-11-03','0000-00-00',1456,0,1747,'N','','N','','','INJECTION','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:19:00','0000-00-00','','','','N','09:19:00','00:00:00','','','N','N',NULL,'O','O','Z06','','0000-00-00 00:00:00','4','09:19:10',0,'','priyanshi','2025-11-03 09:19:09','','0000-00-00 00:00:00'),(2235,0,0,'O','N','2526',1009,0,'2025-11-03','0000-00-00',1042,0,1009,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:20:00','0000-00-00','','','','N','09:20:00','11:31:04','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','5','09:20:10',0,'','priyanshi','2025-11-03 09:20:10','drjayant','2025-11-03 11:31:04'),(2236,0,0,'O','N','2526',1754,0,'2025-11-03','2026-02-02',1800,0,1754,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:22:00','0000-00-00','','','','N','09:22:00','00:00:00','','','N','N',NULL,'O','N','Z08','','0000-00-00 00:00:00','4','09:22:11',0,'','reception','2025-11-03 09:22:11','','0000-00-00 00:00:00'),(2237,0,0,'O','N','2526',1755,0,'2025-11-03','2026-02-02',1801,0,1755,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:26:00','0000-00-00','','','','N','09:26:00','10:46:16','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','3','09:26:19',0,'','priyanshi','2025-11-03 09:26:19','drpratapsinh','2025-11-03 10:46:16'),(2238,0,0,'O','N','2526',1756,0,'2025-11-03','2026-02-02',1802,0,1756,'N','','N','','','','','N','D02','','N',108,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:50:00','0000-00-00','','','','N','09:50:00','18:02:13','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','3','09:50:38',0,'','janvi','2025-11-03 09:50:38','drpratapsinh','2025-11-03 18:02:13'),(2239,0,0,'O','N','2526',1757,0,'2025-11-03','2026-02-02',1803,0,1757,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:52:00','0000-00-00','','','','N','09:52:00','11:26:59','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','2','09:52:42',0,'','reception','2025-11-03 09:52:42','darshan','2025-11-03 11:26:59'),(2240,0,0,'I','N','2526',1719,125,'2025-11-03','2026-02-02',1763,0,1719,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:54:00','2025-11-04','','1','mo','N','09:54:00','11:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-03 09:57:51','mo','2025-11-04 11:31:39'),(2241,0,0,'O','N','2526',1758,0,'2025-11-03','2026-02-02',1804,0,1758,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','0000-00-00','','','','N','10:00:00','13:52:02','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:00:11',0,'','reception','2025-11-03 10:00:11','darshan','2025-11-03 13:52:02'),(2242,0,0,'O','N','2526',1224,0,'2025-11-03','0000-00-00',1265,0,1224,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:11:00','0000-00-00','','','','N','10:11:00','11:01:09','','','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','6','10:11:46',0,'','manshi','2025-11-03 10:11:46','drsagar','2025-11-03 11:01:09'),(2243,0,0,'O','N','2526',1203,0,'2025-11-03','0000-00-00',1242,0,1203,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:12:00','0000-00-00','','','','N','10:12:00','10:21:13','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','3','10:12:15',0,'','janvi','2025-11-03 10:12:15','drpratapsinh','2025-11-03 10:21:13'),(2244,0,0,'O','N','2526',1223,0,'2025-11-03','0000-00-00',1264,0,1223,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','0000-00-00','','','','N','10:15:00','10:42:37','','','N','Y',NULL,'O','O','Z14','','0000-00-00 00:00:00','3','10:15:58',0,'','drashti','2025-11-03 10:15:58','drpratapsinh','2025-11-03 10:42:37'),(2245,0,0,'O','N','2526',1759,0,'2025-11-03','2026-02-02',1805,0,1759,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:20:00','0000-00-00','','','','N','10:20:00','14:21:51','','N','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','10:20:56',0,'','reception','2025-11-03 10:20:56','darshan','2025-11-03 14:21:51'),(2246,0,0,'O','N','2526',1288,0,'2025-11-03','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:34:00','0000-00-00','','','','N','10:34:00','10:43:11','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','3','10:34:21',0,'','drashti','2025-11-03 10:34:21','drpratapsinh','2025-11-03 10:43:11'),(2247,0,0,'O','N','2526',1760,0,'2025-11-03','2026-02-02',1806,0,1760,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:35:00','0000-00-00','','','','N','10:35:00','10:45:54','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','3','10:35:22',0,'','drashti','2025-11-03 10:35:22','drpratapsinh','2025-11-03 10:45:54'),(2248,0,0,'O','N','2526',1761,0,'2025-11-03','2026-02-02',1807,0,1761,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','12:08:12','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','10:38:28',0,'','reception','2025-11-03 10:38:28','darshan','2025-11-03 12:08:12'),(2249,0,0,'O','N','2526',1762,0,'2025-11-03','2026-02-02',1808,0,1762,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:41:00','0000-00-00','','','','N','10:41:00','00:00:00','','','N','N',NULL,'O','N','Z19','','0000-00-00 00:00:00','4','10:41:16',0,'','janvi','2025-11-03 10:41:16','','0000-00-00 00:00:00'),(2250,0,0,'O','N','2526',1763,0,'2025-11-03','2026-02-02',1809,0,1763,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:42:00','0000-00-00','','','','N','10:42:00','12:22:23','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','5','10:42:52',0,'','janvi','2025-11-03 10:42:52','drjayant','2025-11-03 12:22:23'),(2251,0,0,'O','N','2526',1764,0,'2025-11-03','2026-02-02',1810,0,1764,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','12:12:00','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','2','10:44:25',0,'','reception','2025-11-03 10:44:25','darshan','2025-11-03 12:12:00'),(2252,0,0,'O','N','2526',1765,0,'2025-11-03','2026-02-02',1811,0,1765,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','12:15:12','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','2','10:48:28',0,'','reception','2025-11-03 10:48:28','darshan','2025-11-03 12:15:12'),(2253,0,0,'O','N','2526',1766,0,'2025-11-03','2026-02-02',1812,0,1766,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','11:13:43','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','5','10:48:48',0,'','drashti','2025-11-03 10:48:48','drjayant','2025-11-03 11:13:43'),(2254,0,0,'O','N','2526',1767,0,'2025-11-03','2026-02-02',1813,0,1767,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','14:22:14','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:51:10',0,'','reception','2025-11-03 10:51:10','darshan','2025-11-03 14:22:14'),(2255,0,0,'O','N','2526',1067,0,'2025-11-03','0000-00-00',1106,0,1067,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','11:22:15','','','N','Y',NULL,'O','O','Z24','','0000-00-00 00:00:00','3','10:51:12',0,'','janvi','2025-11-03 10:51:12','drpratapsinh','2025-11-03 11:22:15'),(2256,0,0,'O','N','2526',1768,0,'2025-11-03','2026-02-02',1814,0,1768,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','11:19:50','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','5','10:51:39',0,'','drashti','2025-11-03 10:51:39','drjayant','2025-11-03 11:19:50'),(2257,0,0,'O','N','2526',1284,0,'2025-11-03','0000-00-00',1323,0,1284,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','12:20:41','','','N','Y',NULL,'O','O','Z26','','0000-00-00 00:00:00','2','10:56:31',0,'','reception','2025-11-03 10:56:31','darshan','2025-11-03 12:20:41'),(2258,0,0,'O','N','2526',1769,0,'2025-11-03','2026-02-02',1815,0,1769,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','11:51:09','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','2','10:58:01',0,'','reception','2025-11-03 10:58:01','darshan','2025-11-03 11:51:09'),(2259,0,0,'O','N','2526',1770,0,'2025-11-03','2026-02-02',1816,0,1770,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','11:29:01','','','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:59:35',0,'','reception','2025-11-03 10:59:35','darshan','2025-11-03 11:29:01'),(2260,0,0,'O','N','2526',1771,0,'2025-11-03','2026-02-02',1817,0,1771,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:00:00','0000-00-00','','','','N','11:00:00','17:54:51','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','3','11:00:59',0,'','drashti','2025-11-03 11:00:59','drpratapsinh','2025-11-03 17:54:51'),(2261,0,0,'O','N','2526',1772,0,'2025-11-03','2026-02-02',1818,0,1772,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','12:27:11','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','2','11:01:08',0,'','reception','2025-11-03 11:01:08','darshan','2025-11-03 12:27:11'),(2262,0,0,'O','N','2526',1773,0,'2025-11-03','2026-02-02',1819,0,1773,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','14:34:07','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','2','11:02:55',0,'','reception','2025-11-03 11:02:55','darshan','2025-11-03 14:34:07'),(2263,0,0,'O','N','2526',1774,0,'2025-11-03','2026-02-02',1820,0,1774,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','17:50:37','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','3','11:05:05',0,'','shweta','2025-11-03 11:05:05','drpratapsinh','2025-11-03 17:50:37'),(2264,0,0,'I','N','2526',1658,126,'2025-11-02','2026-02-01',1703,0,1658,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','23:00:00','2025-11-04','','1','mo','N','23:00:00','18:50:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-03 11:07:01','mo','2025-11-04 19:13:47'),(2265,0,0,'O','N','2526',1775,0,'2025-11-03','2026-02-02',1821,0,1775,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','11:28:43','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','3','11:07:03',0,'','shweta','2025-11-03 11:07:03','drpratapsinh','2025-11-03 11:28:43'),(2266,0,0,'O','N','2526',1776,0,'2025-11-03','2026-02-02',1253,0,1776,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','11:30:29','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','5','11:08:14',0,'','drashti','2025-11-03 11:08:14','drjayant','2025-11-03 11:30:29'),(2267,0,0,'O','N','2526',1777,0,'2025-11-03','2026-02-02',1822,0,1777,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','12:02:23','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','2','11:15:36',0,'','shweta','2025-11-03 11:15:36','darshan','2025-11-03 12:02:23'),(2268,0,0,'O','N','2526',1778,0,'2025-11-03','2026-02-02',1823,0,1778,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','14:28:46','','N','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','2','11:15:38',0,'','reception','2025-11-03 11:15:38','darshan','2025-11-03 14:28:46'),(2269,0,0,'O','N','2526',1299,0,'2025-11-03','0000-00-00',1338,0,1299,'N','','N','','','FOLLOWUP E','','N','D06','','N',21,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','12:58:58','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','2','11:18:02',0,'','reception','2025-11-03 11:18:02','darshan','2025-11-03 12:58:58'),(2270,0,0,'O','N','2526',514,0,'2025-11-03','0000-00-00',539,0,514,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','13:00:13','','','N','Y',NULL,'O','O','Z36','','0000-00-00 00:00:00','6','11:20:36',0,'','manshi','2025-11-03 11:20:36','drsagar','2025-11-03 13:00:13'),(2271,0,0,'O','N','2526',1779,0,'2025-11-03','2026-02-02',1824,0,1779,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','13:03:09','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','11:26:59',0,'','reception','2025-11-03 11:21:02','darshan','2025-11-03 13:03:09'),(2272,0,0,'O','N','2526',1780,0,'2025-11-03','2026-02-02',1825,0,1780,'N','','N','','','FV','','N','D06','','N',125,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','13:23:37','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','2','11:30:13',0,'','reception','2025-11-03 11:30:13','darshan','2025-11-03 13:23:37'),(2273,0,0,'O','N','2526',1781,0,'2025-11-03','2026-02-02',1826,0,1781,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','12:15:01','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','5','11:31:03',0,'','drashti','2025-11-03 11:31:03','drjayant','2025-11-03 12:15:01'),(2274,0,0,'O','N','2526',1782,0,'2025-11-03','2026-02-02',1827,0,1782,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:34:00','0000-00-00','','','','N','11:34:00','12:13:57','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','5','11:34:30',0,'','drashti','2025-11-03 11:34:30','drjayant','2025-11-03 12:13:57'),(2275,0,0,'O','N','2526',1432,0,'2025-11-03','0000-00-00',1473,0,1432,'N','','N','','','','','N','D14','','N',102,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','12:45:27','','','N','Y',NULL,'O','O','Z41','','0000-00-00 00:00:00','7','11:35:51',0,'','manshi','2025-11-03 11:35:50','drridham','2025-11-03 12:45:27'),(2276,0,0,'O','N','2526',1783,0,'2025-11-03','2026-02-02',1828,0,1783,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','12:30:54','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:51:09',0,'','reception','2025-11-03 11:36:05','darshan','2025-11-03 12:30:54'),(2277,0,0,'O','N','2526',1669,0,'2025-11-03','0000-00-00',1714,0,1669,'N','','N','','','','','N','D02','','N',4,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','12:19:38','','','N','Y',NULL,'O','O','Z42','','0000-00-00 00:00:00','3','11:46:20',0,'','drashti','2025-11-03 11:46:20','drpratapsinh','2025-11-03 12:19:38'),(2278,0,0,'O','N','2526',1784,0,'2025-11-03','2026-02-02',1829,0,1784,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:53:00','0000-00-00','','','','N','11:53:00','13:35:03','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','2','12:02:23',0,'','reception','2025-11-03 11:53:42','darshan','2025-11-03 13:35:03'),(2279,0,0,'O','N','2526',1785,0,'2025-11-03','2026-02-02',1830,0,1785,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','12:39:15','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','12:02:23',0,'','reception','2025-11-03 11:58:40','darshan','2025-11-03 12:39:15'),(2280,0,0,'O','N','2526',1786,0,'2025-11-03','2026-02-02',1831,0,1786,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:04:00','0000-00-00','','','','N','12:04:00','12:21:57','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','5','12:04:10',0,'','drashti','2025-11-03 12:04:10','drjayant','2025-11-03 12:21:57'),(2281,0,0,'O','N','2526',1125,0,'2025-11-03','0000-00-00',1095,0,1125,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:05:00','0000-00-00','','','','N','12:05:00','13:00:28','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','6','12:05:16',0,'','manshi','2025-11-03 12:05:16','drsagar','2025-11-03 13:00:28'),(2282,0,0,'O','N','2526',1419,0,'2025-11-03','0000-00-00',1460,0,1419,'N','','N','','','FOLLOWUP E','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:05:00','0000-00-00','','','','N','12:05:00','13:37:56','','','N','Y',NULL,'O','O','Z46','','0000-00-00 00:00:00','2','12:12:00',0,'','reception','2025-11-03 12:05:34','darshan','2025-11-03 13:37:56'),(2283,0,0,'O','N','2526',1787,0,'2025-11-03','2026-02-02',1832,0,1787,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','13:00:03','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','6','12:06:58',0,'','manshi','2025-11-03 12:06:58','drsagar','2025-11-03 13:00:03'),(2284,0,0,'O','N','2526',1788,0,'2025-11-03','2026-02-02',1833,0,1788,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:07:00','0000-00-00','','','','N','12:07:00','12:42:10','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','12:12:00',0,'','reception','2025-11-03 12:07:37','darshan','2025-11-03 12:42:10'),(2285,0,0,'O','N','2526',1789,0,'2025-11-03','2026-02-02',1834,0,1789,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:13:00','0000-00-00','','','','N','12:13:00','14:02:30','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','2','12:20:41',0,'','reception','2025-11-03 12:13:48','darshan','2025-11-03 14:02:30'),(2286,0,0,'O','N','2526',1790,0,'2025-11-03','2026-02-02',1835,0,1790,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:16:00','0000-00-00','','','','N','12:16:00','13:16:00','','','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','2','12:20:41',0,'','reception','2025-11-03 12:16:42','darshan','2025-11-03 13:16:00'),(2287,0,0,'O','N','2526',1791,0,'2025-11-03','2026-02-02',1836,0,1791,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:17:00','0000-00-00','','','','N','12:17:00','12:50:17','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','6','12:17:33',0,'','manshi','2025-11-03 12:17:33','drsagar','2025-11-03 12:50:17'),(2288,0,0,'O','N','2526',1792,0,'2025-11-03','2026-02-02',1837,0,1792,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:23:00','0000-00-00','','','','N','12:23:00','12:39:59','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','6','12:23:06',0,'','manshi','2025-11-03 12:23:06','drsagar','2025-11-03 12:39:59'),(2289,0,0,'O','N','2526',1793,0,'2025-11-03','2026-02-02',1838,0,1793,'N','','N','','','','','N','D02','','N',126,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','13:39:58','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','3','12:27:34',0,'','shweta','2025-11-03 12:27:34','drpratapsinh','2025-11-03 13:39:58'),(2290,0,0,'O','N','2526',1162,0,'2025-11-03','0000-00-00',1201,0,1162,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:29:00','0000-00-00','','','','N','12:29:00','17:36:05','','','N','Y',NULL,'O','O','Z52','','0000-00-00 00:00:00','3','12:29:12',0,'','shweta','2025-11-03 12:29:11','drpratapsinh','2025-11-03 17:36:05'),(2291,0,0,'O','N','2526',1794,0,'2025-11-03','2026-02-02',1839,0,1794,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:29:00','0000-00-00','','','','N','12:29:00','12:47:11','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','2','12:30:54',0,'','reception','2025-11-03 12:29:30','darshan','2025-11-03 12:47:11'),(2292,0,0,'O','N','2526',1795,0,'2025-11-03','2026-02-02',1840,0,1795,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:34:00','0000-00-00','','','','N','12:34:00','12:59:26','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','6','12:34:18',0,'','manshi','2025-11-03 12:34:18','drsagar','2025-11-03 12:59:26'),(2293,0,0,'O','N','2526',1796,0,'2025-11-03','2026-02-02',1841,0,1796,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:34:00','0000-00-00','','','','N','12:34:00','13:08:28','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','12:39:15',0,'','reception','2025-11-03 12:34:28','darshan','2025-11-03 13:08:28'),(2294,0,0,'O','N','2526',1797,0,'2025-11-03','2026-02-02',1842,0,1797,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:36:00','0000-00-00','','','','N','12:36:00','17:05:08','','N','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','2','12:39:15',0,'','reception','2025-11-03 12:36:47','darshan','2025-11-03 17:05:08'),(2295,0,0,'O','N','2526',1798,0,'2025-11-03','2026-02-02',1843,0,1798,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:37:00','0000-00-00','','','','N','12:37:00','13:03:42','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','5','12:37:16',0,'','shweta','2025-11-03 12:37:16','drjayant','2025-11-03 13:03:42'),(2296,0,0,'O','N','2526',1799,0,'2025-11-03','2026-02-02',1844,0,1799,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:46:00','0000-00-00','','','','N','12:46:00','13:11:35','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:47:11',0,'','reception','2025-11-03 12:46:08','darshan','2025-11-03 13:11:35'),(2297,0,0,'O','N','2526',1800,0,'2025-11-03','2026-02-02',1845,0,1800,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:52:00','0000-00-00','','','','N','12:52:00','14:28:05','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','2','12:52:13',0,'','reception','2025-11-03 12:52:13','darshan','2025-11-03 14:28:05'),(2298,0,0,'I','N','2526',0,127,'2025-11-03','2026-02-02',1846,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','2025-11-07','','1','mo','N','13:00:00','11:50:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-03 13:04:41','mo','2025-11-07 12:32:55'),(2299,0,0,'O','N','2526',1801,0,'2025-11-03','2026-02-02',1847,0,1801,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:26:00','0000-00-00','','','','N','13:26:00','13:31:19','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','6','13:26:19',0,'','manshi','2025-11-03 13:26:19','drsagar','2025-11-03 13:31:19'),(2300,0,0,'O','N','2526',1802,0,'2025-11-03','2026-02-02',1848,0,1802,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:05:00','0000-00-00','','','','N','14:05:00','17:36:56','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','3','14:05:14',0,'','shweta','2025-11-03 14:05:14','drpratapsinh','2025-11-03 17:36:56'),(2301,0,0,'O','N','2526',1803,0,'2025-11-03','2026-02-02',1849,0,1803,'N','','N','','','','','N','D02','','N',128,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:27:00','0000-00-00','','','','N','14:27:00','17:54:20','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','3','14:27:22',0,'','priyanshi','2025-11-03 14:27:22','drpratapsinh','2025-11-03 17:54:20'),(2302,0,0,'O','N','2526',1288,0,'2025-11-03','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:30:00','0000-00-00','','','','N','14:30:00','17:36:16','','','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','3','14:30:37',0,'','priyanshi','2025-11-03 14:30:37','drpratapsinh','2025-11-03 17:36:16'),(2303,0,0,'O','N','2526',1804,0,'2025-11-03','2026-02-02',1850,0,1804,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:07:00','0000-00-00','','','','N','15:07:00','18:02:33','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','3','15:07:43',0,'','priyanshi','2025-11-03 15:07:43','drpratapsinh','2025-11-03 18:02:33'),(2304,0,0,'O','N','2526',1805,0,'2025-11-03','2026-02-02',1851,0,1805,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:15:00','0000-00-00','','','','N','16:15:00','17:45:44','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','2','16:15:04',0,'','reception','2025-11-03 16:15:04','darshan','2025-11-03 17:45:44'),(2305,0,0,'O','N','2526',1806,0,'2025-11-03','2026-02-02',1852,0,1806,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:21:00','0000-00-00','','','','N','16:21:00','18:46:32','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:21:52',0,'','reception','2025-11-03 16:21:51','darshan','2025-11-03 18:46:32'),(2306,0,0,'O','N','2526',1807,0,'2025-11-03','2026-02-02',1853,0,1807,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:27:00','0000-00-00','','','','N','16:27:00','17:08:35','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:27:17',0,'','reception','2025-11-03 16:27:17','darshan','2025-11-03 17:08:35'),(2307,0,0,'O','N','2526',978,0,'2025-11-03','0000-00-00',1011,0,978,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:46:00','0000-00-00','','','','N','16:46:00','17:12:01','','','N','Y',NULL,'O','O','L03','','0000-00-00 00:00:00','2','16:46:08',0,'','reception','2025-11-03 16:46:08','darshan','2025-11-03 17:12:01'),(2308,0,0,'O','N','2526',1808,0,'2025-11-03','2026-02-02',1854,0,1808,'N','','N','','','NV','','N','D06','','N',130,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:03:00','0000-00-00','','','','N','17:03:00','18:32:26','','N','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','2','17:03:50',0,'','drashti','2025-11-03 17:03:50','darshan','2025-11-03 18:32:26'),(2309,0,0,'O','N','2526',1809,0,'2025-11-03','2026-02-02',1855,0,1809,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:07:00','0000-00-00','','','','N','17:07:00','17:27:57','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:07:38',0,'','reception','2025-11-03 17:07:38','darshan','2025-11-03 17:27:57'),(2310,0,0,'O','N','2526',1810,0,'2025-11-03','2026-02-02',1856,0,1810,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:08:00','0000-00-00','','','','N','17:08:00','18:18:02','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','5','17:08:49',0,'','drashti','2025-11-03 17:08:49','drjayant','2025-11-03 18:18:02'),(2311,0,0,'O','N','2526',1811,0,'2025-11-03','2026-02-02',1857,0,1811,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:09:00','0000-00-00','','','','N','17:09:00','17:32:04','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:09:51',0,'','reception','2025-11-03 17:09:51','darshan','2025-11-03 17:32:04'),(2312,0,0,'O','N','2526',1812,0,'2025-11-03','2026-02-02',1858,0,1812,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:14:00','0000-00-00','','','','N','17:14:00','17:42:35','','','N','Y',NULL,'O','N','Z65','','0000-00-00 00:00:00','2','17:14:56',0,'','reception','2025-11-03 17:14:56','darshan','2025-11-03 17:42:35'),(2313,0,0,'O','N','2526',1813,0,'2025-11-03','2026-02-02',1859,0,1813,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:17:00','0000-00-00','','','','N','17:17:00','17:52:31','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','2','17:17:23',0,'','reception','2025-11-03 17:17:23','darshan','2025-11-03 17:52:31'),(2314,0,0,'O','N','2526',1814,0,'2025-11-03','2026-02-02',1860,0,1814,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:23:00','0000-00-00','','','','N','17:23:00','17:35:47','','','N','Y',NULL,'O','N','Z67','','0000-00-00 00:00:00','3','17:23:08',0,'','janvi','2025-11-03 17:23:08','drpratapsinh','2025-11-03 17:35:47'),(2315,0,0,'O','N','2526',1206,0,'2025-11-03','0000-00-00',1245,0,1206,'N','','N','','','','','N','','','N',0,'','',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:34:00','0000-00-00','','','','N','17:34:00','17:37:10','','','N','Y',NULL,'O','O','Z68','','0000-00-00 00:00:00','3','17:34:03',0,'','janvi','2025-11-03 17:34:03','vishal','2025-11-03 18:08:10'),(2316,0,0,'O','N','2526',1815,0,'2025-11-03','2026-02-02',1861,0,1815,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:44:00','0000-00-00','','','','N','17:44:00','19:37:04','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:44:54',0,'','reception','2025-11-03 17:44:54','darshan','2025-11-03 19:37:04'),(2317,0,0,'O','N','2526',1816,0,'2025-11-03','2026-02-02',1862,0,1816,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','19:33:51','','N','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:51:39',0,'','reception','2025-11-03 17:51:39','darshan','2025-11-05 19:33:51'),(2318,0,0,'O','N','2526',1476,0,'2025-11-03','0000-00-00',1517,0,1476,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','17:53:55','','','N','Y',NULL,'O','O','Z69','','0000-00-00 00:00:00','3','17:51:51',0,'','janvi','2025-11-03 17:51:51','drpratapsinh','2025-11-03 17:53:55'),(2319,0,0,'O','N','2526',1817,0,'2025-11-03','2026-02-02',1863,0,1817,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','0000-00-00','','','','N','18:00:00','18:56:42','','','N','Y',NULL,'O','N','Z70','','0000-00-00 00:00:00','5','18:00:34',0,'','drashti','2025-11-03 18:00:34','drjayant','2025-11-03 18:56:42'),(2320,0,0,'O','N','2526',527,0,'2025-11-03','0000-00-00',553,0,527,'N','','N','','','FOLLOWUP V','','N','D06','','N',49,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','18:38:17','','','N','Y',NULL,'O','O','L08','','0000-00-00 00:00:00','2','18:03:02',0,'','reception','2025-11-03 18:03:02','darshan','2025-11-03 18:38:17'),(2321,0,0,'O','N','2526',1818,0,'2025-11-03','2026-02-02',1864,0,1818,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','18:30:48','','','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','5','18:03:36',0,'','drashti','2025-11-03 18:03:36','drjayant','2025-11-03 18:30:48'),(2322,0,0,'O','N','2526',1819,0,'2025-11-03','2026-02-02',1865,0,1819,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','18:51:52','','','N','Y',NULL,'O','N','Z72','','0000-00-00 00:00:00','2','18:05:46',0,'','reception','2025-11-03 18:05:46','darshan','2025-11-03 18:51:52'),(2323,0,0,'O','N','2526',1820,0,'2025-11-03','2026-02-02',1866,0,1820,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','18:57:11','','','N','Y',NULL,'O','N','Z73','','0000-00-00 00:00:00','2','18:07:35',0,'','reception','2025-11-03 18:07:35','darshan','2025-11-03 18:57:11'),(2324,0,0,'O','N','2526',1483,0,'2025-11-03','0000-00-00',1524,0,1483,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:39:26','','','N','Y',NULL,'O','O','Z74','','0000-00-00 00:00:00','6','18:09:27',0,'','manshi','2025-11-03 18:09:27','drsagar','2025-11-03 18:39:26'),(2325,0,0,'O','N','2526',1821,0,'2025-11-03','2026-02-02',1867,0,1821,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:34:41','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','18:09:58',0,'','reception','2025-11-03 18:09:58','darshan','2025-11-03 18:34:41'),(2326,0,0,'O','N','2526',1822,0,'2025-11-03','2026-02-02',1868,0,1822,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','18:36:08','','','N','Y',NULL,'O','N','Z75','','0000-00-00 00:00:00','5','18:22:13',0,'','janvi','2025-11-03 18:10:06','drjayant','2025-11-03 18:36:08'),(2327,0,0,'O','N','2526',1823,0,'2025-11-03','2026-02-02',1869,0,1823,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','18:30:22','','','N','Y',NULL,'O','N','Z76','','0000-00-00 00:00:00','5','18:10:32',0,'','drashti','2025-11-03 18:10:32','drjayant','2025-11-03 18:30:22'),(2328,0,0,'O','N','2526',1824,0,'2025-11-03','2026-02-02',1870,0,1824,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','19:33:13','','','N','Y',NULL,'O','N','Z77','','0000-00-00 00:00:00','2','18:12:12',0,'','reception','2025-11-03 18:12:12','darshan','2025-11-04 19:33:13'),(2329,0,0,'O','N','2526',1521,0,'2025-11-03','0000-00-00',1562,0,1521,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','19:49:49','','','N','Y',NULL,'O','O','Z78','','0000-00-00 00:00:00','3','18:12:38',0,'','janvi','2025-11-03 18:12:38','drpratapsinh','2025-11-03 19:49:49'),(2330,0,0,'O','N','2526',328,0,'2025-11-03','0000-00-00',344,0,328,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:17:00','0000-00-00','','','','N','18:17:00','19:36:08','','','N','Y',NULL,'O','O','L10','','0000-00-00 00:00:00','2','18:17:46',0,'','reception','2025-11-03 18:17:46','darshan','2025-11-03 19:36:08'),(2331,0,0,'O','N','2526',1825,0,'2025-11-03','2026-02-02',1871,0,1825,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:20:00','0000-00-00','','','','N','18:20:00','19:53:57','','N','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','2','18:20:08',0,'','reception','2025-11-03 18:20:08','darshan','2025-11-03 19:53:57'),(2332,0,0,'O','N','2526',1826,0,'2025-11-03','2026-02-02',1872,0,1826,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','18:51:28','','','N','Y',NULL,'O','N','Z79','','0000-00-00 00:00:00','6','18:21:37',0,'','manshi','2025-11-03 18:21:37','drsagar','2025-11-03 18:51:28'),(2333,0,0,'O','N','2526',1827,0,'2025-11-03','2026-02-02',1873,0,1827,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','19:45:32','','','N','Y',NULL,'O','N','Z80','','0000-00-00 00:00:00','2','18:23:30',0,'','reception','2025-11-03 18:23:30','darshan','2025-11-03 19:45:32'),(2334,0,0,'O','N','2526',1030,0,'2025-11-03','0000-00-00',1064,0,1030,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:25:00','0000-00-00','','','','N','18:25:00','00:00:00','','','N','N',NULL,'O','O','Z81','','0000-00-00 00:00:00','4','18:25:12',0,'','janvi','2025-11-03 18:25:12','','0000-00-00 00:00:00'),(2335,0,0,'O','N','2526',1828,0,'2025-11-03','2026-02-02',1874,0,1828,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:27:00','0000-00-00','','','','N','18:27:00','18:39:02','','','N','Y',NULL,'O','N','Z82','','0000-00-00 00:00:00','5','18:27:48',0,'','janvi','2025-11-03 18:27:48','drjayant','2025-11-03 18:39:02'),(2336,0,0,'O','N','2526',1829,0,'2025-11-03','2026-02-02',1875,0,1829,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','18:48:32','','','N','Y',NULL,'O','N','Z83','','0000-00-00 00:00:00','5','18:29:29',0,'','janvi','2025-11-03 18:29:29','drjayant','2025-11-03 18:48:32'),(2337,0,0,'O','N','2526',1830,0,'2025-11-03','2026-02-02',1876,0,1830,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','18:50:20','','','N','Y',NULL,'O','N','Z84','','0000-00-00 00:00:00','5','18:30:31',0,'','janvi','2025-11-03 18:30:31','drjayant','2025-11-03 18:50:20'),(2338,0,0,'O','N','2526',1831,0,'2025-11-03','2026-02-02',1877,0,1831,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','19:00:41','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','2','18:30:57',0,'','reception','2025-11-03 18:30:57','darshan','2025-11-03 19:00:41'),(2339,0,0,'O','N','2526',1832,0,'2025-11-03','2026-02-02',1878,0,1832,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','18:55:48','','','N','Y',NULL,'O','N','Z85','','0000-00-00 00:00:00','5','18:33:11',0,'','janvi','2025-11-03 18:33:11','drjayant','2025-11-03 18:55:48'),(2340,0,0,'O','N','2526',983,0,'2025-11-03','0000-00-00',403,0,983,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:41:00','0000-00-00','','','','N','18:41:00','19:49:22','','','N','Y',NULL,'O','O','Z86','','0000-00-00 00:00:00','3','18:41:12',0,'','janvi','2025-11-03 18:41:12','drpratapsinh','2025-11-03 19:49:22'),(2341,0,0,'O','N','2526',1833,0,'2025-11-03','2026-02-02',1879,0,1833,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','20:05:48','','N','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','2','18:43:35',0,'','reception','2025-11-03 18:43:35','darshan','2025-11-03 20:05:48'),(2342,0,0,'O','N','2526',1834,0,'2025-11-03','2026-02-02',1880,0,1834,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:45:00','0000-00-00','','','','N','18:45:00','20:03:55','','','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','2','18:45:22',0,'','reception','2025-11-03 18:45:22','darshan','2025-11-03 20:03:55'),(2343,0,0,'O','N','2526',709,0,'2025-11-03','0000-00-00',740,0,709,'N','','N','','','INJECTION','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','00:00:00','','','N','N',NULL,'O','O','Z87','','0000-00-00 00:00:00','4','18:51:36',0,'','janvi','2025-11-03 18:51:36','','0000-00-00 00:00:00'),(2344,0,0,'O','N','2526',451,0,'2025-11-03','0000-00-00',477,0,451,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:59:00','0000-00-00','','','','N','18:59:00','19:49:34','','','N','Y',NULL,'O','O','Z88','','0000-00-00 00:00:00','3','18:59:23',0,'','janvi','2025-11-03 18:59:23','drpratapsinh','2025-11-03 19:49:34'),(2345,0,0,'O','N','2526',1835,0,'2025-11-03','2026-02-02',1881,0,1835,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:01:00','0000-00-00','','','','N','19:01:00','19:51:59','','','N','Y',NULL,'O','N','Z89','','0000-00-00 00:00:00','3','19:01:49',0,'','janvi','2025-11-03 19:01:49','drpratapsinh','2025-11-03 19:51:59'),(2346,0,0,'O','N','2526',118,0,'2025-11-03','0000-00-00',129,0,118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:02:00','0000-00-00','','','','N','19:02:00','19:52:11','','','N','Y',NULL,'O','O','Z90','','0000-00-00 00:00:00','3','19:02:57',0,'','janvi','2025-11-03 19:02:57','drpratapsinh','2025-11-03 19:52:11'),(2347,0,0,'O','N','2526',1836,0,'2025-11-03','2026-02-02',1882,0,1836,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:05:00','0000-00-00','','','','N','19:05:00','19:46:07','','','N','Y',NULL,'O','N','Z91','','0000-00-00 00:00:00','6','19:05:58',0,'','manshi','2025-11-03 19:05:58','drsagar','2025-11-03 19:46:07'),(2348,0,0,'O','N','2526',1358,0,'2025-11-03','0000-00-00',1398,0,1358,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:21:00','0000-00-00','','','','N','19:21:00','19:52:49','','','N','Y',NULL,'O','O','Z92','','0000-00-00 00:00:00','3','19:22:00',0,'','janvi','2025-11-03 19:22:00','drpratapsinh','2025-11-03 19:52:49'),(2349,0,0,'O','N','2526',1307,0,'2025-11-03','0000-00-00',1346,0,1307,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:27:00','0000-00-00','','','','N','19:27:00','19:51:39','','','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','3','19:27:23',0,'','janvi','2025-11-03 19:27:23','drpratapsinh','2025-11-03 19:51:39'),(2350,0,0,'O','N','2526',1837,0,'2025-11-03','2026-02-02',1883,0,1837,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:29:00','0000-00-00','','','','N','19:29:00','19:53:14','','','N','Y',NULL,'O','N','Z93','','0000-00-00 00:00:00','3','19:29:02',0,'','drashti','2025-11-03 19:29:02','drpratapsinh','2025-11-03 19:53:14'),(2351,0,0,'O','N','2526',1838,0,'2025-11-03','2026-02-02',1884,0,1838,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:30:00','0000-00-00','','','','N','19:30:00','19:32:18','','','N','Y',NULL,'O','N','Z94','','0000-00-00 00:00:00','5','19:30:05',0,'','janvi','2025-11-03 19:30:05','drjayant','2025-11-03 19:32:18'),(2352,0,0,'O','N','2526',1839,0,'2025-11-03','2026-02-02',1885,0,1839,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:40:00','0000-00-00','','','','N','19:40:00','19:46:31','','','N','Y',NULL,'O','N','Z95','','0000-00-00 00:00:00','6','19:40:47',0,'','manshi','2025-11-03 19:40:47','drsagar','2025-11-03 19:46:31'),(2353,0,0,'O','N','2526',1840,0,'2025-11-03','2026-02-02',1886,0,1840,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:48:00','0000-00-00','','','','N','19:48:00','19:59:12','','','N','Y',NULL,'O','N','Z96','','0000-00-00 00:00:00','6','19:48:33',0,'','manshi','2025-11-03 19:48:33','drsagar','2025-11-03 19:59:12'),(2354,0,0,'O','N','2526',1841,0,'2025-11-03','2026-02-02',1887,0,1841,'N','','N','','','NE','','N','D06','','N',33,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:53:00','0000-00-00','','','','N','19:53:00','20:16:33','','','N','Y',NULL,'O','N','Z97','','0000-00-00 00:00:00','2','19:53:20',0,'','reception','2025-11-03 19:53:20','darshan','2025-11-03 20:16:33'),(2355,0,0,'O','N','2526',1747,0,'2025-11-04','0000-00-00',1456,0,1747,'N','','N','','','INJ','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:08:00','0000-00-00','','','','N','09:08:00','00:00:00','','','N','N',NULL,'O','O','Z01','','0000-00-00 00:00:00','4','09:08:23',0,'','reception','2025-11-04 09:08:23','','0000-00-00 00:00:00'),(2356,0,0,'O','N','2526',1842,0,'2025-11-04','2026-02-03',1888,0,1842,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:10:00','0000-00-00','','','','N','09:10:00','00:00:00','','','N','N',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','09:10:38',0,'','reception','2025-11-04 09:10:38','','0000-00-00 00:00:00'),(2357,0,0,'O','N','2526',1843,0,'2025-11-04','2026-02-03',1889,0,1843,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:29:00','0000-00-00','','','','N','09:29:00','10:36:14','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','09:29:40',0,'','reception','2025-11-04 09:29:40','darshan','2025-11-04 10:36:14'),(2358,0,0,'O','N','2526',1844,0,'2025-11-04','2026-02-03',1890,0,1844,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:32:00','0000-00-00','','','','N','09:32:00','10:40:25','','','N','Y',NULL,'O','N','E02','','0000-00-00 00:00:00','2','09:32:32',0,'','reception','2025-11-04 09:32:32','darshan','2025-11-04 10:40:25'),(2359,0,0,'O','N','2526',1845,0,'2025-11-04','2026-02-03',1891,0,1845,'N','','N','','','NV','','N','D06','','N',131,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:07:00','0000-00-00','','','','N','10:07:00','13:13:27','','N','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','2','10:07:55',0,'','reception','2025-11-04 10:07:55','darshan','2025-11-04 13:13:27'),(2360,0,0,'O','N','2526',1846,0,'2025-11-04','2026-02-03',1892,0,1846,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:12:00','0000-00-00','','','','N','10:12:00','17:22:46','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','3','10:12:03',0,'','janvi','2025-11-04 10:12:03','drpratapsinh','2025-11-04 17:22:46'),(2361,0,0,'O','N','2526',1847,0,'2025-11-04','2026-02-03',1893,0,1847,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:19:00','0000-00-00','','','','N','10:19:00','10:27:32','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','3','10:19:33',0,'','reception','2025-11-04 10:19:33','drpratapsinh','2025-11-04 10:27:32'),(2362,0,0,'O','N','2526',1848,0,'2025-11-04','2026-02-03',1894,0,1848,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:19:00','0000-00-00','','','','N','10:19:00','11:06:03','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','5','10:19:39',0,'','janvi','2025-11-04 10:19:39','drjayant','2025-11-04 11:06:03'),(2363,0,0,'O','N','2526',629,0,'2025-11-04','0000-00-00',659,0,629,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:21:00','0000-00-00','','','','N','10:21:00','11:11:56','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','2','10:21:48',0,'','reception','2025-11-04 10:21:48','darshan','2025-11-04 11:11:56'),(2364,0,0,'O','N','2526',1849,0,'2025-11-04','2026-02-03',1895,0,1849,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:23:00','0000-00-00','','','','N','10:23:00','11:15:52','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','2','10:23:39',0,'','reception','2025-11-04 10:23:39','darshan','2025-11-04 11:15:52'),(2365,0,0,'O','N','2526',1850,0,'2025-11-04','2026-02-03',1896,0,1850,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:24:00','0000-00-00','','','','N','10:24:00','13:07:17','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:24:46',0,'','reception','2025-11-04 10:24:45','darshan','2025-11-04 13:07:17'),(2366,0,0,'O','N','2526',1552,0,'2025-11-04','0000-00-00',1595,0,1552,'N','','N','','','FOLLOWUP E','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:26:00','0000-00-00','','','','N','10:26:00','11:36:34','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','2','10:26:34',0,'','reception','2025-11-04 10:26:34','darshan','2025-11-04 11:36:34'),(2367,0,0,'O','N','2526',1851,0,'2025-11-04','2026-02-03',1897,0,1851,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','13:59:39','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:33:22',0,'','reception','2025-11-04 10:33:22','darshan','2025-11-04 13:59:39'),(2368,0,0,'O','N','2526',1852,0,'2025-11-04','2026-02-03',1898,0,1852,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','12:06:33','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','2','10:38:21',0,'','reception','2025-11-04 10:38:21','darshan','2025-11-04 12:06:33'),(2369,0,0,'O','N','2526',1853,0,'2025-11-04','2026-02-03',1899,0,1853,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','11:05:47','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','3','10:56:49',0,'','janvi','2025-11-04 10:56:49','drpratapsinh','2025-11-04 11:05:47'),(2370,0,0,'O','N','2526',1854,0,'2025-11-04','2026-02-03',1900,0,1854,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','11:19:29','','','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:57:33',0,'','reception','2025-11-04 10:57:33','darshan','2025-11-04 11:19:29'),(2371,0,0,'O','N','2526',1855,0,'2025-11-04','2026-02-03',1901,0,1855,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','11:11:04','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','5','10:57:41',0,'','drashti','2025-11-04 10:57:41','drjayant','2025-11-04 11:11:04'),(2372,0,0,'O','N','2526',1856,0,'2025-11-04','2026-02-03',1902,0,1856,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','11:22:17','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','5','11:01:13',0,'','drashti','2025-11-04 11:01:13','drjayant','2025-11-04 11:22:17'),(2373,0,0,'O','N','2526',1857,0,'2025-11-04','2026-02-03',1903,0,1857,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','13:57:19','','N','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','11:01:51',0,'','reception','2025-11-04 11:01:51','darshan','2025-11-04 13:57:19'),(2374,0,0,'O','N','2526',774,0,'2025-11-04','0000-00-00',805,0,774,'N','','N','','','FOLLOWUP V','','N','D06','','N',4,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','12:40:38','','','N','Y',NULL,'O','O','Z14','','0000-00-00 00:00:00','2','11:10:37',0,'','reception','2025-11-04 11:10:37','darshan','2025-11-04 12:40:38'),(2375,0,0,'O','N','2526',1858,0,'2025-11-04','2026-02-03',870,0,1858,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','11:42:34','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','7','11:11:04',0,'','manshi','2025-11-04 11:11:04','drridham','2025-11-04 11:42:34'),(2376,0,0,'O','N','2526',1859,0,'2025-11-04','2026-02-03',1904,0,1859,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','12:10:32','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','2','11:13:23',0,'','janvi','2025-11-04 11:13:23','darshan','2025-11-04 12:10:32'),(2377,0,0,'O','N','2526',1860,0,'2025-11-04','2026-02-03',1905,0,1860,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','11:26:18','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','5','11:14:13',0,'','drashti','2025-11-04 11:14:13','drjayant','2025-11-04 11:26:18'),(2378,0,0,'O','N','2526',1861,0,'2025-11-04','2026-02-03',1906,0,1861,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','12:13:48','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','11:17:28',0,'','reception','2025-11-04 11:17:28','darshan','2025-11-04 12:13:48'),(2379,0,0,'O','N','2526',1862,0,'2025-11-04','2026-02-03',1907,0,1862,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','14:23:05','','N','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','11:21:54',0,'','reception','2025-11-04 11:21:54','darshan','2025-11-04 14:23:05'),(2380,0,0,'O','N','2526',1863,0,'2025-11-04','2026-02-03',1908,0,1863,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:22:00','0000-00-00','','','','N','11:22:00','11:42:44','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','7','11:22:23',0,'','manshi','2025-11-04 11:22:23','drridham','2025-11-04 11:42:44'),(2381,0,0,'O','N','2526',1864,0,'2025-11-04','2026-02-03',1909,0,1864,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','11:59:11','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:24:30',0,'','reception','2025-11-04 11:24:29','darshan','2025-11-04 11:59:11'),(2382,0,0,'O','N','2526',1669,0,'2025-11-04','0000-00-00',1714,0,1669,'N','','N','','','','','N','D02','','N',4,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','11:33:55','','','N','Y',NULL,'O','O','Z20','','0000-00-00 00:00:00','3','11:27:26',0,'','drashti','2025-11-04 11:27:26','drpratapsinh','2025-11-04 11:33:55'),(2383,0,0,'O','N','2526',1865,0,'2025-11-04','2026-02-03',1910,0,1865,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','11:48:23','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','6','11:32:13',0,'','manshi','2025-11-04 11:32:13','drsagar','2025-11-04 11:48:23'),(2384,0,0,'O','N','2526',1866,0,'2025-11-04','2026-02-03',1911,0,1866,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','14:23:19','','N','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','2','11:41:48',0,'','reception','2025-11-04 11:41:48','darshan','2025-11-04 14:23:19'),(2385,0,0,'O','N','2526',1867,0,'2025-11-04','2026-02-03',1912,0,1867,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','12:55:53','','Y','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','2','11:44:37',0,'','reception','2025-11-04 11:44:37','darshan','2025-11-04 18:20:15'),(2386,0,0,'O','N','2526',1734,0,'2025-11-04','0000-00-00',1778,0,1734,'N','','N','','','REPORT','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:55:00','0000-00-00','','','','N','11:55:00','14:42:06','','N','N','Y',NULL,'O','O','I01','','0000-00-00 00:00:00','2','11:55:29',0,'','reception','2025-11-04 11:55:28','darshan','2025-11-04 14:42:06'),(2387,0,0,'O','N','2526',1868,0,'2025-11-04','2026-02-03',1913,0,1868,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','12:12:18','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','5','12:06:18',0,'','janvi','2025-11-04 12:06:18','drjayant','2025-11-04 12:12:18'),(2388,0,0,'O','N','2526',1191,0,'2025-11-04','0000-00-00',1230,0,1191,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:14:00','0000-00-00','','','','N','12:14:00','12:28:28','','','N','Y',NULL,'O','O','I02','','0000-00-00 00:00:00','2','12:14:34',0,'','reception','2025-11-04 12:14:34','darshan','2025-11-04 12:28:28'),(2389,0,0,'O','N','2526',1869,0,'2025-11-04','2026-02-03',1914,0,1869,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','13:28:53','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','12:21:43',0,'','reception','2025-11-04 12:21:43','darshan','2025-11-04 13:28:53'),(2390,0,0,'O','N','2526',1870,0,'2025-11-04','2026-02-03',1915,0,1870,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:25:00','0000-00-00','','','','N','12:25:00','17:21:57','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','3','12:25:44',0,'','janvi','2025-11-04 12:25:44','drpratapsinh','2025-11-04 17:21:57'),(2391,0,0,'O','N','2526',1871,0,'2025-11-04','2026-02-03',1916,0,1871,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:32:00','0000-00-00','','','','N','12:32:00','18:03:02','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','5','12:32:27',0,'','drashti','2025-11-04 12:32:26','drjayant','2025-11-04 18:03:02'),(2392,0,0,'I','N','2526',0,128,'2025-11-04','2026-02-03',1917,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','2025-11-05','','1','mo','N','12:00:00','19:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-04 12:33:11','vishal','2025-11-05 19:56:18'),(2393,0,0,'O','N','2526',1872,0,'2025-11-04','2026-02-03',1918,0,1872,'N','','N','','','NV','','N','D06','','N',132,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:33:00','0000-00-00','','','','N','12:33:00','14:25:45','','N','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:33:31',0,'','reception','2025-11-04 12:33:31','darshan','2025-11-04 14:25:45'),(2394,0,0,'O','N','2526',1873,0,'2025-11-04','2026-02-03',1919,0,1873,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:36:00','0000-00-00','','','','N','12:36:00','13:33:37','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','12:36:35',0,'','reception','2025-11-04 12:36:35','darshan','2025-11-04 13:33:37'),(2395,0,0,'I','N','2526',0,129,'2025-11-04','2026-02-03',1920,0,0,'N','','N','','','','N','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:15:00','2025-11-06','','1','mo','N','16:15:00','09:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-04 16:37:02','vishal','2025-11-06 12:41:07'),(2396,0,0,'O','N','2526',1133,0,'2025-11-04','0000-00-00',1173,0,1133,'N','','N','','','','','N','D02','','N',11,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:42:00','0000-00-00','','','','N','16:42:00','17:22:21','','','N','Y',NULL,'O','O','Z27','','0000-00-00 00:00:00','3','16:42:25',0,'','janvi','2025-11-04 16:42:25','drpratapsinh','2025-11-04 17:22:20'),(2397,0,0,'O','N','2526',1874,0,'2025-11-04','2026-02-03',1921,0,1874,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:49:00','0000-00-00','','','','N','16:49:00','17:22:59','','','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:49:46',0,'','reception','2025-11-04 16:49:46','darshan','2025-11-04 17:22:59'),(2398,0,0,'O','N','2526',1875,0,'2025-11-04','2026-02-03',1922,0,1875,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:51:00','0000-00-00','','','','N','16:51:00','17:25:59','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','2','16:51:28',0,'','reception','2025-11-04 16:51:28','darshan','2025-11-04 17:25:59'),(2399,0,0,'O','N','2526',1542,0,'2025-11-04','0000-00-00',1585,0,1542,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:54:00','0000-00-00','','','','N','16:54:00','17:32:04','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','16:54:37',0,'','reception','2025-11-04 16:54:37','darshan','2025-11-04 17:32:04'),(2400,0,0,'O','N','2526',1867,0,'2025-11-04','0000-00-00',1912,0,1867,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:58:00','0000-00-00','','','','N','16:58:00','18:44:31','','N','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','2','16:58:54',0,'','reception','2025-11-04 16:58:54','darshan','2025-11-04 18:44:31'),(2401,0,0,'O','N','2526',1876,0,'2025-11-04','2026-02-03',1923,0,1876,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:04:00','0000-00-00','','','','N','17:04:00','17:36:32','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:04:24',0,'','reception','2025-11-04 17:04:24','darshan','2025-11-04 17:36:32'),(2402,0,0,'O','N','2526',520,0,'2025-11-04','0000-00-00',546,0,520,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:11:00','0000-00-00','','','','N','17:11:00','17:41:50','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','17:11:44',0,'','reception','2025-11-04 17:11:44','darshan','2025-11-04 17:41:50'),(2403,0,0,'O','N','2526',1288,0,'2025-11-04','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','17:22:09','','','N','Y',NULL,'O','O','Z29','','0000-00-00 00:00:00','3','17:20:21',0,'','drashti','2025-11-04 17:20:21','drpratapsinh','2025-11-04 17:22:09'),(2404,0,0,'O','N','2526',1877,0,'2025-11-04','2026-02-03',1924,0,1877,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','17:49:03','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:20:47',0,'','reception','2025-11-04 17:20:47','darshan','2025-11-04 17:49:03'),(2405,0,0,'O','N','2526',1878,0,'2025-11-04','2026-02-03',1925,0,1878,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:35:00','0000-00-00','','','','N','17:35:00','17:55:48','','','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:35:45',0,'','reception','2025-11-04 17:35:45','darshan','2025-11-04 17:55:48'),(2406,0,0,'O','N','2526',1879,0,'2025-11-04','2026-02-03',1926,0,1879,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:37:00','0000-00-00','','','','N','17:37:00','18:04:42','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','2','17:37:52',0,'','reception','2025-11-04 17:37:52','darshan','2025-11-04 18:04:42'),(2407,0,0,'O','N','2526',1880,0,'2025-11-04','2026-02-03',1927,0,1880,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','00:00:00','','','N','N',NULL,'O','N','Z31','','0000-00-00 00:00:00','3','17:41:17',0,'','janvi','2025-11-04 17:41:17','','0000-00-00 00:00:00'),(2408,0,0,'O','N','2526',1881,0,'2025-11-04','2026-02-03',1928,0,1881,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','18:57:59','','N','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','2','17:41:27',0,'','reception','2025-11-04 17:41:27','darshan','2025-11-04 18:57:59'),(2409,0,0,'O','N','2526',1882,0,'2025-11-04','2026-02-03',1929,0,1882,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:44:00','0000-00-00','','','','N','17:44:00','18:14:01','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','2','17:44:23',0,'','reception','2025-11-04 17:44:23','darshan','2025-11-04 18:14:01'),(2410,0,0,'O','N','2526',1883,0,'2025-11-04','2026-02-03',1930,0,1883,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:55:00','0000-00-00','','','','N','17:55:00','18:07:17','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','5','17:55:42',0,'','janvi','2025-11-04 17:55:42','drjayant','2025-11-04 18:07:17'),(2411,0,0,'O','N','2526',1487,0,'2025-11-04','0000-00-00',1528,0,1487,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:56:00','0000-00-00','','','','N','17:56:00','00:00:00','','','N','N',NULL,'O','O','Z35','','0000-00-00 00:00:00','3','17:56:04',0,'','reception','2025-11-04 17:56:04','','0000-00-00 00:00:00'),(2412,0,0,'O','N','2526',211,0,'2025-11-04','0000-00-00',224,0,211,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','00:00:00','','','N','N',NULL,'O','O','Z36','','0000-00-00 00:00:00','3','18:03:43',0,'','janvi','2025-11-04 18:03:43','','0000-00-00 00:00:00'),(2413,0,0,'O','N','2526',1884,0,'2025-11-04','2026-02-03',1931,0,1884,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','18:11:14','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','5','18:04:35',0,'','drashti','2025-11-04 18:04:35','drjayant','2025-11-04 18:11:14'),(2414,0,0,'O','N','2526',1129,0,'2025-11-04','0000-00-00',1169,0,1129,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:31:24','','','N','Y',NULL,'O','O','L07','','0000-00-00 00:00:00','2','18:09:02',0,'','reception','2025-11-04 18:09:02','darshan','2025-11-04 18:31:24'),(2415,0,0,'O','N','2526',1049,0,'2025-11-04','0000-00-00',1083,0,1049,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','00:00:00','','','N','N',NULL,'O','O','Z38','','0000-00-00 00:00:00','3','18:14:56',0,'','drashti','2025-11-04 18:14:56','','0000-00-00 00:00:00'),(2416,0,0,'O','N','2526',1885,0,'2025-11-04','2026-02-03',1932,0,1885,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','19:56:04','','N','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','18:19:13',0,'','reception','2025-11-04 18:19:13','darshan','2025-11-04 19:56:04'),(2417,0,0,'O','N','2526',1302,0,'2025-11-04','0000-00-00',1341,0,1302,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','18:39:50','','','N','Y',NULL,'O','O','Z39','','0000-00-00 00:00:00','6','18:19:14',0,'','manshi','2025-11-04 18:19:14','drsagar','2025-11-04 18:39:50'),(2418,0,0,'O','N','2526',1886,0,'2025-11-04','2026-02-03',1933,0,1886,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','18:52:55','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','2','18:23:24',0,'','reception','2025-11-04 18:23:24','darshan','2025-11-04 18:52:55'),(2419,0,0,'O','N','2526',1746,0,'2025-11-04','0000-00-00',1792,0,1746,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','00:00:00','','','N','N',NULL,'O','O','Z41','','0000-00-00 00:00:00','3','18:26:55',0,'','janvi','2025-11-04 18:26:55','','0000-00-00 00:00:00'),(2420,0,0,'O','N','2526',1887,0,'2025-11-04','2026-02-03',1934,0,1887,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','18:48:13','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','5','18:28:16',0,'','drashti','2025-11-04 18:28:16','drjayant','2025-11-04 18:48:13'),(2421,0,0,'O','N','2526',1888,0,'2025-11-04','2026-02-03',1935,0,1888,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','19:03:32','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','2','18:30:30',0,'','reception','2025-11-04 18:30:30','darshan','2025-11-04 19:03:32'),(2422,0,0,'O','N','2526',690,0,'2025-11-04','0000-00-00',721,0,690,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','18:55:43','','','N','Y',NULL,'O','O','L09','','0000-00-00 00:00:00','2','18:31:29',0,'','reception','2025-11-04 18:31:29','darshan','2025-11-04 18:55:43'),(2423,0,0,'O','N','2526',1889,0,'2025-11-04','2026-02-03',1936,0,1889,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','18:55:21','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','5','18:33:01',0,'','janvi','2025-11-04 18:33:01','drjayant','2025-11-04 18:55:21'),(2424,0,0,'O','N','2526',1890,0,'2025-11-04','2026-02-03',1937,0,1890,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:37:00','0000-00-00','','','','N','18:37:00','19:09:29','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','2','18:37:49',0,'','reception','2025-11-04 18:37:49','darshan','2025-11-04 19:09:29'),(2425,0,0,'O','N','2526',1891,0,'2025-11-04','2026-02-03',1938,0,1891,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:41:00','0000-00-00','','','','N','18:41:00','20:18:44','','N','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','2','18:42:01',0,'','reception','2025-11-04 18:42:01','darshan','2025-11-04 20:18:44'),(2426,0,0,'O','N','2526',1341,0,'2025-11-04','0000-00-00',1381,0,1341,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:47:00','0000-00-00','','','','N','18:47:00','18:54:00','','','N','Y',NULL,'O','O','Z46','','0000-00-00 00:00:00','6','18:47:31',0,'','manshi','2025-11-04 18:47:31','drsagar','2025-11-04 18:54:00'),(2427,0,0,'O','N','2526',862,0,'2025-11-04','0000-00-00',894,0,862,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:50:00','0000-00-00','','','','N','18:50:00','19:15:22','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','2','18:51:01',0,'','reception','2025-11-04 18:51:01','darshan','2025-11-04 19:15:22'),(2428,0,0,'O','N','2526',1892,0,'2025-11-04','2026-02-03',1939,0,1892,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:52:00','0000-00-00','','','','N','18:52:00','18:59:56','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','6','18:52:23',0,'','manshi','2025-11-04 18:52:23','drsagar','2025-11-04 18:59:56'),(2429,0,0,'O','N','2526',1893,0,'2025-11-04','2026-02-03',1940,0,1893,'N','','N','','','','','N','D02','','N',133,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:57:00','0000-00-00','','','','N','18:57:00','00:00:00','','','N','N',NULL,'O','N','Z48','','0000-00-00 00:00:00','3','18:57:42',0,'','drashti','2025-11-04 18:57:42','','0000-00-00 00:00:00'),(2430,0,0,'O','N','2526',766,0,'2025-11-04','0000-00-00',797,0,766,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:57:00','0000-00-00','','','','N','18:57:00','19:39:33','','','N','Y',NULL,'O','O','Z49','','0000-00-00 00:00:00','2','18:57:57',0,'','reception','2025-11-04 18:57:57','darshan','2025-11-04 19:39:33'),(2431,0,0,'O','N','2526',1307,0,'2025-11-04','0000-00-00',1346,0,1307,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:03:00','0000-00-00','','','','N','19:03:00','00:00:00','','','N','N',NULL,'O','O','Z50','','0000-00-00 00:00:00','3','19:03:44',0,'','janvi','2025-11-04 19:03:44','','0000-00-00 00:00:00'),(2432,0,0,'O','N','2526',1274,0,'2025-11-04','0000-00-00',1313,0,1274,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:28:00','0000-00-00','','','','N','19:28:00','19:39:37','','','N','Y',NULL,'O','O','Z51','','0000-00-00 00:00:00','5','19:28:32',0,'','drashti','2025-11-04 19:28:32','drjayant','2025-11-04 19:39:37'),(2433,0,0,'O','N','2526',1894,0,'2025-11-04','2026-02-03',1941,0,1894,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:37:00','0000-00-00','','','','N','19:37:00','20:33:18','','N','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','2','19:37:08',0,'','drashti','2025-11-04 19:37:08','darshan','2025-11-04 20:33:18'),(2434,0,0,'O','N','2526',1747,0,'2025-11-05','0000-00-00',1456,0,1747,'N','','N','','','INJ','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:59:00','0000-00-00','','','','N','08:59:00','00:00:00','','','N','N',NULL,'O','O','Z01','','0000-00-00 00:00:00','4','08:59:39',0,'','reception','2025-11-05 08:59:39','','0000-00-00 00:00:00'),(2435,0,0,'O','N','2526',1415,0,'2025-11-05','0000-00-00',1455,0,1415,'N','','N','','','INJ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:01:00','0000-00-00','','','','N','09:01:00','00:00:00','','','N','N',NULL,'O','O','Z02','','0000-00-00 00:00:00','4','09:01:22',0,'','reception','2025-11-05 09:01:22','','0000-00-00 00:00:00'),(2436,0,0,'O','N','2526',1895,0,'2025-11-05','2026-02-04',1942,0,1895,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:07:00','0000-00-00','','','','N','09:07:00','12:33:08','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','5','12:05:08',0,'','reception','2025-11-05 09:07:11','drjayant','2025-11-05 12:33:08'),(2437,0,0,'I','N','2526',0,130,'2025-11-05','2026-02-04',1943,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-11-05','','1','mo','N','09:30:00','21:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-05 09:29:10','vishal','2025-11-05 21:00:40'),(2438,0,0,'O','N','2526',1896,0,'2025-11-05','2026-02-04',1944,0,1896,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:50:00','0000-00-00','','','','N','09:50:00','10:00:53','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','3','09:50:21',0,'','drashti','2025-11-05 09:50:21','drpratapsinh','2025-11-05 10:00:53'),(2439,0,0,'O','N','2526',1897,0,'2025-11-05','2026-02-04',1945,0,1897,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:50:00','0000-00-00','','','','N','09:50:00','10:41:04','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','09:50:36',0,'','reception','2025-11-05 09:50:36','darshan','2025-11-05 10:41:04'),(2440,0,0,'O','N','2526',591,0,'2025-11-05','0000-00-00',621,0,591,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:55:00','0000-00-00','','','','N','09:55:00','10:50:33','','','N','Y',NULL,'O','O','Z05','','0000-00-00 00:00:00','2','09:55:01',0,'','reception','2025-11-05 09:55:01','darshan','2025-11-05 10:50:33'),(2441,0,0,'O','N','2526',1898,0,'2025-11-05','2026-02-04',1946,0,1898,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:55:00','0000-00-00','','','','N','09:55:00','11:44:59','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','5','10:52:51',0,'','drashti','2025-11-05 09:55:09','drjayant','2025-11-05 11:44:59'),(2442,0,0,'O','N','2526',1899,0,'2025-11-05','2026-02-04',1947,0,1899,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:55:00','0000-00-00','','','','N','09:55:00','14:09:37','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','09:55:53',0,'','reception','2025-11-05 09:55:53','darshan','2025-11-05 14:09:37'),(2443,0,0,'O','N','2526',1900,0,'2025-11-05','2026-02-04',1948,0,1900,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:03:00','0000-00-00','','','','N','10:03:00','10:44:37','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','10:03:15',0,'','reception','2025-11-05 10:03:15','darshan','2025-11-05 10:44:37'),(2444,0,0,'O','N','2526',1901,0,'2025-11-05','2026-02-04',1949,0,1901,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:08:00','0000-00-00','','','','N','10:08:00','12:59:47','','N','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','2','10:08:48',0,'','reception','2025-11-05 10:08:48','darshan','2025-11-05 12:59:47'),(2445,0,0,'O','N','2526',1902,0,'2025-11-05','2026-02-04',1950,0,1902,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','13:28:05','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','5','10:52:51',0,'','drashti','2025-11-05 10:16:20','drjayant','2025-11-05 13:28:05'),(2446,0,0,'O','N','2526',470,0,'2025-11-05','0000-00-00',496,0,470,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:17:00','0000-00-00','','','','N','10:17:00','11:14:37','','','N','Y',NULL,'O','O','E02','','0000-00-00 00:00:00','2','10:17:43',0,'','reception','2025-11-05 10:17:43','darshan','2025-11-05 11:14:37'),(2447,0,0,'O','N','2526',1293,0,'2025-11-05','0000-00-00',1332,0,1293,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:27:00','0000-00-00','','','','N','10:27:00','11:13:26','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','5','10:52:51',0,'','janvi','2025-11-05 10:27:59','drjayant','2025-11-05 11:13:26'),(2448,0,0,'O','N','2526',1903,0,'2025-11-05','2026-02-04',1951,0,1903,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','11:24:09','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','2','10:33:46',0,'','reception','2025-11-05 10:33:46','darshan','2025-11-05 11:24:09'),(2449,0,0,'O','N','2526',1904,0,'2025-11-05','2026-02-04',1952,0,1904,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','19:08:08','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','5','10:52:51',0,'','janvi','2025-11-05 10:37:14','drjayant','2025-11-05 19:08:08'),(2450,0,0,'O','N','2526',457,0,'2025-11-05','0000-00-00',483,0,457,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','11:28:30','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:43:07',0,'','reception','2025-11-05 10:43:07','darshan','2025-11-05 11:28:30'),(2451,0,0,'O','N','2526',1905,0,'2025-11-05','2026-02-04',1953,0,1905,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','00:00:00','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','5','10:52:51',0,'','drashti','2025-11-05 10:43:39','','0000-00-00 00:00:00'),(2452,0,0,'O','N','2526',1906,0,'2025-11-05','2026-02-04',1954,0,1906,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:45:00','0000-00-00','','','','N','10:45:00','11:58:30','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','2','10:45:57',0,'','reception','2025-11-05 10:45:57','darshan','2025-11-05 11:58:30'),(2453,0,0,'O','N','2526',1763,0,'2025-11-05','0000-00-00',1809,0,1763,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','11:36:22','','','N','Y',NULL,'O','O','Z14','','0000-00-00 00:00:00','5','10:52:51',0,'','janvi','2025-11-05 10:46:17','drjayant','2025-11-05 11:36:22'),(2454,0,0,'O','N','2526',1907,0,'2025-11-05','2026-02-04',1955,0,1907,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:49:00','0000-00-00','','','','N','10:49:00','12:11:07','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','10:49:57',0,'','reception','2025-11-05 10:49:57','darshan','2025-11-05 12:11:07'),(2455,0,0,'O','N','2526',693,0,'2025-11-05','0000-00-00',724,0,693,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','11:15:45','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','6','11:13:47',0,'','manshi','2025-11-05 10:53:29','drsagar','2025-11-05 11:15:45'),(2456,0,0,'O','N','2526',461,0,'2025-11-05','0000-00-00',487,0,461,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','12:31:23','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','2','10:55:16',0,'','reception','2025-11-05 10:55:16','darshan','2025-11-05 12:31:23'),(2457,0,0,'O','N','2526',1908,0,'2025-11-05','2026-02-04',1956,0,1908,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','12:47:57','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','10:58:20',0,'','reception','2025-11-05 10:58:20','darshan','2025-11-05 12:47:57'),(2458,0,0,'O','N','2526',1909,0,'2025-11-05','2026-02-04',1957,0,1909,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','14:59:53','','N','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','2','11:01:36',0,'','reception','2025-11-05 11:01:35','darshan','2025-11-05 14:59:53'),(2459,0,0,'O','N','2526',1910,0,'2025-11-05','2026-02-04',1958,0,1910,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','12:57:17','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','2','11:04:07',0,'','reception','2025-11-05 11:04:06','darshan','2025-11-05 12:57:17'),(2460,0,0,'O','N','2526',1911,0,'2025-11-05','2026-02-04',1959,0,1911,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','11:32:40','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','11:04:14',0,'','drashti','2025-11-05 11:04:14','darshan','2025-11-05 11:32:40'),(2461,0,0,'O','N','2526',1912,0,'2025-11-05','2026-02-04',1960,0,1912,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','13:32:35','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','2','11:06:43',0,'','reception','2025-11-05 11:06:43','darshan','2025-11-05 13:32:35'),(2462,0,0,'O','N','2526',1913,0,'2025-11-05','2026-02-04',1961,0,1913,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','14:10:10','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','11:15:08',0,'','reception','2025-11-05 11:15:08','darshan','2025-11-05 14:10:10'),(2463,0,0,'O','N','2526',1914,0,'2025-11-05','2026-02-04',1962,0,1914,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','14:20:39','','N','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','11:18:01',0,'','reception','2025-11-05 11:18:01','darshan','2025-11-05 14:20:39'),(2464,0,0,'O','N','2526',1915,0,'2025-11-05','2026-02-04',1963,0,1915,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','11:45:33','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','2','11:19:57',0,'','reception','2025-11-05 11:19:57','darshan','2025-11-05 11:45:33'),(2465,0,0,'O','N','2526',1574,0,'2025-11-05','0000-00-00',1618,0,1574,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','12:45:07','','','N','Y',NULL,'O','O','Z22','','0000-00-00 00:00:00','6','11:20:54',0,'','manshi','2025-11-05 11:20:54','drsagar','2025-11-05 12:45:07'),(2466,0,0,'O','N','2526',1916,0,'2025-11-05','2026-02-04',1964,0,1916,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','12:15:20','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:26:06',0,'','reception','2025-11-05 11:26:06','darshan','2025-11-05 12:15:20'),(2467,0,0,'O','N','2526',1917,0,'2025-11-05','2026-02-04',1965,0,1917,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','12:31:29','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','5','11:27:47',0,'','janvi','2025-11-05 11:27:47','drjayant','2025-11-05 12:31:29'),(2468,0,0,'O','N','2526',1918,0,'2025-11-05','2026-02-04',1966,0,1918,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','11:56:47','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','6','11:31:31',0,'','manshi','2025-11-05 11:31:31','drsagar','2025-11-05 11:56:47'),(2469,0,0,'O','N','2526',1919,0,'2025-11-05','2026-02-04',1967,0,1919,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','18:44:21','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','5','11:31:56',0,'','drashti','2025-11-05 11:31:56','drjayant','2025-11-05 18:44:21'),(2470,0,0,'O','N','2526',1920,0,'2025-11-05','2026-02-04',1968,0,1920,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','00:00:00','','','N','N',NULL,'O','N','Z26','','0000-00-00 00:00:00','3','11:36:09',0,'','janvi','2025-11-05 11:36:09','','0000-00-00 00:00:00'),(2471,0,0,'O','N','2526',1921,0,'2025-11-05','2026-02-04',1969,0,1921,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','11:59:19','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','5','11:36:17',0,'','drashti','2025-11-05 11:36:17','drjayant','2025-11-05 11:59:19'),(2472,0,0,'O','N','2526',1922,0,'2025-11-05','2026-02-04',1970,0,1922,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','00:00:00','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','3','11:53:55',0,'','janvi','2025-11-05 11:53:55','','0000-00-00 00:00:00'),(2473,0,0,'O','N','2526',1923,0,'2025-11-05','2026-02-04',1971,0,1923,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','12:09:48','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','6','11:58:19',0,'','manshi','2025-11-05 11:58:19','drsagar','2025-11-05 12:09:48'),(2474,0,0,'O','N','2526',1669,0,'2025-11-05','0000-00-00',1714,0,1669,'N','','N','','','','','N','D02','','N',4,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','12:29:29','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','3','11:58:25',0,'','janvi','2025-11-05 11:58:25','drpratapsinh','2025-11-05 12:29:29'),(2475,0,0,'O','N','2526',1924,0,'2025-11-05','2026-02-04',1972,0,1924,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','12:24:42','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','5','12:00:02',0,'','drashti','2025-11-05 12:00:02','drjayant','2025-11-05 12:24:42'),(2476,0,0,'O','N','2526',1925,0,'2025-11-05','2026-02-04',1973,0,1925,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','13:36:42','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','2','12:00:19',0,'','reception','2025-11-05 12:00:19','darshan','2025-11-05 13:36:42'),(2477,0,0,'O','N','2526',1926,0,'2025-11-05','2026-02-04',1974,0,1926,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','12:50:21','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','3','12:00:29',0,'','janvi','2025-11-05 12:00:29','drpratapsinh','2025-11-05 12:50:21'),(2478,0,0,'O','N','2526',1927,0,'2025-11-05','2026-02-04',1975,0,1927,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','12:41:34','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','12:02:12',0,'','reception','2025-11-05 12:02:12','darshan','2025-11-05 12:41:34'),(2479,0,0,'O','N','2526',1928,0,'2025-11-05','2026-02-04',1976,0,1928,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:03:00','0000-00-00','','','','N','12:03:00','12:55:05','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','6','12:03:32',0,'','manshi','2025-11-05 12:03:32','drsagar','2025-11-05 12:55:05'),(2480,0,0,'O','N','2526',1929,0,'2025-11-05','2026-02-04',1977,0,1929,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:05:00','0000-00-00','','','','N','12:05:00','13:58:20','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','2','12:05:19',0,'','reception','2025-11-05 12:05:19','darshan','2025-11-05 13:58:20'),(2481,0,0,'O','N','2526',1930,0,'2025-11-05','2026-02-04',1978,0,1930,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','12:26:50','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','5','12:07:01',0,'','drashti','2025-11-05 12:07:01','drjayant','2025-11-05 12:26:50'),(2482,0,0,'O','N','2526',1931,0,'2025-11-05','2026-02-04',1979,0,1931,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:07:00','0000-00-00','','','','N','12:07:00','12:44:59','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','12:07:08',0,'','reception','2025-11-05 12:07:08','darshan','2025-11-05 12:44:59'),(2483,0,0,'O','N','2526',1276,0,'2025-11-05','0000-00-00',1315,0,1276,'N','','N','','','','','N','D02','','N',4,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:08:00','0000-00-00','','','','N','12:08:00','12:51:46','','','N','Y',NULL,'O','O','Z37','','0000-00-00 00:00:00','3','12:08:40',0,'','janvi','2025-11-05 12:08:40','drpratapsinh','2025-11-05 12:51:46'),(2484,0,0,'O','N','2526',1932,0,'2025-11-05','2026-02-04',1980,0,1932,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','13:17:54','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','12:36:00',0,'','reception','2025-11-05 12:36:00','darshan','2025-11-05 13:17:54'),(2485,0,0,'O','N','2526',1933,0,'2025-11-05','2026-02-04',1981,0,1933,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:37:00','0000-00-00','','','','N','12:37:00','12:42:42','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','3','12:37:09',0,'','janvi','2025-11-05 12:37:09','drpratapsinh','2025-11-05 12:42:42'),(2486,0,0,'O','N','2526',1934,0,'2025-11-05','2026-02-04',1982,0,1934,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:39:00','0000-00-00','','','','N','12:39:00','13:22:20','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:39:28',0,'','reception','2025-11-05 12:39:28','darshan','2025-11-05 13:22:20'),(2487,0,0,'O','N','2526',1207,0,'2025-11-05','0000-00-00',1246,0,1207,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:39:00','0000-00-00','','','','N','12:39:00','12:54:37','','','N','Y',NULL,'O','O','Z39','','0000-00-00 00:00:00','6','12:39:35',0,'','manshi','2025-11-05 12:39:35','drsagar','2025-11-05 12:54:37'),(2488,0,0,'O','N','2526',1935,0,'2025-11-05','2026-02-04',1983,0,1935,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:42:00','0000-00-00','','','','N','12:42:00','14:22:40','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','2','12:42:02',0,'','reception','2025-11-05 12:42:02','darshan','2025-11-05 14:22:40'),(2489,0,0,'O','N','2526',1936,0,'2025-11-05','2026-02-04',1984,0,1936,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:44:00','0000-00-00','','','','N','12:44:00','13:04:55','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','6','12:44:11',0,'','manshi','2025-11-05 12:44:11','drsagar','2025-11-05 13:04:55'),(2490,0,0,'O','N','2526',1937,0,'2025-11-05','2026-02-04',1985,0,1937,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','0000-00-00','','','','N','13:00:00','13:10:54','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','6','13:00:36',0,'','manshi','2025-11-05 13:00:36','drsagar','2025-11-05 13:10:54'),(2491,0,0,'O','N','2526',1938,0,'2025-11-05','2026-02-04',1986,0,1938,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:21:00','0000-00-00','','','','N','13:21:00','18:24:24','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','6','13:21:42',0,'','manshi','2025-11-05 13:21:42','drsagar','2025-11-05 18:24:24'),(2492,0,0,'O','N','2526',1133,0,'2025-11-05','0000-00-00',1173,0,1133,'N','','N','','','','','N','D02','','N',11,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:32:00','0000-00-00','','','','N','13:32:00','13:36:16','','','N','Y',NULL,'O','O','Z44','','0000-00-00 00:00:00','3','13:32:25',0,'','janvi','2025-11-05 13:32:25','drpratapsinh','2025-11-05 13:36:16'),(2493,0,0,'O','N','2526',1939,0,'2025-11-05','2026-02-04',1987,0,1939,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:45:00','0000-00-00','','','','N','13:45:00','14:29:00','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','2','13:46:00',0,'','reception','2025-11-05 13:46:00','darshan','2025-11-05 14:29:00'),(2494,0,0,'O','N','2526',72,0,'2025-11-05','0000-00-00',83,0,72,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:14:00','0000-00-00','','','','N','16:14:00','17:23:25','','','N','Y',NULL,'O','O','Z46','','0000-00-00 00:00:00','2','16:14:56',0,'','reception','2025-11-05 16:14:56','darshan','2025-11-05 17:23:25'),(2495,0,0,'O','N','2526',1940,0,'2025-11-05','2026-02-04',1988,0,1940,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:32:00','0000-00-00','','','','N','16:32:00','17:23:37','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','16:32:38',0,'','reception','2025-11-05 16:32:38','darshan','2025-11-05 17:23:37'),(2496,0,0,'O','N','2526',1941,0,'2025-11-05','2026-02-04',1989,0,1941,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:47:00','0000-00-00','','','','N','16:47:00','17:27:28','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','2','16:47:46',0,'','reception','2025-11-05 16:47:46','darshan','2025-11-05 17:27:28'),(2497,0,0,'O','N','2526',322,0,'2025-11-05','0000-00-00',338,0,322,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:51:00','0000-00-00','','','','N','16:51:00','17:29:48','','','N','Y',NULL,'O','O','Z49','','0000-00-00 00:00:00','2','16:51:34',0,'','janvi','2025-11-05 16:51:34','darshan','2025-11-05 17:29:48'),(2498,0,0,'O','N','2526',655,0,'2025-11-05','0000-00-00',685,0,655,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:53:00','0000-00-00','','','','N','16:53:00','17:33:42','','','N','Y',NULL,'O','O','Z50','','0000-00-00 00:00:00','2','16:53:43',0,'','priyanshi','2025-11-05 16:53:43','darshan','2025-11-05 17:33:42'),(2499,0,0,'O','N','2526',1942,0,'2025-11-05','2026-02-04',1990,0,1942,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:57:00','0000-00-00','','','','N','16:57:00','19:36:50','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','5','16:57:16',0,'','drashti','2025-11-05 16:57:16','drjayant','2025-11-05 19:36:50'),(2500,0,0,'O','N','2526',1943,0,'2025-11-05','2026-02-04',1991,0,1943,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:57:00','0000-00-00','','','','N','16:57:00','17:38:45','','','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:57:19',0,'','reception','2025-11-05 16:57:19','darshan','2025-11-05 17:38:45'),(2501,0,0,'O','N','2526',94,0,'2025-11-05','0000-00-00',105,0,94,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:04:00','0000-00-00','','','','N','17:04:00','17:41:52','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','17:04:20',0,'','drashti','2025-11-05 17:04:20','darshan','2025-11-05 17:41:52'),(2502,0,0,'O','N','2526',1944,0,'2025-11-05','2026-02-04',1992,0,1944,'N','','N','','','ECG','','N','D27','','N',136,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:09:00','0000-00-00','','','','N','17:09:00','18:02:05','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','5','17:29:52',0,'','drashti','2025-11-05 17:09:40','drjayant','2025-11-05 18:02:05'),(2503,0,0,'O','N','2526',1945,0,'2025-11-05','2026-02-04',1993,0,1945,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:11:00','0000-00-00','','','','N','17:11:00','17:47:32','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:11:16',0,'','reception','2025-11-05 17:11:16','darshan','2025-11-05 17:47:32'),(2504,0,0,'O','N','2526',1946,0,'2025-11-05','2026-02-04',1994,0,1946,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:13:00','0000-00-00','','','','N','17:13:00','18:47:40','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','2','17:13:55',0,'','reception','2025-11-05 17:13:55','darshan','2025-11-05 18:47:40'),(2505,0,0,'O','N','2526',1719,0,'2025-11-05','0000-00-00',1763,0,1719,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:18:00','0000-00-00','','','','N','17:18:00','00:00:00','','','N','N',NULL,'O','O','Z54','','0000-00-00 00:00:00','3','17:19:29',0,'','drashti','2025-11-05 17:18:01','drashti','2025-11-05 17:19:29'),(2506,0,0,'O','N','2526',1947,0,'2025-11-05','2026-02-04',1995,0,1947,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','17:51:26','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:20:16',0,'','reception','2025-11-05 17:20:16','darshan','2025-11-05 17:51:26'),(2507,0,0,'O','N','2526',1948,0,'2025-11-05','2026-02-04',1996,0,1948,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:23:00','0000-00-00','','','','N','17:23:00','17:59:52','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:23:44',0,'','reception','2025-11-05 17:23:44','darshan','2025-11-05 17:59:52'),(2508,0,0,'O','N','2526',1678,0,'2025-11-05','0000-00-00',1723,0,1678,'N','','N','','','FOLLOWUP  E','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:31:00','0000-00-00','','','','N','17:31:00','18:52:59','','','N','Y',NULL,'O','O','Z55','','0000-00-00 00:00:00','2','17:31:38',0,'','reception','2025-11-05 17:31:38','darshan','2025-11-05 18:52:59'),(2509,0,0,'O','N','2526',1949,0,'2025-11-05','2026-02-04',1997,0,1949,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:31:00','0000-00-00','','','','N','17:31:00','20:21:56','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:31:58',0,'','drashti','2025-11-05 17:31:58','darshan','2025-11-05 20:21:56'),(2510,0,0,'O','N','2526',1950,0,'2025-11-05','2026-02-04',1998,0,1950,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','18:04:45','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','5','17:32:16',0,'','janvi','2025-11-05 17:32:16','drjayant','2025-11-05 18:04:44'),(2511,0,0,'O','N','2526',1951,0,'2025-11-05','2026-02-04',1999,0,1951,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:39:00','0000-00-00','','','','N','17:39:00','19:03:49','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','2','17:39:20',0,'','reception','2025-11-05 17:39:20','darshan','2025-11-05 19:03:49'),(2512,0,0,'O','N','2526',1281,0,'2025-11-05','0000-00-00',1320,0,1281,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:39:00','0000-00-00','','','','N','17:39:00','18:41:05','','','N','Y',NULL,'O','O','L07','','0000-00-00 00:00:00','2','17:39:47',0,'','drashti','2025-11-05 17:39:47','darshan','2025-11-05 18:41:05'),(2513,0,0,'O','N','2526',1952,0,'2025-11-05','2026-02-04',2000,0,1952,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','18:22:14','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:40:27',0,'','reception','2025-11-05 17:40:27','darshan','2025-11-05 18:22:14'),(2514,0,0,'O','N','2526',47,0,'2025-11-05','0000-00-00',53,0,47,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:44:00','0000-00-00','','','','N','17:44:00','00:00:00','','','N','N',NULL,'O','O','Z58','','0000-00-00 00:00:00','3','17:44:35',0,'','drashti','2025-11-05 17:44:35','','0000-00-00 00:00:00'),(2515,0,0,'O','N','2526',1953,0,'2025-11-05','2026-02-04',2001,0,1953,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','00:00:00','','','N','N',NULL,'O','N','Z59','','0000-00-00 00:00:00','3','17:46:29',0,'','janvi','2025-11-05 17:46:29','','0000-00-00 00:00:00'),(2516,0,0,'O','N','2526',1954,0,'2025-11-05','2026-02-04',2002,0,1954,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','19:07:38','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','2','17:46:53',0,'','reception','2025-11-05 17:46:53','darshan','2025-11-05 19:07:38'),(2517,0,0,'O','N','2526',1955,0,'2025-11-05','2026-02-04',2003,0,1955,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','18:50:34','','N','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','17:48:58',0,'','drashti','2025-11-05 17:48:58','darshan','2025-11-05 18:50:34'),(2518,0,0,'O','N','2526',1816,0,'2025-11-05','0000-00-00',1862,0,1816,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','20:00:59','','N','N','Y',NULL,'O','O','Z61','','0000-00-00 00:00:00','2','17:50:31',0,'','reception','2025-11-05 17:50:31','darshan','2025-11-05 20:00:59'),(2519,0,0,'O','N','2526',1956,0,'2025-11-05','2026-02-04',2004,0,1956,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','18:11:30','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','5','17:52:46',0,'','drashti','2025-11-05 17:52:46','drjayant','2025-11-05 18:11:30'),(2520,0,0,'O','N','2526',1957,0,'2025-11-05','2026-02-04',2005,0,1957,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','00:00:00','','','N','N',NULL,'O','N','Z63','','0000-00-00 00:00:00','7','17:55:15',0,'','manshi','2025-11-05 17:52:55','manshi','2025-11-05 17:55:15'),(2521,0,0,'O','N','2526',1958,0,'2025-11-05','2026-02-04',2006,0,1958,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:53:00','0000-00-00','','','','N','17:53:00','18:15:41','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','5','17:53:20',0,'','janvi','2025-11-05 17:53:20','drjayant','2025-11-05 18:15:41'),(2522,0,0,'O','N','2526',1959,0,'2025-11-05','2026-02-04',2007,0,1959,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','18:31:28','','','N','Y',NULL,'O','N','Z65','','0000-00-00 00:00:00','6','17:57:52',0,'','manshi','2025-11-05 17:57:52','drsagar','2025-11-05 18:31:28'),(2523,0,0,'O','N','2526',1960,0,'2025-11-05','2026-02-04',2008,0,1960,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:58:00','0000-00-00','','','','N','17:58:00','18:31:04','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','5','17:58:28',0,'','reception','2025-11-05 17:58:28','drjayant','2025-11-05 18:31:04'),(2524,0,0,'O','N','2526',1961,0,'2025-11-05','2026-02-04',2009,0,1961,'N','','N','','','','','N','D02','','N',22,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','00:00:00','','','N','N',NULL,'O','N','Z67','','0000-00-00 00:00:00','3','17:59:37',0,'','janvi','2025-11-05 17:59:37','','0000-00-00 00:00:00'),(2525,0,0,'O','N','2526',1962,0,'2025-11-05','2026-02-04',2010,0,1962,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','0000-00-00','','','','N','18:00:00','18:28:32','','','N','Y',NULL,'O','N','Z68','','0000-00-00 00:00:00','5','18:00:51',0,'','reception','2025-11-05 18:00:51','drjayant','2025-11-05 18:28:32'),(2526,0,0,'O','N','2526',1602,0,'2025-11-05','0000-00-00',1158,0,1602,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','00:00:00','','','N','Y',NULL,'O','O','Z69','','0000-00-00 00:00:00','3','18:03:21',0,'','reception','2025-11-05 18:03:21','','0000-00-00 00:00:00'),(2527,0,0,'O','N','2526',1963,0,'2025-11-05','2026-02-04',2011,0,1963,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','20:35:06','','N','N','Y',NULL,'O','N','Z70','','0000-00-00 00:00:00','2','18:05:16',0,'','reception','2025-11-05 18:05:16','darshan','2025-11-05 20:35:06'),(2528,0,0,'O','N','2526',1964,0,'2025-11-05','2026-02-04',2012,0,1964,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:25:03','','','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','5','18:09:41',0,'','janvi','2025-11-05 18:09:41','drjayant','2025-11-05 18:25:03'),(2529,0,0,'O','N','2526',1965,0,'2025-11-05','2026-02-04',2013,0,1965,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','19:38:03','','','N','Y',NULL,'O','N','Z72','','0000-00-00 00:00:00','2','18:11:12',0,'','reception','2025-11-05 18:11:12','darshan','2025-11-05 19:38:03'),(2530,0,0,'O','N','2526',441,0,'2025-11-05','0000-00-00',466,0,441,'N','','N','','','','Y','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','00:00:00','','','N','N',NULL,'O','O','Z73','','0000-00-00 00:00:00','7','18:11:39',0,'','manshi','2025-11-05 18:11:39','','0000-00-00 00:00:00'),(2531,0,0,'O','N','2526',1288,0,'2025-11-05','0000-00-00',1327,0,1288,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','00:00:00','','','N','N',NULL,'O','O','Z74','','0000-00-00 00:00:00','3','18:11:41',0,'','janvi','2025-11-05 18:11:41','','0000-00-00 00:00:00'),(2532,0,0,'O','N','2526',1606,0,'2025-11-05','0000-00-00',1651,0,1606,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:27:00','0000-00-00','','','','N','18:27:00','18:47:08','','','N','Y',NULL,'O','O','Z75','','0000-00-00 00:00:00','5','18:27:52',0,'','janvi','2025-11-05 18:27:14','drjayant','2025-11-05 18:47:08'),(2533,0,0,'O','N','2526',1966,0,'2025-11-05','2026-02-04',2014,0,1966,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','18:52:36','','','N','Y',NULL,'O','N','Z76','','0000-00-00 00:00:00','5','18:34:15',0,'','drashti','2025-11-05 18:34:15','drjayant','2025-11-05 18:52:36'),(2534,0,0,'O','N','2526',1967,0,'2025-11-05','2026-02-04',2015,0,1967,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','19:51:36','','','N','Y',NULL,'O','N','Z77','','0000-00-00 00:00:00','2','18:36:04',0,'','reception','2025-11-05 18:36:04','darshan','2025-11-05 19:51:36'),(2535,0,0,'O','N','2526',1968,0,'2025-11-05','2026-02-04',2016,0,1968,'N','','N','','','NC','','N','D02','','N',137,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:37:00','0000-00-00','','','','N','18:37:00','00:00:00','','','N','N',NULL,'O','N','Z78','','0000-00-00 00:00:00','3','18:37:49',0,'','drashti','2025-11-05 18:37:49','','0000-00-00 00:00:00'),(2536,0,0,'O','N','2526',704,0,'2025-11-05','0000-00-00',735,0,704,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','18:54:49','','','N','Y',NULL,'O','O','Z79','','0000-00-00 00:00:00','6','18:40:17',0,'','manshi','2025-11-05 18:40:17','drsagar','2025-11-05 18:54:49'),(2537,0,0,'O','N','2526',1969,0,'2025-11-05','2026-02-04',2017,0,1969,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','18:56:09','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','2','18:40:22',0,'','reception','2025-11-05 18:40:22','darshan','2025-11-05 18:56:09'),(2538,0,0,'O','N','2526',221,0,'2025-11-05','0000-00-00',234,0,221,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','00:00:00','','','N','N',NULL,'O','O','Z80','','0000-00-00 00:00:00','3','18:40:40',0,'','janvi','2025-11-05 18:40:40','','0000-00-00 00:00:00'),(2539,0,0,'O','N','2526',1034,0,'2025-11-05','0000-00-00',1068,0,1034,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','19:16:11','','','N','Y',NULL,'O','O','Z81','','0000-00-00 00:00:00','5','18:44:11',0,'','drashti','2025-11-05 18:44:11','drjayant','2025-11-05 19:16:11'),(2540,0,0,'O','N','2526',1970,0,'2025-11-05','2026-02-04',2018,0,1970,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','20:04:47','','','N','Y',NULL,'O','N','Z82','','0000-00-00 00:00:00','2','18:48:41',0,'','reception','2025-11-05 18:48:41','darshan','2025-11-05 20:04:47'),(2541,0,0,'O','N','2526',1971,0,'2025-11-05','2026-02-04',2019,0,1971,'N','','N','','','NC','','N','D27','','N',138,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:52:00','0000-00-00','','','','N','18:52:00','19:16:50','','','N','Y',NULL,'O','N','Z83','','0000-00-00 00:00:00','5','18:52:02',0,'','reception','2025-11-05 18:52:02','drjayant','2025-11-05 19:16:50'),(2542,0,0,'O','N','2526',1000,0,'2025-11-05','0000-00-00',1032,0,1000,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:57:00','0000-00-00','','','','N','18:57:00','19:27:33','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','2','18:57:06',0,'','reception','2025-11-05 18:57:06','darshan','2025-11-05 19:27:33'),(2543,0,0,'O','N','2526',1972,0,'2025-11-05','2026-02-04',2020,0,1972,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:01:00','0000-00-00','','','','N','19:01:00','19:16:25','','','N','Y',NULL,'O','N','Z84','','0000-00-00 00:00:00','5','19:01:40',0,'','drashti','2025-11-05 19:01:40','drjayant','2025-11-05 19:16:25'),(2544,0,0,'O','N','2526',1973,0,'2025-11-05','2026-02-04',2021,0,1973,'N','','N','','','NV','','N','D06','','N',139,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:03:00','0000-00-00','','','','N','19:03:00','18:35:00','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','2','19:03:19',0,'','reception','2025-11-05 19:03:19','darshan','2025-11-06 18:35:00'),(2545,0,0,'O','N','2526',1974,0,'2025-11-05','2026-02-04',2022,0,1974,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:20:00','0000-00-00','','','','N','19:20:00','00:00:00','','','N','N',NULL,'O','N','Z85','','0000-00-00 00:00:00','3','19:20:39',0,'','reception','2025-11-05 19:20:39','','0000-00-00 00:00:00'),(2546,0,0,'O','N','2526',1975,0,'2025-11-05','2026-02-04',2023,0,1975,'N','','N','','','NE','','N','D06','','N',140,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:23:00','0000-00-00','','','','N','19:23:00','19:59:39','','','N','Y',NULL,'O','N','Z86','','0000-00-00 00:00:00','2','19:23:22',0,'','reception','2025-11-05 19:23:21','darshan','2025-11-05 19:59:39'),(2547,0,0,'O','N','2526',1976,0,'2025-11-05','2026-02-04',2024,0,1976,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:37:00','0000-00-00','','','','N','19:37:00','00:00:00','','','N','N',NULL,'O','N','Z87','','0000-00-00 00:00:00','3','19:37:29',0,'','drashti','2025-11-05 19:37:29','','0000-00-00 00:00:00'),(2548,0,0,'O','N','2526',109,0,'2025-11-05','0000-00-00',120,0,109,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:38:00','0000-00-00','','','','N','19:38:00','19:51:56','','','N','Y',NULL,'O','O','Z88','','0000-00-00 00:00:00','5','19:38:25',0,'','janvi','2025-11-05 19:38:25','drjayant','2025-11-05 19:51:56'),(2549,0,0,'O','N','2526',110,0,'2025-11-05','0000-00-00',121,0,110,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:39:00','0000-00-00','','','','N','19:39:00','19:52:27','','','N','Y',NULL,'O','O','Z89','','0000-00-00 00:00:00','5','19:39:09',0,'','janvi','2025-11-05 19:39:09','drjayant','2025-11-05 19:52:27'),(2550,0,0,'O','N','2526',1977,0,'2025-11-05','2026-02-04',2025,0,1977,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:57:00','0000-00-00','','','','N','19:57:00','00:00:00','','','N','N',NULL,'O','N','Z90','','0000-00-00 00:00:00','6','19:57:47',0,'','manshi','2025-11-05 19:57:47','','0000-00-00 00:00:00'),(2551,0,0,'O','N','2526',1978,0,'2025-11-05','2026-02-04',2026,0,1978,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:03:00','0000-00-00','','','','N','20:03:00','00:00:00','','','N','N',NULL,'O','N','Z91','','0000-00-00 00:00:00','3','20:04:05',0,'','janvi','2025-11-05 20:04:04','','0000-00-00 00:00:00'),(2552,0,0,'O','N','2526',1979,0,'2025-11-05','2026-02-04',2027,0,1979,'N','','N','','','','Y','N','D02','','N',128,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:12:00','0000-00-00','','','','N','20:12:00','00:00:00','','','N','N',NULL,'O','N','Z92','','0000-00-00 00:00:00','3','20:12:06',0,'','janvi','2025-11-05 20:12:06','reception','2025-11-05 20:12:52'),(2553,0,0,'O','N','2526',1980,0,'2025-11-06','2026-02-05',2028,0,1980,'N','','N','','','ER','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:33:00','0000-00-00','','','','N','08:33:00','11:43:37','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','6','08:33:57',0,'','reception','2025-11-06 08:33:57','drsagar','2025-11-06 11:43:37'),(2554,0,0,'O','N','2526',1981,0,'2025-11-06','2026-02-05',2029,0,1981,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:55:00','0000-00-00','','','','N','08:55:00','11:18:35','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','5','11:01:31',0,'','reception','2025-11-06 08:55:09','drjayant','2025-11-06 11:18:35'),(2555,0,0,'I','N','2526',0,131,'2025-11-06','2026-02-05',2030,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:20:00','2025-11-07','','1','mo','N','09:20:00','18:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-06 09:26:01','mo','2025-11-07 19:52:23'),(2556,0,0,'I','N','2526',0,132,'2025-11-06','2026-02-05',2031,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-11-07','','1','mo','N','09:30:00','10:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-06 09:37:05','mo','2025-11-07 10:49:26'),(2557,0,0,'O','N','2526',1501,0,'2025-11-06','0000-00-00',1542,0,1501,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:38:00','0000-00-00','','','','N','09:38:00','10:49:13','','','N','Y',NULL,'O','O','Z03','','0000-00-00 00:00:00','2','09:38:36',0,'','reception','2025-11-06 09:38:36','darshan','2025-11-06 10:49:13'),(2558,0,0,'O','N','2526',1982,0,'2025-11-06','2026-02-05',2032,0,1982,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:48:00','0000-00-00','','','','N','09:48:00','10:58:18','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','2','09:48:37',0,'','reception','2025-11-06 09:48:37','darshan','2025-11-06 10:58:18'),(2559,0,0,'O','N','2526',1983,0,'2025-11-06','2026-02-05',2033,0,1983,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:49:00','0000-00-00','','','','N','09:49:00','10:53:51','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','09:49:59',0,'','reception','2025-11-06 09:49:59','darshan','2025-11-06 10:53:51'),(2560,0,0,'O','N','2526',1984,0,'2025-11-06','2026-02-05',2034,0,1984,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:01:00','0000-00-00','','','','N','10:01:00','11:21:02','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','2','10:01:05',0,'','reception','2025-11-06 10:01:05','darshan','2025-11-06 11:21:02'),(2561,0,0,'I','N','2526',0,133,'2025-11-06','2026-02-05',2035,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','2025-11-07','','1','mo','N','10:00:00','10:20:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-06 10:07:28','mo','2025-11-07 10:46:19'),(2562,0,0,'O','N','2526',1985,0,'2025-11-06','2026-02-05',2036,0,1985,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:18:00','0000-00-00','','','','N','10:18:00','11:43:48','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','6','10:18:15',0,'','manshi','2025-11-06 10:18:15','drsagar','2025-11-06 11:43:48'),(2563,0,0,'O','N','2526',1986,0,'2025-11-06','2026-02-05',2037,0,1986,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:19:00','0000-00-00','','','','N','10:19:00','11:05:59','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','5','11:01:31',0,'','priyanshi','2025-11-06 10:20:05','drjayant','2025-11-06 11:05:59'),(2564,0,0,'O','N','2526',1987,0,'2025-11-06','2026-02-05',2038,0,1987,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:25:00','0000-00-00','','','','N','10:25:00','12:02:36','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','2','10:25:44',0,'','reception','2025-11-06 10:25:44','darshan','2025-11-06 12:02:36'),(2565,0,0,'O','N','2526',1988,0,'2025-11-06','2026-02-05',2039,0,1988,'N','','N','','','NE','','N','D06','','N',31,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:29:00','0000-00-00','','','','N','10:29:00','12:19:33','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','2','10:29:50',0,'','reception','2025-11-06 10:29:50','darshan','2025-11-06 12:19:33'),(2566,0,0,'O','N','2526',1989,0,'2025-11-06','2026-02-05',2040,0,1989,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:32:00','0000-00-00','','','','N','10:32:00','11:24:13','','','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:32:15',0,'','reception','2025-11-06 10:32:15','darshan','2025-11-06 11:24:13'),(2567,0,0,'O','N','2526',1248,0,'2025-11-06','0000-00-00',1289,0,1248,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','11:31:23','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:48:24',0,'','reception','2025-11-06 10:48:24','darshan','2025-11-06 11:31:23'),(2568,0,0,'O','N','2526',1245,0,'2025-11-06','0000-00-00',1286,0,1245,'N','','N','','','','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','11:16:58','','','N','Y',NULL,'O','O','Z10','','0000-00-00 00:00:00','2','10:53:39',0,'','reception','2025-11-06 10:53:39','darshan','2025-11-06 11:16:58'),(2569,0,0,'O','N','2526',861,0,'2025-11-06','0000-00-00',893,0,861,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','11:18:22','','','N','Y',NULL,'O','O','Z11','','0000-00-00 00:00:00','5','11:01:31',0,'','priyanshi','2025-11-06 11:01:31','drjayant','2025-11-06 11:18:22'),(2570,0,0,'O','N','2526',1990,0,'2025-11-06','2026-02-05',2041,0,1990,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','13:54:53','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','11:01:33',0,'','reception','2025-11-06 11:01:33','darshan','2025-11-06 13:54:53'),(2571,0,0,'O','N','2526',1991,0,'2025-11-06','2026-02-05',2042,0,1991,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','13:54:39','','N','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','11:03:33',0,'','reception','2025-11-06 11:03:33','darshan','2025-11-06 13:54:39'),(2572,0,0,'O','N','2526',1992,0,'2025-11-06','2026-02-05',2043,0,1992,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','13:58:28','','N','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','2','11:05:28',0,'','reception','2025-11-06 11:05:28','darshan','2025-11-06 13:58:28'),(2573,0,0,'O','N','2526',111,0,'2025-11-06','0000-00-00',122,0,111,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','00:00:00','','','N','N',NULL,'O','O','Z13','','0000-00-00 00:00:00','3','11:17:47',0,'','janvi','2025-11-06 11:17:47','','0000-00-00 00:00:00'),(2574,0,0,'O','N','2526',1993,0,'2025-11-06','2026-02-05',2044,0,1993,'N','','N','','','NV','','N','D06','','N',143,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','14:19:45','','N','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','2','11:18:48',0,'','reception','2025-11-06 11:18:48','darshan','2025-11-06 14:19:45'),(2575,0,0,'O','N','2526',1994,0,'2025-11-06','2026-02-05',2045,0,1994,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','11:53:23','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','11:18:54',0,'','drashti','2025-11-06 11:18:54','darshan','2025-11-06 11:53:23'),(2576,0,0,'O','N','2526',1995,0,'2025-11-06','2026-02-05',2046,0,1995,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:22:00','0000-00-00','','','','N','11:22:00','12:48:25','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:22:27',0,'','reception','2025-11-06 11:22:27','darshan','2025-11-06 12:48:25'),(2577,0,0,'O','N','2526',1996,0,'2025-11-06','2026-02-05',2047,0,1996,'N','','N','','','NV','','N','D06','','N',144,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','14:30:00','','N','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','11:25:24',0,'','reception','2025-11-06 11:25:24','darshan','2025-11-06 14:29:59'),(2578,0,0,'O','N','2526',25,0,'2025-11-06','0000-00-00',26,0,25,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','12:06:41','','','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','2','11:27:24',0,'','reception','2025-11-06 11:27:24','darshan','2025-11-06 12:06:41'),(2579,0,0,'O','N','2526',1997,0,'2025-11-06','2026-02-05',2048,0,1997,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','11:40:09','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','5','11:28:02',0,'','drashti','2025-11-06 11:28:02','drjayant','2025-11-06 11:40:09'),(2580,0,0,'O','N','2526',1998,0,'2025-11-06','2026-02-05',2049,0,1998,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','13:17:21','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','2','11:29:44',0,'','reception','2025-11-06 11:29:44','darshan','2025-11-06 13:17:21'),(2581,0,0,'O','N','2526',1528,0,'2025-11-06','0000-00-00',1569,0,1528,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','00:00:00','','','N','N',NULL,'O','O','Z18','','0000-00-00 00:00:00','7','11:35:36',0,'','manshi','2025-11-06 11:35:36','','0000-00-00 00:00:00'),(2582,0,0,'O','N','2526',1999,0,'2025-11-06','2026-02-05',2050,0,1999,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:37:00','0000-00-00','','','','N','11:37:00','12:14:28','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','11:37:42',0,'','reception','2025-11-06 11:37:42','darshan','2025-11-06 12:14:28'),(2583,0,0,'O','N','2526',2000,0,'2025-11-06','2026-02-05',2051,0,2000,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','13:23:02','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','2','11:39:13',0,'','drashti','2025-11-06 11:39:13','darshan','2025-11-06 13:23:02'),(2584,0,0,'O','N','2526',499,0,'2025-11-06','0000-00-00',524,0,499,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','00:00:00','','','N','N',NULL,'O','O','Z20','','0000-00-00 00:00:00','3','11:41:15',0,'','reception','2025-11-06 11:41:15','','0000-00-00 00:00:00'),(2585,0,0,'O','N','2526',2001,0,'2025-11-06','2026-02-05',2052,0,2001,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','12:23:53','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','2','11:54:54',0,'','reception','2025-11-06 11:54:54','darshan','2025-11-06 12:23:53'),(2586,0,0,'O','N','2526',2002,0,'2025-11-06','2026-02-05',2053,0,2002,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','14:04:42','','N','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','2','11:58:56',0,'','drashti','2025-11-06 11:58:56','darshan','2025-11-06 14:04:42'),(2587,0,0,'O','N','2526',2003,0,'2025-11-06','2026-02-05',2054,0,2003,'N','','N','','','NC','','N','D02','','N',145,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','00:00:00','','','N','N',NULL,'O','N','Z22','','0000-00-00 00:00:00','3','12:02:19',0,'','reception','2025-11-06 12:02:19','','0000-00-00 00:00:00'),(2588,0,0,'O','N','2526',2004,0,'2025-11-06','2026-02-05',2055,0,2004,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:04:00','0000-00-00','','','','N','12:04:00','12:57:01','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','12:04:30',0,'','reception','2025-11-06 12:04:30','darshan','2025-11-06 12:57:01'),(2589,0,0,'O','N','2526',1974,0,'2025-11-06','0000-00-00',2022,0,1974,'N','','N','','','PROCEDURE','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:11:00','0000-00-00','','','','N','12:11:00','00:00:00','','','N','N',NULL,'O','O','Z23','','0000-00-00 00:00:00','3','12:11:56',0,'','drashti','2025-11-06 12:11:56','','0000-00-00 00:00:00'),(2590,0,0,'O','N','2526',2005,0,'2025-11-06','2026-02-05',2056,0,2005,'N','','N','','','NC','','N','D02','','N',146,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:16:00','0000-00-00','','','','N','12:16:00','00:00:00','','','N','N',NULL,'O','N','Z24','','0000-00-00 00:00:00','3','12:16:54',0,'','reception','2025-11-06 12:16:54','','0000-00-00 00:00:00'),(2591,0,0,'O','N','2526',1978,0,'2025-11-06','0000-00-00',2026,0,1978,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:20:00','0000-00-00','','','','N','12:20:00','00:00:00','','','N','N',NULL,'O','O','Z25','','0000-00-00 00:00:00','3','12:20:38',0,'','janvi','2025-11-06 12:20:38','','0000-00-00 00:00:00'),(2592,0,0,'O','N','2526',2006,0,'2025-11-06','2026-02-05',2057,0,2006,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:37:00','0000-00-00','','','','N','12:37:00','12:49:28','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','5','12:37:11',0,'','drashti','2025-11-06 12:37:10','drjayant','2025-11-06 12:49:28'),(2593,0,0,'O','N','2526',2007,0,'2025-11-06','2026-02-05',2058,0,2007,'N','','N','','','NC','','N','D02','','N',147,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:40:00','0000-00-00','','','','N','12:40:00','00:00:00','','','N','N',NULL,'O','N','Z27','','0000-00-00 00:00:00','3','12:40:42',0,'','drashti','2025-11-06 12:40:42','','0000-00-00 00:00:00'),(2594,0,0,'O','N','2526',838,0,'2025-11-06','0000-00-00',869,0,838,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:47:00','0000-00-00','','','','N','12:47:00','14:11:30','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','2','12:47:11',0,'','reception','2025-11-06 12:47:11','darshan','2025-11-06 14:11:30'),(2595,0,0,'O','N','2526',2008,0,'2025-11-06','2026-02-05',2059,0,2008,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:54:00','0000-00-00','','','','N','12:54:00','13:37:37','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','12:54:32',0,'','reception','2025-11-06 12:54:32','darshan','2025-11-06 13:37:37'),(2596,0,0,'O','N','2526',2009,0,'2025-11-06','2026-02-05',2060,0,2009,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:55:00','0000-00-00','','','','N','12:55:00','13:14:23','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','5','12:55:38',0,'','janvi','2025-11-06 12:55:38','drjayant','2025-11-06 13:14:23'),(2597,0,0,'O','N','2526',2010,0,'2025-11-06','2026-02-05',2061,0,2010,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:14:00','0000-00-00','','','','N','13:14:00','14:34:13','','N','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','2','13:14:02',0,'','reception','2025-11-06 13:14:02','darshan','2025-11-06 14:34:13'),(2598,0,0,'O','N','2526',2011,0,'2025-11-06','2026-02-05',2062,0,2011,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:14:00','0000-00-00','','','','N','13:14:00','13:27:11','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','5','13:14:09',0,'','drashti','2025-11-06 13:14:09','drjayant','2025-11-06 13:27:11'),(2599,0,0,'I','N','2526',0,134,'2025-11-06','2026-02-05',2063,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','2025-11-09','','1','mo','N','13:00:00','10:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-06 13:17:15','riya','2025-11-09 10:38:13'),(2600,0,0,'O','N','2526',1584,0,'2025-11-06','0000-00-00',1628,0,1584,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:56:00','0000-00-00','','','','N','13:56:00','00:00:00','','','N','N',NULL,'O','O','Z31','','0000-00-00 00:00:00','3','13:56:30',0,'','drashti','2025-11-06 13:56:30','','0000-00-00 00:00:00'),(2601,0,0,'O','N','2526',1332,0,'2025-11-06','0000-00-00',1372,0,1332,'N','','N','','','','','N','D02','','N',95,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:00:00','0000-00-00','','','','N','14:00:00','00:00:00','','','N','N',NULL,'O','O','Z32','','0000-00-00 00:00:00','3','14:00:16',0,'','reception','2025-11-06 14:00:16','','0000-00-00 00:00:00'),(2602,0,0,'I','N','2526',0,135,'2025-11-06','2026-02-05',2064,0,0,'N','','N','','','','N','N','D02','','N',0,'','42',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:00:00','2025-11-08','','1','mo','N','15:00:00','11:35:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-06 15:10:23','mo','2025-11-08 12:26:18'),(2603,0,0,'O','N','2526',2012,0,'2025-11-06','2026-02-05',2065,0,2012,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:09:00','0000-00-00','','','','N','16:09:00','18:57:36','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:10:01',0,'','reception','2025-11-06 16:10:01','darshan','2025-11-06 18:57:36'),(2604,0,0,'O','N','2526',1368,0,'2025-11-06','0000-00-00',1408,0,1368,'N','','N','','','','','N','D02','','N',70,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:27:00','0000-00-00','','','','N','16:27:00','00:00:00','','','N','N',NULL,'O','O','Z33','','0000-00-00 00:00:00','3','16:27:07',0,'','priyanshi','2025-11-06 16:27:07','','0000-00-00 00:00:00'),(2605,0,0,'O','N','2526',2013,0,'2025-11-06','2026-02-05',2066,0,2013,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:31:00','0000-00-00','','','','N','16:31:00','17:31:44','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','2','16:31:31',0,'','janvi','2025-11-06 16:31:31','darshan','2025-11-06 17:31:44'),(2606,0,0,'O','N','2526',1133,0,'2025-11-06','0000-00-00',1173,0,1133,'N','','N','','','DRESSING','','N','D02','','N',11,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:41:00','0000-00-00','','','','N','16:41:00','00:00:00','','','N','N',NULL,'O','O','Z35','','0000-00-00 00:00:00','3','16:41:56',0,'','janvi','2025-11-06 16:41:56','','0000-00-00 00:00:00'),(2607,0,0,'O','N','2526',2014,0,'2025-11-06','2026-02-05',2067,0,2014,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:55:00','0000-00-00','','','','N','16:55:00','17:21:38','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:55:08',0,'','reception','2025-11-06 16:55:08','darshan','2025-11-06 17:21:38'),(2608,0,0,'O','N','2526',1285,0,'2025-11-06','0000-00-00',1324,0,1285,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:59:00','0000-00-00','','','','N','16:59:00','17:35:07','','','N','Y',NULL,'O','O','L03','','0000-00-00 00:00:00','2','16:59:37',0,'','reception','2025-11-06 16:59:37','darshan','2025-11-06 17:35:07'),(2609,0,0,'O','N','2526',1203,0,'2025-11-06','0000-00-00',1242,0,1203,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:02:00','0000-00-00','','','','N','17:02:00','00:00:00','','','N','N',NULL,'O','O','Z36','','0000-00-00 00:00:00','3','17:02:07',0,'','janvi','2025-11-06 17:02:07','','0000-00-00 00:00:00'),(2610,0,0,'O','N','2526',1973,0,'2025-11-06','0000-00-00',2021,0,1973,'N','','N','','','REPORTS','','N','D06','','N',139,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:15:00','0000-00-00','','','','N','17:15:00','18:49:26','','N','N','Y',NULL,'O','O','Z37','','0000-00-00 00:00:00','2','17:15:54',0,'','reception','2025-11-06 17:15:54','darshan','2025-11-06 18:49:26'),(2611,0,0,'O','N','2526',2015,0,'2025-11-06','2026-02-05',2068,0,2015,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:19:00','0000-00-00','','','','N','17:19:00','19:19:20','','N','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:19:50',0,'','drashti','2025-11-06 17:19:50','darshan','2025-11-06 19:19:20'),(2612,0,0,'O','N','2526',2016,0,'2025-11-06','2026-02-05',2069,0,2016,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:28:00','0000-00-00','','','','N','17:28:00','17:56:46','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:28:15',0,'','reception','2025-11-06 17:28:15','darshan','2025-11-06 17:56:46'),(2613,0,0,'O','N','2526',2017,0,'2025-11-06','2026-02-05',2070,0,2017,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:36:00','0000-00-00','','','','N','17:36:00','17:40:56','','N','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','2','17:36:21',0,'','reception','2025-11-06 17:36:21','darshan','2025-11-07 17:40:56'),(2614,0,0,'O','N','2526',865,0,'2025-11-06','0000-00-00',897,0,865,'N','','N','','','FOLLOWUP E','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','18:13:26','','','N','Y',NULL,'O','O','L06','','0000-00-00 00:00:00','2','17:42:20',0,'','reception','2025-11-06 17:42:20','darshan','2025-11-06 18:13:26'),(2615,0,0,'O','N','2526',1669,0,'2025-11-06','0000-00-00',1714,0,1669,'N','','N','','','DRESSING','','N','D02','','N',4,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','00:00:00','','','N','N',NULL,'O','O','Z39','','0000-00-00 00:00:00','3','17:46:01',0,'','drashti','2025-11-06 17:46:01','','0000-00-00 00:00:00'),(2616,0,0,'O','N','2526',2018,0,'2025-11-06','2026-02-05',2071,0,2018,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:47:00','0000-00-00','','','','N','17:47:00','17:54:28','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','5','17:47:33',0,'','janvi','2025-11-06 17:47:33','drjayant','2025-11-06 17:54:28'),(2617,0,0,'O','N','2526',2019,0,'2025-11-06','2026-02-05',2072,0,2019,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','17:59:50','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','5','17:49:46',0,'','drashti','2025-11-06 17:49:46','drjayant','2025-11-06 17:59:50'),(2618,0,0,'O','N','2526',2020,0,'2025-11-06','2026-02-05',2073,0,2020,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','18:05:56','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','5','17:51:59',0,'','reception','2025-11-06 17:51:59','drjayant','2025-11-06 18:05:56'),(2619,0,0,'O','N','2526',2021,0,'2025-11-06','2026-02-05',2074,0,2021,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:53:00','0000-00-00','','','','N','17:53:00','00:00:00','','','N','N',NULL,'O','N','Z43','','0000-00-00 00:00:00','3','17:53:28',0,'','drashti','2025-11-06 17:53:28','','0000-00-00 00:00:00'),(2620,0,0,'O','N','2526',1288,0,'2025-11-06','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:58:00','0000-00-00','','','','N','17:58:00','00:00:00','','','N','N',NULL,'O','O','Z44','','0000-00-00 00:00:00','3','17:58:12',0,'','janvi','2025-11-06 17:58:12','','0000-00-00 00:00:00'),(2621,0,0,'O','N','2526',2022,0,'2025-11-06','2026-02-05',2075,0,2022,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','18:11:10','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','5','18:02:51',0,'','drashti','2025-11-06 18:02:51','drjayant','2025-11-06 18:11:10'),(2622,0,0,'O','N','2526',2023,0,'2025-11-06','2026-02-05',2076,0,2023,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:20:00','0000-00-00','','','','N','18:20:00','18:39:12','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','5','18:20:39',0,'','drashti','2025-11-06 18:20:39','drjayant','2025-11-06 18:39:12'),(2623,0,0,'O','N','2526',2024,0,'2025-11-06','2026-02-05',2077,0,2024,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','19:18:34','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','6','18:21:20',0,'','manshi','2025-11-06 18:21:20','drsagar','2025-11-06 19:18:34'),(2624,0,0,'I','N','2526',0,136,'2025-11-06','2026-02-05',2078,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','2025-11-09','','1','mo','N','18:00:00','10:35:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-06 18:22:07','mo','2025-11-09 12:14:00'),(2625,0,0,'O','N','2526',2025,0,'2025-11-06','2026-02-05',2079,0,2025,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','18:34:32','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','5','18:23:41',0,'','drashti','2025-11-06 18:23:41','drjayant','2025-11-06 18:34:32'),(2626,0,0,'O','N','2526',2026,0,'2025-11-06','2026-02-05',2080,0,2026,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','18:38:52','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','5','18:26:09',0,'','drashti','2025-11-06 18:26:09','drjayant','2025-11-06 18:38:52'),(2627,0,0,'O','N','2526',2027,0,'2025-11-06','2026-02-05',2081,0,2027,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','19:04:44','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','18:26:17',0,'','reception','2025-11-06 18:26:17','darshan','2025-11-06 19:04:44'),(2628,0,0,'O','N','2526',2028,0,'2025-11-06','2026-02-05',2082,0,2028,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','19:06:43','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','5','18:29:58',0,'','drashti','2025-11-06 18:29:58','drjayant','2025-11-06 19:06:43'),(2629,0,0,'O','N','2526',2029,0,'2025-11-06','2026-02-05',2083,0,2029,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','19:30:44','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','18:36:49',0,'','reception','2025-11-06 18:36:49','darshan','2025-11-06 19:30:44');
INSERT INTO `visit` VALUES (2630,0,0,'O','N','2526',2030,0,'2025-11-06','2026-02-05',2084,0,2030,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','19:17:59','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','6','18:40:03',0,'','manshi','2025-11-06 18:40:03','drsagar','2025-11-06 19:17:59'),(2631,0,0,'O','N','2526',811,0,'2025-11-06','0000-00-00',842,0,811,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:42:00','0000-00-00','','','','N','18:42:00','18:58:00','','','N','Y',NULL,'O','O','Z52','','0000-00-00 00:00:00','5','18:42:13',0,'','drashti','2025-11-06 18:42:13','drjayant','2025-11-06 18:58:00'),(2632,0,0,'O','N','2526',1719,0,'2025-11-06','0000-00-00',1763,0,1719,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:45:00','0000-00-00','','','','N','18:45:00','00:00:00','','','N','N',NULL,'O','O','Z53','','0000-00-00 00:00:00','','18:45:47',0,'','janvi','2025-11-06 18:45:47','janvi','2025-11-06 18:47:52'),(2633,0,0,'O','N','2526',1476,0,'2025-11-06','0000-00-00',1517,0,1476,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','00:00:00','','','N','N',NULL,'O','O','Z54','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-06 18:48:44','','0000-00-00 00:00:00'),(2634,0,0,'O','N','2526',2031,0,'2025-11-06','2026-02-05',2085,0,2031,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','19:42:38','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','2','18:49:07',0,'','reception','2025-11-06 18:49:07','darshan','2025-11-07 19:42:38'),(2635,0,0,'O','N','2526',1521,0,'2025-11-06','0000-00-00',1562,0,1521,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','00:00:00','','','N','N',NULL,'O','O','Z56','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-06 18:49:55','','0000-00-00 00:00:00'),(2636,0,0,'O','N','2526',2032,0,'2025-11-06','2026-02-05',2086,0,2032,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:17:15','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','18:52:02',0,'','reception','2025-11-06 18:52:02','darshan','2025-11-06 19:17:15'),(2637,0,0,'O','N','2526',1775,0,'2025-11-06','0000-00-00',1821,0,1775,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','00:00:00','','','N','N',NULL,'O','O','Z57','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-06 18:54:13','','0000-00-00 00:00:00'),(2638,0,0,'O','N','2526',2033,0,'2025-11-06','2026-02-05',2087,0,2033,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:55:00','0000-00-00','','','','N','18:55:00','00:00:00','','','N','N',NULL,'O','N','Z58','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-11-06 18:55:53','','0000-00-00 00:00:00'),(2639,0,0,'O','N','2526',2034,0,'2025-11-06','2026-02-05',2088,0,2034,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:59:00','0000-00-00','','','','N','18:59:00','19:54:35','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','2','18:59:49',0,'','reception','2025-11-06 18:59:49','darshan','2025-11-06 19:54:35'),(2640,0,0,'I','N','2526',0,137,'2025-09-28','2026-02-05',2089,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:57:00','2025-10-02','','1','mo','N','09:57:00','16:10:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-06 19:15:31','mo','2025-11-07 19:16:19'),(2641,0,0,'O','N','2526',2035,0,'2025-11-06','2026-02-05',2090,0,2035,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:34:00','0000-00-00','','','','N','19:34:00','19:41:44','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','5','19:34:49',0,'','janvi','2025-11-06 19:34:49','drjayant','2025-11-06 19:41:44'),(2642,0,0,'O','N','2526',2036,0,'2025-11-07','2026-02-06',2091,0,2036,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:53:00','0000-00-00','','','','N','08:53:00','11:07:28','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','5','08:53:51',0,'','reception','2025-11-07 08:53:51','drjayant','2025-11-07 11:07:28'),(2643,0,0,'O','N','2526',2037,0,'2025-11-07','2026-02-06',2092,0,2037,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:02:00','0000-00-00','','','','N','09:02:00','18:36:14','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','3','09:02:05',0,'','reception','2025-11-07 09:02:05','drpratapsinh','2025-11-07 18:36:14'),(2644,0,0,'O','N','2526',2038,0,'2025-11-07','2026-02-06',2093,0,2038,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:31:00','0000-00-00','','','','N','09:31:00','10:50:48','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','2','09:31:52',0,'','reception','2025-11-07 09:31:52','darshan','2025-11-07 10:50:48'),(2645,0,0,'O','N','2526',2039,0,'2025-11-07','2026-02-06',2094,0,2039,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:43:00','0000-00-00','','','','N','09:43:00','18:37:02','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','3','09:43:37',0,'','drashti','2025-11-07 09:43:37','drpratapsinh','2025-11-07 18:37:02'),(2646,0,0,'O','N','2526',2040,0,'2025-11-07','2026-02-06',2095,0,2040,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:44:00','0000-00-00','','','','N','09:44:00','13:16:11','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','09:44:31',0,'','reception','2025-11-07 09:44:31','darshan','2025-11-07 13:16:11'),(2647,0,0,'O','N','2526',2041,0,'2025-11-07','2026-02-06',2096,0,2041,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:47:00','0000-00-00','','','','N','09:47:00','11:23:14','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','09:47:42',0,'','reception','2025-11-07 09:47:42','darshan','2025-11-07 11:23:14'),(2648,0,0,'O','N','2526',2042,0,'2025-11-07','2026-02-06',2097,0,2042,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:56:00','0000-00-00','','','','N','09:56:00','14:26:28','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','2','09:56:57',0,'','reception','2025-11-07 09:56:57','darshan','2025-11-07 14:26:28'),(2649,0,0,'O','N','2526',10,0,'2025-11-07','0000-00-00',10,0,10,'N','','N','','','FOLLOWUP  V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:58:00','0000-00-00','','','','N','09:58:00','11:29:45','','','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','2','09:58:44',0,'','reception','2025-11-07 09:58:44','darshan','2025-11-07 11:29:45'),(2650,0,0,'O','N','2526',2043,0,'2025-11-07','2026-02-06',2098,0,2043,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:05:00','0000-00-00','','','','N','10:05:00','11:11:11','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','6','10:05:51',0,'','manshi','2025-11-07 10:05:51','drsagar','2025-11-07 11:11:11'),(2651,0,0,'O','N','2526',2044,0,'2025-11-07','2026-02-06',2099,0,2044,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:06:00','0000-00-00','','','','N','10:06:00','11:14:54','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','5','10:06:41',0,'','drashti','2025-11-07 10:06:41','drjayant','2025-11-07 11:14:54'),(2652,0,0,'O','N','2526',158,0,'2025-11-07','0000-00-00',171,0,158,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:29:00','0000-00-00','','','','N','10:29:00','11:06:24','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','10:29:42',0,'','reception','2025-11-07 10:29:42','darshan','2025-11-07 11:06:24'),(2653,0,0,'O','N','2526',2045,0,'2025-11-07','2026-02-06',2100,0,2045,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','13:49:42','','N','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:33:25',0,'','reception','2025-11-07 10:33:25','darshan','2025-11-07 13:49:42'),(2654,0,0,'O','N','2526',2046,0,'2025-11-07','2026-02-06',2101,0,2046,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:36:00','0000-00-00','','','','N','10:36:00','11:33:55','','','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:36:21',0,'','reception','2025-11-07 10:36:21','darshan','2025-11-07 11:33:55'),(2655,0,0,'O','N','2526',2047,0,'2025-11-07','2026-02-06',2102,0,2047,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','14:08:28','','N','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','2','10:39:13',0,'','drashti','2025-11-07 10:39:13','darshan','2025-11-07 14:08:28'),(2656,0,0,'O','N','2526',2048,0,'2025-11-07','2026-02-06',2103,0,2048,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','14:11:40','','N','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','2','10:54:45',0,'','reception','2025-11-07 10:54:45','darshan','2025-11-07 14:11:40'),(2657,0,0,'O','N','2526',2049,0,'2025-11-07','2026-02-06',2104,0,2049,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','11:21:14','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','5','10:57:21',0,'','janvi','2025-11-07 10:57:21','drjayant','2025-11-07 11:21:14'),(2658,0,0,'O','N','2526',2050,0,'2025-11-07','2026-02-06',2105,0,2050,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','13:51:58','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:59:49',0,'','drashti','2025-11-07 10:59:49','darshan','2025-11-07 13:51:58'),(2659,0,0,'O','N','2526',2051,0,'2025-11-07','2026-02-06',2106,0,2051,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','11:10:01','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','3','11:02:30',0,'','drashti','2025-11-07 11:02:30','drpratapsinh','2025-11-07 11:10:01'),(2660,0,0,'O','N','2526',2052,0,'2025-11-07','2026-02-06',1580,0,2052,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','11:25:29','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','5','11:06:16',0,'','drashti','2025-11-07 11:06:16','drjayant','2025-11-07 11:25:29'),(2661,0,0,'O','N','2526',2053,0,'2025-11-07','2026-02-06',2107,0,2053,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','11:28:27','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','5','11:06:52',0,'','reception','2025-11-07 11:06:52','drjayant','2025-11-07 11:28:26'),(2662,0,0,'O','N','2526',1532,0,'2025-11-07','0000-00-00',1573,0,1532,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','12:34:55','','','N','Y',NULL,'O','O','Z15','','0000-00-00 00:00:00','5','11:12:26',0,'','drashti','2025-11-07 11:12:26','drjayant','2025-11-07 12:34:55'),(2663,0,0,'O','N','2526',2054,0,'2025-11-07','2026-02-06',2108,0,2054,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','11:31:18','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','5','11:16:36',0,'','drashti','2025-11-07 11:16:36','drjayant','2025-11-07 11:31:18'),(2664,0,0,'O','N','2526',1348,0,'2025-11-07','0000-00-00',1388,0,1348,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','11:40:48','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','2','11:19:44',0,'','drashti','2025-11-07 11:19:44','darshan','2025-11-07 11:40:48'),(2665,0,0,'O','N','2526',1343,0,'2025-11-07','0000-00-00',1383,0,1343,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','11:38:39','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','3','11:19:54',0,'','janvi','2025-11-07 11:19:54','drpratapsinh','2025-11-07 11:38:39'),(2666,0,0,'O','N','2526',2055,0,'2025-11-07','2026-02-06',2109,0,2055,'N','','N','','','REPORTS','','N','D06','','N',148,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','13:58:39','','N','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','11:26:22',0,'','reception','2025-11-07 11:26:22','darshan','2025-11-07 13:58:39'),(2667,0,0,'O','N','2526',2056,0,'2025-11-07','2026-02-06',2110,0,2056,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','12:40:48','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','2','11:26:41',0,'','janvi','2025-11-07 11:26:41','darshan','2025-11-07 12:40:48'),(2668,0,0,'O','N','2526',2057,0,'2025-11-07','2026-02-06',2111,0,2057,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','12:02:07','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','11:26:55',0,'','drashti','2025-11-07 11:26:55','darshan','2025-11-07 12:02:07'),(2669,0,0,'O','N','2526',2058,0,'2025-11-07','2026-02-06',2112,0,2058,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','12:30:26','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:31:02',0,'','reception','2025-11-07 11:31:02','darshan','2025-11-07 12:30:26'),(2670,0,0,'O','N','2526',2059,0,'2025-11-07','2026-02-06',2113,0,2059,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','11:35:25','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','3','11:31:52',0,'','drashti','2025-11-07 11:31:52','drpratapsinh','2025-11-07 11:35:25'),(2671,0,0,'O','N','2526',1928,0,'2025-11-07','0000-00-00',1976,0,1928,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','12:00:37','','','N','Y',NULL,'O','O','Z21','','0000-00-00 00:00:00','6','11:32:51',0,'','manshi','2025-11-07 11:32:51','drsagar','2025-11-07 12:00:37'),(2672,0,0,'O','N','2526',2060,0,'2025-11-07','2026-02-06',2114,0,2060,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','13:08:07','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','2','11:36:35',0,'','reception','2025-11-07 11:36:35','darshan','2025-11-07 13:08:07'),(2673,0,0,'O','N','2526',2061,0,'2025-11-07','2026-02-06',2115,0,2061,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','14:05:03','','N','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:39:10',0,'','reception','2025-11-07 11:39:10','darshan','2025-11-07 14:05:03'),(2674,0,0,'O','N','2526',2062,0,'2025-11-07','2026-02-06',2116,0,2062,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','13:36:07','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','2','11:46:11',0,'','reception','2025-11-07 11:46:11','darshan','2025-11-07 13:36:07'),(2675,0,0,'O','N','2526',2063,0,'2025-11-07','2026-02-06',2117,0,2063,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','12:00:32','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','5','11:54:52',0,'','drashti','2025-11-07 11:54:52','drjayant','2025-11-07 12:00:32'),(2676,0,0,'O','N','2526',2064,0,'2025-11-07','2026-02-06',2118,0,2064,'N','','N','','','REPORT','','N','D06','','N',148,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','14:08:01','','N','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','2','11:55:02',0,'','reception','2025-11-07 11:55:02','darshan','2025-11-07 14:08:01'),(2677,0,0,'O','N','2526',1774,0,'2025-11-07','0000-00-00',1820,0,1774,'N','','N','','','REPORT','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:59:00','0000-00-00','','','','N','11:59:00','18:37:20','','','N','Y',NULL,'O','O','Z26','','0000-00-00 00:00:00','3','11:59:14',0,'','janvi','2025-11-07 11:59:14','drpratapsinh','2025-11-07 18:37:20'),(2678,0,0,'O','N','2526',340,0,'2025-11-07','0000-00-00',356,0,340,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','12:34:10','','','N','Y',NULL,'O','O','I02','','0000-00-00 00:00:00','2','12:00:47',0,'','reception','2025-11-07 12:00:47','darshan','2025-11-07 12:34:10'),(2679,0,0,'O','N','2526',2065,0,'2025-11-07','2026-02-06',2119,0,2065,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:01:00','0000-00-00','','','','N','12:01:00','12:12:34','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','6','12:01:43',0,'','manshi','2025-11-07 12:01:43','drsagar','2025-11-07 12:12:34'),(2680,0,0,'O','N','2526',2066,0,'2025-11-07','2026-02-06',2120,0,2066,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','13:15:38','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:02:27',0,'','reception','2025-11-07 12:02:27','darshan','2025-11-07 13:15:38'),(2681,0,0,'O','N','2526',1669,0,'2025-11-07','0000-00-00',1714,0,1669,'N','','N','','','DRESSING','','N','D02','','N',4,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:05:00','0000-00-00','','','','N','12:05:00','18:37:33','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','3','12:05:16',0,'','janvi','2025-11-07 12:05:16','drpratapsinh','2025-11-07 18:37:33'),(2682,0,0,'O','N','2526',2067,0,'2025-11-07','2026-02-06',2121,0,2067,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:05:00','0000-00-00','','','','N','12:05:00','13:05:14','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','12:30:26',0,'','reception','2025-11-07 12:05:37','darshan','2025-11-07 13:05:14'),(2683,0,0,'O','N','2526',2068,0,'2025-11-07','2026-02-06',2122,0,2068,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:07:00','0000-00-00','','','','N','12:07:00','12:20:27','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','5','12:07:15',0,'','drashti','2025-11-07 12:07:15','drjayant','2025-11-07 12:20:27'),(2684,0,0,'O','N','2526',2069,0,'2025-11-07','2026-02-06',2123,0,2069,'N','','N','','','NE','','N','D06','','N',149,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','14:36:33','','N','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','2','12:30:26',0,'','reception','2025-11-07 12:09:31','darshan','2025-11-07 14:36:33'),(2685,0,0,'O','N','2526',2070,0,'2025-11-07','2026-02-06',2124,0,2070,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:10:00','0000-00-00','','','','N','12:10:00','14:42:06','','N','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','2','12:30:26',0,'','drashti','2025-11-07 12:10:02','darshan','2025-11-07 14:42:06'),(2686,0,0,'O','N','2526',994,0,'2025-11-07','0000-00-00',1026,0,994,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:10:00','0000-00-00','','','','N','12:10:00','13:25:44','','','N','Y',NULL,'O','O','J03','','0000-00-00 00:00:00','2','12:30:26',0,'','reception','2025-11-07 12:10:57','darshan','2025-11-07 13:25:44'),(2687,0,0,'O','N','2526',2071,0,'2025-11-07','2026-02-06',2125,0,2071,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:40:00','0000-00-00','','','','N','12:40:00','12:45:22','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','5','12:40:57',0,'','janvi','2025-11-07 12:40:57','drjayant','2025-11-07 12:45:22'),(2688,0,0,'O','N','2526',2072,0,'2025-11-07','2026-02-06',2126,0,2072,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','0000-00-00','','','','N','13:00:00','13:11:03','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','5','13:00:35',0,'','janvi','2025-11-07 13:00:35','drjayant','2025-11-07 13:11:03'),(2689,0,0,'O','N','2526',2073,0,'2025-11-07','2026-02-06',2127,0,2073,'N','','N','','','','','N','D02','','N',8,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:24:00','0000-00-00','','','','N','13:24:00','18:38:24','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','3','13:24:26',0,'','drashti','2025-11-07 13:24:26','drpratapsinh','2025-11-07 18:38:23'),(2690,0,0,'O','N','2526',2074,0,'2025-11-07','2026-02-06',2128,0,2074,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:33:00','0000-00-00','','','','N','13:33:00','18:49:44','','','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','13:33:40',0,'','reception','2025-11-07 13:33:40','darshan','2025-11-07 18:49:44'),(2691,0,0,'I','N','2526',2073,138,'2025-11-07','2026-02-06',2127,0,2073,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:33:00','2025-11-11','','1','mo','N','13:33:00','11:55:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-07 13:35:40','mo','2025-11-11 12:18:23'),(2692,0,0,'O','N','2526',2075,0,'2025-11-07','2026-02-06',2129,0,2075,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:50:00','0000-00-00','','','','N','13:50:00','17:19:40','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','2','13:50:06',0,'','reception','2025-11-07 13:50:06','darshan','2025-11-07 17:19:40'),(2693,0,0,'O','N','2526',2076,0,'2025-11-07','2026-02-06',2130,0,2076,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:52:00','0000-00-00','','','','N','14:52:00','18:27:49','','N','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','2','14:52:41',0,'','priyanshi','2025-11-07 14:52:41','darshan','2025-11-07 18:27:49'),(2694,0,0,'O','N','2526',2077,0,'2025-11-07','2026-02-06',2131,0,2077,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:05:00','0000-00-00','','','','N','16:05:00','17:11:58','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:05:31',0,'','reception','2025-11-07 16:05:31','darshan','2025-11-07 17:11:58'),(2695,0,0,'O','N','2526',2078,0,'2025-11-07','2026-02-06',2132,0,2078,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:34:00','0000-00-00','','','','N','16:34:00','17:44:00','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','16:34:12',0,'','reception','2025-11-07 16:34:12','darshan','2025-11-07 17:44:00'),(2696,0,0,'O','N','2526',963,0,'2025-11-07','0000-00-00',996,0,963,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:39:00','0000-00-00','','','','N','16:39:00','17:05:31','','','N','Y',NULL,'O','O','Z38','','0000-00-00 00:00:00','2','16:39:44',0,'','priyanshi','2025-11-07 16:39:44','darshan','2025-11-07 17:05:31'),(2697,0,0,'O','N','2526',2079,0,'2025-11-07','2026-02-06',2133,0,2079,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:40:00','0000-00-00','','','','N','16:40:00','17:34:57','','Y','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','16:40:35',0,'','priyanshi','2025-11-07 16:40:35','darshan','2025-11-20 13:44:44'),(2698,0,0,'O','N','2526',2080,0,'2025-11-07','2026-02-06',2134,0,2080,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:49:00','0000-00-00','','','','N','16:49:00','17:05:48','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','2','16:49:22',0,'','reception','2025-11-07 16:49:21','darshan','2025-11-07 17:05:48'),(2699,0,0,'O','N','2526',2081,0,'2025-11-07','2026-02-06',2135,0,2081,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:54:00','0000-00-00','','','','N','16:54:00','17:06:59','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','2','16:54:09',0,'','reception','2025-11-07 16:54:09','darshan','2025-11-07 17:06:59'),(2700,0,0,'O','N','2526',2082,0,'2025-11-07','2026-02-06',2136,0,2082,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:55:00','0000-00-00','','','','N','16:55:00','17:08:40','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','2','16:55:30',0,'','reception','2025-11-07 16:55:30','darshan','2025-11-07 17:08:40'),(2701,0,0,'O','N','2526',2083,0,'2025-11-07','2026-02-06',2137,0,2083,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:56:00','0000-00-00','','','','N','16:56:00','17:15:36','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','16:56:33',0,'','reception','2025-11-07 16:56:33','darshan','2025-11-07 17:15:36'),(2702,0,0,'O','N','2526',2084,0,'2025-11-07','2026-02-06',2138,0,2084,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:01:00','0000-00-00','','','','N','17:01:00','17:09:19','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','2','17:01:31',0,'','drashti','2025-11-07 17:01:31','darshan','2025-11-07 17:09:19'),(2703,0,0,'O','N','2526',2085,0,'2025-11-07','2026-02-06',2139,0,2085,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:04:00','0000-00-00','','','','N','17:04:00','17:48:11','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','2','17:04:54',0,'','drashti','2025-11-07 17:04:54','darshan','2025-11-07 17:48:11'),(2704,0,0,'O','N','2526',2086,0,'2025-11-07','2026-02-06',2140,0,2086,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:07:00','0000-00-00','','','','N','17:07:00','18:08:59','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','2','17:07:45',0,'','reception','2025-11-07 17:07:45','darshan','2025-11-07 18:08:59'),(2705,0,0,'O','N','2526',207,0,'2025-11-07','0000-00-00',220,0,207,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:10:00','0000-00-00','','','','N','17:10:00','17:37:07','','','N','Y',NULL,'O','O','L05','','0000-00-00 00:00:00','2','17:10:08',0,'','reception','2025-11-07 17:10:08','darshan','2025-11-07 17:37:07'),(2706,0,0,'O','N','2526',2005,0,'2025-11-07','0000-00-00',2056,0,2005,'N','','N','','','','','N','D02','','N',146,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:11:00','0000-00-00','','','','N','17:11:00','19:03:50','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','3','17:11:24',0,'','reception','2025-11-07 17:11:24','drpratapsinh','2025-11-07 19:03:50'),(2707,0,0,'O','N','2526',2087,0,'2025-11-07','2026-02-06',2141,0,2087,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:14:00','0000-00-00','','','','N','17:14:00','18:12:46','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','2','17:14:07',0,'','drashti','2025-11-07 17:14:07','darshan','2025-11-07 18:12:46'),(2708,0,0,'O','N','2526',2088,0,'2025-11-07','2026-02-06',2142,0,2088,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','19:28:08','','N','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','17:27:39',0,'','reception','2025-11-07 17:27:39','darshan','2025-11-07 19:28:08'),(2709,0,0,'O','N','2526',1548,0,'2025-11-07','0000-00-00',1591,0,1548,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:29:00','0000-00-00','','','','N','17:29:00','18:06:22','','','N','Y',NULL,'O','O','L06','','0000-00-00 00:00:00','2','17:29:12',0,'','reception','2025-11-07 17:29:12','darshan','2025-11-07 18:06:22'),(2710,0,0,'O','N','2526',2089,0,'2025-11-07','2026-02-06',2143,0,2089,'N','','N','','','NV','','N','D06','','N',60,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:29:00','0000-00-00','','','','N','17:29:00','18:08:47','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:29:42',0,'','drashti','2025-11-07 17:29:42','darshan','2025-11-11 18:08:47'),(2711,0,0,'O','N','2526',2090,0,'2025-11-07','2026-02-06',2144,0,2090,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','18:00:32','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','5','17:53:17',0,'','drashti','2025-11-07 17:32:15','drjayant','2025-11-07 18:00:32'),(2712,0,0,'O','N','2526',2091,0,'2025-11-07','2026-02-06',2145,0,2091,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:34:00','0000-00-00','','','','N','17:34:00','18:32:41','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','2','17:34:56',0,'','reception','2025-11-07 17:34:56','darshan','2025-11-07 18:32:41'),(2713,0,0,'O','N','2526',2092,0,'2025-11-07','2026-02-06',2146,0,2092,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:37:00','0000-00-00','','','','N','17:37:00','18:40:10','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','3','17:37:40',0,'','janvi','2025-11-07 17:37:40','drpratapsinh','2025-11-07 18:40:10'),(2714,0,0,'O','N','2526',2093,0,'2025-11-07','2026-02-06',2147,0,2093,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:38:00','0000-00-00','','','','N','17:38:00','18:45:13','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','2','17:38:46',0,'','drashti','2025-11-07 17:38:46','darshan','2025-11-07 18:45:13'),(2715,0,0,'O','N','2526',1387,0,'2025-11-07','0000-00-00',1428,0,1387,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:39:00','0000-00-00','','','','N','17:39:00','18:55:15','','','N','Y',NULL,'O','O','Z52','','0000-00-00 00:00:00','2','17:39:17',0,'','reception','2025-11-07 17:39:17','darshan','2025-11-07 18:55:15'),(2716,0,0,'O','N','2526',2094,0,'2025-11-07','2026-02-06',2148,0,2094,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','19:00:25','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','2','17:40:22',0,'','drashti','2025-11-07 17:40:22','darshan','2025-11-07 19:00:25'),(2717,0,0,'O','N','2526',1477,0,'2025-11-07','0000-00-00',1518,0,1477,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:43:00','0000-00-00','','','','N','17:43:00','18:39:57','','','N','Y',NULL,'O','O','L08','','0000-00-00 00:00:00','2','17:43:04',0,'','drashti','2025-11-07 17:43:04','darshan','2025-11-07 18:39:57'),(2718,0,0,'O','N','2526',2074,0,'2025-11-07','0000-00-00',2128,0,2074,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:45:00','0000-00-00','','','','N','17:45:00','19:01:05','','N','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','2','17:45:42',0,'','reception','2025-11-07 17:45:42','darshan','2025-11-07 19:01:05'),(2719,0,0,'O','N','2526',2095,0,'2025-11-07','2026-02-06',1245,0,2095,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:47:00','0000-00-00','','','','N','17:47:00','18:42:51','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','3','17:47:43',0,'','janvi','2025-11-07 17:47:43','drpratapsinh','2025-11-07 18:42:51'),(2720,0,0,'O','N','2526',1719,0,'2025-11-07','0000-00-00',1763,0,1719,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','19:03:11','','','N','Y',NULL,'O','O','Z55','','0000-00-00 00:00:00','3','17:52:17',0,'','janvi','2025-11-07 17:50:57','drpratapsinh','2025-11-07 19:03:11'),(2721,0,0,'O','N','2526',2096,0,'2025-11-07','2026-02-06',2149,0,2096,'N','','N','','','NV','','N','D06','','N',99,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','19:23:57','','N','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','17:57:17',0,'','drashti','2025-11-07 17:57:17','darshan','2025-11-07 19:23:57'),(2722,0,0,'O','N','2526',2097,0,'2025-11-07','2026-02-06',2150,0,2097,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','19:23:01','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','2','18:02:24',0,'','reception','2025-11-07 18:02:24','darshan','2025-11-07 19:23:01'),(2723,0,0,'O','N','2526',1132,0,'2025-11-07','0000-00-00',1172,0,1132,'N','','N','','','DRESSING','','N','D02','','N',82,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','18:57:27','','','N','Y',NULL,'O','O','Z57','','0000-00-00 00:00:00','3','18:07:34',0,'','janvi','2025-11-07 18:07:34','drpratapsinh','2025-11-07 18:57:27'),(2724,0,0,'O','N','2526',1102,0,'2025-11-07','0000-00-00',1140,0,1102,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:22:26','','','N','Y',NULL,'O','O','Z58','','0000-00-00 00:00:00','6','18:09:23',0,'','manshi','2025-11-07 18:09:23','drsagar','2025-11-07 18:22:25'),(2725,0,0,'O','N','2526',2098,0,'2025-11-07','2026-02-06',2151,0,2098,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','19:00:19','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','3','18:10:24',0,'','janvi','2025-11-07 18:10:24','drpratapsinh','2025-11-07 19:00:19'),(2726,0,0,'O','N','2526',854,0,'2025-11-07','0000-00-00',886,0,854,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','18:36:42','','','N','Y',NULL,'O','O','L10','','0000-00-00 00:00:00','2','18:11:51',0,'','reception','2025-11-07 18:11:51','darshan','2025-11-07 18:36:42'),(2727,0,0,'O','N','2526',2099,0,'2025-11-07','2026-02-06',2152,0,2099,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','19:06:29','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','3','18:15:58',0,'','janvi','2025-11-07 18:15:58','drpratapsinh','2025-11-07 19:06:29'),(2728,0,0,'O','N','2526',943,0,'2025-11-07','0000-00-00',974,0,943,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','19:31:51','','','N','Y',NULL,'O','O','Z61','','0000-00-00 00:00:00','2','18:19:55',0,'','reception','2025-11-07 18:19:55','darshan','2025-11-07 19:31:51'),(2729,0,0,'O','N','2526',2100,0,'2025-11-07','2026-02-06',2153,0,2100,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:20:00','0000-00-00','','','','N','18:20:00','00:00:00','','','N','N',NULL,'O','N','Z62','','0000-00-00 00:00:00','7','18:20:17',0,'','manshi','2025-11-07 18:20:17','','0000-00-00 00:00:00'),(2730,0,0,'O','N','2526',2101,0,'2025-11-07','2026-02-06',1788,0,2101,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','19:08:20','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','3','18:22:04',0,'','janvi','2025-11-07 18:22:04','drpratapsinh','2025-11-07 19:08:20'),(2731,0,0,'O','N','2526',2102,0,'2025-11-07','2026-02-06',2154,0,2102,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','19:03:35','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','3','18:24:28',0,'','reception','2025-11-07 18:24:28','drpratapsinh','2025-11-07 19:03:35'),(2732,0,0,'O','N','2526',1288,0,'2025-11-07','0000-00-00',1327,0,1288,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','18:58:44','','','N','Y',NULL,'O','O','Z65','','0000-00-00 00:00:00','3','18:32:51',0,'','drashti','2025-11-07 18:32:51','drpratapsinh','2025-11-07 18:58:44'),(2733,0,0,'O','N','2526',1306,0,'2025-11-07','0000-00-00',1345,0,1306,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','19:09:30','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','2','18:44:22',0,'','reception','2025-11-07 18:44:22','darshan','2025-11-07 19:09:30'),(2734,0,0,'O','N','2526',827,0,'2025-11-07','0000-00-00',858,0,827,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','19:13:44','','','N','Y',NULL,'O','O','L12','','0000-00-00 00:00:00','2','18:48:19',0,'','reception','2025-11-07 18:48:19','darshan','2025-11-07 19:13:44'),(2735,0,0,'O','N','2526',1744,0,'2025-11-07','0000-00-00',1789,0,1744,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:03:00','0000-00-00','','','','N','19:03:00','19:19:56','','','N','Y',NULL,'O','O','Z66','','0000-00-00 00:00:00','6','19:03:46',0,'','manshi','2025-11-07 19:03:46','drsagar','2025-11-07 19:19:56'),(2736,0,0,'O','N','2526',2103,0,'2025-11-07','2026-02-06',2155,0,2103,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:06:00','0000-00-00','','','','N','19:06:00','00:00:00','','','N','N',NULL,'O','N','Z67','','0000-00-00 00:00:00','7','19:06:23',0,'','manshi','2025-11-07 19:06:23','','0000-00-00 00:00:00'),(2737,0,0,'O','N','2526',567,0,'2025-11-07','0000-00-00',594,0,567,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:08:00','0000-00-00','','','','N','19:08:00','19:27:54','','','N','Y',NULL,'O','O','Z68','','0000-00-00 00:00:00','6','19:08:16',0,'','manshi','2025-11-07 19:08:16','drsagar','2025-11-07 19:27:54'),(2738,0,0,'O','N','2526',270,0,'2025-11-07','0000-00-00',286,0,270,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:09:00','0000-00-00','','','','N','19:09:00','19:18:46','','','N','Y',NULL,'O','O','Z69','','0000-00-00 00:00:00','3','19:10:05',0,'','janvi','2025-11-07 19:10:05','drpratapsinh','2025-11-07 19:18:46'),(2739,0,0,'O','N','2526',923,0,'2025-11-07','0000-00-00',954,0,923,'N','','N','','','','','N','D03','','N',4,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:15:00','0000-00-00','','','','N','19:15:00','19:28:07','','','N','Y',NULL,'O','O','Z70','','0000-00-00 00:00:00','6','19:15:20',0,'','manshi','2025-11-07 19:15:20','drsagar','2025-11-07 19:28:07'),(2740,0,0,'O','N','2526',1976,0,'2025-11-07','0000-00-00',2024,0,1976,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:19:00','0000-00-00','','','','N','19:19:00','19:24:25','','','N','Y',NULL,'O','O','Z71','','0000-00-00 00:00:00','3','19:19:50',0,'','janvi','2025-11-07 19:19:50','drpratapsinh','2025-11-07 19:24:25'),(2741,0,0,'O','N','2526',1071,0,'2025-11-07','0000-00-00',1111,0,1071,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:30:00','0000-00-00','','','','N','19:30:00','00:00:00','','','N','N',NULL,'O','O','Z72','','0000-00-00 00:00:00','4','19:30:03',0,'','drashti','2025-11-07 19:30:03','','0000-00-00 00:00:00'),(2742,0,0,'O','N','2526',2104,0,'2025-11-08','2026-02-07',2156,0,2104,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:04:00','0000-00-00','','','','N','09:04:00','10:52:11','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','5','09:04:27',0,'','reception','2025-11-08 09:04:27','drjayant','2025-11-08 10:52:11'),(2743,0,0,'O','N','2526',2105,0,'2025-11-08','2026-02-07',2157,0,2105,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:14:00','0000-00-00','','','','N','09:14:00','11:51:11','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','3','09:14:55',0,'','reception','2025-11-08 09:14:55','drpratapsinh','2025-11-08 11:51:11'),(2744,0,0,'O','N','2526',2106,0,'2025-11-08','2026-02-07',2158,0,2106,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:18:00','0000-00-00','','','','N','09:18:00','10:52:38','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','5','09:18:04',0,'','reception','2025-11-08 09:18:04','drjayant','2025-11-08 10:52:38'),(2745,0,0,'O','N','2526',2107,0,'2025-11-08','2026-02-07',2159,0,2107,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:25:00','0000-00-00','','','','N','09:25:00','11:19:37','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','09:25:09',0,'','reception','2025-11-08 09:25:09','darshan','2025-11-08 11:19:37'),(2746,0,0,'O','N','2526',2108,0,'2025-11-08','2026-02-07',2160,0,2108,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:50:00','0000-00-00','','','','N','09:50:00','10:44:43','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','09:50:47',0,'','reception','2025-11-08 09:50:47','darshan','2025-11-08 10:44:43'),(2747,0,0,'I','N','2526',1976,139,'2025-11-08','2026-02-07',2024,0,1976,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:45:00','2025-11-09','','1','mo','N','09:45:00','11:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-08 09:57:37','mo','2025-11-09 12:09:47'),(2748,0,0,'O','N','2526',2109,0,'2025-11-08','2026-02-07',2161,0,2109,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:01:00','0000-00-00','','','','N','10:01:00','10:48:34','','','N','Y',NULL,'O','N','E02','','0000-00-00 00:00:00','2','10:01:30',0,'','reception','2025-11-08 10:01:30','darshan','2025-11-08 10:48:34'),(2749,0,0,'O','N','2526',2110,0,'2025-11-08','2026-02-07',2162,0,2110,'N','','N','','','NV','','N','D06','','N',151,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:18:00','0000-00-00','','','','N','10:18:00','14:00:22','','N','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','2','10:18:09',0,'','reception','2025-11-08 10:18:09','darshan','2025-11-08 14:00:21'),(2750,0,0,'O','N','2526',2111,0,'2025-11-08','2026-02-07',2163,0,2111,'N','','N','','','NV','','N','D06','','N',152,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:23:00','0000-00-00','','','','N','10:23:00','13:55:43','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:23:16',0,'','reception','2025-11-08 10:23:16','darshan','2025-11-08 13:55:43'),(2751,0,0,'O','N','2526',2112,0,'2025-11-08','2026-02-07',2164,0,2112,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:24:00','0000-00-00','','','','N','10:24:00','11:47:45','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','2','10:24:11',0,'','drashti','2025-11-08 10:24:11','darshan','2025-11-08 11:47:45'),(2752,0,0,'O','N','2526',2113,0,'2025-11-08','2026-02-07',2165,0,2113,'N','','N','','','NC','','N','D02','','N',44,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:26:00','0000-00-00','','','','N','10:26:00','10:36:20','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','3','10:26:06',0,'','reception','2025-11-08 10:26:06','drpratapsinh','2025-11-08 10:36:20'),(2753,0,0,'O','N','2526',2114,0,'2025-11-08','2026-02-07',2166,0,2114,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:36:00','0000-00-00','','','','N','10:36:00','11:57:44','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','2','10:36:58',0,'','reception','2025-11-08 10:36:57','darshan','2025-11-08 11:57:44'),(2754,0,0,'O','N','2526',2115,0,'2025-11-08','2026-02-07',2167,0,2115,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:41:00','0000-00-00','','','','N','10:41:00','10:46:26','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','3','10:41:24',0,'','drashti','2025-11-08 10:41:24','drpratapsinh','2025-11-08 10:46:26'),(2755,0,0,'O','N','2526',2116,0,'2025-11-08','2026-02-07',2168,0,2116,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','11:05:39','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','5','10:43:06',0,'','reception','2025-11-08 10:43:06','drjayant','2025-11-08 11:05:39'),(2756,0,0,'O','N','2526',1019,0,'2025-11-08','0000-00-00',1053,0,1019,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','10:51:50','','','N','Y',NULL,'O','O','Z10','','0000-00-00 00:00:00','3','10:43:25',0,'','drashti','2025-11-08 10:43:25','drpratapsinh','2025-11-08 10:51:50'),(2757,0,0,'O','N','2526',1472,0,'2025-11-08','0000-00-00',1513,0,1472,'N','','N','','','FOLLOWUP V','','N','D06','','N',103,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','11:23:40','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','2','10:43:33',0,'','janvi','2025-11-08 10:43:33','darshan','2025-11-08 11:23:40'),(2758,0,0,'O','N','2526',2117,0,'2025-11-08','2026-02-07',2169,0,2117,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','11:11:34','','','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:45:03',0,'','reception','2025-11-08 10:45:03','darshan','2025-11-08 11:11:34'),(2759,0,0,'O','N','2526',2118,0,'2025-11-08','2026-02-07',1763,0,2118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:49:00','0000-00-00','','','','N','10:49:00','10:53:08','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','3','10:49:29',0,'','janvi','2025-11-08 10:49:28','drpratapsinh','2025-11-08 10:53:08'),(2760,0,0,'O','N','2526',221,0,'2025-11-08','0000-00-00',234,0,221,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:50:00','0000-00-00','','','','N','10:50:00','10:52:08','','','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','3','10:51:08',0,'','janvi','2025-11-08 10:51:08','drpratapsinh','2025-11-08 10:52:08'),(2761,0,0,'O','N','2526',2119,0,'2025-11-08','2026-02-07',2170,0,2119,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','11:16:38','','','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:57:37',0,'','reception','2025-11-08 10:57:36','darshan','2025-11-08 11:16:38'),(2762,0,0,'O','N','2526',2120,0,'2025-11-08','2026-02-07',2171,0,2120,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','12:01:32','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:59:35',0,'','drashti','2025-11-08 10:59:35','darshan','2025-11-08 12:01:32'),(2763,0,0,'O','N','2526',2121,0,'2025-11-08','2026-02-07',2172,0,2121,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','11:41:14','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','11:01:53',0,'','reception','2025-11-08 11:01:53','darshan','2025-11-08 11:41:14'),(2764,0,0,'O','N','2526',1452,0,'2025-11-08','0000-00-00',1493,0,1452,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','11:22:26','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','6','11:06:58',0,'','manshi','2025-11-08 11:06:58','drsagar','2025-11-08 11:22:26'),(2765,0,0,'O','N','2526',2122,0,'2025-11-08','2026-02-07',2173,0,2122,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','14:08:58','','N','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:07:11',0,'','drashti','2025-11-08 11:07:10','darshan','2025-11-08 14:08:58'),(2766,0,0,'O','N','2526',2123,0,'2025-11-08','2026-02-07',2174,0,2123,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','11:52:18','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','6','11:13:29',0,'','manshi','2025-11-08 11:13:28','drsagar','2025-11-08 11:52:18'),(2767,0,0,'O','N','2526',2124,0,'2025-11-08','2026-02-07',2175,0,2124,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','11:46:35','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','6','11:15:46',0,'','manshi','2025-11-08 11:15:46','drsagar','2025-11-08 11:46:35'),(2768,0,0,'O','N','2526',1020,0,'2025-11-08','0000-00-00',1054,0,1020,'N','','N','','','FV','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','11:38:18','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','6','11:21:12',0,'','manshi','2025-11-08 11:21:12','drsagar','2025-11-08 11:38:18'),(2769,0,0,'O','N','2526',303,0,'2025-11-08','0000-00-00',319,0,303,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','11:28:54','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','3','11:21:29',0,'','janvi','2025-11-08 11:21:29','drpratapsinh','2025-11-08 11:28:54'),(2770,0,0,'O','N','2526',2125,0,'2025-11-08','2026-02-07',2176,0,2125,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','12:17:01','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','11:23:31',0,'','reception','2025-11-08 11:23:31','darshan','2025-11-08 12:17:01'),(2771,0,0,'O','N','2526',2126,0,'2025-11-08','2026-02-07',2177,0,2126,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','11:37:04','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','3','11:26:16',0,'','reception','2025-11-08 11:26:16','drpratapsinh','2025-11-08 11:37:04'),(2772,0,0,'O','N','2526',1310,0,'2025-11-08','0000-00-00',1349,0,1310,'N','','N','','','FE','','N','D06','','N',90,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','12:27:55','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','2','11:30:13',0,'','reception','2025-11-08 11:30:13','darshan','2025-11-08 12:27:55'),(2773,0,0,'O','N','2526',2127,0,'2025-11-08','2026-02-07',2178,0,2127,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','14:46:40','','N','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','2','11:32:03',0,'','reception','2025-11-08 11:32:03','darshan','2025-11-08 14:46:40'),(2774,0,0,'O','N','2526',80,0,'2025-11-08','0000-00-00',91,0,80,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','13:08:35','','','N','Y',NULL,'O','O','Z21','','0000-00-00 00:00:00','2','11:34:01',0,'','reception','2025-11-08 11:34:01','darshan','2025-11-08 13:08:35'),(2775,0,0,'O','N','2526',1669,0,'2025-11-08','0000-00-00',1714,0,1669,'N','','N','','','','','N','D02','','N',4,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','11:51:29','','','N','Y',NULL,'O','O','Z22','','0000-00-00 00:00:00','3','11:36:59',0,'','janvi','2025-11-08 11:36:59','drpratapsinh','2025-11-08 11:51:29'),(2776,0,0,'O','N','2526',2128,0,'2025-11-08','2026-02-07',2179,0,2128,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:37:00','0000-00-00','','','','N','11:37:00','13:12:58','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','2','11:37:40',0,'','reception','2025-11-08 11:37:40','darshan','2025-11-08 13:12:58'),(2777,0,0,'O','N','2526',696,0,'2025-11-08','0000-00-00',727,0,696,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','11:52:11','','','N','Y',NULL,'O','O','Z24','','0000-00-00 00:00:00','3','11:42:19',0,'','drashti','2025-11-08 11:42:19','drpratapsinh','2025-11-08 11:52:11'),(2778,0,0,'O','N','2526',2129,0,'2025-11-08','2026-02-07',2180,0,2129,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','14:46:59','','N','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','11:42:27',0,'','reception','2025-11-08 11:42:27','darshan','2025-11-08 14:46:59'),(2779,0,0,'O','N','2526',1837,0,'2025-11-08','0000-00-00',1883,0,1837,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','11:52:26','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','3','11:43:26',0,'','janvi','2025-11-08 11:43:26','drpratapsinh','2025-11-08 11:52:26'),(2780,0,0,'O','N','2526',2130,0,'2025-11-08','2026-02-07',2181,0,2130,'N','','N','','','NV','','N','D06','','N',144,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','15:15:14','','N','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','2','11:46:55',0,'','reception','2025-11-08 11:46:55','darshan','2025-11-08 15:15:14'),(2781,0,0,'O','N','2526',2131,0,'2025-11-08','2026-02-07',2182,0,2131,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:49:00','0000-00-00','','','','N','11:49:00','12:50:23','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:49:39',0,'','reception','2025-11-08 11:49:39','darshan','2025-11-08 12:50:23'),(2782,0,0,'O','N','2526',2132,0,'2025-11-08','2026-02-07',2183,0,2132,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','14:24:33','','N','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','12:06:12',0,'','reception','2025-11-08 12:06:11','darshan','2025-11-08 14:24:33'),(2783,0,0,'O','N','2526',2133,0,'2025-11-08','2026-02-07',2184,0,2133,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:22:00','0000-00-00','','','','N','12:22:00','13:05:08','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','12:23:03',0,'','reception','2025-11-08 12:23:03','darshan','2025-11-08 13:05:08'),(2784,0,0,'O','N','2526',1860,0,'2025-11-08','0000-00-00',1905,0,1860,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:26:00','0000-00-00','','','','N','12:26:00','12:33:19','','','N','Y',NULL,'O','O','Z27','','0000-00-00 00:00:00','5','12:26:52',0,'','drashti','2025-11-08 12:26:52','drjayant','2025-11-08 12:33:19'),(2785,0,0,'O','N','2526',89,0,'2025-11-08','0000-00-00',100,0,89,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','0000-00-00','','','','N','12:30:00','13:45:42','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','2','12:30:05',0,'','reception','2025-11-08 12:30:05','darshan','2025-11-08 13:45:42'),(2786,0,0,'O','N','2526',507,0,'2025-11-08','0000-00-00',532,0,507,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:34:00','0000-00-00','','','','N','12:34:00','13:48:27','','','N','Y',NULL,'O','O','Z29','','0000-00-00 00:00:00','2','12:34:42',0,'','reception','2025-11-08 12:34:42','darshan','2025-11-08 13:48:27'),(2787,0,0,'O','N','2526',1738,0,'2025-11-08','0000-00-00',1782,0,1738,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:38:00','0000-00-00','','','','N','12:38:00','12:45:30','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','5','12:38:15',0,'','drashti','2025-11-08 12:38:15','drjayant','2025-11-08 12:45:30'),(2788,0,0,'O','N','2526',2134,0,'2025-11-08','2026-02-07',2185,0,2134,'N','','N','','','','','N','D02','','N',153,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:43:00','0000-00-00','','','','N','12:43:00','13:04:49','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','3','12:43:14',0,'','janvi','2025-11-08 12:43:14','drpratapsinh','2025-11-08 13:04:49'),(2789,0,0,'O','N','2526',2135,0,'2025-11-08','2026-02-07',2186,0,2135,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:43:00','0000-00-00','','','','N','12:43:00','12:51:53','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','5','12:43:28',0,'','drashti','2025-11-08 12:43:28','drjayant','2025-11-08 12:51:53'),(2790,0,0,'O','N','2526',2136,0,'2025-11-08','2026-02-07',2187,0,2136,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:45:00','0000-00-00','','','','N','12:45:00','15:11:36','','N','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','2','12:45:28',0,'','reception','2025-11-08 12:45:28','darshan','2025-11-08 15:11:36'),(2791,0,0,'O','N','2526',2137,0,'2025-11-08','2026-02-07',2188,0,2137,'N','','N','','','','','N','D02','','N',155,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:59:00','0000-00-00','','','','N','12:59:00','13:15:49','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','3','12:59:56',0,'','janvi','2025-11-08 12:59:56','drpratapsinh','2025-11-08 13:15:49'),(2792,0,0,'O','N','2526',2138,0,'2025-11-08','2026-02-07',2189,0,2138,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:09:00','0000-00-00','','','','N','13:09:00','14:11:47','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','2','13:09:09',0,'','drashti','2025-11-08 13:09:09','darshan','2025-11-08 14:11:47'),(2793,0,0,'I','N','2526',2137,140,'2025-11-08','2026-02-07',2188,0,2137,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:15:00','2025-11-10','','1','mo','N','13:15:00','11:10:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-08 13:28:34','mo','2025-11-10 12:54:16'),(2794,0,0,'O','N','2526',2139,0,'2025-11-08','2026-02-07',2190,0,2139,'N','','N','','','NV','','N','D06','','N',156,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:34:00','0000-00-00','','','','N','13:34:00','19:07:25','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','2','13:34:43',0,'','reception','2025-11-08 13:34:43','darshan','2025-11-10 19:07:25'),(2795,0,0,'O','N','2526',2140,0,'2025-11-08','2026-02-07',2191,0,2140,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:03:00','0000-00-00','','','','N','14:03:00','00:00:00','','','N','N',NULL,'O','N','Z36','','0000-00-00 00:00:00','3','14:03:11',0,'','shweta','2025-11-08 14:03:11','','0000-00-00 00:00:00'),(2796,0,0,'O','N','2526',2141,0,'2025-11-08','2026-02-07',2192,0,2141,'N','','N','','','NV','','N','D06','','N',144,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:40:00','0000-00-00','','','','N','14:40:00','00:00:00','','Y','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','14:40:19',0,'','shweta','2025-11-08 14:40:19','darshan','2025-11-08 15:11:19'),(2797,0,0,'O','N','2526',1133,0,'2025-11-08','0000-00-00',1173,0,1133,'N','','N','','','','','N','D02','','N',11,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:40:00','0000-00-00','','','','N','16:40:00','00:00:00','','','N','N',NULL,'O','O','Z38','','0000-00-00 00:00:00','3','16:40:56',0,'','janvi','2025-11-08 16:40:56','','0000-00-00 00:00:00'),(2798,0,0,'O','N','2526',2142,0,'2025-11-08','2026-02-07',2193,0,2142,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:46:00','0000-00-00','','','','N','16:46:00','17:47:06','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','6','16:46:32',0,'','manshi','2025-11-08 16:46:32','drsagar','2025-11-08 17:47:06'),(2799,0,0,'O','N','2526',1088,0,'2025-11-08','0000-00-00',1127,0,1088,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:43:00','0000-00-00','','','','N','17:43:00','17:47:16','','','N','Y',NULL,'O','O','Z40','','0000-00-00 00:00:00','6','17:43:56',0,'','manshi','2025-11-08 17:43:56','drsagar','2025-11-08 17:47:16'),(2800,0,0,'O','N','2526',2143,0,'2025-11-08','2026-02-07',2194,0,2143,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','18:05:59','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','6','17:48:21',0,'','manshi','2025-11-08 17:48:21','drsagar','2025-11-08 18:05:59'),(2801,0,0,'I','N','2526',0,141,'2025-11-08','2026-02-07',2195,0,0,'N','','N','','','','N','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','2025-11-09','','1','mo','N','18:00:00','11:45:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-08 17:55:37','riya','2025-11-09 12:46:36'),(2802,0,0,'O','N','2526',2144,0,'2025-11-08','2026-02-07',2196,0,2144,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','18:06:09','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','6','18:04:19',0,'','manshi','2025-11-08 18:04:19','drsagar','2025-11-08 18:06:09'),(2803,0,0,'O','N','2526',1276,0,'2025-11-08','0000-00-00',1315,0,1276,'N','','N','','','FOLLOWUP C','','N','D02','','N',4,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','00:00:00','','','N','N',NULL,'O','O','Z43','','0000-00-00 00:00:00','3','18:16:10',0,'','drashti','2025-11-08 18:16:10','','0000-00-00 00:00:00'),(2804,0,0,'O','N','2526',1288,0,'2025-11-08','0000-00-00',1327,0,1288,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','00:00:00','','','N','N',NULL,'O','O','Z44','','0000-00-00 00:00:00','3','18:49:58',0,'','janvi','2025-11-08 18:49:58','','0000-00-00 00:00:00'),(2805,0,0,'O','N','2526',2145,0,'2025-11-08','2026-02-07',2197,0,2145,'N','','N','','','','','N','D02','','N',98,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','00:00:00','','','N','N',NULL,'O','N','Z45','','0000-00-00 00:00:00','3','18:54:15',0,'','priyanshi','2025-11-08 18:54:15','','0000-00-00 00:00:00'),(2806,0,0,'I','N','2526',0,142,'2025-11-08','2026-02-07',2198,0,0,'N','','N','','','','N','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:00:00','2025-11-09','','1','mo','N','19:00:00','20:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-08 19:11:39','riya','2025-11-09 17:42:53'),(2807,0,0,'O','N','2526',2005,0,'2025-11-08','0000-00-00',2056,0,2005,'N','','N','','','','','N','D02','','N',146,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:11:00','0000-00-00','','','','N','19:11:00','00:00:00','','','N','N',NULL,'O','O','Z46','','0000-00-00 00:00:00','3','19:11:42',0,'','janvi','2025-11-08 19:11:42','','0000-00-00 00:00:00'),(2808,0,0,'O','N','2526',572,0,'2025-11-08','0000-00-00',599,0,572,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:29:00','0000-00-00','','','','N','19:29:00','00:00:00','','','N','N',NULL,'O','O','Z47','','0000-00-00 00:00:00','6','19:29:38',0,'','manshi','2025-11-08 19:29:38','','0000-00-00 00:00:00'),(2809,0,0,'O','N','2526',2146,0,'2025-11-08','2026-02-07',2199,0,2146,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:47:00','0000-00-00','','','','N','19:47:00','00:00:00','','','N','N',NULL,'O','N','Z48','','0000-00-00 00:00:00','5','19:48:14',0,'','janvi','2025-11-08 19:48:14','','0000-00-00 00:00:00'),(2810,0,0,'O','N','2526',2147,0,'2025-11-08','2026-02-07',2200,0,2147,'N','','N','','','NC','','N','D02','','N',157,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:55:00','0000-00-00','','','','N','19:55:00','00:00:00','','','N','N',NULL,'O','N','Z49','','0000-00-00 00:00:00','3','19:56:03',0,'','janvi','2025-11-08 19:56:03','','0000-00-00 00:00:00'),(2811,0,0,'I','N','2526',0,143,'2025-11-09','2026-02-08',2201,0,0,'N','','N','','','','N','N','D27','','N',0,'','8',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','01:00:00','2025-11-20','','1','mo','N','01:00:00','10:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-09 08:43:20','mo','2025-11-20 14:18:33'),(2812,0,0,'O','N','2526',761,0,'2025-11-09','0000-00-00',792,0,761,'N','','N','','','ER','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:14:00','0000-00-00','','','','N','10:14:00','00:00:00','','','N','N',NULL,'O','O','Z01','','0000-00-00 00:00:00','4','10:14:25',0,'','reception','2025-11-09 10:14:25','','0000-00-00 00:00:00'),(2813,0,0,'O','N','2526',2148,0,'2025-11-09','2026-02-08',2202,0,2148,'N','','N','','','ER','Y','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','00:00:00','','','N','N',NULL,'O','N','Z02','','0000-00-00 00:00:00','5','11:50:56',0,'','reception','2025-11-09 11:50:56','','0000-00-00 00:00:00'),(2814,0,0,'O','N','2526',1928,0,'2025-11-09','0000-00-00',1976,0,1928,'N','','N','','','DRESSING','Y','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','00:00:00','','','N','N',NULL,'O','O','Z03','','0000-00-00 00:00:00','6','11:52:03',0,'','reception','2025-11-09 11:52:03','','0000-00-00 00:00:00'),(2815,0,0,'O','N','2526',2149,0,'2025-11-10','2026-02-09',2203,0,2149,'N','','N','','','ER','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:11:00','0000-00-00','','','','N','09:11:00','12:19:55','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','2','09:11:28',0,'','reception','2025-11-10 09:11:28','darshan','2025-11-10 12:19:55'),(2816,0,0,'O','N','2526',1288,0,'2025-11-10','0000-00-00',1327,0,1288,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:13:00','0000-00-00','','','','N','09:13:00','10:42:08','','','N','Y',NULL,'O','O','Z02','','0000-00-00 00:00:00','3','09:13:16',0,'','reception','2025-11-10 09:13:16','drpratapsinh','2025-11-10 10:42:08'),(2817,0,0,'O','N','2526',2150,0,'2025-11-10','2026-02-09',2204,0,2150,'N','','N','','','ER','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:15:00','0000-00-00','','','','N','09:15:00','12:44:50','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','7','09:15:39',0,'','reception','2025-11-10 09:15:39','drridham','2025-11-10 12:44:50'),(2818,0,0,'O','N','2526',2105,0,'2025-11-10','0000-00-00',2157,0,2105,'N','','N','','','INJ','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:17:00','0000-00-00','','','','N','09:17:00','10:43:05','','','N','Y',NULL,'O','O','Z04','','0000-00-00 00:00:00','3','09:17:48',0,'','reception','2025-11-10 09:17:48','drpratapsinh','2025-11-10 10:43:05'),(2819,0,0,'O','N','2526',2151,0,'2025-11-10','2026-02-09',2205,0,2151,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:24:00','0000-00-00','','','','N','09:24:00','00:00:00','','','N','N',NULL,'O','N','Z05','','0000-00-00 00:00:00','5','09:24:10',0,'','reception','2025-11-10 09:24:10','','0000-00-00 00:00:00'),(2820,0,0,'O','N','2526',2152,0,'2025-11-10','2026-02-09',2206,0,2152,'N','','N','','','','','N','D27','','N',99,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:27:00','0000-00-00','','','','N','09:27:00','00:00:00','','','N','N',NULL,'O','N','Z06','','0000-00-00 00:00:00','4','09:27:53',0,'','janvi','2025-11-10 09:27:53','janvi','2025-11-10 09:28:32'),(2821,0,0,'O','N','2526',1335,0,'2025-11-10','0000-00-00',1375,0,1335,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:33:00','0000-00-00','','','','N','09:33:00','11:15:00','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','2','09:33:57',0,'','reception','2025-11-10 09:33:57','darshan','2025-11-10 11:15:00'),(2822,0,0,'O','N','2526',2153,0,'2025-11-10','2026-02-09',2207,0,2153,'N','','N','','','ER','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:37:00','0000-00-00','','','','N','09:37:00','10:44:20','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','3','09:37:58',0,'','drashti','2025-11-10 09:37:58','drpratapsinh','2025-11-10 10:44:20'),(2823,0,0,'O','N','2526',2145,0,'2025-11-10','0000-00-00',2197,0,2145,'N','','N','','','PROCEDURE','','N','D02','','N',98,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:38:00','0000-00-00','','','','N','09:38:00','10:43:55','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','3','09:38:56',0,'','janvi','2025-11-10 09:38:56','drpratapsinh','2025-11-10 10:43:55'),(2824,0,0,'O','N','2526',2154,0,'2025-11-10','2026-02-09',2208,0,2154,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:42:00','0000-00-00','','','','N','09:42:00','00:00:00','','','N','N',NULL,'O','N','Z10','','0000-00-00 00:00:00','4','09:42:01',0,'','drashti','2025-11-10 09:42:01','','0000-00-00 00:00:00'),(2825,0,0,'I','N','2526',0,144,'2025-11-10','2026-02-09',2209,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-11-11','','1','mo','N','09:30:00','10:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-10 09:46:33','mo','2025-11-11 11:56:00'),(2826,0,0,'O','N','2526',2155,0,'2025-11-10','2026-02-09',2210,0,2155,'N','','N','','','NE','','N','D06','','N',60,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:47:00','0000-00-00','','','','N','09:47:00','13:02:54','','N','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','2','09:47:17',0,'','reception','2025-11-10 09:47:17','darshan','2025-11-10 13:02:54'),(2827,0,0,'O','N','2526',12,0,'2025-11-10','0000-00-00',12,0,12,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:49:00','0000-00-00','','','','N','09:49:00','11:41:53','','','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','2','09:49:43',0,'','reception','2025-11-10 09:49:43','darshan','2025-11-10 11:41:53'),(2828,0,0,'O','N','2526',404,0,'2025-11-10','0000-00-00',426,0,404,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:51:00','0000-00-00','','','','N','09:51:00','11:45:22','','','N','Y',NULL,'O','O','I01','','0000-00-00 00:00:00','2','09:51:04',0,'','reception','2025-11-10 09:51:04','darshan','2025-11-10 11:45:22'),(2829,0,0,'O','N','2526',2156,0,'2025-11-10','2026-02-09',2211,0,2156,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:51:00','0000-00-00','','','','N','09:51:00','11:49:36','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','2','09:51:48',0,'','drashti','2025-11-10 09:51:48','darshan','2025-11-10 11:49:36'),(2830,0,0,'O','N','2526',2157,0,'2025-11-10','2026-02-09',2212,0,2157,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:04:00','0000-00-00','','','','N','10:04:00','11:06:28','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','10:04:13',0,'','reception','2025-11-10 10:04:12','darshan','2025-11-10 11:06:28'),(2831,0,0,'O','N','2526',2158,0,'2025-11-10','2026-02-09',2213,0,2158,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:12:00','0000-00-00','','','','N','10:12:00','00:00:00','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','7','10:12:05',0,'','manshi','2025-11-10 10:12:05','','0000-00-00 00:00:00'),(2832,0,0,'O','N','2526',1609,0,'2025-11-10','0000-00-00',1654,0,1609,'N','','N','','','FOLLOWUP V','','N','D06','','N',112,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:12:00','0000-00-00','','','','N','10:12:00','11:22:12','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','10:12:18',0,'','reception','2025-11-10 10:12:18','darshan','2025-11-10 11:22:12'),(2833,0,0,'O','N','2526',140,0,'2025-11-10','0000-00-00',151,0,140,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:19:00','0000-00-00','','','','N','10:19:00','10:40:29','','','N','Y',NULL,'O','O','Z15','','0000-00-00 00:00:00','3','10:19:22',0,'','janvi','2025-11-10 10:19:22','drpratapsinh','2025-11-10 10:40:29'),(2834,0,0,'O','N','2526',2159,0,'2025-11-10','2026-02-09',2214,0,2159,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:29:00','0000-00-00','','','','N','10:29:00','14:01:20','','N','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','2','10:29:51',0,'','reception','2025-11-10 10:29:50','darshan','2025-11-10 14:01:20'),(2835,0,0,'O','N','2526',2005,0,'2025-11-10','0000-00-00',2056,0,2005,'N','','N','','','DRESSING','','N','D02','','N',146,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:31:00','0000-00-00','','','','N','10:31:00','10:41:47','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','3','10:31:26',0,'','drashti','2025-11-10 10:31:26','drpratapsinh','2025-11-10 10:41:47'),(2836,0,0,'O','N','2526',2160,0,'2025-11-10','2026-02-09',2215,0,2160,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:32:00','0000-00-00','','','','N','10:32:00','13:42:15','','N','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:32:22',0,'','reception','2025-11-10 10:32:22','darshan','2025-11-10 13:42:15'),(2837,0,0,'O','N','2526',1701,0,'2025-11-10','0000-00-00',1747,0,1701,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:36:00','0000-00-00','','','','N','10:36:00','00:00:00','','','N','N',NULL,'O','O','Z18','','0000-00-00 00:00:00','7','10:36:45',0,'','manshi','2025-11-10 10:36:45','','0000-00-00 00:00:00'),(2838,0,0,'O','N','2526',525,0,'2025-11-10','0000-00-00',551,0,525,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','10:43:32','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','3','10:37:13',0,'','janvi','2025-11-10 10:37:13','drpratapsinh','2025-11-10 10:43:32'),(2839,0,0,'O','N','2526',2161,0,'2025-11-10','2026-02-09',2216,0,2161,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','00:00:00','','','N','N',NULL,'O','N','Z20','','0000-00-00 00:00:00','4','10:39:25',0,'','drashti','2025-11-10 10:39:25','','0000-00-00 00:00:00'),(2840,0,0,'O','N','2526',2162,0,'2025-11-10','2026-02-09',2217,0,2162,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','','N','10:40:00','11:34:12','','','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:40:04',0,'','reception','2025-11-10 10:40:04','darshan','2025-11-10 11:34:12'),(2841,0,0,'O','N','2526',2163,0,'2025-11-10','2026-02-09',2218,0,2163,'N','','N','','','NC','','N','D02','','N',17,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','00:00:00','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','3','10:46:47',0,'','drashti','2025-11-10 10:46:47','','0000-00-00 00:00:00'),(2842,0,0,'O','N','2526',2164,0,'2025-11-10','2026-02-09',2219,0,2164,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:47:00','0000-00-00','','','','N','10:47:00','12:32:21','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','2','10:47:04',0,'','reception','2025-11-10 10:47:04','darshan','2025-11-10 12:32:21'),(2843,0,0,'O','N','2526',1898,0,'2025-11-10','0000-00-00',1946,0,1898,'N','','N','','','DRESSING','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:47:00','0000-00-00','','','','N','10:47:00','00:00:00','','','N','N',NULL,'O','O','Z23','','0000-00-00 00:00:00','5','10:47:07',0,'','janvi','2025-11-10 10:47:07','','0000-00-00 00:00:00'),(2844,0,0,'O','N','2526',2165,0,'2025-11-10','2026-02-09',2220,0,2165,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','00:00:00','','','N','N',NULL,'O','N','Z24','','0000-00-00 00:00:00','4','10:56:04',0,'','drashti','2025-11-10 10:56:04','','0000-00-00 00:00:00'),(2845,0,0,'O','N','2526',2166,0,'2025-11-10','2026-02-09',2221,0,2166,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','12:17:41','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','6','10:58:43',0,'','manshi','2025-11-10 10:58:43','drsagar','2025-11-10 12:17:41'),(2846,0,0,'O','N','2526',1125,0,'2025-11-10','0000-00-00',1095,0,1125,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:00:00','0000-00-00','','','','N','11:00:00','12:09:17','','','N','Y',NULL,'O','O','Z26','','0000-00-00 00:00:00','6','11:00:29',0,'','manshi','2025-11-10 11:00:29','drsagar','2025-11-10 12:09:17'),(2847,0,0,'O','N','2526',2167,0,'2025-11-10','2026-02-09',2222,0,2167,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','12:00:59','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','11:03:48',0,'','drashti','2025-11-10 11:03:48','darshan','2025-11-10 12:00:59'),(2848,0,0,'O','N','2526',33,0,'2025-11-10','0000-00-00',36,0,33,'N','','N','','','','','N','D27','','N',6,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','00:00:00','','','N','N',NULL,'O','O','Z27','','0000-00-00 00:00:00','4','11:11:04',0,'','drashti','2025-11-10 11:11:04','','0000-00-00 00:00:00'),(2849,0,0,'O','N','2526',489,0,'2025-11-10','0000-00-00',514,0,489,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','00:00:00','','','N','N',NULL,'O','O','Z28','','0000-00-00 00:00:00','7','11:12:42',0,'','manshi','2025-11-10 11:12:42','','0000-00-00 00:00:00'),(2850,0,0,'O','N','2526',2168,0,'2025-11-10','2026-02-09',2223,0,2168,'N','','N','','','','','N','D02','','N',90,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','00:00:00','','','N','N',NULL,'O','N','Z29','','0000-00-00 00:00:00','3','11:16:13',0,'','drashti','2025-11-10 11:16:13','','0000-00-00 00:00:00'),(2851,0,0,'O','N','2526',2169,0,'2025-11-10','2026-02-09',2224,0,2169,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','12:17:58','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','6','11:17:20',0,'','manshi','2025-11-10 11:17:20','drsagar','2025-11-10 12:17:58'),(2852,0,0,'O','N','2526',2170,0,'2025-11-10','2026-02-09',2225,0,2170,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','14:12:18','','N','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','2','11:18:09',0,'','reception','2025-11-10 11:18:09','darshan','2025-11-10 14:12:18'),(2853,0,0,'O','N','2526',1974,0,'2025-11-10','0000-00-00',2022,0,1974,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:22:00','0000-00-00','','','','N','11:22:00','00:00:00','','','N','N',NULL,'O','O','Z32','','0000-00-00 00:00:00','3','11:22:58',0,'','drashti','2025-11-10 11:22:58','','0000-00-00 00:00:00'),(2854,0,0,'O','N','2526',2171,0,'2025-11-10','2026-02-09',2226,0,2171,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','13:15:41','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','2','11:27:16',0,'','reception','2025-11-10 11:27:16','darshan','2025-11-10 13:15:41'),(2855,0,0,'O','N','2526',208,0,'2025-11-10','0000-00-00',221,0,208,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:34:00','0000-00-00','','','','N','11:34:00','12:53:30','','','N','Y',NULL,'O','O','J01','','0000-00-00 00:00:00','2','11:34:53',0,'','reception','2025-11-10 11:34:53','darshan','2025-11-10 12:53:30'),(2856,0,0,'O','N','2526',1617,0,'2025-11-10','0000-00-00',1662,0,1617,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','12:05:34','','','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','2','11:35:48',0,'','drashti','2025-11-10 11:35:48','darshan','2025-11-10 12:05:34'),(2857,0,0,'O','N','2526',1938,0,'2025-11-10','0000-00-00',1986,0,1938,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','12:18:10','','','N','Y',NULL,'O','O','Z34','','0000-00-00 00:00:00','6','11:42:07',0,'','manshi','2025-11-10 11:42:07','drsagar','2025-11-10 12:18:10'),(2858,0,0,'O','N','2526',2172,0,'2025-11-10','2026-02-09',2227,0,2172,'N','','N','','','NV','','N','D06','','N',158,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','13:47:31','','N','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','11:43:23',0,'','drashti','2025-11-10 11:43:23','darshan','2025-11-10 13:47:31'),(2859,0,0,'O','N','2526',2173,0,'2025-11-10','2026-02-09',2228,0,2173,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','00:00:00','','','N','N',NULL,'O','N','Z35','','0000-00-00 00:00:00','7','11:43:58',0,'','manshi','2025-11-10 11:43:58','','0000-00-00 00:00:00'),(2860,0,0,'O','N','2526',2174,0,'2025-11-10','2026-02-09',2229,0,2174,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','12:10:41','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','11:46:37',0,'','drashti','2025-11-10 11:46:37','darshan','2025-11-10 12:10:41'),(2861,0,0,'O','N','2526',2175,0,'2025-11-10','2026-02-09',2230,0,2175,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:49:00','0000-00-00','','','','N','11:49:00','00:00:00','','','N','N',NULL,'O','N','Z36','','0000-00-00 00:00:00','7','11:49:18',0,'','manshi','2025-11-10 11:49:18','','0000-00-00 00:00:00'),(2862,0,0,'O','N','2526',2176,0,'2025-11-10','2026-02-09',2231,0,2176,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','14:22:54','','N','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','11:52:41',0,'','reception','2025-11-10 11:52:41','darshan','2025-11-10 14:22:54'),(2863,0,0,'O','N','2526',2177,0,'2025-11-10','2026-02-09',2232,0,2177,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','00:00:00','','','N','N',NULL,'O','N','Z38','','0000-00-00 00:00:00','7','11:54:58',0,'','manshi','2025-11-10 11:54:58','','0000-00-00 00:00:00'),(2864,0,0,'O','N','2526',2178,0,'2025-11-10','2026-02-09',2233,0,2178,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','13:34:59','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','2','11:58:12',0,'','reception','2025-11-10 11:58:12','darshan','2025-11-10 13:34:59'),(2865,0,0,'O','N','2526',1574,0,'2025-11-10','0000-00-00',1618,0,1574,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','12:09:27','','','N','Y',NULL,'O','O','Z40','','0000-00-00 00:00:00','6','12:00:07',0,'','manshi','2025-11-10 12:00:07','drsagar','2025-11-10 12:09:27'),(2866,0,0,'O','N','2526',1870,0,'2025-11-10','0000-00-00',1915,0,1870,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','00:00:00','','','N','N',NULL,'O','O','Z41','','0000-00-00 00:00:00','3','12:00:13',0,'','janvi','2025-11-10 12:00:13','','0000-00-00 00:00:00'),(2867,0,0,'O','N','2526',2179,0,'2025-11-10','2026-02-09',2234,0,2179,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','12:40:57','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','12:02:31',0,'','reception','2025-11-10 12:02:31','darshan','2025-11-10 12:40:57'),(2868,0,0,'O','N','2526',2180,0,'2025-11-10','2026-02-09',2235,0,2180,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:08:00','0000-00-00','','','','N','12:08:00','00:00:00','','','N','N',NULL,'O','N','Z42','','0000-00-00 00:00:00','3','12:08:31',0,'','janvi','2025-11-10 12:08:31','','0000-00-00 00:00:00'),(2869,0,0,'O','N','2526',2181,0,'2025-11-10','2026-02-09',2236,0,2181,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','00:00:00','','','N','N',NULL,'O','N','Z43','','0000-00-00 00:00:00','3','12:09:15',0,'','drashti','2025-11-10 12:09:15','','0000-00-00 00:00:00'),(2870,0,0,'O','N','2526',2182,0,'2025-11-10','2026-02-09',2237,0,2182,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:17:00','0000-00-00','','','','N','12:17:00','14:15:26','','N','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:17:46',0,'','reception','2025-11-10 12:17:45','darshan','2025-11-10 14:15:26'),(2871,0,0,'O','N','2526',2183,0,'2025-11-10','2026-02-09',2238,0,2183,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:33:00','0000-00-00','','','','N','12:33:00','00:00:00','','','N','N',NULL,'O','N','Z44','','0000-00-00 00:00:00','3','12:33:27',0,'','reception','2025-11-10 12:33:27','','0000-00-00 00:00:00'),(2872,0,0,'O','N','2526',1614,0,'2025-11-10','0000-00-00',1659,0,1614,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:39:00','0000-00-00','','','','N','12:39:00','12:46:56','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','6','12:39:54',0,'','manshi','2025-11-10 12:39:54','drsagar','2025-11-10 12:46:56'),(2873,0,0,'O','N','2526',2184,0,'2025-11-10','2026-02-09',2239,0,2184,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:49:00','0000-00-00','','','','N','12:49:00','13:54:23','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','2','12:49:41',0,'','reception','2025-11-10 12:49:40','darshan','2025-11-10 13:54:23'),(2874,0,0,'O','N','2526',1675,0,'2025-11-10','0000-00-00',1720,0,1675,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:50:00','0000-00-00','','','','N','12:50:00','13:10:12','','','N','Y',NULL,'O','O','J03','','0000-00-00 00:00:00','2','12:50:43',0,'','reception','2025-11-10 12:50:43','darshan','2025-11-10 13:10:12'),(2875,0,0,'O','N','2526',2185,0,'2025-11-10','2026-02-09',2240,0,2185,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:57:00','0000-00-00','','','','N','12:57:00','14:14:48','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','12:57:08',0,'','reception','2025-11-10 12:57:08','darshan','2025-11-10 14:14:48'),(2876,0,0,'I','N','2526',0,145,'2025-11-10','2026-02-09',2241,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','2025-11-14','','1','mo','N','13:00:00','19:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-10 13:10:07','mo','2025-11-14 19:26:55'),(2877,0,0,'O','N','2526',2186,0,'2025-11-10','2026-02-09',2242,0,2186,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:15:00','0000-00-00','','','','N','13:15:00','14:22:31','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','2','13:15:08',0,'','reception','2025-11-10 13:15:08','darshan','2025-11-10 14:22:31'),(2878,0,0,'O','N','2526',864,0,'2025-11-10','0000-00-00',896,0,864,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:57:00','0000-00-00','','','','N','13:57:00','14:28:57','','','N','Y',NULL,'O','O','Z49','','0000-00-00 00:00:00','2','13:57:36',0,'','reception','2025-11-10 13:57:36','darshan','2025-11-10 14:28:57'),(2879,0,0,'I','N','2526',0,146,'2025-11-10','2026-02-09',2243,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:30:00','2025-12-01','','4','mo','N','15:30:00','22:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-10 15:31:27','riya','2025-12-01 22:17:26'),(2880,0,0,'O','N','2526',1503,0,'2025-11-10','0000-00-00',1544,0,1503,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:17:00','0000-00-00','','','','N','16:17:00','17:18:10','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','16:17:50',0,'','reception','2025-11-10 16:17:50','darshan','2025-11-10 17:18:10'),(2881,0,0,'O','N','2526',1859,0,'2025-11-10','0000-00-00',1904,0,1859,'N','','N','','','FOLLOWUP  V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:56:00','0000-00-00','','','','N','16:56:00','17:28:29','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','16:56:47',0,'','reception','2025-11-10 16:56:47','darshan','2025-11-10 17:28:29'),(2882,0,0,'O','N','2526',2187,0,'2025-11-10','2026-02-09',2244,0,2187,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:00:00','0000-00-00','','','','N','17:00:00','17:32:26','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:00:11',0,'','reception','2025-11-10 17:00:11','darshan','2025-11-10 17:32:26'),(2883,0,0,'O','N','2526',1612,0,'2025-11-10','0000-00-00',1657,0,1612,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:02:00','0000-00-00','','','','N','17:02:00','17:35:57','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','17:02:19',0,'','reception','2025-11-10 17:02:19','darshan','2025-11-10 17:35:57'),(2884,0,0,'O','N','2526',2188,0,'2025-11-10','2026-02-09',2245,0,2188,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:03:00','0000-00-00','','','','N','17:03:00','19:24:53','','N','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:03:21',0,'','drashti','2025-11-10 17:03:21','darshan','2025-11-10 19:24:53'),(2885,0,0,'O','N','2526',524,0,'2025-11-10','0000-00-00',550,0,524,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:12:00','0000-00-00','','','','N','17:12:00','17:58:32','','Y','N','Y',NULL,'O','O','L06','','0000-00-00 00:00:00','2','17:12:55',0,'','reception','2025-11-10 17:12:55','darshan','2025-11-10 20:01:14'),(2886,0,0,'O','N','2526',1976,0,'2025-11-10','0000-00-00',2024,0,1976,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:14:00','0000-00-00','','','','N','17:14:00','00:00:00','','','N','N',NULL,'O','O','Z50','','0000-00-00 00:00:00','3','17:14:38',0,'','drashti','2025-11-10 17:14:38','','0000-00-00 00:00:00'),(2887,0,0,'O','N','2526',2189,0,'2025-11-10','2026-02-09',2246,0,2189,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:23:00','0000-00-00','','','','N','17:23:00','19:35:19','','N','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:23:01',0,'','drashti','2025-11-10 17:23:01','darshan','2025-11-10 19:35:19'),(2888,0,0,'O','N','2526',2190,0,'2025-11-10','2026-02-09',2247,0,2190,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','00:00:00','','','N','N',NULL,'O','N','Z51','','0000-00-00 00:00:00','3','17:27:44',0,'','reception','2025-11-10 17:27:44','','0000-00-00 00:00:00'),(2889,0,0,'O','N','2526',1694,0,'2025-11-10','0000-00-00',1740,0,1694,'N','','N','','','','','N','D14','','N',117,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','00:00:00','','','N','N',NULL,'O','O','Z52','','0000-00-00 00:00:00','7','17:32:06',0,'','manshi','2025-11-10 17:32:06','','0000-00-00 00:00:00'),(2890,0,0,'O','N','2526',2191,0,'2025-11-10','2026-02-09',2248,0,2191,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:33:00','0000-00-00','','','','N','17:33:00','00:00:00','','','N','N',NULL,'O','N','Z53','','0000-00-00 00:00:00','3','17:33:06',0,'','reception','2025-11-10 17:33:06','','0000-00-00 00:00:00'),(2891,0,0,'O','N','2526',2118,0,'2025-11-10','0000-00-00',1763,0,2118,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:43:00','0000-00-00','','','','N','17:43:00','00:00:00','','','N','N',NULL,'O','O','Z54','','0000-00-00 00:00:00','3','17:43:24',0,'','janvi','2025-11-10 17:43:24','','0000-00-00 00:00:00'),(2892,0,0,'O','N','2526',2192,0,'2025-11-10','2026-02-09',2249,0,2192,'N','','N','','','RFE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:45:00','0000-00-00','','','','N','17:45:00','18:18:08','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:45:22',0,'','reception','2025-11-10 17:45:22','darshan','2025-11-10 18:18:08'),(2893,0,0,'O','N','2526',2139,0,'2025-11-10','0000-00-00',2190,0,2139,'N','','N','','','REPORTS','','N','D06','','N',156,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:47:00','0000-00-00','','','','N','17:47:00','19:30:37','','N','N','Y',NULL,'O','O','Z55','','0000-00-00 00:00:00','2','17:47:50',0,'','reception','2025-11-10 17:47:50','darshan','2025-11-10 19:30:37'),(2894,0,0,'O','N','2526',2193,0,'2025-11-10','2026-02-09',2250,0,2193,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','18:34:34','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','2','17:50:56',0,'','drashti','2025-11-10 17:50:56','darshan','2025-11-10 18:34:34'),(2895,0,0,'O','N','2526',430,0,'2025-11-10','0000-00-00',453,0,430,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:58:00','0000-00-00','','','','N','17:58:00','00:00:00','','','N','N',NULL,'O','O','Z57','','0000-00-00 00:00:00','3','17:58:30',0,'','janvi','2025-11-10 17:58:30','','0000-00-00 00:00:00'),(2896,0,0,'O','N','2526',2194,0,'2025-11-10','2026-02-09',2251,0,2194,'N','','N','','','NC','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','18:18:48','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','6','18:10:18',0,'','drashti','2025-11-10 18:04:29','drsagar','2025-11-10 18:18:48'),(2897,0,0,'O','N','2526',200,0,'2025-11-10','0000-00-00',213,0,200,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','00:00:00','','','N','N',NULL,'O','O','Z59','','0000-00-00 00:00:00','3','18:16:46',0,'','janvi','2025-11-10 18:16:46','','0000-00-00 00:00:00'),(2898,0,0,'O','N','2526',1343,0,'2025-11-10','0000-00-00',1383,0,1343,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','00:00:00','','','N','Y',NULL,'O','O','Z60','','0000-00-00 00:00:00','3','18:21:03',0,'','janvi','2025-11-10 18:21:03','','0000-00-00 00:00:00'),(2899,0,0,'O','N','2526',2195,0,'2025-11-10','2026-02-09',2252,0,2195,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','18:59:14','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','18:21:38',0,'','reception','2025-11-10 18:21:38','darshan','2025-11-10 18:59:14'),(2900,0,0,'O','N','2526',1288,0,'2025-11-10','0000-00-00',1327,0,1288,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:22:00','0000-00-00','','','','N','18:22:00','00:00:00','','','N','N',NULL,'O','O','Y01','','0000-00-00 00:00:00','3','18:22:41',0,'','drashti','2025-11-10 18:22:41','','0000-00-00 00:00:00'),(2901,0,0,'O','N','2526',1826,0,'2025-11-10','0000-00-00',1872,0,1826,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','18:37:35','','','N','Y',NULL,'O','O','Z61','','0000-00-00 00:00:00','6','18:23:38',0,'','manshi','2025-11-10 18:23:38','drsagar','2025-11-10 18:37:35'),(2902,0,0,'O','N','2526',653,0,'2025-11-10','0000-00-00',683,0,653,'N','','N','','','FV','','N','D06','','N',53,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','18:39:06','','','N','Y',NULL,'O','O','L10','','0000-00-00 00:00:00','2','18:24:32',0,'','reception','2025-11-10 18:24:32','darshan','2025-11-10 18:39:06'),(2903,0,0,'O','N','2526',2196,0,'2025-11-10','2026-02-09',2253,0,2196,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:25:00','0000-00-00','','','','N','18:25:00','19:54:25','','N','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','2','18:25:44',0,'','reception','2025-11-10 18:25:44','darshan','2025-11-10 19:54:25'),(2904,0,0,'O','N','2526',2197,0,'2025-11-10','2026-02-09',1295,0,2197,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','00:00:00','','','N','N',NULL,'O','N','Z62','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-10 18:26:48','','0000-00-00 00:00:00'),(2905,0,0,'O','N','2526',2198,0,'2025-11-10','2026-02-09',2254,0,2198,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','00:00:00','','','N','N',NULL,'O','N','Z63','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-11-10 18:30:11','','0000-00-00 00:00:00'),(2906,0,0,'O','N','2526',1487,0,'2025-11-10','0000-00-00',1528,0,1487,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','00:00:00','','','N','N',NULL,'O','O','Z64','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-10 18:33:46','','0000-00-00 00:00:00'),(2907,0,0,'O','N','2526',2199,0,'2025-11-10','2026-02-09',2255,0,2199,'N','','N','','','NE','','N','D06','','N',3,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','13:49:40','','','N','Y',NULL,'O','N','Z65','','0000-00-00 00:00:00','2','18:34:43',0,'','drashti','2025-11-10 18:34:43','darshan','2025-11-11 13:49:40'),(2908,0,0,'O','N','2526',1276,0,'2025-11-10','0000-00-00',1315,0,1276,'N','','N','','','','','N','D02','','N',4,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','00:00:00','','','N','N',NULL,'O','O','Z66','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-10 18:51:07','','0000-00-00 00:00:00'),(2909,0,0,'O','N','2526',2200,0,'2025-11-10','2026-02-09',2256,0,2200,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:53:00','0000-00-00','','','','N','18:53:00','18:58:30','','','N','Y',NULL,'O','N','Z67','','0000-00-00 00:00:00','6','18:53:38',0,'','manshi','2025-11-10 18:53:38','drsagar','2025-11-10 18:58:30'),(2910,0,0,'O','N','2526',1401,0,'2025-11-10','0000-00-00',1441,0,1401,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','00:00:00','','','N','N',NULL,'O','O','Z68','','0000-00-00 00:00:00','7','18:55:00',0,'','manshi','2025-11-10 18:55:00','','0000-00-00 00:00:00'),(2911,0,0,'O','N','2526',1661,0,'2025-11-10','0000-00-00',1706,0,1661,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:57:00','0000-00-00','','','','N','18:57:00','00:00:00','','','N','N',NULL,'O','O','Z69','','0000-00-00 00:00:00','7','18:57:47',0,'','manshi','2025-11-10 18:57:47','','0000-00-00 00:00:00'),(2912,0,0,'O','N','2526',1912,0,'2025-11-10','0000-00-00',1960,0,1912,'N','','N','','','FOLLOWUP E','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:06:00','0000-00-00','','','','N','19:06:00','19:34:08','','','N','Y',NULL,'O','O','Z70','','0000-00-00 00:00:00','2','19:06:27',0,'','reception','2025-11-10 19:06:27','darshan','2025-11-10 19:34:08'),(2913,0,0,'O','N','2526',941,0,'2025-11-10','0000-00-00',972,0,941,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:15:00','0000-00-00','','','','N','19:15:00','19:24:30','','','N','Y',NULL,'O','O','Z71','','0000-00-00 00:00:00','6','19:15:57',0,'','manshi','2025-11-10 19:15:56','drsagar','2025-11-10 19:24:30'),(2914,0,0,'O','N','2526',2201,0,'2025-11-10','2026-02-09',2257,0,2201,'N','','N','','','','','N','D14','','N',159,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:26:00','0000-00-00','','','','N','19:26:00','00:00:00','','','N','N',NULL,'O','N','Z72','','0000-00-00 00:00:00','7','19:26:27',0,'','manshi','2025-11-10 19:26:27','','0000-00-00 00:00:00'),(2915,0,0,'O','N','2526',2202,0,'2025-11-10','2026-02-09',2258,0,2202,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:30:00','0000-00-00','','','','N','19:30:00','00:00:00','','','N','N',NULL,'O','N','Z73','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-11-10 19:30:09','','0000-00-00 00:00:00'),(2916,0,0,'O','N','2526',2203,0,'2025-11-10','2026-02-09',2259,0,2203,'N','','N','','','EMERGENCY','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:34:00','0000-00-00','','','','N','19:34:00','00:00:00','','','N','N',NULL,'O','N','Z74','','0000-00-00 00:00:00','4','19:33:59',0,'','drashti','2025-11-10 19:33:59','','0000-00-00 00:00:00'),(2917,0,0,'O','N','2526',2204,0,'2025-11-10','2026-02-09',2260,0,2204,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:48:00','0000-00-00','','','','N','19:48:00','19:56:57','','','N','Y',NULL,'O','N','Z75','','0000-00-00 00:00:00','2','19:48:40',0,'','drashti','2025-11-10 19:48:40','darshan','2025-11-10 19:56:57'),(2918,0,0,'O','N','2526',2205,0,'2025-11-10','2026-02-09',2261,0,2205,'N','','N','','','','Y','N','D06','','N',60,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:24:00','0000-00-00','','','','N','20:24:00','00:00:00','','','N','Y',NULL,'O','N','Z76','','0000-00-00 00:00:00','2','20:24:36',0,'','reception','2025-11-10 20:24:36','reception','2025-11-10 20:25:23'),(2919,0,0,'I','N','2526',951,147,'2025-11-10','2026-02-09',982,0,951,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','21:00:00','2025-11-13','','1','mo','N','21:00:00','17:40:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-10 21:14:10','mo','2025-11-13 20:57:27'),(2920,0,0,'O','N','2526',2206,0,'2025-11-11','2026-02-10',2262,0,2206,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:13:00','0000-00-00','','','','N','09:13:00','12:55:40','','N','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','2','09:13:52',0,'','reception','2025-11-11 09:13:52','darshan','2025-11-11 12:55:40'),(2921,0,0,'O','N','2526',2022,0,'2025-11-11','0000-00-00',2075,0,2022,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:16:00','0000-00-00','','','','N','09:16:00','00:00:00','','','N','N',NULL,'O','O','Z02','','0000-00-00 00:00:00','5','09:16:42',0,'','reception','2025-11-11 09:16:42','','0000-00-00 00:00:00'),(2922,0,0,'O','N','2526',1692,0,'2025-11-11','0000-00-00',1738,0,1692,'N','','N','','','FOLLOWUP V','','N','D06','','N',116,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:52:00','0000-00-00','','','','N','09:52:00','10:59:17','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','09:52:18',0,'','reception','2025-11-11 09:52:18','darshan','2025-11-11 10:59:17'),(2923,0,0,'O','N','2526',509,0,'2025-11-11','0000-00-00',534,0,509,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:03:00','0000-00-00','','','','N','10:03:00','10:56:06','','','N','Y',NULL,'O','O','E02','','0000-00-00 00:00:00','2','10:03:32',0,'','reception','2025-11-11 10:03:32','darshan','2025-11-11 10:56:05'),(2924,0,0,'O','N','2526',2207,0,'2025-11-11','2026-02-10',2263,0,2207,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:05:00','0000-00-00','','','','N','10:05:00','14:03:16','','N','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','2','10:05:11',0,'','reception','2025-11-11 10:05:11','darshan','2025-11-11 14:03:16'),(2925,0,0,'O','N','2526',1713,0,'2025-11-11','0000-00-00',1757,0,1713,'N','','N','','','FOLLOWUP C','','N','D27','','N',120,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:10:00','0000-00-00','','','','N','10:10:00','12:00:37','','','N','Y',NULL,'O','O','Z04','','0000-00-00 00:00:00','4','10:10:39',0,'','drashti','2025-11-11 10:10:39','drarchit','2025-11-11 12:00:37'),(2926,0,0,'O','N','2526',2208,0,'2025-11-11','2026-02-10',2264,0,2208,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:12:00','0000-00-00','','','','N','10:12:00','12:21:37','','N','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','4','10:12:13',0,'','drashti','2025-11-11 10:12:13','drarchit','2025-11-11 12:21:37'),(2927,0,0,'O','N','2526',2209,0,'2025-11-11','2026-02-10',2265,0,2209,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:27:00','0000-00-00','','','','N','10:27:00','00:00:00','','','N','N',NULL,'O','N','Z06','','0000-00-00 00:00:00','7','10:27:54',0,'','manshi','2025-11-11 10:27:54','','0000-00-00 00:00:00'),(2928,0,0,'O','N','2526',166,0,'2025-11-11','0000-00-00',179,0,166,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','12:23:42','','N','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','4','10:28:50',0,'','janvi','2025-11-11 10:28:50','drarchit','2025-11-11 12:23:42'),(2929,0,0,'O','N','2526',493,0,'2025-11-11','0000-00-00',518,0,493,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:29:00','0000-00-00','','','','N','10:29:00','11:26:58','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','4','10:29:42',0,'','drashti','2025-11-11 10:29:42','drarchit','2025-11-11 11:26:58'),(2930,0,0,'O','N','2526',2210,0,'2025-11-11','2026-02-10',2266,0,2210,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','','N','10:40:00','11:49:21','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:40:45',0,'','reception','2025-11-11 10:40:45','darshan','2025-11-11 11:49:21'),(2931,0,0,'O','N','2526',2211,0,'2025-11-11','2026-02-10',2267,0,2211,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','11:44:09','','N','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','4','10:44:40',0,'','drashti','2025-11-11 10:44:40','drarchit','2025-11-11 11:44:09'),(2932,0,0,'O','N','2526',1736,0,'2025-11-11','0000-00-00',1780,0,1736,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','11:14:20','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','10:46:11',0,'','reception','2025-11-11 10:46:11','darshan','2025-11-11 11:14:20'),(2933,0,0,'O','N','2526',2212,0,'2025-11-11','2026-02-10',2268,0,2212,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:49:00','0000-00-00','','','','N','10:49:00','11:53:30','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','2','10:49:29',0,'','reception','2025-11-11 10:49:29','darshan','2025-11-11 11:53:30'),(2934,0,0,'O','N','2526',2213,0,'2025-11-11','2026-02-10',2269,0,2213,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','13:50:14','','N','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','10:51:47',0,'','reception','2025-11-11 10:51:47','darshan','2025-11-11 13:50:14'),(2935,0,0,'O','N','2526',2214,0,'2025-11-11','2026-02-10',2270,0,2214,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:52:00','0000-00-00','','','','N','10:52:00','12:33:37','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','4','10:52:11',0,'','drashti','2025-11-11 10:52:11','drarchit','2025-11-11 12:33:37'),(2936,0,0,'O','N','2526',1223,0,'2025-11-11','0000-00-00',1264,0,1223,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','11:00:30','','','N','Y',NULL,'O','O','Z11','','0000-00-00 00:00:00','3','10:54:58',0,'','janvi','2025-11-11 10:54:58','drpratapsinh','2025-11-11 11:00:30'),(2937,0,0,'O','N','2526',2215,0,'2025-11-11','2026-02-10',2271,0,2215,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','12:04:11','','N','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','4','10:55:07',0,'','drashti','2025-11-11 10:55:07','drarchit','2025-11-11 12:04:11'),(2938,0,0,'O','N','2526',2216,0,'2025-11-11','2026-02-10',2272,0,2216,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','14:05:23','','N','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','4','10:57:02',0,'','drashti','2025-11-11 10:57:02','drarchit','2025-11-11 14:05:23'),(2939,0,0,'O','N','2526',2217,0,'2025-11-11','2026-02-10',2273,0,2217,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','11:07:56','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','6','10:57:57',0,'','manshi','2025-11-11 10:57:57','drsagar','2025-11-11 11:07:56'),(2940,0,0,'O','N','2526',1734,0,'2025-11-11','0000-00-00',1778,0,1734,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','12:00:58','','','N','Y',NULL,'O','O','G03','','0000-00-00 00:00:00','2','11:02:12',0,'','reception','2025-11-11 11:02:12','darshan','2025-11-11 12:00:58'),(2941,0,0,'O','N','2526',2218,0,'2025-11-11','2026-02-10',2274,0,2218,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','12:16:59','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','11:03:51',0,'','janvi','2025-11-11 11:03:51','darshan','2025-11-11 12:16:59'),(2942,0,0,'O','N','2526',2219,0,'2025-11-11','2026-02-10',2275,0,2219,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','12:12:05','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','4','11:04:43',0,'','drashti','2025-11-11 11:04:43','drarchit','2025-11-11 12:12:05'),(2943,0,0,'O','N','2526',638,0,'2025-11-11','0000-00-00',668,0,638,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','12:05:07','','','N','Y',NULL,'O','O','G04','','0000-00-00 00:00:00','2','11:08:19',0,'','reception','2025-11-11 11:08:19','darshan','2025-11-11 12:05:07'),(2944,0,0,'O','N','2526',1420,0,'2025-11-11','0000-00-00',1461,0,1420,'N','','N','','','FOLLOWUP C','','N','D27','','N',99,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','12:18:41','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','4','11:08:46',0,'','drashti','2025-11-11 11:08:46','drarchit','2025-11-11 12:18:41'),(2945,0,0,'O','N','2526',2220,0,'2025-11-11','2026-02-10',2276,0,2220,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','11:30:47','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','6','11:09:55',0,'','manshi','2025-11-11 11:09:55','drsagar','2025-11-11 11:30:47'),(2946,0,0,'O','N','2526',271,0,'2025-11-11','0000-00-00',287,0,271,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','18:52:19','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','3','11:10:12',0,'','janvi','2025-11-11 11:10:12','drpratapsinh','2025-11-11 18:52:19'),(2947,0,0,'O','N','2526',2221,0,'2025-11-11','2026-02-10',2277,0,2221,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','18:26:08','','N','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','4','11:11:32',0,'','drashti','2025-11-11 11:11:32','drarchit','2025-11-11 18:26:08'),(2948,0,0,'O','N','2526',1548,0,'2025-11-11','0000-00-00',1591,0,1548,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','12:27:05','','','N','Y',NULL,'O','O','Z21','','0000-00-00 00:00:00','2','11:11:35',0,'','reception','2025-11-11 11:11:35','darshan','2025-11-11 12:27:05'),(2949,0,0,'O','N','2526',2191,0,'2025-11-11','0000-00-00',2248,0,2191,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','18:51:59','','','N','Y',NULL,'O','O','Z22','','0000-00-00 00:00:00','3','11:11:41',0,'','janvi','2025-11-11 11:11:41','drpratapsinh','2025-11-11 18:51:59'),(2950,0,0,'O','N','2526',2198,0,'2025-11-11','0000-00-00',2254,0,2198,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','18:52:46','','','N','Y',NULL,'O','O','Z23','','0000-00-00 00:00:00','3','11:12:06',0,'','janvi','2025-11-11 11:12:06','drpratapsinh','2025-11-11 18:52:46'),(2951,0,0,'O','N','2526',1247,0,'2025-11-11','0000-00-00',1288,0,1247,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','11:44:11','','','N','Y',NULL,'O','O','G05','','0000-00-00 00:00:00','2','11:13:45',0,'','reception','2025-11-11 11:13:45','darshan','2025-11-11 11:44:11'),(2952,0,0,'O','N','2526',1865,0,'2025-11-11','0000-00-00',1910,0,1865,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','11:35:48','','','N','Y',NULL,'O','O','Z24','','0000-00-00 00:00:00','6','11:16:06',0,'','manshi','2025-11-11 11:16:06','drsagar','2025-11-11 11:35:48'),(2953,0,0,'O','N','2526',2222,0,'2025-11-11','2026-02-10',2278,0,2222,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','12:42:52','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','2','11:16:10',0,'','reception','2025-11-11 11:16:10','darshan','2025-11-11 12:42:52'),(2954,0,0,'O','N','2526',2223,0,'2025-11-11','2026-02-10',2279,0,2223,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','12:40:57','','N','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','4','11:17:41',0,'','drashti','2025-11-11 11:17:41','drarchit','2025-11-11 12:40:57'),(2955,0,0,'O','N','2526',2224,0,'2025-11-11','2026-02-10',2280,0,2224,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','12:52:14','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','2','11:19:01',0,'','reception','2025-11-11 11:19:01','darshan','2025-11-11 12:52:14'),(2956,0,0,'O','N','2526',2225,0,'2025-11-11','2026-02-10',2281,0,2225,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','11:57:11','','','N','Y',NULL,'O','N','G06','','0000-00-00 00:00:00','4','11:19:47',0,'','janvi','2025-11-11 11:19:47','drarchit','2025-11-11 11:57:11'),(2957,0,0,'O','N','2526',2226,0,'2025-11-11','2026-02-10',2282,0,2226,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','11:51:07','','N','N','Y',NULL,'O','N','G07','','0000-00-00 00:00:00','4','11:20:53',0,'','janvi','2025-11-11 11:20:53','drarchit','2025-11-11 11:51:07'),(2958,0,0,'O','N','2526',2227,0,'2025-11-11','2026-02-10',2283,0,2227,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','18:13:04','','N','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','4','11:31:05',0,'','janvi','2025-11-11 11:31:05','drarchit','2025-11-11 18:13:04'),(2959,0,0,'O','N','2526',1033,0,'2025-11-11','0000-00-00',1067,0,1033,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','11:42:42','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','6','11:33:03',0,'','manshi','2025-11-11 11:33:03','drsagar','2025-11-11 11:42:42'),(2960,0,0,'O','N','2526',2228,0,'2025-11-11','2026-02-10',2284,0,2228,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','12:48:29','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','2','11:33:20',0,'','reception','2025-11-11 11:33:20','darshan','2025-11-11 12:48:29'),(2961,0,0,'O','N','2526',2229,0,'2025-11-11','2026-02-10',2285,0,2229,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','13:21:36','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','4','11:36:04',0,'','janvi','2025-11-11 11:36:04','drarchit','2025-11-11 13:21:36'),(2962,0,0,'O','N','2526',2230,0,'2025-11-11','2026-02-10',2286,0,2230,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','12:57:24','','N','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','4','11:44:09',0,'','janvi','2025-11-11 11:38:14','drarchit','2025-11-11 12:57:24'),(2963,0,0,'O','N','2526',2231,0,'2025-11-11','2026-02-10',2287,0,2231,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','14:00:22','','N','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','11:44:09',0,'','drashti','2025-11-11 11:39:16','drarchit','2025-11-11 14:00:22'),(2964,0,0,'O','N','2526',2232,0,'2025-11-11','2026-02-10',2288,0,2232,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','13:52:37','','N','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','4','11:44:09',0,'','janvi','2025-11-11 11:39:22','drarchit','2025-11-11 13:52:37'),(2965,0,0,'O','N','2526',1228,0,'2025-11-11','0000-00-00',1269,0,1228,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','12:13:16','','','N','Y',NULL,'O','O','H04','','0000-00-00 00:00:00','2','11:41:34',0,'','reception','2025-11-11 11:41:34','darshan','2025-11-11 12:13:16'),(2966,0,0,'O','N','2526',2233,0,'2025-11-11','2026-02-10',2289,0,2233,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','18:42:58','','N','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','4','11:44:09',0,'','janvi','2025-11-11 11:41:41','drarchit','2025-11-11 18:42:58'),(2967,0,0,'O','N','2526',1273,0,'2025-11-11','0000-00-00',1312,0,1273,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','12:46:15','','','N','Y',NULL,'O','O','H05','','0000-00-00 00:00:00','4','11:44:09',0,'','drashti','2025-11-11 11:42:03','drarchit','2025-11-11 12:46:15'),(2968,0,0,'O','N','2526',2234,0,'2025-11-11','2026-02-10',2290,0,2234,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','12:31:15','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','11:43:02',0,'','reception','2025-11-11 11:43:02','darshan','2025-11-11 12:31:15'),(2969,0,0,'O','N','2526',2235,0,'2025-11-11','2026-02-10',2291,0,2235,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','14:12:35','','N','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','11:45:52',0,'','reception','2025-11-11 11:45:52','darshan','2025-11-11 14:12:34'),(2970,0,0,'O','N','2526',773,0,'2025-11-11','0000-00-00',804,0,773,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','13:49:48','','','N','Y',NULL,'O','O','Z33','','0000-00-00 00:00:00','4','12:12:05',0,'','drashti','2025-11-11 11:50:43','drarchit','2025-11-11 13:49:48'),(2971,0,0,'O','N','2526',2236,0,'2025-11-11','2026-02-10',2292,0,2236,'N','','N','','','NC','','N','D27','','N',146,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','13:09:18','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','4','12:12:05',0,'','drashti','2025-11-11 11:54:02','drarchit','2025-11-11 13:09:18'),(2972,0,0,'O','N','2526',1085,0,'2025-11-11','0000-00-00',714,0,1085,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','13:14:10','','N','N','Y',NULL,'O','O','I04','','0000-00-00 00:00:00','4','12:12:05',0,'','reception','2025-11-11 11:54:20','drarchit','2025-11-11 13:14:10'),(2973,0,0,'O','N','2526',2237,0,'2025-11-11','2026-02-10',2293,0,2237,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:01:00','0000-00-00','','','','N','12:01:00','13:08:38','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','2','12:01:15',0,'','reception','2025-11-11 12:01:15','darshan','2025-11-11 13:08:38'),(2974,0,0,'O','N','2526',1928,0,'2025-11-11','0000-00-00',1976,0,1928,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:01:00','0000-00-00','','','','N','12:01:00','12:08:03','','','N','Y',NULL,'O','O','Z36','','0000-00-00 00:00:00','6','12:01:16',0,'','manshi','2025-11-11 12:01:16','drsagar','2025-11-11 12:08:03'),(2975,0,0,'O','N','2526',816,0,'2025-11-11','0000-00-00',847,0,816,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:05:00','0000-00-00','','','','N','12:05:00','13:02:23','','N','N','Y',NULL,'O','O','I05','','0000-00-00 00:00:00','4','12:12:05',0,'','drashti','2025-11-11 12:05:21','drarchit','2025-11-11 13:02:23'),(2976,0,0,'O','N','2526',2238,0,'2025-11-11','2026-02-10',2294,0,2238,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','13:19:33','','N','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','4','12:12:05',0,'','drashti','2025-11-11 12:09:25','drarchit','2025-11-11 13:19:33'),(2977,0,0,'O','N','2526',538,0,'2025-11-11','0000-00-00',564,0,538,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','13:23:44','','N','N','Y',NULL,'O','O','J01','','0000-00-00 00:00:00','4','12:12:05',0,'','janvi','2025-11-11 12:09:38','drarchit','2025-11-11 13:23:44'),(2978,0,0,'O','N','2526',1985,0,'2025-11-11','0000-00-00',2036,0,1985,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:11:00','0000-00-00','','','','N','12:11:00','18:24:40','','','N','Y',NULL,'O','O','Z38','','0000-00-00 00:00:00','6','12:12:01',0,'','manshi','2025-11-11 12:12:01','drsagar','2025-11-11 18:24:40'),(2979,0,0,'O','N','2526',1858,0,'2025-11-11','0000-00-00',870,0,1858,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:16:00','0000-00-00','','','','N','12:16:00','00:00:00','','','N','N',NULL,'O','O','Z39','','0000-00-00 00:00:00','7','12:16:46',0,'','manshi','2025-11-11 12:16:46','','0000-00-00 00:00:00'),(2980,0,0,'O','N','2526',2239,0,'2025-11-11','2026-02-10',2295,0,2239,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:17:00','0000-00-00','','','','N','12:17:00','13:25:41','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','2','12:17:18',0,'','reception','2025-11-11 12:17:18','darshan','2025-11-11 13:25:41'),(2981,0,0,'O','N','2526',309,0,'2025-11-11','0000-00-00',325,0,309,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:18:00','0000-00-00','','','','N','12:18:00','13:00:26','','','N','Y',NULL,'O','O','J02','','0000-00-00 00:00:00','2','12:18:22',0,'','janvi','2025-11-11 12:18:22','darshan','2025-11-11 13:00:26'),(2982,0,0,'O','N','2526',2240,0,'2025-11-11','2026-02-10',2296,0,2240,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:19:00','0000-00-00','','','','N','12:19:00','13:33:25','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','2','12:19:42',0,'','reception','2025-11-11 12:19:42','darshan','2025-11-11 13:33:25'),(2983,0,0,'O','N','2526',2241,0,'2025-11-11','2026-02-10',2297,0,2241,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:20:00','0000-00-00','','','','N','12:20:00','13:40:34','','N','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','4','12:46:15',0,'','drashti','2025-11-11 12:20:28','drarchit','2025-11-11 13:40:34'),(2984,0,0,'O','N','2526',2242,0,'2025-11-11','2026-02-10',2298,0,2242,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','13:42:34','','N','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','4','12:46:15',0,'','janvi','2025-11-11 12:21:03','drarchit','2025-11-11 13:42:34'),(2985,0,0,'O','N','2526',2243,0,'2025-11-11','2026-02-10',2299,0,2243,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','13:45:46','','N','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','4','12:46:15',0,'','drashti','2025-11-11 12:21:49','drarchit','2025-11-11 13:45:46'),(2986,0,0,'O','N','2526',2244,0,'2025-11-11','2026-02-10',2300,0,2244,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:22:00','0000-00-00','','','','N','12:22:00','17:59:56','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','2','12:22:52',0,'','reception','2025-11-11 12:22:52','darshan','2025-11-11 17:59:56'),(2987,0,0,'O','N','2526',1420,0,'2025-11-11','0000-00-00',1461,0,1420,'N','','N','','','FC','','N','D27','','N',99,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:23:00','0000-00-00','','','','N','12:23:00','19:21:07','','','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','4','12:46:15',0,'','janvi','2025-11-11 12:23:07','drarchit','2025-11-11 19:21:07'),(2988,0,0,'O','N','2526',1945,0,'2025-11-11','0000-00-00',1993,0,1945,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:24:00','0000-00-00','','','','N','12:24:00','13:04:35','','','N','Y',NULL,'O','O','I06','','0000-00-00 00:00:00','2','12:24:11',0,'','reception','2025-11-11 12:24:11','darshan','2025-11-11 13:04:35'),(2989,0,0,'O','N','2526',508,0,'2025-11-11','0000-00-00',533,0,508,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:24:00','0000-00-00','','','','N','12:24:00','13:55:49','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','4','12:46:15',0,'','drashti','2025-11-11 12:24:40','drarchit','2025-11-11 13:55:49'),(2990,0,0,'O','N','2526',1511,0,'2025-11-11','0000-00-00',1552,0,1511,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','0000-00-00','','','','N','12:30:00','13:36:20','','','N','Y',NULL,'O','O','J03','','0000-00-00 00:00:00','4','12:46:15',0,'','drashti','2025-11-11 12:30:09','drarchit','2025-11-11 13:36:20'),(2991,0,0,'O','N','2526',2245,0,'2025-11-11','2026-02-10',2301,0,2245,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:32:00','0000-00-00','','','','N','12:32:00','18:24:54','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','6','12:32:36',0,'','manshi','2025-11-11 12:32:36','drsagar','2025-11-11 18:24:54'),(2992,0,0,'O','N','2526',21,0,'2025-11-11','0000-00-00',22,0,21,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','13:29:48','','','N','Y',NULL,'O','O','J04','','0000-00-00 00:00:00','4','12:46:15',0,'','janvi','2025-11-11 12:35:59','drarchit','2025-11-11 13:29:48'),(2993,0,0,'O','N','2526',284,0,'2025-11-11','0000-00-00',300,0,284,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:38:00','0000-00-00','','','','N','12:38:00','19:36:02','','','N','Y',NULL,'O','O','J05','','0000-00-00 00:00:00','2','12:38:23',0,'','reception','2025-11-11 12:38:23','darshan','2025-11-11 19:36:02'),(2994,0,0,'I','N','2526',0,148,'2025-11-11','2026-02-10',2302,0,0,'N','','N','','','','N','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:58:00','2025-11-12','','1','mo','N','12:58:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-11 12:59:46','vishal','2025-11-12 11:28:46'),(2995,0,0,'O','N','2526',2246,0,'2025-11-11','2026-02-10',2303,0,2246,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:50:00','0000-00-00','','','','N','13:50:00','14:17:25','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','4','13:50:16',0,'','drashti','2025-11-11 13:50:16','drarchit','2025-11-11 14:17:25'),(2996,0,0,'O','N','2526',2247,0,'2025-11-11','2026-02-10',2304,0,2247,'N','','N','','','','','N','D02','','N',160,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:09:00','0000-00-00','','','','N','14:09:00','18:55:23','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','3','14:09:49',0,'','janvi','2025-11-11 14:09:49','drpratapsinh','2025-11-11 18:55:23'),(2997,0,0,'O','N','2526',2248,0,'2025-11-11','2026-02-10',2305,0,2248,'N','','N','','','NV','','N','D06','','N',144,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:11:00','0000-00-00','','','','N','14:11:00','14:46:31','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','2','14:11:44',0,'','shweta','2025-11-11 14:11:44','darshan','2025-11-11 14:46:31'),(2998,0,0,'O','N','2526',2249,0,'2025-11-11','2026-02-10',2306,0,2249,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:41:00','0000-00-00','','','','N','16:41:00','17:16:16','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','2','16:41:39',0,'','shweta','2025-11-11 16:41:39','darshan','2025-11-11 17:16:16'),(2999,0,0,'O','N','2526',2250,0,'2025-11-11','2026-02-10',2307,0,2250,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:42:00','0000-00-00','','','','N','16:42:00','19:04:41','','N','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','2','16:42:36',0,'','drashti','2025-11-11 16:42:36','darshan','2025-11-11 19:04:41'),(3000,0,0,'O','N','2526',997,0,'2025-11-11','0000-00-00',1029,0,997,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:47:00','0000-00-00','','','','N','16:47:00','17:13:20','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','16:47:28',0,'','shweta','2025-11-11 16:47:28','darshan','2025-11-11 17:13:20'),(3001,0,0,'O','N','2526',2251,0,'2025-11-11','2026-02-10',2308,0,2251,'N','','N','','','NV','','N','D06','','N',161,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:07:00','0000-00-00','','','','N','17:07:00','18:53:53','','N','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','17:07:01',0,'','priyanshi','2025-11-11 17:07:01','darshan','2025-11-11 18:53:53'),(3002,0,0,'O','N','2526',2244,0,'2025-11-11','0000-00-00',2300,0,2244,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:09:00','0000-00-00','','','','N','17:09:00','18:21:04','','N','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','2','17:09:30',0,'','priyanshi','2025-11-11 17:09:30','darshan','2025-11-11 18:21:04'),(3003,0,0,'O','N','2526',460,0,'2025-11-11','0000-00-00',486,0,460,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:16:00','0000-00-00','','','','N','17:16:00','17:41:55','','','N','Y',NULL,'O','O','L03','','0000-00-00 00:00:00','2','17:16:10',0,'','priyanshi','2025-11-11 17:16:10','darshan','2025-11-11 17:41:55'),(3004,0,0,'O','N','2526',1976,0,'2025-11-11','0000-00-00',2024,0,1976,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:17:00','0000-00-00','','','','N','17:17:00','19:04:01','','','N','Y',NULL,'O','O','Z52','','0000-00-00 00:00:00','3','17:17:22',0,'','priyanshi','2025-11-11 17:17:22','drpratapsinh','2025-11-11 19:04:01'),(3005,0,0,'O','N','2526',2252,0,'2025-11-11','2026-02-10',2309,0,2252,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:19:00','0000-00-00','','','','N','17:19:00','18:00:56','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','4','17:19:57',0,'','drashti','2025-11-11 17:19:57','drarchit','2025-11-11 18:00:56'),(3006,0,0,'O','N','2526',2089,0,'2025-11-11','0000-00-00',2143,0,2089,'N','','N','','','REPORTS','','N','D06','','N',60,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:23:00','0000-00-00','','','','N','17:23:00','18:29:34','','N','N','Y',NULL,'O','O','Z54','','0000-00-00 00:00:00','2','17:23:41',0,'','priyanshi','2025-11-11 17:23:41','darshan','2025-11-11 18:29:34'),(3007,0,0,'O','N','2526',2253,0,'2025-11-11','2026-02-10',2310,0,2253,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:25:00','0000-00-00','','','','N','17:25:00','19:10:29','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','3','17:25:16',0,'','janvi','2025-11-11 17:25:16','drpratapsinh','2025-11-11 19:10:29'),(3008,0,0,'O','N','2526',1133,0,'2025-11-11','0000-00-00',1173,0,1133,'N','','N','','','','','N','D02','','N',11,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:33:00','0000-00-00','','','','N','17:33:00','18:58:22','','','N','Y',NULL,'O','O','Z56','','0000-00-00 00:00:00','3','17:33:16',0,'','drashti','2025-11-11 17:33:16','drpratapsinh','2025-11-11 18:58:22'),(3009,0,0,'O','N','2526',347,0,'2025-11-11','0000-00-00',363,0,347,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:39:00','0000-00-00','','','','N','17:39:00','17:48:49','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','17:39:22',0,'','priyanshi','2025-11-11 17:39:22','darshan','2025-11-11 17:48:49'),(3010,0,0,'O','N','2526',2254,0,'2025-11-11','2026-02-10',2311,0,2254,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','19:13:45','','N','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','4','17:41:31',0,'','drashti','2025-11-11 17:41:31','drarchit','2025-11-11 19:13:45'),(3011,0,0,'O','N','2526',2255,0,'2025-11-11','2026-02-10',2312,0,2255,'N','','N','','','','','N','D14','','N',162,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:45:00','0000-00-00','','','','N','17:45:00','00:00:00','','','N','N',NULL,'O','N','Z58','','0000-00-00 00:00:00','7','17:45:38',0,'','manshi','2025-11-11 17:45:38','','0000-00-00 00:00:00'),(3012,0,0,'O','N','2526',1674,0,'2025-11-11','0000-00-00',1719,0,1674,'N','','N','','','FOLLOWUP C','','N','D27','','N',114,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','18:23:02','','','N','Y',NULL,'O','O','L05','','0000-00-00 00:00:00','4','17:50:36',0,'','drashti','2025-11-11 17:50:36','drarchit','2025-11-11 18:23:02'),(3013,0,0,'O','N','2526',2256,0,'2025-11-11','2026-02-10',2313,0,2256,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','18:30:38','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','4','17:51:19',0,'','priyanshi','2025-11-11 17:51:19','drarchit','2025-11-11 18:30:38'),(3014,0,0,'O','N','2526',2005,0,'2025-11-11','0000-00-00',2056,0,2005,'N','','N','','','','','N','D02','','N',146,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','18:48:04','','','N','Y',NULL,'O','O','Z60','','0000-00-00 00:00:00','3','17:52:47',0,'','priyanshi','2025-11-11 17:52:47','drpratapsinh','2025-11-11 18:48:04'),(3015,0,0,'O','N','2526',2257,0,'2025-11-11','2026-02-10',2314,0,2257,'N','','N','','','NV','','N','D06','','N',163,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:55:00','0000-00-00','','','','N','17:55:00','19:30:02','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:55:25',0,'','priyanshi','2025-11-11 17:55:25','darshan','2025-11-11 19:30:02'),(3016,0,0,'O','N','2526',2258,0,'2025-11-11','2026-02-10',2315,0,2258,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','0000-00-00','','','','N','18:00:00','18:34:02','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','4','18:00:42',0,'','drashti','2025-11-11 18:00:42','drarchit','2025-11-11 18:34:02'),(3017,0,0,'O','N','2526',2259,0,'2025-11-11','2026-02-10',2316,0,2259,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:01:00','0000-00-00','','','','N','18:01:00','18:38:43','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','4','18:01:30',0,'','priyanshi','2025-11-11 18:01:30','drarchit','2025-11-11 18:38:43'),(3018,0,0,'O','N','2526',2260,0,'2025-11-11','2026-02-10',2317,0,2260,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','19:09:33','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','3','18:02:25',0,'','janvi','2025-11-11 18:02:25','drpratapsinh','2025-11-11 19:09:33'),(3019,0,0,'O','N','2526',2261,0,'2025-11-11','2026-02-10',2318,0,2261,'N','','N','','','NV','','N','D06','','N',164,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','00:00:00','','Y','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','18:03:27',0,'','drashti','2025-11-11 18:03:27','darshan','2025-11-11 19:01:25'),(3020,0,0,'O','N','2526',2262,0,'2025-11-11','2026-02-10',2319,0,2262,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','19:03:35','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','4','18:03:44',0,'','priyanshi','2025-11-11 18:03:44','drarchit','2025-11-11 19:03:35'),(3021,0,0,'O','N','2526',2118,0,'2025-11-11','0000-00-00',1763,0,2118,'N','','N','','','FOLLOWUP','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','18:48:22','','','N','Y',NULL,'O','O','Z64','','0000-00-00 00:00:00','3','18:04:48',0,'','janvi','2025-11-11 18:04:48','drpratapsinh','2025-11-11 18:48:22'),(3022,0,0,'O','N','2526',2263,0,'2025-11-11','2026-02-10',2320,0,2263,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','19:20:54','','N','N','Y',NULL,'O','N','Z65','','0000-00-00 00:00:00','4','18:10:31',0,'','drashti','2025-11-11 18:10:31','drarchit','2025-11-11 19:20:54'),(3023,0,0,'O','N','2526',2264,0,'2025-11-11','2026-02-10',2321,0,2264,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','19:28:21','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','18:10:46',0,'','priyanshi','2025-11-11 18:10:46','darshan','2025-11-11 19:28:21'),(3024,0,0,'O','N','2526',2265,0,'2025-11-11','2026-02-10',2322,0,2265,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','18:52:25','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','4','18:11:30',0,'','janvi','2025-11-11 18:11:30','drarchit','2025-11-11 18:52:25'),(3025,0,0,'O','N','2526',1397,0,'2025-11-11','0000-00-00',1437,0,1397,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','18:38:12','','','N','Y',NULL,'O','O','L10','','0000-00-00 00:00:00','2','18:12:33',0,'','priyanshi','2025-11-11 18:12:33','darshan','2025-11-11 18:38:12'),(3026,0,0,'O','N','2526',2266,0,'2025-11-11','2026-02-10',2323,0,2266,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:13:00','0000-00-00','','','','N','18:13:00','19:00:59','','','N','Y',NULL,'O','N','Z67','','0000-00-00 00:00:00','4','18:13:56',0,'','drashti','2025-11-11 18:13:56','drarchit','2025-11-11 19:00:59'),(3027,0,0,'I','N','2526',2247,149,'2025-11-11','2026-02-10',2304,0,2247,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:30:00','2025-11-17','','1','mo','N','14:30:00','10:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-11 18:14:12','mo','2025-11-17 10:11:04'),(3028,0,0,'O','N','2526',357,0,'2025-11-11','0000-00-00',373,0,357,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','18:40:41','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','2','18:15:16',0,'','priyanshi','2025-11-11 18:15:16','darshan','2025-11-11 18:40:41'),(3029,0,0,'O','N','2526',1321,0,'2025-11-11','0000-00-00',1361,0,1321,'N','','N','','','FOLLOWUP C','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','19:56:40','','','N','Y',NULL,'O','O','Z68','','0000-00-00 00:00:00','4','18:15:48',0,'','drashti','2025-11-11 18:15:48','drarchit','2025-11-11 19:56:40'),(3030,0,0,'O','N','2526',2267,0,'2025-11-11','2026-02-10',2324,0,2267,'N','','N','','','NE','','N','D06','','N',21,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','19:21:48','','N','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','2','18:16:57',0,'','priyanshi','2025-11-11 18:16:57','darshan','2025-11-11 19:21:48'),(3031,0,0,'O','N','2526',2268,0,'2025-11-11','2026-02-10',2325,0,2268,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','19:45:39','','N','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','2','18:21:43',0,'','drashti','2025-11-11 18:21:43','darshan','2025-11-11 19:45:39'),(3032,0,0,'O','N','2526',2269,0,'2025-11-11','2026-02-10',2326,0,2269,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:25:00','0000-00-00','','','','N','18:25:00','19:07:45','','','N','Y',NULL,'O','N','Z70','','0000-00-00 00:00:00','6','18:25:56',0,'','manshi','2025-11-11 18:25:55','drsagar','2025-11-11 19:07:45'),(3033,0,0,'O','N','2526',2270,0,'2025-11-11','2026-02-10',2327,0,2270,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','19:06:15','','','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','4','18:31:57',0,'','drashti','2025-11-11 18:31:57','drarchit','2025-11-11 19:06:15'),(3034,0,0,'O','N','2526',892,0,'2025-11-11','0000-00-00',924,0,892,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','19:11:16','','','N','Y',NULL,'O','O','Z72','','0000-00-00 00:00:00','4','18:33:56',0,'','priyanshi','2025-11-11 18:33:56','drarchit','2025-11-11 19:11:16'),(3035,0,0,'O','N','2526',2271,0,'2025-11-11','2026-02-10',2328,0,2271,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','19:29:25','','','N','Y',NULL,'O','N','Z73','','0000-00-00 00:00:00','4','18:33:58',0,'','drashti','2025-11-11 18:33:58','drarchit','2025-11-11 19:29:25'),(3036,0,0,'O','N','2526',118,0,'2025-11-11','0000-00-00',129,0,118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','18:51:44','','','N','Y',NULL,'O','O','Z74','','0000-00-00 00:00:00','3','18:36:06',0,'','janvi','2025-11-11 18:36:06','drpratapsinh','2025-11-11 18:51:44'),(3037,0,0,'O','N','2526',2272,0,'2025-11-11','2026-02-10',2329,0,2272,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','20:00:42','','','N','Y',NULL,'O','N','Z75','','0000-00-00 00:00:00','4','18:36:06',0,'','priyanshi','2025-11-11 18:36:06','drarchit','2025-11-11 20:00:42'),(3038,0,0,'O','N','2526',2273,0,'2025-11-11','2026-02-10',2330,0,2273,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:38:00','0000-00-00','','','','N','18:38:00','19:35:00','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','4','18:38:06',0,'','drashti','2025-11-11 18:38:06','drarchit','2025-11-11 19:35:00'),(3039,0,0,'O','N','2526',2274,0,'2025-11-11','2026-02-10',2331,0,2274,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','19:25:56','','','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','4','18:43:28',0,'','janvi','2025-11-11 18:43:28','drarchit','2025-11-11 19:25:56'),(3040,0,0,'O','N','2526',1663,0,'2025-11-11','0000-00-00',1708,0,1663,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','19:04:11','','','N','Y',NULL,'O','O','Z76','','0000-00-00 00:00:00','2','18:43:48',0,'','priyanshi','2025-11-11 18:43:48','darshan','2025-11-11 19:04:11'),(3041,0,0,'O','N','2526',2275,0,'2025-11-11','2026-02-10',2332,0,2275,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','00:00:00','','Y','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','18:46:43',0,'','priyanshi','2025-11-11 18:46:43','drarchit','2025-11-11 19:19:48'),(3042,0,0,'O','N','2526',2276,0,'2025-11-11','2026-02-10',2333,0,2276,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','18:54:45','','','N','Y',NULL,'O','N','Z77','','0000-00-00 00:00:00','3','18:46:44',0,'','drashti','2025-11-11 18:46:44','drpratapsinh','2025-11-11 18:54:45'),(3043,0,0,'O','N','2526',1521,0,'2025-11-11','0000-00-00',1562,0,1521,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','19:04:23','','','N','Y',NULL,'O','O','Z78','','0000-00-00 00:00:00','3','18:47:00',0,'','janvi','2025-11-11 18:47:00','drpratapsinh','2025-11-11 19:04:23'),(3044,0,0,'O','N','2526',983,0,'2025-11-11','0000-00-00',403,0,983,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','19:04:36','','','N','Y',NULL,'O','O','Z79','','0000-00-00 00:00:00','3','18:49:55',0,'','drashti','2025-11-11 18:49:55','drpratapsinh','2025-11-11 19:04:36'),(3045,0,0,'O','N','2526',2277,0,'2025-11-11','2026-02-10',2334,0,2277,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','20:02:32','','N','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','2','18:51:52',0,'','priyanshi','2025-11-11 18:51:52','darshan','2025-11-11 20:02:32'),(3046,0,0,'O','N','2526',2278,0,'2025-11-11','2026-02-10',2335,0,2278,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','19:40:20','','','N','Y',NULL,'O','N','L17','','0000-00-00 00:00:00','4','18:54:16',0,'','drashti','2025-11-11 18:54:16','drarchit','2025-11-11 19:40:20'),(3047,0,0,'O','N','2526',2279,0,'2025-11-11','2026-02-10',2336,0,2279,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:01:00','0000-00-00','','','','N','19:01:00','19:46:00','','','N','Y',NULL,'O','N','L18','','0000-00-00 00:00:00','4','19:01:13',0,'','drashti','2025-11-11 19:01:13','drarchit','2025-11-11 19:46:00'),(3048,0,0,'O','N','2526',2280,0,'2025-11-11','2026-02-10',2337,0,2280,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:06:00','0000-00-00','','','','N','19:06:00','19:52:00','','','N','Y',NULL,'O','N','L19','','0000-00-00 00:00:00','4','19:06:25',0,'','drashti','2025-11-11 19:06:24','drarchit','2025-11-11 19:52:00'),(3049,0,0,'O','N','2526',1363,0,'2025-11-11','0000-00-00',1403,0,1363,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:10:00','0000-00-00','','','','N','19:10:00','00:00:00','','','N','N',NULL,'O','O','Z80','','0000-00-00 00:00:00','4','19:10:23',0,'','drashti','2025-11-11 19:10:23','','0000-00-00 00:00:00'),(3050,0,0,'O','N','2526',2281,0,'2025-11-11','2026-02-10',2338,0,2281,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:21:00','0000-00-00','','','','N','19:21:00','20:11:14','','','N','Y',NULL,'O','N','L20','','0000-00-00 00:00:00','4','19:21:59',0,'','drashti','2025-11-11 19:21:59','drarchit','2025-11-11 20:11:14'),(3051,0,0,'O','N','2526',2282,0,'2025-11-11','2026-02-10',2339,0,2282,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:23:00','0000-00-00','','','','N','19:23:00','20:13:14','','','N','Y',NULL,'O','N','Z81','','0000-00-00 00:00:00','4','19:23:56',0,'','drashti','2025-11-11 19:23:56','drarchit','2025-11-11 20:13:14'),(3052,0,0,'O','N','2526',2283,0,'2025-11-11','2026-02-10',2340,0,2283,'N','','N','','','NC','','N','D27','','N',165,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:26:00','0000-00-00','','','','N','19:26:00','20:17:48','','','N','Y',NULL,'O','N','Z82','','0000-00-00 00:00:00','4','19:26:41',0,'','priyanshi','2025-11-11 19:26:41','drarchit','2025-11-11 20:17:48'),(3053,0,0,'O','N','2526',2284,0,'2025-11-11','2026-02-10',2341,0,2284,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:31:00','0000-00-00','','','','N','19:31:00','20:20:47','','','N','Y',NULL,'O','N','Z83','','0000-00-00 00:00:00','4','19:31:41',0,'','priyanshi','2025-11-11 19:31:41','drarchit','2025-11-11 20:20:47'),(3054,0,0,'O','N','2526',2285,0,'2025-11-11','2026-02-10',2342,0,2285,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:43:00','0000-00-00','','','','N','19:43:00','00:00:00','','','N','N',NULL,'O','N','Z84','','0000-00-00 00:00:00','3','19:43:46',0,'','janvi','2025-11-11 19:43:46','','0000-00-00 00:00:00'),(3055,0,0,'O','N','2526',2286,0,'2025-11-11','2026-02-10',2343,0,2286,'N','','N','','','EMR','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:43:00','0000-00-00','','','','N','20:43:00','00:00:00','','','N','N',NULL,'O','N','Z85','','0000-00-00 00:00:00','4','20:43:51',0,'','drashti','2025-11-11 20:43:51','','0000-00-00 00:00:00'),(3056,0,0,'O','N','2526',2287,0,'2025-11-12','2026-02-11',2344,0,2287,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:48:00','0000-00-00','','','','N','08:48:00','13:08:50','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','08:48:07',0,'','reception','2025-11-12 08:48:07','drarchit','2025-11-13 13:08:50'),(3057,0,0,'O','N','2526',2288,0,'2025-11-12','2026-02-11',2345,0,2288,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:50:00','0000-00-00','','','','N','08:50:00','00:00:00','','','N','N',NULL,'O','N','Z02','','0000-00-00 00:00:00','5','08:50:36',0,'','reception','2025-11-12 08:50:36','','0000-00-00 00:00:00'),(3058,0,0,'O','N','2526',2289,0,'2025-11-12','2026-02-11',2346,0,2289,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:25:00','0000-00-00','','','','N','09:25:00','11:25:56','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','4','09:26:03',0,'','janvi','2025-11-12 09:26:03','drarchit','2025-11-12 11:25:56'),(3059,0,0,'O','N','2526',2290,0,'2025-11-12','2026-02-11',2347,0,2290,'N','','N','','','','','N','D02','','N',96,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:48:00','0000-00-00','','','','N','09:48:00','19:02:17','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','3','09:48:16',0,'','janvi','2025-11-12 09:48:16','drpratapsinh','2025-11-12 19:02:17'),(3060,0,0,'O','N','2526',2291,0,'2025-11-12','2026-02-11',2348,0,2291,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:49:00','0000-00-00','','','','N','09:49:00','13:36:34','','N','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','09:50:01',0,'','reception','2025-11-12 09:50:00','darshan','2025-11-12 13:36:34'),(3061,0,0,'O','N','2526',2292,0,'2025-11-12','2026-02-11',2349,0,2292,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:11:00','0000-00-00','','','','N','10:11:00','12:03:47','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','4','10:11:17',0,'','drashti','2025-11-12 10:11:17','drarchit','2025-11-12 12:03:47'),(3062,0,0,'O','N','2526',1715,0,'2025-11-12','0000-00-00',1759,0,1715,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:11:00','0000-00-00','','','','N','10:11:00','11:23:33','','','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','3','10:11:28',0,'','reception','2025-11-12 10:11:28','drpratapsinh','2025-11-12 11:23:33'),(3063,0,0,'O','N','2526',2293,0,'2025-11-12','2026-02-11',2350,0,2293,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:27:00','0000-00-00','','','','N','10:27:00','11:13:45','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','4','10:27:19',0,'','drashti','2025-11-12 10:27:19','drarchit','2025-11-12 11:13:45'),(3064,0,0,'O','N','2526',1824,0,'2025-11-12','0000-00-00',1870,0,1824,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:34:00','0000-00-00','','','','N','10:34:00','12:15:15','','N','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','10:34:52',0,'','reception','2025-11-12 10:34:52','darshan','2025-11-12 12:15:15'),(3065,0,0,'O','N','2526',20,0,'2025-11-12','0000-00-00',20,0,20,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:35:00','0000-00-00','','','','N','10:35:00','12:33:36','','N','N','Y',NULL,'O','O','I01','','0000-00-00 00:00:00','4','10:35:32',0,'','drashti','2025-11-12 10:35:32','drarchit','2025-11-12 12:33:36'),(3066,0,0,'O','N','2526',2294,0,'2025-11-12','2026-02-11',2351,0,2294,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','11:02:28','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:39:05',0,'','reception','2025-11-12 10:39:05','darshan','2025-11-12 11:02:28'),(3067,0,0,'O','N','2526',2295,0,'2025-11-12','2026-02-11',2352,0,2295,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:41:00','0000-00-00','','','','N','10:41:00','11:21:28','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','4','10:41:47',0,'','drashti','2025-11-12 10:41:47','drarchit','2025-11-12 11:21:28'),(3068,0,0,'O','N','2526',1097,0,'2025-11-12','0000-00-00',1135,0,1097,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:45:00','0000-00-00','','','','N','10:45:00','11:19:23','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:45:20',0,'','reception','2025-11-12 10:45:20','darshan','2025-11-12 11:19:23'),(3069,0,0,'O','N','2526',2296,0,'2025-11-12','2026-02-11',2353,0,2296,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','11:37:31','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','4','10:55:59',0,'','janvi','2025-11-12 10:55:59','drarchit','2025-11-12 11:37:31'),(3070,0,0,'O','N','2526',2297,0,'2025-11-12','2026-02-11',2354,0,2297,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:00:00','0000-00-00','','','','N','11:00:00','11:34:38','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','11:00:04',0,'','reception','2025-11-12 11:00:03','darshan','2025-11-12 11:34:38'),(3071,0,0,'O','N','2526',2298,0,'2025-11-12','2026-02-11',2355,0,2298,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','11:38:16','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','2','11:05:38',0,'','reception','2025-11-12 11:05:38','darshan','2025-11-12 11:38:16'),(3072,0,0,'O','N','2526',472,0,'2025-11-12','0000-00-00',498,0,472,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','12:10:16','','','N','Y',NULL,'O','O','Z10','','0000-00-00 00:00:00','2','11:08:23',0,'','reception','2025-11-12 11:08:23','darshan','2025-11-12 12:10:16'),(3073,0,0,'O','N','2526',2299,0,'2025-11-12','2026-02-11',2356,0,2299,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','12:54:13','','N','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','2','11:09:59',0,'','reception','2025-11-12 11:09:59','darshan','2025-11-12 12:54:13'),(3074,0,0,'O','N','2526',2300,0,'2025-11-12','2026-02-11',2357,0,2300,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','13:38:02','','N','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:11:15',0,'','janvi','2025-11-12 11:11:15','darshan','2025-11-12 13:38:02'),(3075,0,0,'O','N','2526',2301,0,'2025-11-12','2026-02-11',2358,0,2301,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','11:29:11','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','6','11:11:20',0,'','manshi','2025-11-12 11:11:20','drsagar','2025-11-12 11:29:11'),(3076,0,0,'O','N','2526',1235,0,'2025-11-12','0000-00-00',1276,0,1235,'N','','N','','','','','N','D27','','N',55,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','11:44:51','','','N','Y',NULL,'O','O','G04','','0000-00-00 00:00:00','4','11:12:21',0,'','reception','2025-11-12 11:12:21','drarchit','2025-11-12 11:44:51'),(3077,0,0,'O','N','2526',1288,0,'2025-11-12','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','11:23:49','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','3','11:14:46',0,'','janvi','2025-11-12 11:14:46','drpratapsinh','2025-11-12 11:23:49'),(3078,0,0,'O','N','2526',2302,0,'2025-11-12','2026-02-11',2359,0,2302,'N','','N','','','RFV ','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','12:02:30','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','11:15:19',0,'','reception','2025-11-12 11:15:19','darshan','2025-11-12 12:02:30'),(3079,0,0,'O','N','2526',2303,0,'2025-11-12','2026-02-11',2360,0,2303,'N','','N','','','NE','','N','D06','','N',166,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','11:52:06','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','2','11:17:31',0,'','reception','2025-11-12 11:17:30','darshan','2025-11-12 11:52:06'),(3080,0,0,'O','N','2526',2304,0,'2025-11-12','2026-02-11',2361,0,2304,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','12:13:03','','','N','Y',NULL,'O','N','G05','','0000-00-00 00:00:00','2','11:20:12',0,'','shweta','2025-11-12 11:20:12','darshan','2025-11-12 12:13:03'),(3081,0,0,'O','N','2526',2305,0,'2025-11-12','2026-02-11',2362,0,2305,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','11:56:09','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','4','11:21:09',0,'','janvi','2025-11-12 11:21:09','drarchit','2025-11-12 11:56:09'),(3082,0,0,'O','N','2526',2306,0,'2025-11-12','2026-02-11',2363,0,2306,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','00:00:00','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','7','11:27:00',0,'','manshi','2025-11-12 11:27:00','','0000-00-00 00:00:00'),(3083,0,0,'O','N','2526',2307,0,'2025-11-12','2026-02-11',2364,0,2307,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','12:20:37','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','2','11:27:35',0,'','reception','2025-11-12 11:27:34','darshan','2025-11-12 12:20:37'),(3084,0,0,'O','N','2526',2308,0,'2025-11-12','2026-02-11',2365,0,2308,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','12:26:56','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','11:29:59',0,'','reception','2025-11-12 11:29:59','darshan','2025-11-12 12:26:56'),(3085,0,0,'O','N','2526',2309,0,'2025-11-12','2026-02-11',2366,0,2309,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','11:39:44','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','6','11:31:59',0,'','manshi','2025-11-12 11:31:59','drsagar','2025-11-12 11:39:44'),(3086,0,0,'O','N','2526',2310,0,'2025-11-12','2026-02-11',2367,0,2310,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','11:52:52','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','3','11:35:44',0,'','janvi','2025-11-12 11:35:44','drpratapsinh','2025-11-12 11:52:52'),(3087,0,0,'O','N','2526',764,0,'2025-11-12','0000-00-00',795,0,764,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','19:43:39','','','N','Y',NULL,'O','O','Z20','','0000-00-00 00:00:00','2','11:41:02',0,'','reception','2025-11-12 11:41:02','darshan','2025-11-14 19:43:39'),(3088,0,0,'O','N','2526',2311,0,'2025-11-12','2026-02-11',2368,0,2311,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','18:33:39','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','4','11:41:21',0,'','janvi','2025-11-12 11:41:21','drarchit','2025-11-12 18:33:38'),(3089,0,0,'O','N','2526',755,0,'2025-11-12','0000-00-00',787,0,755,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','12:42:41','','','N','Y',NULL,'O','O','Z22','','0000-00-00 00:00:00','2','11:42:44',0,'','reception','2025-11-12 11:42:44','darshan','2025-11-12 12:42:41'),(3090,0,0,'O','N','2526',510,0,'2025-11-12','0000-00-00',535,0,510,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','12:57:53','','','N','Y',NULL,'O','O','Z23','','0000-00-00 00:00:00','2','11:48:04',0,'','reception','2025-11-12 11:48:04','darshan','2025-11-12 12:57:53'),(3091,0,0,'O','N','2526',2312,0,'2025-11-12','2026-02-11',2369,0,2312,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','12:02:30','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','6','11:50:51',0,'','manshi','2025-11-12 11:50:51','drsagar','2025-11-12 12:02:30'),(3092,0,0,'O','N','2526',1556,0,'2025-11-12','0000-00-00',1599,0,1556,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','13:15:14','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','4','11:51:16',0,'','drashti','2025-11-12 11:51:16','drarchit','2025-11-12 13:15:14'),(3093,0,0,'O','N','2526',2313,0,'2025-11-12','2026-02-11',2370,0,2313,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:55:00','0000-00-00','','','','N','11:55:00','12:23:42','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','11:55:22',0,'','reception','2025-11-12 11:55:22','darshan','2025-11-12 12:23:42'),(3094,0,0,'O','N','2526',2314,0,'2025-11-12','2026-02-11',2371,0,2314,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:57:00','0000-00-00','','','','N','11:57:00','12:48:58','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','11:57:21',0,'','reception','2025-11-12 11:57:21','darshan','2025-11-12 12:48:58'),(3095,0,0,'O','N','2526',2315,0,'2025-11-12','2026-02-11',2372,0,2315,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','12:09:09','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','6','12:00:57',0,'','manshi','2025-11-12 12:00:57','drsagar','2025-11-12 12:09:09'),(3096,0,0,'O','N','2526',2316,0,'2025-11-12','2026-02-11',2373,0,2316,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:01:00','0000-00-00','','','','N','12:01:00','12:33:49','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','12:01:19',0,'','reception','2025-11-12 12:01:19','darshan','2025-11-12 12:33:49'),(3097,0,0,'O','N','2526',240,0,'2025-11-12','0000-00-00',255,0,240,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:04:00','0000-00-00','','','','N','12:04:00','13:26:22','','','N','Y',NULL,'O','O','I04','','0000-00-00 00:00:00','4','12:04:57',0,'','drashti','2025-11-12 12:04:57','drarchit','2025-11-12 13:26:22'),(3098,0,0,'O','N','2526',2317,0,'2025-11-12','2026-02-11',2374,0,2317,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:05:00','0000-00-00','','','','N','12:05:00','13:13:46','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','2','12:05:30',0,'','reception','2025-11-12 12:05:30','darshan','2025-11-12 13:13:46'),(3099,0,0,'O','N','2526',2318,0,'2025-11-12','2026-02-11',2375,0,2318,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:10:00','0000-00-00','','','','N','12:10:00','12:23:30','','','N','Y',NULL,'O','N','I05','','0000-00-00 00:00:00','4','12:10:26',0,'','drashti','2025-11-12 12:10:26','drarchit','2025-11-12 12:23:30'),(3100,0,0,'O','N','2526',2319,0,'2025-11-12','2026-02-11',2376,0,2319,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:24:00','0000-00-00','','','','N','12:24:00','12:57:45','','','N','Y',NULL,'O','N','I06','','0000-00-00 00:00:00','4','12:24:31',0,'','drashti','2025-11-12 12:24:31','drarchit','2025-11-12 12:57:45'),(3101,0,0,'O','N','2526',2072,0,'2025-11-12','0000-00-00',2126,0,2072,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:25:00','0000-00-00','','','','N','12:25:00','12:52:03','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','4','12:25:30',0,'','janvi','2025-11-12 12:25:29','drarchit','2025-11-12 12:52:03'),(3102,0,0,'O','N','2526',2320,0,'2025-11-12','2026-02-11',2377,0,2320,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:26:00','0000-00-00','','','','N','12:26:00','12:40:35','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','4','12:26:42',0,'','reception','2025-11-12 12:26:42','drarchit','2025-11-12 12:40:35'),(3103,0,0,'O','N','2526',562,0,'2025-11-12','0000-00-00',589,0,562,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','13:22:23','','','N','Y',NULL,'O','O','Z29','','0000-00-00 00:00:00','2','12:28:31',0,'','reception','2025-11-12 12:28:31','darshan','2025-11-12 13:22:23'),(3104,0,0,'O','N','2526',2321,0,'2025-11-12','2026-02-11',2378,0,2321,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','0000-00-00','','','','N','12:30:00','12:58:40','','','N','Y',NULL,'O','N','J04','','0000-00-00 00:00:00','4','12:30:27',0,'','drashti','2025-11-12 12:30:27','drarchit','2025-11-12 12:58:40'),(3105,0,0,'O','N','2526',199,0,'2025-11-12','0000-00-00',212,0,199,'N','','N','','','FC','','N','D27','','N',19,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:39:00','0000-00-00','','','','N','12:39:00','13:04:31','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','4','12:39:57',0,'','janvi','2025-11-12 12:39:57','drarchit','2025-11-12 13:04:31'),(3106,0,0,'O','N','2526',2322,0,'2025-11-12','2026-02-11',2379,0,2322,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:42:00','0000-00-00','','','','N','12:42:00','12:48:52','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','3','12:42:43',0,'','drashti','2025-11-12 12:42:43','drpratapsinh','2025-11-12 12:48:52'),(3107,0,0,'O','N','2526',2323,0,'2025-11-12','2026-02-11',2380,0,2323,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:43:00','0000-00-00','','','','N','12:43:00','00:00:00','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','3','12:43:13',0,'','janvi','2025-11-12 12:43:13','','0000-00-00 00:00:00'),(3108,0,0,'O','N','2526',2324,0,'2025-11-12','2026-02-11',2381,0,2324,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:49:00','0000-00-00','','','','N','12:49:00','13:25:44','','','N','Y',NULL,'O','N','J05','','0000-00-00 00:00:00','4','12:49:03',0,'','drashti','2025-11-12 12:49:03','drarchit','2025-11-12 13:25:44'),(3109,0,0,'O','N','2526',2325,0,'2025-11-12','2026-02-11',2382,0,2325,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:53:00','0000-00-00','','','','N','12:53:00','13:48:18','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','4','12:53:16',0,'','drashti','2025-11-12 12:53:16','drarchit','2025-11-12 13:48:18'),(3110,0,0,'O','N','2526',2326,0,'2025-11-12','2026-02-11',2383,0,2326,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:56:00','0000-00-00','','','','N','12:56:00','13:18:00','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','4','12:56:48',0,'','drashti','2025-11-12 12:56:48','drarchit','2025-11-12 13:18:00'),(3111,0,0,'O','N','2526',2327,0,'2025-11-12','2026-02-11',1795,0,2327,'Y','Accident','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:10:00','0000-00-00','','','','N','13:10:00','00:00:00','','','N','N',NULL,'O','N','Z35','','0000-00-00 00:00:00','7','13:10:27',0,'','manshi','2025-11-12 13:10:26','','0000-00-00 00:00:00'),(3112,0,0,'O','N','2526',2328,0,'2025-11-12','2026-02-11',255,0,2328,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:18:00','0000-00-00','','','','N','13:18:00','18:01:59','','','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','6','13:18:06',0,'','manshi','2025-11-12 13:18:06','drsagar','2025-11-12 18:01:59'),(3113,0,0,'I','N','2526',0,150,'2025-11-12','2026-02-11',2384,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','2025-11-15','','3','mo','N','13:00:00','11:20:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-12 13:44:51','mo','2025-11-15 12:58:21'),(3114,0,0,'I','N','2526',2310,151,'2025-11-12','2026-02-11',2367,0,2310,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:30:00','2025-11-13','','1','mo','N','14:30:00','15:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-12 15:10:16','riya','2025-11-13 12:33:55'),(3115,0,0,'O','N','2526',2329,0,'2025-11-12','2026-02-11',2385,0,2329,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:01:00','0000-00-00','','','','N','16:01:00','20:30:08','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','3','16:01:17',0,'','reception','2025-11-12 16:01:17','drpratapsinh','2025-11-12 20:30:08'),(3116,0,0,'O','N','2526',1011,0,'2025-11-12','0000-00-00',1044,0,1011,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:12:00','0000-00-00','','','','N','16:12:00','17:06:39','','','N','Y',NULL,'O','O','Z37','','0000-00-00 00:00:00','2','16:12:17',0,'','reception','2025-11-12 16:12:17','darshan','2025-11-12 17:06:39'),(3117,0,0,'O','N','2526',2330,0,'2025-11-12','2026-02-11',2386,0,2330,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:34:00','0000-00-00','','','','N','16:34:00','17:07:16','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','2','16:34:37',0,'','reception','2025-11-12 16:34:36','darshan','2025-11-12 17:07:16'),(3118,0,0,'O','N','2526',1463,0,'2025-11-12','0000-00-00',1504,0,1463,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:47:00','0000-00-00','','','','N','16:47:00','17:22:24','','','N','Y',NULL,'O','O','Z39','','0000-00-00 00:00:00','2','16:47:31',0,'','drashti','2025-11-12 16:47:31','darshan','2025-11-12 17:22:24'),(3119,0,0,'O','N','2526',750,0,'2025-11-12','0000-00-00',782,0,750,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:48:00','0000-00-00','','','','N','16:48:00','17:28:19','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','16:48:42',0,'','reception','2025-11-12 16:48:42','darshan','2025-11-12 17:28:19'),(3120,0,0,'O','N','2526',745,0,'2025-11-12','0000-00-00',776,0,745,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:49:00','0000-00-00','','','','N','16:49:00','17:22:59','','','N','Y',NULL,'O','O','Z40','','0000-00-00 00:00:00','2','16:49:57',0,'','reception','2025-11-12 16:49:57','darshan','2025-11-12 17:22:59'),(3121,0,0,'O','N','2526',2331,0,'2025-11-12','2026-02-11',2387,0,2331,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:51:00','0000-00-00','','','','N','16:51:00','17:24:07','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','2','16:52:00',0,'','reception','2025-11-12 16:52:00','darshan','2025-11-12 17:24:07'),(3122,0,0,'O','N','2526',2332,0,'2025-11-12','2026-02-11',2388,0,2332,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:59:00','0000-00-00','','','','N','16:59:00','20:02:58','','N','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','4','18:24:18',0,'','reception','2025-11-12 16:59:21','drarchit','2025-11-12 20:02:58'),(3123,0,0,'O','N','2526',1089,0,'2025-11-12','0000-00-00',1128,0,1089,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:05:00','0000-00-00','','','','N','17:05:00','17:36:30','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','17:05:41',0,'','reception','2025-11-12 17:05:41','darshan','2025-11-12 17:36:30'),(3124,0,0,'O','N','2526',2333,0,'2025-11-12','2026-02-11',2389,0,2333,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:06:00','0000-00-00','','','','N','17:06:00','18:51:30','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','3','17:06:36',0,'','drashti','2025-11-12 17:06:36','drpratapsinh','2025-11-12 18:51:30'),(3125,0,0,'O','N','2526',2334,0,'2025-11-12','2026-02-11',2390,0,2334,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:08:00','0000-00-00','','','','N','17:08:00','17:30:55','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:08:06',0,'','reception','2025-11-12 17:08:06','darshan','2025-11-12 17:30:55'),(3126,0,0,'O','N','2526',2335,0,'2025-11-12','2026-02-11',2391,0,2335,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:12:00','0000-00-00','','','','N','17:12:00','17:39:54','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:12:05',0,'','reception','2025-11-12 17:12:05','darshan','2025-11-12 17:39:54'),(3127,0,0,'O','N','2526',1467,0,'2025-11-12','0000-00-00',1508,0,1467,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:16:00','0000-00-00','','','','N','17:16:00','18:08:12','','','N','Y',NULL,'O','O','Z44','','0000-00-00 00:00:00','2','17:16:24',0,'','reception','2025-11-12 17:16:24','darshan','2025-11-12 18:08:12'),(3128,0,0,'O','N','2526',2336,0,'2025-11-12','2026-02-11',2392,0,2336,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:18:00','0000-00-00','','','','N','17:18:00','19:14:57','','N','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:18:49',0,'','reception','2025-11-12 17:18:49','darshan','2025-11-12 19:14:57'),(3129,0,0,'O','N','2526',2337,0,'2025-11-12','2026-02-11',2393,0,2337,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','17:53:51','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','2','17:20:32',0,'','reception','2025-11-12 17:20:32','darshan','2025-11-12 17:53:51'),(3130,0,0,'O','N','2526',2338,0,'2025-11-12','2026-02-11',2394,0,2338,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:23:00','0000-00-00','','','','N','17:23:00','19:40:47','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','4','18:24:18',0,'','drashti','2025-11-12 17:23:39','drarchit','2025-11-12 19:40:47'),(3131,0,0,'O','N','2526',2339,0,'2025-11-12','2026-02-11',2395,0,2339,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:26:00','0000-00-00','','','','N','17:26:00','18:58:49','','N','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','2','17:26:06',0,'','reception','2025-11-12 17:26:06','darshan','2025-11-12 18:58:49'),(3132,0,0,'O','N','2526',2340,0,'2025-11-12','2026-02-11',2396,0,2340,'N','','N','','','NV','','N','D06','','N',167,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','19:35:25','','N','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:27:18',0,'','drashti','2025-11-12 17:27:18','darshan','2025-11-12 19:35:25'),(3133,0,0,'O','N','2526',2341,0,'2025-11-12','2026-02-11',2397,0,2341,'N','','N','','','','','N','D02','','N',118,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','18:55:53','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','3','17:27:41',0,'','janvi','2025-11-12 17:27:41','drpratapsinh','2025-11-12 18:55:53'),(3134,0,0,'O','N','2526',2342,0,'2025-11-12','2026-02-11',2398,0,2342,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:29:00','0000-00-00','','','','N','17:29:00','18:30:52','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','2','17:29:07',0,'','reception','2025-11-12 17:29:07','darshan','2025-11-12 18:30:52'),(3135,0,0,'O','N','2526',2343,0,'2025-11-12','2026-02-11',2399,0,2343,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:31:00','0000-00-00','','','','N','17:31:00','18:06:05','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:31:45',0,'','reception','2025-11-12 17:31:45','darshan','2025-11-12 18:06:05'),(3136,0,0,'O','N','2526',1953,0,'2025-11-12','0000-00-00',2001,0,1953,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:33:00','0000-00-00','','','','N','17:33:00','19:15:51','','','N','Y',NULL,'O','O','Z49','','0000-00-00 00:00:00','3','17:33:25',0,'','drashti','2025-11-12 17:33:25','drpratapsinh','2025-11-12 19:15:51'),(3137,0,0,'O','N','2526',2344,0,'2025-11-12','2026-02-11',2400,0,2344,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:33:00','0000-00-00','','','','N','17:33:00','18:25:09','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','17:33:59',0,'','reception','2025-11-12 17:33:59','darshan','2025-11-12 18:25:09'),(3138,0,0,'O','N','2526',2051,0,'2025-11-12','0000-00-00',2106,0,2051,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:35:00','0000-00-00','','','','N','17:35:00','19:15:37','','','N','Y',NULL,'O','O','Z50','','0000-00-00 00:00:00','3','17:35:24',0,'','janvi','2025-11-12 17:35:24','drpratapsinh','2025-11-12 19:15:37'),(3139,0,0,'O','N','2526',2345,0,'2025-11-12','2026-02-11',2401,0,2345,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:37:00','0000-00-00','','','','N','17:37:00','18:01:56','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','2','17:37:49',0,'','reception','2025-11-12 17:37:49','darshan','2025-11-12 18:01:56'),(3140,0,0,'O','N','2526',2346,0,'2025-11-12','2026-02-11',2402,0,2346,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:38:00','0000-00-00','','','','N','17:38:00','18:43:19','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','4','18:24:18',0,'','drashti','2025-11-12 17:38:10','drarchit','2025-11-12 18:43:19'),(3141,0,0,'O','N','2526',2005,0,'2025-11-12','0000-00-00',2056,0,2005,'N','','N','','','DRESSING','','N','D02','','N',146,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:39:00','0000-00-00','','','','N','17:39:00','18:59:44','','','N','Y',NULL,'O','O','Z53','','0000-00-00 00:00:00','3','17:39:27',0,'','drashti','2025-11-12 17:39:27','drpratapsinh','2025-11-12 18:59:44'),(3142,0,0,'O','N','2526',2095,0,'2025-11-12','0000-00-00',1245,0,2095,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','19:08:05','','','N','Y',NULL,'O','O','Z54','','0000-00-00 00:00:00','3','17:40:15',0,'','janvi','2025-11-12 17:40:15','drpratapsinh','2025-11-12 19:08:05'),(3143,0,0,'O','N','2526',2347,0,'2025-11-12','2026-02-11',2403,0,2347,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','19:04:55','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','4','18:24:18',0,'','drashti','2025-11-12 17:42:15','drarchit','2025-11-12 19:04:55'),(3144,0,0,'O','N','2526',2348,0,'2025-11-12','2026-02-11',2404,0,2348,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','18:39:02','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','2','17:46:58',0,'','reception','2025-11-12 17:46:58','darshan','2025-11-12 18:39:02'),(3145,0,0,'O','N','2526',2349,0,'2025-11-12','2026-02-11',2405,0,2349,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','19:15:11','','N','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','4','18:24:18',0,'','janvi','2025-11-12 17:49:11','drarchit','2025-11-12 19:15:11'),(3146,0,0,'O','N','2526',618,0,'2025-11-12','0000-00-00',648,0,618,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','20:14:18','','N','N','Y',NULL,'O','O','L10','','0000-00-00 00:00:00','4','18:24:18',0,'','reception','2025-11-12 17:51:31','drarchit','2025-11-12 20:14:18'),(3147,0,0,'O','N','2526',2350,0,'2025-11-12','2026-02-11',2406,0,2350,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','18:27:43','','N','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','2','17:52:44',0,'','reception','2025-11-12 17:52:44','darshan','2025-11-13 18:27:43'),(3148,0,0,'O','N','2526',592,0,'2025-11-12','0000-00-00',622,0,592,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:53:00','0000-00-00','','','','N','17:53:00','19:13:01','','','N','Y',NULL,'O','O','Z58','','0000-00-00 00:00:00','2','17:53:31',0,'','drashti','2025-11-12 17:53:31','darshan','2025-11-12 19:13:01'),(3149,0,0,'O','N','2526',2351,0,'2025-11-12','2026-02-11',2407,0,2351,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:56:00','0000-00-00','','','','N','17:56:00','00:00:00','','','N','N',NULL,'O','N','Z59','','0000-00-00 00:00:00','7','17:56:02',0,'','manshi','2025-11-12 17:56:02','','0000-00-00 00:00:00'),(3150,0,0,'O','N','2526',2352,0,'2025-11-12','2026-02-11',2408,0,2352,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','19:30:43','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','2','17:57:13',0,'','reception','2025-11-12 17:57:13','darshan','2025-11-12 19:30:43'),(3151,0,0,'O','N','2526',2353,0,'2025-11-12','2026-02-11',1729,0,2353,'Y','Poison','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','19:19:34','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','4','18:24:18',0,'','drashti','2025-11-12 17:59:46','drarchit','2025-11-12 19:19:34'),(3152,0,0,'O','N','2526',1060,0,'2025-11-12','0000-00-00',1094,0,1060,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','18:02:11','','','N','Y',NULL,'O','O','Z62','','0000-00-00 00:00:00','6','17:59:54',0,'','manshi','2025-11-12 17:59:54','drsagar','2025-11-12 18:02:11'),(3153,0,0,'O','N','2526',1759,0,'2025-11-12','0000-00-00',1805,0,1759,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','19:08:41','','','N','Y',NULL,'O','O','L12','','0000-00-00 00:00:00','2','18:04:53',0,'','reception','2025-11-12 18:04:53','darshan','2025-11-12 19:08:41'),(3154,0,0,'O','N','2526',2354,0,'2025-11-12','2026-02-11',2409,0,2354,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:06:00','0000-00-00','','','','N','18:06:00','00:00:00','','','N','N',NULL,'O','N','Z63','','0000-00-00 00:00:00','3','18:07:59',0,'','janvi','2025-11-12 18:07:01','janvi','2025-11-12 18:07:59'),(3155,0,0,'O','N','2526',943,0,'2025-11-12','0000-00-00',974,0,943,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:08:00','0000-00-00','','','','N','18:08:00','12:46:25','','','N','Y',NULL,'O','O','L13','','0000-00-00 00:00:00','2','18:08:23',0,'','reception','2025-11-12 18:08:23','darshan','2025-11-13 12:46:25'),(3156,0,0,'O','N','2526',2355,0,'2025-11-12','2026-02-11',2410,0,2355,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:08:00','0000-00-00','','','','N','18:08:00','12:37:13','','N','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','4','18:24:18',0,'','drashti','2025-11-12 18:08:55','drarchit','2025-11-13 12:37:13'),(3157,0,0,'O','N','2526',2356,0,'2025-11-12','2026-02-11',2411,0,2356,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','19:09:57','','N','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','4','18:24:18',0,'','drashti','2025-11-12 18:14:13','drarchit','2025-11-12 19:09:57'),(3158,0,0,'O','N','2526',221,0,'2025-11-12','0000-00-00',234,0,221,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:17:00','0000-00-00','','','','N','18:17:00','19:15:23','','','N','Y',NULL,'O','O','Z65','','0000-00-00 00:00:00','3','18:17:23',0,'','janvi','2025-11-12 18:17:23','drpratapsinh','2025-11-12 19:15:23'),(3159,0,0,'O','N','2526',2357,0,'2025-11-12','2026-02-11',2412,0,2357,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:17:00','0000-00-00','','','','N','18:17:00','11:26:59','','N','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','18:24:18',0,'','reception','2025-11-12 18:17:27','drarchit','2025-11-13 11:26:59'),(3160,0,0,'O','N','2526',1976,0,'2025-11-12','0000-00-00',2024,0,1976,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','19:15:04','','','N','Y',NULL,'O','O','Z66','','0000-00-00 00:00:00','3','18:18:58',0,'','drashti','2025-11-12 18:18:58','drpratapsinh','2025-11-12 19:15:04'),(3161,0,0,'O','N','2526',2358,0,'2025-11-12','2026-02-11',2413,0,2358,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','19:27:45','','','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','4','18:24:18',0,'','drashti','2025-11-12 18:23:09','drarchit','2025-11-12 19:27:45'),(3162,0,0,'O','N','2526',2359,0,'2025-11-12','2026-02-11',2414,0,2359,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:27:00','0000-00-00','','','','N','18:27:00','19:32:27','','N','N','Y',NULL,'O','N','L17','','0000-00-00 00:00:00','4','18:27:41',0,'','drashti','2025-11-12 18:27:41','drarchit','2025-11-13 19:32:27'),(3163,0,0,'O','N','2526',2118,0,'2025-11-12','0000-00-00',1763,0,2118,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','19:14:50','','','N','Y',NULL,'O','O','Z67','','0000-00-00 00:00:00','3','18:28:26',0,'','janvi','2025-11-12 18:28:26','drpratapsinh','2025-11-12 19:14:50'),(3164,0,0,'O','N','2526',2022,0,'2025-11-12','0000-00-00',2075,0,2022,'N','','N','','','RBS','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:38:00','0000-00-00','','','','N','18:38:00','00:00:00','','','N','N',NULL,'O','O','Z68','','0000-00-00 00:00:00','5','18:38:22',0,'','drashti','2025-11-12 18:38:22','','0000-00-00 00:00:00'),(3165,0,0,'O','N','2526',2360,0,'2025-11-12','2026-02-11',2415,0,2360,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:38:00','0000-00-00','','','','N','18:38:00','20:31:46','','','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','3','18:38:59',0,'','janvi','2025-11-12 18:38:59','drpratapsinh','2025-11-12 20:31:46'),(3166,0,0,'O','N','2526',2361,0,'2025-11-12','2026-02-11',2416,0,2361,'N','','N','','','NE','','N','D06','','N',33,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','20:07:48','','N','N','Y',NULL,'O','N','Z70','','0000-00-00 00:00:00','2','18:46:05',0,'','reception','2025-11-12 18:46:05','darshan','2025-11-12 20:07:48'),(3167,0,0,'O','N','2526',1585,0,'2025-11-12','0000-00-00',1629,0,1585,'N','','N','','','FC              ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','20:00:20','','','N','Y',NULL,'O','O','Z71','','0000-00-00 00:00:00','4','18:46:52',0,'','drashti','2025-11-12 18:46:52','drarchit','2025-11-12 20:00:20'),(3168,0,0,'O','N','2526',2362,0,'2025-11-12','2026-02-11',2417,0,2362,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:47:00','0000-00-00','','','','N','18:47:00','19:59:56','','','N','Y',NULL,'O','N','Z72','','0000-00-00 00:00:00','2','18:47:43',0,'','reception','2025-11-12 18:47:43','darshan','2025-11-12 19:59:56'),(3169,0,0,'O','N','2526',2363,0,'2025-11-12','2026-02-11',2418,0,2363,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','20:17:57','','','N','Y',NULL,'O','N','Z73','','0000-00-00 00:00:00','4','18:49:25',0,'','drashti','2025-11-12 18:49:25','drarchit','2025-11-12 20:17:57'),(3170,0,0,'O','N','2526',494,0,'2025-11-12','0000-00-00',519,0,494,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:53:00','0000-00-00','','','','N','18:53:00','19:53:10','','','N','Y',NULL,'O','O','L18','','0000-00-00 00:00:00','4','18:53:40',0,'','drashti','2025-11-12 18:53:40','drarchit','2025-11-12 19:53:10'),(3171,0,0,'O','N','2526',2364,0,'2025-11-12','2026-02-11',2419,0,2364,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','00:00:00','','Y','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','4','18:54:36',0,'','reception','2025-11-12 18:54:35','drarchit','2025-11-12 20:20:18'),(3172,0,0,'O','N','2526',2365,0,'2025-11-12','2026-02-11',2420,0,2365,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','00:00:00','','Y','N','Y',NULL,'O','N','Z75','','0000-00-00 00:00:00','4','19:04:55',0,'','drashti','2025-11-12 18:56:45','drarchit','2025-11-12 20:24:31'),(3173,0,0,'O','N','2526',2366,0,'2025-11-12','2026-02-11',2421,0,2366,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:58:00','0000-00-00','','','','N','18:58:00','00:00:00','','Y','N','Y',NULL,'O','N','Z76','','0000-00-00 00:00:00','4','19:04:55',0,'','reception','2025-11-12 18:58:33','drarchit','2025-11-12 20:31:11'),(3174,0,0,'O','N','2526',2367,0,'2025-11-12','2026-02-11',2422,0,2367,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:00:00','0000-00-00','','','','N','19:00:00','19:56:40','','','N','Y',NULL,'O','N','Z77','','0000-00-00 00:00:00','6','19:00:05',0,'','manshi','2025-11-12 19:00:05','drsagar','2025-11-12 19:56:40'),(3175,0,0,'O','N','2526',2368,0,'2025-11-12','2026-02-11',2423,0,2368,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:04:00','0000-00-00','','','','N','19:04:00','20:38:38','','','N','Y',NULL,'O','N','Z78','','0000-00-00 00:00:00','4','19:04:55',0,'','drashti','2025-11-12 19:04:06','drarchit','2025-11-12 20:38:38'),(3176,0,0,'I','N','2526',0,152,'2025-11-12','2026-02-11',2424,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:00:00','2025-11-15','','7','mo','N','19:00:00','09:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-12 19:12:44','riya','2025-11-15 09:21:34'),(3177,0,0,'O','N','2526',2369,0,'2025-11-12','2026-02-11',2425,0,2369,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:12:00','0000-00-00','','','','N','19:12:00','20:07:25','','','N','Y',NULL,'O','N','L19','','0000-00-00 00:00:00','4','19:19:34',0,'','janvi','2025-11-12 19:13:00','drarchit','2025-11-12 20:07:25'),(3178,0,0,'O','N','2526',2370,0,'2025-11-12','2026-02-11',2426,0,2370,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:13:00','0000-00-00','','','','N','19:13:00','20:45:10','','','N','Y',NULL,'O','N','Z79','','0000-00-00 00:00:00','4','19:19:34',0,'','drashti','2025-11-12 19:13:12','drarchit','2025-11-12 20:45:09'),(3179,0,0,'O','N','2526',2371,0,'2025-11-12','2026-02-11',2427,0,2371,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:13:00','0000-00-00','','','','N','19:13:00','20:10:41','','','N','Y',NULL,'O','N','L20','','0000-00-00 00:00:00','4','19:19:34',0,'','janvi','2025-11-12 19:14:04','drarchit','2025-11-12 20:10:41'),(3180,0,0,'O','N','2526',2372,0,'2025-11-12','2026-02-11',2428,0,2372,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:16:00','0000-00-00','','','','N','19:16:00','00:00:00','','','N','Y',NULL,'O','N','Z80','','0000-00-00 00:00:00','4','19:19:34',0,'','drashti','2025-11-12 19:16:49','','0000-00-00 00:00:00'),(3181,0,0,'O','N','2526',2373,0,'2025-11-12','2026-02-11',2429,0,2373,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:27:00','0000-00-00','','','','N','19:27:00','20:10:53','','','N','Y',NULL,'O','N','Z81','','0000-00-00 00:00:00','2','19:27:07',0,'','reception','2025-11-12 19:27:07','darshan','2025-11-12 20:10:53'),(3182,0,0,'O','N','2526',2374,0,'2025-11-12','2026-02-11',2430,0,2374,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:28:00','0000-00-00','','','','N','19:28:00','20:45:59','','N','N','Y',NULL,'O','N','Z82','','0000-00-00 00:00:00','2','19:28:36',0,'','reception','2025-11-12 19:28:36','darshan','2025-11-12 20:45:59'),(3183,0,0,'O','N','2526',2375,0,'2025-11-12','2026-02-11',2431,0,2375,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:36:00','0000-00-00','','','','N','19:36:00','00:00:00','','Y','N','Y',NULL,'O','N','L21','','0000-00-00 00:00:00','4','20:00:20',0,'','drashti','2025-11-12 19:36:24','drarchit','2025-11-12 20:28:43'),(3184,0,0,'O','N','2526',2376,0,'2025-11-12','2026-02-11',2432,0,2376,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:38:00','0000-00-00','','','','N','19:38:00','20:11:26','','','N','Y',NULL,'O','N','Z83','','0000-00-00 00:00:00','6','19:38:17',0,'','manshi','2025-11-12 19:38:17','drsagar','2025-11-12 20:11:26'),(3185,0,0,'O','N','2526',1775,0,'2025-11-12','0000-00-00',1821,0,1775,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:47:00','0000-00-00','','','','N','19:47:00','20:31:33','','','N','Y',NULL,'O','O','Z84','','0000-00-00 00:00:00','3','19:48:01',0,'','janvi','2025-11-12 19:48:01','drpratapsinh','2025-11-12 20:31:33'),(3186,0,0,'O','N','2526',2377,0,'2025-11-12','2026-02-11',2433,0,2377,'N','','N','','','NE','','N','D06','','N',168,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:50:00','0000-00-00','','','','N','19:50:00','20:24:23','','','N','Y',NULL,'O','N','Z85','','0000-00-00 00:00:00','2','19:50:59',0,'','reception','2025-11-12 19:50:59','darshan','2025-11-12 20:24:23'),(3187,0,0,'O','N','2526',2378,0,'2025-11-12','2026-02-11',2434,0,2378,'N','','N','','','NC','','N','D02','','N',169,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:58:00','0000-00-00','','','','N','19:58:00','20:31:03','','','N','Y',NULL,'O','N','Z86','','0000-00-00 00:00:00','3','19:58:45',0,'','drashti','2025-11-12 19:58:45','drpratapsinh','2025-11-12 20:31:03'),(3188,0,0,'O','N','2526',1491,0,'2025-11-12','0000-00-00',1532,0,1491,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:00:00','0000-00-00','','','','N','20:00:00','20:51:55','','','N','Y',NULL,'O','O','L22','','0000-00-00 00:00:00','4','20:00:20',0,'','drashti','2025-11-12 20:00:12','drarchit','2025-11-12 20:51:55'),(3189,0,0,'O','N','2526',1978,0,'2025-11-12','0000-00-00',2026,0,1978,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:02:00','0000-00-00','','','','N','20:02:00','20:31:15','','','N','Y',NULL,'O','O','Z87','','0000-00-00 00:00:00','3','20:03:05',0,'','janvi','2025-11-12 20:03:04','drpratapsinh','2025-11-12 20:31:15'),(3190,0,0,'I','N','2526',2329,153,'2025-11-12','2026-02-11',2385,0,2329,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:15:00','2025-11-15','','1','mo','N','20:15:00','11:10:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-12 20:29:31','mo','2025-11-15 12:56:45'),(3191,0,0,'O','N','2526',2379,0,'2025-11-13','2026-02-12',2435,0,2379,'N','','N','','','ECG','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:59:00','0000-00-00','','','','N','08:59:00','10:59:31','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','08:59:54',0,'','reception','2025-11-13 08:59:54','drarchit','2025-11-13 10:59:31'),(3192,0,0,'O','N','2526',2380,0,'2025-11-13','2026-02-12',2436,0,2380,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:10:00','0000-00-00','','','','N','09:10:00','11:57:50','','N','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','09:10:54',0,'','janvi','2025-11-13 09:10:54','drarchit','2025-11-13 11:57:50'),(3193,0,0,'O','N','2526',2381,0,'2025-11-13','2026-02-12',2437,0,2381,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:12:00','0000-00-00','','','','N','09:12:00','11:18:56','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','4','09:12:09',0,'','janvi','2025-11-13 09:12:09','drarchit','2025-11-13 11:18:56'),(3194,0,0,'I','N','2526',0,154,'2025-11-13','2026-02-12',2438,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','Y','REQUEST BY RIYABEN','P','','','','','','0000-00-00','','','',1,'N','N','N','03:00:00','2025-11-13','','','','N','03:00:00','10:33:50','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-13 09:33:24','thims','2025-11-13 10:33:50'),(3195,0,0,'O','N','2526',2382,0,'2025-11-13','2026-02-12',1410,0,2382,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:35:00','0000-00-00','','','','N','09:35:00','11:06:31','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','4','09:35:11',0,'','janvi','2025-11-13 09:35:11','drarchit','2025-11-13 11:06:31'),(3196,0,0,'I','N','2526',0,155,'2025-11-13','2026-02-12',2439,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','03:00:00','2025-11-13','','7','mo','N','03:00:00','13:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-13 09:43:44','riya','2025-11-13 13:18:52'),(3197,0,0,'O','N','2526',1767,0,'2025-11-13','0000-00-00',1813,0,1767,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','0000-00-00','','','','N','10:00:00','10:51:17','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','10:00:25',0,'','reception','2025-11-13 10:00:25','darshan','2025-11-13 10:51:17'),(3198,0,0,'O','N','2526',2383,0,'2025-11-13','2026-02-12',2440,0,2383,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:07:00','0000-00-00','','','','N','10:07:00','14:04:45','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','2','10:07:42',0,'','reception','2025-11-13 10:07:42','darshan','2025-11-13 14:04:45'),(3199,0,0,'O','N','2526',813,0,'2025-11-13','0000-00-00',844,0,813,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:18:00','0000-00-00','','','','N','10:18:00','10:55:16','','','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','2','10:18:03',0,'','reception','2025-11-13 10:18:03','darshan','2025-11-13 10:55:16'),(3200,0,0,'O','N','2526',2384,0,'2025-11-13','2026-02-12',2441,0,2384,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:24:00','0000-00-00','','','','N','10:24:00','11:15:27','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','2','10:24:18',0,'','reception','2025-11-13 10:24:18','darshan','2025-11-13 11:15:27'),(3201,0,0,'O','N','2526',2385,0,'2025-11-13','2026-02-12',2442,0,2385,'N','','N','','','NC','','N','D27','','N',99,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:25:00','0000-00-00','','','','N','10:25:00','13:49:36','','N','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','4','10:25:52',0,'','priyanshi','2025-11-13 10:25:52','drarchit','2025-11-13 13:49:36'),(3202,0,0,'O','N','2526',2386,0,'2025-11-13','2026-02-12',2443,0,2386,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:25:00','0000-00-00','','','','N','10:25:00','11:01:32','','','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:25:57',0,'','reception','2025-11-13 10:25:57','darshan','2025-11-13 11:01:32'),(3203,0,0,'O','N','2526',2387,0,'2025-11-13','2026-02-12',2444,0,2387,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','11:46:59','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','10:28:34',0,'','reception','2025-11-13 10:28:34','darshan','2025-11-13 11:46:59'),(3204,0,0,'O','N','2526',1053,0,'2025-11-13','0000-00-00',1086,0,1053,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','11:10:44','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:33:53',0,'','reception','2025-11-13 10:33:53','darshan','2025-11-13 11:10:44'),(3205,0,0,'O','N','2526',1758,0,'2025-11-13','0000-00-00',1804,0,1758,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','11:55:20','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','2','10:37:26',0,'','reception','2025-11-13 10:37:26','darshan','2025-11-13 11:55:20'),(3206,0,0,'O','N','2526',2388,0,'2025-11-13','2026-02-12',2445,0,2388,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','19:47:29','','N','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','4','10:38:13',0,'','priyanshi','2025-11-13 10:38:13','drarchit','2025-11-13 19:47:29'),(3207,0,0,'O','N','2526',1130,0,'2025-11-13','0000-00-00',1170,0,1130,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:42:00','0000-00-00','','','','N','10:42:00','11:33:23','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','2','10:42:08',0,'','reception','2025-11-13 10:42:07','darshan','2025-11-13 11:33:23'),(3208,0,0,'O','N','2526',2389,0,'2025-11-13','2026-02-12',2446,0,2389,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','11:59:46','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:46:07',0,'','reception','2025-11-13 10:46:07','darshan','2025-11-13 11:59:46'),(3209,0,0,'O','N','2526',2390,0,'2025-11-13','2026-02-12',2447,0,2390,'N','','N','','','NV','','N','D06','','N',170,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','13:27:29','','N','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','10:48:22',0,'','reception','2025-11-13 10:48:22','darshan','2025-11-13 13:27:29'),(3210,0,0,'O','N','2526',2391,0,'2025-11-13','2026-02-12',2448,0,2391,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','11:01:32','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','3','10:54:12',0,'','priyanshi','2025-11-13 10:54:12','drpratapsinh','2025-11-13 11:01:32'),(3211,0,0,'O','N','2526',2392,0,'2025-11-13','2026-02-12',2449,0,2392,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','12:08:41','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','2','11:01:53',0,'','reception','2025-11-13 11:01:53','darshan','2025-11-13 12:08:41'),(3212,0,0,'O','N','2526',2393,0,'2025-11-13','2026-02-12',392,0,2393,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','11:39:17','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','4','11:03:52',0,'','priyanshi','2025-11-13 11:03:52','drarchit','2025-11-13 11:39:17'),(3213,0,0,'O','N','2526',601,0,'2025-11-13','0000-00-00',631,0,601,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','11:50:10','','','N','Y',NULL,'O','O','G04','','0000-00-00 00:00:00','4','11:07:06',0,'','priyanshi','2025-11-13 11:07:06','drarchit','2025-11-13 11:50:10'),(3214,0,0,'O','N','2526',2394,0,'2025-11-13','2026-02-12',2450,0,2394,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','11:29:05','','','N','Y',NULL,'O','N','G05','','0000-00-00 00:00:00','2','11:08:12',0,'','reception','2025-11-13 11:08:12','darshan','2025-11-13 11:29:05'),(3215,0,0,'O','N','2526',2395,0,'2025-11-13','2026-02-12',2451,0,2395,'N','','N','','','','','N','D02','','N',171,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','11:29:17','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','3','11:08:51',0,'','janvi','2025-11-13 11:08:51','drpratapsinh','2025-11-13 11:29:17'),(3216,0,0,'O','N','2526',514,0,'2025-11-13','0000-00-00',539,0,514,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','11:34:01','','','N','Y',NULL,'O','O','Z14','','0000-00-00 00:00:00','6','11:09:03',0,'','manshi','2025-11-13 11:09:03','drsagar','2025-11-13 11:34:01'),(3217,0,0,'O','N','2526',2396,0,'2025-11-13','2026-02-12',2452,0,2396,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','11:45:21','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','4','11:11:49',0,'','priyanshi','2025-11-13 11:11:49','drarchit','2025-11-13 11:45:21'),(3218,0,0,'O','N','2526',1687,0,'2025-11-13','0000-00-00',1733,0,1687,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','12:20:36','','','N','Y',NULL,'O','O','I01','','0000-00-00 00:00:00','2','11:12:30',0,'','reception','2025-11-13 11:12:30','darshan','2025-11-13 12:20:36'),(3219,0,0,'O','N','2526',2397,0,'2025-11-13','2026-02-12',2453,0,2397,'N','','N','','','NC','','N','D27','','N',14,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','18:24:33','','N','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','4','11:14:03',0,'','priyanshi','2025-11-13 11:14:03','drarchit','2025-11-13 18:24:33'),(3220,0,0,'O','N','2526',2398,0,'2025-11-13','2026-02-12',2454,0,2398,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','12:26:33','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','2','11:14:11',0,'','reception','2025-11-13 11:14:11','darshan','2025-11-13 12:26:33'),(3221,0,0,'O','N','2526',2399,0,'2025-11-13','2026-02-12',2455,0,2399,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','13:43:46','','N','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','11:18:17',0,'','reception','2025-11-13 11:18:17','darshan','2025-11-13 13:43:46'),(3222,0,0,'O','N','2526',2400,0,'2025-11-13','2026-02-12',2456,0,2400,'N','','N','','','FV','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','11:55:33','','','N','Y',NULL,'O','N','G06','','0000-00-00 00:00:00','4','11:20:55',0,'','priyanshi','2025-11-13 11:20:54','drarchit','2025-11-13 11:55:33'),(3223,0,0,'O','N','2526',721,0,'2025-11-13','0000-00-00',752,0,721,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','12:06:43','','','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','4','11:25:29',0,'','shweta','2025-11-13 11:25:29','drarchit','2025-11-13 12:06:43'),(3224,0,0,'O','N','2526',2401,0,'2025-11-13','2026-02-12',2457,0,2401,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','13:58:04','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','4','11:26:53',0,'','shweta','2025-11-13 11:26:53','drarchit','2025-11-13 13:58:04'),(3225,0,0,'O','N','2526',2402,0,'2025-11-13','2026-02-12',2458,0,2402,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','12:52:30','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','4','11:27:56',0,'','janvi','2025-11-13 11:27:56','drarchit','2025-11-13 12:52:30'),(3226,0,0,'O','N','2526',2403,0,'2025-11-13','2026-02-12',2459,0,2403,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','12:56:02','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','4','11:33:31',0,'','reception','2025-11-13 11:33:31','drarchit','2025-11-13 12:56:02'),(3227,0,0,'O','N','2526',2404,0,'2025-11-13','2026-02-12',2460,0,2404,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:37:00','0000-00-00','','','','N','11:37:00','12:12:13','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','11:38:00',0,'','janvi','2025-11-13 11:38:00','drarchit','2025-11-13 12:12:13'),(3228,0,0,'O','N','2526',1747,0,'2025-11-13','0000-00-00',1456,0,1747,'N','','N','','','','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','12:19:20','','','N','Y',NULL,'O','O','H04','','0000-00-00 00:00:00','4','11:42:42',0,'','reception','2025-11-13 11:42:42','drarchit','2025-11-13 12:19:20'),(3229,0,0,'O','N','2526',2405,0,'2025-11-13','2026-02-12',2461,0,2405,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','12:03:46','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','2','11:44:21',0,'','reception','2025-11-13 11:44:21','darshan','2025-11-13 12:03:46'),(3230,0,0,'O','N','2526',1866,0,'2025-11-13','0000-00-00',1911,0,1866,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','12:38:04','','','N','Y',NULL,'O','O','H06','','0000-00-00 00:00:00','2','11:47:15',0,'','reception','2025-11-13 11:47:15','darshan','2025-11-13 12:38:04'),(3231,0,0,'O','N','2526',708,0,'2025-11-13','0000-00-00',739,0,708,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','12:49:09','','','N','Y',NULL,'O','O','I02','','0000-00-00 00:00:00','4','11:48:13',0,'','priyanshi','2025-11-13 11:48:13','drarchit','2025-11-13 12:49:09'),(3232,0,0,'O','N','2526',1343,0,'2025-11-13','0000-00-00',1383,0,1343,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','00:00:00','','','N','Y',NULL,'O','O','Z22','','0000-00-00 00:00:00','3','11:51:31',0,'','janvi','2025-11-13 11:51:31','','0000-00-00 00:00:00'),(3233,0,0,'O','N','2526',2406,0,'2025-11-13','2026-02-12',2462,0,2406,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','14:05:27','','N','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','2','11:54:24',0,'','reception','2025-11-13 11:54:24','darshan','2025-11-13 14:05:27'),(3234,0,0,'O','N','2526',349,0,'2025-11-13','0000-00-00',365,0,349,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','12:56:29','','','N','Y',NULL,'O','O','I03','','0000-00-00 00:00:00','2','12:09:29',0,'','reception','2025-11-13 12:09:29','darshan','2025-11-13 12:56:29'),(3235,0,0,'O','N','2526',2407,0,'2025-11-13','2026-02-12',2463,0,2407,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','14:17:50','','N','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','2','12:28:40',0,'','reception','2025-11-13 12:28:40','darshan','2025-11-13 14:17:50'),(3236,0,0,'O','N','2526',1363,0,'2025-11-13','0000-00-00',1403,0,1363,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:29:00','0000-00-00','','','','N','12:29:00','00:00:00','','Y','N','Y',NULL,'O','O','I05','','0000-00-00 00:00:00','4','12:29:00',0,'','priyanshi','2025-11-13 12:29:00','drarchit','2025-11-13 13:14:23'),(3237,0,0,'O','N','2526',1100,0,'2025-11-13','0000-00-00',1138,0,1100,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','0000-00-00','','','','N','12:30:00','13:44:41','','','N','Y',NULL,'O','O','J02','','0000-00-00 00:00:00','4','12:30:05',0,'','priyanshi','2025-11-13 12:30:05','drarchit','2025-11-13 13:44:41'),(3238,0,0,'O','N','2526',2408,0,'2025-11-13','2026-02-12',2464,0,2408,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:34:00','0000-00-00','','','','N','12:34:00','14:06:50','','N','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','4','12:34:01',0,'','priyanshi','2025-11-13 12:34:01','drarchit','2025-11-13 14:06:50'),(3239,0,0,'O','N','2526',2409,0,'2025-11-13','2026-02-12',2465,0,2409,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:34:00','0000-00-00','','','','N','12:34:00','13:27:33','','','N','Y',NULL,'O','N','J04','','0000-00-00 00:00:00','4','12:34:34',0,'','janvi','2025-11-13 12:34:34','drarchit','2025-11-13 13:27:33'),(3240,0,0,'O','N','2526',2410,0,'2025-11-13','2026-02-12',2466,0,2410,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:42:00','0000-00-00','','','','N','12:42:00','13:40:29','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','4','12:45:59',0,'','priyanshi','2025-11-13 12:42:52','drarchit','2025-11-13 13:40:29'),(3241,0,0,'O','N','2526',2411,0,'2025-11-13','2026-02-12',2467,0,2411,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:45:00','0000-00-00','','','','N','12:45:00','13:44:21','','','N','Y',NULL,'O','N','J05','','0000-00-00 00:00:00','4','12:45:59',0,'','janvi','2025-11-13 12:45:59','drarchit','2025-11-13 13:44:21'),(3242,0,0,'O','N','2526',2412,0,'2025-11-13','2026-02-12',2468,0,2412,'N','','N','','','FC              ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:46:00','0000-00-00','','','','N','12:46:00','18:32:55','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','4','12:46:29',0,'','priyanshi','2025-11-13 12:46:29','drarchit','2025-11-14 18:32:55'),(3243,0,0,'O','N','2526',1096,0,'2025-11-13','0000-00-00',1134,0,1096,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:51:00','0000-00-00','','','','N','12:51:00','13:17:59','','','N','Y',NULL,'O','O','Z26','','0000-00-00 00:00:00','2','12:51:39',0,'','reception','2025-11-13 12:51:39','darshan','2025-11-13 13:17:59'),(3244,0,0,'O','N','2526',1882,0,'2025-11-13','0000-00-00',1929,0,1882,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:58:00','0000-00-00','','','','N','12:58:00','14:16:52','','N','N','Y',NULL,'O','O','J06','','0000-00-00 00:00:00','2','12:58:43',0,'','reception','2025-11-13 12:58:43','darshan','2025-11-13 14:16:52'),(3245,0,0,'O','N','2526',2413,0,'2025-11-13','2026-02-12',2469,0,2413,'N','','N','','','FC ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:21:00','0000-00-00','','','','N','13:21:00','14:03:37','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','4','13:27:33',0,'','priyanshi','2025-11-13 13:21:06','drarchit','2025-11-13 14:03:37'),(3246,0,0,'O','N','2526',1189,0,'2025-11-13','0000-00-00',1228,0,1189,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:26:00','0000-00-00','','','','N','13:26:00','14:14:42','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','2','13:26:20',0,'','reception','2025-11-13 13:26:20','darshan','2025-11-13 14:14:42'),(3247,0,0,'O','N','2526',2414,0,'2025-11-13','2026-02-12',2470,0,2414,'N','','N','','','TMT','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:28:00','0000-00-00','','','','N','13:28:00','00:00:00','','','N','N',NULL,'O','N','Z29','','0000-00-00 00:00:00','4','13:28:26',0,'','janvi','2025-11-13 13:28:26','','0000-00-00 00:00:00'),(3248,0,0,'O','N','2526',2415,0,'2025-11-13','2026-02-12',2471,0,2415,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:29:00','0000-00-00','','','','N','13:29:00','14:25:04','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','2','13:29:24',0,'','reception','2025-11-13 13:29:24','darshan','2025-11-13 14:25:04'),(3249,0,0,'O','N','2526',2416,0,'2025-11-13','2026-02-12',2472,0,2416,'N','','N','','','NC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:33:00','0000-00-00','','','','N','13:33:00','18:31:16','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','4','13:33:32',0,'','priyanshi','2025-11-13 13:33:32','drarchit','2025-11-13 18:31:16'),(3250,0,0,'O','N','2526',2356,0,'2025-11-13','0000-00-00',2411,0,2356,'N','','N','','','2D ECHO','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:36:00','0000-00-00','','','','N','13:36:00','18:31:45','','','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','4','13:36:29',0,'','priyanshi','2025-11-13 13:36:29','drarchit','2025-11-13 18:31:45'),(3251,0,0,'O','N','2526',2417,0,'2025-11-13','2026-02-12',2473,0,2417,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:01:00','0000-00-00','','','','N','14:01:00','14:30:02','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','2','14:01:44',0,'','reception','2025-11-13 14:01:44','darshan','2025-11-13 14:30:01'),(3252,0,0,'O','N','2526',2418,0,'2025-11-13','2026-02-12',2474,0,2418,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:48:00','0000-00-00','','','','N','15:48:00','00:00:00','','','N','N',NULL,'O','N','Z34','','0000-00-00 00:00:00','3','15:48:35',0,'','shweta','2025-11-13 15:48:35','','0000-00-00 00:00:00'),(3253,0,0,'O','N','2526',2419,0,'2025-11-13','2026-02-12',2475,0,2419,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:29:00','0000-00-00','','','','N','16:29:00','18:42:18','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:29:43',0,'','reception','2025-11-13 16:29:43','darshan','2025-11-13 18:42:18'),(3254,0,0,'O','N','2526',2420,0,'2025-11-13','2026-02-12',2476,0,2420,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:37:00','0000-00-00','','','','N','16:37:00','17:20:46','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:37:16',0,'','reception','2025-11-13 16:37:16','darshan','2025-11-13 17:20:46'),(3255,0,0,'O','N','2526',2421,0,'2025-11-13','2026-02-12',2477,0,2421,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:38:00','0000-00-00','','','','N','16:38:00','17:17:32','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','16:38:58',0,'','reception','2025-11-13 16:38:58','darshan','2025-11-13 17:17:32'),(3256,0,0,'O','N','2526',1806,0,'2025-11-13','0000-00-00',1852,0,1806,'N','','N','','','FOLLOWUP V ','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:39:00','0000-00-00','','','','N','16:39:00','17:06:51','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','16:39:42',0,'','reception','2025-11-13 16:39:42','darshan','2025-11-13 17:06:51'),(3257,0,0,'O','N','2526',1462,0,'2025-11-13','0000-00-00',1503,0,1462,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:58:00','0000-00-00','','','','N','16:58:00','17:24:52','','','N','Y',NULL,'O','O','L05','','0000-00-00 00:00:00','2','16:58:46',0,'','reception','2025-11-13 16:58:46','darshan','2025-11-13 17:24:52'),(3258,0,0,'O','N','2526',2422,0,'2025-11-13','2026-02-12',2478,0,2422,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:11:00','0000-00-00','','','','N','17:11:00','17:27:58','','','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:11:30',0,'','reception','2025-11-13 17:11:30','darshan','2025-11-13 17:27:58'),(3259,0,0,'O','N','2526',2423,0,'2025-11-13','2026-02-12',2479,0,2423,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:14:00','0000-00-00','','','','N','17:14:00','19:26:24','','N','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','2','17:14:11',0,'','reception','2025-11-13 17:14:11','darshan','2025-11-13 19:26:24'),(3260,0,0,'O','N','2526',2424,0,'2025-11-13','2026-02-12',2480,0,2424,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:17:00','0000-00-00','','','','N','17:17:00','18:44:58','','N','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:17:14',0,'','priyanshi','2025-11-13 17:17:14','darshan','2025-11-13 18:44:58'),(3261,0,0,'O','N','2526',2425,0,'2025-11-13','2026-02-12',2481,0,2425,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:26:00','0000-00-00','','','','N','17:26:00','18:00:53','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','2','17:26:06',0,'','reception','2025-11-13 17:26:06','darshan','2025-11-13 18:00:53'),(3262,0,0,'O','N','2526',2426,0,'2025-11-13','2026-02-12',2482,0,2426,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','19:33:34','','N','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:32:17',0,'','reception','2025-11-13 17:32:17','darshan','2025-11-13 19:33:33'),(3263,0,0,'O','N','2526',1288,0,'2025-11-13','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:47:00','0000-00-00','','','','N','17:47:00','00:00:00','','','N','N',NULL,'O','O','Z37','','0000-00-00 00:00:00','3','17:47:40',0,'','shweta','2025-11-13 17:47:40','','0000-00-00 00:00:00'),(3264,0,0,'O','N','2526',2427,0,'2025-11-13','2026-02-12',2483,0,2427,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:47:00','0000-00-00','','','','N','17:47:00','00:00:00','','','N','N',NULL,'O','N','L09','','0000-00-00 00:00:00','4','17:47:43',0,'','reception','2025-11-13 17:47:43','','0000-00-00 00:00:00'),(3265,0,0,'O','N','2526',2428,0,'2025-11-13','2026-02-12',2484,0,2428,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','18:13:03','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','2','17:49:09',0,'','reception','2025-11-13 17:49:09','darshan','2025-11-13 18:13:03'),(3266,0,0,'O','N','2526',2429,0,'2025-11-13','2026-02-12',2485,0,2429,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','18:41:35','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','2','17:51:38',0,'','reception','2025-11-13 17:51:38','darshan','2025-11-13 18:41:35'),(3267,0,0,'O','N','2526',2430,0,'2025-11-13','2026-02-12',2486,0,2430,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:54:00','0000-00-00','','','','N','17:54:00','00:00:00','','','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','4','17:54:17',0,'','priyanshi','2025-11-13 17:54:17','','0000-00-00 00:00:00'),(3268,0,0,'O','N','2526',545,0,'2025-11-13','0000-00-00',571,0,545,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:01:00','0000-00-00','','','','N','18:01:00','18:07:55','','','N','Y',NULL,'O','O','Z39','','0000-00-00 00:00:00','6','18:01:06',0,'','manshi','2025-11-13 18:01:06','drsagar','2025-11-13 18:07:55'),(3269,0,0,'O','N','2526',2431,0,'2025-11-13','2026-02-12',2487,0,2431,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:01:00','0000-00-00','','','','N','18:01:00','18:16:05','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','2','18:01:22',0,'','priyanshi','2025-11-13 18:01:22','darshan','2025-11-13 18:16:05'),(3270,0,0,'O','N','2526',2432,0,'2025-11-13','2026-02-12',2488,0,2432,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','18:43:31','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','4','18:03:53',0,'','priyanshi','2025-11-13 18:03:53','drarchit','2025-11-13 18:43:30'),(3271,0,0,'O','N','2526',2433,0,'2025-11-13','2026-02-12',2489,0,2433,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','19:35:35','','N','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','4','18:05:00',0,'','shweta','2025-11-13 18:05:00','drarchit','2025-11-13 19:35:35'),(3272,0,0,'O','N','2526',2434,0,'2025-11-13','2026-02-12',2490,0,2434,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','00:00:00','','','N','N',NULL,'O','N','Z41','','0000-00-00 00:00:00','7','18:05:16',0,'','manshi','2025-11-13 18:05:16','','0000-00-00 00:00:00'),(3273,0,0,'O','N','2526',637,0,'2025-11-13','0000-00-00',667,0,637,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:06:00','0000-00-00','','','','N','18:06:00','19:29:27','','','N','Y',NULL,'O','O','Z42','','0000-00-00 00:00:00','2','18:06:28',0,'','reception','2025-11-13 18:06:28','darshan','2025-11-13 19:29:27'),(3274,0,0,'O','N','2526',324,0,'2025-11-13','0000-00-00',340,0,324,'N','','N','','','','','N','D02','','N',29,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','00:00:00','','','N','N',NULL,'O','O','Z43','','0000-00-00 00:00:00','3','18:09:31',0,'','reception','2025-11-13 18:09:31','','0000-00-00 00:00:00'),(3275,0,0,'O','N','2526',1976,0,'2025-11-13','0000-00-00',2024,0,1976,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','00:00:00','','','N','N',NULL,'O','O','Z44','','0000-00-00 00:00:00','3','18:10:16',0,'','priyanshi','2025-11-13 18:10:16','','0000-00-00 00:00:00'),(3276,0,0,'O','N','2526',2435,0,'2025-11-13','2026-02-12',2491,0,2435,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','19:24:05','','','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','4','18:11:09',0,'','priyanshi','2025-11-13 18:11:09','drarchit','2025-11-13 19:24:05'),(3277,0,0,'O','N','2526',2436,0,'2025-11-13','2026-02-12',2492,0,2436,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:22:00','0000-00-00','','','','N','18:22:00','19:23:54','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','18:22:51',0,'','priyanshi','2025-11-13 18:22:51','drarchit','2025-11-13 19:23:54'),(3278,0,0,'O','N','2526',2437,0,'2025-11-13','2026-02-12',2493,0,2437,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:25:00','0000-00-00','','','','N','18:25:00','19:32:22','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','2','18:25:09',0,'','priyanshi','2025-11-13 18:25:09','darshan','2025-11-13 19:32:22'),(3279,0,0,'O','N','2526',218,0,'2025-11-13','0000-00-00',231,0,218,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','00:00:00','','','N','N',NULL,'O','O','Z46','','0000-00-00 00:00:00','3','18:34:57',0,'','reception','2025-11-13 18:34:57','','0000-00-00 00:00:00'),(3280,0,0,'O','N','2526',2097,0,'2025-11-13','0000-00-00',2150,0,2097,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:37:00','0000-00-00','','','','N','18:37:00','18:57:14','','','N','Y',NULL,'O','O','L16','','0000-00-00 00:00:00','2','18:37:14',0,'','reception','2025-11-13 18:37:14','darshan','2025-11-13 18:57:14'),(3281,0,0,'O','N','2526',662,0,'2025-11-13','0000-00-00',692,0,662,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:38:00','0000-00-00','','','','N','18:38:00','19:26:12','','','N','Y',NULL,'O','O','L17','','0000-00-00 00:00:00','2','18:38:11',0,'','priyanshi','2025-11-13 18:38:11','darshan','2025-11-13 19:26:12'),(3282,0,0,'O','N','2526',2438,0,'2025-11-13','2026-02-12',2494,0,2438,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:39:00','0000-00-00','','','','N','18:39:00','19:40:05','','','N','Y',NULL,'O','N','L18','','0000-00-00 00:00:00','4','18:39:16',0,'','shweta','2025-11-13 18:39:16','drarchit','2025-11-13 19:40:05'),(3283,0,0,'O','N','2526',1606,0,'2025-11-13','0000-00-00',1651,0,1606,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:39:00','0000-00-00','','','','N','18:39:00','19:58:58','','','N','Y',NULL,'O','O','Z47','','0000-00-00 00:00:00','4','18:39:38',0,'','priyanshi','2025-11-13 18:39:38','drarchit','2025-11-13 19:58:58'),(3284,0,0,'O','N','2526',1156,0,'2025-11-13','0000-00-00',1195,0,1156,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','19:55:09','','','N','Y',NULL,'O','O','L19','','0000-00-00 00:00:00','4','18:44:32',0,'','priyanshi','2025-11-13 18:44:32','drarchit','2025-11-13 19:55:09'),(3285,0,0,'O','N','2526',2145,0,'2025-11-13','0000-00-00',2197,0,2145,'N','','N','','','DRESSING','','N','D02','','N',98,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','00:00:00','','','N','N',NULL,'O','O','Z48','','0000-00-00 00:00:00','3','18:46:04',0,'','reception','2025-11-13 18:46:04','','0000-00-00 00:00:00'),(3286,0,0,'O','N','2526',580,0,'2025-11-13','0000-00-00',611,0,580,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','19:09:31','','','N','Y',NULL,'O','O','Z49','','0000-00-00 00:00:00','6','18:54:12',0,'','manshi','2025-11-13 18:54:12','drsagar','2025-11-13 19:09:31'),(3287,0,0,'O','N','2526',2439,0,'2025-11-13','2026-02-12',2495,0,2439,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:55:00','0000-00-00','','','','N','18:55:00','00:00:00','','','N','N',NULL,'O','N','Z50','','0000-00-00 00:00:00','4','18:55:13',0,'','priyanshi','2025-11-13 18:55:12','','0000-00-00 00:00:00'),(3288,0,0,'O','N','2526',536,0,'2025-11-13','0000-00-00',562,0,536,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:58:00','0000-00-00','','','','N','18:58:00','19:39:57','','','N','Y',NULL,'O','O','Z51','','0000-00-00 00:00:00','2','18:58:58',0,'','reception','2025-11-13 18:58:58','darshan','2025-11-13 19:39:57'),(3289,0,0,'O','N','2526',2440,0,'2025-11-13','2026-02-12',2496,0,2440,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:01:00','0000-00-00','','','','N','19:01:00','19:30:05','','','N','Y',NULL,'O','N','L20','','0000-00-00 00:00:00','4','19:09:27',0,'','priyanshi','2025-11-13 19:09:27','drarchit','2025-11-13 19:30:05'),(3290,0,0,'O','N','2526',2441,0,'2025-11-13','2026-02-12',2497,0,2441,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:24:00','0000-00-00','','','','N','19:24:00','00:00:00','','','N','Y',NULL,'O','N','L21','','0000-00-00 00:00:00','4','19:24:35',0,'','priyanshi','2025-11-13 19:24:35','','0000-00-00 00:00:00'),(3291,0,0,'O','N','2526',2378,0,'2025-11-13','0000-00-00',2434,0,2378,'N','','N','','','','','N','D02','','N',169,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:24:00','0000-00-00','','','','N','19:24:00','00:00:00','','','N','N',NULL,'O','O','Z52','','0000-00-00 00:00:00','3','19:25:05',0,'','shweta','2025-11-13 19:25:05','','0000-00-00 00:00:00'),(3292,0,0,'O','N','2526',2442,0,'2025-11-13','2026-02-12',2498,0,2442,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:26:00','0000-00-00','','','','N','19:26:00','00:00:00','','','N','N',NULL,'O','N','L22','','0000-00-00 00:00:00','4','19:26:05',0,'','priyanshi','2025-11-13 19:26:05','','0000-00-00 00:00:00'),(3293,0,0,'O','N','2526',1480,0,'2025-11-13','0000-00-00',1521,0,1480,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:33:00','0000-00-00','','','','N','19:33:00','00:00:00','','','N','Y',NULL,'O','O','Z53','','0000-00-00 00:00:00','4','19:33:33',0,'','priyanshi','2025-11-13 19:33:33','','0000-00-00 00:00:00'),(3294,0,0,'I','N','2526',0,156,'2025-11-13','2026-02-12',2499,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:00:00','2025-11-15','','1','mo','N','19:00:00','19:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-13 19:35:15','mo','2025-11-15 19:25:30'),(3295,0,0,'O','N','2526',2443,0,'2025-11-13','2026-02-12',2500,0,2443,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:58:00','0000-00-00','','','','N','19:58:00','00:00:00','','','N','N',NULL,'O','N','Z54','','0000-00-00 00:00:00','3','19:58:42',0,'','shweta','2025-11-13 19:58:42','','0000-00-00 00:00:00'),(3296,0,0,'O','N','2526',2444,0,'2025-11-14','2026-02-13',2501,0,2444,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:46:00','0000-00-00','','','','N','08:46:00','12:23:27','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','08:46:04',0,'','reception','2025-11-14 08:46:04','drarchit','2025-11-14 12:23:27'),(3297,0,0,'O','N','2526',2445,0,'2025-11-14','2026-02-13',2502,0,2445,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:13:00','0000-00-00','','','','N','09:13:00','00:00:00','','','N','N',NULL,'O','N','Z02','','0000-00-00 00:00:00','3','09:13:20',0,'','janvi','2025-11-14 09:13:20','','0000-00-00 00:00:00'),(3298,0,0,'O','N','2526',2446,0,'2025-11-14','2026-02-13',2503,0,2446,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:51:00','0000-00-00','','','','N','09:51:00','13:11:59','','N','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','2','09:51:04',0,'','reception','2025-11-14 09:51:04','darshan','2025-11-14 13:12:00'),(3299,0,0,'I','N','2526',0,157,'2025-11-14','2026-02-13',2504,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-11-16','','1','mo','N','09:30:00','07:55:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-14 09:53:21','vishal','2025-11-16 07:48:27'),(3300,0,0,'O','N','2526',2447,0,'2025-11-14','2026-02-13',2505,0,2447,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:17:00','0000-00-00','','','','N','10:17:00','11:04:22','','Y','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','4','10:17:14',0,'','reception','2025-11-14 10:17:14','drarchit','2025-11-14 11:22:02'),(3301,0,0,'I','N','2526',0,158,'2025-11-14','2026-02-13',2506,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','00:05:00','2025-11-16','','1','mo','N','00:05:00','19:35:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-14 10:17:30','mo','2025-11-16 19:58:01'),(3302,0,0,'O','N','2526',2448,0,'2025-11-14','2026-02-13',2507,0,2448,'N','','N','','','NE','','N','D06','','N',173,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:19:00','0000-00-00','','','','N','10:19:00','13:39:40','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:19:46',0,'','reception','2025-11-14 10:19:46','darshan','2025-11-14 13:39:40'),(3303,0,0,'O','N','2526',495,0,'2025-11-14','0000-00-00',520,0,495,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:19:00','0000-00-00','','','','N','10:19:00','11:44:15','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','4','10:19:56',0,'','janvi','2025-11-14 10:19:56','drarchit','2025-11-14 11:44:15'),(3304,0,0,'O','N','2526',2449,0,'2025-11-14','2026-02-13',2508,0,2449,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:21:00','0000-00-00','','','','N','10:21:00','11:34:44','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','2','10:21:53',0,'','reception','2025-11-14 10:21:53','darshan','2025-11-14 11:34:44'),(3305,0,0,'O','N','2526',1857,0,'2025-11-14','0000-00-00',1903,0,1857,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:23:00','0000-00-00','','','','N','10:23:00','11:22:36','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','10:23:41',0,'','reception','2025-11-14 10:23:41','darshan','2025-11-14 11:22:36'),(3306,0,0,'O','N','2526',2450,0,'2025-11-14','2026-02-13',2509,0,2450,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','13:27:04','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','4','10:29:00',0,'','janvi','2025-11-14 10:29:00','drarchit','2025-11-14 13:27:04'),(3307,0,0,'O','N','2526',2451,0,'2025-11-14','2026-02-13',2510,0,2451,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:32:00','0000-00-00','','','','N','10:32:00','13:32:30','','N','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:32:03',0,'','reception','2025-11-14 10:32:03','darshan','2025-11-14 13:32:30'),(3308,0,0,'O','N','2526',2452,0,'2025-11-14','2026-02-13',2511,0,2452,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:34:00','0000-00-00','','','','N','10:34:00','11:26:50','','','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:34:27',0,'','reception','2025-11-14 10:34:27','darshan','2025-11-14 11:26:50'),(3309,0,0,'O','N','2526',2453,0,'2025-11-14','2026-02-13',2512,0,2453,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:36:00','0000-00-00','','','','N','10:36:00','11:29:26','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','10:36:02',0,'','reception','2025-11-14 10:36:02','darshan','2025-11-14 11:29:26'),(3310,0,0,'O','N','2526',2454,0,'2025-11-14','2026-02-13',2513,0,2454,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:41:00','0000-00-00','','','','N','10:41:00','12:56:38','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','4','10:42:06',0,'','janvi','2025-11-14 10:42:06','drarchit','2025-11-14 12:56:38'),(3311,0,0,'O','N','2526',2455,0,'2025-11-14','2026-02-13',2514,0,2455,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:42:00','0000-00-00','','','','N','10:42:00','13:43:48','','N','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','2','10:42:48',0,'','reception','2025-11-14 10:42:48','darshan','2025-11-14 13:43:48'),(3312,0,0,'O','N','2526',586,0,'2025-11-14','0000-00-00',21,0,586,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','11:41:46','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','4','10:44:10',0,'','janvi','2025-11-14 10:44:10','drarchit','2025-11-14 11:41:46'),(3313,0,0,'O','N','2526',2456,0,'2025-11-14','2026-02-13',2515,0,2456,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','11:44:09','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','10:45:01',0,'','reception','2025-11-14 10:45:01','darshan','2025-11-14 11:44:09'),(3314,0,0,'O','N','2526',2457,0,'2025-11-14','2026-02-13',2516,0,2457,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','12:17:45','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','10:48:56',0,'','reception','2025-11-14 10:48:56','darshan','2025-11-14 12:17:45'),(3315,0,0,'O','N','2526',2005,0,'2025-11-14','0000-00-00',2056,0,2005,'N','','N','','','DRESSING','','N','D02','','N',146,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:50:00','0000-00-00','','','','N','10:50:00','00:00:00','','','N','N',NULL,'O','O','Z10','','0000-00-00 00:00:00','3','10:50:49',0,'','janvi','2025-11-14 10:50:49','','0000-00-00 00:00:00'),(3316,0,0,'O','N','2526',2198,0,'2025-11-14','0000-00-00',2254,0,2198,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','00:00:00','','','N','N',NULL,'O','O','Z11','','0000-00-00 00:00:00','3','10:57:17',0,'','janvi','2025-11-14 10:57:17','','0000-00-00 00:00:00'),(3317,0,0,'O','N','2526',2458,0,'2025-11-14','2026-02-13',2517,0,2458,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','00:00:00','','','N','N',NULL,'O','N','Z12','','0000-00-00 00:00:00','3','11:04:09',0,'','urvashi','2025-11-14 11:04:09','','0000-00-00 00:00:00'),(3318,0,0,'O','N','2526',2459,0,'2025-11-14','2026-02-13',2518,0,2459,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','13:27:55','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','4','11:08:56',0,'','janvi','2025-11-14 11:08:56','drarchit','2025-11-14 13:27:55'),(3319,0,0,'O','N','2526',741,0,'2025-11-14','0000-00-00',772,0,741,'N','','N','','','FOLLOWUP V','','N','D06','','N',56,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','12:20:46','','','N','Y',NULL,'O','O','G03','','0000-00-00 00:00:00','2','11:17:29',0,'','reception','2025-11-14 11:17:29','darshan','2025-11-14 12:20:46'),(3320,0,0,'O','N','2526',589,0,'2025-11-14','0000-00-00',619,0,589,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','11:59:29','','','N','Y',NULL,'O','O','H01','','0000-00-00 00:00:00','2','11:26:01',0,'','reception','2025-11-14 11:26:01','darshan','2025-11-14 11:59:29'),(3321,0,0,'O','N','2526',2460,0,'2025-11-14','2026-02-13',2519,0,2460,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','13:08:46','','N','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','4','11:27:25',0,'','urvashi','2025-11-14 11:27:25','drarchit','2025-11-14 13:08:46'),(3322,0,0,'O','N','2526',2461,0,'2025-11-14','2026-02-13',2520,0,2461,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','00:00:00','','','N','N',NULL,'O','N','Z14','','0000-00-00 00:00:00','3','11:28:48',0,'','janvi','2025-11-14 11:28:48','','0000-00-00 00:00:00'),(3323,0,0,'O','N','2526',787,0,'2025-11-14','0000-00-00',818,0,787,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:34:00','0000-00-00','','','','N','11:34:00','19:59:42','','N','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','4','11:34:16',0,'','urvashi','2025-11-14 11:34:16','drarchit','2025-11-14 19:59:42'),(3324,0,0,'O','N','2526',2462,0,'2025-11-14','2026-02-13',2521,0,2462,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:37:00','0000-00-00','','','','N','11:37:00','12:50:17','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','11:37:27',0,'','urvashi','2025-11-14 11:37:27','drarchit','2025-11-14 12:50:17'),(3325,0,0,'O','N','2526',2463,0,'2025-11-14','2026-02-13',2522,0,2463,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','13:20:20','','N','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','11:38:23',0,'','reception','2025-11-14 11:38:23','darshan','2025-11-14 13:20:20'),(3326,0,0,'O','N','2526',2464,0,'2025-11-14','2026-02-13',2523,0,2464,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','12:07:11','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','2','11:42:01',0,'','reception','2025-11-14 11:42:01','darshan','2025-11-14 12:07:11'),(3327,0,0,'O','N','2526',2137,0,'2025-11-14','0000-00-00',2188,0,2137,'N','','N','','','','','N','D02','','N',155,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','00:00:00','','','N','N',NULL,'O','O','Z16','','0000-00-00 00:00:00','3','11:46:17',0,'','reception','2025-11-14 11:46:17','','0000-00-00 00:00:00'),(3328,0,0,'O','N','2526',2465,0,'2025-11-14','2026-02-13',2524,0,2465,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','00:00:00','','','N','N',NULL,'O','N','Z17','','0000-00-00 00:00:00','3','11:51:14',0,'','janvi','2025-11-14 11:51:14','','0000-00-00 00:00:00'),(3329,0,0,'O','N','2526',2466,0,'2025-11-14','2026-02-13',2525,0,2466,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:53:00','0000-00-00','','','','N','11:53:00','12:57:05','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','4','11:53:07',0,'','urvashi','2025-11-14 11:53:07','drarchit','2025-11-14 12:57:05'),(3330,0,0,'O','N','2526',2467,0,'2025-11-14','2026-02-13',818,0,2467,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','12:08:49','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','6','11:54:33',0,'','manshi','2025-11-14 11:54:33','drsagar','2025-11-14 12:08:49'),(3331,0,0,'O','N','2526',1356,0,'2025-11-14','0000-00-00',1396,0,1356,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','13:14:08','','','N','Y',NULL,'O','O','H06','','0000-00-00 00:00:00','2','11:56:28',0,'','reception','2025-11-14 11:56:27','darshan','2025-11-14 13:14:08'),(3332,0,0,'O','N','2526',2468,0,'2025-11-14','2026-02-13',2526,0,2468,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','00:00:00','','','N','N',NULL,'O','N','Z18','','0000-00-00 00:00:00','3','12:02:13',0,'','janvi','2025-11-14 12:02:13','','0000-00-00 00:00:00'),(3333,0,0,'O','N','2526',2469,0,'2025-11-14','2026-02-13',2527,0,2469,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','13:54:50','','N','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','4','12:02:15',0,'','reception','2025-11-14 12:02:15','drarchit','2025-11-14 13:54:49'),(3334,0,0,'O','N','2526',1928,0,'2025-11-14','0000-00-00',1976,0,1928,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','12:29:37','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','6','12:02:29',0,'','manshi','2025-11-14 12:02:29','drsagar','2025-11-14 12:29:37'),(3335,0,0,'O','N','2526',2470,0,'2025-11-14','2026-02-13',2528,0,2470,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:08:00','0000-00-00','','','','N','12:08:00','18:44:08','','','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','4','12:08:33',0,'','shweta','2025-11-14 12:08:33','drarchit','2025-11-14 18:44:07'),(3336,0,0,'O','N','2526',2471,0,'2025-11-14','2026-02-13',2529,0,2471,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:10:00','0000-00-00','','','','N','12:10:00','00:00:00','','','N','N',NULL,'O','N','Z20','','0000-00-00 00:00:00','7','12:10:59',0,'','manshi','2025-11-14 12:10:59','','0000-00-00 00:00:00'),(3337,0,0,'O','N','2526',2472,0,'2025-11-14','2026-02-13',2530,0,2472,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:20:00','0000-00-00','','','','N','12:20:00','00:00:00','','','N','N',NULL,'O','N','Z21','','0000-00-00 00:00:00','3','12:20:33',0,'','janvi','2025-11-14 12:20:33','','0000-00-00 00:00:00'),(3338,0,0,'O','N','2526',2473,0,'2025-11-14','2026-02-13',2531,0,2473,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:23:00','0000-00-00','','','','N','12:23:00','12:44:12','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','4','12:23:41',0,'','urvashi','2025-11-14 12:23:41','drarchit','2025-11-14 12:44:12'),(3339,0,0,'O','N','2526',923,0,'2025-11-14','0000-00-00',954,0,923,'N','','N','','','','','N','D03','','N',4,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:26:00','0000-00-00','','','','N','12:26:00','12:29:57','','','N','Y',NULL,'O','O','Z23','','0000-00-00 00:00:00','6','12:26:40',0,'','manshi','2025-11-14 12:26:40','drsagar','2025-11-14 12:29:57'),(3340,0,0,'O','N','2526',2474,0,'2025-11-14','2026-02-13',2532,0,2474,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:32:00','0000-00-00','','','','N','12:32:00','12:55:45','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','6','12:32:12',0,'','manshi','2025-11-14 12:32:12','drsagar','2025-11-14 12:55:45'),(3341,0,0,'O','N','2526',2475,0,'2025-11-14','2026-02-13',2533,0,2475,'N','','N','','','EMR','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:45:00','0000-00-00','','','','N','12:45:00','13:27:18','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','4','12:45:28',0,'','urvashi','2025-11-14 12:45:28','drarchit','2025-11-14 13:27:18'),(3342,0,0,'O','N','2526',2476,0,'2025-11-14','2026-02-13',2534,0,2476,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:47:00','0000-00-00','','','','N','12:47:00','13:39:01','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','2','12:47:14',0,'','reception','2025-11-14 12:47:14','darshan','2025-11-14 13:39:01'),(3343,0,0,'O','N','2526',2477,0,'2025-11-14','2026-02-13',2535,0,2477,'N','','N','','','FC ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:47:00','0000-00-00','','','','N','12:47:00','19:01:42','','N','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','4','12:47:15',0,'','urvashi','2025-11-14 12:47:15','drarchit','2025-11-14 19:01:42'),(3344,0,0,'O','N','2526',2478,0,'2025-11-14','2026-02-13',2536,0,2478,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:49:00','0000-00-00','','','','N','12:49:00','14:02:59','','N','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','4','12:49:37',0,'','urvashi','2025-11-14 12:49:37','drarchit','2025-11-14 14:02:59'),(3345,0,0,'O','N','2526',2479,0,'2025-11-14','2026-02-13',2533,0,2479,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:52:00','0000-00-00','','','','N','12:52:00','13:01:06','','','N','Y',NULL,'O','N','Y01','','0000-00-00 00:00:00','6','12:52:07',0,'','manshi','2025-11-14 12:52:07','drsagar','2025-11-14 13:01:06'),(3346,0,0,'O','N','2526',2480,0,'2025-11-14','2026-02-13',2537,0,2480,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:12:00','0000-00-00','','','','N','13:12:00','18:20:34','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','6','13:12:02',0,'','manshi','2025-11-14 13:12:02','drsagar','2025-11-14 18:20:34'),(3347,0,0,'O','N','2526',2481,0,'2025-11-14','2026-02-13',2538,0,2481,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:28:00','0000-00-00','','','','N','13:28:00','13:59:39','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','4','13:28:15',0,'','reception','2025-11-14 13:28:15','drarchit','2025-11-14 13:59:39'),(3348,0,0,'I','N','2526',0,159,'2025-11-14','2026-02-13',2539,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:36:00','2025-11-22','','1','mo','N','13:36:00','13:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-14 13:38:55','mo','2025-11-22 13:14:59'),(3349,0,0,'O','N','2526',2447,0,'2025-11-14','0000-00-00',2505,0,2447,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:27:00','0000-00-00','','','','N','14:27:00','00:00:00','','','N','N',NULL,'O','O','Y02','','0000-00-00 00:00:00','4','14:27:41',0,'','shweta','2025-11-14 14:27:41','','0000-00-00 00:00:00'),(3350,0,0,'O','N','2526',2482,0,'2025-11-14','2026-02-13',2540,0,2482,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:33:00','0000-00-00','','','','N','14:33:00','18:14:15','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','4','14:33:04',0,'','shweta','2025-11-14 14:33:03','drarchit','2025-11-14 18:14:15'),(3351,0,0,'O','N','2526',1642,0,'2025-11-14','0000-00-00',1687,0,1642,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:23:00','0000-00-00','','','','N','16:23:00','17:59:45','','','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','2','16:23:31',0,'','reception','2025-11-14 16:23:31','darshan','2025-11-14 17:59:45'),(3352,0,0,'O','N','2526',2483,0,'2025-11-14','2026-02-13',2541,0,2483,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:26:00','0000-00-00','','','','N','16:26:00','19:16:39','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:26:03',0,'','reception','2025-11-14 16:26:03','darshan','2025-11-14 19:16:39'),(3353,0,0,'O','N','2526',1147,0,'2025-11-14','0000-00-00',1187,0,1147,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:33:00','0000-00-00','','','','N','16:33:00','19:52:14','','N','N','Y',NULL,'O','O','Z33','','0000-00-00 00:00:00','2','16:33:32',0,'','reception','2025-11-14 16:33:32','darshan','2025-11-14 19:52:44'),(3354,0,0,'O','N','2526',75,0,'2025-11-14','0000-00-00',86,0,75,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:34:00','0000-00-00','','','','N','16:34:00','18:12:58','','','N','Y',NULL,'O','O','Z34','','0000-00-00 00:00:00','2','16:34:14',0,'','reception','2025-11-14 16:34:14','darshan','2025-11-14 18:12:58'),(3355,0,0,'O','N','2526',2484,0,'2025-11-14','2026-02-13',2542,0,2484,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:36:00','0000-00-00','','','','N','16:36:00','17:45:20','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:36:20',0,'','reception','2025-11-14 16:36:20','darshan','2025-11-14 17:45:20'),(3356,0,0,'O','N','2526',2485,0,'2025-11-14','2026-02-13',2543,0,2485,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:38:00','0000-00-00','','','','N','16:38:00','18:13:51','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','2','16:38:55',0,'','reception','2025-11-14 16:38:55','darshan','2025-11-14 18:13:51'),(3357,0,0,'O','N','2526',210,0,'2025-11-14','0000-00-00',223,0,210,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:39:00','0000-00-00','','','','N','16:39:00','18:20:27','','','N','Y',NULL,'O','O','L03','','0000-00-00 00:00:00','2','16:39:41',0,'','reception','2025-11-14 16:39:41','darshan','2025-11-14 18:20:27'),(3358,0,0,'O','N','2526',2486,0,'2025-11-14','2026-02-13',2544,0,2486,'N','','N','','','RNE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:43:00','0000-00-00','','','','N','16:43:00','19:40:04','','N','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','16:43:19',0,'','reception','2025-11-14 16:43:19','darshan','2025-11-14 19:40:04'),(3359,0,0,'O','N','2526',2487,0,'2025-11-14','2026-02-13',2545,0,2487,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:51:00','0000-00-00','','','','N','16:51:00','18:14:33','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','2','16:51:26',0,'','reception','2025-11-14 16:51:26','darshan','2025-11-14 18:14:33'),(3360,0,0,'O','N','2526',2488,0,'2025-11-14','2026-02-13',2546,0,2488,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:02:00','0000-00-00','','','','N','17:02:00','18:19:03','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','4','17:02:02',0,'','drashti','2025-11-14 17:02:02','drarchit','2025-11-14 18:19:03'),(3361,0,0,'O','N','2526',2489,0,'2025-11-14','2026-02-13',2547,0,2489,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:07:00','0000-00-00','','','','N','17:07:00','19:29:48','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:07:29',0,'','reception','2025-11-14 17:07:29','darshan','2025-11-14 19:29:48'),(3362,0,0,'O','N','2526',325,0,'2025-11-14','0000-00-00',341,0,325,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:10:00','0000-00-00','','','','N','17:10:00','18:15:58','','','N','Y',NULL,'O','O','Z37','','0000-00-00 00:00:00','2','17:10:21',0,'','reception','2025-11-14 17:10:21','darshan','2025-11-14 18:15:58'),(3363,0,0,'O','N','2526',2490,0,'2025-11-14','2026-02-13',2548,0,2490,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:12:00','0000-00-00','','','','N','17:12:00','17:58:56','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:12:04',0,'','reception','2025-11-14 17:12:04','darshan','2025-11-14 17:58:56'),(3364,0,0,'O','N','2526',2491,0,'2025-11-14','2026-02-13',2549,0,2491,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','19:22:23','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','4','17:20:36',0,'','reception','2025-11-14 17:20:36','drarchit','2025-11-14 19:22:23'),(3365,0,0,'O','N','2526',639,0,'2025-11-14','0000-00-00',669,0,639,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:29:00','0000-00-00','','','','N','17:29:00','18:23:39','','','N','Y',NULL,'O','O','L08','','0000-00-00 00:00:00','2','17:29:48',0,'','reception','2025-11-14 17:29:48','darshan','2025-11-14 18:23:39'),(3366,0,0,'O','N','2526',2118,0,'2025-11-14','0000-00-00',1763,0,2118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:33:00','0000-00-00','','','','N','17:33:00','00:00:00','','','N','N',NULL,'O','O','Z39','','0000-00-00 00:00:00','3','17:33:20',0,'','priyanshi','2025-11-14 17:33:20','','0000-00-00 00:00:00'),(3367,0,0,'O','N','2526',2492,0,'2025-11-14','2026-02-13',2550,0,2492,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:36:00','0000-00-00','','','','N','17:36:00','18:38:23','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','4','17:36:09',0,'','drashti','2025-11-14 17:36:09','drarchit','2025-11-14 18:38:23'),(3368,0,0,'O','N','2526',2493,0,'2025-11-14','2026-02-13',2551,0,2493,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:38:00','0000-00-00','','','','N','17:38:00','18:32:37','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','2','17:38:33',0,'','reception','2025-11-14 17:38:33','darshan','2025-11-14 18:32:37'),(3369,0,0,'O','N','2526',2494,0,'2025-11-14','2026-02-13',2552,0,2494,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','00:00:00','','','N','N',NULL,'O','N','Z41','','0000-00-00 00:00:00','3','17:40:39',0,'','janvi','2025-11-14 17:40:39','','0000-00-00 00:00:00'),(3370,0,0,'O','N','2526',2495,0,'2025-11-14','2026-02-13',2553,0,2495,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','19:01:03','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','4','17:40:52',0,'','drashti','2025-11-14 17:40:52','drarchit','2025-11-14 19:01:03'),(3371,0,0,'O','N','2526',1901,0,'2025-11-14','0000-00-00',1949,0,1901,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:43:00','0000-00-00','','','','N','17:43:00','18:27:27','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','2','17:43:52',0,'','reception','2025-11-14 17:43:52','darshan','2025-11-14 18:27:27'),(3372,0,0,'O','N','2526',2496,0,'2025-11-14','2026-02-13',2554,0,2496,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:56:00','0000-00-00','','','','N','17:56:00','18:27:31','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','4','17:56:17',0,'','drashti','2025-11-14 17:56:17','drarchit','2025-11-14 18:27:31'),(3373,0,0,'O','N','2526',2497,0,'2025-11-14','2026-02-13',2555,0,2497,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','0000-00-00','','','','N','18:00:00','18:39:09','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','2','18:00:28',0,'','reception','2025-11-14 18:00:28','darshan','2025-11-14 18:39:09'),(3374,0,0,'O','N','2526',2144,0,'2025-11-14','0000-00-00',2196,0,2144,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','19:35:15','','','N','Y',NULL,'O','O','Z42','','0000-00-00 00:00:00','6','18:09:05',0,'','manshi','2025-11-14 18:09:05','drsagar','2025-11-14 19:35:15'),(3375,0,0,'O','N','2526',2477,0,'2025-11-14','0000-00-00',2535,0,2477,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','19:06:21','','N','N','Y',NULL,'O','O','Y03','','0000-00-00 00:00:00','4','18:10:14',0,'','janvi','2025-11-14 18:10:14','drarchit','2025-11-14 19:06:21'),(3376,0,0,'O','N','2526',2498,0,'2025-11-14','2026-02-13',142,0,2498,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:13:00','0000-00-00','','','','N','18:13:00','00:00:00','','','N','N',NULL,'O','N','Z43','','0000-00-00 00:00:00','7','18:13:48',0,'','manshi','2025-11-14 18:13:48','','0000-00-00 00:00:00'),(3377,0,0,'O','N','2526',710,0,'2025-11-14','0000-00-00',741,0,710,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','18:41:48','','','N','Y',NULL,'O','O','L14','','0000-00-00 00:00:00','2','18:15:07',0,'','reception','2025-11-14 18:15:07','darshan','2025-11-14 18:41:48'),(3378,0,0,'O','N','2526',2499,0,'2025-11-14','2026-02-13',2556,0,2499,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','11:15:46','','N','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','18:21:53',0,'','janvi','2025-11-14 18:21:53','drarchit','2025-11-15 11:15:46'),(3379,0,0,'O','N','2526',2500,0,'2025-11-14','2026-02-13',2557,0,2500,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:22:00','0000-00-00','','','','N','18:22:00','18:43:57','','','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','2','18:22:03',0,'','reception','2025-11-14 18:22:03','darshan','2025-11-14 18:43:57'),(3380,0,0,'O','N','2526',2501,0,'2025-11-14','2026-02-13',2558,0,2501,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','18:56:11','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','2','18:24:16',0,'','reception','2025-11-14 18:24:16','darshan','2025-11-14 18:56:11'),(3381,0,0,'O','N','2526',2502,0,'2025-11-14','2026-02-13',2559,0,2502,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','18:39:49','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','6','18:24:37',0,'','manshi','2025-11-14 18:24:37','drsagar','2025-11-14 18:39:49'),(3382,0,0,'O','N','2526',1390,0,'2025-11-14','0000-00-00',1430,0,1390,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:25:00','0000-00-00','','','','N','18:25:00','18:40:01','','','N','Y',NULL,'O','O','Z46','','0000-00-00 00:00:00','6','18:25:28',0,'','manshi','2025-11-14 18:25:28','drsagar','2025-11-14 18:40:01'),(3383,0,0,'O','N','2526',645,0,'2025-11-14','0000-00-00',675,0,645,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','18:55:22','','','N','Y',NULL,'O','O','Z47','','0000-00-00 00:00:00','6','18:26:05',0,'','manshi','2025-11-14 18:26:05','drsagar','2025-11-14 18:55:22'),(3384,0,0,'O','N','2526',2503,0,'2025-11-14','2026-02-13',2560,0,2503,'N','','N','','','NC','','N','D02','','N',106,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','00:00:00','','','N','N',NULL,'O','N','Z48','','0000-00-00 00:00:00','3','18:26:27',0,'','reception','2025-11-14 18:26:27','','0000-00-00 00:00:00'),(3385,0,0,'O','N','2526',2504,0,'2025-11-14','2026-02-13',2561,0,2504,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','18:54:58','','N','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','4','18:29:57',0,'','drashti','2025-11-14 18:29:57','drarchit','2025-11-14 18:54:58'),(3386,0,0,'O','N','2526',2505,0,'2025-11-14','2026-02-13',2562,0,2505,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:38:00','0000-00-00','','','','N','18:38:00','19:19:34','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','4','18:38:35',0,'','drashti','2025-11-14 18:38:35','drarchit','2025-11-14 19:19:34'),(3387,0,0,'O','N','2526',2282,0,'2025-11-14','0000-00-00',2339,0,2282,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:45:00','0000-00-00','','','','N','18:45:00','19:35:49','','','N','Y',NULL,'O','O','L17','','0000-00-00 00:00:00','4','18:45:31',0,'','drashti','2025-11-14 18:45:31','drarchit','2025-11-14 19:35:49'),(3388,0,0,'O','N','2526',2281,0,'2025-11-14','0000-00-00',2338,0,2281,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:45:00','0000-00-00','','','','N','18:45:00','19:35:59','','','N','Y',NULL,'O','O','Z51','','0000-00-00 00:00:00','4','18:45:49',0,'','drashti','2025-11-14 18:45:49','drarchit','2025-11-14 19:35:59'),(3389,0,0,'O','N','2526',845,0,'2025-11-14','0000-00-00',876,0,845,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','00:00:00','','','N','N',NULL,'O','O','Z52','','0000-00-00 00:00:00','3','18:46:50',0,'','janvi','2025-11-14 18:46:50','','0000-00-00 00:00:00'),(3390,0,0,'O','N','2526',2506,0,'2025-11-14','2026-02-13',2563,0,2506,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','00:00:00','','Y','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','4','18:46:57',0,'','drashti','2025-11-14 18:46:57','drarchit','2025-11-14 19:40:20'),(3391,0,0,'O','N','2526',2507,0,'2025-11-14','2026-02-13',2564,0,2507,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','19:43:16','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','4','18:49:34',0,'','reception','2025-11-14 18:49:34','drarchit','2025-11-14 19:43:16'),(3392,0,0,'O','N','2526',2508,0,'2025-11-14','2026-02-13',2565,0,2508,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:47:15','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','4','18:51:05',0,'','drashti','2025-11-14 18:51:05','drarchit','2025-11-14 19:47:15'),(3393,0,0,'O','N','2526',2030,0,'2025-11-14','0000-00-00',2084,0,2030,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:52:00','0000-00-00','','','','N','18:52:00','19:01:24','','','N','Y',NULL,'O','O','Z56','','0000-00-00 00:00:00','6','18:52:04',0,'','manshi','2025-11-14 18:52:04','drsagar','2025-11-14 19:01:24'),(3394,0,0,'O','N','2526',2509,0,'2025-11-14','2026-02-13',2566,0,2509,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:52:00','0000-00-00','','','','N','18:52:00','19:51:15','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','4','18:52:56',0,'','drashti','2025-11-14 18:52:56','drarchit','2025-11-14 19:51:15'),(3395,0,0,'O','N','2526',2510,0,'2025-11-14','2026-02-13',2567,0,2510,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:53:00','0000-00-00','','','','N','18:53:00','19:57:44','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','4','18:54:58',0,'','janvi','2025-11-14 18:53:16','drarchit','2025-11-14 19:57:44'),(3396,0,0,'O','N','2526',2511,0,'2025-11-14','2026-02-13',2568,0,2511,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:05:00','0000-00-00','','','','N','19:05:00','00:00:00','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','4','19:04:58',0,'','drashti','2025-11-14 19:04:58','','0000-00-00 00:00:00'),(3397,0,0,'O','N','2526',2512,0,'2025-11-14','2026-02-13',2569,0,2512,'N','','N','','','NC','','N','D27','','N',176,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:11:00','0000-00-00','','','','N','19:11:00','19:28:59','','N','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','4','19:11:58',0,'','drashti','2025-11-14 19:11:58','drarchit','2025-11-14 19:28:59'),(3398,0,0,'O','N','2526',2142,0,'2025-11-14','0000-00-00',2193,0,2142,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:27:00','0000-00-00','','','','N','19:27:00','19:31:12','','','N','Y',NULL,'O','O','Z61','','0000-00-00 00:00:00','6','19:27:44',0,'','manshi','2025-11-14 19:27:44','drsagar','2025-11-14 19:31:12'),(3399,0,0,'O','N','2526',787,0,'2025-11-14','0000-00-00',818,0,787,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:34:00','0000-00-00','','','','N','19:34:00','19:52:16','','N','N','Y',NULL,'O','O','Y04','','0000-00-00 00:00:00','4','19:34:40',0,'','drashti','2025-11-14 19:34:40','drarchit','2025-11-14 19:52:16'),(3400,0,0,'O','N','2526',1288,0,'2025-11-14','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:36:00','0000-00-00','','','','N','19:36:00','00:00:00','','','N','N',NULL,'O','O','Z62','','0000-00-00 00:00:00','3','19:36:34',0,'','janvi','2025-11-14 19:36:34','','0000-00-00 00:00:00'),(3401,0,0,'O','N','2526',2513,0,'2025-11-14','2026-02-13',2570,0,2513,'N','','N','','','FC ','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:12:00','0000-00-00','','','','N','20:12:00','00:00:00','','','N','N',NULL,'O','N','Z63','','0000-00-00 00:00:00','4','20:12:50',0,'','drashti','2025-11-14 20:12:50','','0000-00-00 00:00:00'),(3402,0,0,'O','N','2526',525,0,'2025-11-15','0000-00-00',551,0,525,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:27:00','0000-00-00','','','','N','09:27:00','00:00:00','','','N','N',NULL,'O','O','Z01','','0000-00-00 00:00:00','3','09:27:33',0,'','janvi','2025-11-15 09:27:33','','0000-00-00 00:00:00'),(3403,0,0,'O','N','2526',2514,0,'2025-11-15','2026-02-14',2571,0,2514,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:35:00','0000-00-00','','','','N','09:35:00','12:07:04','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','09:35:43',0,'','janvi','2025-11-15 09:35:43','drarchit','2025-11-15 12:07:04'),(3404,0,0,'O','N','2526',2515,0,'2025-11-15','2026-02-14',2572,0,2515,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:50:00','0000-00-00','','','','N','09:50:00','11:04:40','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','09:50:39',0,'','reception','2025-11-15 09:50:39','darshan','2025-11-15 11:04:40'),(3405,0,0,'I','N','2526',0,160,'2025-11-15','2026-02-14',2573,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','2025-11-18','','4','mo','N','10:00:00','22:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-15 10:02:28','vishal','2025-11-18 23:05:53'),(3406,0,0,'O','N','2526',2516,0,'2025-11-15','2026-02-14',2574,0,2516,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:11:00','0000-00-00','','','','N','10:11:00','00:00:00','','Y','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','4','10:11:15',0,'','drashti','2025-11-15 10:11:15','drarchit','2025-11-15 11:42:56'),(3407,0,0,'O','N','2526',2517,0,'2025-11-15','2026-02-14',2575,0,2517,'N','','N','','','NV','','N','D06','','N',178,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:23:00','0000-00-00','','','','N','10:23:00','13:12:09','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:23:42',0,'','reception','2025-11-15 10:23:42','darshan','2025-11-15 13:12:09'),(3408,0,0,'O','N','2526',2518,0,'2025-11-15','2026-02-14',2576,0,2518,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:25:00','0000-00-00','','','','N','10:25:00','11:31:42','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','4','10:25:21',0,'','drashti','2025-11-15 10:25:21','drarchit','2025-11-15 11:31:42'),(3409,0,0,'O','N','2526',2519,0,'2025-11-15','2026-02-14',2577,0,2519,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','11:47:04','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','6','10:28:15',0,'','manshi','2025-11-15 10:28:15','drsagar','2025-11-15 11:47:04'),(3410,0,0,'O','N','2526',2520,0,'2025-11-15','2026-02-14',2578,0,2520,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:29:00','0000-00-00','','','','N','10:29:00','11:09:03','','','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:29:03',0,'','reception','2025-11-15 10:29:03','darshan','2025-11-15 11:09:03'),(3411,0,0,'O','N','2526',2521,0,'2025-11-15','2026-02-14',2579,0,2521,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:29:00','0000-00-00','','','','N','10:29:00','00:00:00','','','N','N',NULL,'O','N','Z04','','0000-00-00 00:00:00','3','10:29:58',0,'','janvi','2025-11-15 10:29:58','','0000-00-00 00:00:00'),(3412,0,0,'O','N','2526',2522,0,'2025-11-15','2026-02-14',2580,0,2522,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:31:00','0000-00-00','','','','N','10:31:00','12:09:14','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','2','10:31:58',0,'','reception','2025-11-15 10:31:58','darshan','2025-11-15 12:09:14'),(3413,0,0,'O','N','2526',1988,0,'2025-11-15','0000-00-00',2039,0,1988,'N','','N','','','FV','','N','D06','','N',31,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:35:00','0000-00-00','','','','N','10:35:00','11:11:11','','','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','2','10:35:38',0,'','reception','2025-11-15 10:35:38','darshan','2025-11-15 11:11:11'),(3414,0,0,'O','N','2526',2523,0,'2025-11-15','2026-02-14',2581,0,2523,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','11:16:31','','N','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','2','10:37:19',0,'','drashti','2025-11-15 10:37:19','darshan','2025-11-15 11:16:31'),(3415,0,0,'O','N','2526',2524,0,'2025-11-15','2026-02-14',2582,0,2524,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','11:26:49','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','10:48:56',0,'','reception','2025-11-15 10:48:56','darshan','2025-11-15 11:26:49'),(3416,0,0,'O','N','2526',1649,0,'2025-11-15','0000-00-00',1694,0,1649,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','11:28:54','','','N','Y',NULL,'O','O','G03','','0000-00-00 00:00:00','2','10:53:54',0,'','reception','2025-11-15 10:53:54','darshan','2025-11-15 11:28:54'),(3417,0,0,'O','N','2526',812,0,'2025-11-15','0000-00-00',843,0,812,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','11:37:40','','','N','Y',NULL,'O','O','F03','','0000-00-00 00:00:00','2','10:57:50',0,'','reception','2025-11-15 10:57:50','darshan','2025-11-15 11:37:40'),(3418,0,0,'O','N','2526',818,0,'2025-11-15','0000-00-00',849,0,818,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','11:45:14','','','N','Y',NULL,'O','O','G04','','0000-00-00 00:00:00','4','11:03:58',0,'','drashti','2025-11-15 11:03:58','drarchit','2025-11-15 11:45:14'),(3419,0,0,'O','N','2526',1949,0,'2025-11-15','0000-00-00',1997,0,1949,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','11:41:31','','','N','Y',NULL,'O','O','G05','','0000-00-00 00:00:00','2','11:04:47',0,'','reception','2025-11-15 11:04:47','darshan','2025-11-15 11:41:31'),(3420,0,0,'O','N','2526',2525,0,'2025-11-15','2026-02-14',2583,0,2525,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','12:25:13','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:19:14',0,'','reception','2025-11-15 11:19:14','darshan','2025-11-15 12:25:13'),(3421,0,0,'O','N','2526',2526,0,'2025-11-15','2026-02-14',2584,0,2526,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','13:51:10','','N','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','11:21:15',0,'','reception','2025-11-15 11:21:15','darshan','2025-11-15 13:51:10'),(3422,0,0,'O','N','2526',2527,0,'2025-11-15','2026-02-14',2585,0,2527,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','13:34:24','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','11:25:40',0,'','reception','2025-11-15 11:25:40','darshan','2025-11-15 13:34:24'),(3423,0,0,'O','N','2526',1397,0,'2025-11-15','0000-00-00',1437,0,1397,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','11:57:33','','','N','Y',NULL,'O','O','G06','','0000-00-00 00:00:00','2','11:26:24',0,'','janvi','2025-11-15 11:26:24','darshan','2025-11-15 11:57:33'),(3424,0,0,'O','N','2526',1978,0,'2025-11-15','0000-00-00',2026,0,1978,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','00:00:00','','','N','N',NULL,'O','O','Z08','','0000-00-00 00:00:00','3','11:29:39',0,'','janvi','2025-11-15 11:29:39','','0000-00-00 00:00:00'),(3425,0,0,'O','N','2526',2123,0,'2025-11-15','0000-00-00',2174,0,2123,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','11:47:23','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','6','11:32:13',0,'','manshi','2025-11-15 11:32:13','drsagar','2025-11-15 11:47:23'),(3426,0,0,'O','N','2526',627,0,'2025-11-15','0000-00-00',657,0,627,'N','','N','','','FOLLOWUP','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','12:02:30','','','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','4','11:32:21',0,'','drashti','2025-11-15 11:32:21','drarchit','2025-11-15 12:02:30'),(3427,0,0,'O','N','2526',2528,0,'2025-11-15','2026-02-14',1616,0,2528,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','11:47:43','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','6','11:33:33',0,'','manshi','2025-11-15 11:33:33','drsagar','2025-11-15 11:47:43'),(3428,0,0,'O','N','2526',1019,0,'2025-11-15','0000-00-00',1053,0,1019,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','00:00:00','','','N','N',NULL,'O','O','Z11','','0000-00-00 00:00:00','3','11:33:38',0,'','drashti','2025-11-15 11:33:37','','0000-00-00 00:00:00'),(3429,0,0,'O','N','2526',2529,0,'2025-11-15','2026-02-14',2586,0,2529,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','12:03:04','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','6','11:41:18',0,'','manshi','2025-11-15 11:41:18','drsagar','2025-11-15 12:03:04'),(3430,0,0,'O','N','2526',496,0,'2025-11-15','0000-00-00',521,0,496,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','12:04:38','','','N','Y',NULL,'O','O','H03','','0000-00-00 00:00:00','2','11:41:45',0,'','reception','2025-11-15 11:41:44','darshan','2025-11-15 12:04:38'),(3431,0,0,'O','N','2526',2530,0,'2025-11-15','2026-02-14',2587,0,2530,'N','','N','','','','','N','D02','','N',179,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','00:00:00','','','N','N',NULL,'O','N','Z13','','0000-00-00 00:00:00','3','11:43:12',0,'','janvi','2025-11-15 11:43:12','','0000-00-00 00:00:00'),(3432,0,0,'O','N','2526',1017,0,'2025-11-15','0000-00-00',1051,0,1017,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','12:08:29','','','N','Y',NULL,'O','O','H04','','0000-00-00 00:00:00','2','11:45:20',0,'','reception','2025-11-15 11:45:20','darshan','2025-11-15 12:08:29'),(3433,0,0,'O','N','2526',2531,0,'2025-11-15','2026-02-14',2588,0,2531,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','11:57:53','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','4','11:46:03',0,'','drashti','2025-11-15 11:46:03','drarchit','2025-11-15 11:57:53'),(3434,0,0,'O','N','2526',2532,0,'2025-11-15','2026-02-14',2589,0,2532,'N','','N','','','NV','','N','D06','','N',180,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','13:36:25','','N','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','12:00:13',0,'','reception','2025-11-15 12:00:13','darshan','2025-11-15 13:36:25'),(3435,0,0,'O','N','2526',1678,0,'2025-11-15','0000-00-00',1723,0,1678,'N','','N','','','FOLLOWUP E','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','12:21:19','','','N','Y',NULL,'O','O','I03','','0000-00-00 00:00:00','2','12:07:02',0,'','reception','2025-11-15 12:07:02','darshan','2025-11-15 12:21:19'),(3436,0,0,'O','N','2526',2506,0,'2025-11-15','0000-00-00',2563,0,2506,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','00:00:00','','','N','N',NULL,'O','O','Z14','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-11-15 12:21:01','','0000-00-00 00:00:00'),(3437,0,0,'O','N','2526',1474,0,'2025-11-15','0000-00-00',1515,0,1474,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:23:00','0000-00-00','','','','N','12:23:00','12:36:41','','','N','Y',NULL,'O','O','J03','','0000-00-00 00:00:00','2','12:23:30',0,'','reception','2025-11-15 12:23:30','darshan','2025-11-15 12:36:41'),(3438,0,0,'O','N','2526',2533,0,'2025-11-15','2026-02-14',2590,0,2533,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:25:00','0000-00-00','','','','N','12:25:00','00:00:00','','','N','N',NULL,'O','N','Z15','','0000-00-00 00:00:00','3','12:25:19',0,'','janvi','2025-11-15 12:25:19','','0000-00-00 00:00:00'),(3439,0,0,'O','N','2526',1945,0,'2025-11-15','0000-00-00',1993,0,1945,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:25:00','0000-00-00','','','','N','12:25:00','12:46:39','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','2','12:25:26',0,'','reception','2025-11-15 12:25:26','darshan','2025-11-15 12:46:39'),(3440,0,0,'O','N','2526',2534,0,'2025-11-15','2026-02-14',2591,0,2534,'N','','N','','','NV','','N','D06','','N',181,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','13:55:40','','N','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','2','12:28:06',0,'','reception','2025-11-15 12:28:06','darshan','2025-11-15 13:55:40'),(3441,0,0,'O','N','2526',2535,0,'2025-11-15','2026-02-14',2592,0,2535,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:31:00','0000-00-00','','','','N','12:31:00','13:03:29','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','12:31:05',0,'','drashti','2025-11-15 12:31:05','darshan','2025-11-15 13:03:29'),(3442,0,0,'O','N','2526',1464,0,'2025-11-15','0000-00-00',1505,0,1464,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:39:00','0000-00-00','','','','N','12:39:00','13:07:34','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','2','12:39:16',0,'','reception','2025-11-15 12:39:16','darshan','2025-11-15 13:07:34'),(3443,0,0,'O','N','2526',2536,0,'2025-11-15','2026-02-14',2593,0,2536,'N','','N','','','NV','','N','D06','','N',182,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:50:00','0000-00-00','','','','N','12:50:00','13:26:03','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','2','12:50:16',0,'','reception','2025-11-15 12:50:16','darshan','2025-11-15 13:26:03'),(3444,0,0,'O','N','2526',2537,0,'2025-11-15','2026-02-14',2594,0,2537,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:01:00','0000-00-00','','','','N','13:01:00','13:33:33','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','2','13:01:45',0,'','reception','2025-11-15 13:01:45','darshan','2025-11-15 13:33:33'),(3445,0,0,'O','N','2526',2538,0,'2025-11-15','2026-02-14',2595,0,2538,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:10:00','0000-00-00','','','','N','13:10:00','13:41:51','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','2','13:10:48',0,'','reception','2025-11-15 13:10:48','darshan','2025-11-15 13:41:51'),(3446,0,0,'O','N','2526',2539,0,'2025-11-15','2026-02-14',2596,0,2539,'N','','N','','','NC','','N','D02','','N',185,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:26:00','0000-00-00','','','','N','13:26:00','00:00:00','','','N','N',NULL,'O','N','Z23','','0000-00-00 00:00:00','3','13:26:34',0,'','reception','2025-11-15 13:26:34','','0000-00-00 00:00:00'),(3447,0,0,'O','N','2526',2540,0,'2025-11-15','2026-02-14',2597,0,2540,'N','','N','','','NV','','N','D06','','N',186,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:39:00','0000-00-00','','','','N','13:39:00','00:00:00','','Y','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','2','13:39:06',0,'','drashti','2025-11-15 13:39:06','darshan','2025-11-15 13:47:34'),(3448,0,0,'O','N','2526',1721,0,'2025-11-15','0000-00-00',1765,0,1721,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:12:00','0000-00-00','','','','N','14:12:00','00:00:00','','','N','N',NULL,'O','O','Z25','','0000-00-00 00:00:00','2','14:12:24',0,'','reception','2025-11-15 14:12:24','','0000-00-00 00:00:00'),(3449,0,0,'O','N','2526',1004,0,'2025-11-15','0000-00-00',1036,0,1004,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:43:00','0000-00-00','','','','N','17:43:00','00:00:00','','','N','N',NULL,'O','O','Z26','','0000-00-00 00:00:00','3','17:43:40',0,'','janvi','2025-11-15 17:43:40','','0000-00-00 00:00:00'),(3450,0,0,'O','N','2526',2541,0,'2025-11-15','2026-02-14',2598,0,2541,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:56:00','0000-00-00','','','','N','17:56:00','00:00:00','','','N','N',NULL,'O','N','Z27','','0000-00-00 00:00:00','3','17:56:51',0,'','priyanshi','2025-11-15 17:56:51','','0000-00-00 00:00:00'),(3451,0,0,'O','N','2526',2542,0,'2025-11-15','2026-02-14',2599,0,2542,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','00:00:00','','','N','N',NULL,'O','N','Z28','','0000-00-00 00:00:00','3','17:57:39',0,'','janvi','2025-11-15 17:57:39','','0000-00-00 00:00:00'),(3452,0,0,'O','N','2526',1893,0,'2025-11-15','0000-00-00',1940,0,1893,'N','','N','','','','','N','D02','','N',133,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','00:00:00','','','N','N',NULL,'O','O','Z29','','0000-00-00 00:00:00','3','17:59:39',0,'','reception','2025-11-15 17:59:39','','0000-00-00 00:00:00'),(3453,0,0,'O','N','2526',2543,0,'2025-11-15','2026-02-14',2600,0,2543,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','0000-00-00','','','','N','18:00:00','00:00:00','','','N','N',NULL,'O','N','Z30','','0000-00-00 00:00:00','3','18:00:13',0,'','priyanshi','2025-11-15 18:00:12','','0000-00-00 00:00:00'),(3454,0,0,'O','N','2526',1974,0,'2025-11-15','0000-00-00',2022,0,1974,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:08:00','0000-00-00','','','','N','18:08:00','00:00:00','','','N','Y',NULL,'O','O','Z31','','0000-00-00 00:00:00','3','18:09:02',0,'','janvi','2025-11-15 18:09:02','','0000-00-00 00:00:00'),(3455,0,0,'O','N','2526',2544,0,'2025-11-15','2026-02-14',2601,0,2544,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','00:00:00','','','N','N',NULL,'O','N','Z32','','0000-00-00 00:00:00','3','18:10:09',0,'','reception','2025-11-15 18:10:09','','0000-00-00 00:00:00'),(3456,0,0,'O','N','2526',2545,0,'2025-11-15','2026-02-14',2602,0,2545,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:27:00','0000-00-00','','','','N','18:27:00','00:00:00','','','N','N',NULL,'O','N','Z33','','0000-00-00 00:00:00','3','18:27:18',0,'','priyanshi','2025-11-15 18:27:18','','0000-00-00 00:00:00'),(3457,0,0,'O','N','2526',2191,0,'2025-11-15','0000-00-00',2248,0,2191,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','00:00:00','','','N','N',NULL,'O','O','Z34','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-15 18:28:39','','0000-00-00 00:00:00'),(3458,0,0,'O','N','2526',1980,0,'2025-11-15','0000-00-00',2028,0,1980,'N','','N','','','FC','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','19:08:53','','','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','6','18:44:37',0,'','reception','2025-11-15 18:44:37','drsagar','2025-11-15 19:08:53'),(3459,0,0,'O','N','2526',2360,0,'2025-11-15','0000-00-00',2415,0,2360,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','00:00:00','','','N','N',NULL,'O','O','Z36','','0000-00-00 00:00:00','','00:00:00',0,'','priyanshi','2025-11-15 18:48:07','','0000-00-00 00:00:00'),(3460,0,0,'O','N','2526',2546,0,'2025-11-15','2026-02-14',2603,0,2546,'N','','N','','','NC','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:01:00','0000-00-00','','','','N','19:01:00','19:08:41','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','6','19:01:31',0,'','reception','2025-11-15 19:01:31','drsagar','2025-11-15 19:08:41'),(3461,0,0,'O','N','2526',2194,0,'2025-11-15','0000-00-00',2251,0,2194,'N','','N','','','FC','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:09:00','0000-00-00','','','','N','19:09:00','19:17:31','','','N','Y',NULL,'O','O','Z38','','0000-00-00 00:00:00','6','19:09:55',0,'','reception','2025-11-15 19:09:55','drsagar','2025-11-15 19:17:31'),(3462,0,0,'O','N','2526',2547,0,'2025-11-15','2026-02-14',2604,0,2547,'N','','N','','','EMR','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:23:00','0000-00-00','','','','N','19:23:00','00:00:00','','','N','N',NULL,'O','N','Z39','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-11-15 19:23:16','','0000-00-00 00:00:00'),(3463,0,0,'O','N','2526',2322,0,'2025-11-15','0000-00-00',2379,0,2322,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:29:00','0000-00-00','','','','N','19:29:00','00:00:00','','','N','N',NULL,'O','O','Z40','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-11-15 19:29:35','','0000-00-00 00:00:00'),(3464,0,0,'O','N','2526',1288,0,'2025-11-15','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:33:00','0000-00-00','','','','N','19:33:00','00:00:00','','','N','N',NULL,'O','O','Z41','','0000-00-00 00:00:00','','00:00:00',0,'','priyanshi','2025-11-15 19:33:15','','0000-00-00 00:00:00'),(3465,0,0,'O','N','2526',2548,0,'2025-11-15','2026-02-14',2078,0,2548,'N','','N','','','RBS','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:00:00','0000-00-00','','','','N','20:00:00','00:00:00','','','N','N',NULL,'O','N','Z42','','0000-00-00 00:00:00','5','20:00:03',0,'','reception','2025-11-15 20:00:03','','0000-00-00 00:00:00'),(3466,0,0,'O','N','2526',2549,0,'2025-11-16','2026-02-15',2605,0,2549,'N','','N','','','','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:05:00','0000-00-00','','','','N','09:05:00','00:00:00','','','N','N',NULL,'O','N','Z01','','0000-00-00 00:00:00','','00:00:00',0,'','manshi','2025-11-16 09:05:11','','0000-00-00 00:00:00'),(3467,0,0,'O','N','2526',2550,0,'2025-11-16','2026-02-15',2606,0,2550,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:07:00','0000-00-00','','','','N','09:07:00','00:00:00','','','N','N',NULL,'O','N','Z02','','0000-00-00 00:00:00','3','09:07:13',0,'','manshi','2025-11-16 09:07:13','','0000-00-00 00:00:00'),(3468,0,0,'I','N','2526',0,161,'2025-11-16','2026-02-15',2607,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:00:00','2025-11-20','','1','mo','N','09:00:00','12:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-16 10:20:48','mo','2025-11-20 13:21:01'),(3470,0,0,'I','N','2526',0,162,'2025-11-16','2026-02-15',2608,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','2025-11-17','','1','mo','N','10:00:00','12:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-16 10:34:04','riya','2025-11-17 12:48:47'),(3471,0,0,'O','N','2526',2551,0,'2025-11-16','2026-02-15',2609,0,2551,'N','','N','','','','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','00:00:00','','','N','N',NULL,'O','N','Z03','','0000-00-00 00:00:00','','00:00:00',0,'','manshi','2025-11-16 11:48:37','','0000-00-00 00:00:00'),(3472,0,0,'O','N','2526',2552,0,'2025-11-16','2026-02-15',2610,0,2552,'N','','N','','','','Y','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:17:00','0000-00-00','','','','N','12:17:00','00:00:00','','','N','N',NULL,'O','N','Z04','','0000-00-00 00:00:00','6','12:17:38',0,'','manshi','2025-11-16 12:17:38','','0000-00-00 00:00:00'),(3473,0,0,'I','N','2526',0,163,'2025-11-16','2026-02-15',2611,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:30:00','2025-11-23','','1','mo','N','17:30:00','12:25:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-16 17:32:45','mo','2025-11-23 13:12:36'),(3474,0,0,'I','N','2526',0,164,'2025-11-16','2026-02-15',2612,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:20:00','2025-11-20','','1','mo','N','18:20:00','20:20:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-16 18:19:04','mo','2025-11-20 22:38:32'),(3475,0,0,'O','N','2526',1288,0,'2025-11-17','0000-00-00',1327,0,1288,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:55:00','0000-00-00','','','','N','08:55:00','00:00:00','','','N','N',NULL,'O','O','Z01','','0000-00-00 00:00:00','3','08:55:20',0,'','reception','2025-11-17 08:55:20','','0000-00-00 00:00:00'),(3476,0,0,'O','N','2526',2553,0,'2025-11-17','2026-02-16',2613,0,2553,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:58:00','0000-00-00','','','','N','08:58:00','00:00:00','','','N','N',NULL,'O','N','Z02','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-11-17 08:58:53','','0000-00-00 00:00:00'),(3477,0,0,'O','N','2526',2118,0,'2025-11-17','0000-00-00',1763,0,2118,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:01:00','0000-00-00','','','','N','09:01:00','00:00:00','','','N','N',NULL,'O','O','Z03','','0000-00-00 00:00:00','3','09:01:21',0,'','reception','2025-11-17 09:01:21','','0000-00-00 00:00:00'),(3478,0,0,'O','N','2526',2554,0,'2025-11-17','2026-02-16',2614,0,2554,'N','','N','','','ER','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:03:00','0000-00-00','','','','N','09:03:00','00:00:00','','','N','N',NULL,'O','N','Z04','','0000-00-00 00:00:00','7','09:03:07',0,'','reception','2025-11-17 09:03:07','','0000-00-00 00:00:00'),(3479,0,0,'O','N','2526',2555,0,'2025-11-17','2026-02-16',2615,0,2555,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:42:00','0000-00-00','','','','N','09:42:00','00:00:00','','','N','N',NULL,'O','N','Z05','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-11-17 09:42:59','','0000-00-00 00:00:00'),(3480,0,0,'O','N','2526',1421,0,'2025-11-17','0000-00-00',1462,0,1421,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:01:00','0000-00-00','','','','N','10:01:00','11:06:01','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','10:01:29',0,'','reception','2025-11-17 10:01:29','darshan','2025-11-17 11:06:01'),(3481,0,0,'O','N','2526',315,0,'2025-11-17','0000-00-00',331,0,315,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','0000-00-00','','','','N','10:15:00','11:40:58','','','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','2','10:15:18',0,'','reception','2025-11-17 10:15:18','darshan','2025-11-17 11:40:58'),(3482,0,0,'O','N','2526',2556,0,'2025-11-17','2026-02-16',2616,0,2556,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','11:54:07','','N','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','2','10:16:14',0,'','drashti','2025-11-17 10:16:14','darshan','2025-11-17 11:54:07'),(3483,0,0,'O','N','2526',2557,0,'2025-11-17','2026-02-16',2617,0,2557,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:18:00','0000-00-00','','','','N','10:18:00','11:09:13','','','N','Y',NULL,'O','N','E02','','0000-00-00 00:00:00','2','10:18:24',0,'','reception','2025-11-17 10:18:24','darshan','2025-11-17 11:09:13'),(3484,0,0,'O','N','2526',2558,0,'2025-11-17','2026-02-16',2618,0,2558,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:35:00','0000-00-00','','','','N','10:35:00','11:52:33','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','2','10:35:59',0,'','reception','2025-11-17 10:35:59','darshan','2025-11-17 11:52:33'),(3485,0,0,'O','N','2526',2047,0,'2025-11-17','0000-00-00',2102,0,2047,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','11:12:55','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','10:40:00',0,'','reception','2025-11-17 10:40:00','darshan','2025-11-17 11:12:55'),(3486,0,0,'O','N','2526',1993,0,'2025-11-17','0000-00-00',2044,0,1993,'N','','N','','','FOLLOWUP V','','N','D06','','N',143,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:45:00','0000-00-00','','','','N','10:45:00','11:17:26','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','2','10:45:54',0,'','reception','2025-11-17 10:45:54','darshan','2025-11-17 11:17:26'),(3487,0,0,'O','N','2526',2069,0,'2025-11-17','0000-00-00',2123,0,2069,'N','','N','','','FOLLOWUP V','','N','D06','','N',149,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','11:27:34','','','N','Y',NULL,'O','O','G02','','0000-00-00 00:00:00','2','10:54:22',0,'','reception','2025-11-17 10:54:22','darshan','2025-11-17 11:27:34'),(3488,0,0,'O','N','2526',2062,0,'2025-11-17','0000-00-00',2116,0,2062,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','11:23:10','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:57:30',0,'','reception','2025-11-17 10:57:30','darshan','2025-11-17 11:23:10'),(3489,0,0,'O','N','2526',2559,0,'2025-11-17','2026-02-16',2619,0,2559,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','12:44:26','','N','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','2','11:02:39',0,'','shweta','2025-11-17 11:02:39','darshan','2025-11-17 12:44:26'),(3490,0,0,'O','N','2526',1251,0,'2025-11-17','0000-00-00',1292,0,1251,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','00:00:00','','','N','N',NULL,'O','O','Z10','','0000-00-00 00:00:00','3','11:12:02',0,'','shweta','2025-11-17 11:12:02','','0000-00-00 00:00:00'),(3491,0,0,'O','N','2526',2560,0,'2025-11-17','2026-02-16',2620,0,2560,'N','','N','','','NC','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','11:21:51','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','6','11:15:51',0,'','reception','2025-11-17 11:15:51','drsagar','2025-11-17 11:21:51'),(3492,0,0,'O','N','2526',1992,0,'2025-11-17','0000-00-00',2043,0,1992,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','12:15:53','','','N','Y',NULL,'O','O','I01','','0000-00-00 00:00:00','2','11:16:09',0,'','reception','2025-11-17 11:16:09','darshan','2025-11-17 12:15:53'),(3493,0,0,'O','N','2526',2561,0,'2025-11-17','2026-02-16',2621,0,2561,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','11:29:48','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','6','11:17:32',0,'','drashti','2025-11-17 11:17:32','drsagar','2025-11-17 11:29:48'),(3494,0,0,'O','N','2526',759,0,'2025-11-17','0000-00-00',790,0,759,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','11:53:28','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','6','11:18:01',0,'','drashti','2025-11-17 11:18:01','drsagar','2025-11-17 11:53:28'),(3495,0,0,'O','N','2526',2562,0,'2025-11-17','2026-02-16',2622,0,2562,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','12:23:22','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','2','11:25:00',0,'','reception','2025-11-17 11:25:00','darshan','2025-11-17 12:23:22'),(3496,0,0,'O','N','2526',1353,0,'2025-11-17','0000-00-00',1393,0,1353,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','12:35:56','','','N','Y',NULL,'O','O','Z15','','0000-00-00 00:00:00','2','11:25:52',0,'','reception','2025-11-17 11:25:52','darshan','2025-11-17 12:35:56'),(3497,0,0,'O','N','2526',2056,0,'2025-11-17','0000-00-00',2110,0,2056,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','12:52:54','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','2','11:29:08',0,'','reception','2025-11-17 11:29:08','darshan','2025-11-17 12:52:54'),(3498,0,0,'O','N','2526',2563,0,'2025-11-17','2026-02-16',2623,0,2563,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','13:37:23','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','11:29:55',0,'','reception','2025-11-17 11:29:55','darshan','2025-11-17 13:37:23'),(3499,0,0,'O','N','2526',2141,0,'2025-11-17','0000-00-00',2192,0,2141,'N','','N','','','FV','','N','D06','','N',144,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','12:57:20','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','2','11:31:33',0,'','reception','2025-11-17 11:31:33','darshan','2025-11-17 12:57:20'),(3500,0,0,'O','N','2526',2564,0,'2025-11-17','2026-02-16',2624,0,2564,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','13:56:59','','N','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:35:52',0,'','reception','2025-11-17 11:35:52','darshan','2025-11-17 13:56:59'),(3501,0,0,'O','N','2526',1432,0,'2025-11-17','0000-00-00',1473,0,1432,'N','','N','','','','','N','D14','','N',102,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','00:00:00','','','N','N',NULL,'O','O','Z18','','0000-00-00 00:00:00','7','11:38:10',0,'','urvashi','2025-11-17 11:38:10','','0000-00-00 00:00:00'),(3502,0,0,'O','N','2526',2565,0,'2025-11-17','2026-02-16',2625,0,2565,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','13:03:27','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','2','11:38:30',0,'','reception','2025-11-17 11:38:30','darshan','2025-11-17 13:03:27'),(3503,0,0,'O','N','2526',384,0,'2025-11-17','0000-00-00',406,0,384,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','12:12:34','','','N','Y',NULL,'O','O','H03','','0000-00-00 00:00:00','2','11:39:12',0,'','reception','2025-11-17 11:39:12','darshan','2025-11-17 12:12:34'),(3504,0,0,'O','N','2526',961,0,'2025-11-17','0000-00-00',994,0,961,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','12:19:29','','','N','Y',NULL,'O','O','H04','','0000-00-00 00:00:00','2','11:40:24',0,'','reception','2025-11-17 11:40:24','darshan','2025-11-17 12:19:29'),(3505,0,0,'O','N','2526',2566,0,'2025-11-17','2026-02-16',2626,0,2566,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','14:13:33','','N','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','2','11:45:50',0,'','drashti','2025-11-17 11:45:50','darshan','2025-11-17 14:13:33'),(3506,0,0,'O','N','2526',2245,0,'2025-11-17','0000-00-00',2301,0,2245,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','12:00:51','','','N','Y',NULL,'O','O','Z21','','0000-00-00 00:00:00','6','11:48:45',0,'','urvashi','2025-11-17 11:48:45','drsagar','2025-11-17 12:00:51'),(3507,0,0,'O','N','2526',2567,0,'2025-11-17','2026-02-16',2627,0,2567,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:55:00','0000-00-00','','','','N','11:55:00','13:49:13','','N','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','11:55:35',0,'','drashti','2025-11-17 11:55:35','darshan','2025-11-17 13:49:13'),(3508,0,0,'O','N','2526',1928,0,'2025-11-17','0000-00-00',1976,0,1928,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','12:00:37','','','N','Y',NULL,'O','O','Z22','','0000-00-00 00:00:00','6','11:56:17',0,'','janvi','2025-11-17 11:56:17','drsagar','2025-11-17 12:00:37'),(3509,0,0,'O','N','2526',2568,0,'2025-11-17','2026-02-16',2628,0,2568,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:01:00','0000-00-00','','','','N','12:01:00','12:07:25','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','6','12:01:03',0,'','janvi','2025-11-17 12:01:03','drsagar','2025-11-17 12:07:25'),(3510,0,0,'O','N','2526',2065,0,'2025-11-17','0000-00-00',2119,0,2065,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:03:00','0000-00-00','','','','N','12:03:00','12:11:27','','','N','Y',NULL,'O','O','Z24','','0000-00-00 00:00:00','6','12:03:24',0,'','janvi','2025-11-17 12:03:24','drsagar','2025-11-17 12:11:27'),(3511,0,0,'O','N','2526',2569,0,'2025-11-17','2026-02-16',2629,0,2569,'N','','N','','','NC','','N','D02','','N',80,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','00:00:00','','','N','N',NULL,'O','N','Z25','','0000-00-00 00:00:00','3','12:09:56',0,'','drashti','2025-11-17 12:09:56','','0000-00-00 00:00:00'),(3512,0,0,'O','N','2526',848,0,'2025-11-17','0000-00-00',880,0,848,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:13:00','0000-00-00','','','','N','12:13:00','13:35:32','','','N','Y',NULL,'O','O','Z26','','0000-00-00 00:00:00','2','12:13:25',0,'','reception','2025-11-17 12:13:25','darshan','2025-11-17 13:35:32'),(3513,0,0,'O','N','2526',2570,0,'2025-11-17','2026-02-16',2630,0,2570,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:37:00','0000-00-00','','','','N','12:37:00','13:05:24','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','12:37:58',0,'','reception','2025-11-17 12:37:58','darshan','2025-11-17 13:05:24'),(3514,0,0,'O','N','2526',2571,0,'2025-11-17','2026-02-16',2631,0,2571,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:44:00','0000-00-00','','','','N','12:44:00','13:44:55','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','2','12:44:59',0,'','drashti','2025-11-17 12:44:59','darshan','2025-11-17 13:44:55'),(3515,0,0,'O','N','2526',2572,0,'2025-11-17','2026-02-16',2632,0,2572,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:46:00','0000-00-00','','','','N','12:46:00','13:18:33','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:46:21',0,'','reception','2025-11-17 12:46:21','darshan','2025-11-17 13:18:33'),(3516,0,0,'O','N','2526',27,0,'2025-11-17','0000-00-00',29,0,27,'N','','N','','','FV','Y','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:57:00','0000-00-00','','','','N','12:57:00','13:53:54','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','2','12:57:36',0,'','reception','2025-11-17 12:57:36','darshan','2025-11-17 13:53:54'),(3517,0,0,'I','N','2526',0,165,'2025-11-17','2026-02-16',2633,0,0,'N','','N','','','','N','N','D02','','N',0,'','70',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','2025-11-26','','3','mo','N','13:00:00','13:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-17 12:59:52','mo','2025-11-26 13:45:05'),(3518,0,0,'O','N','2526',2573,0,'2025-11-17','2026-02-16',2634,0,2573,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:03:00','0000-00-00','','','','N','13:03:00','13:56:20','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','2','13:03:44',0,'','reception','2025-11-17 13:03:43','darshan','2025-11-17 13:56:20'),(3519,0,0,'O','N','2526',2433,0,'2025-11-17','0000-00-00',2489,0,2433,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:14:00','0000-00-00','','','','N','13:14:00','00:00:00','','','N','N',NULL,'O','O','Z30','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-11-17 13:14:57','','0000-00-00 00:00:00'),(3520,0,0,'O','N','2526',796,0,'2025-11-17','0000-00-00',827,0,796,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:18:00','0000-00-00','','','','N','13:18:00','14:12:08','','','N','Y',NULL,'O','O','Z31','','0000-00-00 00:00:00','2','13:18:52',0,'','reception','2025-11-17 13:18:52','darshan','2025-11-17 14:12:08'),(3521,0,0,'O','N','2526',1005,0,'2025-11-17','0000-00-00',1037,0,1005,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:19:00','0000-00-00','','','','N','13:19:00','00:00:00','','','N','N',NULL,'O','O','Z32','','0000-00-00 00:00:00','7','13:19:45',0,'','janvi','2025-11-17 13:19:45','','0000-00-00 00:00:00'),(3522,0,0,'O','N','2526',2574,0,'2025-11-17','2026-02-16',2635,0,2574,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:07:00','0000-00-00','','','','N','14:07:00','00:00:00','','','N','N',NULL,'O','N','Z33','','0000-00-00 00:00:00','7','14:07:09',0,'','shweta','2025-11-17 14:07:09','','0000-00-00 00:00:00'),(3523,0,0,'O','N','2526',952,0,'2025-11-17','0000-00-00',983,0,952,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:14:00','0000-00-00','','','','N','14:14:00','14:18:45','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','14:14:49',0,'','reception','2025-11-17 14:14:49','darshan','2025-11-17 14:18:45'),(3524,0,0,'O','N','2526',957,0,'2025-11-17','0000-00-00',990,0,957,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:48:00','0000-00-00','','','','N','14:48:00','00:00:00','','','N','N',NULL,'O','O','Z34','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-11-17 14:48:28','','0000-00-00 00:00:00'),(3525,0,0,'O','N','2526',2096,0,'2025-11-17','0000-00-00',2149,0,2096,'N','','N','','','FOLLOWUP V','','N','D06','','N',99,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:39:00','0000-00-00','','','','N','16:39:00','17:18:56','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','16:39:46',0,'','reception','2025-11-17 16:39:46','darshan','2025-11-17 17:18:56'),(3526,0,0,'O','N','2526',219,0,'2025-11-17','0000-00-00',232,0,219,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:46:00','0000-00-00','','','','N','16:46:00','17:22:54','','','N','Y',NULL,'O','O','L03','','0000-00-00 00:00:00','2','16:46:03',0,'','reception','2025-11-17 16:46:03','darshan','2025-11-17 17:22:54'),(3527,0,0,'O','N','2526',2575,0,'2025-11-17','2026-02-16',2636,0,2575,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:49:00','0000-00-00','','','','N','16:49:00','19:13:18','','N','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','16:49:02',0,'','reception','2025-11-17 16:49:02','darshan','2025-11-17 19:13:18'),(3528,0,0,'O','N','2526',2576,0,'2025-11-17','2026-02-16',2637,0,2576,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:50:00','0000-00-00','','','','N','16:50:00','00:00:00','','','N','N',NULL,'O','N','Z35','','0000-00-00 00:00:00','5','16:50:19',0,'','janvi','2025-11-17 16:50:19','','0000-00-00 00:00:00'),(3529,0,0,'O','N','2526',2577,0,'2025-11-17','2026-02-16',2638,0,2577,'N','','N','','','NV','','N','D06','','N',189,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:54:00','0000-00-00','','','','N','16:54:00','18:34:40','','N','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','2','16:54:30',0,'','reception','2025-11-17 16:54:30','darshan','2025-11-19 18:34:40'),(3530,0,0,'O','N','2526',2578,0,'2025-11-17','2026-02-16',2639,0,2578,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:56:00','0000-00-00','','','','N','16:56:00','19:16:06','','N','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','16:56:09',0,'','reception','2025-11-17 16:56:09','darshan','2025-11-17 19:16:06'),(3531,0,0,'O','N','2526',2579,0,'2025-11-17','2026-02-16',2640,0,2579,'N','','N','','','NV','','N','D06','','N',190,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:01:00','0000-00-00','','','','N','17:01:00','19:43:59','','N','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','2','17:01:34',0,'','reception','2025-11-17 17:01:34','darshan','2025-11-17 19:43:59'),(3532,0,0,'O','N','2526',2580,0,'2025-11-17','2026-02-16',2641,0,2580,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:04:00','0000-00-00','','','','N','17:04:00','19:51:52','','N','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','2','17:04:22',0,'','reception','2025-11-17 17:04:22','darshan','2025-11-17 19:51:52'),(3533,0,0,'O','N','2526',1875,0,'2025-11-17','0000-00-00',1922,0,1875,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:11:00','0000-00-00','','','','N','17:11:00','17:42:23','','','N','Y',NULL,'O','O','L05','','0000-00-00 00:00:00','2','17:11:17',0,'','reception','2025-11-17 17:11:17','darshan','2025-11-17 17:42:23'),(3534,0,0,'O','N','2526',2581,0,'2025-11-17','2026-02-16',2642,0,2581,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','00:00:00','','','N','N',NULL,'O','N','Z40','','0000-00-00 00:00:00','7','17:20:14',0,'','manshi','2025-11-17 17:20:14','','0000-00-00 00:00:00'),(3535,0,0,'O','N','2526',2582,0,'2025-11-17','2026-02-16',2643,0,2582,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:23:00','0000-00-00','','','','N','17:23:00','17:46:53','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','6','17:23:10',0,'','manshi','2025-11-17 17:23:10','drsagar','2025-11-17 17:46:53'),(3536,0,0,'O','N','2526',1540,0,'2025-11-17','0000-00-00',1583,0,1540,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:24:00','0000-00-00','','','','N','17:24:00','18:25:28','','','N','Y',NULL,'O','O','L06','','0000-00-00 00:00:00','2','17:24:52',0,'','reception','2025-11-17 17:24:52','darshan','2025-11-17 18:25:28'),(3537,0,0,'O','N','2526',2583,0,'2025-11-17','2026-02-16',2644,0,2583,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:36:00','0000-00-00','','','','N','17:36:00','18:03:03','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:36:35',0,'','reception','2025-11-17 17:36:35','darshan','2025-11-17 18:03:03'),(3538,0,0,'O','N','2526',1386,0,'2025-11-17','0000-00-00',1427,0,1386,'N','','N','','','FOLLOWUP E','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','18:32:45','','','N','Y',NULL,'O','O','Z42','','0000-00-00 00:00:00','2','17:51:03',0,'','drashti','2025-11-17 17:51:02','darshan','2025-11-17 18:32:45'),(3539,0,0,'O','N','2526',995,0,'2025-11-17','0000-00-00',1027,0,995,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','18:28:42','','','N','Y',NULL,'O','O','L08','','0000-00-00 00:00:00','2','18:02:42',0,'','reception','2025-11-17 18:02:42','darshan','2025-11-17 18:28:42'),(3540,0,0,'O','N','2526',2584,0,'2025-11-17','2026-02-16',2645,0,2584,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','19:57:03','','N','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','18:04:35',0,'','reception','2025-11-17 18:04:35','darshan','2025-11-17 19:57:03'),(3541,0,0,'O','N','2526',2585,0,'2025-11-17','2026-02-16',2646,0,2585,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','18:14:36','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','6','18:07:10',0,'','manshi','2025-11-17 18:07:10','drsagar','2025-11-17 18:14:36'),(3542,0,0,'O','N','2526',2074,0,'2025-11-17','0000-00-00',2128,0,2074,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','19:29:23','','','N','Y',NULL,'O','O','Z44','','0000-00-00 00:00:00','2','18:11:35',0,'','reception','2025-11-17 18:11:35','darshan','2025-11-17 19:29:23'),(3543,0,0,'O','N','2526',2586,0,'2025-11-17','2026-02-16',392,0,2586,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','00:00:00','','','N','N',NULL,'O','N','Z45','','0000-00-00 00:00:00','7','18:12:04',0,'','manshi','2025-11-17 18:12:04','','0000-00-00 00:00:00'),(3544,0,0,'O','N','2526',2587,0,'2025-11-17','2026-02-16',2647,0,2587,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','20:12:16','','N','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','2','18:19:55',0,'','reception','2025-11-17 18:19:55','darshan','2025-11-17 20:12:16'),(3545,0,0,'O','N','2526',776,0,'2025-11-17','0000-00-00',807,0,776,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','19:21:17','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','2','18:43:17',0,'','reception','2025-11-17 18:43:17','darshan','2025-11-17 19:21:17'),(3546,0,0,'O','N','2526',1446,0,'2025-11-17','0000-00-00',1487,0,1446,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','00:00:00','','','N','N',NULL,'O','O','Z46','','0000-00-00 00:00:00','7','18:44:58',0,'','manshi','2025-11-17 18:44:58','','0000-00-00 00:00:00'),(3547,0,0,'O','N','2526',2588,0,'2025-11-17','2026-02-16',2648,0,2588,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','19:36:02','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','18:49:06',0,'','drashti','2025-11-17 18:49:06','darshan','2025-11-17 19:36:02'),(3548,0,0,'O','N','2526',2200,0,'2025-11-17','0000-00-00',2256,0,2200,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:52:00','0000-00-00','','','','N','18:52:00','18:56:45','','','N','Y',NULL,'O','O','Z48','','0000-00-00 00:00:00','6','18:52:02',0,'','manshi','2025-11-17 18:52:02','drsagar','2025-11-17 18:56:45'),(3549,0,0,'O','N','2526',2589,0,'2025-11-17','2026-02-16',2649,0,2589,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','19:56:46','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','2','18:56:44',0,'','reception','2025-11-17 18:56:44','darshan','2025-11-17 19:56:46'),(3550,0,0,'O','N','2526',1277,0,'2025-11-17','0000-00-00',1316,0,1277,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:01:00','0000-00-00','','','','N','19:01:00','20:07:09','','','N','Y',NULL,'O','O','Z50','','0000-00-00 00:00:00','2','19:01:41',0,'','reception','2025-11-17 19:01:41','darshan','2025-11-17 20:07:09'),(3551,0,0,'O','N','2526',2590,0,'2025-11-17','2026-02-16',2650,0,2590,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:06:00','0000-00-00','','','','N','19:06:00','00:00:00','','','N','N',NULL,'O','N','Z51','','0000-00-00 00:00:00','7','19:06:42',0,'','manshi','2025-11-17 19:06:42','','0000-00-00 00:00:00'),(3552,0,0,'O','N','2526',1288,0,'2025-11-17','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:54:00','0000-00-00','','','','N','19:54:00','00:00:00','','','N','N',NULL,'O','O','Y01','','0000-00-00 00:00:00','3','19:54:57',0,'','janvi','2025-11-17 19:54:57','','0000-00-00 00:00:00'),(3553,0,0,'I','N','2526',0,166,'2025-11-17','2026-02-16',2651,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:15:00','2025-11-19','','1','mo','N','20:15:00','14:10:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-17 20:35:53','mo','2025-11-19 14:35:58'),(3554,0,0,'O','N','2526',2591,0,'2025-11-18','2026-02-17',2652,0,2591,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:03:00','0000-00-00','','','','N','09:03:00','00:00:00','','','N','N',NULL,'O','N','Z01','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-11-18 09:03:37','','0000-00-00 00:00:00'),(3555,0,0,'O','N','2526',2592,0,'2025-11-18','2026-02-17',2653,0,2592,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:10:00','0000-00-00','','','','N','09:10:00','00:00:00','','','N','N',NULL,'O','N','Z02','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-11-18 09:10:56','','0000-00-00 00:00:00'),(3556,0,0,'O','N','2526',709,0,'2025-11-18','0000-00-00',740,0,709,'N','','N','','','','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:13:00','0000-00-00','','','','N','09:13:00','00:00:00','','','N','N',NULL,'O','O','Z03','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-11-18 09:13:25','','0000-00-00 00:00:00'),(3557,0,0,'O','N','2526',2593,0,'2025-11-18','2026-02-17',2654,0,2593,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:41:00','0000-00-00','','','','N','09:41:00','00:00:00','','','N','N',NULL,'O','N','Z04','','0000-00-00 00:00:00','3','09:41:50',0,'','drashti','2025-11-18 09:41:50','','0000-00-00 00:00:00'),(3558,0,0,'O','N','2526',2594,0,'2025-11-18','2026-02-17',2655,0,2594,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:05:00','0000-00-00','','','','N','10:05:00','10:48:28','','','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:05:34',0,'','reception','2025-11-18 10:05:34','darshan','2025-11-18 10:48:28'),(3559,0,0,'O','N','2526',2595,0,'2025-11-18','2026-02-17',2656,0,2595,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:11:00','0000-00-00','','','','N','10:11:00','10:51:13','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','2','10:11:36',0,'','reception','2025-11-18 10:11:36','darshan','2025-11-18 10:51:13'),(3560,0,0,'O','N','2526',2166,0,'2025-11-18','0000-00-00',2221,0,2166,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:13:00','0000-00-00','','','','N','10:13:00','11:14:22','','','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','6','10:13:43',0,'','manshi','2025-11-18 10:13:43','drsagar','2025-11-18 11:14:22'),(3561,0,0,'O','N','2526',2596,0,'2025-11-18','2026-02-17',2657,0,2596,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:20:00','0000-00-00','','','','N','10:20:00','13:10:56','','N','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:20:37',0,'','drashti','2025-11-18 10:20:36','darshan','2025-11-18 13:10:56'),(3562,0,0,'O','N','2526',2597,0,'2025-11-18','2026-02-17',2658,0,2597,'N','','N','','','RNE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:26:00','0000-00-00','','','','N','10:26:00','11:06:41','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','10:26:32',0,'','reception','2025-11-18 10:26:32','darshan','2025-11-18 11:06:41'),(3563,0,0,'O','N','2526',1384,0,'2025-11-18','0000-00-00',1425,0,1384,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','00:00:00','','','N','N',NULL,'O','O','Z07','','0000-00-00 00:00:00','5','10:37:22',0,'','drashti','2025-11-18 10:37:22','','0000-00-00 00:00:00'),(3564,0,0,'O','N','2526',2598,0,'2025-11-18','2026-02-17',2659,0,2598,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','00:00:00','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','7','10:39:43',0,'','manshi','2025-11-18 10:39:43','','0000-00-00 00:00:00'),(3565,0,0,'O','N','2526',168,0,'2025-11-18','0000-00-00',181,0,168,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','11:20:49','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','2','10:46:04',0,'','reception','2025-11-18 10:46:04','darshan','2025-11-18 11:20:49'),(3566,0,0,'I','N','2526',0,167,'2025-11-18','2026-02-17',2660,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:00:00','2025-11-20','','1','mo','N','11:00:00','12:50:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-18 10:55:38','mo','2025-11-20 15:06:56'),(3567,0,0,'O','N','2526',2333,0,'2025-11-18','0000-00-00',2389,0,2333,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','00:00:00','','','N','Y',NULL,'O','O','Z10','','0000-00-00 00:00:00','3','10:59:22',0,'','drashti','2025-11-18 10:59:21','','0000-00-00 00:00:00'),(3568,0,0,'O','N','2526',221,0,'2025-11-18','0000-00-00',234,0,221,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:00:00','0000-00-00','','','','N','11:00:00','00:00:00','','','N','N',NULL,'O','O','Z11','','0000-00-00 00:00:00','3','11:00:49',0,'','drashti','2025-11-18 11:00:49','','0000-00-00 00:00:00'),(3569,0,0,'O','N','2526',2127,0,'2025-11-18','0000-00-00',2178,0,2127,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','11:32:08','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','2','11:03:47',0,'','reception','2025-11-18 11:03:47','darshan','2025-11-18 11:32:08'),(3570,0,0,'O','N','2526',2073,0,'2025-11-18','0000-00-00',2127,0,2073,'N','','N','','','FOLLOWUP C','','N','D02','','N',8,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','00:00:00','','','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','3','11:04:33',0,'','drashti','2025-11-18 11:04:33','','0000-00-00 00:00:00'),(3571,0,0,'O','N','2526',917,0,'2025-11-18','0000-00-00',948,0,917,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','11:46:50','','','N','Y',NULL,'O','O','G02','','0000-00-00 00:00:00','2','11:19:48',0,'','reception','2025-11-18 11:19:48','darshan','2025-11-18 11:46:50'),(3572,0,0,'O','N','2526',865,0,'2025-11-18','0000-00-00',897,0,865,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','11:56:18','','','N','Y',NULL,'O','O','H01','','0000-00-00 00:00:00','2','11:30:51',0,'','reception','2025-11-18 11:30:51','darshan','2025-11-18 11:56:18'),(3573,0,0,'O','N','2526',2599,0,'2025-11-18','2026-02-17',2661,0,2599,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','12:03:33','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:33:59',0,'','reception','2025-11-18 11:33:59','darshan','2025-11-18 12:03:33'),(3574,0,0,'O','N','2526',2220,0,'2025-11-18','0000-00-00',2276,0,2220,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','11:55:14','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','6','11:38:53',0,'','manshi','2025-11-18 11:38:53','drsagar','2025-11-18 11:55:14'),(3575,0,0,'O','N','2526',2600,0,'2025-11-18','2026-02-17',2662,0,2600,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','12:24:25','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','2','11:43:03',0,'','reception','2025-11-18 11:43:03','darshan','2025-11-18 12:24:24'),(3576,0,0,'O','N','2526',2601,0,'2025-11-18','2026-02-17',2663,0,2601,'N','','N','','','NC','','N','D02','','N',191,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','00:00:00','','','N','N',NULL,'O','N','Z15','','0000-00-00 00:00:00','3','11:50:15',0,'','drashti','2025-11-18 11:50:15','','0000-00-00 00:00:00'),(3577,0,0,'O','N','2526',2602,0,'2025-11-18','2026-02-17',2664,0,2602,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','12:13:36','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','2','11:51:17',0,'','reception','2025-11-18 11:51:17','darshan','2025-11-18 12:13:36'),(3578,0,0,'O','N','2526',2290,0,'2025-11-18','0000-00-00',2347,0,2290,'N','','N','','','FC','','N','D02','','N',96,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','00:00:00','','','N','N',NULL,'O','O','Z17','','0000-00-00 00:00:00','3','11:54:44',0,'','reception','2025-11-18 11:54:44','','0000-00-00 00:00:00'),(3579,0,0,'O','N','2526',2603,0,'2025-11-18','2026-02-17',2665,0,2603,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','12:17:14','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','6','12:06:25',0,'','manshi','2025-11-18 12:06:25','drsagar','2025-11-18 12:17:14'),(3580,0,0,'O','N','2526',2282,0,'2025-11-18','0000-00-00',2339,0,2282,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:11:00','0000-00-00','','','','N','12:11:00','00:00:00','','','N','N',NULL,'O','O','Z19','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-11-18 12:11:33','','0000-00-00 00:00:00'),(3581,0,0,'O','N','2526',2281,0,'2025-11-18','0000-00-00',2338,0,2281,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:11:00','0000-00-00','','','','N','12:11:00','00:00:00','','','N','N',NULL,'O','O','Z20','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-18 12:11:58','','0000-00-00 00:00:00'),(3582,0,0,'O','N','2526',2458,0,'2025-11-18','0000-00-00',2517,0,2458,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','00:00:00','','','N','N',NULL,'O','O','Z21','','0000-00-00 00:00:00','3','12:21:36',0,'','reception','2025-11-18 12:21:36','','0000-00-00 00:00:00'),(3583,0,0,'O','N','2526',2604,0,'2025-11-18','2026-02-17',2666,0,2604,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','13:47:42','','N','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','12:28:52',0,'','reception','2025-11-18 12:28:52','darshan','2025-11-18 13:47:42'),(3584,0,0,'O','N','2526',2605,0,'2025-11-18','2026-02-17',2667,0,2605,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','12:55:24','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:35:41',0,'','reception','2025-11-18 12:35:41','darshan','2025-11-18 12:55:24'),(3585,0,0,'O','N','2526',2606,0,'2025-11-18','2026-02-17',2668,0,2606,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:36:00','0000-00-00','','','','N','12:36:00','00:00:00','','','N','N',NULL,'O','N','Z22','','0000-00-00 00:00:00','3','12:36:07',0,'','drashti','2025-11-18 12:36:07','','0000-00-00 00:00:00'),(3586,0,0,'O','N','2526',2607,0,'2025-11-18','2026-02-17',2669,0,2607,'N','','N','','','NV','','N','D06','','N',4,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:37:00','0000-00-00','','','','N','12:37:00','13:52:20','','N','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','2','12:37:17',0,'','reception','2025-11-18 12:37:17','darshan','2025-11-18 13:52:20'),(3587,0,0,'O','N','2526',1714,0,'2025-11-18','0000-00-00',1758,0,1714,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:38:00','0000-00-00','','','','N','12:38:00','13:10:11','','','N','Y',NULL,'O','O','J03','','0000-00-00 00:00:00','2','12:38:25',0,'','reception','2025-11-18 12:38:25','darshan','2025-11-18 13:10:11'),(3588,0,0,'O','N','2526',2608,0,'2025-11-18','2026-02-17',2670,0,2608,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:41:00','0000-00-00','','','','N','12:41:00','00:00:00','','','N','N',NULL,'O','N','Z24','','0000-00-00 00:00:00','5','12:41:45',0,'','drashti','2025-11-18 12:41:45','','0000-00-00 00:00:00'),(3589,0,0,'O','N','2526',2609,0,'2025-11-18','2026-02-17',2671,0,2609,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:42:00','0000-00-00','','','','N','12:42:00','13:17:30','','','N','Y',NULL,'O','N','J04','','0000-00-00 00:00:00','2','12:42:21',0,'','reception','2025-11-18 12:42:21','darshan','2025-11-18 13:17:29'),(3590,0,0,'O','N','2526',2610,0,'2025-11-18','2026-02-17',2672,0,2610,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:47:00','0000-00-00','','','','N','12:47:00','14:16:15','','N','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','2','12:47:53',0,'','reception','2025-11-18 12:47:53','darshan','2025-11-18 14:16:15'),(3591,0,0,'I','N','2526',0,168,'2025-11-18','2026-02-17',2673,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','2025-11-20','','3','mo','N','13:00:00','12:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-18 13:08:49','mo','2025-11-20 13:06:53'),(3592,0,0,'O','N','2526',2611,0,'2025-11-18','2026-02-17',2674,0,2611,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:10:00','0000-00-00','','','','N','13:10:00','14:27:18','','N','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','2','13:10:12',0,'','drashti','2025-11-18 13:10:12','darshan','2025-11-18 14:27:18'),(3593,0,0,'O','N','2526',250,0,'2025-11-18','0000-00-00',265,0,250,'N','','N','','','FV','','N','D06','','N',23,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:11:00','0000-00-00','','','','N','13:11:00','13:38:40','','','N','Y',NULL,'O','O','Z26','','0000-00-00 00:00:00','2','13:11:50',0,'','reception','2025-11-18 13:11:50','darshan','2025-11-18 13:38:39'),(3594,0,0,'I','N','2526',0,169,'2025-11-18','2026-02-17',2675,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:15:00','2025-11-20','','1','mo','N','13:15:00','12:10:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-18 13:20:17','mo','2025-11-20 12:48:45'),(3595,0,0,'I','N','2526',0,170,'2025-11-18','1970-01-01',2676,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:15:00','2025-11-19','','1','mo','N','13:15:00','14:20:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-18 13:22:06','mo','2025-11-24 10:30:55'),(3596,0,0,'O','N','2526',2612,0,'2025-11-18','2026-02-17',2677,0,2612,'N','','N','','','NV','','N','D06','','N',192,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:56:00','0000-00-00','','','','N','13:56:00','19:14:54','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','2','13:56:49',0,'','reception','2025-11-18 13:56:49','darshan','2025-11-18 19:14:54'),(3597,0,0,'O','N','2526',2613,0,'2025-11-18','2026-02-17',2678,0,2613,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:00:00','0000-00-00','','','','N','14:00:00','00:00:00','','','N','N',NULL,'O','N','Z28','','0000-00-00 00:00:00','5','14:00:27',0,'','drashti','2025-11-18 14:00:27','','0000-00-00 00:00:00'),(3598,0,0,'O','N','2526',2614,0,'2025-11-18','2026-02-17',2679,0,2614,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:25:00','0000-00-00','','','','N','16:25:00','18:12:03','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','2','16:25:28',0,'','reception','2025-11-18 16:25:28','darshan','2025-11-18 18:12:03'),(3599,0,0,'O','N','2526',2547,0,'2025-11-18','0000-00-00',2604,0,2547,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:47:00','0000-00-00','','','','N','16:47:00','00:00:00','','','N','N',NULL,'O','O','Z30','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-11-18 16:47:18','','0000-00-00 00:00:00'),(3600,0,0,'O','N','2526',2615,0,'2025-11-18','2026-02-17',2680,0,2615,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:53:00','0000-00-00','','','','N','16:53:00','18:27:27','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:53:50',0,'','reception','2025-11-18 16:53:50','darshan','2025-11-18 18:27:27'),(3601,0,0,'O','N','2526',321,0,'2025-11-18','0000-00-00',337,0,321,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:56:00','0000-00-00','','','','N','16:56:00','17:23:44','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','16:56:27',0,'','reception','2025-11-18 16:56:27','darshan','2025-11-18 17:23:44'),(3602,0,0,'O','N','2526',2616,0,'2025-11-18','2026-02-17',2681,0,2616,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:00:00','0000-00-00','','','','N','17:00:00','17:33:28','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:00:33',0,'','reception','2025-11-18 17:00:33','darshan','2025-11-18 17:33:28'),(3603,0,0,'O','N','2526',212,0,'2025-11-18','0000-00-00',225,0,212,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:02:00','0000-00-00','','','','N','17:02:00','17:41:27','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','17:02:53',0,'','reception','2025-11-18 17:02:53','darshan','2025-11-18 17:41:27'),(3604,0,0,'O','N','2526',2617,0,'2025-11-18','2026-02-17',2682,0,2617,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:05:00','0000-00-00','','','','N','17:05:00','17:49:26','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:05:18',0,'','reception','2025-11-18 17:05:18','darshan','2025-11-18 17:49:26'),(3605,0,0,'O','N','2526',1251,0,'2025-11-18','0000-00-00',1292,0,1251,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:12:00','0000-00-00','','','','N','17:12:00','00:00:00','','','N','N',NULL,'O','O','Z31','','0000-00-00 00:00:00','3','17:12:17',0,'','drashti','2025-11-18 17:12:17','','0000-00-00 00:00:00'),(3606,0,0,'O','N','2526',2618,0,'2025-11-18','2026-02-17',2683,0,2618,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','00:00:00','','','N','N',NULL,'O','N','Z32','','0000-00-00 00:00:00','3','17:27:17',0,'','drashti','2025-11-18 17:27:17','','0000-00-00 00:00:00'),(3607,0,0,'O','N','2526',2014,0,'2025-11-18','0000-00-00',2067,0,2014,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:31:00','0000-00-00','','','','N','17:31:00','17:59:38','','','N','Y',NULL,'O','O','L06','','0000-00-00 00:00:00','2','17:31:02',0,'','reception','2025-11-18 17:31:02','darshan','2025-11-18 17:59:38'),(3608,0,0,'O','N','2526',2118,0,'2025-11-18','0000-00-00',1763,0,2118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','00:00:00','','','N','N',NULL,'O','O','Z33','','0000-00-00 00:00:00','3','17:48:53',0,'','janvi','2025-11-18 17:48:53','','0000-00-00 00:00:00'),(3609,0,0,'O','N','2526',2619,0,'2025-11-18','2026-02-17',2684,0,2619,'N','','N','','','NV','','N','D06','','N',193,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:55:00','0000-00-00','','','','N','17:55:00','19:15:43','','N','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:55:04',0,'','reception','2025-11-18 17:55:04','darshan','2025-11-18 19:15:43'),(3610,0,0,'O','N','2526',525,0,'2025-11-18','0000-00-00',551,0,525,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:58:00','0000-00-00','','','','N','17:58:00','00:00:00','','','N','N',NULL,'O','O','Z34','','0000-00-00 00:00:00','3','17:58:55',0,'','janvi','2025-11-18 17:58:55','','0000-00-00 00:00:00'),(3611,0,0,'I','N','2526',0,171,'2025-11-18','2026-02-17',2685,0,0,'N','','N','','','','N','N','D02','','N',0,'','78',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:00:00','2025-12-02','','1','mo','N','17:00:00','15:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-18 18:01:03','mo','2025-12-02 16:46:24'),(3612,0,0,'O','N','2526',2620,0,'2025-11-18','2026-02-17',2686,0,2620,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:06:00','0000-00-00','','','','N','18:06:00','00:00:00','','','N','N',NULL,'O','N','Z35','','0000-00-00 00:00:00','7','18:06:23',0,'','manshi','2025-11-18 18:06:23','','0000-00-00 00:00:00'),(3613,0,0,'O','N','2526',1133,0,'2025-11-18','0000-00-00',1173,0,1133,'N','','N','','','FC','','N','D02','','N',11,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:06:00','0000-00-00','','','','N','18:06:00','00:00:00','','','N','N',NULL,'O','O','Z36','','0000-00-00 00:00:00','3','18:06:24',0,'','reception','2025-11-18 18:06:24','','0000-00-00 00:00:00'),(3614,0,0,'O','N','2526',2621,0,'2025-11-18','2026-02-17',2687,0,2621,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','00:00:00','','','N','N',NULL,'O','N','Z37','','0000-00-00 00:00:00','3','18:10:50',0,'','janvi','2025-11-18 18:10:50','','0000-00-00 00:00:00'),(3615,0,0,'O','N','2526',2622,0,'2025-11-18','2026-02-17',2688,0,2622,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','18:34:55','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','18:14:39',0,'','reception','2025-11-18 18:14:39','darshan','2025-11-18 18:34:55'),(3616,0,0,'O','N','2526',1207,0,'2025-11-18','0000-00-00',1246,0,1207,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','18:52:59','','','N','Y',NULL,'O','O','Z38','','0000-00-00 00:00:00','6','18:28:07',0,'','manshi','2025-11-18 18:28:07','drsagar','2025-11-18 18:52:59'),(3617,0,0,'O','N','2526',2623,0,'2025-11-18','2026-02-17',2689,0,2623,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','19:51:45','','N','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','2','18:30:15',0,'','reception','2025-11-18 18:30:15','darshan','2025-11-18 19:51:45'),(3618,0,0,'O','N','2526',2612,0,'2025-11-18','0000-00-00',2677,0,2612,'N','','N','','','REPORTS','','N','D06','','N',192,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','19:30:00','','N','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','2','18:32:39',0,'','reception','2025-11-18 18:32:39','darshan','2025-11-18 19:30:00'),(3619,0,0,'O','N','2526',2624,0,'2025-11-18','2026-02-17',2690,0,2624,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','18:59:24','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','18:44:30',0,'','reception','2025-11-18 18:44:30','darshan','2025-11-18 18:59:24'),(3620,0,0,'O','N','2526',1288,0,'2025-11-18','0000-00-00',1327,0,1288,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:01:00','0000-00-00','','','','N','20:01:00','00:00:00','','','N','N',NULL,'O','O','Z40','','0000-00-00 00:00:00','3','20:01:54',0,'','janvi','2025-11-18 20:01:54','','0000-00-00 00:00:00'),(3621,0,0,'I','N','2526',0,172,'2025-11-18','2026-02-17',2691,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','21:30:00','2025-11-23','','1','mo','N','21:30:00','10:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-18 22:02:28','mo','2025-11-23 13:01:15'),(3622,0,0,'O','N','2526',2625,0,'2025-11-19','2026-02-18',2692,0,2625,'N','','N','','','ER','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:21:00','0000-00-00','','','','N','09:21:00','11:32:01','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','6','09:21:21',0,'','reception','2025-11-19 09:21:21','drsagar','2025-11-19 11:32:01'),(3623,0,0,'I','N','2526',0,173,'2025-11-19','2026-02-18',2693,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-11-20','','1','mo','N','09:30:00','11:25:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-19 09:28:36','mo','2025-11-20 12:15:35'),(3624,0,0,'O','N','2526',2626,0,'2025-11-19','2026-02-18',2694,0,2626,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:32:00','0000-00-00','','','','N','09:32:00','11:04:59','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','2','09:32:48',0,'','reception','2025-11-19 09:32:48','darshan','2025-11-19 11:04:59'),(3625,0,0,'O','N','2526',2627,0,'2025-11-19','2026-02-18',2695,0,2627,'N','','N','','','NV','','N','D06','','N',195,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:05:00','0000-00-00','','','','N','10:05:00','13:41:54','','N','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','2','10:05:22',0,'','reception','2025-11-19 10:05:22','darshan','2025-11-19 13:41:54'),(3626,0,0,'O','N','2526',2628,0,'2025-11-19','2026-02-18',2696,0,2628,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:11:00','0000-00-00','','','','N','10:11:00','13:23:34','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:11:43',0,'','reception','2025-11-19 10:11:43','darshan','2025-11-19 13:23:34'),(3627,0,0,'O','N','2526',2629,0,'2025-11-19','2026-02-18',2697,0,2629,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:12:00','0000-00-00','','','','N','10:12:00','00:00:00','','','N','N',NULL,'O','N','Z04','','0000-00-00 00:00:00','3','10:12:38',0,'','janvi','2025-11-19 10:12:38','','0000-00-00 00:00:00'),(3628,0,0,'O','N','2526',19,0,'2025-11-19','0000-00-00',19,0,19,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:12:00','0000-00-00','','','','N','10:12:00','11:18:10','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:12:40',0,'','reception','2025-11-19 10:12:40','darshan','2025-11-19 11:18:10'),(3629,0,0,'O','N','2526',2630,0,'2025-11-19','2026-02-18',2698,0,2630,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:13:00','0000-00-00','','','','N','10:13:00','10:45:10','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','10:13:02',0,'','urvashi','2025-11-19 10:13:02','darshan','2025-11-19 10:45:10'),(3630,0,0,'I','N','2526',0,174,'2025-11-19','2026-02-18',2699,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','2025-11-24','','1','mo','N','10:15:00','21:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-19 10:17:01','mo','2025-11-24 22:10:02'),(3631,0,0,'O','N','2526',2172,0,'2025-11-19','0000-00-00',2227,0,2172,'N','','N','','','FV','','N','D06','','N',158,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:17:00','0000-00-00','','','','N','10:17:00','11:25:13','','','N','Y',NULL,'O','O','Z05','','0000-00-00 00:00:00','2','10:17:09',0,'','reception','2025-11-19 10:17:09','darshan','2025-11-19 11:25:13'),(3632,0,0,'O','N','2526',2631,0,'2025-11-19','2026-02-18',2700,0,2631,'N','','N','','','','','N','D02','','N',22,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:19:00','0000-00-00','','','','N','10:19:00','00:00:00','','','N','N',NULL,'O','N','Z06','','0000-00-00 00:00:00','3','10:19:27',0,'','janvi','2025-11-19 10:19:27','','0000-00-00 00:00:00'),(3633,0,0,'O','N','2526',924,0,'2025-11-19','0000-00-00',955,0,924,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:20:00','0000-00-00','','','','N','10:20:00','11:32:26','','','N','Y',NULL,'O','O','H01','','0000-00-00 00:00:00','2','10:20:29',0,'','reception','2025-11-19 10:20:29','darshan','2025-11-19 11:32:26'),(3634,0,0,'O','N','2526',2632,0,'2025-11-19','2026-02-18',2701,0,2632,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:27:00','0000-00-00','','','','N','10:27:00','10:51:18','','','N','Y',NULL,'O','N','E02','','0000-00-00 00:00:00','2','10:27:34',0,'','reception','2025-11-19 10:27:34','darshan','2025-11-19 10:51:17'),(3635,0,0,'O','N','2526',2303,0,'2025-11-19','0000-00-00',2360,0,2303,'N','','N','','','FOLLOWUP V','','N','D06','','N',166,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:29:00','0000-00-00','','','','N','10:29:00','12:22:31','','N','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','2','10:29:56',0,'','reception','2025-11-19 10:29:56','darshan','2025-11-19 12:22:31'),(3636,0,0,'O','N','2526',2633,0,'2025-11-19','2026-02-18',2702,0,2633,'N','','N','','','FV ','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:32:00','0000-00-00','','','','N','10:32:00','11:51:42','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','2','10:32:24',0,'','urvashi','2025-11-19 10:32:24','darshan','2025-11-19 11:51:42'),(3637,0,0,'O','N','2526',1978,0,'2025-11-19','0000-00-00',2026,0,1978,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:36:00','0000-00-00','','','','N','10:36:00','00:00:00','','','N','N',NULL,'O','O','Z09','','0000-00-00 00:00:00','3','10:37:11',0,'','janvi','2025-11-19 10:37:11','','0000-00-00 00:00:00'),(3638,0,0,'O','N','2526',2553,0,'2025-11-19','0000-00-00',2613,0,2553,'N','','N','','','REPORT','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','14:05:14','','','N','Y',NULL,'O','O','Z10','','0000-00-00 00:00:00','4','11:26:52',0,'','janvi','2025-11-19 10:43:38','drarchit','2025-11-19 14:05:14'),(3639,0,0,'O','N','2526',2634,0,'2025-11-19','2026-02-18',2703,0,2634,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','13:41:09','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','4','11:26:52',0,'','janvi','2025-11-19 10:46:24','drarchit','2025-11-19 13:41:09'),(3640,0,0,'O','N','2526',2635,0,'2025-11-19','2026-02-18',2704,0,2635,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','11:56:24','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','10:48:59',0,'','reception','2025-11-19 10:48:59','darshan','2025-11-19 11:56:24'),(3641,0,0,'I','N','2526',0,175,'2025-11-19','2026-02-18',2705,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:50:00','2025-11-20','','1','mo','N','10:50:00','11:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-19 10:51:11','mo','2025-11-20 10:45:04'),(3642,0,0,'O','N','2526',2636,0,'2025-11-19','2026-02-18',2706,0,2636,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','14:12:05','','N','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','4','11:26:52',0,'','urvashi','2025-11-19 10:56:58','drarchit','2025-11-19 14:12:05'),(3643,0,0,'O','N','2526',2257,0,'2025-11-19','0000-00-00',2314,0,2257,'N','','N','','','','','N','D06','','N',163,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:00:00','0000-00-00','','','','N','11:00:00','11:22:08','Y','','N','N',NULL,'O','O','Z13','','0000-00-00 00:00:00','2','11:00:34',0,'','urvashi','2025-11-19 11:00:34','','0000-00-00 00:00:00'),(3644,0,0,'O','N','2526',2637,0,'2025-11-19','2026-02-18',2707,0,2637,'N','','N','','','NE','','N','D06','','N',196,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','12:01:27','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','2','11:01:48',0,'','urvashi','2025-11-19 11:01:48','darshan','2025-11-19 12:01:27'),(3645,0,0,'O','N','2526',2638,0,'2025-11-19','2026-02-18',2708,0,2638,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','12:26:10','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','11:03:01',0,'','reception','2025-11-19 11:03:01','darshan','2025-11-19 12:26:10'),(3646,0,0,'O','N','2526',278,0,'2025-11-19','0000-00-00',294,0,278,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','11:28:41','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','2','11:03:57',0,'','reception','2025-11-19 11:03:57','darshan','2025-11-19 11:28:41'),(3647,0,0,'O','N','2526',2122,0,'2025-11-19','0000-00-00',2173,0,2122,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','11:38:57','','','N','Y',NULL,'O','O','G02','','0000-00-00 00:00:00','2','11:04:51',0,'','reception','2025-11-19 11:04:51','darshan','2025-11-19 11:38:57'),(3648,0,0,'O','N','2526',2639,0,'2025-11-19','2026-02-18',2709,0,2639,'N','','N','','','NV','','N','D06','','N',197,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','14:24:09','','N','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:05:15',0,'','urvashi','2025-11-19 11:05:15','darshan','2025-11-19 14:24:09'),(3649,0,0,'O','N','2526',2640,0,'2025-11-19','2026-02-18',2710,0,2640,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','13:28:20','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','4','11:26:52',0,'','urvashi','2025-11-19 11:10:55','drarchit','2025-11-19 13:28:20'),(3650,0,0,'O','N','2526',395,0,'2025-11-19','0000-00-00',417,0,395,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:22:00','0000-00-00','','','','N','11:22:00','11:54:22','','','N','Y',NULL,'O','O','G04','','0000-00-00 00:00:00','2','11:22:47',0,'','reception','2025-11-19 11:22:47','darshan','2025-11-19 11:54:22'),(3651,0,0,'O','N','2526',2641,0,'2025-11-19','2026-02-18',2711,0,2641,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','11:51:35','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','4','11:26:52',0,'','urvashi','2025-11-19 11:24:35','drarchit','2025-11-19 11:51:35'),(3652,0,0,'O','N','2526',2642,0,'2025-11-19','2026-02-18',2712,0,2642,'N','','N','','','NV','','N','D06','','N',198,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','12:44:53','','N','N','Y',NULL,'O','N','G05','','0000-00-00 00:00:00','2','11:28:59',0,'','reception','2025-11-19 11:28:59','darshan','2025-11-19 12:44:53'),(3653,0,0,'O','N','2526',2643,0,'2025-11-19','2026-02-18',2713,0,2643,'N','','N','','','','','N','D02','','N',28,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','00:00:00','','','N','N',NULL,'O','N','Z17','','0000-00-00 00:00:00','3','11:29:24',0,'','janvi','2025-11-19 11:29:24','','0000-00-00 00:00:00'),(3654,0,0,'O','N','2526',2644,0,'2025-11-19','2026-02-18',2714,0,2644,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','00:00:00','','','N','N',NULL,'O','N','Z18','','0000-00-00 00:00:00','7','11:30:24',0,'','manshi','2025-11-19 11:30:24','','0000-00-00 00:00:00'),(3655,0,0,'O','N','2526',15,0,'2025-11-19','0000-00-00',15,0,15,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','13:03:16','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','2','11:31:32',0,'','reception','2025-11-19 11:31:32','darshan','2025-11-19 13:03:16'),(3656,0,0,'O','N','2526',1985,0,'2025-11-19','0000-00-00',2036,0,1985,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','11:32:17','','','N','Y',NULL,'O','O','Z20','','0000-00-00 00:00:00','6','11:31:44',0,'','manshi','2025-11-19 11:31:44','drsagar','2025-11-19 11:32:17'),(3657,0,0,'O','N','2526',1584,0,'2025-11-19','0000-00-00',1628,0,1584,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','00:00:00','','','N','N',NULL,'O','O','Z21','','0000-00-00 00:00:00','3','11:33:41',0,'','janvi','2025-11-19 11:33:41','','0000-00-00 00:00:00'),(3658,0,0,'O','N','2526',2645,0,'2025-11-19','2026-02-18',2715,0,2645,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','11:53:50','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','6','11:39:07',0,'','manshi','2025-11-19 11:39:07','drsagar','2025-11-19 11:53:50'),(3659,0,0,'O','N','2526',2646,0,'2025-11-19','2026-02-18',2716,0,2646,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','12:48:45','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','11:44:14',0,'','urvashi','2025-11-19 11:44:14','drarchit','2025-11-19 12:48:45'),(3660,0,0,'O','N','2526',2647,0,'2025-11-19','2026-02-18',2717,0,2647,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:49:00','0000-00-00','','','','N','11:49:00','13:12:38','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','4','11:49:50',0,'','urvashi','2025-11-19 11:49:50','drarchit','2025-11-19 13:12:38'),(3661,0,0,'O','N','2526',2648,0,'2025-11-19','2026-02-18',2718,0,2648,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','12:57:49','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','4','11:51:33',0,'','urvashi','2025-11-19 11:51:33','drarchit','2025-11-19 12:57:49'),(3662,0,0,'O','N','2526',1274,0,'2025-11-19','0000-00-00',1313,0,1274,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:53:00','0000-00-00','','','','N','11:53:00','19:00:31','','N','N','Y',NULL,'O','O','H05','','0000-00-00 00:00:00','4','11:53:35',0,'','urvashi','2025-11-19 11:53:34','drarchit','2025-11-19 19:00:31'),(3663,0,0,'O','N','2526',2649,0,'2025-11-19','2026-02-18',2719,0,2649,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:53:00','0000-00-00','','','','N','11:53:00','12:18:14','','','N','Y',NULL,'O','N','H06','','0000-00-00 00:00:00','2','11:53:37',0,'','reception','2025-11-19 11:53:37','darshan','2025-11-19 12:18:14'),(3664,0,0,'O','N','2526',2650,0,'2025-11-19','2026-02-18',2720,0,2650,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','14:08:19','','N','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','11:56:18',0,'','reception','2025-11-19 11:56:18','darshan','2025-11-19 14:08:19'),(3665,0,0,'O','N','2526',2651,0,'2025-11-19','2026-02-18',2721,0,2651,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:59:00','0000-00-00','','','','N','11:59:00','12:33:40','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:59:28',0,'','reception','2025-11-19 11:59:28','darshan','2025-11-19 12:33:40'),(3666,0,0,'O','N','2526',2652,0,'2025-11-19','2026-02-18',2722,0,2652,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','00:00:00','','','N','N',NULL,'O','N','Z24','','0000-00-00 00:00:00','3','12:00:55',0,'','janvi','2025-11-19 12:00:55','','0000-00-00 00:00:00'),(3667,0,0,'O','N','2526',2653,0,'2025-11-19','2026-02-18',2723,0,2653,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:03:00','0000-00-00','','','','N','12:03:00','12:09:22','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','6','12:03:39',0,'','manshi','2025-11-19 12:03:39','drsagar','2025-11-19 12:09:22'),(3668,0,0,'O','N','2526',2654,0,'2025-11-19','2026-02-18',2724,0,2654,'N','','N','','','FOLLOWUPV E','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:04:00','0000-00-00','','','','N','12:04:00','12:51:04','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','2','12:04:19',0,'','urvashi','2025-11-19 12:04:19','darshan','2025-11-19 12:51:04'),(3669,0,0,'O','N','2526',2655,0,'2025-11-19','2026-02-18',2725,0,2655,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:07:00','0000-00-00','','','','N','12:07:00','00:00:00','','','N','N',NULL,'O','N','Z27','','0000-00-00 00:00:00','7','12:07:31',0,'','manshi','2025-11-19 12:07:31','','0000-00-00 00:00:00'),(3670,0,0,'O','N','2526',2165,0,'2025-11-19','0000-00-00',2220,0,2165,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','13:24:25','','','N','Y',NULL,'O','O','I02','','0000-00-00 00:00:00','4','12:09:19',0,'','urvashi','2025-11-19 12:09:19','drarchit','2025-11-19 13:24:24'),(3671,0,0,'O','N','2526',2656,0,'2025-11-19','2026-02-18',2726,0,2656,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','12:59:23','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','2','12:09:31',0,'','reception','2025-11-19 12:09:31','darshan','2025-11-19 12:59:23'),(3672,0,0,'O','N','2526',2657,0,'2025-11-19','2026-02-18',2727,0,2657,'N','','N','','','NV','','N','D06','','N',199,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:11:00','0000-00-00','','','','N','12:11:00','14:15:23','','N','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','2','12:11:32',0,'','reception','2025-11-19 12:11:32','darshan','2025-11-19 14:15:22'),(3673,0,0,'O','N','2526',1190,0,'2025-11-19','0000-00-00',1229,0,1190,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:12:00','0000-00-00','','','','N','12:12:00','13:47:23','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','2','12:12:55',0,'','reception','2025-11-19 12:12:55','darshan','2025-11-19 13:47:23'),(3674,0,0,'O','N','2526',508,0,'2025-11-19','0000-00-00',533,0,508,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:13:00','0000-00-00','','','','N','12:13:00','13:17:43','','','N','Y',NULL,'O','O','I03','','0000-00-00 00:00:00','4','12:13:56',0,'','urvashi','2025-11-19 12:13:56','drarchit','2025-11-19 13:17:43'),(3675,0,0,'O','N','2526',2351,0,'2025-11-19','0000-00-00',2407,0,2351,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:26:00','0000-00-00','','','','N','12:26:00','00:00:00','','','N','N',NULL,'O','O','Z31','','0000-00-00 00:00:00','7','12:26:15',0,'','manshi','2025-11-19 12:26:15','','0000-00-00 00:00:00'),(3676,0,0,'O','N','2526',2658,0,'2025-11-19','2026-02-18',2728,0,2658,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:29:00','0000-00-00','','','','N','12:29:00','13:47:21','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','4','12:29:47',0,'','reception','2025-11-19 12:29:47','drarchit','2025-11-19 13:47:21'),(3677,0,0,'O','N','2526',2659,0,'2025-11-19','2026-02-18',2729,0,2659,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','0000-00-00','','','','N','12:30:00','13:38:18','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','4','12:30:45',0,'','janvi','2025-11-19 12:30:45','drarchit','2025-11-19 13:38:18'),(3678,0,0,'O','N','2526',1454,0,'2025-11-19','0000-00-00',1495,0,1454,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:34:00','0000-00-00','','','','N','12:34:00','13:34:08','','','N','Y',NULL,'O','O','J04','','0000-00-00 00:00:00','4','12:34:00',0,'','urvashi','2025-11-19 12:34:00','drarchit','2025-11-19 13:34:08'),(3679,0,0,'O','N','2526',2660,0,'2025-11-19','2026-02-18',2730,0,2660,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:39:00','0000-00-00','','','','N','12:39:00','13:53:53','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','2','12:39:49',0,'','reception','2025-11-19 12:39:49','darshan','2025-11-19 13:53:53'),(3680,0,0,'O','N','2526',1125,0,'2025-11-19','0000-00-00',1095,0,1125,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:43:00','0000-00-00','','','','N','12:43:00','18:10:20','','','N','Y',NULL,'O','O','Z34','','0000-00-00 00:00:00','6','12:43:38',0,'','manshi','2025-11-19 12:43:38','drsagar','2025-11-19 18:10:20'),(3681,0,0,'O','N','2526',2661,0,'2025-11-19','2026-02-18',2731,0,2661,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:48:00','0000-00-00','','','','N','12:48:00','13:50:28','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','4','12:48:26',0,'','urvashi','2025-11-19 12:48:26','drarchit','2025-11-19 13:50:28'),(3682,0,0,'O','N','2526',602,0,'2025-11-19','0000-00-00',632,0,602,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:49:00','0000-00-00','','','','N','12:49:00','13:15:07','','','N','Y',NULL,'O','O','J05','','0000-00-00 00:00:00','2','12:49:40',0,'','reception','2025-11-19 12:49:40','darshan','2025-11-19 13:15:07'),(3683,0,0,'O','N','2526',1307,0,'2025-11-19','0000-00-00',1346,0,1307,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:59:00','0000-00-00','','','','N','12:59:00','00:00:00','','','N','N',NULL,'O','O','Z36','','0000-00-00 00:00:00','3','12:59:34',0,'','janvi','2025-11-19 12:59:34','','0000-00-00 00:00:00'),(3684,0,0,'O','N','2526',2662,0,'2025-11-19','2026-02-18',2384,0,2662,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:01:00','0000-00-00','','','','N','13:01:00','00:00:00','','','N','N',NULL,'O','N','Z37','','0000-00-00 00:00:00','3','13:01:59',0,'','janvi','2025-11-19 13:01:59','','0000-00-00 00:00:00'),(3685,0,0,'O','N','2526',931,0,'2025-11-19','0000-00-00',962,0,931,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:05:00','0000-00-00','','','','N','13:05:00','14:02:37','','','N','Y',NULL,'O','O','K01','','0000-00-00 00:00:00','4','13:05:27',0,'','urvashi','2025-11-19 13:05:27','drarchit','2025-11-19 14:02:37'),(3686,0,0,'O','N','2526',1326,0,'2025-11-19','0000-00-00',1366,0,1326,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:54:00','0000-00-00','','','','N','15:54:00','17:07:23','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','15:54:33',0,'','reception','2025-11-19 15:54:33','darshan','2025-11-19 17:07:23'),(3687,0,0,'O','N','2526',1133,0,'2025-11-19','0000-00-00',1173,0,1133,'N','','N','','','','','N','D02','','N',11,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:36:00','0000-00-00','','','','N','16:36:00','00:00:00','','','N','N',NULL,'O','O','Z38','','0000-00-00 00:00:00','3','16:36:11',0,'','shweta','2025-11-19 16:36:11','','0000-00-00 00:00:00'),(3688,0,0,'O','N','2526',2663,0,'2025-11-19','2026-02-18',2732,0,2663,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:39:00','0000-00-00','','','','N','16:39:00','17:07:50','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','2','16:39:07',0,'','reception','2025-11-19 16:39:07','darshan','2025-11-19 17:07:50'),(3689,0,0,'O','N','2526',2664,0,'2025-11-19','2026-02-18',2733,0,2664,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:40:00','0000-00-00','','','','N','16:40:00','17:08:06','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','2','16:40:56',0,'','reception','2025-11-19 16:40:56','darshan','2025-11-19 17:08:06'),(3690,0,0,'O','N','2526',2665,0,'2025-11-19','2026-02-18',2734,0,2665,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:42:00','0000-00-00','','','','N','16:42:00','17:08:41','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','2','16:42:10',0,'','reception','2025-11-19 16:42:10','darshan','2025-11-19 17:08:41'),(3691,0,0,'O','N','2526',83,0,'2025-11-19','0000-00-00',94,0,83,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:50:00','0000-00-00','','','','N','16:50:00','17:09:31','','','N','Y',NULL,'O','O','Z42','','0000-00-00 00:00:00','2','16:50:28',0,'','reception','2025-11-19 16:50:28','darshan','2025-11-19 17:09:31'),(3692,0,0,'O','N','2526',2666,0,'2025-11-19','2026-02-18',2735,0,2666,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:53:00','0000-00-00','','','','N','16:53:00','17:10:50','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','2','16:54:00',0,'','reception','2025-11-19 16:54:00','darshan','2025-11-19 17:10:50'),(3693,0,0,'O','N','2526',2667,0,'2025-11-19','2026-02-18',2736,0,2667,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:57:00','0000-00-00','','','','N','16:57:00','17:14:42','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:57:59',0,'','reception','2025-11-19 16:57:59','darshan','2025-11-19 17:14:41'),(3694,0,0,'O','N','2526',1555,0,'2025-11-19','0000-00-00',1598,0,1555,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:08:00','0000-00-00','','','','N','17:08:00','17:18:51','','','N','Y',NULL,'O','O','Z44','','0000-00-00 00:00:00','2','17:08:33',0,'','reception','2025-11-19 17:08:33','darshan','2025-11-19 17:18:51'),(3695,0,0,'O','N','2526',1734,0,'2025-11-19','0000-00-00',1778,0,1734,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:11:00','0000-00-00','','','','N','17:11:00','17:58:20','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','2','17:11:07',0,'','reception','2025-11-19 17:11:07','darshan','2025-11-19 17:58:20'),(3696,0,0,'O','N','2526',2533,0,'2025-11-19','0000-00-00',2590,0,2533,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:15:00','0000-00-00','','','','N','17:15:00','00:00:00','','','N','N',NULL,'O','O','Z46','','0000-00-00 00:00:00','3','17:15:18',0,'','reception','2025-11-19 17:15:18','','0000-00-00 00:00:00'),(3697,0,0,'O','N','2526',2668,0,'2025-11-19','2026-02-18',2737,0,2668,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:17:00','0000-00-00','','','','N','17:17:00','17:30:56','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','17:17:07',0,'','reception','2025-11-19 17:17:07','darshan','2025-11-19 17:30:56'),(3698,0,0,'O','N','2526',2569,0,'2025-11-19','0000-00-00',2629,0,2569,'N','','N','','','','','N','D02','','N',80,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:19:00','0000-00-00','','','','N','17:19:00','00:00:00','','','N','N',NULL,'O','O','Z48','','0000-00-00 00:00:00','3','17:19:42',0,'','shweta','2025-11-19 17:19:41','','0000-00-00 00:00:00'),(3699,0,0,'O','N','2526',2669,0,'2025-11-19','2026-02-18',2738,0,2669,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:21:00','0000-00-00','','','','N','17:21:00','17:34:18','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','2','17:21:35',0,'','reception','2025-11-19 17:21:35','darshan','2025-11-19 17:34:18'),(3700,0,0,'O','N','2526',1652,0,'2025-11-19','0000-00-00',1697,0,1652,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:22:00','0000-00-00','','','','N','17:22:00','17:44:16','','','N','Y',NULL,'O','O','L03','','0000-00-00 00:00:00','2','17:22:30',0,'','reception','2025-11-19 17:22:30','darshan','2025-11-19 17:44:16'),(3701,0,0,'O','N','2526',2670,0,'2025-11-19','2026-02-18',2739,0,2670,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:25:00','0000-00-00','','','','N','17:25:00','17:53:55','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','2','17:25:03',0,'','reception','2025-11-19 17:25:03','darshan','2025-11-19 17:53:55'),(3702,0,0,'O','N','2526',2671,0,'2025-11-19','2026-02-18',2740,0,2671,'N','','N','','','','','N','D27','','N',14,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:25:00','0000-00-00','','','','N','17:25:00','18:21:38','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','4','17:25:13',0,'','drashti','2025-11-19 17:25:13','drarchit','2025-11-19 18:21:38'),(3703,0,0,'O','N','2526',2577,0,'2025-11-19','0000-00-00',2638,0,2577,'N','','N','','','REPORTS','','N','D06','','N',189,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:29:00','0000-00-00','','','','N','17:29:00','18:47:29','','N','N','Y',NULL,'O','O','Z52','','0000-00-00 00:00:00','2','17:29:32',0,'','reception','2025-11-19 17:29:32','darshan','2025-11-19 18:47:29'),(3704,0,0,'O','N','2526',2672,0,'2025-11-19','2026-02-18',2741,0,2672,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:30:00','0000-00-00','','','','N','17:30:00','00:00:00','','','N','N',NULL,'O','N','Z53','','0000-00-00 00:00:00','3','17:30:43',0,'','shweta','2025-11-19 17:30:43','','0000-00-00 00:00:00'),(3705,0,0,'O','N','2526',2310,0,'2025-11-19','0000-00-00',2367,0,2310,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:30:00','0000-00-00','','','','N','17:30:00','00:00:00','','','N','Y',NULL,'O','O','Z54','','0000-00-00 00:00:00','3','17:30:55',0,'','drashti','2025-11-19 17:30:55','','0000-00-00 00:00:00'),(3706,0,0,'O','N','2526',2673,0,'2025-11-19','2026-02-18',2742,0,2673,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:33:00','0000-00-00','','','','N','17:33:00','18:38:40','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','4','17:33:37',0,'','drashti','2025-11-19 17:33:37','drarchit','2025-11-19 18:38:40'),(3707,0,0,'O','N','2526',2674,0,'2025-11-19','2026-02-18',2743,0,2674,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:36:00','0000-00-00','','','','N','17:36:00','00:00:00','','','N','N',NULL,'O','N','Z56','','0000-00-00 00:00:00','3','17:36:41',0,'','urvashi','2025-11-19 17:36:41','','0000-00-00 00:00:00'),(3708,0,0,'O','N','2526',2675,0,'2025-11-19','2026-02-18',2744,0,2675,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:37:00','0000-00-00','','','','N','17:37:00','18:45:48','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','4','17:37:31',0,'','drashti','2025-11-19 17:37:31','drarchit','2025-11-19 18:45:48'),(3709,0,0,'O','N','2526',2015,0,'2025-11-19','0000-00-00',2068,0,2015,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:38:00','0000-00-00','','','','N','17:38:00','18:07:49','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','17:38:28',0,'','reception','2025-11-19 17:38:28','darshan','2025-11-19 18:07:49'),(3710,0,0,'O','N','2526',2676,0,'2025-11-19','2026-02-18',2745,0,2676,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:43:00','0000-00-00','','','','N','17:43:00','18:50:59','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','4','17:43:06',0,'','drashti','2025-11-19 17:43:05','drarchit','2025-11-19 18:50:59'),(3711,0,0,'O','N','2526',2677,0,'2025-11-19','2026-02-18',2746,0,2677,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:43:00','0000-00-00','','','','N','17:43:00','00:00:00','','','N','N',NULL,'O','N','Z58','','0000-00-00 00:00:00','3','17:43:23',0,'','reception','2025-11-19 17:43:23','','0000-00-00 00:00:00'),(3712,0,0,'O','N','2526',525,0,'2025-11-19','0000-00-00',551,0,525,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','00:00:00','','','N','N',NULL,'O','O','Z59','','0000-00-00 00:00:00','','00:00:00',0,'','urvashi','2025-11-19 17:48:31','','0000-00-00 00:00:00'),(3713,0,0,'O','N','2526',2678,0,'2025-11-19','2026-02-18',2747,0,2678,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','18:51:05','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:49:45',0,'','reception','2025-11-19 17:49:45','darshan','2025-11-19 18:51:05'),(3714,0,0,'O','N','2526',957,0,'2025-11-19','0000-00-00',990,0,957,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','18:55:21','','','N','Y',NULL,'O','O','Z60','','0000-00-00 00:00:00','4','17:50:39',0,'','drashti','2025-11-19 17:50:39','drarchit','2025-11-19 18:55:21'),(3715,0,0,'O','N','2526',362,0,'2025-11-19','0000-00-00',378,0,362,'N','','N','','','FV','','N','D06','','N',5,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:53:00','0000-00-00','','','','N','17:53:00','18:16:02','','','N','Y',NULL,'O','O','L07','','0000-00-00 00:00:00','2','17:53:17',0,'','reception','2025-11-19 17:53:17','darshan','2025-11-19 18:16:02'),(3716,0,0,'O','N','2526',2679,0,'2025-11-19','2026-02-18',2748,0,2679,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:55:00','0000-00-00','','','','N','17:55:00','18:34:48','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','4','17:55:12',0,'','drashti','2025-11-19 17:55:12','drarchit','2025-11-19 18:34:48'),(3717,0,0,'O','N','2526',2680,0,'2025-11-19','2026-02-18',2749,0,2680,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:55:00','0000-00-00','','','','N','17:55:00','19:04:29','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','4','17:55:27',0,'','reception','2025-11-19 17:55:27','drarchit','2025-11-19 19:04:29'),(3718,0,0,'O','N','2526',1288,0,'2025-11-19','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:56:00','0000-00-00','','','','N','17:56:00','00:00:00','','','N','N',NULL,'O','O','Z62','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-11-19 17:56:58','','0000-00-00 00:00:00'),(3719,0,0,'O','N','2526',2681,0,'2025-11-19','2026-02-18',2750,0,2681,'N','','N','','','','','N','D02','','N',200,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:56:00','0000-00-00','','','','N','17:56:00','00:00:00','','','N','N',NULL,'O','N','Z63','','0000-00-00 00:00:00','','00:00:00',0,'','urvashi','2025-11-19 17:56:58','','0000-00-00 00:00:00'),(3720,0,0,'O','N','2526',2682,0,'2025-11-19','2026-02-18',2751,0,2682,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','18:10:31','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','6','17:57:26',0,'','manshi','2025-11-19 17:57:26','drsagar','2025-11-19 18:10:31'),(3721,0,0,'O','N','2526',2683,0,'2025-11-19','2026-02-18',2752,0,2683,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:58:00','0000-00-00','','','','N','17:58:00','00:00:00','','','N','N',NULL,'O','N','Z65','','0000-00-00 00:00:00','','00:00:00',0,'','urvashi','2025-11-19 17:58:43','','0000-00-00 00:00:00'),(3722,0,0,'O','N','2526',1959,0,'2025-11-19','0000-00-00',2007,0,1959,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:01:00','0000-00-00','','','','N','18:01:00','18:10:55','','','N','Y',NULL,'O','O','Z66','','0000-00-00 00:00:00','6','18:01:28',0,'','manshi','2025-11-19 18:01:28','drsagar','2025-11-19 18:10:55'),(3723,0,0,'O','N','2526',634,0,'2025-11-19','0000-00-00',664,0,634,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:01:00','0000-00-00','','','','N','18:01:00','20:11:10','','N','N','Y',NULL,'O','O','Z67','','0000-00-00 00:00:00','4','18:01:53',0,'','urvashi','2025-11-19 18:01:53','drarchit','2025-11-19 20:11:10'),(3724,0,0,'O','N','2526',2684,0,'2025-11-19','2026-02-18',2753,0,2684,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','18:42:36','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','4','18:02:26',0,'','drashti','2025-11-19 18:02:26','drarchit','2025-11-19 18:42:36'),(3725,0,0,'O','N','2526',2685,0,'2025-11-19','2026-02-18',2754,0,2685,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','19:30:09','','','N','Y',NULL,'O','N','Z68','','0000-00-00 00:00:00','4','18:04:10',0,'','reception','2025-11-19 18:04:10','drarchit','2025-11-19 19:30:09'),(3726,0,0,'O','N','2526',2686,0,'2025-11-19','2026-02-18',2755,0,2686,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:59:41','','','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','2','18:09:25',0,'','drashti','2025-11-19 18:09:25','darshan','2025-11-19 18:59:41'),(3727,0,0,'O','N','2526',2687,0,'2025-11-19','2026-02-18',2756,0,2687,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','19:08:05','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','4','18:11:50',0,'','drashti','2025-11-19 18:11:50','drarchit','2025-11-19 19:08:05'),(3728,0,0,'O','N','2526',2144,0,'2025-11-19','0000-00-00',2196,0,2144,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','18:33:10','','','N','Y',NULL,'O','O','Z70','','0000-00-00 00:00:00','6','18:15:01',0,'','manshi','2025-11-19 18:15:01','drsagar','2025-11-19 18:33:10'),(3729,0,0,'O','N','2526',2688,0,'2025-11-19','2026-02-18',2757,0,2688,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','19:33:52','','','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','4','18:16:47',0,'','drashti','2025-11-19 18:16:47','drarchit','2025-11-19 19:33:52'),(3730,0,0,'O','N','2526',2095,0,'2025-11-19','0000-00-00',1245,0,2095,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','00:00:00','','','N','N',NULL,'O','O','Z72','','0000-00-00 00:00:00','','00:00:00',0,'','urvashi','2025-11-19 18:20:07','','0000-00-00 00:00:00'),(3731,0,0,'O','N','2526',2689,0,'2025-11-19','2026-02-18',2758,0,2689,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:22:00','0000-00-00','','','','N','18:22:00','00:00:00','','','N','N',NULL,'O','N','Z73','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-11-19 18:22:41','','0000-00-00 00:00:00'),(3732,0,0,'O','N','2526',2690,0,'2025-11-19','2026-02-18',2759,0,2690,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','19:14:57','','','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','4','18:26:17',0,'','drashti','2025-11-19 18:26:17','drarchit','2025-11-19 19:14:57'),(3733,0,0,'O','N','2526',2196,0,'2025-11-19','0000-00-00',2253,0,2196,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:27:00','0000-00-00','','','','N','18:27:00','19:13:29','','','N','Y',NULL,'O','O','Z74','','0000-00-00 00:00:00','2','18:27:24',0,'','urvashi','2025-11-19 18:27:24','darshan','2025-11-19 19:13:29'),(3734,0,0,'O','N','2526',1953,0,'2025-11-19','0000-00-00',2001,0,1953,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','00:00:00','','','N','N',NULL,'O','O','Z75','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-11-19 18:28:15','','0000-00-00 00:00:00'),(3735,0,0,'O','N','2526',2691,0,'2025-11-19','2026-02-18',2760,0,2691,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','19:18:17','','N','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','4','18:28:54',0,'','drashti','2025-11-19 18:28:54','drarchit','2025-11-19 19:18:17'),(3736,0,0,'O','N','2526',140,0,'2025-11-19','0000-00-00',151,0,140,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','00:00:00','','','N','N',NULL,'O','O','Z76','','0000-00-00 00:00:00','','00:00:00',0,'','urvashi','2025-11-19 18:29:29','','0000-00-00 00:00:00'),(3737,0,0,'O','N','2526',1521,0,'2025-11-19','0000-00-00',1562,0,1521,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','00:00:00','','','N','N',NULL,'O','O','Z77','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-11-19 18:30:14','','0000-00-00 00:00:00'),(3738,0,0,'O','N','2526',2692,0,'2025-11-19','2026-02-18',2761,0,2692,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','19:25:12','','','N','Y',NULL,'O','N','Z78','','0000-00-00 00:00:00','4','18:32:16',0,'','drashti','2025-11-19 18:32:16','drarchit','2025-11-19 19:25:12'),(3739,0,0,'O','N','2526',982,0,'2025-11-19','0000-00-00',1015,0,982,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','18:55:17','','','N','Y',NULL,'O','O','L13','','0000-00-00 00:00:00','2','18:36:30',0,'','reception','2025-11-19 18:36:30','darshan','2025-11-19 18:55:17'),(3740,0,0,'O','N','2526',2693,0,'2025-11-19','2026-02-18',2762,0,2693,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:42:00','0000-00-00','','','','N','18:42:00','19:38:31','','','N','Y',NULL,'O','N','Z79','','0000-00-00 00:00:00','2','18:42:20',0,'','reception','2025-11-19 18:42:20','darshan','2025-11-19 19:38:31'),(3741,0,0,'O','N','2526',2145,0,'2025-11-19','0000-00-00',2197,0,2145,'N','','N','','','','','N','D02','','N',98,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','00:00:00','','','N','N',NULL,'O','O','Z80','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-11-19 18:44:32','','0000-00-00 00:00:00'),(3742,0,0,'O','N','2526',1251,0,'2025-11-19','0000-00-00',1292,0,1251,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','00:00:00','','','N','N',NULL,'O','O','Z81','','0000-00-00 00:00:00','','00:00:00',0,'','urvashi','2025-11-19 18:44:52','','0000-00-00 00:00:00'),(3743,0,0,'O','N','2526',2694,0,'2025-11-19','2026-02-18',2763,0,2694,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:47:00','0000-00-00','','','','N','18:47:00','19:41:18','','','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','4','18:47:43',0,'','drashti','2025-11-19 18:47:43','drarchit','2025-11-19 19:41:18'),(3744,0,0,'O','N','2526',2695,0,'2025-11-19','2026-02-18',2764,0,2695,'N','','N','','','','','N','D02','','N',201,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','00:00:00','','','N','N',NULL,'O','N','Z82','','0000-00-00 00:00:00','','00:00:00',0,'','urvashi','2025-11-19 18:48:52','','0000-00-00 00:00:00'),(3745,0,0,'O','N','2526',2696,0,'2025-11-19','2026-02-18',2765,0,2696,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','19:43:04','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','18:54:31',0,'','drashti','2025-11-19 18:54:31','drarchit','2025-11-19 19:43:04'),(3746,0,0,'O','N','2526',2697,0,'2025-11-19','2026-02-18',2766,0,2697,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','19:46:11','','','N','Y',NULL,'O','N','Z83','','0000-00-00 00:00:00','4','18:56:32',0,'','drashti','2025-11-19 18:56:32','drarchit','2025-11-19 19:46:11'),(3747,0,0,'O','N','2526',2698,0,'2025-11-19','2026-02-18',2767,0,2698,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:58:00','0000-00-00','','','','N','18:58:00','20:06:34','','','N','Y',NULL,'O','N','Z84','','0000-00-00 00:00:00','4','18:58:50',0,'','drashti','2025-11-19 18:58:50','drarchit','2025-11-19 20:06:34'),(3748,0,0,'O','N','2526',2699,0,'2025-11-19','2026-02-18',2768,0,2699,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:00:00','0000-00-00','','','','N','19:00:00','19:58:10','','N','N','Y',NULL,'O','N','Z85','','0000-00-00 00:00:00','4','19:00:25',0,'','urvashi','2025-11-19 19:00:25','drarchit','2025-11-19 19:58:10'),(3749,0,0,'O','N','2526',2700,0,'2025-11-19','2026-02-18',2769,0,2700,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:01:00','0000-00-00','','','','N','19:01:00','19:49:26','','','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','4','19:01:14',0,'','drashti','2025-11-19 19:01:14','drarchit','2025-11-19 19:49:26'),(3750,0,0,'O','N','2526',2701,0,'2025-11-19','2026-02-18',2770,0,2701,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:05:00','0000-00-00','','','','N','19:05:00','00:00:00','','','N','N',NULL,'O','N','Z86','','0000-00-00 00:00:00','7','19:05:51',0,'','manshi','2025-11-19 19:05:51','','0000-00-00 00:00:00'),(3751,0,0,'O','N','2526',2702,0,'2025-11-19','2026-02-18',2771,0,2702,'N','','N','','','NC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:15:00','0000-00-00','','','','N','19:15:00','20:10:04','','','N','Y',NULL,'O','N','Z87','','0000-00-00 00:00:00','4','19:15:38',0,'','drashti','2025-11-19 19:15:38','drarchit','2025-11-19 20:10:04'),(3752,0,0,'O','N','2526',1860,0,'2025-11-19','0000-00-00',1905,0,1860,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:26:00','0000-00-00','','','','N','19:26:00','20:18:13','','','N','Y',NULL,'O','O','Z88','','0000-00-00 00:00:00','4','19:26:27',0,'','drashti','2025-11-19 19:26:27','drarchit','2025-11-19 20:18:13'),(3753,0,0,'O','N','2526',2703,0,'2025-11-19','2026-02-18',2772,0,2703,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:49:00','0000-00-00','','','','N','19:49:00','00:00:00','','','N','N',NULL,'O','N','Z89','','0000-00-00 00:00:00','5','19:49:05',0,'','drashti','2025-11-19 19:49:05','','0000-00-00 00:00:00'),(3754,0,0,'O','N','2526',2704,0,'2025-11-19','2026-02-18',2773,0,2704,'N','','N','','','NC','','N','D27','','N',33,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:51:00','0000-00-00','','','','N','19:51:00','00:00:00','','','N','Y',NULL,'O','N','Z90','','0000-00-00 00:00:00','4','19:51:55',0,'','drashti','2025-11-19 19:51:55','','0000-00-00 00:00:00'),(3755,0,0,'O','N','2526',2290,0,'2025-11-19','0000-00-00',2347,0,2290,'N','','N','','','','Y','N','D02','','N',96,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:06:00','0000-00-00','','','','N','20:06:00','00:00:00','','','N','N',NULL,'O','O','Z91','','0000-00-00 00:00:00','','00:00:00',0,'','urvashi','2025-11-19 20:06:43','','0000-00-00 00:00:00'),(3756,0,0,'O','N','2526',2705,0,'2025-11-20','2026-02-19',2774,0,2705,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:46:00','0000-00-00','','','','N','08:46:00','19:11:45','','N','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','08:46:52',0,'','reception','2025-11-20 08:46:52','drarchit','2025-11-21 19:11:45'),(3757,0,0,'O','N','2526',2706,0,'2025-11-20','2026-02-19',2775,0,2706,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:24:00','0000-00-00','','','','N','09:24:00','12:57:34','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','09:24:14',0,'','reception','2025-11-20 09:24:14','drarchit','2025-11-20 12:57:34'),(3758,0,0,'O','N','2526',1243,0,'2025-11-20','0000-00-00',1284,0,1243,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:25:00','0000-00-00','','','','N','09:25:00','13:21:08','','','N','Y',NULL,'O','O','Z03','','0000-00-00 00:00:00','4','09:25:48',0,'','drashti','2025-11-20 09:25:48','drarchit','2025-11-20 13:21:08'),(3759,0,0,'I','N','2526',0,176,'2025-11-20','2026-02-19',2776,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-11-20','','1','mo','N','09:30:00','18:25:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-20 09:33:43','mo','2025-11-20 20:26:45'),(3760,0,0,'O','N','2526',2707,0,'2025-11-20','2026-02-19',2777,0,2707,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:34:00','0000-00-00','','','','N','09:34:00','12:16:23','','N','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','4','09:34:49',0,'','drashti','2025-11-20 09:34:49','drarchit','2025-11-20 12:16:23'),(3761,0,0,'O','N','2526',2708,0,'2025-11-20','2026-02-19',2651,0,2708,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:44:00','0000-00-00','','','','N','09:44:00','12:05:31','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','4','09:44:14',0,'','drashti','2025-11-20 09:44:14','drarchit','2025-11-20 12:05:31'),(3762,0,0,'O','N','2526',2709,0,'2025-11-20','2026-02-19',2778,0,2709,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:50:00','0000-00-00','','','','N','09:50:00','13:09:42','','N','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','2','09:50:32',0,'','reception','2025-11-20 09:50:32','darshan','2025-11-20 13:09:42'),(3763,0,0,'I','N','2526',0,177,'2025-11-20','2026-02-19',2779,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','03:00:00','2025-11-21','','1','mo','N','03:00:00','18:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-20 09:55:22','mo','2025-11-21 21:50:58'),(3764,0,0,'I','N','2526',0,178,'2025-11-20','2026-02-19',2780,0,0,'N','','N','','','','N','N','D02','','N',0,'','42',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','2025-12-01','','1','mo','N','10:00:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-20 10:07:37','thims','2025-12-01 16:41:42'),(3765,0,0,'O','N','2526',2710,0,'2025-11-20','2026-02-19',2781,0,2710,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:09:00','0000-00-00','','','','N','10:09:00','11:32:15','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','6','10:09:28',0,'','manshi','2025-11-20 10:09:28','drsagar','2025-11-20 11:32:15'),(3766,0,0,'O','N','2526',2711,0,'2025-11-20','2026-02-19',2782,0,2711,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:09:00','0000-00-00','','','','N','10:09:00','17:17:44','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','3','10:09:33',0,'','janvi','2025-11-20 10:09:33','drpratapsinh','2025-12-04 17:17:44'),(3767,0,0,'O','N','2526',2712,0,'2025-11-20','2026-02-19',2783,0,2712,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:11:00','0000-00-00','','','','N','10:11:00','13:40:37','','N','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','10:11:58',0,'','reception','2025-11-20 10:11:58','darshan','2025-11-20 13:40:37'),(3768,0,0,'O','N','2526',2713,0,'2025-11-20','2026-02-19',2784,0,2713,'N','','N','','','NV','','N','D06','','N',202,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:18:00','0000-00-00','','','','N','10:18:00','12:55:09','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:18:24',0,'','reception','2025-11-20 10:18:24','darshan','2025-11-20 12:55:09'),(3769,0,0,'O','N','2526',2714,0,'2025-11-20','2026-02-19',2785,0,2714,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:19:00','0000-00-00','','','','N','10:19:00','13:55:34','','N','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:19:44',0,'','drashti','2025-11-20 10:19:44','darshan','2025-11-20 13:55:34'),(3770,0,0,'O','N','2526',1548,0,'2025-11-20','0000-00-00',1591,0,1548,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:32:00','0000-00-00','','','','N','10:32:00','11:42:26','','','N','Y',NULL,'O','O','F03','','0000-00-00 00:00:00','2','10:32:35',0,'','reception','2025-11-20 10:32:35','darshan','2025-11-20 11:42:26'),(3771,0,0,'O','N','2526',2715,0,'2025-11-20','2026-02-19',2786,0,2715,'N','','N','','','NV','','N','D06','','N',203,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','14:11:32','','N','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','2','10:37:47',0,'','reception','2025-11-20 10:37:47','darshan','2025-11-20 14:11:32'),(3772,0,0,'O','N','2526',1899,0,'2025-11-20','0000-00-00',1947,0,1899,'N','','N','','','FOLLOWUP V ','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','11:47:11','','','N','Y',NULL,'O','O','F04','','0000-00-00 00:00:00','2','10:38:26',0,'','reception','2025-11-20 10:38:26','darshan','2025-11-20 11:47:11'),(3773,0,0,'O','N','2526',2716,0,'2025-11-20','2026-02-19',2787,0,2716,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','18:07:26','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','2','10:43:15',0,'','reception','2025-11-20 10:43:15','darshan','2025-11-20 18:07:26'),(3774,0,0,'O','N','2526',2717,0,'2025-11-20','2026-02-19',2788,0,2717,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:47:00','0000-00-00','','','','N','10:47:00','00:00:00','','','N','N',NULL,'O','N','Z11','','0000-00-00 00:00:00','3','10:47:47',0,'','janvi','2025-11-20 10:47:47','','0000-00-00 00:00:00'),(3775,0,0,'O','N','2526',2176,0,'2025-11-20','0000-00-00',2231,0,2176,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','11:57:36','','','N','Y',NULL,'O','O','G02','','0000-00-00 00:00:00','2','10:48:32',0,'','reception','2025-11-20 10:48:32','darshan','2025-11-20 11:57:36'),(3776,0,0,'O','N','2526',2718,0,'2025-11-20','2026-02-19',2789,0,2718,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','14:02:43','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:53:03',0,'','reception','2025-11-20 10:53:03','darshan','2025-11-20 14:02:43'),(3777,0,0,'O','N','2526',2719,0,'2025-11-20','2026-02-19',2790,0,2719,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','00:00:00','','','N','N',NULL,'O','N','Z12','','0000-00-00 00:00:00','3','10:54:58',0,'','janvi','2025-11-20 10:54:58','','0000-00-00 00:00:00'),(3778,0,0,'O','N','2526',2720,0,'2025-11-20','2026-02-19',2791,0,2720,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','00:00:00','','','N','N',NULL,'O','N','Z13','','0000-00-00 00:00:00','3','10:56:35',0,'','janvi','2025-11-20 10:56:35','','0000-00-00 00:00:00'),(3779,0,0,'O','N','2526',2721,0,'2025-11-20','2026-02-19',2792,0,2721,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','11:15:54','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','4','10:57:44',0,'','drashti','2025-11-20 10:57:44','drarchit','2025-11-20 11:15:54'),(3780,0,0,'O','N','2526',2722,0,'2025-11-20','2026-02-19',2793,0,2722,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','12:10:57','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','7','11:03:42',0,'','manshi','2025-11-20 11:03:42','drridham','2025-11-20 12:10:57'),(3781,0,0,'O','N','2526',2723,0,'2025-11-20','2026-02-19',2794,0,2723,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','11:19:08','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','4','11:04:50',0,'','drashti','2025-11-20 11:04:50','drarchit','2025-11-20 11:19:08'),(3782,0,0,'O','N','2526',1913,0,'2025-11-20','0000-00-00',1961,0,1913,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','11:53:32','','','N','Y',NULL,'O','O','G03','','0000-00-00 00:00:00','2','11:05:29',0,'','reception','2025-11-20 11:05:29','darshan','2025-11-20 11:53:32'),(3783,0,0,'O','N','2526',1715,0,'2025-11-20','0000-00-00',1759,0,1715,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','00:00:00','','','N','N',NULL,'O','O','Z17','','0000-00-00 00:00:00','3','11:06:38',0,'','janvi','2025-11-20 11:06:38','','0000-00-00 00:00:00'),(3784,0,0,'O','N','2526',549,0,'2025-11-20','0000-00-00',575,0,549,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','00:00:00','','','N','N',NULL,'O','O','Z18','','0000-00-00 00:00:00','3','11:09:29',0,'','janvi','2025-11-20 11:09:29','','0000-00-00 00:00:00'),(3785,0,0,'O','N','2526',2329,0,'2025-11-20','0000-00-00',2385,0,2329,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','00:00:00','','','N','N',NULL,'O','O','Z19','','0000-00-00 00:00:00','3','11:13:34',0,'','janvi','2025-11-20 11:13:34','','0000-00-00 00:00:00'),(3786,0,0,'O','N','2526',2724,0,'2025-11-20','2026-02-19',2795,0,2724,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','11:48:09','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','4','11:13:37',0,'','drashti','2025-11-20 11:13:37','drarchit','2025-11-20 11:48:09'),(3787,0,0,'O','N','2526',2725,0,'2025-11-20','2026-02-19',2796,0,2725,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','11:41:19','','','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','4','11:19:18',0,'','drashti','2025-11-20 11:19:18','drarchit','2025-11-20 11:41:19'),(3788,0,0,'O','N','2526',2726,0,'2025-11-20','2026-02-19',2797,0,2726,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','00:00:00','','','N','N',NULL,'O','N','Z21','','0000-00-00 00:00:00','3','11:21:21',0,'','janvi','2025-11-20 11:21:21','','0000-00-00 00:00:00'),(3789,0,0,'O','N','2526',2727,0,'2025-11-20','2026-02-19',2798,0,2727,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','11:49:50','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','4','11:23:51',0,'','janvi','2025-11-20 11:23:51','drarchit','2025-11-20 11:49:50'),(3790,0,0,'O','N','2526',2728,0,'2025-11-20','2026-02-19',2499,0,2728,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','12:05:21','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','4','11:24:08',0,'','drashti','2025-11-20 11:24:08','drarchit','2025-11-20 12:05:21'),(3791,0,0,'O','N','2526',1571,0,'2025-11-20','0000-00-00',1614,0,1571,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','12:11:07','','','N','Y',NULL,'O','O','Z24','','0000-00-00 00:00:00','7','11:24:30',0,'','manshi','2025-11-20 11:24:30','drridham','2025-11-20 12:11:07'),(3792,0,0,'O','N','2526',2286,0,'2025-11-20','0000-00-00',2343,0,2286,'N','','N','','','FC','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','11:55:33','','','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','4','11:30:22',0,'','drashti','2025-11-20 11:30:22','drarchit','2025-11-20 11:55:33'),(3793,0,0,'O','N','2526',2729,0,'2025-11-20','2026-02-19',2799,0,2729,'N','','N','','','NV','','N','D06','','N',204,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','14:04:46','','N','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:33:07',0,'','reception','2025-11-20 11:33:07','darshan','2025-11-20 14:04:46'),(3794,0,0,'O','N','2526',2730,0,'2025-11-20','2026-02-19',2800,0,2730,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','12:09:52','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','11:39:07',0,'','janvi','2025-11-20 11:39:07','drarchit','2025-11-20 12:09:52'),(3795,0,0,'O','N','2526',2731,0,'2025-11-20','2026-02-19',2801,0,2731,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','12:14:59','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','2','11:46:03',0,'','reception','2025-11-20 11:46:03','darshan','2025-11-20 12:14:59'),(3796,0,0,'O','N','2526',2528,0,'2025-11-20','0000-00-00',1616,0,2528,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','11:48:45','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','6','11:46:39',0,'','manshi','2025-11-20 11:46:39','drsagar','2025-11-20 11:48:45'),(3797,0,0,'O','N','2526',1858,0,'2025-11-20','0000-00-00',870,0,1858,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','12:11:19','','','N','Y',NULL,'O','O','Z26','','0000-00-00 00:00:00','7','11:49:01',0,'','manshi','2025-11-20 11:49:01','drridham','2025-11-20 12:11:19'),(3798,0,0,'O','N','2526',2732,0,'2025-11-20','2026-02-19',2802,0,2732,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','12:23:05','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','4','11:52:50',0,'','drashti','2025-11-20 11:52:50','drarchit','2025-11-20 12:23:05'),(3799,0,0,'O','N','2526',2733,0,'2025-11-20','2026-02-19',2803,0,2733,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','12:53:05','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','4','11:54:31',0,'','janvi','2025-11-20 11:54:31','drarchit','2025-11-20 12:53:05'),(3800,0,0,'O','N','2526',615,0,'2025-11-20','0000-00-00',645,0,615,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:57:00','0000-00-00','','','','N','11:57:00','13:40:45','','N','N','Y',NULL,'O','O','I02','','0000-00-00 00:00:00','4','11:57:06',0,'','drashti','2025-11-20 11:57:06','drarchit','2025-11-20 13:40:45'),(3801,0,0,'O','N','2526',2734,0,'2025-11-20','2026-02-19',2804,0,2734,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','14:05:56','','N','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','4','11:58:25',0,'','drashti','2025-11-20 11:58:25','drarchit','2025-11-20 14:05:56'),(3802,0,0,'O','N','2526',2735,0,'2025-11-20','2026-02-19',2805,0,2735,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:01:00','0000-00-00','','','','N','12:01:00','12:37:58','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','12:01:40',0,'','reception','2025-11-20 12:01:40','darshan','2025-11-20 12:37:58'),(3803,0,0,'O','N','2526',2736,0,'2025-11-20','2026-02-19',2806,0,2736,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','13:05:43','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','4','12:06:25',0,'','drashti','2025-11-20 12:06:25','drarchit','2025-11-20 13:05:43'),(3804,0,0,'O','N','2526',2737,0,'2025-11-20','2026-02-19',2807,0,2737,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:12:00','0000-00-00','','','','N','12:12:00','14:33:11','','N','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','2','12:12:20',0,'','drashti','2025-11-20 12:12:20','darshan','2025-11-20 14:33:11'),(3805,0,0,'O','N','2526',2738,0,'2025-11-20','2026-02-19',2808,0,2738,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:12:00','0000-00-00','','','','N','12:12:00','00:00:00','','','N','N',NULL,'O','N','Z31','','0000-00-00 00:00:00','3','12:12:28',0,'','janvi','2025-11-20 12:12:28','','0000-00-00 00:00:00'),(3806,0,0,'O','N','2526',2739,0,'2025-11-20','2026-02-19',2809,0,2739,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:14:00','0000-00-00','','','','N','12:14:00','13:29:10','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','4','12:14:21',0,'','drashti','2025-11-20 12:14:21','drarchit','2025-11-20 13:29:10'),(3807,0,0,'O','N','2526',2740,0,'2025-11-20','2026-02-19',2810,0,2740,'N','','N','','','NV','','N','D06','','N',205,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:22:00','0000-00-00','','','','N','12:22:00','14:28:49','','N','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:22:32',0,'','reception','2025-11-20 12:22:32','darshan','2025-11-20 14:28:49'),(3808,0,0,'O','N','2526',2741,0,'2025-11-20','2026-02-19',2811,0,2741,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:22:00','0000-00-00','','','','N','12:22:00','00:00:00','','','N','N',NULL,'O','N','Z32','','0000-00-00 00:00:00','3','12:23:16',0,'','janvi','2025-11-20 12:23:16','','0000-00-00 00:00:00'),(3809,0,0,'O','N','2526',2742,0,'2025-11-20','2026-02-19',2812,0,2742,'N','','N','','','','','N','D27','','N',98,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:25:00','0000-00-00','','','','N','12:25:00','18:59:33','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','4','12:25:28',0,'','drashti','2025-11-20 12:25:28','drarchit','2025-11-21 18:59:33'),(3810,0,0,'O','N','2526',1629,0,'2025-11-20','0000-00-00',1674,0,1629,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','13:22:07','','N','N','Y',NULL,'O','O','I04','','0000-00-00 00:00:00','4','12:27:37',0,'','drashti','2025-11-20 12:27:37','drarchit','2025-11-21 13:22:07'),(3811,0,0,'O','N','2526',2743,0,'2025-11-20','2026-02-19',2813,0,2743,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','14:19:33','','','N','Y',NULL,'O','N','I05','','0000-00-00 00:00:00','4','12:28:21',0,'','janvi','2025-11-20 12:28:21','drarchit','2025-11-20 14:19:33'),(3812,0,0,'O','N','2526',1287,0,'2025-11-20','0000-00-00',1326,0,1287,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:29:00','0000-00-00','','','','N','12:29:00','13:15:04','','','N','Y',NULL,'O','O','J03','','0000-00-00 00:00:00','2','12:29:21',0,'','reception','2025-11-20 12:29:21','darshan','2025-11-20 13:15:04'),(3813,0,0,'O','N','2526',2142,0,'2025-11-20','0000-00-00',2193,0,2142,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','0000-00-00','','','','N','12:30:00','12:34:26','','','N','Y',NULL,'O','O','Z34','','0000-00-00 00:00:00','6','12:30:58',0,'','manshi','2025-11-20 12:30:58','drsagar','2025-11-20 12:34:26'),(3814,0,0,'O','N','2526',373,0,'2025-11-20','0000-00-00',391,0,373,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:37:00','0000-00-00','','','','N','12:37:00','13:48:54','','','N','Y',NULL,'O','O','J04','','0000-00-00 00:00:00','4','12:37:41',0,'','drashti','2025-11-20 12:37:41','drarchit','2025-11-20 13:48:54'),(3816,0,0,'O','N','2526',2182,0,'2025-11-20','0000-00-00',2237,0,2182,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:43:00','0000-00-00','','','','N','12:43:00','13:20:25','','','N','Y',NULL,'O','O','J05','','0000-00-00 00:00:00','2','12:43:42',0,'','reception','2025-11-20 12:43:42','darshan','2025-11-20 13:20:25'),(3817,0,0,'O','N','2526',191,0,'2025-11-20','0000-00-00',204,0,191,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:43:00','0000-00-00','','','','N','12:43:00','14:24:33','','','N','Y',NULL,'O','O','J06','','0000-00-00 00:00:00','4','12:43:49',0,'','janvi','2025-11-20 12:43:48','drarchit','2025-11-20 14:24:33'),(3818,0,0,'O','N','2526',2079,0,'2025-11-20','0000-00-00',2133,0,2079,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:59:00','0000-00-00','','','','N','12:59:00','14:36:30','','N','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','2','12:59:04',0,'','reception','2025-11-20 12:59:04','darshan','2025-11-20 14:36:30'),(3819,0,0,'O','N','2526',1589,0,'2025-11-20','0000-00-00',1633,0,1589,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:12:00','0000-00-00','','','','N','13:12:00','14:16:28','','','N','Y',NULL,'O','O','K01','','0000-00-00 00:00:00','2','13:12:15',0,'','reception','2025-11-20 13:12:15','darshan','2025-11-20 14:16:28'),(3820,0,0,'O','N','2526',2744,0,'2025-11-20','2026-02-19',2814,0,2744,'N','','N','','','NV','','N','D06','','N',206,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:31:00','0000-00-00','','','','N','16:31:00','19:07:33','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:31:49',0,'','priyanshi','2025-11-20 16:31:49','darshan','2025-11-20 19:07:33'),(3821,0,0,'O','N','2526',2716,0,'2025-11-20','0000-00-00',2787,0,2716,'N','','N','','','REPORT','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:37:00','0000-00-00','','','','N','16:37:00','18:36:20','','N','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','2','16:37:53',0,'','priyanshi','2025-11-20 16:37:53','darshan','2025-11-20 18:36:20'),(3822,0,0,'O','N','2526',2745,0,'2025-11-20','2026-02-19',2815,0,2745,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:47:00','0000-00-00','','','','N','16:47:00','17:23:22','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:47:24',0,'','priyanshi','2025-11-20 16:47:24','darshan','2025-11-20 17:23:22'),(3823,0,0,'O','N','2526',2746,0,'2025-11-20','2026-02-19',2816,0,2746,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:51:00','0000-00-00','','','','N','16:51:00','18:51:25','','N','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','16:52:03',0,'','reception','2025-11-20 16:52:03','darshan','2025-11-20 18:51:25'),(3824,0,0,'O','N','2526',2747,0,'2025-11-20','2026-02-19',2817,0,2747,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:54:00','0000-00-00','','','','N','16:54:00','17:27:25','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','16:54:21',0,'','drashti','2025-11-20 16:54:21','darshan','2025-11-20 17:27:25'),(3825,0,0,'O','N','2526',2005,0,'2025-11-20','0000-00-00',2056,0,2005,'N','','N','','','','','N','D02','','N',146,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:14:00','0000-00-00','','','','N','17:14:00','00:00:00','','','N','N',NULL,'O','O','Z36','','0000-00-00 00:00:00','3','17:14:44',0,'','drashti','2025-11-20 17:14:44','','0000-00-00 00:00:00'),(3826,0,0,'O','N','2526',2748,0,'2025-11-20','2026-02-19',2818,0,2748,'N','','N','','','NV','','N','D06','','N',207,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:15:00','0000-00-00','','','','N','17:15:00','19:29:14','','N','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','17:15:41',0,'','reception','2025-11-20 17:15:41','darshan','2025-11-20 19:29:14'),(3827,0,0,'O','N','2526',2749,0,'2025-11-20','2026-02-19',2819,0,2749,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:17:00','0000-00-00','','','','N','17:17:00','17:58:30','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:17:53',0,'','reception','2025-11-20 17:17:53','darshan','2025-11-20 17:58:30'),(3828,0,0,'O','N','2526',2136,0,'2025-11-20','0000-00-00',2187,0,2136,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','17:55:41','','','N','Y',NULL,'O','O','L06','','0000-00-00 00:00:00','2','17:20:27',0,'','reception','2025-11-20 17:20:27','darshan','2025-11-20 17:55:41'),(3829,0,0,'O','N','2526',1346,0,'2025-11-20','0000-00-00',1386,0,1346,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:23:00','0000-00-00','','','','N','17:23:00','12:54:40','','','N','Y',NULL,'O','O','Z38','','0000-00-00 00:00:00','2','17:23:37',0,'','reception','2025-11-20 17:23:37','darshan','2025-11-22 12:54:40'),(3830,0,0,'O','N','2526',2750,0,'2025-11-20','2026-02-19',2820,0,2750,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','18:36:27','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','6','17:27:53',0,'','manshi','2025-11-20 17:27:53','drsagar','2025-11-20 18:36:27'),(3831,0,0,'O','N','2526',2751,0,'2025-11-20','2026-02-19',2821,0,2751,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','18:40:59','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','2','17:32:50',0,'','reception','2025-11-20 17:32:50','darshan','2025-11-20 18:40:59'),(3832,0,0,'O','N','2526',2752,0,'2025-11-20','2026-02-19',2822,0,2752,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:39:00','0000-00-00','','','','N','17:39:00','19:39:45','','N','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:39:41',0,'','reception','2025-11-20 17:39:41','darshan','2025-11-20 19:39:45'),(3833,0,0,'O','N','2526',2753,0,'2025-11-20','2026-02-19',2823,0,2753,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:45:00','0000-00-00','','','','N','17:45:00','19:00:23','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:45:05',0,'','reception','2025-11-20 17:45:05','darshan','2025-11-20 19:00:23'),(3834,0,0,'O','N','2526',1597,0,'2025-11-20','0000-00-00',1642,0,1597,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','19:02:46','','','N','Y',NULL,'O','O','L09','','0000-00-00 00:00:00','2','17:46:32',0,'','reception','2025-11-20 17:46:32','darshan','2025-11-20 19:02:46'),(3835,0,0,'O','N','2526',2754,0,'2025-11-20','2026-02-19',2824,0,2754,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:47:00','0000-00-00','','','','N','17:47:00','18:19:25','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','4','17:47:21',0,'','drashti','2025-11-20 17:47:21','drarchit','2025-11-20 18:19:24'),(3836,0,0,'O','N','2526',1976,0,'2025-11-20','0000-00-00',2024,0,1976,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','00:00:00','','','N','N',NULL,'O','O','Z41','','0000-00-00 00:00:00','3','17:49:18',0,'','janvi','2025-11-20 17:49:18','','0000-00-00 00:00:00'),(3837,0,0,'O','N','2526',2755,0,'2025-11-20','2026-02-19',2825,0,2755,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','0000-00-00','','','','N','18:00:00','20:11:30','','N','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','4','18:01:23',0,'','janvi','2025-11-20 18:01:23','drarchit','2025-11-20 20:11:30'),(3838,0,0,'O','N','2526',2366,0,'2025-11-20','0000-00-00',2421,0,2366,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','18:32:16','','','N','Y',NULL,'O','O','Z42','','0000-00-00 00:00:00','4','18:04:35',0,'','drashti','2025-11-20 18:04:35','drarchit','2025-11-20 18:32:16'),(3839,0,0,'O','N','2526',2756,0,'2025-11-20','2026-02-19',2826,0,2756,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','00:00:00','','','N','N',NULL,'O','N','Z43','','0000-00-00 00:00:00','3','18:11:25',0,'','janvi','2025-11-20 18:11:25','','0000-00-00 00:00:00'),(3840,0,0,'O','N','2526',2757,0,'2025-11-20','2026-02-19',2827,0,2757,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','19:12:16','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','7','18:15:46',0,'','manshi','2025-11-20 18:15:46','drridham','2025-11-20 19:12:16'),(3841,0,0,'O','N','2526',390,0,'2025-11-20','0000-00-00',412,0,390,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','19:06:08','','','N','Y',NULL,'O','O','L12','','0000-00-00 00:00:00','2','18:19:35',0,'','drashti','2025-11-20 18:19:35','darshan','2025-11-20 19:06:08'),(3842,0,0,'O','N','2526',984,0,'2025-11-20','0000-00-00',1016,0,984,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:20:00','0000-00-00','','','','N','18:20:00','19:18:07','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','2','18:20:38',0,'','reception','2025-11-20 18:20:38','darshan','2025-11-20 19:18:07'),(3843,0,0,'O','N','2526',1362,0,'2025-11-20','0000-00-00',1402,0,1362,'N','','N','','','FV','','N','D06','','N',96,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','18:50:47','','','N','Y',NULL,'O','O','L13','','0000-00-00 00:00:00','2','18:22:00',0,'','reception','2025-11-20 18:22:00','darshan','2025-11-20 18:50:47'),(3844,0,0,'O','N','2526',832,0,'2025-11-20','0000-00-00',863,0,832,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','19:23:49','','','N','Y',NULL,'O','O','L14','','0000-00-00 00:00:00','2','18:31:07',0,'','reception','2025-11-20 18:31:07','darshan','2025-11-20 19:23:49'),(3845,0,0,'O','N','2526',2758,0,'2025-11-20','2026-02-19',2828,0,2758,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','18:41:57','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','18:31:24',0,'','drashti','2025-11-20 18:31:24','drarchit','2025-11-20 18:41:57'),(3846,0,0,'O','N','2526',2759,0,'2025-11-20','2026-02-19',2829,0,2759,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:37:00','0000-00-00','','','','N','18:37:00','19:38:55','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','2','18:37:41',0,'','reception','2025-11-20 18:37:41','darshan','2025-11-20 19:38:55'),(3847,0,0,'O','N','2526',2118,0,'2025-11-20','0000-00-00',1763,0,2118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:38:00','0000-00-00','','','','N','18:38:00','00:00:00','','','N','N',NULL,'O','O','Z47','','0000-00-00 00:00:00','3','18:38:56',0,'','janvi','2025-11-20 18:38:56','','0000-00-00 00:00:00'),(3848,0,0,'O','N','2526',2574,0,'2025-11-20','0000-00-00',2635,0,2574,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:39:00','0000-00-00','','','','N','18:39:00','19:12:44','','','N','Y',NULL,'O','O','Z48','','0000-00-00 00:00:00','7','18:39:53',0,'','manshi','2025-11-20 18:39:53','drridham','2025-11-20 19:12:44'),(3849,0,0,'O','N','2526',2586,0,'2025-11-20','0000-00-00',392,0,2586,'N','','N','','','FOLLOWUP C','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:41:00','0000-00-00','','','','N','18:41:00','19:12:53','','','N','Y',NULL,'O','O','Z49','','0000-00-00 00:00:00','7','18:41:00',0,'','drashti','2025-11-20 18:41:00','drridham','2025-11-20 19:12:53'),(3850,0,0,'O','N','2526',2760,0,'2025-11-20','2026-02-19',2830,0,2760,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','19:03:45','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','4','18:43:41',0,'','drashti','2025-11-20 18:43:41','drarchit','2025-11-20 19:03:45'),(3851,0,0,'O','N','2526',221,0,'2025-11-20','0000-00-00',234,0,221,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:50:00','0000-00-00','','','','N','18:50:00','00:00:00','','','N','N',NULL,'O','O','Z51','','0000-00-00 00:00:00','3','18:50:31',0,'','drashti','2025-11-20 18:50:31','','0000-00-00 00:00:00'),(3852,0,0,'O','N','2526',2761,0,'2025-11-20','2026-02-19',2831,0,2761,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','19:14:36','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','4','19:04:10',0,'','drashti','2025-11-20 18:56:10','drarchit','2025-11-20 19:14:36'),(3853,0,0,'O','N','2526',2762,0,'2025-11-20','2026-02-19',2832,0,2762,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:02:00','0000-00-00','','','','N','19:02:00','19:13:13','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','7','19:02:27',0,'','manshi','2025-11-20 19:02:27','drridham','2025-11-20 19:13:13'),(3854,0,0,'O','N','2526',1837,0,'2025-11-20','0000-00-00',1883,0,1837,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:15:00','0000-00-00','','','','N','19:15:00','00:00:00','','','N','N',NULL,'O','O','Z54','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-11-20 19:15:48','','0000-00-00 00:00:00'),(3855,0,0,'O','N','2526',1314,0,'2025-11-20','0000-00-00',1353,0,1314,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:16:00','0000-00-00','','','','N','19:16:00','19:49:00','','','N','Y',NULL,'O','O','Z55','','0000-00-00 00:00:00','2','19:16:50',0,'','reception','2025-11-20 19:16:50','darshan','2025-11-20 19:49:00'),(3856,0,0,'O','N','2526',900,0,'2025-11-20','0000-00-00',926,0,900,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:19:00','0000-00-00','','','','N','19:19:00','19:26:46','','','N','Y',NULL,'O','O','Z56','','0000-00-00 00:00:00','6','19:19:37',0,'','manshi','2025-11-20 19:19:37','drsagar','2025-11-20 19:26:46'),(3857,0,0,'O','N','2526',2033,0,'2025-11-20','0000-00-00',2087,0,2033,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:22:00','0000-00-00','','','','N','19:22:00','00:00:00','','','N','N',NULL,'O','O','Z57','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-20 19:23:00','','0000-00-00 00:00:00'),(3858,0,0,'O','N','2526',1317,0,'2025-11-20','0000-00-00',1356,0,1317,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:26:00','0000-00-00','','','','N','19:26:00','00:00:00','','','N','Y',NULL,'O','O','Z58','','0000-00-00 00:00:00','4','19:26:52',0,'','janvi','2025-11-20 19:26:52','','0000-00-00 00:00:00'),(3859,0,0,'O','N','2526',1288,0,'2025-11-20','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:52:00','0000-00-00','','','','N','19:52:00','00:00:00','','','N','N',NULL,'O','O','Z59','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-20 19:52:31','','0000-00-00 00:00:00'),(3860,0,0,'O','N','2526',2763,0,'2025-11-20','2026-02-19',2833,0,2763,'N','','N','','','FV','Y','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:33:00','0000-00-00','','','','N','20:33:00','00:00:00','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','2','20:33:24',0,'','reception','2025-11-20 20:33:24','','0000-00-00 00:00:00'),(3861,0,0,'I','N','2526',0,179,'2025-11-20','2026-02-19',2834,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','22:40:00','2025-11-30','','1','mo','N','22:40:00','11:45:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-20 22:58:44','mo','2025-11-30 13:34:48'),(3862,0,0,'O','N','2526',2764,0,'2025-11-21','2026-02-20',2241,0,2764,'N','','N','','','INJECTION','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:56:00','0000-00-00','','','','N','08:56:00','13:14:07','','N','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','08:56:15',0,'','priyanshi','2025-11-21 08:56:14','drarchit','2025-11-21 13:14:07'),(3863,0,0,'O','N','2526',2765,0,'2025-11-21','2026-02-20',2835,0,2765,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:59:00','0000-00-00','','','','N','08:59:00','19:05:45','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','08:59:11',0,'','priyanshi','2025-11-21 08:59:11','drarchit','2025-11-21 19:05:45'),(3864,0,0,'O','N','2526',2708,0,'2025-11-21','0000-00-00',2651,0,2708,'N','','N','','','INJECTION','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:01:00','0000-00-00','','','','N','09:01:00','11:36:36','','','N','Y',NULL,'O','O','Z03','','0000-00-00 00:00:00','4','09:01:35',0,'','priyanshi','2025-11-21 09:01:35','drarchit','2025-11-21 11:36:36'),(3865,0,0,'O','N','2526',1896,0,'2025-11-21','0000-00-00',1944,0,1896,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:27:00','0000-00-00','','','','N','09:27:00','00:00:00','','','N','N',NULL,'O','O','Z04','','0000-00-00 00:00:00','3','09:27:01',0,'','priyanshi','2025-11-21 09:27:01','','0000-00-00 00:00:00'),(3866,0,0,'O','N','2526',1012,0,'2025-11-21','0000-00-00',1045,0,1012,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:38:00','0000-00-00','','','','N','09:38:00','10:53:27','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','09:38:51',0,'','priyanshi','2025-11-21 09:38:51','darshan','2025-11-21 10:53:27'),(3867,0,0,'O','N','2526',2766,0,'2025-11-21','2026-02-20',2836,0,2766,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:42:00','0000-00-00','','','','N','09:42:00','12:00:42','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','4','09:42:48',0,'','drashti','2025-11-21 09:42:48','drarchit','2025-11-21 12:00:42'),(3868,0,0,'O','N','2526',2767,0,'2025-11-21','2026-02-20',2504,0,2767,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:49:00','0000-00-00','','','','N','09:49:00','17:04:31','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','3','09:49:41',0,'','janvi','2025-11-21 09:49:41','drpratapsinh','2025-12-04 17:04:31'),(3869,0,0,'O','N','2526',2768,0,'2025-11-21','2026-02-20',2837,0,2768,'N','','N','','','NC','','N','D02','','N',37,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:02:00','0000-00-00','','','','N','10:02:00','00:00:00','','','N','N',NULL,'O','N','Z06','','0000-00-00 00:00:00','3','10:02:58',0,'','drashti','2025-11-21 10:02:58','','0000-00-00 00:00:00'),(3870,0,0,'O','N','2526',2769,0,'2025-11-21','2026-02-20',2838,0,2769,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:03:00','0000-00-00','','','','N','10:03:00','12:24:55','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','4','10:03:49',0,'','janvi','2025-11-21 10:03:49','drarchit','2025-11-21 12:24:55'),(3871,0,0,'O','N','2526',2770,0,'2025-11-21','2026-02-20',2839,0,2770,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:06:00','0000-00-00','','','','N','10:06:00','11:54:40','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','4','10:06:28',0,'','drashti','2025-11-21 10:06:28','drarchit','2025-11-21 11:54:40'),(3872,0,0,'O','N','2526',1795,0,'2025-11-21','0000-00-00',1840,0,1795,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:08:00','0000-00-00','','','','N','10:08:00','13:05:00','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','6','10:09:18',0,'','janvi','2025-11-21 10:09:18','drsagar','2025-11-21 13:05:00'),(3873,0,0,'O','N','2526',2771,0,'2025-11-21','2026-02-20',2840,0,2771,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:17:00','0000-00-00','','','','N','10:17:00','13:28:49','','','N','Y',NULL,'O','N','E02','','0000-00-00 00:00:00','2','10:17:31',0,'','urvashi','2025-11-21 10:17:31','darshan','2025-11-21 13:28:49'),(3874,0,0,'O','N','2526',2772,0,'2025-11-21','2026-02-20',2841,0,2772,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:30:00','0000-00-00','','','','N','10:30:00','12:40:09','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:30:25',0,'','urvashi','2025-11-21 10:30:25','darshan','2025-11-21 12:40:09'),(3875,0,0,'O','N','2526',2773,0,'2025-11-21','2026-02-20',2842,0,2773,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:31:00','0000-00-00','','','','N','10:31:00','11:19:57','','','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:31:57',0,'','drashti','2025-11-21 10:31:56','darshan','2025-11-21 11:19:57'),(3876,0,0,'O','N','2526',2367,0,'2025-11-21','0000-00-00',2422,0,2367,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:32:00','0000-00-00','','','','N','10:32:00','11:34:24','','','N','Y',NULL,'O','O','Z08','','0000-00-00 00:00:00','6','10:32:02',0,'','manshi','2025-11-21 10:32:02','drsagar','2025-11-21 11:34:24'),(3877,0,0,'O','N','2526',2774,0,'2025-11-21','2026-02-20',2843,0,2774,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','00:00:00','','','N','N',NULL,'O','N','Z09','','0000-00-00 00:00:00','3','10:38:49',0,'','drashti','2025-11-21 10:38:49','','0000-00-00 00:00:00'),(3878,0,0,'O','N','2526',2775,0,'2025-11-21','2026-02-20',2844,0,2775,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','13:07:41','','N','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','2','10:39:44',0,'','urvashi','2025-11-21 10:39:44','darshan','2025-11-21 13:07:41'),(3879,0,0,'O','N','2526',2776,0,'2025-11-21','2026-02-20',2845,0,2776,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','13:24:14','','N','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:53:46',0,'','urvashi','2025-11-21 10:53:46','darshan','2025-11-21 13:24:14'),(3880,0,0,'O','N','2526',2777,0,'2025-11-21','2026-02-20',2846,0,2777,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','12:13:20','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','2','10:54:35',0,'','urvashi','2025-11-21 10:54:35','darshan','2025-11-21 12:13:20'),(3881,0,0,'O','N','2526',746,0,'2025-11-21','0000-00-00',777,0,746,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','12:16:00','','','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','2','10:56:50',0,'','urvashi','2025-11-21 10:56:50','darshan','2025-11-21 12:16:00'),(3882,0,0,'O','N','2526',1921,0,'2025-11-21','0000-00-00',1969,0,1921,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','12:05:42','','','N','Y',NULL,'O','O','H03','','0000-00-00 00:00:00','4','11:02:28',0,'','drashti','2025-11-21 11:02:28','drarchit','2025-11-21 12:05:42'),(3883,0,0,'O','N','2526',2778,0,'2025-11-21','2026-02-20',2847,0,2778,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','00:00:00','','','N','N',NULL,'O','N','Z11','','0000-00-00 00:00:00','3','11:11:11',0,'','janvi','2025-11-21 11:11:11','','0000-00-00 00:00:00'),(3884,0,0,'O','N','2526',2779,0,'2025-11-21','2026-02-20',2848,0,2779,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','12:28:46','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','4','11:12:33',0,'','urvashi','2025-11-21 11:12:33','drarchit','2025-11-21 12:28:46'),(3885,0,0,'O','N','2526',2247,0,'2025-11-21','0000-00-00',2304,0,2247,'N','','N','','','','','N','D02','','N',160,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','00:00:00','','','N','N',NULL,'O','O','Z13','','0000-00-00 00:00:00','3','11:13:58',0,'','drashti','2025-11-21 11:13:58','','0000-00-00 00:00:00'),(3886,0,0,'O','N','2526',2780,0,'2025-11-21','2026-02-20',2849,0,2780,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','11:51:32','','','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','2','11:20:09',0,'','urvashi','2025-11-21 11:20:09','darshan','2025-11-21 11:51:32'),(3887,0,0,'O','N','2526',2781,0,'2025-11-21','2026-02-20',2850,0,2781,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','11:34:46','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','6','11:24:43',0,'','manshi','2025-11-21 11:24:43','drsagar','2025-11-21 11:34:46'),(3888,0,0,'O','N','2526',2782,0,'2025-11-21','2026-02-20',2851,0,2782,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','13:43:59','','N','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','2','11:30:58',0,'','urvashi','2025-11-21 11:30:58','darshan','2025-11-21 13:43:59'),(3889,0,0,'O','N','2526',2783,0,'2025-11-21','2026-02-20',2852,0,2783,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','19:07:51','','N','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','4','11:33:21',0,'','drashti','2025-11-21 11:33:21','drarchit','2025-11-21 19:07:51'),(3890,0,0,'O','N','2526',2784,0,'2025-11-21','2026-02-20',2853,0,2784,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:34:00','0000-00-00','','','','N','11:34:00','12:43:44','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','4','11:34:58',0,'','drashti','2025-11-21 11:34:58','drarchit','2025-11-21 12:43:44'),(3891,0,0,'O','N','2526',1928,0,'2025-11-21','0000-00-00',1976,0,1928,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','13:05:37','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','6','11:42:32',0,'','manshi','2025-11-21 11:42:32','drsagar','2025-11-21 13:05:37'),(3892,0,0,'O','N','2526',2785,0,'2025-11-21','2026-02-20',2854,0,2785,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','12:21:56','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','2','11:45:26',0,'','drashti','2025-11-21 11:45:26','darshan','2025-11-21 12:21:56'),(3893,0,0,'O','N','2526',2786,0,'2025-11-21','2026-02-20',2855,0,2786,'N','','N','','','','','N','D27','','N',208,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','12:20:56','','','N','Y',NULL,'O','N','H06','','0000-00-00 00:00:00','4','11:47:38',0,'','drashti','2025-11-21 11:47:38','drarchit','2025-11-21 12:20:56'),(3894,0,0,'O','N','2526',2787,0,'2025-11-21','2026-02-20',2506,0,2787,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','13:00:32','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','4','11:52:12',0,'','drashti','2025-11-21 11:52:12','drarchit','2025-11-21 13:00:32'),(3895,0,0,'O','N','2526',1234,0,'2025-11-21','0000-00-00',1275,0,1234,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:57:00','0000-00-00','','','','N','11:57:00','12:18:51','','','N','Y',NULL,'O','O','H07','','0000-00-00 00:00:00','2','11:57:21',0,'','urvashi','2025-11-21 11:57:21','darshan','2025-11-21 12:18:51'),(3896,0,0,'O','N','2526',2788,0,'2025-11-21','2026-02-20',2856,0,2788,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:03:00','0000-00-00','','','','N','12:03:00','12:51:27','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','4','12:03:08',0,'','drashti','2025-11-21 12:03:08','drarchit','2025-11-21 12:51:27'),(3897,0,0,'O','N','2526',1731,0,'2025-11-21','0000-00-00',1775,0,1731,'N','','N','','','FOLLOWUPV','','N','D06','','N',121,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:05:00','0000-00-00','','','','N','12:05:00','12:25:21','','','N','Y',NULL,'O','O','I03','','0000-00-00 00:00:00','2','12:05:37',0,'','drashti','2025-11-21 12:05:37','darshan','2025-11-21 12:25:21'),(3898,0,0,'O','N','2526',2789,0,'2025-11-21','2026-02-20',2857,0,2789,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:11:00','0000-00-00','','','','N','12:11:00','12:29:11','','','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','2','12:11:21',0,'','urvashi','2025-11-21 12:11:21','darshan','2025-11-21 12:29:11'),(3899,0,0,'O','N','2526',2790,0,'2025-11-21','2026-02-20',2858,0,2790,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:13:00','0000-00-00','','','','N','12:13:00','12:38:35','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','12:13:11',0,'','urvashi','2025-11-21 12:13:11','darshan','2025-11-21 12:38:35'),(3900,0,0,'O','N','2526',2791,0,'2025-11-21','2026-02-20',2859,0,2791,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:18:00','0000-00-00','','','','N','12:18:00','13:01:51','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','12:18:56',0,'','urvashi','2025-11-21 12:18:56','darshan','2025-11-21 13:01:51'),(3901,0,0,'O','N','2526',1028,0,'2025-11-21','0000-00-00',1062,0,1028,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','13:32:24','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','2','12:28:37',0,'','drashti','2025-11-21 12:28:37','darshan','2025-11-21 13:32:24'),(3902,0,0,'I','N','2526',0,180,'2025-11-21','2026-02-20',2860,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:00:00','2025-11-22','','7','mo','N','11:00:00','15:45:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-21 12:31:00','mo','2025-11-22 15:24:06'),(3903,0,0,'O','N','2526',2792,0,'2025-11-21','2026-02-20',2861,0,2792,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:31:00','0000-00-00','','','','N','12:31:00','13:58:32','','N','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:31:53',0,'','urvashi','2025-11-21 12:31:53','darshan','2025-11-21 13:58:32'),(3904,0,0,'O','N','2526',2793,0,'2025-11-21','2026-02-20',2862,0,2793,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:37:00','0000-00-00','','','','N','12:37:00','13:23:27','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','12:37:09',0,'','urvashi','2025-11-21 12:37:09','darshan','2025-11-21 13:23:27'),(3905,0,0,'O','N','2526',2794,0,'2025-11-21','2026-02-20',2863,0,2794,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:45:00','0000-00-00','','','','N','12:45:00','13:37:11','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','4','12:45:51',0,'','drashti','2025-11-21 12:45:51','drarchit','2025-11-21 13:37:11'),(3906,0,0,'O','N','2526',2795,0,'2025-11-21','2026-02-20',2864,0,2795,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:02:00','0000-00-00','','','','N','13:02:00','18:29:32','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','6','13:02:57',0,'','manshi','2025-11-21 13:02:57','drsagar','2025-11-21 18:29:32'),(3907,0,0,'O','N','2526',2796,0,'2025-11-21','2026-02-20',2865,0,2796,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:12:00','0000-00-00','','','','N','13:12:00','00:00:00','','','N','N',NULL,'O','N','Z22','','0000-00-00 00:00:00','3','13:13:09',0,'','janvi','2025-11-21 13:13:09','','0000-00-00 00:00:00'),(3908,0,0,'O','N','2526',1585,0,'2025-11-21','0000-00-00',1629,0,1585,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:08:00','0000-00-00','','','','N','14:08:00','14:15:39','','','N','Y',NULL,'O','O','Z23','','0000-00-00 00:00:00','4','14:09:20',0,'','janvi','2025-11-21 14:09:20','drarchit','2025-11-21 14:15:39'),(3909,0,0,'I','N','2526',0,181,'2025-11-21','2026-02-20',2866,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:00:00','2025-12-03','','1','mo','N','15:00:00','13:40:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-21 15:17:16','mo','2025-12-03 17:51:12'),(3910,0,0,'O','N','2526',2797,0,'2025-11-21','2026-02-20',2867,0,2797,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:33:00','0000-00-00','','','','N','16:33:00','17:33:28','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','2','16:33:44',0,'','urvashi','2025-11-21 16:33:44','darshan','2025-11-21 17:33:28'),(3911,0,0,'O','N','2526',2798,0,'2025-11-21','2026-02-20',2868,0,2798,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:34:00','0000-00-00','','','','N','16:34:00','17:34:58','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','2','16:34:51',0,'','urvashi','2025-11-21 16:34:51','darshan','2025-11-21 17:34:58'),(3912,0,0,'O','N','2526',2799,0,'2025-11-21','2026-02-20',2869,0,2799,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:47:00','0000-00-00','','','','N','16:47:00','17:44:20','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','2','16:47:50',0,'','priyanshi','2025-11-21 16:47:50','darshan','2025-11-21 17:44:20'),(3913,0,0,'O','N','2526',316,0,'2025-11-21','0000-00-00',332,0,316,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:48:00','0000-00-00','','','','N','16:48:00','17:41:40','','','N','Y',NULL,'O','O','Z27','','0000-00-00 00:00:00','2','16:48:44',0,'','priyanshi','2025-11-21 16:48:44','darshan','2025-11-21 17:41:40'),(3914,0,0,'O','N','2526',2800,0,'2025-11-21','2026-02-20',2870,0,2800,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:50:00','0000-00-00','','','','N','16:50:00','17:42:23','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','2','16:50:46',0,'','urvashi','2025-11-21 16:50:46','darshan','2025-11-21 17:42:23'),(3915,0,0,'O','N','2526',2801,0,'2025-11-21','2026-02-20',2871,0,2801,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:50:00','0000-00-00','','','','N','16:50:00','17:20:19','','','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:50:48',0,'','priyanshi','2025-11-21 16:50:48','darshan','2025-11-21 17:20:19'),(3916,0,0,'O','N','2526',2802,0,'2025-11-21','2026-02-20',2871,0,2802,'N','','N','','','FV','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:50:00','0000-00-00','','','','N','16:50:00','18:10:30','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','4','16:51:29',0,'','janvi','2025-11-21 16:51:29','drarchit','2025-11-21 18:10:30'),(3917,0,0,'O','N','2526',2803,0,'2025-11-21','2026-02-20',2872,0,2803,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:07:00','0000-00-00','','','','N','17:07:00','19:22:23','','N','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:07:08',0,'','urvashi','2025-11-21 17:07:07','darshan','2025-11-21 19:22:23'),(3918,0,0,'O','N','2526',2804,0,'2025-11-21','2026-02-20',2873,0,2804,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:10:00','0000-00-00','','','','N','17:10:00','00:00:00','','','N','N',NULL,'O','N','Z29','','0000-00-00 00:00:00','3','17:10:03',0,'','drashti','2025-11-21 17:10:03','','0000-00-00 00:00:00'),(3919,0,0,'O','N','2526',966,0,'2025-11-21','0000-00-00',999,0,966,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:16:00','0000-00-00','','','','N','17:16:00','17:46:07','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','2','17:16:30',0,'','urvashi','2025-11-21 17:16:30','darshan','2025-11-21 17:46:07'),(3920,0,0,'O','N','2526',2805,0,'2025-11-21','2026-02-20',2874,0,2805,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:21:00','0000-00-00','','','','N','17:21:00','18:29:32','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','4','17:21:53',0,'','drashti','2025-11-21 17:21:53','drarchit','2025-11-21 18:29:32'),(3921,0,0,'O','N','2526',2806,0,'2025-11-21','2026-02-20',2875,0,2806,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:35:00','0000-00-00','','','','N','17:35:00','17:50:17','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:35:19',0,'','urvashi','2025-11-21 17:35:19','darshan','2025-11-21 17:50:17'),(3922,0,0,'O','N','2526',1422,0,'2025-11-21','0000-00-00',1463,0,1422,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','19:56:08','','N','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','4','17:41:12',0,'','drashti','2025-11-21 17:41:12','drarchit','2025-11-21 19:56:08'),(3923,0,0,'O','N','2526',2807,0,'2025-11-21','2026-02-20',2876,0,2807,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','00:00:00','','','N','N',NULL,'O','N','Z33','','0000-00-00 00:00:00','3','17:41:30',0,'','janvi','2025-11-21 17:41:30','','0000-00-00 00:00:00'),(3924,0,0,'O','N','2526',2192,0,'2025-11-21','0000-00-00',2249,0,2192,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','18:03:45','','','N','Y',NULL,'O','O','Z34','','0000-00-00 00:00:00','2','17:47:20',0,'','janvi','2025-11-21 17:47:20','darshan','2025-11-21 18:03:45'),(3925,0,0,'O','N','2526',2198,0,'2025-11-21','0000-00-00',2254,0,2198,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','00:00:00','','','N','N',NULL,'O','O','Z35','','0000-00-00 00:00:00','3','17:50:02',0,'','janvi','2025-11-21 17:50:02','','0000-00-00 00:00:00'),(3926,0,0,'O','N','2526',2808,0,'2025-11-21','2026-02-20',2877,0,2808,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','18:24:43','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','4','17:52:15',0,'','drashti','2025-11-21 17:52:15','drarchit','2025-11-21 18:24:43'),(3927,0,0,'O','N','2526',2257,0,'2025-11-21','0000-00-00',2314,0,2257,'N','','N','','','FOLLOWUPV','','N','D06','','N',163,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:54:00','0000-00-00','','','','N','17:54:00','18:18:51','','','N','Y',NULL,'O','O','L06','','0000-00-00 00:00:00','2','17:54:21',0,'','drashti','2025-11-21 17:54:21','darshan','2025-11-21 18:18:51'),(3928,0,0,'O','N','2526',2809,0,'2025-11-21','2026-02-20',2878,0,2809,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:56:00','0000-00-00','','','','N','17:56:00','18:22:42','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','2','17:56:59',0,'','urvashi','2025-11-21 17:56:59','darshan','2025-11-21 18:22:42'),(3929,0,0,'O','N','2526',2810,0,'2025-11-21','2026-02-20',2879,0,2810,'N','','N','','','NV','','N','D06','','N',209,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','19:41:42','','N','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','18:03:50',0,'','urvashi','2025-11-21 18:03:50','darshan','2025-11-21 19:41:42'),(3930,0,0,'O','N','2526',2519,0,'2025-11-21','0000-00-00',2577,0,2519,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','18:29:45','','','N','Y',NULL,'O','O','Z38','','0000-00-00 00:00:00','6','18:04:34',0,'','manshi','2025-11-21 18:04:34','drsagar','2025-11-21 18:29:45'),(3931,0,0,'O','N','2526',871,0,'2025-11-21','0000-00-00',903,0,871,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','18:51:37','','','N','Y',NULL,'O','O','L07','','0000-00-00 00:00:00','2','18:05:37',0,'','drashti','2025-11-21 18:05:37','darshan','2025-11-21 18:51:37'),(3932,0,0,'O','N','2526',2592,0,'2025-11-21','0000-00-00',2653,0,2592,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','18:24:59','','','N','Y',NULL,'O','O','Z39','','0000-00-00 00:00:00','4','18:05:56',0,'','urvashi','2025-11-21 18:05:56','drarchit','2025-11-21 18:24:59'),(3933,0,0,'O','N','2526',2811,0,'2025-11-21','2026-02-20',2880,0,2811,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:08:00','0000-00-00','','','','N','18:08:00','18:34:12','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','18:08:17',0,'','drashti','2025-11-21 18:08:17','darshan','2025-11-21 18:34:12'),(3934,0,0,'O','N','2526',2360,0,'2025-11-21','0000-00-00',2415,0,2360,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','00:00:00','','','N','N',NULL,'O','O','Z40','','0000-00-00 00:00:00','3','18:09:30',0,'','janvi','2025-11-21 18:09:30','','0000-00-00 00:00:00'),(3935,0,0,'O','N','2526',665,0,'2025-11-21','0000-00-00',695,0,665,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','18:54:45','','','N','Y',NULL,'O','O','L09','','0000-00-00 00:00:00','2','18:11:16',0,'','urvashi','2025-11-21 18:11:16','darshan','2025-11-21 18:54:45'),(3936,0,0,'O','N','2526',2812,0,'2025-11-21','2026-02-20',2881,0,2812,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','19:41:27','','N','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','2','18:19:46',0,'','drashti','2025-11-21 18:19:46','darshan','2025-11-21 19:41:27'),(3937,0,0,'O','N','2526',2813,0,'2025-11-21','2026-02-20',2882,0,2813,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','19:03:17','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','2','18:28:40',0,'','urvashi','2025-11-21 18:28:40','darshan','2025-11-21 19:03:17'),(3938,0,0,'O','N','2526',2513,0,'2025-11-21','0000-00-00',2570,0,2513,'N','','N','','','','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','19:17:53','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','4','18:33:55',0,'','drashti','2025-11-21 18:33:55','drarchit','2025-11-21 19:17:53'),(3939,0,0,'O','N','2526',2814,0,'2025-11-21','2026-02-20',2883,0,2814,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','00:00:00','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','4','18:34:54',0,'','urvashi','2025-11-21 18:34:54','','0000-00-00 00:00:00'),(3940,0,0,'O','N','2526',2199,0,'2025-11-21','0000-00-00',2255,0,2199,'N','','N','','','FOLLOWUP E','','N','D06','','N',3,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','19:05:51','','','N','Y',NULL,'O','O','L12','','0000-00-00 00:00:00','2','18:36:30',0,'','urvashi','2025-11-21 18:36:30','darshan','2025-11-21 19:05:51'),(3941,0,0,'O','N','2526',2815,0,'2025-11-21','2026-02-20',2884,0,2815,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:38:00','0000-00-00','','','','N','18:38:00','11:52:47','','N','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','4','18:39:17',0,'','janvi','2025-11-21 18:39:17','drarchit','2025-11-22 11:52:47'),(3942,0,0,'O','N','2526',1491,0,'2025-11-21','0000-00-00',1532,0,1491,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:41:00','0000-00-00','','','','N','18:41:00','19:30:42','','','N','Y',NULL,'O','O','L14','','0000-00-00 00:00:00','4','18:41:55',0,'','janvi','2025-11-21 18:41:55','drarchit','2025-11-21 19:30:42'),(3943,0,0,'O','N','2526',2816,0,'2025-11-21','2026-02-20',2885,0,2816,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','19:35:35','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','18:43:28',0,'','drashti','2025-11-21 18:43:28','drarchit','2025-11-21 19:35:35'),(3944,0,0,'O','N','2526',1085,0,'2025-11-21','0000-00-00',714,0,1085,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','19:49:21','','','N','Y',NULL,'O','O','L16','','0000-00-00 00:00:00','4','18:49:51',0,'','drashti','2025-11-21 18:49:51','drarchit','2025-11-21 19:49:20'),(3945,0,0,'O','N','2526',2817,0,'2025-11-21','2026-02-20',2886,0,2817,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:53:00','0000-00-00','','','','N','18:53:00','19:07:06','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','6','18:53:40',0,'','manshi','2025-11-21 18:53:40','drsagar','2025-11-21 19:07:06'),(3946,0,0,'O','N','2526',2818,0,'2025-11-21','2026-02-20',2887,0,2818,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','00:00:00','','N','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','4','18:54:02',0,'','drashti','2025-11-21 18:54:02','drarchit','2025-11-22 11:25:50'),(3947,0,0,'O','N','2526',2268,0,'2025-11-21','0000-00-00',2325,0,2268,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:55:00','0000-00-00','','','','N','18:55:00','19:17:56','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','2','18:55:59',0,'','drashti','2025-11-21 18:55:59','darshan','2025-11-21 19:17:56'),(3948,0,0,'O','N','2526',2819,0,'2025-11-21','2026-02-20',2888,0,2819,'N','','N','','','NC','','N','D27','','N',210,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:01:00','0000-00-00','','','','N','19:01:00','00:00:00','','','N','N',NULL,'O','N','Z46','','0000-00-00 00:00:00','4','19:01:57',0,'','drashti','2025-11-21 19:01:57','','0000-00-00 00:00:00'),(3949,0,0,'O','N','2526',2820,0,'2025-11-21','2026-02-20',2889,0,2820,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:29:00','0000-00-00','','','','N','19:29:00','19:50:17','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','19:29:14',0,'','urvashi','2025-11-21 19:29:14','darshan','2025-11-21 19:50:17'),(3950,0,0,'O','N','2526',2821,0,'2025-11-21','2026-02-20',2890,0,2821,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:40:00','0000-00-00','','','','N','19:40:00','00:00:00','','','N','N',NULL,'O','N','Z48','','0000-00-00 00:00:00','3','19:41:25',0,'','janvi','2025-11-21 19:41:25','','0000-00-00 00:00:00'),(3951,0,0,'O','N','2526',2708,0,'2025-11-21','0000-00-00',2651,0,2708,'N','','N','','','','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:30:00','0000-00-00','','','','N','20:30:00','00:00:00','','','N','N',NULL,'O','O','Y01','','0000-00-00 00:00:00','4','20:30:12',0,'','drashti','2025-11-21 20:30:12','','0000-00-00 00:00:00'),(3952,0,0,'O','N','2526',2822,0,'2025-11-22','2026-02-21',2891,0,2822,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:09:00','0000-00-00','','','','N','09:09:00','00:00:00','','','N','N',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','09:10:02',0,'','priyanshi','2025-11-22 09:10:02','','0000-00-00 00:00:00'),(3953,0,0,'O','N','2526',2823,0,'2025-11-22','2026-02-21',2892,0,2823,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:23:00','0000-00-00','','','','N','09:23:00','10:44:36','','','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','09:23:09',0,'','priyanshi','2025-11-22 09:23:09','darshan','2025-11-22 10:44:36'),(3954,0,0,'I','N','2526',0,182,'2025-11-21','2026-02-21',2893,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','22:00:00','2025-11-24','','1','mo','N','22:00:00','12:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-22 09:47:41','mo','2025-11-24 12:41:11'),(3955,0,0,'O','N','2526',706,0,'2025-11-22','0000-00-00',737,0,706,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:50:00','0000-00-00','','','','N','09:50:00','10:47:13','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','09:50:26',0,'','priyanshi','2025-11-22 09:50:26','darshan','2025-11-22 10:47:13'),(3956,0,0,'O','N','2526',2824,0,'2025-11-22','2026-02-21',2894,0,2824,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:50:00','0000-00-00','','','','N','09:50:00','00:00:00','','','N','N',NULL,'O','N','Z02','','0000-00-00 00:00:00','3','09:50:50',0,'','janvi','2025-11-22 09:50:50','','0000-00-00 00:00:00'),(3957,0,0,'O','N','2526',2825,0,'2025-11-22','2026-02-21',2895,0,2825,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','0000-00-00','','','','N','10:00:00','11:20:00','','N','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','4','10:00:56',0,'','priyanshi','2025-11-22 10:00:56','drarchit','2025-11-22 11:20:02'),(3958,0,0,'O','N','2526',2826,0,'2025-11-22','2026-02-21',2896,0,2826,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:03:00','0000-00-00','','','','N','10:03:00','10:52:09','','','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:03:44',0,'','priyanshi','2025-11-22 10:03:44','darshan','2025-11-22 10:52:09'),(3959,0,0,'I','N','2526',0,183,'2025-11-22','2026-02-21',2897,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-11-27','','7','mo','N','09:30:00','13:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-22 10:05:48','mo','2025-11-27 14:21:32'),(3960,0,0,'O','N','2526',2827,0,'2025-11-22','2026-02-21',2898,0,2827,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','0000-00-00','','','','N','10:15:00','12:51:41','','N','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','4','10:15:22',0,'','drashti','2025-11-22 10:15:22','drarchit','2025-11-22 12:51:42'),(3961,0,0,'O','N','2526',2290,0,'2025-11-22','0000-00-00',2347,0,2290,'N','','N','','','','','N','D02','','N',96,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:26:00','0000-00-00','','','','N','10:26:00','00:00:00','','','N','N',NULL,'O','O','Z05','','0000-00-00 00:00:00','3','10:26:52',0,'','drashti','2025-11-22 10:26:52','','0000-00-00 00:00:00'),(3962,0,0,'I','N','2526',0,184,'2025-11-22','2026-02-21',2899,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:30:00','2025-11-25','','1','mo','N','10:30:00','12:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-22 10:34:30','mo','2025-11-25 12:18:44'),(3963,0,0,'O','N','2526',2828,0,'2025-11-22','2026-02-21',2900,0,2828,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:35:00','0000-00-00','','','','N','10:35:00','11:01:32','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','10:35:01',0,'','drashti','2025-11-22 10:35:01','darshan','2025-11-22 11:01:32'),(3964,0,0,'O','N','2526',2829,0,'2025-11-22','2026-02-21',2901,0,2829,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:35:00','0000-00-00','','','','N','10:35:00','12:09:46','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','6','10:35:15',0,'','janvi','2025-11-22 10:35:15','drsagar','2025-11-22 12:09:46'),(3965,0,0,'O','N','2526',2830,0,'2025-11-22','2026-02-21',2902,0,2830,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:36:00','0000-00-00','','','','N','10:36:00','13:06:05','','N','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','10:37:28',0,'','urvashi','2025-11-22 10:37:28','darshan','2025-11-22 13:06:05'),(3966,0,0,'O','N','2526',2831,0,'2025-11-22','2026-02-21',2903,0,2831,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','13:38:55','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','4','10:39:37',0,'','priyanshi','2025-11-22 10:39:37','drarchit','2025-11-22 13:38:55'),(3967,0,0,'O','N','2526',2832,0,'2025-11-22','2026-02-21',2904,0,2832,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:47:00','0000-00-00','','','','N','10:47:00','11:17:31','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:48:03',0,'','priyanshi','2025-11-22 10:48:03','darshan','2025-11-22 11:17:31'),(3968,0,0,'O','N','2526',2833,0,'2025-11-22','2026-02-21',2905,0,2833,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','11:39:24','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','4','10:55:26',0,'','drashti','2025-11-22 10:55:26','drarchit','2025-11-22 11:39:24'),(3969,0,0,'O','N','2526',2834,0,'2025-11-22','2026-02-21',2906,0,2834,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','12:26:10','','N','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','2','10:57:03',0,'','priyanshi','2025-11-22 10:57:03','darshan','2025-11-22 12:26:10'),(3970,0,0,'O','N','2526',2835,0,'2025-11-22','2026-02-21',2907,0,2835,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','11:38:21','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','10:59:10',0,'','priyanshi','2025-11-22 10:59:10','darshan','2025-11-22 11:38:21'),(3971,0,0,'O','N','2526',2708,0,'2025-11-22','0000-00-00',2651,0,2708,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','11:48:23','','','N','Y',NULL,'O','O','G04','','0000-00-00 00:00:00','4','11:02:38',0,'','drashti','2025-11-22 11:02:38','drarchit','2025-11-22 11:48:23'),(3972,0,0,'O','N','2526',2836,0,'2025-11-22','2026-02-21',2908,0,2836,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','00:00:00','','','N','N',NULL,'O','N','Z09','','0000-00-00 00:00:00','3','11:04:25',0,'','priyanshi','2025-11-22 11:04:25','','0000-00-00 00:00:00'),(3973,0,0,'O','N','2526',2818,0,'2025-11-22','0000-00-00',2887,0,2818,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','11:39:43','','','N','Y',NULL,'O','O','Z10','','0000-00-00 00:00:00','4','11:14:13',0,'','drashti','2025-11-22 11:14:13','drarchit','2025-11-22 11:39:43'),(3974,0,0,'O','N','2526',2837,0,'2025-11-22','2026-02-21',2909,0,2837,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','12:35:41','','N','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','4','11:17:24',0,'','urvashi','2025-11-22 11:17:24','drarchit','2025-11-22 12:35:41'),(3975,0,0,'O','N','2526',2838,0,'2025-11-22','2026-02-21',2910,0,2838,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','11:56:42','','','N','Y',NULL,'O','N','G05','','0000-00-00 00:00:00','4','11:26:25',0,'','urvashi','2025-11-22 11:26:25','drarchit','2025-11-22 11:56:42'),(3976,0,0,'O','N','2526',611,0,'2025-11-22','0000-00-00',641,0,611,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','11:44:26','','','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','2','11:28:56',0,'','priyanshi','2025-11-22 11:28:56','darshan','2025-11-22 11:44:26'),(3977,0,0,'O','N','2526',2839,0,'2025-11-22','2026-02-21',2911,0,2839,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','12:09:35','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','6','11:29:47',0,'','janvi','2025-11-22 11:29:47','drsagar','2025-11-22 12:09:35'),(3978,0,0,'O','N','2526',2840,0,'2025-11-22','2026-02-21',2912,0,2840,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','13:17:50','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','4','11:36:52',0,'','drashti','2025-11-22 11:36:52','drarchit','2025-11-22 13:17:50'),(3979,0,0,'O','N','2526',1288,0,'2025-11-22','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','00:00:00','','','N','N',NULL,'O','O','Z14','','0000-00-00 00:00:00','3','11:38:53',0,'','urvashi','2025-11-22 11:38:53','','0000-00-00 00:00:00'),(3980,0,0,'O','N','2526',251,0,'2025-11-22','0000-00-00',266,0,251,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','12:11:38','','','N','Y',NULL,'O','O','I03','','0000-00-00 00:00:00','4','11:41:54',0,'','drashti','2025-11-22 11:41:54','drarchit','2025-11-22 12:11:38'),(3981,0,0,'O','N','2526',2841,0,'2025-11-22','2026-02-21',2913,0,2841,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','00:00:00','','','N','N',NULL,'O','N','Z15','','0000-00-00 00:00:00','3','11:43:23',0,'','urvashi','2025-11-22 11:43:23','','0000-00-00 00:00:00'),(3982,0,0,'O','N','2526',1669,0,'2025-11-22','0000-00-00',1714,0,1669,'N','','N','','','','','N','D02','','N',4,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','00:00:00','','','N','N',NULL,'O','O','Z16','','0000-00-00 00:00:00','3','11:45:31',0,'','priyanshi','2025-11-22 11:45:31','','0000-00-00 00:00:00'),(3983,0,0,'O','N','2526',2842,0,'2025-11-22','2026-02-21',2914,0,2842,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:49:00','0000-00-00','','','','N','11:49:00','12:03:17','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','2','11:49:35',0,'','priyanshi','2025-11-22 11:49:35','darshan','2025-11-22 12:03:17'),(3984,0,0,'O','N','2526',2843,0,'2025-11-22','2026-02-21',2915,0,2843,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','13:08:58','','N','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','2','11:51:51',0,'','priyanshi','2025-11-22 11:51:51','darshan','2025-11-22 13:08:57'),(3985,0,0,'O','N','2526',2681,0,'2025-11-22','0000-00-00',2750,0,2681,'N','','N','','','','','N','D02','','N',200,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','00:00:00','','','N','N',NULL,'O','O','Z18','','0000-00-00 00:00:00','3','11:53:05',0,'','urvashi','2025-11-22 11:53:05','','0000-00-00 00:00:00'),(3986,0,0,'O','N','2526',1656,0,'2025-11-22','0000-00-00',1701,0,1656,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:53:00','0000-00-00','','','','N','11:53:00','12:13:29','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','4','11:53:52',0,'','drashti','2025-11-22 11:53:52','drarchit','2025-11-22 12:13:29'),(3987,0,0,'O','N','2526',2844,0,'2025-11-22','2026-02-21',2916,0,2844,'N','','N','','','NV','','N','D06','','N',211,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','13:15:05','','N','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','11:54:51',0,'','priyanshi','2025-11-22 11:54:51','darshan','2025-11-22 13:15:05'),(3988,0,0,'O','N','2526',2845,0,'2025-11-22','2026-02-21',2917,0,2845,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:59:00','0000-00-00','','','','N','11:59:00','12:55:52','','N','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','4','11:59:50',0,'','drashti','2025-11-22 11:59:50','drarchit','2025-11-22 12:55:52'),(3989,0,0,'O','N','2526',2846,0,'2025-11-22','2026-02-21',2918,0,2846,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:04:00','0000-00-00','','','','N','12:04:00','12:29:45','','','N','Y',NULL,'O','N','I05','','0000-00-00 00:00:00','2','12:04:59',0,'','priyanshi','2025-11-22 12:04:59','darshan','2025-11-22 12:29:45'),(3990,0,0,'O','N','2526',2847,0,'2025-11-22','2026-02-21',2919,0,2847,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:05:00','0000-00-00','','','','N','12:05:00','12:32:58','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','2','12:05:43',0,'','drashti','2025-11-22 12:05:43','darshan','2025-11-22 12:32:58'),(3991,0,0,'O','N','2526',2848,0,'2025-11-22','2026-02-21',2920,0,2848,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','12:40:38','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','2','12:06:46',0,'','urvashi','2025-11-22 12:06:46','darshan','2025-11-22 12:40:38'),(3992,0,0,'O','N','2526',2849,0,'2025-11-22','2026-02-21',2921,0,2849,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','12:43:15','','','N','Y',NULL,'O','N','I06','','0000-00-00 00:00:00','2','12:06:56',0,'','priyanshi','2025-11-22 12:06:56','darshan','2025-11-22 12:43:15'),(3993,0,0,'O','N','2526',2850,0,'2025-11-22','2026-02-21',2922,0,2850,'N','','N','','','','','N','D02','','N',105,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:19:00','0000-00-00','','','','N','12:19:00','00:00:00','','','N','N',NULL,'O','N','Z22','','0000-00-00 00:00:00','3','12:19:43',0,'','urvashi','2025-11-22 12:19:43','','0000-00-00 00:00:00'),(3994,0,0,'O','N','2526',2851,0,'2025-11-22','2026-02-21',2923,0,2851,'N','','N','','','NC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','00:00:00','','Y','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','4','12:27:15',0,'','drashti','2025-11-22 12:27:15','drarchit','2025-11-22 12:45:57'),(3995,0,0,'O','N','2526',2852,0,'2025-11-22','2026-02-21',2924,0,2852,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','0000-00-00','','','','N','12:30:00','13:06:39','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','4','12:30:22',0,'','drashti','2025-11-22 12:30:22','drarchit','2025-11-22 13:06:39'),(3996,0,0,'O','N','2526',2853,0,'2025-11-22','2026-02-21',2925,0,2853,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:43:00','0000-00-00','','','','N','12:43:00','00:00:00','','Y','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','12:44:00',0,'','priyanshi','2025-11-22 12:44:00','darshan','2025-11-22 13:01:01'),(3997,0,0,'O','N','2526',2191,0,'2025-11-22','0000-00-00',2248,0,2191,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:45:00','0000-00-00','','','','N','12:45:00','00:00:00','','','N','N',NULL,'O','O','Z24','','0000-00-00 00:00:00','3','12:45:33',0,'','drashti','2025-11-22 12:45:33','','0000-00-00 00:00:00'),(3998,0,0,'O','N','2526',2854,0,'2025-11-22','2026-02-21',2926,0,2854,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:47:00','0000-00-00','','','','N','12:47:00','13:35:09','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','4','12:47:59',0,'','drashti','2025-11-22 12:47:59','drarchit','2025-11-22 13:35:09'),(3999,0,0,'O','N','2526',2855,0,'2025-11-22','2026-02-21',2927,0,2855,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:02:00','0000-00-00','','','','N','13:02:00','00:00:00','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','4','13:02:19',0,'','drashti','2025-11-22 13:02:19','','0000-00-00 00:00:00'),(4000,0,0,'O','N','2526',2856,0,'2025-11-22','2026-02-21',2928,0,2856,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:08:00','0000-00-00','','','','N','13:08:00','13:45:05','','N','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','2','13:08:16',0,'','priyanshi','2025-11-22 13:08:16','darshan','2025-11-22 13:45:05'),(4001,0,0,'O','N','2526',1346,0,'2025-11-22','0000-00-00',1386,0,1346,'N','','N','','','INJECTION','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:18:00','0000-00-00','','','','N','13:18:00','13:25:49','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','2','13:18:10',0,'','priyanshi','2025-11-22 13:18:10','darshan','2025-11-22 13:25:49'),(4002,0,0,'O','N','2526',2343,0,'2025-11-22','0000-00-00',2399,0,2343,'N','','N','','','EMR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:35:00','0000-00-00','','','','N','17:35:00','19:46:54','','','N','Y',NULL,'O','O','Z29','','0000-00-00 00:00:00','2','17:35:24',0,'','urvashi','2025-11-22 17:35:24','darshan','2025-11-24 19:46:54'),(4003,0,0,'O','N','2526',2857,0,'2025-11-22','2026-02-21',2929,0,2857,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:56:00','0000-00-00','','','','N','17:56:00','00:00:00','','','N','N',NULL,'O','N','Z30','','0000-00-00 00:00:00','5','17:57:03',0,'','urvashi','2025-11-22 17:57:03','','0000-00-00 00:00:00'),(4004,0,0,'O','N','2526',2528,0,'2025-11-22','0000-00-00',1616,0,2528,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:25:00','0000-00-00','','','','N','18:25:00','18:55:44','','','N','Y',NULL,'O','O','Z31','','0000-00-00 00:00:00','6','18:25:28',0,'','janvi','2025-11-22 18:25:28','drsagar','2025-11-22 18:55:44'),(4005,0,0,'O','N','2526',221,0,'2025-11-22','0000-00-00',234,0,221,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','00:00:00','','','N','N',NULL,'O','O','Z32','','0000-00-00 00:00:00','3','18:31:58',0,'','urvashi','2025-11-22 18:31:58','','0000-00-00 00:00:00'),(4006,0,0,'O','N','2526',1893,0,'2025-11-22','0000-00-00',1940,0,1893,'N','','N','','','','','N','D02','','N',133,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','00:00:00','','','N','N',NULL,'O','O','Z33','','0000-00-00 00:00:00','3','18:56:33',0,'','urvashi','2025-11-22 18:56:33','','0000-00-00 00:00:00'),(4007,0,0,'O','N','2526',2858,0,'2025-11-22','2026-02-21',2930,0,2858,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:06:00','0000-00-00','','','','N','19:06:00','19:29:16','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','6','19:06:06',0,'','janvi','2025-11-22 19:06:06','drsagar','2025-11-22 19:29:16'),(4008,0,0,'O','N','2526',2818,0,'2025-11-23','0000-00-00',2887,0,2818,'N','','N','','','','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:02:00','0000-00-00','','','','N','09:02:00','00:00:00','','','N','N',NULL,'O','O','Z01','','0000-00-00 00:00:00','4','09:02:03',0,'','drashti','2025-11-23 09:02:03','','0000-00-00 00:00:00'),(4009,0,0,'O','N','2526',2859,0,'2025-11-23','2026-02-22',2931,0,2859,'N','','N','','','','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:04:00','0000-00-00','','','','N','09:04:00','00:00:00','','','N','N',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','09:04:49',0,'','drashti','2025-11-23 09:04:49','','0000-00-00 00:00:00'),(4010,0,0,'I','N','2526',0,185,'2025-11-23','2026-02-22',2932,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','03:00:00','2025-11-24','','1','mo','N','03:00:00','21:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-23 09:56:29','mo','2025-11-24 21:20:47'),(4011,0,0,'I','N','2526',0,186,'2025-11-23','2026-02-22',2933,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','01:30:00','2025-11-24','','1','mo','N','01:30:00','12:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-23 10:09:37','mo','2025-11-24 12:30:12'),(4012,0,0,'O','N','2526',2860,0,'2025-11-23','2026-02-22',2934,0,2860,'N','','N','','','','Y','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:21:00','0000-00-00','','','','N','10:21:00','00:00:00','','','N','N',NULL,'O','N','Z03','','0000-00-00 00:00:00','5','10:21:07',0,'','drashti','2025-11-23 10:21:07','','0000-00-00 00:00:00'),(4013,0,0,'O','N','2526',1672,0,'2025-11-23','0000-00-00',1717,0,1672,'N','','N','','','','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:24:00','0000-00-00','','','','N','10:24:00','00:00:00','','','N','N',NULL,'O','O','Z04','','0000-00-00 00:00:00','4','10:24:21',0,'','drashti','2025-11-23 10:24:21','','0000-00-00 00:00:00'),(4014,0,0,'O','N','2526',1288,0,'2025-11-23','0000-00-00',1327,0,1288,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','00:00:00','','','N','N',NULL,'O','O','Z05','','0000-00-00 00:00:00','3','11:19:52',0,'','drashti','2025-11-23 11:19:52','','0000-00-00 00:00:00'),(4015,0,0,'O','N','2526',2861,0,'2025-11-23','2026-02-22',2935,0,2861,'N','','N','','','ER','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','00:00:00','','','N','N',NULL,'O','N','Z06','','0000-00-00 00:00:00','3','11:26:38',0,'','drashti','2025-11-23 11:26:38','','0000-00-00 00:00:00'),(4016,0,0,'O','N','2526',2862,0,'2025-11-23','2026-02-22',2936,0,2862,'N','','N','','','FOLLOWUP C','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','00:00:00','','','N','N',NULL,'O','N','Z07','','0000-00-00 00:00:00','4','12:28:53',0,'','drashti','2025-11-23 12:28:53','','0000-00-00 00:00:00'),(4017,0,0,'I','N','2526',0,187,'2025-11-23','2026-02-22',2937,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:00:00','0000-00-00','','','mo','N','15:00:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-23 15:21:02','mo','2025-12-15 22:47:12'),(4018,0,0,'I','N','2526',0,188,'2025-11-23','2026-02-22',2938,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','2025-11-24','','1','mo','N','18:30:00','19:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-23 18:24:37','mo','2025-11-24 19:10:59'),(4019,0,0,'I','N','2526',0,189,'2025-11-23','2026-02-22',2939,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:30:00','2025-11-26','','1','mo','N','20:30:00','11:25:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-23 20:37:38','vishal','2025-11-26 11:57:05'),(4020,0,0,'I','N','2526',0,190,'2025-11-24','2026-02-23',2940,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:50:00','2025-11-25','','1','mo','N','08:50:00','12:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-24 08:51:26','vishal','2025-11-25 11:58:56'),(4021,0,0,'O','N','2526',2863,0,'2025-11-24','2026-02-23',2941,0,2863,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:12:00','0000-00-00','','','','N','09:12:00','12:04:16','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','4','09:12:45',0,'','reception','2025-11-24 09:12:45','drarchit','2025-11-24 12:04:16'),(4022,0,0,'O','N','2526',2864,0,'2025-11-24','2026-02-23',2942,0,2864,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:18:00','0000-00-00','','','','N','09:18:00','18:34:44','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','09:19:05',0,'','reception','2025-11-24 09:19:05','drarchit','2025-11-24 18:34:44'),(4023,0,0,'O','N','2526',2118,0,'2025-11-24','0000-00-00',1763,0,2118,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:23:00','0000-00-00','','','','N','09:23:00','00:00:00','','','N','N',NULL,'O','O','Z02','','0000-00-00 00:00:00','3','09:23:36',0,'','reception','2025-11-24 09:23:36','','0000-00-00 00:00:00'),(4024,0,0,'O','N','2526',2865,0,'2025-11-24','2026-02-23',2943,0,2865,'N','','N','','','ER','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:25:00','0000-00-00','','','','N','09:25:00','00:00:00','','','N','N',NULL,'O','N','Z03','','0000-00-00 00:00:00','3','09:25:37',0,'','reception','2025-11-24 09:25:37','','0000-00-00 00:00:00'),(4025,0,0,'O','N','2526',2866,0,'2025-11-24','2026-02-23',2944,0,2866,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:28:00','0000-00-00','','','','N','09:28:00','11:54:39','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','4','09:28:49',0,'','reception','2025-11-24 09:28:49','drarchit','2025-11-24 11:54:39'),(4026,0,0,'O','N','2526',2867,0,'2025-11-24','2026-02-23',2945,0,2867,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:31:00','0000-00-00','','','','N','09:31:00','11:51:48','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','4','09:31:27',0,'','drashti','2025-11-24 09:31:27','drarchit','2025-11-24 11:51:48'),(4027,0,0,'O','N','2526',2868,0,'2025-11-24','2026-02-23',2946,0,2868,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:31:00','0000-00-00','','','','N','09:31:00','00:00:00','','','N','N',NULL,'O','N','Z05','','0000-00-00 00:00:00','5','09:31:45',0,'','reception','2025-11-24 09:31:45','','0000-00-00 00:00:00'),(4028,0,0,'O','N','2526',2869,0,'2025-11-24','2026-02-23',2947,0,2869,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:36:00','0000-00-00','','','','N','09:36:00','12:56:08','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','4','09:36:04',0,'','reception','2025-11-24 09:36:04','drarchit','2025-11-24 12:56:08'),(4029,0,0,'O','N','2526',2870,0,'2025-11-24','2026-02-23',2948,0,2870,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:38:00','0000-00-00','','','','N','09:38:00','00:00:00','','','N','N',NULL,'O','N','Z07','','0000-00-00 00:00:00','5','09:38:49',0,'','reception','2025-11-24 09:38:49','','0000-00-00 00:00:00'),(4030,0,0,'O','N','2526',2407,0,'2025-11-24','0000-00-00',2463,0,2407,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:46:00','0000-00-00','','','','N','09:46:00','10:44:43','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','09:46:56',0,'','reception','2025-11-24 09:46:56','darshan','2025-11-24 10:44:42'),(4031,0,0,'O','N','2526',1500,0,'2025-11-24','0000-00-00',1541,0,1500,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:53:00','0000-00-00','','','','N','09:53:00','11:07:53','','','N','Y',NULL,'O','O','Z08','','0000-00-00 00:00:00','2','09:53:54',0,'','reception','2025-11-24 09:53:54','darshan','2025-11-24 11:07:53'),(4032,0,0,'O','N','2526',2871,0,'2025-11-24','2026-02-23',2949,0,2871,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:55:00','0000-00-00','','','','N','09:55:00','10:47:27','','','N','Y',NULL,'O','N','E02','','0000-00-00 00:00:00','2','09:55:08',0,'','reception','2025-11-24 09:55:08','darshan','2025-11-24 10:47:27'),(4033,0,0,'O','N','2526',1850,0,'2025-11-24','0000-00-00',1896,0,1850,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:58:00','0000-00-00','','','','N','09:58:00','11:18:59','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','2','09:58:16',0,'','reception','2025-11-24 09:58:16','darshan','2025-11-24 11:18:59'),(4034,0,0,'O','N','2526',2872,0,'2025-11-24','2026-02-23',2676,0,2872,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:14:00','0000-00-00','','','','N','10:14:00','13:40:38','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','4','10:14:16',0,'','drashti','2025-11-24 10:14:16','drarchit','2025-11-24 13:40:38'),(4035,0,0,'O','N','2526',2873,0,'2025-11-24','2026-02-23',2950,0,2873,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:14:00','0000-00-00','','','','N','10:14:00','13:40:17','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','4','10:14:38',0,'','reception','2025-11-24 10:14:38','drarchit','2025-11-24 13:40:17'),(4036,0,0,'O','N','2526',2874,0,'2025-11-24','2026-02-23',2201,0,2874,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:14:00','0000-00-00','','','','N','10:14:00','00:00:00','','','N','N',NULL,'O','N','Z12','','0000-00-00 00:00:00','3','10:14:51',0,'','janvi','2025-11-24 10:14:51','','0000-00-00 00:00:00'),(4037,0,0,'O','N','2526',2875,0,'2025-11-24','2026-02-23',2675,0,2875,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','0000-00-00','','','','N','10:15:00','13:25:21','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','4','10:15:12',0,'','drashti','2025-11-24 10:15:12','drarchit','2025-11-24 13:25:21'),(4038,0,0,'O','N','2526',151,0,'2025-11-24','0000-00-00',163,0,151,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','12:19:27','','','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','2','10:16:31',0,'','reception','2025-11-24 10:16:31','darshan','2025-11-24 12:19:27'),(4039,0,0,'O','N','2526',2711,0,'2025-11-24','0000-00-00',2782,0,2711,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:18:00','0000-00-00','','','','N','10:18:00','00:00:00','','','N','Y',NULL,'O','O','Z14','','0000-00-00 00:00:00','3','10:19:23',0,'','janvi','2025-11-24 10:19:23','','0000-00-00 00:00:00'),(4040,0,0,'O','N','2526',2390,0,'2025-11-24','0000-00-00',2447,0,2390,'N','','N','','','FOLLOWUP V','','N','D06','','N',170,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:20:00','0000-00-00','','','','N','10:20:00','11:02:44','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','10:20:49',0,'','reception','2025-11-24 10:20:49','darshan','2025-11-24 11:02:44'),(4041,0,0,'O','N','2526',2876,0,'2025-11-24','2026-02-23',2951,0,2876,'N','','N','','','NV','Y','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:22:00','0000-00-00','','','','N','10:22:00','12:28:05','','N','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:22:32',0,'','reception','2025-11-24 10:22:32','darshan','2025-11-24 12:28:05'),(4042,0,0,'O','N','2526',2877,0,'2025-11-24','2026-02-23',2952,0,2877,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','13:54:27','','N','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','10:28:42',0,'','drashti','2025-11-24 10:28:42','darshan','2025-11-24 13:54:27'),(4043,0,0,'O','N','2526',2878,0,'2025-11-24','2026-02-23',2953,0,2878,'N','','N','','','NV','','N','D06','','N',214,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:29:00','0000-00-00','','','','N','10:29:00','14:14:48','','N','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','10:29:28',0,'','reception','2025-11-24 10:29:27','darshan','2025-11-24 14:14:48'),(4044,0,0,'O','N','2526',2879,0,'2025-11-24','2026-02-23',2954,0,2879,'N','','N','','','NC','','N','D02','','N',179,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','00:00:00','','','N','N',NULL,'O','N','Z16','','0000-00-00 00:00:00','3','10:33:08',0,'','drashti','2025-11-24 10:33:08','','0000-00-00 00:00:00'),(4045,0,0,'O','N','2526',2693,0,'2025-11-24','0000-00-00',2762,0,2693,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','12:43:48','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','2','10:33:17',0,'','reception','2025-11-24 10:33:17','darshan','2025-11-24 12:43:48'),(4046,0,0,'O','N','2526',2880,0,'2025-11-24','2026-02-23',2955,0,2880,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:35:00','0000-00-00','','','','N','10:35:00','11:12:27','','','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:35:18',0,'','reception','2025-11-24 10:35:18','darshan','2025-11-24 11:12:27'),(4047,0,0,'I','N','2526',0,191,'2025-11-24','2026-02-23',2956,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:30:00','2025-12-01','','1','mo','N','10:30:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-24 10:38:56','riya','2025-12-01 11:40:14'),(4048,0,0,'O','N','2526',2669,0,'2025-11-24','0000-00-00',2738,0,2669,'N','','N','','','FOLLOWUP E','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','12:47:16','','','N','Y',NULL,'O','O','Z18','','0000-00-00 00:00:00','2','10:38:58',0,'','reception','2025-11-24 10:38:58','darshan','2025-11-24 12:47:16'),(4049,0,0,'O','N','2526',2881,0,'2025-11-24','2026-02-23',2957,0,2881,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','','N','10:40:00','12:14:12','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','4','10:41:26',0,'','janvi','2025-11-24 10:41:26','drarchit','2025-11-24 12:14:12'),(4050,0,0,'O','N','2526',789,0,'2025-11-24','0000-00-00',820,0,789,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:47:00','0000-00-00','','','','N','10:47:00','00:00:00','','','N','N',NULL,'O','O','Z20','','0000-00-00 00:00:00','3','10:47:54',0,'','janvi','2025-11-24 10:47:54','','0000-00-00 00:00:00'),(4051,0,0,'O','N','2526',2399,0,'2025-11-24','0000-00-00',2455,0,2399,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','11:25:34','','','N','Y',NULL,'O','O','G02','','0000-00-00 00:00:00','2','10:53:43',0,'','reception','2025-11-24 10:53:43','darshan','2025-11-24 11:25:34'),(4052,0,0,'O','N','2526',2882,0,'2025-11-24','2026-02-23',2958,0,2882,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','13:22:05','','N','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','2','10:55:18',0,'','reception','2025-11-24 10:55:18','darshan','2025-11-24 13:22:05'),(4053,0,0,'O','N','2526',2489,0,'2025-11-24','0000-00-00',2547,0,2489,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','11:45:27','','','N','Y',NULL,'O','O','G04','','0000-00-00 00:00:00','2','10:59:28',0,'','reception','2025-11-24 10:59:28','darshan','2025-11-24 11:45:27'),(4054,0,0,'I','N','2526',0,192,'2025-11-24','2026-02-23',2959,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:00:00','2025-11-26','','1','mo','N','11:00:00','12:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-24 11:00:46','mo','2025-11-26 12:56:22'),(4055,0,0,'O','N','2526',2883,0,'2025-11-24','2026-02-23',2960,0,2883,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','00:00:00','','','N','N',NULL,'O','N','Z21','','0000-00-00 00:00:00','3','11:07:13',0,'','drashti','2025-11-24 11:07:13','','0000-00-00 00:00:00'),(4056,0,0,'O','N','2526',2884,0,'2025-11-24','2026-02-23',2961,0,2884,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','11:40:23','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','6','11:12:57',0,'','manshi','2025-11-24 11:12:57','drsagar','2025-11-24 11:40:23'),(4057,0,0,'O','N','2526',2885,0,'2025-11-24','2026-02-23',2962,0,2885,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','13:02:48','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','4','11:14:24',0,'','drashti','2025-11-24 11:14:24','drarchit','2025-11-24 13:02:48'),(4058,0,0,'O','N','2526',2886,0,'2025-11-24','2026-02-23',2963,0,2886,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:22:00','0000-00-00','','','','N','11:22:00','12:00:46','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','4','11:22:15',0,'','drashti','2025-11-24 11:22:15','drarchit','2025-11-24 12:00:46'),(4059,0,0,'O','N','2526',1334,0,'2025-11-24','0000-00-00',1374,0,1334,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:22:00','0000-00-00','','','','N','11:22:00','11:57:25','','Y','N','Y',NULL,'O','O','Z24','','0000-00-00 00:00:00','4','11:23:06',0,'','janvi','2025-11-24 11:23:06','drarchit','2025-11-24 11:57:45'),(4060,0,0,'O','N','2526',2887,0,'2025-11-24','2026-02-23',2964,0,2887,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','14:28:43','','N','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','2','11:23:30',0,'','reception','2025-11-24 11:23:30','darshan','2025-11-24 14:28:43'),(4061,0,0,'O','N','2526',2888,0,'2025-11-24','2026-02-23',2965,0,2888,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','00:00:00','','','N','N',NULL,'O','N','Z26','','0000-00-00 00:00:00','3','11:24:11',0,'','janvi','2025-11-24 11:24:11','','0000-00-00 00:00:00'),(4062,0,0,'O','N','2526',2543,0,'2025-11-24','0000-00-00',2600,0,2543,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','00:00:00','','','N','N',NULL,'O','O','Z27','','0000-00-00 00:00:00','3','11:25:15',0,'','drashti','2025-11-24 11:25:15','','0000-00-00 00:00:00'),(4063,0,0,'O','N','2526',2889,0,'2025-11-24','2026-02-23',2966,0,2889,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','18:10:50','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','4','11:25:45',0,'','janvi','2025-11-24 11:25:45','drarchit','2025-11-24 18:10:50'),(4064,0,0,'O','N','2526',2183,0,'2025-11-24','0000-00-00',2238,0,2183,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','00:00:00','','','N','N',NULL,'O','O','Z29','','0000-00-00 00:00:00','3','11:25:50',0,'','reception','2025-11-24 11:25:50','','0000-00-00 00:00:00'),(4065,0,0,'O','N','2526',2890,0,'2025-11-24','2026-02-23',2967,0,2890,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','00:00:00','','','N','N',NULL,'O','N','Z30','','0000-00-00 00:00:00','3','11:28:53',0,'','reception','2025-11-24 11:28:53','','0000-00-00 00:00:00'),(4066,0,0,'O','N','2526',2891,0,'2025-11-24','2026-02-23',2968,0,2891,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','12:24:18','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','4','11:29:12',0,'','drashti','2025-11-24 11:29:12','drarchit','2025-11-24 12:24:18'),(4067,0,0,'O','N','2526',2561,0,'2025-11-24','0000-00-00',2621,0,2561,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','11:41:55','','','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','6','11:31:20',0,'','manshi','2025-11-24 11:31:20','drsagar','2025-11-24 11:41:55'),(4068,0,0,'O','N','2526',2892,0,'2025-11-24','2026-02-23',2969,0,2892,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','12:23:05','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','2','11:31:56',0,'','reception','2025-11-24 11:31:56','darshan','2025-11-24 12:23:05'),(4069,0,0,'O','N','2526',2893,0,'2025-11-24','2026-02-23',2970,0,2893,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','12:33:06','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','4','11:33:13',0,'','drashti','2025-11-24 11:33:13','drarchit','2025-11-24 12:33:06'),(4070,0,0,'O','N','2526',2894,0,'2025-11-24','2026-02-23',2971,0,2894,'N','','N','','','NC','','N','D27','','N',60,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','12:55:35','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','4','11:51:48',0,'','drashti','2025-11-24 11:35:46','drarchit','2025-11-24 12:55:35'),(4071,0,0,'O','N','2526',1194,0,'2025-11-24','0000-00-00',1233,0,1194,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','13:43:02','','','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','2','11:36:22',0,'','reception','2025-11-24 11:36:22','darshan','2025-11-24 13:43:02'),(4072,0,0,'O','N','2526',2895,0,'2025-11-24','2026-02-23',2972,0,2895,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','14:47:00','','N','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','2','11:40:00',0,'','reception','2025-11-24 11:40:00','darshan','2025-11-24 14:47:00'),(4073,0,0,'O','N','2526',2896,0,'2025-11-24','2026-02-23',2973,0,2896,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','12:54:38','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','4','11:51:48',0,'','janvi','2025-11-24 11:40:33','drarchit','2025-11-24 12:54:38'),(4074,0,0,'O','N','2526',2897,0,'2025-11-24','2026-02-23',2974,0,2897,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','11:49:56','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','6','11:47:23',0,'','manshi','2025-11-24 11:47:23','drsagar','2025-11-24 11:49:56'),(4075,0,0,'O','N','2526',2898,0,'2025-11-24','2026-02-23',2975,0,2898,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','12:40:33','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','4','11:51:48',0,'','drashti','2025-11-24 11:48:11','drarchit','2025-11-24 12:40:33'),(4076,0,0,'O','N','2526',627,0,'2025-11-24','0000-00-00',657,0,627,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:53:00','0000-00-00','','','','N','11:53:00','12:57:57','','','N','Y',NULL,'O','O','Z39','','0000-00-00 00:00:00','4','12:00:46',0,'','janvi','2025-11-24 11:53:50','drarchit','2025-11-24 12:57:57'),(4077,0,0,'O','N','2526',2899,0,'2025-11-24','2026-02-23',2976,0,2899,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','12:04:56','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','6','11:56:19',0,'','manshi','2025-11-24 11:56:19','drsagar','2025-11-24 12:04:56'),(4078,0,0,'O','N','2526',1699,0,'2025-11-24','0000-00-00',1745,0,1699,'N','','N','','','','','N','D02','','N',118,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:59:00','0000-00-00','','','','N','11:59:00','00:00:00','','','N','N',NULL,'O','O','Z41','','0000-00-00 00:00:00','3','12:00:28',0,'','janvi','2025-11-24 12:00:28','','0000-00-00 00:00:00'),(4079,0,0,'O','N','2526',21,0,'2025-11-24','0000-00-00',22,0,21,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','12:29:40','','','N','Y',NULL,'O','O','I02','','0000-00-00 00:00:00','4','12:04:16',0,'','drashti','2025-11-24 12:00:55','drarchit','2025-11-24 12:29:40'),(4080,0,0,'O','N','2526',2900,0,'2025-11-24','2026-02-23',2977,0,2900,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','13:11:29','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','12:06:16',0,'','reception','2025-11-24 12:06:16','darshan','2025-11-24 13:11:29'),(4081,0,0,'O','N','2526',1188,0,'2025-11-24','0000-00-00',1227,0,1188,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:07:00','0000-00-00','','','','N','12:07:00','12:26:30','','','N','Y',NULL,'O','O','I03','','0000-00-00 00:00:00','2','12:07:28',0,'','drashti','2025-11-24 12:07:28','darshan','2025-11-24 12:26:30'),(4082,0,0,'O','N','2526',2901,0,'2025-11-24','2026-02-23',2978,0,2901,'N','','N','','','NV','','N','D06','','N',121,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:11:00','0000-00-00','','','','N','12:11:00','14:18:48','','N','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:12:00',0,'','reception','2025-11-24 12:12:00','darshan','2025-11-24 14:18:48'),(4083,0,0,'O','N','2526',2902,0,'2025-11-24','2026-02-23',2979,0,2902,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:17:00','0000-00-00','','','','N','12:17:00','13:45:40','','','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','4','12:17:32',0,'','drashti','2025-11-24 12:17:32','drarchit','2025-11-24 13:45:40'),(4084,0,0,'O','N','2526',2903,0,'2025-11-24','2026-02-23',2980,0,2903,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:19:00','0000-00-00','','','','N','12:19:00','17:12:24','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','3','12:19:43',0,'','janvi','2025-11-24 12:19:43','drpratapsinh','2025-12-04 17:12:24'),(4085,0,0,'O','N','2526',2904,0,'2025-11-24','2026-02-23',2981,0,2904,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','14:06:52','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','2','12:21:57',0,'','drashti','2025-11-24 12:21:57','darshan','2025-11-24 14:06:52'),(4086,0,0,'O','N','2526',2905,0,'2025-11-24','2026-02-23',2982,0,2905,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:23:00','0000-00-00','','','','N','12:23:00','17:33:00','','','N','Y',NULL,'O','N','I05','','0000-00-00 00:00:00','2','12:24:01',0,'','reception','2025-11-24 12:24:01','darshan','2025-11-24 17:33:00'),(4087,0,0,'O','N','2526',1363,0,'2025-11-24','0000-00-00',1403,0,1363,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:24:00','0000-00-00','','','','N','12:24:00','18:07:44','','','N','Y',NULL,'O','O','I06','','0000-00-00 00:00:00','4','12:24:50',0,'','drashti','2025-11-24 12:24:50','drarchit','2025-11-24 18:07:44'),(4088,0,0,'O','N','2526',2906,0,'2025-11-24','2026-02-23',2983,0,2906,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:29:00','0000-00-00','','','','N','12:29:00','13:08:45','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','12:30:20',0,'','janvi','2025-11-24 12:30:20','darshan','2025-11-24 13:08:45'),(4089,0,0,'O','N','2526',2305,0,'2025-11-24','0000-00-00',2362,0,2305,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:34:00','0000-00-00','','','','N','12:34:00','13:25:36','','','N','Y',NULL,'O','O','J04','','0000-00-00 00:00:00','4','12:35:14',0,'','janvi','2025-11-24 12:35:14','drarchit','2025-11-24 13:25:36'),(4090,0,0,'O','N','2526',2907,0,'2025-11-24','2026-02-23',2984,0,2907,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:52:00','0000-00-00','','','','N','12:52:00','18:24:38','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','6','12:52:44',0,'','manshi','2025-11-24 12:52:44','drsagar','2025-11-24 18:24:38'),(4091,0,0,'O','N','2526',842,0,'2025-11-24','0000-00-00',873,0,842,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:56:00','0000-00-00','','','','N','12:56:00','14:46:27','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','2','12:56:21',0,'','reception','2025-11-24 12:56:21','darshan','2025-11-24 14:46:27'),(4092,0,0,'I','N','2526',0,193,'2025-11-24','2026-02-23',2985,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','2025-11-25','','1','mo','N','13:00:00','14:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-24 12:59:35','mo','2025-11-25 14:14:55'),(4093,0,0,'O','N','2526',2908,0,'2025-11-24','2026-02-23',2986,0,2908,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:59:00','0000-00-00','','','','N','12:59:00','14:39:26','','N','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','2','12:59:51',0,'','reception','2025-11-24 12:59:51','darshan','2025-11-24 14:39:26'),(4094,0,0,'O','N','2526',2909,0,'2025-11-24','2026-02-23',2987,0,2909,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:05:00','0000-00-00','','','','N','13:05:00','18:02:06','','','N','Y',NULL,'O','N','K02','','0000-00-00 00:00:00','4','13:05:03',0,'','drashti','2025-11-24 13:05:03','drarchit','2025-11-24 18:02:06'),(4095,0,0,'O','N','2526',2910,0,'2025-11-24','2026-02-23',2988,0,2910,'N','','N','','','','','N','D02','','N',215,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:14:00','0000-00-00','','','','N','13:14:00','00:00:00','','','N','N',NULL,'O','N','Z46','','0000-00-00 00:00:00','3','13:15:14',0,'','janvi','2025-11-24 13:15:14','','0000-00-00 00:00:00'),(4096,0,0,'O','N','2526',2861,0,'2025-11-24','0000-00-00',2935,0,2861,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:16:00','0000-00-00','','','','N','13:16:00','00:00:00','','','N','N',NULL,'O','O','Z47','','0000-00-00 00:00:00','3','13:16:38',0,'','janvi','2025-11-24 13:16:38','','0000-00-00 00:00:00'),(4097,0,0,'O','N','2526',2911,0,'2025-11-24','2026-02-23',2989,0,2911,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:19:00','0000-00-00','','','','N','13:19:00','19:43:51','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','7','13:19:36',0,'','manshi','2025-11-24 13:19:36','drridham','2025-11-24 19:43:51'),(4098,0,0,'O','N','2526',2912,0,'2025-11-24','2026-02-23',2990,0,2912,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:22:00','0000-00-00','','','','N','13:22:00','00:00:00','','','N','N',NULL,'O','N','Z49','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-24 13:23:24','','0000-00-00 00:00:00'),(4099,0,0,'O','N','2526',937,0,'2025-11-24','0000-00-00',968,0,937,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:25:00','0000-00-00','','','','N','13:25:00','14:36:56','','','N','Y',NULL,'O','O','Z50','','0000-00-00 00:00:00','2','13:25:33',0,'','reception','2025-11-24 13:25:33','darshan','2025-11-24 14:36:56'),(4100,0,0,'O','N','2526',2913,0,'2025-11-24','2026-02-23',2950,0,2913,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:43:00','0000-00-00','','','','N','13:43:00','18:24:24','','','N','Y',NULL,'O','N','Y01','','0000-00-00 00:00:00','6','13:43:06',0,'','manshi','2025-11-24 13:43:06','drsagar','2025-11-24 18:24:24'),(4101,0,0,'O','N','2526',2914,0,'2025-11-24','2026-02-23',2991,0,2914,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:46:00','0000-00-00','','','','N','13:46:00','18:59:06','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','2','13:46:32',0,'','drashti','2025-11-24 13:46:31','darshan','2025-11-25 18:59:05'),(4102,0,0,'O','N','2526',2915,0,'2025-11-24','2026-02-23',2992,0,2915,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:18:00','0000-00-00','','','','N','15:18:00','00:00:00','','','N','N',NULL,'O','N','Z52','','0000-00-00 00:00:00','','00:00:00',0,'','priyanshi','2025-11-24 15:18:43','','0000-00-00 00:00:00'),(4103,0,0,'O','N','2526',2916,0,'2025-11-24','2026-02-23',2993,0,2916,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:54:00','0000-00-00','','','','N','15:54:00','12:31:00','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','4','15:55:25',0,'','priyanshi','2025-11-24 15:55:25','drarchit','2025-11-25 12:31:00'),(4104,0,0,'O','N','2526',1169,0,'2025-11-24','0000-00-00',1208,0,1169,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:18:00','0000-00-00','','','','N','16:18:00','17:05:24','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','16:18:47',0,'','reception','2025-11-24 16:18:47','darshan','2025-11-24 17:05:24'),(4105,0,0,'O','N','2526',1281,0,'2025-11-24','0000-00-00',1320,0,1281,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:38:00','0000-00-00','','','','N','16:38:00','17:21:32','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','16:38:14',0,'','reception','2025-11-24 16:38:14','darshan','2025-11-24 17:21:32'),(4106,0,0,'O','N','2526',2707,0,'2025-11-24','0000-00-00',2777,0,2707,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:44:00','0000-00-00','','','','N','16:44:00','18:28:20','','','N','Y',NULL,'O','O','Z54','','0000-00-00 00:00:00','4','16:44:29',0,'','drashti','2025-11-24 16:44:29','drarchit','2025-11-24 18:28:20'),(4107,0,0,'O','N','2526',2917,0,'2025-11-24','2026-02-23',2994,0,2917,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:48:00','0000-00-00','','','','N','16:48:00','18:59:58','','N','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','16:48:05',0,'','reception','2025-11-24 16:48:05','darshan','2025-11-24 18:59:58'),(4108,0,0,'O','N','2526',2317,0,'2025-11-24','0000-00-00',2374,0,2317,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:14:00','0000-00-00','','','','N','17:14:00','17:24:32','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','17:14:50',0,'','reception','2025-11-24 17:14:50','darshan','2025-11-24 17:24:32'),(4109,0,0,'O','N','2526',2918,0,'2025-11-24','2026-02-23',2995,0,2918,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:18:00','0000-00-00','','','','N','17:18:00','19:02:56','','N','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','2','17:18:57',0,'','reception','2025-11-24 17:18:57','darshan','2025-11-24 19:02:56'),(4110,0,0,'O','N','2526',525,0,'2025-11-24','0000-00-00',551,0,525,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:18:00','0000-00-00','','','','N','17:18:00','00:00:00','','','N','N',NULL,'O','O','Z56','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-24 17:19:37','','0000-00-00 00:00:00'),(4111,0,0,'O','N','2526',2919,0,'2025-11-24','2026-02-23',2996,0,2919,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:19:00','0000-00-00','','','','N','17:19:00','00:00:00','','','N','N',NULL,'O','N','Z57','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-24 17:20:32','','0000-00-00 00:00:00'),(4112,0,0,'O','N','2526',1102,0,'2025-11-24','0000-00-00',1140,0,1102,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:35:00','0000-00-00','','','','N','17:35:00','18:24:07','','','N','Y',NULL,'O','O','Z58','','0000-00-00 00:00:00','6','17:35:54',0,'','manshi','2025-11-24 17:35:54','drsagar','2025-11-24 18:24:07'),(4113,0,0,'O','N','2526',1059,0,'2025-11-24','0000-00-00',1092,0,1059,'N','','N','','','','','N','D02','','N',76,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:38:00','0000-00-00','','','','N','17:38:00','00:00:00','','','N','N',NULL,'O','O','Z59','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-11-24 17:38:09','','0000-00-00 00:00:00'),(4114,0,0,'O','N','2526',1826,0,'2025-11-24','0000-00-00',1872,0,1826,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:38:00','0000-00-00','','','','N','17:38:00','18:21:12','','','N','Y',NULL,'O','O','Z60','','0000-00-00 00:00:00','6','17:38:29',0,'','manshi','2025-11-24 17:38:29','drsagar','2025-11-24 18:21:12'),(4115,0,0,'O','N','2526',798,0,'2025-11-24','0000-00-00',829,0,798,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','18:00:32','','','N','Y',NULL,'O','O','L05','','0000-00-00 00:00:00','2','17:42:40',0,'','reception','2025-11-24 17:42:40','darshan','2025-11-24 18:00:32'),(4116,0,0,'O','N','2526',1026,0,'2025-11-24','0000-00-00',1060,0,1026,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','18:09:08','','','N','Y',NULL,'O','O','L06','','0000-00-00 00:00:00','2','17:48:47',0,'','reception','2025-11-24 17:48:47','darshan','2025-11-24 18:09:08'),(4117,0,0,'O','N','2526',2920,0,'2025-11-24','2026-02-23',2997,0,2920,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','18:13:38','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','4','17:51:40',0,'','drashti','2025-11-24 17:51:40','drarchit','2025-11-24 18:13:38'),(4118,0,0,'O','N','2526',2921,0,'2025-11-24','2026-02-23',2998,0,2921,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','18:33:47','Y','','N','N',NULL,'O','N','Z61','','0000-00-00 00:00:00','2','17:52:53',0,'','reception','2025-11-24 17:52:53','','0000-00-00 00:00:00'),(4119,0,0,'O','N','2526',2370,0,'2025-11-24','0000-00-00',2426,0,2370,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:53:00','0000-00-00','','','','N','17:53:00','18:23:24','','','N','Y',NULL,'O','O','L08','','0000-00-00 00:00:00','4','17:53:30',0,'','drashti','2025-11-24 17:53:30','drarchit','2025-11-24 18:23:24'),(4120,0,0,'O','N','2526',2574,0,'2025-11-24','0000-00-00',2635,0,2574,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:54:00','0000-00-00','','','','N','17:54:00','19:44:29','','','N','Y',NULL,'O','O','Z62','','0000-00-00 00:00:00','7','17:54:07',0,'','manshi','2025-11-24 17:54:07','drridham','2025-11-24 19:44:29'),(4121,0,0,'O','N','2526',2444,0,'2025-11-24','0000-00-00',2501,0,2444,'N','','N','','','FOLLOWUP','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','18:34:33','','','N','Y',NULL,'O','O','L09','','0000-00-00 00:00:00','4','18:02:46',0,'','drashti','2025-11-24 18:02:46','drarchit','2025-11-24 18:34:33'),(4122,0,0,'O','N','2526',2922,0,'2025-11-24','2026-02-23',2999,0,2922,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:08:00','0000-00-00','','','','N','18:08:00','18:26:29','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','2','18:09:32',0,'','reception','2025-11-24 18:09:32','darshan','2025-11-24 18:26:29'),(4123,0,0,'O','N','2526',2629,0,'2025-11-24','0000-00-00',2697,0,2629,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','00:00:00','','','N','N',NULL,'O','O','Z63','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-24 18:10:37','','0000-00-00 00:00:00'),(4124,0,0,'O','N','2526',2923,0,'2025-11-24','2026-02-23',3000,0,2923,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','00:00:00','','','N','N',NULL,'O','N','Z64','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-24 18:18:45','','0000-00-00 00:00:00'),(4125,0,0,'I','N','2526',0,194,'2025-11-24','2026-02-23',2612,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','2025-11-27','','1','mo','N','18:15:00','12:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-24 18:23:14','mo','2025-11-27 13:06:01'),(4126,0,0,'O','N','2526',2924,0,'2025-11-24','2026-02-23',3001,0,2924,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','18:42:12','','','N','Y',NULL,'O','N','Z65','','0000-00-00 00:00:00','6','18:23:19',0,'','manshi','2025-11-24 18:23:19','drsagar','2025-11-24 18:42:12'),(4127,0,0,'O','N','2526',2925,0,'2025-11-24','2026-02-23',3002,0,2925,'N','','N','','','NV','Y','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','19:41:50','','N','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','2','18:23:25',0,'','reception','2025-11-24 18:23:25','darshan','2025-11-24 19:41:50'),(4128,0,0,'O','N','2526',2926,0,'2025-11-24','2026-02-23',3003,0,2926,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:25:00','0000-00-00','','','','N','18:25:00','18:50:38','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','6','18:25:05',0,'','manshi','2025-11-24 18:25:05','drsagar','2025-11-24 18:50:38'),(4129,0,0,'O','N','2526',2241,0,'2025-11-24','0000-00-00',2297,0,2241,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','18:43:49','','','N','Y',NULL,'O','O','L12','','0000-00-00 00:00:00','4','18:25:25',0,'','janvi','2025-11-24 18:25:25','drarchit','2025-11-24 18:43:49'),(4130,0,0,'O','N','2526',1288,0,'2025-11-24','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','00:00:00','','','N','N',NULL,'O','O','Z67','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-24 18:26:43','','0000-00-00 00:00:00'),(4131,0,0,'O','N','2526',341,0,'2025-11-24','0000-00-00',357,0,341,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','00:00:00','','','N','N',NULL,'O','O','Z68','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-24 18:28:56','','0000-00-00 00:00:00'),(4132,0,0,'O','N','2526',2927,0,'2025-11-24','2026-02-23',3004,0,2927,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','18:57:53','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','4','18:29:07',0,'','drashti','2025-11-24 18:29:07','drarchit','2025-11-24 18:57:53'),(4133,0,0,'O','N','2526',2144,0,'2025-11-24','0000-00-00',2196,0,2144,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','18:51:50','','','N','Y',NULL,'O','O','Z69','','0000-00-00 00:00:00','6','18:29:34',0,'','manshi','2025-11-24 18:29:34','drsagar','2025-11-24 18:51:50'),(4134,0,0,'O','N','2526',2928,0,'2025-11-24','2026-02-23',3005,0,2928,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','00:00:00','','Y','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','4','18:36:01',0,'','drashti','2025-11-24 18:36:01','drarchit','2025-11-24 18:46:52'),(4135,0,0,'O','N','2526',2585,0,'2025-11-24','0000-00-00',2646,0,2585,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','18:54:03','','','N','Y',NULL,'O','O','Z70','','0000-00-00 00:00:00','6','18:40:53',0,'','manshi','2025-11-24 18:40:53','drsagar','2025-11-24 18:54:03'),(4136,0,0,'O','N','2526',2929,0,'2025-11-24','2026-02-23',3006,0,2929,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:42:00','0000-00-00','','','','N','18:42:00','19:16:48','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','18:42:02',0,'','drashti','2025-11-24 18:42:02','drarchit','2025-11-24 19:16:48'),(4137,0,0,'O','N','2526',2671,0,'2025-11-24','0000-00-00',2740,0,2671,'N','','N','','','','','N','D27','','N',14,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:42:00','0000-00-00','','','','N','18:42:00','19:12:08','','','N','Y',NULL,'O','O','Z71','','0000-00-00 00:00:00','4','18:43:07',0,'','janvi','2025-11-24 18:43:07','drarchit','2025-11-24 19:12:08'),(4138,0,0,'O','N','2526',2005,0,'2025-11-24','0000-00-00',2056,0,2005,'N','','N','','','','','N','D02','','N',146,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:45:00','0000-00-00','','','','N','18:45:00','00:00:00','','','N','N',NULL,'O','O','Z72','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-11-24 18:45:10','','0000-00-00 00:00:00'),(4139,0,0,'O','N','2526',2340,0,'2025-11-24','0000-00-00',2396,0,2340,'N','','N','','','FV','','N','D06','','N',167,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','19:08:12','','','N','Y',NULL,'O','O','L16','','0000-00-00 00:00:00','2','18:46:10',0,'','reception','2025-11-24 18:46:10','darshan','2025-11-24 19:08:12'),(4140,0,0,'O','N','2526',2930,0,'2025-11-24','2026-02-23',3007,0,2930,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:45:00','0000-00-00','','','','N','18:45:00','00:00:00','','','N','N',NULL,'O','N','Z73','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-24 18:46:11','','0000-00-00 00:00:00'),(4141,0,0,'O','N','2526',2931,0,'2025-11-24','2026-02-23',3008,0,2931,'N','','N','','','NV','','N','D06','','N',216,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:53:00','0000-00-00','','','','N','18:53:00','19:21:02','','','N','Y',NULL,'O','N','L17','','0000-00-00 00:00:00','2','18:53:31',0,'','reception','2025-11-24 18:53:30','darshan','2025-11-24 19:21:02'),(4142,0,0,'O','N','2526',2932,0,'2025-11-24','2026-02-23',3009,0,2932,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','19:37:15','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','2','18:56:49',0,'','reception','2025-11-24 18:56:49','darshan','2025-11-24 19:37:15'),(4143,0,0,'O','N','2526',118,0,'2025-11-24','0000-00-00',129,0,118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:00:00','0000-00-00','','','','N','19:00:00','00:00:00','','','N','N',NULL,'O','O','Z75','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-11-24 19:00:03','','0000-00-00 00:00:00'),(4144,0,0,'O','N','2526',2528,0,'2025-11-24','0000-00-00',1616,0,2528,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:04:00','0000-00-00','','','','N','19:04:00','19:58:21','','','N','Y',NULL,'O','O','Z76','','0000-00-00 00:00:00','6','19:55:45',0,'','manshi','2025-11-24 19:04:26','drsagar','2025-11-24 19:58:21'),(4145,0,0,'O','N','2526',2933,0,'2025-11-24','2026-02-23',3010,0,2933,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:07:00','0000-00-00','','','','N','19:07:00','19:47:31','','','N','Y',NULL,'O','N','Z77','','0000-00-00 00:00:00','7','19:07:16',0,'','manshi','2025-11-24 19:07:16','drridham','2025-11-24 19:47:31'),(4146,0,0,'O','N','2526',2934,0,'2025-11-24','2026-02-23',3011,0,2934,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:17:00','0000-00-00','','','','N','19:17:00','00:00:00','','','N','N',NULL,'O','N','Z78','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-24 19:18:33','','0000-00-00 00:00:00'),(4147,0,0,'O','N','2526',2935,0,'2025-11-24','2026-02-23',3012,0,2935,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:20:00','0000-00-00','','','','N','19:20:00','19:43:42','','','N','Y',NULL,'O','N','Z79','','0000-00-00 00:00:00','4','19:20:27',0,'','drashti','2025-11-24 19:20:26','drarchit','2025-11-24 19:43:42'),(4148,0,0,'O','N','2526',2936,0,'2025-11-24','2026-02-23',3013,0,2936,'N','','N','','','','','N','D02','','N',218,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:29:00','0000-00-00','','','','N','19:29:00','00:00:00','','','N','N',NULL,'O','N','Z80','','0000-00-00 00:00:00','','19:29:20',0,'','reception','2025-11-24 19:29:20','janvi','2025-11-24 19:30:36'),(4149,0,0,'O','N','2526',2689,0,'2025-11-24','0000-00-00',2758,0,2689,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:32:00','0000-00-00','','','','N','19:32:00','00:00:00','','','N','N',NULL,'O','O','Z81','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-11-24 19:32:51','','0000-00-00 00:00:00'),(4150,0,0,'O','N','2526',2937,0,'2025-11-24','2026-02-23',3014,0,2937,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:33:00','0000-00-00','','','','N','19:33:00','19:50:24','','','N','Y',NULL,'O','N','Z82','','0000-00-00 00:00:00','7','19:33:48',0,'','manshi','2025-11-24 19:33:47','drridham','2025-11-24 19:50:24'),(4151,0,0,'O','N','2526',2938,0,'2025-11-24','2026-02-23',3015,0,2938,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:35:00','0000-00-00','','','','N','19:35:00','19:47:39','','','N','Y',NULL,'O','N','Z83','','0000-00-00 00:00:00','4','19:35:54',0,'','janvi','2025-11-24 19:35:54','drarchit','2025-11-24 19:47:39'),(4152,0,0,'O','N','2526',2939,0,'2025-11-24','2026-02-23',3016,0,2939,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:49:00','0000-00-00','','','','N','19:49:00','19:58:38','','','N','Y',NULL,'O','N','Z84','','0000-00-00 00:00:00','6','19:55:45',0,'','manshi','2025-11-24 19:49:53','drsagar','2025-11-24 19:58:38'),(4153,0,0,'O','N','2526',2940,0,'2025-11-24','2026-02-23',3017,0,2940,'N','','N','','','','','N','D02','','N',162,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:52:00','0000-00-00','','','','N','19:52:00','00:00:00','','','N','N',NULL,'O','N','Z85','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-11-24 19:52:59','','0000-00-00 00:00:00'),(4154,0,0,'I','N','2526',0,195,'2025-09-30','2026-02-18',3018,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:00:00','2025-09-30','','1','mo','N','09:00:00','17:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-24 19:54:45','mo','2025-11-28 00:18:13'),(4155,0,0,'O','N','2526',2941,0,'2025-11-24','2026-02-23',3019,0,2941,'N','','N','','','EMR','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:49:00','0000-00-00','','','','N','20:49:00','00:00:00','','','N','N',NULL,'O','N','Z86','','0000-00-00 00:00:00','4','20:49:31',0,'','drashti','2025-11-24 20:49:31','','0000-00-00 00:00:00'),(4156,0,0,'O','N','2526',2941,0,'2025-11-25','0000-00-00',3019,0,2941,'N','','N','','','RBS','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:46:00','0000-00-00','','','','N','08:46:00','19:12:46','','','N','Y',NULL,'O','O','Z01','','0000-00-00 00:00:00','4','08:46:52',0,'','reception','2025-11-25 08:46:51','drarchit','2025-11-25 19:12:46'),(4157,0,0,'O','N','2526',2942,0,'2025-11-25','2026-02-24',3020,0,2942,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:05:00','0000-00-00','','','','N','09:05:00','10:51:54','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','2','09:05:47',0,'','reception','2025-11-25 09:05:47','darshan','2025-11-25 10:51:54'),(4158,0,0,'I','N','2526',0,196,'2025-11-25','2026-02-24',3021,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','05:00:00','2025-11-26','','1','mo','N','05:00:00','11:25:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-25 09:08:51','vishal','2025-11-26 11:56:37'),(4159,0,0,'I','N','2526',1388,197,'2025-11-24','2026-02-23',393,0,1388,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','22:30:00','2025-11-28','','1','mo','N','22:30:00','12:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-25 09:43:42','vishal','2025-11-28 12:22:41'),(4160,0,0,'O','N','2526',2159,0,'2025-11-25','0000-00-00',2214,0,2159,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:52:00','0000-00-00','','','','N','09:52:00','10:46:24','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','09:52:11',0,'','reception','2025-11-25 09:52:11','darshan','2025-11-25 10:46:24'),(4161,0,0,'I','N','2526',2711,198,'2025-11-25','2026-02-24',2782,0,2711,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:45:00','2025-11-27','','1','mo','N','09:45:00','19:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-25 09:58:58','mo','2025-11-28 16:29:57'),(4162,0,0,'O','N','2526',1239,0,'2025-11-25','0000-00-00',1280,0,1239,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:03:00','0000-00-00','','','','N','10:03:00','11:02:44','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','2','10:03:52',0,'','reception','2025-11-25 10:03:52','darshan','2025-11-25 11:02:44'),(4163,0,0,'O','N','2526',2943,0,'2025-11-25','2026-02-24',3022,0,2943,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:07:00','0000-00-00','','','','N','10:07:00','13:07:35','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','4','10:07:01',0,'','drashti','2025-11-25 10:07:01','drarchit','2025-11-25 13:07:35'),(4164,0,0,'O','N','2526',2824,0,'2025-11-25','0000-00-00',2894,0,2824,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:07:00','0000-00-00','','','','N','10:07:00','11:13:07','','','N','Y',NULL,'O','O','Z03','','0000-00-00 00:00:00','3','10:07:53',0,'','reception','2025-11-25 10:07:53','drpratapsinh','2025-11-25 11:13:07'),(4165,0,0,'O','N','2526',2448,0,'2025-11-25','0000-00-00',2507,0,2448,'N','','N','','','FV','','N','D06','','N',173,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:12:00','0000-00-00','','','','N','10:12:00','11:12:18','','','N','Y',NULL,'O','O','E02','','0000-00-00 00:00:00','2','10:12:15',0,'','reception','2025-11-25 10:12:15','darshan','2025-11-25 11:12:18'),(4166,0,0,'I','N','2526',2323,199,'2025-11-25','2026-02-24',2380,0,2323,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:50:00','2025-11-26','','1','mo','N','09:50:00','18:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-25 10:15:47','mo','2025-11-26 19:21:44'),(4167,0,0,'O','N','2526',2944,0,'2025-11-25','2026-02-24',3023,0,2944,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:22:00','0000-00-00','','','','N','10:22:00','00:00:00','','','N','N',NULL,'O','N','Z04','','0000-00-00 00:00:00','7','10:22:37',0,'','manshi','2025-11-25 10:22:37','','0000-00-00 00:00:00'),(4168,0,0,'O','N','2526',1617,0,'2025-11-25','0000-00-00',1662,0,1617,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:27:00','0000-00-00','','','','N','10:27:00','11:30:21','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','10:27:24',0,'','drashti','2025-11-25 10:27:24','darshan','2025-11-25 11:30:21'),(4169,0,0,'O','N','2526',1153,0,'2025-11-25','0000-00-00',1193,0,1153,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:29:00','0000-00-00','','','','N','10:29:00','11:48:58','','','N','Y',NULL,'O','O','Z05','','0000-00-00 00:00:00','2','10:30:32',0,'','janvi','2025-11-25 10:30:32','darshan','2025-11-25 11:48:58'),(4170,0,0,'O','N','2526',2945,0,'2025-11-25','2026-02-24',3024,0,2945,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:30:00','0000-00-00','','','','N','10:30:00','13:25:27','','N','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:30:59',0,'','drashti','2025-11-25 10:30:59','darshan','2025-11-25 13:25:27'),(4171,0,0,'O','N','2526',2946,0,'2025-11-25','2026-02-24',3025,0,2946,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:34:00','0000-00-00','','','','N','10:34:00','13:19:14','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','4','10:34:28',0,'','drashti','2025-11-25 10:34:28','drarchit','2025-11-25 13:19:14'),(4172,0,0,'O','N','2526',2947,0,'2025-11-25','2026-02-24',3026,0,2947,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','','N','10:40:00','00:00:00','','Y','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','4','10:41:03',0,'','janvi','2025-11-25 10:41:03','drarchit','2025-11-25 12:08:36'),(4173,0,0,'O','N','2526',2948,0,'2025-11-25','2026-02-24',3027,0,2948,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','11:12:30','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','3','10:44:25',0,'','janvi','2025-11-25 10:44:25','drpratapsinh','2025-11-25 11:12:30'),(4174,0,0,'O','N','2526',2949,0,'2025-11-25','2026-02-24',3028,0,2949,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','11:42:04','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','2','11:04:41',0,'','reception','2025-11-25 11:04:41','darshan','2025-11-25 11:42:04'),(4175,0,0,'O','N','2526',2950,0,'2025-11-25','2026-02-24',3029,0,2950,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','00:00:00','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','3','11:05:35',0,'','drashti','2025-11-25 11:05:35','','0000-00-00 00:00:00'),(4176,0,0,'O','N','2526',2951,0,'2025-11-25','2026-02-24',3030,0,2951,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','13:43:58','','N','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','4','11:08:58',0,'','drashti','2025-11-25 11:08:58','drarchit','2025-11-25 13:43:58'),(4177,0,0,'O','N','2526',2952,0,'2025-11-25','2026-02-24',3031,0,2952,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','13:41:55','','N','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','11:10:31',0,'','drashti','2025-11-25 11:10:31','drarchit','2025-11-25 13:41:55'),(4178,0,0,'O','N','2526',2953,0,'2025-11-25','2026-02-24',3032,0,2953,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','18:24:12','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','4','11:10:32',0,'','janvi','2025-11-25 11:10:32','drarchit','2025-11-25 18:24:12'),(4179,0,0,'O','N','2526',2954,0,'2025-11-25','2026-02-24',3033,0,2954,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','18:25:53','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','4','11:11:46',0,'','janvi','2025-11-25 11:11:46','drarchit','2025-11-25 18:25:53'),(4180,0,0,'O','N','2526',2955,0,'2025-11-25','2026-02-24',3034,0,2955,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','12:06:27','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','2','11:13:34',0,'','reception','2025-11-25 11:13:34','darshan','2025-11-25 12:06:27'),(4181,0,0,'O','N','2526',2956,0,'2025-11-25','2026-02-24',3035,0,2956,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','12:12:34','','','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','4','11:13:39',0,'','drashti','2025-11-25 11:13:39','drarchit','2025-11-25 12:12:34'),(4182,0,0,'O','N','2526',2957,0,'2025-11-25','2026-02-24',3036,0,2957,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','11:21:06','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','3','11:14:04',0,'','janvi','2025-11-25 11:14:04','drpratapsinh','2025-11-25 11:21:06'),(4183,0,0,'O','N','2526',2958,0,'2025-11-25','2026-02-24',3037,0,2958,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','12:25:16','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:16:51',0,'','reception','2025-11-25 11:16:51','darshan','2025-11-25 12:25:16'),(4184,0,0,'O','N','2526',2959,0,'2025-11-25','2026-02-24',3038,0,2959,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','11:35:52','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','3','11:19:19',0,'','janvi','2025-11-25 11:19:19','drpratapsinh','2025-11-25 11:35:52'),(4185,0,0,'O','N','2526',2539,0,'2025-11-25','0000-00-00',2596,0,2539,'N','','N','','','','','N','D02','','N',185,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','11:31:43','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','3','11:21:58',0,'','reception','2025-11-25 11:21:58','drpratapsinh','2025-11-25 11:31:43'),(4186,0,0,'O','N','2526',2960,0,'2025-11-25','2026-02-24',3039,0,2960,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','13:35:07','','N','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','11:23:37',0,'','reception','2025-11-25 11:23:37','darshan','2025-11-25 13:35:07'),(4187,0,0,'O','N','2526',2961,0,'2025-11-25','2026-02-24',3040,0,2961,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','13:07:49','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','4','11:29:02',0,'','drashti','2025-11-25 11:29:02','drarchit','2025-11-25 13:07:49'),(4188,0,0,'O','N','2526',2962,0,'2025-11-25','2026-02-24',3041,0,2962,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:34:00','0000-00-00','','','','N','11:34:00','12:43:12','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','4','11:34:51',0,'','reception','2025-11-25 11:34:51','drarchit','2025-11-25 12:43:12'),(4189,0,0,'O','N','2526',2963,0,'2025-11-25','2026-02-24',3042,0,2963,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','12:20:20','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','4','11:35:45',0,'','drashti','2025-11-25 11:35:45','drarchit','2025-11-25 12:20:20'),(4190,0,0,'O','N','2526',1797,0,'2025-11-25','0000-00-00',1842,0,1797,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','11:55:02','','','N','Y',NULL,'O','O','H06','','0000-00-00 00:00:00','2','11:39:15',0,'','reception','2025-11-25 11:39:15','darshan','2025-11-25 11:55:02'),(4191,0,0,'O','N','2526',2964,0,'2025-11-25','2026-02-24',3043,0,2964,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','12:33:49','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','11:41:05',0,'','reception','2025-11-25 11:41:05','darshan','2025-11-25 12:33:49'),(4192,0,0,'O','N','2526',2965,0,'2025-11-25','2026-02-24',3044,0,2965,'N','','N','','','NV','','N','D06','','N',143,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','17:20:14','','N','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','11:42:48',0,'','reception','2025-11-25 11:42:48','darshan','2025-11-25 17:20:14'),(4193,0,0,'O','N','2526',2966,0,'2025-11-25','2026-02-24',3045,0,2966,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','12:37:07','','','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','4','11:46:31',0,'','drashti','2025-11-25 11:46:31','drarchit','2025-11-25 12:37:07'),(4194,0,0,'O','N','2526',2967,0,'2025-11-25','2026-02-24',2607,0,2967,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','13:01:40','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','4','11:58:23',0,'','drashti','2025-11-25 11:58:23','drarchit','2025-11-25 13:01:40'),(4195,0,0,'O','N','2526',2968,0,'2025-11-25','2026-02-24',3046,0,2968,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:03:00','0000-00-00','','','','N','12:03:00','12:09:32','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','3','12:03:32',0,'','reception','2025-11-25 12:03:31','drpratapsinh','2025-11-25 12:09:32'),(4196,0,0,'O','N','2526',422,0,'2025-11-25','0000-00-00',444,0,422,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:05:00','0000-00-00','','','','N','12:05:00','00:00:00','','','N','N',NULL,'O','O','Z18','','0000-00-00 00:00:00','7','12:05:39',0,'','manshi','2025-11-25 12:05:39','','0000-00-00 00:00:00'),(4197,0,0,'O','N','2526',1928,0,'2025-11-25','0000-00-00',1976,0,1928,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:19:00','0000-00-00','','','','N','12:19:00','13:17:37','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','6','12:19:40',0,'','manshi','2025-11-25 12:19:40','drsagar','2025-11-25 13:17:37'),(4198,0,0,'O','N','2526',2969,0,'2025-11-25','2026-02-24',3047,0,2969,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:25:00','0000-00-00','','','','N','12:25:00','12:52:28','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:25:28',0,'','reception','2025-11-25 12:25:28','darshan','2025-11-25 12:52:28'),(4199,0,0,'O','N','2526',2970,0,'2025-11-25','2026-02-24',3048,0,2970,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','12:56:53','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','12:28:50',0,'','reception','2025-11-25 12:28:50','darshan','2025-11-25 12:56:53'),(4200,0,0,'O','N','2526',855,0,'2025-11-25','0000-00-00',887,0,855,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:32:00','0000-00-00','','','','N','12:32:00','13:10:03','','','N','Y',NULL,'O','O','J04','','0000-00-00 00:00:00','2','12:32:09',0,'','reception','2025-11-25 12:32:09','darshan','2025-11-25 13:10:03'),(4201,0,0,'O','N','2526',2160,0,'2025-11-25','0000-00-00',2215,0,2160,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:40:00','0000-00-00','','','','N','12:40:00','13:14:01','','','N','Y',NULL,'O','O','Z20','','0000-00-00 00:00:00','2','12:40:25',0,'','reception','2025-11-25 12:40:25','darshan','2025-11-25 13:14:01'),(4202,0,0,'O','N','2526',2971,0,'2025-11-25','2026-02-24',3049,0,2971,'N','','N','','','FV','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:54:00','0000-00-00','','','','N','12:54:00','13:15:34','','','N','Y',NULL,'O','N','J05','','0000-00-00 00:00:00','4','12:54:22',0,'','reception','2025-11-25 12:54:22','drarchit','2025-11-25 13:15:34'),(4203,0,0,'O','N','2526',2301,0,'2025-11-25','0000-00-00',2358,0,2301,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:58:00','0000-00-00','','','','N','12:58:00','13:17:23','','','N','Y',NULL,'O','O','Z21','','0000-00-00 00:00:00','6','12:58:49',0,'','manshi','2025-11-25 12:58:49','drsagar','2025-11-25 13:17:23'),(4204,0,0,'O','N','2526',2972,0,'2025-11-25','2026-02-24',3050,0,2972,'N','','N','','','INJ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:26:00','0000-00-00','','','','N','13:26:00','18:20:50','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','4','13:27:05',0,'','reception','2025-11-25 13:27:05','drarchit','2025-11-25 18:20:50'),(4205,0,0,'O','N','2526',2643,0,'2025-11-25','0000-00-00',2713,0,2643,'N','','N','','','','','N','D02','','N',28,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:47:00','0000-00-00','','','','N','16:47:00','00:00:00','','','N','N',NULL,'O','O','Z23','','0000-00-00 00:00:00','3','16:47:36',0,'','priyanshi','2025-11-25 16:47:36','','0000-00-00 00:00:00'),(4206,0,0,'O','N','2526',1815,0,'2025-11-25','0000-00-00',1861,0,1815,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:05:00','0000-00-00','','','','N','17:05:00','17:23:21','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','17:05:06',0,'','reception','2025-11-25 17:05:06','darshan','2025-11-25 17:23:21'),(4207,0,0,'O','N','2526',2973,0,'2025-11-25','2026-02-24',3051,0,2973,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:07:00','0000-00-00','','','','N','17:07:00','18:27:32','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','4','17:07:22',0,'','drashti','2025-11-25 17:07:22','drarchit','2025-11-25 18:27:32'),(4208,0,0,'O','N','2526',2974,0,'2025-11-25','2026-02-24',3052,0,2974,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:07:00','0000-00-00','','','','N','17:07:00','17:28:42','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','17:07:22',0,'','reception','2025-11-25 17:07:22','darshan','2025-11-25 17:28:42'),(4209,0,0,'O','N','2526',2975,0,'2025-11-25','2026-02-24',3053,0,2975,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:13:00','0000-00-00','','','','N','17:13:00','17:46:05','','N','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','2','17:14:38',0,'','janvi','2025-11-25 17:14:38','darshan','2025-11-25 17:46:05'),(4210,0,0,'O','N','2526',2688,0,'2025-11-25','0000-00-00',2757,0,2688,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:18:00','0000-00-00','','','','N','17:18:00','18:36:28','','','N','Y',NULL,'O','O','Z26','','0000-00-00 00:00:00','4','17:18:38',0,'','reception','2025-11-25 17:18:38','drarchit','2025-11-25 18:36:28'),(4211,0,0,'O','N','2526',2914,0,'2025-11-25','0000-00-00',2991,0,2914,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:26:00','0000-00-00','','','','N','17:26:00','19:08:10','','N','N','Y',NULL,'O','O','Z27','','0000-00-00 00:00:00','2','17:26:52',0,'','reception','2025-11-25 17:26:52','darshan','2025-11-25 19:08:10'),(4212,0,0,'O','N','2526',407,0,'2025-11-25','0000-00-00',429,0,407,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:35:00','0000-00-00','','','','N','17:35:00','18:45:34','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','4','17:36:10',0,'','janvi','2025-11-25 17:36:10','drarchit','2025-11-25 18:45:34'),(4213,0,0,'O','N','2526',1694,0,'2025-11-25','0000-00-00',1740,0,1694,'N','','N','','','','','N','D14','','N',117,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','00:00:00','','','N','N',NULL,'O','O','Z29','','0000-00-00 00:00:00','7','17:40:16',0,'','manshi','2025-11-25 17:40:16','','0000-00-00 00:00:00'),(4214,0,0,'O','N','2526',2976,0,'2025-11-25','2026-02-24',3054,0,2976,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','19:20:53','','N','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:41:02',0,'','reception','2025-11-25 17:41:02','darshan','2025-11-25 19:20:54'),(4215,0,0,'O','N','2526',2977,0,'2025-11-25','2026-02-24',3055,0,2977,'N','','N','','','NC','','N','D02','','N',219,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','00:00:00','','','N','N',NULL,'O','N','Z30','','0000-00-00 00:00:00','3','17:42:12',0,'','drashti','2025-11-25 17:42:12','','0000-00-00 00:00:00'),(4216,0,0,'O','N','2526',2978,0,'2025-11-25','2026-02-24',3056,0,2978,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','18:59:02','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','4','17:47:35',0,'','janvi','2025-11-25 17:47:35','drarchit','2025-11-25 18:59:02'),(4217,0,0,'O','N','2526',2979,0,'2025-11-25','2026-02-24',3057,0,2979,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','13:21:39','','N','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','4','17:49:20',0,'','janvi','2025-11-25 17:49:20','drarchit','2025-11-26 13:21:39'),(4218,0,0,'O','N','2526',2980,0,'2025-11-25','2026-02-24',3058,0,2980,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','19:38:21','','N','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','2','17:49:30',0,'','reception','2025-11-25 17:49:30','darshan','2025-11-25 19:38:21'),(4219,0,0,'O','N','2526',2981,0,'2025-11-25','2026-02-24',3059,0,2981,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','18:15:38','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:50:12',0,'','drashti','2025-11-25 17:50:12','darshan','2025-11-25 18:15:38'),(4220,0,0,'O','N','2526',2982,0,'2025-11-25','2026-02-24',3060,0,2982,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','18:18:35','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:52:54',0,'','reception','2025-11-25 17:52:54','darshan','2025-11-25 18:18:35'),(4221,0,0,'O','N','2526',2983,0,'2025-11-25','2026-02-24',3061,0,2983,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:58:00','0000-00-00','','','','N','17:58:00','19:04:43','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','4','17:58:35',0,'','reception','2025-11-25 17:58:35','drarchit','2025-11-25 19:04:43'),(4222,0,0,'O','N','2526',2984,0,'2025-11-25','2026-02-24',3062,0,2984,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','19:19:17','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','4','17:59:28',0,'','drashti','2025-11-25 17:59:28','drarchit','2025-11-25 19:19:17'),(4223,0,0,'O','N','2526',884,0,'2025-11-25','0000-00-00',916,0,884,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:01:00','0000-00-00','','','','N','18:01:00','18:24:41','','','N','Y',NULL,'O','O','L06','','0000-00-00 00:00:00','2','18:01:47',0,'','drashti','2025-11-25 18:01:47','darshan','2025-11-25 18:24:41'),(4224,0,0,'O','N','2526',2985,0,'2025-11-25','2026-02-24',3063,0,2985,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','18:30:56','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','4','18:04:01',0,'','reception','2025-11-25 18:04:01','drarchit','2025-11-25 18:30:56'),(4225,0,0,'O','N','2526',2685,0,'2025-11-25','0000-00-00',2754,0,2685,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','18:50:22','','','N','Y',NULL,'O','O','L08','','0000-00-00 00:00:00','4','18:04:21',0,'','drashti','2025-11-25 18:04:21','drarchit','2025-11-25 18:50:22'),(4226,0,0,'O','N','2526',2986,0,'2025-11-25','2026-02-24',3064,0,2986,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','19:48:58','','N','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','18:05:17',0,'','reception','2025-11-25 18:05:17','darshan','2025-11-25 19:48:58'),(4227,0,0,'O','N','2526',2987,0,'2025-11-25','2026-02-24',3065,0,2987,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','19:56:26','','N','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','2','18:07:37',0,'','reception','2025-11-25 18:07:37','darshan','2025-11-25 19:56:26'),(4228,0,0,'O','N','2526',2988,0,'2025-11-25','2026-02-24',3066,0,2988,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','18:15:49','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','6','18:10:15',0,'','manshi','2025-11-25 18:10:15','drsagar','2025-11-25 18:15:49'),(4229,0,0,'O','N','2526',2989,0,'2025-11-25','2026-02-24',3067,0,2989,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','19:51:29','','N','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','2','18:10:53',0,'','reception','2025-11-25 18:10:53','darshan','2025-11-25 19:51:29'),(4230,0,0,'O','N','2526',2536,0,'2025-11-25','0000-00-00',2593,0,2536,'N','','N','','','FOLLOWUP V','','N','D06','','N',182,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:13:00','0000-00-00','','','','N','18:13:00','19:02:45','','','N','Y',NULL,'O','O','Z38','','0000-00-00 00:00:00','2','18:13:52',0,'','reception','2025-11-25 18:13:52','darshan','2025-11-25 19:02:45'),(4231,0,0,'O','N','2526',2990,0,'2025-11-25','2026-02-24',3068,0,2990,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','18:41:10','','N','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','4','18:16:57',0,'','drashti','2025-11-25 18:16:57','drarchit','2025-11-25 18:41:10'),(4232,0,0,'O','N','2526',2097,0,'2025-11-25','0000-00-00',2150,0,2097,'N','','N','','','FC','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','18:47:15','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','2','18:29:34',0,'','reception','2025-11-25 18:29:34','darshan','2025-11-25 18:47:15'),(4233,0,0,'O','N','2526',2991,0,'2025-11-25','2026-02-24',3069,0,2991,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','00:00:00','','','N','N',NULL,'O','N','Z40','','0000-00-00 00:00:00','3','18:29:51',0,'','janvi','2025-11-25 18:29:51','','0000-00-00 00:00:00'),(4234,0,0,'O','N','2526',1018,0,'2025-11-25','0000-00-00',1052,0,1018,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','19:12:05','','','N','Y',NULL,'O','O','L12','','0000-00-00 00:00:00','4','18:31:31',0,'','drashti','2025-11-25 18:31:31','drarchit','2025-11-25 19:12:05'),(4235,0,0,'O','N','2526',1953,0,'2025-11-25','0000-00-00',2001,0,1953,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','00:00:00','','','N','N',NULL,'O','O','Z41','','0000-00-00 00:00:00','3','18:31:40',0,'','janvi','2025-11-25 18:31:40','','0000-00-00 00:00:00'),(4236,0,0,'O','N','2526',2992,0,'2025-11-25','2026-02-24',3070,0,2992,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','19:29:24','','N','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','4','18:32:09',0,'','reception','2025-11-25 18:32:09','drarchit','2025-11-25 19:29:24'),(4237,0,0,'O','N','2526',221,0,'2025-11-25','0000-00-00',234,0,221,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:37:00','0000-00-00','','','','N','18:37:00','00:00:00','','','N','N',NULL,'O','O','Z42','','0000-00-00 00:00:00','3','18:37:41',0,'','janvi','2025-11-25 18:37:41','','0000-00-00 00:00:00'),(4238,0,0,'O','N','2526',2993,0,'2025-11-25','2026-02-24',3071,0,2993,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','19:00:56','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','6','18:43:08',0,'','manshi','2025-11-25 18:43:08','drsagar','2025-11-25 19:00:56'),(4239,0,0,'O','N','2526',2994,0,'2025-11-25','2026-02-24',3072,0,2994,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:45:00','0000-00-00','','','','N','18:45:00','00:00:00','','','N','N',NULL,'O','N','Z44','','0000-00-00 00:00:00','7','18:45:37',0,'','manshi','2025-11-25 18:45:37','','0000-00-00 00:00:00'),(4240,0,0,'O','N','2526',2995,0,'2025-11-25','2026-02-24',3073,0,2995,'N','','N','','','','','N','D02','','N',220,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','00:00:00','','','N','N',NULL,'O','N','Z45','','0000-00-00 00:00:00','3','18:54:18',0,'','reception','2025-11-25 18:54:18','reception','2025-11-25 18:57:20'),(4241,0,0,'O','N','2526',2996,0,'2025-11-25','2026-02-24',3074,0,2996,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','19:20:29','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','2','18:56:16',0,'','reception','2025-11-25 18:56:16','darshan','2025-11-25 19:20:29'),(4242,0,0,'O','N','2526',2997,0,'2025-11-25','2026-02-24',3075,0,2997,'N','','N','','','','','N','D14','','N',196,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:00:00','0000-00-00','','','','N','19:00:00','00:00:00','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','7','19:03:08',0,'','manshi','2025-11-25 19:00:28','manshi','2025-11-25 19:03:07'),(4243,0,0,'O','N','2526',662,0,'2025-11-25','0000-00-00',692,0,662,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:03:00','0000-00-00','','','','N','19:03:00','19:34:18','','','N','Y',NULL,'O','O','L14','','0000-00-00 00:00:00','2','19:03:19',0,'','reception','2025-11-25 19:03:19','darshan','2025-11-25 19:34:18'),(4244,0,0,'O','N','2526',2998,0,'2025-11-25','2026-02-24',3076,0,2998,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:05:00','0000-00-00','','','','N','19:05:00','20:19:44','','N','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','2','19:05:36',0,'','reception','2025-11-25 19:05:36','darshan','2025-11-25 20:19:44'),(4245,0,0,'I','N','2526',0,200,'2025-11-25','2026-02-24',3077,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:30:00','2025-11-28','','1','mo','N','19:30:00','10:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-25 19:27:40','mo','2025-11-28 11:03:40'),(4246,0,0,'O','N','2526',2910,0,'2025-11-25','0000-00-00',2988,0,2910,'N','','N','','','','','N','D02','','N',215,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:34:00','0000-00-00','','','','N','19:34:00','00:00:00','','','N','N',NULL,'O','O','Z48','','0000-00-00 00:00:00','3','19:34:41',0,'','janvi','2025-11-25 19:34:41','','0000-00-00 00:00:00'),(4247,0,0,'O','N','2526',2818,0,'2025-11-25','0000-00-00',2887,0,2818,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:47:00','0000-00-00','','','','N','19:47:00','00:00:00','','','N','N',NULL,'O','O','Z49','','0000-00-00 00:00:00','4','19:48:01',0,'','drashti','2025-11-25 19:48:01','','0000-00-00 00:00:00'),(4248,0,0,'O','N','2526',2033,0,'2025-11-25','0000-00-00',2087,0,2033,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:49:00','0000-00-00','','','','N','19:49:00','00:00:00','','','N','N',NULL,'O','O','Z50','','0000-00-00 00:00:00','3','19:49:54',0,'','janvi','2025-11-25 19:49:54','','0000-00-00 00:00:00'),(4249,0,0,'O','N','2526',64,0,'2025-11-25','0000-00-00',75,0,64,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:50:00','0000-00-00','','','','N','19:50:00','20:32:16','','','N','Y',NULL,'O','O','Z51','','0000-00-00 00:00:00','4','19:50:50',0,'','drashti','2025-11-25 19:50:50','drarchit','2025-11-25 20:32:16'),(4250,0,0,'O','N','2526',2725,0,'2025-11-25','0000-00-00',2796,0,2725,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:54:00','0000-00-00','','','','N','19:54:00','00:00:00','','','N','N',NULL,'O','O','Z52','','0000-00-00 00:00:00','4','19:54:32',0,'','drashti','2025-11-25 19:54:32','','0000-00-00 00:00:00'),(4251,0,0,'O','N','2526',1422,0,'2025-11-25','0000-00-00',1463,0,1422,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:58:00','0000-00-00','','','','N','19:58:00','20:56:41','','','N','Y',NULL,'O','O','Z53','','0000-00-00 00:00:00','4','19:58:41',0,'','drashti','2025-11-25 19:58:41','drarchit','2025-11-25 20:56:41'),(4252,0,0,'O','N','2526',1837,0,'2025-11-25','0000-00-00',1883,0,1837,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:01:00','0000-00-00','','','','N','20:01:00','00:00:00','','','N','N',NULL,'O','O','Z54','','0000-00-00 00:00:00','3','20:02:16',0,'','janvi','2025-11-25 20:02:16','','0000-00-00 00:00:00'),(4253,0,0,'O','N','2526',2655,0,'2025-11-25','0000-00-00',2725,0,2655,'N','','N','','','','Y','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:04:00','0000-00-00','','','','N','20:04:00','00:00:00','','','N','N',NULL,'O','O','Z55','','0000-00-00 00:00:00','7','20:04:29',0,'','manshi','2025-11-25 20:04:29','','0000-00-00 00:00:00'),(4254,0,0,'O','N','2526',2999,0,'2025-11-25','2026-02-24',3078,0,2999,'N','','N','','','','Y','N','D02','','N',222,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:04:00','0000-00-00','','','','N','20:04:00','00:00:00','','','N','N',NULL,'O','N','Z56','','0000-00-00 00:00:00','3','20:05:08',0,'','janvi','2025-11-25 20:05:07','','0000-00-00 00:00:00'),(4255,0,0,'O','N','2526',1288,0,'2025-11-25','0000-00-00',1327,0,1288,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:34:00','0000-00-00','','','','N','20:34:00','00:00:00','','','N','N',NULL,'O','O','Z57','','0000-00-00 00:00:00','3','20:34:56',0,'','janvi','2025-11-25 20:34:56','','0000-00-00 00:00:00'),(4256,0,0,'O','N','2526',3000,0,'2025-11-26','2026-02-25',3079,0,3000,'N','','N','','','ER','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:49:00','0000-00-00','','','','N','08:49:00','00:00:00','','','N','N',NULL,'O','N','Z01','','0000-00-00 00:00:00','7','08:49:46',0,'','reception','2025-11-26 08:49:46','','0000-00-00 00:00:00'),(4257,0,0,'O','N','2526',3001,0,'2025-11-26','2026-02-25',3080,0,3001,'N','','N','','','','','N','D02','','N',177,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:56:00','0000-00-00','','','','N','08:56:00','10:32:11','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','3','08:56:51',0,'','reception','2025-11-26 08:56:51','drpratapsinh','2025-11-26 10:32:11'),(4258,0,0,'O','N','2526',3002,0,'2025-11-26','2026-02-25',3081,0,3002,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:36:00','0000-00-00','','','','N','09:36:00','10:37:48','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','3','09:36:56',0,'','reception','2025-11-26 09:36:55','drpratapsinh','2025-11-26 10:37:48'),(4259,0,0,'O','N','2526',3003,0,'2025-11-26','2026-02-25',3082,0,3003,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:42:00','0000-00-00','','','','N','09:42:00','10:58:38','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','2','09:42:22',0,'','reception','2025-11-26 09:42:22','darshan','2025-11-26 10:58:38'),(4260,0,0,'O','N','2526',3004,0,'2025-11-26','2026-02-25',3083,0,3004,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:44:00','0000-00-00','','','','N','09:44:00','11:20:11','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','09:44:15',0,'','reception','2025-11-26 09:44:15','darshan','2025-11-26 11:20:11'),(4261,0,0,'I','N','2526',2928,201,'2025-11-26','2026-02-25',3005,0,2928,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:50:00','2025-11-27','','1','mo','N','09:50:00','20:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-26 09:52:18','riya','2025-11-27 20:48:23'),(4262,0,0,'O','N','2526',3005,0,'2025-11-26','2026-02-25',3084,0,3005,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','0000-00-00','','','','N','10:00:00','18:45:40','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','3','10:03:32',0,'','janvi','2025-11-26 10:00:57','drpratapsinh','2025-11-26 18:45:40'),(4263,0,0,'O','N','2526',2785,0,'2025-11-26','0000-00-00',2854,0,2785,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:01:00','0000-00-00','','','','N','10:01:00','10:52:26','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','10:01:58',0,'','reception','2025-11-26 10:01:58','darshan','2025-11-26 10:52:26'),(4264,0,0,'O','N','2526',2526,0,'2025-11-26','0000-00-00',2584,0,2526,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:05:00','0000-00-00','','','','N','10:05:00','11:06:46','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','10:05:39',0,'','reception','2025-11-26 10:05:39','darshan','2025-11-26 11:06:46'),(4265,0,0,'I','N','2526',2903,202,'2025-11-26','2026-02-25',2980,0,2903,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','2025-11-27','','1','mo','N','10:00:00','19:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-26 10:12:07','mo','2025-11-27 20:34:18'),(4266,0,0,'I','N','2526',0,203,'2025-11-26','2026-02-25',3085,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','2025-12-03','','1','mo','N','10:15:00','19:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-26 10:29:44','vishal','2025-12-03 19:32:09'),(4267,0,0,'O','N','2526',1171,0,'2025-11-26','0000-00-00',1210,0,1171,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','11:26:42','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:38:12',0,'','reception','2025-11-26 10:38:12','darshan','2025-11-26 11:26:42'),(4268,0,0,'O','N','2526',2677,0,'2025-11-26','0000-00-00',2746,0,2677,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','11:29:11','','','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','3','10:39:36',0,'','drashti','2025-11-26 10:39:36','drpratapsinh','2025-11-26 11:29:11'),(4269,0,0,'O','N','2526',2070,0,'2025-11-26','0000-00-00',2124,0,2070,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:47:00','0000-00-00','','','','N','10:47:00','11:14:24','','','N','Y',NULL,'O','O','F03','','0000-00-00 00:00:00','2','10:47:27',0,'','reception','2025-11-26 10:47:27','darshan','2025-11-26 11:14:24'),(4270,0,0,'O','N','2526',3006,0,'2025-11-26','2026-02-25',3086,0,3006,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','18:46:33','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','3','10:53:58',0,'','drashti','2025-11-26 10:53:57','drpratapsinh','2025-11-26 18:46:33'),(4271,0,0,'O','N','2526',1288,0,'2025-11-26','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','11:22:35','','','N','Y',NULL,'O','O','Z08','','0000-00-00 00:00:00','3','10:54:22',0,'','janvi','2025-11-26 10:54:22','drpratapsinh','2025-11-26 11:22:35'),(4272,0,0,'O','N','2526',3007,0,'2025-11-26','2026-02-25',3087,0,3007,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','11:28:51','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','3','10:55:22',0,'','reception','2025-11-26 10:55:22','drpratapsinh','2025-11-26 11:28:51'),(4273,0,0,'O','N','2526',3008,0,'2025-11-26','2026-02-25',3088,0,3008,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','11:53:55','','N','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','4','10:58:08',0,'','drashti','2025-11-26 10:58:08','drarchit','2025-11-26 11:53:55'),(4274,0,0,'O','N','2526',3009,0,'2025-11-26','2026-02-25',3089,0,3009,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','11:30:31','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','11:01:41',0,'','reception','2025-11-26 11:01:41','darshan','2025-11-26 11:30:31'),(4275,0,0,'O','N','2526',3010,0,'2025-11-26','2026-02-25',3090,0,3010,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','11:38:28','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','4','11:09:49',0,'','reception','2025-11-26 11:09:49','drarchit','2025-11-26 11:38:28'),(4276,0,0,'O','N','2526',3011,0,'2025-11-26','2026-02-25',3091,0,3011,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','13:20:31','','N','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:13:41',0,'','reception','2025-11-26 11:13:41','darshan','2025-11-26 13:20:31'),(4277,0,0,'O','N','2526',3012,0,'2025-11-26','2026-02-25',3092,0,3012,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','11:29:17','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','4','11:18:13',0,'','drashti','2025-11-26 11:18:13','drarchit','2025-11-26 11:29:17'),(4278,0,0,'O','N','2526',3013,0,'2025-11-26','2026-02-25',3093,0,3013,'N','','N','','','','','N','D02','','N',223,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','11:37:12','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','3','11:18:39',0,'','reception','2025-11-26 11:18:39','drpratapsinh','2025-11-26 11:37:12'),(4279,0,0,'O','N','2526',3014,0,'2025-11-26','2026-02-25',3094,0,3014,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','11:47:12','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','4','11:32:10',0,'','drashti','2025-11-26 11:24:01','drarchit','2025-11-26 11:47:12'),(4280,0,0,'O','N','2526',3015,0,'2025-11-26','2026-02-25',3095,0,3015,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','11:47:37','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','2','11:26:29',0,'','reception','2025-11-26 11:26:29','darshan','2025-11-26 11:47:37'),(4281,0,0,'O','N','2526',1240,0,'2025-11-26','0000-00-00',1281,0,1240,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:37:00','0000-00-00','','','','N','11:37:00','12:06:22','','','N','Y',NULL,'O','O','H03','','0000-00-00 00:00:00','2','11:37:36',0,'','reception','2025-11-26 11:37:36','darshan','2025-11-26 12:06:22'),(4282,0,0,'O','N','2526',2818,0,'2025-11-26','0000-00-00',2887,0,2818,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','12:18:45','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','4','11:39:20',0,'','janvi','2025-11-26 11:39:20','drarchit','2025-11-26 12:18:45'),(4283,0,0,'O','N','2526',3016,0,'2025-11-26','2026-02-25',3096,0,3016,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','00:00:00','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','3','11:39:41',0,'','reception','2025-11-26 11:39:41','','0000-00-00 00:00:00'),(4284,0,0,'O','N','2526',3017,0,'2025-11-26','2026-02-25',3097,0,3017,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','11:58:19','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','4','11:42:21',0,'','reception','2025-11-26 11:42:21','drarchit','2025-11-26 11:58:19'),(4285,0,0,'O','N','2526',3018,0,'2025-11-26','2026-02-25',3098,0,3018,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','12:18:27','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','4','11:45:07',0,'','janvi','2025-11-26 11:45:07','drarchit','2025-11-26 12:18:27'),(4286,0,0,'O','N','2526',2681,0,'2025-11-26','0000-00-00',2750,0,2681,'N','','N','','','','','N','D02','','N',200,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','18:54:25','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','3','11:46:24',0,'','reception','2025-11-26 11:46:24','drpratapsinh','2025-11-26 18:54:25'),(4287,0,0,'O','N','2526',3019,0,'2025-11-26','2026-02-25',3099,0,3019,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','18:57:59','','N','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','4','11:46:41',0,'','drashti','2025-11-26 11:46:41','drarchit','2025-11-26 18:57:59'),(4288,0,0,'O','N','2526',3020,0,'2025-11-26','2026-02-25',3100,0,3020,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','19:05:13','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','4','11:48:09',0,'','drashti','2025-11-26 11:48:09','drarchit','2025-11-26 19:05:13'),(4289,0,0,'O','N','2526',3021,0,'2025-11-26','2026-02-25',3101,0,3021,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:49:00','0000-00-00','','','','N','11:49:00','00:00:00','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','3','11:50:24',0,'','janvi','2025-11-26 11:50:24','','0000-00-00 00:00:00'),(4290,0,0,'O','N','2526',3022,0,'2025-11-26','2026-02-25',3102,0,3022,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','13:35:51','','N','N','Y',NULL,'O','N','H06','','0000-00-00 00:00:00','2','11:52:54',0,'','reception','2025-11-26 11:52:54','darshan','2025-11-26 13:35:53'),(4291,0,0,'O','N','2526',3023,0,'2025-11-26','2026-02-25',3103,0,3023,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:55:00','0000-00-00','','','','N','11:55:00','12:36:44','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','11:55:12',0,'','reception','2025-11-26 11:55:12','darshan','2025-11-26 12:36:44'),(4292,0,0,'O','N','2526',240,0,'2025-11-26','0000-00-00',255,0,240,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','12:12:21','','','N','Y',NULL,'O','O','H07','','0000-00-00 00:00:00','4','11:56:46',0,'','janvi','2025-11-26 11:56:46','drarchit','2025-11-26 12:12:21'),(4293,0,0,'O','N','2526',3024,0,'2025-11-26','2026-02-25',3104,0,3024,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','12:35:39','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','4','12:00:05',0,'','drashti','2025-11-26 12:00:04','drarchit','2025-11-26 12:35:39'),(4294,0,0,'O','N','2526',822,0,'2025-11-26','0000-00-00',853,0,822,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','12:42:36','','','N','Y',NULL,'O','O','I04','','0000-00-00 00:00:00','2','12:02:55',0,'','reception','2025-11-26 12:02:54','darshan','2025-11-26 12:42:36'),(4295,0,0,'O','N','2526',3025,0,'2025-11-26','2026-02-25',3105,0,3025,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:04:00','0000-00-00','','','','N','12:04:00','18:52:44','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','3','12:04:43',0,'','drashti','2025-11-26 12:04:43','drpratapsinh','2025-11-26 18:52:44'),(4296,0,0,'O','N','2526',508,0,'2025-11-26','0000-00-00',533,0,508,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:13:00','0000-00-00','','','','N','12:13:00','12:44:01','','N','N','Y',NULL,'O','O','I05','','0000-00-00 00:00:00','4','12:13:31',0,'','drashti','2025-11-26 12:13:31','drarchit','2025-11-26 12:44:01'),(4297,0,0,'O','N','2526',3026,0,'2025-11-26','2026-02-25',3106,0,3026,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:13:00','0000-00-00','','','','N','12:13:00','00:00:00','','','N','N',NULL,'O','N','Z20','','0000-00-00 00:00:00','3','12:14:47',0,'','janvi','2025-11-26 12:14:47','','0000-00-00 00:00:00'),(4298,0,0,'O','N','2526',3027,0,'2025-11-26','2026-02-25',3107,0,3027,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','18:05:25','','','N','Y',NULL,'O','N','I06','','0000-00-00 00:00:00','4','12:22:43',0,'','janvi','2025-11-26 12:22:43','drarchit','2025-11-26 18:05:25'),(4299,0,0,'O','N','2526',3028,0,'2025-11-26','2026-02-25',3108,0,3028,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:25:00','0000-00-00','','','','N','12:25:00','18:46:56','','N','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','4','12:25:12',0,'','drashti','2025-11-26 12:25:12','drarchit','2025-11-26 18:46:56'),(4300,0,0,'O','N','2526',949,0,'2025-11-26','0000-00-00',980,0,949,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','0000-00-00','','','','N','12:30:00','12:46:42','','','N','Y',NULL,'O','O','Z22','','0000-00-00 00:00:00','2','12:30:28',0,'','drashti','2025-11-26 12:30:28','darshan','2025-11-26 12:46:42'),(4301,0,0,'O','N','2526',1137,0,'2025-11-26','0000-00-00',1177,0,1137,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','12:59:10','','','N','Y',NULL,'O','O','J01','','0000-00-00 00:00:00','2','12:35:51',0,'','reception','2025-11-26 12:35:51','darshan','2025-11-26 12:59:10'),(4302,0,0,'O','N','2526',3029,0,'2025-11-26','2026-02-25',3109,0,3029,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:48:00','0000-00-00','','','','N','12:48:00','14:00:46','','N','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','2','12:48:17',0,'','reception','2025-11-26 12:48:17','darshan','2025-11-26 14:00:46'),(4303,0,0,'O','N','2526',1533,0,'2025-11-26','0000-00-00',452,0,1533,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:16:00','0000-00-00','','','','N','13:16:00','13:57:31','','','N','Y',NULL,'O','O','K01','','0000-00-00 00:00:00','4','13:17:02',0,'','drashti','2025-11-26 13:17:01','drarchit','2025-11-26 13:57:31'),(4304,0,0,'O','N','2526',3030,0,'2025-11-26','2026-02-25',3110,0,3030,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:50:00','0000-00-00','','','','N','13:50:00','19:11:53','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','4','13:50:56',0,'','janvi','2025-11-26 13:50:56','drarchit','2025-11-26 19:11:53'),(4305,0,0,'I','N','2526',0,204,'2025-11-26','2026-02-25',3111,0,0,'Y','Accident','N','','','','N','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:30:00','2025-11-26','','7','mo','N','14:30:00','18:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-26 14:41:00','mo','2025-11-26 19:17:25'),(4306,0,0,'O','N','2526',3031,0,'2025-11-26','2026-02-25',3112,0,3031,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:25:00','0000-00-00','','','','N','15:25:00','18:52:21','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','3','15:25:32',0,'','priyanshi','2025-11-26 15:25:32','drpratapsinh','2025-11-26 18:52:21'),(4307,0,0,'O','N','2526',1298,0,'2025-11-26','0000-00-00',1337,0,1298,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:34:00','0000-00-00','','','','N','16:34:00','17:02:26','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','16:34:10',0,'','reception','2025-11-26 16:34:10','darshan','2025-11-26 17:02:26'),(4308,0,0,'O','N','2526',1467,0,'2025-11-26','0000-00-00',1508,0,1467,'N','','N','','','','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:35:00','0000-00-00','','','','N','16:35:00','17:09:21','','','N','Y',NULL,'O','O','Z26','','0000-00-00 00:00:00','2','16:35:14',0,'','drashti','2025-11-26 16:35:14','darshan','2025-11-26 17:09:21'),(4309,0,0,'O','N','2526',345,0,'2025-11-26','0000-00-00',361,0,345,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:38:00','0000-00-00','','','','N','16:38:00','17:07:57','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','16:38:09',0,'','reception','2025-11-26 16:38:09','darshan','2025-11-26 17:07:57'),(4310,0,0,'O','N','2526',3032,0,'2025-11-26','2026-02-25',3113,0,3032,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:41:00','0000-00-00','','','','N','16:41:00','17:12:16','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','2','16:41:55',0,'','reception','2025-11-26 16:41:55','darshan','2025-11-26 17:12:16'),(4311,0,0,'O','N','2526',1973,0,'2025-11-26','0000-00-00',2021,0,1973,'N','','N','','','FOLLOWUP V','','N','D06','','N',139,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:46:00','0000-00-00','','','','N','16:46:00','17:17:24','','','N','Y',NULL,'O','O','L03','','0000-00-00 00:00:00','2','16:46:48',0,'','reception','2025-11-26 16:46:48','darshan','2025-11-26 17:17:24'),(4312,0,0,'O','N','2526',326,0,'2025-11-26','0000-00-00',342,0,326,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:53:00','0000-00-00','','','','N','16:53:00','17:21:41','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','2','16:53:32',0,'','reception','2025-11-26 16:53:32','darshan','2025-11-26 17:21:41'),(4313,0,0,'O','N','2526',3033,0,'2025-11-26','2026-02-25',3114,0,3033,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:08:00','0000-00-00','','','','N','17:08:00','18:22:59','','N','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','2','17:08:28',0,'','reception','2025-11-26 17:08:28','darshan','2025-11-26 18:22:59'),(4314,0,0,'O','N','2526',3034,0,'2025-11-26','2026-02-25',3115,0,3034,'N','','N','','','','','N','D02','','N',106,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:31:00','0000-00-00','','','','N','17:31:00','00:00:00','','','N','N',NULL,'O','N','Z30','','0000-00-00 00:00:00','3','17:31:59',0,'','janvi','2025-11-26 17:31:59','','0000-00-00 00:00:00'),(4315,0,0,'O','N','2526',2735,0,'2025-11-26','0000-00-00',2805,0,2735,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:35:00','0000-00-00','','','','N','17:35:00','17:47:48','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','17:35:39',0,'','reception','2025-11-26 17:35:39','darshan','2025-11-26 17:47:48'),(4316,0,0,'O','N','2526',3035,0,'2025-11-26','2026-02-25',3116,0,3035,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','18:08:28','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','4','17:42:38',0,'','janvi','2025-11-26 17:42:38','drarchit','2025-11-26 18:08:28'),(4317,0,0,'O','N','2526',3036,0,'2025-11-26','2026-02-25',3117,0,3036,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:45:00','0000-00-00','','','','N','17:45:00','00:00:00','','','N','N',NULL,'O','N','Z32','','0000-00-00 00:00:00','3','17:45:59',0,'','janvi','2025-11-26 17:45:59','','0000-00-00 00:00:00'),(4318,0,0,'O','N','2526',3037,0,'2025-11-26','2026-02-25',3118,0,3037,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','18:12:21','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','4','17:52:04',0,'','janvi','2025-11-26 17:52:04','drarchit','2025-11-26 18:12:21'),(4319,0,0,'O','N','2526',3038,0,'2025-11-26','2026-02-25',3119,0,3038,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:54:00','0000-00-00','','','','N','17:54:00','18:39:13','','N','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','4','17:54:31',0,'','reception','2025-11-26 17:54:31','drarchit','2025-11-26 18:39:13'),(4320,0,0,'O','N','2526',3039,0,'2025-11-26','2026-02-25',3120,0,3039,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','18:16:54','','','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:57:21',0,'','reception','2025-11-26 17:57:21','darshan','2025-11-26 18:16:54'),(4321,0,0,'O','N','2526',2393,0,'2025-11-26','0000-00-00',392,0,2393,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:08:00','0000-00-00','','','','N','18:08:00','18:31:26','','','N','Y',NULL,'O','O','L07','','0000-00-00 00:00:00','4','18:09:16',0,'','janvi','2025-11-26 18:09:16','drarchit','2025-11-26 18:31:26'),(4322,0,0,'O','N','2526',3040,0,'2025-11-26','2026-02-25',3121,0,3040,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','18:31:22','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','18:11:27',0,'','reception','2025-11-26 18:11:27','darshan','2025-11-26 18:31:22'),(4323,0,0,'O','N','2526',3041,0,'2025-11-26','2026-02-25',3122,0,3041,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:13:00','0000-00-00','','','','N','18:13:00','18:20:58','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','4','18:14:42',0,'','janvi','2025-11-26 18:14:42','drarchit','2025-11-26 18:20:58'),(4324,0,0,'O','N','2526',3042,0,'2025-11-26','2026-02-25',3123,0,3042,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','18:42:41','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','2','18:18:41',0,'','reception','2025-11-26 18:18:41','darshan','2025-11-26 18:42:41'),(4325,0,0,'O','N','2526',3043,0,'2025-11-26','2026-02-25',3124,0,3043,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','18:53:59','','','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','4','18:24:21',0,'','drashti','2025-11-26 18:24:21','drarchit','2025-11-26 18:53:59'),(4326,0,0,'O','N','2526',2540,0,'2025-11-26','0000-00-00',2597,0,2540,'N','','N','','','FV','','N','D06','','N',186,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','18:47:58','','','N','Y',NULL,'O','O','L12','','0000-00-00 00:00:00','2','18:26:55',0,'','reception','2025-11-26 18:26:55','darshan','2025-11-26 18:47:58'),(4327,0,0,'O','N','2526',3044,0,'2025-11-26','2026-02-25',3125,0,3044,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','18:51:29','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','3','18:31:13',0,'','janvi','2025-11-26 18:31:13','drpratapsinh','2025-11-26 18:51:29'),(4328,0,0,'O','N','2526',2333,0,'2025-11-26','0000-00-00',2389,0,2333,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','18:49:56','','','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','3','18:34:09',0,'','reception','2025-11-26 18:34:09','drpratapsinh','2025-11-26 18:49:56'),(4329,0,0,'O','N','2526',3045,0,'2025-11-26','2026-02-25',3126,0,3045,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:47:00','0000-00-00','','','','N','18:47:00','19:25:19','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','4','18:47:48',0,'','drashti','2025-11-26 18:47:48','drarchit','2025-11-26 19:25:19'),(4330,0,0,'O','N','2526',332,0,'2025-11-26','0000-00-00',348,0,332,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:52:00','0000-00-00','','','','N','18:52:00','19:53:28','','','N','Y',NULL,'O','O','Z37','','0000-00-00 00:00:00','3','18:52:13',0,'','reception','2025-11-26 18:52:13','drpratapsinh','2025-11-26 19:53:28'),(4331,0,0,'O','N','2526',3046,0,'2025-11-26','2026-02-25',3127,0,3046,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:53:00','0000-00-00','','','','N','18:53:00','19:16:39','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','4','18:53:52',0,'','drashti','2025-11-26 18:53:52','drarchit','2025-11-26 19:16:39'),(4332,0,0,'O','N','2526',1251,0,'2025-11-26','0000-00-00',1292,0,1251,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','19:47:22','','','N','Y',NULL,'O','O','Z38','','0000-00-00 00:00:00','3','18:54:51',0,'','janvi','2025-11-26 18:54:51','drpratapsinh','2025-11-26 19:47:22'),(4333,0,0,'O','N','2526',3047,0,'2025-11-26','2026-02-25',3128,0,3047,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','19:29:54','','N','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','4','18:56:27',0,'','drashti','2025-11-26 18:56:27','drarchit','2025-11-27 19:29:54'),(4334,0,0,'O','N','2526',3048,0,'2025-11-26','2026-02-25',3129,0,3048,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:59:00','0000-00-00','','','','N','18:59:00','19:30:58','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','4','18:59:51',0,'','drashti','2025-11-26 18:59:51','drarchit','2025-11-26 19:30:58'),(4335,0,0,'O','N','2526',3049,0,'2025-11-26','2026-02-25',3130,0,3049,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:01:00','0000-00-00','','','','N','19:01:00','19:17:53','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','2','19:01:06',0,'','reception','2025-11-26 19:01:06','darshan','2025-11-26 19:17:53'),(4336,0,0,'O','N','2526',1288,0,'2025-11-26','0000-00-00',1327,0,1288,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:00:00','0000-00-00','','','','N','19:00:00','19:41:15','','','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','3','19:01:10',0,'','janvi','2025-11-26 19:01:10','drpratapsinh','2025-11-26 19:41:15'),(4337,0,0,'O','N','2526',3050,0,'2025-11-26','2026-02-25',3131,0,3050,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:03:00','0000-00-00','','','','N','19:03:00','19:52:04','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','3','19:04:18',0,'','janvi','2025-11-26 19:04:18','drpratapsinh','2025-11-26 19:52:04'),(4338,0,0,'O','N','2526',3051,0,'2025-11-26','2026-02-25',3132,0,3051,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:11:00','0000-00-00','','','','N','19:11:00','19:38:36','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','4','19:11:11',0,'','drashti','2025-11-26 19:11:11','drarchit','2025-11-26 19:38:36'),(4339,0,0,'O','N','2526',3052,0,'2025-11-26','2026-02-25',3133,0,3052,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:12:00','0000-00-00','','','','N','19:12:00','19:19:56','','N','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','4','19:12:49',0,'','reception','2025-11-26 19:12:49','drarchit','2025-11-27 19:19:56'),(4340,0,0,'O','N','2526',3053,0,'2025-11-26','2026-02-25',3134,0,3053,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:16:00','0000-00-00','','','','N','19:16:00','19:46:21','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','3','19:17:10',0,'','janvi','2025-11-26 19:17:10','drpratapsinh','2025-11-26 19:46:21'),(4341,0,0,'O','N','2526',3054,0,'2025-11-26','2026-02-25',3135,0,3054,'N','','N','','','NV','','N','D06','','N',116,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:20:00','0000-00-00','','','','N','19:20:00','00:00:00','','','N','N',NULL,'O','N','Z43','','0000-00-00 00:00:00','2','19:20:11',0,'','drashti','2025-11-26 19:20:11','','0000-00-00 00:00:00'),(4342,0,0,'O','N','2526',1661,0,'2025-11-26','0000-00-00',1706,0,1661,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:20:00','0000-00-00','','','','N','19:20:00','00:00:00','','','N','N',NULL,'O','O','Z44','','0000-00-00 00:00:00','7','19:20:43',0,'','manshi','2025-11-26 19:20:43','','0000-00-00 00:00:00'),(4343,0,0,'O','N','2526',1343,0,'2025-11-26','0000-00-00',1383,0,1343,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:22:00','0000-00-00','','','','N','19:22:00','19:47:06','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','3','19:23:39',0,'','janvi','2025-11-26 19:23:39','drpratapsinh','2025-11-26 19:47:06'),(4344,0,0,'O','N','2526',3055,0,'2025-11-26','2026-02-25',3136,0,3055,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:28:00','0000-00-00','','','','N','19:28:00','00:00:00','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','6','19:28:43',0,'','manshi','2025-11-26 19:28:42','','0000-00-00 00:00:00'),(4345,0,0,'O','N','2526',3056,0,'2025-11-26','2026-02-25',3137,0,3056,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:29:00','0000-00-00','','','','N','19:29:00','20:03:42','','','N','Y',NULL,'O','N','L17','','0000-00-00 00:00:00','4','19:29:32',0,'','drashti','2025-11-26 19:29:32','drarchit','2025-11-26 20:03:42'),(4346,0,0,'O','N','2526',3057,0,'2025-11-26','2026-02-25',3138,0,3057,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:47:00','0000-00-00','','','','N','19:47:00','20:07:30','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','4','19:47:07',0,'','drashti','2025-11-26 19:47:07','drarchit','2025-11-26 20:07:30'),(4347,0,0,'O','N','2526',3058,0,'2025-11-26','2026-02-25',3139,0,3058,'N','','N','','','NC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:52:00','0000-00-00','','','','N','19:52:00','20:15:45','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','4','19:53:17',0,'','janvi','2025-11-26 19:53:17','drarchit','2025-11-26 20:15:45'),(4348,0,0,'O','N','2526',3059,0,'2025-11-26','2026-02-25',3140,0,3059,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:55:00','0000-00-00','','','','N','19:55:00','20:20:10','','','N','Y',NULL,'O','N','L18','','0000-00-00 00:00:00','4','19:55:15',0,'','drashti','2025-11-26 19:55:15','drarchit','2025-11-26 20:20:10'),(4349,0,0,'I','N','2526',0,205,'2025-11-26','2026-02-25',3141,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:30:00','2025-11-27','','7','mo','N','20:30:00','09:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-26 20:49:12','mo','2025-11-27 09:46:02'),(4350,0,0,'I','N','2526',0,206,'2025-11-26','2026-02-25',3142,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:40:00','2025-11-27','','1','mo','N','20:40:00','13:40:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-26 21:01:26','mo','2025-11-27 13:47:06'),(4351,0,0,'I','N','2526',0,207,'2025-11-26','2026-02-25',3143,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','21:20:00','2025-11-29','','1','mo','N','21:20:00','10:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-26 21:30:29','mo','2025-11-29 10:23:42'),(4352,0,0,'O','N','2526',3060,0,'2025-11-27','2026-02-26',3144,0,3060,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:45:00','0000-00-00','','','','N','08:45:00','00:00:00','','','N','N',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','11:27:57',0,'','reception','2025-11-27 08:45:37','','0000-00-00 00:00:00'),(4353,0,0,'O','N','2526',3061,0,'2025-11-27','2026-02-26',3145,0,3061,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:48:00','0000-00-00','','','','N','08:48:00','00:00:00','','','N','N',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','11:27:57',0,'','reception','2025-11-27 08:48:30','','0000-00-00 00:00:00'),(4354,0,0,'O','N','2526',3062,0,'2025-11-27','2026-02-26',3146,0,3062,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:50:00','0000-00-00','','','','N','08:50:00','19:22:59','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','5','08:50:28',0,'','reception','2025-11-27 08:50:28','drjayant','2025-11-27 19:22:59'),(4355,0,0,'O','N','2526',3063,0,'2025-11-27','2026-02-26',3147,0,3063,'N','','N','','','ER','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:52:00','0000-00-00','','','','N','08:52:00','19:10:22','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','6','08:52:49',0,'','reception','2025-11-27 08:52:49','drsagar','2025-11-27 19:10:22'),(4356,0,0,'O','N','2526',3064,0,'2025-11-27','2026-02-26',3148,0,3064,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:13:00','0000-00-00','','','','N','09:13:00','11:06:50','','','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','09:13:19',0,'','reception','2025-11-27 09:13:19','darshan','2025-11-27 11:06:50'),(4357,0,0,'I','N','2526',0,208,'2025-11-27','2026-02-26',3149,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','03:00:00','2025-11-27','','1','mo','N','03:00:00','12:05:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-27 09:34:15','mo','2025-11-27 12:37:06'),(4358,0,0,'O','N','2526',3065,0,'2025-11-27','2026-02-26',3150,0,3065,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:43:00','0000-00-00','','','','N','09:43:00','11:35:22','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','4','11:27:57',0,'','drashti','2025-11-27 09:43:47','drarchit','2025-11-27 11:35:22'),(4359,0,0,'I','N','2526',0,209,'2025-11-27','2026-02-26',3151,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','02:00:00','2025-11-30','','1','mo','N','02:00:00','13:50:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-27 09:44:06','mo','2025-11-30 15:14:06'),(4360,0,0,'O','N','2526',1854,0,'2025-11-27','0000-00-00',1900,0,1854,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:48:00','0000-00-00','','','','N','09:48:00','10:53:58','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','09:48:24',0,'','reception','2025-11-27 09:48:24','darshan','2025-11-27 10:53:58'),(4361,0,0,'O','N','2526',3066,0,'2025-11-27','2026-02-26',3152,0,3066,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:53:00','0000-00-00','','','','N','09:53:00','11:48:01','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','09:53:29',0,'','reception','2025-11-27 09:53:29','darshan','2025-11-27 11:48:01'),(4362,0,0,'O','N','2526',2563,0,'2025-11-27','0000-00-00',2623,0,2563,'N','','N','','','FOLLOWUP','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:55:00','0000-00-00','','','','N','09:55:00','10:49:17','','','N','Y',NULL,'O','O','E02','','0000-00-00 00:00:00','2','09:55:02',0,'','drashti','2025-11-27 09:55:02','darshan','2025-11-27 10:49:17'),(4363,0,0,'O','N','2526',3067,0,'2025-11-27','2026-02-26',3153,0,3067,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:58:00','0000-00-00','','','','N','09:58:00','00:00:00','','','N','N',NULL,'O','N','Z05','','0000-00-00 00:00:00','3','09:58:34',0,'','reception','2025-11-27 09:58:34','','0000-00-00 00:00:00'),(4364,0,0,'O','N','2526',3054,0,'2025-11-27','0000-00-00',3135,0,3054,'N','','N','','','NV','','N','D06','','N',116,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:03:00','0000-00-00','','','','N','10:03:00','13:55:56','','N','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','2','10:03:44',0,'','reception','2025-11-27 10:03:44','darshan','2025-11-27 13:55:56'),(4365,0,0,'O','N','2526',1471,0,'2025-11-27','0000-00-00',1512,0,1471,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:07:00','0000-00-00','','','','N','10:07:00','10:57:52','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:07:33',0,'','reception','2025-11-27 10:07:33','darshan','2025-11-27 10:57:52'),(4366,0,0,'O','N','2526',3068,0,'2025-11-27','2026-02-26',3154,0,3068,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:14:00','0000-00-00','','','','N','10:14:00','00:00:00','','','N','N',NULL,'O','N','Z07','','0000-00-00 00:00:00','3','10:14:45',0,'','janvi','2025-11-27 10:14:45','janvi','2025-11-27 10:21:37'),(4367,0,0,'O','N','2526',3069,0,'2025-11-27','2026-02-26',3155,0,3069,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:17:00','0000-00-00','','','','N','10:17:00','12:19:59','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','4','11:27:57',0,'','drashti','2025-11-27 10:17:12','drarchit','2025-11-27 12:19:59'),(4368,0,0,'O','N','2526',3070,0,'2025-11-27','2026-02-26',3156,0,3070,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:19:00','0000-00-00','','','','N','10:19:00','12:13:45','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','10:19:52',0,'','reception','2025-11-27 10:19:52','darshan','2025-11-27 12:13:45'),(4369,0,0,'O','N','2526',2889,0,'2025-11-27','0000-00-00',2966,0,2889,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','11:38:20','','','N','Y',NULL,'O','O','G02','','0000-00-00 00:00:00','4','11:27:57',0,'','drashti','2025-11-27 10:33:45','drarchit','2025-11-27 11:38:20'),(4370,0,0,'O','N','2526',3071,0,'2025-11-27','2026-02-26',3157,0,3071,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:35:00','0000-00-00','','','','N','10:35:00','12:18:56','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','2','10:35:47',0,'','reception','2025-11-27 10:35:47','darshan','2025-11-27 12:18:56'),(4371,0,0,'O','N','2526',3072,0,'2025-11-27','2026-02-26',3158,0,3072,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:36:00','0000-00-00','','','','N','10:36:00','00:00:00','','','N','N',NULL,'O','N','Z09','','0000-00-00 00:00:00','3','10:37:19',0,'','janvi','2025-11-27 10:37:19','','0000-00-00 00:00:00'),(4372,0,0,'O','N','2526',3073,0,'2025-11-27','2026-02-26',3159,0,3073,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','12:25:19','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','2','10:37:36',0,'','reception','2025-11-27 10:37:36','darshan','2025-11-27 12:25:19'),(4373,0,0,'O','N','2526',3074,0,'2025-11-27','2026-02-26',3160,0,3074,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','14:18:33','','N','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','2','10:38:24',0,'','drashti','2025-11-27 10:38:24','darshan','2025-11-27 14:18:33'),(4374,0,0,'O','N','2526',3075,0,'2025-11-27','2026-02-26',3161,0,3075,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','13:54:55','','N','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','10:39:24',0,'','reception','2025-11-27 10:39:24','darshan','2025-11-27 13:54:55'),(4375,0,0,'O','N','2526',3076,0,'2025-11-27','2026-02-26',3162,0,3076,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','','N','10:40:00','18:21:43','','N','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','11:27:57',0,'','drashti','2025-11-27 10:40:59','drarchit','2025-11-27 18:21:43'),(4376,0,0,'O','N','2526',3077,0,'2025-11-27','2026-02-26',3163,0,3077,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:41:00','0000-00-00','','','','N','10:41:00','18:15:23','','N','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','4','11:27:57',0,'','reception','2025-11-27 10:41:31','drarchit','2025-11-27 18:15:23'),(4377,0,0,'O','N','2526',3078,0,'2025-11-27','2026-02-26',3164,0,3078,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:42:00','0000-00-00','','','','N','10:42:00','18:18:04','','N','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','4','11:27:57',0,'','drashti','2025-11-27 10:42:50','drarchit','2025-11-27 18:18:04'),(4378,0,0,'O','N','2526',3079,0,'2025-11-27','2026-02-26',3165,0,3079,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','13:00:08','','N','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','2','10:44:50',0,'','reception','2025-11-27 10:44:50','darshan','2025-11-27 13:00:08'),(4379,0,0,'O','N','2526',3080,0,'2025-11-27','2026-02-26',3166,0,3080,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','13:26:27','','N','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:48:41',0,'','reception','2025-11-27 10:48:41','darshan','2025-11-27 13:26:27'),(4380,0,0,'O','N','2526',3081,0,'2025-11-27','2026-02-26',3167,0,3081,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:50:00','0000-00-00','','','','N','10:50:00','19:48:43','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','5','10:50:34',0,'','drashti','2025-11-27 10:50:34','drjayant','2025-11-27 19:48:43'),(4381,0,0,'O','N','2526',2115,0,'2025-11-27','0000-00-00',2167,0,2115,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','00:00:00','','','N','N',NULL,'O','O','Z14','','0000-00-00 00:00:00','3','10:51:31',0,'','reception','2025-11-27 10:51:31','','0000-00-00 00:00:00'),(4382,0,0,'O','N','2526',1070,0,'2025-11-27','0000-00-00',1110,0,1070,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','00:00:00','','','N','N',NULL,'O','O','Z15','','0000-00-00 00:00:00','3','10:53:52',0,'','janvi','2025-11-27 10:53:52','','0000-00-00 00:00:00'),(4383,0,0,'O','N','2526',3021,0,'2025-11-27','0000-00-00',3101,0,3021,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','00:00:00','','','N','N',NULL,'O','O','Z16','','0000-00-00 00:00:00','3','10:54:49',0,'','janvi','2025-11-27 10:54:49','','0000-00-00 00:00:00'),(4384,0,0,'O','N','2526',3082,0,'2025-11-27','2026-02-26',3168,0,3082,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','00:00:00','','','N','N',NULL,'O','N','Z17','','0000-00-00 00:00:00','5','11:03:35',0,'','priyanshi','2025-11-27 11:03:35','','0000-00-00 00:00:00'),(4385,0,0,'O','N','2526',3083,0,'2025-11-27','2026-02-26',3169,0,3083,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','11:59:46','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','2','11:05:51',0,'','reception','2025-11-27 11:05:51','darshan','2025-11-27 11:59:46'),(4386,0,0,'O','N','2526',2566,0,'2025-11-27','0000-00-00',2626,0,2566,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','11:54:44','','','N','Y',NULL,'O','O','H05','','0000-00-00 00:00:00','2','11:14:01',0,'','reception','2025-11-27 11:14:01','darshan','2025-11-27 11:54:44'),(4387,0,0,'O','N','2526',3084,0,'2025-11-27','2026-02-26',3170,0,3084,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','12:46:07','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','11:16:55',0,'','reception','2025-11-27 11:16:55','darshan','2025-11-27 12:46:07'),(4388,0,0,'O','N','2526',1378,0,'2025-11-27','0000-00-00',1419,0,1378,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','11:44:02','','','N','Y',NULL,'O','O','G05','','0000-00-00 00:00:00','2','11:19:48',0,'','reception','2025-11-27 11:19:48','darshan','2025-11-27 11:44:02'),(4389,0,0,'O','N','2526',3085,0,'2025-11-27','2026-02-26',3171,0,3085,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','11:50:45','','','N','Y',NULL,'O','N','G06','','0000-00-00 00:00:00','2','11:21:18',0,'','reception','2025-11-27 11:21:18','darshan','2025-11-27 11:50:45'),(4390,0,0,'O','N','2526',3086,0,'2025-11-27','2026-02-26',3172,0,3086,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','19:49:12','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','5','11:24:15',0,'','janvi','2025-11-27 11:24:15','drjayant','2025-11-27 19:49:12'),(4391,0,0,'O','N','2526',3087,0,'2025-11-27','2026-02-26',3173,0,3087,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','00:00:00','','','N','N',NULL,'O','N','Z20','','0000-00-00 00:00:00','5','11:28:26',0,'','reception','2025-11-27 11:28:26','','0000-00-00 00:00:00'),(4392,0,0,'O','N','2526',49,0,'2025-11-27','0000-00-00',55,0,49,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','13:06:12','','','N','Y',NULL,'O','O','Z21','','0000-00-00 00:00:00','2','11:32:02',0,'','reception','2025-11-27 11:32:02','darshan','2025-11-27 13:06:12'),(4393,0,0,'O','N','2526',1653,0,'2025-11-27','0000-00-00',1698,0,1653,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','13:20:42','','','N','Y',NULL,'O','O','Z22','','0000-00-00 00:00:00','2','11:44:02',0,'','priyanshi','2025-11-27 11:36:28','darshan','2025-11-27 13:20:42'),(4394,0,0,'O','N','2526',2543,0,'2025-11-27','0000-00-00',2600,0,2543,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','00:00:00','','','N','N',NULL,'O','O','Z23','','0000-00-00 00:00:00','3','11:42:09',0,'','janvi','2025-11-27 11:42:09','','0000-00-00 00:00:00'),(4395,0,0,'O','N','2526',2471,0,'2025-11-27','0000-00-00',2529,0,2471,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','18:26:48','','','N','Y',NULL,'O','O','Z24','','0000-00-00 00:00:00','7','11:48:47',0,'','manshi','2025-11-27 11:48:47','drridham','2025-11-27 18:26:48'),(4396,0,0,'O','N','2526',3088,0,'2025-11-27','2026-02-26',3174,0,3088,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','13:33:13','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','2','12:02:12',0,'','reception','2025-11-27 12:02:12','darshan','2025-11-27 13:33:13'),(4397,0,0,'O','N','2526',3089,0,'2025-11-27','2026-02-26',3175,0,3089,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','13:37:05','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','2','12:02:46',0,'','priyanshi','2025-11-27 12:02:46','darshan','2025-11-27 13:37:05'),(4398,0,0,'O','N','2526',3090,0,'2025-11-27','2026-02-26',3176,0,3090,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:10:00','0000-00-00','','','','N','12:10:00','13:04:04','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','5','12:11:40',0,'','janvi','2025-11-27 12:11:40','drjayant','2025-11-27 13:04:04'),(4399,0,0,'O','N','2526',3091,0,'2025-11-27','2026-02-26',3177,0,3091,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:18:00','0000-00-00','','','','N','12:18:00','14:27:00','','N','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:18:32',0,'','reception','2025-11-27 12:18:32','darshan','2025-11-27 14:27:00'),(4400,0,0,'O','N','2526',3092,0,'2025-11-27','2026-02-26',2919,0,3092,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','13:00:13','','N','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','4','12:21:34',0,'','reception','2025-11-27 12:21:34','drarchit','2025-11-27 13:00:13'),(4401,0,0,'O','N','2526',3093,0,'2025-11-27','2026-02-26',3178,0,3093,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','00:00:00','','','N','N',NULL,'O','N','Z28','','0000-00-00 00:00:00','5','12:35:57',0,'','priyanshi','2025-11-27 12:35:56','','0000-00-00 00:00:00'),(4402,0,0,'O','N','2526',632,0,'2025-11-27','0000-00-00',662,0,632,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:46:00','0000-00-00','','','','N','12:46:00','13:13:27','','','N','Y',NULL,'O','O','J03','','0000-00-00 00:00:00','2','12:47:00',0,'','reception','2025-11-27 12:47:00','darshan','2025-11-27 13:13:27'),(4403,0,0,'O','N','2526',1883,0,'2025-11-27','0000-00-00',1930,0,1883,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:49:00','0000-00-00','','','','N','12:49:00','00:00:00','','','N','N',NULL,'O','O','Z29','','0000-00-00 00:00:00','5','12:49:37',0,'','priyanshi','2025-11-27 12:49:37','','0000-00-00 00:00:00'),(4404,0,0,'O','N','2526',3094,0,'2025-11-27','2026-02-26',3179,0,3094,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:14:00','0000-00-00','','','','N','13:14:00','14:08:37','','','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','2','13:14:47',0,'','reception','2025-11-27 13:14:47','darshan','2025-11-27 14:08:37'),(4405,0,0,'O','N','2526',3095,0,'2025-11-27','2026-02-26',3180,0,3095,'N','','N','','','NV','','N','D06','','N',230,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:20:00','0000-00-00','','','','N','13:20:00','14:35:22','','N','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','2','13:20:15',0,'','reception','2025-11-27 13:20:15','darshan','2025-11-27 14:35:22'),(4406,0,0,'O','N','2526',3096,0,'2025-11-27','2026-02-26',3181,0,3096,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:30:00','0000-00-00','','','','N','14:30:00','13:14:04','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','2','14:30:31',0,'','reception','2025-11-27 14:30:31','darshan','2025-11-28 13:14:03'),(4407,0,0,'O','N','2526',3028,0,'2025-11-27','0000-00-00',3108,0,3028,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:56:00','0000-00-00','','','','N','14:56:00','18:15:38','','','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','4','14:56:32',0,'','reception','2025-11-27 14:56:32','drarchit','2025-11-27 18:15:38'),(4408,0,0,'O','N','2526',3028,0,'2025-11-27','0000-00-00',3108,0,3028,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:55:00','0000-00-00','','','','N','14:55:00','18:15:48','','','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','4','14:58:06',0,'','drashti','2025-11-27 14:58:06','drarchit','2025-11-27 18:15:48'),(4409,0,0,'I','N','2526',0,210,'2025-11-27','2026-02-26',3182,0,0,'N','','N','','','','N','N','D02','','N',0,'','78',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:00:00','2025-11-29','','1','mo','N','15:00:00','09:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-27 15:21:54','mo','2025-11-29 11:57:26'),(4410,0,0,'O','N','2526',47,0,'2025-11-27','0000-00-00',53,0,47,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:14:00','0000-00-00','','','','N','16:14:00','00:00:00','','','N','N',NULL,'O','O','Z33','','0000-00-00 00:00:00','3','16:14:48',0,'','reception','2025-11-27 16:14:48','','0000-00-00 00:00:00'),(4411,0,0,'O','N','2526',2615,0,'2025-11-27','0000-00-00',2680,0,2615,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:26:00','0000-00-00','','','','N','16:26:00','17:13:43','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','16:26:03',0,'','reception','2025-11-27 16:26:03','darshan','2025-11-27 17:13:43'),(4412,0,0,'O','N','2526',1644,0,'2025-11-27','0000-00-00',1689,0,1644,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:26:00','0000-00-00','','','','N','16:26:00','17:20:04','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','16:26:49',0,'','drashti','2025-11-27 16:26:49','darshan','2025-11-27 17:20:04'),(4413,0,0,'O','N','2526',3097,0,'2025-11-27','2026-02-26',3183,0,3097,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:37:00','0000-00-00','','','','N','16:37:00','18:16:01','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','4','16:37:51',0,'','drashti','2025-11-27 16:37:51','drarchit','2025-11-27 18:16:01'),(4414,0,0,'O','N','2526',1032,0,'2025-11-27','0000-00-00',1066,0,1032,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:44:00','0000-00-00','','','','N','16:44:00','17:24:02','','','N','Y',NULL,'O','O','L03','','0000-00-00 00:00:00','2','16:44:40',0,'','reception','2025-11-27 16:44:40','darshan','2025-11-27 17:24:02'),(4415,0,0,'O','N','2526',3098,0,'2025-11-27','2026-02-26',3184,0,3098,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:53:00','0000-00-00','','','','N','16:53:00','00:00:00','','','N','N',NULL,'O','N','Z35','','0000-00-00 00:00:00','5','18:21:31',0,'','drashti','2025-11-27 16:53:57','','0000-00-00 00:00:00'),(4416,0,0,'O','N','2526',3099,0,'2025-11-27','2026-02-26',3185,0,3099,'N','','N','','','ER','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:01:00','0000-00-00','','','','N','17:01:00','00:00:00','','','N','N',NULL,'O','N','Z36','','0000-00-00 00:00:00','3','17:02:02',0,'','reception','2025-11-27 17:02:02','','0000-00-00 00:00:00'),(4417,0,0,'I','N','2526',0,211,'2025-11-27','2026-02-26',3186,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:00:00','2025-11-29','','1','mo','N','17:00:00','11:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-27 17:03:05','mo','2025-11-29 12:26:39'),(4418,0,0,'O','N','2526',3100,0,'2025-11-27','2026-02-26',3187,0,3100,'N','','N','','','','','N','D14','','N',77,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:03:00','0000-00-00','','','','N','17:03:00','18:28:18','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','7','17:03:32',0,'','manshi','2025-11-27 17:03:32','drridham','2025-11-27 18:28:18'),(4419,0,0,'O','N','2526',2604,0,'2025-11-27','0000-00-00',2666,0,2604,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:12:00','0000-00-00','','','','N','17:12:00','17:30:02','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','17:12:12',0,'','reception','2025-11-27 17:12:12','darshan','2025-11-27 17:30:02'),(4420,0,0,'O','N','2526',3101,0,'2025-11-27','2026-02-26',3188,0,3101,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:26:00','0000-00-00','','','','N','17:26:00','17:41:35','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:26:22',0,'','reception','2025-11-27 17:26:22','darshan','2025-11-27 17:41:35'),(4421,0,0,'O','N','2526',3102,0,'2025-11-27','2026-02-26',3189,0,3102,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:34:00','0000-00-00','','','','N','17:34:00','17:52:34','','','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:34:10',0,'','reception','2025-11-27 17:34:10','darshan','2025-11-27 17:52:34'),(4422,0,0,'O','N','2526',3103,0,'2025-11-27','2026-02-26',3190,0,3103,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:39:00','0000-00-00','','','','N','17:39:00','18:43:25','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','4','17:39:40',0,'','reception','2025-11-27 17:39:40','drarchit','2025-11-27 18:43:25'),(4423,0,0,'O','N','2526',2528,0,'2025-11-27','0000-00-00',1616,0,2528,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:39:00','0000-00-00','','','','N','17:39:00','17:49:37','','','N','Y',NULL,'O','O','Z38','','0000-00-00 00:00:00','6','17:39:55',0,'','manshi','2025-11-27 17:39:55','drsagar','2025-11-27 17:49:37'),(4424,0,0,'O','N','2526',1976,0,'2025-11-27','0000-00-00',2024,0,1976,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','00:00:00','','','N','N',NULL,'O','O','Z39','','0000-00-00 00:00:00','3','17:42:28',0,'','janvi','2025-11-27 17:42:28','','0000-00-00 00:00:00'),(4425,0,0,'O','N','2526',3104,0,'2025-11-27','2026-02-26',3191,0,3104,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:43:00','0000-00-00','','','','N','17:43:00','18:29:11','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','5','18:21:31',0,'','drashti','2025-11-27 17:43:45','drjayant','2025-11-27 18:29:11'),(4426,0,0,'O','N','2526',3105,0,'2025-11-27','2026-02-26',3192,0,3105,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:44:00','0000-00-00','','','','N','17:44:00','18:24:12','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','5','18:21:31',0,'','drashti','2025-11-27 17:44:36','drjayant','2025-11-27 18:24:12'),(4427,0,0,'O','N','2526',2710,0,'2025-11-27','0000-00-00',2781,0,2710,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','17:57:21','','','N','Y',NULL,'O','O','Z42','','0000-00-00 00:00:00','6','17:50:07',0,'','manshi','2025-11-27 17:50:07','drsagar','2025-11-27 17:57:21'),(4428,0,0,'O','N','2526',751,0,'2025-11-27','0000-00-00',783,0,751,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','18:10:09','','','N','Y',NULL,'O','O','L08','','0000-00-00 00:00:00','2','17:52:06',0,'','reception','2025-11-27 17:52:06','darshan','2025-11-27 18:10:09'),(4429,0,0,'O','N','2526',1540,0,'2025-11-27','0000-00-00',1583,0,1540,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','18:21:44','','','N','Y',NULL,'O','O','L09','','0000-00-00 00:00:00','2','17:59:31',0,'','reception','2025-11-27 17:59:31','darshan','2025-11-27 18:21:44'),(4430,0,0,'O','N','2526',1968,0,'2025-11-27','0000-00-00',2016,0,1968,'N','','N','','','','','N','D02','','N',137,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:01:00','0000-00-00','','','','N','18:01:00','00:00:00','','','N','N',NULL,'O','O','Z43','','0000-00-00 00:00:00','3','18:01:53',0,'','reception','2025-11-27 18:01:53','','0000-00-00 00:00:00'),(4431,0,0,'O','N','2526',3106,0,'2025-11-27','2026-02-26',3193,0,3106,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','18:38:07','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','4','18:03:27',0,'','janvi','2025-11-27 18:03:27','drarchit','2025-11-27 18:38:07'),(4432,0,0,'O','N','2526',2521,0,'2025-11-27','0000-00-00',2579,0,2521,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','00:00:00','','','N','N',NULL,'O','O','Z44','','0000-00-00 00:00:00','3','18:07:50',0,'','reception','2025-11-27 18:07:50','','0000-00-00 00:00:00'),(4433,0,0,'O','N','2526',3107,0,'2025-11-27','2026-02-26',3194,0,3107,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','18:23:08','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','6','18:07:58',0,'','manshi','2025-11-27 18:07:58','drsagar','2025-11-27 18:23:08'),(4434,0,0,'O','N','2526',3108,0,'2025-11-27','2026-02-26',3195,0,3108,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','18:29:51','','','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','4','18:08:25',0,'','janvi','2025-11-27 18:08:25','drarchit','2025-11-27 18:29:51'),(4435,0,0,'O','N','2526',2805,0,'2025-11-27','0000-00-00',2874,0,2805,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:46:26','','','N','Y',NULL,'O','O','Z46','','0000-00-00 00:00:00','4','18:09:54',0,'','drashti','2025-11-27 18:09:54','drarchit','2025-11-27 18:46:26'),(4436,0,0,'O','N','2526',3109,0,'2025-11-27','2026-02-26',3196,0,3109,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','00:00:00','','Y','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','2','18:12:30',0,'','reception','2025-11-27 18:12:30','darshan','2025-11-27 18:41:19'),(4437,0,0,'O','N','2526',3110,0,'2025-11-27','2026-02-26',3197,0,3110,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','18:41:35','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','6','18:14:32',0,'','manshi','2025-11-27 18:14:32','drsagar','2025-11-27 18:41:35'),(4438,0,0,'O','N','2526',3111,0,'2025-11-27','2026-02-26',3198,0,3111,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','18:46:39','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','6','18:16:02',0,'','manshi','2025-11-27 18:16:02','drsagar','2025-11-27 18:46:39'),(4439,0,0,'O','N','2526',2245,0,'2025-11-27','0000-00-00',2301,0,2245,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','18:46:54','','','N','Y',NULL,'O','O','Z49','','0000-00-00 00:00:00','6','18:16:51',0,'','manshi','2025-11-27 18:16:51','drsagar','2025-11-27 18:46:54'),(4440,0,0,'O','N','2526',3112,0,'2025-11-27','2026-02-26',3199,0,3112,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:17:00','0000-00-00','','','','N','18:17:00','00:00:00','','','N','N',NULL,'O','N','Z50','','0000-00-00 00:00:00','3','18:17:05',0,'','reception','2025-11-27 18:17:05','','0000-00-00 00:00:00'),(4441,0,0,'O','N','2526',2879,0,'2025-11-27','0000-00-00',2954,0,2879,'N','','N','','','','','N','D02','','N',179,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','00:00:00','','','N','N',NULL,'O','O','Z51','','0000-00-00 00:00:00','3','18:19:06',0,'','janvi','2025-11-27 18:19:06','','0000-00-00 00:00:00'),(4442,0,0,'O','N','2526',3113,0,'2025-11-27','2026-02-26',3200,0,3113,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','18:58:23','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','6','18:19:56',0,'','manshi','2025-11-27 18:19:56','drsagar','2025-11-27 18:58:23'),(4443,0,0,'O','N','2526',2247,0,'2025-11-27','0000-00-00',2304,0,2247,'N','','N','','','','','N','D02','','N',160,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:20:00','0000-00-00','','','','N','18:20:00','00:00:00','','','N','N',NULL,'O','O','Z53','','0000-00-00 00:00:00','3','18:20:22',0,'','reception','2025-11-27 18:20:22','','0000-00-00 00:00:00'),(4444,0,0,'O','N','2526',270,0,'2025-11-27','0000-00-00',286,0,270,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:22:00','0000-00-00','','','','N','18:22:00','00:00:00','','','N','N',NULL,'O','O','Z54','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-11-27 18:22:47','','0000-00-00 00:00:00'),(4445,0,0,'O','N','2526',3114,0,'2025-11-27','2026-02-26',2933,0,3114,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:25:00','0000-00-00','','','','N','18:25:00','19:06:03','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','5','18:25:08',0,'','drashti','2025-11-27 18:25:08','drjayant','2025-11-27 19:06:03'),(4446,0,0,'O','N','2526',3115,0,'2025-11-27','2026-02-26',3201,0,3115,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','00:00:00','','Y','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','4','18:26:59',0,'','reception','2025-11-27 18:26:59','drarchit','2025-11-27 18:50:35'),(4447,0,0,'O','N','2526',3116,0,'2025-11-27','2026-02-26',3202,0,3116,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','19:49:59','','N','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','2','18:29:02',0,'','reception','2025-11-27 18:29:02','darshan','2025-11-28 19:49:59'),(4448,0,0,'O','N','2526',2817,0,'2025-11-27','0000-00-00',2886,0,2817,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','19:03:32','','','N','Y',NULL,'O','O','Z56','','0000-00-00 00:00:00','6','18:29:52',0,'','manshi','2025-11-27 18:29:52','drsagar','2025-11-27 19:03:32'),(4449,0,0,'O','N','2526',3117,0,'2025-11-27','2026-02-26',3203,0,3117,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','20:23:57','','N','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','18:30:25',0,'','drashti','2025-11-27 18:30:25','drarchit','2025-11-27 20:23:57'),(4450,0,0,'O','N','2526',3118,0,'2025-11-27','2026-02-26',3204,0,3118,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','18:41:59','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','5','18:31:43',0,'','janvi','2025-11-27 18:31:43','drjayant','2025-11-27 18:41:59'),(4451,0,0,'O','N','2526',1071,0,'2025-11-27','0000-00-00',1111,0,1071,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','18:55:21','','','N','Y',NULL,'O','O','L16','','0000-00-00 00:00:00','4','18:32:26',0,'','drashti','2025-11-27 18:32:26','drarchit','2025-11-27 18:55:21'),(4452,0,0,'O','N','2526',3119,0,'2025-11-27','2026-02-26',3205,0,3119,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','19:00:53','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','5','18:34:30',0,'','drashti','2025-11-27 18:34:30','drjayant','2025-11-27 19:00:53'),(4453,0,0,'O','N','2526',2090,0,'2025-11-27','0000-00-00',2144,0,2090,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','18:58:27','','','N','Y',NULL,'O','O','Z59','','0000-00-00 00:00:00','5','18:36:16',0,'','drashti','2025-11-27 18:36:16','drjayant','2025-11-27 18:58:27'),(4454,0,0,'O','N','2526',494,0,'2025-11-27','0000-00-00',519,0,494,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:38:00','0000-00-00','','','','N','18:38:00','18:54:13','','','N','Y',NULL,'O','O','L17','','0000-00-00 00:00:00','4','18:38:22',0,'','drashti','2025-11-27 18:38:22','drarchit','2025-11-27 18:54:13'),(4455,0,0,'O','N','2526',3120,0,'2025-11-27','2026-02-26',3206,0,3120,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','19:02:23','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','4','18:44:51',0,'','janvi','2025-11-27 18:44:51','drarchit','2025-11-27 19:02:23'),(4456,0,0,'O','N','2526',2118,0,'2025-11-27','0000-00-00',1763,0,2118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','00:00:00','','','N','N',NULL,'O','O','Z61','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-27 18:47:10','','0000-00-00 00:00:00'),(4457,0,0,'O','N','2526',3121,0,'2025-11-27','2026-02-26',3207,0,3121,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','19:12:22','','','N','Y',NULL,'O','N','L18','','0000-00-00 00:00:00','2','18:55:09',0,'','janvi','2025-11-27 18:55:09','darshan','2025-11-27 19:12:22'),(4458,0,0,'O','N','2526',3122,0,'2025-11-27','2026-02-26',3208,0,3122,'N','','N','','','','','N','D02','','N',4,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','00:00:00','','','N','N',NULL,'O','N','Z62','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-27 18:57:01','','0000-00-00 00:00:00'),(4459,0,0,'O','N','2526',3123,0,'2025-11-27','2026-02-26',3209,0,3123,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:00:00','0000-00-00','','','','N','19:00:00','19:10:49','','','N','Y',NULL,'O','N','L19','','0000-00-00 00:00:00','4','19:00:24',0,'','reception','2025-11-27 19:00:24','drarchit','2025-11-27 19:10:49'),(4460,0,0,'O','N','2526',3124,0,'2025-11-27','2026-02-26',3210,0,3124,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:00:00','0000-00-00','','','','N','19:00:00','19:05:31','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','5','19:00:54',0,'','drashti','2025-11-27 19:00:54','drjayant','2025-11-27 19:05:31'),(4461,0,0,'O','N','2526',565,0,'2025-11-27','0000-00-00',592,0,565,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:01:00','0000-00-00','','','','N','19:01:00','19:21:32','','','N','Y',NULL,'O','O','L20','','0000-00-00 00:00:00','2','19:01:34',0,'','reception','2025-11-27 19:01:34','darshan','2025-11-27 19:21:32'),(4462,0,0,'O','N','2526',435,0,'2025-11-27','0000-00-00',458,0,435,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:05:00','0000-00-00','','','','N','19:05:00','19:13:29','','','N','Y',NULL,'O','O','Z64','','0000-00-00 00:00:00','6','19:05:07',0,'','manshi','2025-11-27 19:05:07','drsagar','2025-11-27 19:13:29'),(4463,0,0,'O','N','2526',3125,0,'2025-11-27','2026-02-26',3211,0,3125,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:08:00','0000-00-00','','','','N','19:08:00','19:27:04','','','N','Y',NULL,'O','N','L21','','0000-00-00 00:00:00','4','19:08:12',0,'','drashti','2025-11-27 19:08:12','drarchit','2025-11-27 19:27:04'),(4464,0,0,'O','N','2526',3119,0,'2025-11-27','0000-00-00',3205,0,3119,'N','','N','','','INJ','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:09:00','0000-00-00','','','','N','19:09:00','19:47:37','','','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','5','19:09:35',0,'','reception','2025-11-27 19:09:35','drjayant','2025-11-27 19:47:37'),(4465,0,0,'O','N','2526',1288,0,'2025-11-27','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:25:00','0000-00-00','','','','N','19:25:00','00:00:00','','','N','N',NULL,'O','O','Z65','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-11-27 19:25:47','','0000-00-00 00:00:00'),(4466,0,0,'O','N','2526',3126,0,'2025-11-27','2026-02-26',3212,0,3126,'N','','N','','','FOLLOWUP C','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:13:00','0000-00-00','','','','N','20:13:00','20:29:58','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','4','20:13:58',0,'','drashti','2025-11-27 20:13:58','drarchit','2025-11-27 20:29:58'),(4467,0,0,'O','N','2526',1375,0,'2025-11-27','0000-00-00',1416,0,1375,'N','','N','','','FOLLOWUP C','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:38:00','0000-00-00','','','','N','20:38:00','00:00:00','','','N','Y',NULL,'O','O','Z67','','0000-00-00 00:00:00','4','20:38:42',0,'','drashti','2025-11-27 20:38:42','','0000-00-00 00:00:00'),(4468,0,0,'O','N','2526',3127,0,'2025-11-27','2026-02-26',3213,0,3127,'N','','N','','','EMR ENT','Y','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:41:00','0000-00-00','','','','N','20:41:00','00:00:00','','','N','N',NULL,'O','N','Z68','','0000-00-00 00:00:00','2','20:41:29',0,'','drashti','2025-11-27 20:41:29','','0000-00-00 00:00:00'),(4469,0,0,'I','N','2526',407,212,'2025-11-27','2026-02-26',429,0,407,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','23:00:00','2025-11-28','','5','mo','N','23:00:00','02:10:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-27 23:20:25','mo','2025-12-10 23:40:23'),(4470,0,0,'O','N','2526',3128,0,'2025-11-28','2026-02-27',3214,0,3128,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:49:00','0000-00-00','','','','N','08:49:00','11:15:40','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','08:49:16',0,'','reception','2025-11-28 08:49:16','drarchit','2025-11-28 11:15:40'),(4471,0,0,'O','N','2526',1375,0,'2025-11-28','0000-00-00',1416,0,1375,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:53:00','0000-00-00','','','','N','08:53:00','11:48:03','','N','N','Y',NULL,'O','O','Z02','','0000-00-00 00:00:00','4','08:53:26',0,'','reception','2025-11-28 08:53:26','drarchit','2025-11-28 11:48:03'),(4472,0,0,'O','N','2526',3129,0,'2025-11-28','2026-02-27',3215,0,3129,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:55:00','0000-00-00','','','','N','08:55:00','10:52:34','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','08:55:57',0,'','urvashi','2025-11-28 08:55:57','darshan','2025-11-28 10:52:34'),(4473,0,0,'O','N','2526',3130,0,'2025-11-28','2026-02-27',3216,0,3130,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:21:00','0000-00-00','','','','N','09:21:00','11:31:45','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','5','11:22:53',0,'','reception','2025-11-28 09:21:22','drjayant','2025-11-28 11:31:45'),(4474,0,0,'O','N','2526',10,0,'2025-11-28','0000-00-00',10,0,10,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:45:00','0000-00-00','','','','N','09:45:00','11:44:05','','','N','Y',NULL,'O','O','Z04','','0000-00-00 00:00:00','2','09:45:35',0,'','reception','2025-11-28 09:45:35','darshan','2025-11-28 11:44:05'),(4475,0,0,'O','N','2526',3131,0,'2025-11-28','2026-02-27',3217,0,3131,'N','','N','','','NV','','N','D06','','N',232,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:04:00','0000-00-00','','','','N','10:04:00','14:13:22','','N','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','2','10:04:33',0,'','reception','2025-11-28 10:04:33','darshan','2025-11-28 14:13:22'),(4476,0,0,'O','N','2526',3132,0,'2025-11-28','2026-02-27',3218,0,3132,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:06:00','0000-00-00','','','','N','10:06:00','11:09:01','','','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:06:31',0,'','reception','2025-11-28 10:06:31','darshan','2025-11-28 11:09:01'),(4477,0,0,'O','N','2526',2012,0,'2025-11-28','0000-00-00',2065,0,2012,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:06:00','0000-00-00','','','','N','10:06:00','10:55:39','','','N','Y',NULL,'O','O','E02','','0000-00-00 00:00:00','2','10:07:02',0,'','janvi','2025-11-28 10:07:02','darshan','2025-11-28 10:55:39'),(4478,0,0,'O','N','2526',3133,0,'2025-11-28','2026-02-27',3219,0,3133,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:13:00','0000-00-00','','','','N','10:13:00','11:37:54','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','6','10:13:31',0,'','manshi','2025-11-28 10:13:31','drsagar','2025-11-28 11:37:54'),(4479,0,0,'O','N','2526',3134,0,'2025-11-28','2026-02-27',3220,0,3134,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','0000-00-00','','','','N','10:15:00','12:01:08','','N','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','4','10:26:52',0,'','drashti','2025-11-28 10:15:29','drarchit','2025-11-28 12:01:08'),(4480,0,0,'O','N','2526',3135,0,'2025-11-28','2026-02-27',3221,0,3135,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','13:55:29','','N','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','10:16:40',0,'','reception','2025-11-28 10:16:40','darshan','2025-11-28 13:55:28'),(4481,0,0,'O','N','2526',3136,0,'2025-11-28','2026-02-27',3222,0,3136,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','14:18:19','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:28:14',0,'','reception','2025-11-28 10:28:14','darshan','2025-11-28 14:18:19'),(4482,0,0,'O','N','2526',2874,0,'2025-11-28','0000-00-00',2201,0,2874,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','11:51:44','','','N','Y',NULL,'O','O','Z08','','0000-00-00 00:00:00','3','10:29:09',0,'','janvi','2025-11-28 10:29:09','drpratapsinh','2025-11-28 11:51:44'),(4483,0,0,'O','N','2526',2768,0,'2025-11-28','0000-00-00',2837,0,2768,'N','','N','','','','','N','D02','','N',37,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:30:00','0000-00-00','','','','N','10:30:00','11:52:39','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','3','10:30:56',0,'','janvi','2025-11-28 10:30:56','drpratapsinh','2025-11-28 11:52:39'),(4484,0,0,'O','N','2526',3137,0,'2025-11-28','2026-02-27',3223,0,3137,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:31:00','0000-00-00','','','','N','10:31:00','11:50:46','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','4','10:32:14',0,'','janvi','2025-11-28 10:32:14','drarchit','2025-11-28 11:50:46'),(4485,0,0,'O','N','2526',2092,0,'2025-11-28','0000-00-00',2146,0,2092,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','','N','10:40:00','11:52:53','','','N','Y',NULL,'O','O','Z10','','0000-00-00 00:00:00','3','10:41:33',0,'','janvi','2025-11-28 10:41:33','drpratapsinh','2025-11-28 11:52:53'),(4486,0,0,'O','N','2526',3138,0,'2025-11-28','2026-02-27',3224,0,3138,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:42:00','0000-00-00','','','','N','10:42:00','00:00:00','','','N','N',NULL,'O','N','Z11','','0000-00-00 00:00:00','5','11:22:53',0,'','drashti','2025-11-28 10:42:13','','0000-00-00 00:00:00'),(4487,0,0,'O','N','2526',2290,0,'2025-11-28','0000-00-00',2347,0,2290,'N','','N','','','','','N','D02','','N',96,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','11:53:54','','','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','3','10:44:42',0,'','janvi','2025-11-28 10:44:42','drpratapsinh','2025-11-28 11:53:54'),(4488,0,0,'O','N','2526',1468,0,'2025-11-28','0000-00-00',1509,0,1468,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','12:19:27','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','2','10:46:03',0,'','reception','2025-11-28 10:46:03','darshan','2025-11-28 12:19:27'),(4489,0,0,'O','N','2526',3096,0,'2025-11-28','0000-00-00',3181,0,3096,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:49:00','0000-00-00','','','','N','10:49:00','13:24:06','','N','N','Y',NULL,'O','O','Z14','','0000-00-00 00:00:00','2','10:49:28',0,'','reception','2025-11-28 10:49:28','darshan','2025-11-28 13:24:06'),(4490,0,0,'O','N','2526',3021,0,'2025-11-28','0000-00-00',3101,0,3021,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','11:54:25','','','N','Y',NULL,'O','O','Z15','','0000-00-00 00:00:00','3','11:00:21',0,'','janvi','2025-11-28 11:00:21','drpratapsinh','2025-11-28 11:54:25'),(4491,0,0,'O','N','2526',2559,0,'2025-11-28','0000-00-00',2619,0,2559,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','11:49:12','','','N','Y',NULL,'O','O','G03','','0000-00-00 00:00:00','2','11:03:58',0,'','reception','2025-11-28 11:03:58','darshan','2025-11-28 11:49:12'),(4492,0,0,'O','N','2526',3139,0,'2025-11-28','2026-02-27',3225,0,3139,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','00:00:00','','','N','N',NULL,'O','N','Z16','','0000-00-00 00:00:00','5','11:22:53',0,'','janvi','2025-11-28 11:05:58','','0000-00-00 00:00:00'),(4493,0,0,'O','N','2526',3140,0,'2025-11-28','2026-02-27',3226,0,3140,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','19:06:12','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','5','11:22:53',0,'','reception','2025-11-28 11:06:45','drjayant','2025-11-28 19:06:12'),(4494,0,0,'O','N','2526',3141,0,'2025-11-28','2026-02-27',3227,0,3141,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','13:41:08','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','11:13:48',0,'','reception','2025-11-28 11:13:48','darshan','2025-11-28 13:41:08'),(4495,0,0,'O','N','2526',3142,0,'2025-11-28','2026-02-27',3228,0,3142,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','13:43:30','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','2','11:18:28',0,'','reception','2025-11-28 11:18:28','darshan','2025-11-28 13:43:30'),(4496,0,0,'O','N','2526',594,0,'2025-11-28','0000-00-00',624,0,594,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','11:47:06','','','N','Y',NULL,'O','O','Z20','','0000-00-00 00:00:00','4','11:19:06',0,'','drashti','2025-11-28 11:19:06','drarchit','2025-11-28 11:47:06'),(4497,0,0,'O','N','2526',1224,0,'2025-11-28','0000-00-00',1265,0,1224,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','11:37:33','','','N','Y',NULL,'O','O','Z21','','0000-00-00 00:00:00','6','11:20:47',0,'','manshi','2025-11-28 11:20:47','drsagar','2025-11-28 11:37:33'),(4498,0,0,'O','N','2526',1258,0,'2025-11-28','0000-00-00',1299,0,1258,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','11:52:17','','','N','Y',NULL,'O','O','G04','','0000-00-00 00:00:00','2','11:23:06',0,'','drashti','2025-11-28 11:23:06','darshan','2025-11-28 11:52:17'),(4499,0,0,'O','N','2526',3143,0,'2025-11-28','2026-02-27',3229,0,3143,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','12:00:58','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','6','11:24:37',0,'','manshi','2025-11-28 11:24:37','drsagar','2025-11-28 12:00:58'),(4500,0,0,'O','N','2526',2883,0,'2025-11-28','0000-00-00',2960,0,2883,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','11:55:09','','','N','Y',NULL,'O','O','Z23','','0000-00-00 00:00:00','3','11:26:32',0,'','drashti','2025-11-28 11:26:32','drpratapsinh','2025-11-28 11:55:09'),(4501,0,0,'O','N','2526',758,0,'2025-11-28','0000-00-00',789,0,758,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','13:08:36','','','N','Y',NULL,'O','O','I01','','0000-00-00 00:00:00','2','11:27:40',0,'','reception','2025-11-28 11:27:40','darshan','2025-11-28 13:08:36'),(4502,0,0,'O','N','2526',3144,0,'2025-11-28','2026-02-27',3230,0,3144,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','12:04:03','','N','N','Y',NULL,'O','N','G05','','0000-00-00 00:00:00','4','11:27:53',0,'','drashti','2025-11-28 11:27:53','drarchit','2025-11-28 12:04:03'),(4503,0,0,'O','N','2526',3145,0,'2025-11-28','2026-02-27',3231,0,3145,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','12:40:20','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','4','11:28:25',0,'','janvi','2025-11-28 11:28:25','drarchit','2025-11-28 12:40:20'),(4504,0,0,'O','N','2526',3146,0,'2025-11-28','2026-02-27',3232,0,3146,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','11:55:31','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','3','11:30:39',0,'','drashti','2025-11-28 11:30:39','drpratapsinh','2025-11-28 11:55:31'),(4505,0,0,'O','N','2526',1715,0,'2025-11-28','0000-00-00',1759,0,1715,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','11:48:32','','','N','Y',NULL,'O','O','Z26','','0000-00-00 00:00:00','3','11:31:26',0,'','janvi','2025-11-28 11:31:26','drpratapsinh','2025-11-28 11:48:32'),(4506,0,0,'O','N','2526',3147,0,'2025-11-28','2026-02-27',3233,0,3147,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:34:00','0000-00-00','','','','N','11:34:00','14:28:18','','N','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:34:11',0,'','reception','2025-11-28 11:34:11','darshan','2025-11-28 14:28:18'),(4507,0,0,'O','N','2526',2110,0,'2025-11-28','0000-00-00',2162,0,2110,'N','','N','','','FOLLOWUP V','','N','D06','','N',151,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','12:04:07','','','N','Y',NULL,'O','O','H03','','0000-00-00 00:00:00','2','11:35:07',0,'','reception','2025-11-28 11:35:07','darshan','2025-11-28 12:04:07'),(4508,0,0,'O','N','2526',2636,0,'2025-11-28','0000-00-00',2706,0,2636,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','12:42:31','','','N','Y',NULL,'O','O','J01','','0000-00-00 00:00:00','4','11:35:23',0,'','drashti','2025-11-28 11:35:23','drarchit','2025-11-28 12:42:31'),(4509,0,0,'O','N','2526',1367,0,'2025-11-28','0000-00-00',1407,0,1367,'N','','N','','','FV ','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:37:00','0000-00-00','','','','N','11:37:00','12:25:03','','','N','Y',NULL,'O','O','I02','','0000-00-00 00:00:00','2','11:37:11',0,'','reception','2025-11-28 11:37:11','darshan','2025-11-28 12:25:03'),(4510,0,0,'O','N','2526',3148,0,'2025-11-28','2026-02-27',3234,0,3148,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:37:00','0000-00-00','','','','N','11:37:00','00:00:00','','Y','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','4','11:38:21',0,'','janvi','2025-11-28 11:38:21','drarchit','2025-11-28 12:09:02'),(4511,0,0,'O','N','2526',3149,0,'2025-11-28','2026-02-27',3235,0,3149,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','12:22:43','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','4','11:38:52',0,'','drashti','2025-11-28 11:38:51','drarchit','2025-11-28 12:22:43'),(4512,0,0,'O','N','2526',3150,0,'2025-11-28','2026-02-27',3236,0,3150,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','12:19:43','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','4','11:40:01',0,'','reception','2025-11-28 11:40:01','drarchit','2025-11-28 12:19:43'),(4513,0,0,'O','N','2526',3151,0,'2025-11-28','2026-02-27',3237,0,3151,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','11:55:28','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','5','11:40:22',0,'','janvi','2025-11-28 11:40:22','drjayant','2025-11-28 11:55:27'),(4514,0,0,'O','N','2526',3152,0,'2025-11-28','2026-02-27',3238,0,3152,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','19:19:46','','N','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','4','11:42:46',0,'','janvi','2025-11-28 11:42:46','drarchit','2025-11-28 19:19:46'),(4515,0,0,'O','N','2526',1343,0,'2025-11-28','0000-00-00',1383,0,1343,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','11:49:28','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','3','11:45:40',0,'','janvi','2025-11-28 11:45:40','drpratapsinh','2025-11-28 11:49:28'),(4516,0,0,'O','N','2526',3153,0,'2025-11-28','2026-02-27',3239,0,3153,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','19:25:29','','N','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','4','11:46:25',0,'','janvi','2025-11-28 11:46:25','drarchit','2025-11-28 19:25:29'),(4517,0,0,'O','N','2526',3154,0,'2025-11-28','2026-02-27',3240,0,3154,'N','','N','','','NV','','N','D06','','N',144,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','14:53:22','','N','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','2','11:47:51',0,'','reception','2025-11-28 11:47:51','darshan','2025-11-28 14:53:22'),(4518,0,0,'O','N','2526',3155,0,'2025-11-28','2026-02-27',3241,0,3155,'N','','N','','','NV','','N','D06','','N',233,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:49:00','0000-00-00','','','','N','11:49:00','18:46:22','','','N','Y',NULL,'O','N','I05','','0000-00-00 00:00:00','2','11:49:03',0,'','reception','2025-11-28 11:49:03','darshan','2025-11-28 18:46:22'),(4519,0,0,'O','N','2526',3156,0,'2025-11-28','2026-02-27',3242,0,3156,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','13:06:18','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','2','11:50:48',0,'','reception','2025-11-28 11:50:48','darshan','2025-11-28 13:06:18'),(4520,0,0,'O','N','2526',3157,0,'2025-11-28','2026-02-27',3243,0,3157,'N','','N','','','NE','','N','D06','','N',3,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','14:12:56','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','2','11:52:17',0,'','janvi','2025-11-28 11:50:56','darshan','2025-11-28 14:12:56'),(4521,0,0,'O','N','2526',3158,0,'2025-11-28','2026-02-27',3244,0,3158,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','12:44:40','','','N','Y',NULL,'O','N','H06','','0000-00-00 00:00:00','4','11:52:17',0,'','janvi','2025-11-28 11:52:17','drarchit','2025-11-28 12:44:40'),(4522,0,0,'O','N','2526',3159,0,'2025-11-28','2026-02-27',3245,0,3159,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','13:03:04','','N','N','Y',NULL,'O','N','H07','','0000-00-00 00:00:00','2','12:04:07',0,'','reception','2025-11-28 11:54:17','darshan','2025-11-28 13:03:04'),(4523,0,0,'O','N','2526',3160,0,'2025-11-28','2026-02-27',3246,0,3160,'N','','N','','','','','N','D03','','N',234,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','12:13:43','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','6','12:00:16',0,'','manshi','2025-11-28 12:00:15','drsagar','2025-11-28 12:13:43'),(4524,0,0,'O','N','2526',3161,0,'2025-11-28','2026-02-27',3247,0,3161,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','14:26:14','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','2','12:19:27',0,'','reception','2025-11-28 12:06:32','darshan','2025-11-28 14:26:14'),(4525,0,0,'O','N','2526',3162,0,'2025-11-28','2026-02-27',3248,0,3162,'N','','N','','','NE','','N','D06','','N',4,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:10:00','0000-00-00','','','','N','12:10:00','14:32:38','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','2','12:19:27',0,'','reception','2025-11-28 12:10:46','darshan','2025-11-28 14:32:38'),(4526,0,0,'O','N','2526',3163,0,'2025-11-28','2026-02-27',3249,0,3163,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:16:00','0000-00-00','','','','N','12:16:00','19:38:04','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','4','12:16:26',0,'','drashti','2025-11-28 12:16:26','drarchit','2025-11-28 19:38:04'),(4527,0,0,'O','N','2526',3164,0,'2025-11-28','2026-02-27',3250,0,3164,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:18:00','0000-00-00','','','','N','12:18:00','18:21:44','','','N','Y',NULL,'O','N','I06','','0000-00-00 00:00:00','4','12:19:00',0,'','reception','2025-11-28 12:18:59','drarchit','2025-11-28 18:21:44'),(4528,0,0,'O','N','2526',836,0,'2025-11-28','0000-00-00',867,0,836,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:31:00','0000-00-00','','','','N','12:31:00','12:50:13','','','N','Y',NULL,'O','O','Z37','','0000-00-00 00:00:00','6','12:31:53',0,'','manshi','2025-11-28 12:31:53','drsagar','2025-11-28 12:50:13'),(4529,0,0,'O','N','2526',3165,0,'2025-11-28','2026-02-27',3251,0,3165,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:45:00','0000-00-00','','','','N','12:45:00','18:22:05','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','4','12:45:05',0,'','drashti','2025-11-28 12:45:05','drarchit','2025-11-28 18:22:05'),(4530,0,0,'O','N','2526',175,0,'2025-11-28','0000-00-00',188,0,175,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:47:00','0000-00-00','','','','N','12:47:00','00:00:00','','','N','N',NULL,'O','O','Z38','','0000-00-00 00:00:00','5','12:47:54',0,'','drashti','2025-11-28 12:47:54','','0000-00-00 00:00:00'),(4531,0,0,'O','N','2526',3166,0,'2025-11-28','2026-02-27',3252,0,3166,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:34:00','0000-00-00','','','','N','13:34:00','14:43:35','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','13:34:46',0,'','darshan','2025-11-28 13:34:46','darshan','2025-11-28 14:43:35'),(4532,0,0,'O','N','2526',1507,0,'2025-11-28','0000-00-00',1548,0,1507,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:35:00','0000-00-00','','','','N','13:35:00','13:54:43','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','13:35:40',0,'','darshan','2025-11-28 13:35:40','darshan','2025-11-28 13:54:43'),(4533,0,0,'O','N','2526',3167,0,'2025-11-28','2026-02-27',3253,0,3167,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:22:00','0000-00-00','','','','N','14:22:00','18:11:56','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','4','14:22:29',0,'','reception','2025-11-28 14:22:29','drarchit','2025-11-28 18:11:56'),(4534,0,0,'O','N','2526',3168,0,'2025-11-28','2026-02-27',3254,0,3168,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:25:00','0000-00-00','','','','N','14:25:00','19:13:05','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','5','14:25:23',0,'','reception','2025-11-28 14:25:23','drjayant','2025-11-28 19:13:05'),(4535,0,0,'O','N','2526',3169,0,'2025-11-28','2026-02-27',3255,0,3169,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:06:00','0000-00-00','','','','N','15:06:00','17:15:28','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','2','15:06:03',0,'','reception','2025-11-28 15:06:03','darshan','2025-11-28 17:15:28'),(4536,0,0,'O','N','2526',3170,0,'2025-11-28','2026-02-27',3256,0,3170,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:19:00','0000-00-00','','','','N','16:19:00','19:34:30','','N','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','16:19:49',0,'','reception','2025-11-28 16:19:49','darshan','2025-11-28 19:34:30'),(4537,0,0,'O','N','2526',3162,0,'2025-11-28','0000-00-00',3248,0,3162,'N','','N','','','ENDOSCOPY','','N','D06','','N',4,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:26:00','0000-00-00','','','','N','16:26:00','18:07:15','','N','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','2','16:26:23',0,'','reception','2025-11-28 16:26:23','darshan','2025-11-28 18:07:15'),(4538,0,0,'O','N','2526',3171,0,'2025-11-28','2026-02-27',3257,0,3171,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:31:00','0000-00-00','','','','N','16:31:00','17:12:03','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','2','16:31:29',0,'','reception','2025-11-28 16:31:29','darshan','2025-11-28 17:12:03'),(4539,0,0,'O','N','2526',1186,0,'2025-11-28','0000-00-00',1225,0,1186,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:32:00','0000-00-00','','','','N','16:32:00','17:07:07','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','16:32:04',0,'','reception','2025-11-28 16:32:04','darshan','2025-11-28 17:07:07'),(4540,0,0,'O','N','2526',2323,0,'2025-11-28','0000-00-00',2380,0,2323,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:37:00','0000-00-00','','','','N','16:37:00','18:11:52','','','N','Y',NULL,'O','O','Z43','','0000-00-00 00:00:00','3','16:37:37',0,'','reception','2025-11-28 16:37:37','drpratapsinh','2025-11-28 18:11:52'),(4541,0,0,'O','N','2526',3172,0,'2025-11-28','2026-02-27',3258,0,3172,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:45:00','0000-00-00','','','','N','16:45:00','17:13:57','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','2','16:45:07',0,'','reception','2025-11-28 16:45:07','darshan','2025-11-28 17:13:57'),(4542,0,0,'O','N','2526',3173,0,'2025-11-28','2026-02-27',3259,0,3173,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:52:00','0000-00-00','','','','N','16:52:00','18:10:38','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','3','16:52:25',0,'','reception','2025-11-28 16:52:25','drpratapsinh','2025-11-28 18:10:38'),(4543,0,0,'O','N','2526',3174,0,'2025-11-28','2026-02-27',3260,0,3174,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:54:00','0000-00-00','','','','N','16:54:00','20:00:05','','N','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','16:54:27',0,'','reception','2025-11-28 16:54:27','darshan','2025-11-28 20:00:05'),(4544,0,0,'O','N','2526',3175,0,'2025-11-28','2026-02-27',3261,0,3175,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:12:00','0000-00-00','','','','N','17:12:00','18:55:22','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','5','17:12:22',0,'','drashti','2025-11-28 17:12:22','drjayant','2025-11-28 18:55:22'),(4545,0,0,'O','N','2526',3176,0,'2025-11-28','2026-02-27',3262,0,3176,'N','','N','','','','','N','D14','','N',235,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:16:00','0000-00-00','','','','N','17:16:00','00:00:00','','','N','N',NULL,'O','N','Z47','','0000-00-00 00:00:00','7','17:16:00',0,'','manshi','2025-11-28 17:16:00','','0000-00-00 00:00:00'),(4546,0,0,'O','N','2526',3177,0,'2025-11-28','2026-02-27',3263,0,3177,'N','','N','','','','','N','D14','','N',235,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:16:00','0000-00-00','','','','N','17:16:00','00:00:00','','','N','N',NULL,'O','N','Z48','','0000-00-00 00:00:00','7','17:16:15',0,'','manshi','2025-11-28 17:16:15','','0000-00-00 00:00:00'),(4547,0,0,'O','N','2526',3178,0,'2025-11-28','2026-02-27',3264,0,3178,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:17:00','0000-00-00','','','','N','17:17:00','18:41:58','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','6','17:17:30',0,'','manshi','2025-11-28 17:17:30','drsagar','2025-11-28 18:41:58'),(4548,0,0,'O','N','2526',3155,0,'2025-11-28','0000-00-00',3241,0,3155,'N','','N','','','REPORTS','','N','D06','','N',233,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:26:00','0000-00-00','','','','N','17:26:00','19:02:38','','N','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','2','17:27:03',0,'','reception','2025-11-28 17:27:03','darshan','2025-11-28 19:02:38'),(4549,0,0,'O','N','2526',3161,0,'2025-11-28','0000-00-00',3247,0,3161,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:30:00','0000-00-00','','','','N','17:30:00','20:06:48','','N','N','Y',NULL,'O','O','Y03','','0000-00-00 00:00:00','2','17:31:03',0,'','reception','2025-11-28 17:31:03','darshan','2025-11-28 20:06:48'),(4550,0,0,'O','N','2526',3179,0,'2025-11-28','2026-02-27',3265,0,3179,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','18:21:44','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','2','17:32:21',0,'','drashti','2025-11-28 17:32:21','darshan','2025-11-28 18:21:44'),(4551,0,0,'O','N','2526',3180,0,'2025-11-28','2026-02-27',3266,0,3180,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:35:00','0000-00-00','','','','N','17:35:00','18:20:12','','','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:35:46',0,'','reception','2025-11-28 17:35:46','darshan','2025-11-28 18:20:12'),(4552,0,0,'O','N','2526',1725,0,'2025-11-28','0000-00-00',1769,0,1725,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','18:13:21','','','N','Y',NULL,'O','O','L07','','0000-00-00 00:00:00','2','17:42:52',0,'','reception','2025-11-28 17:42:51','darshan','2025-11-28 18:13:21'),(4553,0,0,'O','N','2526',3181,0,'2025-11-28','2026-02-27',3267,0,3181,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:44:00','0000-00-00','','','','N','17:44:00','18:34:13','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','2','17:44:36',0,'','drashti','2025-11-28 17:44:36','darshan','2025-11-28 18:34:13'),(4554,0,0,'O','N','2526',3182,0,'2025-11-28','2026-02-27',3268,0,3182,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','18:30:04','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:49:59',0,'','reception','2025-11-28 17:49:59','darshan','2025-11-28 18:30:04'),(4555,0,0,'O','N','2526',3183,0,'2025-11-28','2026-02-27',3269,0,3183,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','18:54:30','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','5','17:50:32',0,'','janvi','2025-11-28 17:50:32','drjayant','2025-11-28 18:54:30'),(4556,0,0,'O','N','2526',2166,0,'2025-11-28','0000-00-00',2221,0,2166,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','18:58:32','','','N','Y',NULL,'O','O','Z53','','0000-00-00 00:00:00','6','17:50:34',0,'','manshi','2025-11-28 17:50:34','drsagar','2025-11-28 18:58:32'),(4557,0,0,'O','N','2526',2742,0,'2025-11-28','0000-00-00',2812,0,2742,'N','','N','','','FOLLOWUP C','','N','D27','','N',98,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','18:25:38','','','N','Y',NULL,'O','O','Z54','','0000-00-00 00:00:00','4','17:52:09',0,'','drashti','2025-11-28 17:52:09','drarchit','2025-11-28 18:25:38'),(4558,0,0,'O','N','2526',3184,0,'2025-11-28','2026-02-27',3270,0,3184,'N','','N','','','NC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:56:00','0000-00-00','','','','N','17:56:00','00:00:00','','','N','N',NULL,'O','N','Z55','','0000-00-00 00:00:00','4','17:57:39',0,'','janvi','2025-11-28 17:57:39','','0000-00-00 00:00:00'),(4559,0,0,'O','N','2526',3185,0,'2025-11-28','2026-02-27',3271,0,3185,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:58:00','0000-00-00','','','','N','17:58:00','18:17:34','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','3','17:58:17',0,'','drashti','2025-11-28 17:58:17','drpratapsinh','2025-11-28 18:17:34'),(4560,0,0,'O','N','2526',545,0,'2025-11-28','0000-00-00',571,0,545,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','18:26:35','','','N','Y',NULL,'O','O','Z57','','0000-00-00 00:00:00','6','18:07:37',0,'','manshi','2025-11-28 18:07:37','drsagar','2025-11-28 18:26:35'),(4561,0,0,'O','N','2526',566,0,'2025-11-28','0000-00-00',593,0,566,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','18:54:02','','','N','Y',NULL,'O','O','Z58','','0000-00-00 00:00:00','5','18:07:40',0,'','drashti','2025-11-28 18:07:40','drjayant','2025-11-28 18:54:02'),(4562,0,0,'O','N','2526',3186,0,'2025-11-28','2026-02-27',3272,0,3186,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:16:45','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','3','18:10:14',0,'','janvi','2025-11-28 18:10:14','drpratapsinh','2025-11-28 18:16:45'),(4563,0,0,'O','N','2526',3187,0,'2025-11-28','2026-02-27',3273,0,3187,'N','','N','','','NV','','N','D06','','N',144,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','18:43:52','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','18:11:22',0,'','reception','2025-11-28 18:11:22','darshan','2025-12-05 18:43:52'),(4564,0,0,'O','N','2526',3188,0,'2025-11-28','2026-02-27',3274,0,3188,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','00:00:00','','Y','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','2','18:12:41',0,'','drashti','2025-11-28 18:12:41','darshan','2025-11-28 18:53:45'),(4565,0,0,'O','N','2526',1288,0,'2025-11-28','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','18:36:22','','','N','Y',NULL,'O','O','Z60','','0000-00-00 00:00:00','3','18:13:31',0,'','janvi','2025-11-28 18:13:31','drpratapsinh','2025-11-28 18:36:22'),(4566,0,0,'O','N','2526',187,0,'2025-11-28','0000-00-00',200,0,187,'N','','N','','','FC','','N','D27','','N',18,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:20:00','0000-00-00','','','','N','18:20:00','18:30:59','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','4','18:20:54',0,'','janvi','2025-11-28 18:20:54','drarchit','2025-11-28 18:30:59'),(4567,0,0,'O','N','2526',2269,0,'2025-11-28','0000-00-00',2326,0,2269,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:20:00','0000-00-00','','','','N','18:20:00','19:04:52','','','N','Y',NULL,'O','O','Z61','','0000-00-00 00:00:00','6','18:20:55',0,'','manshi','2025-11-28 18:20:55','drsagar','2025-11-28 19:04:52'),(4568,0,0,'O','N','2526',786,0,'2025-11-28','0000-00-00',817,0,786,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','18:40:38','','','N','Y',NULL,'O','O','Z62','','0000-00-00 00:00:00','3','18:21:36',0,'','drashti','2025-11-28 18:21:36','drpratapsinh','2025-11-28 18:40:38'),(4569,0,0,'O','N','2526',3189,0,'2025-11-28','2026-02-27',3275,0,3189,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','18:42:30','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','5','18:24:24',0,'','janvi','2025-11-28 18:24:24','drjayant','2025-11-28 18:42:30'),(4570,0,0,'O','N','2526',525,0,'2025-11-28','0000-00-00',551,0,525,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:25:00','0000-00-00','','','','N','18:25:00','18:44:50','','','N','Y',NULL,'O','O','Z64','','0000-00-00 00:00:00','3','18:26:32',0,'','janvi','2025-11-28 18:26:32','drpratapsinh','2025-11-28 18:44:50'),(4571,0,0,'O','N','2526',1543,0,'2025-11-28','0000-00-00',1586,0,1543,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:27:00','0000-00-00','','','','N','18:27:00','19:10:59','','','N','Y',NULL,'O','O','L12','','0000-00-00 00:00:00','2','18:27:44',0,'','reception','2025-11-28 18:27:44','darshan','2025-11-28 19:10:59'),(4572,0,0,'O','N','2526',2910,0,'2025-11-28','0000-00-00',2988,0,2910,'N','','N','','','','','N','D02','','N',215,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','18:47:35','','','N','Y',NULL,'O','O','Z65','','0000-00-00 00:00:00','3','18:28:58',0,'','drashti','2025-11-28 18:28:58','drpratapsinh','2025-11-28 18:47:35'),(4573,0,0,'O','N','2526',110,0,'2025-11-28','0000-00-00',121,0,110,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','18:53:24','','','N','Y',NULL,'O','O','Z66','','0000-00-00 00:00:00','5','18:32:17',0,'','janvi','2025-11-28 18:32:17','drjayant','2025-11-28 18:53:24'),(4574,0,0,'O','N','2526',3190,0,'2025-11-28','2026-02-27',3276,0,3190,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','18:52:52','','','N','Y',NULL,'O','N','Z67','','0000-00-00 00:00:00','4','18:32:47',0,'','drashti','2025-11-28 18:32:47','drarchit','2025-11-28 18:52:52'),(4575,0,0,'O','N','2526',109,0,'2025-11-28','0000-00-00',120,0,109,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','18:53:06','','','N','Y',NULL,'O','O','Z68','','0000-00-00 00:00:00','5','18:33:03',0,'','janvi','2025-11-28 18:33:03','drjayant','2025-11-28 18:53:06'),(4576,0,0,'O','N','2526',3191,0,'2025-11-28','2026-02-27',3277,0,3191,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','19:05:46','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','4','18:34:55',0,'','drashti','2025-11-28 18:34:55','drarchit','2025-11-28 19:05:46'),(4577,0,0,'O','N','2526',3116,0,'2025-11-28','0000-00-00',3202,0,3116,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','20:10:07','','N','N','Y',NULL,'O','O','Z69','','0000-00-00 00:00:00','2','18:36:46',0,'','reception','2025-11-28 18:36:46','darshan','2025-11-28 20:10:07'),(4578,0,0,'O','N','2526',2220,0,'2025-11-28','0000-00-00',2276,0,2220,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:37:00','0000-00-00','','','','N','18:37:00','19:12:36','','','N','Y',NULL,'O','O','Z70','','0000-00-00 00:00:00','6','18:37:43',0,'','manshi','2025-11-28 18:37:43','drsagar','2025-11-28 19:12:36'),(4579,0,0,'O','N','2526',3192,0,'2025-11-28','2026-02-27',3278,0,3192,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','20:21:56','','','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','2','18:40:44',0,'','reception','2025-11-28 18:40:44','darshan','2025-11-28 20:21:56'),(4580,0,0,'O','N','2526',2250,0,'2025-11-28','0000-00-00',2307,0,2250,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','19:13:45','','','N','Y',NULL,'O','O','L14','','0000-00-00 00:00:00','2','18:44:46',0,'','reception','2025-11-28 18:44:46','darshan','2025-11-28 19:13:45'),(4581,0,0,'O','N','2526',3193,0,'2025-11-28','2026-02-27',3279,0,3193,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:47:00','0000-00-00','','','','N','18:47:00','00:00:00','','','N','N',NULL,'O','N','Z72','','0000-00-00 00:00:00','7','18:47:01',0,'','manshi','2025-11-28 18:47:01','','0000-00-00 00:00:00'),(4582,0,0,'O','N','2526',3194,0,'2025-11-28','2026-02-27',3280,0,3194,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','19:29:07','','','N','Y',NULL,'O','N','Z73','','0000-00-00 00:00:00','6','18:49:34',0,'','manshi','2025-11-28 18:49:34','drsagar','2025-11-28 19:29:06'),(4583,0,0,'O','N','2526',3195,0,'2025-11-28','2026-02-27',3281,0,3195,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','19:28:19','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','6','18:49:40',0,'','manshi','2025-11-28 18:49:40','drsagar','2025-11-28 19:28:19'),(4584,0,0,'O','N','2526',3196,0,'2025-11-28','2026-02-27',3282,0,3196,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:50:00','0000-00-00','','','','N','18:50:00','19:15:04','','','N','Y',NULL,'O','N','Z75','','0000-00-00 00:00:00','4','18:50:00',0,'','drashti','2025-11-28 18:50:00','drarchit','2025-11-28 19:15:04'),(4585,0,0,'O','N','2526',3197,0,'2025-11-28','2026-02-27',3283,0,3197,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','19:18:35','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','18:54:17',0,'','drashti','2025-11-28 18:54:17','drarchit','2025-11-28 19:18:35'),(4586,0,0,'O','N','2526',3198,0,'2025-11-28','2026-02-27',3284,0,3198,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','20:24:54','','','N','Y',NULL,'O','N','Z76','','0000-00-00 00:00:00','2','18:54:35',0,'','reception','2025-11-28 18:54:35','darshan','2025-11-28 20:24:54'),(4587,0,0,'O','N','2526',3199,0,'2025-11-28','2026-02-27',3285,0,3199,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:57:00','0000-00-00','','','','N','18:57:00','13:05:54','','N','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','2','18:57:45',0,'','reception','2025-11-28 18:57:45','darshan','2025-11-29 13:05:54'),(4588,0,0,'O','N','2526',2528,0,'2025-11-28','0000-00-00',1616,0,2528,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:58:00','0000-00-00','','','','N','18:58:00','19:12:53','','','N','Y',NULL,'O','O','Z77','','0000-00-00 00:00:00','6','18:58:51',0,'','manshi','2025-11-28 18:58:51','drsagar','2025-11-28 19:12:53'),(4589,0,0,'O','N','2526',1323,0,'2025-11-28','0000-00-00',1363,0,1323,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:04:00','0000-00-00','','','','N','19:04:00','19:30:20','','','N','Y',NULL,'O','O','L17','','0000-00-00 00:00:00','4','19:04:16',0,'','drashti','2025-11-28 19:04:16','drarchit','2025-11-28 19:30:20'),(4590,0,0,'O','N','2526',118,0,'2025-11-28','0000-00-00',129,0,118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:15:00','0000-00-00','','','','N','19:15:00','19:39:41','','','N','Y',NULL,'O','O','Z78','','0000-00-00 00:00:00','3','19:16:29',0,'','janvi','2025-11-28 19:16:29','drpratapsinh','2025-11-28 19:39:41'),(4591,0,0,'O','N','2526',2506,0,'2025-11-28','0000-00-00',2563,0,2506,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:16:00','0000-00-00','','','','N','19:16:00','19:49:27','','','N','Y',NULL,'O','O','L18','','0000-00-00 00:00:00','4','19:16:51',0,'','drashti','2025-11-28 19:16:51','drarchit','2025-11-28 19:49:27'),(4592,0,0,'O','N','2526',3200,0,'2025-11-28','2026-02-27',3286,0,3200,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:22:00','0000-00-00','','','','N','19:22:00','20:01:38','','','N','Y',NULL,'O','N','L19','','0000-00-00 00:00:00','4','19:22:16',0,'','drashti','2025-11-28 19:22:16','drarchit','2025-11-28 20:01:38'),(4593,0,0,'O','N','2526',3076,0,'2025-11-28','0000-00-00',3162,0,3076,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:24:00','0000-00-00','','','','N','19:24:00','19:25:48','','','N','Y',NULL,'O','O','Z79','','0000-00-00 00:00:00','4','19:24:31',0,'','drashti','2025-11-28 19:24:31','drarchit','2025-11-28 19:25:48'),(4594,0,0,'I','N','2526',0,213,'2025-11-28','2026-02-27',3287,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','21:30:00','2025-12-01','','1','mo','N','21:30:00','11:40:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-11-28 21:35:42','mo','2025-12-01 13:49:42'),(4595,0,0,'O','N','2526',3201,0,'2025-11-29','2026-02-28',3288,0,3201,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:02:00','0000-00-00','','','','N','09:02:00','13:12:35','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','5','11:12:24',0,'','reception','2025-11-29 09:02:43','drjayant','2025-11-29 13:12:35'),(4596,0,0,'O','N','2526',3202,0,'2025-11-29','2026-02-28',3289,0,3202,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:07:00','0000-00-00','','','','N','09:07:00','00:00:00','','','N','N',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','11:15:57',0,'','reception','2025-11-29 09:07:20','','0000-00-00 00:00:00'),(4597,0,0,'O','N','2526',3203,0,'2025-11-29','2026-02-28',3290,0,3203,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:08:00','0000-00-00','','','','N','09:08:00','13:51:11','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','5','11:12:24',0,'','reception','2025-11-29 09:08:34','drjayant','2025-11-29 13:51:11'),(4598,0,0,'O','N','2526',3204,0,'2025-11-29','2026-02-28',3291,0,3204,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:21:00','0000-00-00','','','','N','09:21:00','11:37:04','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','4','11:15:57',0,'','drashti','2025-11-29 09:21:41','drarchit','2025-11-29 11:37:04'),(4599,0,0,'O','N','2526',1690,0,'2025-11-29','0000-00-00',1736,0,1690,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:26:00','0000-00-00','','','','N','09:26:00','11:20:06','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','2','09:26:58',0,'','reception','2025-11-29 09:26:58','darshan','2025-11-29 11:20:06'),(4600,0,0,'O','N','2526',3205,0,'2025-11-29','2026-02-28',3292,0,3205,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:54:00','0000-00-00','','','','N','09:54:00','13:46:08','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','09:55:02',0,'','reception','2025-11-29 09:55:02','darshan','2025-11-29 13:46:08'),(4601,0,0,'O','N','2526',1550,0,'2025-11-29','0000-00-00',1593,0,1550,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:57:00','0000-00-00','','','','N','09:57:00','10:54:21','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','09:57:45',0,'','reception','2025-11-29 09:57:45','darshan','2025-11-29 10:54:21'),(4602,0,0,'O','N','2526',3206,0,'2025-11-29','2026-02-28',3293,0,3206,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:58:00','0000-00-00','','','','N','09:58:00','13:01:49','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','5','11:12:24',0,'','drashti','2025-11-29 09:58:16','drjayant','2025-11-29 13:01:49'),(4603,0,0,'O','N','2526',3207,0,'2025-11-29','2026-02-28',3294,0,3207,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:01:00','0000-00-00','','','','N','10:01:00','13:07:45','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','5','11:12:24',0,'','drashti','2025-11-29 10:01:35','drjayant','2025-11-29 13:07:45'),(4604,0,0,'O','N','2526',446,0,'2025-11-29','0000-00-00',472,0,446,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:09:00','0000-00-00','','','','N','10:09:00','11:36:29','','','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','2','10:09:09',0,'','reception','2025-11-29 10:09:09','darshan','2025-11-29 11:36:29'),(4605,0,0,'O','N','2526',3208,0,'2025-11-29','2026-02-28',3295,0,3208,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:14:00','0000-00-00','','','','N','10:14:00','17:18:55','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','3','10:14:04',0,'','reception','2025-11-29 10:14:04','drpratapsinh','2025-12-04 17:18:55'),(4606,0,0,'O','N','2526',3209,0,'2025-11-29','2026-02-28',3296,0,3209,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','0000-00-00','','','','N','10:15:00','14:05:14','','N','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','10:15:18',0,'','reception','2025-11-29 10:15:18','darshan','2025-11-29 14:05:14'),(4607,0,0,'O','N','2526',1424,0,'2025-11-29','0000-00-00',1465,0,1424,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:27:00','0000-00-00','','','','N','10:27:00','12:00:53','','','N','Y',NULL,'O','O','G03','','0000-00-00 00:00:00','4','11:15:57',0,'','drashti','2025-11-29 10:27:29','drarchit','2025-11-29 12:00:53'),(4608,0,0,'O','N','2526',3210,0,'2025-11-29','2026-02-28',3297,0,3210,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','14:13:41','','N','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','2','10:37:20',0,'','reception','2025-11-29 10:37:20','darshan','2025-11-29 14:13:41'),(4609,0,0,'O','N','2526',3211,0,'2025-11-29','2026-02-28',3298,0,3211,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','14:49:40','','N','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','2','10:53:23',0,'','reception','2025-11-29 10:53:23','darshan','2025-11-29 14:49:40'),(4610,0,0,'O','N','2526',3212,0,'2025-11-29','2026-02-28',2699,0,3212,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','12:00:03','','','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','4','11:15:57',0,'','janvi','2025-11-29 10:54:19','drarchit','2025-11-29 12:00:03'),(4611,0,0,'O','N','2526',3213,0,'2025-11-29','2026-02-28',3299,0,3213,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','12:46:26','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','2','10:55:50',0,'','reception','2025-11-29 10:55:50','darshan','2025-11-29 12:46:26'),(4612,0,0,'O','N','2526',2769,0,'2025-11-29','0000-00-00',2838,0,2769,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','12:10:48','','','N','Y',NULL,'O','O','Z11','','0000-00-00 00:00:00','4','11:15:57',0,'','janvi','2025-11-29 10:55:51','drarchit','2025-11-29 12:10:48'),(4613,0,0,'O','N','2526',3199,0,'2025-11-29','0000-00-00',3285,0,3199,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','13:35:48','','N','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','2','10:56:52',0,'','reception','2025-11-29 10:56:52','darshan','2025-11-29 13:35:48'),(4614,0,0,'O','N','2526',3214,0,'2025-11-29','2026-02-28',3300,0,3214,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','11:59:48','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','4','11:15:57',0,'','janvi','2025-11-29 10:57:25','drarchit','2025-11-29 11:59:48'),(4615,0,0,'O','N','2526',2132,0,'2025-11-29','0000-00-00',2183,0,2132,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','12:17:31','','','N','Y',NULL,'O','O','G05','','0000-00-00 00:00:00','2','11:02:33',0,'','reception','2025-11-29 11:02:33','darshan','2025-11-29 12:17:31'),(4616,0,0,'O','N','2526',180,0,'2025-11-29','0000-00-00',193,0,180,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','12:19:49','','','N','Y',NULL,'O','O','Z14','','0000-00-00 00:00:00','5','11:12:24',0,'','drashti','2025-11-29 11:04:59','drjayant','2025-12-02 12:19:49'),(4617,0,0,'O','N','2526',3215,0,'2025-11-29','2026-02-28',3301,0,3215,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','12:00:16','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','4','11:15:57',0,'','drashti','2025-11-29 11:06:15','drarchit','2025-11-29 12:00:16'),(4618,0,0,'O','N','2526',3216,0,'2025-11-29','2026-02-28',3302,0,3216,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','11:58:57','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','5','11:12:24',0,'','janvi','2025-11-29 11:06:54','drjayant','2025-11-29 11:58:57'),(4619,0,0,'O','N','2526',1579,0,'2025-11-29','0000-00-00',1623,0,1579,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','11:54:44','','','N','Y',NULL,'O','O','H03','','0000-00-00 00:00:00','2','11:08:50',0,'','reception','2025-11-29 11:08:50','darshan','2025-11-29 11:54:44'),(4620,0,0,'O','N','2526',3217,0,'2025-11-29','2026-02-28',3303,0,3217,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','13:13:44','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','5','11:15:37',0,'','drashti','2025-11-29 11:15:37','drjayant','2025-11-29 13:13:44'),(4621,0,0,'O','N','2526',2847,0,'2025-11-29','0000-00-00',2919,0,2847,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','12:21:52','','','N','Y',NULL,'O','O','G06','','0000-00-00 00:00:00','2','11:17:50',0,'','reception','2025-11-29 11:17:50','darshan','2025-11-29 12:21:52'),(4622,0,0,'O','N','2526',3218,0,'2025-11-29','2026-02-28',3304,0,3218,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','12:49:27','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','2','11:18:31',0,'','drashti','2025-11-29 11:18:31','darshan','2025-11-29 12:49:27'),(4623,0,0,'O','N','2526',1626,0,'2025-11-29','0000-00-00',1671,0,1626,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','13:01:32','','N','N','Y',NULL,'O','O','G07','','0000-00-00 00:00:00','2','11:21:37',0,'','reception','2025-11-29 11:21:37','darshan','2025-11-29 13:01:32'),(4624,0,0,'O','N','2526',3219,0,'2025-11-29','2026-02-28',3305,0,3219,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','14:28:01','','N','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','2','11:26:40',0,'','reception','2025-11-29 11:26:40','darshan','2025-11-29 14:28:01'),(4625,0,0,'O','N','2526',3220,0,'2025-11-29','2026-02-28',3306,0,3220,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','12:13:00','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','4','11:27:33',0,'','drashti','2025-11-29 11:27:33','drarchit','2025-11-29 12:13:00'),(4626,0,0,'O','N','2526',2503,0,'2025-11-29','0000-00-00',2560,0,2503,'N','','N','','','','','N','D02','','N',106,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','18:19:32','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','3','11:28:26',0,'','janvi','2025-11-29 11:28:26','drpratapsinh','2025-11-29 18:19:32'),(4627,0,0,'O','N','2526',2560,0,'2025-11-29','0000-00-00',2620,0,2560,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','12:00:47','','','N','Y',NULL,'O','O','Z20','','0000-00-00 00:00:00','6','11:30:49',0,'','manshi','2025-11-29 11:30:49','drsagar','2025-11-29 12:00:47'),(4628,0,0,'O','N','2526',3221,0,'2025-11-29','2026-02-28',3307,0,3221,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','12:18:58','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','4','11:31:19',0,'','drashti','2025-11-29 11:31:19','drarchit','2025-11-29 12:18:57'),(4629,0,0,'O','N','2526',3222,0,'2025-11-29','2026-02-28',3308,0,3222,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','13:46:53','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','5','11:32:11',0,'','janvi','2025-11-29 11:32:11','drjayant','2025-11-29 13:46:53'),(4630,0,0,'I','N','2526',3217,214,'2025-11-29','2026-02-28',3303,0,3217,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','2025-11-29','','4','mo','N','11:30:00','20:40:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-29 11:32:29','mo','2025-11-29 21:01:28'),(4631,0,0,'O','N','2526',3223,0,'2025-11-29','2026-02-28',3309,0,3223,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','13:39:13','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','5','11:35:29',0,'','drashti','2025-11-29 11:35:29','drjayant','2025-11-29 13:39:13'),(4632,0,0,'O','N','2526',3224,0,'2025-11-29','2026-02-28',3310,0,3224,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','12:26:43','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','5','11:36:44',0,'','reception','2025-11-29 11:36:44','drjayant','2025-11-29 12:26:43'),(4633,0,0,'O','N','2526',3225,0,'2025-11-29','2026-02-28',3311,0,3225,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','14:32:21','','N','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','11:38:13',0,'','reception','2025-11-29 11:38:13','darshan','2025-11-29 14:32:21'),(4634,0,0,'O','N','2526',3226,0,'2025-11-29','2026-02-28',3312,0,3226,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','12:05:35','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','4','11:38:26',0,'','drashti','2025-11-29 11:38:26','drarchit','2025-11-29 12:05:35'),(4635,0,0,'O','N','2526',3227,0,'2025-11-29','2026-02-28',3313,0,3227,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','12:20:25','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','5','11:52:20',0,'','drashti','2025-11-29 11:52:19','drjayant','2025-11-29 12:20:25'),(4636,0,0,'O','N','2526',3228,0,'2025-11-29','2026-02-28',3314,0,3228,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','12:25:03','','','N','Y',NULL,'O','N','H06','','0000-00-00 00:00:00','2','11:52:35',0,'','reception','2025-11-29 11:52:35','darshan','2025-11-29 12:25:03'),(4637,0,0,'O','N','2526',2483,0,'2025-11-29','0000-00-00',2541,0,2483,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:53:00','0000-00-00','','','','N','11:53:00','12:59:23','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','2','11:53:58',0,'','reception','2025-11-29 11:53:58','darshan','2025-11-29 12:59:23'),(4638,0,0,'O','N','2526',3229,0,'2025-11-29','2026-02-28',3315,0,3229,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:53:00','0000-00-00','','','','N','11:53:00','12:10:56','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','5','11:54:23',0,'','janvi','2025-11-29 11:54:23','drjayant','2025-11-29 12:10:56'),(4639,0,0,'O','N','2526',3230,0,'2025-11-29','2026-02-28',3316,0,3230,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','12:00:24','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','6','11:54:28',0,'','urvashi','2025-11-29 11:54:28','drsagar','2025-11-29 12:00:24'),(4640,0,0,'O','N','2526',3231,0,'2025-11-29','2026-02-28',2893,0,3231,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','12:23:55','','','N','Y',NULL,'O','N','H07','','0000-00-00 00:00:00','4','11:54:30',0,'','drashti','2025-11-29 11:54:30','drarchit','2025-11-29 12:23:55'),(4641,0,0,'O','N','2526',3232,0,'2025-11-29','2026-02-28',2779,0,3232,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','12:32:36','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','4','11:55:14',0,'','janvi','2025-11-29 11:55:14','drarchit','2025-11-29 12:32:36'),(4642,0,0,'O','N','2526',1928,0,'2025-11-29','0000-00-00',1976,0,1928,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','12:14:58','','','N','Y',NULL,'O','O','Z29','','0000-00-00 00:00:00','6','11:56:27',0,'','urvashi','2025-11-29 11:56:27','drsagar','2025-11-29 12:14:58'),(4643,0,0,'O','N','2526',1274,0,'2025-11-29','0000-00-00',1313,0,1274,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','13:00:57','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','5','11:58:41',0,'','janvi','2025-11-29 11:56:46','drjayant','2025-11-29 13:00:57'),(4644,0,0,'O','N','2526',3233,0,'2025-11-29','2026-02-28',2939,0,3233,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','12:41:54','','N','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','4','11:57:44',0,'','janvi','2025-11-29 11:57:44','drarchit','2025-11-29 12:41:54'),(4645,0,0,'O','N','2526',3234,0,'2025-11-29','2026-02-28',3317,0,3234,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:59:00','0000-00-00','','','','N','11:59:00','18:25:27','','N','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','4','11:59:33',0,'','drashti','2025-11-29 11:59:33','drarchit','2025-12-02 18:25:27'),(4646,0,0,'O','N','2526',3235,0,'2025-11-29','2026-02-28',3318,0,3235,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:59:00','0000-00-00','','','','N','11:59:00','12:07:31','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','6','11:59:48',0,'','urvashi','2025-11-29 11:59:48','drsagar','2025-11-29 12:07:31'),(4647,0,0,'O','N','2526',3021,0,'2025-11-29','0000-00-00',3101,0,3021,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','18:19:49','','','N','Y',NULL,'O','O','Z33','','0000-00-00 00:00:00','3','12:02:23',0,'','drashti','2025-11-29 12:02:23','drpratapsinh','2025-11-29 18:19:49'),(4648,0,0,'O','N','2526',3236,0,'2025-11-29','2026-02-28',3319,0,3236,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:01:00','0000-00-00','','','','N','12:01:00','12:51:09','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','5','12:02:23',0,'','janvi','2025-11-29 12:02:23','drjayant','2025-11-29 12:51:09'),(4649,0,0,'O','N','2526',1865,0,'2025-11-29','0000-00-00',1910,0,1865,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','12:14:43','','','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','6','12:02:56',0,'','urvashi','2025-11-29 12:02:56','drsagar','2025-11-29 12:14:43'),(4650,0,0,'O','N','2526',3237,0,'2025-11-29','2026-02-28',2539,0,3237,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:10:00','0000-00-00','','','','N','12:10:00','13:02:19','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','4','12:10:12',0,'','drashti','2025-11-29 12:10:12','drarchit','2025-11-29 13:02:19'),(4651,0,0,'O','N','2526',3238,0,'2025-11-29','2026-02-28',3320,0,3238,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:11:00','0000-00-00','','','','N','12:11:00','13:41:28','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','12:12:43',0,'','janvi','2025-11-29 12:12:43','darshan','2025-11-29 13:41:28'),(4652,0,0,'O','N','2526',1704,0,'2025-11-29','0000-00-00',1750,0,1704,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:15:00','0000-00-00','','','','N','12:15:00','12:51:58','','','N','Y',NULL,'O','O','Z38','','0000-00-00 00:00:00','4','12:15:16',0,'','drashti','2025-11-29 12:15:16','drarchit','2025-11-29 12:51:58'),(4653,0,0,'O','N','2526',3239,0,'2025-11-29','2026-02-28',3321,0,3239,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:16:00','0000-00-00','','','','N','12:16:00','12:43:49','','','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','2','12:17:32',0,'','reception','2025-11-29 12:16:35','darshan','2025-11-29 12:43:49'),(4654,0,0,'O','N','2526',3240,0,'2025-11-29','2026-02-28',3322,0,3240,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:17:00','0000-00-00','','','','N','12:17:00','13:18:31','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','5','12:17:26',0,'','drashti','2025-11-29 12:17:26','drjayant','2025-11-29 13:18:31'),(4655,0,0,'O','N','2526',3127,0,'2025-11-29','0000-00-00',3213,0,3127,'N','','N','','','FE','Y','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:18:00','0000-00-00','','','','N','12:18:00','12:51:55','','','N','Y',NULL,'O','O','I05','','0000-00-00 00:00:00','2','12:21:52',0,'','reception','2025-11-29 12:19:02','darshan','2025-11-29 12:51:55'),(4656,0,0,'O','N','2526',1504,0,'2025-11-29','0000-00-00',1545,0,1504,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','12:56:14','','','N','Y',NULL,'O','O','J01','','0000-00-00 00:00:00','2','12:21:52',0,'','reception','2025-11-29 12:21:22','darshan','2025-11-29 12:56:14'),(4657,0,0,'O','N','2526',2472,0,'2025-11-29','0000-00-00',2530,0,2472,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:23:00','0000-00-00','','','','N','12:23:00','18:20:06','','','N','Y',NULL,'O','O','Z40','','0000-00-00 00:00:00','3','12:24:44',0,'','janvi','2025-11-29 12:24:43','drpratapsinh','2025-11-29 18:20:06'),(4658,0,0,'O','N','2526',2472,0,'2025-11-29','0000-00-00',2530,0,2472,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:22:00','0000-00-00','','','','N','12:22:00','18:20:24','','','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','3','12:24:55',0,'','janvi','2025-11-29 12:24:55','drpratapsinh','2025-11-29 18:20:24'),(4659,0,0,'O','N','2526',3241,0,'2025-11-29','2026-02-28',3323,0,3241,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:25:00','0000-00-00','','','','N','12:25:00','13:11:42','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','4','12:26:13',0,'','janvi','2025-11-29 12:26:13','drarchit','2025-11-29 13:11:42'),(4660,0,0,'O','N','2526',3242,0,'2025-11-29','2026-02-28',3324,0,3242,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:26:00','0000-00-00','','','','N','12:26:00','13:09:30','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','4','12:27:16',0,'','janvi','2025-11-29 12:27:16','drarchit','2025-11-29 13:09:30'),(4661,0,0,'O','N','2526',3243,0,'2025-11-29','2026-02-28',3325,0,3243,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','13:58:31','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','2','12:43:01',0,'','reception','2025-11-29 12:27:23','darshan','2025-11-29 13:58:31'),(4662,0,0,'O','N','2526',3244,0,'2025-11-29','2026-02-28',3326,0,3244,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:29:00','0000-00-00','','','','N','12:29:00','14:09:52','','','N','Y',NULL,'O','N','I06','','0000-00-00 00:00:00','2','12:43:01',0,'','reception','2025-11-29 12:29:16','darshan','2025-11-29 14:09:52'),(4663,0,0,'O','N','2526',3245,0,'2025-11-29','2026-02-28',3327,0,3245,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','0000-00-00','','','','N','12:30:00','14:21:03','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','2','12:43:01',0,'','reception','2025-11-29 12:30:20','darshan','2025-11-29 14:21:03'),(4664,0,0,'O','N','2526',3246,0,'2025-11-29','2026-02-28',3328,0,3246,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:33:00','0000-00-00','','','','N','12:33:00','14:51:51','','N','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','2','12:43:01',0,'','reception','2025-11-29 12:33:23','darshan','2025-11-29 14:51:51'),(4665,0,0,'O','N','2526',3247,0,'2025-11-29','2026-02-28',3329,0,3247,'N','','N','','','NC','','N','D02','','N',12,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:34:00','0000-00-00','','','','N','12:34:00','18:26:56','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','3','12:34:16',0,'','drashti','2025-11-29 12:34:16','drpratapsinh','2025-11-29 18:26:56'),(4666,0,0,'O','N','2526',3248,0,'2025-11-29','2026-02-28',3330,0,3248,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:38:00','0000-00-00','','','','N','12:38:00','12:57:22','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:43:01',0,'','reception','2025-11-29 12:38:26','darshan','2025-12-03 12:57:22'),(4667,0,0,'O','N','2526',1629,0,'2025-11-29','0000-00-00',1674,0,1629,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:40:00','0000-00-00','','','','N','12:40:00','13:17:43','','','N','Y',NULL,'O','O','Z46','','0000-00-00 00:00:00','4','12:41:12',0,'','janvi','2025-11-29 12:41:12','drarchit','2025-11-29 13:17:43'),(4668,0,0,'O','N','2526',3249,0,'2025-11-29','2026-02-28',3331,0,3249,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:45:00','0000-00-00','','','','N','12:45:00','00:00:00','','','N','N',NULL,'O','N','Z47','','0000-00-00 00:00:00','4','12:45:47',0,'','drashti','2025-11-29 12:45:47','','0000-00-00 00:00:00'),(4669,0,0,'O','N','2526',3250,0,'2025-11-29','2026-02-28',3332,0,3250,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:48:00','0000-00-00','','','','N','12:48:00','13:35:17','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','12:59:23',0,'','reception','2025-11-29 12:48:47','darshan','2025-11-29 13:35:17'),(4670,0,0,'O','N','2526',3251,0,'2025-11-29','2026-02-28',3333,0,3251,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:53:00','0000-00-00','','','','N','12:53:00','12:57:24','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','4','12:54:05',0,'','janvi','2025-11-29 12:54:05','drarchit','2025-11-29 12:57:24'),(4671,0,0,'O','N','2526',3025,0,'2025-11-29','0000-00-00',3105,0,3025,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','0000-00-00','','','','N','13:00:00','18:28:48','','','N','Y',NULL,'O','O','Z49','','0000-00-00 00:00:00','3','13:01:12',0,'','janvi','2025-11-29 13:01:12','drpratapsinh','2025-11-29 18:28:48'),(4672,0,0,'O','N','2526',3252,0,'2025-11-29','2026-02-28',3334,0,3252,'N','','N','','','NV','','N','D06','','N',116,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:14:00','0000-00-00','','','','N','13:14:00','15:03:33','','N','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','2','13:14:41',0,'','reception','2025-11-29 13:14:41','darshan','2025-11-29 15:03:33'),(4673,0,0,'O','N','2526',3253,0,'2025-11-29','2026-02-28',3335,0,3253,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:16:00','0000-00-00','','','','N','13:16:00','00:00:00','','','N','N',NULL,'O','N','Z51','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-11-29 13:16:45','','0000-00-00 00:00:00'),(4674,0,0,'I','N','2526',0,215,'2025-11-29','2026-02-28',3336,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:30:00','2025-12-02','','1','mo','N','13:30:00','14:35:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-29 13:36:49','mo','2025-12-02 14:52:28'),(4675,0,0,'I','N','2526',3208,216,'2025-11-29','2026-02-28',3295,0,3208,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:00:00','2025-11-30','','1','mo','N','14:00:00','18:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-29 14:07:09','vishal','2025-11-30 18:04:09'),(4676,0,0,'O','N','2526',2393,0,'2025-11-29','0000-00-00',392,0,2393,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:10:00','0000-00-00','','','','N','15:10:00','00:00:00','','','N','N',NULL,'O','O','Z52','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-11-29 15:10:42','','0000-00-00 00:00:00'),(4677,0,0,'O','N','2526',3254,0,'2025-11-29','2026-02-28',3337,0,3254,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:54:00','0000-00-00','','','','N','17:54:00','18:18:48','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','3','17:55:46',0,'','janvi','2025-11-29 17:55:46','drpratapsinh','2025-11-29 18:18:48'),(4678,0,0,'O','N','2526',3255,0,'2025-11-29','2026-02-28',3338,0,3255,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:20:03','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','6','18:09:14',0,'','manshi','2025-11-29 18:09:14','drsagar','2025-11-29 18:20:03'),(4679,0,0,'O','N','2526',2738,0,'2025-11-29','0000-00-00',2808,0,2738,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','18:29:39','','','N','Y',NULL,'O','O','Z55','','0000-00-00 00:00:00','3','18:12:53',0,'','drashti','2025-11-29 18:12:53','drpratapsinh','2025-11-29 18:29:39'),(4680,0,0,'O','N','2526',3256,0,'2025-11-29','2026-02-28',3339,0,3256,'N','','N','','','','','N','D02','','N',236,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:13:00','0000-00-00','','','','N','18:13:00','18:48:53','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','3','18:14:01',0,'','janvi','2025-11-29 18:14:01','drpratapsinh','2025-11-29 18:48:53'),(4681,0,0,'O','N','2526',2260,0,'2025-11-29','0000-00-00',2317,0,2260,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','18:51:27','','','N','Y',NULL,'O','O','Z57','','0000-00-00 00:00:00','3','18:27:09',0,'','janvi','2025-11-29 18:27:09','drpratapsinh','2025-11-29 18:51:27'),(4682,0,0,'O','N','2526',2903,0,'2025-11-29','0000-00-00',2980,0,2903,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','18:56:39','','','N','Y',NULL,'O','O','Z58','','0000-00-00 00:00:00','3','18:32:01',0,'','janvi','2025-11-29 18:32:01','drpratapsinh','2025-11-29 18:56:39'),(4683,0,0,'O','N','2526',3257,0,'2025-11-29','2026-02-28',3340,0,3257,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:39:00','0000-00-00','','','','N','18:39:00','18:57:29','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','6','18:39:39',0,'','manshi','2025-11-29 18:39:39','drsagar','2025-11-29 18:57:29'),(4684,0,0,'O','N','2526',3258,0,'2025-11-29','2026-02-28',3341,0,3258,'N','','N','','','','','N','D02','','N',237,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:50:00','0000-00-00','','','','N','18:50:00','19:15:26','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','3','18:50:59',0,'','janvi','2025-11-29 18:50:59','drpratapsinh','2025-11-29 19:15:26'),(4685,0,0,'O','N','2526',3259,0,'2025-11-29','2026-02-28',3342,0,3259,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:26:00','0000-00-00','','','','N','19:26:00','00:00:00','','','N','N',NULL,'O','N','Z61','','0000-00-00 00:00:00','3','19:27:00',0,'','janvi','2025-11-29 19:27:00','','0000-00-00 00:00:00'),(4686,0,0,'I','N','2526',0,217,'2025-11-29','2026-02-28',3343,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','21:00:00','2025-12-01','','1','mo','N','21:00:00','13:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-29 21:12:18','mo','2025-12-01 13:43:31'),(4687,0,0,'O','N','2526',3260,0,'2025-11-30','2026-03-01',3344,0,3260,'N','','N','','','EMR','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:27:00','0000-00-00','','','','N','09:27:00','00:00:00','','','N','N',NULL,'O','N','Z01','','0000-00-00 00:00:00','','00:00:00',0,'','urvashi','2025-11-30 09:27:08','','0000-00-00 00:00:00'),(4688,0,0,'I','N','2526',0,218,'2025-11-30','2026-03-01',3345,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:30:00','2025-12-11','','1','mo','N','10:30:00','12:45:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-30 11:04:41','mo','2025-12-11 14:45:28'),(4689,0,0,'O','N','2526',3261,0,'2025-11-30','2026-03-01',3143,0,3261,'N','','N','','','IINJ','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','00:00:00','','','N','N',NULL,'O','N','Z02','','0000-00-00 00:00:00','','00:00:00',0,'','urvashi','2025-11-30 11:05:10','','0000-00-00 00:00:00'),(4690,0,0,'I','N','2526',0,219,'2025-11-29','2026-02-28',3346,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','22:30:00','2025-12-01','','1','mo','N','22:30:00','18:45:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-30 11:13:40','mo','2025-12-01 18:50:33'),(4691,0,0,'I','N','2526',0,220,'2025-11-30','2026-03-01',3347,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','2025-12-02','','1','mo','N','11:15:00','19:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-30 11:45:27','mo','2025-12-02 20:20:50'),(4692,0,0,'O','N','2526',3262,0,'2025-11-30','2026-03-01',3348,0,3262,'N','','N','','','EMR','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:03:00','0000-00-00','','','','N','12:03:00','00:00:00','','','N','N',NULL,'O','N','Z03','','0000-00-00 00:00:00','','00:00:00',0,'','urvashi','2025-11-30 12:03:42','','0000-00-00 00:00:00'),(4693,0,0,'I','N','2526',0,221,'2025-11-30','2026-03-01',3349,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:30:00','2025-12-04','','1','mo','N','13:30:00','20:05:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-30 13:46:17','mo','2025-12-04 20:36:32'),(4694,0,0,'I','N','2526',0,222,'2025-11-30','2026-03-01',3350,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:00:00','2025-12-13','','7','mo','N','17:00:00','14:20:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-11-30 17:46:28','mo','2025-12-13 14:53:35'),(4695,0,0,'O','N','2526',3263,0,'2025-12-01','2026-02-28',3351,0,3263,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:40:00','0000-00-00','','','','N','08:40:00','18:26:58','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','11:16:29',0,'','reception','2025-12-01 08:40:03','drarchit','2025-12-01 18:26:58'),(4696,0,0,'O','N','2526',1288,0,'2025-12-01','0000-00-00',1327,0,1288,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:05:00','0000-00-00','','','','N','09:05:00','10:21:39','','','N','Y',NULL,'O','O','Z02','','0000-00-00 00:00:00','3','09:05:46',0,'','reception','2025-12-01 09:05:46','drpratapsinh','2025-12-01 10:21:39'),(4697,0,0,'O','N','2526',3264,0,'2025-12-01','2026-02-28',3352,0,3264,'N','','N','','','ER','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:09:00','0000-00-00','','','','N','09:09:00','11:48:31','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','6','09:09:16',0,'','reception','2025-12-01 09:09:16','drsagar','2025-12-01 11:48:31'),(4698,0,0,'O','N','2526',3265,0,'2025-12-01','2026-02-28',3353,0,3265,'N','','N','','','ER','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:12:00','0000-00-00','','','','N','09:12:00','11:48:45','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','6','09:12:13',0,'','reception','2025-12-01 09:12:13','drsagar','2025-12-01 11:48:45'),(4699,0,0,'O','N','2526',3266,0,'2025-12-01','2026-02-28',3354,0,3266,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:25:00','0000-00-00','','','','N','09:25:00','11:18:05','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','4','11:16:29',0,'','reception','2025-12-01 09:25:07','drarchit','2025-12-01 11:18:05'),(4700,0,0,'O','N','2526',3267,0,'2025-12-01','2026-02-28',3355,0,3267,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:28:00','0000-00-00','','','','N','09:28:00','11:18:18','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','4','11:16:29',0,'','reception','2025-12-01 09:28:43','drarchit','2025-12-01 11:18:18'),(4701,0,0,'O','N','2526',3268,0,'2025-12-01','2026-02-28',3356,0,3268,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:48:00','0000-00-00','','','','N','09:48:00','12:19:37','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','4','11:16:29',0,'','drashti','2025-12-01 09:48:13','drarchit','2025-12-01 12:19:37'),(4702,0,0,'O','N','2526',2446,0,'2025-12-01','0000-00-00',2503,0,2446,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:48:00','0000-00-00','','','','N','09:48:00','11:02:16','','','N','Y',NULL,'O','O','Z08','','0000-00-00 00:00:00','2','09:48:51',0,'','reception','2025-12-01 09:48:51','darshan','2025-12-01 11:02:16'),(4703,0,0,'O','N','2526',2155,0,'2025-12-01','0000-00-00',2210,0,2155,'N','','N','','','FOLLOWUP V','','N','D06','','N',60,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:50:00','0000-00-00','','','','N','09:50:00','11:11:25','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','2','09:50:39',0,'','reception','2025-12-01 09:50:39','darshan','2025-12-01 11:11:25'),(4704,0,0,'O','N','2526',2207,0,'2025-12-01','0000-00-00',2263,0,2207,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:57:00','0000-00-00','','','','N','09:57:00','10:47:55','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','09:57:31',0,'','reception','2025-12-01 09:57:31','darshan','2025-12-01 10:47:55'),(4705,0,0,'O','N','2526',3269,0,'2025-12-01','2026-02-28',3357,0,3269,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','0000-00-00','','','','N','10:00:00','11:23:42','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','2','10:00:04',0,'','reception','2025-12-01 10:00:03','darshan','2025-12-01 11:23:42'),(4706,0,0,'O','N','2526',3270,0,'2025-12-01','2026-02-28',3358,0,3270,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:02:00','0000-00-00','','','','N','10:02:00','10:42:59','','','N','Y',NULL,'O','N','E02','','0000-00-00 00:00:00','2','10:02:52',0,'','reception','2025-12-01 10:02:52','darshan','2025-12-01 10:42:59'),(4707,0,0,'O','N','2526',3271,0,'2025-12-01','2026-02-28',3359,0,3271,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:03:00','0000-00-00','','','','N','10:03:00','11:23:03','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','4','11:16:29',0,'','drashti','2025-12-01 10:03:10','drarchit','2025-12-01 11:23:03'),(4708,0,0,'O','N','2526',2709,0,'2025-12-01','0000-00-00',2778,0,2709,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:07:00','0000-00-00','','','','N','10:07:00','10:58:26','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','10:07:49',0,'','reception','2025-12-01 10:07:49','darshan','2025-12-01 10:58:26'),(4709,0,0,'O','N','2526',3272,0,'2025-12-01','2026-02-28',3360,0,3272,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','0000-00-00','','','','N','10:15:00','13:48:45','','N','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:15:12',0,'','reception','2025-12-01 10:15:12','darshan','2025-12-01 13:48:45'),(4710,0,0,'O','N','2526',1701,0,'2025-12-01','0000-00-00',1747,0,1701,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:17:00','0000-00-00','','','','N','10:17:00','19:10:43','','','N','Y',NULL,'O','O','Z11','','0000-00-00 00:00:00','7','10:17:04',0,'','manshi','2025-12-01 10:17:04','drridham','2025-12-01 19:10:43'),(4711,0,0,'I','N','2526',0,223,'2025-12-01','2026-02-28',3361,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-12-03','','1','mo','N','09:30:00','10:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-01 10:17:31','mo','2025-12-03 11:43:34'),(4712,0,0,'O','N','2526',3273,0,'2025-12-01','2026-02-28',3362,0,3273,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:21:00','0000-00-00','','','','N','10:21:00','14:04:27','','N','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','10:21:26',0,'','janvi','2025-12-01 10:21:26','darshan','2025-12-01 14:04:28'),(4713,0,0,'O','N','2526',930,0,'2025-12-01','0000-00-00',961,0,930,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:25:00','0000-00-00','','','','N','10:25:00','11:20:26','','','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','5','11:13:48',0,'','drashti','2025-12-01 10:25:19','drjayant','2025-12-01 11:20:26'),(4714,0,0,'O','N','2526',3274,0,'2025-12-01','2026-02-28',3363,0,3274,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','14:23:29','','N','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','10:33:09',0,'','reception','2025-12-01 10:33:09','darshan','2025-12-01 14:23:29'),(4715,0,0,'O','N','2526',2714,0,'2025-12-01','0000-00-00',2785,0,2714,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:34:00','0000-00-00','','','','N','10:34:00','11:39:55','','','N','Y',NULL,'O','O','H01','','0000-00-00 00:00:00','2','10:35:14',0,'','reception','2025-12-01 10:35:14','darshan','2025-12-01 11:39:55'),(4716,0,0,'O','N','2526',3275,0,'2025-12-01','2026-02-28',3364,0,3275,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','11:48:43','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','2','10:37:48',0,'','reception','2025-12-01 10:37:48','darshan','2025-12-01 11:48:43'),(4717,0,0,'O','N','2526',2716,0,'2025-12-01','0000-00-00',2787,0,2716,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','11:06:53','','','N','Y',NULL,'O','O','F03','','0000-00-00 00:00:00','2','10:38:59',0,'','reception','2025-12-01 10:38:59','darshan','2025-12-01 11:06:53'),(4718,0,0,'O','N','2526',3076,0,'2025-12-01','0000-00-00',3162,0,3076,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','','N','10:40:00','12:19:49','','N','N','Y',NULL,'O','O','Z14','','0000-00-00 00:00:00','4','11:16:29',0,'','drashti','2025-12-01 10:40:41','drarchit','2025-12-01 12:19:49'),(4719,0,0,'O','N','2526',3276,0,'2025-12-01','2026-02-28',3365,0,3276,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:41:00','0000-00-00','','','','N','10:41:00','11:05:04','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','3','10:41:27',0,'','janvi','2025-12-01 10:41:27','drpratapsinh','2025-12-01 11:05:04'),(4720,0,0,'O','N','2526',1230,0,'2025-12-01','0000-00-00',1271,0,1230,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','11:52:02','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','2','10:45:07',0,'','drashti','2025-12-01 10:45:07','darshan','2025-12-01 11:52:02'),(4721,0,0,'O','N','2526',3277,0,'2025-12-01','2026-02-28',3366,0,3277,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:45:00','0000-00-00','','','','N','10:45:00','18:57:44','','N','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','4','11:16:29',0,'','reception','2025-12-01 10:45:49','drarchit','2025-12-01 18:57:44'),(4722,0,0,'O','N','2526',3278,0,'2025-12-01','2026-02-28',3367,0,3278,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','14:29:31','','N','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','10:46:46',0,'','janvi','2025-12-01 10:46:46','darshan','2025-12-01 14:29:31'),(4723,0,0,'O','N','2526',2844,0,'2025-12-01','0000-00-00',2916,0,2844,'N','','N','','','FOLLOWUPV','','N','D06','','N',211,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:47:00','0000-00-00','','','','N','10:47:00','12:03:49','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','2','10:47:56',0,'','drashti','2025-12-01 10:47:56','darshan','2025-12-01 12:03:49'),(4724,0,0,'O','N','2526',1506,0,'2025-12-01','0000-00-00',1547,0,1506,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:50:00','0000-00-00','','','','N','10:50:00','12:09:46','','','N','Y',NULL,'O','O','Z20','','0000-00-00 00:00:00','2','10:50:58',0,'','reception','2025-12-01 10:50:58','darshan','2025-12-01 12:09:46'),(4725,0,0,'O','N','2526',2941,0,'2025-12-01','0000-00-00',3019,0,2941,'N','','N','','','FOLLOWUP C','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','12:25:45','','','N','Y',NULL,'O','O','J02','','0000-00-00 00:00:00','4','11:16:29',0,'','drashti','2025-12-01 10:54:59','drarchit','2025-12-01 12:25:45'),(4726,0,0,'O','N','2526',3013,0,'2025-12-01','0000-00-00',3093,0,3013,'N','','N','','','','','N','D02','','N',223,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','11:04:51','','','N','Y',NULL,'O','O','Z21','','0000-00-00 00:00:00','3','10:55:09',0,'','janvi','2025-12-01 10:55:09','drpratapsinh','2025-12-01 11:04:51'),(4727,0,0,'O','N','2526',2894,0,'2025-12-01','0000-00-00',2971,0,2894,'N','','N','','','FOLLOWUP C','','N','D27','','N',60,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','13:11:36','','','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','4','11:16:29',0,'','drashti','2025-12-01 10:57:43','drarchit','2025-12-01 13:11:36'),(4728,0,0,'O','N','2526',3279,0,'2025-12-01','2026-02-28',3368,0,3279,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:00:00','0000-00-00','','','','N','11:00:00','14:08:38','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','5','11:13:48',0,'','janvi','2025-12-01 11:00:59','drjayant','2025-12-01 14:08:38'),(4729,0,0,'O','N','2526',3280,0,'2025-12-01','2026-02-28',3369,0,3280,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','14:30:13','','N','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','2','11:03:31',0,'','drashti','2025-12-01 11:03:31','darshan','2025-12-01 14:30:13'),(4730,0,0,'O','N','2526',3281,0,'2025-12-01','2026-02-28',3370,0,3281,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','12:16:53','','N','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','11:16:29',0,'','janvi','2025-12-01 11:03:37','drarchit','2025-12-01 12:16:53'),(4731,0,0,'O','N','2526',3282,0,'2025-12-01','2026-02-28',3371,0,3282,'N','','N','','','NFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','12:39:37','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','2','11:04:13',0,'','reception','2025-12-01 11:04:13','darshan','2025-12-01 12:39:37'),(4732,0,0,'O','N','2526',3283,0,'2025-12-01','2026-02-28',3372,0,3283,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','11:53:41','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','4','11:16:29',0,'','janvi','2025-12-01 11:04:56','drarchit','2025-12-01 11:53:41'),(4733,0,0,'O','N','2526',3284,0,'2025-12-01','2026-02-28',3373,0,3284,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','12:18:45','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','4','11:16:29',0,'','drashti','2025-12-01 11:07:05','drarchit','2025-12-01 12:18:45'),(4734,0,0,'O','N','2526',2885,0,'2025-12-01','0000-00-00',2962,0,2885,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','12:22:20','','','N','Y',NULL,'O','O','K01','','0000-00-00 00:00:00','4','11:16:29',0,'','drashti','2025-12-01 11:09:07','drarchit','2025-12-01 12:22:20'),(4735,0,0,'O','N','2526',3285,0,'2025-12-01','2026-02-28',3374,0,3285,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','19:13:54','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','7','11:11:12',0,'','manshi','2025-12-01 11:11:12','drridham','2025-12-01 19:13:54'),(4736,0,0,'O','N','2526',3286,0,'2025-12-01','2026-02-28',3375,0,3286,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','13:03:23','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','4','11:16:29',0,'','reception','2025-12-01 11:11:27','drarchit','2025-12-01 13:03:23'),(4737,0,0,'O','N','2526',3287,0,'2025-12-01','2026-02-28',3376,0,3287,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','12:44:00','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','2','11:19:35',0,'','reception','2025-12-01 11:19:35','darshan','2025-12-01 12:44:00'),(4738,0,0,'O','N','2526',2346,0,'2025-12-01','0000-00-00',2402,0,2346,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','12:19:18','','','N','Y',NULL,'O','O','Z29','','0000-00-00 00:00:00','4','11:24:45',0,'','drashti','2025-12-01 11:24:45','drarchit','2025-12-01 12:19:18'),(4739,0,0,'O','N','2526',1033,0,'2025-12-01','0000-00-00',1067,0,1033,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','11:49:08','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','6','11:26:39',0,'','manshi','2025-12-01 11:26:39','drsagar','2025-12-01 11:49:08'),(4740,0,0,'O','N','2526',3021,0,'2025-12-01','0000-00-00',3101,0,3021,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:34:00','0000-00-00','','','','N','11:34:00','12:47:42','','','N','Y',NULL,'O','O','Z31','','0000-00-00 00:00:00','3','11:34:30',0,'','reception','2025-12-01 11:34:30','drpratapsinh','2025-12-01 12:47:42'),(4741,0,0,'O','N','2526',2643,0,'2025-12-01','0000-00-00',2713,0,2643,'N','','N','','','FOLLOWUP C','','N','D02','','N',28,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','12:36:15','','','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','3','11:39:08',0,'','drashti','2025-12-01 11:39:08','drpratapsinh','2025-12-01 12:36:15'),(4742,0,0,'O','N','2526',3288,0,'2025-12-01','2026-02-28',3377,0,3288,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','13:01:29','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','4','11:43:02',0,'','janvi','2025-12-01 11:43:02','drarchit','2025-12-01 13:01:29'),(4743,0,0,'O','N','2526',3289,0,'2025-12-01','2026-02-28',3378,0,3289,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','11:51:35','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','5','11:43:48',0,'','drashti','2025-12-01 11:43:48','drjayant','2025-12-01 11:51:35'),(4744,0,0,'O','N','2526',3290,0,'2025-12-01','2026-02-28',3379,0,3290,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','19:19:27','','N','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','4','11:44:19',0,'','reception','2025-12-01 11:44:19','drarchit','2025-12-01 19:19:27'),(4745,0,0,'O','N','2526',3291,0,'2025-12-01','2026-02-28',3380,0,3291,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','19:55:16','','N','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','4','11:45:16',0,'','janvi','2025-12-01 11:45:16','drarchit','2025-12-01 19:55:16'),(4746,0,0,'O','N','2526',2277,0,'2025-12-01','0000-00-00',2334,0,2277,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','12:15:24','','','N','Y',NULL,'O','O','H05','','0000-00-00 00:00:00','2','11:46:04',0,'','reception','2025-12-01 11:46:04','darshan','2025-12-01 12:15:24'),(4747,0,0,'O','N','2526',3292,0,'2025-12-01','2026-02-28',3381,0,3292,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','12:35:58','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','3','11:46:58',0,'','janvi','2025-12-01 11:46:58','drpratapsinh','2025-12-01 12:35:58'),(4748,0,0,'O','N','2526',1120,0,'2025-12-01','0000-00-00',1161,0,1120,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','12:54:50','','','N','Y',NULL,'O','O','Z36','','0000-00-00 00:00:00','2','11:50:13',0,'','reception','2025-12-01 11:50:13','darshan','2025-12-01 12:54:50'),(4749,0,0,'O','N','2526',3293,0,'2025-12-01','2026-02-28',3382,0,3293,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:53:00','0000-00-00','','','','N','11:53:00','13:14:47','','','N','Y',NULL,'O','N','H06','','0000-00-00 00:00:00','4','11:53:25',0,'','drashti','2025-12-01 11:53:25','drarchit','2025-12-01 13:14:47'),(4750,0,0,'O','N','2526',1535,0,'2025-12-01','0000-00-00',1576,0,1535,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','12:42:58','','','N','Y',NULL,'O','O','Z37','','0000-00-00 00:00:00','3','11:58:41',0,'','drashti','2025-12-01 11:58:41','drpratapsinh','2025-12-01 12:42:58'),(4751,0,0,'I','N','2526',0,224,'2025-12-01','2026-02-28',3383,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','2025-12-06','','1','mo','N','12:00:00','12:05:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-01 12:06:01','mo','2025-12-06 13:21:05'),(4752,0,0,'O','N','2526',2182,0,'2025-12-01','0000-00-00',2237,0,2182,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:07:00','0000-00-00','','','','N','12:07:00','17:40:48','','','N','Y',NULL,'O','O','I02','','0000-00-00 00:00:00','2','12:07:13',0,'','drashti','2025-12-01 12:07:13','darshan','2025-12-01 17:40:48'),(4753,0,0,'O','N','2526',3294,0,'2025-12-01','2026-02-28',3384,0,3294,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:13:00','0000-00-00','','','','N','12:13:00','13:32:26','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','4','12:13:21',0,'','drashti','2025-12-01 12:13:21','drarchit','2025-12-01 13:32:26'),(4754,0,0,'O','N','2526',3295,0,'2025-12-01','2026-02-28',3385,0,3295,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:13:00','0000-00-00','','','','N','12:13:00','13:42:27','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','4','12:16:53',0,'','janvi','2025-12-01 12:13:24','drarchit','2025-12-01 13:42:27'),(4755,0,0,'O','N','2526',3296,0,'2025-12-01','2026-02-28',3386,0,3296,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:14:00','0000-00-00','','','','N','12:14:00','13:39:19','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','4','12:16:53',0,'','reception','2025-12-01 12:14:26','drarchit','2025-12-01 13:39:19'),(4756,0,0,'O','N','2526',178,0,'2025-12-01','0000-00-00',191,0,178,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','12:26:29','','','N','Y',NULL,'O','O','Z41','','0000-00-00 00:00:00','6','12:21:36',0,'','manshi','2025-12-01 12:21:36','drsagar','2025-12-01 12:26:29'),(4757,0,0,'O','N','2526',3297,0,'2025-12-01','2026-02-28',3387,0,3297,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:25:00','0000-00-00','','','','N','12:25:00','13:00:41','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','2','12:25:59',0,'','reception','2025-12-01 12:25:59','darshan','2025-12-01 13:00:41'),(4758,0,0,'O','N','2526',3298,0,'2025-12-01','2026-02-28',3388,0,3298,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','14:37:21','','N','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','12:27:39',0,'','reception','2025-12-01 12:27:39','darshan','2025-12-01 14:37:21'),(4759,0,0,'O','N','2526',3299,0,'2025-12-01','2026-02-28',2660,0,3299,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','12:44:18','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','3','12:28:25',0,'','janvi','2025-12-01 12:28:25','drpratapsinh','2025-12-01 12:44:18'),(4760,0,0,'O','N','2526',2254,0,'2025-12-01','0000-00-00',2311,0,2254,'N','','N','','','FOLLOWUP','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','0000-00-00','','','','N','12:30:00','13:17:45','','','N','Y',NULL,'O','O','Z44','','0000-00-00 00:00:00','4','12:30:36',0,'','drashti','2025-12-01 12:30:36','drarchit','2025-12-01 13:17:45'),(4761,0,0,'O','N','2526',3300,0,'2025-12-01','2026-02-28',3389,0,3300,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','12:48:25','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','6','12:35:45',0,'','manshi','2025-12-01 12:35:45','drsagar','2025-12-01 12:48:25'),(4762,0,0,'O','N','2526',3301,0,'2025-12-01','2026-02-28',3390,0,3301,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:37:00','0000-00-00','','','','N','12:37:00','13:24:40','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','4','12:37:49',0,'','drashti','2025-12-01 12:37:49','drarchit','2025-12-01 13:24:40'),(4763,0,0,'O','N','2526',3302,0,'2025-12-01','2026-02-28',3391,0,3302,'N','','N','','','NV','','N','D06','','N',4,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:44:00','0000-00-00','','','','N','12:44:00','13:32:20','','N','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','2','12:44:45',0,'','reception','2025-12-01 12:44:44','darshan','2025-12-01 13:32:20'),(4764,0,0,'O','N','2526',3303,0,'2025-12-01','2026-02-28',3392,0,3303,'N','','N','','','NFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:48:00','0000-00-00','','','','N','12:48:00','13:55:22','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','12:49:01',0,'','reception','2025-12-01 12:49:01','darshan','2025-12-01 13:55:22'),(4765,0,0,'O','N','2526',3304,0,'2025-12-01','2026-02-28',3393,0,3304,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:49:00','0000-00-00','','','','N','12:49:00','13:18:40','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','5','12:49:58',0,'','janvi','2025-12-01 12:49:58','drjayant','2025-12-01 13:18:40'),(4766,0,0,'O','N','2526',199,0,'2025-12-01','0000-00-00',212,0,199,'N','','N','','','FC','','N','D27','','N',19,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:51:00','0000-00-00','','','','N','12:51:00','13:47:55','','','N','Y',NULL,'O','O','Z49','','0000-00-00 00:00:00','4','12:51:17',0,'','reception','2025-12-01 12:51:17','drarchit','2025-12-01 13:47:55'),(4767,0,0,'O','N','2526',3305,0,'2025-12-01','2026-02-28',3394,0,3305,'N','','N','','','','','N','D02','','N',119,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:53:00','0000-00-00','','','','N','12:53:00','18:19:12','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','3','12:53:36',0,'','janvi','2025-12-01 12:53:36','drpratapsinh','2025-12-01 18:19:12'),(4768,0,0,'O','N','2526',3306,0,'2025-12-01','2026-02-28',3395,0,3306,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:55:00','0000-00-00','','','','N','12:55:00','14:52:25','','N','N','Y',NULL,'O','N','J04','','0000-00-00 00:00:00','2','12:55:50',0,'','reception','2025-12-01 12:55:50','darshan','2025-12-01 14:52:25'),(4769,0,0,'O','N','2526',1781,0,'2025-12-01','0000-00-00',1826,0,1781,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:59:00','0000-00-00','','','','N','12:59:00','13:18:04','','','N','Y',NULL,'O','O','Z51','','0000-00-00 00:00:00','5','12:59:26',0,'','janvi','2025-12-01 12:59:26','drjayant','2025-12-01 13:18:04'),(4770,0,0,'O','N','2526',3307,0,'2025-12-01','2026-02-28',3396,0,3307,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','0000-00-00','','','','N','13:00:00','14:03:30','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','2','13:00:16',0,'','reception','2025-12-01 13:00:16','darshan','2025-12-01 14:03:30'),(4771,0,0,'O','N','2526',3308,0,'2025-12-01','2026-02-28',3397,0,3308,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:02:00','0000-00-00','','','','N','13:02:00','18:25:49','','','N','Y',NULL,'O','N','K02','','0000-00-00 00:00:00','2','13:02:48',0,'','reception','2025-12-01 13:02:48','darshan','2025-12-01 18:25:49'),(4772,0,0,'O','N','2526',2534,0,'2025-12-01','0000-00-00',2591,0,2534,'N','','N','','','FV','','N','D06','','N',181,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:05:00','0000-00-00','','','','N','13:05:00','14:35:43','','','N','Y',NULL,'O','O','K03','','0000-00-00 00:00:00','2','13:05:10',0,'','reception','2025-12-01 13:05:10','darshan','2025-12-01 14:35:43'),(4773,0,0,'O','N','2526',1170,0,'2025-12-01','0000-00-00',1209,0,1170,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:30:00','0000-00-00','','','','N','13:30:00','14:49:08','','','N','Y',NULL,'O','O','Z53','','0000-00-00 00:00:00','2','13:30:15',0,'','reception','2025-12-01 13:30:15','darshan','2025-12-01 14:49:08'),(4774,0,0,'O','N','2526',3309,0,'2025-12-01','2026-02-28',3398,0,3309,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:30:00','0000-00-00','','','','N','13:30:00','00:00:00','','Y','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','4','13:30:30',0,'','drashti','2025-12-01 13:30:30','drarchit','2025-12-01 14:01:51'),(4775,0,0,'O','N','2526',3259,0,'2025-12-01','0000-00-00',3342,0,3259,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:37:00','0000-00-00','','','','N','13:37:00','18:19:41','','','N','Y',NULL,'O','O','Z55','','0000-00-00 00:00:00','3','13:37:50',0,'','janvi','2025-12-01 13:37:50','drpratapsinh','2025-12-01 18:19:41'),(4776,0,0,'O','N','2526',3310,0,'2025-12-01','2026-02-28',3399,0,3310,'N','','N','','','','','N','D02','','N',90,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:53:00','0000-00-00','','','','N','13:53:00','18:20:38','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','3','13:53:41',0,'','janvi','2025-12-01 13:53:41','drpratapsinh','2025-12-01 18:20:38'),(4777,0,0,'I','N','2526',0,225,'2025-12-01','2026-02-28',3400,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:00:00','2025-12-11','','1','mo','N','14:00:00','13:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-01 14:06:40','vishal','2025-12-11 18:09:23'),(4778,0,0,'I','N','2526',0,226,'2025-12-01','2026-02-28',3401,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:30:00','2025-12-05','','1','mo','N','14:30:00','10:35:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-01 14:24:31','mo','2025-12-05 11:34:28'),(4779,0,0,'O','N','2526',3311,0,'2025-12-01','2026-02-28',3402,0,3311,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:32:00','0000-00-00','','','','N','14:32:00','19:55:04','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','4','14:32:42',0,'','reception','2025-12-01 14:32:42','drarchit','2025-12-01 19:55:04'),(4780,0,0,'I','N','2526',0,227,'2025-12-01','2026-02-28',3403,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:00:00','2025-12-02','','1','mo','N','14:00:00','14:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-01 14:48:55','mo','2025-12-02 14:19:42'),(4781,0,0,'I','N','2526',0,228,'2025-12-01','2026-02-28',3404,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:00:00','2025-12-05','','1','mo','N','15:00:00','12:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-01 15:17:16','mo','2025-12-05 13:35:11'),(4782,0,0,'O','N','2526',2748,0,'2025-12-01','0000-00-00',2818,0,2748,'N','','N','','','FOLLOWUP V','','N','D06','','N',207,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:27:00','0000-00-00','','','','N','16:27:00','17:07:03','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','16:27:19',0,'','reception','2025-12-01 16:27:19','darshan','2025-12-01 17:07:03'),(4783,0,0,'O','N','2526',3053,0,'2025-12-01','0000-00-00',3134,0,3053,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:48:00','0000-00-00','','','','N','16:48:00','18:22:47','','','N','Y',NULL,'O','O','Z58','','0000-00-00 00:00:00','3','16:49:03',0,'','janvi','2025-12-01 16:49:03','drpratapsinh','2025-12-01 18:22:47'),(4784,0,0,'O','N','2526',3121,0,'2025-12-01','0000-00-00',3207,0,3121,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:51:00','0000-00-00','','','','N','16:51:00','17:17:40','','','N','Y',NULL,'O','O','Z59','','0000-00-00 00:00:00','2','16:51:27',0,'','drashti','2025-12-01 16:51:27','darshan','2025-12-01 17:17:40'),(4785,0,0,'O','N','2526',1834,0,'2025-12-01','0000-00-00',1880,0,1834,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:51:00','0000-00-00','','','','N','16:51:00','17:27:36','','','N','Y',NULL,'O','O','Z60','','0000-00-00 00:00:00','2','16:52:01',0,'','reception','2025-12-01 16:52:01','darshan','2025-12-01 17:27:36'),(4786,0,0,'O','N','2526',2746,0,'2025-12-01','0000-00-00',2816,0,2746,'N','','N','','','FOLLOWUP F','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:14:00','0000-00-00','','','','N','17:14:00','17:31:57','','','N','Y',NULL,'O','O','Z61','','0000-00-00 00:00:00','2','17:14:23',0,'','reception','2025-12-01 17:14:23','darshan','2025-12-01 17:31:57'),(4787,0,0,'O','N','2526',3308,0,'2025-12-01','0000-00-00',3397,0,3308,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:16:00','0000-00-00','','','','N','17:16:00','19:01:19','','N','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','2','17:16:07',0,'','reception','2025-12-01 17:16:07','darshan','2025-12-01 19:01:20'),(4788,0,0,'O','N','2526',3312,0,'2025-12-01','2026-02-28',3405,0,3312,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:18:00','0000-00-00','','','','N','17:18:00','19:26:40','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','2','17:18:31',0,'','shweta','2025-12-01 17:18:31','darshan','2025-12-01 19:26:40'),(4789,0,0,'O','N','2526',3313,0,'2025-12-01','2026-02-28',3406,0,3313,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','17:35:26','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','2','17:20:13',0,'','drashti','2025-12-01 17:20:13','darshan','2025-12-01 17:35:26'),(4790,0,0,'O','N','2526',3314,0,'2025-12-01','2026-02-28',2691,0,3314,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:21:00','0000-00-00','','','','N','17:21:00','18:20:32','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','4','17:21:57',0,'','shweta','2025-12-01 17:21:57','drarchit','2025-12-01 18:20:32'),(4791,0,0,'O','N','2526',3247,0,'2025-12-01','0000-00-00',3329,0,3247,'N','','N','','','','','N','D02','','N',12,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:26:00','0000-00-00','','','','N','17:26:00','18:18:47','','','N','Y',NULL,'O','O','Z65','','0000-00-00 00:00:00','3','17:26:39',0,'','reception','2025-12-01 17:26:39','drpratapsinh','2025-12-01 18:18:47'),(4792,0,0,'O','N','2526',1436,0,'2025-12-01','0000-00-00',1477,0,1436,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','17:46:18','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','17:27:29',0,'','reception','2025-12-01 17:27:29','darshan','2025-12-01 17:46:18'),(4793,0,0,'O','N','2526',3315,0,'2025-12-01','2026-02-28',3407,0,3315,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:29:00','0000-00-00','','','','N','17:29:00','18:35:51','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','4','17:29:50',0,'','drashti','2025-12-01 17:29:50','drarchit','2025-12-01 18:35:51'),(4794,0,0,'O','N','2526',2529,0,'2025-12-01','0000-00-00',2586,0,2529,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:30:00','0000-00-00','','','','N','17:30:00','18:11:51','','','N','Y',NULL,'O','O','Z67','','0000-00-00 00:00:00','6','17:30:45',0,'','manshi','2025-12-01 17:30:45','drsagar','2025-12-01 18:11:51'),(4795,0,0,'O','N','2526',3010,0,'2025-12-01','0000-00-00',3090,0,3010,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:30:00','0000-00-00','','','','N','17:30:00','19:10:19','','','N','Y',NULL,'O','O','Z68','','0000-00-00 00:00:00','4','17:31:04',0,'','janvi','2025-12-01 17:31:04','drarchit','2025-12-01 19:10:19'),(4796,0,0,'O','N','2526',3316,0,'2025-12-01','2026-02-28',3408,0,3316,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:31:00','0000-00-00','','','','N','17:31:00','17:51:27','','','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','2','17:31:46',0,'','reception','2025-12-01 17:31:46','darshan','2025-12-01 17:51:27'),(4797,0,0,'O','N','2526',3317,0,'2025-12-01','2026-02-28',3409,0,3317,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:34:00','0000-00-00','','','','N','17:34:00','19:29:52','','N','N','Y',NULL,'O','N','Z70','','0000-00-00 00:00:00','2','17:34:16',0,'','reception','2025-12-01 17:34:16','darshan','2025-12-01 19:29:52'),(4798,0,0,'O','N','2526',3318,0,'2025-12-01','2026-02-28',3410,0,3318,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:35:00','0000-00-00','','','','N','17:35:00','18:55:08','','','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','5','18:18:11',0,'','janvi','2025-12-01 17:35:13','drjayant','2025-12-01 18:55:08'),(4799,0,0,'O','N','2526',2188,0,'2025-12-01','0000-00-00',2245,0,2188,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:36:00','0000-00-00','','','','N','17:36:00','17:59:42','','','N','Y',NULL,'O','O','L03','','0000-00-00 00:00:00','2','17:36:39',0,'','reception','2025-12-01 17:36:39','darshan','2025-12-01 17:59:42'),(4800,0,0,'O','N','2526',3302,0,'2025-12-01','0000-00-00',3391,0,3302,'N','','N','','','REPORTS','','N','D06','','N',4,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:39:00','0000-00-00','','','','N','17:39:00','19:15:52','','N','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','2','17:39:19',0,'','reception','2025-12-01 17:39:19','darshan','2025-12-01 19:15:52'),(4801,0,0,'O','N','2526',3319,0,'2025-12-01','2026-02-28',3411,0,3319,'N','','N','','','','','N','D02','','N',25,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','00:00:00','','','N','Y',NULL,'O','N','Z72','','0000-00-00 00:00:00','3','17:46:06',0,'','janvi','2025-12-01 17:46:06','','0000-00-00 00:00:00'),(4802,0,0,'I','N','2526',3305,229,'2025-12-01','2026-02-28',3394,0,3305,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','2025-12-03','','1','mo','N','17:50:00','20:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-01 17:48:38','mo','2025-12-03 21:05:55'),(4803,0,0,'O','N','2526',3320,0,'2025-12-01','2026-02-28',3412,0,3320,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','19:45:43','','N','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:49:20',0,'','reception','2025-12-01 17:49:20','darshan','2025-12-01 19:45:43'),(4804,0,0,'O','N','2526',3034,0,'2025-12-01','0000-00-00',3115,0,3034,'N','','N','','','','','N','D02','','N',106,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','18:24:57','','','N','Y',NULL,'O','O','Z73','','0000-00-00 00:00:00','3','17:49:36',0,'','janvi','2025-12-01 17:49:36','drpratapsinh','2025-12-01 18:24:57'),(4805,0,0,'O','N','2526',1371,0,'2025-12-01','0000-00-00',1412,0,1371,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','18:18:19','','','N','Y',NULL,'O','O','L05','','0000-00-00 00:00:00','2','17:50:46',0,'','reception','2025-12-01 17:50:46','darshan','2025-12-01 18:18:19'),(4806,0,0,'O','N','2526',1102,0,'2025-12-01','0000-00-00',1140,0,1102,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','18:21:12','','','N','Y',NULL,'O','O','Z74','','0000-00-00 00:00:00','6','17:51:10',0,'','manshi','2025-12-01 17:51:10','drsagar','2025-12-01 18:21:12'),(4807,0,0,'O','N','2526',3321,0,'2025-12-01','2026-02-28',3413,0,3321,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','20:26:26','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','4','17:51:41',0,'','drashti','2025-12-01 17:51:41','drarchit','2025-12-01 20:26:26'),(4808,0,0,'O','N','2526',3267,0,'2025-12-01','0000-00-00',3355,0,3267,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','18:15:03','','','N','Y',NULL,'O','O','L07','','0000-00-00 00:00:00','4','17:52:34',0,'','janvi','2025-12-01 17:52:34','drarchit','2025-12-01 18:15:03'),(4809,0,0,'O','N','2526',3322,0,'2025-12-01','2026-02-28',3414,0,3322,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:58:00','0000-00-00','','','','N','17:58:00','19:14:12','','','N','Y',NULL,'O','N','Z75','','0000-00-00 00:00:00','7','17:58:41',0,'','manshi','2025-12-01 17:58:41','drridham','2025-12-01 19:14:12'),(4810,0,0,'O','N','2526',3323,0,'2025-12-01','2026-02-28',3415,0,3323,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','19:14:27','','','N','Y',NULL,'O','N','Z76','','0000-00-00 00:00:00','7','17:59:04',0,'','manshi','2025-12-01 17:59:04','drridham','2025-12-01 19:14:26'),(4811,0,0,'O','N','2526',1501,0,'2025-12-01','0000-00-00',1542,0,1501,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','0000-00-00','','','','N','18:00:00','13:46:08','','','N','Y',NULL,'O','O','Z77','','0000-00-00 00:00:00','2','18:00:43',0,'','reception','2025-12-01 18:00:43','darshan','2025-12-02 13:46:08'),(4812,0,0,'O','N','2526',1672,0,'2025-12-01','0000-00-00',1717,0,1672,'N','','N','','','FOLLOWUP','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:01:00','0000-00-00','','','','N','18:01:00','19:28:01','','','N','Y',NULL,'O','O','Z78','','0000-00-00 00:00:00','4','18:01:44',0,'','drashti','2025-12-01 18:01:44','drarchit','2025-12-01 19:28:01'),(4813,0,0,'O','N','2526',3324,0,'2025-12-01','2026-02-28',3416,0,3324,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','19:29:57','','','N','Y',NULL,'O','N','Z79','','0000-00-00 00:00:00','4','18:02:28',0,'','janvi','2025-12-01 18:02:28','drarchit','2025-12-01 19:29:57'),(4814,0,0,'O','N','2526',2772,0,'2025-12-01','0000-00-00',2841,0,2772,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','19:33:04','','','N','Y',NULL,'O','O','Z80','','0000-00-00 00:00:00','2','18:03:40',0,'','reception','2025-12-01 18:03:40','darshan','2025-12-01 19:33:04'),(4815,0,0,'O','N','2526',3325,0,'2025-12-01','2026-02-28',3417,0,3325,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','18:55:30','','','N','Y',NULL,'O','N','Z81','','0000-00-00 00:00:00','5','18:18:11',0,'','janvi','2025-12-01 18:03:44','drjayant','2025-12-01 18:55:30'),(4816,0,0,'O','N','2526',1288,0,'2025-12-01','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','18:17:52','','','N','Y',NULL,'O','O','Y03','','0000-00-00 00:00:00','3','18:07:42',0,'','janvi','2025-12-01 18:07:42','drpratapsinh','2025-12-01 18:17:52'),(4817,0,0,'O','N','2526',1523,0,'2025-12-01','0000-00-00',1564,0,1523,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:08:00','0000-00-00','','','','N','18:08:00','18:34:10','','','N','Y',NULL,'O','O','L08','','0000-00-00 00:00:00','2','18:08:52',0,'','reception','2025-12-01 18:08:52','darshan','2025-12-01 18:34:10'),(4818,0,0,'O','N','2526',3326,0,'2025-12-01','2026-02-28',3418,0,3326,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','18:34:35','','','N','Y',NULL,'O','N','Z82','','0000-00-00 00:00:00','5','18:18:11',0,'','drashti','2025-12-01 18:10:28','drjayant','2025-12-01 18:34:35'),(4819,0,0,'O','N','2526',3327,0,'2025-12-01','2026-02-28',3419,0,3327,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','19:10:41','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','18:11:11',0,'','reception','2025-12-01 18:11:11','darshan','2025-12-01 19:10:41'),(4820,0,0,'O','N','2526',2804,0,'2025-12-01','0000-00-00',2873,0,2804,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','18:22:18','','','N','Y',NULL,'O','O','Z83','','0000-00-00 00:00:00','3','18:12:51',0,'','drashti','2025-12-01 18:12:51','drpratapsinh','2025-12-01 18:22:18'),(4821,0,0,'O','N','2526',3328,0,'2025-12-01','2026-02-28',3420,0,3328,'N','','N','','','NV','','N','D06','','N',4,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','18:40:47','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','2','18:12:58',0,'','reception','2025-12-01 18:12:58','darshan','2025-12-03 18:40:47'),(4822,0,0,'O','N','2526',760,0,'2025-12-01','0000-00-00',791,0,760,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','18:53:10','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','2','18:14:32',0,'','reception','2025-12-01 18:14:32','darshan','2025-12-01 18:53:10'),(4823,0,0,'O','N','2526',3329,0,'2025-12-01','2026-02-28',3421,0,3329,'N','','N','','','NC','','N','D27','','N',238,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','20:29:54','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','4','18:15:21',0,'','drashti','2025-12-01 18:15:21','drarchit','2025-12-01 20:29:54'),(4824,0,0,'O','N','2526',3330,0,'2025-12-01','2026-02-28',3422,0,3330,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','18:55:35','','','N','Y',NULL,'O','N','Z84','','0000-00-00 00:00:00','2','18:16:11',0,'','reception','2025-12-01 18:16:11','darshan','2025-12-01 18:55:35'),(4825,0,0,'O','N','2526',3331,0,'2025-12-01','2026-02-28',3423,0,3331,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','18:54:27','','','N','Y',NULL,'O','N','Z85','','0000-00-00 00:00:00','5','18:18:11',0,'','janvi','2025-12-01 18:18:11','drjayant','2025-12-01 18:54:27'),(4826,0,0,'O','N','2526',574,0,'2025-12-01','0000-00-00',601,0,574,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','19:45:30','','','N','Y',NULL,'O','O','Z86','','0000-00-00 00:00:00','4','18:26:28',0,'','drashti','2025-12-01 18:26:28','drarchit','2025-12-01 19:45:30'),(4827,0,0,'O','N','2526',1238,0,'2025-12-01','0000-00-00',1279,0,1238,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:27:00','0000-00-00','','','','N','18:27:00','19:15:50','','N','N','Y',NULL,'O','O','L13','','0000-00-00 00:00:00','4','18:28:00',0,'','drashti','2025-12-01 18:28:00','drarchit','2025-12-01 19:15:50'),(4828,0,0,'O','N','2526',3332,0,'2025-12-01','2026-02-28',3424,0,3332,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','18:54:51','','','N','Y',NULL,'O','N','Z87','','0000-00-00 00:00:00','6','18:29:42',0,'','manshi','2025-12-01 18:29:42','drsagar','2025-12-01 18:54:51'),(4829,0,0,'O','N','2526',3333,0,'2025-12-01','2026-02-28',3425,0,3333,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','20:16:32','','N','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','4','18:30:21',0,'','janvi','2025-12-01 18:30:21','drarchit','2025-12-01 20:16:32'),(4830,0,0,'O','N','2526',1455,0,'2025-12-01','0000-00-00',1496,0,1455,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','20:08:50','','','N','Y',NULL,'O','O','Z88','','0000-00-00 00:00:00','4','18:31:26',0,'','drashti','2025-12-01 18:31:26','drarchit','2025-12-01 20:08:50'),(4831,0,0,'O','N','2526',3334,0,'2025-12-01','2026-02-28',3426,0,3334,'N','','N','','','','','N','D02','','N',212,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','00:00:00','','','N','N',NULL,'O','N','Z89','','0000-00-00 00:00:00','3','18:32:57',0,'','janvi','2025-12-01 18:32:57','','0000-00-00 00:00:00'),(4832,0,0,'O','N','2526',2681,0,'2025-12-01','0000-00-00',2750,0,2681,'N','','N','','','','','N','D02','','N',200,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','18:34:58','','','N','Y',NULL,'O','O','Z90','','0000-00-00 00:00:00','3','18:33:02',0,'','drashti','2025-12-01 18:33:02','drpratapsinh','2025-12-01 18:34:58'),(4833,0,0,'O','N','2526',416,0,'2025-12-01','0000-00-00',438,0,416,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','19:14:02','','','N','Y',NULL,'O','O','L15','','0000-00-00 00:00:00','2','18:34:13',0,'','reception','2025-12-01 18:34:13','darshan','2025-12-01 19:14:02'),(4834,0,0,'I','N','2526',0,230,'2025-12-01','2026-02-28',3427,0,0,'N','','N','','','','N','N','D02','','N',0,'','42',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','2025-12-03','','1','mo','N','18:30:00','20:45:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-01 18:34:27','mo','2025-12-03 20:56:55'),(4835,0,0,'O','N','2526',3335,0,'2025-12-01','2026-02-28',3428,0,3335,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:35:00','0000-00-00','','','','N','18:35:00','12:05:07','','','N','Y',NULL,'O','N','Z91','','0000-00-00 00:00:00','5','18:35:56',0,'','drashti','2025-12-01 18:35:56','drjayant','2025-12-02 12:05:07'),(4836,0,0,'O','N','2526',2268,0,'2025-12-01','0000-00-00',2325,0,2268,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:39:00','0000-00-00','','','','N','18:39:00','19:45:20','','','N','Y',NULL,'O','O','Z92','','0000-00-00 00:00:00','2','18:39:52',0,'','reception','2025-12-01 18:39:52','darshan','2025-12-01 19:45:20'),(4837,0,0,'O','N','2526',1274,0,'2025-12-01','0000-00-00',1313,0,1274,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','20:02:00','','','N','Y',NULL,'O','O','Z93','','0000-00-00 00:00:00','4','18:44:05',0,'','janvi','2025-12-01 18:44:05','drarchit','2025-12-01 20:02:00'),(4838,0,0,'O','N','2526',3336,0,'2025-12-01','2026-02-28',3429,0,3336,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','18:52:56','','','N','Y',NULL,'O','N','Z94','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-12-01 18:46:27','drarchit','2025-12-01 18:52:56'),(4839,0,0,'O','N','2526',3337,0,'2025-12-01','2026-02-28',3430,0,3337,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','19:35:24','','','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','4','18:57:44',0,'','drashti','2025-12-01 18:49:14','drarchit','2025-12-01 19:35:24'),(4840,0,0,'O','N','2526',303,0,'2025-12-01','0000-00-00',319,0,303,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','18:50:50','','','N','Y',NULL,'O','O','Z95','','0000-00-00 00:00:00','3','18:49:15',0,'','janvi','2025-12-01 18:49:15','drpratapsinh','2025-12-01 18:50:50'),(4841,0,0,'O','N','2526',3338,0,'2025-12-01','2026-02-28',3431,0,3338,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:12:08','','','N','Y',NULL,'O','N','Z96','','0000-00-00 00:00:00','5','18:51:38',0,'','janvi','2025-12-01 18:51:38','drjayant','2025-12-01 19:12:08'),(4842,0,0,'O','N','2526',2752,0,'2025-12-01','0000-00-00',2822,0,2752,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:57:00','0000-00-00','','','','N','18:57:00','19:56:10','','','N','Y',NULL,'O','O','L17','','0000-00-00 00:00:00','2','18:57:22',0,'','reception','2025-12-01 18:57:22','darshan','2025-12-01 19:56:10'),(4843,0,0,'O','N','2526',2115,0,'2025-12-01','0000-00-00',2167,0,2115,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:59:00','0000-00-00','','','','N','18:59:00','19:14:43','','','N','Y',NULL,'O','O','Z97','','0000-00-00 00:00:00','3','18:59:31',0,'','reception','2025-12-01 18:59:31','drpratapsinh','2025-12-01 19:14:43'),(4844,0,0,'O','N','2526',2005,0,'2025-12-01','0000-00-00',2056,0,2005,'N','','N','','','','','N','D02','','N',146,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:02:00','0000-00-00','','','','N','19:02:00','19:14:57','','','N','Y',NULL,'O','O','Z98','','0000-00-00 00:00:00','3','19:02:32',0,'','reception','2025-12-01 19:02:32','drpratapsinh','2025-12-01 19:14:57'),(4845,0,0,'O','N','2526',3339,0,'2025-12-01','2026-02-28',3432,0,3339,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:08:00','0000-00-00','','','','N','19:08:00','20:04:44','','','N','Y',NULL,'O','N','Z99','','0000-00-00 00:00:00','2','19:08:56',0,'','reception','2025-12-01 19:08:56','darshan','2025-12-01 20:04:44'),(4846,0,0,'O','N','2526',1480,0,'2025-12-01','0000-00-00',1521,0,1480,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:13:00','0000-00-00','','','','N','19:13:00','19:54:39','','','N','Y',NULL,'O','O','L18','','0000-00-00 00:00:00','4','19:13:40',0,'','janvi','2025-12-01 19:13:40','drarchit','2025-12-01 19:54:39'),(4847,0,0,'O','N','2526',3340,0,'2025-12-01','2026-02-28',3433,0,3340,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:15:00','0000-00-00','','','','N','19:15:00','20:20:06','','','N','Y',NULL,'O','N','L19','','0000-00-00 00:00:00','4','19:15:31',0,'','drashti','2025-12-01 19:15:31','drarchit','2025-12-01 20:20:06'),(4848,0,0,'O','N','2526',3341,0,'2025-12-01','2026-02-28',3434,0,3341,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:17:00','0000-00-00','','','','N','19:17:00','19:29:59','','','N','Y',NULL,'O','N','Z100','','0000-00-00 00:00:00','5','19:17:10',0,'','reception','2025-12-01 19:17:10','drjayant','2025-12-01 19:29:59'),(4849,0,0,'O','N','2526',3342,0,'2025-12-01','2026-02-28',3435,0,3342,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:37:00','0000-00-00','','','','N','19:37:00','19:54:50','','','N','Y',NULL,'O','N','Z101','','0000-00-00 00:00:00','5','19:37:45',0,'','drashti','2025-12-01 19:37:45','drjayant','2025-12-01 19:54:50'),(4850,0,0,'O','N','2526',3124,0,'2025-12-01','0000-00-00',3210,0,3124,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:37:00','0000-00-00','','','','N','19:37:00','19:40:37','','','N','Y',NULL,'O','O','Z102','','0000-00-00 00:00:00','5','19:38:01',0,'','reception','2025-12-01 19:38:01','drjayant','2025-12-01 19:40:37'),(4851,0,0,'O','N','2526',2567,0,'2025-12-01','0000-00-00',2627,0,2567,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:56:00','0000-00-00','','','','N','19:56:00','20:07:53','','','N','Y',NULL,'O','O','Z103','','0000-00-00 00:00:00','2','19:56:38',0,'','reception','2025-12-01 19:56:38','darshan','2025-12-01 20:07:53'),(4852,0,0,'O','N','2526',3021,0,'2025-12-01','0000-00-00',3101,0,3021,'N','','N','','','DRESSING','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:20:00','0000-00-00','','','','N','20:20:00','00:00:00','','','N','N',NULL,'O','O','Y04','','0000-00-00 00:00:00','3','20:20:11',0,'','reception','2025-12-01 20:20:11','','0000-00-00 00:00:00'),(4853,0,0,'O','N','2526',3343,0,'2025-12-02','2026-03-01',3436,0,3343,'N','','N','','','NV','','N','D06','','N',240,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:05:00','0000-00-00','','','','N','09:05:00','13:00:25','','N','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','2','09:06:00',0,'','reception','2025-12-02 09:06:00','darshan','2025-12-02 13:00:25'),(4854,0,0,'O','N','2526',3344,0,'2025-12-02','2026-03-01',3437,0,3344,'N','','N','','','NE+ER','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:20:00','0000-00-00','','','','N','09:20:00','17:26:07','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','2','09:20:36',0,'','reception','2025-12-02 09:20:36','darshan','2025-12-02 17:26:07'),(4855,0,0,'I','N','2526',0,231,'2025-12-02','2026-03-01',3438,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-12-03','','1','mo','N','09:30:00','10:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-02 09:39:14','riya','2025-12-03 10:29:49'),(4856,0,0,'O','N','2526',3345,0,'2025-12-02','2026-03-01',3439,0,3345,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:58:00','0000-00-00','','','','N','09:58:00','11:27:33','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','2','09:58:28',0,'','shweta','2025-12-02 09:58:28','darshan','2025-12-02 11:27:33'),(4857,0,0,'I','N','2526',0,232,'2025-12-02','2026-03-01',3440,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','2025-12-04','','1','mo','N','10:00:00','11:20:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-02 10:00:10','mo','2025-12-04 12:12:22'),(4858,0,0,'O','N','2526',3346,0,'2025-12-02','2026-03-01',3441,0,3346,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:04:00','0000-00-00','','','','N','10:04:00','10:43:47','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','10:04:28',0,'','reception','2025-12-02 10:04:28','darshan','2025-12-02 10:43:47'),(4859,0,0,'O','N','2526',3347,0,'2025-12-02','2026-03-01',3442,0,3347,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:06:00','0000-00-00','','','','N','10:06:00','11:31:54','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','2','10:06:20',0,'','reception','2025-12-02 10:06:20','darshan','2025-12-02 11:31:54'),(4860,0,0,'O','N','2526',1505,0,'2025-12-02','0000-00-00',1546,0,1505,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:08:00','0000-00-00','','','','N','10:08:00','10:47:00','','','N','Y',NULL,'O','O','E02','','0000-00-00 00:00:00','2','10:08:28',0,'','reception','2025-12-02 10:08:28','darshan','2025-12-02 10:47:00'),(4861,0,0,'O','N','2526',1335,0,'2025-12-02','0000-00-00',1375,0,1335,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:08:00','0000-00-00','','','','N','10:08:00','11:43:31','','','N','Y',NULL,'O','O','Z05','','0000-00-00 00:00:00','2','10:08:39',0,'','janvi','2025-12-02 10:08:39','darshan','2025-12-02 11:43:31'),(4862,0,0,'O','N','2526',3348,0,'2025-12-02','2026-03-01',3443,0,3348,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','0000-00-00','','','','N','10:15:00','10:45:40','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','3','10:15:15',0,'','janvi','2025-12-02 10:15:15','drpratapsinh','2025-12-02 10:45:40'),(4863,0,0,'I','N','2526',0,233,'2025-12-02','2026-03-01',3444,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','2025-12-05','','1','mo','N','10:15:00','12:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-02 10:22:43','mo','2025-12-05 13:02:43'),(4864,0,0,'O','N','2526',3349,0,'2025-12-02','2026-03-01',3445,0,3349,'N','','N','','','','','N','D02','','N',51,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:23:00','0000-00-00','','','','N','10:23:00','18:55:19','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','3','10:23:39',0,'','reception','2025-12-02 10:23:39','drpratapsinh','2025-12-02 18:55:19'),(4865,0,0,'O','N','2526',2842,0,'2025-12-02','0000-00-00',2914,0,2842,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','12:14:48','','','N','Y',NULL,'O','O','Z08','','0000-00-00 00:00:00','2','10:28:08',0,'','reception','2025-12-02 10:28:07','darshan','2025-12-02 12:14:48'),(4866,0,0,'O','N','2526',3072,0,'2025-12-02','0000-00-00',3158,0,3072,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','18:55:42','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','3','10:28:41',0,'','janvi','2025-12-02 10:28:41','drpratapsinh','2025-12-02 18:55:42'),(4867,0,0,'O','N','2526',3350,0,'2025-12-02','2026-03-01',3446,0,3350,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:31:00','0000-00-00','','','','N','10:31:00','13:21:59','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:31:11',0,'','reception','2025-12-02 10:31:11','darshan','2025-12-02 13:21:59'),(4868,0,0,'I','N','2526',0,234,'2025-12-02','2026-03-01',3447,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:30:00','2025-12-02','','1','mo','N','10:30:00','16:45:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-02 10:33:56','mo','2025-12-02 17:09:10'),(4869,0,0,'O','N','2526',755,0,'2025-12-02','0000-00-00',787,0,755,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','11:16:12','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:39:17',0,'','reception','2025-12-02 10:39:17','darshan','2025-12-02 11:16:12'),(4870,0,0,'O','N','2526',1440,0,'2025-12-02','0000-00-00',1481,0,1440,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:41:00','0000-00-00','','','','N','10:41:00','11:29:22','','','N','Y',NULL,'O','O','Z10','','0000-00-00 00:00:00','5','11:16:16',0,'','janvi','2025-12-02 10:41:49','drjayant','2025-12-02 11:29:22'),(4871,0,0,'O','N','2526',3351,0,'2025-12-02','2026-03-01',3448,0,3351,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:41:00','0000-00-00','','','','N','10:41:00','11:20:52','','','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:42:04',0,'','reception','2025-12-02 10:42:04','darshan','2025-12-02 11:20:52'),(4872,0,0,'O','N','2526',3352,0,'2025-12-02','2026-03-01',3449,0,3352,'N','','N','','','NC','N','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','11:13:12','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','4','10:44:35',0,'','janvi','2025-12-02 10:44:35','drarchit','2025-12-02 11:13:12'),(4873,0,0,'O','N','2526',1227,0,'2025-12-02','0000-00-00',1268,0,1227,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','10:52:12','','','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','3','10:47:00',0,'','reception','2025-12-02 10:47:00','drpratapsinh','2025-12-02 10:52:12'),(4874,0,0,'O','N','2526',1346,0,'2025-12-02','0000-00-00',1386,0,1346,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','12:33:40','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','2','10:48:11',0,'','reception','2025-12-02 10:48:11','darshan','2025-12-02 12:33:40'),(4875,0,0,'O','N','2526',3353,0,'2025-12-02','2026-03-01',3450,0,3353,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','11:19:16','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','4','10:48:30',0,'','janvi','2025-12-02 10:48:30','drarchit','2025-12-02 11:19:15'),(4876,0,0,'O','N','2526',3354,0,'2025-12-02','2026-03-01',3451,0,3354,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:50:00','0000-00-00','','','','N','10:50:00','19:24:35','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','3','10:50:50',0,'','reception','2025-12-02 10:50:50','drpratapsinh','2025-12-02 19:24:35'),(4877,0,0,'O','N','2526',3355,0,'2025-12-02','2026-03-01',3452,0,3355,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','11:31:50','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','4','10:51:16',0,'','shweta','2025-12-02 10:51:16','drarchit','2025-12-02 11:31:50'),(4878,0,0,'O','N','2526',2874,0,'2025-12-02','0000-00-00',2201,0,2874,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','11:04:58','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','3','10:51:41',0,'','janvi','2025-12-02 10:51:41','drpratapsinh','2025-12-02 11:04:58'),(4879,0,0,'O','N','2526',625,0,'2025-12-02','0000-00-00',655,0,625,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','11:37:57','','','N','Y',NULL,'O','O','G02','','0000-00-00 00:00:00','2','11:04:30',0,'','reception','2025-12-02 11:04:30','darshan','2025-12-02 11:37:57'),(4880,0,0,'O','N','2526',951,0,'2025-12-02','0000-00-00',982,0,951,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','12:58:12','','','N','Y',NULL,'O','O','G03','','0000-00-00 00:00:00','4','11:04:31',0,'','shweta','2025-12-02 11:04:31','drarchit','2025-12-02 12:58:12'),(4881,0,0,'O','N','2526',1440,0,'2025-12-02','0000-00-00',1481,0,1440,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','11:50:47','','','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','4','11:06:32',0,'','shweta','2025-12-02 11:06:32','drarchit','2025-12-02 11:50:47'),(4882,0,0,'O','N','2526',3356,0,'2025-12-02','2026-03-01',3453,0,3356,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','11:55:26','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','4','11:07:53',0,'','reception','2025-12-02 11:07:53','drarchit','2025-12-02 11:55:26'),(4883,0,0,'O','N','2526',3357,0,'2025-12-02','2026-03-01',3454,0,3357,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','11:55:40','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','11:13:04',0,'','janvi','2025-12-02 11:13:04','darshan','2025-12-02 11:55:40'),(4884,0,0,'O','N','2526',3358,0,'2025-12-02','2026-03-01',3455,0,3358,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','13:51:09','','N','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','2','11:14:18',0,'','reception','2025-12-02 11:14:18','darshan','2025-12-02 13:51:09'),(4885,0,0,'O','N','2526',3071,0,'2025-12-02','0000-00-00',3157,0,3071,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','11:58:50','','','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','2','11:21:08',0,'','reception','2025-12-02 11:21:08','darshan','2025-12-02 11:58:50'),(4886,0,0,'O','N','2526',3359,0,'2025-12-02','2026-03-01',3456,0,3359,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','12:42:00','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','11:23:11',0,'','reception','2025-12-02 11:23:11','darshan','2025-12-02 12:42:00'),(4887,0,0,'O','N','2526',3360,0,'2025-12-02','2026-03-01',3457,0,3360,'N','','N','','','NV','','N','D06','','N',241,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','14:04:28','','N','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','11:25:45',0,'','reception','2025-12-02 11:25:45','darshan','2025-12-02 14:04:28'),(4888,0,0,'O','N','2526',3361,0,'2025-12-02','2026-03-01',3458,0,3361,'N','','N','','','NV','','N','D06','','N',4,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','14:04:46','','N','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:27:43',0,'','reception','2025-12-02 11:27:43','darshan','2025-12-02 14:04:46'),(4889,0,0,'O','N','2526',1432,0,'2025-12-02','0000-00-00',1473,0,1432,'N','','N','','','','','N','D14','','N',102,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','11:47:45','','','N','Y',NULL,'O','O','Z18','','0000-00-00 00:00:00','7','11:27:54',0,'','manshi','2025-12-02 11:27:54','drridham','2025-12-02 11:47:45'),(4890,0,0,'O','N','2526',3362,0,'2025-12-02','2026-03-01',3459,0,3362,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','11:43:38','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','6','11:31:20',0,'','manshi','2025-12-02 11:31:19','drsagar','2025-12-02 11:43:38'),(4891,0,0,'O','N','2526',3363,0,'2025-12-02','2026-03-01',3460,0,3363,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','12:00:00','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','4','11:33:04',0,'','shweta','2025-12-02 11:33:04','drarchit','2025-12-02 12:00:00'),(4892,0,0,'O','N','2526',3364,0,'2025-12-02','2026-03-01',3461,0,3364,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','12:45:17','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','2','11:33:36',0,'','reception','2025-12-02 11:33:36','darshan','2025-12-02 12:45:17'),(4893,0,0,'O','N','2526',3365,0,'2025-12-02','2026-03-01',3462,0,3365,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','12:10:06','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','2','11:34:02',0,'','janvi','2025-12-02 11:34:02','darshan','2025-12-02 12:10:06'),(4894,0,0,'O','N','2526',3366,0,'2025-12-02','2026-03-01',3463,0,3366,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','14:18:08','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','2','11:36:39',0,'','reception','2025-12-02 11:36:39','darshan','2025-12-02 14:18:08'),(4895,0,0,'O','N','2526',3367,0,'2025-12-02','2026-03-01',3464,0,3367,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','11:46:44','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','5','11:39:11',0,'','shweta','2025-12-02 11:39:11','drjayant','2025-12-02 11:46:44'),(4896,0,0,'O','N','2526',3368,0,'2025-12-02','2026-03-01',3465,0,3368,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','12:07:17','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','4','11:41:20',0,'','reception','2025-12-02 11:41:20','drarchit','2025-12-02 12:07:16'),(4897,0,0,'O','N','2526',3369,0,'2025-12-02','2026-03-01',1481,0,3369,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','00:00:00','','','N','Y',NULL,'O','N','Y02','','0000-00-00 00:00:00','7','11:46:09',0,'','manshi','2025-12-02 11:46:09','','0000-00-00 00:00:00'),(4898,0,0,'O','N','2526',3370,0,'2025-12-02','2026-03-01',3466,0,3370,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:49:00','0000-00-00','','','','N','11:49:00','12:15:56','','','N','Y',NULL,'O','N','H06','','0000-00-00 00:00:00','4','11:49:36',0,'','reception','2025-12-02 11:49:36','drarchit','2025-12-02 12:15:56'),(4899,0,0,'O','N','2526',3371,0,'2025-12-02','2026-03-01',3446,0,3371,'N','','N','','','NV','','N','D03','','N',2,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:53:00','0000-00-00','','','','N','11:53:00','12:14:55','','','N','Y',NULL,'O','N','H07','','0000-00-00 00:00:00','6','11:53:22',0,'','manshi','2025-12-02 11:53:22','drsagar','2025-12-02 12:14:55'),(4900,0,0,'O','N','2526',3372,0,'2025-12-02','2026-03-01',3467,0,3372,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:55:00','0000-00-00','','','','N','11:55:00','12:28:35','','','N','Y',NULL,'O','N','H08','','0000-00-00 00:00:00','4','11:55:39',0,'','shweta','2025-12-02 11:55:39','drarchit','2025-12-02 12:28:35'),(4901,0,0,'O','N','2526',3373,0,'2025-12-02','2026-03-01',3468,0,3373,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','12:25:56','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','12:00:15',0,'','reception','2025-12-02 12:00:15','darshan','2025-12-02 12:25:56'),(4902,0,0,'O','N','2526',3374,0,'2025-12-02','2026-03-01',3469,0,3374,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','12:38:06','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','4','12:00:21',0,'','shweta','2025-12-02 12:00:21','drarchit','2025-12-02 12:38:06'),(4903,0,0,'O','N','2526',3375,0,'2025-12-02','2026-03-01',3470,0,3375,'N','','N','','','RNE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:04:00','0000-00-00','','','','N','12:04:00','13:29:06','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','2','12:04:03',0,'','reception','2025-12-02 12:04:03','darshan','2025-12-02 13:29:06'),(4904,0,0,'O','N','2526',3376,0,'2025-12-02','2026-03-01',3471,0,3376,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','12:55:05','','','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','4','12:06:43',0,'','janvi','2025-12-02 12:06:43','drarchit','2025-12-02 12:55:05'),(4905,0,0,'O','N','2526',3377,0,'2025-12-02','2026-03-01',3472,0,3377,'N','','N','','','NV','','N','D06','','N',242,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:13:00','0000-00-00','','','','N','12:13:00','14:12:42','','N','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','2','12:13:12',0,'','reception','2025-12-02 12:13:12','darshan','2025-12-02 14:12:42'),(4906,0,0,'O','N','2526',3378,0,'2025-12-02','2026-03-01',3473,0,3378,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:20:00','0000-00-00','','','','N','12:20:00','18:53:47','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','3','12:20:37',0,'','reception','2025-12-02 12:20:37','drpratapsinh','2025-12-02 18:53:47'),(4907,0,0,'O','N','2526',3379,0,'2025-12-02','2026-03-01',3474,0,3379,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:23:00','0000-00-00','','','','N','12:23:00','20:00:16','','N','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','4','12:23:24',0,'','shweta','2025-12-02 12:23:24','drarchit','2025-12-02 20:00:16'),(4908,0,0,'O','N','2526',3265,0,'2025-12-02','0000-00-00',3353,0,3265,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:24:00','0000-00-00','','','','N','12:24:00','13:06:15','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','6','12:24:23',0,'','manshi','2025-12-02 12:24:23','drsagar','2025-12-02 13:06:15'),(4909,0,0,'O','N','2526',2848,0,'2025-12-02','0000-00-00',2920,0,2848,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:29:00','0000-00-00','','','','N','12:29:00','13:12:16','','','N','Y',NULL,'O','O','J02','','0000-00-00 00:00:00','2','12:30:01',0,'','reception','2025-12-02 12:30:01','darshan','2025-12-02 13:12:16'),(4910,0,0,'O','N','2526',3380,0,'2025-12-02','2026-03-01',3475,0,3380,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:32:00','0000-00-00','','','','N','12:32:00','13:02:17','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','4','12:32:28',0,'','janvi','2025-12-02 12:32:28','drarchit','2025-12-02 13:02:17'),(4911,0,0,'O','N','2526',3381,0,'2025-12-02','2026-03-01',3476,0,3381,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:38:00','0000-00-00','','','','N','12:38:00','14:19:57','','N','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','12:38:20',0,'','reception','2025-12-02 12:38:20','darshan','2025-12-02 14:19:57'),(4912,0,0,'O','N','2526',2279,0,'2025-12-02','0000-00-00',2336,0,2279,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:49:00','0000-00-00','','','','N','12:49:00','13:11:54','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','4','12:49:12',0,'','reception','2025-12-02 12:49:12','drarchit','2025-12-02 13:11:54'),(4913,0,0,'O','N','2526',3382,0,'2025-12-02','2026-03-01',3477,0,3382,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:49:00','0000-00-00','','','','N','12:49:00','13:23:33','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','4','13:07:57',0,'','janvi','2025-12-02 12:49:47','drarchit','2025-12-02 13:23:33'),(4914,0,0,'O','N','2526',3383,0,'2025-12-02','2026-03-01',3478,0,3383,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:51:00','0000-00-00','','','','N','12:51:00','00:00:00','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','7','12:51:06',0,'','manshi','2025-12-02 12:51:06','','0000-00-00 00:00:00'),(4915,0,0,'O','N','2526',3384,0,'2025-12-02','2026-03-01',3479,0,3384,'N','','N','','','','','N','D14','','N',243,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','0000-00-00','','','','N','13:00:00','00:00:00','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','7','13:00:06',0,'','manshi','2025-12-02 13:00:06','manshi','2025-12-02 13:04:24'),(4916,0,0,'O','N','2526',1501,0,'2025-12-02','0000-00-00',1542,0,1501,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','0000-00-00','','','','N','13:00:00','13:54:10','','N','N','Y',NULL,'O','O','Z34','','0000-00-00 00:00:00','2','13:00:42',0,'','reception','2025-12-02 13:00:42','darshan','2025-12-02 13:54:10'),(4917,0,0,'O','N','2526',2952,0,'2025-12-02','0000-00-00',3031,0,2952,'N','','N','','','REPORT','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:04:00','0000-00-00','','','','N','13:04:00','13:15:09','','','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','4','13:04:16',0,'','janvi','2025-12-02 13:04:16','drarchit','2025-12-02 13:15:09'),(4918,0,0,'O','N','2526',303,0,'2025-12-02','0000-00-00',319,0,303,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:12:00','0000-00-00','','','','N','13:12:00','13:32:03','','','N','Y',NULL,'O','O','Z36','','0000-00-00 00:00:00','3','13:12:25',0,'','janvi','2025-12-02 13:12:25','drpratapsinh','2025-12-02 13:32:03'),(4919,0,0,'O','N','2526',1054,0,'2025-12-02','0000-00-00',1087,0,1054,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:32:00','0000-00-00','','','','N','13:32:00','14:14:56','','','N','Y',NULL,'O','O','Z37','','0000-00-00 00:00:00','2','13:32:10',0,'','reception','2025-12-02 13:32:10','darshan','2025-12-02 14:14:56'),(4920,0,0,'I','N','2526',0,235,'2025-12-02','2026-03-01',3480,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:30:00','2025-12-04','','7','mo','N','13:30:00','16:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-02 13:43:38','riya','2025-12-04 16:39:26'),(4921,0,0,'O','N','2526',3385,0,'2025-12-02','2026-03-01',3481,0,3385,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:52:00','0000-00-00','','','','N','13:52:00','00:00:00','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','3','13:52:14',0,'','shweta','2025-12-02 13:52:14','','0000-00-00 00:00:00'),(4922,0,0,'O','N','2526',3386,0,'2025-12-02','2026-03-01',3482,0,3386,'N','','N','','','ER','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:08:00','0000-00-00','','','','N','16:08:00','19:25:08','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','3','16:08:29',0,'','reception','2025-12-02 16:08:29','drpratapsinh','2025-12-02 19:25:08'),(4923,0,0,'O','N','2526',1503,0,'2025-12-02','0000-00-00',1544,0,1503,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:25:00','0000-00-00','','','','N','16:25:00','17:18:04','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','16:25:14',0,'','shweta','2025-12-02 16:25:14','darshan','2025-12-02 17:18:04'),(4924,0,0,'O','N','2526',3387,0,'2025-12-02','2026-03-01',3483,0,3387,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:49:00','0000-00-00','','','','N','16:49:00','18:39:30','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','3','16:49:58',0,'','reception','2025-12-02 16:49:58','drpratapsinh','2025-12-02 18:39:30'),(4925,0,0,'O','N','2526',3005,0,'2025-12-02','0000-00-00',3084,0,3005,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:53:00','0000-00-00','','','','N','16:53:00','19:01:24','','','N','Y',NULL,'O','O','Z41','','0000-00-00 00:00:00','3','16:53:10',0,'','reception','2025-12-02 16:53:10','drpratapsinh','2025-12-02 19:01:24'),(4926,0,0,'O','N','2526',2118,0,'2025-12-02','0000-00-00',1763,0,2118,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:54:00','0000-00-00','','','','N','16:54:00','19:25:50','','','N','Y',NULL,'O','O','Z42','','0000-00-00 00:00:00','3','16:54:50',0,'','reception','2025-12-02 16:54:50','drpratapsinh','2025-12-02 19:25:50'),(4927,0,0,'O','N','2526',2711,0,'2025-12-02','0000-00-00',2782,0,2711,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:06:00','0000-00-00','','','','N','17:06:00','18:49:11','','','N','Y',NULL,'O','O','Z43','','0000-00-00 00:00:00','3','17:06:02',0,'','shweta','2025-12-02 17:06:02','drpratapsinh','2025-12-02 18:49:11'),(4928,0,0,'O','N','2526',2423,0,'2025-12-02','0000-00-00',2479,0,2423,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:18:00','0000-00-00','','','','N','17:18:00','17:43:21','','','N','Y',NULL,'O','O','Z44','','0000-00-00 00:00:00','2','17:19:00',0,'','reception','2025-12-02 17:19:00','darshan','2025-12-02 17:43:21'),(4929,0,0,'O','N','2526',979,0,'2025-12-02','0000-00-00',1012,0,979,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:22:00','0000-00-00','','','','N','17:22:00','17:50:06','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','17:22:18',0,'','reception','2025-12-02 17:22:18','darshan','2025-12-02 17:50:06'),(4930,0,0,'O','N','2526',3388,0,'2025-12-02','2026-03-01',3484,0,3388,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:24:00','0000-00-00','','','','N','17:24:00','17:56:41','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:24:35',0,'','reception','2025-12-02 17:24:35','darshan','2025-12-02 17:56:41'),(4931,0,0,'O','N','2526',3264,0,'2025-12-02','0000-00-00',3352,0,3264,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','19:51:43','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','6','17:27:13',0,'','manshi','2025-12-02 17:27:13','drsagar','2025-12-02 19:51:43'),(4932,0,0,'O','N','2526',3389,0,'2025-12-02','2026-03-01',3485,0,3389,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','18:14:31','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','4','17:32:03',0,'','janvi','2025-12-02 17:32:03','drarchit','2025-12-02 18:14:31'),(4933,0,0,'O','N','2526',3390,0,'2025-12-02','2026-03-01',3486,0,3390,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','18:21:57','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','4','17:32:31',0,'','shweta','2025-12-02 17:32:31','drarchit','2025-12-02 18:21:57'),(4934,0,0,'O','N','2526',1891,0,'2025-12-02','0000-00-00',1938,0,1891,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:34:00','0000-00-00','','','','N','17:34:00','18:06:30','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','17:34:44',0,'','reception','2025-12-02 17:34:44','darshan','2025-12-02 18:06:30'),(4935,0,0,'O','N','2526',3391,0,'2025-12-02','2026-03-01',3487,0,3391,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','18:37:50','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','5','18:05:55',0,'','reception','2025-12-02 17:41:24','drjayant','2025-12-02 18:37:50'),(4936,0,0,'O','N','2526',3392,0,'2025-12-02','2026-03-01',3021,0,3392,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','12:52:48','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','5','18:05:55',0,'','shweta','2025-12-02 17:42:21','drjayant','2025-12-03 12:52:48'),(4937,0,0,'O','N','2526',3393,0,'2025-12-02','2026-03-01',3488,0,3393,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','18:23:17','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:46:43',0,'','reception','2025-12-02 17:46:43','darshan','2025-12-02 18:23:17'),(4938,0,0,'O','N','2526',2932,0,'2025-12-02','0000-00-00',3009,0,2932,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','18:13:26','','','N','Y',NULL,'O','O','L06','','0000-00-00 00:00:00','2','17:48:33',0,'','reception','2025-12-02 17:48:33','darshan','2025-12-02 18:13:26'),(4939,0,0,'O','N','2526',3352,0,'2025-12-02','0000-00-00',3449,0,3352,'N','','N','','','FOLLOWUP C','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','18:09:36','','','N','Y',NULL,'O','O','Y03','','0000-00-00 00:00:00','4','17:48:33',0,'','shweta','2025-12-02 17:48:33','drarchit','2025-12-02 18:09:36'),(4940,0,0,'O','N','2526',3394,0,'2025-12-02','2026-03-01',3489,0,3394,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','18:50:34','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','4','17:50:01',0,'','janvi','2025-12-02 17:50:01','drarchit','2025-12-02 18:50:34'),(4941,0,0,'O','N','2526',2257,0,'2025-12-02','0000-00-00',2314,0,2257,'N','','N','','','FV','','N','D06','','N',163,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:58:00','0000-00-00','','','','N','17:58:00','18:27:18','','','N','Y',NULL,'O','O','Z50','','0000-00-00 00:00:00','2','17:58:38',0,'','reception','2025-12-02 17:58:38','darshan','2025-12-02 18:27:18'),(4942,0,0,'O','N','2526',3395,0,'2025-12-02','2026-03-01',3490,0,3395,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','00:00:00','','Y','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','18:05:17',0,'','reception','2025-12-02 18:05:17','darshan','2025-12-02 18:48:57'),(4943,0,0,'O','N','2526',3396,0,'2025-12-02','2026-03-01',3491,0,3396,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','18:47:34','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','4','18:05:47',0,'','shweta','2025-12-02 18:05:47','drarchit','2025-12-02 18:47:34'),(4944,0,0,'O','N','2526',2584,0,'2025-12-02','0000-00-00',2645,0,2584,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','18:57:24','','','N','Y',NULL,'O','O','L10','','0000-00-00 00:00:00','2','18:07:15',0,'','reception','2025-12-02 18:07:15','darshan','2025-12-02 18:57:24'),(4945,0,0,'O','N','2526',3397,0,'2025-12-02','2026-03-01',3492,0,3397,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:08:00','0000-00-00','','','','N','18:08:00','18:34:15','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','5','18:09:32',0,'','janvi','2025-12-02 18:08:13','drjayant','2025-12-02 18:34:15'),(4946,0,0,'O','N','2526',3398,0,'2025-12-02','2026-03-01',3493,0,3398,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','19:52:41','','N','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','4','18:09:17',0,'','shweta','2025-12-02 18:09:17','drarchit','2025-12-02 19:52:41'),(4947,0,0,'O','N','2526',3399,0,'2025-12-02','2026-03-01',3494,0,3399,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','13:01:46','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','5','18:10:14',0,'','reception','2025-12-02 18:10:14','drjayant','2025-12-03 13:01:46'),(4948,0,0,'O','N','2526',3400,0,'2025-12-02','2026-03-01',3495,0,3400,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','18:53:23','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','4','18:18:42',0,'','reception','2025-12-02 18:18:42','drarchit','2025-12-02 18:53:23'),(4949,0,0,'O','N','2526',856,0,'2025-12-02','0000-00-00',888,0,856,'N','','N','','','FV','','N','D06','','N',63,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','19:06:29','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','2','18:26:13',0,'','shweta','2025-12-02 18:26:13','darshan','2025-12-02 19:06:29'),(4950,0,0,'O','N','2526',2930,0,'2025-12-02','0000-00-00',3007,0,2930,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','19:13:41','','','N','Y',NULL,'O','O','Z55','','0000-00-00 00:00:00','3','18:26:45',0,'','janvi','2025-12-02 18:26:45','drpratapsinh','2025-12-02 19:13:41'),(4951,0,0,'O','N','2526',3401,0,'2025-12-02','2026-03-01',3496,0,3401,'N','','N','','','FC              ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','13:05:45','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','4','18:32:23',0,'','shweta','2025-12-02 18:32:23','drarchit','2025-12-06 13:05:45'),(4952,0,0,'O','N','2526',3402,0,'2025-12-02','2026-03-01',3497,0,3402,'N','','N','','','FC ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','19:00:48','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','4','18:34:10',0,'','shweta','2025-12-02 18:34:10','drarchit','2025-12-02 19:00:48'),(4953,0,0,'O','N','2526',3310,0,'2025-12-02','0000-00-00',3399,0,3310,'N','','N','','','','','N','D02','','N',90,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:35:00','0000-00-00','','','','N','18:35:00','19:26:05','','','N','Y',NULL,'O','O','Z56','','0000-00-00 00:00:00','3','18:36:05',0,'','janvi','2025-12-02 18:36:05','drpratapsinh','2025-12-02 19:26:05'),(4954,0,0,'O','N','2526',3403,0,'2025-12-02','2026-03-01',3498,0,3403,'N','','N','','','','','N','D27','','N',2,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:39:00','0000-00-00','','','','N','18:39:00','19:28:04','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','4','18:39:29',0,'','shweta','2025-12-02 18:39:29','drarchit','2025-12-02 19:28:04'),(4955,0,0,'O','N','2526',1775,0,'2025-12-02','0000-00-00',1821,0,1775,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','19:01:00','','','N','Y',NULL,'O','O','Z58','','0000-00-00 00:00:00','3','18:43:47',0,'','janvi','2025-12-02 18:43:47','drpratapsinh','2025-12-02 19:01:00'),(4956,0,0,'O','N','2526',2713,0,'2025-12-02','0000-00-00',2784,0,2713,'N','','N','','','FV','','N','D06','','N',202,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:50:00','0000-00-00','','','','N','18:50:00','19:10:10','','','N','Y',NULL,'O','O','L14','','0000-00-00 00:00:00','2','18:50:22',0,'','reception','2025-12-02 18:50:22','darshan','2025-12-02 19:10:10'),(4957,0,0,'O','N','2526',3404,0,'2025-12-02','2026-03-01',3499,0,3404,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:50:00','0000-00-00','','','','N','18:50:00','19:20:55','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','18:50:46',0,'','shweta','2025-12-02 18:50:46','drarchit','2025-12-02 19:20:55'),(4958,0,0,'O','N','2526',1953,0,'2025-12-02','0000-00-00',2001,0,1953,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:55:00','0000-00-00','','','','N','18:55:00','19:23:37','','','N','Y',NULL,'O','O','Z59','','0000-00-00 00:00:00','3','18:55:08',0,'','janvi','2025-12-02 18:55:08','drpratapsinh','2025-12-02 19:23:37'),(4959,0,0,'O','N','2526',1288,0,'2025-12-02','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:04:00','0000-00-00','','','','N','19:04:00','19:20:57','','','N','Y',NULL,'O','O','Z60','','0000-00-00 00:00:00','3','19:04:06',0,'','shweta','2025-12-02 19:04:06','drpratapsinh','2025-12-02 19:20:57'),(4960,0,0,'O','N','2526',3405,0,'2025-12-02','2026-03-01',3500,0,3405,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:06:00','0000-00-00','','','','N','19:06:00','19:38:55','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','4','19:06:09',0,'','reception','2025-12-02 19:06:09','drarchit','2025-12-02 19:38:55'),(4961,0,0,'O','N','2526',3406,0,'2025-12-02','2026-03-01',3501,0,3406,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:08:00','0000-00-00','','','','N','19:08:00','19:49:51','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','4','19:08:25',0,'','janvi','2025-12-02 19:08:25','drarchit','2025-12-02 19:49:51'),(4962,0,0,'O','N','2526',3407,0,'2025-12-02','2026-03-01',3502,0,3407,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:08:00','0000-00-00','','','','N','19:08:00','19:31:43','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','5','19:08:43',0,'','reception','2025-12-02 19:08:43','drjayant','2025-12-02 19:31:43'),(4963,0,0,'O','N','2526',2507,0,'2025-12-02','0000-00-00',2564,0,2507,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:09:00','0000-00-00','','','','N','19:09:00','19:43:10','','','N','Y',NULL,'O','O','Z64','','0000-00-00 00:00:00','4','19:09:47',0,'','shweta','2025-12-02 19:09:47','drarchit','2025-12-02 19:43:10'),(4964,0,0,'O','N','2526',2528,0,'2025-12-02','0000-00-00',1616,0,2528,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:17:00','0000-00-00','','','','N','19:17:00','19:51:55','','','N','Y',NULL,'O','O','Z65','','0000-00-00 00:00:00','6','19:17:28',0,'','shweta','2025-12-02 19:17:28','drsagar','2025-12-02 19:51:55'),(4965,0,0,'O','N','2526',3103,0,'2025-12-02','0000-00-00',3190,0,3103,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:20:00','0000-00-00','','','','N','19:20:00','19:47:05','','','N','Y',NULL,'O','O','L16','','0000-00-00 00:00:00','4','19:20:36',0,'','shweta','2025-12-02 19:20:36','drarchit','2025-12-02 19:47:05'),(4966,0,0,'O','N','2526',3408,0,'2025-12-02','2026-03-01',3503,0,3408,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:32:00','0000-00-00','','','','N','19:32:00','19:59:30','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','4','19:32:42',0,'','shweta','2025-12-02 19:32:42','drarchit','2025-12-02 19:59:30'),(4967,0,0,'O','N','2526',3409,0,'2025-12-02','2026-03-01',3504,0,3409,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:46:00','0000-00-00','','','','N','19:46:00','20:03:56','','','N','Y',NULL,'O','N','L17','','0000-00-00 00:00:00','4','19:46:32',0,'','reception','2025-12-02 19:46:32','drarchit','2025-12-02 20:03:56'),(4968,0,0,'I','N','2526',3406,236,'2025-12-02','2026-03-01',3501,0,3406,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:50:00','2025-12-05','','1','mo','N','19:50:00','11:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-02 19:58:07','mo','2025-12-05 11:56:14'),(4969,0,0,'O','N','2526',3410,0,'2025-12-02','2026-03-01',3505,0,3410,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:23:00','0000-00-00','','','','N','20:23:00','00:00:00','','','N','N',NULL,'O','N','Z67','','0000-00-00 00:00:00','4','20:24:01',0,'','reception','2025-12-02 20:24:01','','0000-00-00 00:00:00'),(4970,0,0,'I','N','2526',0,237,'2025-12-02','2026-03-01',3506,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:00:00','2025-12-05','','4','mo','N','20:00:00','07:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-02 20:34:56','vishal','2025-12-05 12:49:55'),(4971,0,0,'O','N','2526',2965,0,'2025-12-03','0000-00-00',3044,0,2965,'N','','N','','','FV','','N','D06','','N',143,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:41:00','0000-00-00','','','','N','08:41:00','10:43:31','','','N','Y',NULL,'O','O','Z01','','0000-00-00 00:00:00','2','08:41:24',0,'','reception','2025-12-03 08:41:24','darshan','2025-12-03 10:43:31'),(4972,0,0,'O','N','2526',3411,0,'2025-12-03','2026-03-02',3507,0,3411,'N','','N','','','ER','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:43:00','0000-00-00','','','','N','08:43:00','11:29:06','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','6','08:43:19',0,'','reception','2025-12-03 08:43:19','drsagar','2025-12-03 11:29:06'),(4973,0,0,'O','N','2526',3410,0,'2025-12-03','0000-00-00',3505,0,3410,'N','','N','','','INJ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:47:00','0000-00-00','','','','N','08:47:00','12:47:18','','','N','Y',NULL,'O','O','Z03','','0000-00-00 00:00:00','4','08:47:29',0,'','reception','2025-12-03 08:47:29','drarchit','2025-12-03 12:47:18'),(4974,0,0,'O','N','2526',3412,0,'2025-12-03','2026-03-02',3508,0,3412,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:11:00','0000-00-00','','','','N','09:11:00','10:50:16','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','2','09:11:14',0,'','reception','2025-12-03 09:11:14','darshan','2025-12-03 10:50:16'),(4975,0,0,'O','N','2526',3413,0,'2025-12-03','2026-03-02',3509,0,3413,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:23:00','0000-00-00','','','','N','09:23:00','12:07:57','','N','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','2','09:23:06',0,'','reception','2025-12-03 09:23:06','darshan','2025-12-03 12:07:57'),(4976,0,0,'O','N','2526',834,0,'2025-12-03','0000-00-00',865,0,834,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:34:00','0000-00-00','','','','N','09:34:00','11:54:54','','','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','3','09:34:57',0,'','janvi','2025-12-03 09:34:57','drpratapsinh','2025-12-03 11:54:54'),(4977,0,0,'I','N','2526',0,238,'2025-12-03','2026-03-02',3510,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:15:00','2025-12-08','','1','mo','N','09:15:00','12:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-03 09:36:53','mo','2025-12-08 12:55:01'),(4978,0,0,'O','N','2526',3414,0,'2025-12-03','2026-03-02',3511,0,3414,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:47:00','0000-00-00','','','','N','09:47:00','12:02:59','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','5','09:47:52',0,'','janvi','2025-12-03 09:47:52','drjayant','2025-12-03 12:02:59'),(4979,0,0,'O','N','2526',3415,0,'2025-12-03','2026-03-02',3512,0,3415,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:49:00','0000-00-00','','','','N','09:49:00','11:29:15','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','5','09:50:02',0,'','janvi','2025-12-03 09:50:02','drjayant','2025-12-03 11:29:15'),(4980,0,0,'O','N','2526',3416,0,'2025-12-03','2026-03-02',3513,0,3416,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:08:00','0000-00-00','','','','N','10:08:00','17:10:23','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','2','10:08:39',0,'','janvi','2025-12-03 10:08:39','darshan','2025-12-03 17:10:23'),(4981,0,0,'O','N','2526',1144,0,'2025-12-03','0000-00-00',1184,0,1144,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:11:00','0000-00-00','','','','N','10:11:00','11:25:32','','','N','Y',NULL,'O','O','Z10','','0000-00-00 00:00:00','2','10:11:23',0,'','reception','2025-12-03 10:11:23','darshan','2025-12-03 11:25:32'),(4982,0,0,'O','N','2526',3417,0,'2025-12-03','2026-03-02',3514,0,3417,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:14:00','0000-00-00','','','','N','10:14:00','00:00:00','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','5','10:14:13',0,'','janvi','2025-12-03 10:14:13','','0000-00-00 00:00:00'),(4983,0,0,'O','N','2526',693,0,'2025-12-03','0000-00-00',724,0,693,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:17:00','0000-00-00','','','','N','10:17:00','11:29:32','','','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','6','10:36:07',0,'','manshi','2025-12-03 10:17:20','drsagar','2025-12-03 11:29:32'),(4984,0,0,'O','N','2526',3418,0,'2025-12-03','2026-03-02',3515,0,3418,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:23:00','0000-00-00','','','','N','10:23:00','13:29:38','','N','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','2','10:23:53',0,'','reception','2025-12-03 10:23:53','darshan','2025-12-03 13:29:38'),(4985,0,0,'O','N','2526',1556,0,'2025-12-03','0000-00-00',1599,0,1556,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:26:00','0000-00-00','','','','N','10:26:00','12:00:34','','N','N','Y',NULL,'O','O','Z14','','0000-00-00 00:00:00','4','10:26:41',0,'','urvashi','2025-12-03 10:26:41','drarchit','2025-12-03 12:00:34'),(4986,0,0,'O','N','2526',3419,0,'2025-12-03','2026-03-02',3516,0,3419,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','13:11:43','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','4','10:28:51',0,'','urvashi','2025-12-03 10:28:51','drarchit','2025-12-03 13:11:43'),(4987,0,0,'O','N','2526',3420,0,'2025-12-03','2026-03-02',3517,0,3420,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:31:00','0000-00-00','','','','N','10:31:00','12:54:54','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','4','10:31:30',0,'','urvashi','2025-12-03 10:31:30','drarchit','2025-12-03 12:54:54'),(4988,0,0,'O','N','2526',1777,0,'2025-12-03','0000-00-00',1822,0,1777,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:31:00','0000-00-00','','','','N','10:31:00','10:54:06','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','10:32:00',0,'','reception','2025-12-03 10:32:00','darshan','2025-12-03 10:54:06'),(4989,0,0,'O','N','2526',2419,0,'2025-12-03','0000-00-00',2475,0,2419,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:35:00','0000-00-00','','','','N','10:35:00','11:08:23','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:35:16',0,'','reception','2025-12-03 10:35:16','darshan','2025-12-03 11:08:23'),(4990,0,0,'O','N','2526',3421,0,'2025-12-03','2026-03-02',3518,0,3421,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','11:36:06','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','10:37:01',0,'','urvashi','2025-12-03 10:37:01','darshan','2025-12-03 11:36:06'),(4991,0,0,'O','N','2526',3422,0,'2025-12-03','2026-03-02',3519,0,3422,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','11:39:26','','','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:37:13',0,'','reception','2025-12-03 10:37:13','darshan','2025-12-03 11:39:26'),(4992,0,0,'O','N','2526',3423,0,'2025-12-03','2026-03-02',3520,0,3423,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','12:04:36','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','2','10:39:40',0,'','reception','2025-12-03 10:39:40','darshan','2025-12-03 12:04:36'),(4993,0,0,'O','N','2526',101,0,'2025-12-03','0000-00-00',112,0,101,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:41:00','0000-00-00','','','','N','10:41:00','12:51:43','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','4','10:41:49',0,'','urvashi','2025-12-03 10:41:49','drarchit','2025-12-03 12:51:43'),(4994,0,0,'O','N','2526',3424,0,'2025-12-03','2026-03-02',3521,0,3424,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','11:54:03','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','4','10:51:24',0,'','urvashi','2025-12-03 10:51:24','drarchit','2025-12-03 11:54:03'),(4995,0,0,'O','N','2526',3425,0,'2025-12-03','2026-03-02',3522,0,3425,'N','','N','','','','','N','D27','','N',0,'','',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','00:00:00','','','N','N',NULL,'O','N','Z19','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-12-03 10:56:08','','0000-00-00 00:00:00'),(4996,0,0,'O','N','2526',3425,0,'2025-12-03','0000-00-00',3522,0,3425,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','11:28:41','','','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','5','10:58:05',0,'','urvashi','2025-12-03 10:58:05','drjayant','2025-12-03 11:28:41'),(4997,0,0,'O','N','2526',3425,0,'2025-12-03','0000-00-00',3522,0,3425,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','11:24:16','','','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','5','10:59:08',0,'','janvi','2025-12-03 10:59:08','drjayant','2025-12-03 11:24:16'),(4998,0,0,'O','N','2526',3425,0,'2025-12-03','0000-00-00',3522,0,3425,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','11:28:24','','','N','Y',NULL,'O','O','Y03','','0000-00-00 00:00:00','5','10:59:55',0,'','urvashi','2025-12-03 10:59:55','drjayant','2025-12-03 11:28:24'),(4999,0,0,'O','N','2526',3426,0,'2025-12-03','2026-03-02',3523,0,3426,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','18:28:20','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','3','11:01:43',0,'','reception','2025-12-03 11:01:43','drpratapsinh','2025-12-03 18:28:20'),(5000,0,0,'O','N','2526',3427,0,'2025-12-03','2026-03-02',3524,0,3427,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','11:28:06','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','5','11:02:08',0,'','janvi','2025-12-03 11:02:08','drjayant','2025-12-03 11:28:06'),(5001,0,0,'O','N','2526',3259,0,'2025-12-03','0000-00-00',3342,0,3259,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','11:54:30','','','N','Y',NULL,'O','O','Z22','','0000-00-00 00:00:00','3','11:07:37',0,'','reception','2025-12-03 11:07:37','drpratapsinh','2025-12-03 11:54:30'),(5002,0,0,'O','N','2526',3428,0,'2025-12-03','2026-03-02',3525,0,3428,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','11:43:49','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','2','11:10:34',0,'','reception','2025-12-03 11:10:34','darshan','2025-12-03 11:43:49'),(5003,0,0,'O','N','2526',3429,0,'2025-12-03','2026-03-02',3526,0,3429,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','12:28:42','','N','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','4','11:12:24',0,'','urvashi','2025-12-03 11:12:24','drarchit','2025-12-03 12:28:42'),(5004,0,0,'O','N','2526',2406,0,'2025-12-03','0000-00-00',2462,0,2406,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','12:18:46','','','N','Y',NULL,'O','O','Z23','','0000-00-00 00:00:00','2','11:13:04',0,'','reception','2025-12-03 11:13:04','darshan','2025-12-03 12:18:46'),(5005,0,0,'O','N','2526',1595,0,'2025-12-03','0000-00-00',1639,0,1595,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','12:00:35','','','N','Y',NULL,'O','O','H01','','0000-00-00 00:00:00','2','11:14:41',0,'','reception','2025-12-03 11:14:41','darshan','2025-12-03 12:00:35'),(5006,0,0,'O','N','2526',3430,0,'2025-12-03','2026-03-02',3527,0,3430,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','13:04:59','','N','N','Y',NULL,'O','N','G05','','0000-00-00 00:00:00','4','11:15:41',0,'','urvashi','2025-12-03 11:15:41','drarchit','2025-12-03 13:04:59'),(5007,0,0,'O','N','2526',33,0,'2025-12-03','0000-00-00',36,0,33,'N','','N','','','FOLLOWUP C','','N','D27','','N',6,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','11:43:34','','','N','Y',NULL,'O','O','Z24','','0000-00-00 00:00:00','4','11:17:39',0,'','urvashi','2025-12-03 11:17:39','drarchit','2025-12-03 11:43:34'),(5008,0,0,'O','N','2526',2290,0,'2025-12-03','0000-00-00',2347,0,2290,'N','','N','','','','','N','D02','','N',96,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','11:57:55','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','3','11:19:25',0,'','janvi','2025-12-03 11:19:25','drpratapsinh','2025-12-03 11:57:55'),(5009,0,0,'O','N','2526',1856,0,'2025-12-03','0000-00-00',1902,0,1856,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','12:13:20','','','N','Y',NULL,'O','O','Z26','','0000-00-00 00:00:00','4','11:32:17',0,'','urvashi','2025-12-03 11:32:17','drarchit','2025-12-03 12:13:20'),(5010,0,0,'O','N','2526',3431,0,'2025-12-03','2026-03-02',3528,0,3431,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','12:23:05','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:33:35',0,'','reception','2025-12-03 11:33:35','darshan','2025-12-03 12:23:05'),(5011,0,0,'O','N','2526',3432,0,'2025-12-03','2026-03-02',3529,0,3432,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','11:48:30','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','5','11:35:19',0,'','urvashi','2025-12-03 11:35:19','drjayant','2025-12-03 11:48:30'),(5012,0,0,'O','N','2526',3433,0,'2025-12-03','2026-03-02',3530,0,3433,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','13:42:57','','N','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','11:36:27',0,'','reception','2025-12-03 11:36:27','darshan','2025-12-03 13:42:57'),(5013,0,0,'O','N','2526',708,0,'2025-12-03','0000-00-00',739,0,708,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','11:57:25','','','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','4','11:38:32',0,'','urvashi','2025-12-03 11:38:32','drarchit','2025-12-03 11:57:25'),(5014,0,0,'O','N','2526',3434,0,'2025-12-03','2026-03-02',3531,0,3434,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','12:51:09','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','2','11:38:49',0,'','reception','2025-12-03 11:38:49','darshan','2025-12-03 12:51:09'),(5015,0,0,'O','N','2526',3435,0,'2025-12-03','2026-03-02',3532,0,3435,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','12:02:00','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','5','11:41:34',0,'','janvi','2025-12-03 11:41:34','drjayant','2025-12-03 12:02:00'),(5016,0,0,'O','N','2526',1807,0,'2025-12-03','0000-00-00',1853,0,1807,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','12:54:13','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','2','11:42:44',0,'','reception','2025-12-03 11:42:44','darshan','2025-12-03 12:54:13'),(5017,0,0,'O','N','2526',3436,0,'2025-12-03','2026-03-02',3533,0,3436,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','12:46:39','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','4','11:46:36',0,'','urvashi','2025-12-03 11:46:36','drarchit','2025-12-03 12:46:39'),(5018,0,0,'O','N','2526',3437,0,'2025-12-03','2026-03-02',3534,0,3437,'N','','N','','','NE','','N','D06','','N',107,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','13:02:51','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','2','11:51:52',0,'','reception','2025-12-03 11:51:52','darshan','2025-12-03 13:02:51'),(5019,0,0,'O','N','2526',2722,0,'2025-12-03','0000-00-00',2793,0,2722,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:53:00','0000-00-00','','','','N','11:53:00','18:53:28','','','N','Y',NULL,'O','O','Z33','','0000-00-00 00:00:00','7','11:53:15',0,'','manshi','2025-12-03 11:53:15','drridham','2025-12-03 18:53:28'),(5020,0,0,'O','N','2526',3248,0,'2025-12-03','0000-00-00',3330,0,3248,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','13:19:14','','N','N','Y',NULL,'O','O','Z34','','0000-00-00 00:00:00','2','11:54:07',0,'','reception','2025-12-03 11:54:07','darshan','2025-12-03 13:19:14'),(5021,0,0,'O','N','2526',1928,0,'2025-12-03','0000-00-00',1976,0,1928,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','12:45:32','','','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','6','11:54:42',0,'','manshi','2025-12-03 11:54:42','drsagar','2025-12-03 12:45:32'),(5022,0,0,'O','N','2526',3438,0,'2025-12-03','2026-03-02',3535,0,3438,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:59:00','0000-00-00','','','','N','11:59:00','12:11:58','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','3','11:59:53',0,'','janvi','2025-12-03 11:59:53','drpratapsinh','2025-12-03 12:11:58'),(5023,0,0,'O','N','2526',2689,0,'2025-12-03','0000-00-00',2758,0,2689,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','12:13:54','','','N','Y',NULL,'O','O','Z37','','0000-00-00 00:00:00','3','12:02:04',0,'','janvi','2025-12-03 12:02:04','drpratapsinh','2025-12-03 12:13:54'),(5024,0,0,'O','N','2526',3439,0,'2025-12-03','2026-03-02',3536,0,3439,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','12:18:23','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','4','12:09:44',0,'','urvashi','2025-12-03 12:09:44','drarchit','2025-12-03 12:18:22'),(5025,0,0,'O','N','2526',1457,0,'2025-12-03','0000-00-00',1498,0,1457,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:13:00','0000-00-00','','','','N','12:13:00','12:41:19','','','N','Y',NULL,'O','O','I02','','0000-00-00 00:00:00','2','12:13:19',0,'','reception','2025-12-03 12:13:19','darshan','2025-12-03 12:41:19'),(5026,0,0,'O','N','2526',3440,0,'2025-12-03','2026-03-02',3537,0,3440,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:17:00','0000-00-00','','','','N','12:17:00','12:33:52','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','4','12:17:41',0,'','urvashi','2025-12-03 12:17:41','drarchit','2025-12-03 12:33:52'),(5027,0,0,'O','N','2526',3038,0,'2025-12-03','0000-00-00',3119,0,3038,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:19:00','0000-00-00','','','','N','12:19:00','12:40:12','','','N','Y',NULL,'O','O','Z40','','0000-00-00 00:00:00','4','12:19:14',0,'','urvashi','2025-12-03 12:19:14','drarchit','2025-12-03 12:40:12'),(5028,0,0,'O','N','2526',3441,0,'2025-12-03','2026-03-02',3538,0,3441,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:22:00','0000-00-00','','','','N','12:22:00','13:00:35','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','4','12:22:57',0,'','urvashi','2025-12-03 12:22:56','drarchit','2025-12-03 13:00:35'),(5029,0,0,'O','N','2526',3442,0,'2025-12-03','2026-03-02',3539,0,3442,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','18:15:09','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','3','12:27:53',0,'','janvi','2025-12-03 12:27:53','drpratapsinh','2025-12-03 18:15:09'),(5030,0,0,'O','N','2526',931,0,'2025-12-03','0000-00-00',962,0,931,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:37:00','0000-00-00','','','','N','12:37:00','13:19:40','','','N','Y',NULL,'O','O','Z43','','0000-00-00 00:00:00','4','12:37:16',0,'','urvashi','2025-12-03 12:37:16','drarchit','2025-12-03 13:19:40'),(5031,0,0,'O','N','2526',3443,0,'2025-12-03','2026-03-02',3540,0,3443,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:41:00','0000-00-00','','','','N','12:41:00','13:16:40','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','4','12:41:39',0,'','urvashi','2025-12-03 12:41:39','drarchit','2025-12-03 13:16:40'),(5032,0,0,'O','N','2526',3444,0,'2025-12-03','2026-03-02',3541,0,3444,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:47:00','0000-00-00','','','','N','12:47:00','13:07:34','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','4','12:47:06',0,'','janvi','2025-12-03 12:47:05','drarchit','2025-12-03 13:07:34'),(5033,0,0,'O','N','2526',3445,0,'2025-12-03','2026-03-02',3542,0,3445,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:21:00','0000-00-00','','','','N','13:21:00','13:54:43','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','2','13:21:43',0,'','reception','2025-12-03 13:21:43','darshan','2025-12-03 13:54:43'),(5034,0,0,'O','N','2526',1683,0,'2025-12-03','0000-00-00',1728,0,1683,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:29:00','0000-00-00','','','','N','13:29:00','13:46:34','','','N','Y',NULL,'O','O','K01','','0000-00-00 00:00:00','2','13:29:18',0,'','reception','2025-12-03 13:29:18','darshan','2025-12-03 13:46:34'),(5035,0,0,'O','N','2526',2356,0,'2025-12-03','0000-00-00',2411,0,2356,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:37:00','0000-00-00','','','','N','13:37:00','18:12:53','','','N','Y',NULL,'O','O','Z46','','0000-00-00 00:00:00','4','13:37:29',0,'','urvashi','2025-12-03 13:37:29','drarchit','2025-12-03 18:12:53'),(5036,0,0,'I','N','2526',0,239,'2025-12-03','2026-03-02',3543,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:30:00','2025-12-04','','1','mo','N','15:30:00','11:35:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-03 15:28:01','mo','2025-12-04 12:00:46'),(5037,0,0,'O','N','2526',72,0,'2025-12-03','0000-00-00',83,0,72,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:58:00','0000-00-00','','','','N','15:58:00','17:11:22','','','N','Y',NULL,'O','O','Z47','','0000-00-00 00:00:00','2','15:58:28',0,'','reception','2025-12-03 15:58:28','darshan','2025-12-03 17:11:22'),(5038,0,0,'I','N','2526',0,240,'2025-12-03','2026-03-02',3544,0,0,'Y','Accident','N','','','','N','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:45:00','2025-12-04','','5','mo','N','15:45:00','06:10:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-03 16:13:30','vishal','2025-12-04 07:15:42'),(5039,0,0,'O','N','2526',3446,0,'2025-12-03','2026-03-02',3545,0,3446,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:19:00','0000-00-00','','','','N','16:19:00','17:20:27','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','2','16:19:34',0,'','reception','2025-12-03 16:19:34','darshan','2025-12-03 17:20:27'),(5040,0,0,'O','N','2526',963,0,'2025-12-03','0000-00-00',996,0,963,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:22:00','0000-00-00','','','','N','16:22:00','17:22:46','','','N','Y',NULL,'O','O','Z49','','0000-00-00 00:00:00','2','16:22:28',0,'','reception','2025-12-03 16:22:28','darshan','2025-12-03 17:22:46'),(5041,0,0,'O','N','2526',3447,0,'2025-12-03','2026-03-02',3546,0,3447,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:29:00','0000-00-00','','','','N','16:29:00','19:19:40','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','5','18:19:35',0,'','reception','2025-12-03 16:29:09','drjayant','2025-12-03 19:19:40'),(5042,0,0,'O','N','2526',2424,0,'2025-12-03','0000-00-00',2480,0,2424,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:31:00','0000-00-00','','','','N','16:31:00','17:02:16','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','16:31:52',0,'','reception','2025-12-03 16:31:52','darshan','2025-12-03 17:02:16'),(5043,0,0,'O','N','2526',1951,0,'2025-12-03','0000-00-00',1999,0,1951,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:35:00','0000-00-00','','','','N','16:35:00','17:26:47','','','N','Y',NULL,'O','O','Z51','','0000-00-00 00:00:00','2','16:35:26',0,'','reception','2025-12-03 16:35:26','darshan','2025-12-03 17:26:47'),(5044,0,0,'O','N','2526',3448,0,'2025-12-03','2026-03-02',3547,0,3448,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:36:00','0000-00-00','','','','N','16:36:00','17:35:06','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:36:38',0,'','shweta','2025-12-03 16:36:38','darshan','2025-12-03 17:35:06'),(5045,0,0,'O','N','2526',3449,0,'2025-12-03','2026-03-02',3548,0,3449,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:37:00','0000-00-00','','','','N','16:37:00','19:20:26','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','5','18:19:35',0,'','reception','2025-12-03 16:37:32','drjayant','2025-12-03 19:20:26'),(5046,0,0,'O','N','2526',1941,0,'2025-12-03','0000-00-00',1989,0,1941,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:51:00','0000-00-00','','','','N','16:51:00','17:36:28','','','N','Y',NULL,'O','O','Z53','','0000-00-00 00:00:00','2','16:51:28',0,'','reception','2025-12-03 16:51:28','darshan','2025-12-03 17:36:28'),(5047,0,0,'O','N','2526',3450,0,'2025-12-03','2026-03-02',3549,0,3450,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:09:00','0000-00-00','','','','N','17:09:00','18:53:44','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','7','17:09:52',0,'','manshi','2025-12-03 17:09:52','drridham','2025-12-03 18:53:44'),(5048,0,0,'O','N','2526',3451,0,'2025-12-03','2026-03-02',3550,0,3451,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:10:00','0000-00-00','','','','N','17:10:00','18:54:45','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','7','17:10:46',0,'','manshi','2025-12-03 17:10:46','drridham','2025-12-03 18:54:45'),(5049,0,0,'O','N','2526',3452,0,'2025-12-03','2026-03-02',3551,0,3452,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:12:00','0000-00-00','','','','N','17:12:00','18:54:59','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','7','17:12:45',0,'','manshi','2025-12-03 17:12:45','drridham','2025-12-03 18:54:59'),(5050,0,0,'O','N','2526',2493,0,'2025-12-03','0000-00-00',2551,0,2493,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:13:00','0000-00-00','','','','N','17:13:00','17:42:39','','','N','Y',NULL,'O','O','Z57','','0000-00-00 00:00:00','2','17:13:11',0,'','reception','2025-12-03 17:13:11','darshan','2025-12-03 17:42:39'),(5051,0,0,'O','N','2526',3328,0,'2025-12-03','0000-00-00',3420,0,3328,'N','','N','','','REPORTS','','N','D06','','N',4,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:13:00','0000-00-00','','','','N','17:13:00','19:16:16','','N','N','Y',NULL,'O','O','Z58','','0000-00-00 00:00:00','2','17:14:07',0,'','reception','2025-12-03 17:14:07','darshan','2025-12-03 19:16:16'),(5052,0,0,'O','N','2526',3453,0,'2025-12-03','2026-03-02',3552,0,3453,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:18:00','0000-00-00','','','','N','17:18:00','19:26:53','','N','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','2','17:19:03',0,'','reception','2025-12-03 17:19:03','darshan','2025-12-03 19:26:53'),(5053,0,0,'O','N','2526',1017,0,'2025-12-03','0000-00-00',1051,0,1017,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','18:05:24','','','N','Y',NULL,'O','O','L03','','0000-00-00 00:00:00','2','17:21:01',0,'','reception','2025-12-03 17:21:01','darshan','2025-12-03 18:05:24'),(5054,0,0,'O','N','2526',1329,0,'2025-12-03','0000-00-00',1369,0,1329,'N','','N','','','','','N','D02','','N',93,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:22:00','0000-00-00','','','','N','17:22:00','18:14:30','','','N','Y',NULL,'O','O','Z60','','0000-00-00 00:00:00','3','17:22:18',0,'','urvashi','2025-12-03 17:22:18','drpratapsinh','2025-12-03 18:14:30'),(5055,0,0,'O','N','2526',3454,0,'2025-12-03','2026-03-02',3553,0,3454,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:24:00','0000-00-00','','','','N','17:24:00','19:35:22','','N','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:24:05',0,'','reception','2025-12-03 17:24:05','darshan','2025-12-03 19:35:22'),(5056,0,0,'O','N','2526',3455,0,'2025-12-03','2026-03-02',3554,0,3455,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:24:00','0000-00-00','','','','N','17:24:00','18:55:14','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','7','17:24:11',0,'','manshi','2025-12-03 17:24:11','drridham','2025-12-03 18:55:14'),(5057,0,0,'O','N','2526',3456,0,'2025-12-03','2026-03-02',3555,0,3456,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:28:00','0000-00-00','','','','N','17:28:00','18:20:03','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','3','17:28:44',0,'','reception','2025-12-03 17:28:44','drpratapsinh','2025-12-03 18:20:03'),(5058,0,0,'O','N','2526',2426,0,'2025-12-03','0000-00-00',2482,0,2426,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:30:00','0000-00-00','','','','N','17:30:00','18:10:29','','','N','Y',NULL,'O','O','L05','','0000-00-00 00:00:00','2','17:30:36',0,'','reception','2025-12-03 17:30:36','darshan','2025-12-03 18:10:29'),(5059,0,0,'O','N','2526',3457,0,'2025-12-03','2026-03-02',3556,0,3457,'N','','N','','','NV','','N','D06','','N',218,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','19:44:26','','N','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','2','17:32:33',0,'','reception','2025-12-03 17:32:33','darshan','2025-12-03 19:44:26'),(5060,0,0,'O','N','2526',3458,0,'2025-12-03','2026-03-02',3557,0,3458,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:38:00','0000-00-00','','','','N','17:38:00','18:36:39','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','2','17:38:12',0,'','reception','2025-12-03 17:38:12','darshan','2025-12-03 18:36:39'),(5061,0,0,'O','N','2526',3459,0,'2025-12-03','2026-03-02',3558,0,3459,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','18:55:29','','','N','Y',NULL,'O','N','Z65','','0000-00-00 00:00:00','7','17:40:10',0,'','manshi','2025-12-03 17:40:10','drridham','2025-12-03 18:55:29'),(5062,0,0,'O','N','2526',3460,0,'2025-12-03','2026-03-02',3559,0,3460,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:43:00','0000-00-00','','','','N','17:43:00','18:45:25','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','2','17:43:18',0,'','urvashi','2025-12-03 17:43:18','darshan','2025-12-03 18:45:25'),(5063,0,0,'O','N','2526',3461,0,'2025-12-03','2026-03-02',3560,0,3461,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','18:32:01','','','N','Y',NULL,'O','N','Z67','','0000-00-00 00:00:00','6','17:46:19',0,'','manshi','2025-12-03 17:46:19','drsagar','2025-12-03 18:32:01'),(5064,0,0,'O','N','2526',3462,0,'2025-12-03','2026-03-02',3561,0,3462,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','0000-00-00','','','','N','18:00:00','19:43:53','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','18:00:49',0,'','reception','2025-12-03 18:00:49','darshan','2025-12-03 19:43:53'),(5065,0,0,'O','N','2526',1147,0,'2025-12-03','0000-00-00',1187,0,1147,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','19:39:55','','','N','Y',NULL,'O','O','Z68','','0000-00-00 00:00:00','2','18:03:33',0,'','reception','2025-12-03 18:03:33','darshan','2025-12-03 19:39:55'),(5066,0,0,'O','N','2526',3463,0,'2025-12-03','2026-03-02',3562,0,3463,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','18:20:09','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','4','18:03:39',0,'','urvashi','2025-12-03 18:03:39','drarchit','2025-12-03 18:20:09'),(5067,0,0,'O','N','2526',3464,0,'2025-12-03','2026-03-02',3563,0,3464,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','19:50:40','','N','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','18:04:42',0,'','reception','2025-12-03 18:04:42','darshan','2025-12-03 19:50:40'),(5068,0,0,'O','N','2526',3465,0,'2025-12-03','2026-03-02',3564,0,3465,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','18:33:08','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','4','18:05:11',0,'','janvi','2025-12-03 18:05:11','drarchit','2025-12-03 18:33:08'),(5069,0,0,'O','N','2526',3466,0,'2025-12-03','2026-03-02',3565,0,3466,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','18:38:22','','','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','4','18:05:27',0,'','urvashi','2025-12-03 18:05:27','drarchit','2025-12-03 18:38:22'),(5070,0,0,'O','N','2526',3467,0,'2025-12-03','2026-03-02',3566,0,3467,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','18:26:40','','','N','Y',NULL,'O','N','Z70','','0000-00-00 00:00:00','5','18:19:35',0,'','reception','2025-12-03 18:07:17','drjayant','2025-12-03 18:26:40'),(5071,0,0,'O','N','2526',3468,0,'2025-12-03','2026-03-02',3567,0,3468,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','18:42:40','','','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','4','18:07:39',0,'','urvashi','2025-12-03 18:07:39','drarchit','2025-12-03 18:42:40'),(5072,0,0,'O','N','2526',2727,0,'2025-12-03','0000-00-00',2798,0,2727,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:08:00','0000-00-00','','','','N','18:08:00','18:19:54','','','N','Y',NULL,'O','O','Z72','','0000-00-00 00:00:00','4','18:08:51',0,'','urvashi','2025-12-03 18:08:51','drarchit','2025-12-03 18:19:54'),(5073,0,0,'O','N','2526',3469,0,'2025-12-03','2026-03-02',3568,0,3469,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:55:50','','','N','Y',NULL,'O','N','Z73','','0000-00-00 00:00:00','4','18:10:06',0,'','reception','2025-12-03 18:10:06','drarchit','2025-12-03 18:55:50'),(5074,0,0,'O','N','2526',3470,0,'2025-12-03','2026-03-02',3569,0,3470,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','20:05:58','','N','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','2','18:11:34',0,'','urvashi','2025-12-03 18:11:34','darshan','2025-12-03 20:05:58'),(5075,0,0,'O','N','2526',3471,0,'2025-12-03','2026-03-02',3570,0,3471,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','18:52:08','','','N','Y',NULL,'O','N','Z75','','0000-00-00 00:00:00','5','18:19:35',0,'','urvashi','2025-12-03 18:12:48','drjayant','2025-12-03 18:52:08'),(5076,0,0,'O','N','2526',3472,0,'2025-12-03','2026-03-02',3571,0,3472,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','18:56:09','','N','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','4','18:12:59',0,'','janvi','2025-12-03 18:12:59','drarchit','2025-12-03 18:56:09'),(5077,0,0,'O','N','2526',3473,0,'2025-12-03','2026-03-02',3572,0,3473,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:13:00','0000-00-00','','','','N','18:13:00','18:51:35','','','N','Y',NULL,'O','N','Z76','','0000-00-00 00:00:00','5','18:19:35',0,'','urvashi','2025-12-03 18:13:33','drjayant','2025-12-03 18:51:35'),(5078,0,0,'O','N','2526',3474,0,'2025-12-03','2026-03-02',3573,0,3474,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','18:55:43','','','N','Y',NULL,'O','N','Z77','','0000-00-00 00:00:00','7','18:15:07',0,'','manshi','2025-12-03 18:15:07','drridham','2025-12-03 18:55:43'),(5079,0,0,'O','N','2526',3475,0,'2025-12-03','2026-03-02',3574,0,3475,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','20:02:38','','','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','2','18:15:58',0,'','janvi','2025-12-03 18:15:58','darshan','2025-12-03 20:02:38'),(5080,0,0,'O','N','2526',3476,0,'2025-12-03','2026-03-02',3575,0,3476,'N','','N','','','NC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:17:00','0000-00-00','','','','N','18:17:00','19:04:26','','','N','Y',NULL,'O','N','Z78','','0000-00-00 00:00:00','4','18:17:08',0,'','urvashi','2025-12-03 18:17:07','drarchit','2025-12-03 19:04:26'),(5081,0,0,'O','N','2526',3477,0,'2025-12-03','2026-03-02',3576,0,3477,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','20:00:30','','','N','Y',NULL,'O','N','Z79','','0000-00-00 00:00:00','2','18:18:39',0,'','reception','2025-12-03 18:18:39','darshan','2025-12-03 20:00:30'),(5082,0,0,'O','N','2526',3478,0,'2025-12-03','2026-03-02',3577,0,3478,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','00:00:00','','Y','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','4','18:19:28',0,'','urvashi','2025-12-03 18:19:28','drarchit','2025-12-03 18:59:25'),(5083,0,0,'O','N','2526',2685,0,'2025-12-03','0000-00-00',2754,0,2685,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:20:00','0000-00-00','','','','N','18:20:00','18:46:14','','','N','Y',NULL,'O','O','L13','','0000-00-00 00:00:00','4','18:21:31',0,'','urvashi','2025-12-03 18:21:31','drarchit','2025-12-03 18:46:14'),(5084,0,0,'O','N','2526',3479,0,'2025-12-03','2026-03-02',3578,0,3479,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','19:12:13','','N','N','Y',NULL,'O','N','Z80','','0000-00-00 00:00:00','4','18:24:46',0,'','janvi','2025-12-03 18:24:46','drarchit','2025-12-04 19:12:13'),(5085,0,0,'O','N','2526',3480,0,'2025-12-03','2026-03-02',3579,0,3480,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:27:00','0000-00-00','','','','N','18:27:00','19:10:26','','','N','Y',NULL,'O','N','Z81','','0000-00-00 00:00:00','4','18:27:30',0,'','janvi','2025-12-03 18:27:30','drarchit','2025-12-03 19:10:26'),(5086,0,0,'O','N','2526',3481,0,'2025-12-03','2026-03-02',3580,0,3481,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','18:36:50','','','N','Y',NULL,'O','N','Z82','','0000-00-00 00:00:00','3','18:28:05',0,'','urvashi','2025-12-03 18:28:05','drpratapsinh','2025-12-03 18:36:50'),(5087,0,0,'O','N','2526',3482,0,'2025-12-03','2026-03-02',3581,0,3482,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','19:21:21','','N','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','4','18:29:24',0,'','janvi','2025-12-03 18:29:24','drarchit','2025-12-03 19:21:21'),(5088,0,0,'O','N','2526',3483,0,'2025-12-03','2026-03-02',3582,0,3483,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','19:01:35','','','N','Y',NULL,'O','N','Z83','','0000-00-00 00:00:00','5','18:30:09',0,'','urvashi','2025-12-03 18:30:09','drjayant','2025-12-03 19:01:35'),(5089,0,0,'I','N','2526',0,241,'2025-12-03','2026-03-02',3583,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','2025-12-08','','1','mo','N','18:30:00','11:50:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-03 18:41:17','mo','2025-12-08 12:12:17'),(5090,0,0,'O','N','2526',789,0,'2025-12-03','0000-00-00',820,0,789,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:41:00','0000-00-00','','','','N','18:41:00','18:51:51','','','N','Y',NULL,'O','O','Z84','','0000-00-00 00:00:00','3','18:41:44',0,'','reception','2025-12-03 18:41:44','drpratapsinh','2025-12-03 18:51:51'),(5091,0,0,'O','N','2526',3484,0,'2025-12-03','2026-03-02',3584,0,3484,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','20:14:17','','N','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','2','18:44:40',0,'','reception','2025-12-03 18:44:40','darshan','2025-12-03 20:14:17'),(5092,0,0,'O','N','2526',3485,0,'2025-12-03','2026-03-02',3585,0,3485,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:45:00','0000-00-00','','','','N','18:45:00','00:00:00','','','N','N',NULL,'O','N','Z85','','0000-00-00 00:00:00','4','18:45:38',0,'','urvashi','2025-12-03 18:45:38','','0000-00-00 00:00:00'),(5093,0,0,'O','N','2526',2995,0,'2025-12-03','0000-00-00',3073,0,2995,'N','','N','','','','','N','D02','','N',220,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','19:02:13','','','N','Y',NULL,'O','O','Z86','','0000-00-00 00:00:00','3','18:46:27',0,'','reception','2025-12-03 18:46:27','drpratapsinh','2025-12-03 19:02:13'),(5094,0,0,'O','N','2526',3486,0,'2025-12-03','2026-03-02',3586,0,3486,'N','','N','','','','','N','D02','','N',179,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','19:27:33','','','N','Y',NULL,'O','N','Z87','','0000-00-00 00:00:00','3','18:48:29',0,'','janvi','2025-12-03 18:48:29','drpratapsinh','2025-12-04 19:27:33'),(5095,0,0,'O','N','2526',3487,0,'2025-12-03','2026-03-02',3587,0,3487,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','19:16:21','','','N','Y',NULL,'O','N','Z88','','0000-00-00 00:00:00','5','18:49:01',0,'','reception','2025-12-03 18:49:01','drjayant','2025-12-03 19:16:21'),(5096,0,0,'O','N','2526',3488,0,'2025-12-03','2026-03-02',3588,0,3488,'N','','N','','','','','N','D02','','N',246,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','00:00:00','','','N','Y',NULL,'O','N','Z89','','0000-00-00 00:00:00','3','18:51:18',0,'','urvashi','2025-12-03 18:51:18','','0000-00-00 00:00:00'),(5097,0,0,'O','N','2526',3489,0,'2025-12-03','2026-03-02',3589,0,3489,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:53:00','0000-00-00','','','','N','18:53:00','19:32:00','','','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','2','18:53:12',0,'','reception','2025-12-03 18:53:12','darshan','2025-12-03 19:32:00'),(5098,0,0,'O','N','2526',3490,0,'2025-12-03','2026-03-02',3590,0,3490,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:55:00','0000-00-00','','','','N','18:55:00','00:00:00','','','N','N',NULL,'O','N','Z90','','0000-00-00 00:00:00','4','18:55:54',0,'','urvashi','2025-12-03 18:55:54','','0000-00-00 00:00:00'),(5099,0,0,'O','N','2526',1085,0,'2025-12-03','0000-00-00',714,0,1085,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:55:00','0000-00-00','','','','N','18:55:00','19:29:07','','','N','Y',NULL,'O','O','Z91','','0000-00-00 00:00:00','4','18:56:03',0,'','janvi','2025-12-03 18:56:03','drarchit','2025-12-03 19:29:07'),(5100,0,0,'O','N','2526',3491,0,'2025-12-03','2026-03-02',3591,0,3491,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:57:00','0000-00-00','','','','N','18:57:00','18:25:13','','','N','Y',NULL,'O','N','L17','','0000-00-00 00:00:00','2','18:58:00',0,'','reception','2025-12-03 18:58:00','darshan','2025-12-04 18:25:13'),(5101,0,0,'O','N','2526',1288,0,'2025-12-03','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:59:00','0000-00-00','','','','N','18:59:00','19:37:12','','','N','Y',NULL,'O','O','Z92','','0000-00-00 00:00:00','3','18:59:13',0,'','janvi','2025-12-03 18:59:13','drpratapsinh','2025-12-03 19:37:12'),(5102,0,0,'O','N','2526',3492,0,'2025-12-03','2026-03-02',3592,0,3492,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:00:00','0000-00-00','','','','N','19:00:00','00:00:00','','','N','Y',NULL,'O','N','Z93','','0000-00-00 00:00:00','5','19:00:00',0,'','urvashi','2025-12-03 19:00:00','','0000-00-00 00:00:00'),(5103,0,0,'O','N','2526',3493,0,'2025-12-03','2026-03-02',3593,0,3493,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:00:00','0000-00-00','','','','N','19:00:00','19:49:25','','','N','Y',NULL,'O','N','L18','','0000-00-00 00:00:00','2','19:00:44',0,'','janvi','2025-12-03 19:00:44','darshan','2025-12-03 19:49:25'),(5104,0,0,'O','N','2526',3310,0,'2025-12-03','0000-00-00',3399,0,3310,'N','','N','','','','','N','D02','','N',90,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:04:00','0000-00-00','','','','N','19:04:00','19:43:01','','','N','Y',NULL,'O','O','Z94','','0000-00-00 00:00:00','3','19:04:26',0,'','janvi','2025-12-03 19:04:26','drpratapsinh','2025-12-03 19:43:01'),(5105,0,0,'O','N','2526',3021,0,'2025-12-03','0000-00-00',3101,0,3021,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:11:00','0000-00-00','','','','N','19:11:00','19:37:27','','','N','Y',NULL,'O','O','Z95','','0000-00-00 00:00:00','3','19:11:11',0,'','janvi','2025-12-03 19:11:11','drpratapsinh','2025-12-03 19:37:27'),(5106,0,0,'O','N','2526',2033,0,'2025-12-03','0000-00-00',2087,0,2033,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:12:00','0000-00-00','','','','N','19:12:00','19:42:41','','','N','Y',NULL,'O','O','Z96','','0000-00-00 00:00:00','3','19:12:07',0,'','urvashi','2025-12-03 19:12:07','drpratapsinh','2025-12-03 19:42:41'),(5107,0,0,'O','N','2526',787,0,'2025-12-03','0000-00-00',818,0,787,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:14:00','0000-00-00','','','','N','19:14:00','19:27:48','','','N','Y',NULL,'O','O','Z97','','0000-00-00 00:00:00','6','19:15:14',0,'','manshi','2025-12-03 19:14:38','drsagar','2025-12-03 19:27:48'),(5108,0,0,'O','N','2526',3494,0,'2025-12-04','2026-03-03',3594,0,3494,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:41:00','0000-00-00','','','','N','08:41:00','13:17:27','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','5','11:12:40',0,'','reception','2025-12-04 08:41:36','drjayant','2025-12-04 13:17:27'),(5109,0,0,'O','N','2526',3495,0,'2025-12-04','2026-03-03',3595,0,3495,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:43:00','0000-00-00','','','','N','08:43:00','00:00:00','','Y','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','08:43:39',0,'','reception','2025-12-04 08:43:38','drarchit','2025-12-04 13:06:20'),(5110,0,0,'O','N','2526',3496,0,'2025-12-04','2026-03-03',3596,0,3496,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:47:00','0000-00-00','','','','N','08:47:00','11:31:52','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','5','11:12:40',0,'','reception','2025-12-04 08:47:27','drjayant','2025-12-04 11:31:52'),(5111,0,0,'O','N','2526',2407,0,'2025-12-04','0000-00-00',2463,0,2407,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:35:00','0000-00-00','','','','N','09:35:00','10:52:26','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','09:35:12',0,'','reception','2025-12-04 09:35:12','darshan','2025-12-04 10:52:26'),(5112,0,0,'O','N','2526',3497,0,'2025-12-04','2026-03-03',3597,0,3497,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:43:00','0000-00-00','','','','N','09:43:00','11:31:24','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','5','11:12:40',0,'','janvi','2025-12-04 09:44:00','drjayant','2025-12-04 11:31:24'),(5113,0,0,'I','N','2526',0,242,'2025-12-04','2026-03-03',3598,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','2025-12-06','','1','mo','N','10:00:00','19:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-04 10:06:46','mo','2025-12-09 10:09:08'),(5114,0,0,'O','N','2526',2486,0,'2025-12-04','0000-00-00',2544,0,2486,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:19:00','0000-00-00','','','','N','10:19:00','11:02:01','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','10:19:15',0,'','reception','2025-12-04 10:19:15','darshan','2025-12-04 11:02:01'),(5115,0,0,'O','N','2526',3498,0,'2025-12-04','2026-03-03',3599,0,3498,'N','','N','','','','','N','D02','','N',168,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:22:00','0000-00-00','','','','N','10:22:00','13:53:43','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','3','10:22:14',0,'','shweta','2025-12-04 10:22:14','drpratapsinh','2025-12-04 13:53:43'),(5116,0,0,'O','N','2526',2908,0,'2025-12-04','0000-00-00',2986,0,2908,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','11:07:13','','','N','Y',NULL,'O','O','E02','','0000-00-00 00:00:00','2','10:28:55',0,'','shweta','2025-12-04 10:28:55','darshan','2025-12-04 11:07:13'),(5117,0,0,'O','N','2526',3319,0,'2025-12-04','0000-00-00',3411,0,3319,'N','','N','','','DRESSING','','N','D02','','N',25,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','','N','10:40:00','18:08:30','','','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','3','10:40:31',0,'','janvi','2025-12-04 10:40:31','drpratapsinh','2025-12-04 18:08:30'),(5118,0,0,'O','N','2526',3499,0,'2025-12-04','2026-03-03',3600,0,3499,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','11:28:03','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','4','10:46:30',0,'','shweta','2025-12-04 10:46:30','drarchit','2025-12-04 11:28:03'),(5119,0,0,'O','N','2526',2256,0,'2025-12-04','0000-00-00',2313,0,2256,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','12:33:00','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','4','10:48:18',0,'','urvashi','2025-12-04 10:48:18','drarchit','2025-12-04 12:33:00'),(5120,0,0,'I','N','2526',0,243,'2025-12-04','2026-03-03',3601,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','01:00:00','2025-12-22','','1','mo','N','01:00:00','17:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-04 10:50:53','mo','2025-12-22 22:27:40'),(5121,0,0,'O','N','2526',3500,0,'2025-12-04','2026-03-03',3602,0,3500,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','11:22:15','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','2','10:56:20',0,'','reception','2025-12-04 10:56:20','darshan','2025-12-04 11:22:15'),(5122,0,0,'O','N','2526',3501,0,'2025-12-04','2026-03-03',3603,0,3501,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','11:37:15','','','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:59:05',0,'','reception','2025-12-04 10:59:05','darshan','2025-12-04 11:37:15'),(5123,0,0,'O','N','2526',3502,0,'2025-12-04','2026-03-03',3604,0,3502,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','11:42:08','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','2','11:01:46',0,'','reception','2025-12-04 11:01:46','darshan','2025-12-04 11:42:08'),(5124,0,0,'O','N','2526',2712,0,'2025-12-04','0000-00-00',2783,0,2712,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','11:51:28','','','N','Y',NULL,'O','O','H01','','0000-00-00 00:00:00','2','11:04:47',0,'','reception','2025-12-04 11:04:47','darshan','2025-12-04 11:51:28'),(5125,0,0,'O','N','2526',3503,0,'2025-12-04','2026-03-03',3605,0,3503,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','12:04:08','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','4','11:12:10',0,'','reception','2025-12-04 11:12:10','drarchit','2025-12-04 12:04:08'),(5126,0,0,'O','N','2526',1857,0,'2025-12-04','0000-00-00',1903,0,1857,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','11:39:30','','','N','Y',NULL,'O','O','G02','','0000-00-00 00:00:00','2','11:12:32',0,'','urvashi','2025-12-04 11:12:32','darshan','2025-12-04 11:39:30'),(5127,0,0,'O','N','2526',2300,0,'2025-12-04','0000-00-00',2357,0,2300,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','12:00:10','','','N','Y',NULL,'O','O','G03','','0000-00-00 00:00:00','2','11:14:36',0,'','reception','2025-12-04 11:14:36','darshan','2025-12-04 12:00:10'),(5128,0,0,'O','N','2526',3504,0,'2025-12-04','2026-03-03',3606,0,3504,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','11:51:51','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','4','11:15:55',0,'','janvi','2025-12-04 11:15:55','drarchit','2025-12-04 11:51:51'),(5129,0,0,'O','N','2526',3505,0,'2025-12-04','2026-03-03',3607,0,3505,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','13:09:15','','N','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','4','11:18:34',0,'','urvashi','2025-12-04 11:18:34','drarchit','2025-12-04 13:09:15'),(5130,0,0,'O','N','2526',3506,0,'2025-12-04','2026-03-03',3608,0,3506,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','12:05:49','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','2','11:21:28',0,'','reception','2025-12-04 11:21:28','darshan','2025-12-04 12:05:49'),(5131,0,0,'O','N','2526',3386,0,'2025-12-04','0000-00-00',3482,0,3386,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','18:08:16','','','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','3','11:24:55',0,'','janvi','2025-12-04 11:24:55','drpratapsinh','2025-12-04 18:08:16'),(5132,0,0,'O','N','2526',3507,0,'2025-12-04','2026-03-03',3609,0,3507,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','12:20:03','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','7','11:26:32',0,'','manshi','2025-12-04 11:26:32','drridham','2025-12-04 12:20:03'),(5133,0,0,'O','N','2526',3508,0,'2025-12-04','2026-03-03',3610,0,3508,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','12:29:03','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','2','11:31:16',0,'','urvashi','2025-12-04 11:31:16','darshan','2025-12-04 12:29:03'),(5134,0,0,'O','N','2526',3509,0,'2025-12-04','2026-03-03',3611,0,3509,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','12:13:29','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','11:33:24',0,'','urvashi','2025-12-04 11:33:24','drarchit','2025-12-04 12:13:29'),(5135,0,0,'O','N','2526',3510,0,'2025-12-04','2026-03-03',3085,0,3510,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','11:42:34','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','4','11:34:04',0,'','janvi','2025-12-04 11:34:04','drarchit','2025-12-04 11:42:34'),(5136,0,0,'O','N','2526',3305,0,'2025-12-04','0000-00-00',3394,0,3305,'N','','N','','','','','N','D02','','N',119,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','17:20:15','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','3','11:39:53',0,'','urvashi','2025-12-04 11:39:53','drpratapsinh','2025-12-04 17:20:15'),(5137,0,0,'O','N','2526',3511,0,'2025-12-04','2026-03-03',3612,0,3511,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','12:13:41','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','2','11:41:01',0,'','reception','2025-12-04 11:41:01','darshan','2025-12-04 12:13:41'),(5138,0,0,'O','N','2526',3512,0,'2025-12-04','2026-03-03',3613,0,3512,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','12:51:54','','N','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','2','11:46:07',0,'','reception','2025-12-04 11:46:07','darshan','2025-12-04 12:51:54'),(5139,0,0,'O','N','2526',1924,0,'2025-12-04','0000-00-00',1972,0,1924,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','12:14:05','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','5','11:47:30',0,'','urvashi','2025-12-04 11:47:30','drjayant','2025-12-04 12:14:05'),(5140,0,0,'O','N','2526',3513,0,'2025-12-04','2026-03-03',3614,0,3513,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','12:17:41','','','N','Y',NULL,'O','N','H06','','0000-00-00 00:00:00','4','11:48:41',0,'','urvashi','2025-12-04 11:48:41','drarchit','2025-12-04 12:17:41'),(5141,0,0,'O','N','2526',3514,0,'2025-12-04','2026-03-03',3615,0,3514,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','13:54:01','','N','N','Y',NULL,'O','N','H07','','0000-00-00 00:00:00','2','11:48:52',0,'','reception','2025-12-04 11:48:52','darshan','2025-12-04 13:54:01'),(5142,0,0,'O','N','2526',3515,0,'2025-12-04','2026-03-03',3616,0,3515,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','12:24:06','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','5','11:51:59',0,'','reception','2025-12-04 11:51:59','drjayant','2025-12-04 12:24:06'),(5143,0,0,'O','N','2526',513,0,'2025-12-04','0000-00-00',538,0,513,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:01:00','0000-00-00','','','','N','12:01:00','13:51:19','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','2','12:01:47',0,'','reception','2025-12-04 12:01:47','darshan','2025-12-04 13:51:19'),(5144,0,0,'O','N','2526',3516,0,'2025-12-04','2026-03-03',3617,0,3516,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:05:00','0000-00-00','','','','N','12:05:00','12:38:45','','N','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','4','12:05:23',0,'','urvashi','2025-12-04 12:05:23','drarchit','2025-12-04 12:38:45'),(5145,0,0,'O','N','2526',3517,0,'2025-12-04','2026-03-03',3618,0,3517,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:15:00','0000-00-00','','','','N','12:15:00','12:25:44','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','4','12:15:37',0,'','urvashi','2025-12-04 12:15:37','drarchit','2025-12-04 12:25:44'),(5146,0,0,'O','N','2526',3518,0,'2025-12-04','2026-03-03',3619,0,3518,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:15:00','0000-00-00','','','','N','12:15:00','12:57:05','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','2','12:15:57',0,'','reception','2025-12-04 12:15:57','darshan','2025-12-04 12:57:05'),(5147,0,0,'O','N','2526',3519,0,'2025-12-04','2026-03-03',3620,0,3519,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:19:00','0000-00-00','','','','N','12:19:00','12:29:45','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','4','12:19:55',0,'','urvashi','2025-12-04 12:19:55','drarchit','2025-12-04 12:29:45'),(5148,0,0,'I','N','2526',0,244,'2025-12-04','2026-03-03',3621,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:20:00','2025-12-06','','1','mo','N','12:20:00','12:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-04 12:21:58','mo','2025-12-06 12:28:19'),(5149,0,0,'O','N','2526',2592,0,'2025-12-04','0000-00-00',2653,0,2592,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:22:00','0000-00-00','','','','N','12:22:00','12:37:01','','','N','Y',NULL,'O','O','J01','','0000-00-00 00:00:00','4','12:22:12',0,'','urvashi','2025-12-04 12:22:12','drarchit','2025-12-04 12:37:01'),(5150,0,0,'O','N','2526',3520,0,'2025-12-04','2026-03-03',3622,0,3520,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:26:00','0000-00-00','','','','N','12:26:00','12:48:04','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','5','12:26:05',0,'','urvashi','2025-12-04 12:26:05','drjayant','2025-12-04 12:48:04'),(5151,0,0,'O','N','2526',3521,0,'2025-12-04','2026-03-03',3623,0,3521,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','13:01:48','','','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','2','12:27:40',0,'','reception','2025-12-04 12:27:40','darshan','2025-12-04 13:01:48'),(5152,0,0,'O','N','2526',3522,0,'2025-12-04','2026-03-03',3624,0,3522,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:29:00','0000-00-00','','','','N','12:29:00','13:04:56','','','N','Y',NULL,'O','N','I05','','0000-00-00 00:00:00','2','12:29:59',0,'','reception','2025-12-04 12:29:59','darshan','2025-12-04 13:04:56'),(5153,0,0,'O','N','2526',1526,0,'2025-12-04','0000-00-00',1567,0,1526,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','12:58:52','','','N','Y',NULL,'O','O','Z22','','0000-00-00 00:00:00','5','12:35:40',0,'','urvashi','2025-12-04 12:35:40','drjayant','2025-12-04 12:58:52'),(5154,0,0,'O','N','2526',3486,0,'2025-12-04','0000-00-00',3586,0,3486,'N','','N','','','','','N','D02','','N',179,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:40:00','0000-00-00','','','','N','12:40:00','19:28:19','','','N','Y',NULL,'O','O','Z23','','0000-00-00 00:00:00','3','12:40:13',0,'','janvi','2025-12-04 12:40:13','drpratapsinh','2025-12-04 19:28:19'),(5155,0,0,'O','N','2526',3523,0,'2025-12-04','2026-03-03',3625,0,3523,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:43:00','0000-00-00','','','','N','12:43:00','12:49:05','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','4','12:43:49',0,'','urvashi','2025-12-04 12:43:49','drarchit','2025-12-04 12:49:05'),(5156,0,0,'O','N','2526',3524,0,'2025-12-04','2026-03-03',3626,0,3524,'N','','N','','','','','N','D02','','N',90,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:45:00','0000-00-00','','','','N','12:45:00','00:00:00','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','3','12:46:05',0,'','janvi','2025-12-04 12:46:05','','0000-00-00 00:00:00'),(5157,0,0,'O','N','2526',3525,0,'2025-12-04','2026-03-03',3627,0,3525,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:47:00','0000-00-00','','','','N','12:47:00','18:09:07','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','3','12:47:18',0,'','urvashi','2025-12-04 12:47:18','drpratapsinh','2025-12-04 18:09:07'),(5158,0,0,'O','N','2526',1862,0,'2025-12-04','0000-00-00',1907,0,1862,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:48:00','0000-00-00','','','','N','12:48:00','13:09:30','','','N','Y',NULL,'O','O','J02','','0000-00-00 00:00:00','2','12:48:28',0,'','reception','2025-12-04 12:48:28','darshan','2025-12-04 13:09:30'),(5159,0,0,'O','N','2526',3526,0,'2025-12-04','2026-03-03',3628,0,3526,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:01:00','0000-00-00','','','','N','13:01:00','13:16:53','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','4','13:01:38',0,'','urvashi','2025-12-04 13:01:38','drarchit','2025-12-04 13:16:53'),(5160,0,0,'O','N','2526',3527,0,'2025-12-04','2026-03-03',3629,0,3527,'N','','N','','','NV','','N','D06','','N',247,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:04:00','0000-00-00','','','','N','13:04:00','13:29:54','','N','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','2','13:04:51',0,'','reception','2025-12-04 13:04:51','darshan','2025-12-04 13:29:54'),(5161,0,0,'O','N','2526',1631,0,'2025-12-04','0000-00-00',1676,0,1631,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:06:00','0000-00-00','','','','N','13:06:00','13:27:06','','','N','Y',NULL,'O','O','K01','','0000-00-00 00:00:00','2','13:06:27',0,'','urvashi','2025-12-04 13:06:27','darshan','2025-12-04 13:27:06'),(5162,0,0,'O','N','2526',2662,0,'2025-12-04','0000-00-00',2384,0,2662,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:36:00','0000-00-00','','','','N','13:36:00','19:28:40','','','N','Y',NULL,'O','O','Z29','','0000-00-00 00:00:00','3','13:36:36',0,'','urvashi','2025-12-04 13:36:36','drpratapsinh','2025-12-04 19:28:40'),(5163,0,0,'I','N','2526',0,245,'2025-12-04','2026-03-03',3630,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:00:00','2025-12-12','','1','mo','N','15:00:00','19:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-04 14:57:47','mo','2025-12-12 18:59:24'),(5164,0,0,'I','N','2526',0,246,'2025-12-04','2026-03-03',3631,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:40:00','2025-12-04','','1','mo','N','15:40:00','21:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-04 15:42:49','mo','2025-12-04 21:47:56'),(5165,0,0,'O','N','2526',3528,0,'2025-12-04','2026-03-03',3632,0,3528,'N','','N','','','NC','','N','D02','','N',251,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:08:00','0000-00-00','','','','N','16:08:00','18:21:06','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','3','16:08:37',0,'','reception','2025-12-04 16:08:37','drpratapsinh','2025-12-04 18:21:06'),(5166,0,0,'O','N','2526',2678,0,'2025-12-04','0000-00-00',2747,0,2678,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:35:00','0000-00-00','','','','N','16:35:00','17:09:14','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','16:35:10',0,'','shweta','2025-12-04 16:35:10','darshan','2025-12-04 17:09:14'),(5167,0,0,'O','N','2526',2830,0,'2025-12-04','0000-00-00',2902,0,2830,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:37:00','0000-00-00','','','','N','16:37:00','17:14:49','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','16:37:21',0,'','shweta','2025-12-04 16:37:21','darshan','2025-12-04 17:14:49'),(5168,0,0,'O','N','2526',3529,0,'2025-12-04','2026-03-03',3633,0,3529,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:48:00','0000-00-00','','','','N','16:48:00','19:15:25','','N','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','16:48:08',0,'','reception','2025-12-04 16:48:08','darshan','2025-12-04 19:15:25'),(5169,0,0,'O','V','2526',3530,0,'2025-12-04','2026-03-03',1943,0,3530,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','N','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:52:36','0000-00-00','','','','N','16:52:36','00:00:00','','','N','Y',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','drpratapsinh','2025-12-04 00:00:00','','0000-00-00 00:00:00'),(5170,0,0,'O','V','2526',3531,0,'2025-12-04','2026-03-03',2030,0,3531,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','N','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:53:04','0000-00-00','','','','N','16:53:04','16:56:08','','','N','Y',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','drpratapsinh','2025-12-04 00:00:00','drpratapsinh','2025-12-04 16:56:08'),(5171,0,0,'O','N','2526',3532,0,'2025-12-04','2026-03-03',3634,0,3532,'N','','N','','','NV','','N','D06','','N',253,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:53:00','0000-00-00','','','','N','16:53:00','19:19:47','','N','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','16:53:45',0,'','reception','2025-12-04 16:53:45','darshan','2025-12-04 19:19:47'),(5172,0,0,'O','N','2526',3491,0,'2025-12-04','0000-00-00',3591,0,3491,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:03:00','0000-00-00','','','','N','17:03:00','18:44:09','','N','N','Y',NULL,'O','O','Z31','','0000-00-00 00:00:00','2','17:03:29',0,'','reception','2025-12-04 17:03:29','darshan','2025-12-04 18:44:09'),(5173,0,0,'O','N','2526',3533,0,'2025-12-04','2026-03-03',3635,0,3533,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:10:00','0000-00-00','','','','N','17:10:00','18:17:33','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','3','17:10:25',0,'','reception','2025-12-04 17:10:25','drpratapsinh','2025-12-04 18:17:33'),(5174,0,0,'O','V','2526',3534,0,'2025-12-04','2026-03-03',2693,0,3534,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','N','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:11:22','0000-00-00','','','','N','17:11:22','17:11:36','','','N','Y',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','drpratapsinh','2025-12-04 00:00:00','drpratapsinh','2025-12-04 17:11:36'),(5175,0,0,'I','N','2526',0,247,'2025-12-04','2026-03-03',3636,0,0,'N','','N','','','','N','N','D02','','N',0,'','42',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:00:00','2025-12-09','','1','mo','N','17:00:00','09:35:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-04 17:18:32','mo','2025-12-09 10:43:35'),(5176,0,0,'O','N','2526',803,0,'2025-12-04','0000-00-00',834,0,803,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:24:00','0000-00-00','','','','N','17:24:00','18:09:15','','','N','Y',NULL,'O','O','L05','','0000-00-00 00:00:00','2','17:24:10',0,'','reception','2025-12-04 17:24:10','darshan','2025-12-04 18:09:14'),(5177,0,0,'O','N','2526',3535,0,'2025-12-04','2026-03-03',3637,0,3535,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:31:00','0000-00-00','','','','N','17:31:00','17:57:16','','','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:31:37',0,'','reception','2025-12-04 17:31:37','darshan','2025-12-04 17:57:16'),(5178,0,0,'O','N','2526',3127,0,'2025-12-04','0000-00-00',3213,0,3127,'N','','N','','','FE','Y','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:33:00','0000-00-00','','','','N','17:33:00','18:12:57','','','N','Y',NULL,'O','O','Z33','','0000-00-00 00:00:00','2','17:33:46',0,'','reception','2025-12-04 17:33:46','darshan','2025-12-04 18:12:57'),(5179,0,0,'O','N','2526',3536,0,'2025-12-04','2026-03-03',3638,0,3536,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:36:00','0000-00-00','','','','N','17:36:00','18:02:01','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:37:01',0,'','reception','2025-12-04 17:37:01','darshan','2025-12-04 18:02:01'),(5180,0,0,'O','N','2526',1885,0,'2025-12-04','0000-00-00',1932,0,1885,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:39:00','0000-00-00','','','','N','17:39:00','18:06:17','','','N','Y',NULL,'O','O','L08','','0000-00-00 00:00:00','2','17:39:40',0,'','urvashi','2025-12-04 17:39:40','darshan','2025-12-04 18:06:17'),(5181,0,0,'O','N','2526',3537,0,'2025-12-04','2026-03-03',3639,0,3537,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','18:06:36','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','7','17:43:36',0,'','manshi','2025-12-04 17:40:06','drridham','2025-12-04 18:06:36'),(5182,0,0,'O','N','2526',721,0,'2025-12-04','0000-00-00',752,0,721,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:43:00','0000-00-00','','','','N','17:43:00','18:20:12','','N','N','Y',NULL,'O','O','L09','','0000-00-00 00:00:00','4','17:43:24',0,'','urvashi','2025-12-04 17:43:24','drarchit','2025-12-04 18:20:12'),(5183,0,0,'O','N','2526',3538,0,'2025-12-04','2026-03-03',3640,0,3538,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','18:01:42','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','3','17:49:23',0,'','janvi','2025-12-04 17:49:23','drpratapsinh','2025-12-04 18:01:42'),(5184,0,0,'O','N','2526',2738,0,'2025-12-04','0000-00-00',2808,0,2738,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','18:10:31','','','N','Y',NULL,'O','O','Z36','','0000-00-00 00:00:00','3','17:52:33',0,'','janvi','2025-12-04 17:52:33','drpratapsinh','2025-12-04 18:10:31'),(5185,0,0,'O','N','2526',3539,0,'2025-12-04','2026-03-03',3641,0,3539,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:56:00','0000-00-00','','','','N','17:56:00','18:35:40','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','17:56:17',0,'','reception','2025-12-04 17:56:17','darshan','2025-12-04 18:35:40'),(5186,0,0,'O','N','2526',3540,0,'2025-12-04','2026-03-03',3642,0,3540,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','19:31:08','','N','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','4','17:59:38',0,'','urvashi','2025-12-04 17:59:38','drarchit','2025-12-04 19:31:08'),(5187,0,0,'O','N','2526',774,0,'2025-12-04','0000-00-00',805,0,774,'N','','N','','','FV','','N','D06','','N',4,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','0000-00-00','','','','N','18:00:00','18:29:11','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','2','18:00:33',0,'','reception','2025-12-04 18:00:33','darshan','2025-12-04 18:29:11'),(5188,0,0,'O','N','2526',3541,0,'2025-12-04','2026-03-03',3643,0,3541,'N','','N','','','','','N','D02','','N',153,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','19:29:52','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','3','18:05:52',0,'','urvashi','2025-12-04 18:05:52','drpratapsinh','2025-12-04 19:29:52'),(5189,0,0,'O','N','2526',3542,0,'2025-12-04','2026-03-03',2780,0,3542,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:08:00','0000-00-00','','','','N','18:08:00','18:38:06','','N','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','4','18:08:26',0,'','reception','2025-12-04 18:08:26','drarchit','2025-12-04 18:38:06'),(5190,0,0,'O','N','2526',1005,0,'2025-12-04','0000-00-00',1037,0,1005,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:41:56','','','N','Y',NULL,'O','O','Z39','','0000-00-00 00:00:00','7','18:09:35',0,'','manshi','2025-12-04 18:09:35','drridham','2025-12-04 18:41:56'),(5191,0,0,'O','N','2526',3181,0,'2025-12-04','0000-00-00',3267,0,3181,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:48:22','','','N','Y',NULL,'O','O','Z40','','0000-00-00 00:00:00','2','18:09:57',0,'','reception','2025-12-04 18:09:57','darshan','2025-12-04 18:48:22'),(5192,0,0,'O','N','2526',3018,0,'2025-12-04','0000-00-00',3098,0,3018,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','18:47:20','','','N','Y',NULL,'O','O','Z41','','0000-00-00 00:00:00','4','18:10:06',0,'','urvashi','2025-12-04 18:10:06','drarchit','2025-12-04 18:47:20'),(5193,0,0,'O','N','2526',2710,0,'2025-12-04','0000-00-00',2781,0,2710,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','18:28:30','','','N','Y',NULL,'O','O','Z42','','0000-00-00 00:00:00','6','18:15:34',0,'','manshi','2025-12-04 18:15:34','drsagar','2025-12-04 18:28:30'),(5194,0,0,'O','N','2526',3543,0,'2025-12-04','2026-03-03',3644,0,3543,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','18:35:45','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','6','18:16:18',0,'','manshi','2025-12-04 18:16:18','drsagar','2025-12-04 18:35:45'),(5195,0,0,'O','N','2526',3544,0,'2025-12-04','2026-03-03',3645,0,3544,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','19:07:29','','N','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','2','18:16:26',0,'','urvashi','2025-12-04 18:16:26','darshan','2025-12-04 19:07:29'),(5196,0,0,'O','N','2526',833,0,'2025-12-04','0000-00-00',864,0,833,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','18:53:06','','','N','Y',NULL,'O','O','L13','','0000-00-00 00:00:00','4','18:23:03',0,'','urvashi','2025-12-04 18:23:03','drarchit','2025-12-04 18:53:06'),(5197,0,0,'O','N','2526',3545,0,'2025-12-04','2026-03-03',3646,0,3545,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','18:42:25','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','7','18:23:35',0,'','manshi','2025-12-04 18:23:35','drridham','2025-12-04 18:42:25'),(5198,0,0,'O','N','2526',766,0,'2025-12-04','0000-00-00',797,0,766,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:25:00','0000-00-00','','','','N','18:25:00','19:10:20','','','N','Y',NULL,'O','O','L14','','0000-00-00 00:00:00','2','18:25:08',0,'','reception','2025-12-04 18:25:08','darshan','2025-12-04 19:10:20'),(5199,0,0,'O','N','2526',2510,0,'2025-12-04','0000-00-00',2567,0,2510,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','18:58:39','','','N','Y',NULL,'O','O','L15','','0000-00-00 00:00:00','4','18:30:34',0,'','janvi','2025-12-04 18:30:34','drarchit','2025-12-04 18:58:39'),(5200,0,0,'O','N','2526',2333,0,'2025-12-04','0000-00-00',2389,0,2333,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','19:29:16','','','N','Y',NULL,'O','O','Z46','','0000-00-00 00:00:00','3','18:34:32',0,'','reception','2025-12-04 18:34:32','drpratapsinh','2025-12-04 19:29:16'),(5201,0,0,'O','N','2526',3546,0,'2025-12-04','2026-03-03',3647,0,3546,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:35:00','0000-00-00','','','','N','18:35:00','19:26:52','','N','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','4','18:35:44',0,'','urvashi','2025-12-04 18:35:43','drarchit','2025-12-04 19:26:52'),(5202,0,0,'O','N','2526',2692,0,'2025-12-04','0000-00-00',2761,0,2692,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:37:00','0000-00-00','','','','N','18:37:00','19:01:57','','','N','Y',NULL,'O','O','L17','','0000-00-00 00:00:00','4','18:37:16',0,'','urvashi','2025-12-04 18:37:16','drarchit','2025-12-04 19:01:57'),(5203,0,0,'O','N','2526',2877,0,'2025-12-04','0000-00-00',2952,0,2877,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:41:00','0000-00-00','','','','N','18:41:00','19:14:08','','','N','Y',NULL,'O','O','L18','','0000-00-00 00:00:00','2','18:41:07',0,'','reception','2025-12-04 18:41:07','darshan','2025-12-04 19:14:08'),(5204,0,0,'O','N','2526',3547,0,'2025-12-04','2026-03-03',3648,0,3547,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:45:00','0000-00-00','','','','N','18:45:00','18:53:58','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','5','18:45:33',0,'','janvi','2025-12-04 18:45:33','drjayant','2025-12-04 18:53:58'),(5205,0,0,'O','N','2526',3548,0,'2025-12-04','2026-03-03',3649,0,3548,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:45:00','0000-00-00','','','','N','18:45:00','19:19:39','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','4','18:45:41',0,'','reception','2025-12-04 18:45:41','drarchit','2025-12-04 19:19:39'),(5206,0,0,'O','N','2526',3310,0,'2025-12-04','0000-00-00',3399,0,3310,'N','','N','','','DRESSING','','N','D02','','N',90,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','19:29:29','','','N','Y',NULL,'O','O','Z49','','0000-00-00 00:00:00','3','18:46:58',0,'','janvi','2025-12-04 18:46:58','drpratapsinh','2025-12-04 19:29:29'),(5207,0,0,'O','N','2526',1288,0,'2025-12-04','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','19:16:07','','','N','Y',NULL,'O','O','Z50','','0000-00-00 00:00:00','3','18:48:07',0,'','reception','2025-12-04 18:48:07','drpratapsinh','2025-12-04 19:16:07'),(5208,0,0,'O','N','2526',3123,0,'2025-12-04','0000-00-00',3209,0,3123,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:53:00','0000-00-00','','','','N','18:53:00','19:34:40','','','N','Y',NULL,'O','O','L19','','0000-00-00 00:00:00','4','18:53:00',0,'','urvashi','2025-12-04 18:53:00','drarchit','2025-12-04 19:34:40'),(5209,0,0,'O','N','2526',3549,0,'2025-12-04','2026-03-03',3650,0,3549,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','19:29:09','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','2','18:56:49',0,'','reception','2025-12-04 18:56:49','darshan','2025-12-04 19:29:09'),(5210,0,0,'O','N','2526',3550,0,'2025-12-04','2026-03-03',3651,0,3550,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:57:00','0000-00-00','','','','N','18:57:00','19:32:54','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','2','18:58:00',0,'','reception','2025-12-04 18:58:00','darshan','2025-12-04 19:32:54'),(5211,0,0,'O','N','2526',3551,0,'2025-12-04','2026-03-03',3652,0,3551,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:03:00','0000-00-00','','','','N','19:03:00','19:37:00','','','N','Y',NULL,'O','N','L20','','0000-00-00 00:00:00','2','19:03:23',0,'','reception','2025-12-04 19:03:23','darshan','2025-12-04 19:36:59'),(5212,0,0,'O','N','2526',1721,0,'2025-12-04','0000-00-00',1765,0,1721,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:17:00','0000-00-00','','','','N','19:17:00','19:40:52','','','N','Y',NULL,'O','O','Z53','','0000-00-00 00:00:00','2','19:17:03',0,'','reception','2025-12-04 19:17:03','darshan','2025-12-04 19:40:52'),(5213,0,0,'O','N','2526',3552,0,'2025-12-04','2026-03-03',3346,0,3552,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:20:00','0000-00-00','','','','N','19:20:00','19:36:21','','','N','Y',NULL,'O','N','L21','','0000-00-00 00:00:00','4','19:20:53',0,'','janvi','2025-12-04 19:20:53','drarchit','2025-12-04 19:36:21'),(5214,0,0,'O','N','2526',554,0,'2025-12-04','0000-00-00',580,0,554,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:24:00','0000-00-00','','','','N','19:24:00','19:39:57','','','N','Y',NULL,'O','O','Z54','','0000-00-00 00:00:00','5','19:24:08',0,'','urvashi','2025-12-04 19:24:08','drjayant','2025-12-04 19:39:57'),(5215,0,0,'O','N','2526',2952,0,'2025-12-04','0000-00-00',3031,0,2952,'N','','N','','','REPORT','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:52:00','0000-00-00','','','','N','19:52:00','20:17:45','','','N','Y',NULL,'O','O','Z55','','0000-00-00 00:00:00','','00:00:00',0,'','urvashi','2025-12-04 19:52:33','drarchit','2025-12-04 20:17:45'),(5216,0,0,'O','N','2526',3553,0,'2025-12-05','2026-03-04',3653,0,3553,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:39:00','0000-00-00','','','','N','08:39:00','19:15:21','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','08:39:14',0,'','reception','2025-12-05 08:39:14','drarchit','2025-12-05 19:15:21'),(5217,0,0,'O','N','2526',3305,0,'2025-12-05','0000-00-00',3394,0,3305,'N','','N','','','INJ','','N','D02','','N',119,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:41:00','0000-00-00','','','','N','08:41:00','13:23:15','','','N','Y',NULL,'O','O','Z02','','0000-00-00 00:00:00','3','08:41:58',0,'','reception','2025-12-05 08:41:58','drpratapsinh','2025-12-05 13:23:15'),(5218,0,0,'O','N','2526',3554,0,'2025-12-05','2026-03-04',3654,0,3554,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:47:00','0000-00-00','','','','N','08:47:00','19:26:49','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','4','08:47:15',0,'','reception','2025-12-05 08:47:15','drarchit','2025-12-05 19:26:49'),(5219,0,0,'O','N','2526',2980,0,'2025-12-05','0000-00-00',3058,0,2980,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:38:00','0000-00-00','','','','N','09:38:00','10:59:30','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','09:39:00',0,'','reception','2025-12-05 09:39:00','darshan','2025-12-05 10:59:30'),(5220,0,0,'O','N','2526',1580,0,'2025-12-05','0000-00-00',1624,0,1580,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:42:00','0000-00-00','','','','N','09:42:00','10:55:57','','','N','Y',NULL,'O','O','E02','','0000-00-00 00:00:00','2','09:42:57',0,'','reception','2025-12-05 09:42:57','darshan','2025-12-05 10:55:57'),(5221,0,0,'O','N','2526',3555,0,'2025-12-05','2026-03-04',3655,0,3555,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:49:00','0000-00-00','','','','N','09:49:00','13:32:12','','N','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','09:49:47',0,'','reception','2025-12-05 09:49:47','darshan','2025-12-05 13:32:12'),(5222,0,0,'O','N','2526',3556,0,'2025-12-05','2026-03-04',3656,0,3556,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:57:00','0000-00-00','','','','N','09:57:00','11:22:35','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','09:57:34',0,'','reception','2025-12-05 09:57:34','darshan','2025-12-05 11:22:35'),(5223,0,0,'I','N','2526',3525,248,'2025-12-05','2026-03-04',3627,0,3525,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:00:00','2025-12-05','','1','mo','N','09:00:00','18:25:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-05 09:57:37','mo','2025-12-05 20:00:17'),(5224,0,0,'O','N','2526',3208,0,'2025-12-05','0000-00-00',3295,0,3208,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:07:00','0000-00-00','','','','N','10:07:00','11:13:38','','','N','Y',NULL,'O','O','Z04','','0000-00-00 00:00:00','3','10:07:40',0,'','janvi','2025-12-05 10:07:40','drpratapsinh','2025-12-05 11:13:38'),(5225,0,0,'O','N','2526',3557,0,'2025-12-05','2026-03-04',3657,0,3557,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','0000-00-00','','','','N','10:15:00','11:40:41','','N','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','4','10:15:46',0,'','janvi','2025-12-05 10:15:46','drarchit','2025-12-05 11:40:41'),(5226,0,0,'O','N','2526',3558,0,'2025-12-05','2026-03-04',3658,0,3558,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','13:35:28','','N','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','2','10:16:30',0,'','reception','2025-12-05 10:16:30','darshan','2025-12-05 13:35:28'),(5227,0,0,'O','N','2526',3559,0,'2025-12-05','2026-03-04',3659,0,3559,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:18:00','0000-00-00','','','','N','10:18:00','11:40:48','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','2','10:18:42',0,'','reception','2025-12-05 10:18:41','darshan','2025-12-05 11:40:48'),(5228,0,0,'O','N','2526',2062,0,'2025-12-05','0000-00-00',2116,0,2062,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:20:00','0000-00-00','','','','N','10:20:00','11:06:28','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','10:20:21',0,'','reception','2025-12-05 10:20:21','darshan','2025-12-05 11:06:28'),(5229,0,0,'O','N','2526',3560,0,'2025-12-05','2026-03-04',3660,0,3560,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','13:55:07','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:44:55',0,'','reception','2025-12-05 10:44:55','darshan','2025-12-05 13:55:07'),(5230,0,0,'O','N','2526',2295,0,'2025-12-05','0000-00-00',2352,0,2295,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','11:31:31','','','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','4','10:48:56',0,'','janvi','2025-12-05 10:48:55','drarchit','2025-12-05 11:31:31'),(5231,0,0,'O','N','2526',3561,0,'2025-12-05','2026-03-04',3661,0,3561,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','11:35:07','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','4','10:51:33',0,'','janvi','2025-12-05 10:51:33','drarchit','2025-12-05 11:35:07'),(5232,0,0,'O','N','2526',3562,0,'2025-12-05','2026-03-04',3662,0,3562,'N','','N','','','NV','','N','D06','','N',254,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','13:58:33','','N','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','10:54:29',0,'','reception','2025-12-05 10:54:29','darshan','2025-12-05 13:58:33'),(5233,0,0,'O','N','2526',3563,0,'2025-12-05','2026-03-04',3663,0,3563,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','11:16:03','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','5','11:01:29',0,'','urvashi','2025-12-05 11:01:29','drjayant','2025-12-05 11:16:03'),(5234,0,0,'O','N','2526',3564,0,'2025-12-05','2026-03-04',3664,0,3564,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','11:42:46','','','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','4','11:04:15',0,'','urvashi','2025-12-05 11:04:15','drarchit','2025-12-05 11:42:46'),(5235,0,0,'O','N','2526',3565,0,'2025-12-05','2026-03-04',3665,0,3565,'N','','N','','','NV','','N','D06','','N',255,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','14:05:57','','N','N','Y',NULL,'O','N','G05','','0000-00-00 00:00:00','2','11:04:28',0,'','reception','2025-12-05 11:04:28','darshan','2025-12-05 14:05:57'),(5236,0,0,'O','N','2526',3566,0,'2025-12-05','2026-03-04',3666,0,3566,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','11:46:23','','','N','Y',NULL,'O','N','G06','','0000-00-00 00:00:00','2','11:06:35',0,'','reception','2025-12-05 11:06:35','darshan','2025-12-05 11:46:23'),(5237,0,0,'O','N','2526',3567,0,'2025-12-05','2026-03-04',3667,0,3567,'N','','N','','','','','N','D02','','N',256,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','18:52:38','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','3','11:08:14',0,'','urvashi','2025-12-05 11:08:14','drpratapsinh','2025-12-05 18:52:38'),(5238,0,0,'O','N','2526',3568,0,'2025-12-05','2026-03-04',3668,0,3568,'N','','N','','','','','N','D02','','N',29,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','11:27:00','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','3','11:09:00',0,'','janvi','2025-12-05 11:09:00','drpratapsinh','2025-12-05 11:27:00'),(5239,0,0,'O','N','2526',3569,0,'2025-12-05','2026-03-04',3669,0,3569,'N','','N','','','RNV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','14:09:14','','N','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','2','11:09:26',0,'','reception','2025-12-05 11:09:26','darshan','2025-12-05 14:09:14'),(5240,0,0,'O','N','2526',1575,0,'2025-12-05','0000-00-00',1619,0,1575,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','11:56:47','','','N','Y',NULL,'O','O','H03','','0000-00-00 00:00:00','2','11:10:51',0,'','reception','2025-12-05 11:10:51','darshan','2025-12-05 11:56:47'),(5241,0,0,'O','N','2526',3570,0,'2025-12-05','2026-03-04',3670,0,3570,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','12:43:35','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','4','11:11:10',0,'','urvashi','2025-12-05 11:11:10','drarchit','2025-12-06 12:43:35'),(5242,0,0,'O','N','2526',3319,0,'2025-12-05','0000-00-00',3411,0,3319,'N','','N','','','','','N','D02','','N',25,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','11:27:18','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','3','11:17:18',0,'','janvi','2025-12-05 11:17:17','drpratapsinh','2025-12-05 11:27:18'),(5243,0,0,'O','N','2526',3571,0,'2025-12-05','2026-03-04',3522,0,3571,'N','','N','','','','','N','D03','','N',5,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','11:32:27','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','6','11:19:21',0,'','manshi','2025-12-05 11:19:21','drsagar','2025-12-05 11:32:27'),(5244,0,0,'O','N','2526',3572,0,'2025-12-05','2026-03-04',3671,0,3572,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','12:40:58','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','11:26:45',0,'','reception','2025-12-05 11:26:45','darshan','2025-12-05 12:40:58'),(5245,0,0,'O','N','2526',3573,0,'2025-12-05','2026-03-04',3672,0,3573,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','12:00:15','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','5','11:41:29',0,'','urvashi','2025-12-05 11:41:29','drjayant','2025-12-05 12:00:15');
INSERT INTO `visit` VALUES (5246,0,0,'O','N','2526',3574,0,'2025-12-05','2026-03-04',3673,0,3574,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','12:01:06','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','6','11:43:47',0,'','manshi','2025-12-05 11:43:46','drsagar','2025-12-05 12:01:06'),(5247,0,0,'O','N','2526',3575,0,'2025-12-05','2026-03-04',3674,0,3575,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','12:01:31','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','6','11:44:27',0,'','manshi','2025-12-05 11:44:27','drsagar','2025-12-05 12:01:31'),(5248,0,0,'O','N','2526',3576,0,'2025-12-05','2026-03-04',3675,0,3576,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','11:54:37','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','4','11:44:41',0,'','urvashi','2025-12-05 11:44:41','drarchit','2025-12-05 11:54:37'),(5249,0,0,'O','N','2526',164,0,'2025-12-05','0000-00-00',177,0,164,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','12:14:32','','','N','Y',NULL,'O','O','H05','','0000-00-00 00:00:00','2','11:45:34',0,'','reception','2025-12-05 11:45:34','darshan','2025-12-05 12:14:32'),(5250,0,0,'O','N','2526',1510,0,'2025-12-05','0000-00-00',1551,0,1510,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:49:00','0000-00-00','','','','N','11:49:00','12:36:54','','','N','Y',NULL,'O','O','I02','','0000-00-00 00:00:00','2','11:49:47',0,'','reception','2025-12-05 11:49:47','darshan','2025-12-05 12:36:54'),(5251,0,0,'O','N','2526',2987,0,'2025-12-05','0000-00-00',3065,0,2987,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','12:33:46','','','N','Y',NULL,'O','O','I03','','0000-00-00 00:00:00','2','11:52:42',0,'','reception','2025-12-05 11:52:42','darshan','2025-12-05 12:33:46'),(5252,0,0,'O','N','2526',3577,0,'2025-12-05','2026-03-04',3676,0,3577,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:53:00','0000-00-00','','','','N','11:53:00','11:58:04','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','4','11:53:07',0,'','urvashi','2025-12-05 11:53:07','drarchit','2025-12-05 11:58:04'),(5253,0,0,'O','N','2526',3578,0,'2025-12-05','2026-03-04',3677,0,3578,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','12:43:51','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','2','12:06:21',0,'','reception','2025-12-05 12:06:21','darshan','2025-12-05 12:43:51'),(5254,0,0,'O','N','2526',3076,0,'2025-12-05','0000-00-00',3162,0,3076,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:10:00','0000-00-00','','','','N','12:10:00','13:11:01','','','N','Y',NULL,'O','O','Z21','','0000-00-00 00:00:00','4','12:10:45',0,'','reception','2025-12-05 12:10:45','drarchit','2025-12-05 13:11:00'),(5255,0,0,'O','N','2526',3579,0,'2025-12-05','2026-03-04',3678,0,3579,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:17:00','0000-00-00','','','','N','12:17:00','12:43:37','','N','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','4','12:18:04',0,'','janvi','2025-12-05 12:18:04','drarchit','2025-12-05 12:43:37'),(5256,0,0,'O','N','2526',3580,0,'2025-12-05','2026-03-04',3679,0,3580,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:23:00','0000-00-00','','','','N','12:23:00','14:15:06','','N','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','2','12:23:22',0,'','reception','2025-12-05 12:23:22','darshan','2025-12-05 14:15:06'),(5257,0,0,'O','N','2526',3581,0,'2025-12-05','2026-03-04',3680,0,3581,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:26:00','0000-00-00','','','','N','12:26:00','12:36:01','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','4','12:26:23',0,'','janvi','2025-12-05 12:26:23','drarchit','2025-12-05 12:36:01'),(5258,0,0,'O','N','2526',3582,0,'2025-12-05','2026-03-04',3681,0,3582,'N','','N','','','NC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:37:00','0000-00-00','','','','N','12:37:00','12:48:17','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','4','12:37:11',0,'','urvashi','2025-12-05 12:37:11','drarchit','2025-12-05 12:48:17'),(5259,0,0,'O','N','2526',3583,0,'2025-12-05','2026-03-04',3682,0,3583,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:42:00','0000-00-00','','','','N','12:42:00','13:10:23','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','12:42:56',0,'','reception','2025-12-05 12:42:56','darshan','2025-12-05 13:10:23'),(5260,0,0,'O','N','2526',3584,0,'2025-12-05','2026-03-04',3683,0,3584,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:43:00','0000-00-00','','','','N','12:43:00','14:25:58','','N','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:43:41',0,'','urvashi','2025-12-05 12:43:40','darshan','2025-12-05 14:25:58'),(5261,0,0,'O','N','2526',3585,0,'2025-12-05','2026-03-04',3684,0,3585,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:46:00','0000-00-00','','','','N','12:46:00','12:53:19','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','4','12:46:07',0,'','urvashi','2025-12-05 12:46:07','drarchit','2025-12-05 12:53:19'),(5262,0,0,'O','N','2526',3230,0,'2025-12-05','0000-00-00',3316,0,3230,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:49:00','0000-00-00','','','','N','12:49:00','13:15:12','','','N','Y',NULL,'O','O','Z27','','0000-00-00 00:00:00','6','12:50:00',0,'','manshi','2025-12-05 12:50:00','drsagar','2025-12-05 13:15:12'),(5263,0,0,'O','N','2526',3586,0,'2025-12-05','2026-03-04',3685,0,3586,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:50:00','0000-00-00','','','','N','12:50:00','13:13:32','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','4','12:51:00',0,'','reception','2025-12-05 12:50:59','drarchit','2025-12-05 13:13:32'),(5264,0,0,'O','N','2526',3538,0,'2025-12-05','0000-00-00',3640,0,3538,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:56:00','0000-00-00','','','','N','12:56:00','13:23:41','','','N','Y',NULL,'O','O','Z29','','0000-00-00 00:00:00','3','12:57:00',0,'','janvi','2025-12-05 12:57:00','drpratapsinh','2025-12-05 13:23:41'),(5265,0,0,'O','N','2526',3587,0,'2025-12-05','2026-03-04',3686,0,3587,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:33:00','0000-00-00','','','','N','13:33:00','13:42:37','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','6','13:33:57',0,'','manshi','2025-12-05 13:33:57','drsagar','2025-12-05 13:42:37'),(5266,0,0,'O','N','2526',3588,0,'2025-12-05','2026-03-04',3687,0,3588,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:38:00','0000-00-00','','','','N','13:38:00','17:58:46','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','2','13:38:17',0,'','reception','2025-12-05 13:38:17','darshan','2025-12-05 17:58:46'),(5267,0,0,'O','N','2526',2081,0,'2025-12-05','0000-00-00',2135,0,2081,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:28:00','0000-00-00','','','','N','16:28:00','17:06:18','','','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','2','16:28:23',0,'','reception','2025-12-05 16:28:23','darshan','2025-12-05 17:06:18'),(5268,0,0,'O','N','2526',3589,0,'2025-12-05','2026-03-04',3688,0,3589,'N','','N','','','NV','','N','D06','','N',257,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:30:00','0000-00-00','','','','N','16:30:00','19:11:29','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:30:36',0,'','reception','2025-12-05 16:30:36','darshan','2025-12-05 19:11:29'),(5269,0,0,'O','N','2526',349,0,'2025-12-05','0000-00-00',365,0,349,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:34:00','0000-00-00','','','','N','16:34:00','17:36:17','','','N','Y',NULL,'O','O','Z33','','0000-00-00 00:00:00','2','16:34:46',0,'','shweta','2025-12-05 16:34:46','darshan','2025-12-05 17:36:17'),(5270,0,0,'O','N','2526',2331,0,'2025-12-05','0000-00-00',2387,0,2331,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:36:00','0000-00-00','','','','N','16:36:00','17:06:54','','','N','Y',NULL,'O','O','Z34','','0000-00-00 00:00:00','2','16:36:58',0,'','reception','2025-12-05 16:36:58','darshan','2025-12-05 17:06:54'),(5271,0,0,'O','N','2526',2485,0,'2025-12-05','0000-00-00',2543,0,2485,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:41:00','0000-00-00','','','','N','16:41:00','17:08:10','','','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','2','16:41:28',0,'','reception','2025-12-05 16:41:28','darshan','2025-12-05 17:08:10'),(5272,0,0,'O','N','2526',2084,0,'2025-12-05','0000-00-00',2138,0,2084,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:54:00','0000-00-00','','','','N','16:54:00','17:09:00','','','N','Y',NULL,'O','O','Z36','','0000-00-00 00:00:00','2','16:54:04',0,'','shweta','2025-12-05 16:54:04','darshan','2025-12-05 17:09:00'),(5273,0,0,'O','N','2526',1129,0,'2025-12-05','0000-00-00',1169,0,1129,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:54:00','0000-00-00','','','','N','16:54:00','17:22:58','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','16:54:25',0,'','reception','2025-12-05 16:54:25','darshan','2025-12-05 17:22:58'),(5274,0,0,'O','N','2526',3590,0,'2025-12-05','2026-03-04',3447,0,3590,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:57:00','0000-00-00','','','','N','16:57:00','18:19:23','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','3','16:57:42',0,'','janvi','2025-12-05 16:57:42','drpratapsinh','2025-12-05 18:19:23'),(5275,0,0,'O','N','2526',3591,0,'2025-12-05','2026-03-04',3689,0,3591,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:03:00','0000-00-00','','','','N','17:03:00','17:40:07','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:03:10',0,'','reception','2025-12-05 17:03:10','darshan','2025-12-05 17:40:07'),(5276,0,0,'O','N','2526',3121,0,'2025-12-05','0000-00-00',3207,0,3121,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:07:00','0000-00-00','','','','N','17:07:00','18:10:35','','','N','Y',NULL,'O','O','Z38','','0000-00-00 00:00:00','2','17:07:05',0,'','reception','2025-12-05 17:07:05','darshan','2025-12-05 18:10:35'),(5277,0,0,'O','N','2526',2256,0,'2025-12-05','0000-00-00',2313,0,2256,'N','','N','','','REPORT','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:11:00','0000-00-00','','','','N','17:11:00','18:13:58','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','4','17:11:47',0,'','janvi','2025-12-05 17:11:47','drarchit','2025-12-05 18:13:58'),(5278,0,0,'O','N','2526',3187,0,'2025-12-05','0000-00-00',3273,0,3187,'N','','N','','','REPORTS ','','N','D06','','N',144,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:12:00','0000-00-00','','','','N','17:12:00','18:57:57','','N','N','Y',NULL,'O','O','Z39','','0000-00-00 00:00:00','2','17:12:20',0,'','reception','2025-12-05 17:12:20','darshan','2025-12-05 18:57:57'),(5279,0,0,'O','N','2526',3275,0,'2025-12-05','0000-00-00',3364,0,3275,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:16:00','0000-00-00','','','','N','17:16:00','17:52:05','','','N','Y',NULL,'O','O','Z40','','0000-00-00 00:00:00','2','17:16:15',0,'','reception','2025-12-05 17:16:15','darshan','2025-12-05 17:52:05'),(5280,0,0,'O','N','2526',2919,0,'2025-12-05','0000-00-00',2996,0,2919,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:16:00','0000-00-00','','','','N','17:16:00','18:19:43','','','N','Y',NULL,'O','O','Z41','','0000-00-00 00:00:00','3','17:16:25',0,'','janvi','2025-12-05 17:16:25','drpratapsinh','2025-12-05 18:19:43'),(5281,0,0,'O','N','2526',3423,0,'2025-12-05','0000-00-00',3520,0,3423,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:17:00','0000-00-00','','','','N','17:17:00','17:53:05','','','N','Y',NULL,'O','O','Z42','','0000-00-00 00:00:00','2','17:17:51',0,'','reception','2025-12-05 17:17:51','darshan','2025-12-05 17:53:05'),(5282,0,0,'O','N','2526',1070,0,'2025-12-05','0000-00-00',1110,0,1070,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:17:00','0000-00-00','','','','N','17:17:00','20:18:12','','','N','Y',NULL,'O','O','Z43','','0000-00-00 00:00:00','3','17:18:07',0,'','janvi','2025-12-05 17:18:07','drpratapsinh','2025-12-05 20:18:12'),(5283,0,0,'O','N','2526',1555,0,'2025-12-05','0000-00-00',1598,0,1555,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:19:00','0000-00-00','','','','N','17:19:00','17:55:58','','','N','Y',NULL,'O','O','Z44','','0000-00-00 00:00:00','2','17:19:25',0,'','reception','2025-12-05 17:19:25','darshan','2025-12-05 17:55:58'),(5284,0,0,'O','N','2526',3592,0,'2025-12-05','2026-03-04',3690,0,3592,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:28:00','0000-00-00','','','','N','17:28:00','18:15:31','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','2','17:28:22',0,'','reception','2025-12-05 17:28:22','darshan','2025-12-05 18:15:31'),(5285,0,0,'O','N','2526',2535,0,'2025-12-05','0000-00-00',2592,0,2535,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:29:00','0000-00-00','','','','N','17:29:00','18:32:20','','','N','Y',NULL,'O','O','Z46','','0000-00-00 00:00:00','2','17:29:36',0,'','shweta','2025-12-05 17:29:36','darshan','2025-12-05 18:32:20'),(5286,0,0,'O','N','2526',3593,0,'2025-12-05','2026-03-04',3691,0,3593,'N','','N','','','','','N','D02','','N',223,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:31:00','0000-00-00','','','','N','17:31:00','18:41:14','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','3','17:31:49',0,'','janvi','2025-12-05 17:31:49','drpratapsinh','2025-12-05 18:41:14'),(5287,0,0,'O','N','2526',3594,0,'2025-12-05','2026-03-04',3692,0,3594,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:34:00','0000-00-00','','','','N','17:34:00','18:37:15','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','2','17:34:33',0,'','reception','2025-12-05 17:34:33','darshan','2025-12-05 18:37:15'),(5288,0,0,'O','N','2526',526,0,'2025-12-05','0000-00-00',552,0,526,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:38:00','0000-00-00','','','','N','17:38:00','18:01:49','','','N','Y',NULL,'O','O','L05','','0000-00-00 00:00:00','2','17:38:08',0,'','reception','2025-12-05 17:38:08','darshan','2025-12-05 18:01:49'),(5289,0,0,'O','N','2526',3595,0,'2025-12-05','2026-03-04',3693,0,3595,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:39:00','0000-00-00','','','','N','17:39:00','18:29:40','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','7','17:39:12',0,'','manshi','2025-12-05 17:39:12','drridham','2025-12-05 18:29:40'),(5290,0,0,'O','N','2526',3258,0,'2025-12-05','0000-00-00',3341,0,3258,'N','','N','','','','','N','D02','','N',237,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:39:00','0000-00-00','','','','N','17:39:00','18:49:50','','','N','Y',NULL,'O','O','Z50','','0000-00-00 00:00:00','3','17:39:30',0,'','janvi','2025-12-05 17:39:30','drpratapsinh','2025-12-05 18:49:50'),(5291,0,0,'O','N','2526',3305,0,'2025-12-05','0000-00-00',3394,0,3305,'N','','N','','','DRESSING','','N','D02','','N',119,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','18:50:53','','','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','3','17:40:41',0,'','janvi','2025-12-05 17:40:41','drpratapsinh','2025-12-05 18:50:53'),(5292,0,0,'O','N','2526',2503,0,'2025-12-05','0000-00-00',2560,0,2503,'N','','N','','','','','N','D02','','N',106,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:45:00','0000-00-00','','','','N','17:45:00','18:51:28','','','N','Y',NULL,'O','O','Z51','','0000-00-00 00:00:00','3','17:45:19',0,'','janvi','2025-12-05 17:45:19','drpratapsinh','2025-12-05 18:51:28'),(5293,0,0,'O','N','2526',3254,0,'2025-12-05','0000-00-00',3337,0,3254,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','18:51:07','','','N','Y',NULL,'O','O','Z52','','0000-00-00 00:00:00','3','17:46:01',0,'','urvashi','2025-12-05 17:46:01','drpratapsinh','2025-12-05 18:51:07'),(5294,0,0,'O','N','2526',2882,0,'2025-12-05','0000-00-00',2958,0,2882,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:53:00','0000-00-00','','','','N','17:53:00','18:20:32','','','N','Y',NULL,'O','O','L06','','0000-00-00 00:00:00','2','17:53:06',0,'','reception','2025-12-05 17:53:06','darshan','2025-12-05 18:20:32'),(5295,0,0,'O','N','2526',3596,0,'2025-12-05','2026-03-04',3694,0,3596,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:56:00','0000-00-00','','','','N','17:56:00','19:47:45','','N','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','2','17:56:16',0,'','reception','2025-12-05 17:56:16','darshan','2025-12-05 19:47:45'),(5296,0,0,'O','N','2526',3597,0,'2025-12-05','2026-03-04',3695,0,3597,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','19:22:15','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','4','18:03:36',0,'','reception','2025-12-05 18:03:36','drarchit','2025-12-05 19:22:15'),(5297,0,0,'O','N','2526',2519,0,'2025-12-05','0000-00-00',2577,0,2519,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','18:28:53','','','N','Y',NULL,'O','O','Z54','','0000-00-00 00:00:00','6','18:04:12',0,'','manshi','2025-12-05 18:04:12','drsagar','2025-12-05 18:28:53'),(5298,0,0,'O','N','2526',3598,0,'2025-12-05','2026-03-04',3696,0,3598,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:20:19','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','4','18:09:12',0,'','urvashi','2025-12-05 18:09:12','drarchit','2025-12-05 18:20:19'),(5299,0,0,'O','N','2526',1564,0,'2025-12-05','0000-00-00',1607,0,1564,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','18:50:44','','','N','Y',NULL,'O','O','Z56','','0000-00-00 00:00:00','6','18:10:07',0,'','manshi','2025-12-05 18:10:07','drsagar','2025-12-05 18:50:44'),(5300,0,0,'O','N','2526',3599,0,'2025-12-05','2026-03-04',3697,0,3599,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','19:23:43','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','2','18:11:54',0,'','reception','2025-12-05 18:11:54','darshan','2025-12-05 19:23:43'),(5301,0,0,'I','N','2526',0,249,'2025-12-05','2026-03-04',3698,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:00:00','2025-12-06','','1','mo','N','17:00:00','13:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-05 18:12:44','mo','2025-12-06 13:53:33'),(5302,0,0,'O','N','2526',2738,0,'2025-12-05','0000-00-00',2808,0,2738,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','18:20:10','','','N','Y',NULL,'O','O','Z58','','0000-00-00 00:00:00','3','18:15:36',0,'','janvi','2025-12-05 18:15:36','drpratapsinh','2025-12-05 18:20:10'),(5303,0,0,'O','N','2526',1288,0,'2025-12-05','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','18:19:57','','','N','Y',NULL,'O','O','Z59','','0000-00-00 00:00:00','3','18:15:53',0,'','urvashi','2025-12-05 18:15:53','drpratapsinh','2025-12-05 18:19:57'),(5304,0,0,'O','N','2526',2989,0,'2025-12-05','0000-00-00',3067,0,2989,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','18:50:15','','','N','Y',NULL,'O','O','L08','','0000-00-00 00:00:00','2','18:16:29',0,'','reception','2025-12-05 18:16:29','darshan','2025-12-05 18:50:15'),(5305,0,0,'O','N','2526',3600,0,'2025-12-05','2026-03-04',3699,0,3600,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','18:27:47','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','2','18:18:06',0,'','reception','2025-12-05 18:18:06','darshan','2025-12-05 18:27:47'),(5306,0,0,'O','N','2526',1539,0,'2025-12-05','0000-00-00',1582,0,1539,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','19:10:44','','','N','Y',NULL,'O','O','L09','','0000-00-00 00:00:00','2','18:18:46',0,'','urvashi','2025-12-05 18:18:46','darshan','2025-12-05 19:10:44'),(5307,0,0,'I','N','2526',0,250,'2025-12-05','2026-03-04',3700,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:30:00','2025-12-11','','1','mo','N','17:30:00','12:55:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-05 18:22:20','mo','2025-12-11 15:16:55'),(5308,0,0,'O','N','2526',3601,0,'2025-12-05','2026-03-04',3701,0,3601,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','19:04:11','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','3','18:24:13',0,'','janvi','2025-12-05 18:24:13','drpratapsinh','2025-12-05 19:04:11'),(5309,0,0,'O','N','2526',3602,0,'2025-12-05','2026-03-04',3702,0,3602,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','19:10:42','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','4','18:26:34',0,'','urvashi','2025-12-05 18:26:34','drarchit','2025-12-05 19:10:42'),(5310,0,0,'O','N','2526',3603,0,'2025-12-05','2026-03-04',3703,0,3603,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','19:01:32','','N','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','4','18:28:40',0,'','reception','2025-12-05 18:28:40','drarchit','2025-12-05 19:01:32'),(5311,0,0,'O','N','2526',3604,0,'2025-12-05','2026-03-04',3704,0,3604,'N','','N','','','','','N','D02','','N',17,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','19:08:40','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','3','18:30:18',0,'','janvi','2025-12-05 18:30:18','drpratapsinh','2025-12-05 19:08:40'),(5312,0,0,'O','N','2526',1005,0,'2025-12-05','0000-00-00',1037,0,1005,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','18:44:03','','','N','Y',NULL,'O','O','Z64','','0000-00-00 00:00:00','7','18:36:20',0,'','manshi','2025-12-05 18:36:20','drridham','2025-12-05 18:44:03'),(5313,0,0,'O','N','2526',175,0,'2025-12-05','0000-00-00',188,0,175,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','18:41:44','','','N','Y',NULL,'O','O','Z65','','0000-00-00 00:00:00','5','18:36:29',0,'','janvi','2025-12-05 18:36:29','drjayant','2025-12-05 18:41:44'),(5314,0,0,'O','N','2526',3605,0,'2025-12-05','2026-03-04',3705,0,3605,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:38:00','0000-00-00','','','','N','18:38:00','00:00:00','','','N','N',NULL,'O','N','Z66','','0000-00-00 00:00:00','3','18:38:37',0,'','janvi','2025-12-05 18:38:37','','0000-00-00 00:00:00'),(5315,0,0,'O','N','2526',1968,0,'2025-12-05','0000-00-00',2016,0,1968,'N','','N','','','','','N','D02','','N',137,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:39:00','0000-00-00','','','','N','18:39:00','19:10:20','','','N','Y',NULL,'O','O','Z67','','0000-00-00 00:00:00','3','18:40:01',0,'','janvi','2025-12-05 18:40:01','drpratapsinh','2025-12-05 19:10:20'),(5316,0,0,'I','N','2526',0,251,'2025-12-05','2026-03-04',3706,0,0,'N','','N','','','','N','N','D02','','N',0,'','42',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:30:00','2025-12-10','','1','mo','N','17:30:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-05 18:44:36','mo','2025-12-10 12:42:58'),(5317,0,0,'O','N','2526',3606,0,'2025-12-05','2026-03-04',3707,0,3606,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','19:14:52','','','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','4','18:46:13',0,'','reception','2025-12-05 18:46:13','drarchit','2025-12-05 19:14:52'),(5318,0,0,'O','N','2526',3607,0,'2025-12-05','2026-03-04',3708,0,3607,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:50:00','0000-00-00','','','','N','18:50:00','19:33:03','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','2','18:50:57',0,'','reception','2025-12-05 18:50:57','darshan','2025-12-05 19:33:03'),(5319,0,0,'O','N','2526',1422,0,'2025-12-05','0000-00-00',1463,0,1422,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:18:39','','','N','Y',NULL,'O','O','Z68','','0000-00-00 00:00:00','4','18:51:28',0,'','urvashi','2025-12-05 18:51:28','drarchit','2025-12-05 19:18:39'),(5320,0,0,'O','N','2526',3608,0,'2025-12-05','2026-03-04',3709,0,3608,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:52:00','0000-00-00','','','','N','18:52:00','19:26:23','','','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','4','18:52:49',0,'','janvi','2025-12-05 18:52:49','drarchit','2025-12-05 19:26:23'),(5321,0,0,'O','N','2526',3609,0,'2025-12-05','2026-03-04',3710,0,3609,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:55:00','0000-00-00','','','','N','18:55:00','19:51:06','','N','N','Y',NULL,'O','N','Z70','','0000-00-00 00:00:00','4','18:55:49',0,'','urvashi','2025-12-05 18:55:49','drarchit','2025-12-05 19:51:06'),(5322,0,0,'O','N','2526',2681,0,'2025-12-05','0000-00-00',2750,0,2681,'N','','N','','','','','N','D02','','N',200,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:00:00','0000-00-00','','','','N','19:00:00','19:12:14','','','N','Y',NULL,'O','O','Z71','','0000-00-00 00:00:00','3','19:00:12',0,'','janvi','2025-12-05 19:00:12','drpratapsinh','2025-12-05 19:12:14'),(5323,0,0,'O','N','2526',3610,0,'2025-12-05','2026-03-04',3711,0,3610,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:04:00','0000-00-00','','','','N','19:04:00','19:36:14','','','N','Y',NULL,'O','N','Z72','','0000-00-00 00:00:00','4','19:04:36',0,'','urvashi','2025-12-05 19:04:36','drarchit','2025-12-05 19:36:14'),(5324,0,0,'O','N','2526',2115,0,'2025-12-05','0000-00-00',2167,0,2115,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:05:00','0000-00-00','','','','N','19:05:00','19:11:00','','','N','Y',NULL,'O','O','Z73','','0000-00-00 00:00:00','3','19:05:16',0,'','janvi','2025-12-05 19:05:16','drpratapsinh','2025-12-05 19:11:00'),(5325,0,0,'O','N','2526',3611,0,'2025-12-05','2026-03-04',3712,0,3611,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:06:00','0000-00-00','','','','N','19:06:00','19:36:45','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','5','19:06:27',0,'','urvashi','2025-12-05 19:06:27','drjayant','2025-12-05 19:36:45'),(5326,0,0,'O','N','2526',3612,0,'2025-12-05','2026-03-04',3713,0,3612,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:13:00','0000-00-00','','','','N','19:13:00','19:48:10','','N','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','4','19:13:03',0,'','urvashi','2025-12-05 19:13:03','drarchit','2025-12-08 20:35:16'),(5327,0,0,'O','N','2526',480,0,'2025-12-05','0000-00-00',506,0,480,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:14:00','0000-00-00','','','','N','19:14:00','19:57:59','','','N','Y',NULL,'O','O','Z75','','0000-00-00 00:00:00','3','19:14:15',0,'','janvi','2025-12-05 19:14:15','drpratapsinh','2025-12-05 19:57:59'),(5328,0,0,'O','N','2526',3613,0,'2025-12-05','2026-03-04',3151,0,3613,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:19:00','0000-00-00','','','','N','19:19:00','19:44:09','','','N','Y',NULL,'O','N','Z76','','0000-00-00 00:00:00','4','19:19:19',0,'','reception','2025-12-05 19:19:19','drarchit','2025-12-05 19:44:09'),(5329,0,0,'O','N','2526',3614,0,'2025-12-05','2026-03-04',3714,0,3614,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:21:00','0000-00-00','','','','N','19:21:00','19:44:21','','','N','Y',NULL,'O','N','Z77','','0000-00-00 00:00:00','2','19:21:54',0,'','janvi','2025-12-05 19:21:54','darshan','2025-12-05 19:44:21'),(5330,0,0,'O','N','2526',3615,0,'2025-12-05','2026-03-04',3715,0,3615,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:22:00','0000-00-00','','','','N','19:22:00','19:59:04','','','N','Y',NULL,'O','N','Z78','','0000-00-00 00:00:00','4','19:22:31',0,'','reception','2025-12-05 19:22:31','drarchit','2025-12-05 19:59:04'),(5331,0,0,'O','N','2526',3616,0,'2025-12-05','2026-03-04',3716,0,3616,'N','','N','','','NE','','N','D06','','N',258,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:33:00','0000-00-00','','','','N','19:33:00','19:54:26','','','N','Y',NULL,'O','N','Z79','','0000-00-00 00:00:00','2','19:33:32',0,'','reception','2025-12-05 19:33:32','darshan','2025-12-05 19:54:26'),(5332,0,0,'O','N','2526',3617,0,'2025-12-05','2026-03-04',3717,0,3617,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:41:00','0000-00-00','','','','N','19:41:00','19:58:29','','','N','Y',NULL,'O','N','Z80','','0000-00-00 00:00:00','2','19:41:05',0,'','reception','2025-12-05 19:41:05','darshan','2025-12-05 19:58:29'),(5333,0,0,'O','N','2526',761,0,'2025-12-05','0000-00-00',792,0,761,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:52:00','0000-00-00','','','','N','19:52:00','20:06:57','','','N','Y',NULL,'O','O','Z81','','0000-00-00 00:00:00','4','19:52:08',0,'','urvashi','2025-12-05 19:52:08','drarchit','2025-12-05 20:06:57'),(5334,0,0,'O','N','2526',3310,0,'2025-12-05','0000-00-00',3399,0,3310,'N','','N','','','','Y','N','D02','','N',90,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:03:00','0000-00-00','','','','N','20:03:00','20:11:33','','','N','Y',NULL,'O','O','Z82','','0000-00-00 00:00:00','3','20:03:23',0,'','janvi','2025-12-05 20:03:23','drpratapsinh','2025-12-05 20:11:33'),(5335,0,0,'O','N','2526',3254,0,'2025-12-05','0000-00-00',3337,0,3254,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:04:00','0000-00-00','','','','N','20:04:00','20:17:42','','','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','3','20:04:22',0,'','janvi','2025-12-05 20:04:22','drpratapsinh','2025-12-05 20:17:42'),(5336,0,0,'O','N','2526',3618,0,'2025-12-05','2026-03-04',3718,0,3618,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:50:00','0000-00-00','','','','N','20:50:00','00:00:00','','','N','N',NULL,'O','N','Z83','','0000-00-00 00:00:00','','00:00:00',0,'','urvashi','2025-12-05 20:50:41','','0000-00-00 00:00:00'),(5337,0,0,'I','N','2526',0,252,'2025-12-05','2026-03-04',3719,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:30:00','2025-12-08','','1','mo','N','20:30:00','13:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-05 20:53:01','mo','2025-12-08 14:14:27'),(5338,0,0,'I','N','2526',0,253,'2025-12-05','2026-03-04',3720,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:30:00','2025-12-08','','1','mo','N','20:30:00','20:25:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-05 21:04:00','mo','2025-12-08 21:14:57'),(5339,0,0,'O','N','2526',2957,0,'2025-12-06','0000-00-00',3036,0,2957,'N','','N','','','ER','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:46:00','0000-00-00','','','','N','08:46:00','00:00:00','','','N','N',NULL,'O','O','Z01','','0000-00-00 00:00:00','3','08:46:18',0,'','reception','2025-12-06 08:46:18','','0000-00-00 00:00:00'),(5340,0,0,'O','N','2526',823,0,'2025-12-06','0000-00-00',854,0,823,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:01:00','0000-00-00','','','','N','10:01:00','11:01:29','','','N','Y',NULL,'O','O','Z02','','0000-00-00 00:00:00','2','10:01:09',0,'','reception','2025-12-06 10:01:09','darshan','2025-12-06 11:01:29'),(5341,0,0,'I','N','2526',0,254,'2025-12-06','2026-03-05',3721,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','2025-12-07','','1','mo','N','10:00:00','20:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-06 10:02:14','mo','2025-12-07 19:34:13'),(5342,0,0,'O','N','2526',3619,0,'2025-12-06','2026-03-05',3722,0,3619,'N','','N','','','NV','','N','D06','','N',209,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:02:00','0000-00-00','','','','N','10:02:00','13:45:18','','N','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','2','10:02:19',0,'','shweta','2025-12-06 10:02:19','darshan','2025-12-06 13:45:18'),(5343,0,0,'O','N','2526',3620,0,'2025-12-06','2026-03-05',3723,0,3620,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:05:00','0000-00-00','','','','N','10:05:00','11:37:58','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','4','10:05:12',0,'','shweta','2025-12-06 10:05:12','drarchit','2025-12-06 11:37:58'),(5344,0,0,'O','N','2526',1789,0,'2025-12-06','0000-00-00',1834,0,1789,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:06:00','0000-00-00','','','','N','10:06:00','11:36:51','','','N','Y',NULL,'O','O','J01','','0000-00-00 00:00:00','2','10:06:30',0,'','reception','2025-12-06 10:06:30','darshan','2025-12-06 11:36:51'),(5345,0,0,'O','N','2526',3621,0,'2025-12-06','2026-03-05',3724,0,3621,'N','','N','','','NC','','N','D27','','N',260,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:11:00','0000-00-00','','','','N','10:11:00','00:00:00','','','N','N',NULL,'O','N','Z05','','0000-00-00 00:00:00','4','10:11:14',0,'','reception','2025-12-06 10:11:14','','0000-00-00 00:00:00'),(5346,0,0,'O','N','2526',450,0,'2025-12-06','0000-00-00',476,0,450,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:18:00','0000-00-00','','','','N','10:18:00','11:48:15','','','N','Y',NULL,'O','O','H01','','0000-00-00 00:00:00','2','10:18:29',0,'','reception','2025-12-06 10:18:29','darshan','2025-12-06 11:48:15'),(5347,0,0,'O','N','2526',2850,0,'2025-12-06','0000-00-00',2922,0,2850,'N','','N','','','','','N','D02','','N',105,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:25:00','0000-00-00','','','','N','10:25:00','00:00:00','','','N','N',NULL,'O','O','Z06','','0000-00-00 00:00:00','3','10:25:23',0,'','janvi','2025-12-06 10:25:23','','0000-00-00 00:00:00'),(5348,0,0,'O','N','2526',3091,0,'2025-12-06','0000-00-00',3177,0,3091,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','11:13:54','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','2','10:28:05',0,'','reception','2025-12-06 10:28:05','darshan','2025-12-06 11:13:54'),(5349,0,0,'O','N','2526',3622,0,'2025-12-06','2026-03-05',3725,0,3622,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:30:00','0000-00-00','','','','N','10:30:00','12:06:46','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','2','10:30:37',0,'','reception','2025-12-06 10:30:37','darshan','2025-12-06 12:06:46'),(5350,0,0,'O','N','2526',1993,0,'2025-12-06','0000-00-00',2044,0,1993,'N','','N','','','FV','','N','D06','','N',143,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','11:06:34','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','10:33:30',0,'','reception','2025-12-06 10:33:30','darshan','2025-12-06 11:06:34'),(5351,0,0,'O','N','2526',2281,0,'2025-12-06','0000-00-00',2338,0,2281,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:34:00','0000-00-00','','','','N','10:34:00','12:00:00','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','4','10:34:29',0,'','urvashi','2025-12-06 10:34:29','drarchit','2025-12-06 12:00:00'),(5352,0,0,'O','N','2526',3623,0,'2025-12-06','2026-03-05',3726,0,3623,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:35:00','0000-00-00','','','','N','10:35:00','12:19:20','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','2','10:35:33',0,'','reception','2025-12-06 10:35:33','darshan','2025-12-06 12:19:20'),(5353,0,0,'O','N','2526',3166,0,'2025-12-06','0000-00-00',3252,0,3166,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','12:21:32','','','N','Y',NULL,'O','O','Z11','','0000-00-00 00:00:00','2','10:37:28',0,'','reception','2025-12-06 10:37:28','darshan','2025-12-06 12:21:32'),(5354,0,0,'O','N','2526',3624,0,'2025-12-06','2026-03-05',3727,0,3624,'N','','N','','','NV','','N','D06','','N',261,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','13:41:45','','N','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','10:37:30',0,'','urvashi','2025-12-06 10:37:30','darshan','2025-12-06 13:41:45'),(5355,0,0,'O','N','2526',3625,0,'2025-12-06','2026-03-05',3728,0,3625,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:42:00','0000-00-00','','','','N','10:42:00','11:57:17','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','10:42:40',0,'','reception','2025-12-06 10:42:40','darshan','2025-12-06 11:57:17'),(5356,0,0,'O','N','2526',1990,0,'2025-12-06','0000-00-00',2041,0,1990,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','11:17:49','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:46:44',0,'','reception','2025-12-06 10:46:44','darshan','2025-12-06 11:17:49'),(5357,0,0,'O','N','2526',3626,0,'2025-12-06','2026-03-05',3729,0,3626,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:50:00','0000-00-00','','','','N','10:50:00','12:49:40','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','4','10:50:02',0,'','urvashi','2025-12-06 10:50:02','drarchit','2025-12-06 12:49:40'),(5358,0,0,'O','N','2526',3627,0,'2025-12-06','2026-03-05',3730,0,3627,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:50:00','0000-00-00','','','','N','10:50:00','12:22:30','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','2','10:50:11',0,'','reception','2025-12-06 10:50:11','darshan','2025-12-06 12:22:30'),(5359,0,0,'O','N','2526',3628,0,'2025-12-06','2026-03-05',3731,0,3628,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','00:00:00','','','N','N',NULL,'O','N','G03','','0000-00-00 00:00:00','4','10:53:44',0,'','urvashi','2025-12-06 10:53:44','','0000-00-00 00:00:00'),(5360,0,0,'O','N','2526',1996,0,'2025-12-06','0000-00-00',2047,0,1996,'N','','N','','','FV','','N','D06','','N',144,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','12:26:17','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','2','10:59:16',0,'','reception','2025-12-06 10:59:16','darshan','2025-12-06 12:26:17'),(5361,0,0,'O','N','2526',3629,0,'2025-12-06','2026-03-05',3732,0,3629,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','11:45:28','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','4','11:02:20',0,'','urvashi','2025-12-06 11:02:20','drarchit','2025-12-06 11:45:28'),(5362,0,0,'O','N','2526',548,0,'2025-12-06','0000-00-00',574,0,548,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','11:51:38','','','N','Y',NULL,'O','O','G04','','0000-00-00 00:00:00','4','11:04:29',0,'','janvi','2025-12-06 11:04:29','drarchit','2025-12-06 11:51:38'),(5363,0,0,'O','N','2526',3630,0,'2025-12-06','2026-03-05',3733,0,3630,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','14:15:33','','N','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','11:11:58',0,'','reception','2025-12-06 11:11:58','darshan','2025-12-06 14:15:33'),(5364,0,0,'O','N','2526',3319,0,'2025-12-06','0000-00-00',3411,0,3319,'N','','N','','','','','N','D02','','N',25,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','11:22:46','','','N','Y',NULL,'O','O','Z15','','0000-00-00 00:00:00','3','11:20:20',0,'','janvi','2025-12-06 11:20:20','drpratapsinh','2025-12-06 11:22:46'),(5365,0,0,'O','N','2526',1183,0,'2025-12-06','0000-00-00',1222,0,1183,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','12:01:24','','','N','Y',NULL,'O','O','G05','','0000-00-00 00:00:00','2','11:24:22',0,'','reception','2025-12-06 11:24:22','darshan','2025-12-06 12:01:24'),(5366,0,0,'O','N','2526',3161,0,'2025-12-06','0000-00-00',3247,0,3161,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','12:36:37','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','2','11:25:58',0,'','reception','2025-12-06 11:25:58','darshan','2025-12-06 12:36:37'),(5367,0,0,'O','N','2526',1600,0,'2025-12-06','0000-00-00',1645,0,1600,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','00:00:00','','','N','N',NULL,'O','O','Z17','','0000-00-00 00:00:00','5','12:00:03',0,'','urvashi','2025-12-06 11:26:59','','0000-00-00 00:00:00'),(5368,0,0,'O','N','2526',1520,0,'2025-12-06','0000-00-00',1561,0,1520,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','12:08:20','','','N','Y',NULL,'O','O','H04','','0000-00-00 00:00:00','4','11:33:00',0,'','urvashi','2025-12-06 11:33:00','drarchit','2025-12-06 12:08:20'),(5369,0,0,'O','N','2526',1534,0,'2025-12-06','0000-00-00',1574,0,1534,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:34:00','0000-00-00','','','','N','11:34:00','13:18:11','','','N','Y',NULL,'O','O','Z18','','0000-00-00 00:00:00','2','11:34:41',0,'','reception','2025-12-06 11:34:41','darshan','2025-12-06 13:18:11'),(5370,0,0,'O','N','2526',3427,0,'2025-12-06','0000-00-00',3524,0,3427,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','12:32:32','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','5','12:00:03',0,'','urvashi','2025-12-06 11:36:11','drjayant','2025-12-06 12:32:32'),(5371,0,0,'O','N','2526',3631,0,'2025-12-06','2026-03-05',3734,0,3631,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','12:32:24','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','2','11:39:07',0,'','janvi','2025-12-06 11:39:07','darshan','2025-12-06 12:32:24'),(5372,0,0,'O','N','2526',3265,0,'2025-12-06','0000-00-00',3353,0,3265,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','17:36:43','','','N','Y',NULL,'O','O','Z20','','0000-00-00 00:00:00','6','11:40:39',0,'','manshi','2025-12-06 11:40:39','drsagar','2025-12-06 17:36:43'),(5373,0,0,'O','N','2526',2540,0,'2025-12-06','0000-00-00',2597,0,2540,'N','','N','','','FV','','N','D06','','N',186,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','13:25:04','','','N','Y',NULL,'O','O','Z21','','0000-00-00 00:00:00','2','11:41:12',0,'','reception','2025-12-06 11:41:12','darshan','2025-12-06 13:25:04'),(5374,0,0,'O','N','2526',3632,0,'2025-12-06','2026-03-05',3735,0,3632,'N','','N','','','','','N','D02','','N',4,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','11:50:47','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','3','11:46:25',0,'','janvi','2025-12-06 11:46:25','drpratapsinh','2025-12-06 11:50:47'),(5375,0,0,'O','N','2526',2444,0,'2025-12-06','0000-00-00',2501,0,2444,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','00:00:00','','Y','N','Y',NULL,'O','O','H06','','0000-00-00 00:00:00','4','11:48:20',0,'','urvashi','2025-12-06 11:48:20','drarchit','2025-12-06 13:18:28'),(5376,0,0,'O','N','2526',3633,0,'2025-12-06','2026-03-05',3736,0,3633,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:49:00','0000-00-00','','','','N','11:49:00','12:23:37','','','N','Y',NULL,'O','N','H07','','0000-00-00 00:00:00','4','11:49:50',0,'','urvashi','2025-12-06 11:49:50','drarchit','2025-12-06 12:23:37'),(5377,0,0,'O','N','2526',2887,0,'2025-12-06','0000-00-00',2964,0,2887,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','13:19:54','','','N','Y',NULL,'O','O','Z23','','0000-00-00 00:00:00','2','11:50:31',0,'','janvi','2025-12-06 11:50:31','darshan','2025-12-06 13:19:54'),(5378,0,0,'O','N','2526',3634,0,'2025-12-06','2026-03-05',3737,0,3634,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','13:18:17','','N','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','4','11:58:41',0,'','urvashi','2025-12-06 11:58:41','drarchit','2025-12-06 13:18:17'),(5379,0,0,'O','N','2526',3301,0,'2025-12-06','0000-00-00',3390,0,3301,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','12:33:06','','','N','Y',NULL,'O','O','I02','','0000-00-00 00:00:00','4','12:00:48',0,'','reception','2025-12-06 12:00:48','drarchit','2025-12-06 12:33:06'),(5380,0,0,'O','N','2526',3635,0,'2025-12-06','2026-03-05',3738,0,3635,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:04:00','0000-00-00','','','','N','12:04:00','17:36:53','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','6','12:04:03',0,'','manshi','2025-12-06 12:04:03','drsagar','2025-12-06 17:36:53'),(5381,0,0,'O','N','2526',3636,0,'2025-12-06','2026-03-05',3739,0,3636,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','14:28:02','','N','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:21:29',0,'','reception','2025-12-06 12:21:29','darshan','2025-12-06 14:28:02'),(5382,0,0,'O','N','2526',1019,0,'2025-12-06','0000-00-00',1053,0,1019,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','00:00:00','','','N','N',NULL,'O','O','Z25','','0000-00-00 00:00:00','3','12:21:45',0,'','janvi','2025-12-06 12:21:45','','0000-00-00 00:00:00'),(5383,0,0,'O','N','2526',3637,0,'2025-12-06','2026-03-05',3740,0,3637,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:23:00','0000-00-00','','','','N','12:23:00','13:08:30','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','4','12:23:13',0,'','janvi','2025-12-06 12:23:13','drarchit','2025-12-06 13:08:30'),(5384,0,0,'O','N','2526',1256,0,'2025-12-06','0000-00-00',1297,0,1256,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:24:00','0000-00-00','','','','N','12:24:00','13:18:02','','','N','Y',NULL,'O','O','I03','','0000-00-00 00:00:00','4','12:24:03',0,'','urvashi','2025-12-06 12:24:03','drarchit','2025-12-06 13:18:02'),(5385,0,0,'O','N','2526',2122,0,'2025-12-06','0000-00-00',2173,0,2122,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:10:00','0000-00-00','','','','N','12:10:00','12:43:00','','','N','Y',NULL,'O','O','I04','','0000-00-00 00:00:00','2','12:24:22',0,'','reception','2025-12-06 12:24:22','darshan','2025-12-06 12:43:00'),(5386,0,0,'O','N','2526',3292,0,'2025-12-06','0000-00-00',3381,0,3292,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:25:00','0000-00-00','','','','N','12:25:00','00:00:00','','','N','N',NULL,'O','O','Z27','','0000-00-00 00:00:00','3','12:25:38',0,'','janvi','2025-12-06 12:25:38','','0000-00-00 00:00:00'),(5387,0,0,'O','N','2526',3638,0,'2025-12-06','2026-03-05',3741,0,3638,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:26:00','0000-00-00','','','','N','12:26:00','00:00:00','','','N','N',NULL,'O','N','Z28','','0000-00-00 00:00:00','5','12:26:07',0,'','urvashi','2025-12-06 12:26:07','','0000-00-00 00:00:00'),(5388,0,0,'O','N','2526',2738,0,'2025-12-06','0000-00-00',2808,0,2738,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','00:00:00','','','N','N',NULL,'O','O','Z29','','0000-00-00 00:00:00','3','12:27:20',0,'','janvi','2025-12-06 12:27:20','','0000-00-00 00:00:00'),(5389,0,0,'O','N','2526',3639,0,'2025-12-06','2026-03-05',3742,0,3639,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','13:54:44','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','2','12:28:04',0,'','urvashi','2025-12-06 12:28:04','darshan','2025-12-06 13:54:44'),(5390,0,0,'O','N','2526',3640,0,'2025-12-06','2026-03-05',3743,0,3640,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','12:58:12','','','N','Y',NULL,'O','N','I05','','0000-00-00 00:00:00','2','12:28:41',0,'','reception','2025-12-06 12:28:41','darshan','2025-12-06 12:58:12'),(5391,0,0,'O','N','2526',3305,0,'2025-12-06','0000-00-00',3394,0,3305,'N','','N','','','','','N','D02','','N',119,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:29:00','0000-00-00','','','','N','12:29:00','00:00:00','','','N','N',NULL,'O','O','Z31','','0000-00-00 00:00:00','3','12:29:56',0,'','janvi','2025-12-06 12:29:56','','0000-00-00 00:00:00'),(5392,0,0,'O','N','2526',3641,0,'2025-12-06','2026-03-05',3744,0,3641,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:32:00','0000-00-00','','','','N','12:32:00','12:46:27','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','5','12:32:50',0,'','urvashi','2025-12-06 12:32:50','drjayant','2025-12-06 12:46:27'),(5393,0,0,'O','N','2526',3642,0,'2025-12-06','2026-03-05',3745,0,3642,'N','','N','','','NV','','N','D06','','N',66,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:36:00','0000-00-00','','','','N','12:36:00','14:32:27','','N','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','12:36:32',0,'','reception','2025-12-06 12:36:32','darshan','2025-12-06 14:32:27'),(5394,0,0,'O','N','2526',3643,0,'2025-12-06','2026-03-05',3746,0,3643,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:44:00','0000-00-00','','','','N','12:44:00','13:14:24','','','N','Y',NULL,'O','N','J04','','0000-00-00 00:00:00','4','12:44:21',0,'','urvashi','2025-12-06 12:44:21','drarchit','2025-12-06 13:14:24'),(5395,0,0,'O','N','2526',3644,0,'2025-12-06','2026-03-05',3747,0,3644,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:47:00','0000-00-00','','','','N','12:47:00','18:09:34','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','7','12:47:17',0,'','manshi','2025-12-06 12:47:17','drridham','2025-12-06 18:09:34'),(5396,0,0,'O','N','2526',3645,0,'2025-12-06','2026-03-05',3748,0,3645,'N','','N','','','NC','','N','D27','','N',6,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:52:00','0000-00-00','','','','N','12:52:00','00:00:00','','','N','N',NULL,'O','N','Z34','','0000-00-00 00:00:00','4','12:52:49',0,'','urvashi','2025-12-06 12:52:49','','0000-00-00 00:00:00'),(5397,0,0,'O','N','2526',3018,0,'2025-12-06','0000-00-00',3098,0,3018,'N','','N','','','DRESSING','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:02:00','0000-00-00','','','','N','13:02:00','13:18:55','','','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','4','13:02:14',0,'','urvashi','2025-12-06 13:02:14','drarchit','2025-12-06 13:18:55'),(5398,0,0,'O','N','2526',3646,0,'2025-12-06','2026-03-05',3749,0,3646,'N','','N','','','NC','','N','D27','','N',2,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:04:00','0000-00-00','','','','N','13:04:00','13:12:32','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','5','13:04:27',0,'','reception','2025-12-06 13:04:27','drjayant','2025-12-06 13:12:32'),(5399,0,0,'O','N','2526',3647,0,'2025-12-06','2026-03-05',3750,0,3647,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:04:00','0000-00-00','','','','N','13:04:00','13:22:33','','','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','4','13:04:37',0,'','urvashi','2025-12-06 13:04:37','drarchit','2025-12-06 13:22:33'),(5400,0,0,'O','N','2526',1248,0,'2025-12-06','0000-00-00',1289,0,1248,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:16:00','0000-00-00','','','','N','13:16:00','14:06:51','','','N','Y',NULL,'O','O','Z37','','0000-00-00 00:00:00','2','13:16:39',0,'','reception','2025-12-06 13:16:38','darshan','2025-12-06 14:06:51'),(5401,0,0,'O','N','2526',2856,0,'2025-12-06','0000-00-00',2928,0,2856,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:22:00','0000-00-00','','','','N','13:22:00','14:27:43','','N','N','Y',NULL,'O','O','Z38','','0000-00-00 00:00:00','2','13:23:01',0,'','reception','2025-12-06 13:23:01','darshan','2025-12-06 14:27:43'),(5402,0,0,'O','N','2526',3648,0,'2025-12-06','2026-03-05',3751,0,3648,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:00:00','0000-00-00','','','','N','14:00:00','14:42:26','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','2','14:01:04',0,'','reception','2025-12-06 14:01:04','darshan','2025-12-06 14:42:26'),(5403,0,0,'O','N','2526',3649,0,'2025-12-06','2026-03-05',3752,0,3649,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:03:00','0000-00-00','','','','N','14:03:00','14:38:51','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','2','14:03:40',0,'','reception','2025-12-06 14:03:40','darshan','2025-12-06 14:38:51'),(5404,0,0,'O','N','2526',3650,0,'2025-12-06','2026-03-05',3753,0,3650,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:03:00','0000-00-00','','','','N','15:03:00','18:54:03','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','2','15:03:48',0,'','shweta','2025-12-06 15:03:48','darshan','2025-12-09 18:54:03'),(5405,0,0,'O','N','2526',3651,0,'2025-12-06','2026-03-05',3754,0,3651,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:58:00','0000-00-00','','','','N','16:58:00','17:56:49','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','7','16:58:12',0,'','manshi','2025-12-06 16:58:12','drridham','2025-12-06 17:56:49'),(5406,0,0,'O','N','2526',1102,0,'2025-12-06','0000-00-00',1140,0,1102,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:25:00','0000-00-00','','','','N','17:25:00','17:36:20','','','N','Y',NULL,'O','O','Z43','','0000-00-00 00:00:00','','17:25:32',0,'','manshi','2025-12-06 17:25:32','manshi','2025-12-06 17:37:24'),(5407,0,0,'O','N','2526',3044,0,'2025-12-06','0000-00-00',3125,0,3044,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:25:00','0000-00-00','','','','N','17:25:00','00:00:00','','','N','N',NULL,'O','O','Z44','','0000-00-00 00:00:00','3','17:25:54',0,'','reception','2025-12-06 17:25:53','','0000-00-00 00:00:00'),(5408,0,0,'O','N','2526',3652,0,'2025-12-06','2026-03-05',3755,0,3652,'N','','N','','','','','N','D03','','N',44,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:45:00','0000-00-00','','','','N','17:45:00','18:03:33','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','6','17:45:59',0,'','manshi','2025-12-06 17:45:59','drsagar','2025-12-06 18:03:33'),(5409,0,0,'O','N','2526',3653,0,'2025-12-06','2026-03-05',3756,0,3653,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','18:11:03','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','7','17:59:33',0,'','manshi','2025-12-06 17:59:33','drridham','2025-12-06 18:11:03'),(5410,0,0,'O','N','2526',2903,0,'2025-12-06','0000-00-00',2980,0,2903,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','00:00:00','','','N','N',NULL,'O','O','Z47','','0000-00-00 00:00:00','3','18:07:32',0,'','reception','2025-12-06 18:07:31','','0000-00-00 00:00:00'),(5411,0,0,'O','N','2526',2585,0,'2025-12-06','0000-00-00',2646,0,2585,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:13:00','0000-00-00','','','','N','18:13:00','18:19:58','','','N','Y',NULL,'O','O','Z48','','0000-00-00 00:00:00','6','18:13:28',0,'','manshi','2025-12-06 18:13:28','drsagar','2025-12-06 18:19:58'),(5412,0,0,'O','N','2526',3654,0,'2025-12-06','2026-03-05',3757,0,3654,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:25:00','0000-00-00','','','','N','18:25:00','18:31:52','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','6','18:25:37',0,'','manshi','2025-12-06 18:25:37','drsagar','2025-12-06 18:31:51'),(5413,0,0,'O','N','2526',3655,0,'2025-12-06','2026-03-05',3758,0,3655,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:05:00','0000-00-00','','','','N','19:05:00','19:20:28','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','6','19:05:32',0,'','manshi','2025-12-06 19:05:32','drsagar','2025-12-06 19:20:28'),(5414,0,0,'O','N','2526',3656,0,'2025-12-06','2026-03-05',3759,0,3656,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:06:00','0000-00-00','','','','N','19:06:00','19:42:57','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','7','19:06:26',0,'','manshi','2025-12-06 19:06:26','drridham','2025-12-06 19:42:57'),(5415,0,0,'O','N','2526',3657,0,'2025-12-06','2026-03-05',3760,0,3657,'N','','N','','','ECG','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:24:00','0000-00-00','','','','N','19:24:00','00:00:00','','','N','N',NULL,'O','N','Z52','','0000-00-00 00:00:00','4','19:24:36',0,'','reception','2025-12-06 19:24:36','','0000-00-00 00:00:00'),(5416,0,0,'O','N','2526',3658,0,'2025-12-06','2026-03-05',3761,0,3658,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:27:00','0000-00-00','','','','N','19:27:00','00:00:00','','','N','N',NULL,'O','N','Z53','','0000-00-00 00:00:00','4','19:27:56',0,'','urvashi','2025-12-06 19:27:56','','0000-00-00 00:00:00'),(5417,0,0,'O','N','2526',1288,0,'2025-12-06','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:34:00','0000-00-00','','','','N','19:34:00','00:00:00','','','N','N',NULL,'O','O','Z54','','0000-00-00 00:00:00','3','19:34:49',0,'','urvashi','2025-12-06 19:34:49','','0000-00-00 00:00:00'),(5418,0,0,'O','N','2526',3310,0,'2025-12-06','0000-00-00',3399,0,3310,'N','','N','','','','','N','D02','','N',90,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:41:00','0000-00-00','','','','N','19:41:00','00:00:00','','','N','N',NULL,'O','O','Z55','','0000-00-00 00:00:00','3','19:41:04',0,'','urvashi','2025-12-06 19:41:04','','0000-00-00 00:00:00'),(5419,0,0,'O','N','2526',3659,0,'2025-12-07','2026-03-06',3762,0,3659,'N','','N','','','','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:21:00','0000-00-00','','','','N','09:21:00','00:00:00','','','N','N',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','09:33:03',0,'','janvi','2025-12-07 09:33:03','','0000-00-00 00:00:00'),(5420,0,0,'O','N','2526',3660,0,'2025-12-07','2026-03-06',3598,0,3660,'N','','N','','','','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:23:00','0000-00-00','','','','N','09:23:00','00:00:00','','','N','N',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','09:34:18',0,'','janvi','2025-12-07 09:34:18','','0000-00-00 00:00:00'),(5421,0,0,'O','N','2526',3661,0,'2025-12-07','2026-03-06',3763,0,3661,'N','','N','','','FV','Y','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','00:00:00','','','N','N',NULL,'O','N','Z03','','0000-00-00 00:00:00','2','11:20:07',0,'','janvi','2025-12-07 11:20:07','','0000-00-00 00:00:00'),(5422,0,0,'O','N','2526',3021,0,'2025-12-07','0000-00-00',3101,0,3021,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','00:00:00','','','N','N',NULL,'O','O','Z04','','0000-00-00 00:00:00','3','11:38:33',0,'','janvi','2025-12-07 11:38:33','','0000-00-00 00:00:00'),(5423,0,0,'O','N','2526',1029,0,'2025-12-07','0000-00-00',1063,0,1029,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:18:00','0000-00-00','','','','N','12:18:00','00:00:00','','','N','N',NULL,'O','O','Z05','','0000-00-00 00:00:00','3','12:18:04',0,'','janvi','2025-12-07 12:18:04','','0000-00-00 00:00:00'),(5424,0,0,'O','N','2526',2118,0,'2025-12-07','0000-00-00',1763,0,2118,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:45:00','0000-00-00','','','','N','12:45:00','00:00:00','','','N','N',NULL,'O','O','Z06','','0000-00-00 00:00:00','3','12:45:46',0,'','janvi','2025-12-07 12:45:46','','0000-00-00 00:00:00'),(5425,0,0,'I','N','2526',0,255,'2025-12-07','2026-03-06',3764,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:30:00','2025-12-11','','1','mo','N','16:30:00','11:20:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-07 16:48:26','mo','2025-12-11 13:48:20'),(5426,0,0,'I','N','2526',0,256,'2025-12-07','2026-03-06',3765,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','23:30:00','2025-12-10','','1','mo','N','23:30:00','20:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-07 23:59:52','mo','2025-12-10 21:53:55'),(5427,0,0,'O','N','2526',3662,0,'2025-12-08','2026-03-07',3766,0,3662,'N','','N','','','ER','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:46:00','0000-00-00','','','','N','08:46:00','11:48:46','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','6','08:46:56',0,'','urvashi','2025-12-08 08:46:56','drsagar','2025-12-08 11:48:46'),(5428,0,0,'O','N','2526',3663,0,'2025-12-08','2026-03-07',3767,0,3663,'N','','N','','','ER','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:49:00','0000-00-00','','','','N','08:49:00','11:48:59','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','6','08:49:18',0,'','urvashi','2025-12-08 08:49:18','drsagar','2025-12-08 11:48:59'),(5429,0,0,'O','N','2526',3310,0,'2025-12-08','0000-00-00',3399,0,3310,'N','','N','','','DRESSING','','N','D02','','N',90,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:49:00','0000-00-00','','','','N','08:49:00','10:48:07','','','N','Y',NULL,'O','O','Z03','','0000-00-00 00:00:00','3','08:49:42',0,'','reception','2025-12-08 08:49:42','drpratapsinh','2025-12-08 10:48:07'),(5430,0,0,'O','N','2526',3664,0,'2025-12-08','2026-03-07',3768,0,3664,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:50:00','0000-00-00','','','','N','08:50:00','18:19:28','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','4','08:50:32',0,'','urvashi','2025-12-08 08:50:32','drarchit','2025-12-08 18:19:28'),(5431,0,0,'O','N','2526',3660,0,'2025-12-08','0000-00-00',3598,0,3660,'N','','N','','','ER','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:51:00','0000-00-00','','','','N','08:51:00','12:03:01','','','N','Y',NULL,'O','O','Z05','','0000-00-00 00:00:00','4','08:51:34',0,'','urvashi','2025-12-08 08:51:34','drarchit','2025-12-08 12:03:01'),(5432,0,0,'O','N','2526',3665,0,'2025-12-08','2026-03-07',3769,0,3665,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:52:00','0000-00-00','','','','N','08:52:00','00:00:00','','','N','N',NULL,'O','N','Z06','','0000-00-00 00:00:00','','00:00:00',0,'','urvashi','2025-12-08 08:52:32','','0000-00-00 00:00:00'),(5433,0,0,'O','N','2526',3305,0,'2025-12-08','0000-00-00',3394,0,3305,'N','','N','','','','','N','D02','','N',119,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:54:00','0000-00-00','','','','N','08:54:00','10:48:19','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','3','08:54:41',0,'','urvashi','2025-12-08 08:54:41','drpratapsinh','2025-12-08 10:48:19'),(5434,0,0,'O','N','2526',3666,0,'2025-12-08','2026-03-07',3770,0,3666,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:55:00','0000-00-00','','','','N','08:55:00','00:00:00','','','N','N',NULL,'O','N','Z08','','0000-00-00 00:00:00','4','08:55:42',0,'','urvashi','2025-12-08 08:55:42','','0000-00-00 00:00:00'),(5435,0,0,'O','N','2526',3667,0,'2025-12-08','2026-03-07',3771,0,3667,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:57:00','0000-00-00','','','','N','08:57:00','12:22:14','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','4','08:57:38',0,'','urvashi','2025-12-08 08:57:38','drarchit','2025-12-08 12:22:14'),(5436,0,0,'O','N','2526',3668,0,'2025-12-08','2026-03-07',3772,0,3668,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:59:00','0000-00-00','','','','N','08:59:00','00:00:00','','','N','N',NULL,'O','N','Z10','','0000-00-00 00:00:00','','00:00:00',0,'','urvashi','2025-12-08 08:59:03','','0000-00-00 00:00:00'),(5437,0,0,'O','N','2526',3669,0,'2025-12-08','2026-03-07',3773,0,3669,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:00:00','0000-00-00','','','','N','09:00:00','20:17:31','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','3','09:00:38',0,'','urvashi','2025-12-08 09:00:38','drpratapsinh','2025-12-08 20:17:31'),(5438,0,0,'O','N','2526',3670,0,'2025-12-08','2026-03-07',3774,0,3670,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:03:00','0000-00-00','','','','N','09:03:00','00:00:00','','','N','N',NULL,'O','N','Z12','','0000-00-00 00:00:00','','00:00:00',0,'','urvashi','2025-12-08 09:03:35','','0000-00-00 00:00:00'),(5439,0,0,'O','N','2526',1149,0,'2025-12-08','0000-00-00',1189,0,1149,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:15:00','0000-00-00','','','','N','09:15:00','10:48:55','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','3','09:15:33',0,'','reception','2025-12-08 09:15:33','drpratapsinh','2025-12-08 10:48:55'),(5440,0,0,'O','N','2526',3671,0,'2025-12-08','2026-03-07',3775,0,3671,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:26:00','0000-00-00','','','','N','09:26:00','13:43:06','','N','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','09:26:19',0,'','reception','2025-12-08 09:26:19','darshan','2025-12-08 13:43:06'),(5441,0,0,'O','N','2526',3672,0,'2025-12-08','2026-03-07',3776,0,3672,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:26:00','0000-00-00','','','','N','09:26:00','11:33:48','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','4','09:26:51',0,'','janvi','2025-12-08 09:26:51','drarchit','2025-12-08 11:33:48'),(5442,0,0,'O','N','2526',3673,0,'2025-12-08','2026-03-07',3777,0,3673,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','0000-00-00','','','','N','09:30:00','11:49:14','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','6','09:31:08',0,'','janvi','2025-12-08 09:31:08','drsagar','2025-12-08 11:49:14'),(5443,0,0,'I','N','2526',0,257,'2025-12-08','2026-03-07',3778,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-12-09','','1','mo','N','09:30:00','13:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-08 09:34:50','mo','2025-12-09 14:05:08'),(5444,0,0,'O','N','2526',3674,0,'2025-12-08','2026-03-07',3779,0,3674,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:41:00','0000-00-00','','','','N','09:41:00','11:43:12','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','2','09:41:57',0,'','reception','2025-12-08 09:41:57','darshan','2025-12-08 11:43:12'),(5445,0,0,'I','N','2526',0,258,'2025-12-08','2026-03-07',3780,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','03:30:00','2025-12-11','','1','mo','N','03:30:00','11:20:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-08 09:47:50','riya','2025-12-11 13:11:11'),(5446,0,0,'O','N','2526',3675,0,'2025-12-08','2026-03-07',3781,0,3675,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:48:00','0000-00-00','','','','N','09:48:00','12:14:47','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','4','09:48:12',0,'','reception','2025-12-08 09:48:12','drarchit','2025-12-08 12:14:47'),(5447,0,0,'O','N','2526',3676,0,'2025-12-08','2026-03-07',3782,0,3676,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:51:00','0000-00-00','','','','N','09:51:00','11:05:10','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','3','09:51:16',0,'','reception','2025-12-08 09:51:16','drpratapsinh','2025-12-08 11:05:10'),(5448,0,0,'O','N','2526',3510,0,'2025-12-08','0000-00-00',3085,0,3510,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:56:00','0000-00-00','','','','N','09:56:00','11:37:36','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','4','09:56:52',0,'','drashti','2025-12-08 09:56:52','drarchit','2025-12-08 11:37:36'),(5449,0,0,'O','N','2526',792,0,'2025-12-08','0000-00-00',823,0,792,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:57:00','0000-00-00','','','','N','09:57:00','10:52:44','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','09:58:00',0,'','reception','2025-12-08 09:58:00','darshan','2025-12-08 10:52:44'),(5450,0,0,'O','N','2526',1735,0,'2025-12-08','0000-00-00',1779,0,1735,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:58:00','0000-00-00','','','','N','09:58:00','10:45:52','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','09:58:47',0,'','reception','2025-12-08 09:58:47','darshan','2025-12-08 10:45:52'),(5451,0,0,'O','N','2526',3305,0,'2025-12-08','0000-00-00',3394,0,3305,'N','','N','','','','','N','D02','','N',119,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','0000-00-00','','','','N','10:00:00','19:59:56','','','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','3','10:00:20',0,'','janvi','2025-12-08 10:00:20','drpratapsinh','2025-12-08 19:59:56'),(5452,0,0,'O','N','2526',3677,0,'2025-12-08','2026-03-07',3401,0,3677,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:05:00','0000-00-00','','','','N','10:05:00','10:49:09','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','3','10:06:10',0,'','janvi','2025-12-08 10:06:10','drpratapsinh','2025-12-08 10:49:09'),(5453,0,0,'O','N','2526',3678,0,'2025-12-08','2026-03-07',3783,0,3678,'N','','N','','','NV','','N','D06','','N',192,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:06:00','0000-00-00','','','','N','10:06:00','14:10:51','','N','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','2','10:06:36',0,'','reception','2025-12-08 10:06:36','darshan','2025-12-08 14:10:51'),(5454,0,0,'O','N','2526',2040,0,'2025-12-08','0000-00-00',2095,0,2040,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:09:00','0000-00-00','','','','N','10:09:00','12:09:24','','','N','Y',NULL,'O','O','Z22','','0000-00-00 00:00:00','2','10:09:07',0,'','reception','2025-12-08 10:09:06','darshan','2025-12-08 12:09:24'),(5455,0,0,'O','N','2526',3679,0,'2025-12-08','2026-03-07',3784,0,3679,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:12:00','0000-00-00','','','','N','10:12:00','20:18:29','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','3','10:12:20',0,'','janvi','2025-12-08 10:12:20','drpratapsinh','2025-12-08 20:18:29'),(5456,0,0,'O','N','2526',3680,0,'2025-12-08','2026-03-07',3785,0,3680,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:20:00','0000-00-00','','','','N','10:20:00','12:13:51','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','2','10:20:07',0,'','reception','2025-12-08 10:20:07','darshan','2025-12-08 12:13:51'),(5457,0,0,'O','N','2526',3681,0,'2025-12-08','2026-03-07',3786,0,3681,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:21:00','0000-00-00','','','','N','10:21:00','13:38:34','','N','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:21:24',0,'','reception','2025-12-08 10:21:24','darshan','2025-12-08 13:38:34'),(5458,0,0,'O','N','2526',3682,0,'2025-12-08','2026-03-07',3787,0,3682,'N','','N','','','RNE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:26:00','0000-00-00','','','','N','10:26:00','12:46:58','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','10:26:58',0,'','reception','2025-12-08 10:26:58','darshan','2025-12-08 12:46:58'),(5459,0,0,'O','N','2526',3683,0,'2025-12-08','2026-03-07',3788,0,3683,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:31:00','0000-00-00','','','','N','10:31:00','13:15:38','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','4','10:31:57',0,'','reception','2025-12-08 10:31:57','drarchit','2025-12-08 13:15:38'),(5460,0,0,'O','N','2526',3684,0,'2025-12-08','2026-03-07',3789,0,3684,'N','','N','','','','','N','D14','','N',171,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:41:00','0000-00-00','','','','N','10:41:00','11:01:42','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','7','10:41:52',0,'','manshi','2025-12-08 10:41:52','drridham','2025-12-08 11:01:42'),(5461,0,0,'O','N','2526',3685,0,'2025-12-08','2026-03-07',3790,0,3685,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','00:00:00','','','N','N',NULL,'O','N','Z27','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-12-08 10:43:19','','0000-00-00 00:00:00'),(5462,0,0,'O','N','2526',3686,0,'2025-12-08','2026-03-07',3791,0,3686,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','11:49:34','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','6','10:44:28',0,'','manshi','2025-12-08 10:44:28','drsagar','2025-12-08 11:49:34'),(5463,0,0,'O','N','2526',3687,0,'2025-12-08','2026-03-07',3792,0,3687,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:49:00','0000-00-00','','','','N','10:49:00','18:11:56','','N','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','4','10:49:13',0,'','drashti','2025-12-08 10:49:13','drarchit','2025-12-08 18:11:56'),(5464,0,0,'O','N','2526',78,0,'2025-12-08','0000-00-00',89,0,78,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:49:00','0000-00-00','','','','N','10:49:00','11:32:11','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','2','10:49:36',0,'','reception','2025-12-08 10:49:36','darshan','2025-12-08 11:32:11'),(5465,0,0,'O','N','2526',1535,0,'2025-12-08','0000-00-00',1576,0,1535,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','10:57:25','','','N','Y',NULL,'O','O','Z29','','0000-00-00 00:00:00','3','10:51:08',0,'','reception','2025-12-08 10:51:08','drpratapsinh','2025-12-08 10:57:25'),(5466,0,0,'O','N','2526',3688,0,'2025-12-08','2026-03-07',3793,0,3688,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','12:31:24','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','4','10:53:36',0,'','drashti','2025-12-08 10:53:35','drarchit','2025-12-08 12:31:24'),(5467,0,0,'O','N','2526',3689,0,'2025-12-08','2026-03-07',3794,0,3689,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','11:23:44','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','2','10:55:26',0,'','reception','2025-12-08 10:55:26','darshan','2025-12-08 11:23:44'),(5468,0,0,'O','N','2526',2542,0,'2025-12-08','0000-00-00',2599,0,2542,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','19:59:07','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','3','10:55:52',0,'','janvi','2025-12-08 10:55:52','drpratapsinh','2025-12-08 19:59:07'),(5469,0,0,'O','N','2526',2610,0,'2025-12-08','0000-00-00',2672,0,2610,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','12:25:37','','','N','Y',NULL,'O','O','F03','','0000-00-00 00:00:00','2','10:57:27',0,'','reception','2025-12-08 10:57:27','darshan','2025-12-08 12:25:37'),(5470,0,0,'O','N','2526',3690,0,'2025-12-08','2026-03-07',3795,0,3690,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','00:00:00','','','N','N',NULL,'O','N','Z31','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-12-08 10:59:05','','0000-00-00 00:00:00'),(5471,0,0,'O','N','2526',2128,0,'2025-12-08','0000-00-00',2179,0,2128,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','13:01:53','','','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','2','11:04:30',0,'','reception','2025-12-08 11:04:30','darshan','2025-12-08 13:01:53'),(5472,0,0,'O','N','2526',3691,0,'2025-12-08','2026-03-07',3796,0,3691,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','14:22:46','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','11:05:22',0,'','drashti','2025-12-08 11:05:22','darshan','2025-12-08 14:22:46'),(5473,0,0,'O','N','2526',3692,0,'2025-12-08','2026-03-07',3797,0,3692,'N','','N','','','','','N','D02','','N',262,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','20:12:09','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','3','11:08:04',0,'','janvi','2025-12-08 11:08:04','drpratapsinh','2025-12-08 20:12:09'),(5474,0,0,'O','N','2526',3693,0,'2025-12-08','2026-03-07',3798,0,3693,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','11:43:32','','','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','4','11:10:55',0,'','drashti','2025-12-08 11:10:55','drarchit','2025-12-08 11:43:32'),(5475,0,0,'O','N','2526',3694,0,'2025-12-08','2026-03-07',3799,0,3694,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','11:52:20','','','N','Y',NULL,'O','N','G05','','0000-00-00 00:00:00','4','11:12:20',0,'','reception','2025-12-08 11:12:20','drarchit','2025-12-08 11:52:20'),(5476,0,0,'O','N','2526',3695,0,'2025-12-08','2026-03-07',3347,0,3695,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','11:21:44','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','3','11:12:39',0,'','drashti','2025-12-08 11:12:39','drpratapsinh','2025-12-08 11:21:44'),(5477,0,0,'O','N','2526',2738,0,'2025-12-08','0000-00-00',2808,0,2738,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','11:21:17','','','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','3','11:13:37',0,'','janvi','2025-12-08 11:13:37','drpratapsinh','2025-12-08 11:21:17'),(5478,0,0,'O','N','2526',3565,0,'2025-12-08','0000-00-00',3665,0,3565,'N','','N','','','FV','','N','D06','','N',255,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','12:05:20','','N','N','Y',NULL,'O','O','Z36','','0000-00-00 00:00:00','2','11:17:33',0,'','reception','2025-12-08 11:17:33','darshan','2025-12-08 12:05:21'),(5479,0,0,'O','N','2526',3696,0,'2025-12-08','2026-03-07',3800,0,3696,'N','','N','','','','','N','D02','','N',168,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','11:34:10','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','3','11:21:43',0,'','janvi','2025-12-08 11:21:43','drpratapsinh','2025-12-08 11:34:10'),(5480,0,0,'O','N','2526',3697,0,'2025-12-08','2026-03-07',2834,0,3697,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:22:00','0000-00-00','','','','N','11:22:00','13:12:01','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','4','11:22:59',0,'','drashti','2025-12-08 11:22:59','drarchit','2025-12-08 13:12:01'),(5481,0,0,'O','N','2526',3698,0,'2025-12-08','2026-03-07',3801,0,3698,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','14:25:51','','N','N','Y',NULL,'O','N','G06','','0000-00-00 00:00:00','2','11:25:08',0,'','reception','2025-12-08 11:25:08','darshan','2025-12-08 14:25:51'),(5482,0,0,'O','N','2526',3699,0,'2025-12-08','2026-03-07',3802,0,3699,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','14:52:10','','N','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','11:27:05',0,'','reception','2025-12-08 11:27:05','darshan','2025-12-08 14:52:10'),(5483,0,0,'O','N','2526',3700,0,'2025-12-08','2026-03-07',3803,0,3700,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','14:58:05','','N','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','2','11:27:19',0,'','drashti','2025-12-08 11:27:19','darshan','2025-12-08 14:58:05'),(5484,0,0,'O','N','2526',2343,0,'2025-12-08','0000-00-00',2399,0,2343,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','12:35:12','','','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','2','11:32:11',0,'','reception','2025-12-08 11:29:19','darshan','2025-12-08 12:35:12'),(5485,0,0,'O','N','2526',3701,0,'2025-12-08','2026-03-07',3804,0,3701,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','11:38:53','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','7','11:30:36',0,'','manshi','2025-12-08 11:30:36','drridham','2025-12-08 11:38:53'),(5486,0,0,'O','N','2526',3702,0,'2025-12-08','2026-03-07',3805,0,3702,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','14:40:33','','N','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','11:32:11',0,'','reception','2025-12-08 11:30:38','darshan','2025-12-08 14:40:33'),(5487,0,0,'O','N','2526',3703,0,'2025-12-08','2026-03-07',3806,0,3703,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','12:12:43','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','4','11:30:40',0,'','drashti','2025-12-08 11:30:40','drarchit','2025-12-08 12:12:43'),(5488,0,0,'O','N','2526',3704,0,'2025-12-08','2026-03-07',3807,0,3704,'N','','N','','','','','N','D02','','N',263,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','11:42:55','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','3','11:31:44',0,'','janvi','2025-12-08 11:31:44','drpratapsinh','2025-12-08 11:42:55'),(5489,0,0,'O','N','2526',3705,0,'2025-12-08','2026-03-07',3808,0,3705,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','12:05:51','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','4','11:32:56',0,'','drashti','2025-12-08 11:32:56','drarchit','2025-12-08 12:05:51'),(5490,0,0,'O','N','2526',1134,0,'2025-12-08','0000-00-00',1174,0,1134,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','00:00:00','','','N','N',NULL,'O','O','Z44','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-12-08 11:32:58','','0000-00-00 00:00:00'),(5491,0,0,'O','N','2526',3445,0,'2025-12-08','0000-00-00',3542,0,3445,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','13:36:17','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','2','12:05:20',0,'','reception','2025-12-08 11:33:19','darshan','2025-12-08 13:36:17'),(5492,0,0,'O','N','2526',3706,0,'2025-12-08','2026-03-07',3809,0,3706,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','13:53:38','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','2','12:05:20',0,'','reception','2025-12-08 11:35:38','darshan','2025-12-08 13:53:38'),(5493,0,0,'O','N','2526',2045,0,'2025-12-08','0000-00-00',2100,0,2045,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','12:29:54','','','N','Y',NULL,'O','O','H03','','0000-00-00 00:00:00','2','12:05:20',0,'','reception','2025-12-08 11:36:37','darshan','2025-12-08 12:29:54'),(5494,0,0,'O','N','2526',3707,0,'2025-12-08','2026-03-07',3810,0,3707,'N','','N','','','','','N','D14','','N',264,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','11:57:01','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','7','11:40:23',0,'','manshi','2025-12-08 11:40:23','drridham','2025-12-08 11:57:01'),(5495,0,0,'O','N','2526',3708,0,'2025-12-08','2026-03-07',3811,0,3708,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','13:56:30','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','2','12:05:20',0,'','reception','2025-12-08 11:43:51','darshan','2025-12-08 13:56:30'),(5496,0,0,'O','N','2526',3709,0,'2025-12-08','2026-03-07',3812,0,3709,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','18:14:21','','N','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','4','11:44:28',0,'','drashti','2025-12-08 11:44:28','drarchit','2025-12-08 18:14:21'),(5497,0,0,'O','N','2526',3710,0,'2025-12-08','2026-03-07',3813,0,3710,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','13:59:37','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','2','12:05:20',0,'','reception','2025-12-08 11:48:35','darshan','2025-12-08 13:59:37'),(5498,0,0,'O','N','2526',3711,0,'2025-12-08','2026-03-07',2866,0,3711,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:49:00','0000-00-00','','','','N','11:49:00','12:38:49','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','4','11:49:34',0,'','drashti','2025-12-08 11:49:34','drarchit','2025-12-08 12:38:49'),(5499,0,0,'O','N','2526',3517,0,'2025-12-08','0000-00-00',3618,0,3517,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','13:44:03','','','N','Y',NULL,'O','O','H05','','0000-00-00 00:00:00','4','11:51:42',0,'','janvi','2025-12-08 11:51:41','drarchit','2025-12-08 13:44:03'),(5500,0,0,'O','N','2526',298,0,'2025-12-08','0000-00-00',314,0,298,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','14:07:20','','','N','Y',NULL,'O','O','Z51','','0000-00-00 00:00:00','2','12:05:20',0,'','reception','2025-12-08 11:52:14','darshan','2025-12-08 14:07:20'),(5501,0,0,'O','N','2526',3712,0,'2025-12-08','2026-03-07',3814,0,3712,'N','','N','','','','','N','D02','','N',265,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:57:00','0000-00-00','','','','N','11:57:00','12:04:29','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','3','11:57:25',0,'','janvi','2025-12-08 11:57:25','drpratapsinh','2025-12-08 12:04:29'),(5502,0,0,'O','N','2526',3713,0,'2025-12-08','2026-03-07',3815,0,3713,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:57:00','0000-00-00','','','','N','11:57:00','13:06:06','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','4','11:57:30',0,'','drashti','2025-12-08 11:57:30','drarchit','2025-12-08 13:06:06'),(5503,0,0,'O','N','2526',3714,0,'2025-12-08','2026-03-07',3816,0,3714,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','12:08:50','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','3','11:58:03',0,'','reception','2025-12-08 11:58:03','drpratapsinh','2025-12-08 12:08:50'),(5504,0,0,'O','N','2526',3715,0,'2025-12-08','2026-03-07',3817,0,3715,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','12:07:59','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','6','11:58:23',0,'','manshi','2025-12-08 11:58:23','drsagar','2025-12-08 12:07:59'),(5505,0,0,'O','N','2526',2393,0,'2025-12-08','0000-00-00',392,0,2393,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:59:00','0000-00-00','','','','N','11:59:00','12:54:51','','','N','Y',NULL,'O','O','Z56','','0000-00-00 00:00:00','4','11:59:54',0,'','drashti','2025-12-08 11:59:54','drarchit','2025-12-08 12:54:51'),(5506,0,0,'O','N','2526',3406,0,'2025-12-08','0000-00-00',3501,0,3406,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:03:00','0000-00-00','','','','N','12:03:00','13:25:12','','','N','Y',NULL,'O','O','I03','','0000-00-00 00:00:00','4','12:03:49',0,'','janvi','2025-12-08 12:03:49','drarchit','2025-12-08 13:25:12'),(5507,0,0,'O','N','2526',3716,0,'2025-12-08','2026-03-07',3818,0,3716,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:04:00','0000-00-00','','','','N','12:04:00','14:10:15','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','2','12:05:20',0,'','reception','2025-12-08 12:04:20','darshan','2025-12-08 14:10:15'),(5508,0,0,'O','N','2526',2245,0,'2025-12-08','0000-00-00',2301,0,2245,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:12:00','0000-00-00','','','','N','12:12:00','13:16:07','','','N','Y',NULL,'O','O','Z58','','0000-00-00 00:00:00','6','12:12:02',0,'','manshi','2025-12-08 12:12:02','drsagar','2025-12-08 13:16:07'),(5509,0,0,'O','N','2526',990,0,'2025-12-08','0000-00-00',1022,0,990,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:13:00','0000-00-00','','','','N','12:13:00','13:05:29','','','N','Y',NULL,'O','O','I04','','0000-00-00 00:00:00','2','13:01:53',0,'','reception','2025-12-08 12:13:04','darshan','2025-12-08 13:05:29'),(5510,0,0,'O','N','2526',3717,0,'2025-12-08','2026-03-07',3819,0,3717,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:15:00','0000-00-00','','','','N','12:15:00','00:00:00','','','N','N',NULL,'O','N','Z59','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-12-08 12:15:55','','0000-00-00 00:00:00'),(5511,0,0,'O','N','2526',3718,0,'2025-12-08','2026-03-07',3820,0,3718,'N','','N','','','NV','','N','D06','','N',4,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:17:00','0000-00-00','','','','N','12:17:00','12:10:24','','N','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','2','13:01:53',0,'','reception','2025-12-08 12:17:33','darshan','2025-12-09 12:10:24'),(5512,0,0,'O','N','2526',2451,0,'2025-12-08','0000-00-00',2510,0,2451,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:18:00','0000-00-00','','','','N','12:18:00','13:13:21','','','N','Y',NULL,'O','O','I05','','0000-00-00 00:00:00','2','13:01:53',0,'','reception','2025-12-08 12:18:35','darshan','2025-12-08 13:13:21'),(5513,0,0,'O','N','2526',1928,0,'2025-12-08','0000-00-00',1976,0,1928,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:19:00','0000-00-00','','','','N','12:19:00','12:58:34','','','N','Y',NULL,'O','O','Z61','','0000-00-00 00:00:00','6','12:19:51',0,'','manshi','2025-12-08 12:19:51','drsagar','2025-12-08 12:58:34'),(5514,0,0,'O','N','2526',2946,0,'2025-12-08','0000-00-00',3025,0,2946,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:23:00','0000-00-00','','','','N','12:23:00','18:18:00','','','N','Y',NULL,'O','O','Z62','','0000-00-00 00:00:00','4','12:23:24',0,'','drashti','2025-12-08 12:23:24','drarchit','2025-12-08 18:18:00'),(5515,0,0,'O','N','2526',254,0,'2025-12-08','0000-00-00',269,0,254,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:29:00','0000-00-00','','','','N','12:29:00','13:10:00','','','N','Y',NULL,'O','O','J04','','0000-00-00 00:00:00','4','12:29:11',0,'','drashti','2025-12-08 12:29:10','drarchit','2025-12-08 13:10:00'),(5516,0,0,'O','N','2526',3434,0,'2025-12-08','0000-00-00',3531,0,3434,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:31:00','0000-00-00','','','','N','12:31:00','14:33:49','','','N','Y',NULL,'O','O','Z63','','0000-00-00 00:00:00','2','13:01:53',0,'','reception','2025-12-08 12:31:55','darshan','2025-12-08 14:33:49'),(5517,0,0,'O','N','2526',3719,0,'2025-12-08','2026-03-07',3821,0,3719,'N','','N','','','NC','','N','D27','','N',2,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:32:00','0000-00-00','','','','N','12:32:00','19:21:46','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','4','12:32:58',0,'','drashti','2025-12-08 12:32:58','drarchit','2025-12-08 19:21:46'),(5518,0,0,'O','N','2526',3720,0,'2025-12-08','2026-03-07',3721,0,3720,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:34:00','0000-00-00','','','','N','12:34:00','19:54:27','','','N','Y',NULL,'O','N','Z65','','0000-00-00 00:00:00','3','12:34:36',0,'','janvi','2025-12-08 12:34:36','drpratapsinh','2025-12-08 19:54:27'),(5519,0,0,'O','N','2526',3721,0,'2025-12-08','2026-03-07',3822,0,3721,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:36:00','0000-00-00','','','','N','12:36:00','14:33:26','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','2','13:01:53',0,'','reception','2025-12-08 12:36:26','darshan','2025-12-08 14:33:26'),(5520,0,0,'O','N','2526',3722,0,'2025-12-08','2026-03-07',3823,0,3722,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:36:00','0000-00-00','','','','N','12:36:00','18:14:36','','N','N','Y',NULL,'O','N','Z67','','0000-00-00 00:00:00','4','12:36:45',0,'','drashti','2025-12-08 12:36:45','drarchit','2025-12-08 18:14:36'),(5521,0,0,'I','N','2526',0,259,'2025-12-08','2026-03-07',3824,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','2025-12-17','','1','mo','N','12:30:00','12:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-08 12:36:57','mo','2025-12-17 14:03:03'),(5522,0,0,'O','N','2526',676,0,'2025-12-08','0000-00-00',705,0,676,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:38:00','0000-00-00','','','','N','12:38:00','13:32:04','','','N','Y',NULL,'O','O','J05','','0000-00-00 00:00:00','4','12:38:18',0,'','janvi','2025-12-08 12:38:18','drarchit','2025-12-08 13:32:04'),(5523,0,0,'O','N','2526',3723,0,'2025-12-08','2026-03-07',3825,0,3723,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:40:00','0000-00-00','','','','N','12:40:00','13:29:14','','','N','Y',NULL,'O','N','Z68','','0000-00-00 00:00:00','4','12:40:25',0,'','janvi','2025-12-08 12:40:25','drarchit','2025-12-08 13:29:14'),(5524,0,0,'O','N','2526',3724,0,'2025-12-08','2026-03-07',3826,0,3724,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:42:00','0000-00-00','','','','N','12:42:00','20:27:29','','N','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','4','12:54:51',0,'','janvi','2025-12-08 12:42:18','drarchit','2025-12-08 20:27:29'),(5525,0,0,'O','N','2526',3018,0,'2025-12-08','0000-00-00',3098,0,3018,'N','','N','','','DRESSING','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:03:00','0000-00-00','','','','N','13:03:00','13:10:16','','','N','Y',NULL,'O','O','Z70','','0000-00-00 00:00:00','4','13:06:06',0,'','janvi','2025-12-08 13:03:32','drarchit','2025-12-08 13:10:16'),(5526,0,0,'O','N','2526',3590,0,'2025-12-08','0000-00-00',3447,0,3590,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:05:00','0000-00-00','','','','N','13:05:00','14:40:53','','','N','Y',NULL,'O','O','Z71','','0000-00-00 00:00:00','3','13:05:40',0,'','drashti','2025-12-08 13:05:39','drpratapsinh','2025-12-08 14:40:53'),(5527,0,0,'I','N','2526',0,260,'2025-12-08','2026-03-07',3827,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','2025-12-13','','1','mo','N','13:00:00','12:48:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-08 13:06:07','mo','2025-12-13 13:34:46'),(5528,0,0,'O','N','2526',3725,0,'2025-12-08','2026-03-07',3828,0,3725,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:07:00','0000-00-00','','','','N','13:07:00','17:58:48','','','N','Y',NULL,'O','N','Z72','','0000-00-00 00:00:00','7','13:07:59',0,'','manshi','2025-12-08 13:07:59','drridham','2025-12-08 17:58:48'),(5529,0,0,'O','N','2526',3726,0,'2025-12-08','2026-03-07',3829,0,3726,'N','','N','','','','','N','D14','','N',266,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:17:00','0000-00-00','','','','N','13:17:00','18:21:34','','','N','Y',NULL,'O','N','Z73','','0000-00-00 00:00:00','7','13:17:55',0,'','manshi','2025-12-08 13:17:55','drridham','2025-12-08 18:21:34'),(5530,0,0,'O','N','2526',3727,0,'2025-12-08','2026-03-07',3830,0,3727,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:19:00','0000-00-00','','','','N','13:19:00','19:51:41','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','2','13:43:06',0,'','drashti','2025-12-08 13:19:13','darshan','2025-12-08 19:51:41'),(5531,0,0,'O','N','2526',3728,0,'2025-12-08','2026-03-07',3831,0,3728,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:32:00','0000-00-00','','','','N','13:32:00','18:21:45','','','N','Y',NULL,'O','N','Z75','','0000-00-00 00:00:00','2','13:43:06',0,'','drashti','2025-12-08 13:32:27','darshan','2025-12-08 18:21:45'),(5532,0,0,'O','N','2526',3729,0,'2025-12-08','2026-03-07',3832,0,3729,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:33:00','0000-00-00','','','','N','13:33:00','15:05:26','','','N','Y',NULL,'O','N','Z76','','0000-00-00 00:00:00','2','13:43:06',0,'','reception','2025-12-08 13:33:13','darshan','2025-12-08 15:05:26'),(5533,0,0,'O','N','2526',3730,0,'2025-12-08','2026-03-07',3833,0,3730,'N','','N','','','','','N','D02','','N',267,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:27:00','0000-00-00','','','','N','14:27:00','19:54:53','','','N','Y',NULL,'O','N','Z77','','0000-00-00 00:00:00','3','14:28:04',0,'','janvi','2025-12-08 14:28:04','drpratapsinh','2025-12-08 19:54:53'),(5534,0,0,'O','N','2526',3731,0,'2025-12-08','2026-03-07',3834,0,3731,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:59:00','0000-00-00','','','','N','15:59:00','19:28:46','','','N','Y',NULL,'O','N','Z78','','0000-00-00 00:00:00','3','15:59:12',0,'','urvashi','2025-12-08 15:59:12','drpratapsinh','2025-12-08 19:28:46'),(5535,0,0,'O','N','2526',2575,0,'2025-12-08','0000-00-00',2636,0,2575,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:36:00','0000-00-00','','','','N','16:36:00','17:05:18','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','16:36:55',0,'','reception','2025-12-08 16:36:55','darshan','2025-12-08 17:05:18'),(5536,0,0,'O','N','2526',3728,0,'2025-12-08','0000-00-00',3831,0,3728,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:45:00','0000-00-00','','','','N','16:45:00','18:22:29','','N','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','2','16:45:32',0,'','reception','2025-12-08 16:45:32','darshan','2025-12-08 18:22:29'),(5537,0,0,'O','N','2526',2189,0,'2025-12-08','0000-00-00',2246,0,2189,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:48:00','0000-00-00','','','','N','16:48:00','17:08:56','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','16:48:43',0,'','urvashi','2025-12-08 16:48:43','darshan','2025-12-08 17:08:56'),(5538,0,0,'O','N','2526',3732,0,'2025-12-08','2026-03-07',3835,0,3732,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:53:00','0000-00-00','','','','N','16:53:00','19:04:38','','N','N','Y',NULL,'O','N','Z79','','0000-00-00 00:00:00','2','16:53:58',0,'','reception','2025-12-08 16:53:58','darshan','2025-12-08 19:04:38'),(5539,0,0,'O','N','2526',3733,0,'2025-12-08','2026-03-07',3836,0,3733,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:56:00','0000-00-00','','','','N','16:56:00','20:20:39','','','N','Y',NULL,'O','N','Z80','','0000-00-00 00:00:00','3','16:56:57',0,'','reception','2025-12-08 16:56:57','drpratapsinh','2025-12-08 20:20:39'),(5540,0,0,'O','N','2526',3734,0,'2025-12-08','2026-03-07',3837,0,3734,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:59:00','0000-00-00','','','','N','16:59:00','18:39:44','','N','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','16:59:38',0,'','reception','2025-12-08 16:59:38','darshan','2025-12-08 18:39:44'),(5541,0,0,'O','N','2526',3735,0,'2025-12-08','2026-03-07',3838,0,3735,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:03:00','0000-00-00','','','','N','17:03:00','19:11:44','','','N','Y',NULL,'O','N','Z81','','0000-00-00 00:00:00','6','17:03:39',0,'','manshi','2025-12-08 17:03:39','drsagar','2025-12-08 19:11:44'),(5542,0,0,'O','N','2526',3736,0,'2025-12-08','2026-03-07',3839,0,3736,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:05:00','0000-00-00','','','','N','17:05:00','17:50:36','','','N','Y',NULL,'O','N','Z82','','0000-00-00 00:00:00','2','17:05:02',0,'','reception','2025-12-08 17:05:02','darshan','2025-12-08 17:50:36'),(5543,0,0,'O','N','2526',3737,0,'2025-12-08','2026-03-07',3840,0,3737,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:05:00','0000-00-00','','','','N','17:05:00','18:06:02','','','N','Y',NULL,'O','N','Z83','','0000-00-00 00:00:00','2','17:05:24',0,'','priyanshi','2025-12-08 17:05:24','darshan','2025-12-08 18:06:02'),(5544,0,0,'O','N','2526',3738,0,'2025-12-08','2026-03-07',3841,0,3738,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:06:00','0000-00-00','','','','N','17:06:00','17:54:29','','','N','Y',NULL,'O','N','Z84','','0000-00-00 00:00:00','2','17:06:16',0,'','reception','2025-12-08 17:06:16','darshan','2025-12-08 17:54:29'),(5545,0,0,'O','N','2526',3739,0,'2025-12-08','2026-03-07',3842,0,3739,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:09:00','0000-00-00','','','','N','17:09:00','19:32:48','','N','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:09:17',0,'','reception','2025-12-08 17:09:17','darshan','2025-12-08 19:32:48'),(5546,0,0,'O','N','2526',3740,0,'2025-12-08','2026-03-07',3843,0,3740,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:14:00','0000-00-00','','','','N','17:14:00','18:17:36','','','N','Y',NULL,'O','N','Z85','','0000-00-00 00:00:00','4','17:14:33',0,'','drashti','2025-12-08 17:14:33','drarchit','2025-12-08 18:17:36'),(5547,0,0,'O','N','2526',3741,0,'2025-12-08','2026-03-07',3844,0,3741,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:15:00','0000-00-00','','','','N','17:15:00','19:04:54','','','N','Y',NULL,'O','N','Z86','','0000-00-00 00:00:00','3','17:15:19',0,'','reception','2025-12-08 17:15:19','drpratapsinh','2025-12-08 19:04:54'),(5548,0,0,'O','N','2526',3742,0,'2025-12-08','2026-03-07',3845,0,3742,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:18:00','0000-00-00','','','','N','17:18:00','18:28:33','','','N','Y',NULL,'O','N','Z87','','0000-00-00 00:00:00','2','17:18:30',0,'','reception','2025-12-08 17:18:30','darshan','2025-12-08 18:28:33'),(5549,0,0,'O','N','2526',3074,0,'2025-12-08','0000-00-00',3160,0,3074,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','17:59:19','','','N','Y',NULL,'O','O','L05','','0000-00-00 00:00:00','2','17:20:04',0,'','reception','2025-12-08 17:20:04','darshan','2025-12-08 17:59:19'),(5550,0,0,'O','N','2526',3122,0,'2025-12-08','0000-00-00',3208,0,3122,'N','','N','','','','','N','D02','','N',4,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','19:05:45','','','N','Y',NULL,'O','O','Z88','','0000-00-00 00:00:00','3','17:20:29',0,'','priyanshi','2025-12-08 17:20:29','drpratapsinh','2025-12-08 19:05:45'),(5551,0,0,'O','N','2526',3743,0,'2025-12-08','2026-03-07',3846,0,3743,'N','','N','','','','','N','D02','','N',268,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:23:00','0000-00-00','','','','N','17:23:00','19:16:31','','','N','Y',NULL,'O','N','Z89','','0000-00-00 00:00:00','3','17:23:38',0,'','priyanshi','2025-12-08 17:23:38','drpratapsinh','2025-12-08 19:16:31'),(5552,0,0,'O','N','2526',3744,0,'2025-12-08','2026-03-07',3847,0,3744,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:25:00','0000-00-00','','','','N','17:25:00','18:14:04','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','4','17:25:51',0,'','priyanshi','2025-12-08 17:25:51','drarchit','2025-12-09 18:14:04'),(5553,0,0,'O','N','2526',3745,0,'2025-12-08','2026-03-07',3848,0,3745,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:26:00','0000-00-00','','','','N','17:26:00','18:15:43','','N','N','Y',NULL,'O','N','Z90','','0000-00-00 00:00:00','4','17:26:40',0,'','priyanshi','2025-12-08 17:26:40','drarchit','2025-12-09 18:15:43'),(5554,0,0,'O','N','2526',1694,0,'2025-12-08','0000-00-00',1740,0,1694,'N','','N','','','','','N','D14','','N',117,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','18:21:43','','','N','Y',NULL,'O','O','Z91','','0000-00-00 00:00:00','7','17:42:30',0,'','manshi','2025-12-08 17:42:30','drridham','2025-12-08 18:21:43'),(5555,0,0,'O','N','2526',3746,0,'2025-12-08','2026-03-07',3849,0,3746,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:43:00','0000-00-00','','','','N','17:43:00','19:22:45','','','N','Y',NULL,'O','N','Z92','','0000-00-00 00:00:00','3','17:43:15',0,'','janvi','2025-12-08 17:43:15','drpratapsinh','2025-12-08 19:22:45'),(5556,0,0,'O','N','2526',3727,0,'2025-12-08','0000-00-00',3830,0,3727,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','19:55:51','','N','N','Y',NULL,'O','O','Y03','','0000-00-00 00:00:00','2','17:51:13',0,'','reception','2025-12-08 17:51:13','darshan','2025-12-08 19:55:51'),(5557,0,0,'O','N','2526',3747,0,'2025-12-08','2026-03-07',3850,0,3747,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:54:00','0000-00-00','','','','N','17:54:00','18:37:47','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','4','17:54:27',0,'','drashti','2025-12-08 17:54:27','drarchit','2025-12-08 18:37:47'),(5558,0,0,'O','N','2526',3429,0,'2025-12-08','0000-00-00',3526,0,3429,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:06:00','0000-00-00','','','','N','18:06:00','00:00:00','','','N','N',NULL,'O','O','L08','','0000-00-00 00:00:00','4','18:06:22',0,'','drashti','2025-12-08 18:06:22','','0000-00-00 00:00:00'),(5559,0,0,'O','N','2526',3332,0,'2025-12-08','0000-00-00',3424,0,3332,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','18:21:15','','','N','Y',NULL,'O','O','Z93','','0000-00-00 00:00:00','6','18:07:48',0,'','manshi','2025-12-08 18:07:48','drsagar','2025-12-08 18:21:15'),(5560,0,0,'O','N','2526',3378,0,'2025-12-08','0000-00-00',3473,0,3378,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','19:32:16','','','N','Y',NULL,'O','O','Z94','','0000-00-00 00:00:00','3','18:09:18',0,'','janvi','2025-12-08 18:09:18','drpratapsinh','2025-12-08 19:32:16'),(5561,0,0,'O','N','2526',3748,0,'2025-12-08','2026-03-07',3851,0,3748,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','18:43:22','','','N','Y',NULL,'O','N','Z95','','0000-00-00 00:00:00','4','18:11:01',0,'','drashti','2025-12-08 18:11:01','drarchit','2025-12-08 18:43:22'),(5562,0,0,'O','N','2526',3749,0,'2025-12-08','2026-03-07',3852,0,3749,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','19:34:28','','','N','Y',NULL,'O','N','Z96','','0000-00-00 00:00:00','3','18:12:11',0,'','janvi','2025-12-08 18:12:11','drpratapsinh','2025-12-08 19:34:28'),(5563,0,0,'O','N','2526',367,0,'2025-12-08','0000-00-00',383,0,367,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','18:53:58','','','N','Y',NULL,'O','O','Z97','','0000-00-00 00:00:00','4','18:16:11',0,'','drashti','2025-12-08 18:16:11','drarchit','2025-12-08 18:53:58'),(5564,0,0,'O','N','2526',3750,0,'2025-12-08','2026-03-07',3853,0,3750,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','18:38:53','','','N','Y',NULL,'O','N','Z98','','0000-00-00 00:00:00','2','18:21:26',0,'','reception','2025-12-08 18:21:26','darshan','2025-12-08 18:38:53'),(5565,0,0,'O','N','2526',3751,0,'2025-12-08','2026-03-07',3854,0,3751,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','19:50:29','','','N','Y',NULL,'O','N','Z99','','0000-00-00 00:00:00','3','19:04:54',0,'','janvi','2025-12-08 18:21:49','drpratapsinh','2025-12-08 19:50:29'),(5566,0,0,'O','N','2526',3752,0,'2025-12-08','2026-03-07',3855,0,3752,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','18:50:41','','','N','Y',NULL,'O','N','Z100','','0000-00-00 00:00:00','4','18:23:32',0,'','drashti','2025-12-08 18:23:32','drarchit','2025-12-08 18:50:41'),(5567,0,0,'O','N','2526',2217,0,'2025-12-08','0000-00-00',2273,0,2217,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','19:28:13','','','N','Y',NULL,'O','O','Z101','','0000-00-00 00:00:00','6','18:28:03',0,'','manshi','2025-12-08 18:28:03','drsagar','2025-12-08 19:28:13'),(5568,0,0,'O','N','2526',995,0,'2025-12-08','0000-00-00',1027,0,995,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','18:53:28','','','N','Y',NULL,'O','O','L09','','0000-00-00 00:00:00','2','18:28:26',0,'','reception','2025-12-08 18:28:26','darshan','2025-12-08 18:53:28'),(5569,0,0,'O','N','2526',3753,0,'2025-12-08','2026-03-07',3856,0,3753,'N','','N','','','','','N','D02','','N',4,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','19:40:39','','','N','Y',NULL,'O','N','Z102','','0000-00-00 00:00:00','3','19:04:54',0,'','janvi','2025-12-08 18:29:12','drpratapsinh','2025-12-08 19:40:39'),(5570,0,0,'O','N','2526',3754,0,'2025-12-08','2026-03-07',3857,0,3754,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','19:04:14','','','N','Y',NULL,'O','N','Z103','','0000-00-00 00:00:00','6','18:29:32',0,'','manshi','2025-12-08 18:29:32','drsagar','2025-12-08 19:04:14'),(5571,0,0,'O','N','2526',2995,0,'2025-12-08','0000-00-00',3073,0,2995,'N','','N','','','','','N','D02','','N',220,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','19:43:59','','','N','Y',NULL,'O','O','Z104','','0000-00-00 00:00:00','3','19:04:54',0,'','janvi','2025-12-08 18:31:31','drpratapsinh','2025-12-08 19:43:59'),(5572,0,0,'O','N','2526',943,0,'2025-12-08','0000-00-00',974,0,943,'N','','N','','','FV ','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:38:00','0000-00-00','','','','N','18:38:00','18:58:59','','','N','Y',NULL,'O','O','L10','','0000-00-00 00:00:00','2','18:38:02',0,'','reception','2025-12-08 18:38:02','darshan','2025-12-08 18:58:59'),(5573,0,0,'O','N','2526',3170,0,'2025-12-08','0000-00-00',3256,0,3170,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','19:08:23','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','2','18:40:23',0,'','reception','2025-12-08 18:40:23','darshan','2025-12-08 19:08:23'),(5574,0,0,'O','N','2526',3755,0,'2025-12-08','2026-03-07',3858,0,3755,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:41:00','0000-00-00','','','','N','18:41:00','19:00:58','','','N','Y',NULL,'O','N','Z105','','0000-00-00 00:00:00','4','18:42:07',0,'','janvi','2025-12-08 18:42:07','drarchit','2025-12-08 19:00:58'),(5575,0,0,'O','N','2526',3194,0,'2025-12-08','0000-00-00',3280,0,3194,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:42:00','0000-00-00','','','','N','18:42:00','19:11:11','','','N','Y',NULL,'O','O','Z106','','0000-00-00 00:00:00','6','18:42:54',0,'','manshi','2025-12-08 18:42:54','drsagar','2025-12-08 19:11:11'),(5576,0,0,'O','N','2526',3756,0,'2025-12-08','2026-03-07',3859,0,3756,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','19:28:19','','','N','Y',NULL,'O','N','Z107','','0000-00-00 00:00:00','2','18:44:36',0,'','reception','2025-12-08 18:44:36','darshan','2025-12-08 19:28:19'),(5577,0,0,'O','N','2526',3757,0,'2025-12-08','2026-03-07',3860,0,3757,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','19:22:32','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','2','18:44:56',0,'','drashti','2025-12-08 18:44:56','darshan','2025-12-08 19:22:32'),(5578,0,0,'O','N','2526',3758,0,'2025-12-08','2026-03-07',3861,0,3758,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','19:31:52','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','2','18:46:01',0,'','reception','2025-12-08 18:46:01','darshan','2025-12-08 19:31:52'),(5579,0,0,'O','N','2526',1464,0,'2025-12-08','0000-00-00',1505,0,1464,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:43:02','','','N','Y',NULL,'O','O','Z108','','0000-00-00 00:00:00','2','18:51:35',0,'','reception','2025-12-08 18:51:35','darshan','2025-12-08 19:43:02'),(5580,0,0,'O','N','2526',3759,0,'2025-12-08','2026-03-07',3862,0,3759,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:07:33','','','N','Y',NULL,'O','N','Z109','','0000-00-00 00:00:00','4','18:51:54',0,'','drashti','2025-12-08 18:51:54','drarchit','2025-12-08 19:07:33'),(5581,0,0,'O','N','2526',89,0,'2025-12-08','0000-00-00',100,0,89,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:52:00','0000-00-00','','','','N','18:52:00','19:54:49','','','N','Y',NULL,'O','O','L14','','0000-00-00 00:00:00','2','18:52:49',0,'','reception','2025-12-08 18:52:49','darshan','2025-12-08 19:54:49'),(5582,0,0,'O','N','2526',2711,0,'2025-12-08','0000-00-00',2782,0,2711,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:55:00','0000-00-00','','','','N','18:55:00','19:54:00','','','N','Y',NULL,'O','O','Z110','','0000-00-00 00:00:00','3','19:04:54',0,'','janvi','2025-12-08 18:55:27','drpratapsinh','2025-12-08 19:54:00'),(5583,0,0,'I','N','2526',0,261,'2025-12-08','2026-03-07',3863,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','2025-12-14','','1','mo','N','18:00:00','11:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-08 18:56:38','mo','2025-12-14 12:28:38'),(5584,0,0,'O','N','2526',1288,0,'2025-12-08','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:59:00','0000-00-00','','','','N','18:59:00','19:09:03','','','N','Y',NULL,'O','O','Z111','','0000-00-00 00:00:00','3','19:04:54',0,'','drashti','2025-12-08 18:59:18','drpratapsinh','2025-12-08 19:09:03'),(5585,0,0,'O','N','2526',3444,0,'2025-12-08','0000-00-00',3541,0,3444,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:00:00','0000-00-00','','','','N','19:00:00','19:12:02','','','N','Y',NULL,'O','O','Z112','','0000-00-00 00:00:00','4','19:01:09',0,'','janvi','2025-12-08 19:01:09','drarchit','2025-12-08 19:12:01'),(5586,0,0,'O','N','2526',3329,0,'2025-12-08','0000-00-00',3421,0,3329,'N','','N','','','FOLLOWUP C','','N','D27','','N',238,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:05:00','0000-00-00','','','','N','19:05:00','19:28:42','','','N','Y',NULL,'O','O','L15','','0000-00-00 00:00:00','4','19:05:59',0,'','drashti','2025-12-08 19:05:59','drarchit','2025-12-08 19:28:41'),(5587,0,0,'O','N','2526',2607,0,'2025-12-08','0000-00-00',2669,0,2607,'N','','N','','','FV','','N','D06','','N',4,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:10:00','0000-00-00','','','','N','19:10:00','20:22:04','','','N','Y',NULL,'O','O','Z113','','0000-00-00 00:00:00','2','19:10:35',0,'','reception','2025-12-08 19:10:35','darshan','2025-12-08 20:22:04'),(5588,0,0,'I','N','2526',3730,262,'2025-12-08','2026-03-07',3833,0,3730,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:45:00','2025-12-11','','7','mo','N','18:45:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-08 19:14:51','mo','2025-12-11 13:07:50'),(5589,0,0,'O','N','2526',3760,0,'2025-12-08','2026-03-07',3864,0,3760,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:15:00','0000-00-00','','','','N','19:15:00','20:23:31','','','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','4','19:15:19',0,'','drashti','2025-12-08 19:15:19','drarchit','2025-12-08 20:23:31'),(5590,0,0,'O','N','2526',1602,0,'2025-12-08','0000-00-00',1158,0,1602,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:16:00','0000-00-00','','','','N','19:16:00','20:12:47','','','N','Y',NULL,'O','O','Z114','','0000-00-00 00:00:00','3','19:28:46',0,'','janvi','2025-12-08 19:16:16','drpratapsinh','2025-12-08 20:12:47'),(5591,0,0,'O','N','2526',3761,0,'2025-12-08','2026-03-07',3865,0,3761,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:17:00','0000-00-00','','','','N','19:17:00','19:30:35','','','N','Y',NULL,'O','N','L17','','0000-00-00 00:00:00','4','19:18:03',0,'','janvi','2025-12-08 19:18:03','drarchit','2025-12-08 19:30:35'),(5592,0,0,'O','N','2526',2030,0,'2025-12-08','0000-00-00',2084,0,2030,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:19:00','0000-00-00','','','','N','19:19:00','19:27:14','','','N','Y',NULL,'O','O','Z115','','0000-00-00 00:00:00','6','19:20:33',0,'','manshi','2025-12-08 19:20:33','drsagar','2025-12-08 19:27:14'),(5593,0,0,'O','N','2526',3762,0,'2025-12-08','2026-03-07',3866,0,3762,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:24:00','0000-00-00','','','','N','19:24:00','19:45:02','','','N','Y',NULL,'O','N','Z116','','0000-00-00 00:00:00','6','19:24:04',0,'','manshi','2025-12-08 19:24:04','drsagar','2025-12-08 19:45:02'),(5594,0,0,'O','N','2526',2261,0,'2025-12-08','0000-00-00',2318,0,2261,'N','','N','','','FV','','N','D06','','N',164,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:24:00','0000-00-00','','','','N','19:24:00','20:32:02','','','N','Y',NULL,'O','O','L18','','0000-00-00 00:00:00','2','19:24:28',0,'','reception','2025-12-08 19:24:27','darshan','2025-12-08 20:32:02'),(5595,0,0,'O','N','2526',3763,0,'2025-12-08','2026-03-07',3867,0,3763,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:28:00','0000-00-00','','','','N','19:28:00','19:46:36','','','N','Y',NULL,'O','N','Z117','','0000-00-00 00:00:00','7','19:28:45',0,'','manshi','2025-12-08 19:28:45','drridham','2025-12-08 19:46:36'),(5596,0,0,'O','N','2526',3525,0,'2025-12-08','0000-00-00',3627,0,3525,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:31:00','0000-00-00','','','','N','19:31:00','20:13:10','','','N','Y',NULL,'O','O','Z118','','0000-00-00 00:00:00','3','19:32:16',0,'','janvi','2025-12-08 19:32:08','drpratapsinh','2025-12-08 20:13:10'),(5597,0,0,'O','N','2526',3310,0,'2025-12-08','0000-00-00',3399,0,3310,'N','','N','','','','','N','D02','','N',90,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:38:00','0000-00-00','','','','N','19:38:00','20:14:07','','','N','Y',NULL,'O','O','Y04','','0000-00-00 00:00:00','3','19:38:54',0,'','janvi','2025-12-08 19:38:54','drpratapsinh','2025-12-08 20:14:07'),(5598,0,0,'O','N','2526',2659,0,'2025-12-08','0000-00-00',2729,0,2659,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:46:00','0000-00-00','','','','N','19:46:00','00:00:00','','','N','N',NULL,'O','O','Z119','','0000-00-00 00:00:00','4','19:46:15',0,'','drashti','2025-12-08 19:46:15','','0000-00-00 00:00:00'),(5599,0,0,'O','N','2526',3242,0,'2025-12-08','0000-00-00',3324,0,3242,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:52:00','0000-00-00','','','','N','19:52:00','20:21:17','','','N','Y',NULL,'O','O','Z120','','0000-00-00 00:00:00','4','19:52:17',0,'','janvi','2025-12-08 19:52:17','drarchit','2025-12-08 20:21:17'),(5600,0,0,'O','N','2526',3764,0,'2025-12-08','2026-03-07',3868,0,3764,'N','','N','','','NE','','N','D06','','N',3,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:14:00','0000-00-00','','','','N','20:14:00','18:09:48','','','N','Y',NULL,'O','N','Z121','','0000-00-00 00:00:00','2','20:14:14',0,'','reception','2025-12-08 20:14:14','darshan','2025-12-09 18:09:48'),(5601,0,0,'O','N','2526',3765,0,'2025-12-08','2026-03-07',3869,0,3765,'N','','N','','','','Y','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:19:00','0000-00-00','','','','N','20:19:00','00:00:00','','','N','N',NULL,'O','N','Z122','','0000-00-00 00:00:00','6','20:19:29',0,'','drashti','2025-12-08 20:19:29','','0000-00-00 00:00:00'),(5602,0,0,'O','N','2526',3766,0,'2025-12-09','2026-03-08',3870,0,3766,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:56:00','0000-00-00','','','','N','08:56:00','11:42:08','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','08:56:30',0,'','reception','2025-12-09 08:56:30','drarchit','2025-12-09 11:42:08'),(5603,0,0,'I','N','2526',0,263,'2025-12-09','2026-03-08',3871,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','01:00:00','2025-12-10','','1','mo','N','01:00:00','20:45:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-09 09:23:24','mo','2025-12-10 21:20:52'),(5604,0,0,'I','N','2526',594,264,'2025-12-08','2026-03-07',624,0,594,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','22:15:00','2025-12-09','','1','mo','N','22:15:00','13:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-09 09:33:35','vishal','2025-12-09 12:54:46'),(5605,0,0,'O','N','2526',351,0,'2025-12-09','0000-00-00',367,0,351,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:50:00','0000-00-00','','','','N','09:50:00','12:23:23','','N','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','09:50:22',0,'','reception','2025-12-09 09:50:22','darshan','2025-12-09 12:23:23'),(5606,0,0,'O','N','2526',3718,0,'2025-12-09','0000-00-00',3820,0,3718,'N','','N','','','REPORTS','','N','D06','','N',4,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:51:00','0000-00-00','','','','N','09:51:00','13:02:02','','N','N','Y',NULL,'O','O','Z02','','0000-00-00 00:00:00','2','09:51:48',0,'','reception','2025-12-09 09:51:48','darshan','2025-12-09 13:02:02'),(5607,0,0,'O','N','2526',3767,0,'2025-12-09','2026-03-08',3720,0,3767,'N','','N','','','INJ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:03:00','0000-00-00','','','','N','10:03:00','11:17:38','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','4','10:03:50',0,'','reception','2025-12-09 10:03:50','drarchit','2025-12-09 11:17:38'),(5608,0,0,'O','N','2526',3720,0,'2025-12-09','0000-00-00',3721,0,3720,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:05:00','0000-00-00','','','','N','10:05:00','12:14:02','','','N','Y',NULL,'O','O','Z04','','0000-00-00 00:00:00','3','10:05:24',0,'','janvi','2025-12-09 10:05:24','drpratapsinh','2025-12-09 12:14:02'),(5609,0,0,'O','N','2526',3768,0,'2025-12-09','2026-03-08',3872,0,3768,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:05:00','0000-00-00','','','','N','10:05:00','13:47:09','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:05:50',0,'','reception','2025-12-09 10:05:50','darshan','2025-12-09 13:47:09'),(5610,0,0,'O','N','2526',3769,0,'2025-12-09','2026-03-08',3873,0,3769,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:09:00','0000-00-00','','','','N','10:09:00','11:54:11','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','10:09:47',0,'','reception','2025-12-09 10:09:47','darshan','2025-12-09 11:54:11'),(5611,0,0,'O','N','2526',2913,0,'2025-12-09','0000-00-00',2950,0,2913,'N','','N','','','FOLLOWUP','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:10:00','0000-00-00','','','','N','10:10:00','11:20:13','','','N','Y',NULL,'O','O','Z05','','0000-00-00 00:00:00','6','10:10:43',0,'','manshi','2025-12-09 10:10:43','drsagar','2025-12-09 11:20:13'),(5612,0,0,'O','N','2526',2628,0,'2025-12-09','0000-00-00',2696,0,2628,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:11:00','0000-00-00','','','','N','10:11:00','11:06:41','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','10:11:03',0,'','reception','2025-12-09 10:11:03','darshan','2025-12-09 11:06:41'),(5613,0,0,'O','N','2526',3243,0,'2025-12-09','0000-00-00',3325,0,3243,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:12:00','0000-00-00','','','','N','10:12:00','10:54:14','','','N','Y',NULL,'O','O','E02','','0000-00-00 00:00:00','2','10:12:55',0,'','reception','2025-12-09 10:12:55','darshan','2025-12-09 10:54:14'),(5614,0,0,'O','N','2526',3770,0,'2025-12-09','2026-03-08',3874,0,3770,'N','','N','','','NV','','N','D06','','N',269,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:14:00','0000-00-00','','','','N','10:14:00','14:11:15','','N','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','2','10:14:01',0,'','reception','2025-12-09 10:14:01','darshan','2025-12-09 14:11:15'),(5615,0,0,'O','N','2526',3771,0,'2025-12-09','2026-03-08',3875,0,3771,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','0000-00-00','','','','N','10:15:00','12:09:06','','N','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','4','10:15:56',0,'','drashti','2025-12-09 10:15:56','drarchit','2025-12-09 12:09:06'),(5616,0,0,'O','N','2526',3772,0,'2025-12-09','2026-03-08',3876,0,3772,'N','','N','','','NV','','N','D06','','N',3,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','0000-00-00','','','','N','10:15:00','17:43:09','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','2','10:15:57',0,'','reception','2025-12-09 10:15:57','darshan','2025-12-09 17:43:09'),(5617,0,0,'O','N','2526',3773,0,'2025-12-09','2026-03-08',3877,0,3773,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:19:00','0000-00-00','','','','N','10:19:00','14:19:03','','N','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','2','10:19:06',0,'','reception','2025-12-09 10:19:06','darshan','2025-12-09 14:19:03'),(5618,0,0,'O','N','2526',865,0,'2025-12-09','0000-00-00',897,0,865,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:26:00','0000-00-00','','','','N','10:26:00','11:12:05','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:26:28',0,'','reception','2025-12-09 10:26:28','darshan','2025-12-09 11:12:05'),(5619,0,0,'O','N','2526',3774,0,'2025-12-09','2026-03-08',3878,0,3774,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','11:26:05','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','10:28:45',0,'','reception','2025-12-09 10:28:45','darshan','2025-12-09 11:26:05'),(5620,0,0,'O','N','2526',3775,0,'2025-12-09','2026-03-08',3879,0,3775,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:34:00','0000-00-00','','','','N','10:34:00','11:41:19','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','4','10:34:31',0,'','drashti','2025-12-09 10:34:31','drarchit','2025-12-09 11:41:19'),(5621,0,0,'O','N','2526',3605,0,'2025-12-09','0000-00-00',3705,0,3605,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:41:00','0000-00-00','','','','N','10:41:00','12:17:11','','','N','Y',NULL,'O','O','Z10','','0000-00-00 00:00:00','3','10:41:37',0,'','janvi','2025-12-09 10:41:37','drpratapsinh','2025-12-09 12:17:11'),(5622,0,0,'O','N','2526',3776,0,'2025-12-09','2026-03-08',3880,0,3776,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:41:00','0000-00-00','','','','N','10:41:00','13:36:45','','N','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','10:41:43',0,'','reception','2025-12-09 10:41:43','darshan','2025-12-09 13:36:45'),(5623,0,0,'O','N','2526',2392,0,'2025-12-09','0000-00-00',2449,0,2392,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:42:00','0000-00-00','','','','N','10:42:00','12:35:48','','','N','Y',NULL,'O','O','Z11','','0000-00-00 00:00:00','2','10:42:57',0,'','reception','2025-12-09 10:42:57','darshan','2025-12-09 12:35:48'),(5624,0,0,'O','N','2526',3593,0,'2025-12-09','0000-00-00',3691,0,3593,'N','','N','','','','','N','D02','','N',223,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:45:00','0000-00-00','','','','N','10:45:00','12:16:55','','','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','3','10:45:35',0,'','drashti','2025-12-09 10:45:35','drpratapsinh','2025-12-09 12:16:55'),(5625,0,0,'O','N','2526',273,0,'2025-12-09','0000-00-00',289,0,273,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:47:00','0000-00-00','','','','N','10:47:00','12:38:05','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','2','10:47:29',0,'','reception','2025-12-09 10:47:29','darshan','2025-12-09 12:38:05'),(5626,0,0,'O','N','2526',3777,0,'2025-12-09','2026-03-08',3881,0,3777,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:50:00','0000-00-00','','','','N','10:50:00','12:40:28','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','2','10:50:29',0,'','reception','2025-12-09 10:50:29','darshan','2025-12-09 12:40:27'),(5627,0,0,'O','N','2526',3778,0,'2025-12-09','2026-03-08',3882,0,3778,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','14:07:50','','N','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:54:14',0,'','drashti','2025-12-09 10:51:33','darshan','2025-12-09 14:07:50'),(5628,0,0,'O','N','2526',3779,0,'2025-12-09','2026-03-08',3883,0,3779,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:52:00','0000-00-00','','','','N','10:52:00','11:27:29','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','6','10:52:03',0,'','manshi','2025-12-09 10:52:03','drsagar','2025-12-09 11:27:29'),(5629,0,0,'O','N','2526',3780,0,'2025-12-09','2026-03-08',3884,0,3780,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:52:00','0000-00-00','','','','N','10:52:00','11:22:36','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','2','10:54:14',0,'','reception','2025-12-09 10:52:49','darshan','2025-12-09 11:22:36'),(5630,0,0,'O','N','2526',3781,0,'2025-12-09','2026-03-08',3885,0,3781,'N','','N','','','NV','','N','D06','','N',270,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','17:33:35','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','2','11:12:05',0,'','reception','2025-12-09 10:57:47','darshan','2025-12-09 17:33:35'),(5631,0,0,'O','N','2526',3782,0,'2025-12-09','2026-03-08',3886,0,3782,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','12:29:41','','N','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','4','10:57:53',0,'','drashti','2025-12-09 10:57:53','drarchit','2025-12-09 12:29:41'),(5632,0,0,'O','N','2526',3783,0,'2025-12-09','2026-03-08',3887,0,3783,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','13:19:53','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','2','11:12:05',0,'','reception','2025-12-09 10:59:38','darshan','2025-12-09 13:19:53'),(5633,0,0,'O','N','2526',3784,0,'2025-12-09','2026-03-08',3888,0,3784,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','12:43:12','','','N','Y',NULL,'O','N','G05','','0000-00-00 00:00:00','4','11:01:15',0,'','drashti','2025-12-09 11:01:15','drarchit','2025-12-09 12:43:12'),(5634,0,0,'O','N','2526',3785,0,'2025-12-09','2026-03-08',3889,0,3785,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','13:26:51','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','2','11:12:05',0,'','reception','2025-12-09 11:01:17','darshan','2025-12-09 13:26:51'),(5635,0,0,'O','N','2526',489,0,'2025-12-09','0000-00-00',514,0,489,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','11:35:50','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','7','11:04:28',0,'','manshi','2025-12-09 11:04:28','drridham','2025-12-09 11:35:50'),(5636,0,0,'O','N','2526',3786,0,'2025-12-09','2026-03-08',3890,0,3786,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','11:35:54','','','N','Y',NULL,'O','N','G06','','0000-00-00 00:00:00','4','11:05:42',0,'','drashti','2025-12-09 11:05:42','drarchit','2025-12-09 11:35:54'),(5637,0,0,'O','N','2526',294,0,'2025-12-09','0000-00-00',310,0,294,'N','','N','','','FV','','N','D06','','N',27,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','13:30:16','','','N','Y',NULL,'O','O','Z20','','0000-00-00 00:00:00','2','11:12:05',0,'','reception','2025-12-09 11:06:37','darshan','2025-12-09 13:30:16'),(5638,0,0,'O','N','2526',2874,0,'2025-12-09','0000-00-00',2201,0,2874,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','12:18:36','','','N','Y',NULL,'O','O','Z21','','0000-00-00 00:00:00','3','11:07:39',0,'','janvi','2025-12-09 11:07:39','drpratapsinh','2025-12-09 12:18:36'),(5639,0,0,'O','N','2526',3787,0,'2025-12-09','2026-03-08',3891,0,3787,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','12:49:29','','N','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','4','11:17:05',0,'','drashti','2025-12-09 11:17:05','drarchit','2025-12-09 12:49:29'),(5640,0,0,'O','N','2526',3788,0,'2025-12-09','2026-03-08',3892,0,3788,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','11:35:44','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','6','11:18:12',0,'','manshi','2025-12-09 11:18:12','drsagar','2025-12-09 11:35:44'),(5641,0,0,'O','N','2526',3789,0,'2025-12-09','2026-03-08',3893,0,3789,'N','','N','','','NV','','N','D06','','N',271,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','14:33:42','','N','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','2','12:22:33',0,'','reception','2025-12-09 11:25:31','darshan','2025-12-09 14:33:42'),(5642,0,0,'O','N','2526',156,0,'2025-12-09','0000-00-00',169,0,156,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','12:27:53','','','N','Y',NULL,'O','O','H03','','0000-00-00 00:00:00','2','12:22:33',0,'','reception','2025-12-09 11:27:43','darshan','2025-12-09 12:27:53'),(5643,0,0,'O','N','2526',2645,0,'2025-12-09','0000-00-00',2715,0,2645,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','11:58:58','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','6','11:43:29',0,'','manshi','2025-12-09 11:43:29','drsagar','2025-12-09 11:58:58'),(5644,0,0,'O','N','2526',3790,0,'2025-12-09','2026-03-08',3894,0,3790,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','18:12:04','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','4','11:45:42',0,'','drashti','2025-12-09 11:45:42','drarchit','2025-12-09 18:12:04'),(5645,0,0,'O','N','2526',3791,0,'2025-12-09','2026-03-08',3895,0,3791,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','12:29:02','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','3','11:47:16',0,'','janvi','2025-12-09 11:47:16','drpratapsinh','2025-12-09 12:29:02'),(5646,0,0,'O','N','2526',3792,0,'2025-12-09','2026-03-08',3896,0,3792,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','18:23:05','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:22:33',0,'','reception','2025-12-09 11:50:21','darshan','2025-12-09 18:23:05'),(5647,0,0,'O','N','2526',3793,0,'2025-12-09','2026-03-08',3897,0,3793,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','13:05:57','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','12:22:33',0,'','janvi','2025-12-09 11:56:23','darshan','2025-12-09 13:05:57'),(5648,0,0,'O','N','2526',3794,0,'2025-12-09','2026-03-08',3898,0,3794,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','14:25:21','','N','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','12:22:33',0,'','reception','2025-12-09 11:56:42','darshan','2025-12-09 14:25:21'),(5649,0,0,'O','N','2526',1168,0,'2025-12-09','0000-00-00',1207,0,1168,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:59:00','0000-00-00','','','','N','11:59:00','13:18:02','','','N','Y',NULL,'O','O','J03','','0000-00-00 00:00:00','2','12:22:33',0,'','janvi','2025-12-09 11:59:20','darshan','2025-12-09 13:18:02'),(5650,0,0,'O','N','2526',3795,0,'2025-12-09','2026-03-08',3899,0,3795,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:59:00','0000-00-00','','','','N','11:59:00','14:22:45','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','2','12:22:33',0,'','reception','2025-12-09 11:59:44','darshan','2025-12-10 14:22:45'),(5651,0,0,'O','N','2526',3174,0,'2025-12-09','0000-00-00',3260,0,3174,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:01:00','0000-00-00','','','','N','12:01:00','12:59:22','','','N','Y',NULL,'O','O','I03','','0000-00-00 00:00:00','2','12:22:33',0,'','janvi','2025-12-09 12:01:40','darshan','2025-12-09 12:59:22'),(5652,0,0,'O','N','2526',3796,0,'2025-12-09','2026-03-08',3900,0,3796,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:16:00','0000-00-00','','','','N','12:16:00','14:10:33','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','2','12:22:33',0,'','reception','2025-12-09 12:16:07','darshan','2025-12-09 14:10:33'),(5653,0,0,'O','N','2526',2603,0,'2025-12-09','0000-00-00',2665,0,2603,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','12:44:02','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','6','12:27:09',0,'','manshi','2025-12-09 12:27:09','drsagar','2025-12-09 12:44:02'),(5654,0,0,'O','N','2526',3797,0,'2025-12-09','2026-03-08',3901,0,3797,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','12:44:14','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','6','12:28:04',0,'','manshi','2025-12-09 12:28:04','drsagar','2025-12-09 12:44:14'),(5655,0,0,'O','N','2526',3798,0,'2025-12-09','2026-03-08',3902,0,3798,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:32:00','0000-00-00','','','','N','12:32:00','12:46:52','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','3','12:32:17',0,'','drashti','2025-12-09 12:32:17','drpratapsinh','2025-12-09 12:46:52'),(5656,0,0,'O','N','2526',2606,0,'2025-12-09','0000-00-00',2668,0,2606,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:46:00','0000-00-00','','','','N','12:46:00','12:49:13','','','N','Y',NULL,'O','O','Z33','','0000-00-00 00:00:00','3','12:46:19',0,'','drashti','2025-12-09 12:46:19','drpratapsinh','2025-12-09 12:49:13'),(5657,0,0,'O','N','2526',1455,0,'2025-12-09','0000-00-00',1496,0,1455,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:52:00','0000-00-00','','','','N','12:52:00','13:00:26','','','N','Y',NULL,'O','O','Z34','','0000-00-00 00:00:00','4','12:52:33',0,'','drashti','2025-12-09 12:52:33','drarchit','2025-12-09 13:00:26'),(5658,0,0,'O','N','2526',3799,0,'2025-12-09','2026-03-08',3903,0,3799,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:57:00','0000-00-00','','','','N','12:57:00','13:03:52','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','4','12:57:32',0,'','drashti','2025-12-09 12:57:32','drarchit','2025-12-09 13:03:52'),(5659,0,0,'O','N','2526',3800,0,'2025-12-09','2026-03-08',3904,0,3800,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:11:00','0000-00-00','','','','N','13:11:00','17:30:24','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','7','13:11:50',0,'','manshi','2025-12-09 13:11:50','drridham','2025-12-09 17:30:24'),(5660,0,0,'I','N','2526',3790,265,'2025-12-09','2026-03-08',3894,0,3790,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','2025-12-10','','2','mo','N','13:00:00','13:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-09 13:24:21','riya','2025-12-10 12:51:17'),(5661,0,0,'O','N','2526',2659,0,'2025-12-09','0000-00-00',2729,0,2659,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:48:00','0000-00-00','','','','N','13:48:00','18:29:52','','','N','Y',NULL,'O','O','Z37','','0000-00-00 00:00:00','4','13:48:21',0,'','drashti','2025-12-09 13:48:21','drarchit','2025-12-09 18:29:52'),(5662,0,0,'O','N','2526',3801,0,'2025-12-09','2026-03-08',3905,0,3801,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:53:00','0000-00-00','','','','N','14:53:00','18:54:38','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','4','14:53:29',0,'','drashti','2025-12-09 14:53:29','drarchit','2025-12-09 18:54:38'),(5663,0,0,'I','N','2526',0,266,'2025-12-09','2026-03-08',3906,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:00:00','2025-12-12','','5','mo','N','16:00:00','14:41:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-09 16:15:02','mo','2025-12-12 15:09:27'),(5664,0,0,'O','N','2526',1544,0,'2025-12-09','0000-00-00',1587,0,1544,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:36:00','0000-00-00','','','','N','16:36:00','17:04:36','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','16:36:05',0,'','reception','2025-12-09 16:36:05','darshan','2025-12-09 17:04:36'),(5665,0,0,'O','N','2526',3781,0,'2025-12-09','0000-00-00',3885,0,3781,'N','','N','','','REPORTS','','N','D06','','N',270,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:40:00','0000-00-00','','','','N','16:40:00','17:57:27','','N','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','2','16:40:45',0,'','reception','2025-12-09 16:40:45','darshan','2025-12-09 17:57:27'),(5666,0,0,'O','N','2526',3121,0,'2025-12-09','0000-00-00',3207,0,3121,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:47:00','0000-00-00','','','','N','16:47:00','17:12:52','','','N','Y',NULL,'O','O','Z39','','0000-00-00 00:00:00','2','16:47:41',0,'','reception','2025-12-09 16:47:41','darshan','2025-12-09 17:12:52'),(5667,0,0,'O','N','2526',3772,0,'2025-12-09','0000-00-00',3876,0,3772,'N','','N','','','REPORTS','','N','D06','','N',3,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:52:00','0000-00-00','','','','N','16:52:00','18:23:19','','N','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','2','16:52:47',0,'','reception','2025-12-09 16:52:47','darshan','2025-12-09 18:23:19'),(5668,0,0,'O','N','2526',3802,0,'2025-12-09','2026-03-08',3907,0,3802,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:56:00','0000-00-00','','','','N','16:56:00','19:36:31','','N','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:56:24',0,'','reception','2025-12-09 16:56:24','darshan','2025-12-09 19:36:31'),(5669,0,0,'O','N','2526',3792,0,'2025-12-09','0000-00-00',3896,0,3792,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:57:00','0000-00-00','','','','N','16:57:00','18:43:19','','N','N','Y',NULL,'O','O','Y03','','0000-00-00 00:00:00','2','16:57:51',0,'','reception','2025-12-09 16:57:51','darshan','2025-12-09 18:43:19'),(5670,0,0,'O','N','2526',3650,0,'2025-12-09','0000-00-00',3753,0,3650,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:02:00','0000-00-00','','','','N','17:02:00','19:05:28','','N','N','Y',NULL,'O','O','Z40','','0000-00-00 00:00:00','2','17:02:53',0,'','reception','2025-12-09 17:02:53','darshan','2025-12-09 19:05:28'),(5671,0,0,'O','N','2526',3803,0,'2025-12-09','2026-03-08',3908,0,3803,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:06:00','0000-00-00','','','','N','17:06:00','17:27:28','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','2','17:06:29',0,'','reception','2025-12-09 17:06:29','darshan','2025-12-09 17:27:28'),(5672,0,0,'O','N','2526',3804,0,'2025-12-09','2026-03-08',3909,0,3804,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:08:00','0000-00-00','','','','N','17:08:00','17:22:36','','','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','17:08:11',0,'','reception','2025-12-09 17:08:11','darshan','2025-12-09 17:22:36'),(5673,0,0,'O','N','2526',2803,0,'2025-12-09','0000-00-00',2872,0,2803,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:12:00','0000-00-00','','','','N','17:12:00','17:37:00','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','17:12:18',0,'','reception','2025-12-09 17:12:18','darshan','2025-12-09 17:37:00'),(5674,0,0,'O','N','2526',2925,0,'2025-12-09','0000-00-00',3002,0,2925,'N','','N','','','FV','Y','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:15:00','0000-00-00','','','','N','17:15:00','17:50:29','','','N','Y',NULL,'O','O','L05','','0000-00-00 00:00:00','2','17:15:47',0,'','reception','2025-12-09 17:15:47','darshan','2025-12-09 17:50:29'),(5675,0,0,'O','N','2526',2919,0,'2025-12-09','0000-00-00',2996,0,2919,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:17:00','0000-00-00','','','','N','17:17:00','18:10:30','','','N','Y',NULL,'O','O','Z42','','0000-00-00 00:00:00','3','17:18:15',0,'','janvi','2025-12-09 17:18:15','drpratapsinh','2025-12-09 18:10:30'),(5676,0,0,'O','N','2526',3805,0,'2025-12-09','2026-03-08',3910,0,3805,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:25:00','0000-00-00','','','','N','17:25:00','18:22:22','','','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','4','17:25:13',0,'','drashti','2025-12-09 17:25:13','drarchit','2025-12-09 18:22:22'),(5677,0,0,'O','N','2526',3806,0,'2025-12-09','2026-03-08',3911,0,3806,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:36:00','0000-00-00','','','','N','17:36:00','17:56:36','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:36:46',0,'','reception','2025-12-09 17:36:46','darshan','2025-12-09 17:56:35'),(5678,0,0,'I','N','2526',0,267,'2025-12-09','2026-03-08',3912,0,0,'N','','N','','','','N','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:30:00','2025-12-13','','1','mo','N','17:30:00','10:59:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-09 17:39:45','mo','2025-12-13 11:28:03'),(5679,0,0,'O','N','2526',3807,0,'2025-12-09','2026-03-08',3913,0,3807,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','18:12:58','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:46:49',0,'','reception','2025-12-09 17:46:49','darshan','2025-12-09 18:12:58'),(5680,0,0,'O','N','2526',3808,0,'2025-12-09','2026-03-08',3914,0,3808,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','18:27:14','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','3','17:50:37',0,'','janvi','2025-12-09 17:50:37','drpratapsinh','2025-12-09 18:27:14'),(5681,0,0,'O','N','2526',3809,0,'2025-12-09','2026-03-08',3915,0,3809,'N','','N','','','','','N','D02','','N',272,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:53:00','0000-00-00','','','','N','17:53:00','18:02:44','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','3','17:53:35',0,'','janvi','2025-12-09 17:53:35','drpratapsinh','2025-12-09 18:02:44'),(5682,0,0,'O','N','2526',3324,0,'2025-12-09','0000-00-00',3416,0,3324,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','19:34:24','','N','N','Y',NULL,'O','O','L09','','0000-00-00 00:00:00','4','17:59:27',0,'','drashti','2025-12-09 17:59:27','drarchit','2025-12-09 19:34:24'),(5683,0,0,'O','N','2526',1827,0,'2025-12-09','0000-00-00',1873,0,1827,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','18:17:25','','','N','Y',NULL,'O','O','L10','','0000-00-00 00:00:00','2','17:59:57',0,'','reception','2025-12-09 17:59:57','darshan','2025-12-09 18:17:25'),(5684,0,0,'O','N','2526',2101,0,'2025-12-09','0000-00-00',1788,0,2101,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','18:21:38','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','3','18:02:21',0,'','janvi','2025-12-09 18:02:21','drpratapsinh','2025-12-09 18:21:38'),(5685,0,0,'O','N','2526',3810,0,'2025-12-09','2026-03-08',3916,0,3810,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','20:28:21','','N','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','2','18:03:29',0,'','reception','2025-12-09 18:03:29','darshan','2025-12-09 20:28:21'),(5686,0,0,'O','N','2526',3811,0,'2025-12-09','2026-03-08',3917,0,3811,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','18:23:21','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','5','18:11:14',0,'','drashti','2025-12-09 18:03:34','drjayant','2025-12-09 18:23:21'),(5687,0,0,'O','N','2526',3812,0,'2025-12-09','2026-03-08',3918,0,3812,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','20:04:17','','N','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','2','18:04:31',0,'','janvi','2025-12-09 18:04:31','darshan','2025-12-09 20:04:17'),(5688,0,0,'O','N','2526',3813,0,'2025-12-09','2026-03-08',3919,0,3813,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','20:07:51','','N','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','2','18:05:15',0,'','reception','2025-12-09 18:05:14','darshan','2025-12-09 20:07:51'),(5689,0,0,'O','N','2526',3814,0,'2025-12-09','2026-03-08',3920,0,3814,'N','','N','','','','','N','D27','','N',17,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','19:44:25','','N','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','4','18:07:56',0,'','janvi','2025-12-09 18:06:11','drarchit','2025-12-09 19:44:25'),(5690,0,0,'O','N','2526',3815,0,'2025-12-09','2026-03-08',3921,0,3815,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:13:00','0000-00-00','','','','N','18:13:00','18:49:21','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','5','18:13:58',0,'','drashti','2025-12-09 18:13:58','drjayant','2025-12-10 18:49:21'),(5691,0,0,'O','N','2526',1288,0,'2025-12-09','0000-00-00',1327,0,1288,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','18:21:56','','','N','Y',NULL,'O','O','Z50','','0000-00-00 00:00:00','3','18:14:13',0,'','reception','2025-12-09 18:14:13','drpratapsinh','2025-12-09 18:21:56'),(5692,0,0,'O','N','2526',3816,0,'2025-12-09','2026-03-08',3922,0,3816,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','18:26:57','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','3','18:17:03',0,'','janvi','2025-12-09 18:17:03','drpratapsinh','2025-12-09 18:26:57'),(5693,0,0,'O','N','2526',3817,0,'2025-12-09','2026-03-08',3923,0,3817,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:17:00','0000-00-00','','','','N','18:17:00','19:17:29','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','4','18:17:49',0,'','drashti','2025-12-09 18:17:49','drarchit','2025-12-09 19:17:29'),(5694,0,0,'O','N','2526',1676,0,'2025-12-09','0000-00-00',1721,0,1676,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:17:00','0000-00-00','','','','N','18:17:00','19:11:47','','','N','Y',NULL,'O','O','Z52','','0000-00-00 00:00:00','2','18:17:59',0,'','reception','2025-12-09 18:17:59','darshan','2025-12-09 19:11:47'),(5695,0,0,'O','N','2526',3818,0,'2025-12-09','2026-03-08',3924,0,3818,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','18:54:03','','','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','4','18:21:04',0,'','drashti','2025-12-09 18:21:04','drarchit','2025-12-09 18:54:03'),(5696,0,0,'O','N','2526',3819,0,'2025-12-09','2026-03-08',3349,0,3819,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','18:30:18','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','3','18:21:57',0,'','reception','2025-12-09 18:21:57','drpratapsinh','2025-12-09 18:30:18'),(5697,0,0,'O','N','2526',3820,0,'2025-12-09','2026-03-08',3925,0,3820,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','19:26:45','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','2','18:24:29',0,'','reception','2025-12-09 18:24:29','darshan','2025-12-09 19:26:45'),(5698,0,0,'O','N','2526',3821,0,'2025-12-09','2026-03-08',3926,0,3821,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:27:00','0000-00-00','','','','N','18:27:00','18:36:55','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','5','18:28:05',0,'','janvi','2025-12-09 18:28:05','drjayant','2025-12-09 18:36:55'),(5699,0,0,'O','N','2526',3822,0,'2025-12-09','2026-03-08',3927,0,3822,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','19:31:21','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','4','18:32:32',0,'','janvi','2025-12-09 18:32:32','drarchit','2025-12-09 19:31:21'),(5700,0,0,'O','N','2526',1257,0,'2025-12-09','0000-00-00',1298,0,1257,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','19:04:40','','','N','Y',NULL,'O','O','Z57','','0000-00-00 00:00:00','2','18:33:59',0,'','reception','2025-12-09 18:33:59','darshan','2025-12-09 19:04:40'),(5701,0,0,'O','N','2526',3823,0,'2025-12-09','2026-03-08',3928,0,3823,'N','','N','','','','','N','D02','','N',93,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','19:35:11','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','3','18:36:46',0,'','janvi','2025-12-09 18:36:46','drpratapsinh','2025-12-09 19:35:11'),(5702,0,0,'O','N','2526',890,0,'2025-12-09','0000-00-00',922,0,890,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','20:01:45','','','N','Y',NULL,'O','O','Z59','','0000-00-00 00:00:00','5','18:41:01',0,'','janvi','2025-12-09 18:41:01','drjayant','2025-12-10 20:01:45'),(5703,0,0,'O','N','2526',3824,0,'2025-12-09','2026-03-08',3929,0,3824,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','19:35:48','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','2','18:46:55',0,'','reception','2025-12-09 18:46:55','darshan','2025-12-09 19:35:48'),(5704,0,0,'O','N','2526',3825,0,'2025-12-09','2026-03-08',3930,0,3825,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','19:37:37','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','4','18:48:04',0,'','drashti','2025-12-09 18:48:04','drarchit','2025-12-09 19:37:37'),(5705,0,0,'O','N','2526',1312,0,'2025-12-09','0000-00-00',1351,0,1312,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:50:00','0000-00-00','','','','N','18:50:00','19:22:42','','','N','Y',NULL,'O','O','L15','','0000-00-00 00:00:00','2','18:50:30',0,'','reception','2025-12-09 18:50:30','darshan','2025-12-09 19:22:42'),(5706,0,0,'O','N','2526',1000,0,'2025-12-09','0000-00-00',1032,0,1000,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','19:48:54','','','N','Y',NULL,'O','O','Z62','','0000-00-00 00:00:00','2','18:55:00',0,'','reception','2025-12-09 18:55:00','darshan','2025-12-09 19:48:54'),(5707,0,0,'O','N','2526',3305,0,'2025-12-09','0000-00-00',3394,0,3305,'N','','N','','','','','N','D02','','N',119,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:55:00','0000-00-00','','','','N','18:55:00','19:23:14','','','N','Y',NULL,'O','O','Z63','','0000-00-00 00:00:00','3','18:55:24',0,'','janvi','2025-12-09 18:55:24','drpratapsinh','2025-12-09 19:23:14'),(5708,0,0,'O','N','2526',3319,0,'2025-12-09','0000-00-00',3411,0,3319,'N','','N','','','','','N','D02','','N',25,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','19:22:51','','','N','Y',NULL,'O','O','Z64','','0000-00-00 00:00:00','3','18:57:07',0,'','janvi','2025-12-09 18:57:07','drpratapsinh','2025-12-09 19:22:51'),(5709,0,0,'O','N','2526',1976,0,'2025-12-09','0000-00-00',2024,0,1976,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:58:00','0000-00-00','','','','N','18:58:00','19:34:52','','','N','Y',NULL,'O','O','Z65','','0000-00-00 00:00:00','3','18:58:28',0,'','janvi','2025-12-09 18:58:28','drpratapsinh','2025-12-09 19:34:52'),(5710,0,0,'O','N','2526',3826,0,'2025-12-09','2026-03-08',3931,0,3826,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:59:00','0000-00-00','','','','N','18:59:00','19:42:25','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','5','18:59:25',0,'','drashti','2025-12-09 18:59:25','drjayant','2025-12-09 19:42:25'),(5711,0,0,'O','N','2526',3827,0,'2025-12-09','2026-03-08',3932,0,3827,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:09:00','0000-00-00','','','','N','19:09:00','20:41:36','','','N','Y',NULL,'O','N','Z67','','0000-00-00 00:00:00','2','19:09:55',0,'','reception','2025-12-09 19:09:55','darshan','2025-12-15 20:41:36'),(5712,0,0,'O','N','2526',3278,0,'2025-12-09','0000-00-00',3367,0,3278,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:11:00','0000-00-00','','','','N','19:11:00','20:24:32','','','N','Y',NULL,'O','O','Z68','','0000-00-00 00:00:00','2','19:11:08',0,'','reception','2025-12-09 19:11:08','darshan','2025-12-09 20:24:32'),(5713,0,0,'O','N','2526',3828,0,'2025-12-09','2026-03-08',3933,0,3828,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:12:00','0000-00-00','','','','N','19:12:00','20:32:14','','N','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','2','19:12:44',0,'','reception','2025-12-09 19:12:44','darshan','2025-12-09 20:32:14'),(5714,0,0,'O','N','2526',3310,0,'2025-12-09','0000-00-00',3399,0,3310,'N','','N','','','','','N','D02','','N',90,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:13:00','0000-00-00','','','','N','19:13:00','19:30:05','','','N','Y',NULL,'O','O','Z69','','0000-00-00 00:00:00','3','19:13:37',0,'','janvi','2025-12-09 19:13:37','drpratapsinh','2025-12-09 19:30:05'),(5715,0,0,'O','N','2526',3611,0,'2025-12-09','0000-00-00',3712,0,3611,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:15:00','0000-00-00','','','','N','19:15:00','19:29:39','','','N','Y',NULL,'O','O','Z70','','0000-00-00 00:00:00','5','19:15:23',0,'','janvi','2025-12-09 19:15:23','drjayant','2025-12-09 19:29:39'),(5716,0,0,'O','N','2526',3829,0,'2025-12-09','2026-03-08',3934,0,3829,'N','','N','','','','','N','D02','','N',108,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:15:00','0000-00-00','','','','N','19:15:00','19:34:39','','','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','3','19:15:39',0,'','priyanshi','2025-12-09 19:15:39','drpratapsinh','2025-12-09 19:34:39'),(5717,0,0,'O','N','2526',3830,0,'2025-12-09','2026-03-08',3935,0,3830,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:26:00','0000-00-00','','','','N','19:26:00','19:43:30','','','N','Y',NULL,'O','N','Z72','','0000-00-00 00:00:00','4','19:26:58',0,'','reception','2025-12-09 19:26:58','drarchit','2025-12-09 19:43:30'),(5718,0,0,'O','N','2526',3660,0,'2025-12-09','0000-00-00',3598,0,3660,'N','','N','','','FOLLOWUP C','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:32:00','0000-00-00','','','','N','19:32:00','19:47:26','','','N','Y',NULL,'O','O','Z73','','0000-00-00 00:00:00','4','19:32:22',0,'','priyanshi','2025-12-09 19:32:22','drarchit','2025-12-09 19:47:26'),(5719,0,0,'O','N','2526',3831,0,'2025-12-09','2026-03-08',3936,0,3831,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:41:00','0000-00-00','','','','N','19:41:00','19:48:06','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','5','19:41:53',0,'','priyanshi','2025-12-09 19:41:53','drjayant','2025-12-09 19:48:06'),(5720,0,0,'O','N','2526',3832,0,'2025-12-09','2026-03-08',3937,0,3832,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:50:00','0000-00-00','','','','N','19:50:00','00:00:00','','','N','N',NULL,'O','N','Z75','','0000-00-00 00:00:00','3','19:50:53',0,'','janvi','2025-12-09 19:50:53','','0000-00-00 00:00:00'),(5721,0,0,'O','N','2526',3767,0,'2025-12-09','0000-00-00',3720,0,3767,'N','','N','','','INJ','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:16:00','0000-00-00','','','','N','20:16:00','00:00:00','','','N','N',NULL,'O','O','Y04','','0000-00-00 00:00:00','4','20:16:15',0,'','reception','2025-12-09 20:16:15','','0000-00-00 00:00:00'),(5722,0,0,'I','N','2526',0,268,'2025-12-09','2026-03-08',3938,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:30:00','2025-12-11','','1','mo','N','19:30:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-09 20:28:36','riya','2025-12-11 12:55:44'),(5723,0,0,'I','N','2526',0,269,'2025-12-09','2026-03-08',3939,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','21:15:00','2025-12-10','','5','mo','N','21:15:00','17:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-09 21:16:04','mo','2025-12-10 18:01:54'),(5724,0,0,'O','N','2526',3001,0,'2025-12-10','0000-00-00',3080,0,3001,'N','','N','','','FC','','N','D02','','N',177,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:50:00','0000-00-00','','','','N','08:50:00','10:50:21','','','N','Y',NULL,'O','O','Z01','','0000-00-00 00:00:00','3','08:50:59',0,'','reception','2025-12-10 08:50:59','drpratapsinh','2025-12-10 10:50:21'),(5725,0,0,'O','N','2526',3831,0,'2025-12-10','0000-00-00',3936,0,3831,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:53:00','0000-00-00','','','','N','08:53:00','00:00:00','','','N','Y',NULL,'O','O','Z02','','0000-00-00 00:00:00','5','11:29:04',0,'','urvashi','2025-12-10 08:53:15','','0000-00-00 00:00:00'),(5726,0,0,'O','N','2526',3833,0,'2025-12-10','2026-03-09',3940,0,3833,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:54:00','0000-00-00','','','','N','08:54:00','11:24:28','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','3','08:54:44',0,'','urvashi','2025-12-10 08:54:44','drpratapsinh','2025-12-10 11:24:28'),(5727,0,0,'O','N','2526',3832,0,'2025-12-10','0000-00-00',3937,0,3832,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:56:00','0000-00-00','','','','N','08:56:00','11:23:07','','','N','Y',NULL,'O','O','Z04','','0000-00-00 00:00:00','3','08:56:31',0,'','urvashi','2025-12-10 08:56:31','drpratapsinh','2025-12-10 11:23:07'),(5728,0,0,'I','N','2526',0,270,'2025-12-10','2026-03-09',3941,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-12-10','','1','mo','N','09:30:00','20:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-10 09:36:35','mo','2025-12-10 20:38:06'),(5729,0,0,'O','N','2526',2022,0,'2025-12-10','0000-00-00',2075,0,2022,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:46:00','0000-00-00','','','','N','09:46:00','18:42:26','','','N','Y',NULL,'O','O','Z05','','0000-00-00 00:00:00','5','11:29:04',0,'','drashti','2025-12-10 09:46:33','drjayant','2025-12-10 18:42:26'),(5730,0,0,'O','N','2526',3834,0,'2025-12-10','2026-03-09',3942,0,3834,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:49:00','0000-00-00','','','','N','09:49:00','18:50:39','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','4','09:49:59',0,'','drashti','2025-12-10 09:49:59','drarchit','2025-12-10 18:50:39'),(5731,0,0,'O','N','2526',1622,0,'2025-12-10','0000-00-00',1667,0,1622,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:56:00','0000-00-00','','','','N','09:56:00','11:15:48','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','2','09:56:08',0,'','reception','2025-12-10 09:56:08','darshan','2025-12-10 11:15:48'),(5732,0,0,'I','N','2526',0,271,'2025-12-10','2026-03-09',3943,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','2025-12-10','','1','mo','N','10:00:00','20:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-10 10:05:37','mo','2025-12-10 20:48:25'),(5733,0,0,'O','N','2526',3835,0,'2025-12-10','2026-03-09',3944,0,3835,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:07:00','0000-00-00','','','','N','10:07:00','11:22:59','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','7','10:07:44',0,'','manshi','2025-12-10 10:07:44','drridham','2025-12-10 11:22:59'),(5734,0,0,'O','N','2526',3208,0,'2025-12-10','0000-00-00',3295,0,3208,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:10:00','0000-00-00','','','','N','10:10:00','10:51:13','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','3','10:10:43',0,'','janvi','2025-12-10 10:10:43','drpratapsinh','2025-12-10 10:51:13'),(5735,0,0,'O','N','2526',3836,0,'2025-12-10','2026-03-09',3945,0,3836,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:10:00','0000-00-00','','','','N','10:10:00','11:23:10','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','7','10:11:00',0,'','manshi','2025-12-10 10:11:00','drridham','2025-12-10 11:23:10'),(5736,0,0,'O','N','2526',3198,0,'2025-12-10','0000-00-00',3284,0,3198,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:11:00','0000-00-00','','','','N','10:11:00','11:18:12','','','N','Y',NULL,'O','O','Z11','','0000-00-00 00:00:00','2','10:11:44',0,'','reception','2025-12-10 10:11:44','darshan','2025-12-10 11:18:12'),(5737,0,0,'O','N','2526',3605,0,'2025-12-10','0000-00-00',3705,0,3605,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:17:00','0000-00-00','','','','N','10:17:00','10:51:29','','','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','3','10:18:07',0,'','janvi','2025-12-10 10:18:07','drpratapsinh','2025-12-10 10:51:29'),(5738,0,0,'O','N','2526',3837,0,'2025-12-10','2026-03-09',3946,0,3837,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:18:00','0000-00-00','','','','N','10:18:00','10:55:04','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','10:19:02',0,'','reception','2025-12-10 10:19:02','darshan','2025-12-10 10:55:04'),(5739,0,0,'O','N','2526',3720,0,'2025-12-10','0000-00-00',3721,0,3720,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:22:00','0000-00-00','','','','N','10:22:00','10:51:43','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','3','10:22:28',0,'','janvi','2025-12-10 10:22:28','drpratapsinh','2025-12-10 10:51:43'),(5740,0,0,'O','N','2526',2176,0,'2025-12-10','0000-00-00',2231,0,2176,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:22:00','0000-00-00','','','','N','10:22:00','10:59:53','','','N','Y',NULL,'O','O','E02','','0000-00-00 00:00:00','2','10:22:39',0,'','reception','2025-12-10 10:22:39','darshan','2025-12-10 10:59:53'),(5741,0,0,'O','N','2526',3838,0,'2025-12-10','2026-03-09',3947,0,3838,'N','','N','','','','','N','D02','','N',273,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:23:00','0000-00-00','','','','N','10:23:00','11:01:08','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','3','10:24:04',0,'','janvi','2025-12-10 10:24:04','drpratapsinh','2025-12-10 11:01:08'),(5742,0,0,'O','N','2526',3839,0,'2025-12-10','2026-03-09',3948,0,3839,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:27:00','0000-00-00','','','','N','10:27:00','12:31:42','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','4','10:27:49',0,'','janvi','2025-12-10 10:27:49','drarchit','2025-12-10 12:31:42'),(5743,0,0,'O','N','2526',3840,0,'2025-12-10','2026-03-09',3949,0,3840,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:29:00','0000-00-00','','','','N','10:29:00','11:03:34','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','3','10:29:51',0,'','reception','2025-12-10 10:29:51','drpratapsinh','2025-12-10 11:03:34'),(5744,0,0,'O','N','2526',1070,0,'2025-12-10','0000-00-00',1110,0,1070,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:32:00','0000-00-00','','','','N','10:32:00','11:07:16','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','3','10:32:40',0,'','janvi','2025-12-10 10:32:40','drpratapsinh','2025-12-10 11:07:16'),(5745,0,0,'O','N','2526',860,0,'2025-12-10','0000-00-00',892,0,860,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','11:04:25','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','10:33:10',0,'','reception','2025-12-10 10:33:10','darshan','2025-12-10 11:04:25'),(5746,0,0,'O','N','2526',3841,0,'2025-12-10','2026-03-09',3950,0,3841,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','11:18:09','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','4','10:33:16',0,'','drashti','2025-12-10 10:33:16','drarchit','2025-12-10 11:18:09'),(5747,0,0,'O','N','2526',862,0,'2025-12-10','0000-00-00',894,0,862,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','11:09:00','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:33:39',0,'','reception','2025-12-10 10:33:39','darshan','2025-12-10 11:09:00'),(5748,0,0,'O','N','2526',702,0,'2025-12-10','0000-00-00',733,0,702,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','11:26:42','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','6','10:39:57',0,'','manshi','2025-12-10 10:39:57','drsagar','2025-12-10 11:26:42'),(5749,0,0,'O','N','2526',3842,0,'2025-12-10','2026-03-09',3951,0,3842,'N','','N','','','NV','','N','D06','','N',274,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:42:00','0000-00-00','','','','N','10:42:00','13:07:53','','N','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','2','10:42:50',0,'','reception','2025-12-10 10:42:50','darshan','2025-12-10 13:07:53'),(5750,0,0,'O','N','2526',3249,0,'2025-12-10','0000-00-00',3331,0,3249,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:45:00','0000-00-00','','','','N','10:45:00','11:33:02','','','N','Y',NULL,'O','O','Z21','','0000-00-00 00:00:00','4','10:45:41',0,'','drashti','2025-12-10 10:45:41','drarchit','2025-12-10 11:33:02'),(5751,0,0,'O','N','2526',3843,0,'2025-12-10','2026-03-09',3952,0,3843,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','12:41:22','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','2','10:51:37',0,'','reception','2025-12-10 10:51:37','darshan','2025-12-10 12:41:22'),(5752,0,0,'O','N','2526',3844,0,'2025-12-10','2026-03-09',3953,0,3844,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','11:46:24','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','2','10:58:48',0,'','reception','2025-12-10 10:58:48','darshan','2025-12-10 11:46:24'),(5753,0,0,'O','N','2526',3258,0,'2025-12-10','0000-00-00',3341,0,3258,'N','','N','','','','','N','D02','','N',237,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','11:14:12','','','N','Y',NULL,'O','O','Z24','','0000-00-00 00:00:00','3','11:01:34',0,'','janvi','2025-12-10 11:01:34','drpratapsinh','2025-12-10 11:14:12'),(5754,0,0,'O','N','2526',3845,0,'2025-12-10','2026-03-09',3954,0,3845,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','12:03:51','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','11:03:09',0,'','drashti','2025-12-10 11:03:09','darshan','2025-12-10 12:03:51'),(5755,0,0,'O','N','2526',2061,0,'2025-12-10','0000-00-00',2115,0,2061,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','12:07:36','','','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','2','11:06:41',0,'','reception','2025-12-10 11:06:41','darshan','2025-12-10 12:07:36'),(5756,0,0,'O','N','2526',3846,0,'2025-12-10','2026-03-09',3955,0,3846,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','11:34:38','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','6','11:07:07',0,'','manshi','2025-12-10 11:07:07','drsagar','2025-12-10 11:34:38'),(5757,0,0,'O','N','2526',3847,0,'2025-12-10','2026-03-09',3956,0,3847,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','14:18:02','','N','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','11:07:51',0,'','reception','2025-12-10 11:07:51','darshan','2025-12-10 14:18:02'),(5758,0,0,'O','N','2526',3308,0,'2025-12-10','0000-00-00',3397,0,3308,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','11:36:34','','','N','Y',NULL,'O','O','G02','','0000-00-00 00:00:00','2','11:09:23',0,'','reception','2025-12-10 11:09:23','darshan','2025-12-10 11:36:34'),(5759,0,0,'O','N','2526',520,0,'2025-12-10','0000-00-00',546,0,520,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','12:19:38','','','N','Y',NULL,'O','O','I01','','0000-00-00 00:00:00','2','11:11:26',0,'','reception','2025-12-10 11:11:26','darshan','2025-12-10 12:19:38'),(5760,0,0,'O','N','2526',3848,0,'2025-12-10','2026-03-09',3957,0,3848,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','13:22:39','','N','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','11:12:20',0,'','drashti','2025-12-10 11:12:20','darshan','2025-12-10 13:22:39'),(5761,0,0,'O','N','2526',3849,0,'2025-12-10','2026-03-09',3958,0,3849,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','11:49:08','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','2','11:14:16',0,'','reception','2025-12-10 11:14:16','darshan','2025-12-10 11:49:08'),(5762,0,0,'O','N','2526',3305,0,'2025-12-10','0000-00-00',3394,0,3305,'N','','N','','','','','N','D02','','N',119,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','11:24:16','','','N','Y',NULL,'O','O','Z26','','0000-00-00 00:00:00','3','11:16:29',0,'','drashti','2025-12-10 11:16:29','drpratapsinh','2025-12-10 11:24:16'),(5763,0,0,'O','N','2526',2738,0,'2025-12-10','0000-00-00',2808,0,2738,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','11:23:35','','','N','Y',NULL,'O','O','Z27','','0000-00-00 00:00:00','3','11:17:51',0,'','janvi','2025-12-10 11:17:51','drpratapsinh','2025-12-10 11:23:35'),(5764,0,0,'O','N','2526',3850,0,'2025-12-10','2026-03-09',3959,0,3850,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','11:52:21','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','3','11:28:24',0,'','drashti','2025-12-10 11:28:24','drpratapsinh','2025-12-10 11:52:21'),(5765,0,0,'O','N','2526',3851,0,'2025-12-10','2026-03-09',3960,0,3851,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','12:33:44','','','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','4','11:29:02',0,'','janvi','2025-12-10 11:29:02','drarchit','2025-12-10 12:33:44'),(5766,0,0,'O','N','2526',2294,0,'2025-12-10','0000-00-00',2351,0,2294,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','12:36:52','','','N','Y',NULL,'O','O','Z29','','0000-00-00 00:00:00','2','11:32:02',0,'','reception','2025-12-10 11:32:02','darshan','2025-12-10 12:36:52'),(5767,0,0,'O','N','2526',1261,0,'2025-12-10','0000-00-00',1302,0,1261,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','11:41:48','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','5','11:32:31',0,'','drashti','2025-12-10 11:32:31','drjayant','2025-12-10 11:41:48'),(5768,0,0,'O','N','2526',3852,0,'2025-12-10','2026-03-09',3961,0,3852,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','13:56:41','','N','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','11:36:49',0,'','reception','2025-12-10 11:36:49','darshan','2025-12-10 13:56:41'),(5769,0,0,'O','N','2526',3853,0,'2025-12-10','2026-03-09',3962,0,3853,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','12:33:57','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','4','11:37:15',0,'','janvi','2025-12-10 11:37:15','drarchit','2025-12-10 12:33:57'),(5770,0,0,'O','N','2526',1386,0,'2025-12-10','0000-00-00',1427,0,1386,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','17:16:09','','','N','Y',NULL,'O','O','Z31','','0000-00-00 00:00:00','2','11:39:38',0,'','reception','2025-12-10 11:39:38','darshan','2025-12-10 17:16:09'),(5771,0,0,'O','N','2526',3854,0,'2025-12-10','2026-03-09',3963,0,3854,'N','','N','','','NC','','N','D02','','N',275,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','18:14:12','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','3','11:39:59',0,'','drashti','2025-12-10 11:39:59','drpratapsinh','2025-12-10 18:14:12'),(5772,0,0,'O','N','2526',3855,0,'2025-12-10','2026-03-09',3964,0,3855,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','14:31:16','','N','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','2','11:42:32',0,'','reception','2025-12-10 11:42:32','darshan','2025-12-10 14:31:16'),(5773,0,0,'O','N','2526',3856,0,'2025-12-10','2026-03-09',3965,0,3856,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','12:29:52','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','5','11:46:18',0,'','reception','2025-12-10 11:46:18','drjayant','2025-12-10 12:29:52'),(5774,0,0,'O','N','2526',3857,0,'2025-12-10','2026-03-09',3966,0,3857,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','18:11:10','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','3','11:47:09',0,'','janvi','2025-12-10 11:47:09','drpratapsinh','2025-12-10 18:11:10'),(5775,0,0,'O','N','2526',3858,0,'2025-12-10','2026-03-09',3967,0,3858,'N','','N','','','','','N','D02','','N',223,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','18:10:04','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','3','11:50:31',0,'','janvi','2025-12-10 11:50:31','drpratapsinh','2025-12-10 18:10:04'),(5776,0,0,'O','N','2526',3859,0,'2025-12-10','2026-03-09',3968,0,3859,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','12:17:09','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','3','12:00:41',0,'','drashti','2025-12-10 12:00:41','drpratapsinh','2025-12-10 12:17:09'),(5777,0,0,'O','N','2526',3265,0,'2025-12-10','0000-00-00',3353,0,3265,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:01:00','0000-00-00','','','','N','12:01:00','12:08:31','','','N','Y',NULL,'O','O','Z37','','0000-00-00 00:00:00','6','12:01:04',0,'','manshi','2025-12-10 12:01:04','drsagar','2025-12-10 12:08:31'),(5778,0,0,'O','N','2526',3860,0,'2025-12-10','2026-03-09',3969,0,3860,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:07:00','0000-00-00','','','','N','12:07:00','12:14:26','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','6','12:07:27',0,'','manshi','2025-12-10 12:07:27','drsagar','2025-12-10 12:14:26'),(5779,0,0,'O','N','2526',3861,0,'2025-12-10','2026-03-09',3343,0,3861,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:07:00','0000-00-00','','','','N','12:07:00','12:32:12','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','4','12:07:39',0,'','reception','2025-12-10 12:07:39','drarchit','2025-12-10 12:32:12'),(5780,0,0,'O','N','2526',1226,0,'2025-12-10','0000-00-00',1267,0,1226,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:08:00','0000-00-00','','','','N','12:08:00','13:03:11','','','N','Y',NULL,'O','O','J01','','0000-00-00 00:00:00','2','12:08:40',0,'','reception','2025-12-10 12:08:39','darshan','2025-12-10 13:03:11'),(5781,0,0,'O','N','2526',3862,0,'2025-12-10','2026-03-09',3970,0,3862,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:08:00','0000-00-00','','','','N','12:08:00','00:00:00','','','N','N',NULL,'O','N','Z39','','0000-00-00 00:00:00','5','12:08:44',0,'','drashti','2025-12-10 12:08:44','','0000-00-00 00:00:00'),(5782,0,0,'O','N','2526',3516,0,'2025-12-10','0000-00-00',3617,0,3516,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:12:00','0000-00-00','','','','N','12:12:00','12:32:53','','','N','Y',NULL,'O','O','I04','','0000-00-00 00:00:00','4','12:12:08',0,'','drashti','2025-12-10 12:12:08','drarchit','2025-12-10 12:32:53'),(5783,0,0,'O','N','2526',193,0,'2025-12-10','0000-00-00',206,0,193,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:16:00','0000-00-00','','','','N','12:16:00','12:46:20','','','N','Y',NULL,'O','O','I05','','0000-00-00 00:00:00','2','12:16:59',0,'','reception','2025-12-10 12:16:59','darshan','2025-12-10 12:46:20'),(5784,0,0,'O','N','2526',3863,0,'2025-12-10','2026-03-09',3971,0,3863,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:20:00','0000-00-00','','','','N','12:20:00','13:51:56','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','2','12:20:32',0,'','drashti','2025-12-10 12:20:32','darshan','2025-12-10 13:51:56'),(5785,0,0,'O','N','2526',3864,0,'2025-12-10','2026-03-09',3972,0,3864,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:20:00','0000-00-00','','','','N','12:20:00','12:46:12','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','4','12:20:55',0,'','janvi','2025-12-10 12:20:55','drarchit','2025-12-10 12:46:12'),(5786,0,0,'O','N','2526',3865,0,'2025-12-10','2026-03-09',3973,0,3865,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:22:00','0000-00-00','','','','N','12:22:00','00:00:00','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','5','12:22:51',0,'','reception','2025-12-10 12:22:51','','0000-00-00 00:00:00'),(5787,0,0,'O','N','2526',3866,0,'2025-12-10','2026-03-09',3974,0,3866,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:26:00','0000-00-00','','','','N','12:26:00','18:28:54','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','4','12:26:39',0,'','drashti','2025-12-10 12:26:39','drarchit','2025-12-10 18:28:54'),(5788,0,0,'O','N','2526',3867,0,'2025-12-10','2026-03-09',3975,0,3867,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','14:28:40','','N','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','12:27:03',0,'','reception','2025-12-10 12:27:02','darshan','2025-12-10 14:28:40'),(5789,0,0,'O','N','2526',2240,0,'2025-12-10','0000-00-00',2296,0,2240,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','13:28:04','','','N','Y',NULL,'O','O','Z43','','0000-00-00 00:00:00','2','12:28:33',0,'','reception','2025-12-10 12:28:33','darshan','2025-12-10 13:28:04'),(5790,0,0,'O','N','2526',3868,0,'2025-12-10','2026-03-09',3976,0,3868,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','13:02:37','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','4','12:28:56',0,'','drashti','2025-12-10 12:28:56','drarchit','2025-12-10 13:02:37'),(5791,0,0,'I','N','2526',0,272,'2025-12-10','2026-03-09',3977,0,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:00:00','2025-12-11','','7','mo','N','13:00:00','16:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-10 12:56:33','riya','2025-12-11 16:09:24'),(5792,0,0,'O','N','2526',2740,0,'2025-12-10','0000-00-00',2810,0,2740,'N','','N','','','FV','','N','D06','','N',205,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:05:00','0000-00-00','','','','N','13:05:00','13:42:10','','','N','Y',NULL,'O','O','K01','','0000-00-00 00:00:00','2','13:06:02',0,'','reception','2025-12-10 13:06:02','darshan','2025-12-10 13:42:10'),(5793,0,0,'O','N','2526',3869,0,'2025-12-10','2026-03-09',3978,0,3869,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:27:00','0000-00-00','','','','N','13:27:00','19:00:19','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','3','13:28:10',0,'','janvi','2025-12-10 13:28:10','drpratapsinh','2025-12-10 19:00:19'),(5794,0,0,'O','N','2526',3870,0,'2025-12-10','2026-03-09',3979,0,3870,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:30:00','0000-00-00','','','','N','13:30:00','14:16:18','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','2','13:30:47',0,'','reception','2025-12-10 13:30:47','darshan','2025-12-10 14:16:18'),(5795,0,0,'O','N','2526',939,0,'2025-12-10','0000-00-00',970,0,939,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:44:00','0000-00-00','','','','N','13:44:00','14:34:24','','','N','Y',NULL,'O','O','Z47','','0000-00-00 00:00:00','2','13:44:38',0,'','reception','2025-12-10 13:44:38','darshan','2025-12-10 14:34:24'),(5796,0,0,'O','N','2526',3871,0,'2025-12-10','2026-03-09',3980,0,3871,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:27:00','0000-00-00','','','','N','14:27:00','14:41:37','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','2','14:27:17',0,'','reception','2025-12-10 14:27:17','darshan','2025-12-10 14:41:37'),(5797,0,0,'O','N','2526',3872,0,'2025-12-10','2026-03-09',3981,0,3872,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:53:00','0000-00-00','','','','N','14:53:00','00:00:00','','','N','N',NULL,'O','N','Z49','','0000-00-00 00:00:00','4','14:53:34',0,'','urvashi','2025-12-10 14:53:34','','0000-00-00 00:00:00'),(5798,0,0,'O','N','2526',3873,0,'2025-12-10','2026-03-09',3982,0,3873,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:58:00','0000-00-00','','','','N','14:58:00','00:00:00','','','N','N',NULL,'O','N','Z50','','0000-00-00 00:00:00','4','14:58:55',0,'','urvashi','2025-12-10 14:58:55','','0000-00-00 00:00:00'),(5799,0,0,'O','N','2526',3874,0,'2025-12-10','2026-03-09',3983,0,3874,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:12:00','0000-00-00','','','','N','16:12:00','18:54:32','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:12:36',0,'','reception','2025-12-10 16:12:36','darshan','2025-12-10 18:54:32'),(5800,0,0,'O','N','2526',524,0,'2025-12-10','0000-00-00',550,0,524,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:13:00','0000-00-00','','','','N','16:13:00','17:30:29','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','16:13:33',0,'','reception','2025-12-10 16:13:33','darshan','2025-12-10 17:30:29'),(5801,0,0,'O','N','2526',3875,0,'2025-12-10','2026-03-09',3984,0,3875,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:14:00','0000-00-00','','','','N','16:14:00','18:48:38','','N','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','2','16:14:08',0,'','urvashi','2025-12-10 16:14:08','darshan','2025-12-10 18:48:38'),(5802,0,0,'O','N','2526',1613,0,'2025-12-10','0000-00-00',1658,0,1613,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:24:00','0000-00-00','','','','N','16:24:00','17:11:25','','','N','Y',NULL,'O','O','L03','','0000-00-00 00:00:00','2','16:24:30',0,'','reception','2025-12-10 16:24:30','darshan','2025-12-10 17:11:25'),(5803,0,0,'O','N','2526',83,0,'2025-12-10','0000-00-00',94,0,83,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:30:00','0000-00-00','','','','N','16:30:00','17:40:24','','','N','Y',NULL,'O','O','Z52','','0000-00-00 00:00:00','2','16:30:59',0,'','urvashi','2025-12-10 16:30:59','darshan','2025-12-10 17:40:24'),(5804,0,0,'O','N','2526',1463,0,'2025-12-10','0000-00-00',1504,0,1463,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:33:00','0000-00-00','','','','N','16:33:00','17:43:36','','','N','Y',NULL,'O','O','Z53','','0000-00-00 00:00:00','2','16:33:38',0,'','reception','2025-12-10 16:33:38','darshan','2025-12-10 17:43:36'),(5805,0,0,'O','N','2526',74,0,'2025-12-10','0000-00-00',85,0,74,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:39:00','0000-00-00','','','','N','16:39:00','17:45:20','','','N','Y',NULL,'O','O','Z54','','0000-00-00 00:00:00','2','16:39:50',0,'','reception','2025-12-10 16:39:50','darshan','2025-12-10 17:45:20'),(5806,0,0,'O','N','2526',3876,0,'2025-12-10','2026-03-09',3985,0,3876,'N','','N','','','NV','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:53:00','0000-00-00','','','','N','16:53:00','18:07:16','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','3','16:53:51',0,'','reception','2025-12-10 16:53:51','drpratapsinh','2025-12-10 18:07:16'),(5807,0,0,'O','N','2526',1133,0,'2025-12-10','0000-00-00',1173,0,1133,'N','','N','','','FC','','N','D02','','N',11,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:55:00','0000-00-00','','','','N','16:55:00','18:08:43','','','N','Y',NULL,'O','O','Z56','','0000-00-00 00:00:00','3','16:55:38',0,'','reception','2025-12-10 16:55:38','drpratapsinh','2025-12-10 18:08:43'),(5808,0,0,'O','N','2526',3877,0,'2025-12-10','2026-03-09',3986,0,3877,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:57:00','0000-00-00','','','','N','16:57:00','00:00:00','','','N','N',NULL,'O','N','Z57','','0000-00-00 00:00:00','','00:00:00',0,'','manshi','2025-12-10 16:57:47','','0000-00-00 00:00:00'),(5809,0,0,'O','N','2526',3878,0,'2025-12-10','2026-03-09',3987,0,3878,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:58:00','0000-00-00','','','','N','16:58:00','18:16:29','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','3','16:58:02',0,'','reception','2025-12-10 16:58:02','drpratapsinh','2025-12-10 18:16:29'),(5810,0,0,'O','N','2526',3053,0,'2025-12-10','0000-00-00',3134,0,3053,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:03:00','0000-00-00','','','','N','17:03:00','18:15:48','','','N','Y',NULL,'O','O','Z59','','0000-00-00 00:00:00','3','17:03:39',0,'','priyanshi','2025-12-10 17:03:39','drpratapsinh','2025-12-10 18:15:48'),(5811,0,0,'O','N','2526',3879,0,'2025-12-10','2026-03-09',3988,0,3879,'N','','N','','','NC','','N','D27','','N',277,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:06:00','0000-00-00','','','','N','17:06:00','18:21:22','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','4','17:06:57',0,'','priyanshi','2025-12-10 17:06:57','drarchit','2025-12-10 18:21:22'),(5812,0,0,'O','N','2526',3880,0,'2025-12-10','2026-03-09',3989,0,3880,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:09:00','0000-00-00','','','','N','17:09:00','17:59:23','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','2','17:09:13',0,'','reception','2025-12-10 17:09:13','darshan','2025-12-10 17:59:23'),(5813,0,0,'O','N','2526',3881,0,'2025-12-10','2026-03-09',3990,0,3881,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:15:00','0000-00-00','','','','N','17:15:00','18:25:38','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','4','17:15:56',0,'','priyanshi','2025-12-10 17:15:56','drarchit','2025-12-10 18:25:38'),(5814,0,0,'O','N','2526',3210,0,'2025-12-10','0000-00-00',3297,0,3210,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:17:00','0000-00-00','','','','N','17:17:00','18:03:24','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','17:17:39',0,'','reception','2025-12-10 17:17:39','darshan','2025-12-10 18:03:24'),(5815,0,0,'O','N','2526',3882,0,'2025-12-10','2026-03-09',3991,0,3882,'N','','N','','','FC              ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:22:00','0000-00-00','','','','N','17:22:00','18:28:42','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','4','17:22:22',0,'','priyanshi','2025-12-10 17:22:22','drarchit','2025-12-10 18:28:42'),(5816,0,0,'O','N','2526',3883,0,'2025-12-10','2026-03-09',3992,0,3883,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','17:50:45','','','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:28:00',0,'','reception','2025-12-10 17:28:00','darshan','2025-12-10 17:50:45'),(5817,0,0,'O','N','2526',3884,0,'2025-12-10','2026-03-09',3993,0,3884,'N','','N','','','NV','','N','D06','','N',278,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:35:00','0000-00-00','','','','N','17:35:00','19:15:30','','N','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','2','17:35:49',0,'','reception','2025-12-10 17:35:49','darshan','2025-12-10 19:15:30'),(5818,0,0,'O','N','2526',1587,0,'2025-12-10','0000-00-00',1631,0,1587,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','18:34:34','','N','N','Y',NULL,'O','O','L07','','0000-00-00 00:00:00','4','17:50:59',0,'','priyanshi','2025-12-10 17:50:59','drarchit','2025-12-10 18:34:34'),(5819,0,0,'O','N','2526',3885,0,'2025-12-10','2026-03-09',3994,0,3885,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:54:00','0000-00-00','','','','N','17:54:00','18:41:15','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','4','17:54:12',0,'','priyanshi','2025-12-10 17:54:12','drarchit','2025-12-10 18:41:15'),(5820,0,0,'O','N','2526',3886,0,'2025-12-10','2026-03-09',3995,0,3886,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','19:48:45','','N','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','17:57:44',0,'','reception','2025-12-10 17:57:44','darshan','2025-12-10 19:48:45'),(5821,0,0,'O','N','2526',3887,0,'2025-12-10','2026-03-09',3996,0,3887,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','18:24:16','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','3','17:59:39',0,'','janvi','2025-12-10 17:59:39','drpratapsinh','2025-12-10 18:24:16'),(5822,0,0,'O','N','2526',994,0,'2025-12-10','0000-00-00',1026,0,994,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:00:00','0000-00-00','','','','N','18:00:00','18:33:20','','','N','Y',NULL,'O','O','L10','','0000-00-00 00:00:00','2','18:00:22',0,'','reception','2025-12-10 18:00:22','darshan','2025-12-10 18:33:20'),(5823,0,0,'O','N','2526',3888,0,'2025-12-10','2026-03-09',3997,0,3888,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:01:00','0000-00-00','','','','N','18:01:00','18:45:58','','','N','Y',NULL,'O','N','Z65','','0000-00-00 00:00:00','5','18:01:09',0,'','priyanshi','2025-12-10 18:01:09','drjayant','2025-12-11 18:45:58'),(5824,0,0,'O','N','2526',1864,0,'2025-12-10','0000-00-00',1909,0,1864,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:01:00','0000-00-00','','','','N','18:01:00','18:42:31','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','2','18:01:33',0,'','reception','2025-12-10 18:01:32','darshan','2025-12-10 18:42:31'),(5825,0,0,'O','N','2526',3889,0,'2025-12-10','2026-03-09',3998,0,3889,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','18:56:21','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','4','18:02:45',0,'','janvi','2025-12-10 18:02:45','drarchit','2025-12-10 18:56:21'),(5826,0,0,'O','N','2526',2444,0,'2025-12-10','0000-00-00',2501,0,2444,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','18:48:30','','','N','Y',NULL,'O','O','L12','','0000-00-00 00:00:00','4','18:16:08',0,'','reception','2025-12-10 18:16:08','drarchit','2025-12-10 18:48:30'),(5827,0,0,'O','N','2526',2484,0,'2025-12-10','0000-00-00',2542,0,2484,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','19:01:10','','','N','Y',NULL,'O','O','L13','','0000-00-00 00:00:00','2','18:29:04',0,'','reception','2025-12-10 18:29:04','darshan','2025-12-10 19:01:10'),(5828,0,0,'O','N','2526',2279,0,'2025-12-10','0000-00-00',2336,0,2279,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','19:03:45','','','N','Y',NULL,'O','O','Z67','','0000-00-00 00:00:00','4','18:32:17',0,'','priyanshi','2025-12-10 18:32:17','drarchit','2025-12-10 19:03:45'),(5829,0,0,'O','N','2526',3890,0,'2025-12-10','2026-03-09',3999,0,3890,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','19:10:24','','','N','Y',NULL,'O','N','Z68','','0000-00-00 00:00:00','6','18:34:56',0,'','manshi','2025-12-10 18:34:56','drsagar','2025-12-10 19:10:24'),(5830,0,0,'O','N','2526',3891,0,'2025-12-10','2026-03-09',4000,0,3891,'N','','N','','','NV','','N','D06','','N',279,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','18:11:42','','','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','2','18:34:58',0,'','reception','2025-12-10 18:34:58','darshan','2025-12-11 18:11:42'),(5831,0,0,'I','N','2526',0,273,'2025-12-10','2026-03-09',4001,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','2025-12-13','','1','mo','N','18:30:00','14:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-10 18:37:51','mo','2025-12-16 13:30:18'),(5832,0,0,'O','N','2526',3892,0,'2025-12-10','2026-03-09',4002,0,3892,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:39:00','0000-00-00','','','','N','18:39:00','13:18:30','','','N','Y',NULL,'O','N','Z70','','0000-00-00 00:00:00','5','18:39:13',0,'','priyanshi','2025-12-10 18:39:13','drjayant','2025-12-11 13:18:30'),(5833,0,0,'O','N','2526',1796,0,'2025-12-10','0000-00-00',1841,0,1796,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:47:00','0000-00-00','','','','N','18:47:00','19:48:26','','','N','Y',NULL,'O','O','Z71','','0000-00-00 00:00:00','2','18:47:17',0,'','reception','2025-12-10 18:47:17','darshan','2025-12-10 19:48:26'),(5834,0,0,'O','N','2526',3893,0,'2025-12-10','2026-03-09',4003,0,3893,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:14:07','','','N','Y',NULL,'O','N','Z72','','0000-00-00 00:00:00','4','18:51:11',0,'','priyanshi','2025-12-10 18:51:11','drarchit','2025-12-10 19:14:07'),(5835,0,0,'O','N','2526',1531,0,'2025-12-10','0000-00-00',1572,0,1531,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:53:00','0000-00-00','','','','N','18:53:00','19:21:05','','','N','Y',NULL,'O','O','L14','','0000-00-00 00:00:00','2','18:53:44',0,'','reception','2025-12-10 18:53:44','darshan','2025-12-10 19:21:05'),(5836,0,0,'O','N','2526',3894,0,'2025-12-10','2026-03-09',4004,0,3894,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','19:06:07','','','N','Y',NULL,'O','N','Z73','','0000-00-00 00:00:00','3','18:57:09',0,'','janvi','2025-12-10 18:57:09','drpratapsinh','2025-12-10 19:06:07'),(5837,0,0,'O','N','2526',3895,0,'2025-12-10','2026-03-09',4005,0,3895,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:06:00','0000-00-00','','','','N','19:06:00','00:00:00','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','6','19:06:14',0,'','manshi','2025-12-10 19:06:14','','0000-00-00 00:00:00'),(5838,0,0,'O','N','2526',2636,0,'2025-12-10','0000-00-00',2706,0,2636,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:14:00','0000-00-00','','','','N','19:14:00','20:22:10','','','N','Y',NULL,'O','O','L15','','0000-00-00 00:00:00','4','19:14:21',0,'','priyanshi','2025-12-10 19:14:21','drarchit','2025-12-10 20:22:10'),(5839,0,0,'O','N','2526',3896,0,'2025-12-10','2026-03-09',4006,0,3896,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:16:00','0000-00-00','','','','N','19:16:00','19:57:03','','N','N','Y',NULL,'O','N','Z75','','0000-00-00 00:00:00','2','19:16:03',0,'','reception','2025-12-10 19:16:03','darshan','2025-12-10 19:57:03'),(5840,0,0,'O','N','2526',3538,0,'2025-12-10','0000-00-00',3640,0,3538,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:22:00','0000-00-00','','','','N','19:22:00','00:00:00','','','N','N',NULL,'O','O','Z76','','0000-00-00 00:00:00','3','19:23:16',0,'','janvi','2025-12-10 19:23:16','','0000-00-00 00:00:00'),(5841,0,0,'O','N','2526',2930,0,'2025-12-10','0000-00-00',3007,0,2930,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:29:00','0000-00-00','','','','N','19:29:00','00:00:00','','','N','N',NULL,'O','O','Z77','','0000-00-00 00:00:00','3','19:29:42',0,'','janvi','2025-12-10 19:29:42','','0000-00-00 00:00:00'),(5842,0,0,'O','N','2526',3897,0,'2025-12-10','2026-03-09',3543,0,3897,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:31:00','0000-00-00','','','','N','19:31:00','19:46:57','','','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','4','19:39:02',0,'','janvi','2025-12-10 19:31:26','drarchit','2025-12-10 19:46:57'),(5843,0,0,'O','N','2526',3898,0,'2025-12-10','2026-03-09',3440,0,3898,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:31:00','0000-00-00','','','','N','19:31:00','20:14:38','','N','N','Y',NULL,'O','N','Z78','','0000-00-00 00:00:00','4','19:39:02',0,'','shweta','2025-12-10 19:31:53','drarchit','2025-12-10 20:14:38'),(5844,0,0,'O','N','2526',3899,0,'2025-12-10','2026-03-09',4007,0,3899,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:33:00','0000-00-00','','','','N','19:33:00','20:17:32','','','N','Y',NULL,'O','N','Z79','','0000-00-00 00:00:00','4','19:39:02',0,'','shweta','2025-12-10 19:33:25','drarchit','2025-12-10 20:17:32'),(5845,0,0,'O','N','2526',3900,0,'2025-12-10','2026-03-09',4008,0,3900,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:37:00','0000-00-00','','','','N','19:37:00','00:00:00','','','N','N',NULL,'O','N','Z80','','0000-00-00 00:00:00','3','19:37:56',0,'','janvi','2025-12-10 19:37:56','','0000-00-00 00:00:00'),(5846,0,0,'O','N','2526',3901,0,'2025-12-10','2026-03-09',4009,0,3901,'N','','N','','','','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:09:00','0000-00-00','','','','N','20:09:00','20:25:41','','','N','Y',NULL,'O','N','Z81','','0000-00-00 00:00:00','4','20:09:37',0,'','shweta','2025-12-10 20:09:37','drarchit','2025-12-10 20:25:41'),(5847,0,0,'O','N','2526',3310,0,'2025-12-10','0000-00-00',3399,0,3310,'N','','N','','','','Y','N','D02','','N',90,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:16:00','0000-00-00','','','','N','20:16:00','00:00:00','','','N','N',NULL,'O','O','Z82','','0000-00-00 00:00:00','3','20:16:33',0,'','shweta','2025-12-10 20:16:33','','0000-00-00 00:00:00'),(5848,0,0,'I','N','2526',0,274,'2025-12-10','2026-03-09',4010,0,0,'N','','N','','','','N','N','D02','','N',0,'','78',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','22:15:00','2025-12-15','','1','mo','N','22:15:00','16:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-10 22:51:18','mo','2025-12-15 17:14:51'),(5849,0,0,'O','N','2526',3902,0,'2025-12-11','2026-03-10',4011,0,3902,'N','','N','','','ER','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:38:00','0000-00-00','','','','N','08:38:00','00:00:00','','','N','N',NULL,'O','N','Z01','','0000-00-00 00:00:00','3','08:38:55',0,'','reception','2025-12-11 08:38:55','','0000-00-00 00:00:00'),(5850,0,0,'O','N','2526',3903,0,'2025-12-11','2026-03-10',4012,0,3903,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','0000-00-00','','','','N','10:00:00','11:24:27','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','5','11:11:57',0,'','drashti','2025-12-11 10:00:40','drjayant','2025-12-11 11:24:27'),(5851,0,0,'O','N','2526',3904,0,'2025-12-11','2026-03-10',4013,0,3904,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:18:00','0000-00-00','','','','N','10:18:00','00:00:00','','','N','N',NULL,'O','N','Z03','','0000-00-00 00:00:00','3','10:19:15',0,'','janvi','2025-12-11 10:19:15','','0000-00-00 00:00:00'),(5852,0,0,'O','N','2526',1118,0,'2025-12-11','0000-00-00',1159,0,1118,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:21:00','0000-00-00','','','','N','10:21:00','10:49:18','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','2','10:21:01',0,'','drashti','2025-12-11 10:21:01','darshan','2025-12-11 10:49:18'),(5853,0,0,'O','N','2526',3905,0,'2025-12-11','2026-03-10',4014,0,3905,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:22:00','0000-00-00','','','','N','10:22:00','11:05:11','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:22:35',0,'','janvi','2025-12-11 10:22:35','darshan','2025-12-11 11:05:11'),(5854,0,0,'O','N','2526',3906,0,'2025-12-11','2026-03-10',4015,0,3906,'N','','N','','','NV','','N','D06','','N',280,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:31:00','0000-00-00','','','','N','10:31:00','12:27:03','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:31:47',0,'','reception','2025-12-11 10:31:47','darshan','2025-12-11 12:27:03'),(5855,0,0,'O','N','2526',3693,0,'2025-12-11','0000-00-00',3798,0,3693,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:32:00','0000-00-00','','','','N','10:32:00','11:54:02','','','N','Y',NULL,'O','O','Z04','','0000-00-00 00:00:00','4','10:33:03',0,'','janvi','2025-12-11 10:33:03','drarchit','2025-12-11 11:54:02'),(5856,0,0,'O','N','2526',3907,0,'2025-12-11','2026-03-10',4016,0,3907,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:36:00','0000-00-00','','','','N','10:36:00','13:25:15','','N','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','10:36:33',0,'','reception','2025-12-11 10:36:32','darshan','2025-12-11 13:25:15'),(5857,0,0,'O','N','2526',3908,0,'2025-12-11','2026-03-10',4017,0,3908,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:45:00','0000-00-00','','','','N','10:45:00','11:33:31','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','2','10:45:07',0,'','reception','2025-12-11 10:45:07','darshan','2025-12-11 11:33:31'),(5858,0,0,'O','N','2526',1784,0,'2025-12-11','0000-00-00',1829,0,1784,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:47:00','0000-00-00','','','','N','10:47:00','11:41:14','','','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','2','10:47:06',0,'','reception','2025-12-11 10:47:06','darshan','2025-12-11 11:41:14'),(5859,0,0,'O','N','2526',2220,0,'2025-12-11','0000-00-00',2276,0,2220,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','11:15:25','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','6','10:51:58',0,'','manshi','2025-12-11 10:51:58','drsagar','2025-12-11 11:15:25'),(5860,0,0,'O','N','2526',3909,0,'2025-12-11','2026-03-10',4018,0,3909,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','11:29:38','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','5','11:11:57',0,'','drashti','2025-12-11 10:53:38','drjayant','2025-12-11 11:29:38'),(5861,0,0,'O','N','2526',3910,0,'2025-12-11','2026-03-10',4019,0,3910,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','11:50:59','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','2','10:57:37',0,'','reception','2025-12-11 10:57:37','darshan','2025-12-11 11:50:59'),(5862,0,0,'O','N','2526',2639,0,'2025-12-11','0000-00-00',2709,0,2639,'N','','N','','','FV','','N','D06','','N',197,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','12:00:41','','','N','Y',NULL,'O','O','Z10','','0000-00-00 00:00:00','2','10:58:38',0,'','reception','2025-12-11 10:58:38','darshan','2025-12-11 12:00:41'),(5863,0,0,'O','N','2526',2782,0,'2025-12-11','0000-00-00',2851,0,2782,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','11:25:55','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:59:20',0,'','reception','2025-12-11 10:59:20','darshan','2025-12-11 11:25:55'),(5864,0,0,'O','N','2526',3231,0,'2025-12-11','0000-00-00',2893,0,3231,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','11:58:31','','','N','Y',NULL,'O','O','H03','','0000-00-00 00:00:00','4','11:01:45',0,'','reception','2025-12-11 11:01:45','drarchit','2025-12-11 11:58:31'),(5865,0,0,'O','N','2526',2218,0,'2025-12-11','0000-00-00',2274,0,2218,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','11:46:53','','','N','Y',NULL,'O','O','G02','','0000-00-00 00:00:00','2','11:02:40',0,'','reception','2025-12-11 11:02:40','darshan','2025-12-11 11:46:53'),(5866,0,0,'O','N','2526',3500,0,'2025-12-11','0000-00-00',3602,0,3500,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','12:24:18','','','N','Y',NULL,'O','O','Z11','','0000-00-00 00:00:00','2','11:08:34',0,'','reception','2025-12-11 11:08:34','darshan','2025-12-11 12:24:18'),(5867,0,0,'O','N','2526',3911,0,'2025-12-11','2026-03-10',4020,0,3911,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','11:35:17','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','6','11:15:36',0,'','manshi','2025-12-11 11:15:36','drsagar','2025-12-11 11:35:17'),(5868,0,0,'O','N','2526',3382,0,'2025-12-11','0000-00-00',3477,0,3382,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','11:46:54','','','N','Y',NULL,'O','O','H04','','0000-00-00 00:00:00','4','11:18:30',0,'','drashti','2025-12-11 11:18:30','drarchit','2025-12-11 11:46:54'),(5869,0,0,'O','N','2526',3912,0,'2025-12-11','2026-03-10',4021,0,3912,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','11:44:16','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','4','11:21:00',0,'','janvi','2025-12-11 11:21:00','drarchit','2025-12-11 11:44:16'),(5870,0,0,'O','N','2526',1530,0,'2025-12-11','0000-00-00',1571,0,1530,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','12:55:05','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','2','11:21:30',0,'','drashti','2025-12-11 11:21:30','darshan','2025-12-11 12:55:05'),(5871,0,0,'O','N','2526',3913,0,'2025-12-11','2026-03-10',3583,0,3913,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:22:00','0000-00-00','','','','N','11:22:00','11:39:05','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','5','11:22:55',0,'','drashti','2025-12-11 11:22:55','drjayant','2025-12-11 11:39:05'),(5872,0,0,'O','N','2526',2118,0,'2025-12-11','0000-00-00',1763,0,2118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','00:00:00','','','N','N',NULL,'O','O','Z15','','0000-00-00 00:00:00','3','11:24:43',0,'','janvi','2025-12-11 11:24:43','','0000-00-00 00:00:00'),(5873,0,0,'O','N','2526',3914,0,'2025-12-11','2026-03-10',4022,0,3914,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','19:43:32','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','4','11:26:09',0,'','drashti','2025-12-11 11:26:09','drarchit','2025-12-11 19:43:32'),(5874,0,0,'O','N','2526',3915,0,'2025-12-11','2026-03-10',4023,0,3915,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','14:14:57','','N','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','2','11:27:11',0,'','reception','2025-12-11 11:27:11','darshan','2025-12-11 14:14:57'),(5875,0,0,'O','N','2526',3306,0,'2025-12-11','0000-00-00',3395,0,3306,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','11:56:33','','','N','Y',NULL,'O','O','H05','','0000-00-00 00:00:00','2','11:33:11',0,'','reception','2025-12-11 11:33:11','darshan','2025-12-11 11:56:33'),(5876,0,0,'O','N','2526',3916,0,'2025-12-11','2026-03-10',4024,0,3916,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','19:20:38','','N','N','Y',NULL,'O','N','H06','','0000-00-00 00:00:00','4','11:36:02',0,'','drashti','2025-12-11 11:36:02','drarchit','2025-12-11 19:20:38'),(5877,0,0,'O','N','2526',185,0,'2025-12-11','0000-00-00',198,0,185,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','12:20:12','','','N','Y',NULL,'O','O','I01','','0000-00-00 00:00:00','2','11:40:16',0,'','reception','2025-12-11 11:40:16','darshan','2025-12-11 12:20:12'),(5878,0,0,'O','N','2526',3917,0,'2025-12-11','2026-03-10',4025,0,3917,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','12:38:43','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','2','11:41:48',0,'','reception','2025-12-11 11:41:48','darshan','2025-12-11 12:38:43'),(5879,0,0,'O','N','2526',3918,0,'2025-12-11','2026-03-10',4026,0,3918,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','12:12:50','','','N','Y',NULL,'O','N','H07','','0000-00-00 00:00:00','2','11:43:12',0,'','reception','2025-12-11 11:43:12','darshan','2025-12-11 12:12:50'),(5880,0,0,'O','N','2526',629,0,'2025-12-11','0000-00-00',659,0,629,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','13:21:06','','','N','Y',NULL,'O','O','H08','','0000-00-00 00:00:00','2','11:44:04',0,'','drashti','2025-12-11 11:44:04','darshan','2025-12-11 13:21:06'),(5881,0,0,'O','N','2526',3919,0,'2025-12-11','2026-03-10',4027,0,3919,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:49:00','0000-00-00','','','','N','11:49:00','18:18:24','','','N','Y',NULL,'O','N','Z18','','0000-00-00 00:00:00','6','11:49:22',0,'','manshi','2025-12-11 11:49:22','drsagar','2025-12-11 18:18:24'),(5882,0,0,'O','N','2526',3920,0,'2025-12-11','2026-03-10',4028,0,3920,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:49:00','0000-00-00','','','','N','11:49:00','12:33:04','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','5','11:49:40',0,'','reception','2025-12-11 11:49:39','drjayant','2025-12-11 12:33:04'),(5883,0,0,'O','N','2526',2738,0,'2025-12-11','0000-00-00',2808,0,2738,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','00:00:00','','','N','N',NULL,'O','O','Z20','','0000-00-00 00:00:00','3','11:54:23',0,'','drashti','2025-12-11 11:54:23','','0000-00-00 00:00:00'),(5884,0,0,'O','N','2526',3037,0,'2025-12-11','0000-00-00',3118,0,3037,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','12:07:29','','','N','Y',NULL,'O','O','I03','','0000-00-00 00:00:00','4','12:02:09',0,'','drashti','2025-12-11 12:02:09','drarchit','2025-12-11 12:07:29'),(5885,0,0,'O','N','2526',3921,0,'2025-12-11','2026-03-10',4029,0,3921,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:04:00','0000-00-00','','','','N','12:04:00','12:10:26','','','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','4','12:04:31',0,'','drashti','2025-12-11 12:04:31','drarchit','2025-12-11 12:10:26'),(5886,0,0,'O','N','2526',3922,0,'2025-12-11','2026-03-10',4030,0,3922,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:07:00','0000-00-00','','','','N','12:07:00','12:52:49','','N','N','Y',NULL,'O','N','I05','','0000-00-00 00:00:00','4','12:07:24',0,'','drashti','2025-12-11 12:07:24','drarchit','2025-12-11 12:52:49'),(5887,0,0,'O','N','2526',3923,0,'2025-12-11','2026-03-10',4031,0,3923,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','18:21:15','','N','N','Y',NULL,'O','N','I06','','0000-00-00 00:00:00','2','12:09:14',0,'','reception','2025-12-11 12:09:14','darshan','2025-12-11 18:21:15'),(5888,0,0,'O','N','2526',3924,0,'2025-12-11','2026-03-10',4032,0,3924,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:17:00','0000-00-00','','','','N','12:17:00','19:00:34','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','5','12:17:01',0,'','drashti','2025-12-11 12:17:01','drjayant','2025-12-12 19:00:34'),(5889,0,0,'O','N','2526',3605,0,'2025-12-11','0000-00-00',3705,0,3605,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:16:00','0000-00-00','','','','N','12:16:00','00:00:00','','','N','N',NULL,'O','O','Z22','','0000-00-00 00:00:00','3','12:17:19',0,'','janvi','2025-12-11 12:17:19','','0000-00-00 00:00:00'),(5890,0,0,'O','N','2526',3925,0,'2025-12-11','2026-03-10',4033,0,3925,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:19:00','0000-00-00','','','','N','12:19:00','12:40:10','','','N','Y',NULL,'O','N','I07','','0000-00-00 00:00:00','4','12:19:07',0,'','reception','2025-12-11 12:19:07','drarchit','2025-12-11 12:40:10'),(5891,0,0,'O','N','2526',3926,0,'2025-12-11','2026-03-10',4034,0,3926,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:24:00','0000-00-00','','','','N','12:24:00','13:18:48','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','5','12:24:39',0,'','janvi','2025-12-11 12:24:39','drjayant','2025-12-11 13:18:48'),(5892,0,0,'O','N','2526',3927,0,'2025-12-11','2026-03-10',4035,0,3927,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:29:00','0000-00-00','','','','N','12:29:00','12:34:45','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','4','12:29:23',0,'','drashti','2025-12-11 12:29:23','drarchit','2025-12-11 12:34:45'),(5893,0,0,'O','N','2526',399,0,'2025-12-11','0000-00-00',421,0,399,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:34:00','0000-00-00','','','','N','12:34:00','12:44:47','','','N','Y',NULL,'O','O','J01','','0000-00-00 00:00:00','4','12:34:15',0,'','drashti','2025-12-11 12:34:15','drarchit','2025-12-11 12:44:47'),(5894,0,0,'O','N','2526',3069,0,'2025-12-11','0000-00-00',3155,0,3069,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','18:19:58','','','N','Y',NULL,'O','O','J02','','0000-00-00 00:00:00','4','12:35:50',0,'','drashti','2025-12-11 12:35:50','drarchit','2025-12-11 18:19:58'),(5895,0,0,'O','N','2526',3928,0,'2025-12-11','2026-03-10',4036,0,3928,'N','','N','','','RNE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:36:00','0000-00-00','','','','N','12:36:00','13:49:01','','N','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','2','12:36:11',0,'','reception','2025-12-11 12:36:11','darshan','2025-12-11 13:49:01'),(5896,0,0,'O','N','2526',3305,0,'2025-12-11','0000-00-00',3394,0,3305,'N','','N','','','DRESSING','','N','D02','','N',119,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:38:00','0000-00-00','','','','N','12:38:00','00:00:00','','','N','N',NULL,'O','O','Z25','','0000-00-00 00:00:00','3','12:38:54',0,'','reception','2025-12-11 12:38:54','','0000-00-00 00:00:00'),(5897,0,0,'O','N','2526',3929,0,'2025-12-11','2026-03-10',4037,0,3929,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:43:00','0000-00-00','','','','N','12:43:00','13:08:33','','N','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','4','12:43:33',0,'','drashti','2025-12-11 12:43:33','drarchit','2025-12-11 13:08:33'),(5898,0,0,'O','N','2526',3673,0,'2025-12-11','0000-00-00',3777,0,3673,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:43:00','0000-00-00','','','','N','12:43:00','18:18:05','','','N','Y',NULL,'O','O','Z27','','0000-00-00 00:00:00','6','12:43:57',0,'','manshi','2025-12-11 12:43:57','drsagar','2025-12-11 18:18:05'),(5899,0,0,'O','N','2526',1369,0,'2025-12-11','0000-00-00',1409,0,1369,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:44:00','0000-00-00','','','','N','12:44:00','13:36:26','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','2','12:45:00',0,'','reception','2025-12-11 12:45:00','darshan','2025-12-11 13:36:26'),(5900,0,0,'O','N','2526',3930,0,'2025-12-11','2026-03-10',4038,0,3930,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:45:00','0000-00-00','','','','N','12:45:00','12:59:39','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','4','12:45:40',0,'','drashti','2025-12-11 12:45:40','drarchit','2025-12-11 12:59:39'),(5901,0,0,'O','N','2526',3931,0,'2025-12-11','2026-03-10',4039,0,3931,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:47:00','0000-00-00','','','','N','12:47:00','14:11:50','','N','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','2','12:47:27',0,'','reception','2025-12-11 12:47:27','darshan','2025-12-11 14:11:50'),(5902,0,0,'O','N','2526',3932,0,'2025-12-11','2026-03-10',4040,0,3932,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:54:00','0000-00-00','','','','N','12:54:00','13:23:58','','','N','Y',NULL,'O','N','J04','','0000-00-00 00:00:00','2','12:54:37',0,'','reception','2025-12-11 12:54:37','darshan','2025-12-11 13:23:58'),(5903,0,0,'O','N','2526',1235,0,'2025-12-11','0000-00-00',1276,0,1235,'N','','N','','','FOLLOWUP C','','N','D27','','N',55,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:10:00','0000-00-00','','','','N','13:10:00','18:38:01','','','N','Y',NULL,'O','O','Z31','','0000-00-00 00:00:00','4','18:37:48',0,'','drashti','2025-12-11 13:10:44','drarchit','2025-12-11 18:38:01'),(5904,0,0,'O','N','2526',3933,0,'2025-12-11','2026-03-10',4041,0,3933,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:11:00','0000-00-00','','','','N','13:11:00','19:36:29','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','5','13:11:38',0,'','janvi','2025-12-11 13:11:38','drjayant','2025-12-11 19:36:29'),(5905,0,0,'O','N','2526',3934,0,'2025-12-11','2026-03-10',4042,0,3934,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:19:00','0000-00-00','','','','N','13:19:00','19:31:03','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','5','13:19:27',0,'','drashti','2025-12-11 13:19:27','drjayant','2025-12-11 19:31:03'),(5906,0,0,'O','N','2526',3935,0,'2025-12-11','2026-03-10',4043,0,3935,'N','','N','','','ER','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','14:17:00','0000-00-00','','','','N','14:17:00','18:18:50','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','6','14:17:22',0,'','reception','2025-12-11 14:17:22','drsagar','2025-12-11 18:18:50'),(5907,0,0,'O','N','2526',3936,0,'2025-12-11','2026-03-10',4044,0,3936,'N','','N','','','NV','','N','D06','','N',257,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:02:00','0000-00-00','','','','N','16:02:00','19:24:19','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:02:35',0,'','reception','2025-12-11 16:02:35','darshan','2025-12-11 19:24:19'),(5908,0,0,'O','N','2526',3937,0,'2025-12-11','2026-03-10',4045,0,3937,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:07:00','0000-00-00','','','','N','16:07:00','17:07:34','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','2','16:07:42',0,'','reception','2025-12-11 16:07:42','darshan','2025-12-11 17:07:34'),(5909,0,0,'O','N','2526',3938,0,'2025-12-11','2026-03-10',4046,0,3938,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:33:00','0000-00-00','','','','N','16:33:00','19:39:45','','N','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:33:17',0,'','reception','2025-12-11 16:33:17','darshan','2025-12-11 19:39:45'),(5910,0,0,'O','N','2526',1286,0,'2025-12-11','0000-00-00',1325,0,1286,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:37:00','0000-00-00','','','','N','16:37:00','17:45:05','','','N','Y',NULL,'O','O','L03','','0000-00-00 00:00:00','2','16:37:56',0,'','reception','2025-12-11 16:37:56','darshan','2025-12-11 17:45:05'),(5911,0,0,'O','N','2526',3939,0,'2025-12-11','2026-03-10',4047,0,3939,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:39:00','0000-00-00','','','','N','16:39:00','17:50:34','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','16:39:20',0,'','reception','2025-12-11 16:39:20','darshan','2025-12-11 17:50:34'),(5912,0,0,'O','N','2526',3891,0,'2025-12-11','0000-00-00',4000,0,3891,'N','','N','','','REPORTS','','N','D06','','N',279,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:43:00','0000-00-00','','','','N','16:43:00','18:14:15','','N','N','Y',NULL,'O','O','Z36','','0000-00-00 00:00:00','2','16:43:09',0,'','reception','2025-12-11 16:43:09','darshan','2025-12-11 18:14:15'),(5913,0,0,'O','N','2526',3940,0,'2025-12-11','2026-03-10',4048,0,3940,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:45:00','0000-00-00','','','','N','16:45:00','19:35:59','','N','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','16:45:01',0,'','drashti','2025-12-11 16:45:01','darshan','2025-12-11 19:35:59'),(5914,0,0,'O','N','2526',3923,0,'2025-12-11','0000-00-00',4031,0,3923,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:56:00','0000-00-00','','','','N','16:56:00','18:57:04','','N','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','2','16:56:45',0,'','reception','2025-12-11 16:56:45','darshan','2025-12-11 18:57:04'),(5915,0,0,'O','N','2526',2670,0,'2025-12-11','0000-00-00',2739,0,2670,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:00:00','0000-00-00','','','','N','17:00:00','17:59:59','','','N','Y',NULL,'O','O','Z37','','0000-00-00 00:00:00','2','17:00:09',0,'','reception','2025-12-11 17:00:09','darshan','2025-12-11 17:59:59'),(5916,0,0,'O','N','2526',3941,0,'2025-12-11','2026-03-10',4049,0,3941,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:03:00','0000-00-00','','','','N','17:03:00','18:31:24','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','6','17:03:43',0,'','manshi','2025-12-11 17:03:43','drsagar','2025-12-11 18:31:24'),(5917,0,0,'O','N','2526',3347,0,'2025-12-11','0000-00-00',3442,0,3347,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:19:00','0000-00-00','','','','N','17:19:00','11:57:26','','','N','Y',NULL,'O','O','L06','','0000-00-00 00:00:00','2','17:19:11',0,'','reception','2025-12-11 17:19:11','darshan','2025-12-12 11:57:26'),(5918,0,0,'O','N','2526',3942,0,'2025-12-11','2026-03-10',4050,0,3942,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:24:00','0000-00-00','','','','N','17:24:00','18:17:52','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','6','17:24:55',0,'','manshi','2025-12-11 17:24:55','drsagar','2025-12-11 18:17:52'),(5919,0,0,'O','N','2526',3317,0,'2025-12-11','0000-00-00',3409,0,3317,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:29:00','0000-00-00','','','','N','17:29:00','18:03:32','','','N','Y',NULL,'O','O','L07','','0000-00-00 00:00:00','2','17:29:16',0,'','reception','2025-12-11 17:29:16','darshan','2025-12-11 18:03:32'),(5920,0,0,'O','N','2526',3943,0,'2025-12-11','2026-03-10',4051,0,3943,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:38:00','0000-00-00','','','','N','17:38:00','18:26:25','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','6','17:38:20',0,'','manshi','2025-12-11 17:38:20','drsagar','2025-12-11 18:26:25'),(5921,0,0,'O','N','2526',3310,0,'2025-12-11','0000-00-00',3399,0,3310,'N','','N','','','','','N','D02','','N',90,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:45:00','0000-00-00','','','','N','17:45:00','00:00:00','','','N','N',NULL,'O','O','Z41','','0000-00-00 00:00:00','3','17:45:25',0,'','janvi','2025-12-11 17:45:25','','0000-00-00 00:00:00'),(5922,0,0,'O','N','2526',3944,0,'2025-12-11','2026-03-10',4052,0,3944,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','18:32:40','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','2','18:02:39',0,'','reception','2025-12-11 18:02:39','darshan','2025-12-11 18:32:40'),(5923,0,0,'O','N','2526',1549,0,'2025-12-11','0000-00-00',1592,0,1549,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','18:26:11','','','N','Y',NULL,'O','O','L08','','0000-00-00 00:00:00','2','18:05:34',0,'','reception','2025-12-11 18:05:34','darshan','2025-12-11 18:26:11'),(5924,0,0,'O','N','2526',68,0,'2025-12-11','0000-00-00',79,0,68,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','18:36:52','','','N','Y',NULL,'O','O','L09','','0000-00-00 00:00:00','2','18:10:08',0,'','reception','2025-12-11 18:10:08','darshan','2025-12-11 18:36:52'),(5925,0,0,'O','N','2526',3945,0,'2025-12-11','2026-03-10',4053,0,3945,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','19:27:17','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','5','18:24:14',0,'','drashti','2025-12-11 18:14:29','drjayant','2025-12-11 19:27:17'),(5926,0,0,'O','N','2526',3946,0,'2025-12-11','2026-03-10',4054,0,3946,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','18:34:21','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','6','18:14:40',0,'','manshi','2025-12-11 18:14:40','drsagar','2025-12-11 18:34:21'),(5927,0,0,'O','N','2526',3947,0,'2025-12-11','2026-03-10',4055,0,3947,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:22:00','0000-00-00','','','','N','18:22:00','18:41:33','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','4','18:37:48',0,'','drashti','2025-12-11 18:22:22','drarchit','2025-12-11 18:41:33'),(5928,0,0,'O','N','2526',1883,0,'2025-12-11','0000-00-00',1930,0,1883,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','19:58:58','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','5','18:24:14',0,'','janvi','2025-12-11 18:24:14','drjayant','2025-12-11 19:58:58'),(5929,0,0,'O','N','2526',3178,0,'2025-12-11','0000-00-00',3264,0,3178,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:27:00','0000-00-00','','','','N','18:27:00','18:49:29','','','N','Y',NULL,'O','O','Z46','','0000-00-00 00:00:00','6','18:27:20',0,'','manshi','2025-12-11 18:27:20','drsagar','2025-12-11 18:49:29'),(5930,0,0,'O','N','2526',3948,0,'2025-12-11','2026-03-10',4056,0,3948,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','18:51:13','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','4','18:37:48',0,'','drashti','2025-12-11 18:28:13','drarchit','2025-12-11 18:51:13'),(5931,0,0,'O','N','2526',3949,0,'2025-12-11','2026-03-10',4057,0,3949,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:27:00','0000-00-00','','','','N','18:27:00','18:49:02','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','4','18:37:48',0,'','janvi','2025-12-11 18:28:24','drarchit','2025-12-11 18:49:02'),(5932,0,0,'O','N','2526',3950,0,'2025-12-11','2026-03-10',4058,0,3950,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','00:00:00','','Y','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','4','18:37:48',0,'','janvi','2025-12-11 18:29:57','drarchit','2025-12-11 19:13:22'),(5933,0,0,'O','N','2526',2812,0,'2025-12-11','0000-00-00',2881,0,2812,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','18:45:12','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','2','18:31:27',0,'','reception','2025-12-11 18:31:27','darshan','2025-12-11 18:45:11'),(5934,0,0,'O','N','2526',3951,0,'2025-12-11','2026-03-10',4059,0,3951,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','19:40:33','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','4','18:37:48',0,'','janvi','2025-12-11 18:34:38','drarchit','2025-12-11 19:40:33'),(5935,0,0,'O','N','2526',1658,0,'2025-12-11','0000-00-00',1703,0,1658,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','19:36:04','','','N','Y',NULL,'O','O','L13','','0000-00-00 00:00:00','4','18:37:48',0,'','drashti','2025-12-11 18:34:51','drarchit','2025-12-11 19:36:04'),(5936,0,0,'O','N','2526',3952,0,'2025-12-11','2026-03-10',4060,0,3952,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:41:00','0000-00-00','','','','N','18:41:00','20:00:47','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','5','18:41:28',0,'','reception','2025-12-11 18:41:28','drjayant','2025-12-11 20:00:46'),(5937,0,0,'O','N','2526',3953,0,'2025-12-11','2026-03-10',4061,0,3953,'N','','N','','','NV','','N','D06','','N',281,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','19:35:22','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','2','18:43:49',0,'','reception','2025-12-11 18:43:49','darshan','2025-12-11 19:35:22'),(5938,0,0,'O','N','2526',64,0,'2025-12-11','0000-00-00',75,0,64,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','19:31:22','','','N','Y',NULL,'O','O','Z52','','0000-00-00 00:00:00','4','18:43:53',0,'','drashti','2025-12-11 18:43:53','drarchit','2025-12-11 19:31:22'),(5939,0,0,'O','N','2526',3954,0,'2025-12-11','2026-03-10',4062,0,3954,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','19:55:24','','N','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','2','18:46:36',0,'','reception','2025-12-11 18:46:36','darshan','2025-12-11 19:55:24'),(5940,0,0,'O','N','2526',3637,0,'2025-12-11','0000-00-00',3740,0,3637,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','19:41:26','','','N','Y',NULL,'O','O','L15','','0000-00-00 00:00:00','4','18:49:11',0,'','drashti','2025-12-11 18:49:11','drarchit','2025-12-11 19:41:26'),(5941,0,0,'O','N','2526',1975,0,'2025-12-11','0000-00-00',2023,0,1975,'N','','N','','','FE','','N','D06','','N',140,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:28:51','','','N','Y',NULL,'O','O','Z53','','0000-00-00 00:00:00','2','18:51:10',0,'','reception','2025-12-11 18:51:10','darshan','2025-12-12 19:28:51'),(5942,0,0,'O','N','2526',3955,0,'2025-12-11','2026-03-10',4063,0,3955,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:52:00','0000-00-00','','','','N','18:52:00','00:00:00','','','N','N',NULL,'O','N','L16','','0000-00-00 00:00:00','4','18:52:49',0,'','drashti','2025-12-11 18:52:49','','0000-00-00 00:00:00'),(5943,0,0,'O','N','2526',3956,0,'2025-12-11','2026-03-10',4064,0,3956,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:59:00','0000-00-00','','','','N','18:59:00','19:57:52','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','2','18:59:43',0,'','reception','2025-12-11 18:59:43','darshan','2025-12-11 19:57:52'),(5944,0,0,'O','N','2526',3957,0,'2025-12-11','2026-03-10',4065,0,3957,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:07:00','0000-00-00','','','','N','19:07:00','20:03:40','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','5','19:07:49',0,'','drashti','2025-12-11 19:07:49','drjayant','2025-12-11 20:03:40'),(5945,0,0,'O','N','2526',3958,0,'2025-12-11','2026-03-10',4066,0,3958,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:12:00','0000-00-00','','','','N','19:12:00','00:00:00','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','4','19:13:21',0,'','janvi','2025-12-11 19:13:21','','0000-00-00 00:00:00'),(5946,0,0,'O','N','2526',1288,0,'2025-12-11','0000-00-00',1327,0,1288,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:18:00','0000-00-00','','','','N','19:18:00','00:00:00','','','N','N',NULL,'O','O','Z57','','0000-00-00 00:00:00','3','19:19:20',0,'','janvi','2025-12-11 19:19:20','','0000-00-00 00:00:00'),(5947,0,0,'O','N','2526',622,0,'2025-12-11','0000-00-00',652,0,622,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:21:00','0000-00-00','','','','N','19:21:00','00:00:00','','','N','N',NULL,'O','O','Z58','','0000-00-00 00:00:00','4','19:21:52',0,'','drashti','2025-12-11 19:21:52','','0000-00-00 00:00:00'),(5948,0,0,'O','N','2526',3959,0,'2025-12-11','2026-03-10',3943,0,3959,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:05:00','0000-00-00','','','','N','20:05:00','00:00:00','','','N','N',NULL,'O','N','Z59','','0000-00-00 00:00:00','3','20:05:32',0,'','janvi','2025-12-11 20:05:32','','0000-00-00 00:00:00'),(5949,0,0,'O','N','2526',3960,0,'2025-12-12','2026-03-11',4067,0,3960,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:35:00','0000-00-00','','','','N','08:35:00','13:14:07','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','5','11:10:38',0,'','reception','2025-12-12 08:35:28','drjayant','2025-12-12 13:14:07'),(5950,0,0,'O','N','2526',3961,0,'2025-12-12','2026-03-11',4068,0,3961,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:39:00','0000-00-00','','','','N','08:39:00','13:09:39','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','08:39:21',0,'','reception','2025-12-12 08:39:21','drarchit','2025-12-12 13:09:38'),(5951,0,0,'O','N','2526',3413,0,'2025-12-12','0000-00-00',3509,0,3413,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:54:00','0000-00-00','','','','N','08:54:00','13:48:07','','N','N','Y',NULL,'O','O','I01','','0000-00-00 00:00:00','2','08:54:11',0,'','reception','2025-12-12 08:54:11','darshan','2025-12-12 13:48:07'),(5952,0,0,'O','N','2526',2408,0,'2025-12-12','0000-00-00',2464,0,2408,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:57:00','0000-00-00','','','','N','08:57:00','11:38:43','','','N','Y',NULL,'O','O','Z03','','0000-00-00 00:00:00','4','08:57:36',0,'','urvashi','2025-12-12 08:57:36','drarchit','2025-12-12 11:38:43'),(5953,0,0,'O','N','2526',905,0,'2025-12-12','0000-00-00',937,0,905,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','0000-00-00','','','','N','09:30:00','11:13:36','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','4','09:31:21',0,'','janvi','2025-12-12 09:31:21','drarchit','2025-12-12 11:13:36'),(5954,0,0,'O','N','2526',3298,0,'2025-12-12','0000-00-00',3388,0,3298,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:47:00','0000-00-00','','','','N','09:47:00','10:48:25','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','09:47:39',0,'','reception','2025-12-12 09:47:39','darshan','2025-12-12 10:48:25'),(5955,0,0,'O','N','2526',3343,0,'2025-12-12','0000-00-00',3436,0,3343,'N','','N','','','FV','','N','D06','','N',240,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:49:00','0000-00-00','','','','N','09:49:00','10:58:12','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','09:49:19',0,'','reception','2025-12-12 09:49:19','darshan','2025-12-12 10:58:12'),(5956,0,0,'O','N','2526',3437,0,'2025-12-12','0000-00-00',3534,0,3437,'N','','N','','','FE','','N','D06','','N',107,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','0000-00-00','','','','N','10:15:00','10:54:59','','','N','Y',NULL,'O','O','E02','','0000-00-00 00:00:00','2','10:15:41',0,'','reception','2025-12-12 10:15:41','darshan','2025-12-12 10:54:59'),(5957,0,0,'O','N','2526',3962,0,'2025-12-12','2026-03-11',4069,0,3962,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:24:00','0000-00-00','','','','N','10:24:00','13:30:02','','N','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','2','10:24:15',0,'','reception','2025-12-12 10:24:15','darshan','2025-12-12 13:30:02'),(5958,0,0,'O','N','2526',3590,0,'2025-12-12','0000-00-00',3447,0,3590,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','00:00:00','','','N','N',NULL,'O','O','Z05','','0000-00-00 00:00:00','3','10:29:03',0,'','janvi','2025-12-12 10:29:03','','0000-00-00 00:00:00'),(5959,0,0,'O','N','2526',3963,0,'2025-12-12','2026-03-11',4070,0,3963,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','11:52:36','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:33:10',0,'','reception','2025-12-12 10:33:10','darshan','2025-12-12 11:52:36'),(5960,0,0,'O','N','2526',3964,0,'2025-12-12','2026-03-11',4071,0,3964,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','13:00:26','','N','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:33:36',0,'','drashti','2025-12-12 10:33:35','darshan','2025-12-12 13:00:26'),(5961,0,0,'O','N','2526',1506,0,'2025-12-12','0000-00-00',1547,0,1506,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:36:00','0000-00-00','','','','N','10:36:00','12:03:19','','','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','2','10:37:00',0,'','reception','2025-12-12 10:37:00','darshan','2025-12-12 12:03:19'),(5962,0,0,'O','N','2526',1511,0,'2025-12-12','0000-00-00',1552,0,1511,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:41:00','0000-00-00','','','','N','10:41:00','12:19:48','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','4','10:41:48',0,'','drashti','2025-12-12 10:41:48','drarchit','2025-12-12 12:19:48'),(5963,0,0,'O','N','2526',3280,0,'2025-12-12','0000-00-00',3369,0,3280,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:47:00','0000-00-00','','','','N','10:47:00','11:32:30','','','N','Y',NULL,'O','O','F03','','0000-00-00 00:00:00','2','10:47:23',0,'','reception','2025-12-12 10:47:23','darshan','2025-12-12 11:32:30'),(5964,0,0,'O','N','2526',3965,0,'2025-12-12','2026-03-11',4072,0,3965,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','13:27:09','','N','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','10:51:17',0,'','reception','2025-12-12 10:51:17','darshan','2025-12-12 13:27:09'),(5965,0,0,'O','N','2526',3966,0,'2025-12-12','2026-03-11',4073,0,3966,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','12:50:23','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','4','10:51:57',0,'','janvi','2025-12-12 10:51:57','drarchit','2025-12-12 12:50:23'),(5966,0,0,'O','N','2526',3967,0,'2025-12-12','2026-03-11',4074,0,3967,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:52:00','0000-00-00','','','','N','10:52:00','12:52:45','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','10:52:25',0,'','drashti','2025-12-12 10:52:25','drarchit','2025-12-12 12:52:45'),(5967,0,0,'O','N','2526',1841,0,'2025-12-12','0000-00-00',1887,0,1841,'N','','N','','','FE','','N','D06','','N',33,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','12:13:00','','','N','Y',NULL,'O','O','Z08','','0000-00-00 00:00:00','2','11:02:10',0,'','reception','2025-12-12 11:02:10','darshan','2025-12-12 12:13:00'),(5968,0,0,'O','N','2526',3360,0,'2025-12-12','0000-00-00',3457,0,3360,'N','','N','','','FV','','N','D06','','N',241,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','11:35:36','','','N','Y',NULL,'O','O','G03','','0000-00-00 00:00:00','2','11:05:31',0,'','reception','2025-12-12 11:05:31','darshan','2025-12-12 11:35:36'),(5969,0,0,'O','N','2526',3968,0,'2025-12-12','2026-03-11',4075,0,3968,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','11:40:44','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','6','11:05:38',0,'','manshi','2025-12-12 11:05:38','drsagar','2025-12-12 11:40:44'),(5970,0,0,'O','N','2526',1832,0,'2025-12-12','0000-00-00',1878,0,1832,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','11:44:05','','','N','Y',NULL,'O','O','Z10','','0000-00-00 00:00:00','5','11:10:38',0,'','janvi','2025-12-12 11:10:38','drjayant','2025-12-12 11:44:05'),(5971,0,0,'O','N','2526',283,0,'2025-12-12','0000-00-00',299,0,283,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','11:18:30','','','N','Y',NULL,'O','O','Z11','','0000-00-00 00:00:00','5','11:12:00',0,'','reception','2025-12-12 11:12:00','drjayant','2025-12-12 11:18:30'),(5972,0,0,'O','N','2526',757,0,'2025-12-12','0000-00-00',56,0,757,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','12:37:01','','','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','5','11:14:58',0,'','janvi','2025-12-12 11:14:58','drjayant','2025-12-15 12:37:01'),(5973,0,0,'O','N','2526',3969,0,'2025-12-12','2026-03-11',4076,0,3969,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','11:54:29','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','6','11:23:56',0,'','manshi','2025-12-12 11:23:56','drsagar','2025-12-12 11:54:29'),(5974,0,0,'O','N','2526',3970,0,'2025-12-12','2026-03-11',4077,0,3970,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','12:23:43','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','2','11:24:47',0,'','reception','2025-12-12 11:24:47','darshan','2025-12-12 12:23:43'),(5975,0,0,'O','N','2526',3971,0,'2025-12-12','2026-03-11',4078,0,3971,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','12:38:26','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','5','11:25:15',0,'','drashti','2025-12-12 11:25:15','drjayant','2025-12-13 12:38:26'),(5976,0,0,'O','N','2526',3972,0,'2025-12-12','2026-03-11',4079,0,3972,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','11:53:32','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','4','11:26:44',0,'','drashti','2025-12-12 11:26:44','drarchit','2025-12-12 11:53:32'),(5977,0,0,'O','N','2526',488,0,'2025-12-12','0000-00-00',513,0,488,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','11:54:52','','','N','Y',NULL,'O','O','H05','','0000-00-00 00:00:00','2','11:27:26',0,'','reception','2025-12-12 11:27:26','darshan','2025-12-12 11:54:52'),(5978,0,0,'O','N','2526',3973,0,'2025-12-12','2026-03-11',4080,0,3973,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','00:00:00','','','N','N',NULL,'O','N','Z16','','0000-00-00 00:00:00','3','11:28:02',0,'','janvi','2025-12-12 11:28:02','','0000-00-00 00:00:00'),(5979,0,0,'O','N','2526',1096,0,'2025-12-12','0000-00-00',1134,0,1096,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','12:27:58','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','2','11:32:26',0,'','reception','2025-12-12 11:32:26','darshan','2025-12-12 12:27:58'),(5980,0,0,'O','N','2526',3974,0,'2025-12-12','2026-03-11',4081,0,3974,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','13:01:54','','','N','Y',NULL,'O','N','H06','','0000-00-00 00:00:00','4','11:33:31',0,'','drashti','2025-12-12 11:33:31','drarchit','2025-12-12 13:01:54'),(5981,0,0,'O','N','2526',3377,0,'2025-12-12','0000-00-00',3472,0,3377,'N','','N','','','FV','','N','D06','','N',242,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:37:00','0000-00-00','','','','N','11:37:00','12:30:52','','','N','Y',NULL,'O','O','Z18','','0000-00-00 00:00:00','2','11:37:28',0,'','reception','2025-12-12 11:37:28','darshan','2025-12-12 12:30:52'),(5982,0,0,'O','N','2526',2843,0,'2025-12-12','0000-00-00',2915,0,2843,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','12:17:05','','','N','Y',NULL,'O','O','H07','','0000-00-00 00:00:00','2','11:40:03',0,'','reception','2025-12-12 11:40:03','darshan','2025-12-12 12:17:05'),(5983,0,0,'O','N','2526',3975,0,'2025-12-12','2026-03-11',4082,0,3975,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','18:57:26','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','4','11:41:19',0,'','janvi','2025-12-12 11:41:19','drarchit','2025-12-12 18:57:26'),(5984,0,0,'O','N','2526',3976,0,'2025-12-12','2026-03-11',4083,0,3976,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','12:25:02','','','N','Y',NULL,'O','N','H08','','0000-00-00 00:00:00','4','11:43:59',0,'','drashti','2025-12-12 11:43:59','drarchit','2025-12-12 12:25:02'),(5985,0,0,'O','N','2526',1384,0,'2025-12-12','0000-00-00',1425,0,1384,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','11:56:50','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','5','11:52:07',0,'','janvi','2025-12-12 11:52:07','drjayant','2025-12-12 11:56:50'),(5986,0,0,'O','N','2526',3977,0,'2025-12-12','2026-03-11',4084,0,3977,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','12:40:04','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','4','11:58:33',0,'','janvi','2025-12-12 11:58:33','drarchit','2025-12-12 12:40:04'),(5987,0,0,'O','N','2526',2738,0,'2025-12-12','0000-00-00',2808,0,2738,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','00:00:00','','','N','N',NULL,'O','O','Z20','','0000-00-00 00:00:00','3','12:03:20',0,'','janvi','2025-12-12 12:03:20','','0000-00-00 00:00:00'),(5988,0,0,'O','N','2526',2251,0,'2025-12-12','0000-00-00',2308,0,2251,'N','','N','','','FV','','N','D06','','N',161,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:05:00','0000-00-00','','','','N','12:05:00','12:38:37','','','N','Y',NULL,'O','O','J01','','0000-00-00 00:00:00','2','12:05:40',0,'','reception','2025-12-12 12:05:40','darshan','2025-12-12 12:38:37'),(5989,0,0,'O','N','2526',3978,0,'2025-12-12','2026-03-11',4085,0,3978,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:14:00','0000-00-00','','','','N','12:14:00','13:04:52','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','2','12:14:58',0,'','reception','2025-12-12 12:14:58','darshan','2025-12-12 13:04:52'),(5990,0,0,'O','N','2526',3054,0,'2025-12-12','0000-00-00',3135,0,3054,'N','','N','','','FV','','N','D06','','N',116,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:16:00','0000-00-00','','','','N','12:16:00','12:42:08','','','N','Y',NULL,'O','O','I04','','0000-00-00 00:00:00','2','12:16:16',0,'','reception','2025-12-12 12:16:16','darshan','2025-12-12 12:42:08'),(5991,0,0,'O','N','2526',3979,0,'2025-12-12','2026-03-11',4086,0,3979,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:17:00','0000-00-00','','','','N','12:17:00','13:03:51','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','4','12:17:42',0,'','drashti','2025-12-12 12:17:42','drarchit','2025-12-13 13:03:51'),(5992,0,0,'O','N','2526',3980,0,'2025-12-12','2026-03-11',4087,0,3980,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','19:19:36','','','N','Y',NULL,'O','N','I05','','0000-00-00 00:00:00','4','12:27:24',0,'','drashti','2025-12-12 12:27:24','drarchit','2025-12-12 19:19:36'),(5993,0,0,'O','N','2526',3018,0,'2025-12-12','0000-00-00',3098,0,3018,'N','','N','','','DRESSING','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:31:00','0000-00-00','','','','N','12:31:00','13:09:11','','','N','Y',NULL,'O','O','Z23','','0000-00-00 00:00:00','4','12:31:10',0,'','priyanshi','2025-12-12 12:31:10','drarchit','2025-12-12 13:09:11'),(5994,0,0,'O','N','2526',3981,0,'2025-12-12','2026-03-11',4088,0,3981,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:38:00','0000-00-00','','','','N','12:38:00','18:10:54','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','4','12:38:25',0,'','drashti','2025-12-12 12:38:25','drarchit','2025-12-12 18:10:54'),(5995,0,0,'O','N','2526',3982,0,'2025-12-12','2026-03-11',4089,0,3982,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:42:00','0000-00-00','','','','N','12:42:00','12:58:42','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','4','12:42:21',0,'','drashti','2025-12-12 12:42:21','drarchit','2025-12-12 12:58:42'),(5996,0,0,'O','N','2526',3983,0,'2025-12-12','2026-03-11',4090,0,3983,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:53:00','0000-00-00','','','','N','12:53:00','13:58:00','','N','N','Y',NULL,'O','N','J04','','0000-00-00 00:00:00','2','12:53:05',0,'','reception','2025-12-12 12:53:05','darshan','2025-12-12 13:58:00'),(5997,0,0,'O','N','2526',3955,0,'2025-12-12','0000-00-00',4063,0,3955,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:13:00','0000-00-00','','','','N','13:13:00','19:11:18','','','N','Y',NULL,'O','O','Z24','','0000-00-00 00:00:00','4','13:13:53',0,'','drashti','2025-12-12 13:13:53','drarchit','2025-12-12 19:11:18'),(5998,0,0,'O','N','2526',3417,0,'2025-12-12','0000-00-00',3514,0,3417,'N','','N','','','','','N','D27','','N',55,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:14:00','0000-00-00','','','','N','13:14:00','00:00:00','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','5','13:14:38',0,'','reception','2025-12-12 13:14:38','reception','2025-12-12 13:16:22'),(5999,0,0,'O','N','2526',3984,0,'2025-12-12','2026-03-11',4091,0,3984,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:32:00','0000-00-00','','','','N','13:32:00','00:00:00','','','N','N',NULL,'O','N','Z26','','0000-00-00 00:00:00','3','13:32:46',0,'','janvi','2025-12-12 13:32:46','','0000-00-00 00:00:00'),(6000,0,0,'O','N','2526',622,0,'2025-12-12','0000-00-00',652,0,622,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:47:00','0000-00-00','','','','N','13:47:00','18:04:26','','','N','Y',NULL,'O','O','Z27','','0000-00-00 00:00:00','4','13:47:20',0,'','drashti','2025-12-12 13:47:20','drarchit','2025-12-12 18:04:26'),(6001,0,0,'O','N','2526',3985,0,'2025-12-12','2026-03-11',4092,0,3985,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:14:00','0000-00-00','','','','N','16:14:00','18:01:16','','N','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','2','16:14:59',0,'','reception','2025-12-12 16:14:59','darshan','2025-12-12 18:01:16'),(6002,0,0,'O','N','2526',3986,0,'2025-12-12','2026-03-11',4093,0,3986,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:23:00','0000-00-00','','','','N','16:23:00','19:01:37','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:23:45',0,'','reception','2025-12-12 16:23:45','darshan','2025-12-12 19:01:37'),(6003,0,0,'O','N','2526',1028,0,'2025-12-12','0000-00-00',1062,0,1028,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:25:00','0000-00-00','','','','N','16:25:00','18:04:01','','','N','Y',NULL,'O','O','Z29','','0000-00-00 00:00:00','2','16:25:45',0,'','reception','2025-12-12 16:25:45','darshan','2025-12-12 18:04:01'),(6004,0,0,'O','N','2526',2799,0,'2025-12-12','0000-00-00',2869,0,2799,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:29:00','0000-00-00','','','','N','16:29:00','17:24:39','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','2','16:29:08',0,'','reception','2025-12-12 16:29:08','darshan','2025-12-12 17:24:38'),(6005,0,0,'O','N','2526',1698,0,'2025-12-12','0000-00-00',1744,0,1698,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:32:00','0000-00-00','','','','N','16:32:00','17:13:21','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','16:32:13',0,'','reception','2025-12-12 16:32:13','darshan','2025-12-12 17:13:21'),(6006,0,0,'O','N','2526',1652,0,'2025-12-12','0000-00-00',1697,0,1652,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:35:00','0000-00-00','','','','N','16:35:00','17:09:26','','','N','Y',NULL,'O','O','L03','','0000-00-00 00:00:00','2','16:35:30',0,'','reception','2025-12-12 16:35:30','darshan','2025-12-12 17:09:26'),(6007,0,0,'O','N','2526',958,0,'2025-12-12','0000-00-00',991,0,958,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:36:00','0000-00-00','','','','N','16:36:00','17:25:19','','','N','Y',NULL,'O','O','Z31','','0000-00-00 00:00:00','2','16:36:44',0,'','reception','2025-12-12 16:36:44','darshan','2025-12-12 17:25:19'),(6008,0,0,'O','N','2526',2798,0,'2025-12-12','0000-00-00',2868,0,2798,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:37:00','0000-00-00','','','','N','16:37:00','17:27:07','','','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','2','16:37:24',0,'','reception','2025-12-12 16:37:24','darshan','2025-12-12 17:27:07'),(6009,0,0,'O','N','2526',3987,0,'2025-12-12','2026-03-11',4094,0,3987,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:44:00','0000-00-00','','','','N','16:44:00','19:22:41','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','4','16:44:54',0,'','drashti','2025-12-12 16:44:53','drarchit','2025-12-12 19:22:41'),(6010,0,0,'O','N','2526',3565,0,'2025-12-12','0000-00-00',3665,0,3565,'N','','N','','','FV','','N','D06','','N',255,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:46:00','0000-00-00','','','','N','16:46:00','18:14:40','','','N','Y',NULL,'O','O','Z34','','0000-00-00 00:00:00','2','16:46:56',0,'','reception','2025-12-12 16:46:56','darshan','2025-12-12 18:14:40'),(6011,0,0,'O','N','2526',3988,0,'2025-12-12','2026-03-11',4095,0,3988,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:55:00','0000-00-00','','','','N','16:55:00','17:30:37','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','2','16:55:42',0,'','reception','2025-12-12 16:55:42','darshan','2025-12-12 17:30:37'),(6012,0,0,'O','N','2526',3593,0,'2025-12-12','0000-00-00',3691,0,3593,'N','','N','','','','','N','D02','','N',223,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:59:00','0000-00-00','','','','N','16:59:00','00:00:00','','','N','N',NULL,'O','O','Z36','','0000-00-00 00:00:00','3','16:59:43',0,'','drashti','2025-12-12 16:59:43','','0000-00-00 00:00:00'),(6013,0,0,'O','N','2526',3989,0,'2025-12-12','2026-03-11',4096,0,3989,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:07:00','0000-00-00','','','','N','17:07:00','17:38:23','','','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:07:58',0,'','reception','2025-12-12 17:07:58','darshan','2025-12-12 17:38:23'),(6014,0,0,'O','N','2526',3990,0,'2025-12-12','2026-03-11',4097,0,3990,'N','','N','','','NC','','N','D27','','N',14,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:09:00','0000-00-00','','','','N','17:09:00','12:12:15','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','5','17:09:27',0,'','drashti','2025-12-12 17:09:27','drjayant','2025-12-13 12:12:15'),(6015,0,0,'O','N','2526',3991,0,'2025-12-12','2026-03-11',4098,0,3991,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:10:00','0000-00-00','','','','N','17:10:00','17:41:18','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','2','17:10:04',0,'','reception','2025-12-12 17:10:04','darshan','2025-12-12 17:41:18'),(6016,0,0,'O','N','2526',3992,0,'2025-12-12','2026-03-11',4099,0,3992,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:13:00','0000-00-00','','','','N','17:13:00','19:29:19','','N','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:13:04',0,'','reception','2025-12-12 17:13:04','darshan','2025-12-12 19:29:19'),(6017,0,0,'O','N','2526',3993,0,'2025-12-12','2026-03-11',4100,0,3993,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:16:00','0000-00-00','','','','N','17:16:00','19:45:19','','N','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','2','17:16:48',0,'','reception','2025-12-12 17:16:48','darshan','2025-12-12 19:45:19'),(6018,0,0,'O','N','2526',2919,0,'2025-12-12','0000-00-00',2996,0,2919,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','00:00:00','','','N','N',NULL,'O','O','Z40','','0000-00-00 00:00:00','3','17:20:48',0,'','drashti','2025-12-12 17:20:48','','0000-00-00 00:00:00'),(6019,0,0,'O','N','2526',3994,0,'2025-12-12','2026-03-11',4101,0,3994,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:29:00','0000-00-00','','','','N','17:29:00','18:50:12','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','2','17:29:09',0,'','reception','2025-12-12 17:29:09','darshan','2025-12-12 18:50:12'),(6020,0,0,'O','N','2526',3995,0,'2025-12-12','2026-03-11',4102,0,3995,'N','','N','','','NV','','N','D06','','N',116,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:33:00','0000-00-00','','','','N','17:33:00','19:32:57','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:33:27',0,'','reception','2025-12-12 17:33:27','darshan','2025-12-12 19:32:57'),(6021,0,0,'O','N','2526',3996,0,'2025-12-12','2026-03-11',4103,0,3996,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','18:15:15','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','4','17:46:25',0,'','drashti','2025-12-12 17:46:25','drarchit','2025-12-12 18:15:15'),(6022,0,0,'O','N','2526',2345,0,'2025-12-12','0000-00-00',2401,0,2345,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','18:08:38','','','N','Y',NULL,'O','O','Z43','','0000-00-00 00:00:00','2','17:48:18',0,'','reception','2025-12-12 17:48:18','darshan','2025-12-12 18:08:38'),(6023,0,0,'O','N','2526',3997,0,'2025-12-12','2026-03-11',4104,0,3997,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:55:00','0000-00-00','','','','N','17:55:00','18:38:33','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:55:57',0,'','reception','2025-12-12 17:55:57','darshan','2025-12-12 18:38:33'),(6024,0,0,'O','N','2526',3998,0,'2025-12-12','2026-03-11',4105,0,3998,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:58:00','0000-00-00','','','','N','17:58:00','18:35:21','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:58:04',0,'','reception','2025-12-12 17:58:04','darshan','2025-12-12 18:35:21'),(6025,0,0,'O','N','2526',1089,0,'2025-12-12','0000-00-00',1128,0,1089,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','18:59:48','','','N','Y',NULL,'O','O','L09','','0000-00-00 00:00:00','2','17:59:35',0,'','reception','2025-12-12 17:59:35','darshan','2025-12-12 18:59:48'),(6026,0,0,'O','N','2526',3999,0,'2025-12-12','2026-03-11',4106,0,3999,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','18:21:59','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','4','18:05:32',0,'','reception','2025-12-12 18:05:32','drarchit','2025-12-12 18:21:59'),(6027,0,0,'O','N','2526',4000,0,'2025-12-12','2026-03-11',4107,0,4000,'N','','N','','','','','N','D03','','N',196,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','18:38:25','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','6','18:11:40',0,'','manshi','2025-12-12 18:11:40','drsagar','2025-12-12 18:38:25'),(6028,0,0,'O','N','2526',4001,0,'2025-12-12','2026-03-11',4108,0,4001,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','19:17:54','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','2','18:12:25',0,'','reception','2025-12-12 18:12:25','darshan','2025-12-12 19:17:54'),(6029,0,0,'O','N','2526',4002,0,'2025-12-12','2026-03-11',4109,0,4002,'N','','N','','','NC','','N','D27','','N',10,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','18:28:52','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','4','18:14:10',0,'','reception','2025-12-12 18:14:10','drarchit','2025-12-12 18:28:52'),(6030,0,0,'O','N','2526',306,0,'2025-12-12','0000-00-00',322,0,306,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','18:48:29','','','N','Y',NULL,'O','O','Z47','','0000-00-00 00:00:00','5','18:15:51',0,'','janvi','2025-12-12 18:15:51','drjayant','2025-12-12 18:48:29'),(6031,0,0,'O','N','2526',4003,0,'2025-12-12','2026-03-11',4110,0,4003,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:16:00','0000-00-00','','','','N','18:16:00','18:53:03','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','5','18:16:32',0,'','reception','2025-12-12 18:16:32','drjayant','2025-12-12 18:53:03'),(6032,0,0,'O','N','2526',3735,0,'2025-12-12','0000-00-00',3838,0,3735,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','18:41:27','','','N','Y',NULL,'O','O','Z49','','0000-00-00 00:00:00','6','18:18:26',0,'','manshi','2025-12-12 18:18:26','drsagar','2025-12-12 18:41:27'),(6033,0,0,'O','N','2526',4004,0,'2025-12-12','2026-03-11',4111,0,4004,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','18:34:23','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','4','18:19:15',0,'','drashti','2025-12-12 18:19:15','drarchit','2025-12-12 18:34:23'),(6034,0,0,'O','N','2526',4005,0,'2025-12-12','2026-03-11',4112,0,4005,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','19:07:55','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','5','18:19:17',0,'','janvi','2025-12-12 18:19:16','drjayant','2025-12-12 19:07:55'),(6035,0,0,'O','N','2526',4006,0,'2025-12-12','2026-03-11',4113,0,4006,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','18:41:27','','N','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','4','18:21:05',0,'','drashti','2025-12-12 18:21:05','drarchit','2025-12-12 18:41:27'),(6036,0,0,'O','N','2526',3605,0,'2025-12-12','0000-00-00',3705,0,3605,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','00:00:00','','','N','N',NULL,'O','O','Z53','','0000-00-00 00:00:00','3','18:21:27',0,'','janvi','2025-12-12 18:21:27','','0000-00-00 00:00:00'),(6037,0,0,'O','N','2526',4007,0,'2025-12-12','2026-03-11',4114,0,4007,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:22:00','0000-00-00','','','','N','18:22:00','18:50:24','','N','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','4','18:22:58',0,'','drashti','2025-12-12 18:22:58','drarchit','2025-12-12 18:50:24'),(6038,0,0,'O','N','2526',4008,0,'2025-12-12','2026-03-11',4115,0,4008,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','19:03:59','','N','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','4','18:23:37',0,'','janvi','2025-12-12 18:23:37','drarchit','2025-12-12 19:03:59'),(6039,0,0,'O','N','2526',4009,0,'2025-12-12','2026-03-11',4116,0,4009,'N','','N','','','NC','','N','D27','','N',279,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','19:11:37','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','4','18:30:26',0,'','drashti','2025-12-12 18:30:26','drarchit','2025-12-12 19:11:37'),(6040,0,0,'O','N','2526',4010,0,'2025-12-12','2026-03-11',4117,0,4010,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','19:01:28','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','7','18:34:23',0,'','manshi','2025-12-12 18:34:23','drridham','2025-12-12 19:01:28'),(6041,0,0,'O','N','2526',4011,0,'2025-12-12','2026-03-11',4118,0,4011,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:45:00','0000-00-00','','','','N','18:45:00','19:29:14','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','4','18:46:08',0,'','janvi','2025-12-12 18:46:08','drarchit','2025-12-12 19:29:14'),(6042,0,0,'O','N','2526',4012,0,'2025-12-12','2026-03-11',4119,0,4012,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','19:02:30','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','4','18:46:22',0,'','drashti','2025-12-12 18:46:22','drarchit','2025-12-12 19:02:30'),(6043,0,0,'O','N','2526',4013,0,'2025-12-12','2026-03-11',4120,0,4013,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:47:00','0000-00-00','','','','N','18:47:00','19:08:07','','','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','2','18:47:30',0,'','reception','2025-12-12 18:47:30','darshan','2025-12-12 19:08:07'),(6044,0,0,'O','N','2526',2368,0,'2025-12-12','0000-00-00',2423,0,2368,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:47:00','0000-00-00','','','','N','18:47:00','19:32:59','','','N','Y',NULL,'O','O','Z58','','0000-00-00 00:00:00','4','18:48:16',0,'','janvi','2025-12-12 18:48:16','drarchit','2025-12-12 19:32:59'),(6045,0,0,'O','N','2526',3598,0,'2025-12-12','0000-00-00',3696,0,3598,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','19:42:44','','','N','Y',NULL,'O','O','Z59','','0000-00-00 00:00:00','4','18:49:20',0,'','janvi','2025-12-12 18:49:20','drarchit','2025-12-12 19:42:44'),(6046,0,0,'O','N','2526',536,0,'2025-12-12','0000-00-00',562,0,536,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:50:00','0000-00-00','','','','N','18:50:00','19:44:35','','','N','Y',NULL,'O','O','Z60','','0000-00-00 00:00:00','2','18:50:17',0,'','reception','2025-12-12 18:50:17','darshan','2025-12-12 19:44:35'),(6047,0,0,'I','N','2526',4002,275,'2025-12-12','2026-03-11',4109,0,4002,'N','','N','','','','N','N','D02','','N',0,'','42',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:30:00','2025-12-14','','1','mo','N','18:30:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-12 18:52:09','mo','2025-12-14 12:24:49'),(6048,0,0,'O','N','2526',2269,0,'2025-12-12','0000-00-00',2326,0,2269,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','19:10:33','','','N','Y',NULL,'O','O','Z61','','0000-00-00 00:00:00','6','18:54:18',0,'','manshi','2025-12-12 18:54:18','drsagar','2025-12-12 19:10:33'),(6049,0,0,'O','N','2526',2174,0,'2025-12-12','0000-00-00',2229,0,2174,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:55:00','0000-00-00','','','','N','18:55:00','19:50:36','','','N','Y',NULL,'O','O','L14','','0000-00-00 00:00:00','2','18:56:03',0,'','janvi','2025-12-12 18:56:03','darshan','2025-12-12 19:50:36'),(6050,0,0,'O','N','2526',2673,0,'2025-12-12','0000-00-00',2742,0,2673,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:58:00','0000-00-00','','','','N','18:58:00','19:37:45','','','N','Y',NULL,'O','O','L15','','0000-00-00 00:00:00','4','18:58:15',0,'','drashti','2025-12-12 18:58:15','drarchit','2025-12-12 19:37:45'),(6051,0,0,'O','N','2526',1156,0,'2025-12-12','0000-00-00',1195,0,1156,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:59:00','0000-00-00','','','','N','18:59:00','19:46:35','','','N','Y',NULL,'O','O','L16','','0000-00-00 00:00:00','4','18:59:32',0,'','janvi','2025-12-12 18:59:32','drarchit','2025-12-12 19:46:35'),(6052,0,0,'O','N','2526',4014,0,'2025-12-12','2026-03-11',4121,0,4014,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:59:00','0000-00-00','','','','N','18:59:00','19:12:05','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','5','18:59:52',0,'','reception','2025-12-12 18:59:52','drjayant','2025-12-12 19:12:05'),(6053,0,0,'O','N','2526',2495,0,'2025-12-12','0000-00-00',2553,0,2495,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:02:00','0000-00-00','','','','N','19:02:00','19:53:23','','','N','Y',NULL,'O','O','Z63','','0000-00-00 00:00:00','4','19:02:09',0,'','drashti','2025-12-12 19:02:09','drarchit','2025-12-12 19:53:23'),(6054,0,0,'O','N','2526',4015,0,'2025-12-12','2026-03-11',4122,0,4015,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:07:00','0000-00-00','','','','N','19:07:00','13:08:03','','','N','Y',NULL,'O','N','L17','','0000-00-00 00:00:00','4','19:07:52',0,'','drashti','2025-12-12 19:07:52','drarchit','2025-12-13 13:08:03'),(6055,0,0,'O','N','2526',3310,0,'2025-12-12','0000-00-00',3399,0,3310,'N','','N','','','','','N','D02','','N',90,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:12:00','0000-00-00','','','','N','19:12:00','00:00:00','','','N','N',NULL,'O','O','Z64','','0000-00-00 00:00:00','3','19:13:07',0,'','janvi','2025-12-12 19:13:07','','0000-00-00 00:00:00'),(6056,0,0,'I','N','2526',0,276,'2025-12-12','2026-03-11',4123,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:00:00','2025-12-13','','1','mo','N','19:00:00','20:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-12 19:13:30','mo','2025-12-13 18:18:21'),(6057,0,0,'O','N','2526',372,0,'2025-12-12','0000-00-00',390,0,372,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:15:00','0000-00-00','','','','N','19:15:00','19:56:50','','','N','Y',NULL,'O','O','Z65','','0000-00-00 00:00:00','4','19:16:04',0,'','janvi','2025-12-12 19:16:04','drarchit','2025-12-12 19:56:50'),(6058,0,0,'O','N','2526',4016,0,'2025-12-12','2026-03-11',4124,0,4016,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:25:00','0000-00-00','','','','N','19:25:00','19:36:31','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','5','19:25:48',0,'','drashti','2025-12-12 19:25:48','drjayant','2025-12-12 19:36:31'),(6059,0,0,'O','N','2526',348,0,'2025-12-12','0000-00-00',364,0,348,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:28:00','0000-00-00','','','','N','19:28:00','20:08:16','','','N','Y',NULL,'O','O','L18','','0000-00-00 00:00:00','4','19:28:31',0,'','drashti','2025-12-12 19:28:31','drarchit','2025-12-12 20:08:16'),(6060,0,0,'O','N','2526',4017,0,'2025-12-12','2026-03-11',4125,0,4017,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:34:00','0000-00-00','','','','N','19:34:00','20:13:20','','','N','Y',NULL,'O','N','Z67','','0000-00-00 00:00:00','4','19:34:41',0,'','reception','2025-12-12 19:34:41','drarchit','2025-12-12 20:13:20'),(6061,0,0,'I','N','2526',4016,277,'2025-12-12','2026-03-11',4124,0,4016,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:50:00','2025-12-17','','1','mo','N','19:50:00','12:10:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-12 19:48:35','mo','2025-12-17 13:27:25'),(6062,0,0,'O','N','2526',4018,0,'2025-12-12','2026-03-11',4126,0,4018,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:49:00','0000-00-00','','','','N','19:49:00','00:00:00','','','N','N',NULL,'O','N','Z68','','0000-00-00 00:00:00','6','19:49:37',0,'','manshi','2025-12-12 19:49:37','','0000-00-00 00:00:00'),(6063,0,0,'O','N','2526',4019,0,'2025-12-12','2026-03-11',4127,0,4019,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:52:00','0000-00-00','','','','N','19:52:00','20:08:27','','','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','2','19:52:40',0,'','reception','2025-12-12 19:52:40','darshan','2025-12-12 20:08:27'),(6064,0,0,'O','N','2526',4020,0,'2025-12-12','2026-03-11',4128,0,4020,'N','','N','','','','Y','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:05:00','0000-00-00','','','','N','20:05:00','00:00:00','','','N','N',NULL,'O','N','Z70','','0000-00-00 00:00:00','5','20:05:10',0,'','shweta','2025-12-12 20:05:10','','0000-00-00 00:00:00'),(6065,0,0,'O','N','2526',4021,0,'2025-12-12','2026-03-11',4129,0,4021,'N','','N','','','NC','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:25:00','0000-00-00','','','','N','20:25:00','00:00:00','','','N','N',NULL,'O','N','L19','','0000-00-00 00:00:00','4','20:25:41',0,'','shweta','2025-12-12 20:25:41','','0000-00-00 00:00:00'),(6066,0,0,'O','N','2526',4022,0,'2025-12-12','2026-03-11',4130,0,4022,'N','','N','','','','Y','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:26:00','0000-00-00','','','','N','20:26:00','00:00:00','','','N','N',NULL,'O','N','Z71','','0000-00-00 00:00:00','5','20:26:58',0,'','priyanshi','2025-12-12 20:26:58','','0000-00-00 00:00:00'),(6067,0,0,'O','N','2526',4023,0,'2025-12-13','2026-03-12',3780,0,4023,'N','','N','','','INJ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:38:00','0000-00-00','','','','N','08:38:00','11:13:48','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','08:38:41',0,'','reception','2025-12-13 08:38:41','drarchit','2025-12-13 11:13:48'),(6068,0,0,'O','N','2526',4018,0,'2025-12-13','0000-00-00',4126,0,4018,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:39:00','0000-00-00','','','','N','08:39:00','10:57:17','','','N','Y',NULL,'O','O','Z02','','0000-00-00 00:00:00','6','08:39:49',0,'','reception','2025-12-13 08:39:49','drsagar','2025-12-13 10:57:17'),(6069,0,0,'O','N','2526',155,0,'2025-12-13','0000-00-00',168,0,155,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:36:00','0000-00-00','','','','N','09:36:00','11:30:14','','','N','Y',NULL,'O','O','Z03','','0000-00-00 00:00:00','5','09:36:53',0,'','reception','2025-12-13 09:36:53','drjayant','2025-12-13 11:30:14'),(6070,0,0,'I','N','2526',3980,278,'2025-12-13','2026-03-12',4087,0,3980,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:53:00','2025-12-14','','1','mo','N','09:53:00','12:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-13 09:55:42','mo','2025-12-14 12:49:32'),(6071,0,0,'O','N','2526',3973,0,'2025-12-13','0000-00-00',4080,0,3973,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:57:00','0000-00-00','','','','N','09:57:00','10:11:32','','','N','Y',NULL,'O','O','Z04','','0000-00-00 00:00:00','3','09:58:03',0,'','priyanshi','2025-12-13 09:58:03','drpratapsinh','2025-12-13 10:11:32'),(6072,0,0,'O','N','2526',4024,0,'2025-12-13','2026-03-12',4131,0,4024,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:58:00','0000-00-00','','','','N','09:58:00','13:29:50','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','09:58:10',0,'','reception','2025-12-13 09:58:10','darshan','2025-12-13 13:29:50'),(6073,0,0,'O','N','2526',4025,0,'2025-12-13','2026-03-12',4132,0,4025,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:00:00','0000-00-00','','','','N','10:00:00','10:44:59','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','3','10:01:17',0,'','priyanshi','2025-12-13 10:01:16','drpratapsinh','2025-12-13 10:44:59'),(6074,0,0,'O','N','2526',4026,0,'2025-12-13','2026-03-12',4133,0,4026,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:01:00','0000-00-00','','','','N','10:01:00','13:01:14','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','5','10:01:36',0,'','drashti','2025-12-13 10:01:36','drjayant','2025-12-13 13:01:14'),(6075,0,0,'O','N','2526',3902,0,'2025-12-13','0000-00-00',4011,0,3902,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:01:00','0000-00-00','','','','N','10:01:00','10:44:32','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','3','10:01:40',0,'','reception','2025-12-13 10:01:40','drpratapsinh','2025-12-13 10:44:32'),(6076,0,0,'O','N','2526',1130,0,'2025-12-13','0000-00-00',1170,0,1130,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:05:00','0000-00-00','','','','N','10:05:00','10:56:44','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','10:05:27',0,'','reception','2025-12-13 10:05:27','darshan','2025-12-13 10:56:44'),(6077,0,0,'O','N','2526',3457,0,'2025-12-13','0000-00-00',3556,0,3457,'N','','N','','','FOLLOWUP V','','N','D06','','N',218,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:06:00','0000-00-00','','','','N','10:06:00','11:00:55','','','N','Y',NULL,'O','O','E02','','0000-00-00 00:00:00','2','10:06:43',0,'','priyanshi','2025-12-13 10:06:43','darshan','2025-12-13 11:00:55'),(6078,0,0,'O','N','2526',2503,0,'2025-12-13','0000-00-00',2560,0,2503,'N','','N','','','','','N','D02','','N',106,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:07:00','0000-00-00','','','','N','10:07:00','10:40:46','','','N','Y',NULL,'O','O','Z08','','0000-00-00 00:00:00','3','10:08:08',0,'','priyanshi','2025-12-13 10:08:08','drpratapsinh','2025-12-13 10:40:46'),(6079,0,0,'O','N','2526',594,0,'2025-12-13','0000-00-00',624,0,594,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:08:00','0000-00-00','','','','N','10:08:00','11:21:27','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','4','10:08:47',0,'','drashti','2025-12-13 10:08:47','drarchit','2025-12-13 11:21:27'),(6080,0,0,'O','N','2526',4027,0,'2025-12-13','2026-03-12',4134,0,4027,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:09:00','0000-00-00','','','','N','10:09:00','11:49:59','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','2','10:09:45',0,'','reception','2025-12-13 10:09:45','darshan','2025-12-13 11:49:59'),(6081,0,0,'O','N','2526',2711,0,'2025-12-13','0000-00-00',2782,0,2711,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:09:00','0000-00-00','','','','N','10:09:00','10:41:04','','','N','Y',NULL,'O','O','Z11','','0000-00-00 00:00:00','3','10:09:54',0,'','priyanshi','2025-12-13 10:09:54','drpratapsinh','2025-12-13 10:41:04'),(6082,0,0,'I','N','2526',3053,279,'2025-12-13','2026-03-12',3134,0,3053,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:19:00','2025-12-14','','1','mo','N','10:19:00','11:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-13 10:20:18','mo','2025-12-14 11:04:55'),(6083,0,0,'O','N','2526',3462,0,'2025-12-13','0000-00-00',3561,0,3462,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:26:00','0000-00-00','','','','N','10:26:00','11:18:06','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:26:33',0,'','reception','2025-12-13 10:26:33','darshan','2025-12-13 11:18:06'),(6084,0,0,'I','N','2526',3999,280,'2025-12-13','2026-03-12',4106,0,3999,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:27:00','2025-12-14','','1','mo','N','10:27:00','17:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-13 10:28:18','vishal','2025-12-14 17:28:20'),(6085,0,0,'O','N','2526',4028,0,'2025-12-13','2026-03-12',4135,0,4028,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','10:52:02','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','3','10:28:29',0,'','priyanshi','2025-12-13 10:28:29','drpratapsinh','2025-12-13 10:52:02'),(6086,0,0,'O','N','2526',3869,0,'2025-12-13','0000-00-00',3978,0,3869,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:29:00','0000-00-00','','','','N','10:29:00','10:46:18','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','3','10:29:39',0,'','drashti','2025-12-13 10:29:39','drpratapsinh','2025-12-13 10:46:18'),(6087,0,0,'O','N','2526',4029,0,'2025-12-13','2026-03-12',4136,0,4029,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','12:05:48','','','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','4','10:33:55',0,'','drashti','2025-12-13 10:33:55','drarchit','2025-12-13 12:05:48'),(6088,0,0,'O','N','2526',4030,0,'2025-12-13','2026-03-12',4137,0,4030,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:34:00','0000-00-00','','','','N','10:34:00','10:57:44','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','6','10:34:01',0,'','priyanshi','2025-12-13 10:34:00','drsagar','2025-12-13 10:57:44'),(6089,0,0,'O','N','2526',4031,0,'2025-12-13','2026-03-12',4138,0,4031,'N','','N','','','NV','','N','D06','','N',282,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:34:00','0000-00-00','','','','N','10:34:00','14:44:59','','N','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','10:34:23',0,'','reception','2025-12-13 10:34:23','darshan','2025-12-13 14:44:59'),(6090,0,0,'O','N','2526',4032,0,'2025-12-13','2026-03-12',4139,0,4032,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:36:00','0000-00-00','','','','N','10:36:00','12:08:30','','','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','10:36:18',0,'','reception','2025-12-13 10:36:18','darshan','2025-12-13 12:08:30'),(6091,0,0,'O','N','2526',3386,0,'2025-12-13','0000-00-00',3482,0,3386,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:36:00','0000-00-00','','','','N','10:36:00','10:56:45','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','3','10:36:36',0,'','priyanshi','2025-12-13 10:36:36','drpratapsinh','2025-12-13 10:56:45'),(6092,0,0,'O','N','2526',2235,0,'2025-12-13','0000-00-00',2291,0,2235,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','11:22:17','','','N','Y',NULL,'O','O','F03','','0000-00-00 00:00:00','2','10:37:18',0,'','reception','2025-12-13 10:37:18','darshan','2025-12-13 11:22:17'),(6093,0,0,'O','N','2526',1476,0,'2025-12-13','0000-00-00',1517,0,1476,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','11:03:48','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','3','10:38:36',0,'','drashti','2025-12-13 10:38:36','drpratapsinh','2025-12-13 11:03:48'),(6094,0,0,'O','N','2526',4033,0,'2025-12-13','2026-03-12',4140,0,4033,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','00:00:00','','','N','N',NULL,'O','N','Z18','','0000-00-00 00:00:00','3','10:39:55',0,'','priyanshi','2025-12-13 10:39:55','','0000-00-00 00:00:00'),(6095,0,0,'O','N','2526',308,0,'2025-12-13','0000-00-00',324,0,308,'N','','N','','','FV ','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','','N','10:40:00','12:12:14','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','2','10:40:32',0,'','reception','2025-12-13 10:40:32','darshan','2025-12-13 12:12:14'),(6096,0,0,'O','N','2526',3568,0,'2025-12-13','0000-00-00',3668,0,3568,'N','','N','','','FOLLOWUP C','','N','D02','','N',29,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:41:00','0000-00-00','','','','N','10:41:00','10:56:33','','','N','Y',NULL,'O','O','Z20','','0000-00-00 00:00:00','3','10:41:19',0,'','drashti','2025-12-13 10:41:19','drpratapsinh','2025-12-13 10:56:33'),(6097,0,0,'O','N','2526',3254,0,'2025-12-13','0000-00-00',3337,0,3254,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','00:00:00','','','N','N',NULL,'O','O','Z21','','0000-00-00 00:00:00','3','10:43:23',0,'','drashti','2025-12-13 10:43:23','','0000-00-00 00:00:00'),(6098,0,0,'O','N','2526',4034,0,'2025-12-13','2026-03-12',4141,0,4034,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','11:40:36','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','4','10:46:22',0,'','drashti','2025-12-13 10:46:22','drarchit','2025-12-13 11:40:36'),(6099,0,0,'O','N','2526',4035,0,'2025-12-13','2026-03-12',4142,0,4035,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','12:49:41','','N','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','10:51:57',0,'','reception','2025-12-13 10:51:57','darshan','2025-12-13 12:49:41'),(6100,0,0,'O','N','2526',1624,0,'2025-12-13','0000-00-00',1669,0,1624,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','11:31:08','','','N','Y',NULL,'O','O','G02','','0000-00-00 00:00:00','2','10:54:15',0,'','reception','2025-12-13 10:54:15','darshan','2025-12-13 11:31:08'),(6101,0,0,'O','N','2526',4036,0,'2025-12-13','2026-03-12',4143,0,4036,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','11:40:23','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','5','10:55:05',0,'','priyanshi','2025-12-13 10:55:05','drjayant','2025-12-13 11:40:23'),(6102,0,0,'O','N','2526',2474,0,'2025-12-13','0000-00-00',2532,0,2474,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','11:24:29','','','N','Y',NULL,'O','O','Z24','','0000-00-00 00:00:00','6','10:57:54',0,'','priyanshi','2025-12-13 10:57:54','drsagar','2025-12-13 11:24:29'),(6103,0,0,'O','N','2526',3582,0,'2025-12-13','0000-00-00',3681,0,3582,'N','','N','','','FC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','11:28:22','','','N','Y',NULL,'O','O','G03','','0000-00-00 00:00:00','4','10:58:36',0,'','drashti','2025-12-13 10:58:36','drarchit','2025-12-13 11:28:22'),(6104,0,0,'O','N','2526',3498,0,'2025-12-13','0000-00-00',3599,0,3498,'N','','N','','','','','N','D02','','N',168,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','11:06:20','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','3','10:59:20',0,'','priyanshi','2025-12-13 10:59:20','drpratapsinh','2025-12-13 11:06:20'),(6105,0,0,'O','N','2526',466,0,'2025-12-13','0000-00-00',492,0,466,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','11:54:00','','','N','Y',NULL,'O','O','H01','','0000-00-00 00:00:00','2','11:01:59',0,'','reception','2025-12-13 11:01:58','darshan','2025-12-13 11:54:00'),(6106,0,0,'O','N','2526',4037,0,'2025-12-13','2026-03-12',4144,0,4037,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','13:58:11','','N','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','2','11:04:23',0,'','reception','2025-12-13 11:04:23','darshan','2025-12-13 13:58:11'),(6107,0,0,'O','N','2526',4038,0,'2025-12-13','2026-03-12',4145,0,4038,'N','','N','','','RNE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','12:29:11','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','2','11:04:24',0,'','drashti','2025-12-13 11:04:24','darshan','2025-12-13 12:29:11'),(6108,0,0,'O','N','2526',4039,0,'2025-12-13','2026-03-12',4146,0,4039,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','14:00:16','','N','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','2','11:06:11',0,'','priyanshi','2025-12-13 11:06:11','darshan','2025-12-13 14:00:16'),(6109,0,0,'O','N','2526',4040,0,'2025-12-13','2026-03-12',4147,0,4040,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','13:33:06','','N','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','2','11:08:39',0,'','reception','2025-12-13 11:08:39','darshan','2025-12-13 13:33:06'),(6110,0,0,'O','N','2526',3704,0,'2025-12-13','0000-00-00',3807,0,3704,'N','','N','','','','','N','D02','','N',263,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','00:00:00','','','N','N',NULL,'O','O','Z29','','0000-00-00 00:00:00','3','11:13:19',0,'','priyanshi','2025-12-13 11:13:19','','0000-00-00 00:00:00'),(6111,0,0,'O','N','2526',4041,0,'2025-12-13','2026-03-12',4148,0,4041,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','14:22:24','','N','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','11:13:30',0,'','reception','2025-12-13 11:13:30','darshan','2025-12-13 14:22:24'),(6112,0,0,'O','N','2526',2960,0,'2025-12-13','0000-00-00',3039,0,2960,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','12:24:17','','','N','Y',NULL,'O','O','I02','','0000-00-00 00:00:00','2','11:18:06',0,'','reception','2025-12-13 11:14:49','darshan','2025-12-13 12:24:17'),(6113,0,0,'O','N','2526',3508,0,'2025-12-13','0000-00-00',3610,0,3508,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','12:54:49','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','2','11:18:06',0,'','reception','2025-12-13 11:17:44','darshan','2025-12-13 12:54:49'),(6114,0,0,'O','N','2526',1280,0,'2025-12-13','0000-00-00',1319,0,1280,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','11:52:35','','','N','Y',NULL,'O','O','Z31','','0000-00-00 00:00:00','4','11:18:46',0,'','drashti','2025-12-13 11:18:46','drarchit','2025-12-13 11:52:35'),(6115,0,0,'O','N','2526',4042,0,'2025-12-13','2026-03-12',4149,0,4042,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','12:47:29','','N','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','4','11:27:29',0,'','reception','2025-12-13 11:27:29','drarchit','2025-12-13 12:47:29'),(6116,0,0,'O','N','2526',3305,0,'2025-12-13','0000-00-00',3394,0,3305,'N','','N','','','','','N','D02','','N',119,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','18:16:50','','','N','Y',NULL,'O','O','Z33','','0000-00-00 00:00:00','3','11:28:59',0,'','priyanshi','2025-12-13 11:28:59','drpratapsinh','2025-12-13 18:16:50'),(6117,0,0,'O','N','2526',4043,0,'2025-12-13','2026-03-12',4150,0,4043,'N','','N','','','NV','','N','D06','','N',283,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','13:55:40','','N','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:31:08',0,'','reception','2025-12-13 11:30:16','darshan','2025-12-13 13:55:40'),(6118,0,0,'O','N','2526',4044,0,'2025-12-13','2026-03-12',4151,0,4044,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','12:10:06','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','4','11:30:40',0,'','priyanshi','2025-12-13 11:30:40','drarchit','2025-12-13 12:10:06'),(6119,0,0,'O','N','2526',3523,0,'2025-12-13','0000-00-00',3625,0,3523,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','13:38:43','','N','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','4','11:32:01',0,'','priyanshi','2025-12-13 11:32:01','drarchit','2025-12-13 13:38:43'),(6120,0,0,'O','N','2526',4045,0,'2025-12-13','2026-03-12',4152,0,4045,'N','','N','','','NE','','N','D06','','N',284,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','12:59:07','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','2','11:49:59',0,'','reception','2025-12-13 11:35:39','darshan','2025-12-13 12:59:07'),(6121,0,0,'O','N','2526',3517,0,'2025-12-13','0000-00-00',3618,0,3517,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','12:21:55','','','N','Y',NULL,'O','O','H03','','0000-00-00 00:00:00','4','11:56:46',0,'','drashti','2025-12-13 11:56:46','drarchit','2025-12-13 12:21:55'),(6122,0,0,'O','N','2526',237,0,'2025-12-13','0000-00-00',252,0,237,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:03:00','0000-00-00','','','','N','12:03:00','12:30:11','','','N','Y',NULL,'O','O','Z37','','0000-00-00 00:00:00','4','12:03:39',0,'','reception','2025-12-13 12:03:39','drarchit','2025-12-13 12:30:11'),(6123,0,0,'O','N','2526',4046,0,'2025-12-13','2026-03-12',4153,0,4046,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:14:00','0000-00-00','','','','N','12:14:00','14:30:22','','N','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','2','12:14:04',0,'','reception','2025-12-13 12:14:04','darshan','2025-12-13 14:30:22'),(6124,0,0,'O','N','2526',4047,0,'2025-12-13','2026-03-12',4154,0,4047,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:14:00','0000-00-00','','','','N','12:14:00','12:37:08','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','4','12:14:41',0,'','drashti','2025-12-13 12:14:41','drarchit','2025-12-13 12:37:08'),(6125,0,0,'O','N','2526',4048,0,'2025-12-13','2026-03-12',4155,0,4048,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:17:00','0000-00-00','','','','N','12:17:00','13:23:46','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','2','12:17:35',0,'','reception','2025-12-13 12:17:35','darshan','2025-12-13 13:23:46'),(6126,0,0,'O','N','2526',4049,0,'2025-12-13','2026-03-12',4156,0,4049,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:19:00','0000-00-00','','','','N','12:19:00','12:45:24','','','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','4','12:19:27',0,'','janvi','2025-12-13 12:19:27','drarchit','2025-12-13 12:45:24'),(6127,0,0,'O','N','2526',3920,0,'2025-12-13','0000-00-00',4028,0,3920,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:24:00','0000-00-00','','','','N','12:24:00','12:55:45','','','N','Y',NULL,'O','O','Z40','','0000-00-00 00:00:00','5','12:25:18',0,'','janvi','2025-12-13 12:25:18','drjayant','2025-12-13 12:55:45'),(6128,0,0,'O','N','2526',1253,0,'2025-12-13','0000-00-00',1294,0,1253,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:25:00','0000-00-00','','','','N','12:25:00','14:11:45','','','N','Y',NULL,'O','O','Z41','','0000-00-00 00:00:00','2','12:25:38',0,'','reception','2025-12-13 12:25:38','darshan','2025-12-13 14:11:45'),(6129,0,0,'O','N','2526',4050,0,'2025-12-13','2026-03-12',3510,0,4050,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','0000-00-00','','','','N','12:30:00','13:35:26','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','5','12:30:22',0,'','drashti','2025-12-13 12:30:22','drjayant','2025-12-13 13:35:26'),(6130,0,0,'O','N','2526',2738,0,'2025-12-13','0000-00-00',2808,0,2738,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','0000-00-00','','','','N','12:30:00','00:00:00','','','N','N',NULL,'O','O','Z43','','0000-00-00 00:00:00','3','12:30:32',0,'','janvi','2025-12-13 12:30:32','','0000-00-00 00:00:00'),(6131,0,0,'I','N','2526',0,281,'2025-12-13','2026-03-12',4157,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','01:00:00','2025-12-13','','1','mo','N','01:00:00','12:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-13 12:32:09','mo','2025-12-13 15:50:44'),(6132,0,0,'O','N','2526',4051,0,'2025-12-13','2026-03-12',4158,0,4051,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:32:00','0000-00-00','','','','N','12:32:00','12:54:39','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','4','12:33:02',0,'','reception','2025-12-13 12:33:02','drarchit','2025-12-13 12:54:39'),(6133,0,0,'O','N','2526',4052,0,'2025-12-13','2026-03-12',4159,0,4052,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:34:00','0000-00-00','','','','N','12:34:00','13:12:45','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','5','12:34:20',0,'','drashti','2025-12-13 12:34:20','drjayant','2025-12-13 13:12:45'),(6134,0,0,'O','N','2526',4053,0,'2025-12-13','2026-03-12',4160,0,4053,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','13:23:40','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','5','12:35:29',0,'','drashti','2025-12-13 12:35:29','drjayant','2025-12-13 13:23:40'),(6135,0,0,'O','N','2526',1053,0,'2025-12-13','0000-00-00',1086,0,1053,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:37:00','0000-00-00','','','','N','12:37:00','14:21:39','','','N','Y',NULL,'O','O','J04','','0000-00-00 00:00:00','2','12:38:01',0,'','reception','2025-12-13 12:38:01','darshan','2025-12-13 14:21:39'),(6136,0,0,'O','N','2526',240,0,'2025-12-13','0000-00-00',255,0,240,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:44:00','0000-00-00','','','','N','12:44:00','00:00:00','','','N','N',NULL,'O','O','J05','','0000-00-00 00:00:00','4','12:45:09',0,'','janvi','2025-12-13 12:45:09','','0000-00-00 00:00:00'),(6137,0,0,'O','N','2526',2193,0,'2025-12-13','0000-00-00',2250,0,2193,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:10:00','0000-00-00','','','','N','13:10:00','14:29:09','','','N','Y',NULL,'O','O','K01','','0000-00-00 00:00:00','2','13:10:42',0,'','reception','2025-12-13 13:10:42','darshan','2025-12-13 14:29:09'),(6138,0,0,'O','N','2526',4054,0,'2025-12-13','2026-03-12',4161,0,4054,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:12:00','0000-00-00','','','','N','13:12:00','19:03:19','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','6','13:12:13',0,'','shweta','2025-12-13 13:12:13','drsagar','2025-12-13 19:03:19'),(6139,0,0,'O','N','2526',2765,0,'2025-12-13','0000-00-00',2835,0,2765,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:13:00','0000-00-00','','','','N','13:13:00','13:23:45','','','N','Y',NULL,'O','O','Z47','','0000-00-00 00:00:00','4','13:13:38',0,'','drashti','2025-12-13 13:13:37','drarchit','2025-12-13 13:23:45'),(6140,0,0,'O','N','2526',1019,0,'2025-12-13','0000-00-00',1053,0,1019,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:11:00','0000-00-00','','','','N','17:11:00','18:11:05','','','N','Y',NULL,'O','O','Z48','','0000-00-00 00:00:00','3','17:11:18',0,'','reception','2025-12-13 17:11:17','drpratapsinh','2025-12-13 18:11:05'),(6141,0,0,'O','N','2526',809,0,'2025-12-13','0000-00-00',840,0,809,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:13:00','0000-00-00','','','','N','17:13:00','18:17:05','','','N','Y',NULL,'O','O','Z49','','0000-00-00 00:00:00','3','17:13:36',0,'','reception','2025-12-13 17:13:36','drpratapsinh','2025-12-13 18:17:05'),(6142,0,0,'O','N','2526',4055,0,'2025-12-13','2026-03-12',4162,0,4055,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:33:00','0000-00-00','','','','N','17:33:00','00:00:00','','','N','N',NULL,'O','N','Z50','','0000-00-00 00:00:00','3','17:34:11',0,'','janvi','2025-12-13 17:34:11','','0000-00-00 00:00:00'),(6143,0,0,'O','N','2526',4056,0,'2025-12-13','2026-03-12',4163,0,4056,'N','','N','','','NC','','N','D02','','N',285,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','00:00:00','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','3','17:48:12',0,'','reception','2025-12-13 17:48:12','','0000-00-00 00:00:00'),(6144,0,0,'O','N','2526',2542,0,'2025-12-13','0000-00-00',2599,0,2542,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','18:46:31','','','N','Y',NULL,'O','O','Z52','','0000-00-00 00:00:00','3','17:49:13',0,'','janvi','2025-12-13 17:49:13','drpratapsinh','2025-12-13 18:46:31'),(6145,0,0,'O','N','2526',4057,0,'2025-12-13','2026-03-12',4164,0,4057,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','00:00:00','','','N','N',NULL,'O','N','Z53','','0000-00-00 00:00:00','3','17:57:54',0,'','reception','2025-12-13 17:57:54','','0000-00-00 00:00:00'),(6146,0,0,'O','N','2526',4058,0,'2025-12-13','2026-03-12',4165,0,4058,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:01:00','0000-00-00','','','','N','18:01:00','18:22:20','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','7','18:01:39',0,'','shweta','2025-12-13 18:01:39','drridham','2025-12-13 18:22:20'),(6147,0,0,'O','N','2526',3901,0,'2025-12-13','0000-00-00',4009,0,3901,'N','','N','','','INJECTION','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','00:00:00','','','N','N',NULL,'O','O','Z55','','0000-00-00 00:00:00','4','18:02:36',0,'','janvi','2025-12-13 18:02:36','','0000-00-00 00:00:00'),(6148,0,0,'O','N','2526',3605,0,'2025-12-13','0000-00-00',3705,0,3605,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','19:15:03','','','N','Y',NULL,'O','O','Z56','','0000-00-00 00:00:00','3','18:29:42',0,'','janvi','2025-12-13 18:29:42','drpratapsinh','2025-12-13 19:15:03'),(6149,0,0,'O','N','2526',3031,0,'2025-12-13','0000-00-00',3112,0,3031,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','19:20:28','','','N','Y',NULL,'O','O','Z57','','0000-00-00 00:00:00','3','18:34:33',0,'','reception','2025-12-13 18:34:33','drpratapsinh','2025-12-13 19:20:28'),(6150,0,0,'O','N','2526',4059,0,'2025-12-13','2026-03-12',4166,0,4059,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:42:00','0000-00-00','','','','N','18:42:00','00:00:00','','','N','N',NULL,'O','N','Z58','','0000-00-00 00:00:00','7','18:42:23',0,'','shweta','2025-12-13 18:42:23','','0000-00-00 00:00:00'),(6151,0,0,'O','N','2526',1288,0,'2025-12-13','0000-00-00',1327,0,1288,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:58:00','0000-00-00','','','','N','18:58:00','19:20:46','','','N','Y',NULL,'O','O','Z59','','0000-00-00 00:00:00','3','18:59:26',0,'','janvi','2025-12-13 18:59:26','drpratapsinh','2025-12-13 19:20:46'),(6152,0,0,'O','N','2526',3310,0,'2025-12-13','0000-00-00',3399,0,3310,'N','','N','','','DRESSING','','N','D02','','N',90,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:02:00','0000-00-00','','','','N','19:02:00','00:00:00','','','N','Y',NULL,'O','O','Z60','','0000-00-00 00:00:00','3','19:03:23',0,'','janvi','2025-12-13 19:03:23','','0000-00-00 00:00:00'),(6153,0,0,'O','N','2526',4060,0,'2025-12-13','2026-03-12',4167,0,4060,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:26:00','0000-00-00','','','','N','19:26:00','00:00:00','','','N','N',NULL,'O','N','Z61','','0000-00-00 00:00:00','6','19:26:43',0,'','shweta','2025-12-13 19:26:43','','0000-00-00 00:00:00'),(6154,0,0,'O','N','2526',1476,0,'2025-12-13','0000-00-00',1517,0,1476,'N','','N','','','PROC.','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:11:00','0000-00-00','','','','N','20:11:00','00:00:00','','','N','N',NULL,'O','O','Y01','','0000-00-00 00:00:00','3','20:11:04',0,'','reception','2025-12-13 20:11:04','','0000-00-00 00:00:00'),(6155,0,0,'I','N','2526',4033,282,'2025-12-13','2026-03-12',4140,0,4033,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','21:19:00','2025-12-16','','1','mo','N','21:19:00','12:50:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-13 21:21:36','vishal','2025-12-16 12:19:24'),(6156,0,0,'O','N','2526',3264,0,'2025-12-14','0000-00-00',3352,0,3264,'N','','N','','','ER','Y','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:25:00','0000-00-00','','','','N','09:25:00','00:00:00','','','N','N',NULL,'O','O','Z01','','0000-00-00 00:00:00','6','09:25:18',0,'','priyanshi','2025-12-14 09:25:18','','0000-00-00 00:00:00'),(6157,0,0,'O','N','2526',4061,0,'2025-12-14','2026-03-13',4168,0,4061,'N','','N','','','ER','Y','N','D02','','N',0,'','42',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:36:00','0000-00-00','','','','N','09:36:00','00:00:00','','','N','N',NULL,'O','N','Z02','','0000-00-00 00:00:00','','00:00:00',0,'','priyanshi','2025-12-14 09:36:01','','0000-00-00 00:00:00'),(6158,0,0,'O','N','2526',4062,0,'2025-12-14','2026-03-13',3765,0,4062,'N','','N','','','','Y','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:50:00','0000-00-00','','','','N','09:50:00','00:00:00','','','N','N',NULL,'O','N','Z03','','0000-00-00 00:00:00','','00:00:00',0,'','priyanshi','2025-12-14 09:50:53','','0000-00-00 00:00:00'),(6159,0,0,'O','N','2526',4063,0,'2025-12-14','2026-03-13',4169,0,4063,'N','','N','','','','Y','N','D27','','N',0,'','286',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:01:00','0000-00-00','','','','N','10:01:00','00:00:00','','','N','N',NULL,'O','N','Z04','','0000-00-00 00:00:00','','00:00:00',0,'','priyanshi','2025-12-14 10:01:42','','0000-00-00 00:00:00'),(6160,0,0,'O','N','2526',4064,0,'2025-12-14','2026-03-13',4170,0,4064,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','','N','10:40:00','00:00:00','','','N','N',NULL,'O','N','Z05','','0000-00-00 00:00:00','3','10:40:01',0,'','priyanshi','2025-12-14 10:40:01','','0000-00-00 00:00:00'),(6161,0,0,'I','N','2526',0,283,'2025-12-14','2026-03-13',4171,0,0,'N','','N','','','','N','N','D02','','N',0,'','42',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','01:00:00','2025-12-14','','1','mo','N','01:00:00','17:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-14 10:59:11','mo','2025-12-14 17:04:22'),(6162,0,0,'O','N','2526',3305,0,'2025-12-14','0000-00-00',3394,0,3305,'N','','N','','','','Y','N','D02','','N',119,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','00:00:00','','','N','N',NULL,'O','O','Z06','','0000-00-00 00:00:00','3','11:19:55',0,'','priyanshi','2025-12-14 11:19:55','','0000-00-00 00:00:00'),(6163,0,0,'I','N','2526',0,284,'2025-12-14','2026-03-13',4172,0,0,'N','','N','','','','N','N','D02','','N',0,'','42',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','2025-12-19','','1','mo','N','11:30:00','14:21:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-14 11:30:38','mo','2025-12-19 14:58:33'),(6164,0,0,'O','N','2526',2738,0,'2025-12-14','0000-00-00',2808,0,2738,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:57:00','0000-00-00','','','','N','12:57:00','00:00:00','','','N','N',NULL,'O','O','Z07','','0000-00-00 00:00:00','3','12:57:22',0,'','priyanshi','2025-12-14 12:57:22','','0000-00-00 00:00:00'),(6165,0,0,'I','N','2526',0,285,'2025-12-14','2026-03-13',4173,0,0,'N','','N','','','','N','N','D02','','N',0,'','78',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:50:00','2025-12-22','','4','mo','N','12:50:00','13:50:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-14 12:58:31','riya','2025-12-22 14:51:32'),(6166,0,0,'I','N','2526',4000,286,'2025-12-14','2026-03-13',4107,4107,4000,'N','','N','','','','N','N','D03','','N',0,'','6',0,'','','','','N','','P','','Y','12','','RC-HS25--15327337','0000-00-00','','','',1,'N','N','N','17:00:00','2025-12-17','','1','mo','N','17:00:00','14:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-14 17:21:28','mo','2025-12-17 14:27:19'),(6167,0,0,'I','N','2526',0,287,'2025-12-14','2026-03-13',4174,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','21:00:00','2025-12-15','','1','mo','N','21:00:00','21:45:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-14 21:17:46','mo','2025-12-15 21:42:20'),(6168,0,0,'O','N','2526',3378,0,'2025-12-15','0000-00-00',3473,0,3378,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:48:00','0000-00-00','','','','N','08:48:00','11:05:04','','','N','Y',NULL,'O','O','Z01','','0000-00-00 00:00:00','3','08:48:46',0,'','reception','2025-12-15 08:48:46','drpratapsinh','2025-12-15 11:05:04'),(6169,0,0,'O','N','2526',4065,0,'2025-12-15','2026-03-14',4175,0,4065,'N','','N','','','ER','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','08:50:00','0000-00-00','','','','N','08:50:00','11:34:03','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','6','08:50:21',0,'','reception','2025-12-15 08:50:21','drsagar','2025-12-15 11:34:03'),(6170,0,0,'O','N','2526',4066,0,'2025-12-15','2026-03-14',4176,0,4066,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:14:00','0000-00-00','','','','N','09:14:00','11:00:34','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','3','09:14:59',0,'','priyanshi','2025-12-15 09:14:59','drpratapsinh','2025-12-15 11:00:34'),(6171,0,0,'O','N','2526',4067,0,'2025-12-15','2026-03-14',4177,0,4067,'N','','N','','','ER','','N','D02','','N',0,'','42',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:15:00','0000-00-00','','','','N','09:15:00','00:00:00','','','N','N',NULL,'O','N','Z04','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-12-15 09:15:05','','0000-00-00 00:00:00'),(6172,0,0,'O','N','2526',1227,0,'2025-12-15','0000-00-00',1268,0,1227,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:06:00','0000-00-00','','','','N','10:06:00','11:04:49','','','N','Y',NULL,'O','O','Z05','','0000-00-00 00:00:00','3','10:06:22',0,'','reception','2025-12-15 10:06:22','drpratapsinh','2025-12-15 11:04:49'),(6173,0,0,'O','N','2526',4068,0,'2025-12-15','2026-03-14',4178,0,4068,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:10:00','0000-00-00','','','','N','10:10:00','13:25:11','','N','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','2','10:10:32',0,'','reception','2025-12-15 10:10:32','darshan','2025-12-15 13:25:11'),(6174,0,0,'O','N','2526',3366,0,'2025-12-15','0000-00-00',3463,0,3366,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:13:00','0000-00-00','','','','N','10:13:00','11:04:50','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','2','10:13:54',0,'','reception','2025-12-15 10:13:54','darshan','2025-12-15 11:04:50'),(6175,0,0,'O','N','2526',4069,0,'2025-12-15','2026-03-14',4179,0,4069,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:15:00','0000-00-00','','','','N','10:15:00','12:44:16','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','5','11:30:26',0,'','drashti','2025-12-15 10:15:39','drjayant','2025-12-15 12:44:16'),(6176,0,0,'O','N','2526',3902,0,'2025-12-15','0000-00-00',4011,0,3902,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','11:05:26','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','3','10:16:54',0,'','reception','2025-12-15 10:16:54','drpratapsinh','2025-12-15 11:05:26'),(6177,0,0,'O','N','2526',3514,0,'2025-12-15','0000-00-00',3615,0,3514,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:17:00','0000-00-00','','','','N','10:17:00','11:20:27','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','2','10:17:37',0,'','reception','2025-12-15 10:17:37','darshan','2025-12-15 11:20:27'),(6178,0,0,'O','N','2526',4070,0,'2025-12-15','2026-03-14',4180,0,4070,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:25:00','0000-00-00','','','','N','10:25:00','13:49:00','','N','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','2','10:25:08',0,'','reception','2025-12-15 10:25:08','darshan','2025-12-15 13:49:00'),(6179,0,0,'O','N','2526',4071,0,'2025-12-15','2026-03-14',4181,0,4071,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:30:00','0000-00-00','','','','N','10:30:00','11:15:34','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','3','10:30:15',0,'','reception','2025-12-15 10:30:15','drpratapsinh','2025-12-15 11:15:34'),(6180,0,0,'O','N','2526',2850,0,'2025-12-15','0000-00-00',2922,0,2850,'N','','N','','','FOLLOWUP C','','N','D02','','N',105,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:30:00','0000-00-00','','','','N','10:30:00','11:20:12','','','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','3','10:30:56',0,'','drashti','2025-12-15 10:30:56','drpratapsinh','2025-12-15 11:20:12'),(6181,0,0,'O','N','2526',3712,0,'2025-12-15','0000-00-00',3814,0,3712,'N','','N','','','','','N','D02','','N',265,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:32:00','0000-00-00','','','','N','10:32:00','11:22:37','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','3','10:32:25',0,'','reception','2025-12-15 10:32:25','drpratapsinh','2025-12-15 11:22:37'),(6182,0,0,'O','N','2526',4072,0,'2025-12-15','2026-03-14',4182,0,4072,'N','','N','','','','','N','D14','','N',171,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:32:00','0000-00-00','','','','N','10:32:00','00:00:00','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','7','10:32:50',0,'','shweta','2025-12-15 10:32:50','','0000-00-00 00:00:00'),(6183,0,0,'O','N','2526',2239,0,'2025-12-15','0000-00-00',2295,0,2239,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:34:00','0000-00-00','','','','N','10:34:00','11:44:22','','','N','Y',NULL,'O','O','Z15','','0000-00-00 00:00:00','2','10:34:25',0,'','reception','2025-12-15 10:34:25','darshan','2025-12-15 11:44:22'),(6184,0,0,'O','N','2526',2277,0,'2025-12-15','0000-00-00',2334,0,2277,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:35:00','0000-00-00','','','','N','10:35:00','11:12:45','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','10:35:13',0,'','drashti','2025-12-15 10:35:13','darshan','2025-12-15 11:12:45'),(6185,0,0,'O','N','2526',4073,0,'2025-12-15','2026-03-14',4183,0,4073,'N','','N','','','','','N','D14','','N',287,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','00:00:00','','','N','N',NULL,'O','N','Z16','','0000-00-00 00:00:00','7','10:39:47',0,'','shweta','2025-12-15 10:39:47','','0000-00-00 00:00:00'),(6186,0,0,'O','N','2526',4074,0,'2025-12-15','2026-03-14',3778,0,4074,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','11:30:51','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','3','10:43:18',0,'','priyanshi','2025-12-15 10:43:18','drpratapsinh','2025-12-15 11:30:51'),(6187,0,0,'O','N','2526',1965,0,'2025-12-15','0000-00-00',2013,0,1965,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:45:00','0000-00-00','','','','N','10:45:00','11:57:25','','','N','Y',NULL,'O','O','Z18','','0000-00-00 00:00:00','2','10:45:48',0,'','reception','2025-12-15 10:45:48','darshan','2025-12-15 11:57:25'),(6188,0,0,'O','N','2526',3695,0,'2025-12-15','0000-00-00',3347,0,3695,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','11:37:48','','','N','Y',NULL,'O','O','Z19','','0000-00-00 00:00:00','3','10:48:08',0,'','drashti','2025-12-15 10:48:08','drpratapsinh','2025-12-15 11:37:48'),(6189,0,0,'O','N','2526',4075,0,'2025-12-15','2026-03-14',4184,0,4075,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','13:54:43','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:48:23',0,'','reception','2025-12-15 10:48:23','darshan','2025-12-15 13:54:43'),(6190,0,0,'O','N','2526',4076,0,'2025-12-15','2026-03-14',4185,0,4076,'N','','N','','','','','N','D02','','N',223,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','12:05:27','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','3','10:51:10',0,'','reception','2025-12-15 10:51:10','drpratapsinh','2025-12-15 12:05:27'),(6191,0,0,'O','N','2526',3720,0,'2025-12-15','0000-00-00',3721,0,3720,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:52:00','0000-00-00','','','','N','10:52:00','11:42:51','','','N','Y',NULL,'O','O','Z21','','0000-00-00 00:00:00','3','10:52:12',0,'','priyanshi','2025-12-15 10:52:12','drpratapsinh','2025-12-15 11:42:51'),(6192,0,0,'O','N','2526',4077,0,'2025-12-15','2026-03-14',4186,0,4077,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:53:00','0000-00-00','','','','N','10:53:00','11:52:31','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','3','10:53:24',0,'','reception','2025-12-15 10:53:24','drpratapsinh','2025-12-15 11:52:31'),(6193,0,0,'O','N','2526',811,0,'2025-12-15','0000-00-00',842,0,811,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','13:43:10','','','N','Y',NULL,'O','O','Z23','','0000-00-00 00:00:00','5','11:30:26',0,'','drashti','2025-12-15 10:54:13','drjayant','2025-12-15 13:43:10'),(6194,0,0,'O','N','2526',4078,0,'2025-12-15','2026-03-14',4187,0,4078,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','12:06:15','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','3','10:54:40',0,'','priyanshi','2025-12-15 10:54:40','drpratapsinh','2025-12-15 12:06:15'),(6195,0,0,'O','N','2526',3755,0,'2025-12-15','0000-00-00',3858,0,3755,'N','','N','','','FOLLOWUP','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','11:18:00','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','4','10:56:37',0,'','drashti','2025-12-15 10:56:37','drarchit','2025-12-15 11:18:00'),(6196,0,0,'O','N','2526',4079,0,'2025-12-15','2026-03-14',4188,0,4079,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','13:50:44','','N','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','2','10:56:40',0,'','reception','2025-12-15 10:56:40','darshan','2025-12-15 13:50:44'),(6197,0,0,'O','N','2526',3148,0,'2025-12-15','0000-00-00',3234,0,3148,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','11:24:43','','','N','Y',NULL,'O','O','Z27','','0000-00-00 00:00:00','4','10:58:06',0,'','reception','2025-12-15 10:58:06','drarchit','2025-12-15 11:24:43'),(6198,0,0,'O','N','2526',3498,0,'2025-12-15','0000-00-00',3599,0,3498,'N','','N','','','FOLLOWUP C','','N','D02','','N',168,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','12:37:29','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','3','11:01:59',0,'','drashti','2025-12-15 11:01:59','drpratapsinh','2025-12-15 12:37:29'),(6199,0,0,'O','N','2526',3589,0,'2025-12-15','0000-00-00',3688,0,3589,'N','','N','','','FV','','N','D06','','N',257,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','11:25:10','','','N','Y',NULL,'O','O','G02','','0000-00-00 00:00:00','2','11:02:12',0,'','reception','2025-12-15 11:02:12','darshan','2025-12-15 11:25:10'),(6200,0,0,'O','N','2526',3382,0,'2025-12-15','0000-00-00',3477,0,3382,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','12:44:15','','N','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','4','11:04:17',0,'','drashti','2025-12-15 11:04:17','drarchit','2025-12-15 12:44:15'),(6201,0,0,'I','N','2526',0,288,'2025-12-15','2026-03-14',4189,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:00:00','2025-12-16','','1','mo','N','11:00:00','11:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-15 11:04:38','mo','2025-12-16 12:03:21'),(6202,0,0,'O','N','2526',4080,0,'2025-12-15','2026-03-14',4190,0,4080,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','00:00:00','','','N','N',NULL,'O','N','Z29','','0000-00-00 00:00:00','7','11:07:44',0,'','shweta','2025-12-15 11:07:44','','0000-00-00 00:00:00'),(6203,0,0,'O','N','2526',3305,0,'2025-12-15','0000-00-00',3394,0,3305,'N','','N','','','DRESSING','','N','D02','','N',119,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','12:16:19','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','3','11:10:10',0,'','drashti','2025-12-15 11:10:10','drpratapsinh','2025-12-15 12:16:19'),(6204,0,0,'O','N','2526',4081,0,'2025-12-15','2026-03-14',4191,0,4081,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','14:29:01','','N','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','2','11:11:13',0,'','reception','2025-12-15 11:11:13','darshan','2025-12-15 14:29:01'),(6205,0,0,'O','N','2526',1508,0,'2025-12-15','0000-00-00',1549,0,1508,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','12:17:44','','','N','Y',NULL,'O','O','I01','','0000-00-00 00:00:00','2','11:12:06',0,'','reception','2025-12-15 11:12:06','darshan','2025-12-15 12:17:44'),(6206,0,0,'O','N','2526',4082,0,'2025-12-15','2026-03-14',4192,0,4082,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','13:42:04','','','N','Y',NULL,'O','N','Z32','','0000-00-00 00:00:00','5','11:30:26',0,'','priyanshi','2025-12-15 11:12:09','drjayant','2025-12-15 13:42:04'),(6207,0,0,'O','N','2526',4083,0,'2025-12-15','2026-03-14',4193,0,4083,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','13:41:29','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','5','11:30:26',0,'','priyanshi','2025-12-15 11:12:58','drjayant','2025-12-15 13:41:29'),(6208,0,0,'O','N','2526',4084,0,'2025-12-15','2026-03-14',4194,0,4084,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','00:00:00','','','N','N',NULL,'O','N','Z34','','0000-00-00 00:00:00','7','11:14:02',0,'','shweta','2025-12-15 11:14:02','','0000-00-00 00:00:00'),(6209,0,0,'O','N','2526',4085,0,'2025-12-15','2026-03-14',4195,0,4085,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','11:34:55','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','4','11:14:09',0,'','drashti','2025-12-15 11:14:09','drarchit','2025-12-15 11:34:55'),(6210,0,0,'O','N','2526',4086,0,'2025-12-15','2026-03-14',4196,0,4086,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','12:19:13','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','3','11:14:37',0,'','priyanshi','2025-12-15 11:14:37','drpratapsinh','2025-12-15 12:19:13'),(6211,0,0,'O','N','2526',4087,0,'2025-12-15','2026-03-14',4197,0,4087,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','13:21:02','','N','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','4','11:17:17',0,'','drashti','2025-12-15 11:17:17','drarchit','2025-12-15 13:21:02'),(6212,0,0,'O','N','2526',4088,0,'2025-12-15','2026-03-14',4198,0,4088,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:17:00','0000-00-00','','','','N','11:17:00','18:18:39','','N','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','11:17:59',0,'','reception','2025-12-15 11:17:59','drarchit','2025-12-15 18:18:39'),(6213,0,0,'O','N','2526',4089,0,'2025-12-15','2026-03-14',4199,0,4089,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','11:51:20','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','5','11:30:26',0,'','priyanshi','2025-12-15 11:19:19','drjayant','2025-12-15 11:51:20'),(6214,0,0,'O','N','2526',4090,0,'2025-12-15','2026-03-14',4200,0,4090,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','14:01:46','','N','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','2','11:19:46',0,'','reception','2025-12-15 11:19:46','darshan','2025-12-15 14:01:46'),(6215,0,0,'O','N','2526',4091,0,'2025-12-15','2026-03-14',4201,0,4091,'N','','N','','','','','N','D14','','N',288,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','00:00:00','','','N','N',NULL,'O','N','Z39','','0000-00-00 00:00:00','7','11:20:16',0,'','shweta','2025-12-15 11:20:16','shweta','2025-12-15 11:22:38'),(6216,0,0,'O','N','2526',3358,0,'2025-12-15','0000-00-00',3455,0,3358,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','12:54:15','','','N','Y',NULL,'O','O','J01','','0000-00-00 00:00:00','2','11:21:43',0,'','reception','2025-12-15 11:21:43','darshan','2025-12-15 12:54:15'),(6217,0,0,'O','N','2526',2590,0,'2025-12-15','0000-00-00',2650,0,2590,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','00:00:00','','','N','N',NULL,'O','O','Z40','','0000-00-00 00:00:00','7','11:25:21',0,'','shweta','2025-12-15 11:25:21','','0000-00-00 00:00:00'),(6218,0,0,'O','N','2526',4092,0,'2025-12-15','2026-03-14',4202,0,4092,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','18:28:10','','','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','4','11:26:03',0,'','drashti','2025-12-15 11:26:03','drarchit','2025-12-15 18:28:10'),(6219,0,0,'O','N','2526',4093,0,'2025-12-15','2026-03-14',4203,0,4093,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','00:00:00','','','N','N',NULL,'O','N','Z41','','0000-00-00 00:00:00','7','11:27:43',0,'','shweta','2025-12-15 11:27:43','','0000-00-00 00:00:00'),(6220,0,0,'O','N','2526',2733,0,'2025-12-15','0000-00-00',2803,0,2733,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','00:00:00','','','N','Y',NULL,'O','O','Z42','','0000-00-00 00:00:00','4','11:30:03',0,'','priyanshi','2025-12-15 11:30:03','drashti','2025-12-15 11:33:46'),(6221,0,0,'O','N','2526',2733,0,'2025-12-15','0000-00-00',2803,0,2733,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','00:00:00','','','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','5','11:30:26',0,'','priyanshi','2025-12-15 11:30:26','drashti','2025-12-15 11:33:46'),(6222,0,0,'O','N','2526',4094,0,'2025-12-15','2026-03-14',4204,0,4094,'N','','N','','','','','N','D14','','N',234,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','00:00:00','','','N','N',NULL,'O','N','Z43','','0000-00-00 00:00:00','7','11:30:53',0,'','shweta','2025-12-15 11:30:53','','0000-00-00 00:00:00'),(6223,0,0,'O','N','2526',4095,0,'2025-12-15','2026-03-14',4205,0,4095,'N','','N','','','','','N','D03','','N',289,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:35:00','0000-00-00','','','','N','11:35:00','11:58:18','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','6','11:35:05',0,'','shweta','2025-12-15 11:35:05','drsagar','2025-12-15 11:58:18'),(6224,0,0,'O','N','2526',4096,0,'2025-12-15','2026-03-14',4206,0,4096,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:37:00','0000-00-00','','','','N','11:37:00','14:08:52','','N','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','2','11:37:32',0,'','reception','2025-12-15 11:37:32','darshan','2025-12-15 14:08:52'),(6225,0,0,'O','N','2526',4097,0,'2025-12-15','2026-03-14',4207,0,4097,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:37:00','0000-00-00','','','','N','11:37:00','11:56:27','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','4','11:37:40',0,'','drashti','2025-12-15 11:37:40','drarchit','2025-12-15 11:56:27'),(6226,0,0,'O','N','2526',4098,0,'2025-12-15','2026-03-14',4208,0,4098,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','12:03:30','','N','N','Y',NULL,'O','N','H06','','0000-00-00 00:00:00','4','11:40:47',0,'','drashti','2025-12-15 11:40:47','drarchit','2025-12-15 12:03:30'),(6227,0,0,'O','N','2526',3887,0,'2025-12-15','0000-00-00',3996,0,3887,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:42:00','0000-00-00','','','','N','11:42:00','12:27:22','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','3','11:42:52',0,'','priyanshi','2025-12-15 11:42:52','drpratapsinh','2025-12-15 12:27:22'),(6228,0,0,'O','N','2526',4099,0,'2025-12-15','2026-03-14',4209,0,4099,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','12:19:39','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','6','11:43:33',0,'','shweta','2025-12-15 11:43:33','drsagar','2025-12-15 12:19:39'),(6229,0,0,'O','N','2526',3303,0,'2025-12-15','0000-00-00',3392,0,3303,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','12:58:17','','','N','Y',NULL,'O','O','Z47','','0000-00-00 00:00:00','2','11:46:07',0,'','priyanshi','2025-12-15 11:46:07','darshan','2025-12-15 12:58:17'),(6230,0,0,'O','N','2526',4100,0,'2025-12-15','2026-03-14',4210,0,4100,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','13:10:39','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','2','11:47:17',0,'','reception','2025-12-15 11:47:17','darshan','2025-12-15 13:10:39'),(6231,0,0,'O','N','2526',2075,0,'2025-12-15','0000-00-00',2129,0,2075,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','13:08:16','','','N','Y',NULL,'O','O','H07','','0000-00-00 00:00:00','2','11:47:50',0,'','reception','2025-12-15 11:47:50','darshan','2025-12-15 13:08:16'),(6232,0,0,'O','N','2526',3725,0,'2025-12-15','0000-00-00',3828,0,3725,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','00:00:00','','','N','N',NULL,'O','O','Z49','','0000-00-00 00:00:00','7','11:48:13',0,'','shweta','2025-12-15 11:48:13','','0000-00-00 00:00:00'),(6233,0,0,'O','N','2526',1715,0,'2025-12-15','0000-00-00',1759,0,1715,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:49:00','0000-00-00','','','','N','11:49:00','12:30:30','','','N','Y',NULL,'O','O','Z50','','0000-00-00 00:00:00','3','11:49:04',0,'','priyanshi','2025-12-15 11:49:04','drpratapsinh','2025-12-15 12:30:30'),(6234,0,0,'O','N','2526',4101,0,'2025-12-15','2026-03-14',4211,0,4101,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','12:09:07','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','4','11:51:38',0,'','drashti','2025-12-15 11:51:38','drarchit','2025-12-15 12:09:07'),(6235,0,0,'O','N','2526',4102,0,'2025-12-15','2026-03-14',4212,0,4102,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','00:00:00','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','7','11:54:29',0,'','shweta','2025-12-15 11:54:29','','0000-00-00 00:00:00'),(6236,0,0,'O','N','2526',3673,0,'2025-12-15','0000-00-00',3777,0,3673,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','13:00:44','','','N','Y',NULL,'O','O','Z52','','0000-00-00 00:00:00','6','11:56:30',0,'','shweta','2025-12-15 11:56:30','drsagar','2025-12-15 13:00:44'),(6237,0,0,'O','N','2526',4103,0,'2025-12-15','2026-03-14',4213,0,4103,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:57:00','0000-00-00','','','','N','11:57:00','12:01:40','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','5','11:57:11',0,'','priyanshi','2025-12-15 11:57:11','drjayant','2025-12-15 12:01:40'),(6238,0,0,'O','N','2526',3854,0,'2025-12-15','0000-00-00',3963,0,3854,'N','','N','','','','','N','D02','','N',275,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:57:00','0000-00-00','','','','N','11:57:00','12:36:25','','','N','Y',NULL,'O','O','Z54','','0000-00-00 00:00:00','3','11:57:56',0,'','reception','2025-12-15 11:57:56','drpratapsinh','2025-12-15 12:36:25'),(6239,0,0,'O','N','2526',3520,0,'2025-12-15','0000-00-00',3622,0,3520,'N','','N','','','FOLLOWUP','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','12:10:19','','','N','Y',NULL,'O','O','Z55','','0000-00-00 00:00:00','5','12:02:45',0,'','drashti','2025-12-15 12:02:45','drjayant','2025-12-15 12:10:19'),(6240,0,0,'O','N','2526',4104,0,'2025-12-15','2026-03-14',4214,0,4104,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:04:00','0000-00-00','','','','N','12:04:00','12:46:25','','','N','Y',NULL,'O','N','Z56','','0000-00-00 00:00:00','6','12:04:46',0,'','shweta','2025-12-15 12:04:46','drsagar','2025-12-15 12:46:25'),(6241,0,0,'O','N','2526',4105,0,'2025-12-15','2026-03-14',3871,0,4105,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','13:41:09','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','5','12:06:26',0,'','drashti','2025-12-15 12:06:26','drjayant','2025-12-15 13:41:09'),(6242,0,0,'O','N','2526',2917,0,'2025-12-15','0000-00-00',2994,0,2917,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:06:00','0000-00-00','','','','N','12:06:00','12:39:29','','','N','Y',NULL,'O','O','I03','','0000-00-00 00:00:00','2','12:06:29',0,'','reception','2025-12-15 12:06:29','darshan','2025-12-15 12:39:29'),(6243,0,0,'O','N','2526',4106,0,'2025-12-15','2026-03-14',4215,0,4106,'N','','N','','','','','N','D02','','N',60,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:08:00','0000-00-00','','','','N','12:08:00','12:41:34','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','3','12:08:29',0,'','urvashi','2025-12-15 12:08:29','drpratapsinh','2025-12-15 12:41:34'),(6244,0,0,'O','N','2526',2532,0,'2025-12-15','0000-00-00',2589,0,2532,'N','','N','','','FV','','N','D06','','N',180,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','12:30:27','','','N','Y',NULL,'O','O','I04','','0000-00-00 00:00:00','2','12:09:07',0,'','reception','2025-12-15 12:09:07','darshan','2025-12-15 12:30:27'),(6245,0,0,'O','N','2526',4107,0,'2025-12-15','2026-03-14',4216,0,4107,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:11:00','0000-00-00','','','','N','12:11:00','14:15:53','','N','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:11:32',0,'','reception','2025-12-15 12:11:32','darshan','2025-12-15 14:15:53'),(6246,0,0,'O','N','2526',4108,0,'2025-12-15','2026-03-14',4217,0,4108,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:12:00','0000-00-00','','','','N','12:12:00','14:10:40','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','5','12:12:44',0,'','urvashi','2025-12-15 12:12:44','drjayant','2025-12-15 14:10:40'),(6247,0,0,'O','N','2526',4109,0,'2025-12-15','2026-03-14',4218,0,4109,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:15:00','0000-00-00','','','','N','12:15:00','12:23:02','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','3','12:15:14',0,'','urvashi','2025-12-15 12:15:14','drpratapsinh','2025-12-15 12:23:02'),(6248,0,0,'O','N','2526',4110,0,'2025-12-15','2026-03-14',4219,0,4110,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:15:00','0000-00-00','','','','N','12:15:00','12:27:25','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','6','12:15:40',0,'','shweta','2025-12-15 12:15:40','drsagar','2025-12-15 12:27:25'),(6249,0,0,'O','N','2526',4111,0,'2025-12-15','2026-03-14',4220,0,4111,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:17:00','0000-00-00','','','','N','12:17:00','12:47:04','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','3','12:17:33',0,'','drashti','2025-12-15 12:17:33','drpratapsinh','2025-12-15 12:47:04'),(6250,0,0,'O','N','2526',4112,0,'2025-12-15','2026-03-14',4221,0,4112,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:18:00','0000-00-00','','','','N','12:18:00','14:19:36','','N','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','2','12:18:18',0,'','reception','2025-12-15 12:18:18','darshan','2025-12-15 14:19:36'),(6251,0,0,'O','N','2526',3265,0,'2025-12-15','0000-00-00',3353,0,3265,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:20:00','0000-00-00','','','','N','12:20:00','13:05:44','','','N','Y',NULL,'O','O','Z64','','0000-00-00 00:00:00','6','12:21:00',0,'','shweta','2025-12-15 12:21:00','drsagar','2025-12-15 13:05:44'),(6252,0,0,'O','N','2526',4044,0,'2025-12-15','0000-00-00',4151,0,4044,'N','','N','','','DRESSING','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:31:00','0000-00-00','','','','N','12:31:00','12:44:29','','','N','Y',NULL,'O','O','Z65','','0000-00-00 00:00:00','4','12:31:52',0,'','drashti','2025-12-15 12:31:52','drarchit','2025-12-15 12:44:29'),(6253,0,0,'O','N','2526',3859,0,'2025-12-15','0000-00-00',3968,0,3859,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:32:00','0000-00-00','','','','N','12:32:00','16:58:12','','','N','Y',NULL,'O','O','Z66','','0000-00-00 00:00:00','3','12:32:34',0,'','urvashi','2025-12-15 12:32:34','drpratapsinh','2025-12-15 16:58:12'),(6254,0,0,'I','N','2526',0,289,'2025-12-15','2026-03-14',4222,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:30:00','2025-12-17','','1','mo','N','12:30:00','13:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-15 12:33:13','mo','2025-12-17 14:40:00'),(6255,0,0,'O','N','2526',4113,0,'2025-12-15','2026-03-14',4223,0,4113,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:39:00','0000-00-00','','','','N','12:39:00','13:39:38','','','N','Y',NULL,'O','N','Z67','','0000-00-00 00:00:00','5','12:39:15',0,'','drashti','2025-12-15 12:39:15','drjayant','2025-12-15 13:39:38'),(6256,0,0,'O','N','2526',4114,0,'2025-12-15','2026-03-14',4224,0,4114,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:42:00','0000-00-00','','','','N','12:42:00','13:16:30','','N','N','Y',NULL,'O','N','Z68','','0000-00-00 00:00:00','4','12:42:08',0,'','reception','2025-12-15 12:42:08','drarchit','2025-12-15 13:16:30'),(6257,0,0,'O','N','2526',1051,0,'2025-12-15','0000-00-00',1085,0,1051,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:59:00','0000-00-00','','','','N','12:59:00','13:41:40','','','N','Y',NULL,'O','O','J03','','0000-00-00 00:00:00','2','12:59:34',0,'','reception','2025-12-15 12:59:34','darshan','2025-12-15 13:41:40'),(6258,0,0,'O','N','2526',4115,0,'2025-12-15','2026-03-14',4225,0,4115,'N','','N','','','ER','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:02:00','0000-00-00','','','','N','13:02:00','16:57:49','','','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','3','13:02:56',0,'','drashti','2025-12-15 13:02:56','drpratapsinh','2025-12-15 16:57:49'),(6259,0,0,'O','N','2526',3605,0,'2025-12-15','0000-00-00',3705,0,3605,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:08:00','0000-00-00','','','','N','13:08:00','16:57:05','','','N','Y',NULL,'O','O','Z70','','0000-00-00 00:00:00','3','13:08:10',0,'','drashti','2025-12-15 13:08:10','drpratapsinh','2025-12-15 16:57:05'),(6260,0,0,'O','N','2526',4116,0,'2025-12-15','2026-03-14',4226,0,4116,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:26:00','0000-00-00','','','','N','13:26:00','00:00:00','','Y','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','4','13:26:45',0,'','urvashi','2025-12-15 13:26:45','drarchit','2025-12-15 13:33:16'),(6261,0,0,'O','N','2526',2738,0,'2025-12-15','0000-00-00',2808,0,2738,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:30:00','0000-00-00','','','','N','13:30:00','16:56:50','','','N','Y',NULL,'O','O','Z72','','0000-00-00 00:00:00','3','13:30:01',0,'','urvashi','2025-12-15 13:30:01','drpratapsinh','2025-12-15 16:56:50'),(6262,0,0,'I','N','2526',0,290,'2025-12-15','2026-03-14',4227,0,0,'N','','N','','','','N','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:30:00','2025-12-17','','1','mo','N','13:30:00','12:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-15 13:30:36','mo','2025-12-17 14:24:38'),(6263,0,0,'I','N','2526',0,291,'2025-12-15','2026-03-14',4228,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','Y','REQUEST BY VISHALBHAI','P','','','','','','0000-00-00','','','',1,'N','N','N','14:40:00','2025-12-15','','','','N','14:40:00','17:40:46','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-15 15:00:09','thims','2025-12-15 17:40:46'),(6264,0,0,'I','N','2526',0,292,'2025-12-15','2026-03-14',4229,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','15:00:00','2025-12-16','','1','mo','N','15:00:00','17:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-15 15:26:43','mo','2025-12-16 15:07:10'),(6265,0,0,'O','N','2526',4117,0,'2025-12-15','2026-03-14',4230,0,4117,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:27:00','0000-00-00','','','','N','16:27:00','20:53:29','','N','N','Y',NULL,'O','N','Z73','','0000-00-00 00:00:00','2','16:27:58',0,'','reception','2025-12-15 16:27:58','darshan','2025-12-19 20:53:29'),(6266,0,0,'O','N','2526',3182,0,'2025-12-15','0000-00-00',3268,0,3182,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:35:00','0000-00-00','','','','N','16:35:00','17:29:38','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','16:35:54',0,'','reception','2025-12-15 16:35:54','darshan','2025-12-15 17:29:38'),(6267,0,0,'O','N','2526',4118,0,'2025-12-15','2026-03-14',4231,0,4118,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:41:00','0000-00-00','','','','N','16:41:00','00:00:00','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','5','16:41:38',0,'','drashti','2025-12-15 16:41:38','','0000-00-00 00:00:00'),(6268,0,0,'O','N','2526',3642,0,'2025-12-15','0000-00-00',3745,0,3642,'N','','N','','','FV','','N','D06','','N',66,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:48:00','0000-00-00','','','','N','16:48:00','17:47:34','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','16:48:27',0,'','reception','2025-12-15 16:48:27','darshan','2025-12-15 17:47:34'),(6269,0,0,'O','N','2526',589,0,'2025-12-15','0000-00-00',619,0,589,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:57:00','0000-00-00','','','','N','16:57:00','17:51:28','','','N','Y',NULL,'O','O','L03','','0000-00-00 00:00:00','2','16:57:13',0,'','reception','2025-12-15 16:57:13','darshan','2025-12-15 17:51:28'),(6270,0,0,'O','N','2526',2878,0,'2025-12-15','0000-00-00',2953,0,2878,'N','','N','','','FV','','N','D06','','N',214,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:57:00','0000-00-00','','','','N','16:57:00','17:34:10','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','16:58:00',0,'','reception','2025-12-15 16:58:00','darshan','2025-12-15 17:34:10'),(6271,0,0,'O','N','2526',4119,0,'2025-12-15','2026-03-14',3350,0,4119,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:01:00','0000-00-00','','','','N','17:01:00','17:04:11','','','N','Y',NULL,'O','N','Z75','','0000-00-00 00:00:00','3','17:01:22',0,'','reception','2025-12-15 17:01:22','drpratapsinh','2025-12-15 17:04:11'),(6272,0,0,'O','N','2526',4120,0,'2025-12-15','2026-03-14',4232,0,4120,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:07:00','0000-00-00','','','','N','17:07:00','17:41:56','','','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:07:25',0,'','reception','2025-12-15 17:07:25','darshan','2025-12-15 17:41:56'),(6273,0,0,'O','N','2526',3730,0,'2025-12-15','0000-00-00',3833,0,3730,'N','','N','','','','','N','D02','','N',267,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:07:00','0000-00-00','','','','N','17:07:00','17:21:29','','','N','Y',NULL,'O','O','Z76','','0000-00-00 00:00:00','3','17:07:33',0,'','urvashi','2025-12-15 17:07:33','drpratapsinh','2025-12-15 17:21:29'),(6274,0,0,'I','N','2526',0,293,'2025-12-15','2026-03-14',4233,0,0,'N','','N','','','','N','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:00:00','2025-12-16','','5','mo','Y','17:00:00','12:50:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-15 17:14:21','riya','2025-12-16 13:09:51'),(6275,0,0,'O','N','2526',4121,0,'2025-12-15','2026-03-14',4234,0,4121,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:17:00','0000-00-00','','','','N','17:17:00','19:37:27','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:17:21',0,'','reception','2025-12-15 17:17:21','darshan','2025-12-15 19:37:27'),(6276,0,0,'O','N','2526',4122,0,'2025-12-15','2026-03-14',4235,0,4122,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','20:41:55','','','N','Y',NULL,'O','N','Z77','','0000-00-00 00:00:00','3','17:20:18',0,'','urvashi','2025-12-15 17:20:18','drpratapsinh','2025-12-15 20:41:55'),(6277,0,0,'O','N','2526',3743,0,'2025-12-15','0000-00-00',3846,0,3743,'N','','N','','','','','N','D02','','N',268,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:21:00','0000-00-00','','','','N','17:21:00','17:45:21','','','N','Y',NULL,'O','O','Z78','','0000-00-00 00:00:00','3','17:21:54',0,'','reception','2025-12-15 17:21:54','drpratapsinh','2025-12-15 17:45:20'),(6278,0,0,'O','N','2526',4057,0,'2025-12-15','0000-00-00',4164,0,4057,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:22:00','0000-00-00','','','','N','17:22:00','17:45:32','','','N','Y',NULL,'O','O','Z79','','0000-00-00 00:00:00','3','17:22:36',0,'','urvashi','2025-12-15 17:22:36','drpratapsinh','2025-12-15 17:45:32'),(6279,0,0,'O','N','2526',4123,0,'2025-12-15','2026-03-14',4236,0,4123,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:25:00','0000-00-00','','','','N','17:25:00','19:01:26','','','N','Y',NULL,'O','N','Z80','','0000-00-00 00:00:00','3','17:25:45',0,'','drashti','2025-12-15 17:25:45','drpratapsinh','2025-12-15 19:01:26'),(6280,0,0,'O','N','2526',2407,0,'2025-12-15','0000-00-00',2463,0,2407,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:26:00','0000-00-00','','','','N','17:26:00','18:12:32','','','N','Y',NULL,'O','O','Z81','','0000-00-00 00:00:00','2','17:26:44',0,'','reception','2025-12-15 17:26:44','darshan','2025-12-15 18:12:32'),(6281,0,0,'O','N','2526',658,0,'2025-12-15','0000-00-00',688,0,658,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','18:33:06','','','N','Y',NULL,'O','O','Z82','','0000-00-00 00:00:00','4','17:27:17',0,'','urvashi','2025-12-15 17:27:17','drarchit','2025-12-15 18:33:05'),(6282,0,0,'O','N','2526',4124,0,'2025-12-15','2026-03-14',4237,0,4124,'N','','N','','','NV','','N','D06','','N',290,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','19:09:16','','N','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:32:13',0,'','urvashi','2025-12-15 17:32:13','darshan','2025-12-15 19:09:16'),(6283,0,0,'O','N','2526',4125,0,'2025-12-15','2026-03-14',4238,0,4125,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','19:47:40','','N','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:32:59',0,'','reception','2025-12-15 17:32:59','darshan','2025-12-15 19:47:40'),(6284,0,0,'O','N','2526',3819,0,'2025-12-15','0000-00-00',3349,0,3819,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:33:00','0000-00-00','','','','N','17:33:00','17:53:23','','','N','Y',NULL,'O','O','Z83','','0000-00-00 00:00:00','3','17:33:02',0,'','drashti','2025-12-15 17:33:01','drpratapsinh','2025-12-15 17:53:23'),(6285,0,0,'O','N','2526',4126,0,'2025-12-15','2026-03-14',4239,0,4126,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','19:50:36','','N','N','Y',NULL,'O','N','Z84','','0000-00-00 00:00:00','2','17:41:15',0,'','reception','2025-12-15 17:41:15','darshan','2025-12-15 19:50:36'),(6286,0,0,'O','N','2526',3973,0,'2025-12-15','0000-00-00',4080,0,3973,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','17:54:07','','','N','Y',NULL,'O','O','Z85','','0000-00-00 00:00:00','3','17:46:06',0,'','urvashi','2025-12-15 17:46:06','drpratapsinh','2025-12-15 17:54:07'),(6287,0,0,'O','N','2526',4127,0,'2025-12-15','2026-03-14',4240,0,4127,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','18:39:58','','','N','Y',NULL,'O','N','Z86','','0000-00-00 00:00:00','5','17:52:39',0,'','drashti','2025-12-15 17:52:39','drjayant','2025-12-15 18:39:58'),(6288,0,0,'O','N','2526',4128,0,'2025-12-15','2026-03-14',4241,0,4128,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','18:11:56','','','N','Y',NULL,'O','N','Z87','','0000-00-00 00:00:00','6','17:59:18',0,'','shweta','2025-12-15 17:59:18','drsagar','2025-12-15 18:11:56'),(6289,0,0,'O','N','2526',4129,0,'2025-12-15','2026-03-14',4242,0,4129,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','18:36:30','','','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','4','18:03:31',0,'','urvashi','2025-12-15 18:03:31','drarchit','2025-12-15 18:36:30'),(6290,0,0,'O','N','2526',4130,0,'2025-12-15','2026-03-14',4243,0,4130,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:06:00','0000-00-00','','','','N','18:06:00','00:00:00','','','N','N',NULL,'O','N','Z88','','0000-00-00 00:00:00','7','18:06:31',0,'','shweta','2025-12-15 18:06:31','','0000-00-00 00:00:00'),(6291,0,0,'O','N','2526',4131,0,'2025-12-15','2026-03-14',4244,0,4131,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:06:00','0000-00-00','','','','N','18:06:00','18:45:03','','','N','Y',NULL,'O','N','Z89','','0000-00-00 00:00:00','4','18:06:34',0,'','drashti','2025-12-15 18:06:34','drarchit','2025-12-15 18:45:03'),(6292,0,0,'O','N','2526',4132,0,'2025-12-15','2026-03-14',4245,0,4132,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:08:00','0000-00-00','','','','N','18:08:00','18:49:08','','','N','Y',NULL,'O','N','Z90','','0000-00-00 00:00:00','4','18:08:28',0,'','reception','2025-12-15 18:08:28','drarchit','2025-12-15 18:49:08'),(6293,0,0,'O','N','2526',2497,0,'2025-12-15','0000-00-00',2555,0,2497,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','18:28:05','','','N','Y',NULL,'O','O','L10','','0000-00-00 00:00:00','2','18:10:50',0,'','reception','2025-12-15 18:10:50','darshan','2025-12-15 18:28:05'),(6294,0,0,'O','N','2526',4133,0,'2025-12-15','2026-03-14',4246,0,4133,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','18:53:00','','','N','Y',NULL,'O','N','Z91','','0000-00-00 00:00:00','3','18:14:37',0,'','drashti','2025-12-15 18:14:37','drpratapsinh','2025-12-15 18:53:00'),(6295,0,0,'O','N','2526',4134,0,'2025-12-15','2026-03-14',4247,0,4134,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','19:52:55','','N','N','Y',NULL,'O','N','Z92','','0000-00-00 00:00:00','2','18:15:27',0,'','reception','2025-12-15 18:15:27','darshan','2025-12-15 19:52:55'),(6296,0,0,'O','N','2526',1305,0,'2025-12-15','0000-00-00',1344,0,1305,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','18:53:43','','','N','Y',NULL,'O','O','Z93','','0000-00-00 00:00:00','4','18:19:01',0,'','drashti','2025-12-15 18:19:01','drarchit','2025-12-15 18:53:43'),(6297,0,0,'O','N','2526',2118,0,'2025-12-15','0000-00-00',1763,0,2118,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','18:57:19','','','N','Y',NULL,'O','O','Z94','','0000-00-00 00:00:00','3','18:21:05',0,'','urvashi','2025-12-15 18:21:04','drpratapsinh','2025-12-15 18:57:19'),(6298,0,0,'O','N','2526',736,0,'2025-12-15','0000-00-00',767,0,736,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:22:00','0000-00-00','','','','N','18:22:00','18:58:21','','','N','Y',NULL,'O','O','Z95','','0000-00-00 00:00:00','4','18:22:30',0,'','drashti','2025-12-15 18:22:30','drarchit','2025-12-15 18:58:21'),(6299,0,0,'O','N','2526',3879,0,'2025-12-15','0000-00-00',3988,0,3879,'N','','N','','','','','N','D27','','N',277,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:27:00','0000-00-00','','','','N','18:27:00','19:17:55','','','N','Y',NULL,'O','O','Z96','','0000-00-00 00:00:00','4','18:27:34',0,'','drashti','2025-12-15 18:27:34','drarchit','2025-12-15 19:17:55'),(6300,0,0,'O','N','2526',4135,0,'2025-12-15','2026-03-14',4248,0,4135,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','20:15:16','','N','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','2','18:28:54',0,'','reception','2025-12-15 18:28:54','darshan','2025-12-15 20:15:16'),(6301,0,0,'O','N','2526',4136,0,'2025-12-15','2026-03-14',4249,0,4136,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','19:13:33','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','4','18:29:00',0,'','urvashi','2025-12-15 18:29:00','drarchit','2025-12-15 19:13:33'),(6302,0,0,'O','N','2526',4137,0,'2025-12-15','2026-03-14',3764,0,4137,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','00:00:00','','Y','N','Y',NULL,'O','N','Z97','','0000-00-00 00:00:00','4','18:29:06',0,'','drashti','2025-12-15 18:29:06','drarchit','2025-12-15 19:08:19'),(6303,0,0,'O','N','2526',975,0,'2025-12-15','0000-00-00',1008,0,975,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','19:02:30','','','N','Y',NULL,'O','O','L13','','0000-00-00 00:00:00','2','18:30:01',0,'','reception','2025-12-15 18:30:01','darshan','2025-12-15 19:02:30'),(6304,0,0,'O','N','2526',2755,0,'2025-12-15','0000-00-00',2825,0,2755,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','19:21:33','','','N','Y',NULL,'O','O','L14','','0000-00-00 00:00:00','4','18:36:50',0,'','drashti','2025-12-15 18:36:50','drarchit','2025-12-15 19:21:33'),(6305,0,0,'O','N','2526',4138,0,'2025-12-15','2026-03-14',4250,0,4138,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','18:09:01','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','18:43:03',0,'','drashti','2025-12-15 18:43:02','drarchit','2025-12-16 18:09:01'),(6306,0,0,'O','N','2526',4139,0,'2025-12-15','2026-03-14',4251,0,4139,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','19:32:21','','','N','Y',NULL,'O','N','Z98','','0000-00-00 00:00:00','4','18:46:36',0,'','reception','2025-12-15 18:46:36','drarchit','2025-12-15 19:32:21'),(6307,0,0,'O','N','2526',3243,0,'2025-12-15','0000-00-00',3325,0,3243,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:47:00','0000-00-00','','','','N','18:47:00','20:15:42','','','N','Y',NULL,'O','O','Z99','','0000-00-00 00:00:00','2','18:47:14',0,'','drashti','2025-12-15 18:47:14','darshan','2025-12-15 20:15:42'),(6308,0,0,'O','N','2526',3319,0,'2025-12-15','0000-00-00',3411,0,3319,'N','','N','','','','','N','D02','','N',25,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:55:00','0000-00-00','','','','N','18:55:00','19:00:51','','','N','Y',NULL,'O','O','Z100','','0000-00-00 00:00:00','3','18:55:24',0,'','urvashi','2025-12-15 18:55:24','drpratapsinh','2025-12-15 19:00:51'),(6309,0,0,'O','N','2526',4140,0,'2025-12-15','2026-03-14',4252,0,4140,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:55:00','0000-00-00','','','','N','18:55:00','18:41:18','','','N','Y',NULL,'O','N','Z101','','0000-00-00 00:00:00','2','18:55:35',0,'','reception','2025-12-15 18:55:35','darshan','2025-12-16 18:41:18'),(6310,0,0,'O','N','2526',4141,0,'2025-12-15','2026-03-14',4253,0,4141,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','18:58:00','0000-00-00','','','','N','18:58:00','19:36:17','','','N','Y',NULL,'O','N','Z102','','0000-00-00 00:00:00','4','18:58:57',0,'','drashti','2025-12-15 18:58:57','drarchit','2025-12-15 19:36:17'),(6311,0,0,'O','N','2526',2027,0,'2025-12-15','0000-00-00',2081,0,2027,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:01:00','0000-00-00','','','','N','19:01:00','19:31:52','','','N','Y',NULL,'O','O','L16','','0000-00-00 00:00:00','2','19:01:40',0,'','reception','2025-12-15 19:01:40','darshan','2025-12-15 19:31:52'),(6312,0,0,'O','N','2526',280,0,'2025-12-15','0000-00-00',296,0,280,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:03:00','0000-00-00','','','','N','19:03:00','19:41:02','','','N','Y',NULL,'O','O','Z103','','0000-00-00 00:00:00','4','19:03:10',0,'','urvashi','2025-12-15 19:03:10','drarchit','2025-12-15 19:41:02'),(6313,0,0,'O','N','2526',3663,0,'2025-12-15','0000-00-00',3767,0,3663,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:05:00','0000-00-00','','','','N','19:05:00','00:00:00','','','N','N',NULL,'O','O','Z104','','0000-00-00 00:00:00','6','19:05:57',0,'','shweta','2025-12-15 19:05:57','','0000-00-00 00:00:00'),(6314,0,0,'O','N','2526',1894,0,'2025-12-15','0000-00-00',1941,0,1894,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:16:00','0000-00-00','','','','N','19:16:00','19:47:16','','','N','Y',NULL,'O','O','L17','','0000-00-00 00:00:00','2','19:17:01',0,'','reception','2025-12-15 19:17:01','darshan','2025-12-15 19:47:16'),(6315,0,0,'O','N','2526',2538,0,'2025-12-15','0000-00-00',2595,0,2538,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:19:00','0000-00-00','','','','N','19:19:00','20:28:31','','','N','Y',NULL,'O','O','Z105','','0000-00-00 00:00:00','2','19:19:40',0,'','reception','2025-12-15 19:19:40','darshan','2025-12-15 20:28:31'),(6316,0,0,'O','N','2526',4142,0,'2025-12-15','2026-03-14',4254,0,4142,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:20:00','0000-00-00','','','','N','19:20:00','20:34:31','','','N','Y',NULL,'O','N','Z106','','0000-00-00 00:00:00','2','19:20:31',0,'','drashti','2025-12-15 19:20:31','darshan','2025-12-15 20:34:31'),(6317,0,0,'O','N','2526',3310,0,'2025-12-15','0000-00-00',3399,0,3310,'N','','N','','','','','N','D02','','N',90,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:20:00','0000-00-00','','','','N','19:20:00','20:13:24','','','N','Y',NULL,'O','O','Z107','','0000-00-00 00:00:00','3','19:20:50',0,'','urvashi','2025-12-15 19:20:50','drpratapsinh','2025-12-15 20:13:24'),(6318,0,0,'O','N','2526',4143,0,'2025-12-15','2026-03-14',4255,0,4143,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:20:00','0000-00-00','','','','N','19:20:00','20:27:18','','','N','Y',NULL,'O','N','Z108','','0000-00-00 00:00:00','2','19:20:55',0,'','reception','2025-12-15 19:20:55','darshan','2025-12-15 20:27:18'),(6319,0,0,'O','N','2526',2685,0,'2025-12-15','0000-00-00',2754,0,2685,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:22:00','0000-00-00','','','','N','19:22:00','19:44:22','','','N','Y',NULL,'O','O','L18','','0000-00-00 00:00:00','4','19:22:00',0,'','drashti','2025-12-15 19:22:00','drarchit','2025-12-15 19:44:22'),(6320,0,0,'O','N','2526',3870,0,'2025-12-15','0000-00-00',3979,0,3870,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:31:00','0000-00-00','','','','N','19:31:00','20:05:38','','','N','Y',NULL,'O','O','Z109','','0000-00-00 00:00:00','2','19:31:16',0,'','reception','2025-12-15 19:31:16','darshan','2025-12-15 20:05:38'),(6321,0,0,'O','N','2526',4144,0,'2025-12-15','2026-03-14',4256,0,4144,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:36:00','0000-00-00','','','','N','19:36:00','12:46:06','','','N','Y',NULL,'O','N','Z110','','0000-00-00 00:00:00','4','19:36:14',0,'','urvashi','2025-12-15 19:36:14','drarchit','2025-12-16 12:46:06'),(6322,0,0,'O','N','2526',3854,0,'2025-12-15','0000-00-00',3963,0,3854,'N','','N','','','','','N','D02','','N',275,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:38:00','0000-00-00','','','','N','19:38:00','20:13:36','','','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','3','19:38:08',0,'','urvashi','2025-12-15 19:38:08','drpratapsinh','2025-12-15 20:13:36'),(6323,0,0,'O','N','2526',1288,0,'2025-12-15','0000-00-00',1327,0,1288,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:48:00','0000-00-00','','','','N','19:48:00','19:54:48','','','N','Y',NULL,'O','O','Z111','','0000-00-00 00:00:00','3','19:48:03',0,'','urvashi','2025-12-15 19:48:03','drpratapsinh','2025-12-15 19:54:48'),(6324,0,0,'O','N','2526',4145,0,'2025-12-15','2026-03-14',4257,0,4145,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:02:00','0000-00-00','','','','N','20:02:00','00:00:00','','','N','Y',NULL,'O','N','Z112','','0000-00-00 00:00:00','4','20:02:47',0,'','drashti','2025-12-15 20:02:47','','0000-00-00 00:00:00'),(6325,0,0,'O','N','2526',4146,0,'2025-12-15','2026-03-14',4258,0,4146,'N','','N','','','NC','Y','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:04:00','0000-00-00','','','','N','20:04:00','00:00:00','','','N','N',NULL,'O','N','Z113','','0000-00-00 00:00:00','','00:00:00',0,'','urvashi','2025-12-15 20:04:09','','0000-00-00 00:00:00'),(6326,0,0,'O','N','2526',3378,0,'2025-12-15','0000-00-00',3473,0,3378,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:08:00','0000-00-00','','','','N','20:08:00','20:13:06','','','N','Y',NULL,'O','O','Y03','','0000-00-00 00:00:00','3','20:08:42',0,'','urvashi','2025-12-15 20:08:42','drpratapsinh','2025-12-15 20:13:06'),(6327,0,0,'O','N','2526',4147,0,'2025-12-15','2026-03-14',4259,0,4147,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:16:00','0000-00-00','','','','N','20:16:00','20:37:38','','','N','Y',NULL,'O','N','Z114','','0000-00-00 00:00:00','2','20:16:19',0,'','reception','2025-12-15 20:16:19','darshan','2025-12-15 20:37:38'),(6328,0,0,'O','N','2526',3827,0,'2025-12-15','0000-00-00',3932,0,3827,'N','','N','','','FE','Y','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','20:17:00','0000-00-00','','','','N','20:17:00','20:42:19','','','N','Y',NULL,'O','O','Z115','','0000-00-00 00:00:00','2','20:17:59',0,'','reception','2025-12-15 20:17:59','darshan','2025-12-15 20:42:19'),(6329,0,0,'I','N','2526',0,294,'2025-12-16','2026-03-15',3719,0,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:30:00','2025-12-16','','1','mo','N','09:30:00','17:55:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-16 09:35:42','riya','2025-12-16 17:45:48'),(6330,0,0,'I','N','2526',0,295,'2025-12-16','2026-03-15',4260,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','00:05:00','2025-12-16','','1','mo','N','00:05:00','07:10:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-16 09:56:42','vishal','2025-12-16 19:30:33'),(6331,0,0,'O','N','2526',2791,0,'2025-12-16','0000-00-00',2859,0,2791,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:59:00','0000-00-00','','','','N','09:59:00','12:56:24','','N','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','09:59:40',0,'','drashti','2025-12-16 09:59:40','darshan','2025-12-16 12:56:24'),(6332,0,0,'O','N','2526',813,0,'2025-12-16','0000-00-00',844,0,813,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','09:59:00','0000-00-00','','','','N','09:59:00','10:56:53','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','10:00:02',0,'','reception','2025-12-16 10:00:02','darshan','2025-12-16 10:56:53'),(6333,0,0,'O','N','2526',4148,0,'2025-12-16','2026-03-15',4261,0,4148,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:02:00','0000-00-00','','','','N','10:02:00','18:28:21','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','3','10:02:33',0,'','janvi','2025-12-16 10:02:05','drpratapsinh','2025-12-16 18:28:21'),(6334,0,0,'I','N','2526',0,296,'2025-12-16','2026-03-15',4262,0,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','02:30:00','2025-12-16','','1','mo','N','02:30:00','19:10:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-16 10:02:46','mo','2025-12-16 20:06:41'),(6335,0,0,'O','N','2526',4149,0,'2025-12-16','2026-03-15',4263,0,4149,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:05:00','0000-00-00','','','','N','10:05:00','12:26:02','','N','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','10:05:53',0,'','drashti','2025-12-16 10:05:53','drarchit','2025-12-16 12:26:02'),(6336,0,0,'O','N','2526',4150,0,'2025-12-16','2026-03-15',4264,0,4150,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:08:00','0000-00-00','','','','N','10:08:00','13:13:18','','N','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:08:39',0,'','drashti','2025-12-16 10:08:39','darshan','2025-12-16 13:13:18'),(6337,0,0,'O','N','2526',3619,0,'2025-12-16','0000-00-00',3722,0,3619,'N','','N','','','FV','','N','D06','','N',209,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:13:00','0000-00-00','','','','N','10:13:00','10:53:17','','','N','Y',NULL,'O','O','E02','','0000-00-00 00:00:00','2','10:13:16',0,'','reception','2025-12-16 10:13:16','darshan','2025-12-16 10:53:17'),(6338,0,0,'O','N','2526',3569,0,'2025-12-16','0000-00-00',3669,0,3569,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:17:00','0000-00-00','','','','N','10:17:00','11:45:24','','','N','Y',NULL,'O','O','Z03','','0000-00-00 00:00:00','2','10:17:25',0,'','reception','2025-12-16 10:17:25','darshan','2025-12-16 11:45:24'),(6339,0,0,'O','N','2526',2579,0,'2025-12-16','0000-00-00',2640,0,2579,'N','','N','','','FV','','N','D06','','N',190,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:23:00','0000-00-00','','','','N','10:23:00','11:21:44','','','N','Y',NULL,'O','O','F03','','0000-00-00 00:00:00','2','10:23:56',0,'','reception','2025-12-16 10:23:56','darshan','2025-12-16 11:21:44'),(6340,0,0,'O','N','2526',4151,0,'2025-12-16','2026-03-15',4265,0,4151,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:25:00','0000-00-00','','','','N','10:25:00','11:39:56','','','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','4','10:25:11',0,'','drashti','2025-12-16 10:25:11','drarchit','2025-12-16 11:39:56'),(6341,0,0,'O','N','2526',4152,0,'2025-12-16','2026-03-15',4266,0,4152,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','14:11:38','','N','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','2','10:28:15',0,'','reception','2025-12-16 10:28:15','darshan','2025-12-16 14:11:37'),(6342,0,0,'O','N','2526',267,0,'2025-12-16','0000-00-00',283,0,267,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:29:00','0000-00-00','','','','N','10:29:00','11:41:17','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','2','10:29:59',0,'','reception','2025-12-16 10:29:59','darshan','2025-12-16 11:41:17'),(6343,0,0,'O','N','2526',918,0,'2025-12-16','0000-00-00',949,0,918,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','12:08:16','','','N','Y',NULL,'O','O','I01','','0000-00-00 00:00:00','2','10:37:41',0,'','reception','2025-12-16 10:37:41','darshan','2025-12-16 12:08:16'),(6344,0,0,'O','N','2526',4153,0,'2025-12-16','2026-03-15',4267,0,4153,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','11:49:05','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','4','10:38:06',0,'','drashti','2025-12-16 10:38:06','drarchit','2025-12-16 11:49:05'),(6345,0,0,'O','N','2526',3571,0,'2025-12-16','0000-00-00',3522,0,3571,'N','','N','','','','','N','D03','','N',5,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','11:03:21','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','6','10:38:39',0,'','shweta','2025-12-16 10:38:39','drsagar','2025-12-16 11:03:21'),(6346,0,0,'I','N','2526',4056,297,'2025-12-16','2026-03-15',4163,0,4056,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','mo','N','10:40:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-16 10:39:32','mo','2025-12-23 01:56:02'),(6347,0,0,'O','N','2526',1549,0,'2025-12-16','0000-00-00',1592,0,1549,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','','N','10:40:00','12:18:21','','','N','Y',NULL,'O','O','Z08','','0000-00-00 00:00:00','2','10:40:07',0,'','reception','2025-12-16 10:40:07','darshan','2025-12-16 12:18:21'),(6348,0,0,'O','N','2526',4154,0,'2025-12-16','2026-03-15',4268,0,4154,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','13:19:40','','N','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','10:43:47',0,'','reception','2025-12-16 10:43:47','darshan','2025-12-16 13:19:40'),(6349,0,0,'O','N','2526',1241,0,'2025-12-16','0000-00-00',1282,0,1241,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','12:00:12','','','N','Y',NULL,'O','O','I02','','0000-00-00 00:00:00','4','10:48:11',0,'','drashti','2025-12-16 10:48:11','drarchit','2025-12-16 12:00:12'),(6350,0,0,'O','N','2526',2908,0,'2025-12-16','0000-00-00',2986,0,2908,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:49:00','0000-00-00','','','','N','10:49:00','11:35:45','','','N','Y',NULL,'O','O','G03','','0000-00-00 00:00:00','2','10:49:13',0,'','reception','2025-12-16 10:49:13','darshan','2025-12-16 11:35:45'),(6351,0,0,'O','N','2526',4155,0,'2025-12-16','2026-03-15',4269,0,4155,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:52:00','0000-00-00','','','','N','10:52:00','14:05:36','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:52:39',0,'','reception','2025-12-16 10:52:39','darshan','2025-12-16 14:05:36'),(6352,0,0,'O','N','2526',4156,0,'2025-12-16','2026-03-15',4270,0,4156,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','12:18:18','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','6','11:01:04',0,'','shweta','2025-12-16 11:01:04','drsagar','2025-12-16 12:18:18'),(6353,0,0,'O','N','2526',4157,0,'2025-12-16','2026-03-15',4271,0,4157,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:05:00','0000-00-00','','','','N','11:05:00','12:43:29','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','2','11:06:02',0,'','reception','2025-12-16 11:06:02','darshan','2025-12-16 12:43:29'),(6354,0,0,'O','N','2526',4158,0,'2025-12-16','2026-03-15',4272,0,4158,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','12:21:10','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','3','11:07:15',0,'','janvi','2025-12-16 11:07:15','drpratapsinh','2025-12-16 12:21:10'),(6355,0,0,'O','N','2526',4159,0,'2025-12-16','2026-03-15',4273,0,4159,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','12:13:41','','','N','Y',NULL,'O','N','I03','','0000-00-00 00:00:00','4','11:08:55',0,'','reception','2025-12-16 11:08:55','drarchit','2025-12-16 12:13:41'),(6356,0,0,'O','N','2526',4160,0,'2025-12-16','2026-03-15',4274,0,4160,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','11:26:39','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','4','11:10:22',0,'','drashti','2025-12-16 11:10:22','drarchit','2025-12-16 11:26:39'),(6357,0,0,'O','N','2526',716,0,'2025-12-16','0000-00-00',747,0,716,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','12:05:54','','','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','2','11:10:26',0,'','reception','2025-12-16 11:10:26','darshan','2025-12-16 12:05:53'),(6358,0,0,'O','N','2526',4161,0,'2025-12-16','2026-03-15',4275,0,4161,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','12:18:34','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','4','11:16:47',0,'','drashti','2025-12-16 11:16:47','drarchit','2025-12-16 12:18:34'),(6359,0,0,'O','N','2526',633,0,'2025-12-16','0000-00-00',663,0,633,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','12:22:15','','','N','Y',NULL,'O','O','Z14','','0000-00-00 00:00:00','4','11:18:02',0,'','drashti','2025-12-16 11:18:02','drarchit','2025-12-16 12:22:15'),(6360,0,0,'O','N','2526',4162,0,'2025-12-16','2026-03-15',4276,0,4162,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','11:55:15','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','11:18:10',0,'','janvi','2025-12-16 11:18:10','drarchit','2025-12-16 11:55:15'),(6361,0,0,'O','N','2526',4163,0,'2025-12-16','2026-03-15',4277,0,4163,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','18:41:32','','N','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','4','11:20:10',0,'','drashti','2025-12-16 11:20:09','drarchit','2025-12-16 18:41:32'),(6362,0,0,'O','N','2526',3538,0,'2025-12-16','0000-00-00',3640,0,3538,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','12:20:15','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','3','11:23:30',0,'','drashti','2025-12-16 11:23:30','drpratapsinh','2025-12-16 12:20:15'),(6363,0,0,'O','N','2526',4164,0,'2025-12-16','2026-03-15',4278,0,4164,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','20:00:22','','N','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','4','11:27:27',0,'','janvi','2025-12-16 11:27:27','drarchit','2025-12-16 20:00:22'),(6364,0,0,'O','N','2526',4165,0,'2025-12-16','2026-03-15',4279,0,4165,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','13:35:01','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','5','11:28:03',0,'','drashti','2025-12-16 11:28:03','drjayant','2025-12-16 13:35:01'),(6365,0,0,'O','N','2526',4166,0,'2025-12-16','2026-03-15',4280,0,4166,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','12:37:46','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','4','11:28:58',0,'','reception','2025-12-16 11:28:58','drarchit','2025-12-16 12:37:46'),(6366,0,0,'O','N','2526',912,0,'2025-12-16','0000-00-00',943,0,912,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','12:50:30','','','N','Y',NULL,'O','O','J01','','0000-00-00 00:00:00','2','11:31:09',0,'','reception','2025-12-16 11:31:09','darshan','2025-12-16 12:50:30'),(6367,0,0,'O','N','2526',2471,0,'2025-12-16','0000-00-00',2529,0,2471,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:31:00','0000-00-00','','','','N','11:31:00','12:34:33','','','N','Y',NULL,'O','O','Z18','','0000-00-00 00:00:00','7','11:31:31',0,'','shweta','2025-12-16 11:31:31','drridham','2025-12-16 12:34:33'),(6368,0,0,'O','N','2526',4167,0,'2025-12-16','2026-03-15',4281,0,4167,'N','','N','','','','','N','D02','','N',266,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:34:00','0000-00-00','','','','N','11:34:00','18:28:42','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','3','11:34:24',0,'','janvi','2025-12-16 11:34:24','drpratapsinh','2025-12-16 18:28:42'),(6369,0,0,'O','N','2526',3305,0,'2025-12-16','0000-00-00',3394,0,3305,'N','','N','','','','','N','D02','','N',119,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','12:19:06','','','N','Y',NULL,'O','O','Z20','','0000-00-00 00:00:00','3','11:39:39',0,'','drashti','2025-12-16 11:39:39','drpratapsinh','2025-12-16 12:19:06'),(6370,0,0,'O','N','2526',4168,0,'2025-12-16','2026-03-15',4282,0,4168,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','12:27:52','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','5','11:44:19',0,'','drashti','2025-12-16 11:44:19','drjayant','2025-12-16 12:27:52'),(6371,0,0,'O','N','2526',4169,0,'2025-12-16','2026-03-15',4283,0,4169,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','12:19:04','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','5','11:44:49',0,'','janvi','2025-12-16 11:44:49','drjayant','2025-12-16 12:19:04'),(6372,0,0,'O','N','2526',4170,0,'2025-12-16','2026-03-15',4123,0,4170,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','12:46:30','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','4','11:46:43',0,'','drashti','2025-12-16 11:46:43','drarchit','2025-12-16 12:46:30'),(6373,0,0,'O','N','2526',4171,0,'2025-12-16','2026-03-15',4284,0,4171,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','14:16:11','','N','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','2','11:50:47',0,'','reception','2025-12-16 11:50:47','darshan','2025-12-16 14:16:11'),(6374,0,0,'O','N','2526',4172,0,'2025-12-16','2026-03-15',4285,0,4172,'N','','N','','','NC','','N','D27','','N',188,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','18:03:18','','Y','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','4','11:51:13',0,'','drashti','2025-12-16 11:51:13','drarchit','2025-12-16 18:18:47'),(6375,0,0,'O','N','2526',4173,0,'2025-12-16','2026-03-15',4286,0,4173,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:57:00','0000-00-00','','','','N','11:57:00','12:11:47','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','5','11:57:51',0,'','drashti','2025-12-16 11:57:51','drjayant','2025-12-16 12:11:47'),(6376,0,0,'O','N','2526',4174,0,'2025-12-16','2026-03-15',4287,0,4174,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:59:00','0000-00-00','','','','N','11:59:00','12:27:13','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','5','11:59:46',0,'','drashti','2025-12-16 11:59:46','drjayant','2025-12-16 12:27:13'),(6377,0,0,'O','N','2526',2128,0,'2025-12-16','0000-00-00',2179,0,2128,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','13:36:03','','','N','Y',NULL,'O','O','Z27','','0000-00-00 00:00:00','2','12:00:33',0,'','reception','2025-12-16 12:00:33','darshan','2025-12-16 13:36:03'),(6378,0,0,'O','N','2526',4175,0,'2025-12-16','2026-03-15',4288,0,4175,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:14:00','0000-00-00','','','','N','12:14:00','14:21:52','','N','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','2','12:14:03',0,'','reception','2025-12-16 12:14:03','darshan','2025-12-16 14:21:52'),(6379,0,0,'O','N','2526',4176,0,'2025-12-16','2026-03-15',4289,0,4176,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:16:00','0000-00-00','','','','N','12:16:00','19:57:54','','N','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','4','12:16:01',0,'','drashti','2025-12-16 12:16:01','drarchit','2025-12-16 19:57:54'),(6380,0,0,'O','N','2526',4177,0,'2025-12-16','2026-03-15',4290,0,4177,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','18:29:07','','','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','3','12:21:18',0,'','drashti','2025-12-16 12:21:18','drpratapsinh','2025-12-16 18:29:07'),(6381,0,0,'O','N','2526',4178,0,'2025-12-16','2026-03-15',4291,0,4178,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:34:00','0000-00-00','','','','N','12:34:00','18:32:45','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','3','12:34:20',0,'','janvi','2025-12-16 12:34:20','drpratapsinh','2025-12-16 18:32:45'),(6382,0,0,'O','N','2526',4116,0,'2025-12-16','0000-00-00',4226,0,4116,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:40:00','0000-00-00','','','','N','12:40:00','13:10:53','','N','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','4','12:40:01',0,'','drashti','2025-12-16 12:40:01','drarchit','2025-12-16 13:10:53'),(6383,0,0,'O','N','2526',4179,0,'2025-12-16','2026-03-15',4292,0,4179,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:44:00','0000-00-00','','','','N','12:44:00','13:12:49','','N','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','4','12:44:16',0,'','drashti','2025-12-16 12:44:16','drarchit','2025-12-16 13:12:49'),(6384,0,0,'O','N','2526',4065,0,'2025-12-16','0000-00-00',4175,0,4065,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:46:00','0000-00-00','','','','N','12:46:00','18:26:51','','','N','Y',NULL,'O','O','Z34','','0000-00-00 00:00:00','6','12:46:43',0,'','shweta','2025-12-16 12:46:43','drsagar','2025-12-16 18:26:51'),(6385,0,0,'O','N','2526',3246,0,'2025-12-16','0000-00-00',3328,0,3246,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:51:00','0000-00-00','','','','N','12:51:00','13:12:25','','','N','Y',NULL,'O','O','J02','','0000-00-00 00:00:00','2','12:51:06',0,'','reception','2025-12-16 12:51:06','darshan','2025-12-16 13:12:25'),(6386,0,0,'O','N','2526',4180,0,'2025-12-16','2026-03-15',4293,0,4180,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:55:00','0000-00-00','','','','N','12:55:00','13:06:54','','','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','4','12:55:15',0,'','drashti','2025-12-16 12:55:15','drarchit','2025-12-16 13:06:54'),(6387,0,0,'O','N','2526',4181,0,'2025-12-16','2026-03-15',4294,0,4181,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:59:00','0000-00-00','','','','N','12:59:00','19:54:31','','N','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','4','12:59:45',0,'','reception','2025-12-16 12:59:44','drarchit','2025-12-16 19:54:31'),(6388,0,0,'O','N','2526',4182,0,'2025-12-16','2026-03-15',4295,0,4182,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:08:00','0000-00-00','','','','N','13:08:00','13:20:31','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','5','13:08:19',0,'','janvi','2025-12-16 13:08:19','drjayant','2025-12-16 13:20:31'),(6389,0,0,'O','N','2526',4183,0,'2025-12-16','2026-03-15',4296,0,4183,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:08:00','0000-00-00','','','','N','13:08:00','13:23:40','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','4','13:08:38',0,'','drashti','2025-12-16 13:08:38','drarchit','2025-12-16 13:23:40'),(6390,0,0,'O','N','2526',4184,0,'2025-12-16','2026-03-15',4297,0,4184,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:10:00','0000-00-00','','','','N','13:10:00','13:53:26','','','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','2','13:10:08',0,'','reception','2025-12-16 13:10:07','darshan','2025-12-16 13:53:26'),(6391,0,0,'O','N','2526',4106,0,'2025-12-16','0000-00-00',4215,0,4106,'N','','N','','','','','N','D02','','N',60,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:12:00','0000-00-00','','','','N','13:12:00','18:33:21','','','N','Y',NULL,'O','O','Z39','','0000-00-00 00:00:00','3','13:12:26',0,'','janvi','2025-12-16 13:12:26','drpratapsinh','2025-12-16 18:33:21'),(6392,0,0,'O','N','2526',4185,0,'2025-12-16','2026-03-15',4298,0,4185,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:13:00','0000-00-00','','','','N','13:13:00','13:26:44','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','4','13:13:41',0,'','drashti','2025-12-16 13:13:41','drarchit','2025-12-16 13:26:44'),(6393,0,0,'O','N','2526',3841,0,'2025-12-16','0000-00-00',3950,0,3841,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:15:00','0000-00-00','','','','N','13:15:00','13:34:15','','','N','Y',NULL,'O','O','Z41','','0000-00-00 00:00:00','4','13:15:08',0,'','reception','2025-12-16 13:15:08','drarchit','2025-12-16 13:34:15'),(6394,0,0,'O','N','2526',4186,0,'2025-12-16','2026-03-15',4299,0,4186,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','13:16:00','0000-00-00','','','','N','13:16:00','13:34:23','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','4','13:16:23',0,'','reception','2025-12-16 13:16:23','drarchit','2025-12-16 13:34:23'),(6395,0,0,'O','N','2526',2738,0,'2025-12-16','0000-00-00',2808,2808,2738,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','14:09:00','0000-00-00','','','','N','14:09:00','18:25:37','','','N','Y',NULL,'O','O','Z43','','0000-00-00 00:00:00','3','14:09:19',0,'','janvi','2025-12-16 14:09:18','drpratapsinh','2025-12-16 18:25:37'),(6396,0,0,'O','N','2526',4187,0,'2025-12-16','2026-03-15',4300,4300,4187,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','14:23:00','0000-00-00','','','','N','14:23:00','14:38:16','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','2','14:23:02',0,'','reception','2025-12-16 14:23:02','darshan','2025-12-16 14:38:16'),(6397,0,0,'I','N','2526',0,298,'2025-12-16','2026-03-15',4301,4301,0,'N','','N','','','','N','N','D02','','N',0,'','42',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','15:30:00','2025-12-20','','1','mo','N','15:30:00','17:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-16 15:45:00','riya','2025-12-20 18:02:19'),(6398,0,0,'O','N','2526',4188,0,'2025-12-16','2026-03-15',4302,4302,4188,'N','','N','','','NV','','N','D06','','N',291,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:20:00','0000-00-00','','','','N','16:20:00','19:16:50','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:20:07',0,'','reception','2025-12-16 16:20:07','darshan','2025-12-16 19:16:50'),(6399,0,0,'O','N','2526',4189,0,'2025-12-16','2026-03-15',4303,4303,4189,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:39:00','0000-00-00','','','','N','16:39:00','17:19:42','','','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:39:26',0,'','reception','2025-12-16 16:39:26','darshan','2025-12-16 17:19:42'),(6400,0,0,'O','N','2526',284,0,'2025-12-16','0000-00-00',300,300,284,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:40:00','0000-00-00','','','','N','16:40:00','17:46:37','','','N','Y',NULL,'O','O','L03','','0000-00-00 00:00:00','2','16:40:08',0,'','priyanshi','2025-12-16 16:40:08','darshan','2025-12-16 17:46:37'),(6401,0,0,'O','N','2526',4190,0,'2025-12-16','2026-03-15',4304,4304,4190,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:46:00','0000-00-00','','','','N','16:46:00','19:11:51','','N','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','16:46:06',0,'','reception','2025-12-16 16:46:06','darshan','2025-12-16 19:11:51'),(6402,0,0,'O','N','2526',4140,0,'2025-12-16','0000-00-00',4252,4252,4140,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:55:00','0000-00-00','','','','N','16:55:00','19:01:46','','N','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','2','16:55:53',0,'','reception','2025-12-16 16:55:53','darshan','2025-12-16 19:01:46'),(6403,0,0,'O','N','2526',1459,0,'2025-12-16','0000-00-00',1500,1500,1459,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:10:00','0000-00-00','','','','N','17:10:00','17:58:54','','','N','Y',NULL,'O','O','L05','','0000-00-00 00:00:00','2','17:11:01',0,'','reception','2025-12-16 17:11:01','darshan','2025-12-16 17:58:54'),(6404,0,0,'O','N','2526',4191,0,'2025-12-16','2026-03-15',4305,4305,4191,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:23:00','0000-00-00','','','','N','17:23:00','18:22:18','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','4','17:23:58',0,'','reception','2025-12-16 17:23:58','drarchit','2025-12-16 18:22:18'),(6405,0,0,'O','N','2526',4192,0,'2025-12-16','2026-03-15',4306,4306,4192,'N','','N','','','NV','','N','D06','','N',181,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','20:11:04','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:27:37',0,'','urvashi','2025-12-16 17:27:37','darshan','2025-12-16 20:11:04'),(6406,0,0,'O','N','2526',4057,0,'2025-12-16','0000-00-00',4164,4164,4057,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','18:23:54','','','N','Y',NULL,'O','O','Z47','','0000-00-00 00:00:00','3','17:32:00',0,'','janvi','2025-12-16 17:32:00','drpratapsinh','2025-12-16 18:23:54'),(6407,0,0,'O','N','2526',4193,0,'2025-12-16','2026-03-15',4307,4307,4193,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','18:19:12','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','2','17:42:47',0,'','urvashi','2025-12-16 17:42:47','darshan','2025-12-16 18:19:12'),(6408,0,0,'O','N','2526',4194,0,'2025-12-16','2026-03-15',4308,4308,4194,'N','','N','','','','','N','D14','','N',292,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','19:33:48','','','N','Y',NULL,'O','N','Z49','','0000-00-00 00:00:00','7','17:42:58',0,'','shweta','2025-12-16 17:42:58','drridham','2025-12-16 19:33:48'),(6409,0,0,'O','N','2526',964,0,'2025-12-16','0000-00-00',997,997,964,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:45:00','0000-00-00','','','','N','17:45:00','18:03:11','','','N','Y',NULL,'O','O','L07','','0000-00-00 00:00:00','2','17:45:39',0,'','urvashi','2025-12-16 17:45:39','darshan','2025-12-16 18:03:11'),(6410,0,0,'O','N','2526',4195,0,'2025-12-16','2026-03-15',4309,4309,4195,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','18:14:52','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:50:05',0,'','reception','2025-12-16 17:50:05','darshan','2025-12-16 18:14:52'),(6411,0,0,'O','N','2526',4023,0,'2025-12-16','0000-00-00',3780,3780,4023,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:54:00','0000-00-00','','','','N','17:54:00','18:30:01','','','N','Y',NULL,'O','O','L09','','0000-00-00 00:00:00','4','17:54:23',0,'','janvi','2025-12-16 17:54:23','drarchit','2025-12-16 18:30:01'),(6412,0,0,'O','N','2526',852,0,'2025-12-16','0000-00-00',884,884,852,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:58:00','0000-00-00','','','','N','17:58:00','18:22:16','','','N','Y',NULL,'O','O','L10','','0000-00-00 00:00:00','2','17:58:11',0,'','urvashi','2025-12-16 17:58:11','darshan','2025-12-16 18:22:15'),(6413,0,0,'O','N','2526',4196,0,'2025-12-16','2026-03-15',4310,4310,4196,'N','','N','','','FC ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:58:00','0000-00-00','','','','N','17:58:00','18:49:31','','','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','4','17:58:59',0,'','urvashi','2025-12-16 17:58:59','drarchit','2025-12-16 18:49:31'),(6414,0,0,'O','N','2526',4197,0,'2025-12-16','2026-03-15',4311,4311,4197,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:01:00','0000-00-00','','','','N','18:01:00','18:52:39','','','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','4','18:01:34',0,'','janvi','2025-12-16 18:01:34','drarchit','2025-12-16 18:52:39'),(6415,0,0,'O','N','2526',2542,0,'2025-12-16','0000-00-00',2599,2599,2542,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','18:20:52','','','N','Y',NULL,'O','O','Z51','','0000-00-00 00:00:00','3','18:03:30',0,'','janvi','2025-12-16 18:03:30','drpratapsinh','2025-12-16 18:20:52'),(6416,0,0,'O','N','2526',4198,0,'2025-12-16','2026-03-15',4312,4312,4198,'N','','N','','','','','N','D03','','N',118,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','18:26:40','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','6','18:03:50',0,'','shweta','2025-12-16 18:03:50','drsagar','2025-12-16 18:26:40'),(6417,0,0,'O','N','2526',4199,0,'2025-12-16','2026-03-15',4313,4313,4199,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','18:20:35','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','5','18:06:02',0,'','reception','2025-12-16 18:05:50','drjayant','2025-12-16 18:20:35'),(6418,0,0,'O','N','2526',3332,0,'2025-12-16','0000-00-00',3424,3424,3332,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:27:23','','','N','Y',NULL,'O','O','Z54','','0000-00-00 00:00:00','6','18:09:28',0,'','shweta','2025-12-16 18:09:28','drsagar','2025-12-16 18:27:23'),(6419,0,0,'O','N','2526',3310,0,'2025-12-16','0000-00-00',3399,3399,3310,'N','','N','','','','','N','D02','','N',90,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:17:00','0000-00-00','','','','N','18:17:00','18:21:13','','','N','Y',NULL,'O','O','Z55','','0000-00-00 00:00:00','3','18:17:48',0,'','janvi','2025-12-16 18:17:48','drpratapsinh','2025-12-16 18:21:13'),(6420,0,0,'O','N','2526',4200,0,'2025-12-16','2026-03-15',4314,4314,4200,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','19:01:38','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','4','18:18:57',0,'','urvashi','2025-12-16 18:18:57','drarchit','2025-12-16 19:01:38'),(6421,0,0,'O','N','2526',4172,0,'2025-12-16','0000-00-00',4285,4285,4172,'N','','N','','','','','N','D27','','N',188,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','11:50:17','','N','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','4','18:19:26',0,'','janvi','2025-12-16 18:19:26','drarchit','2025-12-17 11:50:17'),(6422,0,0,'O','N','2526',2930,0,'2025-12-16','0000-00-00',3007,3007,2930,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:20:00','0000-00-00','','','','N','18:20:00','18:26:43','','','N','Y',NULL,'O','O','Z56','','0000-00-00 00:00:00','3','18:20:56',0,'','janvi','2025-12-16 18:20:56','drpratapsinh','2025-12-16 18:26:43'),(6423,0,0,'O','N','2526',2241,0,'2025-12-16','0000-00-00',2297,2297,2241,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','19:06:53','','','N','Y',NULL,'O','O','L13','','0000-00-00 00:00:00','4','18:21:23',0,'','urvashi','2025-12-16 18:21:23','drarchit','2025-12-16 19:06:53'),(6424,0,0,'O','N','2526',4201,0,'2025-12-16','2026-03-15',4315,4315,4201,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','19:22:08','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','4','18:24:26',0,'','reception','2025-12-16 18:24:26','drarchit','2025-12-16 19:22:08'),(6425,0,0,'O','N','2526',3694,0,'2025-12-16','0000-00-00',3799,3799,3694,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','19:10:37','','','N','Y',NULL,'O','O','L14','','0000-00-00 00:00:00','4','18:26:12',0,'','urvashi','2025-12-16 18:26:12','drarchit','2025-12-16 19:10:37'),(6426,0,0,'O','N','2526',4202,0,'2025-12-16','2026-03-15',4316,4316,4202,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','18:47:29','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','2','18:28:19',0,'','reception','2025-12-16 18:28:19','darshan','2025-12-16 18:47:29'),(6427,0,0,'O','N','2526',3593,0,'2025-12-16','0000-00-00',3691,3691,3593,'N','','N','','','','','N','D02','','N',223,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','18:37:26','','','N','Y',NULL,'O','O','Z58','','0000-00-00 00:00:00','3','18:33:11',0,'','janvi','2025-12-16 18:33:11','drpratapsinh','2025-12-16 18:37:26'),(6428,0,0,'O','N','2526',4203,0,'2025-12-16','2026-03-15',4317,4317,4203,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','11:25:18','','N','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','4','18:33:34',0,'','urvashi','2025-12-16 18:33:34','drarchit','2025-12-17 11:25:18'),(6429,0,0,'O','N','2526',64,0,'2025-12-16','0000-00-00',75,75,64,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','18:43:47','','','N','Y',NULL,'O','O','Z60','','0000-00-00 00:00:00','4','18:34:49',0,'','urvashi','2025-12-16 18:34:49','drarchit','2025-12-16 18:43:47'),(6430,0,0,'O','N','2526',676,0,'2025-12-16','0000-00-00',705,705,676,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','19:35:37','','','N','Y',NULL,'O','O','Z61','','0000-00-00 00:00:00','4','18:44:02',0,'','urvashi','2025-12-16 18:44:02','drarchit','2025-12-16 19:35:37'),(6431,0,0,'O','N','2526',4204,0,'2025-12-16','2026-03-15',4318,4318,4204,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:45:00','0000-00-00','','','','N','18:45:00','19:16:49','','','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','4','18:45:15',0,'','urvashi','2025-12-16 18:45:15','drarchit','2025-12-16 19:16:49'),(6432,0,0,'O','N','2526',2914,0,'2025-12-16','0000-00-00',2991,2991,2914,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:45:00','0000-00-00','','','','N','18:45:00','19:10:28','','','N','Y',NULL,'O','O','L17','','0000-00-00 00:00:00','2','18:45:35',0,'','reception','2025-12-16 18:45:35','darshan','2025-12-16 19:10:28'),(6433,0,0,'O','N','2526',4205,0,'2025-12-16','2026-03-15',4319,4319,4205,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','00:00:00','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','3','18:48:04',0,'','janvi','2025-12-16 18:48:04','','0000-00-00 00:00:00'),(6434,0,0,'O','N','2526',3099,0,'2025-12-16','0000-00-00',3185,3185,3099,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:50:00','0000-00-00','','','','N','18:50:00','19:31:04','','','N','Y',NULL,'O','O','Z63','','0000-00-00 00:00:00','3','18:50:04',0,'','janvi','2025-12-16 18:50:04','drpratapsinh','2025-12-16 19:31:04'),(6435,0,0,'O','N','2526',3814,0,'2025-12-16','0000-00-00',3920,3920,3814,'N','','N','','','FOLLOWUP C','','N','D27','','N',17,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:43:41','','','N','Y',NULL,'O','O','L18','','0000-00-00 00:00:00','4','18:51:48',0,'','urvashi','2025-12-16 18:51:48','drarchit','2025-12-16 19:43:41'),(6436,0,0,'O','N','2526',2992,0,'2025-12-16','0000-00-00',3070,3070,2992,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:53:00','0000-00-00','','','','N','18:53:00','19:53:43','','','N','Y',NULL,'O','O','L19','','0000-00-00 00:00:00','4','18:53:13',0,'','urvashi','2025-12-16 18:53:13','drarchit','2025-12-16 19:53:43'),(6437,0,0,'O','N','2526',245,0,'2025-12-16','0000-00-00',260,260,245,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:53:00','0000-00-00','','','','N','18:53:00','19:04:23','','','N','Y',NULL,'O','O','Z64','','0000-00-00 00:00:00','5','18:53:44',0,'','urvashi','2025-12-16 18:53:44','drjayant','2025-12-16 19:04:23'),(6438,0,0,'O','N','2526',4206,0,'2025-12-16','2026-03-15',4320,4320,4206,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','19:52:52','','','N','Y',NULL,'O','N','Z65','','0000-00-00 00:00:00','5','18:56:41',0,'','urvashi','2025-12-16 18:56:41','drjayant','2025-12-16 19:52:52'),(6439,0,0,'O','N','2526',3599,0,'2025-12-16','0000-00-00',3697,3697,3599,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:59:00','0000-00-00','','','','N','18:59:00','19:22:52','','','N','Y',NULL,'O','O','Z66','','0000-00-00 00:00:00','2','18:59:19',0,'','reception','2025-12-16 18:59:19','darshan','2025-12-16 19:22:52'),(6440,0,0,'O','N','2526',4207,0,'2025-12-16','2026-03-15',4321,4321,4207,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:04:00','0000-00-00','','','','N','19:04:00','20:22:53','','N','N','Y',NULL,'O','N','Z67','','0000-00-00 00:00:00','2','19:04:27',0,'','urvashi','2025-12-16 19:04:27','darshan','2025-12-16 20:22:52'),(6441,0,0,'O','N','2526',4208,0,'2025-12-16','2026-03-15',4322,4322,4208,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:06:00','0000-00-00','','','','N','19:06:00','19:39:02','','','N','Y',NULL,'O','N','Z68','','0000-00-00 00:00:00','2','19:06:19',0,'','reception','2025-12-16 19:06:19','darshan','2025-12-16 19:39:02'),(6442,0,0,'O','N','2526',4209,0,'2025-12-16','2026-03-15',4323,4323,4209,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:09:00','0000-00-00','','','','N','19:09:00','19:17:46','','','N','Y',NULL,'O','N','Z69','','0000-00-00 00:00:00','5','19:09:49',0,'','urvashi','2025-12-16 19:09:49','drjayant','2025-12-16 19:17:46'),(6443,0,0,'O','N','2526',3829,0,'2025-12-16','0000-00-00',3934,3934,3829,'N','','N','','','','','N','D02','','N',108,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:15:00','0000-00-00','','','','N','19:15:00','19:31:32','','','N','Y',NULL,'O','O','Z70','','0000-00-00 00:00:00','3','19:14:59',0,'','janvi','2025-12-16 19:14:59','drpratapsinh','2025-12-16 19:31:32'),(6444,0,0,'O','N','2526',4210,0,'2025-12-16','2026-03-15',4324,4324,4210,'N','','N','','','NE','','N','D06','','N',4,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:36:00','0000-00-00','','','','N','19:36:00','20:04:41','','','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','2','19:36:01',0,'','urvashi','2025-12-16 19:36:01','darshan','2025-12-16 20:04:41'),(6445,0,0,'O','N','2526',2454,0,'2025-12-16','0000-00-00',2513,2513,2454,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:42:00','0000-00-00','','','','N','19:42:00','20:05:44','','','N','Y',NULL,'O','O','Z72','','0000-00-00 00:00:00','4','19:42:21',0,'','urvashi','2025-12-16 19:42:21','drarchit','2025-12-16 20:05:44'),(6446,0,0,'O','N','2526',3957,0,'2025-12-16','0000-00-00',4065,4065,3957,'N','','N','','','FOLLOWUP','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:47:00','0000-00-00','','','','N','19:47:00','20:01:36','','','N','Y',NULL,'O','O','Z73','','0000-00-00 00:00:00','5','19:47:48',0,'','urvashi','2025-12-16 19:47:48','drjayant','2025-12-16 20:01:36'),(6447,0,0,'I','N','2526',4209,299,'2025-12-16','2026-03-15',4323,4323,4209,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','20:20:00','2025-12-19','','1','mo','N','20:20:00','19:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-16 20:21:25','mo','2025-12-19 19:26:31'),(6448,0,0,'I','N','2526',0,300,'2025-12-16','2026-03-15',4325,4325,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','Y','N','','','','0000-00-00','','','',1,'N','N','N','21:00:00','2025-12-17','','1','mo','N','21:00:00','18:51:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-16 21:05:47','mo','2025-12-17 19:26:22'),(6449,0,0,'O','N','2526',4211,0,'2025-12-17','2026-03-16',4326,4326,4211,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','08:40:00','0000-00-00','','','','N','08:40:00','11:44:45','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','4','08:40:16',0,'','reception','2025-12-17 08:40:16','drarchit','2025-12-17 11:44:45'),(6450,0,0,'O','N','2526',4212,0,'2025-12-17','2026-03-16',4327,4327,4212,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','08:45:00','0000-00-00','','','','N','08:45:00','18:32:33','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','5','08:45:14',0,'','reception','2025-12-17 08:45:14','drjayant','2025-12-17 18:32:33'),(6451,0,0,'O','N','2526',4185,0,'2025-12-17','0000-00-00',4298,4298,4185,'N','','N','','','INJ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','08:47:00','0000-00-00','','','','N','08:47:00','11:44:37','','','N','Y',NULL,'O','O','Z03','','0000-00-00 00:00:00','4','08:47:53',0,'','reception','2025-12-17 08:47:53','drarchit','2025-12-17 11:44:37'),(6452,0,0,'O','N','2526',4213,0,'2025-12-17','2026-03-16',4328,4328,4213,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:50:00','0000-00-00','','','','N','09:50:00','12:49:28','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','09:50:05',0,'','reception','2025-12-17 09:50:05','darshan','2025-12-17 12:49:28'),(6453,0,0,'O','N','2526',4214,0,'2025-12-17','2026-03-16',4329,4329,4214,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:55:00','0000-00-00','','','','N','09:55:00','13:24:50','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','09:56:01',0,'','reception','2025-12-17 09:56:01','darshan','2025-12-17 13:24:50'),(6454,0,0,'O','N','2526',4057,0,'2025-12-17','0000-00-00',4164,4164,4057,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:04:00','0000-00-00','','','','N','10:04:00','10:45:04','','','N','Y',NULL,'O','O','Z04','','0000-00-00 00:00:00','3','10:04:12',0,'','priyanshi','2025-12-17 10:04:12','drpratapsinh','2025-12-17 10:45:04'),(6455,0,0,'O','N','2526',2291,0,'2025-12-17','0000-00-00',2348,2348,2291,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:05:00','0000-00-00','','','','N','10:05:00','11:46:05','','','N','Y',NULL,'O','O','Z05','','0000-00-00 00:00:00','2','10:06:00',0,'','reception','2025-12-17 10:06:00','darshan','2025-12-17 11:46:05'),(6456,0,0,'O','N','2526',1844,0,'2025-12-17','0000-00-00',1890,1890,1844,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:12:00','0000-00-00','','','','N','10:12:00','11:01:29','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','10:12:39',0,'','reception','2025-12-17 10:12:39','darshan','2025-12-17 11:01:29'),(6457,0,0,'O','N','2526',3350,0,'2025-12-17','0000-00-00',3446,3446,3350,'N','','N','','','FV','','N','D06','','N',2,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:13:00','0000-00-00','','','','N','10:13:00','11:00:37','','','N','Y',NULL,'O','O','E02','','0000-00-00 00:00:00','2','10:13:28',0,'','reception','2025-12-17 10:13:28','darshan','2025-12-17 11:00:37'),(6458,0,0,'O','N','2526',3205,0,'2025-12-17','0000-00-00',3292,3292,3205,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:14:00','0000-00-00','','','','N','10:14:00','11:31:33','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','2','10:14:56',0,'','reception','2025-12-17 10:14:56','darshan','2025-12-17 11:31:33'),(6459,0,0,'O','N','2526',4215,0,'2025-12-17','2026-03-16',4330,4330,4215,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','11:13:01','','','N','Y',NULL,'O','N','F02','','0000-00-00 00:00:00','2','10:16:46',0,'','reception','2025-12-17 10:16:46','darshan','2025-12-17 11:13:01'),(6460,0,0,'O','N','2526',3075,0,'2025-12-17','0000-00-00',3161,3161,3075,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:18:00','0000-00-00','','','','N','10:18:00','11:16:27','','','N','Y',NULL,'O','O','F03','','0000-00-00 00:00:00','2','10:18:09',0,'','reception','2025-12-17 10:18:09','darshan','2025-12-17 11:16:27'),(6461,0,0,'I','N','2526',4206,301,'2025-12-17','2026-03-16',4320,4320,4206,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','12','','','0000-00-00','','','',1,'N','N','N','10:15:00','2025-12-20','','1','mo','N','10:15:00','12:25:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-17 10:23:24','riya','2025-12-20 13:51:13'),(6462,0,0,'O','N','2526',3091,0,'2025-12-17','0000-00-00',3177,3177,3091,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:34:00','0000-00-00','','','','N','10:34:00','11:49:23','','','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','2','10:34:44',0,'','reception','2025-12-17 10:34:44','darshan','2025-12-17 11:49:23'),(6463,0,0,'O','N','2526',4216,0,'2025-12-17','2026-03-16',4331,4331,4216,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:38:00','0000-00-00','','','','N','10:38:00','13:02:27','','N','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','2','10:38:45',0,'','reception','2025-12-17 10:38:45','darshan','2025-12-17 13:02:26'),(6464,0,0,'O','N','2526',4217,0,'2025-12-17','2026-03-16',4332,4332,4217,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:45:00','0000-00-00','','','','N','10:45:00','18:49:02','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','3','10:45:40',0,'','priyanshi','2025-12-17 10:45:40','drpratapsinh','2025-12-17 18:49:02'),(6465,0,0,'O','N','2526',2853,0,'2025-12-17','0000-00-00',2925,2925,2853,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:49:00','0000-00-00','','','','N','10:49:00','11:53:14','','','N','Y',NULL,'O','O','Z08','','0000-00-00 00:00:00','2','10:49:12',0,'','reception','2025-12-17 10:49:12','darshan','2025-12-17 11:53:14'),(6466,0,0,'O','N','2526',4218,0,'2025-12-17','2026-03-16',4333,4333,4218,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','12:03:50','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','2','10:51:17',0,'','reception','2025-12-17 10:51:17','darshan','2025-12-17 12:03:50'),(6467,0,0,'O','N','2526',3973,0,'2025-12-17','0000-00-00',4080,4080,3973,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','11:05:43','','','N','Y',NULL,'O','O','Z10','','0000-00-00 00:00:00','3','10:55:06',0,'','drashti','2025-12-17 10:55:06','drpratapsinh','2025-12-17 11:05:43'),(6468,0,0,'O','N','2526',4219,0,'2025-12-17','2026-03-16',4334,4334,4219,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','12:36:46','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','5','10:55:54',0,'','priyanshi','2025-12-17 10:55:54','drjayant','2025-12-17 12:36:46'),(6469,0,0,'O','N','2526',4220,0,'2025-12-17','2026-03-16',4335,4335,4220,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','13:45:47','','N','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','10:58:07',0,'','reception','2025-12-17 10:58:07','darshan','2025-12-17 13:45:47'),(6470,0,0,'O','N','2526',3525,0,'2025-12-17','0000-00-00',3627,3627,3525,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','11:08:32','','','N','Y',NULL,'O','O','Z12','','0000-00-00 00:00:00','3','11:01:22',0,'','priyanshi','2025-12-17 11:01:22','drpratapsinh','2025-12-17 11:08:32'),(6471,0,0,'O','N','2526',541,0,'2025-12-17','0000-00-00',567,567,541,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','11:42:29','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','5','11:02:43',0,'','drashti','2025-12-17 11:02:43','drjayant','2025-12-17 11:42:29'),(6472,0,0,'O','N','2526',4221,0,'2025-12-17','2026-03-16',4336,4336,4221,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','13:58:09','','N','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','11:02:54',0,'','reception','2025-12-17 11:02:54','darshan','2025-12-17 13:58:09'),(6473,0,0,'O','N','2526',715,0,'2025-12-17','0000-00-00',746,746,715,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','11:41:34','','','N','Y',NULL,'O','O','G03','','0000-00-00 00:00:00','2','11:08:20',0,'','reception','2025-12-17 11:08:20','darshan','2025-12-17 11:41:34'),(6474,0,0,'O','N','2526',4222,0,'2025-12-17','2026-03-16',4337,4337,4222,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','11:37:20','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','6','11:09:52',0,'','shweta','2025-12-17 11:09:52','drsagar','2025-12-17 11:37:20'),(6475,0,0,'O','N','2526',25,0,'2025-12-17','0000-00-00',26,26,25,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','12:38:36','','','N','Y',NULL,'O','O','I02','','0000-00-00 00:00:00','2','11:09:57',0,'','reception','2025-12-17 11:09:57','darshan','2025-12-17 12:38:36'),(6476,0,0,'O','N','2526',3369,0,'2025-12-17','0000-00-00',1481,1481,3369,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','00:00:00','','','N','Y',NULL,'O','O','Z15','','0000-00-00 00:00:00','7','11:11:04',0,'','shweta','2025-12-17 11:11:04','','0000-00-00 00:00:00'),(6477,0,0,'O','N','2526',4223,0,'2025-12-17','2026-03-16',4338,4338,4223,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','11:44:55','','','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','6','11:12:56',0,'','shweta','2025-12-17 11:12:56','drsagar','2025-12-17 11:44:55'),(6478,0,0,'O','N','2526',479,0,'2025-12-17','0000-00-00',505,505,479,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','11:50:10','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','6','11:13:55',0,'','shweta','2025-12-17 11:13:55','drsagar','2025-12-17 11:50:10'),(6479,0,0,'O','N','2526',2531,0,'2025-12-17','0000-00-00',2588,2588,2531,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','11:57:13','','','N','Y',NULL,'O','O','Z18','','0000-00-00 00:00:00','4','11:20:46',0,'','drashti','2025-12-17 11:20:46','drarchit','2025-12-17 11:57:13'),(6480,0,0,'O','N','2526',4224,0,'2025-12-17','2026-03-16',4339,4339,4224,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','11:50:48','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','6','11:21:24',0,'','shweta','2025-12-17 11:21:24','drsagar','2025-12-17 11:50:48'),(6481,0,0,'O','N','2526',3369,0,'2025-12-17','0000-00-00',1481,1481,3369,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','00:00:00','','','N','N',NULL,'O','O','Y01','','0000-00-00 00:00:00','7','11:25:13',0,'','drashti','2025-12-17 11:25:13','','0000-00-00 00:00:00'),(6482,0,0,'O','N','2526',4225,0,'2025-12-17','2026-03-16',4340,4340,4225,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','12:12:57','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','4','11:31:28',0,'','drashti','2025-12-17 11:26:58','drarchit','2025-12-17 12:12:57'),(6483,0,0,'O','N','2526',2214,0,'2025-12-17','0000-00-00',2270,2270,2214,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','12:02:14','','','N','Y',NULL,'O','O','Z21','','0000-00-00 00:00:00','4','11:31:28',0,'','priyanshi','2025-12-17 11:28:40','drarchit','2025-12-17 12:02:14'),(6484,0,0,'O','N','2526',4226,0,'2025-12-17','2026-03-16',4341,4341,4226,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:29:00','0000-00-00','','','','N','11:29:00','18:44:29','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','3','11:29:54',0,'','priyanshi','2025-12-17 11:29:54','drpratapsinh','2025-12-17 18:44:29'),(6485,0,0,'O','N','2526',2001,0,'2025-12-17','0000-00-00',2052,2052,2001,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:37:00','0000-00-00','','','','N','11:37:00','11:58:55','','','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','2','11:37:05',0,'','reception','2025-12-17 11:37:05','darshan','2025-12-17 11:58:55'),(6486,0,0,'O','N','2526',4227,0,'2025-12-17','2026-03-16',4342,4342,4227,'N','','N','','','','','N','D14','','N',293,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','00:00:00','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','7','11:48:33',0,'','shweta','2025-12-17 11:48:33','','0000-00-00 00:00:00'),(6487,0,0,'O','N','2526',4228,0,'2025-12-17','2026-03-16',4343,4343,4228,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','12:15:41','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','11:51:22',0,'','reception','2025-12-17 11:51:22','darshan','2025-12-17 12:15:41'),(6488,0,0,'O','N','2526',4229,0,'2025-12-17','2026-03-16',4344,4344,4229,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','12:27:48','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','5','11:51:26',0,'','drashti','2025-12-17 11:51:26','drjayant','2025-12-17 12:27:48'),(6489,0,0,'O','N','2526',4230,0,'2025-12-17','2026-03-16',4345,4345,4230,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:52:00','0000-00-00','','','','N','11:52:00','18:15:46','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','5','11:52:55',0,'','drashti','2025-12-17 11:52:55','drjayant','2025-12-17 18:15:46'),(6490,0,0,'O','N','2526',1661,0,'2025-12-17','0000-00-00',1706,1706,1661,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','00:00:00','','','N','Y',NULL,'O','O','Z26','','0000-00-00 00:00:00','7','11:58:04',0,'','shweta','2025-12-17 11:58:04','','0000-00-00 00:00:00'),(6491,0,0,'O','N','2526',3080,0,'2025-12-17','0000-00-00',3166,3166,3080,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:31:00','0000-00-00','','','','N','12:31:00','13:00:45','','','N','Y',NULL,'O','O','J02','','0000-00-00 00:00:00','2','12:31:41',0,'','reception','2025-12-17 12:31:40','darshan','2025-12-17 13:00:45'),(6492,0,0,'O','N','2526',4106,0,'2025-12-17','0000-00-00',4215,4215,4106,'N','','N','','','','','N','D02','','N',60,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:34:00','0000-00-00','','','','N','12:34:00','13:00:51','','','N','Y',NULL,'O','O','Z27','','0000-00-00 00:00:00','3','12:34:06',0,'','janvi','2025-12-17 12:34:06','drpratapsinh','2025-12-17 13:00:51'),(6493,0,0,'O','N','2526',3772,0,'2025-12-17','0000-00-00',3876,3876,3772,'N','','N','','','FV ','','N','D06','','N',3,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:38:00','0000-00-00','','','','N','12:38:00','13:19:22','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','2','12:38:08',0,'','reception','2025-12-17 12:38:08','darshan','2025-12-17 13:19:22'),(6494,0,0,'O','N','2526',4231,0,'2025-12-17','2026-03-16',4346,4346,4231,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:39:00','0000-00-00','','','','N','12:39:00','13:08:28','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','4','12:39:36',0,'','drashti','2025-12-17 12:39:36','drarchit','2025-12-17 13:08:28'),(6495,0,0,'O','N','2526',4232,0,'2025-12-17','2026-03-16',4347,4347,4232,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:42:00','0000-00-00','','','','N','12:42:00','12:52:46','','','N','Y',NULL,'O','N','J04','','0000-00-00 00:00:00','4','12:42:56',0,'','drashti','2025-12-17 12:42:56','drarchit','2025-12-17 12:52:46'),(6496,0,0,'O','N','2526',4233,0,'2025-12-17','2026-03-16',4348,4348,4233,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:46:00','0000-00-00','','','','N','12:46:00','13:22:12','','','N','Y',NULL,'O','N','J05','','0000-00-00 00:00:00','2','12:47:00',0,'','reception','2025-12-17 12:47:00','darshan','2025-12-17 13:22:12'),(6497,0,0,'O','N','2526',1005,0,'2025-12-17','0000-00-00',1037,1037,1005,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:51:00','0000-00-00','','','','N','12:51:00','00:00:00','','','N','N',NULL,'O','O','Z29','','0000-00-00 00:00:00','7','12:51:01',0,'','shweta','2025-12-17 12:51:01','','0000-00-00 00:00:00'),(6498,0,0,'O','N','2526',3701,0,'2025-12-17','0000-00-00',3804,3804,3701,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:58:00','0000-00-00','','','','N','12:58:00','00:00:00','','','N','N',NULL,'O','O','Z30','','0000-00-00 00:00:00','7','12:58:07',0,'','shweta','2025-12-17 12:58:07','','0000-00-00 00:00:00'),(6499,0,0,'O','N','2526',3166,0,'2025-12-17','0000-00-00',3252,3252,3166,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:02:00','0000-00-00','','','','N','13:02:00','13:33:30','','','N','Y',NULL,'O','O','K01','','0000-00-00 00:00:00','2','13:02:15',0,'','reception','2025-12-17 13:02:15','darshan','2025-12-17 13:33:30'),(6500,0,0,'O','N','2526',4234,0,'2025-12-17','2026-03-16',4349,4349,4234,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:03:00','0000-00-00','','','','N','13:03:00','00:00:00','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','7','13:03:12',0,'','shweta','2025-12-17 13:03:12','','0000-00-00 00:00:00'),(6501,0,0,'O','N','2526',3378,0,'2025-12-17','0000-00-00',3473,3473,3378,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:04:00','0000-00-00','','','','N','13:04:00','18:44:07','','','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','3','13:04:27',0,'','janvi','2025-12-17 13:04:27','drpratapsinh','2025-12-17 18:44:07'),(6502,0,0,'O','N','2526',4235,0,'2025-12-17','2026-03-16',4350,4350,4235,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:18:00','0000-00-00','','','','N','13:18:00','14:31:38','','N','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','2','13:18:49',0,'','reception','2025-12-17 13:18:49','darshan','2025-12-17 14:31:38'),(6503,0,0,'O','N','2526',2907,0,'2025-12-17','0000-00-00',2984,2984,2907,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:19:00','0000-00-00','','','','N','13:19:00','18:08:28','','','N','Y',NULL,'O','O','Z34','','0000-00-00 00:00:00','6','13:19:10',0,'','shweta','2025-12-17 13:19:10','drsagar','2025-12-17 18:08:28'),(6504,0,0,'O','N','2526',280,0,'2025-12-17','0000-00-00',296,296,280,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:21:00','0000-00-00','','','','N','13:21:00','18:58:32','','','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','4','13:21:36',0,'','drashti','2025-12-17 13:21:36','drarchit','2025-12-17 18:58:32'),(6505,0,0,'O','N','2526',3018,0,'2025-12-17','0000-00-00',3098,3098,3018,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:35:00','0000-00-00','','','','N','13:35:00','00:00:00','','','N','N',NULL,'O','O','Z36','','0000-00-00 00:00:00','4','13:35:15',0,'','drashti','2025-12-17 13:35:15','','0000-00-00 00:00:00'),(6506,0,0,'O','N','2526',4236,0,'2025-12-17','2026-03-16',4351,4351,4236,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:17:00','0000-00-00','','','','N','16:17:00','17:21:40','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','16:17:12',0,'','reception','2025-12-17 16:17:11','darshan','2025-12-17 17:21:40'),(6507,0,0,'O','N','2526',963,0,'2025-12-17','0000-00-00',996,996,963,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:19:00','0000-00-00','','','','N','16:19:00','17:29:52','','','N','Y',NULL,'O','O','Z38','','0000-00-00 00:00:00','2','16:19:48',0,'','reception','2025-12-17 16:19:48','darshan','2025-12-17 17:29:52'),(6508,0,0,'O','N','2526',3327,0,'2025-12-17','0000-00-00',3419,3419,3327,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:24:00','0000-00-00','','','','N','16:24:00','17:47:38','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','16:24:36',0,'','reception','2025-12-17 16:24:36','darshan','2025-12-17 17:47:38'),(6509,0,0,'O','N','2526',1640,0,'2025-12-17','0000-00-00',1685,1685,1640,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:43:00','0000-00-00','','','','N','16:43:00','17:30:06','','','N','Y',NULL,'O','O','Z39','','0000-00-00 00:00:00','2','16:43:43',0,'','reception','2025-12-17 16:43:43','darshan','2025-12-17 17:30:06'),(6510,0,0,'O','N','2526',4237,0,'2025-12-17','2026-03-16',4352,4352,4237,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:47:00','0000-00-00','','','','N','16:47:00','18:14:33','','N','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','2','16:48:00',0,'','reception','2025-12-17 16:48:00','darshan','2025-12-17 18:14:33'),(6511,0,0,'O','N','2526',1479,0,'2025-12-17','0000-00-00',1520,1520,1479,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:49:00','0000-00-00','','','','N','16:49:00','17:19:52','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','16:49:22',0,'','reception','2025-12-17 16:49:22','darshan','2025-12-17 17:19:52'),(6512,0,0,'O','N','2526',326,0,'2025-12-17','0000-00-00',342,342,326,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:51:00','0000-00-00','','','','N','16:51:00','17:30:28','','','N','Y',NULL,'O','O','Z41','','0000-00-00 00:00:00','2','16:51:48',0,'','reception','2025-12-17 16:51:48','darshan','2025-12-17 17:30:28'),(6513,0,0,'O','N','2526',745,0,'2025-12-17','0000-00-00',776,776,745,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:55:00','0000-00-00','','','','N','16:55:00','17:34:10','','','N','Y',NULL,'O','O','Z42','','0000-00-00 00:00:00','2','16:55:29',0,'','reception','2025-12-17 16:55:29','darshan','2025-12-17 17:34:10'),(6514,0,0,'O','N','2526',888,0,'2025-12-17','0000-00-00',920,920,888,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:00:00','0000-00-00','','','','N','17:00:00','17:44:04','','','N','Y',NULL,'O','O','L03','','0000-00-00 00:00:00','2','17:00:05',0,'','drashti','2025-12-17 17:00:05','darshan','2025-12-17 17:44:04'),(6515,0,0,'O','N','2526',4238,0,'2025-12-17','2026-03-16',4353,4353,4238,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:03:00','0000-00-00','','','','N','17:03:00','19:23:34','','N','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','4','17:03:44',0,'','reception','2025-12-17 17:03:44','drarchit','2025-12-17 19:23:34'),(6516,0,0,'O','N','2526',4239,0,'2025-12-17','2026-03-16',4354,4354,4239,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:11:00','0000-00-00','','','','N','17:11:00','19:22:54','','','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','5','18:15:46',0,'','reception','2025-12-17 17:11:03','drjayant','2025-12-17 19:22:54'),(6517,0,0,'O','N','2526',4240,0,'2025-12-17','2026-03-16',4355,4355,4240,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:19:00','0000-00-00','','','','N','17:19:00','19:28:12','','N','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','2','17:19:35',0,'','reception','2025-12-17 17:19:35','darshan','2025-12-17 19:28:12'),(6518,0,0,'O','N','2526',3753,0,'2025-12-17','0000-00-00',3856,3856,3753,'N','','N','','','FOLLOWUP C','','N','D02','','N',4,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:22:00','0000-00-00','','','','N','17:22:00','18:43:24','','','N','Y',NULL,'O','O','Z46','','0000-00-00 00:00:00','3','17:22:55',0,'','drashti','2025-12-17 17:22:55','drpratapsinh','2025-12-17 18:43:24'),(6519,0,0,'O','N','2526',4241,0,'2025-12-17','2026-03-16',4356,4356,4241,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:23:00','0000-00-00','','','','N','17:23:00','18:39:41','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','4','17:23:44',0,'','reception','2025-12-17 17:23:44','drarchit','2025-12-17 18:39:41'),(6520,0,0,'O','N','2526',4242,0,'2025-12-17','2026-03-16',4357,4357,4242,'N','','N','','','','','N','D02','','N',294,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','00:00:00','','','N','N',NULL,'O','N','Z48','','0000-00-00 00:00:00','3','17:32:11',0,'','priyanshi','2025-12-17 17:32:11','','0000-00-00 00:00:00'),(6521,0,0,'O','N','2526',4243,0,'2025-12-17','2026-03-16',4358,4358,4243,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:33:00','0000-00-00','','','','N','17:33:00','19:21:43','','N','N','Y',NULL,'O','N','L04','','0000-00-00 00:00:00','2','17:33:33',0,'','reception','2025-12-17 17:33:33','darshan','2025-12-17 19:21:43'),(6522,0,0,'O','N','2526',2333,0,'2025-12-17','0000-00-00',2389,2389,2333,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:35:00','0000-00-00','','','','N','17:35:00','19:01:57','','','N','Y',NULL,'O','O','Z49','','0000-00-00 00:00:00','3','17:35:20',0,'','reception','2025-12-17 17:35:20','drpratapsinh','2025-12-17 19:01:57'),(6523,0,0,'O','N','2526',1811,0,'2025-12-17','0000-00-00',1857,1857,1811,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','18:51:30','','','N','Y',NULL,'O','O','Z50','','0000-00-00 00:00:00','2','17:40:15',0,'','reception','2025-12-17 17:40:15','darshan','2025-12-17 18:51:30'),(6524,0,0,'O','N','2526',2775,0,'2025-12-17','0000-00-00',2844,2844,2775,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','18:21:44','','','N','Y',NULL,'O','O','L05','','0000-00-00 00:00:00','2','17:41:19',0,'','reception','2025-12-17 17:41:19','darshan','2025-12-17 18:21:44'),(6525,0,0,'O','N','2526',4244,0,'2025-12-17','2026-03-16',4359,4359,4244,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','18:42:55','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','3','17:41:41',0,'','priyanshi','2025-12-17 17:41:41','drpratapsinh','2025-12-17 18:42:55'),(6526,0,0,'O','N','2526',4245,0,'2025-12-17','2026-03-16',4360,4360,4245,'N','','N','','','NV','','N','D06','','N',257,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','19:49:45','','N','N','Y',NULL,'O','N','L06','','0000-00-00 00:00:00','2','17:48:59',0,'','reception','2025-12-17 17:48:59','darshan','2025-12-17 19:49:45'),(6527,0,0,'O','N','2526',4246,0,'2025-12-17','2026-03-16',4361,4361,4246,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','18:47:03','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:59:58',0,'','reception','2025-12-17 17:59:58','darshan','2025-12-17 18:47:03'),(6528,0,0,'O','N','2526',4247,0,'2025-12-17','2026-03-16',4362,4362,4247,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','19:06:47','','','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','18:02:43',0,'','reception','2025-12-17 18:02:43','darshan','2025-12-17 19:06:47'),(6529,0,0,'O','N','2526',2732,0,'2025-12-17','0000-00-00',2802,2802,2732,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','18:52:42','','','N','Y',NULL,'O','O','L09','','0000-00-00 00:00:00','4','18:03:25',0,'','drashti','2025-12-17 18:03:25','drarchit','2025-12-17 18:52:42'),(6530,0,0,'O','N','2526',4248,0,'2025-12-17','2026-03-16',4363,4363,4248,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:06:00','0000-00-00','','','','N','18:06:00','19:02:17','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','4','18:06:02',0,'','drashti','2025-12-17 18:06:02','drarchit','2025-12-17 19:02:17'),(6531,0,0,'O','N','2526',4249,0,'2025-12-17','2026-03-16',4364,4364,4249,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','19:18:50','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','4','18:07:26',0,'','reception','2025-12-17 18:07:26','drarchit','2025-12-17 19:18:50'),(6532,0,0,'O','N','2526',4250,0,'2025-12-17','2026-03-16',4365,4365,4250,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:09:00','0000-00-00','','','','N','18:09:00','18:29:46','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','5','18:15:46',0,'','priyanshi','2025-12-17 18:09:53','drjayant','2025-12-17 18:29:46'),(6533,0,0,'O','N','2526',4251,0,'2025-12-17','2026-03-16',4366,4366,4251,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','19:16:13','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','2','18:10:03',0,'','drashti','2025-12-17 18:10:03','darshan','2025-12-17 19:16:13'),(6534,0,0,'O','N','2526',4252,0,'2025-12-17','2026-03-16',4367,4367,4252,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:13:00','0000-00-00','','','','N','18:13:00','19:21:17','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','4','18:13:56',0,'','drashti','2025-12-17 18:13:56','drarchit','2025-12-17 19:21:17'),(6535,0,0,'O','N','2526',3704,0,'2025-12-17','0000-00-00',3807,3807,3704,'N','','N','','','','','N','D02','','N',263,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','18:42:13','','','N','Y',NULL,'O','O','Z56','','0000-00-00 00:00:00','3','18:14:47',0,'','priyanshi','2025-12-17 18:14:47','drpratapsinh','2025-12-17 18:42:13'),(6536,0,0,'O','N','2526',4253,0,'2025-12-17','2026-03-16',4368,4368,4253,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','18:41:42','','','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','2','18:15:33',0,'','reception','2025-12-17 18:15:33','darshan','2025-12-17 18:41:42'),(6537,0,0,'O','N','2526',2580,0,'2025-12-17','0000-00-00',2641,2641,2580,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','18:54:58','','','N','Y',NULL,'O','O','L12','','0000-00-00 00:00:00','2','18:15:51',0,'','drashti','2025-12-17 18:15:51','darshan','2025-12-17 18:54:58'),(6538,0,0,'O','N','2526',3720,0,'2025-12-17','0000-00-00',3721,3721,3720,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:17:00','0000-00-00','','','','N','18:17:00','18:40:16','','','N','Y',NULL,'O','O','Z57','','0000-00-00 00:00:00','3','18:17:33',0,'','priyanshi','2025-12-17 18:17:33','drpratapsinh','2025-12-17 18:40:16'),(6539,0,0,'O','N','2526',3052,0,'2025-12-17','0000-00-00',3133,3133,3052,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:17:00','0000-00-00','','','','N','18:17:00','18:46:05','','','N','Y',NULL,'O','O','L13','','0000-00-00 00:00:00','4','18:17:55',0,'','drashti','2025-12-17 18:17:55','drarchit','2025-12-17 18:46:05'),(6540,0,0,'O','N','2526',4254,0,'2025-12-17','2026-03-16',4369,4369,4254,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:19:00','0000-00-00','','','','N','18:19:00','00:00:00','','','N','N',NULL,'O','N','Z58','','0000-00-00 00:00:00','3','18:19:43',0,'','drashti','2025-12-17 18:19:43','','0000-00-00 00:00:00'),(6541,0,0,'O','N','2526',4255,0,'2025-12-17','2026-03-16',4370,4370,4255,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','18:30:24','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','6','18:21:34',0,'','shweta','2025-12-17 18:21:34','drsagar','2025-12-17 18:30:24'),(6542,0,0,'O','N','2526',2738,0,'2025-12-17','0000-00-00',2808,2808,2738,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','18:38:27','','','N','Y',NULL,'O','O','Z60','','0000-00-00 00:00:00','3','18:26:39',0,'','janvi','2025-12-17 18:26:39','drpratapsinh','2025-12-17 18:38:27'),(6543,0,0,'O','N','2526',4256,0,'2025-12-17','2026-03-16',4371,4371,4256,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:27:00','0000-00-00','','','','N','18:27:00','18:54:21','','N','N','Y',NULL,'O','N','L14','','0000-00-00 00:00:00','4','18:27:23',0,'','drashti','2025-12-17 18:27:23','drarchit','2025-12-19 18:54:21'),(6544,0,0,'O','N','2526',3605,0,'2025-12-17','0000-00-00',3705,3705,3605,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:29:00','0000-00-00','','','','N','18:29:00','18:38:03','','','N','Y',NULL,'O','O','Z61','','0000-00-00 00:00:00','3','18:29:14',0,'','janvi','2025-12-17 18:29:14','drpratapsinh','2025-12-17 18:38:03'),(6545,0,0,'O','N','2526',4257,0,'2025-12-17','2026-03-16',4372,4372,4257,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','19:29:44','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','4','18:30:02',0,'','reception','2025-12-17 18:30:02','drarchit','2025-12-17 19:29:44'),(6546,0,0,'O','N','2526',4258,0,'2025-12-17','2026-03-16',4373,4373,4258,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','19:45:18','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','2','18:33:19',0,'','reception','2025-12-17 18:33:19','darshan','2025-12-17 19:45:18'),(6547,0,0,'O','N','2526',3429,0,'2025-12-17','0000-00-00',3526,3526,3429,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','19:06:53','','','N','Y',NULL,'O','O','Z64','','0000-00-00 00:00:00','4','18:33:44',0,'','janvi','2025-12-17 18:33:44','drarchit','2025-12-17 19:06:53'),(6548,0,0,'O','N','2526',3305,0,'2025-12-17','0000-00-00',3394,3394,3305,'N','','N','','','','','N','D02','','N',119,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','18:38:14','','','N','Y',NULL,'O','O','Z65','','0000-00-00 00:00:00','3','18:36:22',0,'','janvi','2025-12-17 18:36:22','drpratapsinh','2025-12-17 18:38:14'),(6549,0,0,'O','N','2526',1497,0,'2025-12-17','0000-00-00',1538,1538,1497,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:38:00','0000-00-00','','','','N','18:38:00','19:55:56','','','N','Y',NULL,'O','O','Z66','','0000-00-00 00:00:00','2','18:38:08',0,'','reception','2025-12-17 18:38:08','darshan','2025-12-17 19:55:56'),(6550,0,0,'O','N','2526',4003,0,'2025-12-17','0000-00-00',4110,4110,4003,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:39:00','0000-00-00','','','','N','18:39:00','18:55:42','','','N','Y',NULL,'O','O','Z67','','0000-00-00 00:00:00','5','18:39:42',0,'','drashti','2025-12-17 18:39:42','drjayant','2025-12-17 18:55:42'),(6551,0,0,'O','N','2526',4259,0,'2025-12-17','2026-03-16',4374,4374,4259,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:42:00','0000-00-00','','','','N','18:42:00','19:33:31','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','18:42:22',0,'','drashti','2025-12-17 18:42:22','drarchit','2025-12-17 19:33:31'),(6552,0,0,'O','N','2526',3741,0,'2025-12-17','0000-00-00',3844,3844,3741,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','18:48:49','','','N','Y',NULL,'O','O','Z68','','0000-00-00 00:00:00','3','18:43:17',0,'','janvi','2025-12-17 18:43:17','drpratapsinh','2025-12-17 18:48:49'),(6553,0,0,'O','N','2526',127,0,'2025-12-17','0000-00-00',138,138,127,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','19:36:59','','','N','Y',NULL,'O','O','L16','','0000-00-00 00:00:00','4','18:48:08',0,'','drashti','2025-12-17 18:48:08','drarchit','2025-12-17 19:36:59'),(6554,0,0,'O','N','2526',696,0,'2025-12-17','0000-00-00',727,727,696,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','18:56:57','','','N','Y',NULL,'O','O','Z69','','0000-00-00 00:00:00','3','18:48:58',0,'','janvi','2025-12-17 18:48:58','drpratapsinh','2025-12-17 18:56:57'),(6555,0,0,'O','N','2526',1976,0,'2025-12-17','0000-00-00',2024,2024,1976,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:50:00','0000-00-00','','','','N','18:50:00','18:56:46','','','N','Y',NULL,'O','O','Z70','','0000-00-00 00:00:00','3','18:50:04',0,'','janvi','2025-12-17 18:50:04','drpratapsinh','2025-12-17 18:56:46'),(6556,0,0,'O','N','2526',4260,0,'2025-12-17','2026-03-16',4375,4375,4260,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','00:00:00','','Y','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','4','18:51:43',0,'','drashti','2025-12-17 18:51:43','drarchit','2025-12-17 19:41:29'),(6557,0,0,'O','N','2526',3715,0,'2025-12-17','0000-00-00',3817,3817,3715,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','19:45:33','','','N','Y',NULL,'O','O','Z72','','0000-00-00 00:00:00','6','18:54:33',0,'','shweta','2025-12-17 18:54:33','drsagar','2025-12-17 19:45:33'),(6558,0,0,'O','N','2526',3486,0,'2025-12-17','0000-00-00',3586,3586,3486,'N','','N','','','','','N','D02','','N',179,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:55:00','0000-00-00','','','','N','18:55:00','18:57:10','','','N','Y',NULL,'O','O','Z73','','0000-00-00 00:00:00','3','18:55:02',0,'','janvi','2025-12-17 18:55:02','drpratapsinh','2025-12-17 18:57:10'),(6559,0,0,'O','N','2526',4261,0,'2025-12-17','2026-03-16',4376,4376,4261,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','19:45:51','','','N','Y',NULL,'O','N','L17','','0000-00-00 00:00:00','4','18:56:05',0,'','drashti','2025-12-17 18:56:05','drarchit','2025-12-17 19:45:51'),(6560,0,0,'O','N','2526',4262,0,'2025-12-17','2026-03-16',4377,4377,4262,'N','','N','','','NC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:57:00','0000-00-00','','','','N','18:57:00','19:53:53','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','4','18:57:21',0,'','janvi','2025-12-17 18:57:21','drarchit','2025-12-17 19:53:53'),(6561,0,0,'O','N','2526',3319,0,'2025-12-17','0000-00-00',3411,3411,3319,'N','','N','','','','','N','D02','','N',25,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:59:00','0000-00-00','','','','N','18:59:00','19:00:41','','','N','Y',NULL,'O','O','Z75','','0000-00-00 00:00:00','3','18:59:39',0,'','janvi','2025-12-17 18:59:39','drpratapsinh','2025-12-17 19:00:41'),(6562,0,0,'O','N','2526',3486,0,'2025-12-17','0000-00-00',3586,3586,3486,'N','','N','','','','','N','D02','','N',179,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:04:00','0000-00-00','','','','N','19:04:00','19:16:51','','','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','3','19:04:48',0,'','janvi','2025-12-17 19:04:48','drpratapsinh','2025-12-17 19:16:51'),(6563,0,0,'O','N','2526',2794,0,'2025-12-17','0000-00-00',2863,2863,2794,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:05:00','0000-00-00','','','','N','19:05:00','20:01:28','','','N','Y',NULL,'O','O','Z76','','0000-00-00 00:00:00','4','19:05:19',0,'','reception','2025-12-17 19:05:19','drarchit','2025-12-17 20:01:28'),(6564,0,0,'O','N','2526',4263,0,'2025-12-17','2026-03-16',4378,4378,4263,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:07:00','0000-00-00','','','','N','19:07:00','20:07:22','','','N','Y',NULL,'O','N','Z77','','0000-00-00 00:00:00','4','19:07:15',0,'','janvi','2025-12-17 19:07:15','drarchit','2025-12-17 20:07:22'),(6565,0,0,'O','N','2526',3612,0,'2025-12-17','0000-00-00',3713,3713,3612,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:08:00','0000-00-00','','','','N','19:08:00','20:13:12','','','N','Y',NULL,'O','O','L18','','0000-00-00 00:00:00','4','19:09:01',0,'','reception','2025-12-17 19:09:01','drarchit','2025-12-17 20:13:12'),(6566,0,0,'O','N','2526',940,0,'2025-12-17','0000-00-00',971,971,940,'N','','N','','','FOLLOWUPV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:13:00','0000-00-00','','','','N','19:13:00','19:59:02','','','N','Y',NULL,'O','O','L19','','0000-00-00 00:00:00','2','19:51:57',0,'','drashti','2025-12-17 19:13:06','darshan','2025-12-17 19:59:01'),(6567,0,0,'O','N','2526',4264,0,'2025-12-17','2026-03-16',4379,4379,4264,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:15:00','0000-00-00','','','','N','19:15:00','20:20:24','','','N','Y',NULL,'O','N','Z78','','0000-00-00 00:00:00','4','19:15:55',0,'','drashti','2025-12-17 19:15:55','drarchit','2025-12-17 20:20:24'),(6568,0,0,'O','N','2526',3901,0,'2025-12-17','0000-00-00',4009,4009,3901,'N','','N','','','INJECTION','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:18:00','0000-00-00','','','','N','19:18:00','00:00:00','','','N','Y',NULL,'O','O','Z79','','0000-00-00 00:00:00','4','19:18:12',0,'','drashti','2025-12-17 19:18:12','','0000-00-00 00:00:00'),(6569,0,0,'O','N','2526',4265,0,'2025-12-17','2026-03-16',4380,4380,4265,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:28:00','0000-00-00','','','','N','19:28:00','19:43:42','','','N','Y',NULL,'O','N','Z80','','0000-00-00 00:00:00','5','19:28:21',0,'','janvi','2025-12-17 19:28:21','drjayant','2025-12-17 19:43:42'),(6570,0,0,'O','N','2526',3143,0,'2025-12-17','0000-00-00',3229,3229,3143,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:37:00','0000-00-00','','','','N','19:37:00','19:51:57','','','N','Y',NULL,'O','O','Z81','','0000-00-00 00:00:00','6','19:37:54',0,'','shweta','2025-12-17 19:37:54','drsagar','2025-12-17 19:51:57'),(6571,0,0,'O','N','2526',4266,0,'2025-12-17','2026-03-16',4381,4381,4266,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:38:00','0000-00-00','','','','N','19:38:00','19:56:18','','','N','Y',NULL,'O','N','Z82','','0000-00-00 00:00:00','5','19:38:53',0,'','drashti','2025-12-17 19:38:53','drjayant','2025-12-17 19:56:18'),(6572,0,0,'O','N','2526',4267,0,'2025-12-17','2026-03-16',4382,4382,4267,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:50:00','0000-00-00','','','','N','19:50:00','20:02:45','','','N','Y',NULL,'O','N','Z83','','0000-00-00 00:00:00','5','19:50:47',0,'','drashti','2025-12-17 19:50:47','drjayant','2025-12-17 20:02:45'),(6573,0,0,'O','N','2526',4268,0,'2025-12-17','2026-03-16',4383,4383,4268,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:59:00','0000-00-00','','','','N','19:59:00','20:21:19','','','N','Y',NULL,'O','N','Z84','','0000-00-00 00:00:00','4','19:59:09',0,'','janvi','2025-12-17 19:59:09','drarchit','2025-12-17 20:21:19'),(6574,0,0,'O','N','2526',4269,0,'2025-12-17','2026-03-16',4384,4384,4269,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','20:11:00','0000-00-00','','','','N','20:11:00','00:00:00','','','N','N',NULL,'O','N','Z85','','0000-00-00 00:00:00','','00:00:00',0,'','reception','2025-12-17 20:11:55','','0000-00-00 00:00:00'),(6575,0,0,'O','N','2526',1288,0,'2025-12-17','0000-00-00',1327,1327,1288,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','20:19:00','0000-00-00','','','','N','20:19:00','00:00:00','','','N','N',NULL,'O','O','Z86','','0000-00-00 00:00:00','3','20:19:47',0,'','drashti','2025-12-17 20:19:47','','0000-00-00 00:00:00'),(6576,0,0,'I','N','2526',4269,302,'2025-12-17','2026-03-16',4384,4384,4269,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','20:30:00','2025-12-20','','7','mo','N','20:30:00','13:41:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-17 20:35:24','riya','2025-12-20 13:41:25'),(6577,0,0,'O','N','2526',4270,0,'2025-12-18','2026-03-17',4385,4385,4270,'N','','N','','','ER','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','08:47:00','0000-00-00','','','','N','08:47:00','10:54:51','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','3','08:47:33',0,'','reception','2025-12-18 08:47:33','drpratapsinh','2025-12-18 10:54:51'),(6578,0,0,'O','N','2526',4271,0,'2025-12-18','2026-03-17',4386,4386,4271,'N','','N','','','ECG','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','08:50:00','0000-00-00','','','','N','08:50:00','18:34:42','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','08:50:55',0,'','reception','2025-12-18 08:50:55','drarchit','2025-12-18 18:34:42'),(6579,0,0,'O','N','2526',4272,0,'2025-12-18','2026-03-17',4387,4387,4272,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','08:52:00','0000-00-00','','','','N','08:52:00','12:17:38','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','4','08:52:22',0,'','reception','2025-12-18 08:52:22','drarchit','2025-12-18 12:17:38'),(6580,0,0,'O','N','2526',4273,0,'2025-12-18','2026-03-17',4388,4388,4273,'N','','N','','','NV','','N','D06','','N',295,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:49:00','0000-00-00','','','','N','09:49:00','12:50:00','','N','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','2','09:49:47',0,'','drashti','2025-12-18 09:49:47','darshan','2025-12-18 12:50:00'),(6581,0,0,'O','N','2526',4274,0,'2025-12-18','2026-03-17',4389,4389,4274,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:56:00','0000-00-00','','','','N','09:56:00','11:10:04','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','4','09:56:04',0,'','drashti','2025-12-18 09:56:04','drarchit','2025-12-18 11:10:04'),(6582,0,0,'O','N','2526',3225,0,'2025-12-18','0000-00-00',3311,3311,3225,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:57:00','0000-00-00','','','','N','09:57:00','11:08:40','','','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','2','09:57:38',0,'','reception','2025-12-18 09:57:38','darshan','2025-12-18 11:08:40'),(6583,0,0,'O','N','2526',3274,0,'2025-12-18','0000-00-00',3363,3363,3274,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:08:00','0000-00-00','','','','N','10:08:00','10:45:06','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','10:08:09',0,'','reception','2025-12-18 10:08:09','darshan','2025-12-18 10:45:06'),(6584,0,0,'O','N','2526',3691,0,'2025-12-18','0000-00-00',3796,3796,3691,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:10:00','0000-00-00','','','','N','10:10:00','10:51:00','','','N','Y',NULL,'O','O','E02','','0000-00-00 00:00:00','2','10:10:06',0,'','reception','2025-12-18 10:10:06','darshan','2025-12-18 10:51:00'),(6585,0,0,'O','N','2526',315,0,'2025-12-18','0000-00-00',331,331,315,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:14:00','0000-00-00','','','','N','10:14:00','11:12:43','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','2','10:14:39',0,'','reception','2025-12-18 10:14:39','darshan','2025-12-18 11:12:43'),(6586,0,0,'O','N','2526',3209,0,'2025-12-18','0000-00-00',3296,3296,3209,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:26:00','0000-00-00','','','','N','10:26:00','10:59:03','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','10:26:53',0,'','reception','2025-12-18 10:26:53','darshan','2025-12-18 10:59:03'),(6587,0,0,'O','N','2526',3737,0,'2025-12-18','0000-00-00',3840,3840,3737,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:30:00','0000-00-00','','','','N','10:30:00','11:20:58','','','N','Y',NULL,'O','O','Z08','','0000-00-00 00:00:00','2','10:30:48',0,'','reception','2025-12-18 10:30:48','darshan','2025-12-18 11:20:58'),(6588,0,0,'O','N','2526',4275,0,'2025-12-18','2026-03-17',4390,4390,4275,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:33:00','0000-00-00','','','','N','10:33:00','00:00:00','','','N','N',NULL,'O','N','Z09','','0000-00-00 00:00:00','7','10:33:57',0,'','shweta','2025-12-18 10:33:57','','0000-00-00 00:00:00'),(6589,0,0,'O','N','2526',4276,0,'2025-12-18','2026-03-17',4391,4391,4276,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','','N','10:40:00','12:52:08','','N','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','2','10:40:11',0,'','reception','2025-12-18 10:40:11','darshan','2025-12-18 12:52:08'),(6590,0,0,'O','N','2526',4277,0,'2025-12-17','2026-03-16',4392,4392,4277,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','20:28:00','0000-00-00','','','','N','20:28:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','shweta','2025-12-18 10:40:14','','0000-00-00 00:00:00'),(6591,0,0,'O','N','2526',4278,0,'2025-12-18','2026-03-17',4393,4393,4278,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','11:25:07','','','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:43:57',0,'','reception','2025-12-18 10:43:57','darshan','2025-12-18 11:25:07'),(6592,0,0,'O','N','2526',4279,0,'2025-12-18','2026-03-17',4394,4394,4279,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','12:26:34','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','5','11:18:56',0,'','janvi','2025-12-18 10:44:50','drjayant','2025-12-18 12:26:34'),(6593,0,0,'O','N','2526',1373,0,'2025-12-18','0000-00-00',1414,1414,1373,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','11:27:12','','','N','Y',NULL,'O','O','Z11','','0000-00-00 00:00:00','2','10:46:19',0,'','reception','2025-12-18 10:46:19','darshan','2025-12-18 11:27:12'),(6594,0,0,'O','N','2526',4280,0,'2025-12-18','2026-03-17',4395,4395,4280,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:47:00','0000-00-00','','','','N','10:47:00','10:52:38','','','N','Y',NULL,'O','N','G02','','0000-00-00 00:00:00','4','10:47:44',0,'','drashti','2025-12-18 10:47:43','drarchit','2025-12-18 10:52:38'),(6595,0,0,'O','N','2526',4281,0,'2025-12-18','2026-03-17',4396,4396,4281,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:48:00','0000-00-00','','','','N','10:48:00','13:11:26','','N','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','2','10:48:04',0,'','reception','2025-12-18 10:48:03','darshan','2025-12-18 13:11:26'),(6596,0,0,'O','N','2526',3679,0,'2025-12-18','0000-00-00',3784,3784,3679,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:49:00','0000-00-00','','','','N','10:49:00','11:04:57','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','3','10:49:28',0,'','drashti','2025-12-18 10:49:28','drpratapsinh','2025-12-18 11:04:57'),(6597,0,0,'O','N','2526',4129,0,'2025-12-18','0000-00-00',4242,4242,4129,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','11:00:08','','','N','Y',NULL,'O','O','G03','','0000-00-00 00:00:00','4','10:52:47',0,'','janvi','2025-12-18 10:51:31','drarchit','2025-12-18 11:00:08'),(6598,0,0,'O','N','2526',4282,0,'2025-12-18','2026-03-17',4397,4397,4282,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:51:00','0000-00-00','','','','N','10:51:00','10:57:43','','','N','Y',NULL,'O','N','G04','','0000-00-00 00:00:00','4','10:52:47',0,'','drashti','2025-12-18 10:51:54','drarchit','2025-12-18 10:57:43'),(6599,0,0,'O','N','2526',4283,0,'2025-12-18','2026-03-17',4398,4398,4283,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','00:00:00','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','3','10:55:44',0,'','reception','2025-12-18 10:55:44','','0000-00-00 00:00:00'),(6600,0,0,'O','N','2526',4284,0,'2025-12-18','2026-03-17',4399,0,4284,'N','','N','','','NE','','N','D06','','N',4,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:00:00','0000-00-00','','','','N','11:00:00','11:49:21','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','2','11:00:26',0,'','drashti','2025-12-18 11:00:26','darshan','2025-12-18 11:49:21'),(6601,0,0,'O','N','2526',4285,0,'2025-12-18','2026-03-17',4400,4400,4285,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','13:27:23','','N','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','2','11:02:17',0,'','reception','2025-12-18 11:02:16','darshan','2025-12-18 13:27:23'),(6602,0,0,'O','N','2526',1790,0,'2025-12-18','0000-00-00',1835,1835,1790,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','13:14:17','','N','N','Y',NULL,'O','O','G05','','0000-00-00 00:00:00','2','11:06:29',0,'','reception','2025-12-18 11:06:29','darshan','2025-12-18 13:14:17'),(6603,0,0,'O','N','2526',4008,0,'2025-12-18','0000-00-00',4115,4115,4008,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','11:15:26','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','4','11:06:54',0,'','drashti','2025-12-18 11:06:54','drarchit','2025-12-18 11:15:26'),(6604,0,0,'O','N','2526',4007,0,'2025-12-18','0000-00-00',4114,4114,4007,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','11:15:49','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','4','11:15:36',0,'','drashti','2025-12-18 11:07:19','drarchit','2025-12-18 11:15:49'),(6605,0,0,'O','N','2526',2092,0,'2025-12-18','0000-00-00',2146,2146,2092,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','18:09:06','','','N','Y',NULL,'O','O','Z18','','0000-00-00 00:00:00','3','11:08:11',0,'','janvi','2025-12-18 11:08:11','drpratapsinh','2025-12-18 18:09:06'),(6606,0,0,'O','N','2526',4286,0,'2025-12-18','2026-03-17',4401,4401,4286,'N','','N','','','NV','','N','D06','','N',296,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','13:20:35','','N','N','Y',NULL,'O','N','G06','','0000-00-00 00:00:00','2','11:10:44',0,'','drashti','2025-12-18 11:10:44','darshan','2025-12-18 13:20:35'),(6607,0,0,'O','N','2526',4287,0,'2025-12-18','2026-03-17',4402,4402,4287,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','11:29:36','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','4','11:15:36',0,'','reception','2025-12-18 11:12:13','drarchit','2025-12-18 11:29:36'),(6608,0,0,'O','N','2526',3079,0,'2025-12-18','0000-00-00',3165,3165,3079,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','11:55:15','','','N','Y',NULL,'O','O','G07','','0000-00-00 00:00:00','2','11:13:30',0,'','reception','2025-12-18 11:13:30','darshan','2025-12-18 11:55:15'),(6609,0,0,'O','N','2526',4288,0,'2025-12-18','2026-03-17',4403,4403,4288,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','11:31:55','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','5','11:18:56',0,'','janvi','2025-12-18 11:13:33','drjayant','2025-12-18 11:31:55'),(6610,0,0,'I','N','2526',4268,303,'2025-12-17','2026-03-16',4383,4383,4268,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','N','N','','','','0000-00-00','','','',1,'N','N','N','23:16:00','2025-12-18','','1','mo','N','23:16:00','19:55:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-18 11:18:17','vishal','2025-12-18 20:20:55'),(6611,0,0,'O','N','2526',3154,0,'2025-12-18','0000-00-00',3240,3240,3154,'N','','N','','','FV','','N','D06','','N',144,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','12:13:14','','','N','Y',NULL,'O','O','Z21','','0000-00-00 00:00:00','2','11:25:08',0,'','reception','2025-12-18 11:25:08','darshan','2025-12-18 12:13:14'),(6612,0,0,'O','N','2526',4289,0,'2025-12-18','2026-03-17',4404,4404,4289,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','18:34:32','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','4','11:27:19',0,'','reception','2025-12-18 11:27:19','drarchit','2025-12-18 18:34:32'),(6613,0,0,'I','N','2526',0,304,'2025-12-18','2026-03-17',4405,4405,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','Y','N','3','','','0000-00-00','','','',1,'N','N','N','09:00:00','2025-12-20','','1','mo','N','09:00:00','11:40:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-18 11:28:20','riya','2025-12-20 14:14:34'),(6614,0,0,'O','N','2526',1125,0,'2025-12-18','0000-00-00',1095,1095,1125,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','11:43:09','','','N','Y',NULL,'O','O','Z23','','0000-00-00 00:00:00','6','11:30:27',0,'','shweta','2025-12-18 11:30:27','drsagar','2025-12-18 11:43:09'),(6615,0,0,'O','N','2526',4290,0,'2025-12-18','2026-03-17',4406,4406,4290,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:37:00','0000-00-00','','','','N','11:37:00','11:50:39','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','11:38:01',0,'','janvi','2025-12-18 11:38:01','drarchit','2025-12-18 11:50:39'),(6616,0,0,'O','N','2526',4291,0,'2025-12-18','2026-03-17',4407,4407,4291,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','11:56:04','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','4','11:40:03',0,'','drashti','2025-12-18 11:40:03','drarchit','2025-12-18 11:56:04'),(6617,0,0,'O','N','2526',4292,0,'2025-12-18','2026-03-17',4408,4408,4292,'N','','N','','','NC','','N','D02','','N',16,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','17:49:27','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','3','11:45:11',0,'','drashti','2025-12-18 11:45:11','drpratapsinh','2025-12-18 17:49:27'),(6618,0,0,'O','N','2526',3328,0,'2025-12-18','0000-00-00',3420,3420,3328,'N','','N','','','FV','','N','D06','','N',4,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','12:19:36','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','2','11:47:29',0,'','janvi','2025-12-18 11:47:29','darshan','2025-12-18 12:19:36'),(6619,0,0,'O','N','2526',4293,0,'2025-12-18','2026-03-17',4409,4409,4293,'N','','N','','','','','N','D03','','N',14,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','12:26:28','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','6','11:47:38',0,'','shweta','2025-12-18 11:47:38','drsagar','2025-12-18 12:26:28'),(6620,0,0,'O','N','2526',4294,0,'2025-12-18','2026-03-17',4410,4410,4294,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:49:00','0000-00-00','','','','N','11:49:00','13:00:55','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','2','11:49:53',0,'','drashti','2025-12-18 11:49:53','darshan','2025-12-18 13:00:55'),(6621,0,0,'O','N','2526',2529,0,'2025-12-18','0000-00-00',2586,2586,2529,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','12:17:49','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','6','11:54:20',0,'','shweta','2025-12-18 11:54:20','drsagar','2025-12-18 12:17:49'),(6622,0,0,'O','N','2526',3135,0,'2025-12-18','0000-00-00',3221,3221,3135,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:55:00','0000-00-00','','','','N','11:55:00','12:29:36','','','N','Y',NULL,'O','O','I01','','0000-00-00 00:00:00','2','11:55:25',0,'','reception','2025-12-18 11:55:25','darshan','2025-12-18 12:29:36'),(6623,0,0,'O','N','2526',4295,0,'2025-12-18','2026-03-17',3630,3630,4295,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','19:33:55','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','4','11:56:39',0,'','janvi','2025-12-18 11:56:39','drarchit','2025-12-18 19:33:55'),(6624,0,0,'O','N','2526',4032,0,'2025-12-18','0000-00-00',4139,4139,4032,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','12:40:44','','','N','Y',NULL,'O','O','I02','','0000-00-00 00:00:00','2','11:56:39',0,'','reception','2025-12-18 11:56:39','darshan','2025-12-18 12:40:44'),(6625,0,0,'O','N','2526',3305,0,'2025-12-18','0000-00-00',3394,3394,3305,'N','','N','','','DRESSING','','N','D02','','N',119,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:59:00','0000-00-00','','','','N','11:59:00','12:14:20','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','3','11:59:17',0,'','drashti','2025-12-18 11:59:17','drpratapsinh','2025-12-18 12:14:20'),(6626,0,0,'O','N','2526',4296,0,'2025-12-18','2026-03-17',4411,4411,4296,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:01:00','0000-00-00','','','','N','12:01:00','18:46:24','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','6','12:01:30',0,'','shweta','2025-12-18 12:01:30','drsagar','2025-12-18 18:46:24'),(6627,0,0,'O','N','2526',4277,0,'2025-12-18','0000-00-00',4392,4392,4277,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:19:00','0000-00-00','','','','N','12:19:00','18:34:00','','','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','3','12:19:32',0,'','priyanshi','2025-12-18 12:19:32','drpratapsinh','2025-12-18 18:34:00'),(6628,0,0,'O','N','2526',4297,0,'2025-12-18','2026-03-17',4412,4412,4297,'N','','N','','','','','N','D02','','N',108,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','12:26:48','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','3','12:21:39',0,'','janvi','2025-12-18 12:21:39','drpratapsinh','2025-12-18 12:26:48'),(6629,0,0,'O','N','2526',4298,0,'2025-12-18','2026-03-17',4413,4413,4298,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','12:34:21','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','5','12:21:43',0,'','drashti','2025-12-18 12:21:43','drjayant','2025-12-18 12:34:21'),(6630,0,0,'O','N','2526',3310,0,'2025-12-18','0000-00-00',3399,3399,3310,'N','','N','','','DRESSING','','N','D02','','N',90,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:26:00','0000-00-00','','','','N','12:26:00','12:29:56','','','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','3','12:26:38',0,'','janvi','2025-12-18 12:26:38','drpratapsinh','2025-12-18 12:29:56'),(6631,0,0,'O','N','2526',4299,0,'2025-12-18','2026-03-17',4414,4414,4299,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','12:41:15','','','N','Y',NULL,'O','N','Z36','','0000-00-00 00:00:00','4','12:36:12',0,'','reception','2025-12-18 12:28:01','drarchit','2025-12-18 12:41:15'),(6632,0,0,'O','N','2526',4300,0,'2025-12-18','2026-03-17',4415,4415,4300,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:29:00','0000-00-00','','','','N','12:29:00','18:17:21','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','3','12:29:20',0,'','reception','2025-12-18 12:29:20','drpratapsinh','2025-12-18 18:17:21'),(6633,0,0,'O','N','2526',4301,0,'2025-12-18','2026-03-17',4416,4416,4301,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','12:43:03','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','5','12:36:06',0,'','janvi','2025-12-18 12:36:06','drjayant','2025-12-18 12:43:03'),(6634,0,0,'O','N','2526',4302,0,'2025-12-18','2026-03-17',3863,3863,4302,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:41:00','0000-00-00','','','','N','12:41:00','12:49:14','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','5','12:41:52',0,'','drashti','2025-12-18 12:41:52','drjayant','2025-12-18 12:49:14'),(6635,0,0,'O','N','2526',4303,0,'2025-12-18','2026-03-17',4417,4417,4303,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:43:00','0000-00-00','','','','N','12:43:00','13:20:03','','','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','2','12:43:15',0,'','reception','2025-12-18 12:43:15','darshan','2025-12-18 13:20:03'),(6636,0,0,'O','N','2526',1653,0,'2025-12-18','0000-00-00',1698,1698,1653,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:51:00','0000-00-00','','','','N','12:51:00','13:26:30','','','N','Y',NULL,'O','O','Z41','','0000-00-00 00:00:00','2','12:51:44',0,'','reception','2025-12-18 12:51:44','darshan','2025-12-18 13:26:30'),(6637,0,0,'O','N','2526',4304,0,'2025-12-18','2026-03-17',4418,4418,4304,'N','','N','','','','','N','D14','','N',90,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:45:00','0000-00-00','','','','N','13:45:00','00:00:00','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','7','13:45:39',0,'','shweta','2025-12-18 13:45:39','','0000-00-00 00:00:00'),(6638,0,0,'O','N','2526',4305,0,'2025-12-18','2026-03-17',4419,4419,4305,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','14:44:00','0000-00-00','','','','N','14:44:00','18:09:48','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','5','18:06:22',0,'','priyanshi','2025-12-18 14:44:17','drjayant','2025-12-18 18:09:48'),(6639,0,0,'O','N','2526',4306,0,'2025-12-18','2026-03-17',4420,4420,4306,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:23:00','0000-00-00','','','','N','16:23:00','18:00:46','','N','N','Y',NULL,'O','N','Z44','','0000-00-00 00:00:00','2','16:23:35',0,'','priyanshi','2025-12-18 16:23:35','darshan','2025-12-18 18:00:46'),(6640,0,0,'O','N','2526',4307,0,'2025-12-18','2026-03-17',4421,4421,4307,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:23:00','0000-00-00','','','','N','16:23:00','17:26:43','','','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:23:40',0,'','reception','2025-12-18 16:23:40','darshan','2025-12-18 17:26:43'),(6641,0,0,'O','N','2526',4308,0,'2025-12-18','2026-03-17',4422,4422,4308,'N','','N','','','NV','','N','D06','','N',297,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:26:00','0000-00-00','','','','N','16:26:00','18:38:04','','N','N','Y',NULL,'O','N','L02','','0000-00-00 00:00:00','2','16:26:51',0,'','reception','2025-12-18 16:26:51','darshan','2025-12-18 18:38:04'),(6642,0,0,'O','N','2526',2623,0,'2025-12-18','0000-00-00',2689,2689,2623,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:43:00','0000-00-00','','','','N','16:43:00','17:39:00','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','2','16:43:55',0,'','reception','2025-12-18 16:43:55','darshan','2025-12-18 17:39:00'),(6643,0,0,'O','N','2526',3682,0,'2025-12-18','0000-00-00',3787,3787,3682,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:10:00','0000-00-00','','','','N','17:10:00','17:42:55','','','N','Y',NULL,'O','O','L03','','0000-00-00 00:00:00','2','17:10:41',0,'','reception','2025-12-18 17:10:41','darshan','2025-12-18 17:42:55'),(6644,0,0,'O','N','2526',3739,0,'2025-12-18','0000-00-00',3842,3842,3739,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:11:00','0000-00-00','','','','N','17:11:00','17:33:25','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','17:11:30',0,'','reception','2025-12-18 17:11:30','darshan','2025-12-18 17:33:25'),(6645,0,0,'O','N','2526',3900,0,'2025-12-18','0000-00-00',4008,4008,3900,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:16:00','0000-00-00','','','','N','17:16:00','17:41:00','','','N','Y',NULL,'O','O','Z46','','0000-00-00 00:00:00','3','17:16:59',0,'','drashti','2025-12-18 17:16:59','drpratapsinh','2025-12-18 17:41:00'),(6646,0,0,'O','N','2526',4309,0,'2025-12-18','2026-03-17',4423,4423,4309,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:18:00','0000-00-00','','','','N','17:18:00','19:12:38','','N','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:18:29',0,'','reception','2025-12-18 17:18:29','darshan','2025-12-18 19:12:38'),(6647,0,0,'O','N','2526',4310,0,'2025-12-18','2026-03-17',4424,4424,4310,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:22:00','0000-00-00','','','','N','17:22:00','19:00:42','','','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','6','17:22:50',0,'','manshi','2025-12-18 17:22:50','drsagar','2025-12-18 19:00:42'),(6648,0,0,'O','N','2526',2589,0,'2025-12-18','0000-00-00',2649,2649,2589,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:22:00','0000-00-00','','','','N','17:22:00','17:58:10','','','N','Y',NULL,'O','O','L06','','0000-00-00 00:00:00','2','17:23:02',0,'','reception','2025-12-18 17:23:02','darshan','2025-12-18 17:58:10'),(6649,0,0,'O','N','2526',2936,0,'2025-12-18','0000-00-00',3013,3013,2936,'N','','N','','','','','N','D02','','N',218,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','17:59:15','','','N','Y',NULL,'O','O','Z48','','0000-00-00 00:00:00','3','17:27:07',0,'','reception','2025-12-18 17:27:07','drpratapsinh','2025-12-18 17:59:15'),(6650,0,0,'O','N','2526',883,0,'2025-12-18','0000-00-00',915,915,883,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','18:06:43','','','N','Y',NULL,'O','O','Z49','','0000-00-00 00:00:00','2','17:32:24',0,'','reception','2025-12-18 17:32:24','darshan','2025-12-18 18:06:43'),(6651,0,0,'O','N','2526',4064,0,'2025-12-18','0000-00-00',4170,4170,4064,'N','','N','','','FOLLOWUP C','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:36:00','0000-00-00','','','','N','17:36:00','17:58:54','','','N','Y',NULL,'O','O','Z50','','0000-00-00 00:00:00','3','17:36:19',0,'','drashti','2025-12-18 17:36:19','drpratapsinh','2025-12-18 17:58:54'),(6652,0,0,'O','N','2526',3254,0,'2025-12-18','0000-00-00',3337,3337,3254,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:38:00','0000-00-00','','','','N','17:38:00','18:08:48','','','N','Y',NULL,'O','O','Z51','','0000-00-00 00:00:00','3','17:38:10',0,'','drashti','2025-12-18 17:38:10','drpratapsinh','2025-12-18 18:08:48'),(6653,0,0,'O','N','2526',4311,0,'2025-12-18','2026-03-17',4425,4425,4311,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','18:03:38','','','N','Y',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:40:38',0,'','reception','2025-12-18 17:40:38','darshan','2025-12-18 18:03:38'),(6654,0,0,'O','N','2526',3053,0,'2025-12-18','0000-00-00',3134,3134,3053,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','18:02:07','','','N','Y',NULL,'O','O','Z52','','0000-00-00 00:00:00','3','17:41:08',0,'','drashti','2025-12-18 17:41:08','drpratapsinh','2025-12-18 18:02:06'),(6655,0,0,'O','N','2526',4312,0,'2025-12-18','2026-03-17',4426,4426,4312,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:44:00','0000-00-00','','','','N','17:44:00','18:47:19','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','6','17:44:57',0,'','manshi','2025-12-18 17:44:57','drsagar','2025-12-18 18:47:19'),(6656,0,0,'O','N','2526',4313,0,'2025-12-18','2026-03-17',4427,4427,4313,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','19:38:03','','N','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:46:38',0,'','reception','2025-12-18 17:46:38','darshan','2025-12-18 19:38:03'),(6657,0,0,'O','N','2526',2603,0,'2025-12-18','0000-00-00',2665,2665,2603,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:47:00','0000-00-00','','','','N','17:47:00','18:36:50','','','N','Y',NULL,'O','O','Z54','','0000-00-00 00:00:00','6','17:47:20',0,'','manshi','2025-12-18 17:47:20','drsagar','2025-12-18 18:36:50'),(6658,0,0,'O','N','2526',4314,0,'2025-12-18','2026-03-17',4428,4428,4314,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:58:00','0000-00-00','','','','N','17:58:00','18:35:42','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','2','17:58:27',0,'','urvashi','2025-12-18 17:58:27','darshan','2025-12-18 18:35:42'),(6659,0,0,'O','N','2526',4315,0,'2025-12-18','2026-03-17',4429,4429,4315,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:58:00','0000-00-00','','','','N','17:58:00','19:56:20','','N','N','Y',NULL,'O','N','L09','','0000-00-00 00:00:00','2','17:58:31',0,'','reception','2025-12-18 17:58:31','darshan','2025-12-18 19:56:20'),(6660,0,0,'O','N','2526',2710,0,'2025-12-18','0000-00-00',2781,2781,2710,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:59:00','0000-00-00','','','','N','17:59:00','18:45:35','','','N','Y',NULL,'O','O','Z56','','0000-00-00 00:00:00','6','17:59:17',0,'','manshi','2025-12-18 17:59:17','drsagar','2025-12-18 18:45:35'),(6661,0,0,'O','N','2526',4316,0,'2025-12-18','2026-03-17',4430,4430,4316,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:03:00','0000-00-00','','','','N','18:03:00','18:30:52','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','4','18:03:34',0,'','drashti','2025-12-18 18:03:34','drarchit','2025-12-18 18:30:52'),(6662,0,0,'O','N','2526',4317,0,'2025-12-18','2026-03-17',4431,4431,4317,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:04:00','0000-00-00','','','','N','18:04:00','18:16:37','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','3','18:05:00',0,'','reception','2025-12-18 18:05:00','drpratapsinh','2025-12-18 18:16:37'),(6663,0,0,'O','N','2526',1476,0,'2025-12-18','0000-00-00',1517,1517,1476,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','18:14:14','','','N','Y',NULL,'O','O','Z59','','0000-00-00 00:00:00','3','18:05:24',0,'','drashti','2025-12-18 18:05:24','drpratapsinh','2025-12-18 18:14:14'),(6664,0,0,'O','N','2526',4318,0,'2025-12-18','2026-03-17',4432,4432,4318,'N','','N','','','','','N','D02','','N',298,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','00:00:00','','','N','Y',NULL,'O','N','Z60','','0000-00-00 00:00:00','3','18:05:26',0,'','urvashi','2025-12-18 18:05:26','','0000-00-00 00:00:00'),(6665,0,0,'O','N','2526',4319,0,'2025-12-18','2026-03-17',3345,3345,4319,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:06:00','0000-00-00','','','','N','18:06:00','18:25:19','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','5','18:06:22',0,'','drashti','2025-12-18 18:06:22','drjayant','2025-12-18 18:25:19'),(6666,0,0,'O','N','2526',4320,0,'2025-12-18','2026-03-17',4433,4433,4320,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:06:00','0000-00-00','','','','N','18:06:00','00:00:00','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','7','18:06:44',0,'','manshi','2025-12-18 18:06:44','','0000-00-00 00:00:00'),(6667,0,0,'O','N','2526',4321,0,'2025-12-18','2026-03-17',4434,4434,4321,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','11:30:38','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','5','18:10:07',0,'','drashti','2025-12-18 18:10:07','drjayant','2025-12-19 11:30:38'),(6668,0,0,'O','N','2526',4322,0,'2025-12-18','2026-03-17',4435,4435,4322,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:11:00','0000-00-00','','','','N','18:11:00','11:38:03','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','5','18:11:07',0,'','reception','2025-12-18 18:11:06','drjayant','2025-12-19 11:38:02'),(6669,0,0,'O','N','2526',4323,0,'2025-12-18','2026-03-17',4436,4436,4323,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','11:34:38','','','N','Y',NULL,'O','N','Z65','','0000-00-00 00:00:00','5','18:11:07',0,'','urvashi','2025-12-18 18:11:07','drjayant','2025-12-19 11:34:38'),(6670,0,0,'O','N','2526',4324,0,'2025-12-18','2026-03-17',4437,4437,4324,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','18:54:26','','','N','Y',NULL,'O','N','Z66','','0000-00-00 00:00:00','5','18:12:39',0,'','urvashi','2025-12-18 18:12:39','drjayant','2025-12-18 18:54:26'),(6671,0,0,'O','N','2526',4325,0,'2025-12-18','2026-03-17',4438,4438,4325,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','18:34:00','','','N','Y',NULL,'O','N','Z67','','0000-00-00 00:00:00','4','18:15:59',0,'','drashti','2025-12-18 18:15:59','drarchit','2025-12-18 18:34:00'),(6672,0,0,'O','N','2526',3498,0,'2025-12-18','0000-00-00',3599,3599,3498,'N','','N','','','','','N','D02','','N',168,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','18:27:03','','','N','Y',NULL,'O','O','Z68','','0000-00-00 00:00:00','3','18:18:18',0,'','drashti','2025-12-18 18:18:18','drpratapsinh','2025-12-18 18:27:03'),(6673,0,0,'O','N','2526',3259,0,'2025-12-18','0000-00-00',3342,3342,3259,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','18:32:15','','','N','Y',NULL,'O','O','Z69','','0000-00-00 00:00:00','3','18:18:33',0,'','urvashi','2025-12-18 18:18:33','drpratapsinh','2025-12-18 18:32:15'),(6674,0,0,'O','N','2526',4326,0,'2025-12-18','2026-03-17',4439,4439,4326,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:20:00','0000-00-00','','','','N','18:20:00','18:42:24','','','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','4','18:20:21',0,'','urvashi','2025-12-18 18:20:21','drarchit','2025-12-18 18:42:24'),(6675,0,0,'O','N','2526',756,0,'2025-12-18','0000-00-00',788,788,756,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:20:00','0000-00-00','','','','N','18:20:00','18:39:15','','','N','Y',NULL,'O','O','Z70','','0000-00-00 00:00:00','4','18:20:25',0,'','drashti','2025-12-18 18:20:25','drarchit','2025-12-18 18:39:15'),(6676,0,0,'O','N','2526',4327,0,'2025-12-18','2026-03-17',4440,4440,4327,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:21:00','0000-00-00','','','','N','18:21:00','18:51:43','','','N','Y',NULL,'O','N','Z71','','0000-00-00 00:00:00','2','18:21:50',0,'','reception','2025-12-18 18:21:50','darshan','2025-12-18 18:51:43'),(6677,0,0,'O','N','2526',3859,0,'2025-12-18','0000-00-00',3968,3968,3859,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:22:00','0000-00-00','','','','N','18:22:00','18:28:52','','','N','Y',NULL,'O','O','Z72','','0000-00-00 00:00:00','3','18:23:06',0,'','urvashi','2025-12-18 18:23:05','drpratapsinh','2025-12-18 18:28:52'),(6678,0,0,'O','N','2526',4328,0,'2025-12-18','2026-03-17',4441,4441,4328,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','18:24:10','','N','N','Y',NULL,'O','N','L11','','0000-00-00 00:00:00','4','18:24:03',0,'','drashti','2025-12-18 18:24:03','drarchit','2025-12-19 18:24:10'),(6679,0,0,'O','N','2526',4329,0,'2025-12-18','2026-03-17',4442,4442,4329,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','18:52:25','','','N','Y',NULL,'O','N','Z73','','0000-00-00 00:00:00','4','18:24:58',0,'','urvashi','2025-12-18 18:24:58','drarchit','2025-12-18 18:52:25'),(6680,0,0,'O','N','2526',4330,0,'2025-12-18','2026-03-17',4443,4443,4330,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:25:00','0000-00-00','','','','N','18:25:00','18:56:55','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','4','18:25:21',0,'','urvashi','2025-12-18 18:25:21','drarchit','2025-12-18 18:56:55'),(6681,0,0,'O','N','2526',3116,0,'2025-12-18','0000-00-00',3202,3202,3116,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','19:48:01','','','N','Y',NULL,'O','O','Z75','','0000-00-00 00:00:00','2','18:26:55',0,'','reception','2025-12-18 18:26:55','darshan','2025-12-18 19:48:00'),(6682,0,0,'O','N','2526',1797,0,'2025-12-18','0000-00-00',1842,1842,1797,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','18:58:14','','','N','Y',NULL,'O','O','L12','','0000-00-00 00:00:00','2','18:30:31',0,'','reception','2025-12-18 18:30:31','darshan','2025-12-18 18:58:14'),(6683,0,0,'O','N','2526',4331,0,'2025-12-18','2026-03-17',4444,4444,4331,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','19:41:28','','N','N','Y',NULL,'O','N','Z76','','0000-00-00 00:00:00','4','18:32:00',0,'','drashti','2025-12-18 18:31:59','drarchit','2025-12-19 19:41:28'),(6684,0,0,'O','N','2526',3854,0,'2025-12-18','0000-00-00',3963,3963,3854,'N','','N','','','','','N','D02','','N',275,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','18:32:27','','','N','Y',NULL,'O','O','Z77','','0000-00-00 00:00:00','3','18:32:06',0,'','urvashi','2025-12-18 18:32:06','drpratapsinh','2025-12-18 18:32:27'),(6685,0,0,'O','N','2526',2919,0,'2025-12-18','0000-00-00',2996,2996,2919,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','18:38:57','','','N','Y',NULL,'O','O','Z78','','0000-00-00 00:00:00','3','18:33:06',0,'','urvashi','2025-12-18 18:33:05','drpratapsinh','2025-12-18 18:38:57'),(6686,0,0,'O','N','2526',825,0,'2025-12-18','0000-00-00',856,856,825,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','19:34:54','','N','N','Y',NULL,'O','O','Z79','','0000-00-00 00:00:00','4','18:33:37',0,'','reception','2025-12-18 18:33:37','drarchit','2025-12-18 19:34:54'),(6687,0,0,'O','N','2526',2544,0,'2025-12-18','0000-00-00',2601,2601,2544,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:36:00','0000-00-00','','','','N','18:36:00','18:45:02','','','N','Y',NULL,'O','O','Z80','','0000-00-00 00:00:00','3','18:36:44',0,'','drashti','2025-12-18 18:36:44','drpratapsinh','2025-12-18 18:45:02'),(6688,0,0,'O','N','2526',2604,0,'2025-12-18','0000-00-00',2666,2666,2604,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:39:00','0000-00-00','','','','N','18:39:00','19:05:19','','','N','Y',NULL,'O','O','L13','','0000-00-00 00:00:00','2','18:39:04',0,'','reception','2025-12-18 18:39:04','darshan','2025-12-18 19:05:19'),(6689,0,0,'O','N','2526',2539,0,'2025-12-18','0000-00-00',2596,2596,2539,'N','','N','','','','','N','D02','','N',185,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:41:00','0000-00-00','','','','N','18:41:00','18:48:20','','','N','Y',NULL,'O','O','Z81','','0000-00-00 00:00:00','3','18:41:23',0,'','janvi','2025-12-18 18:41:23','drpratapsinh','2025-12-18 18:48:20'),(6690,0,0,'O','N','2526',3584,0,'2025-12-18','0000-00-00',3683,3683,3584,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','19:10:25','','','N','Y',NULL,'O','O','L14','','0000-00-00 00:00:00','2','18:43:45',0,'','reception','2025-12-18 18:43:45','darshan','2025-12-18 19:10:25'),(6691,0,0,'O','N','2526',1301,0,'2025-12-18','0000-00-00',1340,1340,1301,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','19:02:13','','','N','Y',NULL,'O','O','Z82','','0000-00-00 00:00:00','5','18:44:15',0,'','drashti','2025-12-18 18:44:15','drjayant','2025-12-18 19:02:13'),(6692,0,0,'O','N','2526',2738,0,'2025-12-18','0000-00-00',2808,2808,2738,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:52:00','0000-00-00','','','','N','18:52:00','18:55:35','','','N','Y',NULL,'O','O','Z83','','0000-00-00 00:00:00','3','18:52:11',0,'','janvi','2025-12-18 18:52:11','drpratapsinh','2025-12-18 18:55:35'),(6693,0,0,'O','N','2526',4332,0,'2025-12-18','2026-03-17',4445,4445,4332,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:53:00','0000-00-00','','','','N','18:53:00','19:17:33','','','N','Y',NULL,'O','N','Z84','','0000-00-00 00:00:00','4','18:53:48',0,'','janvi','2025-12-18 18:53:48','drarchit','2025-12-18 19:17:33'),(6694,0,0,'O','N','2526',3722,0,'2025-12-18','0000-00-00',3823,3823,3722,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','19:24:10','','','N','Y',NULL,'O','O','Z85','','0000-00-00 00:00:00','4','18:56:10',0,'','reception','2025-12-18 18:56:10','drarchit','2025-12-18 19:24:10'),(6695,0,0,'O','N','2526',3605,0,'2025-12-18','0000-00-00',3705,3705,3605,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','00:00:00','','','N','N',NULL,'O','O','Z86','','0000-00-00 00:00:00','3','18:56:48',0,'','janvi','2025-12-18 18:56:48','','0000-00-00 00:00:00'),(6696,0,0,'O','N','2526',4333,0,'2025-12-18','2026-03-17',4446,4446,4333,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:58:00','0000-00-00','','','','N','18:58:00','19:31:35','','','N','Y',NULL,'O','N','Z87','','0000-00-00 00:00:00','2','18:58:50',0,'','reception','2025-12-18 18:58:50','darshan','2025-12-18 19:31:35'),(6697,0,0,'O','N','2526',4334,0,'2025-12-18','2026-03-17',4447,4447,4334,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:12:00','0000-00-00','','','','N','19:12:00','00:00:00','','','N','N',NULL,'O','N','Z88','','0000-00-00 00:00:00','7','19:12:19',0,'','manshi','2025-12-18 19:12:19','','0000-00-00 00:00:00'),(6698,0,0,'O','N','2526',4335,0,'2025-12-18','2026-03-17',4448,4448,4335,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:20:00','0000-00-00','','','','N','19:20:00','19:26:56','','','N','Y',NULL,'O','N','Z89','','0000-00-00 00:00:00','4','19:21:30',0,'','drashti','2025-12-18 19:20:01','drarchit','2025-12-18 19:26:56'),(6699,0,0,'O','N','2526',4336,0,'2025-12-18','2026-03-17',4449,4449,4336,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:20:00','0000-00-00','','','','N','19:20:00','19:30:16','','','N','Y',NULL,'O','N','Z90','','0000-00-00 00:00:00','4','19:21:30',0,'','drashti','2025-12-18 19:20:46','drarchit','2025-12-18 19:30:16'),(6700,0,0,'O','N','2526',4300,0,'2025-12-18','0000-00-00',4415,4415,4300,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:21:00','0000-00-00','','','','N','19:21:00','00:00:00','','','N','N',NULL,'O','O','Y01','','0000-00-00 00:00:00','3','19:21:20',0,'','janvi','2025-12-18 19:21:20','','0000-00-00 00:00:00'),(6701,0,0,'O','N','2526',4337,0,'2025-12-18','2026-03-17',4450,4450,4337,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:23:00','0000-00-00','','','','N','19:23:00','19:39:52','','','N','Y',NULL,'O','N','Z91','','0000-00-00 00:00:00','3','19:24:05',0,'','janvi','2025-12-18 19:24:05','drpratapsinh','2025-12-18 19:39:52'),(6702,0,0,'O','N','2526',3980,0,'2025-12-18','0000-00-00',4087,4087,3980,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:31:00','0000-00-00','','','','N','19:31:00','19:49:05','','Y','N','Y',NULL,'O','O','Z92','','0000-00-00 00:00:00','4','19:32:08',0,'','janvi','2025-12-18 19:32:08','drarchit','2025-12-18 19:49:21'),(6703,0,0,'O','N','2526',2538,0,'2025-12-18','0000-00-00',2595,2595,2538,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:37:00','0000-00-00','','','','N','19:37:00','19:59:11','','','N','Y',NULL,'O','O','Z93','','0000-00-00 00:00:00','2','19:37:04',0,'','reception','2025-12-18 19:37:04','darshan','2025-12-18 19:59:11'),(6704,0,0,'O','N','2526',1660,0,'2025-12-18','0000-00-00',1705,1705,1660,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:38:00','0000-00-00','','','','N','19:38:00','20:02:11','','','N','Y',NULL,'O','O','Z94','','0000-00-00 00:00:00','2','19:38:47',0,'','reception','2025-12-18 19:38:47','darshan','2025-12-18 20:02:11'),(6705,0,0,'O','N','2526',4338,0,'2025-12-18','2026-03-17',4451,4451,4338,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:48:00','0000-00-00','','','','N','19:48:00','19:59:43','','','N','Y',NULL,'O','N','Z95','','0000-00-00 00:00:00','4','19:49:25',0,'','drashti','2025-12-18 19:48:23','drarchit','2025-12-18 19:59:43'),(6706,0,0,'I','N','2526',0,305,'2025-12-18','2026-03-17',4452,4452,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:50:00','2025-12-20','','7','mo','N','19:50:00','12:36:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-18 19:56:26','riya','2025-12-20 12:36:13'),(6707,0,0,'I','N','2526',0,306,'2025-12-18','2026-03-17',4453,4453,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','Y','N','','','','0000-00-00','','','',1,'N','N','N','19:30:00','2025-12-19','','1','mo','N','19:30:00','20:40:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-18 20:25:35','vishal','2025-12-19 20:30:03'),(6708,0,0,'O','N','2526',4339,0,'2025-12-19','2026-03-18',4454,4454,4339,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','08:52:00','0000-00-00','','','','N','08:52:00','12:27:47','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','5','11:25:35',0,'','reception','2025-12-19 08:52:12','drjayant','2025-12-19 12:27:47'),(6709,0,0,'O','N','2526',2650,0,'2025-12-19','0000-00-00',2720,2720,2650,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:24:00','0000-00-00','','','','N','09:24:00','11:18:09','','','N','Y',NULL,'O','O','G01','','0000-00-00 00:00:00','2','09:24:38',0,'','reception','2025-12-19 09:24:38','darshan','2025-12-19 11:18:09'),(6710,0,0,'O','N','2526',1752,0,'2025-12-19','0000-00-00',1798,1798,1752,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:47:00','0000-00-00','','','','N','09:47:00','10:50:31','','','N','Y',NULL,'O','O','E01','','0000-00-00 00:00:00','2','09:47:57',0,'','reception','2025-12-19 09:47:57','darshan','2025-12-19 10:50:31'),(6711,0,0,'O','N','2526',1751,0,'2025-12-19','0000-00-00',1797,1797,1751,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:49:00','0000-00-00','','','','N','09:49:00','10:57:52','','','N','Y',NULL,'O','O','E02','','0000-00-00 00:00:00','2','09:49:05',0,'','reception','2025-12-19 09:49:05','darshan','2025-12-19 10:57:52'),(6712,0,0,'I','N','2526',2738,307,'2025-12-19','2026-03-18',2808,2808,2738,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','Y','N','1','','','0000-00-00','','','',1,'N','N','N','10:00:00','2025-12-19','','1','mo','N','10:00:00','19:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-19 10:08:08','mo','2025-12-19 19:43:48'),(6713,0,0,'O','N','2526',4340,0,'2025-12-19','2026-03-18',4455,4455,4340,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:10:00','0000-00-00','','','','N','10:10:00','00:00:00','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','3','10:10:41',0,'','reception','2025-12-19 10:10:41','','0000-00-00 00:00:00'),(6714,0,0,'O','N','2526',4341,0,'2025-12-19','2026-03-18',4456,4456,4341,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:15:00','0000-00-00','','','','N','10:15:00','13:32:43','','N','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','2','10:15:17',0,'','reception','2025-12-19 10:15:17','darshan','2025-12-19 13:32:43'),(6715,0,0,'O','N','2526',3773,0,'2025-12-19','0000-00-00',3877,3877,3773,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:15:00','0000-00-00','','','','N','10:15:00','11:00:40','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','10:15:50',0,'','reception','2025-12-19 10:15:50','darshan','2025-12-19 11:00:40'),(6716,0,0,'O','N','2526',3136,0,'2025-12-19','0000-00-00',3222,3222,3136,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:19:00','0000-00-00','','','','N','10:19:00','11:31:52','','','N','Y',NULL,'O','O','Z04','','0000-00-00 00:00:00','2','10:19:35',0,'','reception','2025-12-19 10:19:35','darshan','2025-12-19 11:31:52'),(6717,0,0,'O','N','2526',4342,0,'2025-12-19','2026-03-18',4457,4457,4342,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:25:00','0000-00-00','','','','N','10:25:00','11:08:10','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','4','10:25:10',0,'','drashti','2025-12-19 10:25:10','drarchit','2025-12-19 11:08:10'),(6718,0,0,'O','N','2526',4343,0,'2025-12-19','2026-03-18',4458,4458,4343,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:28:00','0000-00-00','','','','N','10:28:00','14:04:49','','N','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','10:28:42',0,'','drashti','2025-12-19 10:28:42','darshan','2025-12-19 14:04:49'),(6719,0,0,'O','N','2526',4344,0,'2025-12-19','2026-03-18',4459,4459,4344,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:31:00','0000-00-00','','','','N','10:31:00','11:39:07','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','4','10:31:01',0,'','drashti','2025-12-19 10:31:01','drarchit','2025-12-19 11:39:07'),(6720,0,0,'O','N','2526',2718,0,'2025-12-19','0000-00-00',2789,2789,2718,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:37:00','0000-00-00','','','','N','10:37:00','11:04:23','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:37:22',0,'','reception','2025-12-19 10:37:22','darshan','2025-12-19 11:04:23'),(6721,0,0,'O','N','2526',4345,0,'2025-12-19','2026-03-18',4460,4460,4345,'N','','N','','','NV','','N','D06','','N',172,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:41:00','0000-00-00','','','','N','10:41:00','13:13:49','','N','N','Y',NULL,'O','N','F03','','0000-00-00 00:00:00','2','10:41:28',0,'','reception','2025-12-19 10:41:28','darshan','2025-12-19 13:13:49'),(6722,0,0,'O','N','2526',4346,0,'2025-12-19','2026-03-18',4461,4461,4346,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:41:00','0000-00-00','','','','N','10:41:00','11:43:10','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','5','11:25:35',0,'','drashti','2025-12-19 10:41:39','drjayant','2025-12-19 11:43:10'),(6723,0,0,'O','N','2526',1022,0,'2025-12-19','0000-00-00',1056,1056,1022,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','12:03:02','','','N','Y',NULL,'O','O','Z08','','0000-00-00 00:00:00','2','10:43:31',0,'','reception','2025-12-19 10:43:31','darshan','2025-12-19 12:03:02'),(6724,0,0,'O','N','2526',1021,0,'2025-12-19','0000-00-00',1055,1055,1021,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','12:05:36','','','N','Y',NULL,'O','O','Z09','','0000-00-00 00:00:00','2','10:44:19',0,'','reception','2025-12-19 10:44:19','darshan','2025-12-19 12:05:36'),(6725,0,0,'O','N','2526',4347,0,'2025-12-19','2026-03-18',4462,0,4347,'N','','N','','','','','N','D02','','N',95,'','3',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','10:45:00','0000-00-00','','','','N','10:45:00','00:00:00','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','3','10:45:32',0,'','drashti','2025-12-19 10:45:32','drashti','2025-12-19 10:46:45'),(6726,0,0,'O','N','2526',313,0,'2025-12-19','0000-00-00',329,329,313,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','11:21:40','','','N','Y',NULL,'O','O','Z11','','0000-00-00 00:00:00','4','10:46:55',0,'','janvi','2025-12-19 10:46:55','drarchit','2025-12-19 11:21:40'),(6727,0,0,'O','N','2526',4348,0,'2025-12-19','2026-03-18',4463,4463,4348,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:49:00','0000-00-00','','','','N','10:49:00','11:46:30','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','5','11:25:35',0,'','drashti','2025-12-19 10:49:49','drjayant','2025-12-19 11:46:30'),(6728,0,0,'O','N','2526',3880,0,'2025-12-19','0000-00-00',3989,3989,3880,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:50:00','0000-00-00','','','','N','10:50:00','12:14:51','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','2','10:50:20',0,'','reception','2025-12-19 10:50:20','darshan','2025-12-19 12:14:51'),(6729,0,0,'O','N','2526',1994,0,'2025-12-19','0000-00-00',2045,2045,1994,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:52:00','0000-00-00','','','','N','10:52:00','12:10:15','','','N','Y',NULL,'O','O','Z14','','0000-00-00 00:00:00','2','10:52:36',0,'','reception','2025-12-19 10:52:36','darshan','2025-12-19 12:10:15'),(6730,0,0,'O','N','2526',4349,0,'2025-12-19','2026-03-18',4464,4464,4349,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','13:56:20','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','10:56:10',0,'','reception','2025-12-19 10:56:09','darshan','2025-12-19 13:56:20'),(6731,0,0,'O','N','2526',4200,0,'2025-12-19','0000-00-00',4314,4314,4200,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','11:14:51','','','N','Y',NULL,'O','O','Z15','','0000-00-00 00:00:00','4','10:56:53',0,'','drashti','2025-12-19 10:56:53','drarchit','2025-12-19 11:14:51'),(6732,0,0,'O','N','2526',1852,0,'2025-12-19','0000-00-00',1898,1898,1852,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:57:00','0000-00-00','','','','N','10:57:00','12:24:08','','N','N','Y',NULL,'O','O','G02','','0000-00-00 00:00:00','2','10:57:38',0,'','reception','2025-12-19 10:57:37','darshan','2025-12-19 12:24:08'),(6733,0,0,'O','N','2526',2171,0,'2025-12-19','0000-00-00',2226,2226,2171,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:03:00','0000-00-00','','','','N','11:03:00','17:32:54','','','N','Y',NULL,'O','O','Z16','','0000-00-00 00:00:00','2','11:03:46',0,'','reception','2025-12-19 11:03:46','darshan','2025-12-19 17:32:54'),(6734,0,0,'O','N','2526',4350,0,'2025-12-19','2026-03-18',4465,4465,4350,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','11:14:22','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','3','11:08:42',0,'','drashti','2025-12-19 11:08:42','drpratapsinh','2025-12-19 11:14:22'),(6735,0,0,'O','N','2526',1935,0,'2025-12-19','0000-00-00',1983,1983,1935,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','12:50:08','','','N','Y',NULL,'O','O','J01','','0000-00-00 00:00:00','2','11:11:38',0,'','reception','2025-12-19 11:11:38','darshan','2025-12-19 12:50:08'),(6736,0,0,'O','N','2526',4351,0,'2025-12-19','2026-03-18',4466,4466,4351,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','11:55:47','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','4','11:13:34',0,'','drashti','2025-12-19 11:13:34','drarchit','2025-12-19 11:55:47'),(6737,0,0,'I','N','2526',0,308,'2025-12-19','2026-03-18',4467,4467,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','Y','15','','1320558','0000-00-00','','','',1,'N','N','N','10:00:00','2025-12-19','','1','mo','N','10:00:00','15:20:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-19 11:14:01','riya','2025-12-19 16:26:31'),(6738,0,0,'O','N','2526',3969,0,'2025-12-19','0000-00-00',4076,4076,3969,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','11:22:32','','','N','Y',NULL,'O','O','Z18','','0000-00-00 00:00:00','6','11:14:08',0,'','manshi','2025-12-19 11:14:08','drsagar','2025-12-19 11:22:32'),(6739,0,0,'O','N','2526',4352,0,'2025-12-19','2026-03-18',4468,4468,4352,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','18:31:40','','N','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','4','11:19:50',0,'','drashti','2025-12-19 11:19:50','drarchit','2025-12-19 18:31:40'),(6740,0,0,'O','N','2526',4353,0,'2025-12-19','2026-03-18',4469,4469,4353,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','12:34:13','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','2','11:23:53',0,'','reception','2025-12-19 11:23:53','darshan','2025-12-19 12:34:13'),(6741,0,0,'O','N','2526',3174,0,'2025-12-19','0000-00-00',3260,3260,3174,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','11:59:40','','','N','Y',NULL,'O','O','H03','','0000-00-00 00:00:00','2','11:24:21',0,'','janvi','2025-12-19 11:24:21','darshan','2025-12-19 11:59:40'),(6742,0,0,'O','N','2526',4354,0,'2025-12-19','2026-03-18',4470,4470,4354,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','11:52:35','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','5','11:25:35',0,'','janvi','2025-12-19 11:25:35','drjayant','2025-12-19 11:52:35'),(6743,0,0,'O','N','2526',4355,0,'2025-12-19','2026-03-18',4471,4471,4355,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','12:52:57','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','2','11:26:46',0,'','reception','2025-12-19 11:26:46','darshan','2025-12-19 12:52:57'),(6744,0,0,'O','N','2526',9,0,'2025-12-19','0000-00-00',9,9,9,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','12:00:49','','','N','Y',NULL,'O','O','Z23','','0000-00-00 00:00:00','5','11:27:02',0,'','janvi','2025-12-19 11:27:02','drjayant','2025-12-19 12:00:49'),(6745,0,0,'O','N','2526',4356,0,'2025-12-19','2026-03-18',4472,4472,4356,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:30:00','0000-00-00','','','','N','11:30:00','14:08:18','','N','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','2','11:30:41',0,'','reception','2025-12-19 11:30:41','darshan','2025-12-19 14:08:18'),(6746,0,0,'O','N','2526',3648,0,'2025-12-19','0000-00-00',3751,3751,3648,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','14:14:25','','N','N','Y',NULL,'O','O','Z24','','0000-00-00 00:00:00','2','11:32:05',0,'','reception','2025-12-19 11:32:05','darshan','2025-12-19 14:14:25'),(6747,0,0,'O','N','2526',3628,0,'2025-12-19','0000-00-00',3731,3731,3628,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','11:42:59','','','N','Y',NULL,'O','O','H05','','0000-00-00 00:00:00','4','11:32:34',0,'','drashti','2025-12-19 11:32:34','drarchit','2025-12-19 11:42:59'),(6748,0,0,'O','N','2526',2564,0,'2025-12-19','0000-00-00',2624,2624,2564,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','13:04:03','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','2','11:59:40',0,'','reception','2025-12-19 11:33:22','darshan','2025-12-19 13:04:03'),(6749,0,0,'O','N','2526',4357,0,'2025-12-19','2026-03-18',4473,4473,4357,'N','','N','','','FC','','N','D27','','N',6,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:33:00','0000-00-00','','','','N','11:33:00','11:49:49','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','4','11:34:04',0,'','janvi','2025-12-19 11:34:04','drarchit','2025-12-19 11:49:49'),(6750,0,0,'O','N','2526',4358,0,'2025-12-19','2026-03-18',4474,4474,4358,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','11:46:52','','','N','Y',NULL,'O','N','H06','','0000-00-00 00:00:00','4','11:38:08',0,'','drashti','2025-12-19 11:38:07','drarchit','2025-12-19 11:46:52'),(6751,0,0,'O','N','2526',1037,0,'2025-12-19','0000-00-00',1071,1071,1037,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','12:20:55','','','N','Y',NULL,'O','O','I02','','0000-00-00 00:00:00','2','11:59:40',0,'','reception','2025-12-19 11:41:49','darshan','2025-12-19 12:20:55'),(6752,0,0,'O','N','2526',2936,0,'2025-12-19','0000-00-00',3013,3013,2936,'N','','N','','','','','N','D02','','N',218,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','11:52:05','','','N','Y',NULL,'O','O','Z27','','0000-00-00 00:00:00','3','11:41:52',0,'','janvi','2025-12-19 11:41:52','drpratapsinh','2025-12-19 11:52:05'),(6753,0,0,'O','N','2526',2744,0,'2025-12-19','0000-00-00',2814,2814,2744,'N','','N','','','FV','','N','D06','','N',206,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','13:24:49','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','2','11:59:40',0,'','drashti','2025-12-19 11:46:14','darshan','2025-12-19 13:24:49'),(6754,0,0,'O','N','2526',4359,0,'2025-12-19','2026-03-18',4475,4475,4359,'N','','N','','','','','N','D02','','N',299,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','11:59:38','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','3','11:46:46',0,'','janvi','2025-12-19 11:46:46','drpratapsinh','2025-12-19 11:59:38'),(6755,0,0,'O','N','2526',2830,0,'2025-12-19','0000-00-00',2902,2902,2830,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','13:28:25','','','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','2','11:59:40',0,'','reception','2025-12-19 11:47:35','darshan','2025-12-19 13:28:25'),(6756,0,0,'O','N','2526',4360,0,'2025-12-19','2026-03-18',3731,0,4360,'N','','N','','','FC','','N','D03','','N',4,'','6',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','12:10:53','','','N','Y',NULL,'O','N','Y01','','0000-00-00 00:00:00','6','11:48:02',0,'','manshi','2025-12-19 11:48:02','drsagar','2025-12-19 12:10:53'),(6757,0,0,'O','N','2526',4361,0,'2025-12-19','2026-03-18',4476,4476,4361,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','13:32:10','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','2','11:59:40',0,'','reception','2025-12-19 11:50:06','darshan','2025-12-19 13:32:10'),(6758,0,0,'O','N','2526',2178,0,'2025-12-19','0000-00-00',2233,2233,2178,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','13:42:48','','','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','2','11:59:40',0,'','reception','2025-12-19 11:51:51','darshan','2025-12-19 13:42:48'),(6759,0,0,'O','N','2526',4362,0,'2025-12-19','2026-03-18',4477,4477,4362,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:54:00','0000-00-00','','','','N','11:54:00','12:03:25','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','4','11:55:05',0,'','janvi','2025-12-19 11:55:04','drarchit','2025-12-19 12:03:25'),(6760,0,0,'O','N','2526',4363,0,'2025-12-19','2026-03-18',4478,4478,4363,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:55:00','0000-00-00','','','','N','11:55:00','12:06:37','','','N','Y',NULL,'O','N','H07','','0000-00-00 00:00:00','4','11:55:36',0,'','drashti','2025-12-19 11:55:36','drarchit','2025-12-19 12:06:37'),(6761,0,0,'O','N','2526',893,0,'2025-12-19','0000-00-00',925,925,893,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:55:00','0000-00-00','','','','N','11:55:00','12:56:49','','N','N','Y',NULL,'O','O','I03','','0000-00-00 00:00:00','4','11:55:51',0,'','janvi','2025-12-19 11:55:51','drarchit','2025-12-19 12:56:49'),(6762,0,0,'O','N','2526',4364,0,'2025-12-19','2026-03-18',4479,4479,4364,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','12:11:33','','','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','4','11:58:16',0,'','reception','2025-12-19 11:58:15','drarchit','2025-12-19 12:11:33'),(6763,0,0,'O','N','2526',4365,0,'2025-12-19','2026-03-18',4480,4480,4365,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','12:15:15','','','N','Y',NULL,'O','N','I04','','0000-00-00 00:00:00','4','12:01:01',0,'','janvi','2025-12-19 12:01:01','drarchit','2025-12-19 12:15:15'),(6764,0,0,'O','N','2526',773,0,'2025-12-19','0000-00-00',804,804,773,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:13:00','0000-00-00','','','','N','12:13:00','12:26:36','','','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','4','12:13:31',0,'','drashti','2025-12-19 12:13:31','drarchit','2025-12-19 12:26:36'),(6765,0,0,'O','N','2526',4366,0,'2025-12-19','2026-03-18',4481,4481,4366,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:14:00','0000-00-00','','','','N','12:14:00','12:40:02','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','12:24:08',0,'','reception','2025-12-19 12:14:50','darshan','2025-12-19 12:40:02'),(6766,0,0,'O','N','2526',4367,0,'2025-12-19','2026-03-18',4482,4482,4367,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:20:00','0000-00-00','','','','N','12:20:00','00:00:00','','','N','N',NULL,'O','N','Z36','','0000-00-00 00:00:00','3','12:21:08',0,'','janvi','2025-12-19 12:21:08','','0000-00-00 00:00:00'),(6767,0,0,'O','N','2526',4368,0,'2025-12-19','2026-03-18',4483,4483,4368,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:23:00','0000-00-00','','','','N','12:23:00','19:07:00','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','12:24:08',0,'','reception','2025-12-19 12:23:34','darshan','2025-12-19 19:07:00'),(6768,0,0,'O','N','2526',2721,0,'2025-12-19','0000-00-00',2792,2792,2721,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:25:00','0000-00-00','','','','N','12:25:00','12:32:47','','','N','Y',NULL,'O','O','Z38','','0000-00-00 00:00:00','4','12:25:02',0,'','drashti','2025-12-19 12:25:01','drarchit','2025-12-19 12:32:47'),(6769,0,0,'I','N','2526',0,309,'2025-12-19','2026-03-18',4484,4484,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','N','N','','','','0000-00-00','','','',1,'N','N','N','12:00:00','2025-12-23','','1','mo','N','12:00:00','16:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-19 12:26:03','vishal','2025-12-23 16:55:57'),(6770,0,0,'O','N','2526',4369,0,'2025-12-19','2026-03-18',4485,4485,4369,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','13:51:29','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','2','12:40:02',0,'','drashti','2025-12-19 12:28:12','darshan','2025-12-19 13:51:29'),(6771,0,0,'O','N','2526',3673,0,'2025-12-19','0000-00-00',3777,3777,3673,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:28:00','0000-00-00','','','','N','12:28:00','12:44:53','','','N','Y',NULL,'O','O','Z40','','0000-00-00 00:00:00','6','12:28:57',0,'','manshi','2025-12-19 12:28:57','drsagar','2025-12-19 12:44:53'),(6772,0,0,'O','N','2526',4370,0,'2025-12-19','2026-03-18',4486,4486,4370,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:41:00','0000-00-00','','','','N','12:41:00','00:00:00','','','N','N',NULL,'O','N','Z41','','0000-00-00 00:00:00','3','12:41:58',0,'','drashti','2025-12-19 12:41:58','','0000-00-00 00:00:00'),(6773,0,0,'O','N','2526',4371,0,'2025-12-19','2026-03-18',4487,4487,4371,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:43:00','0000-00-00','','','','N','12:43:00','14:24:54','','N','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','2','12:50:08',0,'','reception','2025-12-19 12:43:06','darshan','2025-12-19 14:24:54'),(6774,0,0,'O','N','2526',4372,0,'2025-12-19','2026-03-18',4488,4488,4372,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:47:00','0000-00-00','','','','N','12:47:00','18:24:35','','N','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','4','12:47:53',0,'','drashti','2025-12-19 12:47:53','drarchit','2025-12-19 18:24:35'),(6775,0,0,'O','N','2526',4373,0,'2025-12-19','2026-03-18',4489,4489,4373,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:53:00','0000-00-00','','','','N','12:53:00','19:37:14','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','5','12:53:08',0,'','reception','2025-12-19 12:53:08','drjayant','2025-12-19 19:37:14'),(6776,0,0,'O','N','2526',2577,0,'2025-12-19','0000-00-00',2638,2638,2577,'N','','N','','','FV   ','','N','D06','','N',189,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:21:00','0000-00-00','','','','N','13:21:00','14:13:59','','','N','Y',NULL,'O','O','K01','','0000-00-00 00:00:00','2','13:21:18',0,'','reception','2025-12-19 13:21:18','darshan','2025-12-19 14:13:59'),(6777,0,0,'O','N','2526',4160,0,'2025-12-19','0000-00-00',4274,4274,4160,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:36:00','0000-00-00','','','','N','13:36:00','18:24:20','','','N','Y',NULL,'O','O','Z44','','0000-00-00 00:00:00','4','13:36:59',0,'','drashti','2025-12-19 13:36:59','drarchit','2025-12-19 18:24:20'),(6778,0,0,'O','N','2526',1277,0,'2025-12-19','0000-00-00',1316,1316,1277,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','14:26:00','0000-00-00','','','','N','14:26:00','17:15:27','','','N','Y',NULL,'O','O','Z45','','0000-00-00 00:00:00','2','14:26:39',0,'','reception','2025-12-19 14:26:39','darshan','2025-12-19 17:15:27'),(6779,0,0,'O','N','2526',2558,0,'2025-12-19','0000-00-00',2618,2618,2558,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','15:44:00','0000-00-00','','','','N','15:44:00','17:24:53','','','N','Y',NULL,'O','O','Z46','','0000-00-00 00:00:00','2','15:44:21',0,'','priyanshi','2025-12-19 15:44:21','darshan','2025-12-19 17:24:53'),(6780,0,0,'I','N','2526',0,310,'2025-12-19','2026-03-18',4490,4490,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','N','N','','','','0000-00-00','','','',1,'N','N','N','15:38:00','2025-12-23','','4','mo','N','15:38:00','12:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-19 15:49:52','riya','2025-12-23 13:15:19'),(6781,0,0,'O','N','2526',4374,0,'2025-12-19','2026-03-18',4491,4491,4374,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:16:00','0000-00-00','','','','N','16:16:00','19:33:51','','N','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','16:16:35',0,'','reception','2025-12-19 16:16:35','darshan','2025-12-19 19:33:51'),(6782,0,0,'O','N','2526',4375,0,'2025-12-19','2026-03-18',4492,4492,4375,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:21:00','0000-00-00','','','','N','16:21:00','17:16:15','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','2','16:22:03',0,'','reception','2025-12-19 16:22:03','darshan','2025-12-19 17:16:15'),(6783,0,0,'O','N','2526',4376,0,'2025-12-19','2026-03-18',4493,4493,4376,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:30:00','0000-00-00','','','','N','16:30:00','19:30:48','','N','N','Y',NULL,'O','N','L01','','0000-00-00 00:00:00','2','16:30:10',0,'','reception','2025-12-19 16:30:10','darshan','2025-12-19 19:30:48'),(6784,0,0,'O','N','2526',966,0,'2025-12-19','0000-00-00',999,999,966,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:39:00','0000-00-00','','','','N','16:39:00','17:25:32','','','N','Y',NULL,'O','O','Z49','','0000-00-00 00:00:00','2','16:39:07',0,'','reception','2025-12-19 16:39:07','darshan','2025-12-19 17:25:32'),(6785,0,0,'O','N','2526',4369,0,'2025-12-19','0000-00-00',4485,4485,4369,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:39:00','0000-00-00','','','','N','16:39:00','19:11:38','','N','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','2','16:39:56',0,'','reception','2025-12-19 16:39:56','darshan','2025-12-19 19:11:38'),(6786,0,0,'O','N','2526',865,0,'2025-12-19','0000-00-00',897,897,865,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:46:00','0000-00-00','','','','N','16:46:00','17:22:20','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','16:47:01',0,'','reception','2025-12-19 16:47:01','darshan','2025-12-19 17:22:20'),(6787,0,0,'O','N','2526',4377,0,'2025-12-19','2026-03-18',4494,4494,4377,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:47:00','0000-00-00','','','','N','16:47:00','19:28:34','','N','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','16:47:57',0,'','priyanshi','2025-12-19 16:47:57','darshan','2025-12-19 19:28:34'),(6788,0,0,'O','N','2526',3812,0,'2025-12-19','0000-00-00',3918,3918,3812,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:51:00','0000-00-00','','','','N','16:51:00','18:14:03','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','16:51:21',0,'','reception','2025-12-19 16:51:21','darshan','2025-12-19 18:14:03'),(6789,0,0,'O','N','2526',2082,0,'2025-12-19','0000-00-00',2136,0,2082,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:52:00','0000-00-00','','','','N','16:52:00','17:34:06','','','N','Y',NULL,'O','O','Z50','','0000-00-00 00:00:00','2','16:52:35',0,'','reception','2025-12-19 16:52:35','darshan','2025-12-19 17:34:06'),(6790,0,0,'O','N','2526',3789,0,'2025-12-19','0000-00-00',3893,3893,3789,'N','','N','','','FV','','N','D06','','N',271,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:54:00','0000-00-00','','','','N','16:54:00','18:20:16','','','N','Y',NULL,'O','O','Z51','','0000-00-00 00:00:00','2','16:54:08',0,'','reception','2025-12-19 16:54:08','darshan','2025-12-19 18:20:16'),(6791,0,0,'O','N','2526',2664,0,'2025-12-19','0000-00-00',2733,0,2664,'N','','N','','','MR','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','17:00:00','0000-00-00','','','','N','17:00:00','18:07:38','','','N','Y',NULL,'O','O','Z52','','0000-00-00 00:00:00','2','17:00:49',0,'','reception','2025-12-19 17:00:49','darshan','2025-12-19 18:07:38'),(6792,0,0,'O','N','2526',2627,0,'2025-12-19','0000-00-00',2695,2695,2627,'N','','N','','','FV','','N','D06','','N',195,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:02:00','0000-00-00','','','','N','17:02:00','17:38:05','','','N','Y',NULL,'O','O','L05','','0000-00-00 00:00:00','2','17:02:38',0,'','reception','2025-12-19 17:02:38','darshan','2025-12-19 17:38:05'),(6793,0,0,'O','N','2526',4378,0,'2025-12-19','2026-03-18',4495,4495,4378,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:10:00','0000-00-00','','','','N','17:10:00','18:32:23','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','2','17:10:19',0,'','reception','2025-12-19 17:10:19','darshan','2025-12-19 18:32:23'),(6794,0,0,'O','N','2526',4379,0,'2025-12-19','2026-03-18',4496,4496,4379,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:12:00','0000-00-00','','','','N','17:12:00','00:00:00','','','N','N',NULL,'O','N','Z54','','0000-00-00 00:00:00','7','17:12:20',0,'','manshi','2025-12-19 17:12:20','','0000-00-00 00:00:00'),(6795,0,0,'O','N','2526',4380,0,'2025-12-19','2026-03-18',4497,4497,4380,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:14:00','0000-00-00','','','','N','17:14:00','18:45:13','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','4','17:14:23',0,'','priyanshi','2025-12-19 17:14:22','drarchit','2025-12-19 18:45:13'),(6796,0,0,'O','N','2526',3770,0,'2025-12-19','0000-00-00',3874,3874,3770,'N','','N','','','FV','','N','D06','','N',269,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:16:00','0000-00-00','','','','N','17:16:00','17:43:36','','','N','Y',NULL,'O','O','L06','','0000-00-00 00:00:00','2','17:16:18',0,'','reception','2025-12-19 17:16:18','darshan','2025-12-19 17:43:36'),(6797,0,0,'O','N','2526',1765,0,'2025-12-19','0000-00-00',1811,1811,1765,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:19:00','0000-00-00','','','','N','17:19:00','19:00:47','','','N','Y',NULL,'O','O','Z56','','0000-00-00 00:00:00','2','17:20:02',0,'','reception','2025-12-19 17:20:02','darshan','2025-12-19 19:00:47'),(6798,0,0,'O','N','2526',4381,0,'2025-12-19','2026-03-18',4498,4498,4381,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:23:00','0000-00-00','','','','N','17:23:00','00:00:00','','','N','N',NULL,'O','N','Z57','','0000-00-00 00:00:00','7','17:23:57',0,'','manshi','2025-12-19 17:23:57','','0000-00-00 00:00:00'),(6799,0,0,'O','N','2526',3813,0,'2025-12-19','0000-00-00',3919,3919,3813,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:26:00','0000-00-00','','','','N','17:26:00','18:11:30','','','N','Y',NULL,'O','O','L07','','0000-00-00 00:00:00','2','17:26:19',0,'','reception','2025-12-19 17:26:19','darshan','2025-12-19 18:11:30'),(6800,0,0,'O','N','2526',449,0,'2025-12-19','0000-00-00',475,475,449,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:37:00','0000-00-00','','','','N','17:37:00','18:17:14','','','N','Y',NULL,'O','O','L08','','0000-00-00 00:00:00','2','17:37:16',0,'','drashti','2025-12-19 17:37:16','darshan','2025-12-19 18:17:14'),(6801,0,0,'O','N','2526',2393,0,'2025-12-19','0000-00-00',392,392,2393,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','11:14:01','','N','N','Y',NULL,'O','O','L09','','0000-00-00 00:00:00','4','17:42:49',0,'','drashti','2025-12-19 17:42:49','drarchit','2025-12-20 11:14:01'),(6802,0,0,'O','N','2526',4382,0,'2025-12-19','2026-03-18',4499,4499,4382,'N','','N','','','NE','','N','D06','','N',300,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:43:00','0000-00-00','','','','N','17:43:00','17:53:00','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','2','17:43:13',0,'','reception','2025-12-19 17:43:12','darshan','2025-12-19 17:53:00'),(6803,0,0,'O','N','2526',4078,0,'2025-12-19','0000-00-00',4187,4187,4078,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:45:00','0000-00-00','','','','N','17:45:00','00:00:00','','','N','N',NULL,'O','O','Z59','','0000-00-00 00:00:00','3','17:45:20',0,'','priyanshi','2025-12-19 17:45:20','','0000-00-00 00:00:00'),(6804,0,0,'O','N','2526',4383,0,'2025-12-19','2026-03-18',4500,4500,4383,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:48:00','0000-00-00','','','','N','17:48:00','20:12:55','','N','N','Y',NULL,'O','N','L10','','0000-00-00 00:00:00','2','17:49:01',0,'','reception','2025-12-19 17:49:01','darshan','2025-12-19 20:12:55'),(6805,0,0,'O','N','2526',2656,0,'2025-12-19','0000-00-00',2726,2726,2656,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','18:41:10','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','2','17:50:52',0,'','reception','2025-12-19 17:50:52','darshan','2025-12-19 18:41:10'),(6806,0,0,'O','N','2526',4384,0,'2025-12-19','2026-03-18',4501,4501,4384,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','18:29:48','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','4','17:52:17',0,'','drashti','2025-12-19 17:52:17','drarchit','2025-12-19 18:29:48'),(6807,0,0,'O','N','2526',4385,0,'2025-12-19','2026-03-18',4502,4502,4385,'N','','N','','','NV','','N','D06','','N',300,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:52:00','0000-00-00','','','','N','17:52:00','19:54:04','','N','N','Y',NULL,'O','N','L13','','0000-00-00 00:00:00','2','17:52:48',0,'','reception','2025-12-19 17:52:48','darshan','2025-12-19 19:54:03'),(6808,0,0,'O','N','2526',4386,0,'2025-12-19','2026-03-18',4503,4503,4386,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:00:00','0000-00-00','','','','N','18:00:00','00:00:00','','','N','N',NULL,'O','N','Z60','','0000-00-00 00:00:00','3','18:00:19',0,'','drashti','2025-12-19 18:00:18','','0000-00-00 00:00:00'),(6809,0,0,'O','N','2526',4387,0,'2025-12-19','2026-03-18',4504,4504,4387,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:00:00','0000-00-00','','','','N','18:00:00','20:08:46','','N','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','2','18:00:19',0,'','reception','2025-12-19 18:00:19','darshan','2025-12-19 20:08:46'),(6810,0,0,'O','N','2526',1329,0,'2025-12-19','0000-00-00',1369,1369,1329,'N','','N','','','','','N','D02','','N',93,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:06:00','0000-00-00','','','','N','18:06:00','00:00:00','','','N','N',NULL,'O','O','Z62','','0000-00-00 00:00:00','3','18:06:59',0,'','priyanshi','2025-12-19 18:06:59','','0000-00-00 00:00:00'),(6811,0,0,'O','N','2526',2684,0,'2025-12-19','0000-00-00',2753,2753,2684,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','18:51:03','','','N','Y',NULL,'O','O','L14','','0000-00-00 00:00:00','4','18:07:35',0,'','priyanshi','2025-12-19 18:07:35','drarchit','2025-12-19 18:51:03'),(6812,0,0,'O','N','2526',3776,0,'2025-12-19','0000-00-00',3880,3880,3776,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:10:00','0000-00-00','','','','N','18:10:00','18:37:54','','','N','Y',NULL,'O','O','L15','','0000-00-00 00:00:00','2','18:10:14',0,'','reception','2025-12-19 18:10:13','darshan','2025-12-19 18:37:54'),(6813,0,0,'O','N','2526',3908,0,'2025-12-19','0000-00-00',4017,4017,3908,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:18:00','0000-00-00','','','','N','18:18:00','19:42:35','','','N','Y',NULL,'O','O','Z63','','0000-00-00 00:00:00','2','18:18:57',0,'','reception','2025-12-19 18:18:57','darshan','2025-12-19 19:42:35'),(6814,0,0,'O','N','2526',4388,0,'2025-12-19','2026-03-18',4505,4505,4388,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:22:00','0000-00-00','','','','N','18:22:00','19:32:12','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','5','18:22:36',0,'','reception','2025-12-19 18:22:36','drjayant','2025-12-19 19:32:12'),(6815,0,0,'O','N','2526',3319,0,'2025-12-19','0000-00-00',3411,3411,3319,'N','','N','','','DRESSING','','N','D02','','N',25,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','00:00:00','','','N','N',NULL,'O','O','Z65','','0000-00-00 00:00:00','3','18:24:16',0,'','priyanshi','2025-12-19 18:24:16','','0000-00-00 00:00:00'),(6816,0,0,'O','N','2526',3181,0,'2025-12-19','0000-00-00',3267,3267,3181,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:25:00','0000-00-00','','','','N','18:25:00','19:49:06','','','N','Y',NULL,'O','O','Z66','','0000-00-00 00:00:00','2','18:25:50',0,'','reception','2025-12-19 18:25:50','darshan','2025-12-19 19:49:06'),(6817,0,0,'O','N','2526',3887,0,'2025-12-19','0000-00-00',3996,3996,3887,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:28:00','0000-00-00','','','','N','18:28:00','00:00:00','','','N','N',NULL,'O','O','Z67','','0000-00-00 00:00:00','3','18:28:35',0,'','drashti','2025-12-19 18:28:35','','0000-00-00 00:00:00'),(6818,0,0,'O','N','2526',4080,0,'2025-12-19','0000-00-00',4190,4190,4080,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:30:00','0000-00-00','','','','N','18:30:00','00:00:00','','','N','N',NULL,'O','O','Z68','','0000-00-00 00:00:00','7','18:30:30',0,'','manshi','2025-12-19 18:30:29','','0000-00-00 00:00:00'),(6819,0,0,'O','N','2526',221,0,'2025-12-19','0000-00-00',234,234,221,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:31:00','0000-00-00','','','','N','18:31:00','00:00:00','','','N','N',NULL,'O','O','Z69','','0000-00-00 00:00:00','3','18:31:17',0,'','drashti','2025-12-19 18:31:17','','0000-00-00 00:00:00'),(6820,0,0,'O','N','2526',3259,0,'2025-12-19','0000-00-00',3342,3342,3259,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:33:00','0000-00-00','','','','N','18:33:00','00:00:00','','','N','N',NULL,'O','O','Z70','','0000-00-00 00:00:00','3','18:33:14',0,'','priyanshi','2025-12-19 18:33:14','','0000-00-00 00:00:00'),(6821,0,0,'O','N','2526',242,0,'2025-12-19','0000-00-00',257,257,242,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','18:44:53','','','N','Y',NULL,'O','O','Z71','','0000-00-00 00:00:00','5','18:34:38',0,'','drashti','2025-12-19 18:34:38','drjayant','2025-12-19 18:44:53'),(6822,0,0,'O','N','2526',3476,0,'2025-12-19','0000-00-00',3575,3575,3476,'N','','N','','','FC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','18:59:28','','','N','Y',NULL,'O','O','Z72','','0000-00-00 00:00:00','4','18:34:43',0,'','reception','2025-12-19 18:34:43','drarchit','2025-12-19 18:59:28'),(6823,0,0,'O','N','2526',4389,0,'2025-12-19','2026-03-18',4506,4506,4389,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:35:00','0000-00-00','','','','N','18:35:00','19:02:46','','','N','Y',NULL,'O','N','Z73','','0000-00-00 00:00:00','4','18:35:55',0,'','priyanshi','2025-12-19 18:35:55','drarchit','2025-12-19 19:02:46'),(6824,0,0,'O','N','2526',4390,0,'2025-12-19','2026-03-18',4507,4507,4390,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:37:00','0000-00-00','','','','N','18:37:00','19:03:11','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','6','18:37:26',0,'','manshi','2025-12-19 18:37:26','drsagar','2025-12-19 19:03:11'),(6825,0,0,'O','N','2526',4391,0,'2025-12-19','2026-03-18',4508,4508,4391,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:37:00','0000-00-00','','','','N','18:37:00','19:06:44','','','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','4','18:37:49',0,'','drashti','2025-12-19 18:37:49','drarchit','2025-12-19 19:06:44'),(6826,0,0,'O','N','2526',4065,0,'2025-12-19','0000-00-00',4175,4175,4065,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:42:00','0000-00-00','','','','N','18:42:00','19:03:22','','','N','Y',NULL,'O','O','Z75','','0000-00-00 00:00:00','6','18:42:56',0,'','manshi','2025-12-19 18:42:56','drsagar','2025-12-19 19:03:22'),(6827,0,0,'O','N','2526',1070,0,'2025-12-19','0000-00-00',1110,1110,1070,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','00:00:00','','','N','N',NULL,'O','O','Z76','','0000-00-00 00:00:00','3','18:46:45',0,'','priyanshi','2025-12-19 18:46:45','','0000-00-00 00:00:00'),(6828,0,0,'O','N','2526',3848,0,'2025-12-19','0000-00-00',3957,3957,3848,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','19:22:19','','','N','Y',NULL,'O','O','L17','','0000-00-00 00:00:00','2','18:46:58',0,'','reception','2025-12-19 18:46:58','darshan','2025-12-19 19:22:19'),(6829,0,0,'O','N','2526',1049,0,'2025-12-19','0000-00-00',1083,1083,1049,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:50:00','0000-00-00','','','','N','18:50:00','00:00:00','','','N','N',NULL,'O','O','Z77','','0000-00-00 00:00:00','3','18:50:12',0,'','drashti','2025-12-19 18:50:12','','0000-00-00 00:00:00'),(6830,0,0,'O','N','2526',4334,0,'2025-12-19','0000-00-00',4447,4447,4334,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','00:00:00','','','N','N',NULL,'O','O','Z78','','0000-00-00 00:00:00','7','18:51:05',0,'','manshi','2025-12-19 18:51:05','','0000-00-00 00:00:00'),(6831,0,0,'O','N','2526',3980,0,'2025-12-19','0000-00-00',4087,4087,3980,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:23:03','','N','N','Y',NULL,'O','O','L18','','0000-00-00 00:00:00','4','18:51:30',0,'','drashti','2025-12-19 18:51:30','drarchit','2025-12-19 19:23:03'),(6832,0,0,'O','N','2526',3188,0,'2025-12-19','0000-00-00',3274,3274,3188,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','20:03:37','','','N','Y',NULL,'O','O','Z79','','0000-00-00 00:00:00','2','18:51:53',0,'','reception','2025-12-19 18:51:53','darshan','2025-12-19 20:03:37'),(6833,0,0,'O','N','2526',4392,0,'2025-12-19','2026-03-18',4509,4509,4392,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:13:36','','','N','Y',NULL,'O','N','L19','','0000-00-00 00:00:00','4','18:51:53',0,'','priyanshi','2025-12-19 18:51:53','drarchit','2025-12-19 19:13:36'),(6834,0,0,'O','N','2526',4393,0,'2025-12-19','2026-03-18',4510,4510,4393,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:52:00','0000-00-00','','','','N','18:52:00','19:16:55','','','N','Y',NULL,'O','N','L20','','0000-00-00 00:00:00','4','18:53:11',0,'','priyanshi','2025-12-19 18:53:11','drarchit','2025-12-19 19:16:55'),(6835,0,0,'O','N','2526',3310,0,'2025-12-19','0000-00-00',3399,3399,3310,'N','','N','','','DRESSING','','N','D02','','N',90,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:58:00','0000-00-00','','','','N','18:58:00','00:00:00','','','N','N',NULL,'O','O','Z80','','0000-00-00 00:00:00','3','18:58:19',0,'','priyanshi','2025-12-19 18:58:19','','0000-00-00 00:00:00'),(6836,0,0,'O','N','2526',4394,0,'2025-12-19','2026-03-18',4511,4511,4394,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:00:00','0000-00-00','','','','N','19:00:00','19:29:47','','','N','Y',NULL,'O','N','Z81','','0000-00-00 00:00:00','4','19:00:50',0,'','reception','2025-12-19 19:00:50','drarchit','2025-12-19 19:29:47'),(6837,0,0,'O','N','2526',4395,0,'2025-12-19','2026-03-18',4512,4512,4395,'N','','N','','','','','N','D14','','N',95,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:01:00','0000-00-00','','','','N','19:01:00','00:00:00','','','N','Y',NULL,'O','N','Z82','','0000-00-00 00:00:00','7','19:01:27',0,'','manshi','2025-12-19 19:01:27','','0000-00-00 00:00:00'),(6838,0,0,'O','N','2526',4396,0,'2025-12-19','2026-03-18',4513,0,4396,'N','','N','','','NE','','N','D06','','N',301,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','19:02:00','0000-00-00','','','','N','19:02:00','20:42:31','','N','N','Y',NULL,'O','N','Z83','','0000-00-00 00:00:00','2','19:02:32',0,'','drashti','2025-12-19 19:02:32','darshan','2025-12-19 20:42:31'),(6839,0,0,'O','N','2526',1288,0,'2025-12-19','0000-00-00',1327,1327,1288,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:09:00','0000-00-00','','','','N','19:09:00','00:00:00','','','N','N',NULL,'O','O','Z84','','0000-00-00 00:00:00','3','19:09:53',0,'','drashti','2025-12-19 19:09:53','','0000-00-00 00:00:00'),(6840,0,0,'O','N','2526',4397,0,'2025-12-19','2026-03-18',4514,4514,4397,'N','','N','','','NC','','N','D27','','N',3,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:14:00','0000-00-00','','','','N','19:14:00','19:34:47','','','N','Y',NULL,'O','N','Z85','','0000-00-00 00:00:00','4','19:14:02',0,'','drashti','2025-12-19 19:14:02','drarchit','2025-12-19 19:34:47'),(6841,0,0,'O','N','2526',3378,0,'2025-12-19','0000-00-00',3473,3473,3378,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:20:00','0000-00-00','','','','N','19:20:00','00:00:00','','','N','N',NULL,'O','O','Z86','','0000-00-00 00:00:00','','00:00:00',0,'','priyanshi','2025-12-19 19:20:26','','0000-00-00 00:00:00'),(6842,0,0,'O','N','2526',3870,0,'2025-12-19','0000-00-00',3979,3979,3870,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:37:00','0000-00-00','','','','N','19:37:00','20:38:49','','','N','Y',NULL,'O','O','Z87','','0000-00-00 00:00:00','2','19:37:38',0,'','reception','2025-12-19 19:37:38','darshan','2025-12-19 20:38:49'),(6843,0,0,'I','N','2526',0,311,'2025-12-19','2026-03-18',4515,4515,0,'N','','N','','','','N','N','D02','','N',0,'','42',0,'','','','','N','','P','Y','N','','','','0000-00-00','','','',1,'N','N','N','21:00:00','2025-12-22','','1','mo','N','21:00:00','21:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-19 21:12:23','mo','2025-12-22 21:19:39'),(6844,0,0,'O','N','2526',3852,0,'2025-12-20','0000-00-00',3961,3961,3852,'N','','N','','','ER','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','08:47:00','0000-00-00','','','','N','08:47:00','00:00:00','','','N','N',NULL,'O','O','Z01','','0000-00-00 00:00:00','2','08:47:34',0,'','priyanshi','2025-12-20 08:47:34','','0000-00-00 00:00:00'),(6845,0,0,'O','N','2526',4398,0,'2025-12-20','2026-03-19',4516,4516,4398,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','08:50:00','0000-00-00','','','','N','08:50:00','12:45:17','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','4','08:50:14',0,'','priyanshi','2025-12-20 08:50:14','drarchit','2025-12-20 12:45:17'),(6846,0,0,'O','N','2526',2680,0,'2025-12-20','0000-00-00',2749,2749,2680,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:42:00','0000-00-00','','','','N','09:42:00','12:45:26','','','N','Y',NULL,'O','O','H01','','0000-00-00 00:00:00','4','09:42:01',0,'','drashti','2025-12-20 09:42:01','drarchit','2025-12-20 12:45:26'),(6847,0,0,'O','N','2526',4399,0,'2025-12-20','2026-03-19',4517,4517,4399,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:19:00','0000-00-00','','','','N','10:19:00','11:52:40','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','6','10:19:29',0,'','manshi','2025-12-20 10:19:29','drsagar','2025-12-20 11:52:40'),(6848,0,0,'O','N','2526',3146,0,'2025-12-20','0000-00-00',3232,3232,3146,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:26:00','0000-00-00','','','','N','10:26:00','00:00:00','','','N','N',NULL,'O','O','Z04','','0000-00-00 00:00:00','3','10:26:17',0,'','janvi','2025-12-20 10:26:17','','0000-00-00 00:00:00'),(6849,0,0,'O','N','2526',3305,0,'2025-12-20','0000-00-00',3394,3394,3305,'N','','N','','','','','N','D02','','N',119,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:29:00','0000-00-00','','','','N','10:29:00','00:00:00','','','N','N',NULL,'O','O','Z05','','0000-00-00 00:00:00','3','10:29:53',0,'','janvi','2025-12-20 10:29:53','','0000-00-00 00:00:00'),(6850,0,0,'O','N','2526',4400,0,'2025-12-20','2026-03-19',4518,4518,4400,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:34:00','0000-00-00','','','','N','10:34:00','12:14:02','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','5','11:27:01',0,'','drashti','2025-12-20 10:34:14','drjayant','2025-12-20 12:14:02'),(6851,0,0,'O','N','2526',4047,0,'2025-12-20','0000-00-00',4154,4154,4047,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','11:48:39','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','4','10:44:03',0,'','drashti','2025-12-20 10:44:03','drarchit','2025-12-20 11:48:39'),(6852,0,0,'O','N','2526',4401,0,'2025-12-20','2026-03-19',4519,4519,4401,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:00:00','0000-00-00','','','','N','11:00:00','11:43:21','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','6','11:00:49',0,'','manshi','2025-12-20 11:00:49','drsagar','2025-12-20 11:43:21'),(6853,0,0,'O','N','2526',4402,0,'2025-12-20','2026-03-19',4520,4520,4402,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','12:26:54','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','5','11:27:01',0,'','drashti','2025-12-20 11:01:39','drjayant','2025-12-20 12:26:54'),(6854,0,0,'O','N','2526',4403,0,'2025-12-20','2026-03-19',4521,4521,4403,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','12:17:19','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','6','11:07:26',0,'','manshi','2025-12-20 11:07:26','drsagar','2025-12-20 12:17:19'),(6855,0,0,'O','N','2526',4404,0,'2025-12-20','2026-03-19',4522,4522,4404,'N','','N','','','FOLLOWUP C          ','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','11:26:40','','','N','Y',NULL,'O','N','Z11','','0000-00-00 00:00:00','4','11:09:53',0,'','drashti','2025-12-20 11:09:53','drarchit','2025-12-20 11:26:40'),(6856,0,0,'O','N','2526',4405,0,'2025-12-20','2026-03-19',4523,4523,4405,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','11:35:10','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','5','11:27:01',0,'','priyanshi','2025-12-20 11:10:36','drjayant','2025-12-20 11:35:10'),(6857,0,0,'O','N','2526',280,0,'2025-12-20','0000-00-00',296,296,280,'N','','N','','','FOLLOWUP','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','12:10:37','','','N','Y',NULL,'O','O','I01','','0000-00-00 00:00:00','4','11:12:45',0,'','drashti','2025-12-20 11:12:45','drarchit','2025-12-20 12:10:37'),(6858,0,0,'O','N','2526',4406,0,'2025-12-20','2026-03-19',4524,4524,4406,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','11:33:19','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','4','11:15:46',0,'','priyanshi','2025-12-20 11:15:46','drarchit','2025-12-20 11:33:19'),(6859,0,0,'O','N','2526',4252,0,'2025-12-20','0000-00-00',4367,4367,4252,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','12:45:07','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','4','11:18:37',0,'','drashti','2025-12-20 11:18:37','drarchit','2025-12-20 12:45:07'),(6860,0,0,'O','N','2526',4317,0,'2025-12-20','0000-00-00',4431,4431,4317,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','00:00:00','','','N','N',NULL,'O','O','Z14','','0000-00-00 00:00:00','3','11:24:15',0,'','priyanshi','2025-12-20 11:24:15','','0000-00-00 00:00:00'),(6861,0,0,'O','N','2526',4407,0,'2025-12-20','2026-03-19',4525,4525,4407,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:27:00','0000-00-00','','','','N','11:27:00','11:43:36','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','4','11:27:11',0,'','priyanshi','2025-12-20 11:27:11','drarchit','2025-12-20 11:43:36'),(6862,0,0,'O','N','2526',251,0,'2025-12-20','0000-00-00',266,266,251,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','11:57:13','','','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','4','11:28:19',0,'','drashti','2025-12-20 11:28:19','drarchit','2025-12-20 11:57:13'),(6863,0,0,'O','N','2526',4408,0,'2025-12-20','2026-03-19',4526,4526,4408,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','12:44:34','','N','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','4','11:38:22',0,'','janvi','2025-12-20 11:38:22','drarchit','2025-12-20 12:44:34'),(6864,0,0,'O','N','2526',4409,0,'2025-12-20','2026-03-19',4527,4527,4409,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:44:00','0000-00-00','','','','N','11:44:00','12:43:46','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','6','11:44:47',0,'','manshi','2025-12-20 11:44:47','drsagar','2025-12-20 12:43:46'),(6865,0,0,'O','N','2526',4410,0,'2025-12-20','2026-03-19',4325,4325,4410,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:45:00','0000-00-00','','','','N','11:45:00','12:41:48','','','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','4','11:45:40',0,'','drashti','2025-12-20 11:45:40','drarchit','2025-12-20 12:41:48'),(6866,0,0,'O','N','2526',2929,0,'2025-12-20','0000-00-00',3006,3006,2929,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','12:36:53','','','N','Y',NULL,'O','O','J01','','0000-00-00 00:00:00','4','11:46:27',0,'','priyanshi','2025-12-20 11:46:27','drarchit','2025-12-20 12:36:53'),(6867,0,0,'O','N','2526',3263,0,'2025-12-20','0000-00-00',3351,3351,3263,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','12:37:20','','','N','Y',NULL,'O','O','Z18','','0000-00-00 00:00:00','4','11:46:56',0,'','priyanshi','2025-12-20 11:46:56','drarchit','2025-12-20 12:37:20'),(6868,0,0,'O','N','2526',4411,0,'2025-12-20','2026-03-19',4528,4528,4411,'N','','N','','','NC','','N','D02','','N',168,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','00:00:00','','','N','N',NULL,'O','N','Z19','','0000-00-00 00:00:00','3','11:48:42',0,'','drashti','2025-12-20 11:48:42','','0000-00-00 00:00:00'),(6869,0,0,'O','N','2526',4412,0,'2025-12-20','2026-03-19',4529,4529,4412,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:53:00','0000-00-00','','','','N','11:53:00','12:44:50','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','4','11:53:06',0,'','priyanshi','2025-12-20 11:53:06','drarchit','2025-12-20 12:44:50'),(6870,0,0,'O','N','2526',4413,0,'2025-12-20','2026-03-19',4530,4530,4413,'N','','N','','','ECG','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:03:00','0000-00-00','','','','N','12:03:00','12:28:44','','N','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','4','12:03:53',0,'','priyanshi','2025-12-20 12:03:53','drarchit','2025-12-20 12:28:44'),(6871,0,0,'O','N','2526',4414,0,'2025-12-20','2026-03-19',4531,0,4414,'N','','N','','','','','N','D27','','N',3,'','4',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:14:00','0000-00-00','','','','N','12:14:00','12:53:39','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','4','12:14:26',0,'','priyanshi','2025-12-20 12:14:26','drarchit','2025-12-20 12:53:39'),(6872,0,0,'O','N','2526',4415,0,'2025-12-20','2026-03-19',4532,4532,4415,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:15:00','0000-00-00','','','','N','12:15:00','12:49:04','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','4','12:15:19',0,'','drashti','2025-12-20 12:15:19','drarchit','2025-12-20 12:49:04'),(6873,0,0,'O','N','2526',4416,0,'2025-12-20','2026-03-19',4533,4533,4416,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:21:00','0000-00-00','','','','N','12:21:00','13:30:58','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','6','12:21:42',0,'','manshi','2025-12-20 12:21:42','drsagar','2025-12-20 13:30:58'),(6874,0,0,'O','N','2526',4417,0,'2025-12-20','2026-03-19',4534,4534,4417,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','12:56:53','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','5','12:27:47',0,'','drashti','2025-12-20 12:27:47','drjayant','2025-12-20 12:56:53'),(6875,0,0,'O','N','2526',4418,0,'2025-12-20','2026-03-19',4535,4535,4418,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','00:00:00','','','N','N',NULL,'O','N','Z26','','0000-00-00 00:00:00','5','12:27:56',0,'','shweta','2025-12-20 12:27:55','','0000-00-00 00:00:00'),(6876,0,0,'O','N','2526',4419,0,'2025-12-20','2026-03-19',4536,4536,4419,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:29:00','0000-00-00','','','','N','12:29:00','12:59:01','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','4','12:29:58',0,'','drashti','2025-12-20 12:29:58','drarchit','2025-12-20 12:59:01'),(6877,0,0,'O','N','2526',2659,0,'2025-12-20','0000-00-00',2729,2729,2659,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:30:00','0000-00-00','','','','N','12:30:00','13:05:04','','','N','Y',NULL,'O','O','J02','','0000-00-00 00:00:00','4','12:30:44',0,'','janvi','2025-12-20 12:30:44','drarchit','2025-12-20 13:05:04'),(6878,0,0,'O','N','2526',4420,0,'2025-12-20','2026-03-19',4537,4537,4420,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:32:00','0000-00-00','','','','N','12:32:00','20:11:54','','N','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','4','12:32:23',0,'','janvi','2025-12-20 12:32:23','drarchit','2025-12-22 20:11:54'),(6879,0,0,'O','N','2526',4421,0,'2025-12-20','2026-03-19',4538,4538,4421,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:32:00','0000-00-00','','','','N','12:32:00','13:01:36','','','N','Y',NULL,'O','N','Z28','','0000-00-00 00:00:00','4','12:32:56',0,'','drashti','2025-12-20 12:32:56','drarchit','2025-12-20 13:01:36'),(6880,0,0,'O','N','2526',4422,0,'2025-12-20','2026-03-19',4539,4539,4422,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:04:00','0000-00-00','','','','N','13:04:00','00:00:00','','','N','Y',NULL,'O','N','Z29','','0000-00-00 00:00:00','7','13:04:44',0,'','manshi','2025-12-20 13:04:44','','0000-00-00 00:00:00'),(6881,0,0,'O','N','2526',4423,0,'2025-12-20','2026-03-19',4540,4540,4423,'N','','N','','','','','N','D02','','N',273,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:11:00','0000-00-00','','','','N','13:11:00','00:00:00','','','N','N',NULL,'O','N','Z30','','0000-00-00 00:00:00','3','13:11:52',0,'','shweta','2025-12-20 13:11:52','','0000-00-00 00:00:00'),(6882,0,0,'I','N','2526',0,312,'2025-12-20','2026-03-19',4541,4541,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','N','N','','','','0000-00-00','','','',1,'N','N','N','14:30:00','2025-12-22','','4','mo','N','14:30:00','12:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-20 14:42:00','mo','2025-12-22 13:30:13'),(6883,0,0,'O','N','2526',957,0,'2025-12-20','0000-00-00',990,990,957,'N','','N','','','INJECTION','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','15:37:00','0000-00-00','','','','N','15:37:00','00:00:00','','','N','N',NULL,'O','O','Z31','','0000-00-00 00:00:00','4','15:37:39',0,'','priyanshi','2025-12-20 15:37:39','','0000-00-00 00:00:00'),(6884,0,0,'I','N','2526',2680,313,'2025-12-20','2026-03-19',2749,2749,2680,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','Y','N','11','','','0000-00-00','','','',1,'N','N','N','12:30:00','0000-00-00','','','mo','N','12:30:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-20 16:39:45','mo','2025-12-23 14:50:17'),(6885,0,0,'O','N','2526',4078,0,'2025-12-20','0000-00-00',4187,4187,4078,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:41:00','0000-00-00','','','','N','17:41:00','00:00:00','','','N','N',NULL,'O','O','Z32','','0000-00-00 00:00:00','3','17:41:24',0,'','janvi','2025-12-20 17:41:24','','0000-00-00 00:00:00'),(6886,0,0,'O','N','2526',4424,0,'2025-12-20','2026-03-19',4542,4542,4424,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:56:00','0000-00-00','','','','N','17:56:00','00:00:00','','','N','N',NULL,'O','N','Z33','','0000-00-00 00:00:00','3','17:56:50',0,'','janvi','2025-12-20 17:56:50','','0000-00-00 00:00:00'),(6887,0,0,'O','N','2526',4425,0,'2025-12-20','2026-03-19',4543,4543,4425,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','00:00:00','','','N','N',NULL,'O','N','Z34','','0000-00-00 00:00:00','3','18:07:51',0,'','janvi','2025-12-20 18:07:51','','0000-00-00 00:00:00'),(6888,0,0,'O','N','2526',4426,0,'2025-12-20','2026-03-19',4544,4544,4426,'N','','N','','','','','N','D14','','N',243,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:08:00','0000-00-00','','','','N','19:08:00','00:00:00','','','N','N',NULL,'O','N','Z35','','0000-00-00 00:00:00','7','19:08:51',0,'','manshi','2025-12-20 19:08:51','','0000-00-00 00:00:00'),(6889,0,0,'O','N','2526',4427,0,'2025-12-20','2026-03-19',4545,4545,4427,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:11:00','0000-00-00','','','','N','19:11:00','00:00:00','','','N','N',NULL,'O','N','Z36','','0000-00-00 00:00:00','3','19:12:10',0,'','janvi','2025-12-20 19:12:10','','0000-00-00 00:00:00'),(6890,0,0,'O','N','2526',4277,0,'2025-12-20','0000-00-00',4392,4392,4277,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:24:00','0000-00-00','','','','N','19:24:00','00:00:00','','','N','N',NULL,'O','O','Z37','','0000-00-00 00:00:00','3','19:24:41',0,'','janvi','2025-12-20 19:24:41','','0000-00-00 00:00:00'),(6891,0,0,'O','N','2526',4334,0,'2025-12-20','0000-00-00',4447,4447,4334,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:30:00','0000-00-00','','','','N','19:30:00','00:00:00','','','N','N',NULL,'O','O','Z38','','0000-00-00 00:00:00','7','19:30:08',0,'','manshi','2025-12-20 19:30:08','','0000-00-00 00:00:00'),(6892,0,0,'I','N','2526',4224,314,'2025-12-20','2026-03-19',4339,4339,4224,'N','','N','','','','N','N','D03','','N',0,'','6',0,'','','','','N','','P','N','N','','','','0000-00-00','','','',1,'N','N','N','20:54:00','2025-12-22','','1','mo','N','20:54:00','12:20:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-20 20:56:14','mo','2025-12-22 13:42:06'),(6893,0,0,'O','N','2526',4428,0,'2025-12-21','2026-03-20',4546,4546,4428,'N','','N','','','ER','Y','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:13:00','0000-00-00','','','','N','09:13:00','00:00:00','','','N','N',NULL,'O','N','Z01','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-12-21 09:13:05','','0000-00-00 00:00:00'),(6894,0,0,'O','N','2526',4429,0,'2025-12-21','2026-03-20',4547,4547,4429,'N','','N','','','ER','Y','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:16:00','0000-00-00','','','','N','09:16:00','00:00:00','','','N','N',NULL,'O','N','Z02','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-12-21 09:16:41','','0000-00-00 00:00:00'),(6895,0,0,'O','N','2526',4430,0,'2025-12-21','2026-03-20',4548,4548,4430,'N','','N','','','ER','Y','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:19:00','0000-00-00','','','','N','09:19:00','00:00:00','','','N','N',NULL,'O','N','Z03','','0000-00-00 00:00:00','6','09:19:08',0,'','drashti','2025-12-21 09:19:08','','0000-00-00 00:00:00'),(6896,0,0,'O','N','2526',3310,0,'2025-12-21','0000-00-00',3399,3399,3310,'N','','N','','','DRESSING','Y','N','D02','','N',90,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','00:00:00','','','N','N',NULL,'O','O','Z04','','0000-00-00 00:00:00','3','11:25:46',0,'','drashti','2025-12-21 11:25:46','','0000-00-00 00:00:00'),(6897,0,0,'O','N','2526',4431,0,'2025-12-21','2026-03-20',4549,4549,4431,'N','','N','','','ER','Y','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:07:00','0000-00-00','','','','N','12:07:00','00:00:00','','','N','N',NULL,'O','N','Z05','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-12-21 12:07:53','','0000-00-00 00:00:00'),(6898,0,0,'I','N','2526',0,315,'2025-12-21','2026-03-20',4550,4550,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','14:00:00','2025-12-23','','4','mo','N','14:00:00','11:05:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-21 20:26:45','mo','2025-12-23 12:22:07'),(6899,0,0,'I','N','2526',4172,316,'2025-12-21','2026-03-20',4285,4285,4172,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:00:00','2025-12-23','','1','mo','N','18:00:00','16:45:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-21 20:37:59','vishal','2025-12-23 16:56:43'),(6900,0,0,'I','N','2526',0,317,'2025-12-21','2026-03-20',3698,3698,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','Y','N','3','','','0000-00-00','','','',1,'N','N','N','19:00:00','0000-00-00','','','mo','N','19:00:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-21 20:52:07','mo','2025-12-23 17:01:30'),(6901,0,0,'O','N','2526',4432,0,'2025-12-22','2026-03-21',4551,4551,4432,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','08:58:00','0000-00-00','','','','N','08:58:00','00:00:00','','','N','Y',NULL,'O','N','Z01','','0000-00-00 00:00:00','5','11:11:54',0,'','reception','2025-12-22 08:58:19','','0000-00-00 00:00:00'),(6902,0,0,'O','N','2526',4433,0,'2025-12-22','2026-03-21',4552,4552,4433,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:01:00','0000-00-00','','','','N','09:01:00','12:47:38','','','N','Y',NULL,'O','N','Z02','','0000-00-00 00:00:00','5','11:11:54',0,'','reception','2025-12-22 09:01:33','drjayant','2025-12-22 12:47:38'),(6903,0,0,'O','N','2526',4419,0,'2025-12-22','0000-00-00',4536,4536,4419,'N','','N','','','ECG','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:11:00','0000-00-00','','','','N','09:11:00','12:29:50','','','N','Y',NULL,'O','O','Z03','','0000-00-00 00:00:00','4','09:11:35',0,'','reception','2025-12-22 09:11:35','drarchit','2025-12-22 12:29:50'),(6904,0,0,'O','N','2526',4434,0,'2025-12-22','2026-03-21',4553,4553,4434,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:13:00','0000-00-00','','','','N','09:13:00','00:00:00','','Y','N','Y',NULL,'O','N','Z04','','0000-00-00 00:00:00','4','09:13:23',0,'','reception','2025-12-22 09:13:23','drarchit','2025-12-22 18:41:14'),(6905,0,0,'O','N','2526',3755,0,'2025-12-22','0000-00-00',3858,3858,3755,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:15:00','0000-00-00','','','','N','09:15:00','00:00:00','','Y','N','Y',NULL,'O','O','Z05','','0000-00-00 00:00:00','4','09:15:55',0,'','reception','2025-12-22 09:15:55','drarchit','2025-12-22 18:41:26'),(6906,0,0,'O','N','2526',1288,0,'2025-12-22','0000-00-00',1327,1327,1288,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:18:00','0000-00-00','','','','N','09:18:00','11:22:51','','','N','Y',NULL,'O','O','Z06','','0000-00-00 00:00:00','3','09:18:15',0,'','reception','2025-12-22 09:18:15','drpratapsinh','2025-12-22 11:22:51'),(6907,0,0,'O','N','2526',4334,0,'2025-12-22','0000-00-00',4447,4447,4334,'N','','N','','','DRESSING','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:19:00','0000-00-00','','','','N','09:19:00','12:58:08','','','N','Y',NULL,'O','O','Z07','','0000-00-00 00:00:00','7','09:19:08',0,'','reception','2025-12-22 09:19:08','drridham','2025-12-22 12:58:08'),(6908,0,0,'O','N','2526',4435,0,'2025-12-22','2026-03-21',4554,4554,4435,'N','','N','','','ER','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:21:00','0000-00-00','','','','N','09:21:00','11:16:13','','','N','Y',NULL,'O','N','Z08','','0000-00-00 00:00:00','6','09:22:01',0,'','reception','2025-12-22 09:22:01','drsagar','2025-12-22 11:16:13'),(6909,0,0,'O','N','2526',4436,0,'2025-12-22','2026-03-21',4555,4555,4436,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:26:00','0000-00-00','','','','N','09:26:00','18:23:47','','','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','4','09:26:41',0,'','janvi','2025-12-22 09:26:41','drarchit','2025-12-22 18:23:47'),(6910,0,0,'O','N','2526',4437,0,'2025-12-22','2026-03-21',4556,4556,4437,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:29:00','0000-00-00','','','','N','09:29:00','18:53:10','','N','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','4','09:29:33',0,'','reception','2025-12-22 09:29:33','drarchit','2025-12-22 18:53:10'),(6911,0,0,'O','N','2526',3305,0,'2025-12-22','0000-00-00',3394,3394,3305,'N','','N','','','','','N','D02','','N',119,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:32:00','0000-00-00','','','','N','09:32:00','14:08:00','','','N','Y',NULL,'O','O','Z11','','0000-00-00 00:00:00','3','09:32:25',0,'','janvi','2025-12-22 09:32:25','drpratapsinh','2025-12-22 14:08:00'),(6912,0,0,'O','N','2526',4438,0,'2025-12-22','2026-03-21',4557,4557,4438,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:32:00','0000-00-00','','','','N','09:32:00','11:04:22','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','2','09:32:57',0,'','reception','2025-12-22 09:32:57','darshan','2025-12-22 11:04:22'),(6913,0,0,'I','N','2526',0,318,'2025-12-22','2026-03-21',4558,4558,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','N','N','','','','0000-00-00','','','',1,'N','N','N','02:00:00','0000-00-00','','','','N','02:00:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-22 09:37:42','','0000-00-00 00:00:00'),(6914,0,0,'O','N','2526',4439,0,'2025-12-22','2026-03-21',4559,4559,4439,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:41:00','0000-00-00','','','','N','09:41:00','10:46:03','','','N','Y',NULL,'O','N','E01','','0000-00-00 00:00:00','2','09:42:04',0,'','reception','2025-12-22 09:42:04','darshan','2025-12-22 10:46:03'),(6915,0,0,'O','N','2526',3302,0,'2025-12-22','0000-00-00',3391,3391,3302,'N','','N','','','FV','','N','D06','','N',4,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:43:00','0000-00-00','','','','N','09:43:00','10:59:13','','','N','Y',NULL,'O','O','E02','','0000-00-00 00:00:00','2','09:44:01',0,'','reception','2025-12-22 09:44:01','darshan','2025-12-22 10:59:13'),(6916,0,0,'O','N','2526',3803,0,'2025-12-22','0000-00-00',3908,3908,3803,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:45:00','0000-00-00','','','','N','09:45:00','12:15:39','','','N','Y',NULL,'O','O','Z13','','0000-00-00 00:00:00','2','09:45:42',0,'','reception','2025-12-22 09:45:42','darshan','2025-12-22 12:15:39'),(6917,0,0,'I','N','2526',0,319,'2025-12-22','2026-03-21',4560,4560,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','Y','1','','91307745','0000-00-00','','','',1,'N','N','N','09:00:00','2025-12-23','','1','mo','N','09:00:00','12:30:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-22 09:55:05','mo','2025-12-23 12:43:40'),(6918,0,0,'O','N','2526',4440,0,'2025-12-22','2026-03-21',4561,4561,4440,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:59:00','0000-00-00','','','','N','09:59:00','13:47:04','','N','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','2','09:59:58',0,'','reception','2025-12-22 09:59:58','darshan','2025-12-22 13:47:04'),(6919,0,0,'O','N','2526',4441,0,'2025-12-22','2026-03-21',4562,4562,4441,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:04:00','0000-00-00','','','','N','10:04:00','12:58:22','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','7','10:04:05',0,'','urvashi','2025-12-22 10:04:05','drridham','2025-12-22 12:58:22'),(6920,0,0,'O','N','2526',4442,0,'2025-12-22','2026-03-21',4563,4563,4442,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:05:00','0000-00-00','','','','N','10:05:00','13:50:28','','N','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','2','10:05:17',0,'','reception','2025-12-22 10:05:17','darshan','2025-12-22 13:50:28'),(6921,0,0,'O','N','2526',2041,0,'2025-12-22','0000-00-00',2096,2096,2041,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:06:00','0000-00-00','','','','N','10:06:00','11:31:35','','','N','Y',NULL,'O','O','I01','','0000-00-00 00:00:00','2','10:06:20',0,'','reception','2025-12-22 10:06:20','darshan','2025-12-22 11:31:35'),(6922,0,0,'I','N','2526',0,320,'2025-12-22','2026-03-21',4564,4564,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','N','N','','','','0000-00-00','','','',1,'N','N','N','10:00:00','2025-12-22','','1','mo','N','10:00:00','18:15:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-22 10:07:35','mo','2025-12-22 20:04:48'),(6923,0,0,'O','N','2526',4443,0,'2025-12-22','2026-03-21',4565,4565,4443,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:13:00','0000-00-00','','','','N','10:13:00','14:14:50','','','N','Y',NULL,'O','N','Z17','','0000-00-00 00:00:00','3','10:14:00',0,'','janvi','2025-12-22 10:14:00','drpratapsinh','2025-12-22 14:14:50'),(6924,0,0,'O','N','2526',3695,0,'2025-12-22','0000-00-00',3347,3347,3695,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','14:14:21','','','N','Y',NULL,'O','O','Z18','','0000-00-00 00:00:00','3','10:16:58',0,'','priyanshi','2025-12-22 10:16:58','drpratapsinh','2025-12-22 14:14:21'),(6925,0,0,'O','N','2526',4444,0,'2025-12-22','2026-03-21',4566,4566,4444,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:18:00','0000-00-00','','','','N','10:18:00','14:19:45','','N','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','2','10:18:36',0,'','reception','2025-12-22 10:18:36','darshan','2025-12-22 14:19:45'),(6926,0,0,'O','N','2526',4445,0,'2025-12-22','2026-03-21',4567,4567,4445,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:20:00','0000-00-00','','','','N','10:20:00','10:58:01','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','4','10:20:35',0,'','janvi','2025-12-22 10:20:35','drarchit','2025-12-22 10:58:01'),(6927,0,0,'O','N','2526',4446,0,'2025-12-22','2026-03-21',4568,4568,4446,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:22:00','0000-00-00','','','','N','10:22:00','11:42:11','','','N','Y',NULL,'O','N','Z21','','0000-00-00 00:00:00','4','10:22:45',0,'','janvi','2025-12-22 10:22:45','drarchit','2025-12-22 11:42:11'),(6928,0,0,'O','N','2526',4447,0,'2025-12-22','2026-03-21',4569,4569,4447,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:26:00','0000-00-00','','','','N','10:26:00','11:34:30','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','4','10:26:56',0,'','priyanshi','2025-12-22 10:26:56','drarchit','2025-12-22 11:34:30'),(6929,0,0,'O','N','2526',4448,0,'2025-12-22','2026-03-21',4570,4570,4448,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:30:00','0000-00-00','','','','N','10:30:00','11:27:22','','','N','Y',NULL,'O','N','Z23','','0000-00-00 00:00:00','5','11:11:54',0,'','priyanshi','2025-12-22 10:30:41','drjayant','2025-12-22 11:27:22'),(6930,0,0,'O','N','2526',4449,0,'2025-12-22','2026-03-21',4571,4571,4449,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:34:00','0000-00-00','','','','N','10:34:00','13:20:45','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','5','11:11:54',0,'','janvi','2025-12-22 10:34:50','drjayant','2025-12-22 13:20:45'),(6931,0,0,'O','N','2526',3975,0,'2025-12-22','0000-00-00',4082,4082,3975,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:39:00','0000-00-00','','','','N','10:39:00','11:38:36','','','N','Y',NULL,'O','O','Z25','','0000-00-00 00:00:00','4','10:39:32',0,'','priyanshi','2025-12-22 10:39:32','drarchit','2025-12-22 11:38:35'),(6932,0,0,'O','N','2526',2119,0,'2025-12-22','0000-00-00',2170,2170,2119,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:40:00','0000-00-00','','','','N','10:40:00','11:16:14','','','N','Y',NULL,'O','O','F01','','0000-00-00 00:00:00','2','10:40:15',0,'','reception','2025-12-22 10:40:15','darshan','2025-12-22 11:16:14'),(6933,0,0,'O','N','2526',4450,0,'2025-12-22','2026-03-21',4572,4572,4450,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:43:00','0000-00-00','','','','N','10:43:00','13:30:11','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','5','11:11:54',0,'','priyanshi','2025-12-22 10:43:34','drjayant','2025-12-22 13:30:11'),(6934,0,0,'O','N','2526',4451,0,'2025-12-22','2026-03-21',4573,4573,4451,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:44:00','0000-00-00','','','','N','10:44:00','14:28:54','','N','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','2','10:44:25',0,'','reception','2025-12-22 10:44:25','darshan','2025-12-22 14:28:54'),(6935,0,0,'O','N','2526',4119,0,'2025-12-22','0000-00-00',3350,3350,4119,'N','','N','','','FOLLOWUP C','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:45:00','0000-00-00','','','','N','10:45:00','14:07:47','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','3','10:45:16',0,'','drashti','2025-12-22 10:45:16','drpratapsinh','2025-12-22 14:07:47'),(6936,0,0,'O','N','2526',4025,0,'2025-12-22','0000-00-00',4132,4132,4025,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','12:58:35','','','N','Y',NULL,'O','O','Z29','','0000-00-00 00:00:00','3','10:46:27',0,'','reception','2025-12-22 10:46:27','drpratapsinh','2025-12-22 12:58:35'),(6937,0,0,'O','N','2526',4452,0,'2025-12-22','2026-03-21',4574,4574,4452,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:46:00','0000-00-00','','','','N','10:46:00','11:14:02','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','4','10:46:35',0,'','drashti','2025-12-22 10:46:35','drarchit','2025-12-22 11:14:02'),(6938,0,0,'O','N','2526',2133,0,'2025-12-22','0000-00-00',2184,2184,2133,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:47:00','0000-00-00','','','','N','10:47:00','11:27:04','','','N','Y',NULL,'O','O','G02','','0000-00-00 00:00:00','2','10:47:36',0,'','reception','2025-12-22 10:47:36','darshan','2025-12-22 11:27:04'),(6939,0,0,'O','N','2526',4453,0,'2025-12-22','2026-03-21',4575,4575,4453,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:47:00','0000-00-00','','','','N','10:47:00','19:04:26','','N','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','4','10:47:53',0,'','drashti','2025-12-22 10:47:53','drarchit','2025-12-22 19:04:26'),(6940,0,0,'O','N','2526',4120,0,'2025-12-22','0000-00-00',4232,4232,4120,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','13:04:03','','N','N','Y',NULL,'O','O','Z30','','0000-00-00 00:00:00','2','10:54:16',0,'','reception','2025-12-22 10:54:16','darshan','2025-12-22 13:04:03'),(6941,0,0,'O','N','2526',4454,0,'2025-12-22','2026-03-21',4576,4576,4454,'N','','N','','','ER','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:54:00','0000-00-00','','','','N','10:54:00','11:05:42','','','N','Y',NULL,'O','N','Z31','','0000-00-00 00:00:00','4','10:54:58',0,'','janvi','2025-12-22 10:54:58','drarchit','2025-12-22 11:05:42'),(6942,0,0,'O','N','2526',3928,0,'2025-12-22','0000-00-00',4036,4036,3928,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:55:00','0000-00-00','','','','N','10:55:00','12:11:40','','','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','2','10:55:17',0,'','reception','2025-12-22 10:55:17','darshan','2025-12-22 12:11:40'),(6943,0,0,'O','N','2526',4455,0,'2025-12-22','2026-03-21',4577,4577,4455,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:56:00','0000-00-00','','','','N','10:56:00','12:12:46','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','5','11:11:54',0,'','drashti','2025-12-22 10:56:19','drjayant','2025-12-22 12:12:46'),(6944,0,0,'O','N','2526',3140,0,'2025-12-22','0000-00-00',3226,3226,3140,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','11:17:45','','','N','Y',NULL,'O','O','Z34','','0000-00-00 00:00:00','5','11:11:54',0,'','drashti','2025-12-22 10:59:22','drjayant','2025-12-22 11:17:45'),(6945,0,0,'O','N','2526',4088,0,'2025-12-22','0000-00-00',4198,4198,4088,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:01:00','0000-00-00','','','','N','11:01:00','13:00:25','','N','N','Y',NULL,'O','O','H01','','0000-00-00 00:00:00','4','11:01:11',0,'','reception','2025-12-22 11:01:11','drarchit','2025-12-22 13:00:25'),(6946,0,0,'O','N','2526',4456,0,'2025-12-22','2026-03-21',4578,4578,4456,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:02:00','0000-00-00','','','','N','11:02:00','18:45:06','','N','N','Y',NULL,'O','N','Z35','','0000-00-00 00:00:00','2','11:02:49',0,'','reception','2025-12-22 11:02:49','darshan','2025-12-22 18:45:06'),(6947,0,0,'O','N','2526',3228,0,'2025-12-22','0000-00-00',3314,3314,3228,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','12:36:06','','','N','Y',NULL,'O','O','Z36','','0000-00-00 00:00:00','2','11:04:47',0,'','drashti','2025-12-22 11:04:47','darshan','2025-12-22 12:36:06'),(6948,0,0,'O','N','2526',3891,0,'2025-12-22','0000-00-00',4000,4000,3891,'N','','N','','','FOLLOWUPV','','N','D06','','N',279,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:09:00','0000-00-00','','','','N','11:09:00','11:50:05','','','N','Y',NULL,'O','O','H02','','0000-00-00 00:00:00','2','11:09:04',0,'','drashti','2025-12-22 11:09:04','darshan','2025-12-22 11:50:05'),(6949,0,0,'O','N','2526',4457,0,'2025-12-22','2026-03-21',4579,4579,4457,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:10:00','0000-00-00','','','','N','11:10:00','12:48:09','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','11:10:23',0,'','reception','2025-12-22 11:10:23','darshan','2025-12-22 12:48:09'),(6950,0,0,'O','N','2526',4458,0,'2025-12-22','2026-03-21',4580,4580,4458,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:13:00','0000-00-00','','','','N','11:13:00','12:51:34','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','2','11:13:08',0,'','reception','2025-12-22 11:13:08','darshan','2025-12-22 12:51:34'),(6951,0,0,'O','N','2526',2994,0,'2025-12-22','0000-00-00',3072,3072,2994,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','12:58:43','','','N','Y',NULL,'O','O','Z39','','0000-00-00 00:00:00','7','11:14:50',0,'','manshi','2025-12-22 11:14:50','drridham','2025-12-22 12:58:43'),(6952,0,0,'O','N','2526',4459,0,'2025-12-22','2026-03-21',4581,4581,4459,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:15:00','0000-00-00','','','','N','11:15:00','14:55:04','','N','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','2','11:16:14',0,'','drashti','2025-12-22 11:15:56','darshan','2025-12-22 14:55:04'),(6953,0,0,'O','N','2526',4460,0,'2025-12-22','2026-03-21',4582,4582,4460,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','13:00:43','','','N','Y',NULL,'O','N','Z41','','0000-00-00 00:00:00','2','11:16:14',0,'','janvi','2025-12-22 11:16:08','darshan','2025-12-22 13:00:43'),(6954,0,0,'O','N','2526',4461,0,'2025-12-22','2026-03-21',4583,4583,4461,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','13:07:09','','','N','Y',NULL,'O','N','Z42','','0000-00-00 00:00:00','2','11:31:35',0,'','reception','2025-12-22 11:18:11','darshan','2025-12-22 13:07:09'),(6955,0,0,'O','N','2526',4462,0,'2025-12-22','2026-03-21',4584,4584,4462,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','14:14:01','','','N','Y',NULL,'O','N','Z43','','0000-00-00 00:00:00','3','11:18:34',0,'','janvi','2025-12-22 11:18:34','drpratapsinh','2025-12-22 14:14:01'),(6956,0,0,'O','N','2526',2245,0,'2025-12-22','0000-00-00',2301,2301,2245,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:23:00','0000-00-00','','','','N','11:23:00','11:46:25','','','N','Y',NULL,'O','O','Z44','','0000-00-00 00:00:00','6','11:23:34',0,'','manshi','2025-12-22 11:23:34','drsagar','2025-12-22 11:46:25'),(6957,0,0,'O','N','2526',208,0,'2025-12-22','0000-00-00',221,221,208,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:25:00','0000-00-00','','','','N','11:25:00','11:47:05','','','N','Y',NULL,'O','O','H03','','0000-00-00 00:00:00','2','11:31:35',0,'','reception','2025-12-22 11:25:40','darshan','2025-12-22 11:47:05'),(6958,0,0,'O','N','2526',4463,0,'2025-12-22','2026-03-21',4585,4585,4463,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','13:13:24','','','N','Y',NULL,'O','N','Z45','','0000-00-00 00:00:00','2','11:31:35',0,'','drashti','2025-12-22 11:26:32','darshan','2025-12-22 13:13:24'),(6959,0,0,'O','N','2526',4464,0,'2025-12-22','2026-03-21',4586,4586,4464,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:26:00','0000-00-00','','','','N','11:26:00','14:33:04','','N','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','2','11:31:35',0,'','reception','2025-12-22 11:26:42','darshan','2025-12-22 14:33:04'),(6960,0,0,'O','N','2526',4465,0,'2025-12-22','2026-03-21',4587,4587,4465,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','12:16:36','','','N','Y',NULL,'O','N','Z46','','0000-00-00 00:00:00','4','11:28:06',0,'','janvi','2025-12-22 11:28:06','drarchit','2025-12-22 12:16:36'),(6961,0,0,'I','N','2526',0,321,'2025-12-21','2026-03-20',4588,4588,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','23:00:00','2025-12-22','','4','mo','N','23:00:00','18:45:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-22 11:33:06','mo','2025-12-22 19:00:15'),(6962,0,0,'O','N','2526',4466,0,'2025-12-22','2026-03-21',4589,4589,4466,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:34:00','0000-00-00','','','','N','11:34:00','15:13:01','','N','N','Y',NULL,'O','N','Z47','','0000-00-00 00:00:00','2','12:15:39',0,'','drashti','2025-12-22 11:34:47','darshan','2025-12-22 15:13:01'),(6963,0,0,'O','N','2526',4467,0,'2025-12-22','2026-03-21',3824,3824,4467,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','18:38:59','','','N','Y',NULL,'O','N','Z48','','0000-00-00 00:00:00','5','11:36:28',0,'','janvi','2025-12-22 11:36:28','drjayant','2025-12-22 18:38:59'),(6964,0,0,'O','N','2526',3697,0,'2025-12-22','0000-00-00',2834,2834,3697,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','12:39:54','','N','N','Y',NULL,'O','O','Z49','','0000-00-00 00:00:00','4','11:36:31',0,'','drashti','2025-12-22 11:36:31','drarchit','2025-12-22 12:39:54'),(6965,0,0,'O','N','2526',2880,0,'2025-12-22','0000-00-00',2955,2955,2880,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:37:00','0000-00-00','','','','N','11:37:00','12:40:23','','','N','Y',NULL,'O','O','I02','','0000-00-00 00:00:00','2','12:15:39',0,'','reception','2025-12-22 11:38:00','darshan','2025-12-22 12:40:23'),(6966,0,0,'O','N','2526',4468,0,'2025-12-22','2026-03-21',4590,4590,4468,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:41:00','0000-00-00','','','','N','11:41:00','15:22:12','','N','N','Y',NULL,'O','N','Z50','','0000-00-00 00:00:00','2','12:15:39',0,'','reception','2025-12-22 11:41:05','darshan','2025-12-22 15:22:12'),(6967,0,0,'O','N','2526',4469,0,'2025-12-22','2026-03-21',4591,4591,4469,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:43:00','0000-00-00','','','','N','11:43:00','12:51:39','','','N','Y',NULL,'O','N','Z51','','0000-00-00 00:00:00','6','11:43:09',0,'','manshi','2025-12-22 11:43:09','drsagar','2025-12-22 12:51:39'),(6968,0,0,'O','N','2526',4470,0,'2025-12-22','2026-03-21',4592,4592,4470,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','12:40:11','','','N','Y',NULL,'O','N','Z52','','0000-00-00 00:00:00','4','11:48:45',0,'','drashti','2025-12-22 11:48:45','drarchit','2025-12-22 12:40:11'),(6969,0,0,'I','N','2526',0,322,'2025-12-22','2026-03-21',4593,4593,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','N','N','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','mo','N','11:40:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-22 11:52:42','mo','2025-12-23 02:25:01'),(6970,0,0,'O','N','2526',4471,0,'2025-12-22','2026-03-21',4594,4594,4471,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:56:00','0000-00-00','','','','N','11:56:00','14:14:54','','','N','Y',NULL,'O','N','Z53','','0000-00-00 00:00:00','2','12:15:39',0,'','reception','2025-12-22 11:56:28','darshan','2025-12-22 14:14:54'),(6971,0,0,'O','N','2526',4472,0,'2025-12-22','2026-03-21',4595,4595,4472,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:58:00','0000-00-00','','','','N','11:58:00','12:39:37','','','N','Y',NULL,'O','N','H05','','0000-00-00 00:00:00','4','11:58:52',0,'','reception','2025-12-22 11:58:52','drarchit','2025-12-22 12:39:37'),(6972,0,0,'O','N','2526',4473,0,'2025-12-22','2026-03-21',4596,4596,4473,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:00:00','0000-00-00','','','','N','12:00:00','14:39:31','','','N','Y',NULL,'O','N','Z54','','0000-00-00 00:00:00','2','12:15:39',0,'','reception','2025-12-22 12:00:47','darshan','2025-12-22 14:39:31'),(6973,0,0,'O','N','2526',4474,0,'2025-12-22','2026-03-21',4597,4597,4474,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','14:54:15','','','N','Y',NULL,'O','N','Z55','','0000-00-00 00:00:00','2','12:15:39',0,'','reception','2025-12-22 12:09:32','darshan','2025-12-22 14:54:15'),(6974,0,0,'I','N','2526',0,323,'2025-12-22','2026-03-21',4598,4598,0,'N','','N','','','','N','N','D27','','N',0,'','5',0,'','','','','N','','P','N','N','','','','0000-00-00','','','',1,'N','N','N','12:02:00','0000-00-00','','','','N','12:02:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-22 12:12:07','','0000-00-00 00:00:00'),(6975,0,0,'O','N','2526',3819,0,'2025-12-22','0000-00-00',3349,3349,3819,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:13:00','0000-00-00','','','','N','12:13:00','12:58:15','','','N','Y',NULL,'O','O','Z56','','0000-00-00 00:00:00','3','12:13:44',0,'','janvi','2025-12-22 12:13:44','drpratapsinh','2025-12-22 12:58:15'),(6976,0,0,'O','N','2526',4475,0,'2025-12-22','2026-03-21',4599,4599,4475,'N','','N','','','','','N','D02','','N',304,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:19:00','0000-00-00','','','','N','12:19:00','14:06:16','','','N','Y',NULL,'O','N','Z57','','0000-00-00 00:00:00','3','12:19:15',0,'','janvi','2025-12-22 12:19:15','drpratapsinh','2025-12-22 14:06:16'),(6977,0,0,'O','N','2526',4476,0,'2025-12-22','2026-03-21',4189,4189,4476,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:22:00','0000-00-00','','','','N','12:22:00','14:14:35','','','N','Y',NULL,'O','N','Z58','','0000-00-00 00:00:00','3','12:22:15',0,'','janvi','2025-12-22 12:22:15','drpratapsinh','2025-12-22 14:14:35'),(6978,0,0,'I','N','2526',0,324,'2025-12-22','2026-03-21',4600,4600,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','N','N','','','','0000-00-00','','','',1,'N','N','N','12:19:00','2025-12-22','','1','mo','N','12:19:00','19:40:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-22 12:22:55','mo','2025-12-22 20:24:47'),(6979,0,0,'O','N','2526',4477,0,'2025-12-22','2026-03-21',4601,4601,4477,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','15:27:05','','N','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','13:00:43',0,'','reception','2025-12-22 12:35:07','darshan','2025-12-22 15:27:05'),(6980,0,0,'O','N','2526',4478,0,'2025-12-22','2026-03-21',4602,4602,4478,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:37:00','0000-00-00','','','','N','12:37:00','15:20:27','','N','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','13:00:43',0,'','reception','2025-12-22 12:37:09','darshan','2025-12-22 15:20:27'),(6981,0,0,'O','N','2526',4479,0,'2025-12-22','2026-03-21',4603,4603,4479,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:40:00','0000-00-00','','','','N','12:40:00','18:35:41','','','N','Y',NULL,'O','N','Z59','','0000-00-00 00:00:00','4','12:40:14',0,'','priyanshi','2025-12-22 12:40:14','drarchit','2025-12-22 18:35:41'),(6982,0,0,'O','N','2526',4480,0,'2025-12-22','2026-03-21',4604,4604,4480,'N','','N','','','NV','','N','D06','','N',305,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:00:00','0000-00-00','','','','N','13:00:00','18:33:07','','','N','Y',NULL,'O','N','K01','','0000-00-00 00:00:00','2','13:00:43',0,'','priyanshi','2025-12-22 13:00:36','darshan','2025-12-22 18:33:07'),(6983,0,0,'O','N','2526',4481,0,'2025-12-22','2026-03-21',4605,4605,4481,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:07:00','0000-00-00','','','','N','13:07:00','00:00:00','','','N','N',NULL,'O','N','Z60','','0000-00-00 00:00:00','4','13:07:16',0,'','reception','2025-12-22 13:07:16','','0000-00-00 00:00:00'),(6984,0,0,'O','N','2526',4482,0,'2025-12-22','2026-03-21',4606,4606,4482,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:10:00','0000-00-00','','','','N','13:10:00','11:40:05','','','N','Y',NULL,'O','N','Z61','','0000-00-00 00:00:00','2','13:13:24',0,'','reception','2025-12-22 13:10:58','darshan','2025-12-23 11:40:05'),(6985,0,0,'O','N','2526',4483,0,'2025-12-22','2026-03-21',4607,4607,4483,'N','','N','','','','','N','D02','','N',306,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:26:00','0000-00-00','','','','N','13:26:00','14:12:57','','','N','Y',NULL,'O','N','Z62','','0000-00-00 00:00:00','3','13:26:02',0,'','priyanshi','2025-12-22 13:26:02','drpratapsinh','2025-12-22 14:12:56'),(6986,0,0,'O','N','2526',4484,0,'2025-12-22','2026-03-21',4608,4608,4484,'N','','N','','','','','N','D02','','N',51,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:33:00','0000-00-00','','','','N','13:33:00','00:00:00','','','N','Y',NULL,'O','N','Z63','','0000-00-00 00:00:00','3','13:33:52',0,'','janvi','2025-12-22 13:33:52','','0000-00-00 00:00:00'),(6987,0,0,'O','N','2526',4485,0,'2025-12-22','2026-03-21',4609,4609,4485,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:56:00','0000-00-00','','','','N','13:56:00','14:17:26','','','N','Y',NULL,'O','N','Z64','','0000-00-00 00:00:00','3','13:56:15',0,'','janvi','2025-12-22 13:56:15','drpratapsinh','2025-12-22 14:17:26'),(6988,0,0,'O','N','2526',3791,0,'2025-12-22','0000-00-00',3895,3895,3791,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','14:17:00','0000-00-00','','','','N','14:17:00','00:00:00','','','N','N',NULL,'O','O','Z65','','0000-00-00 00:00:00','3','14:17:41',0,'','shweta','2025-12-22 14:17:41','','0000-00-00 00:00:00'),(6989,0,0,'O','N','2526',4486,0,'2025-12-22','2026-03-21',4610,4610,4486,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','14:32:00','0000-00-00','','','','N','14:32:00','00:00:00','','','N','N',NULL,'O','N','Z66','','0000-00-00 00:00:00','3','14:32:33',0,'','drashti','2025-12-22 14:32:33','','0000-00-00 00:00:00'),(6990,0,0,'O','N','2526',3962,0,'2025-12-22','0000-00-00',4069,4069,3962,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:20:00','0000-00-00','','','','N','16:20:00','17:19:36','','','N','Y',NULL,'O','O','Z67','','0000-00-00 00:00:00','2','16:20:56',0,'','reception','2025-12-22 16:20:56','darshan','2025-12-22 17:19:36'),(6991,0,0,'I','N','2526',0,325,'2025-12-22','2026-03-21',4611,4611,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','N','N','','','','0000-00-00','','','',1,'N','N','N','16:20:00','0000-00-00','','','mo','N','16:20:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-22 16:25:05','mo','2025-12-23 02:07:46'),(6992,0,0,'O','N','2526',1969,0,'2025-12-22','0000-00-00',2017,2017,1969,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:25:00','0000-00-00','','','','N','16:25:00','17:11:38','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','16:25:26',0,'','reception','2025-12-22 16:25:26','darshan','2025-12-22 17:11:38'),(6993,0,0,'O','N','2526',80,0,'2025-12-22','0000-00-00',91,91,80,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:47:00','0000-00-00','','','','N','16:47:00','17:14:11','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','16:47:16',0,'','reception','2025-12-22 16:47:16','darshan','2025-12-22 17:14:11'),(6994,0,0,'O','N','2526',3992,0,'2025-12-22','0000-00-00',4099,4099,3992,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:48:00','0000-00-00','','','','N','16:48:00','17:16:46','','','N','Y',NULL,'O','O','L03','','0000-00-00 00:00:00','2','16:48:23',0,'','reception','2025-12-22 16:48:23','darshan','2025-12-22 17:16:46'),(6995,0,0,'O','N','2526',4480,0,'2025-12-22','0000-00-00',4604,4604,4480,'N','','N','','','REPORTS','','N','D06','','N',305,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:49:00','0000-00-00','','','','N','16:49:00','18:37:43','','N','N','Y',NULL,'O','O','Y01','','0000-00-00 00:00:00','2','16:49:26',0,'','reception','2025-12-22 16:49:26','darshan','2025-12-22 18:37:43'),(6996,0,0,'O','N','2526',4456,0,'2025-12-22','0000-00-00',4578,4578,4456,'N','','N','','','REPORTS','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:50:00','0000-00-00','','','','N','16:50:00','18:57:01','','N','N','Y',NULL,'O','O','Y02','','0000-00-00 00:00:00','2','16:51:00',0,'','reception','2025-12-22 16:51:00','darshan','2025-12-22 18:57:01'),(6997,0,0,'O','N','2526',1929,0,'2025-12-22','0000-00-00',1977,1977,1929,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:52:00','0000-00-00','','','','N','16:52:00','17:41:07','','','N','Y',NULL,'O','O','Z68','','0000-00-00 00:00:00','2','16:52:41',0,'','reception','2025-12-22 16:52:41','darshan','2025-12-22 17:41:07'),(6998,0,0,'O','N','2526',4229,0,'2025-12-22','0000-00-00',4344,4344,4229,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:53:00','0000-00-00','','','','N','16:53:00','18:09:41','','','N','Y',NULL,'O','O','Z69','','0000-00-00 00:00:00','5','16:53:53',0,'','drashti','2025-12-22 16:53:53','drjayant','2025-12-22 18:09:41'),(6999,0,0,'O','N','2526',1841,0,'2025-12-22','0000-00-00',1887,1887,1841,'N','','N','','','FE','','N','D06','','N',33,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:56:00','0000-00-00','','','','N','16:56:00','18:14:42','','','N','Y',NULL,'O','O','Z70','','0000-00-00 00:00:00','2','16:56:45',0,'','reception','2025-12-22 16:56:45','darshan','2025-12-22 18:14:42'),(7000,0,0,'O','N','2526',3995,0,'2025-12-22','0000-00-00',4102,4102,3995,'N','','N','','','FV','','N','D06','','N',116,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:04:00','0000-00-00','','','','N','17:04:00','17:44:02','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','17:04:59',0,'','reception','2025-12-22 17:04:59','darshan','2025-12-22 17:44:02'),(7001,0,0,'O','N','2526',3850,0,'2025-12-22','0000-00-00',3959,3959,3850,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:07:00','0000-00-00','','','','N','17:07:00','00:00:00','','','N','N',NULL,'O','O','Z71','','0000-00-00 00:00:00','3','17:07:31',0,'','reception','2025-12-22 17:07:31','','0000-00-00 00:00:00'),(7002,0,0,'O','N','2526',4487,0,'2025-12-22','2026-03-21',4612,4612,4487,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:09:00','0000-00-00','','','','N','17:09:00','19:11:22','','N','N','Y',NULL,'O','N','L05','','0000-00-00 00:00:00','2','17:09:48',0,'','reception','2025-12-22 17:09:48','darshan','2025-12-22 19:11:22'),(7003,0,0,'O','N','2526',3887,0,'2025-12-22','0000-00-00',3996,3996,3887,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:14:00','0000-00-00','','','','N','17:14:00','00:00:00','','','N','N',NULL,'O','O','Z72','','0000-00-00 00:00:00','3','17:14:14',0,'','drashti','2025-12-22 17:14:13','','0000-00-00 00:00:00'),(7004,0,0,'O','N','2526',3749,0,'2025-12-22','0000-00-00',3852,3852,3749,'N','','N','','','FC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:16:00','0000-00-00','','','','N','17:16:00','00:00:00','','','N','N',NULL,'O','O','Z73','','0000-00-00 00:00:00','3','17:16:33',0,'','reception','2025-12-22 17:16:33','','0000-00-00 00:00:00'),(7005,0,0,'O','N','2526',4488,0,'2025-12-22','2026-03-21',4613,4613,4488,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:16:00','0000-00-00','','','','N','17:16:00','18:30:21','','','N','Y',NULL,'O','N','Z74','','0000-00-00 00:00:00','4','17:16:54',0,'','drashti','2025-12-22 17:16:54','drarchit','2025-12-22 18:30:21'),(7006,0,0,'O','N','2526',4489,0,'2025-12-22','2026-03-21',4614,4614,4489,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','19:29:57','','N','N','Y',NULL,'O','N','Z75','','0000-00-00 00:00:00','2','17:20:12',0,'','reception','2025-12-22 17:20:12','darshan','2025-12-22 19:29:57'),(7007,0,0,'O','N','2526',4490,0,'2025-12-22','2026-03-21',4615,4615,4490,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:34:00','0000-00-00','','','','N','17:34:00','18:05:20','','','N','Y',NULL,'O','N','Z76','','0000-00-00 00:00:00','2','17:34:33',0,'','reception','2025-12-22 17:34:33','darshan','2025-12-22 18:05:20'),(7008,0,0,'O','N','2526',2302,0,'2025-12-22','0000-00-00',2359,2359,2302,'N','','N','','','FOLLOWUP V','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:37:00','0000-00-00','','','','N','17:37:00','17:54:20','','','N','Y',NULL,'O','O','L06','','0000-00-00 00:00:00','2','17:37:47',0,'','janvi','2025-12-22 17:37:47','darshan','2025-12-22 17:54:20'),(7009,0,0,'O','N','2526',4491,0,'2025-12-22','2026-03-21',4616,4616,4491,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:40:00','0000-00-00','','','','N','17:40:00','18:17:45','','','N','Y',NULL,'O','N','Z77','','0000-00-00 00:00:00','2','17:40:04',0,'','reception','2025-12-22 17:40:04','darshan','2025-12-22 18:17:45'),(7010,0,0,'I','N','2526',0,326,'2025-12-22','2026-03-21',4617,4617,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','Y','12','','','0000-00-00','','','',1,'N','N','N','17:30:00','0000-00-00','','','mo','N','17:30:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-22 17:40:16','mo','2025-12-23 14:41:50'),(7011,0,0,'O','N','2526',4492,0,'2025-12-22','2026-03-21',4618,4618,4492,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','18:55:03','','','N','Y',NULL,'O','N','Z78','','0000-00-00 00:00:00','7','17:42:31',0,'','manshi','2025-12-22 17:42:31','drridham','2025-12-22 18:55:03'),(7012,0,0,'O','N','2526',4016,0,'2025-12-22','0000-00-00',4124,4124,4016,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:47:00','0000-00-00','','','','N','17:47:00','18:19:07','','','N','Y',NULL,'O','O','Z79','','0000-00-00 00:00:00','5','17:47:05',0,'','reception','2025-12-22 17:47:05','drjayant','2025-12-22 18:19:07'),(7013,0,0,'O','N','2526',2827,0,'2025-12-22','0000-00-00',2898,2898,2827,'N','','N','','','','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:47:00','0000-00-00','','','','N','17:47:00','18:41:00','','','N','Y',NULL,'O','O','Z80','','0000-00-00 00:00:00','4','17:47:37',0,'','janvi','2025-12-22 17:47:37','drarchit','2025-12-22 18:41:00'),(7014,0,0,'O','N','2526',4078,0,'2025-12-22','0000-00-00',4187,4187,4078,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:49:00','0000-00-00','','','','N','17:49:00','18:36:43','','','N','Y',NULL,'O','O','Z81','','0000-00-00 00:00:00','3','17:49:27',0,'','janvi','2025-12-22 17:49:26','drpratapsinh','2025-12-22 18:36:43'),(7015,0,0,'O','N','2526',4493,0,'2025-12-22','2026-03-21',4619,4619,4493,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:50:00','0000-00-00','','','','N','17:50:00','18:24:58','','','N','Y',NULL,'O','N','Z82','','0000-00-00 00:00:00','5','17:50:19',0,'','drashti','2025-12-22 17:50:19','drjayant','2025-12-22 18:24:58'),(7016,0,0,'O','N','2526',1916,0,'2025-12-22','0000-00-00',1964,1964,1916,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','18:20:45','','','N','Y',NULL,'O','O','L07','','0000-00-00 00:00:00','2','17:51:08',0,'','reception','2025-12-22 17:51:08','darshan','2025-12-22 18:20:45'),(7017,0,0,'O','N','2526',4494,0,'2025-12-22','2026-03-21',4620,4620,4494,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:51:00','0000-00-00','','','','N','17:51:00','00:00:00','','','N','N',NULL,'O','N','Z83','','0000-00-00 00:00:00','3','17:51:28',0,'','janvi','2025-12-22 17:51:28','','0000-00-00 00:00:00'),(7018,0,0,'O','N','2526',2542,0,'2025-12-22','0000-00-00',2599,2599,2542,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:57:00','0000-00-00','','','','N','17:57:00','00:00:00','','','N','N',NULL,'O','O','Z84','','0000-00-00 00:00:00','3','17:57:47',0,'','janvi','2025-12-22 17:57:47','','0000-00-00 00:00:00'),(7019,0,0,'O','N','2526',2175,0,'2025-12-22','0000-00-00',2230,2230,2175,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:02:00','0000-00-00','','','','N','18:02:00','19:01:41','','','N','Y',NULL,'O','O','Z85','','0000-00-00 00:00:00','7','18:02:11',0,'','manshi','2025-12-22 18:02:11','drridham','2025-12-22 19:01:41'),(7020,0,0,'O','N','2526',4495,0,'2025-12-22','2026-03-21',4621,4621,4495,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:05:00','0000-00-00','','','','N','18:05:00','20:01:37','','N','N','Y',NULL,'O','N','L08','','0000-00-00 00:00:00','2','18:05:04',0,'','reception','2025-12-22 18:05:04','darshan','2025-12-22 20:01:37'),(7021,0,0,'O','N','2526',2367,0,'2025-12-22','0000-00-00',2422,2422,2367,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:07:00','0000-00-00','','','','N','18:07:00','18:36:43','','','N','Y',NULL,'O','O','Z86','','0000-00-00 00:00:00','6','18:07:47',0,'','manshi','2025-12-22 18:07:47','drsagar','2025-12-22 18:36:43'),(7022,0,0,'O','N','2526',4496,0,'2025-12-22','2026-03-21',4622,4622,4496,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:12:00','0000-00-00','','','','N','18:12:00','00:00:00','','','N','N',NULL,'O','N','Z87','','0000-00-00 00:00:00','3','18:12:24',0,'','reception','2025-12-22 18:12:24','','0000-00-00 00:00:00'),(7023,0,0,'O','N','2526',3730,0,'2025-12-22','0000-00-00',3833,3833,3730,'N','','N','','','','','N','D02','','N',267,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:13:00','0000-00-00','','','','N','18:13:00','19:42:13','','','N','Y',NULL,'O','O','Z88','','0000-00-00 00:00:00','3','18:13:31',0,'','drashti','2025-12-22 18:13:31','drpratapsinh','2025-12-22 19:42:13'),(7024,0,0,'O','N','2526',4497,0,'2025-12-22','2026-03-21',4623,4623,4497,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:13:00','0000-00-00','','','','N','18:13:00','18:36:18','','','N','Y',NULL,'O','N','Z89','','0000-00-00 00:00:00','6','18:13:32',0,'','manshi','2025-12-22 18:13:32','drsagar','2025-12-22 18:36:18'),(7025,0,0,'O','N','2526',3900,0,'2025-12-22','0000-00-00',4008,4008,3900,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:14:00','0000-00-00','','','','N','18:14:00','00:00:00','','','N','N',NULL,'O','O','Z90','','0000-00-00 00:00:00','3','18:14:17',0,'','janvi','2025-12-22 18:14:17','','0000-00-00 00:00:00'),(7026,0,0,'O','N','2526',3720,0,'2025-12-22','0000-00-00',3721,3721,3720,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:15:00','0000-00-00','','','','N','18:15:00','18:36:07','','','N','Y',NULL,'O','O','Z91','','0000-00-00 00:00:00','3','18:15:30',0,'','janvi','2025-12-22 18:15:30','drpratapsinh','2025-12-22 18:36:07'),(7027,0,0,'O','N','2526',4498,0,'2025-12-22','2026-03-21',4624,4624,4498,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:17:00','0000-00-00','','','','N','18:17:00','18:46:43','','','N','Y',NULL,'O','N','Z92','','0000-00-00 00:00:00','5','18:17:48',0,'','drashti','2025-12-22 18:17:48','drjayant','2025-12-22 18:46:43'),(7028,0,0,'O','N','2526',4065,0,'2025-12-22','0000-00-00',4175,4175,4065,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:22:00','0000-00-00','','','','N','18:22:00','18:37:07','','','N','Y',NULL,'O','O','Z93','','0000-00-00 00:00:00','6','18:22:01',0,'','manshi','2025-12-22 18:22:01','drsagar','2025-12-22 18:37:07'),(7029,0,0,'O','N','2526',4499,0,'2025-12-22','2026-03-21',4625,4625,4499,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:22:00','0000-00-00','','','','N','18:22:00','00:00:00','','','N','N',NULL,'O','N','Z94','','0000-00-00 00:00:00','3','18:22:05',0,'','drashti','2025-12-22 18:22:05','','0000-00-00 00:00:00'),(7030,0,0,'O','N','2526',3732,0,'2025-12-22','0000-00-00',3835,3835,3732,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:23:00','0000-00-00','','','','N','18:23:00','18:48:25','','','N','Y',NULL,'O','O','L09','','0000-00-00 00:00:00','2','18:23:26',0,'','reception','2025-12-22 18:23:26','darshan','2025-12-22 18:48:25'),(7031,0,0,'O','N','2526',3315,0,'2025-12-22','0000-00-00',3407,3407,3315,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:24:00','0000-00-00','','','','N','18:24:00','18:57:10','','','N','Y',NULL,'O','O','L10','','0000-00-00 00:00:00','4','18:24:05',0,'','drashti','2025-12-22 18:24:05','drarchit','2025-12-22 18:57:10'),(7032,0,0,'O','N','2526',4033,0,'2025-12-22','0000-00-00',4140,4140,4033,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:25:00','0000-00-00','','','','N','18:25:00','00:00:00','','','N','N',NULL,'O','O','Z95','','0000-00-00 00:00:00','3','18:25:48',0,'','reception','2025-12-22 18:25:48','','0000-00-00 00:00:00'),(7033,0,0,'O','N','2526',3993,0,'2025-12-22','0000-00-00',4100,4100,3993,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:26:00','0000-00-00','','','','N','18:26:00','18:51:08','','','N','Y',NULL,'O','O','L11','','0000-00-00 00:00:00','2','18:26:38',0,'','reception','2025-12-22 18:26:38','darshan','2025-12-22 18:51:08'),(7034,0,0,'O','N','2526',4500,0,'2025-12-22','2026-03-21',4626,4626,4500,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','19:02:18','','','N','Y',NULL,'O','N','L12','','0000-00-00 00:00:00','4','18:32:03',0,'','drashti','2025-12-22 18:32:02','drarchit','2025-12-22 19:02:18'),(7035,0,0,'O','N','2526',4501,0,'2025-12-22','2026-03-21',4627,4627,4501,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:32:00','0000-00-00','','','','N','18:32:00','00:00:00','','','N','N',NULL,'O','N','Z96','','0000-00-00 00:00:00','3','18:36:07',0,'','janvi','2025-12-22 18:32:33','','0000-00-00 00:00:00'),(7036,0,0,'O','N','2526',3854,0,'2025-12-22','0000-00-00',3963,3963,3854,'N','','N','','','','','N','D02','','N',275,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','00:00:00','','','N','N',NULL,'O','O','Z97','','0000-00-00 00:00:00','3','18:36:07',0,'','janvi','2025-12-22 18:34:06','','0000-00-00 00:00:00'),(7037,0,0,'O','N','2526',4502,0,'2025-12-22','2026-03-21',4628,4628,4502,'N','','N','','','NC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:34:00','0000-00-00','','','','N','18:34:00','19:46:42','','','N','Y',NULL,'O','N','Z98','','0000-00-00 00:00:00','5','18:34:44',0,'','drashti','2025-12-22 18:34:44','drjayant','2025-12-22 19:46:42'),(7038,0,0,'O','N','2526',4254,0,'2025-12-22','0000-00-00',4369,4369,4254,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:38:00','0000-00-00','','','','N','18:38:00','19:53:35','','','N','Y',NULL,'O','O','Z99','','0000-00-00 00:00:00','3','19:42:13',0,'','janvi','2025-12-22 18:38:13','drpratapsinh','2025-12-22 19:53:35'),(7039,0,0,'O','N','2526',4503,0,'2025-12-22','2026-03-21',4629,4629,4503,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:39:00','0000-00-00','','','','N','18:39:00','19:01:52','','','N','Y',NULL,'O','N','Z100','','0000-00-00 00:00:00','7','18:39:08',0,'','manshi','2025-12-22 18:39:08','drridham','2025-12-22 19:01:52'),(7040,0,0,'O','N','2526',4504,0,'2025-12-22','2026-03-21',4630,4630,4504,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:40:00','0000-00-00','','','','N','18:40:00','19:16:13','','','N','Y',NULL,'O','N','Z101','','0000-00-00 00:00:00','2','18:40:14',0,'','reception','2025-12-22 18:40:14','darshan','2025-12-22 19:16:13'),(7041,0,0,'O','N','2526',4505,0,'2025-12-22','2026-03-21',4631,4631,4505,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:43:00','0000-00-00','','','','N','18:43:00','20:02:28','','','N','Y',NULL,'O','N','Z102','','0000-00-00 00:00:00','3','19:42:13',0,'','janvi','2025-12-22 18:44:01','drpratapsinh','2025-12-22 20:02:28'),(7042,0,0,'O','N','2526',3954,0,'2025-12-22','0000-00-00',4062,4062,3954,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:44:00','0000-00-00','','','','N','18:44:00','19:03:17','','','N','Y',NULL,'O','O','L13','','0000-00-00 00:00:00','2','18:44:10',0,'','reception','2025-12-22 18:44:10','darshan','2025-12-22 19:03:17'),(7043,0,0,'O','N','2526',3319,0,'2025-12-22','0000-00-00',3411,3411,3319,'N','','N','','','','','N','D02','','N',25,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:46:00','0000-00-00','','','','N','18:46:00','20:29:22','','','N','Y',NULL,'O','O','Z103','','0000-00-00 00:00:00','3','19:42:13',0,'','janvi','2025-12-22 18:46:06','drpratapsinh','2025-12-22 20:29:22'),(7044,0,0,'O','N','2526',2764,0,'2025-12-22','0000-00-00',2241,2241,2764,'N','','N','','','FOLLOWUP','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:48:00','0000-00-00','','','','N','18:48:00','19:10:37','','','N','Y',NULL,'O','O','L14','','0000-00-00 00:00:00','4','18:48:54',0,'','drashti','2025-12-22 18:48:54','drarchit','2025-12-22 19:10:37'),(7045,0,0,'O','N','2526',4506,0,'2025-12-22','2026-03-21',4632,4632,4506,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:49:00','0000-00-00','','','','N','18:49:00','00:00:00','','','N','Y',NULL,'O','N','Z104','','0000-00-00 00:00:00','3','19:42:13',0,'','janvi','2025-12-22 18:50:02','','0000-00-00 00:00:00'),(7046,0,0,'O','N','2526',4507,0,'2025-12-22','2026-03-21',4633,4633,4507,'N','','N','','','FOLLOWUP C','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:51:00','0000-00-00','','','','N','18:51:00','19:54:39','','','N','Y',NULL,'O','N','Z105','','0000-00-00 00:00:00','2','19:12:23',0,'','drashti','2025-12-22 18:51:54','darshan','2025-12-22 19:54:39'),(7047,0,0,'O','N','2526',4508,0,'2025-12-22','2026-03-21',4634,4634,4508,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:53:00','0000-00-00','','','','N','18:53:00','19:16:30','','','N','Y',NULL,'O','N','Z106','','0000-00-00 00:00:00','4','18:53:49',0,'','janvi','2025-12-22 18:53:49','drarchit','2025-12-22 19:16:30'),(7048,0,0,'O','N','2526',4300,0,'2025-12-22','0000-00-00',4415,4415,4300,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:54:00','0000-00-00','','','','N','18:54:00','20:08:36','','','N','Y',NULL,'O','O','Z107','','0000-00-00 00:00:00','3','19:42:13',0,'','janvi','2025-12-22 18:54:28','drpratapsinh','2025-12-22 20:08:36'),(7049,0,0,'O','N','2526',4509,0,'2025-12-22','2026-03-21',4635,4635,4509,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:56:00','0000-00-00','','','','N','18:56:00','20:01:24','','N','N','Y',NULL,'O','N','Z108','','0000-00-00 00:00:00','2','18:56:41',0,'','reception','2025-12-22 18:56:41','darshan','2025-12-22 20:01:24'),(7050,0,0,'O','N','2526',4106,0,'2025-12-22','0000-00-00',4215,4215,4106,'N','','N','','','','','N','D02','','N',60,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','18:58:00','0000-00-00','','','','N','18:58:00','20:06:49','','','N','Y',NULL,'O','O','Z109','','0000-00-00 00:00:00','3','19:42:13',0,'','janvi','2025-12-22 18:58:34','drpratapsinh','2025-12-22 20:06:49'),(7051,0,0,'O','N','2526',4510,0,'2025-12-22','2026-03-21',4636,4636,4510,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:00:00','0000-00-00','','','','N','19:00:00','19:32:53','','','N','Y',NULL,'O','N','L15','','0000-00-00 00:00:00','4','19:00:06',0,'','drashti','2025-12-22 19:00:06','drarchit','2025-12-22 19:32:53'),(7052,0,0,'O','N','2526',3433,0,'2025-12-22','0000-00-00',3530,3530,3433,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:05:00','0000-00-00','','','','N','19:05:00','19:44:05','','','N','Y',NULL,'O','O','Z110','','0000-00-00 00:00:00','2','19:05:13',0,'','reception','2025-12-22 19:05:13','darshan','2025-12-22 19:44:05'),(7053,0,0,'O','N','2526',4511,0,'2025-12-22','2026-03-21',4637,4637,4511,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:08:00','0000-00-00','','','','N','19:08:00','19:41:13','','','N','Y',NULL,'O','N','L16','','0000-00-00 00:00:00','4','19:08:41',0,'','drashti','2025-12-22 19:08:41','drarchit','2025-12-22 19:41:13'),(7054,0,0,'O','N','2526',3605,0,'2025-12-22','0000-00-00',3705,3705,3605,'N','','N','','','DRESSING','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:13:00','0000-00-00','','','','N','19:13:00','20:12:32','','','N','Y',NULL,'O','O','Z111','','0000-00-00 00:00:00','3','19:42:13',0,'','drashti','2025-12-22 19:13:24','drpratapsinh','2025-12-22 20:12:32'),(7055,0,0,'O','N','2526',4512,0,'2025-12-22','2026-03-21',4638,4638,4512,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:15:00','0000-00-00','','','','N','19:15:00','19:50:33','','','N','Y',NULL,'O','N','L17','','0000-00-00 00:00:00','4','19:15:51',0,'','drashti','2025-12-22 19:15:51','drarchit','2025-12-22 19:50:33'),(7056,0,0,'O','N','2526',3486,0,'2025-12-22','0000-00-00',3586,3586,3486,'N','','N','','','','','N','D02','','N',179,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:15:00','0000-00-00','','','','N','19:15:00','19:42:28','','','N','Y',NULL,'O','O','Z112','','0000-00-00 00:00:00','3','19:42:13',0,'','janvi','2025-12-22 19:15:58','drpratapsinh','2025-12-22 19:42:28'),(7057,0,0,'O','N','2526',4000,0,'2025-12-22','0000-00-00',4107,4107,4000,'N','','N','','','','','N','D03','','N',196,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:17:00','0000-00-00','','','','N','19:17:00','19:38:20','','','N','Y',NULL,'O','O','Z113','','0000-00-00 00:00:00','6','19:17:17',0,'','manshi','2025-12-22 19:17:17','drsagar','2025-12-22 19:38:20'),(7058,0,0,'O','N','2526',1399,0,'2025-12-22','0000-00-00',1439,1439,1399,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:24:00','0000-00-00','','','','N','19:24:00','19:32:57','','','N','Y',NULL,'O','O','Z114','','0000-00-00 00:00:00','5','19:24:17',0,'','janvi','2025-12-22 19:24:17','drjayant','2025-12-22 19:32:57'),(7059,0,0,'O','N','2526',4513,0,'2025-12-22','2026-03-21',4639,4639,4513,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:50:00','0000-00-00','','','','N','19:50:00','00:00:00','','','N','N',NULL,'O','N','Z115','','0000-00-00 00:00:00','7','19:50:51',0,'','manshi','2025-12-22 19:50:50','','0000-00-00 00:00:00'),(7060,0,0,'O','N','2526',4514,0,'2025-12-22','2026-03-21',4640,4640,4514,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:53:00','0000-00-00','','','','N','19:53:00','00:00:00','','','N','N',NULL,'O','N','Z116','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-12-22 19:53:02','','0000-00-00 00:00:00'),(7061,0,0,'O','N','2526',4515,0,'2025-12-22','2026-03-21',4641,4641,4515,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','19:55:00','0000-00-00','','','','N','19:55:00','00:00:00','','','N','N',NULL,'O','N','Z117','','0000-00-00 00:00:00','','00:00:00',0,'','janvi','2025-12-22 19:55:49','','0000-00-00 00:00:00'),(7062,0,0,'O','N','2526',4516,0,'2025-12-22','2026-03-21',4642,4642,4516,'N','','N','','','NC','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','20:01:00','0000-00-00','','','','N','20:01:00','20:20:11','','','N','Y',NULL,'O','N','Z118','','0000-00-00 00:00:00','4','20:01:53',0,'','drashti','2025-12-22 20:01:53','drarchit','2025-12-22 20:20:11'),(7063,0,0,'O','N','2526',4517,0,'2025-12-22','2026-03-21',4643,4643,4517,'N','','N','','','','Y','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','20:15:00','0000-00-00','','','','N','20:15:00','00:00:00','','','N','N',NULL,'O','N','Z119','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-12-22 20:15:09','','0000-00-00 00:00:00'),(7064,0,0,'O','N','2526',4334,0,'2025-12-22','0000-00-00',4447,4447,4334,'N','','N','','','','Y','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','20:40:00','0000-00-00','','','','N','20:40:00','00:00:00','','','N','N',NULL,'O','O','Y03','','0000-00-00 00:00:00','7','20:40:08',0,'','reception','2025-12-22 20:40:08','','0000-00-00 00:00:00'),(7065,0,0,'O','N','2526',4518,0,'2025-12-22','2026-03-21',4644,4644,4518,'N','','N','','','','Y','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','21:00:00','0000-00-00','','','','N','21:00:00','00:00:00','','','N','N',NULL,'O','N','Z120','','0000-00-00 00:00:00','7','21:00:20',0,'','priyanshi','2025-12-22 21:00:20','','0000-00-00 00:00:00'),(7066,0,0,'I','N','2526',4496,327,'2025-12-22','2026-03-21',4622,4622,4496,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','21:30:00','0000-00-00','','','','N','21:30:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-22 21:41:35','','0000-00-00 00:00:00'),(7067,0,0,'I','N','2526',0,328,'2025-12-22','2026-03-21',4645,4645,0,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','22:00:00','0000-00-00','','','','N','22:00:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','vishal','2025-12-22 22:11:13','','0000-00-00 00:00:00'),(7068,0,0,'O','N','2526',4518,0,'2025-12-23','0000-00-00',4644,4644,4518,'N','','N','','','PROC.','Y','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','08:41:00','0000-00-00','','','','N','08:41:00','10:49:54','','','N','Y',NULL,'O','O','Z01','','0000-00-00 00:00:00','7','08:41:54',0,'','reception','2025-12-23 08:41:54','drridham','2025-12-23 10:49:54'),(7069,0,0,'O','N','2526',4305,0,'2025-12-23','0000-00-00',4419,4419,4305,'N','','N','','','ER','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','08:43:00','0000-00-00','','','','N','08:43:00','11:16:59','','','N','Y',NULL,'O','O','Z02','','0000-00-00 00:00:00','5','08:43:19',0,'','reception','2025-12-23 08:43:19','drjayant','2025-12-23 11:16:59'),(7070,0,0,'O','N','2526',4519,0,'2025-12-23','2026-03-22',4646,4646,4519,'N','','N','','','NC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:46:00','0000-00-00','','','','N','09:46:00','12:02:09','','','N','Y',NULL,'O','N','Z03','','0000-00-00 00:00:00','4','09:46:41',0,'','drashti','2025-12-23 09:46:41','drarchit','2025-12-23 12:02:09'),(7071,0,0,'O','N','2526',4277,0,'2025-12-23','0000-00-00',4392,4392,4277,'N','','N','','','','N','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','09:54:00','0000-00-00','','','','N','09:54:00','10:54:20','','','N','Y',NULL,'O','O','Z04','','0000-00-00 00:00:00','3','09:54:38',0,'','janvi','2025-12-23 09:54:38','drpratapsinh','2025-12-23 10:54:20'),(7072,0,0,'O','N','2526',4520,0,'2025-12-23','2026-03-22',4647,4647,4520,'N','','N','','','NC','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:08:00','0000-00-00','','','','N','10:08:00','00:00:00','','','N','Y',NULL,'O','N','Z05','','0000-00-00 00:00:00','3','10:08:02',0,'','drashti','2025-12-23 10:08:02','','0000-00-00 00:00:00'),(7073,0,0,'O','N','2526',4521,0,'2025-12-23','2026-03-22',4648,4648,4521,'N','','N','','','NV','','N','D06','','N',307,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:08:00','0000-00-00','','','','N','10:08:00','13:25:01','','N','N','Y',NULL,'O','N','F01','','0000-00-00 00:00:00','2','10:08:14',0,'','reception','2025-12-23 10:08:14','darshan','2025-12-23 13:25:01'),(7074,0,0,'O','N','2526',653,0,'2025-12-23','0000-00-00',683,683,653,'N','','N','','','FV','','N','D06','','N',53,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:12:00','0000-00-00','','','','N','10:12:00','11:00:37','','','N','Y',NULL,'O','O','F02','','0000-00-00 00:00:00','2','10:12:01',0,'','reception','2025-12-23 10:12:01','darshan','2025-12-23 11:00:37'),(7075,0,0,'O','N','2526',4522,0,'2025-12-23','2026-03-22',4649,4649,4522,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:16:00','0000-00-00','','','','N','10:16:00','10:49:26','','','N','Y',NULL,'O','N','Z06','','0000-00-00 00:00:00','7','10:16:54',0,'','manshi','2025-12-23 10:16:54','drridham','2025-12-23 10:49:26'),(7076,0,0,'O','N','2526',4523,0,'2025-12-23','2026-03-22',4650,4650,4523,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:17:00','0000-00-00','','','','N','10:17:00','10:48:54','','','N','Y',NULL,'O','N','Z07','','0000-00-00 00:00:00','7','10:17:45',0,'','manshi','2025-12-23 10:17:45','drridham','2025-12-23 10:48:54'),(7077,0,0,'O','N','2526',1458,0,'2025-12-23','0000-00-00',1499,1499,1458,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:17:00','0000-00-00','','','','N','10:17:00','11:04:21','','','N','Y',NULL,'O','O','F03','','0000-00-00 00:00:00','2','10:17:50',0,'','reception','2025-12-23 10:17:50','darshan','2025-12-23 11:04:21'),(7078,0,0,'O','N','2526',157,0,'2025-12-23','0000-00-00',170,170,157,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:21:00','0000-00-00','','','','N','10:21:00','11:09:45','','','N','Y',NULL,'O','O','Z08','','0000-00-00 00:00:00','2','10:21:37',0,'','reception','2025-12-23 10:21:37','darshan','2025-12-23 11:09:45'),(7079,0,0,'O','N','2526',4524,0,'2025-12-23','2026-03-22',4651,4651,4524,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:21:00','0000-00-00','','','','N','10:21:00','12:15:16','','','N','Y',NULL,'O','N','G01','','0000-00-00 00:00:00','4','10:21:55',0,'','drashti','2025-12-23 10:21:55','drarchit','2025-12-23 12:15:16'),(7080,0,0,'O','N','2526',4031,0,'2025-12-23','0000-00-00',4138,4138,4031,'N','','N','','','FV','','N','D06','','N',282,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:24:00','0000-00-00','','','','N','10:24:00','11:20:22','','','N','Y',NULL,'O','O','G02','','0000-00-00 00:00:00','2','10:24:16',0,'','reception','2025-12-23 10:24:16','darshan','2025-12-23 11:20:22'),(7081,0,0,'O','N','2526',4525,0,'2025-12-23','2026-03-22',4652,4652,4525,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:27:00','0000-00-00','','','','N','10:27:00','13:59:53','','N','N','Y',NULL,'O','N','Z09','','0000-00-00 00:00:00','2','10:27:17',0,'','reception','2025-12-23 10:27:17','darshan','2025-12-23 13:59:53'),(7082,0,0,'O','N','2526',4526,0,'2025-12-23','2026-03-22',4653,4653,4526,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:50:00','0000-00-00','','','','N','10:50:00','11:57:04','','','N','Y',NULL,'O','N','Z10','','0000-00-00 00:00:00','2','10:50:41',0,'','reception','2025-12-23 10:50:41','darshan','2025-12-23 11:57:04'),(7083,0,0,'O','N','2526',927,0,'2025-12-23','0000-00-00',958,958,927,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:58:00','0000-00-00','','','','N','10:58:00','11:59:56','','','N','Y',NULL,'O','O','Z11','','0000-00-00 00:00:00','2','10:58:40',0,'','reception','2025-12-23 10:58:40','darshan','2025-12-23 11:59:56'),(7084,0,0,'I','N','2526',0,329,'2025-12-23','2026-03-21',3601,3601,0,'N','','N','','','','N','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','02:00:00','0000-00-00','','','','N','02:00:00','00:00:00','','','N','N',NULL,'O','N','','','0000-00-00 00:00:00','','00:00:00',0,'','riya','2025-12-23 10:59:04','riya','2025-12-23 11:27:25'),(7085,0,0,'O','N','2526',4527,0,'2025-12-23','2026-03-22',4654,4654,4527,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','10:59:00','0000-00-00','','','','N','10:59:00','11:16:38','','','N','Y',NULL,'O','N','Z12','','0000-00-00 00:00:00','5','10:59:58',0,'','janvi','2025-12-23 10:59:58','drjayant','2025-12-23 11:16:38'),(7086,0,0,'O','N','2526',4528,0,'2025-12-23','2026-03-22',4655,4655,4528,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:04:00','0000-00-00','','','','N','11:04:00','12:17:23','','','N','Y',NULL,'O','N','Z13','','0000-00-00 00:00:00','2','11:04:20',0,'','reception','2025-12-23 11:04:20','darshan','2025-12-23 12:17:23'),(7087,0,0,'O','N','2526',4529,0,'2025-12-23','2026-03-22',4656,4656,4529,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:06:00','0000-00-00','','','','N','11:06:00','12:57:25','','','N','Y',NULL,'O','N','Z14','','0000-00-00 00:00:00','3','11:06:21',0,'','janvi','2025-12-23 11:06:21','drpratapsinh','2025-12-23 12:57:25'),(7088,0,0,'O','N','2526',4530,0,'2025-12-23','2026-03-22',4657,4657,4530,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:07:00','0000-00-00','','','','N','11:07:00','12:45:14','','','N','Y',NULL,'O','N','G03','','0000-00-00 00:00:00','4','11:07:41',0,'','drashti','2025-12-23 11:07:41','drarchit','2025-12-23 12:45:14'),(7089,0,0,'O','N','2526',4531,0,'2025-12-23','2026-03-22',4658,4658,4531,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','11:22:15','','','N','Y',NULL,'O','N','Z15','','0000-00-00 00:00:00','4','11:08:43',0,'','janvi','2025-12-23 11:08:43','drarchit','2025-12-23 11:22:15'),(7090,0,0,'O','N','2526',4532,0,'2025-12-23','2026-03-22',4659,4659,4532,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:08:00','0000-00-00','','','','N','11:08:00','13:44:01','','N','N','Y',NULL,'O','N','H01','','0000-00-00 00:00:00','2','11:08:44',0,'','reception','2025-12-23 11:08:44','darshan','2025-12-23 13:44:01'),(7091,0,0,'O','N','2526',4533,0,'2025-12-23','2026-03-22',4660,4660,4533,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:11:00','0000-00-00','','','','N','11:11:00','13:38:29','','N','N','Y',NULL,'O','N','Z16','','0000-00-00 00:00:00','2','11:11:22',0,'','reception','2025-12-23 11:11:22','darshan','2025-12-23 13:38:29'),(7092,0,0,'O','N','2526',441,0,'2025-12-23','0000-00-00',466,466,441,'N','','N','','','','Y','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:12:00','0000-00-00','','','','N','11:12:00','12:30:59','','','N','Y',NULL,'O','O','Z17','','0000-00-00 00:00:00','7','11:12:13',0,'','manshi','2025-12-23 11:12:13','drridham','2025-12-23 12:30:59'),(7093,0,0,'O','N','2526',2529,0,'2025-12-23','0000-00-00',2586,2586,2529,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:14:00','0000-00-00','','','','N','11:14:00','11:26:34','','','N','Y',NULL,'O','O','Z18','','0000-00-00 00:00:00','6','11:14:17',0,'','manshi','2025-12-23 11:14:17','drsagar','2025-12-23 11:26:34'),(7094,0,0,'O','N','2526',4534,0,'2025-12-23','2026-03-22',4661,4661,4534,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:16:00','0000-00-00','','','','N','11:16:00','14:04:47','','N','N','Y',NULL,'O','N','I01','','0000-00-00 00:00:00','2','11:16:19',0,'','drashti','2025-12-23 11:16:19','darshan','2025-12-23 14:04:47'),(7095,0,0,'O','N','2526',4535,0,'2025-12-23','2026-03-22',4662,4662,4535,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:18:00','0000-00-00','','','','N','11:18:00','11:33:24','','','N','Y',NULL,'O','N','Z19','','0000-00-00 00:00:00','5','11:18:15',0,'','janvi','2025-12-23 11:18:15','drjayant','2025-12-23 11:33:24'),(7096,0,0,'O','N','2526',4536,0,'2025-12-23','2026-03-22',4663,4663,4536,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:19:00','0000-00-00','','','','N','11:19:00','11:27:39','','','N','Y',NULL,'O','N','Z20','','0000-00-00 00:00:00','5','11:19:30',0,'','drashti','2025-12-23 11:19:29','drjayant','2025-12-23 11:27:39'),(7097,0,0,'O','N','2526',4537,0,'2025-12-23','2026-03-22',4664,4664,4537,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:20:00','0000-00-00','','','','N','11:20:00','11:31:15','','','N','Y',NULL,'O','N','I02','','0000-00-00 00:00:00','4','11:20:05',0,'','reception','2025-12-23 11:20:05','drarchit','2025-12-23 11:31:15'),(7098,0,0,'O','N','2526',4538,0,'2025-12-23','2026-03-22',4665,4665,4538,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:21:00','0000-00-00','','','','N','11:21:00','14:08:30','','N','N','Y',NULL,'O','N','J01','','0000-00-00 00:00:00','2','11:22:00',0,'','reception','2025-12-23 11:22:00','darshan','2025-12-23 14:08:30'),(7099,0,0,'O','N','2526',4539,0,'2025-12-23','2026-03-22',4666,4666,4539,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:24:00','0000-00-00','','','','N','11:24:00','11:40:39','','','N','Y',NULL,'O','N','H02','','0000-00-00 00:00:00','4','11:24:03',0,'','drashti','2025-12-23 11:24:03','drarchit','2025-12-23 11:40:39'),(7100,0,0,'O','N','2526',4540,0,'2025-12-23','2026-03-22',4667,4667,4540,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:28:00','0000-00-00','','','','N','11:28:00','13:50:26','','N','N','Y',NULL,'O','N','H03','','0000-00-00 00:00:00','2','11:28:41',0,'','reception','2025-12-23 11:28:41','darshan','2025-12-23 13:50:26'),(7101,0,0,'O','N','2526',4340,0,'2025-12-23','0000-00-00',4455,4455,4340,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:32:00','0000-00-00','','','','N','11:32:00','12:42:45','','','N','Y',NULL,'O','O','Z21','','0000-00-00 00:00:00','3','11:32:43',0,'','reception','2025-12-23 11:32:43','drpratapsinh','2025-12-23 12:42:45'),(7102,0,0,'O','N','2526',4541,0,'2025-12-23','2026-03-22',4668,4668,4541,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:34:00','0000-00-00','','','','N','11:34:00','11:56:50','','','N','Y',NULL,'O','N','H04','','0000-00-00 00:00:00','4','11:35:00',0,'','drashti','2025-12-23 11:35:00','drarchit','2025-12-23 11:56:50'),(7103,0,0,'O','N','2526',3101,0,'2025-12-23','0000-00-00',3188,3188,3101,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:36:00','0000-00-00','','','','N','11:36:00','12:38:30','','','N','Y',NULL,'O','O','I03','','0000-00-00 00:00:00','2','11:36:29',0,'','reception','2025-12-23 11:36:29','darshan','2025-12-23 12:38:30'),(7104,0,0,'O','N','2526',3462,0,'2025-12-23','0000-00-00',3561,3561,3462,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','12:12:49','','','N','Y',NULL,'O','O','H05','','0000-00-00 00:00:00','2','11:38:01',0,'','reception','2025-12-23 11:38:01','darshan','2025-12-23 12:12:49'),(7105,0,0,'O','N','2526',4542,0,'2025-12-23','2026-03-22',4669,4669,4542,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:38:00','0000-00-00','','','','N','11:38:00','11:58:35','','','N','Y',NULL,'O','N','H06','','0000-00-00 00:00:00','4','11:38:26',0,'','drashti','2025-12-23 11:38:26','drarchit','2025-12-23 11:58:35'),(7106,0,0,'O','N','2526',4543,0,'2025-12-23','2026-03-22',4670,4670,4543,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:39:00','0000-00-00','','','','N','11:39:00','12:45:36','','','N','Y',NULL,'O','N','Z22','','0000-00-00 00:00:00','3','11:39:14',0,'','janvi','2025-12-23 11:39:14','drpratapsinh','2025-12-23 12:45:36'),(7107,0,0,'O','N','2526',1432,0,'2025-12-23','0000-00-00',1473,1473,1432,'N','','N','','','','','N','D14','','N',102,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:40:00','0000-00-00','','','','N','11:40:00','12:31:32','','','N','Y',NULL,'O','O','Z23','','0000-00-00 00:00:00','7','11:40:55',0,'','manshi','2025-12-23 11:40:55','drridham','2025-12-23 12:31:32'),(7108,0,0,'O','N','2526',4544,0,'2025-12-23','2026-03-22',4671,4671,4544,'N','','N','','','NC','','N','D27','','N',6,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:46:00','0000-00-00','','','','N','11:46:00','12:59:57','','','N','Y',NULL,'O','N','Z24','','0000-00-00 00:00:00','4','11:46:00',0,'','drashti','2025-12-23 11:46:00','drarchit','2025-12-23 12:59:57'),(7109,0,0,'O','N','2526',4545,0,'2025-12-23','2026-03-22',4672,4672,4545,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','12:04:17','','','N','Y',NULL,'O','N','Z25','','0000-00-00 00:00:00','4','11:47:15',0,'','janvi','2025-12-23 11:47:15','drarchit','2025-12-23 12:04:17'),(7110,0,0,'O','N','2526',4546,0,'2025-12-23','2026-03-22',4673,4673,4546,'N','','N','','','FC','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:47:00','0000-00-00','','','','N','11:47:00','12:44:24','','','N','Y',NULL,'O','N','Z26','','0000-00-00 00:00:00','5','11:47:40',0,'','reception','2025-12-23 11:47:40','drjayant','2025-12-23 12:44:23'),(7111,0,0,'O','N','2526',4547,0,'2025-12-23','2026-03-22',4674,4674,4547,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:48:00','0000-00-00','','','','N','11:48:00','12:50:10','','','N','Y',NULL,'O','N','Z27','','0000-00-00 00:00:00','3','11:48:50',0,'','janvi','2025-12-23 11:48:50','drpratapsinh','2025-12-23 12:50:10'),(7112,0,0,'O','N','2526',4317,0,'2025-12-23','0000-00-00',4431,4431,4317,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:50:00','0000-00-00','','','','N','11:50:00','12:53:42','','','N','Y',NULL,'O','O','Z28','','0000-00-00 00:00:00','3','11:50:41',0,'','janvi','2025-12-23 11:50:41','drpratapsinh','2025-12-23 12:53:42'),(7113,0,0,'O','N','2526',592,0,'2025-12-23','0000-00-00',622,622,592,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','12:50:52','','','N','Y',NULL,'O','O','I04','','0000-00-00 00:00:00','2','11:51:55',0,'','drashti','2025-12-23 11:51:55','darshan','2025-12-23 12:50:52'),(7114,0,0,'O','N','2526',4548,0,'2025-12-23','2026-03-22',4675,4675,4548,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:51:00','0000-00-00','','','','N','11:51:00','12:53:07','','','N','Y',NULL,'O','N','J02','','0000-00-00 00:00:00','2','11:51:58',0,'','reception','2025-12-23 11:51:58','darshan','2025-12-23 12:53:07'),(7115,0,0,'O','N','2526',4549,0,'2025-12-23','2026-03-22',4676,4676,4549,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:53:00','0000-00-00','','','','N','11:53:00','14:39:43','','N','N','Y',NULL,'O','N','H07','','0000-00-00 00:00:00','2','11:53:26',0,'','reception','2025-12-23 11:53:26','darshan','2025-12-23 14:39:43'),(7116,0,0,'O','N','2526',3265,0,'2025-12-23','0000-00-00',3353,3353,3265,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','11:57:00','0000-00-00','','','','N','11:57:00','12:05:45','','','N','Y',NULL,'O','O','Z29','','0000-00-00 00:00:00','6','11:57:39',0,'','manshi','2025-12-23 11:57:39','drsagar','2025-12-23 12:05:45'),(7117,0,0,'O','N','2526',4550,0,'2025-12-23','2026-03-22',4677,4677,4550,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:09:00','0000-00-00','','','','N','12:09:00','00:00:00','','Y','N','Y',NULL,'O','N','I05','','0000-00-00 00:00:00','4','12:09:11',0,'','drashti','2025-12-23 12:09:11','drarchit','2025-12-23 12:19:02'),(7118,0,0,'O','N','2526',4259,0,'2025-12-23','0000-00-00',4374,4374,4259,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:10:00','0000-00-00','','','','N','12:10:00','00:00:00','','','N','Y',NULL,'O','O','I06','','0000-00-00 00:00:00','4','12:10:13',0,'','reception','2025-12-23 12:10:13','','0000-00-00 00:00:00'),(7119,0,0,'O','N','2526',4551,0,'2025-12-23','2026-03-22',4678,4678,4551,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:11:00','0000-00-00','','','','N','12:11:00','14:56:26','','N','N','Y',NULL,'O','N','Z30','','0000-00-00 00:00:00','2','12:11:54',0,'','janvi','2025-12-23 12:11:54','darshan','2025-12-23 14:56:26'),(7120,0,0,'O','N','2526',4552,0,'2025-12-23','2026-03-22',4679,4679,4552,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:14:00','0000-00-00','','','','N','12:14:00','12:26:57','','','N','Y',NULL,'O','N','J03','','0000-00-00 00:00:00','4','12:14:43',0,'','janvi','2025-12-23 12:14:43','drarchit','2025-12-23 12:26:57'),(7121,0,0,'O','N','2526',4553,0,'2025-12-23','2026-03-22',4680,0,4553,'N','','N','','','','','N','D06','','N',4,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','12:27:00','0000-00-00','','','','N','12:27:00','00:00:00','','','N','N',NULL,'O','N','Z31','','0000-00-00 00:00:00','2','12:27:27',0,'','reception','2025-12-23 12:27:27','reception','2025-12-23 12:33:22'),(7122,0,0,'O','N','2526',3305,0,'2025-12-23','0000-00-00',3394,3394,3305,'N','','N','','','','','N','D02','','N',119,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:34:00','0000-00-00','','','','N','12:34:00','12:46:07','','','N','Y',NULL,'O','O','Z32','','0000-00-00 00:00:00','3','12:34:39',0,'','drashti','2025-12-23 12:34:39','drpratapsinh','2025-12-23 12:46:07'),(7123,0,0,'O','N','2526',4554,0,'2025-12-23','2026-03-22',4681,4681,4554,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:35:00','0000-00-00','','','','N','12:35:00','00:00:00','','','N','Y',NULL,'O','N','Z33','','0000-00-00 00:00:00','7','12:35:05',0,'','manshi','2025-12-23 12:35:05','','0000-00-00 00:00:00'),(7124,0,0,'O','N','2526',4555,0,'2025-12-23','2026-03-22',4682,4682,4555,'N','','N','','','NE','','N','D06','','N',308,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:36:00','0000-00-00','','','','N','12:36:00','14:45:52','','N','N','Y',NULL,'O','N','Z34','','0000-00-00 00:00:00','2','12:36:01',0,'','reception','2025-12-23 12:36:01','darshan','2025-12-23 14:45:52'),(7125,0,0,'O','N','2526',4185,0,'2025-12-23','0000-00-00',4298,4298,4185,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:41:00','0000-00-00','','','','N','12:41:00','12:53:45','','','N','Y',NULL,'O','O','J04','','0000-00-00 00:00:00','4','12:41:52',0,'','drashti','2025-12-23 12:41:52','drarchit','2025-12-23 12:53:45'),(7126,0,0,'O','N','2526',1317,0,'2025-12-23','0000-00-00',1356,1356,1317,'N','','N','','','FC','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:55:00','0000-00-00','','','','N','12:55:00','00:00:00','','','N','N',NULL,'O','O','J05','','0000-00-00 00:00:00','4','12:55:58',0,'','reception','2025-12-23 12:55:58','','0000-00-00 00:00:00'),(7127,0,0,'O','N','2526',4021,0,'2025-12-23','0000-00-00',4129,4129,4021,'N','','N','','','FOLLOWUP C','Y','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','12:58:00','0000-00-00','','','','N','12:58:00','13:11:50','','','N','Y',NULL,'O','O','Z35','','0000-00-00 00:00:00','4','12:58:36',0,'','drashti','2025-12-23 12:58:36','drarchit','2025-12-23 13:11:50'),(7128,0,0,'O','N','2526',51,0,'2025-12-23','0000-00-00',58,58,51,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:12:00','0000-00-00','','','','N','13:12:00','14:13:12','','','N','Y',NULL,'O','O','Z36','','0000-00-00 00:00:00','2','13:12:13',0,'','reception','2025-12-23 13:12:13','darshan','2025-12-23 14:13:12'),(7129,0,0,'O','N','2526',4556,0,'2025-12-23','2026-03-22',4683,4683,4556,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:17:00','0000-00-00','','','','N','13:17:00','14:19:42','','','N','Y',NULL,'O','N','Z37','','0000-00-00 00:00:00','2','13:17:06',0,'','reception','2025-12-23 13:17:06','darshan','2025-12-23 14:19:42'),(7130,0,0,'O','N','2526',4557,0,'2025-12-23','2026-03-22',4684,4684,4557,'N','','N','','','NV','','N','D06','','N',3,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:46:00','0000-00-00','','','','N','13:46:00','14:35:32','','','N','Y',NULL,'O','N','Z38','','0000-00-00 00:00:00','2','13:46:58',0,'','reception','2025-12-23 13:46:58','darshan','2025-12-23 14:35:32'),(7131,0,0,'O','N','2526',4558,0,'2025-12-23','2026-03-22',4685,4685,4558,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','13:51:00','0000-00-00','','','','N','13:51:00','14:52:50','','','N','Y',NULL,'O','N','Z39','','0000-00-00 00:00:00','2','13:51:54',0,'','reception','2025-12-23 13:51:54','darshan','2025-12-23 14:52:50'),(7132,0,0,'O','N','2526',2448,0,'2025-12-23','0000-00-00',2507,2507,2448,'N','','N','','','FV','','N','D06','','N',173,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:14:00','0000-00-00','','','','N','16:14:00','17:47:07','','','N','Y',NULL,'O','O','L01','','0000-00-00 00:00:00','2','16:14:04',0,'','reception','2025-12-23 16:14:04','darshan','2025-12-23 17:47:07'),(7133,0,0,'O','N','2526',750,0,'2025-12-23','0000-00-00',782,782,750,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:28:00','0000-00-00','','','','N','16:28:00','17:32:13','','','N','Y',NULL,'O','O','L02','','0000-00-00 00:00:00','2','16:28:45',0,'','reception','2025-12-23 16:28:45','darshan','2025-12-23 17:32:13'),(7134,0,0,'O','N','2526',4559,0,'2025-12-23','2026-03-22',4686,4686,4559,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:38:00','0000-00-00','','','','N','16:38:00','00:00:00','','Y','N','Y',NULL,'O','N','Z40','','0000-00-00 00:00:00','2','16:38:01',0,'','reception','2025-12-23 16:38:01','darshan','2025-12-23 17:42:16'),(7135,0,0,'O','N','2526',4560,0,'2025-12-23','2026-03-22',4687,0,4560,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','','','','','0000-00-00','','','',1,'N','N','N','16:42:00','0000-00-00','','','','N','16:42:00','00:00:00','','Y','N','Y',NULL,'O','N','L03','','0000-00-00 00:00:00','2','16:42:17',0,'','reception','2025-12-23 16:42:17','darshan','2025-12-23 17:21:32'),(7136,0,0,'O','N','2526',2004,0,'2025-12-23','0000-00-00',2055,2055,2004,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:43:00','0000-00-00','','','','N','16:43:00','17:24:22','','','N','Y',NULL,'O','O','L04','','0000-00-00 00:00:00','2','16:43:22',0,'','reception','2025-12-23 16:43:22','darshan','2025-12-23 17:24:22'),(7137,0,0,'O','N','2526',1501,0,'2025-12-23','0000-00-00',1542,1542,1501,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:46:00','0000-00-00','','','','N','16:46:00','00:00:00','','','N','N',NULL,'O','O','Z41','','0000-00-00 00:00:00','2','16:46:19',0,'','reception','2025-12-23 16:46:19','','0000-00-00 00:00:00'),(7138,0,0,'O','N','2526',637,0,'2025-12-23','0000-00-00',667,667,637,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:54:00','0000-00-00','','','','N','16:54:00','17:28:00','','','N','Y',NULL,'O','O','L05','','0000-00-00 00:00:00','2','16:54:30',0,'','reception','2025-12-23 16:54:30','darshan','2025-12-23 17:28:00'),(7139,0,0,'O','N','2526',2970,0,'2025-12-23','0000-00-00',3048,3048,2970,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','16:59:00','0000-00-00','','','','N','16:59:00','00:00:00','','','N','N',NULL,'O','O','Z42','','0000-00-00 00:00:00','2','16:59:24',0,'','reception','2025-12-23 16:59:23','','0000-00-00 00:00:00'),(7140,0,0,'O','N','2526',4561,0,'2025-12-23','2026-03-22',4688,4688,4561,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:15:00','0000-00-00','','','','N','17:15:00','00:00:00','','','N','N',NULL,'O','N','Z43','','0000-00-00 00:00:00','2','17:15:56',0,'','reception','2025-12-23 17:15:56','','0000-00-00 00:00:00'),(7141,0,0,'O','N','2526',4562,0,'2025-12-23','2026-03-22',4689,4689,4562,'N','','N','','','','','N','D14','','N',0,'','7',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:20:00','0000-00-00','','','','N','17:20:00','00:00:00','','','N','N',NULL,'O','N','Z44','','0000-00-00 00:00:00','7','17:20:34',0,'','manshi','2025-12-23 17:20:34','','0000-00-00 00:00:00'),(7142,0,0,'O','N','2526',1455,0,'2025-12-23','0000-00-00',1496,1496,1455,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:22:00','0000-00-00','','','','N','17:22:00','00:00:00','','','N','N',NULL,'O','O','Z45','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-12-23 17:22:34','','0000-00-00 00:00:00'),(7143,0,0,'O','N','2526',2600,0,'2025-12-23','0000-00-00',2662,2662,2600,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:27:00','0000-00-00','','','','N','17:27:00','00:00:00','','','N','N',NULL,'O','O','L06','','0000-00-00 00:00:00','2','17:27:58',0,'','reception','2025-12-23 17:27:58','','0000-00-00 00:00:00'),(7144,0,0,'O','N','2526',4078,0,'2025-12-23','0000-00-00',4187,4187,4078,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:31:00','0000-00-00','','','','N','17:31:00','00:00:00','','','N','N',NULL,'O','O','Z46','','0000-00-00 00:00:00','3','17:31:27',0,'','janvi','2025-12-23 17:31:27','','0000-00-00 00:00:00'),(7145,0,0,'O','N','2526',4327,0,'2025-12-23','0000-00-00',4440,4440,4327,'N','','N','','','FE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:32:00','0000-00-00','','','','N','17:32:00','00:00:00','','','N','N',NULL,'O','O','Z47','','0000-00-00 00:00:00','2','17:32:46',0,'','reception','2025-12-23 17:32:46','','0000-00-00 00:00:00'),(7146,0,0,'O','N','2526',4563,0,'2025-12-23','2026-03-22',4690,4690,4563,'N','','N','','','FV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:35:00','0000-00-00','','','','N','17:35:00','00:00:00','','','N','N',NULL,'O','N','Z48','','0000-00-00 00:00:00','2','17:35:12',0,'','reception','2025-12-23 17:35:12','','0000-00-00 00:00:00'),(7147,0,0,'O','N','2526',4564,0,'2025-12-23','2026-03-22',4691,4691,4564,'N','','N','','','NV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:36:00','0000-00-00','','','','N','17:36:00','00:00:00','','','N','N',NULL,'O','N','L07','','0000-00-00 00:00:00','2','17:36:26',0,'','reception','2025-12-23 17:36:26','','0000-00-00 00:00:00'),(7148,0,0,'O','N','2526',3711,0,'2025-12-23','0000-00-00',2866,2866,3711,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:39:00','0000-00-00','','','','N','17:39:00','00:00:00','','','N','N',NULL,'O','O','Z49','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-12-23 17:39:44','','0000-00-00 00:00:00'),(7149,0,0,'O','N','2526',4565,0,'2025-12-23','2026-03-22',4692,4692,4565,'N','','N','','','','','N','D03','','N',0,'','6',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:42:00','0000-00-00','','','','N','17:42:00','00:00:00','','','N','N',NULL,'O','N','Z50','','0000-00-00 00:00:00','6','17:42:08',0,'','manshi','2025-12-23 17:42:07','','0000-00-00 00:00:00'),(7150,0,0,'O','N','2526',868,0,'2025-12-23','0000-00-00',900,900,868,'N','','N','','','','','N','D27','','N',0,'','5',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:44:00','0000-00-00','','','','N','17:44:00','00:00:00','','','N','N',NULL,'O','O','Z51','','0000-00-00 00:00:00','5','17:44:18',0,'','janvi','2025-12-23 17:44:18','','0000-00-00 00:00:00'),(7151,0,0,'O','N','2526',4566,0,'2025-12-23','2026-03-22',4693,4693,4566,'N','','N','','','RFV','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:45:00','0000-00-00','','','','N','17:45:00','00:00:00','','','N','N',NULL,'O','N','L08','','0000-00-00 00:00:00','2','17:45:34',0,'','reception','2025-12-23 17:45:34','','0000-00-00 00:00:00'),(7152,0,0,'O','N','2526',3958,0,'2025-12-23','0000-00-00',4066,4066,3958,'N','','N','','','FOLLOWUP C','','N','D27','','N',0,'','4',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','00:00:00','','','N','N',NULL,'O','O','L09','','0000-00-00 00:00:00','','00:00:00',0,'','drashti','2025-12-23 17:46:06','','0000-00-00 00:00:00'),(7153,0,0,'O','N','2526',2738,0,'2025-12-23','0000-00-00',2808,2808,2738,'N','','N','','','','','N','D02','','N',0,'','3',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','00:00:00','','','N','N',NULL,'O','O','Z52','','0000-00-00 00:00:00','3','17:46:17',0,'','janvi','2025-12-23 17:46:17','','0000-00-00 00:00:00'),(7154,0,0,'O','N','2526',4567,0,'2025-12-23','2026-03-22',4694,4694,4567,'N','','N','','','NE','','N','D06','','N',0,'','2',0,'','','','','N','','P','','N','','','','0000-00-00','','','',1,'N','N','N','17:46:00','0000-00-00','','','','N','17:46:00','00:00:00','','','N','N',NULL,'O','N','L10','','0000-00-00 00:00:00','2','17:46:54',0,'','reception','2025-12-23 17:46:53','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `visit` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `visit_set_tags`
--

DROP TABLE IF EXISTS `visit_set_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `visit_set_tags` (
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `visit_id` int(11) NOT NULL,
  `tagID` int(11) NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`visit_id`,`tagID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `visit_set_tags`
--

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

--
-- Table structure for table `visit_tags`
--

DROP TABLE IF EXISTS `visit_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `visit_tags` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `tag_name` varchar(255) NOT NULL,
  `CreatedBy` varchar(10) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `LastModifiedBy` varchar(10) NOT NULL,
  `LastModifiedDate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `visit_tags`
--

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

--
-- Table structure for table `visit_url`
--

DROP TABLE IF EXISTS `visit_url`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `visit_url` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `user_id` varchar(100) NOT NULL,
  `url` varchar(250) NOT NULL,
  `name` varchar(50) NOT NULL,
  `count` int(5) NOT NULL,
  `is_favourite` enum('Y','N') NOT NULL DEFAULT 'N',
  `date_time` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=739 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `visit_url`
--

LOCK TABLES `visit_url` WRITE;
/*!40000 ALTER TABLE `visit_url` DISABLE KEYS */;
INSERT INTO `visit_url` VALUES (536,0,0,'drarchit','./../../pages/registration/calendar.php','Appointment Booking',1,'N','2025-12-03 12:43:22'),(485,0,0,'drarchit','./../../pages/registration/new.php','OP Registration',1,'N','2025-11-24 11:28:47'),(727,0,0,'vishal','./../../pages/registration/admitDateRectification.php','Admit Date Rectification',2,'N','2025-12-22 18:53:15'),(696,0,0,'vishal','./../../pages/room/room_cat.php','Room Category Master',1,'N','2025-12-16 20:08:53'),(513,0,0,'urvashi','./../../pages/ipd_bill/ipd_input.php','IP Bill Report',1,'N','2025-11-29 12:54:00'),(592,0,0,'drarchit','./../../pages/ipd_bill/ipd_input.php','IP Bill Report',10,'N','2025-12-06 12:36:36'),(697,0,0,'vishal','./../../pages/admin/service_master.php','Service Master',4,'N','2025-12-16 20:09:01'),(700,0,0,'drjayant','./../../pages/setup/multi_language_inst.php?mli_grp=MINST','Medicine Instruction New',2,'N','2025-12-17 19:04:24'),(646,0,0,'reception','./../../pages/registration/new.php','OP Registration',671,'N','2025-12-12 12:27:31'),(723,0,0,'riya','./../../pages/cancle/all_bill_cancel.php?ipd_opd=I','IP Bill Cancellation',2,'N','2025-12-20 13:40:17'),(607,0,0,'drarchit','./../../pages/registration/iplist.php','IP Patient List / Action',13,'N','2025-12-09 19:38:30'),(487,0,0,'manshi','./../../pages/ipd_bill/ipd_input.php','IP Bill Report',1,'N','2025-11-24 19:46:57'),(143,0,0,'priyanshi','./../../pages/registration/new.php','OP Registration',645,'N','2025-10-10 09:27:26'),(144,0,0,'priyanshi','./../../pages/report/inPatientRoomDayWise.php','In Patient List - Given Date',2,'N','2025-10-10 09:27:42'),(146,0,0,'priyanshi','./../../pages/billing/opd_input.php','OP Bill  Report',174,'N','2025-10-10 09:28:18'),(113,0,0,'shweta','./../../pages/registration/calendar.php','Appointment Booking',167,'N','2025-10-08 17:03:36'),(114,0,0,'shweta','./../../pages/registration/new.php','OP Registration',608,'N','2025-10-08 17:03:59'),(115,0,0,'shweta','./../../pages/registration/oplist.php','OP Patient List',936,'N','2025-10-08 17:07:04'),(730,0,0,'reception','./../../pages/billing/finalBillList.php?ipdOpd=I','IP Bill Payment Collection',1,'N','2025-12-22 20:26:20'),(580,0,0,'drarchit','./../../pages/Doctor/patQueueList.php','OP Patient Care',1144,'N','2025-12-05 18:31:06'),(702,0,0,'drjayant','./../../pages/registration/new.php','OP Registration',1,'N','2025-12-17 19:07:39'),(63,0,0,'drashti','./../../pages/registration/new.php','OP Registration',2095,'N','2025-10-08 09:51:17'),(64,0,0,'drashti','./../../pages/registration/oplist.php','OP Patient List',3487,'N','2025-10-08 09:53:42'),(65,0,0,'drashti','./../../pages/billing/opd_input.php','OP Bill  Report',596,'N','2025-10-08 09:53:47'),(66,0,0,'drashti','./../../pages/registration/calendar.php','Appointment Booking',677,'N','2025-10-08 09:54:50'),(510,0,0,'darshan','./../../pages/Doctor/patQueueList.php','OP Patient Care',6023,'N','2025-11-29 11:50:54'),(610,0,0,'janvi','./../../pages/report/discharge_summary.php','View Discharge Summary',2,'N','2025-12-10 11:11:23'),(462,0,0,'drridham','./../../pages/ipd_bill/ipd_reg_input.php','IP Registration Report',2,'N','2025-11-19 20:18:44'),(611,0,0,'janvi','./../../pages/billing/finalBillList.php?ipdOpd=I','IP Bill Payment Collection',3,'N','2025-12-10 11:11:28'),(335,0,0,'shweta','./../../pages/billing/opd_input.php','OP Bill  Report',142,'N','2025-10-29 18:26:40'),(604,0,0,'drarchit','./../../pages/admin/doctor_setup.php','Doctor Master',1,'N','2025-12-09 12:19:33'),(73,0,0,'manshi','./../../pages/registration/new.php','OP Registration',1501,'N','2025-10-08 10:34:51'),(74,0,0,'manshi','./../../pages/registration/oplist.php','OP Patient List',866,'N','2025-10-08 10:35:06'),(75,0,0,'manshi','./../../pages/billing/opd_input.php','OP Bill  Report',935,'N','2025-10-08 10:35:26'),(77,0,0,'drpratapsihn','./../../pages/Doctor/patQueueList.php','OP Patient Care',224,'N','2025-10-08 10:51:38'),(650,0,0,'drjayant','./../../pages/report/Receipt_Report_Input.php','Receipt Report',1,'N','2025-12-12 13:55:45'),(613,0,0,'thims','./../../pages/report/Receipt_Report_Input.php','Receipt Report',1,'N','2025-12-10 11:22:26'),(596,0,0,'thims','./../../pages/cancle/all_bill_cancel.php?ipd_opd=I','IP Bill Cancellation',2,'N','2025-12-06 14:01:46'),(194,0,0,'drpratapsinh','./../../pages/registration/calendar.php','Appointment Booking',11,'N','2025-10-11 12:43:54'),(165,0,0,'darshan','./../../pages/admin/medicine_inst_dose_mapping.php','Medicine Instruction Mapping',175,'N','2025-10-10 18:36:16'),(598,0,0,'thims','./../../pages/billing/billEditSearchList.php','Bill Amendment',3,'N','2025-12-06 14:04:30'),(661,0,0,'dharmishthaben','./../../pages/billing/finalBillList.php?ipdOpd=I','IP Bill Payment Collection',3,'N','2025-12-13 13:58:25'),(88,0,0,'manshi','./../../pages/registration/calendar.php','Appointment Booking',191,'N','2025-10-08 11:10:13'),(677,0,0,'dharmishthaben','./../../pages/ipd_bill/ipd_discharge_input.php','IP Discharge Report',11,'N','2025-12-15 09:27:35'),(612,0,0,'thims','./../../pages/admin/dataFieldsModification.php','Data Modified List',2,'N','2025-12-10 11:13:47'),(91,0,0,'mo','./../../pages/registration/iplist.php','IP Patient List / Action',3366,'N','2025-10-08 11:16:30'),(333,0,0,'drashti','./../../pages/report/appointment_list.php','Appointment Report',1,'N','2025-10-29 17:53:26'),(336,0,0,'janvi','./../../pages/report/reff_Doc_Report.php','OP Registration Report (Ref Doctor Wise)',1,'N','2025-10-30 09:06:30'),(615,0,0,'janvi','./../../pages/registration/calendar.php','Appointment Booking',41,'N','2025-12-10 11:28:35'),(707,0,0,'drjayant','./../../pages/ipd_bill/ipd_discharge_input.php','IP Discharge Report',2,'N','2025-12-18 12:16:55'),(561,0,0,'drridham','./../../pages/registration/new.php','OP Registration',2,'N','2025-12-04 12:19:41'),(147,0,0,'priyanshi','./../../pages/registration/calendar.php','Appointment Booking',137,'N','2025-10-10 09:28:30'),(640,0,0,'reception','./../../pages/ipd_bill/ipd_bill_reprint.php','IP Bill Re-Print',21,'N','2025-12-12 09:12:57'),(379,0,0,'manshi','./../../pages/registration/iplist.php','IP Patient List / Action',4,'N','2025-11-03 10:39:51'),(104,0,0,'shweta','./../../pages/cancle/all_bill_cancel.php?ipd_opd=O','OP Bill Cancellation - Any',31,'N','2025-10-08 12:18:10'),(105,0,0,'shweta','./../../pages/billing/finalBillList.php?ipdOpd=O','OP Bill Payment Collection',33,'N','2025-10-08 12:19:14'),(258,0,0,'drpratapsinh','./../../pages/registration/ipd_reg_new.php','IP Registration',1,'N','2025-10-15 10:17:51'),(107,0,0,'shweta','./../../pages/report/reff_Doc_Report.php','OP Registration Report (Ref Doctor Wise)',2,'N','2025-10-08 12:28:39'),(706,0,0,'drjayant','./../../pages/report/discharge_summary.php','View Discharge Summary',1,'N','2025-12-18 12:04:50'),(719,0,0,'riya','./../../pages/report/discharge_summary.php','View Discharge Summary',21,'N','2025-12-19 16:25:18'),(489,0,0,'drashti','./../../pages/report/Receipt_Report_Input.php','Receipt Report',3,'N','2025-11-24 20:40:15'),(475,0,0,'darshan','./../../pages/billing/opd_input.php','OP Bill  Report',38,'N','2025-11-20 14:42:25'),(112,0,0,'shweta','./../../pages/report/Receipt_Report_Input.php','Receipt Report',1,'N','2025-10-08 17:02:29'),(517,0,0,'urvashi','./../../pages/registration/oplist.php','OP Patient List',1000,'N','2025-11-30 09:48:52'),(518,0,0,'urvashi','./../../pages/billing/opd_input.php','OP Bill  Report',40,'N','2025-11-30 11:41:41'),(519,0,0,'urvashi','./../../pages/registration/calendar.php','Appointment Booking',63,'N','2025-11-30 11:55:04'),(644,0,0,'reception','./../../pages/billing/opd_input.php','OP Bill  Report',77,'N','2025-12-12 09:50:22'),(714,0,0,'vishal','./../../pages/ipd_bill/ipd_advance_input.php','IP Advance Report ',31,'N','2025-12-18 20:06:41'),(728,0,0,'vishal','./../../pages/registration/iplist.php','IP Patient List / Action',23,'N','2025-12-22 18:53:52'),(278,0,0,'drsagar','./../../pages/ipd_bill/ipd_bill_reprint.php','IP Bill Re-Print',6,'N','2025-10-17 17:56:59'),(357,0,0,'urvashi','./../../pages/ipd_bill/accountStatementSummaryInput.php','Account Statement Summary',2,'N','2025-11-01 14:48:32'),(504,0,0,'priyanshi','./../../pages/cancle/all_bill_cancel.php?ipd_opd=O','OP Bill Cancellation - Any',10,'N','2025-11-27 11:39:27'),(694,0,0,'vishal','./../../pages/ipd_bill/ipd_bill_reprint.php','IP Bill Re-Print',31,'N','2025-12-16 19:10:07'),(577,0,0,'urvashi','./../../pages/billing/finalBillList.php?ipdOpd=O','OP Bill Payment Collection',12,'N','2025-12-05 11:55:10'),(208,0,0,'manshi','./../../pages/billing/finalBillList.php?ipdOpd=O','OP Bill Payment Collection',75,'N','2025-10-11 18:25:51'),(642,0,0,'reception','./../../pages/registration/oplist.php','OP Patient List',1513,'N','2025-12-12 09:40:30'),(131,0,0,'janvi','./../../pages/cancle/all_bill_cancel.php?ipd_opd=O','OP Bill Cancellation - Any',161,'N','2025-10-09 13:42:33'),(718,0,0,'riya','./../../pages/ipd_bill/ipd_bill_reprint.php','IP Bill Re-Print',50,'N','2025-12-19 16:24:05'),(460,0,0,'drsagar','./../../pages/Doctor/patQueueList.php','OP Patient Care',11566,'N','2025-11-18 20:02:59'),(699,0,0,'vishal','./../../pages/room/room_status.php','Room Occupancy Report',8,'N','2025-12-17 09:53:52'),(135,0,0,'urvashi','./../../pages/registration/iplist.php','IP Patient List / Action',1,'N','2025-10-09 19:26:51'),(643,0,0,'reception','./../../pages/registration/calendar.php','Appointment Booking',385,'N','2025-12-12 09:48:27'),(529,0,0,'drridham','./../../pages/registration/ipd_reg_new.php','IP Registration',1,'N','2025-12-02 19:57:15'),(737,0,0,'thims','./../../pages/admin/backup_ui.php','Database Backup Utility',2,'N','2025-12-23 17:53:37'),(712,0,0,'vishal','./../../pages/registration/new.php','OP Registration',1,'N','2025-12-18 18:39:18'),(142,0,0,'priyanshi','./../../pages/registration/iplist.php','IP Patient List / Action',7,'N','2025-10-10 09:26:45'),(145,0,0,'priyanshi','./../../pages/registration/oplist.php','OP Patient List',1080,'N','2025-10-10 09:28:11'),(736,0,0,'thims','./../../pages/Doctor/patQueueList.php','OP Patient Care',1,'N','2025-12-23 17:52:07'),(656,0,0,'drashti','./../../pages/billing/finalBillList.php?ipdOpd=I','IP Bill Payment Collection',2,'N','2025-12-13 13:43:15'),(704,0,0,'drarchit','./../../pages/setup/multi_language_inst.php?mli_grp=MINST','Medicine Instruction New',1,'N','2025-12-18 11:29:16'),(573,0,0,'darshan','./../../pages/report/user_wise_collection_input.php','Userwise Collection Report',1,'N','2025-12-05 10:59:38'),(726,0,0,'riya','./../../pages/billing/finalBillList.php?ipdOpd=O','OP Bill Payment Collection',1,'N','2025-12-22 13:43:15'),(155,0,0,'drsagar','./../../pages/billing/opd_input.php','OP Bill  Report',12,'N','2025-10-10 16:06:07'),(528,0,0,'darshan','./../../pages/report/Receipt_Report_Input.php','Receipt Report',1,'N','2025-12-02 19:51:20'),(459,0,0,'drsagar','./../../pages/admin/medicine_master.php?item_type=M','Medicine Master',1,'N','2025-11-18 20:02:49'),(530,0,0,'drridham','./../../pages/billing/finalBillList.php?ipdOpd=O','OP Bill Payment Collection',1,'N','2025-12-02 19:58:15'),(531,0,0,'drridham','./../../pages/ipd_bill/ipd_input.php','IP Bill Report',2,'N','2025-12-02 19:59:09'),(729,0,0,'drjayant','./../../pages/registration/oplist.php','OP Patient List',1,'N','2025-12-22 19:19:40'),(731,0,0,'riya','./../../pages/registration/dischargeDateRectification.php','Discharge Date Rectification',5,'N','2025-12-23 09:18:59'),(733,0,0,'riya','./../../pages/registration/admitDateRectification.php','Admit Date Rectification',3,'N','2025-12-23 11:26:07'),(172,0,0,'drridham','./../../pages/billing/opd_input.php','OP Bill  Report',21,'N','2025-10-10 18:48:31'),(173,0,0,'drashti','./../../pages/cancle/all_bill_cancel.php?ipd_opd=O','OP Bill Cancellation - Any',97,'N','2025-10-10 18:53:43'),(174,0,0,'drashti','./../../pages/billing/finalBillList.php?ipdOpd=O','OP Bill Payment Collection',115,'N','2025-10-10 18:53:58'),(175,0,0,'manshi','./../../pages/cancle/all_bill_cancel.php?ipd_opd=O','OP Bill Cancellation - Any',83,'N','2025-10-10 19:17:43'),(630,0,0,'drjayant','./../../pages/Doctor/patQueueList.php','OP Patient Care',509,'N','2025-12-10 19:28:50'),(567,0,0,'urvashi','./../../pages/report/Receipt_Report_Input.php','Receipt Report',1,'N','2025-12-04 19:25:17'),(508,0,0,'janvi','./../../pages/registration/oplist.php','OP Patient List',5281,'N','2025-11-29 11:50:37'),(633,0,0,'drashti','./../../pages/billing/patientBillList.php?billView=Y','OP IP Bill View',1,'N','2025-12-11 10:11:32'),(224,0,0,'drashti','./../../pages/report/dateinput.php','OP Registration Report',5,'N','2025-10-13 12:47:15'),(645,0,0,'reception','./../../pages/billing/finalBillList.php?ipdOpd=O','OP Bill Payment Collection',44,'N','2025-12-12 12:21:07'),(415,0,0,'priyanshi','./../../pages/billing/bill.php?ipd_opd=O','OP Bill',1,'N','2025-11-11 19:20:50'),(385,0,0,'priyanshi','./../../pages/billing/finalBillList.php?ipdOpd=O','OP Bill Payment Collection',17,'N','2025-11-04 09:29:46'),(399,0,0,'shweta','./../../pages/admin/service_master.php','Service Master',11,'N','2025-11-06 20:12:55'),(339,0,0,'manshi','./../../pages/billing/bill.php?ipd_opd=O','OP Bill',4,'N','2025-10-30 19:26:37'),(695,0,0,'darshan','./../../pages/setup/multi_language_inst.php?mli_grp=MINST','Medicine Instruction New',2,'N','2025-12-16 19:19:50'),(195,0,0,'drpratapsinh','./../../pages/Doctor/patQueueList.php','OP Patient Care',3210,'N','2025-10-11 12:44:05'),(651,0,0,'janvi','./../../pages/billing/finalBillList.php?ipdOpd=O','OP Bill Payment Collection',15,'N','2025-12-12 19:42:15'),(701,0,0,'drjayant','./../../pages/admin/medicine_inst_dose_mapping.php','Medicine Instruction Mapping',2,'N','2025-12-17 19:04:28'),(345,0,0,'darshan','./../../pages/registration/oplist.php','OP Patient List',2,'N','2025-10-31 13:41:02'),(698,0,0,'vishal','./../../pages/registration/ipd_reg_new.php','IP Registration',33,'N','2025-12-16 20:20:07'),(286,0,0,'shweta','./../../pages/billing/finalBillList.php?ipdOpd=I','IP Bill Payment Collection',2,'N','2025-10-23 12:25:16'),(579,0,0,'drarchit','./../../pages/ipd_bill/ipd_bill_reprint.php','IP Bill Re-Print',48,'N','2025-12-05 18:28:12'),(581,0,0,'drarchit','./../../pages/admin/medicine_inst_dose_mapping.php','Medicine Instruction Mapping',37,'N','2025-12-05 19:08:44'),(506,0,0,'darshan','./../../pages/registration/new.php','OP Registration',1,'N','2025-11-28 13:35:11'),(516,0,0,'urvashi','./../../pages/registration/new.php','OP Registration',338,'N','2025-11-30 09:26:10'),(676,0,0,'dharmishthaben','./../../pages/ipd_bill/ipd_advance_input.php','IP Advance Report ',15,'N','2025-12-15 08:24:26'),(281,0,0,'drashti','./../../pages/registration/ipd_reg_new.php','IP Registration',3,'N','2025-10-18 11:59:57'),(237,0,0,'drsagar','./../../pages/billing/finalBillList.php?ipdOpd=O','OP Bill Payment Collection',1,'N','2025-10-13 19:03:58'),(238,0,0,'drsagar','./../../pages/report/dateinput.php','OP Registration Report',2,'N','2025-10-13 19:04:50'),(239,0,0,'drsagar','./../../pages/billing/bill.php?ipd_opd=O','OP Bill',2,'N','2025-10-13 19:05:08'),(240,0,0,'drsagar','./../../pages/admin/service_master.php','Service Master',2,'N','2025-10-13 19:20:13'),(293,0,0,'mo','./../../pages/billing/opd_input.php','OP Bill  Report',1,'N','2025-10-25 20:08:25'),(244,0,0,'drsagar','./../../pages/billing/finalBillList.php?ipdOpd=I','IP Bill Payment Collection',3,'N','2025-10-13 19:39:07'),(245,0,0,'drridham','./../../pages/billing/bill.php?ipd_opd=O','OP Bill',7,'N','2025-10-13 19:47:41'),(246,0,0,'drridham','./../../pages/billing/patientBillList.php?billView=Y','OP IP Bill View',5,'N','2025-10-13 19:47:57'),(738,0,0,'thims','./../../pages/setup/parameterSetup.php','Parameter Setup',1,'N','2025-12-23 17:54:58'),(248,0,0,'mo','./../../pages/registration/oplist.php','OP Patient List',23,'N','2025-10-14 09:06:40'),(458,0,0,'manshi','./../../pages/report/dateinput.php','OP Registration Report',1,'N','2025-11-18 19:45:52'),(605,0,0,'drarchit','./../../pages/admin/service_master.php','Service Master',1,'N','2025-12-09 12:19:42'),(614,0,0,'janvi','./../../pages/billing/opd_input.php','OP Bill  Report',107,'N','2025-12-10 11:27:27'),(663,0,0,'dharmishthaben','./../../pages/billing/patientBillList.php?billView=Y','OP IP Bill View',2,'N','2025-12-13 14:04:25'),(259,0,0,'drpratapsinh','./../../pages/registration/iplist.php','IP Patient List / Action',10,'N','2025-10-15 10:18:13'),(380,0,0,'darshan','./../../pages/ipd_bill/ipd_reg_input.php','IP Registration Report',2,'N','2025-11-03 10:52:27'),(428,0,0,'priyanshi','./../../pages/report/dateinput.php','OP Registration Report',1,'N','2025-11-13 11:44:53'),(705,0,0,'drjayant','./../../pages/registration/iplist.php','IP Patient List / Action',31,'N','2025-12-18 11:32:19'),(443,0,0,'drarchit','./../../pages/ipd_bill/ipd_reg_input.php','IP Registration Report',2,'N','2025-11-15 12:55:26'),(639,0,0,'reception','./../../pages/ipd_bill/ipd_discharge_input.php','IP Discharge Report',3,'N','2025-12-12 09:12:14'),(269,0,0,'janvi','./../../pages/report/dateinput.php','OP Registration Report',2,'N','2025-10-16 19:34:54'),(597,0,0,'thims','./../../pages/billing/finalBillList.php?ipdOpd=I','IP Bill Payment Collection',2,'N','2025-12-06 14:03:54'),(537,0,0,'drridham','./../../pages/Doctor/patQueueList.php','OP Patient Care',1968,'N','2025-12-03 18:52:56'),(279,0,0,'drsagar','./../../pages/ipd_bill/ipd_input.php','IP Bill Report',15,'N','2025-10-17 17:57:16'),(659,0,0,'dharmishthaben','./../../pages/ipd_bill/ipd_reg_input.php','IP Registration Report',1,'N','2025-12-13 13:55:34'),(294,0,0,'mo','./../../pages/registration/calendar.php','Appointment Booking',3,'N','2025-10-26 09:41:27'),(660,0,0,'dharmishthaben','./../../pages/report/discharge_summary.php','View Discharge Summary',3,'N','2025-12-13 13:56:46'),(662,0,0,'thims','./../../pages/ipd_bill/ipd_bill_reprint.php','IP Bill Re-Print',5,'N','2025-12-13 14:01:29'),(664,0,0,'dharmishthaben','./../../pages/ipd_bill/ipd_advance_refund.php','IP Advance Refund Report',3,'N','2025-12-13 14:06:50'),(685,0,0,'dharmishthaben','./../../pages/ipd_bill/ipd_input.php','IP Bill Report',4,'N','2025-12-16 09:32:20'),(424,0,0,'drridham','./../../pages/report/dateinput.php','OP Registration Report',17,'N','2025-11-12 18:58:03'),(678,0,0,'dharmishthaben','./../../pages/ipd_bill/ipd_bill_reprint.php','IP Bill Re-Print',118,'N','2025-12-15 09:28:32'),(310,0,0,'drridham','./../../pages/billing/finalBillList.php?ipdOpd=I','IP Bill Payment Collection',1,'N','2025-10-27 19:14:51'),(620,0,0,'thims','./../../pages/setup/User_Access_Control.php','User Access Control',2,'N','2025-12-10 13:33:19'),(470,0,0,'urvashi','./../../pages/billing/patientBillList.php?billView=Y','OP IP Bill View',1,'N','2025-11-20 12:48:45'),(593,0,0,'reception','./../../pages/billing/bill.php?ipd_opd=O','OP Bill',1,'N','2025-12-06 13:05:31'),(334,0,0,'shweta','./../../pages/report/appointment_list.php','Appointment Report',1,'N','2025-10-29 18:14:36'),(474,0,0,'darshan','./../../pages/billing/bill.php?ipd_opd=O','OP Bill',2,'N','2025-11-20 14:42:05'),(340,0,0,'manshi','./../../pages/billing/patientBillList.php?billView=Y','OP IP Bill View',2,'N','2025-10-30 19:26:42'),(341,0,0,'darshan','./../../pages/registration/calendar.php','Appointment Booking',3,'N','2025-10-31 10:50:41'),(383,0,0,'drsagar','./../../pages/ipd_bill/ipd_discharge_input.php','IP Discharge Report',4,'N','2025-11-03 11:42:16'),(703,0,0,'vishal','./../../pages/ipd_bill/ipd_discharge_input.php','IP Discharge Report',12,'N','2025-12-17 20:10:44'),(609,0,0,'janvi','./../../pages/ipd_bill/ipd_bill_reprint.php','IP Bill Re-Print',2,'N','2025-12-10 11:11:20'),(595,0,0,'thims','./../../pages/registration/iplist.php','IP Patient List / Action',5,'N','2025-12-06 14:01:29'),(378,0,0,'priyanshi','./../../pages/registration/ipd_reg_new.php','IP Registration',4,'N','2025-11-03 09:35:05'),(497,0,0,'drarchit','./../../pages/billing/opd_input.php','OP Bill  Report',6,'N','2025-11-26 11:23:16'),(608,0,0,'thims','./../../pages/registration/oplist.php','OP Patient List',8,'N','2025-12-10 09:50:48'),(496,0,0,'janvi','./../../pages/admin/dataFieldsModification.php','Data Modified List',6,'N','2025-11-26 10:51:23'),(713,0,0,'drjayant','./../../pages/ipd_bill/ipd_bill_reprint.php','IP Bill Re-Print',3,'N','2025-12-18 19:20:14'),(471,0,0,'urvashi','./../../pages/billing/billEditSearchList.php','Bill Amendment',5,'N','2025-11-20 12:48:50'),(666,0,0,'dharmishthaben','./../../pages/registration/iplist.php','IP Patient List / Action',13,'N','2025-12-13 14:09:03'),(679,0,0,'dharmishthaben','./../../pages/billing/opd_input.php','OP Bill  Report',9,'N','2025-12-15 09:53:09'),(576,0,0,'urvashi','./../../pages/cancle/all_bill_cancel.php?ipd_opd=O','OP Bill Cancellation - Any',10,'N','2025-12-05 11:54:38'),(641,0,0,'reception','./../../pages/registration/iplist.php','IP Patient List / Action',5,'N','2025-12-12 09:13:23'),(509,0,0,'janvi','./../../pages/registration/new.php','OP Registration',750,'N','2025-11-29 11:50:44'),(647,0,0,'priyanshi','./../../pages/admin/dataFieldsModification.php','Data Modified List',5,'N','2025-12-12 12:30:32'),(658,0,0,'dharmishthaben','./../../pages/registration/ipd_reg_new.php','IP Registration',1,'N','2025-12-13 13:54:35'),(585,0,0,'darshan','./../../pages/ipd_bill/ipd_input.php','IP Bill Report',3,'N','2025-12-05 19:58:38'),(722,0,0,'riya','./../../pages/registration/iplist.php','IP Patient List / Action',134,'N','2025-12-20 13:37:36'),(721,0,0,'riya','./../../pages/admin/doctor_setup.php','Doctor Master',4,'N','2025-12-20 13:33:17'),(649,0,0,'drjayant','./../../pages/ipd_bill/ipd_input.php','IP Bill Report',3,'N','2025-12-12 13:54:37'),(693,0,0,'vishal','./../../pages/ipd_bill/accountStatementSummaryInput.php','Account Statement Summary',31,'N','2025-12-16 17:59:21'),(680,0,0,'shweta','./../../pages/report/discharge_summary.php','View Discharge Summary',2,'N','2025-12-15 12:44:24'),(632,0,0,'drjayant','./../../pages/billing/opd_input.php','OP Bill  Report',18,'N','2025-12-10 20:02:09'),(725,0,0,'drsagar','./../../pages/ipd_bill/ipd_advance_input.php','IP Advance Report ',2,'N','2025-12-22 13:11:47'),(734,0,0,'riya','./../../pages/billing/finalBillList.php?ipdOpd=I','IP Bill Payment Collection',1,'N','2025-12-23 13:54:58'),(638,0,0,'reception','./../../pages/ipd_bill/ipd_advance_input.php','IP Advance Report ',3,'N','2025-12-12 09:05:32'),(735,0,0,'riya','./../../pages/billing/billEditSearchList.php','Bill Amendment',3,'N','2025-12-23 13:55:16'),(657,0,0,'reception','./../../pages/ipd_bill/ipd_input.php','IP Bill Report',1,'N','2025-12-13 13:52:10'),(720,0,0,'riya','./../../pages/room/room_master.php','Room Master',1,'N','2025-12-20 13:33:15'),(691,0,0,'vishal','./../../pages/billing/billEditSearchList.php','Bill Amendment',5,'N','2025-12-16 15:29:39'),(724,0,0,'riya','./../../pages/registration/ipd_reg_new.php','IP Registration',5,'N','2025-12-20 16:25:06'),(732,0,0,'drridham','./../../pages/registration/oplist.php','OP Patient List',1,'N','2025-12-23 10:53:21');
/*!40000 ALTER TABLE `visit_url` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `whatsapp_msg_setup`
--

DROP TABLE IF EXISTS `whatsapp_msg_setup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `whatsapp_msg_setup` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` tinyint(4) NOT NULL,
  `branch_id` tinyint(4) NOT NULL,
  `whatsapp_template_id` varchar(50) NOT NULL,
  `whatsapp_msg_type` varchar(15) NOT NULL,
  `whatsapp_msg_sender_mobile` varchar(15) NOT NULL,
  `purpose` varchar(50) NOT NULL,
  `total_placeholders` tinyint(4) NOT NULL,
  `placeholders_values` varchar(100) NOT NULL,
  `message_content` text NOT NULL,
  `message_send_now` enum('N','Y') NOT NULL DEFAULT 'N',
  `whatsapp_msg_active` enum('N','Y') NOT NULL DEFAULT 'N',
  `whatsapp_msg_schedule_day` varchar(20) NOT NULL DEFAULT 'T0',
  `schedule_time` time NOT NULL,
  `send_to_patient` enum('N','Y') NOT NULL DEFAULT 'N',
  `send_to_doctor` enum('N','Y') NOT NULL DEFAULT 'N',
  `send_to_list` enum('N','Y') NOT NULL DEFAULT 'N',
  `mobile_no_list` varchar(164) NOT NULL,
  `message_remark` varchar(50) NOT NULL,
  PRIMARY KEY (`ID`),
  UNIQUE KEY `company_id` (`company_id`,`branch_id`,`purpose`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `whatsapp_msg_setup`
--

LOCK TABLES `whatsapp_msg_setup` WRITE;
/*!40000 ALTER TABLE `whatsapp_msg_setup` DISABLE KEYS */;
INSERT INTO `whatsapp_msg_setup` VALUES (2,0,0,'5735113111','template','9134454552016','LAB_TEST_REPORT',3,'&&SAMPLE_ID&&, &&PATIENT_NAME&&, &&ORDER_DATE&&','','N','N','T0','00:00:00','N','N','N','9825082989',''),(3,0,0,'579587','template','916359700016','OP_IP_BILL',5,'&&PATIENT_ID&&,&&PATIENT_NAME&&,&&BILL_NUMBER&&,&&BILL_DATE_TIME&&,&&BILL_AMOUNT&&','UH ID : {{1}}\\\\r\\\\nPatient Name : {{2}}\\\\r\\\\nYour Bill No. : {{3}}, Date : {{4}}, Amt : {{5}}\\\\r\\\\n\\\\r\\\\nThank you for choosing Hospital\\\\r\\\\n','N','N','T0','00:00:00','N','N','N','9825082989',''),(4,0,0,'585915','template','916359700016','OP_IP_RECEIPT',5,'&&PATIENT_ID&&,&&PATIENT_NAME&&,&&RECEIPT_NUMBER&&,&&RECEIPT_DATE_TIME&&,&&RECEIPT_AMOUNT&&','UH ID : {{1}}\\r\\nPatient Name : {{2}}\\r\\nReceipt No : {{3}}, Date : {{4}}, Amt : {{5}}\\r\\n\\r\\nThank you for choosing Hospital\\r\\n','N','N','T0','00:00:00','N','N','N','','');
/*!40000 ALTER TABLE `whatsapp_msg_setup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `work_week`
--

DROP TABLE IF EXISTS `work_week`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `work_week` (
  `id` tinyint(4) NOT NULL AUTO_INCREMENT,
  `monday` enum('F','H','N') NOT NULL,
  `tuesday` enum('F','H','N') NOT NULL,
  `wednesday` enum('F','H','N') NOT NULL,
  `thursday` enum('F','H','N') NOT NULL,
  `friday` enum('F','H','N') NOT NULL,
  `saturday` enum('F','H','N') NOT NULL,
  `sunday` enum('F','H','N') NOT NULL,
  `created_by` varchar(10) NOT NULL,
  `created_date` datetime NOT NULL,
  `lastmodified_by` varchar(10) DEFAULT NULL,
  `lastmodified_date` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `FK_workweek_created_user` (`created_by`),
  KEY `FK_workweek_lastmodified_user` (`lastmodified_by`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `work_week`
--

LOCK TABLES `work_week` WRITE;
/*!40000 ALTER TABLE `work_week` DISABLE KEYS */;
INSERT INTO `work_week` VALUES (1,'F','F','F','F','F','F','F','thims','2019-02-22 00:00:00',NULL,NULL);
/*!40000 ALTER TABLE `work_week` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `xray_size`
--

DROP TABLE IF EXISTS `xray_size`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `xray_size` (
  `size` varchar(8) NOT NULL,
  PRIMARY KEY (`size`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `xray_size`
--

LOCK TABLES `xray_size` WRITE;
/*!40000 ALTER TABLE `xray_size` DISABLE KEYS */;
/*!40000 ALTER TABLE `xray_size` 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 2025-12-23  5:25:41
